From 25d71ba0f2fcc462d6c500912aa7eb79431ae6b3 Mon Sep 17 00:00:00 2001 From: mtkennerly Date: Tue, 28 Nov 2023 14:16:54 +0800 Subject: [PATCH] Rewrite from TypeScript to Rust --- .github/workflows/import.yaml | 12 +- .gitignore | 3 +- .pre-commit-config.yaml | 11 +- CONTRIBUTING.md | 21 +- Cargo.lock | 2150 + Cargo.toml | 24 + data/manifest.yaml | 198455 ++++++++++++++++--------------- data/missing.md | 600 +- data/steam-game-cache.yaml | 166590 +++++++++++++------------- data/wiki-game-cache.yaml | 79295 ++++++------ package-lock.json | 3286 - package.json | 35 - rustfmt.toml | 1 + scripts/get-steam-app-info.py | 18 + src/bin.ts | 143 - src/cli.rs | 164 + src/index.ts | 62 - src/main.rs | 105 + src/manifest.rs | 458 + src/manifest.ts | 292 - src/missing.rs | 26 + src/missing.ts | 16 - src/resource.rs | 63 + src/schema.rs | 32 + src/steam.rs | 218 + src/steam.ts | 158 - src/wiki.rs | 937 + src/wiki.ts | 818 - tsconfig.json | 17 - 29 files changed, 221685 insertions(+), 232325 deletions(-) create mode 100644 Cargo.lock create mode 100644 Cargo.toml delete mode 100644 package-lock.json delete mode 100644 package.json create mode 100644 rustfmt.toml create mode 100644 scripts/get-steam-app-info.py delete mode 100644 src/bin.ts create mode 100644 src/cli.rs delete mode 100644 src/index.ts create mode 100644 src/main.rs create mode 100644 src/manifest.rs delete mode 100644 src/manifest.ts create mode 100644 src/missing.rs delete mode 100644 src/missing.ts create mode 100644 src/resource.rs create mode 100644 src/schema.rs create mode 100644 src/steam.rs delete mode 100644 src/steam.ts create mode 100644 src/wiki.rs delete mode 100644 src/wiki.ts delete mode 100644 tsconfig.json diff --git a/.github/workflows/import.yaml b/.github/workflows/import.yaml index 5ba1b9db..9847e7b3 100644 --- a/.github/workflows/import.yaml +++ b/.github/workflows/import.yaml @@ -12,19 +12,19 @@ jobs: - uses: actions/checkout@v3 with: ref: ${{ github.head_ref }} - - uses: actions/setup-node@v3 + - uses: actions/setup-python@v4 with: - node-version: '16' + python-version: '3.10' + - uses: dtolnay/rust-toolchain@stable + - uses: Swatinem/rust-cache@v2 - uses: actions/cache@v3 with: path: data/wiki-meta-cache.yaml key: wiki-meta-cache-v2-${{ github.run_id }} restore-keys: | wiki-meta-cache-v2 - - run: | - npm install - npm run recent - npm run schema + - run: cargo build + - run: cargo run -- bulk --recent-changes - uses: stefanzweifel/git-auto-commit-action@v4 with: commit_message: Import recent changes from PCGamingWiki diff --git a/.gitignore b/.gitignore index 4252513b..7aacce64 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,5 @@ -node_modules/ out/ +target/ tmp/ data/wiki-meta-cache.yaml +.mypy_cache/ diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index e90b8e23..77cb373d 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -8,11 +8,8 @@ repos: rev: v1.1.7 hooks: - id: forbid-tabs - - repo: local + - repo: https://github.com/mtkennerly/pre-commit-hooks + rev: v0.3.0 hooks: - - id: schema - name: schema - language: system - entry: npm run schema - types: [yaml] - pass_filenames: false + - id: cargo-fmt + - id: cargo-clippy diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 1ebf2f19..12dac49f 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -1,14 +1,14 @@ ## Development -Requires Node.js. +Use the latest version of Rust and Python. Generally, you just need these commands: -* Add all recent changes (defaults to last 7 days, but then it remembers when you last ran it): - * `npm run recent` -* Validate the manifest against the schema: - * `npm run schema` +* Install script dependencies (one time): + * `pip install "steam[client]"` +* Add all recent changes (defaults to last day, but then it remembers when you last ran it): + * `cargo run -- bulk --recent-changes` * List some stats about the data set: - * `npm run stats` + * `cargo run -- stats` * Activate pre-commit hooks (requires Python): ``` pip install --user pre-commit @@ -18,10 +18,9 @@ Generally, you just need these commands: There are some lower-level commands for finer control or full imports: * Add new games to wiki-game-cache.yaml (required in order to add them to the manifest): - * `npm run cache` -* Update the manifest with games from the cache: - * All games in cache: `npm run manifest` - * Specific games: `npm run manifest -- "Game 1" "Game 2"` + * `cargo run -- bulk --missing-pages` +* Validate schema: + * `cargo run -- schema` ## API etiquette When running or modifying the importer script, please be mindful not to @@ -34,4 +33,4 @@ suggest that: > to finish before sending a new request, should result in a safe request rate. I am not sure about guidelines for the Steam API, but the cache file should mean -that we only ever need to reach out to Steam once per game. +that we are not making excessive requests. diff --git a/Cargo.lock b/Cargo.lock new file mode 100644 index 00000000..513d7130 --- /dev/null +++ b/Cargo.lock @@ -0,0 +1,2150 @@ +# This file is automatically @generated by Cargo. +# It is not intended for manual editing. +version = 3 + +[[package]] +name = "addr2line" +version = "0.21.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8a30b2e23b9e17a9f90641c7ab1549cd9b44f296d3ccbf309d2863cfe398a0cb" +dependencies = [ + "gimli", +] + +[[package]] +name = "adler" +version = "1.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe" + +[[package]] +name = "ahash" +version = "0.7.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fcb51a0695d8f838b1ee009b3fbf66bda078cd64590202a864a8f3e8c4315c47" +dependencies = [ + "getrandom", + "once_cell", + "version_check", +] + +[[package]] +name = "ahash" +version = "0.8.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "91429305e9f0a25f6205c5b8e0d2db09e0708a7a6df0f42212bb56c32c8ac97a" +dependencies = [ + "cfg-if", + "getrandom", + "once_cell", + "serde", + "version_check", + "zerocopy", +] + +[[package]] +name = "aho-corasick" +version = "1.0.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0c378d78423fdad8089616f827526ee33c19f2fddbd5de1629152c9593ba4783" +dependencies = [ + "memchr", +] + +[[package]] +name = "android-tzdata" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0" + +[[package]] +name = "android_system_properties" +version = "0.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311" +dependencies = [ + "libc", +] + +[[package]] +name = "anstream" +version = "0.6.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2ab91ebe16eb252986481c5b62f6098f3b698a45e34b5b98200cf20dd2484a44" +dependencies = [ + "anstyle", + "anstyle-parse", + "anstyle-query", + "anstyle-wincon", + "colorchoice", + "utf8parse", +] + +[[package]] +name = "anstyle" +version = "1.0.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7079075b41f533b8c61d2a4d073c4676e1f8b249ff94a393b0595db304e0dd87" + +[[package]] +name = "anstyle-parse" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "317b9a89c1868f5ea6ff1d9539a69f45dffc21ce321ac1fd1160dfa48c8e2140" +dependencies = [ + "utf8parse", +] + +[[package]] +name = "anstyle-query" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5ca11d4be1bab0c8bc8734a9aa7bf4ee8316d462a08c6ac5052f888fef5b494b" +dependencies = [ + "windows-sys", +] + +[[package]] +name = "anstyle-wincon" +version = "3.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f0699d10d2f4d628a98ee7b57b289abbc98ff3bad977cb3152709d4bf2330628" +dependencies = [ + "anstyle", + "windows-sys", +] + +[[package]] +name = "anyhow" +version = "1.0.75" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a4668cab20f66d8d020e1fbc0ebe47217433c1b6c8f2040faf858554e394ace6" + +[[package]] +name = "async-trait" +version = "0.1.73" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bc00ceb34980c03614e35a3a4e218276a0a824e911d07651cd0d858a51e8c0f0" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "autocfg" +version = "1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" + +[[package]] +name = "backtrace" +version = "0.3.69" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2089b7e3f35b9dd2d0ed921ead4f6d318c27680d4a5bd167b3ee120edb105837" +dependencies = [ + "addr2line", + "cc", + "cfg-if", + "libc", + "miniz_oxide", + "object", + "rustc-demangle", +] + +[[package]] +name = "base64" +version = "0.13.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8" + +[[package]] +name = "base64" +version = "0.21.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "414dcefbc63d77c526a76b3afcf6fbb9b5e2791c19c3aa2297733208750c6e53" + +[[package]] +name = "bit-set" +version = "0.5.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0700ddab506f33b20a03b13996eccd309a48e5ff77d0d95926aa0210fb4e95f1" +dependencies = [ + "bit-vec", +] + +[[package]] +name = "bit-vec" +version = "0.6.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "349f9b6a179ed607305526ca489b34ad0a41aed5f7980fa90eb03160b69598fb" + +[[package]] +name = "bitflags" +version = "1.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" + +[[package]] +name = "bitflags" +version = "2.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b4682ae6287fcf752ecaabbfcc7b6f9b72aa33933dc23a554d853aea8eea8635" + +[[package]] +name = "block-buffer" +version = "0.10.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71" +dependencies = [ + "generic-array", +] + +[[package]] +name = "bumpalo" +version = "3.13.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a3e2c3daef883ecc1b5d58c15adae93470a91d425f3532ba1695849656af3fc1" + +[[package]] +name = "bytecount" +version = "0.6.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e1e5f035d16fc623ae5f74981db80a439803888314e3a555fd6f04acd51a3205" + +[[package]] +name = "bytes" +version = "1.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "89b2fd2a0dcf38d7971e2194b6b6eebab45ae01067456a7fd93d5547a61b70be" + +[[package]] +name = "cc" +version = "1.0.83" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f1174fb0b6ec23863f8b971027804a42614e347eafb0a95bf0b12cdae21fc4d0" +dependencies = [ + "libc", +] + +[[package]] +name = "cfg-if" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" + +[[package]] +name = "chrono" +version = "0.4.31" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7f2c685bad3eb3d45a01354cedb7d5faa66194d1d58ba6e267a8de788f79db38" +dependencies = [ + "android-tzdata", + "iana-time-zone", + "js-sys", + "num-traits", + "serde", + "wasm-bindgen", + "windows-targets", +] + +[[package]] +name = "clap" +version = "4.4.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2275f18819641850fa26c89acc84d465c1bf91ce57bc2748b28c420473352f64" +dependencies = [ + "clap_builder", + "clap_derive", +] + +[[package]] +name = "clap_builder" +version = "4.4.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "07cdf1b148b25c1e1f7a42225e30a0d99a615cd4637eae7365548dd4529b95bc" +dependencies = [ + "anstream", + "anstyle", + "clap_lex", + "strsim", +] + +[[package]] +name = "clap_derive" +version = "4.4.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cf9804afaaf59a91e75b022a30fb7229a7901f60c755489cc61c9b423b836442" +dependencies = [ + "heck", + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "clap_lex" +version = "0.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "702fc72eb24e5a1e48ce58027a675bc24edd52096d5397d4aea7c6dd9eca0bd1" + +[[package]] +name = "colorchoice" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "acbf1af155f9b9ef647e42cdc158db4b64a1b61f743629225fde6f3e0be2a7c7" + +[[package]] +name = "config" +version = "0.13.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d379af7f68bfc21714c6c7dea883544201741d2ce8274bb12fa54f89507f52a7" +dependencies = [ + "async-trait", + "json5", + "lazy_static", + "nom", + "pathdiff", + "ron", + "rust-ini", + "serde", + "serde_json", + "toml", + "yaml-rust", +] + +[[package]] +name = "cookie" +version = "0.16.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e859cd57d0710d9e06c381b550c06e76992472a8c6d527aecd2fc673dcc231fb" +dependencies = [ + "percent-encoding", + "time", + "version_check", +] + +[[package]] +name = "cookie_store" +version = "0.16.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d606d0fba62e13cf04db20536c05cb7f13673c161cb47a47a82b9b9e7d3f1daa" +dependencies = [ + "cookie", + "idna 0.2.3", + "log", + "publicsuffix", + "serde", + "serde_derive", + "serde_json", + "time", + "url", +] + +[[package]] +name = "core-foundation" +version = "0.9.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "194a7a9e6de53fa55116934067c844d9d749312f75c6f6d0980e8c252f8c2146" +dependencies = [ + "core-foundation-sys", + "libc", +] + +[[package]] +name = "core-foundation-sys" +version = "0.8.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e496a50fda8aacccc86d7529e2c1e0892dbd0f898a6b5645b5561b89c3210efa" + +[[package]] +name = "cpufeatures" +version = "0.2.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a17b76ff3a4162b0b27f354a0c87015ddad39d35f9c0c36607a3bdd175dde1f1" +dependencies = [ + "libc", +] + +[[package]] +name = "crypto-common" +version = "0.1.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3" +dependencies = [ + "generic-array", + "typenum", +] + +[[package]] +name = "deranged" +version = "0.3.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f2696e8a945f658fd14dc3b87242e6b80cd0f36ff04ea560fa39082368847946" + +[[package]] +name = "digest" +version = "0.10.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292" +dependencies = [ + "block-buffer", + "crypto-common", + "subtle", +] + +[[package]] +name = "dlv-list" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0688c2a7f92e427f44895cd63841bff7b29f8d7a1648b9e7e07a4a365b2e1257" + +[[package]] +name = "either" +version = "1.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a26ae43d7bcc3b814de94796a5e736d4029efb0ee900c12e2d54c993ad1a1e07" + +[[package]] +name = "encoding_rs" +version = "0.8.33" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7268b386296a025e474d5140678f75d6de9493ae55a5d709eeb9dd08149945e1" +dependencies = [ + "cfg-if", +] + +[[package]] +name = "errno" +version = "0.3.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "136526188508e25c6fef639d7927dfb3e0e3084488bf202267829cf7fc23dbdd" +dependencies = [ + "errno-dragonfly", + "libc", + "windows-sys", +] + +[[package]] +name = "errno-dragonfly" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "aa68f1b12764fab894d2755d2518754e71b4fd80ecfb822714a1206c2aab39bf" +dependencies = [ + "cc", + "libc", +] + +[[package]] +name = "fancy-regex" +version = "0.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b95f7c0680e4142284cf8b22c14a476e87d61b004a3a0861872b32ef7ead40a2" +dependencies = [ + "bit-set", + "regex", +] + +[[package]] +name = "fastrand" +version = "2.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6999dc1837253364c2ebb0704ba97994bd874e8f195d665c50b7548f6ea92764" + +[[package]] +name = "fnv" +version = "1.0.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" + +[[package]] +name = "foreign-types" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1" +dependencies = [ + "foreign-types-shared", +] + +[[package]] +name = "foreign-types-shared" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" + +[[package]] +name = "form_urlencoded" +version = "1.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a62bc1cf6f830c2ec14a513a9fb124d0a213a629668a4186f329db21fe045652" +dependencies = [ + "percent-encoding", +] + +[[package]] +name = "fraction" +version = "0.13.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3027ae1df8d41b4bed2241c8fdad4acc1e7af60c8e17743534b545e77182d678" +dependencies = [ + "lazy_static", + "num", +] + +[[package]] +name = "futures" +version = "0.3.28" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "23342abe12aba583913b2e62f22225ff9c950774065e4bfb61a19cd9770fec40" +dependencies = [ + "futures-channel", + "futures-core", + "futures-executor", + "futures-io", + "futures-sink", + "futures-task", + "futures-util", +] + +[[package]] +name = "futures-channel" +version = "0.3.28" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "955518d47e09b25bbebc7a18df10b81f0c766eaf4c4f1cccef2fca5f2a4fb5f2" +dependencies = [ + "futures-core", + "futures-sink", +] + +[[package]] +name = "futures-core" +version = "0.3.28" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4bca583b7e26f571124fe5b7561d49cb2868d79116cfa0eefce955557c6fee8c" + +[[package]] +name = "futures-executor" +version = "0.3.28" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ccecee823288125bd88b4d7f565c9e58e41858e47ab72e8ea2d64e93624386e0" +dependencies = [ + "futures-core", + "futures-task", + "futures-util", +] + +[[package]] +name = "futures-io" +version = "0.3.28" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4fff74096e71ed47f8e023204cfd0aa1289cd54ae5430a9523be060cdb849964" + +[[package]] +name = "futures-macro" +version = "0.3.28" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "89ca545a94061b6365f2c7355b4b32bd20df3ff95f02da9329b34ccc3bd6ee72" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "futures-sink" +version = "0.3.28" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f43be4fe21a13b9781a69afa4985b0f6ee0e1afab2c6f454a8cf30e2b2237b6e" + +[[package]] +name = "futures-task" +version = "0.3.28" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "76d3d132be6c0e6aa1534069c705a74a5997a356c0dc2f86a47765e5617c5b65" + +[[package]] +name = "futures-util" +version = "0.3.28" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "26b01e40b772d54cf6c6d721c1d1abd0647a0106a12ecaa1c186273392a69533" +dependencies = [ + "futures-channel", + "futures-core", + "futures-io", + "futures-macro", + "futures-sink", + "futures-task", + "memchr", + "pin-project-lite", + "pin-utils", + "slab", +] + +[[package]] +name = "generic-array" +version = "0.14.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a" +dependencies = [ + "typenum", + "version_check", +] + +[[package]] +name = "getrandom" +version = "0.2.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "be4136b2a15dd319360be1c07d9933517ccf0be8f16bf62a3bee4f0d618df427" +dependencies = [ + "cfg-if", + "js-sys", + "libc", + "wasi", + "wasm-bindgen", +] + +[[package]] +name = "gimli" +version = "0.28.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6fb8d784f27acf97159b40fc4db5ecd8aa23b9ad5ef69cdd136d3bc80665f0c0" + +[[package]] +name = "h2" +version = "0.3.21" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "91fc23aa11be92976ef4729127f1a74adf36d8436f7816b185d18df956790833" +dependencies = [ + "bytes", + "fnv", + "futures-core", + "futures-sink", + "futures-util", + "http", + "indexmap", + "slab", + "tokio", + "tokio-util", + "tracing", +] + +[[package]] +name = "hashbrown" +version = "0.12.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" +dependencies = [ + "ahash 0.7.6", +] + +[[package]] +name = "heck" +version = "0.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8" + +[[package]] +name = "hermit-abi" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "443144c8cdadd93ebf52ddb4056d257f5b52c04d3c804e657d19eb73fc33668b" + +[[package]] +name = "hmac" +version = "0.12.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e" +dependencies = [ + "digest", +] + +[[package]] +name = "http" +version = "0.2.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bd6effc99afb63425aff9b05836f029929e345a6148a14b7ecd5ab67af944482" +dependencies = [ + "bytes", + "fnv", + "itoa", +] + +[[package]] +name = "http-body" +version = "0.4.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d5f38f16d184e36f2408a55281cd658ecbd3ca05cce6d6510a176eca393e26d1" +dependencies = [ + "bytes", + "http", + "pin-project-lite", +] + +[[package]] +name = "httparse" +version = "1.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904" + +[[package]] +name = "httpdate" +version = "1.0.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9" + +[[package]] +name = "hyper" +version = "0.14.27" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ffb1cfd654a8219eaef89881fdb3bb3b1cdc5fa75ded05d6933b2b382e395468" +dependencies = [ + "bytes", + "futures-channel", + "futures-core", + "futures-util", + "h2", + "http", + "http-body", + "httparse", + "httpdate", + "itoa", + "pin-project-lite", + "socket2 0.4.9", + "tokio", + "tower-service", + "tracing", + "want", +] + +[[package]] +name = "hyper-tls" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d6183ddfa99b85da61a140bea0efc93fdf56ceaa041b37d553518030827f9905" +dependencies = [ + "bytes", + "hyper", + "native-tls", + "tokio", + "tokio-native-tls", +] + +[[package]] +name = "iana-time-zone" +version = "0.1.58" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8326b86b6cff230b97d0d312a6c40a60726df3332e721f72a1b035f451663b20" +dependencies = [ + "android_system_properties", + "core-foundation-sys", + "iana-time-zone-haiku", + "js-sys", + "wasm-bindgen", + "windows-core", +] + +[[package]] +name = "iana-time-zone-haiku" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f" +dependencies = [ + "cc", +] + +[[package]] +name = "idna" +version = "0.2.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "418a0a6fab821475f634efe3ccc45c013f742efe03d853e8d3355d5cb850ecf8" +dependencies = [ + "matches", + "unicode-bidi", + "unicode-normalization", +] + +[[package]] +name = "idna" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e14ddfc70884202db2244c223200c204c2bda1bc6e0998d11b5e024d657209e6" +dependencies = [ + "unicode-bidi", + "unicode-normalization", +] + +[[package]] +name = "idna" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7d20d6b07bfbc108882d88ed8e37d39636dcc260e15e30c45e6ba089610b917c" +dependencies = [ + "unicode-bidi", + "unicode-normalization", +] + +[[package]] +name = "indexmap" +version = "1.9.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99" +dependencies = [ + "autocfg", + "hashbrown", +] + +[[package]] +name = "ipnet" +version = "2.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "28b29a3cd74f0f4598934efe3aeba42bae0eb4680554128851ebbecb02af14e6" + +[[package]] +name = "iso8601" +version = "0.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "924e5d73ea28f59011fec52a0d12185d496a9b075d360657aed2a5707f701153" +dependencies = [ + "nom", +] + +[[package]] +name = "itertools" +version = "0.12.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "25db6b064527c5d482d0423354fcd07a89a2dfe07b67892e62411946db7f07b0" +dependencies = [ + "either", +] + +[[package]] +name = "itoa" +version = "1.0.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "af150ab688ff2122fcef229be89cb50dd66af9e01a4ff320cc137eecc9bacc38" + +[[package]] +name = "js-sys" +version = "0.3.64" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c5f195fe497f702db0f318b07fdd68edb16955aed830df8363d837542f8f935a" +dependencies = [ + "wasm-bindgen", +] + +[[package]] +name = "json5" +version = "0.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "96b0db21af676c1ce64250b5f40f3ce2cf27e4e47cb91ed91eb6fe9350b430c1" +dependencies = [ + "pest", + "pest_derive", + "serde", +] + +[[package]] +name = "jsonschema" +version = "0.17.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2a071f4f7efc9a9118dfb627a0a94ef247986e1ab8606a4c806ae2b3aa3b6978" +dependencies = [ + "ahash 0.8.6", + "anyhow", + "base64 0.21.3", + "bytecount", + "clap", + "fancy-regex", + "fraction", + "getrandom", + "iso8601", + "itoa", + "memchr", + "num-cmp", + "once_cell", + "parking_lot", + "percent-encoding", + "regex", + "reqwest", + "serde", + "serde_json", + "time", + "url", + "uuid", +] + +[[package]] +name = "lazy_static" +version = "1.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" + +[[package]] +name = "libc" +version = "0.2.150" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "89d92a4743f9a61002fae18374ed11e7973f530cb3a3255fb354818118b2203c" + +[[package]] +name = "linked-hash-map" +version = "0.5.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f" + +[[package]] +name = "linux-raw-sys" +version = "0.4.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "57bcfdad1b858c2db7c38303a6d2ad4dfaf5eb53dfeb0910128b2c26d6158503" + +[[package]] +name = "lock_api" +version = "0.4.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c1cc9717a20b1bb222f333e6a92fd32f7d8a18ddc5a3191a11af45dcbf4dcd16" +dependencies = [ + "autocfg", + "scopeguard", +] + +[[package]] +name = "log" +version = "0.4.20" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b5e6163cb8c49088c2c36f57875e58ccd8c87c7427f7fbd50ea6710b2f3f2e8f" + +[[package]] +name = "ludusavi-manifest" +version = "0.1.0" +dependencies = [ + "chrono", + "clap", + "itertools", + "jsonschema", + "mediawiki", + "once_cell", + "regex", + "serde", + "serde_json", + "serde_yaml", + "thiserror", + "tokio", + "wikitext-parser", +] + +[[package]] +name = "matches" +version = "0.1.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2532096657941c2fea9c289d370a250971c689d4f143798ff67113ec042024a5" + +[[package]] +name = "mediawiki" +version = "0.2.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9634e2be056501031c2c5ed2050014293f9895bb327aed691543545b80c27d5d" +dependencies = [ + "base64 0.21.3", + "config", + "futures", + "hmac", + "nanoid", + "reqwest", + "serde_json", + "sha1", + "tokio", + "url", + "urlencoding", +] + +[[package]] +name = "memchr" +version = "2.6.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8f232d6ef707e1956a43342693d2a31e72989554d58299d7a88738cc95b0d35c" + +[[package]] +name = "mime" +version = "0.3.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a" + +[[package]] +name = "minimal-lexical" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a" + +[[package]] +name = "miniz_oxide" +version = "0.7.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e7810e0be55b428ada41041c41f32c9f1a42817901b4ccf45fa3d4b6561e74c7" +dependencies = [ + "adler", +] + +[[package]] +name = "mio" +version = "0.8.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3dce281c5e46beae905d4de1870d8b1509a9142b62eedf18b443b011ca8343d0" +dependencies = [ + "libc", + "wasi", + "windows-sys", +] + +[[package]] +name = "nanoid" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3ffa00dec017b5b1a8b7cf5e2c008bfda1aa7e0697ac1508b491fdf2622fb4d8" +dependencies = [ + "rand", +] + +[[package]] +name = "native-tls" +version = "0.2.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "07226173c32f2926027b63cce4bcd8076c3552846cbe7925f3aaffeac0a3b92e" +dependencies = [ + "lazy_static", + "libc", + "log", + "openssl", + "openssl-probe", + "openssl-sys", + "schannel", + "security-framework", + "security-framework-sys", + "tempfile", +] + +[[package]] +name = "nom" +version = "7.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a" +dependencies = [ + "memchr", + "minimal-lexical", +] + +[[package]] +name = "num" +version = "0.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b05180d69e3da0e530ba2a1dae5110317e49e3b7f3d41be227dc5f92e49ee7af" +dependencies = [ + "num-bigint", + "num-complex", + "num-integer", + "num-iter", + "num-rational", + "num-traits", +] + +[[package]] +name = "num-bigint" +version = "0.4.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "608e7659b5c3d7cba262d894801b9ec9d00de989e8a82bd4bef91d08da45cdc0" +dependencies = [ + "autocfg", + "num-integer", + "num-traits", +] + +[[package]] +name = "num-cmp" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "63335b2e2c34fae2fb0aa2cecfd9f0832a1e24b3b32ecec612c3426d46dc8aaa" + +[[package]] +name = "num-complex" +version = "0.4.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1ba157ca0885411de85d6ca030ba7e2a83a28636056c7c699b07c8b6f7383214" +dependencies = [ + "num-traits", +] + +[[package]] +name = "num-integer" +version = "0.1.45" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9" +dependencies = [ + "autocfg", + "num-traits", +] + +[[package]] +name = "num-iter" +version = "0.1.43" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7d03e6c028c5dc5cac6e2dec0efda81fc887605bb3d884578bb6d6bf7514e252" +dependencies = [ + "autocfg", + "num-integer", + "num-traits", +] + +[[package]] +name = "num-rational" +version = "0.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0638a1c9d0a3c0914158145bc76cff373a75a627e6ecbfb71cbe6f453a5a19b0" +dependencies = [ + "autocfg", + "num-bigint", + "num-integer", + "num-traits", +] + +[[package]] +name = "num-traits" +version = "0.2.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "39e3200413f237f41ab11ad6d161bc7239c84dcb631773ccd7de3dfe4b5c267c" +dependencies = [ + "autocfg", +] + +[[package]] +name = "num_cpus" +version = "1.16.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43" +dependencies = [ + "hermit-abi", + "libc", +] + +[[package]] +name = "object" +version = "0.32.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9cf5f9dd3933bd50a9e1f149ec995f39ae2c496d31fd772c1fd45ebc27e902b0" +dependencies = [ + "memchr", +] + +[[package]] +name = "once_cell" +version = "1.18.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dd8b5dd2ae5ed71462c540258bedcb51965123ad7e7ccf4b9a8cafaa4a63576d" + +[[package]] +name = "openssl" +version = "0.10.57" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bac25ee399abb46215765b1cb35bc0212377e58a061560d8b29b024fd0430e7c" +dependencies = [ + "bitflags 2.4.0", + "cfg-if", + "foreign-types", + "libc", + "once_cell", + "openssl-macros", + "openssl-sys", +] + +[[package]] +name = "openssl-macros" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "openssl-probe" +version = "0.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf" + +[[package]] +name = "openssl-sys" +version = "0.9.93" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "db4d56a4c0478783083cfafcc42493dd4a981d41669da64b4572a2a089b51b1d" +dependencies = [ + "cc", + "libc", + "pkg-config", + "vcpkg", +] + +[[package]] +name = "ordered-multimap" +version = "0.4.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ccd746e37177e1711c20dd619a1620f34f5c8b569c53590a72dedd5344d8924a" +dependencies = [ + "dlv-list", + "hashbrown", +] + +[[package]] +name = "parking_lot" +version = "0.12.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f" +dependencies = [ + "lock_api", + "parking_lot_core", +] + +[[package]] +name = "parking_lot_core" +version = "0.9.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "93f00c865fe7cabf650081affecd3871070f26767e7b2070a3ffae14c654b447" +dependencies = [ + "cfg-if", + "libc", + "redox_syscall", + "smallvec", + "windows-targets", +] + +[[package]] +name = "pathdiff" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8835116a5c179084a830efb3adc117ab007512b535bc1a21c991d3b32a6b44dd" + +[[package]] +name = "percent-encoding" +version = "2.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9b2a4787296e9989611394c33f193f676704af1686e70b8f8033ab5ba9a35a94" + +[[package]] +name = "pest" +version = "2.7.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d7a4d085fd991ac8d5b05a147b437791b4260b76326baf0fc60cf7c9c27ecd33" +dependencies = [ + "memchr", + "thiserror", + "ucd-trie", +] + +[[package]] +name = "pest_derive" +version = "2.7.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a2bee7be22ce7918f641a33f08e3f43388c7656772244e2bbb2477f44cc9021a" +dependencies = [ + "pest", + "pest_generator", +] + +[[package]] +name = "pest_generator" +version = "2.7.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d1511785c5e98d79a05e8a6bc34b4ac2168a0e3e92161862030ad84daa223141" +dependencies = [ + "pest", + "pest_meta", + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "pest_meta" +version = "2.7.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b42f0394d3123e33353ca5e1e89092e533d2cc490389f2bd6131c43c634ebc5f" +dependencies = [ + "once_cell", + "pest", + "sha2", +] + +[[package]] +name = "pin-project-lite" +version = "0.2.13" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8afb450f006bf6385ca15ef45d71d2288452bc3683ce2e2cacc0d18e4be60b58" + +[[package]] +name = "pin-utils" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" + +[[package]] +name = "pkg-config" +version = "0.3.27" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "26072860ba924cbfa98ea39c8c19b4dd6a4a25423dbdf219c1eca91aa0cf6964" + +[[package]] +name = "ppv-lite86" +version = "0.2.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de" + +[[package]] +name = "proc-macro2" +version = "1.0.66" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "18fb31db3f9bddb2ea821cde30a9f70117e3f119938b5ee630b7403aa6e2ead9" +dependencies = [ + "unicode-ident", +] + +[[package]] +name = "psl-types" +version = "2.0.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "33cb294fe86a74cbcf50d4445b37da762029549ebeea341421c7c70370f86cac" + +[[package]] +name = "publicsuffix" +version = "2.2.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "96a8c1bda5ae1af7f99a2962e49df150414a43d62404644d98dd5c3a93d07457" +dependencies = [ + "idna 0.3.0", + "psl-types", +] + +[[package]] +name = "quote" +version = "1.0.33" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5267fca4496028628a95160fc423a33e8b2e6af8a5302579e322e4b520293cae" +dependencies = [ + "proc-macro2", +] + +[[package]] +name = "rand" +version = "0.8.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" +dependencies = [ + "libc", + "rand_chacha", + "rand_core", +] + +[[package]] +name = "rand_chacha" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" +dependencies = [ + "ppv-lite86", + "rand_core", +] + +[[package]] +name = "rand_core" +version = "0.6.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" +dependencies = [ + "getrandom", +] + +[[package]] +name = "redox_syscall" +version = "0.3.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "567664f262709473930a4bf9e51bf2ebf3348f2e748ccc50dea20646858f8f29" +dependencies = [ + "bitflags 1.3.2", +] + +[[package]] +name = "regex" +version = "1.10.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "380b951a9c5e80ddfd6136919eef32310721aa4aacd4889a8d39124b026ab343" +dependencies = [ + "aho-corasick", + "memchr", + "regex-automata", + "regex-syntax", +] + +[[package]] +name = "regex-automata" +version = "0.4.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5f804c7828047e88b2d32e2d7fe5a105da8ee3264f01902f796c8e067dc2483f" +dependencies = [ + "aho-corasick", + "memchr", + "regex-syntax", +] + +[[package]] +name = "regex-syntax" +version = "0.8.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c08c74e62047bb2de4ff487b251e4a92e24f48745648451635cec7d591162d9f" + +[[package]] +name = "reqwest" +version = "0.11.20" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3e9ad3fe7488d7e34558a2033d45a0c90b72d97b4f80705666fea71472e2e6a1" +dependencies = [ + "base64 0.21.3", + "bytes", + "cookie", + "cookie_store", + "encoding_rs", + "futures-core", + "futures-util", + "h2", + "http", + "http-body", + "hyper", + "hyper-tls", + "ipnet", + "js-sys", + "log", + "mime", + "native-tls", + "once_cell", + "percent-encoding", + "pin-project-lite", + "serde", + "serde_json", + "serde_urlencoded", + "tokio", + "tokio-native-tls", + "tower-service", + "url", + "wasm-bindgen", + "wasm-bindgen-futures", + "web-sys", + "winreg", +] + +[[package]] +name = "ron" +version = "0.7.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "88073939a61e5b7680558e6be56b419e208420c2adb92be54921fa6b72283f1a" +dependencies = [ + "base64 0.13.1", + "bitflags 1.3.2", + "serde", +] + +[[package]] +name = "rust-ini" +version = "0.18.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f6d5f2436026b4f6e79dc829837d467cc7e9a55ee40e750d716713540715a2df" +dependencies = [ + "cfg-if", + "ordered-multimap", +] + +[[package]] +name = "rustc-demangle" +version = "0.1.23" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d626bb9dae77e28219937af045c257c28bfd3f69333c512553507f5f9798cb76" + +[[package]] +name = "rustix" +version = "0.38.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c0c3dde1fc030af041adc40e79c0e7fbcf431dd24870053d187d7c66e4b87453" +dependencies = [ + "bitflags 2.4.0", + "errno", + "libc", + "linux-raw-sys", + "windows-sys", +] + +[[package]] +name = "ryu" +version = "1.0.15" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1ad4cc8da4ef723ed60bced201181d83791ad433213d8c24efffda1eec85d741" + +[[package]] +name = "schannel" +version = "0.1.22" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0c3733bf4cf7ea0880754e19cb5a462007c4a8c1914bff372ccc95b464f1df88" +dependencies = [ + "windows-sys", +] + +[[package]] +name = "scopeguard" +version = "1.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" + +[[package]] +name = "security-framework" +version = "2.9.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "05b64fb303737d99b81884b2c63433e9ae28abebe5eb5045dcdd175dc2ecf4de" +dependencies = [ + "bitflags 1.3.2", + "core-foundation", + "core-foundation-sys", + "libc", + "security-framework-sys", +] + +[[package]] +name = "security-framework-sys" +version = "2.9.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e932934257d3b408ed8f30db49d85ea163bfe74961f017f405b025af298f0c7a" +dependencies = [ + "core-foundation-sys", + "libc", +] + +[[package]] +name = "serde" +version = "1.0.188" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cf9e0fcba69a370eed61bcf2b728575f726b50b55cba78064753d708ddc7549e" +dependencies = [ + "serde_derive", +] + +[[package]] +name = "serde_derive" +version = "1.0.188" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4eca7ac642d82aa35b60049a6eccb4be6be75e599bd2e9adb5f875a737654af2" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "serde_json" +version = "1.0.108" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3d1c7e3eac408d115102c4c24ad393e0821bb3a5df4d506a80f85f7a742a526b" +dependencies = [ + "itoa", + "ryu", + "serde", +] + +[[package]] +name = "serde_urlencoded" +version = "0.7.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd" +dependencies = [ + "form_urlencoded", + "itoa", + "ryu", + "serde", +] + +[[package]] +name = "serde_yaml" +version = "0.8.26" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "578a7433b776b56a35785ed5ce9a7e777ac0598aac5a6dd1b4b18a307c7fc71b" +dependencies = [ + "indexmap", + "ryu", + "serde", + "yaml-rust", +] + +[[package]] +name = "sha1" +version = "0.10.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f04293dc80c3993519f2d7f6f511707ee7094fe0c6d3406feb330cdb3540eba3" +dependencies = [ + "cfg-if", + "cpufeatures", + "digest", +] + +[[package]] +name = "sha2" +version = "0.10.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "479fb9d862239e610720565ca91403019f2f00410f1864c5aa7479b950a76ed8" +dependencies = [ + "cfg-if", + "cpufeatures", + "digest", +] + +[[package]] +name = "signal-hook-registry" +version = "1.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d8229b473baa5980ac72ef434c4415e70c4b5e71b423043adb4ba059f89c99a1" +dependencies = [ + "libc", +] + +[[package]] +name = "slab" +version = "0.4.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67" +dependencies = [ + "autocfg", +] + +[[package]] +name = "smallvec" +version = "1.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "62bb4feee49fdd9f707ef802e22365a35de4b7b299de4763d44bfea899442ff9" + +[[package]] +name = "socket2" +version = "0.4.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "64a4a911eed85daf18834cfaa86a79b7d266ff93ff5ba14005426219480ed662" +dependencies = [ + "libc", + "winapi", +] + +[[package]] +name = "socket2" +version = "0.5.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7b5fac59a5cb5dd637972e5fca70daf0523c9067fcdc4842f053dae04a18f8e9" +dependencies = [ + "libc", + "windows-sys", +] + +[[package]] +name = "strsim" +version = "0.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623" + +[[package]] +name = "subtle" +version = "2.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "81cdd64d312baedb58e21336b31bc043b77e01cc99033ce76ef539f78e965ebc" + +[[package]] +name = "syn" +version = "2.0.31" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "718fa2415bcb8d8bd775917a1bf12a7931b6dfa890753378538118181e0cb398" +dependencies = [ + "proc-macro2", + "quote", + "unicode-ident", +] + +[[package]] +name = "tempfile" +version = "3.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cb94d2f3cc536af71caac6b6fcebf65860b347e7ce0cc9ebe8f70d3e521054ef" +dependencies = [ + "cfg-if", + "fastrand", + "redox_syscall", + "rustix", + "windows-sys", +] + +[[package]] +name = "thiserror" +version = "1.0.50" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f9a7210f5c9a7156bb50aa36aed4c95afb51df0df00713949448cf9e97d382d2" +dependencies = [ + "thiserror-impl", +] + +[[package]] +name = "thiserror-impl" +version = "1.0.50" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "266b2e40bc00e5a6c09c3584011e08b06f123c00362c92b975ba9843aaaa14b8" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "time" +version = "0.3.28" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "17f6bb557fd245c28e6411aa56b6403c689ad95061f50e4be16c274e70a17e48" +dependencies = [ + "deranged", + "itoa", + "serde", + "time-core", + "time-macros", +] + +[[package]] +name = "time-core" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7300fbefb4dadc1af235a9cef3737cea692a9d97e1b9cbcd4ebdae6f8868e6fb" + +[[package]] +name = "time-macros" +version = "0.2.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1a942f44339478ef67935ab2bbaec2fb0322496cf3cbe84b261e06ac3814c572" +dependencies = [ + "time-core", +] + +[[package]] +name = "tinyvec" +version = "1.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50" +dependencies = [ + "tinyvec_macros", +] + +[[package]] +name = "tinyvec_macros" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" + +[[package]] +name = "tokio" +version = "1.34.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d0c014766411e834f7af5b8f4cf46257aab4036ca95e9d2c144a10f59ad6f5b9" +dependencies = [ + "backtrace", + "bytes", + "libc", + "mio", + "num_cpus", + "parking_lot", + "pin-project-lite", + "signal-hook-registry", + "socket2 0.5.5", + "tokio-macros", + "windows-sys", +] + +[[package]] +name = "tokio-macros" +version = "2.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5b8a1e28f2deaa14e508979454cb3a223b10b938b45af148bc0986de36f1923b" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "tokio-native-tls" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2" +dependencies = [ + "native-tls", + "tokio", +] + +[[package]] +name = "tokio-util" +version = "0.7.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "806fe8c2c87eccc8b3267cbae29ed3ab2d0bd37fca70ab622e46aaa9375ddb7d" +dependencies = [ + "bytes", + "futures-core", + "futures-sink", + "pin-project-lite", + "tokio", + "tracing", +] + +[[package]] +name = "toml" +version = "0.5.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f4f7f0dd8d50a853a531c426359045b1998f04219d88799810762cd4ad314234" +dependencies = [ + "serde", +] + +[[package]] +name = "tower-service" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52" + +[[package]] +name = "tracing" +version = "0.1.37" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8ce8c33a8d48bd45d624a6e523445fd21ec13d3653cd51f681abf67418f54eb8" +dependencies = [ + "cfg-if", + "pin-project-lite", + "tracing-core", +] + +[[package]] +name = "tracing-core" +version = "0.1.31" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0955b8137a1df6f1a2e9a37d8a6656291ff0297c1a97c24e0d8425fe2312f79a" +dependencies = [ + "once_cell", +] + +[[package]] +name = "try-lock" +version = "0.2.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3528ecfd12c466c6f163363caf2d02a71161dd5e1cc6ae7b34207ea2d42d81ed" + +[[package]] +name = "typenum" +version = "1.16.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "497961ef93d974e23eb6f433eb5fe1b7930b659f06d12dec6fc44a8f554c0bba" + +[[package]] +name = "ucd-trie" +version = "0.1.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ed646292ffc8188ef8ea4d1e0e0150fb15a5c2e12ad9b8fc191ae7a8a7f3c4b9" + +[[package]] +name = "unicode-bidi" +version = "0.3.13" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "92888ba5573ff080736b3648696b70cafad7d250551175acbaa4e0385b3e1460" + +[[package]] +name = "unicode-ident" +version = "1.0.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "301abaae475aa91687eb82514b328ab47a211a533026cb25fc3e519b86adfc3c" + +[[package]] +name = "unicode-normalization" +version = "0.1.22" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921" +dependencies = [ + "tinyvec", +] + +[[package]] +name = "url" +version = "2.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "143b538f18257fac9cad154828a57c6bf5157e1aa604d4816b5995bf6de87ae5" +dependencies = [ + "form_urlencoded", + "idna 0.4.0", + "percent-encoding", +] + +[[package]] +name = "urlencoding" +version = "2.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "daf8dba3b7eb870caf1ddeed7bc9d2a049f3cfdfae7cb521b087cc33ae4c49da" + +[[package]] +name = "utf8parse" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a" + +[[package]] +name = "uuid" +version = "1.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5e395fcf16a7a3d8127ec99782007af141946b4795001f876d54fb0d55978560" + +[[package]] +name = "vcpkg" +version = "0.2.15" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426" + +[[package]] +name = "version_check" +version = "0.9.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" + +[[package]] +name = "want" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e" +dependencies = [ + "try-lock", +] + +[[package]] +name = "wasi" +version = "0.11.0+wasi-snapshot-preview1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" + +[[package]] +name = "wasm-bindgen" +version = "0.2.87" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7706a72ab36d8cb1f80ffbf0e071533974a60d0a308d01a5d0375bf60499a342" +dependencies = [ + "cfg-if", + "wasm-bindgen-macro", +] + +[[package]] +name = "wasm-bindgen-backend" +version = "0.2.87" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5ef2b6d3c510e9625e5fe6f509ab07d66a760f0885d858736483c32ed7809abd" +dependencies = [ + "bumpalo", + "log", + "once_cell", + "proc-macro2", + "quote", + "syn", + "wasm-bindgen-shared", +] + +[[package]] +name = "wasm-bindgen-futures" +version = "0.4.37" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c02dbc21516f9f1f04f187958890d7e6026df8d16540b7ad9492bc34a67cea03" +dependencies = [ + "cfg-if", + "js-sys", + "wasm-bindgen", + "web-sys", +] + +[[package]] +name = "wasm-bindgen-macro" +version = "0.2.87" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dee495e55982a3bd48105a7b947fd2a9b4a8ae3010041b9e0faab3f9cd028f1d" +dependencies = [ + "quote", + "wasm-bindgen-macro-support", +] + +[[package]] +name = "wasm-bindgen-macro-support" +version = "0.2.87" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "54681b18a46765f095758388f2d0cf16eb8d4169b639ab575a8f5693af210c7b" +dependencies = [ + "proc-macro2", + "quote", + "syn", + "wasm-bindgen-backend", + "wasm-bindgen-shared", +] + +[[package]] +name = "wasm-bindgen-shared" +version = "0.2.87" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ca6ad05a4870b2bf5fe995117d3728437bd27d7cd5f06f13c17443ef369775a1" + +[[package]] +name = "web-sys" +version = "0.3.64" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9b85cbef8c220a6abc02aefd892dfc0fc23afb1c6a426316ec33253a3877249b" +dependencies = [ + "js-sys", + "wasm-bindgen", +] + +[[package]] +name = "wikitext-parser" +version = "0.3.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fc583a2f6a4ddf4ba78dbc185945af790f0660cee736a1c9a999f78d41d8df54" +dependencies = [ + "lazy_static", + "log", + "regex", +] + +[[package]] +name = "winapi" +version = "0.3.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" +dependencies = [ + "winapi-i686-pc-windows-gnu", + "winapi-x86_64-pc-windows-gnu", +] + +[[package]] +name = "winapi-i686-pc-windows-gnu" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" + +[[package]] +name = "winapi-x86_64-pc-windows-gnu" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" + +[[package]] +name = "windows-core" +version = "0.51.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f1f8cf84f35d2db49a46868f947758c7a1138116f7fac3bc844f43ade1292e64" +dependencies = [ + "windows-targets", +] + +[[package]] +name = "windows-sys" +version = "0.48.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9" +dependencies = [ + "windows-targets", +] + +[[package]] +name = "windows-targets" +version = "0.48.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c" +dependencies = [ + "windows_aarch64_gnullvm", + "windows_aarch64_msvc", + "windows_i686_gnu", + "windows_i686_msvc", + "windows_x86_64_gnu", + "windows_x86_64_gnullvm", + "windows_x86_64_msvc", +] + +[[package]] +name = "windows_aarch64_gnullvm" +version = "0.48.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8" + +[[package]] +name = "windows_aarch64_msvc" +version = "0.48.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc" + +[[package]] +name = "windows_i686_gnu" +version = "0.48.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e" + +[[package]] +name = "windows_i686_msvc" +version = "0.48.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406" + +[[package]] +name = "windows_x86_64_gnu" +version = "0.48.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e" + +[[package]] +name = "windows_x86_64_gnullvm" +version = "0.48.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc" + +[[package]] +name = "windows_x86_64_msvc" +version = "0.48.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538" + +[[package]] +name = "winreg" +version = "0.50.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "524e57b2c537c0f9b1e69f1965311ec12182b4122e45035b1508cd24d2adadb1" +dependencies = [ + "cfg-if", + "windows-sys", +] + +[[package]] +name = "yaml-rust" +version = "0.4.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "56c1936c4cc7a1c9ab21a1ebb602eb942ba868cbd44a99cb7cdc5892335e1c85" +dependencies = [ + "linked-hash-map", +] + +[[package]] +name = "zerocopy" +version = "0.7.26" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e97e415490559a91254a2979b4829267a57d2fcd741a98eee8b722fb57289aa0" +dependencies = [ + "zerocopy-derive", +] + +[[package]] +name = "zerocopy-derive" +version = "0.7.26" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dd7e48ccf166952882ca8bd778a43502c64f33bf94c12ebe2a7f08e5a0f6689f" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 00000000..fc97d1bb --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,24 @@ +[package] +name = "ludusavi-manifest" +version = "0.1.0" +authors = ["mtkennerly "] +edition = "2021" +description = "Ludusavi manifest importer" +repository = "https://github.com/mtkennerly/ludusavi-manifest" +readme = "README.md" +license = "MIT" + +[dependencies] +chrono = { version = "0.4.31", features = ["serde"] } +clap = { version = "4.4.8", features = ["derive"] } +itertools = "0.12.0" +jsonschema = "0.17.1" +mediawiki = "0.2.11" +once_cell = "1.18.0" +regex = "1.10.2" +serde = { version = "1.0.139", features = ["derive"] } +serde_json = "1.0.108" +serde_yaml = "0.8.25" +thiserror = "1.0.50" +tokio = { version = "1.34.0", features = ["full"] } +wikitext-parser = "0.3.3" diff --git a/data/manifest.yaml b/data/manifest.yaml index adaa8708..7a480c58 100644 --- a/data/manifest.yaml +++ b/data/manifest.yaml @@ -1,17 +1,18 @@ -'! That Bastard Is Trying To Steal Our Gold !': +--- +"! That Bastard Is Trying To Steal Our Gold !": installDir: - '! That Bastard Is Trying To Steal Our Gold !': {} + "! That Bastard Is Trying To Steal Our Gold !": {} launch: - /TDTTSOG.exe: + "/TDTTSOG.exe": - when: - os: windows store: steam - /TDTTSOGLinux.x86: + "/TDTTSOGLinux.x86": - when: - bit: 32 os: linux store: steam - /TDTTSOGLinux.x86_64: + "/TDTTSOGLinux.x86_64": - when: - bit: 64 os: linux @@ -23,21 +24,21 @@ - save steam: id: 449940 -'!4RC4N01D!': +"!4RC4N01D!": steam: id: 777010 -'!4RC4N01D! 2: Retro Edition': +"!4RC4N01D! 2: Retro Edition": steam: id: 791550 -'!4RC4N01D! 3: Cold Space': +"!4RC4N01D! 3: Cold Space": steam: id: 809370 -'!4RC4N01D! 4: Kohbeep Edition': +"!4RC4N01D! 4: Kohbeep Edition": steam: id: 824660 -'!Anyway!': +"!Anyway!": files: - /anyway: + "/anyway": tags: - save when: @@ -45,36 +46,36 @@ installDir: Anyway: {} launch: - /AnyWay!.exe: + "/AnyWay!.exe": - when: - os: windows store: steam steam: id: 866510 -'!BurnToDie!': +"!BurnToDie!": steam: id: 928700 -'!Dead Pixels Adventure!': +"!Dead Pixels Adventure!": steam: id: 873700 -'!LABrpgUP!': +"!LABrpgUP!": installDir: - '!LABrpgUP!': {} + "!LABrpgUP!": {} launch: - /RPG.exe: + "/RPG.exe": - when: - os: windows store: steam steam: id: 870990 -'!Peace Phantom 2!': +"!Peace Phantom 2!": steam: id: 805170 -'"LIFE" not found': +"\"LIFE\" not found": installDir: LIFEnotfound: {} launch: - /LIFEnotfound.exe: + "/LIFEnotfound.exe": - when: - store: steam steam: @@ -83,114 +84,114 @@ $1 Ride: installDir: $1 Ride: {} launch: - /ride.exe: + "/ride.exe": - when: - store: steam steam: id: 508290 -'''83': +"'83": steam: id: 1059220 -'''90s Football Stars': +"'90s Football Stars": installDir: - '''90s Football Stars': {} + "'90s Football Stars": {} launch: - /90s Football Stars.app: + "/90s Football Stars.app": - when: - os: mac store: steam - /90s Football Stars.exe: + "/90s Football Stars.exe": - when: - os: windows store: steam steam: id: 879310 -'''Member the Alamo?': +"'Member the Alamo?": installDir: - '''Member the Alamo': {} + "'Member the Alamo": {} launch: - /Member The Alamo.exe: + "/Member The Alamo.exe": - when: - os: windows store: steam steam: id: 1364510 -'''n Verlore Verstand': +"'n Verlore Verstand": installDir: - '''n Verlore Verstand': {} + "'n Verlore Verstand": {} launch: - /'nVerloreVerstand.app: + "/'nVerloreVerstand.app": - when: - os: mac store: steam - /'nVerloreVerstand.exe: + "/'nVerloreVerstand.exe": - when: - os: windows store: steam - /nVerloreVerstand.x86: + "/nVerloreVerstand.x86": - when: - bit: 32 os: linux store: steam - /nVerloreVerstand.x86_64: + "/nVerloreVerstand.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 439550 -'***': +"***": installDir: SSS: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam steam: id: 1034230 -.Age: +".Age": steam: id: 638510 -.EXE: +".EXE": installDir: - .EXE: {} + ".EXE": {} launch: - /EXE_linux.x86: + "/EXE_linux.x86": - when: - bit: 32 os: linux store: steam - /EXE_linux.x86_64: + "/EXE_linux.x86_64": - when: - bit: 64 os: linux store: steam - /EXE_mac.app/Contents/MacOS/EXE_mac: + "/EXE_mac.app/Contents/MacOS/EXE_mac": - when: - os: mac store: steam - /EXE_win32.exe: + "/EXE_win32.exe": - when: - bit: 32 os: windows store: steam - /EXE_win64.exe: + "/EXE_win64.exe": - when: - bit: 64 os: windows store: steam steam: id: 471640 -.Projekt: +".Projekt": installDir: projekt: {} launch: - /projekt.app/Contents/MacOS/projekt: + "/projekt.app/Contents/MacOS/projekt": - when: - os: mac store: steam - /projekt.exe: + "/projekt.exe": - when: - os: windows store: steam @@ -200,19 +201,19 @@ $1 Ride: - save steam: id: 759000 -'.T.E.S.T: Expected Behaviour': +".T.E.S.T: Expected Behaviour": files: - /AppData/LocalLow/Veslo Games/Test Expected Behaviour/default.profile: + "/AppData/LocalLow/Veslo Games/Test Expected Behaviour/default.profile": tags: - save when: - os: windows - /unity3d/Veslo Games/Test Expected Behaviour/default.profile: + "/unity3d/Veslo Games/Test Expected Behaviour/default.profile": tags: - save when: - os: linux - /unity3d/Veslo Games/Test Expected Behaviour/pref: + "/unity3d/Veslo Games/Test Expected Behaviour/pref": tags: - config when: @@ -220,20 +221,20 @@ $1 Ride: installDir: Test Expected Behaviour: {} launch: - /Test Expected Behaviour.app: + "/Test Expected Behaviour.app": - when: - os: mac store: steam - /Test Expected Behaviour.exe: + "/Test Expected Behaviour.exe": - when: - os: windows store: steam - /Test Expected Behaviour.x86: + "/Test Expected Behaviour.x86": - when: - bit: 32 os: linux store: steam - /Test Expected Behaviour.x86_64: + "/Test Expected Behaviour.x86_64": - when: - bit: 64 os: linux @@ -244,19 +245,19 @@ $1 Ride: - config steam: id: 771710 -.fall: +".fall": installDir: fall: {} launch: - /fall.exe: + "/fall.exe": - when: - os: windows store: steam steam: id: 1087950 -.hack//G.U. Last Recode: +".hack//G.U. Last Recode": files: - /userdata//525480/remote/savedata: + "/userdata//525480/remote/savedata": tags: - save when: @@ -265,7 +266,7 @@ $1 Ride: installDir: hackGU: {} launch: - /hackGU.exe: + "/hackGU.exe": - when: - os: windows store: steam @@ -273,27 +274,27 @@ $1 Ride: id: 525480 0 A.D.: files: - /Library/Application/ Support/0ad: + "/Library/Application/ Support/0ad": tags: - save when: - os: mac - /0ad: + "/0ad": tags: - config when: - os: windows - /My Games/0ad: + "/My Games/0ad": tags: - save when: - os: windows - /0ad: + "/0ad": tags: - config when: - os: linux - /0ad: + "/0ad": tags: - save when: @@ -303,17 +304,17 @@ $1 Ride: 0 Day: {} steam: id: 554920 -'0000': +"0000": steam: id: 639880 007 Legends: files: - /My Games/Activision/007 Legends: + "/My Games/Activision/007 Legends": tags: - save when: - os: windows - /Activision/007 Legends: + "/Activision/007 Legends": tags: - config when: @@ -321,25 +322,25 @@ $1 Ride: installDir: 007 Legends: {} launch: - /Bond2012PC.exe: + "/Bond2012PC.exe": - when: - store: steam steam: id: 211670 -'007: Quantum of Solace': +"007: Quantum of Solace": files: - /Activision/Quantum of Solace/players//config.cfg: + "/Activision/Quantum of Solace/players//config.cfg": tags: - config - save when: - os: windows - /Microsoft/XLive/Content/01100001007F57F2: + "/Microsoft/XLive/Content/01100001007F57F2": tags: - save when: - os: windows - /Activision/Quantum of Solace: + "/Activision/Quantum of Solace": tags: - config when: @@ -347,16 +348,16 @@ $1 Ride: installDir: Quantum of Solace: {} launch: - /testapp.exe: + "/testapp.exe": - when: - store: steam steam: id: 10080 -03.04: +"03.04": installDir: - 03.04: {} + "03.04": {} launch: - /03.04.exe: + "/03.04.exe": - when: - os: windows store: steam @@ -366,7 +367,7 @@ $1 Ride: installDir: 0Gravity: {} launch: - /0Gravity.exe: + "/0Gravity.exe": - when: - os: windows store: steam @@ -374,13 +375,13 @@ $1 Ride: id: 1101290 0rbitalis: files: - /userdata//278440/remote: + "/userdata//278440/remote": tags: - config - save when: - store: steam - /0RBITALIS: + "/0RBITALIS": tags: - config - save @@ -389,11 +390,11 @@ $1 Ride: installDir: 0rbitalis: {} launch: - /0RBITALIS.app: + "/0RBITALIS.app": - when: - os: mac store: steam - /0RBITALIS.exe: + "/0RBITALIS.exe": - when: - os: windows store: steam @@ -403,15 +404,15 @@ $1 Ride: installDir: 0°N 0°W: {} launch: - /0N0W.app: + "/0N0W.app": - when: - os: mac store: steam - /0N0W.exe: + "/0N0W.exe": - when: - os: windows store: steam - /0N0W.x86_64: + "/0N0W.x86_64": - when: - os: linux store: steam @@ -421,20 +422,20 @@ $1 Ride: installDir: 1 HIT KILL: {} launch: - /RTP_RT.exe: + "/RTP_RT.exe": - when: - os: windows store: steam steam: id: 882750 -'1 Moment of Time: Silentville': +"1 Moment of Time: Silentville": files: - /2Monkeys/CrossMoT: + "/2Monkeys/CrossMoT": tags: - save when: - os: windows - /2Monkeys/CrossMoT/Settings.sav: + "/2Monkeys/CrossMoT/Settings.sav": tags: - config when: @@ -442,15 +443,15 @@ $1 Ride: installDir: 1 Moment Of Time Silentville: {} launch: - /MomentOfTime.app: + "/MomentOfTime.app": - when: - os: mac store: steam - /Silentville: + "/Silentville": - when: - os: linux store: steam - /Silentville.exe: + "/Silentville.exe": - when: - os: windows store: steam @@ -458,7 +459,7 @@ $1 Ride: id: 497400 1 Screen Platformer: files: - /OneScreenPlatformStaticGM14: + "/OneScreenPlatformStaticGM14": tags: - config - save @@ -467,11 +468,11 @@ $1 Ride: installDir: 1 Screen Platformer: {} launch: - /1ScreenPlatformer.exe: + "/1ScreenPlatformer.exe": - when: - os: windows store: steam - /OneScreenPlatformStaticGM14.app: + "/OneScreenPlatformStaticGM14.app": - when: - os: mac store: steam @@ -480,46 +481,49 @@ $1 Ride: 1 ⛷ 1: steam: id: 932490 -'1, 2, 3... Bruegel!': +"1, 2, 3... Bruegel!": installDir: - '1, 2, 3... Bruegel!': {} + "1, 2, 3... Bruegel!": {} steam: id: 1071310 -'1,000 Heads Among the Trees': +"1,000 Heads Among the Trees": installDir: 1000 Heads Among the Trees: {} launch: - /1000 Heads Among the Trees.app: + "/1000 Heads Among the Trees.app": - when: - os: mac store: steam - /1000 Heads Among the Trees.exe: + "/1000 Heads Among the Trees.exe": - when: - bit: 32 os: windows store: steam + - bit: 64 + os: windows + store: steam steam: id: 406730 1-2-Swift: installDir: 1-2-Swift: {} launch: - /1-2-Swift.exe: + "/1-2-Swift.exe": - when: - bit: 64 os: windows store: steam steam: id: 583570 -'1-Bit Revival: The Residuals of Null': +"1-Bit Revival: The Residuals of Null": installDir: 1-Bit Revival The Residuals of Null: {} launch: - /nw: + "/nw": - when: - os: linux store: steam - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -529,7 +533,7 @@ $1 Ride: installDir: 123kickit: {} launch: - /123KickIt.exe: + "/123KickIt.exe": - when: - store: steam registry: @@ -542,7 +546,7 @@ $1 Ride: installDir: A Piece of Wish upon the Stars: {} launch: - /SatrrySky.exe: + "/SatrrySky.exe": - when: - store: steam steam: @@ -551,7 +555,7 @@ $1 Ride: installDir: 10 Miles To Safety: {} launch: - /TenMilesToSafety.exe: + "/TenMilesToSafety.exe": - when: - os: windows store: steam @@ -561,11 +565,11 @@ $1 Ride: installDir: 10 Minute Barbarian: {} launch: - /10 Minute Barbarian.app/Contents/MacOS/10 Minute Barbarian: + "/10 Minute Barbarian.app/Contents/MacOS/10 Minute Barbarian": - when: - os: mac store: steam - /10 Minute Barbarian.exe: + "/10 Minute Barbarian.exe": - when: - os: windows store: steam @@ -575,7 +579,7 @@ $1 Ride: installDir: 10 Minute Tower: {} launch: - /10MinuteTower.exe: + "/10MinuteTower.exe": - when: - os: windows store: steam @@ -583,22 +587,22 @@ $1 Ride: id: 477010 10 Second Ninja: files: - /Library/Application Support/com.yoyogames.macyoyorunner: + "/Library/Application Support/com.yoyogames.macyoyorunner": tags: - save when: - os: mac - /Library/Application Support/com.yoyogames.macyoyorunner/settings.ini: + "/Library/Application Support/com.yoyogames.macyoyorunner/settings.ini": tags: - config when: - os: mac - /10_Second_Ninja: + "/10_Second_Ninja": tags: - save when: - os: windows - /10_Second_Ninja/settings.ini: + "/10_Second_Ninja/settings.ini": tags: - config when: @@ -606,11 +610,11 @@ $1 Ride: installDir: 10 Second Ninja: {} launch: - /10 Second Ninja.app: + "/10 Second Ninja.app": - when: - os: mac store: steam - /10 Second Ninja.exe: + "/10 Second Ninja.exe": - when: - os: windows store: steam @@ -618,7 +622,7 @@ $1 Ride: id: 271670 10 Second Ninja X: files: - /_10_Second_Ninja_X_Test/asyncsavegroup/10SNX.sav: + "/_10_Second_Ninja_X_Test/asyncsavegroup/10SNX.sav": tags: - config - save @@ -627,7 +631,7 @@ $1 Ride: installDir: 10 Second Ninja X: {} launch: - /10SNX.exe: + "/10SNX.exe": - when: - os: windows store: steam @@ -637,11 +641,11 @@ $1 Ride: installDir: 10 Second Shuriken: {} launch: - /10ss.exe: + "/10ss.exe": - when: - os: windows store: steam - /10ss.sh: + "/10ss.sh": - when: - os: linux store: steam @@ -656,7 +660,7 @@ $1 Ride: installDir: 10 Years After: {} launch: - /10 Years After.exe: + "/10 Years After.exe": - when: - os: windows store: steam @@ -667,26 +671,26 @@ $1 Ride: - save steam: id: 339240 -'10,000,000': +"10,000,000": files: - /unity3d/EightyEightGames/10000000: + "/unity3d/EightyEightGames/10000000": tags: - config - save when: - os: linux installDir: - '10000000': {} + "10000000": {} launch: - /10000000.app: + "/10000000.app": - when: - os: mac store: steam - /10000000.exe: + "/10000000.exe": - when: - os: windows store: steam - /10000000.x86: + "/10000000.x86": - when: - os: linux store: steam @@ -701,7 +705,7 @@ $1 Ride: installDir: 10-4: {} launch: - /10-4.exe: + "/10-4.exe": - when: - bit: 64 os: windows @@ -712,7 +716,7 @@ $1 Ride: installDir: 100 Chests: {} launch: - /build_version_1.1.exe: + "/build_version_1.1.exe": - when: - os: windows store: steam @@ -722,21 +726,21 @@ $1 Ride: installDir: 100 Seconds: {} launch: - /100seconds.exe: + "/100seconds.exe": - when: - os: windows store: steam steam: id: 796580 -100 Years' War: +"100 Years' War": installDir: 100 Years War: {} launch: - /100yearswar.app: + "/100yearswar.app": - when: - os: mac store: steam - /100yearswar.exe: + "/100yearswar.exe": - when: - os: windows store: steam @@ -746,19 +750,19 @@ $1 Ride: installDir: 100$: {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: id: 1016250 100% Orange Juice!: files: - /config.dat: + "/config.dat": tags: - config when: - os: windows - /user.dat: + "/user.dat": tags: - save when: @@ -766,11 +770,11 @@ $1 Ride: installDir: 100 Orange Juice: {} launch: - /100orange.exe: + "/100orange.exe": - when: - bit: 64 store: steam - /100orange_x86.exe: + "/100orange_x86.exe": - when: - bit: 32 store: steam @@ -778,23 +782,23 @@ $1 Ride: id: 282800 1000 Amps: files: - /save*: + "/save*": tags: - save when: - store: steam - /settings: + "/settings": tags: - config when: - store: steam - /Library/Application Support/Brandon Brizzi/1000 Amps: + "/Library/Application Support/Brandon Brizzi/1000 Amps": tags: - config - save when: - os: mac - '/Macromedia/Flash Player/#SharedObjects/{random}/localhost/games/Desura/Common/1000-amps/1000AmpsReWin.exe': + "/Macromedia/Flash Player/#SharedObjects/{random}/localhost/games/Desura/Common/1000-amps/1000AmpsReWin.exe": tags: - save when: @@ -802,11 +806,11 @@ $1 Ride: installDir: 1000 Amps: {} launch: - /1000 Amps.app: + "/1000 Amps.app": - when: - os: mac store: steam - /1000AmpsReWin.exe: + "/1000AmpsReWin.exe": - when: - os: windows store: steam @@ -816,7 +820,7 @@ $1 Ride: installDir: 1000 days to escape: {} launch: - /1000dte.exe: + "/1000dte.exe": - when: - os: windows store: steam @@ -826,7 +830,7 @@ $1 Ride: installDir: 1000 Stages: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -836,7 +840,7 @@ $1 Ride: installDir: 1000$: {} launch: - /1000$.exe: + "/1000$.exe": - when: - os: windows store: steam @@ -846,7 +850,7 @@ $1 Ride: installDir: 1001Hugs: {} launch: - /TPS_1001Hugs.exe: + "/TPS_1001Hugs.exe": - when: - os: windows store: steam @@ -856,11 +860,11 @@ $1 Ride: installDir: 1001 Jigsaw. 6 Magic Elements: {} launch: - /1001 Jigsaw. 6 Magic Elements.exe: + "/1001 Jigsaw. 6 Magic Elements.exe": - when: - os: windows store: steam - /1001 Jigsaw. 6 Magic elements.app: + "/1001 Jigsaw. 6 Magic elements.app": - when: - os: mac store: steam @@ -870,7 +874,7 @@ $1 Ride: installDir: 1001 Jigsaw Castles And Palaces: {} launch: - /1001 Jigsaw. World Tour Castles and Palaces.exe: + "/1001 Jigsaw. World Tour Castles and Palaces.exe": - when: - os: windows store: steam @@ -880,11 +884,11 @@ $1 Ride: installDir: 1001 Jigsaw. Earth Chronicles: {} launch: - /1001 Jigsaw. Earth Chronicles.app: + "/1001 Jigsaw. Earth Chronicles.app": - when: - os: mac store: steam - /1001 Jigsaw. Earth Chronicles.exe: + "/1001 Jigsaw. Earth Chronicles.exe": - when: - os: windows store: steam @@ -894,11 +898,11 @@ $1 Ride: installDir: 1001 Jigsaw. Home Sweet Home: {} launch: - /1001 Jigsaw. Home Sweet Home.exe: + "/1001 Jigsaw. Home Sweet Home.exe": - when: - os: windows store: steam - /1001 Jigsaw. World Tour Home Sweet Home.app: + "/1001 Jigsaw. World Tour Home Sweet Home.app": - when: - os: mac store: steam @@ -908,77 +912,77 @@ $1 Ride: installDir: 1001 JIGSAW. MYTHS OF ANCIENT GREECE: {} launch: - /1001 Jigsaw. Myths of ancient Greece.exe: + "/1001 Jigsaw. Myths of ancient Greece.exe": - when: - os: windows store: steam steam: id: 1165430 -'1001 Jigsaw. World Tour: Australian Puzzles': +"1001 Jigsaw. World Tour: Australian Puzzles": installDir: 1001 Jigsaw. World Tour Australian Puzzles: {} launch: - /1001 Jigsaw. World Tour Australian Puzzles.app: + "/1001 Jigsaw. World Tour Australian Puzzles.app": - when: - os: mac store: steam - /1001 Jigsaw. World Tour Australian Puzzles.exe: + "/1001 Jigsaw. World Tour Australian Puzzles.exe": - when: - os: windows store: steam steam: id: 970880 -'1001 Jigsaw. World Tour: Europe': +"1001 Jigsaw. World Tour: Europe": installDir: 1001 Jigsaw Europe: {} launch: - /1001 Jigsaw World Tour Europe.app: + "/1001 Jigsaw World Tour Europe.app": - when: - os: mac store: steam - /1001 Jigsaw World Tour Europe.exe: + "/1001 Jigsaw World Tour Europe.exe": - when: - os: windows store: steam steam: id: 1128830 -'1001 Jigsaw. World Tour: France': +"1001 Jigsaw. World Tour: France": installDir: 1001 Jigsaw. World Tour France: {} launch: - /1001 Jigsaw. World Tour France.app: + "/1001 Jigsaw. World Tour France.app": - when: - os: mac store: steam - /1001 Jigsaw. World Tour France.exe: + "/1001 Jigsaw. World Tour France.exe": - when: - os: windows store: steam steam: id: 1095870 -'1001 Jigsaw. World Tour: Great America': +"1001 Jigsaw. World Tour: Great America": installDir: 1001 Jigsaw. World Tour Great America: {} launch: - /1001 Jigsaw. World Tour Great America.app: + "/1001 Jigsaw. World Tour Great America.app": - when: - os: mac store: steam - /1001 Jigsaw. World Tour Great America.exe: + "/1001 Jigsaw. World Tour Great America.exe": - when: - os: windows store: steam steam: id: 970910 -'1001 Jigsaw. World Tour: London': +"1001 Jigsaw. World Tour: London": installDir: 1001 Jigsaw. World Tour London: {} launch: - /100 Jigsaw. World Tour London Puzzles.exe: + "/100 Jigsaw. World Tour London Puzzles.exe": - when: - os: windows store: steam - /1001 Jigsaw. World Tour London Puzzles.app: + "/1001 Jigsaw. World Tour London Puzzles.app": - when: - os: mac store: steam @@ -986,23 +990,23 @@ $1 Ride: id: 970890 1001 Spikes: files: - /Library/Application Support/1001 Spikes: + "/Library/Application Support/1001 Spikes": tags: - config - save when: - os: mac - /My Games/1001 Spikes/Saves/Common.dat: + "/My Games/1001 Spikes/Saves/Common.dat": tags: - config when: - os: windows - /My Games/1001 Spikes/Saves/Profile*.sav: + "/My Games/1001 Spikes/Saves/Profile*.sav": tags: - save when: - os: windows - /1001 spikes: + "/1001 spikes": tags: - config - save @@ -1011,21 +1015,21 @@ $1 Ride: installDir: 1001 Spikes: {} launch: - /1001 Spikes.app: + "/1001 Spikes.app": - when: - bit: 64 os: mac store: steam - /1001 Spikes.exe: + "/1001 Spikes.exe": - when: - os: windows store: steam - /run-i386.sh: + "/run-i386.sh": - when: - bit: 32 os: linux store: steam - /run-x64.sh: + "/run-x64.sh": - when: - bit: 64 os: linux @@ -1036,15 +1040,15 @@ $1 Ride: installDir: 1001stHyperTower: {} launch: - /1001st Hyper Tower.exe: + "/1001st Hyper Tower.exe": - when: - os: windows store: steam - /1001stHyperTower.x86_64: + "/1001stHyperTower.x86_64": - when: - os: linux store: steam - /Mac.app: + "/Mac.app": - when: - os: mac store: steam @@ -1054,7 +1058,7 @@ $1 Ride: installDir: 100ft Robot Golf: {} launch: - /golf64.exe: + "/golf64.exe": - when: - bit: 64 os: windows @@ -1065,7 +1069,7 @@ $1 Ride: installDir: 100nya: {} launch: - /100nya.exe: + "/100nya.exe": - when: - os: windows store: steam @@ -1075,60 +1079,60 @@ $1 Ride: installDir: 101 Ways to Die: {} launch: - /101wtd.exe: + "/101wtd.exe": - when: - os: windows store: steam steam: id: 413480 -'1010': +"1010": installDir: - '1010': {} + "1010": {} launch: - /1010.exe: + "/1010.exe": - when: - os: windows store: steam steam: id: 761190 -'101010': +"101010": installDir: - '101010': {} + "101010": {} steam: id: 1081800 -'102 Dalmatians: Puppies to the Rescue': +"102 Dalmatians: Puppies to the Rescue": files: - /savegame.dat: + "/savegame.dat": tags: - save when: - os: windows -'103': +"103": files: - /OneZeroThree/Saved/Config/WindowsNoEditor: + "/OneZeroThree/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /OneZeroThree/Saved/SaveGames: + "/OneZeroThree/Saved/SaveGames": tags: - config - save when: - os: windows installDir: - '103': {} + "103": {} launch: - /103.app: + "/103.app": - when: - os: mac store: steam - /103.exe: + "/103.exe": - when: - bit: 64 os: windows store: steam - /OneZeroThree.sh: + "/OneZeroThree.sh": - when: - bit: 64 os: linux @@ -1137,7 +1141,7 @@ $1 Ride: id: 913850 11-11 Memories Retold: files: - /userdata//735580/remote: + "/userdata//735580/remote": tags: - save when: @@ -1145,19 +1149,19 @@ $1 Ride: installDir: RocketMan: {} registry: - 'HKEY_CURRENT_USER/Software/Bandai Namco/11-11: Memories Retold': + "HKEY_CURRENT_USER/Software/Bandai Namco/11-11: Memories Retold": tags: - config steam: id: 735580 112 Operator: files: - /AppData/LocalLow/JutsuGames/112 Operator/Config/playerConfig.json: + "/AppData/LocalLow/JutsuGames/112 Operator/Config/playerConfig.json": tags: - config when: - os: windows - /AppData/LocalLow/JutsuGames/112 Operator/Saves: + "/AppData/LocalLow/JutsuGames/112 Operator/Saves": tags: - save when: @@ -1165,37 +1169,37 @@ $1 Ride: installDir: 112 Operator: {} launch: - /Operator 112 Mac.app: + "/Operator 112 Mac.app": - when: - os: mac store: steam - - arguments: '-force-glcore' + - arguments: "-force-glcore" when: - os: mac store: steam - - arguments: '-force-metal' + - arguments: "-force-metal" when: - os: mac store: steam - /Operator 112.exe: + "/Operator 112.exe": - when: - os: windows store: steam steam: id: 793460 -'1166': +"1166": installDir: - '1166': {} + "1166": {} launch: - /1166 (PC).exe: + "/1166 (PC).exe": - when: - os: windows store: steam - /1166(Linux).x86: + "/1166(Linux).x86": - when: - os: linux store: steam - /1166(MAC).app: + "/1166(MAC).app": - when: - os: mac store: steam @@ -1210,7 +1214,7 @@ $1 Ride: installDir: 11号小镇综合症: {} launch: - /game.exe: + "/game.exe": - when: - bit: 64 os: windows @@ -1221,7 +1225,7 @@ $1 Ride: installDir: 12 HOURS: {} launch: - /12 HOURS.exe: + "/12 HOURS.exe": - when: - os: windows store: steam @@ -1231,39 +1235,39 @@ $1 Ride: installDir: 12 HOURS 2: {} launch: - /12 HOURS 2.exe: + "/12 HOURS 2.exe": - when: - store: steam steam: id: 1126840 12 Labours of Hercules: files: - /.Saves/ZOG/Hercules: + "/.Saves/ZOG/Hercules": tags: - save when: - os: linux - /.Saves/ZOG/Hercules/Settings.sav: + "/.Saves/ZOG/Hercules/Settings.sav": tags: - config when: - os: linux - /Library/Application Support/ZOG/Hercules: + "/Library/Application Support/ZOG/Hercules": tags: - save when: - os: mac - /Library/Application Support/ZOG/Hercules/Settings.sav: + "/Library/Application Support/ZOG/Hercules/Settings.sav": tags: - config when: - os: mac - /ZOG/Hercules: + "/ZOG/Hercules": tags: - save when: - os: windows - /ZOG/Hercules/Settings.sav: + "/ZOG/Hercules/Settings.sav": tags: - config when: @@ -1271,28 +1275,28 @@ $1 Ride: installDir: 12 Labours of Hercules: {} launch: - /12 Labours of Hercules.app: + "/12 Labours of Hercules.app": - when: - os: mac store: steam - /12LaboursOfHercules.exe: + "/12LaboursOfHercules.exe": - when: - os: windows store: steam - /Hercules: + "/Hercules": - when: - os: linux store: steam steam: id: 342580 -'12 Labours of Hercules II: The Cretan Bull': +"12 Labours of Hercules II: The Cretan Bull": files: - /ZOG/Hercules2: + "/ZOG/Hercules2": tags: - save when: - os: windows - /ZOG/Hercules2/Settings.sav: + "/ZOG/Hercules2/Settings.sav": tags: - config when: @@ -1300,28 +1304,28 @@ $1 Ride: installDir: 12 Labours of Hercules II The Cretan Bull: {} launch: - /12 Labours of Hercules II.app: + "/12 Labours of Hercules II.app": - when: - os: mac store: steam - /12LaboursOfHercules2.exe: + "/12LaboursOfHercules2.exe": - when: - os: windows store: steam - /Hercules2: + "/Hercules2": - when: - os: linux store: steam steam: id: 360640 -'12 Labours of Hercules III: Girl Power': +"12 Labours of Hercules III: Girl Power": files: - /ZOG/Hercules3: + "/ZOG/Hercules3": tags: - save when: - os: windows - /ZOG/Hercules3/Settings.sav: + "/ZOG/Hercules3/Settings.sav": tags: - config when: @@ -1329,98 +1333,98 @@ $1 Ride: installDir: 12 Labours of Hercules III Girl Power: {} launch: - /12 Labours of Hercules III.app: + "/12 Labours of Hercules III.app": - when: - os: mac store: steam - /12LaboursOfHercules3.exe: + "/12LaboursOfHercules3.exe": - when: - os: windows store: steam - /Hercules3: + "/Hercules3": - when: - os: linux store: steam steam: id: 360650 -'12 Labours of Hercules IV: Mother Nature': +"12 Labours of Hercules IV: Mother Nature": installDir: 12 Labours of Hercules IV Mother Nature: {} launch: - /12 Labours of Hercules IV.app: + "/12 Labours of Hercules IV.app": - when: - os: mac store: steam - /12LaboursOfHercules4.exe: + "/12LaboursOfHercules4.exe": - when: - os: windows store: steam - /Hercules4: + "/Hercules4": - when: - os: linux store: steam steam: id: 396800 -'12 Labours of Hercules IX: A Hero''s Moonwalk': +"12 Labours of Hercules IX: A Hero's Moonwalk": installDir: - 12 Labours of Hercules IX A Hero's Moonwalk: {} + "12 Labours of Hercules IX A Hero's Moonwalk": {} launch: - /12 Labours of Hercules IX.app: + "/12 Labours of Hercules IX.app": - when: - os: mac store: steam - /12LaboursOfHercules9.exe: + "/12LaboursOfHercules9.exe": - when: - os: windows store: steam steam: id: 1026070 -'12 Labours of Hercules V: Kids of Hellas': +"12 Labours of Hercules V: Kids of Hellas": installDir: 12 Labours of Hercules V Kids of Hellas: {} launch: - /12 Labours of Hercules V.app: + "/12 Labours of Hercules V.app": - when: - os: mac store: steam - /12LaboursOfHercules5.exe: + "/12LaboursOfHercules5.exe": - when: - os: windows store: steam - /Hercules5: + "/Hercules5": - when: - os: linux store: steam steam: id: 491330 -'12 Labours of Hercules VI: Race for Olympus': +"12 Labours of Hercules VI: Race for Olympus": files: - /.Saves/ZOG/Hercules6CE: + "/.Saves/ZOG/Hercules6CE": tags: - save when: - os: linux - /.Saves/ZOG/Hercules6CE/Settings.sav: + "/.Saves/ZOG/Hercules6CE/Settings.sav": tags: - config when: - os: linux - /Library/Application Support/ZOG/Hercules6CE: + "/Library/Application Support/ZOG/Hercules6CE": tags: - save when: - os: mac - /Library/Application Support/ZOG/Hercules6CE/Settings.sav: + "/Library/Application Support/ZOG/Hercules6CE/Settings.sav": tags: - config when: - os: mac - /ZOG/Hercules6CE: + "/ZOG/Hercules6CE": tags: - save when: - os: windows - /ZOG/Hercules6CE/Settings.sav: + "/ZOG/Hercules6CE/Settings.sav": tags: - config when: @@ -1428,43 +1432,43 @@ $1 Ride: installDir: 12 Labours of Hercules VI Race for Olympus: {} launch: - /12 Labours of Hercules VI.app: + "/12 Labours of Hercules VI.app": - when: - os: mac store: steam - /12LaboursOfHercules6.exe: + "/12LaboursOfHercules6.exe": - when: - os: windows store: steam - /Hercules6: + "/Hercules6": - when: - os: linux store: steam steam: id: 567800 -'12 Labours of Hercules VII: Fleecing the Fleece': +"12 Labours of Hercules VII: Fleecing the Fleece": installDir: 12 Labours of Hercules VII Fleecing the Fleece: {} launch: - /12 Labours of Hercules VII.app: + "/12 Labours of Hercules VII.app": - when: - os: mac store: steam - /12LaboursOfHercules7.exe: + "/12LaboursOfHercules7.exe": - when: - os: windows store: steam steam: id: 663210 -'12 Labours of Hercules VIII: How I Met Megara': +"12 Labours of Hercules VIII: How I Met Megara": installDir: 12 Labours of Hercules VIII: {} launch: - /12 Labours of Hercules VIII.app: + "/12 Labours of Hercules VIII.app": - when: - os: mac store: steam - /12LaboursOfHercules8.exe: + "/12LaboursOfHercules8.exe": - when: - os: windows store: steam @@ -1472,13 +1476,13 @@ $1 Ride: id: 938310 12 Orbits: files: - /.config/unity3d/Roman Uhlig/12 orbits: + "/.config/unity3d/Roman Uhlig/12 orbits": tags: - config - save when: - os: mac - /Library/Preferences/unity.Roman Uhlig.12 orbits.plist: + "/Library/Preferences/unity.Roman Uhlig.12 orbits.plist": tags: - config - save @@ -1487,15 +1491,15 @@ $1 Ride: installDir: 12 orbits: {} launch: - /12 orbits.app: + "/12 orbits.app": - when: - os: mac store: steam - /12 orbits.exe: + "/12 orbits.exe": - when: - os: windows store: steam - /12 orbits.x86: + "/12 orbits.x86": - when: - os: linux store: steam @@ -1508,12 +1512,12 @@ $1 Ride: id: 529950 12 is Better Than 6: files: - /_12ibt6/savedata.ini: + "/_12ibt6/savedata.ini": tags: - save when: - os: windows - /_12ibt6/settings.ini: + "/_12ibt6/settings.ini": tags: - config when: @@ -1521,8 +1525,8 @@ $1 Ride: id: steamExtra: - 411110 - - 450830 - 450820 + - 450830 installDir: 12 is Better Than 6: {} steam: @@ -1531,7 +1535,7 @@ $1 Ride: installDir: 123 Slaughter Me Street: {} launch: - /SMS/123SMS.exe: + "/SMS/123SMS.exe": - when: - os: windows store: steam @@ -1541,21 +1545,21 @@ $1 Ride: installDir: 123 Slaughter Me Street 2: {} launch: - /SMS2/sms2.exe: + "/SMS2/sms2.exe": - when: - os: windows store: steam steam: id: 551190 -'1248': +"1248": installDir: - '1248': {} + "1248": {} launch: - /1248.app: + "/1248.app": - when: - os: mac store: steam - /1248.exe: + "/1248.exe": - when: - os: windows store: steam @@ -1565,25 +1569,25 @@ $1 Ride: installDir: 13 Cycles: {} launch: - /13 Cycles.exe: + "/13 Cycles.exe": - when: - os: windows store: steam steam: id: 862790 -'140': +"140": files: - /140.sav: + "/140.sav": tags: - save when: - os: linux - /Library/Preferences/unity.JeppeCarlsen.140.plist: + "/Library/Preferences/unity.JeppeCarlsen.140.plist": tags: - config when: - os: mac - /unity3d/JeppeCarlsen/140: + "/unity3d/JeppeCarlsen/140": tags: - config when: @@ -1594,17 +1598,17 @@ $1 Ride: gogExtra: - 1087788668 installDir: - '140': {} + "140": {} launch: - /140.app: + "/140.app": - when: - os: mac store: steam - /140.exe: + "/140.exe": - when: - os: windows store: steam - /140Linux.x86: + "/140Linux.x86": - when: - os: linux store: steam @@ -1614,22 +1618,22 @@ $1 Ride: - save steam: id: 242820 -'1406': +"1406": installDir: - '1406': {} + "1406": {} launch: - /1406.exe: + "/1406.exe": - when: - bit: 64 os: windows store: steam steam: id: 1043350 -'141': +"141": installDir: - '141': {} + "141": {} launch: - /141.exe: + "/141.exe": - when: - bit: 64 os: windows @@ -1638,7 +1642,7 @@ $1 Ride: id: 1140110 15 Days: files: - /15 Days Savegames: + "/15 Days Savegames": tags: - save when: @@ -1648,10 +1652,10 @@ $1 Ride: installDir: 15 Days: {} launch: - /Docs/Manual.pdf: + "/Docs/Manual.pdf": - when: - store: steam - /rhc.exe: + "/rhc.exe": - when: - os: windows store: steam @@ -1668,17 +1672,17 @@ $1 Ride: installDir: 15 seconds: {} launch: - /15seconds.exe: + "/15seconds.exe": - when: - os: windows store: steam steam: id: 856350 -'150,000 B.C.': +"150,000 B.C.": installDir: 150000bc: {} launch: - /150k.exe: + "/150k.exe": - when: - store: steam steam: @@ -1687,17 +1691,17 @@ $1 Ride: installDir: 16 Bit Arena: {} launch: - /run16.bat: + "/run16.bat": - when: - store: steam steam: id: 347630 -'16 Planes:Return': +"16 Planes:Return": steam: id: 986770 16bit Trader: files: - /userdata//375460/remote: + "/userdata//375460/remote": tags: - save when: @@ -1705,19 +1709,19 @@ $1 Ride: installDir: 16bittrader: {} launch: - /Trader.app: + "/Trader.app": - when: - os: mac store: steam - /Trader.exe: + "/Trader.exe": - when: - os: windows store: steam - - arguments: '--touch' + - arguments: "--touch" when: - os: windows store: steam - /Trader.x86: + "/Trader.x86": - when: - os: linux store: steam @@ -1732,31 +1736,31 @@ $1 Ride: 16BitvsReality: {} steam: id: 1305450 -'171': +"171": installDir: - '171': {} + "171": {} launch: - /BGG.exe: + "/BGG.exe": - when: - bit: 64 os: windows store: steam steam: id: 1269370 -'1775: Rebellion': +"1775: Rebellion": installDir: - '1775': {} + "1775": {} launch: - /1775.app: + "/1775.app": - when: - bit: 64 os: mac store: steam - /1775.exe: + "/1775.exe": - when: - os: windows store: steam - /1775.x86: + "/1775.x86": - when: - os: linux store: steam @@ -1767,19 +1771,19 @@ $1 Ride: 18 Floors: {} steam: id: 855320 -'18 Wheels of Steel: Across America': +"18 Wheels of Steel: Across America": files: - /18 WoS Across America/config.cfg: + "/18 WoS Across America/config.cfg": tags: - config when: - os: windows - /18 WoS Across America/hw_caps.def: + "/18 WoS Across America/hw_caps.def": tags: - config when: - os: windows - /18 WoS Across America/saves: + "/18 WoS Across America/saves": tags: - save when: @@ -1789,20 +1793,20 @@ $1 Ride: installDir: 18 Wheels of Steel Across America: {} launch: - /aa.exe: + "/aa.exe": - when: - os: windows store: steam steam: id: 514160 -'18 Wheels of Steel: American Long Haul': +"18 Wheels of Steel: American Long Haul": files: - /18 WoS American Long Haul: + "/18 WoS American Long Haul": tags: - config when: - os: windows - /18 WoS American Long Haul/save: + "/18 WoS American Long Haul/save": tags: - save when: @@ -1812,19 +1816,19 @@ $1 Ride: installDir: 18 Wheels of Steel American Long Haul: {} launch: - /alh.exe: + "/alh.exe": - when: - store: steam steam: id: 12520 -'18 Wheels of Steel: Convoy': +"18 Wheels of Steel: Convoy": files: - /18 WoS Convoy: + "/18 WoS Convoy": tags: - config when: - os: windows - /18 WoS Convoy/save: + "/18 WoS Convoy/save": tags: - save when: @@ -1834,20 +1838,20 @@ $1 Ride: installDir: 18 Wheels of Steel Convoy: {} launch: - /convoy.exe: + "/convoy.exe": - when: - os: windows store: steam steam: id: 514170 -'18 Wheels of Steel: Extreme Trucker': +"18 Wheels of Steel: Extreme Trucker": files: - /18 WoS Extreme Trucker: + "/18 WoS Extreme Trucker": tags: - config when: - os: windows - /18 WoS Extreme Trucker/profile##: + "/18 WoS Extreme Trucker/profile##": tags: - save when: @@ -1857,19 +1861,19 @@ $1 Ride: installDir: 18 Wheels of Steel Extreme Trucker: {} launch: - /bin/win_x86/extremetrucker.exe: + "/bin/win_x86/extremetrucker.exe": - when: - store: steam steam: id: 33730 -'18 Wheels of Steel: Extreme Trucker 2': +"18 Wheels of Steel: Extreme Trucker 2": files: - /18 WoS Extreme Trucker 2: + "/18 WoS Extreme Trucker 2": tags: - config when: - os: windows - /18 WoS Extreme Trucker 2/profile##: + "/18 WoS Extreme Trucker 2/profile##": tags: - save when: @@ -1879,20 +1883,20 @@ $1 Ride: installDir: 18 WoS Extreme Trucker 2: {} launch: - /bin/win_x86/extremetrucker.exe: + "/bin/win_x86/extremetrucker.exe": - when: - os: windows store: steam steam: id: 362780 -'18 Wheels of Steel: Haulin''': +"18 Wheels of Steel: Haulin'": files: - /18 WoS Haulin: + "/18 WoS Haulin": tags: - config when: - os: windows - /18 WoS Haulin/save: + "/18 WoS Haulin/save": tags: - save when: @@ -1902,25 +1906,25 @@ $1 Ride: installDir: 18 Wheels of Steel Haulin: {} launch: - /haulin.exe: + "/haulin.exe": - when: - os: windows store: steam steam: id: 514180 -'18 Wheels of Steel: Pedal to the Metal': +"18 Wheels of Steel: Pedal to the Metal": files: - /18 WoS Pedal to the Metal/config.cfg: + "/18 WoS Pedal to the Metal/config.cfg": tags: - config when: - os: windows - /18 WoS Pedal to the Metal/controls.def: + "/18 WoS Pedal to the Metal/controls.def": tags: - config when: - os: windows - /18 WoS Pedal to the Metal/saves: + "/18 WoS Pedal to the Metal/saves": tags: - save when: @@ -1930,7 +1934,7 @@ $1 Ride: installDir: 18 WoS Pedal to the Metal: {} launch: - /pttm.exe: + "/pttm.exe": - when: - store: steam steam: @@ -1939,7 +1943,7 @@ $1 Ride: installDir: 18+: {} launch: - /18+.exe: + "/18+.exe": - when: - store: steam steam: @@ -1948,40 +1952,40 @@ $1 Ride: installDir: 18+ MEMORY: {} launch: - /18+ MEMORY.exe: + "/18+ MEMORY.exe": - when: - os: windows store: steam steam: id: 1222470 -'1812: Napoleon Wars': +"1812: Napoleon Wars": installDir: 1812 Napoleon Wars: {} launch: - /1812.exe: + "/1812.exe": - when: - os: windows store: steam steam: id: 1166230 -'1812: The Invasion of Canada': +"1812: The Invasion of Canada": installDir: 1812 The Invasion of Canada: {} launch: - /1812.app: + "/1812.app": - when: - bit: 64 os: mac store: steam - /1812.exe: + "/1812.exe": - when: - os: windows store: steam steam: id: 555370 -'1849': +"1849": files: - /com.somasim.fortynine/Local Store: + "/com.somasim.fortynine/Local Store": tags: - config - save @@ -1990,13 +1994,13 @@ $1 Ride: gog: id: 1207664483 installDir: - '1849': {} + "1849": {} launch: - /1849.app: + "/1849.app": - when: - os: mac store: steam - /1849.exe: + "/1849.exe": - when: - os: windows store: steam @@ -2006,17 +2010,17 @@ $1 Ride: installDir: 1912 Titanic Mystery: {} launch: - /Titanic.exe: + "/Titanic.exe": - when: - os: windows store: steam steam: id: 1114270 -'1914: Prelude to Chaos': +"1914: Prelude to Chaos": installDir: 1914 Prelude to Chaos: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: @@ -2025,81 +2029,81 @@ $1 Ride: installDir: 1917 - The Alien Invasion DX: {} launch: - /1917 - The Alien Invasion DX.exe: + "/1917 - The Alien Invasion DX.exe": - when: - os: windows store: steam steam: id: 470060 -'1931: Scheherazade at the Library of Pergamum': +"1931: Scheherazade at the Library of Pergamum": installDir: Scheherazade: {} launch: - /Scheherazade.exe: + "/Scheherazade.exe": - when: - os: windows store: steam steam: id: 334850 -'1942: The Henan Famine': +"1942: The Henan Famine": installDir: - '1942': {} + "1942": {} launch: - /1942.exe: + "/1942.exe": - when: - os: windows store: steam steam: id: 1126280 -'1942: The Pacific Air War': +"1942: The Pacific Air War": gog: id: 1460222301 installDir: 1942 - The Pacific Air War: {} launch: - /1942 - TPAW.app: + "/1942 - TPAW.app": - when: - os: mac store: steam - /dosbox_linux/daum/launch_1942_TPAW_game_daum.sh: + "/dosbox_linux/daum/launch_1942_TPAW_game_daum.sh": - when: - os: linux store: steam - workingDir: /dosbox_linux/daum - /dosbox_linux/launch_1942_TPAW_config.sh: + workingDir: "/dosbox_linux/daum" + "/dosbox_linux/launch_1942_TPAW_config.sh": - when: - os: linux store: steam - workingDir: /dosbox_linux - /dosbox_linux/launch_1942_TPAW_game.sh: + workingDir: "/dosbox_linux" + "/dosbox_linux/launch_1942_TPAW_game.sh": - when: - os: linux store: steam - workingDir: /dosbox_linux - /dosbox_windows/daum/dosbox.exe: - - arguments: '-conf dosbox_1942_TPAW.conf -conf dosbox_1942_TPAW_launch_windows.conf -noconsole' + workingDir: "/dosbox_linux" + "/dosbox_windows/daum/dosbox.exe": + - arguments: "-conf dosbox_1942_TPAW.conf -conf dosbox_1942_TPAW_launch_windows.conf -noconsole" when: - os: windows store: steam - workingDir: /dosbox_windows/daum - /dosbox_windows/dosbox.exe: - - arguments: '-conf dosbox_1942_TPAW.conf -conf dosbox_1942_TPAW_launch_windows.conf -noconsole' + workingDir: "/dosbox_windows/daum" + "/dosbox_windows/dosbox.exe": + - arguments: "-conf dosbox_1942_TPAW.conf -conf dosbox_1942_TPAW_launch_windows.conf -noconsole" when: - os: windows store: steam - workingDir: /dosbox_windows - - arguments: '-conf dosbox_1942_TPAW.conf -conf dosbox_1942_TPAW_config_windows.conf -noconsole' + workingDir: "/dosbox_windows" + - arguments: "-conf dosbox_1942_TPAW.conf -conf dosbox_1942_TPAW_config_windows.conf -noconsole" when: - os: windows store: steam - workingDir: /dosbox_windows + workingDir: "/dosbox_windows" steam: id: 347230 1943 Berlin Blitz: installDir: BerlinBlitz_0.07g_Steam: {} launch: - /BerlinBlitz_0.07g_Steam/BerlinBlitz.exe: + "/BerlinBlitz_0.07g_Steam/BerlinBlitz.exe": - when: - bit: 64 os: windows @@ -2110,7 +2114,7 @@ $1 Ride: installDir: 1943 Deadly Desert: {} launch: - /DeadlyDesert.exe: + "/DeadlyDesert.exe": - when: - os: windows store: steam @@ -2120,27 +2124,27 @@ $1 Ride: installDir: 1943 Megami Strike: {} launch: - /MS.exe: + "/MS.exe": - when: - os: windows store: steam steam: id: 440810 -'1944: Battle of the Bulge': +"1944: Battle of the Bulge": files: - /Save: + "/Save": tags: - save when: - os: windows 1953 - KGB Unleashed: files: - /Bin: + "/Bin": tags: - config when: - os: windows - /Save: + "/Save": tags: - save when: @@ -2148,17 +2152,17 @@ $1 Ride: installDir: 1953 - KGB Unleashed: {} launch: - /Bin/Phobos.exe: + "/Bin/Phobos.exe": - when: - store: steam - workingDir: /Bin + workingDir: "/Bin" steam: id: 248490 -'1953: NATO vs Warsaw Pact': +"1953: NATO vs Warsaw Pact": installDir: 1953 NATO vs Warsaw Pact: {} launch: - /1953 Setup.exe: + "/1953 Setup.exe": - when: - os: windows store: steam @@ -2166,12 +2170,12 @@ $1 Ride: id: 325470 1954 Alcatraz: files: - /AppData/LocalLow/Daedalic Entertainment/1954 Alcatraz: + "/AppData/LocalLow/Daedalic Entertainment/1954 Alcatraz": tags: - save when: - os: windows - /Library/Preferences/de.daedalic.alcatraz1.plist: + "/Library/Preferences/de.daedalic.alcatraz1.plist": tags: - config when: @@ -2181,11 +2185,11 @@ $1 Ride: installDir: 1954 Alcatraz: {} launch: - /Alcatraz.app: + "/Alcatraz.app": - when: - os: mac store: steam - /Alcatraz.exe: + "/Alcatraz.exe": - when: - os: windows store: steam @@ -2201,17 +2205,17 @@ $1 Ride: installDir: 1971 Porject Helios: {} launch: - /1971 Project Helios.exe: + "/1971 Project Helios.exe": - when: - os: windows store: steam steam: id: 1186630 -'1971: Indian Naval Front': +"1971: Indian Naval Front": installDir: 1971 Indian Naval Front: {} launch: - /INF_PC.exe: + "/INF_PC.exe": - when: - os: windows store: steam @@ -2221,20 +2225,20 @@ $1 Ride: installDir: 1979InvasionEarth: {} launch: - /_1979_HD14.exe: + "/_1979_HD14.exe": - when: - os: windows store: steam steam: id: 575880 -'1979 Revolution: Black Friday': +"1979 Revolution: Black Friday": files: - /PlayerPrefs.txt: + "/PlayerPrefs.txt": tags: - config when: - os: windows - /AppData/LocalLow/N-Fusion Interactive/1979 Revolution/*.xml: + "/AppData/LocalLow/N-Fusion Interactive/1979 Revolution/*.xml": tags: - save when: @@ -2244,21 +2248,21 @@ $1 Ride: installDir: 1979 Revolution: {} launch: - /1979Revolution.app: + "/1979Revolution.app": - when: - os: mac store: steam - /1979Revolution.exe: + "/1979Revolution.exe": - when: - os: windows store: steam steam: id: 388320 -'1982': +"1982": installDir: - '1982': {} + "1982": {} launch: - /1982.exe: + "/1982.exe": - when: - os: windows store: steam @@ -2271,7 +2275,7 @@ $1 Ride: id: 1151580 198X: files: - /AppData/LocalLow/HiBit Studios/198X/playerData.dat: + "/AppData/LocalLow/HiBit Studios/198X/playerData.dat": tags: - save when: @@ -2281,7 +2285,7 @@ $1 Ride: installDir: 198X: {} launch: - /198X.exe: + "/198X.exe": - when: - os: windows store: steam @@ -2293,7 +2297,7 @@ $1 Ride: id: 1086010 1993 Space Machine: files: - /AppData/LocalLow/Limit Break/1993 Shenandoah/save_slot_*.dat: + "/AppData/LocalLow/Limit Break/1993 Shenandoah/save_slot_*.dat": tags: - save when: @@ -2301,22 +2305,22 @@ $1 Ride: installDir: 1993 Space Machine: {} launch: - /1993 Shenandoah.exe: + "/1993 Shenandoah.exe": - when: - os: windows store: steam - /1993Spacemachine.x86_64: - - arguments: '-force-opengl' + "/1993Spacemachine.x86_64": + - arguments: "-force-opengl" when: - bit: 64 os: linux store: steam - /SpaceMachine_Mac_FinalBuild.app/Contents/MacOS/SpaceMachine_Mac_FinalBuild: + "/SpaceMachine_Mac_FinalBuild.app/Contents/MacOS/SpaceMachine_Mac_FinalBuild": - when: - os: mac store: steam - /spacemachine.x86: - - arguments: '-force-opengl' + "/spacemachine.x86": + - arguments: "-force-opengl" when: - bit: 32 os: linux @@ -2331,7 +2335,7 @@ $1 Ride: installDir: 199X: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -2341,7 +2345,7 @@ $1 Ride: installDir: 1BIT CASTLE: {} launch: - /1BIT CASTLE.exe: + "/1BIT CASTLE.exe": - when: - os: windows store: steam @@ -2354,7 +2358,7 @@ $1 Ride: installDir: 1Heart: {} launch: - /1Heart.exe: + "/1Heart.exe": - when: - os: windows store: steam @@ -2362,7 +2366,7 @@ $1 Ride: id: 270190 1Quest: files: - /fr.ratzngodz.1Quest: + "/fr.ratzngodz.1Quest": tags: - save when: @@ -2370,19 +2374,19 @@ $1 Ride: installDir: 1Quest: {} launch: - /1Quest.exe: + "/1Quest.exe": - when: - store: steam steam: id: 332710 1bitHeart: files: - /Save/SaveData*.sav: + "/Save/SaveData*.sav": tags: - save when: - os: windows - /Save/System.sav: + "/Save/System.sav": tags: - save when: @@ -2390,20 +2394,20 @@ $1 Ride: installDir: 1bitHeart: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam steam: id: 618720 -'1vs1: Battle Royale for the throne': +"1vs1: Battle Royale for the throne": files: - /package.json: + "/package.json": tags: - config when: - os: windows - /www/save: + "/www/save": tags: - save when: @@ -2411,7 +2415,7 @@ $1 Ride: installDir: 1vs1 Battle Royale for the throne: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: @@ -2420,11 +2424,11 @@ $1 Ride: installDir: 2 Ninjas 1 Cup: {} launch: - /2N1C.exe: + "/2N1C.exe": - when: - os: windows store: steam - /run.sh: + "/run.sh": - when: - os: linux store: steam @@ -2434,7 +2438,7 @@ $1 Ride: installDir: 2 Planets Fire and Ice: {} launch: - /2planets.exe: + "/2planets.exe": - when: - store: steam steam: @@ -2443,15 +2447,15 @@ $1 Ride: installDir: 2-in-1 Fluid Intelligence: {} launch: - /IQScale21: + "/IQScale21": - when: - os: linux store: steam - /IQScale21.app/Contents/MacOS/nwjs: + "/IQScale21.app/Contents/MacOS/nwjs": - when: - os: mac store: steam - /IQScale21.exe: + "/IQScale21.exe": - when: - os: windows store: steam @@ -2459,7 +2463,7 @@ $1 Ride: id: 757950 20 Minutes Till Dawn: files: - /AppData/LocalLow/Flanne/MinutesTillDawn/*.json: + "/AppData/LocalLow/Flanne/MinutesTillDawn/*.json": tags: - save when: @@ -2467,11 +2471,11 @@ $1 Ride: installDir: 20MinuteTillDawn: {} launch: - /20MinutesTillDawn.app: + "/20MinutesTillDawn.app": - when: - os: mac store: steam - /MinutesTillDawn.exe: + "/MinutesTillDawn.exe": - when: - bit: 64 os: windows @@ -2482,7 +2486,7 @@ $1 Ride: installDir: 20.000 Leagues Under The Sea - Captain Nemo: {} launch: - /20000Leagues.exe: + "/20000Leagues.exe": - when: - os: windows store: steam @@ -2490,7 +2494,7 @@ $1 Ride: id: 821720 200% Mixed Juice!: files: - /Fruitbat Factory/200% Mixed Juice!: + "/Fruitbat Factory/200% Mixed Juice!": tags: - config - save @@ -2499,19 +2503,19 @@ $1 Ride: installDir: 200 Mixed Juice!: {} launch: - /200MJ.exe: + "/200MJ.exe": - when: - store: steam steam: id: 335190 -'2000:1: A Space Felony': +"2000:1: A Space Felony": files: - /a20001ASpaceFelony/Saved/Config: + "/a20001ASpaceFelony/Saved/Config": tags: - config when: - os: windows - /a20001ASpaceFelony/Saved/SaveGames: + "/a20001ASpaceFelony/Saved/SaveGames": tags: - save when: @@ -2520,7 +2524,7 @@ $1 Ride: installDir: 2104.Aftermath: {} launch: - /Aftemath.exe: + "/Aftemath.exe": - when: - os: windows store: steam @@ -2531,20 +2535,20 @@ $1 Ride: 2017 VR: {} steam: id: 575600 -'2048': +"2048": installDir: - '2048': {} + "2048": {} launch: - /2048: + "/2048": - when: - bit: 64 os: linux store: steam - /2048.app/Contents/MacOS/nwjs: + "/2048.app/Contents/MacOS/nwjs": - when: - os: mac store: steam - /2048.exe: + "/2048.exe": - when: - os: windows store: steam @@ -2553,29 +2557,29 @@ $1 Ride: 2048 (2019): steam: id: 1026330 -'2064: Read Only Memories': +"2064: Read Only Memories": files: - /.config/unity3d/MidBoss/Read Only Memories/Saves: + "/.config/unity3d/MidBoss/Read Only Memories/Saves": tags: - save when: - os: linux - /AppData/LocalLow/MidBoss/2064_ Read Only Memories: + "/AppData/LocalLow/MidBoss/2064_ Read Only Memories": tags: - save when: - os: windows - /AppData/LocalLow/MidBoss/2064_ Read Only Memories/Core_Memory.cfg: + "/AppData/LocalLow/MidBoss/2064_ Read Only Memories/Core_Memory.cfg": tags: - config when: - os: windows - '/Library/Application Support/unity.MidBoss.2064: Read Only Memories': + "/Library/Application Support/unity.MidBoss.2064: Read Only Memories": tags: - save when: - os: mac - '/Library/Application Support/unity.MidBoss.2064: Read Only Memories/Core_Memory.cfg': + "/Library/Application Support/unity.MidBoss.2064: Read Only Memories/Core_Memory.cfg": tags: - config when: @@ -2591,35 +2595,35 @@ $1 Ride: installDir: Read Only Memories: {} launch: - /ROM.app/Contents/MacOS/ROM: + "/ROM.app/Contents/MacOS/ROM": - when: - os: mac store: steam - /ROM.exe: + "/ROM.exe": - when: - os: windows store: steam - /ROM.x86: + "/ROM.x86": - when: - bit: 32 os: linux store: steam - /ROM.x86_64: + "/ROM.x86_64": - when: - bit: 64 os: linux store: steam registry: - 'HKEY_CURRENT_USER/Software/MidBoss/2064: Read Only Memories': + "HKEY_CURRENT_USER/Software/MidBoss/2064: Read Only Memories": tags: - config steam: id: 330820 -'2084': +"2084": installDir: - '2084': {} + "2084": {} launch: - /VShooter.exe: + "/VShooter.exe": - when: - bit: 64 os: windows @@ -2628,12 +2632,12 @@ $1 Ride: id: 987850 20XX: files: - /20XX: + "/20XX": tags: - save when: - os: windows - /20XX/20XXv096.opt: + "/20XX/20XXv096.opt": tags: - config when: @@ -2641,7 +2645,7 @@ $1 Ride: installDir: 20XX: {} launch: - /20XX.exe: + "/20XX.exe": - when: - os: windows store: steam @@ -2651,25 +2655,25 @@ $1 Ride: installDir: 20something: {} launch: - /20something: + "/20something": - when: - os: linux store: steam - /20something.app/Contents/MacOS/20something: + "/20something.app/Contents/MacOS/20something": - when: - os: mac store: steam - /20something.exe: + "/20something.exe": - when: - os: windows store: steam steam: id: 582840 -'21': +"21": installDir: - '21': {} + "21": {} launch: - /21.exe: + "/21.exe": - when: - store: steam steam: @@ -2678,11 +2682,11 @@ $1 Ride: installDir: 21 Days: {} launch: - /21Days.app: + "/21Days.app": - when: - os: mac store: steam - /21Days.exe: + "/21Days.exe": - when: - os: windows store: steam @@ -2692,7 +2696,7 @@ $1 Ride: installDir: 21 Steps to Soul: {} launch: - /21.exe: + "/21.exe": - when: - os: windows store: steam @@ -2702,27 +2706,27 @@ $1 Ride: installDir: 21+: {} launch: - /21+.exe: + "/21+.exe": - when: - store: steam steam: id: 904990 -'2100': +"2100": installDir: - '2100': {} + "2100": {} launch: - /2100.exe: + "/2100.exe": - when: - bit: 64 os: windows store: steam steam: id: 1018090 -'222': +"222": installDir: - '222': {} + "222": {} launch: - /222.exe: + "/222.exe": - when: - os: windows store: steam @@ -2732,20 +2736,20 @@ $1 Ride: installDir: 222 Hearts: {} launch: - /222Hearts.app/Contents/MacOS/222Hearts: + "/222Hearts.app/Contents/MacOS/222Hearts": - when: - os: mac store: steam - /222Hearts.exe: + "/222Hearts.exe": - when: - os: windows store: steam - /222Hearts.x86: + "/222Hearts.x86": - when: - bit: 32 os: linux store: steam - /222Hearts.x86_64: + "/222Hearts.x86_64": - when: - bit: 64 os: linux @@ -2756,11 +2760,11 @@ $1 Ride: installDir: 2236ad: {} launch: - /2236 A.D. -Universal Edition-.app: + "/2236 A.D. -Universal Edition-.app": - when: - os: mac store: steam - /2236 A.D. -Universal Edition-/2236 A.D. -Universal Edition-.exe: + "/2236 A.D. -Universal Edition-/2236 A.D. -Universal Edition-.exe": - when: - os: windows store: steam @@ -2774,11 +2778,11 @@ $1 Ride: 24 Hours: steam: id: 485580 -24 Hours 'til Rescue: +"24 Hours 'til Rescue": installDir: - 24 Hours 'til Rescue: {} + "24 Hours 'til Rescue": {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: @@ -2787,7 +2791,7 @@ $1 Ride: installDir: IGS: {} launch: - /25CadreofDeath.exe: + "/25CadreofDeath.exe": - when: - bit: 64 os: windows @@ -2796,12 +2800,12 @@ $1 Ride: id: 904860 25 to Life: files: - /25 to life/SaveGames: + "/25 to life/SaveGames": tags: - save when: - os: windows - /25 to life/settings.ini: + "/25 to life/settings.ini": tags: - config when: @@ -2813,7 +2817,7 @@ $1 Ride: installDir: 2D Mahjong Temple: {} launch: - /dat/game.exe: + "/dat/game.exe": - when: - os: windows store: steam @@ -2828,7 +2832,7 @@ $1 Ride: installDir: 2D Paintball: {} launch: - /2dpball.exe: + "/2dpball.exe": - when: - os: windows store: steam @@ -2841,7 +2845,7 @@ $1 Ride: installDir: 2DGameManias Taken: {} launch: - /taken.exe: + "/taken.exe": - when: - os: windows store: steam @@ -2849,7 +2853,7 @@ $1 Ride: id: 822550 2Dark: files: - /GloomyWood/2Dark/.monkeystate: + "/GloomyWood/2Dark/.monkeystate": tags: - config - save @@ -2858,7 +2862,7 @@ $1 Ride: installDir: 2Dark: {} launch: - /2Dark.exe: + "/2Dark.exe": - when: - os: windows store: steam @@ -2873,7 +2877,7 @@ $1 Ride: installDir: 2URVIVE: {} launch: - /2URVIVE.exe: + "/2URVIVE.exe": - when: - os: windows store: steam @@ -2883,11 +2887,11 @@ $1 Ride: installDir: 2V Hoverbike: {} launch: - /2VHoverbike.app: + "/2VHoverbike.app": - when: - os: mac store: steam - /2v Hoverbike.exe: + "/2v Hoverbike.exe": - when: - os: windows store: steam @@ -2897,10 +2901,10 @@ $1 Ride: installDir: 2XL Supercross: {} launch: - /2XL_Supercross.exe: + "/2XL_Supercross.exe": - when: - store: steam - /config.exe: + "/config.exe": - when: - store: steam steam: @@ -2909,17 +2913,17 @@ $1 Ride: installDir: 2nd Circle - Powerful Places: {} launch: - /2ndCircle/2ndCircle.exe: + "/2ndCircle/2ndCircle.exe": - when: - os: windows store: steam steam: id: 936510 -'3 Blind Mice: A Remediation Game for Improper Children': +"3 Blind Mice: A Remediation Game for Improper Children": installDir: 3 BLIND MICE A REMEDIATION GAME FOR IMPROPER CHILDREN: {} launch: - /3BlindMice.exe: + "/3BlindMice.exe": - when: - os: windows store: steam @@ -2927,7 +2931,7 @@ $1 Ride: id: 1182040 3 Coins at School: files: - /Options.3cs: + "/Options.3cs": tags: - config when: @@ -2935,7 +2939,7 @@ $1 Ride: installDir: 3 Coins At School: {} launch: - /3 Coins at School.exe: + "/3 Coins at School.exe": - when: - os: windows store: steam @@ -2945,17 +2949,17 @@ $1 Ride: installDir: 3 Days in the Abyss: {} launch: - /III Days in the Abyss.exe: + "/III Days in the Abyss.exe": - when: - os: windows store: steam steam: id: 970180 -'3 Days: Zoo Mystery': +"3 Days: Zoo Mystery": installDir: 3 days Zoo Mystery: {} launch: - /3DayszooMystery_en.exe: + "/3DayszooMystery_en.exe": - when: - os: windows store: steam @@ -2965,7 +2969,7 @@ $1 Ride: installDir: 3GEEKS: {} launch: - /3GEEKS-Adventure.exe: + "/3GEEKS-Adventure.exe": - when: - os: windows store: steam @@ -2978,7 +2982,7 @@ $1 Ride: installDir: 3 Stars of Destiny: {} launch: - /3Stars.exe: + "/3Stars.exe": - when: - os: windows store: steam @@ -2988,7 +2992,7 @@ $1 Ride: installDir: 3 on 3 Super Robot Hockey: {} launch: - /3 on 3 Super Robot Hockey.exe: + "/3 on 3 Super Robot Hockey.exe": - when: - os: windows store: steam @@ -2996,21 +3000,21 @@ $1 Ride: id: 988080 3 out of 10: files: - /ThreeTen/Saved/Config/WindowsNoEditor: + "/ThreeTen/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /ThreeTen/Saved/SaveGames: + "/ThreeTen/Saved/SaveGames": tags: - save when: - os: windows -'3, 2, 1, Survive!': +"3, 2, 1, Survive!": installDir: - '3, 2, 1, SURVIVE !': {} + "3, 2, 1, SURVIVE !": {} launch: - /321Survive.exe: + "/321Survive.exe": - when: - os: windows store: steam @@ -3018,12 +3022,12 @@ $1 Ride: id: 864190 3-D Ultra Minigolf: files: - /SCORES.BST: + "/SCORES.BST": tags: - save when: - os: windows - /minigolf.ini: + "/minigolf.ini": tags: - config when: @@ -3032,15 +3036,15 @@ $1 Ride: installDir: 3-in-1 Bundle Brain Trainings: {} launch: - /IQScale31: + "/IQScale31": - when: - os: linux store: steam - /IQScale31.app/Contents/MacOS/nwjs: + "/IQScale31.app/Contents/MacOS/nwjs": - when: - os: mac store: steam - /IQScale31.exe: + "/IQScale31.exe": - when: - os: windows store: steam @@ -3050,7 +3054,7 @@ $1 Ride: installDir: 321Grenades: {} launch: - /321Grenades.exe: + "/321Grenades.exe": - when: - os: windows store: steam @@ -3068,7 +3072,7 @@ $1 Ride: installDir: 30MTE: {} launch: - /ThirtyMinutes.exe: + "/ThirtyMinutes.exe": - when: - bit: 64 os: windows @@ -3079,11 +3083,11 @@ $1 Ride: installDir: 30 seconds to jail: {} launch: - /30STJ.app: + "/30STJ.app": - when: - os: mac store: steam - /30STJ.exe: + "/30STJ.exe": - when: - os: windows store: steam @@ -3096,11 +3100,11 @@ $1 Ride: installDir: 300 Dwarves: {} launch: - /300 Dwarves.exe: + "/300 Dwarves.exe": - when: - os: windows store: steam - /300Dwarves.app: + "/300Dwarves.app": - when: - os: mac store: steam @@ -3110,24 +3114,24 @@ $1 Ride: installDir: 3000th Duel: {} launch: - /3000th Duel.app: + "/3000th Duel.app": - when: - os: mac store: steam - /3000th Duel.exe: + "/3000th Duel.exe": - when: - os: windows store: steam steam: id: 1098080 -'303 Squadron: Battle of Britain': +"303 Squadron: Battle of Britain": files: - /Squadron303/Saved/Config/WindowsNoEditor: + "/Squadron303/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /Squadron303/Saved/SaveGames: + "/Squadron303/Saved/SaveGames": tags: - save when: @@ -3135,7 +3139,7 @@ $1 Ride: installDir: 303 Squadron: {} launch: - /Squadron303.exe: + "/Squadron303.exe": - when: - os: windows store: steam @@ -3143,12 +3147,12 @@ $1 Ride: id: 675170 3030 Deathwar Redux: files: - /data/settings.txt: + "/data/settings.txt": tags: - config when: - os: windows - /save/*.3030: + "/save/*.3030": tags: - save when: @@ -3156,15 +3160,15 @@ $1 Ride: installDir: 3030 Deathwar Redux: {} launch: - /3030 Deathwar.exe: + "/3030 Deathwar.exe": - when: - os: windows store: steam steam: id: 464360 -'3079': +"3079": files: - /3079Saves: + "/3079Saves": tags: - config - save @@ -3173,21 +3177,23 @@ $1 Ride: - os: mac - os: linux installDir: - '3079': {} + "3079": {} launch: - /3079.bat: + "/3079.bat": - when: - os: windows store: steam - /3079.sh: + "/3079.sh": - when: + - os: mac + store: steam - os: linux store: steam steam: id: 259620 -'3089': +"3089": files: - /3089: + "/3089": tags: - config - save @@ -3196,21 +3202,23 @@ $1 Ride: - os: mac - os: linux installDir: - '3089': {} + "3089": {} launch: - /3089.bat: + "/3089.bat": - when: - os: windows store: steam - /3089.sh: + "/3089.sh": - when: + - os: mac + store: steam - os: linux store: steam steam: id: 263360 30XX: files: - /30XX: + "/30XX": tags: - save when: @@ -3218,13 +3226,13 @@ $1 Ride: installDir: 30XX: {} launch: - /30XX.exe: + "/30XX.exe": - when: - os: windows store: steam steam: id: 1029210 -'30km survival zone: Chernobyl': +"30km survival zone: Chernobyl": steam: id: 1158590 30th Century Post Office: @@ -3236,7 +3244,7 @@ $1 Ride: installDir: 33 Rounds: {} launch: - /33 Rounds.exe: + "/33 Rounds.exe": - when: - store: steam steam: @@ -3245,11 +3253,11 @@ $1 Ride: installDir: 3571 The Game: {} launch: - /3571 The Game.app: + "/3571 The Game.app": - when: - os: mac store: steam - /3571 The Game.exe: + "/3571 The Game.exe": - when: - os: windows store: steam @@ -3262,7 +3270,7 @@ $1 Ride: installDir: 35MM: {} launch: - /35MM.exe: + "/35MM.exe": - when: - os: windows store: steam @@ -3277,15 +3285,15 @@ $1 Ride: installDir: 36 Fragments of Midnight: {} launch: - /36FoM.app: + "/36FoM.app": - when: - os: mac store: steam - /36FoM.exe: + "/36FoM.exe": - when: - os: windows store: steam - /36FoM.x86: + "/36FoM.x86": - when: - os: linux store: steam @@ -3295,7 +3303,7 @@ $1 Ride: installDir: 36 apples: {} launch: - /36 apples.exe: + "/36 apples.exe": - when: - os: windows store: steam @@ -3305,7 +3313,7 @@ $1 Ride: installDir: 360 No Scope Arena: {} launch: - /360NoScopeArena.exe: + "/360NoScopeArena.exe": - when: - os: windows store: steam @@ -3315,7 +3323,7 @@ $1 Ride: installDir: 360 No Scope!: {} launch: - /360NoScope.exe: + "/360NoScope.exe": - when: - bit: 64 os: windows @@ -3326,20 +3334,20 @@ $1 Ride: installDir: 365 Days: {} launch: - /365 Days.exe: + "/365 Days.exe": - when: - os: windows store: steam - /Mac.app: + "/Mac.app": - when: - os: mac store: steam - /game.x86: + "/game.x86": - when: - bit: 32 os: linux store: steam - /game.x86_64: + "/game.x86_64": - when: - bit: 64 os: linux @@ -3350,20 +3358,20 @@ $1 Ride: installDir: 39 Days to Mars: {} launch: - /39 Days to Mars.app: + "/39 Days to Mars.app": - when: - os: mac store: steam - /39 Days to Mars.exe: + "/39 Days to Mars.exe": - when: - os: windows store: steam - /39 Days to Mars.x86: + "/39 Days to Mars.x86": - when: - bit: 32 os: linux store: steam - /39 Days to Mars.x86_64: + "/39 Days to Mars.x86_64": - when: - bit: 64 os: linux @@ -3374,26 +3382,26 @@ $1 Ride: installDir: 3Buttons: {} launch: - /3Buttons-Mac_OS_X.app: + "/3Buttons-Mac_OS_X.app": - when: - os: mac store: steam - /3Buttons-Windows_x86.exe: + "/3Buttons-Windows_x86.exe": - when: - bit: 32 os: windows store: steam - /3Buttons-Windows_x86_64.exe: + "/3Buttons-Windows_x86_64.exe": - when: - bit: 64 os: windows store: steam - /3Buttons.x86: + "/3Buttons.x86": - when: - bit: 32 os: linux store: steam - /3Buttons.x86_64: + "/3Buttons.x86_64": - when: - bit: 64 os: linux @@ -3409,20 +3417,20 @@ $1 Ride: installDir: Arcade Fishing: {} launch: - /Fishing.app: + "/Fishing.app": - when: - os: mac store: steam - /Fishing.exe: + "/Fishing.exe": - when: - os: windows store: steam - /Fishing.x86: + "/Fishing.x86": - when: - bit: 32 os: linux store: steam - /Fishing.x86_64: + "/Fishing.x86_64": - when: - bit: 64 os: linux @@ -3433,7 +3441,7 @@ $1 Ride: installDir: 3d Bridges: {} launch: - /3dBridges.exe: + "/3dBridges.exe": - when: - store: steam steam: @@ -3442,21 +3450,21 @@ $1 Ride: installDir: 3D Super Chess: {} launch: - /3DSuperChess.app: + "/3DSuperChess.app": - when: - os: mac store: steam - /3DSuperChess.exe: + "/3DSuperChess.exe": - when: - bit: 32 os: windows store: steam - /3DSuperChess.x86: + "/3DSuperChess.x86": - when: - bit: 32 os: linux store: steam - /3DSuperChess.x86_64: + "/3DSuperChess.x86_64": - when: - bit: 64 os: linux @@ -3465,7 +3473,7 @@ $1 Ride: id: 535700 3D Cube Hopper: files: - /3DCube.ini: + "/3DCube.ini": tags: - config when: @@ -3474,7 +3482,7 @@ $1 Ride: installDir: 3DCustomLadyMaker: {} launch: - /3DCustomLadyMaker.exe: + "/3DCustomLadyMaker.exe": - when: - os: windows store: steam @@ -3484,7 +3492,7 @@ $1 Ride: installDir: 3d Engineers: {} launch: - /Start.exe: + "/Start.exe": - when: - store: steam steam: @@ -3493,7 +3501,7 @@ $1 Ride: installDir: 3D Gravity Rocket: {} launch: - /3D Gravity Rocket.exe: + "/3D Gravity Rocket.exe": - when: - os: windows store: steam @@ -3514,12 +3522,12 @@ $1 Ride: id: 988370 3D Instructor: files: - /data/config: + "/data/config": tags: - config when: - os: windows - /Multisoft/PDD/profiles: + "/Multisoft/PDD/profiles": tags: - save when: @@ -3528,11 +3536,11 @@ $1 Ride: installDir: 3D Mini Golf: {} launch: - /minigolf2015.app: + "/minigolf2015.app": - when: - os: mac store: steam - /minigolf2015.exe: + "/minigolf2015.exe": - when: - os: windows store: steam @@ -3542,15 +3550,15 @@ $1 Ride: installDir: 3D Paraglider: {} launch: - /3dparaglider.app: + "/3dparaglider.app": - when: - os: mac store: steam - /3dparaglider.exe: + "/3dparaglider.exe": - when: - os: windows store: steam - /3dparaglider.x86: + "/3dparaglider.x86": - when: - bit: 32 os: linux @@ -3561,7 +3569,7 @@ $1 Ride: installDir: 3D Pinball Hentai: {} launch: - /Pinball.exe: + "/Pinball.exe": - when: - bit: 64 os: windows @@ -3577,7 +3585,7 @@ $1 Ride: installDir: 3D Pool: {} launch: - /3D-Pool.exe: + "/3D-Pool.exe": - when: - store: steam steam: @@ -3589,15 +3597,15 @@ $1 Ride: installDir: 3D Tower: {} launch: - /3D Tower.app: + "/3D Tower.app": - when: - os: mac store: steam - /3D Tower.exe: + "/3D Tower.exe": - when: - os: windows store: steam - /3D Tower.x86: + "/3D Tower.x86": - when: - os: linux store: steam @@ -3607,7 +3615,7 @@ $1 Ride: installDir: 3D Ultra Mini Golf Adventures: {} launch: - /MGA.exe: + "/MGA.exe": - when: - store: steam steam: @@ -3616,7 +3624,7 @@ $1 Ride: installDir: 3D Visual Novel Maker: {} launch: - /3D Visual Novel Maker.exe: + "/3D Visual Novel Maker.exe": - when: - os: windows store: steam @@ -3626,7 +3634,7 @@ $1 Ride: installDir: 3DRPG: {} launch: - /3DRPG.exe: + "/3DRPG.exe": - when: - os: windows store: steam @@ -3641,15 +3649,15 @@ $1 Ride: installDir: 3SwitcheD: {} launch: - /3SwitcheD.app: + "/3SwitcheD.app": - when: - os: mac store: steam - /3SwitcheD.exe: + "/3SwitcheD.exe": - when: - os: windows store: steam - /RunGame: + "/RunGame": - when: - bit: 64 os: linux @@ -3658,7 +3666,7 @@ $1 Ride: id: 206610 3dSen PC: files: - /AppData/LocalLow/Geod Studio/3dSen: + "/AppData/LocalLow/Geod Studio/3dSen": tags: - config when: @@ -3666,20 +3674,20 @@ $1 Ride: installDir: 3dSen: {} launch: - /3dSen.app: + "/3dSen.app": - when: - os: mac store: steam - /3dSen.exe: + "/3dSen.exe": - when: - os: windows store: steam - /3dSen.x86: + "/3dSen.x86": - when: - bit: 32 os: linux store: steam - /3dSen.x86_64: + "/3dSen.x86_64": - when: - bit: 64 os: linux @@ -3695,17 +3703,17 @@ $1 Ride: installDir: 3on3 FreeStyle: {} launch: - /LauncherSteam.exe: + "/LauncherSteam.exe": - when: - os: windows store: steam steam: id: 624910 -'3on3 FreeStyle: Rebound': +"3on3 FreeStyle: Rebound": installDir: 3on3 FreeStyle Rebound: {} launch: - /DoubleClutch.exe: + "/DoubleClutch.exe": - when: - bit: 64 os: windows @@ -3716,7 +3724,7 @@ $1 Ride: installDir: 3rd Invasion - Zombies vs. Steel: {} launch: - /3rdInvasion/3rd Invasion - Zombies vs Steel.exe: + "/3rdInvasion/3rd Invasion - Zombies vs Steel.exe": - when: - os: windows store: steam @@ -3726,11 +3734,11 @@ $1 Ride: installDir: 3rd eye: {} launch: - /3rdeye.app: + "/3rdeye.app": - when: - os: mac store: steam - /3rdeye.exe: + "/3rdeye.exe": - when: - bit: 64 os: windows @@ -3741,7 +3749,7 @@ $1 Ride: installDir: miniShogi: {} launch: - /mini-Shogi.exe: + "/mini-Shogi.exe": - when: - os: windows store: steam @@ -3751,18 +3759,18 @@ $1 Ride: installDir: 3x64: {} launch: - /3x64.exe: + "/3x64.exe": - when: - bit: 64 os: windows store: steam - /3x64.x86_64: + "/3x64.x86_64": - arguments: +x when: - bit: 64 os: linux store: steam - /build.app/Contents/MacOS/3x64: + "/build.app/Contents/MacOS/3x64": - when: - os: mac store: steam @@ -3772,43 +3780,43 @@ $1 Ride: installDir: 4 Alice Magical Autistic Girls: {} launch: - /MagicalAutisticGirls/MagicalAutisticGirls-32.exe: + "/MagicalAutisticGirls/MagicalAutisticGirls-32.exe": - when: - bit: 32 os: windows store: steam - /MagicalAutisticGirls/MagicalAutisticGirls.app: + "/MagicalAutisticGirls/MagicalAutisticGirls.app": - when: - os: mac store: steam - /MagicalAutisticGirls/MagicalAutisticGirls.exe: + "/MagicalAutisticGirls/MagicalAutisticGirls.exe": - when: - os: windows store: steam - /MagicalAutisticGirls/MagicalAutisticGirls.sh: + "/MagicalAutisticGirls/MagicalAutisticGirls.sh": - when: - os: linux store: steam steam: id: 1684120 -'4 Alice: Lorange Journey': +"4 Alice: Lorange Journey": installDir: 4 Alice Lorange Journey: {} launch: - /4Alice.exe: - - arguments: '--in-process-gpu' + "/4Alice.exe": + - arguments: "--in-process-gpu" when: - bit: 64 os: windows store: steam steam: id: 761160 -'4 Classes, Many Paths': +"4 Classes, Many Paths": steam: id: 1078610 4 Elements: files: - /Playrix Entertainment/4 Elements/GameInfo.xml: + "/Playrix Entertainment/4 Elements/GameInfo.xml": tags: - save when: @@ -3816,7 +3824,7 @@ $1 Ride: installDir: 4 Elements: {} launch: - /4 Elements.exe: + "/4 Elements.exe": - when: - store: steam steam: @@ -3825,7 +3833,7 @@ $1 Ride: installDir: 4 for the Money Demo: {} launch: - /4 for the Money Demo.exe: + "/4 for the Money Demo.exe": - when: - os: windows store: steam @@ -3835,15 +3843,15 @@ $1 Ride: installDir: 4-in-1 IQ Scale Bundle: {} launch: - /IQScale41: + "/IQScale41": - when: - os: linux store: steam - /IQScale41.app/Contents/MacOS/nwjs: + "/IQScale41.app/Contents/MacOS/nwjs": - when: - os: mac store: steam - /IQScale41.exe: + "/IQScale41.exe": - when: - os: windows store: steam @@ -3853,11 +3861,11 @@ $1 Ride: installDir: 40 Days: {} launch: - /40D.app/Contents/MacOS/40D: + "/40D.app/Contents/MacOS/40D": - when: - os: mac store: steam - /40D.exe: + "/40D.exe": - when: - os: windows store: steam @@ -3865,12 +3873,12 @@ $1 Ride: id: 737600 40 Winks: files: - /memcard/Mcd****.mcr: + "/memcard/Mcd****.mcr": tags: - save when: - os: windows - /settings.ini: + "/settings.ini": tags: - config when: @@ -3880,7 +3888,7 @@ $1 Ride: installDir: 40 Winks: {} launch: - /40 winks.exe: + "/40 winks.exe": - when: - os: windows store: steam @@ -3890,11 +3898,11 @@ $1 Ride: installDir: 4004-022: {} launch: - /4004-022.app/Contents/MacOS/4004-022: + "/4004-022.app/Contents/MacOS/4004-022": - when: - os: mac store: steam - /4004-022.exe: + "/4004-022.exe": - when: - os: windows store: steam @@ -3902,12 +3910,12 @@ $1 Ride: id: 1065670 404Sight: files: - /AppData/Local/404Sight/Saved/Config: + "/AppData/Local/404Sight/Saved/Config": tags: - config when: - os: windows - /AppData/Local/404Sight/Saved/SaveGames: + "/AppData/Local/404Sight/Saved/SaveGames": tags: - save when: @@ -3915,25 +3923,25 @@ $1 Ride: installDir: 404Sight: {} launch: - /404Sight.exe: + "/404Sight.exe": - when: - os: windows store: steam steam: id: 361630 -'4089: Ghost Within': +"4089: Ghost Within": installDir: - '4089': {} + "4089": {} launch: - /4089-novr.bat: + "/4089-novr.bat": - when: - os: windows store: steam - /4089.sh: + "/4089.sh": - when: - os: linux store: steam - /launchme.sh: + "/launchme.sh": - when: - os: mac store: steam @@ -3943,20 +3951,20 @@ $1 Ride: installDir: 420 Button Clicker: {} launch: - /Sunshine.exe: + "/Sunshine.exe": - when: - os: windows store: steam steam: id: 1026180 -'428: Shibuya Scramble': +"428: Shibuya Scramble": files: - /userdata//648580/remote: + "/userdata//648580/remote": tags: - save when: - store: steam - /My Games/428 Shibuya Scramble: + "/My Games/428 Shibuya Scramble": tags: - config when: @@ -3964,7 +3972,7 @@ $1 Ride: installDir: 428_shibuya_scramble_en: {} launch: - /428 Shibuya Scramble.exe: + "/428 Shibuya Scramble.exe": - when: - os: windows store: steam @@ -3974,26 +3982,26 @@ $1 Ride: installDir: 4D Minesweeper: {} launch: - /4D Minesweeper 64.exe: + "/4D Minesweeper 64.exe": - when: - bit: 64 os: windows store: steam - /4D Minesweeper.app: + "/4D Minesweeper.app": - when: - os: mac store: steam - /4D Minesweeper.exe: + "/4D Minesweeper.exe": - when: - bit: 32 os: windows store: steam - /4D Minesweeper.x86: + "/4D Minesweeper.x86": - when: - bit: 32 os: linux store: steam - /4D Minesweeper.x86_64: + "/4D Minesweeper.x86_64": - when: - bit: 64 os: linux @@ -4004,7 +4012,7 @@ $1 Ride: installDir: 4DToys: {} launch: - /4DToys.exe: + "/4DToys.exe": - when: - os: windows store: steam @@ -4014,11 +4022,11 @@ $1 Ride: installDir: 4DSnake: {} launch: - /4DSnake.exe: + "/4DSnake.exe": - when: - os: windows store: steam - /Kick: + "/Kick": - when: - os: linux store: steam @@ -4028,7 +4036,7 @@ $1 Ride: installDir: 4K Bricks Breaker Plus: {} launch: - /4kbbp.exe: + "/4kbbp.exe": - when: - os: windows store: steam @@ -4038,11 +4046,11 @@ $1 Ride: installDir: 4PM: {} launch: - /4PM.app: + "/4PM.app": - when: - os: mac store: steam - /4PM.exe: + "/4PM.exe": - when: - os: windows store: steam @@ -4052,15 +4060,15 @@ $1 Ride: installDir: 4Team: {} launch: - /4Team.app: + "/4Team.app": - when: - os: mac store: steam - /4Team.exe: + "/4Team.exe": - when: - os: windows store: steam - /4Team.x86: + "/4Team.x86": - when: - os: linux store: steam @@ -4070,7 +4078,7 @@ $1 Ride: installDir: Space Time Shipyard: {} launch: - /Space Time Shipyard.exe: + "/Space Time Shipyard.exe": - when: - bit: 64 os: windows @@ -4081,7 +4089,7 @@ $1 Ride: installDir: 4x4 OFF-ROAD CHALLENGE: {} launch: - /4x4 Off-Rd. Challenge.exe: + "/4x4 Off-Rd. Challenge.exe": - when: - os: windows store: steam @@ -4091,7 +4099,7 @@ $1 Ride: installDir: 4islands: {} launch: - /The4Islands.exe: + "/The4Islands.exe": - when: - bit: 64 os: windows @@ -4117,35 +4125,35 @@ $1 Ride: installDir: 4x4 Dream Race: {} launch: - /BIN/DGLauncher.exe: + "/BIN/DGLauncher.exe": - when: - os: windows store: steam - workingDir: /BIN + workingDir: "/BIN" steam: id: 313330 4x4 Evo: files: - /SYSTEM/metal.ini: + "/SYSTEM/metal.ini": tags: - save when: - os: windows 4x4 Evo 2: files: - /SYSTEM: + "/SYSTEM": tags: - config when: - os: windows - /SYSTEM/metal.ini: + "/SYSTEM/metal.ini": tags: - save when: - os: windows 4x4 Hummer: files: - /Data/profiles: + "/Data/profiles": tags: - save when: @@ -4153,7 +4161,7 @@ $1 Ride: installDir: 4x4 Hummer: {} launch: - /Hummer.exe: + "/Hummer.exe": - when: - store: steam steam: @@ -4162,7 +4170,7 @@ $1 Ride: installDir: 4x4 Offroad Racing Nitro: {} launch: - /4x4 Offroad Racing Nitro.exe: + "/4x4 Offroad Racing Nitro.exe": - when: - os: windows store: steam @@ -4172,21 +4180,21 @@ $1 Ride: installDir: 4x4RoadRace: {} launch: - /4x4RoadRace.app/Contents/MacOS/4x4RoadRace: + "/4x4RoadRace.app/Contents/MacOS/4x4RoadRace": - when: - os: mac store: steam - /4x4RoadRace.exe: + "/4x4RoadRace.exe": - when: - bit: 32 os: windows store: steam - /4x4RoadRace.x86: + "/4x4RoadRace.x86": - when: - bit: 32 os: linux store: steam - /4x4RoadRace.x86_64: + "/4x4RoadRace.x86_64": - when: - bit: 64 os: linux @@ -4195,12 +4203,12 @@ $1 Ride: id: 587770 5 Days a Stranger: files: - /acsetup.cfg: + "/acsetup.cfg": tags: - config when: - os: windows - /agssave.*: + "/agssave.*": tags: - save when: @@ -4209,16 +4217,16 @@ $1 Ride: installDir: 5 Minutes Rage: {} launch: - /FiveMinutesRage/Binaries/Win32/FiveMinutesRage-Win32-Shipping.exe: - - arguments: '-installed' + "/FiveMinutesRage/Binaries/Win32/FiveMinutesRage-Win32-Shipping.exe": + - arguments: "-installed" when: - os: windows store: steam - - arguments: '-installed -windowed -ResX=1280 -ResY=720' + - arguments: "-installed -windowed -ResX=1280 -ResY=720" when: - os: windows store: steam - /open_user_data_folder.cmd: + "/open_user_data_folder.cmd": - when: - store: steam steam: @@ -4227,7 +4235,7 @@ $1 Ride: installDir: Hawaii Resort: {} launch: - /Hawaii Resort.exe: + "/Hawaii Resort.exe": - when: - os: windows store: steam @@ -4237,7 +4245,7 @@ $1 Ride: installDir: MiamiResort: {} launch: - /MiamiResort.exe: + "/MiamiResort.exe": - when: - os: windows store: steam @@ -4247,7 +4255,7 @@ $1 Ride: installDir: 5 Star Rio Ressort: {} launch: - /RioResort.exe: + "/RioResort.exe": - when: - store: steam steam: @@ -4256,35 +4264,35 @@ $1 Ride: installDir: 5-in-1 Bundle Brain Trainings: {} launch: - /IQScale51: + "/IQScale51": - when: - os: linux store: steam - /IQScale51.app/Contents/MacOS/nwjs: + "/IQScale51.app/Contents/MacOS/nwjs": - when: - os: mac store: steam - /IQScale51.exe: + "/IQScale51.exe": - when: - os: windows store: steam steam: id: 715710 -'5-in-1 Pack - Monument Builders: Destination USA': +"5-in-1 Pack - Monument Builders: Destination USA": installDir: 5-in-1 Pack - Monument Builders Destination USA: {} launch: - /menu.exe: + "/menu.exe": - when: - os: windows store: steam steam: id: 564340 -'5.0': +"5.0": installDir: - '5.0': {} + "5.0": {} launch: - /5.0.exe: + "/5.0.exe": - when: - store: steam steam: @@ -4293,7 +4301,7 @@ $1 Ride: installDir: 5.84 Wing: {} launch: - /5.84 Wing.exe: + "/5.84 Wing.exe": - when: - os: windows store: steam @@ -4303,7 +4311,7 @@ $1 Ride: installDir: 50 Years: {} launch: - /50years.exe: + "/50years.exe": - when: - os: windows store: steam @@ -4311,7 +4319,7 @@ $1 Ride: id: 516460 50 Years (Aleksandr Golovkin): files: - /_50years/YEAR50.TXT: + "/_50years/YEAR50.TXT": tags: - config when: @@ -4319,7 +4327,7 @@ $1 Ride: installDir: 50 years: {} launch: - /50years.exe: + "/50years.exe": - when: - os: windows store: steam @@ -4329,31 +4337,31 @@ $1 Ride: installDir: 500Years: {} launch: - /500Years.exe: + "/500Years.exe": - when: - os: windows store: steam steam: id: 357200 -'5089': +"5089": files: - /5089: + "/5089": tags: - save when: - os: windows installDir: - '5089': {} + "5089": {} launch: - /5089-novr.bat: + "/5089-novr.bat": - when: - os: windows store: steam - /5089.sh: + "/5089.sh": - when: - os: linux store: steam - /launchme.sh: + "/launchme.sh": - when: - os: mac store: steam @@ -4361,13 +4369,13 @@ $1 Ride: id: 414510 5D Chess With Multiverse Time Travel: files: - /Thunkspace/5dchesswithmultiversetimetravel/settings_and_progress.txt: + "/Thunkspace/5dchesswithmultiversetimetravel/settings_and_progress.txt": tags: - config - save when: - os: windows - /Thunkspace/5dchesswithmultiversetimetravel/settings_and_progress.txt: + "/Thunkspace/5dchesswithmultiversetimetravel/settings_and_progress.txt": tags: - config - save @@ -4376,16 +4384,16 @@ $1 Ride: installDir: 5dchesswithmultiversetimetravel: {} launch: - /5D Chess.app/Contents/MacOS/5dchesswithmultiversetimetravel: + "/5D Chess.app/Contents/MacOS/5dchesswithmultiversetimetravel": - when: - os: mac store: steam - /5dchesswithmultiversetimetravel: + "/5dchesswithmultiversetimetravel": - when: - bit: 64 os: linux store: steam - /5dchesswithmultiversetimetravel.exe: + "/5dchesswithmultiversetimetravel.exe": - when: - bit: 64 os: windows @@ -4396,7 +4404,7 @@ $1 Ride: installDir: 5Leaps (Space Tower Defense): {} launch: - /5Leaps.exe: + "/5Leaps.exe": - when: - os: windows store: steam @@ -4406,7 +4414,7 @@ $1 Ride: installDir: 5Rings: {} launch: - /5Rings.exe: + "/5Rings.exe": - when: - os: windows store: steam @@ -4416,7 +4424,7 @@ $1 Ride: installDir: 6 Nights: {} launch: - /Nights.exe: + "/Nights.exe": - when: - os: windows store: steam @@ -4426,7 +4434,7 @@ $1 Ride: installDir: 6SeasonsAndAGame: {} launch: - /CTG.exe: + "/CTG.exe": - when: - os: windows store: steam @@ -4436,15 +4444,15 @@ $1 Ride: installDir: 6-in-1 IQ Scale Bundle: {} launch: - /IQScale61: + "/IQScale61": - when: - os: linux store: steam - /IQScale61.app/Contents/MacOS/nwjs: + "/IQScale61.app/Contents/MacOS/nwjs": - when: - os: mac store: steam - /IQScale61.exe: + "/IQScale61.exe": - when: - os: windows store: steam @@ -4454,29 +4462,33 @@ $1 Ride: installDir: 6-in-1 IQ Scale Bundle: {} launch: - /IQScale61.exe: + "/IQScale61.exe": - when: - os: windows store: steam + - os: mac + store: steam + - os: linux + store: steam steam: id: 886650 -'6.0': +"6.0": installDir: - '6.0': {} + "6.0": {} launch: - /6.0.exe: + "/6.0.exe": - when: - store: steam steam: id: 1165860 60 Parsecs!: files: - /userdata//646270/remote: + "/userdata//646270/remote": tags: - save when: - store: steam - /userdata//646270/remote/settings: + "/userdata//646270/remote/settings": tags: - config when: @@ -4486,11 +4498,11 @@ $1 Ride: installDir: 60 Parsecs!: {} launch: - /60Parsecs.app: + "/60Parsecs.app": - when: - os: mac store: steam - /60Parsecs.exe: + "/60Parsecs.exe": - when: - bit: 64 os: windows @@ -4505,16 +4517,16 @@ $1 Ride: installDir: 60 Second Strike: {} launch: - /Chaos/Release/Chaos_s.exe: + "/Chaos/Release/Chaos_s.exe": - when: - os: windows store: steam - workingDir: /Chaos/Release + workingDir: "/Chaos/Release" steam: id: 696540 60 Seconds!: files: - /AppData/LocalLow/Robot Gentleman/60 Seconds: + "/AppData/LocalLow/Robot Gentleman/60 Seconds": tags: - config when: @@ -4524,20 +4536,20 @@ $1 Ride: installDir: 60 Seconds!: {} launch: - /60Seconds.app: + "/60Seconds.app": - when: - os: mac store: steam - /60Seconds.exe: + "/60Seconds.exe": - when: - os: windows store: steam - /60Seconds.x86: + "/60Seconds.x86": - when: - bit: 32 os: linux store: steam - /60Seconds.x86_64: + "/60Seconds.x86_64": - when: - bit: 64 os: linux @@ -4546,12 +4558,12 @@ $1 Ride: id: 368360 60 Seconds! Reatomized: files: - /userdata//1012880/remote: + "/userdata//1012880/remote": tags: - save when: - store: steam - /userdata//1012880/remote/settings: + "/userdata//1012880/remote/settings": tags: - config when: @@ -4559,16 +4571,16 @@ $1 Ride: installDir: 60 Seconds! Reatomized: {} launch: - /60Seconds.x86_64: + "/60Seconds.x86_64": - when: - bit: 64 os: linux store: steam - /60SecondsReatomized.app: + "/60SecondsReatomized.app": - when: - os: mac store: steam - /60SecondsReatomized.exe: + "/60SecondsReatomized.exe": - when: - bit: 64 os: windows @@ -4579,18 +4591,18 @@ $1 Ride: installDir: 61 Days: {} launch: - /Onehundredandonedays.exe: + "/Onehundredandonedays.exe": - when: - bit: 64 os: windows store: steam steam: id: 1119820 -'6120': +"6120": installDir: - '6120': {} + "6120": {} launch: - /6120.exe: + "/6120.exe": - when: - bit: 64 os: windows @@ -4601,15 +4613,15 @@ $1 Ride: installDir: 6180 the moon: {} launch: - /6180 the moon.app: + "/6180 the moon.app": - when: - os: mac store: steam - /6180 the moon.exe: + "/6180 the moon.exe": - when: - os: windows store: steam - /6180 the moon.x86: + "/6180 the moon.x86": - when: - os: linux store: steam @@ -4619,21 +4631,21 @@ $1 Ride: - config steam: id: 299660 -'64.0': +"64.0": files: - /AppData/LocalLow/rebelrabbit/64_0/*.dat: + "/AppData/LocalLow/rebelrabbit/64_0/*.dat": tags: - save when: - os: windows installDir: - '64.0': {} + "64.0": {} launch: - /64.0.app: + "/64.0.app": - when: - os: mac store: steam - /64.0.exe: + "/64.0.exe": - when: - os: windows store: steam @@ -4641,7 +4653,7 @@ $1 Ride: id: 578850 688(I) Hunter/Killer: files: - /688HK.ini: + "/688HK.ini": tags: - config when: @@ -4651,12 +4663,12 @@ $1 Ride: installDir: 688(I) Hunter-Killer: {} launch: - /SteamRun.exe: + "/SteamRun.exe": - when: - store: steam steam: id: 2900 -'69': +"69": steam: id: 854380 69 Ways to Kill a Zombie: @@ -4668,17 +4680,17 @@ $1 Ride: installDir: 6souls: {} launch: - /win64/6Souls.exe: + "/win64/6Souls.exe": - when: - os: windows store: steam steam: id: 1153520 -'7': +"7": installDir: 7 Game: {} launch: - /SEVEN.exe: + "/SEVEN.exe": - when: - os: windows store: steam @@ -4688,39 +4700,39 @@ $1 Ride: installDir: 7 Angels: {} launch: - /Seven Angels.exe: + "/Seven Angels.exe": - when: - store: steam steam: id: 1477860 7 Billion Humans: files: - /.local/share/Tomorrow Corporation/7 Billion Humans/profile.bin: + "/.local/share/Tomorrow Corporation/7 Billion Humans/profile.bin": tags: - save when: - os: linux - /.local/share/Tomorrow Corporation/7 Billion Humans/settings.txt: + "/.local/share/Tomorrow Corporation/7 Billion Humans/settings.txt": tags: - config when: - os: linux - /Library/Application Support/7 Billion Humans/settings.txt: + "/Library/Application Support/7 Billion Humans/settings.txt": tags: - config when: - os: mac - /Library/Containers/com.tomorrowcorporation.7billionhumansmac/Data/Library/Application Support/7 Billion Humans/settings.txt: + "/Library/Containers/com.tomorrowcorporation.7billionhumansmac/Data/Library/Application Support/7 Billion Humans/settings.txt": tags: - config when: - os: mac - /7 Billion Humans: + "/7 Billion Humans": tags: - save when: - os: windows - /7 Billion Humans/settings.txt: + "/7 Billion Humans/settings.txt": tags: - config when: @@ -4730,20 +4742,20 @@ $1 Ride: installDir: 7 Billion Humans: {} launch: - /7 Billion Humans.app/Contents/MacOS/7 Billion Humans: + "/7 Billion Humans.app/Contents/MacOS/7 Billion Humans": - when: - os: mac store: steam - /7 Billion Humans.exe: + "/7 Billion Humans.exe": - when: - os: windows store: steam - /7BillionHumans.bin.x86: + "/7BillionHumans.bin.x86": - when: - bit: 32 os: linux store: steam - /7BillionHumans.bin.x86_64: + "/7BillionHumans.bin.x86_64": - when: - bit: 64 os: linux @@ -4754,7 +4766,7 @@ $1 Ride: installDir: 7 Bones and 7 Stones - The Ritual: {} launch: - /TheRitual/Binaries/Win64/TheRitual-Win64.exe: + "/TheRitual/Binaries/Win64/TheRitual-Win64.exe": - when: - bit: 64 os: windows @@ -4765,7 +4777,7 @@ $1 Ride: installDir: game: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -4773,27 +4785,27 @@ $1 Ride: id: 819870 7 Days to Die: files: - /.config/unity3d/The Fun Pimps/7 Days To Die: + "/.config/unity3d/The Fun Pimps/7 Days To Die": tags: - config when: - os: linux - /.local/share/7DaysToDie/Saves: + "/.local/share/7DaysToDie/Saves": tags: - save when: - os: linux - /Library/Application Support/7DaysToDie/Saves: + "/Library/Application Support/7DaysToDie/Saves": tags: - save when: - os: mac - /Library/Preferences/unity.The Fun Pimps.7 Days To Die.plist: + "/Library/Preferences/unity.The Fun Pimps.7 Days To Die.plist": tags: - config when: - os: mac - /7DaysToDie/Saves: + "/7DaysToDie/Saves": tags: - save when: @@ -4801,30 +4813,30 @@ $1 Ride: installDir: 7 Days To Die: {} launch: - /7DaysToDie.sh: - - arguments: '-from-steam' + "/7DaysToDie.sh": + - arguments: "-from-steam" when: - os: linux store: steam - - arguments: '-show-launcher -from-steam' + - arguments: "-show-launcher -from-steam" when: - os: linux store: steam - /7dLauncher.app: - - arguments: '-from-steam' + "/7dLauncher.app": + - arguments: "-from-steam" when: - os: mac store: steam - - arguments: '-show-launcher -from-steam' + - arguments: "-show-launcher -from-steam" when: - os: mac store: steam - /7dLauncher.exe: - - arguments: '-from-steam' + "/7dLauncher.exe": + - arguments: "-from-steam" when: - os: windows store: steam - - arguments: '-show-launcher -from-steam' + - arguments: "-show-launcher -from-steam" when: - os: windows store: steam @@ -4838,15 +4850,15 @@ $1 Ride: installDir: 7 days with Death: {} launch: - /krkr.eXe: + "/krkr.eXe": - when: - os: windows store: steam steam: id: 617820 -'7 Grand Steps: What Ancients Begat': +"7 Grand Steps: What Ancients Begat": files: - /Mousechief/7GS: + "/Mousechief/7GS": tags: - save when: @@ -4854,11 +4866,11 @@ $1 Ride: installDir: 7 Grand Steps 01: {} launch: - /7 Grand Steps.app: + "/7 Grand Steps.app": - when: - os: mac store: steam - /7 Grand Steps.exe: + "/7 Grand Steps.exe": - when: - os: windows store: steam @@ -4868,15 +4880,15 @@ $1 Ride: installDir: 7 Lives: {} launch: - /7Lives.app: + "/7Lives.app": - when: - os: mac store: steam - /7Lives.exe: + "/7Lives.exe": - when: - os: windows store: steam - /7Lives.sh: + "/7Lives.sh": - when: - os: linux store: steam @@ -4886,15 +4898,15 @@ $1 Ride: installDir: 7 Mages: {} launch: - /7mages.app/Contents/MacOS/7mages: + "/7mages.app/Contents/MacOS/7mages": - when: - os: mac store: steam - /7mages.exe: + "/7mages.exe": - when: - os: windows store: steam - /7mages.sh: + "/7mages.sh": - when: - os: linux store: steam @@ -4904,7 +4916,7 @@ $1 Ride: installDir: 7 Pillars: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -4912,17 +4924,17 @@ $1 Ride: id: 654640 7 Sexy Sins: files: - /AppData/LocalLow/ZaiStudio/7SexySins//*.dat: + "/AppData/LocalLow/ZaiStudio/7SexySins//*.dat": tags: - save when: - os: windows - /unity3d/ZaiStudio/7SexySins//*.dat: + "/unity3d/ZaiStudio/7SexySins//*.dat": tags: - save when: - os: linux - /unity3d/ZaiStudio/7SexySins/prefs: + "/unity3d/ZaiStudio/7SexySins/prefs": tags: - config when: @@ -4930,15 +4942,15 @@ $1 Ride: installDir: 7SexySins: {} launch: - /7SexySins.app: + "/7SexySins.app": - when: - os: mac store: steam - /7SexySins.exe: + "/7SexySins.exe": - when: - os: windows store: steam - /7SexySins.x86_64: + "/7SexySins.x86_64": - when: - os: linux store: steam @@ -4948,7 +4960,7 @@ $1 Ride: installDir: 7 Soccer: {} launch: - /7 Soccer_A sci_fi soccer tale.exe: + "/7 Soccer_A sci_fi soccer tale.exe": - when: - os: windows store: steam @@ -4958,7 +4970,7 @@ $1 Ride: installDir: 7 Wonders 2: {} launch: - /WondersII_1_13.exe: + "/WondersII_1_13.exe": - when: - store: steam steam: @@ -4967,62 +4979,62 @@ $1 Ride: installDir: 7 Wonders: {} launch: - /7Wonders.exe: + "/7Wonders.exe": - when: - os: windows store: steam steam: id: 275810 -'7 Wonders: Ancient Alien Makeover': +"7 Wonders: Ancient Alien Makeover": installDir: 7 Wonders Ancient Alien Makeover: {} launch: - /7 Wonders - Ancient Alien Makeover.exe: - - arguments: '-run' + "/7 Wonders - Ancient Alien Makeover.exe": + - arguments: "-run" when: - os: windows store: steam steam: id: 223000 -'7 Wonders: Magical Mystery Tour': +"7 Wonders: Magical Mystery Tour": installDir: 7 Wonders Magical Mystery Tour: {} launch: - /7W4.exe: + "/7W4.exe": - when: - os: windows store: steam steam: id: 275830 -'7 Wonders: Treasures of Seven': +"7 Wonders: Treasures of Seven": installDir: 7 Wonders - The Treasures of Seven: {} launch: - /7 Wonders - Treasures of Seven.exe: + "/7 Wonders - Treasures of Seven.exe": - when: - store: steam steam: id: 16030 -'7 summer days: Youth sky': +"7 summer days: Youth sky": installDir: YouthSky: {} launch: - /YouthSky/ys_1.exe: + "/YouthSky/ys_1.exe": - when: - os: windows store: steam - workingDir: /YouthSky - /ys_1.sh: + workingDir: "/YouthSky" + "/ys_1.sh": - when: - os: linux store: steam steam: id: 1331590 -7'scarlet: +"7'scarlet": installDir: 7scarlet: {} launch: - /SevenScarletSteam.exe: + "/SevenScarletSteam.exe": - when: - os: windows store: steam @@ -5032,15 +5044,15 @@ $1 Ride: installDir: 7-in-1 Brain Sharpness Bundle: {} launch: - /BrainSharpness71: + "/BrainSharpness71": - when: - os: linux store: steam - /BrainSharpness71.app/Contents/MacOS/nwjs: + "/BrainSharpness71.app/Contents/MacOS/nwjs": - when: - os: mac store: steam - /BrainSharpness71.exe: + "/BrainSharpness71.exe": - when: - os: windows store: steam @@ -5050,7 +5062,7 @@ $1 Ride: installDir: 7-minute HOP: {} launch: - /7-minute HOP.exe: + "/7-minute HOP.exe": - when: - os: windows store: steam @@ -5058,7 +5070,7 @@ $1 Ride: id: 961210 7.62 Hard Life: files: - /Saves: + "/Saves": tags: - save when: @@ -5069,7 +5081,7 @@ $1 Ride: id: 306290 7.62 High Calibre: files: - /Saves: + "/Saves": tags: - save when: @@ -5077,13 +5089,13 @@ $1 Ride: gog: id: 1727035233 installDir: - '7.62': {} + "7.62": {} launch: - /E6.exe: + "/E6.exe": - when: - os: windows store: steam - /E6Config.exe: + "/E6Config.exe": - when: - os: windows store: steam @@ -5093,7 +5105,7 @@ $1 Ride: installDir: 70 Seconds Survival: {} launch: - /Race4cars.exe: + "/Race4cars.exe": - when: - bit: 64 os: windows @@ -5104,42 +5116,42 @@ $1 Ride: installDir: 70 Seconds! Adventure: {} launch: - /70 Seconds! Adventure.exe: + "/70 Seconds! Adventure.exe": - when: - store: steam steam: id: 1143420 -'7554: Glorious Memories Revived': +"7554: Glorious Memories Revived": files: - /SaveGames: + "/SaveGames": tags: - save when: - os: windows - /setting.xml: + "/setting.xml": tags: - config when: - os: windows -'7776 II: Dwarven Greed': +"7776 II: Dwarven Greed": installDir: 7776 II Dwarven Greed: {} launch: - /Game7776.exe: + "/Game7776.exe": - when: - bit: 64 os: windows store: steam steam: id: 1019340 -'77p egg: Eggwife': +"77p egg: Eggwife": files: - /eggwife/Saved/Config/WindowsNoEditor: + "/eggwife/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /eggwife/Saved/SaveGames: + "/eggwife/Saved/SaveGames": tags: - save when: @@ -5147,7 +5159,7 @@ $1 Ride: installDir: 77p egg Eggwife: {} launch: - /eggwife.exe: + "/eggwife.exe": - when: - bit: 64 os: windows @@ -5159,11 +5171,11 @@ $1 Ride: 7D_Game: {} steam: id: 547440 -'7WORLDS: The Dreaming Dale': +"7WORLDS: The Dreaming Dale": installDir: 7WORLDS The Dreaming Dale: {} launch: - /7 Worlds the Dreaming Dale.exe: + "/7 Worlds the Dreaming Dale.exe": - when: - os: windows store: steam @@ -5173,7 +5185,7 @@ $1 Ride: installDir: 7th Deep: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -5181,12 +5193,12 @@ $1 Ride: id: 806580 7th Legion: files: - /Data/SAVE0.SAV: + "/Data/SAVE0.SAV": tags: - save when: - os: windows - /Siege.ini: + "/Siege.ini": tags: - config when: @@ -5196,25 +5208,25 @@ $1 Ride: installDir: 7th Legion: {} launch: - /legion.exe: + "/legion.exe": - when: - os: windows store: steam steam: id: 327910 -'7th Sea: A Pirate''s Pact': +"7th Sea: A Pirate's Pact": installDir: - 7th Sea A Pirate's Pact: {} + "7th Sea A Pirate's Pact": {} launch: - /7th Sea A Pirates Pact.app/Contents/MacOS/7th Sea A Pirates Pact: + "/7th Sea A Pirates Pact.app/Contents/MacOS/7th Sea A Pirates Pact": - when: - os: mac store: steam - /7thSeaAPiratesPact: + "/7thSeaAPiratesPact": - when: - os: linux store: steam - /7thSeaAPiratesPact.exe: + "/7thSeaAPiratesPact.exe": - when: - os: windows store: steam @@ -5224,7 +5236,7 @@ $1 Ride: installDir: 7th Sector: {} launch: - /7TH_Sector.exe: + "/7TH_Sector.exe": - when: - os: windows store: steam @@ -5239,7 +5251,7 @@ $1 Ride: installDir: WindowsNoEditor: {} launch: - /EightBall.exe: + "/EightBall.exe": - when: - os: windows store: steam @@ -5247,12 +5259,12 @@ $1 Ride: id: 818530 8 Days: files: - /_8DAYS/Game1.sav: + "/_8DAYS/Game1.sav": tags: - save when: - os: windows - /_8DAYS/prefs.ini: + "/_8DAYS/prefs.ini": tags: - config when: @@ -5260,11 +5272,11 @@ $1 Ride: installDir: 8DAYS: {} launch: - /8DAYS.app: + "/8DAYS.app": - when: - os: mac store: steam - /8DAYS.exe: + "/8DAYS.exe": - when: - os: windows store: steam @@ -5276,7 +5288,7 @@ $1 Ride: installDir: 8 Eyes: {} launch: - /8 eyes.exe: + "/8 eyes.exe": - when: - os: windows store: steam @@ -5291,20 +5303,20 @@ $1 Ride: installDir: 8-Bit Adventures 2: {} launch: - /Game.exe: - - arguments: '--in-process-gpu' + "/Game.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam steam: id: 733110 -'8-Bit Adventures: The Forgotten Journey Remastered Edition': +"8-Bit Adventures: The Forgotten Journey Remastered Edition": gog: id: 1636163734 installDir: 8-Bit Adventures - The Forgotten Journey Remastered Edition: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -5315,7 +5327,7 @@ $1 Ride: id: 552660 8-Bit Armies: files: - /profile_*: + "/profile_*": tags: - config - save @@ -5326,16 +5338,16 @@ $1 Ride: installDir: 8BitArmies: {} launch: - /ClientLauncherG.exe: + "/ClientLauncherG.exe": - when: - store: steam steam: id: 427250 -'8-Bit Armies: Arena': +"8-Bit Armies: Arena": installDir: 8BitArena: {} launch: - /ClientLauncherG.exe: + "/ClientLauncherG.exe": - when: - store: steam steam: @@ -5344,7 +5356,7 @@ $1 Ride: installDir: 8BitB: {} launch: - /8BB.exe: + "/8BB.exe": - when: - store: steam registry: @@ -5355,13 +5367,13 @@ $1 Ride: id: 567090 8-Bit Commando: files: - /.agen/8-Bit/ Commando: + "/.agen/8-Bit/ Commando": tags: - config - save when: - os: linux - /8bitcommando: + "/8bitcommando": tags: - config - save @@ -5370,18 +5382,18 @@ $1 Ride: installDir: 8bitcommando: {} launch: - /Contents/MacOS/love: + "/Contents/MacOS/love": - arguments: commando.love --fused when: - os: mac store: steam - /love: + "/love": - arguments: commando.love --fused when: - bit: 64 os: linux store: steam - /love.exe: + "/love.exe": - arguments: commando.love --fused when: - os: windows @@ -5392,7 +5404,7 @@ $1 Ride: installDir: 8BitHordes: {} launch: - /ClientLauncherG.exe: + "/ClientLauncherG.exe": - when: - store: steam steam: @@ -5401,14 +5413,14 @@ $1 Ride: installDir: 8BitInvaders: {} launch: - /ClientLauncherG.exe: + "/ClientLauncherG.exe": - when: - store: steam steam: id: 531680 -'8-bit Adventure Anthology: Volume I': +"8-bit Adventure Anthology: Volume I": files: - /AppData/LocalLow/Abstraction Games/8-bit Adventure Anthology_ Volume I/: + "/AppData/LocalLow/Abstraction Games/8-bit Adventure Anthology_ Volume I/": tags: - save when: @@ -5416,32 +5428,32 @@ $1 Ride: installDir: 8-bit Adventure Anthology Volume I: {} launch: - /game-x86_64.exe: + "/game-x86_64.exe": - when: - bit: 64 os: windows store: steam - /game.app: + "/game.app": - when: - os: mac store: steam - /game.exe: + "/game.exe": - when: - bit: 32 os: windows store: steam - /game.x86: + "/game.x86": - when: - bit: 32 os: linux store: steam - /game.x86_64: + "/game.x86_64": - when: - bit: 64 os: linux store: steam registry: - 'HKEY_CURRENT_USER/Software/Abstraction Games/8-bit Adventure Anthology: Volume I': + "HKEY_CURRENT_USER/Software/Abstraction Games/8-bit Adventure Anthology: Volume I": tags: - config steam: @@ -5450,16 +5462,16 @@ $1 Ride: installDir: 8-in-1 IQ Scale Bundle: {} launch: - /IQScale81: + "/IQScale81": - when: - bit: 64 os: linux store: steam - /IQScale81.app/Contents/MacOS/nwjs: + "/IQScale81.app/Contents/MacOS/nwjs": - when: - os: mac store: steam - /IQScale81.exe: + "/IQScale81.exe": - when: - os: windows store: steam @@ -5467,7 +5479,7 @@ $1 Ride: id: 772470 80 Days (2015): files: - /AppData/LocalLow/Inkle Studios/80 Days: + "/AppData/LocalLow/Inkle Studios/80 Days": tags: - save when: @@ -5477,11 +5489,11 @@ $1 Ride: installDir: 80 Days: {} launch: - /80 Days.app: + "/80 Days.app": - when: - os: mac store: steam - /80 Days.exe: + "/80 Days.exe": - when: - os: windows store: steam @@ -5491,27 +5503,27 @@ $1 Ride: - config steam: id: 381780 -80's Style: +"80's Style": steam: id: 879440 -'80.08': +"80.08": installDir: - '80.08': {} + "80.08": {} launch: - /80.08.app: + "/80.08.app": - when: - os: mac store: steam - /80.08.exe: + "/80.08.exe": - when: - os: windows store: steam - /80.08.x86: + "/80.08.x86": - when: - bit: 32 os: linux store: steam - /80.08.x86_64: + "/80.08.x86_64": - when: - bit: 64 os: linux @@ -5522,21 +5534,21 @@ $1 Ride: installDir: 868-HACK: {} launch: - /868-HACK.app: + "/868-HACK.app": - when: - os: mac store: steam - /868-HACK.exe: + "/868-HACK.exe": - when: - os: windows store: steam steam: id: 274700 -'87 Aftermath: A Rolling Ball Game': +"87 Aftermath: A Rolling Ball Game": installDir: TilePuzzle: {} launch: - /TilePuzzle1.exe: + "/TilePuzzle1.exe": - when: - store: steam steam: @@ -5547,20 +5559,20 @@ $1 Ride: installDir: 88 Heroes: {} launch: - /88 Heroes.app/Contents/MacOS/88 Heroes: + "/88 Heroes.app/Contents/MacOS/88 Heroes": - when: - os: mac store: steam - /88 Heroes.exe: + "/88 Heroes.exe": - when: - os: windows store: steam - /88 Heroes.x86: + "/88 Heroes.x86": - when: - bit: 32 os: linux store: steam - /88 Heroes.x86_64: + "/88 Heroes.x86_64": - when: - bit: 64 os: linux @@ -5571,7 +5583,7 @@ $1 Ride: installDir: 8Bit Fiesta Steam: {} launch: - /nw: + "/nw": - when: - os: linux store: steam @@ -5579,7 +5591,7 @@ $1 Ride: id: 382260 8BitBoy: files: - /8BitBoy: + "/8BitBoy": tags: - save when: @@ -5587,11 +5599,11 @@ $1 Ride: installDir: 8BitBoy: {} launch: - /8bitboy.app: + "/8bitboy.app": - when: - os: mac store: steam - /8bitboy.exe: + "/8bitboy.exe": - when: - os: windows store: steam @@ -5601,27 +5613,27 @@ $1 Ride: installDir: 8BitMMO: {} launch: - /desktopLaunchLogging.sh: + "/desktopLaunchLogging.sh": - when: + - os: mac + store: steam - os: linux store: steam - /jre/bin/javaw.exe: - - arguments: >- - -Djava.net.preferIPv4Stack=true -classpath - \"DesktopLauncher.jar;jre\\lib\\jfxrt.jar;lib\\json-simple-1.1.1.jar\" DesktopLauncher/Main + "/jre/bin/javaw.exe": + - arguments: "-Djava.net.preferIPv4Stack=true -classpath \\\"DesktopLauncher.jar;jre\\\\lib\\\\jfxrt.jar;lib\\\\json-simple-1.1.1.jar\\\" DesktopLauncher/Main" when: - os: windows store: steam steam: id: 250420 -'8Doors: Arum''s Afterlife Adventure': +"8Doors: Arum's Afterlife Adventure": files: - /AppData/LocalLow/Rootless/8Doors: + "/AppData/LocalLow/Rootless/8Doors": tags: - config when: - os: windows - /AppData/LocalLow/Rootless/8Doors/SaveOptionSetting2.txt: + "/AppData/LocalLow/Rootless/8Doors/SaveOptionSetting2.txt": tags: - save when: @@ -5631,7 +5643,7 @@ $1 Ride: installDir: 8 Doors: {} launch: - /8Doors.exe: + "/8Doors.exe": - when: - store: steam steam: @@ -5640,7 +5652,7 @@ $1 Ride: installDir: 8bit Arena: {} launch: - /8bit Arena.exe: + "/8bit Arena.exe": - when: - store: steam steam: @@ -5652,11 +5664,11 @@ $1 Ride: installDir: Pigeon Hunter: {} launch: - /Pigeon-Hunter.app: + "/Pigeon-Hunter.app": - when: - os: mac store: steam - /Pigeon-Hunter.exe: + "/Pigeon-Hunter.exe": - when: - os: windows store: steam @@ -5669,7 +5681,7 @@ $1 Ride: id: 462530 8infinity: files: - /userdata//526540/remote: + "/userdata//526540/remote": tags: - save when: @@ -5677,15 +5689,15 @@ $1 Ride: installDir: 8infinity: {} launch: - /8infinity.app: + "/8infinity.app": - when: - os: mac store: steam - /8infinity.exe: + "/8infinity.exe": - when: - os: windows store: steam - /8infinity.x86: + "/8infinity.x86": - when: - os: linux store: steam @@ -5695,20 +5707,20 @@ $1 Ride: installDir: 9 Balls: {} launch: - /9balls.exe: + "/9balls.exe": - when: - store: steam steam: id: 839920 -'9 Clues 2: The Ward': +"9 Clues 2: The Ward": files: - /userdata//369420/remote/profile: + "/userdata//369420/remote/profile": tags: - save when: - os: windows store: steam - /Tap It Games/9 Clues 2 - The Ward/SE: + "/Tap It Games/9 Clues 2 - The Ward/SE": tags: - config when: @@ -5716,35 +5728,35 @@ $1 Ride: installDir: 9 Clues 2 The Ward: {} launch: - /Ward.exe: + "/Ward.exe": - when: - os: windows store: steam - /Ward_amd64: + "/Ward_amd64": - when: - bit: 64 os: linux store: steam - /Ward_i386: + "/Ward_i386": - when: - bit: 32 os: linux store: steam - /mac_steam.app/Contents/MacOS/mac_steam: + "/mac_steam.app/Contents/MacOS/mac_steam": - when: - os: mac store: steam steam: id: 369420 -'9 Clues: The Secret of Serpent Creek': +"9 Clues: The Secret of Serpent Creek": files: - /userdata//284870/remote/profile: + "/userdata//284870/remote/profile": tags: - save when: - os: windows store: steam - /Tap It Games/9 Clues - The Secret of Serpent Creek/CE: + "/Tap It Games/9 Clues - The Secret of Serpent Creek/CE": tags: - config when: @@ -5752,22 +5764,22 @@ $1 Ride: installDir: 9 Clues The Secret of Serpent Creek: {} launch: - /NineClues.exe: + "/NineClues.exe": - when: - bit: 32 os: windows store: steam - /NineClues_amd64: + "/NineClues_amd64": - when: - bit: 64 os: linux store: steam - /NineClues_i386: + "/NineClues_i386": - when: - bit: 32 os: linux store: steam - /mac_steam.app/Contents/MacOS/mac_steam: + "/mac_steam.app/Contents/MacOS/mac_steam": - when: - os: mac store: steam @@ -5775,12 +5787,12 @@ $1 Ride: id: 284870 9 Monkeys of Shaolin: files: - /9MonkeysOfShaolin/Saved/Config: + "/9MonkeysOfShaolin/Saved/Config": tags: - config when: - os: windows - /9MonkeysOfShaolin/Saved/SaveGames: + "/9MonkeysOfShaolin/Saved/SaveGames": tags: - save when: @@ -5788,11 +5800,11 @@ $1 Ride: installDir: 9 Monkeys of Shaolin: {} launch: - /9MonkeysOfShaolin/Binaries/Linux/ExampleGame-Linux-Shipping: + "/9MonkeysOfShaolin/Binaries/Linux/ExampleGame-Linux-Shipping": - when: - os: linux store: steam - /9MonkeysOfShaolin/Binaries/Win64/9MOS-Shipping.exe: + "/9MonkeysOfShaolin/Binaries/Win64/9MOS-Shipping.exe": - when: - os: windows store: steam @@ -5800,7 +5812,7 @@ $1 Ride: id: 739080 9 Years of Shadows: files: - /../LocalLow/Halberd Studios/9 Years of Shadows/SaveData: + "/../LocalLow/Halberd Studios/9 Years of Shadows/SaveData": tags: - save when: @@ -5810,30 +5822,30 @@ $1 Ride: installDir: 9 Years of Shadows: {} launch: - /9 Years of Shadows.exe: + "/9 Years of Shadows.exe": - when: - bit: 64 os: windows store: steam steam: id: 1402120 -'9-Bit Armies: A Bit Too Far': +"9-Bit Armies: A Bit Too Far": steam: id: 1439750 -'9-nine-:Episode 1': +"9-nine-:Episode 1": installDir: nine_kokoiro: {} launch: - /nine_kokoiro.exe: + "/nine_kokoiro.exe": - when: - store: steam steam: id: 976390 -'9-nine-:Episode 2': +"9-nine-:Episode 2": installDir: 9-nine-Episode 2: {} launch: - /nine_sorairo.exe: + "/nine_sorairo.exe": - when: - store: steam steam: @@ -5842,11 +5854,14 @@ $1 Ride: installDir: 903m: {} launch: - /Binaries/Win32/903m.exe: + "/Binaries/Win32/903m.exe": - when: - bit: 32 os: windows store: steam + - bit: 64 + os: windows + store: steam steam: id: 263100 90 Days to Defence: @@ -5856,38 +5871,38 @@ $1 Ride: installDir: 90 Minute Fever: {} launch: - /Mac/90 Minute Fever.app: - - arguments: 'webservice=https://live.90minutefever.com/90mf-api-server/restenc/ accountConnect=true' + "/Mac/90 Minute Fever.app": + - arguments: "webservice=https://live.90minutefever.com/90mf-api-server/restenc/ accountConnect=true" when: - os: mac store: steam - /Windows/x64/90 Minute Fever.exe: - - arguments: 'webservice=https://live.90minutefever.com/90mf-api-server/restenc/ accountConnect=true' + "/Windows/x64/90 Minute Fever.exe": + - arguments: "webservice=https://live.90minutefever.com/90mf-api-server/restenc/ accountConnect=true" when: - bit: 64 os: windows store: steam - /Windows/x86/90 Minute Fever.exe: - - arguments: 'webservice=https://live.90minutefever.com/90mf-api-server/restenc/ accountConnect=true' + "/Windows/x86/90 Minute Fever.exe": + - arguments: "webservice=https://live.90minutefever.com/90mf-api-server/restenc/ accountConnect=true" when: - bit: 32 os: windows store: steam steam: id: 468070 -'900': +"900": installDir: - '900': {} + "900": {} launch: - /900: + "/900": - when: - os: linux store: steam - /900.app: + "/900.app": - when: - os: mac store: steam - /900.exe: + "/900.exe": - when: - os: windows store: steam @@ -5895,17 +5910,17 @@ $1 Ride: id: 696860 911 Operator: files: - /.config/unity3d/JutsuGames/911 Operator: + "/.config/unity3d/JutsuGames/911 Operator": tags: - save when: - os: linux - /AppData/LocalLow/JutsuGames/911 Operator: + "/AppData/LocalLow/JutsuGames/911 Operator": tags: - save when: - os: windows - /Library/Application Support/unity.JutsuGames.911 Operator: + "/Library/Application Support/unity.JutsuGames.911 Operator": tags: - save when: @@ -5913,15 +5928,15 @@ $1 Ride: installDir: 911 Operator: {} launch: - /911 Operator Mac.app: + "/911 Operator Mac.app": - when: - os: mac store: steam - /911.exe: + "/911.exe": - when: - os: windows store: steam - /911OperatorLinux.x86: + "/911OperatorLinux.x86": - when: - os: linux store: steam @@ -5931,14 +5946,14 @@ $1 Ride: installDir: 96 Mill: {} launch: - /96 MILL.exe: + "/96 MILL.exe": - when: - store: steam steam: id: 561480 99 Levels to Hell: files: - /Library/Preferences/unity.Pipes And Mushrooms.99 levels to hell.plist: + "/Library/Preferences/unity.Pipes And Mushrooms.99 levels to hell.plist": tags: - config - save @@ -5949,15 +5964,15 @@ $1 Ride: installDir: 99 Levels To Hell: {} launch: - /99 Levels To Hell.app: + "/99 Levels To Hell.app": - when: - os: mac store: steam - /99 Levels To Hell.exe: + "/99 Levels To Hell.exe": - when: - os: windows store: steam - /99 Levels To Hell.x86: + "/99 Levels To Hell.x86": - when: - os: linux store: steam @@ -5970,12 +5985,12 @@ $1 Ride: id: 264280 99 Spirits: files: - /99 Spirits.cf: + "/99 Spirits.cf": tags: - config when: - os: windows - /savedata: + "/savedata": tags: - save when: @@ -5983,7 +5998,7 @@ $1 Ride: installDir: 99 Spirits: {} launch: - /99 Spirits.eXe: + "/99 Spirits.eXe": - when: - store: steam steam: @@ -5992,11 +6007,11 @@ $1 Ride: installDir: 99 Waves to Die: {} launch: - /99wavesToDie_windows.exe: + "/99wavesToDie_windows.exe": - when: - os: windows store: steam - /99waves_to_die.x86: + "/99waves_to_die.x86": - when: - os: linux store: steam @@ -6011,26 +6026,26 @@ $1 Ride: installDir: 996Truth: {} launch: - /Boss996.exe: + "/Boss996.exe": - when: - store: steam steam: id: 1086470 -'999': +"999": installDir: - '999': {} + "999": {} launch: - /999.exe: + "/999.exe": - when: - os: windows store: steam steam: id: 876840 -'99999': +"99999": installDir: Gunkid99: {} launch: - /Gunkid99.exe: + "/Gunkid99.exe": - when: - os: windows store: steam @@ -6038,7 +6053,7 @@ $1 Ride: id: 906600 99Vidas: files: - /AppData/LocalLow/QUByte Interactive/99Vidas - The Game: + "/AppData/LocalLow/QUByte Interactive/99Vidas - The Game": tags: - save when: @@ -6046,26 +6061,26 @@ $1 Ride: installDir: 99Vidas - The Game: {} launch: - /99VidasGame.app/Contents/MacOS/99VidasGame: + "/99VidasGame.app/Contents/MacOS/99VidasGame": - when: - os: mac store: steam - /99VidasGame.exe: + "/99VidasGame.exe": - when: - bit: 64 os: windows store: steam - /99VidasGame.x86: + "/99VidasGame.x86": - when: - bit: 32 os: linux store: steam - /99VidasGame.x86_64: + "/99VidasGame.x86_64": - when: - bit: 64 os: linux store: steam - /99VidasGame_x86.exe: + "/99VidasGame_x86.exe": - when: - bit: 32 os: windows @@ -6080,17 +6095,17 @@ $1 Ride: installDir: 9Dragons: {} launch: - /RFstl.exe: + "/RFstl.exe": - when: - os: windows store: steam steam: id: 390100 -'9Dragons : Kung Fu Arena': +"9Dragons : Kung Fu Arena": installDir: NineDragonsARENA: {} launch: - /NineDragonsArenaClient.exe: + "/NineDragonsArenaClient.exe": - when: - bit: 64 os: windows @@ -6102,11 +6117,11 @@ $1 Ride: NineGrids VR: {} steam: id: 486140 -'9th Company: Roots of Terror': +"9th Company: Roots of Terror": installDir: 9th Company: {} launch: - /9-Pota.exe: + "/9-Pota.exe": - when: - store: steam steam: @@ -6115,7 +6130,7 @@ $1 Ride: installDir: 9th Dawn Classic: {} launch: - /DawnLauncher.exe: + "/DawnLauncher.exe": - when: - os: windows store: steam @@ -6125,7 +6140,7 @@ $1 Ride: installDir: 9thDawnII: {} launch: - /ninthdawnii.exe: + "/ninthdawnii.exe": - when: - os: windows store: steam @@ -6137,17 +6152,17 @@ $1 Ride: installDir: 9th Dawn III: {} launch: - /9th Dawn III Launcher.exe: + "/9th Dawn III Launcher.exe": - when: - os: windows store: steam steam: id: 1154850 -A Bastard's Tale: +"A Bastard's Tale": installDir: - A Bastard's Tale: {} + "A Bastard's Tale": {} launch: - /a_bastards_tale.exe: + "/a_bastards_tale.exe": - when: - os: windows store: steam @@ -6157,11 +6172,11 @@ A Bewitching Revolution: installDir: A Bewitching Revolution: {} launch: - /A Bewitching Revolution.exe: + "/A Bewitching Revolution.exe": - when: - os: windows store: steam - /BewitchingRevolutionMac.app: + "/BewitchingRevolutionMac.app": - when: - os: mac store: steam @@ -6169,19 +6184,19 @@ A Bewitching Revolution: id: 968500 A Bird Story: files: - /Library/Application Support/freebirdgames/abirdstory: + "/Library/Application Support/freebirdgames/abirdstory": tags: - config - save when: - os: mac - /A Bird Story: + "/A Bird Story": tags: - config - save when: - os: windows - /freebirdgames/abirdstory: + "/freebirdgames/abirdstory": tags: - config - save @@ -6192,24 +6207,24 @@ A Bird Story: installDir: A Bird Story: {} launch: - /A Bird Story.app/Contents/MacOS/steamshim_parent: - - arguments: A\\ Bird\\ Story.app/Contents/MacOS/mkxp --enableReset=false + "/A Bird Story.app/Contents/MacOS/steamshim_parent": + - arguments: "A\\\\ Bird\\\\ Story.app/Contents/MacOS/mkxp --enableReset=false" when: - os: mac store: steam - /A Bird Story/A Bird Story.exe: + "/A Bird Story/A Bird Story.exe": - when: - os: windows store: steam - workingDir: /A Bird Story - /ABirdStory.amd64: - - arguments: '--enableReset=false' + workingDir: "/A Bird Story" + "/ABirdStory.amd64": + - arguments: "--enableReset=false" when: - bit: 64 os: linux store: steam - /ABirdStory.x86: - - arguments: '--enableReset=false' + "/ABirdStory.x86": + - arguments: "--enableReset=false" when: - bit: 32 os: linux @@ -6218,7 +6233,7 @@ A Bird Story: id: 327410 A Blind Legend: files: - /AppData/LocalLow/Dowino/A Blind Legend/data/PlayerPrefs.dat: + "/AppData/LocalLow/Dowino/A Blind Legend/data/PlayerPrefs.dat": tags: - config when: @@ -6226,11 +6241,11 @@ A Blind Legend: installDir: A Blind Legend: {} launch: - /A Blind Legend.app/Contents/MacOS/A Blind Legend: + "/A Blind Legend.app/Contents/MacOS/A Blind Legend": - when: - os: mac store: steam - /A Blind Legend.exe: + "/A Blind Legend.exe": - when: - os: windows store: steam @@ -6244,11 +6259,11 @@ A Bloody Night: installDir: A Bloody Night: {} launch: - /ABloodyNight.app/Contents/MacOS/Mac_Runner: + "/ABloodyNight.app/Contents/MacOS/Mac_Runner": - when: - os: mac store: steam - /ABloodyNight.exe: + "/ABloodyNight.exe": - when: - os: windows store: steam @@ -6258,15 +6273,15 @@ A Bloody Party: installDir: A Bloody Party: {} launch: - /A Bloody Party.app: + "/A Bloody Party.app": - when: - os: mac store: steam - /A Bloody Party.exe: + "/A Bloody Party.exe": - when: - os: windows store: steam - /A Bloody Party.sh: + "/A Bloody Party.sh": - when: - os: linux store: steam @@ -6276,7 +6291,7 @@ A Book of Beasts and Buddies: installDir: A Book of Beasts and Buddies: {} launch: - /Beast Buds.exe: + "/Beast Buds.exe": - when: - os: windows store: steam @@ -6286,7 +6301,7 @@ A Boy and His Beard: installDir: A Boy and His Beard: {} launch: - /A Boy and His Beard.exe: + "/A Boy and His Beard.exe": - when: - os: windows store: steam @@ -6294,32 +6309,32 @@ A Boy and His Beard: id: 708100 A Boy and His Blob: files: - /Library/Application Support/ABAHB: + "/Library/Application Support/ABAHB": tags: - config when: - os: mac - /Library/Application Support/ABAHB/savedata.vfs: + "/Library/Application Support/ABAHB/savedata.vfs": tags: - save when: - os: mac - /My Games/ABAHB: + "/My Games/ABAHB": tags: - config when: - os: windows - /My Games/ABAHB/savedata.vfs: + "/My Games/ABAHB/savedata.vfs": tags: - save when: - os: windows - /ABAHB: + "/ABAHB": tags: - config when: - os: linux - /ABAHB/savedata.vfs: + "/ABAHB/savedata.vfs": tags: - save when: @@ -6329,41 +6344,41 @@ A Boy and His Blob: installDir: A Boy and His Blob: {} launch: - /A Boy and His Blob.app: + "/A Boy and His Blob.app": - when: - os: mac store: steam - /Blob: + "/Blob": - when: - bit: 64 os: linux store: steam - /Blob.exe: + "/Blob.exe": - when: - os: windows store: steam - /Blob32: + "/Blob32": - when: - bit: 32 os: linux store: steam steam: id: 281200 -A Bug's Life: +"A Bug's Life": files: - /save: + "/save": tags: - save when: - os: windows A Building Full of Cats: files: - /progress.cfg: + "/progress.cfg": tags: - save when: - os: windows - /settings.cfg: + "/settings.cfg": tags: - config when: @@ -6373,11 +6388,11 @@ A Building Full of Cats: installDir: A Building Full of Cats: {} launch: - /Building.exe: + "/Building.exe": - when: - os: windows store: steam - /Building.x86_64: + "/Building.x86_64": - when: - os: linux store: steam @@ -6387,7 +6402,7 @@ A Business Power: installDir: A Business Power: {} launch: - /A Business Power.exe: + "/A Business Power.exe": - when: - os: windows store: steam @@ -6397,7 +6412,7 @@ A Butterfly in the District of Dreams: installDir: A Butterfly in the District of Dreams: {} launch: - /Darekoi.exe: + "/Darekoi.exe": - when: - os: windows store: steam @@ -6407,7 +6422,7 @@ A Buttload of Free Games: installDir: A Buttload of Free Games: {} launch: - /SebastianScainiLauncher.exe: + "/SebastianScainiLauncher.exe": - when: - os: windows store: steam @@ -6415,7 +6430,7 @@ A Buttload of Free Games: id: 1275070 A Case of Distrust: files: - /AppData/LocalLow/Ben Wander/A Case of Distrust: + "/AppData/LocalLow/Ben Wander/A Case of Distrust": tags: - save when: @@ -6423,11 +6438,11 @@ A Case of Distrust: installDir: A Case of Distrust: {} launch: - /ACaseOfDistrustMac.app: + "/ACaseOfDistrustMac.app": - when: - os: mac store: steam - /ACaseOfDistrustPC.exe: + "/ACaseOfDistrustPC.exe": - when: - os: windows store: steam @@ -6439,12 +6454,12 @@ A Case of Distrust: id: 717610 A Castle Full of Cats: files: - /progress.cfg: + "/progress.cfg": tags: - save when: - os: windows - /settings.cfg: + "/settings.cfg": tags: - config when: @@ -6454,20 +6469,20 @@ A Castle Full of Cats: installDir: A Castle Full of Cats: {} launch: - /Castle.exe: + "/Castle.exe": - when: - os: windows store: steam - /Castle.x86_64: + "/Castle.x86_64": - when: - os: linux store: steam steam: id: 2070550 -A Cat's Manor: +"A Cat's Manor": steam: id: 667430 -'A Chair in a Room: Greenwater': +"A Chair in a Room: Greenwater": installDir: AChairinaRoom: {} steam: @@ -6476,7 +6491,7 @@ A Cheesy Game: installDir: A Cheesy Game: {} launch: - /A Cheesy Game.exe: + "/A Cheesy Game.exe": - when: - os: windows store: steam @@ -6486,11 +6501,11 @@ A Christmas Peril: installDir: A Christmas Peril: {} launch: - /SnowJam.app/Contents/MacOS/SnowJam: + "/SnowJam.app/Contents/MacOS/SnowJam": - when: - os: mac store: steam - /SnowJam.exe: + "/SnowJam.exe": - when: - os: windows store: steam @@ -6500,47 +6515,47 @@ A City Sleeps: installDir: A City Sleeps: {} launch: - /ACitySleeps.app: + "/ACitySleeps.app": - when: - os: mac store: steam - /ACitySleeps.exe: + "/ACitySleeps.exe": - when: - os: windows store: steam steam: id: 316180 -'A Clockwork Ley-Line: Daybreak of Remnants Shadow': +"A Clockwork Ley-Line: Daybreak of Remnants Shadow": installDir: A Clockwork Ley-Line Daybreak of Remnants Shadow: {} launch: - /LeyLine 2.exe: + "/LeyLine 2.exe": - when: - store: steam steam: id: 1815970 -'A Clockwork Ley-Line: Flowers Falling in the Morning Mist': +"A Clockwork Ley-Line: Flowers Falling in the Morning Mist": installDir: A Clockwork Ley-Line Flowers Falling in the Morning Mist: {} launch: - /LeyLine 3.exe: + "/LeyLine 3.exe": - when: - store: steam steam: id: 2138010 -'A Clockwork Ley-Line: The Borderline of Dusk': +"A Clockwork Ley-Line: The Borderline of Dusk": files: - /UNiSONSHiFT/A Clockwork Ley-Line - The Borderline of Dusk/save/config.dat: + "/UNiSONSHiFT/A Clockwork Ley-Line - The Borderline of Dusk/save/config.dat": tags: - config when: - os: windows - /UNiSONSHiFT/A Clockwork Ley-Line - The Borderline of Dusk/save/save*.dat: + "/UNiSONSHiFT/A Clockwork Ley-Line - The Borderline of Dusk/save/save*.dat": tags: - save when: - os: windows - /UNiSONSHiFT/A Clockwork Ley-Line - The Borderline of Dusk/save/system.dat: + "/UNiSONSHiFT/A Clockwork Ley-Line - The Borderline of Dusk/save/system.dat": tags: - config - save @@ -6549,7 +6564,7 @@ A City Sleeps: installDir: A Clockwork Ley-Line The Borderline of Dusk: {} launch: - /leylinelauncher.exe: + "/leylinelauncher.exe": - when: - os: windows store: steam @@ -6559,7 +6574,7 @@ A Collection of Bad Moments: installDir: ACOBM: {} launch: - /ACOBM/ACOBM.exe: + "/ACOBM/ACOBM.exe": - when: - os: windows store: steam @@ -6569,7 +6584,7 @@ A Compendium of Ghosts: installDir: A Compendium of Ghosts: {} launch: - /A Compendium of Ghosts.exe: + "/A Compendium of Ghosts.exe": - when: - os: windows store: steam @@ -6577,12 +6592,12 @@ A Compendium of Ghosts: id: 853250 A Dance of Fire and Ice: files: - /User/data.sav: + "/User/data.sav": tags: - save when: - os: windows - /User/data.sav.old: + "/User/data.sav.old": tags: - save when: @@ -6590,21 +6605,21 @@ A Dance of Fire and Ice: installDir: A Dance of Fire and Ice: {} launch: - /A Dance of Fire and Ice.exe: + "/A Dance of Fire and Ice.exe": - when: - os: windows store: steam - /ADanceOfFireAndIce.app: + "/ADanceOfFireAndIce.app": - when: - os: mac store: steam steam: id: 977950 -'A Dark World: The Glowing City': +"A Dark World: The Glowing City": installDir: A Dark World The Glowing City: {} launch: - /A Dark World/GlowingCity.exe: + "/A Dark World/GlowingCity.exe": - when: - os: windows store: steam @@ -6612,12 +6627,12 @@ A Dance of Fire and Ice: id: 1182690 A Date in the Park: files: - /Saved Games/A Date in the Park/acsetup.cfg: + "/Saved Games/A Date in the Park/acsetup.cfg": tags: - config when: - os: windows - /Saved Games/A Date in the Park/agssave.*: + "/Saved Games/A Date in the Park/agssave.*": tags: - save when: @@ -6625,7 +6640,7 @@ A Date in the Park: installDir: A Date in the Park: {} launch: - /A Date in the Park.exe: + "/A Date in the Park.exe": - when: - store: steam steam: @@ -6634,7 +6649,7 @@ A Day for a Kitten: installDir: A Day For A Kitten: {} launch: - /A Day For A Kitten.exe: + "/A Day For A Kitten.exe": - when: - os: windows store: steam @@ -6644,70 +6659,70 @@ A Day in the Woods: installDir: A Day in the Woods: {} launch: - /ADITW.app: + "/ADITW.app": - when: - bit: 64 os: mac store: steam - /ADITW.exe: + "/ADITW.exe": - when: - bit: 64 os: windows store: steam - /ADITW.x86: + "/ADITW.x86": - when: - bit: 32 os: linux store: steam - /ADITW.x86_64: + "/ADITW.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 526890 -A Dead World's Dream: +"A Dead World's Dream": installDir: adeadworldsdream: {} launch: - /DeadWorldDream.exe: + "/DeadWorldDream.exe": - when: - os: windows store: steam steam: id: 517680 -'A Deadly Maze: Phase 1': +"A Deadly Maze: Phase 1": installDir: Deadly Maze Phase 1: {} launch: - /DMF1.app: + "/DMF1.app": - when: - os: mac store: steam - /DMF1.exe: + "/DMF1.exe": - when: - os: windows store: steam steam: id: 1127250 -A Demon's Game - Episode 1: +"A Demon's Game - Episode 1": installDir: - A Demon's Game - Episode 1: {} + "A Demon's Game - Episode 1": {} launch: - /ADG.exe: + "/ADG.exe": - when: - store: steam - /ADG.sh: + "/ADG.sh": - when: - os: linux store: steam steam: id: 569430 -A Detective's Novel: +"A Detective's Novel": installDir: - A Detective's Novel: {} + "A Detective's Novel": {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -6717,11 +6732,11 @@ A Divided Light: installDir: A Divided Light: {} launch: - /A Divided Light.app/Contents/MacOS/A Divided Light: + "/A Divided Light.app/Contents/MacOS/A Divided Light": - when: - os: mac store: steam - /A Divided Light.exe: + "/A Divided Light.exe": - when: - os: windows store: steam @@ -6732,16 +6747,16 @@ A Dragon Girl Looks Up at the Endless Sky: A dragon girl looks up at the endless sky: {} steam: id: 456760 -A Dragon's Tale VR: +"A Dragon's Tale VR": installDir: - A Dragon's Tale VR: {} + "A Dragon's Tale VR": {} steam: id: 1163950 A Dream for Aaron: installDir: A Dream For Aaron: {} launch: - /A Dream For Aaron.exe: + "/A Dream For Aaron.exe": - when: - os: windows store: steam @@ -6751,19 +6766,21 @@ A Dream of Burning Sand: installDir: A Dream of Burning Sand: {} launch: - /A Dream of Burning Sand.exe: + "/A Dream of Burning Sand.exe": - when: - os: windows store: steam - /a-dream-of-burning-sand: + "/a-dream-of-burning-sand": - when: + - os: mac + store: steam - os: linux store: steam steam: id: 789840 -A Druid's Duel: +"A Druid's Duel": files: - /.config/unity3d/Thoughtshelter Games/A Druid's Duel: + "/.config/unity3d/Thoughtshelter Games/A Druid's Duel": tags: - config when: @@ -6771,34 +6788,34 @@ A Druid's Duel: installDir: a_druids_duel: {} launch: - /ADruidsDuel.app: + "/ADruidsDuel.app": - when: - os: mac store: steam - /ADruidsDuel.exe: + "/ADruidsDuel.exe": - when: - os: windows store: steam - /ADruidsDuel_Linux.x86: + "/ADruidsDuel_Linux.x86": - when: - os: linux store: steam - /ADruidsDuel_Linux.x86_64: + "/ADruidsDuel_Linux.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 333970 -'A Duel Hand Disaster: Trackher': +"A Duel Hand Disaster: Trackher": installDir: ADHD_Trackher: {} launch: - /ADHD_Trackher.app: + "/ADHD_Trackher.app": - when: - os: mac store: steam - /ADHD_Trackher.exe: + "/ADHD_Trackher.exe": - when: - os: windows store: steam @@ -6808,17 +6825,17 @@ A Dump in the Dark: installDir: A Dump in the Dark: {} launch: - /A Dump in the Dark.exe: + "/A Dump in the Dark.exe": - when: - os: windows store: steam steam: id: 577080 -'A Familiar Fairytale: Dyslexic Text Based Adventure': +"A Familiar Fairytale: Dyslexic Text Based Adventure": installDir: A Familiar Fairytale Dyslexic Text Based Adventure: {} launch: - /AFamiliarFairytale.exe: + "/AFamiliarFairytale.exe": - when: - os: windows store: steam @@ -6828,7 +6845,7 @@ A Family of Grave Diggers: installDir: a Family of Grave Diggers: {} launch: - /GraveDiggers.exe: + "/GraveDiggers.exe": - when: - os: windows store: steam @@ -6836,7 +6853,7 @@ A Family of Grave Diggers: id: 383020 A Farewell to Dragons: files: - /profiles: + "/profiles": tags: - save when: @@ -6844,25 +6861,25 @@ A Farewell to Dragons: installDir: A Farewell to Dragons: {} launch: - /thegame.exe: + "/thegame.exe": - when: - store: steam steam: id: 3160 -'A Fear of Heights, and Other Things': +"A Fear of Heights, and Other Things": installDir: - 'Fear Of Heights, And Other Things': {} + "Fear Of Heights, And Other Things": {} steam: id: 535460 -'A Feeble Saga: Chapter I': +"A Feeble Saga: Chapter I": installDir: A Feeble Saga: {} launch: - /A Feeble Saga.app/Contents/MacOS/A Feeble Saga: + "/A Feeble Saga.app/Contents/MacOS/A Feeble Saga": - when: - os: mac store: steam - /A Feeble Saga.exe: + "/A Feeble Saga.exe": - when: - os: windows store: steam @@ -6872,35 +6889,35 @@ A Fine Mess: installDir: A Fine Mess: {} launch: - /AFineMess.app: + "/AFineMess.app": - when: - os: mac store: steam - /AFineMess.exe: + "/AFineMess.exe": - when: - os: windows store: steam steam: id: 793220 -A Fisherman's Tale: +"A Fisherman's Tale": files: - /Fisherman/Saved/SaveGames: + "/Fisherman/Saved/SaveGames": tags: - save when: - os: windows installDir: - A Fisherman's Tale: {} + "A Fisherman's Tale": {} steam: id: 559330 A Fistful of Gun: files: - /*.ini: + "/*.ini": tags: - config when: - os: windows - /storycharacter.ini: + "/storycharacter.ini": tags: - save when: @@ -6910,7 +6927,7 @@ A Fistful of Gun: installDir: Fistful of Gun: {} launch: - /FistfulofGun.exe: + "/FistfulofGun.exe": - when: - os: windows store: steam @@ -6920,15 +6937,15 @@ A Flappy Bird in Real Life: installDir: A Flappy Bird in the Real Life: {} launch: - /Flappy Mac.app: + "/Flappy Mac.app": - when: - os: mac store: steam - /Flappy Windows.exe: + "/Flappy Windows.exe": - when: - os: windows store: steam - /FlappyLinux.x86_64: + "/FlappyLinux.x86_64": - when: - bit: 64 os: linux @@ -6939,7 +6956,7 @@ A Fold Apart: installDir: A Fold Apart: {} launch: - /A Fold Apart.exe: + "/A Fold Apart.exe": - when: - os: windows store: steam @@ -6947,17 +6964,17 @@ A Fold Apart: id: 451310 A Foretold Affair: files: - /game/saves/*.save: + "/game/saves/*.save": tags: - save when: - os: windows - /renpy/config.py: + "/renpy/config.py": tags: - config when: - os: windows - /renpy/A Foretold Affair-1463652208/*.save: + "/renpy/A Foretold Affair-1463652208/*.save": tags: - save when: @@ -6965,29 +6982,29 @@ A Foretold Affair: installDir: A Foretold Affair: {} launch: - /A_Foretold_Affair.app: + "/A_Foretold_Affair.app": - when: - os: mac store: steam - /A_Foretold_Affair.exe: + "/A_Foretold_Affair.exe": - when: - os: windows store: steam steam: id: 586670 -'A Front Too Far: Normandy': +"A Front Too Far: Normandy": installDir: AFTF_Normandy: {} launch: - /AFTF1_Mac.app/Contents/MacOS/AFTF1_Mac: + "/AFTF1_Mac.app/Contents/MacOS/AFTF1_Mac": - when: - os: mac store: steam - /AFrontTooFar.exe: + "/AFrontTooFar.exe": - when: - os: windows store: steam - /AFrontTooFar.x86: + "/AFrontTooFar.x86": - when: - os: linux store: steam @@ -6997,25 +7014,25 @@ A Game About: installDir: A Game About: {} launch: - /AGameAbout.app: + "/AGameAbout.app": - when: - os: mac store: steam - /AGameAbout.exe: + "/AGameAbout.exe": - when: - os: windows store: steam steam: id: 927990 -'A Game For You, Josh': +"A Game For You, Josh": installDir: A Game For You Josh: {} launch: - /GameForYouJosh.app: + "/GameForYouJosh.app": - when: - os: mac store: steam - /GameForYouJosh.exe: + "/GameForYouJosh.exe": - when: - os: windows store: steam @@ -7025,15 +7042,15 @@ A Game of Changes: installDir: A Game of Changes: {} launch: - /agoc: + "/agoc": - when: - os: linux store: steam - /agoc.app/Contents/MacOS/agoc: + "/agoc.app/Contents/MacOS/agoc": - when: - os: mac store: steam - /agoc.exe: + "/agoc.exe": - when: - os: windows store: steam @@ -7041,7 +7058,7 @@ A Game of Changes: id: 467090 A Game of Dwarves: files: - /Zeal Game Studio/A Game of Dwarves: + "/Zeal Game Studio/A Game of Dwarves": tags: - config when: @@ -7049,8 +7066,8 @@ A Game of Dwarves: installDir: A Game of Dwarves: {} launch: - /A Game of Dwarves.exe: - - arguments: '-bundle-dir .' + "/A Game of Dwarves.exe": + - arguments: "-bundle-dir ." when: - os: windows store: steam @@ -7060,22 +7077,22 @@ A Game of Thrones - Genesis: installDir: A Game Of Thrones: {} launch: - /Agot.exe: + "/Agot.exe": - when: - store: steam steam: id: 58550 -'A Game of Thrones: The Board Game - Digital Edition': +"A Game of Thrones: The Board Game - Digital Edition": gog: id: 1570109294 installDir: A Game of Thrones The Board Game: {} launch: - /AGameOfThronesTheBoardGame.app: + "/AGameOfThronesTheBoardGame.app": - when: - os: mac store: steam - /AGameOfThronesTheBoardGame.exe: + "/AGameOfThronesTheBoardGame.exe": - when: - bit: 64 os: windows @@ -7086,16 +7103,16 @@ A Gay Love Story About Gay Love: installDir: A Gay Love Story About Gay Love: {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: id: 1384700 -A Gay's Life: +"A Gay's Life": installDir: - A Gay's Life: {} + "A Gay's Life": {} launch: - /A Gay's Life.exe: + "/A Gay's Life.exe": - when: - store: steam steam: @@ -7104,11 +7121,11 @@ A Gentlemanly Adventure: installDir: A Gentlemanly Adventure: {} launch: - /console.exe: + "/console.exe": - when: - os: windows store: steam - /launcher.sh: + "/launcher.sh": - when: - os: linux store: steam @@ -7118,7 +7135,7 @@ A Ghostly Tale: installDir: A Ghostly Tale: {} launch: - /windows_content/AGhostlyTale.exe: + "/windows_content/AGhostlyTale.exe": - when: - os: windows store: steam @@ -7133,33 +7150,33 @@ A Girls Fabric Face: installDir: A Girls Fabric Face: {} launch: - /AGFFLauncher.exe: + "/AGFFLauncher.exe": - when: - os: windows store: steam steam: id: 603810 -A Glider's Journey: +"A Glider's Journey": files: - /FlyingProject/Saved/Config/WindowsNoEditor: + "/FlyingProject/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /FlyingProject/Saved/SaveGames: + "/FlyingProject/Saved/SaveGames": tags: - save when: - os: windows - /FlyingProject/Saved/SaveGames/GlobalSettingsSaveSlot.sav: + "/FlyingProject/Saved/SaveGames/GlobalSettingsSaveSlot.sav": tags: - config when: - os: windows installDir: - A Glider's Journey: {} + "A Glider's Journey": {} launch: - /FlyingProject.exe: + "/FlyingProject.exe": - when: - bit: 64 os: windows @@ -7168,32 +7185,32 @@ A Glider's Journey: id: 1102500 A God-Like Backhand!: installDir: - '579160': {} + "579160": {} steam: id: 579160 A Golden Wake: files: - /acsetup.cfg: + "/acsetup.cfg": tags: - config when: - os: linux - /.local/share/A Golden Wake: + "/.local/share/A Golden Wake": tags: - save when: - os: linux - /Library Application Support/A Golden Wake: + "/Library Application Support/A Golden Wake": tags: - save when: - os: mac - /Saved Games/A Golden Wake: + "/Saved Games/A Golden Wake": tags: - save when: - os: windows - /Saved Games/A Golden Wake/acsetup.cfg: + "/Saved Games/A Golden Wake/acsetup.cfg": tags: - config when: @@ -7203,11 +7220,11 @@ A Golden Wake: installDir: A Golden Wake: {} launch: - /A Golden Wake.app/Contents/MacOS/A Golden Wake: + "/A Golden Wake.app/Contents/MacOS/A Golden Wake": - when: - os: mac store: steam - /a-golden-wake.exe: + "/a-golden-wake.exe": - when: - os: windows store: steam @@ -7218,22 +7235,22 @@ A Goo Adventure: id: 655470 A Good Snowman Is Hard to Build: files: - /.local/share/a-good-snowman/config.json: + "/.local/share/a-good-snowman/config.json": tags: - config when: - os: linux - /.local/share/a-good-snowman/progress.json: + "/.local/share/a-good-snowman/progress.json": tags: - save when: - os: linux - /A Good Snowman Is Hard To Build/config.json: + "/A Good Snowman Is Hard To Build/config.json": tags: - config when: - os: windows - /A Good Snowman Is Hard To Build/progress.json: + "/A Good Snowman Is Hard To Build/progress.json": tags: - save when: @@ -7241,15 +7258,15 @@ A Good Snowman Is Hard to Build: installDir: A Good Snowman Is Hard To Build: {} launch: - /Snowman.app: + "/Snowman.app": - when: - os: mac store: steam - /Snowman.exe: + "/Snowman.exe": - when: - os: windows store: steam - /a-good-snowman.sh: + "/a-good-snowman.sh": - when: - os: linux store: steam @@ -7259,7 +7276,7 @@ A Grande Bagunça Espacial - The Big Space Mess: installDir: BaguncaWin: {} launch: - /BaguncaEspacial.exe: + "/BaguncaEspacial.exe": - when: - os: windows store: steam @@ -7268,21 +7285,21 @@ A Grande Bagunça Espacial - The Big Space Mess: A Grim Tale of Vices: steam: id: 987140 -A Gummy's Life: +"A Gummy's Life": installDir: - A Gummy's Life: {} + "A Gummy's Life": {} launch: - /AGummysLife.app: - - arguments: '-force-opengl' + "/AGummysLife.app": + - arguments: "-force-opengl" when: - os: mac store: steam - /AGummysLife.exe: + "/AGummysLife.exe": - when: - bit: 64 os: windows store: steam - /AGummysLife.x64: + "/AGummysLife.x64": - when: - bit: 64 os: linux @@ -7299,22 +7316,22 @@ A Handful of Keflings: id: 643950 A Hat in Time: files: - /HatinTimeGame/Config: + "/HatinTimeGame/Config": tags: - config when: - os: windows - /HatinTimeGame/SaveData: + "/HatinTimeGame/SaveData": tags: - save when: - os: windows - /Library/Application Support/com.GearsforBreakfast.HatinTimeGame/HatinTimeGame/Config: + "/Library/Application Support/com.GearsforBreakfast.HatinTimeGame/HatinTimeGame/Config": tags: - config when: - os: mac - /Library/Application Support/com.GearsforBreakfast.HatinTimeGame/HatinTimeGame/SaveData: + "/Library/Application Support/com.GearsforBreakfast.HatinTimeGame/HatinTimeGame/SaveData": tags: - save when: @@ -7323,38 +7340,38 @@ A Hat in Time: id: 1686426343 id: gogExtra: - - 2041626152 - - 1345088935 - 1122739696 + - 1345088935 + - 2041626152 steamExtra: - - 940220 - - 787340 - 356831 - 693170 + - 787340 + - 940220 installDir: HatinTime: {} launch: - /Binaries/Win64/HatinTimeGame.exe: + "/Binaries/Win64/HatinTimeGame.exe": - when: - os: windows store: steam - workingDir: /Binaries/Win64 - /HatinTimeGame.app: + workingDir: "/Binaries/Win64" + "/HatinTimeGame.app": - when: - os: mac store: steam - /hatintime.run: + "/hatintime.run": - when: - bit: 64 os: linux store: steam steam: id: 253230 -'A Haunting: Witching Hour': +"A Haunting: Witching Hour": installDir: A Haunting Witching Hour: {} launch: - /A Haunting Witching Hour.exe: + "/A Haunting Witching Hour.exe": - when: - bit: 64 os: windows @@ -7365,7 +7382,7 @@ A Healer Only Lives Twice: installDir: A Healer Only Lives Twice: {} launch: - /AHealerOnlyLivesTwice.exe: + "/AHealerOnlyLivesTwice.exe": - when: - os: windows store: steam @@ -7375,21 +7392,21 @@ A Hole New World: installDir: A Hole New World: {} launch: - /AHNW.app: + "/AHNW.app": - when: - os: mac store: steam - /AHNW.x86: + "/AHNW.x86": - when: - bit: 32 os: linux store: steam - /AHNW.x86_64: + "/AHNW.x86_64": - when: - bit: 64 os: linux store: steam - /ahnw.exe: + "/ahnw.exe": - when: - os: windows store: steam @@ -7399,7 +7416,7 @@ A Horde Too Many: installDir: HordeCore: {} launch: - /HordeCore! Launcher.exe: + "/HordeCore! Launcher.exe": - when: - os: windows store: steam @@ -7407,12 +7424,12 @@ A Horde Too Many: id: 980210 A House of Many Doors: files: - /A_House_of_Many_Doors/Game Data.ini: + "/A_House_of_Many_Doors/Game Data.ini": tags: - config when: - os: windows - /A_House_of_Many_Doors/SaveFile*.homd: + "/A_House_of_Many_Doors/SaveFile*.homd": tags: - save when: @@ -7420,24 +7437,24 @@ A House of Many Doors: installDir: A House of Many Doors: {} launch: - /A House of Many Doors.app: + "/A House of Many Doors.app": - when: - os: mac store: steam - /A House of Many Doors.exe: + "/A House of Many Doors.exe": - when: - os: windows store: steam steam: id: 437250 -A Juggler's Tale: +"A Juggler's Tale": files: - /ajugglerstale/Saved/Config: + "/ajugglerstale/Saved/Config": tags: - config when: - os: windows - /ajugglerstale/Saved/SaveGames: + "/ajugglerstale/Saved/SaveGames": tags: - save when: @@ -7447,17 +7464,17 @@ A Juggler's Tale: installDir: AJugglersTale: {} launch: - /ajugglerstale.exe: + "/ajugglerstale.exe": - when: - os: windows store: steam steam: id: 1252830 -A Killer's Sorrow: +"A Killer's Sorrow": installDir: - A Killer's Sorrow: {} + "A Killer's Sorrow": {} launch: - /A Killer's Sorrow.exe: + "/A Killer's Sorrow.exe": - when: - os: windows store: steam @@ -7476,17 +7493,17 @@ A Kiss for the Petals - Maidens of Michael: id: 766540 A Kiss for the Petals - Remembering How We Met: files: - /game/saves/*.save: + "/game/saves/*.save": tags: - save when: - os: windows - /renpy/config.py: + "/renpy/config.py": tags: - config when: - os: windows - /renpy/A Kiss For The Petals - Remembering How We Met/*.save: + "/renpy/A Kiss For The Petals - Remembering How We Met/*.save": tags: - save when: @@ -7496,28 +7513,28 @@ A Kiss for the Petals - Remembering How We Met: installDir: A Kiss for the Petals - Remembering How We Met: {} launch: - /RememberingHowWeMet.app: + "/RememberingHowWeMet.app": - when: - os: mac store: steam - /RememberingHowWeMet.exe: + "/RememberingHowWeMet.exe": - when: - os: windows store: steam - /RememberingHowWeMet.sh: + "/RememberingHowWeMet.sh": - when: - os: linux store: steam steam: id: 397270 -A Knight's Quest: +"A Knight's Quest": files: - /AKnightsQuest/Saved/Config: + "/AKnightsQuest/Saved/Config": tags: - config when: - os: windows - /AKnightsQuest/Saved/SaveGames: + "/AKnightsQuest/Saved/SaveGames": tags: - save when: @@ -7526,11 +7543,14 @@ A Land Fit for Heroes: installDir: A Land Fit For Heroes: {} launch: - /app.exe: + "/app.exe": - when: - bit: 32 os: windows store: steam + - bit: 64 + os: windows + store: steam steam: id: 456210 A Large Quantity of Mushrooms: @@ -7542,7 +7562,7 @@ A Lazy Magic Teacher: installDir: A Lazy Magic Teacher: {} launch: - /A_Lazy_Magic_Teacher.exe: + "/A_Lazy_Magic_Teacher.exe": - when: - os: windows store: steam @@ -7556,13 +7576,13 @@ A Legend of Luca: A Legend of Luca: {} steam: id: 433600 -A Legionary's Life: +"A Legionary's Life": gog: id: 1901298062 installDir: - A Legionary's Life: {} + "A Legionary's Life": {} launch: - /legionary.exe: + "/legionary.exe": - when: - os: windows store: steam @@ -7570,22 +7590,22 @@ A Legionary's Life: id: 1058430 A Light in the Dark: files: - /AppData/LocalLow/Storia_CreSpirit/A Light in the Dark/collections.dat: + "/AppData/LocalLow/Storia_CreSpirit/A Light in the Dark/collections.dat": tags: - save when: - os: windows - /AppData/LocalLow/Storia_CreSpirit/A Light in the Dark/config.dat: + "/AppData/LocalLow/Storia_CreSpirit/A Light in the Dark/config.dat": tags: - config when: - os: windows - /AppData/LocalLow/Storia_CreSpirit/A Light in the Dark/dialogues.dat: + "/AppData/LocalLow/Storia_CreSpirit/A Light in the Dark/dialogues.dat": tags: - save when: - os: windows - /AppData/LocalLow/Storia_CreSpirit/A Light in the Dark/savedata.dat: + "/AppData/LocalLow/Storia_CreSpirit/A Light in the Dark/savedata.dat": tags: - save when: @@ -7595,11 +7615,11 @@ A Light in the Dark: installDir: A Light in the Dark: {} launch: - /A Light in the Dark.app/Contents/MacOS/A Light in the Dark: + "/A Light in the Dark.app/Contents/MacOS/A Light in the Dark": - when: - os: mac store: steam - /A Light in the Dark.exe: + "/A Light in the Dark.exe": - when: - os: windows store: steam @@ -7611,14 +7631,14 @@ A Little Golf Journey: installDir: A Little Golf Journey: {} launch: - /A Little Golf Journey.exe: + "/A Little Golf Journey.exe": - when: - store: steam steam: id: 1232150 A Little Lily Princess: files: - /.renpy/ALittleLilyPrincess: + "/.renpy/ALittleLilyPrincess": tags: - save when: @@ -7626,15 +7646,15 @@ A Little Lily Princess: installDir: A Little Lily Princess: {} launch: - /ALittleLilyPrincess.app: + "/ALittleLilyPrincess.app": - when: - os: mac store: steam - /ALittleLilyPrincess.exe: + "/ALittleLilyPrincess.exe": - when: - os: windows store: steam - /ALittleLilyPrincess.sh: + "/ALittleLilyPrincess.sh": - when: - os: linux store: steam @@ -7645,7 +7665,7 @@ A Little Rabbit Story: id: 789000 A Long Journey to an Uncertain End: files: - /userdata//1164830/remote: + "/userdata//1164830/remote": tags: - save when: @@ -7659,7 +7679,7 @@ A Long Journey to an Uncertain End: installDir: Long Journey: {} launch: - /LongJourney.exe: + "/LongJourney.exe": - when: - os: windows store: steam @@ -7676,7 +7696,7 @@ A Long Road Home: installDir: A Long Road Home: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -7686,7 +7706,7 @@ A Long Stroll: installDir: A Long Stroll: {} launch: - /A_Long_Stroll.exe: + "/A_Long_Stroll.exe": - when: - os: windows store: steam @@ -7696,15 +7716,15 @@ A Long Way Down: installDir: A Long Way Down: {} launch: - /ALWD.app/Contents/MacOS/ALWD: + "/ALWD.app/Contents/MacOS/ALWD": - when: - os: mac store: steam - /ALWD.exe: + "/ALWD.exe": - when: - os: windows store: steam - /ALWD.x86_64: + "/ALWD.x86_64": - when: - os: linux store: steam @@ -7714,18 +7734,24 @@ A Long Way Home: installDir: A Long Way Home: {} launch: - /alongwayhome: + "/alongwayhome": - when: - bit: 32 os: linux store: steam - /alongwayhome.app/Contents/MacOS/nwjs: + - bit: 64 + os: linux + store: steam + "/alongwayhome.app/Contents/MacOS/nwjs": - when: - bit: 64 os: mac store: steam - /alongwayhome.exe: + "/alongwayhome.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam @@ -7746,12 +7772,12 @@ A Lullaby of Colors VR: id: 992960 A Magical High School Girl: files: - /config.dat: + "/config.dat": tags: - config when: - os: windows - /score*.dat: + "/score*.dat": tags: - save when: @@ -7759,7 +7785,7 @@ A Magical High School Girl: installDir: A Magical High School Girl: {} launch: - /majo.exe: + "/majo.exe": - when: - store: steam registry: @@ -7768,7 +7794,7 @@ A Magical High School Girl: - config steam: id: 555630 -'A Mars Adventure: Redturtle': +"A Mars Adventure: Redturtle": installDir: A Mars Journey Redturtle: {} steam: @@ -7777,15 +7803,15 @@ A Mass of Dead: installDir: A Mass Of Dead: {} launch: - /A Mass of Dead.app: + "/A Mass of Dead.app": - when: - os: mac store: steam - /A Mass of Dead.exe: + "/A Mass of Dead.exe": - when: - os: windows store: steam - /A Mass of Dead.x86: + "/A Mass of Dead.x86": - when: - os: linux store: steam @@ -7795,11 +7821,11 @@ A Matter of Murder: installDir: A Matter of Murder: {} launch: - /A Matter of Murder.app: + "/A Matter of Murder.app": - when: - os: mac store: steam - /A Matter of Murder.exe: + "/A Matter of Murder.exe": - when: - os: windows store: steam @@ -7809,7 +7835,7 @@ A Mazeing Tower Defense: installDir: A Mazeing Tower Defense: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -7819,11 +7845,11 @@ A Meadow Piece: installDir: AmeadowPiece: {} launch: - /ameadowpiece.app: + "/ameadowpiece.app": - when: - os: mac store: steam - /ameadowpiece.exe: + "/ameadowpiece.exe": - when: - os: windows store: steam @@ -7831,7 +7857,7 @@ A Meadow Piece: id: 964100 A Memoir Blue: files: - /AppData/LocalLow/Cloisters Interactive/A_Memoir_Blue/saves: + "/AppData/LocalLow/Cloisters Interactive/A_Memoir_Blue/saves": tags: - save when: @@ -7839,26 +7865,26 @@ A Memoir Blue: installDir: A Memoir Blue: {} launch: - /A_Memoir_Blue.exe: + "/A_Memoir_Blue.exe": - when: - bit: 64 os: windows store: steam steam: id: 1497450 -A Midsummer Night's Choice: +"A Midsummer Night's Choice": installDir: - A Midsummer Night's Choice: {} + "A Midsummer Night's Choice": {} launch: - /A Midsummer Night's Choice.app/Contents/MacOS/A Midsummer Night's Choice: + "/A Midsummer Night's Choice.app/Contents/MacOS/A Midsummer Night's Choice": - when: - os: mac store: steam - /Midsummer: + "/Midsummer": - when: - os: linux store: steam - /Midsummer.exe: + "/Midsummer.exe": - when: - os: windows store: steam @@ -7868,7 +7894,7 @@ A Mining Game: installDir: amg: {} launch: - /AMG.exe: + "/AMG.exe": - when: - os: windows store: steam @@ -7878,31 +7904,31 @@ A Modest Legacy: installDir: A Modest Legacy: {} launch: - /A Modest Legacy.exe: + "/A Modest Legacy.exe": - when: - os: windows store: steam steam: id: 1858090 -A Monster's Expedition: +"A Monster's Expedition": files: - /AppData/LocalLow/Draknek and Friends/A Monster's Expedition: + "/AppData/LocalLow/Draknek and Friends/A Monster's Expedition": tags: - save when: - os: windows installDir: - A Monster's Expedition: {} + "A Monster's Expedition": {} launch: - /A Monster's Expedition.app: + "/A Monster's Expedition.app": - when: - os: mac store: steam - /A Monster's Expedition.exe: + "/A Monster's Expedition.exe": - when: - os: windows store: steam - /launch.sh: + "/launch.sh": - when: - os: linux store: steam @@ -7912,40 +7938,40 @@ A More Beautiful World: installDir: A More Beautiful World - A Visual Novel: {} launch: - /A More Beautiful World Demo-5.0.app: + "/A More Beautiful World Demo-5.0.app": - when: - os: mac store: steam - /A More Beautiful World Demo-5.0.exe: + "/A More Beautiful World Demo-5.0.exe": - when: - os: windows store: steam - /A More Beautiful World Demo-5.0.sh: + "/A More Beautiful World Demo-5.0.sh": - when: - os: linux store: steam steam: id: 436680 -A Mortician's Tale: +"A Mortician's Tale": files: - /AppData/LocalLow/Laundry Bear Games/A Mortician's Tale/options: + "/AppData/LocalLow/Laundry Bear Games/A Mortician's Tale/options": tags: - config when: - os: windows installDir: - A Mortician's Tale: {} + "A Mortician's Tale": {} launch: - /morticianstale.app: + "/morticianstale.app": - when: - os: mac store: steam - /morticianstale.exe: + "/morticianstale.exe": - when: - os: windows store: steam registry: - HKEY_CURRENT_USER/Software/Laundry Bear Games/A Mortician's Tale: + "HKEY_CURRENT_USER/Software/Laundry Bear Games/A Mortician's Tale": tags: - config steam: @@ -7954,7 +7980,7 @@ A Moustache in the House: installDir: A Moustache in the House: {} launch: - /Stalker.exe: + "/Stalker.exe": - when: - os: windows store: steam @@ -7964,15 +7990,15 @@ A Museum of Dubious Splendors: installDir: a Museum of Dubious Splendors: {} launch: - /DubiousSplendor.app: + "/DubiousSplendor.app": - when: - os: mac store: steam - /Margin.exe: + "/Margin.exe": - when: - os: windows store: steam - /Margin.x86: + "/Margin.x86": - when: - os: linux store: steam @@ -7980,7 +8006,7 @@ A Museum of Dubious Splendors: id: 772680 A Musical Story: files: - /Save: + "/Save": tags: - save when: @@ -7990,36 +8016,36 @@ A Musical Story: installDir: A Musical Story: {} launch: - /A-Musical-Story.app/Contents/MacOS/MusicalStory: + "/A-Musical-Story.app/Contents/MacOS/MusicalStory": - when: - os: mac store: steam - /MusicalStory.exe: + "/MusicalStory.exe": - when: - os: windows store: steam - /MusicalStory.x86_64: + "/MusicalStory.x86_64": - when: - os: linux store: steam steam: id: 1546100 -A NIGHTMARE'S TRIP: +"A NIGHTMARE'S TRIP": id: steamExtra: - 1156660 installDir: - A NIGHTMARE'S TRIP: {} + "A NIGHTMARE'S TRIP": {} launch: - /NIGHTMARESTRIP-1.0-linux/NIGHTMARESTRIP.sh: + "/NIGHTMARESTRIP-1.0-linux/NIGHTMARESTRIP.sh": - when: - os: linux store: steam - /NIGHTMARESTRIP.app/Contents/MacOS/NIGHTMARESTRIP: + "/NIGHTMARESTRIP.app/Contents/MacOS/NIGHTMARESTRIP": - when: - os: mac store: steam - /NIGHTMARESTRIP.exe: + "/NIGHTMARESTRIP.exe": - when: - os: windows store: steam @@ -8030,22 +8056,22 @@ A Near Dawn: id: 728170 A New Beginning: files: - /Daedalic Entertainment/A New Beginning - Final Cut/Savegames: + "/Daedalic Entertainment/A New Beginning - Final Cut/Savegames": tags: - save when: - os: windows - /Daedalic Entertainment/A New Beginning - Final Cut/config.ini: + "/Daedalic Entertainment/A New Beginning - Final Cut/config.ini": tags: - config when: - os: windows - /Daedalic Entertainment/A New Beginning/Savegames: + "/Daedalic Entertainment/A New Beginning/Savegames": tags: - save when: - os: windows - /Daedalic Entertainment/A New Beginning/config.ini: + "/Daedalic Entertainment/A New Beginning/config.ini": tags: - config when: @@ -8055,39 +8081,39 @@ A New Beginning: installDir: A New Beginning: {} launch: - /A New Beginning.app: + "/A New Beginning.app": - when: - os: mac store: steam - /VisionaireConfigurationTool.exe: + "/VisionaireConfigurationTool.exe": - when: - os: windows store: steam - /anb.exe: + "/anb.exe": - when: - os: windows store: steam steam: id: 105000 -'A New World: Kingdoms': +"A New World: Kingdoms": installDir: ANWK: {} launch: - /A New World Kingdoms.app/Contents/MacOS/A New World Kingdoms: + "/A New World Kingdoms.app/Contents/MacOS/A New World Kingdoms": - when: - os: mac store: steam - /A New World Kingdoms/A New World Kingdoms.86: + "/A New World Kingdoms/A New World Kingdoms.86": - when: - bit: 32 os: linux store: steam - /A New World Kingdoms/A New World Kingdoms.86_64: + "/A New World Kingdoms/A New World Kingdoms.86_64": - when: - bit: 64 os: linux store: steam - /A New World Kingdoms/A New World Kingdoms.exe: + "/A New World Kingdoms/A New World Kingdoms.exe": - when: - os: windows store: steam @@ -8097,7 +8123,7 @@ A Night at the Races: installDir: A Night at the Races: {} launch: - /A Night at the Races.exe: + "/A Night at the Races.exe": - when: - os: windows store: steam @@ -8105,7 +8131,7 @@ A Night at the Races: id: 1082000 A Normal Lost Phone: files: - /AppData/LocalLow/Accidental Queens/A Normal Lost Phone/save: + "/AppData/LocalLow/Accidental Queens/A Normal Lost Phone/save": tags: - save when: @@ -8115,20 +8141,20 @@ A Normal Lost Phone: installDir: A Normal Lost Phone: {} launch: - /anlp.app: + "/anlp.app": - when: - os: mac store: steam - /anlp.exe: + "/anlp.exe": - when: - os: windows store: steam - /anlp.x86: + "/anlp.x86": - when: - bit: 32 os: linux store: steam - /anlp.x86_64: + "/anlp.x86_64": - when: - bit: 64 os: linux @@ -8143,20 +8169,20 @@ A Nova Califórnia: installDir: The New California: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: id: 699510 -A Number's life: +"A Number's life": installDir: - A Number's life: {} + "A Number's life": {} launch: - /anumberslife.app/Contents/MacOS/anumberslife: + "/anumberslife.app/Contents/MacOS/anumberslife": - when: - os: mac store: steam - /anumberslife.exe: + "/anumberslife.exe": - when: - os: windows store: steam @@ -8166,7 +8192,7 @@ A Penny For Some Motivation: installDir: A Penny For Some Motivation: {} launch: - /Build_final_2_w_ach_steamManager.exe: + "/Build_final_2_w_ach_steamManager.exe": - when: - os: windows store: steam @@ -8176,7 +8202,7 @@ A Percent of a Pirate: installDir: A Percent of a Pirate: {} launch: - /APercentOfAPirate.exe: + "/APercentOfAPirate.exe": - when: - bit: 64 os: windows @@ -8185,31 +8211,31 @@ A Percent of a Pirate: id: 1214400 A Perfect Day: installDir: - ' A Perfect Day': {} + " A Perfect Day": {} launch: - /APerfectDay.app/Contents/MacOS/A Perfect Day: + "/APerfectDay.app/Contents/MacOS/A Perfect Day": - when: - os: mac store: steam - /APerfectDay.exe: + "/APerfectDay.exe": - when: - os: windows store: steam steam: id: 843810 -A Pirate's Pleasure: +"A Pirate's Pleasure": installDir: - A Pirate's Pleasure: {} + "A Pirate's Pleasure": {} launch: - /A Pirate's Pleasure.app/Contents/MacOS/A Pirate's Pleasure: + "/A Pirate's Pleasure.app/Contents/MacOS/A Pirate's Pleasure": - when: - os: mac store: steam - /APiratesPleasure: + "/APiratesPleasure": - when: - os: linux store: steam - /APiratesPleasure.exe: + "/APiratesPleasure.exe": - when: - os: windows store: steam @@ -8219,11 +8245,11 @@ A Pixel Story: installDir: A Pixel Story: {} launch: - /A Pixel Story.app: + "/A Pixel Story.app": - when: - os: mac store: steam - /A Pixel Story.exe: + "/A Pixel Story.exe": - when: - os: windows store: steam @@ -8233,24 +8259,24 @@ A Place for the Unwilling: installDir: A Place for the Unwilling: {} launch: - /aplacefortheunwilling.app: + "/aplacefortheunwilling.app": - when: - os: mac store: steam - /aplacefortheunwilling.exe: + "/aplacefortheunwilling.exe": - when: - os: windows store: steam steam: id: 1064310 -'A Plague Tale: Innocence': +"A Plague Tale: Innocence": files: - /userdata//752590: + "/userdata//752590": tags: - save when: - store: steam - /My Games/A Plague Tale Innocence: + "/My Games/A Plague Tale Innocence": tags: - config - save @@ -8264,38 +8290,41 @@ A Place for the Unwilling: installDir: A Plague Tale Innocence: {} launch: - /APlagueTaleInnocence_x64.exe: + "/APlagueTaleInnocence_x64.exe": - when: - bit: 64 os: windows store: steam steam: id: 752590 -'A Plague Tale: Requiem': +"A Plague Tale: Requiem": files: - /userdata/1182900//remote: + "/userdata/1182900//remote": tags: - save when: - store: steam - /A Plague Tale Requiem/ENGINESETTINGS: + "/A Plague Tale Requiem/ENGINESETTINGS": tags: - config when: - - store: steam - /My Games/A Plague Tale Requiem/ENGINESETTINGS: + - os: windows + store: steam + "/My Games/A Plague Tale Requiem/ENGINESETTINGS": tags: - config when: - - store: gog + - os: windows + store: gog - os: windows store: microsoft - /GOG.com/Galaxy/Applications/55243620139303375/Storage/Shared/Files: + "/GOG.com/Galaxy/Applications/55243620139303375/Storage/Shared/Files": tags: - save when: - - store: gog - /Packages/FocusHomeInteractiveSA.APlagueTaleRequiem-Windows_4hny5m903y3g0/SystemAppData/wgs/: + - os: windows + store: gog + "/Packages/FocusHomeInteractiveSA.APlagueTaleRequiem-Windows_4hny5m903y3g0/SystemAppData/wgs/": tags: - save when: @@ -8311,7 +8340,7 @@ A Place for the Unwilling: installDir: A Plague Tale Requiem: {} launch: - /APlagueTaleRequiem_x64.exe: + "/APlagueTaleRequiem_x64.exe": - when: - bit: 64 os: windows @@ -8322,7 +8351,7 @@ A Planet of Mine: installDir: A Planet of Mine: {} launch: - /A Planet of Mine.exe: + "/A Planet of Mine.exe": - when: - os: windows store: steam @@ -8332,11 +8361,11 @@ A Plot Story: installDir: A Plot Story: {} launch: - /aplotstory.app: + "/aplotstory.app": - when: - os: mac store: steam - /aplotstory.exe: + "/aplotstory.exe": - when: - os: windows store: steam @@ -8346,16 +8375,16 @@ A Plunge into Darkness: installDir: A Plunge into Darkness: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: id: 615700 -A Princess' Tale: +"A Princess' Tale": installDir: - A Princess' Tale: {} + "A Princess' Tale": {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: @@ -8367,7 +8396,7 @@ A Quick Death: installDir: A Quick Death: {} launch: - /aqd.exe: + "/aqd.exe": - when: - os: windows store: steam @@ -8377,15 +8406,15 @@ A Quiet Mind: installDir: A Quiet Mind: {} launch: - /A Quiet Mind - Linux1.0.5.x86: + "/A Quiet Mind - Linux1.0.5.x86": - when: - os: linux store: steam - /A Quiet Mind - Mac1.0.5.app: + "/A Quiet Mind - Mac1.0.5.app": - when: - os: mac store: steam - /A Quiet Mind - Windows1.0.6.exe: + "/A Quiet Mind - Windows1.0.6.exe": - when: - os: windows store: steam @@ -8395,15 +8424,15 @@ A Quiver of Crows: installDir: A Quiver of Crows: {} launch: - /AQuiverOfCrows: + "/AQuiverOfCrows": - when: - os: linux store: steam - /AQuiverOfCrows.app: + "/AQuiverOfCrows.app": - when: - os: mac store: steam - /AQuiverOfCrows.exe: + "/AQuiverOfCrows.exe": - when: - os: windows store: steam @@ -8413,11 +8442,11 @@ A Raven Monologue: installDir: A Raven Monologue: {} launch: - /A Raven Monologue.app/Contents/MacOS/nwjs: + "/A Raven Monologue.app/Contents/MacOS/nwjs": - when: - os: mac store: steam - /A Raven Monologue.exe: + "/A Raven Monologue.exe": - when: - os: windows store: steam @@ -8430,15 +8459,15 @@ A Rite from the Stars: installDir: A Rite from the Stars: {} launch: - /arfts.app/Contents/MacOS/arfts: + "/arfts.app/Contents/MacOS/arfts": - when: - os: mac store: steam - /arfts.exe: + "/arfts.exe": - when: - os: windows store: steam - /arfts.x86: + "/arfts.x86": - when: - os: linux store: steam @@ -8446,17 +8475,17 @@ A Rite from the Stars: id: 792370 A Robot Named Fight!: files: - /.config/unity3d/Matt Bitner/A Robot Named Fight: + "/.config/unity3d/Matt Bitner/A Robot Named Fight": tags: - save when: - os: linux - /Appdata/LocalLow/Matt Bitner/A Robot Named Fight: + "/Appdata/LocalLow/Matt Bitner/A Robot Named Fight": tags: - save when: - os: windows - /Library/Application Support/unity.Matt Bitner.A Robot Named Fight: + "/Library/Application Support/unity.Matt Bitner.A Robot Named Fight": tags: - save when: @@ -8464,15 +8493,15 @@ A Robot Named Fight!: installDir: A Robot Named Fight: {} launch: - /ARobotNamedFight.app: + "/ARobotNamedFight.app": - when: - os: mac store: steam - /ARobotNamedFight.exe: + "/ARobotNamedFight.exe": - when: - os: windows store: steam - /ARobotNamedFight.x86_64: + "/ARobotNamedFight.x86_64": - when: - bit: 64 os: linux @@ -8483,11 +8512,11 @@ A Roll-Back Story: installDir: A Roll-Back Story: {} launch: - /A Roll Back Story.exe: + "/A Roll Back Story.exe": - when: - os: windows store: steam - /A Roll-Back Story.x86_64: + "/A Roll-Back Story.x86_64": - when: - bit: 64 os: linux @@ -8498,11 +8527,11 @@ A Room Beyond: installDir: A Room Beyond: {} launch: - /ARoomBeyond.app/Contents/MacOS/ARoomBeyond: + "/ARoomBeyond.app/Contents/MacOS/ARoomBeyond": - when: - os: mac store: steam - /ARoomBeyond.exe: + "/ARoomBeyond.exe": - when: - os: windows store: steam @@ -8512,7 +8541,7 @@ A Rose in the Twilight: installDir: A Rose in the Twilight: {} launch: - /rose.exe: + "/rose.exe": - when: - os: windows store: steam @@ -8522,18 +8551,18 @@ A Salem Witch Trial - Murder Mystery: installDir: A Salem Witch Trial: {} launch: - /nw.exe: - - arguments: '--in-process-gpu' + "/nw.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam steam: id: 788740 -A Sceptic's Guide to Magic: +"A Sceptic's Guide to Magic": installDir: - A Sceptic's Guide to Magic: {} + "A Sceptic's Guide to Magic": {} launch: - /nw.exe: + "/nw.exe": - when: - store: steam steam: @@ -8542,7 +8571,7 @@ A Second Before Us: installDir: A SECOND BEFORE US: {} launch: - /ASBU.exe: + "/ASBU.exe": - when: - os: windows store: steam @@ -8552,7 +8581,7 @@ A Second Chance: installDir: Second Chance: {} launch: - /Second Chance.exe: + "/Second Chance.exe": - when: - store: steam steam: @@ -8561,7 +8590,7 @@ A Shawn Story: installDir: A Shawn Story: {} launch: - /A Shawn Story.exe: + "/A Shawn Story.exe": - when: - os: windows store: steam @@ -8571,7 +8600,7 @@ A Shooty Bit: installDir: A Shooty Bit: {} launch: - /AShootyBit_9_1_5_ix.exe: + "/AShootyBit_9_1_5_ix.exe": - when: - os: windows store: steam @@ -8579,22 +8608,22 @@ A Shooty Bit: id: 463480 A Short Hike: files: - /AppData/LocalLow/adamgryu/A Short Hike/GameSaveNew.mountain: + "/AppData/LocalLow/adamgryu/A Short Hike/GameSaveNew.mountain": tags: - save when: - os: windows - /Library/Application Support/com.adamgryu.AShortHike/GameSaveNew.mountain: + "/Library/Application Support/com.adamgryu.AShortHike/GameSaveNew.mountain": tags: - save when: - os: mac - /unity3d/adamgryu/A Short Hike: + "/unity3d/adamgryu/A Short Hike": tags: - config when: - os: linux - /unity3d/adamgryu/A Short Hike/GameSaveNew.mountain: + "/unity3d/adamgryu/A Short Hike/GameSaveNew.mountain": tags: - save when: @@ -8604,20 +8633,20 @@ A Short Hike: installDir: A Short Hike: {} launch: - /AShortHike.app/Contents/MacOS/A Short Hike: + "/AShortHike.app/Contents/MacOS/A Short Hike": - when: - os: mac store: steam - /AShortHike.exe: + "/AShortHike.exe": - when: - os: windows store: steam - /AShortHike.x86: + "/AShortHike.x86": - when: - bit: 32 os: linux store: steam - /AShortHike.x86_64: + "/AShortHike.x86_64": - when: - bit: 64 os: linux @@ -8637,14 +8666,14 @@ A Sirius Game: installDir: A Sirius Game: {} launch: - /A Sirius Game.exe: + "/A Sirius Game.exe": - when: - store: steam steam: id: 392930 A Sky Full of Stars: files: - /Saved Games/MoeNovel/A Sky Full of Stars: + "/Saved Games/MoeNovel/A Sky Full of Stars": tags: - config - save @@ -8653,7 +8682,7 @@ A Sky Full of Stars: installDir: A Sky Full of Stars: {} launch: - /AdvHD.exe: + "/AdvHD.exe": - when: - os: windows store: steam @@ -8663,25 +8692,25 @@ A Small Robot Story: installDir: A Small Robot Story: {} launch: - /ASmallRobotStory.exe: + "/ASmallRobotStory.exe": - when: - os: windows store: steam steam: id: 753440 -A Snake's Tale: +"A Snake's Tale": installDir: - A Snake's Tale: {} + "A Snake's Tale": {} launch: - /A Snake's Tale.app/Contents/MacOS/a_snakes_tale: + "/A Snake's Tale.app/Contents/MacOS/a_snakes_tale": - when: - os: mac store: steam - /A Snake's Tale.exe: + "/A Snake's Tale.exe": - when: - os: windows store: steam - /a_snakes_tale: + "/a_snakes_tale": - when: - os: linux store: steam @@ -8691,7 +8720,7 @@ A Song in the Void: installDir: A song in the void: {} launch: - /A Song in the Void.exe: + "/A Song in the Void.exe": - when: - bit: 64 os: windows @@ -8702,28 +8731,28 @@ A Sound Plan: installDir: A Sound Plan: {} launch: - /A_Sound_Plan_OSX_Steam.app: + "/A_Sound_Plan_OSX_Steam.app": - when: - os: mac store: steam - /Etc/ZombieStealth_SteamRelease: - - arguments: 'LD_LIBRARY_PATH=.:$LD_LIBRARY_PATH' + "/Etc/ZombieStealth_SteamRelease": + - arguments: "LD_LIBRARY_PATH=.:$LD_LIBRARY_PATH" when: - bit: 64 os: linux store: steam - workingDir: /Etc - /Etc/ZombieStealth_SteamRelease.exe: + workingDir: "/Etc" + "/Etc/ZombieStealth_SteamRelease.exe": - when: - bit: 64 os: windows store: steam - workingDir: /Etc + workingDir: "/Etc" steam: id: 963470 A Space for the Unbound: files: - /AppData/LocalLow/Mojiken/A Space for the Unbound: + "/AppData/LocalLow/Mojiken/A Space for the Unbound": tags: - config - save @@ -8734,7 +8763,7 @@ A Space for the Unbound: installDir: A Space for the Unbound: {} launch: - /A Space for the Unbound.exe: + "/A Space for the Unbound.exe": - when: - os: windows store: steam @@ -8744,11 +8773,11 @@ A Space for the Unbound - Prologue: installDir: A Space For The Unbound - Prologue: {} launch: - /A Space for the Unbound.app: + "/A Space for the Unbound.app": - when: - os: mac store: steam - /A Space for the Unbound.exe: + "/A Space for the Unbound.exe": - when: - os: windows store: steam @@ -8758,7 +8787,7 @@ A Step Into Darkness: installDir: A Step Into Darkness: {} launch: - /ASID.exe: + "/ASID.exe": - when: - os: windows store: steam @@ -8773,8 +8802,8 @@ A Story Beside: installDir: A Story Beside: {} launch: - /story.exe: - - arguments: '--in-process-gpu' + "/story.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam @@ -8782,22 +8811,22 @@ A Story Beside: id: 634410 A Story about My Uncle: files: - /.steam/steam/steamapps/common/A Story About My Uncle/*/Config: + "/.steam/steam/steamapps/common/A Story About My Uncle/*/Config": tags: - config when: - os: linux - /.steam/steam/steamapps/common/A Story About My Uncle/ASAMU/Saves: + "/.steam/steam/steamapps/common/A Story About My Uncle/ASAMU/Saves": tags: - save when: - os: linux - /My Games/A Story About My Uncle/ASAMU/Config: + "/My Games/A Story About My Uncle/ASAMU/Config": tags: - config when: - os: windows - /My Games/A Story About My Uncle/ASAMU/Saves: + "/My Games/A Story About My Uncle/ASAMU/Saves": tags: - save when: @@ -8807,20 +8836,20 @@ A Story about My Uncle: installDir: A Story About My Uncle: {} launch: - /A Story About My Uncle.app/Contents/MacOS/ASAMU: + "/A Story About My Uncle.app/Contents/MacOS/ASAMU": - when: - os: mac store: steam - /Binaries/Win32/ASAMU-Win32-Shipping.exe: + "/Binaries/Win32/ASAMU-Win32-Shipping.exe": - when: - os: windows store: steam - /Binaries/linux-amd64/ASAMU: + "/Binaries/linux-amd64/ASAMU": - when: - bit: 64 os: linux store: steam - /Binaries/linux-x86/ASAMU: + "/Binaries/linux-x86/ASAMU": - when: - bit: 32 os: linux @@ -8836,57 +8865,57 @@ A Story of Us - ep. 1 - First Memories: installDir: A Story of Us - ep. 1 - First Memories: {} launch: - /A story of Us - First Memories.exe: + "/A story of Us - First Memories.exe": - when: - os: windows store: steam steam: id: 1026810 -'A Street Cat''s Tale : support edition': +"A Street Cat's Tale : support edition": installDir: - A Street Cat's Tale_support edition: {} + "A Street Cat's Tale_support edition": {} launch: - /A Street Cat's Tale SE.app: + "/A Street Cat's Tale SE.app": - when: - os: mac store: steam - /A Street Cat's Tale SE.exe: + "/A Street Cat's Tale SE.exe": - when: - os: windows store: steam steam: id: 1140570 -'A Stroke of Fate: Operation Bunker': +"A Stroke of Fate: Operation Bunker": installDir: A Stroke of Fate Operation Bunker: {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: id: 372570 -'A Stroke of Fate: Operation Valkyrie': +"A Stroke of Fate: Operation Valkyrie": installDir: Stroke of Fate - Operation Valkyrie: {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: id: 10240 -'A Study in Steampunk: Choice by Gaslight': +"A Study in Steampunk: Choice by Gaslight": installDir: StudyInSteampunkChoiceByGaslight: {} launch: - /A Study in Steampunk Choice by Gaslight.app/Contents/MacOS/A Study in Steampunk Choice by Gaslight: + "/A Study in Steampunk Choice by Gaslight.app/Contents/MacOS/A Study in Steampunk Choice by Gaslight": - when: - os: mac store: steam - /StudyInSteampunk: + "/StudyInSteampunk": - when: - os: linux store: steam - /StudyInSteampunk.exe: + "/StudyInSteampunk.exe": - when: - os: windows store: steam @@ -8896,7 +8925,7 @@ A Summer Promise to Forever: installDir: Trajectory of summer flower: {} launch: - /SummerFlower.exe: + "/SummerFlower.exe": - when: - os: windows store: steam @@ -8906,15 +8935,15 @@ A Summer with the Shiba Inu: installDir: A Summer with the Shiba Inu: {} launch: - /Summer_Shiba_Inu_Game.app: + "/Summer_Shiba_Inu_Game.app": - when: - os: mac store: steam - /Summer_Shiba_Inu_Game.exe: + "/Summer_Shiba_Inu_Game.exe": - when: - os: windows store: steam - /Summer_Shiba_Inu_Game.sh: + "/Summer_Shiba_Inu_Game.sh": - when: - os: linux store: steam @@ -8924,15 +8953,15 @@ A Sun Of Salt: installDir: A Sun Of Salt: {} launch: - /ASunOfSalt.exe: + "/ASunOfSalt.exe": - when: - os: windows store: steam - /ASunOfSalt.sh: + "/ASunOfSalt.sh": - when: - os: linux store: steam - /MacOS/ASunOfSalt: + "/MacOS/ASunOfSalt": - when: - os: mac store: steam @@ -8942,55 +8971,55 @@ A Tale for Anna: installDir: A Tale for Anna: {} launch: - /A Tale for Anna.app: + "/A Tale for Anna.app": - when: - os: mac store: steam - /A Tale for Anna.exe: + "/A Tale for Anna.exe": - when: - os: windows store: steam steam: id: 1521930 -'A Tale of Caos: Overture': +"A Tale of Caos: Overture": installDir: A Tale of Caos - Overture: {} launch: - /ATOC Overture.app/Contents/MacOS/ATOC Overture: + "/ATOC Overture.app/Contents/MacOS/ATOC Overture": - when: - os: mac store: steam - /ATOC Overture.exe: + "/ATOC Overture.exe": - when: - os: windows store: steam steam: id: 500320 -'A Tale of Paper: Refolded': +"A Tale of Paper: Refolded": gog: id: 1433408594 installDir: ATaleOfPaper: {} launch: - /ATaleOfPaper.exe: + "/ATaleOfPaper.exe": - when: - os: windows store: steam steam: id: 1454640 -'A Tale of Pirates: a Dummy Mutiny': +"A Tale of Pirates: a Dummy Mutiny": installDir: A tale of pirates VR: {} steam: id: 852570 A Tale of Two Kingdoms: files: - /acsetup.cfg: + "/acsetup.cfg": tags: - config when: - os: windows - /Saved Games/A Tale of Two Kingdoms: + "/Saved Games/A Tale of Two Kingdoms": tags: - save when: @@ -8998,17 +9027,17 @@ A Tale of Two Kingdoms: installDir: A Tale of Two Kingdoms: {} launch: - /A Tale of Two Kingdoms.app: + "/A Tale of Two Kingdoms.app": - when: - os: mac store: steam - /ATOTK.exe: - - arguments: '-windowed' + "/ATOTK.exe": + - arguments: "-windowed" when: - os: windows store: steam - /Game.sh: - - arguments: '-windowed' + "/Game.sh": + - arguments: "-windowed" when: - os: linux store: steam @@ -9018,7 +9047,7 @@ A Time Paradox: installDir: A Time Paradox: {} launch: - /A Time Paradox.exe: + "/A Time Paradox.exe": - when: - os: windows store: steam @@ -9028,7 +9057,7 @@ A Timely Intervention: installDir: A Timely Intervention: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: @@ -9037,45 +9066,54 @@ A Tofu Tail: installDir: A Tofu Tail: {} launch: - /A Tofu Tail.app/Contents/MacOS/A Tofu Tail: + "/A Tofu Tail.app/Contents/MacOS/A Tofu Tail": - when: - os: mac store: steam - /A Tofu Tail.exe: + "/A Tofu Tail.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam - /A Tofu Tail.x86_64: + "/A Tofu Tail.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 454240 -'A Top-Down Job: Blood Gain': +"A Top-Down Job: Blood Gain": installDir: A Top-Down Job Blood Gain: {} launch: - /atdj2.app: + "/atdj2.app": - when: - os: mac store: steam - /nw: + "/nw": - when: - bit: 32 os: linux store: steam - /nw.exe: + - bit: 64 + os: linux + store: steam + "/nw.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam steam: id: 934470 -'A Total War Saga: Troy': +"A Total War Saga: Troy": files: - /The Creative Assembly/Troy/save_games: + "/The Creative Assembly/Troy/save_games": tags: - save when: @@ -9083,66 +9121,66 @@ A Tofu Tail: installDir: Total War Saga Troy: {} launch: - /A Total War Saga TROY.app: + "/A Total War Saga TROY.app": - when: - os: mac store: steam - /launcher/launcher.exe: + "/launcher/launcher.exe": - when: - os: windows store: steam - workingDir: /launcher + workingDir: "/launcher" steam: id: 1099410 A Tractor: installDir: A tractor: {} launch: - /Atractor.exe: + "/Atractor.exe": - when: - os: windows store: steam steam: id: 779050 -'A Trip to Yugoslavia: Director''s Cut': +"A Trip to Yugoslavia: Director's Cut": installDir: - A Trip to Yugoslavia Director's Cut: {} + "A Trip to Yugoslavia Director's Cut": {} launch: - /A Trip to Yugoslavia.exe: + "/A Trip to Yugoslavia.exe": - when: - os: windows store: steam - /ATtY DC Mac.app: + "/ATtY DC Mac.app": - when: - os: mac store: steam - /ATtY_DC.x86: + "/ATtY_DC.x86": - when: - bit: 32 os: linux store: steam - /ATtY_DC.x86_64: + "/ATtY_DC.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 545410 -A Turd's Life: +"A Turd's Life": installDir: - A Turd's Life: {} + "A Turd's Life": {} launch: - /ATurdsLifeBeta.exe: + "/ATurdsLifeBeta.exe": - when: - os: windows store: steam steam: id: 804400 -A Typewriter's Story: +"A Typewriter's Story": installDir: A Typewriter’s Story: {} launch: - /A Typewriter's Story.exe: + "/A Typewriter's Story.exe": - when: - os: windows store: steam @@ -9150,17 +9188,17 @@ A Typewriter's Story: id: 873310 A Valley Without Wind: files: - /RuntimeData/Worlds: + "/RuntimeData/Worlds": tags: - save when: - os: windows - /RuntimeData/serversettings.dat: + "/RuntimeData/serversettings.dat": tags: - config when: - os: windows - /RuntimeData/settings.dat: + "/RuntimeData/settings.dat": tags: - config when: @@ -9168,20 +9206,20 @@ A Valley Without Wind: installDir: A Valley Without Wind: {} launch: - /AVWW.app: + "/AVWW.app": - when: - os: mac store: steam - /AVWW.exe: + "/AVWW.exe": - when: - os: windows store: steam - /AVWWLinux.x86: + "/AVWWLinux.x86": - when: - bit: 32 os: linux store: steam - /AVWWLinux.x86_64: + "/AVWWLinux.x86_64": - when: - bit: 64 os: linux @@ -9190,12 +9228,12 @@ A Valley Without Wind: id: 209330 A Valley Without Wind 2: files: - /RuntimeData/Worlds: + "/RuntimeData/Worlds": tags: - save when: - os: linux - /RuntimeData/settings.dat: + "/RuntimeData/settings.dat": tags: - config when: @@ -9203,21 +9241,21 @@ A Valley Without Wind 2: installDir: A Valley Without Wind 2: {} launch: - /Valley2.app: + "/Valley2.app": - when: - os: mac store: steam - workingDir: /bin - /Valley2.exe: + workingDir: "/bin" + "/Valley2.exe": - when: - os: windows store: steam - /Valley2Linux.x86: + "/Valley2Linux.x86": - when: - bit: 32 os: linux store: steam - /Valley2Linux.x86_64: + "/Valley2Linux.x86_64": - when: - bit: 64 os: linux @@ -9226,7 +9264,7 @@ A Valley Without Wind 2: id: 228320 A Vampyre Story: files: - /game/assets/scripts: + "/game/assets/scripts": tags: - save when: @@ -9236,41 +9274,41 @@ A Vampyre Story: installDir: A Vampyre Story: {} launch: - /game/main.exe: + "/game/main.exe": - when: - store: steam - workingDir: /game + workingDir: "/game" steam: id: 313870 A Verdant Hue: installDir: A Verdant Hue: {} launch: - /VerdantHue.exe: + "/VerdantHue.exe": - when: - store: steam steam: id: 496380 A Virus Named TOM: files: - /Library/Application Support/AVNT/CircuitGameData: + "/Library/Application Support/AVNT/CircuitGameData": tags: - config - save when: - os: mac - /userdata//207650/remote: + "/userdata//207650/remote": tags: - save when: - store: steam - /SavedGames/avnt/CircuitGameData: + "/SavedGames/avnt/CircuitGameData": tags: - config - save when: - os: windows - /AVNT/CircuitGameData: + "/AVNT/CircuitGameData": tags: - config - save @@ -9279,15 +9317,15 @@ A Virus Named TOM: installDir: A Virus Named TOM: {} launch: - /AVNT.app: + "/AVNT.app": - when: - os: mac store: steam - /AVirusNamedTOM: + "/AVirusNamedTOM": - when: - os: linux store: steam - /avnt.exe: + "/avnt.exe": - when: - os: windows store: steam @@ -9297,7 +9335,7 @@ A Walk Along the Wall: installDir: A Walk Along the Wall: {} launch: - /A Walk Along the Wall.exe: + "/A Walk Along the Wall.exe": - when: - bit: 64 os: windows @@ -9308,7 +9346,7 @@ A Walk in the Dark: installDir: AWalkInTheDark: {} launch: - /AWalkInTheDark.exe: + "/AWalkInTheDark.exe": - when: - store: steam steam: @@ -9317,18 +9355,18 @@ A Walk in the Woods: installDir: A Walk in the Woods: {} launch: - /WalkInTheWoods.exe: + "/WalkInTheWoods.exe": - when: - bit: 64 os: windows store: steam steam: id: 842420 -A Wanderer's Adventure: +"A Wanderer's Adventure": installDir: - A Wanderer's Adventure: {} + "A Wanderer's Adventure": {} launch: - /A Wanderer's Adventure.exe: + "/A Wanderer's Adventure.exe": - when: - os: windows store: steam @@ -9339,17 +9377,17 @@ A War Story: id: 701830 A Way Out: files: - /My Games/A Way Out: + "/My Games/A Way Out": tags: - config when: - os: windows - /My Games/A Way Out/Saves: + "/My Games/A Way Out/Saves": tags: - save when: - os: windows - /Haze1/Saved/Config/WindowsNoEditor: + "/Haze1/Saved/Config/WindowsNoEditor": tags: - config when: @@ -9362,7 +9400,7 @@ A Week of Circus Terror: installDir: A Week of Circus Terror: {} launch: - /A Week of Circus Terror.exe: + "/A Week of Circus Terror.exe": - when: - os: windows store: steam @@ -9370,17 +9408,17 @@ A Week of Circus Terror: id: 498450 A Wild Catgirl Appears!: files: - /game/saves: + "/game/saves": tags: - save when: - os: windows - /renpy/config.py: + "/renpy/config.py": tags: - config when: - os: windows - /renpy/A Wild Catgirl Appears-1466283085: + "/renpy/A Wild Catgirl Appears-1466283085": tags: - save when: @@ -9388,49 +9426,49 @@ A Wild Catgirl Appears!: installDir: A Wild Catgirl Appears!: {} launch: - /AWCA.app: + "/AWCA.app": - when: - os: mac store: steam - /AWCA.exe: + "/AWCA.exe": - when: - os: windows store: steam - /AWCA.sh: + "/AWCA.sh": - when: - os: linux store: steam steam: id: 429580 -A Winter's Daydream: +"A Winter's Daydream": files: - /game/saves/*.save: + "/game/saves/*.save": tags: - save when: - os: windows - /renpy/config.py: + "/renpy/config.py": tags: - config when: - os: windows - /renpy/winter-daydream-1528552171/*.save: + "/renpy/winter-daydream-1528552171/*.save": tags: - save when: - os: windows installDir: - A Winter's Daydream: {} + "A Winter's Daydream": {} launch: - /A_Winter's_Daydream.app: + "/A_Winter's_Daydream.app": - when: - os: mac store: steam - /A_Winter's_Daydream.exe: + "/A_Winter's_Daydream.exe": - when: - os: windows store: steam - /A_Winter's_Daydream.sh: + "/A_Winter's_Daydream.sh": - when: - os: linux store: steam @@ -9440,23 +9478,23 @@ A Wise Use of Time: installDir: WiseUseOfTime: {} launch: - /A Wise Use of Time.app/Contents/MacOS/A Wise Use of Time: + "/A Wise Use of Time.app/Contents/MacOS/A Wise Use of Time": - when: - os: mac store: steam - /WiseUseOfTime: + "/WiseUseOfTime": - when: - os: linux store: steam - /WiseUseOfTime.exe: + "/WiseUseOfTime.exe": - when: - os: windows store: steam steam: id: 397780 -A Wizard's Lizard: +"A Wizard's Lizard": files: - /A Wizard's Lizard: + "/A Wizard's Lizard": tags: - save when: @@ -9464,29 +9502,29 @@ A Wizard's Lizard: installDir: A Wizards Lizard: {} launch: - /A Wizard's Lizard.app: + "/A Wizard's Lizard.app": - when: - os: mac store: steam - /nw: + "/nw": - when: - os: linux store: steam - /nw.exe: + "/nw.exe": - when: - os: windows store: steam steam: id: 280040 -'A Wizard''s Lizard: Soul Thief': +"A Wizard's Lizard: Soul Thief": installDir: Soul Thief: {} launch: - /SoulThief.app: + "/SoulThief.app": - when: - os: mac store: steam - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -9496,7 +9534,7 @@ A Wolf in Autumn: installDir: A Wolf in Autumn: {} launch: - /AWiA.exe: + "/AWiA.exe": - when: - store: steam steam: @@ -9505,7 +9543,7 @@ A Wonder: installDir: A Wonder: {} launch: - /AWonder.exe: + "/AWonder.exe": - when: - os: windows store: steam @@ -9515,7 +9553,7 @@ A World With No Colour: installDir: A World With No Colour: {} launch: - /AWorldWithNoColour.exe: + "/AWorldWithNoColour.exe": - when: - bit: 64 os: windows @@ -9529,7 +9567,7 @@ A Writer and His Daughter: id: 698520 A Year of Rain: files: - /AYearOfRain/Saved/Config/WindowsNoEditor: + "/AYearOfRain/Saved/Config/WindowsNoEditor": tags: - config when: @@ -9537,7 +9575,7 @@ A Year of Rain: installDir: A Year Of Rain: {} launch: - /AYearOfRain.exe: + "/AYearOfRain.exe": - when: - bit: 64 os: windows @@ -9553,7 +9591,7 @@ A maze in Citadel: installDir: A maze in Citadel: {} launch: - /A maze in Citadel.exe: + "/A maze in Citadel.exe": - when: - os: windows store: steam @@ -9563,15 +9601,15 @@ A nifty game: installDir: a nifty game: {} launch: - /nifty: + "/nifty": - when: - os: linux store: steam - /nifty.app: + "/nifty.app": - when: - os: mac store: steam - /nifty.exe: + "/nifty.exe": - when: - os: windows store: steam @@ -9581,7 +9619,7 @@ A night with Natalie: installDir: A night with Natalie: {} launch: - /Night with Natalie PC.exe: + "/Night with Natalie PC.exe": - when: - os: windows store: steam @@ -9596,21 +9634,21 @@ A pirate quartermaster: installDir: A pirate quartermaster: {} launch: - /APQ Linux.x86: + "/APQ Linux.x86": - when: - bit: 32 os: linux store: steam - /APQ Linux.x86_64: + "/APQ Linux.x86_64": - when: - bit: 64 os: linux store: steam - /Quartier-Maître.exe: + "/Quartier-Maître.exe": - when: - os: windows store: steam - /mac_content.app: + "/mac_content.app": - when: - os: mac store: steam @@ -9620,7 +9658,7 @@ A way up!: installDir: A way up!: {} launch: - /A way up!.exe: + "/A way up!.exe": - when: - store: steam steam: @@ -9639,20 +9677,20 @@ A-Gents: installDir: A-Gents: {} launch: - /agents.app: + "/agents.app": - when: - os: mac store: steam - /agents.exe: + "/agents.exe": - when: - os: windows store: steam - /agents.x86: + "/agents.x86": - when: - bit: 32 os: linux store: steam - /agents.x86_64: + "/agents.x86_64": - when: - bit: 64 os: linux @@ -9667,7 +9705,7 @@ A-Men: installDir: AMen: {} launch: - /A-men.exe: + "/A-men.exe": - when: - os: windows store: steam @@ -9677,7 +9715,7 @@ A-Men 2: installDir: A-Men 2: {} launch: - /A-Men 2.exe: + "/A-Men 2.exe": - when: - os: windows store: steam @@ -9685,12 +9723,12 @@ A-Men 2: id: 294190 A-Tech Cybernetic VR: files: - /VRFPS_1/Saved/Config/WindowsNoEditor: + "/VRFPS_1/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /VRFPS_1/Saved/SaveGames: + "/VRFPS_1/Saved/SaveGames": tags: - save when: @@ -9703,26 +9741,26 @@ A-Train 8: installDir: A-Train8DL: {} launch: - /A-Train8ConfigDL.exe: + "/A-Train8ConfigDL.exe": - when: - store: steam - /A-Train8DL.exe: + "/A-Train8DL.exe": - when: - store: steam steam: id: 249930 -'A-Train 9 V4.0: Japan Rail Simulator': +"A-Train 9 V4.0: Japan Rail Simulator": installDir: A-Train 9 V4.0 Japan Rail Simulator: {} launch: - /ATrain9v4.exe: + "/ATrain9v4.exe": - when: - store: steam steam: id: 278550 A-Train PC Classic: files: - /userdata//492090: + "/userdata//492090": tags: - save when: @@ -9731,7 +9769,7 @@ A-Train PC Classic: installDir: ATrainPC: {} launch: - /ATrainPC.exe: + "/ATrainPC.exe": - when: - store: steam steam: @@ -9740,7 +9778,7 @@ A-Vroom!: installDir: AVroom: {} launch: - /A-Vroom!.exe: + "/A-Vroom!.exe": - when: - os: windows store: steam @@ -9748,12 +9786,12 @@ A-Vroom!: id: 1159070 A.D. 2044: files: - /save000*.dta: + "/save000*.dta": tags: - save when: - os: windows - /save0009.dta: + "/save0009.dta": tags: - config when: @@ -9764,7 +9802,7 @@ A.I. Invasion: installDir: A.I. Invasion: {} launch: - /AIInvasion.exe: + "/AIInvasion.exe": - when: - store: steam steam: @@ -9773,19 +9811,19 @@ A.I. Space Corps: installDir: A.I. Space Corps: {} launch: - /AISpaceCorps.exe: + "/AISpaceCorps.exe": - when: - store: steam steam: id: 423180 -'A.I.M. 2: Clan Wars': +"A.I.M. 2: Clan Wars": files: - /Data/CONFIG: + "/Data/CONFIG": tags: - config when: - os: windows - /SAVES: + "/SAVES": tags: - save when: @@ -9795,7 +9833,7 @@ A.I. Space Corps: installDir: AIM2: {} launch: - /AIMII.exe: + "/AIMII.exe": - when: - os: windows store: steam @@ -9803,7 +9841,7 @@ A.I. Space Corps: id: 289180 A.I.M. Racing: files: - /My Games/A.I.M. Racing: + "/My Games/A.I.M. Racing": tags: - save when: @@ -9813,22 +9851,22 @@ A.I.M. Racing: installDir: AIM Racing: {} launch: - /AIMRace.exe: + "/AIMRace.exe": - when: - store: steam steam: id: 46200 -'A.I.M.3: War Protocol': +"A.I.M.3: War Protocol": steam: id: 1171340 -'A.I.M.: Artificial Intelligence Machines': +"A.I.M.: Artificial Intelligence Machines": files: - /SAVES: + "/SAVES": tags: - save when: - os: windows - /data/config: + "/data/config": tags: - config when: @@ -9838,19 +9876,19 @@ A.L.A.N.: ALAN: {} steam: id: 754190 -'A.L.A.N.: Rift Breakers': +"A.L.A.N.: Rift Breakers": installDir: A.L.A.N. Rift Breakers: {} launch: - /AlanRiftBreakers/AlanRiftBreakers.app: + "/AlanRiftBreakers/AlanRiftBreakers.app": - when: - os: mac store: steam - /AlanRiftBreakers/AlanRiftBreakers.exe: + "/AlanRiftBreakers/AlanRiftBreakers.exe": - when: - os: windows store: steam - /AlanRiftBreakers/AlanRiftBreakers.sh: + "/AlanRiftBreakers/AlanRiftBreakers.sh": - when: - os: linux store: steam @@ -9860,34 +9898,34 @@ A.N.N.E: installDir: A.N.N.E: {} launch: - /ANNE.app/Contents/MacOS/ANNE: + "/ANNE.app/Contents/MacOS/ANNE": - when: - os: mac store: steam - /ANNE.exe: + "/ANNE.exe": - when: - os: windows store: steam - /ANNE.x86_64: + "/ANNE.x86_64": - when: - os: linux store: steam steam: id: 262370 -'A.R.E.S.: Extinction Agenda': +"A.R.E.S.: Extinction Agenda": files: - /userdata//92300: + "/userdata//92300": tags: - config - save when: - store: steam - /ARES/Profile/*.plf: + "/ARES/Profile/*.plf": tags: - save when: - os: windows - /ARES/config.ini: + "/ARES/config.ini": tags: - config when: @@ -9895,32 +9933,32 @@ A.N.N.E: installDir: ARES: {} launch: - /ARES.exe: + "/ARES.exe": - when: - store: steam - /ARES_nofixedtimestep.exe: + "/ARES_nofixedtimestep.exe": - when: - store: steam steam: id: 92300 -'A.R.E.S.: Extinction Agenda EX': +"A.R.E.S.: Extinction Agenda EX": files: - /ARES_EX/configs.ini: + "/ARES_EX/configs.ini": tags: - config when: - os: windows - /ARES_EX/keyboard.configs: + "/ARES_EX/keyboard.configs": tags: - config when: - os: windows - /ARES_EX/steam-*/save.profile: + "/ARES_EX/steam-*/save.profile": tags: - save when: - os: windows - /ARES_EX/xinput.configs: + "/ARES_EX/xinput.configs": tags: - config when: @@ -9928,7 +9966,7 @@ A.N.N.E: installDir: ARES EX: {} launch: - /ARES_EX.exe: + "/ARES_EX.exe": - when: - os: windows store: steam @@ -9941,36 +9979,36 @@ A.V.: installDir: AV: {} launch: - /AV.app: + "/AV.app": - when: - os: mac store: steam - - arguments: '-VR' + - arguments: "-VR" when: - os: mac store: steam - /AV.exe: - - arguments: '-force-d3d11 -show-screen-selector' + "/AV.exe": + - arguments: "-force-d3d11 -show-screen-selector" when: - os: windows store: steam - - arguments: '-force-d3d9 -show-screen-selector' + - arguments: "-force-d3d9 -show-screen-selector" when: - os: windows store: steam - /AV.x86: - - arguments: '-show-screen-selector' + "/AV.x86": + - arguments: "-show-screen-selector" when: - os: linux store: steam - /AV.x86_64: - - arguments: '-show-screen-selector' + "/AV.x86_64": + - arguments: "-show-screen-selector" when: - bit: 64 os: linux store: steam - /AV_DirectToRift.exe: - - arguments: '-force-d3d11' + "/AV_DirectToRift.exe": + - arguments: "-force-d3d11" when: - os: windows store: steam @@ -9981,13 +10019,13 @@ A.V.I.S: id: 1145480 A.W.O.L.: files: - /*.cfg: + "/*.cfg": tags: - config when: - os: windows - os: linux - /save*.esv: + "/save*.esv": tags: - save when: @@ -9996,19 +10034,19 @@ A.W.O.L.: installDir: AWOL: {} launch: - /awol: + "/awol": - when: - os: linux store: steam - /awol.exe: + "/awol.exe": - when: - os: windows store: steam steam: id: 1740150 -'A2 Racer IV: The Cop''s Revenge': +"A2 Racer IV: The Cop's Revenge": files: - /SaveGame0.RCR: + "/SaveGame0.RCR": tags: - save when: @@ -10020,7 +10058,7 @@ AA Touch Gun!: installDir: AA Touch Gun!: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -10028,32 +10066,32 @@ AA Touch Gun!: id: 986320 AAAAXY: files: - /.config/AAAAXY: + "/.config/AAAAXY": tags: - config when: - os: linux - /.local/share/AAAAXY: + "/.local/share/AAAAXY": tags: - save when: - os: linux - /Library/Application Support/AAAAXY/config: + "/Library/Application Support/AAAAXY/config": tags: - config when: - os: mac - /Library/Application Support/AAAAXY/save: + "/Library/Application Support/AAAAXY/save": tags: - save when: - os: mac - /Saved Games/AAAAXY: + "/Saved Games/AAAAXY": tags: - save when: - os: windows - /AAAAXY: + "/AAAAXY": tags: - config when: @@ -10062,7 +10100,7 @@ ABANdon02: installDir: aBANdon02: {} launch: - /aBANdon02.exe: + "/aBANdon02.exe": - when: - bit: 64 os: windows @@ -10073,17 +10111,17 @@ ABC Coloring Town: installDir: ABC Coloring Town: {} launch: - /ABCColoringTown.exe: + "/ABCColoringTown.exe": - when: - os: windows store: steam steam: id: 478010 -'ABD: A Beautiful Day': +"ABD: A Beautiful Day": installDir: ABD A Beautiful Day: {} launch: - /ABD.exe: + "/ABD.exe": - when: - os: windows store: steam @@ -10098,11 +10136,11 @@ ABRACA - Imagic Games: installDir: Abraca: {} launch: - /Abraca.app: + "/Abraca.app": - when: - os: mac store: steam - /Abraca.exe: + "/Abraca.exe": - when: - os: windows store: steam @@ -10112,7 +10150,7 @@ ACCEL-X: installDir: ACCEL-X: {} launch: - /ACCEL.exe: + "/ACCEL.exe": - when: - store: steam steam: @@ -10121,15 +10159,15 @@ ACE Academy: installDir: ACE Academy: {} launch: - /ACE Academy.app: + "/ACE Academy.app": - when: - os: mac store: steam - /ACE Academy.exe: + "/ACE Academy.exe": - when: - os: windows store: steam - /ACE Academy.sh: + "/ACE Academy.sh": - when: - os: linux store: steam @@ -10139,15 +10177,15 @@ ACardShooter: installDir: ACardShooter: {} launch: - /ACardShooter.exe: + "/ACardShooter.exe": - when: - os: windows store: steam - /acs.app/Contents/MacOS/acs: + "/acs.app/Contents/MacOS/acs": - when: - os: mac store: steam - /acs.x86_64: + "/acs.x86_64": - when: - os: linux store: steam @@ -10157,7 +10195,7 @@ AChat: installDir: AChat: {} launch: - /achat.exe: + "/achat.exe": - when: - os: windows store: steam @@ -10167,15 +10205,15 @@ ADAPTR: installDir: ADAPTR: {} launch: - /ADAPTR.app: + "/ADAPTR.app": - when: - os: mac store: steam - /ADAPTR.exe: + "/ADAPTR.exe": - when: - os: windows store: steam - /ADAPTR.x86_64: + "/ADAPTR.x86_64": - when: - bit: 64 os: linux @@ -10186,7 +10224,7 @@ ADIOS Amigos: installDir: ADIOS Amigos: {} launch: - /adios.exe: + "/adios.exe": - when: - bit: 64 os: windows @@ -10197,49 +10235,53 @@ ADM 2(WHEN WORLDS COLLIDE): installDir: ADM 2(WHEN WORLDS COLLIDE): {} launch: - /adm2/ADM II.exe: + "/adm2/ADM II.exe": - when: - bit: 64 os: windows store: steam steam: id: 1082780 -'ADOM: Ancient Domains of Mystery': +"ADOM: Ancient Domains of Mystery": files: - /ADOM/adom_steam/adom.cfg: + "/ADOM/adom_steam/adom.cfg": tags: - config when: - - store: steam - /ADOM/adom_steam/config-adom.noe: + - os: windows + store: steam + "/ADOM/adom_steam/config-adom.noe": tags: - config when: - - store: steam - /ADOM/adom_steam/config.noe: + - os: windows + store: steam + "/ADOM/adom_steam/config.noe": tags: - config when: - - store: steam - /ADOM/adom_steam/savedg/*.svg: + - os: windows + store: steam + "/ADOM/adom_steam/savedg/*.svg": tags: - save when: - - store: steam + - os: windows + store: steam gog: id: 1499192955 installDir: ADOM: {} launch: - /ADOM.app: + "/ADOM.app": - when: - os: mac store: steam - /adom: + "/adom": - when: - os: linux store: steam - /adom.exe: + "/adom.exe": - when: - os: windows store: steam @@ -10249,7 +10291,7 @@ ADR-Labelling Game: installDir: ADR-Labelling Game: {} launch: - /ADR-Labelling Game.exe: + "/ADR-Labelling Game.exe": - when: - os: windows store: steam @@ -10259,11 +10301,11 @@ ADULT SHERIFF: installDir: HENTAI SHERIFF: {} launch: - /HENTAI SHERIFF.exe: + "/HENTAI SHERIFF.exe": - when: - os: windows store: steam - /HENTAI SHERIFF.x86_64: + "/HENTAI SHERIFF.x86_64": - when: - os: linux store: steam @@ -10273,15 +10315,15 @@ ADventure Lib: installDir: ADventure Lib: {} launch: - /ADventureLib: + "/ADventureLib": - when: - os: mac store: steam - /ADventureLib.exe: + "/ADventureLib.exe": - when: - os: windows store: steam - /ADventureLib.sh: + "/ADventureLib.sh": - when: - os: linux store: steam @@ -10291,8 +10333,8 @@ AEGIS 2186: installDir: AEGIS 2186: {} launch: - /AEGIS2186.exe: - - arguments: '-windowed' + "/AEGIS2186.exe": + - arguments: "-windowed" when: - store: steam steam: @@ -10304,12 +10346,12 @@ AESCULAP OrthoPilot Elite VR Palpation: id: 686950 AEW Fight Forever: files: - /AEWFightForever/Saved/Config/WindowsNoEditor: + "/AEWFightForever/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /AEWFightForever/Saved/SaveGames: + "/AEWFightForever/Saved/SaveGames": tags: - save when: @@ -10317,7 +10359,7 @@ AEW Fight Forever: installDir: AEWFightForever: {} launch: - /AEWFightForever.exe: + "/AEWFightForever.exe": - when: - os: windows store: steam @@ -10327,13 +10369,13 @@ AF-ZERO: installDir: AF-ZERO: {} launch: - /afzero.exe: + "/afzero.exe": - when: - os: windows store: steam steam: id: 744280 -'AFFECTED: The Manor': +"AFFECTED: The Manor": installDir: AFFECTED The Manor: {} steam: @@ -10342,7 +10384,7 @@ AFL 23: installDir: AFL 23: {} launch: - /afl2.exe: + "/afl2.exe": - when: - bit: 64 os: windows @@ -10358,14 +10400,14 @@ AFL Evolution 2: installDir: AFL Evolution 2: {} launch: - /afl.exe: + "/afl.exe": - when: - store: steam steam: id: 856850 AFL Live: files: - /My Games/AFL Live: + "/My Games/AFL Live": tags: - config - save @@ -10380,21 +10422,21 @@ AFTERLIFE (2021): installDir: AFTERLIFE: {} launch: - /AFTERLIFE.exe: + "/AFTERLIFE.exe": - when: - os: windows store: steam - /Mac_Content.app: + "/Mac_Content.app": - when: - os: mac store: steam steam: id: 1619590 -'AFTERLIFE: KILLING DEATH': +"AFTERLIFE: KILLING DEATH": installDir: AFTERLIFE KILLING DEATH: {} launch: - /AFTERLIFE.exe: + "/AFTERLIFE.exe": - when: - bit: 64 os: windows @@ -10405,7 +10447,7 @@ AGENT 00111: installDir: AGENT 00111: {} launch: - /Agent 00111.exe: + "/Agent 00111.exe": - when: - os: windows store: steam @@ -10413,12 +10455,12 @@ AGENT 00111: id: 1077760 AGON - The Mysterious Codex (Trilogy): files: - /Private Moon Studios/AGON_Tmc: + "/Private Moon Studios/AGON_Tmc": tags: - config when: - os: windows - /Private Moon Studios/AGON_Tmc/Save: + "/Private Moon Studios/AGON_Tmc/Save": tags: - save when: @@ -10426,20 +10468,20 @@ AGON - The Mysterious Codex (Trilogy): installDir: AGON - The Mysterious Codex (Trilogy): {} launch: - /AGON.exe: + "/AGON.exe": - when: - os: windows store: steam steam: id: 410120 -'AGON: The Lost Sword of Toledo': +"AGON: The Lost Sword of Toledo": files: - /Private Moon Studios/AGON_Toledo/AGON.ini: + "/Private Moon Studios/AGON_Toledo/AGON.ini": tags: - config when: - os: windows - /Private Moon Studios/AGON_Toledo/Save: + "/Private Moon Studios/AGON_Toledo/Save": tags: - save when: @@ -10447,15 +10489,15 @@ AGON - The Mysterious Codex (Trilogy): installDir: AGON - The Lost Sword of Toledo: {} launch: - /AGON.exe: + "/AGON.exe": - when: - os: windows store: steam steam: id: 410130 -'AGOS: A Game of Space': +"AGOS: A Game of Space": files: - /AGOS/Saves: + "/AGOS/Saves": tags: - save when: @@ -10473,7 +10515,7 @@ AI Anomaly: installDir: AI Anomaly: {} launch: - /AI_Anomaly.exe: + "/AI_Anomaly.exe": - when: - os: windows store: steam @@ -10483,7 +10525,7 @@ AI Dummy: installDir: AI Dummy: {} launch: - /AI_Dummy.exe: + "/AI_Dummy.exe": - when: - bit: 64 os: windows @@ -10494,7 +10536,7 @@ AI Escort: installDir: AI Escort: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -10509,7 +10551,7 @@ AI Vendetta: installDir: AI Vendetta: {} launch: - /AIVendetta.exe: + "/AIVendetta.exe": - when: - os: windows store: steam @@ -10517,32 +10559,32 @@ AI Vendetta: id: 846320 AI War 2: files: - /PlayerData: + "/PlayerData": tags: - config when: - os: windows - /PlayerData/*.bak: + "/PlayerData/*.bak": tags: - save when: - os: windows - /PlayerData/*.dat: + "/PlayerData/*.dat": tags: - save when: - os: windows - /PlayerData/*.graphics: + "/PlayerData/*.graphics": tags: - save when: - os: windows - /PlayerData/Profiles/*.aiwprof: + "/PlayerData/Profiles/*.aiwprof": tags: - save when: - os: windows - /PlayerData/Save: + "/PlayerData/Save": tags: - save when: @@ -10551,8 +10593,8 @@ AI War 2: id: 1895572517 id: gogExtra: - - 1889174592 - 1512994101 + - 1889174592 - 1971284855 steamExtra: - 1196420 @@ -10562,14 +10604,14 @@ AI War 2: AI War 2: {} steam: id: 573410 -'AI War: Fleet Command': +"AI War: Fleet Command": files: - /RuntimeData: + "/RuntimeData": tags: - save when: - os: windows - /RuntimeData/Save: + "/RuntimeData/Save": tags: - config when: @@ -10579,53 +10621,53 @@ AI War 2: installDir: AI War Fleet Command: {} launch: - /AIWar.app: + "/AIWar.app": - when: - os: mac store: steam - /AIWar.exe: + "/AIWar.exe": - when: - os: windows store: steam - /AIWarLinux.x86: + "/AIWarLinux.x86": - when: - os: linux store: steam - /AIWarLinux.x86_64: + "/AIWarLinux.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 40400 -'AI: Rampage': +"AI: Rampage": installDir: AI Rampage: {} launch: - /config.exe: + "/config.exe": - when: - store: steam steam: id: 438020 -'AI: The Somnium Files': +"AI: The Somnium Files": files: - /Packages/44133SpikeChunsoftCo.Ltd.429137939DA7E_f545tdr3ah1rr/SystemAppData/wgs: + "/Packages/44133SpikeChunsoftCo.Ltd.429137939DA7E_f545tdr3ah1rr/SystemAppData/wgs": tags: - save when: - os: windows store: microsoft - /SpikeChunsoft/AI The Somnium Files/PSYNCAUTOSAVE: + "/SpikeChunsoft/AI The Somnium Files/PSYNCAUTOSAVE": tags: - save when: - os: windows - /SpikeChunsoft/AI The Somnium Files/PSYNCDEF*: + "/SpikeChunsoft/AI The Somnium Files/PSYNCDEF*": tags: - save when: - os: windows - /SpikeChunsoft/AI The Somnium Files/launcher.ini: + "/SpikeChunsoft/AI The Somnium Files/launcher.ini": tags: - config when: @@ -10635,7 +10677,7 @@ AI War 2: installDir: AI The Somnium Files: {} launch: - /Launcher.exe: + "/Launcher.exe": - when: - os: windows store: steam @@ -10643,26 +10685,28 @@ AI War 2: HKEY_CURRENT_USER/Software/SpikeChunsoft/AI_TheSomniumFiles: tags: - config + when: + - store: microsoft steam: id: 948740 -'AI: The Somnium Files - nirvanA Initiative': +"AI: The Somnium Files - nirvanA Initiative": files: - /SpikeChunsoft/AI Nirvana Initiative/Auto.dat: + "/SpikeChunsoft/AI Nirvana Initiative/Auto.dat": tags: - save when: - os: windows - /SpikeChunsoft/AI Nirvana Initiative/Manual.dat: + "/SpikeChunsoft/AI Nirvana Initiative/Manual.dat": tags: - save when: - os: windows - /SpikeChunsoft/AI Nirvana Initiative/System.dat: + "/SpikeChunsoft/AI Nirvana Initiative/System.dat": tags: - save when: - os: windows - /SpikeChunsoft/AI Nirvana Initiative/launcher.ini: + "/SpikeChunsoft/AI Nirvana Initiative/launcher.ini": tags: - config when: @@ -10670,7 +10714,7 @@ AI War 2: installDir: AI The Somnium Files 2: {} launch: - /Launcher.exe: + "/Launcher.exe": - when: - os: windows store: steam @@ -10687,7 +10731,7 @@ AIPD - Artificial Intelligence Police Department: installDir: AIPD: {} launch: - /FatBull.exe: + "/FatBull.exe": - when: - os: windows store: steam @@ -10697,11 +10741,11 @@ AIR Battlefront: installDir: AIR Battlefront: {} launch: - /AIR Battlefront.exe: + "/AIR Battlefront.exe": - when: - os: windows store: steam - /AIR Battlefront.x86_64: + "/AIR Battlefront.x86_64": - when: - os: linux store: steam @@ -10711,7 +10755,7 @@ AIR WARS: installDir: AIRWARS: {} launch: - /PC/AIRWARS.exe: + "/PC/AIRWARS.exe": - when: - os: windows store: steam @@ -10724,32 +10768,32 @@ AIRA VR: id: 1003230 AIdol: files: - /.renpy/AIdol-1507887105/*.save: + "/.renpy/AIdol-1507887105/*.save": tags: - save when: - os: linux - /.renpy/AIdol-1507887105/persistent: + "/.renpy/AIdol-1507887105/persistent": tags: - config when: - os: linux - /Library/RenPy/AIdol-1507887105/*.save: + "/Library/RenPy/AIdol-1507887105/*.save": tags: - save when: - os: mac - /Library/RenPy/AIdol-1507887105/persistent: + "/Library/RenPy/AIdol-1507887105/persistent": tags: - config when: - os: mac - /RenPy/AIdol-1507887105/*.save: + "/RenPy/AIdol-1507887105/*.save": tags: - save when: - os: windows - /RenPy/AIdol-1507887105/persistent: + "/RenPy/AIdol-1507887105/persistent": tags: - config when: @@ -10757,15 +10801,15 @@ AIdol: installDir: AIdol: {} launch: - /AIdol.app: + "/AIdol.app": - when: - os: mac store: steam - /AIdol.exe: + "/AIdol.exe": - when: - os: windows store: steam - /AIdol.sh: + "/AIdol.sh": - when: - os: linux store: steam @@ -10775,7 +10819,7 @@ AI*Shoujo: installDir: AI-Shoujo: {} launch: - /Initial Settings.exe: + "/Initial Settings.exe": - when: - bit: 64 os: windows @@ -10786,7 +10830,7 @@ AKAI NOROI: installDir: AKAI NOROI: {} launch: - /AKAI NOROI.exe: + "/AKAI NOROI.exe": - when: - bit: 64 os: windows @@ -10800,7 +10844,7 @@ ALIEN FIELD: installDir: ALIEN FIELD: {} launch: - /AlienField.exe: + "/AlienField.exe": - when: - store: steam steam: @@ -10809,7 +10853,7 @@ ALILIA-亚利利亚的精灵们: installDir: ALILIA: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -10819,15 +10863,15 @@ ALLBLACK Phase 1: installDir: ALLBLACK Phase 1: {} launch: - /ALLBLACKPhase1-1.7-market/ALLBLACKPhase1.app: + "/ALLBLACKPhase1-1.7-market/ALLBLACKPhase1.app": - when: - os: mac store: steam - /ALLBLACKPhase1-1.7-market/ALLBLACKPhase1.exe: + "/ALLBLACKPhase1-1.7-market/ALLBLACKPhase1.exe": - when: - os: windows store: steam - /ALLBLACKPhase1-1.7-market/ALLBLACKPhase1.sh: + "/ALLBLACKPhase1-1.7-market/ALLBLACKPhase1.sh": - when: - os: linux store: steam @@ -10835,7 +10879,7 @@ ALLBLACK Phase 1: id: 1134450 ALLTYNEX Second: files: - /SITER SKAIN/ALLTYNEX Second: + "/SITER SKAIN/ALLTYNEX Second": tags: - config - save @@ -10844,7 +10888,7 @@ ALLTYNEX Second: installDir: Alltynex Second: {} launch: - /alltynex2nd.exe: + "/alltynex2nd.exe": - when: - store: steam steam: @@ -10853,20 +10897,20 @@ ALPHA: installDir: ALPHA: {} launch: - /Alpha.exe: + "/Alpha.exe": - when: - os: windows store: steam steam: id: 1171880 -'ALTDEUS: Beyond Chronos': +"ALTDEUS: Beyond Chronos": steam: id: 150208 ALTERITY EXPERIENCE: installDir: Alterity Experience: {} launch: - /ALTEXP_UE4.exe: + "/ALTEXP_UE4.exe": - when: - os: windows store: steam @@ -10874,12 +10918,12 @@ ALTERITY EXPERIENCE: id: 1143720 ALTF4: files: - /ALTF4_F/Saved/Config/WindowsNoEditor: + "/ALTF4_F/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /ALTF4_F/Saved/SaveGames: + "/ALTF4_F/Saved/SaveGames": tags: - save when: @@ -10887,12 +10931,12 @@ ALTF4: installDir: ALTF4: {} launch: - /ALTF4_F.exe: + "/ALTF4_F.exe": - when: - store: steam steam: id: 1137460 -'ALaLa: Wake Mi Up!': +"ALaLa: Wake Mi Up!": installDir: alala Wake Mi Up!: {} steam: @@ -10901,7 +10945,7 @@ AL・FINE: installDir: ALFINE: {} launch: - /alfine.exe: + "/alfine.exe": - when: - os: windows store: steam @@ -10912,17 +10956,17 @@ AMAZEing Adventures: aMAZEing adventures: {} steam: id: 552870 -'AMaze Achievements: Darkness': +"AMaze Achievements: Darkness": steam: id: 710440 -'AMaze Achievements: Forest': +"AMaze Achievements: Forest": steam: id: 710450 AMazing TD: installDir: AMazing TD: {} launch: - /AMazingTD.exe: + "/AMazingTD.exe": - when: - os: windows store: steam @@ -10932,7 +10976,7 @@ ANAREA Battle Royale: installDir: ANAREA Battle Royale: {} launch: - /Anarea.exe: + "/Anarea.exe": - when: - bit: 64 os: windows @@ -10943,20 +10987,20 @@ ANDROMALIUS: installDir: ANDROMALIUS: {} launch: - /Andromalius.exe: + "/Andromalius.exe": - when: - os: windows store: steam steam: id: 1011090 -'ANNO: Mutationem': +"ANNO: Mutationem": files: - /AppData/LocalLow/Thinkingstars/Anno/SavesDir: + "/AppData/LocalLow/Thinkingstars/Anno/SavesDir": tags: - save when: - os: windows - /AppData/LocalLow/Thinkingstars/Anno/SavesDir/GameData.db: + "/AppData/LocalLow/Thinkingstars/Anno/SavesDir/GameData.db": tags: - config when: @@ -10969,7 +11013,7 @@ ANDROMALIUS: installDir: ANNOMutationem: {} launch: - /Anno.exe: + "/Anno.exe": - when: - bit: 64 os: windows @@ -10984,11 +11028,11 @@ ANOIX: installDir: ANOIX: {} launch: - /Anoix.app: + "/Anoix.app": - when: - os: mac store: steam - /Anoix.exe: + "/Anoix.exe": - when: - os: windows store: steam @@ -10998,7 +11042,7 @@ ANSIBLE: installDir: ANSIBLE: {} launch: - /ANSIBLE.exe: + "/ANSIBLE.exe": - when: - os: windows store: steam @@ -11011,7 +11055,7 @@ ANVIL: installDir: ANVIL: {} launch: - /ANVIL.exe: + "/ANVIL.exe": - when: - os: windows store: steam @@ -11021,25 +11065,25 @@ ANYKEY: installDir: ANYKEY: {} launch: - /ANYKEY.app/Contents/MacOS/ANYKEY: + "/ANYKEY.app/Contents/MacOS/ANYKEY": - when: - os: mac store: steam - /ANYKEY.exe: + "/ANYKEY.exe": - when: - os: windows store: steam steam: id: 790450 -'ANti: Virus Destroyer': +"ANti: Virus Destroyer": installDir: ANti: {} launch: - /Anti.exe: + "/Anti.exe": - when: - os: windows store: steam - /SS.exe: + "/SS.exe": - when: - os: windows store: steam @@ -11047,12 +11091,12 @@ ANYKEY: id: 762860 AO International Tennis: files: - /My Games/AO Tennis: + "/My Games/AO Tennis": tags: - save when: - os: windows - /My Games/AO Tennis/config.ini: + "/My Games/AO Tennis/config.ini": tags: - config when: @@ -11060,7 +11104,7 @@ AO International Tennis: installDir: AO Tennis: {} launch: - /tennis.exe: + "/tennis.exe": - when: - bit: 64 os: windows @@ -11071,7 +11115,7 @@ AO Tennis 2: installDir: AO International Tennis 2: {} launch: - /tennis2.exe: + "/tennis2.exe": - when: - bit: 64 os: windows @@ -11082,21 +11126,21 @@ AO Tennis 2 Tools: installDir: AOIT2T: {} launch: - /tennis2.exe: + "/tennis2.exe": - when: - bit: 64 os: windows store: steam steam: id: 1089570 -'AOK: Adventures of Kok': +"AOK: Adventures of Kok": steam: id: 686690 AOS Manager: installDir: AOSManager: {} launch: - /AosManager.exe: + "/AosManager.exe": - when: - os: windows store: steam @@ -11104,7 +11148,7 @@ AOS Manager: id: 1108360 APB Reloaded: files: - /APBGame/Config: + "/APBGame/Config": tags: - config when: @@ -11112,7 +11156,7 @@ APB Reloaded: installDir: APB Reloaded: {} launch: - /Launcher/APBLauncher.exe: + "/Launcher/APBLauncher.exe": - when: - store: steam steam: @@ -11121,7 +11165,7 @@ APOX: installDir: APOX: {} launch: - /GameClient/APOX.exe: + "/GameClient/APOX.exe": - when: - store: steam steam: @@ -11130,7 +11174,7 @@ APT: installDir: APT: {} launch: - /APT_AlphaDemo.exe: + "/APT_AlphaDemo.exe": - when: - store: steam steam: @@ -11139,15 +11183,15 @@ AQUARYOUNS World: installDir: AQUARYOUNS World: {} launch: - /AQW.app: + "/AQW.app": - when: - os: mac store: steam - /AQW.exe: + "/AQW.exe": - when: - os: windows store: steam - /AQW.x64: + "/AQW.x64": - when: - bit: 64 os: linux @@ -11156,7 +11200,7 @@ AQUARYOUNS World: id: 1092500 AQtion: files: - /action: + "/action": tags: - save when: @@ -11166,16 +11210,16 @@ AQtion: installDir: AQtion: {} launch: - /aqtion: + "/aqtion": - when: - bit: 64 os: linux store: steam - /aqtion.exe: + "/aqtion.exe": - when: - os: windows store: steam - /launch.sh: + "/launch.sh": - when: - os: mac store: steam @@ -11183,7 +11227,7 @@ AQtion: id: 1978800 AR-K: files: - /AppData/LocalLow/Gato_Salvaje/ark1/datos.txt: + "/AppData/LocalLow/Gato_Salvaje/ark1/datos.txt": tags: - save when: @@ -11191,42 +11235,42 @@ AR-K: installDir: Ar-k: {} launch: - /Launcher.app: + "/Launcher.app": - when: - os: mac store: steam - /Launcher.exe: + "/Launcher.exe": - when: - os: windows store: steam - /Launcher.x86: + "/Launcher.x86": - when: - bit: 32 os: linux store: steam - /Launcher.x86_64: + "/Launcher.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 269890 -'AR-K: End Game': +"AR-K: End Game": steam: id: 958910 -'AR-K: The Great Escape': +"AR-K: The Great Escape": installDir: ARK The Great Sphere: {} launch: - /ark3.app: + "/ark3.app": - when: - os: mac store: steam - /ark3.exe: + "/ark3.exe": - when: - os: windows store: steam - /ark3.x86: + "/ark3.x86": - when: - os: linux store: steam @@ -11236,11 +11280,14 @@ ARC: installDir: ARC: {} launch: - /arc.exe: + "/arc.exe": - when: - bit: 32 os: windows store: steam + - bit: 64 + os: windows + store: steam steam: id: 1124550 ARC Raiders: @@ -11250,11 +11297,11 @@ AREA 4643: installDir: AREA4643: {} launch: - /yoroshi.app: + "/yoroshi.app": - when: - os: mac store: steam - /yoroshi.exe: + "/yoroshi.exe": - when: - os: windows store: steam @@ -11264,7 +11311,7 @@ AREA 51 - DEFENCE: installDir: AREA 51 - DEFENCE: {} launch: - /AREA 51 - DEFENCE.exe: + "/AREA 51 - DEFENCE.exe": - when: - os: windows store: steam @@ -11277,7 +11324,7 @@ ARK - The Lost Fairytale: installDir: ARK -the lost fairytale-: {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: @@ -11286,11 +11333,11 @@ ARK BOX Unlimited: installDir: ARK BOX Unlimited: {} launch: - /ARKBOX.exe: + "/ARKBOX.exe": - when: - os: windows store: steam - /run.sh: + "/run.sh": - when: - os: linux store: steam @@ -11304,39 +11351,39 @@ ARK Park: Project Peacock: {} steam: id: 529910 -'ARK: Survival Ascended': +"ARK: Survival Ascended": installDir: ARK Survival Ascended: {} launch: - /ShooterGame/Binaries/Win64/ArkAscended.exe: - - arguments: '-VideoReplayEnabled=false' + "/ShooterGame/Binaries/Win64/ArkAscended.exe": + - arguments: "-VideoReplayEnabled=false" when: - bit: 64 os: windows store: steam - workingDir: /ShooterGame/Binaries/Win64 - /ShooterGame/Binaries/Win64/ArkAscended_BE.exe: - - arguments: '-VideoReplayEnabled=false' + workingDir: "/ShooterGame/Binaries/Win64" + "/ShooterGame/Binaries/Win64/ArkAscended_BE.exe": + - arguments: "-VideoReplayEnabled=false" when: - bit: 64 os: windows store: steam - workingDir: /ShooterGame/Binaries/Win64 + workingDir: "/ShooterGame/Binaries/Win64" steam: id: 2399830 -'ARK: Survival Evolved': +"ARK: Survival Evolved": files: - /ShooterGame/Saved/Config: + "/ShooterGame/Saved/Config": tags: - config when: - os: windows - /ShooterGame/Saved/Config/LinuxNoEditor: + "/ShooterGame/Saved/Config/LinuxNoEditor": tags: - save when: - os: linux - /ShooterGame/Saved/SavedArksLocal: + "/ShooterGame/Saved/SavedArksLocal": tags: - save when: @@ -11344,123 +11391,123 @@ ARK Park: installDir: ARK: {} launch: - /ShooterGame.app: + "/ShooterGame.app": - when: - os: mac store: steam - /ShooterGame/Binaries/Linux/ShooterGame: + "/ShooterGame/Binaries/Linux/ShooterGame": - when: - os: linux store: steam - /ShooterGame/Binaries/Win64/ShooterGame.exe: + "/ShooterGame/Binaries/Win64/ShooterGame.exe": - when: - bit: 64 os: windows store: steam - workingDir: /ShooterGame/Binaries/Win64 - - arguments: '-TotalConversionMod=0' + workingDir: "/ShooterGame/Binaries/Win64" + - arguments: "-TotalConversionMod=0" when: - bit: 64 os: windows store: steam - workingDir: /ShooterGame/Binaries/Win64 - - arguments: '-resetres' + workingDir: "/ShooterGame/Binaries/Win64" + - arguments: "-resetres" when: - bit: 64 os: windows store: steam - workingDir: /ShooterGame/Binaries/Win64 - /ShooterGame/Binaries/Win64/ShooterGame_BE.exe: + workingDir: "/ShooterGame/Binaries/Win64" + "/ShooterGame/Binaries/Win64/ShooterGame_BE.exe": - when: - bit: 64 os: windows store: steam - workingDir: /ShooterGame/Binaries/Win64 - - arguments: '-sm4 -nomansky' + workingDir: "/ShooterGame/Binaries/Win64" + - arguments: "-sm4 -nomansky" when: - bit: 64 os: windows store: steam - workingDir: /ShooterGame/Binaries/Win64 - - arguments: '-allowansel' + workingDir: "/ShooterGame/Binaries/Win64" + - arguments: "-allowansel" when: - bit: 64 os: windows store: steam - workingDir: /ShooterGame/Binaries/Win64 - - arguments: '-lowmemory -sm4 -nomansky' + workingDir: "/ShooterGame/Binaries/Win64" + - arguments: "-lowmemory -sm4 -nomansky" when: - bit: 64 os: windows store: steam - workingDir: /ShooterGame/Binaries/Win64 - - arguments: '-nomansky' + workingDir: "/ShooterGame/Binaries/Win64" + - arguments: "-nomansky" when: - bit: 64 os: windows store: steam - workingDir: /ShooterGame/Binaries/Win64 - - arguments: '4' + workingDir: "/ShooterGame/Binaries/Win64" + - arguments: "4" when: - bit: 64 os: windows store: steam - workingDir: /ShooterGame/Binaries/Win64 + workingDir: "/ShooterGame/Binaries/Win64" steam: id: 346110 -'ARK: Survival of the Fittest': +"ARK: Survival of the Fittest": installDir: ARK SOTF: {} launch: - /ShooterGame.app: + "/ShooterGame.app": - when: - os: mac store: steam - /ShooterGame/Binaries/Linux/ShooterGame: + "/ShooterGame/Binaries/Linux/ShooterGame": - when: - os: linux store: steam - /ShooterGame/Binaries/Win64/ShooterGame_BE.exe: + "/ShooterGame/Binaries/Win64/ShooterGame_BE.exe": - when: - os: windows store: steam - workingDir: /ShooterGame/Binaries/Win64 - - arguments: '-sm4 -lowmemory' + workingDir: "/ShooterGame/Binaries/Win64" + - arguments: "-sm4 -lowmemory" when: - os: windows store: steam - workingDir: /ShooterGame/Binaries/Win64 - - arguments: '-nomansky' + workingDir: "/ShooterGame/Binaries/Win64" + - arguments: "-nomansky" when: - os: windows store: steam - workingDir: /ShooterGame/Binaries/Win64 - - arguments: '4' + workingDir: "/ShooterGame/Binaries/Win64" + - arguments: "4" when: - os: windows store: steam - workingDir: /ShooterGame/Binaries/Win64 + workingDir: "/ShooterGame/Binaries/Win64" steam: id: 407530 ARM Planetary Prospectors Asteroid Resource Mining: installDir: ARMPP: {} launch: - /ARM.exe: + "/ARM.exe": - when: - os: windows store: steam steam: id: 344890 -'ARTé: Mecenas': +"ARTé: Mecenas": installDir: ARTè Mecenas™: {} launch: - /ArteMecenas.app/Contents/MacOS/ArteMecenas: + "/ArteMecenas.app/Contents/MacOS/ArteMecenas": - when: - os: mac store: steam - /ArteMecenas.exe: + "/ArteMecenas.exe": - when: - os: windows store: steam @@ -11470,36 +11517,39 @@ AS+CEND: installDir: Ascend: {} launch: - /ascend.exe: + "/ascend.exe": - when: - bit: 32 os: windows store: steam + - bit: 64 + os: windows + store: steam steam: id: 866430 -'ASA: A Space Adventure - Remastered Edition': +"ASA: A Space Adventure - Remastered Edition": installDir: ASA Remastered Edition: {} launch: - /ASA Remastered.app: + "/ASA Remastered.app": - when: - os: mac store: steam - /ASA_R_Windows.exe: + "/ASA_R_Windows.exe": - when: - os: windows store: steam - /start: + "/start": - when: - os: linux store: steam steam: id: 329980 -'ASCENT: Crash Landing': +"ASCENT: Crash Landing": installDir: ASCENT Crash Landing: {} launch: - /ASCENT_Crash_Landing.exe: + "/ASCENT_Crash_Landing.exe": - when: - os: windows store: steam @@ -11509,38 +11559,38 @@ ASCENXION: installDir: ASCENXION: {} launch: - /ASCENXION.exe: + "/ASCENXION.exe": - when: - os: windows store: steam steam: id: 1000000 -'ASCII Achievement Mania: Space Shooter': +"ASCII Achievement Mania: Space Shooter": steam: id: 838500 ASCII Attack: installDir: ASCII Attack: {} launch: - /Ascii Attack.exe: + "/Ascii Attack.exe": - when: - os: windows store: steam steam: id: 370490 -'ASCII Game Series: Beginning': +"ASCII Game Series: Beginning": steam: id: 798550 -'ASCII Game Series: Blocks': +"ASCII Game Series: Blocks": steam: id: 808570 -'ASCII Game Series: Maze': +"ASCII Game Series: Maze": steam: id: 832790 -'ASCII Game Series: Pinball': +"ASCII Game Series: Pinball": steam: id: 810160 -'ASCII Game Series: Snake': +"ASCII Game Series: Snake": steam: id: 805240 ASCII Wars: @@ -11550,21 +11600,21 @@ ASCIIDENT: installDir: ASCIIDENT: {} launch: - /ASCIIDENT.exe: + "/ASCIIDENT.exe": - when: - os: windows store: steam steam: id: 1113220 -'ASDAD: All-Stars Dungeons and Diamonds': +"ASDAD: All-Stars Dungeons and Diamonds": installDir: ASDAD: {} launch: - /ASDAD: + "/ASDAD": - when: - os: mac store: steam - /ASDAD.exe: + "/ASDAD.exe": - when: - os: windows store: steam @@ -11574,7 +11624,7 @@ ASRECorp: installDir: ASRECorp: {} launch: - /ASRECorp.exe: + "/ASRECorp.exe": - when: - os: windows store: steam @@ -11584,7 +11634,7 @@ ASTA: installDir: ASTA Online: {} launch: - /AstaPatch.exe: + "/AstaPatch.exe": - when: - os: windows store: steam @@ -11594,7 +11644,7 @@ ASTA Online V2 CBT: installDir: ASTA Online Close Beta Test: {} launch: - /AstaPatch.exe: + "/AstaPatch.exe": - when: - os: windows store: steam @@ -11607,21 +11657,21 @@ ASTRAL: installDir: ASTRAL: {} launch: - /linux32_/nw: + "/linux32_/nw": - when: - bit: 32 os: linux store: steam - /linux64_/nw: + "/linux64_/nw": - when: - bit: 64 os: linux store: steam - /nw.exe: + "/nw.exe": - when: - os: windows store: steam - /nwjs.app: + "/nwjs.app": - when: - os: mac store: steam @@ -11636,7 +11686,7 @@ ASTROPUPPA: installDir: ASTROPUPPA: {} launch: - /ASTROPUPPA.exe: + "/ASTROPUPPA.exe": - when: - os: windows store: steam @@ -11644,12 +11694,12 @@ ASTROPUPPA: id: 1184470 ATOM RPG: files: - /AppData/LocalLow/AtomTeam/Atom: + "/AppData/LocalLow/AtomTeam/Atom": tags: - save when: - os: windows - /unity3d/AtomTeam: + "/unity3d/AtomTeam": tags: - save when: @@ -11659,16 +11709,16 @@ ATOM RPG: installDir: ATOM RPG: {} launch: - /AtomRPG.app: + "/AtomRPG.app": - when: - os: mac store: steam - /AtomRPG.x86_64: + "/AtomRPG.x86_64": - when: - bit: 64 os: linux store: steam - /AtomRPG_x64.exe: + "/AtomRPG_x64.exe": - when: - bit: 64 os: windows @@ -11681,17 +11731,17 @@ ATOM RPG: id: 552620 ATOM RPG Trudograd: files: - /AppData/LocalLow/AtomTeam/Atom_Trudograd: + "/AppData/LocalLow/AtomTeam/Atom_Trudograd": tags: - save when: - os: windows - /unity3d/AtomTeam/Atom_Trudograd/*.as: + "/unity3d/AtomTeam/Atom_Trudograd/*.as": tags: - save when: - os: linux - /unity3d/AtomTeam/Atom_Trudograd/prefs: + "/unity3d/AtomTeam/Atom_Trudograd/prefs": tags: - config when: @@ -11701,7 +11751,7 @@ ATOM RPG Trudograd: installDir: ATOM RPG Trudograd: {} launch: - /Trudograd_osx.app: + "/Trudograd_osx.app": - when: - os: mac store: steam @@ -11713,7 +11763,7 @@ ATOM RPG Trudograd: id: 1139940 ATRI -My Dear Moments-: files: - /userdata//1230140/remote: + "/userdata//1230140/remote": tags: - save when: @@ -11722,7 +11772,7 @@ ATRI -My Dear Moments-: installDir: ATRI -My Dear Moments-: {} launch: - /ATRI-MyDearMoments-.exe: + "/ATRI-MyDearMoments-.exe": - when: - os: windows store: steam @@ -11732,25 +11782,25 @@ ATRIUM: installDir: ATRIUM: {} launch: - /ATRIUM.app: + "/ATRIUM.app": - when: - os: mac store: steam - /ATRIUM.exe: + "/ATRIUM.exe": - when: - os: windows store: steam - /ATRIUM.x86_64: + "/ATRIUM.x86_64": - when: - os: linux store: steam steam: id: 990960 -'ATROFIL: THE KEY': +"ATROFIL: THE KEY": installDir: ATROFIL THE KEY: {} launch: - /ATROFIL_The_key.exe: + "/ATROFIL_The_key.exe": - when: - bit: 64 os: windows @@ -11761,11 +11811,11 @@ ATTACK OF THE EVIL POOP: installDir: ATTACK OF THE EVIL POOP: {} launch: - /Attack of the Evil Poop.exe: + "/Attack of the Evil Poop.exe": - when: - os: windows store: steam - /Contents/MacOS/MAC: + "/Contents/MacOS/MAC": - when: - os: mac store: steam @@ -11775,7 +11825,7 @@ ATV Drift & Tricks: installDir: ATV Drift & tricks: {} launch: - /ATV.exe: + "/ATV.exe": - when: - os: windows store: steam @@ -11785,7 +11835,7 @@ ATV GP: installDir: ATV GP: {} launch: - /ATVgp.exe: + "/ATVgp.exe": - when: - store: steam steam: @@ -11794,7 +11844,7 @@ ATV Quadracer Ultimate: installDir: ATV Quadracer Ultimate: {} launch: - /ATV Quadracer Ultimate.exe: + "/ATV Quadracer Ultimate.exe": - when: - os: windows store: steam @@ -11809,11 +11859,11 @@ AV-17: installDir: AV-17: {} launch: - /AV-17.exe: + "/AV-17.exe": - when: - os: windows store: steam - /AV_17: + "/AV_17": - when: - os: linux store: steam @@ -11824,17 +11874,17 @@ AVA: AVA: {} steam: id: 1143680 -'AVA: Dark History': +"AVA: Dark History": installDir: AVA Dark History: {} steam: id: 1162320 -'AVA: Dog Tag': +"AVA: Dog Tag": installDir: A.V.A: {} launch: - /Binaries/AVA.exe: - - arguments: '-serveraddr\"AVA-LB-65279c13d91c7d86.elb.us-east-1.amazonaws.com:28004\" -redui' + "/Binaries/AVA.exe": + - arguments: "-serveraddr\\\"AVA-LB-65279c13d91c7d86.elb.us-east-1.amazonaws.com:28004\\\" -redui" when: - os: windows store: steam @@ -11844,21 +11894,21 @@ AVARIAvs: installDir: AVARIAvs: {} launch: - /AVARIAvs.app/Contents/MacOS/AVARIAvs: + "/AVARIAvs.app/Contents/MacOS/AVARIAvs": - when: - os: mac store: steam - /AVARIAvs.exe: + "/AVARIAvs.exe": - when: - os: windows store: steam steam: id: 816560 -'AVATAR: Consolidate': +"AVATAR: Consolidate": installDir: AVATAR Consolidate: {} launch: - /AVATAR Consolidate.exe: + "/AVATAR Consolidate.exe": - when: - store: steam steam: @@ -11867,11 +11917,11 @@ AVSEQ: installDir: Avseq: {} launch: - /Avseq-Mac.app: + "/Avseq-Mac.app": - when: - os: mac store: steam - /Avseq-Win.exe: + "/Avseq-Win.exe": - when: - os: windows store: steam @@ -11881,7 +11931,7 @@ AWA: installDir: AWA: {} launch: - /AWA.exe: + "/AWA.exe": - when: - os: windows store: steam @@ -11891,15 +11941,15 @@ AWAKE - Definitive Edition: installDir: AWAKE - Definitive Edition: {} launch: - /AWAKE - Definitive Edition Linux/AWAKE - Definitive Edition.x86: + "/AWAKE - Definitive Edition Linux/AWAKE - Definitive Edition.x86": - when: - os: linux store: steam - /AWAKE - Definitive Edition Win/AWAKE - Definitive Edition.exe: + "/AWAKE - Definitive Edition Win/AWAKE - Definitive Edition.exe": - when: - os: windows store: steam - /AWAKE_Mac.app: + "/AWAKE_Mac.app": - when: - os: mac store: steam @@ -11909,31 +11959,31 @@ AWS Argentina Wingshooting Simulator: installDir: AWS Wingshooting Simulator: {} launch: - /aws.app/Contents/MacOS/aws: + "/aws.app/Contents/MacOS/aws": - when: - os: mac store: steam - /aws.exe: + "/aws.exe": - when: - bit: 64 os: windows store: steam steam: id: 718410 -'AX:EL - Air XenoDawn': +"AX:EL - Air XenoDawn": installDir: AX EL: {} launch: - /Air XenoDawn.exe: + "/Air XenoDawn.exe": - when: - store: steam steam: id: 319830 -'AXE:SURVIVAL': +"AXE:SURVIVAL": installDir: AXE: {} launch: - /windows_content/AXESURVIVAL.exe: + "/windows_content/AXESURVIVAL.exe": - when: - os: windows store: steam @@ -11943,24 +11993,24 @@ AXYOS: installDir: AXYOS: {} launch: - /Binaries/Win32/UDK.exe: + "/Binaries/Win32/UDK.exe": - when: - os: windows store: steam steam: id: 318100 -'AXYOS: Battlecards': +"AXYOS: Battlecards": installDir: AXYOS_Battlecards: {} launch: - /AXYOS_Battlecards.exe: + "/AXYOS_Battlecards.exe": - when: - store: steam steam: id: 730450 AaaaaAAaaaAAAaaAAAAaAAAAA!!! - A Reckless Disregard for Gravity: files: - /AaaaaRecklessDisregard: + "/AaaaaRecklessDisregard": tags: - config - save @@ -11969,20 +12019,20 @@ AaaaaAAaaaAAAaaAAAAaAAAAA!!! - A Reckless Disregard for Gravity: installDir: AaaaaAAaaaAAAaaAAAAaAAAAA!!!: {} launch: - /main.exe: + "/main.exe": - when: - store: steam steam: id: 15520 AaaaaAAaaaAAAaaAAAAaAAAAA!!! for the Awesome: files: - /.config/unity3d/Dejobaan Games/Awesome: + "/.config/unity3d/Dejobaan Games/Awesome": tags: - config - save when: - os: linux - /Library/Preferences/unity.Dejobaan Games.Awesome.plist: + "/Library/Preferences/unity.Dejobaan Games.Awesome.plist": tags: - config - save @@ -11991,52 +12041,52 @@ AaaaaAAaaaAAAaaAAAAaAAAAA!!! for the Awesome: installDir: Awesome: {} launch: - /Awesome.app: + "/Awesome.app": - when: - os: mac store: steam - - arguments: '-vr -adapter 1' + - arguments: "-vr -adapter 1" when: - os: mac store: steam - - arguments: '-vr -show-screen-selector -adapter 1' + - arguments: "-vr -show-screen-selector -adapter 1" when: - os: mac store: steam - /Awesome.exe: + "/Awesome.exe": - when: - os: windows store: steam - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" when: - os: windows store: steam - - arguments: '-vr -adapter 1 -force-d3d11' + - arguments: "-vr -adapter 1 -force-d3d11" when: - os: windows store: steam - - arguments: '-vr -show-screen-selector -adapter 1' + - arguments: "-vr -show-screen-selector -adapter 1" when: - os: windows store: steam - /Awesome_DirectToRift.exe: - - arguments: '-vr -force-d3d11' + "/Awesome_DirectToRift.exe": + - arguments: "-vr -force-d3d11" when: - os: windows store: steam - - arguments: '-vr' + - arguments: "-vr" when: - os: windows store: steam - /startgame.sh: + "/startgame.sh": - when: - os: linux store: steam - - arguments: '-vr -show-screen-selector' + - arguments: "-vr -show-screen-selector" when: - os: linux store: steam - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" when: - os: linux store: steam @@ -12049,7 +12099,7 @@ AaaaaAAaaaAAAaaAAAAaAAAAA!!! for the Awesome: id: 15560 Aaero: files: - /userdata//499890/remote/savegame.dat: + "/userdata//499890/remote/savegame.dat": tags: - save when: @@ -12058,7 +12108,7 @@ Aaero: installDir: Aaero: {} launch: - /Aaero.exe: + "/Aaero.exe": - when: - bit: 64 os: windows @@ -12069,24 +12119,24 @@ Aaero: - config steam: id: 499890 -'Aah, Halloween pie!': +"Aah, Halloween pie!": installDir: - 'Aah, Halloween pie!': {} + "Aah, Halloween pie!": {} launch: - /AAH HALLOWEEN PIE.exe: + "/AAH HALLOWEEN PIE.exe": - when: - os: windows store: steam steam: id: 1171990 -'Aarklash: Legacy': +"Aarklash: Legacy": files: - /Aarklash Legacy/Config.xml: + "/Aarklash Legacy/Config.xml": tags: - config when: - os: windows - /Aarklash Legacy/Profiles: + "/Aarklash Legacy/Profiles": tags: - save when: @@ -12096,31 +12146,31 @@ Aaero: installDir: Aarklash Legacy: {} launch: - /Aarklash.exe: + "/Aarklash.exe": - when: - os: windows store: steam steam: id: 222640 -Aaru's Awakening: +"Aaru's Awakening": files: - /aaru_Data/StreamingAssets/offlscore.xml: + "/aaru_Data/StreamingAssets/offlscore.xml": tags: - save when: - os: windows installDir: - Aaru's Awakening: {} + "Aaru's Awakening": {} launch: - /aaru.app: + "/aaru.app": - when: - os: mac store: steam - /aaru.exe: + "/aaru.exe": - when: - os: windows store: steam - /aaru.x86: + "/aaru.x86": - when: - os: linux store: steam @@ -12130,7 +12180,7 @@ Abalone: installDir: Abalone: {} launch: - /Abalone.exe: + "/Abalone.exe": - when: - os: windows store: steam @@ -12140,7 +12190,7 @@ Abalyte: installDir: Abalyte: {} launch: - /Abalyte.exe: + "/Abalyte.exe": - when: - os: windows store: steam @@ -12152,15 +12202,15 @@ Abandon Ship: installDir: Abandon Ship: {} launch: - /AbandonShip: + "/AbandonShip": - when: - os: linux store: steam - /AbandonShip.app: + "/AbandonShip.app": - when: - os: mac store: steam - /AbandonShip.exe: + "/AbandonShip.exe": - when: - os: windows store: steam @@ -12170,7 +12220,7 @@ Abandoned: installDir: Abandoned: {} launch: - /Abandoned.exe: + "/Abandoned.exe": - when: - os: windows store: steam @@ -12188,17 +12238,17 @@ Abandoned Snowy Castle: installDir: Abandoned Snowy Castle: {} launch: - /ASC.exe: + "/ASC.exe": - when: - os: windows store: steam steam: id: 824440 -'Abandoned: Chestnut Lodge Asylum': +"Abandoned: Chestnut Lodge Asylum": installDir: Abandoned Chestnut Lodge Asylum: {} launch: - /Abandoned.exe: + "/Abandoned.exe": - when: - os: windows store: steam @@ -12208,7 +12258,7 @@ Abandonment: installDir: yiqi: {} launch: - /迷宫.exe: + "/迷宫.exe": - when: - bit: 64 os: windows @@ -12224,7 +12274,7 @@ Abasralsa: installDir: Abasralsa: {} launch: - /Abasralsa.exe: + "/Abasralsa.exe": - when: - os: windows store: steam @@ -12234,7 +12284,7 @@ Abatron: installDir: Abatron: {} launch: - /Abatron.exe: + "/Abatron.exe": - when: - bit: 64 os: windows @@ -12245,25 +12295,25 @@ Abberbury: installDir: Abberbury: {} launch: - /Abberbury.app: + "/Abberbury.app": - when: - os: mac store: steam - /Abberbury.exe: + "/Abberbury.exe": - when: - bit: 64 os: windows store: steam - /Abberbury.x86_64: + "/Abberbury.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 921730 -Abbot's Book: +"Abbot's Book": installDir: - Abbot's Book Demo: {} + "Abbot's Book Demo": {} steam: id: 434430 Abducted: @@ -12273,7 +12323,7 @@ Abduction Action! Plus: installDir: AbductionActionPlus: {} launch: - /AbductionActionPC.exe: + "/AbductionActionPC.exe": - when: - os: windows store: steam @@ -12283,20 +12333,20 @@ Abduction Bit: installDir: Abduction Bit: {} launch: - /Abduction Bit.exe: + "/Abduction Bit.exe": - when: - os: windows store: steam steam: id: 550810 -'Abduction Episode 1: Her Name was Sarah': +"Abduction Episode 1: Her Name was Sarah": steam: id: 600360 -'Abduction Prologue: The Story of Jonathan Blake': +"Abduction Prologue: The Story of Jonathan Blake": installDir: Abduction Prologue: {} launch: - /Abduction.exe: + "/Abduction.exe": - when: - os: windows store: steam @@ -12304,7 +12354,7 @@ Abduction Bit: id: 498460 Abermore: files: - /AppData/LocalLow/Four Circle Interactive/Abermore: + "/AppData/LocalLow/Four Circle Interactive/Abermore": tags: - config - save @@ -12318,31 +12368,34 @@ Aberoth: installDir: Aberoth: {} launch: - /Aberoth.app: + "/Aberoth.app": - when: - bit: 64 os: mac store: steam - /Aberoth.exe: + "/Aberoth.exe": - when: - os: windows store: steam - /launch_aberoth: + "/launch_aberoth": - when: - bit: 32 os: linux store: steam + - bit: 64 + os: linux + store: steam steam: id: 354200 -Abha "Light on the Path": +"Abha \"Light on the Path\"": installDir: Abha: {} launch: - /ABHA.exe: + "/ABHA.exe": - when: - os: windows store: steam - /game.exe: + "/game.exe": - when: - store: steam steam: @@ -12351,11 +12404,11 @@ Able Black: installDir: Able Black: {} launch: - /AbleBlack.app: + "/AbleBlack.app": - when: - os: mac store: steam - /AbleBlack.exe: + "/AbleBlack.exe": - when: - os: windows store: steam @@ -12365,17 +12418,17 @@ Ablepsia: installDir: Ablepsia: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam steam: id: 713680 -'Abnormal World: Season One': +"Abnormal World: Season One": installDir: Abnormal world: {} launch: - /abnormal world.exe: + "/abnormal world.exe": - when: - os: windows store: steam @@ -12385,11 +12438,11 @@ Abo Khashem: installDir: Abo Khashem: {} launch: - /AboKhashem.app/Contents/MacOS/AboKhashem: + "/AboKhashem.app/Contents/MacOS/AboKhashem": - when: - os: mac store: steam - /AboKhashem.exe: + "/AboKhashem.exe": - when: - os: windows store: steam @@ -12399,7 +12452,7 @@ Abo Mando: installDir: ABO MANDO: {} launch: - /ABOMANDO.exe: + "/ABOMANDO.exe": - when: - os: windows store: steam @@ -12407,7 +12460,7 @@ Abo Mando: id: 429950 Abode: files: - /AppData/LocalLow/OverflowGames/Abode/PlayerPrefs.txt: + "/AppData/LocalLow/OverflowGames/Abode/PlayerPrefs.txt": tags: - save when: @@ -12429,7 +12482,7 @@ Abomi Nation: installDir: Abomi Nation: {} launch: - /Abomi Nation.exe: + "/Abomi Nation.exe": - when: - os: windows store: steam @@ -12439,20 +12492,20 @@ Abomination Tower: installDir: Abomination Tower: {} launch: - /AbominationTower.app: + "/AbominationTower.app": - when: - os: mac store: steam - /AbominationTower.exe: + "/AbominationTower.exe": - when: - os: windows store: steam - /AbominationTower.x86: + "/AbominationTower.x86": - when: - bit: 32 os: linux store: steam - /AbominationTower.x86_64: + "/AbominationTower.x86_64": - when: - bit: 64 os: linux @@ -12463,7 +12516,7 @@ Aborigenus: installDir: Aborigenus: {} launch: - /Aborigenus_version_3.exe: + "/Aborigenus_version_3.exe": - when: - os: windows store: steam @@ -12473,28 +12526,28 @@ About Elise: installDir: About Elise: {} launch: - /AboutElise.exe: + "/AboutElise.exe": - when: - os: windows store: steam - /Father Requiem.exe: + "/Father Requiem.exe": - when: - store: steam steam: id: 448930 -'About Love, Hate and the other ones': +"About Love, Hate and the other ones": files: - /.aboutloveandhate/settings.ini: + "/.aboutloveandhate/settings.ini": tags: - config when: - os: linux - /userdata//277680/remote/default.save: + "/userdata//277680/remote/default.save": tags: - save when: - store: steam - /About Love Hate and the other ones/settings.ini: + "/About Love Hate and the other ones/settings.ini": tags: - config when: @@ -12502,20 +12555,20 @@ About Elise: installDir: About Love Hate and the other ones: {} launch: - '/About Love, Hate and the other ones.app/Contents/MacOS/loveandhate': + "/About Love, Hate and the other ones.app/Contents/MacOS/loveandhate": - when: - os: mac store: steam - /bin32/loveandhate: + "/bin32/loveandhate": - when: - bit: 32 os: linux store: steam - /bin32/loveandhate.exe: + "/bin32/loveandhate.exe": - when: - os: windows store: steam - /bin64/loveandhate: + "/bin64/loveandhate": - when: - bit: 64 os: linux @@ -12537,7 +12590,7 @@ Above Earth: installDir: Above Earth: {} launch: - /AboveEarth.exe: + "/AboveEarth.exe": - when: - store: steam steam: @@ -12546,17 +12599,17 @@ Above the Fold: installDir: Above the Fold: {} launch: - /AboveTheFold.exe: + "/AboveTheFold.exe": - when: - os: windows store: steam steam: id: 835910 -'Above: The Fallen': +"Above: The Fallen": installDir: Above The Fallen: {} launch: - /Above - The Fallen.exe: + "/Above - The Fallen.exe": - when: - os: windows store: steam @@ -12566,16 +12619,16 @@ Abrakadaboom: installDir: Abrakadaboom: {} launch: - /Abrakadaboom.exe: + "/Abrakadaboom.exe": - when: - store: steam steam: id: 979000 -Abraxas Interactive's PUSH: +"Abraxas Interactive's PUSH": installDir: Abraxas Interactive PUSH: {} launch: - /PUSH - Steam Edition.exe: + "/PUSH - Steam Edition.exe": - when: - os: windows store: steam @@ -12583,7 +12636,7 @@ Abraxas Interactive's PUSH: id: 661100 Abriss: files: - /AppData/LocalLow/Randwerk/ABRISS - build to destroy: + "/AppData/LocalLow/Randwerk/ABRISS - build to destroy": tags: - save when: @@ -12593,7 +12646,7 @@ Abriss: installDir: ABRISS: {} launch: - /ABRISS - build to destroy.exe: + "/ABRISS - build to destroy.exe": - when: - bit: 64 os: windows @@ -12604,7 +12657,7 @@ Abrix for Kids: installDir: Abrix for kids: {} launch: - /Abrix 2.exe: + "/Abrix 2.exe": - when: - store: steam steam: @@ -12613,7 +12666,7 @@ Abrix the Robot: installDir: AbrixTheRobot: {} launch: - /Abrix 2.exe: + "/Abrix 2.exe": - when: - store: steam steam: @@ -12622,15 +12675,15 @@ Abscond: installDir: Abscond: {} launch: - /Abscond.Linux/Abscond.x86: + "/Abscond.Linux/Abscond.x86": - when: - os: linux store: steam - /Abscond.app/Contents/MacOS/Abscond: + "/Abscond.app/Contents/MacOS/Abscond": - when: - os: mac store: steam - /win32/Abscond.exe: + "/win32/Abscond.exe": - when: - os: windows store: steam @@ -12643,7 +12696,7 @@ Absence: installDir: SamuelSprague_Absence: {} launch: - /Absence.exe: + "/Absence.exe": - when: - os: windows store: steam @@ -12653,7 +12706,7 @@ Absent: installDir: Absent: {} launch: - /Absent.exe: + "/Absent.exe": - when: - os: windows store: steam @@ -12663,7 +12716,7 @@ Absent Mind: installDir: Absent Mind: {} launch: - /WindowsNoEditor/AbsentMind.exe: + "/WindowsNoEditor/AbsentMind.exe": - when: - os: windows store: steam @@ -12673,7 +12726,7 @@ Absinth: installDir: Absinth: {} launch: - /Absinth.exe: + "/Absinth.exe": - when: - bit: 64 os: windows @@ -12687,7 +12740,7 @@ Absolute Adventure Zero: installDir: Absolute Adventure Zero: {} launch: - /Absolute Adventure Zero.exe: + "/Absolute Adventure Zero.exe": - when: - os: windows store: steam @@ -12697,7 +12750,7 @@ Absolute Blue: installDir: Absolute Blue: {} launch: - /main.exe: + "/main.exe": - when: - os: windows store: steam @@ -12705,17 +12758,18 @@ Absolute Blue: id: 806220 Absolute Drift: files: - /AppData/LocalLow/Funselektor Labs Inc_/Absolute Drift/EOS_cloud: + "/AppData/LocalLow/Funselektor Labs Inc_/Absolute Drift/EOS_cloud": tags: - save when: - - store: epic - /AppData/LocalLow/Funselektor Labs Inc_/Absolute Drift/GOG_cloud: + - os: windows + "/AppData/LocalLow/Funselektor Labs Inc_/Absolute Drift/GOG_cloud": tags: - save when: - - store: gog - /Steam/userdata//320140: + - os: windows + store: gog + "/Steam/userdata//320140": tags: - save when: @@ -12725,16 +12779,16 @@ Absolute Drift: installDir: Absolute Drift: {} launch: - /AbsoluteDrift.app: + "/AbsoluteDrift.app": - when: - os: mac store: steam - /AbsoluteDrift.exe: + "/AbsoluteDrift.exe": - when: - os: windows store: steam - /AbsoluteDrift.x64: - - arguments: '-screen-fullscreen 0' + "/AbsoluteDrift.x64": + - arguments: "-screen-fullscreen 0" when: - bit: 64 os: linux @@ -12750,28 +12804,31 @@ Absolute Fall: installDir: Absolute Fall: {} launch: - /Absolute Fall.exe: + "/Absolute Fall.exe": - when: - bit: 32 os: windows store: steam - /AbsoluteFall.app/Contents/MacOS/AbsoluteFall: + - bit: 64 + os: windows + store: steam + "/AbsoluteFall.app/Contents/MacOS/AbsoluteFall": - when: - os: mac store: steam - /AbsoluteFall.x86: + "/AbsoluteFall.x86": - when: - bit: 32 os: linux store: steam - /AbsoluteFall.x86_64: + "/AbsoluteFall.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 1091670 -'Absolute Tactics: Daughters of Mercy': +"Absolute Tactics: Daughters of Mercy": gog: id: 1186536188 id: @@ -12782,7 +12839,7 @@ Absolute Fall: installDir: Absolute Tactics: {} launch: - /AbsoluteTactics.exe: + "/AbsoluteTactics.exe": - when: - os: windows store: steam @@ -12792,7 +12849,7 @@ Absolute Territory: installDir: Absolute Territory: {} launch: - /Standard/Absolute Territory.exe: + "/Standard/Absolute Territory.exe": - when: - bit: 64 os: windows @@ -12806,12 +12863,12 @@ Absolute VR Experiences: id: 868950 Absolver: files: - /Absolver/Saved/Config/WindowsNoEditor: + "/Absolver/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /Absolver/Saved/SaveGames: + "/Absolver/Saved/SaveGames": tags: - save when: @@ -12821,7 +12878,7 @@ Absolver: installDir: Absolver: {} launch: - /Absolver.exe: + "/Absolver.exe": - when: - bit: 64 os: windows @@ -12832,7 +12889,7 @@ Abstract: installDir: Abstract: {} launch: - /Abstract.exe: + "/Abstract.exe": - when: - bit: 64 os: windows @@ -12843,7 +12900,7 @@ Abstract Arena: installDir: Abstract Arena: {} launch: - /Abstract Arena.exe: + "/Abstract Arena.exe": - when: - os: windows store: steam @@ -12859,7 +12916,7 @@ Abstractanoid: installDir: Abstractanoid: {} launch: - /Abstractanoid.exe: + "/Abstractanoid.exe": - when: - store: steam steam: @@ -12874,7 +12931,7 @@ Abyss Cave: installDir: Abyss Cave: {} launch: - /Abyss.exe: + "/Abyss.exe": - when: - os: windows store: steam @@ -12884,7 +12941,7 @@ Abyss Crawlers Plus: installDir: ABYSSCRAWLERSplus: {} launch: - /abysscrawlers_plus.exe: + "/abysscrawlers_plus.exe": - when: - os: windows store: steam @@ -12894,7 +12951,7 @@ Abyss Crew: installDir: Abyss Crew: {} launch: - /AbyssCrew.exe: + "/AbyssCrew.exe": - when: - os: windows store: steam @@ -12904,19 +12961,19 @@ Abyss Manager: installDir: Abyss Manager: {} launch: - /Abyss Manager.exe: + "/Abyss Manager.exe": - when: - store: steam steam: id: 963490 Abyss Odyssey: files: - /userdata//255070: + "/userdata//255070": tags: - save when: - store: steam - /My Games/AbyssOdyssey/AOGame/Config: + "/My Games/AbyssOdyssey/AOGame/Config": tags: - config when: @@ -12924,43 +12981,43 @@ Abyss Odyssey: installDir: abyss_odyssey: {} launch: - /AOGame.app/Contents/MacOS/AOGame: + "/AOGame.app/Contents/MacOS/AOGame": - when: - os: mac store: steam - /Binaries/Linux/AO: + "/Binaries/Linux/AO": - when: - os: linux store: steam - workingDir: /Binaries/Linux - /Binaries/Win32/AO.exe: + workingDir: "/Binaries/Linux" + "/Binaries/Win32/AO.exe": - when: - os: windows store: steam steam: id: 255070 -'Abyss Raiders: Uncharted': +"Abyss Raiders: Uncharted": installDir: Abyss Uncharted: {} launch: - /AbyssUncharted.exe: + "/AbyssUncharted.exe": - when: - os: windows store: steam steam: id: 348730 -'Abyss World: Apocalypse': +"Abyss World: Apocalypse": steam: id: 2244780 -'Abyss: The Wraiths of Eden': +"Abyss: The Wraiths of Eden": files: - /userdata//284710/remote/profile: + "/userdata//284710/remote/profile": tags: - save when: - os: windows store: steam - /ArtifexMundi/Abyss_TheWraithsOfEden/CE: + "/ArtifexMundi/Abyss_TheWraithsOfEden/CE": tags: - config when: @@ -12968,22 +13025,22 @@ Abyss Odyssey: installDir: Abyss The Wraiths of Eden: {} launch: - /Abyss_TheWraithsOfEden.exe: + "/Abyss_TheWraithsOfEden.exe": - when: - bit: 32 os: windows store: steam - /Abyss_TheWraithsOfEden_amd64: + "/Abyss_TheWraithsOfEden_amd64": - when: - bit: 64 os: linux store: steam - /Abyss_TheWraithsOfEden_i386: + "/Abyss_TheWraithsOfEden_i386": - when: - bit: 32 os: linux store: steam - /mac_steam.app/Contents/MacOS/mac_steam: + "/mac_steam.app/Contents/MacOS/mac_steam": - when: - os: mac store: steam @@ -12993,7 +13050,7 @@ Abyssal Fall: installDir: Abyssal Fall: {} launch: - /Abyssal Fall.exe: + "/Abyssal Fall.exe": - when: - os: windows store: steam @@ -13003,11 +13060,11 @@ Abyssal Zone: installDir: Abyssal Zone: {} launch: - /Abyssal Zone.app/Contents/MacOS/Abyssal Zone: + "/Abyssal Zone.app/Contents/MacOS/Abyssal Zone": - when: - os: mac store: steam - /Abyssal Zone.exe: + "/Abyssal Zone.exe": - when: - os: windows store: steam @@ -13015,23 +13072,23 @@ Abyssal Zone: id: 537380 Abzû: files: - /AbzuGame/Saved/Config/WindowsNoEditor: + "/AbzuGame/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /AbzuGame/Saved/SaveGames: + "/AbzuGame/Saved/SaveGames": tags: - save when: - os: windows - /Packages/505GAMESS.P.A.35784A6D3DB4D_tefn33qh9azfc/LocalState/AbzuGame/Saved/Config/UWP: + "/Packages/505GAMESS.P.A.35784A6D3DB4D_tefn33qh9azfc/LocalState/AbzuGame/Saved/Config/UWP": tags: - config when: - os: windows store: microsoft - /Packages/505GAMESS.P.A.35784A6D3DB4D_tefn33qh9azfc/SystemAppData/wgs: + "/Packages/505GAMESS.P.A.35784A6D3DB4D_tefn33qh9azfc/SystemAppData/wgs": tags: - save when: @@ -13042,7 +13099,7 @@ Abzû: installDir: ABZU: {} launch: - /AbzuGame.exe: + "/AbzuGame.exe": - when: - bit: 64 os: windows @@ -13053,57 +13110,57 @@ AcChen - Tile Matching the Arcade Way: installDir: AcChen - Tile matching the Arcade way: {} launch: - /AcChen.exe: + "/AcChen.exe": - when: - os: windows store: steam steam: id: 747540 -'Academagia: The Making of Mages': +"Academagia: The Making of Mages": installDir: Academagia The Making of Mages: {} launch: - /Academagia.exe: + "/Academagia.exe": - when: - os: windows store: steam steam: id: 533480 -'Academia: School Simulator': +"Academia: School Simulator": gog: id: 2059343244 installDir: AcademiaSchoolSimulator: {} launch: - /Academia.app: - - arguments: '-noheap' + "/Academia.app": + - arguments: "-noheap" when: - os: mac store: steam - /Academia.exe: - - arguments: '-noheap' + "/Academia.exe": + - arguments: "-noheap" when: - bit: 32 os: windows store: steam - /Academia64.exe: - - arguments: '-noheap' + "/Academia64.exe": + - arguments: "-noheap" when: - bit: 64 os: windows store: steam steam: id: 672630 -'Acan''s Call: Act 1': +"Acan's Call: Act 1": installDir: - Acan's Call: {} + "Acan's Call": {} steam: id: 501180 Acaratus: installDir: Acaratus: {} launch: - /Acaratus.exe: + "/Acaratus.exe": - when: - os: windows store: steam @@ -13113,7 +13170,7 @@ Accel: installDir: Accel: {} launch: - /accel.exe: + "/accel.exe": - when: - os: windows store: steam @@ -13121,7 +13178,7 @@ Accel: id: 994260 Accel World vs. Sword Art Online: files: - /Accel World vs. Sword Art Online/OptionConfig.ini: + "/Accel World vs. Sword Art Online/OptionConfig.ini": tags: - config when: @@ -13129,51 +13186,51 @@ Accel World vs. Sword Art Online: installDir: REK: {} launch: - /AWVSSAO_Launcher.exe: + "/AWVSSAO_Launcher.exe": - when: - store: steam steam: id: 607880 Acceleration of SUGURI: files: - /config.dat: + "/config.dat": tags: - config when: - os: windows - /system.dat: + "/system.dat": tags: - save when: - os: windows - /system_x.dat: + "/system_x.dat": tags: - save when: - os: windows Acceleration of SUGURI 2: files: - /Fruitbat Factory/AoS2/controller.cfg: + "/Fruitbat Factory/AoS2/controller.cfg": tags: - config when: - os: windows - /Fruitbat Factory/AoS2/game.cfg: + "/Fruitbat Factory/AoS2/game.cfg": tags: - config when: - os: windows - /Fruitbat Factory/AoS2/game.rkg: + "/Fruitbat Factory/AoS2/game.rkg": tags: - save when: - os: windows - /Fruitbat Factory/AoS2/game.sys: + "/Fruitbat Factory/AoS2/game.sys": tags: - save when: - os: windows - /Fruitbat Factory/AoS2/player.rkg: + "/Fruitbat Factory/AoS2/player.rkg": tags: - config when: @@ -13181,59 +13238,59 @@ Acceleration of SUGURI 2: installDir: Acceleration of SUGURI 2: {} launch: - /aos2.exe: + "/aos2.exe": - when: - store: steam steam: id: 390710 Acceleration of SUGURI X-Edition HD: files: - /config.dat: + "/config.dat": tags: - config when: - os: windows - /config_s.dat: + "/config_s.dat": tags: - config when: - os: windows - /ranking.dat: + "/ranking.dat": tags: - save when: - os: windows - /system.dat: + "/system.dat": tags: - save when: - os: windows - /system_x.dat: + "/system_x.dat": tags: - save when: - os: windows - /userdata//265170/remote/config.dat: + "/userdata//265170/remote/config.dat": tags: - config when: - store: steam - /userdata//265170/remote/config_s.dat: + "/userdata//265170/remote/config_s.dat": tags: - config when: - store: steam - /userdata//265170/remote/ranking.dat: + "/userdata//265170/remote/ranking.dat": tags: - save when: - store: steam - /userdata//265170/remote/system.dat: + "/userdata//265170/remote/system.dat": tags: - save when: - store: steam - /userdata//265170/remote/system_x.dat: + "/userdata//265170/remote/system_x.dat": tags: - save when: @@ -13241,7 +13298,7 @@ Acceleration of SUGURI X-Edition HD: installDir: Acceleration of Suguri: {} launch: - /AoSuguriHD.exe: + "/AoSuguriHD.exe": - when: - store: steam steam: @@ -13250,14 +13307,14 @@ Access: installDir: Access: {} launch: - /Access.exe: + "/Access.exe": - when: - store: steam steam: id: 672410 Access Denied: files: - /AppData/LocalLow/StatelySnail/AccessDenied: + "/AppData/LocalLow/StatelySnail/AccessDenied": tags: - save when: @@ -13265,7 +13322,7 @@ Access Denied: installDir: Access Denied: {} launch: - /AccessDenied.exe: + "/AccessDenied.exe": - when: - os: windows store: steam @@ -13275,7 +13332,7 @@ Accident: installDir: Accident: {} launch: - /Accident.exe: + "/Accident.exe": - when: - os: windows store: steam @@ -13285,7 +13342,7 @@ Accidental Runner: installDir: AccidentalRunner: {} launch: - /WindowsNoEditor/AccidentalRunner/Binaries/Win32/AccidentalRunner.exe: + "/WindowsNoEditor/AccidentalRunner/Binaries/Win32/AccidentalRunner.exe": - when: - os: windows store: steam @@ -13309,8 +13366,8 @@ AccuRC 2: installDir: AccuRC 2: {} launch: - /AccuRC.app: - - arguments: '-vrmode NONE -force-glcore -screen-fullscreen 0' + "/AccuRC.app": + - arguments: "-vrmode NONE -force-glcore -screen-fullscreen 0" when: - os: mac store: steam @@ -13325,54 +13382,54 @@ Accurate Segmentation 2: Accurate Segmentation 3: steam: id: 963080 -'Ace Combat 7: Skies Unknown': +"Ace Combat 7: Skies Unknown": files: - /BANDAI NAMCO Entertainment/ACE COMBAT 7/Config: + "/BANDAI NAMCO Entertainment/ACE COMBAT 7/Config": tags: - config when: - os: windows - /BANDAI NAMCO Entertainment/ACE COMBAT 7/SaveGames: + "/BANDAI NAMCO Entertainment/ACE COMBAT 7/SaveGames": tags: - save when: - os: windows id: steamExtra: - - 1454770 - - 1421553 - - 1421552 - - 1421551 - - 1421550 - - 1421540 - - 929106 - - 929105 - - 929104 - - 929103 - - 929102 - - 929101 - - 929100 - - 868312 - - 868311 - 868310 + - 868311 + - 868312 + - 929100 + - 929101 + - 929102 + - 929103 + - 929104 + - 929105 + - 929106 + - 1421540 + - 1421550 + - 1421551 + - 1421552 + - 1421553 + - 1454770 installDir: ACE COMBAT 7: {} launch: - /Ace7Game.exe: + "/Ace7Game.exe": - when: - bit: 64 os: windows store: steam steam: id: 502500 -'Ace Combat: Assault Horizon - Enhanced Edition': +"Ace Combat: Assault Horizon - Enhanced Edition": files: - /userdata//228400/remote: + "/userdata//228400/remote": tags: - save when: - store: steam - /NAMCO/ACAH: + "/NAMCO/ACAH": tags: - config when: @@ -13380,7 +13437,7 @@ Accurate Segmentation 3: installDir: Ace Combat Assault Horizon: {} launch: - /Ace Combat_AH.exe: + "/Ace Combat_AH.exe": - when: - os: windows store: steam @@ -13390,11 +13447,11 @@ Ace In Space: installDir: Ace In Space: {} launch: - /AceInSpace.app/Contents/MacOS/AceInSpace: + "/AceInSpace.app/Contents/MacOS/AceInSpace": - when: - os: mac store: steam - /AceInSpace.exe: + "/AceInSpace.exe": - when: - os: windows store: steam @@ -13404,7 +13461,7 @@ Ace Meerkats: installDir: Ace Meerkats: {} launch: - /AceMeerkats.exe: + "/AceMeerkats.exe": - when: - os: windows store: steam @@ -13412,12 +13469,12 @@ Ace Meerkats: id: 859510 Ace Ventura: files: - /7THLEVEL.INI: + "/7THLEVEL.INI": tags: - config when: - os: windows - /ACEGAME.SAV: + "/ACEGAME.SAV": tags: - save when: @@ -13426,15 +13483,15 @@ Ace of Protectors: installDir: Ace of Protectors: {} launch: - /Ace of Protectors.app: + "/Ace of Protectors.app": - when: - os: mac store: steam - /Ace of Protectors.exe: + "/Ace of Protectors.exe": - when: - os: windows store: steam - /runner: + "/runner": - when: - os: linux store: steam @@ -13442,12 +13499,12 @@ Ace of Protectors: id: 398150 Ace of Seafood: files: - /AppData/LocalLow/nussoft/AceOfSeafood/PlayerPrefs*.json: + "/AppData/LocalLow/nussoft/AceOfSeafood/PlayerPrefs*.json": tags: - save when: - os: windows - /AppData/LocalLow/nussoft/AceOfSeafood/PlayerPrefs.json: + "/AppData/LocalLow/nussoft/AceOfSeafood/PlayerPrefs.json": tags: - save when: @@ -13455,7 +13512,7 @@ Ace of Seafood: installDir: Ace of Seafood: {} launch: - /AceOfSeafood.exe: + "/AceOfSeafood.exe": - when: - os: windows store: steam @@ -13472,14 +13529,14 @@ Ace of Space: installDir: Ace of Space: {} launch: - /AceOfSpace.exe: + "/AceOfSpace.exe": - when: - store: steam steam: id: 1157780 -'Ace of Spades: Battle Builder': +"Ace of Spades: Battle Builder": files: - /config.txt: + "/config.txt": tags: - config when: @@ -13487,11 +13544,11 @@ Ace of Space: installDir: aceofspades: {} launch: - /aos: + "/aos": - when: - os: mac store: steam - /aos.exe: + "/aos.exe": - when: - os: windows store: steam @@ -13499,7 +13556,7 @@ Ace of Space: id: 224540 Ace of Words: files: - /AceOfWords/SG_PC-####.SAV: + "/AceOfWords/SG_PC-####.SAV": tags: - save when: @@ -13507,7 +13564,7 @@ Ace of Words: installDir: AceOfWords: {} launch: - /AceOfWords.exe: + "/AceOfWords.exe": - when: - os: windows store: steam @@ -13517,7 +13574,7 @@ AceSpeeder3: installDir: AceSpeeder3: {} launch: - /AceSpeeder3.exe: + "/AceSpeeder3.exe": - when: - os: windows store: steam @@ -13527,18 +13584,18 @@ Aces High III: installDir: Aces High III: {} launch: - /aceshighsteam.exe: + "/aceshighsteam.exe": - when: - bit: 32 os: windows store: steam steam: id: 651090 -'Aces Wild: Manic Brawling Action!': +"Aces Wild: Manic Brawling Action!": installDir: Aces Wild: {} launch: - /Aces Wild.exe: + "/Aces Wild.exe": - when: - os: windows store: steam @@ -13546,7 +13603,7 @@ Aces High III: id: 269230 Aces and Adventures: files: - /AppData/LocalLow/Triple B Titles/Aces and Adventures: + "/AppData/LocalLow/Triple B Titles/Aces and Adventures": tags: - config - save @@ -13555,7 +13612,7 @@ Aces and Adventures: installDir: Aces and Adventures: {} launch: - /Aces and Adventures.exe: + "/Aces and Adventures.exe": - when: - store: steam steam: @@ -13564,7 +13621,7 @@ Aces of the Galaxy: installDir: Aces of the Galaxy: {} launch: - /AcesOfTheGalaxy.exe: + "/AcesOfTheGalaxy.exe": - when: - store: steam steam: @@ -13573,11 +13630,11 @@ Aces of the Luftwaffe: installDir: AOTL: {} launch: - /Aces of the Luftwaffe.app: + "/Aces of the Luftwaffe.app": - when: - os: mac store: steam - /aotl.exe: + "/aotl.exe": - when: - os: windows store: steam @@ -13585,7 +13642,7 @@ Aces of the Luftwaffe: id: 353940 Aces of the Luftwaffe - Squadron: files: - /AppData/LocalLow/HandyGames/Aces of the Luftwaffe Squadron: + "/AppData/LocalLow/HandyGames/Aces of the Luftwaffe Squadron": tags: - save when: @@ -13593,7 +13650,7 @@ Aces of the Luftwaffe - Squadron: installDir: Aces of the Luftwaffe - Squadron: {} launch: - /aotls.exe: + "/aotls.exe": - when: - bit: 64 os: windows @@ -13604,11 +13661,13 @@ AchBall: installDir: AchBall: {} launch: - /achball: + "/achball": - when: - os: mac store: steam - /achball.exe: + - os: linux + store: steam + "/achball.exe": - when: - os: windows store: steam @@ -13618,20 +13677,20 @@ Achaem: installDir: Achaem: {} launch: - /Achaem.app: + "/Achaem.app": - when: - os: mac store: steam - /Achaem.exe: + "/Achaem.exe": - when: - os: windows store: steam - /Achaem.x86: + "/Achaem.x86": - when: - bit: 32 os: linux store: steam - /Achaem.x86_64: + "/Achaem.x86_64": - when: - bit: 64 os: linux @@ -13642,7 +13701,7 @@ Achievement Clicker: installDir: Achievement Clicker: {} launch: - /AchievementClicker.exe: + "/AchievementClicker.exe": - when: - store: steam steam: @@ -13651,7 +13710,7 @@ Achievement Clicker 2018: installDir: Achievement Clicker 2018: {} launch: - /AchievementClicker.exe: + "/AchievementClicker.exe": - when: - store: steam steam: @@ -13660,46 +13719,49 @@ Achievement Clicker 2019: installDir: Achievement Clicker 2019: {} launch: - /AchievementClicker2019.exe: + "/AchievementClicker2019.exe": - when: - store: steam steam: id: 824190 -'Achievement Clicker: The End': +"Achievement Clicker: The End": steam: id: 875680 -'Achievement Collector: Cat': +"Achievement Collector: Cat": installDir: Achievement Collector Cat: {} launch: - /nw.exe: + "/nw.exe": - when: - bit: 32 os: windows store: steam + - bit: 64 + os: windows + store: steam steam: id: 912210 -'Achievement Collector: Dog': +"Achievement Collector: Dog": installDir: Achievement Collector Dog: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam steam: id: 1008370 -'Achievement Collector: Space': +"Achievement Collector: Space": installDir: Achievement Collector Space: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam steam: id: 942340 -'Achievement Collector: Zombie': +"Achievement Collector: Zombie": installDir: Achievement Collector Zombie: {} steam: @@ -13710,185 +13772,185 @@ Achievement Creator: Achievement Dummy: steam: id: 948950 -'Achievement Hunter: Alien': +"Achievement Hunter: Alien": steam: id: 760100 -'Achievement Hunter: Begins': +"Achievement Hunter: Begins": steam: id: 674040 -'Achievement Hunter: Cat': +"Achievement Hunter: Cat": steam: id: 834330 -'Achievement Hunter: Chef': +"Achievement Hunter: Chef": steam: id: 799740 -'Achievement Hunter: Cromulent': +"Achievement Hunter: Cromulent": steam: id: 675460 -'Achievement Hunter: Darkness': +"Achievement Hunter: Darkness": steam: id: 689990 -'Achievement Hunter: Darkness 2': +"Achievement Hunter: Darkness 2": steam: id: 700790 -'Achievement Hunter: Dogger': +"Achievement Hunter: Dogger": steam: id: 707600 -'Achievement Hunter: Dragon': +"Achievement Hunter: Dragon": steam: id: 814670 -'Achievement Hunter: Foxy': +"Achievement Hunter: Foxy": steam: id: 710330 -'Achievement Hunter: Gnom': +"Achievement Hunter: Gnom": steam: id: 817690 -'Achievement Hunter: Golem': +"Achievement Hunter: Golem": steam: id: 859030 -'Achievement Hunter: Kiborg': +"Achievement Hunter: Kiborg": steam: id: 710860 -'Achievement Hunter: Knight': +"Achievement Hunter: Knight": steam: id: 840250 -'Achievement Hunter: Mermaid': +"Achievement Hunter: Mermaid": steam: id: 820920 -'Achievement Hunter: Offensive': +"Achievement Hunter: Offensive": steam: id: 696550 -'Achievement Hunter: Overdose': +"Achievement Hunter: Overdose": steam: id: 674110 -'Achievement Hunter: Pharaoh': +"Achievement Hunter: Pharaoh": steam: id: 691660 -'Achievement Hunter: Princess': +"Achievement Hunter: Princess": steam: id: 804240 -'Achievement Hunter: Punk': +"Achievement Hunter: Punk": steam: id: 790340 -'Achievement Hunter: Samurai': +"Achievement Hunter: Samurai": steam: id: 797530 -'Achievement Hunter: Scars': +"Achievement Hunter: Scars": steam: id: 756050 -'Achievement Hunter: Spinner Edition': +"Achievement Hunter: Spinner Edition": steam: id: 675450 -'Achievement Hunter: Thief': +"Achievement Hunter: Thief": steam: id: 714260 -'Achievement Hunter: Unicorn': +"Achievement Hunter: Unicorn": steam: id: 848360 -'Achievement Hunter: Urban': +"Achievement Hunter: Urban": steam: id: 695020 -'Achievement Hunter: Urban 2': +"Achievement Hunter: Urban 2": steam: id: 704380 -'Achievement Hunter: Witch': +"Achievement Hunter: Witch": steam: id: 823060 -'Achievement Hunter: Wizard': +"Achievement Hunter: Wizard": steam: id: 693870 -'Achievement Hunter: Zombie': +"Achievement Hunter: Zombie": steam: id: 721440 -'Achievement Hunter: Zombie 2': +"Achievement Hunter: Zombie 2": steam: id: 790400 -'Achievement Hunter: Zombie 3': +"Achievement Hunter: Zombie 3": steam: id: 765990 -'Achievement Idler: Black': +"Achievement Idler: Black": installDir: Achievement Idler Black: {} launch: - /Achievement Idler Black.exe: + "/Achievement Idler Black.exe": - when: - store: steam steam: id: 684050 -'Achievement Idler: Red': +"Achievement Idler: Red": installDir: Achievement Idler Red: {} launch: - /Achievement Idler Red.exe: + "/Achievement Idler Red.exe": - when: - store: steam steam: id: 850050 -'Achievement Lurker: Another One Bites the Dust': +"Achievement Lurker: Another One Bites the Dust": installDir: Achievement Lurker Another one bites the dust: {} launch: - /Game.exe: - - arguments: '--in-process-gpu' + "/Game.exe": + - arguments: "--in-process-gpu" when: - store: steam steam: id: 821390 -'Achievement Lurker: Ballad of the Shimapan Warrior - King of Panties': +"Achievement Lurker: Ballad of the Shimapan Warrior - King of Panties": installDir: Achievement Lurker Ballad of the Shimapan Warrior - King of Panties: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: id: 836290 -'Achievement Lurker: Dad Jokes': +"Achievement Lurker: Dad Jokes": installDir: Achievement Lurker Dad Jokes: {} launch: - /Game.exe: - - arguments: '--in-process-gpu' + "/Game.exe": + - arguments: "--in-process-gpu" when: - store: steam steam: id: 747190 -'Achievement Lurker: Easiest Cosmetic Numbers': +"Achievement Lurker: Easiest Cosmetic Numbers": installDir: Achievement Lurker Easiest Cosmetic Numbers: {} launch: - /Game.exe: - - arguments: '--in-process-gpu' + "/Game.exe": + - arguments: "--in-process-gpu" when: - store: steam steam: id: 798850 -'Achievement Lurker: Respectable Accomplishment': +"Achievement Lurker: Respectable Accomplishment": installDir: Achievement Lurker Respectable Accomplishment: {} launch: - /Game.exe: - - arguments: '--in-process-gpu' + "/Game.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam steam: id: 738000 -'Achievement Lurker: We Give Up!': +"Achievement Lurker: We Give Up!": installDir: Achievement Lurker We Give Up!: {} launch: - /Game.exe: - - arguments: '--in-process-gpu' + "/Game.exe": + - arguments: "--in-process-gpu" when: - store: steam steam: id: 774281 -'Achievement Lurker: You are going to have to work hard for these nuts': +"Achievement Lurker: You are going to have to work hard for these nuts": installDir: Achievement Lurker You are going to have to work for these nuts: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: @@ -13897,25 +13959,25 @@ Achievement Machine: installDir: Achievement Machine: {} launch: - /Achievement Machine.app/Contents/MacOS/Achievement Machine: + "/Achievement Machine.app/Contents/MacOS/Achievement Machine": - when: - os: mac store: steam - /Achievement Machine.exe: + "/Achievement Machine.exe": - when: - os: windows store: steam steam: id: 851000 -'Achievement Machine: Cubic Chaos': +"Achievement Machine: Cubic Chaos": installDir: Achievement Machine Cubic Chaos: {} launch: - /Achievement Machine Cubic Chaos.app/Contents/MacOS/Achievement Machine Cubic Chaos: + "/Achievement Machine Cubic Chaos.app/Contents/MacOS/Achievement Machine Cubic Chaos": - when: - os: mac store: steam - /Achievement Machine Cubic Chaos.exe: + "/Achievement Machine Cubic Chaos.exe": - when: - os: windows store: steam @@ -13926,12 +13988,12 @@ Achievement Park: id: 766800 Achievement Simulator: files: - /Achievement_Simulator/game_options.ini: + "/Achievement_Simulator/game_options.ini": tags: - config when: - os: windows - /Achievement_Simulator/game_save.sav: + "/Achievement_Simulator/game_save.sav": tags: - save when: @@ -13939,7 +14001,7 @@ Achievement Simulator: installDir: Achievement Simulator: {} launch: - /Achievement Simulator.exe: + "/Achievement Simulator.exe": - when: - store: steam steam: @@ -13947,11 +14009,11 @@ Achievement Simulator: Achievement Simulator 2018: steam: id: 745690 -'Achievements Printer: Part 1': +"Achievements Printer: Part 1": installDir: Achievement printer part 1: {} launch: - /basket.exe: + "/basket.exe": - when: - store: steam steam: @@ -13960,11 +14022,11 @@ Achilles: installDir: Achilles: {} launch: - /Achilles v1.0.3.app: + "/Achilles v1.0.3.app": - when: - os: mac store: steam - /Achilles.exe: + "/Achilles.exe": - when: - os: windows store: steam @@ -13974,11 +14036,11 @@ Achromatic: installDir: Achromatic: {} launch: - /achromatic.app: + "/achromatic.app": - when: - os: mac store: steam - /achromatic.exe: + "/achromatic.exe": - when: - os: windows store: steam @@ -13988,18 +14050,18 @@ Achron: installDir: Achron: {} launch: - /Achron.exe: + "/Achron.exe": - when: - store: steam steam: id: 109700 -'Achtung Panzer: Kharkov 1943': +"Achtung Panzer: Kharkov 1943": gog: id: 1442578014 installDir: Achtung Panzer - Kharkov 1943: {} launch: - /starter.exe: + "/starter.exe": - when: - store: steam steam: @@ -14008,7 +14070,7 @@ Achtung die Kugel!: installDir: AchtungDieKugel: {} launch: - /AchtungDieKugel.exe: + "/AchtungDieKugel.exe": - when: - bit: 64 os: windows @@ -14019,7 +14081,7 @@ Achtung! Cthulhu Tactics: installDir: Achtung! Cthulhu Tactics: {} launch: - /AC.exe: + "/AC.exe": - when: - store: steam steam: @@ -14028,7 +14090,7 @@ Acid Flip: installDir: Acid Flip: {} launch: - /acidflip.exe: + "/acidflip.exe": - when: - os: windows store: steam @@ -14041,7 +14103,7 @@ Acid Nimbus: installDir: Acid Nimbus: {} launch: - /AcidNimbus.exe: + "/AcidNimbus.exe": - when: - os: windows store: steam @@ -14051,16 +14113,16 @@ Acid Spy: installDir: Acid Spy: {} launch: - /AcidSpy.exe: + "/AcidSpy.exe": - when: - bit: 64 os: windows store: steam steam: id: 817230 -'Acorn Assault: Rodent Revolution': +"Acorn Assault: Rodent Revolution": files: - /AppData/LocalLow/High Tale Studios/AcornAssaultRodentRevolution/Saves: + "/AppData/LocalLow/High Tale Studios/AcornAssaultRodentRevolution/Saves": tags: - save when: @@ -14068,21 +14130,21 @@ Acid Spy: installDir: Acorn Assault Rodent Revolution: {} launch: - /AARR.app: + "/AARR.app": - when: - os: mac store: steam - /AARR.exe: + "/AARR.exe": - when: - os: windows store: steam steam: id: 410290 -'Acorns Above: A World Gone Nuts': +"Acorns Above: A World Gone Nuts": installDir: Acorns Above: {} launch: - /AcornsAbove.exe: + "/AcornsAbove.exe": - when: - os: windows store: steam @@ -14090,7 +14152,7 @@ Acid Spy: id: 673040 Acquitted: files: - /Acquitted: + "/Acquitted": tags: - save when: @@ -14098,7 +14160,7 @@ Acquitted: installDir: Acquitted: {} launch: - /acquitted.exe: + "/acquitted.exe": - when: - os: windows store: steam @@ -14108,7 +14170,7 @@ Acro FS: installDir: AcroFS: {} launch: - /bin/AcroFS_x64.exe: + "/bin/AcroFS_x64.exe": - when: - bit: 64 os: windows @@ -14119,13 +14181,13 @@ Acro Storm: installDir: Acro Storm: {} launch: - /AcroStorm.exe: + "/AcroStorm.exe": - when: - os: windows store: steam steam: id: 546610 -'Acron: Attack of the Squirrels!': +"Acron: Attack of the Squirrels!": installDir: Acron Attack of the Squirrels: {} steam: @@ -14135,11 +14197,11 @@ Acrophobia: Acrophobia: {} steam: id: 851960 -'Acropolis: The Archaic Age': +"Acropolis: The Archaic Age": installDir: Acropolis - The Archaic Age: {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: @@ -14159,7 +14221,7 @@ Across The Moment: id: 611780 Across the Grooves: files: - /AppData/LocalLow/Nova-box/Across the Grooves/User: + "/AppData/LocalLow/Nova-box/Across the Grooves/User": tags: - save when: @@ -14167,15 +14229,15 @@ Across the Grooves: installDir: Across the Grooves: {} launch: - /AcrosstheGrooves: + "/AcrosstheGrooves": - when: - os: linux store: steam - /AcrosstheGrooves.app: + "/AcrosstheGrooves.app": - when: - os: mac store: steam - /AcrosstheGrooves.exe: + "/AcrosstheGrooves.exe": - when: - os: windows store: steam @@ -14192,49 +14254,49 @@ Across the Rhine: installDir: Across The Rhine: {} launch: - /Across The Rhine.app: + "/Across The Rhine.app": - when: - os: mac store: steam - /dosbox_linux/daum/launch_atr_game_daum.sh: + "/dosbox_linux/daum/launch_atr_game_daum.sh": - when: - os: linux store: steam - workingDir: /dosbox_linux/daum - /dosbox_linux/launch_atr_config.sh: + workingDir: "/dosbox_linux/daum" + "/dosbox_linux/launch_atr_config.sh": - when: - os: linux store: steam - workingDir: /dosbox_linux - /dosbox_linux/launch_atr_game.sh: + workingDir: "/dosbox_linux" + "/dosbox_linux/launch_atr_game.sh": - when: - os: linux store: steam - workingDir: /dosbox_linux - /dosbox_windows/daum/dosbox.exe: - - arguments: '-conf dosbox_atr.conf -conf dosbox_atr_launch_windows.conf -noconsole' + workingDir: "/dosbox_linux" + "/dosbox_windows/daum/dosbox.exe": + - arguments: "-conf dosbox_atr.conf -conf dosbox_atr_launch_windows.conf -noconsole" when: - os: windows store: steam - workingDir: /dosbox_windows/daum - /dosbox_windows/dosbox.exe: - - arguments: '-conf dosbox_atr.conf -conf dosbox_atr_launch_windows.conf -noconsole' + workingDir: "/dosbox_windows/daum" + "/dosbox_windows/dosbox.exe": + - arguments: "-conf dosbox_atr.conf -conf dosbox_atr_launch_windows.conf -noconsole" when: - os: windows store: steam - workingDir: /dosbox_windows - - arguments: '-conf dosbox_atr.conf -conf dosbox_atr_config_windows.conf -noconsole' + workingDir: "/dosbox_windows" + - arguments: "-conf dosbox_atr.conf -conf dosbox_atr_config_windows.conf -noconsole" when: - os: windows store: steam - workingDir: /dosbox_windows + workingDir: "/dosbox_windows" steam: id: 329620 Act It Out XL! A Game of Charades: installDir: ACT IT OUT! A Game of Charades: {} launch: - /ActItOut.exe: + "/ActItOut.exe": - when: - bit: 64 os: windows @@ -14243,7 +14305,7 @@ Act It Out XL! A Game of Charades: id: 675500 Act of Aggression: files: - /Saved Games/EugenSystems/ActOfAggression: + "/Saved Games/EugenSystems/ActOfAggression": tags: - config - save @@ -14252,15 +14314,15 @@ Act of Aggression: installDir: Act of Aggression: {} launch: - /ActOfAggression.exe: + "/ActOfAggression.exe": - when: - os: windows store: steam steam: id: 318020 -'Act of War: Direct Action': +"Act of War: Direct Action": files: - /AOW/Save: + "/AOW/Save": tags: - save when: @@ -14270,14 +14332,14 @@ Act of Aggression: installDir: Act of War Direct Action: {} launch: - /ACTOFWAR.EXE: + "/ACTOFWAR.EXE": - when: - store: steam steam: id: 2710 -'Act of War: High Treason': +"Act of War: High Treason": files: - /AOW: + "/AOW": tags: - save when: @@ -14287,69 +14349,69 @@ Act of Aggression: installDir: Act of War High Treason: {} launch: - /ActOfWar_HighTreason.exe: + "/ActOfWar_HighTreason.exe": - when: - store: steam steam: id: 9760 Acting Lessons: files: - /game/game/saves: + "/game/game/saves": tags: - save when: - os: linux - /game/game/saves/persistent: + "/game/game/saves/persistent": tags: - config when: - os: linux - /game/saves: + "/game/saves": tags: - save when: - os: windows - /game/saves/persistent: + "/game/saves/persistent": tags: - config when: - os: windows - /.renpy/ActingLessons-1523296524 (Steam version): + "/.renpy/ActingLessons-1523296524 (Steam version)": tags: - save when: - os: linux - /.renpy/ActingLessons-1523296524/persistent (Steam version): + "/.renpy/ActingLessons-1523296524/persistent (Steam version)": tags: - config when: - os: linux - /.renpy/ActingLessonsGOG-1523296524 (GOG version): + "/.renpy/ActingLessonsGOG-1523296524 (GOG version)": tags: - save when: - os: linux - /.renpy/ActingLessonsGOG-1523296524/persistent (GOG version): + "/.renpy/ActingLessonsGOG-1523296524/persistent (GOG version)": tags: - config when: - os: linux - /RenPy/ActingLessons-1523296524 (Steam version): + "/RenPy/ActingLessons-1523296524 (Steam version)": tags: - save when: - os: windows - /RenPy/ActingLessons-1523296524/persistent (Steam version): + "/RenPy/ActingLessons-1523296524/persistent (Steam version)": tags: - config when: - os: windows - /RenPy/ActingLessonsGOG-1523296524 (GOG version): + "/RenPy/ActingLessonsGOG-1523296524 (GOG version)": tags: - save when: - os: windows - /RenPy/ActingLessonsGOG-1523296524/persistent (GOG version): + "/RenPy/ActingLessonsGOG-1523296524/persistent (GOG version)": tags: - config when: @@ -14359,15 +14421,15 @@ Acting Lessons: installDir: Acting Lessons: {} launch: - /ActingLessons.app: + "/ActingLessons.app": - when: - os: mac store: steam - /ActingLessons.exe: + "/ActingLessons.exe": - when: - os: windows store: steam - /ActingLessons.sh: + "/ActingLessons.sh": - when: - os: linux store: steam @@ -14377,27 +14439,27 @@ Action Alien: installDir: The Alien Wasteland: {} launch: - /Binaries/Win32/UDK.exe: + "/Binaries/Win32/UDK.exe": - when: - os: windows store: steam steam: id: 382080 -'Action Alien: Prelude': +"Action Alien: Prelude": installDir: Action Alien Prelude: {} launch: - /Binaries/Win32/UDK.exe: + "/Binaries/Win32/UDK.exe": - when: - os: windows store: steam steam: id: 773330 -'Action Alien: Tropical Mayhem': +"Action Alien: Tropical Mayhem": installDir: Action Alien Tropical Mayhem: {} launch: - /Binaries/Win32/UDK.exe: + "/Binaries/Win32/UDK.exe": - when: - os: windows store: steam @@ -14407,7 +14469,7 @@ Action Ball 2: installDir: Action Ball 2: {} launch: - /actionball.exe: + "/actionball.exe": - when: - os: windows store: steam @@ -14417,11 +14479,11 @@ Action Card Football: installDir: Action Card Football: {} launch: - /ACF.app: + "/ACF.app": - when: - os: mac store: steam - /Action Card Football.exe: + "/Action Card Football.exe": - when: - os: windows store: steam @@ -14429,7 +14491,7 @@ Action Card Football: id: 848470 Action Henk: files: - /userdata//285820/remote: + "/userdata//285820/remote": tags: - save when: @@ -14437,20 +14499,20 @@ Action Henk: installDir: Action Henk: {} launch: - /ActionHenk.app: + "/ActionHenk.app": - when: - os: mac store: steam - /ActionHenk.exe: + "/ActionHenk.exe": - when: - os: windows store: steam - /ActionHenk.x86: + "/ActionHenk.x86": - when: - bit: 32 os: linux store: steam - /ActionHenk.x86_64: + "/ActionHenk.x86_64": - when: - bit: 64 os: linux @@ -14465,20 +14527,20 @@ Action Legion: installDir: Action Legion: {} launch: - /ActionLegion.app/Contents/MacOS/ActionLegion: + "/ActionLegion.app/Contents/MacOS/ActionLegion": - when: - os: mac store: steam - /ActionLegion.exe: + "/ActionLegion.exe": - when: - os: windows store: steam - /ActionLegion.x86: + "/ActionLegion.x86": - when: - bit: 32 os: linux store: steam - /ActionLegion.x86_64: + "/ActionLegion.x86_64": - when: - bit: 64 os: linux @@ -14489,7 +14551,7 @@ Action Mahjong: installDir: 4人打ちアクション麻雀 ACTION MAHJONG: {} launch: - /am4p.exe: + "/am4p.exe": - when: - store: steam steam: @@ -14501,7 +14563,7 @@ Action Rush: installDir: Action Rush: {} launch: - /ActionRush.exe: + "/ActionRush.exe": - when: - bit: 64 os: windows @@ -14514,7 +14576,7 @@ Action SuperCross: installDir: across: {} launch: - /ElmaLauncher/ElmaLauncher.exe: + "/ElmaLauncher/ElmaLauncher.exe": - when: - os: windows store: steam @@ -14524,23 +14586,23 @@ Action Taimanin: installDir: Action Taimanin: {} launch: - /ActionTaimanin.exe: + "/ActionTaimanin.exe": - when: - os: windows store: steam steam: id: 1335200 -'Action: Source': +"Action: Source": installDir: Action Source: {} launch: - /hl2.exe: - - arguments: '-game ahl2 -steam' + "/hl2.exe": + - arguments: "-game ahl2 -steam" when: - os: windows store: steam - /hl2.sh: - - arguments: '-game ahl2 -steam' + "/hl2.sh": + - arguments: "-game ahl2 -steam" when: - bit: 64 os: linux @@ -14559,15 +14621,15 @@ Active Neurons - Puzzle game: installDir: Active Neurons: {} launch: - /ActiveNeurons.app: + "/ActiveNeurons.app": - when: - os: mac store: steam - /ActiveNeurons.exe: + "/ActiveNeurons.exe": - when: - os: windows store: steam - /ActiveNeurons.x86_64: + "/ActiveNeurons.x86_64": - when: - os: linux store: steam @@ -14575,7 +14637,7 @@ Active Neurons - Puzzle game: id: 1168630 Actraiser Renaissance: files: - 'C:/Users/Admin/Documents/My Games/Actraiser Renaissance': + "C:/Users/Admin/Documents/My Games/Actraiser Renaissance": tags: - save when: @@ -14583,7 +14645,7 @@ Actraiser Renaissance: installDir: Actraiser Renaissance: {} launch: - /ActraiserR.exe: + "/ActraiserR.exe": - when: - os: windows store: steam @@ -14593,7 +14655,7 @@ Actua Golf: installDir: Actua Golf: {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: @@ -14602,7 +14664,7 @@ Actua Golf 3: installDir: Actua Golf 3: {} launch: - /Actua Golf.exe: + "/Actua Golf.exe": - when: - store: steam steam: @@ -14611,19 +14673,19 @@ Actua Ice Hockey: installDir: Actua Ice Hockey: {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: id: 2152710 Actua Ice Hockey 2: files: - /*.ini: + "/*.ini": tags: - config when: - os: windows - /saves: + "/saves": tags: - save when: @@ -14631,7 +14693,7 @@ Actua Ice Hockey 2: installDir: Actua Ice Hockey 2: {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: @@ -14640,14 +14702,14 @@ Actua Soccer 2: installDir: Actua Soccer 2: {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: id: 2152690 Actua Soccer 3: files: - /install.txt: + "/install.txt": tags: - config when: @@ -14655,7 +14717,7 @@ Actua Soccer 3: installDir: Actua Soccer 3: {} launch: - /SOCCER3.exe: + "/SOCCER3.exe": - when: - os: windows store: steam @@ -14663,7 +14725,7 @@ Actua Soccer 3: id: 285030 Actua Tennis: files: - /PREFS.DAT: + "/PREFS.DAT": tags: - config when: @@ -14671,7 +14733,7 @@ Actua Tennis: installDir: Actua Tennis: {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: @@ -14680,11 +14742,11 @@ Actual Sunlight: installDir: Actual Sunlight: {} launch: - /Game.app: + "/Game.app": - when: - os: mac store: steam - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -14694,11 +14756,11 @@ Actual Volleyball: installDir: Actual Volleyball: {} launch: - /mac/actual volleyball.app/contents/MacOS/Actual Volleyball: + "/mac/actual volleyball.app/contents/MacOS/Actual Volleyball": - when: - os: mac store: steam - /windows/actual volleyball/Actual Volleyball.exe: + "/windows/actual volleyball/Actual Volleyball.exe": - when: - os: windows store: steam @@ -14708,7 +14770,7 @@ Acucalypse: installDir: Acucalypse: {} launch: - /Acucalypse.exe: + "/Acucalypse.exe": - when: - os: windows store: steam @@ -14723,7 +14785,7 @@ Ad Exitum: installDir: Ad Exitum: {} launch: - /AdExitum.exe: + "/AdExitum.exe": - when: - os: windows store: steam @@ -14738,15 +14800,15 @@ AdVenture Capitalist: installDir: AdVenture Capitalist: {} launch: - /adventure-capitalist.app: + "/adventure-capitalist.app": - when: - os: mac store: steam - /adventure-capitalist.exe: + "/adventure-capitalist.exe": - when: - os: windows store: steam - /adventure-capitalist.x86: + "/adventure-capitalist.x86": - when: - os: linux store: steam @@ -14761,11 +14823,11 @@ AdVenture Communist: installDir: AdVenture Communist: {} launch: - /adventure-communist.app: + "/adventure-communist.app": - when: - os: mac store: steam - /adventure-communist.exe: + "/adventure-communist.exe": - when: - os: windows store: steam @@ -14773,7 +14835,7 @@ AdVenture Communist: id: 462930 Adabana Odd Tales: files: - /save: + "/save": tags: - save when: @@ -14781,7 +14843,7 @@ Adabana Odd Tales: installDir: Adabana Odd Tales: {} launch: - /GSIWin.exe: + "/GSIWin.exe": - when: - os: windows store: steam @@ -14791,7 +14853,7 @@ Adaca: installDir: ADACA: {} launch: - /ADACA.exe: + "/ADACA.exe": - when: - bit: 64 os: windows @@ -14807,7 +14869,7 @@ Adam - Lost Memories: installDir: Adam - Lost Memories: {} launch: - /AdamLM.exe: + "/AdamLM.exe": - when: - bit: 64 os: windows @@ -14821,22 +14883,22 @@ Adam Waste: id: 673310 Adam Wolfe: files: - /Mad Head Games/Adam Wolfe - MHG: + "/Mad Head Games/Adam Wolfe - MHG": tags: - save when: - os: windows - /Mad Head Games/Adam Wolfe - MHG/options.cfg: + "/Mad Head Games/Adam Wolfe - MHG/options.cfg": tags: - config when: - os: windows - /Mad Head Games/Adam Wolfe - Steam: + "/Mad Head Games/Adam Wolfe - Steam": tags: - save when: - os: windows - /Mad Head Games/Adam Wolfe - Steam/options.cfg: + "/Mad Head Games/Adam Wolfe - Steam/options.cfg": tags: - config when: @@ -14844,76 +14906,76 @@ Adam Wolfe: installDir: Adam Wolfe: {} launch: - /AdamWolfe.app: + "/AdamWolfe.app": - when: - os: mac store: steam - /AdamWolfe.exe: + "/AdamWolfe.exe": - when: - os: windows store: steam steam: id: 483420 -'Adam and Eve: The Game - Chapter 1': +"Adam and Eve: The Game - Chapter 1": installDir: Adam and Eve The Game - Chapter 1: {} launch: - /nw: + "/nw": - when: - os: linux store: steam - /nw.exe: + "/nw.exe": - when: - os: windows store: steam steam: id: 443530 -Adam's Ascending: +"Adam's Ascending": installDir: Adams Ascending: {} launch: - /Adam's Ascending Early Access 1.3.exe: + "/Adam's Ascending Early Access 1.3.exe": - when: - os: windows store: steam steam: id: 1110210 -Adam's Venture Chronicles: +"Adam's Venture Chronicles": installDir: - Adam's Venture Chronicles: {} + "Adam's Venture Chronicles": {} launch: - /Binaries/Win32/VentureGame.exe: + "/Binaries/Win32/VentureGame.exe": - when: - store: steam - workingDir: /Binaries/Win32 + workingDir: "/Binaries/Win32" steam: id: 362410 -'Adam''s Venture: Origins': +"Adam's Venture: Origins": files: - /userdata//400360/remote/AVAutoSave: + "/userdata//400360/remote/AVAutoSave": tags: - save when: - store: steam - /userdata//400360/remote/AVUserSettings: + "/userdata//400360/remote/AVUserSettings": tags: - config when: - store: steam installDir: - Adam's Venture Orgins: {} + "Adam's Venture Orgins": {} launch: - /AV_Origins.exe: + "/AV_Origins.exe": - when: - os: windows store: steam steam: id: 400360 -'Adam: Robot World': +"Adam: Robot World": installDir: Adam Robot World: {} launch: - /Adam.exe: + "/Adam.exe": - when: - bit: 64 os: windows @@ -14927,24 +14989,24 @@ Adapt or Perish: installDir: Adapt or Perish: {} launch: - /AOP.app: - - arguments: '-show-screen-selector -vrmode none' + "/AOP.app": + - arguments: "-show-screen-selector -vrmode none" when: - os: mac store: steam - /aop.exe: - - arguments: '-show-screen-selector -vrmode none' + "/aop.exe": + - arguments: "-show-screen-selector -vrmode none" when: - os: windows store: steam - /aop.x86: - - arguments: '-show-screen-selector -vrmode none' + "/aop.x86": + - arguments: "-show-screen-selector -vrmode none" when: - bit: 32 os: linux store: steam - /aop.x86_64: - - arguments: '-show-screen-selector -vrmode none' + "/aop.x86_64": + - arguments: "-show-screen-selector -vrmode none" when: - bit: 64 os: linux @@ -14955,7 +15017,7 @@ AddForce: installDir: AddForce: {} launch: - /AddForce.exe: + "/AddForce.exe": - when: - os: windows store: steam @@ -14965,15 +15027,15 @@ Adecke - Cards Games Deluxe: installDir: Adecke - Cards Games Deluxe: {} launch: - /Adecke.app/Contents/MacOS/Adecke: + "/Adecke.app/Contents/MacOS/Adecke": - when: - os: mac store: steam - /Adecke.exe: + "/Adecke.exe": - when: - os: windows store: steam - /Adecke.x86_64: + "/Adecke.x86_64": - when: - os: linux store: steam @@ -14983,7 +15045,7 @@ Adelantado 4 Aztec Skulls: installDir: 4 Aztec Skulls: {} launch: - /4 Aztec Skulls.exe: + "/4 Aztec Skulls.exe": - when: - store: steam steam: @@ -14992,7 +15054,7 @@ Adelantado Trilogy. Book One: installDir: Adelantado Trilogy. Book one: {} launch: - /Adelantado.exe: + "/Adelantado.exe": - when: - store: steam steam: @@ -15001,7 +15063,7 @@ Adelantado Trilogy. Book Three: installDir: Adelantado Trilogy. Book Three: {} launch: - /Adelantado3.exe: + "/Adelantado3.exe": - when: - store: steam steam: @@ -15010,42 +15072,42 @@ Adelantado Trilogy. Book Two: installDir: Adelantado Trilogy. Book Two: {} launch: - /Adelantado2.exe: + "/Adelantado2.exe": - when: - store: steam steam: id: 573670 -'Adele: Following the Signs': +"Adele: Following the Signs": installDir: Adele Following the Signs: {} launch: - /Adele.app: + "/Adele.app": - when: - os: mac store: steam - /Adele.exe: + "/Adele.exe": - when: - os: windows store: steam - /Adele.x86: + "/Adele.x86": - when: - bit: 32 os: linux store: steam - /Adele.x86_64: + "/Adele.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 457980 -'Adeptus Titanicus: Dominus': +"Adeptus Titanicus: Dominus": gog: id: 1607008216 installDir: Adeptus Titanicus Dominus: {} launch: - /Dominus.exe: + "/Dominus.exe": - when: - os: windows store: steam @@ -15055,7 +15117,7 @@ Adera: installDir: Adera: {} launch: - /Adera.exe: + "/Adera.exe": - when: - os: windows store: steam @@ -15063,7 +15125,7 @@ Adera: id: 915140 Adidas Power Soccer: files: - /SaveGame: + "/SaveGame": tags: - save when: @@ -15074,8 +15136,8 @@ Adios: installDir: Adios: {} launch: - /Adios.exe: - - arguments: '-game' + "/Adios.exe": + - arguments: "-game" when: - store: steam steam: @@ -15084,15 +15146,15 @@ Adjacency: installDir: Adjacency: {} launch: - /Adjacency: + "/Adjacency": - when: - os: linux store: steam - /Adjacency.app/Contents/MacOS/Adjacency: + "/Adjacency.app/Contents/MacOS/Adjacency": - when: - os: mac store: steam - /Adjacency.exe: + "/Adjacency.exe": - when: - os: windows store: steam @@ -15105,21 +15167,21 @@ Admine: installDir: Admine: {} launch: - /linuxbin/adminegame: + "/linuxbin/adminegame": - when: - bit: 64 os: linux store: steam - /linuxbin/adminegameDevdebug: + "/linuxbin/adminegameDevdebug": - when: - bit: 64 os: linux store: steam - /winbin/adminegame.exe: + "/winbin/adminegame.exe": - when: - os: windows store: steam - /winbin/adminegameDevdebug.exe: + "/winbin/adminegameDevdebug.exe": - when: - os: windows store: steam @@ -15129,7 +15191,7 @@ Admiral Stepinski: installDir: Admiral Stepinski: {} launch: - /Admiral_Stepinski.exe: + "/Admiral_Stepinski.exe": - when: - os: windows store: steam @@ -15139,7 +15201,7 @@ Adolescent Santa Claus: installDir: SantaVN: {} launch: - /santa.exe: + "/santa.exe": - when: - os: windows store: steam @@ -15149,7 +15211,7 @@ Adolf Hitler Humiliation Simulator: installDir: Adolf Hitler Humiliation Simulator: {} launch: - /Launcher.exe: + "/Launcher.exe": - when: - os: windows store: steam @@ -15162,7 +15224,7 @@ Adonis: installDir: Adonis: {} launch: - /Adonis.exe: + "/Adonis.exe": - when: - bit: 64 os: windows @@ -15173,8 +15235,8 @@ Adoption: installDir: LocoParentis: {} launch: - /LocoParentis.exe: - - arguments: '-nohmd' + "/LocoParentis.exe": + - arguments: "-nohmd" when: - bit: 64 os: windows @@ -15183,7 +15245,7 @@ Adoption: id: 693800 Adorable Crush: files: - /acrush_Data/Saves/*.bin: + "/acrush_Data/Saves/*.bin": tags: - config when: @@ -15191,7 +15253,7 @@ Adorable Crush: installDir: Adorable Crush: {} launch: - /acrush.exe: + "/acrush.exe": - when: - os: windows store: steam @@ -15201,12 +15263,12 @@ Adorables: installDir: Adorables: {} launch: - /Adorables.x86_64: + "/Adorables.x86_64": - when: - bit: 64 os: linux store: steam - /adorables.exe: + "/adorables.exe": - when: - os: windows store: steam @@ -15216,7 +15278,7 @@ Adore: installDir: Adore: {} launch: - /Adore.exe: + "/Adore.exe": - when: - os: windows store: steam @@ -15227,7 +15289,7 @@ Adrenaline Adventure: id: 555760 Adrift: files: - /ADR1FT/Saved/SaveGames: + "/ADR1FT/Saved/SaveGames": tags: - config - save @@ -15236,8 +15298,8 @@ Adrift: installDir: ADR1FT: {} launch: - /ADR1FT.exe: - - arguments: '-steam' + "/ADR1FT.exe": + - arguments: "-steam" when: - bit: 64 os: windows @@ -15248,7 +15310,7 @@ Adrift Arena: installDir: Adrift Arena: {} launch: - /adrift_arena.exe: + "/adrift_arena.exe": - when: - bit: 64 os: windows @@ -15259,7 +15321,7 @@ Adult Math: installDir: Adult Math: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -15269,7 +15331,7 @@ Adult Toy Store: installDir: Adult Toy Store: {} launch: - /Delight.exe: + "/Delight.exe": - when: - os: windows store: steam @@ -15279,20 +15341,20 @@ Adva-lines: installDir: Adva-lines: {} launch: - /Adva-lines.exe: + "/Adva-lines.exe": - when: - os: windows store: steam steam: id: 878240 -'Advanced Gaming Platform: Epica': +"Advanced Gaming Platform: Epica": installDir: AGPEpica: {} launch: - /Epica.exe: + "/Epica.exe": - when: - store: steam - /Epica.sh: + "/Epica.sh": - when: - os: linux store: steam @@ -15302,7 +15364,7 @@ Advanced Tactics Gold: installDir: Advanced Tactics Gold: {} launch: - /autorun.exe: + "/autorun.exe": - when: - store: steam steam: @@ -15311,7 +15373,7 @@ Advent: installDir: Advent: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -15319,12 +15381,12 @@ Advent: id: 371370 Advent Rising: files: - /System/*.ini: + "/System/*.ini": tags: - config when: - os: windows - /System/Saves: + "/System/Saves": tags: - save when: @@ -15334,17 +15396,17 @@ Advent Rising: installDir: Advent Rising: {} launch: - /System/Play Advent Rising.exe: + "/System/Play Advent Rising.exe": - when: - store: steam - workingDir: /System + workingDir: "/System" steam: id: 3800 Adventure Apes and the Mayan Mystery: installDir: Adventure Apes and the Mayan Mystery: {} launch: - /AdventureApes-MayanMystery.exe: + "/AdventureApes-MayanMystery.exe": - when: - os: windows store: steam @@ -15354,11 +15416,11 @@ Adventure Boy Cheapskate DX: installDir: Adventure Boy Cheapskate DX: {} launch: - /Adventure Boy Cheapskate DX.app/Contents/MacOS/Flash Player: + "/Adventure Boy Cheapskate DX.app/Contents/MacOS/Flash Player": - when: - os: mac store: steam - /Adventure Boy Cheapskate DX.exe: + "/Adventure Boy Cheapskate DX.exe": - when: - os: windows store: steam @@ -15368,21 +15430,21 @@ Adventure Boy Jailbreak: installDir: Adventure Boy Jailbreak: {} launch: - /Adventure Boy Jailbreak.exe: + "/Adventure Boy Jailbreak.exe": - when: - os: windows store: steam - /Contents/MacOS/Adventure Boy Jailbreak: + "/Contents/MacOS/Adventure Boy Jailbreak": - when: - os: mac store: steam steam: id: 1207380 -'Adventure Chronicles: The Search For Lost Treasure': +"Adventure Chronicles: The Search For Lost Treasure": installDir: Adventure Chronicles The Search For Lost Treasure: {} launch: - /AdventureChronicles.exe: + "/AdventureChronicles.exe": - when: - store: steam steam: @@ -15402,7 +15464,7 @@ Adventure Craft: installDir: Adventure Craft: {} launch: - /AdventureCraft.exe: + "/AdventureCraft.exe": - when: - os: windows store: steam @@ -15412,7 +15474,7 @@ Adventure Delivery Service: installDir: Adventure Delivery Service: {} launch: - /Adventure Delivery Service.exe: + "/Adventure Delivery Service.exe": - when: - bit: 64 os: windows @@ -15423,7 +15485,7 @@ Adventure Dream Team: installDir: Adventure Dream Team: {} launch: - /Adventure Dream Team.exe: + "/Adventure Dream Team.exe": - when: - os: windows store: steam @@ -15433,7 +15495,7 @@ Adventure Galaxy: installDir: Adventure in the galaxy: {} launch: - /Adventure in the galaxy.exe: + "/Adventure in the galaxy.exe": - when: - store: steam steam: @@ -15452,7 +15514,7 @@ Adventure Hero: installDir: Adventure Hero: {} launch: - /AdventureHero.exe: + "/AdventureHero.exe": - when: - store: steam steam: @@ -15461,11 +15523,11 @@ Adventure In Aellion: installDir: Adventure In Aellion: {} launch: - /Adventure-Mac-Shipping.app: + "/Adventure-Mac-Shipping.app": - when: - os: mac store: steam - /AdventureInAellion.exe: + "/AdventureInAellion.exe": - when: - os: windows store: steam @@ -15475,11 +15537,11 @@ Adventure Lamp: installDir: Adventure Lamp: {} launch: - /adventurelamp.app: + "/adventurelamp.app": - when: - os: mac store: steam - /launcher.exe: + "/launcher.exe": - when: - os: windows store: steam @@ -15489,15 +15551,15 @@ Adventure Land - The Code MMORPG: installDir: adventureland: {} launch: - /Adventure Land: + "/Adventure Land": - when: - os: linux store: steam - /Adventure Land.app: + "/Adventure Land.app": - when: - os: mac store: steam - /Adventure Land.exe: + "/Adventure Land.exe": - when: - os: windows store: steam @@ -15507,16 +15569,16 @@ Adventure Park: installDir: AdventurePark: {} launch: - /AdventurePark-Steam.exe: - - arguments: '-console' + "/AdventurePark-Steam.exe": + - arguments: "-console" when: - os: windows store: steam steam: id: 256050 -'Adventure Pinball: Forgotten Island': +"Adventure Pinball: Forgotten Island": files: - /System/PB.ini: + "/System/PB.ini": tags: - config when: @@ -15525,7 +15587,7 @@ Adventure Portal: installDir: Adventure Portal: {} launch: - /Adventure Portal.exe: + "/Adventure Portal.exe": - when: - os: windows store: steam @@ -15538,7 +15600,7 @@ Adventure Road: installDir: AdventureRoad: {} launch: - /mxzl.exe: + "/mxzl.exe": - when: - os: windows store: steam @@ -15548,14 +15610,14 @@ Adventure Slime: installDir: Adventure Slime: {} launch: - /Adventure Slime.exe: + "/Adventure Slime.exe": - when: - store: steam steam: id: 1146500 -'Adventure Time: Explore the Dungeon Because I Don''t Know!': +"Adventure Time: Explore the Dungeon Because I Don't Know!": files: - /Wayforward Technologies/AdventureTime: + "/Wayforward Technologies/AdventureTime": tags: - config - save @@ -15564,16 +15626,16 @@ Adventure Slime: installDir: Adventure Time Explore the Dungeon Because I DON’T KNOW!: {} launch: - /Executable/AdventureTime.exe: + "/Executable/AdventureTime.exe": - when: - store: steam steam: id: 243560 -'Adventure Time: Finn and Jake Investigations': +"Adventure Time: Finn and Jake Investigations": installDir: Adventure Time Finn and Jake Investigations: {} launch: - /AdventureTimeFJI.exe: + "/AdventureTimeFJI.exe": - when: - os: windows store: steam @@ -15583,14 +15645,14 @@ Adventure Slime: - config steam: id: 369300 -'Adventure Time: Finn and Jake''s Epic Quest': +"Adventure Time: Finn and Jake's Epic Quest": files: - /options.at: + "/options.at": tags: - config when: - os: windows - /save#.at: + "/save#.at": tags: - save when: @@ -15598,19 +15660,19 @@ Adventure Slime: installDir: Adventure Time: {} launch: - /FJEpicQuest.exe: + "/FJEpicQuest.exe": - when: - store: steam steam: id: 258590 -'Adventure Time: Magic Man''s Head Games': +"Adventure Time: Magic Man's Head Games": installDir: - Adventure Time Magic Man's Head Games: {} + "Adventure Time Magic Man's Head Games": {} steam: id: 412790 -'Adventure Time: Pirates of the Enchiridion': +"Adventure Time: Pirates of the Enchiridion": files: - /AppData/LocalLow/Outright Games Ltd/Adventure Time Pirates of the Enchiridion/progress.dat: + "/AppData/LocalLow/Outright Games Ltd/Adventure Time Pirates of the Enchiridion/progress.dat": tags: - save when: @@ -15618,7 +15680,7 @@ Adventure Slime: installDir: Adventure Time Pirates of the Enchiridion: {} launch: - /Adventure Time Pirates of the Enchiridion.exe: + "/Adventure Time Pirates of the Enchiridion.exe": - when: - bit: 64 os: windows @@ -15629,14 +15691,14 @@ Adventure Slime: - config steam: id: 728240 -'Adventure Time: The Secret of the Nameless Kingdom': +"Adventure Time: The Secret of the Nameless Kingdom": files: - /Wayforward/AdventureTime3: + "/Wayforward/AdventureTime3": tags: - save when: - os: windows - /Wayforward/AdventureTime3/wfEngine.ini: + "/Wayforward/AdventureTime3/wfEngine.ini": tags: - config when: @@ -15644,7 +15706,7 @@ Adventure Slime: installDir: Adventure Time The Secret Of The Nameless Kingdom: {} launch: - /executable/at3.exe: + "/executable/at3.exe": - when: - store: steam steam: @@ -15656,7 +15718,7 @@ Adventure World: installDir: Adventure World: {} launch: - /Adventure World.exe: + "/Adventure World.exe": - when: - os: windows store: steam @@ -15666,28 +15728,30 @@ Adventure in Kana Village: installDir: Adventure in Kana Village: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam + - os: mac + store: steam steam: id: 850830 Adventure in King Caries Land: installDir: Adventure in King Caries Land: {} launch: - /AdventureInKingCariesLand.exe: + "/AdventureInKingCariesLand.exe": - when: - bit: 64 os: windows store: steam steam: id: 1057150 -'Adventure in Russia: Road to Harvetsky': +"Adventure in Russia: Road to Harvetsky": installDir: Road to Harvetsky: {} launch: - /nGame.exe: + "/nGame.exe": - when: - os: windows store: steam @@ -15697,20 +15761,20 @@ Adventure in the Tower of Flight: installDir: TowerOfFlight: {} launch: - /TowerOfFlight.app: + "/TowerOfFlight.app": - when: - os: mac store: steam - /TowerOfFlight.exe: + "/TowerOfFlight.exe": - when: - os: windows store: steam - /TowerOfFlight.x86: + "/TowerOfFlight.x86": - when: - bit: 32 os: linux store: steam - /TowerOfFlight.x86_64: + "/TowerOfFlight.x86_64": - when: - bit: 64 os: linux @@ -15721,11 +15785,11 @@ Adventure mosaics. Forest spirits: installDir: Adventure mosaics. Forest spirits: {} launch: - /Adventure mosaics. Forest spirits.app: + "/Adventure mosaics. Forest spirits.app": - when: - os: mac store: steam - /Adventure mosaics. Forest spirits.exe: + "/Adventure mosaics. Forest spirits.exe": - when: - os: windows store: steam @@ -15735,7 +15799,7 @@ Adventure of Great Wolf: installDir: fekheskhezfebuek: {} launch: - /fekheskhezfebuek.exe: + "/fekheskhezfebuek.exe": - when: - os: windows store: steam @@ -15745,11 +15809,11 @@ Adventure of Thieves: installDir: Adventure Of Thieves: {} launch: - /aot.app: + "/aot.app": - when: - os: mac store: steam - /aot.exe: + "/aot.exe": - when: - os: windows store: steam @@ -15759,14 +15823,14 @@ Adventure of a Digger: installDir: Lode Runner: {} launch: - /AoaD.exe: + "/AoaD.exe": - when: - store: steam steam: id: 868460 Adventure of a Lifetime: files: - /Saved Games/MoeNovel/Adventure of a Lifetime: + "/Saved Games/MoeNovel/Adventure of a Lifetime": tags: - save when: @@ -15774,7 +15838,7 @@ Adventure of a Lifetime: installDir: Adventure of a Lifetime: {} launch: - /AdvHD.exe: + "/AdvHD.exe": - when: - os: windows store: steam @@ -15784,15 +15848,15 @@ Adventure or Normality?: installDir: Adventure or Normality: {} launch: - /AdventureNormality/AdventureNormality.app: + "/AdventureNormality/AdventureNormality.app": - when: - os: mac store: steam - /AdventureNormality/AdventureNormality.exe: + "/AdventureNormality/AdventureNormality.exe": - when: - os: windows store: steam - /AdventureNormality/AdventureNormality.sh: + "/AdventureNormality/AdventureNormality.sh": - when: - os: linux store: steam @@ -15802,11 +15866,11 @@ AdventureQuest 3D: installDir: AdventureQuest3D: {} launch: - /AQ3D.app/Contents/MacOS/AQ3D: + "/AQ3D.app/Contents/MacOS/AQ3D": - when: - os: mac store: steam - /aq3d/aq3d.exe: + "/aq3d/aq3d.exe": - when: - bit: 32 os: windows @@ -15817,7 +15881,7 @@ Adventureland XL: installDir: Adventureland XL: {} launch: - /Adventureland XL.exe: + "/Adventureland XL.exe": - when: - os: windows store: steam @@ -15827,7 +15891,7 @@ Adventurer Guild: installDir: Adventurer Guild: {} launch: - /AdventurerGuild.exe: + "/AdventurerGuild.exe": - when: - store: steam steam: @@ -15836,11 +15900,11 @@ Adventurer Manager: installDir: Adventurer Manager: {} launch: - /Adventurer Manager.app: + "/Adventurer Manager.app": - when: - os: mac store: steam - /Adventurer Manager.exe: + "/Adventurer Manager.exe": - when: - os: windows store: steam @@ -15848,9 +15912,9 @@ Adventurer Manager: id: 280320 Adventures Diary of Merchant: installDir: - Businessman's Diary of Dungeon Village: {} + "Businessman's Diary of Dungeon Village": {} launch: - /Businessman's Diary.exe: + "/Businessman's Diary.exe": - when: - os: windows store: steam @@ -15860,7 +15924,7 @@ Adventures On The Polluted Islands: installDir: Adventures On The Polluted Islands: {} launch: - /Adventures_On_The_Polluted_Islands.exe: + "/Adventures_On_The_Polluted_Islands.exe": - when: - os: windows store: steam @@ -15870,12 +15934,12 @@ Adventures in the Light & Dark: installDir: ADVENTURES IN THE LIGHT & DARK: {} launch: - /Adventures.exe: + "/Adventures.exe": - when: - bit: 64 os: windows store: steam - /BonusFeatures.bat: + "/BonusFeatures.bat": - when: - os: windows store: steam @@ -15885,44 +15949,44 @@ Adventures of Abrix: installDir: AdventuresOfAbrix: {} launch: - /aBrix 2.exe: + "/aBrix 2.exe": - when: - store: steam steam: id: 576380 -'Adventures of Bertram Fiddle: Episode 1: A Dreadly Business': +"Adventures of Bertram Fiddle: Episode 1: A Dreadly Business": installDir: Adventures of Bertram Fiddle Episode 1 A Dreadly Business: {} launch: - /The Adventures of Bertram Fiddle Episode 1.app: + "/The Adventures of Bertram Fiddle Episode 1.app": - when: - os: mac store: steam - /The Adventures of Bertram Fiddle Episode 1.exe: + "/The Adventures of Bertram Fiddle Episode 1.exe": - when: - os: windows store: steam registry: - 'HKEY_CURRENT_USER/Software/Rumpus Animation/The Adventures of Bertram Fiddle: Episode 1': + "HKEY_CURRENT_USER/Software/Rumpus Animation/The Adventures of Bertram Fiddle: Episode 1": tags: - config - save steam: id: 354680 -'Adventures of Bertram Fiddle: Episode 2: A Bleaker Predicklement': +"Adventures of Bertram Fiddle: Episode 2: A Bleaker Predicklement": installDir: Bertram Fiddle Episode 2: {} launch: - /BertramFiddleEp2.app/Contents/MacOS/BertramFiddleEp2: + "/BertramFiddleEp2.app/Contents/MacOS/BertramFiddleEp2": - when: - os: mac store: steam - /BertramFiddleEp2.exe: + "/BertramFiddleEp2.exe": - when: - os: windows store: steam registry: - 'HKEY_CURRENT_USER/Software/Rumpus Animation/The Adventures of Bertram Fiddle: A Bleaker Predicklment': + "HKEY_CURRENT_USER/Software/Rumpus Animation/The Adventures of Bertram Fiddle: A Bleaker Predicklment": tags: - config - save @@ -15930,7 +15994,7 @@ Adventures of Abrix: id: 489930 Adventures of Chris: files: - /AppData/LocalLow/Guin Entertainment LLC/Adventures of Chris: + "/AppData/LocalLow/Guin Entertainment LLC/Adventures of Chris": tags: - config - save @@ -15941,23 +16005,23 @@ Adventures of Chris: installDir: Adventures of Chris: {} launch: - /Adventures of Chris.app/Contents/MacOS/Adventures of Chris: + "/Adventures of Chris.app/Contents/MacOS/Adventures of Chris": - when: - os: mac store: steam - /Adventures of Chris.exe: + "/Adventures of Chris.exe": - when: - bit: 64 os: windows store: steam - /Adventures of Chris.x86: - - arguments: '-screen-fullscreen 0' + "/Adventures of Chris.x86": + - arguments: "-screen-fullscreen 0" when: - bit: 32 os: linux store: steam - /Adventures of Chris.x86_64: - - arguments: '-screen-fullscreen 0' + "/Adventures of Chris.x86_64": + - arguments: "-screen-fullscreen 0" when: - bit: 64 os: linux @@ -15968,12 +16032,12 @@ Adventures of Dragon: installDir: Adventures of Dragon: {} launch: - /Game.app: + "/Game.app": - when: - os: mac store: steam - /nw.exe: - - arguments: '--in-process-gpu' + "/nw.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam @@ -15983,7 +16047,7 @@ Adventures of Fluzz: installDir: Adventures Of Fluzz: {} launch: - /AOF.exe: + "/AOF.exe": - when: - os: windows store: steam @@ -15993,7 +16057,7 @@ Adventures of Hendri: installDir: Adventures of Hendri: {} launch: - /Adventures of Hendri.exe: + "/Adventures of Hendri.exe": - when: - os: windows store: steam @@ -16005,12 +16069,12 @@ Adventures of Heroes: Adventures of Hooi: steam: id: 563140 -'Adventures of Isabelle Fine: Murder on Rails': +"Adventures of Isabelle Fine: Murder on Rails": installDir: IsabelleFineMOR: {} launch: - /Game.exe: - - arguments: '--in-process-gpu' + "/Game.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam @@ -16020,7 +16084,7 @@ Adventures of Mike: installDir: Adventures of Mike: {} launch: - /Adventures of Mike.exe: + "/Adventures of Mike.exe": - when: - os: windows store: steam @@ -16028,12 +16092,12 @@ Adventures of Mike: id: 858180 Adventures of Pip: files: - /AppData/LocalLow/Tic Toc Games/Adventures of Pip: + "/AppData/LocalLow/Tic Toc Games/Adventures of Pip": tags: - save when: - os: windows - /Library/Caches/unity.Tic Toc Games.Adventures of Pip: + "/Library/Caches/unity.Tic Toc Games.Adventures of Pip": tags: - save when: @@ -16041,11 +16105,11 @@ Adventures of Pip: installDir: Adventures of Pip: {} launch: - /pip.app: + "/pip.app": - when: - os: mac store: steam - /pip.exe: + "/pip.exe": - when: - os: windows store: steam @@ -16059,17 +16123,17 @@ Adventures of Pipi: installDir: Adventures Of Pipi: {} launch: - /Adventures Of Pipi.exe: + "/Adventures Of Pipi.exe": - when: - os: windows store: steam steam: id: 744420 -'Adventures of Pipi 2: Save Hype': +"Adventures of Pipi 2: Save Hype": installDir: Adventures Of Pipi 2 Save Hype: {} launch: - /AOP2DSH.exe: + "/AOP2DSH.exe": - when: - os: windows store: steam @@ -16079,7 +16143,7 @@ Adventures of Quin85: installDir: Adventures of Quin85: {} launch: - /AOQ85.exe: + "/AOQ85.exe": - when: - os: windows store: steam @@ -16089,16 +16153,16 @@ Adventures of Robinson Crusoe: installDir: Adventures of Robinson Crusoe: {} launch: - /RobinsonCrusoe.exe: + "/RobinsonCrusoe.exe": - when: - store: steam steam: id: 334470 -'Adventures of forsenE: The Hobo Knight': +"Adventures of forsenE: The Hobo Knight": installDir: Adventures of forsenE The Hobo Knight: {} launch: - /Adventures of forsenE The Hobo Knight.exe: + "/Adventures of forsenE The Hobo Knight.exe": - when: - os: windows store: steam @@ -16108,7 +16172,7 @@ Adventures of musical tones and their notes: installDir: MUZIKALNA_IGRA: {} launch: - /MUZIKALNA_IGRA.exe: + "/MUZIKALNA_IGRA.exe": - when: - os: windows store: steam @@ -16118,27 +16182,27 @@ Adventures of the Worm: installDir: Adventures of the Worm: {} launch: - /Adventures of the Worm.exe: + "/Adventures of the Worm.exe": - when: - os: windows store: steam steam: id: 681410 -'Adventurezator: When Pigs Fly': +"Adventurezator: When Pigs Fly": installDir: Adventurezator: {} launch: - /Adventurezator.app: + "/Adventurezator.app": - when: - os: mac store: steam - /Launcher: - - arguments: '-screen-width 640 -screen-height 360' + "/Launcher": + - arguments: "-screen-width 640 -screen-height 360" when: - os: linux store: steam - /Launcher.exe: - - arguments: '-screen-width 640 -screen-height 360' + "/Launcher.exe": + - arguments: "-screen-width 640 -screen-height 360" when: - os: windows store: steam @@ -16148,7 +16212,7 @@ Adventuring Gentleman: installDir: Adventuring gentleman: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -16161,12 +16225,12 @@ Adventurous Life VR: id: 526270 AdvertCity: files: - /Contents/Resources/advertcity.save: + "/Contents/Resources/advertcity.save": tags: - save when: - os: mac - /advertcity.save: + "/advertcity.save": tags: - save when: @@ -16175,17 +16239,20 @@ AdvertCity: installDir: AdvertCity: {} launch: - /AdvertCity.app/Contents/MacOS/run.sh: + "/AdvertCity.app/Contents/MacOS/run.sh": - when: - bit: 64 os: mac store: steam - /AdvertCity.exe: + "/AdvertCity.exe": - when: - os: windows store: steam - /start_linux.sh: + "/start_linux.sh": - when: + - bit: 32 + os: linux + store: steam - bit: 64 os: linux store: steam @@ -16195,11 +16262,11 @@ Advisors at the End of the Universe: installDir: AEU: {} launch: - /AEU.exe: + "/AEU.exe": - when: - os: windows store: steam - /AEU.x86_64: + "/AEU.x86_64": - when: - bit: 64 os: linux @@ -16210,7 +16277,7 @@ Aegis: installDir: Aegis: {} launch: - /Aegis.exe: + "/Aegis.exe": - when: - os: windows store: steam @@ -16218,12 +16285,12 @@ Aegis: id: 530520 Aegis Defenders: files: - /AppData/LocalLow/GUTS Department/Aegis Defenders/.data: + "/AppData/LocalLow/GUTS Department/Aegis Defenders/.data": tags: - save when: - os: windows - /AppData/LocalLow/GUTS Department/Aegis Defenders/inputPrefs.data: + "/AppData/LocalLow/GUTS Department/Aegis Defenders/inputPrefs.data": tags: - config when: @@ -16238,11 +16305,11 @@ Aegis Defenders: installDir: Aegis Defenders: {} launch: - /AegisDefenders.app/Contents/MacOS/AegisDefenders: + "/AegisDefenders.app/Contents/MacOS/AegisDefenders": - when: - os: mac store: steam - /AegisDefenders.exe: + "/AegisDefenders.exe": - when: - os: windows store: steam @@ -16254,7 +16321,7 @@ Aegis Defenders: id: 371140 Aegis Descent: files: - /Casper/Saved/Config/WindowsNoEditor/GameUserSettings.ini: + "/Casper/Saved/Config/WindowsNoEditor/GameUserSettings.ini": tags: - config when: @@ -16262,7 +16329,7 @@ Aegis Descent: installDir: AegisDescent: {} launch: - /AegisDescent.exe: + "/AegisDescent.exe": - when: - bit: 64 os: windows @@ -16273,25 +16340,25 @@ Aegis Online: installDir: Aegis Online: {} launch: - /Aegis Online.exe: + "/Aegis Online.exe": - when: - os: windows store: steam - /Aegis Online.x86_64: + "/Aegis Online.x86_64": - when: - os: linux store: steam - /Contents/MacOS/Aegis Online: + "/Contents/MacOS/Aegis Online": - when: - os: mac store: steam steam: id: 1131590 -'Aegis of Earth: Protonovus Assault': +"Aegis of Earth: Protonovus Assault": installDir: Aegis of Earth Protonovus Assault: {} launch: - /release.exe: + "/release.exe": - when: - os: windows store: steam @@ -16301,11 +16368,11 @@ AegisM: installDir: AegisM: {} launch: - /AegisM.exe: + "/AegisM.exe": - when: - os: windows store: steam - /AegisM.x86_64: + "/AegisM.x86_64": - when: - bit: 64 os: linux @@ -16316,7 +16383,7 @@ Aegyptus: installDir: Aegyptus_content: {} launch: - /L_C_AEG.exe: + "/L_C_AEG.exe": - when: - os: windows store: steam @@ -16326,7 +16393,7 @@ Aeioth RPG: installDir: AeiothRPG: {} launch: - /AeiothRPG.exe: + "/AeiothRPG.exe": - when: - os: windows store: steam @@ -16336,7 +16403,7 @@ Aentity: installDir: AENTITY: {} launch: - /AENTITY.exe: + "/AENTITY.exe": - when: - os: windows store: steam @@ -16344,7 +16411,7 @@ Aentity: id: 536690 Aeolis Tournament: files: - /AppData/LocalLow/Beyond Fun Studio/Aeolis Tournament: + "/AppData/LocalLow/Beyond Fun Studio/Aeolis Tournament": tags: - config - save @@ -16353,15 +16420,15 @@ Aeolis Tournament: installDir: Aeolis Tournament: {} launch: - /Aeolis Tournament.app: + "/Aeolis Tournament.app": - when: - os: mac store: steam - /Aeolis Tournament.exe: + "/Aeolis Tournament.exe": - when: - os: windows store: steam - /Aeolis Tournament.x86_64: + "/Aeolis Tournament.x86_64": - when: - os: linux store: steam @@ -16376,21 +16443,21 @@ Aeon Command: installDir: aeoncommand: {} launch: - /aeoncommand.app: + "/aeoncommand.app": - when: - os: mac store: steam - /aeoncommand.exe: - - arguments: '-force-gfx-st' + "/aeoncommand.exe": + - arguments: "-force-gfx-st" when: - os: windows store: steam - /aeoncommand.x86: + "/aeoncommand.x86": - when: - bit: 32 os: linux store: steam - /aeoncommand.x86_64: + "/aeoncommand.x86_64": - when: - bit: 64 os: linux @@ -16401,7 +16468,7 @@ Aeon Must Die!: installDir: Aeon Must Die: {} launch: - /AeonMustDie/Binaries/Win64/AeonMustDie-Win64-Shipping.exe: + "/AeonMustDie/Binaries/Win64/AeonMustDie-Win64-Shipping.exe": - when: - bit: 64 os: windows @@ -16412,38 +16479,38 @@ Aeon of Sands - The Trail: installDir: Aeon of Sands - The Trail: {} launch: - /AeonOfSands.app/Contents/MacOS/love: + "/AeonOfSands.app/Contents/MacOS/love": - when: - os: mac store: steam - /AeonOfSands_thetrail.exe: + "/AeonOfSands_thetrail.exe": - when: - os: windows store: steam - /Aeon_of_Sands_-_The_Trail-x86_64.AppImage: + "/Aeon_of_Sands_-_The_Trail-x86_64.AppImage": - when: - os: linux store: steam steam: id: 907820 -Aeon's End: +"Aeon's End": installDir: - Aeon's End: {} + "Aeon's End": {} launch: - /AeonsEnd.app: + "/AeonsEnd.app": - when: - os: mac store: steam - /AeonsEnd.exe: + "/AeonsEnd.exe": - when: - os: windows store: steam - /AeonsEnd.x86: + "/AeonsEnd.x86": - when: - bit: 32 os: linux store: steam - /AeonsEnd.x86_64: + "/AeonsEnd.x86_64": - when: - bit: 64 os: linux @@ -16454,53 +16521,54 @@ Aequitas Orbis: installDir: Aequitas Orbis: {} launch: - /AO.sh: - - arguments: 'res://scene/splash.tscn' + "/AO.sh": + - arguments: "res://scene/splash.tscn" when: - os: linux store: steam - /AO32.exe: - - arguments: 'res://scene/splash.tscn' + "/AO32.exe": + - arguments: "res://scene/splash.tscn" when: - bit: 32 os: windows store: steam - /AO64.exe: - - arguments: 'res://scene/splash.tscn' + "/AO64.exe": + - arguments: "res://scene/splash.tscn" when: - bit: 64 os: windows store: steam - /AOfat.bin: - - arguments: 'res://scene/splash.tscn' + "/AOfat.bin": + - arguments: "res://scene/splash.tscn" when: - os: mac store: steam steam: id: 679100 -'Aer: Memories of Old': +"Aer: Memories of Old": files: - /Daedalic Entertainment GmbH/Aer/aersave.fks: + "/Daedalic Entertainment GmbH/Aer/aersave.fks": tags: - save when: - os: windows - /Daedalic Entertainment GmbH/Aer/config.ini: + "/Daedalic Entertainment GmbH/Aer/config.ini": tags: - config when: - os: windows - /GOG.com/Galaxy/Applications/49854609386510630/Storage/Shared/Files/aersave.fks: + "/GOG.com/Galaxy/Applications/49854609386510630/Storage/Shared/Files/aersave.fks": tags: - save when: - - store: gog - /Daedalic Entertainment GmbH/Aer/aersave.fks: + - os: windows + store: gog + "/Daedalic Entertainment GmbH/Aer/aersave.fks": tags: - save when: - os: linux - /Daedalic Entertainment GmbH/Aer/config.ini: + "/Daedalic Entertainment GmbH/Aer/config.ini": tags: - config when: @@ -16510,15 +16578,15 @@ Aequitas Orbis: installDir: AER: {} launch: - /AER.app/Contents/MacOS/AER: + "/AER.app/Contents/MacOS/AER": - when: - os: mac store: steam - /AER.exe: + "/AER.exe": - when: - os: windows store: steam - /AER.x86: + "/AER.x86": - when: - os: linux store: steam @@ -16526,7 +16594,7 @@ Aequitas Orbis: id: 331870 Aerannis: files: - /Aerannis: + "/Aerannis": tags: - config - save @@ -16535,11 +16603,11 @@ Aerannis: installDir: Aerannis: {} launch: - /Aerannis.app/Contents/MacOS/love: + "/Aerannis.app/Contents/MacOS/love": - when: - os: mac store: steam - /Aerannis.exe: + "/Aerannis.exe": - when: - os: windows store: steam @@ -16549,15 +16617,15 @@ AereA: installDir: AereA: {} launch: - /AereA.app: + "/AereA.app": - when: - os: mac store: steam - /AereA.x86_64: + "/AereA.x86_64": - when: - os: linux store: steam - /Aerea.exe: + "/Aerea.exe": - when: - os: windows store: steam @@ -16567,11 +16635,11 @@ Aerena - Clash of Champions: installDir: AERENA - Masters Edition: {} launch: - /Aerena.app: + "/Aerena.app": - when: - os: mac store: steam - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -16585,11 +16653,11 @@ Aerial Destruction: installDir: Aerial Destruction: {} launch: - /AERIAL-DESTRUCTION.app/Contents/MacOS/UDKGame: + "/AERIAL-DESTRUCTION.app/Contents/MacOS/UDKGame": - when: - os: mac store: steam - /Binaries/Win32/UDK.exe: + "/Binaries/Win32/UDK.exe": - when: - os: windows store: steam @@ -16599,14 +16667,14 @@ Aerial Guardian: installDir: Aerial Guardian: {} launch: - /Aerial Guardian.exe: + "/Aerial Guardian.exe": - when: - store: steam steam: id: 885730 -Aerial Knight's Never Yield: +"Aerial Knight's Never Yield": files: - /AppData/LocalLow/Aerial_Knight/AKNY: + "/AppData/LocalLow/Aerial_Knight/AKNY": tags: - save when: @@ -16614,31 +16682,31 @@ Aerial Knight's Never Yield: installDir: Aerial_Knights Never Yield: {} launch: - /Aerial_Knight's Never Yield/AKNY.exe: + "/Aerial_Knight's Never Yield/AKNY.exe": - when: - os: windows store: steam steam: id: 1323540 -'Aero Tales Online: The World - Anime MMORPG': +"Aero Tales Online: The World - Anime MMORPG": installDir: Aero Tales Online The World: {} launch: - /Aero Tales Online The World.exe: + "/Aero Tales Online The World.exe": - when: - bit: 64 os: windows store: steam steam: id: 1943610 -Aero's Quest: +"Aero's Quest": files: - /aerosquest110: + "/aerosquest110": tags: - save when: - os: windows - /aerosquest110/settings.sav: + "/aerosquest110/settings.sav": tags: - config when: @@ -16646,11 +16714,11 @@ Aero's Quest: installDir: aerosquest: {} launch: - /aerosquest.app: + "/aerosquest.app": - when: - os: mac store: steam - /aerosquest.exe: + "/aerosquest.exe": - when: - os: windows store: steam @@ -16660,7 +16728,7 @@ AeroChopper: installDir: AeroChopper: {} launch: - /AeroChopperNonDemo.exe: + "/AeroChopperNonDemo.exe": - when: - os: windows store: steam @@ -16673,27 +16741,27 @@ Aerofly FS 1 Flight Simulator: installDir: aerofly FS: {} launch: - /aerofly-fs.exe: + "/aerofly-fs.exe": - when: - store: steam - - arguments: '-noconfigs' + - arguments: "-noconfigs" when: - store: steam steam: id: 214130 Aerofly FS 2 Flight Simulator: files: - /Aerofly FS 2/gc-map.mcf: + "/Aerofly FS 2/gc-map.mcf": tags: - config when: - os: windows - /Aerofly FS 2/main.mcf: + "/Aerofly FS 2/main.mcf": tags: - config when: - os: windows - /Aerofly FS 2/mission_progress.mcf: + "/Aerofly FS 2/mission_progress.mcf": tags: - save when: @@ -16701,19 +16769,19 @@ Aerofly FS 2 Flight Simulator: installDir: Aerofly FS 2 Flight Simulator: {} launch: - /bin64/aerofly_fs_2.exe: + "/bin64/aerofly_fs_2.exe": - when: - bit: 64 os: windows store: steam - workingDir: /bin64 - /bin64_linux/aerofly_fs_2_x64: + workingDir: "/bin64" + "/bin64_linux/aerofly_fs_2_x64": - when: - bit: 64 os: linux store: steam - workingDir: /bin64_linux - /bin64_macos/Aerofly FS 2.app: + workingDir: "/bin64_linux" + "/bin64_macos/Aerofly FS 2.app": - when: - os: mac store: steam @@ -16723,7 +16791,7 @@ Aerofly RC 7: installDir: aerofly RC 7: {} launch: - /aerofly-rc-7.exe: + "/aerofly-rc-7.exe": - when: - bit: 32 os: windows @@ -16739,7 +16807,7 @@ Aeroplanoui: installDir: Aeroplanoui: {} launch: - /AeroplanouiGame.exe: + "/AeroplanouiGame.exe": - when: - store: steam steam: @@ -16753,14 +16821,14 @@ Aery: Aery VR: steam: id: 1198000 -Aesop's Fables - A New Approach: +"Aesop's Fables - A New Approach": steam: id: 1167940 Aesthetic Arena: installDir: AestheticArena: {} launch: - /Aesthetic Arena.exe: + "/Aesthetic Arena.exe": - when: - os: windows store: steam @@ -16770,15 +16838,15 @@ Aesthetic Melody: installDir: Aesthetic Melody: {} launch: - /AestheticMelody.app: + "/AestheticMelody.app": - when: - os: mac store: steam - /AestheticMelody.exe: + "/AestheticMelody.exe": - when: - os: windows store: steam - /AestheticMelody.x86: + "/AestheticMelody.x86": - when: - os: linux store: steam @@ -16786,7 +16854,7 @@ Aesthetic Melody: id: 618360 Aeterna Noctis: files: - /AppData/LocalLow/AeternaTheGame/Aeterna Noctis: + "/AppData/LocalLow/AeternaTheGame/Aeterna Noctis": tags: - save when: @@ -16794,7 +16862,7 @@ Aeterna Noctis: installDir: Aeterna Noctis: {} launch: - /Aeterna Noctis.exe: + "/Aeterna Noctis.exe": - when: - bit: 64 os: windows @@ -16805,7 +16873,7 @@ Aeternitas: installDir: Aeternitas: {} launch: - /Aeternitas.exe: + "/Aeternitas.exe": - when: - os: windows store: steam @@ -16815,7 +16883,7 @@ Aeternum: installDir: Aeternum: {} launch: - /Aeternum.exe: + "/Aeternum.exe": - when: - os: windows store: steam @@ -16825,7 +16893,7 @@ Aether Drift: installDir: Aether Drift: {} launch: - /AetherDrift.exe: + "/AetherDrift.exe": - when: - os: windows store: steam @@ -16835,7 +16903,7 @@ Aether Way: installDir: Aether Way: {} launch: - /AetherWay.exe: + "/AetherWay.exe": - when: - os: windows store: steam @@ -16845,12 +16913,12 @@ Aetheria Online: installDir: Aetheria Online: {} launch: - /aetheriax64/AetheriaOnline.exe: + "/aetheriax64/AetheriaOnline.exe": - when: - bit: 64 os: windows store: steam - /aetheriax86/AetheriaOnline.exe: + "/aetheriax86/AetheriaOnline.exe": - when: - bit: 32 os: windows @@ -16861,30 +16929,30 @@ Aetherspace: installDir: Aetherspace: {} launch: - /Aetherspace.exe: + "/Aetherspace.exe": - when: - os: windows store: steam steam: id: 659900 -'Aeve: Zero Gravity': +"Aeve: Zero Gravity": installDir: AeveZero Gravity: {} launch: - /Aeve.app/Contents/MacOS/Aeve: + "/Aeve.app/Contents/MacOS/Aeve": - when: - os: mac store: steam - /Aeve.exe: + "/Aeve.exe": - when: - os: windows store: steam - /Aeve.x86: + "/Aeve.x86": - when: - bit: 32 os: linux store: steam - /Aeve.x86_64: + "/Aeve.x86_64": - when: - bit: 64 os: linux @@ -16901,33 +16969,33 @@ Afelhem: installDir: Afelhem: {} launch: - /linux/Afelhem.x86: + "/linux/Afelhem.x86": - when: - os: linux store: steam - /macos/Afelhem.app: + "/macos/Afelhem.app": - when: - os: mac store: steam - /windows/Afelhem.exe: + "/windows/Afelhem.exe": - when: - os: windows store: steam steam: id: 848890 -'Affairs of the Court: Choice of Romance': +"Affairs of the Court: Choice of Romance": installDir: Affairs of the Court Choice of Romance: {} launch: - /Affairs of the Court Choice of Romance.app/Contents/MacOS/Affairs of the Court Choice of Romance: + "/Affairs of the Court Choice of Romance.app/Contents/MacOS/Affairs of the Court Choice of Romance": - when: - os: mac store: steam - /AffairsOfTheCourt: + "/AffairsOfTheCourt": - when: - os: linux store: steam - /AffairsOfTheCourt.exe: + "/AffairsOfTheCourt.exe": - when: - os: windows store: steam @@ -16937,7 +17005,7 @@ Affected Zone Tactics: installDir: Affected Zone Tactics: {} launch: - /client.exe: + "/client.exe": - when: - os: windows store: steam @@ -16947,7 +17015,7 @@ Affinity: installDir: Affinity: {} launch: - /windows_content/BoldBrushProject.exe: + "/windows_content/BoldBrushProject.exe": - when: - os: windows store: steam @@ -16957,7 +17025,7 @@ Affliction: installDir: Affliction: {} launch: - /Affliction.exe: + "/Affliction.exe": - when: - os: windows store: steam @@ -16965,12 +17033,12 @@ Affliction: id: 617590 Affogato: files: - /AppData/LocalLow/Befun/Affogato: + "/AppData/LocalLow/Befun/Affogato": tags: - config when: - os: windows - /AppData/LocalLow/Befun/Affogato/QSaveData/GameSaveData: + "/AppData/LocalLow/Befun/Affogato/QSaveData/GameSaveData": tags: - save when: @@ -16978,7 +17046,7 @@ Affogato: installDir: Affogato: {} launch: - /Affogato.exe: + "/Affogato.exe": - when: - os: windows store: steam @@ -16988,17 +17056,17 @@ AffordaGolf Online: installDir: AffordaGolf: {} launch: - /AffordaGolf.exe: + "/AffordaGolf.exe": - when: - os: windows store: steam steam: id: 567040 -Afghanistan '11: +"Afghanistan '11": installDir: Afghanistan 11: {} launch: - /autorun.exe: + "/autorun.exe": - when: - os: windows store: steam @@ -17016,7 +17084,7 @@ Africa Hunting: installDir: Africa Hunting: {} launch: - /Africa Hunting.exe: + "/Africa Hunting.exe": - when: - os: windows store: steam @@ -17026,7 +17094,7 @@ After All: installDir: After All: {} launch: - /afterall2.exe: + "/afterall2.exe": - when: - os: windows store: steam @@ -17036,7 +17104,7 @@ After Death: installDir: After Death: {} launch: - /ADGame.exe: + "/ADGame.exe": - when: - os: windows store: steam @@ -17046,7 +17114,7 @@ After Dreams: installDir: After Dreams: {} launch: - /AD_Game/AfterDreams.exe: + "/AD_Game/AfterDreams.exe": - when: - bit: 64 os: windows @@ -17060,18 +17128,18 @@ After Hours: installDir: After Hours: {} launch: - /After Hours.exe: + "/After Hours.exe": - when: - os: windows store: steam steam: id: 989040 -'After I Met That Catgirl, My Questlist Got Too Long!': +"After I Met That Catgirl, My Questlist Got Too Long!": installDir: - 'After I met that catgirl, my questlist got too long!': {} + "After I met that catgirl, my questlist got too long!": {} launch: - /nw.exe: - - arguments: '--in-process-gpu' + "/nw.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam @@ -17081,7 +17149,7 @@ After Life - Story of a Father: installDir: After Life - Story of a Father: {} launch: - /After Life.exe: + "/After Life.exe": - when: - bit: 32 os: windows @@ -17093,11 +17161,11 @@ After Life VR: After Life VR: {} steam: id: 772590 -'After Rain: Phoenix Rise': +"After Rain: Phoenix Rise": installDir: After Rain Phoenix Rise: {} launch: - /ARPRv5.exe: + "/ARPRv5.exe": - when: - os: windows store: steam @@ -17107,20 +17175,20 @@ After Reset RPG: installDir: After Reset RPG: {} launch: - /afterreset.app: + "/afterreset.app": - when: - os: mac store: steam - /afterreset.exe: + "/afterreset.exe": - when: - os: windows store: steam - /afterreset.x86: + "/afterreset.x86": - when: - bit: 32 os: linux store: steam - /afterreset.x86_64: + "/afterreset.x86_64": - when: - bit: 64 os: linux @@ -17131,7 +17199,7 @@ After The Suns: installDir: After The Suns: {} launch: - /ATS_.exe: + "/ATS_.exe": - when: - bit: 64 os: windows @@ -17140,7 +17208,7 @@ After The Suns: id: 1101200 After Us: files: - /Local/AfterUs/Saved/Config: + "/Local/AfterUs/Saved/Config": tags: - config when: @@ -17148,7 +17216,7 @@ After Us: installDir: After Us: {} launch: - /AfterUs.exe: + "/AfterUs.exe": - when: - bit: 64 os: windows @@ -17159,7 +17227,7 @@ After the Collapse: installDir: AfterTheCollapse: {} launch: - /Collapse.exe: + "/Collapse.exe": - when: - os: windows store: steam @@ -17169,7 +17237,7 @@ After the Empire: installDir: After the Empire: {} launch: - /After the Empire.exe: + "/After the Empire.exe": - when: - os: windows store: steam @@ -17177,12 +17245,12 @@ After the Empire: id: 493220 After the End: files: - /Campaign.cdf: + "/Campaign.cdf": tags: - save when: - os: windows - /Safari.cdf: + "/Safari.cdf": tags: - save when: @@ -17191,11 +17259,11 @@ After the End: HKEY_CURRENT_USER/Software/KraiSoft/After The End: tags: - config -'After the End: The Harvest': +"After the End: The Harvest": installDir: After The End The Harvest: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -17210,7 +17278,7 @@ After the Inferno: installDir: After the Inferno: {} launch: - /AfterTheInferno.exe: + "/AfterTheInferno.exe": - when: - os: windows store: steam @@ -17232,7 +17300,7 @@ Afterbern Democralypse: installDir: Afterbern Democralypse: {} launch: - /Afterbern Democralypse.exe: + "/Afterbern Democralypse.exe": - when: - os: windows store: steam @@ -17242,7 +17310,7 @@ Afterburn: installDir: AFTERBURN: {} launch: - /AFTERBURN.exe: + "/AFTERBURN.exe": - when: - os: windows store: steam @@ -17252,7 +17320,7 @@ Aftercharge: installDir: Aftercharge: {} launch: - /Aftercharge.exe: + "/Aftercharge.exe": - when: - os: windows store: steam @@ -17276,7 +17344,7 @@ Afterfall Reconquest Episode I: - save when: - os: windows - /PearlGame/Config: + "/PearlGame/Config": tags: - config when: @@ -17284,26 +17352,26 @@ Afterfall Reconquest Episode I: installDir: Afterfall_Reconquest_1: {} launch: - /Binaries/Win32/PearlGame.exe: + "/Binaries/Win32/PearlGame.exe": - when: - bit: 32 os: windows store: steam - /Binaries/Win64/PearlGame.exe: + "/Binaries/Win64/PearlGame.exe": - when: - bit: 64 os: windows store: steam steam: id: 299640 -'Afterfall: InSanity': +"Afterfall: InSanity": files: - /My Games/Afterfall InSanity/RascalGame/Config: + "/My Games/Afterfall InSanity/RascalGame/Config": tags: - config when: - os: windows - /My Games/Afterfall InSanity/RascalGame/SaveData: + "/My Games/Afterfall InSanity/RascalGame/SaveData": tags: - save when: @@ -17311,29 +17379,29 @@ Afterfall Reconquest Episode I: installDir: Afterfall InSanity: {} launch: - /Binaries/Win32/InSanity-Win32-Shipping.exe: + "/Binaries/Win32/InSanity-Win32-Shipping.exe": - when: - os: windows store: steam - workingDir: /Binaries/Win32 - - arguments: '-dlc' + workingDir: "/Binaries/Win32" + - arguments: "-dlc" when: - os: windows store: steam - workingDir: /Binaries/Win32 - /Binaries/Win32/InSanity-Win32-Shipping.exeBinaries/Win32/InSanity-Win32-Shipping.exeBinaries/Win32/InSanity-Win32-Shipping.exe: - - arguments: '-safemode' + workingDir: "/Binaries/Win32" + "/Binaries/Win32/InSanity-Win32-Shipping.exeBinaries/Win32/InSanity-Win32-Shipping.exeBinaries/Win32/InSanity-Win32-Shipping.exe": + - arguments: "-safemode" when: - os: windows store: steam - workingDir: /Binaries/Win32 + workingDir: "/Binaries/Win32" steam: id: 224420 Aftergrinder: installDir: Aftergrinder: {} launch: - /Aftergrinder.exe: + "/Aftergrinder.exe": - when: - os: windows store: steam @@ -17341,12 +17409,12 @@ Aftergrinder: id: 618310 Afterimage: files: - /Afterimage/Saved/Config/WindowsNoEditor: + "/Afterimage/Saved/Config/WindowsNoEditor": tags: - save when: - os: windows - /Afterimage/Saved/SaveGames: + "/Afterimage/Saved/SaveGames": tags: - config when: @@ -17354,7 +17422,7 @@ Afterimage: installDir: Afterimage: {} launch: - /Afterimage.exe: + "/Afterimage.exe": - when: - os: windows store: steam @@ -17362,12 +17430,12 @@ Afterimage: id: 1701520 Afterlife: files: - /ALIFE.INI: + "/ALIFE.INI": tags: - config when: - os: windows - /ALIFE/AFTERDOS.INI: + "/ALIFE/AFTERDOS.INI": tags: - config when: @@ -17375,7 +17443,7 @@ Afterlife: - os: windows - os: mac - os: linux - /SAVE: + "/SAVE": tags: - save when: @@ -17388,16 +17456,16 @@ Afterlife: installDir: Afterlife: {} launch: - /Afterlife.app: + "/Afterlife.app": - when: - os: mac store: steam - /DOSBOX/DOSBox.exe: - - arguments: '-conf \"..\\dosbox_afterlife.conf\" -conf \"..\\dosbox_afterlife_single.conf\" -noconsole -c exit' + "/DOSBOX/DOSBox.exe": + - arguments: "-conf \\\"..\\\\dosbox_afterlife.conf\\\" -conf \\\"..\\\\dosbox_afterlife_single.conf\\\" -noconsole -c exit" when: - os: windows store: steam - workingDir: /DOSBOX + workingDir: "/DOSBOX" steam: id: 557240 Afterlife (2019): @@ -17407,9 +17475,9 @@ Afterlife (2019): id: 1012370 Afterlife 2: installDir: - Undertaker's: {} + "Undertaker's": {} launch: - /Undertakers.exe: + "/Undertakers.exe": - when: - os: windows store: steam @@ -17419,11 +17487,11 @@ Afterlife Empire: installDir: Afterlife Empire: {} launch: - /Afterlife Empire.app: + "/Afterlife Empire.app": - when: - os: mac store: steam - /Afterlife Empire.exe: + "/Afterlife Empire.exe": - when: - os: windows store: steam @@ -17449,7 +17517,7 @@ Afterlifes: installDir: Afterlifes: {} launch: - /Afterlifes.exe: + "/Afterlifes.exe": - when: - os: windows store: steam @@ -17467,11 +17535,11 @@ Aftermath Y2K: installDir: Aftermath Y2K: {} launch: - /game: + "/game": - when: - os: linux store: steam - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -17481,7 +17549,7 @@ Aftermoor: installDir: Aftermoor: {} launch: - /Aftermoor.exe: + "/Aftermoor.exe": - when: - store: steam steam: @@ -17490,7 +17558,7 @@ Afternoon Empire: installDir: AfternoonEmpire: {} launch: - /AfternoonEmpire.exe: + "/AfternoonEmpire.exe": - when: - bit: 64 os: windows @@ -17499,12 +17567,12 @@ Afternoon Empire: id: 786940 Afterparty: files: - /AppData/LocalLow/Night School Studio/Afterparty: + "/AppData/LocalLow/Night School Studio/Afterparty": tags: - save when: - os: windows - /userdata//762220: + "/userdata//762220": tags: - save when: @@ -17514,16 +17582,16 @@ Afterparty: installDir: Afterparty: {} launch: - /Afterparty.app: + "/Afterparty.app": - when: - os: mac store: steam - /Afterparty.exe: + "/Afterparty.exe": - when: - bit: 64 os: windows store: steam - /Afterparty.x86_64: + "/Afterparty.x86_64": - when: - bit: 64 os: linux @@ -17538,15 +17606,15 @@ Again: installDir: FACE: {} launch: - /FACE.app: + "/FACE.app": - when: - os: mac store: steam - /FACE.exe: + "/FACE.exe": - when: - os: windows store: steam - /FACE.x86: + "/FACE.x86": - when: - os: linux store: steam @@ -17556,7 +17624,7 @@ Again (2019): installDir: Again: {} launch: - /Again.exe: + "/Again.exe": - when: - os: windows store: steam @@ -17566,8 +17634,8 @@ Again Put In: installDir: NALOGI 2: {} launch: - /Game.exe: - - arguments: '--in-process-gpu' + "/Game.exe": + - arguments: "--in-process-gpu" when: - store: steam steam: @@ -17576,7 +17644,7 @@ Again?: installDir: Again: {} launch: - /again.exe: + "/again.exe": - when: - bit: 32 os: windows @@ -17587,7 +17655,7 @@ Against All Odds: installDir: Against All Odds: {} launch: - /Against All Odds.exe: + "/Against All Odds.exe": - when: - os: windows store: steam @@ -17597,20 +17665,20 @@ Against the Gradient: installDir: Against the Gradient: {} launch: - /Against the Gradient.app: + "/Against the Gradient.app": - when: - os: mac store: steam - /Against the Gradient.exe: + "/Against the Gradient.exe": - when: - os: windows store: steam - /Against the Gradient.x86: + "/Against the Gradient.x86": - when: - bit: 32 os: linux store: steam - /Against the Gradient.x86_64: + "/Against the Gradient.x86_64": - when: - bit: 64 os: linux @@ -17624,7 +17692,7 @@ Against the Moon: id: 1039480 Against the Storm: files: - /AppData/LocalLow/Eremite Games/Against the Storm: + "/AppData/LocalLow/Eremite Games/Against the Storm": tags: - save when: @@ -17634,7 +17702,7 @@ Against the Storm: installDir: Against the Storm: {} launch: - /Against the Storm.exe: + "/Against the Storm.exe": - when: - os: windows store: steam @@ -17643,9 +17711,9 @@ Against the Storm: Agapan: steam: id: 344260 -'Agarest: Generations of War': +"Agarest: Generations of War": files: - /My Games/Ghostlight Ltd/Agarest - Generations of War: + "/My Games/Ghostlight Ltd/Agarest - Generations of War": tags: - save when: @@ -17655,27 +17723,27 @@ Agapan: installDir: Agarest Generations of War: {} launch: - /Agarest.exe: + "/Agarest.exe": - when: - os: windows store: steam steam: id: 237890 -'Agarest: Generations of War 2': +"Agarest: Generations of War 2": gog: id: 1438083997 installDir: Agarest Generations of War 2: {} launch: - /Agarest2.exe: + "/Agarest2.exe": - when: - os: windows store: steam steam: id: 312790 -'Agarest: Generations of War Zero': +"Agarest: Generations of War Zero": files: - /My Games/Ghostlight Ltd/Agarest - Generations of War Zero: + "/My Games/Ghostlight Ltd/Agarest - Generations of War Zero": tags: - save when: @@ -17685,7 +17753,7 @@ Agapan: installDir: Agarest Zero: {} launch: - /AgarestZero.exe: + "/AgarestZero.exe": - when: - os: windows store: steam @@ -17695,14 +17763,14 @@ Agartha: installDir: Agartha: {} launch: - /agartha.exe: + "/agartha.exe": - when: - store: steam steam: id: 1002420 -'Agatha Christie - Hercule Poirot: The First Cases': +"Agatha Christie - Hercule Poirot: The First Cases": files: - /AppData/LocalLow/Microids/Agatha Christie - Hercule Poirot_ The First Cases/GameData_v3.bin: + "/AppData/LocalLow/Microids/Agatha Christie - Hercule Poirot_ The First Cases/GameData_v3.bin": tags: - save when: @@ -17712,73 +17780,73 @@ Agartha: installDir: Agatha Christie - Hercule Poirot The First Cases: {} launch: - /Poirot.app: + "/Poirot.app": - when: - os: mac store: steam - /Poirot.exe: + "/Poirot.exe": - when: - os: windows store: steam steam: id: 1573720 -'Agatha Christie - Hercule Poirot: The London Case': +"Agatha Christie - Hercule Poirot: The London Case": gog: id: 1138549039 installDir: TheLondonCase: {} launch: - /Poirot.exe: + "/Poirot.exe": - when: - os: windows store: steam steam: id: 2223740 -'Agatha Christie: And Then There Were None': +"Agatha Christie: And Then There Were None": installDir: Agatha Christie And then there were None: {} launch: - /ac.exe: + "/ac.exe": - when: - store: steam steam: id: 39600 -'Agatha Christie: Evil under the Sun': +"Agatha Christie: Evil under the Sun": installDir: Agatha Christie Evil Under the Sun: {} launch: - /euts.exe: + "/euts.exe": - when: - store: steam steam: id: 39610 -'Agatha Christie: Murder on the Orient Express': +"Agatha Christie: Murder on the Orient Express": installDir: Agatha Christie Murder on the Orient Express: {} launch: - /motoe.exe: + "/motoe.exe": - when: - store: steam steam: id: 39620 -'Agatha Christie: Murder on the Orient Express (2023)': +"Agatha Christie: Murder on the Orient Express (2023)": gog: id: 1408221873 steam: id: 1904790 -'Agatha Christie: The ABC Murders': +"Agatha Christie: The ABC Murders": files: - /AppData/LocalLow/Microids/The ABC Murders/Profils: + "/AppData/LocalLow/Microids/The ABC Murders/Profils": tags: - save when: - os: windows - /unity3d/Microids/The ABC Murders/Profils: + "/unity3d/Microids/The ABC Murders/Profils": tags: - save when: - os: linux - /unity3d/Microids/The ABC Murders/prefs: + "/unity3d/Microids/The ABC Murders/prefs": tags: - config when: @@ -17788,15 +17856,15 @@ Agartha: installDir: Agatha Christie The ABC Murders: {} launch: - /The ABC Murders.app/Contents/MacOS/The ABC Murders: + "/The ABC Murders.app/Contents/MacOS/The ABC Murders": - when: - os: mac store: steam - /The ABC Murders.exe: + "/The ABC Murders.exe": - when: - os: windows store: steam - /The ABC Murders.x86: + "/The ABC Murders.x86": - when: - os: linux store: steam @@ -17808,12 +17876,12 @@ Agartha: id: 374900 Agatha Knife: files: - /Agatha Knife/preferences: + "/Agatha Knife/preferences": tags: - config when: - os: windows - /Agatha Knife/save: + "/Agatha Knife/save": tags: - save when: @@ -17824,15 +17892,15 @@ Agatha Knife: installDir: Agatha Knife: {} launch: - /AgathaKnife: + "/AgathaKnife": - when: - os: linux store: steam - /AgathaKnife.app: + "/AgathaKnife.app": - when: - os: mac store: steam - /agatha_knife.exe: + "/agatha_knife.exe": - when: - os: windows store: steam @@ -17842,7 +17910,7 @@ Age Of Forays: installDir: Age Of Forays: {} launch: - /Age Of Forays.exe: + "/Age Of Forays.exe": - when: - os: windows store: steam @@ -17852,7 +17920,7 @@ Age of Barbarian: installDir: Age of Barbarian Extended Cut: {} launch: - /Age of Barbarian Ex.exe: + "/Age of Barbarian Ex.exe": - when: - os: windows store: steam @@ -17862,29 +17930,29 @@ Age of Booty: installDir: Age of Booty: {} launch: - /Age of Booty.exe: + "/Age of Booty.exe": - when: - store: steam steam: id: 21600 -'Age of Castles: Warlords': +"Age of Castles: Warlords": installDir: Age of Castles Warlords: {} launch: - /AgeOfCastlesWarlords.app: + "/AgeOfCastlesWarlords.app": - when: - os: mac store: steam - /AgeOfCastlesWarlords.exe: + "/AgeOfCastlesWarlords.exe": - when: - os: windows store: steam - /AgeOfCastlesWarlords.x86: + "/AgeOfCastlesWarlords.x86": - when: - bit: 32 os: linux store: steam - /AgeOfCastlesWarlords.x86_64: + "/AgeOfCastlesWarlords.x86_64": - when: - bit: 64 os: linux @@ -17895,11 +17963,11 @@ Age of Cavemen: installDir: Age of Cavemen: {} launch: - /AgeOfCavemen.exe: + "/AgeOfCavemen.exe": - when: - os: windows store: steam - /AgeOfCavemen.x86: + "/AgeOfCavemen.x86": - when: - os: linux store: steam @@ -17909,17 +17977,17 @@ Age of Chivalry: installDir: Source SDK Base 2007: {} launch: - /hl2.exe: - - arguments: '-game ageofchivalry' + "/hl2.exe": + - arguments: "-game ageofchivalry" when: - store: steam steam: id: 17510 -'Age of Conan: Unchained': +"Age of Conan: Unchained": installDir: Age of Conan: {} launch: - /ConanPatcher.exe: + "/ConanPatcher.exe": - when: - store: steam steam: @@ -17928,16 +17996,16 @@ Age of Conquest IV: installDir: Age of Conquest IV: {} launch: - /app_main: + "/app_main": - when: - bit: 64 os: linux store: steam - /app_main.app: + "/app_main.app": - when: - os: mac store: steam - /app_main.exe: + "/app_main.exe": - when: - os: windows store: steam @@ -17945,7 +18013,7 @@ Age of Conquest IV: id: 314970 Age of Darkness: files: - /Achilles/Saved/Config/WindowsNoEditor: + "/Achilles/Saved/Config/WindowsNoEditor": tags: - config when: @@ -17953,33 +18021,33 @@ Age of Darkness: installDir: AgeOfDarkness: {} launch: - /AgeOfDarkness.exe: + "/AgeOfDarkness.exe": - when: - os: windows store: steam steam: id: 718070 -'Age of Darkness: Die Suche nach Relict': +"Age of Darkness: Die Suche nach Relict": installDir: aod: {} launch: - /Game: + "/Game": - when: - os: linux store: steam - /Game.app: + "/Game.app": - when: - os: mac store: steam - /Game.exe: + "/Game.exe": - when: - os: windows store: steam steam: id: 1033090 -'Age of Darkness: Final Stand': +"Age of Darkness: Final Stand": files: - /Documents/My Games/AgeOfDarkness/Saves: + "/Documents/My Games/AgeOfDarkness/Saves": tags: - save when: @@ -17987,7 +18055,7 @@ Age of Darkness: installDir: Age of Darkness - Final Stand: {} launch: - /Achilles.exe: + "/Achilles.exe": - when: - bit: 64 os: windows @@ -17998,7 +18066,7 @@ Age of Defense: installDir: Age of Defense: {} launch: - /AoD.exe: + "/AoD.exe": - when: - os: windows store: steam @@ -18006,12 +18074,12 @@ Age of Defense: id: 603320 Age of Empires: files: - /game0.nfo: + "/game0.nfo": tags: - save when: - os: windows - /savegame: + "/savegame": tags: - save when: @@ -18022,12 +18090,12 @@ Age of Empires: - config Age of Empires II (2013): files: - /savegame: + "/savegame": tags: - save when: - os: windows - /Age2HD: + "/Age2HD": tags: - config when: @@ -18040,26 +18108,26 @@ Age of Empires II (2013): installDir: Age2HD: {} launch: - /Launcher.exe: + "/Launcher.exe": - when: - os: windows store: steam steam: id: 221380 -'Age of Empires II: Definitive Edition': +"Age of Empires II: Definitive Edition": files: - /Games/Age of Empires 2 DE//modes/Pompeii/savegame: + "/Games/Age of Empires 2 DE//modes/Pompeii/savegame": tags: - save when: - os: windows store: microsoft - /Games/Age of Empires 2 DE//profile: + "/Games/Age of Empires 2 DE//profile": tags: - config when: - os: windows - /Games/Age of Empires 2 DE//savegame: + "/Games/Age of Empires 2 DE//savegame": tags: - save when: @@ -18077,42 +18145,42 @@ Age of Empires II (2013): installDir: AoE2DE: {} launch: - /AoE2DE_s.exe: + "/AoE2DE_s.exe": - when: - os: windows store: steam steam: id: 813780 -'Age of Empires II: The Age of Kings': +"Age of Empires II: The Age of Kings": files: - /SaveGame: + "/SaveGame": tags: - save when: - os: windows - /config.xml: + "/config.xml": tags: - config when: - os: windows Age of Empires III: files: - /Documents/Age of Empires III/Savegame: + "/Documents/Age of Empires III/Savegame": tags: - save when: - os: mac - /Documents/Age of Empires III/Users: + "/Documents/Age of Empires III/Users": tags: - config when: - os: mac - /My Games/Age of Empires 3/Savegame: + "/My Games/Age of Empires 3/Savegame": tags: - save when: - os: windows - /My Games/Age of Empires 3/Users: + "/My Games/Age of Empires 3/Users": tags: - config when: @@ -18120,27 +18188,20 @@ Age of Empires III: installDir: Age Of Empires 3: {} launch: - /bin/age3.exe: + "/bin/age3.exe": - when: - store: steam - /bin/age3x.exe: + "/bin/age3x.exe": - when: - store: steam - /bin/age3y.exe: + "/bin/age3y.exe": - when: - store: steam steam: id: 105450 -'Age of Empires III: Definitive Edition': +"Age of Empires III: Definitive Edition": files: - /Games/Age of Empires 3 DE/*/Savegame: - tags: - - save - when: - - os: windows - - os: windows - store: microsoft - /Games/Age of Empires 3 DE/Common: + "/Games/Age of Empires 3 DE/Common": tags: - config when: @@ -18149,18 +18210,18 @@ Age of Empires III: store: microsoft id: steamExtra: - - 2477660 - 1581450 - 1581451 - - 1817370 - 1817361 + - 1817370 - 2154360 - 2154361 - 2154362 + - 2477660 installDir: AoE3DE: {} launch: - /AoE3DE_s.exe: + "/AoE3DE_s.exe": - when: - bit: 64 os: windows @@ -18169,12 +18230,12 @@ Age of Empires III: id: 933110 Age of Empires IV: files: - /My Games/Age of Empires IV: + "/My Games/Age of Empires IV": tags: - config when: - os: windows - /My Games/Age of Empires IV/Users/(UserID)/Savegames: + "/My Games/Age of Empires IV/Users/(UserID)/Savegames": tags: - save when: @@ -18190,7 +18251,7 @@ Age of Empires IV: id: 1466860 Age of Empires Online: files: - /Spartan/Users2/NewProfile2.xml: + "/Spartan/Users2/NewProfile2.xml": tags: - config when: @@ -18212,30 +18273,32 @@ Age of Empires Online: installDir: Age Of Empires Online: {} launch: - /AOEOnline.exe: + "/AOEOnline.exe": - when: - store: steam steam: id: 105430 -'Age of Empires: Definitive Edition': +"Age of Empires: Definitive Edition": files: - /Games/Age of Empires DE/Config: + "/Games/Age of Empires DE/Config": tags: - config when: - - store: steam - /Games/Age of Empires DE/Users//Saved Games: + - os: windows + store: steam + "/Games/Age of Empires DE/Users//Saved Games": tags: - save when: - - store: steam - /Packages/ActiveSync/LocalState/Games/Age of Empires DE/Config: + - os: windows + store: steam + "/Packages/ActiveSync/LocalState/Games/Age of Empires DE/Config": tags: - config when: - os: windows store: microsoft - /Packages/ActiveSync/LocalState/Games/Age of Empires DE/Saved Games: + "/Packages/ActiveSync/LocalState/Games/Age of Empires DE/Saved Games": tags: - save when: @@ -18245,11 +18308,11 @@ Age of Empires Online: AoEDE: {} steam: id: 1017900 -'Age of Enigma: The Secret of the Sixth Ghost': +"Age of Enigma: The Secret of the Sixth Ghost": installDir: Age of Enigma: {} launch: - /Enigma.exe: + "/Enigma.exe": - when: - os: windows store: steam @@ -18259,165 +18322,165 @@ Age of Farming: installDir: Age of Farming: {} launch: - /aof.exe: + "/aof.exe": - when: - os: windows store: steam steam: id: 556300 -'Age of Fear 2: The Chaos Lord': +"Age of Fear 2: The Chaos Lord": installDir: AOF2: {} launch: - /aof2-start-linux.sh: + "/aof2-start-linux.sh": - when: - os: linux store: steam - - arguments: '-config' + - arguments: "-config" when: - os: linux store: steam - - arguments: '-workshop' + - arguments: "-workshop" when: - os: linux store: steam - /aof2-start-macosx.command: + "/aof2-start-macosx.command": - when: - os: mac store: steam - - arguments: '-config' + - arguments: "-config" when: - os: mac store: steam - - arguments: '-workshop' + - arguments: "-workshop" when: - os: mac store: steam - /aof2-start-windows-64.bat: + "/aof2-start-windows-64.bat": - when: - os: windows store: steam - /aof2-start-windows-console.bat: + "/aof2-start-windows-console.bat": - when: - os: windows store: steam - - arguments: '-workshop' + - arguments: "-workshop" when: - os: windows store: steam - /aof2-start-windows.bat: + "/aof2-start-windows.bat": - when: - os: windows store: steam - - arguments: '-config' + - arguments: "-config" when: - os: windows store: steam steam: id: 341150 -'Age of Fear 3: The Legend': +"Age of Fear 3: The Legend": installDir: AOF3: {} launch: - /aof3-start-linux.sh: + "/aof3-start-linux.sh": - when: - os: linux store: steam - - arguments: '-config' + - arguments: "-config" when: - os: linux store: steam - - arguments: '-workshop' + - arguments: "-workshop" when: - os: linux store: steam - /aof3-start-macosx.command: + "/aof3-start-macosx.command": - when: - os: mac store: steam - - arguments: '-config' + - arguments: "-config" when: - os: mac store: steam - - arguments: '-workshop' + - arguments: "-workshop" when: - os: mac store: steam - /aof3-start-windows-64.bat: + "/aof3-start-windows-64.bat": - when: - os: windows store: steam - /aof3-start-windows-console.bat: + "/aof3-start-windows-console.bat": - when: - os: windows store: steam - - arguments: '-workshop' + - arguments: "-workshop" when: - os: windows store: steam - /aof3-start-windows.bat: + "/aof3-start-windows.bat": - when: - os: windows store: steam - - arguments: '-config' + - arguments: "-config" when: - os: windows store: steam steam: id: 431700 -'Age of Fear 4: The Iron Killer': +"Age of Fear 4: The Iron Killer": installDir: Age-of-Fear-4: {} launch: - /aof4-start-linux.sh: + "/aof4-start-linux.sh": - when: - os: linux store: steam - - arguments: '-config' + - arguments: "-config" when: - os: linux store: steam - - arguments: '-workshop' + - arguments: "-workshop" when: - os: linux store: steam - /aof4-start-macosx.command: + "/aof4-start-macosx.command": - when: - os: mac store: steam - - arguments: '-config' + - arguments: "-config" when: - os: mac store: steam - - arguments: '-workshop' + - arguments: "-workshop" when: - os: mac store: steam - /aof4-start-windows-64.bat: + "/aof4-start-windows-64.bat": - when: - os: windows store: steam - /aof4-start-windows-console.bat: + "/aof4-start-windows-console.bat": - when: - os: windows store: steam - - arguments: '-workshop' + - arguments: "-workshop" when: - os: windows store: steam - /aof4-start-windows.bat: + "/aof4-start-windows.bat": - when: - os: windows store: steam - - arguments: '-config' + - arguments: "-config" when: - os: windows store: steam steam: id: 431950 -'Age of Fear: The Free World': +"Age of Fear: The Free World": files: - /AppData/LocalLow/Age-of-Fear-Free-World/savegame: + "/AppData/LocalLow/Age-of-Fear-Free-World/savegame": tags: - save when: @@ -18425,197 +18488,197 @@ Age of Farming: installDir: Age of Fear The Free World GOLD: {} launch: - /aof-freeworld-start-linux.sh: + "/aof-freeworld-start-linux.sh": - when: - os: linux store: steam - - arguments: '-config' + - arguments: "-config" when: - os: linux store: steam - - arguments: '-workshop' + - arguments: "-workshop" when: - os: linux store: steam - /aof-freeworld-start-macosx.command: + "/aof-freeworld-start-macosx.command": - when: - os: mac store: steam - - arguments: '-config' + - arguments: "-config" when: - os: mac store: steam - - arguments: '-workshop' + - arguments: "-workshop" when: - os: mac store: steam - /aof-freeworld-start-windows-64.bat: + "/aof-freeworld-start-windows-64.bat": - when: - os: windows store: steam - /aof-freeworld-start-windows-console.bat: + "/aof-freeworld-start-windows-console.bat": - when: - os: windows store: steam - - arguments: '-workshop' + - arguments: "-workshop" when: - os: windows store: steam - /aof-freeworld-start-windows.bat: + "/aof-freeworld-start-windows.bat": - when: - os: windows store: steam - - arguments: '-config' + - arguments: "-config" when: - os: windows store: steam steam: id: 882410 -'Age of Fear: The Undead King': +"Age of Fear: The Undead King": installDir: AOF: {} launch: - /aof-start-linux.sh: + "/aof-start-linux.sh": - when: - os: linux store: steam - - arguments: '-config' + - arguments: "-config" when: - os: linux store: steam - - arguments: '-workshop' + - arguments: "-workshop" when: - os: linux store: steam - /aof-start-macosx.command: + "/aof-start-macosx.command": - when: - os: mac store: steam - - arguments: '-config' + - arguments: "-config" when: - os: mac store: steam - - arguments: '-workshop' + - arguments: "-workshop" when: - os: mac store: steam - /aof-start-windows-64.bat: + "/aof-start-windows-64.bat": - when: - os: windows store: steam - /aof-start-windows-console.bat: + "/aof-start-windows-console.bat": - when: - os: windows store: steam - - arguments: '-workshop' + - arguments: "-workshop" when: - os: windows store: steam - /aof-start-windows.bat: + "/aof-start-windows.bat": - when: - os: windows store: steam - - arguments: '-config' + - arguments: "-config" when: - os: windows store: steam steam: id: 351480 -'Age of Fear: The Undead King GOLD': +"Age of Fear: The Undead King GOLD": installDir: AOF-GOLD: {} launch: - /aof-start-linux.sh: + "/aof-start-linux.sh": - when: - os: linux store: steam - - arguments: '-config' + - arguments: "-config" when: - os: linux store: steam - - arguments: '-workshop' + - arguments: "-workshop" when: - os: linux store: steam - /aof-start-macosx.command: + "/aof-start-macosx.command": - when: - os: mac store: steam - - arguments: '-config' + - arguments: "-config" when: - os: mac store: steam - - arguments: '-workshop' + - arguments: "-workshop" when: - os: mac store: steam - /aof-start-windows-64.bat: + "/aof-start-windows-64.bat": - when: - os: windows store: steam - /aof-start-windows-console.bat: + "/aof-start-windows-console.bat": - when: - os: windows store: steam - - arguments: '-workshop' + - arguments: "-workshop" when: - os: windows store: steam - /aof-start-windows.bat: + "/aof-start-windows.bat": - when: - os: windows store: steam - - arguments: '-config' + - arguments: "-config" when: - os: windows store: steam steam: id: 832770 -'Age of Fear: Total': +"Age of Fear: Total": installDir: AOFTOTAL: {} launch: - /aof-total-start-linux.sh: + "/aof-total-start-linux.sh": - when: - os: linux store: steam - - arguments: '-config' + - arguments: "-config" when: - os: linux store: steam - - arguments: '-workshop' + - arguments: "-workshop" when: - os: linux store: steam - /aof-total-start-macosx.command: + "/aof-total-start-macosx.command": - when: - os: mac store: steam - - arguments: '-config' + - arguments: "-config" when: - os: mac store: steam - - arguments: '-workshop' + - arguments: "-workshop" when: - os: mac store: steam - /aof-total-start-windows-64.bat: + "/aof-total-start-windows-64.bat": - when: - os: windows store: steam - /aof-total-start-windows-console.bat: + "/aof-total-start-windows-console.bat": - when: - os: windows store: steam - - arguments: '-workshop' + - arguments: "-workshop" when: - os: windows store: steam - /aof-total-start-windows.bat: + "/aof-total-start-windows.bat": - when: - os: windows store: steam - - arguments: '-config' + - arguments: "-config" when: - os: windows store: steam @@ -18625,7 +18688,7 @@ Age of Giants: installDir: Age of Giants: {} launch: - /AgeOfGiants.exe: + "/AgeOfGiants.exe": - when: - os: windows store: steam @@ -18635,26 +18698,26 @@ Age of Gladiators: installDir: Age Of Gladiators: {} launch: - /gladiator.exe: + "/gladiator.exe": - when: - os: windows store: steam steam: id: 442500 -'Age of Gladiators II: Death League': +"Age of Gladiators II: Death League": installDir: Age of Gladiators II: {} launch: - /AoGII.exe: + "/AoGII.exe": - when: - store: steam steam: id: 639300 -'Age of Gladiators II: Rome': +"Age of Gladiators II: Rome": installDir: Age of Gladiators II Rome: {} launch: - /AoGII.exe: + "/AoGII.exe": - when: - store: steam steam: @@ -18663,15 +18726,15 @@ Age of Grit: installDir: Age of Grit: {} launch: - /Age of Grit.app: + "/Age of Grit.app": - when: - os: mac store: steam - /Age of Grit.exe: + "/Age of Grit.exe": - when: - os: windows store: steam - /Age of Grit.x86: + "/Age of Grit.x86": - when: - os: linux store: steam @@ -18682,16 +18745,16 @@ Age of Heroes: Age of Heroes (VR): {} steam: id: 586080 -'Age of Heroes: Conquest': +"Age of Heroes: Conquest": installDir: Age of Heroes: {} launch: - /Heroes.app/Contents/MacOS/Heroes: + "/Heroes.app/Contents/MacOS/Heroes": - when: - bit: 64 os: mac store: steam - /Heroes.exe: + "/Heroes.exe": - when: - os: windows store: steam @@ -18703,21 +18766,23 @@ Age of History II: installDir: AoCII: {} launch: - /AoC2.exe: + "/AoC2.exe": - when: - os: windows store: steam - /AoC2.jar: + "/AoC2.jar": - when: - os: mac store: steam + - os: linux + store: steam steam: id: 603850 Age of Magic CCG: installDir: Age of Magic: {} launch: - /loader.exe: + "/loader.exe": - when: - os: windows store: steam @@ -18725,34 +18790,34 @@ Age of Magic CCG: id: 426970 Age of Mythology: files: - /Startup/Persistent.cfg: + "/Startup/Persistent.cfg": tags: - config when: - os: windows - /Users: + "/Users": tags: - config when: - os: windows - /savegame: + "/savegame": tags: - save when: - os: windows -'Age of Mythology: Extended Edition': +"Age of Mythology: Extended Edition": files: - /Startup/Persistent.cfg: + "/Startup/Persistent.cfg": tags: - config when: - os: windows - /Users: + "/Users": tags: - config when: - os: windows - /savegame: + "/savegame": tags: - save when: @@ -18760,7 +18825,7 @@ Age of Mythology: installDir: Age of Mythology: {} launch: - /Launcher.exe: + "/Launcher.exe": - when: - os: windows store: steam @@ -18770,20 +18835,20 @@ Age of Omens: installDir: Age Of Omens: {} launch: - /Groundbreak.exe: + "/Groundbreak.exe": - when: - os: windows store: steam steam: id: 1016660 -'Age of Pirates 2: City of Abandoned Ships': +"Age of Pirates 2: City of Abandoned Ships": files: - /SAVE: + "/SAVE": tags: - save when: - os: windows - /engine.ini: + "/engine.ini": tags: - config when: @@ -18793,19 +18858,19 @@ Age of Omens: installDir: Sea Dogs City of Abandoned Ships: {} launch: - /START.exe: + "/START.exe": - when: - store: steam steam: id: 937940 -'Age of Pirates: Caribbean Tales': +"Age of Pirates: Caribbean Tales": files: - /Save: + "/Save": tags: - save when: - os: windows - /config.ini: + "/config.ini": tags: - config when: @@ -18815,7 +18880,7 @@ Age of Omens: installDir: Sea Dogs Caribbean Tales: {} launch: - /ENGINE.exe: + "/ENGINE.exe": - when: - store: steam steam: @@ -18824,8 +18889,8 @@ Age of Pixels: installDir: Age of Pixels: {} launch: - /Explore.exe: - - arguments: '-windowed' + "/Explore.exe": + - arguments: "-windowed" when: - os: windows store: steam @@ -18835,11 +18900,11 @@ Age of Rivals: installDir: AgeOfRivals: {} launch: - /AgeOfRivalsMacSteam.app: + "/AgeOfRivalsMacSteam.app": - when: - os: mac store: steam - /AgeOfRivalsWindowsSteam.exe: + "/AgeOfRivalsWindowsSteam.exe": - when: - os: windows store: steam @@ -18852,7 +18917,7 @@ Age of Solitaire: installDir: Age of Solitaire: {} launch: - /TheFarKingdomsAgeOfSolitaire.exe: + "/TheFarKingdomsAgeOfSolitaire.exe": - when: - os: windows store: steam @@ -18861,15 +18926,15 @@ Age of Solitaire: Age of Space: steam: id: 616780 -'Age of Steel: Recharge': +"Age of Steel: Recharge": installDir: Age of Steel – Recharge: {} launch: - /AOSR.app: + "/AOSR.app": - when: - os: mac store: steam - /AOSR.exe: + "/AOSR.exe": - when: - os: windows store: steam @@ -18879,7 +18944,7 @@ Age of Survival: installDir: Age of Survival: {} launch: - /Age_of_Survival_2020.exe: + "/Age_of_Survival_2020.exe": - when: - os: windows store: steam @@ -18889,19 +18954,19 @@ Age of Viking Conquest: installDir: Age of Viking Conquest: {} launch: - /32bit/VikingConquest.exe: + "/32bit/VikingConquest.exe": - when: - bit: 32 os: windows store: steam - workingDir: /32bit - /64bit/VikingConquest.exe: + workingDir: "/32bit" + "/64bit/VikingConquest.exe": - when: - bit: 64 os: windows store: steam - workingDir: /64bit - /AgeOfVikingConquest.app: + workingDir: "/64bit" + "/AgeOfVikingConquest.app": - when: - os: mac store: steam @@ -18909,7 +18974,7 @@ Age of Viking Conquest: id: 792930 Age of Wonders: files: - /Save: + "/Save": tags: - save when: @@ -18919,23 +18984,23 @@ Age of Wonders: installDir: Age of Wonders: {} launch: - /Launcher.exe: + "/Launcher.exe": - arguments: AoW when: - store: steam - arguments: AoWCompat when: - store: steam - /Quickstart.pdf: + "/Quickstart.pdf": - when: - store: steam - /aowEd.exe: + "/aowEd.exe": - when: - store: steam - /aowsetup.exe: + "/aowsetup.exe": - when: - store: steam - /readme.txt: + "/readme.txt": - when: - store: steam registry: @@ -18946,17 +19011,17 @@ Age of Wonders: id: 61500 Age of Wonders 4: files: - /userdata//1669000/remote: + "/userdata//1669000/remote": tags: - save when: - store: steam - /Paradox Interactive/Age of Wonders 4/Config/Settings.cfg: + "/Paradox Interactive/Age of Wonders 4/Config/Settings.cfg": tags: - config when: - os: windows - /Paradox Interactive/Age of Wonders 4/Storage: + "/Paradox Interactive/Age of Wonders 4/Storage": tags: - save when: @@ -18966,12 +19031,12 @@ Age of Wonders 4: id: gogExtra: - 1113728204 - - 1677754007 - - 2127759575 - - 2127737278 - 1467390423 + - 1677754007 - 1804193941 - 1935859883 + - 2127737278 + - 2127759575 steamExtra: - 2257970 - 2260160 @@ -18983,16 +19048,16 @@ Age of Wonders 4: installDir: Age of Wonders 4: {} launch: - /launcher-se/Paradox Launcher.exe: + "/launcher-se/Paradox Launcher.exe": - when: - bit: 64 os: windows store: steam steam: id: 1669000 -'Age of Wonders II: The Wizard''s Throne': +"Age of Wonders II: The Wizard's Throne": files: - /Save: + "/Save": tags: - save when: @@ -19002,23 +19067,23 @@ Age of Wonders 4: installDir: Age of Wonders 2: {} launch: - /Launcher.exe: + "/Launcher.exe": - arguments: AoW2 when: - store: steam - arguments: AoW2Compat when: - store: steam - /Quickstart.pdf: + "/Quickstart.pdf": - when: - store: steam - /aow2ed.exe: + "/aow2ed.exe": - when: - store: steam - /aow2setup.exe: + "/aow2setup.exe": - when: - store: steam - /readme.html: + "/readme.html": - when: - store: steam registry: @@ -19029,23 +19094,23 @@ Age of Wonders 4: id: 61510 Age of Wonders III: files: - /AoW3: + "/AoW3": tags: - config - save when: - os: mac - /My Games/AoW3/Profiles/: + "/My Games/AoW3/Profiles/": tags: - config when: - os: windows - /My Games/AoW3/Profiles//SAVES: + "/My Games/AoW3/Profiles//SAVES": tags: - save when: - os: windows - /AoW3: + "/AoW3": tags: - config - save @@ -19055,36 +19120,36 @@ Age of Wonders III: id: 1207660893 id: gogExtra: - - 1207660903 - 1207660883 + - 1207660903 - 1207665893 - 1428937263 installDir: AoW3: {} launch: - /AoW3Launcher.app: + "/AoW3Launcher.app": - when: - os: mac store: steam - /AoW3Launcher.exe: + "/AoW3Launcher.exe": - when: - os: windows store: steam - /AoW3Launcher.run: - - arguments: ./AoW3Launcher.sh + "/AoW3Launcher.run": + - arguments: "./AoW3Launcher.sh" when: - os: linux store: steam steam: id: 226840 -'Age of Wonders: Planetfall': +"Age of Wonders: Planetfall": files: - /Paradox Interactive/Age of Wonders Planetfall/Config/Settings.cfg: + "/Paradox Interactive/Age of Wonders Planetfall/Config/Settings.cfg": tags: - config when: - os: windows - /Paradox Interactive/Age of Wonders Planetfall/Saves: + "/Paradox Interactive/Age of Wonders Planetfall/Saves": tags: - save when: @@ -19093,16 +19158,16 @@ Age of Wonders III: id: 1918301028 id: gogExtra: - - 1526268080 - - 1934161828 - 1462425012 - 1479494583 - - 2146336406 + - 1526268080 - 1628354654 - 1766797571 - - 1890841855 - 1828150101 + - 1890841855 + - 1934161828 - 2064778517 + - 2146336406 steamExtra: - 1078810 - 1078840 @@ -19117,20 +19182,20 @@ Age of Wonders III: installDir: Age of Wonders Planetfall: {} launch: - /dowser: + "/dowser": - when: - os: mac store: steam - /dowser.exe: + "/dowser.exe": - when: - bit: 64 os: windows store: steam steam: id: 718850 -'Age of Wonders: Shadow Magic': +"Age of Wonders: Shadow Magic": files: - /Save: + "/Save": tags: - save when: @@ -19140,23 +19205,23 @@ Age of Wonders III: installDir: Age of Wonders Shadow Magic: {} launch: - /AoWSMEd.exe: + "/AoWSMEd.exe": - when: - store: steam - /AoWSMSetup.exe: + "/AoWSMSetup.exe": - when: - store: steam - /Launcher.exe: + "/Launcher.exe": - arguments: AoWSM when: - store: steam - arguments: AoWSMCompat when: - store: steam - /Quickstart.pdf: + "/Quickstart.pdf": - when: - store: steam - /readme.html: + "/readme.html": - when: - store: steam registry: @@ -19169,7 +19234,7 @@ Age of Wushu: installDir: Project X: {} launch: - /JYSGUpdate.exe: + "/JYSGUpdate.exe": - arguments: steamapp when: - bit: 32 @@ -19182,7 +19247,7 @@ Age-Old Cities VR: id: 1025500 Ageless: files: - /AppData/LocalLow/OneMoreDream Studios/Ageless: + "/AppData/LocalLow/OneMoreDream Studios/Ageless": tags: - save when: @@ -19190,7 +19255,7 @@ Ageless: installDir: Ageless: {} launch: - /Ageless.exe: + "/Ageless.exe": - when: - os: windows store: steam @@ -19200,35 +19265,35 @@ Agenda: installDir: Agenda: {} launch: - /Agenda.app/Contents/MacOS/Agenda: + "/Agenda.app/Contents/MacOS/Agenda": - when: - os: mac store: steam - /Agenda.exe: + "/Agenda.exe": - when: - os: windows store: steam - /Agenda.x86_64: + "/Agenda.x86_64": - when: - os: linux store: steam steam: id: 513460 -'Agent 64: Spies Never Die': +"Agent 64: Spies Never Die": steam: id: 1574480 Agent 9: installDir: Agent 9: {} launch: - /Agent9.exe: + "/Agent9.exe": - when: - store: steam steam: id: 981670 -'Agent A: A Puzzle in Disguise': +"Agent A: A Puzzle in Disguise": files: - /Library/Preferences/co.yakand.steam.agentaapuzzleindisguise.plist: + "/Library/Preferences/co.yakand.steam.agentaapuzzleindisguise.plist": tags: - save when: @@ -19246,11 +19311,11 @@ Agent Awesome: installDir: Agent Awesome: {} launch: - /Agent Awesome.exe: + "/Agent Awesome.exe": - when: - os: windows store: steam - /AgentA.app: + "/AgentA.app": - when: - os: mac store: steam @@ -19261,7 +19326,7 @@ Agent Girl: id: 680270 Agent Intercept: files: - /AppData/LocalLow/PikPok/AgentIntercept: + "/AppData/LocalLow/PikPok/AgentIntercept": tags: - save when: @@ -19269,7 +19334,7 @@ Agent Intercept: installDir: Agent Intercept: {} launch: - /AgentIntercept.exe: + "/AgentIntercept.exe": - when: - os: windows store: steam @@ -19279,11 +19344,11 @@ Agent Of Love: installDir: Agent Of Love: {} launch: - /Agent Of Love.exe: + "/Agent Of Love.exe": - when: - os: windows store: steam - /delinc-aol-steam.app: + "/delinc-aol-steam.app": - when: - os: mac store: steam @@ -19293,54 +19358,54 @@ Agent Roswell: installDir: Agent Roswell: {} launch: - /AgentRoswell.exe: + "/AgentRoswell.exe": - when: - bit: 64 os: windows store: steam steam: id: 931320 -'Agent Walker: Secret Journey': +"Agent Walker: Secret Journey": installDir: Agent Walker Secret Journey: {} launch: - /AgentWalker.exe: + "/AgentWalker.exe": - when: - os: windows store: steam - /AgentWalker_amd64: + "/AgentWalker_amd64": - when: - bit: 64 os: linux store: steam - /AgentWalker_i386: + "/AgentWalker_i386": - when: - bit: 32 os: linux store: steam - /mac_steam.app/Contents/MacOS/mac_steam: + "/mac_steam.app/Contents/MacOS/mac_steam": - when: - os: mac store: steam steam: id: 497580 -'Agent X: Equation Rider': +"Agent X: Equation Rider": installDir: Agent X Equation Rider: {} launch: - /Agent X.exe: + "/Agent X.exe": - when: - store: steam steam: id: 767010 Agents of Mayhem: files: - /aom/display.ini: + "/aom/display.ini": tags: - config when: - os: windows - /userdata//304530/remote: + "/userdata//304530/remote": tags: - save when: @@ -19349,33 +19414,33 @@ Agents of Mayhem: installDir: Agents of Mayhem: {} launch: - /aom/AOM_Release_Final.exe: - - arguments: '-packfiles' + "/aom/AOM_Release_Final.exe": + - arguments: "-packfiles" when: - os: windows store: steam - workingDir: /aom + workingDir: "/aom" steam: id: 304530 -'Agents: Biohunters': +"Agents: Biohunters": installDir: AgentsBiohunter: {} launch: - /AgentsBiohunters.exe: + "/AgentsBiohunters.exe": - when: - os: windows store: steam - /Dist.app: + "/Dist.app": - when: - os: mac store: steam steam: id: 765800 -'Ages of Mages: The Last Keeper': +"Ages of Mages: The Last Keeper": installDir: Ages of Mages The last keeper: {} launch: - /aom.exe: + "/aom.exe": - when: - os: windows store: steam @@ -19383,22 +19448,22 @@ Agents of Mayhem: id: 820610 Aggelos: files: - /config.ini: + "/config.ini": tags: - config when: - os: windows - /curseur.ini: + "/curseur.ini": tags: - save when: - os: windows - /sauvegarde*.ini: + "/sauvegarde*.ini": tags: - save when: - os: windows - /screen.ini: + "/screen.ini": tags: - config when: @@ -19406,29 +19471,29 @@ Aggelos: installDir: Aggelos: {} launch: - /AGGELOS.exe: + "/AGGELOS.exe": - when: - os: windows store: steam steam: id: 717310 -'Aggression: Europe Under Fire': +"Aggression: Europe Under Fire": installDir: Aggression - Reign Over Europe: {} launch: - /adico.exe: + "/adico.exe": - when: - os: windows store: steam steam: id: 289580 -'Aggressors: Ancient Rome': +"Aggressors: Ancient Rome": gog: id: 1971695113 installDir: Aggressors Ancient Rome: {} launch: - /autorun.exe: + "/autorun.exe": - when: - os: windows store: steam @@ -19436,12 +19501,12 @@ Aggelos: id: 783210 Agony: files: - /Agony/Saved/Config/WindowsNoEditor: + "/Agony/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /Agony/Saved/SaveGames: + "/Agony/Saved/SaveGames": tags: - save when: @@ -19454,7 +19519,7 @@ Agony: installDir: Agony: {} launch: - /Agony.exe: + "/Agony.exe": - when: - bit: 64 os: windows @@ -19463,12 +19528,12 @@ Agony: id: 487720 Agony Unrated: files: - /Agony/Saved_Unrated/Config/WindowsNoEditor: + "/Agony/Saved_Unrated/Config/WindowsNoEditor": tags: - config when: - os: windows - /Agony/Saved_Unrated/SaveGames: + "/Agony/Saved_Unrated/SaveGames": tags: - save when: @@ -19478,34 +19543,34 @@ Agony Unrated: installDir: Agony UNRATED: {} launch: - /Agony.exe: + "/Agony.exe": - when: - bit: 64 os: windows store: steam steam: id: 879420 -'Agony: Lords of Hell': +"Agony: Lords of Hell": steam: id: 1493430 -'Agricola: All Creatures Big and Small': +"Agricola: All Creatures Big and Small": installDir: Agricola All Creatures Big and Small: {} launch: - /abv.app: + "/abv.app": - when: - os: mac store: steam - /abv.exe: + "/abv.exe": - when: - os: windows store: steam - /abv.x86: + "/abv.x86": - when: - bit: 32 os: linux store: steam - /abv.x86_64: + "/abv.x86_64": - when: - bit: 64 os: linux @@ -19516,16 +19581,19 @@ Agony Unrated: - config steam: id: 528180 -'Agricola: Revised Edition': +"Agricola: Revised Edition": installDir: Agricola: {} launch: - /Agricola.app/Contents/MacOS/Agricola: + "/Agricola.app/Contents/MacOS/Agricola": - when: - os: mac store: steam - /Agricola.exe: + "/Agricola.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam @@ -19533,17 +19601,17 @@ Agony Unrated: id: 1005580 Agricultural Simulator 2011: files: - /system: + "/system": tags: - config when: - os: windows - /My Games/agrar simulator 2011: + "/My Games/agrar simulator 2011": tags: - save when: - os: windows - /My Games/agrar simulator bga 2011: + "/My Games/agrar simulator bga 2011": tags: - save when: @@ -19551,19 +19619,19 @@ Agricultural Simulator 2011: installDir: Agricultural Simulator 2011: {} launch: - /farm.exe: + "/farm.exe": - when: - store: steam steam: id: 92900 Agricultural Simulator 2012: files: - /system: + "/system": tags: - config when: - os: windows - /My Games/agrar simulator 2012: + "/My Games/agrar simulator 2012": tags: - save when: @@ -19571,7 +19639,7 @@ Agricultural Simulator 2012: installDir: Agricultural Simulator 2012: {} launch: - /farm2012.exe: + "/farm2012.exe": - when: - os: windows store: steam @@ -19579,12 +19647,12 @@ Agricultural Simulator 2012: id: 273790 Agricultural Simulator 2013: files: - /My Games/Agrar Simulator 2013/saved games: + "/My Games/Agrar Simulator 2013/saved games": tags: - save when: - os: windows - /My Games/Agrar Simulator 2013/system: + "/My Games/Agrar Simulator 2013/system": tags: - config when: @@ -19592,20 +19660,20 @@ Agricultural Simulator 2013: installDir: Agricultural Simulator 2013: {} launch: - /agrarsimulator2013.exe: + "/agrarsimulator2013.exe": - when: - os: windows store: steam steam: id: 236790 -'Agricultural Simulator: Historical Farming': +"Agricultural Simulator: Historical Farming": files: - /system: + "/system": tags: - config when: - os: windows - /My Games/agrar history 2012: + "/My Games/agrar history 2012": tags: - save when: @@ -19613,7 +19681,7 @@ Agricultural Simulator 2013: installDir: Historical Farming: {} launch: - /agrarhistory2012.exe: + "/agrarhistory2012.exe": - when: - store: steam steam: @@ -19622,7 +19690,7 @@ Agross: installDir: Agross: {} launch: - /Agross.exe: + "/Agross.exe": - when: - store: steam steam: @@ -19633,35 +19701,35 @@ Aground: installDir: Aground: {} launch: - /Aground: + "/Aground": - when: - os: mac store: steam - /Aground.exe: + "/Aground.exe": - when: - os: windows store: steam - /Aground.sh: + "/Aground.sh": - when: - os: linux store: steam steam: id: 876650 -'Agtnan: Monster Shutdown Sequence': +"Agtnan: Monster Shutdown Sequence": installDir: Agtnan: {} launch: - /Agtnan.exe: + "/Agtnan.exe": - when: - os: windows store: steam steam: id: 1044820 -'Ah, Love!': +"Ah, Love!": installDir: - 'Ah, Love!': {} + "Ah, Love!": {} launch: - /Ah Love.exe: + "/Ah Love.exe": - when: - os: windows store: steam @@ -19669,7 +19737,7 @@ Aground: id: 937390 Ahegal: files: - /AppData/LocalLow/Oppai Reveal Studios/AheGal/*.gd: + "/AppData/LocalLow/Oppai Reveal Studios/AheGal/*.gd": tags: - save when: @@ -19677,7 +19745,7 @@ Ahegal: installDir: AHEGAL: {} launch: - /AHEGAL.exe: + "/AHEGAL.exe": - when: - os: windows store: steam @@ -19687,7 +19755,7 @@ Ahegal Seasons: installDir: AHEGAL 2: {} launch: - /AHEGAL 2.exe: + "/AHEGAL 2.exe": - when: - os: windows store: steam @@ -19697,16 +19765,16 @@ Ahlman Arcade 2018: installDir: Ahlman Arcade 2018: {} launch: - /Ahlman Arcade 2018.exe: + "/Ahlman Arcade 2018.exe": - when: - bit: 64 os: windows store: steam steam: id: 855580 -'Ahnayro: The Dream World': +"Ahnayro: The Dream World": files: - /ahnayro_Data/playerInfo.dat: + "/ahnayro_Data/playerInfo.dat": tags: - save when: @@ -19714,28 +19782,28 @@ Ahlman Arcade 2018: installDir: Ahnayro: {} launch: - /ahnayro.app: + "/ahnayro.app": - when: - os: mac store: steam - /ahnayro.exe: + "/ahnayro.exe": - when: - os: windows store: steam registry: - 'HKEY_CURRENT_USER/Software/Alice & Smith/Ahnayro: The Dream World': + "HKEY_CURRENT_USER/Software/Alice & Smith/Ahnayro: The Dream World": tags: - config steam: id: 449730 -'Ahros: One Warrior Chronicle': +"Ahros: One Warrior Chronicle": installDir: Ahros One warrior chronicle: {} steam: id: 518110 Ai Yori Aoshi: files: - /save: + "/save": tags: - config - save @@ -19745,7 +19813,7 @@ Ai no Uta あいのうた: installDir: Ai no Uta: {} launch: - /MyGame.exe: + "/MyGame.exe": - when: - os: windows store: steam @@ -19755,7 +19823,7 @@ Aiball: installDir: Aiball: {} launch: - /Aiball.exe: + "/Aiball.exe": - when: - bit: 64 os: windows @@ -19766,34 +19834,34 @@ Aiden: installDir: AIDEN: {} launch: - /AIDEN.exe: + "/AIDEN.exe": - when: - os: windows store: steam steam: id: 783060 -'Aidsmoji: The Forbidden Fruit': +"Aidsmoji: The Forbidden Fruit": steam: id: 794410 Aigor Escape from Bishop: installDir: Aigor Escape from Bishop: {} launch: - /Aigor_Escape.exe: + "/Aigor_Escape.exe": - when: - bit: 64 os: windows store: steam steam: id: 1207520 -Aik's Cheese Adventures: +"Aik's Cheese Adventures": steam: id: 850790 Ailment: installDir: Ailment: {} launch: - /Ailment.exe: + "/Ailment.exe": - when: - os: windows store: steam @@ -19801,7 +19869,7 @@ Ailment: id: 1167530 Aim Hero: files: - /My Games/Aim Hero: + "/My Games/Aim Hero": tags: - config - save @@ -19810,7 +19878,7 @@ Aim Hero: installDir: Aim Hero: {} launch: - /Aim Hero.exe: + "/Aim Hero.exe": - when: - os: windows store: steam @@ -19825,7 +19893,7 @@ Aim Master: installDir: Aim Master: {} launch: - /Aim Master.exe: + "/Aim Master.exe": - when: - os: windows store: steam @@ -19835,7 +19903,7 @@ Aim Theory - Trainer: installDir: Aim Theory - Trainer: {} launch: - /Trainer.exe: + "/Trainer.exe": - when: - os: windows store: steam @@ -19845,7 +19913,7 @@ Aim Trainer 3D: installDir: Aim Bot: {} launch: - /Aim Bot.exe: + "/Aim Bot.exe": - when: - os: windows store: steam @@ -19855,7 +19923,7 @@ Aim Trainer Pro: installDir: Aim Trainer Pro: {} launch: - /AimTrainer.exe: + "/AimTrainer.exe": - when: - store: steam steam: @@ -19864,22 +19932,25 @@ Aim for the Win: installDir: Aim for the Win: {} launch: - /Aim FTW.exe: + "/Aim FTW.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam - /Contents/MacOS/AimForTheWin: + "/Contents/MacOS/AimForTheWin": - when: - os: mac store: steam steam: id: 1111300 -'Aima Wars: Steampunk & Orcs': +"Aima Wars: Steampunk & Orcs": installDir: AWSO: {} launch: - /game64.exe: + "/game64.exe": - when: - bit: 64 os: windows @@ -19896,7 +19967,7 @@ Aimgod: installDir: Aimbeast: {} launch: - /Aimbeast.exe: + "/Aimbeast.exe": - when: - os: windows store: steam @@ -19920,11 +19991,11 @@ Aimlabs: installDir: Aim Lab: {} launch: - /AimLab.app: + "/AimLab.app": - when: - os: mac store: steam - /aimlab_tb.exe: + "/aimlab_tb.exe": - when: - os: windows store: steam @@ -19934,7 +20005,7 @@ Aimtastic: installDir: Aimtastic: {} launch: - /Aimtastic.exe: + "/Aimtastic.exe": - when: - bit: 64 os: windows @@ -19945,26 +20016,26 @@ Ain Dodo: installDir: Ain Dodo: {} launch: - '/${Ain_Dodo}.exe': + "/${Ain_Dodo}.exe": - when: - os: windows store: steam + - os: mac + store: steam steam: id: 1144280 Aion: id: steamExtra: - 29640 - - 29660 - 29650 + - 29660 - 29670 installDir: AION: {} launch: - /NCLauncher.exe: - - arguments: >- - /LauncherID:\"GameForge\" /CompanyID:\"11\" /GameID:\"AION-LIVE\" /LUpdateAddr:\"update.aion.gfsrv.net\" - /ExAccessToken:\"gfsteam\" + "/NCLauncher.exe": + - arguments: "/LauncherID:\\\"GameForge\\\" /CompanyID:\\\"11\\\" /GameID:\\\"AION-LIVE\\\" /LUpdateAddr:\\\"update.aion.gfsrv.net\\\" /ExAccessToken:\\\"gfsteam\\\"" when: - os: windows store: steam @@ -19977,7 +20048,7 @@ Air: id: 1144520 Air Attack: files: - /steamapps/common/AirAttack/WindowsAABuild/obfuscatedtestjar/properties.properties: + "/steamapps/common/AirAttack/WindowsAABuild/obfuscatedtestjar/properties.properties": tags: - config when: @@ -19986,21 +20057,21 @@ Air Attack: installDir: AirAttack: {} launch: - /aa.bat: + "/aa.bat": - when: - os: windows store: steam - /aa.sh: + "/aa.sh": - when: - os: mac store: steam steam: id: 1424900 -'Air Attack 3.0, Aerial Firefighting Game': +"Air Attack 3.0, Aerial Firefighting Game": installDir: - 'Air Attack 3.0, Aerial Firefighting Game': {} + "Air Attack 3.0, Aerial Firefighting Game": {} launch: - /AA3.exe: + "/AA3.exe": - when: - bit: 64 os: windows @@ -20017,15 +20088,15 @@ Air Brawl: installDir: Air Brawl: {} launch: - /Air Brawl.app: + "/Air Brawl.app": - when: - os: mac store: steam - /Air Brawl.exe: + "/Air Brawl.exe": - when: - os: windows store: steam - /Air Brawl.x86: + "/Air Brawl.x86": - when: - os: linux store: steam @@ -20035,11 +20106,11 @@ Air Combat: installDir: Air Combat: {} launch: - /Aircombat.exe: + "/Aircombat.exe": - when: - os: windows store: steam - /Game.app/Contents/MacOS/AirCombat: + "/Game.app/Contents/MacOS/AirCombat": - when: - os: mac store: steam @@ -20049,7 +20120,7 @@ Air Combat Arena: installDir: Air Combat: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -20061,14 +20132,14 @@ Air Combat Fighter: Air Combat III: steam: id: 1114390 -'Air Conflicts: Pacific Carriers': +"Air Conflicts: Pacific Carriers": files: - /config.ini: + "/config.ini": tags: - config when: - os: windows - /save: + "/save": tags: - save when: @@ -20076,23 +20147,23 @@ Air Combat III: installDir: Air Conflicts - Pacific Carriers: {} launch: - /ACPC Configuration.app: + "/ACPC Configuration.app": - when: - os: mac store: steam - /ACPC.app/Contents/MacOS/ACPC: + "/ACPC.app/Contents/MacOS/ACPC": - when: - os: mac store: steam - /ACPC.exe: + "/ACPC.exe": - when: - os: windows store: steam - /Configure.exe: + "/Configure.exe": - when: - os: windows store: steam - /run.sh: + "/run.sh": - arguments: game when: - os: linux @@ -20103,39 +20174,39 @@ Air Combat III: store: steam steam: id: 214910 -'Air Conflicts: Secret Wars': +"Air Conflicts: Secret Wars": installDir: Air Conflicts Secret Wars: {} launch: - /ACSW.exe: + "/ACSW.exe": - when: - store: steam - /Configure.exe: + "/Configure.exe": - when: - store: steam steam: id: 95900 -'Air Conflicts: Vietnam': +"Air Conflicts: Vietnam": installDir: Air Conflicts Vietnam: {} launch: - /ACV.exe: + "/ACV.exe": - when: - os: windows store: steam - /Air Conflicts - Vietnam Configuration.app: + "/Air Conflicts - Vietnam Configuration.app": - when: - os: mac store: steam - /Air Conflicts - Vietnam.app: + "/Air Conflicts - Vietnam.app": - when: - os: mac store: steam - /Configure.exe: + "/Configure.exe": - when: - os: windows store: steam - /run.sh: + "/run.sh": - arguments: game when: - os: linux @@ -20150,7 +20221,7 @@ Air Control: installDir: Killjoy Games: {} launch: - /Air Control Final.exe: + "/Air Control Final.exe": - when: - os: windows store: steam @@ -20164,7 +20235,7 @@ Air Dash: installDir: Air Dash: {} launch: - /AirDash.exe: + "/AirDash.exe": - when: - os: windows store: steam @@ -20172,12 +20243,12 @@ Air Dash: id: 755140 Air Forte: files: - /data/AirForteSaveData: + "/data/AirForteSaveData": tags: - save when: - os: windows - /data/AirForteSaveData/settings.dat: + "/data/AirForteSaveData/settings.dat": tags: - config when: @@ -20185,23 +20256,23 @@ Air Forte: installDir: airforte: {} launch: - /data/airforte.app: + "/data/airforte.app": - when: - os: mac store: steam - workingDir: /data - /data/airforte.exe: + workingDir: "/data" + "/data/airforte.exe": - when: - os: windows store: steam - workingDir: /data + workingDir: "/data" steam: id: 55020 Air Guardians: installDir: Air Guardians: {} launch: - /Air Guardians.exe: + "/Air Guardians.exe": - when: - store: steam steam: @@ -20210,7 +20281,7 @@ Air Hockey: installDir: Air Hockey: {} launch: - /AirHockey.exe: + "/AirHockey.exe": - when: - os: windows store: steam @@ -20220,30 +20291,36 @@ Air Marty: installDir: Air Marty: {} launch: - /flightsim.app: - - arguments: '--disable-devtools' + "/flightsim.app": + - arguments: "--disable-devtools" when: - os: mac store: steam - /nw: - - arguments: '--disable-devtools' + "/nw": + - arguments: "--disable-devtools" when: + - bit: 32 + os: linux + store: steam - bit: 64 os: linux store: steam - /nw.exe: - - arguments: '--disable-devtools' + "/nw.exe": + - arguments: "--disable-devtools" when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam steam: id: 1076880 -'Air Missions: HIND': +"Air Missions: HIND": installDir: Air Missions HIND: {} launch: - /HIND.exe: + "/HIND.exe": - when: - os: windows store: steam @@ -20261,7 +20338,7 @@ Air Threat: installDir: Air Threat: {} launch: - /air_threat.exe: + "/air_threat.exe": - when: - store: steam steam: @@ -20270,7 +20347,7 @@ Air Traffic Disruptor: installDir: Air Traffic Disruptor: {} launch: - /Air Traffic Disruptor.exe: + "/Air Traffic Disruptor.exe": - when: - os: windows store: steam @@ -20283,13 +20360,13 @@ AirBuccaneers: installDir: AirBuccaneers: {} launch: - /ABU.app/Contents/MacOS/AirBuccaneers: - - arguments: '-steam' + "/ABU.app/Contents/MacOS/AirBuccaneers": + - arguments: "-steam" when: - os: mac store: steam - /abu.exe: - - arguments: '-steam' + "/abu.exe": + - arguments: "-steam" when: - os: windows store: steam @@ -20304,8 +20381,8 @@ AirMech Strike: installDir: AirMech: {} launch: - /AirMech.exe: - - arguments: '' + "/AirMech.exe": + - arguments: "" when: - store: steam steam: @@ -20314,12 +20391,12 @@ AirMech Wastelands: installDir: AirMech Wastelands: {} launch: - /AirMechWastelands.exe: + "/AirMechWastelands.exe": - when: - bit: 32 os: windows store: steam - /AirMechWastelands64.exe: + "/AirMechWastelands64.exe": - when: - bit: 64 os: windows @@ -20335,7 +20412,7 @@ AirShock: installDir: AirShock: {} launch: - /AirShock.exe: + "/AirShock.exe": - when: - os: windows store: steam @@ -20343,21 +20420,21 @@ AirShock: id: 1017800 AirStrike 2: files: - /config.ini: + "/config.ini": tags: - config when: - os: windows -'AirStrike 2: Gulf Thunder': +"AirStrike 2: Gulf Thunder": files: - /config.ini: + "/config.ini": tags: - config when: - os: windows -'AirStrike 3D: Operation W.A.T': +"AirStrike 3D: Operation W.A.T": files: - /config.ini: + "/config.ini": tags: - config when: @@ -20380,7 +20457,7 @@ Airborne Empires: id: 511730 Airborne Kingdom: files: - /AppData/LocalLow/The Wandering Band LLC/Airborne Kingdom/Save Files: + "/AppData/LocalLow/The Wandering Band LLC/Airborne Kingdom/Save Files": tags: - save when: @@ -20390,11 +20467,11 @@ Airborne Kingdom: installDir: Airborne Kingdom: {} launch: - /AirborneKingdom.app: + "/AirborneKingdom.app": - when: - os: mac store: steam - /AirborneKingdom.exe: + "/AirborneKingdom.exe": - when: - os: windows store: steam @@ -20404,11 +20481,11 @@ Airborne Motocross: installDir: AirborneMotocross: {} launch: - /Airborne Motocross Pro.exe: + "/Airborne Motocross Pro.exe": - when: - os: windows store: steam - /Airborne Motocross Pro.x86_64: + "/Airborne Motocross Pro.x86_64": - when: - os: linux store: steam @@ -20420,30 +20497,30 @@ Airborne Ranger: installDir: Airborne Ranger: {} launch: - /DOSBox/dosbox.app/Contents/MacOS/DOSBox: - - arguments: '-conf dosbox.conf -conf osx.conf -noconsole' + "/DOSBox/dosbox.app/Contents/MacOS/DOSBox": + - arguments: "-conf dosbox.conf -conf osx.conf -noconsole" when: - os: mac store: steam - /dosbox/dosbox.exe: - - arguments: '-conf dosbox.conf -conf win.conf -noconsole' + "/dosbox/dosbox.exe": + - arguments: "-conf dosbox.conf -conf win.conf -noconsole" when: - os: windows store: steam steam: id: 1703070 -'Airborne Troops: Countdown to D-Day': +"Airborne Troops: Countdown to D-Day": files: - /AirborneTroops_Profile*.sav: + "/AirborneTroops_Profile*.sav": tags: - save when: - os: windows -'Airborne: Trials': +"Airborne: Trials": installDir: Airborne: {} launch: - /Airborne_v0.1/Airborne.exe: + "/Airborne_v0.1/Airborne.exe": - when: - store: steam steam: @@ -20457,7 +20534,7 @@ Aircraft Carrier Survival: installDir: Aircraft Carrier Survival: {} launch: - /AircraftCarrierSurvival.exe: + "/AircraftCarrierSurvival.exe": - when: - os: windows store: steam @@ -20467,7 +20544,7 @@ Aircraft Evolution: installDir: Aircraft Evolution: {} launch: - /Aircraft Evolution.exe: + "/Aircraft Evolution.exe": - when: - os: windows store: steam @@ -20477,8 +20554,8 @@ Aircraft War: installDir: Aircraft War: {} launch: - /AircraftWar.exe: - - arguments: '-steam' + "/AircraftWar.exe": + - arguments: "-steam" when: - os: windows store: steam @@ -20489,17 +20566,17 @@ Aircraft War X: id: 508670 Airfix Dogfighter: files: - /User: + "/User": tags: - save when: - os: windows - /system.ini: + "/system.ini": tags: - config when: - os: windows - /user.ini: + "/user.ini": tags: - config when: @@ -20507,7 +20584,7 @@ Airfix Dogfighter: Airglow: steam: id: 1103560 -'Airhack: Hacking': +"Airhack: Hacking": steam: id: 1188950 Airhead: @@ -20517,7 +20594,7 @@ Airhead: id: 771700 Airheart: files: - /AppData/LocalLow/Blindflug Studios AG/Airheart: + "/AppData/LocalLow/Blindflug Studios AG/Airheart": tags: - save when: @@ -20525,11 +20602,11 @@ Airheart: installDir: AIRHEART: {} launch: - /Airheart.app/Contents/MacOS/Airheart: + "/Airheart.app/Contents/MacOS/Airheart": - when: - os: mac store: steam - /Airheart.exe: + "/Airheart.exe": - when: - os: windows store: steam @@ -20539,15 +20616,15 @@ Airheart: - config steam: id: 531180 -Airi's World: +"Airi's World": installDir: Airis World: {} launch: - /airisworld.app: + "/airisworld.app": - when: - os: mac store: steam - /airisworld.exe: + "/airisworld.exe": - when: - os: windows store: steam @@ -20555,12 +20632,12 @@ Airi's World: id: 664590 Airis: files: - /renpy/config.py: + "/renpy/config.py": tags: - config when: - os: windows - /renpy/AIRIS-1466417547/*.save: + "/renpy/AIRIS-1466417547/*.save": tags: - save when: @@ -20568,15 +20645,15 @@ Airis: installDir: AIRIS: {} launch: - /AIRIS.app/Contents/MacOS/AIRIS: + "/AIRIS.app/Contents/MacOS/AIRIS": - when: - os: mac store: steam - /AIRIS.exe: + "/AIRIS.exe": - when: - os: windows store: steam - /AIRIS.sh: + "/AIRIS.sh": - when: - os: linux store: steam @@ -20586,7 +20663,7 @@ Airline Director 2 - Tycoon Game: installDir: Airline Director 2: {} launch: - /AirlineDirectorTwo080316steam.exe: + "/AirlineDirectorTwo080316steam.exe": - when: - os: windows store: steam @@ -20594,7 +20671,7 @@ Airline Director 2 - Tycoon Game: id: 462830 Airline Tycoon: files: - /Savegame/Game*.dat: + "/Savegame/Game*.dat": tags: - save when: @@ -20607,34 +20684,34 @@ Airline Tycoon 2: installDir: Airline Tycoon 2: {} launch: - /airlinetycoon2.exe: + "/airlinetycoon2.exe": - when: - store: steam steam: id: 201490 Airline Tycoon Deluxe: files: - /Myplanes: + "/Myplanes": tags: - save when: - os: windows - /Savegame/Game*.dat: + "/Savegame/Game*.dat": tags: - save when: - os: windows - /.AirlineTycoonDeluxe: + "/.AirlineTycoonDeluxe": tags: - save when: - os: linux - /.AirlineTycoonDeluxe/language.ini: + "/.AirlineTycoonDeluxe/language.ini": tags: - config when: - os: linux - /.AirlineTycoonDeluxeconfig.ini: + "/.AirlineTycoonDeluxeconfig.ini": tags: - config when: @@ -20644,15 +20721,15 @@ Airline Tycoon Deluxe: installDir: Airline Tycoon Deluxe: {} launch: - /AT.exe: + "/AT.exe": - when: - os: windows store: steam - /ATDeluxe: + "/ATDeluxe": - when: - os: linux store: steam - /Airline Tycoon Deluxe.app: + "/Airline Tycoon Deluxe.app": - when: - os: mac store: steam @@ -20664,12 +20741,12 @@ Airline Tycoon Deluxe: id: 331920 Airline Tycoon Evolution: files: - /Myplanes: + "/Myplanes": tags: - save when: - os: windows - /Savegame/Game*.dat: + "/Savegame/Game*.dat": tags: - save when: @@ -20680,7 +20757,7 @@ Airline Tycoon Evolution: - config Airline Tycoon First Class: files: - /Savegame/Game*.dat: + "/Savegame/Game*.dat": tags: - save when: @@ -20693,16 +20770,16 @@ Airmen: installDir: Airmen: {} launch: - /Airmen.app: + "/Airmen.app": - when: - os: mac store: steam - /Airmen.exe: + "/Airmen.exe": - when: - bit: 64 os: windows store: steam - /Airmen.x86_64: + "/Airmen.x86_64": - when: - bit: 64 os: linux @@ -20712,22 +20789,22 @@ Airmen: Airon Ball: steam: id: 657490 -'AironBall: The Floating Lands': +"AironBall: The Floating Lands": steam: id: 663260 -'AironBall: The Loop': +"AironBall: The Loop": steam: id: 674820 Airplane Mode: installDir: AirplaneMode: {} launch: - /AirplaneMode.exe: + "/AirplaneMode.exe": - when: - bit: 64 os: windows store: steam - /Contents/MacOS/AirplaneMode: + "/Contents/MacOS/AirplaneMode": - when: - os: mac store: steam @@ -20737,11 +20814,11 @@ Airplane Sky Voyage: installDir: Airplane Sky Voyage: {} launch: - /Airplane Sky Voyage.app/Contents/MacOS/Airplane Sky Voyage: + "/Airplane Sky Voyage.app/Contents/MacOS/Airplane Sky Voyage": - when: - os: mac store: steam - /Airplane Sky Voyage.exe: + "/Airplane Sky Voyage.exe": - when: - os: windows store: steam @@ -20749,7 +20826,7 @@ Airplane Sky Voyage: id: 851010 Airport CEO: files: - /Apoapsis Studios/Airport CEO/Saves: + "/Apoapsis Studios/Airport CEO/Saves": tags: - save when: @@ -20758,12 +20835,12 @@ Airport CEO: id: 1597610706 id: gogExtra: - - 1428657105 - - 1238330416 - 1116054340 - - 2027337642 + - 1238330416 + - 1428657105 - 1587865064 - 1992252315 + - 2027337642 steamExtra: - 1525630 - 1649580 @@ -20772,11 +20849,11 @@ Airport CEO: installDir: Airport CEO: {} launch: - /Airport CEO.app: + "/Airport CEO.app": - when: - os: mac store: steam - /Airport CEO.exe: + "/Airport CEO.exe": - when: - os: windows store: steam @@ -20789,7 +20866,7 @@ Airport Fire Department - The Simulation: installDir: Airport Fire Department - The Simulation: {} launch: - /AirportFireDepartment-TheSimulation.exe: + "/AirportFireDepartment-TheSimulation.exe": - when: - os: windows store: steam @@ -20797,7 +20874,7 @@ Airport Fire Department - The Simulation: id: 502410 Airport Firefighters - The Simulation: files: - /AppData/LocalLow/VIS Games/AirportFirefighters2015: + "/AppData/LocalLow/VIS Games/AirportFirefighters2015": tags: - save when: @@ -20805,11 +20882,11 @@ Airport Firefighters - The Simulation: installDir: Airport Firefighters - The Simulation: {} launch: - /airportfirefighters2015.exe: + "/airportfirefighters2015.exe": - when: - os: windows store: steam - /fhf2015.app: + "/fhf2015.app": - when: - os: mac store: steam @@ -20819,25 +20896,25 @@ Airport Madness 3D: installDir: Airport Madness 3D: {} launch: - /Airport Madness 3D.app: + "/Airport Madness 3D.app": - when: - os: mac store: steam - /Airport Madness 3D.exe: + "/Airport Madness 3D.exe": - when: - os: windows store: steam steam: id: 445770 -'Airport Madness 3D: Volume 2': +"Airport Madness 3D: Volume 2": installDir: Airport Madness 3D 2: {} launch: - /Airport Madness 3D 2.app: + "/Airport Madness 3D 2.app": - when: - os: mac store: steam - /Airport Madness 3D 2.exe: + "/Airport Madness 3D 2.exe": - when: - os: windows store: steam @@ -20852,39 +20929,39 @@ Airport Madness 4: installDir: Airport Madness 4: {} launch: - /AM4.app: + "/AM4.app": - when: - os: mac store: steam - /AM4.exe: + "/AM4.exe": - when: - os: windows store: steam steam: id: 387850 -'Airport Madness: Time Machine': +"Airport Madness: Time Machine": installDir: Airport Madness Time Machine: {} launch: - /AMTM.app: + "/AMTM.app": - when: - os: mac store: steam - /AMTM.exe: + "/AMTM.exe": - when: - os: windows store: steam steam: id: 402210 -'Airport Madness: World Edition': +"Airport Madness: World Edition": installDir: Airport Madness World Edition: {} launch: - /AMWE.app: + "/AMWE.app": - when: - os: mac store: steam - /AMWE.exe: + "/AMWE.exe": - when: - os: windows store: steam @@ -20894,7 +20971,7 @@ Airport Master: installDir: Airport Master: {} launch: - /Airport Master.exe: + "/Airport Master.exe": - when: - bit: 64 os: windows @@ -20906,12 +20983,12 @@ Airport Renovator: id: 1356250 Airport Simulator 2014: files: - /My Games/Airport Simulator 2014/airport simulator 2014: + "/My Games/Airport Simulator 2014/airport simulator 2014": tags: - save when: - os: windows - /My Games/Airport Simulator 2014/system: + "/My Games/Airport Simulator 2014/system": tags: - config when: @@ -20919,7 +20996,7 @@ Airport Simulator 2014: installDir: Airport Simulator 2014: {} launch: - /airport2014.exe: + "/airport2014.exe": - when: - store: steam steam: @@ -20928,11 +21005,11 @@ Airport Simulator 2015: installDir: Airport Simulator 2015: {} launch: - /Airport_2015.exe: + "/Airport_2015.exe": - when: - os: windows store: steam - /Airport_2015_Mac.app: + "/Airport_2015_Mac.app": - when: - os: mac store: steam @@ -20942,7 +21019,7 @@ Airport Simulator 2018: installDir: Airport Simulator 2019: {} launch: - /AirportSim2019.exe: + "/AirportSim2019.exe": - when: - os: windows store: steam @@ -20950,34 +21027,34 @@ Airport Simulator 2018: id: 678890 Airport Tycoon 3: files: - /data/config.txt: + "/data/config.txt": tags: - config when: - os: windows - /save: + "/save": tags: - save when: - os: windows -'Airscape: The Fall of Gravity': +"Airscape: The Fall of Gravity": files: - /Airscape: + "/Airscape": tags: - config when: - os: windows - /Airscape/Local Storage: + "/Airscape/Local Storage": tags: - save when: - os: windows - /Airscape: + "/Airscape": tags: - config when: - os: linux - /Airscape/Local Storage: + "/Airscape/Local Storage": tags: - save when: @@ -20985,15 +21062,15 @@ Airport Tycoon 3: installDir: Airscape: {} launch: - /nw: + "/nw": - when: - os: linux store: steam - /nw.app: + "/nw.app": - when: - os: mac store: steam - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -21003,7 +21080,7 @@ Airship Asunder: installDir: Airship Asunder: {} launch: - /Airship Asunder.exe: + "/Airship Asunder.exe": - when: - os: windows store: steam @@ -21013,7 +21090,7 @@ Airship Commander: installDir: Carlyle: {} launch: - /Carlyle.exe: + "/Carlyle.exe": - when: - os: windows store: steam @@ -21023,20 +21100,20 @@ Airship Dragoon: installDir: Airship Dragoon: {} launch: - /Airship Dragoon.exe: + "/Airship Dragoon.exe": - when: - os: windows store: steam steam: id: 308380 -'Airships: Conquer the Skies': +"Airships: Conquer the Skies": files: - /.airshipsgame: + "/.airshipsgame": tags: - save when: - os: linux - /AirshipsGame: + "/AirshipsGame": tags: - save when: @@ -21046,23 +21123,23 @@ Airship Dragoon: installDir: Airships Conquer the Skies: {} launch: - /Airships: + "/Airships": - when: - os: linux store: steam - /Airships.app: + "/Airships.app": - when: - os: mac store: steam - /Airships.exe: + "/Airships.exe": - when: - os: windows store: steam - /AirshipsSystemJava.exe: + "/AirshipsSystemJava.exe": - when: - os: windows store: steam - /Airships_sysjava.sh: + "/Airships_sysjava.sh": - when: - os: linux store: steam @@ -21077,7 +21154,7 @@ Airstrike One: installDir: Airstrike One: {} launch: - /Airstrike One.exe: + "/Airstrike One.exe": - when: - os: windows store: steam @@ -21087,7 +21164,7 @@ Airtight City: installDir: AirtightCity: {} launch: - /The Airtight City2020.exe: + "/The Airtight City2020.exe": - when: - store: steam steam: @@ -21101,13 +21178,13 @@ Aiso: installDir: Aiso: {} launch: - /32/Aiso.exe: + "/32/Aiso.exe": - arguments: b when: - bit: 32 os: windows store: steam - /64/Aiso.exe: + "/64/Aiso.exe": - arguments: b when: - bit: 64 @@ -21119,11 +21196,11 @@ Aivolution: installDir: Aivolution: {} launch: - /Aivolution.app: + "/Aivolution.app": - when: - os: mac store: steam - /Aivolution.exe: + "/Aivolution.exe": - when: - os: windows store: steam @@ -21131,7 +21208,7 @@ Aivolution: id: 1014990 Aka: files: - /AppData/LocalLow/Cosmo Gatto/Aka/save*: + "/AppData/LocalLow/Cosmo Gatto/Aka/save*": tags: - save when: @@ -21139,7 +21216,7 @@ Aka: installDir: Aka: {} launch: - /Aka/Aka.exe: + "/Aka/Aka.exe": - when: - os: windows store: steam @@ -21149,7 +21226,7 @@ Aka Manto: installDir: Aka Manto 赤マント: {} launch: - /Aka Manto.exe: + "/Aka Manto.exe": - when: - store: steam steam: @@ -21158,19 +21235,19 @@ Akabeth Tactics: installDir: Akabeth Tactics: {} launch: - /Akabeth.exe: + "/Akabeth.exe": - when: - store: steam steam: id: 965240 Akai Katana Shin: files: - /AkaiKatanaShin.ini: + "/AkaiKatanaShin.ini": tags: - config when: - os: windows - /AkaiKatanaShin/SYSTEM.DAT.bin: + "/AkaiKatanaShin/SYSTEM.DAT.bin": tags: - save when: @@ -21178,16 +21255,16 @@ Akai Katana Shin: installDir: AkaiKatana: {} launch: - /AKAI_KATANA_SHIN.exe: + "/AKAI_KATANA_SHIN.exe": - when: - bit: 64 os: windows store: steam steam: id: 2076220 -'Akalabeth: World of Doom': +"Akalabeth: World of Doom": files: - /PLAYER.U0: + "/PLAYER.U0": tags: - save when: @@ -21200,26 +21277,26 @@ Akane: installDir: Akane: {} launch: - /Akane.app: + "/Akane.app": - when: - os: mac store: steam - /Linux64/Akane.x86_64: + "/Linux64/Akane.x86_64": - when: - bit: 64 os: linux store: steam - /Linux86/Akane.x86: + "/Linux86/Akane.x86": - when: - bit: 32 os: linux store: steam - /akane_win32/Akane.exe: + "/akane_win32/Akane.exe": - when: - bit: 32 os: windows store: steam - /akane_win64/Akane.exe: + "/akane_win64/Akane.exe": - when: - bit: 64 os: windows @@ -21233,7 +21310,7 @@ Akane: id: 884260 Akane the Kunoichi: files: - /SavedGames/AkaneTheKunoichi/AkaneTheKunoichi/AllPlayers/data.sav: + "/SavedGames/AkaneTheKunoichi/AkaneTheKunoichi/AllPlayers/data.sav": tags: - save when: @@ -21241,24 +21318,24 @@ Akane the Kunoichi: installDir: AkaneTheKunoichi: {} launch: - /AkaneTheKunoichi.exe: + "/AkaneTheKunoichi.exe": - when: - store: steam steam: id: 291130 -'Akaneiro: Demon Hunters': +"Akaneiro: Demon Hunters": installDir: Akaneiro Demon Hunters: {} launch: - /Akaneiro: + "/Akaneiro": - when: - os: linux store: steam - /Akaneiro.app: + "/Akaneiro.app": - when: - os: mac store: steam - /Akaneiro.exe: + "/Akaneiro.exe": - when: - os: windows store: steam @@ -21268,15 +21345,15 @@ Akane the Kunoichi: - config steam: id: 230310 -'Akash: Path of the Five': +"Akash: Path of the Five": installDir: APotF: {} launch: - /akash.app: + "/akash.app": - when: - os: mac store: steam - /akash.exe: + "/akash.exe": - when: - os: windows store: steam @@ -21286,7 +21363,7 @@ Akda: installDir: akda: {} launch: - /akda.exe: + "/akda.exe": - when: - os: windows store: steam @@ -21294,13 +21371,13 @@ Akda: id: 761630 Aker Fern: files: - /saves: + "/saves": tags: - config - save when: - os: windows - /RenPy/Akkerfern-1520714294: + "/RenPy/Akkerfern-1520714294": tags: - config - save @@ -21309,26 +21386,26 @@ Aker Fern: installDir: AKER FERN: {} launch: - /AkerFern.app: + "/AkerFern.app": - when: - os: mac store: steam - /AkerFern.exe: + "/AkerFern.exe": - when: - os: windows store: steam - /AkerFern.sh: + "/AkerFern.sh": - when: - os: linux store: steam steam: id: 1344840 -'Akhenaten: Rule as Pharaoh': +"Akhenaten: Rule as Pharaoh": steam: id: 719160 -'Akiba''s Trip: Hellbound & Debriefed': +"Akiba's Trip: Hellbound & Debriefed": files: - /AkibaHD_Data/SaveData/: + "/AkibaHD_Data/SaveData/": tags: - save when: @@ -21336,47 +21413,48 @@ Aker Fern: gog: id: 2042702760 installDir: - AKIBA'S TRIP Hellbound & Debriefed: {} + "AKIBA'S TRIP Hellbound & Debriefed": {} launch: - /AkibaHD.exe: - - arguments: '-s' + "/AkibaHD.exe": + - arguments: "-s" when: - store: steam steam: id: 1236780 -'Akiba''s Trip: Undead & Undressed': +"Akiba's Trip: Undead & Undressed": files: - /gamepad.ini: + "/gamepad.ini": tags: - config when: - os: windows - /userdata//333980: + "/userdata//333980": tags: - save when: - store: steam - /AKIBA'S TRIP/config.dat: + "/AKIBA'S TRIP/config.dat": tags: - config when: - os: windows - /AKIBA'S TRIP/savedata: + "/AKIBA'S TRIP/savedata": tags: - save when: - os: windows - /GOG.com/Galaxy/Applic./53377098024699305/Storage/Shared/Files: + "/GOG.com/Galaxy/Applic./53377098024699305/Storage/Shared/Files": tags: - save when: - - store: gog + - os: windows + store: gog gog: id: 2053169534 installDir: - Akiba's Trip Undead & Undressed: {} + "Akiba's Trip Undead & Undressed": {} launch: - /AkibaUU.exe: + "/AkibaUU.exe": - when: - store: steam steam: @@ -21385,7 +21463,7 @@ Akihabara - Feel the Rhythm: installDir: Akihabara - Feel the Rhythm: {} launch: - /Akihabara.exe: + "/Akihabara.exe": - when: - os: windows store: steam @@ -21395,7 +21473,7 @@ Akihabara - Feel the Rhythm Remixed: installDir: Akihabara - Feel the Rhythm Remixed: {} launch: - /AkibaRemixed.exe: + "/AkibaRemixed.exe": - when: - os: windows store: steam @@ -21405,7 +21483,7 @@ Akin: installDir: Akin: {} launch: - /Akin.exe: + "/Akin.exe": - when: - os: windows store: steam @@ -21415,7 +21493,7 @@ Akin Vol 2: installDir: Akin Vol 2: {} launch: - /AkinVol2.exe: + "/AkinVol2.exe": - when: - os: windows store: steam @@ -21425,35 +21503,35 @@ Akuatica: installDir: Akuatica: {} launch: - /Akuatica.app/Contents/MacOS/Akuatica: + "/Akuatica.app/Contents/MacOS/Akuatica": - when: - os: mac store: steam - /Akuatica.exe: - - arguments: '-windowed' + "/Akuatica.exe": + - arguments: "-windowed" when: - os: windows store: steam steam: id: 401330 -'Akuto: Showdown': +"Akuto: Showdown": installDir: Akuto_ Showdown: {} launch: - /akuto.app: + "/akuto.app": - when: - os: mac store: steam - /akuto.exe: + "/akuto.exe": - when: - os: windows store: steam - /akuto.x86: + "/akuto.x86": - when: - bit: 32 os: linux store: steam - /akuto.x86_64: + "/akuto.x86_64": - when: - bit: 64 os: linux @@ -21464,14 +21542,14 @@ Akuya: installDir: Akuya: {} launch: - /AKUYA.exe: + "/AKUYA.exe": - when: - store: steam steam: id: 545490 -Al Emmo and the Lost Dutchman's Mine: +"Al Emmo and the Lost Dutchman's Mine": files: - /Saved Games/Al Emmo and the Lost Dutchmans Mine (Steam): + "/Saved Games/Al Emmo and the Lost Dutchmans Mine (Steam)": tags: - config when: @@ -21479,37 +21557,37 @@ Al Emmo and the Lost Dutchman's Mine: installDir: AlEmmo: {} launch: - /al-emmo: + "/al-emmo": - when: - os: linux store: steam - /al-emmo.exe: + "/al-emmo.exe": - when: - os: windows store: steam - - arguments: '--setup' + - arguments: "--setup" when: - os: windows store: steam steam: id: 296850 -Al Emmo's Postcards from Anozira: +"Al Emmo's Postcards from Anozira": installDir: Postcards from Anozira: {} launch: - /Postcards_from_Anozira.exe: + "/Postcards_from_Anozira.exe": - when: - os: windows store: steam - - arguments: '--setup' + - arguments: "--setup" when: - os: windows store: steam steam: id: 375020 -'Al-Qadim: The Genie''s Curse': +"Al-Qadim: The Genie's Curse": files: - /SAVEGAM*.DAT: + "/SAVEGAM*.DAT": tags: - save when: @@ -21517,16 +21595,16 @@ Al Emmo's Postcards from Anozira: gog: id: 1441096843 installDir: - Al-Qadim The Genie's Curse: {} + "Al-Qadim The Genie's Curse": {} launch: - /Launcher/Launcher.exe: + "/Launcher/Launcher.exe": - when: - store: steam steam: id: 1904640 -Aladdin in Nasira's Revenge: +"Aladdin in Nasira's Revenge": files: - /slots.crd: + "/slots.crd": tags: - save when: @@ -21539,19 +21617,19 @@ Aladin & the Enchanted Lamp: installDir: Aladin & the Enchanted Lamp: {} launch: - /Aladin.exe: + "/Aladin.exe": - when: - os: windows store: steam steam: id: 827100 -'Alaloth: Champions of the Four Kingdoms': +"Alaloth: Champions of the Four Kingdoms": gog: id: 1995405622 installDir: Alaloth - Champions of The Four Kingdoms: {} launch: - /Alaloth.exe: + "/Alaloth.exe": - when: - os: windows store: steam @@ -21559,31 +21637,32 @@ Aladin & the Enchanted Lamp: id: 919360 Alan Wake: files: - /userdata//108710: + "/userdata//108710": tags: - config - save when: - store: steam - /Remedy/AlanWake: + "/Remedy/AlanWake": tags: - config - save when: - os: windows - /Remedy/AlanWake_EGS_Version: + "/Remedy/AlanWake_EGS_Version": tags: - config - save when: - - store: epic - /Remedy/AlanWake_GOG_Version: + - os: windows + "/Remedy/AlanWake_GOG_Version": tags: - config - save when: - - store: gog - /Remedy/AlanWake_MS_Version: + - os: windows + store: gog + "/Remedy/AlanWake_MS_Version": tags: - config - save @@ -21599,62 +21678,63 @@ Alan Wake: installDir: Alan Wake: {} launch: - /AlanWake.exe: + "/AlanWake.exe": - when: - store: steam steam: id: 108710 Alan Wake II: files: - /Remedy/AlanWake2/: + "/Remedy/AlanWake2/": tags: - save when: - os: windows - /Remedy/AlanWake2/renderer.ini: + "/Remedy/AlanWake2/renderer.ini": tags: - config when: - os: windows Alan Wake Remastered: files: - /Documents/Remedy/AlanWakeRemastered: + "/Documents/Remedy/AlanWakeRemastered": tags: - config when: - os: windows - /Remedy/AlanWakeRemastered: + "/Remedy/AlanWakeRemastered": tags: - save when: - - store: epic -Alan Wake's American Nightmare: + - os: windows +"Alan Wake's American Nightmare": files: - /userdata//202750/remote: + "/userdata//202750/remote": tags: - config - save when: - store: steam - /Remedy/AmericanNightmare: + "/Remedy/AmericanNightmare": tags: - config - save when: - os: windows - /Remedy/AmericanNightmare_EGS_Version: + "/Remedy/AmericanNightmare_EGS_Version": tags: - config - save when: - - store: epic - /Remedy/AmericanNightmare_GOG_Version: + - os: windows + "/Remedy/AmericanNightmare_GOG_Version": tags: - config - save when: - - store: gog - /Remedy/AmericanNightmare_MS_Version: + - os: windows + store: gog + "/Remedy/AmericanNightmare_MS_Version": tags: - config - save @@ -21666,56 +21746,56 @@ Alan Wake's American Nightmare: installDir: alan wakes american nightmare: {} launch: - /alan_wakes_american_nightmare.exe: + "/alan_wakes_american_nightmare.exe": - when: - store: steam steam: id: 202750 -Alan's Attitude: +"Alan's Attitude": installDir: - Alan's Attitude: {} + "Alan's Attitude": {} launch: - /Alans Attitude.exe: + "/Alans Attitude.exe": - when: - bit: 64 os: windows store: steam steam: id: 1158990 -Alan's Automaton Workshop: +"Alan's Automaton Workshop": files: - /AppData/LocalLow/Laputa Labs/Alan's Automaton Workshop: + "/AppData/LocalLow/Laputa Labs/Alan's Automaton Workshop": tags: - save when: - os: windows - /AppData/LocalLow/Laputa Labs/Alan's Automaton Workshop/GameSettings.xml: + "/AppData/LocalLow/Laputa Labs/Alan's Automaton Workshop/GameSettings.xml": tags: - config when: - os: windows installDir: - Alan's Automaton Workshop: {} + "Alan's Automaton Workshop": {} launch: - /Alan's Automaton Workshop.app: + "/Alan's Automaton Workshop.app": - when: - os: mac store: steam - /Alan's Automaton Workshop.exe: + "/Alan's Automaton Workshop.exe": - when: - os: windows store: steam - /Alan's Automaton Workshop.x86_64: + "/Alan's Automaton Workshop.x86_64": - when: - os: linux store: steam registry: - HKEY_CURRENT_USER/Software/Laputa Labs/Alan's Automaton Workshop: + "HKEY_CURRENT_USER/Software/Laputa Labs/Alan's Automaton Workshop": tags: - config steam: id: 1289990 -'Alan: Rift Breakers': +"Alan: Rift Breakers": installDir: Alan Rift Breakers: {} steam: @@ -21724,29 +21804,29 @@ Alarameth TD: installDir: Alarameth TD: {} launch: - /Alarameth TD.app: + "/Alarameth TD.app": - when: - os: mac store: steam - /Alarameth TD.exe: + "/Alarameth TD.exe": - when: - os: windows store: steam - /Alarameth_TD.x86: + "/Alarameth_TD.x86": - when: - bit: 32 os: linux store: steam - /Alarameth_TD.x86_64: + "/Alarameth_TD.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 377280 -'Alarm for Cobra 11: Nitro': +"Alarm for Cobra 11: Nitro": files: - /C11-Saves: + "/C11-Saves": tags: - save when: @@ -21755,7 +21835,7 @@ Alaska: installDir: ALASKA: {} launch: - /ALASKA.exe: + "/ALASKA.exe": - when: - os: windows store: steam @@ -21764,14 +21844,14 @@ Alaska: Alaskan Road Truckers: steam: id: 849100 -'Alba: A Wildlife Adventure': +"Alba: A Wildlife Adventure": files: - /AppData/LocalLow/ustwo games/Alba: + "/AppData/LocalLow/ustwo games/Alba": tags: - save when: - os: windows - /Library/Containers/Alba/Data/Library/Application Support/com.ustwo.alba/SaveFiles: + "/Library/Containers/Alba/Data/Library/Application Support/com.ustwo.alba/SaveFiles": tags: - save when: @@ -21781,7 +21861,7 @@ Alaskan Road Truckers: installDir: Alba: {} launch: - /Alba.exe: + "/Alba.exe": - when: - bit: 64 os: windows @@ -21792,9 +21872,9 @@ Alaskan Road Truckers: - config steam: id: 1337010 -'Albedo: Eyes from Outer Space': +"Albedo: Eyes from Outer Space": files: - /Library/Preferences/unity.z4g0.Albedo.plist: + "/Library/Preferences/unity.z4g0.Albedo.plist": tags: - config when: @@ -21804,11 +21884,11 @@ Alaskan Road Truckers: installDir: Albedo Eyes from Outer Space: {} launch: - /Albedo.app: + "/Albedo.app": - when: - os: mac store: steam - /Albedo.exe: + "/Albedo.exe": - when: - os: windows store: steam @@ -21822,11 +21902,11 @@ Albedon Wars: installDir: Albedon Wars: {} launch: - /AlbedonWarsGame.app: + "/AlbedonWarsGame.app": - when: - os: mac store: steam - /AlbedonWarsGame.exe: + "/AlbedonWarsGame.exe": - when: - bit: 64 os: windows @@ -21837,45 +21917,45 @@ Albert Mort - Desert Heat: installDir: Albert Mort - Desert Heat: {} launch: - /AlbertMort_DH.app: + "/AlbertMort_DH.app": - when: - os: mac store: steam - /AlbertMort_DH.exe: + "/AlbertMort_DH.exe": - when: - os: windows store: steam steam: id: 670780 -'Albert and Otto: The Adventure Begins': +"Albert and Otto: The Adventure Begins": installDir: AlbertandOtto: {} launch: - /AlbertandOtto.app: + "/AlbertandOtto.app": - when: - os: mac store: steam - /AlbertandOtto.exe: + "/AlbertandOtto.exe": - when: - os: windows store: steam - /AlbertandOtto.x86: + "/AlbertandOtto.x86": - when: - bit: 32 os: linux store: steam - /AlbertandOtto.x86_64: + "/AlbertandOtto.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 368590 -'Albino Lullaby: Episode 1': +"Albino Lullaby: Episode 1": installDir: Albino Lullaby: {} launch: - /AlbinoLullaby.exe: + "/AlbinoLullaby.exe": - when: - os: windows store: steam @@ -21883,12 +21963,12 @@ Albert Mort - Desert Heat: id: 355860 Albion: files: - /SAVES: + "/SAVES": tags: - save when: - os: dos - /setup.ini: + "/setup.ini": tags: - config when: @@ -21899,32 +21979,32 @@ Albion Online: installDir: Albion Online: {} launch: - /Albion-Online: - - arguments: '-steam' + "/Albion-Online": + - arguments: "-steam" when: - os: linux store: steam - /Albion-Online.app: - - arguments: '-steam' + "/Albion-Online.app": + - arguments: "-steam" when: - os: mac store: steam - /launcher/AlbionLauncher.exe: - - arguments: '-steam' + "/launcher/AlbionLauncher.exe": + - arguments: "-steam" when: - os: windows store: steam - workingDir: /launcher + workingDir: "/launcher" steam: id: 761890 -'Alcatraz: Prison Escape': +"Alcatraz: Prison Escape": files: - /autoexec.fg: + "/autoexec.fg": tags: - config when: - os: windows -'Alcatraz: VR Escape Room': +"Alcatraz: VR Escape Room": installDir: Alcatraz VR Escape Room: {} steam: @@ -21933,7 +22013,7 @@ Alchemage: installDir: Alchemage: {} launch: - /Alchemage.exe: + "/Alchemage.exe": - when: - store: steam steam: @@ -21942,15 +22022,15 @@ Alchemelee: installDir: Alchemelee: {} launch: - /Alchemelee.app: + "/Alchemelee.app": - when: - os: mac store: steam - /Alchemelee.exe: + "/Alchemelee.exe": - when: - os: windows store: steam - /Alchemelee.x86_64: + "/Alchemelee.x86_64": - when: - os: linux store: steam @@ -21960,7 +22040,7 @@ Alchemia: installDir: Alchemia: {} launch: - /Alchemia.exe: + "/Alchemia.exe": - when: - store: steam registry: @@ -21973,15 +22053,15 @@ Alchemic Cutie: installDir: Alchemic Cutie: {} launch: - /Alchemic Cutie.app: + "/Alchemic Cutie.app": - when: - os: mac store: steam - /alchemiccutie: + "/alchemiccutie": - when: - os: linux store: steam - /alchemiccutie.exe: + "/alchemiccutie.exe": - when: - os: windows store: steam @@ -21991,7 +22071,7 @@ Alchemic Dungeons DX: installDir: Alchemic DungeonsDX: {} launch: - /AlchemicDungeons.exe: + "/AlchemicDungeons.exe": - when: - os: windows store: steam @@ -22001,7 +22081,7 @@ Alchemic Jousts: installDir: Alchemic Jousts: {} launch: - /AlchemicJousts.exe: + "/AlchemicJousts.exe": - when: - bit: 64 os: windows @@ -22037,7 +22117,7 @@ Alchemist Penguin: installDir: Alchemist Penguin: {} launch: - /AlchemistPenguin.exe: + "/AlchemistPenguin.exe": - when: - os: windows store: steam @@ -22047,60 +22127,60 @@ Alchemist Simulator: installDir: Alchemist Simulator: {} launch: - /Alchemist Simulator.exe: + "/Alchemist Simulator.exe": - when: - os: windows store: steam steam: id: 1105040 -Alchemist's Awakening: +"Alchemist's Awakening": files: - /.alchemist: + "/.alchemist": tags: - config when: - os: windows - /.alchemist/saves: + "/.alchemist/saves": tags: - save when: - os: windows installDir: - Alchemist's Awakening: {} + "Alchemist's Awakening": {} launch: - /Alchemist: + "/Alchemist": - when: - os: linux store: steam - /Alchemist.exe: + "/Alchemist.exe": - when: - bit: 64 os: windows store: steam - /Alchemist32.exe: + "/Alchemist32.exe": - when: - bit: 32 os: windows store: steam - /alchemist.app: + "/alchemist.app": - when: - os: mac store: steam steam: id: 431450 -Alchemist's Castle: +"Alchemist's Castle": installDir: - Alchemist's Castle: {} + "Alchemist's Castle": {} launch: - /AC.exe: + "/AC.exe": - when: - os: windows store: steam - /AC.x86: + "/AC.x86": - when: - os: linux store: steam - /ac.app: + "/ac.app": - when: - os: mac store: steam @@ -22110,11 +22190,11 @@ Alchemy Classic: installDir: Alchemy Classic: {} launch: - /Alchemy Classic Premium.app/Contents/MacOS/alchemyclassicpremium: + "/Alchemy Classic Premium.app/Contents/MacOS/alchemyclassicpremium": - when: - os: mac store: steam - /alchemyclassicpremium.exe: + "/alchemyclassicpremium.exe": - when: - os: windows store: steam @@ -22122,7 +22202,7 @@ Alchemy Classic: id: 823310 Alchemy Garden: files: - /AlchemyGardenUE/Saved/SaveGames: + "/AlchemyGardenUE/Saved/SaveGames": tags: - config - save @@ -22131,26 +22211,26 @@ Alchemy Garden: installDir: Alchemy Garden: {} launch: - /AlchemyGardenUE.exe: + "/AlchemyGardenUE.exe": - when: - bit: 64 os: windows store: steam steam: id: 935400 -'Alchemy Mysteries: Prague Legends': +"Alchemy Mysteries: Prague Legends": files: - /settings.cfg: + "/settings.cfg": tags: - config when: - os: windows - /Jetdogs Studios/Alchemy: + "/Jetdogs Studios/Alchemy": tags: - save when: - os: windows - /Jetdogs Studios/Alchemy/options.cfg: + "/Jetdogs Studios/Alchemy/options.cfg": tags: - config when: @@ -22158,11 +22238,11 @@ Alchemy Garden: installDir: Alchemy Mysteries Prague Legends: {} launch: - /Alchemy: + "/Alchemy": - when: - os: linux store: steam - /AlchemyMysteries_PragueLegends.exe: + "/AlchemyMysteries_PragueLegends.exe": - when: - os: windows store: steam @@ -22170,7 +22250,7 @@ Alchemy Garden: id: 326190 Alchemy Story: files: - /AlchemyStory/Saved/SaveGames: + "/AlchemyStory/Saved/SaveGames": tags: - save when: @@ -22178,7 +22258,7 @@ Alchemy Story: installDir: Alchemy Story: {} launch: - /AlchemyStory.exe: + "/AlchemyStory.exe": - when: - os: windows store: steam @@ -22191,31 +22271,31 @@ Alchemyland: installDir: Alchemyland: {} launch: - /alchemyland.app: + "/alchemyland.app": - when: - os: mac store: steam - /alchemyland.exe: + "/alchemyland.exe": - when: - os: windows store: steam - /alchemyland.sh: + "/alchemyland.sh": - when: - os: linux store: steam steam: id: 610670 -'Alcyone: The Last City': +"Alcyone: The Last City": steam: id: 1074830 -Alder's Blood: +"Alder's Blood": files: - /AppData/LocalLow/Shockwork Games/Alder's Blood/Saves: + "/AppData/LocalLow/Shockwork Games/Alder's Blood/Saves": tags: - save when: - os: windows - /AppData/LocalLow/Shockwork Games/Alder's Blood/config.data: + "/AppData/LocalLow/Shockwork Games/Alder's Blood/config.data": tags: - config when: @@ -22223,14 +22303,14 @@ Alder's Blood: gog: id: 1164879863 installDir: - Alder's Blood: {} + "Alder's Blood": {} launch: - /Alder's Blood.exe: + "/Alder's Blood.exe": - when: - os: windows store: steam registry: - HKEY_CURRENT_USER/Software/Shockwork Games/Alder's Blood: + "HKEY_CURRENT_USER/Software/Shockwork Games/Alder's Blood": tags: - config steam: @@ -22239,7 +22319,7 @@ Aldred Knight: installDir: Aldred Knight: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -22249,7 +22329,7 @@ Alea: installDir: Alea: {} launch: - /Alea.exe: + "/Alea.exe": - when: - os: windows store: steam @@ -22266,34 +22346,34 @@ Alea Jacta Est: installDir: Alea Jacta Est: {} launch: - /autorun.exe: + "/autorun.exe": - when: - store: steam steam: id: 313660 -Aleesha's Tower: +"Aleesha's Tower": installDir: - Aleesha's Tower: {} + "Aleesha's Tower": {} launch: - /Aleesha's Tower.exe: + "/Aleesha's Tower.exe": - when: - os: windows store: steam steam: id: 1130590 -Alekhine's Gun: +"Alekhine's Gun": files: - /My Games/AlekhinesGun/Profiles: + "/My Games/AlekhinesGun/Profiles": tags: - save when: - os: windows - /My Games/AlekhinesGun/settings.scg: + "/My Games/AlekhinesGun/settings.scg": tags: - config when: - os: windows - /My Games/AlekhinesGun/smersh.shadvs: + "/My Games/AlekhinesGun/smersh.shadvs": tags: - config when: @@ -22301,21 +22381,21 @@ Alekhine's Gun: gog: id: 1242327312 installDir: - Alekhine's Gun: {} + "Alekhine's Gun": {} launch: - /AlekhinesGun.exe: + "/AlekhinesGun.exe": - when: - store: steam steam: id: 406720 Alekon: files: - /Alekon/Saved/Config/WindowsNoEditor: + "/Alekon/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /Alekon/Saved/SaveGame: + "/Alekon/Saved/SaveGame": tags: - save when: @@ -22323,7 +22403,7 @@ Alekon: installDir: Alekon: {} launch: - /Alekon.exe: + "/Alekon.exe": - when: - bit: 64 os: windows @@ -22335,19 +22415,19 @@ Aleph Null: AlephNull: {} steam: id: 511420 -'Alert: Sector 8': +"Alert: Sector 8": files: - /CIAS8PC/Saved/Config/WindowsNoEditor: + "/CIAS8PC/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /CIAS8PC/Saved/SaveGames/GameSave.sav: + "/CIAS8PC/Saved/SaveGames/GameSave.sav": tags: - save when: - os: windows - /CIAS8PC/Saved/SaveGames/settings.sav: + "/CIAS8PC/Saved/SaveGames/settings.sav": tags: - config when: @@ -22356,42 +22436,42 @@ Ales Dash: installDir: AlesDash: {} launch: - /AlesDash.exe: - - arguments: '-screen-height720 -screen-width1280' + "/AlesDash.exe": + - arguments: "-screen-height720 -screen-width1280" when: - os: windows store: steam steam: id: 865130 -'Aleshar: The World of Ice': +"Aleshar: The World of Ice": files: - /*.SAV: + "/*.SAV": tags: - save when: - os: dos - /SBOARD.CFG: + "/SBOARD.CFG": tags: - config when: - os: dos Alex Builds His Farm: files: - /Gamedata/SaveGame: + "/Gamedata/SaveGame": tags: - save when: - os: windows - /UbiSoft/ubi.ini: + "/UbiSoft/ubi.ini": tags: - config when: - os: windows -'Alex Hunter: Lord of the Mind': +"Alex Hunter: Lord of the Mind": installDir: Alex Hunter Lord of the Mind: {} launch: - /AlexHunterLordOfTheMindPlatinum.exe: + "/AlexHunterLordOfTheMindPlatinum.exe": - when: - os: windows store: steam @@ -22399,7 +22479,7 @@ Alex Builds His Farm: id: 1120800 Alex Kidd in Miracle World DX: files: - /AppData/LocalLow/Merge Games/Alex Kidd in Miracle World DX/savedata: + "/AppData/LocalLow/Merge Games/Alex Kidd in Miracle World DX/savedata": tags: - save when: @@ -22407,7 +22487,7 @@ Alex Kidd in Miracle World DX: installDir: Alex Kidd in Miracle World DX: {} launch: - /Alex Kidd in Miracle World DX.exe: + "/Alex Kidd in Miracle World DX.exe": - when: - os: windows store: steam @@ -22415,33 +22495,33 @@ Alex Kidd in Miracle World DX: id: 1333470 Alex Kidd in the Enchanted Castle: files: - /SEGA Genesis Classics/0011: + "/SEGA Genesis Classics/0011": tags: - save when: - os: windows - /SEGA Genesis Classics/setup.dat: + "/SEGA Genesis Classics/setup.dat": tags: - config when: - os: windows - /SEGA Mega Drive Classics/0011: + "/SEGA Mega Drive Classics/0011": tags: - save when: - os: windows - /SEGA Mega Drive Classics/setup.dat: + "/SEGA Mega Drive Classics/setup.dat": tags: - config when: - os: windows steam: id: 34283 -Alexa's Wild Night: +"Alexa's Wild Night": installDir: Alexas Wild Night: {} launch: - /AlexasWildNight.exe: + "/AlexasWildNight.exe": - when: - os: windows store: steam @@ -22451,7 +22531,7 @@ Alexia Crow and the Cave of Heroes: installDir: Alexia Crow: {} launch: - /Alexia.exe: + "/Alexia.exe": - when: - os: windows store: steam @@ -22461,7 +22541,7 @@ Alexio: installDir: Alexio: {} launch: - /Alexio.exe: + "/Alexio.exe": - when: - os: windows store: steam @@ -22471,29 +22551,29 @@ Alfelus: installDir: Alfelus: {} launch: - /Alfelus.exe: + "/Alfelus.exe": - when: - os: windows store: steam steam: id: 1126590 -Alfonzo's Arctic Adventure: +"Alfonzo's Arctic Adventure": installDir: - Alfonzo's Arctic Adventure: {} + "Alfonzo's Arctic Adventure": {} launch: - /AlfonzoGame.exe: + "/AlfonzoGame.exe": - when: - os: windows store: steam steam: id: 1170170 -'Alfred Hitchcock: Vertigo': +"Alfred Hitchcock: Vertigo": gog: id: 2143043899 installDir: Vertigo: {} launch: - /Vertigo.exe: + "/Vertigo.exe": - when: - os: windows store: steam @@ -22503,20 +22583,20 @@ Algae: installDir: Algae: {} launch: - /Algae.app/Contents/MacOS/Algae: + "/Algae.app/Contents/MacOS/Algae": - when: - os: mac store: steam - /Algae.exe: + "/Algae.exe": - when: - os: windows store: steam - /Algae.x86: + "/Algae.x86": - when: - bit: 32 os: linux store: steam - /Algae.x86_64: + "/Algae.x86_64": - when: - bit: 64 os: linux @@ -22527,7 +22607,7 @@ Alganon: installDir: Alganon: {} launch: - /Alganon.exe: + "/Alganon.exe": - when: - os: windows store: steam @@ -22535,12 +22615,12 @@ Alganon: id: 350660 Algo Bot: files: - /AppData/LocalLow/Fishing Cactus/Algobot/Game/Default/save.bin: + "/AppData/LocalLow/Fishing Cactus/Algobot/Game/Default/save.bin": tags: - save when: - os: windows - /Library/Preferences/unity.FishingCactus.Algobot.plist: + "/Library/Preferences/unity.FishingCactus.Algobot.plist": tags: - config when: @@ -22548,20 +22628,20 @@ Algo Bot: installDir: AlgoBot: {} launch: - /Algobot.app/Contents/MacOS/Algobot: + "/Algobot.app/Contents/MacOS/Algobot": - when: - os: mac store: steam - /Algobot.exe: + "/Algobot.exe": - when: - os: windows store: steam - /Algobot.x86: + "/Algobot.x86": - when: - bit: 32 os: linux store: steam - /Algobot.x86_64: + "/Algobot.x86_64": - when: - bit: 64 os: linux @@ -22576,7 +22656,7 @@ Algorithm: installDir: Algorithm: {} launch: - /game.exe: + "/game.exe": - when: - bit: 64 os: windows @@ -22587,32 +22667,32 @@ Algotica - Iteration 1: installDir: Algotica Iterations: {} launch: - /Algotica Iterations.app: + "/Algotica Iterations.app": - when: - os: mac store: steam - /Algotica Iterations.exe: + "/Algotica Iterations.exe": - when: - os: windows store: steam - /Algotica Iterations.x86: + "/Algotica Iterations.x86": - when: - os: linux store: steam steam: id: 593330 -Alia's Carnival!: +"Alia's Carnival!": installDir: aliascarnival: {} launch: - /ALIAsCARNIVAL.exe: + "/ALIAsCARNIVAL.exe": - when: - store: steam steam: id: 1094530 Alias: files: - /Acclaim Entertainment/Alias: + "/Acclaim Entertainment/Alias": tags: - save when: @@ -22621,14 +22701,14 @@ Alias: HKEY_CURRENT_USER/Software/Acclaim/Alias: tags: - config -'Alias: Underground': +"Alias: Underground": files: - home/Trimorph/client/browser.cfg: + "home/Trimorph/client/browser.cfg": tags: - config when: - os: windows - home/Trimorph/client/gameProperties.cfg: + "home/Trimorph/client/gameProperties.cfg": tags: - save when: @@ -22637,7 +22717,7 @@ Alice - Behind the Mirror: installDir: Alice - Behind the Mirror: {} launch: - /Alice2.exe: + "/Alice2.exe": - when: - os: windows store: steam @@ -22645,12 +22725,12 @@ Alice - Behind the Mirror: id: 835700 Alice Greenfingers: files: - /resume.bin: + "/resume.bin": tags: - save when: - os: windows - /settings.bin: + "/settings.bin": tags: - config when: @@ -22664,11 +22744,11 @@ Alice Must Find the Key to Escape: installDir: Alice Must Find The Key To Escape: {} launch: - /Alice Must Find The Key To Escape.app: + "/Alice Must Find The Key To Escape.app": - when: - os: mac store: steam - /Alice Must Find The Key To Escape.exe: + "/Alice Must Find The Key To Escape.exe": - when: - os: windows store: steam @@ -22676,12 +22756,12 @@ Alice Must Find the Key to Escape: id: 816030 Alice Mystery Garden: files: - /AliceMysteryGarden/Saved/Config/WindowsNoEditor: + "/AliceMysteryGarden/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /AliceMysteryGarden/Saved/SaveGames: + "/AliceMysteryGarden/Saved/SaveGames": tags: - save when: @@ -22694,7 +22774,7 @@ Alice Sisters: installDir: Alice Sisters: {} launch: - /AliceSisters.exe: + "/AliceSisters.exe": - when: - os: windows store: steam @@ -22702,12 +22782,12 @@ Alice Sisters: id: 1246540 Alice VR: files: - /ALICE/Saved/Config/WindowsNoEditor: + "/ALICE/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /ALICE/Saved/SaveGames: + "/ALICE/Saved/SaveGames": tags: - save when: @@ -22717,13 +22797,13 @@ Alice VR: installDir: ALICE VR: {} launch: - /ALICE.exe: - - arguments: '-target 1' + "/ALICE.exe": + - arguments: "-target 1" when: - bit: 64 os: windows store: steam - /ALICE.sh: + "/ALICE.sh": - when: - bit: 64 os: linux @@ -22734,7 +22814,7 @@ Alice and You in the Planet of Numbers: installDir: AliceAndYouInThePlanetOfNumber: {} launch: - /AaY_InThePlanetOfNumber.exe: + "/AaY_InThePlanetOfNumber.exe": - when: - store: steam steam: @@ -22743,7 +22823,7 @@ Alice in CyberCity: installDir: Alice in CyberCity: {} launch: - /Alice in CyberCity.exe: + "/Alice in CyberCity.exe": - when: - os: windows store: steam @@ -22751,17 +22831,17 @@ Alice in CyberCity: id: 1072000 Alice in Stardom: files: - /game/saves/*.save: + "/game/saves/*.save": tags: - save when: - os: windows - /renpy/config.py: + "/renpy/config.py": tags: - config when: - os: windows - /renpy/AliceinStardom-1551500018/*.save: + "/renpy/AliceinStardom-1551500018/*.save": tags: - save when: @@ -22769,7 +22849,7 @@ Alice in Stardom: installDir: Alice in Stardom: {} launch: - /AliceinStardom.exe: + "/AliceinStardom.exe": - when: - os: windows store: steam @@ -22777,7 +22857,7 @@ Alice in Stardom: id: 1054560 Alice in Wonderland: files: - /Disney Interactive Studios/Alice: + "/Disney Interactive Studios/Alice": tags: - save when: @@ -22785,7 +22865,7 @@ Alice in Wonderland: installDir: Alice in Wonderland: {} launch: - /Alice.exe: + "/Alice.exe": - when: - store: steam steam: @@ -22794,11 +22874,11 @@ Alice in Wonderland - 3D Labyrinth Game: installDir: Alice in Wonderland - 3D Game: {} launch: - /Alice in wonderland 3D - IOS.app: + "/Alice in wonderland 3D - IOS.app": - when: - os: mac store: steam - /Alice in wonderland 3D - Win.exe: + "/Alice in wonderland 3D - Win.exe": - when: - os: windows store: steam @@ -22808,83 +22888,83 @@ Alice in Wonderland - Hidden Objects: installDir: Alice in Wonderland - Hidden Objects: {} launch: - /Alice.exe: + "/Alice.exe": - when: - os: windows store: steam steam: id: 812110 -Alice's Adventures. Hidden Object: +"Alice's Adventures. Hidden Object": installDir: - Alice's Adventures: {} + "Alice's Adventures": {} launch: - /Alice's Adventures.app: + "/Alice's Adventures.app": - when: - os: mac store: steam - /Alices Adventures.exe: + "/Alices Adventures.exe": - when: - os: windows store: steam steam: id: 839670 -Alice's Jigsaw. Wonderland Chronicles: +"Alice's Jigsaw. Wonderland Chronicles": installDir: - Alice's Jigsaw. Wonderland Chronicles: {} + "Alice's Jigsaw. Wonderland Chronicles": {} launch: - /Alice's Jigsaw. Wonderland Chronicles.exe: + "/Alice's Jigsaw. Wonderland Chronicles.exe": - when: - os: windows store: steam steam: id: 1034380 -Alice's Jigsaw. Wonderland Chronicles 2: +"Alice's Jigsaw. Wonderland Chronicles 2": installDir: - Alice's Jigsaw. Wonderland Chronicles 2: {} + "Alice's Jigsaw. Wonderland Chronicles 2": {} launch: - /Alice's Jigsaw. Wonderland Chronicles 2.exe: + "/Alice's Jigsaw. Wonderland Chronicles 2.exe": - when: - os: windows store: steam steam: id: 1034390 -Alice's Mom's Rescue: +"Alice's Mom's Rescue": installDir: AliceMomRescue: {} launch: - /AliceMomRescue.exe: + "/AliceMomRescue.exe": - when: - os: windows store: steam steam: id: 399260 -Alice's Patchwork: +"Alice's Patchwork": installDir: - Alice's Patchwork: {} + "Alice's Patchwork": {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam steam: id: 444280 -Alice's Patchworks 2: +"Alice's Patchworks 2": installDir: - Alice's Patchworks 2: {} + "Alice's Patchworks 2": {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: id: 523160 -'Alice: Madness Returns': +"Alice: Madness Returns": files: - /My Games/Alice Madness Returns/AliceGame/CheckPoint: + "/My Games/Alice Madness Returns/AliceGame/CheckPoint": tags: - save when: - os: windows - /My Games/Alice Madness Returns/AliceGame/Config: + "/My Games/Alice Madness Returns/AliceGame/Config": tags: - config when: @@ -22892,24 +22972,24 @@ Alice's Patchworks 2: installDir: Alice Madness Returns: {} launch: - /Binaries/Win32/AliceMadnessReturns.exe: + "/Binaries/Win32/AliceMadnessReturns.exe": - when: - store: steam steam: id: 19680 Alicemare: files: - /Save/SaveData*.sav: + "/Save/SaveData*.sav": tags: - save when: - os: windows - /Save/System.sav: + "/Save/System.sav": tags: - save when: - os: windows - /System/Game.ini: + "/System/Game.ini": tags: - config when: @@ -22917,7 +22997,7 @@ Alicemare: installDir: Alicemare: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -22927,91 +23007,91 @@ Alicia Griffith - Lakeside Murder: installDir: Alicia Griffith – Lakeside Murder: {} launch: - /Alicia Griffith - Lakeside Murder.exe: + "/Alicia Griffith - Lakeside Murder.exe": - when: - os: windows store: steam - /Alicia_Griffith-Lakeside_Murder.app/Contents/MacOS/MyScript: + "/Alicia_Griffith-Lakeside_Murder.app/Contents/MacOS/MyScript": - when: - os: mac store: steam steam: id: 569380 -'Alicia Quatermain 2: The Stone of Fate': +"Alicia Quatermain 2: The Stone of Fate": installDir: Alicia Quatermain and the Stone of Fate: {} launch: - /AliciaQuatermain2_CE.app: + "/AliciaQuatermain2_CE.app": - when: - os: mac store: steam - /AliciaQuatermain2_CE.exe: + "/AliciaQuatermain2_CE.exe": - when: - os: windows store: steam steam: id: 667040 -'Alicia Quatermain 3: The Mystery of the Flaming Gold': +"Alicia Quatermain 3: The Mystery of the Flaming Gold": installDir: Alicia Quatermain and Mystery of the Flaming Gold: {} launch: - /AliciaQuatermain3_CE.app: + "/AliciaQuatermain3_CE.app": - when: - os: mac store: steam - /AliciaQuatermain3_CE.exe: + "/AliciaQuatermain3_CE.exe": - when: - os: windows store: steam steam: id: 818030 -'Alicia Quatermain 4: Da Vinci and the Time Machine': +"Alicia Quatermain 4: Da Vinci and the Time Machine": installDir: Alicia Quatermain 4 Da Vinci and the Time Machine: {} launch: - /AliciaQuatermain4_STEAM.exe: + "/AliciaQuatermain4_STEAM.exe": - when: - os: windows store: steam - /AliciaQuatermain4_STEAM_EN.app: + "/AliciaQuatermain4_STEAM_EN.app": - when: - os: mac store: steam steam: id: 1020080 -'Alicia Quatermain: Secrets of the Lost Treasures': +"Alicia Quatermain: Secrets of the Lost Treasures": installDir: Alicia Quatermain Secrets Of The Lost Treasures: {} launch: - /AliciaQuatermain_CE.app: + "/AliciaQuatermain_CE.app": - when: - os: mac store: steam - /AliciaQuatermain_CE.exe: + "/AliciaQuatermain_CE.exe": - when: - os: windows store: steam - /AliciaQuatermain_CE.x86: + "/AliciaQuatermain_CE.x86": - when: - bit: 32 os: linux store: steam - /AliciaQuatermain_CE.x86_64: + "/AliciaQuatermain_CE.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 646470 -'Alien Arena: Warriors of Mars': +"Alien Arena: Warriors of Mars": installDir: AAWoM: {} launch: - /aaswlaunch.exe: + "/aaswlaunch.exe": - when: - os: windows store: steam - /aawom.sh: + "/aawom.sh": - when: - os: linux store: steam @@ -23021,17 +23101,17 @@ Alien Attack in Space: installDir: ZVEZDOLIOTIK: {} launch: - /AAIS.exe: + "/AAIS.exe": - when: - os: windows store: steam steam: id: 391310 -'Alien Attack: Pocket Edition': +"Alien Attack: Pocket Edition": installDir: AAPE: {} launch: - /AAPE.exe: + "/AAPE.exe": - when: - store: steam steam: @@ -23040,15 +23120,15 @@ Alien Blitz: installDir: Alien Blitz: {} launch: - /alien-blitz.exe: + "/alien-blitz.exe": - when: - os: windows store: steam - /alienblitz.command: + "/alienblitz.command": - when: - os: mac store: steam - /alienblitz.sh: + "/alienblitz.sh": - when: - os: linux store: steam @@ -23057,14 +23137,14 @@ Alien Blitz: Alien Breed: gog: id: 1207658988 -'Alien Breed 2: Assault': +"Alien Breed 2: Assault": files: - /My Games/UnrealEngine3/AlienBreed2AssaultGame/Config: + "/My Games/UnrealEngine3/AlienBreed2AssaultGame/Config": tags: - config when: - os: windows - /My Games/UnrealEngine3/AlienBreed2AssaultGame/SaveData: + "/My Games/UnrealEngine3/AlienBreed2AssaultGame/SaveData": tags: - save when: @@ -23074,19 +23154,19 @@ Alien Breed: installDir: Alien Breed 2 Assault: {} launch: - /Binaries/AlienBreed2Assault.exe: + "/Binaries/AlienBreed2Assault.exe": - when: - store: steam steam: id: 22650 -'Alien Breed 3: Descent': +"Alien Breed 3: Descent": files: - /My Games/UnrealEngine3/AlienBreed3DescentGame/Config: + "/My Games/UnrealEngine3/AlienBreed3DescentGame/Config": tags: - config when: - os: windows - /My Games/UnrealEngine3/AlienBreed3DescentGame/SaveData: + "/My Games/UnrealEngine3/AlienBreed3DescentGame/SaveData": tags: - save when: @@ -23096,19 +23176,19 @@ Alien Breed: installDir: Alien Breed 3 Descent: {} launch: - /Binaries/AlienBreed3Descent.exe: + "/Binaries/AlienBreed3Descent.exe": - when: - store: steam steam: id: 22670 -'Alien Breed: Impact': +"Alien Breed: Impact": files: - /My Games/UnrealEngine3/AlienBreedEp1Game/Config: + "/My Games/UnrealEngine3/AlienBreedEp1Game/Config": tags: - config when: - os: windows - /My Games/UnrealEngine3/AlienBreedEp1Game/SaveData: + "/My Games/UnrealEngine3/AlienBreedEp1Game/SaveData": tags: - save when: @@ -23118,19 +23198,19 @@ Alien Breed: installDir: Alien Breed Impact: {} launch: - /Binaries/AlienBreed-Impact.exe: + "/Binaries/AlienBreed-Impact.exe": - when: - store: steam steam: id: 22610 -'Alien Breed: Tower Assault': +"Alien Breed: Tower Assault": files: - /tower/highscores.dat: + "/tower/highscores.dat": tags: - save when: - os: dos - /tower/ta.cfg: + "/tower/ta.cfg": tags: - config when: @@ -23142,34 +23222,34 @@ Alien Bubble Destroyer: id: 779310 Alien Cabal: files: - /AC95****.ACG: + "/AC95****.ACG": tags: - save when: - os: windows - /ACABAL.CFG: + "/ACABAL.CFG": tags: - config when: - os: dos - /Acabal.ini: + "/Acabal.ini": tags: - config when: - os: windows - /SAVE****.ACG: + "/SAVE****.ACG": tags: - save when: - os: dos Alien Carnage: files: - /HARRY.CFG: + "/HARRY.CFG": tags: - config when: - os: dos - /SLOT.*: + "/SLOT.*": tags: - save when: @@ -23177,33 +23257,33 @@ Alien Carnage: installDir: Alien Carnage Halloween Harry: {} launch: - /Alien Carnage.app: + "/Alien Carnage.app": - when: - os: mac store: steam - /Alien Carnage/Dosbox/dosbox.exe: - - arguments: '-conf \"..\\Carnage.conf\" -noconsole -c' + "/Alien Carnage/Dosbox/dosbox.exe": + - arguments: "-conf \\\"..\\\\Carnage.conf\\\" -noconsole -c" when: - os: windows store: steam - workingDir: /Alien Carnage/Dosbox - /Dosbox/dosbox: - - arguments: '-conf \"..\\CARNAGE.conf\" -noconsole -c' + workingDir: "/Alien Carnage/Dosbox" + "/Dosbox/dosbox": + - arguments: "-conf \\\"..\\\\CARNAGE.conf\\\" -noconsole -c" when: - os: linux store: steam - workingDir: /Dosbox + workingDir: "/Dosbox" steam: id: 358280 Alien Cow Farm: installDir: Alien Cow Farm: {} launch: - /Alien Cow Farm.app/Contents/MacOS/Alien Cow Farm: + "/Alien Cow Farm.app/Contents/MacOS/Alien Cow Farm": - when: - os: mac store: steam - /Alien Cow Farm.exe: + "/Alien Cow Farm.exe": - when: - os: windows store: steam @@ -23213,7 +23293,7 @@ Alien Creatures: installDir: Alien Creatures: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -23223,7 +23303,7 @@ Alien Crusader: installDir: Alien Crusader: {} launch: - /ac.exe: + "/ac.exe": - when: - os: windows store: steam @@ -23235,7 +23315,7 @@ Alien Earth: installDir: Alien Earth: {} launch: - /Alien.exe: + "/Alien.exe": - when: - store: steam steam: @@ -23244,7 +23324,7 @@ Alien Escape: installDir: Alien Escape: {} launch: - /AlienEscape.exe: + "/AlienEscape.exe": - when: - store: steam steam: @@ -23256,7 +23336,7 @@ Alien Food Frenzy: id: 765290 Alien Hallway: files: - /Sigma Team/Alien Hallway: + "/Sigma Team/Alien Hallway": tags: - config - save @@ -23265,7 +23345,7 @@ Alien Hallway: installDir: Alien Hallway: {} launch: - /preloader.exe: + "/preloader.exe": - when: - os: windows store: steam @@ -23275,7 +23355,7 @@ Alien Hallway 2: installDir: Alien Hallway 2: {} launch: - /AlienHallway.exe: + "/AlienHallway.exe": - when: - os: windows store: steam @@ -23291,7 +23371,7 @@ Alien Hostage: installDir: Alien Hostage: {} launch: - /Alien Hostage.exe: + "/Alien Hostage.exe": - when: - os: windows store: steam @@ -23301,7 +23381,7 @@ Alien Hunt 3D: installDir: Alien Hunt 3D: {} launch: - /Alien Hunt 3D.exe: + "/Alien Hunt 3D.exe": - when: - os: windows store: steam @@ -23311,16 +23391,16 @@ Alien Infection: installDir: Alien Infection: {} launch: - /Alien Infection.app: + "/Alien Infection.app": - when: - os: mac store: steam - /Alien Infection.exe: + "/Alien Infection.exe": - when: - bit: 64 os: windows store: steam - /Alien Infection.x86_64: + "/Alien Infection.x86_64": - when: - bit: 64 os: linux @@ -23331,7 +23411,7 @@ Alien Insanity: installDir: Alien Insanity: {} launch: - /Alien Insanity.exe: + "/Alien Insanity.exe": - when: - os: windows store: steam @@ -23344,7 +23424,7 @@ Alien Invaders from the Planet Plorth: installDir: Alien Invaders from the Planet Plorth: {} launch: - /Alien Invaders from the Planet Plorth.exe: + "/Alien Invaders from the Planet Plorth.exe": - when: - os: windows store: steam @@ -23354,7 +23434,7 @@ Alien Invasion 3D part 2: installDir: Alien Invasion 3D part 2: {} launch: - /AlienInvasion3dP2.exe: + "/AlienInvasion3dP2.exe": - when: - bit: 64 os: windows @@ -23365,7 +23445,7 @@ Alien Invasion 3d: installDir: Alien Invasion 3d: {} launch: - /AlienInvasion3D.exe: + "/AlienInvasion3D.exe": - when: - bit: 64 os: windows @@ -23376,25 +23456,25 @@ Alien Invasion Tower Defense: installDir: Alien Invasion Tower Defense: {} launch: - /tdmacbuild.app: + "/tdmacbuild.app": - when: - os: mac store: steam - /tdpcbuild.exe: + "/tdpcbuild.exe": - when: - os: windows store: steam steam: id: 547880 -'Alien Jelly: Food For Thought!': +"Alien Jelly: Food For Thought!": installDir: AlienJellyFoodForThought: {} launch: - /AlienJelly.app: + "/AlienJelly.app": - when: - os: mac store: steam - /AlienJelly.exe: + "/AlienJelly.exe": - when: - os: windows store: steam @@ -23404,7 +23484,7 @@ Alien Kingdom: installDir: Alien Kingdom: {} launch: - /AlienKingdom.exe: + "/AlienKingdom.exe": - when: - os: windows store: steam @@ -23414,7 +23494,7 @@ Alien League: installDir: Alien League: {} launch: - /Alien League.exe: + "/Alien League.exe": - when: - os: windows store: steam @@ -23422,19 +23502,19 @@ Alien League: id: 1024540 Alien Legacy: files: - /SAVES: + "/SAVES": tags: - save when: - os: dos -'Alien Logic: A Skyrealms of Jorune Adventure': +"Alien Logic: A Skyrealms of Jorune Adventure": files: - /GAMES.SAV: + "/GAMES.SAV": tags: - save when: - os: dos - /SAVE**.GAM: + "/SAVE**.GAM": tags: - save when: @@ -23443,7 +23523,7 @@ Alien Mayhem: installDir: Alien Mayhem: {} launch: - /WIN_Alien_Mayhem/Alien Mayhem.exe: + "/WIN_Alien_Mayhem/Alien Mayhem.exe": - when: - os: windows store: steam @@ -23453,19 +23533,19 @@ Alien Monopoly: installDir: Alien Monopoly: {} launch: - /Alien Monopoly.exe: + "/Alien Monopoly.exe": - when: - store: steam steam: id: 1137210 Alien Nations: files: - /Savegames: + "/Savegames": tags: - save when: - os: windows - /Savegames/an.cfg: + "/Savegames/an.cfg": tags: - config when: @@ -23476,20 +23556,20 @@ Alien Planet: installDir: Alien Planet: {} launch: - /AlienPlanet.app: + "/AlienPlanet.app": - when: - os: mac store: steam - /AlienPlanet.exe: + "/AlienPlanet.exe": - when: - os: windows store: steam - /AlienPlanet.x86: + "/AlienPlanet.x86": - when: - bit: 32 os: linux store: steam - /AlienPlanet.x86_64: + "/AlienPlanet.x86_64": - when: - bit: 64 os: linux @@ -23498,17 +23578,17 @@ Alien Planet: id: 740450 Alien Rage - Unlimited: files: - /My Games/AlienRage/Multiplayer/ARageMPGame/Config: + "/My Games/AlienRage/Multiplayer/ARageMPGame/Config": tags: - config when: - os: windows - /My Games/AlienRage/SinglePlayer/AFEARGame/Config: + "/My Games/AlienRage/SinglePlayer/AFEARGame/Config": tags: - config when: - os: windows - /My Games/AlienRage/SinglePlayer/AFEARGame/SaveData: + "/My Games/AlienRage/SinglePlayer/AFEARGame/SaveData": tags: - save when: @@ -23516,21 +23596,21 @@ Alien Rage - Unlimited: installDir: AlienRage: {} launch: - /Multiplayer/Binaries/Win32/ARageMP.exe: + "/Multiplayer/Binaries/Win32/ARageMP.exe": - when: - os: windows store: steam - workingDir: /Multiplayer/Binaries/Win32 - /Singleplayer/Binaries/Win32/ShippingPC-AFEARGame.exe: + workingDir: "/Multiplayer/Binaries/Win32" + "/Singleplayer/Binaries/Win32/ShippingPC-AFEARGame.exe": - when: - os: windows store: steam - workingDir: /Singleplayer/Binaries/Win32 + workingDir: "/Singleplayer/Binaries/Win32" steam: id: 217920 Alien Rampage: files: - /RAMPAGE.CFG: + "/RAMPAGE.CFG": tags: - save when: @@ -23540,31 +23620,31 @@ Alien Rampage: installDir: Alien Rampage: {} launch: - /DOSBox.app/Contents/MacOS/DOSBox: - - arguments: '-conf ../Conf/rampage.cfg -noconsole' + "/DOSBox.app/Contents/MacOS/DOSBox": + - arguments: "-conf ../Conf/rampage.cfg -noconsole" when: - os: mac store: steam - workingDir: /DOS - /dosbox: - - arguments: '-conf ../Conf/rampage.cfg -noconsole' + workingDir: "/DOS" + "/dosbox": + - arguments: "-conf ../Conf/rampage.cfg -noconsole" when: - os: linux store: steam - workingDir: /DOS - /dosbox.exe: - - arguments: '-conf ../Conf/rampage.cfg -noconsole' + workingDir: "/DOS" + "/dosbox.exe": + - arguments: "-conf ../Conf/rampage.cfg -noconsole" when: - os: windows store: steam - workingDir: /DOS + workingDir: "/DOS" steam: id: 516440 Alien Removal Division: installDir: ARD: {} launch: - /ARD.exe: + "/ARD.exe": - when: - bit: 64 os: windows @@ -23575,7 +23655,7 @@ Alien Revival - Episode 1 - Duty Calls: installDir: Alien Revival: {} launch: - /Lobby.exe: + "/Lobby.exe": - when: - os: windows store: steam @@ -23585,15 +23665,15 @@ Alien Robot Monsters: installDir: Alien Robot Monsters: {} launch: - /Alien Robot Monsters.app: + "/Alien Robot Monsters.app": - when: - os: mac store: steam - /linux_arm.x86: + "/linux_arm.x86": - when: - os: linux store: steam - /win_arm.exe: + "/win_arm.exe": - when: - os: windows store: steam @@ -23604,7 +23684,7 @@ Alien Run: id: 485410 Alien Shooter: files: - /AlienShooter.cfg: + "/AlienShooter.cfg": tags: - config when: @@ -23614,7 +23694,7 @@ Alien Shooter: installDir: Alien Shooter: {} launch: - /AlienShooter.exe: + "/AlienShooter.exe": - when: - store: steam registry: @@ -23626,14 +23706,14 @@ Alien Shooter: - save steam: id: 33100 -'Alien Shooter 2: Conscription': +"Alien Shooter 2: Conscription": files: - /AlienShooter2 Conscription Saves/Saves: + "/AlienShooter2 Conscription Saves/Saves": tags: - save when: - os: windows - /AlienShooter2 Conscription Saves/Saves/_global.dat: + "/AlienShooter2 Conscription Saves/Saves/_global.dat": tags: - config when: @@ -23641,20 +23721,20 @@ Alien Shooter: installDir: Alien Shooter 2 Conscription: {} launch: - /AlienShooter.exe: + "/AlienShooter.exe": - when: - os: windows store: steam steam: id: 211010 -'Alien Shooter 2: Reloaded': +"Alien Shooter 2: Reloaded": files: - /AlienShooter2 Reloaded Saves/Saves: + "/AlienShooter2 Reloaded Saves/Saves": tags: - save when: - os: windows - /AlienShooter2 Reloaded Saves/Saves/_global.dat: + "/AlienShooter2 Reloaded Saves/Saves/_global.dat": tags: - config when: @@ -23664,16 +23744,16 @@ Alien Shooter: installDir: Alien Shooter 2 - Reloaded: {} launch: - /AlienShooter.exe: + "/AlienShooter.exe": - when: - store: steam steam: id: 33120 -'Alien Shooter 2: The Legend': +"Alien Shooter 2: The Legend": installDir: Alien Shooter 2 - The Legend: {} launch: - /AlienShooter.exe: + "/AlienShooter.exe": - when: - os: windows store: steam @@ -23683,7 +23763,7 @@ Alien Shooter TD: installDir: AlienShooterTD: {} launch: - /AlienShooterSteam.exe: + "/AlienShooterSteam.exe": - when: - os: windows store: steam @@ -23694,9 +23774,9 @@ Alien Shooter in Space Cradle - Virtual Reality: Alien Shooter in Space Cradle - Virtual Reality: {} steam: id: 1110870 -'Alien Shooter: Revisited': +"Alien Shooter: Revisited": files: - /AlienShooter Revisited Saves: + "/AlienShooter Revisited Saves": tags: - config - save @@ -23705,16 +23785,16 @@ Alien Shooter in Space Cradle - Virtual Reality: installDir: Alien Shooter - Revisited: {} launch: - /AlienShooter.exe: + "/AlienShooter.exe": - when: - store: steam steam: id: 33110 -'Alien Shooter: Vengeance': +"Alien Shooter: Vengeance": installDir: Alien Shooter Vengeance: {} launch: - /AlienShooter.exe: + "/AlienShooter.exe": - when: - store: steam steam: @@ -23724,12 +23804,12 @@ Alien Simulator: id: 1160730 Alien Sky: files: - /MP.cdf: + "/MP.cdf": tags: - save when: - os: windows - /Save.cdf: + "/Save.cdf": tags: - save when: @@ -23740,22 +23820,22 @@ Alien Sky: - config Alien Soldier: files: - /SEGA Genesis Classics/0034: + "/SEGA Genesis Classics/0034": tags: - save when: - os: windows - /SEGA Genesis Classics/setup.dat: + "/SEGA Genesis Classics/setup.dat": tags: - config when: - os: windows - /SEGA Mega Drive Classics/0034: + "/SEGA Mega Drive Classics/0034": tags: - save when: - os: windows - /SEGA Mega Drive Classics/setup.dat: + "/SEGA Mega Drive Classics/setup.dat": tags: - config when: @@ -23766,11 +23846,11 @@ Alien Spidy: installDir: Alien Spidy: {} launch: - /Alien Spidy.app: + "/Alien Spidy.app": - when: - os: mac store: steam - /AlienSpidy.exe: + "/AlienSpidy.exe": - when: - os: windows store: steam @@ -23780,7 +23860,7 @@ Alien Splatter Redux: installDir: AlienSplatterRedux: {} launch: - /AlienSplatterRedux.exe: + "/AlienSplatterRedux.exe": - when: - os: windows store: steam @@ -23790,15 +23870,15 @@ Alien Squatter: installDir: Alien Squatter: {} launch: - /asquatter: + "/asquatter": - when: - os: linux store: steam - /asquatter.app: + "/asquatter.app": - when: - os: mac store: steam - /asquatter.exe: + "/asquatter.exe": - when: - os: windows store: steam @@ -23806,22 +23886,22 @@ Alien Squatter: id: 1131750 Alien Storm: files: - /SEGA Genesis Classics/0023: + "/SEGA Genesis Classics/0023": tags: - save when: - os: windows - /SEGA Genesis Classics/setup.dat: + "/SEGA Genesis Classics/setup.dat": tags: - config when: - os: windows - /SEGA Mega Drive Classics/0023: + "/SEGA Mega Drive Classics/0023": tags: - save when: - os: windows - /SEGA Mega Drive Classics/setup.dat: + "/SEGA Mega Drive Classics/setup.dat": tags: - config when: @@ -23830,7 +23910,7 @@ Alien Storm: id: 34315 Alien Swarm: files: - /swarm/cfg: + "/swarm/cfg": tags: - config when: @@ -23838,15 +23918,15 @@ Alien Swarm: installDir: Alien Swarm: {} launch: - /swarm.exe: - - arguments: '-novid +asw_stats_track 1' + "/swarm.exe": + - arguments: "-novid +asw_stats_track 1" when: - store: steam steam: id: 630 -'Alien Swarm: Reactive Drop': +"Alien Swarm: Reactive Drop": files: - /reactivedrop/cfg: + "/reactivedrop/cfg": tags: - config when: @@ -23854,8 +23934,8 @@ Alien Swarm: installDir: Alien Swarm Reactive Drop: {} launch: - /reactivedrop.exe: - - arguments: '-novid' + "/reactivedrop.exe": + - arguments: "-novid" when: - os: windows store: steam @@ -23863,12 +23943,12 @@ Alien Swarm: id: 563560 Alien Trilogy: files: - /TRIL.SG*: + "/TRIL.SG*": tags: - save when: - os: dos - /TRILOGY.CFG: + "/TRILOGY.CFG": tags: - config when: @@ -23877,7 +23957,7 @@ Alien Worms Invasion: installDir: Alien Worms Invasion: {} launch: - /Alien Worms Invasion.exe: + "/Alien Worms Invasion.exe": - when: - os: windows store: steam @@ -23887,7 +23967,7 @@ Alien Zombie Megadeath: installDir: Alien Zombie Megadeath: {} launch: - /AlienZombieMegadeath.exe: + "/AlienZombieMegadeath.exe": - when: - store: steam steam: @@ -23899,42 +23979,43 @@ Alien invasion: installDir: Alien invasion: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam steam: id: 1087040 -'Alien: Isolation': +"Alien: Isolation": files: - /userdata//214490/local: + "/userdata//214490/local": tags: - config when: - store: steam - /userdata//214490/remote: + "/userdata//214490/remote": tags: - save when: - store: steam - /My Games/Alien Isolation: + "/My Games/Alien Isolation": tags: - config - save when: - - store: gog - /The Creative Assembly/Alien Isolation: + - os: windows + store: gog + "/The Creative Assembly/Alien Isolation": tags: - config - save when: - - store: epic - /feral-interactive/AlienIsolation: + - os: windows + "/feral-interactive/AlienIsolation": tags: - config when: - os: linux - /feral-interactive/AlienIsolation/Steam Saves (): + "/feral-interactive/AlienIsolation/Steam Saves ()": tags: - save when: @@ -23955,15 +24036,15 @@ Alien invasion: installDir: Alien Isolation: {} launch: - /AI.exe: + "/AI.exe": - when: - os: windows store: steam - /Alien Isolation.app: + "/Alien Isolation.app": - when: - os: mac store: steam - /AlienIsolation.sh: + "/AlienIsolation.sh": - when: - bit: 64 os: linux @@ -23974,7 +24055,7 @@ AlienAfterlife: installDir: AlienAfterlife: {} launch: - /AlienAfterlife.exe: + "/AlienAfterlife.exe": - when: - bit: 64 os: windows @@ -23985,7 +24066,7 @@ AlienSurvival: installDir: AlienSurvival: {} launch: - /aliensurvival.exe: + "/aliensurvival.exe": - when: - store: steam steam: @@ -23994,7 +24075,7 @@ Alienautics: installDir: Alienautics: {} launch: - /GREXSANDBOX.exe: + "/GREXSANDBOX.exe": - when: - bit: 64 os: windows @@ -24005,7 +24086,7 @@ Aliens Are Rude!: installDir: AliensAreRude106: {} launch: - /AliensAreRude!.exe: + "/AliensAreRude!.exe": - when: - os: windows store: steam @@ -24016,11 +24097,11 @@ Aliens Attack VR: Aliens Attack VR: {} steam: id: 932190 -Aliens Don't Exist: +"Aliens Don't Exist": installDir: - Aliens Don't Exist: {} + "Aliens Don't Exist": {} launch: - /ADE.exe: + "/ADE.exe": - when: - bit: 64 os: windows @@ -24031,15 +24112,15 @@ Aliens Go Home Run: installDir: AGHR: {} launch: - /AGHR.exe: + "/AGHR.exe": - when: - os: windows store: steam - /AGHR.x86: + "/AGHR.x86": - when: - os: linux store: steam - /game.exe: + "/game.exe": - when: - os: mac store: steam @@ -24049,7 +24130,7 @@ Aliens Invaded Our Planet: installDir: ALIENS INVADED OUR PLANET: {} launch: - /AliensInvaded.exe: + "/AliensInvaded.exe": - when: - store: steam steam: @@ -24058,7 +24139,7 @@ Aliens X: installDir: Aliens X: {} launch: - /Alienzix3_0.exe: + "/Alienzix3_0.exe": - when: - os: windows store: steam @@ -24068,7 +24149,7 @@ Aliens and Umbrellas: installDir: Aliens and Umbrellas: {} launch: - /AliensAndUmbrellas.exe: + "/AliensAndUmbrellas.exe": - when: - os: windows store: steam @@ -24081,12 +24162,12 @@ Aliens in the Yard: id: 648190 Aliens versus Predator: files: - /Rebellion/AvP Classic/User_Profiles: + "/Rebellion/AvP Classic/User_Profiles": tags: - save when: - os: windows - /Rebellion/AvP Classic/video.cfg: + "/Rebellion/AvP Classic/video.cfg": tags: - config when: @@ -24096,26 +24177,26 @@ Aliens versus Predator: installDir: Aliens versus Predator Classic: {} launch: - /Launcher/AvpGoldLauncher.exe: + "/Launcher/AvpGoldLauncher.exe": - when: - store: steam steam: id: 3730 Aliens versus Predator 2: files: - /Save/Player_0: + "/Save/Player_0": tags: - save when: - os: windows - /autoexec.cfg: + "/autoexec.cfg": tags: - config when: - os: windows Aliens vs. Predator (2010): files: - /AliensVsPredator: + "/AliensVsPredator": tags: - config - save @@ -24124,13 +24205,13 @@ Aliens vs. Predator (2010): installDir: Aliens vs Predator: {} launch: - /AvP.exe: + "/AvP.exe": - when: - store: steam - /AvP_DX11.exe: + "/AvP_DX11.exe": - when: - store: steam - /AvP_Launcher.exe: + "/AvP_Launcher.exe": - when: - store: steam steam: @@ -24139,38 +24220,38 @@ Aliens&Asteroids: installDir: Aliens&Asteroids: {} launch: - /Aliens&Asteroids.exe: + "/Aliens&Asteroids.exe": - when: - os: windows store: steam steam: id: 661030 -'Aliens: A Comic Book Adventure': +"Aliens: A Comic Book Adventure": files: - /*AL95.SAV: + "/*AL95.SAV": tags: - save when: - os: dos - 'C:/ALIENS.CFG': + "C:/ALIENS.CFG": tags: - config when: - os: dos - 'C:/ALIENS1.CFG': + "C:/ALIENS1.CFG": tags: - config when: - os: dos -'Aliens: Colonial Marines': +"Aliens: Colonial Marines": files: - /userdata//49540: + "/userdata//49540": tags: - save when: - os: windows store: steam - /My Games/Aliens Colonial Marines/PecanGame/Config: + "/My Games/Aliens Colonial Marines/PecanGame/Config": tags: - config when: @@ -24189,19 +24270,19 @@ Aliens&Asteroids: installDir: Aliens Colonial Marines: {} launch: - /Binaries/Win32/ACM.exe: + "/Binaries/Win32/ACM.exe": - when: - store: steam steam: id: 49540 -'Aliens: Dark Descent': +"Aliens: Dark Descent": files: - /ASF/Saved/Config/WindowsNoEditor: + "/ASF/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /ASF/Saved/SaveGames/*.sav: + "/ASF/Saved/SaveGames/*.sav": tags: - save when: @@ -24213,32 +24294,32 @@ Aliens&Asteroids: installDir: AliensDarkDescent: {} launch: - /AliensDarkDescentGameSteam-Win64-Shipping.exe: + "/AliensDarkDescentGameSteam-Win64-Shipping.exe": - when: - bit: 64 os: windows store: steam steam: id: 1150440 -'Aliens: Fireteam Elite': +"Aliens: Fireteam Elite": files: - /Endeavor/Saved/Config/WindowsNoEditor: + "/Endeavor/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /Endeavor/Saved/SaveGames: + "/Endeavor/Saved/SaveGames": tags: - save when: - os: windows - /Packages/ColdIronStudiosLLC.AliensFireteam_r52mqvf2yh3da/LocalCache/Local/Endeavor/Saved/Config/WinGDK: + "/Packages/ColdIronStudiosLLC.AliensFireteam_r52mqvf2yh3da/LocalCache/Local/Endeavor/Saved/Config/WinGDK": tags: - config when: - os: windows store: microsoft - /Packages/ColdIronStudiosLLC.AliensFireteam_r52mqvf2yh3da/SystemAppData/wgs: + "/Packages/ColdIronStudiosLLC.AliensFireteam_r52mqvf2yh3da/SystemAppData/wgs": tags: - save when: @@ -24247,7 +24328,7 @@ Aliens&Asteroids: installDir: Aliens Fireteam Elite: {} launch: - /Endeavor.exe: + "/Endeavor.exe": - when: - store: steam steam: @@ -24259,16 +24340,16 @@ Alimardan Meets Merlin: installDir: Alimardan Meets Merlin: {} launch: - /AlimardanMeetMerlin.exe: + "/AlimardanMeetMerlin.exe": - when: - store: steam steam: id: 694430 -Alimardan's Mischief: +"Alimardan's Mischief": installDir: - Alimardan's Mischief: {} + "Alimardan's Mischief": {} launch: - /Alimardan's Mischief.exe: + "/Alimardan's Mischief.exe": - when: - store: steam steam: @@ -24277,11 +24358,11 @@ Alina of the Arena: installDir: Alina of the Arena: {} launch: - /Alina of the Arena.app/Contents/MacOS/Alina of the Arena: + "/Alina of the Arena.app/Contents/MacOS/Alina of the Arena": - when: - os: mac store: steam - /Alina of the Arena.exe: + "/Alina of the Arena.exe": - when: - os: windows store: steam @@ -24289,12 +24370,12 @@ Alina of the Arena: id: 1668690 Alisa: files: - /.config/unity3d/CasperCroes/Alisa: + "/.config/unity3d/CasperCroes/Alisa": tags: - config when: - os: linux - /AppData/LocalLow/CasperCroes/Alisa: + "/AppData/LocalLow/CasperCroes/Alisa": tags: - save when: @@ -24302,21 +24383,21 @@ Alisa: installDir: Alisa: {} launch: - /Alisa v1.0 (Linux)/Alisa.x86: + "/Alisa v1.0 (Linux)/Alisa.x86": - when: - bit: 32 os: linux store: steam - /Alisa v1.0 (Linux)/Alisa.x86_64: + "/Alisa v1.0 (Linux)/Alisa.x86_64": - when: - bit: 64 os: linux store: steam - /Alisa v1.0 (MacOS).app/Contents/MacOS/Alisa v1.0 (MacOS): + "/Alisa v1.0 (MacOS).app/Contents/MacOS/Alisa v1.0 (MacOS)": - when: - os: mac store: steam - /Alisa v1.0 (Windows)/Alisa.exe: + "/Alisa v1.0 (Windows)/Alisa.exe": - when: - os: windows store: steam @@ -24333,16 +24414,16 @@ Alive 2 Survive: installDir: Alive 2 Survive: {} launch: - /Alive2Survive.app: + "/Alive2Survive.app": - when: - os: mac store: steam - /Alive2Survive.exe: + "/Alive2Survive.exe": - when: - bit: 64 os: windows store: steam - /Alive2Survive.x86_64: + "/Alive2Survive.x86_64": - when: - bit: 64 os: linux @@ -24353,7 +24434,7 @@ Alive Hunter: installDir: Alive Hunter: {} launch: - /Alive Hunter.exe: + "/Alive Hunter.exe": - when: - os: windows store: steam @@ -24369,7 +24450,7 @@ Alkimya: Alchemist Adventure: {} steam: id: 521620 -'All Alone: VR': +"All Alone: VR": installDir: All Alone VR: {} steam: @@ -24378,7 +24459,7 @@ All Aspect Warfare: installDir: All Aspect Warfare: {} launch: - /aaw.exe: + "/aaw.exe": - when: - store: steam steam: @@ -24387,7 +24468,7 @@ All Contact Lost: installDir: All Contact Lost: {} launch: - /SurvivalMode.exe: + "/SurvivalMode.exe": - when: - os: windows store: steam @@ -24397,7 +24478,7 @@ All Cows In: installDir: All Cows In: {} launch: - /AllCowsIn.exe: + "/AllCowsIn.exe": - when: - os: windows store: steam @@ -24407,7 +24488,7 @@ All Day Dying: installDir: All Day Dying: {} launch: - /Celled.exe: + "/Celled.exe": - when: - os: windows store: steam @@ -24417,11 +24498,11 @@ All Evil Night: installDir: All Evil Night: {} launch: - /All Evil Night.exe: + "/All Evil Night.exe": - when: - os: windows store: steam - /AllEvilNight.x86: + "/AllEvilNight.x86": - when: - os: linux store: steam @@ -24431,11 +24512,11 @@ All Evil Night 2: installDir: All Evil Night 2: {} launch: - /All Evil Night 2.exe: + "/All Evil Night 2.exe": - when: - os: windows store: steam - /AllEvilNight2.x86: + "/AllEvilNight2.x86": - when: - os: linux store: steam @@ -24445,15 +24526,15 @@ All Fall Down: installDir: All Fall Down: {} launch: - /allfalldown.app: + "/allfalldown.app": - when: - os: mac store: steam - /allfalldown.exe: + "/allfalldown.exe": - when: - os: windows store: steam - /allfalldown.x86: + "/allfalldown.x86": - when: - os: linux store: steam @@ -24463,7 +24544,7 @@ All For One: installDir: AllForOne: {} launch: - /AllForOne.exe: + "/AllForOne.exe": - when: - store: steam steam: @@ -24472,7 +24553,7 @@ All Guns on Deck: installDir: All Guns On Deck: {} launch: - /All Guns On Deck.exe: + "/All Guns On Deck.exe": - when: - os: windows store: steam @@ -24482,7 +24563,7 @@ All Haze Eve: installDir: all_haze_eve: {} launch: - /all_haze_eve.exe: + "/all_haze_eve.exe": - when: - os: windows store: steam @@ -24492,7 +24573,7 @@ All Is Dust: installDir: All Is Dust: {} launch: - /allisdust.exe: + "/allisdust.exe": - when: - os: windows store: steam @@ -24506,7 +24587,7 @@ All My Gods: installDir: All My Gods: {} launch: - /all_my_gods.exe: + "/all_my_gods.exe": - when: - os: windows store: steam @@ -24516,7 +24597,7 @@ All Of ZHEM: installDir: All Of Zhem: {} launch: - /All of ZHEM.exe: + "/All of ZHEM.exe": - when: - store: steam steam: @@ -24525,15 +24606,15 @@ All Our Asias: installDir: All Our Asias: {} launch: - /All Our Asias.exe: + "/All Our Asias.exe": - when: - os: windows store: steam - /AllOurAsias.x86: + "/AllOurAsias.x86": - when: - os: linux store: steam - /Mac.app/Contents/MacOS/Mac: + "/Mac.app/Contents/MacOS/Mac": - when: - os: mac store: steam @@ -24552,11 +24633,11 @@ All Stars Racing Cup: installDir: AllStarsRacingCup: {} launch: - /AllStarsRacingCup.app/Contents/MacOS/AllStarsRacingCup: + "/AllStarsRacingCup.app/Contents/MacOS/AllStarsRacingCup": - when: - os: mac store: steam - /AllStarsRacingCup.exe: + "/AllStarsRacingCup.exe": - when: - os: windows store: steam @@ -24566,11 +24647,11 @@ All Systems Operational: installDir: All Systems Operational: {} launch: - /Game.app/Contents/MacOS/All Systems Operational: + "/Game.app/Contents/MacOS/All Systems Operational": - when: - os: mac store: steam - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -24580,22 +24661,22 @@ All That Remains: installDir: All That Remains: {} launch: - /All That Remains.exe: + "/All That Remains.exe": - when: - os: windows store: steam steam: id: 749580 -'All That Remains: A story about a child''s future': +"All That Remains: A story about a child's future": installDir: All That Remains: {} launch: - /AllThatRemains/Binaries/Win32/AllThatRemains-Win32.exe: + "/AllThatRemains/Binaries/Win32/AllThatRemains-Win32.exe": - when: - bit: 32 os: windows store: steam - /AllThatRemains/Binaries/Win64/AllThatRemains-Win64.exe: + "/AllThatRemains/Binaries/Win64/AllThatRemains-Win64.exe": - when: - bit: 64 os: windows @@ -24604,12 +24685,12 @@ All That Remains: id: 1111610 All Walls Must Fall: files: - /ProjectDisco/Saved/Config/WindowsNoEditor: + "/ProjectDisco/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /ProjectDisco/Saved/SaveGames: + "/ProjectDisco/Saved/SaveGames": tags: - save when: @@ -24617,17 +24698,17 @@ All Walls Must Fall: installDir: All Walls Must Fall: {} launch: - /ProjectDisco.app: + "/ProjectDisco.app": - when: - os: mac store: steam - /ProjectDisco.exe: - - arguments: '-SaveToUserDir' + "/ProjectDisco.exe": + - arguments: "-SaveToUserDir" when: - os: windows store: steam - /ProjectDisco.sh: - - arguments: '-nocore' + "/ProjectDisco.sh": + - arguments: "-nocore" when: - os: linux store: steam @@ -24637,15 +24718,15 @@ All World Pro Wrestling: installDir: All World Pro Wrestling: {} launch: - /All World Pro Wrestling.app/Contents/MacOS/All World Pro Wrestling: + "/All World Pro Wrestling.app/Contents/MacOS/All World Pro Wrestling": - when: - os: mac store: steam - /AllWorldProWrestling: + "/AllWorldProWrestling": - when: - os: linux store: steam - /AllWorldProWrestling.exe: + "/AllWorldProWrestling.exe": - when: - os: windows store: steam @@ -24653,7 +24734,7 @@ All World Pro Wrestling: id: 1183170 All You Can Eat: files: - /interactivecomics_just_ayce/allyoucaneat_options.json: + "/interactivecomics_just_ayce/allyoucaneat_options.json": tags: - config when: @@ -24661,17 +24742,17 @@ All You Can Eat: installDir: All You Can Eat: {} launch: - /allyoucaneat.exe: + "/allyoucaneat.exe": - when: - os: windows store: steam steam: id: 663240 -'All You Can Feed: Sushi Bar': +"All You Can Feed: Sushi Bar": installDir: All You Can Feed Sushi Bar: {} launch: - /sushibar.exe: + "/sushibar.exe": - when: - bit: 64 os: windows @@ -24685,15 +24766,15 @@ All Zombies Must Die!: installDir: All Zombies Must Die: {} launch: - /Binaries/Win32/ShippingPC-Bzb2Game.exe: - - arguments: '-seekfreeloading' + "/Binaries/Win32/ShippingPC-Bzb2Game.exe": + - arguments: "-seekfreeloading" when: - store: steam steam: id: 204140 -'All Zombies Must Die!: Scorepocalypse': +"All Zombies Must Die!: Scorepocalypse": files: - /My Games/UnrealEngine3/Bzb2Game: + "/My Games/UnrealEngine3/Bzb2Game": tags: - config when: @@ -24701,8 +24782,8 @@ All Zombies Must Die!: installDir: All Zombies Must Die - Scorepocalypse: {} launch: - /Binaries/Win32/AZMD.exe: - - arguments: '-seekfreeloading' + "/Binaries/Win32/AZMD.exe": + - arguments: "-seekfreeloading" when: - store: steam steam: @@ -24711,7 +24792,7 @@ All the Delicate Duplicates: installDir: All the Delicate Duplicates: {} launch: - /All the Delicate Duplicates.exe: + "/All the Delicate Duplicates.exe": - when: - bit: 64 os: windows @@ -24725,12 +24806,12 @@ All-Star Fielding Challenge VR: id: 597020 All-Star Fruit Racing: files: - /3DClouds/AllStarFruitRacing/Saved/Config/WindowsNoEditor: + "/3DClouds/AllStarFruitRacing/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /3DClouds/AllStarFruitRacing/Saved/SaveGames: + "/3DClouds/AllStarFruitRacing/Saved/SaveGames": tags: - save when: @@ -24738,7 +24819,7 @@ All-Star Fruit Racing: installDir: All-Star Fruit Racing: {} launch: - /AllStarFruitRacing.exe: + "/AllStarFruitRacing.exe": - when: - bit: 64 os: windows @@ -24754,7 +24835,7 @@ Allergenium: installDir: Allergenium: {} launch: - /Allergenium.exe: + "/Allergenium.exe": - when: - os: windows store: steam @@ -24762,7 +24843,7 @@ Allergenium: id: 871860 Alliance of Valiant Arms: files: - /avaGame/Config: + "/avaGame/Config": tags: - config when: @@ -24770,8 +24851,8 @@ Alliance of Valiant Arms: installDir: A.V.A: {} launch: - /Binaries/start_protected_game.exe: - - arguments: '-serveraddr\"rxgw.nlb.ava-st.pmang.cloud:28004\" ' + "/Binaries/start_protected_game.exe": + - arguments: "-serveraddr\\\"rxgw.nlb.ava-st.pmang.cloud:28004\\\" " when: - os: windows store: steam @@ -24786,17 +24867,17 @@ Allied Nations: installDir: Allied Nations: {} launch: - /AlliedNations.exe: + "/AlliedNations.exe": - when: - os: windows store: steam steam: id: 979300 -'Allison''s Diary: Rebirth': +"Allison's Diary: Rebirth": installDir: - Allison's Diary Rebirth: {} + "Allison's Diary Rebirth": {} launch: - /AllisonsDiary_Rebirth.exe: + "/AllisonsDiary_Rebirth.exe": - when: - os: windows store: steam @@ -24806,8 +24887,8 @@ Allods Online: installDir: Allods Online My.com: {} launch: - /AllodsMycomSteamLoader.exe: - - arguments: '-fromsteam' + "/AllodsMycomSteamLoader.exe": + - arguments: "-fromsteam" when: - store: steam steam: @@ -24816,17 +24897,17 @@ Allspace: installDir: Allspace: {} launch: - /Allspace.exe: + "/Allspace.exe": - when: - bit: 64 os: windows store: steam - /Allspace.x86_64: + "/Allspace.x86_64": - when: - bit: 64 os: linux store: steam - /Contents/MacOS/Allspace: + "/Contents/MacOS/Allspace": - when: - os: mac store: steam @@ -24841,7 +24922,7 @@ Alluna and Brie: installDir: Alluna and Brie: {} launch: - /AllunaAndBrie.exe: + "/AllunaAndBrie.exe": - when: - os: windows store: steam @@ -24851,11 +24932,11 @@ Alluris: installDir: Alluris: {} launch: - /Adventure.app: + "/Adventure.app": - when: - os: mac store: steam - /Adventure.exe: + "/Adventure.exe": - when: - os: windows store: steam @@ -24865,43 +24946,43 @@ Alma: installDir: Alma: {} launch: - /Alma.exe: + "/Alma.exe": - when: - os: windows store: steam steam: id: 749320 -'Almightree: The Last Dreamer': +"Almightree: The Last Dreamer": installDir: Almightree-TheLastDreamer: {} launch: - /Almightree-TheLastDreamer.app: + "/Almightree-TheLastDreamer.app": - when: - os: mac store: steam - /Almightree-TheLastDreamer.exe: + "/Almightree-TheLastDreamer.exe": - when: - os: windows store: steam - /Almightree-TheLastDreamer.x86: + "/Almightree-TheLastDreamer.x86": - when: - bit: 32 os: linux store: steam - /Almightree-TheLastDreamer.x86_64: + "/Almightree-TheLastDreamer.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 368050 -'Almighty: Kill Your Gods': +"Almighty: Kill Your Gods": gog: id: 1121527658 installDir: Almighty: {} launch: - /Almighty.exe: + "/Almighty.exe": - when: - os: windows store: steam @@ -24911,7 +24992,7 @@ Almost Alive: installDir: Almost Alive: {} launch: - /Almost_Alive.exe: + "/Almost_Alive.exe": - when: - os: windows store: steam @@ -24921,7 +25002,7 @@ Almost Home Now: installDir: Almost Home Now: {} launch: - /AlmostHomeNow.exe: + "/AlmostHomeNow.exe": - when: - os: windows store: steam @@ -24929,12 +25010,12 @@ Almost Home Now: id: 1994230 Almost There: files: - /AppData/LocalLow/The Quantum Astrophysicists Guild/Almost There - The Platformer/.local: + "/AppData/LocalLow/The Quantum Astrophysicists Guild/Almost There - The Platformer/.local": tags: - save when: - os: windows - /userdata//951940/remote/.cloud: + "/userdata//951940/remote/.cloud": tags: - save when: @@ -24942,15 +25023,15 @@ Almost There: installDir: Almost_There: {} launch: - /Almost There - The Platformer.exe: + "/Almost There - The Platformer.exe": - when: - os: windows store: steam - /AlmostThere.app/Contents/MacOS/AlmostThere: + "/AlmostThere.app/Contents/MacOS/AlmostThere": - when: - os: mac store: steam - /run.sh: + "/run.sh": - when: - os: linux store: steam @@ -24964,7 +25045,7 @@ Aloe and Cal: installDir: Aloe and Cal: {} launch: - /Aloe and Cal.exe: + "/Aloe and Cal.exe": - when: - os: windows store: steam @@ -24974,7 +25055,7 @@ Aloha Paradise Hotel: installDir: Aloha Paradise Hotel: {} launch: - /alohasteam.exe: + "/alohasteam.exe": - when: - os: windows store: steam @@ -24984,7 +25065,7 @@ Alone: installDir: Alone: {} launch: - /Alone.exe: + "/Alone.exe": - when: - os: windows store: steam @@ -24994,7 +25075,7 @@ Alone (Avasion): installDir: Alone: {} launch: - /AloneProject.exe: + "/AloneProject.exe": - when: - os: windows store: steam @@ -25004,7 +25085,7 @@ Alone K.W.: installDir: AKW_Level1: {} launch: - /AKW_Level1.exe: + "/AKW_Level1.exe": - when: - os: windows store: steam @@ -25012,12 +25093,12 @@ Alone K.W.: id: 442000 Alone With You: files: - /AloneWithYou/awysave: + "/AloneWithYou/awysave": tags: - save when: - os: windows - /AloneWithYou/awysave/awy_options.ini: + "/AloneWithYou/awysave/awy_options.ini": tags: - config when: @@ -25025,11 +25106,11 @@ Alone With You: installDir: Alone With You: {} launch: - /AloneWithYou.app: + "/AloneWithYou.app": - when: - os: mac store: steam - /AloneWithYou.exe: + "/AloneWithYou.exe": - when: - os: windows store: steam @@ -25045,17 +25126,22 @@ Alone in Space: installDir: ALONE IN SPACE: {} launch: - /ALONE IN SPACE.app/Contents/MacOS/ALONE IN SPACE: + "/ALONE IN SPACE.app/Contents/MacOS/ALONE IN SPACE": - when: - bit: 64 os: mac store: steam - /ALONE IN SPACE.exe: + "/ALONE IN SPACE.exe": - when: - bit: 64 os: windows store: steam - /ALONE IN SPACE.x86_64: + "/ALONE IN SPACE.exe ": + - when: + - bit: 32 + os: windows + store: steam + "/ALONE IN SPACE.x86_64": - when: - bit: 64 os: linux @@ -25064,7 +25150,7 @@ Alone in Space: id: 444580 Alone in the Dark: files: - /SAVE*.ITD: + "/SAVE*.ITD": tags: - save when: @@ -25075,7 +25161,7 @@ Alone in the Dark: id: 548090 Alone in the Dark (2008): files: - /Atari/AITD: + "/Atari/AITD": tags: - config - save @@ -25084,7 +25170,7 @@ Alone in the Dark (2008): installDir: Alone in the Dark: {} launch: - /Alone.exe: + "/Alone.exe": - when: - bit: 32 os: windows @@ -25098,7 +25184,7 @@ Alone in the Dark (2023): id: 1310410 Alone in the Dark 2: files: - /SAVE*.ITD: + "/SAVE*.ITD": tags: - save when: @@ -25109,7 +25195,7 @@ Alone in the Dark 2: id: 548890 Alone in the Dark 3: files: - /INDARK3.CFG: + "/INDARK3.CFG": tags: - config when: @@ -25118,9 +25204,9 @@ Alone in the Dark 3: id: 1207660973 steam: id: 548900 -'Alone in the Dark: Illumination': +"Alone in the Dark: Illumination": files: - /Dark/Saved/Config/WindowsNoEditor: + "/Dark/Saved/Config/WindowsNoEditor": tags: - config when: @@ -25128,18 +25214,18 @@ Alone in the Dark 3: installDir: Alone in the Dark: {} launch: - /Dark/Binaries/Win64/Dark-Win64-Shipping.exe: - - arguments: '-NOSCREENMESSAGES' + "/Dark/Binaries/Win64/Dark-Win64-Shipping.exe": + - arguments: "-NOSCREENMESSAGES" when: - bit: 64 os: windows store: steam - workingDir: /Dark/Binaries/Win64 + workingDir: "/Dark/Binaries/Win64" steam: id: 275060 -'Alone in the Dark: The New Nightmare': +"Alone in the Dark: The New Nightmare": files: - /_Alone4_.000.sav: + "/_Alone4_.000.sav": tags: - save when: @@ -25149,7 +25235,7 @@ Alone in the Dark 3: installDir: Alone in the Dark - The New Nightmare: {} launch: - /alone4.exe: + "/alone4.exe": - when: - bit: 32 store: steam @@ -25168,12 +25254,12 @@ Alone in the War: installDir: Alone in the War: {} launch: - /AloneInTheWar.exe: + "/AloneInTheWar.exe": - when: - bit: 64 os: windows store: steam - /AloneInTheWar.x86_64: + "/AloneInTheWar.x86_64": - when: - bit: 64 os: linux @@ -25184,15 +25270,15 @@ Alone?: installDir: ALONE: {} launch: - /Alone.app: + "/Alone.app": - when: - os: mac store: steam - /Alone.exe: + "/Alone.exe": - when: - os: windows store: steam - /Alone.x86: + "/Alone.x86": - when: - os: linux store: steam @@ -25210,12 +25296,12 @@ Along Together: id: 859640 Along the Edge: files: - /along_the_edge/Local Storage: + "/along_the_edge/Local Storage": tags: - save when: - os: windows - /along_the_edge/Preferences: + "/along_the_edge/Preferences": tags: - config when: @@ -25223,17 +25309,17 @@ Along the Edge: installDir: Along the Edge: {} launch: - /Along the Edge: + "/Along the Edge": - when: - bit: 64 os: linux store: steam - /Along the Edge.app: + "/Along the Edge.app": - when: - os: mac store: steam - /Along-the-Edge.exe: - - arguments: '--disable-d3d11' + "/Along-the-Edge.exe": + - arguments: "--disable-d3d11" when: - os: windows store: steam @@ -25243,15 +25329,15 @@ Alpacapaca Dash: installDir: Alpacapaca Dash: {} launch: - /AlpacapacaDash.app/Contents/MacOS/AlpacapacaDash: + "/AlpacapacaDash.app/Contents/MacOS/AlpacapacaDash": - when: - os: mac store: steam - /AlpacapacaDash.exe: + "/AlpacapacaDash.exe": - when: - os: windows store: steam - /AlpacapacaDash.x86: + "/AlpacapacaDash.x86": - when: - os: linux store: steam @@ -25261,25 +25347,25 @@ Alpacapaca Double Dash: installDir: Alpacapaca Double Dash: {} launch: - /Alpacapaca Double Dash.exe: + "/Alpacapaca Double Dash.exe": - when: - os: windows store: steam steam: id: 1003190 -'Alpages: The Five Books': +"Alpages: The Five Books": installDir: ALPAGES THE FIVE BOOKS: {} launch: - /alpagesthefivebooksmac.app/Contents/MacOS/alpagesthefivebooksmac: + "/alpagesthefivebooksmac.app/Contents/MacOS/alpagesthefivebooksmac": - when: - os: mac store: steam - /atfb.exe: + "/atfb.exe": - when: - os: windows store: steam - /atfblinux.x86: + "/atfblinux.x86": - when: - os: linux store: steam @@ -25289,7 +25375,7 @@ AlpenCROSS: installDir: AlpenCROSS: {} launch: - /AlpenCROSS.exe: + "/AlpenCROSS.exe": - when: - os: windows store: steam @@ -25299,7 +25385,7 @@ Alpha & Beta: installDir: Alpha & Beta: {} launch: - /Alpha & Beta.exe: + "/Alpha & Beta.exe": - when: - os: windows store: steam @@ -25309,7 +25395,7 @@ Alpha Decay: installDir: Alpha Decay: {} launch: - /AlphaDecay.exe: + "/AlphaDecay.exe": - when: - os: windows store: steam @@ -25319,11 +25405,11 @@ Alpha Dog: installDir: Alpha Dog: {} launch: - /AlphaDog.app/Contents/MacOS/AlphaDog: + "/AlphaDog.app/Contents/MacOS/AlphaDog": - when: - os: mac store: steam - /Alpha_Dog.exe: + "/Alpha_Dog.exe": - when: - os: windows store: steam @@ -25333,7 +25419,7 @@ Alpha Kimori 1: installDir: AlphaKimoriSteam1: {} launch: - /AlphaKimori1.exe: + "/AlphaKimori1.exe": - when: - os: windows store: steam @@ -25351,7 +25437,7 @@ Alpha Lyrae Discovery: installDir: Alpha Lyrae Discovery: {} launch: - /Alpha Lyrae Discovery.exe: + "/Alpha Lyrae Discovery.exe": - when: - os: windows store: steam @@ -25364,7 +25450,7 @@ Alpha Mike Foxtrot: id: 689620 Alpha Polaris: files: - /Saved Games/Alpha Polaris: + "/Saved Games/Alpha Polaris": tags: - save when: @@ -25372,14 +25458,14 @@ Alpha Polaris: installDir: Alpha Polaris: {} launch: - /AlphaPolaris.exe: + "/AlphaPolaris.exe": - when: - os: windows store: steam - when: - os: windows store: steam - workingDir: /1280x768 + workingDir: "/1280x768" registry: HKEY_CURRENT_USER/Software/TurmoilGames/AlphaPolaris: tags: @@ -25388,12 +25474,12 @@ Alpha Polaris: id: 405780 Alpha Prime: files: - /save: + "/save": tags: - save when: - os: windows - /settings.cfg: + "/settings.cfg": tags: - config when: @@ -25401,19 +25487,19 @@ Alpha Prime: installDir: Alpha Prime: {} launch: - /AlphaPrime.exe: + "/AlphaPrime.exe": - when: - store: steam steam: id: 2590 Alpha Protocol: files: - /Alpha Protocol/APGame/Config: + "/Alpha Protocol/APGame/Config": tags: - config when: - os: windows - /Alpha Protocol/Checkpoints: + "/Alpha Protocol/Checkpoints": tags: - save when: @@ -25421,7 +25507,7 @@ Alpha Protocol: installDir: Alpha Protocol: {} launch: - /APLauncher.exe: + "/APLauncher.exe": - when: - store: steam steam: @@ -25430,7 +25516,7 @@ Alpha Runner: installDir: Alpha Runner: {} launch: - /runner.exe: + "/runner.exe": - when: - os: windows store: steam @@ -25438,7 +25524,7 @@ Alpha Runner: id: 387840 Alpha Storm: files: - /OLD_ONES: + "/OLD_ONES": tags: - save when: @@ -25447,12 +25533,12 @@ Alpha Version.0: installDir: Alpha Version.0: {} launch: - /Run.sh: + "/Run.sh": - when: - bit: 64 os: linux store: steam - /nw.exe: + "/nw.exe": - when: - bit: 64 os: windows @@ -25463,48 +25549,48 @@ Alpha Zylon: installDir: Alpha Zylon: {} launch: - /AlphaZylon.exe: + "/AlphaZylon.exe": - when: - store: steam steam: id: 313210 -'Alpha/Omega: The Christian RPG': +"Alpha/Omega: The Christian RPG": installDir: AlphaOmega The Christian RPG: {} launch: - /Alpha Omega - The Christian RPG/Game.exe: + "/Alpha Omega - The Christian RPG/Game.exe": - when: - os: windows store: steam steam: id: 781310 -'Alphabear: Hardcover Edition': +"Alphabear: Hardcover Edition": installDir: Alphabear: {} launch: - /Alphabear.app/Contents/MacOS/Alphabear: + "/Alphabear.app/Contents/MacOS/Alphabear": - when: - os: mac store: steam - /Alphabear.exe: + "/Alphabear.exe": - when: - os: windows store: steam steam: id: 644080 -'Alphabeats: Master Edition': +"Alphabeats: Master Edition": installDir: Alphabeats PC Master Edition: {} launch: - /Alphabeats.app: + "/Alphabeats.app": - when: - os: mac store: steam - /AlphabeatsPCME.exe: + "/AlphabeatsPCME.exe": - when: - os: windows store: steam - /AlphabeatsPCME.x86: + "/AlphabeatsPCME.x86": - when: - os: linux store: steam @@ -25517,7 +25603,7 @@ Alphadia Genesis: installDir: Alphadia Genesis: {} launch: - /alphak.exe: + "/alphak.exe": - when: - os: windows store: steam @@ -25527,12 +25613,12 @@ Alphaman: installDir: Alphaman: {} launch: - /Alphaman.exe: + "/Alphaman.exe": - when: - bit: 64 os: windows store: steam - /Alphaman_linux.x86: + "/Alphaman_linux.x86": - when: - bit: 64 os: linux @@ -25546,7 +25632,7 @@ Alpine Ski VR: id: 553110 Alt-Frequencies: files: - /AppData/LocalLow/Accidental Queens/Alt-Frequencies/SaveData.es3: + "/AppData/LocalLow/Accidental Queens/Alt-Frequencies/SaveData.es3": tags: - save when: @@ -25554,11 +25640,11 @@ Alt-Frequencies: installDir: Alt-Frequencies: {} launch: - /Alt-Frequencies.exe: + "/Alt-Frequencies.exe": - when: - os: windows store: steam - /radio_gold_s27_steam_osx.app: + "/radio_gold_s27_steam_osx.app": - when: - os: mac store: steam @@ -25574,11 +25660,11 @@ AltCoin: Altar Guardian: steam: id: 543770 -'Alteil: Horizons': +"Alteil: Horizons": installDir: Alteil Horizons: {} launch: - /bin/AlteilHorizons.exe: + "/bin/AlteilHorizons.exe": - when: - os: windows store: steam @@ -25588,7 +25674,7 @@ Alter Army: installDir: Alter Army: {} launch: - /Alter Army.exe: + "/Alter Army.exe": - when: - os: windows store: steam @@ -25598,15 +25684,15 @@ Alter Cosmos: installDir: Alter Cosmos: {} launch: - /launcher/launcher.exe: + "/launcher/launcher.exe": - when: - store: steam - workingDir: /launcher + workingDir: "/launcher" steam: id: 675620 Alter Ego: files: - /Engine.config: + "/Engine.config": tags: - config when: @@ -25614,15 +25700,15 @@ Alter Ego: installDir: Alter Ego: {} launch: - /Alter Ego.app/Contents/MacOS/Alter Ego: + "/Alter Ego.app/Contents/MacOS/Alter Ego": - when: - os: mac store: steam - /AlterEgo: + "/AlterEgo": - when: - os: linux store: steam - /AlterEgo.exe: + "/AlterEgo.exe": - when: - os: windows store: steam @@ -25630,17 +25716,17 @@ Alter Ego: id: 664780 Alter Ego (2010): files: - /Engine.config: + "/Engine.config": tags: - config when: - os: windows - /saves/*.egs: + "/saves/*.egs": tags: - save when: - os: windows - /saves/options: + "/saves/options": tags: - config when: @@ -25648,7 +25734,7 @@ Alter Ego (2010): installDir: Alter Ego: {} launch: - /AlterEgo.exe: + "/AlterEgo.exe": - when: - store: steam steam: @@ -25657,30 +25743,30 @@ Alter World: installDir: Alter World: {} launch: - /AlterWorld.app: + "/AlterWorld.app": - when: - os: mac store: steam - /AlterWorld.exe: + "/AlterWorld.exe": - when: - store: steam - /AlterWorld.x86: + "/AlterWorld.x86": - when: - bit: 32 os: linux store: steam - /AlterWorld.x86_64: + "/AlterWorld.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 357280 -'AlterVerse: Disruption': +"AlterVerse: Disruption": installDir: AlterVerse: {} launch: - /AlterVerse.exe: + "/AlterVerse.exe": - when: - bit: 64 os: windows @@ -25689,7 +25775,7 @@ Alter World: id: 389800 Altered: files: - /AppData/LocalLow/Glitchheart/Altered: + "/AppData/LocalLow/Glitchheart/Altered": tags: - save when: @@ -25697,16 +25783,16 @@ Altered: installDir: Altered: {} launch: - /Altered.app: + "/Altered.app": - when: - os: mac store: steam - /Altered.exe: + "/Altered.exe": - when: - bit: 64 os: windows store: steam - /Altered.x86_64: + "/Altered.x86_64": - when: - os: linux store: steam @@ -25714,29 +25800,29 @@ Altered: id: 973250 Altered Beast: files: - /SETUP.DAT: + "/SETUP.DAT": tags: - config when: - os: dos Altered Beast (Genesis): files: - /SEGA Genesis Classics/0000: + "/SEGA Genesis Classics/0000": tags: - save when: - os: windows - /SEGA Genesis Classics/setup.dat: + "/SEGA Genesis Classics/setup.dat": tags: - config when: - os: windows - /SEGA Mega Drive Classics/0000: + "/SEGA Mega Drive Classics/0000": tags: - save when: - os: windows - /SEGA Mega Drive Classics/setup.dat: + "/SEGA Mega Drive Classics/setup.dat": tags: - config when: @@ -25754,13 +25840,13 @@ Alteric: installDir: Alteric: {} launch: - /Alteric.app: - - arguments: '-platform-steam' + "/Alteric.app": + - arguments: "-platform-steam" when: - os: mac store: steam - /Alteric.exe: - - arguments: '-platform-steam' + "/Alteric.exe": + - arguments: "-platform-steam" when: - os: windows store: steam @@ -25772,7 +25858,7 @@ Alternate DiMansion Diary: installDir: Alternate DiMansion Diary: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -25780,7 +25866,7 @@ Alternate DiMansion Diary: id: 1015720 Alternativa: files: - /Alternativa: + "/Alternativa": tags: - save when: @@ -25788,7 +25874,7 @@ Alternativa: installDir: Alternativa: {} launch: - /ALTERNATIVA.exe: + "/ALTERNATIVA.exe": - when: - store: steam registry: @@ -25797,22 +25883,22 @@ Alternativa: - config steam: id: 33990 -'Alternator: Tactical Stealth Operations': +"Alternator: Tactical Stealth Operations": steam: id: 1052120 Altero: installDir: Altero: {} launch: - /Altero.app/Contents/MacOS/Altero: + "/Altero.app/Contents/MacOS/Altero": - when: - os: mac store: steam - /Altero.exe: + "/Altero.exe": - when: - os: windows store: steam - /Altero.x86_64: + "/Altero.x86_64": - when: - os: linux store: steam @@ -25822,15 +25908,15 @@ Altitude: installDir: Altitude: {} launch: - /Altitude.app: + "/Altitude.app": - when: - os: mac store: steam - /Altitude.exe: + "/Altitude.exe": - when: - os: windows store: steam - /bin/Altitude: + "/bin/Altitude": - when: - os: linux store: steam @@ -25840,7 +25926,7 @@ Altorius: installDir: Altorius: {} launch: - /Altorius.exe: + "/Altorius.exe": - when: - os: windows store: steam @@ -25850,7 +25936,7 @@ AltspaceVR: installDir: AltspaceVR: {} launch: - /AltspaceVR.exe: + "/AltspaceVR.exe": - when: - bit: 64 os: windows @@ -25859,22 +25945,22 @@ AltspaceVR: id: 407060 Alucinod: files: - /Alucinod/Saved/Config/WindowsNoEditor/GameUserSettings.ini: + "/Alucinod/Saved/Config/WindowsNoEditor/GameUserSettings.ini": tags: - config when: - os: windows - /Alucinod/Saved/Config/WindowsNoEditor/Input.ini: + "/Alucinod/Saved/Config/WindowsNoEditor/Input.ini": tags: - config when: - os: windows - /Alucinod/Saved/SaveGames/GameData.sav: + "/Alucinod/Saved/SaveGames/GameData.sav": tags: - save when: - os: windows - /Alucinod/Saved/SaveGames/OptionsData.sav: + "/Alucinod/Saved/SaveGames/OptionsData.sav": tags: - config when: @@ -25882,7 +25968,7 @@ Alucinod: installDir: Alucinod: {} launch: - /Alucinod.exe: + "/Alucinod.exe": - when: - os: windows store: steam @@ -25890,7 +25976,7 @@ Alucinod: id: 727040 Alum: files: - /Saved Games/Alum: + "/Saved Games/Alum": tags: - save when: @@ -25898,19 +25984,19 @@ Alum: installDir: Alum: {} launch: - /Alum: + "/Alum": - when: - os: linux store: steam - /Alum.app: + "/Alum.app": - when: - os: mac store: steam - /Alum.exe: + "/Alum.exe": - when: - os: windows store: steam - /winsetup.exe: + "/winsetup.exe": - when: - os: windows store: steam @@ -25920,7 +26006,7 @@ Alvarok: installDir: Alvarok: {} launch: - /ALVAROK_stm.exe: + "/ALVAROK_stm.exe": - when: - os: windows store: steam @@ -25928,7 +26014,7 @@ Alvarok: id: 729270 Alvastia Chronicles: files: - /Packages/KEMCO.AlvastiaChronicles_f2bp5vqmgh7cp/SystemAppData/wgs/0009E7027027425A_0000000000000000000000006216911F: + "/Packages/KEMCO.AlvastiaChronicles_f2bp5vqmgh7cp/SystemAppData/wgs/0009E7027027425A_0000000000000000000000006216911F": tags: - config - save @@ -25938,7 +26024,7 @@ Alvastia Chronicles: installDir: Alvastia Chronicles: {} launch: - /AlvastiaChronicles.exe: + "/AlvastiaChronicles.exe": - when: - os: windows store: steam @@ -25951,7 +26037,7 @@ Alveari: id: 484990 Alvin and the Chipmunks: files: - /SaveGames: + "/SaveGames": tags: - save when: @@ -25963,30 +26049,30 @@ Alvora Tactics: installDir: Alvora Tactics: {} launch: - /AlvoraTactics.exe: + "/AlvoraTactics.exe": - when: - os: windows store: steam steam: id: 643900 -Alwa's Awakening: +"Alwa's Awakening": files: - '/.config/unity3d/EldenPixels/Alwa''s Awakening/playerInfo[1, 2 or 3].dat': + "/.config/unity3d/EldenPixels/Alwa's Awakening/playerInfo[1, 2 or 3].dat": tags: - save when: - os: linux - /.config/unity3d/EldenPixels/Alwa's Awakening/settings.dat: + "/.config/unity3d/EldenPixels/Alwa's Awakening/settings.dat": tags: - config when: - os: linux - /AppData/LocalLow/EldenPixels/Alwa's Awakening: + "/AppData/LocalLow/EldenPixels/Alwa's Awakening": tags: - save when: - os: windows - /AppData/LocalLow/EldenPixels/Alwa's Awakening/settings.dat: + "/AppData/LocalLow/EldenPixels/Alwa's Awakening/settings.dat": tags: - config when: @@ -25994,34 +26080,34 @@ Alwa's Awakening: gog: id: 1396087560 installDir: - Alwa's Awakening: {} + "Alwa's Awakening": {} launch: - /AlwasAwakening.app/Contents/MacOS/AlwasAwakening: + "/AlwasAwakening.app/Contents/MacOS/AlwasAwakening": - when: - os: mac store: steam - /AlwasAwakening.exe: + "/AlwasAwakening.exe": - when: - os: windows store: steam - /AlwasAwakening.x86: + "/AlwasAwakening.x86": - when: - os: linux store: steam registry: - HKEY_CURRENT_USER/Software/EldenPixels/Alwa's Awakening: + "HKEY_CURRENT_USER/Software/EldenPixels/Alwa's Awakening": tags: - config steam: id: 549260 -Alwa's Legacy: +"Alwa's Legacy": files: - /.config/unity3d/EldenPixels/Alwa's Legacy: + "/.config/unity3d/EldenPixels/Alwa's Legacy": tags: - config when: - os: linux - /.config/unity3d/EldenPixels/Alwa's Legacy/Settings.dat: + "/.config/unity3d/EldenPixels/Alwa's Legacy/Settings.dat": tags: - config when: @@ -26032,22 +26118,22 @@ Alwa's Legacy: gogExtra: - 2118716711 installDir: - Alwa's Legacy: {} + "Alwa's Legacy": {} launch: - /AlwasLegacy.app/Contents/MacOS/AlwasLegacy: + "/AlwasLegacy.app/Contents/MacOS/AlwasLegacy": - when: - os: mac store: steam - /AlwasLegacy.exe: + "/AlwasLegacy.exe": - when: - os: windows store: steam - /AlwasLegacy.x86: + "/AlwasLegacy.x86": - when: - bit: 32 os: linux store: steam - /AlwasLegacy.x86_64: + "/AlwasLegacy.x86_64": - when: - bit: 64 os: linux @@ -26061,17 +26147,17 @@ Always Higher: id: 497300 Always Remember Me: files: - /.renpy/Remember_Me-1.3: + "/.renpy/Remember_Me-1.3": tags: - save when: - os: linux - /Library/RenPy/Remember_Me-1.3: + "/Library/RenPy/Remember_Me-1.3": tags: - save when: - os: mac - /Renpy/Remember_Me-1.3: + "/Renpy/Remember_Me-1.3": tags: - save when: @@ -26079,15 +26165,15 @@ Always Remember Me: installDir: AlwaysRememberMe: {} launch: - /Always Remember Me.app: + "/Always Remember Me.app": - when: - os: mac store: steam - /Always Remember Me.exe: + "/Always Remember Me.exe": - when: - os: windows store: steam - /Always Remember Me.sh: + "/Always Remember Me.sh": - when: - os: linux store: steam @@ -26095,17 +26181,17 @@ Always Remember Me: id: 291030 Always Sometimes Monsters: files: - /Game.ini: + "/Game.ini": tags: - config when: - os: windows - /Save01.rvdata2: + "/Save01.rvdata2": tags: - save when: - os: windows - /My Games/ASM: + "/My Games/ASM": tags: - config - save @@ -26116,15 +26202,15 @@ Always Sometimes Monsters: installDir: Always Sometimes Monsters: {} launch: - /Always Sometimes Monsters.app: + "/Always Sometimes Monsters.app": - when: - os: mac store: steam - /Game.exe: + "/Game.exe": - when: - os: windows store: steam - /runasm.bin: + "/runasm.bin": - when: - bit: 64 os: linux @@ -26133,12 +26219,12 @@ Always Sometimes Monsters: id: 274310 Always the Same Blue Sky...: files: - /RenPy/Always The Same Blue Sky-1334743217/*.save: + "/RenPy/Always The Same Blue Sky-1334743217/*.save": tags: - save when: - os: windows - /RenPy/Always The Same Blue Sky-1334743217/persistent: + "/RenPy/Always The Same Blue Sky-1334743217/persistent": tags: - config when: @@ -26146,15 +26232,15 @@ Always the Same Blue Sky...: installDir: Always The Same Blue Sky: {} launch: - /AlwaysTheSameBlueSky.app: + "/AlwaysTheSameBlueSky.app": - when: - os: mac store: steam - /AlwaysTheSameBlueSky.exe: + "/AlwaysTheSameBlueSky.exe": - when: - os: windows store: steam - /AlwaysTheSameBlueSky.sh: + "/AlwaysTheSameBlueSky.sh": - when: - os: linux store: steam @@ -26166,7 +26252,7 @@ Amairo Chocolate: installDir: Amairo Chocolate: {} launch: - /amairo.exe: + "/amairo.exe": - when: - os: windows store: steam @@ -26176,8 +26262,8 @@ Amalgam: installDir: Amalgam: {} launch: - /hl2.exe: - - arguments: '-game Amalgam' + "/hl2.exe": + - arguments: "-game Amalgam" when: - os: windows store: steam @@ -26187,26 +26273,26 @@ Amanda the Adventurer: installDir: Amanda the Adventurer: {} launch: - /Amanda The Adventurer.exe: + "/Amanda The Adventurer.exe": - when: - store: steam steam: id: 2166060 -Amanda's Sticker Book: +"Amanda's Sticker Book": installDir: AmandasStickerBook: {} launch: - /AmandasStickerBook.exe: + "/AmandasStickerBook.exe": - when: - os: windows store: steam steam: id: 985640 -Amanda's Sticker Book 2 - Amazing Wildlife: +"Amanda's Sticker Book 2 - Amazing Wildlife": installDir: - Amanda's Sticker Book 2: {} + "Amanda's Sticker Book 2": {} launch: - /AmandasStickerBook2.exe: + "/AmandasStickerBook2.exe": - when: - os: windows store: steam @@ -26221,61 +26307,61 @@ Amaranthine: installDir: Amaranthine: {} launch: - /Amaranthine.exe: + "/Amaranthine.exe": - when: - os: windows store: steam - /runner: + "/runner": - when: - os: linux store: steam steam: id: 454900 -'Amaranthine Voyage: The Living Mountain': +"Amaranthine Voyage: The Living Mountain": installDir: - Amaranthine Voyage The Living Mountain Collector's Edition: {} + "Amaranthine Voyage The Living Mountain Collector's Edition": {} launch: - /Amaranthine_Voyage_The_Living_Mountain_CE.exe: + "/Amaranthine_Voyage_The_Living_Mountain_CE.exe": - when: - os: windows store: steam steam: id: 647910 -'Amaranthine Voyage: The Obsidian Book': +"Amaranthine Voyage: The Obsidian Book": installDir: - Amaranthine Voyage The Obsidian Book Collector's Edition: {} + "Amaranthine Voyage The Obsidian Book Collector's Edition": {} launch: - /AmaranthineVoyage_TheObsidianBook_CE.exe: + "/AmaranthineVoyage_TheObsidianBook_CE.exe": - when: - os: windows store: steam steam: id: 887940 -'Amaranthine Voyage: The Orb of Purity': +"Amaranthine Voyage: The Orb of Purity": installDir: - Amaranthine Voyage The Orb of Purity Collector's Edition: {} + "Amaranthine Voyage The Orb of Purity Collector's Edition": {} launch: - /AmaranthineVoyage_TheOrbOfPurity_CE.exe: + "/AmaranthineVoyage_TheOrbOfPurity_CE.exe": - when: - os: windows store: steam steam: id: 1030190 -'Amaranthine Voyage: The Shadow of Torment': +"Amaranthine Voyage: The Shadow of Torment": installDir: - Amaranthine Voyage The Shadow of Torment Collector's Edition: {} + "Amaranthine Voyage The Shadow of Torment Collector's Edition": {} launch: - /AmaranthineVoyage_TheShadowofTormentCE.exe: + "/AmaranthineVoyage_TheShadowofTormentCE.exe": - when: - os: windows store: steam steam: id: 796080 -'Amaranthine Voyage: The Tree of Life': +"Amaranthine Voyage: The Tree of Life": installDir: - Amaranthine Voyage The Tree of Life Collector's Edition: {} + "Amaranthine Voyage The Tree of Life Collector's Edition": {} launch: - /AmaranthineVoyage_TreeOfLife_CE.exe: + "/AmaranthineVoyage_TreeOfLife_CE.exe": - when: - store: steam steam: @@ -26284,15 +26370,15 @@ Amatarasu Riddle Star: installDir: Amatarasu Riddle Star: {} launch: - /AmatarasuRiddleStar.app: + "/AmatarasuRiddleStar.app": - when: - os: mac store: steam - /AmatarasuRiddleStar.exe: + "/AmatarasuRiddleStar.exe": - when: - os: windows store: steam - /AmatarasuRiddleStar.sh: + "/AmatarasuRiddleStar.sh": - when: - os: linux store: steam @@ -26300,12 +26386,12 @@ Amatarasu Riddle Star: id: 768090 Amatsutsumi: files: - /save/*.bak: + "/save/*.bak": tags: - save when: - os: windows - /save/*.dat: + "/save/*.dat": tags: - save when: @@ -26316,7 +26402,7 @@ Amaze: installDir: aMAZE: {} launch: - /aMAZE.exe: + "/aMAZE.exe": - when: - os: windows store: steam @@ -26326,7 +26412,7 @@ Amaze 2: installDir: aMAZE 2: {} launch: - /aMAZE2.exe: + "/aMAZE2.exe": - when: - os: windows store: steam @@ -26334,7 +26420,7 @@ Amaze 2: id: 628750 Amaze 3D: files: - /.: + "/.": tags: - save when: @@ -26342,7 +26428,7 @@ Amaze 3D: installDir: aMAZE 3D: {} launch: - /aMAZE 3D.exe: + "/aMAZE 3D.exe": - when: - os: windows store: steam @@ -26352,7 +26438,7 @@ Amaze ABC: installDir: aMAZE ABC: {} launch: - /aMAZE ABC.exe: + "/aMAZE ABC.exe": - when: - os: windows store: steam @@ -26365,7 +26451,7 @@ Amaze Bowl: id: 869910 Amaze Christmas: files: - /.: + "/.": tags: - save when: @@ -26373,7 +26459,7 @@ Amaze Christmas: installDir: aMAZE Christmas: {} launch: - /aMAZE Christmas.exe: + "/aMAZE Christmas.exe": - when: - os: windows store: steam @@ -26381,7 +26467,7 @@ Amaze Christmas: id: 986990 Amaze Classic: files: - /.: + "/.": tags: - save when: @@ -26389,17 +26475,17 @@ Amaze Classic: installDir: aMAZE Classic: {} launch: - /aMAZE Classic.exe: + "/aMAZE Classic.exe": - when: - os: windows store: steam steam: id: 853860 -'Amaze Classic: Inverted': +"Amaze Classic: Inverted": installDir: aMAZE Classic Inverted: {} launch: - /aMAZE Classic Inverted.exe: + "/aMAZE Classic Inverted.exe": - when: - os: windows store: steam @@ -26407,7 +26493,7 @@ Amaze Classic: id: 874010 Amaze Dark Times: files: - /.: + "/.": tags: - save when: @@ -26415,7 +26501,7 @@ Amaze Dark Times: installDir: aMAZE Dark Times: {} launch: - /aMAZE DT.exe: + "/aMAZE DT.exe": - when: - os: windows store: steam @@ -26423,7 +26509,7 @@ Amaze Dark Times: id: 692200 Amaze Double: files: - /.: + "/.": tags: - save when: @@ -26431,7 +26517,7 @@ Amaze Double: installDir: aMAZE Double: {} launch: - /aMAZE Double.exe: + "/aMAZE Double.exe": - when: - os: windows store: steam @@ -26439,7 +26525,7 @@ Amaze Double: id: 736840 Amaze Easter: files: - /.: + "/.": tags: - save when: @@ -26447,7 +26533,7 @@ Amaze Easter: installDir: aMAZE Easter: {} launch: - /aMAZE Easter.exe: + "/aMAZE Easter.exe": - when: - os: windows store: steam @@ -26457,7 +26543,7 @@ Amaze Frozen: installDir: aMAZE Frozen: {} launch: - /aMAZE Frozen.exe: + "/aMAZE Frozen.exe": - when: - os: windows store: steam @@ -26465,7 +26551,7 @@ Amaze Frozen: id: 828910 Amaze Gears: files: - /.: + "/.": tags: - save when: @@ -26473,7 +26559,7 @@ Amaze Gears: installDir: aMAZE Gears: {} launch: - /aMAZE Gears.exe: + "/aMAZE Gears.exe": - when: - os: windows store: steam @@ -26483,7 +26569,7 @@ Amaze Gears 2: installDir: aMAZE Gears 2: {} launch: - /aMAZE Gears 2.exe: + "/aMAZE Gears 2.exe": - when: - os: windows store: steam @@ -26493,7 +26579,7 @@ Amaze Halloween: installDir: aMAZE Halloween: {} launch: - /aMAZE Halloween.exe: + "/aMAZE Halloween.exe": - when: - os: windows store: steam @@ -26501,7 +26587,7 @@ Amaze Halloween: id: 949030 Amaze Lunar: files: - /.: + "/.": tags: - save when: @@ -26509,7 +26595,7 @@ Amaze Lunar: installDir: aMAZE Lunar: {} launch: - /aMAZE Lunar.exe: + "/aMAZE Lunar.exe": - when: - os: windows store: steam @@ -26519,7 +26605,7 @@ Amaze St. Patrick: installDir: aMAZE St.Patrick: {} launch: - /aMAZE St.Patrick.exe: + "/aMAZE St.Patrick.exe": - when: - os: windows store: steam @@ -26529,7 +26615,7 @@ Amaze Untouchable: installDir: aMAZE Untouchable: {} launch: - /aMAZE Untouchable.exe: + "/aMAZE Untouchable.exe": - when: - os: windows store: steam @@ -26539,7 +26625,7 @@ Amaze Valentine: installDir: aMAZE Valentine: {} launch: - /aMAZE Valentine.exe: + "/aMAZE Valentine.exe": - when: - os: windows store: steam @@ -26547,7 +26633,7 @@ Amaze Valentine: id: 1001880 Amaze Zero: files: - /.: + "/.": tags: - save when: @@ -26555,21 +26641,21 @@ Amaze Zero: installDir: aMAZE ZER0: {} launch: - /aMAZE ZER0.exe: + "/aMAZE ZER0.exe": - when: - os: windows store: steam steam: id: 679660 -Amaze'D: +"Amaze'D": installDir: AmazeD 3D: {} launch: - /AmazeD 3D.exe: + "/AmazeD 3D.exe": - when: - os: windows store: steam - /AmazeD_3D_Mac.app: + "/AmazeD_3D_Mac.app": - when: - os: mac store: steam @@ -26579,38 +26665,38 @@ Amazeing Lemons: installDir: Amazeing lemons: {} launch: - /mazeoflemons.exe: + "/mazeoflemons.exe": - when: - os: windows store: steam steam: id: 754400 -'Amazing Adventures: Around the World': +"Amazing Adventures: Around the World": installDir: Amazing Adventures Around the World: {} launch: - /AmazingAdventures2.exe: + "/AmazingAdventures2.exe": - when: - store: steam steam: id: 3530 -'Amazing Adventures: The Lost Tomb': +"Amazing Adventures: The Lost Tomb": installDir: Amazing Adventures The Lost Tomb: {} launch: - /AmazingAdventures.exe: + "/AmazingAdventures.exe": - when: - store: steam steam: id: 3510 Amazing Cultivation Simulator: files: - /saves: + "/saves": tags: - save when: - store: gog - /steamapps/common/AmazingCultivationSimulator/saves: + "/steamapps/common/AmazingCultivationSimulator/saves": tags: - save when: @@ -26626,8 +26712,8 @@ Amazing Cultivation Simulator: installDir: AmazingCultivationSimulator: {} launch: - /Amazing Cultivation Simulator.exe: - - arguments: '-st' + "/Amazing Cultivation Simulator.exe": + - arguments: "-st" when: - store: steam steam: @@ -26641,7 +26727,7 @@ Amazing Human: installDir: Amazing Human: {} launch: - /Amazing Human.exe: + "/Amazing Human.exe": - when: - os: windows store: steam @@ -26654,7 +26740,7 @@ Amazing Princess Sarah: installDir: AmazingPrincessSarah: {} launch: - /AmazingPrincessSarah.exe: + "/AmazingPrincessSarah.exe": - when: - store: steam steam: @@ -26671,20 +26757,20 @@ Amazing Trivia: installDir: Amazing Trivia: {} launch: - /AT.app: + "/AT.app": - when: - os: mac store: steam - /AT.exe: + "/AT.exe": - when: - os: windows store: steam - /AT.x86: + "/AT.x86": - when: - bit: 32 os: linux store: steam - /AT.x86_64: + "/AT.x86_64": - when: - bit: 64 os: linux @@ -26695,17 +26781,17 @@ Amazing World: installDir: Amazing World: {} launch: - /AmazingWorld.app: + "/AmazingWorld.app": - when: - os: mac store: steam - /AmazingWorld.exe: + "/AmazingWorld.exe": - when: - os: windows store: steam steam: id: 293500 -'Amazing: A House In Kansas VR': +"Amazing: A House In Kansas VR": installDir: Amazing - A House In Kansas VR: {} steam: @@ -26719,75 +26805,75 @@ Amazon Rush: installDir: Amazon Rush: {} launch: - /AmazonRush_Linux.x86: + "/AmazonRush_Linux.x86": - when: - os: linux store: steam - /AmazonRush_Windows.exe: + "/AmazonRush_Windows.exe": - when: - os: windows store: steam - /AmazonRush_macOS.app: + "/AmazonRush_macOS.app": - when: - os: mac store: steam steam: id: 811540 -'Amazon: Guardians of Eden': +"Amazon: Guardians of Eden": gog: id: 2012885158 Amber Tail Adventure: installDir: Amber Tail Adventure: {} launch: - /ATA.exe: + "/ATA.exe": - when: - os: windows store: steam steam: id: 614460 -Amber's Airline - 7 Wonders: +"Amber's Airline - 7 Wonders": installDir: - Amber's Airline - 7 Wonders: {} + "Amber's Airline - 7 Wonders": {} launch: - /AA2_Steam_Mac.app/Contents/MacOS/AA2_Steam_Mac: + "/AA2_Steam_Mac.app/Contents/MacOS/AA2_Steam_Mac": - when: - os: mac store: steam - /Amber's Airline 2.exe: + "/Amber's Airline 2.exe": - when: - bit: 64 os: windows store: steam steam: id: 1029860 -Amber's Airline - High Hopes: +"Amber's Airline - High Hopes": installDir: - Amber's Airline High Hopes: {} + "Amber's Airline High Hopes": {} launch: - /AA1.exe: + "/AA1.exe": - when: - os: windows store: steam - /AA1_Mac.app/Contents/MacOS/AA1_Mac: + "/AA1_Mac.app/Contents/MacOS/AA1_Mac": - when: - os: mac store: steam steam: id: 900050 -Amber's Magic Shop: +"Amber's Magic Shop": installDir: AmbersMagicShop: {} launch: - /AMS.app: + "/AMS.app": - when: - os: mac store: steam - /AMS.exe: + "/AMS.exe": - when: - os: windows store: steam - /AMS.sh: + "/AMS.sh": - when: - os: linux store: steam @@ -26797,7 +26883,7 @@ Amberial Dreams: installDir: Amberial Dreams: {} launch: - /Amberial Dreams/Amberial Dreams.exe: + "/Amberial Dreams/Amberial Dreams.exe": - when: - os: windows store: steam @@ -26810,7 +26896,7 @@ Amberskull: installDir: Amberskull: {} launch: - /Amberskull.exe: + "/Amberskull.exe": - when: - os: windows store: steam @@ -26820,7 +26906,7 @@ Ambidangerous: installDir: Ambidangerous: {} launch: - /ambidangerous.exe: + "/ambidangerous.exe": - when: - os: windows store: steam @@ -26830,7 +26916,7 @@ Ambienz: installDir: Ambienz: {} launch: - /Ambienz.exe: + "/Ambienz.exe": - when: - os: windows store: steam @@ -26840,7 +26926,7 @@ Ambition: installDir: Ambition: {} launch: - /Ambition-Win.exe: + "/Ambition-Win.exe": - when: - bit: 64 os: windows @@ -26851,23 +26937,23 @@ Ambition of the Slimes: installDir: Ambition of the SLIMES: {} launch: - /SlimeSteam.exe: + "/SlimeSteam.exe": - when: - os: windows store: steam steam: id: 568910 -'Ambition: A Minuet in Power': +"Ambition: A Minuet in Power": gog: id: 1748947415 installDir: Ambition A Minuet in Power: {} launch: - /mac_content.app/Contents/MacOS/Ambition A Minuet in Power: + "/mac_content.app/Contents/MacOS/Ambition A Minuet in Power": - when: - os: mac store: steam - /windows_content/Ambition A Minuet in Power.exe: + "/windows_content/Ambition A Minuet in Power.exe": - when: - os: windows store: steam @@ -26875,23 +26961,24 @@ Ambition of the Slimes: id: 949200 Ambre: files: - /game/saves/*.save: + "/game/saves/*.save": tags: - save when: - os: windows - /renpy/config.py: + "/renpy/config.py": tags: - config when: - - os: windows - store: steam - /renpy/Ambre - Steam Edition-1487343621/*.save: + - os: windows + "/renpy/Ambre - Steam Edition-1487343621/*.save": tags: - save when: - - store: steam - /renpy/Ambre-1440530563/*.save: + - os: windows + store: steam + "/renpy/Ambre-1440530563/*.save": tags: - save when: @@ -26899,15 +26986,15 @@ Ambre: installDir: Ambre - a heartbreaking kinetic novel: {} launch: - /Ambre_-_Steam_Edition.app: + "/Ambre_-_Steam_Edition.app": - when: - os: mac store: steam - /Ambre_-_Steam_Edition.exe: + "/Ambre_-_Steam_Edition.exe": - when: - os: windows store: steam - /Ambre_-_Steam_Edition.sh: + "/Ambre_-_Steam_Edition.sh": - when: - os: linux store: steam @@ -26919,7 +27006,7 @@ Ambrosia: installDir: Ambrosia: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: @@ -26928,7 +27015,7 @@ Ambush Tactics: installDir: AMBUSH tactics: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -26936,7 +27023,7 @@ Ambush Tactics: id: 709850 Ame no Marginal: files: - /savedata: + "/savedata": tags: - save when: @@ -26944,7 +27031,7 @@ Ame no Marginal: installDir: Ame no Marginal -Rain Marginal-: {} launch: - /Rain marginal.exe: + "/Rain marginal.exe": - when: - os: windows store: steam @@ -26956,12 +27043,12 @@ Ame no Marginal: id: 348950 Ameagari no Hanaby: files: - /Settings: + "/Settings": tags: - config when: - os: windows - /AppData/LocalLow/Enigmatic Network/Ameagari no Hanaby: + "/AppData/LocalLow/Enigmatic Network/Ameagari no Hanaby": tags: - save when: @@ -26969,11 +27056,11 @@ Ameagari no Hanaby: installDir: Ameagari no Hanaby: {} launch: - /hanaby.app/Contents/MacOS/hanaby: + "/hanaby.app/Contents/MacOS/hanaby": - when: - os: mac store: steam - /hanaby.exe: + "/hanaby.exe": - when: - os: windows store: steam @@ -26983,17 +27070,17 @@ Ameagari no Hanaby: - config steam: id: 888990 -Amelia's Curse: +"Amelia's Curse": steam: id: 778500 Amelie: files: - /renpy/Amelie-1633011796/*.save: + "/renpy/Amelie-1633011796/*.save": tags: - save when: - os: windows - /renpy/Amelie-1633011796/persistent: + "/renpy/Amelie-1633011796/persistent": tags: - config when: @@ -27001,15 +27088,15 @@ Amelie: installDir: Amelie: {} launch: - /Amelie.app: + "/Amelie.app": - when: - os: mac store: steam - /Amelie.exe: + "/Amelie.exe": - when: - os: windows store: steam - /Amelie.sh: + "/Amelie.sh": - when: - os: linux store: steam @@ -27019,7 +27106,7 @@ Ameline and the Ultimate Burger: installDir: Ameline and the Ultimate Burger: {} launch: - /Ameline_TheUltimateBurger.exe: + "/Ameline_TheUltimateBurger.exe": - when: - os: windows store: steam @@ -27029,7 +27116,7 @@ Amelon: installDir: Amelon: {} launch: - /Amelon.exe: + "/Amelon.exe": - when: - bit: 64 os: windows @@ -27038,92 +27125,92 @@ Amelon: id: 763210 America: files: - /America.ini: + "/America.ini": tags: - config when: - os: windows - /Save: + "/Save": tags: - save when: - os: windows - /Save2 for the Expansion Pack: + "/Save2 for the Expansion Pack": tags: - save when: - os: windows -America's Army: +"America's Army": files: - /System: + "/System": tags: - config when: - os: windows - /System/Save: + "/System/Save": tags: - save when: - os: windows -America's Army 3: +"America's Army 3": files: - /AA3Game/Config: + "/AA3Game/Config": tags: - config when: - os: windows - /America's Army 3: + "/America's Army 3": tags: - save when: - os: windows installDir: - america's army 3: {} + "america's army 3": {} launch: - /Binaries/AA3Loader.exe: + "/Binaries/AA3Loader.exe": - when: - store: steam - workingDir: /Binaries + workingDir: "/Binaries" steam: id: 13140 -'America''s Army: Proving Grounds': +"America's Army: Proving Grounds": files: - /My Games/America's Army Proving Grounds/AAGame/Config: + "/My Games/America's Army Proving Grounds/AAGame/Config": tags: - config when: - os: windows installDir: - America's Army: {} + "America's Army": {} launch: - /AAPG/Binaries/Win32/AAGame.exe: + "/AAPG/Binaries/Win32/AAGame.exe": - when: - os: windows store: steam - workingDir: /AAPG/Binaries/Win32 - /AAPG/Binaries/Win32/AALauncher32.exe: + workingDir: "/AAPG/Binaries/Win32" + "/AAPG/Binaries/Win32/AALauncher32.exe": - arguments: /DS when: - store: steam - workingDir: /AAPG/Binaries/Win32 + workingDir: "/AAPG/Binaries/Win32" steam: id: 203290 -America's Retribution: +"America's Retribution": installDir: - America's Retribution: {} + "America's Retribution": {} launch: - /nw.exe: + "/nw.exe": - when: - bit: 64 os: windows store: steam steam: id: 835110 -America's Retribution Term 2: +"America's Retribution Term 2": installDir: AR_T2_win64: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -27133,7 +27220,7 @@ American Angst: installDir: American Angst: {} launch: - /americanangst.exe: + "/americanangst.exe": - when: - os: windows store: steam @@ -27144,7 +27231,7 @@ American Arcadia: id: 1249040 American Conquest: files: - /Save: + "/Save": tags: - save when: @@ -27154,21 +27241,21 @@ American Conquest: installDir: American Conquest: {} launch: - /DMCR.EXE: + "/DMCR.EXE": - when: - store: steam steam: id: 115210 -'American Conquest: Divided Nation': +"American Conquest: Divided Nation": files: - /Run/Save: + "/Run/Save": tags: - save when: - os: windows -'American Conquest: Fight Back': +"American Conquest: Fight Back": files: - /Save: + "/Save": tags: - save when: @@ -27178,7 +27265,7 @@ American Conquest: installDir: American Conquest - Fight Back: {} launch: - /dmcr.exe: + "/dmcr.exe": - when: - store: steam steam: @@ -27187,15 +27274,15 @@ American Farmer: installDir: AmericanFarmer: {} launch: - /Game: + "/Game": - when: - os: linux store: steam - /Game.app: + "/Game.app": - when: - os: mac store: steam - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -27203,12 +27290,12 @@ American Farmer: id: 784180 American Fugitive: files: - /AppData/LocalLow/Fallen Tree Games Ltd/American Fugitive/SaveGame: + "/AppData/LocalLow/Fallen Tree Games Ltd/American Fugitive/SaveGame": tags: - save when: - os: windows - /AppData/LocalLow/Fallen Tree Games Ltd/American Fugitive/SaveGame/Profile/PlayerProfile.dat.bson: + "/AppData/LocalLow/Fallen Tree Games Ltd/American Fugitive/SaveGame/Profile/PlayerProfile.dat.bson": tags: - config when: @@ -27216,7 +27303,7 @@ American Fugitive: installDir: American Fugitive: {} launch: - /AmericanFugitive.exe: + "/AmericanFugitive.exe": - when: - store: steam registry: @@ -27231,38 +27318,38 @@ American Hero: id: gogExtra: - 1160264518 -American McGee's Alice: +"American McGee's Alice": files: - /base/config.cfg: + "/base/config.cfg": tags: - config when: - os: windows - /base/save: + "/base/save": tags: - save when: - os: windows -American McGee's Alice (2011): +"American McGee's Alice (2011)": files: - /My Games/American McGee's Alice/config.cfg: + "/My Games/American McGee's Alice/config.cfg": tags: - config when: - os: windows - /My Games/American McGee's Alice/save: + "/My Games/American McGee's Alice/save": tags: - save when: - os: windows -American McGee's Grimm: +"American McGee's Grimm": files: - /*/*/GrimmGame/Config: + "/*/*/GrimmGame/Config": tags: - config when: - os: windows - /*/*/GrimmGame/Config/GameSetting.ini: + "/*/*/GrimmGame/Config/GameSetting.ini": tags: - save when: @@ -27272,7 +27359,7 @@ American McGee's Grimm: installDir: Grimm: {} launch: - /GrimmLauncher.exe: + "/GrimmLauncher.exe": - when: - os: windows store: steam @@ -27282,35 +27369,35 @@ American Mensa Academy: installDir: american_mensa: {} launch: - /AmericanMensaAcademy.exe: + "/AmericanMensaAcademy.exe": - when: - os: windows store: steam steam: id: 214400 -'American Patriots: Boston Tea Party': +"American Patriots: Boston Tea Party": installDir: American Patriots Boston Tea Party: {} launch: - /American Patriots.app: + "/American Patriots.app": - when: - os: mac store: steam - /American Patriots.exe: + "/American Patriots.exe": - when: - os: windows store: steam - /American Patriots.x86: + "/American Patriots.x86": - when: - os: linux store: steam steam: id: 705750 -'American Patriots: The Swamp Fox': +"American Patriots: The Swamp Fox": installDir: American Patriots The Swamp Fox: {} launch: - /SwampFox.exe: + "/SwampFox.exe": - when: - bit: 64 os: windows @@ -27321,7 +27408,7 @@ American Powerhaul Train Simulator: installDir: AmericanPowerhaul: {} launch: - /standalone.exe: + "/standalone.exe": - when: - store: steam steam: @@ -27330,7 +27417,7 @@ American Railroads - Summit River & Pine Valley: installDir: American Railroads: {} launch: - /americanrailroads.exe: + "/americanrailroads.exe": - when: - os: windows store: steam @@ -27338,7 +27425,7 @@ American Railroads - Summit River & Pine Valley: id: 787930 American Theft 80s: files: - /AppData/LocalLow/Noble Muffins/American Theft 80s/saves: + "/AppData/LocalLow/Noble Muffins/American Theft 80s/saves": tags: - save when: @@ -27346,7 +27433,7 @@ American Theft 80s: installDir: American Theft 80s: {} launch: - /American Theft 80s.exe: + "/American Theft 80s.exe": - when: - bit: 64 os: windows @@ -27359,121 +27446,121 @@ American Theft 80s: id: 1321450 American Truck Simulator: files: - /Library/Application Support/American Truck Simulator/config.cfg: + "/Library/Application Support/American Truck Simulator/config.cfg": tags: - config when: - os: mac - /Library/Application Support/American Truck Simulator/profiles: + "/Library/Application Support/American Truck Simulator/profiles": tags: - save when: - os: mac - /userdata//270880/remote/profiles//config.cfg: + "/userdata//270880/remote/profiles//config.cfg": tags: - config when: - store: steam - /userdata//270880/remote/profiles//save: + "/userdata//270880/remote/profiles//save": tags: - save when: - store: steam - /American Truck Simulator/config.cfg: + "/American Truck Simulator/config.cfg": tags: - config when: - os: windows - /American Truck Simulator/profiles: + "/American Truck Simulator/profiles": tags: - save when: - os: windows - /American Truck Simulator/config.cfg: + "/American Truck Simulator/config.cfg": tags: - config when: - os: linux - /American Truck Simulator/profiles: + "/American Truck Simulator/profiles": tags: - save when: - os: linux id: steamExtra: - - 1209471 - - 1209470 - - 1162160 - - 1149810 - - 1116310 - - 1104880 - - 1076080 - - 1015160 - - 962750 - - 951650 - - 800370 - - 684630 - - 620610 - - 588600 - - 566890 - - 561620 - - 546260 - - 541260 - - 526940 - - 520550 - - 463740 - - 450550 - - 441960 - - 432710 - - 422310 - - 421090 - - 421081 - - 421080 - - 421070 - 300010 + - 421070 + - 421080 + - 421081 + - 421090 + - 422310 + - 432710 + - 441960 + - 450550 + - 463740 + - 520550 + - 526940 + - 541260 + - 546260 + - 561620 + - 566890 + - 588600 + - 620610 + - 684630 + - 800370 + - 951650 + - 962750 + - 1015160 + - 1076080 + - 1104880 + - 1116310 + - 1149810 + - 1162160 + - 1209470 + - 1209471 installDir: American Truck Simulator: {} launch: - /American Truck Simulator.app: + "/American Truck Simulator.app": - when: - os: mac store: steam - /bin/linux_x64/amtrucks: + "/bin/linux_x64/amtrucks": - when: - bit: 64 os: linux store: steam - workingDir: /bin/linux_x64 - /bin/win_x64/amtrucks.exe: + workingDir: "/bin/linux_x64" + "/bin/win_x64/amtrucks.exe": - when: - bit: 64 os: windows store: steam - - arguments: '-rdevice dx11' + - arguments: "-rdevice dx11" when: - bit: 64 os: windows store: steam - - arguments: '-rdevice gl' + - arguments: "-rdevice gl" when: - bit: 64 os: windows store: steam steam: id: 270880 -'American University Life: Welcome Week!': +"American University Life: Welcome Week!": installDir: American University Life ~Welcome Week!~: {} launch: - /American University Life.app: + "/American University Life.app": - when: - os: mac store: steam - /American University Life.exe: + "/American University Life.exe": - when: - os: windows store: steam - /American University Life.sh: + "/American University Life.sh": - when: - os: linux store: steam @@ -27484,14 +27571,14 @@ American VR Coasters: American VR Coasters: {} steam: id: 610260 -'Amerzone: The Explorer''s Legacy': +"Amerzone: The Explorer's Legacy": files: - /Launch/Settings.ini: + "/Launch/Settings.ini": tags: - config when: - os: windows - /Saved_*.bin: + "/Saved_*.bin": tags: - save when: @@ -27501,7 +27588,7 @@ American VR Coasters: installDir: Amerzone The Explorers Legacy: {} launch: - /Amerzone.exe: + "/Amerzone.exe": - when: - os: windows store: steam @@ -27514,12 +27601,12 @@ Amethlion: id: 915820 Amid Evil: files: - /AmidEvil/Saved: + "/AmidEvil/Saved": tags: - save when: - os: windows - /AmidEvil/Saved/Config/WindowsNoEditor: + "/AmidEvil/Saved/Config/WindowsNoEditor": tags: - config when: @@ -27528,28 +27615,27 @@ Amid Evil: id: 2023945788 id: gogExtra: - - 1555384361 - - 1630779642 - - 1615834314 - 1211833469 + - 1555384361 + - 1615834314 + - 1630779642 steamExtra: - - 1633340 - - 1852860 - 1198780 + - 1633340 - 1852860 installDir: Amid Evil: {} launch: - /AmidEvil.exe: + "/AmidEvil.exe": - when: - os: windows store: steam - - arguments: '-dx12' + - arguments: "-dx12" when: - bit: 64 os: windows store: steam - /AmidEvil.sh: + "/AmidEvil.sh": - when: - bit: 64 os: linux @@ -27575,7 +27661,7 @@ Amihailu in Dreamland: installDir: Amihailu in Dreamland: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: @@ -27583,45 +27669,45 @@ Amihailu in Dreamland: Amira: steam: id: 1371640 -'Amiss 13: The Curse': +"Amiss 13: The Curse": steam: id: 684830 -'Ammo Pigs: Armed and Delicious': +"Ammo Pigs: Armed and Delicious": installDir: Ammo Pigs Armed and Delicious: {} launch: - /Windows10/Ammo Pigs.exe: + "/Windows10/Ammo Pigs.exe": - when: - bit: 64 os: windows store: steam - /macOS/AmmoPigsAD.app: + "/macOS/AmmoPigsAD.app": - when: - os: mac store: steam steam: id: 877480 -'Amnesia: A Machine for Pigs': +"Amnesia: A Machine for Pigs": files: - /.frictionalgames/Amnesia/Pig: + "/.frictionalgames/Amnesia/Pig": tags: - config - save when: - os: linux - /Library/Application Support/Frictional Games/Amnesia/Pig: + "/Library/Application Support/Frictional Games/Amnesia/Pig": tags: - config - save when: - os: mac - /userdata//239200: + "/userdata//239200": tags: - config - save when: - store: steam - /Amnesia/Pig: + "/Amnesia/Pig": tags: - config - save @@ -27632,52 +27718,52 @@ Amira: installDir: Machine for Pigs: {} launch: - /AmnesiaAMFP.app: + "/AmnesiaAMFP.app": - when: - os: mac store: steam - /AmnesiaAMFP.bin.x86: + "/AmnesiaAMFP.bin.x86": - when: - bit: 32 os: linux store: steam - /AmnesiaAMFP.bin.x86_64: + "/AmnesiaAMFP.bin.x86_64": - when: - bit: 64 os: linux store: steam - /AmnesiaAMFPLauncher.app: + "/AmnesiaAMFPLauncher.app": - when: - os: mac store: steam - /Launcher.bin.x86: + "/Launcher.bin.x86": - when: - bit: 32 os: linux store: steam - /Launcher.bin.x86_64: + "/Launcher.bin.x86_64": - when: - bit: 64 os: linux store: steam - /Launcher.exe: + "/Launcher.exe": - when: - os: windows store: steam - /aamfp.exe: + "/aamfp.exe": - when: - os: windows store: steam steam: id: 239200 -'Amnesia: Memories': +"Amnesia: Memories": files: - /savedata/saveg.dat: + "/savedata/saveg.dat": tags: - save when: - os: windows - /savedata/system.dat: + "/savedata/system.dat": tags: - config when: @@ -27687,20 +27773,20 @@ Amira: installDir: Amnesia: {} launch: - /amnesia.exe: + "/amnesia.exe": - when: - os: windows store: steam steam: id: 359390 -'Amnesia: Rebirth': +"Amnesia: Rebirth": files: - /.local/share/frictionalgames/Amnesia Rebirth/Main: + "/.local/share/frictionalgames/Amnesia Rebirth/Main": tags: - config when: - os: linux - /My Games/Amnesia Rebirth/Main: + "/My Games/Amnesia Rebirth/Main": tags: - config - save @@ -27711,39 +27797,39 @@ Amira: installDir: Amnesia Rebirth: {} launch: - /Amnesia2.bin.x86_64: + "/Amnesia2.bin.x86_64": - when: - os: linux store: steam - /AmnesiaRebirth.exe: + "/AmnesiaRebirth.exe": - when: - os: windows store: steam steam: id: 999220 -'Amnesia: The Bunker': +"Amnesia: The Bunker": files: - /userdata//1944430/remote: + "/userdata//1944430/remote": tags: - config when: - store: steam - /userdata//1944430/remote/Main: + "/userdata//1944430/remote/Main": tags: - save when: - store: steam - /My Games/Amnesia The Bunker/Main: + "/My Games/Amnesia The Bunker/Main": tags: - config when: - os: windows - /My Games/Amnesia The Bunker/Main/Default: + "/My Games/Amnesia The Bunker/Main/Default": tags: - save when: - os: windows - /Packages/FrictionalGames.AmnesiaTheBunker_yhrbwy6qaj8bt/SystemAppData/wgs: + "/Packages/FrictionalGames.AmnesiaTheBunker_yhrbwy6qaj8bt/SystemAppData/wgs": tags: - save when: @@ -27754,28 +27840,28 @@ Amira: installDir: Amnesia The Bunker: {} launch: - /AmnesiaTheBunker.exe: + "/AmnesiaTheBunker.exe": - when: - bit: 64 os: windows store: steam steam: id: 1944430 -'Amnesia: The Dark Descent': +"Amnesia: The Dark Descent": files: - /.frictionalgames/Amnesia/Main: + "/.frictionalgames/Amnesia/Main": tags: - config - save when: - os: linux - /Library/Application Support/Frictional Games/Amnesia: + "/Library/Application Support/Frictional Games/Amnesia": tags: - config - save when: - os: mac - /Amnesia/Main: + "/Amnesia/Main": tags: - config - save @@ -27786,39 +27872,39 @@ Amira: installDir: Amnesia The Dark Descent: {} launch: - /Amnesia.app: + "/Amnesia.app": - when: - os: mac store: steam - /Amnesia.bin.x86: + "/Amnesia.bin.x86": - when: - bit: 32 os: linux store: steam - /Amnesia.bin.x86_64: + "/Amnesia.bin.x86_64": - when: - bit: 64 os: linux store: steam - /Amnesia.exe: + "/Amnesia.exe": - when: - os: windows store: steam - /Launcher.app: + "/Launcher.app": - when: - os: mac store: steam - /Launcher.bin.x86: + "/Launcher.bin.x86": - when: - bit: 32 os: linux store: steam - /Launcher.bin.x86_64: + "/Launcher.bin.x86_64": - when: - bit: 64 os: linux store: steam - /Launcher.exe: + "/Launcher.exe": - when: - os: windows store: steam @@ -27828,7 +27914,7 @@ Amok: installDir: AMOK: {} launch: - /AMOK.exe: + "/AMOK.exe": - when: - os: windows store: steam @@ -27838,7 +27924,7 @@ Amon: installDir: AMON: {} launch: - /AmonVR.exe: + "/AmonVR.exe": - when: - os: windows store: steam @@ -27848,51 +27934,51 @@ Among Ripples: installDir: AmongRipples: {} launch: - /AmongRipples.app: + "/AmongRipples.app": - when: - os: mac store: steam - /AmongRipples.exe: + "/AmongRipples.exe": - when: - os: windows store: steam - /AmongRipples.x86: + "/AmongRipples.x86": - when: - bit: 32 os: linux store: steam - /AmongRipples.x86_64: + "/AmongRipples.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 341720 -'Among Ripples: Shallow Waters': +"Among Ripples: Shallow Waters": steam: id: 1096090 Among Trees: installDir: Among Trees: {} launch: - /Among Trees.exe: + "/Among Trees.exe": - when: - store: steam steam: id: 897730 Among Us: files: - /AppData/LocalLow/Innersloth/Among Us: + "/AppData/LocalLow/Innersloth/Among Us": tags: - config when: - os: windows - /AppData/LocalLow/Innersloth/Among Us/playerStats3: + "/AppData/LocalLow/Innersloth/Among Us/playerStats3": tags: - save when: - os: windows - /Packages/Innersloth.AmongUs_fw5x688tam7rm/SystemAppData/Helium: + "/Packages/Innersloth.AmongUs_fw5x688tam7rm/SystemAppData/Helium": tags: - config when: @@ -27901,11 +27987,11 @@ Among Us: installDir: Among Us: {} launch: - /Among Us.exe: + "/Among Us.exe": - when: - os: windows store: steam - /AmongUs.app: + "/AmongUs.app": - when: - os: mac store: steam @@ -27924,15 +28010,15 @@ Among the Dead: installDir: Among the Dead: {} launch: - /nw.exe: - - arguments: '--in-process-gpu' + "/nw.exe": + - arguments: "--in-process-gpu" when: - store: steam steam: id: 774451 Among the Heavens: files: - /CorePunch Game Studio/Among The Heavens: + "/CorePunch Game Studio/Among The Heavens": tags: - save when: @@ -27940,25 +28026,25 @@ Among the Heavens: installDir: Among the Heavens: {} launch: - /Among The Heavens.app: + "/Among The Heavens.app": - when: - os: mac store: steam - /Among the Heavens: + "/Among the Heavens": - when: - os: linux store: steam - /AmongTheHeavens.exe: + "/AmongTheHeavens.exe": - when: - os: windows store: steam steam: id: 409380 -'Among the Innocent: A Stricken Tale': +"Among the Innocent: A Stricken Tale": installDir: amongtheinnocent: {} launch: - /AmongTheInnocent.exe: + "/AmongTheInnocent.exe": - when: - os: windows store: steam @@ -27966,18 +28052,18 @@ Among the Heavens: id: 558320 Among the Sleep: files: - /AppData/LocalLow/Krillbite Studio/Among The Sleep: + "/AppData/LocalLow/Krillbite Studio/Among The Sleep": tags: - config - save when: - os: windows - /unity3d/Krillbite Studio/Among The Sleep/*/profile.json: + "/unity3d/Krillbite Studio/Among The Sleep/*/profile.json": tags: - save when: - os: linux - /unity3d/Krillbite Studio/Among The Sleep/prefs: + "/unity3d/Krillbite Studio/Among The Sleep/prefs": tags: - config when: @@ -27987,15 +28073,15 @@ Among the Sleep: installDir: Among the Sleep: {} launch: - /Among the Sleep.app: + "/Among the Sleep.app": - when: - os: mac store: steam - /Among the Sleep.exe: + "/Among the Sleep.exe": - when: - os: windows store: steam - /Among the Sleep.x86: + "/Among the Sleep.x86": - when: - os: linux store: steam @@ -28005,11 +28091,11 @@ Amora: installDir: Amora: {} launch: - /Game.app: + "/Game.app": - when: - os: mac store: steam - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -28019,7 +28105,7 @@ Amora Crystal: installDir: Amora Crystal: {} launch: - /Amora Crystal.exe: + "/Amora Crystal.exe": - when: - os: windows store: steam @@ -28032,22 +28118,22 @@ Amoreon NightClub: id: 701100 Amorous: files: - /NonSteam: + "/NonSteam": tags: - config when: - os: windows - /Saves: + "/Saves": tags: - save when: - os: windows - /ShowMeSomeBooty: + "/ShowMeSomeBooty": tags: - config when: - os: windows - /options.json: + "/options.json": tags: - config when: @@ -28055,11 +28141,13 @@ Amorous: installDir: Amorous: {} launch: - /Amorous.Game.Unix: + "/Amorous.Game.Unix": - when: - os: mac store: steam - /Amorous.Game.Windows.exe: + - os: linux + store: steam + "/Amorous.Game.Windows.exe": - when: - os: windows store: steam @@ -28069,7 +28157,7 @@ Amortizer Off-Road: installDir: Amortizer Off-Road: {} launch: - /Amortizer OffRoad.exe: + "/Amortizer OffRoad.exe": - when: - store: steam steam: @@ -28078,7 +28166,7 @@ Amos From Outer Space: installDir: Amos From Outer Space: {} launch: - /AmosFromOuterSpace.exe: + "/AmosFromOuterSpace.exe": - when: - os: windows store: steam @@ -28086,7 +28174,7 @@ Amos From Outer Space: id: 399880 Ampersand: files: - /S3DClient.cfg: + "/S3DClient.cfg": tags: - config when: @@ -28094,7 +28182,7 @@ Ampersand: installDir: Ampersand: {} launch: - /FuryRacing.exe: + "/FuryRacing.exe": - when: - os: windows store: steam @@ -28102,7 +28190,7 @@ Ampersand: id: 410210 Ampersat: files: - '/AppData/LocalLow/Gaterooze, Ink/Ampersat': + "/AppData/LocalLow/Gaterooze, Ink/Ampersat": tags: - config when: @@ -28110,16 +28198,16 @@ Ampersat: installDir: Ampersat: {} launch: - /Ampersat.app/Contents/MacOS/Ampersat_1.0-Mac: + "/Ampersat.app/Contents/MacOS/Ampersat_1.0-Mac": - when: - os: mac store: steam - /Ampersat.exe: + "/Ampersat.exe": - when: - bit: 64 os: windows store: steam - /ampersat.x86_64: + "/ampersat.x86_64": - when: - bit: 64 os: linux @@ -28128,7 +28216,7 @@ Ampersat: id: 1356040 Amphora: files: - /data/profiles/*.json: + "/data/profiles/*.json": tags: - save when: @@ -28136,36 +28224,36 @@ Amphora: installDir: Amphora: {} launch: - /Amphora: + "/Amphora": - when: - os: linux store: steam - /Amphora.app: + "/Amphora.app": - when: - bit: 64 os: mac store: steam - /Amphora.exe: + "/Amphora.exe": - when: - bit: 32 os: windows store: steam steam: id: 331510 -'Amplitude: A Visual Novel': +"Amplitude: A Visual Novel": installDir: AMPLITUDEVisualNovel: {} launch: - /Amplitude-VisualNovel.app/Contents/MacOS/Amplitude-VisualNovel: + "/Amplitude-VisualNovel.app/Contents/MacOS/Amplitude-VisualNovel": - when: - os: mac store: steam - /Amplitude-VisualNovel.exe: + "/Amplitude-VisualNovel.exe": - when: - bit: 64 os: windows store: steam - /Amplitude-VisualNovel.sh: + "/Amplitude-VisualNovel.sh": - when: - bit: 64 os: linux @@ -28176,7 +28264,7 @@ Ampu-Tea: installDir: Ampu-Tea: {} launch: - /AmpuTea.exe: + "/AmpuTea.exe": - when: - os: windows store: steam @@ -28186,7 +28274,7 @@ Amulet Zero 零物语 - Optimize: installDir: Amulet_Zero.Optimize: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -28194,12 +28282,12 @@ Amulet Zero 零物语 - Optimize: id: 907330 Amulet of Dreams: files: - /MysteryTag/Amulet of Dreams/Player_*/session.dat: + "/MysteryTag/Amulet of Dreams/Player_*/session.dat": tags: - save when: - os: windows - /MysteryTag/Amulet of Dreams/Player_*/settings.ini: + "/MysteryTag/Amulet of Dreams/Player_*/settings.ini": tags: - config when: @@ -28207,7 +28295,7 @@ Amulet of Dreams: installDir: Amulet of Dreams: {} launch: - /Amulet of Dreams.exe: + "/Amulet of Dreams.exe": - when: - store: steam steam: @@ -28217,13 +28305,13 @@ Amulet of the Seven Souls: id: 702060 Amulets & Armor: files: - /S0000000: + "/S0000000": tags: - save when: - os: dos - os: windows - /config.ini: + "/config.ini": tags: - config when: @@ -28233,34 +28321,34 @@ Amygdala: installDir: Amygdala: {} launch: - /amygdala.bat: + "/amygdala.bat": - when: - os: windows store: steam - /amygdala.command: + "/amygdala.command": - when: - os: mac store: steam - workingDir: /amygdala.app/Content/MacOS - /amygdala.sh: + workingDir: "/amygdala.app/Content/MacOS" + "/amygdala.sh": - when: - os: linux store: steam steam: id: 369060 -An Adventurer's Tale: +"An Adventurer's Tale": installDir: - An Adventurer's Tale: {} + "An Adventurer's Tale": {} launch: - /An Adventurer's Tale.app: + "/An Adventurer's Tale.app": - when: - os: mac store: steam - /An Adventurer's Tale.exe: + "/An Adventurer's Tale.exe": - when: - os: windows store: steam - /An Adventurer's Tale.sh: + "/An Adventurer's Tale.sh": - when: - os: linux store: steam @@ -28268,7 +28356,7 @@ An Adventurer's Tale: id: 942580 An Airport for Aliens Currently Run by Dogs: files: - /AppData/LocalLow/Strange Scaffold/An Airport for Aliens Currently Run by Dogs/GameSaveFiles: + "/AppData/LocalLow/Strange Scaffold/An Airport for Aliens Currently Run by Dogs/GameSaveFiles": tags: - config - save @@ -28277,7 +28365,7 @@ An Airport for Aliens Currently Run by Dogs: installDir: An Airport for Aliens Currently Run by Dogs: {} launch: - /An Airport for Aliens Currently Run by Dogs.exe: + "/An Airport for Aliens Currently Run by Dogs.exe": - when: - bit: 64 os: windows @@ -28292,15 +28380,15 @@ An Alien with a Magnet: installDir: AlienMagnet: {} launch: - /aawam.app: + "/aawam.app": - when: - os: mac store: steam - /aawam.exe: + "/aawam.exe": - when: - os: windows store: steam - /aawam.x86: + "/aawam.x86": - when: - os: linux store: steam @@ -28310,7 +28398,7 @@ An Aspie Life: installDir: An Aspie Life: {} launch: - /AnAspieLife.exe: + "/AnAspieLife.exe": - when: - os: windows store: steam @@ -28318,7 +28406,7 @@ An Aspie Life: id: 786410 An Assassin in Orlandes: files: - /Documents: + "/Documents": tags: - save when: @@ -28326,21 +28414,21 @@ An Assassin in Orlandes: installDir: An Assassin in Orlandes: {} launch: - /Gamebook Adventures An Assassin in Orlandes.app: + "/Gamebook Adventures An Assassin in Orlandes.app": - when: - bit: 64 os: mac store: steam - /Gamebook Adventures An Assassin in Orlandes.exe: + "/Gamebook Adventures An Assassin in Orlandes.exe": - when: - os: windows store: steam - /Gamebook Adventures An Assassin in Orlandes.x86: + "/Gamebook Adventures An Assassin in Orlandes.x86": - when: - bit: 32 os: linux store: steam - /Gamebook Adventures An Assassin in Orlandes.x86_64: + "/Gamebook Adventures An Assassin in Orlandes.x86_64": - when: - bit: 64 os: linux @@ -28355,30 +28443,30 @@ An Egg Can Dream: installDir: An Egg Can Dream: {} launch: - /An Egg Can Dream.exe: + "/An Egg Can Dream.exe": - when: - os: windows store: steam steam: id: 1139100 -'An Elder Scrolls Legend: Battlespire': +"An Elder Scrolls Legend: Battlespire": files: - /MSS/DIG.INI: + "/MSS/DIG.INI": tags: - config when: - os: dos - /SAVE*: + "/SAVE*": tags: - save when: - os: dos - /SPIRE.CFG: + "/SPIRE.CFG": tags: - config when: - os: dos - 'C:/SPIRE.GRD': + "C:/SPIRE.GRD": tags: - config when: @@ -28393,7 +28481,7 @@ An Imp? A Fiend!: installDir: An Imp A Fiend: {} launch: - /An Imp A Fiend.exe: + "/An Imp A Fiend.exe": - when: - os: windows store: steam @@ -28403,20 +28491,20 @@ An Oath to the Stars: installDir: An Oath to the Stars: {} launch: - /AnOathToTheStars.app/Contents/MacOS/AnOathToTheStars: + "/AnOathToTheStars.app/Contents/MacOS/AnOathToTheStars": - when: - os: mac store: steam - /AnOathToTheStars.exe: + "/AnOathToTheStars.exe": - when: - os: windows store: steam - /AnOathToTheStars.x86: + "/AnOathToTheStars.x86": - when: - bit: 32 os: linux store: steam - /AnOathToTheStars.x86_64: + "/AnOathToTheStars.x86_64": - when: - bit: 64 os: linux @@ -28427,8 +28515,8 @@ An Occasional Dream: installDir: An Occasional Dream: {} launch: - /nw.exe: - - arguments: '--in-process-gpu' + "/nw.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam @@ -28438,7 +28526,7 @@ An Occurrence at Owl Creek Bridge: installDir: An Occurrence at Owl Creek Bridge: {} launch: - /An_Occurrence_at_Owl_Creek_Bridge.exe: + "/An_Occurrence_at_Owl_Creek_Bridge.exe": - when: - os: windows store: steam @@ -28446,7 +28534,7 @@ An Occurrence at Owl Creek Bridge: id: 1180020 An Octave Higher: files: - /An Octave Higher: + "/An Octave Higher": tags: - config - save @@ -28459,15 +28547,15 @@ An Octave Higher: installDir: An Octave Higher: {} launch: - /An Octave Higher: + "/An Octave Higher": - when: - os: linux store: steam - /An Octave Higher.app: + "/An Octave Higher.app": - when: - os: mac store: steam - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -28477,41 +28565,41 @@ An Octonaut Odyssey: installDir: AnOctonautOdyssey: {} launch: - /AnOctonautOdyssey.app: + "/AnOctonautOdyssey.app": - when: - bit: 64 os: mac store: steam - /AnOctonautOdyssey/AnOctonautOdyssey.exe: + "/AnOctonautOdyssey/AnOctonautOdyssey.exe": - when: - bit: 64 os: windows store: steam steam: id: 566320 -'An Odyssey: Echoes of War': +"An Odyssey: Echoes of War": installDir: An Odyssey Echoes of War: {} launch: - /An Odyssey Echoes of War.app/Contents/MacOS/An Odyssey Echoes of War: + "/An Odyssey Echoes of War.app/Contents/MacOS/An Odyssey Echoes of War": - when: - os: mac store: steam - /AnOdysseyEchoesOfWar: + "/AnOdysseyEchoesOfWar": - when: - os: linux store: steam - /AnOdysseyEchoesOfWar.exe: + "/AnOdysseyEchoesOfWar.exe": - when: - os: windows store: steam steam: id: 1199220 -'An Orc''s Tale: Kriegsruf': +"An Orc's Tale: Kriegsruf": installDir: - an Orc's Tale Kriegsruf: {} + "an Orc's Tale Kriegsruf": {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -28527,12 +28615,12 @@ Ana The Game: id: 811090 Anachronox: files: - /anoxdata/CONFIGS: + "/anoxdata/CONFIGS": tags: - config when: - os: windows - /anoxdata/SAVE: + "/anoxdata/SAVE": tags: - save when: @@ -28542,7 +28630,7 @@ Anachronox: installDir: Anachronox: {} launch: - /anox.exe: + "/anox.exe": - when: - store: steam steam: @@ -28551,7 +28639,7 @@ Anahita: installDir: Anahita: {} launch: - /Anahita.exe: + "/Anahita.exe": - when: - os: windows store: steam @@ -28561,20 +28649,20 @@ Analemma: installDir: Analemma: {} launch: - /Analemma.exe: + "/Analemma.exe": - when: - os: windows store: steam - /Mac OS.app: + "/Mac OS.app": - when: - os: mac store: steam - /game.x86: + "/game.x86": - when: - bit: 32 os: linux store: steam - /game.x86_64: + "/game.x86_64": - when: - bit: 64 os: linux @@ -28585,48 +28673,48 @@ Analistica Academy: installDir: Analistica Academy: {} launch: - /Analistica Academy.app: + "/Analistica Academy.app": - when: - os: mac store: steam - /Analistica Academy.exe: + "/Analistica Academy.exe": - when: - os: windows store: steam - /Analistica Academy.sh: + "/Analistica Academy.sh": - when: - os: linux store: steam steam: id: 816220 -'Analogue: A Hate Story': +"Analogue: A Hate Story": files: - /.renpy/Analogue/1-*.save: + "/.renpy/Analogue/1-*.save": tags: - save when: - os: linux - /.renpy/Analogue/persistent: + "/.renpy/Analogue/persistent": tags: - config when: - os: linux - /Library/RenPy/Analogue/1-*.save: + "/Library/RenPy/Analogue/1-*.save": tags: - save when: - os: mac - /Library/RenPy/Analogue/persistent: + "/Library/RenPy/Analogue/persistent": tags: - config when: - os: mac - /RenPy/Analogue/1-*.save: + "/RenPy/Analogue/1-*.save": tags: - save when: - os: windows - /RenPy/Analogue/persistent: + "/RenPy/Analogue/persistent": tags: - config when: @@ -28637,15 +28725,15 @@ Analistica Academy: installDir: Analogue A Hate Story: {} launch: - /Analogue.app: + "/Analogue.app": - when: - os: mac store: steam - /Analogue.sh: + "/Analogue.sh": - when: - os: linux store: steam - /analogue.exe: + "/analogue.exe": - when: - os: windows store: steam @@ -28655,7 +28743,7 @@ Anamorphine: installDir: Anamorphine: {} launch: - /Anamorphine.exe: + "/Anamorphine.exe": - when: - os: windows store: steam @@ -28665,15 +28753,15 @@ Ananias Roguelike: installDir: Ananias Roguelike: {} launch: - /ananias-roguelike: + "/ananias-roguelike": - when: - os: linux store: steam - /ananias-roguelike.app: + "/ananias-roguelike.app": - when: - os: mac store: steam - /ananias-roguelike.exe: + "/ananias-roguelike.exe": - when: - os: windows store: steam @@ -28681,12 +28769,12 @@ Ananias Roguelike: id: 372080 Anarchy Arcade: files: - /aarcade/cfg: + "/aarcade/cfg": tags: - config when: - os: windows - /aarcade/save: + "/aarcade/save": tags: - save when: @@ -28694,7 +28782,7 @@ Anarchy Arcade: installDir: Anarchy Arcade: {} launch: - /frontend/bin/arcade_launcher.exe: + "/frontend/bin/arcade_launcher.exe": - when: - os: windows store: steam @@ -28704,7 +28792,7 @@ Anarchy Online: installDir: Anarchy Online: {} launch: - /AnarchyOnline.exe: + "/AnarchyOnline.exe": - when: - os: windows store: steam @@ -28712,22 +28800,24 @@ Anarchy Online: id: 396280 Anarcute: files: - /steamapps/common/Anarcute/anarcute_Data/Savefiles: + "/steamapps/common/Anarcute/anarcute_Data/Savefiles": tags: - save when: - os: windows store: steam - /Anarcute: + "/Anarcute": tags: - save + when: + - os: windows id: steamExtra: - 490310 installDir: Anarcute: {} launch: - /anarcute.exe: + "/anarcute.exe": - when: - os: windows store: steam @@ -28741,7 +28831,7 @@ Anark.io: installDir: Anark.io: {} launch: - /Anarkio.exe: + "/Anarkio.exe": - when: - bit: 64 os: windows @@ -28755,8 +28845,8 @@ Anceder: installDir: Anceder: {} launch: - /AncederRift.exe: - - arguments: '-steam' + "/AncederRift.exe": + - arguments: "-steam" when: - bit: 64 os: windows @@ -28765,64 +28855,66 @@ Anceder: id: 875270 Ancestors Legacy: files: - /Anc/Saved/Config/WindowsNoEditor: + "/Anc/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /Anc/Savegames: + "/Anc/Savegames": tags: - save when: - os: windows - /AncestorsLegacy/SaveGames: + "/AncestorsLegacy/SaveGames": tags: - save when: - - store: steam - /AncestorsLegacy/Saved/Config/WindowsNoEditor: + - os: windows + store: steam + "/AncestorsLegacy/Saved/Config/WindowsNoEditor": tags: - config when: - - store: steam + - os: windows + store: steam gog: id: 1848455842 id: gogExtra: - - 1797616458 - - 2117158635 - - 1855776856 - - 1774090337 - 1338520897 + - 1774090337 + - 1797616458 + - 1855776856 + - 2117158635 steamExtra: - - 1049810 - 799330 - 799331 - 983360 + - 1049810 installDir: Ancestors Legacy: {} launch: - /Anc/Binaries/Win64/Anc-Win64-Shipping.exe: - - arguments: '-nothreadtimeout' + "/Anc/Binaries/Win64/Anc-Win64-Shipping.exe": + - arguments: "-nothreadtimeout" when: - bit: 64 os: windows store: steam steam: id: 620590 -'Ancestors: The Humankind Odyssey': +"Ancestors: The Humankind Odyssey": files: - /Ancestors/Saved/Config/WindowsNoEditor: + "/Ancestors/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /Ancestors/Saved/SaveGames: + "/Ancestors/Saved/SaveGames": tags: - save when: - os: windows - /Ancestors/Saved/SaveGames/System.sav: + "/Ancestors/Saved/SaveGames/System.sav": tags: - config when: @@ -28832,7 +28924,7 @@ Ancestors Legacy: installDir: Ancestors The Humankind Odyssey: {} launch: - /Ancestors/Binaries/Win64/Ancestors-Win64-Shipping.exe: + "/Ancestors/Binaries/Win64/Ancestors-Win64-Shipping.exe": - when: - bit: 64 os: windows @@ -28843,7 +28935,7 @@ Ancestory: installDir: Ancestory: {} launch: - /Ancestory.exe: + "/Ancestory.exe": - when: - os: windows store: steam @@ -28851,7 +28943,7 @@ Ancestory: id: 349840 Anchorhead: files: - /Anchorhead/lectrote-prefs.json: + "/Anchorhead/lectrote-prefs.json": tags: - config when: @@ -28859,15 +28951,15 @@ Anchorhead: installDir: Anchorhead: {} launch: - /Anchorhead-launch: + "/Anchorhead-launch": - when: - os: linux store: steam - /Anchorhead.app/Contents/MacOS/Anchorhead: + "/Anchorhead.app/Contents/MacOS/Anchorhead": - when: - os: mac store: steam - /Anchorhead.exe: + "/Anchorhead.exe": - when: - os: windows store: steam @@ -28885,64 +28977,64 @@ Ancient Anathema: installDir: Ancient Anathema: {} launch: - /Ancient Anathema.exe: + "/Ancient Anathema.exe": - when: - bit: 64 os: windows store: steam steam: id: 1010540 -'Ancient Battle: Alexander': +"Ancient Battle: Alexander": installDir: Ancient Battle Alexander: {} launch: - /ancientbattlealexander.app: + "/ancientbattlealexander.app": - when: - os: mac store: steam - /ancientbattlealexander.exe: + "/ancientbattlealexander.exe": - when: - os: windows store: steam steam: id: 1025520 -'Ancient Battle: Hannibal': +"Ancient Battle: Hannibal": installDir: Ancient Battle Hannibal: {} launch: - /ancientbattlehannibal.app: + "/ancientbattlehannibal.app": - when: - os: mac store: steam - /ancientbattlehannibal.exe: + "/ancientbattlehannibal.exe": - when: - os: windows store: steam steam: id: 715280 -'Ancient Battle: Rome': +"Ancient Battle: Rome": installDir: Ancient Battle Rome: {} launch: - /AncientBattleRome.app: + "/AncientBattleRome.app": - when: - os: mac store: steam - /AncientBattleRome.exe: + "/AncientBattleRome.exe": - when: - os: windows store: steam steam: id: 363840 -'Ancient Battle: Successors': +"Ancient Battle: Successors": installDir: Ancient Battle Successors: {} launch: - /ancientbattlesuccessors.app: + "/ancientbattlesuccessors.app": - when: - os: mac store: steam - /ancientbattlesuccessors.exe: + "/ancientbattlesuccessors.exe": - when: - os: windows store: steam @@ -28950,7 +29042,7 @@ Ancient Anathema: id: 1025510 Ancient Cities: files: - /Uncasual Games/Ancient Cities: + "/Documents/Uncasual Games/Ancient Cities": tags: - config when: @@ -28958,12 +29050,12 @@ Ancient Cities: installDir: Ancient Cities: {} launch: - /Art/Bin/x64/Ancient.exe: + "/Art/Bin/x64/Ancient.exe": - when: - bit: 64 os: windows store: steam - workingDir: /Art/Bin/x64 + workingDir: "/Art/Bin/x64" steam: id: 667610 Ancient Code VR (The Fantasy Egypt Journey): @@ -28971,9 +29063,9 @@ Ancient Code VR (The Fantasy Egypt Journey): Ancient Code VR (The Ancient Temple Archery Game): {} steam: id: 546040 -'Ancient Conquest: Quest for the Golden Fleece': +"Ancient Conquest: Quest for the Golden Fleece": files: - /savegame: + "/savegame": tags: - save when: @@ -28989,7 +29081,7 @@ Ancient Dungeon: id: 1125240 Ancient Enemy: files: - /Grey Alien Games/Ancient Enemy: + "/Grey Alien Games/Ancient Enemy": tags: - save when: @@ -28999,7 +29091,7 @@ Ancient Enemy: installDir: Ancient Enemy: {} launch: - /AncientEnemy.exe: + "/AncientEnemy.exe": - when: - os: windows store: steam @@ -29012,17 +29104,17 @@ Ancient Frontier: installDir: Ancient Frontier: {} launch: - /AncFrontier.exe: + "/AncFrontier.exe": - when: - os: windows store: steam steam: id: 521790 -'Ancient Frontier: Steel Shadows': +"Ancient Frontier: Steel Shadows": installDir: SteelShadows: {} launch: - /SteelShadows.exe: + "/SteelShadows.exe": - when: - os: windows store: steam @@ -29032,11 +29124,11 @@ Ancient Future: installDir: Ancient Future: {} launch: - /Ancient Future.app/Contents/MacOS/Ancient Future: + "/Ancient Future.app/Contents/MacOS/Ancient Future": - when: - os: mac store: steam - /Ancient Future.exe: + "/Ancient Future.exe": - when: - os: windows store: steam @@ -29046,7 +29138,7 @@ Ancient Go: installDir: Ancient Go: {} launch: - /AncientGo.exe: + "/AncientGo.exe": - when: - bit: 64 os: windows @@ -29057,11 +29149,11 @@ Ancient Guardian: installDir: Ancient Guardian: {} launch: - /AncientGuardian.app: + "/AncientGuardian.app": - when: - os: mac store: steam - /AncientGuardian.exe: + "/AncientGuardian.exe": - when: - os: windows store: steam @@ -29074,7 +29166,7 @@ Ancient Journey VR: id: 854030 Ancient Land of Ys: files: - /*.DAT: + "/*.DAT": tags: - save when: @@ -29083,11 +29175,11 @@ Ancient Planet: installDir: Ancient Planet: {} launch: - /AncientPlanet.app: + "/AncientPlanet.app": - when: - os: mac store: steam - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -29097,11 +29189,11 @@ Ancient Rome 2: installDir: Ancient Rome 2: {} launch: - /AncientRome2.app/Contents/MacOS/AncientRome2: + "/AncientRome2.app/Contents/MacOS/AncientRome2": - when: - os: mac store: steam - /AncientRome2.exe: + "/AncientRome2.exe": - when: - os: windows store: steam @@ -29111,7 +29203,7 @@ Ancient Rus: installDir: Ancient Rus: {} launch: - /RUS.exe: + "/RUS.exe": - when: - os: windows store: steam @@ -29121,7 +29213,7 @@ Ancient Rush 2: installDir: Ancient Rush 2: {} launch: - /AncientRush2.exe: + "/AncientRush2.exe": - when: - bit: 64 os: windows @@ -29132,8 +29224,8 @@ Ancient Siberia: installDir: Ancient Siberia: {} launch: - /AncientSiberia_Client.exe: - - arguments: '-s' + "/AncientSiberia_Client.exe": + - arguments: "-s" when: - bit: 64 os: windows @@ -29144,21 +29236,21 @@ Ancient Space: installDir: AncientSpace: {} launch: - /Ancient_Space.app: + "/Ancient_Space.app": - when: - os: mac store: steam - /Ancient_Space.exe: + "/Ancient_Space.exe": - when: - os: windows store: steam steam: id: 249190 -'Ancient Stories: Gods of Egypt': +"Ancient Stories: Gods of Egypt": installDir: Ancient Stories Gods of Egypt: {} launch: - /AncientStories_GodsOfEgypt.exe: + "/AncientStories_GodsOfEgypt.exe": - when: - os: windows store: steam @@ -29168,11 +29260,11 @@ Ancient Tower: installDir: Ancient Tower: {} launch: - /macos_content/Ancient Tower.app: + "/macos_content/Ancient Tower.app": - when: - os: mac store: steam - /windows_content/AncientTower.exe: + "/windows_content/AncientTower.exe": - when: - os: windows store: steam @@ -29183,11 +29275,11 @@ Ancient VR Coaster: Ancient VR coaster: {} steam: id: 495320 -'Ancient War: Three Kingdoms': +"Ancient War: Three Kingdoms": installDir: AncientWarThreeKingdoms: {} launch: - /sanguo.exe: + "/sanguo.exe": - when: - os: windows store: steam @@ -29197,48 +29289,48 @@ Ancient Warfare 3: installDir: Ancient Warfare 3: {} launch: - /Ancient Warfare 3.exe: + "/Ancient Warfare 3.exe": - when: - os: windows store: steam - /AncientWarfare3.app: + "/AncientWarfare3.app": - when: - os: mac store: steam - /AncientWarfare3.x86_64: + "/AncientWarfare3.x86_64": - when: - os: linux store: steam steam: id: 758990 -'Ancient Warlords: Aequilibrium': +"Ancient Warlords: Aequilibrium": installDir: Ancient Warlords: {} launch: - /Ancient Warlords Aequilibrium.app/Contents/MacOS/Ancient Warlords Aequilibrium: + "/Ancient Warlords Aequilibrium.app/Contents/MacOS/Ancient Warlords Aequilibrium": - when: - os: mac store: steam - /Ancient Warlords Aequilibrium.exe: + "/Ancient Warlords Aequilibrium.exe": - when: - os: windows store: steam steam: id: 868350 -'Ancient Wars: Sparta': +"Ancient Wars: Sparta": installDir: Ancient Wars Sparta: {} launch: - /awe.exe: + "/awe.exe": - when: - store: steam steam: id: 8010 -'Ancient Worlds: Jaguar''s Fate': +"Ancient Worlds: Jaguar's Fate": installDir: - Ancient Worlds Jaguar's Fate: {} + "Ancient Worlds Jaguar's Fate": {} launch: - /game.exe: + "/game.exe": - when: - bit: 64 os: windows @@ -29249,52 +29341,52 @@ Ancient knowledge: installDir: Ancient knowledge: {} launch: - /AncientKnowledge.exe: + "/AncientKnowledge.exe": - when: - os: windows store: steam steam: id: 1101770 -'Ancient lands: the Tsar awakening': +"Ancient lands: the Tsar awakening": installDir: Ancient lands the Tsar awakening: {} launch: - /AncientLands.exe: + "/AncientLands.exe": - when: - os: windows store: steam steam: id: 951190 -'Ancients 1: Death Watch': +"Ancients 1: Death Watch": files: - /*.KAR: + "/*.KAR": tags: - save when: - os: dos - /SAVEGAME.DTA: + "/SAVEGAME.DTA": tags: - save when: - os: dos - /SETUP.DTA: + "/SETUP.DTA": tags: - config when: - os: dos -'Ancients II: Approaching Evil': +"Ancients II: Approaching Evil": files: - /*.KAR: + "/*.KAR": tags: - save when: - os: dos - /SAVEGAME.DTA: + "/SAVEGAME.DTA": tags: - save when: - os: dos - /SETUP.DTA: + "/SETUP.DTA": tags: - config when: @@ -29303,7 +29395,7 @@ Ancients of Ooga: installDir: Ancients of Ooga: {} launch: - /Ooga.exe: + "/Ooga.exe": - when: - store: steam steam: @@ -29312,11 +29404,11 @@ And All Would Cry Beware!: installDir: And All Would Cry Beware!: {} launch: - /AllWouldCryBeware.app: + "/AllWouldCryBeware.app": - when: - os: mac store: steam - /AndAllWouldCryBeware.exe: + "/AndAllWouldCryBeware.exe": - when: - os: windows store: steam @@ -29326,7 +29418,7 @@ And I Must Scream: installDir: And I Must Scream: {} launch: - /AndIMustScream.exe: + "/AndIMustScream.exe": - when: - os: windows store: steam @@ -29336,18 +29428,18 @@ And So It Was: installDir: And So It Was: {} launch: - /asiw.app: - - arguments: '-windowed' + "/asiw.app": + - arguments: "-windowed" when: - os: mac store: steam - /asiw.exe: - - arguments: '-windowed' + "/asiw.exe": + - arguments: "-windowed" when: - os: windows store: steam - /asiw.x86: - - arguments: '-windowed' + "/asiw.x86": + - arguments: "-windowed" when: - os: linux store: steam @@ -29355,19 +29447,19 @@ And So It Was: id: 432590 And Yet It Moves: files: - /.Broken Rules/And Yet It Moves: + "/.Broken Rules/And Yet It Moves": tags: - config - save when: - os: linux - /Library/Application Support/Broken Rules/And Yet It Moves: + "/Library/Application Support/Broken Rules/And Yet It Moves": tags: - config - save when: - os: mac - /Broken Rules/And Yet It Moves: + "/Broken Rules/And Yet It Moves": tags: - config - save @@ -29376,28 +29468,28 @@ And Yet It Moves: installDir: And Yet It Moves: {} launch: - /And Yet It Moves.app: + "/And Yet It Moves.app": - when: - os: mac store: steam - /And Yet It Moves.exe: + "/And Yet It Moves.exe": - when: - os: windows store: steam - /AndYetItMovesSteam.sh: + "/AndYetItMovesSteam.sh": - when: - os: linux store: steam steam: id: 18700 -'And You''re There, Too': +"And You're There, Too": installDir: AndYoureThereToo: {} steam: id: 953440 Andarilho: files: - /Andarilho/Save: + "/Andarilho/Save": tags: - save when: @@ -29405,15 +29497,15 @@ Andarilho: installDir: SC Jogos: {} launch: - /Andarilho/Andarilho.exe: + "/Andarilho/Andarilho.exe": - when: - os: windows store: steam - - arguments: '-force-d3d9' + - arguments: "-force-d3d9" when: - os: windows store: steam - - arguments: '-force-glse' + - arguments: "-force-glse" when: - os: windows store: steam @@ -29428,7 +29520,7 @@ Andor - the Cards of Wonder: installDir: Andor - the Cards of Wonder: {} launch: - /runtime/win32/Andor.exe: + "/runtime/win32/Andor.exe": - when: - os: windows store: steam @@ -29438,7 +29530,7 @@ Andoran Skye XD: installDir: Andoran Skye 1.5: {} launch: - /Andoran Skye 1.5/Andoran Skye 1.5.exe: + "/Andoran Skye 1.5/Andoran Skye 1.5.exe": - when: - os: windows store: steam @@ -29448,7 +29540,7 @@ Android Amazones: installDir: Android Amazones: {} launch: - /Android Amazones.exe: + "/Android Amazones.exe": - when: - os: windows store: steam @@ -29458,16 +29550,16 @@ Android Helipad: installDir: Android Helipad: {} launch: - /Android_Helipad.app/Contents/MacOS/Android_Helipad: + "/Android_Helipad.app/Contents/MacOS/Android_Helipad": - when: - os: mac store: steam - /Android_Helipad.exe: + "/Android_Helipad.exe": - when: - bit: 64 os: windows store: steam - /Android_Helipad.x86_64: + "/Android_Helipad.x86_64": - when: - bit: 64 os: linux @@ -29481,12 +29573,12 @@ Android John 2.1: installDir: AndroidJohn2_1: {} launch: - /AJ_2_1_32Bit/AndroidJohn2_1.exe: + "/AJ_2_1_32Bit/AndroidJohn2_1.exe": - when: - bit: 32 os: windows store: steam - /AJ_2_1_64Bit/AndroidJohn2_1.exe: + "/AJ_2_1_64Bit/AndroidJohn2_1.exe": - when: - bit: 64 os: windows @@ -29497,7 +29589,7 @@ Andromeda One: installDir: Andromeda One: {} launch: - /andromedaone.exe: + "/andromedaone.exe": - when: - store: steam steam: @@ -29506,7 +29598,7 @@ Andromeda Wing: installDir: Andromeda Wing: {} launch: - /AndromedaWing.exe: + "/AndromedaWing.exe": - when: - os: windows store: steam @@ -29517,11 +29609,11 @@ Andromedum: Andromedum: {} steam: id: 457660 -'Anew: The Distant Light': +"Anew: The Distant Light": installDir: Anew The Distant Light: {} launch: - /Anew_TheDistantLight.exe: + "/Anew_TheDistantLight.exe": - when: - os: windows store: steam @@ -29529,9 +29621,9 @@ Andromedum: id: 905530 Angel Express: installDir: - 'Angel Express [Tokkyu Tenshi]': {} + "Angel Express [Tokkyu Tenshi]": {} launch: - /scroll.exe: + "/scroll.exe": - when: - os: windows store: steam @@ -29541,11 +29633,11 @@ Angel Flare: installDir: Angel Flare: {} launch: - /Angel Flare.app: + "/Angel Flare.app": - when: - os: mac store: steam - /Angel Flare.exe: + "/Angel Flare.exe": - when: - os: windows store: steam @@ -29559,9 +29651,9 @@ Angel Light The Elven Truce: when: - os: windows installDir: - '772730': {} + "772730": {} launch: - /Angel Light The Elven Truce.exe: + "/Angel Light The Elven Truce.exe": - when: - bit: 64 os: windows @@ -29577,7 +29669,7 @@ Angel Precario: id: 810520 Angel Wings: files: - /saves/autosave: + "/saves/autosave": tags: - save when: @@ -29585,39 +29677,39 @@ Angel Wings: installDir: Angel Wings: {} launch: - /AngelStory.exe: + "/AngelStory.exe": - when: - bit: 64 os: windows store: steam steam: id: 862440 -'Angel and Devil,ninja,sushi,tempura,panda and the statue of liverty': +"Angel and Devil,ninja,sushi,tempura,panda and the statue of liverty": installDir: AngelandDevil: {} launch: - /AngelandDevil.exe: + "/AngelandDevil.exe": - when: - os: windows store: steam steam: id: 923080 -Angel's Love: +"Angel's Love": steam: id: 845770 -'Angel, Devil, Elf and Me!': +"Angel, Devil, Elf and Me!": installDir: - 'Angel, Devil, Elf and Me!': {} + "Angel, Devil, Elf and Me!": {} launch: - /ADE&ME.app: + "/ADE&ME.app": - when: - os: mac store: steam - /ADE&ME.exe: + "/ADE&ME.exe": - when: - os: windows store: steam - /ADE&ME.sh: + "/ADE&ME.sh": - when: - os: linux store: steam @@ -29627,21 +29719,21 @@ AngelShooter: installDir: AngelShooter: {} launch: - /AngelShooter.app/Contents/MacOS/AngelShooter: + "/AngelShooter.app/Contents/MacOS/AngelShooter": - when: - os: mac store: steam - /AngelShooter.exe: + "/AngelShooter.exe": - when: - os: windows store: steam steam: id: 817440 -Angela's Odyssey: +"Angela's Odyssey": installDir: - Angela's Odyssey: {} + "Angela's Odyssey": {} launch: - /AOdyssey.exe: + "/AOdyssey.exe": - when: - os: windows store: steam @@ -29651,29 +29743,29 @@ Angeldust: installDir: Angeldust: {} launch: - /Angeldust.app/Contents/MacOS/Angeldust: + "/Angeldust.app/Contents/MacOS/Angeldust": - when: - os: mac store: steam - /Angeldust.app/Contents/Resources/Angeldust.exe: + "/Angeldust.app/Contents/Resources/Angeldust.exe": - arguments: Angeldust (32-bit) when: - bit: 32 os: windows store: steam - workingDir: /Angeldust.app/Contents/Resources - /Angeldust.app/Contents/Resources/Angeldust.x86_64: + workingDir: "/Angeldust.app/Contents/Resources" + "/Angeldust.app/Contents/Resources/Angeldust.x86_64": - when: - bit: 64 os: linux store: steam - workingDir: /Angeldust.app/Contents/Resources - /Angeldust.app/Contents/Resources/Angeldust64.exe: + workingDir: "/Angeldust.app/Contents/Resources" + "/Angeldust.app/Contents/Resources/Angeldust64.exe": - when: - bit: 64 os: windows store: steam - workingDir: /Angeldust.app/Contents/Resources + workingDir: "/Angeldust.app/Contents/Resources" steam: id: 488440 AngeliaLost: @@ -29681,11 +29773,11 @@ AngeliaLost: AngeliaLost: {} steam: id: 805330 -'Angelica Weaver: Catch Me When You Can': +"Angelica Weaver: Catch Me When You Can": installDir: Angelica Weaver - Catch Me When You Can CE: {} launch: - /Angelica Weaver - Catch Me When You Can CE.exe: + "/Angelica Weaver - Catch Me When You Can CE.exe": - when: - os: windows store: steam @@ -29695,25 +29787,25 @@ Angelo Skate Away: installDir: Angelo Skate Away: {} launch: - /ASA Steam.exe: + "/ASA Steam.exe": - when: - os: windows store: steam steam: id: 756680 -'Angelo and Deemon: One Hell of a Quest': +"Angelo and Deemon: One Hell of a Quest": files: - /AppData/LocalLow/Specialbit Studio/Angelo and Deemon One Hell of a Quest: + "/AppData/LocalLow/Specialbit Studio/Angelo and Deemon One Hell of a Quest": tags: - save when: - os: windows - /unity3d/Specialbit Studio/angelo-deemon: + "/unity3d/Specialbit Studio/angelo-deemon": tags: - save when: - os: linux - /unity3d/Specialbit Studio/angelo-deemon/prefs: + "/unity3d/Specialbit Studio/angelo-deemon/prefs": tags: - config when: @@ -29721,15 +29813,15 @@ Angelo Skate Away: installDir: Angelo and Deemon One Hell of a Quest: {} launch: - /Angelo and Deemon One Hell of a Quest.exe: + "/Angelo and Deemon One Hell of a Quest.exe": - when: - os: windows store: steam - /angelo-deemon.app: + "/angelo-deemon.app": - when: - os: mac store: steam - /angelo-deemon.x86_64: + "/angelo-deemon.x86_64": - when: - os: linux store: steam @@ -29743,11 +29835,11 @@ Angels & Demigods: installDir: Andels & Demigods: {} launch: - /AaD.exe: + "/AaD.exe": - when: - os: windows store: steam - /AngelsAndDemigods_v1.2.app/Contents/MacOS/AngelsAndDemigods_v1.2: + "/AngelsAndDemigods_v1.2.app/Contents/MacOS/AngelsAndDemigods_v1.2": - when: - bit: 64 os: mac @@ -29756,7 +29848,7 @@ Angels & Demigods: id: 503160 Angels Fall First: files: - /Angels Fall First/AFFGame/Config: + "/Angels Fall First/AFFGame/Config": tags: - config when: @@ -29764,12 +29856,12 @@ Angels Fall First: installDir: Angels Fall First: {} launch: - /Binaries/AFFLift.exe: - - arguments: '-SEEKFREELOADING' + "/Binaries/AFFLift.exe": + - arguments: "-SEEKFREELOADING" when: - os: windows store: steam - - arguments: '-SEEKFREELOADING -DX11' + - arguments: "-SEEKFREELOADING -DX11" when: - os: windows store: steam @@ -29779,15 +29871,15 @@ Angels That Kill: installDir: Angels That Kill: {} launch: - /Angels That Kill The Final Cut/Angels That Kill - The Final Cut.app/Contents/MacOS/Angels That Kill - The Final Cut: + "/Angels That Kill The Final Cut/Angels That Kill - The Final Cut.app/Contents/MacOS/Angels That Kill - The Final Cut": - when: - os: mac store: steam - /Angels That Kill The Final Cut/Angels That Kill - The Final Cut.exe: + "/Angels That Kill The Final Cut/Angels That Kill - The Final Cut.exe": - when: - os: windows store: steam - /Angels That Kill The Final Cut/Angels That Kill - The Final Cut.x86: + "/Angels That Kill The Final Cut/Angels That Kill - The Final Cut.x86": - when: - os: linux store: steam @@ -29797,17 +29889,17 @@ Angels of Death: installDir: Angels of Death: {} launch: - /AngelsOfDeathLauncher.exe: + "/AngelsOfDeathLauncher.exe": - when: - os: windows store: steam steam: id: 537110 -'Angels of Fasaria: Version 2.0': +"Angels of Fasaria: Version 2.0": installDir: Angels of Fasaria 2D RPG: {} launch: - /Angels of Fasaria.exe: + "/Angels of Fasaria.exe": - when: - os: windows store: steam @@ -29817,25 +29909,25 @@ Angels with Scaly Wings: installDir: Angels with Scaly Wings: {} launch: - /Angels with Scaly Wings.app: + "/Angels with Scaly Wings.app": - when: - os: mac store: steam - /Angels with Scaly Wings.exe: + "/Angels with Scaly Wings.exe": - when: - os: windows store: steam - /Angels with Scaly Wings.sh: + "/Angels with Scaly Wings.sh": - when: - os: linux store: steam steam: id: 571880 -'Angels, Demons and Men': +"Angels, Demons and Men": installDir: - 'A.D.M(Angels,Demons And Men)': {} + "A.D.M(Angels,Demons And Men)": {} launch: - /ADM64bit.exe: + "/ADM64bit.exe": - when: - os: windows store: steam @@ -29849,9 +29941,9 @@ Angelus Brand VR Experience: AngerDark: steam: id: 983710 -'AngerForce: Reloaded': +"AngerForce: Reloaded": files: - /AppData/LocalLow/ScreamBox/AngerForcePC: + "/AppData/LocalLow/ScreamBox/AngerForcePC": tags: - config when: @@ -29861,11 +29953,11 @@ AngerDark: installDir: AngerForce - Reloaded: {} launch: - /AngerForcePC.app/Contents/MacOS/AngerForcePC: + "/AngerForcePC.app/Contents/MacOS/AngerForcePC": - when: - os: mac store: steam - /AngerForcePC.exe: + "/AngerForcePC.exe": - when: - os: windows store: steam @@ -29875,16 +29967,16 @@ Angle of Attack: installDir: Angle Of Attack: {} launch: - /aoa.exe: + "/aoa.exe": - when: - store: steam steam: id: 36900 -Angler's Life: +"Angler's Life": installDir: - Angler's Life: {} + "Angler's Life": {} launch: - /Angler's Life.exe: + "/Angler's Life.exe": - when: - os: windows store: steam @@ -29894,7 +29986,7 @@ Angles: installDir: Angles: {} launch: - /codeAngles.exe: + "/codeAngles.exe": - when: - bit: 64 os: windows @@ -29905,7 +29997,7 @@ Angry Arrows: installDir: Angry Arrows: {} launch: - /angryarrows.exe: + "/angryarrows.exe": - when: - os: windows store: steam @@ -29918,58 +30010,58 @@ Angry Ball VR: id: 930970 Angry Birds: files: - /Rovio/Angry Birds/*.*: + "/Rovio/Angry Birds/*.*": tags: - save when: - os: windows - /Rovio/Angry Birds/settings.lua: + "/Rovio/Angry Birds/settings.lua": tags: - config when: - os: windows Angry Birds Rio: files: - /Rovio/Angry Birds Rio/*.*: + "/Rovio/Angry Birds Rio/*.*": tags: - save when: - os: windows - /Rovio/Angry Birds Rio/settings.lua: + "/Rovio/Angry Birds Rio/settings.lua": tags: - config when: - os: windows Angry Birds Seasons: files: - /Rovio/Angry Birds Seasons/*.*: + "/Rovio/Angry Birds Seasons/*.*": tags: - save when: - os: windows - /Rovio/Angry Birds Seasons/settings.lua: + "/Rovio/Angry Birds Seasons/settings.lua": tags: - config when: - os: windows Angry Birds Space: files: - /userdata//210550/remote: + "/userdata//210550/remote": tags: - save when: - store: steam - /userdata//210550/remote/settings.lua: + "/userdata//210550/remote/settings.lua": tags: - config when: - store: steam - /Rovio/Angry Birds Space/*.*: + "/Rovio/Angry Birds Space/*.*": tags: - save when: - os: windows - /Rovio/Angry Birds Space/settings.lua: + "/Rovio/Angry Birds Space/settings.lua": tags: - config when: @@ -29977,7 +30069,7 @@ Angry Birds Space: installDir: Angry Birds Space: {} launch: - /AngryBirdsSpace.exe: + "/AngryBirdsSpace.exe": - when: - os: windows store: steam @@ -29985,29 +30077,29 @@ Angry Birds Space: id: 210550 Angry Birds Star Wars: files: - /Rovio/Angry Birds Star Wars/*.*: + "/Rovio/Angry Birds Star Wars/*.*": tags: - save when: - os: windows - /Rovio/Angry Birds Star Wars/settings.lua: + "/Rovio/Angry Birds Star Wars/settings.lua": tags: - config when: - os: windows Angry Birds Star Wars II: files: - /Rovio/Angry Birds Star Wars II/*.*: + "/Rovio/Angry Birds Star Wars II/*.*": tags: - save when: - os: windows - /Rovio/Angry Birds Star Wars II/settings.lua: + "/Rovio/Angry Birds Star Wars II/settings.lua": tags: - config when: - os: windows -'Angry Birds VR: Isle of Pigs': +"Angry Birds VR: Isle of Pigs": installDir: Angry Birds VR Isle of Pigs: {} steam: @@ -30016,7 +30108,7 @@ Angry Bunny: installDir: Angry Bunny: {} launch: - /Angrybunny.exe: + "/Angrybunny.exe": - when: - bit: 64 os: windows @@ -30027,7 +30119,7 @@ Angry Farm: installDir: Angry Farm: {} launch: - /Angry Farm.exe: + "/Angry Farm.exe": - when: - os: windows store: steam @@ -30040,7 +30132,7 @@ Angry Gnome: installDir: Angry Gnome: {} launch: - /AG.exe: + "/AG.exe": - when: - bit: 64 os: windows @@ -30051,7 +30143,7 @@ Angry Golf: installDir: Angry Golf: {} launch: - /Angrygolf.exe: + "/Angrygolf.exe": - when: - bit: 64 os: windows @@ -30062,7 +30154,7 @@ Angry King: installDir: Angry King: {} launch: - /Angry King.exe: + "/Angry King.exe": - when: - store: steam steam: @@ -30071,15 +30163,15 @@ Angry Punisher: installDir: Angry Punisher: {} launch: - /AngryPunisher.app/Contents/MacOS/AngryPunisher: + "/AngryPunisher.app/Contents/MacOS/AngryPunisher": - when: - os: mac store: steam - /AngryPunisher.exe: + "/AngryPunisher.exe": - when: - os: windows store: steam - /AngryPunisher.x86: + "/AngryPunisher.x86": - when: - os: linux store: steam @@ -30092,7 +30184,7 @@ Angry Troll Simulator 2018: installDir: Angry Troll Simulator 1.02: {} launch: - /Angry Troll Simulator 1.02/Angry Troll Simulator.exe: + "/Angry Troll Simulator 1.02/Angry Troll Simulator.exe": - when: - os: windows store: steam @@ -30100,7 +30192,7 @@ Angry Troll Simulator 2018: id: 935790 Angry Video Game Nerd Adventures: files: - /MMFApplications/avgn.ini: + "/MMFApplications/avgn.ini": tags: - config - save @@ -30109,7 +30201,7 @@ Angry Video Game Nerd Adventures: installDir: Angry Video Game Nerd Adventures: {} launch: - /avgn.exe: + "/avgn.exe": - when: - store: steam steam: @@ -30118,23 +30210,23 @@ Angry Video Game Nerd I & II Deluxe: installDir: Angry Video Game Nerd I & II Deluxe: {} launch: - /Angry Video Game Nerd I & II Deluxe.app/Contents/MacOS/Angry Video Game Nerd I _ II Deluxe: + "/Angry Video Game Nerd I & II Deluxe.app/Contents/MacOS/Angry Video Game Nerd I _ II Deluxe": - when: - os: mac store: steam - /Angry Video Game Nerd I & II Deluxe.exe: + "/Angry Video Game Nerd I & II Deluxe.exe": - when: - os: windows store: steam - /Angry Video Game Nerd I & II Deluxe.x86_64: + "/Angry Video Game Nerd I & II Deluxe.x86_64": - when: - os: linux store: steam steam: id: 1162960 -'Angry Video Game Nerd II: ASSimilation': +"Angry Video Game Nerd II: ASSimilation": files: - /AppData/LocalLow/ScrewAttackGames/AVGN2: + "/AppData/LocalLow/ScrewAttackGames/AVGN2": tags: - save when: @@ -30142,20 +30234,20 @@ Angry Video Game Nerd I & II Deluxe: installDir: Angry Video Game Nerd II ASSimilation: {} launch: - /AVGN2.app/Contents/MacOS/AVGN2: + "/AVGN2.app/Contents/MacOS/AVGN2": - when: - os: mac store: steam - /AVGN2.exe: + "/AVGN2.exe": - when: - os: windows store: steam - /AVGN2.x86: + "/AVGN2.x86": - when: - bit: 32 os: linux store: steam - /AVGN2.x86_64: + "/AVGN2.x86_64": - when: - bit: 64 os: linux @@ -30170,7 +30262,7 @@ Angry Zombies: installDir: Angry Zombies: {} launch: - /Angry Zombies.exe: + "/Angry Zombies.exe": - when: - store: steam steam: @@ -30179,7 +30271,7 @@ Angry food: installDir: Angry food: {} launch: - /Angry food.exe: + "/Angry food.exe": - when: - os: windows store: steam @@ -30192,7 +30284,7 @@ Anguished: installDir: Anguished: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -30202,7 +30294,7 @@ Angus Hates Aliens: installDir: Angus Hates Aliens: {} launch: - /EnginePC.exe: + "/EnginePC.exe": - when: - os: windows store: steam @@ -30212,31 +30304,31 @@ Angvik: installDir: Angvik: {} launch: - /nw.app: + "/nw.app": - when: - os: mac store: steam - /nw.exe: + "/nw.exe": - when: - os: windows store: steam steam: id: 278890 -Anicon - Animal Complex - Cat's Path: +"Anicon - Animal Complex - Cat's Path": installDir: - Anicon - Animal Complex - Cat's Path: {} + "Anicon - Animal Complex - Cat's Path": {} launch: - /anicon-cat.exe: + "/anicon-cat.exe": - when: - os: windows store: steam steam: id: 502120 -Anicon - Animal Complex - Sheep's Path: +"Anicon - Animal Complex - Sheep's Path": installDir: - Anicon - Animal Complex - Sheep's Path: {} + "Anicon - Animal Complex - Sheep's Path": {} launch: - /anicon-sheep.exe: + "/anicon-sheep.exe": - when: - os: windows store: steam @@ -30251,26 +30343,26 @@ Anima: installDir: Anima: {} launch: - /Anima.exe: - - arguments: '-desktop' + "/Anima.exe": + - arguments: "-desktop" when: - bit: 64 os: windows store: steam steam: id: 917830 -'Anima Gate of Memories: The Nameless Chronicles': +"Anima Gate of Memories: The Nameless Chronicles": installDir: Anima The Nameless Chronicles: {} launch: - /TheNamelessChronicles.exe: + "/TheNamelessChronicles.exe": - when: - store: steam steam: id: 850060 -'Anima: Gate of Memories': +"Anima: Gate of Memories": files: - /unity3d/Anima Project Studio/GateofMemories/prefs: + "/unity3d/Anima Project Studio/GateofMemories/prefs": tags: - save when: @@ -30280,21 +30372,21 @@ Anima: installDir: Anima Gate of Memories: {} launch: - /AnimaGateOfMemories.app: + "/AnimaGateOfMemories.app": - when: - os: mac store: steam - /AnimaGateOfMemories.exe: - - arguments: '-popupwindow' + "/AnimaGateOfMemories.exe": + - arguments: "-popupwindow" when: - os: windows store: steam - /GoMLinux.x86: + "/GoMLinux.x86": - when: - bit: 32 os: linux store: steam - /GoMLinux.x86_64: + "/GoMLinux.x86_64": - when: - bit: 64 os: linux @@ -30313,15 +30405,15 @@ Animal Fight Club: installDir: AnimalFightClub: {} launch: - /AnimalFightClub.exe: + "/AnimalFightClub.exe": - when: - os: windows store: steam - /AnimalFightClub.x86: + "/AnimalFightClub.x86": - when: - os: linux store: steam - /AnimalFightClub_Mac.app/Contents/MacOS/AnimalFightClub_Mac: + "/AnimalFightClub_Mac.app/Contents/MacOS/AnimalFightClub_Mac": - when: - os: mac store: steam @@ -30336,7 +30428,7 @@ Animal Friends Adventure: installDir: Animal Friends Adventure: {} launch: - /Animal Friends Adventure.exe: + "/Animal Friends Adventure.exe": - when: - os: windows store: steam @@ -30346,21 +30438,21 @@ Animal Gods: installDir: AnimalGods: {} launch: - /ag.exe: + "/ag.exe": - when: - os: windows store: steam - /ag_lin.x86: + "/ag_lin.x86": - when: - bit: 32 os: linux store: steam - /ag_lin.x86_64: + "/ag_lin.x86_64": - when: - bit: 64 os: linux store: steam - /ag_mac.app: + "/ag_mac.app": - when: - os: mac store: steam @@ -30370,7 +30462,7 @@ Animal Herding: installDir: Animal Herding: {} launch: - /AnimalHerding.exe: + "/AnimalHerding.exe": - when: - os: windows store: steam @@ -30380,7 +30472,7 @@ Animal Jam - Play Wild!: installDir: Animal Jam - Play Wild!: {} launch: - /Play Wild.exe: + "/Play Wild.exe": - when: - os: windows store: steam @@ -30388,17 +30480,17 @@ Animal Jam - Play Wild!: id: 822240 Animal Lover: files: - /game/saves/*.save: + "/game/saves/*.save": tags: - save when: - os: windows - /renpy/config.py: + "/renpy/config.py": tags: - config when: - os: windows - /renpy/Animal Lover PROTO-1406568715/*.save: + "/renpy/Animal Lover PROTO-1406568715/*.save": tags: - save when: @@ -30406,11 +30498,11 @@ Animal Lover: installDir: Animal Lover: {} launch: - /Animal_Lover.app: + "/Animal_Lover.app": - when: - os: mac store: steam - /Animal_Lover.exe: + "/Animal_Lover.exe": - when: - os: windows store: steam @@ -30420,7 +30512,7 @@ Animal Notes: installDir: Animal Notes: {} launch: - /Animal Notes 1.0.exe: + "/Animal Notes 1.0.exe": - when: - os: windows store: steam @@ -30430,7 +30522,7 @@ Animal Revolt Battle Simulator: installDir: Animal Revolt Battle Simulator: {} launch: - /Animal Revolt Battle Simulator.exe: + "/Animal Revolt Battle Simulator.exe": - when: - os: windows store: steam @@ -30440,7 +30532,7 @@ Animal Rivals: installDir: Animal Rivals: {} launch: - /AnimalRivals.exe: + "/AnimalRivals.exe": - when: - os: windows store: steam @@ -30448,12 +30540,12 @@ Animal Rivals: id: 617420 Animal Super Squad: files: - /GWGame/Saved: + "/GWGame/Saved": tags: - save when: - os: windows - /GWGame/Saved/Config/WindowsNoEditor: + "/GWGame/Saved/Config/WindowsNoEditor": tags: - config when: @@ -30461,7 +30553,7 @@ Animal Super Squad: installDir: AnimalSuperSquad: {} launch: - /GWGame/Binaries/Win64/ASS-Win64.exe: + "/GWGame/Binaries/Win64/ASS-Win64.exe": - when: - bit: 64 os: windows @@ -30472,7 +30564,7 @@ Animal Up!: installDir: Animal Up!: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -30485,7 +30577,7 @@ Animal war: installDir: Animal war: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -30495,14 +30587,14 @@ Animalia - The Quiz Game: installDir: Animalia - The Quiz Game: {} launch: - /Animalia - The Quiz Game.exe: + "/Animalia - The Quiz Game.exe": - when: - store: steam steam: id: 716190 Animality: files: - /RACE: + "/RACE": tags: - config - save @@ -30511,7 +30603,7 @@ Animality: installDir: ANIMALITY: {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: @@ -30520,7 +30612,7 @@ Animallica: installDir: Animallica: {} launch: - /ANIMALLICA.exe: + "/ANIMALLICA.exe": - when: - os: windows store: steam @@ -30531,42 +30623,42 @@ Animals Memory: Animals Memory: {} steam: id: 754520 -'Animals Memory: Birds': +"Animals Memory: Birds": installDir: Animals Memory Birds: {} steam: id: 775910 -'Animals Memory: Cats': +"Animals Memory: Cats": installDir: Animals Memory Cats: {} steam: id: 799800 -'Animals Memory: Dinosaurs': +"Animals Memory: Dinosaurs": installDir: Animals Memory Dinosaurs: {} steam: id: 775520 -'Animals Memory: Dogs': +"Animals Memory: Dogs": installDir: Animals Memory Dogs: {} steam: id: 778340 -'Animals Memory: Horses': +"Animals Memory: Horses": installDir: Animals Memory Horses: {} launch: - /Animals Memory - Horses.exe: + "/Animals Memory - Horses.exe": - when: - os: windows store: steam steam: id: 956090 -'Animals Memory: Insect': +"Animals Memory: Insect": installDir: Animals Memory Insect: {} steam: id: 778860 -'Animals Memory: Underwater Kingdom': +"Animals Memory: Underwater Kingdom": installDir: Animals Memory Underwater Kingdom: {} steam: @@ -30575,29 +30667,29 @@ Animated Puzzles: installDir: Animated Puzzles: {} launch: - /AnimatedPuzzles: + "/AnimatedPuzzles": - when: - os: linux store: steam - /AnimatedPuzzles.app: + "/AnimatedPuzzles.app": - when: - os: mac store: steam - /AnimatedPuzzles_x64.exe: + "/AnimatedPuzzles_x64.exe": - when: - os: windows store: steam steam: id: 379610 -'Animation Throwdown: The Quest for Cards': +"Animation Throwdown: The Quest for Cards": installDir: Animation Throwdown The Quest for Cards: {} launch: - /AnimationThrowdown.app/Contents/MacOS/Throwdown: + "/AnimationThrowdown.app/Contents/MacOS/Throwdown": - when: - os: mac store: steam - /animationthrowdown.exe: + "/animationthrowdown.exe": - when: - os: windows store: steam @@ -30607,16 +30699,16 @@ Anime Artist: installDir: Anime Artist: {} launch: - /Anime Artist.exe: + "/Anime Artist.exe": - when: - store: steam steam: id: 1101270 -'Anime Babes: Solitaire': +"Anime Babes: Solitaire": installDir: Anime Babes Solitaire: {} launch: - /Anime Babes Solitaire.exe: + "/Anime Babes Solitaire.exe": - when: - os: windows store: steam @@ -30629,7 +30721,7 @@ Anime Bubble Pop: installDir: Anime Bubble Pop: {} launch: - /AnimeBubblePop.exe: + "/AnimeBubblePop.exe": - when: - os: windows store: steam @@ -30650,7 +30742,7 @@ Anime Girl Or Boy?: installDir: Anime Girl Or Boy: {} launch: - /AGOB2.exe: + "/AGOB2.exe": - when: - os: windows store: steam @@ -30660,15 +30752,15 @@ Anime Girl Slide Puzzle: installDir: Anime Girl Slide Puzzle: {} launch: - /Anime Girl Slide Puzzle.exe: + "/Anime Girl Slide Puzzle.exe": - when: - os: windows store: steam - /Anime Girl Slide Puzzle.x86_64: + "/Anime Girl Slide Puzzle.x86_64": - when: - os: linux store: steam - /agsp.app/Contents/MacOS/mac: + "/agsp.app/Contents/MacOS/mac": - when: - os: mac store: steam @@ -30678,7 +30770,7 @@ Anime Girl or Bottle?: installDir: Anime girl Or Bottle: {} launch: - /AGOBdlc.exe: + "/AGOBdlc.exe": - when: - os: windows store: steam @@ -30688,7 +30780,7 @@ Anime Girls Jigsaw Puzzles: installDir: Anime Girls Jigsaw Puzzles: {} launch: - /Anime Girls Jigsaw Puzzles.exe: + "/Anime Girls Jigsaw Puzzles.exe": - when: - os: windows store: steam @@ -30706,7 +30798,7 @@ Anime Otaku Girl 二次元宅女: installDir: Anime Otaku Girl: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -30719,7 +30811,7 @@ Anime PuzzleZzz: installDir: Sophisticated Puzzle: {} launch: - /puzzle.exe: + "/puzzle.exe": - when: - store: steam steam: @@ -30731,15 +30823,15 @@ Anime Studio Simulator: installDir: Anime Studio Simulator: {} launch: - /Anime_Studio_Sim.app: + "/Anime_Studio_Sim.app": - when: - os: mac store: steam - /Anime_Studio_Sim.exe: + "/Anime_Studio_Sim.exe": - when: - os: windows store: steam - /Anime_Studio_Sim.sh: + "/Anime_Studio_Sim.sh": - when: - os: linux store: steam @@ -30749,7 +30841,7 @@ Anime Tanks Arena: installDir: Anime Tanks Arena: {} launch: - /Anime Tanks Arena.exe: + "/Anime Tanks Arena.exe": - when: - os: windows store: steam @@ -30767,7 +30859,7 @@ Animosity: installDir: Animosity: {} launch: - /Animosity.exe: + "/Animosity.exe": - when: - os: windows store: steam @@ -30777,7 +30869,7 @@ Animus - Stand Alone: installDir: Animus - Stand Alone: {} launch: - /Animus.exe: + "/Animus.exe": - when: - os: windows store: steam @@ -30787,11 +30879,11 @@ Animyst: installDir: Animyst: {} launch: - /AnimystClient.app: + "/AnimystClient.app": - when: - os: mac store: steam - /AnimystClient.exe: + "/AnimystClient.exe": - when: - bit: 64 os: windows @@ -30800,22 +30892,22 @@ Animyst: id: 871100 Ankh - Anniversary Edition: files: - /media/Ankh.ini: + "/media/Ankh.ini": tags: - config when: - os: windows - /media/keybinds.ini: + "/media/keybinds.ini": tags: - config when: - os: windows - /save: + "/save": tags: - save when: - os: windows - /Ankh/save: + "/Ankh/save": tags: - save when: @@ -30825,32 +30917,32 @@ Ankh - Anniversary Edition: installDir: Ankh - Anniversary Edition: {} launch: - /bin/release/Ankh.exe: + "/bin/release/Ankh.exe": - when: - os: windows store: steam - workingDir: /bin/release + workingDir: "/bin/release" steam: id: 353980 -Ankh Guardian - Treasure of the Demon's Temple/ゴッド・オブ・ウォール 魔宮の秘宝: +"Ankh Guardian - Treasure of the Demon's Temple/ゴッド・オブ・ウォール 魔宮の秘宝": installDir: Ankh Guardian: {} launch: - /Ankh Guardian - Treasure of the Demon's Temple.exe: + "/Ankh Guardian - Treasure of the Demon's Temple.exe": - when: - bit: 64 os: windows store: steam steam: id: 975160 -'Ankh: Battle of the Gods': +"Ankh: Battle of the Gods": files: - /Ankh - Battle of the Gods/save: + "/Ankh - Battle of the Gods/save": tags: - save when: - os: windows - /Ankh - Battle of the Gods/settings.ini: + "/Ankh - Battle of the Gods/settings.ini": tags: - config when: @@ -30860,20 +30952,20 @@ Ankh Guardian - Treasure of the Demon's Temple/ゴッド・オブ・ウォール installDir: Ankh - Battle of the Gods: {} launch: - /bin/release/Ankh-BOG.exe: + "/bin/release/Ankh-BOG.exe": - when: - store: steam - workingDir: /bin/release + workingDir: "/bin/release" steam: id: 12450 -'Ankh: Heart of Osiris': +"Ankh: Heart of Osiris": files: - /Ankh - Heart of Osiris/save: + "/Ankh - Heart of Osiris/save": tags: - save when: - os: windows - /Ankh - Heart of Osiris/settings.ini: + "/Ankh - Heart of Osiris/settings.ini": tags: - config when: @@ -30883,17 +30975,17 @@ Ankh Guardian - Treasure of the Demon's Temple/ゴッド・オブ・ウォール installDir: Ankh - Heart of Osiris: {} launch: - /bin/release/Ankh-OsirisHeart.exe: + "/bin/release/Ankh-OsirisHeart.exe": - when: - store: steam - workingDir: /bin/release + workingDir: "/bin/release" steam: id: 12440 Anki: installDir: ANKI: {} launch: - /ANKI.exe: + "/ANKI.exe": - when: - os: windows store: steam @@ -30903,39 +30995,39 @@ Anmynor Puzzles: installDir: Anmynor Puzzles: {} launch: - /AnmynorPuzzles.exe: + "/AnmynorPuzzles.exe": - when: - store: steam steam: id: 275330 Ann: files: - /Ann/save/*.rmmzsave: + "/Ann/save/*.rmmzsave": tags: - save when: - os: windows - /Ann/save/config.rmmzsave: + "/Ann/save/config.rmmzsave": tags: - config when: - os: windows - /AnnJP Offline version/save/*.rmmzsave: + "/AnnJP Offline version/save/*.rmmzsave": tags: - save when: - os: windows - /AnnJP Offline version/save/config.rmmzsave: + "/AnnJP Offline version/save/config.rmmzsave": tags: - config when: - os: windows - /AnnJP/save/*.rmmzsave: + "/AnnJP/save/*.rmmzsave": tags: - save when: - os: windows - /AnnJP/save/config.rmmzsave: + "/AnnJP/save/config.rmmzsave": tags: - config when: @@ -30944,15 +31036,15 @@ Ann: Ann: {} steam: id: 1511270 -'Ann Achronist: Many Happy Returns': +"Ann Achronist: Many Happy Returns": installDir: Ann Achronist Many Happy Returns: {} launch: - /annachronist.app: + "/annachronist.app": - when: - os: mac store: steam - /annachronist.exe: + "/annachronist.exe": - when: - os: windows store: steam @@ -30960,18 +31052,18 @@ Ann: id: 1152580 Anna - Extended Edition: files: - /.config/unity3d/Dreampainters/AnnaEE: + "/.config/unity3d/Dreampainters/AnnaEE": tags: - config - save when: - os: linux - /AppData/LocalLow/Dreampainters/AnnaEE/Saves: + "/AppData/LocalLow/Dreampainters/AnnaEE/Saves": tags: - save when: - os: windows - /userdata//217690/remote/__annaext__/saves: + "/userdata//217690/remote/__annaext__/saves": tags: - save when: @@ -30980,15 +31072,15 @@ Anna - Extended Edition: installDir: Anna: {} launch: - /Anna: + "/Anna": - when: - os: linux store: steam - /Anna.app: + "/Anna.app": - when: - os: mac store: steam - /Anna.exe: + "/Anna.exe": - when: - os: windows store: steam @@ -30998,24 +31090,24 @@ Anna - Extended Edition: - config steam: id: 217690 -Anna's Quest: +"Anna's Quest": files: - /Daedalic Entertainment GmbH/Anna's Quest/Savegames: + "/Daedalic Entertainment GmbH/Anna's Quest/Savegames": tags: - save when: - os: windows - /Daedalic Entertainment GmbH/Anna's Quest/config.ini: + "/Daedalic Entertainment GmbH/Anna's Quest/config.ini": tags: - config when: - os: windows - /Daedalic Entertainment GmbH/Anna's Quest/Savegames: + "/Daedalic Entertainment GmbH/Anna's Quest/Savegames": tags: - save when: - os: linux - /Daedalic Entertainment GmbH/Anna's Quest/config.ini: + "/Daedalic Entertainment GmbH/Anna's Quest/config.ini": tags: - config when: @@ -31026,26 +31118,26 @@ Anna's Quest: steamExtra: - 454490 installDir: - Anna's Quest: {} + "Anna's Quest": {} launch: - /Anna's Quest.app: + "/Anna's Quest.app": - when: - bit: 64 os: mac store: steam - /VisionaireConfigurationTool.exe: + "/VisionaireConfigurationTool.exe": - when: - os: windows store: steam - /anna.exe: + "/anna.exe": - when: - os: windows store: steam - /bonus content/Prologue/ANNAS_QUEST_PROLOGUE.exe: + "/bonus content/Prologue/ANNAS_QUEST_PROLOGUE.exe": - when: - os: windows store: steam - /start: + "/start": - when: - bit: 64 os: linux @@ -31058,22 +31150,20 @@ Annals of Rome: installDir: annalsofrome: {} launch: - /dosbox_windows/dosbox.exe: - - arguments: >- - .\\dosbox_windows\\dosbox -exit -conf \"dosbox_annalsofrome.conf\"^ -c \"mount C ..\\annalsofrome\"^ -c - \"C:\"^ -c \"cd AOR\"^ -c \"AOR.exe\" -noconsole -fullscreen -exit ^ + "/dosbox_windows/dosbox.exe": + - arguments: ".\\\\dosbox_windows\\\\dosbox -exit -conf \\\"dosbox_annalsofrome.conf\\\"^ -c \\\"mount C ..\\\\annalsofrome\\\"^ -c \\\"C:\\\"^ -c \\\"cd AOR\\\"^ -c \\\"AOR.exe\\\" -noconsole -fullscreen -exit ^" when: - os: windows store: steam - /runAnnalsofrome.sh: + "/runAnnalsofrome.sh": - when: - os: linux store: steam steam: id: 1148670 -'Anne McCaffrey''s Freedom: First Resistance': +"Anne McCaffrey's Freedom: First Resistance": files: - /SaveGame: + "/SaveGame": tags: - save when: @@ -31083,11 +31173,11 @@ Annie Amber: Annie Amber: {} steam: id: 464440 -'Annie: Last Hope': +"Annie: Last Hope": installDir: Annie: {} launch: - /ANNIE.exe: + "/ANNIE.exe": - when: - os: windows store: steam @@ -31095,27 +31185,27 @@ Annie Amber: id: 1174390 Anno 1404: files: - /Ubisoft/Anno1404/Config/Engine.ini: + "/Ubisoft/Anno1404/Config/Engine.ini": tags: - config when: - os: windows - /Ubisoft/Anno1404/Profiles: + "/Ubisoft/Anno1404/Profiles": tags: - save when: - os: windows - /Ubisoft/Anno1404Addon/Config/Engine.ini: + "/Ubisoft/Anno1404Addon/Config/Engine.ini": tags: - config when: - os: windows - /Anno 1404 Venice/Savegames: + "/Anno 1404 Venice/Savegames": tags: - save when: - os: windows - /Anno 1404/Savegames: + "/Anno 1404/Savegames": tags: - save when: @@ -31124,31 +31214,31 @@ Anno 1404: id: 1440426004 id: steamExtra: - - 33340 - 33250 + - 33340 - 33350 - 33359 installDir: Dawn of Discovery: {} launch: - /Anno4.exe: + "/Anno4.exe": - when: - store: steam steam: id: 33210 -'Anno 1404: History Edition': +"Anno 1404: History Edition": files: - /Documents/Anno1404 Venice/Savegames: + "/Documents/Anno1404 Venice/Savegames": tags: - save when: - os: windows - /Ubisoft/Anno1404/Config: + "/Ubisoft/Anno1404/Config": tags: - config when: - os: windows - /Anno1404/Savegames: + "/Anno1404/Savegames": tags: - save when: @@ -31156,8 +31246,8 @@ Anno 1404: installDir: Anno 1404 - History Edition: {} launch: - /Anno1404Addon.exe: - - arguments: '-uplay_steam_mode' + "/Anno1404Addon.exe": + - arguments: "-uplay_steam_mode" when: - bit: 64 os: windows @@ -31166,7 +31256,7 @@ Anno 1404: id: 1281630 Anno 1503: files: - /SaveGame: + "/SaveGame": tags: - save when: @@ -31177,21 +31267,21 @@ Anno 1503: HKEY_CURRENT_USER/SOFTWARE/Max-Design/Anno1503: tags: - config -'Anno 1503: History Edition': +"Anno 1503: History Edition": files: - /Anno 1503 History Edition/SaveGame/Profilename: + "/Anno 1503 History Edition/SaveGame/Profilename": tags: - save when: - os: windows -'Anno 1602: Creation of a New World': +"Anno 1602: Creation of a New World": files: - /Game.dat: + "/Game.dat": tags: - save when: - os: windows - /SAVEGAME: + "/SAVEGAME": tags: - save when: @@ -31202,26 +31292,26 @@ Anno 1503: HKEY_CURRENT_USER/SOFTWARE/ANNO1602: tags: - config -'Anno 1602: History Edition': +"Anno 1602: History Edition": files: - /Ubisoft/Anno1602/Config: + "/Ubisoft/Anno1602/Config": tags: - config when: - os: windows - /Anno1602 History Edition: + "/Anno1602 History Edition": tags: - save when: - os: windows Anno 1701: files: - /Savegames: + "/Savegames": tags: - save when: - os: windows - /Virtual Store/Program Files (x86)/Aspyr/1701 AD/Engine.ini: + "/Virtual Store/Program Files (x86)/Aspyr/1701 AD/Engine.ini": tags: - config when: @@ -31234,32 +31324,32 @@ Anno 1701: installDir: 1701 AD: {} launch: - /1701.exe: + "/1701.exe": - when: - store: steam steam: id: 7870 -'Anno 1701: History Edition': +"Anno 1701: History Edition": files: - /games/Anno 1701 - History Edition/Savegames: + "/games/Anno 1701 - History Edition/Savegames": tags: - save when: - os: windows store: uplay - /Ubisoft/Anno1701/Config: + "/Ubisoft/Anno1701/Config": tags: - config when: - os: windows Anno 1800: files: - /Anno 1800/accounts: + "/Anno 1800/accounts": tags: - save when: - os: windows - /Anno 1800/config: + "/Anno 1800/config": tags: - config when: @@ -31267,8 +31357,8 @@ Anno 1800: installDir: Anno 1800: {} launch: - /Bin/Win64/Anno1800.exe: - - arguments: '-uplay_steam_mode' + "/Bin/Win64/Anno1800.exe": + - arguments: "-uplay_steam_mode" when: - bit: 64 os: windows @@ -31277,17 +31367,17 @@ Anno 1800: id: 916440 Anno 2070: files: - /Ubisoft/ANNO 2070/Accounts: + "/Ubisoft/ANNO 2070/Accounts": tags: - save when: - os: windows - /Ubisoft/ANNO 2070/Config: + "/Ubisoft/ANNO 2070/Config": tags: - config when: - os: windows - /ANNO 2070/Accounts: + "/ANNO 2070/Accounts": tags: - save when: @@ -31295,21 +31385,21 @@ Anno 2070: installDir: Anno 2070: {} launch: - /Anno5.exe: - - arguments: '-uplay_steam_mode' + "/Anno5.exe": + - arguments: "-uplay_steam_mode" when: - store: steam steam: id: 48240 Anno 2205: files: - /savegames//2052: + "/savegames//2052": tags: - save when: - os: windows store: uplay - /Anno 2205/config: + "/Anno 2205/config": tags: - config when: @@ -31317,21 +31407,21 @@ Anno 2205: installDir: Anno 2205: {} launch: - /Bin/Win64/Anno2205.exe: - - arguments: '-uplay_steam_mode' + "/Bin/Win64/Anno2205.exe": + - arguments: "-uplay_steam_mode" when: - store: steam steam: id: 375910 -'Anno Domini: Huntsman': +"Anno Domini: Huntsman": installDir: Anno Domini Godfather: {} launch: - /Anno_Domini_Godfather: + "/Anno_Domini_Godfather": - when: - os: mac store: steam - /Anno_Domini_Godfather.exe: + "/Anno_Domini_Godfather.exe": - when: - os: windows store: steam @@ -31341,15 +31431,15 @@ Anno Online: installDir: Anno Online: {} launch: - /Anno Online.app: + "/Anno Online.app": - when: - os: mac store: steam - /nw: + "/nw": - when: - os: linux store: steam - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -31359,17 +31449,20 @@ Annotation of Love: installDir: Annotation of Love: {} launch: - /Annotation of Love.app/Contents/MacOS/nwjs: + "/Annotation of Love.app/Contents/MacOS/nwjs": - when: - os: mac store: steam - /nw: + "/nw": - when: - bit: 64 os: linux store: steam - /nw.exe: + "/nw.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam @@ -31379,15 +31472,15 @@ Annual: installDir: Annual: {} launch: - /Annual.exe: + "/Annual.exe": - when: - os: windows store: steam steam: id: 710090 -'Annwn: The Otherworld': +"Annwn: The Otherworld": files: - /AppData/LocalLow/Quantum Soup Studios/Annwn: + "/AppData/LocalLow/Quantum Soup Studios/Annwn": tags: - config - save @@ -31396,7 +31489,7 @@ Annual: installDir: Annwn: {} launch: - /Annwn.exe: + "/Annwn.exe": - when: - os: windows store: steam @@ -31406,20 +31499,20 @@ Anode: installDir: Anode: {} launch: - /anode.app: + "/anode.app": - when: - os: mac store: steam - /anode.exe: + "/anode.exe": - when: - os: windows store: steam - /anode.x86: + "/anode.x86": - when: - bit: 32 os: linux store: steam - /anode.x86_64: + "/anode.x86_64": - when: - bit: 64 os: linux @@ -31428,28 +31521,28 @@ Anode: id: 401120 Anodyne: files: - /.Anodyne: + "/.Anodyne": tags: - save when: - os: windows - /.appdata/Anodyne/Local Store/#SharedObjects/Anodyne.swf: + "/.appdata/Anodyne/Local Store/#SharedObjects/Anodyne.swf": tags: - save when: - os: linux - /Anodyne: + "/Anodyne": tags: - save when: - os: mac - os: linux - /Library/Preferences/Anodyne/Local Store/#SharedObjects/Anodyne.swf: + "/Library/Preferences/Anodyne/Local Store/#SharedObjects/Anodyne.swf": tags: - save when: - os: mac - /Anodyne/Local Store/#SharedObjects/Anodyne.swf: + "/Anodyne/Local Store/#SharedObjects/Anodyne.swf": tags: - save when: @@ -31459,38 +31552,38 @@ Anodyne: installDir: Anodyne: {} launch: - /Anodyne.exe: + "/Anodyne.exe": - when: - os: windows store: steam - /Contents/MacOS/Anodyne: + "/Contents/MacOS/Anodyne": - when: - os: mac store: steam - /run.sh: + "/run.sh": - when: - os: linux store: steam steam: id: 234900 -'Anodyne 2: Return to Dust': +"Anodyne 2: Return to Dust": files: - /AppData/LocalLow/Analgesic Productions LLC/Anodyne 2/config*.txt: + "/AppData/LocalLow/Analgesic Productions LLC/Anodyne 2/config*.txt": tags: - config when: - os: windows - /AppData/LocalLow/Analgesic Productions LLC/Anodyne 2/save*.txt: + "/AppData/LocalLow/Analgesic Productions LLC/Anodyne 2/save*.txt": tags: - save when: - os: windows - /unity3d/Analgesic Productions LLC/Anodyne 2/config*.txt: + "/unity3d/Analgesic Productions LLC/Anodyne 2/config*.txt": tags: - config when: - os: linux - /unity3d/Analgesic Productions LLC/Anodyne 2/save*.txt: + "/unity3d/Analgesic Productions LLC/Anodyne 2/save*.txt": tags: - save when: @@ -31500,20 +31593,20 @@ Anodyne: installDir: Anodyne 2: {} launch: - /Anodyne2.app/Contents/MacOS/Anodyne2: + "/Anodyne2.app/Contents/MacOS/Anodyne2": - when: - os: mac store: steam - /Anodyne2.exe: + "/Anodyne2.exe": - when: - os: windows store: steam - /Anodyne2.x86: + "/Anodyne2.x86": - when: - bit: 32 os: linux store: steam - /Anodyne2.x86_64: + "/Anodyne2.x86_64": - when: - bit: 64 os: linux @@ -31528,7 +31621,7 @@ Anomalie: installDir: Anomalie: {} launch: - /Anomalie.exe: + "/Anomalie.exe": - when: - store: steam steam: @@ -31537,7 +31630,7 @@ Anomalies: installDir: Anomalies: {} launch: - /Anomalies.exe: + "/Anomalies.exe": - when: - os: windows store: steam @@ -31547,7 +31640,7 @@ Anomaly 1729: installDir: Anomaly 1729: {} launch: - /Anomaly1729/TheCube.exe: + "/Anomaly1729/TheCube.exe": - when: - os: windows store: steam @@ -31555,18 +31648,18 @@ Anomaly 1729: id: 424320 Anomaly 2: files: - /.Anomaly 2: + "/.Anomaly 2": tags: - config - save when: - os: linux - /userdata//236730/remote: + "/userdata//236730/remote": tags: - save when: - store: steam - /11bitstudios/Anomaly 2: + "/11bitstudios/Anomaly 2": tags: - config - save @@ -31577,15 +31670,15 @@ Anomaly 2: installDir: Anomaly 2: {} launch: - /Anomaly 2.app: + "/Anomaly 2.app": - when: - os: mac store: steam - /Anomaly 2.exe: + "/Anomaly 2.exe": - when: - os: windows store: steam - /Anomaly2Linux: + "/Anomaly2Linux": - when: - os: linux store: steam @@ -31593,22 +31686,22 @@ Anomaly 2: id: 236730 Anomaly Defenders: files: - /.Anomaly Defenders: + "/.Anomaly Defenders": tags: - save when: - os: linux - /.Anomaly Defenders/config.bin: + "/.Anomaly Defenders/config.bin": tags: - config when: - os: linux - /userdata//294750: + "/userdata//294750": tags: - save when: - store: steam - /11bitstudios/Anomaly Defense: + "/11bitstudios/Anomaly Defense": tags: - config - save @@ -31619,15 +31712,15 @@ Anomaly Defenders: installDir: Anomaly Defenders: {} launch: - /ADStandalonePC.exe: + "/ADStandalonePC.exe": - when: - os: windows store: steam - /AnomalyDefenders: + "/AnomalyDefenders": - when: - os: linux store: steam - /Anomaly_Defenders.app: + "/Anomaly_Defenders.app": - when: - os: mac store: steam @@ -31635,13 +31728,13 @@ Anomaly Defenders: id: 294750 Anomaly Korea: files: - /.Anomaly Korea: + "/.Anomaly Korea": tags: - config - save when: - os: linux - /Anomaly Korea: + "/Anomaly Korea": tags: - config - save @@ -31652,15 +31745,15 @@ Anomaly Korea: installDir: Anomaly Korea: {} launch: - /AnomalyKorea: + "/AnomalyKorea": - when: - os: linux store: steam - /AnomalyKorea.exe: + "/AnomalyKorea.exe": - when: - os: windows store: steam - /AnomalyKoreaMac.app: + "/AnomalyKoreaMac.app": - when: - os: mac store: steam @@ -31668,18 +31761,18 @@ Anomaly Korea: id: 251530 Anomaly Warzone Earth: files: - /.Anomaly: + "/.Anomaly": tags: - config - save when: - os: linux - /userdata//91200/remote: + "/userdata//91200/remote": tags: - save when: - store: steam - /Anomaly Warzone Earth: + "/Anomaly Warzone Earth": tags: - config - save @@ -31690,15 +31783,15 @@ Anomaly Warzone Earth: installDir: Anomaly Warzone Earth: {} launch: - /AnomalyWarzoneEarth: + "/AnomalyWarzoneEarth": - when: - os: linux store: steam - /AnomalyWarzoneEarth.app: + "/AnomalyWarzoneEarth.app": - when: - os: mac store: steam - /AnomalyWarzoneEarth.exe: + "/AnomalyWarzoneEarth.exe": - when: - os: windows store: steam @@ -31706,7 +31799,7 @@ Anomaly Warzone Earth: id: 91200 Anomaly Warzone Earth Mobile Campaign: files: - /Anomaly Warzone Earth - Mobile Campaign: + "/Anomaly Warzone Earth - Mobile Campaign": tags: - config - save @@ -31717,15 +31810,15 @@ Anomaly Warzone Earth Mobile Campaign: installDir: UntitledApp: {} launch: - /Anomaly Warzone Earth - Mobile Campaign.app: + "/Anomaly Warzone Earth - Mobile Campaign.app": - when: - os: mac store: steam - /AnomalyMobileCampaign: + "/AnomalyMobileCampaign": - when: - os: linux store: steam - /AnomalyMobileCampaign.exe: + "/AnomalyMobileCampaign.exe": - when: - os: windows store: steam @@ -31735,47 +31828,47 @@ Anomaly Zone: installDir: AnomalyZone: {} launch: - /game/AnomalyZone.exe: + "/game/AnomalyZone.exe": - when: - os: windows store: steam - workingDir: /game + workingDir: "/game" steam: id: 1157250 Anomie: installDir: Anomie: {} launch: - /Anomie.exe: + "/Anomie.exe": - when: - os: windows store: steam steam: id: 625410 -'Anonymous Agony: File': +"Anonymous Agony: File": installDir: ANONYMOUS AGONY - Serial Killer Prologue: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam steam: id: 1081840 -'Anonymous Letter: Lost Heart / Stayer': +"Anonymous Letter: Lost Heart / Stayer": installDir: 匿名信:失心者 Stayer: {} launch: - /p3_stream.exe: + "/p3_stream.exe": - when: - store: steam steam: id: 1209170 -'Anonymous Letter: Prowler': +"Anonymous Letter: Prowler": installDir: 匿名信:隐匿者 Anonymous Letter :Prowler: {} launch: - /隐匿者.exe: + "/隐匿者.exe": - when: - store: steam steam: @@ -31784,7 +31877,7 @@ Anonymous ME: installDir: Anonymous ME: {} launch: - /AnonymousME.exe: + "/AnonymousME.exe": - when: - os: windows store: steam @@ -31794,8 +31887,8 @@ Anonymous Player: installDir: Anonymous Player: {} launch: - /Game.exe: - - arguments: '--in-process-gpu' + "/Game.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam @@ -31803,12 +31896,12 @@ Anonymous Player: id: 1172080 Anonymous;Code: files: - /My Games/mages_steam/ANONYMOUS;CODE: + "/My Games/mages_steam/ANONYMOUS;CODE": tags: - save when: - os: windows - /My Games/mages_steam/ANONYMOUS;CODE/config.dat: + "/My Games/mages_steam/ANONYMOUS;CODE/config.dat": tags: - config when: @@ -31821,11 +31914,11 @@ Another Adventure: installDir: Another Adventure: {} launch: - /AnotherAdventure.app/Contents/MacOS/AnotherAdventure: + "/AnotherAdventure.app/Contents/MacOS/AnotherAdventure": - when: - os: mac store: steam - /AnotherAdventure.exe: + "/AnotherAdventure.exe": - when: - os: windows store: steam @@ -31840,11 +31933,11 @@ Another Brick in Space: installDir: Another Brick in Space: {} launch: - /Another Brick in Space.app/Contents/MacOS/Another Brick in Space: + "/Another Brick in Space.app/Contents/MacOS/Another Brick in Space": - when: - os: mac store: steam - /Another Brick in Space.exe: + "/Another Brick in Space.exe": - when: - os: windows store: steam @@ -31854,7 +31947,7 @@ Another Brick in the Mall: installDir: Another Brick in the Mall: {} launch: - /launch.exe: + "/launch.exe": - when: - os: windows store: steam @@ -31864,23 +31957,17 @@ Another Dawn: installDir: Another Dawn: {} launch: - /Another Dawn.exe: + "/Another Dawn.exe": - when: - os: windows store: steam steam: id: 1078670 Another Eden: - files: - /AnotherEden: - tags: - - config - when: - - os: windows installDir: ANOTHER EDEN: {} launch: - /AnotherEden.exe: + "/AnotherEden.exe": - when: - store: steam steam: @@ -31889,76 +31976,76 @@ Another Hardcore Game: installDir: Another Hardcore Game: {} launch: - /AnotherHardcoreGame.exe: + "/AnotherHardcoreGame.exe": - when: - os: windows store: steam steam: id: 951050 -'Another Lost Phone: Laura''s Story': +"Another Lost Phone: Laura's Story": gog: id: 1418882576 installDir: - Another Lost Phone Laura's Story: {} + "Another Lost Phone Laura's Story": {} launch: - /alp.app: + "/alp.app": - when: - os: mac store: steam - /alp.exe: + "/alp.exe": - when: - os: windows store: steam - /alp.x86: + "/alp.x86": - when: - bit: 32 os: linux store: steam - /alp.x86_64: + "/alp.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 689910 -'Another Metroid 2 Remake: Return of Samus': +"Another Metroid 2 Remake: Return of Samus": files: - /Contents/Resources/modifiers.ini: + "/Contents/Resources/modifiers.ini": tags: - config when: - os: mac - /modifiers.ini: + "/modifiers.ini": tags: - config when: - os: windows - /Library/Application Support/com.yoyogames.am2r/config.ini: + "/Library/Application Support/com.yoyogames.am2r/config.ini": tags: - config when: - os: mac - /Library/Application Support/com.yoyogames.am2r/save#: + "/Library/Application Support/com.yoyogames.am2r/save#": tags: - save when: - os: mac - /AM2R/config.ini: + "/AM2R/config.ini": tags: - config when: - os: windows - /AM2R/save#: + "/AM2R/save#": tags: - save when: - os: windows - /AM2R: + "/AM2R": tags: - save when: - os: linux - /AM2R/config.ini: + "/AM2R/config.ini": tags: - config when: @@ -31967,7 +32054,7 @@ Another Otter: installDir: Another Otter: {} launch: - /Another Otter.exe: + "/Another Otter.exe": - when: - os: windows store: steam @@ -31975,12 +32062,12 @@ Another Otter: id: 886470 Another Perspective: files: - /Another_Perspective: + "/Another_Perspective": tags: - save when: - os: windows - /Another_Perspective/options.ini: + "/Another_Perspective/options.ini": tags: - config when: @@ -31988,7 +32075,7 @@ Another Perspective: installDir: AnotherPerspective: {} launch: - /ap.exe: + "/ap.exe": - when: - store: steam steam: @@ -32002,7 +32089,7 @@ Another Rocket Game: installDir: Another Rocket Game: {} launch: - /AnotherRocketGame.exe: + "/AnotherRocketGame.exe": - when: - os: windows store: steam @@ -32010,7 +32097,7 @@ Another Rocket Game: id: 724600 Another Sight: files: - /SK/Saved/Config/WindowsNoEditor: + "/SK/Saved/Config/WindowsNoEditor": tags: - config when: @@ -32018,22 +32105,22 @@ Another Sight: installDir: Another Sight: {} launch: - /Another Sight.exe: + "/Another Sight.exe": - when: - bit: 64 os: windows store: steam - /AnotherSight.app: + "/AnotherSight.app": - when: - os: mac store: steam steam: id: 888630 -Another Sight - Hodge's Journey: +"Another Sight - Hodge's Journey": installDir: - Another Sight - Hodge's Journey: {} + "Another Sight - Hodge's Journey": {} launch: - /Hodge's Journey.exe: + "/Hodge's Journey.exe": - when: - bit: 64 os: windows @@ -32044,15 +32131,15 @@ Another Star: installDir: Another Star: {} launch: - /AnotherStar: + "/AnotherStar": - when: - os: linux store: steam - /AnotherStar.app: + "/AnotherStar.app": - when: - os: mac store: steam - /AnotherStar.exe: + "/AnotherStar.exe": - when: - os: windows store: steam @@ -32062,7 +32149,7 @@ Another Try: installDir: Another Try: {} launch: - /AnotherTry.exe: + "/AnotherTry.exe": - when: - os: windows store: steam @@ -32070,32 +32157,32 @@ Another Try: id: 1197220 Another World: files: - /AnotherWorld.ini: + "/AnotherWorld.ini": tags: - config when: - os: windows - /progression.dat: + "/progression.dat": tags: - save when: - os: windows - /Documents/Another World: + "/Documents/Another World": tags: - config when: - os: mac - /Another World: + "/Another World": tags: - save when: - os: windows - /Another World/AnotherWorldUserDef.xml: + "/Another World/AnotherWorldUserDef.xml": tags: - config when: - os: windows - /DotEMU/Another World: + "/DotEMU/Another World": tags: - config - save @@ -32106,27 +32193,27 @@ Another World: installDir: Another World: {} launch: - /AnotherWorld: + "/AnotherWorld": - when: - os: linux store: steam - /AnotherWorld.app: + "/AnotherWorld.app": - when: - os: mac store: steam - /anowor.exe: + "/anowor.exe": - when: - os: windows store: steam - /mac-menubonus.sh: + "/mac-menubonus.sh": - when: - os: mac store: steam - /menubonus.bat: + "/menubonus.bat": - when: - os: windows store: steam - /menubonus.sh: + "/menubonus.sh": - when: - os: linux store: steam @@ -32136,17 +32223,17 @@ Another World Quest: installDir: Another World Quest: {} launch: - /AnotherWorldQuest.exe: + "/AnotherWorldQuest.exe": - when: - os: windows store: steam steam: id: 2083010 -'Another World: Truck Driver': +"Another World: Truck Driver": installDir: Another world Truck driver: {} launch: - /Another world Truck driver.exe: + "/Another world Truck driver.exe": - when: - os: windows store: steam @@ -32156,15 +32243,15 @@ Anoxemia: installDir: Anoxemia: {} launch: - /Anoxemia.app: + "/Anoxemia.app": - when: - os: mac store: steam - /Anoxemia.exe: + "/Anoxemia.exe": - when: - os: windows store: steam - /Anoxemia.x86: + "/Anoxemia.x86": - when: - os: linux store: steam @@ -32174,7 +32261,7 @@ Anstorm: installDir: Anstorm: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -32183,21 +32270,21 @@ Anstorm: Anstoss: gog: id: 1142670940 -'Anstoss 2: Der Fußballmanager': +"Anstoss 2: Der Fußballmanager": gog: id: 1808817480 -'Anstoss 3: Der Fußballmanager': +"Anstoss 3: Der Fußballmanager": gog: id: 1886141726 Answer Knot: installDir: Answer Knot: {} launch: - /Answer Knot.exe: + "/Answer Knot.exe": - when: - os: windows store: steam - /Contents/MacOS/AK_build_mac_190719: + "/Contents/MacOS/AK_build_mac_190719": - when: - os: mac store: steam @@ -32207,7 +32294,7 @@ Answer The Question: installDir: atq: {} launch: - /ATQ64.exe: + "/ATQ64.exe": - when: - store: steam steam: @@ -32216,7 +32303,7 @@ Ant Empire: installDir: Ant Empire: {} launch: - /build/Ant Empire.exe: + "/build/Ant Empire.exe": - when: - store: steam steam: @@ -32225,69 +32312,72 @@ Ant Queen: installDir: Ant Queen: {} launch: - /AntQueen.app/Contents/MacOS/AntQueen: + "/AntQueen.app/Contents/MacOS/AntQueen": - when: - os: mac store: steam - /AntQueen.exe: + "/AntQueen.exe": - when: - bit: 32 os: windows store: steam - /AntQueen.x86: + "/AntQueen.x86": - when: - bit: 32 os: linux store: steam - /AntQueen_64.exe: + "/AntQueen_64.exe": - when: - bit: 64 os: windows store: steam - /AntQueen_64.x86_64: + "/AntQueen_64.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 491090 -'Ant War: Domination': +"Ant War: Domination": installDir: Ant War Domination: {} launch: - /AntWar.app: + "/AntWar.app": - when: - os: mac store: steam - /AntWar.exe: + "/AntWar.exe": - when: - os: windows store: steam - /AntWar.x86: + "/AntWar.x86": - when: - os: linux store: steam steam: id: 406080 -'Ant-gravity: Tiny''s Adventure': +"Ant-gravity: Tiny's Adventure": installDir: - Ant-gravity Tiny's Adventure: {} + "Ant-gravity Tiny's Adventure": {} launch: - /Ant-gravity.app/Contents/MacOS/Ant-gravity: + "/Ant-gravity.app/Contents/MacOS/Ant-gravity": - when: - os: mac store: steam - /Ant-gravity.exe: + "/Ant-gravity.exe": - when: - bit: 32 os: windows store: steam - /Ant-gravity.x86: + - bit: 64 + os: windows + store: steam + "/Ant-gravity.x86": - when: - bit: 32 os: linux store: steam - /Ant-gravity.x86_64: + "/Ant-gravity.x86_64": - when: - bit: 64 os: linux @@ -32298,11 +32388,11 @@ AntQueen 3D: installDir: AntQueen 3D: {} launch: - /AntQueen3D.app/Contents/MacOS/AntQueen3D: + "/AntQueen3D.app/Contents/MacOS/AntQueen3D": - when: - os: mac store: steam - /AntQueen3D.exe: + "/AntQueen3D.exe": - when: - os: windows store: steam @@ -32310,7 +32400,7 @@ AntQueen 3D: id: 1058740 AntVentor: files: - /AppData/LocalLow/LoopyMood/AntVentor/AntVentor_1_0.save: + "/AppData/LocalLow/LoopyMood/AntVentor/AntVentor_1_0.save": tags: - save when: @@ -32318,20 +32408,20 @@ AntVentor: installDir: AntVentor: {} launch: - /AntVentor.app: + "/AntVentor.app": - when: - os: mac store: steam - /AntVentor.exe: + "/AntVentor.exe": - when: - os: windows store: steam - /AntVentor.x86: + "/AntVentor.x86": - when: - bit: 32 os: linux store: steam - /AntVentor.x86_64: + "/AntVentor.x86_64": - when: - bit: 64 os: linux @@ -32344,7 +32434,7 @@ AntVentor: id: 739190 Antagonist: files: - /Save*.rvdata2: + "/Save*.rvdata2": tags: - save when: @@ -32352,7 +32442,7 @@ Antagonist: installDir: Antagonist: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: @@ -32361,7 +32451,7 @@ Antarctic Girl 南極娘: installDir: antarctic_girl: {} launch: - /angirl.exe: + "/angirl.exe": - when: - os: windows store: steam @@ -32371,7 +32461,7 @@ Antares: installDir: Antares: {} launch: - /Antares.exe: + "/Antares.exe": - when: - store: steam steam: @@ -32380,11 +32470,11 @@ Antaria Online: installDir: AntariaOnline: {} launch: - /aoV2Linux.x86_64: + "/aoV2Linux.x86_64": - when: - os: linux store: steam - /aoV2Windows.exe: + "/aoV2Windows.exe": - when: - bit: 64 os: windows @@ -32396,7 +32486,7 @@ Antegods: id: 410350 Antenna: files: - /Antenna: + "/Antenna": tags: - config - save @@ -32405,7 +32495,7 @@ Antenna: installDir: antenna: {} launch: - /antenna.exe: + "/antenna.exe": - when: - os: windows store: steam @@ -32415,15 +32505,15 @@ Antenna Dilemma: installDir: AntennaDilemma: {} launch: - /AntennaDilemma.app: + "/AntennaDilemma.app": - when: - os: mac store: steam - /AntennaDilemma.exe: + "/AntennaDilemma.exe": - when: - os: windows store: steam - /AntennaDilemma.x86_64: + "/AntennaDilemma.x86_64": - when: - os: linux store: steam @@ -32433,11 +32523,11 @@ AntharioN: installDir: AntharioN: {} launch: - /AntharioN.app: + "/AntharioN.app": - when: - os: mac store: steam - /AntharioN.exe: + "/AntharioN.exe": - when: - os: windows store: steam @@ -32447,11 +32537,11 @@ Anthelion: installDir: Anthelion: {} launch: - /Anthelion.app: + "/Anthelion.app": - when: - os: mac store: steam - /Anthelion.exe: + "/Anthelion.exe": - when: - os: windows store: steam @@ -32459,7 +32549,7 @@ Anthelion: id: 494000 Anthem: files: - /BioWare/Anthem/settings: + "/BioWare/Anthem/settings": tags: - config when: @@ -32468,7 +32558,7 @@ Anthology of Fear: installDir: Anthology of Fear: {} launch: - /Anthology of Fear.exe: + "/Anthology of Fear.exe": - when: - os: windows store: steam @@ -32478,7 +32568,7 @@ Anthropomachy: installDir: Anthropomachy: {} launch: - /Anthropomachy.exe: + "/Anthropomachy.exe": - when: - os: windows store: steam @@ -32493,8 +32583,8 @@ Anti-Grav Bamboo-copter: installDir: Anti-Grav: {} launch: - /Anti-Grav/Anti-Grav.exe: - - arguments: '-windowed' + "/Anti-Grav/Anti-Grav.exe": + - arguments: "-windowed" when: - os: windows store: steam @@ -32504,11 +32594,11 @@ Anti-Opoly: installDir: Anti-Opoly: {} launch: - /Anti-Opoly.app: + "/Anti-Opoly.app": - when: - os: mac store: steam - /Anti-Opoly.exe: + "/Anti-Opoly.exe": - when: - os: windows store: steam @@ -32518,11 +32608,11 @@ AntiPodal: installDir: AntiPodal: {} launch: - /AntiPodal.app: + "/AntiPodal.app": - when: - os: mac store: steam - /AntiPodal.exe: + "/AntiPodal.exe": - when: - os: windows store: steam @@ -32530,32 +32620,32 @@ AntiPodal: id: 1013950 Antichamber: files: - /Antichamber.app/Contents/Resources/UDKGame/Config: + "/Antichamber.app/Contents/Resources/UDKGame/Config": tags: - config when: - os: mac - /Binaries/Win32/SavedGame.bin: + "/Binaries/Win32/SavedGame.bin": tags: - save when: - os: windows - /UDKGame/Config: + "/UDKGame/Config": tags: - config when: - os: windows - /Library/Application Support/Unreal Tournament 3: + "/Library/Application Support/Unreal Tournament 3": tags: - save when: - os: mac - /AlexanderBruce/Antichamber/SavedGame.bin: + "/AlexanderBruce/Antichamber/SavedGame.bin": tags: - save when: - os: linux - /AlexanderBruce/Antichamber/UDKGame/Config: + "/AlexanderBruce/Antichamber/UDKGame/Config": tags: - config when: @@ -32563,21 +32653,21 @@ Antichamber: installDir: Antichamber: {} launch: - /Antichamber.app/Contents/MacOS/UDKGame: + "/Antichamber.app/Contents/MacOS/UDKGame": - when: - os: mac store: steam - workingDir: /Antichamber.app/Contents/MacOS - /Binaries/Linux/UDKGame-Linux: + workingDir: "/Antichamber.app/Contents/MacOS" + "/Binaries/Linux/UDKGame-Linux": - when: - os: linux store: steam - workingDir: /Binaries/Linux - /Binaries/Win32/UDK.exe: + workingDir: "/Binaries/Linux" + "/Binaries/Win32/UDK.exe": - when: - os: windows store: steam - workingDir: /Binaries/Win32 + workingDir: "/Binaries/Win32" steam: id: 219890 Anticorps VR: @@ -32587,12 +32677,12 @@ Anticorps VR: id: 1101220 Antiflux: files: - /antiflux_savegame.txt: + "/antiflux_savegame.txt": tags: - save when: - os: windows - /antiflux_settings.txt: + "/antiflux_settings.txt": tags: - config when: @@ -32600,7 +32690,7 @@ Antiflux: installDir: Antiflux: {} launch: - /Antiflux.exe: + "/Antiflux.exe": - when: - os: windows store: steam @@ -32610,7 +32700,7 @@ Antigraviator: installDir: Antigraviator: {} launch: - /Antigraviator.exe: + "/Antigraviator.exe": - when: - bit: 64 os: windows @@ -32623,12 +32713,12 @@ Antigraviator: id: 621020 Antihero: files: - /com.timconkling.aciv/Local Store/#SharedObjects/com.timconkling.aciv.sol: + "/com.timconkling.aciv/Local Store/#SharedObjects/com.timconkling.aciv.sol": tags: - config when: - os: windows - /com.timconkling.aciv/Local Store/SavedGames: + "/com.timconkling.aciv/Local Store/SavedGames": tags: - save when: @@ -32638,11 +32728,11 @@ Antihero: installDir: Antihero: {} launch: - /Antihero.app/Contents/MacOS/Antihero: + "/Antihero.app/Contents/MacOS/Antihero": - when: - os: mac store: steam - /Antihero.exe: + "/Antihero.exe": - when: - os: windows store: steam @@ -32652,15 +32742,15 @@ Antihorror: installDir: Antihorror: {} launch: - /Antihorror.app: + "/Antihorror.app": - when: - os: mac store: steam - /Antihorror.exe: + "/Antihorror.exe": - when: - os: windows store: steam - /Antihorror.x86: + "/Antihorror.x86": - when: - os: linux store: steam @@ -32670,7 +32760,7 @@ Antinomy of Common Flowers: installDir: th155: {} launch: - /th155.exe: + "/th155.exe": - when: - os: windows store: steam @@ -32683,7 +32773,7 @@ Antiquia Lost: installDir: Antiquia Lost: {} launch: - /AntiquiaLost.exe: + "/AntiquiaLost.exe": - when: - os: windows store: steam @@ -32693,17 +32783,20 @@ Antiquitas: installDir: Antiquitas: {} launch: - /Antiquitas: + "/Antiquitas": - when: - bit: 64 os: linux store: steam - /Antiquitas.app: + "/Antiquitas.app": - when: - os: mac store: steam - /Antiquitas.exe: + "/Antiquitas.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam @@ -32713,7 +32806,7 @@ Antirocketh: installDir: Antirocketh: {} launch: - /Antirocketh.exe: + "/Antirocketh.exe": - when: - os: windows store: steam @@ -32723,11 +32816,11 @@ Antisnake: installDir: Antisnake: {} launch: - /antisnake.exe: + "/antisnake.exe": - when: - os: windows store: steam - /antisnake_beta.exe: + "/antisnake_beta.exe": - when: - os: windows store: steam @@ -32737,7 +32830,7 @@ Antisphere: installDir: soap: {} launch: - /antisphere.exe: + "/antisphere.exe": - when: - store: steam steam: @@ -32746,38 +32839,38 @@ Antisquad: installDir: Antisquad: {} launch: - /antisquad.app: + "/antisquad.app": - when: - os: mac store: steam - - arguments: '-bigPicture' + - arguments: "-bigPicture" when: - os: mac store: steam - /antisquad.exe: + "/antisquad.exe": - when: - os: windows store: steam - - arguments: '-bigPicture' + - arguments: "-bigPicture" when: - os: windows store: steam - /antisquad.x86: + "/antisquad.x86": - when: - bit: 32 os: linux store: steam - - arguments: '-bigPicture' + - arguments: "-bigPicture" when: - bit: 32 os: linux store: steam - /antisquad.x86_64: + "/antisquad.x86_64": - when: - bit: 64 os: linux store: steam - - arguments: '-bigPicture' + - arguments: "-bigPicture" when: - bit: 64 os: linux @@ -32788,8 +32881,8 @@ Antistatic: installDir: Antistatic: {} launch: - /Antistatic.exe: - - arguments: '--disallow-code-generation-from-strings ./app/dist/src/launch.js' + "/Antistatic.exe": + - arguments: "--disallow-code-generation-from-strings ./app/dist/src/launch.js" when: - bit: 64 os: windows @@ -32800,7 +32893,7 @@ Antitetrise: installDir: Antitetrise: {} launch: - /antitetrise.exe: + "/antitetrise.exe": - when: - os: windows store: steam @@ -32810,7 +32903,7 @@ Antox vs. Free Radicals: installDir: Antox vs. Free Radicals: {} launch: - /Antox vs. Free Radicals.exe: + "/Antox vs. Free Radicals.exe": - when: - os: windows store: steam @@ -32820,15 +32913,15 @@ Antrum: installDir: Antrum: {} launch: - /Antrum.app/Contents/MacOS/Antrum: + "/Antrum.app/Contents/MacOS/Antrum": - when: - os: mac store: steam - /Antrum.exe: + "/Antrum.exe": - when: - os: windows store: steam - /Antrum.x86_64: + "/Antrum.x86_64": - when: - bit: 64 os: linux @@ -32839,7 +32932,7 @@ Ants! Mission of the salvation: installDir: Ants! Mission of the salvation: {} launch: - /app.exe: + "/app.exe": - when: - os: windows store: steam @@ -32848,9 +32941,9 @@ Ants! Mission of the salvation: Anubis Dungeon: steam: id: 756870 -Anubis' Challenge: +"Anubis' Challenge": installDir: - Anubis' Challenge: {} + "Anubis' Challenge": {} steam: id: 971130 Anuchard: @@ -32860,7 +32953,7 @@ Anuchard: id: 1386620 Anvil Saga: files: - /AppData/LocalLow/Pirozhok Std_/Anvil Saga/Saves/*.es3: + "/AppData/LocalLow/Pirozhok Std_/Anvil Saga/Saves/*.es3": tags: - save when: @@ -32873,7 +32966,7 @@ Anvil Saga: installDir: Anvil Saga: {} launch: - /Anvil Saga.exe: + "/Anvil Saga.exe": - when: - bit: 64 os: windows @@ -32882,12 +32975,12 @@ Anvil Saga: id: 1587540 Anvil of Dawn: files: - /DATA/OPTIONS.DAT: + "/DATA/OPTIONS.DAT": tags: - config when: - os: dos - /SAVES: + "/SAVES": tags: - save when: @@ -32898,8 +32991,11 @@ Anxiety: installDir: Anxiety: {} launch: - /nw.exe: + "/nw.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam @@ -32917,7 +33013,7 @@ AoF Chess Club 2.0: installDir: Ancients of Fasaria Chess Club: {} launch: - /aofchessclub.exe: + "/aofchessclub.exe": - when: - store: steam steam: @@ -32926,17 +33022,17 @@ AoF World Online: installDir: AoF World Online: {} launch: - /AoF World Online.exe: + "/AoF World Online.exe": - when: - os: windows store: steam steam: id: 339860 -'AoT: Attack on Titanous The Game': +"AoT: Attack on Titanous The Game": installDir: Attack on Titan The Game: {} launch: - /AotGame.exe: + "/AotGame.exe": - when: - os: windows store: steam @@ -32946,14 +33042,14 @@ Aokana - EXTRA1: installDir: Aokana Extra1: {} launch: - /AokanaEXTRA1.exe: + "/AokanaEXTRA1.exe": - when: - store: steam steam: id: 1340130 Aokana - Four Rhythms Across the Blue: files: - /SaveData: + "/SaveData": tags: - save when: @@ -32961,7 +33057,7 @@ Aokana - Four Rhythms Across the Blue: installDir: Aokana: {} launch: - /Aokana.exe: + "/Aokana.exe": - when: - os: windows store: steam @@ -32971,7 +33067,7 @@ Aoki Ōkami to Shiroki Mejika: installDir: GenghisKhan1: {} launch: - /GenghisKhan1_Launcher.exe: + "/GenghisKhan1_Launcher.exe": - when: - os: windows store: steam @@ -32979,17 +33075,17 @@ Aoki Ōkami to Shiroki Mejika: id: 545000 Aozora Meikyuu: files: - /game/saves/*.save: + "/game/saves/*.save": tags: - save when: - os: windows - /renpy/config.py: + "/renpy/config.py": tags: - config when: - os: windows - /renpy/Aozora_Meikyuu-1427576285/*.save: + "/renpy/Aozora_Meikyuu-1427576285/*.save": tags: - save when: @@ -32997,15 +33093,15 @@ Aozora Meikyuu: installDir: Aozora Meikyuu: {} launch: - /Aozora_Meikyuu.app: + "/Aozora_Meikyuu.app": - when: - os: mac store: steam - /Aozora_Meikyuu.exe: + "/Aozora_Meikyuu.exe": - when: - os: windows store: steam - /Aozora_Meikyuu.sh: + "/Aozora_Meikyuu.sh": - when: - os: linux store: steam @@ -33018,7 +33114,7 @@ Aozora Under Girls - Karsome Irony: id: 1090370 Apache Longbow: files: - /PREFS.CFG: + "/PREFS.CFG": tags: - config when: @@ -33029,7 +33125,7 @@ Apartment 327: installDir: APARTMENT 327: {} launch: - /Apartmet_327.exe: + "/Apartmet_327.exe": - when: - bit: 64 os: windows @@ -33040,8 +33136,11 @@ Apartment 3301: installDir: Apartment 3301: {} launch: - /Apartment3301.exe: + "/Apartment3301.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam @@ -33051,11 +33150,11 @@ Apartment 666: installDir: Apartment 666: {} launch: - /apartment666.app: + "/apartment666.app": - when: - os: mac store: steam - /apartment666.exe: + "/apartment666.exe": - when: - os: windows store: steam @@ -33065,25 +33164,25 @@ Apartment of Love: installDir: Apartment of Love: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam steam: id: 788910 -'Apartment: A Separated Place': +"Apartment: A Separated Place": installDir: apartment a separated place: {} launch: - /Apartment_Linux/apartment.x86: + "/Apartment_Linux/apartment.x86": - when: - os: linux store: steam - /Apartment_Windows/apartment.exe: + "/Apartment_Windows/apartment.exe": - when: - os: windows store: steam - /apartment.app: + "/apartment.app": - when: - os: mac store: steam @@ -33096,7 +33195,7 @@ Ape Hit: id: 925360 Ape Out: files: - /AppData/LocalLow/Gabe Cuzzillo/ApeOut: + "/AppData/LocalLow/Gabe Cuzzillo/ApeOut": tags: - save when: @@ -33106,11 +33205,11 @@ Ape Out: installDir: Ape Out: {} launch: - /ApeOut.app: + "/ApeOut.app": - when: - os: mac store: steam - /ApeOut.exe: + "/ApeOut.exe": - when: - os: windows store: steam @@ -33124,7 +33223,7 @@ Aperion Cyberstorm: installDir: Aperion Cyberstorm: {} launch: - /AperionCyberstorm.exe: + "/AperionCyberstorm.exe": - when: - os: windows store: steam @@ -33132,12 +33231,12 @@ Aperion Cyberstorm: id: 492860 Aperture Desk Job: files: - /game/steampal/cfg/machine_convars.vcfg: + "/game/steampal/cfg/machine_convars.vcfg": tags: - save when: - os: windows - /game/steampal/cfg/video.txt: + "/game/steampal/cfg/video.txt": tags: - config when: @@ -33145,12 +33244,12 @@ Aperture Desk Job: installDir: Aperture Desk Job: {} launch: - /game/bin/win64/deskjob.exe: + "/game/bin/win64/deskjob.exe": - when: - os: windows store: steam - /game/deskjob.sh: - - arguments: '-threads 6' + "/game/deskjob.sh": + - arguments: "-threads 6" when: - os: linux store: steam @@ -33158,7 +33257,7 @@ Aperture Desk Job: id: 1902490 Aperture Hand Lab: files: - /Knux_Data/settings.json: + "/Knux_Data/settings.json": tags: - config when: @@ -33166,19 +33265,19 @@ Aperture Hand Lab: installDir: Knux: {} registry: - 'HKEY_CURRENT_USER/Software/Cloudhead Games, Ltd./Knux': + "HKEY_CURRENT_USER/Software/Cloudhead Games, Ltd./Knux": tags: - config steam: id: 868020 -'Aperture Tag: The Paint Gun Testing Initiative': +"Aperture Tag: The Paint Gun Testing Initiative": files: - /aperturetag/SAVE: + "/aperturetag/SAVE": tags: - save when: - store: steam - /aperturetag/cfg: + "/aperturetag/cfg": tags: - config when: @@ -33186,18 +33285,18 @@ Aperture Hand Lab: installDir: Aperture Tag: {} launch: - /portal2.exe: - - arguments: '-game aperturetag -steam' + "/portal2.exe": + - arguments: "-game aperturetag -steam" when: - os: windows store: steam - /portal2_linux: - - arguments: '-game aperturetag -steam' + "/portal2_linux": + - arguments: "-game aperturetag -steam" when: - os: linux store: steam - /portal2_osx: - - arguments: '-game aperturetag -steam' + "/portal2_osx": + - arguments: "-game aperturetag -steam" when: - os: mac store: steam @@ -33207,7 +33306,7 @@ Apewar: installDir: Apewar: {} launch: - /Apewar.exe: + "/Apewar.exe": - when: - os: windows store: steam @@ -33222,7 +33321,7 @@ Apex Aim Trainer: installDir: Apex Aim Trainer: {} launch: - /ThirdPersonBP.exe: + "/ThirdPersonBP.exe": - when: - os: windows store: steam @@ -33237,7 +33336,7 @@ Apex Hunters: installDir: Apex Hunters: {} launch: - /apex.exe: + "/apex.exe": - when: - os: windows store: steam @@ -33245,7 +33344,7 @@ Apex Hunters: id: 856390 Apex Legends: files: - /Saved Games/Respawn/Apex/local/videoconfig.txt: + "/Saved Games/Respawn/Apex/local/videoconfig.txt": tags: - config when: @@ -33253,8 +33352,8 @@ Apex Legends: installDir: Apex Legends: {} launch: - /EasyAntiCheat_launcher.exe: - - arguments: '-steam' + "/EasyAntiCheat_launcher.exe": + - arguments: "-steam" when: - bit: 64 os: windows @@ -33265,7 +33364,7 @@ Apex Tournament: installDir: APEX: {} launch: - /APEX Tournament.exe: + "/APEX Tournament.exe": - when: - bit: 64 os: windows @@ -33276,7 +33375,7 @@ Apez: installDir: Apez: {} launch: - /apez.exe: + "/apez.exe": - when: - os: windows store: steam @@ -33284,17 +33383,17 @@ Apez: id: 683210 Apico: files: - /.config/APICO/saves: + "/.config/APICO/saves": tags: - save when: - os: linux - /.config/APICO/saves/settings.json: + "/.config/APICO/saves/settings.json": tags: - config when: - os: linux - /APICO: + "/APICO": tags: - config - save @@ -33308,15 +33407,15 @@ Apico: installDir: APICO: {} launch: - /APICO.app/Contents/MacOS/Mac_Runner: + "/APICO.app/Contents/MacOS/Mac_Runner": - when: - os: mac store: steam - /APICO.exe: + "/APICO.exe": - when: - os: windows store: steam - /run.sh: + "/run.sh": - when: - os: linux store: steam @@ -33326,7 +33425,7 @@ Aplestia: installDir: Aplestia: {} launch: - /Aplestia.exe: + "/Aplestia.exe": - when: - bit: 64 os: windows @@ -33337,11 +33436,11 @@ Aplowcalypse: installDir: Aplowcalypse: {} launch: - /Aplowcalypse.app/Contents/MacOS/Aplowcalypse: + "/Aplowcalypse.app/Contents/MacOS/Aplowcalypse": - when: - os: mac store: steam - /Aplowcalypse.exe: + "/Aplowcalypse.exe": - when: - os: windows store: steam @@ -33351,7 +33450,7 @@ Apoapsis: installDir: Apoapsis: {} launch: - /ApoapsisFinalV1.exe: + "/ApoapsisFinalV1.exe": - when: - os: windows store: steam @@ -33359,7 +33458,7 @@ Apoapsis: id: 1020610 Apocalipsis: files: - /Apocalipsis: + "/Apocalipsis": tags: - save when: @@ -33369,11 +33468,11 @@ Apocalipsis: installDir: Apocalipsis: {} launch: - /Apocalipsis.app: + "/Apocalipsis.app": - when: - os: mac store: steam - /Apocalipsis.exe: + "/Apocalipsis.exe": - when: - os: windows store: steam @@ -33386,7 +33485,7 @@ Apocalypse Hotel - The Post-Apocalyptic Hotel Simulator!: installDir: Apocalypse Hotel - The Post-Apocalyptic Hotel Simulator!: {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: @@ -33395,11 +33494,11 @@ Apocalypse Knights 2.0 - The Angel Awakens: installDir: Apocalypse Knights: {} launch: - /AK.app/Contents/MacOS/AK: + "/AK.app/Contents/MacOS/AK": - when: - os: mac store: steam - /AK.exe: + "/AK.exe": - when: - os: windows store: steam @@ -33414,7 +33513,7 @@ Apocalypse Night: installDir: Apocalypse Night: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -33428,14 +33527,14 @@ Apocalypse Rider: Apocalypse Zombie Race: steam: id: 768510 -'Apocalypse: Legacy Edition': +"Apocalypse: Legacy Edition": installDir: Apocalypse: {} steam: id: 705050 -'Apocalypse: Party''s Over': +"Apocalypse: Party's Over": files: - /AppData/LocalLow/Hoplon Infotainment/Apocalypse_ Party_s Over: + "/AppData/LocalLow/Hoplon Infotainment/Apocalypse_ Party_s Over": tags: - save when: @@ -33443,7 +33542,7 @@ Apocalypse Zombie Race: installDir: Apocalypse: {} launch: - /Apocalypse.exe: + "/Apocalypse.exe": - when: - os: windows store: steam @@ -33451,7 +33550,7 @@ Apocalypse Zombie Race: id: 368800 Apocalyptica: files: - /data/profiles_: + "/data/profiles_": tags: - save when: @@ -33465,12 +33564,12 @@ Apocryph: installDir: Apocryph: {} launch: - /Apocryph.exe: + "/Apocryph.exe": - when: - bit: 64 os: windows store: steam - /Apocryph.x86_64: + "/Apocryph.x86_64": - when: - bit: 64 os: linux @@ -33481,7 +33580,7 @@ Apokalypsis: installDir: Apokalypsis: {} launch: - /Apokalypsis.exe: + "/Apokalypsis.exe": - when: - store: steam steam: @@ -33490,8 +33589,8 @@ Apollo 11 VR: installDir: Apollo 11 VR: {} launch: - /Apollo11VR-SteamVR.exe: - - arguments: '-platform_steam -sdk_nonvr -hardware_monitor' + "/Apollo11VR-SteamVR.exe": + - arguments: "-platform_steam -sdk_nonvr -hardware_monitor" when: - bit: 64 os: windows @@ -33502,22 +33601,22 @@ Apollo 11 VR HD: installDir: Apollo 11 HD: {} launch: - /Apollo11VRHD_Steam.exe: - - arguments: '-platform_steam -sdk_nonvr -hardware_monitor' + "/Apollo11VRHD_Steam.exe": + - arguments: "-platform_steam -sdk_nonvr -hardware_monitor" when: - bit: 64 os: windows store: steam steam: id: 953840 -'Apollo Justice: Ace Attorney Trilogy': +"Apollo Justice: Ace Attorney Trilogy": steam: id: 2187220 Apollo4x: installDir: Apollo4x: {} launch: - /apollo4x.exe: + "/apollo4x.exe": - when: - os: windows store: steam @@ -33527,42 +33626,42 @@ Apolune: installDir: Apolune: {} launch: - /Apolune.exe: + "/Apolune.exe": - when: - store: steam - - arguments: '-windowed' + - arguments: "-windowed" when: - store: steam - - arguments: '-windowed -1080p' + - arguments: "-windowed -1080p" when: - store: steam - - arguments: '-windowed -1080p -cheating' + - arguments: "-windowed -1080p -cheating" when: - store: steam - - arguments: '-windowed -cheating' + - arguments: "-windowed -cheating" when: - store: steam - - arguments: '-720p' + - arguments: "-720p" when: - store: steam - - arguments: '-720p -windowed' + - arguments: "-720p -windowed" when: - store: steam steam: id: 1019150 -'Aporia: Beyond The Valley': +"Aporia: Beyond The Valley": files: - /user/profiles: + "/user/profiles": tags: - config when: - os: windows - /user/savegames: + "/user/savegames": tags: - save when: - os: windows - /user/system: + "/user/system": tags: - config when: @@ -33570,7 +33669,7 @@ Apolune: installDir: Aporia: {} launch: - /bin/win_x64_game_release/Aporia.exe: + "/bin/win_x64_game_release/Aporia.exe": - when: - bit: 64 os: windows @@ -33581,7 +33680,7 @@ Apostasy: installDir: Apostasy: {} launch: - /Apostasy.exe: + "/Apostasy.exe": - when: - bit: 64 os: windows @@ -33594,56 +33693,56 @@ Apostle: installDir: Apostle: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: id: 1015730 -'Apostle: Rebellion': +"Apostle: Rebellion": gog: id: 1731798766 installDir: Apostle Rebellion: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: id: 1419750 -'Apothecarium: The Renaissance of Evil': +"Apothecarium: The Renaissance of Evil": installDir: Apothecarium: {} launch: - /Apothecarium - The Renaissance of Evil CE.exe: + "/Apothecarium - The Renaissance of Evil CE.exe": - when: - store: steam steam: id: 373860 Apotheon: files: - /Content/Config-7.cfg: + "/Content/Config-7.cfg": tags: - config when: - os: windows - /Content/SavedGames: + "/Content/SavedGames": tags: - save when: - os: windows - /Library/Application Support/Apotheon: + "/Library/Application Support/Apotheon": tags: - config - save when: - os: mac - /userdata//208750/remote: + "/userdata//208750/remote": tags: - config - save when: - store: steam - /Apotheon: + "/Apotheon": tags: - config - save @@ -33654,16 +33753,16 @@ Apotheon: installDir: Apotheon: {} launch: - /Apotheon: + "/Apotheon": - when: - os: linux store: steam - /Apotheon.app/Contents/MacOS/Apotheon: - - arguments: '/gldevice:OpenGL' + "/Apotheon.app/Contents/MacOS/Apotheon": + - arguments: "/gldevice:OpenGL" when: - os: mac store: steam - /Apotheon.exe: + "/Apotheon.exe": - when: - os: windows store: steam @@ -33673,7 +33772,7 @@ Apotheon Arena: installDir: Apotheon Arena: {} launch: - /ApotheonArena.exe: + "/ApotheonArena.exe": - when: - store: steam steam: @@ -33682,7 +33781,7 @@ Apparition: installDir: Apparition: {} launch: - /LauncherNNG.exe: + "/LauncherNNG.exe": - when: - os: windows store: steam @@ -33697,7 +33796,7 @@ Apple Jack 1&2: installDir: Apple Jack 1&2: {} launch: - /Chooser.exe: + "/Chooser.exe": - when: - store: steam steam: @@ -33706,7 +33805,7 @@ Apple Pop: installDir: Apple Pop: {} launch: - /ApplePop.exe: + "/ApplePop.exe": - when: - os: windows store: steam @@ -33716,7 +33815,7 @@ Apple Slash: installDir: Apple Slash: {} launch: - /Apple Slash.exe: + "/Apple Slash.exe": - when: - bit: 64 os: windows @@ -33729,17 +33828,17 @@ AppleSnake: AppleSnake2: steam: id: 754780 -'AppleSnake: Christmas Story': +"AppleSnake: Christmas Story": steam: id: 794870 -'AppleSnake: Halloween Adventures': +"AppleSnake: Halloween Adventures": steam: id: 789470 Applewood: installDir: Applewood: {} launch: - /Applewood.exe: + "/Applewood.exe": - when: - os: windows store: steam @@ -33749,21 +33848,21 @@ Appointment With FEAR: installDir: Appointment With FEAR: {} launch: - /Appointment with FEAR.app: + "/Appointment with FEAR.app": - when: - bit: 64 os: mac store: steam - /Appointment with FEAR.exe: + "/Appointment with FEAR.exe": - when: - os: windows store: steam - /Appointment with FEAR.x86: + "/Appointment with FEAR.x86": - when: - bit: 32 os: linux store: steam - /Appointment with FEAR.x86_64: + "/Appointment with FEAR.x86_64": - when: - bit: 64 os: linux @@ -33774,39 +33873,39 @@ Approaching Blocks: installDir: Approaching Blocks: {} launch: - /Approaching Blocks.app: + "/Approaching Blocks.app": - when: - os: mac store: steam - /Approaching blocks.x86: + "/Approaching blocks.x86": - when: - bit: 32 os: linux store: steam - /Approaching blocks.x86_64: + "/Approaching blocks.x86_64": - when: - bit: 64 os: linux store: steam - /ab.exe: + "/ab.exe": - when: - os: windows store: steam steam: id: 467390 -'Apsulov: End of Gods': +"Apsulov: End of Gods": files: - /Project_C/Saved/Config/WindowsNoEditor: + "/Project_C/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /Project_C/Saved/SaveGames: + "/Project_C/Saved/SaveGames": tags: - save when: - os: windows - /Project_C/Saved/SaveGames/Local/OptionsData.sav: + "/Project_C/Saved/SaveGames/Local/OptionsData.sav": tags: - config when: @@ -33816,7 +33915,7 @@ Approaching Blocks: installDir: Apsulov End of Gods: {} launch: - /Project_C.exe: + "/Project_C.exe": - when: - os: windows store: steam @@ -33826,28 +33925,28 @@ Aqua Fish: installDir: Aqua Fish: {} launch: - /AquaFish.Linux/AquaFish.x86: + "/AquaFish.Linux/AquaFish.x86": - when: - os: linux store: steam - /AquaFish.app/Contents/MacOS/AquaFish: + "/AquaFish.app/Contents/MacOS/AquaFish": - when: - os: mac store: steam - /win32/AquaFish.exe: + "/win32/AquaFish.exe": - when: - os: windows store: steam steam: id: 763090 -'Aqua Kitty: Milk Mine Defender': +"Aqua Kitty: Milk Mine Defender": files: - /joystick.cfg: + "/joystick.cfg": tags: - config when: - os: windows - /userdata//263880: + "/userdata//263880": tags: - save when: @@ -33857,7 +33956,7 @@ Aqua Fish: installDir: Aqua Kitty: {} launch: - /aqua_kitty.exe: + "/aqua_kitty.exe": - when: - os: windows store: steam @@ -33867,7 +33966,7 @@ Aqua Lungers: installDir: AquaLungers: {} launch: - /AquaLungers.exe: + "/AquaLungers.exe": - when: - os: windows store: steam @@ -33877,8 +33976,8 @@ Aqua Moto Racing Utopia: installDir: Aqua Moto Racing Utopia: {} launch: - /AquaMotoRacingUtopia.exe: - - arguments: '-nolog' + "/AquaMotoRacingUtopia.exe": + - arguments: "-nolog" when: - os: windows store: steam @@ -33888,19 +33987,19 @@ Aqua Panic!: installDir: Aqua Panic: {} launch: - /AquaPanic: + "/AquaPanic": - when: - os: mac store: steam - /AquaPanic.exe: + "/AquaPanic.exe": - when: - os: windows store: steam - /Detect.exe: + "/Detect.exe": - when: - os: windows store: steam - /launch_linux.sh: + "/launch_linux.sh": - when: - os: linux store: steam @@ -33910,7 +34009,7 @@ Aqua Rally: installDir: Aqua Rally: {} launch: - /Aqua Rally.exe: + "/Aqua Rally.exe": - when: - os: windows store: steam @@ -33920,7 +34019,7 @@ AquaNimble: installDir: AquaNimble: {} launch: - /AquaNimble.exe: + "/AquaNimble.exe": - when: - os: windows store: steam @@ -33928,7 +34027,7 @@ AquaNimble: id: 498380 AquaNox: files: - /AquaNox: + "/AquaNox": tags: - save when: @@ -33938,19 +34037,19 @@ AquaNox: installDir: AquaNox: {} launch: - /Aqua.exe: + "/Aqua.exe": - when: - store: steam steam: id: 39630 -'AquaNox 2: Revelation': +"AquaNox 2: Revelation": files: - /AquaNox2: + "/AquaNox2": tags: - save when: - os: windows - /AquaNox2/Config.txt: + "/AquaNox2/Config.txt": tags: - config when: @@ -33960,7 +34059,7 @@ AquaNox: installDir: AquaNox 2 Revelation: {} launch: - /AquaNox 2 Revelation.exe: + "/AquaNox 2 Revelation.exe": - when: - store: steam steam: @@ -33969,7 +34068,7 @@ Aquaculture Land: installDir: Aquaculture Land: {} launch: - /Aquaculture Land.exe: + "/Aquaculture Land.exe": - when: - os: windows store: steam @@ -33979,10 +34078,10 @@ Aquadelic GT: installDir: Aquadelic GT: {} launch: - /Launcher.exe: + "/Launcher.exe": - when: - store: steam - /Run.exe: + "/Run.exe": - when: - store: steam steam: @@ -33993,30 +34092,30 @@ Aquamarine: installDir: Aquamarine: {} launch: - /Aquamarine.app: + "/Aquamarine.app": - when: - os: mac store: steam - /Aquamarine.exe: + "/Aquamarine.exe": - when: - bit: 64 os: windows store: steam - /Aquamarine.x86_64: + "/Aquamarine.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 1280750 -'Aquanox: Deep Descent': +"Aquanox: Deep Descent": files: - /ANX/Saved/Config/WindowsNoEditor: + "/ANX/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /ANX/Saved/SaveGames: + "/ANX/Saved/SaveGames": tags: - save when: @@ -34026,7 +34125,7 @@ Aquamarine: installDir: Aquanox Deep Descent: {} launch: - /ANX.exe: + "/ANX.exe": - when: - os: windows store: steam @@ -34037,17 +34136,17 @@ Aquaponics Life: id: 665980 Aquaria: files: - /save: + "/save": tags: - save when: - os: windows - /usersettings.xml: + "/usersettings.xml": tags: - config when: - os: windows - /Aquaria: + "/Aquaria": tags: - save when: @@ -34057,11 +34156,11 @@ Aquaria: installDir: Aquaria: {} launch: - /Aquaria.exe: + "/Aquaria.exe": - when: - os: windows store: steam - /aquaria: + "/aquaria": - when: - os: linux store: steam @@ -34071,7 +34170,7 @@ Aquarium Sandbox: installDir: AquariumSandbox: {} launch: - /AquariumSandbox/AquariumSandbox.exe: + "/AquariumSandbox/AquariumSandbox.exe": - when: - os: windows store: steam @@ -34081,7 +34180,7 @@ Aquarium Simulator: installDir: Aquarium Simulator: {} launch: - /AquariumSimulator.exe: + "/AquariumSimulator.exe": - when: - os: windows store: steam @@ -34091,20 +34190,20 @@ Aquarius: installDir: Aquarius: {} launch: - /Aquarius.app: + "/Aquarius.app": - when: - os: mac store: steam - /Aquarius.exe: + "/Aquarius.exe": - when: - os: windows store: steam - /Aquarius.x86: + "/Aquarius.x86": - when: - bit: 32 os: linux store: steam - /Aquarius.x86_64: + "/Aquarius.x86_64": - when: - bit: 64 os: linux @@ -34116,7 +34215,7 @@ Aquatica: id: 1004800 Aquatico: files: - /Saves: + "/Saves": tags: - save when: @@ -34124,7 +34223,7 @@ Aquatico: installDir: Aquatico: {} launch: - /Aquatico.exe: + "/Aquatico.exe": - when: - store: steam steam: @@ -34134,14 +34233,14 @@ Aquila Bird Flight Simulator: Aquila Bird Flight Simulator: {} steam: id: 583530 -'Ar Nosurge: Ode to an Unborn Star DX': +"Ar Nosurge: Ode to an Unborn Star DX": files: - /KoeiTecmo/ArnosurgeDX/SAVEDATA/SYSDATA.pcsave: + "/KoeiTecmo/ArnosurgeDX/SAVEDATA/SYSDATA.pcsave": tags: - save when: - os: windows - /KoeiTecmo/ArnosurgeDX/Setting.ini: + "/KoeiTecmo/ArnosurgeDX/Setting.ini": tags: - config when: @@ -34149,58 +34248,58 @@ Aquila Bird Flight Simulator: installDir: ArnosurgeDX: {} launch: - /ArnosurgeDX_Launcher.exe: + "/ArnosurgeDX_Launcher.exe": - when: - store: steam steam: id: 1477490 -'Ar nosurge: Ode to an Unborn Star Deluxe': +"Ar nosurge: Ode to an Unborn Star Deluxe": installDir: ArnosurgeDX: {} launch: - /ArnosurgeDX_Launcher.exe: + "/ArnosurgeDX_Launcher.exe": - when: - store: steam steam: id: 1477490 Ara Fell: files: - /Save*.lsd: + "/Save*.lsd": tags: - save when: - os: windows - /AppData/LocalLow/Stegosoft Games/Ara Fell/*.json: + "/AppData/LocalLow/Stegosoft Games/Ara Fell/*.json": tags: - save when: - os: windows - /AppData/LocalLow/Stegosoft Games/Ara Fell/*.json.meta: + "/AppData/LocalLow/Stegosoft Games/Ara Fell/*.json.meta": tags: - save when: - os: windows - /AppData/LocalLow/Stegosoft Games/Ara Fell/Custom Input Config.json: + "/AppData/LocalLow/Stegosoft Games/Ara Fell/Custom Input Config.json": tags: - config when: - os: windows - /unity3d/Stegosoft Games/Ara Fell/*.json: + "/unity3d/Stegosoft Games/Ara Fell/*.json": tags: - save when: - os: linux - /unity3d/Stegosoft Games/Ara Fell/*.json.meta: + "/unity3d/Stegosoft Games/Ara Fell/*.json.meta": tags: - save when: - os: linux - /unity3d/Stegosoft Games/Ara Fell/Custom Input Config.json: + "/unity3d/Stegosoft Games/Ara Fell/Custom Input Config.json": tags: - config when: - os: linux - /unity3d/Stegosoft Games/Ara Fell/prefs: + "/unity3d/Stegosoft Games/Ara Fell/prefs": tags: - config when: @@ -34210,15 +34309,15 @@ Ara Fell: installDir: Ara Fell: {} launch: - /Ara Fell.app: + "/Ara Fell.app": - when: - os: mac store: steam - /Ara Fell.x86_64: + "/Ara Fell.x86_64": - when: - os: linux store: steam - /RPG_RT.exe: + "/RPG_RT.exe": - when: - os: windows store: steam @@ -34230,12 +34329,12 @@ Ara Fell: id: 440540 Arabian Nights: files: - /opt.def: + "/opt.def": tags: - config when: - os: windows - /sultan.sa*: + "/sultan.sa*": tags: - save when: @@ -34259,32 +34358,32 @@ Arachnophobia (2016): id: 485270 Aragami: files: - /AppData/LocalLow/Lince Works/Aragami/saveData.dat: + "/AppData/LocalLow/Lince Works/Aragami/saveData.dat": tags: - save when: - os: windows - /AppData/LocalLow/Lince Works/Aragami/settings.cfg: + "/AppData/LocalLow/Lince Works/Aragami/settings.cfg": tags: - config when: - os: windows - /Library/Application Support/Lince Works/Aragami/saveData.dat: + "/Library/Application Support/Lince Works/Aragami/saveData.dat": tags: - save when: - os: mac - /Library/Application Support/Lince Works/Aragami/settings.cfg: + "/Library/Application Support/Lince Works/Aragami/settings.cfg": tags: - config when: - os: mac - /unity3d/Lince Works/Aragami/saveData.dat: + "/unity3d/Lince Works/Aragami/saveData.dat": tags: - save when: - os: linux - /unity3d/Lince Works/Aragami/settings.cfg: + "/unity3d/Lince Works/Aragami/settings.cfg": tags: - config when: @@ -34294,21 +34393,24 @@ Aragami: installDir: Aragami: {} launch: - /Aragami.app: + "/Aragami.app": - when: - os: mac store: steam - /Aragami.exe: + "/Aragami.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam - /Aragami.x86: + "/Aragami.x86": - when: - bit: 32 os: linux store: steam - /Aragami.x86_64: + "/Aragami.x86_64": - when: - bit: 64 os: linux @@ -34317,58 +34419,59 @@ Aragami: id: 280160 Aragami 2: files: - /userdata//1158370/remote: + "/userdata//1158370/remote": tags: - save when: - store: steam - /Packages/34421DavidLen.Aragami2_ad789ek20a95w/SystemAppData/wgs: + "/Packages/34421DavidLen.Aragami2_ad789ek20a95w/SystemAppData/wgs": tags: - save when: - os: windows store: microsoft - /gameid/storage/shared/Files/Aragami2.lin: + "/gameid/storage/shared/Files/Aragami2.lin": tags: - save when: - - store: gog + - os: windows + store: gog gog: id: 1772522891 installDir: Aragami 2: {} launch: - /Aragami2.exe: + "/Aragami2.exe": - when: - bit: 64 os: windows store: steam steam: id: 1158370 -'Araha: Curse of Yieun Island': +"Araha: Curse of Yieun Island": installDir: Araha: {} launch: - /Araha.exe: + "/Araha.exe": - when: - os: windows store: steam steam: id: 1190130 -'Arakion: Book One': +"Arakion: Book One": installDir: Arakion Book One: {} launch: - /Arakion.app: + "/Arakion.app": - when: - os: mac store: steam - /Arakion.exe: + "/Arakion.exe": - when: - bit: 64 os: windows store: steam - /Arakion.x86_64: + "/Arakion.x86_64": - when: - bit: 64 os: linux @@ -34379,7 +34482,7 @@ Arauco Saga - Rpg Action: installDir: Arauco Saga: {} launch: - /Arauco Saga.exe: + "/Arauco Saga.exe": - when: - os: windows store: steam @@ -34387,7 +34490,7 @@ Arauco Saga - Rpg Action: id: 943710 Araya: files: - /Araya: + "/Araya": tags: - save when: @@ -34395,8 +34498,8 @@ Araya: installDir: ARAYA: {} launch: - /Araya.exe: - - arguments: '-screen-fullscreen' + "/Araya.exe": + - arguments: "-screen-fullscreen" when: - os: windows store: steam @@ -34411,14 +34514,14 @@ Arbiter: Arbiter: {} steam: id: 772220 -'Arbitology: Dei Gratia Rex': +"Arbitology: Dei Gratia Rex": steam: id: 1161020 Arboreal: installDir: Arboreal: {} launch: - /Arboreal.exe: + "/Arboreal.exe": - when: - bit: 64 os: windows @@ -34427,12 +34530,12 @@ Arboreal: id: 881300 Arboria: files: - /Arboria/Saved: + "/Arboria/Saved": tags: - save when: - os: windows - /Arboria/Saved/Config/WindowsNoEditor: + "/Arboria/Saved/Config/WindowsNoEditor": tags: - config when: @@ -34440,7 +34543,7 @@ Arboria: installDir: Arboria: {} launch: - /Arboria.exe: + "/Arboria.exe": - when: - os: windows store: steam @@ -34450,8 +34553,8 @@ Arc Continuum: installDir: Arc Continuum: {} launch: - /ARC_Prototype.exe: - - arguments: '-windowed' + "/ARC_Prototype.exe": + - arguments: "-windowed" when: - bit: 64 os: windows @@ -34462,7 +34565,7 @@ Arc Savior: installDir: Arc Savior: {} launch: - /Arc Savior.exe: + "/Arc Savior.exe": - when: - os: windows store: steam @@ -34480,7 +34583,7 @@ ArcBall: installDir: ArcBall: {} launch: - /ArcBall.exe: + "/ArcBall.exe": - when: - store: steam steam: @@ -34489,22 +34592,22 @@ ArcBall 2: installDir: ArcBall 2: {} launch: - /ArcBall 2.exe: + "/ArcBall 2.exe": - when: - store: steam steam: id: 842290 -'ArcBall 3: Infinity': +"ArcBall 3: Infinity": installDir: ArcBall 3 Infinity: {} launch: - /ArcBall 3.exe: + "/ArcBall 3.exe": - when: - os: windows store: steam steam: id: 874840 -Arca's Path VR: +"Arca's Path VR": installDir: New_Project_08: {} steam: @@ -34516,21 +34619,21 @@ Arcade Classics Anniversary Collection: installDir: Arcade Classics Anniversary Collection: {} launch: - /AA_AC_ArcadeClassics.exe: + "/AA_AC_ArcadeClassics.exe": - when: - bit: 64 os: windows store: steam - - arguments: '-deletesavedata' + - arguments: "-deletesavedata" when: - bit: 64 os: windows store: steam steam: id: 1018000 -'Arcade Game Series: Dig Dug': +"Arcade Game Series: Dig Dug": files: - /ArcadeGameSeries//DIG DUG: + "/ArcadeGameSeries//DIG DUG": tags: - save when: @@ -34538,15 +34641,15 @@ Arcade Classics Anniversary Collection: installDir: DIG DUG: {} launch: - /DIG DUG.exe: + "/DIG DUG.exe": - when: - os: windows store: steam steam: id: 403400 -'Arcade Game Series: Galaga': +"Arcade Game Series: Galaga": files: - /ArcadeGameSeries//GALAGA: + "/ArcadeGameSeries//GALAGA": tags: - save when: @@ -34554,25 +34657,25 @@ Arcade Classics Anniversary Collection: installDir: GALAGA: {} launch: - /GALAGA.exe: + "/GALAGA.exe": - when: - os: windows store: steam steam: id: 403430 -'Arcade Game Series: Ms. Pac-Man': +"Arcade Game Series: Ms. Pac-Man": installDir: Ms. PAC-MAN: {} launch: - /Ms. PAC-MAN.exe: + "/Ms. PAC-MAN.exe": - when: - os: windows store: steam steam: id: 403410 -'Arcade Game Series: Pac-Man': +"Arcade Game Series: Pac-Man": files: - /ArcadeGameSeries//PAC-MAN: + "/ArcadeGameSeries//PAC-MAN": tags: - save when: @@ -34580,7 +34683,7 @@ Arcade Classics Anniversary Collection: installDir: PAC-MAN: {} launch: - /PAC-MAN.exe: + "/PAC-MAN.exe": - when: - os: windows store: steam @@ -34595,7 +34698,7 @@ Arcade Love: installDir: ArcadeLove: {} launch: - /GL_pc.exe: + "/GL_pc.exe": - when: - os: windows store: steam @@ -34603,13 +34706,13 @@ Arcade Love: id: 752430 Arcade Moonlander: files: - /AppData/LocalLow/Back of Nowhere Studios/Arcade Moonlander+ v2.0/Progress.json: + "/AppData/LocalLow/Back of Nowhere Studios/Arcade Moonlander+ v2.0/Progress.json": tags: - config - save when: - os: windows - /AppData/LocalLow/Back of Nowhere Studios/Arcade Moonlander/Progress.json: + "/AppData/LocalLow/Back of Nowhere Studios/Arcade Moonlander/Progress.json": tags: - config when: @@ -34617,7 +34720,7 @@ Arcade Moonlander: installDir: Arcade Moonlander: {} launch: - /ArcadeMoonlander+_v2.0.exe: + "/ArcadeMoonlander+_v2.0.exe": - when: - os: windows store: steam @@ -34629,7 +34732,7 @@ Arcade Paradise: installDir: Arcade: {} launch: - /ArcadeParadise.exe: + "/ArcadeParadise.exe": - when: - os: windows store: steam @@ -34647,15 +34750,15 @@ Arcade Spirits: installDir: Arcade Spirits: {} launch: - /ArcadeSpirits.app: + "/ArcadeSpirits.app": - when: - os: mac store: steam - /ArcadeSpirits.exe: + "/ArcadeSpirits.exe": - when: - os: windows store: steam - /ArcadeSpirits.sh: + "/ArcadeSpirits.sh": - when: - os: linux store: steam @@ -34668,8 +34771,11 @@ Arcade Tycoon: installDir: Arcade Tycoon: {} launch: - /ArcadeTycoon.exe: + "/ArcadeTycoon.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam @@ -34679,7 +34785,7 @@ Arcadecraft: installDir: Arcadecraft: {} launch: - /Arcadecraft.exe: + "/Arcadecraft.exe": - when: - os: windows store: steam @@ -34687,12 +34793,12 @@ Arcadecraft: id: 297330 Arcadegeddon: files: - /Arcade/Saved/SaveGames/OfflineProgression.sav: + "/Arcade/Saved/SaveGames/OfflineProgression.sav": tags: - save when: - os: windows - /Arcade/Saved/SaveGames/UserSettings.sav: + "/Arcade/Saved/SaveGames/UserSettings.sav": tags: - config when: @@ -34700,8 +34806,8 @@ Arcadegeddon: installDir: Arcadegeddon: {} launch: - /Arcade.exe: - - arguments: '-steam' + "/Arcade.exe": + - arguments: "-steam" when: - bit: 64 os: windows @@ -34712,11 +34818,11 @@ Arcadia: installDir: Arcadia: {} launch: - /ACT.exe: + "/ACT.exe": - when: - os: windows store: steam - /Arcadia.exe: + "/Arcadia.exe": - when: - os: windows store: steam @@ -34726,36 +34832,36 @@ Arcadia Fallen: installDir: Arcadia Fallen: {} launch: - /Arcadia Fallen.exe: + "/Arcadia Fallen.exe": - when: - os: windows store: steam - /Arcadia Fallen.x86_64: + "/Arcadia Fallen.x86_64": - when: - os: linux store: steam - /Contents/MacOS/Arcadia Fallen: + "/Contents/MacOS/Arcadia Fallen": - when: - os: mac store: steam steam: id: 1174640 -'Arcadia: The Crystal Wars': +"Arcadia: The Crystal Wars": steam: id: 1114690 Arcadian Atlas: installDir: Arcadian Atlas: {} launch: - /Arcadian Atlas.app: + "/Arcadian Atlas.app": - when: - os: mac store: steam - /Arcadian Atlas.exe: + "/Arcadian Atlas.exe": - when: - os: windows store: steam - /ArcadianAtlas.x86_64: + "/ArcadianAtlas.x86_64": - when: - os: linux store: steam @@ -34763,12 +34869,12 @@ Arcadian Atlas: id: 691790 Arcana Heart 3 LOVE MAX!!!!!: files: - /Save: + "/Save": tags: - save when: - os: windows - /ARC SYSTEM WORKS/AH3LM/Config: + "/ARC SYSTEM WORKS/AH3LM/Config": tags: - config when: @@ -34776,7 +34882,7 @@ Arcana Heart 3 LOVE MAX!!!!!: installDir: Arcana Heart 3 LOVE MAX: {} launch: - /AH3LM.exe: + "/AH3LM.exe": - when: - os: windows store: steam @@ -34784,7 +34890,7 @@ Arcana Heart 3 LOVE MAX!!!!!: id: 370460 Arcana Heart 3 LOVEMAX SIXSTARS!!!!!! XTEND: files: - /ARC SYSTEM WORKS/AH3LM/Config: + "/ARC SYSTEM WORKS/AH3LM/Config": tags: - config when: @@ -34792,7 +34898,7 @@ Arcana Heart 3 LOVEMAX SIXSTARS!!!!!! XTEND: installDir: ArcanaHeart3LMSS: {} launch: - /AALib.exe: + "/AALib.exe": - when: - os: windows store: steam @@ -34802,15 +34908,15 @@ Arcana Ritter: installDir: windows_content: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam steam: id: 739880 -'Arcana: Heat and Cold. Season 1': +"Arcana: Heat and Cold. Season 1": files: - /ArcanaHeatandCold/User Data/Default/IndexedDB: + "/ArcanaHeatandCold/User Data/Default/IndexedDB": tags: - save when: @@ -34818,32 +34924,32 @@ Arcana Ritter: installDir: Arcana Heat and Cold: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam steam: id: 1357830 -'Arcana: Heat and Cold. Season 2': +"Arcana: Heat and Cold. Season 2": installDir: Arcana Heat and Cold. Season 2: {} launch: - /nw: + "/nw": - when: - bit: 64 os: linux store: steam - /nw.exe: + "/nw.exe": - when: - os: windows store: steam steam: id: 1679870 -'Arcana: Heat and Cold. Stories': +"Arcana: Heat and Cold. Stories": installDir: Arcana Heat n Cold Stories: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -34858,7 +34964,7 @@ Arcane Domains: installDir: Arcane Domains: {} launch: - /ArcaneDomains.exe: + "/ArcaneDomains.exe": - when: - os: windows store: steam @@ -34868,7 +34974,7 @@ Arcane Golf: installDir: Arcane Golf: {} launch: - /ArcaneGolf.exe: + "/ArcaneGolf.exe": - when: - os: windows store: steam @@ -34881,11 +34987,11 @@ Arcane Maelstrom: installDir: Arcane Maelstrom: {} launch: - /Arcane Maelstrom.app: + "/Arcane Maelstrom.app": - when: - os: mac store: steam - /arcane.exe: + "/arcane.exe": - when: - os: windows store: steam @@ -34893,7 +34999,7 @@ Arcane Maelstrom: id: 580950 Arcane PreRaise: files: - /.: + "/.": tags: - save when: @@ -34902,17 +35008,17 @@ Arcane PreRaise: id: 603780 Arcane Raise: installDir: - '-Arcane Raise-': {} + "-Arcane Raise-": {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam - /nw: + "/nw": - when: - os: linux store: steam - /nwjs.app: + "/nwjs.app": - when: - os: mac store: steam @@ -34920,7 +35026,7 @@ Arcane Raise: id: 603750 Arcane ReRaise: files: - /.: + "/.": tags: - save when: @@ -34931,11 +35037,11 @@ Arcane Sorcery: installDir: ArcaneSorcery: {} launch: - /Arcane Sorcery.app: + "/Arcane Sorcery.app": - when: - os: mac store: steam - /Arcane Sorcery.exe: + "/Arcane Sorcery.exe": - when: - os: windows store: steam @@ -34950,19 +35056,19 @@ Arcane Worlds: installDir: ArcaneWorlds: {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: id: 269610 -'Arcania: Fall of Setarrif': +"Arcania: Fall of Setarrif": files: - /ArcaniA - AddOn/*.sav: + "/ArcaniA - AddOn/*.sav": tags: - save when: - os: windows - /ArcaniA - AddOn/*.xml: + "/ArcaniA - AddOn/*.xml": tags: - config when: @@ -34972,19 +35078,19 @@ Arcane Worlds: installDir: Arcania Fall of Setarrif: {} launch: - /Arcania Addon.exe: + "/Arcania Addon.exe": - when: - store: steam steam: id: 65610 -'Arcania: Gothic 4': +"Arcania: Gothic 4": files: - /ArcaniA - Gothic 4/*.sav: + "/ArcaniA - Gothic 4/*.sav": tags: - save when: - os: windows - /ArcaniA - Gothic 4/*.xml: + "/ArcaniA - Gothic 4/*.xml": tags: - config when: @@ -34994,7 +35100,7 @@ Arcane Worlds: installDir: Arcania Gothic 4: {} launch: - /Arcania.exe: + "/Arcania.exe": - when: - store: steam steam: @@ -35002,24 +35108,24 @@ Arcane Worlds: Arcanist Revival: steam: id: 947640 -'Arcanium: Rise of Akhan': +"Arcanium: Rise of Akhan": installDir: Arcanium: {} launch: - /Arcanium.exe: + "/Arcanium.exe": - when: - os: windows store: steam steam: id: 1056840 -'Arcanum: Of Steamworks & Magick Obscura': +"Arcanum: Of Steamworks & Magick Obscura": files: - /arcanum.cfg: + "/arcanum.cfg": tags: - config when: - os: windows - /modules/Arcanum/Save: + "/modules/Arcanum/Save": tags: - save when: @@ -35029,19 +35135,19 @@ Arcanist Revival: installDir: Arcanum: {} launch: - /SierraLauncher.exe: + "/SierraLauncher.exe": - when: - store: steam steam: id: 500810 -'Arcatera: The Dark Brotherhood': +"Arcatera: The Dark Brotherhood": files: - /SAVE: + "/SAVE": tags: - save when: - os: windows - /arcatera.cfg: + "/arcatera.cfg": tags: - config when: @@ -35050,7 +35156,7 @@ Arcfall: installDir: Arcfall: {} launch: - /arcfall.exe: + "/arcfall.exe": - when: - bit: 64 os: windows @@ -35061,7 +35167,7 @@ Arch Drift: installDir: Arch Drift: {} launch: - /Arch Drift.exe: + "/Arch Drift.exe": - when: - os: windows store: steam @@ -35071,7 +35177,7 @@ ArchMMO 2: installDir: ArchMMO 2: {} launch: - /Arch MMO 2.exe: + "/Arch MMO 2.exe": - when: - os: windows store: steam @@ -35081,7 +35187,7 @@ ArchRobo - Robotic Annihilation: installDir: ArchRobo - Robotic Annihilation: {} launch: - /ArchRobo.exe: + "/ArchRobo.exe": - when: - os: windows store: steam @@ -35094,20 +35200,20 @@ ArchaeologyX: installDir: ArchaeologyX: {} launch: - /ArchaeologyX.exe: + "/ArchaeologyX.exe": - when: - os: windows store: steam steam: id: 724630 -'Archaica: The Path of Light': +"Archaica: The Path of Light": files: - /Local/conf.txt: + "/Local/conf.txt": tags: - config when: - os: windows - /Local/profiles.prf: + "/Local/profiles.prf": tags: - save when: @@ -35115,7 +35221,7 @@ ArchaeologyX: installDir: Archaica The Path of Light: {} launch: - /GameLauncher.exe: + "/GameLauncher.exe": - when: - os: windows store: steam @@ -35125,12 +35231,12 @@ Archamon: installDir: Archamon: {} launch: - /Archamon.exe: + "/Archamon.exe": - when: - bit: 64 os: windows store: steam - /ArchamonLauncher.exe: + "/ArchamonLauncher.exe": - when: - bit: 32 os: windows @@ -35139,17 +35245,17 @@ Archamon: id: 350880 Archangel: files: - /bin/current-save: + "/bin/current-save": tags: - save when: - os: windows - /bin/savegame-: + "/bin/savegame-": tags: - save when: - os: windows - /bin/standard.feel: + "/bin/standard.feel": tags: - config when: @@ -35163,7 +35269,7 @@ Archangel (Frogames): installDir: Archangel: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -35171,7 +35277,7 @@ Archangel (Frogames): id: 661520 ArcheAge: files: - /ArcheAge: + "/ArcheAge": tags: - config when: @@ -35179,25 +35285,25 @@ ArcheAge: installDir: ArcheAge: {} launch: - /ArcheAge_Launcher.exe: - - arguments: '-provider=steam -env=live -extra1=legacy' + "/ArcheAge_Launcher.exe": + - arguments: "-provider=steam -env=live -extra1=legacy" when: - store: steam steam: id: 304030 -'ArcheAge: Unchained': +"ArcheAge: Unchained": installDir: ArcheAge: {} launch: - /ArcheAge_Launcher.exe: - - arguments: '-provider=steam -env=live -extra1=unchained' + "/ArcheAge_Launcher.exe": + - arguments: "-provider=steam -env=live -extra1=unchained" when: - store: steam steam: id: 1147660 Archeblade: files: - /ABGame/Config: + "/ABGame/Config": tags: - config when: @@ -35205,36 +35311,39 @@ Archeblade: installDir: ArcheBlade: {} launch: - /Binaries/Win32/Archeblade.exe: + "/Binaries/Win32/Archeblade.exe": - when: - os: windows store: steam - workingDir: /Binaries + workingDir: "/Binaries" steam: id: 207230 -'Archeo: Shinar': +"Archeo: Shinar": gog: id: 1165376925 installDir: Archeo Shinar: {} launch: - /Archeo Shinar.exe: + "/Archeo Shinar.exe": - when: - os: windows store: steam steam: id: 1001980 -'Archer Guardian VR: The Chapter Zero': +"Archer Guardian VR: The Chapter Zero": installDir: Archer Guardian VR: {} steam: id: 543540 -Archer's Story: +"Archer's Story": installDir: - Archer's story: {} + "Archer's story": {} launch: - /Archer`s Story.exe: + "/Archer`s Story.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam @@ -35244,7 +35353,7 @@ Archers: installDir: Archers: {} launch: - /archers_1.01.exe: + "/archers_1.01.exe": - when: - os: windows store: steam @@ -35252,14 +35361,14 @@ Archers: id: 756860 Archery: installDir: - 'VRUnicorns #Archery': {} + "VRUnicorns #Archery": {} steam: id: 493790 Archery Blast: installDir: Crazy Archery: {} launch: - /Archery Blast.exe: + "/Archery Blast.exe": - when: - store: steam steam: @@ -35276,7 +35385,7 @@ Archibald: installDir: Archibald: {} launch: - /Archibald.exe: + "/Archibald.exe": - when: - os: windows store: steam @@ -35286,21 +35395,21 @@ Archibald 2: installDir: Archibald 2: {} launch: - /Archibald2.exe: + "/Archibald2.exe": - when: - os: windows store: steam steam: id: 1053300 -Archibald's Adventures: +"Archibald's Adventures": installDir: - Archibald's Adventures: {} + "Archibald's Adventures": {} launch: - /Archibald.app: + "/Archibald.app": - when: - os: mac store: steam - /archibald.exe: + "/archibald.exe": - when: - os: windows store: steam @@ -35308,7 +35417,7 @@ Archibald's Adventures: id: 461480 Archimedean Dynasty: files: - /DAT/SAVE: + "/DAT/SAVE": tags: - save when: @@ -35319,30 +35428,33 @@ Archimedes: installDir: Archimedes: {} launch: - /archimedes.app/Contents/MacOS/nwjs: + "/archimedes.app/Contents/MacOS/nwjs": - when: - os: mac store: steam - /nw: + "/nw": - when: - os: linux store: steam - /nw.exe: + "/nw.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam steam: id: 530920 -'Archimedes: Eureka!': +"Archimedes: Eureka!": installDir: Archimedes: {} launch: - /ArchimedesEureka.app: + "/ArchimedesEureka.app": - when: - os: mac store: steam - /ArchimedesEureka.exe: + "/ArchimedesEureka.exe": - when: - os: windows store: steam @@ -35352,17 +35464,17 @@ Archipelago: installDir: Archipelago: {} launch: - /Archipelago_launcher: + "/Archipelago_launcher": - when: - os: linux store: steam - /Archipelago_launcher.exe: + "/Archipelago_launcher.exe": - when: - os: windows store: steam steam: id: 513720 -'Archipelago: Navigable VR Comic': +"Archipelago: Navigable VR Comic": installDir: Archipelago Navigable VR Comic: {} steam: @@ -35371,11 +35483,11 @@ Archmage Rises: installDir: Archmage Rises: {} launch: - /ArchmageRises.app: + "/ArchmageRises.app": - when: - os: mac store: steam - /ArchmageRises.exe: + "/ArchmageRises.exe": - when: - os: windows store: steam @@ -35385,7 +35497,7 @@ Archon Classic: installDir: Archon: {} launch: - /Archon.exe: + "/Archon.exe": - when: - os: windows store: steam @@ -35393,7 +35505,7 @@ Archon Classic: id: 65400 Archvale: files: - /AV_gms2_3: + "/AV_gms2_3": tags: - save when: @@ -35403,7 +35515,7 @@ Archvale: installDir: Archvale: {} launch: - /Archvale.exe: + "/Archvale.exe": - when: - os: windows store: steam @@ -35413,11 +35525,11 @@ Arclight Cascade: installDir: ArclightCascade: {} launch: - /ArclightCascade.app: + "/ArclightCascade.app": - when: - os: mac store: steam - /ArclightCascade.exe: + "/ArclightCascade.exe": - when: - os: windows store: steam @@ -35425,24 +35537,24 @@ Arclight Cascade: id: 391210 Arcomage: files: - /Data/Arcomage: + "/Data/Arcomage": tags: - config when: - os: windows Arctic Adventure: files: - /AA*.CFG: + "/AA*.CFG": tags: - config when: - os: dos - /AA*.HS: + "/AA*.HS": tags: - save when: - os: dos - /AA*.SAV: + "/AA*.SAV": tags: - save when: @@ -35450,22 +35562,22 @@ Arctic Adventure: installDir: Arctic Adventure: {} launch: - /Artic Adventure.app: + "/Artic Adventure.app": - when: - os: mac store: steam - /Artic adventure/dosbox/dosbox.exe: - - arguments: '-conf \"..\\Artic.conf\" -noconsole -c' + "/Artic adventure/dosbox/dosbox.exe": + - arguments: "-conf \\\"..\\\\Artic.conf\\\" -noconsole -c" when: - os: windows store: steam - workingDir: /Artic adventure/dosbox - /Dosbox/dosbox.exe: - - arguments: '-conf \"..\\ARTIC.conf\" -noconsole -c' + workingDir: "/Artic adventure/dosbox" + "/Dosbox/dosbox.exe": + - arguments: "-conf \\\"..\\\\ARTIC.conf\\\" -noconsole -c" when: - os: linux store: steam - workingDir: /Dosbox + workingDir: "/Dosbox" steam: id: 358170 Arctic Cave: @@ -35475,11 +35587,11 @@ Arctic Fleet: installDir: Strategy Game 1: {} launch: - /Arctic Fleet.app/Contents/MacOS/Arctic Fleet: + "/Arctic Fleet.app/Contents/MacOS/Arctic Fleet": - when: - os: mac store: steam - /Arctic Fleet.exe: + "/Arctic Fleet.exe": - when: - os: windows store: steam @@ -35489,20 +35601,20 @@ Arctic Trucker Simulator: installDir: Arctic Trucker Simulator: {} launch: - /ArcticTrucker.app: + "/ArcticTrucker.app": - when: - os: mac store: steam - /ArcticTrucker.exe: + "/ArcticTrucker.exe": - when: - os: windows store: steam - /ArcticTrucker.x86: + "/ArcticTrucker.x86": - when: - bit: 32 os: linux store: steam - /ArcticTrucker.x86_64: + "/ArcticTrucker.x86_64": - when: - bit: 64 os: linux @@ -35513,11 +35625,11 @@ Arctic alive: installDir: Arctic alive: {} launch: - /Arctic_alive_launcher: + "/Arctic_alive_launcher": - when: - os: linux store: steam - /Arctic_alive_launcher.exe: + "/Arctic_alive_launcher.exe": - when: - os: windows store: steam @@ -35529,11 +35641,11 @@ Arctico: installDir: Eternal Winter: {} launch: - /Arctico.app: + "/Arctico.app": - when: - os: mac store: steam - /Arctico.exe: + "/Arctico.exe": - when: - os: windows store: steam @@ -35546,15 +35658,15 @@ Are You Alone?: installDir: Are You Alone: {} launch: - /AYA 1.1.exe: + "/AYA 1.1.exe": - when: - os: windows store: steam - /AYA1.1.x86: + "/AYA1.1.x86": - when: - os: linux store: steam - /OS X.app: + "/OS X.app": - when: - os: mac store: steam @@ -35567,7 +35679,7 @@ Are You Smarter Than a 5th Grader?: installDir: Are You Smarter then a Fifth Grader: {} launch: - /FifthGrader.exe: + "/FifthGrader.exe": - when: - store: steam steam: @@ -35578,7 +35690,7 @@ Are You Smarter Than a 5th Grader? (2022): installDir: AreYouSmarterThanA5thGrader: {} launch: - /FifthGrader.exe: + "/FifthGrader.exe": - when: - bit: 64 os: windows @@ -35587,7 +35699,7 @@ Are You Smarter Than a 5th Grader? (2022): id: 1521160 Area 51 (2005): files: - /SAVES: + "/SAVES": tags: - save when: @@ -35596,7 +35708,7 @@ Area 51 (2019): installDir: Area 51: {} launch: - /Area51.exe: + "/Area51.exe": - when: - os: windows store: steam @@ -35606,7 +35718,7 @@ Area 51 Defense: installDir: Area 51 Defense: {} launch: - /Area 51 Defense.exe: + "/Area 51 Defense.exe": - when: - bit: 64 os: windows @@ -35617,39 +35729,39 @@ Area 86: installDir: Area 86: {} launch: - /Area 86.app/Contents/MacOS/Area 86: + "/Area 86.app/Contents/MacOS/Area 86": - when: - os: mac store: steam - /Area 86.exe: + "/Area 86.exe": - when: - os: windows store: steam - /Area 86.x86_64: + "/Area 86.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 810590 -'Area Cooperation Economic Simulation: North Korea (ACES)': +"Area Cooperation Economic Simulation: North Korea (ACES)": installDir: Area Cooperation Economic Simulation North Korea: {} launch: - /ACES1.exe: + "/ACES1.exe": - when: - os: windows store: steam steam: id: 1004350 -'Area of Darkness: Sentinel': +"Area of Darkness: Sentinel": steam: id: 626810 Area-X: installDir: Area-X: {} launch: - /area-x.exe: + "/area-x.exe": - when: - os: windows store: steam @@ -35659,7 +35771,7 @@ AreaZ: installDir: AreaZ: {} launch: - /Areaz.exe: + "/Areaz.exe": - when: - bit: 64 os: windows @@ -35670,7 +35782,7 @@ Areeb World: installDir: Areeb World: {} launch: - /system/AreebSteamLauncher.exe: + "/system/AreebSteamLauncher.exe": - when: - os: windows store: steam @@ -35680,7 +35792,7 @@ Areia: installDir: Areia: {} launch: - /Areia.exe: + "/Areia.exe": - when: - bit: 64 os: windows @@ -35689,7 +35801,7 @@ Areia: id: 768460 Arelite Core: files: - /dragon_slumber/arelite_core: + "/dragon_slumber/arelite_core": tags: - save when: @@ -35697,7 +35809,7 @@ Arelite Core: installDir: Arelite Core: {} launch: - /Arelite Core.exe: + "/Arelite Core.exe": - when: - store: steam steam: @@ -35706,7 +35818,7 @@ Arena: installDir: Arena: {} launch: - /Arena.exe: + "/Arena.exe": - when: - bit: 64 os: windows @@ -35717,12 +35829,12 @@ Arena (2019): installDir: Arena: {} launch: - /arena.app: + "/arena.app": - when: - bit: 64 os: mac store: steam - /arena.exe: + "/arena.exe": - when: - bit: 64 os: windows @@ -35738,7 +35850,7 @@ Arena 8: installDir: ARENA 8: {} launch: - /game.exe: + "/game.exe": - when: - bit: 64 os: windows @@ -35749,11 +35861,11 @@ Arena Gods: installDir: Arena Gods: {} launch: - /ArenaGods.app: + "/ArenaGods.app": - when: - os: mac store: steam - /ArenaGods.exe: + "/ArenaGods.exe": - when: - os: windows store: steam @@ -35763,11 +35875,11 @@ Arena Hero: installDir: Arena Hero: {} launch: - /ArenaHero.app: + "/ArenaHero.app": - when: - os: mac store: steam - /ArenaHero.exe: + "/ArenaHero.exe": - when: - os: windows store: steam @@ -35782,16 +35894,16 @@ Arena Stars: installDir: Arena Stars: {} launch: - /ArenaStars.app: + "/ArenaStars.app": - when: - os: mac store: steam - /ArenaStars.exe: + "/ArenaStars.exe": - when: - bit: 32 os: windows store: steam - /ArenaStars_64.exe: + "/ArenaStars_64.exe": - when: - bit: 64 os: windows @@ -35802,7 +35914,7 @@ Arena Wars 2: installDir: Arena Wars 2: {} launch: - /ArenaWars.exe: + "/ArenaWars.exe": - when: - store: steam steam: @@ -35816,13 +35928,13 @@ Arena of Shaelo: installDir: Arena of Shaelo: {} launch: - /ArenaOfShaelo: - - arguments: '-steam' + "/ArenaOfShaelo": + - arguments: "-steam" when: - os: linux store: steam - /ArenaOfShaelo.exe: - - arguments: '-steam' + "/ArenaOfShaelo.exe": + - arguments: "-steam" when: - os: windows store: steam @@ -35832,33 +35944,33 @@ Arena of the Gods: installDir: Arena of the Gods: {} launch: - /ArenaoftheGods_R1.exe: - - arguments: '-fullscreen' + "/ArenaoftheGods_R1.exe": + - arguments: "-fullscreen" when: - os: windows store: steam steam: id: 827560 -'Arena: An Age of Barbarians Story': +"Arena: An Age of Barbarians Story": installDir: Age of Barbarians ARENA: {} launch: - /Arena.exe: + "/Arena.exe": - when: - store: steam steam: id: 570970 -'Arena: Blood on the Sand VR': +"Arena: Blood on the Sand VR": installDir: Arena Blood on the Sand VR: {} steam: id: 577890 -'Arena: Cyber Evolution': +"Arena: Cyber Evolution": installDir: ACE: {} launch: - /Binaries/Win32/cyphgame.exe: - - arguments: '-seekfreeloadingpcconsole -NOSCREENMESSAGES' + "/Binaries/Win32/cyphgame.exe": + - arguments: "-seekfreeloadingpcconsole -NOSCREENMESSAGES" when: - os: windows store: steam @@ -35871,7 +35983,7 @@ Ares Omega: installDir: Ares Omega: {} launch: - /AresOmega.exe: + "/AresOmega.exe": - when: - os: windows store: steam @@ -35881,7 +35993,7 @@ Arevan: installDir: Arevan: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -35891,8 +36003,8 @@ Arevoatl Seven Coins: installDir: Arevoatl Seven Coins: {} launch: - /Arevoatl Seven Coins.exe: - - arguments: '-Windowed' + "/Arevoatl Seven Coins.exe": + - arguments: "-Windowed" when: - os: windows store: steam @@ -35902,35 +36014,35 @@ Argo: installDir: Argo: {} launch: - /argobattleye.exe: + "/argobattleye.exe": - when: - os: windows store: steam steam: id: 530700 -'Argonauts Agency: Golden Fleece': +"Argonauts Agency: Golden Fleece": installDir: ArgonautsGoldenFleece_Steam: {} launch: - /ArgonautsGoldenFleece.app/Contents/MacOS/ArgonautsGoldenFleece: + "/ArgonautsGoldenFleece.app/Contents/MacOS/ArgonautsGoldenFleece": - when: - os: mac store: steam - /ArgonautsGoldenFleece.exe: + "/ArgonautsGoldenFleece.exe": - when: - os: windows store: steam steam: id: 1005000 -'Argonauts Agency: Pandora''s Box': +"Argonauts Agency: Pandora's Box": installDir: ArgonautsPandorasBox_Steam: {} launch: - /ArgonautsPandorasBox.app/Contents/MacOS/ArgonautsPandorasBox: + "/ArgonautsPandorasBox.app/Contents/MacOS/ArgonautsPandorasBox": - when: - os: mac store: steam - /ArgonautsPandorasBox.exe: + "/ArgonautsPandorasBox.exe": - when: - os: windows store: steam @@ -35940,7 +36052,7 @@ Argonus and the Gods of Stone: installDir: Argonus: {} launch: - /Argonus_and_the_Gods_of_Stone.exe: + "/Argonus_and_the_Gods_of_Stone.exe": - when: - os: windows store: steam @@ -35955,36 +36067,36 @@ Aria Dating Simulator: installDir: Aria Dating Simulator: {} launch: - /Aria_Dating_Simulator.exe: + "/Aria_Dating_Simulator.exe": - when: - bit: 64 os: windows store: steam - /Aria_Dating_Simulator.sh: + "/Aria_Dating_Simulator.sh": - when: - os: linux store: steam - /lib/windows-i686/Aria_Dating_Simulator.exe: + "/lib/windows-i686/Aria_Dating_Simulator.exe": - when: - bit: 32 os: windows store: steam steam: id: 1181290 -Aria's Wing: +"Aria's Wing": steam: id: 796300 -Ariadna's Bane: +"Ariadna's Bane": steam: id: 1095560 Arid: files: - /Arid/Saved/Config/WindowsNoEditor: + "/Arid/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /Arid/Saved/SaveGames: + "/Arid/Saved/SaveGames": tags: - save when: @@ -35992,7 +36104,7 @@ Arid: installDir: Arid: {} launch: - /Arid.exe: + "/Arid.exe": - when: - store: steam steam: @@ -36001,24 +36113,24 @@ AridFortress: installDir: AridFortress: {} launch: - /aridfortress.exe: + "/aridfortress.exe": - when: - store: steam steam: id: 868960 -'Arida: Backland''s Awakening': +"Arida: Backland's Awakening": installDir: - Arida Backland's Awakening: {} + "Arida Backland's Awakening": {} launch: - /Arida.exe: + "/Arida.exe": - when: - os: windows store: steam - /Arida.x86_64: + "/Arida.x86_64": - when: - os: linux store: steam - /Mac.app/Contents/MacOS/Mac: + "/Mac.app/Contents/MacOS/Mac": - when: - os: mac store: steam @@ -36028,18 +36140,18 @@ AridFortress: - save steam: id: 907760 -'Arida: Rise of the Brave': +"Arida: Rise of the Brave": steam: id: 1212030 Ariel: installDir: Ariel: {} launch: - /Ariel.app: + "/Ariel.app": - when: - os: mac store: steam - /Ariel.exe: + "/Ariel.exe": - when: - os: windows store: steam @@ -36047,12 +36159,12 @@ Ariel: id: 449700 Arietta of Spirits: files: - /AriettaOfSpirits/savegames_full.dat: + "/AriettaOfSpirits/savegames_full.dat": tags: - save when: - os: windows - /AriettaOfSpirits/settings.ini: + "/AriettaOfSpirits/settings.ini": tags: - config when: @@ -36060,7 +36172,7 @@ Arietta of Spirits: installDir: Arietta of Spirits: {} launch: - /Arietta of Spirits.exe: + "/Arietta of Spirits.exe": - when: - os: windows store: steam @@ -36069,14 +36181,14 @@ Arietta of Spirits: Arima: steam: id: 1112450 -'Arise: A Simple Story': +"Arise: A Simple Story": files: - /Arise/Saved/Config/WindowsNoEditor: + "/Arise/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /Arise/Saved/SaveGames: + "/Arise/Saved/SaveGames": tags: - save when: @@ -36086,33 +36198,33 @@ Arima: installDir: Arise: {} launch: - /Arise.exe: - - arguments: '-SAVEWINPOS=1' + "/Arise.exe": + - arguments: "-SAVEWINPOS=1" when: - bit: 64 os: windows store: steam steam: id: 866140 -'Arisen: Chronicles of Var''Nagal': +"Arisen: Chronicles of Var'Nagal": installDir: ARISEN: {} launch: - /Arisen.exe: + "/Arisen.exe": - when: - os: windows store: steam steam: id: 1101670 -Aritana and the Harpy's Feather: +"Aritana and the Harpy's Feather": installDir: AritanaHF: {} launch: - /Aritana.app: + "/Aritana.app": - when: - os: mac store: steam - /aritana.exe: + "/aritana.exe": - when: - os: windows store: steam @@ -36122,36 +36234,36 @@ Arizona Derby: installDir: Arizona Derby: {} launch: - /Arizona Derby/Binaries/Win64/Arizona Derby.exe: - - arguments: '-fullscreen' + "/Arizona Derby/Binaries/Win64/Arizona Derby.exe": + - arguments: "-fullscreen" when: - os: windows store: steam steam: id: 661290 -Arizona Rose and the Pharaohs' Riddles: +"Arizona Rose and the Pharaohs' Riddles": installDir: - Arizona Rose and the Pharaohs' Riddles: {} + "Arizona Rose and the Pharaohs' Riddles": {} launch: - /Arizona Rose 2.app: + "/Arizona Rose 2.app": - when: - os: mac store: steam - /Arizona Rose 2.exe: + "/Arizona Rose 2.exe": - when: - os: windows store: steam steam: id: 575800 -Arizona Rose and the Pirates' Riddles: +"Arizona Rose and the Pirates' Riddles": installDir: - Arizona Rose and the Pirates' Riddles: {} + "Arizona Rose and the Pirates' Riddles": {} launch: - /Arizona Rose.app: + "/Arizona Rose.app": - when: - os: mac store: steam - /Arizona Rose.exe: + "/Arizona Rose.exe": - when: - os: windows store: steam @@ -36159,7 +36271,7 @@ Arizona Rose and the Pirates' Riddles: id: 537760 Arizona Sunshine: files: - /AppData/LocalLow/Vertigo Games/ArizonaSunshine: + "/AppData/LocalLow/Vertigo Games/ArizonaSunshine": tags: - save when: @@ -36172,11 +36284,11 @@ Ark Noir: installDir: Ark Noir: {} launch: - /Ark Noir.app: + "/Ark Noir.app": - when: - os: mac store: steam - /Ark Noir.exe: + "/Ark Noir.exe": - when: - os: windows store: steam @@ -36186,51 +36298,51 @@ Arkady Survive: installDir: Arkady Survive: {} launch: - /ArkadySurvive.exe: + "/ArkadySurvive.exe": - when: - os: windows store: steam - /ArkadySurvive.x86_64: + "/ArkadySurvive.x86_64": - when: - os: linux store: steam steam: id: 814320 -'Arkaia: The Enigmatic Isle': +"Arkaia: The Enigmatic Isle": installDir: Arkaia The Enigmatic Isle: {} launch: - /Arkaia_1.0_LinuxUniversal.x86: + "/Arkaia_1.0_LinuxUniversal.x86": - when: - bit: 32 os: linux store: steam - /Arkaia_1.0_LinuxUniversal.x86_64: + "/Arkaia_1.0_LinuxUniversal.x86_64": - when: - bit: 64 os: linux store: steam - /Arkaia_1.0_MacUniversal.app: + "/Arkaia_1.0_MacUniversal.app": - when: - os: mac store: steam - /Arkaia_1.0_Win32.exe: + "/Arkaia_1.0_Win32.exe": - when: - bit: 32 os: windows store: steam - /Arkaia_1.0_Win64.exe: + "/Arkaia_1.0_Win64.exe": - when: - bit: 64 os: windows store: steam steam: id: 619010 -'Arkan: The dog adventurer': +"Arkan: The dog adventurer": installDir: Arkan The dog adventurer: {} launch: - /Arkan.exe: + "/Arkan.exe": - when: - os: windows store: steam @@ -36240,15 +36352,15 @@ Arkane Rush: installDir: Arkane Rush: {} launch: - /ArkaneRush.app: + "/ArkaneRush.app": - when: - os: mac store: steam - /ArkaneRush.exe: + "/ArkaneRush.exe": - when: - os: windows store: steam - /ArkaneRush.x86_64: + "/ArkaneRush.x86_64": - when: - os: linux store: steam @@ -36258,7 +36370,7 @@ Arkane Rush Multiverse Mayhem: installDir: Arkane Rush Multiverse Mayhem: {} launch: - /ArkaneRushMultiverseMayhem.exe: + "/ArkaneRushMultiverseMayhem.exe": - when: - os: windows store: steam @@ -36266,18 +36378,18 @@ Arkane Rush Multiverse Mayhem: id: 1005250 Arkanoid: files: - /ARKANOID.SCR: + "/ARKANOID.SCR": tags: - save when: - os: dos - /ArkHighScore: + "/ArkHighScore": tags: - save Arkanoid For Painters: steam: id: 912130 -'Arkanoid: Eternal Battle': +"Arkanoid: Eternal Battle": gog: id: 1630907432 id: @@ -36286,21 +36398,21 @@ Arkanoid For Painters: installDir: Arkanoid-EternalBattle: {} launch: - /Arkanoid-EternalBattle.exe: + "/Arkanoid-EternalBattle.exe": - when: - bit: 64 os: windows store: steam steam: id: 1717270 -'Arkanoid: Revenge of Doh': +"Arkanoid: Revenge of Doh": files: - /DOH.CFG: + "/DOH.CFG": tags: - config when: - os: dos - /REVOFDOH.SCR: + "/REVOFDOH.SCR": tags: - save when: @@ -36309,7 +36421,7 @@ ArkanoidSmoking: installDir: ArkanoidSmoking: {} launch: - /ArkanoidSmoking.exe: + "/ArkanoidSmoking.exe": - when: - os: windows store: steam @@ -36319,19 +36431,19 @@ Arkasha: installDir: Arkasha: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam steam: id: 796110 -'Arkham Horror: Mother''s Embrace': +"Arkham Horror: Mother's Embrace": gog: id: 1385646355 installDir: Mansions of Madness: {} launch: - /ArkhamHorror.exe: + "/ArkhamHorror.exe": - when: - bit: 64 os: windows @@ -36342,15 +36454,15 @@ Arkham Nightmares: installDir: Arkham Nightmares: {} launch: - /arkhmares.exe: + "/arkhmares.exe": - when: - os: windows store: steam steam: id: 513810 -'Arkhangel: The House of the Seven Stars': +"Arkhangel: The House of the Seven Stars": files: - /AppData/LocalLow/Winter Night Games/Arkhangel_ The House of the Seven Stars: + "/AppData/LocalLow/Winter Night Games/Arkhangel_ The House of the Seven Stars": tags: - save when: @@ -36358,21 +36470,24 @@ Arkham Nightmares: installDir: Arkhangel The House of the Seven Stars: {} launch: - /Arkhangel The House of the Seven Stars.app: + "/Arkhangel The House of the Seven Stars.app": - when: - os: mac store: steam - /Arkhangel The House of the Seven Stars.exe: + "/Arkhangel The House of the Seven Stars.exe": - when: - bit: 32 os: windows store: steam - /Arkhangel.x86: + - bit: 64 + os: windows + store: steam + "/Arkhangel.x86": - when: - bit: 32 os: linux store: steam - /Arkhangel.x86_64: + "/Arkhangel.x86_64": - when: - bit: 64 os: linux @@ -36383,7 +36498,7 @@ Arkhelom 3D: installDir: Arkhelom 3D: {} launch: - /Arkhelom3D.exe: + "/Arkhelom3D.exe": - when: - os: windows store: steam @@ -36393,15 +36508,15 @@ Arkshot: installDir: Arkshot: {} launch: - /Arkshot.app/Contents/MacOS/Arkshot: + "/Arkshot.app/Contents/MacOS/Arkshot": - when: - os: mac store: steam - /Arkshot.exe: + "/Arkshot.exe": - when: - os: windows store: steam - /Arkshot.x86: + "/Arkshot.x86": - when: - os: linux store: steam @@ -36409,7 +36524,7 @@ Arkshot: id: 468800 Arktika.1: files: - /4A Games/Arktika.1: + "/4A Games/Arktika.1": tags: - config - save @@ -36419,7 +36534,7 @@ Arktrum: installDir: Arktrum: {} launch: - /Arktrum.exe: + "/Arktrum.exe": - when: - os: windows store: steam @@ -36429,7 +36544,7 @@ Arlo The Rabbit: installDir: ArloTheRabbitPC: {} launch: - /Arlo_The_Rabbit.exe: + "/Arlo_The_Rabbit.exe": - when: - os: windows store: steam @@ -36442,27 +36557,27 @@ ArmZ: id: 952930 Arma 2: files: - /ARMA 2/*.ArmA2OAProfile: + "/ARMA 2/*.ArmA2OAProfile": tags: - save when: - os: windows - /ARMA 2/*.ArmA2Profile: + "/ARMA 2/*.ArmA2Profile": tags: - save when: - os: windows - /ARMA 2/ArmA2.cfg: + "/ARMA 2/ArmA2.cfg": tags: - config when: - os: windows - /ARMA 2/ArmA2OA.cfg: + "/ARMA 2/ArmA2OA.cfg": tags: - config when: - os: windows - /ArmA 2/Saved: + "/ArmA 2/Saved": tags: - save when: @@ -36473,57 +36588,57 @@ Arma 2: steamExtra: - 33910 - 33930 - - 33934 - - 65720 - - 65700 - - 219540 - - 33940 - 33933 + - 33934 + - 33940 + - 65700 + - 65720 - 107400 + - 219540 installDir: Arma 2: {} launch: - /arma2.exe: + "/arma2.exe": - when: - store: steam - - arguments: '-window' + - arguments: "-window" when: - store: steam steam: id: 33900 Arma 3: files: - /.local/share/bohemiainteractive/arma3/GameDocuments/Arma 3: + "/.local/share/bohemiainteractive/arma3/GameDocuments/Arma 3": tags: - config when: - os: linux - /.local/share/bohemiainteractive/arma3/GameDocuments/Arma 3/Saved: + "/.local/share/bohemiainteractive/arma3/GameDocuments/Arma 3/Saved": tags: - save when: - os: linux - /Library/Application Support/com.vpltd.Arma3/GameDocuments/Arma 3: + "/Library/Application Support/com.vpltd.Arma3/GameDocuments/Arma 3": tags: - config when: - os: mac - /Library/Application Support/com.vpltd.Arma3/GameDocuments/Arma 3/Saved: + "/Library/Application Support/com.vpltd.Arma3/GameDocuments/Arma 3/Saved": tags: - save when: - os: mac - /Arma 3: + "/Arma 3": tags: - config when: - os: windows - /Arma 3/*.Arma3Profile: + "/Arma 3/*.Arma3Profile": tags: - save when: - os: windows - /Arma 3/Saved: + "/Arma 3/Saved": tags: - save when: @@ -36531,34 +36646,34 @@ Arma 3: id: steamExtra: - 233800 - - 390500 - - 601670 - - 304380 + - 249860 + - 275700 - 288520 + - 304380 - 332350 + - 390500 - 395180 - 571710 + - 601670 - 639600 - - 275700 - 744950 - 798390 - 1021790 - 1042220 - - 249860 - 1294440 - 1325500 installDir: Arma 3: {} launch: - /ArmA3.app: + "/ArmA3.app": - when: - os: mac store: steam - /arma3: + "/arma3": - when: - os: linux store: steam - /arma3launcher.exe: + "/arma3launcher.exe": - when: - os: windows store: steam @@ -36566,12 +36681,12 @@ Arma 3: id: 107410 Arma Reforger: files: - /userdata//1874880: + "/userdata//1874880": tags: - save when: - os: windows - /My Games/ArmaReforger: + "/My Games/ArmaReforger": tags: - config when: @@ -36582,7 +36697,7 @@ Arma Reforger: id: 1874880 Arma Tactics: files: - /.config/unity3d/Bohemia Interactive/Arma Tactics: + "/.config/unity3d/Bohemia Interactive/Arma Tactics": tags: - config - save @@ -36591,42 +36706,42 @@ Arma Tactics: installDir: ArmaTactics: {} launch: - /ArmaTactics.app: + "/ArmaTactics.app": - when: - os: mac store: steam - /ArmaTactics.exe: + "/ArmaTactics.exe": - when: - os: windows store: steam - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" when: - os: windows store: steam - /ArmaTactics.x86: + "/ArmaTactics.x86": - when: - os: linux store: steam steam: id: 224860 -'Arma: Armed Assault': +"Arma: Armed Assault": files: - /ArmA: + "/ArmA": tags: - config when: - os: windows - /ArmA Other Profiles: + "/ArmA Other Profiles": tags: - config when: - os: windows - /ArmA Other Profiles//Saved: + "/ArmA Other Profiles//Saved": tags: - save when: - os: windows - /ArmA/Saved: + "/ArmA/Saved": tags: - save when: @@ -36639,42 +36754,42 @@ Arma Tactics: installDir: ArmA Armed Assault: {} launch: - /arma.exe: + "/arma.exe": - when: - store: steam - /arma_server.exe: + "/arma_server.exe": - when: - store: steam steam: id: 2780 -'Arma: Cold War Assault': +"Arma: Cold War Assault": files: - /ColdWarAssault.cfg: + "/ColdWarAssault.cfg": tags: - config when: - os: windows - /Users: + "/Users": tags: - save when: - os: windows - /Users//UserInfo.cfg: + "/Users//UserInfo.cfg": tags: - config when: - os: windows - /.local/share/vpltd/ArmaColdWarAssault/ColdWarAssault.cfg: + "/.local/share/vpltd/ArmaColdWarAssault/ColdWarAssault.cfg": tags: - config when: - os: linux - /.local/share/vpltd/ArmaColdWarAssault/SavedGames//UserInfo.cfg: + "/.local/share/vpltd/ArmaColdWarAssault/SavedGames//UserInfo.cfg": tags: - config when: - os: linux - /.local/share/vpltd/SavedGames: + "/.local/share/vpltd/SavedGames": tags: - save when: @@ -36687,20 +36802,20 @@ Arma Tactics: installDir: ARMA Cold War Assault: {} launch: - /ColdWarAssault.exe: + "/ColdWarAssault.exe": - when: - store: steam - - arguments: '-window' + - arguments: "-window" when: - store: steam - /ColdWarAssaultPreferences.exe: + "/ColdWarAssaultPreferences.exe": - when: - store: steam steam: id: 65790 Armada 2526: files: - /My Games/Armada 2526: + "/My Games/Armada 2526": tags: - save when: @@ -36708,7 +36823,7 @@ Armada 2526: installDir: Armada 2526: {} launch: - /bin/Armada2526.exe: + "/bin/Armada2526.exe": - when: - store: steam steam: @@ -36717,7 +36832,7 @@ Armada Skies: installDir: Armada Skies: {} launch: - /Armada Skies.exe: + "/Armada Skies.exe": - when: - os: windows store: steam @@ -36725,29 +36840,29 @@ Armada Skies: id: 776320 Armada Tanks: files: - /Enkord/Armada Tanks/Save: + "/Enkord/Armada Tanks/Save": tags: - save when: - os: windows - /Enkord/Armada Tanks/gameconf.ini: + "/Enkord/Armada Tanks/gameconf.ini": tags: - config when: - os: windows -'Armada: Modern Tanks': +"Armada: Modern Tanks": installDir: Modern Tanks: {} launch: - /Modern Tanks.app: + "/Modern Tanks.app": - when: - os: mac store: steam - /Modern Tanks.exe: + "/Modern Tanks.exe": - when: - os: windows store: steam - /Modern Tanks.x86_64: + "/Modern Tanks.x86_64": - when: - os: linux store: steam @@ -36757,7 +36872,7 @@ Armadusa: installDir: Armadusa: {} launch: - /Armadusa.exe: + "/Armadusa.exe": - when: - store: steam steam: @@ -36766,11 +36881,11 @@ Armajet: installDir: Armajet: {} launch: - /Armajet.app: + "/Armajet.app": - when: - os: mac store: steam - /Armajet.exe: + "/Armajet.exe": - when: - os: windows store: steam @@ -36783,7 +36898,7 @@ Armed Against the Undead: id: 488590 Armed Forces Corp.: files: - /Documents/City Interactive/Armed Forces Corp: + "/Documents/City Interactive/Armed Forces Corp": tags: - config - save @@ -36793,11 +36908,11 @@ Armed Seven: installDir: Armed Seven: {} launch: - /ArmedSeven: + "/ArmedSeven": - when: - os: linux store: steam - /armed7.exe: + "/armed7.exe": - when: - os: windows store: steam @@ -36810,12 +36925,12 @@ Armed Warrior VR: id: 720310 Armed and Dangerous: files: - /GameData/SaveGames: + "/GameData/SaveGames": tags: - save when: - os: windows - /GameData/SavedGames/options.opt: + "/GameData/SavedGames/options.opt": tags: - config when: @@ -36825,30 +36940,30 @@ Armed and Dangerous: installDir: Armed and Dangerous: {} launch: - /GameData/game.exe: + "/GameData/game.exe": - when: - store: steam - workingDir: /GameData + workingDir: "/GameData" steam: id: 6090 Armed and Gelatinous: installDir: Armed and Gelatinous: {} launch: - /Gelatinous.app: + "/Gelatinous.app": - when: - os: mac store: steam - /Gelatinous.exe: + "/Gelatinous.exe": - when: - os: windows store: steam - /Gelatinous.x86: + "/Gelatinous.x86": - when: - bit: 32 os: linux store: steam - /Gelatinous.x86_64: + "/Gelatinous.x86_64": - when: - bit: 64 os: linux @@ -36857,7 +36972,7 @@ Armed and Gelatinous: id: 446510 Armed to the Gears: files: - /AppData/LocalLow/Deonn Software ltd_/Armed to the Gears/playerinfo.dat: + "/AppData/LocalLow/Deonn Software ltd_/Armed to the Gears/playerinfo.dat": tags: - save when: @@ -36865,17 +36980,17 @@ Armed to the Gears: installDir: Armed to the Gears: {} launch: - /Armed to the Gears.exe: + "/Armed to the Gears.exe": - when: - os: windows store: steam steam: id: 804870 -'Armed with Wings: Rearmed': +"Armed with Wings: Rearmed": installDir: Armed with Wings Rearmed: {} launch: - /Armed with Wings Rearmed.exe: + "/Armed with Wings Rearmed.exe": - when: - os: windows store: steam @@ -36883,22 +36998,22 @@ Armed to the Gears: id: 340580 Armello: files: - /.config/unity3d/League of Geeks/Armello: + "/.config/unity3d/League of Geeks/Armello": tags: - config when: - os: linux - /AppData/LocalLow/League of Geeks/Armello/Profiles//Options: + "/AppData/LocalLow/League of Geeks/Armello/Profiles//Options": tags: - config when: - os: windows - /AppData/LocalLow/League of Geeks/Armello/Profiles//SavedGameState: + "/AppData/LocalLow/League of Geeks/Armello/Profiles//SavedGameState": tags: - save when: - os: windows - /unity3d/League of Geeks/Armello/profiles//SavedGameState: + "/unity3d/League of Geeks/Armello/profiles//SavedGameState": tags: - save when: @@ -36908,22 +37023,22 @@ Armello: installDir: Armello: {} launch: - /armello.app: + "/armello.app": - when: - os: mac store: steam - /armello.exe: + "/armello.exe": - when: - os: windows store: steam - /armello.x86: - - arguments: LANG=\"\" %command% + "/armello.x86": + - arguments: "LANG=\\\"\\\" %command%" when: - bit: 32 os: linux store: steam - /armello.x86_64: - - arguments: LANG=\"\" %command% + "/armello.x86_64": + - arguments: "LANG=\\\"\\\" %command%" when: - bit: 64 os: linux @@ -36936,12 +37051,12 @@ Armello: id: 290340 Armies of Exigo: files: - /Armies of Exigo/Save: + "/Armies of Exigo/Save": tags: - save when: - os: windows - /Armies of Exigo/Save/Profile1: + "/Armies of Exigo/Save/Profile1": tags: - config when: @@ -36950,7 +37065,7 @@ Armies of Riddle CCG Fantasy Battle Card Game: installDir: Armies of Riddle CCG Fantasy Battle Card Game Content: {} launch: - /ArmiesOfRiddle.exe: + "/ArmiesOfRiddle.exe": - when: - os: windows store: steam @@ -36961,17 +37076,17 @@ Armies of Riddle E.X. (Extreme): id: 968190 Armikrog: files: - /.config/unity3d/PencilTestStudios/Armikrog/*.dat: + "/.config/unity3d/PencilTestStudios/Armikrog/*.dat": tags: - save when: - os: linux - /AppData/LocalLow/PencilTestStudios/Armikrog: + "/AppData/LocalLow/PencilTestStudios/Armikrog": tags: - save when: - os: windows - /Library/Application Support/unity.PencilTestStudios.Armikrog/SaveGame.dat: + "/Library/Application Support/unity.PencilTestStudios.Armikrog/SaveGame.dat": tags: - save when: @@ -36981,20 +37096,20 @@ Armikrog: installDir: Armikrog: {} launch: - /Armikrog.app: + "/Armikrog.app": - when: - os: mac store: steam - /Armikrog.exe: + "/Armikrog.exe": - when: - os: windows store: steam - /Armikrog.x86: + "/Armikrog.x86": - when: - bit: 32 os: linux store: steam - /Armikrog.x86_64: + "/Armikrog.x86_64": - when: - bit: 64 os: linux @@ -37007,22 +37122,22 @@ Armikrog: id: 334120 Armor Clash: installDir: - 'Armor Clash [RTS]': {} + "Armor Clash [RTS]": {} launch: - /ArmorClash.app: + "/ArmorClash.app": - when: - os: mac store: steam - /ArmorClash.exe: + "/ArmorClash.exe": - when: - os: windows store: steam - /ArmorClash.x86: + "/ArmorClash.x86": - when: - bit: 32 os: linux store: steam - /ArmorClash.x86_64: + "/ArmorClash.x86_64": - when: - bit: 64 os: linux @@ -37033,16 +37148,16 @@ Armor Clash 3: installDir: Armor Clash 3: {} launch: - /ArmorClash3.app: + "/ArmorClash3.app": - when: - os: mac store: steam - /ArmorClash3.exe: + "/ArmorClash3.exe": - when: - bit: 64 os: windows store: steam - /ArmorClash3.x86_64: + "/ArmorClash3.x86_64": - when: - bit: 64 os: linux @@ -37053,21 +37168,21 @@ Armor Clash II: installDir: Armor Clash II: {} launch: - /ArmorClashII.app: + "/ArmorClashII.app": - when: - os: mac store: steam - /ArmorClashII.exe: + "/ArmorClashII.exe": - when: - bit: 64 os: windows store: steam - /ArmorClashII.x86: + "/ArmorClashII.x86": - when: - bit: 32 os: linux store: steam - /ArmorClashII.x86_64: + "/ArmorClashII.x86_64": - when: - bit: 64 os: linux @@ -37083,7 +37198,7 @@ Armor Contest: installDir: Armor Contest: {} launch: - /ArmorContest.exe: + "/ArmorContest.exe": - when: - os: windows store: steam @@ -37093,7 +37208,7 @@ Armor of Heroes: installDir: Armor Of Heroes: {} launch: - /ArmorOfHeroes.exe: + "/ArmorOfHeroes.exe": - when: - store: steam registry: @@ -37103,14 +37218,14 @@ Armor of Heroes: - save steam: id: 1368440 -'Armored Animals: H1N1z': +"Armored Animals: H1N1z": steam: id: 798260 Armored Battle Crew: installDir: Armored Battle Crew WW1: {} launch: - /Armored Battle Crew WW1.exe: + "/Armored Battle Crew WW1.exe": - when: - os: windows store: steam @@ -37125,19 +37240,19 @@ Armored Brigade: installDir: Armored Brigade: {} launch: - /autorun.exe: + "/autorun.exe": - when: - store: steam steam: id: 1089840 -'Armored Core VI: Fires of Rubicon': +"Armored Core VI: Fires of Rubicon": files: - /ArmoredCore6//AC60000.sl2: + "/ArmoredCore6//AC60000.sl2": tags: - save when: - os: windows - /ArmoredCore6/GraphicsConfig.xml: + "/ArmoredCore6/GraphicsConfig.xml": tags: - config when: @@ -37145,21 +37260,21 @@ Armored Brigade: installDir: ARMORED CORE VI FIRES OF RUBICON: {} launch: - /Game/start_protected_game.exe: + "/Game/start_protected_game.exe": - when: - store: steam - workingDir: /Game + workingDir: "/Game" steam: id: 1888160 Armored Evolution: installDir: Armored Evolution: {} launch: - /Armored Evolution.app: + "/Armored Evolution.app": - when: - os: mac store: steam - /Armored Evolution.exe: + "/Armored Evolution.exe": - when: - os: windows store: steam @@ -37169,7 +37284,7 @@ Armored Fighter: installDir: Armored Fighter: {} launch: - /AF.exe: + "/AF.exe": - when: - os: windows store: steam @@ -37177,12 +37292,12 @@ Armored Fighter: id: 952370 Armored Fist 3: files: - /af3prefs.cfg: + "/af3prefs.cfg": tags: - config when: - os: windows - /slot00.dat: + "/slot00.dat": tags: - save when: @@ -37190,10 +37305,10 @@ Armored Fist 3: installDir: Armored Fist 3: {} launch: - /AF3.EXE: + "/AF3.EXE": - when: - store: steam - /AF3MED.EXE: + "/AF3MED.EXE": - when: - store: steam steam: @@ -37202,23 +37317,26 @@ Armored Freedom: installDir: Armored Freedom: {} launch: - /AF.exe: + "/AF.exe": - when: - bit: 32 os: windows store: steam - /ArmoredFreedom.app/Contents/MacOS/ArmoredFreedom: + - bit: 64 + os: windows + store: steam + "/ArmoredFreedom.app/Contents/MacOS/ArmoredFreedom": - when: - os: mac store: steam - /ArmoredFreedom.x86: - - arguments: '-force-opengl' + "/ArmoredFreedom.x86": + - arguments: "-force-opengl" when: - bit: 32 os: linux store: steam - /ArmoredFreedom.x86_64: - - arguments: '-force-opengl' + "/ArmoredFreedom.x86_64": + - arguments: "-force-opengl" when: - bit: 64 os: linux @@ -37235,18 +37353,18 @@ Armored Gear: id: 581000 Armored Hunter Gunhound EX: files: - /ex2data.cfg: + "/ex2data.cfg": tags: - config - save when: - os: windows - /padconfig.dat: + "/padconfig.dat": tags: - config when: - os: windows - /UserData//273240/remote/ex2data.cfg: + "/UserData//273240/remote/ex2data.cfg": tags: - save when: @@ -37254,7 +37372,7 @@ Armored Hunter Gunhound EX: installDir: GUNHOUNDEX: {} launch: - /GunHoundEx.exe: + "/GunHoundEx.exe": - when: - os: windows store: steam @@ -37262,7 +37380,7 @@ Armored Hunter Gunhound EX: id: 273240 Armored Kitten: files: - /AppData/LocalLow/ArmoredKitten/Unity/b691cd47-9719-4e6f-80d5-65093c992316/Analytics/config: + "/AppData/LocalLow/ArmoredKitten/Unity/b691cd47-9719-4e6f-80d5-65093c992316/Analytics/config": tags: - config when: @@ -37270,7 +37388,7 @@ Armored Kitten: installDir: Armored Kitten: {} launch: - /ArmoredKitten.exe: + "/ArmoredKitten.exe": - when: - os: windows store: steam @@ -37284,7 +37402,7 @@ Armored Squad: installDir: Armored Squad: {} launch: - /ArmoredSquad.exe: + "/ArmoredSquad.exe": - when: - os: windows store: steam @@ -37292,7 +37410,7 @@ Armored Squad: id: 786280 Armored Warfare: files: - /Saved Games/ArmoredWarfare: + "/Saved Games/ArmoredWarfare": tags: - config when: @@ -37309,8 +37427,8 @@ Armored Warfare: installDir: Armored Warfare: {} launch: - /ArmoredWarfareMycomSteamLoader.exe: - - arguments: '-FromSteam' + "/ArmoredWarfareMycomSteamLoader.exe": + - arguments: "-FromSteam" when: - os: windows store: steam @@ -37320,22 +37438,22 @@ Armorgeddon: installDir: Armorgeddon: {} launch: - /Armorgeddon.exe: + "/Armorgeddon.exe": - when: - os: windows store: steam steam: id: 1200120 -'Armorik the Viking: The Eight Conquests': +"Armorik the Viking: The Eight Conquests": installDir: ArmorikTheViking: {} launch: - /dosbox_windows/dosbox.exe: - - arguments: \"ARMORIK.COM\" -conf \"dosbox_armoriktheviking.conf\" -noconsole + "/dosbox_windows/dosbox.exe": + - arguments: "\\\"ARMORIK.COM\\\" -conf \\\"dosbox_armoriktheviking.conf\\\" -noconsole" when: - os: windows store: steam - /runArmorik.sh: + "/runArmorik.sh": - when: - os: linux store: steam @@ -37345,7 +37463,7 @@ Armortale: installDir: Armortale: {} launch: - /Armortale.exe: + "/Armortale.exe": - when: - os: windows store: steam @@ -37355,7 +37473,7 @@ Armory League: installDir: Sneiroball: {} launch: - /Game.exe: + "/Game.exe": - when: - bit: 64 os: windows @@ -37366,22 +37484,22 @@ Armoured Alliance: installDir: Armoured Alliance: {} launch: - /ArmouredAlliance.app/Contents/MacOS/JavaAppLauncher: + "/ArmouredAlliance.app/Contents/MacOS/JavaAppLauncher": - when: - os: mac store: steam - /app/ArmouredAllianceCMD: + "/app/ArmouredAllianceCMD": - when: - bit: 64 os: linux store: steam - workingDir: /app - /app/ArmouredAllianceCMD.bat: + workingDir: "/app" + "/app/ArmouredAllianceCMD.bat": - when: - bit: 64 os: windows store: steam - workingDir: /app + workingDir: "/app" steam: id: 955410 Armoured Engines: @@ -37391,7 +37509,7 @@ Arms Dealer: installDir: Arms Dealer: {} launch: - /Arms Dealer.exe: + "/Arms Dealer.exe": - when: - os: windows store: steam @@ -37401,7 +37519,7 @@ Arms Race - TCWE: installDir: Arms Race - TCWE: {} launch: - /ArmsRace.exe: + "/ArmsRace.exe": - when: - os: windows store: steam @@ -37417,15 +37535,15 @@ Army Gals: installDir: Army Gals: {} launch: - /Army Gals.app: + "/Army Gals.app": - when: - os: mac store: steam - /Army Gals.exe: + "/Army Gals.exe": - when: - os: windows store: steam - /Army Gals.sh: + "/Army Gals.sh": - when: - os: linux store: steam @@ -37435,7 +37553,7 @@ Army General: installDir: Army General: {} launch: - /Army General.exe: + "/Army General.exe": - when: - bit: 64 os: windows @@ -37448,7 +37566,7 @@ Army Men: installDir: Army Men: {} launch: - /Armymen.exe: + "/Armymen.exe": - when: - os: windows store: steam @@ -37460,20 +37578,20 @@ Army Men II: installDir: Army Men II: {} launch: - /ArmyMen2.exe: + "/ArmyMen2.exe": - when: - os: windows store: steam steam: id: 549170 -'Army Men: RTS': +"Army Men: RTS": files: - /settings.cfg: + "/settings.cfg": tags: - config when: - os: windows - /user: + "/user": tags: - save when: @@ -37483,65 +37601,65 @@ Army Men II: installDir: Army Men RTS: {} launch: - /amrts.exe: + "/amrts.exe": - when: - os: windows store: steam steam: id: 694500 -'Army Men: Sarge''s Heroes': +"Army Men: Sarge's Heroes": files: - /GameState.dat: + "/GameState.dat": tags: - save when: - os: windows -'Army Men: Sarge''s War': +"Army Men: Sarge's War": files: - /Data/sage.ini: + "/Data/sage.ini": tags: - config when: - os: windows -'Army Men: Toys in Space': +"Army Men: Toys in Space": gog: id: 1317709786 installDir: Army Men - Toys in Space: {} launch: - /ARMYMENTIS.exe: + "/ARMYMENTIS.exe": - when: - os: windows store: steam steam: id: 549180 -'Army Men: World War': +"Army Men: World War": files: - /save: + "/save": tags: - save when: - os: windows gog: id: 1824112482 -'Army Ranger: Mogadishu': +"Army Ranger: Mogadishu": files: - /Profiles: + "/Profiles": tags: - save when: - os: windows - /Save: + "/Save": tags: - save when: - os: windows - /autoexec.cfg: + "/autoexec.cfg": tags: - config when: - os: windows - /display.cfg: + "/display.cfg": tags: - config when: @@ -37550,11 +37668,11 @@ Army Truck 2: installDir: Army Truck: {} launch: - /desTRUCKtors Warfare Showdown.app/Contents/MacOS/desTRUCKtors Warfare Showdown: + "/desTRUCKtors Warfare Showdown.app/Contents/MacOS/desTRUCKtors Warfare Showdown": - when: - os: mac store: steam - /desTRUCKtors Warfare Showdown.exe: + "/desTRUCKtors Warfare Showdown.exe": - when: - os: windows store: steam @@ -37564,8 +37682,8 @@ Army of Pixels: installDir: Army of Pixels: {} launch: - /ArmyOfPixels.exe: - - arguments: '-force-d3d9' + "/ArmyOfPixels.exe": + - arguments: "-force-d3d9" when: - os: windows store: steam @@ -37575,25 +37693,25 @@ Army of Squirrels: installDir: Army of Squirrels: {} launch: - /ArmyOfSquirrels.exe: + "/ArmyOfSquirrels.exe": - when: - os: windows store: steam steam: id: 793260 -'Army of Tentacles: (Not) A Cthulhu Dating Sim': +"Army of Tentacles: (Not) A Cthulhu Dating Sim": files: - /game/saves/persistent: + "/game/saves/persistent": tags: - config when: - os: windows - /renpy/Army of Tentacles Ren'Py V1-1355529154/*.save: + "/renpy/Army of Tentacles Ren'Py V1-1355529154/*.save": tags: - save when: - os: windows - /renpy/Army of Tentacles Ren'Py V1-1355529154/persistent: + "/renpy/Army of Tentacles Ren'Py V1-1355529154/persistent": tags: - config when: @@ -37601,46 +37719,46 @@ Army of Squirrels: installDir: Army of Tentacles NACDS: {} launch: - /ArmyOfTentacles.app/Contents/MacOS/ArmyOfTentacles: + "/ArmyOfTentacles.app/Contents/MacOS/ArmyOfTentacles": - when: - os: mac store: steam - /ArmyOfTentacles.exe: + "/ArmyOfTentacles.exe": - when: - os: windows store: steam - /ArmyOfTentacles.sh: + "/ArmyOfTentacles.sh": - when: - os: linux store: steam steam: id: 427930 -'Army of Tentacles: (Not) a Cthulhu Dating Sim: Black Goat of the Woods Edition': +"Army of Tentacles: (Not) a Cthulhu Dating Sim: Black Goat of the Woods Edition": installDir: Army of Tentacles 1 BGE: {} launch: - /AotBlackGOATEdition.app/Contents/MacOS/AotBlackGOATEdition: + "/AotBlackGOATEdition.app/Contents/MacOS/AotBlackGOATEdition": - when: - os: mac store: steam - /AotBlackGOATEdition.exe: + "/AotBlackGOATEdition.exe": - when: - os: windows store: steam - /AotBlackGOATEdition.sh: + "/AotBlackGOATEdition.sh": - when: - os: linux store: steam steam: id: 770380 -Aron's Adventure: +"Aron's Adventure": files: - /AronsAdventure/Saved/Config/WindowsNoEditor: + "/AronsAdventure/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /AronsAdventure/Saved/SaveGames: + "/AronsAdventure/Saved/SaveGames": tags: - save when: @@ -37648,10 +37766,10 @@ Aron's Adventure: gog: id: 1304684573 installDir: - Aron's Adventure: {} + "Aron's Adventure": {} launch: - /AronsAdventure.exe: - - arguments: '-d3d12' + "/AronsAdventure.exe": + - arguments: "-d3d12" when: - bit: 64 os: windows @@ -37662,15 +37780,15 @@ Around the Words: installDir: Around the Words: {} launch: - /atw: + "/atw": - when: - os: linux store: steam - /atw.app: + "/atw.app": - when: - os: mac store: steam - /atw.exe: + "/atw.exe": - when: - os: windows store: steam @@ -37680,7 +37798,7 @@ Around the World in 80 Days: installDir: Around the World in 80 Days: {} launch: - /80days.exe: + "/80days.exe": - when: - os: windows store: steam @@ -37690,16 +37808,16 @@ Arranged: installDir: Arranged: {} launch: - /Arranged.app: + "/Arranged.app": - when: - os: mac store: steam - /Arranged.exe: + "/Arranged.exe": - when: - bit: 64 os: windows store: steam - /Arranged.x86_64: + "/Arranged.x86_64": - when: - bit: 64 os: linux @@ -37710,7 +37828,7 @@ Arraynium: installDir: ARRAYNIUM: {} launch: - /arraynium.exe: + "/arraynium.exe": - when: - os: windows store: steam @@ -37720,7 +37838,7 @@ Arrest of a Stone Buddha: installDir: Arrest of a stone Buddha: {} launch: - /arrest of a stone buddha.exe: + "/arrest of a stone buddha.exe": - when: - os: windows store: steam @@ -37730,11 +37848,11 @@ Arrog: installDir: Arrog: {} launch: - /Arrog.app: + "/Arrog.app": - when: - os: mac store: steam - /Arrog.exe: + "/Arrog.exe": - when: - os: windows store: steam @@ -37749,7 +37867,7 @@ Arrow: installDir: Arrow: {} launch: - /ShipFight.exe: + "/ShipFight.exe": - when: - os: windows store: steam @@ -37759,7 +37877,7 @@ Arrow Heads: installDir: Arrow Heads: {} launch: - /ArrowHeads-WIN-Steam.exe: + "/ArrowHeads-WIN-Steam.exe": - when: - os: windows store: steam @@ -37769,11 +37887,11 @@ Arrow Tourney: installDir: ArrowTourney: {} launch: - /ArrowTourney.exe: + "/ArrowTourney.exe": - when: - os: windows store: steam - /ArrowTourney.sh: + "/ArrowTourney.sh": - when: - os: linux store: steam @@ -37788,7 +37906,7 @@ Arrowpoint: installDir: Arrowpoint: {} launch: - /Arrowpoint.exe: + "/Arrowpoint.exe": - when: - os: windows store: steam @@ -37798,7 +37916,7 @@ Ars Fabulae: installDir: Ars Fabulae: {} launch: - /The Last Show of Mr. Chardish.exe: + "/The Last Show of Mr. Chardish.exe": - when: - store: steam steam: @@ -37807,23 +37925,23 @@ Arsenal Demon: installDir: Arsenal Demon: {} launch: - /Arsenal Demon.app: + "/Arsenal Demon.app": - when: - os: mac store: steam - /Arsenal Demon.exe: + "/Arsenal Demon.exe": - when: - os: windows store: steam - /Arsenal Demon.x86_64: + "/Arsenal Demon.x86_64": - when: - os: linux store: steam steam: id: 1149860 -'Arsenal of Democracy: A Hearts of Iron Game': +"Arsenal of Democracy: A Hearts of Iron Game": files: - /Scenarios/Save games: + "/Scenarios/Save games": tags: - save when: @@ -37833,31 +37951,31 @@ Arsenal Demon: installDir: Arsenal of Democracy: {} launch: - /aodgame.exe: + "/aodgame.exe": - when: - store: steam steam: id: 42850 -'Arsenal: Taste the Power': +"Arsenal: Taste the Power": files: - /*.map: + "/*.map": tags: - save when: - os: dos -'Arslan: The Warriors of Legend': +"Arslan: The Warriors of Legend": installDir: ARSLAN THE WARRIORS OF LEGEND: {} launch: - /Config.exe: + "/Config.exe": - when: - os: windows store: steam steam: id: 401890 -'Arson and Plunder: Unleashed': +"Arson and Plunder: Unleashed": files: - /ArsonAndPlunderUnleashed/ArsonAndPlunderSave.dat: + "/ArsonAndPlunderUnleashed/ArsonAndPlunderSave.dat": tags: - save when: @@ -37865,7 +37983,7 @@ Arsenal Demon: installDir: Arson And Plunder: {} launch: - /ArsonAndPlunder.exe: + "/ArsonAndPlunder.exe": - when: - os: windows store: steam @@ -37875,15 +37993,15 @@ ArsonVille: installDir: ArsonVille: {} launch: - /ArsonVille: + "/ArsonVille": - when: - os: linux store: steam - /ArsonVille.app/Contents/MacOS/ArsonVille: + "/ArsonVille.app/Contents/MacOS/ArsonVille": - when: - os: mac store: steam - /ArsonVille.exe: + "/ArsonVille.exe": - when: - os: windows store: steam @@ -37901,7 +38019,7 @@ Art Of Air War: installDir: ArtOfAirWar: {} launch: - /ArtOfAirWar.exe: + "/ArtOfAirWar.exe": - when: - bit: 64 os: windows @@ -37915,7 +38033,7 @@ Art Plunge: id: 570900 Art Sqool: files: - /AppData/LocalLow/Julian Glander/ART SQOOL: + "/AppData/LocalLow/Julian Glander/ART SQOOL": tags: - save when: @@ -37923,11 +38041,11 @@ Art Sqool: installDir: ART SQOOL: {} launch: - /ART SQOOL.exe: + "/ART SQOOL.exe": - when: - os: windows store: steam - /Art Sqool.app/Contents/MacOS/Mac19: + "/Art Sqool.app/Contents/MacOS/Mac19": - when: - os: mac store: steam @@ -37942,7 +38060,7 @@ Art by Numbers: installDir: ArtByNumbers: {} launch: - /Art by Numbers.exe: + "/Art by Numbers.exe": - when: - os: windows store: steam @@ -37952,15 +38070,15 @@ Art of Boxing: installDir: Art of Boxing: {} launch: - /Art Of Boxing.exe: + "/Art Of Boxing.exe": - when: - os: windows store: steam - /ArtOfBoxingLinux.x86_64: + "/ArtOfBoxingLinux.x86_64": - when: - os: linux store: steam - /Contents/MacOS/Art Of Boxing: + "/Contents/MacOS/Art Of Boxing": - when: - os: mac store: steam @@ -37970,7 +38088,7 @@ Art of Deception: installDir: Art of Deception: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -37983,15 +38101,15 @@ Art of Gravity: installDir: Art Of Gravity: {} launch: - /ArtOfGravity.app: + "/ArtOfGravity.app": - when: - os: mac store: steam - /ArtOfGravity.exe: + "/ArtOfGravity.exe": - when: - os: windows store: steam - /ArtOfGravity.x86: + "/ArtOfGravity.x86": - when: - os: linux store: steam @@ -38006,22 +38124,22 @@ Art of Guile: installDir: Art of Guile: {} launch: - /bin/AoG.exe: + "/bin/AoG.exe": - when: - os: windows store: steam - workingDir: /bin + workingDir: "/bin" steam: id: 600250 Art of Horology: installDir: Art of Horology: {} launch: - /AoH_MacOS_2018-10-21.app: + "/AoH_MacOS_2018-10-21.app": - when: - os: mac store: steam - /Art of Horology 10-21-2018.exe: + "/Art of Horology 10-21-2018.exe": - when: - os: windows store: steam @@ -38029,12 +38147,12 @@ Art of Horology: id: 1033860 Art of Murder - Cards of Destiny: files: - /Art of Murder - Cards of Destiny: + "/Art of Murder - Cards of Destiny": tags: - save when: - os: windows - /Art of Murder - Cards of Destiny/game.setup: + "/Art of Murder - Cards of Destiny/game.setup": tags: - config when: @@ -38042,7 +38160,7 @@ Art of Murder - Cards of Destiny: installDir: Art of Murder - Cards of Destiny: {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: @@ -38051,14 +38169,14 @@ Art of Murder - Deadly Secrets: installDir: Art of Murder - Deadly Secrets: {} launch: - /MystLauncher.exe: + "/MystLauncher.exe": - when: - store: steam steam: id: 836870 Art of Murder - FBI Confidential: files: - /Saved Games/Art of Murder FBI Confidential: + "/Saved Games/Art of Murder FBI Confidential": tags: - save when: @@ -38066,7 +38184,7 @@ Art of Murder - FBI Confidential: installDir: Art of Murder - FBI Confidential: {} launch: - /game.exe: + "/game.exe": - when: - store: steam registry: @@ -38077,12 +38195,12 @@ Art of Murder - FBI Confidential: id: 809000 Art of Murder - Hunt for the Puppeteer: files: - /Art of Murder - The Hunt for the Puppeteer: + "/Art of Murder - The Hunt for the Puppeteer": tags: - save when: - os: windows - /Art of Murder - The Hunt for the Puppeteer/game.setup: + "/Art of Murder - The Hunt for the Puppeteer/game.setup": tags: - config when: @@ -38090,7 +38208,7 @@ Art of Murder - Hunt for the Puppeteer: installDir: Art of Murder - Hunt for the Puppeteer: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: @@ -38099,49 +38217,50 @@ Art of Murder - The Secret Files: installDir: Art of Murder - The Secret Files: {} launch: - /MystLauncher.exe: + "/MystLauncher.exe": - when: - store: steam steam: id: 836860 Art of Rally: files: - /.config/unity3d/Funselektor Labs/art of rally/cloud: + "/.config/unity3d/Funselektor Labs/art of rally/cloud": tags: - save when: - os: linux - /.config/unity3d/Funselektor Labs/art of rally/prefs: + "/.config/unity3d/Funselektor Labs/art of rally/prefs": tags: - config when: - os: linux - /AppData/LocalLow/Funselektor Labs/art of rally/cloud: + "/AppData/LocalLow/Funselektor Labs/art of rally/cloud": tags: - save when: - os: windows - /AppData/LocalLow/Funselektor Labs/art of rally/prefs: + "/AppData/LocalLow/Funselektor Labs/art of rally/prefs": tags: - config when: - os: windows - /Library/Application Support/Funselektor Labs/art of rally/cloud: + "/Library/Application Support/Funselektor Labs/art of rally/cloud": tags: - save when: - os: mac - /Library/Application Support/Funselektor Labs/art of rally/prefs: + "/Library/Application Support/Funselektor Labs/art of rally/prefs": tags: - config when: - os: mac - /GOG.com/Galaxy/Applications/52472571249609451/Storage/Shared/Files: + "/GOG.com/Galaxy/Applications/52472571249609451/Storage/Shared/Files": tags: - save when: - - store: gog - /Packages/Funselektor.artofrally_43tswnvjm2gzr/SystemAppData/wgs: + - os: windows + store: gog + "/Packages/Funselektor.artofrally_43tswnvjm2gzr/SystemAppData/wgs": tags: - save when: @@ -38152,23 +38271,23 @@ Art of Rally: id: gogExtra: - 1371826936 - - 1811863520 - 1417806275 + - 1811863520 steamExtra: - 1297610 - 2250420 installDir: artofrally: {} launch: - /artofrally.app: + "/artofrally.app": - when: - os: mac store: steam - /artofrally.exe: + "/artofrally.exe": - when: - os: windows store: steam - /artofrally.x64: + "/artofrally.x64": - when: - os: linux store: steam @@ -38178,22 +38297,22 @@ Art of Stealth: installDir: Art of Stealth: {} launch: - /Art of Stealth/PlayTheArtOfStealth.exe: + "/Art of Stealth/PlayTheArtOfStealth.exe": - when: - os: windows store: steam steam: id: 575160 -'Art of War: Red Tides': +"Art of War: Red Tides": installDir: ArtOfWar: {} launch: - /game/u1game.exe: + "/game/u1game.exe": - when: - os: windows store: steam - workingDir: /game - /gslaunchershell.exe: + workingDir: "/game" + "/gslaunchershell.exe": - when: - os: windows store: steam @@ -38203,7 +38322,7 @@ ArtFormer the Game: installDir: ArtFormer the Game: {} launch: - /ArtFormer.exe: + "/ArtFormer.exe": - when: - store: steam steam: @@ -38215,21 +38334,21 @@ Artemis Spaceship Bridge Simulator: installDir: Artemis: {} launch: - /Artemis.exe: + "/Artemis.exe": - when: - os: windows store: steam steam: id: 247350 -'Artemis: God-Queen of The Hunt': +"Artemis: God-Queen of The Hunt": installDir: Artemis God-Queen of Olympia: {} launch: - /Artemis.exe: + "/Artemis.exe": - when: - os: windows store: steam - /Contents/MacOS/mac_build: + "/Contents/MacOS/mac_build": - when: - os: mac store: steam @@ -38237,45 +38356,45 @@ Artemis Spaceship Bridge Simulator: id: 1081850 Arthur and the Invisibles: files: - /SAVE: + "/SAVE": tags: - save when: - os: windows -Arthur's Birthday: +"Arthur's Birthday": steam: id: 2471140 -Arthur's Computer Adventure: +"Arthur's Computer Adventure": steam: id: 2471170 -'Arthur''s Knights II: The Secret of Merlin': +"Arthur's Knights II: The Secret of Merlin": files: - /System: + "/System": tags: - config when: - os: windows -'Arthur''s Knights: Tales of Chivalry': +"Arthur's Knights: Tales of Chivalry": files: - /System: + "/System": tags: - config when: - os: windows -Arthur's Reading Race: +"Arthur's Reading Race": steam: id: 2471160 -Arthur's Teacher Trouble: +"Arthur's Teacher Trouble": steam: id: 2471150 Arthurian Legends: files: - /001/Games/Arthurian Legends: + "/001/Games/Arthurian Legends": tags: - save when: - os: windows - /001/Games/Arthurian Legends/SETTINGS.INI: + "/001/Games/Arthurian Legends/SETTINGS.INI": tags: - config when: @@ -38283,7 +38402,7 @@ Arthurian Legends: installDir: Arthurian Legends: {} launch: - /Arthurian Legends.exe: + "/Arthurian Legends.exe": - when: - os: windows store: steam @@ -38291,7 +38410,7 @@ Arthurian Legends: id: 658890 Artifact: files: - /game/dcg/cfg: + "/game/dcg/cfg": tags: - config when: @@ -38299,29 +38418,29 @@ Artifact: installDir: Artifact: {} launch: - /game/artifact.sh: - - arguments: '-noassert -nop4 -vulkan' + "/game/artifact.sh": + - arguments: "-noassert -nop4 -vulkan" when: - os: mac store: steam - - arguments: '-vulkan' + - arguments: "-vulkan" when: - bit: 64 os: linux store: steam - /game/bin/win64/dcg.exe: + "/game/bin/win64/dcg.exe": - when: - bit: 64 os: windows store: steam - workingDir: /game/dcg + workingDir: "/game/dcg" steam: id: 583950 Artifact Adventure: installDir: Artifact Adventure: {} launch: - /launcher.exe: + "/launcher.exe": - when: - os: windows store: steam @@ -38331,7 +38450,7 @@ Artifact Adventure Gaiden: installDir: Artifact Adventure Gaiden: {} launch: - /aag.exe: + "/aag.exe": - when: - os: windows store: steam @@ -38341,7 +38460,7 @@ Artifact Adventure Gaiden DX: installDir: Artifact Adventure Gaiden DX: {} launch: - /aagdx.exe: + "/aagdx.exe": - when: - os: windows store: steam @@ -38351,11 +38470,11 @@ Artifact Quest 2: installDir: Artifact Quest 2: {} launch: - /Artifact Quest 2.app/Contents/MacOS/Artifact Quest 2: + "/Artifact Quest 2.app/Contents/MacOS/Artifact Quest 2": - when: - os: mac store: steam - /main.exe: + "/main.exe": - when: - os: windows store: steam @@ -38365,11 +38484,11 @@ Artificer: installDir: Artificer: {} launch: - /Artificer.exe: + "/Artificer.exe": - when: - os: windows store: steam - /ArtificerMac.app/Contents/MacOS/Artificer: + "/ArtificerMac.app/Contents/MacOS/Artificer": - when: - os: mac store: steam @@ -38380,7 +38499,7 @@ Artificial: id: 904510 Artificial Defense: files: - /AppData/LocalLow/onemangames/Artificial Defense/savegame.dat: + "/AppData/LocalLow/onemangames/Artificial Defense/savegame.dat": tags: - save when: @@ -38388,7 +38507,7 @@ Artificial Defense: installDir: Artificial Defense: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -38398,7 +38517,7 @@ Artificial Extinction: installDir: Artificial Extinction: {} launch: - /ArtificialExtinction.exe: + "/ArtificialExtinction.exe": - when: - os: windows store: steam @@ -38408,7 +38527,7 @@ Artificial Iridescence: installDir: Artificial Iridescence: {} launch: - /Artificial Iridescence.exe: + "/Artificial Iridescence.exe": - when: - os: windows store: steam @@ -38418,15 +38537,15 @@ Artificial Mansion: installDir: Artificial Mansion: {} launch: - /ArtificialMansion.app/Contents/MacOS/ArtificialMansion: + "/ArtificialMansion.app/Contents/MacOS/ArtificialMansion": - when: - os: mac store: steam - /ArtificialMansion.exe: + "/ArtificialMansion.exe": - when: - os: windows store: steam - /ArtificialMansion.sh: + "/ArtificialMansion.sh": - when: - os: linux store: steam @@ -38436,7 +38555,7 @@ Artificiality-人造物-: installDir: Artificiality: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -38446,15 +38565,15 @@ Artillerists: installDir: Artillerists: {} launch: - /artillerists.app: + "/artillerists.app": - when: - os: mac store: steam - /nw: + "/nw": - when: - os: linux store: steam - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -38464,7 +38583,7 @@ Artillery Cats: installDir: Artillery Cats: {} launch: - /ArtilleryCats.exe: + "/ArtilleryCats.exe": - when: - os: windows store: steam @@ -38474,21 +38593,21 @@ Artillery Globe: installDir: Artillery Globe: {} launch: - /ArtilleryGlobe.app/Contents/MacOS/ArtilleryGlobe: + "/ArtilleryGlobe.app/Contents/MacOS/ArtilleryGlobe": - when: - os: mac store: steam - /ArtilleryGlobe/ArtilleryGlobe.exe: + "/ArtilleryGlobe/ArtilleryGlobe.exe": - when: - os: windows store: steam steam: id: 985770 -'Artisan: Going Home Again': +"Artisan: Going Home Again": installDir: Artisan Going Home Again: {} launch: - /Artisan.exe: + "/Artisan.exe": - when: - os: windows store: steam @@ -38496,7 +38615,7 @@ Artillery Globe: id: 525050 Artist Idle: files: - /rgb11/save: + "/rgb11/save": tags: - save when: @@ -38504,7 +38623,7 @@ Artist Idle: installDir: Artist Idle: {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: @@ -38513,7 +38632,7 @@ Artistic Girl 1: installDir: Artistic Girl 1: {} launch: - /ArtisticGirl1.exe: + "/ArtisticGirl1.exe": - when: - store: steam steam: @@ -38522,7 +38641,7 @@ Artizens: installDir: Artizens: {} launch: - /start_artizens.exe: + "/start_artizens.exe": - when: - os: windows store: steam @@ -38532,7 +38651,7 @@ Arvale: installDir: Arvale: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -38540,12 +38659,12 @@ Arvale: id: 392920 Arx Fatalis: files: - /Save: + "/Save": tags: - save when: - os: windows - /cfg_default.ini: + "/cfg_default.ini": tags: - config when: @@ -38558,14 +38677,14 @@ Arx Fatalis: installDir: Arx Fatalis: {} launch: - /arx.bat: + "/arx.bat": - when: - store: steam steam: id: 1700 Ary and the Secret of Seasons: files: - /eXiin/Ary and the Secret of Seasons/76561198040539092: + "/eXiin/Ary and the Secret of Seasons/76561198040539092": tags: - config - save @@ -38574,21 +38693,21 @@ Ary and the Secret of Seasons: installDir: Ary and the secret of seasons: {} launch: - /Ary and the Secret of Seasons.exe: + "/Ary and the Secret of Seasons.exe": - when: - bit: 64 os: windows store: steam steam: id: 935570 -'Arzette: The Jewel of Faramore': +"Arzette: The Jewel of Faramore": steam: id: 1924780 Arzt Simulator: installDir: Arzt Simulator: {} launch: - /arzt.exe: + "/arzt.exe": - when: - os: windows store: steam @@ -38596,12 +38715,12 @@ Arzt Simulator: id: 1191270 As Dusk Falls: files: - /AppData/LocalLow/Interior Night Ltd/Dusk/Save: + "/AppData/LocalLow/Interior Night Ltd/Dusk/Save": tags: - save when: - os: windows - /Packages/Microsoft.3020BF20E956_8wekyb3d8bbwe/SystemAppData/wgs: + "/Packages/Microsoft.3020BF20E956_8wekyb3d8bbwe/SystemAppData/wgs": tags: - save when: @@ -38610,7 +38729,7 @@ As Dusk Falls: installDir: As Dusk Falls: {} launch: - /Dusk.exe: + "/Dusk.exe": - when: - bit: 64 os: windows @@ -38619,12 +38738,12 @@ As Dusk Falls: id: 1341820 As Far as the Eye: files: - /My Games/A FATE: + "/My Games/A FATE": tags: - config when: - os: windows - /My Games/A FATE/Saves: + "/My Games/A FATE/Saves": tags: - save when: @@ -38634,32 +38753,32 @@ As Far as the Eye: installDir: As Far As The Eye: {} launch: - /110.x86_64: + "/110.x86_64": - when: - os: linux store: steam - /AFATE.app: + "/AFATE.app": - when: - os: mac store: steam - /As Far As The Eye.exe: + "/As Far As The Eye.exe": - when: - os: windows store: steam steam: id: 1119700 -As If Dreaming When You're Wide Awake: +"As If Dreaming When You're Wide Awake": steam: id: 845370 As We Know It: installDir: As We Know It: {} launch: - /As_We_Know_It-1.021-market/As_We_Know_It.app: + "/As_We_Know_It-1.021-market/As_We_Know_It.app": - when: - os: mac store: steam - /As_We_Know_It-1.021-market/As_We_Know_It.exe: + "/As_We_Know_It-1.021-market/As_We_Know_It.exe": - when: - os: windows store: steam @@ -38668,11 +38787,11 @@ As We Know It: Ascend: steam: id: 1036570 -'Ascend: Reborn': +"Ascend: Reborn": installDir: Ascend Reborn: {} launch: - /bin/Game.exe: + "/bin/Game.exe": - when: - os: windows store: steam @@ -38687,15 +38806,15 @@ Ascendant: installDir: Ascendant: {} launch: - /Ascendant.app: + "/Ascendant.app": - when: - os: mac store: steam - /Ascendant.exe: + "/Ascendant.exe": - when: - os: windows store: steam - /Ascendant.x86: + "/Ascendant.x86": - when: - os: linux store: steam @@ -38710,15 +38829,15 @@ Ascendant Hearts: installDir: Ascendant Hearts: {} launch: - /Ascendant Hearts.exe: + "/Ascendant Hearts.exe": - when: - os: windows store: steam - /AscendantHearts.app: + "/AscendantHearts.app": - when: - os: mac store: steam - /AscendantHearts.sh: + "/AscendantHearts.sh": - when: - os: linux store: steam @@ -38728,8 +38847,8 @@ Ascendants Rising: installDir: AscendantsRising: {} launch: - /WindowsClient/AscendantsRisingClient.exe: - - arguments: '-NoSteam -EOSConfig=RelClient' + "/WindowsClient/AscendantsRisingClient.exe": + - arguments: "-NoSteam -EOSConfig=RelClient" when: - bit: 64 os: windows @@ -38740,20 +38859,20 @@ Ascender: installDir: Ascender: {} launch: - /Ascender.app: + "/Ascender.app": - when: - os: mac store: steam - /Ascender.exe: + "/Ascender.exe": - when: - os: windows store: steam - /Ascender.x86: + "/Ascender.x86": - when: - bit: 32 os: linux store: steam - /Ascender.x86_64: + "/Ascender.x86_64": - when: - bit: 64 os: linux @@ -38764,7 +38883,7 @@ Ascending Madness: installDir: AscendingMadness: {} launch: - /AscendingMadness.exe: + "/AscendingMadness.exe": - when: - os: windows store: steam @@ -38777,12 +38896,12 @@ Ascension VR: id: 499940 Ascension to the Throne: files: - /Saves: + "/Saves": tags: - save when: - os: windows - /graphic.cfg: + "/graphic.cfg": tags: - config when: @@ -38792,33 +38911,33 @@ Ascension to the Throne: installDir: AttT: {} launch: - /ATThrone.exe: + "/ATThrone.exe": - when: - os: windows store: steam steam: id: 289200 -'Ascension to the Throne: Valkyrie': +"Ascension to the Throne: Valkyrie": files: - /Saves: + "/Saves": tags: - save when: - os: windows - /graphic.cfg: + "/graphic.cfg": tags: - config when: - os: windows -'Ascension: Deckbuilding Game': +"Ascension: Deckbuilding Game": installDir: Ascension: {} launch: - /Ascension.app/Contents/MacOS/Ascension: + "/Ascension.app/Contents/MacOS/Ascension": - when: - os: mac store: steam - /AscensionGame.exe: + "/AscensionGame.exe": - when: - os: windows store: steam @@ -38828,20 +38947,20 @@ Ascent - The Space Game: installDir: Ascent - The Space Game: {} launch: - /thespacegame.app: + "/thespacegame.app": - when: - os: mac store: steam - /thespacegame.exe: + "/thespacegame.exe": - when: - os: windows store: steam - /thespacegame.x86: + "/thespacegame.x86": - when: - bit: 32 os: linux store: steam - /thespacegame.x86_64: + "/thespacegame.x86_64": - when: - bit: 64 os: linux @@ -38852,7 +38971,7 @@ Ascent Free-Roaming VR Experience: installDir: Ascent: {} launch: - /AscentLauncherX.exe: + "/AscentLauncherX.exe": - when: - store: steam steam: @@ -38866,7 +38985,7 @@ Asdivine Dios: installDir: Asdivine Dios: {} launch: - /Asdivine Dios.exe: + "/Asdivine Dios.exe": - when: - os: windows store: steam @@ -38876,13 +38995,13 @@ Asdivine Hearts: installDir: Asdivine Hearts: {} launch: - /AsdivineHearts.app: - - arguments: '-fullscreen' + "/AsdivineHearts.app": + - arguments: "-fullscreen" when: - os: mac store: steam - /AsdivineHearts.exe: - - arguments: '-fullscreen' + "/AsdivineHearts.exe": + - arguments: "-fullscreen" when: - os: windows store: steam @@ -38892,7 +39011,7 @@ Asdivine Hearts II: installDir: Asdivine Hearts II: {} launch: - /AsdivineHeartsII.exe: + "/AsdivineHeartsII.exe": - when: - os: windows store: steam @@ -38902,7 +39021,7 @@ Asdivine Kamura: installDir: Asdivine Kamura: {} launch: - /Asdivine Kamura.exe: + "/Asdivine Kamura.exe": - when: - os: windows store: steam @@ -38912,7 +39031,7 @@ Asdivine Menace: installDir: Asdivine Menace: {} launch: - /Asdivine Menace.exe: + "/Asdivine Menace.exe": - when: - os: windows store: steam @@ -38922,19 +39041,19 @@ Aselia the Eternal -The Spirit of Eternity Sword-: installDir: Aselia the Eternal: {} launch: - /Aselia.exe: + "/Aselia.exe": - when: - store: steam steam: id: 445420 Asemblance: files: - /HoloRoom9code/Saved/SaveGames/GameSave1.sav: + "/HoloRoom9code/Saved/SaveGames/GameSave1.sav": tags: - save when: - os: windows - /HoloRoom9code/Saved/SaveGames/GameVideoSave1.sav: + "/HoloRoom9code/Saved/SaveGames/GameVideoSave1.sav": tags: - config when: @@ -38942,30 +39061,30 @@ Asemblance: installDir: Asemblance: {} launch: - /HoloRoom9code.exe: + "/HoloRoom9code.exe": - when: - os: windows store: steam steam: id: 452970 -'Asemblance: Oversight': +"Asemblance: Oversight": installDir: Asemblance Oversight: {} launch: - /Asemblance2.exe: + "/Asemblance2.exe": - when: - os: windows store: steam steam: id: 809950 -Asgard's Wrath: +"Asgard's Wrath": files: - /WrathGame/Saved/SaveGames: + "/WrathGame/Saved/SaveGames": tags: - save when: - os: windows - 'C:/Program Files/Oculus/Software/Software/sanzaru-games-inc-wrath/WindowsNoEditor': + "C:/Program Files/Oculus/Software/Software/sanzaru-games-inc-wrath/WindowsNoEditor": tags: - config when: @@ -38974,7 +39093,7 @@ Asguaard: installDir: Asguaard: {} launch: - /Asguaard.exe: + "/Asguaard.exe": - when: - os: windows store: steam @@ -38984,26 +39103,26 @@ Ash Asylum: installDir: Ash Asylum: {} launch: - /AshAsylum.exe: + "/AshAsylum.exe": - when: - bit: 64 os: windows store: steam - /AshAsylum.sh: + "/AshAsylum.sh": - when: - bit: 64 os: linux store: steam steam: id: 1102680 -'Ash of Gods: Redemption': +"Ash of Gods: Redemption": files: - /AppData/LocalLow/AurumDust LLC/Ash of Gods: + "/AppData/LocalLow/AurumDust LLC/Ash of Gods": tags: - save when: - os: windows - /userdata//691690/remote: + "/userdata//691690/remote": tags: - save when: @@ -39016,23 +39135,23 @@ Ash Asylum: installDir: Ash of Gods Redemption: {} launch: - /terminus.app: + "/terminus.app": - when: - os: mac store: steam - /terminus.exe: + "/terminus.exe": - when: - os: windows store: steam - /terminus.x86_64: + "/terminus.x86_64": - when: - os: linux store: steam steam: id: 691690 -'Ash of Gods: The Way': +"Ash of Gods: The Way": files: - /AppData/LocalLow/AurumDust LLC/Ash of Gods The Way/Saves: + "/AppData/LocalLow/AurumDust LLC/Ash of Gods The Way/Saves": tags: - save when: @@ -39042,7 +39161,7 @@ Ash Asylum: installDir: Ash of Gods The Way: {} launch: - /TheWay.exe: + "/TheWay.exe": - when: - store: steam steam: @@ -39051,11 +39170,11 @@ Ash of War: installDir: ASH OF WAR™: {} launch: - /AshOfWarBuild.exe: + "/AshOfWarBuild.exe": - when: - os: windows store: steam - /aowmac.app: + "/aowmac.app": - when: - os: mac store: steam @@ -39065,7 +39184,7 @@ Ashbourne: installDir: Ashbourne: {} launch: - /Ashbourne.exe: + "/Ashbourne.exe": - when: - bit: 64 os: windows @@ -39074,12 +39193,12 @@ Ashbourne: id: 475250 Ashen: files: - /Ashen/Saved/Config/WindowsNoEditor: + "/Ashen/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /Ashen/Saved/SaveGames: + "/Ashen/Saved/SaveGames": tags: - save when: @@ -39089,7 +39208,7 @@ Ashen: installDir: Ashen: {} launch: - /Ashen.exe: + "/Ashen.exe": - when: - store: steam steam: @@ -39098,7 +39217,7 @@ AshenForest: installDir: AshenForest: {} launch: - /AshenForest.exe: + "/AshenForest.exe": - when: - os: windows store: steam @@ -39108,7 +39227,7 @@ Asher: installDir: Asher: {} launch: - /Asher.exe: + "/Asher.exe": - when: - os: windows store: steam @@ -39118,7 +39237,7 @@ Ashes: installDir: Ashes: {} launch: - /Ashes.exe: + "/Ashes.exe": - when: - os: windows store: steam @@ -39128,7 +39247,7 @@ Ashes (2018): installDir: Ashes: {} launch: - /AshesGame.exe: + "/AshesGame.exe": - when: - store: steam steam: @@ -39137,7 +39256,7 @@ Ashes 2: installDir: Ashes 2: {} launch: - /Ashes_2.exe: + "/Ashes_2.exe": - when: - os: windows store: steam @@ -39147,7 +39266,7 @@ Ashes Cricket: installDir: Ashes: {} launch: - /ashes.exe: + "/ashes.exe": - when: - bit: 64 os: windows @@ -39156,12 +39275,12 @@ Ashes Cricket: id: 649640 Ashes Cricket 2009: files: - /My Games/Codemasters/Ashes Cricket 2009: + "/My Games/Codemasters/Ashes Cricket 2009": tags: - save when: - os: windows - /My Games/Codemasters/Ashes Cricket 2009/USER.DAT: + "/My Games/Codemasters/Ashes Cricket 2009/USER.DAT": tags: - config when: @@ -39169,10 +39288,10 @@ Ashes Cricket 2009: installDir: Ashes Cricket 2009: {} launch: - /Cricket2009.exe: + "/Cricket2009.exe": - when: - store: steam - /runme.exe: + "/runme.exe": - when: - store: steam steam: @@ -39181,7 +39300,7 @@ Ashes Cricket 2013: installDir: Ashes Cricket 2013: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: @@ -39195,7 +39314,7 @@ Ashes of Immortality: installDir: Ashes of Immortality: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -39205,17 +39324,17 @@ Ashes of Immortality II: installDir: Ashes of Immortality II: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam steam: id: 362140 -'Ashes of Immortality II: Bad Blood': +"Ashes of Immortality II: Bad Blood": installDir: Ashes of Immortality II - Bad Blood: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: @@ -39224,7 +39343,7 @@ Ashes of Kanaka: installDir: Ashes of Kanaka: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -39234,8 +39353,8 @@ Ashes of Oahu: installDir: AshesOfOahu: {} launch: - /AshesOfOahu.exe: - - arguments: '-fullscreen' + "/AshesOfOahu.exe": + - arguments: "-fullscreen" when: - bit: 64 os: windows @@ -39251,19 +39370,19 @@ Ashes of the Night: installDir: Ashes of the Night: {} launch: - /Project2/Game.exe: + "/Project2/Game.exe": - when: - store: steam steam: id: 973050 Ashes of the Singularity: files: - /My Games/Ashes of the Singularity/Saves: + "/My Games/Ashes of the Singularity/Saves": tags: - save when: - os: windows - /My Games/Ashes of the Singularity/settings.ini: + "/My Games/Ashes of the Singularity/settings.ini": tags: - config when: @@ -39272,44 +39391,44 @@ Ashes of the Singularity: id: 1447327294 id: gogExtra: + - 1309756718 - 1460023188 - 1543259894 - - 1309756718 - 2146570130 steamExtra: - - 488010 - - 475450 - - 460460 - 381650 + - 460460 + - 475450 + - 488010 - 565050 installDir: Ashes of the Singularity: {} launch: - /Ashes_DX11.exe: + "/Ashes_DX11.exe": - when: - bit: 64 os: windows store: steam - /Ashes_DX12.exe: + "/Ashes_DX12.exe": - when: - bit: 64 os: windows store: steam steam: id: 228880 -'Ashes of the Singularity: Escalation': +"Ashes of the Singularity: Escalation": files: - /userdata//507490/remote/saves: + "/userdata//507490/remote/saves": tags: - save when: - store: steam - /My Games/Ashes of the Singularity - Escalation/Saves: + "/My Games/Ashes of the Singularity - Escalation/Saves": tags: - save when: - os: windows - /My Games/Ashes of the Singularity - Escalation/settings.ini: + "/My Games/Ashes of the Singularity - Escalation/settings.ini": tags: - config when: @@ -39319,7 +39438,7 @@ Ashes of the Singularity: installDir: Ashes of the Singularity Escalation: {} launch: - /StardockLauncher.exe: + "/StardockLauncher.exe": - when: - store: steam steam: @@ -39328,30 +39447,30 @@ Ashi Wash: installDir: ASHIWASH: {} launch: - /ASHIWASH_MIGRATE.exe: + "/ASHIWASH_MIGRATE.exe": - when: - bit: 64 os: windows store: steam steam: id: 820210 -'Ashi: Lake of Light': +"Ashi: Lake of Light": installDir: Ashi: {} launch: - /Ashi.app/Contents/MacOS/Ashi: + "/Ashi.app/Contents/MacOS/Ashi": - when: - os: mac store: steam - /Ashi.exe: + "/Ashi.exe": - when: - os: windows store: steam steam: id: 819040 -'Ashina: The Red Witch': +"Ashina: The Red Witch": files: - /Saved Games/Ashina Saves: + "/Saved Games/Ashina Saves": tags: - config - save @@ -39365,7 +39484,7 @@ Ashland Dossier: installDir: Ashland Dossier: {} launch: - /Ashland Dossier.exe: + "/Ashland Dossier.exe": - when: - bit: 64 os: windows @@ -39376,26 +39495,26 @@ Ashland 墲人之境: installDir: Ashland: {} launch: - /Tomb_Explore.exe: + "/Tomb_Explore.exe": - arguments: LauncherStart when: - os: windows store: steam steam: id: 887690 -'Ashley Clark: Secret of the Ruby': +"Ashley Clark: Secret of the Ruby": files: - /AppData/LocalLow/N-Tri Studio/Ashley Clark: Secret of the Ruby/Profiles: + "/AppData/LocalLow/N-Tri Studio/Ashley Clark: Secret of the Ruby/Profiles": tags: - save when: - os: windows - /unity3d/N-Tri Studio/Ashley Clark: Secret of the Ruby/Profiles: + "/unity3d/N-Tri Studio/Ashley Clark: Secret of the Ruby/Profiles": tags: - save when: - os: linux - /unity3d/N-Tri Studio/Ashley Clark: Secret of the Ruby/prefs: + "/unity3d/N-Tri Studio/Ashley Clark: Secret of the Ruby/prefs": tags: - config when: @@ -39403,15 +39522,15 @@ Ashland 墲人之境: installDir: Ashley Clark Secret of the Ruby: {} launch: - /Game.app: + "/Game.app": - when: - os: mac store: steam - /Game.exe: + "/Game.exe": - when: - os: windows store: steam - /Game.x86: + "/Game.x86": - when: - os: linux store: steam @@ -39421,19 +39540,19 @@ Ashland 墲人之境: - config steam: id: 882640 -'Ashley Clark: The Secrets of the Ancient Temple': +"Ashley Clark: The Secrets of the Ancient Temple": files: - /AppData/LocalLow/N-Tri Studio/Ashley Clark_ The Secrets of the Ancient Temple/Profiles: + "/AppData/LocalLow/N-Tri Studio/Ashley Clark_ The Secrets of the Ancient Temple/Profiles": tags: - save when: - os: windows - /unity3d/N-Tri Studio/Ashley Clark_ The Secrets of the Ancient Temple/Profiles: + "/unity3d/N-Tri Studio/Ashley Clark_ The Secrets of the Ancient Temple/Profiles": tags: - save when: - os: linux - /unity3d/N-Tri Studio/Ashley Clark_ The Secrets of the Ancient Temple/prefs: + "/unity3d/N-Tri Studio/Ashley Clark_ The Secrets of the Ancient Temple/prefs": tags: - config when: @@ -39441,33 +39560,33 @@ Ashland 墲人之境: installDir: Ashley Clark The Secrets of the Ancient Temple: {} launch: - /Game.app: + "/Game.app": - when: - os: mac store: steam - /Game.exe: + "/Game.exe": - when: - os: windows store: steam - /Game.x86: + "/Game.x86": - when: - os: linux store: steam registry: - 'HKEY_CURRENT_USER/Software/N-Tri Studio/Ashley Clark: The Secrets of the Ancient Temple': + "HKEY_CURRENT_USER/Software/N-Tri Studio/Ashley Clark: The Secrets of the Ancient Temple": tags: - config steam: id: 912110 -'Ashley: The Story of Survival': +"Ashley: The Story of Survival": installDir: Ashley The Story Of Survival: {} launch: - /Ashley The Story Of Survival.app/Contents/MacOS/Ashley The Story Of Survival: + "/Ashley The Story Of Survival.app/Contents/MacOS/Ashley The Story Of Survival": - when: - os: mac store: steam - /Ashley The Story Of Survival.exe: + "/Ashley The Story Of Survival.exe": - when: - os: windows store: steam @@ -39479,7 +39598,7 @@ Ashwalkers: installDir: Ashwalkers: {} launch: - /Ashwalkers A Survival Journey.exe: + "/Ashwalkers A Survival Journey.exe": - when: - os: windows store: steam @@ -39489,15 +39608,15 @@ Ashworld: installDir: Ashworld: {} launch: - /ashworld: + "/ashworld": - when: - os: linux store: steam - /ashworld.app: + "/ashworld.app": - when: - os: mac store: steam - /ashworld.exe: + "/ashworld.exe": - when: - os: windows store: steam @@ -39507,7 +39626,7 @@ Asian Food Cart Tycoon: installDir: InstallAFCT: {} launch: - /Satay Shop Tycoon.exe: + "/Satay Shop Tycoon.exe": - when: - store: steam steam: @@ -39516,11 +39635,11 @@ Asian Maiden Creator: installDir: Asian Maiden Creator: {} launch: - /nw-app.app: + "/nw-app.app": - when: - os: mac store: steam - /nw-app.exe: + "/nw-app.exe": - when: - os: windows store: steam @@ -39530,7 +39649,7 @@ Asian Riddles: installDir: Asian Riddles: {} launch: - /Asian Riddles.exe: + "/Asian Riddles.exe": - when: - os: windows store: steam @@ -39540,7 +39659,7 @@ Asimov Laws: installDir: Asimov Laws: {} launch: - /Asimov Laws.exe: + "/Asimov Laws.exe": - when: - bit: 64 os: windows @@ -39551,16 +39670,16 @@ Askutron Quiz Show: installDir: Askutron Quiz: {} launch: - /Askutron.app/Contents/MacOS/Askutron: + "/Askutron.app/Contents/MacOS/Askutron": - when: - os: mac store: steam - /askutron.exe: + "/askutron.exe": - when: - bit: 64 os: windows store: steam - /askutron.x86_64: + "/askutron.x86_64": - when: - bit: 64 os: linux @@ -39571,7 +39690,7 @@ Aspect: installDir: aspect the game: {} launch: - /Aspect.exe: + "/Aspect.exe": - when: - os: windows store: steam @@ -39581,53 +39700,55 @@ Aspects of change: installDir: Aspects of change: {} launch: - /horoscopo2.exe: + "/horoscopo2.exe": - when: - os: windows store: steam steam: id: 1136470 -'Aspectus: Rinascimento Chronicles': +"Aspectus: Rinascimento Chronicles": installDir: Aspectus - Rinascimento Chronicles: {} launch: - /Aspectus - Rinascimento Chronicles.exe: + "/Aspectus - Rinascimento Chronicles.exe": - when: - os: windows store: steam steam: id: 342250 -'Asphalt 8: Airborne': +"Asphalt 8: Airborne": files: - /Packages/GAMELOFTSA.Asphalt8Airborne_0pp20fcewvvtj/LocalState: + "/Packages/GAMELOFTSA.Asphalt8Airborne_0pp20fcewvvtj/LocalState": tags: - save when: - os: windows - /Packages/GAMELOFTSA.Asphalt8Airborne_0pp20fcewvvtj/Settings: + "/Packages/GAMELOFTSA.Asphalt8Airborne_0pp20fcewvvtj/Settings": tags: - config when: - os: windows -'Asphalt 9: Legends': +"Asphalt 9: Legends": files: - /Gameloft/Asphalt 9 Legends/Documents: + "/Gameloft/Asphalt 9 Legends/Documents": tags: - save when: - - store: steam - /Gameloft/Asphalt 9 Legends/Temp: + - os: windows + store: steam + "/Gameloft/Asphalt 9 Legends/Temp": tags: - config when: - - store: steam - /Packages/A278AB0D.Asphalt9_h6adky7gbf63m/LocalState/Documents: + - os: windows + store: steam + "/Packages/A278AB0D.Asphalt9_h6adky7gbf63m/LocalState/Documents": tags: - save when: - os: windows store: microsoft - /Packages/A278AB0D.Asphalt9_h6adky7gbf63m/Settings: + "/Packages/A278AB0D.Asphalt9_h6adky7gbf63m/Settings": tags: - config when: @@ -39636,49 +39757,56 @@ Aspects of change: installDir: Asphalt 9 Legends: {} launch: - /Asphalt9_Steam_x64_rtl.exe: + "/Asphalt9_Steam_x64_rtl.exe": - when: - bit: 64 os: windows store: steam steam: id: 1815780 +Asphalt Xtreme: + files: + /WindowsApps/A278AB0D.AsphaltXtreme_1.7.3.8_x86__h6adky7gbf63m: + tags: + - config + when: + - os: windows Asphyxia: installDir: Asphyxia: {} launch: - /Asphyxia.app: + "/Asphyxia.app": - when: - os: mac store: steam - /Asphyxia.exe: + "/Asphyxia.exe": - when: - os: windows store: steam - /Asphyxia.sh: + "/Asphyxia.sh": - when: - os: linux store: steam steam: id: 386990 -'Aspire: Ina''s Tale': +"Aspire: Ina's Tale": installDir: - Aspire Ina's Tale: {} + "Aspire Ina's Tale": {} launch: - /Aspire Ina's Tale.exe: + "/Aspire Ina's Tale.exe": - when: - os: windows store: steam steam: id: 1720090 -Assassin's Creed: +"Assassin's Creed": files: - /Ubisoft/Assassin's Creed: + "/Ubisoft/Assassin's Creed": tags: - config when: - os: windows - /Ubisoft/Assassin's Creed/Saved Games: + "/Ubisoft/Assassin's Creed/Saved Games": tags: - save when: @@ -39688,25 +39816,25 @@ Assassin's Creed: installDir: Assassins Creed: {} launch: - /AssassinsCreed_Game.exe: + "/AssassinsCreed_Game.exe": - when: - store: steam steam: id: 15100 -'Assassin''s Creed Chronicles: China': +"Assassin's Creed Chronicles: China": files: - /savegames//1651: + "/savegames//1651": tags: - save when: - os: windows store: uplay - /savegames//1841: + "/savegames//1841": tags: - save when: - - store: uplay - /My Games/UnrealEngine3/ACCGame/ACCGame/Config: + - store: steam + "/My Games/UnrealEngine3/ACCGame/ACCGame/Config": tags: - config when: @@ -39714,29 +39842,29 @@ Assassin's Creed: installDir: Assassins Creed Chronicles China: {} launch: - /Binaries/Win32/ACCGame-Win32-Shipping.exe: - - arguments: '-uplay_steam_mode -seekfreeloadingpcconsole' + "/Binaries/Win32/ACCGame-Win32-Shipping.exe": + - arguments: "-uplay_steam_mode -seekfreeloadingpcconsole" when: - bit: 32 os: windows store: steam - workingDir: /Binaries/Win32 + workingDir: "/Binaries/Win32" steam: id: 354380 -'Assassin''s Creed Chronicles: India': +"Assassin's Creed Chronicles: India": files: - /savegames//1847: + "/savegames//1847": tags: - save when: - os: windows store: uplay - /savegames//1849: + "/savegames//1849": tags: - save when: - - store: uplay - /My Games/ACIndia/ACCGame/Config: + - store: steam + "/My Games/ACIndia/ACCGame/Config": tags: - config when: @@ -39744,29 +39872,29 @@ Assassin's Creed: installDir: Assassins Creed Chronicles India: {} launch: - /Binaries/Win32/ACCGame-Win32-Shipping.exe: - - arguments: '-uplay_steam_mode -seekfreeloadingpcconsole' + "/Binaries/Win32/ACCGame-Win32-Shipping.exe": + - arguments: "-uplay_steam_mode -seekfreeloadingpcconsole" when: - bit: 32 os: windows store: steam - workingDir: /Binaries/Win32 + workingDir: "/Binaries/Win32" steam: id: 359610 -'Assassin''s Creed Chronicles: Russia': +"Assassin's Creed Chronicles: Russia": files: - /savegames//1848: + "/savegames//1848": tags: - save when: - os: windows store: uplay - /savegames//1850: + "/savegames//1850": tags: - save when: - - store: uplay - /My Games/ACRussia/ACCGame/Config: + - store: steam + "/My Games/ACRussia/ACCGame/Config": tags: - config when: @@ -39774,162 +39902,162 @@ Assassin's Creed: installDir: Assassins Creed Chronicles Russia: {} launch: - /Binaries/Win32/ACCGame-Win32-Shipping.exe: - - arguments: '-orbit_debug -uplay_steam_mode -seekfreeloadingpcconsole' + "/Binaries/Win32/ACCGame-Win32-Shipping.exe": + - arguments: "-orbit_debug -uplay_steam_mode -seekfreeloadingpcconsole" when: - bit: 32 os: windows store: steam - workingDir: /Binaries/Win32 + workingDir: "/Binaries/Win32" steam: id: 359600 -Assassin's Creed II: +"Assassin's Creed II": files: - /savegames//4: + "/savegames//4": tags: - save when: - os: windows store: uplay - /Ubisoft/Assassin's Creed 2/Assassin2.ini: + "/Ubisoft/Assassin's Creed 2/Assassin2.ini": tags: - config when: - os: windows installDir: - Assassin's Creed 2: {} + "Assassin's Creed 2": {} launch: - /Assassin's Creed 2.app: + "/Assassin's Creed 2.app": - when: - os: mac store: steam - /AssassinsCreedIIGame.exe: - - arguments: '-uplay_steam_mode' + "/AssassinsCreedIIGame.exe": + - arguments: "-uplay_steam_mode" when: - os: windows store: steam steam: id: 33230 -Assassin's Creed III: +"Assassin's Creed III": files: - /savegames//54: + "/savegames//54": tags: - save when: - os: windows store: uplay - /Assassin's Creed III/Assassin3.ini: + "/Assassin's Creed III/Assassin3.ini": tags: - config when: - os: windows installDir: - Assassin's Creed 3: {} + "Assassin's Creed 3": {} launch: - /AC3SP.exe: - - arguments: '-uplay_steam_mode ' + "/AC3SP.exe": + - arguments: "-uplay_steam_mode " when: - os: windows store: steam steam: id: 208480 -Assassin's Creed III Remastered: +"Assassin's Creed III Remastered": files: - /savegames//5183: + "/savegames//5183": tags: - save when: - os: windows store: uplay - /savegames//5184: + "/savegames//5184": tags: - save when: - os: windows store: uplay - /Assassin's Creed III Remaster: + "/Assassin's Creed III Remaster": tags: - config when: - os: windows installDir: - Assassin's Creed III Remastered: {} + "Assassin's Creed III Remastered": {} steam: id: 911400 -'Assassin''s Creed III: Liberation Remastered': +"Assassin's Creed III: Liberation Remastered": files: - /Assassin's Creed Liberation HD/Assassin3.ini: + "/Assassin's Creed Liberation HD/Assassin3.ini": tags: - config when: - os: windows - /Assassin's Creed Liberation HD/Saves: + "/Assassin's Creed Liberation HD/Saves": tags: - save when: - os: windows installDir: - Assassin's Creed III Remastered: {} + "Assassin's Creed III Remastered": {} steam: id: 911400 -'Assassin''s Creed IV: Black Flag': +"Assassin's Creed IV: Black Flag": files: - /savegames//273: + "/savegames//273": tags: - save when: - store: uplay - /savegames//437: + "/savegames//437": tags: - save when: - - store: uplay - /Assassin's Creed IV Black Flag/*.ini: + - store: steam + "/Assassin's Creed IV Black Flag/*.ini": tags: - config when: - os: windows - /Assassin's Creed IV Black Flag/GFXSettings.*.xml: + "/Assassin's Creed IV Black Flag/GFXSettings.*.xml": tags: - config when: - os: windows installDir: - Assassin's Creed IV Black Flag: {} + "Assassin's Creed IV Black Flag": {} launch: - /AC4BFSP.exe: - - arguments: '-uplay_steam_mode' + "/AC4BFSP.exe": + - arguments: "-uplay_steam_mode" when: - os: windows store: steam steam: id: 242050 -Assassin's Creed Mirage: +"Assassin's Creed Mirage": files: - /Documents/Assassin's Creed Mirage: + "/Documents/Assassin's Creed Mirage": tags: - config when: - os: windows - /savegames//6100: + "/savegames//6100": tags: - save when: - os: windows store: uplay -Assassin's Creed Odyssey: +"Assassin's Creed Odyssey": files: - /savegames//5059: + "/savegames//5059": tags: - save when: - store: uplay - /savegames//5092: + "/savegames//5092": tags: - save when: - - store: uplay - /Assassin's Creed Odyssey/ACOdyssey.ini: + - store: steam + "/Assassin's Creed Odyssey/ACOdyssey.ini": tags: - config when: @@ -39943,25 +40071,25 @@ Assassin's Creed Odyssey: Assassins Creed Odyssey: {} steam: id: 812140 -Assassin's Creed Origins: +"Assassin's Creed Origins": files: - /savegames//3539: + "/savegames//3539": tags: - save when: - os: windows store: uplay - /savegames//4923: + "/savegames//4923": tags: - save when: - - store: uplay - /Assassin's Creed Origins/ACO.ini: + - store: steam + "/Assassin's Creed Origins/ACO.ini": tags: - config when: - os: windows - /Assassin's Creed Origins/ControlMappings.xml: + "/Assassin's Creed Origins/ControlMappings.xml": tags: - config when: @@ -39969,140 +40097,140 @@ Assassin's Creed Origins: installDir: Assassins Creed Origins: {} launch: - /ACOrigins.exe: - - arguments: '-uplay_steam_mode' + "/ACOrigins.exe": + - arguments: "-uplay_steam_mode" when: - bit: 64 os: windows store: steam steam: id: 582160 -Assassin's Creed Rogue: +"Assassin's Creed Rogue": files: - /savegames//1186: + "/savegames//1186": tags: - save when: - store: uplay - /savegames//1187: + "/savegames//1187": + tags: + - save + when: + - store: steam + "/savegames//895": tags: - save when: - store: uplay - /savegames//895: + "/savegames//934": tags: - save when: - - store: uplay - /savegames//934: - tags: - - save - when: - - store: uplay - /Assassin's Creed Rogue/AssassinRogue.ini: + - store: steam + "/Assassin's Creed Rogue/AssassinRogue.ini": tags: - config when: - os: windows installDir: - Assassin's Creed Rogue: {} + "Assassin's Creed Rogue": {} launch: - /ACC.exe: - - arguments: '-uplay_steam_mode' + "/ACC.exe": + - arguments: "-uplay_steam_mode" when: - bit: 64 os: windows store: steam steam: id: 311560 -Assassin's Creed Syndicate: +"Assassin's Creed Syndicate": files: - /savegames//1875: + "/savegames//1875": tags: - save when: - os: windows store: uplay - /savegames//1957: + "/savegames//1957": tags: - save when: - - store: uplay - /Assassin's Creed Syndicate/AC.ini: + - store: steam + "/Assassin's Creed Syndicate/AC.ini": tags: - config when: - os: windows installDir: - Assassin's Creed Syndicate: {} + "Assassin's Creed Syndicate": {} launch: - /ACS.exe: - - arguments: '-uplay_steam_mode' + "/ACS.exe": + - arguments: "-uplay_steam_mode" when: - bit: 64 os: windows store: steam steam: id: 368500 -Assassin's Creed Unity: +"Assassin's Creed Unity": files: - /savegames//720: + "/savegames//720": tags: - save when: - os: windows store: uplay - /savegames//857: + "/savegames//857": tags: - save when: - - store: uplay - /Assassin's Creed Unity/ACU.ini: + - store: steam + "/Assassin's Creed Unity/ACU.ini": tags: - config when: - os: windows installDir: - Assassin's Creed Unity: {} + "Assassin's Creed Unity": {} launch: - /ACU.exe: - - arguments: '-uplay_steam_mode' + "/ACU.exe": + - arguments: "-uplay_steam_mode" when: - bit: 64 os: windows store: steam steam: id: 289650 -Assassin's Creed Valhalla: +"Assassin's Creed Valhalla": files: - /savegames//13504: + "/savegames//13504": tags: - save when: - os: windows store: uplay - /savegames//7013: + "/savegames//7013": tags: - save when: - - store: uplay - /Assassin's Creed Valhalla/ACValhalla.ini: + - store: steam + "/Assassin's Creed Valhalla/ACValhalla.ini": tags: - config when: - os: windows installDir: - Assassin's Creed Valhalla: {} + "Assassin's Creed Valhalla": {} steam: id: 2208920 -'Assassin''s Creed: Brotherhood': +"Assassin's Creed: Brotherhood": files: - /Saved Games/Assassin's Creed Brotherhood: + "/Saved Games/Assassin's Creed Brotherhood": tags: - config when: - os: windows - /Saved Games/Assassin's Creed Brotherhood/SAVES: + "/Saved Games/Assassin's Creed Brotherhood/SAVES": tags: - save when: @@ -40110,102 +40238,102 @@ Assassin's Creed Valhalla: installDir: Assassins Creed Brotherhood: {} launch: - /ACBSP.exe: - - arguments: '-uplay_steam_mode' + "/ACBSP.exe": + - arguments: "-uplay_steam_mode" when: - os: windows store: steam - /Assassin's Creed Brotherhood.app: - - arguments: '' + "/Assassin's Creed Brotherhood.app": + - arguments: "" when: - os: mac store: steam steam: id: 48190 -'Assassin''s Creed: Freedom Cry': +"Assassin's Creed: Freedom Cry": files: - /savegames//664: + "/savegames//664": tags: - save when: - os: windows store: uplay - /Assassin's Creed Freedom Cry/Assassin4.ini: + "/Assassin's Creed Freedom Cry/Assassin4.ini": tags: - config when: - os: windows - /Assassin's Creed Freedom Cry/GFXSettings.*.xml: + "/Assassin's Creed Freedom Cry/GFXSettings.*.xml": tags: - config when: - os: windows installDir: - Assassin's Creed Freedom Cry: {} + "Assassin's Creed Freedom Cry": {} launch: - /ACFC.exe: - - arguments: '-uplay_steam_mode' + "/ACFC.exe": + - arguments: "-uplay_steam_mode" when: - os: windows store: steam steam: id: 277590 -'Assassin''s Creed: Liberation HD': +"Assassin's Creed: Liberation HD": files: - /savegames//625: + "/savegames//625": tags: - save when: - os: windows store: uplay - /savegames//632: + "/savegames//632": tags: - save when: - os: windows store: uplay - /Assassin's Creed Liberation HD/Assassin4.ini: + "/Assassin's Creed Liberation HD/Assassin4.ini": tags: - config when: - os: windows installDir: - Assassin's Creed Liberation: {} + "Assassin's Creed Liberation": {} launch: - /ac3lhd_32.exe: - - arguments: '-uplay_steam_mode' + "/ac3lhd_32.exe": + - arguments: "-uplay_steam_mode" when: - os: windows store: steam steam: id: 260210 -'Assassin''s Creed: Revelations': +"Assassin's Creed: Revelations": files: - /savegames//40: + "/savegames//40": tags: - save when: - os: windows store: uplay - /Assassin's Creed Revelations/ACRevelations.ini: + "/Assassin's Creed Revelations/ACRevelations.ini": tags: - config when: - os: windows - /Ubisoft Game Launcher/savegame_storage//40: + "/Ubisoft Game Launcher/savegame_storage//40": tags: - save when: - os: windows installDir: - Assassin's Creed Revelations: {} + "Assassin's Creed Revelations": {} launch: - /ACRMP.exe: - - arguments: '-uplay_steam_mode' + "/ACRMP.exe": + - arguments: "-uplay_steam_mode" when: - store: steam - /ACRSP.exe: - - arguments: '-uplay_steam_mode' + "/ACRSP.exe": + - arguments: "-uplay_steam_mode" when: - store: steam steam: @@ -40215,7 +40343,7 @@ Assassination Box: ASSASSINATION BOX: {} steam: id: 551550 -'Assassination Classroom VR: Balloon Challenge Time': +"Assassination Classroom VR: Balloon Challenge Time": installDir: AssassinationClassroomVR: {} steam: @@ -40224,7 +40352,7 @@ Assassination Station: installDir: ASSASSINATION STATION: {} launch: - /ASSASSINATION_STATION.exe: + "/ASSASSINATION_STATION.exe": - when: - os: windows store: steam @@ -40234,7 +40362,7 @@ Assassins vs Pirates: installDir: Assassins vs Pirates: {} launch: - /Assassins vs Pirates.exe: + "/Assassins vs Pirates.exe": - when: - os: windows store: steam @@ -40242,12 +40370,12 @@ Assassins vs Pirates: id: 425150 Assault Android Cactus: files: - /cactus_Data/game0a.sav: + "/cactus_Data/game0a.sav": tags: - save when: - os: windows - /userdata//250110/remote: + "/userdata//250110/remote": tags: - save when: @@ -40255,21 +40383,21 @@ Assault Android Cactus: installDir: Assault Android Cactus: {} launch: - /cactus.exe: + "/cactus.exe": - when: - os: windows store: steam - /cactus.x86: + "/cactus.x86": - when: - bit: 32 os: linux store: steam - /cactus.x86_64: + "/cactus.x86_64": - when: - bit: 64 os: linux store: steam - /cactus_osx.app: + "/cactus_osx.app": - when: - os: mac store: steam @@ -40283,11 +40411,11 @@ Assault Corps 2: installDir: Assault CorpsII: {} launch: - /AssaultCorps.app: + "/AssaultCorps.app": - when: - os: mac store: steam - /AssaultCorpsII.EXE: + "/AssaultCorpsII.EXE": - when: - os: windows store: steam @@ -40297,12 +40425,12 @@ Assault Gunners HD Edition: installDir: Assault Gunners: {} launch: - /game_x64.exe: + "/game_x64.exe": - when: - bit: 64 os: windows store: steam - /game_x86.exe: + "/game_x86.exe": - when: - bit: 32 os: windows @@ -40311,7 +40439,7 @@ Assault Gunners HD Edition: id: 751340 Assault Spy: files: - /ASSAULT_SPY/Saved/Config/WindowsNoEditor: + "/ASSAULT_SPY/Saved/Config/WindowsNoEditor": tags: - config when: @@ -40321,13 +40449,13 @@ Assault Spy: installDir: Assault Spy: {} launch: - /WindowsNoEditor/ASSAULT_SPY.exe: + "/WindowsNoEditor/ASSAULT_SPY.exe": - when: - os: windows store: steam steam: id: 767930 -'Assault Squad 2: Men of War Origins': +"Assault Squad 2: Men of War Origins": id: steamExtra: - 274440 @@ -40337,7 +40465,7 @@ Assault Suit Leynos: installDir: Assault Suit Leynos: {} launch: - /LEYNOS_x64_Steam.exe: + "/LEYNOS_x64_Steam.exe": - when: - os: windows store: steam @@ -40347,7 +40475,7 @@ Assault of the Robots: installDir: Assault of the Robots: {} launch: - /Assault of the Robots.exe: + "/Assault of the Robots.exe": - when: - os: windows store: steam @@ -40357,11 +40485,11 @@ Assault on Arnhem: installDir: Assault on Arnhem: {} launch: - /AssaultOnArnhem.app: + "/AssaultOnArnhem.app": - when: - os: mac store: steam - /AssaultOnArnhem.exe: + "/AssaultOnArnhem.exe": - when: - os: windows store: steam @@ -40371,7 +40499,7 @@ Assault on Hyperion Base: installDir: Assault on Hyperion Base: {} launch: - /TopDown.exe: + "/TopDown.exe": - when: - bit: 64 os: windows @@ -40382,7 +40510,7 @@ Assault on Metaltron: installDir: AssaultOnMetaltron: {} launch: - /Aom.exe: + "/Aom.exe": - when: - store: steam steam: @@ -40391,8 +40519,8 @@ Assault on the Necrospire: installDir: Assault on the Necrospire: {} launch: - /runtime/bin/javaw.exe: - - arguments: '-jar aotns.jar' + "/runtime/bin/javaw.exe": + - arguments: "-jar aotns.jar" when: - os: windows store: steam @@ -40400,12 +40528,12 @@ Assault on the Necrospire: id: 491660 AssaultCube: files: - /config: + "/config": tags: - config when: - os: windows - /.assaultcube/config: + "/.assaultcube/config": tags: - config when: @@ -40413,7 +40541,7 @@ AssaultCube: - os: linux Assemble with Care: files: - /AppData/LocalLow/ustwo games/AWC: + "/AppData/LocalLow/ustwo games/AWC": tags: - config - save @@ -40422,18 +40550,18 @@ Assemble with Care: installDir: Assemble with Care: {} launch: - /AWC.exe: - - arguments: '-screen-fullscreen 1' + "/AWC.exe": + - arguments: "-screen-fullscreen 1" when: - bit: 64 os: windows store: steam - - arguments: '-screen-fullscreen 0 -popupwindow' + - arguments: "-screen-fullscreen 0 -popupwindow" when: - bit: 64 os: windows store: steam - - arguments: '-screen-fullscreen 0' + - arguments: "-screen-fullscreen 0" when: - bit: 64 os: windows @@ -40444,7 +40572,7 @@ Assembly League: installDir: Assembly League: {} launch: - /Assembly League.exe: + "/Assembly League.exe": - when: - store: steam steam: @@ -40453,7 +40581,7 @@ Assembly Required: installDir: Assembly Required: {} launch: - /AssemblyRequired.exe: + "/AssemblyRequired.exe": - when: - os: windows store: steam @@ -40467,12 +40595,12 @@ Asset Flip Tycoon Simulator: id: 1205370 Assetto Corsa: files: - /Assetto Corsa: + "/Assetto Corsa": tags: - save when: - os: windows - /Assetto Corsa/cfg: + "/Assetto Corsa/cfg": tags: - config when: @@ -40480,7 +40608,7 @@ Assetto Corsa: installDir: assettocorsa: {} launch: - /AssettoCorsa.exe: + "/AssettoCorsa.exe": - when: - os: windows store: steam @@ -40488,12 +40616,12 @@ Assetto Corsa: id: 244210 Assetto Corsa Competizione: files: - /Assetto Corsa Competizione/Config: + "/Assetto Corsa Competizione/Config": tags: - config when: - os: windows - /Assetto Corsa Competizione/Savegames: + "/Assetto Corsa Competizione/Savegames": tags: - save when: @@ -40501,14 +40629,14 @@ Assetto Corsa Competizione: installDir: Assetto Corsa Competizione: {} launch: - /acc.exe: + "/acc.exe": - when: - store: steam steam: id: 805550 -'Astalon: Tears of the Earth': +"Astalon: Tears of the Earth": files: - /AppData/LocalLow/LABSWorks/Astalon/MySave: + "/AppData/LocalLow/LABSWorks/Astalon/MySave": tags: - save when: @@ -40523,15 +40651,15 @@ Assetto Corsa Competizione: installDir: Astalon Tears of the Earth: {} launch: - /Astalon.app: + "/Astalon.app": - when: - os: mac store: steam - /Astalon.exe: + "/Astalon.exe": - when: - os: windows store: steam - /Astalon.x86_64: + "/Astalon.x86_64": - when: - os: linux store: steam @@ -40542,12 +40670,12 @@ Astaria: id: 1033540 Astebreed: files: - /data/config.json: + "/data/config.json": tags: - config when: - os: windows - /data/system.dat: + "/data/system.dat": tags: - save when: @@ -40557,7 +40685,7 @@ Astebreed: installDir: Astebreed: {} launch: - /Astebreed.exe: + "/Astebreed.exe": - when: - bit: 32 os: windows @@ -40568,7 +40696,7 @@ Asteion Nights: installDir: Asteion Nights: {} launch: - /Asteion Nights.exe: + "/Asteion Nights.exe": - when: - os: windows store: steam @@ -40581,12 +40709,12 @@ Astellia: id: 1185560 Aster: files: - /config.txt: + "/config.txt": tags: - config when: - os: windows - /save1.txt: + "/save1.txt": tags: - save when: @@ -40594,7 +40722,7 @@ Aster: installDir: Aster: {} launch: - /Aster.exe: + "/Aster.exe": - when: - os: windows store: steam @@ -40604,43 +40732,44 @@ Asteria: installDir: Asteria: {} launch: - /Asteria.exe: + "/Asteria.exe": - when: - os: windows store: steam steam: id: 307130 -'Asterigos: Curse of the Stars': +"Asterigos: Curse of the Stars": files: - /Saved Games/AcmeGS/Asterigos/Saved/Config/WindowsNoEditor: + "/Saved Games/AcmeGS/Asterigos/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /Saved Games/AcmeGS/Asterigos/Saved/SaveGames: + "/Saved Games/AcmeGS/Asterigos/Saved/SaveGames": tags: - save when: - os: windows - /GOG.com/Galaxy/Applications/55527939497609229/Storage/Asterigos/Saved/Config/WindowsNoEditor: + "/GOG.com/Galaxy/Applications/55527939497609229/Storage/Asterigos/Saved/Config/WindowsNoEditor": tags: - config when: - - store: gog - /GOG.com/Galaxy/Applications/55527939497609229/Storage/Asterigos/Saved/SaveGames: + - os: windows + store: gog + "/GOG.com/Galaxy/Applications/55527939497609229/Storage/Asterigos/Saved/SaveGames": tags: - save when: - - store: gog + - os: windows + store: gog gog: id: 1125601806 id: gogExtra: - - 2125000806 - - 1493317175 - - 1381703489 - 1343537666 + - 1381703489 - 1487942939 + - 1493317175 - 2002301113 - 2125000806 steamExtra: @@ -40648,11 +40777,10 @@ Asteria: - 1969900 - 1970150 - 2119800 - - 1783160 installDir: Asterigos: {} launch: - /Asterigos.exe: + "/Asterigos.exe": - when: - bit: 64 os: windows @@ -40666,14 +40794,14 @@ Asterism: installDir: Asterism: {} launch: - /Asterism.exe: + "/Asterism.exe": - when: - store: steam steam: id: 1093830 Asterix & Obelix: files: - /OBELIXW.CFG: + "/OBELIXW.CFG": tags: - config when: @@ -40684,7 +40812,7 @@ Asterix & Obelix: - config Asterix & Obelix XXL: files: - /SAVE/AOXXL.sav: + "/SAVE/AOXXL.sav": tags: - config - save @@ -40692,12 +40820,12 @@ Asterix & Obelix XXL: - os: windows Asterix & Obelix XXL 2: files: - /_Save/Local Settings.ob: + "/_Save/Local Settings.ob": tags: - config when: - os: windows - /_Save/Profile.ob: + "/_Save/Profile.ob": tags: - save when: @@ -40707,24 +40835,24 @@ Asterix & Obelix XXL 2: installDir: Asterix XXL 2: {} launch: - /Bin/Mac_Master/xxl2.app: + "/Bin/Mac_Master/xxl2.app": - when: - os: mac store: steam - /oXXL2Game.exe: + "/oXXL2Game.exe": - when: - os: windows store: steam steam: id: 887060 -'Asterix & Obelix XXL 3: The Crystal Menhir': +"Asterix & Obelix XXL 3: The Crystal Menhir": files: - /XXL3/GameSave.ob: + "/XXL3/GameSave.ob": tags: - save when: - os: windows - /XXL3/Settings.ob: + "/XXL3/Settings.ob": tags: - config when: @@ -40739,19 +40867,19 @@ Asterix & Obelix XXL 2: installDir: Asterix & Obelix XXL 3 - The Crystal Menhir: {} launch: - /Asterix & Obelix XXL 3.app: + "/Asterix & Obelix XXL 3.app": - when: - os: mac store: steam - /oXXL3Game.exe: + "/oXXL3Game.exe": - when: - os: windows store: steam steam: id: 1109690 -'Asterix & Obelix XXL: Romastered': +"Asterix & Obelix XXL: Romastered": files: - /XXL1/GameSlot_*.ob: + "/XXL1/GameSlot_*.ob": tags: - save when: @@ -40761,30 +40889,30 @@ Asterix & Obelix XXL 2: installDir: Asterix & Obelix XXL 1: {} launch: - /AsterixObelixXXLRomastered.app: + "/AsterixObelixXXLRomastered.app": - when: - os: mac store: steam - /oXXL1Game.exe: + "/oXXL1Game.exe": - when: - os: windows store: steam steam: id: 1261520 -'Asterix & Obelix XXXL: The Ram from Hibernia': +"Asterix & Obelix XXXL: The Ram from Hibernia": gog: id: 1896503203 installDir: Asterix & Obelix XXXL The Ram from Hibernia: {} launch: - /AOA.exe: + "/AOA.exe": - when: - store: steam steam: id: 1894730 -'Asterix & Obelix: Slap Them All!': +"Asterix & Obelix: Slap Them All!": files: - /AppData/LocalLow/Microids/gameslots.000: + "/AppData/LocalLow/Microids/gameslots.000": tags: - save when: @@ -40794,11 +40922,11 @@ Asterix & Obelix XXL 2: installDir: Asterix & Obelix - Slap them All!: {} launch: - /AsterixSlapThemAll.app: + "/AsterixSlapThemAll.app": - when: - os: mac store: steam - /AsterixSlapThemAll.exe: + "/AsterixSlapThemAll.exe": - when: - os: windows store: steam @@ -40806,14 +40934,14 @@ Asterix & Obelix XXL 2: id: 1492310 Asterix at the Olympic Games: files: - /Atari/Asterix at the Olympic Games/AsterixJO.sav: + "/Atari/Asterix at the Olympic Games/AsterixJO.sav": tags: - save when: - os: windows -'Asterix: Mega Madness': +"Asterix: Mega Madness": files: - /ASTERIX.cfg: + "/ASTERIX.cfg": tags: - save when: @@ -40831,7 +40959,7 @@ Asteroid Blaster VR: id: 535380 Asteroid Bounty Hunter: files: - /AsteroidBountyHunter: + "/AsteroidBountyHunter": tags: - save when: @@ -40839,22 +40967,22 @@ Asteroid Bounty Hunter: installDir: Asteroid Bounty Hunter: {} launch: - /AsteroidBountyHunter.app/Contents/MacOS/AsteroidBountyHunter: + "/AsteroidBountyHunter.app/Contents/MacOS/AsteroidBountyHunter": - when: - os: mac store: steam - /AsteroidBountyHunter.exe: + "/AsteroidBountyHunter.exe": - when: - os: windows store: steam - /AsteroidBountyHunter.x86: - - arguments: '-force-opengl' + "/AsteroidBountyHunter.x86": + - arguments: "-force-opengl" when: - bit: 32 os: linux store: steam - /AsteroidBountyHunter.x86_64: - - arguments: '-force-opengl' + "/AsteroidBountyHunter.x86_64": + - arguments: "-force-opengl" when: - bit: 64 os: linux @@ -40865,20 +40993,20 @@ Asteroid Deathmatch: installDir: Asteroid Deathmatch: {} launch: - /AsteroidDeathmatch.app: + "/AsteroidDeathmatch.app": - when: - os: mac store: steam - /AsteroidDeathmatch.exe: + "/AsteroidDeathmatch.exe": - when: - os: windows store: steam - /AsteroidDeathmatch.x86: + "/AsteroidDeathmatch.x86": - when: - bit: 32 os: linux store: steam - /AsteroidDeathmatch.x86_64: + "/AsteroidDeathmatch.x86_64": - when: - bit: 64 os: linux @@ -40889,7 +41017,7 @@ Asteroid Defender!: installDir: Asteroid Defender: {} launch: - /ADR_EarlyAccessRC2.exe: + "/ADR_EarlyAccessRC2.exe": - when: - bit: 64 os: windows @@ -40900,17 +41028,23 @@ Asteroid Deflector XL: installDir: AsteroidDeflectorXL: {} launch: - /nw: + "/nw": - when: + - bit: 32 + os: linux + store: steam - bit: 64 os: linux store: steam - /nw.exe: + "/nw.exe": - when: - bit: 32 os: windows store: steam - /nwjs.app/Contents/MacOS/nwjs: + - bit: 64 + os: windows + store: steam + "/nwjs.app/Contents/MacOS/nwjs": - when: - os: mac store: steam @@ -40920,15 +41054,15 @@ Asteroid Fight: installDir: asteroidfight: {} launch: - /asteroidfight.exe: + "/asteroidfight.exe": - when: - os: windows store: steam - /run-asteroidfight: + "/run-asteroidfight": - when: - os: mac store: steam - /run-asteroidfight.sh: + "/run-asteroidfight.sh": - when: - os: linux store: steam @@ -40938,7 +41072,7 @@ Asteroid Girl: installDir: Asteroid Girl: {} launch: - /asteroidgirl.exe: + "/asteroidgirl.exe": - when: - bit: 64 os: windows @@ -40949,7 +41083,7 @@ Asteroid Hideout: installDir: Asteroid Hideout: {} launch: - /Asteroid Hideout.exe: + "/Asteroid Hideout.exe": - when: - bit: 64 os: windows @@ -40960,7 +41094,7 @@ Asteroid Hunter: installDir: Asteroid Hunter: {} launch: - /AsteroidHunter.exe: + "/AsteroidHunter.exe": - when: - os: windows store: steam @@ -40970,7 +41104,7 @@ Asteroid Invaders: installDir: Asteroid Invaders: {} launch: - /Asteroid Invaders.exe: + "/Asteroid Invaders.exe": - when: - bit: 64 os: windows @@ -40981,7 +41115,7 @@ Asteroid Navigation: installDir: Asteroid Navigation: {} launch: - /Asteroid Navigation.exe: + "/Asteroid Navigation.exe": - when: - os: windows store: steam @@ -40991,25 +41125,25 @@ Asteroid RKD: installDir: Asteroid RKD: {} launch: - /AsteroidRKD.exe: + "/AsteroidRKD.exe": - when: - os: windows store: steam steam: id: 871640 -'Asteroid Run: No Questions Asked': +"Asteroid Run: No Questions Asked": installDir: Asteroid Run No Questions Asked: {} launch: - /Asteroid Run No Questions Asked.app/Contents/MacOS/Asteroid Run No Questions Asked: + "/Asteroid Run No Questions Asked.app/Contents/MacOS/Asteroid Run No Questions Asked": - when: - os: mac store: steam - /AsteroidRunNoQuestionsAsked: + "/AsteroidRunNoQuestionsAsked": - when: - os: linux store: steam - /AsteroidRunNoQuestionsAsked.exe: + "/AsteroidRunNoQuestionsAsked.exe": - when: - os: windows store: steam @@ -41024,7 +41158,7 @@ Asteroid Wars: installDir: Asteroid Wars: {} launch: - /Asteroid wars.exe: + "/Asteroid wars.exe": - when: - os: windows store: steam @@ -41034,44 +41168,44 @@ Asteroidiga: installDir: Asteroidiga: {} launch: - /LinuxContent/asteroidiga: + "/LinuxContent/asteroidiga": - when: - bit: 64 os: linux store: steam - workingDir: /LinuxContent - /WindowsContent/asteroidiga.exe: + workingDir: "/LinuxContent" + "/WindowsContent/asteroidiga.exe": - when: - bit: 64 os: windows store: steam - workingDir: /WindowsContent + workingDir: "/WindowsContent" steam: id: 772110 Asteroids Millennium: installDir: AsteroidsMillennium: {} launch: - /bin/asteroidsmillennium: + "/bin/asteroidsmillennium": - when: - os: linux store: steam - workingDir: /bin - /bin/asteroidsmillennium.exe: + workingDir: "/bin" + "/bin/asteroidsmillennium.exe": - when: - os: windows store: steam - workingDir: /bin + workingDir: "/bin" steam: id: 669830 Asteroids Minesweeper: files: - /AsteroidsMinesweeper/conf.dat: + "/AsteroidsMinesweeper/conf.dat": tags: - config when: - os: windows - /AsteroidsMinesweeper/save.dat: + "/AsteroidsMinesweeper/save.dat": tags: - save when: @@ -41085,30 +41219,30 @@ Asteroids VR: AstroBlast VR: {} steam: id: 789480 -'Asteroids: Outpost': +"Asteroids: Outpost": installDir: Asteroids: {} launch: - /aslauncher.exe: + "/aslauncher.exe": - when: - os: windows store: steam steam: id: 330210 -'Asteroids: Recharged': +"Asteroids: Recharged": gog: id: 1651421166 installDir: Asteroids Recharged: {} launch: - /Asteroids Recharged.exe: + "/Asteroids Recharged.exe": - when: - store: steam - /asteroids_recharged.x86_64: + "/asteroids_recharged.x86_64": - when: - os: linux store: steam - /asteroidsrecharged.app: + "/asteroidsrecharged.app": - when: - os: mac store: steam @@ -41118,7 +41252,7 @@ AsteroidsHD: installDir: Asteroids HD: {} launch: - /AsteroidsHD.exe: + "/AsteroidsHD.exe": - when: - os: windows store: steam @@ -41128,20 +41262,20 @@ Astervoid 2000: installDir: Astervoid2000: {} launch: - /Astervoid2000.app: + "/Astervoid2000.app": - when: - os: mac store: steam - /Astervoid2000.exe: + "/Astervoid2000.exe": - when: - os: windows store: steam - /Astervoid2000.x86: + "/Astervoid2000.x86": - when: - bit: 32 os: linux store: steam - /Astervoid2000.x86_64: + "/Astervoid2000.x86_64": - when: - bit: 64 os: linux @@ -41152,7 +41286,7 @@ Astonia Reborn: installDir: Astonia Reborn: {} launch: - /moac.exe: + "/moac.exe": - when: - os: windows store: steam @@ -41162,17 +41296,17 @@ Astonishing Baseball 2019: installDir: Astonishing Baseball 2019: {} launch: - /ab19.exe: + "/ab19.exe": - when: - os: windows store: steam steam: id: 1092190 -'Astoria: The Holders of Power Saga': +"Astoria: The Holders of Power Saga": installDir: Astoria The Holders of Power Saga: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -41182,7 +41316,7 @@ Astra Exodus: installDir: Astra Exodus: {} launch: - /Launcher.exe: + "/Launcher.exe": - when: - os: windows store: steam @@ -41192,19 +41326,19 @@ Astraeus: installDir: Astraeus: {} launch: - /Astraeus_NonVR.exe: + "/Astraeus_NonVR.exe": - when: - store: steam steam: id: 863280 Astral Ascent: files: - /Saved Games/Astral Ascent//aa_game.sav: + "/Saved Games/Astral Ascent//aa_game.sav": tags: - save when: - os: windows - /Saved Games/Astral Ascent//aa_options.sav: + "/Saved Games/Astral Ascent//aa_options.sav": tags: - config when: @@ -41214,7 +41348,7 @@ Astral Ascent: installDir: Astral Ascent: {} launch: - /Astral Ascent.exe: + "/Astral Ascent.exe": - when: - os: windows store: steam @@ -41227,20 +41361,23 @@ Astral Breakers: installDir: AstralBreakers: {} launch: - /astral-breakers.app: + "/astral-breakers.app": - when: - os: mac store: steam - /astral-breakers.x86: + "/astral-breakers.x86": - when: - os: linux store: steam - /astral-breakers32.exe: + - bit: 32 + os: linux + store: steam + "/astral-breakers32.exe": - when: - bit: 32 os: windows store: steam - /astral-breakers64.exe: + "/astral-breakers64.exe": - when: - bit: 64 os: windows @@ -41256,15 +41393,15 @@ Astral Gun: installDir: Astral Gun: {} launch: - /AstralGun.app: + "/AstralGun.app": - when: - os: mac store: steam - /AstralGun.exe: + "/AstralGun.exe": - when: - os: windows store: steam - /AstralGun.x86: + "/AstralGun.x86": - when: - os: linux store: steam @@ -41274,7 +41411,7 @@ Astral Gunners: installDir: Astral Gunners: {} launch: - /astralgunners.exe: + "/astralgunners.exe": - when: - os: windows store: steam @@ -41282,7 +41419,7 @@ Astral Gunners: id: 893900 Astral Heroes: files: - /game.ctl: + "/game.ctl": tags: - config when: @@ -41290,7 +41427,7 @@ Astral Heroes: installDir: Astral Heroes: {} launch: - /AstralHeroes.exe: + "/AstralHeroes.exe": - when: - os: windows store: steam @@ -41298,12 +41435,12 @@ Astral Heroes: id: 488910 Astral Shipwright: files: - /.config/Epic/AstralShipwright/Saved: + "/.config/Epic/AstralShipwright/Saved": tags: - save when: - os: linux - /AstralShipwright/Saved: + "/AstralShipwright/Saved": tags: - save when: @@ -41311,12 +41448,12 @@ Astral Shipwright: installDir: Astral Shipwright: {} launch: - /AstralShipwright.exe: + "/AstralShipwright.exe": - when: - bit: 64 os: windows store: steam - /AstralShipwright.sh: + "/AstralShipwright.sh": - when: - bit: 64 os: linux @@ -41327,7 +41464,7 @@ Astral Terra: installDir: Astral Terra: {} launch: - /Astral Terra.exe: + "/Astral Terra.exe": - when: - os: windows store: steam @@ -41337,25 +41474,25 @@ Astral Traveler: installDir: Astral Traveler: {} launch: - /AstralTraveler.app/Contents/MacOS/AstralTraveler: + "/AstralTraveler.app/Contents/MacOS/AstralTraveler": - when: - os: mac store: steam - /AstralTraveler.exe: + "/AstralTraveler.exe": - when: - os: windows store: steam - /AstralTraveler.x86: + "/AstralTraveler.x86": - when: - os: linux store: steam steam: id: 618630 -'Astralojia: Episode 1': +"Astralojia: Episode 1": installDir: Astralojia Episode 1: {} launch: - /Astralojia Episode 1.exe: + "/Astralojia Episode 1.exe": - when: - os: windows store: steam @@ -41363,7 +41500,7 @@ Astral Traveler: id: 1090420 Astray: files: - /Astray: + "/Astray": tags: - save when: @@ -41371,14 +41508,14 @@ Astray: installDir: Astray: {} launch: - /Astray.exe: + "/Astray.exe": - when: - store: steam steam: id: 329200 -'Astrea: Six-Sided Oracles': +"Astrea: Six-Sided Oracles": files: - /AppData/LocalLow/Little Leo Games/Astrea: + "/AppData/LocalLow/Little Leo Games/Astrea": tags: - save when: @@ -41394,16 +41531,16 @@ Astrela Starlight: installDir: AstrelaStarlight: {} launch: - /ASL.exe: + "/ASL.exe": - when: - bit: 64 os: windows store: steam - /Astrela Starlight.app/Contents/MacOS/ASL: + "/Astrela Starlight.app/Contents/MacOS/ASL": - when: - os: mac store: steam - /asllx.x86_64: + "/asllx.x86_64": - when: - bit: 64 os: linux @@ -41417,7 +41554,7 @@ Astria Ascending: - save when: - os: windows - /Packages/PlugInDigital.AstriaAscending_9e3ank8rmgj0t/SystemAppData/wgs: + "/Packages/PlugInDigital.AstriaAscending_9e3ank8rmgj0t/SystemAppData/wgs": tags: - save when: @@ -41428,7 +41565,7 @@ Astria Ascending: installDir: Astria Ascending: {} launch: - /Astria Ascending.exe: + "/Astria Ascending.exe": - when: - store: steam steam: @@ -41437,26 +41574,26 @@ Astro Bouncer: installDir: Astro Bouncer: {} launch: - /Astro Bouncer.app/Contents/MacOS/Astro Bouncer: + "/Astro Bouncer.app/Contents/MacOS/Astro Bouncer": - when: - os: mac store: steam - /Astro Bouncer.exe: + "/Astro Bouncer.exe": - when: - os: windows store: steam - /Astro Bouncer.x86: + "/Astro Bouncer.x86": - when: - os: linux store: steam steam: id: 884770 -'Astro Boy: Edge of Time': +"Astro Boy: Edge of Time": installDir: Astro Boy Edge of Time: {} launch: - /Astro Boy Edge of time.exe: - - arguments: '-STEAM' + "/Astro Boy Edge of time.exe": + - arguments: "-STEAM" when: - os: windows store: steam @@ -41464,7 +41601,7 @@ Astro Bouncer: id: 542560 Astro Colony: files: - /AstroColony/Saved: + "/AstroColony/Saved": tags: - config when: @@ -41472,7 +41609,7 @@ Astro Colony: installDir: Astro Colony: {} launch: - /AstroColony.exe: + "/AstroColony.exe": - when: - os: windows store: steam @@ -41482,24 +41619,24 @@ Astro Duel: installDir: Astro Duel: {} launch: - /Astro Duel.app: + "/Astro Duel.app": - when: - os: mac store: steam - /Astro Duel.app/contents/MacOS/Astro Duel: - - arguments: '-windowed' + "/Astro Duel.app/contents/MacOS/Astro Duel": + - arguments: "-windowed" when: - os: mac store: steam - /AstroDuel.exe: + "/AstroDuel.exe": - when: - os: windows store: steam - - arguments: '-windowed' + - arguments: "-windowed" when: - os: windows store: steam - - arguments: '-noborder' + - arguments: "-noborder" when: - os: windows store: steam @@ -41509,15 +41646,15 @@ Astro Emporia: installDir: Astro Emporia: {} launch: - /Astro Emporia.app: + "/Astro Emporia.app": - when: - os: mac store: steam - /Astro Emporia.exe: + "/Astro Emporia.exe": - when: - os: windows store: steam - /Astro Emporia.x86_64: + "/Astro Emporia.x86_64": - when: - os: linux store: steam @@ -41527,17 +41664,17 @@ Astro Joust: installDir: AstroJoust: {} launch: - /AstroJoust.exe: + "/AstroJoust.exe": - when: - os: windows store: steam steam: id: 762670 -'Astro Lords: Oort Cloud': +"Astro Lords: Oort Cloud": installDir: Astro Lords Oort Cloud: {} launch: - /SteamLauncher.exe: + "/SteamLauncher.exe": - when: - os: windows store: steam @@ -41547,7 +41684,7 @@ Astro Tripper: installDir: AstroTripper: {} launch: - /AstroTripper.exe: + "/AstroTripper.exe": - when: - store: steam steam: @@ -41556,17 +41693,17 @@ Astro4x: installDir: Astro4x: {} launch: - /AstroChess.exe: + "/AstroChess.exe": - when: - os: windows store: steam steam: id: 1070980 -'Astro: The Beginning': +"Astro: The Beginning": installDir: Astro: {} launch: - /Astro.exe: + "/Astro.exe": - when: - os: windows store: steam @@ -41576,7 +41713,7 @@ AstroGenesis: installDir: AstroGenesis: {} launch: - /Astrogenesis.exe: + "/Astrogenesis.exe": - when: - os: windows store: steam @@ -41586,11 +41723,11 @@ AstroKill: installDir: AstroKill: {} launch: - /AstroKill.exe: + "/AstroKill.exe": - when: - os: windows store: steam - /AstroKill.sh: + "/AstroKill.sh": - when: - os: linux store: steam @@ -41601,7 +41738,7 @@ AstroMiner: id: 1091860 AstroPop: files: - /users: + "/users": tags: - save when: @@ -41609,7 +41746,7 @@ AstroPop: installDir: AstroPop Deluxe: {} launch: - /WinAp.exe: + "/WinAp.exe": - when: - store: steam steam: @@ -41618,7 +41755,7 @@ AstroShift: installDir: AstroShift: {} launch: - /AstroShift.exe: + "/AstroShift.exe": - when: - os: windows store: steam @@ -41628,15 +41765,15 @@ AstroViking: installDir: AstroViking: {} launch: - /AstroViking_Linux/AstroViking.x86: + "/AstroViking_Linux/AstroViking.x86": - when: - os: linux store: steam - /AstroViking_Mac/AstroViking.app: + "/AstroViking_Mac/AstroViking.app": - when: - os: mac store: steam - /AstroViking_Windows/AstroViking.exe: + "/AstroViking_Windows/AstroViking.exe": - when: - os: windows store: steam @@ -41647,7 +41784,7 @@ Astrobase Command: id: 395370 Astrobatics: files: - /RESOURCE/Astrobatics.plt: + "/RESOURCE/Astrobatics.plt": tags: - save when: @@ -41667,7 +41804,7 @@ Astrodogs: installDir: Astro Dogs: {} launch: - /astrodogs.exe: + "/astrodogs.exe": - when: - os: windows store: steam @@ -41677,11 +41814,11 @@ Astroe: installDir: Astroe: {} launch: - /Astroe: + "/Astroe": - when: - os: linux store: steam - /Astroe.exe: + "/Astroe.exe": - when: - os: windows store: steam @@ -41691,11 +41828,11 @@ Astroflux: installDir: Astroflux: {} launch: - /Astroflux.app: + "/Astroflux.app": - when: - os: mac store: steam - /Astroflux.exe: + "/Astroflux.exe": - when: - os: windows store: steam @@ -41705,17 +41842,17 @@ Astrog: installDir: Astrog: {} launch: - /Platforms/Linux32/launcher: + "/Platforms/Linux32/launcher": - when: - bit: 32 os: linux store: steam - /Platforms/Linux64/launcher: + "/Platforms/Linux64/launcher": - when: - bit: 64 os: linux store: steam - /Platforms/Windows/launcher.exe: + "/Platforms/Windows/launcher.exe": - when: - os: windows store: steam @@ -41725,22 +41862,22 @@ Astrohazard Solutions Ltd.: installDir: Astrohazard Solutions Ltd: {} launch: - /astrohazard.exe: + "/astrohazard.exe": - when: - bit: 64 os: windows store: steam steam: id: 751260 -'Astroloco: Worst Contact': +"Astroloco: Worst Contact": installDir: Astroloco1: {} launch: - /AstroLoco1.exe: + "/AstroLoco1.exe": - when: - os: windows store: steam - /winsetup.exe: + "/winsetup.exe": - when: - os: windows store: steam @@ -41748,12 +41885,12 @@ Astrohazard Solutions Ltd.: id: 357490 Astrologaster: files: - /Save/AstrologasterSaveData.bin: + "/Save/AstrologasterSaveData.bin": tags: - save when: - os: windows - /Save/AstrologasterSettingData.bin: + "/Save/AstrologasterSettingData.bin": tags: - config when: @@ -41768,11 +41905,11 @@ Astrologaster: installDir: Astrologaster: {} launch: - /Astrologaster.app: + "/Astrologaster.app": - when: - os: mac store: steam - /Astrologaster.exe: + "/Astrologaster.exe": - when: - os: windows store: steam @@ -41782,17 +41919,17 @@ AstronTycoon: installDir: AstronTycoon: {} launch: - /AstronTycoon.exe: + "/AstronTycoon.exe": - when: - os: windows store: steam steam: id: 851790 -'AstronTycoon2: Ritual': +"AstronTycoon2: Ritual": installDir: AstronTycoon2_Ritual: {} launch: - /AstronTycoon2_Ritual.exe: + "/AstronTycoon2_Ritual.exe": - when: - store: steam steam: @@ -41801,17 +41938,17 @@ Astronaut Simulator: installDir: AstronautSimulator: {} launch: - /AstronautSimulator.exe: + "/AstronautSimulator.exe": - when: - os: windows store: steam steam: id: 356770 -'Astronaut: The Moon Eclipse': +"Astronaut: The Moon Eclipse": installDir: Astronaut: {} launch: - /Astronaut.exe: + "/Astronaut.exe": - when: - os: windows store: steam @@ -41819,23 +41956,25 @@ Astronaut Simulator: id: 940640 Astroneer: files: - /Astro/Saved/Config/WindowsNoEditor: + "/Astro/Saved/Config/WindowsNoEditor": tags: - config when: - - store: steam - /Astro/Saved/SaveGames: + - os: windows + store: steam + "/Astro/Saved/SaveGames": tags: - save when: - - store: steam - /Packages/SystemEraSoftworks.29415440E1269_ftk5pbg2rayv2/LocalState/Astro/Saved/Config/UWP: + - os: windows + store: steam + "/Packages/SystemEraSoftworks.29415440E1269_ftk5pbg2rayv2/LocalState/Astro/Saved/Config/UWP": tags: - config when: - os: windows store: microsoft - /Packages/SystemEraSoftworks.29415440E1269_ftk5pbg2rayv2/SystemAppData/wgs: + "/Packages/SystemEraSoftworks.29415440E1269_ftk5pbg2rayv2/SystemAppData/wgs": tags: - save when: @@ -41844,10 +41983,10 @@ Astroneer: installDir: ASTRONEER: {} launch: - /Astro.exe: + "/Astro.exe": - when: - store: steam - - arguments: '-Windowed' + - arguments: "-Windowed" when: - store: steam steam: @@ -41856,7 +41995,7 @@ AstronjumpBaby: installDir: AstronjumpBaby: {} launch: - /AstronjumpBaby.exe: + "/AstronjumpBaby.exe": - when: - os: windows store: steam @@ -41872,12 +42011,12 @@ Astroplatformer: id: 1131000 Astrox Imperium: files: - /MOD/game_config.txt: + "/MOD/game_config.txt": tags: - config when: - os: windows - /MOD/saves: + "/MOD/saves": tags: - save when: @@ -41887,22 +42026,22 @@ Astrox Imperium: installDir: Astrox Imperium: {} launch: - /Astrox Imperium.exe: + "/Astrox Imperium.exe": - when: - bit: 64 os: windows store: steam steam: id: 954870 -'Astrox: Hostile Space Excavation': +"Astrox: Hostile Space Excavation": installDir: Astrox: {} launch: - /astrox.app: + "/astrox.app": - when: - os: mac store: steam - /astrox.exe: + "/astrox.exe": - when: - os: windows store: steam @@ -41914,20 +42053,20 @@ Asura: installDir: Asura: {} launch: - /Asura.app: + "/Asura.app": - when: - os: mac store: steam - /Asura.exe: + "/Asura.exe": - when: - os: windows store: steam - /Asura.x86: + "/Asura.x86": - when: - bit: 32 os: linux store: steam - /Asura.x86_64: + "/Asura.x86_64": - when: - bit: 64 os: linux @@ -41938,7 +42077,7 @@ Asura Valley: installDir: Asura Valley: {} launch: - /Asura_Valley.exe: + "/Asura_Valley.exe": - when: - os: windows store: steam @@ -41947,20 +42086,20 @@ Asura Valley: Asura the Striker: steam: id: 2389830 -'Asylamba: Influence': +"Asylamba: Influence": installDir: Influence: {} launch: - /influence: + "/influence": - when: - bit: 64 os: linux store: steam - /influence.app: + "/influence.app": - when: - os: mac store: steam - /influence.exe: + "/influence.exe": - when: - os: windows store: steam @@ -41978,7 +42117,7 @@ Asylum of the Dead: installDir: Asylum of the Dead: {} launch: - /Asylum of the Dead.exe: + "/Asylum of the Dead.exe": - when: - os: windows store: steam @@ -41991,7 +42130,7 @@ Asyula 方舟之链: installDir: Asyula: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -42001,21 +42140,21 @@ At Dead Of Night: installDir: AtDeadOfNight: {} launch: - /AtDeadOfNight.app: + "/AtDeadOfNight.app": - when: - os: mac store: steam - /AtDeadOfNight.exe: + "/AtDeadOfNight.exe": - when: - os: windows store: steam steam: id: 1450830 -At Eve's Wake: +"At Eve's Wake": installDir: - At Eve's Wake: {} + "At Eve's Wake": {} launch: - /At Eve's Wake.exe: + "/At Eve's Wake.exe": - when: - bit: 64 os: windows @@ -42026,7 +42165,7 @@ At Home: installDir: At Home: {} launch: - /AtHome.exe: + "/AtHome.exe": - when: - os: windows store: steam @@ -42041,10 +42180,10 @@ At Home Alone II: installDir: At Home Alone II: {} launch: - /Del.cmd: + "/Del.cmd": - when: - store: steam - /tools.txt: + "/tools.txt": - when: - store: steam steam: @@ -42053,20 +42192,20 @@ At Sundown: installDir: AT SUNDOWN: {} launch: - /AT SUNDOWN.app/Contents/MacOS/AT SUNDOWN: + "/AT SUNDOWN.app/Contents/MacOS/AT SUNDOWN": - when: - os: mac store: steam - /AT SUNDOWN.exe: + "/AT SUNDOWN.exe": - when: - os: windows store: steam - /AT SUNDOWN.x86: + "/AT SUNDOWN.x86": - when: - bit: 32 os: linux store: steam - /AT SUNDOWN.x86_64: + "/AT SUNDOWN.x86_64": - when: - bit: 64 os: linux @@ -42077,7 +42216,7 @@ At the Mountains of Madness: installDir: At the Mountains of Madness: {} launch: - /mountainsofmadness2.exe: + "/mountainsofmadness2.exe": - when: - os: windows store: steam @@ -42087,12 +42226,15 @@ Atajrubah: installDir: Atajrubah: {} launch: - /Atajrubah.exe: + "/Atajrubah.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam - /Binaries/Linux/Atajrubah: + "/Binaries/Linux/Atajrubah": - when: - os: linux store: steam @@ -42102,15 +42244,15 @@ Ataque Marino: installDir: AtaqueMarino: {} launch: - /AtaqueMarino.exe: + "/AtaqueMarino.exe": - when: - os: windows store: steam steam: id: 998780 -'Atari 50: The Anniversary Celebration': +"Atari 50: The Anniversary Celebration": files: - /Atari 50: + "/Atari 50": tags: - config - save @@ -42124,7 +42266,7 @@ Ataque Marino: id: 1919470 Atari Mania: files: - /AppData/LocalLow/Atari/Atari Mania: + "/AppData/LocalLow/Atari/Atari Mania": tags: - save when: @@ -42132,11 +42274,11 @@ Atari Mania: installDir: Atari Mania: {} launch: - /AtariMania.exe: + "/AtariMania.exe": - when: - os: windows store: steam - /AtariMania.x86_64: + "/AtariMania.x86_64": - when: - os: linux store: steam @@ -42148,7 +42290,7 @@ Atari Mania: id: 1911800 Atari Vault: files: - /.config/unity3d/Atari+/Atari Vault: + "/.config/unity3d/Atari+/Atari Vault": tags: - config - save @@ -42157,79 +42299,80 @@ Atari Vault: installDir: Atari Vault: {} launch: - /AtariVault: + "/AtariVault": - when: - os: linux store: steam - /AtariVault.app: + "/AtariVault.app": - when: - os: mac store: steam - /AtariVault.exe: + "/AtariVault.exe": - when: - os: windows store: steam steam: id: 400020 -'Atari: 80 Classic Games in One!': +"Atari: 80 Classic Games in One!": installDir: Atari 80 Classic Games: {} launch: - /Menu.exe: + "/Menu.exe": - when: - store: steam steam: id: 2790 -'Atelier Ayesha: The Alchemist of Dusk DX': +"Atelier Ayesha: The Alchemist of Dusk DX": installDir: Atelier Ayesha DX: {} launch: - /Atelier_AyeshaLauncher.exe: + "/Atelier_AyeshaLauncher.exe": - when: - bit: 64 os: windows store: steam steam: id: 1152300 -'Atelier Escha & Logy: Alchemists of the Dusk Sky DX': +"Atelier Escha & Logy: Alchemists of the Dusk Sky DX": installDir: Atelier Escha and Logy DX: {} launch: - /Atelier_Escha_and_LogyLauncher.exe: + "/Atelier_Escha_and_LogyLauncher.exe": - when: - bit: 64 os: windows store: steam steam: id: 1152310 -'Atelier Firis: The Alchemist and the Mysterious Journey': +"Atelier Firis: The Alchemist and the Mysterious Journey": files: - /KoeiTecmo/A18: + "/KoeiTecmo/A18": tags: - config when: - os: windows - /KoeiTecmo/A18/SAVEDATA: + "/KoeiTecmo/A18/SAVEDATA": tags: - save when: - - store: steam + - os: windows + store: steam installDir: Atelier Firis The Alchemist and the Mysterious Journey: {} launch: - /A18Config.exe: + "/A18Config.exe": - when: - store: steam steam: id: 527290 -'Atelier Firis: The Alchemist and the Mysterious Journey DX': +"Atelier Firis: The Alchemist and the Mysterious Journey DX": files: - /KoeiTecmo/Atelier Firis DX: + "/KoeiTecmo/Atelier Firis DX": tags: - config when: - os: windows - /KoeiTecmo/Atelier Firis DX/SAVEDATA: + "/KoeiTecmo/Atelier Firis DX/SAVEDATA": tags: - save when: @@ -42237,19 +42380,19 @@ Atari Vault: installDir: Atelier Firis DX: {} launch: - /Atelier_Firis_DX_Launcher.exe: + "/Atelier_Firis_DX_Launcher.exe": - when: - store: steam steam: id: 1502980 -'Atelier Lulua: The Scion of Arland': +"Atelier Lulua: The Scion of Arland": files: - /KoeiTecmo/Atelier Lulua: + "/KoeiTecmo/Atelier Lulua": tags: - config when: - os: windows - /KoeiTecmo/Atelier Lulua/GameData00: + "/KoeiTecmo/Atelier Lulua/GameData00": tags: - save when: @@ -42257,19 +42400,19 @@ Atari Vault: installDir: Atelier Lulua: {} launch: - /Atelier_Lulua.exe: + "/Atelier_Lulua.exe": - when: - store: steam steam: id: 1045620 -'Atelier Lydie & Suelle: The Alchemists and the Mysterious Paintings': +"Atelier Lydie & Suelle: The Alchemists and the Mysterious Paintings": files: - /KoeiTecmo/Atelier Lydie and Suelle: + "/KoeiTecmo/Atelier Lydie and Suelle": tags: - config when: - os: windows - /KoeiTecmo/Atelier Lydie and Suelle/SAVEDATA: + "/KoeiTecmo/Atelier Lydie and Suelle/SAVEDATA": tags: - save when: @@ -42280,20 +42423,20 @@ Atari Vault: installDir: Atelier Lydie and Suelle The Alchemists and the Mysterious Paintings: {} launch: - /Atelier_Lydie_and_Suelle_Launcher.exe: + "/Atelier_Lydie_and_Suelle_Launcher.exe": - when: - os: windows store: steam steam: id: 756590 -'Atelier Lydie & Suelle: The Alchemists and the Mysterious Paintings DX': +"Atelier Lydie & Suelle: The Alchemists and the Mysterious Paintings DX": files: - /KoeiTecmo/Atelier Lydie and Suelle DX: + "/KoeiTecmo/Atelier Lydie and Suelle DX": tags: - config when: - os: windows - /KoeiTecmo/Atelier Lydie and Suelle DX/SAVEDATA: + "/KoeiTecmo/Atelier Lydie and Suelle DX/SAVEDATA": tags: - save when: @@ -42301,19 +42444,19 @@ Atari Vault: installDir: Atelier Lydie and Suelle DX: {} launch: - /Atelier_Lydie_and_Suelle_DX_Launcher.exe: + "/Atelier_Lydie_and_Suelle_DX_Launcher.exe": - when: - store: steam steam: id: 1502990 -'Atelier Marie Remake: The Alchemist of Salburg': +"Atelier Marie Remake: The Alchemist of Salburg": files: - /KoeiTecmo/Atelier Marie Remake: + "/KoeiTecmo/Atelier Marie Remake": tags: - save when: - os: windows - /KoeiTecmo/Atelier Marie Remake/Setting.ini: + "/KoeiTecmo/Atelier Marie Remake/Setting.ini": tags: - config when: @@ -42321,19 +42464,19 @@ Atari Vault: installDir: Atelier Marie Remake: {} launch: - /Atelier_Marie_Remake.exe: + "/Atelier_Marie_Remake.exe": - when: - store: steam steam: id: 2138090 -'Atelier Meruru: The Apprentice of Arland DX': +"Atelier Meruru: The Apprentice of Arland DX": files: - /ArlandDX_Settings.ini: + "/ArlandDX_Settings.ini": tags: - config when: - os: windows - /userdata//936190/remote/SAVEDATA: + "/userdata//936190/remote/SAVEDATA": tags: - save when: @@ -42342,20 +42485,20 @@ Atari Vault: installDir: Atelier Meruru ~The Apprentice of Arland~ DX: {} launch: - /ArlandDXLauncher.exe: + "/ArlandDXLauncher.exe": - when: - os: windows store: steam steam: id: 936190 -'Atelier Rorona: The Alchemist of Arland DX': +"Atelier Rorona: The Alchemist of Arland DX": files: - /ArlandDX_Settings.ini: + "/ArlandDX_Settings.ini": tags: - config when: - os: windows - /userdata//936160/remote/SAVEDATA: + "/userdata//936160/remote/SAVEDATA": tags: - save when: @@ -42364,20 +42507,20 @@ Atari Vault: installDir: Atelier Rorona ~The Alchemist of Arland~ DX: {} launch: - /ArlandDXLauncher.exe: + "/ArlandDXLauncher.exe": - when: - os: windows store: steam steam: id: 936160 -'Atelier Ryza 2: Lost Legends & the Secret Fairy': +"Atelier Ryza 2: Lost Legends & the Secret Fairy": files: - /KoeiTecmo/Atelier Ryza 2: + "/KoeiTecmo/Atelier Ryza 2": tags: - save when: - os: windows - /KoeiTecmo/Atelier Ryza 2/Setting.ini: + "/KoeiTecmo/Atelier Ryza 2/Setting.ini": tags: - config when: @@ -42396,19 +42539,19 @@ Atari Vault: installDir: Atelier Ryza 2: {} launch: - /Atelier_Ryza_2.exe: + "/Atelier_Ryza_2.exe": - when: - store: steam steam: id: 1257290 -'Atelier Ryza 3: Alchemist of the End & the Secret Key': +"Atelier Ryza 3: Alchemist of the End & the Secret Key": files: - /KoeiTecmo/Atelier Ryza 3: + "/KoeiTecmo/Atelier Ryza 3": tags: - save when: - os: windows - /KoeiTecmo/Atelier Ryza 3/Setting.ini: + "/KoeiTecmo/Atelier Ryza 3/Setting.ini": tags: - config when: @@ -42416,14 +42559,14 @@ Atari Vault: installDir: Atelier Ryza 3: {} launch: - /Atelier_Ryza_3.exe: + "/Atelier_Ryza_3.exe": - when: - store: steam steam: id: 1999770 -'Atelier Ryza: Ever Darkness & the Secret Hideout': +"Atelier Ryza: Ever Darkness & the Secret Hideout": files: - /KoeiTecmo/Atelier Ryza: + "/KoeiTecmo/Atelier Ryza": tags: - config - save @@ -42432,30 +42575,30 @@ Atari Vault: installDir: Atelier Ryza: {} launch: - /Atelier_Ryza_Launcher.exe: + "/Atelier_Ryza_Launcher.exe": - when: - store: steam steam: id: 1121560 -'Atelier Shallie: Alchemists of the Dusk Sea DX': +"Atelier Shallie: Alchemists of the Dusk Sea DX": installDir: Atelier Shallie DX: {} launch: - /Atelier_ShallieLauncher.exe: + "/Atelier_ShallieLauncher.exe": - when: - bit: 64 os: windows store: steam steam: id: 1152320 -'Atelier Sophie 2: The Alchemist of the Mysterious Dream': +"Atelier Sophie 2: The Alchemist of the Mysterious Dream": files: - /KoeiTecmo/Atelier Sophie 2: + "/KoeiTecmo/Atelier Sophie 2": tags: - save when: - os: windows - /KoeiTecmo/Atelier Sophie 2/Setting.ini: + "/KoeiTecmo/Atelier Sophie 2/Setting.ini": tags: - config when: @@ -42463,40 +42606,41 @@ Atari Vault: installDir: Atelier Sophie 2: {} launch: - /Atelier_Sophie_2.exe: + "/Atelier_Sophie_2.exe": - when: - store: steam steam: id: 1621310 -'Atelier Sophie: The Alchemist of the Mysterious Book': +"Atelier Sophie: The Alchemist of the Mysterious Book": files: - /KoeiTecmo/A17: + "/KoeiTecmo/A17": tags: - config when: - os: windows - /KoeiTecmo/A17/SAVEDATA: + "/KoeiTecmo/A17/SAVEDATA": tags: - save when: - - store: steam + - os: windows + store: steam installDir: Atelier Sophie The Alchemist of the Mysterious Book: {} launch: - /A17Config.exe: + "/A17Config.exe": - when: - os: windows store: steam steam: id: 527270 -'Atelier Sophie: The Alchemist of the Mysterious Book DX': +"Atelier Sophie: The Alchemist of the Mysterious Book DX": files: - /KoeiTecmo/Atelier Sophie DX: + "/KoeiTecmo/Atelier Sophie DX": tags: - config when: - os: windows - /KoeiTecmo/Atelier Sophie DX/SAVEDATA: + "/KoeiTecmo/Atelier Sophie DX/SAVEDATA": tags: - save when: @@ -42504,19 +42648,19 @@ Atari Vault: installDir: Atelier Sophie DX: {} launch: - /Atelier_Sophie_DX_Launcher.exe: + "/Atelier_Sophie_DX_Launcher.exe": - when: - store: steam steam: id: 1502970 -'Atelier Totori: The Adventurer of Arland DX': +"Atelier Totori: The Adventurer of Arland DX": files: - /ArlandDX_Settings.ini: + "/ArlandDX_Settings.ini": tags: - config when: - os: windows - /userdata//936180/remote/SAVEDATA: + "/userdata//936180/remote/SAVEDATA": tags: - save when: @@ -42525,7 +42669,7 @@ Atari Vault: installDir: Atelier Totori ~The Adventurer of Arland~ DX: {} launch: - /ArlandDXLauncher.exe: + "/ArlandDXLauncher.exe": - when: - os: windows store: steam @@ -42535,7 +42679,7 @@ Atex Brawl: installDir: Atex Brawl: {} launch: - /Atex Brawl.exe: + "/Atex Brawl.exe": - when: - os: windows store: steam @@ -42546,11 +42690,11 @@ Athenian Acropolis: Athenian Acropolis: {} steam: id: 716390 -'Ather: Chapter 1': +"Ather: Chapter 1": installDir: Peccator: {} launch: - /Peccator.exe: + "/Peccator.exe": - when: - os: windows store: steam @@ -42568,7 +42712,7 @@ Ativeil: installDir: Ativeil: {} launch: - /AtiveilGame.exe: + "/AtiveilGame.exe": - when: - store: steam steam: @@ -42580,7 +42724,7 @@ Atlantic Edge: id: 895940 Atlantic Fleet: files: - /AppData/LocalLow/Killerfish Games/Atlantic Fleet: + "/AppData/LocalLow/Killerfish Games/Atlantic Fleet": tags: - config - save @@ -42591,11 +42735,11 @@ Atlantic Fleet: installDir: Atlantic Fleet: {} launch: - /AtlanticFleet.app: + "/AtlanticFleet.app": - when: - os: mac store: steam - /AtlanticFleet.exe: + "/AtlanticFleet.exe": - when: - os: windows store: steam @@ -42605,7 +42749,7 @@ Atlantic Quest 2 - New Adventure: installDir: Atlantic Quest 2 - New Adventure -: {} launch: - /AQ2.exe: + "/AQ2.exe": - when: - os: windows store: steam @@ -42615,12 +42759,12 @@ Atlantic Quest Solitaire: installDir: Atlantic Quest Solitaire: {} launch: - /AtlanticQuest-Solitaire.app/Contents/MacOS/AtlanticQuest-Solitaire: + "/AtlanticQuest-Solitaire.app/Contents/MacOS/AtlanticQuest-Solitaire": - when: - os: mac store: steam - workingDir: /AtlanticQuest-Solitaire.app/Contents/MacOS - /AtlanticQuest-Solitaire.exe: + workingDir: "/AtlanticQuest-Solitaire.app/Contents/MacOS" + "/AtlanticQuest-Solitaire.exe": - when: - os: windows store: steam @@ -42629,14 +42773,14 @@ Atlantic Quest Solitaire: Atlantis Evolution: gog: id: 1294416884 -'Atlantis II: Beyond Atlantis': +"Atlantis II: Beyond Atlantis": files: - /atlant2.cfg: + "/atlant2.cfg": tags: - config when: - os: windows - /save: + "/save": tags: - save when: @@ -42646,24 +42790,24 @@ Atlantis Evolution: installDir: Atlantis 2 Beyond Atlantis: {} launch: - /Atlantis 2.app: + "/Atlantis 2.app": - when: - os: mac store: steam - /Atlantis 2.exe: + "/Atlantis 2.exe": - when: - os: windows store: steam steam: id: 362920 -'Atlantis III: The New World': +"Atlantis III: The New World": files: - /Datas/Atlantis3.cfg: + "/Datas/Atlantis3.cfg": tags: - config when: - os: windows - /Datas/save: + "/Datas/save": tags: - save when: @@ -42674,11 +42818,11 @@ Atlantis Sky Patrol: installDir: Atlantis Sky Patrol: {} launch: - /Atlantis Sky Patrol.app: + "/Atlantis Sky Patrol.app": - when: - os: mac store: steam - /AtlantisSkyPatrol.exe: + "/AtlantisSkyPatrol.exe": - when: - os: windows store: steam @@ -42689,19 +42833,19 @@ Atlantis VR: Atlantis VR: {} steam: id: 741490 -'Atlantis: Pearls of the Deep': +"Atlantis: Pearls of the Deep": installDir: Atlantis Pearls of the Deep: {} launch: - /pearls.exe: + "/pearls.exe": - when: - os: windows store: steam steam: id: 521280 -'Atlantis: The Lost Tales': +"Atlantis: The Lost Tales": files: - /*.gam: + "/*.gam": tags: - save when: @@ -42712,29 +42856,29 @@ Atlas: installDir: ATLAS: {} launch: - /ShooterGame/Binaries/Win64/AtlasGame.exe: + "/ShooterGame/Binaries/Win64/AtlasGame.exe": - when: - bit: 64 os: windows store: steam - workingDir: /ShooterGame/Binaries/Win64 - /ShooterGame/Binaries/Win64/AtlasGame_BE.exe: + workingDir: "/ShooterGame/Binaries/Win64" + "/ShooterGame/Binaries/Win64/AtlasGame_BE.exe": - when: - bit: 64 os: windows store: steam - workingDir: /ShooterGame/Binaries/Win64 - - arguments: '-lowmemorymode' + workingDir: "/ShooterGame/Binaries/Win64" + - arguments: "-lowmemorymode" when: - bit: 64 os: windows store: steam - workingDir: /ShooterGame/Binaries/Win64 + workingDir: "/ShooterGame/Binaries/Win64" steam: id: 834910 Atlas Fallen: files: - /My Games/Atlas Fallen: + "/My Games/Atlas Fallen": tags: - config when: @@ -42745,14 +42889,14 @@ Atlas Fallen: installDir: Atlas Fallen: {} launch: - /bin/AtlasFallen (DirectX 12).exe: + "/bin/AtlasFallen (DirectX 12).exe": - when: - store: steam - workingDir: /bin - /bin/AtlasFallen.exe: + workingDir: "/bin" + "/bin/AtlasFallen.exe": - when: - store: steam - workingDir: /bin + workingDir: "/bin" steam: id: 1230530 Atlas Protect Your Planet: @@ -42762,8 +42906,8 @@ Atlas Reactor: installDir: Atlas Reactor: {} launch: - /GlyphClient.exe: - - arguments: '-steam' + "/GlyphClient.exe": + - arguments: "-steam" when: - store: steam steam: @@ -42777,7 +42921,7 @@ Atma: installDir: Atma: {} launch: - /Atma_V1.1.3.exe: + "/Atma_V1.1.3.exe": - when: - os: windows store: steam @@ -42787,7 +42931,7 @@ AtmaSphere: installDir: AtmaSphere: {} launch: - /AtmaSphereFinal.exe: + "/AtmaSphereFinal.exe": - when: - os: windows store: steam @@ -42797,15 +42941,15 @@ Atmocity: installDir: Atmocity: {} launch: - /Atmocity.app: + "/Atmocity.app": - when: - os: mac store: steam - /Atmocity.exe: + "/Atmocity.exe": - when: - os: windows store: steam - /Atmocity.x86_64: + "/Atmocity.x86_64": - when: - bit: 64 os: linux @@ -42821,7 +42965,7 @@ Atom Fishing II: installDir: AF2: {} launch: - /AFCGame.exe: + "/AFCGame.exe": - when: - bit: 64 os: windows @@ -42832,15 +42976,15 @@ Atom Grrrl!!: installDir: ATOM GRRRL!!: {} launch: - /atomgrrrl.app: + "/atomgrrrl.app": - when: - os: mac store: steam - /atomgrrrl.exe: + "/atomgrrrl.exe": - when: - os: windows store: steam - /atomgrrrl.sh: + "/atomgrrrl.sh": - when: - os: linux store: steam @@ -42850,7 +42994,7 @@ Atom Universe: installDir: AtomUniverse: {} launch: - /AtomUniverse.exe: + "/AtomUniverse.exe": - when: - os: windows store: steam @@ -42858,17 +43002,17 @@ Atom Universe: id: 394120 Atom Zombie Smasher: files: - /Library/Application Support/AtomZombieData: + "/Library/Application Support/AtomZombieData": tags: - save when: - os: mac - /AtomZombieData: + "/AtomZombieData": tags: - save when: - os: windows - /AtomZombieData: + "/AtomZombieData": tags: - save when: @@ -42876,15 +43020,15 @@ Atom Zombie Smasher: installDir: atomzombiesmasher: {} launch: - /Atom Zombie Smasher.app/Contents/MacOS/AtomZombieSmasher: + "/Atom Zombie Smasher.app/Contents/MacOS/AtomZombieSmasher": - when: - os: mac store: steam - /AtomZombieSmasher: + "/AtomZombieSmasher": - when: - os: linux store: steam - /AtomZombieSmasher.exe: + "/AtomZombieSmasher.exe": - when: - os: windows store: steam @@ -42894,7 +43038,7 @@ Atom-X: installDir: Atom-X: {} launch: - /AtomX.exe: + "/AtomX.exe": - when: - os: windows store: steam @@ -42902,7 +43046,7 @@ Atom-X: id: 966050 Atomaders: files: - /Players.cdf: + "/Players.cdf": tags: - save when: @@ -42913,7 +43057,7 @@ Atomaders: - config Atomaders 2: files: - /Save.cdf: + "/Save.cdf": tags: - config - save @@ -42923,7 +43067,7 @@ Atomega: installDir: ATOMEGA: {} launch: - /ATOMEGA.exe: + "/ATOMEGA.exe": - when: - os: windows store: steam @@ -42933,40 +43077,40 @@ Atomic 79: installDir: Atomic 79: {} launch: - /Atomic79.exe: + "/Atomic79.exe": - when: - os: windows store: steam steam: id: 567370 -'Atomic Adam: Episode 1': +"Atomic Adam: Episode 1": installDir: Radical Heroes Atomic Adam: {} launch: - /AtomicAdam.exe: + "/AtomicAdam.exe": - when: - store: steam steam: id: 764280 -'Atomic Butcher: Homo Metabolicus': +"Atomic Butcher: Homo Metabolicus": installDir: Atomic Butcher Homo Metabolicus: {} launch: - /Atomic Butcher Homo Metabolicus.app/Contents/MacOS/Atomic Butcher Homo Metabolicus: + "/Atomic Butcher Homo Metabolicus.app/Contents/MacOS/Atomic Butcher Homo Metabolicus": - when: - os: mac store: steam - /Atomic Butcher Homo Metabolicus.x86: + "/Atomic Butcher Homo Metabolicus.x86": - when: - bit: 32 os: linux store: steam - /Atomic Butcher Homo Metabolicus.x86_64: + "/Atomic Butcher Homo Metabolicus.x86_64": - when: - bit: 64 os: linux store: steam - /AtomicButcher_HomoMetabolicus.exe: + "/AtomicButcher_HomoMetabolicus.exe": - when: - bit: 64 os: windows @@ -42975,17 +43119,17 @@ Atomic 79: id: 523970 Atomic Heart: files: - /AtomicHeart/Saved/Config: + "/AtomicHeart/Saved/Config": tags: - config when: - os: windows - /AtomicHeart/Saved/SaveGames: + "/AtomicHeart/Saved/SaveGames": tags: - save when: - os: windows - /Packages/FocusHomeInteractiveSA.579645D26CFD_4hny5m903y3g0/SystemAppData/wgs/: + "/Packages/FocusHomeInteractiveSA.579645D26CFD_4hny5m903y3g0/SystemAppData/wgs/": tags: - save when: @@ -42994,7 +43138,7 @@ Atomic Heart: installDir: Atomic Heart: {} launch: - /AtomicHeart.exe: + "/AtomicHeart.exe": - when: - bit: 64 os: windows @@ -43005,7 +43149,7 @@ Atomic Heist: installDir: Atomic Heist: {} launch: - /Atomic Heist.exe: + "/Atomic Heist.exe": - when: - os: windows store: steam @@ -43015,7 +43159,7 @@ Atomic Rancher: installDir: Atomic Rancher: {} launch: - /NuclearRancher.exe: + "/NuclearRancher.exe": - when: - os: windows store: steam @@ -43025,11 +43169,11 @@ Atomic Reconstruction: installDir: Atomic Reconstruction: {} launch: - /AtomicReconstruction: + "/AtomicReconstruction": - when: - os: linux store: steam - /AtomicReconstruction.exe: + "/AtomicReconstruction.exe": - when: - os: windows store: steam @@ -43039,7 +43183,7 @@ Atomic Sky: installDir: Atomic Sky: {} launch: - /AtomicSky.exe: + "/AtomicSky.exe": - when: - os: windows store: steam @@ -43049,7 +43193,7 @@ Atomic Society: installDir: Atomic Society: {} launch: - /Atomic Society.exe: + "/Atomic Society.exe": - when: - os: windows store: steam @@ -43059,20 +43203,20 @@ Atomic Space Command: installDir: Atomic Space Command: {} launch: - /AtomicSpaceCommand.app: + "/AtomicSpaceCommand.app": - when: - os: mac store: steam - /AtomicSpaceCommand.exe: + "/AtomicSpaceCommand.exe": - when: - os: windows store: steam - /AtomicSpaceCommand.x86: + "/AtomicSpaceCommand.x86": - when: - bit: 32 os: linux store: steam - /AtomicSpaceCommand.x86_64: + "/AtomicSpaceCommand.x86_64": - when: - bit: 64 os: linux @@ -43081,12 +43225,12 @@ Atomic Space Command: id: 445350 Atomicrops: files: - /AppData/LocalLow/Bird Bath Games/Atomicrops/*.banana: + "/AppData/LocalLow/Bird Bath Games/Atomicrops/*.banana": tags: - save when: - os: windows - /Packages/RawFury.AtomicropsWIN10_9s0pnehqffj7t/SystemAppData/wgs: + "/Packages/RawFury.AtomicropsWIN10_9s0pnehqffj7t/SystemAppData/wgs": tags: - save when: @@ -43097,7 +43241,7 @@ Atomicrops: installDir: Atomicrops: {} launch: - /Atomicrops.exe: + "/Atomicrops.exe": - when: - store: steam registry: @@ -43110,7 +43254,7 @@ Atomine: installDir: ATOMINE: {} launch: - /Atomine.exe: + "/Atomine.exe": - when: - os: windows store: steam @@ -43130,37 +43274,37 @@ Atoms: installDir: Atoms: {} launch: - /Atoms.exe: + "/Atoms.exe": - when: - bit: 64 os: windows store: steam steam: id: 765460 -'Atone: Heart of the Elder Tree': +"Atone: Heart of the Elder Tree": gog: id: 2054943829 installDir: ATONE: {} launch: - /Atone.exe: + "/Atone.exe": - when: - store: steam steam: id: 894620 -'Atonement 2: Ruptured by Despair': +"Atonement 2: Ruptured by Despair": installDir: Atonement 2 Ruptured by Despair: {} launch: - /Atonement 2.exe: + "/Atonement 2.exe": - when: - os: windows store: steam steam: id: 533820 -'Atonement: Scourge of Time': +"Atonement: Scourge of Time": files: - /Atonement Scourge of Time/Saves: + "/Atonement Scourge of Time/Saves": tags: - save when: @@ -43168,7 +43312,7 @@ Atoms: installDir: Atonement Scourge of Time: {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: @@ -43177,8 +43321,8 @@ Atooms to Moolecules: installDir: Atooms To Moolecules: {} launch: - /Atooms to Moolecules.exe: - - arguments: '' + "/Atooms to Moolecules.exe": + - arguments: "" when: - store: steam steam: @@ -43195,25 +43339,25 @@ Atriage: installDir: Atriage: {} launch: - /Atriage.app: + "/Atriage.app": - when: - os: mac store: steam - /Atriage.exe: + "/Atriage.exe": - when: - os: windows store: steam - /Atriage.x86: + "/Atriage.x86": - when: - os: linux store: steam steam: id: 454780 -'Atrio: The Dark Wild': +"Atrio: The Dark Wild": installDir: Atrio The Dark Wild: {} launch: - /Atrio.exe: + "/Atrio.exe": - when: - bit: 64 os: windows @@ -43224,11 +43368,11 @@ Atrocity: installDir: Atrocity: {} launch: - /Atrocity.exe: + "/Atrocity.exe": - when: - os: windows store: steam - /Atrocity.x86_64: + "/Atrocity.x86_64": - when: - os: linux store: steam @@ -43238,7 +43382,7 @@ Attached: installDir: Attached: {} launch: - /Attached.exe: + "/Attached.exe": - when: - os: windows store: steam @@ -43248,7 +43392,7 @@ Attack Helicopter Dating Simulator: installDir: AHDS: {} launch: - /AttackHelicopterDateSim.exe: + "/AttackHelicopterDateSim.exe": - when: - os: windows store: steam @@ -43258,11 +43402,11 @@ Attack Heroes: installDir: Attack Heroes: {} launch: - /AttackHero.app: + "/AttackHero.app": - when: - os: mac store: steam - /AttackHero.exe: + "/AttackHero.exe": - when: - os: windows store: steam @@ -43272,7 +43416,7 @@ Attack Noids: installDir: AttackNoids: {} launch: - /windows_content/AttackNoids.exe: + "/windows_content/AttackNoids.exe": - when: - os: windows store: steam @@ -43282,7 +43426,7 @@ Attack Of Mutants: installDir: Attack Of Mutants: {} launch: - /AttackOfMutants.exe: + "/AttackOfMutants.exe": - when: - store: steam steam: @@ -43291,7 +43435,7 @@ Attack Of The Retro Bots: installDir: AttackOfTheRetroBots: {} launch: - /AttackOfTheRetroBots.exe: + "/AttackOfTheRetroBots.exe": - when: - os: windows store: steam @@ -43304,7 +43448,7 @@ Attack of Insects: installDir: Attack Of Insects: {} launch: - /Attack Of Insects.exe: + "/Attack Of Insects.exe": - when: - os: windows store: steam @@ -43317,7 +43461,7 @@ Attack of the Bugs: id: 597590 Attack of the Earthlings: files: - /AppData/LocalLow/Junkfish/Attack of the Earthlings/Slots: + "/AppData/LocalLow/Junkfish/Attack of the Earthlings/Slots": tags: - save when: @@ -43327,24 +43471,24 @@ Attack of the Earthlings: installDir: Attack of the Earthlings: {} launch: - /AttackOfTheEarthlings.app: + "/AttackOfTheEarthlings.app": - when: - os: mac store: steam - /AttackOfTheEarthlings.exe: + "/AttackOfTheEarthlings.exe": - when: - os: windows store: steam - - arguments: '-force-d3d9' + - arguments: "-force-d3d9" when: - os: windows store: steam - /AttackOfTheEarthlings.x86: + "/AttackOfTheEarthlings.x86": - when: - bit: 32 os: linux store: steam - /AttackOfTheEarthlings.x86_64: + "/AttackOfTheEarthlings.x86_64": - when: - bit: 64 os: linux @@ -43355,20 +43499,20 @@ Attack of the Giant Mutant Lizard: installDir: Attack of the Giant Mutant Lizard: {} launch: - /Attack of the Giant Mutant Lizard.exe: + "/Attack of the Giant Mutant Lizard.exe": - when: - os: windows store: steam - /ml-game-mac.app: + "/ml-game-mac.app": - when: - os: mac store: steam - /ml.x86: + "/ml.x86": - when: - bit: 32 os: linux store: steam - /ml.x86_64: + "/ml.x86_64": - when: - bit: 64 os: linux @@ -43379,7 +43523,7 @@ Attack of the Gigant Zombie vs Unity Chan: installDir: Atack of the Gigant Zombie vs Unity chan: {} launch: - /AotGZvsU.exe: + "/AotGZvsU.exe": - when: - os: windows store: steam @@ -43389,7 +43533,7 @@ Attack of the Gooobers: installDir: Attack of the Gooobers: {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: @@ -43401,7 +43545,7 @@ Attack of the Labyrinth +: installDir: Attack of the Labyrinth: {} launch: - /AotL.exe: + "/AotL.exe": - when: - os: windows store: steam @@ -43411,7 +43555,7 @@ Attack of the Mutant Fishcrows: installDir: AOTMFC: {} launch: - /AotMFC.exe: + "/AotMFC.exe": - when: - os: windows store: steam @@ -43427,14 +43571,14 @@ Attack on Pearl Harbor: installDir: Attack on Pearl Harbor: {} launch: - /Setup.exe: + "/Setup.exe": - when: - store: steam steam: id: 8620 Attack on Titan: files: - /KoeiTecmo/Attack on Titan/SAVEDATA: + "/KoeiTecmo/Attack on Titan/SAVEDATA": tags: - save when: @@ -43442,7 +43586,7 @@ Attack on Titan: installDir: AoT: {} launch: - /AoT.exe: + "/AoT.exe": - when: - bit: 64 os: windows @@ -43451,27 +43595,27 @@ Attack on Titan: id: 449800 Attack on Titan 2: files: - /KoeiTecmo/Attack on Titan2_AOT2/SAVEDATA: + "/KoeiTecmo/Attack on Titan2_AOT2/SAVEDATA": tags: - save when: - os: windows id: steamExtra: - - 799700 - - 797790 + - 797730 + - 797740 + - 797750 + - 797760 - 797770 - 797780 - - 797760 - - 797730 - - 797750 - - 797740 + - 797790 - 799680 - 799690 + - 799700 installDir: AoT2: {} launch: - /Launcher.exe: + "/Launcher.exe": - when: - os: windows store: steam @@ -43483,9 +43627,9 @@ Attack on Titan 2: id: 601050 Attempt 42: installDir: - 'Attempt[42]': {} + "Attempt[42]": {} launch: - /Attempt42.exe: + "/Attempt42.exe": - when: - os: windows store: steam @@ -43493,7 +43637,7 @@ Attempt 42: id: 562520 Attentat 1942: files: - /AppData/LocalLow/Charles Games/Attentat 1942: + "/AppData/LocalLow/Charles Games/Attentat 1942": tags: - save when: @@ -43503,15 +43647,15 @@ Attentat 1942: installDir: Attentat 1942: {} launch: - /Attentat1942.app/Contents/MacOS/Attentat 1942: + "/Attentat1942.app/Contents/MacOS/Attentat 1942": - when: - os: mac store: steam - /Attentat_1942: + "/Attentat_1942": - when: - os: linux store: steam - /Attentat_1942.exe: + "/Attentat_1942.exe": - when: - os: windows store: steam @@ -43525,14 +43669,14 @@ Attract Fragments 5: installDir: Attract Fragments 5: {} launch: - /AF5.exe: + "/AF5.exe": - when: - store: steam steam: id: 1091550 Attractio: files: - /.attractio: + "/.attractio": tags: - config when: @@ -43540,15 +43684,15 @@ Attractio: installDir: Attractio: {} launch: - /Attractio: + "/Attractio": - when: - os: mac store: steam - /attractio: + "/attractio": - when: - os: linux store: steam - /attractio.exe: + "/attractio.exe": - when: - os: windows store: steam @@ -43558,32 +43702,32 @@ Attractorache: installDir: Attractorache: {} launch: - /JuYinYuan.exe: + "/JuYinYuan.exe": - when: - store: steam steam: id: 940520 -'Attrition: Nuclear Domination': +"Attrition: Nuclear Domination": steam: id: 392870 -'Attrition: Tactical Fronts': +"Attrition: Tactical Fronts": installDir: AttritionTacticalFronts: {} launch: - /attrition.app: + "/attrition.app": - when: - os: mac store: steam - /attrition.exe: + "/attrition.exe": - when: - os: windows store: steam - /attrition.x86: + "/attrition.x86": - when: - bit: 32 os: linux store: steam - /attrition.x86_64: + "/attrition.x86_64": - when: - bit: 64 os: linux @@ -43595,11 +43739,11 @@ Atulos Online: Atulos Online: {} steam: id: 449470 -Au fil de l'eau: +"Au fil de l'eau": installDir: - Au fil de l'eau: {} + "Au fil de l'eau": {} launch: - /Au fil de l'eau.exe: + "/Au fil de l'eau.exe": - when: - os: windows store: steam @@ -43607,7 +43751,7 @@ Au fil de l'eau: id: 1085820 Audica: files: - '/AppData/LocalLow/Harmonix Music Systems, Inc_/Audica': + "/AppData/LocalLow/Harmonix Music Systems, Inc_/Audica": tags: - config - save @@ -43626,13 +43770,13 @@ Audio Drive Neon: installDir: AudioDriveNeon: {} launch: - /Audio Drive Neon.exe: + "/Audio Drive Neon.exe": - when: - store: steam - /AudioDriveNeon.exe: + "/AudioDriveNeon.exe": - when: - store: steam - /AudioDriveStorm.exe: + "/AudioDriveStorm.exe": - when: - store: steam steam: @@ -43651,7 +43795,7 @@ Audio Infection: installDir: Audio Infection: {} launch: - /Audio Infection.exe: + "/Audio Infection.exe": - when: - os: windows store: steam @@ -43671,7 +43815,7 @@ AudioWizards: installDir: AudioWizards: {} launch: - /AudioWizards.exe: + "/AudioWizards.exe": - when: - store: steam steam: @@ -43680,7 +43824,7 @@ Audioshield: installDir: Audioshield: {} registry: - 'HKEY_CURRENT_USER/Software/Audiosurf, LLC/Audioshield': + "HKEY_CURRENT_USER/Software/Audiosurf, LLC/Audioshield": tags: - config steam: @@ -43689,7 +43833,7 @@ Audioship: installDir: Audioship: {} launch: - /Audioship.exe: + "/Audioship.exe": - when: - os: windows store: steam @@ -43697,7 +43841,7 @@ Audioship: id: 661560 Audiosurf: files: - /config.ini: + "/config.ini": tags: - config when: @@ -43705,16 +43849,16 @@ Audiosurf: installDir: Audiosurf: {} launch: - /engine/QuestViewer.exe: + "/engine/QuestViewer.exe": - arguments: Q3DStart.q3d when: - store: steam - workingDir: /engine + workingDir: "/engine" steam: id: 12900 Audiosurf 2: files: - '/.config/unity3d/Audiosurf, LLC/Audiosurf 2': + "/.config/unity3d/Audiosurf, LLC/Audiosurf 2": tags: - config when: @@ -43722,21 +43866,21 @@ Audiosurf 2: installDir: Audiosurf 2: {} launch: - /Audiosurf2.app: + "/Audiosurf2.app": - when: - os: mac store: steam - /Audiosurf2.exe: + "/Audiosurf2.exe": - when: - os: windows store: steam - /launch.sh: + "/launch.sh": - when: - bit: 64 os: linux store: steam registry: - 'HKEY_CURRENT_USER/Software/Audiosurf, LLC/Audiosurf 2': + "HKEY_CURRENT_USER/Software/Audiosurf, LLC/Audiosurf 2": tags: - config steam: @@ -43745,7 +43889,7 @@ Audition Online: installDir: Audition Online: {} launch: - /Audition.exe: + "/Audition.exe": - arguments: /T3ENTER 1500FC0A057D730978333A594831472234405E3C4F when: - os: windows @@ -43754,17 +43898,17 @@ Audition Online: id: 349720 Auditorium: files: - /lib/config/config.xml: + "/lib/config/config.xml": tags: - config when: - os: windows - /com.cipherprime.auditorium/Local Store/#SharedObjects/gameSettings.sol: + "/com.cipherprime.auditorium/Local Store/#SharedObjects/gameSettings.sol": tags: - config when: - os: windows - /com.cipherprime.auditorium/Local Store/#SharedObjects/main.swf/AuditoriumClassicLevelProgress.sol: + "/com.cipherprime.auditorium/Local Store/#SharedObjects/main.swf/AuditoriumClassicLevelProgress.sol": tags: - save when: @@ -43772,11 +43916,11 @@ Auditorium: installDir: Auditorium: {} launch: - /Auditorium.app: + "/Auditorium.app": - when: - os: mac store: steam - /Auditorium.exe: + "/Auditorium.exe": - when: - os: windows store: steam @@ -43786,11 +43930,11 @@ Auf Abwegen: installDir: Auf_Abwegen: {} launch: - /Auf_Abwegen.exe: + "/Auf_Abwegen.exe": - when: - os: windows store: steam - /runner: + "/runner": - when: - os: linux store: steam @@ -43798,7 +43942,7 @@ Auf Abwegen: id: 1036850 Aura Kingdom: files: - /client.ini: + "/client.ini": tags: - config when: @@ -43806,8 +43950,8 @@ Aura Kingdom: installDir: Aura Kingdom: {} launch: - /Launcher.exe: - - arguments: '-steam' + "/Launcher.exe": + - arguments: "-steam" when: - os: windows store: steam @@ -43817,7 +43961,7 @@ Aura Shift: installDir: Aura Shift: {} launch: - /AuraShift.exe: + "/AuraShift.exe": - when: - os: windows store: steam @@ -43828,14 +43972,14 @@ Aura of Worlds: AuraOfWorlds: {} steam: id: 841600 -'Aura: Fate of the Ages': +"Aura: Fate of the Ages": files: - /Saved: + "/Saved": tags: - save when: - os: windows - /Settings.ini: + "/Settings.ini": tags: - config when: @@ -43843,14 +43987,14 @@ Aura of Worlds: installDir: Aura Fate of the Ages: {} launch: - /Aura1.exe: + "/Aura1.exe": - when: - store: steam steam: id: 65500 -'Auralux: Constellations': +"Auralux: Constellations": files: - /Auralux Constellations: + "/Auralux Constellations": tags: - config - save @@ -43859,29 +44003,29 @@ Aura of Worlds: installDir: Auralux Constellations: {} launch: - /auralux2.exe: + "/auralux2.exe": - when: - os: windows store: steam steam: id: 444130 -Auri's Tales: +"Auri's Tales": installDir: - Auri'sTales: {} + "Auri'sTales": {} launch: - /Auri'sTales/Auri'sTales.exe: + "/Auri'sTales/Auri'sTales.exe": - when: - store: steam steam: id: 987060 -'Aurion: Legacy of the Kori-Odan': +"Aurion: Legacy of the Kori-Odan": files: - /AurionSaves/data_Sauvegarde_*.Jgod: + "/AurionSaves/data_Sauvegarde_*.Jgod": tags: - save when: - os: windows - /AurionSaves/data_configGenerale.Jgod: + "/AurionSaves/data_configGenerale.Jgod": tags: - config when: @@ -43889,17 +44033,17 @@ Auri's Tales: installDir: AURION_GAME: {} launch: - /AURION_GAME/Aurion.exe: + "/AURION_GAME/Aurion.exe": - when: - store: steam - workingDir: /AURION_GAME + workingDir: "/AURION_GAME" steam: id: 368080 -'Auro: A Monster-Bumping Adventure': +"Auro: A Monster-Bumping Adventure": installDir: Auro A Monster-Bumping Adventure: {} launch: - /Auro.exe: + "/Auro.exe": - when: - os: windows store: steam @@ -43909,7 +44053,7 @@ Aurora: installDir: Aurora: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -43919,23 +44063,23 @@ Aurora - Hidden Colors: installDir: Aurora - Hidden Colors: {} launch: - /AuroraHiddenColors: - - arguments: '--in-process-gpu' + "/AuroraHiddenColors": + - arguments: "--in-process-gpu" when: - os: linux store: steam - /AuroraHiddenColors.exe: - - arguments: '--in-process-gpu' + "/AuroraHiddenColors.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam steam: id: 1184530 -'Aurora Dusk: Steam Age': +"Aurora Dusk: Steam Age": installDir: Aurora Dusk - Steam Age: {} launch: - /Aurora.exe: + "/Aurora.exe": - when: - os: windows store: steam @@ -43945,11 +44089,11 @@ Aurora Hex - Pattern Puzzles: installDir: Aurora Hex - Pattern Puzzles: {} launch: - /Aurora Hex.app/Contents/MacOS/Aurora Hex: + "/Aurora Hex.app/Contents/MacOS/Aurora Hex": - when: - os: mac store: steam - /Aurora Hex.exe: + "/Aurora Hex.exe": - when: - os: windows store: steam @@ -43959,7 +44103,7 @@ Aurora Nights: installDir: Aurora Nights: {} launch: - /Aurora.exe: + "/Aurora.exe": - when: - os: windows store: steam @@ -43969,24 +44113,24 @@ Aurora Trail: installDir: Aurora Trail: {} launch: - /AuroraTrail.exe: + "/AuroraTrail.exe": - when: - os: windows store: steam steam: id: 755150 -'Aurora: The Lost Medallion Episode I': +"Aurora: The Lost Medallion Episode I": steam: id: 1088610 AuroraBound Deluxe: installDir: AuroraBound: {} launch: - /AuroraBound.app/Contents/MacOS/AuroraBound: + "/AuroraBound.app/Contents/MacOS/AuroraBound": - when: - os: mac store: steam - /AuroraBound.exe: + "/AuroraBound.exe": - when: - os: windows store: steam @@ -43999,16 +44143,16 @@ Aurum Kings: installDir: Aurum Kings: {} launch: - /AurumKings.exe: + "/AurumKings.exe": - when: - os: windows store: steam - /AurumKings.x86: + "/AurumKings.x86": - when: - bit: 32 os: linux store: steam - /AurumKings.x86_64: + "/AurumKings.x86_64": - when: - bit: 64 os: linux @@ -44019,7 +44163,7 @@ Aussie Battler Tanks: installDir: Aussie Battler Tanks: {} launch: - /Aussie Battler Tanks.exe: + "/Aussie Battler Tanks.exe": - when: - os: windows store: steam @@ -44034,11 +44178,11 @@ Austen Translation: installDir: Austen Translation: {} launch: - /Austen Translation.app: + "/Austen Translation.app": - when: - os: mac store: steam - /Austen Translation.exe: + "/Austen Translation.exe": - when: - os: windows store: steam @@ -44050,12 +44194,12 @@ Austerlitz: installDir: austerlitz: {} launch: - /dosbox_windows/dosbox.exe: - - arguments: \"ALITZ.EXE\" \"dosbox_austerlitz.conf\" -exit -fullscreen -noconsole + "/dosbox_windows/dosbox.exe": + - arguments: "\\\"ALITZ.EXE\\\" \\\"dosbox_austerlitz.conf\\\" -exit -fullscreen -noconsole" when: - os: windows store: steam - /runAusterlitz.sh: + "/runAusterlitz.sh": - when: - os: linux store: steam @@ -44065,23 +44209,23 @@ Australian Football Coach: installDir: Australian Football Coach: {} launch: - /AFC/AFC.exe: + "/AFC/AFC.exe": - when: - os: windows store: steam - workingDir: /AFC + workingDir: "/AFC" steam: id: 578010 Australian Football Coach 2020: installDir: Australian Football Coach 2020: {} launch: - /AFC2019: + "/AFC2019": - when: - bit: 64 os: linux store: steam - /AFC2019.app/Contents/MacOS/AFC2019: + "/AFC2019.app/Contents/MacOS/AFC2019": - when: - os: mac store: steam @@ -44091,7 +44235,7 @@ Australian Road Trains: installDir: Australian Road Trains: {} launch: - /road_trains.exe: + "/road_trains.exe": - when: - os: windows store: steam @@ -44101,22 +44245,22 @@ Australian Trip: installDir: AustralianTrip: {} launch: - /linux32/nw: + "/linux32/nw": - when: - bit: 32 os: linux store: steam - /linux64/nw: + "/linux64/nw": - when: - bit: 64 os: linux store: steam - /win32/nw.exe: + "/win32/nw.exe": - when: - bit: 32 os: windows store: steam - /win64/nw.exe: + "/win64/nw.exe": - when: - bit: 64 os: windows @@ -44127,17 +44271,17 @@ Author Clicker: installDir: Author Clicker: {} launch: - /Author.exe: + "/Author.exe": - when: - os: windows store: steam steam: id: 1038830 -'Auto Age: Standoff': +"Auto Age: Standoff": installDir: Auto Age Standoff: {} launch: - /AutoAgeStandoff.exe: + "/AutoAgeStandoff.exe": - when: - os: windows store: steam @@ -44147,7 +44291,7 @@ Auto Battle Royale: installDir: funclick_zzq: {} launch: - /q3dgame.exe: + "/q3dgame.exe": - when: - os: windows store: steam @@ -44155,12 +44299,12 @@ Auto Battle Royale: id: 922480 Auto Chess: files: - /AutoChess/Saved/Config/WindowsNoEditor: + "/AutoChess/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /AutoChess/Saved/SaveGames: + "/AutoChess/Saved/SaveGames": tags: - save when: @@ -44168,7 +44312,7 @@ Auto Chess: installDir: Auto Chess: {} launch: - /ACPhoenix.exe: + "/ACPhoenix.exe": - when: - bit: 64 store: steam @@ -44178,15 +44322,15 @@ Auto Dealership Tycoon: installDir: Auto Dealership Tycoon: {} launch: - /ADT.exe: + "/ADT.exe": - when: - os: windows store: steam - /Auto Dealership Tycoon.app: + "/Auto Dealership Tycoon.app": - when: - os: mac store: steam - /runner: + "/runner": - when: - os: linux store: steam @@ -44196,7 +44340,7 @@ Auto Factory: installDir: Auto Factory: {} launch: - /AutoFactory.exe: + "/AutoFactory.exe": - when: - bit: 64 os: windows @@ -44210,7 +44354,7 @@ Auto-Staccato: installDir: Auto-Staccato: {} launch: - /Auto-Staccato.exe: + "/Auto-Staccato.exe": - when: - os: windows store: steam @@ -44218,24 +44362,24 @@ Auto-Staccato: id: 697600 Autobahn: files: - /Forward Development/Autobahn: + "/Forward Development/Autobahn": tags: - save when: - os: windows - /Forward Development/Autobahn/config: + "/Forward Development/Autobahn/config": tags: - config when: - os: windows Autobahn Police Simulator: files: - /AppData/LocalLow/Z-Software GmbH/highwaypatrol: + "/AppData/LocalLow/Z-Software GmbH/highwaypatrol": tags: - config when: - os: windows - /userdata/22454901/348510/remote: + "/userdata/22454901/348510/remote": tags: - save when: @@ -44244,11 +44388,11 @@ Autobahn Police Simulator: installDir: Autobahn Police Simulator: {} launch: - /highwaypatrol2015.exe: + "/highwaypatrol2015.exe": - when: - os: windows store: steam - - arguments: '-force-d3d9' + - arguments: "-force-d3d9" when: - os: windows store: steam @@ -44262,7 +44406,7 @@ Autobahn Police Simulator 2: installDir: Autobahn Police Simulator 2: {} launch: - /highwaypatrol2.exe: + "/highwaypatrol2.exe": - when: - bit: 64 os: windows @@ -44271,7 +44415,7 @@ Autobahn Police Simulator 2: id: 483770 Autobahn Raser IV: files: - /Common: + "/Common": tags: - save when: @@ -44280,11 +44424,11 @@ Autocraft: installDir: Autocraft: {} launch: - /Autocraft.app: + "/Autocraft.app": - when: - os: mac store: steam - /Autocraft.exe: + "/Autocraft.exe": - when: - os: windows store: steam @@ -44294,7 +44438,7 @@ Autocross Madness: installDir: AUTOCROSS MADNESS: {} launch: - /A.exe: + "/A.exe": - when: - os: windows store: steam @@ -44302,12 +44446,12 @@ Autocross Madness: id: 823700 Automachef: files: - /AppData/LocalLow/HermesInteractive/Automachef/Saves/: + "/AppData/LocalLow/HermesInteractive/Automachef/Saves/": tags: - save when: - os: windows - /AppData/LocalLow/HermesInteractive/Automachef/Saves//prefs.dat: + "/AppData/LocalLow/HermesInteractive/Automachef/Saves//prefs.dat": tags: - config when: @@ -44317,7 +44461,7 @@ Automachef: installDir: Automachef: {} launch: - /Automachef.exe: + "/Automachef.exe": - when: - bit: 64 os: windows @@ -44332,20 +44476,20 @@ Automata Empire: installDir: Automata Empire: {} launch: - /AutomataEmpire.app: + "/AutomataEmpire.app": - when: - os: mac store: steam - /AutomataEmpire.exe: + "/AutomataEmpire.exe": - when: - os: windows store: steam - /AutomataEmpire.x86: + "/AutomataEmpire.x86": - when: - bit: 32 os: linux store: steam - /AutomataEmpire.x86_64: + "/AutomataEmpire.x86_64": - when: - bit: 64 os: linux @@ -44356,16 +44500,16 @@ Automation - The Car Company Tycoon Game: installDir: Automation: {} launch: - /Automation Launcher Steam.exe: + "/Automation Launcher Steam.exe": - when: - os: windows store: steam - /UE424/AutomationGame/Binaries/Win32/AutomationGame-Win32-Shipping.exe: + "/UE424/AutomationGame/Binaries/Win32/AutomationGame-Win32-Shipping.exe": - when: - bit: 32 os: windows store: steam - /UE424/AutomationGame/Binaries/Win64/AutomationGame-Win64-Shipping.exe: + "/UE424/AutomationGame/Binaries/Win64/AutomationGame-Win64-Shipping.exe": - when: - bit: 64 os: windows @@ -44376,7 +44520,7 @@ Automation Empire: installDir: Automation Empire: {} launch: - /AutomationEmpire.exe: + "/AutomationEmpire.exe": - when: - os: windows store: steam @@ -44386,11 +44530,11 @@ Automaton Arena: installDir: Automaton Arena: {} launch: - /AutomatonArena.app/Contents/MacOS/AutomatonArena: + "/AutomatonArena.app/Contents/MacOS/AutomatonArena": - when: - os: mac store: steam - /AutomatonArena.exe: + "/AutomatonArena.exe": - when: - bit: 64 os: windows @@ -44401,7 +44545,7 @@ Automatum: installDir: Automatum: {} launch: - /Automatum.exe: + "/Automatum.exe": - when: - os: windows store: steam @@ -44411,7 +44555,7 @@ Automobiels and the Eisenhower Hiway System the Game: installDir: automobiles and the eisenhower hiway system the game: {} launch: - /automobiels and the Eisenhower Hiway system the game.exe: + "/automobiels and the Eisenhower Hiway system the game.exe": - when: - store: steam steam: @@ -44420,7 +44564,7 @@ Automobile Tycoon: installDir: Automobile Tycoon: {} launch: - /AutomobileTycoon.exe: + "/AutomobileTycoon.exe": - when: - os: windows store: steam @@ -44428,12 +44572,12 @@ Automobile Tycoon: id: 656490 Automobilista: files: - /Documents/Automobilista/Config.ini: + "/Documents/Automobilista/Config.ini": tags: - config when: - os: windows - /Documents/Automobilista/UserData//.plr: + "/Documents/Automobilista/UserData//.plr": tags: - save when: @@ -44444,22 +44588,22 @@ Automobilista: installDir: Automobilista: {} launch: - /AMS.exe: + "/AMS.exe": - when: - store: steam - /SeasonTool/SeasonTool.exe: - - arguments: '--disable-gpu' + "/SeasonTool/SeasonTool.exe": + - arguments: "--disable-gpu" when: - store: steam - workingDir: /SeasonTool + workingDir: "/SeasonTool" steam: id: 431600 Automobilista 2: installDir: Automobilista 2: {} launch: - /AMS2.exe: - - arguments: '-novr' + "/AMS2.exe": + - arguments: "-novr" when: - bit: 64 os: windows @@ -44468,12 +44612,12 @@ Automobilista 2: id: 1066890 Autonauts: files: - /AppData/LocalLow/Denki Ltd/Autonauts/Autosaves: + "/AppData/LocalLow/Denki Ltd/Autonauts/Autosaves": tags: - save when: - os: windows - /AppData/LocalLow/Denki Ltd/Autonauts/Saves: + "/AppData/LocalLow/Denki Ltd/Autonauts/Saves": tags: - save when: @@ -44481,7 +44625,7 @@ Autonauts: installDir: Autonauts: {} launch: - /Autonauts.exe: + "/Autonauts.exe": - when: - os: windows store: steam @@ -44493,12 +44637,12 @@ Autonauts: id: 979120 Autonauts vs Piratebots: files: - /AppData/LocalLow/Denki Ltd/Autonauts vs Pirate Bots/Autosaves: + "/AppData/LocalLow/Denki Ltd/Autonauts vs Pirate Bots/Autosaves": tags: - save when: - os: windows - /AppData/LocalLow/Denki Ltd/Autonauts vs Pirate Bots/Saves: + "/AppData/LocalLow/Denki Ltd/Autonauts vs Pirate Bots/Saves": tags: - save when: @@ -44506,7 +44650,7 @@ Autonauts vs Piratebots: installDir: AVPB: {} launch: - /Autonauts vs Pirate Bots.exe: + "/Autonauts vs Pirate Bots.exe": - when: - bit: 64 os: windows @@ -44521,16 +44665,19 @@ Autumn: installDir: Autumn: {} launch: - /Autumn.app/Contents/MacOS/love: + "/Autumn.app/Contents/MacOS/love": - when: - os: mac store: steam - /autumn.exe: + "/autumn.exe": - when: - bit: 32 os: windows store: steam - /autumn.run: + - bit: 64 + os: windows + store: steam + "/autumn.run": - when: - os: linux store: steam @@ -44540,7 +44687,7 @@ Autumn Dream: installDir: Autumn Dream: {} launch: - /Autumn Dream.exe: + "/Autumn Dream.exe": - when: - os: windows store: steam @@ -44550,7 +44697,7 @@ Autumn Night 3D Shooter: installDir: Autumn Night 3D Shooter: {} launch: - /Prog.exe: + "/Prog.exe": - when: - store: steam steam: @@ -44559,32 +44706,32 @@ Autumn Park Mini Golf: installDir: Autumn Park Mini Golf: {} launch: - /APMG.exe: + "/APMG.exe": - when: - os: windows store: steam steam: id: 502650 -Autumn's Chorus: +"Autumn's Chorus": steam: id: 1025570 -Autumn's End: +"Autumn's End": steam: id: 1068650 Avabel Online: installDir: AVABEL ONLINE: {} launch: - /client.exe: + "/client.exe": - when: - bit: 64 os: windows store: steam steam: id: 1130700 -'Avadon 2: The Corruption': +"Avadon 2: The Corruption": files: - /Spiderweb Software/Avadon 2 Saved Games: + "/Spiderweb Software/Avadon 2 Saved Games": tags: - config - save @@ -44595,19 +44742,19 @@ Avabel Online: installDir: Avadon 2: {} launch: - /Avadon 2.app: + "/Avadon 2.app": - when: - os: mac store: steam - /Avadon 2.exe: + "/Avadon 2.exe": - when: - os: windows store: steam steam: id: 233310 -'Avadon 3: The Warborn': +"Avadon 3: The Warborn": files: - /Spiderweb Software/Avadon 3 Saved Games: + "/Spiderweb Software/Avadon 3 Saved Games": tags: - config - save @@ -44618,37 +44765,37 @@ Avabel Online: installDir: Avadon 3: {} launch: - /Avadon 3.app: + "/Avadon 3.app": - when: - os: mac store: steam - /Avadon 3.exe: + "/Avadon 3.exe": - when: - os: windows store: steam steam: id: 460780 -'Avadon: The Black Fortress': +"Avadon: The Black Fortress": files: - /Documents/Spiderweb Software/Avadon Saved Games: + "/Documents/Spiderweb Software/Avadon Saved Games": tags: - config - save when: - os: mac - /Library/Application Support/Spiderweb Software/Avadon Saved Games: + "/Library/Application Support/Spiderweb Software/Avadon Saved Games": tags: - config - save when: - os: mac - /Spiderweb Software/Avadon Saved Games: + "/Spiderweb Software/Avadon Saved Games": tags: - config - save when: - os: windows - /Avadon: + "/Avadon": tags: - config - save @@ -44659,25 +44806,25 @@ Avabel Online: installDir: Avadon The Black Fortress: {} launch: - /Avadon: + "/Avadon": - when: - os: linux store: steam - /Avadon.app: + "/Avadon.app": - when: - os: mac store: steam - /Avadon.exe: + "/Avadon.exe": - when: - os: windows store: steam steam: id: 112100 -'Avalanche 2: Super Avalanche': +"Avalanche 2: Super Avalanche": installDir: Avalanche 2 Super Avalanche: {} launch: - /Avalanche2.exe: + "/Avalanche2.exe": - when: - os: windows store: steam @@ -44687,7 +44834,7 @@ Avalo Legends: installDir: Avalo Legends: {} launch: - /AvaloLegends.exe: + "/AvaloLegends.exe": - when: - os: windows store: steam @@ -44697,11 +44844,11 @@ Avalon Legends Solitaire: installDir: Avalon Legends Solitaire: {} launch: - /Avalon Legends Solitaire.app: + "/Avalon Legends Solitaire.app": - when: - os: mac store: steam - /Avalon Legends Solitaire.exe: + "/Avalon Legends Solitaire.exe": - when: - os: windows store: steam @@ -44711,11 +44858,11 @@ Avalon Legends Solitaire 2: installDir: Avalon Legends Solitaire 2: {} launch: - /Avalon Legends Solitaire 2.app: + "/Avalon Legends Solitaire 2.app": - when: - os: mac store: steam - /Avalon Legends Solitaire 2.exe: + "/Avalon Legends Solitaire 2.exe": - when: - os: windows store: steam @@ -44725,57 +44872,57 @@ Avalon Legends Solitaire 3: installDir: Avalon Legends Solitaire 3: {} launch: - /Avalon Legends Solitaire 3.app: + "/Avalon Legends Solitaire 3.app": - when: - os: mac store: steam - /Avalon Legends Solitaire 3.exe: + "/Avalon Legends Solitaire 3.exe": - when: - os: windows store: steam steam: id: 841980 -'Avalon Lords: Dawn Rises': +"Avalon Lords: Dawn Rises": installDir: Avalon Lords: {} launch: - /Avalonlords.exe: + "/Avalonlords.exe": - when: - os: windows store: steam - /avalonlords.app: + "/avalonlords.app": - when: - os: mac store: steam - /avalonlords.x86: + "/avalonlords.x86": - when: - os: linux store: steam steam: id: 329280 -'Avalon: The Journey Begins': +"Avalon: The Journey Begins": installDir: Avalon The Journey Begins: {} launch: - /Avalon_v10361.exe: + "/Avalon_v10361.exe": - when: - store: steam steam: id: 502780 -'Avaria: Chains of Lust': +"Avaria: Chains of Lust": installDir: Avaria_Chains_of_Lust: {} launch: - /Game_1.1.exe: + "/Game_1.1.exe": - when: - store: steam steam: id: 1224690 -'Avaris 2: The Return of the Empress': +"Avaris 2: The Return of the Empress": installDir: Avaris 2: {} launch: - /AVARIS2.exe: + "/AVARIS2.exe": - when: - store: steam steam: @@ -44784,7 +44931,7 @@ Avast Ye: installDir: Avast Ye: {} launch: - /AvastYe.exe: + "/AvastYe.exe": - when: - bit: 64 os: linux @@ -44795,28 +44942,28 @@ Avatar of the Wolf: installDir: Avatar Of The Wolf: {} launch: - /Avatar Of The Wolf.app/Contents/MacOS/Avatar Of The Wolf: + "/Avatar Of The Wolf.app/Contents/MacOS/Avatar Of The Wolf": - when: - os: mac store: steam - /AvatarOfTheWolf: + "/AvatarOfTheWolf": - when: - os: linux store: steam - /AvatarOfTheWolf.exe: + "/AvatarOfTheWolf.exe": - when: - os: windows store: steam steam: id: 643570 -'Avatar: The Last Airbender - Quest for Balance': +"Avatar: The Last Airbender - Quest for Balance": files: - /Ala/Saved/Config/WindowsNoEditor: + "/Ala/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /Ala/Saved/SaveGames: + "/Ala/Saved/SaveGames": tags: - save when: @@ -44824,7 +44971,7 @@ Avatar of the Wolf: installDir: Avatar The Last Airbender - Quest for Balance: {} launch: - /Ala/Binaries/Win64/Ala-Win64-ShippingDRM.exe: + "/Ala/Binaries/Win64/Ala-Win64-ShippingDRM.exe": - when: - bit: 64 os: windows @@ -44835,7 +44982,7 @@ Avatarika: installDir: AVATARIKA: {} launch: - /launchpoint.exe: + "/launchpoint.exe": - when: - os: windows store: steam @@ -44845,7 +44992,7 @@ Avem33: installDir: Avem33: {} launch: - /w32_avem33.exe: + "/w32_avem33.exe": - when: - os: windows store: steam @@ -44855,7 +45002,7 @@ Avem888: installDir: Avem888: {} launch: - /w32_avem888_drm.exe: + "/w32_avem888_drm.exe": - when: - os: windows store: steam @@ -44868,12 +45015,12 @@ Avem888 VR: id: 702340 Aven Colony: files: - /AvenColony/Saved: + "/AvenColony/Saved": tags: - save when: - os: windows - /AvenColony/Saved/Config/WindowsNoEditor: + "/AvenColony/Saved/Config/WindowsNoEditor": tags: - config when: @@ -44883,21 +45030,21 @@ Aven Colony: installDir: Aven Colony: {} launch: - /AvenColony.exe: + "/AvenColony.exe": - when: - bit: 64 os: windows store: steam steam: id: 484900 -'Avencast: Rise of the Mage': +"Avencast: Rise of the Mage": files: - /cfg: + "/cfg": tags: - config when: - os: windows - /save: + "/save": tags: - save when: @@ -44907,10 +45054,10 @@ Aven Colony: installDir: Avencast: {} launch: - /Avencast.exe: + "/Avencast.exe": - when: - store: steam - /Options.exe: + "/Options.exe": - when: - store: steam steam: @@ -44919,20 +45066,20 @@ Avenger Bird: installDir: Avenger Bird: {} launch: - /Bird.app/Contents/MacOS/Bird: + "/Bird.app/Contents/MacOS/Bird": - when: - os: mac store: steam - /Bird.exe: + "/Bird.exe": - when: - os: windows store: steam - /Bird.x86: + "/Bird.x86": - when: - bit: 32 os: linux store: steam - /Bird.x86_64: + "/Bird.x86_64": - when: - bit: 64 os: linux @@ -44943,7 +45090,7 @@ Avenging Angel: installDir: Avenging Angel: {} launch: - /AvengingAngel.exe: + "/AvengingAngel.exe": - when: - os: windows store: steam @@ -44951,21 +45098,21 @@ Avenging Angel: id: 367240 Avernum: files: - /irunin.ini: + "/irunin.ini": tags: - config when: - os: windows gog: id: 1207663333 -'Avernum 2: Crystal Souls': +"Avernum 2: Crystal Souls": files: - /Spiderweb Software/Avernum 2 Saved Games: + "/Spiderweb Software/Avernum 2 Saved Games": tags: - save when: - os: windows - /Spiderweb Software/Avernum 2 Saved Games/Avernum2Settings.dat: + "/Spiderweb Software/Avernum 2 Saved Games/Avernum2Settings.dat": tags: - config when: @@ -44975,24 +45122,24 @@ Avernum: installDir: Avernum 2 Crystal Souls: {} launch: - /Avernum 2.app: + "/Avernum 2.app": - when: - os: mac store: steam - /Avernum 2.exe: + "/Avernum 2.exe": - when: - os: windows store: steam steam: id: 337850 -'Avernum 3: Ruined World': +"Avernum 3: Ruined World": files: - /Spiderweb Software/Avernum 3 Saved Games: + "/Spiderweb Software/Avernum 3 Saved Games": tags: - save when: - os: windows - /Spiderweb Software/Avernum 3 Saved Games/Avernum3Settings.dat: + "/Spiderweb Software/Avernum 3 Saved Games/Avernum3Settings.dat": tags: - config when: @@ -45002,11 +45149,11 @@ Avernum: installDir: Avernum 3 Ruined World: {} launch: - /Avernum 3.app: + "/Avernum 3.app": - when: - os: mac store: steam - /Avernum 3.exe: + "/Avernum 3.exe": - when: - os: windows store: steam @@ -45014,7 +45161,7 @@ Avernum: id: 691830 Avernum II: files: - /irunin.ini: + "/irunin.ini": tags: - config when: @@ -45023,7 +45170,7 @@ Avernum II: id: 1207663353 Avernum III: files: - /irunin.ini: + "/irunin.ini": tags: - config when: @@ -45032,12 +45179,12 @@ Avernum III: id: 1207663373 Avernum IV: files: - /Data: + "/Data": tags: - save when: - os: windows - /irunin.ini: + "/irunin.ini": tags: - config when: @@ -45047,26 +45194,27 @@ Avernum IV: installDir: Avernum 4: {} launch: - /Avernum 4.exe: + "/Avernum 4.exe": - when: - store: steam steam: id: 206020 Avernum V: files: - /Documents/Spiderweb Software/Avernum 5 Saved Games: + "/Documents/Spiderweb Software/Avernum 5 Saved Games": tags: - config - save when: - os: mac - /Avernum 5 Saved Games: + "/Avernum 5 Saved Games": tags: - config - save when: - - store: steam - /Spiderweb Software/Avernum 5 Saved Games: + - os: windows + store: steam + "/Spiderweb Software/Avernum 5 Saved Games": tags: - config - save @@ -45077,35 +45225,35 @@ Avernum V: installDir: Avernum 5: {} launch: - /Avernum 5.exe: + "/Avernum 5.exe": - when: - store: steam steam: id: 206040 Avernum VI: files: - /Documents/Spiderweb Software/Avernum 6 Saved Games: + "/Documents/Spiderweb Software/Avernum 6 Saved Games": tags: - config - save when: - os: mac - /Library/Application Support/Spiderweb Software/Avernum 6 Saved Games: + "/Library/Application Support/Spiderweb Software/Avernum 6 Saved Games": tags: - config when: - os: mac - /Library/Application Support/Spiderweb Software/Avernum 6 Saved Games/Save*: + "/Library/Application Support/Spiderweb Software/Avernum 6 Saved Games/Save*": tags: - save when: - os: mac - /Spiderweb Software/Avernum 6 Saved Games: + "/Spiderweb Software/Avernum 6 Saved Games": tags: - config when: - os: windows - /Spiderweb Software/Avernum 6 Saved Games/Save*: + "/Spiderweb Software/Avernum 6 Saved Games/Save*": tags: - save when: @@ -45115,29 +45263,29 @@ Avernum VI: installDir: Avernum 6: {} launch: - /Avernum 6.exe: + "/Avernum 6.exe": - when: - store: steam steam: id: 206060 -'Avernum: Escape from the Pit': +"Avernum: Escape from the Pit": files: - /Library/Application Support/Spiderweb Software/Avernum Saved Games: + "/Library/Application Support/Spiderweb Software/Avernum Saved Games": tags: - save when: - os: mac - /Library/Containers/com.spiderwebsoftware.Avernum/Data/Library/Application Support/Spiderweb Software/Avernum Saved Games: + "/Library/Containers/com.spiderwebsoftware.Avernum/Data/Library/Application Support/Spiderweb Software/Avernum Saved Games": tags: - save when: - os: mac - /Spiderweb Software/Avernum Saved Games: + "/Spiderweb Software/Avernum Saved Games": tags: - save when: - os: windows - /Spiderweb Software/Avernum Saved Games/AvernumSettings.dat: + "/Spiderweb Software/Avernum Saved Games/AvernumSettings.dat": tags: - config when: @@ -45147,11 +45295,11 @@ Avernum VI: installDir: Avernum Escape From the Pit: {} launch: - /Avernum.app: + "/Avernum.app": - when: - os: mac store: steam - /Avernum.exe: + "/Avernum.exe": - when: - os: windows store: steam @@ -45161,7 +45309,7 @@ Avernus: installDir: Avernus: {} launch: - /Avernus.exe: + "/Avernus.exe": - when: - os: windows store: steam @@ -45170,24 +45318,24 @@ Avernus: Averon Rising: steam: id: 1171180 -'Aveyond 4: Shadow of the Mist': +"Aveyond 4: Shadow of the Mist": installDir: Aveyond 4 Shadow Of The Mist: {} launch: - /Aveyond4.exe: + "/Aveyond4.exe": - when: - os: windows store: steam steam: id: 433920 -'Aveyond: Gates of Night': +"Aveyond: Gates of Night": files: - /Aveyond 3/*.txt: + "/Aveyond 3/*.txt": tags: - config when: - os: windows - /Aveyond 3/Chapter 2/Save*.rxdata: + "/Aveyond 3/Chapter 2/Save*.rxdata": tags: - save when: @@ -45195,21 +45343,21 @@ Averon Rising: installDir: Aveyond Gates of Night: {} launch: - /Aveyond - Gates of Night.exe: + "/Aveyond - Gates of Night.exe": - when: - bit: 32 os: windows store: steam steam: id: 278490 -'Aveyond: Lord of Twilight': +"Aveyond: Lord of Twilight": files: - /Aveyond 3/*.txt: + "/Aveyond 3/*.txt": tags: - config when: - os: windows - /Aveyond 3/Chapter 1/Save*.rxdata: + "/Aveyond 3/Chapter 1/Save*.rxdata": tags: - save when: @@ -45217,34 +45365,34 @@ Averon Rising: installDir: Aveyond Lord of Twilight: {} launch: - /Aveyond - Lord of Twilight.exe: + "/Aveyond - Lord of Twilight.exe": - when: - bit: 32 os: windows store: steam steam: id: 272010 -'Aveyond: The Darkthrop Prophecy': +"Aveyond: The Darkthrop Prophecy": installDir: Aveyond The Darkthrop Prophecy: {} launch: - /Aveyond - The Darkthrop Prophecy.exe: + "/Aveyond - The Darkthrop Prophecy.exe": - when: - store: steam steam: id: 321890 -'Aveyond: The Lost Orb': +"Aveyond: The Lost Orb": installDir: Aveyond The Lost Orb: {} launch: - /Aveyond - The Lost Orb.exe: + "/Aveyond - The Lost Orb.exe": - when: - store: steam steam: id: 321880 Aviary Attorney: files: - /AviaryAttorney/IndexedDB/file__0.indexeddb.leveldb: + "/AviaryAttorney/IndexedDB/file__0.indexeddb.leveldb": tags: - save when: @@ -45252,11 +45400,11 @@ Aviary Attorney: installDir: Aviary Attorney: {} launch: - /aviaryattorney.app: + "/aviaryattorney.app": - when: - os: mac store: steam - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -45269,7 +45417,7 @@ Aviator - Bush Pilot: installDir: Aviator - Bush Pilot: {} launch: - /Buschpilot.exe: + "/Buschpilot.exe": - when: - os: windows store: steam @@ -45279,11 +45427,11 @@ Aviators: installDir: Aviators: {} launch: - /Aviators.app: + "/Aviators.app": - when: - os: mac store: steam - /Aviators.exe: + "/Aviators.exe": - when: - os: windows store: steam @@ -45291,7 +45439,7 @@ Aviators: id: 513310 Avicii Invector: files: - /AppData/LocalLow/Hello There Games/AVICII Invector//save.dat: + "/AppData/LocalLow/Hello There Games/AVICII Invector//save.dat": tags: - save when: @@ -45301,7 +45449,7 @@ Avicii Invector: installDir: Avicii - Invector: {} launch: - /AVICII Invector.exe: + "/AVICII Invector.exe": - when: - store: steam registry: @@ -45314,7 +45462,7 @@ Avis Rapida - Aerobatic Racing: installDir: Avis Rapida: {} launch: - /Avis Rapida.exe: + "/Avis Rapida.exe": - when: - bit: 64 os: windows @@ -45325,7 +45473,7 @@ AvoCuddle: installDir: AvoCuddle: {} launch: - /AvoCuddle.exe: + "/AvoCuddle.exe": - when: - os: windows store: steam @@ -45335,15 +45483,15 @@ Avoid - Sensory Overload: installDir: Avoid Sensory Overload: {} launch: - /avoid.app: + "/avoid.app": - when: - os: mac store: steam - /avoid.exe: + "/avoid.exe": - when: - os: windows store: steam - /avoid.x86: + "/avoid.x86": - when: - os: linux store: steam @@ -45353,8 +45501,8 @@ Avoid The Monsters: installDir: Avoid The Monsters: {} launch: - /lobster.exe: - - arguments: '--verbose --noconsole -- --steam' + "/lobster.exe": + - arguments: "--verbose --noconsole -- --steam" when: - bit: 32 os: windows @@ -45365,7 +45513,7 @@ Avoidon: installDir: Avoidon: {} launch: - /Avoidon.exe: + "/Avoidon.exe": - when: - os: windows store: steam @@ -45373,12 +45521,12 @@ Avoidon: id: 936580 Avorion: files: - /.avorion: + "/.avorion": tags: - save when: - os: linux - /Avorion: + "/Avorion": tags: - save when: @@ -45386,14 +45534,16 @@ Avorion: installDir: Avorion: {} launch: - /bin/Avorion: - - arguments: '--serverpath=bin/AvorionServer' + "/bin/Avorion": + - arguments: "--serverpath=bin/AvorionServer" when: + - os: mac + store: steam - bit: 64 os: linux store: steam - /bin/Avorion.exe: - - arguments: '--serverpath=bin/AvorionServer.exe' + "/bin/Avorion.exe": + - arguments: "--serverpath=bin/AvorionServer.exe" when: - bit: 64 os: windows @@ -45407,7 +45557,7 @@ Aw Nutz: installDir: Aw Nutz: {} launch: - /AwNuts.exe: + "/AwNuts.exe": - when: - os: windows store: steam @@ -45421,7 +45571,7 @@ Awake: AWAKE: {} steam: id: 421110 -'Awake: Episode One': +"Awake: Episode One": installDir: AwakeEpisodeOne: {} steam: @@ -45431,11 +45581,11 @@ Awaken: Awaken: {} steam: id: 555970 -'Awaken: Gunpowder Adventurer Day.Dream': +"Awaken: Gunpowder Adventurer Day.Dream": installDir: AWAKEN:Gunpowder Adventurer Day.Dream: {} launch: - /Awaken.exe: + "/Awaken.exe": - when: - os: windows store: steam @@ -45445,11 +45595,11 @@ Awakened: installDir: Awakened: {} launch: - /Awakened (MAC).app/Contents/MacOS/Awakened: + "/Awakened (MAC).app/Contents/MacOS/Awakened": - when: - os: mac store: steam - /Awakened(PC)/Awakened (PC) .exe: + "/Awakened(PC)/Awakened (PC) .exe": - when: - os: windows store: steam @@ -45459,16 +45609,16 @@ Awakening of Celestial: installDir: Awakening of Celestial: {} launch: - /Awakening of Celestial.exe: + "/Awakening of Celestial.exe": - arguments: windowed when: - os: windows store: steam - /Awakening of Celestial.x86: + "/Awakening of Celestial.x86": - when: - os: linux store: steam - /MAC OSX.app: + "/MAC OSX.app": - when: - os: mac store: steam @@ -45478,74 +45628,74 @@ Awakening of Solutio: installDir: Awakening of Solutio: {} launch: - /Awakening of Solutio.exe: + "/Awakening of Solutio.exe": - when: - store: steam steam: id: 464820 -'Awakening: Moonfell Wood': +"Awakening: Moonfell Wood": installDir: Awakening Moonfell Wood: {} launch: - /Awakening2.exe: + "/Awakening2.exe": - when: - os: windows store: steam steam: id: 897020 -'Awakening: The Dreamless Castle': +"Awakening: The Dreamless Castle": installDir: Awakening The Dreamless Castle: {} launch: - /Awakening The Dreamless Castle.exe: + "/Awakening The Dreamless Castle.exe": - when: - os: windows store: steam steam: id: 1055690 -'Awakening: The Goblin Kingdom': +"Awakening: The Goblin Kingdom": installDir: - Awakening The Goblin Kingdom Collector's Edition: {} + "Awakening The Goblin Kingdom Collector's Edition": {} launch: - /Awakening_TheGoblinKingdom.exe: + "/Awakening_TheGoblinKingdom.exe": - when: - os: windows store: steam steam: id: 695960 -'Awakening: The Golden Age': +"Awakening: The Golden Age": installDir: - Awakening The Golden Age Collector's Edition: {} + "Awakening The Golden Age Collector's Edition": {} launch: - /Awakening_TheGoldenAge_CE.exe: + "/Awakening_TheGoldenAge_CE.exe": - when: - store: steam steam: id: 586680 -'Awakening: The Redleaf Forest': +"Awakening: The Redleaf Forest": installDir: - Awakening The Redleaf Forest Collector's Edition: {} + "Awakening The Redleaf Forest Collector's Edition": {} launch: - /Awakening_RedleafForestCE.exe: + "/Awakening_RedleafForestCE.exe": - when: - store: steam steam: id: 455080 -'Awakening: The Skyward Castle': +"Awakening: The Skyward Castle": installDir: - Awakening The Skyward Castle Collector's Edition: {} + "Awakening The Skyward Castle Collector's Edition": {} launch: - /Awakening_SkywardCastleCE.exe: + "/Awakening_SkywardCastleCE.exe": - when: - os: windows store: steam steam: id: 815540 -'Awakening: The Sunhook Spire': +"Awakening: The Sunhook Spire": installDir: - Awakening The Sunhook Spire Collector's Edition: {} + "Awakening The Sunhook Spire Collector's Edition": {} launch: - /Awakening_SunhookSpireCE.exe: + "/Awakening_SunhookSpireCE.exe": - when: - store: steam steam: @@ -45554,7 +45704,7 @@ Award. Room of Fear: installDir: Award. Room of fear: {} launch: - /Award.exe: + "/Award.exe": - when: - bit: 64 os: windows @@ -45565,7 +45715,7 @@ Aware: installDir: Aware: {} launch: - /aware.exe: + "/aware.exe": - when: - store: steam steam: @@ -45574,11 +45724,11 @@ Awareness Rooms: installDir: Awareness Rooms: {} launch: - /AwarenessRooms.app: + "/AwarenessRooms.app": - when: - os: mac store: steam - /AwarenessRooms.exe: + "/AwarenessRooms.exe": - when: - os: windows store: steam @@ -45588,33 +45738,33 @@ Away: installDir: Away: {} launch: - /Away.exe: + "/Away.exe": - when: - os: windows store: steam steam: id: 757910 -'Away From Earth: Moon': +"Away From Earth: Moon": steam: id: 1008530 -'Away From Earth: Titan': +"Away From Earth: Titan": steam: id: 1083120 -'Away From Earth: Titan 2': +"Away From Earth: Titan 2": steam: id: 1119930 Away from beauty 色即是空: installDir: Away From Beauty: {} launch: - /Away From Beauty.exe: + "/Away From Beauty.exe": - when: - store: steam steam: id: 806540 -'Away: Journey to the Unexpected': +"Away: Journey to the Unexpected": files: - /AppData/LocalLow/Playdius/Away Journey to the Unexpected: + "/AppData/LocalLow/Playdius/Away Journey to the Unexpected": tags: - save when: @@ -45624,7 +45774,7 @@ Away from beauty 色即是空: installDir: AWAY: {} launch: - /Away.exe: + "/Away.exe": - when: - store: steam registry: @@ -45633,11 +45783,11 @@ Away from beauty 色即是空: - config steam: id: 573110 -'Away: The Survival Series': +"Away: The Survival Series": installDir: AWAY The Survival Series: {} launch: - /Away.exe: + "/Away.exe": - when: - bit: 64 os: windows @@ -45646,7 +45796,7 @@ Away from beauty 色即是空: id: 750200 Awe: files: - /Saves: + "/Saves": tags: - save when: @@ -45654,21 +45804,24 @@ Awe: installDir: Awe: {} launch: - /Awe.app: + "/Awe.app": - when: - os: mac store: steam - /Awe.exe: + "/Awe.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam - /Awe.x86: + "/Awe.x86": - when: - bit: 32 os: linux store: steam - /Awe.x86_64: + "/Awe.x86_64": - when: - bit: 64 os: linux @@ -45679,7 +45832,7 @@ Awe of Despair: installDir: Awe of Despair: {} launch: - /WindowsNoEditor/AweOfDespair.exe: + "/WindowsNoEditor/AweOfDespair.exe": - arguments: /Game/ApartmentMapMainMenu.umap when: - os: windows @@ -45690,7 +45843,7 @@ Awesome Machine: installDir: Awesome Machine: {} launch: - /AwesomeMachine.exe: + "/AwesomeMachine.exe": - when: - os: windows store: steam @@ -45712,7 +45865,7 @@ Awesome Pea: installDir: Awesome Pea: {} launch: - /AwesomePea.exe: + "/AwesomePea.exe": - when: - os: windows store: steam @@ -45722,7 +45875,7 @@ Awesome Pea 2: installDir: Awesome Pea 2: {} launch: - /Awesome Pea 2.exe: + "/Awesome Pea 2.exe": - when: - os: windows store: steam @@ -45738,32 +45891,32 @@ Awesome taxi: id: 1097950 Awesomenauts: files: - /Config.txt: + "/Config.txt": tags: - config when: - os: windows - /Controlschemes.xml: + "/Controlschemes.xml": tags: - config when: - os: windows - /userdata//204300/remote: + "/userdata//204300/remote": tags: - save when: - store: steam - /Awesomenauts/Config.txt: + "/Awesomenauts/Config.txt": tags: - config when: - os: linux - /Awesomenauts/Controlschemes.xml: + "/Awesomenauts/Controlschemes.xml": tags: - config when: - os: linux - /Awesomenauts/save.txt: + "/Awesomenauts/save.txt": tags: - save when: @@ -45771,23 +45924,23 @@ Awesomenauts: installDir: Awesomenauts: {} launch: - /Awesomenauts.app/Contents/MacOS/Awesomenauts: + "/Awesomenauts.app/Contents/MacOS/Awesomenauts": - when: - os: mac store: steam - /AwesomenautsLauncher.exe: + "/AwesomenautsLauncher.exe": - when: - os: windows store: steam - /awesomeLauncher.app/Contents/MacOS/awesomeLauncher: + "/awesomeLauncher.app/Contents/MacOS/awesomeLauncher": - when: - os: mac store: steam - /run_game.sh: + "/run_game.sh": - when: - os: linux store: steam - /run_settings.sh: + "/run_settings.sh": - when: - os: linux store: steam @@ -45797,7 +45950,7 @@ Awkward: installDir: Awkward: {} launch: - /AKW.exe: + "/AKW.exe": - when: - bit: 64 os: windows @@ -45808,7 +45961,7 @@ Awkward Date Hero: installDir: Awkward Date Hero: {} launch: - /AwkwardDateHero.exe: + "/AwkwardDateHero.exe": - when: - os: windows store: steam @@ -45818,20 +45971,20 @@ Awkward Dimensions Redux: installDir: Awkward Dimensions Redux: {} launch: - /Awkward Dimensions Redux.app: + "/Awkward Dimensions Redux.app": - when: - os: mac store: steam - /Awkward Dimensions Redux.exe: + "/Awkward Dimensions Redux.exe": - when: - os: windows store: steam - /Awkward Dimensions Redux.x86: + "/Awkward Dimensions Redux.x86": - when: - bit: 32 os: linux store: steam - /Awkward Dimensions Redux.x86_64: + "/Awkward Dimensions Redux.x86_64": - when: - bit: 64 os: linux @@ -45842,7 +45995,7 @@ Axan Ships: installDir: Axan Ships: {} launch: - /Axan_Ships.exe: + "/Axan_Ships.exe": - when: - os: windows store: steam @@ -45852,7 +46005,7 @@ Axan Ships - Low Poly: installDir: Axan Ships - Low Poly: {} launch: - /Axan_Ships.exe: + "/Axan_Ships.exe": - when: - os: windows store: steam @@ -45862,7 +46015,7 @@ Axe Prime: installDir: Axe Prime: {} launch: - /AxePrime.exe: + "/AxePrime.exe": - when: - os: windows store: steam @@ -45873,26 +46026,26 @@ Axe Throw VR: Axe Throw VR: {} steam: id: 928370 -'Axe, Bow & Staff': +"Axe, Bow & Staff": installDir: Axe Bow Staff: {} launch: - /Axe Bow Staff.app: + "/Axe Bow Staff.app": - when: - os: mac store: steam - /Axe Bow Staff.exe: + "/Axe Bow Staff.exe": - when: - os: windows store: steam - /Axe Bow Staff.x86: - - arguments: '-force-opengl' + "/Axe Bow Staff.x86": + - arguments: "-force-opengl" when: - bit: 32 os: linux store: steam - /Axe Bow Staff.x86_64: - - arguments: '-force-opengl' + "/Axe Bow Staff.x86_64": + - arguments: "-force-opengl" when: - bit: 64 os: linux @@ -45903,7 +46056,7 @@ Axel & Pixel: installDir: Axel and Pixel: {} launch: - /ap.exe: + "/ap.exe": - when: - store: steam steam: @@ -45912,23 +46065,23 @@ Axes and Acres: installDir: Axes and Acres: {} launch: - /axes.app/Contents/MacOS/axes: + "/axes.app/Contents/MacOS/axes": - when: - os: mac store: steam - /axes.x86: - - arguments: '-force-opengl -show-screen-selector' + "/axes.x86": + - arguments: "-force-opengl -show-screen-selector" when: - bit: 32 os: linux store: steam - /axes.x86_64: - - arguments: '-force-opengl -show-screen-selector' + "/axes.x86_64": + - arguments: "-force-opengl -show-screen-selector" when: - bit: 64 os: linux store: steam - /axesandacres.exe: + "/axesandacres.exe": - when: - os: windows store: steam @@ -45938,7 +46091,7 @@ Axes and Arrows: installDir: Axes and Arrows: {} launch: - /axesandarrows.exe: + "/axesandarrows.exe": - when: - os: windows store: steam @@ -45948,7 +46101,7 @@ Axiel: installDir: Axiel: {} launch: - /Axiel.exe: + "/Axiel.exe": - when: - os: windows store: steam @@ -45956,7 +46109,7 @@ Axiel: id: 1208040 Axiom Soccer: files: - /Axiom Soccer/Saved/Config/WindowsNoEditor: + "/Axiom Soccer/Saved/Config/WindowsNoEditor": tags: - config when: @@ -45964,7 +46117,7 @@ Axiom Soccer: installDir: Axiom Soccer: {} launch: - /Axiom Soccer.exe: + "/Axiom Soccer.exe": - when: - bit: 64 os: windows @@ -45973,13 +46126,13 @@ Axiom Soccer: id: 903730 Axiom Verge: files: - /userdata//332200/remote: + "/userdata//332200/remote": tags: - config - save when: - store: steam - /SavedGames/AxiomVerge/Saves: + "/SavedGames/AxiomVerge/Saves": tags: - config - save @@ -45988,15 +46141,15 @@ Axiom Verge: installDir: Axiom Verge: {} launch: - /AxiomVerge: + "/AxiomVerge": - when: - os: linux store: steam - /AxiomVerge.app: + "/AxiomVerge.app": - when: - os: mac store: steam - /AxiomVerge.exe: + "/AxiomVerge.exe": - when: - os: windows store: steam @@ -46004,7 +46157,7 @@ Axiom Verge: id: 332200 Axiom Verge 2: files: - /SavedGames/AxiomVerge2: + "/SavedGames/AxiomVerge2": tags: - config - save @@ -46013,7 +46166,7 @@ Axiom Verge 2: installDir: Axiom Verge 2: {} launch: - /AxiomVerge2.exe: + "/AxiomVerge2.exe": - when: - os: windows store: steam @@ -46023,21 +46176,21 @@ Axion: installDir: Axion: {} launch: - /Start.bat: + "/Start.bat": - when: - store: steam steam: id: 380570 Axis & Allies (2004): files: - /A&A/data: + "/A&A/data": tags: - save when: - os: windows Axis & Allies 1942 Online: files: - /axisandalliesonline-desktop/local-settings: + "/axisandalliesonline-desktop/local-settings": tags: - config when: @@ -46047,16 +46200,16 @@ Axis & Allies 1942 Online: installDir: Axis & Allies Online: {} launch: - /AxisAndAllies1942Online: + "/AxisAndAllies1942Online": - when: - bit: 64 os: linux store: steam - /AxisAndAllies1942Online.app: + "/AxisAndAllies1942Online.app": - when: - os: mac store: steam - /AxisAndAllies1942Online.exe: + "/AxisAndAllies1942Online.exe": - when: - os: windows store: steam @@ -46066,15 +46219,15 @@ Axis Football 2015: installDir: Axis Football 2015: {} launch: - /AxisFootball15.app: + "/AxisFootball15.app": - when: - os: mac store: steam - /AxisFootball15.exe: + "/AxisFootball15.exe": - when: - os: windows store: steam - /AxisFootball15.x86: + "/AxisFootball15.x86": - when: - os: linux store: steam @@ -46084,15 +46237,15 @@ Axis Football 2016: installDir: Axis Football 2016: {} launch: - /Axis Football 2016.app: + "/Axis Football 2016.app": - when: - os: mac store: steam - /Axis Football 2016.exe: + "/Axis Football 2016.exe": - when: - os: windows store: steam - /Axis Football 2016.x86: + "/Axis Football 2016.x86": - when: - os: linux store: steam @@ -46102,15 +46255,15 @@ Axis Football 2017: installDir: Axis Football 2017: {} launch: - /Axis Football 2017.app: + "/Axis Football 2017.app": - when: - os: mac store: steam - /Axis Football 2017.exe: + "/Axis Football 2017.exe": - when: - os: windows store: steam - /Axis Football 2017.x86: + "/Axis Football 2017.x86": - when: - os: linux store: steam @@ -46120,15 +46273,15 @@ Axis Football 2018: installDir: Axis Football 2018: {} launch: - /Axis Football 2018.app: + "/Axis Football 2018.app": - when: - os: mac store: steam - /Axis Football 2018.exe: + "/Axis Football 2018.exe": - when: - os: windows store: steam - /Axis Football 2018.x86: + "/Axis Football 2018.x86": - when: - os: linux store: steam @@ -46138,15 +46291,15 @@ Axis Football 2019: installDir: Axis Football 2019: {} launch: - /Axis Football 2019.app: + "/Axis Football 2019.app": - when: - os: mac store: steam - /Axis Football 2019.exe: + "/Axis Football 2019.exe": - when: - os: windows store: steam - /Axis Football 2019.x86_64: + "/Axis Football 2019.x86_64": - when: - os: linux store: steam @@ -46156,25 +46309,25 @@ Axis Football 2021: installDir: Axis Football 2021: {} launch: - /Axis Football 2021.app: + "/Axis Football 2021.app": - when: - os: mac store: steam - /Axis Football 2021.exe: + "/Axis Football 2021.exe": - when: - os: windows store: steam - /Axis Football 2021.x86_64: + "/Axis Football 2021.x86_64": - when: - os: linux store: steam steam: id: 1641830 -Aya's Journey: +"Aya's Journey": installDir: - Aya's Journey: {} + "Aya's Journey": {} launch: - /PTPlayer.exe: + "/PTPlayer.exe": - when: - os: windows store: steam @@ -46187,7 +46340,7 @@ Ayahuasca: id: 1212940 Ayakashigami: files: - /アヤカシガミ/save.dat: + "/アヤカシガミ/save.dat": tags: - save when: @@ -46195,7 +46348,7 @@ Ayakashigami: installDir: ayakashigami: {} launch: - /ayakashigami100.exe: + "/ayakashigami100.exe": - when: - os: windows store: steam @@ -46205,11 +46358,11 @@ Ayni Fairyland: installDir: AyniFairyland: {} launch: - /AyniFairylandUnity.app/Contents/MacOS/AyniFairylandUnity: + "/AyniFairylandUnity.app/Contents/MacOS/AyniFairylandUnity": - when: - os: mac store: steam - /AyniFairylandUnity.exe: + "/AyniFairylandUnity.exe": - when: - os: windows store: steam @@ -46219,30 +46372,30 @@ Ayo the Clown: installDir: Ayo the Clown: {} launch: - /Ayo The Clown Linux.x86_64: + "/Ayo The Clown Linux.x86_64": - when: - os: linux store: steam - /Ayo The Clown.exe: + "/Ayo The Clown.exe": - when: - os: windows store: steam - /Contents/MacOS/Ayo The Clown: + "/Contents/MacOS/Ayo The Clown": - when: - os: mac store: steam steam: id: 1114900 -'Ayo: A Rain Tale': +"Ayo: A Rain Tale": installDir: Ayo A Rain Tale: {} launch: - /Ayo.app: + "/Ayo.app": - when: - bit: 64 os: mac store: steam - /Ayo.exe: + "/Ayo.exe": - when: - os: windows store: steam @@ -46252,18 +46405,18 @@ Ayre: installDir: Ayre: {} launch: - /Ayre.exe: + "/Ayre.exe": - when: - bit: 64 os: windows store: steam steam: id: 987810 -'Ayumi: Enhanced Edition': +"Ayumi: Enhanced Edition": installDir: Ayumi Enhanced Edition: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -46273,41 +46426,41 @@ Azada: installDir: Azada: {} launch: - /Azada.app: + "/Azada.app": - when: - os: mac store: steam - /Azada.exe: + "/Azada.exe": - when: - os: windows store: steam steam: id: 7340 -'Azada: Ancient Magic': +"Azada: Ancient Magic": installDir: Azada Ancient Magic: {} launch: - /AzadaAncientMagic.exe: + "/AzadaAncientMagic.exe": - when: - os: windows store: steam steam: id: 838700 -'Azada: Elementa': +"Azada: Elementa": installDir: - Azada Elementa Collector's Edition: {} + "Azada Elementa Collector's Edition": {} launch: - /Azada_Elementa_CE.exe: + "/Azada_Elementa_CE.exe": - when: - os: windows store: steam steam: id: 596400 -'Azada: In Libro': +"Azada: In Libro": installDir: - Azada® In Libro Collector's Edition: {} + "Azada® In Libro Collector's Edition": {} launch: - /Azada_In_Libro.exe: + "/Azada_In_Libro.exe": - when: - os: windows store: steam @@ -46317,17 +46470,17 @@ Azai - TD: installDir: Azai - TD: {} launch: - /Azai.exe: + "/Azai.exe": - when: - os: windows store: steam steam: id: 681610 -'Azkend 2: The World Beneath': +"Azkend 2: The World Beneath": installDir: Azkend2: {} launch: - /Azkend2.exe: + "/Azkend2.exe": - when: - os: windows store: steam @@ -46337,19 +46490,19 @@ Aztaka: installDir: Aztaka: {} launch: - /Aztaka: + "/Aztaka": - when: - os: linux store: steam - /Aztaka.app: + "/Aztaka.app": - when: - os: mac store: steam - /Aztaka.exe: + "/Aztaka.exe": - when: - os: windows store: steam - /Setup.exe: + "/Setup.exe": - when: - os: windows store: steam @@ -46359,7 +46512,7 @@ Aztec Number: installDir: Aztec_Number: {} launch: - /AztecNumber.exe: + "/AztecNumber.exe": - when: - os: windows store: steam @@ -46374,7 +46527,7 @@ Aztec Venture: installDir: Aztec Venture: {} launch: - /AztecVenture.exe: + "/AztecVenture.exe": - when: - store: steam steam: @@ -46383,51 +46536,51 @@ Aztecalypse: installDir: Aztecalypse: {} launch: - /Aztecalypse.exe: + "/Aztecalypse.exe": - when: - os: windows store: steam steam: id: 517010 -'Aztech: Forgotten Gods': +"Aztech: Forgotten Gods": gog: id: 1844318817 installDir: Aztech Forgotten Gods: {} launch: - /Aztech Forgotten Gods.exe: + "/Aztech Forgotten Gods.exe": - when: - store: steam steam: id: 1592320 Aztez: files: - /.config/unity3d/Team Colorblind/Aztez/Campaign: + "/.config/unity3d/Team Colorblind/Aztez/Campaign": tags: - save when: - os: linux - /.config/unity3d/Team Colorblind/Aztez/Player.az: + "/.config/unity3d/Team Colorblind/Aztez/Player.az": tags: - config when: - os: linux - /AppData/LocalLow/TeamColorblind/Aztez/Campaign: + "/AppData/LocalLow/TeamColorblind/Aztez/Campaign": tags: - save when: - os: windows - /AppData/LocalLow/TeamColorblind/Aztez/Player.az: + "/AppData/LocalLow/TeamColorblind/Aztez/Player.az": tags: - config when: - os: windows - /Library/Application Support/com.TeamColorblind.Aztez/Campaign: + "/Library/Application Support/com.TeamColorblind.Aztez/Campaign": tags: - save when: - os: mac - /Library/Application Support/com.TeamColorblind.Aztez/Player.az: + "/Library/Application Support/com.TeamColorblind.Aztez/Player.az": tags: - config when: @@ -46435,15 +46588,15 @@ Aztez: installDir: Aztez: {} launch: - /Aztez.app: + "/Aztez.app": - when: - os: mac store: steam - /Aztez.exe: + "/Aztez.exe": - when: - os: windows store: steam - /Aztez.x86: + "/Aztez.x86": - when: - os: linux store: steam @@ -46451,7 +46604,7 @@ Aztez: id: 244750 Aztlan Uncovered: files: - /AztlanUncovered/Saved/SaveGames: + "/AztlanUncovered/Saved/SaveGames": tags: - save when: @@ -46459,20 +46612,20 @@ Aztlan Uncovered: installDir: Aztlan Uncovered: {} launch: - /AztlanUncovered.exe: + "/AztlanUncovered.exe": - when: - os: windows store: steam steam: id: 1873510 -'Azur Lane: Crosswave': +"Azur Lane: Crosswave": files: - /Azurlane/Saved/Config/WindowsNoEditor: + "/Azurlane/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /Azurlane/Saved/SaveData: + "/Azurlane/Saved/SaveData": tags: - save when: @@ -46480,7 +46633,7 @@ Aztlan Uncovered: installDir: Azur Lane Crosswave: {} launch: - /Azurlane.exe: + "/Azurlane.exe": - when: - bit: 64 os: windows @@ -46491,56 +46644,56 @@ Azura: installDir: AZURA: {} launch: - /Game.exe: - - arguments: '--in-process-gpu' + "/Game.exe": + - arguments: "--in-process-gpu" when: - store: steam steam: id: 709410 -'Azurael''s Circle: Chapter 1': +"Azurael's Circle: Chapter 1": installDir: - Azurael's Circle Chapter 1: {} + "Azurael's Circle Chapter 1": {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam steam: id: 872970 -'Azurael''s Circle: Chapter 2': +"Azurael's Circle: Chapter 2": installDir: - Azurael's Circle Chapter 2: {} + "Azurael's Circle Chapter 2": {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam steam: id: 893620 -'Azurael''s Circle: Chapter 3': +"Azurael's Circle: Chapter 3": installDir: - Azurael's Circle Chapter 3: {} + "Azurael's Circle Chapter 3": {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam steam: id: 980520 -'Azurael''s Circle: Chapter 4': +"Azurael's Circle: Chapter 4": installDir: - Azurael's Circle Chapter 4: {} + "Azurael's Circle Chapter 4": {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: id: 1060170 -'Azuran Tales: Trials': +"Azuran Tales: Trials": installDir: Azuran Tales Trials: {} launch: - /AzuranTrials.exe: + "/AzuranTrials.exe": - when: - bit: 64 os: windows @@ -46551,48 +46704,51 @@ Azure Reflections: installDir: Azure Reflections: {} launch: - /AzureReflections.exe: + "/AzureReflections.exe": - when: - os: windows store: steam - - arguments: '-ResetSettings' + - arguments: "-ResetSettings" when: - os: windows store: steam steam: id: 928440 -'Azure Saga: Pathfinder': +"Azure Saga: Pathfinder": installDir: Azure Saga Pathfinder: {} launch: - /Azure Saga - Pathfinder.app: + "/Azure Saga - Pathfinder.app": - when: - os: mac store: steam - /Azure Saga - Pathfinder.exe: + "/Azure Saga - Pathfinder.exe": - when: - bit: 32 os: windows store: steam + - bit: 64 + os: windows + store: steam steam: id: 672590 Azure Sky Project: installDir: Azure Sky Project: {} launch: - /ASP.exe: + "/ASP.exe": - when: - store: steam steam: id: 712650 Azure Striker Gunvolt: files: - /save/*.bin: + "/save/*.bin": tags: - save when: - os: windows - /save/gv_config.ini: + "/save/gv_config.ini": tags: - config when: @@ -46600,26 +46756,26 @@ Azure Striker Gunvolt: installDir: Azure Striker Gunvolt: {} launch: - /exe/gv_win.exe: + "/exe/gv_win.exe": - when: - os: windows store: steam - workingDir: /exe + workingDir: "/exe" steam: id: 388800 Azure Striker Gunvolt 2: files: - /win/save/gv2_save.bin: + "/win/save/gv2_save.bin": tags: - save when: - os: windows - /win/save/gv2_sys_save.bin: + "/win/save/gv2_sys_save.bin": tags: - save when: - os: windows - /win/save/gv_config.ini: + "/win/save/gv_config.ini": tags: - config when: @@ -46627,18 +46783,18 @@ Azure Striker Gunvolt 2: installDir: Azure Striker Gunvolt 2: {} launch: - /exe/GV2.exe: + "/exe/GV2.exe": - when: - os: windows store: steam - workingDir: /exe + workingDir: "/exe" steam: id: 1065180 -'Azure Wing: Rising Gale': +"Azure Wing: Rising Gale": installDir: Azure Wing Rising Gale: {} launch: - /AzureWing.exe: + "/AzureWing.exe": - when: - os: windows store: steam @@ -46648,15 +46804,15 @@ Azurea Juncture: installDir: Azurea Juncture: {} launch: - /Azurea_Juncture.app: + "/Azurea_Juncture.app": - when: - os: mac store: steam - /Azurea_Juncture.exe: + "/Azurea_Juncture.exe": - when: - os: windows store: steam - /Azurea_Juncture.sh: + "/Azurea_Juncture.sh": - when: - os: linux store: steam @@ -46666,7 +46822,7 @@ Azurebreak Heroes: installDir: Azurebreak Heroes: {} launch: - /AZBH.exe: + "/AZBH.exe": - when: - os: windows store: steam @@ -46676,7 +46832,7 @@ Azusa RP Online: installDir: Azusa Online: {} launch: - /Azusa.exe: + "/Azusa.exe": - when: - os: windows store: steam @@ -46686,7 +46842,7 @@ B: installDir: b: {} launch: - /b.exe: + "/b.exe": - when: - bit: 64 os: windows @@ -46697,36 +46853,36 @@ B A S E M E N T: installDir: Basement: {} launch: - /English/x32/WindowsNoEditor/StreamSurvival2.exe: + "/English/x32/WindowsNoEditor/StreamSurvival2.exe": - when: - bit: 32 os: windows store: steam - /English/x64/WindowsNoEditor/StreamSurvival2.exe: + "/English/x64/WindowsNoEditor/StreamSurvival2.exe": - when: - bit: 64 os: windows store: steam steam: id: 722010 -'B-12: Brantisky Mk. 12': +"B-12: Brantisky Mk. 12": installDir: B-12: {} launch: - /B-12.app: + "/B-12.app": - when: - os: mac store: steam - /B-12.exe: + "/B-12.exe": - when: - os: windows store: steam - /B-12.x86: + "/B-12.x86": - when: - bit: 32 os: linux store: steam - /B-12.x86_64: + "/B-12.x86_64": - when: - bit: 64 os: linux @@ -46735,22 +46891,22 @@ B A S E M E N T: id: 616640 B-17 Flying Fortress World War II Bombers in Action: files: - /*.BSG: + "/*.BSG": tags: - save when: - os: dos - /B17.CFG: + "/B17.CFG": tags: - config when: - os: dos - /game/*.BSG: + "/game/*.BSG": tags: - save when: - os: windows - /game/B17.CFG: + "/game/B17.CFG": tags: - config when: @@ -46761,9 +46917,9 @@ B-17 Flying Fortress World War II Bombers in Action: B-17 Flying Fortress World War II Bombers in Action: {} steam: id: 1634450 -'B-17 Flying Fortress: The Mighty 8th': +"B-17 Flying Fortress: The Mighty 8th": files: - /Saved Games: + "/Saved Games": tags: - save when: @@ -46773,7 +46929,7 @@ B-17 Flying Fortress World War II Bombers in Action: installDir: B-17 Flying Fortress: {} launch: - /B17Setup.exe: + "/B17Setup.exe": - when: - os: windows store: steam @@ -46796,7 +46952,7 @@ B.A.D Battle Armor Division: installDir: B.A.D Battle Armor Division: {} launch: - /BAD Battle Armor Division.exe: + "/BAD Battle Armor Division.exe": - when: - os: windows store: steam @@ -46806,7 +46962,7 @@ B.C.E.: installDir: BCE: {} launch: - /BCE.exe: + "/BCE.exe": - when: - os: windows store: steam @@ -46818,8 +46974,8 @@ B.I.O.T.A.: installDir: B.I.O.T.A: {} launch: - /nw.exe: - - arguments: '--in-process-gpu --disable-direct-composition' + "/nw.exe": + - arguments: "--in-process-gpu --disable-direct-composition" when: - os: windows store: steam @@ -46829,7 +46985,7 @@ B.U.T.T.O.N. (Brutally Unfair Tactics Totally OK Now): installDir: button: {} launch: - /B.U.T.T.O.N.exe: + "/B.U.T.T.O.N.exe": - when: - store: steam steam: @@ -46838,15 +46994,15 @@ B.i.t.Lock: installDir: B.i.t.Lock: {} launch: - /B.i.t.Lock.app: + "/B.i.t.Lock.app": - when: - os: mac store: steam - /B.i.t.Lock.exe: + "/B.i.t.Lock.exe": - when: - os: windows store: steam - /B.i.t.Lock.x86_64: + "/B.i.t.Lock.x86_64": - when: - bit: 64 os: linux @@ -46857,7 +47013,7 @@ B.m.g 19 - bike messenger go!: installDir: b.mg19: {} launch: - /b.m.g 19.exe: + "/b.m.g 19.exe": - when: - os: windows store: steam @@ -46873,7 +47029,7 @@ BAFF: installDir: BAFF: {} launch: - /BAFF.exe: + "/BAFF.exe": - when: - os: windows store: steam @@ -46883,7 +47039,7 @@ BAFF 2: installDir: BAFF 2: {} launch: - /BAFF 2.exe: + "/BAFF 2.exe": - when: - os: windows store: steam @@ -46893,7 +47049,7 @@ BAFF 3: installDir: BAFF 3: {} launch: - /BAFF 3.exe: + "/BAFF 3.exe": - when: - os: windows store: steam @@ -46903,7 +47059,7 @@ BAFF 4: installDir: BAFF 4: {} launch: - /BAFF 4.exe: + "/BAFF 4.exe": - when: - os: windows store: steam @@ -46913,19 +47069,19 @@ BAFL - Brakes Are For Losers: installDir: BAFL: {} launch: - /bafl.app: + "/bafl.app": - when: - os: mac store: steam - /bafl.exe: + "/bafl.exe": - when: - os: windows store: steam steam: id: 573070 -'BAJA: Edge of Control HD': +"BAJA: Edge of Control HD": files: - /BAJA Edge of Control HD/setup.ini: + "/BAJA Edge of Control HD/setup.ini": tags: - config when: @@ -46933,7 +47089,7 @@ BAFL - Brakes Are For Losers: installDir: BAJA Edge of Control HD: {} launch: - /XLBajaPC.exe: + "/XLBajaPC.exe": - when: - os: windows store: steam @@ -46943,7 +47099,7 @@ BALL!: installDir: BALL: {} launch: - /ball.exe: + "/ball.exe": - when: - os: windows store: steam @@ -46953,16 +47109,16 @@ BALSA Model Flight Simulator: installDir: BALSA Model Flight Simulator: {} launch: - /balsa.exe: + "/balsa.exe": - when: - store: steam steam: id: 977920 -'BANZAI PECAN: The Last Hope for the Young Century': +"BANZAI PECAN: The Last Hope for the Young Century": installDir: BANZAI PECAN The Last Hope For the Young Century: {} launch: - /BPECAN.exe: + "/BPECAN.exe": - when: - os: windows store: steam @@ -46977,11 +47133,11 @@ BARRICADEZ: installDir: BARRICADEZ: {} launch: - /BARRICADEZ.app: + "/BARRICADEZ.app": - when: - os: mac store: steam - /BARRICADEZ.exe: + "/BARRICADEZ.exe": - when: - bit: 64 os: windows @@ -46992,20 +47148,20 @@ BATALJ: installDir: BATALJ: {} launch: - /BATALJ.exe: + "/BATALJ.exe": - when: - bit: 64 os: windows store: steam steam: id: 981850 -'BATS: Bloodsucker Anti-Terror Squad': +"BATS: Bloodsucker Anti-Terror Squad": gog: id: 2012376195 installDir: BATS the Game: {} launch: - /B.A.T.S.exe: + "/B.A.T.S.exe": - when: - os: windows store: steam @@ -47015,7 +47171,7 @@ BATTLE POLYGON: installDir: BATTLE POLYGON: {} launch: - /BattlePolygon.exe: + "/BattlePolygon.exe": - when: - bit: 64 os: windows @@ -47026,7 +47182,7 @@ BATTLECREW Space Pirates: installDir: Battlecrew Space Pirates: {} launch: - /BSP.exe: + "/BSP.exe": - when: - os: windows store: steam @@ -47036,7 +47192,7 @@ BATTLLOON - バトルーン: installDir: BATTLLOON: {} launch: - /BATTLLOON.exe: + "/BATTLLOON.exe": - when: - os: windows store: steam @@ -47046,7 +47202,7 @@ BAX: installDir: Bax: {} launch: - /BAX.exe: + "/BAX.exe": - when: - os: windows store: steam @@ -47056,17 +47212,17 @@ BAYANI - Fighting Game: installDir: BAYANI: {} launch: - /Bayani.exe: + "/Bayani.exe": - when: - os: windows store: steam steam: id: 941020 -'BBB: Vestal (Visual Novel Vol. 1)': +"BBB: Vestal (Visual Novel Vol. 1)": installDir: BARE BOOB BRAWLERZ VNovel Vol.1: {} launch: - /BBB_VN_01.exe: + "/BBB_VN_01.exe": - when: - os: windows store: steam @@ -47076,7 +47232,7 @@ BBlocks: installDir: BBlocks: {} launch: - /BBlocks.exe: + "/BBlocks.exe": - when: - store: steam steam: @@ -47085,19 +47241,19 @@ BC Kings: installDir: BC Kings: {} launch: - /BCKings.exe: + "/BCKings.exe": - when: - store: steam steam: id: 12460 -'BDSM: Big Drunk Satanic Massacre': +"BDSM: Big Drunk Satanic Massacre": files: - /AppData/LocalLow/Big Way Games/Big Drunk Satanic Massacre/Users/SteamUser_: + "/AppData/LocalLow/Big Way Games/Big Drunk Satanic Massacre/Users/SteamUser_": tags: - config when: - os: windows - /AppData/LocalLow/Big Way Games/Big Drunk Satanic Massacre/Users/SteamUser_/Player: + "/AppData/LocalLow/Big Way Games/Big Drunk Satanic Massacre/Users/SteamUser_/Player": tags: - save when: @@ -47111,21 +47267,21 @@ BC Kings: installDir: Big Drunk Satanic Massacre: {} launch: - /Big Drunk Satanic Massacre.app: + "/Big Drunk Satanic Massacre.app": - when: - os: mac store: steam - /Big Drunk Satanic Massacre.exe: + "/Big Drunk Satanic Massacre.exe": - when: - os: windows store: steam steam: id: 669950 -'BDSM: Big Drunk Satanic Massacre Demo': +"BDSM: Big Drunk Satanic Massacre Demo": installDir: BDSM Big Drunk Satanic Massacre Demo: {} launch: - /BDSM Big Drunk Satanic Massacre Demo.exe: + "/BDSM Big Drunk Satanic Massacre Demo.exe": - when: - os: windows store: steam @@ -47135,35 +47291,35 @@ BE-A Walker: installDir: BE-A Walker: {} launch: - /Walker.exe: + "/Walker.exe": - when: - bit: 64 os: windows store: steam - /walker.app: + "/walker.app": - when: - os: mac store: steam - /walker.x86_64: + "/walker.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 864160 -"BEARS, VODKA, BALALAIKA! \U0001F43B": +"BEARS, VODKA, BALALAIKA! 🐻": installDir: - "BEARS, VODKA, BALALAIKA! \U0001F43B": {} + "BEARS, VODKA, BALALAIKA! 🐻": {} launch: - '/BEARS, VODKA, BALALAIKA!.app/Contents/MacOS/BEARS, VODKA, BALALAIKA!': + "/BEARS, VODKA, BALALAIKA!.app/Contents/MacOS/BEARS, VODKA, BALALAIKA!": - when: - os: mac store: steam - '/BEARS, VODKA, BALALAIKA!.exe': + "/BEARS, VODKA, BALALAIKA!.exe": - when: - os: windows store: steam - '/BEARS, VODKA, BALALAIKA!.x86_64': + "/BEARS, VODKA, BALALAIKA!.x86_64": - when: - os: linux store: steam @@ -47179,21 +47335,21 @@ BEATris: installDir: BEATris: {} launch: - /BEATris.exe: + "/BEATris.exe": - when: - os: windows store: steam steam: id: 708890 -'BELPAESE: Homecoming': +"BELPAESE: Homecoming": installDir: BELPAESE Homecoming: {} launch: - /TheBelPaese.app/Contents/MacOS/runtime: + "/TheBelPaese.app/Contents/MacOS/runtime": - when: - os: mac store: steam - /TheBelPaese.exe: + "/TheBelPaese.exe": - when: - os: windows store: steam @@ -47203,21 +47359,24 @@ BFF or Die: installDir: BFF or Die: {} launch: - /BffOrDie.app: + "/BffOrDie.app": - when: - os: mac store: steam - /BffOrDie.exe: + "/BffOrDie.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam - /BffOrDie.x86: + "/BffOrDie.x86": - when: - bit: 32 os: linux store: steam - /BffOrDie.x86_64: + "/BffOrDie.x86_64": - when: - bit: 64 os: linux @@ -47232,7 +47391,7 @@ BFGE (Bartender Flair Game): installDir: BFGE: {} launch: - /NextProject.exe: + "/NextProject.exe": - when: - bit: 64 os: windows @@ -47243,18 +47402,18 @@ BH Trials: installDir: BH Trials: {} launch: - /BHTrials.exe: + "/BHTrials.exe": - when: - bit: 64 os: windows store: steam steam: id: 1067080 -'BHB: BioHazard Bot': +"BHB: BioHazard Bot": installDir: BHB BioHazard Bot: {} launch: - /BHB_BioHazard_Bot.exe: + "/BHB_BioHazard_Bot.exe": - when: - os: windows store: steam @@ -47265,12 +47424,12 @@ BIGHARDSUN: id: 1159970 BIOS: files: - /BIOS/Saved/Config: + "/BIOS/Saved/Config": tags: - config when: - os: windows - /BIOS/Saved/Savegames: + "/BIOS/Saved/Savegames": tags: - save when: @@ -47278,12 +47437,12 @@ BIOS: installDir: BIOS: {} launch: - /BIOS.exe: + "/BIOS.exe": - when: - bit: 64 os: windows store: steam - /Reload.app: + "/Reload.app": - when: - os: mac store: steam @@ -47293,7 +47452,7 @@ BIOSZARD Corporation: installDir: BIOSZARD Corporation: {} launch: - /BIOSZARD Corporation.exe: + "/BIOSZARD Corporation.exe": - when: - store: steam steam: @@ -47302,12 +47461,15 @@ BL00: installDir: BL00: {} launch: - /BL00 (Mac).app: + "/BL00 (Mac).app": - when: - os: mac store: steam - /BL00.exe: + "/BL00.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam @@ -47322,7 +47484,7 @@ BLASK: installDir: BLASK: {} launch: - /BLASK.exe: + "/BLASK.exe": - when: - os: windows store: steam @@ -47332,7 +47494,7 @@ BLAST-AXIS: installDir: BLASTAXIS: {} launch: - /BLASTAXIS.exe: + "/BLASTAXIS.exe": - when: - os: windows store: steam @@ -47342,17 +47504,17 @@ BLASTER LiLO: installDir: BLASTER LiLO: {} launch: - /BLlauncher.exe: + "/BLlauncher.exe": - when: - os: windows store: steam steam: id: 999750 -'BLOCK Multiplayer: RPG': +"BLOCK Multiplayer: RPG": installDir: BLOCK Multiplayer RPG: {} launch: - /Block_MP.exe: + "/Block_MP.exe": - when: - os: windows store: steam @@ -47362,7 +47524,7 @@ BLOCKPOST: installDir: BLOCKPOST: {} launch: - /blockpost.exe: + "/blockpost.exe": - when: - store: steam steam: @@ -47371,15 +47533,15 @@ BLogic Blox: installDir: blogicblox: {} launch: - /blogicblox.app: + "/blogicblox.app": - when: - os: mac store: steam - /blogicblox.exe: + "/blogicblox.exe": - when: - os: windows store: steam - /blogicblox.x86: + "/blogicblox.x86": - when: - os: linux store: steam @@ -47387,12 +47549,12 @@ BLogic Blox: id: 784110 BMW M3 Challenge: files: - /UserData//.plr: + "/UserData//.plr": tags: - save when: - os: windows - /config.ini: + "/config.ini": tags: - config when: @@ -47400,32 +47562,32 @@ BMW M3 Challenge: BOC: steam: id: 1159150 -'BOMB: Who let the dogfight?': +"BOMB: Who let the dogfight?": installDir: BOMB: {} launch: - /bin/release/BOMB.app/Contents/MacOS/BOMB: + "/bin/release/BOMB.app/Contents/MacOS/BOMB": - when: - os: mac store: steam - workingDir: /bin/release - /bin/release/BOMB.exe: + workingDir: "/bin/release" + "/bin/release/BOMB.exe": - when: - os: windows store: steam - workingDir: /bin/release - /bin/release/run.sh: + workingDir: "/bin/release" + "/bin/release/run.sh": - when: - os: linux store: steam - workingDir: /bin/release + workingDir: "/bin/release" steam: id: 301500 BOMJMAN: installDir: BomjMan: {} launch: - /BomjProject.exe: + "/BomjProject.exe": - when: - os: windows store: steam @@ -47439,12 +47601,12 @@ BOMTILES: installDir: BOMTILES: {} launch: - /BOMTILES.exe: + "/BOMTILES.exe": - when: - bit: 64 os: windows store: steam - /bomtiles-build-osx.app/Contents/MacOS/bomtiles-build-osx: + "/bomtiles-build-osx.app/Contents/MacOS/bomtiles-build-osx": - when: - os: mac store: steam @@ -47454,7 +47616,7 @@ BOOKS: installDir: BOOKS: {} launch: - /BOOKS.exe: + "/BOOKS.exe": - when: - os: windows store: steam @@ -47464,11 +47626,11 @@ BORIS the Mutant Bear with a Gun: installDir: BORIS: {} launch: - /Boris.exe: + "/Boris.exe": - when: - os: windows store: steam - /Mac.app: + "/Mac.app": - when: - os: mac store: steam @@ -47478,7 +47640,7 @@ BOSSGARD: installDir: BOSSGARD: {} launch: - /Bossgard.exe: + "/Bossgard.exe": - when: - os: windows store: steam @@ -47491,11 +47653,11 @@ BOTOLO: installDir: BOTOLO: {} launch: - /BOTOLO.app: + "/BOTOLO.app": - when: - os: mac store: steam - /BOTOLO.exe: + "/BOTOLO.exe": - when: - os: windows store: steam @@ -47505,7 +47667,7 @@ BOTS: installDir: BOTS: {} launch: - /Bots: + "/Bots": - when: - os: windows store: steam @@ -47520,7 +47682,7 @@ BOX: installDir: BOX: {} launch: - /BOX.exe: + "/BOX.exe": - when: - os: windows store: steam @@ -47535,7 +47697,7 @@ BOXiGON!: installDir: BOXiGON1: {} launch: - /BOXiGON.exe: + "/BOXiGON.exe": - when: - os: windows store: steam @@ -47544,14 +47706,14 @@ BOXiGON!: BOllO: steam: id: 521190 -'BPM: Bullets per Minute': +"BPM: Bullets per Minute": files: - /BPM/Saved/Config/WindowsNoEditor: + "/BPM/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /BPM/Saved/SaveGames: + "/BPM/Saved/SaveGames": tags: - save when: @@ -47566,7 +47728,7 @@ BOllO: installDir: BPM BULLETS PER MINUTE: {} launch: - /WindowsNoEditor/BPMGame.exe: + "/WindowsNoEditor/BPMGame.exe": - when: - bit: 64 os: windows @@ -47577,11 +47739,11 @@ BQM - BlockQuest Maker: installDir: BQM: {} launch: - /BQM.exe: + "/BQM.exe": - when: - os: windows store: steam - /bqm.app/Contents/MacOS/bqm: + "/bqm.app/Contents/MacOS/bqm": - when: - os: mac store: steam @@ -47591,54 +47753,54 @@ BR Logic Pack: installDir: BR Logic Pack: {} launch: - /BR_Logic_Pack.exe: + "/BR_Logic_Pack.exe": - when: - os: windows store: steam steam: id: 936950 -'BRAINPIPE: A Plunge to Unhumanity': +"BRAINPIPE: A Plunge to Unhumanity": installDir: Brainpipe: {} launch: - /Brainpipe.app: + "/Brainpipe.app": - when: - os: mac store: steam - /Brainpipe.exe: + "/Brainpipe.exe": - when: - os: windows store: steam steam: id: 35800 -BRG's Alice in Wonderland Visual Novel: +"BRG's Alice in Wonderland Visual Novel": installDir: - BRG's Alice in Wonderland Visual Novel: {} + "BRG's Alice in Wonderland Visual Novel": {} launch: - /nw.exe: - - arguments: '--in-process-gpu' + "/nw.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam steam: id: 1065870 -BRG's Red Riding Hood: +"BRG's Red Riding Hood": installDir: - BRG's Red Riding Hood Visual Novel: {} + "BRG's Red Riding Hood Visual Novel": {} launch: - /nw.exe: - - arguments: '--in-process-gpu' + "/nw.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam steam: id: 1078040 -BRG's The Stonecutter: +"BRG's The Stonecutter": installDir: - BRG's The Stonecutter Visual Novel: {} + "BRG's The Stonecutter Visual Novel": {} launch: - /nw.exe: - - arguments: '--in-process-gpu' + "/nw.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam @@ -47653,7 +47815,7 @@ BRKÖUT: installDir: BRKÖUT: {} launch: - /brkout.exe: + "/brkout.exe": - when: - os: windows store: steam @@ -47663,11 +47825,11 @@ BSL Winter Game Challenge: installDir: BSL Winter Game Challenge: {} launch: - /BSL Winter Game Challenge/BSL Winter Game Challenge.app: + "/BSL Winter Game Challenge/BSL Winter Game Challenge.app": - when: - os: mac store: steam - /BSL_WinterGamesChallenge.exe: + "/BSL_WinterGamesChallenge.exe": - when: - os: windows store: steam @@ -47682,7 +47844,7 @@ BUCKLER 2: installDir: BUCKLER 2: {} launch: - /BUCKLER2.exe: + "/BUCKLER2.exe": - when: - os: windows store: steam @@ -47692,11 +47854,11 @@ BUILD: installDir: BUILD: {} launch: - /BUILD.app: + "/BUILD.app": - when: - os: mac store: steam - /BUILD/BUILD.exe: + "/BUILD/BUILD.exe": - when: - os: windows store: steam @@ -47714,7 +47876,7 @@ BUTCHERBOX: installDir: BUTCHERBOX: {} launch: - /BUTCHERBOX.exe: + "/BUTCHERBOX.exe": - when: - os: windows store: steam @@ -47732,23 +47894,23 @@ Baam Squad: id: 736720 Baba Is You: files: - /Library/Application Support/Baba_Is_You: + "/Library/Application Support/Baba_Is_You": tags: - config - save when: - os: mac - /Baba_Is_You: + "/Baba_Is_You": tags: - save when: - os: windows - /Baba_Is_You/SettingsC.txt: + "/Baba_Is_You/SettingsC.txt": tags: - config when: - os: windows - /Baba_Is_You: + "/Baba_Is_You": tags: - config - save @@ -47760,15 +47922,15 @@ Baba Is You: installDir: Baba Is You: {} launch: - /Baba Is You.app/Contents/MacOS/Chowdren: + "/Baba Is You.app/Contents/MacOS/Chowdren": - when: - os: mac store: steam - /Baba Is You.exe: + "/Baba Is You.exe": - when: - os: windows store: steam - /run.sh: + "/run.sh": - when: - os: linux store: steam @@ -47778,7 +47940,7 @@ Babel Climbers: installDir: Babel Climbers: {} launch: - /Babel Climbers.exe: + "/Babel Climbers.exe": - when: - store: steam steam: @@ -47787,33 +47949,33 @@ Babel Rising: installDir: Babel Rising: {} launch: - /BabelRising3d.exe: - - arguments: '' + "/BabelRising3d.exe": + - arguments: "" when: - os: windows store: steam - /S3DEngine_Mac.app: - - arguments: '' + "/S3DEngine_Mac.app": + - arguments: "" when: - os: mac store: steam steam: id: 204840 -'Babel: Choice': +"Babel: Choice": installDir: Babel Choice: {} launch: - /Babel Choice.exe: + "/Babel Choice.exe": - when: - os: windows store: steam - /BabelChoice.app: + "/BabelChoice.app": - when: - os: mac store: steam steam: id: 430170 -'Babel: Tower to the Gods': +"Babel: Tower to the Gods": installDir: Babel: {} steam: @@ -47822,11 +47984,11 @@ Baby Bee: installDir: Baby Bee: {} launch: - /Baby Bee.app: + "/Baby Bee.app": - when: - os: mac store: steam - /Baby Bee.exe: + "/Baby Bee.exe": - when: - os: windows store: steam @@ -47836,7 +47998,7 @@ Baby Game Plan 0-3: installDir: baby game plan 0-3: {} launch: - /main.exe: + "/main.exe": - when: - store: steam steam: @@ -47850,7 +48012,7 @@ Baby Redemption: installDir: Baby Redemption: {} launch: - /Baby Redemption.exe: + "/Baby Redemption.exe": - when: - os: windows store: steam @@ -47867,7 +48029,7 @@ Baby Storm: installDir: Baby Storm: {} launch: - /BabyStorm.exe: + "/BabyStorm.exe": - when: - os: windows store: steam @@ -47877,17 +48039,17 @@ Baby Walking Simulator: installDir: Baby Walking Simulator: {} launch: - /Baby Walking Simulator.exe: + "/Baby Walking Simulator.exe": - when: - os: windows store: steam steam: id: 1136880 -Baby's on Fire: +"Baby's on Fire": installDir: - Baby's on fire: {} + "Baby's on fire": {} launch: - /babys.exe: + "/babys.exe": - when: - store: steam steam: @@ -47896,7 +48058,7 @@ Babycar Driver: installDir: Babycar Driver: {} launch: - /Babycar.exe: + "/Babycar.exe": - when: - store: steam steam: @@ -47905,8 +48067,8 @@ Babylon 2055 Pinball: installDir: Babylon2055Pinball: {} launch: - /BabylonPinball.exe: - - arguments: '--fullscreen' + "/BabylonPinball.exe": + - arguments: "--fullscreen" when: - os: windows store: steam @@ -47915,11 +48077,11 @@ Babylon 2055 Pinball: store: steam steam: id: 458500 -Babylon's Fall: +"Babylon's Fall": installDir: - BABYLON'S FALL: {} + "BABYLON'S FALL": {} launch: - /data/exe/Launcher.exe: + "/data/exe/Launcher.exe": - when: - store: steam steam: @@ -47928,7 +48090,7 @@ Babylonia: installDir: Babylonia: {} launch: - /Babylonia.exe: + "/Babylonia.exe": - when: - os: windows store: steam @@ -47945,23 +48107,23 @@ Bacillus: id: 1104590 Back 4 Blood: files: - /Back4Blood/Steam/Saved/Config/WindowsNoEditor: + "/Back4Blood/Steam/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /Back4Blood/Steam/Saved/SaveGames: + "/Back4Blood/Steam/Saved/SaveGames": tags: - save when: - os: windows - /Packages/WarnerBros.Interactive.e172091a-6630-4ff3-959f-830_ktmk1xygcecda/LocalCache/Local/Back4Blood/WinGDK/Saved/Config/WinGDK: + "/Packages/WarnerBros.Interactive.e172091a-6630-4ff3-959f-830_ktmk1xygcecda/LocalCache/Local/Back4Blood/WinGDK/Saved/Config/WinGDK": tags: - config when: - os: windows store: microsoft - /Packages/WarnerBros.Interactive.e172091a-6630-4ff3-959f-830_ktmk1xygcecda/SystemAppData/wgs: + "/Packages/WarnerBros.Interactive.e172091a-6630-4ff3-959f-830_ktmk1xygcecda/SystemAppData/wgs": tags: - save when: @@ -47975,7 +48137,7 @@ Back To Ashes: installDir: Back To Ashes: {} launch: - /Back To Ashes.exe: + "/Back To Ashes.exe": - when: - bit: 64 os: windows @@ -47986,12 +48148,12 @@ Back To Hell: installDir: Back To Hell: {} launch: - /Назад в преисподнюю (x64).exe: + "/Назад в преисподнюю (x64).exe": - when: - bit: 64 os: windows store: steam - /Назад в преисподнюю (x86).exe: + "/Назад в преисподнюю (x86).exe": - when: - bit: 32 os: windows @@ -48002,15 +48164,15 @@ Back in 1995: installDir: Back in 1995: {} launch: - /Backin1995.app: + "/Backin1995.app": - when: - os: mac store: steam - /Backin1995.exe: + "/Backin1995.exe": - when: - os: windows store: steam - /Backin1995.x86: + "/Backin1995.x86": - when: - os: linux store: steam @@ -48020,15 +48182,15 @@ Back to 1998: installDir: Back to 1998: {} launch: - /Back to 1998.exe: + "/Back to 1998.exe": - when: - os: windows store: steam - /Back_to_1998: + "/Back_to_1998": - when: - os: linux store: steam - /Back_to_1998.app/Contents/MacOS/Back_to_1998: + "/Back_to_1998.app/Contents/MacOS/Back_to_1998": - when: - os: mac store: steam @@ -48036,17 +48198,17 @@ Back to 1998: id: 1037350 Back to Bed: files: - /userdata//308040/remote: + "/userdata//308040/remote": tags: - save when: - store: steam - /My Games/Back to Bed: + "/My Games/Back to Bed": tags: - config when: - os: windows - /Back to Bed: + "/Back to Bed": tags: - config when: @@ -48054,20 +48216,20 @@ Back to Bed: installDir: BackToBed: {} launch: - /BackToBed.app: + "/BackToBed.app": - when: - os: mac store: steam - /BackToBed.exe: + "/BackToBed.exe": - when: - os: windows store: steam - /BackToBed.x86: + "/BackToBed.x86": - when: - bit: 32 os: linux store: steam - /BackToBed.x86_64: + "/BackToBed.x86_64": - when: - bit: 64 os: linux @@ -48078,7 +48240,7 @@ Back to Dinosaur Island: installDir: B2DI: {} launch: - /bin/win_x64_release/Dinoisland1.exe: + "/bin/win_x64_release/Dinoisland1.exe": - when: - bit: 64 os: windows @@ -48089,7 +48251,7 @@ Back to Dinosaur Island Part 2: installDir: Back to Dinosaur Island Part 2: {} launch: - /Bin64/DinoIsland2.exe: + "/Bin64/DinoIsland2.exe": - when: - bit: 64 os: windows @@ -48099,14 +48261,14 @@ Back to Dinosaur Island Part 2: Back to Ebatoria: steam: id: 906900 -'Back to Gaya: The Adventures of Zino and Buu': +"Back to Gaya: The Adventures of Zino and Buu": files: - /data/config/backtogaya.ini: + "/data/config/backtogaya.ini": tags: - config when: - os: windows - /data/savegames: + "/data/savegames": tags: - save when: @@ -48115,7 +48277,7 @@ Back to Life 2: installDir: Back To Life 2: {} launch: - /back_to_life_2.exe: + "/back_to_life_2.exe": - when: - store: steam steam: @@ -48124,7 +48286,7 @@ Back to Life 3: installDir: Back To Life 3: {} launch: - /back_to_life3.exe: + "/back_to_life3.exe": - when: - store: steam steam: @@ -48133,40 +48295,30 @@ Back to the Egg!: installDir: BACK TO THE EGG!: {} launch: - /BACKTOTHEEGG!.exe: + "/BACKTOTHEEGG!.exe": - when: - os: windows store: steam steam: id: 705640 -'Back to the Future: The Game': +"Back to the Future: The Game": files: - /Library/Application Support/Telltale Games/BacktotheFuture*/*.save: + "/Library/Application Support/Telltale Games/BacktotheFuture*/*.save": tags: - save when: - os: mac - /Library/Application Support/Telltale Games/BacktotheFuture*/prefs.prop: + "/Library/Application Support/Telltale Games/BacktotheFuture*/prefs.prop": tags: - config when: - os: mac - /Telltale Games/Back to the Future 104/*.save: + "/Telltale Games/Back to the Future 104/*.save": tags: - save when: - os: windows - /Telltale Games/Back to the Future 104/prefs.prop: - tags: - - config - when: - - os: windows - /Telltale Games/Episode */*.save: - tags: - - save - when: - - os: windows - /Telltale Games/Episode */prefs.prop: + "/Telltale Games/Back to the Future 104/prefs.prop": tags: - config when: @@ -48176,11 +48328,11 @@ Back to the Egg!: installDir: Back to the Future Ep 1: {} launch: - /BackToTheFuture101.exe: + "/BackToTheFuture101.exe": - when: - os: windows store: steam - /BacktotheFuture.app: + "/BacktotheFuture.app": - when: - os: mac store: steam @@ -48190,11 +48342,11 @@ BackSlash: installDir: BackSlash: {} launch: - /backslash.app: + "/backslash.app": - when: - os: mac store: steam - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -48207,7 +48359,7 @@ Backfire: installDir: Backfire: {} launch: - /Backfire.exe: + "/Backfire.exe": - when: - os: windows store: steam @@ -48215,7 +48367,7 @@ Backfire: id: 548260 Backfirewall: files: - /AppData/LocalLow/Naraven Games/Backfirewall_/SavedGameData: + "/AppData/LocalLow/Naraven Games/Backfirewall_/SavedGameData": tags: - save when: @@ -48223,7 +48375,7 @@ Backfirewall: installDir: BackFirewall_: {} launch: - /Backfirewall_.exe: + "/Backfirewall_.exe": - when: - os: windows store: steam @@ -48233,17 +48385,17 @@ Backgammon: installDir: Backgammon: {} launch: - /Backgammon.app/Contents/MacOS/Backgammon: + "/Backgammon.app/Contents/MacOS/Backgammon": - when: - bit: 64 os: mac store: steam - /Backgammon.exe: + "/Backgammon.exe": - when: - bit: 64 os: windows store: steam - /Backgammon.x86_64: + "/Backgammon.x86_64": - when: - bit: 64 os: linux @@ -48254,16 +48406,16 @@ Backgammon Blitz: installDir: Backgammon: {} launch: - /MantisConfig.exe: + "/MantisConfig.exe": - when: - store: steam steam: id: 395900 -'Backgammon, Chess & Checkers': +"Backgammon, Chess & Checkers": installDir: - 'Backgammon, Chess, Checkers': {} + "Backgammon, Chess, Checkers": {} launch: - /BackgammonChessCheckers.exe: + "/BackgammonChessCheckers.exe": - when: - os: windows store: steam @@ -48271,29 +48423,29 @@ Backgammon Blitz: id: 961230 Backlash: files: - /*.SAV: + "/*.SAV": tags: - save when: - os: dos - /BL.OPT: + "/BL.OPT": tags: - config when: - os: dos Backpack Hero: files: - /AppData/LocalLow/TheJaspel/Backpack Hero: + "/AppData/LocalLow/TheJaspel/Backpack Hero": tags: - save when: - os: windows - /Library/Application Support/TheJaspel/Backpack Hero: + "/Library/Application Support/TheJaspel/Backpack Hero": tags: - save when: - os: mac - /TheJaspel/Backpack Hero: + "/TheJaspel/Backpack Hero": tags: - save when: @@ -48304,15 +48456,15 @@ Backpack Hero: installDir: Backpack Hero: {} launch: - /Backpack Hero.exe: + "/Backpack Hero.exe": - when: - os: windows store: steam - /BackpackHero.app: + "/BackpackHero.app": - when: - os: mac store: steam - /linux.x86_64: + "/linux.x86_64": - when: - os: linux store: steam @@ -48322,7 +48474,7 @@ Backpack Twins: installDir: Backpack Twins: {} launch: - /Backpack Twins.exe: + "/Backpack Twins.exe": - when: - os: windows store: steam @@ -48332,16 +48484,16 @@ Backspace Bouken: installDir: Backspace Bouken: {} launch: - /BackspaceBouken.app/Contents/MacOS/BackspaceBouken: + "/BackspaceBouken.app/Contents/MacOS/BackspaceBouken": - when: - os: mac store: steam - /BackspaceBouken.exe: + "/BackspaceBouken.exe": - when: - bit: 64 os: windows store: steam - /backspacebouken.x86_64: + "/backspacebouken.x86_64": - when: - bit: 64 os: linux @@ -48352,15 +48504,15 @@ Backstage Pass: installDir: BackstagePass: {} launch: - /backstagepass-1j-market/backstagepass.app: + "/backstagepass-1j-market/backstagepass.app": - when: - os: mac store: steam - /backstagepass-1j-market/backstagepass.exe: + "/backstagepass-1j-market/backstagepass.exe": - when: - os: windows store: steam - /backstagepass-1j-market/backstagepass.sh: + "/backstagepass-1j-market/backstagepass.sh": - when: - os: linux store: steam @@ -48370,11 +48522,11 @@ Backstreets of the Mind: installDir: Backstreets of the Mind: {} launch: - /BotM.app: + "/BotM.app": - when: - os: mac store: steam - /BotM.exe: + "/BotM.exe": - when: - os: windows store: steam @@ -48384,7 +48536,7 @@ Backworlds: installDir: Backworlds: {} launch: - /backworlds.exe: + "/backworlds.exe": - when: - os: windows store: steam @@ -48392,24 +48544,24 @@ Backworlds: id: 910470 Backyard Baseball: files: - 'C:/hegames': + "C:/hegames": tags: - save when: - os: windows - 'C:/hegames.ini': + "C:/hegames.ini": tags: - config when: - os: windows Backyard Baseball 2001: files: - /Coaches: + "/Coaches": tags: - save when: - os: windows - 'C:/Windows/hegames.ini': + "C:/Windows/hegames.ini": tags: - config when: @@ -48418,7 +48570,7 @@ Backyard Brawl: installDir: Backyard Brawl: {} launch: - /BackyardBrawl.exe: + "/BackyardBrawl.exe": - when: - os: windows store: steam @@ -48426,38 +48578,38 @@ Backyard Brawl: id: 954170 Backyard Football: files: - 'C:/Windows/hegames.ini': + "C:/Windows/hegames.ini": tags: - config when: - os: windows - 'C:/hegames': + "C:/hegames": tags: - save when: - os: windows Backyard Football 2002: files: - 'C:/hegames.ini': + "C:/hegames.ini": tags: - config when: - os: windows - 'C:/hegames/Football2002/Coaches': + "C:/hegames/Football2002/Coaches": tags: - save when: - os: windows -'Bacon Man: An Adventure': +"Bacon Man: An Adventure": installDir: Bacon Man An Adventure: {} launch: - /BaconMan.exe: + "/BaconMan.exe": - when: - bit: 64 os: windows store: steam - /BaconMan/Binaries/Mac/BaconMan.app: + "/BaconMan/Binaries/Mac/BaconMan.app": - when: - os: mac store: steam @@ -48467,7 +48619,7 @@ Bacon May Die: installDir: Bacon May Die: {} launch: - /Bacon.exe: + "/Bacon.exe": - when: - os: windows store: steam @@ -48475,7 +48627,7 @@ Bacon May Die: id: 646240 Bacon Rebellion: files: - /BaconRebellion/settings.ini: + "/BaconRebellion/settings.ini": tags: - config when: @@ -48483,7 +48635,7 @@ Bacon Rebellion: installDir: Bacon Rebellion: {} launch: - /BaconRebellion.exe: + "/BaconRebellion.exe": - when: - os: windows store: steam @@ -48498,7 +48650,7 @@ Bacon Tales - Between Pigs and Wolves: installDir: Bacon Tales - Between Pigs and Wolves: {} launch: - /BaconTales-4.0.7.exe: + "/BaconTales-4.0.7.exe": - when: - os: windows store: steam @@ -48508,20 +48660,20 @@ Bacteria: installDir: Bacteria: {} launch: - /Bacteria.app: + "/Bacteria.app": - when: - os: mac store: steam - /Bacteria.exe: + "/Bacteria.exe": - when: - os: windows store: steam - /Bacteria.x86: + "/Bacteria.x86": - when: - bit: 32 os: linux store: steam - /Bacteria.x86_64: + "/Bacteria.x86_64": - when: - bit: 64 os: linux @@ -48532,7 +48684,7 @@ Bad Ass Babes: installDir: Bad ass babes: {} launch: - /Bad ass babes.exe: + "/Bad ass babes.exe": - when: - os: windows store: steam @@ -48547,11 +48699,11 @@ Bad Bots: installDir: BadBots: {} launch: - /BadBots.app: + "/BadBots.app": - when: - os: mac store: steam - /BadBots.exe: + "/BadBots.exe": - when: - os: windows store: steam @@ -48561,23 +48713,23 @@ Bad Bots Rise: installDir: Bad Bots Rise: {} launch: - /BadBotsRise.app/Contents/MacOS/Mac_Runner: + "/BadBotsRise.app/Contents/MacOS/Mac_Runner": - when: - os: mac store: steam - /BadBotsRise.exe: + "/BadBotsRise.exe": - when: - os: windows store: steam - /runner: + "/runner": - when: - os: linux store: steam steam: id: 852920 -'Bad Boys: Miami Takedown': +"Bad Boys: Miami Takedown": files: - /BB2Config.cfg: + "/BB2Config.cfg": tags: - config when: @@ -48586,20 +48738,20 @@ Bad Business: installDir: Bad Business: {} launch: - /Bad Business.exe: + "/Bad Business.exe": - when: - os: windows store: steam - /BadBusiness.app: + "/BadBusiness.app": - when: - os: mac store: steam - /BadBusiness.x86: + "/BadBusiness.x86": - when: - bit: 32 os: linux store: steam - /BadBusiness.x86_64: + "/BadBusiness.x86_64": - when: - bit: 64 os: linux @@ -48610,7 +48762,7 @@ Bad Caterpillar: installDir: Bad Caterpillar: {} launch: - /BadCaterpillar.exe: + "/BadCaterpillar.exe": - when: - store: steam steam: @@ -48619,7 +48771,7 @@ Bad Day: installDir: Bad Day: {} launch: - /Bad Day.exe: + "/Bad Day.exe": - when: - os: windows store: steam @@ -48629,11 +48781,11 @@ Bad Day (Factory 64 Games): installDir: BAD DAY: {} launch: - /BAD_DAY.exe: + "/BAD_DAY.exe": - when: - os: windows store: steam - /nw_original.exe: + "/nw_original.exe": - when: - os: windows store: steam @@ -48643,7 +48795,7 @@ Bad Day Betsy: installDir: Bad Day Betsy: {} launch: - /Bad Day Betsy.exe: + "/Bad Day Betsy.exe": - when: - os: windows store: steam @@ -48651,20 +48803,20 @@ Bad Day Betsy: id: 941580 Bad Day L.A.: files: - /Save: + "/Save": tags: - save when: - os: windows -'Bad Dream: Coma': +"Bad Dream: Coma": files: - /Library/Application Support/com.desertfox.baddreamcoma: + "/Library/Application Support/com.desertfox.baddreamcoma": tags: - config - save when: - os: mac - /Bad_dream_Coma: + "/Bad_dream_Coma": tags: - config - save @@ -48675,24 +48827,24 @@ Bad Day L.A.: installDir: Coma: {} launch: - /Bad Dream Coma.exe: + "/Bad Dream Coma.exe": - when: - os: windows store: steam - /Bad Dream_ Coma.app: + "/Bad Dream_ Coma.app": - when: - os: mac store: steam steam: id: 538070 -'Bad Dream: Fever': +"Bad Dream: Fever": files: - /Bad_Dream_Fever/Config.ini: + "/Bad_Dream_Fever/Config.ini": tags: - config when: - os: windows - /Bad_Dream_Fever/Save: + "/Bad_Dream_Fever/Save": tags: - save when: @@ -48702,11 +48854,11 @@ Bad Day L.A.: installDir: Bad Dream Fever: {} launch: - /Bad Dream Fever.app: + "/Bad Dream Fever.app": - when: - os: mac store: steam - /Bad Dream Fever.exe: + "/Bad Dream Fever.exe": - when: - os: windows store: steam @@ -48718,7 +48870,7 @@ Bad Dudes (Retro Classix): installDir: Retro Classix Bad Dudes: {} launch: - /Retro Classix Bad Dudes.exe: + "/Retro Classix Bad Dudes.exe": - when: - os: windows store: steam @@ -48728,12 +48880,12 @@ Bad End: installDir: BAD END: {} launch: - /bad_end.exe: + "/bad_end.exe": - when: - bit: 64 os: windows store: steam - /bad_end_x86.exe: + "/bad_end_x86.exe": - when: - bit: 32 os: windows @@ -48742,13 +48894,13 @@ Bad End: id: 415850 Bad End Theater: files: - /RenPy/badendtheater-1564762000: + "/RenPy/badendtheater-1564762000": tags: - config - save when: - os: windows - /RenPy/persistent/nomnomnami: + "/RenPy/persistent/nomnomnami": tags: - config - save @@ -48767,15 +48919,15 @@ Bad End Theater: installDir: BAD END THEATER: {} launch: - /badendtheater.app: + "/badendtheater.app": - when: - os: mac store: steam - /badendtheater.exe: + "/badendtheater.exe": - when: - os: windows store: steam - /badendtheater.sh: + "/badendtheater.sh": - when: - os: linux store: steam @@ -48785,7 +48937,7 @@ Bad Girl: installDir: Bad Girl: {} launch: - /BadGirl.exe: + "/BadGirl.exe": - when: - store: steam steam: @@ -48794,15 +48946,15 @@ Bad Government: installDir: Bad Government: {} launch: - /Contents/MacOS/bg.fat.app: + "/Contents/MacOS/bg.fat.app": - when: - os: mac store: steam - /bg: + "/bg": - when: - os: linux store: steam - /bg.exe: + "/bg.exe": - when: - os: windows store: steam @@ -48810,12 +48962,12 @@ Bad Government: id: 666090 Bad Guys at School: files: - /BadGuysAtSchool/Saved/Config/WindowsNoEditor: + "/BadGuysAtSchool/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /BadGuysAtSchool/Saved/SaveGames: + "/BadGuysAtSchool/Saved/SaveGames": tags: - save when: @@ -48823,7 +48975,7 @@ Bad Guys at School: installDir: Bad Guys at School: {} launch: - /BadGuysAtSchool.exe: + "/BadGuysAtSchool.exe": - when: - store: steam steam: @@ -48832,7 +48984,7 @@ Bad Hombre: installDir: Bad Hombre: {} launch: - /Bad Hombre.exe: + "/Bad Hombre.exe": - when: - os: windows store: steam @@ -48840,13 +48992,13 @@ Bad Hombre: id: 1071610 Bad Hotel: files: - /userdata//231720: + "/userdata//231720": tags: - config - save when: - store: steam - /BadHotel: + "/BadHotel": tags: - config - save @@ -48855,15 +49007,15 @@ Bad Hotel: installDir: Bad Hotel: {} launch: - /BadHotel: + "/BadHotel": - when: - os: linux store: steam - /BadHotel.app: + "/BadHotel.app": - when: - os: mac store: steam - /BadHotel.exe: + "/BadHotel.exe": - when: - os: windows store: steam @@ -48871,12 +49023,12 @@ Bad Hotel: id: 231720 Bad Mojo Redux: files: - /SAVE: + "/SAVE": tags: - save when: - os: windows - /SAVE/badmojo.ini: + "/SAVE/badmojo.ini": tags: - config when: @@ -48886,7 +49038,7 @@ Bad Mojo Redux: installDir: BadMojo: {} launch: - /launcher.exe: + "/launcher.exe": - when: - os: windows store: steam @@ -48902,47 +49054,42 @@ Bad Neighbor: id: 939270 Bad North: files: - /AppData/LocalLow/Plausible Concept/Bad North/Saves: + "/AppData/LocalLow/Plausible Concept/Bad North/Saves": tags: - save when: - os: windows - /AppData/LocalLow/Plausible Concept/Bad North/Saves/settings: + "/AppData/LocalLow/Plausible Concept/Bad North/Saves/settings": tags: - config when: - os: windows - /Library/Application Support/com.PlausibleConcept.BadNorthOSX/Saves: + "/Library/Application Support/com.PlausibleConcept.BadNorthOSX/Saves": tags: - save when: - os: mac - /Library/Application Support/com.PlausibleConcept.BadNorthOSX/Saves/settings: + "/Library/Application Support/com.PlausibleConcept.BadNorthOSX/Saves/settings": tags: - config when: - os: mac - /GOG.com/Galaxy/Applications/51399757586222569/Storage/Shared/Files: + "/GOG.com/Galaxy/Applications/51399757586222569/Storage/Shared/Files": tags: - save when: - os: windows store: microsoft - Steam/userdata/*/688420/remote: - tags: - - save - when: - - store: steam gog: id: 1656388860 installDir: BadNorth: {} launch: - /BadNorth.app: + "/BadNorth.app": - when: - os: mac store: steam - /BadNorth.exe: + "/BadNorth.exe": - when: - os: windows store: steam @@ -48956,7 +49103,7 @@ Bad Note: installDir: BadNote: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -48966,11 +49113,11 @@ Bad Pad: installDir: Bad Pad: {} launch: - /badpad: + "/badpad": - when: - os: linux store: steam - /badpad.exe: + "/badpad.exe": - when: - os: windows store: steam @@ -48978,12 +49125,12 @@ Bad Pad: id: 517210 Bad Piggies: files: - /AppData/LocalLow/Rovio/Bad Piggies/Progress.dat: + "/AppData/LocalLow/Rovio/Bad Piggies/Progress.dat": tags: - save when: - os: windows - /AppData/LocalLow/Rovio/Bad Piggies/Settings.xml: + "/AppData/LocalLow/Rovio/Bad Piggies/Settings.xml": tags: - config when: @@ -48992,7 +49139,7 @@ Bad Rats Show: installDir: Bad Rats Show: {} launch: - /rats2.exe: + "/rats2.exe": - when: - store: steam registry: @@ -49001,12 +49148,12 @@ Bad Rats Show: - config steam: id: 393200 -'Bad Rats: The Rats'' Revenge': +"Bad Rats: The Rats' Revenge": installDir: Bad Rats: {} launch: - /Rats.exe: - - arguments: '-nc -d w' + "/Rats.exe": + - arguments: "-nc -d w" when: - store: steam steam: @@ -49020,7 +49167,7 @@ Bad Sector HDD: installDir: Bad Sector HDD: {} launch: - /BadSector.exe: + "/BadSector.exe": - when: - os: windows store: steam @@ -49033,19 +49180,19 @@ Bad Thoughts: installDir: Bad Thoughts: {} launch: - /BadThoughts.exe: + "/BadThoughts.exe": - when: - store: steam steam: id: 661260 Bad Toys 3D: files: - /GAME_*.SVG: + "/GAME_*.SVG": tags: - save when: - os: windows - /bt3d.cfg: + "/bt3d.cfg": tags: - config when: @@ -49054,7 +49201,7 @@ Bad birthday: installDir: Bad birthday: {} launch: - /BadBirthday.exe: + "/BadBirthday.exe": - when: - os: windows store: steam @@ -49064,15 +49211,15 @@ BadLands RoadTrip: installDir: BadLands RoadTrip: {} launch: - /BLuRT: + "/BLuRT": - when: - os: linux store: steam - /BLuRT.app/Contents/MacOS/BLuRT: + "/BLuRT.app/Contents/MacOS/BLuRT": - when: - os: mac store: steam - /BLuRT.exe: + "/BLuRT.exe": - when: - os: windows store: steam @@ -49087,7 +49234,7 @@ Badass: installDir: BADASS: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: @@ -49096,21 +49243,21 @@ Badblood: installDir: BADBLOOD: {} launch: - /BADBLOOD_MAC.app/Contents/MacOS/BADBLOOD_MAC: + "/BADBLOOD_MAC.app/Contents/MacOS/BADBLOOD_MAC": - when: - os: mac store: steam - /BADBLOOD_PC.exe: + "/BADBLOOD_PC.exe": - when: - os: windows store: steam steam: id: 404400 -'Badiya: Desert Survival': +"Badiya: Desert Survival": installDir: Badiya: {} launch: - /Badiya.exe: + "/Badiya.exe": - when: - store: steam steam: @@ -49119,18 +49266,18 @@ Badland Bandits: installDir: Badland Bandits: {} launch: - /BadlandBandits.app: - - arguments: '-user_type steam' + "/BadlandBandits.app": + - arguments: "-user_type steam" when: - os: mac store: steam - /BadlandBandits.exe: - - arguments: '-user_type steam' + "/BadlandBandits.exe": + - arguments: "-user_type steam" when: - os: windows store: steam - /BadlandBandits.x86_64: - - arguments: '-user_type steam' + "/BadlandBandits.x86_64": + - arguments: "-user_type steam" when: - os: linux store: steam @@ -49140,21 +49287,21 @@ Badland Caravan: installDir: Badland Caravan: {} launch: - /BadlandCaravan.exe: + "/BadlandCaravan.exe": - when: - os: windows store: steam steam: id: 1052420 -'Badland: Game of the Year Edition': +"Badland: Game of the Year Edition": files: - /.BADLAND: + "/.BADLAND": tags: - config - save when: - os: linux - /BADLAND/data: + "/BADLAND/data": tags: - config - save @@ -49163,16 +49310,16 @@ Badland Caravan: installDir: BADLAND: {} launch: - /BADLAND.app: + "/BADLAND.app": - when: - os: mac store: steam - /Badland.exe: + "/Badland.exe": - when: - bit: 32 os: windows store: steam - /badland: + "/badland": - when: - os: linux store: steam @@ -49187,11 +49334,11 @@ Badminton Warrior: installDir: Badminton Warrior: {} launch: - /BadmintonWarrior.app/Contents/MacOS/BadmintonWarrior: + "/BadmintonWarrior.app/Contents/MacOS/BadmintonWarrior": - when: - os: mac store: steam - /BadmintonWarrior.exe: + "/BadmintonWarrior.exe": - when: - os: windows store: steam @@ -49201,7 +49348,7 @@ Baezult: installDir: Baezult: {} launch: - /Baezult.exe: + "/Baezult.exe": - when: - os: windows store: steam @@ -49211,7 +49358,7 @@ Baezult 2: installDir: Baezult 2: {} launch: - /Baezult 2.exe: + "/Baezult 2.exe": - when: - os: windows store: steam @@ -49224,7 +49371,7 @@ Bahama Conch n Burger Shack: installDir: Bahama Conch n Burger Shack: {} launch: - /BahamaConchBurgerShack.exe: + "/BahamaConchBurgerShack.exe": - when: - os: windows store: steam @@ -49234,15 +49381,15 @@ Bai Qu: installDir: Bai Qu: {} launch: - /BaiQu.exe: + "/BaiQu.exe": - when: - os: windows store: steam - /lib/linux-x86_64/renpy: + "/lib/linux-x86_64/renpy": - when: - os: linux store: steam - /lib/mac-x86_64/renpy: + "/lib/mac-x86_64/renpy": - when: - os: mac store: steam @@ -49258,22 +49405,22 @@ Bail or Jail: installDir: オバケイドロ!: {} launch: - /OBAKEIDORO!.exe: + "/OBAKEIDORO!.exe": - when: - os: windows store: steam steam: id: 1715980 -Bake 'n Switch: +"Bake 'n Switch": installDir: - Bake 'n Switch: {} + "Bake 'n Switch": {} launch: - /BNS.exe: + "/BNS.exe": - when: - bit: 64 os: windows store: steam - /BNS.sh: + "/BNS.sh": - when: - bit: 64 os: linux @@ -49289,7 +49436,7 @@ Bakery: installDir: Bakery: {} launch: - /bakery.exe: + "/bakery.exe": - when: - os: windows store: steam @@ -49299,7 +49446,7 @@ Bakery Biz Tycoon: installDir: Bakery Biz Tycoon: {} launch: - /BakeryBizTycoon.exe: + "/BakeryBizTycoon.exe": - when: - os: windows store: steam @@ -49307,12 +49454,12 @@ Bakery Biz Tycoon: id: 1101780 Bakery Simulator: files: - /BakerySimulatorFull/Saved/Config: + "/BakerySimulatorFull/Saved/Config": tags: - config when: - os: windows - /BakerySimulatorFull/Saved/SaveGames: + "/BakerySimulatorFull/Saved/SaveGames": tags: - save when: @@ -49320,7 +49467,7 @@ Bakery Simulator: installDir: Bakery Simulator: {} launch: - /BakerySimulatorFull.exe: + "/BakerySimulatorFull.exe": - arguments: SAVEWINPOS=1 when: - bit: 64 @@ -49332,7 +49479,7 @@ Baking Bounce: installDir: Roomie Romance: {} launch: - /RoomieRomance.exe: + "/RoomieRomance.exe": - when: - os: windows store: steam @@ -49342,7 +49489,7 @@ Bakso Simulator: installDir: Bakso Simulator: {} launch: - /Bakso Simulator.exe: + "/Bakso Simulator.exe": - when: - os: windows store: steam @@ -49356,7 +49503,7 @@ Bala na manga: installDir: Bala na manga: {} launch: - /Bala Na Manga.exe: + "/Bala Na Manga.exe": - when: - os: windows store: steam @@ -49364,17 +49511,17 @@ Bala na manga: id: 945390 Balan Wonderworld: files: - /My Games/BALAN WONDERWORLD/Steam//SaveGames: + "/My Games/BALAN WONDERWORLD/Steam//SaveGames": tags: - save when: - os: windows - /My Games/BALAN WONDERWORLD/Steam//SaveGames/Option.sav: + "/My Games/BALAN WONDERWORLD/Steam//SaveGames/Option.sav": tags: - config when: - os: windows - /Happiness/Saved/Config/WindowsNoEditor: + "/Happiness/Saved/Config/WindowsNoEditor": tags: - config when: @@ -49382,7 +49529,7 @@ Balan Wonderworld: installDir: BALAN WONDERWORLD: {} launch: - /Happiness/Binaries/Win64/BALAN WONDERWORLD.exe: + "/Happiness/Binaries/Win64/BALAN WONDERWORLD.exe": - when: - os: windows store: steam @@ -49390,7 +49537,7 @@ Balan Wonderworld: id: 1341050 BalanCity: files: - /BalanCity: + "/BalanCity": tags: - config when: @@ -49398,16 +49545,16 @@ BalanCity: installDir: BalanCity: {} launch: - /balancity.app/Contents/MacOS/nwjs: + "/balancity.app/Contents/MacOS/nwjs": - when: - os: mac store: steam - /nw: + "/nw": - when: - bit: 64 os: linux store: steam - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -49417,11 +49564,11 @@ Balance Breakers: installDir: Balance Breakers: {} launch: - /Balance Breakers.app: + "/Balance Breakers.app": - when: - os: mac store: steam - /Balance Breakers.exe: + "/Balance Breakers.exe": - when: - os: windows store: steam @@ -49434,7 +49581,7 @@ Balance Roll: installDir: Balance Roll: {} launch: - /Balance Roll.exe: + "/Balance Roll.exe": - when: - os: windows store: steam @@ -49447,7 +49594,7 @@ Balance of Soccer 2018: installDir: BalanceOfSoccer: {} launch: - /BalanceOfSoccer.exe: + "/BalanceOfSoccer.exe": - when: - os: windows store: steam @@ -49457,7 +49604,7 @@ Balanced Politics Simulator: installDir: Balanced Politics Simulator: {} launch: - /Balanced Politics Simulator.exe: + "/Balanced Politics Simulator.exe": - when: - os: windows store: steam @@ -49467,7 +49614,7 @@ Balancelot: installDir: Balancelot: {} launch: - /Balancelot.exe: + "/Balancelot.exe": - when: - os: windows store: steam @@ -49477,98 +49624,98 @@ Balconing Simulator 2020: installDir: BalconingSimulator2020: {} launch: - /Balconing Simulator 2020.exe: + "/Balconing Simulator 2020.exe": - when: - store: steam registry: - HKEY_CURRENT_USER/Software/Fancy 'n Punk/Balconing Simulator 2020: + "HKEY_CURRENT_USER/Software/Fancy 'n Punk/Balconing Simulator 2020": tags: - config - save steam: id: 1383010 -Baldi's Basics - Field Trip: +"Baldi's Basics - Field Trip": files: - /Baldi's Basics and Education and Learning: + "/Baldi's Basics and Education and Learning": tags: - save when: - os: windows registry: - HKEY_CURRENT_USER/Software/Mysman12/Baldi's Basics and Education and Learning 1.3.2: + "HKEY_CURRENT_USER/Software/Mysman12/Baldi's Basics and Education and Learning 1.3.2": tags: - config -Baldi's Basics Classic Remastered: +"Baldi's Basics Classic Remastered": installDir: - Baldi's Basics Classic Remastered: {} + "Baldi's Basics Classic Remastered": {} launch: - /BALDI.app: + "/BALDI.app": - when: - os: mac store: steam - /BALDI.exe: + "/BALDI.exe": - when: - bit: 64 os: windows store: steam - /BALDI.x86_64: + "/BALDI.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 1712830 -Baldi's Basics Plus: +"Baldi's Basics Plus": installDir: - Baldi's Basics Plus: {} + "Baldi's Basics Plus": {} launch: - /BALDI.app: + "/BALDI.app": - when: - os: mac store: steam - /BALDI.exe: + "/BALDI.exe": - when: - bit: 64 os: windows store: steam - /BALDI.x86_64: + "/BALDI.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 1275890 -Baldina's Basis in Education Literary Grammar: +"Baldina's Basis in Education Literary Grammar": installDir: - Baldina's Basis in Education Literary Grammar: {} + "Baldina's Basis in Education Literary Grammar": {} launch: - /Baldina - Education & Learning.exe: + "/Baldina - Education & Learning.exe": - when: - os: windows store: steam steam: id: 1028850 -'Baldo: The Guardian Owls': +"Baldo: The Guardian Owls": gog: id: 1707235154 installDir: Baldo the guardian owls: {} launch: - /Baldo The guardian owls.exe: + "/Baldo The guardian owls.exe": - when: - os: windows store: steam steam: id: 1614890 -Baldoo's Basics of Math Education: +"Baldoo's Basics of Math Education": installDir: BALDOO: {} launch: - /BALDOO.app: + "/BALDOO.app": - when: - os: mac store: steam - /BALDOO.exe: + "/BALDOO.exe": - when: - os: windows store: steam @@ -49576,12 +49723,12 @@ Baldoo's Basics of Math Education: id: 1038840 Baldr Sky: files: - /GIGA/BALDRSKY_DIVE2/Save/*.dat: + "/GIGA/BALDRSKY_DIVE2/Save/*.dat": tags: - save when: - os: windows - /GIGA/BALDRSKY_EN/Save/*.dat: + "/GIGA/BALDRSKY_EN/Save/*.dat": tags: - save when: @@ -49591,19 +49738,19 @@ Baldr Sky: installDir: Baldr Sky: {} launch: - /BaldrSky.exe: + "/BaldrSky.exe": - when: - store: steam steam: id: 741140 -Baldur's Gate: +"Baldur's Gate": files: - /Save: + "/Save": tags: - save when: - os: windows - /baldur.ini: + "/baldur.ini": tags: - config when: @@ -49613,24 +49760,24 @@ Baldur's Gate: id: gogExtra: - 1207666353 -Baldur's Gate 3: +"Baldur's Gate 3": files: - /Documents/Larian Studios/Baldur's Gate 3: + "/Documents/Larian Studios/Baldur's Gate 3": tags: - config when: - os: mac - /Documents/Larian Studios/Baldur's Gate 3/PlayerProfiles/Public/Savegames/Story: + "/Documents/Larian Studios/Baldur's Gate 3/PlayerProfiles/Public/Savegames/Story": tags: - save when: - os: mac - /Larian Studios/Baldur's Gate 3: + "/Larian Studios/Baldur's Gate 3": tags: - config when: - os: windows - /Larian Studios/Baldur's Gate 3/PlayerProfiles/Public/Savegames/Story: + "/Larian Studios/Baldur's Gate 3/PlayerProfiles/Public/Savegames/Story": tags: - save when: @@ -49645,45 +49792,45 @@ Baldur's Gate 3: installDir: Baldurs Gate 3: {} launch: - /Baldur's Gate 3.app: + "/Baldur's Gate 3.app": - when: - os: mac store: steam - /Launcher/LariLauncher.exe: + "/Launcher/LariLauncher.exe": - when: - os: windows store: steam - workingDir: /bin + workingDir: "/bin" steam: id: 1086940 -'Baldur''s Gate II: Enhanced Edition': +"Baldur's Gate II: Enhanced Edition": files: - /.local/share/Baldur's Gate II - Enhanced Edition/Baldur.lua: + "/.local/share/Baldur's Gate II - Enhanced Edition/Baldur.lua": tags: - config when: - os: linux - /.local/share/Baldur's Gate II - Enhanced Edition/save: + "/.local/share/Baldur's Gate II - Enhanced Edition/save": tags: - save when: - os: linux - /Documents/Baldur's Gate II - Enhanced Edition/baldur.lua: + "/Documents/Baldur's Gate II - Enhanced Edition/baldur.lua": tags: - config when: - os: mac - /Documents/Baldur's Gate II - Enhanced Edition/save: + "/Documents/Baldur's Gate II - Enhanced Edition/save": tags: - save when: - os: mac - /Baldur's Gate II - Enhanced Edition/baldur.lua: + "/Baldur's Gate II - Enhanced Edition/baldur.lua": tags: - config when: - os: windows - /Baldur's Gate II - Enhanced Edition/save: + "/Baldur's Gate II - Enhanced Edition/save": tags: - save when: @@ -49694,25 +49841,25 @@ Baldur's Gate 3: gogExtra: - 2129826400 installDir: - Baldur's Gate II Enhanced Edition: {} + "Baldur's Gate II Enhanced Edition": {} launch: - /Baldur.exe: + "/Baldur.exe": - when: - os: windows store: steam - /BaldursGateII: + "/BaldursGateII": - when: - os: linux store: steam - /BaldursGateIIEnhancedEdition.app: + "/BaldursGateIIEnhancedEdition.app": - when: - os: mac store: steam steam: id: 257350 -'Baldur''s Gate II: Shadows of Amn': +"Baldur's Gate II: Shadows of Amn": files: - /Save: + "/Save": tags: - save when: @@ -49722,14 +49869,14 @@ Baldur's Gate 3: id: gogExtra: - 1207666373 -'Baldur''s Gate: Dark Alliance': +"Baldur's Gate: Dark Alliance": files: - /Baldur's Gate - Dark Alliance/savedata: + "/Baldur's Gate - Dark Alliance/savedata": tags: - save when: - os: windows - /Baldur's Gate - Dark Alliance/savedata/bgda.cfg: + "/Baldur's Gate - Dark Alliance/savedata/bgda.cfg": tags: - config when: @@ -49737,41 +49884,41 @@ Baldur's Gate 3: gog: id: 1760702251 installDir: - Baldur's Gate - Dark Alliance: {} + "Baldur's Gate - Dark Alliance": {} launch: - /Baldur's Gate - Dark Alliance: + "/Baldur's Gate - Dark Alliance": - when: - os: linux store: steam - /Baldur's Gate - Dark Alliance.app/Contents/MacOS/Baldur's Gate - Dark Alliance: + "/Baldur's Gate - Dark Alliance.app/Contents/MacOS/Baldur's Gate - Dark Alliance": - when: - os: mac store: steam - workingDir: /Baldur's Gate - Dark Alliance.app - /Baldur's Gate - Dark Alliance.exe: + workingDir: "/Baldur's Gate - Dark Alliance.app" + "/Baldur's Gate - Dark Alliance.exe": - when: - os: windows store: steam steam: id: 1695830 -'Baldur''s Gate: Dark Alliance II': +"Baldur's Gate: Dark Alliance II": files: - /Library/Application Support/Baldur's Gate - Dark Alliance II/savedata: + "/Library/Application Support/Baldur's Gate - Dark Alliance II/savedata": tags: - save when: - os: mac - /Baldur's Gate - Dark Alliance II/bgda2.cfg: + "/Baldur's Gate - Dark Alliance II/bgda2.cfg": tags: - config when: - os: windows - /Baldur's Gate - Dark Alliance II/savedata: + "/Baldur's Gate - Dark Alliance II/savedata": tags: - save when: - os: windows - /Baldur's Gate - Dark Alliance II/data/savedata: + "/Baldur's Gate - Dark Alliance II/data/savedata": tags: - save when: @@ -49779,51 +49926,51 @@ Baldur's Gate 3: gog: id: 1745438757 installDir: - Baldur's Gate Dark Alliance II: {} + "Baldur's Gate Dark Alliance II": {} launch: - /Baldur's Gate - Dark Alliance II: + "/Baldur's Gate - Dark Alliance II": - when: - os: linux store: steam - /Baldur's Gate - Dark Alliance II.app/Contents/MacOS/Baldur's Gate - Dark Alliance II: + "/Baldur's Gate - Dark Alliance II.app/Contents/MacOS/Baldur's Gate - Dark Alliance II": - when: - os: mac store: steam - workingDir: /Baldur's Gate - Dark Alliance II.app - /Baldur's Gate - Dark Alliance II.exe: + workingDir: "/Baldur's Gate - Dark Alliance II.app" + "/Baldur's Gate - Dark Alliance II.exe": - when: - os: windows store: steam steam: id: 1889930 -'Baldur''s Gate: Enhanced Edition': +"Baldur's Gate: Enhanced Edition": files: - /.local/share/Baldur's Gate - Enhanced Edition/Baldur.lua: + "/.local/share/Baldur's Gate - Enhanced Edition/Baldur.lua": tags: - config when: - os: linux - /.local/share/Baldur's Gate - Enhanced Edition/save: + "/.local/share/Baldur's Gate - Enhanced Edition/save": tags: - save when: - os: linux - /Documents/Baldur's Gate - Enhanced Edition/Baldur.lua: + "/Documents/Baldur's Gate - Enhanced Edition/Baldur.lua": tags: - config when: - os: mac - /Documents/Baldur's Gate - Enhanced Edition/save: + "/Documents/Baldur's Gate - Enhanced Edition/save": tags: - save when: - os: mac - /Baldur's Gate - Enhanced Edition/Baldur.lua: + "/Baldur's Gate - Enhanced Edition/Baldur.lua": tags: - config when: - os: windows - /Baldur's Gate - Enhanced Edition/save: + "/Baldur's Gate - Enhanced Edition/save": tags: - save when: @@ -49832,9 +49979,9 @@ Baldur's Gate 3: id: 1207666353 id: gogExtra: + - 1092899832 - 1459335293 - 1459337461 - - 1092899832 - 1488384694 steamExtra: - 385970 @@ -49842,45 +49989,45 @@ Baldur's Gate 3: - 459290 - 687500 installDir: - Baldur's Gate Enhanced Edition: {} + "Baldur's Gate Enhanced Edition": {} launch: - /Baldur's Gate - Enhanced Edition.app: + "/Baldur's Gate - Enhanced Edition.app": - when: - os: mac store: steam - /Baldur.exe: + "/Baldur.exe": - when: - os: windows store: steam - /BaldursGate: + "/BaldursGate": - when: - os: linux store: steam steam: id: 228280 -'Ball 2D: Soccer Online': +"Ball 2D: Soccer Online": installDir: Ball 2D: {} launch: - /Ball 2D.app: + "/Ball 2D.app": - when: - os: mac store: steam - /Ball 2D.exe: + "/Ball 2D.exe": - when: - os: windows store: steam steam: id: 703940 -'Ball 3D: Soccer Online': +"Ball 3D: Soccer Online": installDir: Ball 3D: {} launch: - /Ball 3D.app: + "/Ball 3D.app": - when: - os: mac store: steam - /Ball 3D.exe: + "/Ball 3D.exe": - when: - os: windows store: steam @@ -49888,7 +50035,7 @@ Baldur's Gate 3: id: 485610 Ball Breakers: files: - /Save: + "/Save": tags: - save when: @@ -49897,7 +50044,7 @@ Ball Driver: installDir: Ball Driver: {} launch: - /BallDriver.exe: + "/BallDriver.exe": - when: - bit: 64 os: windows @@ -49908,7 +50055,7 @@ Ball Escape: installDir: Ball Escape: {} launch: - /Ball Escape.exe: + "/Ball Escape.exe": - when: - bit: 64 os: windows @@ -49919,7 +50066,7 @@ Ball Game: installDir: BallGame: {} launch: - /BallGame.exe: + "/BallGame.exe": - when: - os: windows store: steam @@ -49929,7 +50076,7 @@ Ball Grabbers: installDir: Ball Grabbers: {} launch: - /Ball Grabbers.exe: + "/Ball Grabbers.exe": - when: - os: windows store: steam @@ -49940,7 +50087,7 @@ Ball Kicker: id: 732340 Ball Lab: files: - /AppData/LocalLow/Viktor Yurchuk/Ball laB/game.save: + "/AppData/LocalLow/Viktor Yurchuk/Ball laB/game.save": tags: - save when: @@ -49948,7 +50095,7 @@ Ball Lab: installDir: Ball laB: {} launch: - /BalllaB.exe: + "/BalllaB.exe": - when: - os: windows store: steam @@ -49962,8 +50109,8 @@ Ball Out: installDir: Ball Out: {} launch: - /BallOut.exe: - - arguments: '-nohmd' + "/BallOut.exe": + - arguments: "-nohmd" when: - bit: 64 os: windows @@ -49974,7 +50121,7 @@ Ball Pit Simulator: installDir: Ball Pit Simulator: {} launch: - /Ballpitgame.exe: + "/Ballpitgame.exe": - when: - bit: 64 os: windows @@ -49985,11 +50132,11 @@ Ball Platformer: installDir: Ball Platformer: {} launch: - /Ball Platformer.app/Contents/MacOS/Ball Platformer: + "/Ball Platformer.app/Contents/MacOS/Ball Platformer": - when: - os: mac store: steam - /Ball Platformer.exe: + "/Ball Platformer.exe": - when: - os: windows store: steam @@ -50002,7 +50149,7 @@ Ball fall: installDir: ball fall: {} launch: - /BallFall (1) - new and improved.exe: + "/BallFall (1) - new and improved.exe": - when: - store: steam steam: @@ -50017,15 +50164,15 @@ Ball of Wonder: installDir: Ball of Wonder: {} launch: - /BallOfWonder.app/Contents/MacOS/Mac_Runner: + "/BallOfWonder.app/Contents/MacOS/Mac_Runner": - when: - os: mac store: steam - /BallOfWonder.exe: + "/BallOfWonder.exe": - when: - os: windows store: steam - /run.sh: + "/run.sh": - when: - os: linux store: steam @@ -50035,7 +50182,7 @@ Ball run and rush: installDir: Ball run and rush: {} launch: - /ballrunandrush.exe: + "/ballrunandrush.exe": - when: - os: windows store: steam @@ -50045,7 +50192,7 @@ BallBoi: installDir: BallBoi: {} launch: - /BALLBOI.exe: + "/BALLBOI.exe": - when: - os: windows store: steam @@ -50055,11 +50202,11 @@ Ballad of Solar: installDir: Ballad of Solar: {} launch: - /BalladOfSolar.exe: + "/BalladOfSolar.exe": - when: - os: windows store: steam - /Ballad_of_Solar.app: + "/Ballad_of_Solar.app": - when: - os: mac store: steam @@ -50069,11 +50216,11 @@ Ballads at Midnight: installDir: Ballads at Midnight: {} launch: - /BalladsatMidnight.app: + "/BalladsatMidnight.app": - when: - os: mac store: steam - /BalladsatMidnight.exe: + "/BalladsatMidnight.exe": - when: - os: windows store: steam @@ -50083,7 +50230,7 @@ Ballads of Hongye: installDir: BalladsofHongye: {} launch: - /bin64/BalladsOfHongye.exe: + "/bin64/BalladsOfHongye.exe": - when: - os: windows store: steam @@ -50091,7 +50238,7 @@ Ballads of Hongye: id: 1723560 Ballance: files: - /Database.tdb: + "/Database.tdb": tags: - save when: @@ -50104,11 +50251,11 @@ Ballance: - config steam: id: 2000770 -'Ballance: The Return': +"Ballance: The Return": installDir: Ballance The Return: {} launch: - /Ballance.exe: + "/Ballance.exe": - when: - bit: 64 os: windows @@ -50122,29 +50269,29 @@ Ballastic: installDir: Ballastic: {} launch: - /Ballastic: + "/Ballastic": - when: - bit: 64 os: linux store: steam - /Ballastic.app/Contents/MacOS/Ballastic: + "/Ballastic.app/Contents/MacOS/Ballastic": - when: - os: mac store: steam - /Ballastic.exe: + "/Ballastic.exe": - when: - os: windows store: steam - /Ballastic32: + "/Ballastic32": - when: - bit: 32 os: linux store: steam steam: id: 978120 -'Ballerburg: Castle Siege': +"Ballerburg: Castle Siege": files: - /Settings.dat: + "/Settings.dat": tags: - config when: @@ -50158,7 +50305,7 @@ Ballista Legend: installDir: Ballista Legend.exe: {} launch: - /Ballista Legend.exe: + "/Ballista Legend.exe": - when: - os: windows store: steam @@ -50168,7 +50315,7 @@ Ballistic (2017): installDir: Ballistic: {} launch: - /ballistic_414.exe: + "/ballistic_414.exe": - when: - bit: 64 os: windows @@ -50182,7 +50329,7 @@ Ballistic Craft: installDir: Ballistic Craft: {} launch: - /BallisticCraft.exe: + "/BallisticCraft.exe": - when: - store: steam steam: @@ -50191,7 +50338,7 @@ Ballistic Mini Golf: installDir: BallisticMiniGolf: {} launch: - /BallisticMiniGolf.exe: + "/BallisticMiniGolf.exe": - when: - os: windows store: steam @@ -50199,7 +50346,7 @@ Ballistic Mini Golf: id: 725960 Ballistic Overkill: files: - /AppData/LocalLow/Aquiris Game Studio/Ballistic Overkill/Unity/762356f9-eed9-4597-bdd9-4472c0ebea59/Analytics: + "/AppData/LocalLow/Aquiris Game Studio/Ballistic Overkill/Unity/762356f9-eed9-4597-bdd9-4472c0ebea59/Analytics": tags: - config when: @@ -50207,18 +50354,18 @@ Ballistic Overkill: installDir: Ballistic: {} launch: - /BallisticOverkill.app: - - arguments: '-force-glcore -logfile output.txt' + "/BallisticOverkill.app": + - arguments: "-force-glcore -logfile output.txt" when: - os: mac store: steam - /BallisticOverkill.exe: - - arguments: '-logfile output.txt' + "/BallisticOverkill.exe": + - arguments: "-logfile output.txt" when: - os: windows store: steam - /BallisticOverkill.x86_64: - - arguments: '-logfile output.txt' + "/BallisticOverkill.x86_64": + - arguments: "-logfile output.txt" when: - bit: 64 os: linux @@ -50232,16 +50379,16 @@ Ballistic Tanks: installDir: Ballistic Tanks: {} launch: - /BallisticTanks: + "/BallisticTanks": - when: - bit: 64 os: linux store: steam - /BallisticTanks.exe: + "/BallisticTanks.exe": - when: - os: windows store: steam - /ballistictanks.app/Contents/MacOS/nwjs: + "/ballistictanks.app/Contents/MacOS/nwjs": - when: - bit: 64 os: mac @@ -50250,17 +50397,17 @@ Ballistic Tanks: id: 493060 BallisticNG: files: - /User/Configs/Controller: + "/User/Configs/Controller": tags: - config when: - os: windows - /User/Configs/ini: + "/User/Configs/ini": tags: - config when: - os: windows - /User/Save: + "/User/Save": tags: - save when: @@ -50277,15 +50424,15 @@ BallisticNG: installDir: BallisticNG: {} launch: - /BallisticNG: + "/BallisticNG": - when: - os: linux store: steam - /BallisticNG.app: + "/BallisticNG.app": - when: - os: mac store: steam - /BallisticNG.exe: + "/BallisticNG.exe": - when: - os: windows store: steam @@ -50295,15 +50442,15 @@ Ballistick: installDir: Ballistick: {} launch: - /Ballistick.app/Contents/MacOS/Ballistick: + "/Ballistick.app/Contents/MacOS/Ballistick": - when: - os: mac store: steam - /Ballistick05.exe: + "/Ballistick05.exe": - when: - os: windows store: steam - /newtest.x86_64: + "/newtest.x86_64": - when: - os: linux store: steam @@ -50311,7 +50458,7 @@ Ballistick: id: 518620 Ballistics: files: - /Savegames: + "/Savegames": tags: - save when: @@ -50320,7 +50467,7 @@ Balloon: installDir: Balloon: {} launch: - /Balloon.exe: + "/Balloon.exe": - when: - os: windows store: steam @@ -50330,7 +50477,7 @@ Balloon Blowout: installDir: Balloon Blowout: {} launch: - /BalloonBlowout.exe: + "/BalloonBlowout.exe": - when: - os: windows store: steam @@ -50345,7 +50492,7 @@ Balloon Fiesta 3D: installDir: Balloon Fiesta 3D: {} launch: - /Balloon Fiesta 3D.exe: + "/Balloon Fiesta 3D.exe": - when: - os: windows store: steam @@ -50355,7 +50502,7 @@ Balloon Fighter: installDir: Balloon Fighter: {} launch: - /BalloonFighter.exe: + "/BalloonFighter.exe": - when: - os: windows store: steam @@ -50365,7 +50512,7 @@ Balloon Girl: installDir: Balloon Girl: {} launch: - /Balloon Girl.exe: + "/Balloon Girl.exe": - when: - os: windows store: steam @@ -50374,11 +50521,11 @@ Balloon Girl: Balloon Guy: steam: id: 811520 -'Balloon Popping Pigs: Deluxe': +"Balloon Popping Pigs: Deluxe": installDir: Balloon Popping Pigs: {} launch: - /balloon_popping_pigs_PC.exe: + "/balloon_popping_pigs_PC.exe": - when: - os: windows store: steam @@ -50391,7 +50538,7 @@ Balloon Strike: installDir: Balloon Strike: {} launch: - /balloonstrike.exe: + "/balloonstrike.exe": - when: - os: windows store: steam @@ -50406,30 +50553,30 @@ Balloonatics: installDir: Balloonatics: {} launch: - /Balloonatics: + "/Balloonatics": - when: - os: linux store: steam - /Balloonatics.exe: + "/Balloonatics.exe": - when: - os: windows store: steam steam: id: 744600 -'Ballpoint Universe: Infinite': +"Ballpoint Universe: Infinite": files: - /BPU.app/Contents/CloudSaves: + "/BPU.app/Contents/CloudSaves": tags: - save when: - os: mac - /BPU_Data/CloudSaves: + "/BPU_Data/CloudSaves": tags: - save when: - os: windows - os: linux - /.config/unity3d/Arachnid Games/Ballpoint Universe: + "/.config/unity3d/Arachnid Games/Ballpoint Universe": tags: - config - save @@ -50438,20 +50585,20 @@ Balloonatics: installDir: Arachnid Games: {} launch: - /BPU.app: + "/BPU.app": - when: - os: mac store: steam - /BPU.exe: + "/BPU.exe": - when: - os: windows store: steam - /BPU.x86: + "/BPU.x86": - when: - bit: 32 os: linux store: steam - /BPU.x86_64: + "/BPU.x86_64": - when: - os: linux store: steam @@ -50468,7 +50615,7 @@ Balls and Magnets: installDir: Balls and Magnets: {} launch: - /PLAY.exe: + "/PLAY.exe": - when: - os: windows store: steam @@ -50480,20 +50627,20 @@ Balls of Steel: installDir: Balls of Steel: {} launch: - /Balls of Steel.app: + "/Balls of Steel.app": - when: - os: mac store: steam - /Balls of Steel.bat: + "/Balls of Steel.bat": - when: - os: windows store: steam - workingDir: /Balls of Steel - /Balls of Steel/bos.exe: + workingDir: "/Balls of Steel" + "/Balls of Steel/bos.exe": - when: - os: windows store: steam - workingDir: /Balls of Steel + workingDir: "/Balls of Steel" registry: HKEY_LOCAL_MACHINE/SOFTWARE/Wildfire Studios/Balls of Steel: tags: @@ -50508,15 +50655,15 @@ Balls! Virtual Reality Cricket: Balls! Virtual Reality Cricket: {} steam: id: 517220 -"Balls!\U0001F92C\U0001F346": +Balls!🤬🍆: installDir: Balls: {} launch: - /Balls.exe: + "/Balls.exe": - when: - os: windows store: steam - /Balls.x86_64: + "/Balls.x86_64": - when: - os: linux store: steam @@ -50531,7 +50678,7 @@ Ballway: installDir: Ballway: {} launch: - /Ballway.exe: + "/Ballway.exe": - when: - os: windows store: steam @@ -50540,12 +50687,12 @@ Ballway: Ballz Royale: steam: id: 931760 -'Ballz: Farm': +"Ballz: Farm": installDir: BallzFarm: {} launch: - /BallzFarm.exe: - - arguments: '-fullscreen' + "/BallzFarm.exe": + - arguments: "-fullscreen" when: - os: windows store: steam @@ -50553,7 +50700,7 @@ Ballz Royale: id: 705670 Balrum: files: - /files/saves: + "/files/saves": tags: - save when: @@ -50563,29 +50710,32 @@ Balrum: installDir: Balrum: {} launch: - /Balrum: + "/Balrum": - when: - os: mac store: steam - /Balrum.exe: + - bit: 64 + os: linux + store: steam + "/Balrum.exe": - when: - os: windows store: steam steam: id: 424250 -Balthazar's Dream: +"Balthazar's Dream": installDir: - Balthazar's Dream: {} + "Balthazar's Dream": {} launch: - /BetaMacBuild.app: + "/BetaMacBuild.app": - when: - os: mac store: steam - /balthazarsdream.x86: + "/balthazarsdream.x86": - when: - os: linux store: steam - /bd.exe: + "/bd.exe": - when: - os: windows store: steam @@ -50593,12 +50743,12 @@ Balthazar's Dream: id: 583890 Bambino Rally 3: files: - /scriptsAndAssets/client/prefs.cs: + "/scriptsAndAssets/client/prefs.cs": tags: - config when: - os: windows - /Maluch Racer 3/users: + "/Maluch Racer 3/users": tags: - save when: @@ -50606,7 +50756,7 @@ Bambino Rally 3: installDir: Bambino Rally 3: {} launch: - /MaluchRacer3.exe: + "/MaluchRacer3.exe": - when: - os: windows store: steam @@ -50616,7 +50766,7 @@ Bamboo EP: installDir: Bamboo EP: {} launch: - /BambooEP.exe: + "/BambooEP.exe": - when: - store: steam steam: @@ -50625,11 +50775,11 @@ BanHammer: installDir: BanHammer: {} launch: - /BanHammer.app/Contents/MacOS/BanHammer: + "/BanHammer.app/Contents/MacOS/BanHammer": - when: - os: mac store: steam - /BanHammer.exe: + "/BanHammer.exe": - when: - os: windows store: steam @@ -50639,15 +50789,15 @@ Banana Drama: installDir: Banana Drama: {} launch: - /Master_Build_Linux/LINUX_RELEASE_BUILD.x86_64: + "/Master_Build_Linux/LINUX_RELEASE_BUILD.x86_64": - when: - os: linux store: steam - /Master_Build_Mac.app: + "/Master_Build_Mac.app": - when: - os: mac store: steam - /Master_Build_Windows/Banana_Drama_Git.exe: + "/Master_Build_Windows/Banana_Drama_Git.exe": - when: - os: windows store: steam @@ -50658,12 +50808,12 @@ Banana Girl: id: 693480 Banana Hell: files: - /Godot/app_userdata/Banana Hell/options.cfg: + "/Godot/app_userdata/Banana Hell/options.cfg": tags: - config when: - os: windows - /Godot/app_userdata/Banana Hell/save-file.cfg: + "/Godot/app_userdata/Banana Hell/save-file.cfg": tags: - save when: @@ -50671,7 +50821,7 @@ Banana Hell: installDir: Banana Hell: {} launch: - /banana_hell.exe: + "/banana_hell.exe": - when: - bit: 64 os: windows @@ -50687,7 +50837,7 @@ Banana Town: installDir: Banana Town: {} launch: - /Banana Town.exe: + "/Banana Town.exe": - when: - os: windows store: steam @@ -50697,7 +50847,7 @@ Banano Bros: installDir: BANANO BROS: {} launch: - /bananobros.exe: + "/bananobros.exe": - when: - os: windows store: steam @@ -50707,7 +50857,7 @@ Band of Defenders: installDir: Band of Defenders: {} launch: - /BandOfDefenders.exe: + "/BandOfDefenders.exe": - when: - store: steam steam: @@ -50716,7 +50866,7 @@ Band of Drones: installDir: Band of Drones: {} launch: - /BandOfDrones.bat: + "/BandOfDrones.bat": - when: - os: windows store: steam @@ -50726,7 +50876,7 @@ Band of Outlaws: installDir: Band of Outlaws: {} launch: - /BandOfOutlaws-UpdatedArt-.exe: + "/BandOfOutlaws-UpdatedArt-.exe": - when: - os: windows store: steam @@ -50736,11 +50886,11 @@ Bandapes: installDir: Sokpop S05 Bandapes: {} launch: - /Bandapes.app: + "/Bandapes.app": - when: - os: mac store: steam - /Bandapes.exe: + "/Bandapes.exe": - when: - os: windows store: steam @@ -50750,7 +50900,7 @@ Bandit Kings of Ancient China: installDir: Suikoden1: {} launch: - /Suikoden1_Launcher.exe: + "/Suikoden1_Launcher.exe": - when: - os: windows store: steam @@ -50765,7 +50915,7 @@ Bandit Simulator: installDir: Bandit Brawler: {} launch: - /BanditBrawler.exe: + "/BanditBrawler.exe": - when: - os: windows store: steam @@ -50775,7 +50925,7 @@ Bandit the game: installDir: Bandit the game: {} launch: - /Bandit.exe: + "/Bandit.exe": - when: - bit: 64 os: windows @@ -50786,7 +50936,7 @@ Bandits: installDir: Bandits: {} launch: - /Bandits.exe: + "/Bandits.exe": - when: - bit: 64 os: windows @@ -50797,7 +50947,7 @@ Bane of Asphodel: installDir: Bane of Asphodel: {} launch: - /BaneofAsphodel.exe: + "/BaneofAsphodel.exe": - when: - os: windows store: steam @@ -50807,7 +50957,7 @@ Bang Bang Car: installDir: Bang Bang Car: {} launch: - /BangBangCar.exe: + "/BangBangCar.exe": - when: - os: windows store: steam @@ -50817,7 +50967,7 @@ Bang Bang Fruit: installDir: Bang Bang Fruit: {} launch: - /BBF.exe: + "/BBF.exe": - when: - os: windows store: steam @@ -50827,7 +50977,7 @@ Bang Bang Fruit 2: installDir: Bang Bang Fruit 2: {} launch: - /BBF2.exe: + "/BBF2.exe": - when: - os: windows store: steam @@ -50837,14 +50987,14 @@ Bang Bang Fruit 3: installDir: Bang Bang Fruit 3: {} launch: - /BBF3.exe: + "/BBF3.exe": - when: - store: steam steam: id: 905350 Bang Bang Racing: files: - /userdata//207020/remote: + "/userdata//207020/remote": tags: - config - save @@ -50853,10 +51003,10 @@ Bang Bang Racing: installDir: BangBangRacing: {} launch: - /BangBangRacing.exe: + "/BangBangRacing.exe": - when: - store: steam - - arguments: '-safemode' + - arguments: "-safemode" when: - store: steam steam: @@ -50865,11 +51015,11 @@ Bang! Bang!: installDir: BANG! BANG!: {} launch: - /nw: + "/nw": - when: - os: linux store: steam - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -50880,14 +51030,14 @@ Bang! Howdy: Bang Howdy: {} steam: id: 675810 -'Bang-On Balls: Chronicles': +"Bang-On Balls: Chronicles": files: - /BoB/Saved/Config/WindowsNoEditor: + "/BoB/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /BoB/Saved/SaveGames: + "/BoB/Saved/SaveGames": tags: - save when: @@ -50897,7 +51047,7 @@ Bang! Howdy: installDir: BangOnBalls: {} launch: - /BoB.exe: + "/BoB.exe": - when: - os: windows store: steam @@ -50905,7 +51055,7 @@ Bang! Howdy: id: 1227650 Banished: files: - /Banished/Save: + "/Banished/Save": tags: - save when: @@ -50915,11 +51065,11 @@ Banished: installDir: Banished: {} launch: - /Application-steam-x32.exe: + "/Application-steam-x32.exe": - when: - bit: 32 store: steam - /Application-steam-x64.exe: + "/Application-steam-x64.exe": - when: - bit: 64 store: steam @@ -50932,7 +51082,7 @@ Banished: Banished Castle VR: steam: id: 1123100 -'Bank Limit: Advanced Battle Racing': +"Bank Limit: Advanced Battle Racing": installDir: Bank Limit Advanced Battle Racing: {} steam: @@ -50941,7 +51091,7 @@ Bankrupt Heroines 2: installDir: Bankrupt Heroines 2: {} launch: - /Bankrupt Heroines 2.exe: + "/Bankrupt Heroines 2.exe": - when: - store: steam steam: @@ -50951,7 +51101,7 @@ Bankster: id: 747630 Banner of the Maid: files: - /AppData/LocalLow/AzureFlameStudio/Banner: + "/AppData/LocalLow/AzureFlameStudio/Banner": tags: - save when: @@ -50959,7 +51109,7 @@ Banner of the Maid: installDir: Banner of the Maid: {} launch: - /banner.exe: + "/banner.exe": - when: - os: windows store: steam @@ -50969,7 +51119,7 @@ Bannerman: installDir: Bannerman: {} launch: - /Bannerman.exe: + "/Bannerman.exe": - when: - os: windows store: steam @@ -50979,7 +51129,7 @@ Bannermen: installDir: Bannermen: {} launch: - /RTSGame.exe: + "/RTSGame.exe": - when: - os: windows store: steam @@ -50987,7 +51137,7 @@ Bannermen: id: 699740 Banners of Ruin: files: - /AppData/LocalLow/MonteBearo/BannersOfRuin/SaveData: + "/AppData/LocalLow/MonteBearo/BannersOfRuin/SaveData": tags: - save when: @@ -50996,12 +51146,12 @@ Banners of Ruin: id: 1590989280 id: gogExtra: - - 1666515839 - 1143069331 - - 1550060684 - - 2053935128 - - 1569201309 - 1169004871 + - 1550060684 + - 1569201309 + - 1666515839 + - 2053935128 steamExtra: - 1359660 - 1937690 @@ -51010,7 +51160,7 @@ Banners of Ruin: installDir: BannersOfRuin: {} launch: - /BannersOfRuin.exe: + "/BannersOfRuin.exe": - when: - os: windows store: steam @@ -51025,7 +51175,7 @@ Banter Schooldays!!三〇一室无一人: installDir: Banter_Schooldays: {} launch: - /Banter_Schooldays.exe: + "/Banter_Schooldays.exe": - when: - os: windows store: steam @@ -51035,11 +51185,11 @@ Banyu Lintar Angin - Little Storm -: installDir: Banyu Lintar Angin - Little Storm -: {} launch: - /Banyu Lintar Angin - Little Storm -.app/Contents/MacOS/nwjs: + "/Banyu Lintar Angin - Little Storm -.app/Contents/MacOS/nwjs": - when: - os: mac store: steam - /Banyu Lintar Angin - Little Storm -.exe: + "/Banyu Lintar Angin - Little Storm -.exe": - when: - os: windows store: steam @@ -51047,12 +51197,12 @@ Banyu Lintar Angin - Little Storm -: id: 744800 Banzai Bug: files: - /EXE: + "/EXE": tags: - config when: - os: windows - /EXE/*.sav: + "/EXE/*.sav": tags: - save when: @@ -51061,7 +51211,7 @@ Banzai Escape: installDir: BanzaiEscape: {} launch: - /BanzaiEscape.exe: + "/BanzaiEscape.exe": - when: - os: windows store: steam @@ -51071,7 +51221,7 @@ Banzai Royale: installDir: BANZAI ROYALE: {} launch: - /banzairoyale.exe: + "/banzairoyale.exe": - when: - bit: 64 os: windows @@ -51082,49 +51232,49 @@ Banzo - Marks of Slavery: installDir: Banzo - Marks of Slavery: {} launch: - /Banzo.exe: + "/Banzo.exe": - when: - os: windows store: steam steam: id: 872380 -'Baobabs Mausoleum Ep.1: Ovnifagos Don''t Eat Flamingos': +"Baobabs Mausoleum Ep.1: Ovnifagos Don't Eat Flamingos": installDir: Baobabs Mausoleum Ep. 1: {} launch: - /BaobabsMausoleumEP1.app: + "/BaobabsMausoleumEP1.app": - when: - os: mac store: steam - /BaobabsMausoleumEP1.exe: + "/BaobabsMausoleumEP1.exe": - when: - os: windows store: steam steam: id: 646600 -'Baobabs Mausoleum Ep.2: 1313 Barnabas Dead End Drive': +"Baobabs Mausoleum Ep.2: 1313 Barnabas Dead End Drive": installDir: Baobabs Mausoleum Ep. 2: {} launch: - /BaobabsMausoleumEP2.app: + "/BaobabsMausoleumEP2.app": - when: - os: mac store: steam - /BaobabsMausoleumEP2.exe: + "/BaobabsMausoleumEP2.exe": - when: - os: windows store: steam steam: id: 687720 -'Baobabs Mausoleum Ep.3: Un Pato en Muertoburgo': +"Baobabs Mausoleum Ep.3: Un Pato en Muertoburgo": installDir: Baobabs Mausoleum Ep.3 Un Pato en Muertoburgo: {} launch: - /BaobabsMausoleumEP3.app: + "/BaobabsMausoleumEP3.app": - when: - os: mac store: steam - /BaobabsMausoleumEP3.exe: + "/BaobabsMausoleumEP3.exe": - when: - os: windows store: steam @@ -51134,7 +51284,7 @@ Baptism: installDir: BAPTISM: {} launch: - /BAPTISM.exe: + "/BAPTISM.exe": - when: - os: windows store: steam @@ -51144,7 +51294,7 @@ Baptize Billy: installDir: Baptize Billy: {} launch: - /baptizebilly.exe: + "/baptizebilly.exe": - when: - store: steam steam: @@ -51158,11 +51308,11 @@ Barbara-ian: installDir: Barbara-ian: {} launch: - /Babs.app: + "/Babs.app": - when: - os: mac store: steam - /Babs.exe: + "/Babs.exe": - when: - os: windows store: steam @@ -51172,7 +51322,7 @@ Barbarian Brawl: installDir: BarbarianBrawl: {} launch: - /GameWin32.exe: + "/GameWin32.exe": - when: - bit: 32 os: windows @@ -51183,7 +51333,7 @@ Barbarian Souls: installDir: Barbarian Souls: {} launch: - /BarbarianSouls.exe: + "/BarbarianSouls.exe": - when: - bit: 64 os: windows @@ -51196,15 +51346,15 @@ Barbarian Trash: Barbaric: steam: id: 672440 -'Barbarous: Tavern Of Emyr': +"Barbarous: Tavern Of Emyr": installDir: Barbarous Tavern Of Emyr: {} launch: - /Barbarous Tavern Of Emyr.exe: + "/Barbarous Tavern Of Emyr.exe": - when: - os: windows store: steam - /TVN1.app/Contents/MacOS/TVN1: + "/TVN1.app/Contents/MacOS/TVN1": - when: - os: mac store: steam @@ -51214,7 +51364,7 @@ Barbarroja: installDir: Barbarroja_New: {} launch: - /SetupBarbarroja.exe: + "/SetupBarbarroja.exe": - when: - os: windows store: steam @@ -51224,7 +51374,7 @@ Barbearian: installDir: Barbearian: {} launch: - /barbearian.exe: + "/barbearian.exe": - when: - os: windows store: steam @@ -51232,7 +51382,7 @@ Barbearian: id: 813450 Barbie Dreamhouse Party: files: - /My Games/Barbie Party: + "/My Games/Barbie Party": tags: - save when: @@ -51240,11 +51390,11 @@ Barbie Dreamhouse Party: installDir: Barbie Dreamhouse Party: {} launch: - /barbie.exe: + "/barbie.exe": - when: - os: windows store: steam - - arguments: '-c' + - arguments: "-c" when: - os: windows store: steam @@ -51254,7 +51404,7 @@ Barbie and Her Sisters Puppy Rescue: installDir: Barbie and Her Sisters Puppy Rescue: {} launch: - /Barbie2.exe: + "/Barbie2.exe": - when: - os: windows store: steam @@ -51264,40 +51414,40 @@ Barbie and Her Sisters Puppy Rescue: - config steam: id: 396390 -'Barclay: The Marrowdale Murder': +"Barclay: The Marrowdale Murder": steam: id: 605470 Bard to the Future: installDir: bardtothefuture: {} launch: - /Bard to the Future.app: + "/Bard to the Future.app": - when: - os: mac store: steam - /bardtothefuture: + "/bardtothefuture": - when: - os: linux store: steam - /bardtothefuture.exe: + "/bardtothefuture.exe": - when: - os: windows store: steam steam: id: 337110 -Bard's Gold: +"Bard's Gold": installDir: - Bard's Gold: {} + "Bard's Gold": {} launch: - /Bard's Gold.app: + "/Bard's Gold.app": - when: - os: mac store: steam - /BardsGold.exe: + "/BardsGold.exe": - when: - os: windows store: steam - /runner: + "/runner": - when: - os: linux store: steam @@ -51305,7 +51455,7 @@ Bard's Gold: id: 381900 Bardbarian: files: - /com.treefortress.bardbarian/local store/saves.dat: + "/com.treefortress.bardbarian/local store/saves.dat": tags: - save when: @@ -51313,11 +51463,11 @@ Bardbarian: installDir: Bardbarian: {} launch: - /Bardbarian.exe: + "/Bardbarian.exe": - when: - os: windows store: steam - /Bardbarian_OSX.app/Contents/MacOS/Bardbarian: + "/Bardbarian_OSX.app/Contents/MacOS/Bardbarian": - when: - os: mac store: steam @@ -51327,11 +51477,11 @@ Bare Metal: installDir: Bare Metal: {} launch: - /BareMetal.app: + "/BareMetal.app": - when: - os: mac store: steam - /BareMetal.exe: + "/BareMetal.exe": - when: - os: windows store: steam @@ -51341,27 +51491,27 @@ Bargain Hunter: installDir: Bargain Hunter: {} launch: - /Bargain Hunter.exe: + "/Bargain Hunter.exe": - when: - os: windows store: steam steam: id: 943680 -'Barkley, Shut Up and Jam: Gaiden': +"Barkley, Shut Up and Jam: Gaiden": files: - /Save*.sav: + "/Save*.sav": tags: - save when: - os: windows Barn Finders: files: - /AppData/Local/BarnFinders/Saved/Config/WindowsNoEditor: + "/AppData/Local/BarnFinders/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /AppData/Local/BarnFinders/Saved/SaveGames: + "/AppData/Local/BarnFinders/Saved/SaveGames": tags: - save when: @@ -51369,25 +51519,25 @@ Barn Finders: installDir: BarnFinders: {} launch: - /BarnFinders.exe: + "/BarnFinders.exe": - when: - os: windows store: steam steam: id: 991170 -Barney's Dream Cruise: +"Barney's Dream Cruise": installDir: - Barney's Dream Cruise: {} + "Barney's Dream Cruise": {} launch: - /Barney's Dream Cruise.app: + "/Barney's Dream Cruise.app": - when: - os: mac store: steam - /Barney's Dream Cruise.exe: + "/Barney's Dream Cruise.exe": - when: - os: windows store: steam - /Barney's Dream Cruise.x86_64: + "/Barney's Dream Cruise.x86_64": - when: - os: linux store: steam @@ -51395,7 +51545,7 @@ Barney's Dream Cruise: id: 1052210 Barnyard: files: - /Save: + "/Save": tags: - save when: @@ -51408,24 +51558,24 @@ Barnyard Mahjong 3: installDir: Barnyard Mahjong 3: {} launch: - /BarnyardMahjong3.exe: + "/BarnyardMahjong3.exe": - when: - os: windows store: steam steam: id: 498030 -'Baron Wittard: Nemesis of Ragnarok': +"Baron Wittard: Nemesis of Ragnarok": installDir: baronwittard: {} launch: - /baron_wittard.exe: + "/baron_wittard.exe": - when: - store: steam steam: id: 293980 -'Baron: Fur Is Gonna Fly': +"Baron: Fur Is Gonna Fly": files: - /steamapps/common/Baron Fur Is Gonna Fly/data/saves: + "/steamapps/common/Baron Fur Is Gonna Fly/data/saves": tags: - config - save @@ -51435,7 +51585,7 @@ Barnyard Mahjong 3: installDir: Baron Fur Is Gonna Fly: {} launch: - /Baron.exe: + "/Baron.exe": - when: - bit: 64 os: windows @@ -51444,12 +51594,12 @@ Barnyard Mahjong 3: id: 1134370 Barony: files: - /default.cfg: + "/default.cfg": tags: - config when: - os: windows - /savegames: + "/savegames": tags: - save when: @@ -51465,30 +51615,30 @@ Barony: installDir: Barony: {} launch: - /barony.app: + "/barony.app": - when: - bit: 64 os: mac store: steam - /barony.exe: + "/barony.exe": - when: - os: windows store: steam - /barony.x86_64: + "/barony.x86_64": - when: - bit: 64 os: linux store: steam - /editor.app: + "/editor.app": - when: - bit: 64 os: mac store: steam - /editor.exe: + "/editor.exe": - when: - os: windows store: steam - /editor.x86_64: + "/editor.x86_64": - when: - bit: 64 os: linux @@ -51502,27 +51652,27 @@ Barotrauma: - save when: - os: linux - /config_player.xml: + "/config_player.xml": tags: - config when: - os: windows - /Library/Application Support/Daedalic Entertainment GmbH/Barotrauma/config_player.xml: + "/Library/Application Support/Daedalic Entertainment GmbH/Barotrauma/config_player.xml": tags: - config when: - os: mac - /Library/Application/ Support/Daedalic/ Entertainment/ GmbH/Barotrauma: + "/Library/Application/ Support/Daedalic/ Entertainment/ GmbH/Barotrauma": tags: - save when: - os: mac - /Daedalic Entertainment GmbH/Barotrauma: + "/Daedalic Entertainment GmbH/Barotrauma": tags: - save when: - os: windows - /Daedalic Entertainment GmbH/Barotrauma/config_player.xml: + "/Daedalic Entertainment GmbH/Barotrauma/config_player.xml": tags: - config when: @@ -51530,16 +51680,16 @@ Barotrauma: installDir: Barotrauma: {} launch: - /Barotrauma: + "/Barotrauma": - when: - bit: 64 os: linux store: steam - /Barotrauma.app: + "/Barotrauma.app": - when: - os: mac store: steam - /Barotrauma.exe: + "/Barotrauma.exe": - when: - bit: 64 os: windows @@ -51555,7 +51705,7 @@ Barrage Musical - A Fantasy of Tempest: installDir: Barrage Musical A Fantasy of Tempest: {} launch: - /BXM.exe: + "/BXM.exe": - when: - os: windows store: steam @@ -51565,7 +51715,7 @@ Barrage Musical ~ Basic Danmaku Tutorial ~ / 弹幕音乐绘 ~ 基础教学篇 ~ installDir: Barrage Musical Basic Danmaku Tutorial: {} launch: - /BXM Tutorial.exe: + "/BXM Tutorial.exe": - when: - store: steam steam: @@ -51574,7 +51724,7 @@ Barrel Time Deluxe: installDir: BarrelBootCamp: {} launch: - /BarrelBootCamp.exe: + "/BarrelBootCamp.exe": - when: - os: windows store: steam @@ -51589,27 +51739,27 @@ Barren Roads: installDir: Survival Barren Roads: {} launch: - /br32.exe: + "/br32.exe": - when: - bit: 32 os: windows store: steam - /br64.exe: + "/br64.exe": - when: - bit: 64 os: windows store: steam - /brLinuxuni.x86_64: + "/brLinuxuni.x86_64": - when: - bit: 64 os: linux store: steam - /mac32.app: + "/mac32.app": - when: - bit: 32 os: mac store: steam - /mac64.app: + "/mac64.app": - when: - bit: 64 os: mac @@ -51620,7 +51770,7 @@ Barrier X: installDir: BARRIER X: {} launch: - /BarrierX.exe: + "/BarrierX.exe": - when: - os: windows store: steam @@ -51634,12 +51784,12 @@ Barrimean Jungle: installDir: Barrimean Jungle: {} launch: - /x32/WindowsNoEditor/Test.exe: + "/x32/WindowsNoEditor/Test.exe": - when: - bit: 32 os: windows store: steam - /x64/WindowsNoEditor/Test.exe: + "/x64/WindowsNoEditor/Test.exe": - when: - bit: 64 os: windows @@ -51648,7 +51798,7 @@ Barrimean Jungle: id: 749650 Barro: files: - /Barro/Save/*.scj: + "/Barro/Save/*.scj": tags: - save when: @@ -51656,7 +51806,7 @@ Barro: installDir: SC Jogos: {} launch: - /Barro/Barro.exe: + "/Barro/Barro.exe": - when: - os: windows store: steam @@ -51670,20 +51820,20 @@ Barro 2020: installDir: SC Jogos: {} launch: - /Barro 2020/Barro 2020.exe: + "/Barro 2020/Barro 2020.exe": - when: - os: windows store: steam steam: id: 1168660 -'Barrow Hill: Curse of the Ancient Circle': +"Barrow Hill: Curse of the Ancient Circle": files: - /savegame#.sav: + "/savegame#.sav": tags: - save when: - os: windows - /settings.mat: + "/settings.mat": tags: - config when: @@ -51693,15 +51843,15 @@ Barro 2020: installDir: Barrow Hill: {} launch: - /Barrow Hill.exe: + "/Barrow Hill.exe": - when: - os: windows store: steam steam: id: 494360 -'Barrow Hill: The Dark Path': +"Barrow Hill: The Dark Path": files: - /Saved Games/The Dark Path: + "/Saved Games/The Dark Path": tags: - save when: @@ -51711,7 +51861,7 @@ Barro 2020: installDir: Barrow Hill The Dark Path: {} launch: - /TheDarkPath.exe: + "/TheDarkPath.exe": - when: - os: windows store: steam @@ -51728,7 +51878,7 @@ Bars and Balance: installDir: Bars and Balance: {} launch: - /PLAY.exe: + "/PLAY.exe": - when: - os: windows store: steam @@ -51743,7 +51893,7 @@ Barter Empire: installDir: Barter Empire: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -51756,15 +51906,15 @@ Baru and the Spirit Prince: installDir: Baru and the Spirit Prince: {} launch: - /Baru.app: + "/Baru.app": - when: - os: mac store: steam - /Baru.exe: + "/Baru.exe": - when: - os: windows store: steam - /Baru.sh: + "/Baru.sh": - when: - os: linux store: steam @@ -51772,7 +51922,7 @@ Baru and the Spirit Prince: id: 575030 Base Defense: files: - /Base Defense/valve: + "/Base Defense/valve": tags: - config when: @@ -51780,7 +51930,7 @@ Base Defense: installDir: Base Defense: {} launch: - /launcher.exe: + "/launcher.exe": - when: - os: windows store: steam @@ -51792,11 +51942,11 @@ Base One: installDir: Base One: {} launch: - /BaseOne.app: + "/BaseOne.app": - when: - os: mac store: steam - /BaseOne.exe: + "/BaseOne.exe": - when: - os: windows store: steam @@ -51806,15 +51956,15 @@ Base Raid: installDir: Base Raid: {} launch: - /Base_Raid.app: + "/Base_Raid.app": - when: - os: mac store: steam - /Base_Raid.exe: + "/Base_Raid.exe": - when: - os: windows store: steam - /Base_Raid.sh: + "/Base_Raid.sh": - when: - os: linux store: steam @@ -51832,7 +51982,7 @@ Baseball Mogul 2015: installDir: Baseball Mogul 2015: {} launch: - /BB2K15.exe: + "/BB2K15.exe": - when: - os: windows store: steam @@ -51842,7 +51992,7 @@ Baseball Mogul 2017: installDir: Baseball Mogul 2017: {} launch: - /BB-2017.exe: + "/BB-2017.exe": - when: - store: steam steam: @@ -51851,7 +52001,7 @@ Baseball Mogul 2018: installDir: Baseball Mogul 2018: {} launch: - /BB-2018.exe: + "/BB-2018.exe": - when: - os: windows store: steam @@ -51861,7 +52011,7 @@ Baseball Mogul Diamond: installDir: Baseball Mogul Diamond: {} launch: - /BB-Diamond.exe: + "/BB-Diamond.exe": - when: - os: windows store: steam @@ -51871,7 +52021,7 @@ Baseball Riot: installDir: BaseballRiot: {} launch: - /BaseballRiot.exe: + "/BaseballRiot.exe": - when: - os: windows store: steam @@ -51883,7 +52033,7 @@ Baseball Stars 2: installDir: BASEBALL STARS 2: {} launch: - /bstars2.exe: + "/bstars2.exe": - when: - bit: 32 os: windows @@ -51892,7 +52042,7 @@ Baseball Stars 2: id: 366230 Basement: files: - /AppData/LocalLow/Halfbus/Basement/Saves: + "/AppData/LocalLow/Halfbus/Basement/Saves": tags: - save when: @@ -51902,26 +52052,26 @@ Basement: installDir: Basement: {} launch: - /Basement.app: + "/Basement.app": - when: - os: mac store: steam - /Basement.x86: + "/Basement.x86": - when: - bit: 32 os: linux store: steam - /Basement.x86_64: + "/Basement.x86_64": - when: - bit: 64 os: linux store: steam - /Basement_32.exe: + "/Basement_32.exe": - when: - bit: 32 os: windows store: steam - /Basement_64.exe: + "/Basement_64.exe": - when: - bit: 64 os: windows @@ -51932,7 +52082,7 @@ Bashed.OS: installDir: Bashed.OS: {} launch: - /bos1.exe: + "/bos1.exe": - when: - os: windows store: steam @@ -51942,11 +52092,11 @@ Bashville: installDir: Bashville: {} launch: - /Bashville.app: + "/Bashville.app": - when: - os: mac store: steam - /Bashville.exe: + "/Bashville.exe": - when: - os: windows store: steam @@ -51961,12 +52111,15 @@ Basic Warfare: installDir: Basic Warfare: {} launch: - /basic-warfare: + "/basic-warfare": - when: - bit: 32 os: linux store: steam - /basic-warfare.exe: + - bit: 64 + os: linux + store: steam + "/basic-warfare.exe": - when: - os: windows store: steam @@ -51978,17 +52131,17 @@ Basingstoke: installDir: Basingstoke: {} launch: - /Basingstoke.app: + "/Basingstoke.app": - when: - bit: 64 os: mac store: steam - /Basingstoke.exe: + "/Basingstoke.exe": - when: - bit: 64 os: windows store: steam - /Basingstoke.x86_64: + "/Basingstoke.x86_64": - when: - bit: 64 os: linux @@ -52003,7 +52156,7 @@ BasketBelle: installDir: BasketBelle: {} launch: - /BasketBelle.exe: + "/BasketBelle.exe": - when: - os: windows store: steam @@ -52021,20 +52174,20 @@ Basketball Classics: installDir: Basketball Classics: {} launch: - /basketball_classics.app: + "/basketball_classics.app": - when: - os: mac store: steam - /basketball_classics.exe: + "/basketball_classics.exe": - when: - os: windows store: steam - /basketball_classics.x86: + "/basketball_classics.x86": - when: - bit: 32 os: linux store: steam - /basketball_classics.x86_64: + "/basketball_classics.x86_64": - when: - bit: 64 os: linux @@ -52050,21 +52203,21 @@ Basketball Girls: installDir: Bounce Paradise: {} launch: - /BounceParadise-32.exe: + "/BounceParadise-32.exe": - when: - bit: 64 os: windows store: steam - /BounceParadise.app: + "/BounceParadise.app": - when: - os: mac store: steam - /BounceParadise.exe: + "/BounceParadise.exe": - when: - bit: 64 os: windows store: steam - /BounceParadise.sh: + "/BounceParadise.sh": - when: - os: linux store: steam @@ -52079,7 +52232,7 @@ Basketball Hoop: installDir: Basketball Hoop: {} launch: - /Basketball Hoop.exe: + "/Basketball Hoop.exe": - when: - os: windows store: steam @@ -52089,7 +52242,7 @@ Basketball Pro Management 2014: installDir: BPM14: {} launch: - /BPM.exe: + "/BPM.exe": - when: - os: windows store: steam @@ -52099,8 +52252,8 @@ Basketball Pro Management 2015: installDir: Basketball Pro Management 2015: {} launch: - /BPM2015.exe: - - arguments: 'c}cGp8QE&2CZ3]9A3,c,i4P-dA)h.Xd93s385,fMWY+9,]7b3VSvp-j-mW5:' + "/BPM2015.exe": + - arguments: "c}cGp8QE&2CZ3]9A3,c,i4P-dA)h.Xd93s385,fMWY+9,]7b3VSvp-j-mW5:" when: - store: steam steam: @@ -52119,7 +52272,7 @@ Basment Dwellers: installDir: BASMENT DWELLERS: {} launch: - /BASMENT.exe: + "/BASMENT.exe": - when: - os: windows store: steam @@ -52129,7 +52282,7 @@ Bass Blocks: installDir: Bass Blocks: {} launch: - /BassBlocks.exe: + "/BassBlocks.exe": - when: - os: windows store: steam @@ -52139,7 +52292,7 @@ Bassline Sinker: installDir: Bassline Sinker: {} launch: - /Bassline Sinker.exe: + "/Bassline Sinker.exe": - when: - os: windows store: steam @@ -52149,7 +52302,7 @@ Bassmaster Fishing 2022: installDir: Basmaster Fishing 2022: {} launch: - /FishingGame/Binaries/Win64/BassmasterFishing-Win64-Shipping.exe: + "/FishingGame/Binaries/Win64/BassmasterFishing-Win64-Shipping.exe": - when: - os: windows store: steam @@ -52161,7 +52314,7 @@ Bastard: installDir: Bastard: {} launch: - /Bastard.exe: + "/Bastard.exe": - when: - os: windows store: steam @@ -52171,7 +52324,7 @@ Bastard Bonds: installDir: Bastard Bonds: {} launch: - /BB.exe: + "/BB.exe": - when: - os: windows store: steam @@ -52181,7 +52334,7 @@ Bastide: installDir: Bastide: {} launch: - /BastidePackaging22/Binaries/Win64/BastidePackaging22-Win64-Shipping.exe: + "/BastidePackaging22/Binaries/Win64/BastidePackaging22-Win64-Shipping.exe": - when: - bit: 64 os: windows @@ -52190,30 +52343,30 @@ Bastide: id: 1115450 Bastion: files: - /Library/Application Support/com.wb.Bastion: + "/Library/Application Support/com.wb.Bastion": tags: - config - save when: - os: mac - /Saved Games/Bastion: + "/Saved Games/Bastion": tags: - save when: - os: windows - /userdata//107100: + "/userdata//107100": tags: - config - save when: - store: steam - /Saved Games/Bastion: + "/Saved Games/Bastion": tags: - config - save when: - os: windows - /Bastion: + "/Bastion": tags: - config - save @@ -52224,15 +52377,15 @@ Bastion: installDir: Bastion: {} launch: - /Bastion.app/Contents/MacOS/Bastion: + "/Bastion.app/Contents/MacOS/Bastion": - when: - os: mac store: steam - /Bastion.exe: + "/Bastion.exe": - when: - os: windows store: steam - /Linux/Bastion: + "/Linux/Bastion": - when: - os: linux store: steam @@ -52242,7 +52395,7 @@ Bat Hotel: installDir: Bat Hotel: {} launch: - /Bat Hotel.exe: + "/Bat Hotel.exe": - when: - store: steam steam: @@ -52251,28 +52404,28 @@ BatMUD: installDir: BatMUD: {} launch: - /BatMUD: + "/BatMUD": - when: - os: linux store: steam - /BatMUD.exe: + "/BatMUD.exe": - when: - bit: 64 os: windows store: steam - /Contents/MacOS/BatMUD: + "/Contents/MacOS/BatMUD": - when: - os: mac store: steam steam: id: 616920 -'Batbarian: Testament of the Primordials': +"Batbarian: Testament of the Primordials": gog: id: 1845013484 installDir: Batbarian: {} launch: - /Batbarian Testament of the Primordials.exe: + "/Batbarian Testament of the Primordials.exe": - when: - os: windows store: steam @@ -52282,7 +52435,7 @@ Batch 17: installDir: Batch17: {} launch: - /Batch17.exe: + "/Batch17.exe": - when: - bit: 64 os: windows @@ -52293,7 +52446,7 @@ Bathory - The Bloody Countess: installDir: Bathory - The Bloody Countess: {} launch: - /Bathory.exe: + "/Bathory.exe": - when: - os: windows store: steam @@ -52306,44 +52459,44 @@ Batla: installDir: Batla: {} launch: - /batla.app: + "/batla.app": - when: - os: mac store: steam - /batla.exe: + "/batla.exe": - when: - os: windows store: steam - /batla.x86: + "/batla.x86": - when: - bit: 32 os: linux store: steam - /batla.x86_64: + "/batla.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 338180 -'Batman: Arkham Asylum': +"Batman: Arkham Asylum": files: - /Library/Application Support/Feral Interactive/Batman Arkham City GOTY/Save Data: + "/Library/Application Support/Feral Interactive/Batman Arkham City GOTY/Save Data": tags: - save when: - os: mac - /userdata//35140/remote: + "/userdata//35140/remote": tags: - save when: - store: steam - /Square Enix/Batman Arkham Asylum GOTY/BmGame/Config: + "/Square Enix/Batman Arkham Asylum GOTY/BmGame/Config": tags: - config when: - os: windows - /Square Enix/Batman Arkham Asylum GOTY/SaveData: + "/Square Enix/Batman Arkham Asylum GOTY/SaveData": tags: - save when: @@ -52356,30 +52509,30 @@ Batla: installDir: Batman Arkham Asylum GOTY: {} launch: - /Batman Arkham Asylum GOTY.app: + "/Batman Arkham Asylum GOTY.app": - when: - os: mac store: steam - /Binaries/BmLauncher.exe: + "/Binaries/BmLauncher.exe": - when: - os: windows store: steam - workingDir: /Binaries + workingDir: "/Binaries" steam: id: 35140 -'Batman: Arkham City': +"Batman: Arkham City": files: - /userdata//200260: + "/userdata//200260": tags: - save when: - store: steam - /WB Games/Batman Arkham City GOTY/BmGame/Config: + "/WB Games/Batman Arkham City GOTY/BmGame/Config": tags: - config when: - os: windows - /WB Games/Batman Arkham City GOTY/SaveData: + "/WB Games/Batman Arkham City GOTY/SaveData": tags: - save when: @@ -52392,33 +52545,33 @@ Batla: installDir: Batman Arkham City GOTY: {} launch: - /Batman Arkham City GOTY.app: + "/Batman Arkham City GOTY.app": - when: - os: mac store: steam - /Binaries/Win32/BatmanAC.exe: + "/Binaries/Win32/BatmanAC.exe": - when: - os: windows store: steam - /RunLauncher.bat: + "/RunLauncher.bat": - when: - os: windows store: steam steam: id: 200260 -'Batman: Arkham Knight': +"Batman: Arkham Knight": files: - /BMGame/Config: + "/BMGame/Config": tags: - config when: - os: windows - /BMGame/SaveData: + "/BMGame/SaveData": tags: - save when: - os: windows - /userdata//208650: + "/userdata//208650": tags: - save when: @@ -52468,37 +52621,37 @@ Batla: installDir: Batman Arkham Knight: {} launch: - /Binaries/Win64/BatmanAK.exe: + "/Binaries/Win64/BatmanAK.exe": - when: - bit: 64 os: windows store: steam - workingDir: /Binaries/Win64 + workingDir: "/Binaries/Win64" steam: id: 208650 -'Batman: Arkham Origins': +"Batman: Arkham Origins": files: - /SinglePlayer/BMGame/Config: + "/SinglePlayer/BMGame/Config": tags: - config when: - os: windows - /userdata//209000: + "/userdata//209000": tags: - save when: - store: steam - /WB Games/Batman Arkham Origins/BMGame/Config: + "/WB Games/Batman Arkham Origins/BMGame/Config": tags: - config when: - os: windows - /WB Games/Batman Arkham Origins/GFXSettings.BatmanArkhamOrigins.xml: + "/WB Games/Batman Arkham Origins/GFXSettings.BatmanArkhamOrigins.xml": tags: - config when: - os: windows - /WB Games/Batman Arkham Origins/SaveData: + "/WB Games/Batman Arkham Origins/SaveData": tags: - save when: @@ -52511,22 +52664,22 @@ Batla: installDir: Batman Arkham Origins: {} launch: - /Online/Binaries/Win32/BatmanOriginsOnline.exe: + "/Online/Binaries/Win32/BatmanOriginsOnline.exe": - when: - store: steam - /SinglePlayer/Binaries/Win32/BatmanOrigins.exe: + "/SinglePlayer/Binaries/Win32/BatmanOrigins.exe": - when: - store: steam steam: id: 209000 -'Batman: Arkham Origins Blackgate Deluxe Edition': +"Batman: Arkham Origins Blackgate Deluxe Edition": files: - /GameData/SteamSaves: + "/GameData/SteamSaves": tags: - save when: - os: windows - /VideoSettings.txt: + "/VideoSettings.txt": tags: - config when: @@ -52534,16 +52687,16 @@ Batla: installDir: Batman Arkham Origins Blackgate HD: {} launch: - /Bin/Game.exe: + "/Bin/Game.exe": - when: - os: windows store: steam - workingDir: /Bin + workingDir: "/Bin" steam: id: 267490 -'Batman: Arkham VR': +"Batman: Arkham VR": files: - /ArkhamVR/Saved/SaveGames/BatmanVR_.sav: + "/ArkhamVR/Saved/SaveGames/BatmanVR_.sav": tags: - config - save @@ -52553,9 +52706,9 @@ Batla: Batman Arkham VR: {} steam: id: 502820 -'Batman: The Enemy Within - The Telltale Series': +"Batman: The Enemy Within - The Telltale Series": files: - /Telltale Games/Batman The Enemy Within - The Telltale Series: + "/Telltale Games/Batman The Enemy Within - The Telltale Series": tags: - config - save @@ -52566,26 +52719,27 @@ Batla: installDir: Batman The Enemy Within - The Telltale Series: {} launch: - /Batman2.app: + "/Batman2.app": - when: - os: mac store: steam - /Batman2.exe: + "/Batman2.exe": - when: - bit: 64 os: windows store: steam steam: id: 675260 -'Batman: The Telltale Series': +"Batman: The Telltale Series": files: - /Telltale Games/Batman Series: + "/Telltale Games/Batman Series": tags: - config - save when: - - store: gog - /Telltale Games/Batman The Telltale Series: + - os: windows + store: gog + "/Telltale Games/Batman The Telltale Series": tags: - config - save @@ -52596,33 +52750,33 @@ Batla: installDir: Batman The Telltale Series: {} launch: - /Batman.exe: + "/Batman.exe": - when: - bit: 64 os: windows store: steam steam: id: 498240 -'Batman: Vengeance': +"Batman: Vengeance": files: - /SaveGame: + "/SaveGame": tags: - save when: - os: windows -'Bato: Treasures of Tibet': +"Bato: Treasures of Tibet": installDir: Bato Treasures of Tibet: {} launch: - /bato.exe: + "/bato.exe": - when: - os: windows store: steam steam: id: 1218560 -'Batora: Lost Haven': +"Batora: Lost Haven": files: - /Local/Batora/Saved/Config/WindowsNoEditor/GameUserSettings.ini: + "/Local/Batora/Saved/Config/WindowsNoEditor/GameUserSettings.ini": tags: - config when: @@ -52631,13 +52785,13 @@ Batla: id: 1673878699 id: gogExtra: - - 1674268355 - 1385235026 + - 1674268355 - 2103490191 installDir: Batora Lost Haven: {} launch: - /Batora.exe: + "/Batora.exe": - when: - bit: 64 os: windows @@ -52646,7 +52800,7 @@ Batla: id: 1506440 Battalion 1944: files: - /Battalion/configs: + "/Battalion/configs": tags: - config when: @@ -52654,7 +52808,7 @@ Battalion 1944: installDir: Battalion 1944: {} launch: - /Battalion.exe: + "/Battalion.exe": - when: - bit: 64 os: windows @@ -52665,7 +52819,7 @@ Batter Burst: installDir: BATTER_BURST: {} launch: - /BATTER_BURST.exe: + "/BATTER_BURST.exe": - when: - os: windows store: steam @@ -52683,7 +52837,7 @@ Battery Jam: installDir: Battery Jam: {} launch: - /Battery_Jam.exe: + "/Battery_Jam.exe": - when: - bit: 64 os: windows @@ -52705,20 +52859,20 @@ Battle Academy: installDir: Battle Academy: {} launch: - /BA_STEAM.exe: + "/BA_STEAM.exe": - when: - store: steam steam: id: 287070 -'Battle Academy 2: Eastern Front': +"Battle Academy 2: Eastern Front": installDir: Battle Academy 2: {} launch: - /BASteam_1.0.1.app: + "/BASteam_1.0.1.app": - when: - os: mac store: steam - /autorun.exe: + "/autorun.exe": - when: - os: windows store: steam @@ -52728,17 +52882,17 @@ Battle Arena: installDir: Battle Arena: {} launch: - /Battle Arena.exe: + "/Battle Arena.exe": - when: - os: windows store: steam steam: id: 1139060 -'Battle Arena: Euro Wars': +"Battle Arena: Euro Wars": installDir: Battle Arena Euro Wars: {} launch: - /BattleArena_EuroWars.exe: + "/BattleArena_EuroWars.exe": - when: - bit: 64 os: windows @@ -52754,16 +52908,16 @@ Battle Axe: installDir: Battle Axe: {} launch: - /Battle Axe: + "/Battle Axe": - when: - bit: 64 os: linux store: steam - /Battle Axe.app/Contents/MacOS/Battle Axe: + "/Battle Axe.app/Contents/MacOS/Battle Axe": - when: - os: mac store: steam - /Battle Axe.exe: + "/Battle Axe.exe": - when: - os: windows store: steam @@ -52786,7 +52940,7 @@ Battle Battalions: installDir: BattleBattalions: {} launch: - /ClientLauncherRS.exe: + "/ClientLauncherRS.exe": - when: - bit: 32 os: windows @@ -52797,7 +52951,7 @@ Battle Bolts: installDir: Battle Bolts: {} launch: - /BattleBolts.exe: + "/BattleBolts.exe": - when: - bit: 64 os: windows @@ -52811,8 +52965,8 @@ Battle Brawlers: installDir: Battle Brawlers: {} launch: - /FTF.exe: - - arguments: '-windowed' + "/FTF.exe": + - arguments: "-windowed" when: - os: windows store: steam @@ -52820,24 +52974,24 @@ Battle Brawlers: id: 823600 Battle Breakers: files: - /WorldExplorers/Saved/Config/WindowsNoEditor: + "/WorldExplorers/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /WorldExplorers/Saved/SaveGames: + "/WorldExplorers/Saved/SaveGames": tags: - save when: - os: windows Battle Brothers: files: - /Battle Brothers: + "/Battle Brothers": tags: - config when: - os: windows - /Battle Brothers/savegames: + "/Battle Brothers/savegames": tags: - save when: @@ -52846,15 +53000,14 @@ Battle Brothers: id: 1590012242 id: gogExtra: - - 1353924604 - 1138065447 + - 1262476412 - 1353924604 + - 1354029796 - 1439127300 - 1478596696 - - 1262476412 - - 1354029796 - - 2092450271 - 1763378047 + - 2092450271 steamExtra: - 365380 - 732460 @@ -52867,11 +53020,11 @@ Battle Brothers: installDir: Battle Brothers: {} launch: - /win32/BattleBrothers.exe: + "/win32/BattleBrothers.exe": - when: - os: windows store: steam - - arguments: '-reset' + - arguments: "-reset" when: - os: windows store: steam @@ -52881,7 +53034,7 @@ Battle Bruise: installDir: Battle Bruise: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -52891,7 +53044,7 @@ Battle Bruise 2: installDir: Battle Bruise 2: {} launch: - /Battle Bruise2.exe: + "/Battle Bruise2.exe": - when: - os: windows store: steam @@ -52910,34 +53063,36 @@ Battle Carnival: Battle Carnival: {} steam: id: 803140 -'Battle Chasers: Nightwar': +"Battle Chasers: Nightwar": files: - /AppData/LocalLow/Airship Syndicate/BattleChasersNightwar//BCSettings.txt: - tags: - - config - when: - - store: steam - /AppData/LocalLow/Airship Syndicate/BattleChasersNightwar//saves: - tags: - - save - when: - - store: steam - /AppData/LocalLow/Airship Syndicate/BattleChasersNightwar/user/BCSettings.txt: + "/AppData/LocalLow/Airship Syndicate/BattleChasersNightwar//BCSettings.txt": tags: - config when: - os: windows - /AppData/LocalLow/Airship Syndicate/BattleChasersNightwar/user/saves: + store: steam + "/AppData/LocalLow/Airship Syndicate/BattleChasersNightwar//saves": tags: - save when: - os: windows - /unity3d/Airship Syndicate/BattleChasersNightwar: + store: steam + "/AppData/LocalLow/Airship Syndicate/BattleChasersNightwar/user/BCSettings.txt": + tags: + - config + when: + - os: windows + "/AppData/LocalLow/Airship Syndicate/BattleChasersNightwar/user/saves": + tags: + - save + when: + - os: windows + "/unity3d/Airship Syndicate/BattleChasersNightwar": tags: - config when: - os: linux - /unity3d/Airship Syndicate/BattleChasersNightwar//saves: + "/unity3d/Airship Syndicate/BattleChasersNightwar//saves": tags: - save when: @@ -52950,16 +53105,16 @@ Battle Carnival: installDir: Battle Chasers Nightwar: {} launch: - /BC: + "/BC": - when: - os: linux store: steam - /BC.app/Contents/MacOS/BC: + "/BC.app/Contents/MacOS/BC": - when: - bit: 64 os: mac store: steam - /BC.exe: + "/BC.exe": - when: - os: windows store: steam @@ -52967,12 +53122,12 @@ Battle Carnival: id: 451020 Battle Chef Brigade: files: - /userdata//452570/remote/*.save: + "/userdata//452570/remote/*.save": tags: - save when: - store: steam - /userdata//452570/remote/BCBConfig.ini: + "/userdata//452570/remote/BCBConfig.ini": tags: - config when: @@ -52982,15 +53137,15 @@ Battle Chef Brigade: installDir: Battle Chef Brigade: {} launch: - /BattleChefBrigade.app: + "/BattleChefBrigade.app": - when: - os: mac store: steam - /BattleChefBrigade.exe: + "/BattleChefBrigade.exe": - when: - os: windows store: steam - /BattleChefBrigade.x86_64: + "/BattleChefBrigade.x86_64": - when: - os: linux store: steam @@ -53006,18 +53161,18 @@ Battle Chess: installDir: Battle Chess: {} launch: - /DOSBox/dosbox.app/Contents/MacOS/DOSBox: - - arguments: '-conf \"config/dosboxBC.conf\" -conf \"config/dosboxBC_single.conf\"' + "/DOSBox/dosbox.app/Contents/MacOS/DOSBox": + - arguments: "-conf \\\"config/dosboxBC.conf\\\" -conf \\\"config/dosboxBC_single.conf\\\"" when: - os: mac store: steam - /DOSBox/dosbox.exe: - - arguments: '-conf \"config/dosboxBC.conf\" -conf \"config/dosboxBC_single.conf\" -noconsole' + "/DOSBox/dosbox.exe": + - arguments: "-conf \\\"config/dosboxBC.conf\\\" -conf \\\"config/dosboxBC_single.conf\\\" -noconsole" when: - os: windows store: steam - /dosbox/dosbox: - - arguments: \"-conf\" \"./config/dosboxBC.conf\" \"-conf\" \"./config/dosboxBC_single.conf\" \"-noconsole\" + "/dosbox/dosbox": + - arguments: "\\\"-conf\\\" \\\"./config/dosboxBC.conf\\\" \\\"-conf\\\" \\\"./config/dosboxBC_single.conf\\\" \\\"-noconsole\\\"" when: - os: linux store: steam @@ -53029,61 +53184,62 @@ Battle Chess 4000: installDir: Battle Chess 4000: {} launch: - /DOSBox/dosbox.app/Contents/MacOS/DOSBox: - - arguments: '-conf \"config/dosboxBC4K.conf\" -conf \"config/dosboxBC4K_single.conf\"' + "/DOSBox/dosbox.app/Contents/MacOS/DOSBox": + - arguments: "-conf \\\"config/dosboxBC4K.conf\\\" -conf \\\"config/dosboxBC4K_single.conf\\\"" when: - os: mac store: steam - /PlayGame.bat: + "/PlayGame.bat": - when: - os: windows store: steam - /dosbox/dosbox: - - arguments: \"-conf\" \"./config/dosboxBC4K.conf\" \"-conf\" \"./config/dosboxBC4K_single.conf\" \"-noconsole\" + "/dosbox/dosbox": + - arguments: "\\\"-conf\\\" \\\"./config/dosboxBC4K.conf\\\" \\\"-conf\\\" \\\"./config/dosboxBC4K_single.conf\\\" \\\"-noconsole\\\"" when: - os: linux store: steam steam: id: 1769220 -'Battle Chess II: Chinese Chess': +"Battle Chess II: Chinese Chess": gog: id: 1207663043 installDir: Battle Chess II Chinese Chess: {} launch: - /DOSBox/dosbox.app/Contents/MacOS/DOSBox: - - arguments: '-conf \"./config/dosboxCH.conf\" -conf \"./config/dosboxCH_single.conf\" -noconsole' + "/DOSBox/dosbox.app/Contents/MacOS/DOSBox": + - arguments: "-conf \\\"./config/dosboxCH.conf\\\" -conf \\\"./config/dosboxCH_single.conf\\\" -noconsole" when: - os: mac store: steam - /DOSBox/dosbox.exe: - - arguments: '-conf \"./config/dosboxCH.conf\" -conf \"./config/dosboxCH_single.conf\" -noconsole' + "/DOSBox/dosbox.exe": + - arguments: "-conf \\\"./config/dosboxCH.conf\\\" -conf \\\"./config/dosboxCH_single.conf\\\" -noconsole" when: - os: windows store: steam - /dosbox/dosbox: - - arguments: '-conf \"./config/dosboxCH.conf\" -conf \"./config/dosboxCH_single.conf\" -noconsole' + "/dosbox/dosbox": + - arguments: "-conf \\\"./config/dosboxCH.conf\\\" -conf \\\"./config/dosboxCH_single.conf\\\" -noconsole" when: - os: linux store: steam steam: id: 678620 -'Battle Chess: Game of Kings': +"Battle Chess: Game of Kings": files: - /userdata//200150/remote: + "/userdata//200150/remote": tags: - save when: - store: steam - /Olde Sküül/Battlechess Game of Kings/LocalConfig.ini: + "/Olde Sküül/Battlechess Game of Kings/LocalConfig.ini": tags: - config when: - - store: steam + - os: windows + store: steam installDir: Battlechess Game of Kings: {} launch: - /battlechessgok.exe: + "/battlechessgok.exe": - when: - os: windows store: steam @@ -53096,7 +53252,7 @@ Battle Crust: installDir: Battle Crust: {} launch: - /battle_crust.exe: + "/battle_crust.exe": - when: - os: windows store: steam @@ -53111,7 +53267,7 @@ Battle Droid T1: installDir: Battle Droid T1: {} launch: - /BattleDroidT1.exe: + "/BattleDroidT1.exe": - when: - os: windows store: steam @@ -53119,12 +53275,12 @@ Battle Droid T1: id: 1100340 Battle Engine Aquila: files: - /defaultoptions.bea: + "/defaultoptions.bea": tags: - config when: - os: windows - /savegames: + "/savegames": tags: - save when: @@ -53134,19 +53290,19 @@ Battle Engine Aquila: installDir: Battle Engine Aquila: {} launch: - /BEA.exe: + "/BEA.exe": - when: - store: steam steam: id: 1346400 Battle Fantasia -Revised Edition-: files: - /save: + "/save": tags: - save when: - os: windows - /setting.cfg: + "/setting.cfg": tags: - config when: @@ -53154,7 +53310,7 @@ Battle Fantasia -Revised Edition-: installDir: Battle Fantasia Revised Edition: {} launch: - /QtLauncher.exe: + "/QtLauncher.exe": - when: - os: windows store: steam @@ -53164,35 +53320,35 @@ Battle Fleet 2: installDir: Battle Fleet 2: {} launch: - /Battle Fleet 2.app: + "/Battle Fleet 2.app": - when: - os: mac store: steam - /Battle Fleet 2.exe: - - arguments: \"-vrmode none\" + "/Battle Fleet 2.exe": + - arguments: "\\\"-vrmode none\\\"" when: - os: windows store: steam steam: id: 332490 -'Battle Fleet: Ground Assault': +"Battle Fleet: Ground Assault": installDir: Battle Fleet Ground Assault: {} launch: - /BattleFleetGroundAssault.app: + "/BattleFleetGroundAssault.app": - when: - os: mac store: steam - /BattleFleetGroundAssault.exe: - - arguments: \"-vrmode none\" + "/BattleFleetGroundAssault.exe": + - arguments: "\\\"-vrmode none\\\"" when: - os: windows store: steam steam: id: 400350 -'Battle For Crown: Multiplayer': +"Battle For Crown: Multiplayer": files: - /etc/mono/config.cfg: + "/etc/mono/config.cfg": tags: - config when: @@ -53209,7 +53365,7 @@ Battle Forever: installDir: Battle Forever: {} launch: - /Battle Forever.exe: + "/Battle Forever.exe": - when: - os: windows store: steam @@ -53222,15 +53378,15 @@ Battle Girls: installDir: BattleGirls: {} launch: - /BattleGirls.app: + "/BattleGirls.app": - when: - os: mac store: steam - /BattleGirls.exe: + "/BattleGirls.exe": - when: - os: windows store: steam - /BattleGirls.sh: + "/BattleGirls.sh": - when: - os: linux store: steam @@ -53240,7 +53396,7 @@ Battle Ground Training: installDir: Battleground Shooting Training: {} launch: - /Battleground Shooting Training.exe: + "/Battleground Shooting Training.exe": - when: - bit: 64 os: windows @@ -53251,8 +53407,8 @@ Battle Grounds III: installDir: Battle Grounds III: {} launch: - /bg3.exe: - - arguments: '-steam -novid -game bg3' + "/bg3.exe": + - arguments: "-steam -novid -game bg3" when: - os: windows store: steam @@ -53262,20 +53418,20 @@ Battle Group 2: installDir: Battlegroup2: {} launch: - /BattleGroup2.app: + "/BattleGroup2.app": - when: - os: mac store: steam - /BattleGroup2.exe: + "/BattleGroup2.exe": - when: - os: windows store: steam - /BattleGroup2.x86_64.x86: + "/BattleGroup2.x86_64.x86": - when: - bit: 32 os: linux store: steam - /BattleGroup2.x86_64.x86_64: + "/BattleGroup2.x86_64.x86_64": - when: - bit: 64 os: linux @@ -53290,7 +53446,7 @@ Battle High 2 A+: installDir: Battle High 2 A+: {} launch: - /BattleHigh2A.exe: + "/BattleHigh2A.exe": - when: - store: steam steam: @@ -53304,17 +53460,17 @@ Battle Islands: installDir: Battle Islands: {} launch: - /BattleIslands.exe: + "/BattleIslands.exe": - when: - os: windows store: steam steam: id: 305260 -'Battle Islands: Commanders': +"Battle Islands: Commanders": installDir: Commanders: {} launch: - /Commanders.exe: + "/Commanders.exe": - when: - os: windows store: steam @@ -53325,7 +53481,7 @@ Battle Isle: id: 1207660993 Battle Isle 2: files: - /SAV: + "/SAV": tags: - save when: @@ -53334,21 +53490,21 @@ Battle Isle 2: id: 1207661073 Battle Isle 3: files: - /SDI/SAV: + "/SDI/SAV": tags: - save when: - os: windows gog: id: 1207661103 -'Battle Isle: The Andosia War': +"Battle Isle: The Andosia War": files: - /save: + "/save": tags: - save when: - os: windows - /save/config: + "/save/config": tags: - config when: @@ -53362,35 +53518,35 @@ Battle Knights: installDir: Battle Knights: {} launch: - /battleknightsgame.exe: + "/battleknightsgame.exe": - when: - os: windows store: steam - /battleknightsgame.x86: + "/battleknightsgame.x86": - when: - bit: 32 os: linux store: steam - /battleknightsgame.x86_64: + "/battleknightsgame.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 493000 -'Battle Mage : Card Caster': +"Battle Mage : Card Caster": installDir: Battle Mage Card Caster: {} launch: - /Battle Mage - Card Caster: + "/Battle Mage - Card Caster": - when: - os: linux store: steam - /Battle Mage - Card Caster.app: + "/Battle Mage - Card Caster.app": - when: - os: mac store: steam - /Battle Mage - Card Caster.exe: + "/Battle Mage - Card Caster.exe": - when: - os: windows store: steam @@ -53400,17 +53556,17 @@ Battle Mages: installDir: Battle Mages: {} launch: - /mages.exe: + "/mages.exe": - when: - os: windows store: steam steam: id: 302470 -'Battle Mages: Sign of Darkness': +"Battle Mages: Sign of Darkness": installDir: Battle Mages Sign of Darkness: {} launch: - /bmages_sod.exe: + "/bmages_sod.exe": - when: - os: windows store: steam @@ -53422,14 +53578,12 @@ Battle Master: installDir: BattleMaster: {} launch: - /dosbox_windows/dosbox.exe: - - arguments: >- - .\\dosbox_windows\\dosbox -exit -conf \"dosbox_battlemaster.conf\"^ -c \"mount C ..\\battlemaster\"^ -c - \"C:\"^ -c \"cd BM\"^ -c \"BM.exe\" -noconsole^ -exit + "/dosbox_windows/dosbox.exe": + - arguments: ".\\\\dosbox_windows\\\\dosbox -exit -conf \\\"dosbox_battlemaster.conf\\\"^ -c \\\"mount C ..\\\\battlemaster\\\"^ -c \\\"C:\\\"^ -c \\\"cd BM\\\"^ -c \\\"BM.exe\\\" -noconsole^ -exit" when: - os: windows store: steam - /runBattlemaster.sh: + "/runBattlemaster.sh": - when: - os: linux store: steam @@ -53439,15 +53593,15 @@ Battle Motion: installDir: Battle Motion: {} launch: - /Battle Motion.app/Contents/MacOS/Battle Motion: + "/Battle Motion.app/Contents/MacOS/Battle Motion": - when: - os: mac store: steam - /Battle Motion.exe: + "/Battle Motion.exe": - when: - os: windows store: steam - /Battle Motion.x86_64: + "/Battle Motion.x86_64": - when: - bit: 64 os: linux @@ -53458,7 +53612,7 @@ Battle Nations: installDir: BattleNations: {} launch: - /bin/battlenations.exe: + "/bin/battlenations.exe": - when: - os: windows store: steam @@ -53471,7 +53625,7 @@ Battle Of Britain: installDir: Battle Of Britain: {} launch: - /bob.exe: + "/bob.exe": - when: - os: windows store: steam @@ -53481,7 +53635,7 @@ Battle Pixels: installDir: BATTLE PIXELS: {} launch: - /win32/Battle Pixels.exe: + "/win32/Battle Pixels.exe": - when: - os: windows store: steam @@ -53489,7 +53643,7 @@ Battle Pixels: id: 434500 Battle Planet - Judgement Day: files: - /AppData/LocalLow/EuroVideo Medien GmbH/Battle Planet - Judgement Day: + "/AppData/LocalLow/EuroVideo Medien GmbH/Battle Planet - Judgement Day": tags: - save when: @@ -53499,7 +53653,7 @@ Battle Planet - Judgement Day: installDir: Battle Planet - Judgement Day: {} launch: - /Battle Planet - Judgement Day.exe: + "/Battle Planet - Judgement Day.exe": - when: - os: windows store: steam @@ -53507,7 +53661,7 @@ Battle Planet - Judgement Day: id: 1099170 Battle Princess Madelyn: files: - /AppData/LocalLow/Causal Bit Games Inc_/Battle Princess Madelyn/BattlePrincessMadelyn/savegame.bpm: + "/AppData/LocalLow/Causal Bit Games Inc_/Battle Princess Madelyn/BattlePrincessMadelyn/savegame.bpm": tags: - save when: @@ -53517,7 +53671,7 @@ Battle Princess Madelyn: installDir: Battle Princess Madelyn: {} launch: - /bpm.exe: + "/bpm.exe": - when: - os: windows store: steam @@ -53527,14 +53681,14 @@ Battle Princess Madelyn: - config steam: id: 603930 -'Battle Ranch: Pigs vs Plants': +"Battle Ranch: Pigs vs Plants": files: - /option.inf: + "/option.inf": tags: - config when: - os: windows - /Playboom Entertainment/Battle Ranch/: + "/Playboom Entertainment/Battle Ranch/": tags: - save when: @@ -53542,15 +53696,15 @@ Battle Princess Madelyn: installDir: Battle Ranch: {} launch: - /Battle Ranch: + "/Battle Ranch": - when: - os: linux store: steam - /Battle Ranch.app: + "/Battle Ranch.app": - when: - os: mac store: steam - /Battle Ranch.exe: + "/Battle Ranch.exe": - when: - os: windows store: steam @@ -53561,12 +53715,12 @@ Battle Rap Simulator: id: 740120 Battle Realms: files: - /Battle_Realms.ini: + "/Battle_Realms.ini": tags: - config when: - os: windows - /Saved Games: + "/Saved Games": tags: - save when: @@ -53576,7 +53730,7 @@ Battle Realms: installDir: Battle Realms: {} launch: - /Battle_Realms_F.exe: + "/Battle_Realms_F.exe": - when: - os: windows store: steam @@ -53586,7 +53740,7 @@ Battle Riders: installDir: Battle Riders: {} launch: - /BattleRiders.exe: + "/BattleRiders.exe": - when: - os: windows store: steam @@ -53599,7 +53753,7 @@ Battle Royale Bootcamp: installDir: Battle Royale Bootcamp: {} launch: - /Bootcamp.exe: + "/Bootcamp.exe": - when: - os: windows store: steam @@ -53609,7 +53763,7 @@ Battle Royale Builder: installDir: Battle Royale Builder: {} launch: - /BattleRoyaleBuilder.exe: + "/BattleRoyaleBuilder.exe": - when: - bit: 64 os: windows @@ -53620,7 +53774,7 @@ Battle Royale Survival: installDir: Battle Royale Survival: {} launch: - /Battle Royale Survival.exe: + "/Battle Royale Survival.exe": - when: - store: steam steam: @@ -53629,7 +53783,7 @@ Battle Royale Trainer: installDir: Battle Royale Trainer: {} launch: - /BattleRoyaleTrainer.exe: + "/BattleRoyaleTrainer.exe": - when: - os: windows store: steam @@ -53637,17 +53791,17 @@ Battle Royale Trainer: id: 772540 Battle Royale Tycoon: files: - /BattleRoyaleTycoon_Data/Saves: + "/BattleRoyaleTycoon_Data/Saves": tags: - save when: - os: windows - /userdata//851930/remote: + "/userdata//851930/remote": tags: - save when: - store: steam - /userdata//851930/remote/options: + "/userdata//851930/remote/options": tags: - config when: @@ -53655,15 +53809,15 @@ Battle Royale Tycoon: installDir: Battle Royale Tycoon: {} launch: - /BattleRoyaleTycoon.app: + "/BattleRoyaleTycoon.app": - when: - os: mac store: steam - /BattleRoyaleTycoon.exe: + "/BattleRoyaleTycoon.exe": - when: - os: windows store: steam - /BattleRoyaleTycoon.x86: + "/BattleRoyaleTycoon.x86": - when: - os: linux store: steam @@ -53673,11 +53827,11 @@ Battle Royale Tycoon: - config steam: id: 851930 -'Battle Royale: Survivors': +"Battle Royale: Survivors": installDir: Survivals Battle Royale: {} launch: - /Client.exe: + "/Client.exe": - when: - os: windows store: steam @@ -53687,7 +53841,7 @@ Battle Runner: installDir: Battle Runner: {} launch: - /BattleRunner.exe: + "/BattleRunner.exe": - when: - os: windows store: steam @@ -53697,7 +53851,7 @@ Battle Shapers: installDir: BattleShapers: {} launch: - /BattleShapers.exe: + "/BattleShapers.exe": - when: - os: windows store: steam @@ -53707,7 +53861,7 @@ Battle Shapes: installDir: Battle Shapes: {} launch: - /Battle Shapes.exe: + "/Battle Shapes.exe": - when: - os: windows store: steam @@ -53717,7 +53871,7 @@ Battle Siege Royale: installDir: Battle Siege Royale: {} launch: - /BattleSiegeRoyale.exe: + "/BattleSiegeRoyale.exe": - when: - bit: 64 os: windows @@ -53728,7 +53882,7 @@ Battle Simulator: installDir: Battle Simulator: {} launch: - /Battle Simulator.exe: + "/Battle Simulator.exe": - when: - store: steam steam: @@ -53742,11 +53896,11 @@ Battle Species: installDir: Battle Species: {} launch: - /BattleSpecies.app: + "/BattleSpecies.app": - when: - os: mac store: steam - /BattleSpecies.exe: + "/BattleSpecies.exe": - when: - os: windows store: steam @@ -53756,11 +53910,11 @@ Battle Squares: installDir: BattleSquares: {} launch: - /BattleSquares.exe: + "/BattleSquares.exe": - when: - os: windows store: steam - /contentMac.app: + "/contentMac.app": - when: - os: mac store: steam @@ -53780,7 +53934,7 @@ Battle Survive Hentai: installDir: Battle Survive Hentai: {} launch: - /Battle Survive Hentai.exe: + "/Battle Survive Hentai.exe": - when: - store: steam steam: @@ -53789,25 +53943,25 @@ Battle Tank Armada: installDir: Battle Tank Armada: {} launch: - /Battle Tank Armada.exe: + "/Battle Tank Armada.exe": - when: - os: windows store: steam steam: id: 533920 -'Battle Tanks: Legends of World War II': +"Battle Tanks: Legends of World War II": installDir: Battle Tanks: {} launch: - /BattleTanks.app: + "/BattleTanks.app": - when: - os: mac store: steam - /BattleTanks.exe: + "/BattleTanks.exe": - when: - os: windows store: steam - /BattleTanks.x86_64: + "/BattleTanks.x86_64": - when: - os: linux store: steam @@ -53817,17 +53971,15 @@ Battle Teams 2: installDir: 生死狙击2: {} launch: - /client/ACE-Launcher64.exe: - - arguments: >- - --ChannelId 11 --SubChannelId 45056 --DisableGc -force-d3d11-no-singlethreaded -affinity --updateurl - https%3A%2F%2Fmicro.ssjj2.com%2FSSJJ2%2Fboot_config%2Fsteam + "/client/ACE-Launcher64.exe": + - arguments: "--ChannelId 11 --SubChannelId 45056 --DisableGc -force-d3d11-no-singlethreaded -affinity --updateurl https%3A%2F%2Fmicro.ssjj2.com%2FSSJJ2%2Fboot_config%2Fsteam" when: - bit: 64 os: windows store: steam steam: id: 1969870 -'Battle Test: A Nissan Rogue 360° VR Experience': +"Battle Test: A Nissan Rogue 360° VR Experience": installDir: BattleTest: {} steam: @@ -53836,25 +53988,25 @@ Battle Trendaria: installDir: Battle Trendaria: {} launch: - /BattleTrendaria.exe: + "/BattleTrendaria.exe": - when: - store: steam steam: id: 739660 -'Battle Worlds: Kronos': +"Battle Worlds: Kronos": files: - /.config/unity3d/KING Art/BattleWorldsKronos: + "/.config/unity3d/KING Art/BattleWorldsKronos": tags: - config when: - os: linux - /Documents/BattleWorldsKronos: + "/Documents/BattleWorldsKronos": tags: - save when: - os: mac - os: linux - /BattleWorldsKronos: + "/BattleWorldsKronos": tags: - save when: @@ -53864,33 +54016,33 @@ Battle Trendaria: installDir: BattleWorldsKronos: {} launch: - /BattleWorldsKronos.app: - - arguments: '-launched' + "/BattleWorldsKronos.app": + - arguments: "-launched" when: - os: mac store: steam - /BattleWorldsKronos.exe: - - arguments: '-launched' + "/BattleWorldsKronos.exe": + - arguments: "-launched" when: - os: windows store: steam - /BattleWorldsKronos.x86.sh: - - arguments: '-launched' + "/BattleWorldsKronos.x86.sh": + - arguments: "-launched" when: - bit: 32 os: linux store: steam - /BattleWorldsKronos.x86_64: - - arguments: '-launched' + "/BattleWorldsKronos.x86_64": + - arguments: "-launched" when: - bit: 64 os: linux store: steam - /Battleworlds Builder/BattleworldsBuilder.exe: + "/Battleworlds Builder/BattleworldsBuilder.exe": - when: - os: windows store: steam - workingDir: /Battleworlds Builder + workingDir: "/Battleworlds Builder" registry: HKEY_CURRENT_USER/Software/KING Art/BattleWorldsKronos: tags: @@ -53907,23 +54059,26 @@ Battle X Arcade: BattleX-1.0.1-Arcade: {} steam: id: 958900 -'Battle Zombie Shooter: Survival of the Dead': +"Battle Zombie Shooter: Survival of the Dead": steam: id: 846430 Battle for Blood - Epic battles within 30 seconds!: installDir: BattleforBlood: {} launch: - /Battle for Blood.app: + "/Battle for Blood.app": - when: - os: mac store: steam - /bfb.exe: + "/bfb.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam - /bfb.x86: + "/bfb.x86": - when: - os: linux store: steam @@ -53933,11 +54088,11 @@ Battle for Enlor: installDir: Battle for Enlor: {} launch: - /Battle for Enlor.exe: + "/Battle for Enlor.exe": - when: - os: windows store: steam - /Battle_for_Enlor/runner: + "/Battle_for_Enlor/runner": - when: - os: linux store: steam @@ -53947,20 +54102,20 @@ Battle for Gaming: installDir: battle_for_gaming: {} launch: - /bfg.app: + "/bfg.app": - when: - os: mac store: steam - /bfg.exe: + "/bfg.exe": - when: - os: windows store: steam - /bfg.x86: + "/bfg.x86": - when: - bit: 32 os: linux store: steam - /bfg.x86_64: + "/bfg.x86_64": - when: - bit: 64 os: linux @@ -53971,16 +54126,16 @@ Battle for Korsun: installDir: Battle For Korsun: {} launch: - /Contents/MacOS/Korsun.app: + "/Contents/MacOS/Korsun.app": - when: - os: mac store: steam - /Korsun: + "/Korsun": - when: - bit: 64 os: linux store: steam - /autorun.exe: + "/autorun.exe": - when: - os: windows store: steam @@ -53995,15 +54150,15 @@ Battle for Orion 2: installDir: BFO2: {} launch: - /Battle for Orion 2.app/Contents/MacOS/Battle for Orion 2: + "/Battle for Orion 2.app/Contents/MacOS/Battle for Orion 2": - when: - os: mac store: steam - /Battle for Orion 2.exe: + "/Battle for Orion 2.exe": - when: - os: windows store: steam - /Battle for Orion 2.x86: + "/Battle for Orion 2.x86": - when: - os: linux store: steam @@ -54013,11 +54168,11 @@ Battle for the Galaxy: installDir: Battle for the Galaxy: {} launch: - /bin/BFG.exe: + "/bin/BFG.exe": - when: - os: windows store: steam - workingDir: /bin + workingDir: "/bin" steam: id: 716610 Battle for the Last Chicken: @@ -54029,20 +54184,20 @@ Battle for the Sun: installDir: Battle For The Sun: {} launch: - /Battle for the Sun.app: + "/Battle for the Sun.app": - when: - os: mac store: steam - /Battle for the Sun.exe: + "/Battle for the Sun.exe": - when: - os: windows store: steam - /Battle for the Sun.x86: + "/Battle for the Sun.x86": - when: - bit: 32 os: linux store: steam - /Battle for the Sun.x86_64: + "/Battle for the Sun.x86_64": - when: - bit: 64 os: linux @@ -54053,25 +54208,25 @@ Battle of Cubes: installDir: Battle of cubes: {} launch: - /Battle of cubes.exe: + "/Battle of cubes.exe": - when: - os: windows store: steam steam: id: 819370 -'Battle of Empires: 1914-1918': +"Battle of Empires: 1914-1918": installDir: Battle of Empires 1914-1918: {} launch: - /BoE-1914: + "/BoE-1914": - when: - os: linux store: steam - /BoE-1914.app: + "/BoE-1914.app": - when: - os: mac store: steam - /BoE-1914.exe: + "/BoE-1914.exe": - when: - os: windows store: steam @@ -54079,7 +54234,7 @@ Battle of Cubes: id: 316430 Battle of Europe: files: - /Storage: + "/Storage": tags: - config - save @@ -54088,7 +54243,7 @@ Battle of Europe: installDir: Battle Of Europe: {} launch: - /boe.exe: + "/boe.exe": - when: - store: steam steam: @@ -54097,7 +54252,7 @@ Battle of Frigates: installDir: Battle of Frigates: {} launch: - /Battle of Frigates.exe: + "/Battle of Frigates.exe": - when: - os: windows store: steam @@ -54107,7 +54262,7 @@ Battle of Hearth: installDir: Death Runner: {} launch: - /Death Runner.exe: + "/Death Runner.exe": - arguments: UnityPlayer.dll when: - os: windows @@ -54118,7 +54273,7 @@ Battle of Keys: installDir: Battle Of Keys: {} launch: - /BOK.exe: + "/BOK.exe": - when: - bit: 64 os: windows @@ -54129,7 +54284,7 @@ Battle of Kings: installDir: Battle of Kings: {} launch: - /Battle Of Kings.exe: + "/Battle Of Kings.exe": - when: - store: steam steam: @@ -54144,11 +54299,11 @@ Battle of Red Cliffs VR: RedCliffsVR: {} steam: id: 716400 -'Battle of Vukovar: Rain of Steel': +"Battle of Vukovar: Rain of Steel": installDir: Battle of Vukovar Rain of Steel: {} launch: - /WindowsNoEditor/BattleOfVukovar.exe: + "/WindowsNoEditor/BattleOfVukovar.exe": - when: - bit: 64 os: windows @@ -54159,7 +54314,7 @@ Battle of Worldviews: installDir: Battle Of Worldviews: {} launch: - /Battle Of Worldviews.exe: + "/Battle Of Worldviews.exe": - when: - os: windows store: steam @@ -54172,7 +54327,7 @@ Battle of the Boros: installDir: Battle of the Boros: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -54182,11 +54337,11 @@ Battle of the Bulge: installDir: Battle of the Bulge: {} launch: - /BattleOfTheBulge.app: + "/BattleOfTheBulge.app": - when: - os: mac store: steam - /autorun.exe: + "/autorun.exe": - when: - os: windows store: steam @@ -54196,7 +54351,7 @@ Battle royale simulator: installDir: Battle royale simulator: {} launch: - /Battle Royale simulator.exe: + "/Battle Royale simulator.exe": - when: - os: windows store: steam @@ -54204,7 +54359,7 @@ Battle royale simulator: id: 913180 Battle vs. Chess: files: - /My Games/battle vs chess/user_config.cfg: + "/My Games/battle vs chess/user_config.cfg": tags: - config when: @@ -54213,42 +54368,44 @@ Battle vs. Chess: steamExtra: - 211070 - 338920 - - 339760 - 339620 - 339630 - - 510150 + - 339760 - 510140 + - 510150 installDir: Battle vs Chess: {} launch: - /BattleVsChess.app: + "/BattleVsChess.app": - when: - os: mac store: steam - /RunGame: + "/RunGame": - when: + - os: mac + store: steam - os: linux store: steam - /battlevschess.exe: - - arguments: '-dlc00 data\\dlc\\dark_desert\\ -dlc01 data\\dlc\\floating_island\\ %1 %2 %3 %4 %5 %6 %7 %8 %9' + "/battlevschess.exe": + - arguments: "-dlc00 data\\\\dlc\\\\dark_desert\\\\ -dlc01 data\\\\dlc\\\\floating_island\\\\ %1 %2 %3 %4 %5 %6 %7 %8 %9" when: - os: windows store: steam steam: id: 211050 -'Battle: Los Angeles': +"Battle: Los Angeles": files: - /BattleLA Saves/UserConfigs/saves.ps: + "/BattleLA Saves/UserConfigs/saves.ps": tags: - save when: - os: windows - /BattleLA Saves/UserConfigs/user.cfg: + "/BattleLA Saves/UserConfigs/user.cfg": tags: - config when: - os: windows - /BattleLA Saves/game_local.cfg: + "/BattleLA Saves/game_local.cfg": tags: - config when: @@ -54256,17 +54413,17 @@ Battle vs. Chess: installDir: Battle Los Angeles: {} launch: - /bin/BattleLA.exe: + "/bin/BattleLA.exe": - when: - store: steam - workingDir: /bin + workingDir: "/bin" steam: id: 61220 BattleBeasts: installDir: BattleBeasts: {} launch: - /BB.exe: + "/BB.exe": - when: - bit: 64 os: windows @@ -54275,7 +54432,7 @@ BattleBeasts: id: 830580 BattleBit Remastered: files: - /BattleBitConfig.ini: + "/BattleBitConfig.ini": tags: - config when: @@ -54283,11 +54440,11 @@ BattleBit Remastered: installDir: BattleBit Remastered: {} launch: - /BattleBitEAC.exe: + "/BattleBitEAC.exe": - when: - store: steam - /EasyAntiCheat/EasyAntiCheat_EOS_Setup.exe: - - arguments: ' install 43ed9a4620fa486994c0b368cce73b5d' + "/EasyAntiCheat/EasyAntiCheat_EOS_Setup.exe": + - arguments: " install 43ed9a4620fa486994c0b368cce73b5d" when: - store: steam registry: @@ -54300,7 +54457,7 @@ BattleBlade: installDir: BattleBlade: {} launch: - /BattleBlade.exe: + "/BattleBlade.exe": - when: - os: windows store: steam @@ -54308,7 +54465,7 @@ BattleBlade: id: 914190 BattleBlock Theater: files: - /userdata//238460: + "/userdata//238460": tags: - config - save @@ -54317,33 +54474,33 @@ BattleBlock Theater: installDir: BattleBlock Theater: {} launch: - /BattleBlockTheater.app/Contents/MacOS/BattleBlockTheater: + "/BattleBlockTheater.app/Contents/MacOS/BattleBlockTheater": - when: - os: mac store: steam - /BattleBlockTheater.exe: + "/BattleBlockTheater.exe": - when: - os: windows store: steam - /BattleBlockTheater.sh: + "/BattleBlockTheater.sh": - when: - os: linux store: steam steam: id: 238460 -'BattleCON: Online': +"BattleCON: Online": installDir: BattleCON Online: {} launch: - /Products/Applications/bco_c.app: + "/Products/Applications/bco_c.app": - when: - os: mac store: steam - /bco-c.exe: + "/bco-c.exe": - when: - os: windows store: steam - /bco_c: + "/bco_c": - when: - os: linux store: steam @@ -54353,38 +54510,38 @@ BattleCore Arena: installDir: BattleCore Arena: {} launch: - /BattleCoreArena.exe: - - arguments: ' MainMenu_Lvl' + "/BattleCoreArena.exe": + - arguments: " MainMenu_Lvl" when: - bit: 64 os: windows store: steam steam: id: 689570 -'BattleCry: World At War': +"BattleCry: World At War": installDir: BattleCry: {} launch: - /battlecry: + "/battlecry": - when: - bit: 64 os: linux store: steam - /battlecry.app: + "/battlecry.app": - when: - os: mac store: steam - /battlecry.exe: + "/battlecry.exe": - when: - os: windows store: steam steam: id: 932810 -'BattleCubes: Arena': +"BattleCubes: Arena": installDir: BattleCubes Arena: {} launch: - /TotalRampage.exe: + "/TotalRampage.exe": - when: - os: windows store: steam @@ -54395,15 +54552,15 @@ BattleGroupVR: BattleGroupVR: {} steam: id: 1178780 -'BattleLore: Command': +"BattleLore: Command": installDir: BattleLore Command: {} launch: - /BattleLore.App: + "/BattleLore.App": - when: - os: mac store: steam - /battlelore.exe: + "/battlelore.exe": - when: - os: windows store: steam @@ -54411,12 +54568,12 @@ BattleGroupVR: id: 348400 BattleMoonWars Shirogane: files: - /savedata/*.*: + "/savedata/*.*": tags: - save when: - os: windows - /savedata/config.ini: + "/savedata/config.ini": tags: - config when: @@ -54425,7 +54582,7 @@ BattleMore: installDir: BattleMore: {} launch: - /BattleMore.exe: + "/BattleMore.exe": - when: - os: windows store: steam @@ -54435,7 +54592,7 @@ BattleQuiz: installDir: BattleQuiz: {} launch: - /Battle Quiz.exe: + "/Battle Quiz.exe": - when: - store: steam steam: @@ -54444,12 +54601,12 @@ BattleRush: installDir: BattleRush: {} launch: - /Cv2_Base/Binaries/Win32/Cv2_BaseClient_Shipping.exe: + "/Cv2_Base/Binaries/Win32/Cv2_BaseClient_Shipping.exe": - when: - bit: 32 os: windows store: steam - /Cv2_Base/Binaries/Win64/Cv2_BaseClient_Shipping.exe: + "/Cv2_Base/Binaries/Win64/Cv2_BaseClient_Shipping.exe": - when: - bit: 64 os: windows @@ -54460,28 +54617,28 @@ BattleRush 2: installDir: BattleRush 2: {} launch: - /Cv2_Base/Binaries/Win32/Cv2_BaseClient_Shipping.exe: + "/Cv2_Base/Binaries/Win32/Cv2_BaseClient_Shipping.exe": - when: - bit: 32 os: windows store: steam - /Cv2_Base/Binaries/Win64/Cv2_BaseClient_Shipping.exe: + "/Cv2_Base/Binaries/Win64/Cv2_BaseClient_Shipping.exe": - when: - bit: 64 os: windows store: steam steam: id: 871990 -'BattleRush: Ardennes Assault': +"BattleRush: Ardennes Assault": installDir: BattleRush Ardennes Assault: {} launch: - /Cv2_Base/Binaries/Win32/Cv2_BaseClient_Shipping.exe: + "/Cv2_Base/Binaries/Win32/Cv2_BaseClient_Shipping.exe": - when: - bit: 32 os: windows store: steam - /Cv2_Base/Binaries/Win64/Cv2_BaseClient_Shipping.exe: + "/Cv2_Base/Binaries/Win64/Cv2_BaseClient_Shipping.exe": - when: - bit: 64 os: windows @@ -54497,11 +54654,11 @@ BattleSouls: installDir: BattleSouls: {} launch: - /BattleSouls.app: + "/BattleSouls.app": - when: - os: mac store: steam - /BattleSouls.exe: + "/BattleSouls.exe": - when: - os: windows store: steam @@ -54511,7 +54668,7 @@ BattleSpace: installDir: Battlespace: {} launch: - /BattleSpace.exe: + "/BattleSpace.exe": - when: - os: windows store: steam @@ -54524,15 +54681,15 @@ BattleSteam: installDir: Battlesteam: {} launch: - /Battlesteam.exe: + "/Battlesteam.exe": - when: - os: windows store: steam - /Battlesteam.x86_64: + "/Battlesteam.x86_64": - when: - os: linux store: steam - /Game.app: + "/Game.app": - when: - os: mac store: steam @@ -54542,17 +54699,17 @@ BattleStick: installDir: BattleStick: {} launch: - /BattleStick: + "/BattleStick": - when: - bit: 64 os: linux store: steam - /BattleStick.app: + "/BattleStick.app": - when: - bit: 64 os: mac store: steam - /BattleStick.exe: + "/BattleStick.exe": - when: - os: windows store: steam @@ -54563,37 +54720,38 @@ BattleStorm: id: 432280 BattleTech: files: - /.config/unity3d/Harebrained Schemes/BATTLETECH: + "/.config/unity3d/Harebrained Schemes/BATTLETECH": tags: - config when: - os: linux - /.config/unity3d/Harebrained Schemes/BATTLETECH/C#/SGS#: + "/.config/unity3d/Harebrained Schemes/BATTLETECH/C#/SGS#": tags: - save when: - os: linux - /AppData/LocalLow/Harebrained Schemes/BattleTech/C#/SGS#: + "/AppData/LocalLow/Harebrained Schemes/BattleTech/C#/SGS#": tags: - save when: - os: windows - /Library/Application Support/Harebrained Schemes/BattleTech/C#/SGS#: + "/Library/Application Support/Harebrained Schemes/BattleTech/C#/SGS#": tags: - save when: - os: mac - /userdata//637090/remote/C#/SGS#: + "/userdata//637090/remote/C#/SGS#": tags: - save when: - store: steam - /GOG.com/Galaxy/Applications/50593543263669699/Storage/Shared/Files/C#/SGS#: + "/GOG.com/Galaxy/Applications/50593543263669699/Storage/Shared/Files/C#/SGS#": tags: - save when: - - store: gog - /Packages/ParadoxInteractive.Battletech-MainGame_zfnrdv2de78ny/SystemAppData/wgs: + - os: windows + store: gog + "/Packages/ParadoxInteractive.Battletech-MainGame_zfnrdv2de78ny/SystemAppData/wgs": tags: - save when: @@ -54605,25 +54763,25 @@ BattleTech: gogExtra: - 1386090191 steamExtra: - - 1047180 - - 911930 - - 799790 - - 799751 - 799750 + - 799751 + - 799790 + - 911930 + - 1047180 installDir: BATTLETECH: {} launch: - /BattleTech: + "/BattleTech": - when: - bit: 64 os: linux store: steam - /BattleTech.app/Contents/MacOS/BattleTech: + "/BattleTech.app/Contents/MacOS/BattleTech": - when: - os: mac store: steam - /BattleTechLauncher.exe: - - arguments: '-useCurrentSettings' + "/BattleTechLauncher.exe": + - arguments: "-useCurrentSettings" when: - bit: 64 os: windows @@ -54638,20 +54796,20 @@ BattleTime: installDir: BattleTime: {} launch: - /BattleTime.app: + "/BattleTime.app": - when: - os: mac store: steam - /BattleTime.exe: + "/BattleTime.exe": - when: - os: windows store: steam - /BattleTime.x86: + "/BattleTime.x86": - when: - bit: 32 os: linux store: steam - /BattleTime.x86_64: + "/BattleTime.x86_64": - when: - bit: 64 os: linux @@ -54662,7 +54820,7 @@ BattleTrucks: installDir: BattleTrucks: {} launch: - /BattleTrucks.exe: + "/BattleTrucks.exe": - when: - os: windows store: steam @@ -54670,12 +54828,12 @@ BattleTrucks: id: 601590 Battleborn: files: - /My Games/Battleborn/PoplarGame/Config: + "/My Games/Battleborn/PoplarGame/Config": tags: - config when: - os: windows - /My Games/Battleborn/PoplarGame/SaveData/: + "/My Games/Battleborn/PoplarGame/SaveData/": tags: - save when: @@ -54683,7 +54841,7 @@ Battleborn: installDir: Battleborn: {} launch: - /Binaries/Win64/Battleborn.exe: + "/Binaries/Win64/Battleborn.exe": - when: - bit: 64 os: windows @@ -54694,7 +54852,7 @@ Battlecursed: installDir: Battlecursed: {} launch: - /BattleCursed.exe: + "/BattleCursed.exe": - when: - os: windows store: steam @@ -54702,7 +54860,7 @@ Battlecursed: id: 454370 Battlefield 1: files: - /Battlefield 1/settings: + "/Battlefield 1/settings": tags: - config - save @@ -54714,19 +54872,19 @@ Battlefield 1: id: 1238840 Battlefield 1942: files: - /Mods/bf1942/Settings: + "/Mods/bf1942/Settings": tags: - config when: - os: windows - /Mods/bf1942/save/: + "/Mods/bf1942/save/": tags: - save when: - os: windows Battlefield 2: files: - /Battlefield 2/Profiles/: + "/Battlefield 2/Profiles/": tags: - config when: @@ -54734,17 +54892,17 @@ Battlefield 2: installDir: Battlefield 2: {} launch: - /BF2.exe: + "/BF2.exe": - when: - store: steam - /Support/EA Help/Electronic_Arts_Technical_Support.htm: + "/Support/EA Help/Electronic_Arts_Technical_Support.htm": - when: - store: steam steam: id: 24860 Battlefield 2042: files: - /Battlefield 2042/settings: + "/Battlefield 2042/settings": tags: - config when: @@ -54755,14 +54913,14 @@ Battlefield 2042: id: 1517290 Battlefield 2142: files: - /Battlefield 2142/Profiles: + "/Battlefield 2142/Profiles": tags: - config when: - os: windows Battlefield 3: files: - /Battlefield 3/settings: + "/Battlefield 3/settings": tags: - config - save @@ -54774,12 +54932,12 @@ Battlefield 3: id: 1238820 Battlefield 4: files: - /Battlefield 4/settings: + "/Battlefield 4/settings": tags: - save when: - os: windows - /Battlefield 4/settings/PROFSAVE_profile: + "/Battlefield 4/settings/PROFSAVE_profile": tags: - config when: @@ -54792,11 +54950,11 @@ Battlefield Alliance: installDir: Battlefield Alliance: {} launch: - /Battlefield Alliance.app/Contents/MacOS/Battlefield Alliance: + "/Battlefield Alliance.app/Contents/MacOS/Battlefield Alliance": - when: - os: mac store: steam - /Battlefield Alliance.exe: + "/Battlefield Alliance.exe": - when: - os: windows store: steam @@ -54807,7 +54965,7 @@ Battlefield Armor: id: 890730 Battlefield Hardline: files: - /BFH/settings: + "/BFH/settings": tags: - config - save @@ -54819,14 +54977,14 @@ Battlefield Hardline: id: 1238880 Battlefield Heroes: files: - /Battlefield Heroes: + "/Battlefield Heroes": tags: - config when: - os: windows Battlefield Play4Free: files: - /Battlefield Play4Free: + "/Battlefield Play4Free": tags: - config when: @@ -54836,7 +54994,7 @@ Battlefield Supremacy: id: 916560 Battlefield V: files: - /Battlefield V/settings: + "/Battlefield V/settings": tags: - config - save @@ -54848,34 +55006,34 @@ Battlefield V: id: 1238810 Battlefield Vietnam: files: - /Mods/BfVietnam/settings/Profiles/: + "/Mods/BfVietnam/settings/Profiles/": tags: - config when: - os: windows -'Battlefield: Bad Company 2': +"Battlefield: Bad Company 2": files: - /BFBC2/GameSettings.bin: + "/BFBC2/GameSettings.bin": tags: - save when: - os: windows - /BFBC2/settings.ini: + "/BFBC2/settings.ini": tags: - config when: - os: windows id: steamExtra: - - 47880 - 24963 + - 47880 installDir: Battlefield Bad Company 2: {} launch: - /BFBC2Game.exe: + "/BFBC2Game.exe": - when: - store: steam - /Support/EA Help/Electronic_Arts_Technical_Support.htm: + "/Support/EA Help/Electronic_Arts_Technical_Support.htm": - when: - store: steam steam: @@ -54884,31 +55042,31 @@ Battlefleet Engineer: installDir: Battlefleet Engineer: {} launch: - /Battlefleet Engineer.exe: + "/Battlefleet Engineer.exe": - when: - os: windows store: steam steam: id: 685910 -'Battlefleet Gothic: Armada': +"Battlefleet Gothic: Armada": files: - /BattleFleetGothic/Saved/Config: + "/BattleFleetGothic/Saved/Config": tags: - config when: - os: windows - /BattleFleetGothic/Saved/SaveGames: + "/BattleFleetGothic/Saved/SaveGames": tags: - save when: - os: windows - /Packages/FocusHomeInteractiveSA.841C19581B1_4hny5m903y3g0/LocalCache/Local/BattleFleetGothic/Saved/Config/WindowsNoEditor: + "/Packages/FocusHomeInteractiveSA.841C19581B1_4hny5m903y3g0/LocalCache/Local/BattleFleetGothic/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows store: microsoft - /Packages/FocusHomeInteractiveSA.841C19581B1_4hny5m903y3g0/LocalCache/Local/BattleFleetGothic/Saved/SaveGames: + "/Packages/FocusHomeInteractiveSA.841C19581B1_4hny5m903y3g0/LocalCache/Local/BattleFleetGothic/Saved/SaveGames": tags: - save when: @@ -54919,26 +55077,26 @@ Battlefleet Engineer: installDir: Battlefleet Gothic Armada: {} launch: - /BattleFleetGothic.exe: + "/BattleFleetGothic.exe": - when: - bit: 64 os: windows store: steam - /BattleFleetGothic_32.exe: + "/BattleFleetGothic_32.exe": - when: - bit: 32 os: windows store: steam steam: id: 363680 -'Battlefleet Gothic: Armada 2': +"Battlefleet Gothic: Armada 2": files: - /BattlefleetGothic2/Saved/Config/WindowsNoEditor: + "/BattlefleetGothic2/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /BattlefleetGothic2/Saved/SaveGames: + "/BattlefleetGothic2/Saved/SaveGames": tags: - save when: @@ -54948,7 +55106,7 @@ Battlefleet Engineer: installDir: Battlefleet Gothic Armada II: {} launch: - /BattlefleetGothic2.exe: + "/BattlefleetGothic2.exe": - when: - bit: 64 os: windows @@ -54959,11 +55117,11 @@ Battlegrounds of Eldhelm: installDir: Battlegrounds of Eldhelm: {} launch: - /Eldhelm.app: + "/Eldhelm.app": - when: - os: mac store: steam - /Eldhelm.exe: + "/Eldhelm.exe": - when: - os: windows store: steam @@ -54973,11 +55131,11 @@ Battlegrounds2D.IO: installDir: Battlegrounds2D.io: {} launch: - /battlegrounds2d-steam.app/Contents/MacOS/battlegrounds2d-steam: + "/battlegrounds2d-steam.app/Contents/MacOS/battlegrounds2d-steam": - when: - os: mac store: steam - /battlegrounds2d-steam.exe: + "/battlegrounds2d-steam.exe": - when: - os: windows store: steam @@ -54987,7 +55145,7 @@ Battlegun: installDir: Battlegun: {} launch: - /Battlegun.exe: + "/Battlegun.exe": - when: - os: windows store: steam @@ -54997,22 +55155,22 @@ Battleheart Legacy: installDir: Battleheart Legacy: {} launch: - /BHLegacy.app/Contents/MacOS/BHLegacy: + "/BHLegacy.app/Contents/MacOS/BHLegacy": - when: - os: mac store: steam - /BHLegacy.exe: + "/BHLegacy.exe": - when: - os: windows store: steam steam: id: 1122490 -'Battleline: Steel Warfare': +"Battleline: Steel Warfare": installDir: Battleline Steel Warfare: {} launch: - /BattleLine.exe: - - arguments: '-standalone' + "/BattleLine.exe": + - arguments: "-standalone" when: - os: windows store: steam @@ -55030,17 +55188,17 @@ Battlemage VR: id: 768470 Battlepaths: files: - /keymapping.cfg: + "/keymapping.cfg": tags: - config when: - os: windows - /SavedGames/Battlepaths: + "/SavedGames/Battlepaths": tags: - save when: - os: windows - /SavedGames/Battlepaths/BPSaves/Player1/settings.xml: + "/SavedGames/Battlepaths/BPSaves/Player1/settings.xml": tags: - config when: @@ -55048,11 +55206,11 @@ Battlepaths: installDir: Battlepaths: {} launch: - /Battlepaths.exe: + "/Battlepaths.exe": - when: - os: windows store: steam - /run.sh: + "/run.sh": - when: - os: linux store: steam @@ -55060,32 +55218,33 @@ Battlepaths: id: 296050 Battlepillars Gold Edition: files: - /Battlepillars/SavedGames: + "/Battlepillars/SavedGames": tags: - save when: - - store: steam + - os: windows + store: steam installDir: Battlepillars: {} launch: - /Battlepillars.Steam.exe: + "/Battlepillars.Steam.exe": - when: - os: windows store: steam steam: id: 280930 -'Battleplan: American Civil War': +"Battleplan: American Civil War": installDir: BattlePlan American Civil War: {} launch: - /BPACW.exe: + "/BPACW.exe": - when: - store: steam steam: id: 285130 Battlerite: files: - /Battlerite/*.json: + "/Battlerite/*.json": tags: - config when: @@ -55100,7 +55259,7 @@ Battlerite: id: 504370 Battlerite Royale: files: - /BattleriteRoyale/*.json: + "/BattleriteRoyale/*.json": tags: - config when: @@ -55117,19 +55276,19 @@ Battles For Spain: installDir: Battles For Spain: {} launch: - /32Bits/Bfs.exe: + "/32Bits/Bfs.exe": - when: - bit: 32 os: windows store: steam - workingDir: /32Bits - /64Bits/Bfs.exe: + workingDir: "/32Bits" + "/64Bits/Bfs.exe": - when: - bit: 64 os: windows store: steam - workingDir: /64Bits - /Bfs.app: + workingDir: "/64Bits" + "/Bfs.app": - when: - os: mac store: steam @@ -55142,7 +55301,7 @@ Battles of Norghan: installDir: BattlesofNorghan: {} launch: - /BattlesofNorghan.exe: + "/BattlesofNorghan.exe": - when: - os: windows store: steam @@ -55152,11 +55311,11 @@ Battles of the Ancient World: installDir: Battles of the Ancient World: {} launch: - /BattlesOfTheAncientWorld.app: + "/BattlesOfTheAncientWorld.app": - when: - os: mac store: steam - /BattlesOfTheAncientWorld.exe: + "/BattlesOfTheAncientWorld.exe": - when: - os: windows store: steam @@ -55166,11 +55325,11 @@ Battles of the Valiant Universe CCG: installDir: Battles of the Valiant Universe CCG: {} launch: - /BotVU.app: + "/BotVU.app": - when: - os: mac store: steam - /BotVU.exe: + "/BotVU.exe": - when: - bit: 64 os: windows @@ -55181,7 +55340,7 @@ Battleship (2012): installDir: Battleship: {} launch: - /Battleship.exe: + "/Battleship.exe": - when: - store: steam steam: @@ -55190,15 +55349,15 @@ Battleship Bishojo: installDir: Battleship Bishojo: {} launch: - /Battleship_Bishojo-1.0.app/Contents/MacOS/Battleship_Bishojo-1.0: + "/Battleship_Bishojo-1.0.app/Contents/MacOS/Battleship_Bishojo-1.0": - when: - os: mac store: steam - /Battleship_Bishojo-1.0.exe: + "/Battleship_Bishojo-1.0.exe": - when: - os: windows store: steam - /Battleship_Bishojo-1.0.sh: + "/Battleship_Bishojo-1.0.sh": - when: - os: linux store: steam @@ -55208,7 +55367,7 @@ Battleship Lonewolf: installDir: Battleship Lonewolf: {} launch: - /LoneWolf.exe: + "/LoneWolf.exe": - when: - os: windows store: steam @@ -55218,25 +55377,25 @@ Battleship Lonewolf 2: installDir: Battleship Lonewolf 2: {} launch: - /BattleshipLonewolf2.exe: + "/BattleshipLonewolf2.exe": - when: - os: windows store: steam steam: id: 792400 -'Battleship: Official Edition': +"Battleship: Official Edition": installDir: - Hasbro's BATTLESHIP: {} + "Hasbro's BATTLESHIP": {} launch: - /Battleship.exe: + "/Battleship.exe": - when: - os: windows store: steam steam: id: 893050 -'Battleship: Surface Thunder': +"Battleship: Surface Thunder": files: - /DisplaySettings.ini: + "/DisplaySettings.ini": tags: - config when: @@ -55245,7 +55404,7 @@ Battleships and Carriers - Pacific War: installDir: Battleships and Carriers - Pacific War: {} launch: - /battleshipPW.exe: + "/battleshipPW.exe": - when: - os: windows store: steam @@ -55255,7 +55414,7 @@ Battleships and Carriers - WW2 Battleship Game: installDir: Battleships and Carriers: {} launch: - /battleship.exe: + "/battleship.exe": - when: - os: windows store: steam @@ -55265,35 +55424,35 @@ Battleships at Dawn!: installDir: BattleshipsAtDawn: {} launch: - /bin/Launcher.exe: + "/bin/Launcher.exe": - when: - os: windows store: steam - workingDir: /bin + workingDir: "/bin" steam: id: 444330 Battlesloths: installDir: BATTLESLOTHS2025: {} launch: - /battlesloths2025.app: - - arguments: '-AuthenticateSteam' + "/battlesloths2025.app": + - arguments: "-AuthenticateSteam" when: - os: mac store: steam - /battlesloths2025.exe: - - arguments: '-AuthenticateSteam' + "/battlesloths2025.exe": + - arguments: "-AuthenticateSteam" when: - os: windows store: steam - /battlesloths2025.x86: - - arguments: '-AuthenticateSteam' + "/battlesloths2025.x86": + - arguments: "-AuthenticateSteam" when: - bit: 32 os: linux store: steam - /battlesloths2025.x86_64: - - arguments: '-AuthenticateSteam' + "/battlesloths2025.x86_64": + - arguments: "-AuthenticateSteam" when: - bit: 64 os: linux @@ -55302,27 +55461,28 @@ Battlesloths: id: 459350 Battlestar Galactica Deadlock: files: - /userdata//544610/remote: + "/userdata//544610/remote": tags: - save when: - store: steam - /Black Lab Games/BSG: + "/Black Lab Games/BSG": tags: - save when: - - store: gog - /Black Lab Games/BSG/config.txt: + - os: windows + store: gog + "/Black Lab Games/BSG/config.txt": tags: - config when: - os: windows - /Black Lab Games/BSG/graphics.txt: + "/Black Lab Games/BSG/graphics.txt": tags: - config when: - os: windows - /Black Lab Games/BSG/keymapping.txt: + "/Black Lab Games/BSG/keymapping.txt": tags: - config when: @@ -55331,14 +55491,14 @@ Battlestar Galactica Deadlock: id: 1797575342 id: gogExtra: - - 1507290543 - - 2014814913 - - 1411605677 - - 1893554753 - - 2058516012 - - 1733288799 - 1158112885 + - 1411605677 + - 1507290543 + - 1733288799 - 1864020232 + - 1893554753 + - 2014814913 + - 2058516012 steamExtra: - 692080 - 726560 @@ -55351,7 +55511,7 @@ Battlestar Galactica Deadlock: installDir: Battlestar Galactica Deadlock: {} launch: - /autorun.exe: + "/autorun.exe": - when: - os: windows store: steam @@ -55361,9 +55521,9 @@ Battlestar Galactica Deadlock: - config steam: id: 544610 -'Battlestations: Midway': +"Battlestations: Midway": files: - /Battlestations-Midway/save: + "/Battlestations-Midway/save": tags: - save when: @@ -55371,22 +55531,22 @@ Battlestar Galactica Deadlock: installDir: Battlestations Midway: {} launch: - /Battlestationsmidway.exe: + "/Battlestationsmidway.exe": - when: - store: steam - /Options.exe: + "/Options.exe": - when: - store: steam steam: id: 6870 -'Battlestations: Pacific': +"Battlestations: Pacific": files: - /Documents/Battlestations-Pacific/options.txt: + "/Documents/Battlestations-Pacific/options.txt": tags: - config when: - os: windows - /Documents/Battlestations-Pacific/save: + "/Documents/Battlestations-Pacific/save": tags: - save when: @@ -55394,34 +55554,34 @@ Battlestar Galactica Deadlock: installDir: Battlestations Pacific: {} launch: - /battlestationspacific.exe: + "/battlestationspacific.exe": - when: - store: steam steam: id: 8170 -'Battlestrike: Force of Resistance': +"Battlestrike: Force of Resistance": files: - /Data/AdditionalOptions.scr: + "/Data/AdditionalOptions.scr": tags: - config when: - os: windows - /Data/AudioSettings.scr: + "/Data/AudioSettings.scr": tags: - config when: - os: windows - /Data/UserControls.scr: + "/Data/UserControls.scr": tags: - config when: - os: windows - /Data/VideoSettings.scr: + "/Data/VideoSettings.scr": tags: - config when: - os: windows - /Save: + "/Save": tags: - save when: @@ -55430,19 +55590,19 @@ Battletank LOBA: installDir: Battletank LOBA: {} launch: - /battletank.exe: + "/battletank.exe": - when: - store: steam steam: id: 337730 Battletoads: files: - /userdata//1244950/remote: + "/userdata//1244950/remote": tags: - save when: - store: steam - /Packages/Microsoft.Frogspawn_8wekyb3d8bbwe/SystemAppData/wgs: + "/Packages/Microsoft.Frogspawn_8wekyb3d8bbwe/SystemAppData/wgs": tags: - save when: @@ -55451,14 +55611,14 @@ Battletoads: installDir: Battletoads: {} launch: - /Battletoads.exe: + "/Battletoads.exe": - when: - store: steam steam: id: 1244950 -'Battlevoid: Harbinger': +"Battlevoid: Harbinger": files: - /.local/share/Steam/steamapps/common/Battlestation Harbinger: + "/.local/share/Steam/steamapps/common/Battlestation Harbinger": tags: - config - save @@ -55470,9 +55630,9 @@ Battletoads: Battlevoid Harbinger: {} steam: id: 396480 -'Battlevoid: Sector Siege': +"Battlevoid: Sector Siege": files: - /AppData/LocalLow/Bugbyte/Battlevoid_ Sector Siege: + "/AppData/LocalLow/Bugbyte/Battlevoid_ Sector Siege": tags: - save when: @@ -55480,15 +55640,15 @@ Battletoads: installDir: Battlevoid Sector Siege: {} launch: - /sectorsiege.app: + "/sectorsiege.app": - when: - os: mac store: steam - /sectorsiege.exe: + "/sectorsiege.exe": - when: - os: windows store: steam - /sectorsiege.x86: + "/sectorsiege.x86": - when: - os: linux store: steam @@ -55501,7 +55661,7 @@ Battlewake: id: 814400 Battlezone (2017): files: - /Battlezone: + "/Battlezone": tags: - config when: @@ -55509,7 +55669,7 @@ Battlezone (2017): installDir: Battlezone: {} launch: - /Launcher/battlezone.exe: + "/Launcher/battlezone.exe": - when: - bit: 64 os: windows @@ -55518,12 +55678,12 @@ Battlezone (2017): id: 312650 Battlezone 98 Redux: files: - /Ogre.cfg: + "/Ogre.cfg": tags: - config when: - os: windows - /save/cpProgress.def: + "/save/cpProgress.def": tags: - save when: @@ -55533,41 +55693,41 @@ Battlezone 98 Redux: installDir: Battlezone 98 Redux: {} launch: - /Battlezone 98 Redux (Steam).app/Contents/MacOS/Battlezone 98 Redux (Steam): + "/Battlezone 98 Redux (Steam).app/Contents/MacOS/Battlezone 98 Redux (Steam)": - when: - os: mac store: steam - /launcher/BZLauncher.exe: + "/launcher/BZLauncher.exe": - when: - os: windows store: steam steam: id: 301650 -'Battlezone II: Combat Commander': +"Battlezone II: Combat Commander": files: - /My Games/Battlezone II: + "/My Games/Battlezone II": tags: - save when: - os: windows -'Battlezone: Combat Commander': +"Battlezone: Combat Commander": files: - /My Games/Battlezone Combat Commander/UserPrefs: + "/My Games/Battlezone Combat Commander/UserPrefs": tags: - config when: - os: windows - /My Games/Battlezone Combat Commander/launch.ini: + "/My Games/Battlezone Combat Commander/launch.ini": tags: - config when: - os: windows - /My Games/Battlezone Combat Commander/pilots: + "/My Games/Battlezone Combat Commander/pilots": tags: - save when: - os: windows - /My Games/Battlezone Combat Commander/saved: + "/My Games/Battlezone Combat Commander/saved": tags: - save when: @@ -55577,16 +55737,16 @@ Battlezone 98 Redux: installDir: BZ2R: {} launch: - /battlezone2.exe: + "/battlezone2.exe": - when: - store: steam steam: id: 624970 -'Baxter''s Venture: Director''s Cut': +"Baxter's Venture: Director's Cut": installDir: - Baxter's Venture Director's Cut: {} + "Baxter's Venture Director's Cut": {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -55596,7 +55756,7 @@ Bayala - the game: installDir: Bayala: {} launch: - /Bayala.exe: + "/Bayala.exe": - when: - os: windows store: steam @@ -55606,7 +55766,7 @@ Bayla Bunny: installDir: Bayla Bunny: {} launch: - /BaylaBunny.exe: + "/BaylaBunny.exe": - when: - os: windows store: steam @@ -55614,13 +55774,13 @@ Bayla Bunny: id: 489900 Bayonetta: files: - /userdata//460790: + "/userdata//460790": tags: - save when: - os: windows store: steam - /Bayonetta: + "/Bayonetta": tags: - config when: @@ -55628,7 +55788,7 @@ Bayonetta: installDir: Bayonetta: {} launch: - /Bayonetta.exe: + "/Bayonetta.exe": - when: - os: windows store: steam @@ -55636,7 +55796,7 @@ Bayonetta: id: 460790 Bayou Island: files: - /Bayou Island/User Data/Default/Local Storage: + "/Bayou Island/User Data/Default/Local Storage": tags: - config - save @@ -55645,7 +55805,7 @@ Bayou Island: installDir: Bayou Island - Point and Click Adventure: {} launch: - /bayou-island.exe: + "/bayou-island.exe": - when: - os: windows store: steam @@ -55665,24 +55825,24 @@ Be Funny Now!: installDir: BeFunnyNow: {} launch: - /BeFunnyNow.exe: + "/BeFunnyNow.exe": - when: - os: windows store: steam steam: id: 1644990 -'Be My Mom - maternity simulator, take care of your child': +"Be My Mom - maternity simulator, take care of your child": steam: id: 1312660 Be Quiet!: installDir: Be Quiet!: {} launch: - /bequiet.exe: + "/bequiet.exe": - when: - os: windows store: steam - /bequiet.x86: + "/bequiet.x86": - when: - os: linux store: steam @@ -55692,7 +55852,7 @@ Be Vigilant!: installDir: Be Vigilant!: {} launch: - /BeVigilant.exe: + "/BeVigilant.exe": - when: - os: windows store: steam @@ -55701,11 +55861,11 @@ Be Vigilant!: Be an Archer: steam: id: 1026230 -'Be hate Free: Interactive': +"Be hate Free: Interactive": installDir: Be hate Free Interactive: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -55723,7 +55883,7 @@ Be you: installDir: be you: {} launch: - /BeYou.exe: + "/BeYou.exe": - when: - os: windows store: steam @@ -55741,12 +55901,12 @@ Beach Body Bros: id: 1157920 Beach Bounce: files: - /renpy/config.py: + "/renpy/config.py": tags: - config when: - os: windows - /RenPy/beachbounce-140820150356/*.save: + "/RenPy/beachbounce-140820150356/*.save": tags: - save when: @@ -55754,15 +55914,15 @@ Beach Bounce: installDir: Beach Bounce: {} launch: - /BeachBounce.app: + "/BeachBounce.app": - when: - os: mac store: steam - /BeachBounce.exe: + "/BeachBounce.exe": - when: - os: windows store: steam - /BeachBounce.sh: + "/BeachBounce.sh": - when: - os: linux store: steam @@ -55775,7 +55935,7 @@ Beach Bowling Dream VR: id: 557960 Beach Buggy Racing 2: files: - /userdata//1230800: + "/userdata//1230800": tags: - config - save @@ -55785,7 +55945,7 @@ Beach Buggy Racing 2: installDir: Beach Buggy Racing 2: {} launch: - /Game_x64.exe: + "/Game_x64.exe": - when: - bit: 64 os: windows @@ -55796,12 +55956,12 @@ Beach Girls: installDir: Negligee Spring Clean: {} launch: - /Negligee_Spring_Clean-32.exe: + "/Negligee_Spring_Clean-32.exe": - when: - bit: 32 os: windows store: steam - /Negligee_Spring_Clean.exe: + "/Negligee_Spring_Clean.exe": - when: - bit: 64 os: windows @@ -55810,7 +55970,7 @@ Beach Girls: id: 511280 Beach Head 2000: files: - /SAVE: + "/SAVE": tags: - save when: @@ -55818,7 +55978,7 @@ Beach Head 2000: installDir: Beachhead 2000: {} launch: - /BH2000.exe: + "/BH2000.exe": - when: - os: windows store: steam @@ -55826,12 +55986,12 @@ Beach Head 2000: id: 509610 Beach Head 2002: files: - /BH2002.ini: + "/BH2002.ini": tags: - config when: - os: windows - /Save/000000*.sav: + "/Save/000000*.sav": tags: - save when: @@ -55839,17 +55999,17 @@ Beach Head 2002: installDir: Beachhead 2002: {} launch: - /BH2002.exe: + "/BH2002.exe": - when: - os: windows store: steam steam: id: 511660 -'Beach Head: Desert War': +"Beach Head: Desert War": installDir: Beachhead Desert War: {} launch: - /BH Desert War.exe: + "/BH Desert War.exe": - when: - os: windows store: steam @@ -55857,7 +56017,7 @@ Beach Head 2002: id: 614770 Beach Life: files: - /SaveGames: + "/SaveGames": tags: - save when: @@ -55866,15 +56026,15 @@ Beach Pong: installDir: Beach Pong: {} launch: - /Beach Pong.app/Contents/MacOS/Beach Pong: + "/Beach Pong.app/Contents/MacOS/Beach Pong": - when: - os: mac store: steam - /Beach Pong.exe: + "/Beach Pong.exe": - when: - os: windows store: steam - /Beach Pong.x86: + "/Beach Pong.x86": - when: - os: linux store: steam @@ -55884,7 +56044,7 @@ Beach Resort Simulator: installDir: Beach Resort Simulator: {} launch: - /BeachResort.exe: + "/BeachResort.exe": - when: - store: steam steam: @@ -55893,21 +56053,21 @@ Beach Restaurant: installDir: Beach Restaurant: {} launch: - /Beach Restaurant.exe: + "/Beach Restaurant.exe": - when: - os: windows store: steam - /Beach Restaurant.x86: + "/Beach Restaurant.x86": - when: - bit: 32 os: linux store: steam - /Beach Restaurant.x86_64: + "/Beach Restaurant.x86_64": - when: - bit: 64 os: linux store: steam - /MacOs/MacOs.app/Contents/MacOS: + "/MacOs/MacOs.app/Contents/MacOS": - when: - os: mac store: steam @@ -55917,7 +56077,7 @@ Beach Rules: installDir: Beach Rules: {} launch: - /Beach Rules.exe: + "/Beach Rules.exe": - when: - os: windows store: steam @@ -55927,7 +56087,7 @@ Beached: installDir: Beached: {} launch: - /Beached.exe: + "/Beached.exe": - when: - os: windows store: steam @@ -55935,22 +56095,22 @@ Beached: id: 652560 Beacon: files: - /AppData/LocalLow/Monothetic/Beacon/savedata.json: + "/AppData/LocalLow/Monothetic/Beacon/savedata.json": tags: - save when: - os: windows - /AppData/LocalLow/Monothetic/Beacon/settings_audio.xml: + "/AppData/LocalLow/Monothetic/Beacon/settings_audio.xml": tags: - config when: - os: windows - /AppData/LocalLow/Monothetic/Beacon/settings_input.xml: + "/AppData/LocalLow/Monothetic/Beacon/settings_input.xml": tags: - config when: - os: windows - /AppData/LocalLow/Monothetic/Beacon/settings_input_mouse.xml: + "/AppData/LocalLow/Monothetic/Beacon/settings_input_mouse.xml": tags: - config when: @@ -55958,7 +56118,7 @@ Beacon: installDir: Beacon: {} launch: - /Beacon.exe: + "/Beacon.exe": - when: - bit: 64 os: windows @@ -55975,7 +56135,7 @@ Beacon Pines: installDir: Beacon Pines: {} launch: - /Beacon Pines/Beacon Pines.exe: + "/Beacon Pines/Beacon Pines.exe": - when: - os: windows store: steam @@ -55985,7 +56145,7 @@ Bead: installDir: bead: {} launch: - /bead.exe: + "/bead.exe": - when: - os: windows store: steam @@ -55995,7 +56155,7 @@ Beak Squadron: installDir: BEAK_SQUADRON: {} launch: - /BeakSquadron.exe: + "/BeakSquadron.exe": - when: - os: windows store: steam @@ -56005,22 +56165,16 @@ Beam: installDir: Beam: {} launch: - /Beam.exe: + "/Beam.exe": - when: - store: steam steam: id: 1067430 BeamNG.drive: - files: - /BeamNG.drive/*/settings: - tags: - - config - when: - - os: windows installDir: BeamNG.drive: {} launch: - /BeamNG.drive.exe: + "/BeamNG.drive.exe": - when: - os: windows store: steam @@ -56030,7 +56184,7 @@ Bean Battles: installDir: Bean Battles: {} launch: - /BeanBattles.exe: + "/BeanBattles.exe": - when: - os: windows store: steam @@ -56041,29 +56195,29 @@ BeanVR: BeanVR: {} steam: id: 638920 -'Beans: The Coffee Shop Simulator': +"Beans: The Coffee Shop Simulator": installDir: BeansTheCoffeeShopSimulator: {} launch: - /linux32/nw: + "/linux32/nw": - when: - os: linux store: steam - /linux64/nw: + "/linux64/nw": - when: - bit: 64 os: linux store: steam - /osx64/beansthecoffeeshopsimulator.app: + "/osx64/beansthecoffeeshopsimulator.app": - when: - os: mac store: steam - /win32/nw.exe: + "/win32/nw.exe": - when: - bit: 32 os: windows store: steam - /win64/nw.exe: + "/win64/nw.exe": - when: - bit: 64 os: windows @@ -56074,7 +56228,7 @@ Bear Football: installDir: Bear Football: {} launch: - /Bear Football.exe: + "/Bear Football.exe": - when: - os: windows store: steam @@ -56084,26 +56238,28 @@ Bear Haven Nights: installDir: Bear Haven Nights: {} launch: - /jre/bin/java: - - arguments: '-jar desktop.jar' + "/jre/bin/java": + - arguments: "-jar desktop.jar" when: - os: mac store: steam - /jre/bin/javaw.exe: - - arguments: '-jar desktop.jar' + - os: linux + store: steam + "/jre/bin/javaw.exe": + - arguments: "-jar desktop.jar" when: - os: windows store: steam steam: id: 434220 -'Bear Party: Adventure': +"Bear Party: Adventure": files: - /bisounew/cfg: + "/bisounew/cfg": tags: - config when: - os: windows - /bisounew/save: + "/bisounew/save": tags: - save when: @@ -56111,13 +56267,13 @@ Bear Haven Nights: installDir: Bear Party Adventure: {} launch: - /hl2.exe: - - arguments: '-game bisounew' + "/hl2.exe": + - arguments: "-game bisounew" when: - os: windows store: steam - /hl2.sh: - - arguments: '-game bisounew' + "/hl2.sh": + - arguments: "-game bisounew" when: - os: linux store: steam @@ -56127,20 +56283,20 @@ Bear Simulator: installDir: Bear Simulator: {} launch: - /Bear Simulator (Linux).x86_64: + "/Bear Simulator (Linux).x86_64": - when: - os: linux store: steam - /Bear Simulator (OSX).app/Contents/MacOS/Bear Simulator (OSX): + "/Bear Simulator (OSX).app/Contents/MacOS/Bear Simulator (OSX)": - when: - os: mac store: steam - /Bear Simulator (Windows 32 bit).exe: + "/Bear Simulator (Windows 32 bit).exe": - when: - bit: 32 os: windows store: steam - /Bear Simulator (Windows 64 bit).exe: + "/Bear Simulator (Windows 64 bit).exe": - when: - bit: 64 os: windows @@ -56152,22 +56308,22 @@ Bear Vs Hunter: id: 963320 Bear With Me: files: - /AppData/LocalLow/ExordiumGames/Bear With Me/*.save: + "/AppData/LocalLow/ExordiumGames/Bear With Me/*.save": tags: - save when: - os: windows - /userdata//492630/remote/*.save: + "/userdata//492630/remote/*.save": tags: - save when: - store: steam - /unity3d/ExordiumGames/Bear With Me/*.save: + "/unity3d/ExordiumGames/Bear With Me/*.save": tags: - save when: - os: linux - /unity3d/ExordiumGames/Bear With Me/prefs: + "/unity3d/ExordiumGames/Bear With Me/prefs": tags: - config when: @@ -56180,26 +56336,29 @@ Bear With Me: - config steam: id: 492630 -Bear With Me - Collector's Edition: +"Bear With Me - Collector's Edition": files: - /AppData/LocalLow/ExordiumGames/BearWithMe: + "/AppData/LocalLow/ExordiumGames/BearWithMe": tags: - save when: - os: windows installDir: - Bear With Me - Collector's Edition: {} + "Bear With Me - Collector's Edition": {} launch: - /Bear With Me.app/Contents/MacOS/Bear With Me: + "/Bear With Me.app/Contents/MacOS/Bear With Me": - when: - os: mac store: steam - /Bear With Me.exe: + "/Bear With Me.exe": - when: - bit: 32 os: windows store: steam - /Bear With Me.x86_64: + - bit: 64 + os: windows + store: steam + "/Bear With Me.x86_64": - when: - os: linux store: steam @@ -56209,9 +56368,9 @@ Bear With Me - Collector's Edition: - config steam: id: 783050 -'Bear With Me: The Lost Robots': +"Bear With Me: The Lost Robots": files: - /AppData/LocalLow/Exordium Games/Bear With Me - The Lost Robots/*.save: + "/AppData/LocalLow/Exordium Games/Bear With Me - The Lost Robots/*.save": tags: - save when: @@ -56221,7 +56380,7 @@ Bear With Me - Collector's Edition: installDir: Bear With Me The Lost Robots: {} launch: - /Bear With Me - The Lost Robots.exe: + "/Bear With Me - The Lost Robots.exe": - when: - os: windows store: steam @@ -56237,7 +56396,7 @@ Bear and Breakfast: installDir: Bear and Breakfast: {} launch: - /BearAndBreakfast.exe: + "/BearAndBreakfast.exe": - when: - bit: 64 os: windows @@ -56253,7 +56412,7 @@ Beard & Axe: installDir: Beard & Axe: {} launch: - /Beard and Axe.exe: + "/Beard and Axe.exe": - when: - os: windows store: steam @@ -56263,23 +56422,23 @@ Beardy the Digger: installDir: Beardy the Digger: {} launch: - /Beardy the Digger.exe: + "/Beardy the Digger.exe": - when: - bit: 64 os: windows store: steam steam: id: 1144630 -Bears Can't Drift!?: +"Bears Can't Drift!?": installDir: BCD: {} launch: - /BCD.exe: + "/BCD.exe": - when: - bit: 64 os: windows store: steam - /HogBall.exe: + "/HogBall.exe": - when: - store: steam steam: @@ -56288,7 +56447,7 @@ Bears in Tanks: installDir: Bears in Tanks: {} launch: - /BearsInTanks.exe: + "/BearsInTanks.exe": - when: - bit: 64 os: windows @@ -56299,17 +56458,17 @@ Bearslayer: installDir: Bearslayer: {} launch: - /Bearslayer Mac.app: + "/Bearslayer Mac.app": - when: - bit: 64 os: mac store: steam - /Bearslayer.exe: + "/Bearslayer.exe": - when: - bit: 64 os: windows store: steam - /run.sh: + "/run.sh": - when: - bit: 64 os: linux @@ -56320,11 +56479,11 @@ Bearzerkers: installDir: BEARZERKERS: {} launch: - /bearzerkers.app: + "/bearzerkers.app": - when: - os: mac store: steam - /bearzerkers.exe: + "/bearzerkers.exe": - when: - os: windows store: steam @@ -56334,7 +56493,7 @@ Beast Agenda 2030: installDir: Beast Agenda 2030: {} launch: - /Beast_Agenda_2030.exe: + "/Beast_Agenda_2030.exe": - when: - os: windows store: steam @@ -56344,7 +56503,7 @@ Beast Battle Simulator: installDir: Beast Battle Simulator: {} launch: - /BeastBattleSimulator.exe: + "/BeastBattleSimulator.exe": - when: - store: steam steam: @@ -56356,12 +56515,12 @@ Beast Boxing Turbo: installDir: BeastBoxingTurbo: {} launch: - /BeastBoxingTurbo.app: + "/BeastBoxingTurbo.app": - when: - os: mac store: steam - /BeastBoxingTurbo.exe: - - arguments: '-nolog' + "/BeastBoxingTurbo.exe": + - arguments: "-nolog" when: - os: windows store: steam @@ -56369,12 +56528,12 @@ Beast Boxing Turbo: id: 259490 Beast Breaker: files: - /AppData/LocalLow/Vodeo Games/Beast Breaker/Saves: + "/AppData/LocalLow/Vodeo Games/Beast Breaker/Saves": tags: - save when: - os: windows - /AppData/LocalLow/Vodeo Games/Beast Breaker/Settings: + "/AppData/LocalLow/Vodeo Games/Beast Breaker/Settings": tags: - config when: @@ -56383,17 +56542,17 @@ Beast King: installDir: BEAST_KING: {} launch: - /BEAST_KING.exe: + "/BEAST_KING.exe": - when: - os: windows store: steam steam: id: 881050 -'Beast Mode: Night of the Werewolf': +"Beast Mode: Night of the Werewolf": installDir: ApeirogonGames: {} launch: - /BeastMode.exe: + "/BeastMode.exe": - when: - os: windows store: steam @@ -56413,7 +56572,7 @@ Beast Quest: installDir: Beast Quest: {} launch: - /Beast Quest.exe: + "/Beast Quest.exe": - when: - os: windows store: steam @@ -56423,7 +56582,7 @@ Beastiarium: installDir: Beastiarium: {} launch: - /Beastiarium.exe: + "/Beastiarium.exe": - when: - os: windows store: steam @@ -56433,19 +56592,19 @@ Beastmancer: installDir: Beastmancer: {} launch: - /Beastmancer.app: + "/Beastmancer.app": - when: - os: mac store: steam - /Beastmancer.exe: + "/Beastmancer.exe": - when: - os: windows store: steam - /Beastmancer.x86: + "/Beastmancer.x86": - when: - os: linux store: steam - /Beastmancer.x86_64: + "/Beastmancer.x86_64": - when: - os: linux store: steam @@ -56455,11 +56614,11 @@ Beasts Battle: installDir: Beasts Battle: {} launch: - /BeastsBattle.app/Contents/MacOS/BeastsBattle: + "/BeastsBattle.app/Contents/MacOS/BeastsBattle": - when: - os: mac store: steam - /BeastsBattle.exe: + "/BeastsBattle.exe": - when: - os: windows store: steam @@ -56469,11 +56628,11 @@ Beasts Battle 2: installDir: Necromancer Returns: {} launch: - /NecromancerReturns.app/Contents/MacOS/NecromancerReturns: + "/NecromancerReturns.app/Contents/MacOS/NecromancerReturns": - when: - os: mac store: steam - /NecromancerReturns.exe: + "/NecromancerReturns.exe": - when: - os: windows store: steam @@ -56488,8 +56647,8 @@ Beasts of Bermuda: installDir: BeastsOfBermuda: {} launch: - /BeastsOfBermuda.exe: - - arguments: '-NoVerifyGC' + "/BeastsOfBermuda.exe": + - arguments: "-NoVerifyGC" when: - bit: 64 os: windows @@ -56498,7 +56657,7 @@ Beasts of Bermuda: id: 719890 Beasts of Maravilla Island: files: - /AppData/LocalLow/Banana Bird Studios/Beasts of Maravilla Island: + "/AppData/LocalLow/Banana Bird Studios/Beasts of Maravilla Island": tags: - save when: @@ -56506,11 +56665,11 @@ Beasts of Maravilla Island: installDir: Beasts of Maravilla Island: {} launch: - /Beasts of Maravilla Island.exe: + "/Beasts of Maravilla Island.exe": - when: - os: windows store: steam - /BeastsOfMaravillaIsland.app: + "/BeastsOfMaravillaIsland.app": - when: - os: mac store: steam @@ -56524,7 +56683,7 @@ Beasts&Chests: installDir: Beasts&Chests: {} launch: - /BeastsNChests.exe: + "/BeastsNChests.exe": - when: - bit: 64 os: windows @@ -56535,7 +56694,7 @@ Beasty Karts: installDir: Beasty Karts: {} launch: - /BeastyKarts.exe: + "/BeastyKarts.exe": - when: - os: windows store: steam @@ -56545,7 +56704,7 @@ Beat: installDir: Beat: {} launch: - /Beat.exe: + "/Beat.exe": - when: - os: windows store: steam @@ -56558,11 +56717,11 @@ Beat Blast: installDir: Beat Blast: {} launch: - /BeatBlast.app: + "/BeatBlast.app": - when: - os: mac store: steam - /BeatBlast.exe: + "/BeatBlast.exe": - when: - bit: 64 os: windows @@ -56588,7 +56747,7 @@ Beat Boxers: installDir: Beat Boxers: {} launch: - /BeatBoxers.exe: + "/BeatBoxers.exe": - when: - bit: 64 os: windows @@ -56607,17 +56766,17 @@ Beat Champion: id: 922190 Beat Cop: files: - /.config/unity3d/Pixel Crow/Beat Cop/BeatCopSaves18: + "/.config/unity3d/Pixel Crow/Beat Cop/BeatCopSaves18": tags: - save when: - os: linux - /AppData/LocalLow/Pixel Crow/Beat Cop/BeatCopSaves18: + "/AppData/LocalLow/Pixel Crow/Beat Cop/BeatCopSaves18": tags: - save when: - os: windows - /Library/Application Support/unity.Pixel Crow.Beat Cop/BeatCopSaves18: + "/Library/Application Support/unity.Pixel Crow.Beat Cop/BeatCopSaves18": tags: - save when: @@ -56627,21 +56786,21 @@ Beat Cop: installDir: Beat Cop: {} launch: - /BeatCop.app: + "/BeatCop.app": - when: - os: mac store: steam - /BeatCop.exe: + "/BeatCop.exe": - when: - bit: 32 os: windows store: steam - /BeatCop.x86: + "/BeatCop.x86": - when: - bit: 32 os: linux store: steam - /BeatCop.x86_64: + "/BeatCop.x86_64": - when: - bit: 64 os: linux @@ -56652,7 +56811,7 @@ Beat Da Beat: installDir: Beat Da Beat: {} launch: - /Beat Da Beat.exe: + "/Beat Da Beat.exe": - when: - os: windows store: steam @@ -56663,19 +56822,19 @@ Beat Guru: id: 1103700 Beat Hazard: files: - /userdata//49600/remote: + "/userdata//49600/remote": tags: - config - save when: - store: steam - /Beat Hazard: + "/Beat Hazard": tags: - config - save when: - os: windows - /BeatHazard_Linux2: + "/BeatHazard_Linux2": tags: - config - save @@ -56686,19 +56845,19 @@ Beat Hazard: installDir: Beat Hazard: {} launch: - /Beat Hazard MAC.app: + "/Beat Hazard MAC.app": - when: - os: mac store: steam - /BeatHazard: + "/BeatHazard": - when: - os: linux store: steam - /BeatHazard.exe: + "/BeatHazard.exe": - when: - os: windows store: steam - /runme.exe: + "/runme.exe": - when: - os: windows store: steam @@ -56706,17 +56865,17 @@ Beat Hazard: id: 49600 Beat Hazard 2: files: - /userdata//618740: + "/userdata//618740": tags: - save when: - store: steam - /ColdBeamGames/BeatHazard2: + "/ColdBeamGames/BeatHazard2": tags: - save when: - os: windows - /ColdBeamGames/BeatHazard2/settings2.dat: + "/ColdBeamGames/BeatHazard2/settings2.dat": tags: - config when: @@ -56726,11 +56885,11 @@ Beat Hazard 2: installDir: Beat Hazard 2: {} launch: - /BeatHazard2.exe: + "/BeatHazard2.exe": - when: - os: windows store: steam - /UnrealVersion/BeatHazard2.exe: + "/UnrealVersion/BeatHazard2.exe": - when: - bit: 64 os: windows @@ -56741,7 +56900,7 @@ Beat Me!: installDir: Beat Me!: {} launch: - /Beat Me.exe: + "/Beat Me.exe": - when: - os: windows store: steam @@ -56764,8 +56923,8 @@ Beat Or Die The MiniGames: installDir: Beat Or Die The MiniGames: {} launch: - /Beat Or Die The MiniGames.exe: - - arguments: '-windowed' + "/Beat Or Die The MiniGames.exe": + - arguments: "-windowed" when: - os: windows store: steam @@ -56777,7 +56936,7 @@ Beat Refle: installDir: beat refle: {} launch: - /beatrefle.exe: + "/beatrefle.exe": - when: - os: windows store: steam @@ -56785,12 +56944,12 @@ Beat Refle: id: 1947940 Beat Saber: files: - /AppData/LocalLow/Hyperbolic Magnetism/Beat Saber/*.dat: + "/AppData/LocalLow/Hyperbolic Magnetism/Beat Saber/*.dat": tags: - save when: - os: windows - /AppData/LocalLow/Hyperbolic Magnetism/Beat Saber/settings.cfg: + "/AppData/LocalLow/Hyperbolic Magnetism/Beat Saber/settings.cfg": tags: - config when: @@ -56799,17 +56958,17 @@ Beat Saber: Beat Saber: {} steam: id: 620980 -'Beat Stickman: Infinity Clones': +"Beat Stickman: Infinity Clones": installDir: Beat Stickman: {} steam: id: 866010 -'Beat Stickman: Infinity Clones - Definitive Edition': +"Beat Stickman: Infinity Clones - Definitive Edition": steam: id: 1105780 Beat The Game: files: - /AppData/LocalLow/Worm Animation LLC/BeatTheGame/Unity/807cdfa4-d8b2-495f-975e-b0952098c488/Analytics: + "/AppData/LocalLow/Worm Animation LLC/BeatTheGame/Unity/807cdfa4-d8b2-495f-975e-b0952098c488/Analytics": tags: - config when: @@ -56817,15 +56976,15 @@ Beat The Game: installDir: Beat The Game: {} launch: - /Beat_The_Game.app: + "/Beat_The_Game.app": - when: - os: mac store: steam - /beat.exe: + "/beat.exe": - when: - os: windows store: steam - /beat.x86_64: + "/beat.x86_64": - when: - os: linux store: steam @@ -56835,7 +56994,7 @@ Beat Your Meat: installDir: Beat Your Meat: {} launch: - /BeatYourMeat.exe: + "/BeatYourMeat.exe": - when: - os: windows store: steam @@ -56850,11 +57009,11 @@ Beat the Dictators: installDir: Beat The Dictators: {} launch: - /Dictator.app/Contents/MacOS/Dictator: + "/Dictator.app/Contents/MacOS/Dictator": - when: - os: mac store: steam - /Dictators.exe: + "/Dictators.exe": - when: - os: windows store: steam @@ -56867,22 +57026,22 @@ Beat the Song: installDir: BeatTheSong: {} launch: - /BeatTheSong.exe: + "/BeatTheSong.exe": - when: - bit: 64 os: windows store: steam steam: id: 894340 -'Beat.School: DJ Simulator': +"Beat.School: DJ Simulator": installDir: Beat.School: {} launch: - /Beat.School.app: + "/Beat.School.app": - when: - os: mac store: steam - /Beat.School.exe: + "/Beat.School.exe": - when: - os: windows store: steam @@ -56892,7 +57051,7 @@ BeatAim - Rhythm Shooter: installDir: BeatAim: {} launch: - /BeatAim.exe: + "/BeatAim.exe": - when: - bit: 64 os: windows @@ -56903,16 +57062,19 @@ BeatBlasters III: installDir: BeatBlastersIII: {} launch: - /BeatBlastersIII: + "/BeatBlastersIII": - when: - bit: 32 os: linux store: steam - /BeatBlastersIII.app: + - bit: 64 + os: linux + store: steam + "/BeatBlastersIII.app": - when: - os: mac store: steam - /BeatBlastersIII.exe: + "/BeatBlastersIII.exe": - when: - os: windows store: steam @@ -56922,14 +57084,14 @@ BeatShips: installDir: BeatShips: {} launch: - /BeatShips.exe: + "/BeatShips.exe": - when: - store: steam steam: id: 1019400 -'Beatbuddy: On Tour': +"Beatbuddy: On Tour": files: - /AppData/LocalLow/Threaks/Beatbuddy Music Mix/PlayerPrefs.txt: + "/AppData/LocalLow/Threaks/Beatbuddy Music Mix/PlayerPrefs.txt": tags: - save when: @@ -56937,7 +57099,7 @@ BeatShips: installDir: Beatbuddy Music Mix: {} launch: - /BBMM.exe: + "/BBMM.exe": - when: - os: windows store: steam @@ -56947,20 +57109,20 @@ BeatShips: - config steam: id: 412970 -'Beatbuddy: Tale of the Guardians': +"Beatbuddy: Tale of the Guardians": files: - /.config/unity3d/Threaks/Beatbuddy: + "/.config/unity3d/Threaks/Beatbuddy": tags: - config - save when: - os: linux - /AppData/LocalLow/Threaks/Beatbuddy: + "/AppData/LocalLow/Threaks/Beatbuddy": tags: - save when: - os: windows - /userdata//231040: + "/userdata//231040": tags: - save when: @@ -56970,15 +57132,15 @@ BeatShips: installDir: Beatbuddy: {} launch: - /Beatbuddy.app: + "/Beatbuddy.app": - when: - os: mac store: steam - /Beatbuddy.exe: + "/Beatbuddy.exe": - when: - os: windows store: steam - /beatbuddy.sh: + "/beatbuddy.sh": - when: - os: linux store: steam @@ -57000,7 +57162,7 @@ Beating A Dead Horse With A One-Trick Pony: installDir: Beating A Dead Horse With A One-Trick Pony: {} launch: - /BADH2.exe: + "/BADH2.exe": - when: - os: windows store: steam @@ -57015,16 +57177,16 @@ Beats Of Fury: installDir: Beats Of Fury: {} launch: - /BOF.exe: + "/BOF.exe": - when: - store: steam steam: id: 727450 -'Beats Warrior: Nian': +"Beats Warrior: Nian": installDir: Beats Warrior Nian: {} launch: - /Beats Warrior Nian.exe: + "/Beats Warrior Nian.exe": - when: - os: windows store: steam @@ -57034,11 +57196,11 @@ Beautiful Bricks: installDir: Beautiful Bricks: {} launch: - /Beautiful Bricks.app: + "/Beautiful Bricks.app": - when: - os: mac store: steam - /Beautiful Bricks.exe: + "/Beautiful Bricks.exe": - when: - os: windows store: steam @@ -57046,12 +57208,12 @@ Beautiful Bricks: id: 810060 Beautiful Desolation: files: - /THE BROTHERHOOD/BEAUTIFUL DESOLATION: + "/THE BROTHERHOOD/BEAUTIFUL DESOLATION": tags: - save when: - os: windows - /THE BROTHERHOOD/BEAUTIFUL DESOLATION/config.cfg: + "/THE BROTHERHOOD/BEAUTIFUL DESOLATION/config.cfg": tags: - config when: @@ -57061,16 +57223,16 @@ Beautiful Desolation: installDir: BEAUTIFUL DESOLATION: {} launch: - /desolation.app: + "/desolation.app": - when: - os: mac store: steam - /desolation.exe: + "/desolation.exe": - when: - bit: 64 os: windows store: steam - /desolation.x86_64: + "/desolation.x86_64": - when: - bit: 64 os: linux @@ -57081,11 +57243,11 @@ Beautiful Japanese Scenery - Animated Jigsaws: installDir: Beautiful_Japanese_Scenary_Animated_Jigsaws: {} launch: - /Beautiful_Japanese_Scenary_Animated_Jigsaws.app: + "/Beautiful_Japanese_Scenary_Animated_Jigsaws.app": - when: - os: mac store: steam - /Beautiful_Japanese_Scenary_Animated_Jigsaws.exe: + "/Beautiful_Japanese_Scenary_Animated_Jigsaws.exe": - when: - os: windows store: steam @@ -57093,7 +57255,7 @@ Beautiful Japanese Scenery - Animated Jigsaws: id: 514090 Beautiful Mystic Defenders: files: - /Saves/*.xml: + "/Saves/*.xml": tags: - save when: @@ -57101,7 +57263,7 @@ Beautiful Mystic Defenders: installDir: Beautiful Mystic Defenders: {} launch: - /BeautifulMysticDefenders.exe: + "/BeautifulMysticDefenders.exe": - when: - os: windows store: steam @@ -57115,36 +57277,36 @@ Beautify Day: Beautify Day: {} steam: id: 1060280 -'Beauty And Violence: Valkyries': +"Beauty And Violence: Valkyries": steam: id: 1146670 Beauty Bounce: installDir: Beauty Bounce: {} launch: - /BeautyBounce.app: + "/BeautyBounce.app": - when: - os: mac store: steam - /BeautyBounce.exe: + "/BeautyBounce.exe": - when: - os: windows store: steam - /BeautyBounce.sh: + "/BeautyBounce.sh": - when: - os: linux store: steam steam: id: 372330 -'Beauty and the Beast: Hidden Object Fairy Tale. HOG': +"Beauty and the Beast: Hidden Object Fairy Tale. HOG": installDir: Beauty and the Beast: {} launch: - /Beauty and the Beast.app: + "/Beauty and the Beast.app": - when: - os: mac store: steam - /Beauty and the Beast.exe: + "/Beauty and the Beast.exe": - when: - os: windows store: steam @@ -57154,20 +57316,20 @@ Beavers Be Dammed: installDir: Beavers Be Dammed: {} launch: - /BeaversBeDammed.app: + "/BeaversBeDammed.app": - when: - os: mac store: steam - /BeaversBeDammed.exe: + "/BeaversBeDammed.exe": - when: - os: windows store: steam - /BeaversBeDammed.x86: + "/BeaversBeDammed.x86": - when: - bit: 32 os: linux store: steam - /BeaversBeDammed.x86_64: + "/BeaversBeDammed.x86_64": - when: - bit: 64 os: linux @@ -57178,11 +57340,11 @@ Bebop and Tempo: installDir: Bebop and Tempo: {} launch: - /Bebop and Tempo.app: + "/Bebop and Tempo.app": - when: - os: mac store: steam - /Bebop and Tempo.exe: + "/Bebop and Tempo.exe": - when: - os: windows store: steam @@ -57192,15 +57354,15 @@ Becalm: installDir: Becalm: {} launch: - /Becalm.app: + "/Becalm.app": - when: - os: mac store: steam - /Becalm.exe: + "/Becalm.exe": - when: - os: windows store: steam - /Becalm.x86_64: + "/Becalm.x86_64": - when: - os: linux store: steam @@ -57217,12 +57379,12 @@ Became The Hunted: id: 917600 Becastled: files: - /AppData/LocalLow/Mana Potion Studios/Becastled: + "/AppData/LocalLow/Mana Potion Studios/Becastled": tags: - config when: - os: windows - /AppData/LocalLow/Mana Potion Studios/Becastled/saves: + "/AppData/LocalLow/Mana Potion Studios/Becastled/saves": tags: - save when: @@ -57232,26 +57394,26 @@ Becastled: installDir: Becastled: {} launch: - /Becastled.exe: + "/Becastled.exe": - when: - bit: 64 os: windows store: steam steam: id: 1330460 -Because We're Here - Act I: +"Because We're Here - Act I": installDir: - Because We're Here ~Mohnblume und Blauerose~: {} + "Because We're Here ~Mohnblume und Blauerose~": {} launch: - /Because We're Here - Act I.app: + "/Because We're Here - Act I.app": - when: - os: mac store: steam - /Because We're Here - Act I.exe: + "/Because We're Here - Act I.exe": - when: - os: windows store: steam - /Because We're Here - Act I.sh: + "/Because We're Here - Act I.sh": - when: - os: linux store: steam @@ -57261,11 +57423,11 @@ Beckett: installDir: Beckett: {} launch: - /Beckett.app/Contents/MacOS/Beckett: + "/Beckett.app/Contents/MacOS/Beckett": - when: - os: mac store: steam - /Beckett.exe: + "/Beckett.exe": - when: - bit: 64 os: windows @@ -57276,7 +57438,7 @@ Becoming a Dandelion Spore: installDir: Becoming a Dandelion Spore: {} launch: - /DandelionSpore.exe: + "/DandelionSpore.exe": - when: - os: windows store: steam @@ -57291,14 +57453,14 @@ Bedfellows Frenzy: installDir: BF_Frenzy: {} launch: - /Frenzy.exe: + "/Frenzy.exe": - when: - store: steam steam: id: 545430 Bedlam (2015): files: - /Bedlam_Data/save: + "/Bedlam_Data/save": tags: - save when: @@ -57306,11 +57468,11 @@ Bedlam (2015): installDir: Bedlam: {} launch: - /bedlam.app: + "/bedlam.app": - when: - os: mac store: steam - /bedlam.exe: + "/bedlam.exe": - when: - bit: 32 os: windows @@ -57325,15 +57487,15 @@ Bedlamball: installDir: Bedlamball: {} launch: - /Bedlamball.app: + "/Bedlamball.app": - when: - os: mac store: steam - /Bedlamball.exe: + "/Bedlamball.exe": - when: - os: windows store: steam - /game.exe: + "/game.exe": - when: - os: linux store: steam @@ -57343,7 +57505,7 @@ Bedtime Blues: installDir: Bedtime Blues: {} launch: - /Bedtime Blues.exe: + "/Bedtime Blues.exe": - when: - os: windows store: steam @@ -57353,7 +57515,7 @@ Bee Aware!: installDir: Bee Aware: {} launch: - /BeeAware.exe: + "/BeeAware.exe": - when: - bit: 64 os: windows @@ -57367,12 +57529,12 @@ Bee Movie Game: - config Bee Simulator: files: - /BeBee/Saved/Config/WindowsNoEditor: + "/BeBee/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /BeBee/Saved/SaveGames: + "/BeBee/Saved/SaveGames": tags: - save when: @@ -57382,7 +57544,7 @@ Bee Simulator: installDir: Bee Simulator: {} launch: - /BeBee.exe: + "/BeBee.exe": - when: - bit: 64 os: windows @@ -57396,7 +57558,7 @@ BeeFender: installDir: BeeFender: {} launch: - /BEEFENDER.exe: + "/BEEFENDER.exe": - when: - os: windows store: steam @@ -57406,7 +57568,7 @@ BeeFense: installDir: BeeFense: {} launch: - /BeeFense.exe: + "/BeeFense.exe": - when: - os: windows store: steam @@ -57416,7 +57578,7 @@ BeeFense BeeMastered: installDir: BeeFense BeeMastered: {} launch: - /BeeFense.exe: + "/BeeFense.exe": - when: - os: windows store: steam @@ -57431,7 +57593,7 @@ Beeftacular: installDir: Beeftacular: {} launch: - /Beeftacular.exe: + "/Beeftacular.exe": - when: - os: windows store: steam @@ -57441,15 +57603,15 @@ Beekeeper: installDir: Beekeeper: {} launch: - /Beekeeper: + "/Beekeeper": - when: - os: linux store: steam - /Beekeeper.app: + "/Beekeeper.app": - when: - os: mac store: steam - /Beekeeper.exe: + "/Beekeeper.exe": - when: - os: windows store: steam @@ -57459,7 +57621,7 @@ Beekyr: installDir: Beekyr: {} launch: - /Beekyr.exe: + "/Beekyr.exe": - when: - os: windows store: steam @@ -57472,12 +57634,12 @@ Beekyr Reloaded: id: 484930 Beep: files: - /Art/Save: + "/Art/Save": tags: - save when: - os: windows - /Art/Settings.xml: + "/Art/Settings.xml": tags: - config when: @@ -57485,7 +57647,7 @@ Beep: installDir: BEEP: {} launch: - /BEEP.exe: + "/BEEP.exe": - when: - store: steam steam: @@ -57494,7 +57656,7 @@ Beer Bar: installDir: Beer Bar: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: @@ -57513,7 +57675,7 @@ Beer Ranger: installDir: Beer Ranger: {} launch: - /Beer Ranger.exe: + "/Beer Ranger.exe": - when: - os: windows store: steam @@ -57528,32 +57690,32 @@ Beer!: installDir: Beer!: {} launch: - /Beer!.exe: - - arguments: '-windowed' + "/Beer!.exe": + - arguments: "-windowed" when: - os: windows store: steam - /Game.sh: - - arguments: '-windowed' + "/Game.sh": + - arguments: "-windowed" when: - os: linux store: steam steam: id: 782280 -Beer'em Up: +"Beer'em Up": installDir: - Beer'em Up: {} + "Beer'em Up": {} launch: - /BeerEmUp.exe: + "/BeerEmUp.exe": - when: - store: steam steam: id: 945880 -'Beer, Babes and Dragons': +"Beer, Babes and Dragons": installDir: - 'Beer, Babes and Dragons': {} + "Beer, Babes and Dragons": {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -57563,7 +57725,7 @@ Beerd leaver: installDir: Beerd leaver: {} launch: - /nw.exe: + "/nw.exe": - when: - store: steam steam: @@ -57572,7 +57734,7 @@ Beerman: installDir: Beerman: {} launch: - /Beerman.exe: + "/Beerman.exe": - when: - os: windows store: steam @@ -57582,7 +57744,7 @@ Bees Knees: installDir: Bees Knees: {} launch: - /Bees Knees.exe: + "/Bees Knees.exe": - when: - os: windows store: steam @@ -57592,15 +57754,15 @@ Beeswing: installDir: Beeswing: {} launch: - /beeswing1.12: + "/beeswing1.12": - when: - os: linux store: steam - /beeswing1.12.app/Contents/MacOS/nwjs: + "/beeswing1.12.app/Contents/MacOS/nwjs": - when: - os: mac store: steam - /beeswing1.12.exe: + "/beeswing1.12.exe": - when: - os: windows store: steam @@ -57610,7 +57772,7 @@ Beetle Elf: installDir: Beetle Elf: {} launch: - /Client.exe: + "/Client.exe": - when: - os: windows store: steam @@ -57620,7 +57782,7 @@ Beetle Hunter: installDir: Beetle Hunter: {} launch: - /BeetleHunter.exe: + "/BeetleHunter.exe": - when: - bit: 64 os: windows @@ -57631,22 +57793,22 @@ Beetle Uprising: installDir: Beetle Uprising: {} launch: - /Beetles.exe: + "/Beetles.exe": - when: - bit: 64 os: windows store: steam steam: id: 662680 -'Beetlejuice: Bad as Can': +"Beetlejuice: Bad as Can": installDir: Beetlejuice Bad as Can: {} launch: - /Beetle.app: + "/Beetle.app": - when: - os: mac store: steam - /Beetle.exe: + "/Beetle.exe": - when: - os: windows store: steam @@ -57656,7 +57818,7 @@ Before Arriving at the Terminal: installDir: baatt: {} launch: - /ビフォー・アライビング・アット・ザ・ターミナル.exe: + "/ビフォー・アライビング・アット・ザ・ターミナル.exe": - when: - store: steam steam: @@ -57665,21 +57827,21 @@ Before I Forget: installDir: Before I Forget: {} launch: - /BeforeIForget.exe: + "/BeforeIForget.exe": - when: - os: windows store: steam - /BeforeIForget.x86: + "/BeforeIForget.x86": - when: - bit: 32 os: linux store: steam - /BeforeIForget.x86_64: + "/BeforeIForget.x86_64": - when: - bit: 64 os: linux store: steam - /BeforeIForget_Steam.app: + "/BeforeIForget_Steam.app": - when: - os: mac store: steam @@ -57689,7 +57851,7 @@ Before Nightfall: installDir: Before Nightfall: {} launch: - /TillNight.exe: + "/TillNight.exe": - when: - bit: 64 os: windows @@ -57698,7 +57860,7 @@ Before Nightfall: id: 896380 Before We Leave: files: - /AppData/LocalLow/Balancing Monkey Games/Before We Leave: + "/AppData/LocalLow/Balancing Monkey Games/Before We Leave": tags: - save when: @@ -57714,11 +57876,11 @@ Before We Leave: installDir: Before We Leave: {} launch: - /Before We Leave.app: + "/Before We Leave.app": - when: - os: mac store: steam - /Before We Leave.exe: + "/Before We Leave.exe": - when: - bit: 64 os: windows @@ -57731,7 +57893,7 @@ Before We Leave: id: 1073910 Before Your Eyes: files: - /Goodbye World/Before Your Eyes/PlayerSettings.json: + "/Goodbye World/Before Your Eyes/PlayerSettings.json": tags: - config when: @@ -57741,7 +57903,7 @@ Before Your Eyes: installDir: Before Your Eyes: {} launch: - /Before Your Eyes.app: + "/Before Your Eyes.app": - when: - os: mac store: steam @@ -57756,7 +57918,7 @@ Before the Blood: id: 824110 Before the Echo: files: - /userdata//200910/remote: + "/userdata//200910/remote": tags: - save when: @@ -57765,30 +57927,30 @@ Before the Echo: installDir: Sequence: {} launch: - /Before The Echo.app: + "/Before The Echo.app": - when: - os: mac store: steam - /BeforeTheEcho: + "/BeforeTheEcho": - when: - os: linux store: steam - /sequence.exe: + "/sequence.exe": - when: - os: windows store: steam steam: id: 200910 -Beginner'sGame: +"Beginner'sGame": installDir: - Beginner'sGame: {} + "Beginner'sGame": {} launch: - /Beginner'sGame.exe: + "/Beginner'sGame.exe": - when: - bit: 64 os: windows store: steam - /Beginner'sGame.x86_64: + "/Beginner'sGame.x86_64": - when: - os: linux store: steam @@ -57798,20 +57960,20 @@ Beglitched: installDir: Beglitched: {} launch: - /Beglitched.app: + "/Beglitched.app": - when: - os: mac store: steam - /Beglitched.exe: + "/Beglitched.exe": - when: - os: windows store: steam - /Beglitched.x86: + "/Beglitched.x86": - when: - bit: 32 os: linux store: steam - /Beglitched.x86_64: + "/Beglitched.x86_64": - when: - bit: 64 os: linux @@ -57829,12 +57991,12 @@ Behind These Eyes: installDir: Behind These Eyes: {} launch: - /BehindTheseEyesPack.exe: + "/BehindTheseEyesPack.exe": - when: - bit: 64 os: windows store: steam - /MacNoEditor/Behind These Eyes.app: + "/MacNoEditor/Behind These Eyes.app": - when: - bit: 64 os: mac @@ -57845,7 +58007,7 @@ Behind Walls: installDir: Behind Walls: {} launch: - /Behind_Walls.exe: + "/Behind_Walls.exe": - when: - os: windows store: steam @@ -57855,8 +58017,8 @@ Behind You: installDir: BehindYou: {} launch: - /WindowsNoEditor/FaceL.exe: - - arguments: '-fullscreen' + "/WindowsNoEditor/FaceL.exe": + - arguments: "-fullscreen" when: - store: steam steam: @@ -57868,19 +58030,19 @@ Behind the Door: installDir: Behind The Door: {} launch: - /Behind The Door.exe: + "/Behind The Door.exe": - when: - os: windows store: steam - /BehindTheDoor.app/Contents/MacOS/BehindTheDoor: + "/BehindTheDoor.app/Contents/MacOS/BehindTheDoor": - when: - os: mac store: steam steam: id: 676730 -'Behind the Frame: The Finest Scenery': +"Behind the Frame: The Finest Scenery": files: - /AppData/LocalLow/Silver Lining Studio/Behind the Frame: + "/AppData/LocalLow/Silver Lining Studio/Behind the Frame": tags: - save when: @@ -57893,11 +58055,11 @@ Behind the Door: installDir: Behind the Frame - The Finest Scenery: {} launch: - /Behind the Frame.app: + "/Behind the Frame.app": - when: - os: mac store: steam - /BehindTheFrame_PC_Steam/Behind the Frame.exe: + "/BehindTheFrame_PC_Steam/Behind the Frame.exe": - when: - bit: 64 os: windows @@ -57908,7 +58070,7 @@ Behind the Memory: installDir: Behind the Memory: {} launch: - /Memory.exe: + "/Memory.exe": - when: - os: windows store: steam @@ -57918,20 +58080,20 @@ Behind the Screen: installDir: Behind The Screen: {} launch: - /Behind The Screen.app: + "/Behind The Screen.app": - when: - os: mac store: steam - /Behind The Screen.exe: + "/Behind The Screen.exe": - when: - os: windows store: steam - /Behind The Screen.x86: + "/Behind The Screen.x86": - when: - bit: 32 os: linux store: steam - /Behind The Screen.x86_64: + "/Behind The Screen.x86_64": - when: - bit: 64 os: linux @@ -57942,7 +58104,7 @@ Behind the Truth: installDir: Behind The Truth: {} launch: - /BehindTheTruth.exe: + "/BehindTheTruth.exe": - when: - os: windows store: steam @@ -57952,15 +58114,15 @@ Behold the Kickmen: installDir: Behold the Kickmen: {} launch: - /Kickmen.exe: + "/Kickmen.exe": - when: - os: windows store: steam - /Kickmen.x86: + "/Kickmen.x86": - when: - os: linux store: steam - /KickmenMac.app: + "/KickmenMac.app": - when: - os: mac store: steam @@ -57974,7 +58136,7 @@ Behold!: installDir: Behold: {} launch: - /Behold.exe: + "/Behold.exe": - when: - os: windows store: steam @@ -57982,22 +58144,22 @@ Behold!: id: 533260 Beholder: files: - /Warm Lamp Games/Beholder/GameSettings.ini: + "/Warm Lamp Games/Beholder/GameSettings.ini": tags: - config when: - os: linux - /Warm Lamp Games/Beholder/Saves: + "/Warm Lamp Games/Beholder/Saves": tags: - save when: - os: linux - /Warm Lamp Games/Beholder/GameSettings.ini: + "/Warm Lamp Games/Beholder/GameSettings.ini": tags: - config when: - os: windows - /Warm Lamp Games/Beholder/Saves: + "/Warm Lamp Games/Beholder/Saves": tags: - save when: @@ -58007,20 +58169,20 @@ Beholder: installDir: Beholder: {} launch: - /Beholder.app/Contents/MacOS/Beholder: + "/Beholder.app/Contents/MacOS/Beholder": - when: - os: mac store: steam - /Beholder.exe: + "/Beholder.exe": - when: - os: windows store: steam - /Beholder.x86: + "/Beholder.x86": - when: - bit: 32 os: linux store: steam - /Beholder.x86_64: + "/Beholder.x86_64": - when: - bit: 64 os: linux @@ -58033,12 +58195,12 @@ Beholder: id: 475550 Beholder 2: files: - /Warm Lamp Games/Beholder 2/GameSettings.ini: + "/Warm Lamp Games/Beholder 2/GameSettings.ini": tags: - config when: - os: windows - /Warm Lamp Games/Beholder 2/Saves: + "/Warm Lamp Games/Beholder 2/Saves": tags: - save when: @@ -58048,20 +58210,20 @@ Beholder 2: installDir: Beholder 2: {} launch: - /Beholder2.app/Contents/MacOS/Beholder2: + "/Beholder2.app/Contents/MacOS/Beholder2": - when: - os: mac store: steam - /Beholder2.exe: + "/Beholder2.exe": - when: - os: windows store: steam - /Beholder2.x86: + "/Beholder2.x86": - when: - bit: 32 os: linux store: steam - /Beholder2.x86_64: + "/Beholder2.x86_64": - when: - bit: 64 os: linux @@ -58074,7 +58236,7 @@ Beholder 3: installDir: PaintBucket: {} launch: - /Beholder3.exe: + "/Beholder3.exe": - when: - os: windows store: steam @@ -58084,7 +58246,7 @@ BeiJing Courier Simulator: installDir: BeiJing Courier Simulator: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: @@ -58093,99 +58255,99 @@ Beijing 2008: installDir: Beijing 2008: {} launch: - /Beijing.exe: + "/Beijing.exe": - when: - store: steam steam: id: 10520 Being a DIK: files: - /game/game/saves: + "/game/game/saves": tags: - save when: - os: linux - /game/game/saves/persistent: + "/game/game/saves/persistent": tags: - config when: - os: linux - /game/saves: + "/game/saves": tags: - save when: - os: windows - /game/saves/persistent: + "/game/saves/persistent": tags: - config when: - os: windows - /.renpy/BeingaDIK-1535311494 (Patreon version): + "/.renpy/BeingaDIK-1535311494 (Patreon version)": tags: - save when: - os: linux - /.renpy/BeingaDIK-1535311494/persistent (Patreon version): + "/.renpy/BeingaDIK-1535311494/persistent (Patreon version)": tags: - config when: - os: linux - /.renpy/BeingaDIK-1535311495 (Steam version): + "/.renpy/BeingaDIK-1535311495 (Steam version)": tags: - save when: - os: linux - /.renpy/BeingaDIK-1535311495/persistent (Steam version): + "/.renpy/BeingaDIK-1535311495/persistent (Steam version)": tags: - config when: - os: linux - /.renpy/BeingaDIK-GOG-1535311497 (GOG version): + "/.renpy/BeingaDIK-GOG-1535311497 (GOG version)": tags: - save when: - os: linux - /.renpy/BeingaDIK-GOG-1535311497/persistent (GOG version): + "/.renpy/BeingaDIK-GOG-1535311497/persistent (GOG version)": tags: - config when: - os: linux - /.renpy/persistent (Season 2 ending savefiles for Season 3): + "/.renpy/persistent (Season 2 ending savefiles for Season 3)": tags: - save when: - os: linux - /RenPy/BeingaDIK-1535311494 (Patreon version): + "/RenPy/BeingaDIK-1535311494 (Patreon version)": tags: - save when: - os: windows - /RenPy/BeingaDIK-1535311494/persistent (Patreon version): + "/RenPy/BeingaDIK-1535311494/persistent (Patreon version)": tags: - config when: - os: windows - /RenPy/BeingaDIK-1535311495 (Steam version): + "/RenPy/BeingaDIK-1535311495 (Steam version)": tags: - save when: - os: windows - /RenPy/BeingaDIK-1535311495/persistent (Steam version): + "/RenPy/BeingaDIK-1535311495/persistent (Steam version)": tags: - config when: - os: windows - /RenPy/BeingaDIK-GOG-1535311497 (GOG version): + "/RenPy/BeingaDIK-GOG-1535311497 (GOG version)": tags: - save when: - os: windows - /RenPy/BeingaDIK-GOG-1535311497/persistent (GOG version): + "/RenPy/BeingaDIK-GOG-1535311497/persistent (GOG version)": tags: - config when: - os: windows - /RenPy/persistent (Season 2 ending savefiles for Season 3): + "/RenPy/persistent (Season 2 ending savefiles for Season 3)": tags: - save when: @@ -58195,17 +58357,17 @@ Being a DIK: installDir: Being a DIK: {} launch: - /BeingADIK-32.exe: + "/BeingADIK-32.exe": - when: - bit: 32 os: windows store: steam - /BeingADIK.exe: + "/BeingADIK.exe": - when: - bit: 64 os: windows store: steam - /BeingADIK.sh: + "/BeingADIK.sh": - when: - os: linux store: steam @@ -58213,7 +58375,7 @@ Being a DIK: id: 1126320 Bejeweled: files: - /Steam/Bejeweled/userdata: + "/Steam/Bejeweled/userdata": tags: - save when: @@ -58221,14 +58383,14 @@ Bejeweled: installDir: Bejeweled Deluxe: {} launch: - /WinBej.exe: + "/WinBej.exe": - when: - store: steam steam: id: 3350 Bejeweled 2: files: - /Steam/Bejeweled2/users: + "/Steam/Bejeweled2/users": tags: - save when: @@ -58236,11 +58398,11 @@ Bejeweled 2: installDir: Bejeweled 2 Deluxe: {} launch: - /Bejeweled 2 Deluxe.app: + "/Bejeweled 2 Deluxe.app": - when: - os: mac store: steam - /WinBej2.exe: + "/WinBej2.exe": - when: - os: windows store: steam @@ -58248,24 +58410,25 @@ Bejeweled 2: id: 3300 Bejeweled 3: files: - /PopCap Games/Bejeweled3/users: + "/PopCap Games/Bejeweled3/users": tags: - save when: - os: windows - /Steam/Bejeweled3/users: + "/Steam/Bejeweled3/users": tags: - save when: - - store: steam + - os: windows + store: steam installDir: Bejeweled 3: {} launch: - /Bejeweled 3.app: + "/Bejeweled 3.app": - when: - os: mac store: steam - /Bejeweled3.exe: + "/Bejeweled3.exe": - when: - os: windows store: steam @@ -58276,25 +58439,28 @@ Bejeweled 3: HKEY_CURRENT_USER/SOFTWARE/SteamPopCap/Bejeweled3: tags: - config + when: + - store: steam steam: id: 78000 Bejeweled Twist: files: - /PopCap Games/BejeweledTwist/users: + "/PopCap Games/BejeweledTwist/users": tags: - save when: - os: windows - /Steam/BejeweledTwist/users: + "/Steam/BejeweledTwist/users": tags: - save when: - - store: steam + - os: windows + store: steam installDir: Bejeweled Twist: {} launch: - /BejeweledTwist.exe: - - arguments: ' ' + "/BejeweledTwist.exe": + - arguments: " " when: - store: steam registry: @@ -58304,13 +58470,15 @@ Bejeweled Twist: HKEY_CURRENT_USER/SOFTWARE/Steam/BejeweledTwist: tags: - config + when: + - store: steam steam: id: 3560 Bekkouame: installDir: bekkouame: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -58320,16 +58488,16 @@ Beku: installDir: Beku: {} launch: - /Beku.exe: + "/Beku.exe": - when: - os: windows store: steam steam: id: 1694610 -'Believe: Paranormal Psychic Adventure': +"Believe: Paranormal Psychic Adventure": steam: id: 964760 -'Belko VR: An Escape Room Experiment': +"Belko VR: An Escape Room Experiment": installDir: Belko VR: {} steam: @@ -58338,7 +58506,7 @@ Bell Ringer: installDir: Bell Ringer: {} launch: - /BellRinger.exe: + "/BellRinger.exe": - when: - os: windows store: steam @@ -58346,7 +58514,7 @@ Bell Ringer: id: 424830 Belladonna: files: - /Neckbolt/Belladonna: + "/Neckbolt/Belladonna": tags: - save when: @@ -58354,7 +58522,7 @@ Belladonna: installDir: Belladonna: {} launch: - /Belladonna.exe: + "/Belladonna.exe": - when: - os: windows store: steam @@ -58364,7 +58532,7 @@ Belly Dance Girl: installDir: BellyDanceGirl: {} launch: - /BDGirl.exe: + "/BDGirl.exe": - when: - bit: 64 os: windows @@ -58378,13 +58546,13 @@ BellyBots: id: 493100 Below: files: - /userdata//250680/local/save/Settings/usersettings.lua: + "/userdata//250680/local/save/Settings/usersettings.lua": tags: - config when: - os: windows store: steam - /userdata//250680/remote: + "/userdata//250680/remote": tags: - save when: @@ -58393,7 +58561,7 @@ Below: installDir: BELOW: {} launch: - /BelowD3D11Steam_x64.exe: + "/BelowD3D11Steam_x64.exe": - when: - bit: 64 os: windows @@ -58404,7 +58572,7 @@ Below Kryll: installDir: Below Kryll: {} launch: - /Kryll.exe: + "/Kryll.exe": - arguments: steamapp=1 when: - os: windows @@ -58415,7 +58583,7 @@ Below Sunshade: installDir: Below Sunshade: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -58433,7 +58601,7 @@ Ben 10: installDir: Ben 10: {} launch: - /Ben10.exe: + "/Ben10.exe": - when: - bit: 64 os: windows @@ -58444,15 +58612,15 @@ Ben 10 Game Generator 5D: installDir: Ben 10 Game Generator 5D: {} launch: - /Ben10GG5D.app: + "/Ben10GG5D.app": - when: - os: mac store: steam - /Ben10GG5D.exe: + "/Ben10GG5D.exe": - when: - os: windows store: steam - /Ben10GG5D.x86: + "/Ben10GG5D.x86": - when: - os: linux store: steam @@ -58462,20 +58630,20 @@ Ben The Exorcist: installDir: Ben The Exorcist: {} launch: - /HauntedHause.exe: + "/HauntedHause.exe": - when: - os: windows store: steam steam: id: 654020 -'Ben There, Dan That!': +"Ben There, Dan That!": files: - /acsetup.cfg: + "/acsetup.cfg": tags: - config when: - os: windows - /agssave.*: + "/agssave.*": tags: - save when: @@ -58483,24 +58651,24 @@ Ben The Exorcist: gog: id: 1207662983 installDir: - 'Ben There, Dan That!': {} + "Ben There, Dan That!": {} launch: - /BTDT.exe: + "/BTDT.exe": - when: - store: steam - /winsetup.exe: + "/winsetup.exe": - when: - store: steam steam: id: 37420 Ben and Ed: files: - /BenAndEd/Saved/SaveGames: + "/BenAndEd/Saved/SaveGames": tags: - save when: - os: windows - /BenAndEd/Saved/SaveGames/settings.sav: + "/BenAndEd/Saved/SaveGames/settings.sav": tags: - config when: @@ -58508,7 +58676,7 @@ Ben and Ed: installDir: Ben and Ed: {} launch: - /BenAndEd.exe: + "/BenAndEd.exe": - when: - os: windows store: steam @@ -58518,7 +58686,7 @@ Ben and Ed - Blood Party: installDir: Ben and Ed - Blood Party: {} launch: - /BaEBloodParty.exe: + "/BaEBloodParty.exe": - when: - os: windows store: steam @@ -58526,7 +58694,7 @@ Ben and Ed - Blood Party: id: 500260 Bendy and the Dark Revival: files: - /AppData/LocalLow/Joey Drew Studios/Bendy and the Dark Revival/data: + "/AppData/LocalLow/Joey Drew Studios/Bendy and the Dark Revival/data": tags: - save when: @@ -58534,7 +58702,7 @@ Bendy and the Dark Revival: installDir: Bendy and the Dark Revival: {} launch: - /Bendy and the Dark Revival.exe: + "/Bendy and the Dark Revival.exe": - when: - bit: 64 os: windows @@ -58547,39 +58715,39 @@ Bendy and the Dark Revival: id: 1063660 Bendy and the Ink Machine: files: - /AppData/LocalLow/Joey Drew Studios/Bendy and the Ink Machine/Saves: + "/AppData/LocalLow/Joey Drew Studios/Bendy and the Ink Machine/Saves": tags: - save when: - os: windows - /Library/Application Support/unity.TheMeatly Games.Bendy and the Ink Machine/Saves: + "/Library/Application Support/unity.TheMeatly Games.Bendy and the Ink Machine/Saves": tags: - save when: - os: mac id: steamExtra: - - 622661 - 622660 + - 622661 - 730000 installDir: Bendy and the Ink Machine: {} launch: - /BATIM.app: + "/BATIM.app": - when: - os: mac store: steam - /BATIM.x86: + "/BATIM.x86": - when: - bit: 32 os: linux store: steam - /BATIM.x86_64: + "/BATIM.x86_64": - when: - bit: 64 os: linux store: steam - /Bendy and the Ink Machine.exe: + "/Bendy and the Ink Machine.exe": - when: - os: windows store: steam @@ -58593,7 +58761,7 @@ Beneath The Cherry Trees: installDir: uc_steamb: {} launch: - /uc_steam.exe: + "/uc_steam.exe": - when: - os: windows store: steam @@ -58609,11 +58777,11 @@ Beneath The Surface: installDir: Beneath The Surface: {} launch: - /Beneath The Surface.app: + "/Beneath The Surface.app": - when: - os: mac store: steam - /Beneath The Surface.exe: + "/Beneath The Surface.exe": - when: - os: windows store: steam @@ -58621,22 +58789,22 @@ Beneath The Surface: id: 792050 Beneath a Steel Sky: files: - /SKY-VM.***: + "/SKY-VM.***": tags: - save when: - os: windows - /beneath.ini: + "/beneath.ini": tags: - config when: - os: windows - /config.dat: + "/config.dat": tags: - config when: - os: dos - /Documents/ScummVM Savegames/Beneath a Steel Sky: + "/Documents/ScummVM Savegames/Beneath a Steel Sky": tags: - save when: @@ -58646,19 +58814,19 @@ Beneath a Steel Sky: installDir: Beneath a Steel Sky: {} launch: - /ScummVM/scummvm.exe: - - arguments: '--no-console --savepath=Saves -c BASS.ini BASS' + "/ScummVM/scummvm.exe": + - arguments: "--no-console --savepath=Saves -c BASS.ini BASS" when: - os: windows store: steam - /ScummVM/scummvm_i386: - - arguments: '--savepath=Saves -c BASS.ini BASS' + "/ScummVM/scummvm_i386": + - arguments: "--savepath=Saves -c BASS.ini BASS" when: - bit: 32 os: linux store: steam - /ScummVM/scummvm_x86_64: - - arguments: '--savepath=Saves -c BASS.ini BASS' + "/ScummVM/scummvm_x86_64": + - arguments: "--savepath=Saves -c BASS.ini BASS" when: - bit: 64 os: linux @@ -58669,7 +58837,7 @@ Beneath steel clouds: installDir: Beneath steel clouds: {} launch: - /Beneath steel clouds.exe: + "/Beneath steel clouds.exe": - when: - os: windows store: steam @@ -58682,7 +58850,7 @@ Benji Challenges: installDir: BenjiChallenges: {} launch: - /BenjiChallenges.exe: + "/BenjiChallenges.exe": - when: - os: windows store: steam @@ -58690,115 +58858,115 @@ Benji Challenges: id: 393770 Beowulf: files: - /Ubisoft/Beowulf: + "/Ubisoft/Beowulf": tags: - config - save when: - os: windows -'Bepuzzled Jigsaw Puzzle: Animals 103 Puzzles': +"Bepuzzled Jigsaw Puzzle: Animals 103 Puzzles": installDir: Bepuzzled Animals Jigsaw Puzzle: {} launch: - /BepuzzledAnimals.app: + "/BepuzzledAnimals.app": - when: - os: mac store: steam - /BepuzzledAnimals.exe: + "/BepuzzledAnimals.exe": - when: - os: windows store: steam - /BepuzzledLinux.x86_64: + "/BepuzzledLinux.x86_64": - when: - os: linux store: steam steam: id: 1103050 -'Bepuzzled Jigsaw Puzzle: Aquatic': +"Bepuzzled Jigsaw Puzzle: Aquatic": installDir: Bepuzzled Aquatic Jigsaw Puzzle: {} launch: - /BepuzzledAquatic.app: + "/BepuzzledAquatic.app": - when: - os: mac store: steam - /BepuzzledAquatic.exe: + "/BepuzzledAquatic.exe": - when: - os: windows store: steam - /BepuzzledAquatic.x86_64: + "/BepuzzledAquatic.x86_64": - when: - os: linux store: steam steam: id: 1108040 -'Bepuzzled Jigsaw Puzzle: Japan': +"Bepuzzled Jigsaw Puzzle: Japan": installDir: Bepuzzled Japan Jigsaw Puzzle: {} launch: - /BepuzzledJapan.app: + "/BepuzzledJapan.app": - when: - os: mac store: steam - /BepuzzledJapan.exe: + "/BepuzzledJapan.exe": - when: - os: windows store: steam - /BepuzzledJapan.x86: + "/BepuzzledJapan.x86": - when: - os: linux store: steam steam: id: 1103070 -'Bepuzzled Jigsaw Puzzle: Nature': +"Bepuzzled Jigsaw Puzzle: Nature": installDir: Bepuzzled Nature Jigsaw Puzzle: {} launch: - /BepuzzledNature.app: + "/BepuzzledNature.app": - when: - os: mac store: steam - /BepuzzledNature.exe: + "/BepuzzledNature.exe": - when: - os: windows store: steam - /BepuzzledNature.x86_64: + "/BepuzzledNature.x86_64": - when: - os: linux store: steam steam: id: 1103080 -'Bepuzzled Jigsaw Puzzle: Paradise': +"Bepuzzled Jigsaw Puzzle: Paradise": installDir: Bepuzzled Paradise Jigsaw Puzzle: {} launch: - /BepuzzledParadise.app: + "/BepuzzledParadise.app": - when: - os: mac store: steam - /BepuzzledParadise.exe: + "/BepuzzledParadise.exe": - when: - os: windows store: steam - /BepuzzledParadise.x86: + "/BepuzzledParadise.x86": - when: - os: linux store: steam steam: id: 1108030 -'Bepuzzled Jigsaw Puzzle: Sweets': +"Bepuzzled Jigsaw Puzzle: Sweets": installDir: Bepuzzled Sweets Jigsaw Puzzle: {} launch: - /BepuzzledSweets.app: + "/BepuzzledSweets.app": - when: - os: mac store: steam - /BepuzzledSweets.exe: + "/BepuzzledSweets.exe": - when: - os: windows store: steam - /BepuzzledSweets.x86: + "/BepuzzledSweets.x86": - when: - os: linux store: steam @@ -58808,11 +58976,11 @@ Bepuzzled Kittens Jigsaw Puzzle: installDir: Bepuzzled Kittens Jigsaw Puzzle: {} launch: - /BepuzzledKittens.exe: + "/BepuzzledKittens.exe": - when: - os: windows store: steam - /BepuzzledKittensMacA1.app: + "/BepuzzledKittensMacA1.app": - when: - os: mac store: steam @@ -58822,11 +58990,11 @@ Bepuzzled Puppy Dog Jigsaw Puzzle: installDir: Bepuzzled: {} launch: - /Bepuzzled.app: + "/Bepuzzled.app": - when: - os: mac store: steam - /Bepuzzled.exe: + "/Bepuzzled.exe": - when: - os: windows store: steam @@ -58836,15 +59004,15 @@ Bepuzzled Space Jigsaw Puzzle: installDir: Bepuzzled Space Jigsaw Puzzle: {} launch: - /BepuzzledSpace.app: + "/BepuzzledSpace.app": - when: - os: mac store: steam - /BepuzzledSpace.exe: + "/BepuzzledSpace.exe": - when: - os: windows store: steam - /BepuzzledSpace.x86: + "/BepuzzledSpace.x86": - when: - os: linux store: steam @@ -58860,11 +59028,11 @@ Beraltors: installDir: Beraltors: {} launch: - /Beraltors.exe: + "/Beraltors.exe": - when: - os: windows store: steam - /Contents/MacOS/Beraltors: + "/Contents/MacOS/Beraltors": - when: - os: mac store: steam @@ -58877,15 +59045,15 @@ Bermuda: installDir: Bermuda: {} launch: - /bermuda: + "/bermuda": - when: - os: linux store: steam - /bermuda.app: + "/bermuda.app": - when: - os: mac store: steam - /bermuda.exe: + "/bermuda.exe": - when: - os: windows store: steam @@ -58895,22 +59063,22 @@ Bermuda - Lost Survival: installDir: Bermuda - Lost Survival: {} launch: - /Bermuda - Lost Survival.exe: + "/Bermuda - Lost Survival.exe": - when: - os: windows store: steam steam: id: 654690 -Bernackels' Shoggoth: +"Bernackels' Shoggoth": installDir: Shoggoth: {} launch: - /Shoggoth.exe: + "/Shoggoth.exe": - when: - bit: 64 os: windows store: steam - - arguments: '-windowed' + - arguments: "-windowed" when: - store: steam steam: @@ -58919,40 +59087,40 @@ Bernie Needs Love: installDir: Bernie Needs Love: {} launch: - /linux_32/bernieneedslove: + "/linux_32/bernieneedslove": - when: - os: linux store: steam - /linux_64/bernieneedslove: + "/linux_64/bernieneedslove": - when: - bit: 64 os: linux store: steam - /windows_32/bernie-needs-love.exe: + "/windows_32/bernie-needs-love.exe": - when: - bit: 32 os: windows store: steam - /windows_64/bernie-needs-love.exe: + "/windows_64/bernie-needs-love.exe": - when: - bit: 64 os: windows store: steam steam: id: 373120 -Bernie's Nightmare: +"Bernie's Nightmare": installDir: Bernie’s Nightmare: {} launch: - /Bernie's Nightmare.app/Contents/MacOS/Bernie's Nightmare: + "/Bernie's Nightmare.app/Contents/MacOS/Bernie's Nightmare": - when: - os: mac store: steam - /Bernie's Nightmare.exe: + "/Bernie's Nightmare.exe": - when: - os: windows store: steam - /Bernie's Nightmare.x86: + "/Bernie's Nightmare.x86": - when: - os: linux store: steam @@ -58969,7 +59137,7 @@ Berryblast Matchmaker: id: 677110 Berserk and the Band of the Hawk: files: - /KoeiTecmo/BERSERK and the Band of the Hawk/SAVEDATA: + "/KoeiTecmo/BERSERK and the Band of the Hawk/SAVEDATA": tags: - save when: @@ -58977,18 +59145,18 @@ Berserk and the Band of the Hawk: installDir: BERSERK and the Band of the Hawk: {} launch: - /BERSERK.exe: + "/BERSERK.exe": - when: - bit: 64 os: windows store: steam steam: id: 502280 -'Berserk: The Cataclysm': +"Berserk: The Cataclysm": installDir: Berserk The Cataclysm: {} launch: - /berserk.exe: + "/berserk.exe": - when: - os: windows store: steam @@ -58996,33 +59164,33 @@ Berserk and the Band of the Hawk: id: 486160 Besiege: files: - /Besiege.app/Contents/CompletedLevels.txt: + "/Besiege.app/Contents/CompletedLevels.txt": tags: - save when: - os: mac - /Besiege.app/Contents/Config.txt: + "/Besiege.app/Contents/Config.txt": tags: - config when: - os: mac - /Besiege.app/Contents/SavedMachines: + "/Besiege.app/Contents/SavedMachines": tags: - save when: - os: mac - /Besiege_Data/CompletedLevels.txt: + "/Besiege_Data/CompletedLevels.txt": tags: - save when: - os: windows - /Besiege_Data/Config.txt: + "/Besiege_Data/Config.txt": tags: - config when: - os: windows - os: linux - /Besiege_Data/SavedMachines: + "/Besiege_Data/SavedMachines": tags: - save when: @@ -59032,20 +59200,20 @@ Besiege: installDir: Besiege: {} launch: - /Besiege.app: + "/Besiege.app": - when: - os: mac store: steam - /Besiege.exe: + "/Besiege.exe": - when: - os: windows store: steam - /Besiege.x86: + "/Besiege.x86": - when: - bit: 32 os: linux store: steam - /Besiege.x86_64: + "/Besiege.x86_64": - when: - bit: 64 os: linux @@ -59056,15 +59224,15 @@ Best Buds vs Bad Guys: installDir: Best Buds: {} launch: - /BestBuds.app: + "/BestBuds.app": - when: - os: mac store: steam - /BestBuds.exe: + "/BestBuds.exe": - when: - os: windows store: steam - /BestBuds.x86: + "/BestBuds.x86": - when: - os: linux store: steam @@ -59074,11 +59242,11 @@ Best Friend Forever: installDir: Best Friend Forever: {} launch: - /BFF.app: + "/BFF.app": - when: - os: mac store: steam - /Best Friend Forever.exe: + "/Best Friend Forever.exe": - when: - os: windows store: steam @@ -59088,7 +59256,7 @@ Best Game EU: installDir: best game eu: {} launch: - /best game eu.exe: + "/best game eu.exe": - when: - os: windows store: steam @@ -59098,7 +59266,7 @@ Best Life Simulator: installDir: Best Life Simulator: {} launch: - /Best Life Simulator.exe: + "/Best Life Simulator.exe": - when: - os: windows store: steam @@ -59110,7 +59278,7 @@ Best Month Ever!: installDir: Best Month Ever!: {} launch: - /BestMonthEver.exe: + "/BestMonthEver.exe": - when: - store: steam steam: @@ -59122,7 +59290,7 @@ Best Plumber: installDir: Best Plumber: {} launch: - /BEST PLUMBER.exe: + "/BEST PLUMBER.exe": - when: - os: windows store: steam @@ -59135,7 +59303,7 @@ Best in Show Solitaire: installDir: DogSolitaire: {} launch: - /bestinshowsolitaire.exe: + "/bestinshowsolitaire.exe": - when: - os: windows store: steam @@ -59145,7 +59313,7 @@ Best in the West: installDir: Best in the West: {} launch: - /Best in the West.exe: + "/Best in the West.exe": - when: - bit: 64 os: windows @@ -59156,15 +59324,15 @@ Best of Us: installDir: Best of Us: {} launch: - /Best of Us.app/Contents/MacOS/Best of Us: + "/Best of Us.app/Contents/MacOS/Best of Us": - when: - os: mac store: steam - /BestOfUs: + "/BestOfUs": - when: - os: linux store: steam - /BestOfUs.exe: + "/BestOfUs.exe": - when: - os: windows store: steam @@ -59174,25 +59342,25 @@ Bestiary of Sigillum: installDir: Bestiary of Sigillum: {} launch: - /Bestiary of Sigillum.app: + "/Bestiary of Sigillum.app": - when: - os: mac store: steam - /Bestiary of Sigillum.exe: + "/Bestiary of Sigillum.exe": - when: - os: windows store: steam steam: id: 922530 -'Bestseller: Curse of the Golden Owl': +"Bestseller: Curse of the Golden Owl": installDir: Bestseller Curse of the Golden Owl: {} launch: - /Bestseller.app: + "/Bestseller.app": - when: - os: mac store: steam - /Bestseller.exe: + "/Bestseller.exe": - when: - os: windows store: steam @@ -59202,17 +59370,17 @@ Bet on Man: installDir: Bet on Man: {} launch: - /Bet on Man.exe: + "/Bet on Man.exe": - when: - os: windows store: steam steam: id: 1009870 -'Bet on Soldier: Blood Sport': +"Bet on Soldier: Blood Sport": installDir: Bet On Soldier: {} launch: - /BoS.exe: + "/BoS.exe": - when: - os: windows store: steam @@ -59222,7 +59390,7 @@ Beta Runner: installDir: Beta Runner: {} launch: - /Beta Runner.exe: + "/Beta Runner.exe": - when: - store: steam steam: @@ -59231,12 +59399,12 @@ Betrayal: installDir: Betrayal: {} launch: - /dosbox_windows/dosbox.exe: - - arguments: \"BETRAYAL.COM\" -conf \"dosbox_betrayal.conf\" -noconsole + "/dosbox_windows/dosbox.exe": + - arguments: "\\\"BETRAYAL.COM\\\" -conf \\\"dosbox_betrayal.conf\\\" -noconsole" when: - os: windows store: steam - /runBetrayal.sh: + "/runBetrayal.sh": - when: - os: linux store: steam @@ -59244,17 +59412,17 @@ Betrayal: id: 1233020 Betrayal at Club Low: files: - /.config/unity3d/Cosmo D Studios/Betrayal At Club Low: + "/.config/unity3d/Cosmo D Studios/Betrayal At Club Low": tags: - save when: - os: linux - /AppData/LocalLow/Cosmo D Studios/Betrayal At Club Low: + "/AppData/LocalLow/Cosmo D Studios/Betrayal At Club Low": tags: - save when: - os: windows - /Library/Application Support/BetrayalAtClubLow: + "/Library/Application Support/BetrayalAtClubLow": tags: - save when: @@ -59262,15 +59430,15 @@ Betrayal at Club Low: installDir: Betrayal At Club Low: {} launch: - /Betrayal At Club Low.exe: + "/Betrayal At Club Low.exe": - when: - os: windows store: steam - /Betrayal At Club Low.x86_64: + "/Betrayal At Club Low.x86_64": - when: - os: linux store: steam - /BetrayalMac.app: + "/BetrayalMac.app": - when: - os: mac store: steam @@ -59278,12 +59446,12 @@ Betrayal at Club Low: id: 1885750 Betrayal at Krondor: files: - /GAMES: + "/GAMES": tags: - save when: - os: dos - /KRONDOR.CFG: + "/KRONDOR.CFG": tags: - config when: @@ -59296,19 +59464,19 @@ Betrayal at Krondor: installDir: Betrayal Collection: {} launch: - /SierraLauncher.exe: + "/SierraLauncher.exe": - when: - store: steam steam: id: 559640 Betrayal in Antara: files: - /SAVE: + "/SAVE": tags: - save when: - os: windows - /Sierra/Betrayal in Antara: + "/Sierra/Betrayal in Antara": tags: - save when: @@ -59321,19 +59489,19 @@ Betrayal in Antara: installDir: Betrayal Collection: {} launch: - /SierraLauncher.exe: + "/SierraLauncher.exe": - when: - store: steam steam: id: 559640 Betrayer: files: - /My Games/Betrayer/Binaries/Win32: + "/My Games/Betrayer/Binaries/Win32": tags: - save when: - os: windows - /My Games/Betrayer/UDKGame/Config: + "/My Games/Betrayer/UDKGame/Config": tags: - config when: @@ -59343,22 +59511,22 @@ Betrayer: installDir: Betrayer: {} launch: - /Binaries/Win32/Betrayer.exe: + "/Binaries/Win32/Betrayer.exe": - when: - os: windows store: steam - workingDir: /Binaries/Win32 + workingDir: "/Binaries/Win32" steam: id: 243120 Better Late Than DEAD: installDir: Better Late Than Dead: {} launch: - /BLTD.app: + "/BLTD.app": - when: - os: mac store: steam - /BLTD.exe: + "/BLTD.exe": - when: - os: windows store: steam @@ -59368,11 +59536,11 @@ Better Off Tread: installDir: Better Off Tread: {} launch: - /BetterOffTread.app/Contents/MacOS/BetterOffTread: + "/BetterOffTread.app/Contents/MacOS/BetterOffTread": - when: - os: mac store: steam - /BetterOffTread.exe: + "/BetterOffTread.exe": - when: - os: windows store: steam @@ -59387,22 +59555,22 @@ Between Me and The Night: installDir: Between me and The Night: {} launch: - /Between Me and The Night 32bit.app: + "/Between Me and The Night 32bit.app": - when: - bit: 32 os: mac store: steam - /Between Me and The Night 32bit.exe: + "/Between Me and The Night 32bit.exe": - when: - bit: 32 os: windows store: steam - /Between Me and The Night.app: + "/Between Me and The Night.app": - when: - bit: 64 os: mac store: steam - /Between Me and The Night.exe: + "/Between Me and The Night.exe": - when: - bit: 64 os: windows @@ -59418,7 +59586,7 @@ Between Planets: installDir: Between Planets: {} launch: - /BetweenPlanets.exe: + "/BetweenPlanets.exe": - when: - bit: 64 os: windows @@ -59427,12 +59595,12 @@ Between Planets: id: 696600 Between Two Castles - Digital Edition: files: - /BetweenTwoCastles/Saved/Config/WindowsNoEditor: + "/BetweenTwoCastles/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /BetweenTwoCastles/Saved/SaveGames: + "/BetweenTwoCastles/Saved/SaveGames": tags: - save when: @@ -59440,14 +59608,14 @@ Between Two Castles - Digital Edition: installDir: Between Two Castles - Digital Edition: {} launch: - /BetweenTwoCastles.exe: + "/BetweenTwoCastles.exe": - when: - store: steam steam: id: 1158500 Between the Stars: files: - /AppData/LocalLow/Isolated Games/Between the Stars/SavedData: + "/AppData/LocalLow/Isolated Games/Between the Stars/SavedData": tags: - config - save @@ -59462,7 +59630,7 @@ Between the Stars: installDir: Between the Stars: {} launch: - /BetweenTheStars.exe: + "/BetweenTheStars.exe": - when: - os: windows store: steam @@ -59476,7 +59644,7 @@ Betweenside: installDir: Betweenside: {} launch: - /Betweenside.exe: + "/Betweenside.exe": - when: - os: windows store: steam @@ -59484,7 +59652,7 @@ Betweenside: id: 860600 Beware Planet Earth: files: - /Lightmare Studio/BewarePlanetEarth/Saves: + "/Lightmare Studio/BewarePlanetEarth/Saves": tags: - save when: @@ -59492,7 +59660,7 @@ Beware Planet Earth: installDir: Beware Planet Earth!: {} launch: - /BewarePlanetEarth_Steam.exe: + "/BewarePlanetEarth_Steam.exe": - when: - store: steam steam: @@ -59501,7 +59669,7 @@ Beware of Trains: installDir: BoT: {} launch: - /BoT.exe: + "/BoT.exe": - when: - bit: 64 os: windows @@ -59512,15 +59680,15 @@ Bewildebots: installDir: Bewildebots: {} launch: - /Bewildebots.app: + "/Bewildebots.app": - when: - os: mac store: steam - /Bewildebots.exe: + "/Bewildebots.exe": - when: - os: windows store: steam - /Bewildebots.x86_64: + "/Bewildebots.x86_64": - when: - os: linux store: steam @@ -59530,17 +59698,17 @@ Bewitched: installDir: Bewitched: {} launch: - /Bewitched 32-bit/Bewitched.exe: + "/Bewitched 32-bit/Bewitched.exe": - when: - bit: 32 os: windows store: steam - /Bewitched 64-bit/Bewitched.exe: + "/Bewitched 64-bit/Bewitched.exe": - when: - bit: 64 os: windows store: steam - /Bewitched Mac OS.app/Contents/MacOS/Bewitched Mac OS: + "/Bewitched Mac OS.app/Contents/MacOS/Bewitched Mac OS": - when: - os: mac store: steam @@ -59550,15 +59718,15 @@ Bewitched game: installDir: Bewitched game: {} launch: - /BewitchedGame.app: + "/BewitchedGame.app": - when: - os: mac store: steam - /BewitchedGame.exe: + "/BewitchedGame.exe": - when: - os: windows store: steam - /BewitchedGame.sh: + "/BewitchedGame.sh": - when: - os: linux store: steam @@ -59568,19 +59736,19 @@ Beyond: installDir: Beyond: {} launch: - /Beyond.exe: + "/Beyond.exe": - when: - bit: 64 os: windows store: steam steam: id: 947830 -Beyond Arm's Reach: +"Beyond Arm's Reach": steam: id: 713360 Beyond Blue: files: - /AppData/LocalLow/E-Line Media/Beyond Blue/Saves: + "/AppData/LocalLow/E-Line Media/Beyond Blue/Saves": tags: - save when: @@ -59588,8 +59756,8 @@ Beyond Blue: installDir: Beyond Blue: {} launch: - /BeyondBlue.exe: - - arguments: '-eline.target Steam' + "/BeyondBlue.exe": + - arguments: "-eline.target Steam" when: - os: windows store: steam @@ -59597,10 +59765,10 @@ Beyond Blue: id: 883360 Beyond Castle Wolfenstein: files: - /BWC.COM: + "/BWC.COM": tags: - save - /SAVEGAME.BCW: + "/SAVEGAME.BCW": tags: - save when: @@ -59610,7 +59778,7 @@ Beyond Clouds: id: 732970 Beyond Contact: files: - /userdata//877010/remote: + "/userdata//877010/remote": tags: - config - save @@ -59620,7 +59788,7 @@ Beyond Contact: installDir: Beyond: {} launch: - /Beyond.exe: + "/Beyond.exe": - when: - bit: 64 os: windows @@ -59631,7 +59799,7 @@ Beyond Critical: installDir: Beyond Critical: {} launch: - /Beyond Critical.exe: + "/Beyond Critical.exe": - when: - os: windows store: steam @@ -59641,7 +59809,7 @@ Beyond Despair: installDir: Beyond Despair: {} launch: - /SH.exe: + "/SH.exe": - when: - os: windows store: steam @@ -59651,15 +59819,15 @@ Beyond Dimensions: installDir: Beyond Dimensions: {} launch: - /Beyond Dimensions.app: + "/Beyond Dimensions.app": - when: - os: mac store: steam - /Beyond Dimensions.exe: + "/Beyond Dimensions.exe": - when: - os: windows store: steam - /Beyond Dimensions.x86: + "/Beyond Dimensions.x86": - when: - os: linux store: steam @@ -59667,12 +59835,12 @@ Beyond Dimensions: id: 429250 Beyond Divinity: files: - /config.div: + "/config.div": tags: - config when: - os: windows - /savegames: + "/savegames": tags: - save when: @@ -59682,11 +59850,11 @@ Beyond Divinity: installDir: beyond_divinity: {} launch: - /configtool.exe: + "/configtool.exe": - when: - os: windows store: steam - /div.exe: + "/div.exe": - when: - os: windows store: steam @@ -59696,11 +59864,11 @@ Beyond Eden: installDir: Beyond Eden: {} launch: - /beyond_eden.app/Contents/MacOS/beyond_eden: + "/beyond_eden.app/Contents/MacOS/beyond_eden": - when: - os: mac store: steam - /beyond_eden.exe: + "/beyond_eden.exe": - when: - bit: 32 os: windows @@ -59711,7 +59879,7 @@ Beyond Enemy Lines: installDir: Beyond Enemy Lines: {} launch: - /BeyondEnemyLines.exe: + "/BeyondEnemyLines.exe": - when: - bit: 64 os: windows @@ -59722,7 +59890,7 @@ Beyond Enemy Lines 2: installDir: Beyond Enemy Lines 2: {} launch: - /BeyondEnemyLines2.exe: + "/BeyondEnemyLines2.exe": - when: - bit: 64 os: windows @@ -59733,18 +59901,18 @@ Beyond Enemy Lines 2 Online: installDir: Beyond Enemy Lines 2 Online: {} launch: - /BeyondEnemyLines2.exe: + "/BeyondEnemyLines2.exe": - when: - bit: 64 os: windows store: steam steam: id: 1165720 -'Beyond Enemy Lines: Operation Arctic Hawk': +"Beyond Enemy Lines: Operation Arctic Hawk": installDir: Beyond Enemy Lines Operation Arctic Hawk: {} launch: - /BeyondEnemyLines.exe: + "/BeyondEnemyLines.exe": - when: - bit: 64 os: windows @@ -59753,7 +59921,7 @@ Beyond Enemy Lines 2 Online: id: 1022770 Beyond Eyes: files: - /Saves: + "/Saves": tags: - save when: @@ -59761,20 +59929,20 @@ Beyond Eyes: installDir: Beyond Eyes: {} launch: - /BeyondEyes.app: + "/BeyondEyes.app": - when: - os: mac store: steam - /BeyondEyes.exe: + "/BeyondEyes.exe": - when: - os: windows store: steam - /BeyondEyes.x86: + "/BeyondEyes.x86": - when: - bit: 32 os: linux store: steam - /BeyondEyes.x86_64: + "/BeyondEyes.x86_64": - when: - bit: 64 os: linux @@ -59789,7 +59957,7 @@ Beyond Flesh and Blood: installDir: BFB: {} launch: - /Beyondfleshandblood.exe: + "/Beyondfleshandblood.exe": - when: - bit: 64 os: windows @@ -59798,12 +59966,12 @@ Beyond Flesh and Blood: id: 391550 Beyond Good & Evil: files: - /sally.idx: + "/sally.idx": tags: - save when: - os: windows - /slot*.sav: + "/slot*.sav": tags: - save when: @@ -59813,10 +59981,10 @@ Beyond Good & Evil: installDir: Beyond Good and Evil: {} launch: - /BGE.exe: + "/BGE.exe": - when: - store: steam - /SettingsApplication.exe: + "/SettingsApplication.exe": - when: - os: windows store: steam @@ -59830,20 +59998,20 @@ Beyond Gravity: installDir: Beyond Gravity: {} launch: - /BeyondGravity.app: + "/BeyondGravity.app": - when: - os: mac store: steam - /BeyondGravity.exe: + "/BeyondGravity.exe": - when: - os: windows store: steam - /BeyondGravity.x86: + "/BeyondGravity.x86": - when: - bit: 32 os: linux store: steam - /BeyondGravity.x86_64: + "/BeyondGravity.x86_64": - when: - bit: 64 os: linux @@ -59854,7 +60022,7 @@ Beyond Magic: installDir: Beyond Magic: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: @@ -59863,42 +60031,42 @@ Beyond Minimalism: installDir: Beyond Minimalism: {} launch: - /BeyondMinimalism.exe: + "/BeyondMinimalism.exe": - when: - os: windows store: steam steam: id: 861320 -'Beyond Normandy: Assignment Berlin': +"Beyond Normandy: Assignment Berlin": files: - /Savegames: + "/Savegames": tags: - save when: - os: windows - /options.txt: + "/options.txt": tags: - config when: - os: windows Beyond Oasis: files: - /SEGA Genesis Classics/0048: + "/SEGA Genesis Classics/0048": tags: - save when: - os: windows - /SEGA Genesis Classics/setup.dat: + "/SEGA Genesis Classics/setup.dat": tags: - config when: - os: windows - /SEGA Mega Drive Classics/0048: + "/SEGA Mega Drive Classics/0048": tags: - save when: - os: windows - /SEGA Mega Drive Classics/setup.dat: + "/SEGA Mega Drive Classics/setup.dat": tags: - config when: @@ -59914,7 +60082,7 @@ Beyond Reality: installDir: Beyond Reality: {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: @@ -59923,7 +60091,7 @@ Beyond Senses: installDir: Beyond Senses: {} launch: - /BeyondSenses.exe: + "/BeyondSenses.exe": - when: - bit: 64 os: windows @@ -59934,7 +60102,7 @@ Beyond Shattered Isles: installDir: Beyond Shattered Isles: {} launch: - /Beyond Shattered Isles.exe: + "/Beyond Shattered Isles.exe": - when: - os: windows store: steam @@ -59942,12 +60110,12 @@ Beyond Shattered Isles: id: 1119620 Beyond Sol: files: - /BeyondSol/Game.prefs: + "/BeyondSol/Game.prefs": tags: - config when: - os: windows - /BeyondSol/Save: + "/BeyondSol/Save": tags: - save when: @@ -59955,7 +60123,7 @@ Beyond Sol: installDir: Beyond Sol: {} launch: - /BeyondSol.exe: + "/BeyondSol.exe": - when: - os: windows store: steam @@ -59965,11 +60133,11 @@ Beyond Space: installDir: Beyond Space: {} launch: - /BeyondSpace.app: + "/BeyondSpace.app": - when: - os: mac store: steam - /BeyondSpace.exe: + "/BeyondSpace.exe": - when: - os: windows store: steam @@ -59987,7 +60155,7 @@ Beyond The Heavens: installDir: Beyond The Heavens: {} launch: - /TopDownShooter.exe: + "/TopDownShooter.exe": - when: - bit: 64 os: windows @@ -59998,7 +60166,7 @@ Beyond The Veil: installDir: Beyond The Veil: {} launch: - /BeyondTheVeil.exe: + "/BeyondTheVeil.exe": - when: - store: steam steam: @@ -60008,7 +60176,7 @@ Beyond The Veil (2019): id: 1020670 Beyond Zork: files: - /SAVE: + "/SAVE": tags: - save when: @@ -60018,39 +60186,39 @@ Beyond Zork: installDir: Zork Anthology: {} launch: - /SierraLauncher.exe: + "/SierraLauncher.exe": - when: - store: steam steam: id: 570580 Beyond a Steel Sky: files: - /Library/Containers/BASS2/Data/Library/Application Support/Epic/BASS2/Saved/SaveGames: + "/Library/Containers/BASS2/Data/Library/Application Support/Epic/BASS2/Saved/SaveGames": tags: - save when: - os: mac - /Library/Containers/BASS2/Data/Library/Preferences/BASS2/MacNoEditor: + "/Library/Containers/BASS2/Data/Library/Preferences/BASS2/MacNoEditor": tags: - config when: - os: mac - /BASS2/Saved/Config/WindowsNoEditor: + "/BASS2/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /BASS2/Saved/SaveGames: + "/BASS2/Saved/SaveGames": tags: - save when: - os: windows - /Epic/BASS2/Saved/Config/LinuxNoEditor: + "/Epic/BASS2/Saved/Config/LinuxNoEditor": tags: - save when: - os: linux - /Epic/BASS2/Saved/SaveGames: + "/Epic/BASS2/Saved/SaveGames": tags: - save when: @@ -60064,12 +60232,12 @@ Beyond a Steel Sky: installDir: Beyond a Steel Sky: {} launch: - /BASS2.exe: + "/BASS2.exe": - when: - bit: 64 os: windows store: steam - /BASS2_Launcher.sh: + "/BASS2_Launcher.sh": - when: - bit: 64 os: linux @@ -60080,7 +60248,7 @@ Beyond a Total Loss: installDir: Beyond a Total Loss: {} launch: - /Beyond_a_Total_Loss.exe: + "/Beyond_a_Total_Loss.exe": - when: - os: windows store: steam @@ -60098,7 +60266,7 @@ Beyond the Destiny: installDir: Beyond The Destiny: {} launch: - /BTD.exe: + "/BTD.exe": - when: - store: steam steam: @@ -60109,11 +60277,11 @@ Beyond the Edge of Owlsgard: installDir: Beyond The Edge Of Owlsgard: {} launch: - /Owlsgard: + "/Owlsgard": - when: - os: linux store: steam - /Owlsgard.exe: + "/Owlsgard.exe": - when: - os: windows store: steam @@ -60124,20 +60292,20 @@ Beyond the Horizon: Beyond the Horizon: {} steam: id: 666850 -'Beyond the Invisible: Darkness Came': +"Beyond the Invisible: Darkness Came": installDir: Beyond the Invisible Darkness Came: {} steam: id: 772670 -'Beyond the Invisible: Evening': +"Beyond the Invisible: Evening": installDir: Beyond the Invisible Evening: {} launch: - /Beyond The Invisible - Evening.app: + "/Beyond The Invisible - Evening.app": - when: - os: mac store: steam - /Beyond_The_Invisible_Evening.exe: + "/Beyond_The_Invisible_Evening.exe": - when: - os: windows store: steam @@ -60147,8 +60315,8 @@ Beyond the Mind: installDir: Beyond the Mind: {} launch: - /nw.exe: - - arguments: '--in-process-gpu' + "/nw.exe": + - arguments: "--in-process-gpu" when: - store: steam steam: @@ -60160,11 +60328,11 @@ Beyond the Sky: installDir: Beyond the Sky: {} launch: - /Beyond the Sky.app/Contents/MacOS/Beyond the Sky: + "/Beyond the Sky.app/Contents/MacOS/Beyond the Sky": - when: - os: mac store: steam - /Beyond the Sky.exe: + "/Beyond the Sky.exe": - when: - os: windows store: steam @@ -60179,7 +60347,7 @@ Beyond the Sunset: installDir: BeyondTheSunset: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -60189,11 +60357,11 @@ Beyond the Void: installDir: Beyond the Void: {} launch: - /BeyondTheVoid.app/Contents/MacOS/BeyondTheVoid: + "/BeyondTheVoid.app/Contents/MacOS/BeyondTheVoid": - when: - os: mac store: steam - /BeyondTheVoid.exe: + "/BeyondTheVoid.exe": - when: - os: windows store: steam @@ -60203,21 +60371,21 @@ Beyond the Wall: installDir: Beyond the Wall: {} launch: - /Beyond the Wall.app/Contents/MacOS/Beyond the Wall: + "/Beyond the Wall.app/Contents/MacOS/Beyond the Wall": - when: - os: mac store: steam - /Beyond the Wall.exe: - - arguments: '-force-D3D9' + "/Beyond the Wall.exe": + - arguments: "-force-D3D9" when: - os: windows store: steam - /Beyond the Wall.x86: + "/Beyond the Wall.x86": - when: - bit: 32 os: linux store: steam - /Beyond the Wall.x86_64: + "/Beyond the Wall.x86_64": - when: - bit: 64 os: linux @@ -60228,15 +60396,15 @@ Beyond the Wall (For Kids): installDir: Beyond the Wall: {} launch: - /Linux/Beyond the Wall.x86: + "/Linux/Beyond the Wall.x86": - when: - os: linux store: steam - /MacOS/Beyond the Wall.app/Contents/MacOS/Beyond the Wall: + "/MacOS/Beyond the Wall.app/Contents/MacOS/Beyond the Wall": - when: - os: mac store: steam - /Windows/Beyond the Wall.exe: + "/Windows/Beyond the Wall.exe": - when: - os: windows store: steam @@ -60246,7 +60414,7 @@ Beyond the Wire: installDir: Beyond the Wire: {} launch: - /btw_launcher.exe: + "/btw_launcher.exe": - when: - os: windows store: steam @@ -60256,34 +60424,35 @@ Beyond the Wizard: installDir: Beyond the Wizard: {} launch: - /Beyond the Wizard.exe: + "/Beyond the Wizard.exe": - when: - store: steam steam: id: 1095680 -'Beyond: Light Advent': +"Beyond: Light Advent": installDir: - Beyond Light Advent Collector's Edition: {} + "Beyond Light Advent Collector's Edition": {} launch: - /Beyond_LightAdvent_CE.exe: + "/Beyond_LightAdvent_CE.exe": - when: - os: windows store: steam steam: id: 629080 -'Beyond: Two Souls': +"Beyond: Two Souls": files: - /Saved Games/Beyond Two Souls Steam/Save: + "/Saved Games/Beyond Two Souls Steam/Save": tags: - save when: - - store: steam - /Quantic Dream/Beyond Two Souls/Save: + - os: windows + store: steam + "/Quantic Dream/Beyond Two Souls/Save": tags: - save when: - - store: epic - /Quantic Dream/Beyond Two Souls/Save/Options: + - os: windows + "/Quantic Dream/Beyond Two Souls/Save/Options": tags: - config when: @@ -60293,7 +60462,7 @@ Beyond the Wizard: installDir: BEYOND Two Souls: {} launch: - /BeyondTwoSouls_Steam.exe: + "/BeyondTwoSouls_Steam.exe": - when: - bit: 64 os: windows @@ -60304,7 +60473,7 @@ Bezier: installDir: Bezier: {} launch: - /Bezier.exe: + "/Bezier.exe": - when: - os: windows store: steam @@ -60314,7 +60483,7 @@ Bezirk: installDir: Bezirk: {} launch: - /Bezirk.exe: + "/Bezirk.exe": - when: - bit: 64 os: windows @@ -60325,7 +60494,7 @@ Bhavacakra Grace: installDir: Bhavacakra Grace: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -60335,7 +60504,7 @@ Bhavacakra Maco: installDir: Bhavacakra Maco: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -60345,11 +60514,11 @@ BiT Evolution: installDir: BiT Evolution: {} launch: - /BiT Evolution.app: + "/BiT Evolution.app": - when: - os: mac store: steam - /bitevolution.exe: + "/bitevolution.exe": - when: - os: windows store: steam @@ -60360,19 +60529,19 @@ Biathlon Battle VR: Biathlon Battle VR: {} steam: id: 1004200 -Biba's Adventures: +"Biba's Adventures": installDir: - Biba`s Adventures: {} + "Biba`s Adventures": {} launch: - /Biba`s Adventures.exe: + "/Biba`s Adventures.exe": - when: - os: windows store: steam - /Biba`s Adventures.x86_64: + "/Biba`s Adventures.x86_64": - when: - os: linux store: steam - /Contents/MacOS/Biba`s Adventures: + "/Contents/MacOS/Biba`s Adventures": - when: - os: mac store: steam @@ -60382,7 +60551,7 @@ Bibi & Tina - Adventures with Horses: installDir: Bibi & Tina - Adventures with Horses: {} launch: - /Bibi und Tina_steam.exe: + "/Bibi und Tina_steam.exe": - when: - os: windows store: steam @@ -60392,7 +60561,7 @@ Bibi Blocksberg - Big Broom Race 3: installDir: Bibi Blocksberg - Big Broom Race 3: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -60402,69 +60571,69 @@ Bible Adventures: installDir: Spiritual Warfare & Wisdom Tree Collection: {} launch: - /DOSBox.app/Contents/MacOS/DOSBox: - - arguments: '-conf ../Conf/spirit.cfg -noconsole' + "/DOSBox.app/Contents/MacOS/DOSBox": + - arguments: "-conf ../Conf/spirit.cfg -noconsole" when: - os: mac store: steam - workingDir: /DOS - - arguments: '-conf ../Conf/bibleunix.cfg -noconsole' + workingDir: "/DOS" + - arguments: "-conf ../Conf/bibleunix.cfg -noconsole" when: - os: mac store: steam - workingDir: /DOS - - arguments: '-conf ../Conf/exodus.cfg -noconsole' + workingDir: "/DOS" + - arguments: "-conf ../Conf/exodus.cfg -noconsole" when: - os: mac store: steam - workingDir: /DOS - - arguments: '-conf ../Conf/joshua.cfg -noconsole' + workingDir: "/DOS" + - arguments: "-conf ../Conf/joshua.cfg -noconsole" when: - os: mac store: steam - workingDir: /DOS - /dosbox: - - arguments: '-conf ../Conf/spirit.cfg -noconsole' + workingDir: "/DOS" + "/dosbox": + - arguments: "-conf ../Conf/spirit.cfg -noconsole" when: - os: linux store: steam - workingDir: /DOS - - arguments: '-conf ../Conf/bibleunix.cfg -noconsole' + workingDir: "/DOS" + - arguments: "-conf ../Conf/bibleunix.cfg -noconsole" when: - os: linux store: steam - workingDir: /DOS - - arguments: '-conf ../Conf/exodus.cfg -noconsole' + workingDir: "/DOS" + - arguments: "-conf ../Conf/exodus.cfg -noconsole" when: - os: linux store: steam - workingDir: /DOS - - arguments: '-conf ../Conf/joshua.cfg -noconsole' + workingDir: "/DOS" + - arguments: "-conf ../Conf/joshua.cfg -noconsole" when: - os: linux store: steam - workingDir: /DOS - /dosbox.exe: - - arguments: '-conf ../Conf/spirit.cfg -noconsole' + workingDir: "/DOS" + "/dosbox.exe": + - arguments: "-conf ../Conf/spirit.cfg -noconsole" when: - os: windows store: steam - workingDir: /DOS - - arguments: '-conf ../Conf/bible.cfg -noconsole' + workingDir: "/DOS" + - arguments: "-conf ../Conf/bible.cfg -noconsole" when: - os: windows store: steam - workingDir: /DOS - - arguments: '-conf ../Conf/exodus.cfg -noconsole' + workingDir: "/DOS" + - arguments: "-conf ../Conf/exodus.cfg -noconsole" when: - os: windows store: steam - workingDir: /DOS - - arguments: '-conf ../Conf/joshua.cfg -noconsole' + workingDir: "/DOS" + - arguments: "-conf ../Conf/joshua.cfg -noconsole" when: - os: windows store: steam - workingDir: /DOS + workingDir: "/DOS" steam: id: 624550 Bible Test: @@ -60472,7 +60641,7 @@ Bible Test: id: 977200 Bibots: files: - /AppData/LocalLow/SquareSquid/Bibots: + "/AppData/LocalLow/SquareSquid/Bibots": tags: - config - save @@ -60483,7 +60652,7 @@ Bibots: installDir: Bibots: {} launch: - /Bibots.exe: + "/Bibots.exe": - when: - os: windows store: steam @@ -60496,23 +60665,23 @@ Bicyclism EP: installDir: Bicyclism EP: {} launch: - /bicyclism.app/Contents/MacOS/bicyclism: + "/bicyclism.app/Contents/MacOS/bicyclism": - when: - os: mac store: steam - /bicyclism.exe: + "/bicyclism.exe": - when: - os: windows store: steam - /bicyclism.x86_64: + "/bicyclism.x86_64": - when: - os: linux store: steam steam: id: 507030 -Bientôt l'été: +"Bientôt l'été": files: - /Library/Preferences/unity.Tale of Tales.Bientôt l’été.plist: + "/Library/Preferences/unity.Tale of Tales.Bientôt l’été.plist": tags: - config - save @@ -60521,16 +60690,16 @@ Bientôt l'été: installDir: Bientot_l_ete: {} launch: - /Bientôt l’été.app: + "/Bientôt l’été.app": - when: - os: mac store: steam - /bientotlete.exe: + "/bientotlete.exe": - when: - os: windows store: steam registry: - "HKEY_CURRENT_USER/Software/Tale of Tales/BientoÌ‚t l'eÌ\x81teÌ\x81": + "HKEY_CURRENT_USER/Software/Tale of Tales/BientoÌ‚t l'été": tags: - config - save @@ -60540,33 +60709,33 @@ Bierzerkers: installDir: Bierzerkers: {} launch: - /Local/VikingGame/Binaries/Win32/VikingGame.exe: - - arguments: '-pak' + "/Local/VikingGame/Binaries/Win32/VikingGame.exe": + - arguments: "-pak" when: - bit: 32 os: windows store: steam - workingDir: /Local/VikingGame/Binaries/Win32 - /Local/VikingGame/Binaries/Win64/VikingGame.exe: - - arguments: '-pak' + workingDir: "/Local/VikingGame/Binaries/Win32" + "/Local/VikingGame/Binaries/Win64/VikingGame.exe": + - arguments: "-pak" when: - bit: 64 os: windows store: steam - workingDir: /Local/VikingGame/Binaries/Win64 - /VikingGame/Binaries/Mac/Bierzerkers.app/Contents/MacOS/Bierzerkers: - - arguments: '-pak' + workingDir: "/Local/VikingGame/Binaries/Win64" + "/VikingGame/Binaries/Mac/Bierzerkers.app/Contents/MacOS/Bierzerkers": + - arguments: "-pak" when: - os: mac store: steam - workingDir: /VikingGame/Binaries/Mac + workingDir: "/VikingGame/Binaries/Mac" steam: id: 348460 Bifrost Project: installDir: Bifrost Project: {} launch: - /BifrostProject.exe: + "/BifrostProject.exe": - when: - os: windows store: steam @@ -60576,11 +60745,11 @@ Big Action Mega Fight!: installDir: BigActionMegaFight: {} launch: - /BigActionMegaFight.app: + "/BigActionMegaFight.app": - when: - os: mac store: steam - /BigActionMegaFight.exe: + "/BigActionMegaFight.exe": - when: - os: windows store: steam @@ -60588,12 +60757,12 @@ Big Action Mega Fight!: id: 357120 Big Ambitions: files: - /AppData/LocalLow/Hovgaard Games/Big Ambitions: + "/AppData/LocalLow/Hovgaard Games/Big Ambitions": tags: - config when: - os: windows - /AppData/LocalLow/Hovgaard Games/Big Ambitions/SaveGames: + "/AppData/LocalLow/Hovgaard Games/Big Ambitions/SaveGames": tags: - save when: @@ -60601,13 +60770,13 @@ Big Ambitions: installDir: Big Ambitions: {} launch: - /Big Ambitions.app: - - arguments: '-useSteam' + "/Big Ambitions.app": + - arguments: "-useSteam" when: - os: mac store: steam - /Big Ambitions.exe: - - arguments: '-useSteam' + "/Big Ambitions.exe": + - arguments: "-useSteam" when: - os: windows store: steam @@ -60617,12 +60786,12 @@ Big Bad Futanari Wolf: installDir: Big Bad Futanari Wolf: {} launch: - /BigBadFutanariWolf-32.exe: + "/BigBadFutanariWolf-32.exe": - when: - bit: 32 os: windows store: steam - /BigBadFutanariWolf.exe: + "/BigBadFutanariWolf.exe": - when: - bit: 64 os: windows @@ -60638,7 +60807,7 @@ Big Bang Empire: installDir: Big Bang Empire: {} launch: - /Big Bang Empire.exe: + "/Big Bang Empire.exe": - when: - os: windows store: steam @@ -60648,7 +60817,7 @@ Big Bash Boom: installDir: Big Bash Boom: {} launch: - /Big Bash Boom.exe: + "/Big Bash Boom.exe": - when: - os: windows store: steam @@ -60666,7 +60835,7 @@ Big Boot Baseball: installDir: Big Boot Baseball: {} launch: - /BigBootBaseball V6.5 (Steam)/Big Boot Baseball V6.5.exe: + "/BigBootBaseball V6.5 (Steam)/Big Boot Baseball V6.5.exe": - when: - os: windows store: steam @@ -60674,7 +60843,7 @@ Big Boot Baseball: id: 1029950 Big Brain Wolf: files: - /Macromedia/Flash Player/#SharedObjects//localhost/savedGameBBW.sol: + "/Macromedia/Flash Player/#SharedObjects//localhost/savedGameBBW.sol": tags: - config - save @@ -60683,11 +60852,11 @@ Big Brain Wolf: installDir: Big Brain Wolf: {} launch: - /BigBrainWolf.app: + "/BigBrainWolf.app": - when: - os: mac store: steam - /BigBrainWolf.exe: + "/BigBrainWolf.exe": - when: - os: windows store: steam @@ -60702,17 +60871,17 @@ Big Buck Hunter Arcade: installDir: Big Buck Hunter Arcade: {} launch: - /Buck.exe: + "/Buck.exe": - when: - os: windows store: steam steam: id: 455700 -'Big Crown: Showdown': +"Big Crown: Showdown": installDir: Big Crown Showdown: {} launch: - /Big Crown Showdown.exe: + "/Big Crown Showdown.exe": - when: - bit: 64 os: windows @@ -60726,21 +60895,21 @@ Big Dipper: installDir: Big Dipper: {} launch: - /LINUX/BigDipper.x86: + "/LINUX/BigDipper.x86": - when: - bit: 32 os: linux store: steam - /LINUX/BigDipper.x86_64: + "/LINUX/BigDipper.x86_64": - when: - bit: 64 os: linux store: steam - /MAC/BigDipper.app: + "/MAC/BigDipper.app": - when: - os: mac store: steam - /WIN/Big Dipper.exe: + "/WIN/Big Dipper.exe": - when: - os: windows store: steam @@ -60750,11 +60919,11 @@ Big Farm Story: installDir: BigFarmStory: {} launch: - /BigFarmStory.app: + "/BigFarmStory.app": - when: - os: mac store: steam - /BigFarmStory.exe: + "/BigFarmStory.exe": - when: - os: windows store: steam @@ -60764,7 +60933,7 @@ Big Fat Neighbor: installDir: bigfatneighbor: {} launch: - /bigfatneighbor/bigfatneighbor.exe: + "/bigfatneighbor/bigfatneighbor.exe": - when: - store: steam steam: @@ -60773,7 +60942,7 @@ Big Fish Legend: installDir: Big Fish Legend: {} launch: - /bfl.exe: + "/bfl.exe": - when: - os: windows store: steam @@ -60788,15 +60957,15 @@ Big Journey to Home: installDir: Big Journey to Home: {} launch: - /Big Journey to Home.app: + "/Big Journey to Home.app": - when: - os: mac store: steam - /game: + "/game": - when: - os: linux store: steam - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -60804,7 +60973,7 @@ Big Journey to Home: id: 388440 Big Money!: files: - /savegame.dat: + "/savegame.dat": tags: - save when: @@ -60812,21 +60981,21 @@ Big Money!: installDir: Big Money Deluxe: {} launch: - /WinBM.exe: + "/WinBM.exe": - when: - store: steam steam: id: 3360 Big Mutha Truckers: files: - /Saves: + "/Saves": tags: - save when: - os: windows Big Mutha Truckers 2: files: - /Big Mutha Truckers 2: + "/Big Mutha Truckers 2": tags: - config - save @@ -60835,41 +61004,41 @@ Big Mutha Truckers 2: installDir: Big Mutha Truckers 2: {} launch: - /Bin/bmt2.exe: + "/Bin/bmt2.exe": - when: - os: windows store: steam - workingDir: /Bin + workingDir: "/Bin" steam: id: 1377920 Big Pharma: files: - /Library/Application Support/Big Pharma/Saves: + "/Library/Application Support/Big Pharma/Saves": tags: - save when: - os: mac - /Library/Application Support/Big Pharma/Saves/global.data: + "/Library/Application Support/Big Pharma/Saves/global.data": tags: - config when: - os: mac - /My Games/Big Pharma/Saves: + "/My Games/Big Pharma/Saves": tags: - save when: - os: windows - /My Games/Big Pharma/Saves/global.data: + "/My Games/Big Pharma/Saves/global.data": tags: - config when: - os: windows - /Big Pharma/Saves: + "/Big Pharma/Saves": tags: - save when: - os: linux - /Big Pharma/Saves/global.data: + "/Big Pharma/Saves/global.data": tags: - config when: @@ -60879,15 +61048,15 @@ Big Pharma: installDir: Big Pharma: {} launch: - /Big Pharma.app: + "/Big Pharma.app": - when: - os: mac store: steam - /Big Pharma.exe: + "/Big Pharma.exe": - when: - os: windows store: steam - /Big Pharma.x86: + "/Big Pharma.x86": - when: - os: linux store: steam @@ -60897,35 +61066,35 @@ Big Pogo Man: installDir: BIG POGO MAN: {} launch: - /BIGPOGOMAN.app/Contents/MacOS/BIGPOGOMAN: + "/BIGPOGOMAN.app/Contents/MacOS/BIGPOGOMAN": - when: - os: mac store: steam - /BIGPOGOMAN.exe: + "/BIGPOGOMAN.exe": - when: - os: windows store: steam steam: id: 876310 -'Big Red Hood: Halloween': +"Big Red Hood: Halloween": installDir: BigRedHoodHalloween-pc: {} launch: - /BigRedHoodHalloween.exe: + "/BigRedHoodHalloween.exe": - when: - os: windows store: steam - /BigRedHoodHalloween.sh: + "/BigRedHoodHalloween.sh": - when: - os: linux store: steam steam: id: 1173270 -'Big Rumble Boxing: Creed Champions': +"Big Rumble Boxing: Creed Champions": installDir: Rumble: {} launch: - /RM.exe: + "/RM.exe": - when: - bit: 64 os: windows @@ -60939,83 +61108,83 @@ Big Thinkers 1st Grade: installDir: Big Thinkers 1st Grade: {} launch: - /ScummVM_Linux/launch_btfg_opengl.sh: + "/ScummVM_Linux/launch_btfg_opengl.sh": - when: - os: linux store: steam - workingDir: /ScummVM_Linux - /ScummVM_Linux/launch_btfg_safe.sh: + workingDir: "/ScummVM_Linux" + "/ScummVM_Linux/launch_btfg_safe.sh": - when: - os: linux store: steam - workingDir: /ScummVM_Linux - /ScummVM_Mac/ScummVM.app/Contents/MacOS/scummvm: - - arguments: '-c \"scummvm-btfg-opengl.ini\" thinker1-us' + workingDir: "/ScummVM_Linux" + "/ScummVM_Mac/ScummVM.app/Contents/MacOS/scummvm": + - arguments: "-c \\\"scummvm-btfg-opengl.ini\\\" thinker1-us" when: - os: mac store: steam - workingDir: /ScummVM_Mac - - arguments: '-c \"scummvm-btfg-safe.ini\" thinker1-us' + workingDir: "/ScummVM_Mac" + - arguments: "-c \\\"scummvm-btfg-safe.ini\\\" thinker1-us" when: - os: mac store: steam - workingDir: /ScummVM_Mac - /ScummVM_Windows/scummvm.exe: - - arguments: '--no-console -c \"scummvm-btfg-opengl.ini\" thinker1-us' + workingDir: "/ScummVM_Mac" + "/ScummVM_Windows/scummvm.exe": + - arguments: "--no-console -c \\\"scummvm-btfg-opengl.ini\\\" thinker1-us" when: - os: windows store: steam - workingDir: /ScummVM_Windows - - arguments: '--no-console -c \"scummvm-btfg-safe.ini\" thinker1-us' + workingDir: "/ScummVM_Windows" + - arguments: "--no-console -c \\\"scummvm-btfg-safe.ini\\\" thinker1-us" when: - os: windows store: steam - workingDir: /ScummVM_Windows + workingDir: "/ScummVM_Windows" steam: id: 376770 Big Thinkers Kindergarten: installDir: Big Thinkers Kindergarten: {} launch: - /ScummVM_Linux/launch_btk_opengl.sh: + "/ScummVM_Linux/launch_btk_opengl.sh": - when: - os: linux store: steam - workingDir: /ScummVM_Linux - /ScummVM_Linux/launch_btk_safe.sh: + workingDir: "/ScummVM_Linux" + "/ScummVM_Linux/launch_btk_safe.sh": - when: - os: linux store: steam - workingDir: /ScummVM_Linux - /ScummVM_Mac/ScummVM.app/Contents/MacOS/scummvm: - - arguments: '-c \"scummvm-btk-opengl.ini\" thinkerk-us' + workingDir: "/ScummVM_Linux" + "/ScummVM_Mac/ScummVM.app/Contents/MacOS/scummvm": + - arguments: "-c \\\"scummvm-btk-opengl.ini\\\" thinkerk-us" when: - os: mac store: steam - workingDir: /ScummVM_Mac - - arguments: '-c \"scummvm-btk-safe.ini\" thinkerk-us' + workingDir: "/ScummVM_Mac" + - arguments: "-c \\\"scummvm-btk-safe.ini\\\" thinkerk-us" when: - os: mac store: steam - workingDir: /ScummVM_Mac - /ScummVM_Windows/scummvm.exe: - - arguments: '--no-console -c \"scummvm-btk-opengl.ini\" thinkerk-us' + workingDir: "/ScummVM_Mac" + "/ScummVM_Windows/scummvm.exe": + - arguments: "--no-console -c \\\"scummvm-btk-opengl.ini\\\" thinkerk-us" when: - os: windows store: steam - workingDir: /ScummVM_Windows - - arguments: '--no-console -c \"scummvm-btk-safe.ini\" thinkerk-us' + workingDir: "/ScummVM_Windows" + - arguments: "--no-console -c \\\"scummvm-btk-safe.ini\\\" thinkerk-us" when: - os: windows store: steam - workingDir: /ScummVM_Windows + workingDir: "/ScummVM_Windows" steam: id: 376760 Big Tiddy Goth GF Simulator: installDir: BTGGFS: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -61025,11 +61194,11 @@ Big Tower Tiny Square: installDir: Big Tower Tiny Square: {} launch: - /bigtowertinysquare.app/Contents/MacOS/nwjs: + "/bigtowertinysquare.app/Contents/MacOS/nwjs": - when: - os: mac store: steam - /bigtowertinysquare.exe: + "/bigtowertinysquare.exe": - when: - os: windows store: steam @@ -61039,7 +61208,7 @@ BigBoy - Visual Crime Novel: installDir: BigBoyVisualCrimeNovel: {} launch: - /BigBoy.exe: + "/BigBoy.exe": - when: - os: windows store: steam @@ -61049,11 +61218,11 @@ BigDay: installDir: bigday: {} launch: - /bigday.app/Contents/MacOS/bigday: + "/bigday.app/Contents/MacOS/bigday": - when: - os: mac store: steam - /bigday.exe: + "/bigday.exe": - when: - os: windows store: steam @@ -61061,12 +61230,12 @@ BigDay: id: 757630 Bigfoot: files: - /Bigfoot/Saved/Config/WindowsNoEditor: + "/Bigfoot/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /Bigfoot/Saved/SaveGames: + "/Bigfoot/Saved/SaveGames": tags: - save when: @@ -61074,26 +61243,29 @@ Bigfoot: installDir: BigfootContent: {} launch: - /Bigfoot.exe: + "/Bigfoot.exe": - when: - bit: 64 os: windows store: steam steam: id: 509980 -'Bigfoot: The Secret Life': +"Bigfoot: The Secret Life": steam: id: 1083360 Bigger Guns: installDir: Bigger Guns: {} launch: - /Bigger Guns.exe: + "/Bigger Guns.exe": - when: - bit: 32 os: windows store: steam - /Bigger Guns.x86_64: + - bit: 64 + os: windows + store: steam + "/Bigger Guns.x86_64": - when: - bit: 64 os: linux @@ -61104,20 +61276,20 @@ Bighead Runner: installDir: Bighead Runner: {} launch: - /Bighead runner.exe: + "/Bighead runner.exe": - when: - store: steam steam: id: 863490 -'Biglands: A Game Made By Kids': +"Biglands: A Game Made By Kids": installDir: Biglands: {} launch: - /Biglands.app: + "/Biglands.app": - when: - os: mac store: steam - /Biglands.exe: + "/Biglands.exe": - when: - os: windows store: steam @@ -61128,28 +61300,28 @@ Bigscreen Beta: Bigscreen: {} steam: id: 457550 -'Biing! 2: Sonne, Strand und Heiße Nächte': +"Biing! 2: Sonne, Strand und Heiße Nächte": files: - /DULOG.CFG: + "/DULOG.CFG": tags: - config when: - os: windows - /*.b2g: + "/*.b2g": tags: - save when: - os: windows gog: id: 1959845271 -'Biing!: Sex, Intrigue and Scalpels': +"Biing!: Sex, Intrigue and Scalpels": files: - /*.CFG: + "/*.CFG": tags: - config when: - os: dos - /GAMES/BGAME*: + "/GAMES/BGAME*": tags: - save when: @@ -61160,20 +61332,20 @@ Bik - A Space Adventure: installDir: Bik: {} launch: - /Bik.app: + "/Bik.app": - when: - os: mac store: steam - /Bik.exe: + "/Bik.exe": - when: - os: windows store: steam - /Bik.x86: + "/Bik.x86": - when: - bit: 32 os: linux store: steam - /Bik.x86_64: + "/Bik.x86_64": - when: - bit: 64 os: linux @@ -61184,7 +61356,7 @@ Bike Dash Excite!: installDir: Bike Dash Excite!: {} launch: - /player.exe: + "/player.exe": - when: - store: steam steam: @@ -61193,7 +61365,7 @@ Bike Rush: installDir: Bike_Rush: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: @@ -61202,7 +61374,7 @@ Bike of the Wild: installDir: Bike of The Wild: {} launch: - /Bike of The Wild.exe: + "/Bike of The Wild.exe": - when: - os: windows store: steam @@ -61212,7 +61384,7 @@ Biker Garage: installDir: Biker Garage: {} launch: - /BikerGarage.exe: + "/BikerGarage.exe": - when: - os: windows store: steam @@ -61222,14 +61394,14 @@ Bikerz: installDir: Bikerz: {} launch: - /Bikerz.exe: + "/Bikerz.exe": - when: - store: steam steam: id: 1092580 -'Bikini Beach: Stunt Racer': +"Bikini Beach: Stunt Racer": files: - /Data/Common/savegame.usr: + "/Data/Common/savegame.usr": tags: - config - save @@ -61239,7 +61411,7 @@ Bikini Heaven: installDir: Bikini Heaven: {} launch: - /BikiniHeaven.exe: + "/BikiniHeaven.exe": - when: - os: windows store: steam @@ -61252,7 +61424,7 @@ Bikini Island Challenge: installDir: Bikini Island Challenge: {} launch: - /Bikini Island Challenge.exe: + "/Bikini Island Challenge.exe": - when: - os: windows store: steam @@ -61262,7 +61434,7 @@ Bikini Surfer Girl - Wild Wahine: installDir: Bikini Surfer Girl - Wild Wahine: {} launch: - /Bikini Surfer Girl Wild Wahine.exe: + "/Bikini Surfer Girl Wild Wahine.exe": - when: - os: windows store: steam @@ -61272,7 +61444,7 @@ Bikour!: installDir: Bikour!: {} launch: - /Bikour.exe: + "/Bikour.exe": - when: - os: windows store: steam @@ -61282,30 +61454,30 @@ Bildo: installDir: Bildo: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam steam: id: 674390 -'Billiard: VR': +"Billiard: VR": steam: id: 566290 Billiards: installDir: Billiards: {} launch: - /Billiards.app/Contents/MacOS/Billiards: + "/Billiards.app/Contents/MacOS/Billiards": - when: - bit: 64 os: mac store: steam - /Billiards.exe: + "/Billiards.exe": - when: - bit: 64 os: windows store: steam - /Billiards.x86_64: + "/Billiards.x86_64": - when: - bit: 64 os: linux @@ -61326,15 +61498,15 @@ Billion Beat: installDir: Billion Beat: {} launch: - /Billion Beat.app: + "/Billion Beat.app": - when: - os: mac store: steam - /Billion Beat.exe: + "/Billion Beat.exe": - when: - os: windows store: steam - /Billion Beat.x86: + "/Billion Beat.x86": - when: - os: linux store: steam @@ -61350,27 +61522,27 @@ Billy: installDir: Billy: {} launch: - /Billy.exe: + "/Billy.exe": - when: - os: windows store: steam steam: id: 765520 -'Billy Blade: Temple of Time': +"Billy Blade: Temple of Time": files: - /Data/Saves: + "/Data/Saves": tags: - save when: - os: windows Billy Hatcher and the Giant Egg: files: - /SEGA/Billy Hatcher/gegg.bin: + "/SEGA/Billy Hatcher/gegg.bin": tags: - save when: - os: windows - /SEGA/Billy Hatcher/gegg.ini: + "/SEGA/Billy Hatcher/gegg.ini": tags: - config when: @@ -61379,11 +61551,11 @@ Bin Weevils Arty Arcade: installDir: Bin Weevils Arty Arcade: {} launch: - /ArtyArcade.app: + "/ArtyArcade.app": - when: - os: mac store: steam - /artyarcade.exe: + "/artyarcade.exe": - when: - os: windows store: steam @@ -61393,20 +61565,20 @@ Binaries: installDir: Binaries: {} launch: - /Binaries.app/Contents/MacOS/Binaries: + "/Binaries.app/Contents/MacOS/Binaries": - when: - os: mac store: steam - /Binaries.exe: + "/Binaries.exe": - when: - os: windows store: steam - /Binaries.x86: + "/Binaries.x86": - when: - bit: 32 os: linux store: steam - /Binaries.x86_64: + "/Binaries.x86_64": - when: - bit: 64 os: linux @@ -61415,17 +61587,17 @@ Binaries: id: 435800 Binary Domain: files: - /savedata: + "/savedata": tags: - save when: - os: windows - /savedata/UserCFG.txt: + "/savedata/UserCFG.txt": tags: - config when: - os: windows - /userdata//203750: + "/userdata//203750": tags: - save when: @@ -61433,10 +61605,10 @@ Binary Domain: installDir: Binary Domain: {} launch: - /BinaryDomain.exe: + "/BinaryDomain.exe": - when: - store: steam - /BinaryDomainConfiguration.exe: + "/BinaryDomainConfiguration.exe": - when: - store: steam steam: @@ -61455,21 +61627,24 @@ Bing Bong XL: installDir: Bing Bong XL: {} launch: - /BingBongXL.app: + "/BingBongXL.app": - when: - os: mac store: steam - /BingBongXL.exe: + "/BingBongXL.exe": - when: - bit: 32 os: windows store: steam - /BingBongXL.x86: + - bit: 64 + os: windows + store: steam + "/BingBongXL.x86": - when: - bit: 32 os: linux store: steam - /BingBongXL.x86_64: + "/BingBongXL.x86_64": - when: - bit: 64 os: linux @@ -61480,11 +61655,11 @@ Bingo Hall: installDir: Bingo Hall: {} launch: - /BingoHall.exe: + "/BingoHall.exe": - when: - os: windows store: steam - /bingo-hall.app/Contents/MacOS/BingoHall: + "/bingo-hall.app/Contents/MacOS/BingoHall": - when: - os: mac store: steam @@ -61494,7 +61669,7 @@ BingoBango: installDir: BingoBango: {} launch: - /BingoBango.exe: + "/BingoBango.exe": - when: - os: windows store: steam @@ -61504,18 +61679,18 @@ Binky show: installDir: Binky show: {} launch: - /Binky.exe: + "/Binky.exe": - when: - os: windows store: steam steam: id: 1149910 -'Bio Crisis: Evil Hazard': +"Bio Crisis: Evil Hazard": steam: id: 1625950 Bio Inc. Redemption: files: - /AppData/LocalLow/DryGin Studios/BioIncRedemption: + "/AppData/LocalLow/DryGin Studios/BioIncRedemption": tags: - config - save @@ -61524,7 +61699,7 @@ Bio Inc. Redemption: installDir: Bio Inc. Redemption: {} launch: - /BioIncRedemption.exe: + "/BioIncRedemption.exe": - when: - os: windows store: steam @@ -61532,12 +61707,12 @@ Bio Inc. Redemption: id: 612470 Bio Menace: files: - /CONFIG.BM*: + "/CONFIG.BM*": tags: - config when: - os: dos - /SAVEGAM*.BM*: + "/SAVEGAM*.BM*": tags: - save when: @@ -61547,22 +61722,22 @@ Bio Menace: installDir: Bio Menace: {} launch: - /Bio Menace.app: + "/Bio Menace.app": - when: - os: mac store: steam - /Bio menace/dosbox/dosbox.exe: - - arguments: '-conf \"..\\BMENACE.conf\" -noconsole -c' + "/Bio menace/dosbox/dosbox.exe": + - arguments: "-conf \\\"..\\\\BMENACE.conf\\\" -noconsole -c" when: - os: windows store: steam - workingDir: /Bio menace/dosbox - /Dosbox/dosbox: - - arguments: '-conf \"..\\BMENACE.conf\" -noconsole -c' + workingDir: "/Bio menace/dosbox" + "/Dosbox/dosbox": + - arguments: "-conf \\\"..\\\\BMENACE.conf\\\" -noconsole -c" when: - os: linux store: steam - workingDir: /Dosbox + workingDir: "/Dosbox" steam: id: 358180 Bio Soup: @@ -61570,22 +61745,22 @@ Bio Soup: id: 662330 Bio-Hazard Battle: files: - /SEGA Genesis Classics/0024: + "/SEGA Genesis Classics/0024": tags: - save when: - os: windows - /SEGA Genesis Classics/setup.dat: + "/SEGA Genesis Classics/setup.dat": tags: - config when: - os: windows - /SEGA Mega Drive Classics/0024: + "/SEGA Mega Drive Classics/0024": tags: - save when: - os: windows - /SEGA Mega Drive Classics/setup.dat: + "/SEGA Mega Drive Classics/setup.dat": tags: - config when: @@ -61596,11 +61771,11 @@ BioEntity: installDir: BioEntity: {} launch: - /BioEntity.app/Contents/MacOS/BioEntity: + "/BioEntity.app/Contents/MacOS/BioEntity": - when: - os: mac store: steam - /BioEntity.exe: + "/BioEntity.exe": - when: - bit: 64 os: windows @@ -61614,15 +61789,15 @@ BioMech: installDir: BioMech: {} launch: - /linux64/BioMech: + "/linux64/BioMech": - when: - os: linux store: steam - /mac64/BioMech.app: + "/mac64/BioMech.app": - when: - os: mac store: steam - /win64/BioMech.exe: + "/win64/BioMech.exe": - when: - os: windows store: steam @@ -61630,12 +61805,12 @@ BioMech: id: 1139130 BioShock: files: - /Bioshock: + "/Bioshock": tags: - config when: - os: windows - /Bioshock/SaveGames: + "/Bioshock/SaveGames": tags: - save when: @@ -61645,25 +61820,25 @@ BioShock: installDir: Bioshock: {} launch: - /Builds/Release/bioshock.exe: + "/Builds/Release/bioshock.exe": - when: - store: steam - workingDir: /Builds/Release + workingDir: "/Builds/Release" steam: id: 7670 BioShock 2: files: - /Bioshock2Steam: + "/Bioshock2Steam": tags: - config when: - os: windows - /Bioshock2Steam/.profile: + "/Bioshock2Steam/.profile": tags: - save when: - os: windows - /Bioshock2/SaveGames: + "/Bioshock2/SaveGames": tags: - save when: @@ -61673,40 +61848,40 @@ BioShock 2: installDir: BioShock 2: {} launch: - /BioShock 2.app: + "/BioShock 2.app": - when: - os: mac store: steam - /MP/Builds/Binaries/Bioshock2Launcher.exe: + "/MP/Builds/Binaries/Bioshock2Launcher.exe": - when: - os: windows store: steam - workingDir: /SP/Builds/Binaries - /SP/Builds/Binaries/Bioshock2Launcher.exe: + workingDir: "/SP/Builds/Binaries" + "/SP/Builds/Binaries/Bioshock2Launcher.exe": - when: - os: windows store: steam - workingDir: /SP/Builds/Binaries + workingDir: "/SP/Builds/Binaries" steam: id: 8850 BioShock 2 Remastered: files: - /Bioshock Epic HD/Bioshock2/*.ini: - tags: - - config - when: - - store: epic - /BioshockHD/Bioshock2/*.ini: + "/Bioshock Epic HD/Bioshock2/*.ini": tags: - config when: - os: windows - /Bioshock Epic HD/Bioshock2//SaveGames: + "/BioshockHD/Bioshock2/*.ini": + tags: + - config + when: + - os: windows + "/Bioshock Epic HD/Bioshock2//SaveGames": tags: - save when: - - store: epic - /BioshockHD/Bioshock2/SaveGames: + - os: windows + "/BioshockHD/Bioshock2/SaveGames": tags: - save when: @@ -61719,35 +61894,35 @@ BioShock 2 Remastered: installDir: BioShock 2 Remastered: {} launch: - /BioShock 2 Remastered.app: + "/BioShock 2 Remastered.app": - when: - os: mac store: steam - /Build/Final/Bioshock2HD.exe: + "/Build/Final/Bioshock2HD.exe": - when: - os: windows store: steam - workingDir: /Build/Final + workingDir: "/Build/Final" steam: id: 409720 BioShock Infinite: files: - /userdata//8870: + "/userdata//8870": tags: - save when: - store: steam - /My Games/BioShock Infinite/XGame/Config: + "/My Games/BioShock Infinite/XGame/Config": tags: - config when: - os: windows - /My Games/BioShock Infinite/XGame/SaveData: + "/My Games/BioShock Infinite/XGame/SaveData": tags: - save when: - os: windows - /irrationalgames/bioshockinfinite/GameDocuments/My Games/BioShock Infinite: + "/irrationalgames/bioshockinfinite/GameDocuments/My Games/BioShock Infinite": tags: - config when: @@ -61763,19 +61938,19 @@ BioShock Infinite: installDir: BioShock Infinite: {} launch: - /Binaries/Win32/Benchmark.bat: + "/Binaries/Win32/Benchmark.bat": - when: - os: windows store: steam - /Binaries/Win32/BioShockInfinite.exe: + "/Binaries/Win32/BioShockInfinite.exe": - when: - os: windows store: steam - /BioShock3.app: + "/BioShock3.app": - when: - os: mac store: steam - /bioshock: + "/bioshock": - when: - os: linux store: steam @@ -61783,27 +61958,27 @@ BioShock Infinite: id: 8870 BioShock Remastered: files: - /Library/Application Support/Feral Interactive/BioShock Remastered/VFS/User/AppData/Roaming/BioshockHD/Bioshock: + "/Library/Application Support/Feral Interactive/BioShock Remastered/VFS/User/AppData/Roaming/BioshockHD/Bioshock": tags: - config when: - os: mac - /Bioshock Epic HD/Bioshock/*.ini: - tags: - - config - when: - - store: epic - /BioshockHD/Bioshock/*.ini: + "/Bioshock Epic HD/Bioshock/*.ini": tags: - config when: - os: windows - /Bioshock Epic HD/Bioshock//SaveGames: + "/BioshockHD/Bioshock/*.ini": + tags: + - config + when: + - os: windows + "/Bioshock Epic HD/Bioshock//SaveGames": tags: - save when: - - store: epic - /BioshockHD/Bioshock/SaveGames: + - os: windows + "/BioshockHD/Bioshock/SaveGames": tags: - save when: @@ -61813,15 +61988,15 @@ BioShock Remastered: installDir: BioShock Remastered: {} launch: - /BioShock Remastered.app: + "/BioShock Remastered.app": - when: - os: mac store: steam - /Build/Final/BioshockHD.exe: + "/Build/Final/BioshockHD.exe": - when: - os: windows store: steam - workingDir: /Build/Final + workingDir: "/Build/Final" steam: id: 409710 Biodigital: @@ -61833,15 +62008,15 @@ Biodrone Battle: installDir: Biodrone Battle: {} launch: - /BiodroneBattle.app: + "/BiodroneBattle.app": - when: - os: mac store: steam - /bdb.exe: + "/bdb.exe": - when: - os: windows store: steam - /bdb.sh: + "/bdb.sh": - when: - os: linux store: steam @@ -61849,7 +62024,7 @@ Biodrone Battle: id: 377290 Biohazard 2 (Sourcenext): files: - /savedata: + "/savedata": tags: - save when: @@ -61858,14 +62033,14 @@ Biohazard 2 (Sourcenext): HKEY_LOCAL_MACHINE/Software/Capcom/Biohazard 2: tags: - config -'Biohazard 3: Last Escape (Sourcenext)': +"Biohazard 3: Last Escape (Sourcenext)": files: - /bio3.ini: + "/bio3.ini": tags: - config when: - os: windows - /savedata: + "/savedata": tags: - save when: @@ -61874,11 +62049,11 @@ Biolab Wars: installDir: Biolab Wars: {} launch: - /Biolab Wars.app: + "/Biolab Wars.app": - when: - os: mac store: steam - /Biolab Wars.x86_64: + "/Biolab Wars.x86_64": - when: - os: linux store: steam @@ -61888,7 +62063,7 @@ Biology Battle: installDir: Biology Battle: {} launch: - /BiologyBattle.exe: + "/BiologyBattle.exe": - when: - os: windows store: steam @@ -61898,7 +62073,7 @@ Biomagnet: installDir: my_steamworks: {} launch: - /CustomGravityProject.exe: + "/CustomGravityProject.exe": - when: - bit: 64 os: windows @@ -61909,7 +62084,7 @@ Biomass: installDir: Biomass: {} launch: - /Biomass.exe: + "/Biomass.exe": - when: - os: windows store: steam @@ -61917,12 +62092,12 @@ Biomass: id: 1138960 Biomutant: files: - /Biomutant/Saved/Config/WindowsNoEditor: + "/Biomutant/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /Biomutant/Saved/SaveGames: + "/Biomutant/Saved/SaveGames": tags: - save when: @@ -61940,7 +62115,7 @@ Biomydra: installDir: Biomydra: {} launch: - /Biomydra.exe: + "/Biomydra.exe": - when: - os: windows store: steam @@ -61950,15 +62125,15 @@ Bionic Attack: installDir: Bionic Attack: {} launch: - /Bionic Attack.app/Contents/MacOS/Bionic Attack: + "/Bionic Attack.app/Contents/MacOS/Bionic Attack": - when: - os: mac store: steam - /bionicattack: + "/bionicattack": - when: - os: linux store: steam - /bionicattack.exe: + "/bionicattack.exe": - when: - os: windows store: steam @@ -61966,7 +62141,7 @@ Bionic Attack: id: 632380 Bionic Battle Mutants: files: - /My Games/bbm/saves: + "/My Games/bbm/saves": tags: - save when: @@ -61974,7 +62149,7 @@ Bionic Battle Mutants: installDir: Bionic Battle Mutants: {} launch: - /BBM.exe: + "/BBM.exe": - when: - os: windows store: steam @@ -61982,22 +62157,22 @@ Bionic Battle Mutants: id: 625820 Bionic Commando (2009): files: - /data/settings: + "/data/settings": tags: - config when: - store: steam - /userdata//21670: + "/userdata//21670": tags: - save when: - store: steam - /BC/data/settings: + "/BC/data/settings": tags: - config when: - os: windows - /BC/saves: + "/BC/saves": tags: - save when: @@ -62005,19 +62180,19 @@ Bionic Commando (2009): installDir: Bionic Commando: {} launch: - /bionic_commando.exe: + "/bionic_commando.exe": - when: - store: steam steam: id: 21670 Bionic Commando Rearmed: files: - /data/settings/renderer_settings.xml: + "/data/settings/renderer_settings.xml": tags: - config when: - os: windows - /saves/save0.sav: + "/saves/save0.sav": tags: - save when: @@ -62025,30 +62200,30 @@ Bionic Commando Rearmed: installDir: Bionic Commando Rearmed: {} launch: - /bcr.exe: + "/bcr.exe": - when: - store: steam steam: id: 21680 Bionic Dues: files: - /RuntimeData/Save: + "/RuntimeData/Save": tags: - save when: - os: windows - os: mac - /RuntimeData/settings.dat: + "/RuntimeData/settings.dat": tags: - config when: - os: windows - '/.config/Arcen Games, LLC/Bionic Dues': + "/.config/Arcen Games, LLC/Bionic Dues": tags: - config when: - os: linux - '/Library/Preferences/unity.Arcen Games, LLC.Bionic Dues.plist': + "/Library/Preferences/unity.Arcen Games, LLC.Bionic Dues.plist": tags: - config when: @@ -62058,26 +62233,26 @@ Bionic Dues: installDir: Bionic_Dues: {} launch: - /Bionic.app: + "/Bionic.app": - when: - os: mac store: steam - /Bionic.exe: + "/Bionic.exe": - when: - os: windows store: steam - /BionicLinux.x86: + "/BionicLinux.x86": - when: - bit: 32 os: linux store: steam - /BionicLinux.x86_64: + "/BionicLinux.x86_64": - when: - bit: 64 os: linux store: steam registry: - 'HKEY_CURRENT_USER/SOFTWARE/Arcen Games, LLC/Bionic Dues': + "HKEY_CURRENT_USER/SOFTWARE/Arcen Games, LLC/Bionic Dues": tags: - config steam: @@ -62086,15 +62261,15 @@ Bionic Heart: installDir: Bionic Heart: {} launch: - /Bionic Heart.app: + "/Bionic Heart.app": - when: - os: mac store: steam - /Bionic Heart.exe: + "/Bionic Heart.exe": - when: - os: windows store: steam - /Bionic Heart.sh: + "/Bionic Heart.sh": - when: - os: linux store: steam @@ -62102,22 +62277,22 @@ Bionic Heart: id: 314200 Bionic Heart 2: files: - /game/saves/*.save: + "/game/saves/*.save": tags: - save when: - os: windows - /game/saves/persistent: + "/game/saves/persistent": tags: - config when: - os: windows - /RenPy/Bionic_Heart_2/*.save: + "/RenPy/Bionic_Heart_2/*.save": tags: - save when: - os: windows - /RenPy/Bionic_Heart_2/persistent: + "/RenPy/Bionic_Heart_2/persistent": tags: - config when: @@ -62125,15 +62300,15 @@ Bionic Heart 2: installDir: Bionic Heart 2: {} launch: - /Bionic Heart 2.app: + "/Bionic Heart 2.app": - when: - os: mac store: steam - /Bionic Heart 2.exe: + "/Bionic Heart 2.exe": - when: - os: windows store: steam - /Bionic Heart 2.sh: + "/Bionic Heart 2.sh": - when: - os: linux store: steam @@ -62148,36 +62323,36 @@ BionicBlitz: installDir: BionicBlitz: {} launch: - /BBFinal.exe: + "/BBFinal.exe": - when: - store: steam steam: id: 1029020 Bionicle Heroes: files: - /EIDOS/BIONICLE Heroes: + "/EIDOS/BIONICLE Heroes": tags: - config - save when: - os: windows -'Bionicle: The Game': +"Bionicle: The Game": files: - /LEGO Interactive/Bionicle/Configuration: + "/LEGO Interactive/Bionicle/Configuration": tags: - save when: - os: windows - /LEGO Interactive/Bionicle/Saved Games: + "/LEGO Interactive/Bionicle/Saved Games": tags: - config when: - os: windows -'Bionite: Origins': +"Bionite: Origins": installDir: Bionite_Origins: {} launch: - /Bionite0010.exe: + "/Bionite0010.exe": - when: - os: windows store: steam @@ -62187,11 +62362,11 @@ Biorhythm: installDir: biorhythm: {} launch: - /biorhythm.app/Contents/MacOS/biorhythm: + "/biorhythm.app/Contents/MacOS/biorhythm": - when: - os: mac store: steam - /biorhythm.exe: + "/biorhythm.exe": - when: - os: windows store: steam @@ -62201,15 +62376,15 @@ Bios Ex - Yami no Wakusei: installDir: Bios Ex: {} launch: - /BiosEX-0.9.20-linux/BiosEx.sh: + "/BiosEX-0.9.20-linux/BiosEx.sh": - when: - os: linux store: steam - /BiosEx.app/Contents/MacOS/BiosEx: + "/BiosEx.app/Contents/MacOS/BiosEx": - when: - os: mac store: steam - /BiosEx.exe: + "/BiosEx.exe": - when: - os: windows store: steam @@ -62219,23 +62394,23 @@ Biosupremacy: installDir: Biosupremacy: {} launch: - /mac_content/Biosupremacy.app: + "/mac_content/Biosupremacy.app": - when: - bit: 64 os: mac store: steam - /windows_content/Biosupremacy.exe: + "/windows_content/Biosupremacy.exe": - when: - bit: 64 os: windows store: steam steam: id: 579870 -'Biotix: Phage Genesis': +"Biotix: Phage Genesis": installDir: Biotix Phage Genesis: {} launch: - /Biotix.exe: + "/Biotix.exe": - when: - os: windows store: steam @@ -62245,27 +62420,27 @@ Biotope: installDir: Biotope: {} launch: - /bin/client-32.exe: + "/bin/client-32.exe": - when: - bit: 32 os: windows store: steam - /bin/client.app/Contents/MacOS/client: + "/bin/client.app/Contents/MacOS/client": - when: - os: mac store: steam - /bin/client.exe: + "/bin/client.exe": - when: - bit: 64 os: windows store: steam steam: id: 549040 -'Biotoxin: The Dark Days': +"Biotoxin: The Dark Days": installDir: Biotoxin The Dark Days: {} launch: - /BIOTOXIN-The Dark Days.exe: + "/BIOTOXIN-The Dark Days.exe": - when: - os: windows store: steam @@ -62273,12 +62448,12 @@ Biotope: id: 601870 Biped: files: - /AppData/LocalLow/NExTStudios/Biped: + "/AppData/LocalLow/NExTStudios/Biped": tags: - config when: - os: windows - /AppData/LocalLow/PostmetaGamesLimited/Biped: + "/AppData/LocalLow/PostmetaGamesLimited/Biped": tags: - save when: @@ -62288,7 +62463,7 @@ Biped: installDir: Biped: {} launch: - /Biped.exe: + "/Biped.exe": - when: - os: windows store: steam @@ -62298,7 +62473,7 @@ Biplane Racer: installDir: Biplane Racer: {} launch: - /Biplane Racer.exe: + "/Biplane Racer.exe": - when: - store: steam steam: @@ -62307,7 +62482,7 @@ Bipolar Game: installDir: Bipolar Game: {} launch: - /Bipolar.exe: + "/Bipolar.exe": - when: - os: windows store: steam @@ -62317,16 +62492,16 @@ Birchian Flight Simulator: installDir: Birchian Flight Simulator: {} launch: - /BFS.app: + "/BFS.app": - when: - os: mac store: steam - /BFS.exe: + "/BFS.exe": - when: - bit: 64 os: windows store: steam - /BFSLINUX/BFSLINUX.x86_64: + "/BFSLINUX/BFSLINUX.x86_64": - when: - bit: 64 os: linux @@ -62335,12 +62510,12 @@ Birchian Flight Simulator: id: 1007950 Bird Assassin: files: - /SavedGames/Bird Assassin/Bird Assassin Data/AllPlayers/Game*.dat: + "/SavedGames/Bird Assassin/Bird Assassin Data/AllPlayers/Game*.dat": tags: - save when: - os: windows - /SavedGames/Bird Assassin/Bird Assassin Data/AllPlayers/Options.dat: + "/SavedGames/Bird Assassin/Bird Assassin Data/AllPlayers/Options.dat": tags: - config when: @@ -62348,7 +62523,7 @@ Bird Assassin: installDir: Bird Assassin: {} launch: - /Bird Assassin.exe: + "/Bird Assassin.exe": - when: - os: windows store: steam @@ -62358,15 +62533,15 @@ Bird Game: installDir: Bird Game: {} launch: - /birdgame.app: + "/birdgame.app": - when: - os: mac store: steam - /birdgame.exe: + "/birdgame.exe": - when: - os: windows store: steam - /birdgame.x86: + "/birdgame.x86": - when: - os: linux store: steam @@ -62379,7 +62554,7 @@ Bird Simulator: installDir: Bird Simulator: {} launch: - /Bird Simulator.exe: + "/Bird Simulator.exe": - when: - os: windows store: steam @@ -62389,7 +62564,7 @@ Bird Watcher: installDir: Bird Watcher: {} launch: - /BirdWatcher.exe: + "/BirdWatcher.exe": - when: - os: windows store: steam @@ -62402,7 +62577,7 @@ Bird of Light: installDir: Bird of Light: {} launch: - /bird_of_light.exe: + "/bird_of_light.exe": - when: - os: windows store: steam @@ -62412,12 +62587,12 @@ BirdGut: installDir: BirdGut: {} launch: - /BirdGut.exe: + "/BirdGut.exe": - when: - bit: 64 os: windows store: steam - /Mac_build.app/Contents/MacOS/Mac_build: + "/Mac_build.app/Contents/MacOS/Mac_build": - when: - os: mac store: steam @@ -62431,7 +62606,7 @@ Birdcakes: installDir: Birdcakes: {} launch: - /Birdcakes.exe: + "/Birdcakes.exe": - when: - store: steam steam: @@ -62443,15 +62618,15 @@ Birdsketball: installDir: Birdsketball: {} launch: - /Birdsketball: + "/Birdsketball": - when: - os: linux store: steam - /Birdsketball.app/Contents/MacOS/Birdsketball: + "/Birdsketball.app/Contents/MacOS/Birdsketball": - when: - os: mac store: steam - /Birdsketball.exe: + "/Birdsketball.exe": - when: - os: windows store: steam @@ -62466,7 +62641,7 @@ Birth of Shadows: installDir: Birth of Shadows: {} launch: - /BirthOfShadows.exe: + "/BirthOfShadows.exe": - when: - os: windows store: steam @@ -62474,12 +62649,12 @@ Birth of Shadows: id: 401170 Birth of a Hunter: files: - /BoaH/RECORDS_DATA.BoaH: + "/BoaH/RECORDS_DATA.BoaH": tags: - save when: - os: windows - /BoaH/SETTINGS_DATA.BoaH: + "/BoaH/SETTINGS_DATA.BoaH": tags: - config when: @@ -62487,7 +62662,7 @@ Birth of a Hunter: installDir: Birth of a Hunter: {} launch: - /BoaH.exe: + "/BoaH.exe": - when: - os: windows store: steam @@ -62500,32 +62675,32 @@ Birthdays the Beginning: installDir: Birthdays the Beginning: {} launch: - /game.exe: + "/game.exe": - when: - bit: 64 os: windows store: steam steam: id: 525700 -'Birthright: The Gorgon''s Alliance': +"Birthright: The Gorgon's Alliance": files: - /GAMEOPT.DAT: + "/GAMEOPT.DAT": tags: - config when: - os: dos - /MP.cfg: + "/MP.cfg": tags: - config when: - os: windows - /SAVEGAME: + "/SAVEGAME": tags: - save when: - os: dos - os: windows - /gameopt.dat: + "/gameopt.dat": tags: - config when: @@ -62534,7 +62709,7 @@ Birthseederia: installDir: Birthseederia: {} launch: - /birthseederia.exe: + "/birthseederia.exe": - when: - os: windows store: steam @@ -62544,7 +62719,7 @@ Bishi and the Alien Slime Invasion!: installDir: Bishi and the Alien Slime Invasion: {} launch: - /BishiAndTheAlienSlimeInvasion.exe: + "/BishiAndTheAlienSlimeInvasion.exe": - when: - os: windows store: steam @@ -62552,12 +62727,12 @@ Bishi and the Alien Slime Invasion!: id: 834930 Bit Blaster XL: files: - /.config/unity3d/Nickervision Studios/Bit Blaster XL/prefs: + "/.config/unity3d/Nickervision Studios/Bit Blaster XL/prefs": tags: - save when: - os: linux - /Library/Preferences/unity.Nickervision Studios.Bit Blaster XL.plist: + "/Library/Preferences/unity.Nickervision Studios.Bit Blaster XL.plist": tags: - save when: @@ -62565,21 +62740,24 @@ Bit Blaster XL: installDir: Bit Blaster XL: {} launch: - /BitBlasterXL.app: + "/BitBlasterXL.app": - when: - os: mac store: steam - /BitBlasterXL.exe: + "/BitBlasterXL.exe": - when: - bit: 32 os: windows store: steam - /BitBlasterXL.x86: + - bit: 64 + os: windows + store: steam + "/BitBlasterXL.x86": - when: - bit: 32 os: linux store: steam - /BitBlasterXL.x86_64: + "/BitBlasterXL.x86_64": - when: - bit: 64 os: linux @@ -62594,7 +62772,7 @@ Bit Bullet: installDir: Bit Bullet: {} launch: - /Game.exe: + "/Game.exe": - when: - bit: 64 os: windows @@ -62605,7 +62783,7 @@ Bit Dungeon: installDir: bit Dungeon: {} launch: - /bitDungeon.exe: + "/bitDungeon.exe": - when: - os: windows store: steam @@ -62615,11 +62793,11 @@ Bit Dungeon II: installDir: bit Dungeon II: {} launch: - /bitDungeonII.app: + "/bitDungeonII.app": - when: - os: mac store: steam - /bitDungeonII.exe: + "/bitDungeonII.exe": - when: - os: windows store: steam @@ -62629,7 +62807,7 @@ Bit Dungeon III: installDir: bit Dungeon III: {} launch: - /bd3.exe: + "/bd3.exe": - when: - store: steam steam: @@ -62638,11 +62816,11 @@ Bit Dungeon+: installDir: bit Dungeon+: {} launch: - /BitDungeonPlus.app/Contents/MacOS/BitDungeonPlus: + "/BitDungeonPlus.app/Contents/MacOS/BitDungeonPlus": - when: - os: mac store: steam - /BitDungeonPlus.exe: + "/BitDungeonPlus.exe": - when: - os: windows store: steam @@ -62652,11 +62830,11 @@ Bit Heroes: installDir: Bit Heroes: {} launch: - /Bit Heroes.app/Contents/MacOS/Bit Heroes: + "/Bit Heroes.app/Contents/MacOS/Bit Heroes": - when: - os: mac store: steam - /Bit Heroes.exe: + "/Bit Heroes.exe": - when: - os: windows store: steam @@ -62666,7 +62844,7 @@ Bit Odyssey: installDir: Bit Odyssey: {} launch: - /Bit Odyssey.exe: + "/Bit Odyssey.exe": - when: - store: steam steam: @@ -62675,17 +62853,17 @@ Bit Shifter: installDir: Bit Shifter: {} launch: - /BitShifter.exe: + "/BitShifter.exe": - when: - os: windows store: steam - /bitshifter.sh: + "/bitshifter.sh": - when: - os: linux store: steam steam: id: 393170 -'Bit Storm VR: First Loop': +"Bit Storm VR: First Loop": installDir: Bit Storm VR First Loop: {} steam: @@ -62694,26 +62872,27 @@ Bit-Boom: installDir: Bit-Boom: {} launch: - /Start.exe: + "/Start.exe": - when: - store: steam steam: id: 796480 Bit.Trip Beat: files: - /.gaijin_games/bit.trip.beat: + "/.gaijin_games/bit.trip.beat": tags: - config - save when: - os: linux - /BIT.TRIP BEAT: + "/BIT.TRIP BEAT": tags: - config - save when: - - store: steam - /Gaijin Games/BIT.TRIP BEAT: + - os: windows + store: steam + "/Gaijin Games/BIT.TRIP BEAT": tags: - config - save @@ -62724,11 +62903,11 @@ Bit.Trip Beat: installDir: BIT.TRIP BEAT: {} launch: - /BIT.TRIP.BEAT.app: + "/BIT.TRIP.BEAT.app": - when: - os: mac store: steam - /beat.exe: + "/beat.exe": - when: - os: windows store: steam @@ -62736,7 +62915,7 @@ Bit.Trip Beat: id: 63700 Bit.Trip Core: files: - /BIT.TRIP CORE: + "/BIT.TRIP CORE": tags: - config - save @@ -62747,11 +62926,11 @@ Bit.Trip Core: installDir: BIT.TRIP CORE: {} launch: - /BIT.TRIP CORE.exe: + "/BIT.TRIP CORE.exe": - when: - os: windows store: steam - /BIT.TRIP.CORE.app: + "/BIT.TRIP.CORE.app": - when: - os: mac store: steam @@ -62759,7 +62938,7 @@ Bit.Trip Core: id: 205060 Bit.Trip Fate: files: - /Gaijin Games/BIT.TRIP FATE: + "/Gaijin Games/BIT.TRIP FATE": tags: - config - save @@ -62770,11 +62949,11 @@ Bit.Trip Fate: installDir: BIT.TRIP FATE: {} launch: - /BIT.TRIP FATE.exe: + "/BIT.TRIP FATE.exe": - when: - os: windows store: steam - /BIT.TRIP.FATE.app: + "/BIT.TRIP.FATE.app": - when: - os: mac store: steam @@ -62793,41 +62972,41 @@ Bit.Trip Flux: installDir: bit_trip_flux: {} launch: - /BIT.TRIP FLUX.exe: + "/BIT.TRIP FLUX.exe": - when: - os: windows store: steam - /BIT.TRIP.FLUX.app: + "/BIT.TRIP.FLUX.app": - when: - os: mac store: steam steam: id: 205090 -'Bit.Trip Presents... Runner2: Future Legend of Rhythm Alien': +"Bit.Trip Presents... Runner2: Future Legend of Rhythm Alien": files: - /.config/gaijin_games/runner2: + "/.config/gaijin_games/runner2": tags: - config when: - os: linux - /Library/Application Support/Gaijin Games/Runner2: + "/Library/Application Support/Gaijin Games/Runner2": tags: - config - save when: - os: mac - /userdata//218060/remote: + "/userdata//218060/remote": tags: - save when: - store: steam - /Gaijin Games/Runner2: + "/Gaijin Games/Runner2": tags: - config - save when: - os: windows - /gaijin_games/runner2: + "/gaijin_games/runner2": tags: - save when: @@ -62837,15 +63016,15 @@ Bit.Trip Flux: installDir: bittriprunner2: {} launch: - /Runner2.app/Contents/MacOS/Runner2: + "/Runner2.app/Contents/MacOS/Runner2": - when: - os: mac store: steam - /runner2: + "/runner2": - when: - os: linux store: steam - /runner2.exe: + "/runner2.exe": - when: - os: windows store: steam @@ -62853,36 +63032,36 @@ Bit.Trip Flux: id: 218060 Bit.Trip Runner: files: - /.gaijin_games/bit.trip.runner: + "/.gaijin_games/bit.trip.runner": tags: - config - save when: - os: linux - /Documents/BIT.TRIP RUNNER/game.cfg: + "/Documents/BIT.TRIP RUNNER/game.cfg": tags: - config - save when: - os: mac - /Library/Application Support/BIT.TRIP RUNNER: + "/Library/Application Support/BIT.TRIP RUNNER": tags: - config - save when: - os: mac - /userdata//63710: + "/userdata//63710": tags: - save when: - os: windows store: steam - /userdata//63710/remote: + "/userdata//63710/remote": tags: - config when: - store: steam - /BIT.TRIP RUNNER: + "/BIT.TRIP RUNNER": tags: - config when: @@ -62892,11 +63071,11 @@ Bit.Trip Runner: installDir: BIT.TRIP RUNNER: {} launch: - /BIT.TRIP.RUNNER.app: + "/BIT.TRIP.RUNNER.app": - when: - os: mac store: steam - /runner.exe: + "/runner.exe": - when: - os: windows store: steam @@ -62904,7 +63083,7 @@ Bit.Trip Runner: id: 63710 Bit.Trip Void: files: - /BIT.TRIP VOID: + "/BIT.TRIP VOID": tags: - config - save @@ -62915,11 +63094,11 @@ Bit.Trip Void: installDir: BIT.TRIP VOID: {} launch: - /BIT.TRIP VOID.exe: + "/BIT.TRIP VOID.exe": - when: - os: windows store: steam - /BIT.TRIP.VOID.app: + "/BIT.TRIP.VOID.app": - when: - os: mac store: steam @@ -62929,20 +63108,20 @@ BitBreaker: installDir: BitBreaker: {} launch: - /BitBreaker.app/Contents/MacOS/BitBreaker: + "/BitBreaker.app/Contents/MacOS/BitBreaker": - when: - os: mac store: steam - /BitBreaker.exe: + "/BitBreaker.exe": - when: - os: windows store: steam - /BitBreaker.x86: + "/BitBreaker.x86": - when: - bit: 32 os: linux store: steam - /BitBreaker.x86_64: + "/BitBreaker.x86_64": - when: - bit: 64 os: linux @@ -62953,16 +63132,19 @@ BitMaster: installDir: BitMaster: {} launch: - /Bitmaster.app: + "/Bitmaster.app": - when: - os: mac store: steam - /Bitmaster.exe: + "/Bitmaster.exe": - when: - bit: 32 os: windows store: steam - /Bitmaster.sh: + - bit: 64 + os: windows + store: steam + "/Bitmaster.sh": - when: - bit: 64 os: linux @@ -62975,11 +63157,11 @@ BitRay: BitRay2: steam: id: 512450 -'BitShift: BattleGrid': +"BitShift: BattleGrid": installDir: BitShift_BattleGrid: {} launch: - /BitShiftBattleGrid.exe: + "/BitShiftBattleGrid.exe": - when: - store: steam steam: @@ -62988,33 +63170,33 @@ Bitardia: installDir: Bitardia: {} launch: - /Bitardia.app/Contents/MacOS/Bitardia: + "/Bitardia.app/Contents/MacOS/Bitardia": - when: - os: mac store: steam - /Bitardia.exe: + "/Bitardia.exe": - when: - os: windows store: steam - /Bitardia.x86_64: + "/Bitardia.x86_64": - when: - os: linux store: steam steam: id: 405010 -'Bitardia Cards: Memes of 2ch': +"Bitardia Cards: Memes of 2ch": installDir: Bitardia Cards Memes of 2ch: {} launch: - /Bitardia Cards.app/Contents/MacOS/Bitardia Cards: + "/Bitardia Cards.app/Contents/MacOS/Bitardia Cards": - when: - os: mac store: steam - /Bitardia Cards.exe: + "/Bitardia Cards.exe": - when: - os: windows store: steam - /Bitardia Cards.x86: + "/Bitardia Cards.x86": - when: - os: linux store: steam @@ -63024,7 +63206,7 @@ Bitburner: installDir: Bitburner: {} launch: - /bitburner.app: + "/bitburner.app": - when: - os: mac store: steam @@ -63034,7 +63216,7 @@ Bitcoin: installDir: Bitcoin: {} launch: - /Bitcoin.exe: + "/Bitcoin.exe": - when: - store: steam steam: @@ -63044,7 +63226,7 @@ Bitcoin Clicker: id: 716110 Bitcoin Collector: files: - /.: + "/.": tags: - save when: @@ -63052,17 +63234,17 @@ Bitcoin Collector: installDir: Bitcoin Collector: {} launch: - /Bitcoin Collector.exe: + "/Bitcoin Collector.exe": - when: - os: windows store: steam steam: id: 704190 -'Bitcoin Collector: Spinners Attack': +"Bitcoin Collector: Spinners Attack": installDir: Bitcoin Collector Spinners Attack: {} launch: - /Bitcoin Collector Spinners Attack.exe: + "/Bitcoin Collector Spinners Attack.exe": - when: - os: windows store: steam @@ -63072,7 +63254,7 @@ Bitcoin Farm: installDir: Bitcoin Farm: {} launch: - /Bitcoin Farm.exe: + "/Bitcoin Farm.exe": - when: - store: steam steam: @@ -63096,7 +63278,7 @@ Bitcoin Mining Tycoon: installDir: Bitcoin Mining Tycoon: {} launch: - /BitcoinMiningTycoon.exe: + "/BitcoinMiningTycoon.exe": - when: - os: windows store: steam @@ -63106,7 +63288,7 @@ Bitcoin Trader: installDir: Bitcoin Trader: {} launch: - /BitcoinTrader.exe: + "/BitcoinTrader.exe": - when: - store: steam steam: @@ -63115,7 +63297,7 @@ Bitcoin Trading Master: installDir: Bitcoin Trading Master: {} launch: - /SimulationTrade.exe: + "/SimulationTrade.exe": - when: - os: windows store: steam @@ -63125,7 +63307,7 @@ Bitcoin Tycoon - Mining Simulation Game: installDir: Bitcoin Tycoon - Mining Simulation Game: {} launch: - /BitcoinTycoon.exe: + "/BitcoinTycoon.exe": - when: - os: windows store: steam @@ -63140,7 +63322,7 @@ Bitcoin or Bomb?: installDir: Bitcoin Or Bomb: {} launch: - /BOB.exe: + "/BOB.exe": - when: - os: windows store: steam @@ -63150,7 +63332,7 @@ Bitcoin vs Brain: installDir: Bitcoin VS Brain: {} launch: - /MozgiBit.exe: + "/MozgiBit.exe": - when: - store: steam steam: @@ -63166,15 +63348,15 @@ Bite the Bullet: installDir: Bite the Bullet: {} launch: - /Bite the Bullet.exe: + "/Bite the Bullet.exe": - when: - os: windows store: steam - /BiteTheBullet.app/Contents/MacOS/Mac: + "/BiteTheBullet.app/Contents/MacOS/Mac": - when: - os: mac store: steam - /BitetheBullet.x86_64: + "/BitetheBullet.x86_64": - when: - os: linux store: steam @@ -63184,11 +63366,11 @@ Bitku: installDir: Bitku: {} launch: - /Bitku.app: + "/Bitku.app": - when: - os: mac store: steam - /Bitku.exe: + "/Bitku.exe": - when: - os: windows store: steam @@ -63198,7 +63380,7 @@ Bitlogic: installDir: Bitlogic: {} launch: - /Bitlogic.exe: + "/Bitlogic.exe": - when: - os: windows store: steam @@ -63218,7 +63400,7 @@ Bitsy Bits: installDir: Bitsy_Bits_windows: {} launch: - /Bitsy Bits.exe: + "/Bitsy Bits.exe": - when: - os: windows store: steam @@ -63231,11 +63413,11 @@ Bitweb: installDir: Bitweb: {} launch: - /Bitweb: + "/Bitweb": - when: - os: linux store: steam - /Bitweb.exe: + "/Bitweb.exe": - when: - os: windows store: steam @@ -63245,15 +63427,15 @@ Bitworm: installDir: Bitworm: {} launch: - /Bitworm.app: + "/Bitworm.app": - when: - os: mac store: steam - /Bitworm.exe: + "/Bitworm.exe": - when: - os: windows store: steam - /Bitworm.x86: + "/Bitworm.x86": - when: - bit: 32 os: linux @@ -63264,7 +63446,7 @@ Bizango Blast: installDir: Bizango Blast: {} launch: - /BizangoBlast.exe: + "/BizangoBlast.exe": - when: - bit: 64 os: windows @@ -63280,7 +63462,7 @@ Bizarre Earthquake: installDir: Bizarre Earthquake: {} launch: - /bizarre.exe: + "/bizarre.exe": - when: - os: windows store: steam @@ -63290,7 +63472,7 @@ Bizarre Tale: installDir: Bizarre Tale: {} launch: - /Bizarre Tale.exe: + "/Bizarre Tale.exe": - when: - os: windows store: steam @@ -63298,7 +63480,7 @@ Bizarre Tale: id: 759180 Björk Vulnicura Virtual Reality Album: files: - /AppData/LocalLow/Analog/BjorkVulnicura: + "/AppData/LocalLow/Analog/BjorkVulnicura": tags: - config - save @@ -63310,7 +63492,7 @@ Björk Vulnicura Virtual Reality Album: id: 1095710 Black & White: files: - /Profiles/: + "/Profiles/": tags: - save when: @@ -63324,12 +63506,12 @@ Black & White: - save Black & White 2: files: - /Black & White 2/Profiles: + "/Black & White 2/Profiles": tags: - save when: - os: windows - /Black & White 2/Settings.ini: + "/Black & White 2/Settings.ini": tags: - config when: @@ -63338,11 +63520,11 @@ Black & White Bushido: installDir: Black & White Bushido: {} launch: - /BWBushido.app/Contents/MacOS/BWBushido: + "/BWBushido.app/Contents/MacOS/BWBushido": - when: - os: mac store: steam - /BWBushido.exe: + "/BWBushido.exe": - when: - os: windows store: steam @@ -63355,7 +63537,7 @@ Black Baron: installDir: Black Baron: {} launch: - /Black Baron.exe: + "/Black Baron.exe": - when: - store: steam steam: @@ -63367,11 +63549,11 @@ Black Bird: installDir: BlackBird: {} launch: - /BLACKBIRD.app: + "/BLACKBIRD.app": - when: - os: mac store: steam - /BLACKBIRD.exe: + "/BLACKBIRD.exe": - when: - os: windows store: steam @@ -63379,12 +63561,12 @@ Black Bird: id: 857500 Black Book: files: - /AppData/LocalLow/Morteshka/Black Book/Saves/savefile: + "/AppData/LocalLow/Morteshka/Black Book/Saves/savefile": tags: - save when: - os: windows - /AppData/LocalLow/Morteshka/Black Book/Saves/settings_savefile: + "/AppData/LocalLow/Morteshka/Black Book/Saves/settings_savefile": tags: - config when: @@ -63403,11 +63585,11 @@ Black Book: installDir: Black Book: {} launch: - /Black Book.app: + "/Black Book.app": - when: - os: mac store: steam - /Black Book.exe: + "/Black Book.exe": - when: - os: windows store: steam @@ -63421,7 +63603,7 @@ Black Box Alpha: installDir: BBA: {} launch: - /BBA.exe: + "/BBA.exe": - when: - bit: 64 os: windows @@ -63435,7 +63617,7 @@ Black Chapter: installDir: Black Chapter: {} launch: - /BlackChapter.exe: + "/BlackChapter.exe": - when: - store: steam steam: @@ -63444,7 +63626,7 @@ Black Circle: installDir: Black Circle: {} launch: - /Black Circle.exe: + "/Black Circle.exe": - when: - store: steam steam: @@ -63453,25 +63635,25 @@ Black Closet: installDir: Black Closet: {} launch: - /BlackCloset.app: + "/BlackCloset.app": - when: - os: mac store: steam - /BlackCloset.exe: + "/BlackCloset.exe": - when: - os: windows store: steam - /BlackCloset.sh: + "/BlackCloset.sh": - when: - os: linux store: steam steam: id: 400580 -'Black Clover: Quartet Knights': +"Black Clover: Quartet Knights": installDir: Black Clover Quartet Knights: {} launch: - /Launch_Game.exe: + "/Launch_Game.exe": - arguments: /useEAC when: - bit: 64 @@ -63486,19 +63668,19 @@ Black Day: installDir: BLACK DAY: {} launch: - /BlackDay.exe: + "/BlackDay.exe": - when: - bit: 64 os: windows store: steam steam: id: 696650 -'Black Death: Divarication': +"Black Death: Divarication": steam: id: 659030 Black Desert: files: - /Black Desert: + "/Black Desert": tags: - config when: @@ -63512,8 +63694,8 @@ Black Desert: installDir: Black Desert Online: {} launch: - /BlackDesertLauncher.exe: - - arguments: '--steam' + "/BlackDesertLauncher.exe": + - arguments: "--steam" when: - os: windows store: steam @@ -63523,7 +63705,7 @@ Black Dream: installDir: Black Dream: {} launch: - /RPG_RT.exe: + "/RPG_RT.exe": - when: - os: windows store: steam @@ -63533,36 +63715,36 @@ Black Forest: installDir: Black Forest: {} launch: - /Black Forest.app/Contents/MacOS/Black Forest: + "/Black Forest.app/Contents/MacOS/Black Forest": - when: - bit: 64 os: mac store: steam - /Black Forest.exe: + "/Black Forest.exe": - when: - bit: 64 os: windows store: steam - /Black Forest.x86_64: + "/Black Forest.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 523070 -'Black Friday: The Game': +"Black Friday: The Game": installDir: Black Friday The Game: {} launch: - /BlackFriday.exe: + "/BlackFriday.exe": - when: - os: windows store: steam steam: id: 712700 -Black Future '88: +"Black Future '88": files: - /AppData/LocalLow/Super Scary Snakes/Black Future '88/settingsData__GOG_bf88_user.xml: + "/AppData/LocalLow/Super Scary Snakes/Black Future '88/settingsData__GOG_bf88_user.xml": tags: - config when: @@ -63570,36 +63752,36 @@ Black Future '88: gog: id: 1159243973 installDir: - Black Future '88: {} + "Black Future '88": {} launch: - /BlackFuture'88.exe: + "/BlackFuture'88.exe": - when: - os: windows store: steam registry: - HKEY_CURRENT_USER/Software/Super Scary Snakes/Black Future '88: + "HKEY_CURRENT_USER/Software/Super Scary Snakes/Black Future '88": tags: - config steam: id: 751820 -'Black Geyser: Couriers of Darkness': +"Black Geyser: Couriers of Darkness": files: - /.config/unity3d/GrapeOcean/BlackGeyser/data: + "/.config/unity3d/GrapeOcean/BlackGeyser/data": tags: - config when: - os: linux - /.config/unity3d/GrapeOcean/BlackGeyser/data/saves: + "/.config/unity3d/GrapeOcean/BlackGeyser/data/saves": tags: - save when: - os: linux - /AppData/LocalLow/GrapeOcean/BlackGeyser/data: + "/AppData/LocalLow/GrapeOcean/BlackGeyser/data": tags: - config when: - os: windows - /AppData/LocalLow/GrapeOcean/BlackGeyser/data/saves: + "/AppData/LocalLow/GrapeOcean/BlackGeyser/data/saves": tags: - save when: @@ -63609,15 +63791,15 @@ Black Future '88: installDir: Black Geyser Couriers of Darkness: {} launch: - /BlackGeyser.app/Contents/MacOS/BlackGeyser: + "/BlackGeyser.app/Contents/MacOS/BlackGeyser": - when: - os: mac store: steam - /BlackGeyser.exe: + "/BlackGeyser.exe": - when: - os: windows store: steam - /BlackGeyser.x86_64: + "/BlackGeyser.x86_64": - when: - os: linux store: steam @@ -63630,7 +63812,7 @@ Black Hat Cooperative: installDir: Black Hat Cooperative: {} launch: - /BlackHatCooperative.exe: + "/BlackHatCooperative.exe": - when: - bit: 64 os: windows @@ -63641,11 +63823,11 @@ Black Hole Hazard: installDir: BLACK HOLE HAZARD: {} launch: - /Black Hole Hazard.app: + "/Black Hole Hazard.app": - when: - os: mac store: steam - /blackholeHazard.exe: + "/blackholeHazard.exe": - when: - os: windows store: steam @@ -63655,7 +63837,7 @@ Black Home: installDir: Black Home: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -63665,14 +63847,14 @@ Black Home 2: installDir: Black Home 2: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: id: 849070 Black Ice: files: - /Black Ice_Data/Saves: + "/Black Ice_Data/Saves": tags: - save when: @@ -63680,15 +63862,15 @@ Black Ice: installDir: Black Ice: {} launch: - /Black Ice.app: + "/Black Ice.app": - when: - os: mac store: steam - /Black Ice.exe: + "/Black Ice.exe": - when: - os: windows store: steam - /Black Ice.x86_64: + "/Black Ice.x86_64": - when: - bit: 64 os: linux @@ -63699,11 +63881,11 @@ Black Island: installDir: Black Island: {} launch: - /Black Island.app: + "/Black Island.app": - when: - os: mac store: steam - /Black Island.exe: + "/Black Island.exe": - when: - os: windows store: steam @@ -63713,26 +63895,26 @@ Black Jack Story: installDir: Black Jack story: {} launch: - /Black Jack Mac OS.app: + "/Black Jack Mac OS.app": - when: - os: mac store: steam - /Black Jack linux/Black Jack story.x86: + "/Black Jack linux/Black Jack story.x86": - when: - bit: 32 os: linux store: steam - /Black Jack linux/Black Jack story.x86_64: + "/Black Jack linux/Black Jack story.x86_64": - when: - bit: 64 os: linux store: steam - /BlackJack 32-bit/Black Jack 32-bit.exe: + "/BlackJack 32-bit/Black Jack 32-bit.exe": - when: - bit: 32 os: windows store: steam - /BlackJack 64-bit/Black Jack 64-bit.exe: + "/BlackJack 64-bit/Black Jack 64-bit.exe": - when: - bit: 64 os: windows @@ -63743,7 +63925,7 @@ Black Jewel: installDir: Black Jewel: {} launch: - /BlackJewel.exe: + "/BlackJewel.exe": - when: - os: windows store: steam @@ -63755,7 +63937,7 @@ Black Legend: installDir: BlackLegend: {} launch: - /blacklegend.exe: + "/blacklegend.exe": - when: - bit: 64 os: windows @@ -63764,7 +63946,7 @@ Black Legend: id: 1094730 Black Mesa: files: - /bms/save: + "/bms/save": tags: - save when: @@ -63772,13 +63954,13 @@ Black Mesa: installDir: Black Mesa: {} launch: - /bms.exe: - - arguments: '-game bms +developer 0 -steam' + "/bms.exe": + - arguments: "-game bms +developer 0 -steam" when: - os: windows store: steam - /bms.sh: - - arguments: '-game bms +developer 0 -steam' + "/bms.sh": + - arguments: "-game bms +developer 0 -steam" when: - os: linux store: steam @@ -63786,12 +63968,12 @@ Black Mesa: id: 362890 Black Mirror: files: - /bm: + "/bm": tags: - save when: - os: windows - /bm/bm-.cfg: + "/bm/bm-.cfg": tags: - config when: @@ -63801,17 +63983,17 @@ Black Mirror: installDir: Black Mirror IV: {} launch: - /BlackMirror: + "/BlackMirror": - when: - bit: 64 os: linux store: steam - /BlackMirror.app: + "/BlackMirror.app": - when: - bit: 64 os: mac store: steam - /BlackMirror.exe: + "/BlackMirror.exe": - when: - bit: 64 os: windows @@ -63824,12 +64006,12 @@ Black Mirror: id: 581300 Black Mirror 2: files: - /BlackMirror2/Savegames: + "/BlackMirror2/Savegames": tags: - save when: - os: windows - /BlackMirror2/config.xml: + "/BlackMirror2/config.xml": tags: - config when: @@ -63839,23 +64021,23 @@ Black Mirror 2: installDir: Black Mirror 2 - Reigning Evil: {} launch: - /BlackMirror2.exe: + "/BlackMirror2.exe": - when: - os: windows store: steam - /Docs/Manual.pdf: + "/Docs/Manual.pdf": - when: - store: steam steam: id: 286460 Black Mirror 3: files: - /BlackMirrorIII/Savegames: + "/BlackMirrorIII/Savegames": tags: - save when: - os: windows - /BlackMirrorIII/config.xml: + "/BlackMirrorIII/config.xml": tags: - config when: @@ -63865,11 +64047,11 @@ Black Mirror 3: installDir: Black Mirror 3 - Final Fear: {} launch: - /BlackMirrorIII.exe: + "/BlackMirrorIII.exe": - when: - os: windows store: steam - /Docs/Manual.pdf: + "/Docs/Manual.pdf": - when: - store: steam steam: @@ -63878,7 +64060,7 @@ Black Mist: installDir: Black Mist: {} launch: - /BlackMist.exe: + "/BlackMist.exe": - when: - os: windows store: steam @@ -63888,7 +64070,7 @@ Black Moon: installDir: Black Moon: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -63896,12 +64078,12 @@ Black Moon: id: 734440 Black Moon Chronicles: files: - /Ini/Configuration.ini: + "/Ini/Configuration.ini": tags: - config when: - os: windows - /Sauvegarde: + "/Sauvegarde": tags: - save when: @@ -63911,7 +64093,7 @@ Black Moon Chronicles: installDir: Black Moon Chronicles: {} launch: - /BlackMoon.exe: + "/BlackMoon.exe": - when: - os: windows store: steam @@ -63923,14 +64105,14 @@ Black My White: Black My White Again: steam: id: 708400 -'Black Myth: Wukong': +"Black Myth: Wukong": steam: id: 2358720 Black Office - Entertainment Department: installDir: Black Office - Entertainment Department: {} launch: - /GAME.exe: + "/GAME.exe": - when: - os: windows store: steam @@ -63946,11 +64128,11 @@ Black Paradox: installDir: Black Paradox: {} launch: - /BlackParadox.app/Contents/MacOS/BlackParadox: + "/BlackParadox.app/Contents/MacOS/BlackParadox": - when: - os: mac store: steam - /BlackParadox.exe: + "/BlackParadox.exe": - when: - os: windows store: steam @@ -63963,15 +64145,15 @@ Black Powder Red Earth: installDir: Black Powder Red Earth®: {} launch: - /8bitwar: + "/8bitwar": - when: - os: linux store: steam - /8bitwar.app/Contents/MacOS/8bitwar: + "/8bitwar.app/Contents/MacOS/8bitwar": - when: - os: mac store: steam - /8bitwar.exe: + "/8bitwar.exe": - when: - os: windows store: steam @@ -63981,12 +64163,12 @@ Black Rainbow: installDir: Black Rainbow: {} launch: - /Black Rainbow.app/Contents/MacOS/blackrainbow: + "/Black Rainbow.app/Contents/MacOS/blackrainbow": - when: - os: mac store: steam - workingDir: /Black Rainbow.app/Contents/MacOS - /blackrainbow.exe: + workingDir: "/Black Rainbow.app/Contents/MacOS" + "/blackrainbow.exe": - when: - os: windows store: steam @@ -63996,7 +64178,7 @@ Black River: installDir: Black River: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: @@ -64005,7 +64187,7 @@ Black Rose: installDir: Black Rose: {} launch: - /Black Rose.exe: + "/Black Rose.exe": - when: - os: windows store: steam @@ -64015,7 +64197,7 @@ Black Roses: installDir: Black Roses: {} launch: - /Black Roses.exe: + "/Black Roses.exe": - when: - os: windows store: steam @@ -64023,12 +64205,12 @@ Black Roses: id: 856560 Black Sails - The Ghost Ship: files: - /BlackSails/save/*.sav: + "/BlackSails/save/*.sav": tags: - save when: - os: windows - /BlackSails/settings-user.ini: + "/BlackSails/settings-user.ini": tags: - config when: @@ -64036,18 +64218,18 @@ Black Sails - The Ghost Ship: installDir: Black Sails: {} launch: - /bin/release/BlackSails.exe: + "/bin/release/BlackSails.exe": - when: - os: windows store: steam - workingDir: /bin/release + workingDir: "/bin/release" steam: id: 373240 Black Salt Coreuption: installDir: Black Salt Coreuption: {} launch: - /Black Salt Coreuption.exe: + "/Black Salt Coreuption.exe": - when: - os: windows store: steam @@ -64057,7 +64239,7 @@ Black Sand Drift: installDir: Black Sand Drift: {} launch: - /BSD.exe: + "/BSD.exe": - when: - os: windows store: steam @@ -64065,13 +64247,13 @@ Black Sand Drift: id: 507380 Black Shades: files: - /Data/Highscore: + "/Data/Highscore": tags: - save when: - os: windows - os: mac - /config.txt: + "/config.txt": tags: - config when: @@ -64079,7 +64261,7 @@ Black Shades: - os: mac Black Skylands: files: - /AppData/LocalLow/HungryCouch/BlackSkylands/Saves: + "/AppData/LocalLow/HungryCouch/BlackSkylands/Saves": tags: - save when: @@ -64094,7 +64276,7 @@ Black Skylands: installDir: Black Skylands: {} launch: - /BlackSkylands.exe: + "/BlackSkylands.exe": - when: - bit: 64 os: windows @@ -64105,8 +64287,8 @@ Black Smith: installDir: Black Smith: {} launch: - /black_smith.exe: - - arguments: '--in-process-gpu' + "/black_smith.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam @@ -64116,7 +64298,7 @@ Black Squad: installDir: Black Squad: {} launch: - /binaries/BSLauncher.exe: + "/binaries/BSLauncher.exe": - when: - os: windows store: steam @@ -64129,7 +64311,7 @@ Black Survival: installDir: Black Survival: {} launch: - /BlackSurvival.exe: + "/BlackSurvival.exe": - when: - os: windows store: steam @@ -64139,34 +64321,34 @@ Black Swan: installDir: Black Swan: {} launch: - /Black Swan.exe: + "/Black Swan.exe": - when: - os: windows store: steam steam: id: 560230 -'Black Viper: Sophia''s Fate': +"Black Viper: Sophia's Fate": installDir: - Black Viper Sophia's Fate: {} + "Black Viper Sophia's Fate": {} launch: - /Black Viper.app: + "/Black Viper.app": - when: - os: mac store: steam - /BlackViper.exe: + "/BlackViper.exe": - when: - os: windows store: steam steam: id: 322990 -'Black Widow: Recharged': +"Black Widow: Recharged": files: - /Black Widow Recharged_Data: + "/Black Widow Recharged_Data": tags: - config when: - os: windows - /AppData/LocalLow/Atari Inc_/Black Widow Recharged Epic: + "/AppData/LocalLow/Atari Inc_/Black Widow Recharged Epic": tags: - save when: @@ -64176,15 +64358,15 @@ Black Swan: installDir: Black Widow Recharged: {} launch: - /Black Widow Recharged.exe: + "/Black Widow Recharged.exe": - when: - os: windows store: steam - /BlackWidowRecharged.x86_64: + "/BlackWidowRecharged.x86_64": - when: - os: linux store: steam - /black-widow_mac.app: + "/black-widow_mac.app": - when: - os: mac store: steam @@ -64192,12 +64374,12 @@ Black Swan: id: 1714180 Black the Fall: files: - /AppData/LocalLow/Sand Sailor Studio/BlackTheFall: + "/AppData/LocalLow/Sand Sailor Studio/BlackTheFall": tags: - save when: - os: windows - /userdata//308060/remote: + "/userdata//308060/remote": tags: - save when: @@ -64205,15 +64387,15 @@ Black the Fall: installDir: BlackTheFall: {} launch: - /BlackTheFall.exe: + "/BlackTheFall.exe": - when: - os: windows store: steam - /black.app: + "/black.app": - when: - os: mac store: steam - /black.x86_64: + "/black.x86_64": - when: - os: linux store: steam @@ -64232,7 +64414,7 @@ BlackFaith: installDir: BlackFaith: {} launch: - /WindowsNoEditor/BlackFaithMP.exe: + "/WindowsNoEditor/BlackFaithMP.exe": - when: - bit: 64 os: windows @@ -64243,7 +64425,7 @@ BlackHoopS: installDir: BlackHoopS: {} launch: - /BHS.exe: + "/BHS.exe": - when: - store: steam steam: @@ -64252,33 +64434,33 @@ BlackShadows: installDir: BlackShadows: {} launch: - /Binaries/Win32/UDK.exe: + "/Binaries/Win32/UDK.exe": - when: - os: windows store: steam steam: id: 398210 -'BlackShield: Upora Story': +"BlackShield: Upora Story": installDir: BlackShield Upora Story: {} steam: id: 706520 -'BlackShot: Mercenary Warfare FPS': +"BlackShot: Mercenary Warfare FPS": installDir: BlackShot: {} launch: - /Patcher.exe: + "/Patcher.exe": - arguments: steam when: - os: windows store: steam steam: id: 433350 -'BlackShot: Revolution': +"BlackShot: Revolution": installDir: BlackShot Revolution: {} launch: - /BlackShot/Patcher.exe: + "/BlackShot/Patcher.exe": - arguments: steam when: - os: windows @@ -64289,24 +64471,24 @@ BlackSimulator: installDir: BlackSimulator: {} launch: - /BlackSimulator.exe: - - arguments: '--in-process-gpu' + "/BlackSimulator.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam - /game.exe: + "/game.exe": - when: - store: steam steam: id: 811110 -'BlackSite: Area 51': +"BlackSite: Area 51": files: - /Midway/Blacksite: + "/Midway/Blacksite": tags: - save when: - os: windows - /Midway/Blacksite/Config: + "/Midway/Blacksite/Config": tags: - config when: @@ -64315,23 +64497,23 @@ BlackSmith HIT: installDir: BlackSmithHIT: {} launch: - /BlacksmithHIT.app: + "/BlacksmithHIT.app": - when: - os: mac store: steam - /BlacksmithHIT.exe: + "/BlacksmithHIT.exe": - when: - os: windows store: steam - /BlacksmithHIT.x86: + "/BlacksmithHIT.x86": - when: - os: linux store: steam steam: id: 508170 -'BlackSoul: Extended Edition': +"BlackSoul: Extended Edition": files: - /savegames: + "/savegames": tags: - save when: @@ -64342,7 +64524,7 @@ Blackbay Asylum: installDir: Black Bay Asylum: {} launch: - /Launcher.exe: + "/Launcher.exe": - arguments: Blackbay Asylum.q3d when: - store: steam @@ -64352,21 +64534,21 @@ Blackbeard the Cursed Jungle: installDir: Blackbeard the Cursed Jungle: {} launch: - /Blackbeard the Cursed Jungle.exe: + "/Blackbeard the Cursed Jungle.exe": - when: - os: windows store: steam steam: id: 1151310 -Blackbeard's Cove: +"Blackbeard's Cove": installDir: - Blackbeard's Cove: {} + "Blackbeard's Cove": {} launch: - /BlackbeardsCove.app: + "/BlackbeardsCove.app": - when: - os: mac store: steam - /BlackbeardsCove.exe: + "/BlackbeardsCove.exe": - when: - os: windows store: steam @@ -64376,7 +64558,7 @@ Blackberry: installDir: Blackberry: {} launch: - /Blackberry.exe: + "/Blackberry.exe": - when: - bit: 64 os: windows @@ -64387,15 +64569,15 @@ Blackberry Honey: installDir: Blackberry Honey: {} launch: - /Blackberry Honey.app: + "/Blackberry Honey.app": - when: - os: mac store: steam - /Blackberry Honey.exe: + "/Blackberry Honey.exe": - when: - os: windows store: steam - /Blackberry Honey.sh: + "/Blackberry Honey.sh": - when: - os: linux store: steam @@ -64405,11 +64587,11 @@ BlackberryNOVA: installDir: BlackberryNOVA: {} launch: - /BlackberryNOVA.exe: + "/BlackberryNOVA.exe": - when: - os: windows store: steam - /BlackberryNOVA.sh: + "/BlackberryNOVA.sh": - when: - os: linux store: steam @@ -64424,16 +64606,16 @@ Blacken Slash: installDir: Blacken Slash: {} launch: - /Blacken Slash.app: + "/Blacken Slash.app": - when: - os: mac store: steam - /BlackenSlash.exe: + "/BlackenSlash.exe": - when: - bit: 64 os: windows store: steam - /BlackenSlash.x86_64: + "/BlackenSlash.x86_64": - when: - os: linux store: steam @@ -64443,11 +64625,11 @@ Blackfaun: installDir: Blackfaun: {} launch: - /blackfaun.app/Contents/MacOS/Blackfaun: + "/blackfaun.app/Contents/MacOS/Blackfaun": - when: - os: mac store: steam - /blackfaun.exe: + "/blackfaun.exe": - when: - os: windows store: steam @@ -64457,7 +64639,7 @@ Blackfoot Burrows: installDir: Blackfoot Burrows: {} launch: - /BlackfootBurrows1.0.exe: + "/BlackfootBurrows1.0.exe": - when: - os: windows store: steam @@ -64465,7 +64647,7 @@ Blackfoot Burrows: id: 952330 Blackguards: files: - /Daedalic Entertainment GmbH/Blackguards/Save: + "/Daedalic Entertainment GmbH/Blackguards/Save": tags: - save when: @@ -64480,11 +64662,11 @@ Blackguards: installDir: Blackguards: {} launch: - /Blackguards.app: + "/Blackguards.app": - when: - os: mac store: steam - /Blackguards.exe: + "/Blackguards.exe": - when: - os: windows store: steam @@ -64496,7 +64678,7 @@ Blackguards: id: 249650 Blackguards 2: files: - /Daedalic Entertainment GmbH/Blackguards 2//Save: + "/Daedalic Entertainment GmbH/Blackguards 2//Save": tags: - save when: @@ -64506,11 +64688,11 @@ Blackguards 2: installDir: Blackguards 2: {} launch: - /Blackguards 2.app: + "/Blackguards 2.app": - when: - os: mac store: steam - /Blackguards 2.exe: + "/Blackguards 2.exe": - when: - os: windows store: steam @@ -64522,22 +64704,22 @@ Blackguards 2: id: 314830 Blackhole: files: - /BLACKHOLE: + "/BLACKHOLE": tags: - config when: - os: windows - /BLACKHOLE/root/save.ini: + "/BLACKHOLE/root/save.ini": tags: - save when: - os: windows - /BLACKHOLE: + "/BLACKHOLE": tags: - save when: - os: linux - /BLACKHOLE/save.ini: + "/BLACKHOLE/save.ini": tags: - config when: @@ -64548,22 +64730,22 @@ Blackhole: gogExtra: - 1638499829 steamExtra: - - 323650 - 322700 + - 323650 - 445920 - 487520 installDir: BLACKHOLE: {} launch: - /BH.exe: + "/BH.exe": - when: - os: windows store: steam - /BLACKHOLE: + "/BLACKHOLE": - when: - os: linux store: steam - /BLACKHOLE.app: + "/BLACKHOLE.app": - when: - os: mac store: steam @@ -64578,7 +64760,7 @@ Blackjack in Space: installDir: Blackjack In Space: {} launch: - /SpaceBlackjack.exe: + "/SpaceBlackjack.exe": - when: - store: steam steam: @@ -64586,9 +64768,9 @@ Blackjack in Space: Blackjack of Strip: steam: id: 945700 -'Blacklight: Retribution': +"Blacklight: Retribution": files: - /FoxGame/Config/PCConsole/Cooked: + "/FoxGame/Config/PCConsole/Cooked": tags: - config when: @@ -64597,9 +64779,9 @@ Blackjack of Strip: blacklightretribution: {} steam: id: 209870 -'Blacklight: Tango Down': +"Blacklight: Tango Down": files: - /My Games/Blacklight-Tango Down/FOXGame/Config: + "/My Games/Blacklight-Tango Down/FOXGame/Config": tags: - config when: @@ -64607,7 +64789,7 @@ Blackjack of Strip: installDir: Blacklight Tango Down: {} launch: - /Binaries/Win32/BLTD.exe: + "/Binaries/Win32/BLTD.exe": - when: - store: steam steam: @@ -64616,8 +64798,8 @@ Blacklist Brigade: installDir: Blacklist Brigade: {} launch: - /TopDownShooter.exe: - - arguments: '-nohmd' + "/TopDownShooter.exe": + - arguments: "-nohmd" when: - bit: 64 os: windows @@ -64626,12 +64808,12 @@ Blacklist Brigade: id: 1061270 Blackout Rugby Manager: files: - /AppData/LocalLow/Blackout Entertainment/Blackout Rugby: + "/AppData/LocalLow/Blackout Entertainment/Blackout Rugby": tags: - config when: - os: windows - /AppData/LocalLow/Blackout Entertainment/Blackout Rugby/SaveData: + "/AppData/LocalLow/Blackout Entertainment/Blackout Rugby/SaveData": tags: - save when: @@ -64639,57 +64821,60 @@ Blackout Rugby Manager: installDir: Blackout Rugby: {} launch: - /Blackout Rugby.app/Contents/MacOS/Blackout Rugby: + "/Blackout Rugby.app/Contents/MacOS/Blackout Rugby": - when: - os: mac store: steam - /Blackout Rugby.exe: + "/Blackout Rugby.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam - /Blackout Rugby.x86: + "/Blackout Rugby.x86": - when: - bit: 32 os: linux store: steam - /Blackout Rugby.x86_64: + "/Blackout Rugby.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 1157960 -'Blackout Z: Slaughterhouse Edition': +"Blackout Z: Slaughterhouse Edition": installDir: Blackout Z Slaughterhouse Edition: {} launch: - /Blackout Z.exe: + "/Blackout Z.exe": - when: - store: steam steam: id: 729660 -'Blackout: The Darkest Night': +"Blackout: The Darkest Night": installDir: Blackout: {} launch: - /Blackout.app/Contents/MacOS/Blackout: + "/Blackout.app/Contents/MacOS/Blackout": - when: - os: mac store: steam - /Blackout.exe: + "/Blackout.exe": - when: - os: windows store: steam - /Blackout.x86_64: + "/Blackout.x86_64": - when: - os: linux store: steam steam: id: 875400 -'Blacksad: Under the Skin': +"Blacksad: Under the Skin": files: - /AppData/LocalLow/PenduloStudios/Blacksad: + "/AppData/LocalLow/PenduloStudios/Blacksad": tags: - config - save @@ -64700,11 +64885,11 @@ Blackout Rugby Manager: installDir: Blacksad - Under the skin: {} launch: - /Blacksad.app/Contents/MacOS/Blacksad: + "/Blacksad.app/Contents/MacOS/Blacksad": - when: - os: mac store: steam - /Blacksad.exe: + "/Blacksad.exe": - when: - os: windows store: steam @@ -64721,15 +64906,15 @@ Blacksea Odyssey: installDir: BlackseaOdyssey: {} launch: - /BlackseaOdyssey.app: + "/BlackseaOdyssey.app": - when: - os: mac store: steam - /BlackseaOdyssey.exe: + "/BlackseaOdyssey.exe": - when: - os: windows store: steam - /BlackseaOdyssey.x86: + "/BlackseaOdyssey.x86": - when: - os: linux store: steam @@ -64739,11 +64924,11 @@ Blackshift: installDir: Blackshift: {} launch: - /Blackshift.app/Contents/MacOS/Blackshift: + "/Blackshift.app/Contents/MacOS/Blackshift": - when: - os: mac store: steam - /System/Blackshift.exe: + "/System/Blackshift.exe": - when: - os: windows store: steam @@ -64753,15 +64938,15 @@ Blacksmith: installDir: Blacksmith: {} launch: - /Blacksmith.app: + "/Blacksmith.app": - when: - os: mac store: steam - /Blacksmith.exe: + "/Blacksmith.exe": - when: - os: windows store: steam - /Blacksmith.x86_64: + "/Blacksmith.x86_64": - when: - os: linux store: steam @@ -64771,7 +64956,7 @@ Blacksmith Run: installDir: Blacksmith Run: {} launch: - /Blacksmith Run.exe: + "/Blacksmith Run.exe": - when: - store: steam steam: @@ -64779,11 +64964,11 @@ Blacksmith Run: Blacksmith Simulator: steam: id: 721190 -'Blacksmith: Dark Times': +"Blacksmith: Dark Times": installDir: Blacksmith Dark Times: {} launch: - /BlacksmithDarkTimes.exe: + "/BlacksmithDarkTimes.exe": - when: - os: windows store: steam @@ -64793,7 +64978,7 @@ Blackstone: installDir: BLACKSTONE: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -64801,12 +64986,12 @@ Blackstone: id: 735250 Blacktail: files: - /AppData/LocalLow/BLACKTAIL/Saved/SaveGames: + "/AppData/LocalLow/BLACKTAIL/Saved/SaveGames": tags: - save when: - os: windows - /BLACKTAIL/Saved/Config/WindowsNoEditor: + "/BLACKTAIL/Saved/Config/WindowsNoEditor": tags: - config when: @@ -64820,8 +65005,8 @@ Blacktail: installDir: BLACKTAIL: {} launch: - /BLACKTAIL.exe: - - arguments: '-UseSteam -nohdr' + "/BLACKTAIL.exe": + - arguments: "-UseSteam -nohdr" when: - bit: 64 os: windows @@ -64832,7 +65017,7 @@ Blacktea With Moon: installDir: BlackteaWithMoon: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -64842,7 +65027,7 @@ Blackthorn Arena: installDir: Blackthorn Arena: {} launch: - /BlackthornArena.exe: + "/BlackthornArena.exe": - when: - os: windows store: steam @@ -64850,12 +65035,12 @@ Blackthorn Arena: id: 1194930 Blackthorne: files: - /SAVEGAME.000: + "/SAVEGAME.000": tags: - save when: - os: dos - /Blizzard Entertainment/Blackthorne/SAVEGAME.000: + "/Blizzard Entertainment/Blackthorne/SAVEGAME.000": tags: - save when: @@ -64864,11 +65049,11 @@ Blackwake: installDir: Blackwake: {} launch: - /Blackwake.app: + "/Blackwake.app": - when: - os: mac store: steam - /Blackwake.exe: + "/Blackwake.exe": - when: - os: windows store: steam @@ -64879,23 +65064,23 @@ Blackwater Bayou VR: id: 576880 Blackwell Unbound: files: - /acsetup.cfg: + "/acsetup.cfg": tags: - config when: - os: mac - os: linux - /Saved Games/Blackwell Unbound: + "/Saved Games/Blackwell Unbound": tags: - save when: - os: windows - /Saved Games/Blackwell Unbound/acsetup.cfg: + "/Saved Games/Blackwell Unbound/acsetup.cfg": tags: - config when: - os: windows - /ags/Blackwell Unbound: + "/ags/Blackwell Unbound": tags: - save when: @@ -64908,20 +65093,23 @@ Blackwell Unbound: installDir: Blackwell Unbound: {} launch: - /Start.sh: + "/Start.sh": - when: - bit: 32 os: linux store: steam - /Unbound.app/Contents/MacOS/AGS: + - bit: 64 + os: linux + store: steam + "/Unbound.app/Contents/MacOS/AGS": - when: - os: mac store: steam - /Unbound.exe: + "/Unbound.exe": - when: - os: windows store: steam - /winsetup.exe: + "/winsetup.exe": - when: - os: windows store: steam @@ -64933,11 +65121,11 @@ Blackwind: installDir: Blackwind: {} launch: - /Blackwind.app: + "/Blackwind.app": - when: - os: mac store: steam - /Blackwind.exe: + "/Blackwind.exe": - when: - os: windows store: steam @@ -64949,7 +65137,7 @@ Blackwood Crossing: installDir: Blackwood Crossing: {} launch: - /Blackwood Crossing.exe: + "/Blackwood Crossing.exe": - when: - os: windows store: steam @@ -64966,8 +65154,8 @@ Blade & Bones: installDir: Blade & Bones: {} launch: - /Musashi.exe: - - arguments: '-fullscreen' + "/Musashi.exe": + - arguments: "-fullscreen" when: - os: windows store: steam @@ -64975,12 +65163,12 @@ Blade & Bones: id: 513370 Blade & Sorcery: files: - /My Games/BladeAndSorcery/Saves/Default: + "/My Games/BladeAndSorcery/Saves/Default": tags: - save when: - os: windows - /My Games/BladeAndSorcery/Saves/Default/Options.opt: + "/My Games/BladeAndSorcery/Saves/Default/Options.opt": tags: - config when: @@ -64991,14 +65179,14 @@ Blade & Sorcery: id: 629730 Blade & Soul: files: - /BnS/NCWest: + "/BnS/NCWest": tags: - config when: - os: windows -'Blade Arcus from Shining: Battle Arena': +"Blade Arcus from Shining: Battle Arena": files: - /userdata//446040: + "/userdata//446040": tags: - save when: @@ -65007,7 +65195,7 @@ Blade & Soul: installDir: BLADE ARCUS from Shining: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -65015,7 +65203,7 @@ Blade & Soul: id: 446040 Blade Assault: files: - /AppData/LocalLow/TeamSuneat/BladeAssault: + "/AppData/LocalLow/TeamSuneat/BladeAssault": tags: - save when: @@ -65023,7 +65211,7 @@ Blade Assault: installDir: Blade Assault: {} launch: - /BladeAssault.exe: + "/BladeAssault.exe": - when: - store: steam registry: @@ -65036,7 +65224,7 @@ Blade Ballet: installDir: Blade Ballet: {} launch: - /Blade Ballet.exe: + "/Blade Ballet.exe": - when: - os: windows store: steam @@ -65046,7 +65234,7 @@ Blade Kitten: installDir: Blade Kitten: {} launch: - /bladekitten.exe: + "/bladekitten.exe": - when: - os: windows store: steam @@ -65054,12 +65242,12 @@ Blade Kitten: id: 9940 Blade Runner: files: - /BLADE.INI: + "/BLADE.INI": tags: - config when: - os: windows - /SAVE/*.SAV: + "/SAVE/*.SAV": tags: - save when: @@ -65069,7 +65257,7 @@ Blade Runner: installDir: Blade Runner Enhanced Edition: {} launch: - /BladeRunnerRemastered.exe: + "/BladeRunnerRemastered.exe": - when: - bit: 64 os: windows @@ -65080,7 +65268,7 @@ Blade Runner 9732: installDir: BR9732: {} launch: - /BR9732.exe: + "/BR9732.exe": - when: - bit: 64 os: windows @@ -65091,14 +65279,14 @@ Blade Runner 9732: - config steam: id: 770990 -'Blade Runner: Enhanced Edition': +"Blade Runner: Enhanced Edition": files: - /Saved Games/Nightdive Studios/Blade Runner EX/kexengine.cfg: + "/Saved Games/Nightdive Studios/Blade Runner EX/kexengine.cfg": tags: - config when: - os: windows - /Saved Games/Nightdive Studios/Blade Runner EX/save: + "/Saved Games/Nightdive Studios/Blade Runner EX/save": tags: - save when: @@ -65108,7 +65296,7 @@ Blade Runner 9732: installDir: Blade Runner Enhanced Edition: {} launch: - /BladeRunnerRemastered.exe: + "/BladeRunnerRemastered.exe": - when: - bit: 64 os: windows @@ -65117,12 +65305,12 @@ Blade Runner 9732: id: 1678420 Blade Strangers: files: - /userdata//565170/remote/bs_conf: + "/userdata//565170/remote/bs_conf": tags: - config when: - store: steam - /userdata//565170/remote/bs_play: + "/userdata//565170/remote/bs_play": tags: - save when: @@ -65130,7 +65318,7 @@ Blade Strangers: installDir: Blade Strangers: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -65138,7 +65326,7 @@ Blade Strangers: id: 565170 Blade Symphony: files: - /berimbau/cfg: + "/berimbau/cfg": tags: - config when: @@ -65147,23 +65335,25 @@ Blade Symphony: installDir: Blade Symphony: {} launch: - /bin/berimbau.sh: - - arguments: '-game berimbau' + "/bin/berimbau.sh": + - arguments: "-game berimbau" when: - os: mac store: steam - /bin/win32/berimbau.exe: + - os: linux + store: steam + "/bin/win32/berimbau.exe": - when: - bit: 32 os: windows store: steam - workingDir: /bin/win32 - /bin/win64/berimbau.exe: + workingDir: "/bin/win32" + "/bin/win64/berimbau.exe": - when: - bit: 64 os: windows store: steam - workingDir: /bin/win64 + workingDir: "/bin/win64" steam: id: 225600 Blade Tournament: @@ -65175,12 +65365,12 @@ Blade Warrior: installDir: bladewarrior: {} launch: - /dosbox_windows/dosbox.exe: - - arguments: \"Blade.exe\" -conf \"dosbox_bladewarrior.conf\" -fullscreen -exit -noconsole + "/dosbox_windows/dosbox.exe": + - arguments: "\\\"Blade.exe\\\" -conf \\\"dosbox_bladewarrior.conf\\\" -fullscreen -exit -noconsole" when: - os: windows store: steam - /runBladewarrior.sh: + "/runBladewarrior.sh": - when: - os: linux store: steam @@ -65190,7 +65380,7 @@ Blade of Acrimony: installDir: Blade of Acrimony: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -65200,7 +65390,7 @@ Blade of Arena: installDir: BladeOfArena: {} launch: - /BOAWorld.exe: + "/BOAWorld.exe": - when: - bit: 64 os: windows @@ -65209,12 +65399,12 @@ Blade of Arena: id: 897890 Blade of Darkness: files: - /Config: + "/Config": tags: - config when: - os: windows - /Save: + "/Save": tags: - save when: @@ -65224,38 +65414,38 @@ Blade of Darkness: installDir: Blade of Darkness: {} launch: - /Blade.app: + "/Blade.app": - when: - os: mac store: steam - /bin/bin/Blade: + "/bin/bin/Blade": - when: - os: linux store: steam - workingDir: /bin/bin + workingDir: "/bin/bin" steam: id: 1710170 Blade of Darkness (2021): files: - /steamapps/common/Blade of Darkness/Config: + "/steamapps/common/Blade of Darkness/Config": tags: - config when: - os: windows store: steam - /steamapps/common/Blade of Darkness/Save: + "/steamapps/common/Blade of Darkness/Save": tags: - save when: - os: windows store: steam - /steamapps/common/Blade of Darkness/classic/Config: + "/steamapps/common/Blade of Darkness/classic/Config": tags: - config when: - os: windows store: steam - /steamapps/common/Blade of Darkness/classic/Save: + "/steamapps/common/Blade of Darkness/classic/Save": tags: - save when: @@ -65266,15 +65456,15 @@ Blade of Darkness (2021): installDir: Blade of Darkness: {} launch: - /Blade.app: + "/Blade.app": - when: - os: mac store: steam - /bin/bin/Blade: + "/bin/bin/Blade": - when: - os: linux store: steam - workingDir: /bin/bin + workingDir: "/bin/bin" steam: id: 1710170 BladeShield: @@ -65284,7 +65474,7 @@ BladeShield: id: 554470 Bladed Fury: files: - /AppData/LocalLow/NEXT Studios/Bladed Fury/savedata: + "/AppData/LocalLow/NEXT Studios/Bladed Fury/savedata": tags: - save when: @@ -65292,7 +65482,7 @@ Bladed Fury: installDir: Bladed: {} launch: - /chopghost.exe: + "/chopghost.exe": - when: - bit: 64 os: windows @@ -65308,7 +65498,7 @@ Bladenet: installDir: BLADENET: {} launch: - /BN.exe: + "/BN.exe": - when: - os: windows store: steam @@ -65318,7 +65508,7 @@ Bladequest: installDir: Bladequest: {} launch: - /Bladequest.exe: + "/Bladequest.exe": - when: - os: windows store: steam @@ -65326,7 +65516,7 @@ Bladequest: id: 897700 Blades of Avernum: files: - /irunin.ini: + "/irunin.ini": tags: - config when: @@ -65337,12 +65527,15 @@ Blades of Gory: installDir: Blades of Gory: {} launch: - /newproject.app: + "/newproject.app": - when: - os: mac store: steam - /nw.exe: + "/nw.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam @@ -65353,17 +65546,17 @@ Blades of Orterra: id: 776070 Blades of Time: files: - /userdata//208670/remote: + "/userdata//208670/remote": tags: - save when: - store: steam - /BladesOfTime/Saves: + "/BladesOfTime/Saves": tags: - save when: - os: windows - /BladesOfTime/settings.blk: + "/BladesOfTime/settings.blk": tags: - config when: @@ -65379,11 +65572,11 @@ Blades of Time: installDir: Blades of Time: {} launch: - /BladesOfTime.app: + "/BladesOfTime.app": - when: - os: mac store: steam - /bladesoftime.exe: + "/bladesoftime.exe": - when: - os: windows store: steam @@ -65396,7 +65589,7 @@ Blades of the Righteous: installDir: BladesOfTheRighteous: {} launch: - /maingame.exe: + "/maingame.exe": - when: - os: windows store: steam @@ -65406,21 +65599,21 @@ Bladestar: installDir: Bladestar: {} launch: - /Bladestar.exe: + "/Bladestar.exe": - when: - os: windows store: steam steam: id: 424760 -'Bladestorm: Nightmare': +"Bladestorm: Nightmare": installDir: BLADESTORM Nightmare: {} launch: - /Config.exe: + "/Config.exe": - when: - os: windows store: steam - /Launch.exe: + "/Launch.exe": - when: - os: windows store: steam @@ -65428,17 +65621,17 @@ Bladestar: id: 350310 Blair Witch: files: - /Blairwitch/Saved/Config/WindowsNoEditor: + "/Blairwitch/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /Blairwitch/Saved/SaveGames: + "/Blairwitch/Saved/SaveGames": tags: - save when: - os: windows - /Packages/3951BlooberTeamS.A.BlairWitch_myqva651hxz16/LocalCache/Local/Blairwitch/Saved/Config/WindowsNoEditor: + "/Packages/3951BlooberTeamS.A.BlairWitch_myqva651hxz16/LocalCache/Local/Blairwitch/Saved/Config/WindowsNoEditor": tags: - config when: @@ -65449,50 +65642,50 @@ Blair Witch: installDir: Blair Witch: {} launch: - /Blairwitch.exe: + "/Blairwitch.exe": - when: - bit: 64 os: windows store: steam - /Blairwitch.sh: + "/Blairwitch.sh": - when: - bit: 64 os: linux store: steam steam: id: 1092660 -'Blair Witch Volume 1: Rustin Parr': +"Blair Witch Volume 1: Rustin Parr": files: - /SYSTEM: + "/SYSTEM": tags: - config when: - os: windows - /save: + "/save": tags: - save when: - os: windows -'Blair Witch Volume 2: The Legend of Coffin Rock': +"Blair Witch Volume 2: The Legend of Coffin Rock": files: - /SYSTEM: + "/SYSTEM": tags: - config when: - os: windows - /save: + "/save": tags: - save when: - os: windows -'Blair Witch Volume 3: The Elly Kedward Tale': +"Blair Witch Volume 3: The Elly Kedward Tale": files: - /SYSTEM: + "/SYSTEM": tags: - config when: - os: windows - /save: + "/save": tags: - save when: @@ -65501,34 +65694,34 @@ Blaite: installDir: Blaite: {} launch: - /blaite.app/Contents/MacOS/nwjs: + "/blaite.app/Contents/MacOS/nwjs": - when: - os: mac store: steam - /nw.exe: + "/nw.exe": - when: - os: windows store: steam - /nw.x86: + "/nw.x86": - when: - bit: 32 os: linux store: steam steam: id: 461730 -'Blake Stone: Aliens of Gold': +"Blake Stone: Aliens of Gold": files: - /Blake Stone - Aliens of Gold/SAVEGAM*.BS6: + "/Blake Stone - Aliens of Gold/SAVEGAM*.BS6": tags: - save when: - store: steam - /CONFIG.BS6: + "/CONFIG.BS6": tags: - config when: - os: dos - /SAVEGAM*.BS6: + "/SAVEGAM*.BS6": tags: - save when: @@ -65541,42 +65734,42 @@ Blaite: installDir: Blake Stone Aliens of Gold: {} launch: - /Blake Stone - Aliens of Gold/dosbox/dosbox.exe: - - arguments: '-conf \"..\\BSAOG.conf\" -noconsole -c' + "/Blake Stone - Aliens of Gold/dosbox/dosbox.exe": + - arguments: "-conf \\\"..\\\\BSAOG.conf\\\" -noconsole -c" when: - os: windows store: steam - workingDir: /Blake Stone - Aliens of Gold/dosbox - /Blake Stone AOG.app: + workingDir: "/Blake Stone - Aliens of Gold/dosbox" + "/Blake Stone AOG.app": - when: - os: mac store: steam - /Dosbox/dosbox: - - arguments: '-conf \"..\\BSAOG.conf\" -noconsole -c' + "/Dosbox/dosbox": + - arguments: "-conf \\\"..\\\\BSAOG.conf\\\" -noconsole -c" when: - os: linux store: steam - workingDir: /Dosbox + workingDir: "/Dosbox" steam: id: 358190 -'Blake Stone: Planet Strike': +"Blake Stone: Planet Strike": files: - /CONFIG.VSI: + "/CONFIG.VSI": tags: - config when: - os: dos - /SAVEGAM*.VSI: + "/SAVEGAM*.VSI": tags: - save when: - os: dos - /Library/Application Support/Boxer/Gamebox States/com.gog.blake-stone-planet-strike/Current.boxerstate/C Blake Stone Planet Strike.harddisk/CONFIG.VSI: + "/Library/Application Support/Boxer/Gamebox States/com.gog.blake-stone-planet-strike/Current.boxerstate/C Blake Stone Planet Strike.harddisk/CONFIG.VSI": tags: - config when: - os: mac - /Library/Application Support/Boxer/Gamebox States/com.gog.blake-stone-planet-strike/Current.boxerstate/C Blake Stone Planet Strike.harddisk/SAVEGAM*.VSI: + "/Library/Application Support/Boxer/Gamebox States/com.gog.blake-stone-planet-strike/Current.boxerstate/C Blake Stone Planet Strike.harddisk/SAVEGAM*.VSI": tags: - save when: @@ -65589,29 +65782,29 @@ Blaite: installDir: Blake Stone Planet Strike: {} launch: - /Blake Stone - Planet Strike/dosbox/dosbox.exe: - - arguments: '-conf \"..\\BSPS.conf\" -noconsole -c' + "/Blake Stone - Planet Strike/dosbox/dosbox.exe": + - arguments: "-conf \\\"..\\\\BSPS.conf\\\" -noconsole -c" when: - os: windows store: steam - workingDir: /Blake Stone - Planet Strike/dosbox - /Blake Stone PS.app: + workingDir: "/Blake Stone - Planet Strike/dosbox" + "/Blake Stone PS.app": - when: - os: mac store: steam - /Dosbox/dosbox.exe: - - arguments: '-conf \"..\\BSPS.conf\" -noconsole -c' + "/Dosbox/dosbox.exe": + - arguments: "-conf \\\"..\\\\BSPS.conf\\\" -noconsole -c" when: - os: linux store: steam - workingDir: /Dosbox + workingDir: "/Dosbox" steam: id: 358310 -'Blake and Mortimer: The Curse of the Thirty Denarii': +"Blake and Mortimer: The Curse of the Thirty Denarii": installDir: Blake and Mortimer The Curse of the Thirty Denarii: {} launch: - /Malediction.exe: + "/Malediction.exe": - when: - os: windows store: steam @@ -65621,16 +65814,16 @@ BlamBox: installDir: BlamBox: {} launch: - /BlamBox.exe: + "/BlamBox.exe": - when: - store: steam steam: id: 899270 -'Blamdown: Udder Fury': +"Blamdown: Udder Fury": installDir: Blamdown_Udder_Fury: {} launch: - /Blamdown.exe: + "/Blamdown.exe": - when: - bit: 64 os: windows @@ -65639,7 +65832,7 @@ BlamBox: id: 460560 Blame Him: files: - /AppData/LocalLow/Chilla's Art/BlameHim: + "/AppData/LocalLow/Chilla's Art/BlameHim": tags: - save when: @@ -65647,28 +65840,28 @@ Blame Him: installDir: Blame him: {} launch: - /BlameHim.exe: + "/BlameHim.exe": - when: - store: steam registry: - HKEY_CURRENT_USER/Software/Chilla's Art/BlameHim: + "HKEY_CURRENT_USER/Software/Chilla's Art/BlameHim": tags: - config steam: id: 950400 Blameless: files: - /Blameless_Data/mappings.cfg: + "/Blameless_Data/mappings.cfg": tags: - config when: - os: windows - /Blameless_Data/player.cfg: + "/Blameless_Data/player.cfg": tags: - config when: - os: windows - /Blameless/Saves: + "/Blameless/Saves": tags: - save when: @@ -65676,11 +65869,11 @@ Blameless: installDir: Blameless: {} launch: - /Blameless.app/Contents/MacOS/Blameless: + "/Blameless.app/Contents/MacOS/Blameless": - when: - os: mac store: steam - /Blameless.exe: + "/Blameless.exe": - when: - os: windows store: steam @@ -65688,7 +65881,7 @@ Blameless: id: 530330 Blanc: files: - /userdata//1982340/remote: + "/userdata//1982340/remote": tags: - save when: @@ -65696,7 +65889,7 @@ Blanc: installDir: Blanc: {} launch: - /BlancLauncher.exe: + "/BlancLauncher.exe": - when: - store: steam steam: @@ -65705,11 +65898,11 @@ Blanco: installDir: Blanco: {} launch: - /Blanco.app: + "/Blanco.app": - when: - os: mac store: steam - /Blanco.exe: + "/Blanco.exe": - when: - os: windows store: steam @@ -65719,7 +65912,7 @@ Blanket Heavy With Nightmares: installDir: Blanket Heavy With Nightmares: {} launch: - /PainajaisPeitto.exe: + "/PainajaisPeitto.exe": - when: - bit: 64 os: windows @@ -65728,7 +65921,7 @@ Blanket Heavy With Nightmares: id: 1045020 Blankspace: files: - /game/saves: + "/game/saves": tags: - save when: @@ -65736,11 +65929,11 @@ Blankspace: installDir: Blankspace: {} launch: - /Blankspace.exe: + "/Blankspace.exe": - when: - os: windows store: steam - /Blankspace.sh: + "/Blankspace.sh": - when: - os: linux store: steam @@ -65748,27 +65941,27 @@ Blankspace: id: 1228600 Blasphemous: files: - /AppData/LocalLow/TheGameKitchen/Blasphemous/Savegames/: + "/AppData/LocalLow/TheGameKitchen/Blasphemous/Savegames/": tags: - save when: - os: windows - /AppData/LocalLow/TheGameKitchen/Blasphemous/Savegames//options_settings.json: + "/AppData/LocalLow/TheGameKitchen/Blasphemous/Savegames//options_settings.json": tags: - config when: - os: windows - /Library/Application Support/TheGameKitchen/Blasphemous/Savegames/: + "/Library/Application Support/TheGameKitchen/Blasphemous/Savegames/": tags: - save when: - os: mac - /unity3d/TheGameKitchen/Blasphemous/Savegames/: + "/unity3d/TheGameKitchen/Blasphemous/Savegames/": tags: - save when: - os: linux - /unity3d/TheGameKitchen/Blasphemous/Savegames//options_settings.json: + "/unity3d/TheGameKitchen/Blasphemous/Savegames//options_settings.json": tags: - config when: @@ -65780,27 +65973,27 @@ Blasphemous: - 1253069536 - 1362286130 - 1559529299 - - 1844816308 - 1772598132 + - 1844816308 steamExtra: + - 1129120 - 1143850 - 1143851 - 1143852 - 1143853 - - 1129120 installDir: Blasphemous: {} launch: - /Blasphemous.app: + "/Blasphemous.app": - when: - os: mac store: steam - /Blasphemous.exe: + "/Blasphemous.exe": - when: - bit: 64 os: windows store: steam - /Blasphemous.x86_64: + "/Blasphemous.x86_64": - when: - bit: 64 os: linux @@ -65809,7 +66002,7 @@ Blasphemous: id: 774361 Blasphemous 2: files: - /AppData/LocalLow/The Game Kitchen/Blasphemous 2/Savegames: + "/AppData/LocalLow/The Game Kitchen/Blasphemous 2/Savegames": tags: - save when: @@ -65822,7 +66015,7 @@ Blasphemous 2: installDir: Blasphemous 2: {} launch: - /Blasphemous 2.exe: + "/Blasphemous 2.exe": - when: - os: windows store: steam @@ -65832,32 +66025,32 @@ Blast: installDir: Blast: {} launch: - /Blast.app/Contents/MacOS/Blast: + "/Blast.app/Contents/MacOS/Blast": - when: - bit: 64 os: mac store: steam - /Blast.exe: + "/Blast.exe": - when: - bit: 64 os: windows store: steam - /Blast.x86_64: + "/Blast.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 703260 -'Blast Brawl 2: Bloody Boogaloo': +"Blast Brawl 2: Bloody Boogaloo": installDir: Blast Brawl 2: {} launch: - /BlastBrawl2.app/Contents/MacOS/BlastBrawl2: + "/BlastBrawl2.app/Contents/MacOS/BlastBrawl2": - when: - os: mac store: steam - /BlastBrawl2.exe: + "/BlastBrawl2.exe": - when: - os: windows store: steam @@ -65865,7 +66058,7 @@ Blast: id: 447980 Blast Brigade vs. the Evil Legion of Dr. Cread: files: - /AppData/LocalLow/MYGAMES/Blast Brigade/GameSave/slot*.save: + "/AppData/LocalLow/MYGAMES/Blast Brigade/GameSave/slot*.save": tags: - save when: @@ -65875,11 +66068,11 @@ Blast Brigade vs. the Evil Legion of Dr. Cread: installDir: Blast Brigade vs. Evil Legion of Dr. Cread: {} launch: - /Blast Brigade.app: + "/Blast Brigade.app": - when: - os: mac store: steam - /Blast Brigade.exe: + "/Blast Brigade.exe": - when: - bit: 64 os: windows @@ -65893,11 +66086,11 @@ Blast Em!: installDir: Blast Em!: {} launch: - /BlastEm.app: + "/BlastEm.app": - when: - os: mac store: steam - /BlastEm.exe: + "/BlastEm.exe": - when: - os: windows store: steam @@ -65910,7 +66103,7 @@ Blast Off Far Away: installDir: Blast Off Far Away: {} launch: - /BlastOffFarAway.exe: + "/BlastOffFarAway.exe": - when: - store: steam steam: @@ -65924,7 +66117,7 @@ Blast Zone! Tournament: installDir: Blast Zone! Tournament: {} launch: - /BZ.exe: + "/BZ.exe": - when: - os: windows store: steam @@ -65936,7 +66129,7 @@ Blast Zone! Tournament: id: 649190 Blast the Past: files: - /BlastThePast: + "/BlastThePast": tags: - save when: @@ -65949,7 +66142,7 @@ Blast-off: installDir: Blast-off: {} launch: - /Blastoff2.exe: + "/Blastoff2.exe": - when: - os: windows store: steam @@ -65957,7 +66150,7 @@ Blast-off: id: 391140 BlastZone 2: files: - /bz2config.cfg: + "/bz2config.cfg": tags: - config when: @@ -65965,10 +66158,10 @@ BlastZone 2: installDir: BlastZone 2: {} launch: - /BZ2 Readme.txt: + "/BZ2 Readme.txt": - when: - store: steam - /BlastZone2.exe: + "/BlastZone2.exe": - when: - store: steam steam: @@ -65977,11 +66170,11 @@ Blastboard: installDir: Blastboard: {} launch: - /blastboard.app/Contents/MacOS/Blastboard: + "/blastboard.app/Contents/MacOS/Blastboard": - when: - os: mac store: steam - /blastboard.exe: + "/blastboard.exe": - when: - os: windows store: steam @@ -65991,7 +66184,7 @@ Blasted Fortress: installDir: Blasted Fortress: {} launch: - /BlastedFortress.exe: + "/BlastedFortress.exe": - when: - store: steam steam: @@ -66000,7 +66193,7 @@ Blasted Road Terror: installDir: Blasted Road Terror: {} launch: - /BRT.exe: + "/BRT.exe": - when: - store: steam steam: @@ -66010,7 +66203,7 @@ Blaster Cop: id: 713940 Blaster Master Zero: files: - /save: + "/save": tags: - save when: @@ -66018,16 +66211,16 @@ Blaster Master Zero: installDir: Blaster Master Zero: {} launch: - /exe/bsm.exe: + "/exe/bsm.exe": - when: - os: windows store: steam - workingDir: /exe + workingDir: "/exe" steam: id: 1034900 Blaster Master Zero 2: files: - /steamapps/common/Blaster Master Zero 2/SystemData.bin: + "/steamapps/common/Blaster Master Zero 2/SystemData.bin": tags: - config - save @@ -66037,7 +66230,7 @@ Blaster Master Zero 2: installDir: Blaster Master Zero 2: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -66047,7 +66240,7 @@ Blaster Master Zero 3: installDir: Blaster Master Zero 3: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -66057,7 +66250,7 @@ Blaster Shooter GunGuy!: installDir: Blaster Shooter GunGuy!: {} launch: - /BlasterShooterGunGuy.exe: + "/BlasterShooterGunGuy.exe": - when: - os: windows store: steam @@ -66067,7 +66260,7 @@ Blaster Simulator: installDir: Blaster Simulator: {} launch: - /demolition_win.exe: + "/demolition_win.exe": - when: - os: windows store: steam @@ -66077,7 +66270,7 @@ Blastercell: installDir: Blastercell: {} launch: - /BlasterCell.exe: + "/BlasterCell.exe": - when: - os: windows store: steam @@ -66087,11 +66280,11 @@ Blasteron: installDir: Blasteron: {} launch: - /Blasteron.exe: + "/Blasteron.exe": - when: - os: windows store: steam - /blasteron: + "/blasteron": - when: - bit: 64 os: linux @@ -66103,11 +66296,11 @@ Blasters of the Universe: Blasters of the Universe: {} steam: id: 490490 -'Blasting Agent: Ultimate Edition': +"Blasting Agent: Ultimate Edition": installDir: Blasting Agent Ultimate Edition: {} launch: - /BlastingAgent.exe: + "/BlastingAgent.exe": - when: - os: windows store: steam @@ -66125,7 +66318,7 @@ Blautopf VR - Geheimnis der Lau: id: 1089860 BlazBlue Centralfiction: files: - /Save: + "/Save": tags: - save when: @@ -66133,25 +66326,26 @@ BlazBlue Centralfiction: installDir: BlazBlue Centralfiction: {} launch: - /BBCF.exe: + "/BBCF.exe": - when: - os: windows store: steam steam: id: 586140 -'BlazBlue: Calamity Trigger': +"BlazBlue: Calamity Trigger": files: - /ARC SYSTEM WORKS/BBCT/0000000000000000/save: + "/ARC SYSTEM WORKS/BBCT/0000000000000000/save": tags: - save when: - - store: steam - /ARC SYSTEM WORKS/BLAZBLUE-CT/Config: + - os: windows + store: steam + "/ARC SYSTEM WORKS/BLAZBLUE-CT/Config": tags: - config when: - os: windows - /ARC SYSTEM WORKS/BLAZBLUE-CT/E0000151BC2BFB15/save: + "/ARC SYSTEM WORKS/BLAZBLUE-CT/E0000151BC2BFB15/save": tags: - save when: @@ -66161,20 +66355,20 @@ BlazBlue Centralfiction: installDir: BlazBlue Calamity Trigger: {} launch: - /BBCT.exe: + "/BBCT.exe": - when: - os: windows store: steam steam: id: 263300 -'BlazBlue: Chronophantasma Extend': +"BlazBlue: Chronophantasma Extend": files: - /Save: + "/Save": tags: - save when: - os: windows - /ARC SYSTEM WORKS/BBCPEX/Config: + "/ARC SYSTEM WORKS/BBCPEX/Config": tags: - config when: @@ -66182,20 +66376,20 @@ BlazBlue Centralfiction: installDir: BlazBlue Chronophantasma Extend: {} launch: - /BBCPEX.exe: + "/BBCPEX.exe": - when: - os: windows store: steam steam: id: 388750 -'BlazBlue: Continuum Shift Extend': +"BlazBlue: Continuum Shift Extend": files: - /Save: + "/Save": tags: - save when: - os: windows - /ARC SYSTEM WORKS/BBCSE/Config: + "/ARC SYSTEM WORKS/BBCSE/Config": tags: - config when: @@ -66203,15 +66397,15 @@ BlazBlue Centralfiction: installDir: BlazBlue Continuum Shift Extend: {} launch: - /BBCSE.exe: + "/BBCSE.exe": - when: - os: windows store: steam steam: id: 294810 -'BlazBlue: Cross Tag Battle': +"BlazBlue: Cross Tag Battle": files: - /Save: + "/Save": tags: - config - save @@ -66220,17 +66414,17 @@ BlazBlue Centralfiction: installDir: BBTAG: {} launch: - /BBTAG.exe: + "/BBTAG.exe": - when: - os: windows store: steam steam: id: 702890 -'Blaze and the Monster Machines: Axle City Racers': +"Blaze and the Monster Machines: Axle City Racers": installDir: Blaze Racer: {} launch: - /BLZ.exe: + "/BLZ.exe": - when: - os: windows store: steam @@ -66238,12 +66432,12 @@ BlazBlue Centralfiction: id: 1434330 BlazeRush: files: - /userdata//302710: + "/userdata//302710": tags: - save when: - store: steam - /My Games/BlazeRush/user_config.xml: + "/My Games/BlazeRush/user_config.xml": tags: - config when: @@ -66251,23 +66445,23 @@ BlazeRush: installDir: Blaze Rush: {} launch: - /BlazeRush.app: + "/BlazeRush.app": - when: - os: mac store: steam - /blazerush: + "/blazerush": - when: - os: linux store: steam - /game.exe: + "/game.exe": - when: - os: windows store: steam steam: id: 302710 -'Blazing Angels 2: Secret Missions of WWII': +"Blazing Angels 2: Secret Missions of WWII": files: - /My Documents/BlazingAngels2/Profiles: + "/My Documents/BlazingAngels2/Profiles": tags: - save when: @@ -66275,28 +66469,28 @@ BlazeRush: installDir: Blazing Angels 2 Secret Missions of WWII: {} launch: - /bin/BA2.exe: + "/bin/BA2.exe": - when: - store: steam - workingDir: /bin + workingDir: "/bin" registry: HKEY_LOCAL_MACHINE/SOFTWARE/WOW6432Node/UBISOFT/BlazingAngels2: tags: - config steam: id: 15230 -'Blazing Angels: Squadrons of WWII': +"Blazing Angels: Squadrons of WWII": installDir: Blazing Angels Squadrons of WWII: {} launch: - /Settingsapplication.exe: + "/Settingsapplication.exe": - when: - store: steam steam: id: 15220 Blazing Beaks: files: - /BlazingBeaks/gamedata.sav: + "/BlazingBeaks/gamedata.sav": tags: - config - save @@ -66307,7 +66501,7 @@ Blazing Beaks: installDir: Blazing Beaks: {} launch: - /BlazingBeaks.exe: + "/BlazingBeaks.exe": - when: - os: windows store: steam @@ -66315,23 +66509,23 @@ Blazing Beaks: id: 585710 Blazing Chrome: files: - /Blazing_Chrome/gog_config.ini: + "/Blazing_Chrome/gog_config.ini": tags: - config when: - os: windows - /Blazing_Chrome/gog_save*.bin: + "/Blazing_Chrome/gog_save*.bin": tags: - save when: - os: windows - /Packages/DotEmu.BlazingChrome_map6zyh9ym1xy/LocalState/config.ini: + "/Packages/DotEmu.BlazingChrome_map6zyh9ym1xy/LocalState/config.ini": tags: - config when: - os: windows store: microsoft - /Packages/DotEmu.BlazingChrome_map6zyh9ym1xy/LocalState/save*.bin: + "/Packages/DotEmu.BlazingChrome_map6zyh9ym1xy/LocalState/save*.bin": tags: - save when: @@ -66342,7 +66536,7 @@ Blazing Chrome: installDir: Blazing Chrome: {} launch: - /Blazing Chrome.exe: + "/Blazing Chrome.exe": - when: - os: windows store: steam @@ -66352,7 +66546,7 @@ Blazing Core: installDir: Blazing Core: {} launch: - /EchoClient.exe: + "/EchoClient.exe": - when: - bit: 64 os: windows @@ -66363,22 +66557,22 @@ Blazing Core Beta: installDir: Blazing Core (beta): {} launch: - /EchoClient.exe: + "/EchoClient.exe": - when: - bit: 64 os: windows store: steam steam: id: 787750 -'Blazing Sails: Pirate Battle Royale': +"Blazing Sails: Pirate Battle Royale": installDir: Blazing Sails: {} launch: - /Launch_BlazingSails.exe: + "/Launch_BlazingSails.exe": - when: - os: windows store: steam - /Launch_BlazingSails_With_Fix.exe: + "/Launch_BlazingSails_With_Fix.exe": - when: - store: steam steam: @@ -66390,7 +66584,7 @@ Bleach Brave Souls: installDir: BLEACH Brave Souls: {} launch: - /BleachBraveSouls.exe: + "/BleachBraveSouls.exe": - when: - os: windows store: steam @@ -66399,14 +66593,14 @@ Bleach Brave Souls: Bleak: steam: id: 786380 -'Bleak Faith: Forsaken': +"Bleak Faith: Forsaken": files: - /Forsaken/Saved/Config/WindowsNoEditor: + "/Forsaken/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /Forsaken/Saved/SaveGames: + "/Forsaken/Saved/SaveGames": tags: - save when: @@ -66419,7 +66613,7 @@ Bleak: installDir: Bleak Faith Forsaken: {} launch: - /Forsaken.exe: + "/Forsaken.exe": - when: - os: windows store: steam @@ -66427,7 +66621,7 @@ Bleak: id: 1173220 Bleak Sword DX: files: - /AppData/LocalLow/more8bit/BleakSwordDX/*.dat: + "/AppData/LocalLow/more8bit/BleakSwordDX/*.dat": tags: - save when: @@ -66437,29 +66631,29 @@ Bleak Sword DX: installDir: Bleak Sword DX: {} launch: - /BleakSwordDX.exe: + "/BleakSwordDX.exe": - when: - store: steam steam: id: 2193050 -'Bleak: Welcome to Glimmer': +"Bleak: Welcome to Glimmer": installDir: BLEAK: {} launch: - /BLEAK.app/Contents/MacOS/BLEAK: + "/BLEAK.app/Contents/MacOS/BLEAK": - when: - os: mac store: steam - /BLEAK.exe: + "/BLEAK.exe": - when: - os: windows store: steam - /BLEAK.x86: + "/BLEAK.x86": - when: - bit: 32 os: linux store: steam - /BLEAK.x86_64: + "/BLEAK.x86_64": - when: - bit: 64 os: linux @@ -66471,13 +66665,13 @@ Bled Navalny: id: 780010 Bleed: files: - /SavedGames/Bleed/Bleed/AllPlayers: + "/SavedGames/Bleed/Bleed/AllPlayers": tags: - config - save when: - os: windows - /Bleed/Bleed/AllPlayers: + "/Bleed/Bleed/AllPlayers": tags: - config - save @@ -66486,15 +66680,15 @@ Bleed: installDir: Bleed: {} launch: - /Bleed: + "/Bleed": - when: - os: linux store: steam - /Bleed.app/Contents/MacOS/Bleed: + "/Bleed.app/Contents/MacOS/Bleed": - when: - os: mac store: steam - /Bleed.exe: + "/Bleed.exe": - when: - os: windows store: steam @@ -66502,19 +66696,19 @@ Bleed: id: 239800 Bleed 2: files: - /Library/Application Support/Bleed2: + "/Library/Application Support/Bleed2": tags: - config - save when: - os: mac - /Bleed2: + "/Bleed2": tags: - config - save when: - os: windows - /Bleed2: + "/Bleed2": tags: - config - save @@ -66523,15 +66717,15 @@ Bleed 2: installDir: Bleed 2: {} launch: - /Bleed 2.app/Contents/MacOS/Bleed2: + "/Bleed 2.app/Contents/MacOS/Bleed2": - when: - os: mac store: steam - /Bleed2: + "/Bleed2": - when: - os: linux store: steam - /Bleed2.exe: + "/Bleed2.exe": - when: - os: windows store: steam @@ -66541,7 +66735,7 @@ Bleeding Blocks: installDir: Bleeding Blocks: {} launch: - /BleedinBlocks.exe: + "/BleedinBlocks.exe": - when: - os: windows store: steam @@ -66551,7 +66745,7 @@ Bleeding Border: installDir: Bleeding Border: {} launch: - /bleedingborder.exe: + "/bleedingborder.exe": - when: - os: windows store: steam @@ -66559,13 +66753,13 @@ Bleeding Border: id: 416290 Bleeding Edge: files: - /Packages/Microsoft.BleedingEdge_8wekyb3d8bbwe/LocalCache/Local/Moblade/Saved/Config/WindowsClient: + "/Packages/Microsoft.BleedingEdge_8wekyb3d8bbwe/LocalCache/Local/Moblade/Saved/Config/WindowsClient": tags: - config when: - os: windows store: microsoft - /Packages/Microsoft.Moblade_8wekyb3d8bbwe/SystemAppData/wgs: + "/Packages/Microsoft.Moblade_8wekyb3d8bbwe/SystemAppData/wgs": tags: - save when: @@ -66574,7 +66768,7 @@ Bleeding Edge: installDir: Bleeding Edge: {} launch: - /Launch_Game.exe: + "/Launch_Game.exe": - when: - os: windows store: steam @@ -66594,8 +66788,8 @@ Bleeding Knife: installDir: Bleeding Knife: {} launch: - /Game.exe: - - arguments: '-windowed' + "/Game.exe": + - arguments: "-windowed" when: - os: windows store: steam @@ -66607,7 +66801,7 @@ Bleeding Moons: installDir: Bleeding Moons: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -66617,7 +66811,7 @@ Bleeding Sun: installDir: Bleeding Sun: {} launch: - /BleedingSun.exe: + "/BleedingSun.exe": - when: - os: windows store: steam @@ -66627,7 +66821,7 @@ Bleep Bloop: installDir: Bleep Bloop: {} launch: - /BleepBloop.exe: + "/BleepBloop.exe": - when: - os: windows store: steam @@ -66637,7 +66831,7 @@ Bless Online: installDir: Bless Online: {} launch: - /Launcher/BlessLauncher.exe: + "/Launcher/BlessLauncher.exe": - when: - bit: 64 os: windows @@ -66646,12 +66840,12 @@ Bless Online: id: 681660 Bless Unleashed: files: - /Bless/Saved/Config/WindowsNoEditor: + "/Bless/Saved/Config/WindowsNoEditor": tags: - config when: - store: steam - /Bless/Saved/SaveGames: + "/Bless/Saved/SaveGames": tags: - save when: @@ -66659,18 +66853,18 @@ Bless Unleashed: installDir: Bless Unleashed: {} launch: - /Launcher/BlessUnleashedLauncher.exe: + "/Launcher/BlessUnleashedLauncher.exe": - when: - bit: 64 os: windows store: steam steam: id: 1254120 -'Blessed Ones: The Magic Wolves': +"Blessed Ones: The Magic Wolves": installDir: Blessed Ones: {} launch: - /Blessed Ones.exe: + "/Blessed Ones.exe": - when: - os: windows store: steam @@ -66680,11 +66874,11 @@ Blessed Surface: installDir: Blessed Surface: {} launch: - /Blessed Surface.exe: + "/Blessed Surface.exe": - when: - os: windows store: steam - /Blessed_Surface: + "/Blessed_Surface": - when: - os: linux store: steam @@ -66694,11 +66888,11 @@ Blight of the Immortals: installDir: Blight: {} launch: - /Blight.app/Contents/MacOS/Electron: + "/Blight.app/Contents/MacOS/Electron": - when: - os: mac store: steam - /blight.exe: + "/blight.exe": - when: - os: windows store: steam @@ -66706,12 +66900,12 @@ Blight of the Immortals: id: 494220 Blightbound: files: - /config.txt: + "/config.txt": tags: - config when: - os: windows - /userdata//1263070: + "/userdata//1263070": tags: - save when: @@ -66720,7 +66914,7 @@ Blightbound: installDir: Blightbound: {} launch: - /Blightbound.exe: + "/Blightbound.exe": - when: - os: windows store: steam @@ -66733,7 +66927,7 @@ Blik: installDir: BLIK: {} launch: - /BLIK.exe: + "/BLIK.exe": - when: - os: windows store: steam @@ -66751,11 +66945,11 @@ Blind Blades: installDir: Blind Blades: {} launch: - /BlindBlades.app/Contents/MacOS/BlindBlades: + "/BlindBlades.app/Contents/MacOS/BlindBlades": - when: - os: mac store: steam - /BlindBlades.exe: + "/BlindBlades.exe": - when: - os: windows store: steam @@ -66765,15 +66959,15 @@ Blind Boris: installDir: Blind Boris: {} launch: - /BlindBoris.app/Contents/MacOS/BlindBoris: + "/BlindBoris.app/Contents/MacOS/BlindBoris": - when: - os: mac store: steam - /BlindBoris.exe: + "/BlindBoris.exe": - when: - os: windows store: steam - /BlindBoris.x86: + "/BlindBoris.x86": - when: - os: linux store: steam @@ -66783,7 +66977,7 @@ Blind Date: installDir: Blind Date: {} launch: - /Blind_Date.exe: + "/Blind_Date.exe": - when: - os: windows store: steam @@ -66793,23 +66987,23 @@ Blind Drive: installDir: Blind Drive: {} launch: - /Blind Drive.app/Contents/MacOS/Blind Drive: + "/Blind Drive.app/Contents/MacOS/Blind Drive": - when: - os: mac store: steam - /Blind Drive.exe: + "/Blind Drive.exe": - when: - os: windows store: steam steam: id: 1300600 -'Blind Fate: Edo no Yami': +"Blind Fate: Edo no Yami": gog: id: 1245041742 installDir: Blind Fate Edo no Yami: {} launch: - /Yami.exe: + "/Yami.exe": - when: - bit: 64 os: windows @@ -66820,7 +67014,7 @@ Blind Girl: installDir: Blind Girl: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -66830,7 +67024,7 @@ Blind Justice: installDir: Blind Justice: {} launch: - /JudgeGame.exe: + "/JudgeGame.exe": - when: - store: steam steam: @@ -66839,29 +67033,31 @@ Blind Love: installDir: Blind Love: {} launch: - /Blind Love.exe: + "/Blind Love.exe": - when: - os: windows store: steam - /Blind Love.sh: + "/Blind Love.sh": - when: - os: mac store: steam + - os: linux + store: steam steam: id: 568020 Blind Men: files: - /game/saves/*.save: + "/game/saves/*.save": tags: - save when: - os: windows - /renpy/config.py: + "/renpy/config.py": tags: - config when: - os: windows - /renpy/Blind Men-1464538920/*.save: + "/renpy/Blind Men-1464538920/*.save": tags: - save when: @@ -66869,15 +67065,15 @@ Blind Men: installDir: BLIND_MEN: {} launch: - /BLIND_MEN/Blind_Men.app: + "/BLIND_MEN/Blind_Men.app": - when: - os: mac store: steam - /BLIND_MEN/Blind_Men.exe: + "/BLIND_MEN/Blind_Men.exe": - when: - os: windows store: steam - /BLIND_MEN/Blind_Men.sh: + "/BLIND_MEN/Blind_Men.sh": - when: - os: linux store: steam @@ -66887,7 +67083,7 @@ Blind Mind: installDir: Blind Mind: {} launch: - /BlindMind.exe: + "/BlindMind.exe": - when: - store: steam steam: @@ -66896,7 +67092,7 @@ Blind Souls: installDir: Blind Souls: {} launch: - /WindowsNoEditor/BlindSouls.exe: + "/WindowsNoEditor/BlindSouls.exe": - when: - os: windows store: steam @@ -66906,7 +67102,7 @@ Blind Spot: installDir: Blind Spot: {} launch: - /Blind Spot PC.exe: + "/Blind Spot PC.exe": - when: - bit: 64 os: windows @@ -66922,15 +67118,15 @@ Blind Trust: installDir: Blind Trust: {} launch: - /BlindTrust.exe: + "/BlindTrust.exe": - when: - os: windows store: steam steam: id: 468560 -'Blind Witch: Peek Window': +"Blind Witch: Peek Window": files: - /AppData/LocalLow/strayrambling/blindwitchpeekwindow: + "/AppData/LocalLow/strayrambling/blindwitchpeekwindow": tags: - config when: @@ -66938,7 +67134,7 @@ Blind Trust: installDir: BlindWitch_PeekWindow: {} launch: - /BlindWitch_PeekWindow.exe: + "/BlindWitch_PeekWindow.exe": - when: - os: windows store: steam @@ -66948,11 +67144,11 @@ BlindMaze: installDir: BlindMaze: {} launch: - /BlindMaze.exe: + "/BlindMaze.exe": - when: - os: windows store: steam - /BlindMaze.sh: + "/BlindMaze.sh": - when: - os: linux store: steam @@ -66965,7 +67161,7 @@ Blindia: installDir: Blindia: {} launch: - /Blindia.exe: + "/Blindia.exe": - when: - os: windows store: steam @@ -66978,26 +67174,26 @@ Blinding Dark: installDir: Blinding Dark: {} launch: - /BlindingDark_Linux.x86: + "/BlindingDark_Linux.x86": - when: - bit: 32 os: linux store: steam - /BlindingDark_Linux.x86_64: + "/BlindingDark_Linux.x86_64": - when: - bit: 64 os: linux store: steam - /BlindingDark_OSX.app: + "/BlindingDark_OSX.app": - when: - os: mac store: steam - /BlindingDark_x32.exe: + "/BlindingDark_x32.exe": - when: - bit: 32 os: windows store: steam - /BlindingDark_x64.exe: + "/BlindingDark_x64.exe": - when: - bit: 64 os: windows @@ -67008,7 +67204,7 @@ Blindsight: installDir: Blindsight: {} launch: - /Blindsight.exe: + "/Blindsight.exe": - when: - os: windows store: steam @@ -67016,7 +67212,7 @@ Blindsight: id: 722380 Blink: files: - /Blink: + "/Blink": tags: - config when: @@ -67024,11 +67220,11 @@ Blink: installDir: Blink: {} launch: - /blink.app: + "/blink.app": - when: - os: mac store: steam - /blink.exe: + "/blink.exe": - when: - os: windows store: steam @@ -67038,12 +67234,12 @@ Blink Cam: installDir: Blink: {} launch: - /Blink.exe: + "/Blink.exe": - when: - bit: 64 os: windows store: steam - /Blink/Binaries/Win64/Blink-Win64-Shipping.exe: + "/Blink/Binaries/Win64/Blink-Win64-Shipping.exe": - when: - bit: 64 os: windows @@ -67054,31 +67250,31 @@ Blink the Bulb: installDir: Blink the Bulb: {} launch: - /Blink_The_Bulb.exe: + "/Blink_The_Bulb.exe": - when: - os: windows store: steam steam: id: 534190 -'Blink:Rogues': +"Blink:Rogues": installDir: BlinkRogues: {} launch: - /BlinkGame.exe: + "/BlinkGame.exe": - when: - bit: 64 os: windows store: steam steam: id: 739100 -Blinky's Hasty Adventure: +"Blinky's Hasty Adventure": steam: id: 991290 Bliss: installDir: Bliss: {} launch: - /Bliss.exe: + "/Bliss.exe": - when: - os: windows store: steam @@ -67089,7 +67285,7 @@ Bliss Maze(极乐迷宫): id: 951140 Blitz Breaker: files: - /BlitzBreaker: + "/BlitzBreaker": tags: - save when: @@ -67097,7 +67293,7 @@ Blitz Breaker: installDir: Blitz Breaker: {} launch: - /nw.exe: + "/nw.exe": - when: - bit: 32 os: windows @@ -67113,21 +67309,24 @@ BlitzKeep Unleashed: installDir: BlitzKeep Unleashed: {} launch: - /BlitzKeep Unleashed.app/Contents/MacOS/BlitzKeep Unleashed: + "/BlitzKeep Unleashed.app/Contents/MacOS/BlitzKeep Unleashed": - when: - os: mac store: steam - /BlitzKeep Unleashed.exe: + "/BlitzKeep Unleashed.exe": - when: - bit: 32 os: windows store: steam - /BlitzKeep Unleashed.x86: + - bit: 64 + os: windows + store: steam + "/BlitzKeep Unleashed.x86": - when: - bit: 32 os: linux store: steam - /BlitzKeep Unleashed.x86_64: + "/BlitzKeep Unleashed.x86_64": - when: - bit: 64 os: linux @@ -67136,12 +67335,12 @@ BlitzKeep Unleashed: id: 943590 Blitzkrieg: files: - /Run: + "/Run": tags: - config when: - os: windows - /Run/saves: + "/Run/saves": tags: - save when: @@ -67154,21 +67353,21 @@ Blitzkrieg: installDir: Blitzkrieg Anthology: {} launch: - /Blitzkrieg/game.exe: + "/Blitzkrieg/game.exe": - when: - os: windows store: steam - workingDir: /Blitzkrieg - /Burning Horizon/game.exe: + workingDir: "/Blitzkrieg" + "/Burning Horizon/game.exe": - when: - os: windows store: steam - workingDir: /Burning Horizon - /Rolling Thunder/game.exe: + workingDir: "/Burning Horizon" + "/Rolling Thunder/game.exe": - when: - os: windows store: steam - workingDir: /Rolling Thunder + workingDir: "/Rolling Thunder" steam: id: 313480 Blitzkrieg 2: @@ -67177,33 +67376,33 @@ Blitzkrieg 2: installDir: Blitzkrieg 2 Anthology: {} launch: - /Blitzkrieg 2 - Fall of the Reich/bin/game.exe: + "/Blitzkrieg 2 - Fall of the Reich/bin/game.exe": - when: - os: windows store: steam - workingDir: /Blitzkrieg 2 - Fall of the Reich/bin - /Blitzkrieg 2 - Liberation/bin/game.exe: + workingDir: "/Blitzkrieg 2 - Fall of the Reich/bin" + "/Blitzkrieg 2 - Liberation/bin/game.exe": - when: - os: windows store: steam - workingDir: /Blitzkrieg 2 - Liberation/bin - /Blitzkrieg 2/bin/game.exe: + workingDir: "/Blitzkrieg 2 - Liberation/bin" + "/Blitzkrieg 2/bin/game.exe": - when: - os: windows store: steam - workingDir: /Blitzkrieg 2/bin + workingDir: "/Blitzkrieg 2/bin" steam: id: 313500 Blitzkrieg 3: installDir: Blitzkrieg3: {} launch: - /B3.exe: + "/B3.exe": - when: - os: windows store: steam - /BlitzkriegOSX.app: - - arguments: '-force-gfx-direct' + "/BlitzkriegOSX.app": + - arguments: "-force-gfx-direct" when: - os: mac store: steam @@ -67213,7 +67412,7 @@ Blixten Quest: installDir: Blixten Quest: {} launch: - /Blixten Quest.exe: + "/Blixten Quest.exe": - when: - bit: 64 os: windows @@ -67224,7 +67423,7 @@ BloXoR: installDir: BloXoR: {} launch: - /BloXoR.exe: + "/BloXoR.exe": - when: - os: windows store: steam @@ -67234,14 +67433,14 @@ Blob From Space: installDir: Blob from Space: {} launch: - /Blob.exe: + "/Blob.exe": - when: - store: steam steam: id: 315070 BlobCat: files: - /AppData/LocalLow/BySamb/BlobCat: + "/AppData/LocalLow/BySamb/BlobCat": tags: - save when: @@ -67249,7 +67448,7 @@ BlobCat: installDir: BlobCat: {} launch: - /blobcat.exe: + "/blobcat.exe": - when: - os: windows store: steam @@ -67264,7 +67463,7 @@ Block: installDir: Box: {} launch: - /Block.exe: + "/Block.exe": - when: - os: windows store: steam @@ -67274,7 +67473,7 @@ Block Blowout: installDir: Block Blowout: {} launch: - /BlockBlowout.exe: + "/BlockBlowout.exe": - when: - os: windows store: steam @@ -67284,7 +67483,7 @@ Block Busters: installDir: Block Busters: {} launch: - /BlockBusters.exe: + "/BlockBusters.exe": - when: - bit: 64 os: windows @@ -67295,7 +67494,7 @@ Block Cat Space Golf: installDir: BLOCK CAT SPACE GOLF: {} launch: - /BLOCK CAT SPACE GOLF.exe: + "/BLOCK CAT SPACE GOLF.exe": - when: - os: windows store: steam @@ -67308,7 +67507,7 @@ Block Dodge Challenge: installDir: Block Dodge Challenge: {} launch: - /BlockDodgeChallenge.exe: + "/BlockDodgeChallenge.exe": - when: - os: windows store: steam @@ -67318,7 +67517,7 @@ Block Fall Simulator 2019: installDir: Block Fall Simulator 2019: {} launch: - /Block Fall Simulator 2019.exe: + "/Block Fall Simulator 2019.exe": - when: - os: windows store: steam @@ -67331,30 +67530,30 @@ Block Granny Horror Survival: installDir: Block Granny: {} launch: - /Block Granny Horror.exe: + "/Block Granny Horror.exe": - when: - os: windows store: steam steam: id: 1111880 -'Block Heads: Instakill': +"Block Heads: Instakill": installDir: BHI: {} launch: - /BHI.app/Contents/MacOS/BHI: + "/BHI.app/Contents/MacOS/BHI": - when: - os: mac store: steam - /BHI.exe: + "/BHI.exe": - when: - os: windows store: steam - /BHI.x86: + "/BHI.x86": - when: - bit: 32 os: linux store: steam - /BHI.x86_64: + "/BHI.x86_64": - when: - bit: 64 os: linux @@ -67365,7 +67564,7 @@ Block King: installDir: Block King: {} launch: - /BlockKing2.exe: + "/BlockKing2.exe": - when: - os: windows store: steam @@ -67380,15 +67579,15 @@ Block Legend DX: installDir: Block Legend DX: {} launch: - /BlockLegendDX.app: + "/BlockLegendDX.app": - when: - os: mac store: steam - /BlockLegendDX.exe: + "/BlockLegendDX.exe": - when: - os: windows store: steam - /BlockLegendDX.x86: + "/BlockLegendDX.x86": - when: - os: linux store: steam @@ -67404,17 +67603,20 @@ Block N Load: installDir: BlockNLoad: {} launch: - /BlockNLoadLauncher.exe: + "/BlockNLoadLauncher.exe": - when: - bit: 32 os: windows store: steam - /Linux64/BlockNLoad.x86-64: + - bit: 64 + os: windows + store: steam + "/Linux64/BlockNLoad.x86-64": - when: - bit: 64 os: linux store: steam - /OSX64/BlockNLoad.app: + "/OSX64/BlockNLoad.app": - arguments: +no_sound when: - bit: 64 @@ -67426,11 +67628,11 @@ Block Party Sports: installDir: Block Party Sports: {} launch: - /BlockPartySports.exe: + "/BlockPartySports.exe": - when: - os: windows store: steam - /BlockPartySports_Mac.app: + "/BlockPartySports_Mac.app": - when: - os: mac store: steam @@ -67440,7 +67642,7 @@ Block Pooper 9: installDir: Block Pooper 9: {} launch: - /Block Pooper 9.exe: + "/Block Pooper 9.exe": - when: - os: windows store: steam @@ -67453,15 +67655,15 @@ Block Robot Mini Survival Game: installDir: Block Robot Mini Survival Game: {} launch: - /Block Robot Mini Survival Game.app: + "/Block Robot Mini Survival Game.app": - when: - os: mac store: steam - /Block Robot Mini Survival Game.exe: + "/Block Robot Mini Survival Game.exe": - when: - os: windows store: steam - /BlockRobot.sh: + "/BlockRobot.sh": - when: - os: linux store: steam @@ -67476,7 +67678,7 @@ Block Run: installDir: Block Run: {} launch: - /Block Run.exe: + "/Block Run.exe": - when: - os: windows store: steam @@ -67486,7 +67688,7 @@ Block Shock: installDir: Blockshock: {} launch: - /Block Shock.exe: + "/Block Shock.exe": - when: - os: windows store: steam @@ -67499,7 +67701,7 @@ Block Smashers VR: id: 845170 Block Story: files: - /AppData/LocalLow/Mindblocks/Block Story: + "/AppData/LocalLow/Mindblocks/Block Story": tags: - save when: @@ -67507,15 +67709,15 @@ Block Story: installDir: BlockStory: {} launch: - /Block Story.exe: + "/Block Story.exe": - when: - os: windows store: steam steam: id: 270110 -'Block Survival: Legend of the Lost Islands': +"Block Survival: Legend of the Lost Islands": files: - /AppData/LocalLow/Inter Pixel Arts/Block Survival_ Legend of the Lost Islands: + "/AppData/LocalLow/Inter Pixel Arts/Block Survival_ Legend of the Lost Islands": tags: - save when: @@ -67523,20 +67725,20 @@ Block Story: installDir: Block Survival Legend of the Lost Islands: {} launch: - /BlockSurvival.app: + "/BlockSurvival.app": - when: - os: mac store: steam - /BlockSurvival.exe: + "/BlockSurvival.exe": - when: - os: windows store: steam - /BlockSurvival.x86: + "/BlockSurvival.x86": - when: - bit: 32 os: linux store: steam - /BlockSurvival.x86_64: + "/BlockSurvival.x86_64": - when: - bit: 64 os: linux @@ -67547,7 +67749,7 @@ Block Tuner: installDir: Block Tuner: {} launch: - /player.exe: + "/player.exe": - when: - os: windows store: steam @@ -67557,7 +67759,7 @@ Block Warriors: installDir: Block Warriors: {} launch: - /Block_Warriors.exe: + "/Block_Warriors.exe": - when: - os: windows store: steam @@ -67575,45 +67777,45 @@ Block of Rum: installDir: Block of Rum: {} launch: - /Block of rum.exe: + "/Block of rum.exe": - when: - store: steam steam: id: 1009180 -Block'hood: +"Block'hood": gog: id: 1457531523 installDir: Blockhood: {} launch: - /BH_LINUX_UNI.x86_64: + "/BH_LINUX_UNI.x86_64": - when: - os: linux store: steam - /BLOCKHOOD v0_40_08.exe: + "/BLOCKHOOD v0_40_08.exe": - when: - os: windows store: steam - /BLOCKHOODv0_60_20_MAC.app/Contents/MacOS/BLOCKHOODv0_60_20_MAC: + "/BLOCKHOODv0_60_20_MAC.app/Contents/MacOS/BLOCKHOODv0_60_20_MAC": - when: - os: mac store: steam steam: id: 416210 -Block'hood VR: +"Block'hood VR": installDir: - Block'hood VR: {} + "Block'hood VR": {} steam: id: 787720 BlockAid: installDir: BlockAid: {} launch: - /BlockAid.app: + "/BlockAid.app": - when: - os: mac store: steam - /BlockAid.exe: + "/BlockAid.exe": - when: - os: windows store: steam @@ -67623,7 +67825,7 @@ BlockDoc: installDir: BlockDoc: {} launch: - /Blockdoc2.exe: + "/Blockdoc2.exe": - when: - bit: 64 os: windows @@ -67634,12 +67836,12 @@ BlockDude: installDir: BlockDude: {} launch: - /BlockDude: + "/BlockDude": - when: - bit: 64 os: linux store: steam - /BlockDude.exe: + "/BlockDude.exe": - when: - bit: 64 os: windows @@ -67650,22 +67852,22 @@ BlockGame: installDir: BlockGame: {} launch: - /BlockGame.exe: + "/BlockGame.exe": - when: - os: windows store: steam steam: id: 688110 -'BlockShip Wars: Roguelike': +"BlockShip Wars: Roguelike": installDir: BlockShip Wars Roguelike: {} launch: - /BSWR: + "/BSWR": - when: - bit: 64 os: linux store: steam - /BSWR.exe: + "/BSWR.exe": - when: - bit: 64 os: windows @@ -67676,7 +67878,7 @@ Blockade 3D: installDir: Blockade3d: {} launch: - /Blockade3D.exe: + "/Blockade3D.exe": - when: - os: windows store: steam @@ -67686,18 +67888,18 @@ Blockade Classic: installDir: BLOCKADE: {} launch: - /BlockadeEAC.exe: + "/BlockadeEAC.exe": - when: - bit: 64 os: windows store: steam steam: id: 1049800 -'Blockade: War Stories': +"Blockade: War Stories": installDir: BLOCKADE War Stories: {} launch: - /BlockadeWarStories.exe: + "/BlockadeWarStories.exe": - when: - os: windows store: steam @@ -67707,20 +67909,20 @@ Blockara: installDir: Blockara: {} launch: - /Blockara.app: + "/Blockara.app": - when: - os: mac store: steam - /Blockara.exe: + "/Blockara.exe": - when: - os: windows store: steam - /Blockara.x86: + "/Blockara.x86": - when: - bit: 32 os: linux store: steam - /Blockara.x86_64: + "/Blockara.x86_64": - when: - bit: 64 os: linux @@ -67731,11 +67933,11 @@ Blockchain Tycoon: installDir: Blockchain Tycoon: {} launch: - /BlockchainTycoon.app/Contents/MacOS/BlockchainTycoon: + "/BlockchainTycoon.app/Contents/MacOS/BlockchainTycoon": - when: - os: mac store: steam - /BlockchainTycoon.exe: + "/BlockchainTycoon.exe": - when: - os: windows store: steam @@ -67745,16 +67947,16 @@ Blocked and Loaded: installDir: Blocked and Loaded: {} launch: - /ZombiesGoBoom.exe: + "/ZombiesGoBoom.exe": - when: - store: steam steam: id: 772270 -'Blockey: Block Yeah!': +"Blockey: Block Yeah!": installDir: BlockeyHockey: {} launch: - /BlockeyOG.exe: + "/BlockeyOG.exe": - when: - bit: 64 os: windows @@ -67763,32 +67965,32 @@ Blocked and Loaded: id: 1145280 Blockland: files: - /config: + "/config": tags: - config when: - store: steam - /saves: + "/saves": tags: - save when: - store: steam - /Documents/Blockland/config: + "/Documents/Blockland/config": tags: - config when: - os: mac - /Documents/Blockland/saves: + "/Documents/Blockland/saves": tags: - save when: - os: mac - /Blockland/config: + "/Blockland/config": tags: - config when: - os: windows - /Blockland/saves: + "/Blockland/saves": tags: - save when: @@ -67796,12 +67998,12 @@ Blockland: installDir: Blockland: {} launch: - /Blockland.app: + "/Blockland.app": - arguments: ptlaaxobimwroe -noconsole -steam when: - os: mac store: steam - /blockland.exe: + "/blockland.exe": - arguments: ptlaaxobimwroe -noconsole -steam when: - os: windows @@ -67812,7 +68014,7 @@ Blockle: installDir: Blockle: {} launch: - /Blockle.exe: + "/Blockle.exe": - when: - os: windows store: steam @@ -67822,7 +68024,7 @@ Blockoid: installDir: Blockoid: {} launch: - /Blockoid.exe: + "/Blockoid.exe": - when: - store: steam steam: @@ -67831,15 +68033,15 @@ Blockpocalypse: installDir: Blockpocalypse: {} launch: - /Blockpocalypse.app/Contents/MacOS/Blockpocalypse: + "/Blockpocalypse.app/Contents/MacOS/Blockpocalypse": - when: - os: mac store: steam - /Blockpocalypse.exe: + "/Blockpocalypse.exe": - when: - os: windows store: steam - /Blockpocalypse.x86_64: + "/Blockpocalypse.x86_64": - when: - bit: 64 os: linux @@ -67855,15 +68057,15 @@ Blocks (2019): installDir: blocks: {} launch: - /nw: + "/nw": - when: - os: linux store: steam - /nw.exe: + "/nw.exe": - when: - os: windows store: steam - /osx64/blocks.app/Contents/MacOS/nwjs: + "/osx64/blocks.app/Contents/MacOS/nwjs": - when: - os: mac store: steam @@ -67871,28 +68073,28 @@ Blocks (2019): id: 1004570 Blocks That Matter: files: - /Blocks That Matter Save: + "/Blocks That Matter Save": tags: - save when: - os: windows - /config: + "/config": tags: - config when: - os: windows - /.BlocksThatMatterUserDatas: + "/.BlocksThatMatterUserDatas": tags: - config - save when: - os: linux - /BlocksThatMatterUserDatas/Blocks That Matter Save: + "/BlocksThatMatterUserDatas/Blocks That Matter Save": tags: - save when: - os: windows - /BlocksThatMatterUserDatas/config: + "/BlocksThatMatterUserDatas/config": tags: - config when: @@ -67902,46 +68104,52 @@ Blocks That Matter: installDir: Blocks That Matter: {} launch: - /BTM_launcher_linux.sh: + "/BTM_launcher_linux.sh": - when: - os: linux store: steam - /BTM_launcher_osx.app: + "/BTM_launcher_osx.app": - when: - os: mac store: steam - /BTM_launcher_win.exe: - - arguments: '-d32' + "/BTM_launcher_win.exe": + - arguments: "-d32" when: - os: windows store: steam steam: id: 111800 -'Blocks!: Julius Caesar': +"Blocks!: Julius Caesar": installDir: Blocks! Julius Caesar: {} launch: - /Blocks! Julius Caesar.app/Contents/MacOS/Blocks! Julius Caesar: + "/Blocks! Julius Caesar.app/Contents/MacOS/Blocks! Julius Caesar": - when: - os: mac store: steam - /Blocks! Julius Caesar.exe: + "/Blocks! Julius Caesar.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam steam: id: 1162670 -'Blocks!: Richard III': +"Blocks!: Richard III": installDir: Blocks! Richard III: {} launch: - /Blocks! Richard III.app/Contents/MacOS/Blocks! Richard III: + "/Blocks! Richard III.app/Contents/MacOS/Blocks! Richard III": - when: - os: mac store: steam - /Blocks! Richard III.exe: + "/Blocks! Richard III.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam @@ -67951,7 +68159,7 @@ Blockscape: installDir: Blockscape: {} launch: - /Blockscape.exe: + "/Blockscape.exe": - when: - store: steam steam: @@ -67960,32 +68168,32 @@ Blockships: installDir: Blockships: {} launch: - /Blockships Linux.x86: + "/Blockships Linux.x86": - when: - bit: 32 os: linux store: steam - /Blockships Linux.x86_64: + "/Blockships Linux.x86_64": - when: - bit: 64 os: linux store: steam - /Blockships Mac32.app: + "/Blockships Mac32.app": - when: - bit: 32 os: mac store: steam - /Blockships Mac64.app: + "/Blockships Mac64.app": - when: - bit: 64 os: mac store: steam - /Blockships Win632.exe: + "/Blockships Win632.exe": - when: - bit: 32 os: windows store: steam - /Blockships Win64.exe: + "/Blockships Win64.exe": - when: - bit: 64 os: windows @@ -67996,7 +68204,7 @@ Blocksplode: installDir: Blocksplode: {} launch: - /Blocksplode.exe: + "/Blocksplode.exe": - when: - store: steam steam: @@ -68005,15 +68213,15 @@ Blockstorm: installDir: Blockstorm: {} launch: - /Blockstorm: + "/Blockstorm": - when: - os: linux store: steam - /Blockstorm.app: + "/Blockstorm.app": - when: - os: mac store: steam - /Blockstorm.exe: + "/Blockstorm.exe": - when: - os: windows store: steam @@ -68023,21 +68231,21 @@ Blocksworld: installDir: Blocksworld: {} launch: - /Blocksworld.app: + "/Blocksworld.app": - when: - os: mac store: steam - /Blocksworld.exe: + "/Blocksworld.exe": - when: - os: windows store: steam steam: id: 642390 -Blockus' Adventures: +"Blockus' Adventures": installDir: BlockusAdventure: {} launch: - /BlockusAdventures.exe: + "/BlockusAdventures.exe": - when: - bit: 64 os: windows @@ -68048,20 +68256,20 @@ Blockwick 2: installDir: Blockwick 2: {} launch: - /Blockwick 2.app: + "/Blockwick 2.app": - when: - os: mac store: steam - /Blockwick 2.exe: + "/Blockwick 2.exe": - when: - os: windows store: steam - /Blockwick 2.x86: + "/Blockwick 2.x86": - when: - bit: 32 os: linux store: steam - /Blockwick 2.x86_64: + "/Blockwick 2.x86_64": - when: - bit: 64 os: linux @@ -68072,7 +68280,7 @@ Blocky McBlockFace: installDir: Blocky McBlockFace: {} launch: - /Blocky McBlockFace.exe: + "/Blocky McBlockFace.exe": - when: - os: windows store: steam @@ -68082,7 +68290,7 @@ Blocky Snake: installDir: Blocky Snake: {} launch: - /Blocky Snake.exe: + "/Blocky Snake.exe": - when: - os: windows store: steam @@ -68095,7 +68303,7 @@ Blok Drop Neo: installDir: BLOK DROP NEO: {} launch: - /nw.exe: + "/nw.exe": - when: - bit: 64 os: windows @@ -68106,7 +68314,7 @@ Blokdodge: installDir: BLOKDODGE: {} launch: - /BLOKDODGE.exe: + "/BLOKDODGE.exe": - when: - os: windows store: steam @@ -68116,11 +68324,11 @@ Blokin: installDir: Blokin: {} launch: - /Blokin.app/Contents/MacOS/Blokin: + "/Blokin.app/Contents/MacOS/Blokin": - when: - os: mac store: steam - /Blokin.exe: + "/Blokin.exe": - when: - os: windows store: steam @@ -68130,14 +68338,14 @@ Blonde Driver: installDir: Blonde Driver: {} launch: - /car kit.exe: + "/car kit.exe": - when: - store: steam steam: id: 828960 Bloo Kid 2: files: - /.monkeystate: + "/.monkeystate": tags: - save when: @@ -68145,7 +68353,7 @@ Bloo Kid 2: installDir: Bloo Kid 2: {} launch: - /BlooKid2.exe: + "/BlooKid2.exe": - when: - os: windows store: steam @@ -68153,12 +68361,12 @@ Bloo Kid 2: id: 379640 Blood: files: - /*.SAV: + "/*.SAV": tags: - save when: - os: dos - /BLOOD.CFG: + "/BLOOD.CFG": tags: - config when: @@ -68168,38 +68376,38 @@ Blood: installDir: One Unit Whole Blood: {} launch: - /dosbox.exe: - - arguments: '-conf dosboxBlood.conf -noconsole -c \"exit\"' + "/dosbox.exe": + - arguments: "-conf dosboxBlood.conf -noconsole -c \\\"exit\\\"" when: - os: windows store: steam steam: id: 299030 -'Blood & Gold: Caribbean!': +"Blood & Gold: Caribbean!": gog: id: 1448275717 installDir: Blood & Gold Caribbean!: {} launch: - /Launcher.exe: + "/Launcher.exe": - when: - store: steam steam: id: 413710 -Blood 'n Bikinis: +"Blood 'n Bikinis": installDir: - Blood 'n Bikinis: {} + "Blood 'n Bikinis": {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: id: 596200 -'Blood Alloy: Reborn': +"Blood Alloy: Reborn": installDir: Blood Alloy Reborn: {} launch: - /BloodAlloyRebornWindows.exe: + "/BloodAlloyRebornWindows.exe": - when: - os: windows store: steam @@ -68209,8 +68417,8 @@ Blood Ancestors: installDir: Blood Ancestors: {} launch: - /BloodAncestors.exe: - - arguments: '-PFApp=6D6E -SaveToUserDir' + "/BloodAncestors.exe": + - arguments: "-PFApp=6D6E -SaveToUserDir" when: - os: windows store: steam @@ -68223,7 +68431,7 @@ Blood Bond - Into the Shroud: installDir: Blood Bond - Into the Shroud: {} launch: - /IntoTheShroud.exe: + "/IntoTheShroud.exe": - when: - bit: 64 os: windows @@ -68232,7 +68440,7 @@ Blood Bond - Into the Shroud: id: 820890 Blood Bowl (2009): files: - /BloodBowl: + "/BloodBowl": tags: - save when: @@ -68240,19 +68448,19 @@ Blood Bowl (2009): installDir: Blood Bowl Legendary Edition: {} launch: - /BB_LE.exe: + "/BB_LE.exe": - when: - store: steam steam: id: 58520 Blood Bowl 2: files: - /Data: + "/Data": tags: - config when: - os: windows - /BloodBowl2: + "/BloodBowl2": tags: - config - save @@ -68263,15 +68471,15 @@ Blood Bowl 2: installDir: Blood Bowl 2: {} launch: - /BloodBowl2.exe: + "/BloodBowl2.exe": - when: - os: windows store: steam - /Launcher.app: + "/Launcher.app": - when: - os: mac store: steam - /launcher.bat: + "/launcher.bat": - when: - os: windows store: steam @@ -68281,20 +68489,20 @@ Blood Bowl 3: installDir: Blood Bowl 3: {} launch: - /BB3.exe: - - arguments: '-SaveToUserDir' + "/BB3.exe": + - arguments: "-SaveToUserDir" when: - store: steam steam: id: 1016950 -'Blood Bowl: Chaos Edition': +"Blood Bowl: Chaos Edition": files: - /Data: + "/Data": tags: - config when: - os: windows - /bloodbowlchaos/saves: + "/bloodbowlchaos/saves": tags: - save when: @@ -68304,17 +68512,17 @@ Blood Bowl 3: installDir: Blood Bowl Chaos Edition: {} launch: - /BB_Chaos.exe: - - arguments: '-skip_videos' + "/BB_Chaos.exe": + - arguments: "-skip_videos" when: - store: steam steam: id: 216890 -'Blood Bowl: Death Zone': +"Blood Bowl: Death Zone": installDir: BloodBowlDeathZone: {} launch: - /BBDZ.exe: + "/BBDZ.exe": - when: - bit: 64 os: windows @@ -68332,14 +68540,14 @@ Blood Brothers: installDir: Blood Brothers: {} launch: - /CapstoneGame.exe: + "/CapstoneGame.exe": - when: - store: steam steam: id: 1069940 Blood Card: files: - /AppData/LocalLow/PixelCattleGames/BloodCard: + "/AppData/LocalLow/PixelCattleGames/BloodCard": tags: - config - save @@ -68348,11 +68556,11 @@ Blood Card: installDir: BloodCard: {} launch: - /BloodCard.app: + "/BloodCard.app": - when: - os: mac store: steam - /BloodCard.exe: + "/BloodCard.exe": - when: - os: windows store: steam @@ -68362,7 +68570,7 @@ Blood City: installDir: MyGame: {} launch: - /nw.exe: + "/nw.exe": - when: - bit: 64 os: windows @@ -68371,22 +68579,22 @@ Blood City: id: 922520 Blood Code: files: - /game/saves/*.save: + "/game/saves/*.save": tags: - save when: - os: windows - /game/saves/persistent: + "/game/saves/persistent": tags: - config when: - os: windows - /RenPy/Blood Code/*.save: + "/RenPy/Blood Code/*.save": tags: - save when: - os: windows - /RenPy/Blood Code/persistent: + "/RenPy/Blood Code/persistent": tags: - config when: @@ -68394,15 +68602,15 @@ Blood Code: installDir: Blood Code: {} launch: - /BloodCode.exe: + "/BloodCode.exe": - when: - os: windows store: steam - /lib/linux-x86_64/renpy: + "/lib/linux-x86_64/renpy": - when: - os: linux store: steam - /lib/mac-x86_64/renpy: + "/lib/mac-x86_64/renpy": - when: - os: mac store: steam @@ -68415,7 +68623,7 @@ Blood Drift: installDir: Blood Drift: {} launch: - /blooddrift.exe: + "/blooddrift.exe": - when: - os: windows store: steam @@ -68425,15 +68633,15 @@ Blood Feed: installDir: Blood Feed: {} launch: - /BloodFeed.app/Contents/MacOS/BloodFeed: + "/BloodFeed.app/Contents/MacOS/BloodFeed": - when: - os: mac store: steam - /BloodFeed.exe: + "/BloodFeed.exe": - when: - os: windows store: steam - /BloodFeed.x86: + "/BloodFeed.x86": - when: - os: linux store: steam @@ -68446,7 +68654,7 @@ Blood Harvest 2: installDir: Blood Harvest 2: {} launch: - /BloodHarvest2.exe: + "/BloodHarvest2.exe": - when: - os: windows store: steam @@ -68456,15 +68664,15 @@ Blood Harvest 3: installDir: Blood Harvest 3: {} launch: - /BloodHarvest3.exe: + "/BloodHarvest3.exe": - when: - os: windows store: steam steam: id: 851180 -'Blood II: The Chosen': +"Blood II: The Chosen": files: - /Save: + "/Save": tags: - save when: @@ -68474,7 +68682,7 @@ Blood Harvest 3: installDir: Blood II: {} launch: - /BLOOD2.EXE: + "/BLOOD2.EXE": - when: - store: steam steam: @@ -68483,29 +68691,29 @@ Blood Island: installDir: Blood Island: {} launch: - /BloodIsland.exe: + "/BloodIsland.exe": - when: - store: steam steam: id: 1009810 Blood Knights: files: - /settings.ini: + "/settings.ini": tags: - config when: - os: windows - /userdata//258220/remote: + "/userdata//258220/remote": tags: - save when: - store: steam - /BloodKnights/save: + "/BloodKnights/save": tags: - save when: - os: windows - /BloodKnights/settings.ini: + "/BloodKnights/settings.ini": tags: - config when: @@ -68513,7 +68721,7 @@ Blood Knights: installDir: Blood Knights: {} launch: - /BloodKnights.exe: + "/BloodKnights.exe": - when: - os: windows store: steam @@ -68523,7 +68731,7 @@ Blood Magic: installDir: Blood Magic: {} launch: - /Blood Magic.exe: + "/Blood Magic.exe": - when: - os: windows store: steam @@ -68533,15 +68741,15 @@ Blood Money: installDir: Blood Money: {} launch: - /Blood Money.app/Contents/MacOS/Blood Money: + "/Blood Money.app/Contents/MacOS/Blood Money": - when: - os: mac store: steam - /BloodMoney: + "/BloodMoney": - when: - os: linux store: steam - /BloodMoney.exe: + "/BloodMoney.exe": - when: - os: windows store: steam @@ -68551,31 +68759,31 @@ Blood Moon: installDir: Blood Moon: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam steam: id: 1023030 -'Blood Moon: The Last Stand': +"Blood Moon: The Last Stand": installDir: Bloodmoon The Last Stand: {} launch: - /bloodmoon.exe: + "/bloodmoon.exe": - when: - os: windows store: steam steam: id: 806480 -'Blood Omen: Legacy of Kain': +"Blood Omen: Legacy of Kain": files: - /SAVED: + "/SAVED": tags: - config - save when: - os: windows - /Saves: + "/Saves": tags: - config - save @@ -68586,15 +68794,15 @@ Blood Moon: Blood Opera Crescendo: steam: id: 1114480 -'Blood Rage: Digital Edition': +"Blood Rage: Digital Edition": installDir: BloodRageDigitalEdition: {} launch: - /BloodRage.app/Contents/MacOS/BloodRage: + "/BloodRage.app/Contents/MacOS/BloodRage": - when: - os: mac store: steam - /BloodRage.exe: + "/BloodRage.exe": - when: - bit: 64 os: windows @@ -68605,7 +68813,7 @@ Blood Scrolls: installDir: Blood Scrolls: {} launch: - /Blood Scrolls.exe: + "/Blood Scrolls.exe": - when: - os: windows store: steam @@ -68613,7 +68821,7 @@ Blood Scrolls: id: 1196320 Blood Spear: files: - /Blood_Spear/Saved/SaveGames: + "/Blood_Spear/Saved/SaveGames": tags: - save when: @@ -68621,7 +68829,7 @@ Blood Spear: installDir: Blood Spear: {} launch: - /WindowsNoEditor/Blood_Spear.exe: + "/WindowsNoEditor/Blood_Spear.exe": - when: - bit: 64 os: windows @@ -68632,7 +68840,7 @@ Blood Ties (2016): installDir: Blood Ties: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: @@ -68646,7 +68854,7 @@ Blood Waves: installDir: Blood Waves: {} launch: - /Blood Waves.exe: + "/Blood Waves.exe": - when: - os: windows store: steam @@ -68656,7 +68864,7 @@ Blood West: installDir: Blood West: {} launch: - /Blood West.exe: + "/Blood West.exe": - when: - os: windows store: steam @@ -68664,12 +68872,12 @@ Blood West: id: 1587130 Blood and Bacon: files: - /IsolatedStorage/*.*/*.*/*.*/*.*/Files/savegame: + "/IsolatedStorage/*.*/*.*/*.*/*.*/Files/savegame": tags: - save when: - os: windows - /IsolatedStorage/*.*/*.*/*.*/*.*/Files/saveprefs: + "/IsolatedStorage/*.*/*.*/*.*/*.*/Files/saveprefs": tags: - config when: @@ -68677,7 +68885,7 @@ Blood and Bacon: installDir: Blood and Bacon: {} launch: - /BloodandBacon.exe: + "/BloodandBacon.exe": - when: - os: windows store: steam @@ -68687,11 +68895,11 @@ Blood and Lust: installDir: Blood and Lust: {} launch: - /BloodandLust-1.0-pc/BloodandLust.exe: + "/BloodandLust-1.0-pc/BloodandLust.exe": - when: - os: windows store: steam - /BloodandLust.app/Contents/MacOS/BloodandLust: + "/BloodandLust.app/Contents/MacOS/BloodandLust": - when: - os: mac store: steam @@ -68701,7 +68909,7 @@ Blood and Zombies: installDir: Blood And Zombies: {} launch: - /BloodAndZombies.exe: + "/BloodAndZombies.exe": - when: - os: windows store: steam @@ -68711,7 +68919,7 @@ Blood of Magic: installDir: Stoneworks_Games: {} launch: - /BloodofMagic.exe: + "/BloodofMagic.exe": - when: - os: windows store: steam @@ -68719,12 +68927,12 @@ Blood of Magic: id: 426590 Blood of Old - The Rise to Greatness!: files: - /BloodofOld32_Data/bloodofoldsave: + "/BloodofOld32_Data/bloodofoldsave": tags: - save when: - os: windows - /BloodofOld_Data/bloodofoldsave: + "/BloodofOld_Data/bloodofoldsave": tags: - save when: @@ -68739,7 +68947,7 @@ Blood of Patriots: installDir: Blood of Patriots: {} launch: - /blood_of_patriots.exe: + "/blood_of_patriots.exe": - when: - os: windows store: steam @@ -68752,10 +68960,10 @@ Blood of the Werewolf: installDir: Blood of the Werewolf: {} launch: - /bin/Blood of the Werewolf.exe: + "/bin/Blood of the Werewolf.exe": - when: - store: steam - workingDir: /bin + workingDir: "/bin" registry: HKEY_CURRENT_USER/Software/Scientifically Proven Entertainment/Blood of the Werewolf/Settings: tags: @@ -68766,25 +68974,25 @@ Blood will be Spilled: installDir: Blood will be Spilled: {} launch: - /BloodWillBeSpilled.app: + "/BloodWillBeSpilled.app": - when: - os: mac store: steam - /BloodWillBeSpilled.exe: + "/BloodWillBeSpilled.exe": - when: - bit: 64 os: windows store: steam steam: id: 880300 -'Blood: Fresh Supply': +"Blood: Fresh Supply": files: - /Nightdive Studios/Blood EX/kexengine.cfg: + "/Nightdive Studios/Blood EX/kexengine.cfg": tags: - config when: - os: windows - /Nightdive Studios/Blood EX/saves/save_**.sav: + "/Nightdive Studios/Blood EX/saves/save_**.sav": tags: - save when: @@ -68794,12 +69002,12 @@ Blood will be Spilled: installDir: Blood: {} launch: - /anuket_x64.exe: + "/anuket_x64.exe": - when: - bit: 64 os: windows store: steam - - arguments: '-addon \"addons\\Cryptic Passage\\\"' + - arguments: "-addon \\\"addons\\\\Cryptic Passage\\\\\\\"" when: - bit: 64 os: windows @@ -68810,28 +69018,28 @@ BloodGate: installDir: BloodGate: {} launch: - /BloodGate.app/Contents/MacOS/BloodGate: + "/BloodGate.app/Contents/MacOS/BloodGate": - when: - os: mac store: steam - /BloodGate.exe: + "/BloodGate.exe": - when: - os: windows store: steam - /BloodGate.x86: + "/BloodGate.x86": - when: - os: linux store: steam steam: id: 464470 -'BloodLust 2: Nemesis': +"BloodLust 2: Nemesis": files: - /Dungeon/Saved/Config/WindowsNoEditor: + "/Dungeon/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /Dungeon/Saved/SaveGames: + "/Dungeon/Saved/SaveGames": tags: - save when: @@ -68839,14 +69047,14 @@ BloodGate: installDir: Bloodlust 2 Nemesis: {} launch: - /Bloodlust2.exe: + "/Bloodlust2.exe": - when: - store: steam steam: id: 758080 BloodLust Shadowhunter: files: - /UDKGame/Config: + "/UDKGame/Config": tags: - config - save @@ -68855,7 +69063,7 @@ BloodLust Shadowhunter: installDir: BloodLust Shadowhunter: {} launch: - /bloodlust_start.bat: + "/bloodlust_start.bat": - when: - os: windows store: steam @@ -68863,12 +69071,12 @@ BloodLust Shadowhunter: id: 280600 BloodNet: files: - /BLOODNET.CFG: + "/BLOODNET.CFG": tags: - config when: - os: dos - /SAVE: + "/SAVE": tags: - save when: @@ -68881,52 +69089,52 @@ BloodNet: installDir: BloodNet: {} launch: - /BloodNet.app: + "/BloodNet.app": - when: - os: mac store: steam - /dosbox_linux/daum/launch_bloodnet_game_daum.sh: + "/dosbox_linux/daum/launch_bloodnet_game_daum.sh": - when: - os: linux store: steam - workingDir: /dosbox_linux/daum - /dosbox_linux/launch_bloodnet_config.sh: + workingDir: "/dosbox_linux/daum" + "/dosbox_linux/launch_bloodnet_config.sh": - when: - os: linux store: steam - workingDir: /dosbox_linux - /dosbox_linux/launch_bloodnet_game.sh: + workingDir: "/dosbox_linux" + "/dosbox_linux/launch_bloodnet_game.sh": - when: - os: linux store: steam - workingDir: /dosbox_linux - /dosbox_windows/daum/dosbox.exe: - - arguments: '-conf dosbox_bloodnet.conf -conf dosbox_bloodnet_launch_windows.conf -noconsole' + workingDir: "/dosbox_linux" + "/dosbox_windows/daum/dosbox.exe": + - arguments: "-conf dosbox_bloodnet.conf -conf dosbox_bloodnet_launch_windows.conf -noconsole" when: - os: windows store: steam - workingDir: /dosbox_windows/daum - /dosbox_windows/dosbox.exe: - - arguments: '-conf dosbox_bloodnet.conf -conf dosbox_bloodnet_launch_windows.conf -noconsole' + workingDir: "/dosbox_windows/daum" + "/dosbox_windows/dosbox.exe": + - arguments: "-conf dosbox_bloodnet.conf -conf dosbox_bloodnet_launch_windows.conf -noconsole" when: - os: windows store: steam - workingDir: /dosbox_windows - - arguments: '-conf dosbox_bloodnet.conf -conf dosbox_bloodnet_config_windows.conf -noconsole' + workingDir: "/dosbox_windows" + - arguments: "-conf dosbox_bloodnet.conf -conf dosbox_bloodnet_config_windows.conf -noconsole" when: - os: windows store: steam - workingDir: /dosbox_windows + workingDir: "/dosbox_windows" steam: id: 327920 BloodRayne: files: - /savegame: + "/savegame": tags: - save when: - os: windows - /system: + "/system": tags: - config when: @@ -68939,19 +69147,19 @@ BloodRayne: installDir: BloodRayne: {} launch: - /rayne.exe: + "/rayne.exe": - when: - store: steam steam: id: 3810 BloodRayne 2: files: - /savegame: + "/savegame": tags: - save when: - os: windows - /system: + "/system": tags: - config when: @@ -68964,19 +69172,19 @@ BloodRayne 2: installDir: BloodRayne 2: {} launch: - /br2.exe: + "/br2.exe": - when: - store: steam steam: id: 3820 -'BloodRayne 2: Terminal Cut': +"BloodRayne 2: Terminal Cut": files: - /BloodRayne2/savegame: + "/BloodRayne2/savegame": tags: - save when: - os: windows - /BloodRayne2/settings/rayne2.ini: + "/BloodRayne2/settings/rayne2.ini": tags: - config when: @@ -68989,15 +69197,15 @@ BloodRayne 2: installDir: BloodRayne 2 Terminal Cut: {} launch: - /rayne2.exe: + "/rayne2.exe": - when: - os: windows store: steam steam: id: 1373550 -'BloodRayne Betrayal: Fresh Bites': +"BloodRayne Betrayal: Fresh Bites": files: - /Wayforward Technologies/BloodRayne: + "/Wayforward Technologies/BloodRayne": tags: - config - save @@ -69008,16 +69216,16 @@ BloodRayne 2: installDir: BloodRayne Betrayal Fresh Bites: {} launch: - /executable/bloodrayne.exe: + "/executable/bloodrayne.exe": - when: - bit: 64 os: windows store: steam steam: id: 1550260 -'BloodRayne: Betrayal': +"BloodRayne: Betrayal": files: - /Wayforward Technologies/BloodRayne: + "/Wayforward Technologies/BloodRayne": tags: - config - save @@ -69028,21 +69236,21 @@ BloodRayne 2: installDir: Blood Rayne Betrayal: {} launch: - /bin/bloodrayne.exe: + "/bin/bloodrayne.exe": - when: - os: windows store: steam - workingDir: /bin + workingDir: "/bin" steam: id: 281220 -'BloodRayne: Terminal Cut': +"BloodRayne: Terminal Cut": files: - /BloodRayne1/savegame: + "/BloodRayne1/savegame": tags: - save when: - os: windows - /BloodRayne1/settings: + "/BloodRayne1/settings": tags: - config when: @@ -69055,21 +69263,21 @@ BloodRayne 2: installDir: BloodRayne Terminal Cut: {} launch: - /rayne1.exe: + "/rayne1.exe": - when: - os: windows store: steam steam: id: 1373510 -'BloodRealm: Battlegrounds': +"BloodRealm: Battlegrounds": installDir: BloodRealm Battlegrounds: {} launch: - /BRSteamAir.app: + "/BRSteamAir.app": - when: - os: mac store: steam - /BRSteamAir.exe: + "/BRSteamAir.exe": - when: - bit: 32 os: windows @@ -69080,8 +69288,8 @@ Bloodbath: installDir: Bloodbath: {} launch: - /Launcher.exe: - - arguments: '-s' + "/Launcher.exe": + - arguments: "-s" when: - os: windows store: steam @@ -69092,12 +69300,12 @@ Bloodbath: id: 304150 Bloodbath Kavkaz: files: - /data: + "/data": tags: - config when: - os: windows - /Dagestan Technology/Bloodbath Kavkaz: + "/Dagestan Technology/Bloodbath Kavkaz": tags: - save when: @@ -69111,7 +69319,7 @@ Bloodgeon: installDir: Bloodgeon: {} launch: - /DBM.exe: + "/DBM.exe": - when: - bit: 64 os: windows @@ -69125,7 +69333,7 @@ Blooding Runner X: installDir: Blood Runner: {} launch: - /BloodRunner.exe: + "/BloodRunner.exe": - when: - bit: 64 os: windows @@ -69137,17 +69345,17 @@ Bloodless: id: 1592490 Bloodline: files: - /Default.cfe: + "/Default.cfe": tags: - config when: - os: windows - /Save: + "/Save": tags: - save when: - os: windows - /system.cfg: + "/system.cfg": tags: - config when: @@ -69156,7 +69364,7 @@ Bloodline Champions: installDir: Bloodline Champions: {} launch: - /Binary/BloodlineChampionsLoader.exe: + "/Binary/BloodlineChampionsLoader.exe": - when: - store: steam steam: @@ -69165,7 +69373,7 @@ Bloodlines of Prima: installDir: Bloodlines of Prima: {} launch: - /Bloodlines of Prima.exe: + "/Bloodlines of Prima.exe": - when: - os: windows store: steam @@ -69173,7 +69381,7 @@ Bloodlines of Prima: id: 686090 Bloodroots: files: - /AppData/LocalLow/Paper Cult/Bloodroots: + "/AppData/LocalLow/Paper Cult/Bloodroots": tags: - save when: @@ -69181,14 +69389,14 @@ Bloodroots: installDir: Bloodroots: {} launch: - /Bloodroots.exe: + "/Bloodroots.exe": - when: - store: steam steam: id: 820540 Bloodsports.TV: files: - /Toadman Interactive/BloodsportsTV/user_settings.config: + "/Toadman Interactive/BloodsportsTV/user_settings.config": tags: - config when: @@ -69196,20 +69404,20 @@ Bloodsports.TV: installDir: BloodsportsTV: {} launch: - /bloodsports.exe: - - arguments: '-bundle-dir bundle' + "/bloodsports.exe": + - arguments: "-bundle-dir bundle" when: - store: steam steam: id: 336420 -'Bloodstained: Curse of the Moon': +"Bloodstained: Curse of the Moon": files: - /exe/GameData*.bin: + "/exe/GameData*.bin": tags: - save when: - os: windows - /exe/SystemData.bin: + "/exe/SystemData.bin": tags: - config when: @@ -69217,21 +69425,21 @@ Bloodsports.TV: installDir: Bloodstained Curse of the Moon: {} launch: - /exe/COTM.exe: + "/exe/COTM.exe": - when: - os: windows store: steam - workingDir: /exe + workingDir: "/exe" steam: id: 838310 -'Bloodstained: Curse of the Moon 2': +"Bloodstained: Curse of the Moon 2": files: - /bscotm2gd*: + "/bscotm2gd*": tags: - save when: - os: windows - /config.ini: + "/config.ini": tags: - config when: @@ -69239,31 +69447,31 @@ Bloodsports.TV: installDir: Bloodstained Curse of the Moon 2: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam steam: id: 1257360 -'Bloodstained: Ritual of the Night': +"Bloodstained: Ritual of the Night": files: - /BloodstainedRotN/Saved/Config/WindowsNoEditor: + "/BloodstainedRotN/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /BloodstainedRotN/Saved/SaveGames: + "/BloodstainedRotN/Saved/SaveGames": tags: - save when: - os: windows - /Packages/505GAMESS.P.A.BloodstainedRitualoftheNightPCGP_tefn33qh9azfc/LocalCache/Local/BloodstainedRotN/Saved/Config/WindowsNoEditor: + "/Packages/505GAMESS.P.A.BloodstainedRitualoftheNightPCGP_tefn33qh9azfc/LocalCache/Local/BloodstainedRotN/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows store: microsoft - /Packages/505GAMESS.P.A.BloodstainedRitualoftheNightPCGP_tefn33qh9azfc/LocalCache/Local/BloodstainedRotN/Saved/SaveGames: + "/Packages/505GAMESS.P.A.BloodstainedRitualoftheNightPCGP_tefn33qh9azfc/LocalCache/Local/BloodstainedRotN/Saved/SaveGames": tags: - save when: @@ -69274,29 +69482,29 @@ Bloodsports.TV: installDir: Bloodstained Ritual of the Night: {} launch: - /BloodstainedRotN.exe: + "/BloodstainedRotN.exe": - when: - store: steam steam: id: 692850 -'Bloodstone: An Epic Dwarven Tale': +"Bloodstone: An Epic Dwarven Tale": files: - /DBSAV*.MCS: + "/DBSAV*.MCS": tags: - save when: - os: dos - /DBSAV.MCI: + "/DBSAV.MCI": tags: - save when: - os: dos - /NOTES*.TXT: + "/NOTES*.TXT": tags: - save when: - os: dos - /SOUNDRV.DPK: + "/SOUNDRV.DPK": tags: - config when: @@ -69306,14 +69514,14 @@ Bloodstream: Bloodstream: {} steam: id: 1049570 -'Bloodwings: Pumpkinhead''s Revenge': +"Bloodwings: Pumpkinhead's Revenge": files: - /*.PHS: + "/*.PHS": tags: - config when: - os: dos - /PUMPKIN.INI: + "/PUMPKIN.INI": tags: - save when: @@ -69322,7 +69530,7 @@ Bloodwood Reload: installDir: Bloodwood Reload: {} launch: - /Bloodwood Reload.exe: + "/Bloodwood Reload.exe": - when: - os: windows store: steam @@ -69332,7 +69540,7 @@ Bloodworks: installDir: Bloodworks: {} launch: - /bloodworks.exe: + "/bloodworks.exe": - when: - bit: 64 os: windows @@ -69341,7 +69549,7 @@ Bloodworks: id: 717990 Bloodwych: files: - /BWYSAVE.*: + "/BWYSAVE.*": tags: - save when: @@ -69351,12 +69559,12 @@ Bloodwych: installDir: bloodwych: {} launch: - /dosbox_windows/dosbox.exe: - - arguments: \"BWYCH.EXE\" -noconsole -conf \"dosbox_bloodwych.conf\" + "/dosbox_windows/dosbox.exe": + - arguments: "\\\"BWYCH.EXE\\\" -noconsole -conf \\\"dosbox_bloodwych.conf\\\"" when: - os: windows store: steam - /runBloodwych.sh: + "/runBloodwych.sh": - when: - os: linux store: steam @@ -69369,15 +69577,15 @@ Bloody Chronicles - New Cycle of Death: installDir: Bloody Chronicles - New Cycle of Death: {} launch: - /Bloody Chronicles.app: + "/Bloody Chronicles.app": - when: - os: mac store: steam - /Bloody Chronicles.exe: + "/Bloody Chronicles.exe": - when: - os: windows store: steam - /Bloody Chronicles.sh: + "/Bloody Chronicles.sh": - when: - os: linux store: steam @@ -69387,7 +69595,7 @@ Bloody Faerie: installDir: Bloody Faerie: {} launch: - /BloodyFaerie.exe: + "/BloodyFaerie.exe": - when: - store: steam steam: @@ -69396,15 +69604,15 @@ Bloody Glimpse: installDir: Bloody Glimpse: {} launch: - /BloodyGlimpse.app/Contents/MacOS/BloodyGlimpse: + "/BloodyGlimpse.app/Contents/MacOS/BloodyGlimpse": - when: - os: mac store: steam - /BloodyGlimpse.exe: + "/BloodyGlimpse.exe": - when: - os: windows store: steam - /BloodyGlimpse.x86: + "/BloodyGlimpse.x86": - when: - os: linux store: steam @@ -69414,8 +69622,8 @@ Bloody Good Time: installDir: Bloody Good Time: {} launch: - /bgt.exe: - - arguments: '-steam -game pm' + "/bgt.exe": + - arguments: "-steam -game pm" when: - store: steam steam: @@ -69431,7 +69639,7 @@ Bloody Hell: installDir: Bloody Hell: {} launch: - /Bloody Hell.exe: + "/Bloody Hell.exe": - when: - bit: 64 os: windows @@ -69442,7 +69650,7 @@ Bloody Mary: installDir: BloodyMary: {} launch: - /BloodyMary.exe: + "/BloodyMary.exe": - when: - store: steam steam: @@ -69450,19 +69658,19 @@ Bloody Mary: Bloody Mary (2019): steam: id: 886560 -'Bloody Mary: Forgotten Curse': +"Bloody Mary: Forgotten Curse": installDir: Bloody Mary - Forgotten Curse: {} launch: - /BM.app/Contents/MacOS/BM: + "/BM.app/Contents/MacOS/BM": - when: - os: mac store: steam - /BM.exe: + "/BM.exe": - when: - os: windows store: steam - /BM.x86: + "/BM.x86": - when: - os: linux store: steam @@ -69472,26 +69680,28 @@ Bloody Mice: installDir: Bloody Mice: {} launch: - /BloodyMice.exe: + "/BloodyMice.exe": - when: - os: windows store: steam + - os: linux + store: steam steam: id: 676000 Bloody Rally Show: installDir: Bloody Rally Show: {} launch: - /Bloody Rally Show.exe: + "/Bloody Rally Show.exe": - when: - os: windows store: steam - /BloodyRallyShow: + "/BloodyRallyShow": - when: - bit: 64 os: linux store: steam - /BloodyRallyShow.app: + "/BloodyRallyShow.app": - when: - os: mac store: steam @@ -69501,20 +69711,20 @@ Bloody Sand: installDir: Bloody sand: {} launch: - /Bloody Sand.app/Contents/MacOS/Bloody Sand: + "/Bloody Sand.app/Contents/MacOS/Bloody Sand": - when: - os: mac store: steam - /Bloody Sand.exe: + "/Bloody Sand.exe": - when: - os: windows store: steam - /Bloody Sand.x86: + "/Bloody Sand.x86": - when: - bit: 32 os: linux store: steam - /Bloody Sand.x86_64: + "/Bloody Sand.x86_64": - when: - bit: 64 os: linux @@ -69526,7 +69736,7 @@ Bloody Skyscraper: id: 786690 Bloody Spell: files: - /SavesDir: + "/SavesDir": tags: - save when: @@ -69534,7 +69744,7 @@ Bloody Spell: installDir: BloodySpell: {} launch: - /BloodySpell.exe: + "/BloodySpell.exe": - when: - os: windows store: steam @@ -69548,7 +69758,7 @@ Bloody Streets: installDir: Bloody Streets: {} launch: - /Bloody Streets.exe: + "/Bloody Streets.exe": - when: - os: windows store: steam @@ -69556,7 +69766,7 @@ Bloody Streets: id: 336110 Bloody Trapland: files: - /Bloody Trapland: + "/Bloody Trapland": tags: - config - save @@ -69565,21 +69775,21 @@ Bloody Trapland: installDir: Bloody Trapland: {} launch: - /Bloody Trapland.exe: + "/Bloody Trapland.exe": - when: - store: steam steam: id: 257750 -'Bloody Trapland 2: Curiosity': +"Bloody Trapland 2: Curiosity": installDir: Bloody Trapland 2: {} launch: - /Bloody Trapland 2.app: + "/Bloody Trapland 2.app": - when: - os: mac store: steam - /BloodyTrapland2.exe: - - arguments: '-popupwindow' + "/BloodyTrapland2.exe": + - arguments: "-popupwindow" when: - os: windows store: steam @@ -69589,7 +69799,7 @@ Bloody Walls: installDir: Bloody Walls: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -69599,11 +69809,11 @@ Bloody Zombies: installDir: Super Zombie Squad: {} launch: - /Run.bat: + "/Run.bat": - when: - os: windows store: steam - /SZS.app: + "/SZS.app": - when: - os: mac store: steam @@ -69613,12 +69823,12 @@ Bloody and Cruel Story of Toys: installDir: Bloody and cruel story of toys: {} launch: - /BACSOT32.exe: + "/BACSOT32.exe": - when: - bit: 32 os: windows store: steam - /BACSOT64.exe: + "/BACSOT64.exe": - when: - bit: 64 os: windows @@ -69629,11 +69839,11 @@ Bloody trains: installDir: Bloody trains: {} launch: - /BloodyTrains.app/Contents/MacOS/Bloodytrains.exe: + "/BloodyTrains.app/Contents/MacOS/Bloodytrains.exe": - when: - os: mac store: steam - /BloodyTrains.exe: + "/BloodyTrains.exe": - when: - os: windows store: steam @@ -69646,39 +69856,39 @@ Bloom (Cyberdei): installDir: Bloom: {} launch: - /Bloom.exe: + "/Bloom.exe": - when: - bit: 64 os: windows store: steam steam: id: 940870 -'Bloom: Labyrinth': +"Bloom: Labyrinth": installDir: Bloom Labyrinth: {} launch: - /Bloom_Labyrinth_WIN.exe: + "/Bloom_Labyrinth_WIN.exe": - when: - os: windows store: steam steam: id: 717710 -'Bloom: Memories': +"Bloom: Memories": steam: id: 1145440 Blooming Nightshade: installDir: Blooming Nightshade: {} launch: - /Blooming_Nightshade.app: + "/Blooming_Nightshade.app": - when: - os: mac store: steam - /Blooming_Nightshade.exe: + "/Blooming_Nightshade.exe": - when: - os: windows store: steam - /Blooming_Nightshade.sh: + "/Blooming_Nightshade.sh": - when: - os: linux store: steam @@ -69688,11 +69898,11 @@ Bloons Adventure Time TD: installDir: Bloons Adventure Time TD: {} launch: - /btdadventuretime.app: + "/btdadventuretime.app": - when: - os: mac store: steam - /btdadventuretime.exe: + "/btdadventuretime.exe": - when: - bit: 64 os: windows @@ -69705,7 +69915,7 @@ Bloons Adventure Time TD: id: 979060 Bloons TD 5: files: - /userdata//306020/local/Data/Docs: + "/userdata//306020/local/Data/Docs": tags: - config - save @@ -69715,11 +69925,11 @@ Bloons TD 5: installDir: BloonsTD5: {} launch: - /BTD5-Win.exe: + "/BTD5-Win.exe": - when: - os: windows store: steam - /btd5steam.app: + "/btd5steam.app": - when: - os: mac store: steam @@ -69727,7 +69937,7 @@ Bloons TD 5: id: 306020 Bloons TD 6: files: - /userdata//960090: + "/userdata//960090": tags: - save when: @@ -69736,11 +69946,11 @@ Bloons TD 6: installDir: BloonsTD6: {} launch: - /BloonsTD6.app/Contents/MacOS/BloonsTD6: + "/BloonsTD6.app/Contents/MacOS/BloonsTD6": - when: - os: mac store: steam - /BloonsTD6.exe: + "/BloonsTD6.exe": - when: - os: windows store: steam @@ -69752,7 +69962,7 @@ Bloons TD 6: id: 960090 Bloons TD Battles: files: - /Assets/config.ini: + "/Assets/config.ini": tags: - config when: @@ -69760,11 +69970,11 @@ Bloons TD Battles: installDir: Bloons TD Battles: {} launch: - /BTDB-Steam.app: + "/BTDB-Steam.app": - when: - os: mac store: steam - /Battles-Win.exe: + "/Battles-Win.exe": - when: - os: windows store: steam @@ -69774,11 +69984,11 @@ Bloons TD Battles 2: installDir: Bloons TD Battles 2: {} launch: - /btdb2_game.app: + "/btdb2_game.app": - when: - os: mac store: steam - /btdb2_game.exe: + "/btdb2_game.exe": - when: - os: windows store: steam @@ -69792,11 +70002,11 @@ Bloonz Toonz: installDir: Bloonz Toonz: {} launch: - /bloonztoonz.exe: + "/bloonztoonz.exe": - when: - os: windows store: steam - /mac_bloonztoonz.app: + "/mac_bloonztoonz.app": - when: - os: mac store: steam @@ -69806,7 +70016,7 @@ Bloop: installDir: Bloop: {} launch: - /Launcher.exe: + "/Launcher.exe": - when: - os: windows store: steam @@ -69816,16 +70026,16 @@ Bloop Reloaded: installDir: Bloop Reloaded: {} launch: - /BloopReloaded.exe: + "/BloopReloaded.exe": - when: - os: windows store: steam - /BloopReloaded.x86: + "/BloopReloaded.x86": - when: - bit: 32 os: linux store: steam - /BloopReloaded.x86_64: + "/BloopReloaded.x86_64": - when: - bit: 64 os: linux @@ -69837,9 +70047,9 @@ Blortasia: Blortasia_VR_Art_Maze: {} steam: id: 497450 -'Blossom Tales 2: The Minotaur Prince': +"Blossom Tales 2: The Minotaur Prince": files: - /Blossom Tales 2/save_file_*.txt: + "/Blossom Tales 2/save_file_*.txt": tags: - save when: @@ -69847,20 +70057,20 @@ Blortasia: installDir: Blossom Tales 2: {} launch: - /BlossomTales2: + "/BlossomTales2": - when: - bit: 64 os: linux store: steam - /BlossomTales2.exe: + "/BlossomTales2.exe": - when: - os: windows store: steam steam: id: 1747830 -'Blossom Tales: The Sleeping King': +"Blossom Tales: The Sleeping King": files: - /Blossom Tales/*.txt: + "/Blossom Tales/*.txt": tags: - save when: @@ -69868,7 +70078,7 @@ Blortasia: installDir: Blossom Tales The Sleeping King: {} launch: - /BlossomTales.exe: + "/BlossomTales.exe": - when: - os: windows store: steam @@ -69879,17 +70089,17 @@ Blossoming Yandere 満開 ヤンデレ: id: 660800 Blossoms Bloom Brightest: files: - /game/saves/*.save: + "/game/saves/*.save": tags: - save when: - os: windows - /renpy/config.py: + "/renpy/config.py": tags: - config when: - os: windows - /renpy/BBBV-1473772391/*.save: + "/renpy/BBBV-1473772391/*.save": tags: - save when: @@ -69897,25 +70107,25 @@ Blossoms Bloom Brightest: installDir: Blossoms Bloom Brightest: {} launch: - /BlossomsBloomBrightest.app: + "/BlossomsBloomBrightest.app": - when: - os: mac store: steam - /BlossomsBloomBrightest.exe: + "/BlossomsBloomBrightest.exe": - when: - os: windows store: steam - /BlossomsBloomBrightest.sh: + "/BlossomsBloomBrightest.sh": - when: - os: linux store: steam steam: id: 437720 -'Blow Up Pieces: Unleashed': +"Blow Up Pieces: Unleashed": installDir: Blow Up Pieces Unleashed: {} launch: - /BlowUpPiecesUnleashed.exe: + "/BlowUpPiecesUnleashed.exe": - when: - bit: 64 os: windows @@ -69924,12 +70134,12 @@ Blossoms Bloom Brightest: id: 895510 BlowOut: files: - /savegame: + "/savegame": tags: - save when: - os: windows - /system/blowout.ini: + "/system/blowout.ini": tags: - config when: @@ -69939,7 +70149,7 @@ BlowOut: installDir: BlowOut: {} launch: - /Blowout.exe: + "/Blowout.exe": - when: - store: steam steam: @@ -69948,7 +70158,7 @@ Blowhards: installDir: Blowhards: {} launch: - /Blowhards.exe: + "/Blowhards.exe": - when: - os: windows store: steam @@ -69958,7 +70168,7 @@ Blowy Fish: installDir: Blowy Fish: {} launch: - /BlowyFish.exe: + "/BlowyFish.exe": - when: - os: windows store: steam @@ -69968,7 +70178,7 @@ Bloxicus: installDir: Bloxicus: {} launch: - /bloxicus.exe: + "/bloxicus.exe": - when: - os: windows store: steam @@ -69983,7 +70193,7 @@ Bloxitivity: installDir: Bloxitivity: {} launch: - /Bloxitivity.exe: + "/Bloxitivity.exe": - when: - os: windows store: steam @@ -69997,25 +70207,25 @@ Bloxyz: Blu Bandana: steam: id: 667830 -'BluBoy: The Journey Begins': +"BluBoy: The Journey Begins": installDir: BluBoy The Journey Begins: {} launch: - /bluboy the journey begins.exe: + "/bluboy the journey begins.exe": - when: - os: windows store: steam steam: id: 1033250 -'BlubBlub: Quest of the Blob': +"BlubBlub: Quest of the Blob": installDir: BlubBlub: {} launch: - /BlubBlub Quest of the Blob.exe: + "/BlubBlub Quest of the Blob.exe": - when: - os: windows store: steam - /BlubBlub.app: + "/BlubBlub.app": - when: - os: mac store: steam @@ -70028,11 +70238,11 @@ Blue Angels Aerobatic Flight Simulator: installDir: Blue Angels Aerobatic Flight Simulator: {} launch: - /BlueAngels.app/Contents/MacOS/BlueAngels: + "/BlueAngels.app/Contents/MacOS/BlueAngels": - when: - os: mac store: steam - /BlueAngels.exe: + "/BlueAngels.exe": - when: - bit: 32 os: windows @@ -70043,25 +70253,25 @@ Blue Bird: installDir: Blue Bird: {} launch: - /BlueBird.app: + "/BlueBird.app": - when: - os: mac store: steam - /BlueBird.exe: + "/BlueBird.exe": - when: - os: windows store: steam - /BlueBird.sh: + "/BlueBird.sh": - when: - os: linux store: steam steam: id: 434600 -'Blue Boy: Bleeding Out': +"Blue Boy: Bleeding Out": installDir: Blue Boy Bleeding Out: {} launch: - /Blue Boy Bleeding Out 1.01.exe: + "/Blue Boy Bleeding Out 1.01.exe": - when: - os: windows store: steam @@ -70071,8 +70281,11 @@ Blue Crystal: installDir: BlueCrystal: {} launch: - /BlueCrystal.exe: + "/BlueCrystal.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam @@ -70085,12 +70298,12 @@ Blue Effect VR: id: 522020 Blue Estate The Game: files: - /My Games/BlueEstate/BEGame/Config: + "/My Games/BlueEstate/BEGame/Config": tags: - config when: - os: windows - /My Games/BlueEstate/BEGame/SaveData: + "/My Games/BlueEstate/BEGame/SaveData": tags: - save when: @@ -70098,40 +70311,46 @@ Blue Estate The Game: installDir: Blue Estate: {} launch: - /Binaries/Win32/Launch BlueEstate.exe: - - arguments: '-steambp32' + "/Binaries/Win32/Launch BlueEstate.exe": + - arguments: "-steambp32" when: - bit: 32 store: steam - workingDir: /Binaries/Win32 - - arguments: '-steambp64' + workingDir: "/Binaries/Win32" + - arguments: "-steambp64" when: - bit: 64 store: steam - workingDir: /Binaries/Win32 + workingDir: "/Binaries/Win32" - when: - store: steam - workingDir: /Binaries/Win32 + workingDir: "/Binaries/Win32" steam: id: 305380 Blue Fire: files: - /Blue Fire/Saved/Config/WindowsNoEditor: + "/Blue Fire/Saved/Config/WindowsNoEditor": tags: - config when: - - store: steam - /Blue Fire/Saved/SaveGames: + - os: windows + store: steam + "/Blue Fire/Saved/SaveGames": tags: - save when: - - store: steam - /Local/PROA34/Saved/Config/WindowsNoEditor: + - os: windows + store: steam + "/Local/PROA34/Saved/Config/WindowsNoEditor": tags: - config - /Local/PROA34/Saved/SaveGames: + when: + - os: windows + "/Local/PROA34/Saved/SaveGames": tags: - save + when: + - os: windows gog: id: 1280776741 id: @@ -70140,7 +70359,7 @@ Blue Fire: installDir: Blue Fire: {} launch: - /PROA34.exe: + "/PROA34.exe": - when: - os: windows store: steam @@ -70150,7 +70369,7 @@ Blue Horizon: installDir: Blue Horizon: {} launch: - /BlueHorizon.exe: + "/BlueHorizon.exe": - when: - bit: 64 os: windows @@ -70164,22 +70383,22 @@ Blue Libra: installDir: Blue Libra: {} launch: - /BlueLibra: + "/BlueLibra": - when: - os: linux store: steam - /BlueLibra.app: + "/BlueLibra.app": - when: - bit: 64 os: mac store: steam - /BlueLibra.exe: + "/BlueLibra.exe": - when: - os: windows store: steam steam: id: 377890 -'Blue Max: Aces of the Great War': +"Blue Max: Aces of the Great War": gog: id: 1448462883 installDir: @@ -70191,12 +70410,12 @@ Blue Protocol: id: 2139230 Blue Reflection: files: - /KoeiTecmo/BLUE REFLECTION: + "/KoeiTecmo/BLUE REFLECTION": tags: - config when: - os: windows - /KoeiTecmo/BLUE REFLECTION/SAVEDATA: + "/KoeiTecmo/BLUE REFLECTION/SAVEDATA": tags: - save when: @@ -70204,26 +70423,26 @@ Blue Reflection: installDir: BLUE REFLECTION: {} launch: - /BLUE_REFLECTION_Launcher.exe: + "/BLUE_REFLECTION_Launcher.exe": - when: - bit: 64 os: windows store: steam steam: id: 658260 -'Blue Reflection: Second Light': +"Blue Reflection: Second Light": files: - /KoeiTecmo/BLUE REFLECTION Second Light: + "/KoeiTecmo/BLUE REFLECTION Second Light": tags: - save when: - os: windows - /KoeiTecmo/BLUE REFLECTION Second Light/SystemData: + "/KoeiTecmo/BLUE REFLECTION Second Light/SystemData": tags: - config when: - os: windows - /KoeiTecmo/BLUE REFLECTION Second Light/setting.ini: + "/KoeiTecmo/BLUE REFLECTION Second Light/setting.ini": tags: - config when: @@ -70231,7 +70450,7 @@ Blue Reflection: installDir: BLUE REFLECTION Second Light: {} launch: - /BLUE REFLECTION Second Light.exe: + "/BLUE REFLECTION Second Light.exe": - when: - store: steam steam: @@ -70240,16 +70459,16 @@ Blue Revolver: installDir: BLUE REVOLVER: {} launch: - /bluerevolver.app: + "/bluerevolver.app": - when: - bit: 64 os: mac store: steam - /bluerevolver.exe: + "/bluerevolver.exe": - when: - os: windows store: steam - /run.sh: + "/run.sh": - when: - os: linux store: steam @@ -70259,7 +70478,7 @@ Blue Rider: installDir: BlueRider: {} launch: - /Blue Rider.exe: + "/Blue Rider.exe": - when: - os: windows store: steam @@ -70273,15 +70492,15 @@ Blue Rose: installDir: Blue Rose: {} launch: - /BlueRoseReprise-1.0-market/BlueRoseReprise.app: + "/BlueRoseReprise-1.0-market/BlueRoseReprise.app": - when: - os: mac store: steam - /BlueRoseReprise-1.0-market/BlueRoseReprise.exe: + "/BlueRoseReprise-1.0-market/BlueRoseReprise.exe": - when: - os: windows store: steam - /BlueRoseReprise-1.0-market/BlueRoseReprise.sh: + "/BlueRoseReprise-1.0-market/BlueRoseReprise.sh": - when: - os: linux store: steam @@ -70294,16 +70513,16 @@ Blue Sheep: installDir: Blue Sheep: {} launch: - /BlueSheepLinux/BlueSheep/Binaries/Linux/BlueSheep: + "/BlueSheepLinux/BlueSheep/Binaries/Linux/BlueSheep": - arguments: chmod -x when: - os: linux store: steam - /BlueSheepMacOS/BlueSheep.app/Contents/MacOS/BlueSheep: + "/BlueSheepMacOS/BlueSheep.app/Contents/MacOS/BlueSheep": - when: - os: mac store: steam - /BlueSheepWin32/BlueSheep.exe: + "/BlueSheepWin32/BlueSheep.exe": - when: - os: windows store: steam @@ -70314,11 +70533,11 @@ Blue Snake Adventures: Blue Snake Adventures: {} steam: id: 722080 -'Blue Solar: Chaos War': +"Blue Solar: Chaos War": installDir: Blue Solar Chaos War: {} launch: - /LATS_PC.exe: + "/LATS_PC.exe": - when: - os: windows store: steam @@ -70328,7 +70547,7 @@ Blue Tear: installDir: Blue Tear: {} launch: - /BlueTear.exe: + "/BlueTear.exe": - when: - store: steam steam: @@ -70337,14 +70556,14 @@ Blue Time: installDir: Blue Time: {} launch: - /Blue_Time_4_18.exe: + "/Blue_Time_4_18.exe": - when: - store: steam steam: id: 916340 -'Blue Toad Murder Files: The Mysteries of Little Riddle': +"Blue Toad Murder Files: The Mysteries of Little Riddle": files: - /Relentless Software: + "/Relentless Software": tags: - config - save @@ -70353,7 +70572,7 @@ Blue Time: installDir: Blue Toad Murder Files 01: {} launch: - /Launcher.exe: + "/Launcher.exe": - when: - store: steam steam: @@ -70362,7 +70581,7 @@ Blue Whale: installDir: Blue Whale: {} launch: - /Blue_Whale.exe: + "/Blue_Whale.exe": - when: - os: windows store: steam @@ -70375,15 +70594,15 @@ Blue-Collar Astronaut: installDir: Blue-CollarAstronaut: {} launch: - /Blue-CollarAstronaut.app/Contents/MacOS/Blue-CollarAstronaut: + "/Blue-CollarAstronaut.app/Contents/MacOS/Blue-CollarAstronaut": - when: - os: mac store: steam - /Blue-CollarAstronaut.exe: + "/Blue-CollarAstronaut.exe": - when: - os: windows store: steam - /Blue-CollarAstronaut.x86: + "/Blue-CollarAstronaut.x86": - when: - os: linux store: steam @@ -70393,7 +70612,7 @@ Blue.: installDir: blue: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -70403,7 +70622,7 @@ BlueFear: installDir: Blue Fear: {} launch: - /bin/win_x64/GameLauncher.exe: + "/bin/win_x64/GameLauncher.exe": - when: - os: windows store: steam @@ -70413,7 +70632,7 @@ BlueGlow: installDir: BlueGlow: {} launch: - /BlueGlow.exe: + "/BlueGlow.exe": - when: - os: windows store: steam @@ -70421,17 +70640,17 @@ BlueGlow: id: 1039800 Blueberry Garden: files: - /Content: + "/Content": tags: - config when: - os: windows - /Library/Application Support/BlueberryGarden: + "/Library/Application Support/BlueberryGarden": tags: - config when: - os: mac - /BlueberryGarden: + "/BlueberryGarden": tags: - config when: @@ -70439,15 +70658,15 @@ Blueberry Garden: installDir: Blueberry Garden: {} launch: - /Blueberry Garden.app/Contents/MacOS/BlueberryGarden: + "/Blueberry Garden.app/Contents/MacOS/BlueberryGarden": - when: - os: mac store: steam - /BlueberryGarden: + "/BlueberryGarden": - when: - os: linux store: steam - /BlueberryGarden.exe: + "/BlueberryGarden.exe": - when: - os: windows store: steam @@ -70457,15 +70676,15 @@ BlueberryNOVA: installDir: BlueberryNOVA: {} launch: - /BlueberryNOVA.app: + "/BlueberryNOVA.app": - when: - os: mac store: steam - /BlueberryNOVA.exe: + "/BlueberryNOVA.exe": - when: - os: windows store: steam - /BlueberryNOVA.sh: + "/BlueberryNOVA.sh": - when: - os: linux store: steam @@ -70475,14 +70694,14 @@ Blueprint: installDir: Blueprint: {} launch: - /blueprint.exe: + "/blueprint.exe": - when: - store: steam steam: id: 863690 Blueprint Tycoon: files: - /BlueprintTycoon_Data/Saves: + "/BlueprintTycoon_Data/Saves": tags: - save when: @@ -70490,15 +70709,15 @@ Blueprint Tycoon: installDir: Blueprint Tycoon: {} launch: - /BlueprintTycoon.app: + "/BlueprintTycoon.app": - when: - os: mac store: steam - /BlueprintTycoon.exe: + "/BlueprintTycoon.exe": - when: - os: windows store: steam - /BlueprintTycoon.x86: + "/BlueprintTycoon.x86": - when: - os: linux store: steam @@ -70508,26 +70727,29 @@ Blueprint Word: installDir: Blueprint Word: {} launch: - /WindowsNoEditor/Blueprint_Word_R3: + "/WindowsNoEditor/Blueprint_Word_R3": - when: - os: windows store: steam steam: id: 870180 -'Blueprint Word: Classroom': +"Blueprint Word: Classroom": installDir: Blueprint Word Classroom: {} launch: - /nw.exe: + "/nw.exe": - when: - bit: 32 os: windows store: steam + - bit: 64 + os: windows + store: steam steam: id: 955190 Blues and Bullets: files: - /Blues and Bullets_Data/SaveFiles: + "/Blues and Bullets_Data/SaveFiles": tags: - save when: @@ -70535,16 +70757,16 @@ Blues and Bullets: installDir: Blues and Bullets: {} launch: - /Blues and Bullets.exe: - - arguments: '-force-d3d9' + "/Blues and Bullets.exe": + - arguments: "-force-d3d9" when: - os: windows store: steam - /Blues and Bullets.x86: + "/Blues and Bullets.x86": - when: - os: linux store: steam - /BluesAndBullets.app: + "/BluesAndBullets.app": - when: - os: mac store: steam @@ -70556,10 +70778,10 @@ Blues and Bullets: id: 378660 Blueshift: installDir: - Brian's High Velocity Research Center: {} + "Brian's High Velocity Research Center": {} steam: id: 565030 -'Bluey: The Videogame': +"Bluey: The Videogame": steam: id: 2078350 Blunt Force: @@ -70567,12 +70789,12 @@ Blunt Force: id: 816070 Blur: files: - /bizarre creations/blur/save: + "/bizarre creations/blur/save": tags: - save when: - os: windows - /bizarre creations/blur/settings.xml: + "/bizarre creations/blur/settings.xml": tags: - config when: @@ -70580,14 +70802,14 @@ Blur: installDir: Blur: {} launch: - /Blur.exe: + "/Blur.exe": - when: - store: steam steam: id: 42640 Blush Blush: files: - /SavesDir/blushblush.sav: + "/SavesDir/blushblush.sav": tags: - save when: @@ -70595,20 +70817,20 @@ Blush Blush: installDir: BlushBlush: {} launch: - /BlushBlush.app: + "/BlushBlush.app": - when: - os: mac store: steam - /BlushBlush.exe: + "/BlushBlush.exe": - when: - os: windows store: steam - /BlushBlush.x86: + "/BlushBlush.x86": - when: - bit: 32 os: linux store: steam - /BlushBlush.x86_64: + "/BlushBlush.x86_64": - when: - bit: 64 os: linux @@ -70623,8 +70845,8 @@ BoX -containment-: installDir: BoX -containment- v.1.10: {} launch: - /game.exe: - - arguments: '-windowed' + "/game.exe": + - arguments: "-windowed" when: - os: windows store: steam @@ -70634,7 +70856,7 @@ Board Battlefield: installDir: Board Battlefield: {} launch: - /boardBattlefield_steam.exe: + "/boardBattlefield_steam.exe": - when: - os: windows store: steam @@ -70644,7 +70866,7 @@ Board Defenders: installDir: BoardDefenders: {} launch: - /BoardDefenders.exe: + "/BoardDefenders.exe": - when: - store: steam steam: @@ -70653,12 +70875,12 @@ Board Games VR: installDir: Board Games VR: {} launch: - /board-games-vr.exe: - - arguments: '-vrmode none' + "/board-games-vr.exe": + - arguments: "-vrmode none" when: - os: windows store: steam - - arguments: '-vrmode none -workshop' + - arguments: "-vrmode none -workshop" when: - os: windows store: steam @@ -70668,7 +70890,7 @@ Board Quizz Adventure: installDir: BoardQuizzAdventure: {} launch: - /BoardQuizzAdventure.exe: + "/BoardQuizzAdventure.exe": - when: - os: windows store: steam @@ -70678,7 +70900,7 @@ Boardwalk Carnival Game: installDir: Boardwalk Carnival Game: {} launch: - /Boardwalk Carnival.exe: + "/Boardwalk Carnival.exe": - when: - os: windows store: steam @@ -70691,17 +70913,17 @@ Boat Basketball: installDir: Boat Basketball: {} launch: - /Boat Basketball.app/Contents/MacOS/Boat Basketball: + "/Boat Basketball.app/Contents/MacOS/Boat Basketball": - when: - os: mac store: steam - /Boat Basketball.exe: + "/Boat Basketball.exe": - when: - os: windows store: steam steam: id: 952270 -'Boat Violence: Ship Happens': +"Boat Violence: Ship Happens": installDir: Boat Violence Ship Happens: {} steam: @@ -70711,12 +70933,12 @@ Bob & Bernard Against The Nazis: id: 599580 Bob Came in Pieces: files: - /userdata//46000/remote/*.data: + "/userdata//46000/remote/*.data": tags: - save when: - store: steam - /Bob Came In Pieces/Profiles.data: + "/Bob Came In Pieces/Profiles.data": tags: - save when: @@ -70724,11 +70946,11 @@ Bob Came in Pieces: installDir: Bob Came In Pieces: {} launch: - /Bob.exe: + "/Bob.exe": - when: - os: windows store: steam - /MacBob.app: + "/MacBob.app": - when: - os: mac store: steam @@ -70742,21 +70964,21 @@ Bob Was Hungry: installDir: Bob Was Hungry: {} launch: - /bobwashungry.app: + "/bobwashungry.app": - when: - os: mac store: steam - /bobwashungry.exe: + "/bobwashungry.exe": - when: - os: windows store: steam steam: id: 343560 -'Bob and Kuura: Lost in Snowglobe': +"Bob and Kuura: Lost in Snowglobe": installDir: Bob and Kuura Lost in Snowglobe: {} launch: - /kuura2.exe: + "/kuura2.exe": - when: - os: windows store: steam @@ -70765,9 +70987,9 @@ Bob Was Hungry: Bob and Prickle: steam: id: 1124280 -'Bob the Builder: Bob''s Castle Adventure': +"Bob the Builder: Bob's Castle Adventure": files: - /DATA: + "/DATA": tags: - save when: @@ -70776,26 +70998,26 @@ Bob the Cube: installDir: Bob The Cube: {} launch: - /bobthecube.exe: + "/bobthecube.exe": - when: - os: windows store: steam steam: id: 854060 -Bob's Cat Challenge: +"Bob's Cat Challenge": installDir: - Bob's Cat Challenge: {} + "Bob's Cat Challenge": {} launch: - /Bob's Cat Challenge 1.0.exe: + "/Bob's Cat Challenge 1.0.exe": - when: - store: steam steam: id: 1032230 -Bob's game (puzzle game) from "bob's game": +"Bob's game (puzzle game) from \"bob's game\"": installDir: ok: {} launch: - /ok.exe: + "/ok.exe": - when: - store: steam steam: @@ -70812,11 +71034,11 @@ Bobo Robot: installDir: bobo robot: {} launch: - /boborobot.app: + "/boborobot.app": - when: - os: mac store: steam - /boborobot.exe: + "/boborobot.exe": - when: - os: windows store: steam @@ -70831,7 +71053,7 @@ Bocce Revolution: installDir: Bocce Revolution: {} launch: - /main.exe: + "/main.exe": - when: - os: windows store: steam @@ -70844,7 +71066,7 @@ Bocce VR: id: 1099010 Bode Miller Alpine Skiing: files: - /Ski Alpin 2006: + "/Ski Alpin 2006": tags: - save when: @@ -70853,7 +71075,7 @@ Body Discovery: installDir: Body Discovery: {} launch: - /gast.exe: + "/gast.exe": - when: - os: windows store: steam @@ -70865,7 +71087,7 @@ Body of Evidence: installDir: Body of Evidence: {} launch: - /Body of Evidence.exe: + "/Body of Evidence.exe": - when: - os: windows store: steam @@ -70875,7 +71097,7 @@ Boet Fighter: installDir: Boet Fighter: {} launch: - /Boet Fighter.exe: + "/Boet Fighter.exe": - when: - os: windows store: steam @@ -70885,7 +71107,7 @@ Bogatyr: installDir: Bogatyr: {} launch: - /Bogatyr.exe: + "/Bogatyr.exe": - when: - os: windows store: steam @@ -70893,7 +71115,7 @@ Bogatyr: id: 1170190 Bohemian Killing: files: - /AppData/LocalLow/The Moonwalls/Bohemian Killing: + "/AppData/LocalLow/The Moonwalls/Bohemian Killing": tags: - config - save @@ -70902,11 +71124,11 @@ Bohemian Killing: installDir: Bohemian Killing: {} launch: - /Bohemian Killing.app: + "/Bohemian Killing.app": - when: - os: mac store: steam - /Bohemian Killing.exe: + "/Bohemian Killing.exe": - when: - os: windows store: steam @@ -70916,20 +71138,20 @@ Bohnanza the Duel: installDir: Bohnanza The Duel: {} launch: - /bdd.app: + "/bdd.app": - when: - os: mac store: steam - /bdd.exe: + "/bdd.exe": - when: - os: windows store: steam - /bdd.x86: + "/bdd.x86": - when: - bit: 32 os: linux store: steam - /bdd.x86_64: + "/bdd.x86_64": - when: - bit: 64 os: linux @@ -70940,7 +71162,7 @@ Bohrdom: installDir: Bohrdom: {} launch: - /Bohrdom.exe: + "/Bohrdom.exe": - when: - os: windows store: steam @@ -70948,7 +71170,7 @@ Bohrdom: id: 945530 Boid: files: - /GameData: + "/GameData": tags: - save when: @@ -70956,7 +71178,7 @@ Boid: installDir: Boid: {} launch: - /Boid.exe: + "/Boid.exe": - when: - store: steam steam: @@ -70970,20 +71192,20 @@ Boiling Bolt: installDir: Boiling Bolt: {} launch: - /BoilingBolt.exe: + "/BoilingBolt.exe": - when: - os: windows store: steam steam: id: 462250 -'Boiling Point: Road to Hell': +"Boiling Point: Road to Hell": files: - /GAME.INI: + "/GAME.INI": tags: - config when: - os: windows - /save: + "/save": tags: - save when: @@ -70997,7 +71219,7 @@ Boiling Steel: Boiling Steel: {} steam: id: 1016860 -'Boiling Steel: Preface': +"Boiling Steel: Preface": installDir: Boiling Steel Preface: {} steam: @@ -71006,11 +71228,11 @@ Boinks: installDir: Boinks: {} launch: - /boinks.app/Contents/MacOS/boinks: + "/boinks.app/Contents/MacOS/boinks": - when: - os: mac store: steam - /boinks.exe: + "/boinks.exe": - when: - os: windows store: steam @@ -71020,7 +71242,7 @@ Bokida - Heartfelt Reunion: installDir: Bokida - Heartfelt Reunion: {} launch: - /Bokida - Heartfelt Reunion.exe: + "/Bokida - Heartfelt Reunion.exe": - when: - os: windows store: steam @@ -71031,17 +71253,17 @@ Bokube: id: 1149490 Bokuten - Why I Became an Angel: files: - /UserData/*.sad: + "/UserData/*.sad": tags: - save when: - os: windows - /UserData/*.sah: + "/UserData/*.sah": tags: - save when: - os: windows - /UserData/*.sud: + "/UserData/*.sud": tags: - save when: @@ -71049,7 +71271,7 @@ Bokuten - Why I Became an Angel: installDir: Bokuten: {} launch: - /Bokuten.exe: + "/Bokuten.exe": - when: - os: windows store: steam @@ -71059,7 +71281,7 @@ Bold Blade: installDir: Bold Blade: {} launch: - /BoldBlade.exe: + "/BoldBlade.exe": - when: - os: windows store: steam @@ -71072,7 +71294,7 @@ Bolf: installDir: Bolf: {} launch: - /Bolf.exe: + "/Bolf.exe": - when: - os: windows store: steam @@ -71082,7 +71304,7 @@ Bolsomito 2K18: installDir: Bolsomito 2k18: {} launch: - /bolsomito2k18.exe: + "/bolsomito2k18.exe": - when: - bit: 64 os: windows @@ -71091,12 +71313,12 @@ Bolsomito 2K18: id: 930460 Bolt: files: - /Disney Interactive Studios/Disney Bolt: + "/Disney Interactive Studios/Disney Bolt": tags: - config when: - os: windows - /Disney Interactive Studios/Disney Bolt/storage: + "/Disney Interactive Studios/Disney Bolt/storage": tags: - save when: @@ -71104,24 +71326,24 @@ Bolt: installDir: Bolt: {} launch: - /DisneyBolt.exe: + "/DisneyBolt.exe": - when: - store: steam steam: id: 340990 -'Bolt Riley, A Reggae Adventure': +"Bolt Riley, A Reggae Adventure": installDir: Bolt Riley Chapter 1: {} launch: - /BoltRileyChapter1.exe: + "/BoltRileyChapter1.exe": - when: - os: windows store: steam - /BoltRiley_Chapter1.app: + "/BoltRiley_Chapter1.app": - when: - os: mac store: steam - /Bolt_Riley_Chapter_1.x86: + "/Bolt_Riley_Chapter_1.x86": - when: - os: linux store: steam @@ -71134,7 +71356,7 @@ Boltzmann Brain: installDir: Boltzmann Brain: {} launch: - /BB.exe: + "/BB.exe": - when: - os: windows store: steam @@ -71144,7 +71366,7 @@ Bomb Bay: installDir: Bomb Bay: {} launch: - /Bomb Bay.exe: + "/Bomb Bay.exe": - when: - os: windows store: steam @@ -71154,11 +71376,11 @@ Bomb Bots Arena: installDir: Bomb Bots Arena: {} launch: - /Bomb Bots Arena.app: + "/Bomb Bots Arena.app": - when: - os: mac store: steam - /Bomb Bots Arena.exe: + "/Bomb Bots Arena.exe": - when: - os: windows store: steam @@ -71168,7 +71390,7 @@ Bomb Bowling: installDir: Bomb Bowling: {} launch: - /bb.exe: + "/bb.exe": - when: - store: steam steam: @@ -71177,14 +71399,14 @@ Bomb Bowling 2: installDir: Bomb Bowling 2: {} launch: - /bb2.exe: + "/bb2.exe": - when: - store: steam steam: id: 1161680 Bomb Chicken: files: - /AppData/LocalLow/Nitrome/BombChicken/Unity: + "/AppData/LocalLow/Nitrome/BombChicken/Unity": tags: - config when: @@ -71192,11 +71414,11 @@ Bomb Chicken: installDir: BombChicken: {} launch: - /BombChicken.app/Contents/MacOS/BombChicken: + "/BombChicken.app/Contents/MacOS/BombChicken": - when: - os: mac store: steam - /BombChicken.exe: + "/BombChicken.exe": - when: - os: windows store: steam @@ -71210,20 +71432,20 @@ Bomb Defense: installDir: Bomb Defense: {} launch: - /Bomb Defense.app: + "/Bomb Defense.app": - when: - os: mac store: steam - /BombDefense.exe: + "/BombDefense.exe": - when: - os: windows store: steam - /BombDefense.x86: + "/BombDefense.x86": - when: - bit: 32 os: linux store: steam - /BombDefense.x86_64: + "/BombDefense.x86_64": - when: - bit: 64 os: linux @@ -71234,7 +71456,7 @@ Bomb Hunter MT: installDir: Bomb Hero: {} launch: - /Bomb Hunter MT.exe: + "/Bomb Hunter MT.exe": - when: - os: windows store: steam @@ -71244,21 +71466,21 @@ Bomb Labyrinth: installDir: Bomb Labyrinth: {} launch: - /Bomb Labyrinth.app/Contents/MacOS/Bomb Labyrinth: + "/Bomb Labyrinth.app/Contents/MacOS/Bomb Labyrinth": - when: - os: mac store: steam - /Bomb Labyrinth.exe: + "/Bomb Labyrinth.exe": - when: - os: windows store: steam steam: id: 839620 -Bomb N' Bats: +"Bomb N' Bats": installDir: Bomb N Bats: {} launch: - /Bomb n Bats.exe: + "/Bomb n Bats.exe": - when: - os: windows store: steam @@ -71268,11 +71490,11 @@ Bomb Party: installDir: Bomb Party: {} launch: - /Bomb Party.app/Contents/MacOS/Bomb Party: + "/Bomb Party.app/Contents/MacOS/Bomb Party": - when: - os: mac store: steam - /Bomb Party.exe: + "/Bomb Party.exe": - when: - os: windows store: steam @@ -71282,7 +71504,7 @@ Bomb Riders: installDir: Bomb Riders: {} launch: - /BombRiders/BombRiders.exe: + "/BombRiders/BombRiders.exe": - when: - os: windows store: steam @@ -71292,7 +71514,7 @@ Bomb Royale: installDir: Bomb Royale: {} launch: - /Bomb Royale.exe: + "/Bomb Royale.exe": - when: - os: windows store: steam @@ -71300,12 +71522,13 @@ Bomb Royale: id: 604150 Bomb Rush Cyberfunk: files: - /AppData/LocalLow/Team Reptile/Bomb Rush Cyberfunk: + "/AppData/LocalLow/Team Reptile/Bomb Rush Cyberfunk": tags: - save when: - - store: gog - /userdata//1353230/remote: + - os: windows + store: gog + "/userdata//1353230/remote": tags: - save when: @@ -71315,7 +71538,7 @@ Bomb Rush Cyberfunk: installDir: BombRushCyberfunk: {} launch: - /Bomb Rush Cyberfunk.exe: + "/Bomb Rush Cyberfunk.exe": - when: - os: windows store: steam @@ -71327,7 +71550,7 @@ Bomb Rush Cyberfunk: id: 1353230 Bomb Squad Academy: files: - /AppData/LocalLow/Systemic Games/Bomb Squad Academy: + "/AppData/LocalLow/Systemic Games/Bomb Squad Academy": tags: - config - save @@ -71336,20 +71559,20 @@ Bomb Squad Academy: installDir: Bomb Squad Academy: {} launch: - /BSA.app: + "/BSA.app": - when: - os: mac store: steam - /BSA.exe: + "/BSA.exe": - when: - os: windows store: steam - /BSA.x86: + "/BSA.x86": - when: - bit: 32 os: linux store: steam - /BSA.x86_64: + "/BSA.x86_64": - when: - bit: 64 os: linux @@ -71368,7 +71591,7 @@ Bomb the Monsters!: installDir: Bomb The Monsters!: {} launch: - /Bomb-the-Monsters.exe: + "/Bomb-the-Monsters.exe": - when: - os: windows store: steam @@ -71378,7 +71601,7 @@ Bomb-Bomb: installDir: Bomb-Bomb: {} launch: - /0.1.1.exe: + "/0.1.1.exe": - when: - os: windows store: steam @@ -71388,7 +71611,7 @@ BombGears: installDir: BombGears: {} launch: - /BombGears.exe: + "/BombGears.exe": - when: - bit: 64 os: windows @@ -71399,7 +71622,7 @@ BombTag: installDir: BombTag: {} launch: - /BombTag.exe: + "/BombTag.exe": - when: - os: windows store: steam @@ -71413,7 +71636,7 @@ Bombastic Cars: installDir: Bombastic Cars: {} launch: - /BombasticCars.exe: + "/BombasticCars.exe": - when: - os: windows store: steam @@ -71423,7 +71646,7 @@ Bomber 95: installDir: Bomber 95: {} launch: - /Bomber95.exe: + "/Bomber95.exe": - when: - os: windows store: steam @@ -71433,7 +71656,7 @@ Bomber Arena: installDir: Bomber Arena: {} launch: - /BomberArena.exe: + "/BomberArena.exe": - when: - os: windows store: steam @@ -71443,30 +71666,30 @@ Bomber Barn: installDir: Bomber Barn: {} launch: - /Bomber Barn.exe: + "/Bomber Barn.exe": - when: - os: windows store: steam - /Contents/MacOS/Bomber Barn: + "/Contents/MacOS/Bomber Barn": - when: - os: mac store: steam - workingDir: /Contents/MacOS + workingDir: "/Contents/MacOS" steam: id: 982840 Bomber Bother: installDir: Bomber Bother: {} launch: - /Bomber Bother.app: + "/Bomber Bother.app": - when: - os: mac store: steam - /Bomber Bother.exe: + "/Bomber Bother.exe": - when: - os: windows store: steam - /Bomber Bother.x86_64: + "/Bomber Bother.x86_64": - when: - bit: 64 os: linux @@ -71475,17 +71698,17 @@ Bomber Bother: id: 1153170 Bomber Crew: files: - /.config/unity3d/Runner Duck/Bomber Crew: + "/.config/unity3d/Runner Duck/Bomber Crew": tags: - save when: - os: linux - /AppData/LocalLow/Runner Duck/Bomber Crew: + "/AppData/LocalLow/Runner Duck/Bomber Crew": tags: - save when: - os: windows - /Library/Application Support/Runner Duck/Bomber Crew: + "/Library/Application Support/Runner Duck/Bomber Crew": tags: - save when: @@ -71494,28 +71717,28 @@ Bomber Crew: id: 1589536826 id: steamExtra: - - 765960 + - 728930 - 754680 - 756070 - - 728930 - 756071 + - 765960 installDir: BomberCrew: {} launch: - /BomberCrew.app/Contents/MacOS/BomberCrew: + "/BomberCrew.app/Contents/MacOS/BomberCrew": - when: - os: mac store: steam - /BomberCrew.exe: + "/BomberCrew.exe": - when: - os: windows store: steam - /BomberCrew.x86: + "/BomberCrew.x86": - when: - bit: 32 os: linux store: steam - /BomberCrew.x86_64: + "/BomberCrew.x86_64": - when: - bit: 64 os: linux @@ -71530,7 +71753,7 @@ Bomber Fox: installDir: Bomber Fox: {} launch: - /Bomber Fox.exe: + "/Bomber Fox.exe": - when: - store: steam steam: @@ -71544,7 +71767,7 @@ BomberX: installDir: BOMBERX: {} launch: - /BomberX.exe: + "/BomberX.exe": - when: - store: steam steam: @@ -71553,15 +71776,15 @@ BomberZone: installDir: BomberZone: {} launch: - /BomberZone.app: + "/BomberZone.app": - when: - os: mac store: steam - /BomberZone.exe: + "/BomberZone.exe": - when: - os: windows store: steam - /BomberZone.x86: + "/BomberZone.x86": - when: - os: linux store: steam @@ -71571,21 +71794,21 @@ Bombergeddon: installDir: Bombergeddon: {} launch: - /Bombergeddon.exe: + "/Bombergeddon.exe": - when: - os: windows store: steam steam: id: 1218310 -'Bombergrounds: Battle Royale': +"Bombergrounds: Battle Royale": installDir: Bombergrounds: {} launch: - /Bombergrounds.app: + "/Bombergrounds.app": - when: - os: mac store: steam - /Bombergrounds.exe: + "/Bombergrounds.exe": - when: - os: windows store: steam @@ -71595,15 +71818,15 @@ Bombernauts: installDir: Bombernauts: {} launch: - /Bombernauts.app: + "/Bombernauts.app": - when: - os: mac store: steam - /Bombernauts.exe: + "/Bombernauts.exe": - when: - os: windows store: steam - /Bombernauts.x86: + "/Bombernauts.x86": - when: - os: linux store: steam @@ -71613,20 +71836,20 @@ Bombfest: installDir: BOMBFEST: {} launch: - /BOMBFEST.app: + "/BOMBFEST.app": - when: - os: mac store: steam - /BOMBFEST.exe: + "/BOMBFEST.exe": - when: - os: windows store: steam - /Linux/BOMBFEST.x86: + "/Linux/BOMBFEST.x86": - when: - bit: 32 os: linux store: steam - /Linux/BOMBFEST.x86_64: + "/Linux/BOMBFEST.x86_64": - when: - bit: 64 os: linux @@ -71637,20 +71860,20 @@ Bombinator: installDir: Bombinator: {} launch: - /runme.app: + "/runme.app": - when: - os: mac store: steam - /runme.exe: + "/runme.exe": - when: - os: windows store: steam - /runme.x86: + "/runme.x86": - when: - bit: 32 os: linux store: steam - /runme.x86_64: + "/runme.x86_64": - when: - bit: 64 os: linux @@ -71659,7 +71882,7 @@ Bombinator: id: 612610 Bombing Bastards: files: - /userdata//314220: + "/userdata//314220": tags: - config - save @@ -71669,15 +71892,15 @@ Bombing Bastards: installDir: Bombing Bastards: {} launch: - /BombingBastards.app: + "/BombingBastards.app": - when: - os: mac store: steam - /BombingBastards.exe: + "/BombingBastards.exe": - when: - os: windows store: steam - /BombingBastards.x86: + "/BombingBastards.x86": - when: - os: linux store: steam @@ -71687,7 +71910,7 @@ Bombing Quest: installDir: Bombing Quest: {} launch: - /Bombing Quest.exe: + "/Bombing Quest.exe": - when: - os: windows store: steam @@ -71697,11 +71920,11 @@ Bombini: installDir: Bombini: {} launch: - /Bombini.app: + "/Bombini.app": - when: - os: mac store: steam - /Bombini_windows.exe: + "/Bombini_windows.exe": - when: - os: windows store: steam @@ -71711,7 +71934,7 @@ Bombjour: installDir: Bombjour: {} launch: - /Bombjour.exe: + "/Bombjour.exe": - when: - os: windows store: steam @@ -71722,12 +71945,12 @@ Bombman: id: 964720 Bombshell: files: - /My Games/Bombshell/ShellGame/Config: + "/My Games/Bombshell/ShellGame/Config": tags: - config when: - os: windows - /My Games/Bombshell/ShellGame/Save: + "/My Games/Bombshell/ShellGame/Save": tags: - save when: @@ -71736,36 +71959,39 @@ Bombshell: id: 1437149977 id: gogExtra: - - 1453909333 - 1453909260 + - 1453909333 installDir: Bombshell: {} launch: - /Binaries/Win32/Bombshell.exe: + "/Binaries/Win32/Bombshell.exe": - when: - bit: 32 os: windows store: steam - workingDir: /Binaries/Win32 - /Binaries/Win64/Bombshell.exe: + workingDir: "/Binaries/Win32" + "/Binaries/Win64/Bombshell.exe": - when: - bit: 64 os: windows store: steam - workingDir: /Binaries/Win64 - /Help/GDF_FieldManual.bat: + workingDir: "/Binaries/Win64" + "/Help/GDF_FieldManual.bat": - when: - os: windows store: steam - workingDir: /Help + workingDir: "/Help" steam: id: 353190 -'Bombshell Barista: Speed Dating': +"Bombshell Barista: Speed Dating": installDir: Bombshell Barista Speed Dating: {} launch: - /BBSD.exe: + "/BBSD.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam @@ -71773,12 +71999,12 @@ Bombshell: id: 2496850 Bombslinger: files: - /AppData/LocalLow/Mode4/Bombslinger/settings.bs: + "/AppData/LocalLow/Mode4/Bombslinger/settings.bs": tags: - config when: - os: windows - /AppData/LocalLow/Mode4/Bombslinger/statistics.bs: + "/AppData/LocalLow/Mode4/Bombslinger/statistics.bs": tags: - save when: @@ -71786,7 +72012,7 @@ Bombslinger: installDir: Bombslinger: {} launch: - /bombslinger.exe: + "/bombslinger.exe": - when: - os: windows store: steam @@ -71802,12 +72028,12 @@ Bombuzal: installDir: Bombuzal: {} launch: - /dosbox_windows/dosbox.exe: - - arguments: \"BOMBUZAL.EXE\" -conf \"dosbox_bombuzal.conf\" -exit -noconsole + "/dosbox_windows/dosbox.exe": + - arguments: "\\\"BOMBUZAL.EXE\\\" -conf \\\"dosbox_bombuzal.conf\\\" -exit -noconsole" when: - os: windows store: steam - /runBombuzal.sh: + "/runBombuzal.sh": - when: - os: linux store: steam @@ -71820,7 +72046,7 @@ Bomight: installDir: Bomight: {} launch: - /Bomight.exe: + "/Bomight.exe": - when: - bit: 64 os: windows @@ -71831,16 +72057,16 @@ Bomsy: installDir: Bomsy: {} launch: - /Bomsy.app: + "/Bomsy.app": - when: - os: mac store: steam - /Bomsy.exe: + "/Bomsy.exe": - when: - bit: 64 os: windows store: steam - /Bomsy.x86_64: + "/Bomsy.x86_64": - when: - bit: 64 os: linux @@ -71851,20 +72077,20 @@ BonVoyage!: installDir: BonVoyage!: {} launch: - /BonVoyage!.exe: + "/BonVoyage!.exe": - when: - os: windows store: steam - /bonvoyage.app: + "/bonvoyage.app": - when: - os: mac store: steam - /bonvoyage.x86: + "/bonvoyage.x86": - when: - bit: 32 os: linux store: steam - /bonvoyage.x86_64: + "/bonvoyage.x86_64": - when: - bit: 64 os: linux @@ -71873,22 +72099,22 @@ BonVoyage!: id: 1081890 Bonanza Bros.: files: - /SEGA Genesis Classics/0012: + "/SEGA Genesis Classics/0012": tags: - save when: - os: windows - /SEGA Genesis Classics/setup.dat: + "/SEGA Genesis Classics/setup.dat": tags: - config when: - os: windows - /SEGA Mega Drive Classics/0012: + "/SEGA Mega Drive Classics/0012": tags: - save when: - os: windows - /SEGA Mega Drive Classics/setup.dat: + "/SEGA Mega Drive Classics/setup.dat": tags: - config when: @@ -71899,7 +72125,7 @@ Bonbon: installDir: Bonbon: {} launch: - /Bonbon.exe: + "/Bonbon.exe": - when: - os: windows store: steam @@ -71909,7 +72135,7 @@ Bondage Girl: installDir: BondageGirl: {} launch: - /BondageGirl.exe: + "/BondageGirl.exe": - when: - os: windows store: steam @@ -71919,18 +72145,18 @@ Bonds: installDir: Bonds: {} launch: - /Game: - - arguments: '--in-process-gpu' + "/Game": + - arguments: "--in-process-gpu" when: - os: linux store: steam - /Game.app: - - arguments: '--in-process-gpu' + "/Game.app": + - arguments: "--in-process-gpu" when: - os: mac store: steam - /Game.exe: - - arguments: '--in-process-gpu' + "/Game.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam @@ -71940,7 +72166,7 @@ Bonds of the Skies: installDir: Bonds of the Skies: {} launch: - /Bonds of the Skies.exe: + "/Bonds of the Skies.exe": - when: - store: steam steam: @@ -71949,7 +72175,7 @@ Bone Dust: installDir: bonedust: {} launch: - /Bone Dust.exe: + "/Bone Dust.exe": - when: - os: windows store: steam @@ -71957,12 +72183,12 @@ Bone Dust: id: 2247640 Bone Voyage: files: - /Cobblestone/Saved/Config: + "/Cobblestone/Saved/Config": tags: - config when: - os: windows - /Cobblestone/Saved/SaveGames: + "/Cobblestone/Saved/SaveGames": tags: - config - save @@ -71971,15 +72197,15 @@ Bone Voyage: installDir: Bone Voyage: {} launch: - /Cobblestone.exe: + "/Cobblestone.exe": - when: - os: windows store: steam steam: id: 1058370 -'Bone: Out from Boneville': +"Bone: Out from Boneville": files: - /prefs.prop: + "/prefs.prop": tags: - config when: @@ -71987,14 +72213,14 @@ Bone Voyage: installDir: Bone: {} launch: - /bone1v20.exe: + "/bone1v20.exe": - when: - store: steam steam: id: 8310 -'Bone: The Great Cow Race': +"Bone: The Great Cow Race": files: - /prefs.prop: + "/prefs.prop": tags: - config when: @@ -72002,7 +72228,7 @@ Bone Voyage: installDir: Bone 2: {} launch: - /bone2v20.exe: + "/bone2v20.exe": - when: - store: steam steam: @@ -72014,7 +72240,7 @@ BoneCraft: installDir: BoneCraft: {} launch: - /BoneCraft.exe: + "/BoneCraft.exe": - when: - os: windows store: steam @@ -72022,12 +72248,12 @@ BoneCraft: id: 1001220 BoneTown: files: - /BoneTown/game: + "/BoneTown/game": tags: - config when: - os: windows - /BoneTown/savegames: + "/BoneTown/savegames": tags: - save when: @@ -72036,14 +72262,14 @@ Boneless Zombie: installDir: Boneless Zombie: {} launch: - /BonelessZombie.exe: + "/BonelessZombie.exe": - when: - store: steam steam: id: 383700 Boneraiser Minions: files: - /Boneraiser_Minions: + "/Boneraiser_Minions": tags: - save when: @@ -72051,20 +72277,20 @@ Boneraiser Minions: installDir: Boneraiser Minions: {} launch: - /Boneraiser Minions.exe: + "/Boneraiser Minions.exe": - when: - os: windows store: steam steam: id: 1944570 -Bones 'n' Bullets: +"Bones 'n' Bullets": steam: id: 822310 Bonetown - The Power of Death: installDir: Bonetown - The Power of Death: {} launch: - /Bonetown.exe: + "/Bonetown.exe": - when: - os: windows store: steam @@ -72072,7 +72298,7 @@ Bonetown - The Power of Death: id: 350840 Boneworks: files: - /AppData/LocalLow/Stress Level Zero/BONEWORKS/*.dat: + "/AppData/LocalLow/Stress Level Zero/BONEWORKS/*.dat": tags: - save when: @@ -72089,11 +72315,11 @@ Bonfire: installDir: Bonfire: {} launch: - /Bonfire.app/Contents/MacOS/Mac_Runner: + "/Bonfire.app/Contents/MacOS/Mac_Runner": - when: - os: mac store: steam - /Bonfire.exe: + "/Bonfire.exe": - when: - os: windows store: steam @@ -72101,7 +72327,7 @@ Bonfire: id: 1067580 Bonfire Peaks: files: - /LocalLow/Corey Martin/Bonfire Peaks: + "/LocalLow/Corey Martin/Bonfire Peaks": tags: - save when: @@ -72109,15 +72335,15 @@ Bonfire Peaks: installDir: Bonfire Peaks: {} launch: - /Bonfire Peaks.exe: + "/Bonfire Peaks.exe": - when: - os: windows store: steam - /bonfirepeaks.app: + "/bonfirepeaks.app": - when: - os: mac store: steam - /bonfirepeaks.x86_64: + "/bonfirepeaks.x86_64": - when: - os: linux store: steam @@ -72129,30 +72355,30 @@ Bonkies: installDir: Bonkies: {} launch: - /Bonkies.exe: + "/Bonkies.exe": - when: - os: windows store: steam steam: id: 889260 -Bonny's Adventure: +"Bonny's Adventure": installDir: bonny: {} launch: - /bonny.app: + "/bonny.app": - when: - os: mac store: steam - /bonny.exe: + "/bonny.exe": - when: - os: windows store: steam - /bonny.x86: + "/bonny.x86": - when: - bit: 32 os: linux store: steam - /bonny.x86_64: + "/bonny.x86_64": - when: - bit: 64 os: linux @@ -72163,11 +72389,11 @@ Bonsai: installDir: Bonsai: {} launch: - /Bonsai.exe: + "/Bonsai.exe": - when: - os: windows store: steam - /Bonsai.sh: + "/Bonsai.sh": - when: - os: linux store: steam @@ -72177,7 +72403,7 @@ Bonsai Castles: installDir: BonsaiCastles: {} launch: - /BonsaiCastles.exe: + "/BonsaiCastles.exe": - when: - os: windows store: steam @@ -72187,13 +72413,13 @@ Boo Boo Bananas: installDir: Boo Boo Bananas: {} launch: - /Boo Boo Bananas.exe: + "/Boo Boo Bananas.exe": - when: - os: windows store: steam steam: id: 856580 -'Boo Breakers: The Ghostening': +"Boo Breakers: The Ghostening": installDir: Boo Breakers The Ghostening: {} steam: @@ -72202,11 +72428,11 @@ Boo Bunny Plague: installDir: Boo Bunny Plague: {} launch: - /BooBunnyPlague.app: + "/BooBunnyPlague.app": - when: - os: mac store: steam - /BooBunnyPlague.exe: + "/BooBunnyPlague.exe": - when: - os: windows store: steam @@ -72216,7 +72442,7 @@ Boo Party: installDir: Boo Party: {} launch: - /BooParty.exe: + "/BooParty.exe": - when: - os: windows store: steam @@ -72226,11 +72452,11 @@ Boo! Greedy Kid: installDir: Boo! Greedy Kid: {} launch: - /GreedyKid: + "/GreedyKid": - when: - os: linux store: steam - /GreedyKid.app: + "/GreedyKid.app": - when: - os: mac store: steam @@ -72240,7 +72466,7 @@ Boobs Saga: installDir: Boobs Saga: {} launch: - /Boobs Saga.exe: + "/Boobs Saga.exe": - when: - os: windows store: steam @@ -72253,11 +72479,11 @@ Boobserman: installDir: Boobserman: {} launch: - /Boobserman.app/Contents/MacOS/Boobserman: + "/Boobserman.app/Contents/MacOS/Boobserman": - when: - os: mac store: steam - /Boobserman.exe: + "/Boobserman.exe": - when: - os: windows store: steam @@ -72267,31 +72493,31 @@ Booby And The Booby Trap: installDir: Booby And The Booby Trap: {} launch: - /Booby And The Booby Trap.exe: + "/Booby And The Booby Trap.exe": - when: - os: windows store: steam steam: id: 1126090 -Boofle's Home: +"Boofle's Home": installDir: - Boofle's Home: {} + "Boofle's Home": {} steam: id: 611090 Boogeyman: installDir: Boogeyman: {} launch: - /Boogeyman.app: + "/Boogeyman.app": - when: - os: mac store: steam - /Boogeyman32.exe: + "/Boogeyman32.exe": - when: - bit: 32 os: windows store: steam - /Boogeyman64.exe: + "/Boogeyman64.exe": - when: - bit: 64 os: windows @@ -72302,12 +72528,12 @@ Boogeyman 2: installDir: Boogeyman2: {} launch: - /Boogeyman2_32.exe: + "/Boogeyman2_32.exe": - when: - bit: 32 os: windows store: steam - /Boogeyman2_64.exe: + "/Boogeyman2_64.exe": - when: - bit: 64 os: windows @@ -72318,11 +72544,11 @@ Boogie Bot: installDir: Boogie Bot: {} launch: - /Boogie Bot v1.03 mac.app: + "/Boogie Bot v1.03 mac.app": - when: - os: mac store: steam - /Boogie Bot v1.03.exe: + "/Boogie Bot v1.03.exe": - when: - os: windows store: steam @@ -72332,7 +72558,7 @@ Book Seeker: installDir: Book Seeker: {} launch: - /Book Seeker.exe: + "/Book Seeker.exe": - when: - store: steam steam: @@ -72341,12 +72567,12 @@ Book Series - Alice in Wonderland: installDir: Book Series - Alice in Wonderland: {} launch: - /nw.exe: - - arguments: '--in-process-gpu' + "/nw.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam - /nwjs.app: + "/nwjs.app": - when: - os: mac store: steam @@ -72357,7 +72583,7 @@ Book of Aliens: id: 1196230 Book of Demons: files: - /Return2Games_WIP21: + "/Return2Games_WIP21": tags: - save when: @@ -72367,17 +72593,17 @@ Book of Demons: installDir: Return 2 Games: {} launch: - /Return 2 Games.app: + "/Return 2 Games.app": - when: - os: mac store: steam - /r2g_launcher.exe: + "/r2g_launcher.exe": - when: - os: windows store: steam steam: id: 449960 -'Book of Demons: Hellcard': +"Book of Demons: Hellcard": installDir: HELLCARD: {} steam: @@ -72386,14 +72612,14 @@ Book of Eos: installDir: Book of Eos: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: id: 1026430 Book of Hours: files: - /.config/unity3d/Weather Factory/Book of Hours: + "/.config/unity3d/Weather Factory/Book of Hours": tags: - config - save @@ -72402,15 +72628,15 @@ Book of Hours: installDir: Book of Hours: {} launch: - /OSX.app/Contents/MacOS/Book of Hours: + "/OSX.app/Contents/MacOS/Book of Hours": - when: - os: mac store: steam - /bh.exe: + "/bh.exe": - when: - os: windows store: steam - /bh.x86_64: + "/bh.x86_64": - when: - os: linux store: steam @@ -72420,7 +72646,7 @@ Book of Legends: installDir: Book of Legends: {} launch: - /BookOfLegends.exe: + "/BookOfLegends.exe": - when: - store: steam steam: @@ -72434,7 +72660,7 @@ Book of Potentia 2: installDir: Book Of Potentia 2: {} launch: - /BOP2.exe: + "/BOP2.exe": - when: - os: windows store: steam @@ -72444,15 +72670,15 @@ Book of Travels: installDir: Book of Travels: {} launch: - /BookOfTravels.app/Launcher.app: + "/BookOfTravels.app/Launcher.app": - when: - os: mac store: steam - /Launcher/BookofTravelsLauncher.exe: + "/Launcher/BookofTravelsLauncher.exe": - when: - os: windows store: steam - /Launcher/BookofTravelsLauncher.x86_64: + "/Launcher/BookofTravelsLauncher.x86_64": - when: - bit: 64 os: linux @@ -72463,7 +72689,7 @@ Book of Yog Idle RPG: installDir: book of yog 依盖之书: {} launch: - /依盖之书.exe: + "/依盖之书.exe": - when: - os: windows store: steam @@ -72473,7 +72699,7 @@ Bookbound Brigade: installDir: Bookbound Brigade: {} launch: - /Bookbound Brigade.exe: + "/Bookbound Brigade.exe": - when: - os: windows store: steam @@ -72483,20 +72709,20 @@ Bookend: installDir: Bookend: {} launch: - /BookendPC.exe: + "/BookendPC.exe": - when: - store: steam steam: id: 990720 -'Bookers: Underground Chapter': +"Bookers: Underground Chapter": installDir: Bookers Underground Chapter: {} launch: - /Bookers.app: + "/Bookers.app": - when: - os: mac store: steam - /Bookers.exe: + "/Bookers.exe": - when: - os: windows store: steam @@ -72507,7 +72733,7 @@ Booking Revolution: id: 673930 Bookworm: files: - /Steam/Bookworm/players: + "/Steam/Bookworm/players": tags: - save when: @@ -72515,11 +72741,11 @@ Bookworm: installDir: BookWorm Deluxe: {} launch: - /BookWorm.exe: + "/BookWorm.exe": - when: - os: windows store: steam - /Bookworm Deluxe.app: + "/Bookworm Deluxe.app": - when: - os: mac store: steam @@ -72527,62 +72753,68 @@ Bookworm: id: 3370 Bookworm Adventures: files: - /PopCap Games/WinBAD/users: + "/PopCap Games/WinBAD/users": tags: - save when: - os: windows - /Steam/WinBAD/users: + "/Steam/WinBAD/users": tags: - save when: - - store: steam + - os: windows + store: steam installDir: Bookworm Adventures Deluxe: {} launch: - /BookwormAdventures.exe: + "/BookwormAdventures.exe": - when: - store: steam registry: HKEY_CURRENT_USER/Software/Steam/WinBAD: tags: - config + when: + - store: steam steam: id: 3470 -'Bookworm Adventures: Volume 2': +"Bookworm Adventures: Volume 2": files: - /PopCap Games/BWAVol2/users: + "/PopCap Games/BWAVol2/users": tags: - save when: - os: windows - /Steam/BWAVol2/users: + "/Steam/BWAVol2/users": tags: - save when: - - store: steam + - os: windows + store: steam installDir: Bookworm Adventures Volume 2: {} launch: - /BookwormAdventuresVol2.exe: - - arguments: ' ' + "/BookwormAdventuresVol2.exe": + - arguments: " " when: - store: steam registry: HKEY_CURRENT_USER/Software/SteamPopCap/BWAVol2: tags: - config + when: + - store: steam steam: id: 3630 Boolean: installDir: Boolean: {} launch: - /Boolean.exe: + "/Boolean.exe": - when: - os: windows store: steam - /Boolean.x86: + "/Boolean.x86": - when: - os: linux store: steam @@ -72592,7 +72824,7 @@ Boom Bits: installDir: Boom Bits: {} launch: - /BoomBits.exe: + "/BoomBits.exe": - when: - os: windows store: steam @@ -72602,11 +72834,11 @@ Boom Boom Bovine: installDir: Boom Boom Bovine: {} launch: - /Boom Boom Bovine.exe: + "/Boom Boom Bovine.exe": - when: - os: windows store: steam - /Contents/MacOS/Boom Boom Bovine: + "/Contents/MacOS/Boom Boom Bovine": - when: - os: mac store: steam @@ -72624,7 +72856,7 @@ Boom Box Blue!: installDir: Boom Box Blue!: {} launch: - /Boom Box Blue.exe: + "/Boom Box Blue.exe": - when: - os: windows store: steam @@ -72634,7 +72866,7 @@ Boom Brothers: installDir: Dunderheads: {} launch: - /Dunderheads.exe: + "/Dunderheads.exe": - when: - os: windows store: steam @@ -72647,7 +72879,7 @@ Boom Island: installDir: Boom Island: {} launch: - /Boom Island.exe: + "/Boom Island.exe": - when: - os: windows store: steam @@ -72660,7 +72892,7 @@ Boom! Boom!: installDir: Boom! Boom!: {} launch: - /Boom! Boom!.exe: + "/Boom! Boom!.exe": - when: - os: windows store: steam @@ -72678,7 +72910,7 @@ BoomTown! Deluxe: installDir: BoomTown! Deluxe: {} launch: - /BoomTown! Deluxe.exe: + "/BoomTown! Deluxe.exe": - when: - os: windows store: steam @@ -72688,7 +72920,7 @@ BoomTris: installDir: BoomTris: {} launch: - /BoomTris.exe: + "/BoomTris.exe": - when: - os: windows store: steam @@ -72698,7 +72930,7 @@ Boomer Rampage: installDir: Boomer Rampage: {} launch: - /Boomer Rampage.exe: + "/Boomer Rampage.exe": - when: - os: windows store: steam @@ -72708,7 +72940,7 @@ Boomerang Fu: installDir: Boomerang Fu: {} launch: - /Boomerang Fu.exe: + "/Boomerang Fu.exe": - when: - os: windows store: steam @@ -72716,7 +72948,7 @@ Boomerang Fu: id: 965680 Boomerang X: files: - /LocalLow/DANG!/BOOMERANG X: + "/LocalLow/DANG!/BOOMERANG X": tags: - save when: @@ -72726,7 +72958,7 @@ Boomerang X: installDir: Boomerang X: {} launch: - /BOOMERANG X.exe: + "/BOOMERANG X.exe": - when: - os: windows store: steam @@ -72736,11 +72968,11 @@ Boon Boon: installDir: Boon Boon: {} launch: - /BoonBoon: + "/BoonBoon": - when: - os: linux store: steam - /BoonBoon.exe: + "/BoonBoon.exe": - when: - os: windows store: steam @@ -72750,27 +72982,27 @@ Boons Farm: installDir: Boons Farm: {} launch: - /Boons Farm.exe: + "/Boons Farm.exe": - when: - store: steam steam: id: 914500 -'Booper, Get Home!': +"Booper, Get Home!": steam: id: 631670 Boor: installDir: BOOR: {} launch: - /BOOR: + "/BOOR": - when: - os: linux store: steam - /BOOR.app/Contents/MacOS/Mac_Runner: + "/BOOR.app/Contents/MacOS/Mac_Runner": - when: - os: mac store: steam - /BOOR.exe: + "/BOOR.exe": - when: - os: windows store: steam @@ -72790,16 +73022,16 @@ Booster Trooper: installDir: boostertrooper: {} launch: - /BTroopers.exe: + "/BTroopers.exe": - when: - store: steam steam: id: 27920 -'Boot : Game Dev Sim': +"Boot : Game Dev Sim": installDir: Boot Game Dev Sim: {} launch: - /BootGameDevSim.exe: + "/BootGameDevSim.exe": - when: - os: windows store: steam @@ -72809,7 +73041,7 @@ Boot Camp Fitness: installDir: Boot Camp Fitness: {} launch: - '/${1163090}.exe': + "/${1163090}.exe": - when: - os: windows store: steam @@ -72819,7 +73051,7 @@ Boot Hill Blaster: installDir: Boot Hill Blaster: {} launch: - /Boot Hill Blaster.exe: + "/Boot Hill Blaster.exe": - when: - os: windows store: steam @@ -72829,7 +73061,7 @@ Boot Hill Bounties: installDir: Boot Hill Bounties: {} launch: - /BootHillBounties.exe: + "/BootHillBounties.exe": - when: - os: windows store: steam @@ -72837,7 +73069,7 @@ Boot Hill Bounties: id: 727290 Boot Hill Heroes: files: - /SavedGames/Boot Hill Heroes: + "/SavedGames/Boot Hill Heroes": tags: - save when: @@ -72845,7 +73077,7 @@ Boot Hill Heroes: installDir: Boot Hill Heroes: {} launch: - /Boot Hill Heroes.exe: + "/Boot Hill Heroes.exe": - when: - os: windows store: steam @@ -72855,11 +73087,11 @@ Booth: installDir: Booth: {} launch: - /Booth.app/Contents/MacOS/Booth: + "/Booth.app/Contents/MacOS/Booth": - when: - os: mac store: steam - /Booth.exe: + "/Booth.exe": - when: - os: windows store: steam @@ -72875,25 +73107,25 @@ Booty Calls: installDir: Booty Calls: {} launch: - /BootyCalls.app: + "/BootyCalls.app": - when: - os: mac store: steam - /BootyCalls.exe: + "/BootyCalls.exe": - when: - os: windows store: steam steam: id: 823550 -'Booty Calls: Men At Work': +"Booty Calls: Men At Work": installDir: Booty Calls - Men At Work: {} launch: - /BootyCallsMenAtWork.app: + "/BootyCallsMenAtWork.app": - when: - os: mac store: steam - /BootyCallsMenAtWork.exe: + "/BootyCallsMenAtWork.exe": - when: - os: windows store: steam @@ -72903,7 +73135,7 @@ Booty Diver: installDir: Booty Diver: {} launch: - /BootyDiver.exe: + "/BootyDiver.exe": - when: - bit: 64 os: windows @@ -72914,7 +73146,7 @@ Booty Farm: installDir: Booty Farm: {} launch: - /Booty Farm.exe: + "/Booty Farm.exe": - when: - os: windows store: steam @@ -72924,7 +73156,7 @@ BootyBuns & 21: installDir: BootyBuns & 21: {} launch: - /BootyBuns&21.exe: + "/BootyBuns&21.exe": - when: - os: windows store: steam @@ -72933,21 +73165,21 @@ BootyBuns & 21: Boozy Dwarf: steam: id: 562560 -Bop'N Wrestle: +"Bop'N Wrestle": gog: id: 2034764467 installDir: - Bop'n Wrestle: {} + "Bop'n Wrestle": {} steam: id: 1315910 -Boppin': +"Boppin'": files: - /BOPPIN.CFG: + "/BOPPIN.CFG": tags: - config when: - os: dos - /Bopsave*.bin: + "/Bopsave*.bin": tags: - save when: @@ -72956,7 +73188,7 @@ Boratium Wars: installDir: Boratium Wars Beta: {} launch: - /BoratiumWars.exe: + "/BoratiumWars.exe": - when: - os: windows store: steam @@ -72966,7 +73198,7 @@ Border Closure: installDir: BC_BSX_TPS: {} launch: - /BC_BSX_TPS.exe: + "/BC_BSX_TPS.exe": - when: - os: windows store: steam @@ -72976,7 +73208,7 @@ Border Control: installDir: Border Control: {} launch: - /BorderControl.exe: + "/BorderControl.exe": - when: - os: windows store: steam @@ -72986,7 +73218,7 @@ Border Force: installDir: Border Force: {} launch: - /Border Force.exe: + "/Border Force.exe": - when: - store: steam steam: @@ -72998,7 +73230,7 @@ Border Officer: installDir: Border Officer: {} launch: - /windows_content/Border Officer.exe: + "/windows_content/Border Officer.exe": - when: - store: steam steam: @@ -73010,17 +73242,17 @@ Border of her Heart: installDir: Border of her Heart: {} launch: - /Game.app: - - arguments: '--in-process-gpu' + "/Game.app": + - arguments: "--in-process-gpu" when: - os: mac store: steam - /Game.exe: - - arguments: '--in-process-gpu' + "/Game.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam - /nw: + "/nw": - when: - os: linux store: steam @@ -73030,7 +73262,7 @@ BorderStrain: installDir: BorderStrain: {} launch: - /borderstrain.exe: + "/borderstrain.exe": - when: - os: windows store: steam @@ -73038,12 +73270,12 @@ BorderStrain: id: 1007070 BorderZone: files: - /saves: + "/saves": tags: - save when: - os: windows - /saves/config.cfg: + "/saves/config.cfg": tags: - config when: @@ -73053,7 +73285,7 @@ BorderZone: installDir: BorderZone: {} launch: - /BorderZone.exe: + "/BorderZone.exe": - when: - os: windows store: steam @@ -73061,68 +73293,66 @@ BorderZone: id: 289220 Borderlands: files: - /My Games/Borderlands/SaveData: + "/My Games/Borderlands/SaveData": tags: - save when: - os: windows - /My Games/Borderlands/WillowGame/Config: + "/My Games/Borderlands/WillowGame/Config": tags: - config when: - os: windows id: steamExtra: - - 901566 - 8990 - 40940 - 50110 - 65920 - 301070 + - 901566 installDir: Borderlands: {} launch: - /Binaries/Borderlands.exe: + "/Binaries/Borderlands.exe": - when: - store: steam steam: id: 8980 Borderlands 2: files: - /Library/Application Support/Borderlands 2/WillowGame/Config: + "/Library/Application Support/Borderlands 2/WillowGame/Config": tags: - config when: - os: mac - /Library/Application Support/Borderlands 2/WillowGame/SaveData: + "/Library/Application Support/Borderlands 2/WillowGame/SaveData": tags: - save when: - os: mac - /My Games/Borderlands 2/WillowGame/Config: + "/My Games/Borderlands 2/WillowGame/Config": tags: - config when: - os: windows - /My Games/Borderlands 2/WillowGame/SaveData: + "/My Games/Borderlands 2/WillowGame/SaveData": tags: - save when: - os: windows - /aspyr-media/borderlands 2/willowgame/config: + "/aspyr-media/borderlands 2/willowgame/config": tags: - config when: - os: linux - /aspyr-media/borderlands 2/willowgame/savedata: + "/aspyr-media/borderlands 2/willowgame/savedata": tags: - save when: - os: linux id: steamExtra: - - 218560 - - 230090 - 207870 - 208690 - 208691 @@ -73134,6 +73364,7 @@ Borderlands 2: - 213781 - 213782 - 218550 + - 218560 - 221710 - 224140 - 224141 @@ -73167,19 +73398,20 @@ Borderlands 2: - 225832 - 225833 - 225834 + - 230090 - 872280 installDir: Borderlands 2: {} launch: - /Binaries/Win32/Launcher.exe: + "/Binaries/Win32/Launcher.exe": - when: - os: windows store: steam - /Borderlands2: + "/Borderlands2": - when: - os: linux store: steam - /Borderlands2.app: + "/Borderlands2.app": - when: - os: mac store: steam @@ -73187,12 +73419,12 @@ Borderlands 2: id: 49520 Borderlands 2 VR: files: - /My Games/Borderlands 2 VR/WillowGame/Config: + "/My Games/Borderlands 2 VR/WillowGame/Config": tags: - config when: - os: windows - /My Games/Borderlands 2 VR/WillowGame/SaveData: + "/My Games/Borderlands 2 VR/WillowGame/SaveData": tags: - save when: @@ -73203,17 +73435,17 @@ Borderlands 2 VR: id: 991260 Borderlands 3: files: - /Library/Application Support/GearboxSoftware/OakGame/Saved/SaveGames: + "/Library/Application Support/GearboxSoftware/OakGame/Saved/SaveGames": tags: - save when: - os: mac - /My Games/Borderlands 3/Saved/Config/WindowsNoEditor: + "/My Games/Borderlands 3/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /My Games/Borderlands 3/Saved/SaveGames: + "/My Games/Borderlands 3/Saved/SaveGames": tags: - save when: @@ -73236,21 +73468,21 @@ Borderlands 3: installDir: Borderlands 3: {} launch: - /OakGame/Binaries/Win64/Borderlands3.exe: + "/OakGame/Binaries/Win64/Borderlands3.exe": - when: - bit: 64 os: windows store: steam steam: id: 397540 -'Borderlands: Game of the Year Enhanced': +"Borderlands: Game of the Year Enhanced": files: - /My Games/Borderlands Game of the Year/Binaries/SaveData: + "/My Games/Borderlands Game of the Year/Binaries/SaveData": tags: - save when: - os: windows - /My Games/Borderlands Game of the Year/WillowGame/Config: + "/My Games/Borderlands Game of the Year/WillowGame/Config": tags: - config when: @@ -73258,70 +73490,70 @@ Borderlands 3: installDir: BorderlandsGOTYEnhanced: {} launch: - /Binaries/Win64/Launcher.exe: + "/Binaries/Win64/Launcher.exe": - when: - bit: 64 os: windows store: steam steam: id: 729040 -'Borderlands: The Pre-Sequel': +"Borderlands: The Pre-Sequel": files: - /.var/app/com.valvesoftware.Steam/.local/share/aspyr-media/borderlands the pre-sequel/willowgame/savedata: + "/.var/app/com.valvesoftware.Steam/.local/share/aspyr-media/borderlands the pre-sequel/willowgame/savedata": tags: - save when: - os: linux - /Library/Application Support/Borderlands The Pre-Sequel/WillowGame/Config: + "/Library/Application Support/Borderlands The Pre-Sequel/WillowGame/Config": tags: - config when: - os: mac - /Library/Application Support/Borderlands The Pre-Sequel/WillowGame/SaveData: + "/Library/Application Support/Borderlands The Pre-Sequel/WillowGame/SaveData": tags: - save when: - os: mac - /My Games/Borderlands The Pre-Sequel/WillowGame/Config: + "/My Games/Borderlands The Pre-Sequel/WillowGame/Config": tags: - config when: - os: windows - /My Games/Borderlands The Pre-Sequel/WillowGame/SaveData: + "/My Games/Borderlands The Pre-Sequel/WillowGame/SaveData": tags: - save when: - os: windows - /aspyr-media/borderlands the pre-sequel/willowgame/config: + "/aspyr-media/borderlands the pre-sequel/willowgame/config": tags: - config when: - os: linux - /aspyr-media/borderlands the pre-sequel/willowgame/savedata: + "/aspyr-media/borderlands the pre-sequel/willowgame/savedata": tags: - save when: - os: linux id: steamExtra: - - 319090 + - 275690 - 289880 - 289881 - - 275690 - 316410 + - 319090 - 321430 installDir: BorderlandsPreSequel: {} launch: - /Binaries/Win32/Launcher.exe: + "/Binaries/Win32/Launcher.exe": - when: - os: windows store: steam - /BorderlandsPreSequel: + "/BorderlandsPreSequel": - when: - os: linux store: steam - /borderlandspresequel.app: + "/borderlandspresequel.app": - when: - os: mac store: steam @@ -73331,7 +73563,7 @@ Borderlight: installDir: Borderlight: {} launch: - /Borderlight.exe: + "/Borderlight.exe": - when: - store: steam steam: @@ -73340,7 +73572,7 @@ Boreal Blade: installDir: Boreal Blade: {} launch: - /borealblade_64bit.exe: + "/borealblade_64bit.exe": - when: - os: windows store: steam @@ -73350,7 +73582,7 @@ Borealis: installDir: Borealis: {} launch: - /Borealis.exe: + "/Borealis.exe": - when: - os: windows store: steam @@ -73360,11 +73592,11 @@ Boring Man - Online Tactical Stickman Combat: installDir: Boring Man - Online Tactical Stickman Combat: {} launch: - /BoringManGame.exe: + "/BoringManGame.exe": - when: - os: windows store: steam - /run.sh: + "/run.sh": - when: - os: linux store: steam @@ -73376,15 +73608,15 @@ Born Punk: installDir: Born Punk: {} launch: - /Born Punk.app: + "/Born Punk.app": - when: - os: mac store: steam - /BornPunk.exe: + "/BornPunk.exe": - when: - os: windows store: steam - /start: + "/start": - when: - os: linux store: steam @@ -73394,7 +73626,7 @@ Born Tubi Wild: installDir: Born Tubi Wild: {} launch: - /BornTubiWild.exe: + "/BornTubiWild.exe": - when: - os: windows store: steam @@ -73407,7 +73639,7 @@ Born of Fire: installDir: Born of Fire: {} launch: - /BornOfFire.exe: + "/BornOfFire.exe": - when: - os: windows store: steam @@ -73417,15 +73649,15 @@ Boros: installDir: BOROS: {} launch: - /Boros MAC.app: + "/Boros MAC.app": - when: - os: mac store: steam - /Boros.exe: + "/Boros.exe": - when: - os: windows store: steam - /Boros.x86: + "/Boros.x86": - when: - os: linux store: steam @@ -73435,30 +73667,30 @@ Borstal: installDir: Borstal: {} launch: - /Borstal: + "/Borstal": - when: - os: linux store: steam - /Borstal.exe: + "/Borstal.exe": - when: - os: windows store: steam - /Contents/MacOS/Borstal: + "/Contents/MacOS/Borstal": - when: - os: mac store: steam - workingDir: /Contents/MacOS + workingDir: "/Contents/MacOS" steam: id: 453730 -Bosch's Damnation: +"Bosch's Damnation": installDir: - Bosch's Damnation: {} + "Bosch's Damnation": {} launch: - /Bosch's Damnation.app: + "/Bosch's Damnation.app": - when: - os: mac store: steam - /Bosch.exe: + "/Bosch.exe": - when: - os: windows store: steam @@ -73466,12 +73698,12 @@ Bosch's Damnation: id: 337130 Boson X: files: - /data/config.lua: + "/data/config.lua": tags: - config when: - os: windows - /ltstate: + "/ltstate": tags: - save when: @@ -73479,11 +73711,13 @@ Boson X: installDir: Boson X: {} launch: - /bosonx: + "/bosonx": - when: + - os: mac + store: steam - os: linux store: steam - /bosonx.exe: + "/bosonx.exe": - when: - os: windows store: steam @@ -73493,7 +73727,7 @@ Bosorka: installDir: Bosorka: {} launch: - /Bosorka.exe: + "/Bosorka.exe": - when: - bit: 64 os: windows @@ -73504,7 +73738,7 @@ Boss 101: installDir: Boss 101: {} launch: - /Boss_101.exe: + "/Boss_101.exe": - when: - os: windows store: steam @@ -73514,11 +73748,11 @@ Boss Barrage: installDir: Boss Barrage: {} launch: - /BallBarrage_steam_en.exe: + "/BallBarrage_steam_en.exe": - when: - os: windows store: steam - /ballbarrage.app/Contents/MacOS/Ball Barrage: + "/ballbarrage.app/Contents/MacOS/Ball Barrage": - when: - os: mac store: steam @@ -73528,7 +73762,7 @@ Boss Crushers: installDir: Boss Crushers: {} launch: - /bosscrushers.exe: + "/bosscrushers.exe": - when: - bit: 64 os: windows @@ -73539,7 +73773,7 @@ Boss Defiance: installDir: Boss Defiance: {} launch: - /bossdefiance.exe: + "/bossdefiance.exe": - when: - os: windows store: steam @@ -73549,7 +73783,7 @@ Boss Monster: installDir: Boss Monster: {} launch: - /DBMGameSteam.exe: + "/DBMGameSteam.exe": - when: - os: windows store: steam @@ -73559,27 +73793,18 @@ BossConstructor: installDir: BossConstructor: {} launch: - /bcmac.sh: - - arguments: >- - -cp - lib/natives-linux.jar:lib/natives-mac.jar:lib/natives-windows.jar:lib/lwjgl.jar:lib/slick.jar:lib/slick-util.jar:lib/lwjgl_util.jar:lib/jorbis-0.0.15.jar:lib/jogg-0.0.7.jar:lib/jinput.jar:lib/luaj-jse-3.0.jar:lib/steamworks4j-1.2.3.jar:build - -Xmx4g -Xms600m -Djava.library.path=native -jar bc.jar + "/bcmac.sh": + - arguments: "-cp lib/natives-linux.jar:lib/natives-mac.jar:lib/natives-windows.jar:lib/lwjgl.jar:lib/slick.jar:lib/slick-util.jar:lib/lwjgl_util.jar:lib/jorbis-0.0.15.jar:lib/jogg-0.0.7.jar:lib/jinput.jar:lib/luaj-jse-3.0.jar:lib/steamworks4j-1.2.3.jar:build -Xmx4g -Xms600m -Djava.library.path=native -jar bc.jar" when: - os: mac store: steam - /jre/bin/java: - - arguments: >- - -cp - lib/natives-linux.jar:lib/natives-mac.jar:lib/natives-windows.jar:lib/lwjgl.jar:lib/slick.jar:lib/slick-util.jar:lib/lwjgl_util.jar:lib/jorbis-0.0.15.jar:lib/jogg-0.0.7.jar:lib/jinput.jar:lib/luaj-jse-3.0.jar:lib/steamworks4j-1.2.3.jar:build - -Xmx512m -Xms256m -XX:MaxDirectMemorySize=256m -Djava.library.path=native -jar bc.jar + "/jre/bin/java": + - arguments: "-cp lib/natives-linux.jar:lib/natives-mac.jar:lib/natives-windows.jar:lib/lwjgl.jar:lib/slick.jar:lib/slick-util.jar:lib/lwjgl_util.jar:lib/jorbis-0.0.15.jar:lib/jogg-0.0.7.jar:lib/jinput.jar:lib/luaj-jse-3.0.jar:lib/steamworks4j-1.2.3.jar:build -Xmx512m -Xms256m -XX:MaxDirectMemorySize=256m -Djava.library.path=native -jar bc.jar" when: - os: linux store: steam - /jre/bin/javaw.exe: - - arguments: >- - -cp - lib/natives-linux.jar;lib/natives-mac.jar;lib/natives-windows.jar;lib/lwjgl.jar;lib/slick.jar;lib/slick-util.jar;lib/lwjgl_util.jar;lib/jorbis-0.0.15.jar;lib/jogg-0.0.7.jar;lib/jinput.jar;lib/luaj-jse-3.0.jar;lib/steamworks4j-1.2.3.jar;build - -Xmx500m -Xms400m -XX:MaxDirectMemorySize=256m -Djava.library.path=native -jar bc.jar + "/jre/bin/javaw.exe": + - arguments: "-cp lib/natives-linux.jar;lib/natives-mac.jar;lib/natives-windows.jar;lib/lwjgl.jar;lib/slick.jar;lib/slick-util.jar;lib/lwjgl_util.jar;lib/jorbis-0.0.15.jar;lib/jogg-0.0.7.jar;lib/jinput.jar;lib/luaj-jse-3.0.jar;lib/steamworks4j-1.2.3.jar;build -Xmx500m -Xms400m -XX:MaxDirectMemorySize=256m -Djava.library.path=native -jar bc.jar" when: - os: windows store: steam @@ -73589,11 +73814,11 @@ Bot Battles: installDir: BotBattles: {} launch: - /BotBattles.app/Contents/MacOS/BotBattles: + "/BotBattles.app/Contents/MacOS/BotBattles": - when: - os: mac store: steam - /BotBattles.exe: + "/BotBattles.exe": - when: - bit: 64 os: windows @@ -73604,8 +73829,8 @@ Bot Colony: installDir: BotColonyApp: {} launch: - /BotColony.exe: - - arguments: '-console' + "/BotColony.exe": + - arguments: "-console" when: - bit: 64 os: windows @@ -73616,7 +73841,7 @@ Bot Gaiden: installDir: Bot Gaiden: {} launch: - /BotGaiden.exe: + "/BotGaiden.exe": - when: - os: windows store: steam @@ -73626,24 +73851,24 @@ Bot Land: installDir: Bot Land: {} launch: - /Bot Land.app/Contents/MacOS/Bot Land: + "/Bot Land.app/Contents/MacOS/Bot Land": - when: - os: mac store: steam - /Bot Land.exe: + "/Bot Land.exe": - when: - os: windows store: steam steam: id: 1119870 -'Bot Net: Ramshackle Robotics': +"Bot Net: Ramshackle Robotics": steam: id: 1172350 -'Bot Tales: The Crashed': +"Bot Tales: The Crashed": installDir: Bot Tales The Crashed: {} launch: - /Bot Tales The Crashed.exe: + "/Bot Tales The Crashed.exe": - when: - os: windows store: steam @@ -73651,12 +73876,12 @@ Bot Land: id: 862200 Bot Vice: files: - /userdata//491040/remote/bv.sav: + "/userdata//491040/remote/bv.sav": tags: - save when: - store: steam - /bot_vice/bc.sav: + "/bot_vice/bc.sav": tags: - save when: @@ -73664,15 +73889,15 @@ Bot Vice: installDir: Bot Vice: {} launch: - /BotVice.app: + "/BotVice.app": - when: - os: mac store: steam - /bot_vice.exe: + "/bot_vice.exe": - when: - os: windows store: steam - /runner: + "/runner": - when: - bit: 64 os: linux @@ -73683,35 +73908,35 @@ Bot War: installDir: BotWar: {} launch: - /BotWar: + "/BotWar": - when: - os: linux store: steam - /BotWar.exe: + "/BotWar.exe": - when: - os: windows store: steam - /Contents/MacOS/JavaAppLauncher: + "/Contents/MacOS/JavaAppLauncher": - when: - os: mac store: steam steam: id: 1016330 -'Botanica: Earthbound': +"Botanica: Earthbound": installDir: - Botanica Earthbound Collector's Edition: {} + "Botanica Earthbound Collector's Edition": {} launch: - /Botanica_EarthboundCE.exe: + "/Botanica_EarthboundCE.exe": - when: - os: windows store: steam steam: id: 758610 -'Botanica: Into the Unknown': +"Botanica: Into the Unknown": installDir: - Botanica Into the Unknown Collector's Edition: {} + "Botanica Into the Unknown Collector's Edition": {} launch: - /Botanica_IntoTheUnknownCE.exe: + "/Botanica_IntoTheUnknownCE.exe": - when: - os: windows store: steam @@ -73719,32 +73944,32 @@ Bot War: id: 626780 Botanicula: files: - /Documents/BotaniculaSaves: + "/Documents/BotaniculaSaves": tags: - save when: - os: linux - /Documents/BotaniculaSaves/settings.txt: + "/Documents/BotaniculaSaves/settings.txt": tags: - config when: - os: linux - /Library/Application Support/Amanita Design/Botanicula: + "/Library/Application Support/Amanita Design/Botanicula": tags: - save when: - os: mac - /Library/Application Support/Amanita Design/Botanicula/settings.txt: + "/Library/Application Support/Amanita Design/Botanicula/settings.txt": tags: - config when: - os: mac - /BotaniculaSaves: + "/BotaniculaSaves": tags: - save when: - os: windows - /BotaniculaSaves/settings.txt: + "/BotaniculaSaves/settings.txt": tags: - config when: @@ -73754,11 +73979,11 @@ Botanicula: installDir: Botanicula: {} launch: - /Botanicula.app: + "/Botanicula.app": - when: - os: mac store: steam - /Botanicula.exe: + "/Botanicula.exe": - when: - os: windows store: steam @@ -73768,17 +73993,17 @@ Botanik: installDir: Botanik: {} launch: - /botanik_mac.app: + "/botanik_mac.app": - when: - os: mac store: steam - /botanik_windows/botanik.exe: + "/botanik_windows/botanik.exe": - when: - os: windows store: steam steam: id: 1135160 -Botlike - a robot's rampage: +"Botlike - a robot's rampage": installDir: Botlike: {} steam: @@ -73787,7 +74012,7 @@ Botology: installDir: Botology: {} launch: - /BTL_Game.exe: + "/BTL_Game.exe": - when: - os: windows store: steam @@ -73797,7 +74022,7 @@ Bots Rush: installDir: Bots Rush: {} launch: - /Bots Rush.exe: + "/Bots Rush.exe": - when: - os: windows store: steam @@ -73805,7 +74030,7 @@ Bots Rush: id: 972080 Bottle: files: - /Bottle/Saved/SaveGames: + "/Bottle/Saved/SaveGames": tags: - config when: @@ -73813,7 +74038,7 @@ Bottle: installDir: Bottle: {} launch: - /Bottle.exe: + "/Bottle.exe": - when: - bit: 64 os: windows @@ -73829,7 +74054,7 @@ Bottle Remake: installDir: Bottle: {} launch: - /BottleRe.exe: + "/BottleRe.exe": - when: - bit: 64 os: windows @@ -73845,17 +74070,17 @@ Bottle of truth: installDir: Bottle of truth: {} launch: - /bot.exe: + "/bot.exe": - when: - os: windows store: steam steam: id: 907950 -'Bottle: Pilgrim Redux': +"Bottle: Pilgrim Redux": installDir: Bottle Pilgrim: {} launch: - /BottlePilgrimRedux.exe: + "/BottlePilgrimRedux.exe": - when: - bit: 64 os: windows @@ -73866,15 +74091,15 @@ Bottler3000: installDir: alienterminal: {} launch: - /AlienTerminal.app/Contents/MacOS/AlienTerminal: + "/AlienTerminal.app/Contents/MacOS/AlienTerminal": - when: - os: mac store: steam - /AlienTerminal.exe: + "/AlienTerminal.exe": - when: - os: windows store: steam - /AlienTerminal.x86: + "/AlienTerminal.x86": - when: - os: linux store: steam @@ -73884,20 +74109,20 @@ Bottom of the 9th: installDir: Bottom of the 9th: {} launch: - /Bot9.app: + "/Bot9.app": - when: - os: mac store: steam - /Bot9.exe: + "/Bot9.exe": - when: - os: windows store: steam - /Bot9.x86: + "/Bot9.x86": - when: - bit: 32 os: linux store: steam - /Bot9.x86_64: + "/Bot9.x86_64": - when: - bit: 64 os: linux @@ -73908,11 +74133,11 @@ Boulder Dash - 30th Anniversary: installDir: Boulder Dash 30th Anniversary: {} launch: - /Boulder Dash 30th Anniversary.app: + "/Boulder Dash 30th Anniversary.app": - when: - os: mac store: steam - /BoulderDash30thAnniversary.exe: + "/BoulderDash30thAnniversary.exe": - when: - os: windows store: steam @@ -73929,12 +74154,12 @@ Boulder Dash Deluxe: installDir: Boulder Dash Deluxe: {} launch: - /Boulder Dash Deluxe.exe: + "/Boulder Dash Deluxe.exe": - when: - bit: 64 os: windows store: steam - /bdd.app: + "/bdd.app": - when: - os: mac store: steam @@ -73948,11 +74173,11 @@ Boulder Dash Deluxe: Bouldering Brawl: steam: id: 790070 -'Boulders: Puzzle': +"Boulders: Puzzle": installDir: Boulders Puzzle: {} launch: - /boulders_puzzle.exe: + "/boulders_puzzle.exe": - when: - bit: 64 os: windows @@ -73968,15 +74193,15 @@ Bounce (2018): installDir: Bounce: {} launch: - /Bounce.app: + "/Bounce.app": - when: - os: mac store: steam - /Bounce.exe: + "/Bounce.exe": - when: - os: windows store: steam - /Bounce.x86: + "/Bounce.x86": - when: - os: linux store: steam @@ -73986,7 +74211,7 @@ Bounce Ball: installDir: Bounce Ball: {} launch: - /BounceBall.exe: + "/BounceBall.exe": - when: - os: windows store: steam @@ -73996,7 +74221,7 @@ Bounce Knight: installDir: Bounce Knight: {} launch: - /BounceKnight.exe: + "/BounceKnight.exe": - when: - os: windows store: steam @@ -74006,15 +74231,15 @@ Bounce Rescue!: installDir: Bounce Rescue!: {} launch: - /bounce_rescue: + "/bounce_rescue": - when: - os: linux store: steam - /bounce_rescue.app/Contents/MacOS/bounce_rescue: + "/bounce_rescue.app/Contents/MacOS/bounce_rescue": - when: - os: mac store: steam - /br_bin.exe: + "/br_bin.exe": - when: - os: windows store: steam @@ -74024,7 +74249,7 @@ BounceBall3D: installDir: BounceBall3D: {} launch: - /BounceBall3D.exe: + "/BounceBall3D.exe": - when: - os: windows store: steam @@ -74034,11 +74259,11 @@ Bounced: installDir: BOUNCED: {} launch: - /BOUNCED.app: + "/BOUNCED.app": - when: - os: mac store: steam - /Bounced.exe: + "/Bounced.exe": - when: - os: windows store: steam @@ -74047,11 +74272,11 @@ Bounced: Bouncers: steam: id: 772740 -'Bouncing DVD : The Game': +"Bouncing DVD : The Game": installDir: BDTG: {} launch: - /BouncingDVDThe Game.exe: + "/BouncingDVDThe Game.exe": - when: - os: windows store: steam @@ -74061,7 +74286,7 @@ Bouncing Duck Simulator: installDir: Bouncing Duck Simulator: {} launch: - /BDS.exe: + "/BDS.exe": - when: - os: windows store: steam @@ -74071,7 +74296,7 @@ Bouncing Hero: installDir: Bouncing Hero: {} launch: - /bouncinghero.exe: + "/bouncinghero.exe": - when: - os: windows store: steam @@ -74081,16 +74306,16 @@ Bouncing Odyssey: installDir: Bouncing Odyssey: {} launch: - /Bouncing Odyssey.app/Contents/MacOS/Bouncing Odyssey: + "/Bouncing Odyssey.app/Contents/MacOS/Bouncing Odyssey": - when: - os: mac store: steam - /bo-lin64-v10: + "/bo-lin64-v10": - when: - bit: 64 os: linux store: steam - /bo-win64-v10.exe: + "/bo-win64-v10.exe": - when: - bit: 64 os: windows @@ -74101,7 +74326,7 @@ Bouncing Over It with friends: installDir: Bouncing Over It with friends: {} launch: - /boiwf.exe: + "/boiwf.exe": - when: - os: windows store: steam @@ -74111,16 +74336,16 @@ Bouncy Bob: installDir: Bouncy Bob: {} launch: - /BouncyBob.exe: + "/BouncyBob.exe": - when: - store: steam steam: id: 680620 -'Bouncy Bob: Episode 2': +"Bouncy Bob: Episode 2": installDir: Bouncy Bob Episode 2: {} launch: - /BouncyBob2.exe: + "/BouncyBob2.exe": - when: - os: windows store: steam @@ -74130,7 +74355,7 @@ Bouncy Butter Ball: installDir: Bouncy Butter Ball: {} launch: - /BOUNCY BUTTER BALL.exe: + "/BOUNCY BUTTER BALL.exe": - when: - os: windows store: steam @@ -74138,13 +74363,13 @@ Bouncy Butter Ball: id: 837550 Bouncy Ducks: files: - /Osgoode_Media/BouncyDucks.exe_Url_az3l1eymz112qx3vdmfaz5xueyjomagc/1.0.0.0/user.config: + "/Osgoode_Media/BouncyDucks.exe_Url_az3l1eymz112qx3vdmfaz5xueyjomagc/1.0.0.0/user.config": tags: - config - save when: - os: windows - /Packages/16591Monstrous.BouncyDucks_skedv6py88bbr/Settings/settings.dat: + "/Packages/16591Monstrous.BouncyDucks_skedv6py88bbr/Settings/settings.dat": tags: - config - save @@ -74153,7 +74378,7 @@ Bouncy Ducks: store: microsoft Bound By Blades: files: - /AppData/LocalLow/Zeth/Bound By Blades: + "/AppData/LocalLow/Zeth/Bound By Blades": tags: - save when: @@ -74161,7 +74386,7 @@ Bound By Blades: installDir: Bound By Blades: {} launch: - /Bound By Blades.exe: + "/Bound By Blades.exe": - when: - os: windows store: steam @@ -74174,11 +74399,11 @@ Bound Up & Squirming!: installDir: Bound Up & Squirming: {} launch: - /Bound Up and Squirming!.exe: + "/Bound Up and Squirming!.exe": - when: - os: windows store: steam - /BoundSquirm.app: + "/BoundSquirm.app": - when: - os: mac store: steam @@ -74186,23 +74411,23 @@ Bound Up & Squirming!: id: 959050 Bound by Flame: files: - /BoundByFlame: + "/BoundByFlame": tags: - config - save when: - os: linux - /Bound by Flame/*.fsav: + "/Bound by Flame/*.fsav": tags: - save when: - os: windows - /Bound by Flame/*.profile: + "/Bound by Flame/*.profile": tags: - config when: - os: windows - /Bound by Flame/graphicconfig.txt: + "/Bound by Flame/graphicconfig.txt": tags: - config when: @@ -74212,11 +74437,11 @@ Bound by Flame: installDir: Bound By Flame: {} launch: - /BoundByFlame: + "/BoundByFlame": - when: - os: linux store: steam - /BoundByFlame.exe: + "/BoundByFlame.exe": - when: - os: windows store: steam @@ -74231,7 +74456,7 @@ Boundary (2023): installDir: Boundary: {} launch: - /ProjectBoundarySteam.exe: + "/ProjectBoundarySteam.exe": - when: - bit: 64 os: windows @@ -74242,7 +74467,7 @@ Boundel: installDir: Boundel: {} launch: - /Boundel.exe: + "/Boundel.exe": - when: - os: windows store: steam @@ -74252,7 +74477,7 @@ Bounders and Cads: installDir: Bounders and Cads: {} launch: - /bounderscads.exe: + "/bounderscads.exe": - when: - os: windows store: steam @@ -74262,12 +74487,12 @@ Boundless: installDir: Boundless: {} launch: - /Boundless.app: + "/Boundless.app": - when: - bit: 64 os: mac store: steam - /boundless.exe: + "/boundless.exe": - when: - bit: 64 os: windows @@ -74278,16 +74503,16 @@ Bounty Battle: installDir: Bounty Battle: {} launch: - /BountyBattle.exe: + "/BountyBattle.exe": - when: - bit: 64 os: windows store: steam - /BountyLinux.x86_64: + "/BountyLinux.x86_64": - when: - os: linux store: steam - /mac.app: + "/mac.app": - when: - os: mac store: steam @@ -74297,7 +74522,7 @@ Bounty Hunter: installDir: Bounty Hunter: {} launch: - /BountyHunter.exe: + "/BountyHunter.exe": - when: - store: steam steam: @@ -74306,35 +74531,35 @@ Bounty Hunter (Avalon Studio): installDir: Zombie Apocalypse Bounty Hunter: {} launch: - /Bounty Hunter.exe: + "/Bounty Hunter.exe": - when: - os: windows store: steam steam: id: 1057030 -'Bounty Hunter: Ocean Diver': +"Bounty Hunter: Ocean Diver": installDir: Bounty Hunter Ocean Diver: {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: id: 830510 -'Bounty Hunter: Space Detective': +"Bounty Hunter: Space Detective": installDir: Bounty Hunter Space Detective: {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: id: 827270 -'Bounty Hunter: Stampede': +"Bounty Hunter: Stampede": installDir: Bounty Hunter Stampede: {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: @@ -74344,7 +74569,7 @@ Bounty Killer: id: 599490 Bounty Train: files: - /Daedalic Entertainment GmbH/Bounty Train: + "/Daedalic Entertainment GmbH/Bounty Train": tags: - save when: @@ -74354,11 +74579,11 @@ Bounty Train: installDir: Bounty Train: {} launch: - /BountyTrainSteam.app/Contents/MacOS/BountyTrainSteam: + "/BountyTrainSteam.app/Contents/MacOS/BountyTrainSteam": - when: - os: mac store: steam - /BountyTrainSteam.exe: + "/BountyTrainSteam.exe": - when: - os: windows store: steam @@ -74370,7 +74595,7 @@ Bounty Train: id: 371520 Bounty of One: files: - /AppData/LocalLow/OptizOnion/BountyOfOne: + "/AppData/LocalLow/OptizOnion/BountyOfOne": tags: - save when: @@ -74378,17 +74603,17 @@ Bounty of One: installDir: Bounty of One: {} launch: - /BountyOfOne.exe: + "/BountyOfOne.exe": - when: - store: steam steam: id: 1968730 -'Bow to Blood: Last Captain Standing': +"Bow to Blood: Last Captain Standing": installDir: Bow to Blood: {} launch: - /BowToBlood.exe: - - arguments: '-vrmode none' + "/BowToBlood.exe": + - arguments: "-vrmode none" when: - os: windows store: steam @@ -74403,7 +74628,7 @@ Bowl Bound College Football: installDir: Bowl Bound College Football: {} launch: - /bbcf.exe: + "/bbcf.exe": - when: - os: windows store: steam @@ -74414,14 +74639,14 @@ Bowl VR: Bowl VR: {} steam: id: 494350 -'Bowlbo: The Quest for Bing Bing': +"Bowlbo: The Quest for Bing Bing": steam: id: 1048250 Bowling Over It: installDir: Bowling Over It: {} launch: - /Bowling Over It.exe: + "/Bowling Over It.exe": - when: - bit: 64 os: windows @@ -74437,11 +74662,11 @@ BowmanVSZombies: installDir: BowmanVSZombies: {} launch: - /BowmanVSZombies.app/Contents/MacOS/BowmanVSZombies: + "/BowmanVSZombies.app/Contents/MacOS/BowmanVSZombies": - when: - os: mac store: steam - /BowmanVSZombies.exe: + "/BowmanVSZombies.exe": - when: - os: windows store: steam @@ -74456,7 +74681,7 @@ Box Align: installDir: BOX align: {} launch: - /BOX align.exe: + "/BOX align.exe": - when: - os: windows store: steam @@ -74466,7 +74691,7 @@ Box It: installDir: BOXIT: {} launch: - /Launcher.exe: + "/Launcher.exe": - when: - os: windows store: steam @@ -74476,7 +74701,7 @@ Box Kid Adventures: installDir: Box Kid Adventures: {} launch: - /Box Kid.exe: + "/Box Kid.exe": - when: - os: windows store: steam @@ -74486,7 +74711,7 @@ Box Labyrinth: installDir: Box Labyrinth: {} launch: - /Box Labyrinth.exe: + "/Box Labyrinth.exe": - when: - os: windows store: steam @@ -74496,7 +74721,7 @@ Box Looter 2018: installDir: Box Looter: {} launch: - /Box Looter 2018.exe: + "/Box Looter 2018.exe": - when: - os: windows store: steam @@ -74506,17 +74731,17 @@ Box Maze: installDir: Box Maze: {} launch: - /boxmaze.exe: + "/boxmaze.exe": - when: - os: windows store: steam steam: id: 512020 -'Box Maze 2: Agent Cubert': +"Box Maze 2: Agent Cubert": installDir: Box Maze 2: {} launch: - /boxmaze2.exe: + "/boxmaze2.exe": - when: - os: windows store: steam @@ -74526,7 +74751,7 @@ Box Maze Extreme: installDir: Box Maze Extreme: {} launch: - /boxmazeextreme.exe: + "/boxmazeextreme.exe": - when: - os: windows store: steam @@ -74536,7 +74761,7 @@ Box Out!: installDir: Box Out!: {} launch: - /Box out-SCIENCE.exe: + "/Box out-SCIENCE.exe": - when: - os: windows store: steam @@ -74544,29 +74769,29 @@ Box Out!: id: 356110 Box PC3: files: - 'C:/pc3/drakssen/boxeo/keywiz.cfg': + "C:/pc3/drakssen/boxeo/keywiz.cfg": tags: - config when: - os: windows -'Box: The Game': +"Box: The Game": files: - /Box/Saved/Config/WindowsNoEditor: + "/Box/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /Box/Saved/SaveGames/GameSettingsSave.sav: + "/Box/Saved/SaveGames/GameSettingsSave.sav": tags: - config when: - os: windows - /Box/Saved/SaveGames/Move Count Slot.sav: + "/Box/Saved/SaveGames/Move Count Slot.sav": tags: - save when: - os: windows - /Box/Saved/SaveGames/SaveSlot.sav: + "/Box/Saved/SaveGames/SaveSlot.sav": tags: - save when: @@ -74574,7 +74799,7 @@ Box PC3: installDir: Box_The_Game: {} launch: - /Box.exe: + "/Box.exe": - when: - os: windows store: steam @@ -74584,15 +74809,15 @@ BoxCat: installDir: BoxCat: {} launch: - /boxcat.app/Contents/MacOS/boxcat: + "/boxcat.app/Contents/MacOS/boxcat": - when: - os: mac store: steam - /boxcat.exe: + "/boxcat.exe": - when: - os: windows store: steam - /boxcat.x86_64: + "/boxcat.x86_64": - when: - bit: 64 os: linux @@ -74603,7 +74828,7 @@ BoxEngine: installDir: BoxEngine: {} launch: - /BoxEngine.exe: + "/BoxEngine.exe": - when: - os: windows store: steam @@ -74613,7 +74838,7 @@ BoxMaker: installDir: BoxMaker: {} launch: - /boxmaker.exe: + "/boxmaker.exe": - when: - os: windows store: steam @@ -74623,12 +74848,12 @@ BoxRunner: installDir: BoxRunner: {} launch: - /BoxRunner_Win.exe: + "/BoxRunner_Win.exe": - when: - bit: 32 os: windows store: steam - /BoxRunner_macOS.app/Contents/MacOS/BoxRunner: + "/BoxRunner_macOS.app/Contents/MacOS/BoxRunner": - when: - os: mac store: steam @@ -74638,7 +74863,7 @@ BoxTheTop: installDir: BoxTheTop: {} launch: - /BoxTheTop.exe: + "/BoxTheTop.exe": - when: - os: windows store: steam @@ -74648,8 +74873,8 @@ Boxed In: installDir: Boxed In: {} launch: - /Boxed In.exe: - - arguments: '-vrmode None' + "/Boxed In.exe": + - arguments: "-vrmode None" when: - os: windows store: steam @@ -74659,11 +74884,11 @@ Boxed Out: installDir: Boxed Out: {} launch: - /Boxed Out.app: + "/Boxed Out.app": - when: - os: mac store: steam - /Boxed Out.exe: + "/Boxed Out.exe": - when: - os: windows store: steam @@ -74673,21 +74898,21 @@ Boxes Inc.: installDir: Boxes Inc: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam - /game.x86: + "/game.x86": - when: - bit: 32 os: linux store: steam - /game.x86_64: + "/game.x86_64": - when: - bit: 64 os: linux store: steam - /mac_content.app/Contents/MacOS/mac_content: + "/mac_content.app/Contents/MacOS/mac_content": - when: - os: mac store: steam @@ -74695,9 +74920,9 @@ Boxes Inc.: id: 851820 BoxesWithGuns: installDir: - Indie-Dev\\BoxesWithGuns\\: {} + "Indie-Dev\\\\BoxesWithGuns\\\\": {} launch: - /BWGLauncher.exe: + "/BWGLauncher.exe": - when: - os: windows store: steam @@ -74712,17 +74937,17 @@ Boxing Champs: installDir: Boxing Champs: {} launch: - /Boxing Champs.exe: + "/Boxing Champs.exe": - when: - os: windows store: steam steam: id: 1073410 -'Boxing Fighter: Super Punch': +"Boxing Fighter: Super Punch": installDir: BoxingFighterSP: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -74737,7 +74962,7 @@ Boxing School: installDir: Boxing School: {} launch: - /boxingschool.exe: + "/boxingschool.exe": - when: - os: windows store: steam @@ -74747,20 +74972,20 @@ Boxlife: installDir: Box Life: {} launch: - /boxlife.app: + "/boxlife.app": - when: - os: mac store: steam - /boxlife.exe: + "/boxlife.exe": - when: - os: windows store: steam - /boxlife.x86: + "/boxlife.x86": - when: - bit: 32 os: linux store: steam - /boxlife.x86_64: + "/boxlife.x86_64": - when: - bit: 64 os: linux @@ -74788,15 +75013,15 @@ Boxville: installDir: Boxville: {} launch: - /Boxville.app: + "/Boxville.app": - when: - os: mac store: steam - /Boxville.exe: + "/Boxville.exe": - when: - os: windows store: steam - /Boxville.x86_64: + "/Boxville.x86_64": - when: - os: linux store: steam @@ -74806,7 +75031,7 @@ Boxwrecker Arena: installDir: Boxwrecker Arena: {} launch: - /Boxwrecker Arena.exe: + "/Boxwrecker Arena.exe": - when: - os: windows store: steam @@ -74816,15 +75041,15 @@ Boy Beats World: installDir: boybeatsworld: {} launch: - /BOY BEATS WORLD.exe: + "/BOY BEATS WORLD.exe": - when: - os: windows store: steam - /BOY BEATS WORLD.x86_64: + "/BOY BEATS WORLD.x86_64": - when: - os: linux store: steam - /mac_x86.app/Contents/MacOS/mac_x86: + "/mac_x86.app/Contents/MacOS/mac_x86": - when: - os: mac store: steam @@ -74837,7 +75062,7 @@ Boy Next Door: installDir: Boy Next Door: {} launch: - /Boy Next Door.exe: + "/Boy Next Door.exe": - when: - os: windows store: steam @@ -74847,7 +75072,7 @@ Boy Teen Dream: installDir: Boy Teen Dream: {} launch: - /BoyTeenDream.exe: + "/BoyTeenDream.exe": - when: - os: windows store: steam @@ -74857,7 +75082,7 @@ Boy VS Genius 贫穷少年与校园名人的生死对决: installDir: Boy VS Genius: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -74867,28 +75092,31 @@ Boy and Labyrinth: installDir: BoyAndLabyrinth: {} launch: - /BAL.exe: + "/BAL.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam steam: id: 789710 -Boy's Love: +"Boy's Love": steam: id: 859760 Boyar: installDir: Boyar Version 1.0.3: {} launch: - /Boyar.exe: + "/Boyar.exe": - when: - store: steam steam: id: 564490 Boyfriend Dungeon: files: - /Packages/20748KitfoxGamesInc.BoyfriendDungeon_ndj3659pgnjmr/SystemAppData: + "/Packages/20748KitfoxGamesInc.BoyfriendDungeon_ndj3659pgnjmr/SystemAppData": tags: - save when: @@ -74897,15 +75125,15 @@ Boyfriend Dungeon: installDir: Boyfriend Dungeon: {} launch: - /BoyfriendDungeon.app/Contents/MacOS/BoyfriendDungeon: + "/BoyfriendDungeon.app/Contents/MacOS/BoyfriendDungeon": - when: - os: mac store: steam - /BoyfriendDungeon.exe: + "/BoyfriendDungeon.exe": - when: - os: windows store: steam - /BoyfriendDungeon.x86_64: + "/BoyfriendDungeon.x86_64": - when: - os: linux store: steam @@ -74913,25 +75141,25 @@ Boyfriend Dungeon: id: 674930 Braid: files: - /.Braid: + "/.Braid": tags: - config - save when: - os: linux - /Library/Preferences/Braid: + "/Library/Preferences/Braid": tags: - config - save when: - os: mac - /userdata//26800: + "/userdata//26800": tags: - config - save when: - store: steam - /Braid: + "/Braid": tags: - config - save @@ -74942,15 +75170,15 @@ Braid: installDir: Braid: {} launch: - /Braid.app: + "/Braid.app": - when: - os: mac store: steam - /Braid.bin.x86: + "/Braid.bin.x86": - when: - os: linux store: steam - /Braid.exe: + "/Braid.exe": - when: - os: windows store: steam @@ -74958,7 +75186,7 @@ Braid: id: 26800 Brain / Out: files: - /.prefs: + "/.prefs": tags: - config when: @@ -74966,17 +75194,15 @@ Brain / Out: installDir: BrainOut: {} launch: - /bin/java: - - arguments: >- - -XX:MaxHeapFreeRatio=15 -XX:MinHeapFreeRatio=15 -XX:+UseG1GC -Xms16m -XX:InitiatingHeapOccupancyPercent=20 - -Djava.net.preferIPv4Stack=true -jar brainout-steam.jar + "/bin/java": + - arguments: "-XX:MaxHeapFreeRatio=15 -XX:MinHeapFreeRatio=15 -XX:+UseG1GC -Xms16m -XX:InitiatingHeapOccupancyPercent=20 -Djava.net.preferIPv4Stack=true -jar brainout-steam.jar" when: + - os: mac + store: steam - os: linux store: steam - /bin/javaw.exe: - - arguments: >- - -XX:MaxHeapFreeRatio=15 -XX:MinHeapFreeRatio=15 -XX:+UseG1GC -Xms16m -XX:InitiatingHeapOccupancyPercent=20 - -Djava.net.preferIPv4Stack=true -jar brainout-steam.jar + "/bin/javaw.exe": + - arguments: "-XX:MaxHeapFreeRatio=15 -XX:MinHeapFreeRatio=15 -XX:+UseG1GC -Xms16m -XX:InitiatingHeapOccupancyPercent=20 -Djava.net.preferIPv4Stack=true -jar brainout-steam.jar" when: - os: windows store: steam @@ -74986,7 +75212,7 @@ Brain 43°C: installDir: Brain 43: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: @@ -74995,7 +75221,7 @@ Brain Booster: installDir: Brain Booster: {} launch: - /BrainBooster.exe: + "/BrainBooster.exe": - when: - os: windows store: steam @@ -75005,7 +75231,7 @@ Brain Crush: installDir: Brain Crush: {} launch: - /BrainCrush.exe: + "/BrainCrush.exe": - when: - os: windows store: steam @@ -75015,7 +75241,7 @@ Brain Guzzler: installDir: Brain Guzzler: {} launch: - /Brain Guzzler.exe: + "/Brain Guzzler.exe": - when: - store: steam steam: @@ -75027,33 +75253,33 @@ Brain Machine: installDir: Brain Machine: {} launch: - /BrainMachine_32.exe: + "/BrainMachine_32.exe": - when: - bit: 32 os: windows store: steam - /BrainMachine_64.exe: + "/BrainMachine_64.exe": - when: - bit: 64 os: windows store: steam - /Contents/MacOS/BrainMachine_macOS_64: + "/Contents/MacOS/BrainMachine_macOS_64": - when: - bit: 64 os: mac store: steam - /Contents/MacOS/BrainMachine_macOS_86: + "/Contents/MacOS/BrainMachine_macOS_86": - when: - bit: 32 os: mac store: steam steam: id: 601120 -'Brain Storm: Tower Bombarde': +"Brain Storm: Tower Bombarde": installDir: Brain Storm Tower Bombarde: {} launch: - /BRAIN_STORM_tower_bombarde.exe: + "/BRAIN_STORM_tower_bombarde.exe": - when: - os: windows store: steam @@ -75068,7 +75294,7 @@ Brain in a Vat Lies: installDir: Brain in a vat lies: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -75084,7 +75310,7 @@ Brain-training Game - Cerevrum: id: 613550 BrainBread 2: files: - /brainbread2/cfg: + "/brainbread2/cfg": tags: - config when: @@ -75092,17 +75318,17 @@ BrainBread 2: installDir: brainbread2: {} launch: - /bb2.exe: - - arguments: '-steam -game brainbread2' + "/bb2.exe": + - arguments: "-steam -game brainbread2" when: - os: windows store: steam - /hl2.sh: - - arguments: '-game brainbread2 -steam' + "/hl2.sh": + - arguments: "-game brainbread2 -steam" when: - os: linux store: steam - - arguments: '-steam -game brainbread2' + - arguments: "-steam -game brainbread2" when: - os: mac store: steam @@ -75112,11 +75338,11 @@ BrainCloud Bombers: installDir: brainCloud Bombers: {} launch: - /BombersRTT.exe: + "/BombersRTT.exe": - when: - os: windows store: steam - /steam-Mac.app/Contents/MacOS/steam-Mac: + "/steam-Mac.app/Contents/MacOS/steam-Mac": - when: - os: mac store: steam @@ -75126,15 +75352,15 @@ BrainPower: installDir: BrainPower: {} launch: - /BrainPower.app/Contents/MacOS/BrainPower: + "/BrainPower.app/Contents/MacOS/BrainPower": - when: - os: mac store: steam - /BrainPower.exe: + "/BrainPower.exe": - when: - os: windows store: steam - /BrainPower.x86: + "/BrainPower.x86": - when: - os: linux store: steam @@ -75144,11 +75370,11 @@ Brainf*ck: installDir: Brainfuck: {} launch: - /Brainfuck.exe: + "/Brainfuck.exe": - when: - os: windows store: steam - /brainfuck: + "/brainfuck": - when: - os: linux store: steam @@ -75158,7 +75384,7 @@ Brainmelter Deluxe: installDir: Brainmelter Deluxe: {} launch: - /Brainmelter Deluxe.exe: + "/Brainmelter Deluxe.exe": - when: - store: steam steam: @@ -75167,11 +75393,11 @@ Brainstorm: installDir: Brainstorm: {} launch: - /Brainstorm.app: + "/Brainstorm.app": - when: - os: mac store: steam - /Brainstorm.exe: + "/Brainstorm.exe": - when: - os: windows store: steam @@ -75181,25 +75407,25 @@ Brainy Joy: installDir: BrainyJoy: {} launch: - /BrainyJoy.exe: + "/BrainyJoy.exe": - when: - os: windows store: steam steam: id: 732010 -'Bramble: The Mountain King': +"Bramble: The Mountain King": files: - /Bramble_TMK/Saved/Config/WindowsNoEditor: + "/Bramble_TMK/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /Bramble_TMK/Saved/SaveGames: + "/Bramble_TMK/Saved/SaveGames": tags: - save when: - os: windows - /Packages/MergeGamesLimited.BrambleTheMountainKing_j1rzjmssdh5zy/SystemAppData/wgs: + "/Packages/MergeGamesLimited.BrambleTheMountainKing_j1rzjmssdh5zy/SystemAppData/wgs": tags: - save when: @@ -75212,7 +75438,7 @@ Brainy Joy: installDir: Bramble The Mountain King: {} launch: - /IntermediateBuildDRM/WindowsNoEditor/Bramble_TMK.exe: + "/IntermediateBuildDRM/WindowsNoEditor/Bramble_TMK.exe": - when: - store: steam steam: @@ -75221,25 +75447,25 @@ BrambleLash: installDir: BrambleLash: {} launch: - /BrambleLash.app: + "/BrambleLash.app": - when: - os: mac store: steam - /BrambleLash.exe: + "/BrambleLash.exe": - when: - os: windows store: steam steam: id: 453220 -'Brane: Prototype': +"Brane: Prototype": installDir: BRANE™ Prototype: {} launch: - /BranePrototype: + "/BranePrototype": - when: - os: linux store: steam - /brane.exe: + "/brane.exe": - when: - os: windows store: steam @@ -75249,20 +75475,20 @@ Brass: installDir: Brass: {} launch: - /brass.app/Contents/MacOS/brass: + "/brass.app/Contents/MacOS/brass": - when: - os: mac store: steam - /brass.exe: + "/brass.exe": - when: - os: windows store: steam - /brass.x86: + "/brass.x86": - when: - bit: 32 os: linux store: steam - /brass.x86_64: + "/brass.x86_64": - when: - bit: 64 os: linux @@ -75273,7 +75499,7 @@ Brass Brigade: installDir: Brass Brigade: {} launch: - /Brass Brigade.exe: + "/Brass Brigade.exe": - when: - bit: 64 os: windows @@ -75284,7 +75510,7 @@ Brass Town Wrestling: installDir: Brass Town Wrestling: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: @@ -75294,11 +75520,11 @@ Brassheart: id: 1681700510 steam: id: 1072550 -'Brath: Brain and Math': +"Brath: Brain and Math": installDir: Brath Brain and Math: {} launch: - /Brath.exe: + "/Brath.exe": - when: - os: windows store: steam @@ -75308,7 +75534,7 @@ Brathian: installDir: Brathian: {} launch: - /Brathian.exe: + "/Brathian.exe": - when: - os: windows store: steam @@ -75318,15 +75544,15 @@ Bravada: installDir: Bravada: {} launch: - /Bravada.app: + "/Bravada.app": - when: - os: mac store: steam - /Bravada.exe: + "/Bravada.exe": - when: - os: windows store: steam - /Bravada.x86: + "/Bravada.x86": - when: - os: linux store: steam @@ -75336,7 +75562,7 @@ Bravado: installDir: Bravado: {} launch: - /Bravado.exe: + "/Bravado.exe": - when: - os: windows store: steam @@ -75346,7 +75572,7 @@ Brave: installDir: Brave: {} launch: - /Brave.exe: + "/Brave.exe": - when: - bit: 64 os: windows @@ -75359,16 +75585,16 @@ Brave Alchemist Colette: installDir: Brave Alchemist Colette: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: id: 1135830 -'Brave Battle Saga: The Legend of The Magic Warrior': +"Brave Battle Saga: The Legend of The Magic Warrior": installDir: Brave Battle Saga - The Legend of The Magic Warrior: {} launch: - /brave battle saga.exe: + "/brave battle saga.exe": - when: - os: windows store: steam @@ -75380,7 +75606,7 @@ Brave Dungeon: Brave Dungeon II: steam: id: 980220 -'Brave Earth: Prologue': +"Brave Earth: Prologue": gog: id: 1279379855 steam: @@ -75389,20 +75615,20 @@ Brave Furries: installDir: Brave Furries: {} launch: - /BraveFurries.app: + "/BraveFurries.app": - when: - os: mac store: steam - /BraveFurries.exe: + "/BraveFurries.exe": - when: - os: windows store: steam - /BraveFurries.x86: + "/BraveFurries.x86": - when: - bit: 32 os: linux store: steam - /BraveFurries.x86_64: + "/BraveFurries.x86_64": - when: - bit: 64 os: linux @@ -75413,11 +75639,11 @@ Brave Hand: installDir: Brave Hand: {} launch: - /BraveHand.app: + "/BraveHand.app": - when: - os: mac store: steam - /BraveHand.exe: + "/BraveHand.exe": - when: - os: windows store: steam @@ -75425,7 +75651,7 @@ Brave Hand: id: 763340 Brave Hero Yuusha EX: files: - /Save*.rvdata2: + "/Save*.rvdata2": tags: - save when: @@ -75433,7 +75659,7 @@ Brave Hero Yuusha EX: installDir: Brave Hero Yuusha EX: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -75446,23 +75672,23 @@ Brave Path: installDir: BravePath: {} launch: - /BravePath: + "/BravePath": - when: - os: linux store: steam - /BravePath.app: + "/BravePath.app": - when: - os: mac store: steam - /BravePath.exe: + "/BravePath.exe": - when: - os: windows store: steam steam: id: 669310 -'Brave: The Video Game': +"Brave: The Video Game": files: - /Behaviour Interactive/BRAVE: + "/Behaviour Interactive/BRAVE": tags: - save when: @@ -75470,7 +75696,7 @@ Brave Path: installDir: Disney-Pixar Brave: {} launch: - /Brave.exe: + "/Brave.exe": - when: - os: windows store: steam @@ -75478,12 +75704,12 @@ Brave Path: id: 301830 Braveland: files: - /AppData/LocalLow/Tortuga Team/Braveland: + "/AppData/LocalLow/Tortuga Team/Braveland": tags: - save when: - os: windows - /userdata//285800/remote/*-Save.dat: + "/userdata//285800/remote/*-Save.dat": tags: - save when: @@ -75493,20 +75719,23 @@ Braveland: installDir: Braveland: {} launch: - /Braveland.app: + "/Braveland.app": - when: - os: mac store: steam - /Braveland.exe: + "/Braveland.exe": - when: - os: windows store: steam - /Braveland.x86_64: - - arguments: '-screen-fullscreen 0' + "/Braveland.x86_64": + - arguments: "-screen-fullscreen 0" when: - bit: 32 os: linux store: steam + - bit: 64 + os: linux + store: steam registry: HKEY_CURRENT_USER/SOFTWARE/Tortuga Team/Braveland: tags: @@ -75515,7 +75744,7 @@ Braveland: id: 285800 Braveland Heroes: files: - /AppData/LocalLow/Tortuga Team/Braveland Heroes: + "/AppData/LocalLow/Tortuga Team/Braveland Heroes": tags: - save when: @@ -75523,7 +75752,7 @@ Braveland Heroes: installDir: Braveland Heroes: {} launch: - /braveland_heroes.exe: + "/braveland_heroes.exe": - when: - bit: 64 os: windows @@ -75540,23 +75769,23 @@ Braveland Pirate: installDir: Braveland Pirate: {} launch: - /Braveland Pirate.app: + "/Braveland Pirate.app": - when: - os: mac store: steam - /Braveland Pirate.x86: - - arguments: '-screen-fullscreen 0' + "/Braveland Pirate.x86": + - arguments: "-screen-fullscreen 0" when: - bit: 32 os: linux store: steam - /Braveland Pirate.x86_64: - - arguments: '-screen-fullscreen 0' + "/Braveland Pirate.x86_64": + - arguments: "-screen-fullscreen 0" when: - bit: 64 os: linux store: steam - /braveland_pirate.exe: + "/braveland_pirate.exe": - when: - os: windows store: steam @@ -75564,7 +75793,7 @@ Braveland Pirate: id: 391490 Braveland Wizard: files: - /userdata//333880/remote/*-Save1.dat: + "/userdata//333880/remote/*-Save1.dat": tags: - save when: @@ -75574,23 +75803,23 @@ Braveland Wizard: installDir: Braveland Wizard: {} launch: - /Braveland Wizard.app: + "/Braveland Wizard.app": - when: - os: mac store: steam - /Braveland Wizard.x86: - - arguments: '-screen-fullscreen 0' + "/Braveland Wizard.x86": + - arguments: "-screen-fullscreen 0" when: - bit: 32 os: linux store: steam - /Braveland Wizard.x86_64: - - arguments: '-screen-fullscreen 0' + "/Braveland Wizard.x86_64": + - arguments: "-screen-fullscreen 0" when: - bit: 64 os: linux store: steam - /bravelandw.exe: + "/bravelandw.exe": - when: - os: windows store: steam @@ -75602,12 +75831,12 @@ Braveland Wizard: id: 333880 Bravely Default II: files: - /My Games/Bravely_Default_II/Steam//Saved/Config: + "/My Games/Bravely_Default_II/Steam//Saved/Config": tags: - config when: - os: windows - /My Games/Bravely_Default_II/Steam//Saved/SaveGames: + "/My Games/Bravely_Default_II/Steam//Saved/SaveGames": tags: - save when: @@ -75615,7 +75844,7 @@ Bravely Default II: installDir: BRAVELY DEFAULT II: {} launch: - /Bravely_Default_II.exe: + "/Bravely_Default_II.exe": - when: - os: windows store: steam @@ -75625,7 +75854,7 @@ Bravery & Greed: installDir: Bravery and Greed: {} launch: - /Bravery and Greed.exe: + "/Bravery and Greed.exe": - when: - os: windows store: steam @@ -75635,22 +75864,22 @@ Bravery Network Online: installDir: Bravery Network Online: {} launch: - /BraveryNetworkOnline.app: + "/BraveryNetworkOnline.app": - when: - os: mac store: steam - /BraveryNetworkOnline.exe: + "/BraveryNetworkOnline.exe": - when: - bit: 64 os: windows store: steam steam: id: 1027120 -'Bravery: Rise of The Last Hero': +"Bravery: Rise of The Last Hero": installDir: Bravery Rise of The Last Hero: {} launch: - /Bravery.exe: + "/Bravery.exe": - when: - os: windows store: steam @@ -75660,7 +75889,7 @@ Braverz: installDir: Braverz: {} launch: - /Braverz.exe: + "/Braverz.exe": - when: - store: steam steam: @@ -75669,7 +75898,7 @@ Bravium: installDir: Bravium: {} launch: - /Bravium.exe: + "/Bravium.exe": - when: - os: windows store: steam @@ -75679,21 +75908,21 @@ Brawl: installDir: BRAWL: {} launch: - /BRAWL.app: + "/BRAWL.app": - when: - os: mac store: steam - /BRAWL.x86: + "/BRAWL.x86": - when: - bit: 32 os: linux store: steam - /BRAWL.x86_64: + "/BRAWL.x86_64": - when: - bit: 64 os: linux store: steam - /Brawl.exe: + "/Brawl.exe": - when: - os: windows store: steam @@ -75703,15 +75932,15 @@ Brawl (2019): installDir: Brawl: {} launch: - /Brawl.app: + "/Brawl.app": - when: - os: mac store: steam - /brawl: + "/brawl": - when: - os: linux store: steam - /brawl.exe: + "/brawl.exe": - when: - os: windows store: steam @@ -75721,11 +75950,11 @@ Brawl Hopper: installDir: Brawl Hopper: {} launch: - /Brawl Hopper.app: + "/Brawl Hopper.app": - when: - os: mac store: steam - /Brawl Hopper/Brawl Hopper.exe: + "/Brawl Hopper/Brawl Hopper.exe": - when: - os: windows store: steam @@ -75735,18 +75964,18 @@ Brawl of Ages: installDir: Brawl of Ages: {} launch: - /Brawl of Ages.app/Contents/MacOS/Brawl of Ages: - - arguments: '-steam' + "/Brawl of Ages.app/Contents/MacOS/Brawl of Ages": + - arguments: "-steam" when: - bit: 64 os: mac store: steam - /bin/Brawl of Ages.exe: - - arguments: '-steam' + "/bin/Brawl of Ages.exe": + - arguments: "-steam" when: - os: windows store: steam - /bin/brawlofages-steam.sh: + "/bin/brawlofages-steam.sh": - when: - os: linux store: steam @@ -75756,11 +75985,11 @@ BrawlQuest: installDir: BrawlQuest: {} launch: - /brawlquest.app: + "/brawlquest.app": - when: - os: mac store: steam - /brawlquest.exe: + "/brawlquest.exe": - when: - bit: 64 os: windows @@ -75771,25 +76000,25 @@ Brawlderdash: installDir: Brawlderdash: {} launch: - /Brawlderdash.exe: + "/Brawlderdash.exe": - when: - os: windows store: steam steam: id: 525590 -'Brawlerz: Nitro': +"Brawlerz: Nitro": installDir: BrawlerzArena: {} launch: - /Brawlerz.app: + "/Brawlerz.app": - when: - os: mac store: steam - /Brawlerz.exe: + "/Brawlerz.exe": - when: - os: windows store: steam - /Brawlerz.x86: + "/Brawlerz.x86": - when: - os: linux store: steam @@ -75797,7 +76026,7 @@ Brawlderdash: id: 342660 Brawlhalla: files: - /BrawlhallaAir: + "/BrawlhallaAir": tags: - save when: @@ -75805,11 +76034,11 @@ Brawlhalla: installDir: Brawlhalla: {} launch: - /Brawlhalla.app: + "/Brawlhalla.app": - when: - os: mac store: steam - /Brawlhalla.exe: + "/Brawlhalla.exe": - when: - os: windows store: steam @@ -75819,7 +76048,7 @@ Brawlout: installDir: Brawlout: {} launch: - /Brawlout.exe: + "/Brawlout.exe": - when: - os: windows store: steam @@ -75832,7 +76061,7 @@ Brazed: installDir: Brazed: {} launch: - /Brazed.exe: + "/Brazed.exe": - when: - os: windows store: steam @@ -75842,11 +76071,11 @@ Brazilian Adventure: installDir: Brazilian Adventure: {} launch: - /Brazilian Adventure.exe: + "/Brazilian Adventure.exe": - when: - os: windows store: steam - /Brazilian.app/Contents/MacOS/Brazilian: + "/Brazilian.app/Contents/MacOS/Brazilian": - when: - os: mac store: steam @@ -75856,7 +76085,7 @@ Brazilian Root: installDir: BrazilianRoot: {} launch: - /BrazilianRoot.exe: + "/BrazilianRoot.exe": - when: - bit: 64 os: windows @@ -75867,7 +76096,7 @@ Breach: installDir: Breach: {} launch: - /launcher.exe: + "/launcher.exe": - when: - bit: 64 os: windows @@ -75876,18 +76105,18 @@ Breach: id: 421650 Breach & Clear: files: - /Documents/SavedGames/BreachClear: + "/Documents/SavedGames/BreachClear": tags: - save when: - os: mac - os: linux - /Library/Preferences/unity.Mighty Rabbit Studios.Breach _ Clear.plist: + "/Library/Preferences/unity.Mighty Rabbit Studios.Breach _ Clear.plist": tags: - config when: - os: mac - /SavedGames/BreachClear: + "/SavedGames/BreachClear": tags: - save when: @@ -75897,15 +76126,15 @@ Breach & Clear: installDir: BreachAndClear: {} launch: - /bnc.exe: + "/bnc.exe": - when: - os: windows store: steam - /bnc_linux.x86: + "/bnc_linux.x86": - when: - os: linux store: steam - /bnc_osx.app: + "/bnc_osx.app": - when: - os: mac store: steam @@ -75915,9 +76144,9 @@ Breach & Clear: - config steam: id: 266130 -'Breach & Clear: Deadline': +"Breach & Clear: Deadline": files: - /SavedGames/DEADline: + "/SavedGames/DEADline": tags: - config when: @@ -75927,15 +76156,15 @@ Breach & Clear: installDir: Breach & Clear Deadline: {} launch: - /DEADline.app: + "/DEADline.app": - when: - os: mac store: steam - /DEADline.exe: + "/DEADline.exe": - when: - os: windows store: steam - /DEADline.x86_64: + "/DEADline.x86_64": - when: - os: linux store: steam @@ -75945,7 +76174,7 @@ Breach (2011): installDir: Breach: {} launch: - /Breach.exe: + "/Breach.exe": - when: - store: steam steam: @@ -75964,12 +76193,12 @@ Breach of Contract Online: installDir: Breach of Contract Online: {} launch: - /steam_build.exe: + "/steam_build.exe": - when: - bit: 64 os: windows store: steam - /steam_build_mac.app: + "/steam_build_mac.app": - when: - os: mac store: steam @@ -75979,26 +76208,26 @@ Breach of Contract Reloaded: installDir: Breach of Contract Reloaded: {} launch: - /Breach of Contract Reloaded.exe: + "/Breach of Contract Reloaded.exe": - when: - bit: 64 os: windows store: steam steam: id: 811750 -'Breach: The Archangel Job': +"Breach: The Archangel Job": installDir: Breach The Archangel Job: {} launch: - /Breach The Archangel Job.app/Contents/MacOS/Breach The Archangel Job: + "/Breach The Archangel Job.app/Contents/MacOS/Breach The Archangel Job": - when: - os: mac store: steam - /BreachTheArchangelJob: + "/BreachTheArchangelJob": - when: - os: linux store: steam - /BreachTheArchangelJob.exe: + "/BreachTheArchangelJob.exe": - when: - os: windows store: steam @@ -76008,15 +76237,15 @@ Breached: installDir: Breached: {} launch: - /Breached.app/Contents/MacOS/Breached: + "/Breached.app/Contents/MacOS/Breached": - when: - os: mac store: steam - /Breached.exe: + "/Breached.exe": - when: - os: windows store: steam - /Breached/Binaries/Linux/Breached-Linux-Shipping: + "/Breached/Binaries/Linux/Breached-Linux-Shipping": - when: - os: linux store: steam @@ -76026,14 +76255,14 @@ Breacher Story: installDir: Breacher Story: {} launch: - /Breacher Story.exe: + "/Breacher Story.exe": - when: - store: steam steam: id: 988110 Bread & Fred: files: - /AppData/LocalLow/SandCastles/Bread_Fred: + "/AppData/LocalLow/SandCastles/Bread_Fred": tags: - save when: @@ -76048,22 +76277,22 @@ Bread & Fred: installDir: Bread & Fred: {} launch: - /Bread&Fred.exe: + "/Bread&Fred.exe": - when: - os: windows store: steam - /BreadAndFred.app/Contents/MacOS/Bread_Fred: + "/BreadAndFred.app/Contents/MacOS/Bread_Fred": - when: - os: mac store: steam - workingDir: /BreadAndFred.app/Contents/MacOS + workingDir: "/BreadAndFred.app/Contents/MacOS" steam: id: 1607680 BreadHead Adventure: installDir: BreadHead Adventure: {} launch: - /BreadHead Adventure.exe: + "/BreadHead Adventure.exe": - when: - store: steam steam: @@ -76077,7 +76306,7 @@ Break Arcade Games Out: installDir: Break Arcade Games Out: {} launch: - /Break Arcade Games Out.exe: + "/Break Arcade Games Out.exe": - when: - bit: 64 os: windows @@ -76088,7 +76317,7 @@ Break Arts II: installDir: BreakArts 2: {} launch: - /ba2.exe: + "/ba2.exe": - when: - bit: 64 os: windows @@ -76099,15 +76328,15 @@ Break Chance Memento: installDir: Break Chance Memento: {} launch: - /BCM.app: + "/BCM.app": - when: - os: mac store: steam - /BCM.exe: + "/BCM.exe": - when: - os: windows store: steam - /BCM.sh: + "/BCM.sh": - when: - os: linux store: steam @@ -76117,7 +76346,7 @@ Break In: installDir: Break_In: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -76130,7 +76359,7 @@ Break Stuff With Coins: installDir: Break Stuff With Coins: {} launch: - /BSWC.exe: + "/BSWC.exe": - when: - os: windows store: steam @@ -76140,15 +76369,15 @@ Break The Cookie: installDir: Break The Cookie: {} launch: - /Cookie.app: + "/Cookie.app": - when: - os: mac store: steam - /Cookie.exe: + "/Cookie.exe": - when: - os: windows store: steam - /Cookie.x86_64: + "/Cookie.x86_64": - when: - os: linux store: steam @@ -76158,18 +76387,21 @@ Break The Food Chain: installDir: Break The Food Chain: {} launch: - /nw.exe: + "/nw.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam steam: id: 635980 -'Break Through: Artificial Maze': +"Break Through: Artificial Maze": installDir: Break Through Artificial Maze: {} launch: - /BreakThrough.exe: + "/BreakThrough.exe": - when: - os: windows store: steam @@ -76184,20 +76416,20 @@ Break my body: installDir: Break my body: {} launch: - /BreakMyBody.app: + "/BreakMyBody.app": - when: - os: mac store: steam - /BreakMyBody.exe: + "/BreakMyBody.exe": - when: - os: windows store: steam - /BreakMyBody.x86: + "/BreakMyBody.x86": - when: - bit: 32 os: linux store: steam - /BreakMyBody.x86_64: + "/BreakMyBody.x86_64": - when: - bit: 64 os: linux @@ -76211,7 +76443,7 @@ Break the Cube: installDir: Break the Cube: {} launch: - /Launch.bat: + "/Launch.bat": - when: - os: windows store: steam @@ -76221,7 +76453,7 @@ Break the Targets: installDir: Break The Targets: {} launch: - /BreakTheTargets.exe: + "/BreakTheTargets.exe": - when: - os: windows store: steam @@ -76234,7 +76466,7 @@ BreakFest: installDir: BreakFest: {} launch: - /BreakFest.exe: + "/BreakFest.exe": - when: - os: windows store: steam @@ -76244,11 +76476,11 @@ BreakHack: installDir: BreakHack: {} launch: - /breakhack.exe: + "/breakhack.exe": - when: - os: windows store: steam - /breakhack.run: + "/breakhack.run": - when: - bit: 64 os: linux @@ -76257,12 +76489,12 @@ BreakHack: id: 931040 BreakQuest: files: - /quest.ini: + "/quest.ini": tags: - config when: - os: windows - /scores/*.his: + "/scores/*.his": tags: - save when: @@ -76273,7 +76505,7 @@ BreakThru: installDir: Retro Classix BreakThru: {} launch: - /Retro Classix Breakthru.exe: + "/Retro Classix Breakthru.exe": - when: - os: windows store: steam @@ -76286,7 +76518,7 @@ Breakers Collection: installDir: Breakers Collection: {} launch: - /BreakersCollection.exe: + "/BreakersCollection.exe": - when: - os: windows store: steam @@ -76296,7 +76528,7 @@ Breaking Bones: installDir: Breaking Bones: {} launch: - /BreakingBones.exe: + "/BreakingBones.exe": - when: - os: windows store: steam @@ -76306,11 +76538,11 @@ Breaking Box: installDir: Breaking Box: {} launch: - /BreakingBox.app: + "/BreakingBox.app": - when: - os: mac store: steam - /BreakingBox.exe: + "/BreakingBox.exe": - when: - bit: 64 os: windows @@ -76321,7 +76553,7 @@ Breaking Bunny: installDir: Breaking Bunny: {} launch: - /Breaking_Bunny_x.exe: + "/Breaking_Bunny_x.exe": - when: - os: windows store: steam @@ -76331,15 +76563,15 @@ Breaking Fast: installDir: Breaking Fast: {} launch: - /Breaking Fast.exe: + "/Breaking Fast.exe": - when: - os: windows store: steam - /BreakingFast.app: + "/BreakingFast.app": - when: - os: mac store: steam - /run: + "/run": - when: - bit: 64 os: linux @@ -76350,21 +76582,24 @@ Breaking Good: installDir: Breaking Good: {} launch: - /Breaking Good.app: + "/Breaking Good.app": - when: - os: mac store: steam - /Breaking Good.exe: + "/Breaking Good.exe": - when: - bit: 32 os: windows store: steam - /Breaking Good.x86: + - bit: 64 + os: windows + store: steam + "/Breaking Good.x86": - when: - bit: 32 os: linux store: steam - /Breaking Good.x86_64: + "/Breaking Good.x86_64": - when: - bit: 64 os: linux @@ -76378,7 +76613,7 @@ Breaking Wheel: installDir: Breaking Wheel: {} launch: - /Main Game/Ellie_Ball_Project.exe: + "/Main Game/Ellie_Ball_Project.exe": - when: - bit: 64 os: windows @@ -76387,7 +76622,7 @@ Breaking Wheel: id: 545890 Breakneck: files: - /AppData/LocalLow/PikPok/Breakneck: + "/AppData/LocalLow/PikPok/Breakneck": tags: - save when: @@ -76395,11 +76630,11 @@ Breakneck: installDir: Breakneck: {} launch: - /Breakneck.app/Contents/MacOS/Breakneck: + "/Breakneck.app/Contents/MacOS/Breakneck": - when: - os: mac store: steam - /Breakneck.exe: + "/Breakneck.exe": - when: - os: windows store: steam @@ -76413,7 +76648,7 @@ Breakneck City: installDir: Breakneck City: {} launch: - /Breakneck City.exe: + "/Breakneck City.exe": - when: - os: windows store: steam @@ -76423,7 +76658,7 @@ Breakout: installDir: Breakout: {} launch: - /Breakout.exe: + "/Breakout.exe": - when: - bit: 64 os: windows @@ -76434,27 +76669,27 @@ Breakout Invaders: installDir: Breakout Invaders: {} launch: - /Breakout Invaders.exe: + "/Breakout Invaders.exe": - when: - os: windows store: steam steam: id: 366700 -'Breakout: Recharged': +"Breakout: Recharged": gog: id: 1340291710 installDir: Breakout Recharged: {} launch: - /Breakout Recharged.exe: + "/Breakout Recharged.exe": - when: - os: windows store: steam - /breakout_recharged.app: + "/breakout_recharged.app": - when: - os: mac store: steam - /breakout_recharged.x86_64: + "/breakout_recharged.x86_64": - when: - os: linux store: steam @@ -76462,7 +76697,7 @@ Breakout Invaders: id: 1714190 Breakwaters: files: - /AppData/LocalLow/SoaringPixels/Breakwaters: + "/AppData/LocalLow/SoaringPixels/Breakwaters": tags: - config when: @@ -76470,16 +76705,16 @@ Breakwaters: installDir: BreakwatersBeta: {} launch: - /Breakwaters.exe: + "/Breakwaters.exe": - when: - bit: 64 os: windows store: steam steam: id: 1203180 -'Breath of Death VII: The Beginning': +"Breath of Death VII: The Beginning": files: - /SavedGames/BoDVIIPC: + "/SavedGames/BoDVIIPC": tags: - save when: @@ -76487,7 +76722,7 @@ Breakwaters: installDir: Breath of Death VII: {} launch: - /BoDVIIPC.exe: + "/BoDVIIPC.exe": - when: - store: steam steam: @@ -76499,11 +76734,11 @@ Breathe: installDir: BREATHE: {} launch: - /BREATHE.app: + "/BREATHE.app": - when: - os: mac store: steam - /BREATHE.exe: + "/BREATHE.exe": - when: - bit: 64 os: windows @@ -76517,17 +76752,17 @@ BreathePeace.World: id: 968310 Breathedge: files: - /Breathedge/Saved/Config/WindowsNoEditor: + "/Breathedge/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /Breathedge/Saved/SaveGames: + "/Breathedge/Saved/SaveGames": tags: - save when: - os: windows - /Packages/HypeTrainDigital.BreathedgePC_7t701d8q7nf00/SystemAppData/wgs: + "/Packages/HypeTrainDigital.BreathedgePC_7t701d8q7nf00/SystemAppData/wgs": tags: - save when: @@ -76538,7 +76773,7 @@ Breathedge: installDir: Breathedge: {} launch: - /Breathedge.exe: + "/Breathedge.exe": - when: - bit: 64 os: windows @@ -76550,29 +76785,29 @@ Breathing Fear: id: 535400 Breed: files: - /Breed.Cfg: + "/Breed.Cfg": tags: - config when: - os: windows - /Controllers.dat: + "/Controllers.dat": tags: - config when: - os: windows - /Game Saves: + "/Game Saves": tags: - save when: - os: windows -'Breeders of the Nephelym: Alpha': +"Breeders of the Nephelym: Alpha": files: - /OBF/Saved/Config/WindowsNoEditor: + "/OBF/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /OBF/Saved/SaveGames: + "/OBF/Saved/SaveGames": tags: - save when: @@ -76580,7 +76815,7 @@ Breed: installDir: Breeders of the Nephelym Alpha: {} launch: - /OBF.exe: + "/OBF.exe": - when: - bit: 64 os: windows @@ -76591,7 +76826,7 @@ Breen Origins: installDir: Breen Origins: {} launch: - /Breen Origins.exe: + "/Breen Origins.exe": - when: - os: windows store: steam @@ -76601,7 +76836,7 @@ Breeza Budgie Bill: installDir: Breeza Budgie Bill: {} launch: - /Breeza Budgie Bill.exe: + "/Breeza Budgie Bill.exe": - when: - store: steam steam: @@ -76610,7 +76845,7 @@ Breeze: installDir: Breeze: {} launch: - /Breeze_demo.exe: + "/Breeze_demo.exe": - when: - os: windows store: steam @@ -76620,20 +76855,20 @@ Breezeblox: installDir: Breezeblox: {} launch: - /Breezeblox.app: + "/Breezeblox.app": - when: - os: mac store: steam - /Breezeblox.exe: + "/Breezeblox.exe": - when: - os: windows store: steam - /Breezeblox.x86: + "/Breezeblox.x86": - when: - bit: 32 os: linux store: steam - /Breezeblox.x86_64: + "/Breezeblox.x86_64": - when: - bit: 64 os: linux @@ -76644,7 +76879,7 @@ Bret Airborne: installDir: Bret Airborne: {} launch: - /BretAirborne.exe: + "/BretAirborne.exe": - when: - store: steam steam: @@ -76653,7 +76888,7 @@ Brew-Ha: installDir: Brew-Ha: {} launch: - /Brewha.exe: + "/Brewha.exe": - when: - bit: 64 os: windows @@ -76664,19 +76899,19 @@ Brewer: installDir: Brewer: {} launch: - /Brewer.exe: + "/Brewer.exe": - when: - store: steam steam: id: 1064200 -'Brewmaster: Beer Brewing Simulator': +"Brewmaster: Beer Brewing Simulator": files: - /BrewmasterMain/Saved/Config/WindowsNoEditor: + "/BrewmasterMain/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /BrewmasterMain/Saved/SaveGames: + "/BrewmasterMain/Saved/SaveGames": tags: - save when: @@ -76684,7 +76919,7 @@ Brewer: installDir: Brewmaster: {} launch: - /BrewmasterMain.exe: + "/BrewmasterMain.exe": - when: - bit: 64 os: windows @@ -76695,10 +76930,10 @@ Brian Lara International Cricket 2007: installDir: Brian Lara International Cricket 2007: {} launch: - /ICC2007.exe: + "/ICC2007.exe": - when: - store: steam - /hardwaresetup.exe: + "/hardwaresetup.exe": - when: - store: steam steam: @@ -76707,7 +76942,7 @@ Bric: installDir: Bric: {} launch: - /Bric.exe: + "/Bric.exe": - when: - os: windows store: steam @@ -76717,20 +76952,20 @@ Brick Battalion: installDir: Brick Battalion: {} launch: - /BrickBattalion.app: + "/BrickBattalion.app": - when: - os: mac store: steam - /BrickBattalion.exe: + "/BrickBattalion.exe": - when: - os: windows store: steam - /BrickBattalion.x86: + "/BrickBattalion.x86": - when: - bit: 32 os: linux store: steam - /BrickBattalion.x86_64: + "/BrickBattalion.x86_64": - when: - bit: 64 os: linux @@ -76741,7 +76976,7 @@ Brick Breaker: installDir: Brick Breaker: {} launch: - /BrickBreaker.exe: + "/BrickBreaker.exe": - when: - os: windows store: steam @@ -76751,17 +76986,17 @@ Brick Breaker Bunch: installDir: Brick Breaker Bunch: {} launch: - /brickbreakerbunch: + "/brickbreakerbunch": - when: - bit: 64 os: linux store: steam - /brickbreakerbunch.app/Contents/MacOS/brickbreakerbunch: + "/brickbreakerbunch.app/Contents/MacOS/brickbreakerbunch": - when: - os: mac store: steam - /brickbreakerbunch.exe: - - arguments: '-windowed' + "/brickbreakerbunch.exe": + - arguments: "-windowed" when: - bit: 64 os: windows @@ -76772,7 +77007,7 @@ Brick Breaker Premium: installDir: Brick Breaker Premium: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -76782,7 +77017,7 @@ Brick Breaker Premium 2: installDir: Brick Breaker Premium 2: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -76792,7 +77027,7 @@ Brick Breaker Premium 3: installDir: Brick Breaker Premium 3: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -76802,7 +77037,7 @@ Brick Breaker Ultimate: installDir: Brick Breaker Ultimate: {} launch: - /Brick Breaker Ultimate.exe: + "/Brick Breaker Ultimate.exe": - when: - os: windows store: steam @@ -76812,7 +77047,7 @@ Brick Breaker with Risa: installDir: Brick Breaker with Risa: {} launch: - /bbwr.exe: + "/bbwr.exe": - when: - os: windows store: steam @@ -76822,7 +77057,7 @@ Brick Inventions: installDir: BrickInventions: {} launch: - /BrickInventions.exe: + "/BrickInventions.exe": - when: - os: windows store: steam @@ -76830,12 +77065,12 @@ Brick Inventions: id: 411750 Brick Rigs: files: - /BrickRigs/Saved: + "/BrickRigs/Saved": tags: - save when: - os: windows - /BrickRigs/Saved/Config: + "/BrickRigs/Saved/Config": tags: - config when: @@ -76843,7 +77078,7 @@ Brick Rigs: installDir: Brick Rigs: {} launch: - /BrickRigs.exe: + "/BrickRigs.exe": - when: - os: windows store: steam @@ -76863,15 +77098,15 @@ Brick vs. Paddle: installDir: Brick vs. Paddle: {} launch: - /Brick vs Paddle.exe: + "/Brick vs Paddle.exe": - when: - os: windows store: steam - /Brick_vs_Paddle: + "/Brick_vs_Paddle": - when: - os: linux store: steam - /Brick_vs_Paddle.app: + "/Brick_vs_Paddle.app": - when: - os: mac store: steam @@ -76881,7 +77116,7 @@ Brick-Force: installDir: Brick-Force ROW: {} launch: - /InfernumLogin.exe: + "/InfernumLogin.exe": - when: - os: windows store: steam @@ -76889,22 +77124,22 @@ Brick-Force: id: 335330 Brickadia: files: - /.config/Epic/Brickadia/Saved: + "/.config/Epic/Brickadia/Saved": tags: - save when: - os: linux - /.config/Epic/Brickadia/Saved/Config/LinuxNoEditor: + "/.config/Epic/Brickadia/Saved/Config/LinuxNoEditor": tags: - config when: - os: linux - /Brickadia/Saved: + "/Brickadia/Saved": tags: - save when: - os: windows - /Brickadia/Saved/Config/WindowsNoEditor: + "/Brickadia/Saved/Config/WindowsNoEditor": tags: - config when: @@ -76915,11 +77150,11 @@ Brickfest: installDir: Brickfest: {} launch: - /Brickfest.exe: + "/Brickfest.exe": - when: - os: windows store: steam - /brickfest: + "/brickfest": - when: - os: linux store: steam @@ -76929,7 +77164,7 @@ Brickochet: installDir: Brickochet: {} launch: - /Brickochet.exe: + "/Brickochet.exe": - when: - os: windows store: steam @@ -76939,7 +77174,7 @@ Bricks In The Box: installDir: Bricks In The Box: {} launch: - /BricksInTheBox.exe: + "/BricksInTheBox.exe": - when: - os: windows store: steam @@ -76949,7 +77184,7 @@ Bridge Builder Racer: installDir: Bridge Builder Racer: {} launch: - /Bridge Builder Racer.exe: + "/Bridge Builder Racer.exe": - when: - os: windows store: steam @@ -76957,7 +77192,7 @@ Bridge Builder Racer: id: 1084970 Bridge Constructor: files: - /AppData/LocalLow/ClockStone Software GmbH/Bridge Constructor: + "/AppData/LocalLow/ClockStone Software GmbH/Bridge Constructor": tags: - save when: @@ -76967,15 +77202,15 @@ Bridge Constructor: installDir: BridgeConstructor: {} launch: - /Bridge Constructor.app: + "/Bridge Constructor.app": - when: - os: mac store: steam - /BridgeConstructor.exe: + "/BridgeConstructor.exe": - when: - os: windows store: steam - /BridgeConstructor.x86_64: + "/BridgeConstructor.x86_64": - when: - bit: 64 os: linux @@ -76988,22 +77223,22 @@ Bridge Constructor: id: 250460 Bridge Constructor Medieval: files: - /AppData/LocalLow/ClockStone Software GmbH/Bridge Constructor Medieval: + "/AppData/LocalLow/ClockStone Software GmbH/Bridge Constructor Medieval": tags: - save when: - os: windows - /unity3d/ClockStone Software GmbH/Bridge Constructor Medieval/Profile.dat: + "/unity3d/ClockStone Software GmbH/Bridge Constructor Medieval/Profile.dat": tags: - config when: - os: linux - /unity3d/ClockStone Software GmbH/Bridge Constructor Medieval/Region*: + "/unity3d/ClockStone Software GmbH/Bridge Constructor Medieval/Region*": tags: - save when: - os: linux - /unity3d/ClockStone Software GmbH/Bridge Constructor Medieval/prefs: + "/unity3d/ClockStone Software GmbH/Bridge Constructor Medieval/prefs": tags: - config when: @@ -77013,15 +77248,15 @@ Bridge Constructor Medieval: installDir: Bridge Constructor Medieval: {} launch: - /BridgeConstructorMedieval.app: + "/BridgeConstructorMedieval.app": - when: - os: mac store: steam - /BridgeConstructorMedieval.exe: + "/BridgeConstructorMedieval.exe": - when: - os: windows store: steam - /BridgeConstructorMedieval.x86_64: + "/BridgeConstructorMedieval.x86_64": - when: - bit: 64 os: linux @@ -77030,12 +77265,12 @@ Bridge Constructor Medieval: id: 319850 Bridge Constructor Playground: files: - /AppData/LocalLow/ClockStone Software GmbH/Bridge Constructor Playground: + "/AppData/LocalLow/ClockStone Software GmbH/Bridge Constructor Playground": tags: - save when: - os: windows - /unity3d/ClockStone Software GmbH/Bridge Constructor Playground: + "/unity3d/ClockStone Software GmbH/Bridge Constructor Playground": tags: - save when: @@ -77045,16 +77280,16 @@ Bridge Constructor Playground: installDir: Bridge Constructor Playground: {} launch: - /BridgeConstructorPlayground.exe: + "/BridgeConstructorPlayground.exe": - when: - os: windows store: steam - /BridgeConstructorPlayground.x86_64: + "/BridgeConstructorPlayground.x86_64": - when: - bit: 64 os: linux store: steam - /Bridge_Constructor_Playground.app: + "/Bridge_Constructor_Playground.app": - when: - os: mac store: steam @@ -77062,24 +77297,24 @@ Bridge Constructor Playground: id: 279990 Bridge Constructor Portal: files: - /AppData/LocalLow/ClockStone Software GmbH/Bridge Constructor Portal: + "/AppData/LocalLow/ClockStone Software GmbH/Bridge Constructor Portal": tags: - config - save when: - os: windows - /Library/Application Support/ClockStone Software GmbH/Bridge Constructor Portal: + "/Library/Application Support/ClockStone Software GmbH/Bridge Constructor Portal": tags: - save when: - os: mac - /Packages/HeadupGames.BridgeConstructorPortal_zedvb25zy7eke/SystemAppData/wgs/: + "/Packages/HeadupGames.BridgeConstructorPortal_zedvb25zy7eke/SystemAppData/wgs/": tags: - save when: - os: windows store: microsoft - /unity3d/ClockStone Software GmbH/Bridge Constructor Portal: + "/unity3d/ClockStone Software GmbH/Bridge Constructor Portal": tags: - config - save @@ -77090,15 +77325,15 @@ Bridge Constructor Portal: installDir: Bridge Constructor Portal: {} launch: - /Bridge_Constructor_Portal.app: + "/Bridge_Constructor_Portal.app": - when: - os: mac store: steam - /Bridge_Constructor_Portal.exe: + "/Bridge_Constructor_Portal.exe": - when: - os: windows store: steam - /Bridge_Constructor_Portal.x86_64: + "/Bridge_Constructor_Portal.x86_64": - when: - bit: 64 os: linux @@ -77111,23 +77346,23 @@ Bridge Constructor Stunts: installDir: Bridge Constructor Stunts: {} launch: - /Bridge_Constructor_Stunts.app: + "/Bridge_Constructor_Stunts.app": - when: - os: mac store: steam - /Bridge_Constructor_Stunts.exe: + "/Bridge_Constructor_Stunts.exe": - when: - os: windows store: steam - /Bridge_Constructor_Stunts.x86: + "/Bridge_Constructor_Stunts.x86": - when: - os: linux store: steam steam: id: 419080 -'Bridge Constructor: The Walking Dead': +"Bridge Constructor: The Walking Dead": files: - /AppData/LocalLow/ClockStone Software GmbH/BC TWD/Profile.dat: + "/AppData/LocalLow/ClockStone Software GmbH/BC TWD/Profile.dat": tags: - config - save @@ -77138,15 +77373,15 @@ Bridge Constructor Stunts: installDir: Bridge Constructor The Walking Dead: {} launch: - /BC_TWD.app: + "/BC_TWD.app": - when: - os: mac store: steam - /BC_TWD.exe: + "/BC_TWD.exe": - when: - os: windows store: steam - /BC_TWD.x86_64: + "/BC_TWD.x86_64": - when: - bit: 64 os: linux @@ -77161,7 +77396,7 @@ Bridge Creator 2015: installDir: Bridge Creator 2015: {} launch: - /Launcher.exe: + "/Launcher.exe": - when: - os: windows store: steam @@ -77171,14 +77406,14 @@ Bridge It +: installDir: Bridge It (plus): {} launch: - /BridgeIt.exe: + "/BridgeIt.exe": - when: - store: steam steam: id: 248370 Bridge Project: files: - /BridgeProject: + "/BridgeProject": tags: - save when: @@ -77186,11 +77421,11 @@ Bridge Project: installDir: BridgeProject: {} launch: - /bridge.exe: + "/bridge.exe": - when: - os: windows store: steam - /bridgeproject.app: + "/bridgeproject.app": - when: - os: mac store: steam @@ -77201,21 +77436,21 @@ Bridge Trek: Bridge Trek: {} steam: id: 749180 -'Bridge to Another World: Burnt Dreams': +"Bridge to Another World: Burnt Dreams": installDir: - Bridge to Another World Burnt Dreams Collector's Edition: {} + "Bridge to Another World Burnt Dreams Collector's Edition": {} launch: - /BTAW_BurntDreams_CE.exe: + "/BTAW_BurntDreams_CE.exe": - when: - os: windows store: steam steam: id: 622150 -'Bridge to Another World: The Others': +"Bridge to Another World: The Others": installDir: - Bridge to Another World The Others Collector's Edition: {} + "Bridge to Another World The Others Collector's Edition": {} launch: - /BTAW_TheOthers_CE.exe: + "/BTAW_TheOthers_CE.exe": - when: - os: windows store: steam @@ -77225,7 +77460,7 @@ Bridge to Nowhere: installDir: Bridge to Nowhere: {} launch: - /Bridge To Nowhere BETA.exe: + "/Bridge To Nowhere BETA.exe": - when: - store: steam steam: @@ -77234,7 +77469,7 @@ Bridge!: installDir: Bridge!: {} launch: - /Bridge.exe: + "/Bridge.exe": - when: - os: windows store: steam @@ -77244,16 +77479,19 @@ Bridge! 2: installDir: Bridge 2: {} launch: - /Bridge.app: + "/Bridge.app": - when: - os: mac store: steam - /Bridge.exe: + "/Bridge.exe": - when: - bit: 32 os: windows store: steam - /Bridge.x86_64: + - bit: 64 + os: windows + store: steam + "/Bridge.x86_64": - when: - bit: 64 os: linux @@ -77264,7 +77502,7 @@ Bridge! 3: installDir: Zusammenstürzen: {} launch: - /Bridge! 3.exe: + "/Bridge! 3.exe": - when: - bit: 64 os: windows @@ -77275,7 +77513,7 @@ Brief Battles: installDir: Brief Battles: {} launch: - /Brief Battles.exe: + "/Brief Battles.exe": - when: - bit: 64 os: windows @@ -77286,7 +77524,7 @@ Brief Karate Foolish: installDir: Brief Karate Foolish: {} launch: - /SFWinCf.EXE: + "/SFWinCf.EXE": - when: - store: steam steam: @@ -77294,24 +77532,24 @@ Brief Karate Foolish: Brig 12: steam: id: 792920 -'Brigade E5: New Jagged Union': +"Brigade E5: New Jagged Union": files: - /AutoCamera.cfg: + "/AutoCamera.cfg": tags: - config when: - os: windows - /Config.e5c: + "/Config.e5c": tags: - config when: - os: windows - /Saves: + "/Saves": tags: - save when: - os: windows - /keys.cfg: + "/keys.cfg": tags: - config when: @@ -77321,11 +77559,11 @@ Brig 12: installDir: E5: {} launch: - /E5.exe: + "/E5.exe": - when: - os: windows store: steam - /E5Config.exe: + "/E5Config.exe": - when: - store: steam steam: @@ -77333,31 +77571,31 @@ Brig 12: Brigador Killers: steam: id: 903930 -'Brigador: Up-Armored Edition': +"Brigador: Up-Armored Edition": files: - /game/imgui.ini: + "/game/imgui.ini": tags: - config when: - os: linux - /game/profile.json: + "/game/profile.json": tags: - config - save when: - os: linux - /game/settings.json: + "/game/settings.json": tags: - config when: - os: linux - /profile.json: + "/profile.json": tags: - config - save when: - os: windows - /settings.json: + "/settings.json": tags: - config when: @@ -77366,35 +77604,35 @@ Brigador Killers: id: 1356485086 id: gogExtra: - - 1178372828 - 1118047580 + - 1178372828 steamExtra: - 468280 installDir: Brigador: {} launch: - /Brigador.app: + "/Brigador.app": - when: - os: mac store: steam - /brigador: + "/brigador": - when: - os: linux store: steam - /brigador.exe: + "/brigador.exe": - when: - os: windows store: steam steam: id: 274500 -'Brigand: Oaxaca': +"Brigand: Oaxaca": files: - /Saves: + "/Saves": tags: - save when: - os: windows - /Settings.ini: + "/Settings.ini": tags: - config when: @@ -77410,26 +77648,26 @@ Brigador Killers: installDir: Brigand: {} launch: - /Brigand Builder's Manual.pdf: + "/Brigand Builder's Manual.pdf": - when: - store: steam - /Brigand Player's Manual.pdf: + "/Brigand Player's Manual.pdf": - when: - store: steam - /Brigand Updates.txt: + "/Brigand Updates.txt": - when: - store: steam - /Brigand Windowed.exe: + "/Brigand Windowed.exe": - when: - store: steam - /Brigand.exe: + "/Brigand.exe": - when: - store: steam steam: id: 652410 -'Brigandine: The Legend of Runersia': +"Brigandine: The Legend of Runersia": files: - /AppData/LocalLow/Happinet/Brigandine_ The Legend of Runersia/SaveDatas/*.dat: + "/AppData/LocalLow/Happinet/Brigandine_ The Legend of Runersia/SaveDatas/*.dat": tags: - save when: @@ -77437,12 +77675,12 @@ Brigador Killers: installDir: Brigandine The Legend of Runersia: {} launch: - /Brigandine The Legend of Runersia.exe: + "/Brigandine The Legend of Runersia.exe": - when: - os: windows store: steam registry: - 'HKEY_CURRENT_USER/SOFTWARE/Happinet/Brigandine: The Legend of Runersia': + "HKEY_CURRENT_USER/SOFTWARE/Happinet/Brigandine: The Legend of Runersia": tags: - config steam: @@ -77451,7 +77689,7 @@ Bright Bird: installDir: Bright Bird: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -77461,7 +77699,7 @@ Bright Bob: installDir: Bright Bob: {} launch: - /BrightBob.exe: + "/BrightBob.exe": - when: - os: windows store: steam @@ -77471,7 +77709,7 @@ Bright Low: installDir: Bright low: {} launch: - /bright_low.exe: + "/bright_low.exe": - when: - os: windows store: steam @@ -77479,12 +77717,12 @@ Bright Low: id: 763220 Bright Memory: files: - /BrightMemory_EP1/Saved/Config/WindowsNoEditor: + "/BrightMemory_EP1/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /BrightMemory_EP1/Saved/SaveGames: + "/BrightMemory_EP1/Saved/SaveGames": tags: - save when: @@ -77495,14 +77733,14 @@ Bright Memory: BrightMemory_EP1: {} steam: id: 955050 -'Bright Memory: Infinite': +"Bright Memory: Infinite": files: - /BrightMemoryInfinite/Saved/Config/WindowsNoEditor: + "/BrightMemoryInfinite/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /BrightMemoryInfinite/Saved/SaveGames: + "/BrightMemoryInfinite/Saved/SaveGames": tags: - save when: @@ -77511,19 +77749,19 @@ Bright Memory: id: 1787213019 id: gogExtra: - - 1663059313 - - 2096998203 + - 1088118940 - 1090152621 - - 1757262951 - 1150122974 - 1303688150 - - 1088118940 - - 1779097696 - - 1752592313 - 1456474829 - - 1757329659 - - 1873841175 + - 1663059313 - 1707477102 + - 1752592313 + - 1757262951 + - 1757329659 + - 1779097696 + - 1873841175 + - 2096998203 steamExtra: - 1554690 - 1780970 @@ -77537,30 +77775,30 @@ Bright Memory: installDir: BrightMemoryInfinite: {} launch: - /BrightMemoryInfinite/Binaries/Win64/BrightMemoryInfinite-Win64-Shipping.exe: - - arguments: '-dx11' + "/BrightMemoryInfinite/Binaries/Win64/BrightMemoryInfinite-Win64-Shipping.exe": + - arguments: "-dx11" when: - bit: 64 os: windows store: steam - workingDir: /BrightMemoryInfinite/Binaries/Win64 - - arguments: '-dx12' + workingDir: "/BrightMemoryInfinite/Binaries/Win64" + - arguments: "-dx12" when: - bit: 64 os: windows store: steam - workingDir: /BrightMemoryInfinite/Binaries/Win64 + workingDir: "/BrightMemoryInfinite/Binaries/Win64" steam: id: 1178830 Bright Paw: installDir: Bright Paw: {} launch: - /Bright Paw.app/Contents/MacOS/Bright Paw: + "/Bright Paw.app/Contents/MacOS/Bright Paw": - when: - os: mac store: steam - /Bright Paw.exe: + "/Bright Paw.exe": - when: - bit: 64 os: windows @@ -77574,11 +77812,11 @@ Brighter Day: installDir: BrighterDay: {} launch: - /BrighterDay.app: + "/BrighterDay.app": - when: - os: mac store: steam - /BrighterDay.exe: + "/BrighterDay.exe": - when: - os: windows store: steam @@ -77588,7 +77826,7 @@ Brightest: installDir: BRIGHTEST: {} launch: - /BRIGHTEST.exe: + "/BRIGHTEST.exe": - when: - os: windows store: steam @@ -77598,7 +77836,7 @@ Briks 2: installDir: BRIKS 2: {} launch: - /BRIKS2.exe: + "/BRIKS2.exe": - when: - os: windows store: steam @@ -77611,11 +77849,11 @@ Brilliant Shadows - Part One of the Book of Gray Magic: installDir: Brilliant Shadows: {} launch: - /Brilliant Shadows.exe: + "/Brilliant Shadows.exe": - when: - os: windows store: steam - /Brilliant Shadows.sh: + "/Brilliant Shadows.sh": - when: - os: linux store: steam @@ -77625,7 +77863,7 @@ Brimstone: installDir: Brimstone: {} launch: - /Brimstone.exe: + "/Brimstone.exe": - when: - store: steam steam: @@ -77634,7 +77872,7 @@ Brimstone Brawlers: installDir: Brimstone Brawlers: {} launch: - /BrimstoneBrawlers.exe: + "/BrimstoneBrawlers.exe": - when: - os: windows store: steam @@ -77644,7 +77882,7 @@ Brine: installDir: Brinev1.0: {} launch: - /Brine.exe: + "/Brine.exe": - when: - os: windows store: steam @@ -77654,11 +77892,11 @@ Bring Dad Home: installDir: Bring Dad Home: {} launch: - /BringDadHome.app: + "/BringDadHome.app": - when: - os: mac store: steam - /BringDadHome.exe: + "/BringDadHome.exe": - when: - os: windows store: steam @@ -77670,11 +77908,11 @@ Bring Her Home: Bring You Home: steam: id: 1273640 -'Bring me a man, Santa': +"Bring me a man, Santa": installDir: - 'Bring me a man, Santa': {} + "Bring me a man, Santa": {} launch: - '/Bring me a man, Santa.exe': + "/Bring me a man, Santa.exe": - when: - os: windows store: steam @@ -77684,7 +77922,7 @@ Bring to Light: installDir: Bring to Light: {} launch: - /BTL.exe: + "/BTL.exe": - when: - bit: 64 os: windows @@ -77693,7 +77931,7 @@ Bring to Light: id: 636720 Brink: files: - /userdata//22350/local/base: + "/userdata//22350/local/base": tags: - config when: @@ -77702,14 +77940,14 @@ Brink: installDir: BRINK: {} launch: - /brink.exe: + "/brink.exe": - when: - store: steam steam: id: 22350 -'Brink of Consciousness: Dorian Gray Syndrome Collector''s Edition': +"Brink of Consciousness: Dorian Gray Syndrome Collector's Edition": files: - /MagicIndie/Dorian Gray CE: + "/MagicIndie/Dorian Gray CE": tags: - config - save @@ -77718,17 +77956,17 @@ Brink: installDir: Brink of Consciousness Dorian Gray Syndrome: {} launch: - /DorianGraySyndromeCE.exe: + "/DorianGraySyndromeCE.exe": - when: - os: windows store: steam steam: id: 302130 -'Brink of Consciousness: The Lonely Hearts Murders': +"Brink of Consciousness: The Lonely Hearts Murders": installDir: Brink of Consciousness The Lonely Hearts Murders: {} launch: - /BrinkOfConsciousness_LonelyHeartsMurdersCE.exe: + "/BrinkOfConsciousness_LonelyHeartsMurdersCE.exe": - when: - os: windows store: steam @@ -77738,11 +77976,11 @@ Brink of Extinction: installDir: Brink of Extinction: {} launch: - /Brink of Extinction.app: + "/Brink of Extinction.app": - when: - os: mac store: steam - /Brink of Extinction.exe: + "/Brink of Extinction.exe": - when: - os: windows store: steam @@ -77752,7 +77990,7 @@ Brinko: installDir: Brinko: {} launch: - /brinko.exe: + "/brinko.exe": - when: - os: windows store: steam @@ -77762,11 +78000,11 @@ Briquid: installDir: Briquid: {} launch: - /Briquid.app: + "/Briquid.app": - when: - os: mac store: steam - /BriquidSteam.exe: + "/BriquidSteam.exe": - when: - os: windows store: steam @@ -77776,7 +78014,7 @@ British Gangsters: installDir: British Gangsters: {} launch: - /British Gangsters.exe: + "/British Gangsters.exe": - when: - store: steam steam: @@ -77785,7 +78023,7 @@ Brittany Home Alone: installDir: Brittany Home Alone: {} launch: - /Brittany Home Alone.exe: + "/Brittany Home Alone.exe": - when: - bit: 64 os: windows @@ -77800,11 +78038,11 @@ Brix VR: Broadside: steam: id: 401560 -'Broadsword: Age of Chivalry': +"Broadsword: Age of Chivalry": installDir: Broadsword Age of Chivalry: {} launch: - /Broadsword24-08-2015.exe: + "/Broadsword24-08-2015.exe": - when: - store: steam registry: @@ -77814,29 +78052,29 @@ Broadside: - save steam: id: 312710 -'Broadway: 1849': +"Broadway: 1849": installDir: Broadway 1849: {} launch: - /Broadway 1849.app/Contents/MacOS/Broadway 1849: + "/Broadway 1849.app/Contents/MacOS/Broadway 1849": - when: - os: mac store: steam - /Broadway1849: + "/Broadway1849": - when: - os: linux store: steam - /Broadway1849.exe: + "/Broadway1849.exe": - when: - os: windows store: steam steam: id: 757080 -'Brocat: the B Game': +"Brocat: the B Game": installDir: Brocat: {} launch: - /BroCatFRM.exe: + "/BroCatFRM.exe": - when: - os: windows store: steam @@ -77846,7 +78084,7 @@ Broccoli Bob: installDir: Broccoli Bob: {} launch: - /Broccoli Bob.exe: + "/Broccoli Bob.exe": - when: - os: windows store: steam @@ -77857,13 +78095,13 @@ Brodefence: id: 856460 Broforce: files: - /Saves/.sav: + "/Saves/.sav": tags: - save when: - os: windows - os: linux - /Saves/Options.xml: + "/Saves/Options.xml": tags: - config when: @@ -77872,12 +78110,12 @@ Broforce: store: microsoft - os: mac - os: linux - /Saves/progress.sav: + "/Saves/progress.sav": tags: - save when: - os: mac - /AppData/LocalLow/Free Lives/Broforce/Saves/progress.sav: + "/AppData/LocalLow/Free Lives/Broforce/Saves/progress.sav": tags: - save when: @@ -77888,21 +78126,21 @@ Broforce: installDir: Broforce: {} launch: - /Broforce.app: + "/Broforce.app": - when: - os: mac store: steam - /Broforce.x86: + "/Broforce.x86": - when: - bit: 32 os: linux store: steam - /Broforce.x86_64: + "/Broforce.x86_64": - when: - bit: 64 os: linux store: steam - /Broforce_beta.exe: + "/Broforce_beta.exe": - when: - os: windows store: steam @@ -77910,7 +78148,7 @@ Broforce: id: 274190 Brok the InvestiGator: files: - /Brokgame/saves: + "/Brokgame/saves": tags: - config - save @@ -77926,15 +78164,15 @@ Brok the InvestiGator: installDir: Brok: {} launch: - /Brokgame: + "/Brokgame": - when: - os: linux store: steam - /Brokgame.app/Contents/MacOS/Brokgame: + "/Brokgame.app/Contents/MacOS/Brokgame": - when: - os: mac store: steam - /Brokgame.exe: + "/Brokgame.exe": - when: - os: windows store: steam @@ -77947,49 +78185,49 @@ Broke Protocol: installDir: BROKE PROTOCOL: {} launch: - /BrokeProtocol.exe: + "/BrokeProtocol.exe": - when: - store: steam steam: id: 696370 Broken Age: files: - /saves/*.sav: + "/saves/*.sav": tags: - save when: - store: steam - /saves/game.settings: + "/saves/game.settings": tags: - config when: - store: steam - /Library/Application Support/BrokenAge/Saves/*.sav: + "/Library/Application Support/BrokenAge/Saves/*.sav": tags: - save when: - os: mac - /Library/Application Support/BrokenAge/Saves/game.settings: + "/Library/Application Support/BrokenAge/Saves/game.settings": tags: - config when: - os: mac - /BrokenAge/saves/*.sav: + "/BrokenAge/saves/*.sav": tags: - save when: - os: windows - /BrokenAge/saves/game.settings: + "/BrokenAge/saves/game.settings": tags: - config when: - os: windows - /doublefine/BrokenAge/saves/*.sav: + "/doublefine/BrokenAge/saves/*.sav": tags: - save when: - os: linux - /doublefine/BrokenAge/saves/game.settings: + "/doublefine/BrokenAge/saves/game.settings": tags: - config when: @@ -77999,15 +78237,15 @@ Broken Age: installDir: Broken Age: {} launch: - /BrokenAge: + "/BrokenAge": - when: - os: linux store: steam - /BrokenAge.app: + "/BrokenAge.app": - when: - os: mac store: steam - /BrokenAge.exe: + "/BrokenAge.exe": - when: - os: windows store: steam @@ -78017,7 +78255,7 @@ Broken Armor: installDir: Broken Armor: {} launch: - /Broken Armor.exe: + "/Broken Armor.exe": - when: - os: windows store: steam @@ -78037,15 +78275,15 @@ Broken Bots: installDir: Broken Bots: {} launch: - /Broken Bots.app: + "/Broken Bots.app": - when: - os: mac store: steam - /Broken Bots.exe: + "/Broken Bots.exe": - when: - os: windows store: steam - /Broken Bots.x86_64: + "/Broken Bots.x86_64": - when: - bit: 64 os: linux @@ -78056,14 +78294,14 @@ Broken Delusion: installDir: BrokenDelusion: {} launch: - /BrokenDelusion.exe: + "/BrokenDelusion.exe": - when: - store: steam steam: id: 1108320 Broken Dreams: files: - /Macromedia/Flash Player/#SharedObjects//localhost/BrokenDreams.sol: + "/Macromedia/Flash Player/#SharedObjects//localhost/BrokenDreams.sol": tags: - save when: @@ -78071,15 +78309,15 @@ Broken Dreams: installDir: Broken Dreams: {} launch: - /BrokenDreamsLinux: + "/BrokenDreamsLinux": - when: - os: linux store: steam - /BrokenDreamsMac.app: + "/BrokenDreamsMac.app": - when: - os: mac store: steam - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -78089,16 +78327,16 @@ Broken Ground: installDir: Broken Ground: {} launch: - /BrokenGround.exe: + "/BrokenGround.exe": - when: - bit: 64 os: windows store: steam - /BrokenGroundBuild_Mac.app/Contents/MacOS/BrokenGroundBuild_Mac: + "/BrokenGroundBuild_Mac.app/Contents/MacOS/BrokenGroundBuild_Mac": - when: - os: mac store: steam - /BrokenGround_32.exe: + "/BrokenGround_32.exe": - when: - bit: 32 os: windows @@ -78110,7 +78348,7 @@ Broken Hearts Club - Blue Bird Blues: id: 1075900 Broken Lines: files: - /AppData/LocalLow/PortaPlay/Broken Lines/Saves: + "/AppData/LocalLow/PortaPlay/Broken Lines/Saves": tags: - save when: @@ -78120,16 +78358,16 @@ Broken Lines: installDir: Broken Lines: {} launch: - /Broken Lines.app: + "/Broken Lines.app": - when: - os: mac store: steam - /Broken Lines.exe: + "/Broken Lines.exe": - when: - bit: 64 os: windows store: steam - /Broken Lines.x86_64: + "/Broken Lines.x86_64": - when: - bit: 64 os: linux @@ -78140,26 +78378,26 @@ Broken Metal: installDir: Broken Metal: {} launch: - /linux_launch_32.sh: + "/linux_launch_32.sh": - when: - bit: 32 os: linux store: steam - /linux_launch_64.sh: + "/linux_launch_64.sh": - when: - bit: 64 os: linux store: steam - /mac_launch.command: + "/mac_launch.command": - when: - os: mac store: steam - /windows_launch_32.bat: + "/windows_launch_32.bat": - when: - bit: 32 os: windows store: steam - /windows_launch_64.bat: + "/windows_launch_64.bat": - when: - bit: 64 os: windows @@ -78170,15 +78408,15 @@ Broken Minds: installDir: Broken Minds: {} launch: - /BROKEN_MINDS.app: + "/BROKEN_MINDS.app": - when: - os: mac store: steam - /BROKEN_MINDS.exe: + "/BROKEN_MINDS.exe": - when: - os: windows store: steam - /BROKEN_MINDS.sh: + "/BROKEN_MINDS.sh": - when: - os: linux store: steam @@ -78186,12 +78424,12 @@ Broken Minds: id: 746420 Broken Pieces: files: - /BrokenPieces/Saved/Config/WindowsNoEditor: + "/BrokenPieces/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /BrokenPieces/Saved/SaveGames: + "/BrokenPieces/Saved/SaveGames": tags: - save when: @@ -78201,7 +78439,7 @@ Broken Pieces: installDir: Broken Pieces: {} launch: - /BrokenPieces.exe: + "/BrokenPieces.exe": - when: - bit: 64 os: windows @@ -78214,7 +78452,7 @@ Broken Reality: installDir: Broken Reality: {} launch: - /BrokenReality.exe: + "/BrokenReality.exe": - when: - os: windows store: steam @@ -78232,7 +78470,7 @@ Broken Spell: installDir: Broken Spell: {} launch: - /Broken Spell.exe: + "/Broken Spell.exe": - when: - bit: 64 os: windows @@ -78243,34 +78481,34 @@ Broken Spell 2: installDir: 驱魔道人2: {} launch: - /Broken Spell.exe: + "/Broken Spell.exe": - when: - bit: 64 os: windows store: steam steam: id: 1197440 -Broken Sword - Parzival's Stone: +"Broken Sword - Parzival's Stone": steam: id: 2546810 -'Broken Sword - Shadow of the Templars: Reforged': +"Broken Sword - Shadow of the Templars: Reforged": steam: id: 2544110 -'Broken Sword 2.5: The Return of the Templars': +"Broken Sword 2.5: The Return of the Templars": files: - /Broken Sword 2.5/config.lua: + "/Broken Sword 2.5/config.lua": tags: - config when: - os: windows - /Broken Sword 2.5/saves: + "/Broken Sword 2.5/saves": tags: - save when: - os: windows -'Broken Sword 3: The Sleeping Dragon': +"Broken Sword 3: The Sleeping Dragon": files: - /saves: + "/saves": tags: - save when: @@ -78280,7 +78518,7 @@ Broken Sword - Parzival's Stone: installDir: Broken Sword 3: {} launch: - /BSTSD.exe: + "/BSTSD.exe": - when: - store: steam registry: @@ -78289,14 +78527,14 @@ Broken Sword - Parzival's Stone: - config steam: id: 33610 -'Broken Sword 4: The Angel of Death (Secrets of the Ark)': +"Broken Sword 4: The Angel of Death (Secrets of the Ark)": files: - /system: + "/system": tags: - config when: - os: windows - /Broken Sword - The Angel of Death: + "/Broken Sword - The Angel of Death": tags: - save when: @@ -78306,7 +78544,7 @@ Broken Sword - Parzival's Stone: installDir: Broken Sword 4: {} launch: - /bs4.exe: + "/bs4.exe": - when: - os: windows store: steam @@ -78316,30 +78554,30 @@ Broken Sword - Parzival's Stone: - config steam: id: 316160 -'Broken Sword 5: The Serpent''s Curse': +"Broken Sword 5: The Serpent's Curse": files: - /.bs5: + "/.bs5": tags: - save when: - os: linux - /.bs5/vt7.ini: + "/.bs5/vt7.ini": tags: - config when: - os: linux - /Library/Application Support/Broken Sword 5: + "/Library/Application Support/Broken Sword 5": tags: - config - save when: - os: mac - /Broken Sword 5: + "/Broken Sword 5": tags: - save when: - os: windows - /Broken Sword 5/vt7.ini: + "/Broken Sword 5/vt7.ini": tags: - config when: @@ -78349,40 +78587,40 @@ Broken Sword - Parzival's Stone: installDir: Broken Sword 5: {} launch: - /BS5: + "/BS5": - when: - os: linux store: steam - /BS5.app: + "/BS5.app": - when: - os: mac store: steam - /BS5.exe: + "/BS5.exe": - when: - os: windows store: steam steam: id: 262940 -'Broken Sword II: The Smoking Mirror': +"Broken Sword II: The Smoking Mirror": gog: id: 1207658707 steam: id: 580440 -'Broken Sword II: The Smoking Mirror - Remastered': +"Broken Sword II: The Smoking Mirror - Remastered": files: - /.bs2: + "/.bs2": tags: - config - save when: - os: linux - /Library/Application Support/Broken Sword - The Smoking Mirror - Remastered: + "/Library/Application Support/Broken Sword - The Smoking Mirror - Remastered": tags: - config - save when: - os: mac - /Broken Sword II - Remastered: + "/Broken Sword II - Remastered": tags: - config - save @@ -78393,35 +78631,35 @@ Broken Sword - Parzival's Stone: installDir: Broken Sword 2: {} launch: - /BS2Remastered_i386: + "/BS2Remastered_i386": - when: - os: linux store: steam - /Broken Sword - The Smoking Mirror - Remastered.app: + "/Broken Sword - The Smoking Mirror - Remastered.app": - when: - os: mac store: steam - /BrokenSword2.exe: + "/BrokenSword2.exe": - when: - os: windows store: steam steam: id: 33600 -'Broken Sword: Shadow of the Templars: Director''s Cut': +"Broken Sword: Shadow of the Templars: Director's Cut": files: - /.bs1dc: + "/.bs1dc": tags: - config - save when: - os: linux - /Library/Application Support/Broken Sword - Director's Cut: + "/Library/Application Support/Broken Sword - Director's Cut": tags: - config - save when: - os: mac - /Broken Sword - Director's Cut: + "/Broken Sword - Director's Cut": tags: - config - save @@ -78432,44 +78670,44 @@ Broken Sword - Parzival's Stone: installDir: Broken Sword Shadow of the Templars: {} launch: - /BS1DC.app/Contents/MacOS/BS1DC: + "/BS1DC.app/Contents/MacOS/BS1DC": - when: - os: mac store: steam - /bs1dc.exe: + "/bs1dc.exe": - when: - os: windows store: steam - /i386/bs1dc_i386: + "/i386/bs1dc_i386": - when: - bit: 32 os: linux store: steam - /x86_64/bs1dc_x86_64: + "/x86_64/bs1dc_x86_64": - when: - bit: 64 os: linux store: steam steam: id: 57640 -'Broken Sword: The Shadow of the Templars': +"Broken Sword: The Shadow of the Templars": files: - /SAVES: + "/SAVES": tags: - save when: - os: dos - /SWORD.INF: + "/SWORD.INF": tags: - config when: - os: dos - /save: + "/save": tags: - save when: - os: windows - /sword1.ini: + "/sword1.ini": tags: - config when: @@ -78482,8 +78720,8 @@ Broken Ties: installDir: Broken Ties: {} launch: - /Game.exe: - - arguments: '--in-process-gpu' + "/Game.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam @@ -78493,7 +78731,7 @@ Broken of Darkness: installDir: 冲破黑暗: {} launch: - /Broken of Darkness.exe: + "/Broken of Darkness.exe": - when: - bit: 64 os: windows @@ -78504,7 +78742,7 @@ Bronepoezd: installDir: Bronepoezd: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -78514,21 +78752,24 @@ Bronze Age - HD Edition: installDir: Bronze Age: {} launch: - /BronzeAge.app: + "/BronzeAge.app": - when: - os: mac store: steam - /BronzeAge.exe: + "/BronzeAge.exe": - when: - bit: 32 os: windows store: steam - /BronzeAge.x86: + - bit: 64 + os: windows + store: steam + "/BronzeAge.x86": - when: - bit: 32 os: linux store: steam - /BronzeAge.x86_64: + "/BronzeAge.x86_64": - when: - bit: 64 os: linux @@ -78539,7 +78780,7 @@ Bronze Hoof: installDir: Bronze Hoof: {} launch: - /Bronze Hoof.exe: + "/Bronze Hoof.exe": - when: - os: windows store: steam @@ -78549,7 +78790,7 @@ Brood: installDir: Brood: {} launch: - /Brood.exe: + "/Brood.exe": - when: - os: windows store: steam @@ -78562,7 +78803,7 @@ Broomball VR: id: 504630 Broomstick League: files: - /Broomstick/Saved/Config/WindowsNoEditor: + "/Broomstick/Saved/Config/WindowsNoEditor": tags: - config when: @@ -78570,7 +78811,7 @@ Broomstick League: installDir: Broomstick League: {} launch: - /Broomstick.exe: + "/Broomstick.exe": - when: - os: windows store: steam @@ -78578,7 +78819,7 @@ Broomstick League: id: 972780 Brotato: files: - /Brotato//*.json: + "/Brotato//*.json": tags: - save when: @@ -78586,7 +78827,7 @@ Brotato: installDir: Brotato: {} launch: - /Brotato.exe: + "/Brotato.exe": - when: - os: windows store: steam @@ -78594,12 +78835,12 @@ Brotato: id: 1942280 Brother Bear: files: - /Disney Interactive/Brother Bear/System: + "/Disney Interactive/Brother Bear/System": tags: - config when: - os: windows - /Disney Interactive/Brother Bear/System/Save: + "/Disney Interactive/Brother Bear/System/Save": tags: - save when: @@ -78608,7 +78849,7 @@ Brother Brother: installDir: Brother Brother: {} launch: - /Brother Brother.exe: + "/Brother Brother.exe": - when: - os: windows store: steam @@ -78623,7 +78864,7 @@ Brother Wings: installDir: Brother Wings: {} launch: - /Brother Wings.exe: + "/Brother Wings.exe": - when: - os: windows store: steam @@ -78633,7 +78874,7 @@ BrotherZ: installDir: BrotherZ: {} launch: - /BrotherZ.exe: + "/BrotherZ.exe": - when: - os: windows store: steam @@ -78643,15 +78884,15 @@ Brotherhood United: installDir: Brotherhood United: {} launch: - /Brotherhood United.exe: + "/Brotherhood United.exe": - when: - os: windows store: steam steam: id: 869030 -'Brothers in Arms: Earned in Blood': +"Brothers in Arms: Earned in Blood": files: - /Gearbox Software/Earned In Blood/: + "/Gearbox Software/Earned In Blood/": tags: - config - save @@ -78662,20 +78903,20 @@ Brotherhood United: installDir: Brothers in Arms Earned in Blood: {} launch: - /system/eib.exe: + "/system/eib.exe": - when: - store: steam - workingDir: /system + workingDir: "/system" steam: id: 19800 -'Brothers in Arms: Hell''s Highway': +"Brothers in Arms: Hell's Highway": files: - /My Games/BIA Hells Highway/SumacGame/Config: + "/My Games/BIA Hells Highway/SumacGame/Config": tags: - config when: - os: windows - /My Games/BIA Hells Highway/SumacGame/SaveData: + "/My Games/BIA Hells Highway/SumacGame/SaveData": tags: - save when: @@ -78685,14 +78926,14 @@ Brotherhood United: installDir: Brothers in Arms Hells Highway: {} launch: - /Binaries/biahh.exe: + "/Binaries/biahh.exe": - when: - store: steam steam: id: 15390 -'Brothers in Arms: Road to Hill 30': +"Brothers in Arms: Road to Hill 30": files: - /Gearbox Software/Brothers In Arms/: + "/Gearbox Software/Brothers In Arms/": tags: - config - save @@ -78703,20 +78944,20 @@ Brotherhood United: installDir: Brothers in Arms Road to Hill 30: {} launch: - /system/bia.exe: + "/system/bia.exe": - when: - store: steam - workingDir: /System + workingDir: "/System" steam: id: 15190 -'Brothers: A Tale of Two Sons': +"Brothers: A Tale of Two Sons": files: - /My Games/Brothers - A Tale of Two Sons: + "/My Games/Brothers - A Tale of Two Sons": tags: - save when: - os: windows - /My Games/UnrealEngine3/P13/Config: + "/My Games/UnrealEngine3/P13/Config": tags: - config when: @@ -78726,23 +78967,23 @@ Brotherhood United: installDir: Brothers - A Tale of Two Sons: {} launch: - /Binaries/Win32/Brothers.exe: + "/Binaries/Win32/Brothers.exe": - when: - os: windows store: steam - workingDir: /Binaries/Win32 - /Binaries/Win32/BrothersLauncher.exe: + workingDir: "/Binaries/Win32" + "/Binaries/Win32/BrothersLauncher.exe": - when: - os: windows store: steam - workingDir: /Binaries/Win32 + workingDir: "/Binaries/Win32" steam: id: 225080 -'Brrrainz: Feed your Hunger': +"Brrrainz: Feed your Hunger": installDir: Brrrainz: {} launch: - /Brrrainz.exe: + "/Brrrainz.exe": - when: - os: windows store: steam @@ -78752,7 +78993,7 @@ Brukel: installDir: Brukel: {} launch: - /BrukelGame.exe: + "/BrukelGame.exe": - when: - bit: 64 os: windows @@ -78763,7 +79004,7 @@ Bruken: installDir: Bruken: {} launch: - /Bruken.exe: + "/Bruken.exe": - when: - os: windows store: steam @@ -78773,11 +79014,11 @@ Brume: installDir: Brume: {} launch: - /brume.app: + "/brume.app": - when: - os: mac store: steam - /brume_windows/brume.exe: + "/brume_windows/brume.exe": - when: - os: windows store: steam @@ -78787,7 +79028,7 @@ Brumm: installDir: Brumm: {} launch: - /Brumm.exe: + "/Brumm.exe": - when: - os: windows store: steam @@ -78800,17 +79041,17 @@ Brush Up VR: id: 567840 Brushwood Buddies: files: - /.local/share/BrushwoodBuddies/savegames: + "/.local/share/BrushwoodBuddies/savegames": tags: - save when: - os: linux - /BrushwoodBuddies/savegames: + "/BrushwoodBuddies/savegames": tags: - save when: - os: windows - /BrushwoodBuddies/settings.xml: + "/BrushwoodBuddies/settings.xml": tags: - config when: @@ -78818,11 +79059,11 @@ Brushwood Buddies: installDir: Brushwood Buddies: {} launch: - /BrushwoodBuddies: + "/BrushwoodBuddies": - when: - os: linux store: steam - /BrushwoodBuddies.exe: + "/BrushwoodBuddies.exe": - when: - os: windows store: steam @@ -78830,7 +79071,7 @@ Brushwood Buddies: id: 434820 Brut@l: files: - /Steam/userdata//489260: + "/Steam/userdata//489260": tags: - save when: @@ -78839,7 +79080,7 @@ Brut@l: installDir: Brut@l: {} launch: - /Brut@l.exe: + "/Brut@l.exe": - when: - os: windows store: steam @@ -78853,7 +79094,7 @@ Brutal Games: installDir: BrutalGames: {} launch: - /Brutal_Games: + "/Brutal_Games": - when: - bit: 64 os: windows @@ -78864,7 +79105,7 @@ Brutal Inventions: installDir: Brutal Inventions: {} launch: - /Brutal_Inventions.exe: + "/4/Brutal_Inventions.exe": - when: - os: windows store: steam @@ -78874,7 +79115,7 @@ Brutal Japan: installDir: Brutal Japan: {} launch: - /Brutal Japan.exe: + "/Brutal Japan.exe": - when: - os: windows store: steam @@ -78889,11 +79130,11 @@ Brutal Orchestra: installDir: Brutal Orchestra: {} launch: - /BrutalOrchestra.exe: + "/BrutalOrchestra.exe": - when: - os: windows store: steam - /BrutalOrchestra.x86_64: + "/BrutalOrchestra.x86_64": - when: - os: linux store: steam @@ -78903,7 +79144,7 @@ Brutal Runner: installDir: Brutal Runner: {} launch: - /BrutalRunner.exe: + "/BrutalRunner.exe": - when: - os: windows store: steam @@ -78916,7 +79157,7 @@ Brutal Sports - Football: installDir: Brutal Sports - Football: {} launch: - /dosbox.exe: + "/dosbox.exe": - when: - os: windows store: steam @@ -78926,8 +79167,8 @@ Brutal Warrior: installDir: Brutal Warrior: {} launch: - /BrutalWarrior.exe: - - arguments: '-nosteamvr -nodashboard' + "/BrutalWarrior.exe": + - arguments: "-nosteamvr -nodashboard" when: - store: steam steam: @@ -78936,7 +79177,7 @@ BrutalAliens: installDir: BrutalAliens: {} launch: - /BrutalAliensGame_v1.0.exe: + "/BrutalAliensGame_v1.0.exe": - when: - os: windows store: steam @@ -78946,18 +79187,18 @@ Brute: installDir: Brute: {} launch: - /Brute.exe: + "/Brute.exe": - when: - bit: 64 os: windows store: steam steam: id: 451630 -Bryce's Movement Engine¹: +"Bryce's Movement Engine¹": installDir: BME1: {} launch: - /BME1.exe: + "/BME1.exe": - when: - os: windows store: steam @@ -78965,32 +79206,32 @@ Bryce's Movement Engine¹: id: 1117420 Brütal Legend: files: - /Library/Application Support/doublefine/brutallegend/*.sav: + "/Library/Application Support/doublefine/brutallegend/*.sav": tags: - save when: - os: mac - /Library/Application Support/doublefine/brutallegend/screen.dat: + "/Library/Application Support/doublefine/brutallegend/screen.dat": tags: - config when: - os: mac - /Doublefine/BrutalLegend/*.sav: + "/Doublefine/BrutalLegend/*.sav": tags: - save when: - os: windows - /Doublefine/BrutalLegend/screen.dat: + "/Doublefine/BrutalLegend/screen.dat": tags: - config when: - os: windows - /doublefine/brutallegend/*.sav: + "/doublefine/brutallegend/*.sav": tags: - save when: - os: linux - /doublefine/brutallegend/screen.dat: + "/doublefine/brutallegend/screen.dat": tags: - config when: @@ -79003,23 +79244,23 @@ Brütal Legend: installDir: BrutalLegend: {} launch: - /BrutalLegend.exe: + "/BrutalLegend.exe": - when: - os: windows store: steam - /Buddha.app: + "/Buddha.app": - when: - os: mac store: steam - /Buddha.bin.x86: + "/Buddha.bin.x86": - when: - os: linux store: steam steam: id: 225260 -'BuKnight: The Order of the Golden Crest': +"BuKnight: The Order of the Golden Crest": files: - /config.ini: + "/config.ini": tags: - config when: @@ -79033,7 +79274,7 @@ Bubble Blowout: installDir: Bubble Blowout: {} launch: - /BubbleBlowout.exe: + "/BubbleBlowout.exe": - when: - os: windows store: steam @@ -79041,14 +79282,14 @@ Bubble Blowout: id: 542720 Bubble Bobble: files: - /bubbob.cfg: + "/bubbob.cfg": tags: - config when: - os: dos -'Bubble Bobble 4 Friends: The Baron''s Workshop': +"Bubble Bobble 4 Friends: The Baron's Workshop": files: - /AppData/LocalLow/co_jp_taito/BUBBLE_BOBBLE_4_FRIENDS/BBSave/BBSaveData: + "/AppData/LocalLow/co_jp_taito/BUBBLE_BOBBLE_4_FRIENDS/BBSave/BBSaveData": tags: - config - save @@ -79057,7 +79298,7 @@ Bubble Bobble: installDir: BUBBLE BOBBLE 4 FRIENDS: {} launch: - /BUBBLE_BOBBLE_4_FRIENDS.exe: + "/BUBBLE_BOBBLE_4_FRIENDS.exe": - when: - os: windows store: steam @@ -79067,15 +79308,15 @@ Bubble Burst: installDir: Bubble Burst: {} launch: - /BubbleBurst.app/Contents/MacOS/BubbleBurst: + "/BubbleBurst.app/Contents/MacOS/BubbleBurst": - when: - os: mac store: steam - /BubbleBurst.exe: + "/BubbleBurst.exe": - when: - os: windows store: steam - /BubbleBurst.x86_64: + "/BubbleBurst.x86_64": - when: - os: linux store: steam @@ -79085,7 +79326,7 @@ Bubble Ghost: installDir: Bubble GhostBubble +: {} launch: - /dosbox.exe: + "/dosbox.exe": - when: - os: windows store: steam @@ -79095,7 +79336,7 @@ Bubble Jungle Super Chameleon Platformer World: installDir: Bubble Jungle: {} launch: - /bubblejungle.exe: + "/bubblejungle.exe": - when: - os: windows store: steam @@ -79110,7 +79351,7 @@ Bubble Rush: installDir: Bubble Rush: {} launch: - /BubbleRushWinx86.exe: + "/BubbleRushWinx86.exe": - when: - os: windows store: steam @@ -79120,29 +79361,29 @@ Bubble Strike: installDir: Bubble Strike: {} launch: - /BubbleStrike.exe: + "/BubbleStrike.exe": - when: - store: steam steam: id: 823180 -'Bubble Struggle: Adventures': +"Bubble Struggle: Adventures": installDir: Bubble Struggle Adventures: {} launch: - /bs_adventures.app: + "/bs_adventures.app": - when: - os: mac store: steam - /bs_adventures.exe: + "/bs_adventures.exe": - when: - os: windows store: steam - /bs_adventures.x86: + "/bs_adventures.x86": - when: - bit: 32 os: linux store: steam - /bs_adventures.x86_64: + "/bs_adventures.x86_64": - when: - bit: 64 os: linux @@ -79153,7 +79394,7 @@ BubbleGum-Push: installDir: BubbleGum-Push: {} launch: - /BubbleGumPush.exe: + "/BubbleGumPush.exe": - when: - bit: 64 store: steam @@ -79163,7 +79404,7 @@ Bubbles the Cat: installDir: Bubbles the Cat: {} launch: - /BubblesTheCat.exe: + "/BubblesTheCat.exe": - when: - os: windows store: steam @@ -79173,7 +79414,7 @@ Bubblien Pop: installDir: Bubblien Pop: {} launch: - /Bpop.exe: + "/Bpop.exe": - when: - os: windows store: steam @@ -79183,17 +79424,17 @@ Bubli: installDir: Bubli: {} launch: - /Bubli.exe: + "/Bubli.exe": - when: - os: windows store: steam steam: id: 815100 -'Bubonic: Outbreak': +"Bubonic: Outbreak": installDir: BubonicOutbreak: {} launch: - /BubonicBuild.exe: + "/BubonicBuild.exe": - when: - os: windows store: steam @@ -79201,12 +79442,12 @@ Bubli: id: 322430 Bubsy Two-Fur: files: - /*.sav: + "/*.sav": tags: - save when: - os: windows - /game.cfg: + "/game.cfg": tags: - config when: @@ -79214,29 +79455,29 @@ Bubsy Two-Fur: installDir: Bubsy Two-Fur: {} launch: - /Bubsy Two-Fur.exe: + "/Bubsy Two-Fur.exe": - when: - os: windows store: steam steam: id: 426630 -'Bubsy: Paws on Fire!': +"Bubsy: Paws on Fire!": installDir: Bubsy Paws on Fire!: {} launch: - /Bubsy Paws On Fire!.exe: + "/Bubsy Paws On Fire!.exe": - when: - os: windows store: steam - /BubsyPOF.app: + "/BubsyPOF.app": - when: - os: mac store: steam steam: id: 926180 -'Bubsy: The Woolies Strike Back': +"Bubsy: The Woolies Strike Back": files: - /Bubsy: + "/Bubsy": tags: - config - save @@ -79247,11 +79488,11 @@ Bubsy Two-Fur: installDir: Bubsy The Woolies Strike Back: {} launch: - /launcher_steam/BubsyLauncher.exe: + "/launcher_steam/BubsyLauncher.exe": - when: - os: windows store: steam - workingDir: /launcher_steam + workingDir: "/launcher_steam" steam: id: 627910 Buccaneers!: @@ -79260,21 +79501,21 @@ Buccaneers!: installDir: Buccaneers: {} launch: - /Buccaneers.exe: + "/Buccaneers.exe": - when: - os: windows store: steam steam: id: 1148560 -'Buccaneers, Bounty & Boom!': +"Buccaneers, Bounty & Boom!": installDir: BBB: {} launch: - /BBB.app: + "/BBB.app": - when: - os: mac store: steam - /bbb.exe: + "/bbb.exe": - when: - os: windows store: steam @@ -79284,32 +79525,32 @@ Buck: installDir: BUCK: {} launch: - /BUCK.exe: + "/BUCK.exe": - when: - os: windows store: steam steam: id: 443890 -'Buck Rogers: Countdown to Doomsday': +"Buck Rogers: Countdown to Doomsday": files: - /BUCK.CFG: + "/BUCK.CFG": tags: - config when: - os: dos - /SAVE: + "/SAVE": tags: - save when: - os: dos -'Buck Rogers: Matrix Cubed': +"Buck Rogers: Matrix Cubed": files: - /MATRIX.CFG: + "/MATRIX.CFG": tags: - config when: - os: dos - /SAVE: + "/SAVE": tags: - save when: @@ -79318,7 +79559,7 @@ Buck Zombies: installDir: Buck Zombies: {} launch: - /Simple.exe: + "/Simple.exe": - when: - bit: 64 os: windows @@ -79330,12 +79571,12 @@ Bucket Balls: id: 753410 Bucket Detective: files: - /AppData/LocalLow/the whale husband/Bucket Detective/Unity/local.*/Analytics: + "/AppData/LocalLow/the whale husband/Bucket Detective/Unity/local.*/Analytics": tags: - config when: - os: windows - /AppData/LocalLow/the whale husband/Bucket Detective/s.dat: + "/AppData/LocalLow/the whale husband/Bucket Detective/s.dat": tags: - save when: @@ -79343,22 +79584,22 @@ Bucket Detective: installDir: Bucket Detective: {} launch: - /BucketDetective_OSX32bit.app: + "/BucketDetective_OSX32bit.app": - when: - bit: 32 os: mac store: steam - /BucketDetective_OSX64bit.app: + "/BucketDetective_OSX64bit.app": - when: - bit: 64 os: mac store: steam - /BucketDetective_Win32bit.exe: + "/BucketDetective_Win32bit.exe": - when: - bit: 32 os: windows store: steam - /BucketDetective_Win64bit.exe: + "/BucketDetective_Win64bit.exe": - when: - bit: 64 os: windows @@ -79371,7 +79612,7 @@ Bucket Knight: installDir: Bucket Knight: {} launch: - /BucketKnight.exe: + "/BucketKnight.exe": - when: - os: windows store: steam @@ -79381,30 +79622,30 @@ Bud Blitz: installDir: Bud Blitz: {} launch: - /Bud Blitz.app: + "/Bud Blitz.app": - when: - os: mac store: steam - /Bud Blitz.exe: + "/Bud Blitz.exe": - when: - bit: 64 os: windows store: steam steam: id: 1029930 -'Bud Spencer & Terence Hill: Slaps and Beans': +"Bud Spencer & Terence Hill: Slaps and Beans": installDir: Bud Spencer & Terence Hill - Slaps And Beans: {} launch: - /SnB.x86: + "/SnB.x86": - when: - os: linux store: steam - /snb.app: + "/snb.app": - when: - os: mac store: steam - /snb.exe: + "/snb.exe": - when: - os: windows store: steam @@ -79417,14 +79658,14 @@ Bud Blitz: - save steam: id: 564050 -'Bud Spencer & Terence Hill: Slaps and Beans 2': +"Bud Spencer & Terence Hill: Slaps and Beans 2": steam: id: 2142330 Buddinpals - Take One Home With You !!: installDir: Buddinpals - Take One Home With You !!: {} launch: - /Buddinpals.exe: + "/Buddinpals.exe": - when: - os: windows store: steam @@ -79434,7 +79675,7 @@ Buddy: installDir: BUDDY: {} launch: - /BUDDY.exe: + "/BUDDY.exe": - when: - os: windows store: steam @@ -79444,12 +79685,15 @@ Buddy Bash: installDir: Buddy Bash: {} launch: - /BuddyBash.app/Contents/MacOS/buddybash: + "/BuddyBash.app/Contents/MacOS/buddybash": - when: - os: mac store: steam - /buddybash.exe: + "/buddybash.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam @@ -79457,7 +79701,7 @@ Buddy Bash: id: 1223550 Buddy Simulator 1984: files: - /Buddy Simulator 1984: + "/Buddy Simulator 1984": tags: - save when: @@ -79471,7 +79715,7 @@ Buddy Simulator 1984: installDir: Buddy Simulator 1984: {} launch: - /Buddy Simulator 1984.exe: + "/Buddy Simulator 1984.exe": - when: - os: windows store: steam @@ -79485,11 +79729,11 @@ Buddy and Lucky Solitaire: installDir: Buddy and Lucky Solitaire: {} launch: - /Buddy and Lucky Solitaire.app/Contents/MacOS/Buddy and Lucky Solitaire: + "/Buddy and Lucky Solitaire.app/Contents/MacOS/Buddy and Lucky Solitaire": - when: - os: mac store: steam - /Buddy and Lucky Solitaire.exe: + "/Buddy and Lucky Solitaire.exe": - when: - bit: 64 os: windows @@ -79498,22 +79742,22 @@ Buddy and Lucky Solitaire: id: 1596750 Budget Cuts: files: - /AppData/LocalLow/Neat Corporation/Budget Cuts: + "/AppData/LocalLow/Neat Corporation/Budget Cuts": tags: - save when: - os: windows - /AppData/LocalLow/Neat Corporation/Budget Cuts/config_machine.cfg: + "/AppData/LocalLow/Neat Corporation/Budget Cuts/config_machine.cfg": tags: - config when: - os: windows - /Budget Cuts Save Data: + "/Budget Cuts Save Data": tags: - save when: - os: windows - /Budget Cuts Save Data/config_machine.cfg: + "/Budget Cuts Save Data/config_machine.cfg": tags: - config when: @@ -79526,16 +79770,16 @@ Budget Cuts: - config steam: id: 400940 -'Budget Cuts 2: Mission Insolvency': +"Budget Cuts 2: Mission Insolvency": installDir: Budget Cuts 2 Mission Insolvency: {} steam: id: 1092430 -'Budo War Girl: Maid of Desire': +"Budo War Girl: Maid of Desire": installDir: maid of desire: {} launch: - /ywnp.exe: + "/ywnp.exe": - when: - os: windows store: steam @@ -79545,11 +79789,11 @@ Buff Knight Advanced: installDir: Buff Knight Advanced: {} launch: - /BKA.exe: + "/BKA.exe": - when: - os: windows store: steam - /Buff Knight Advanced.app: + "/Buff Knight Advanced.app": - when: - store: steam steam: @@ -79558,7 +79802,7 @@ Buffy Stole Your Sandwich: installDir: Buffy Stole Your Sandwich: {} launch: - /BuffyFullWindows/Buffy Stole your Sandwich Vr 1.0.exe: + "/BuffyFullWindows/Buffy Stole your Sandwich Vr 1.0.exe": - when: - os: windows store: steam @@ -79568,7 +79812,7 @@ Bug Academy: installDir: Bug Academy: {} launch: - /Bug Academy.exe: + "/Bug Academy.exe": - when: - os: windows store: steam @@ -79576,7 +79820,7 @@ Bug Academy: id: 881040 Bug Adventure: files: - /KA.CNF: + "/KA.CNF": tags: - config when: @@ -79585,7 +79829,7 @@ Bug Attack!: installDir: Bug Attack!: {} launch: - /nw.exe: + "/nw.exe": - when: - bit: 64 os: windows @@ -79596,28 +79840,28 @@ Bug Battle: installDir: bug_battle_game: {} launch: - /Bug Battle.exe: + "/Bug Battle.exe": - when: - os: windows store: steam - /bug_battle: + "/bug_battle": - when: - os: linux store: steam - /bug_battle.app: + "/bug_battle.app": - when: - os: mac store: steam steam: id: 752000 -'Bug Fables: The Everlasting Sapling': +"Bug Fables: The Everlasting Sapling": files: - /Bug Fables The Everlasting Sapling: + "/Bug Fables The Everlasting Sapling": tags: - save when: - os: windows - /config.dat: + "/config.dat": tags: - config when: @@ -79627,7 +79871,7 @@ Bug Battle: installDir: Bug Fables: {} launch: - /Bug Fables.exe: + "/Bug Fables.exe": - when: - os: windows store: steam @@ -79646,15 +79890,15 @@ Bug Killers: installDir: Bug Killers: {} launch: - /Bug Killers.app: + "/Bug Killers.app": - when: - os: mac store: steam - /Bug Killers.exe: + "/Bug Killers.exe": - when: - os: windows store: steam - /Bug Killers.x86: + "/Bug Killers.x86": - when: - os: linux store: steam @@ -79664,7 +79908,7 @@ Bug N Out: installDir: Bug N Out: {} launch: - /BugNOut_Menu.exe: + "/BugNOut_Menu.exe": - when: - os: windows store: steam @@ -79674,7 +79918,7 @@ Bug Splatt: installDir: Bug Splatt: {} launch: - /BugSplatt.exe: + "/BugSplatt.exe": - when: - os: windows store: steam @@ -79682,7 +79926,7 @@ Bug Splatt: id: 848810 Bug Too!: files: - /SAVEGAME: + "/SAVEGAME": tags: - save when: @@ -79693,24 +79937,24 @@ Bug Too!: - config Bug!: files: - /*.sav: + "/*.sav": tags: - save when: - os: windows - /BUG!.CFG: + "/BUG!.CFG": tags: - config when: - os: windows -'BugRiders: The Race of Kings': +"BugRiders: The Race of Kings": gog: id: 1753573785 Buggy (2015): installDir: Buggy: {} launch: - /Buggy.exe: + "/Buggy.exe": - when: - os: windows store: steam @@ -79721,23 +79965,23 @@ Buggy Bump: Buggy Bump: {} steam: id: 1152800 -Bugs 'N Boo Hags: +"Bugs 'N Boo Hags": installDir: - Bugs 'N Boo Hags: {} + "Bugs 'N Boo Hags": {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: id: 1066620 -'Bugs Bunny: Lost in Time': +"Bugs Bunny: Lost in Time": files: - /bin: + "/bin": tags: - save when: - os: windows - /bin/config.pc: + "/bin/config.pc": tags: - config when: @@ -79746,7 +79990,7 @@ Bugs Must Die: installDir: Bugs Must Die: {} launch: - /bmd.exe: + "/bmd.exe": - when: - os: windows store: steam @@ -79756,7 +80000,7 @@ Bugs!: installDir: Bugs!: {} launch: - /Bugs!.exe: + "/Bugs!.exe": - when: - os: windows store: steam @@ -79764,17 +80008,17 @@ Bugs!: id: 1094130 Bugsnax: files: - /Saved Games/Bugsnax: + "/Saved Games/Bugsnax": tags: - save when: - os: windows - /Saved Games/Bugsnax/Settings: + "/Saved Games/Bugsnax/Settings": tags: - config when: - os: windows - /Packages/31281YoungHorses.Bugsnax_x6qn5461etveg/SystemAppData/wgs: + "/Packages/31281YoungHorses.Bugsnax_x6qn5461etveg/SystemAppData/wgs": tags: - save when: @@ -79783,11 +80027,11 @@ Bugsnax: installDir: Bugsnax: {} launch: - /Bugsnax.app: + "/Bugsnax.app": - when: - os: mac store: steam - /Bugsnax.exe: + "/Bugsnax.exe": - when: - os: windows store: steam @@ -79797,40 +80041,40 @@ Bugspeed Collider: installDir: Bugspeed Collider: {} launch: - /BugspeedCollider.exe: + "/BugspeedCollider.exe": - when: - os: windows store: steam - /BugspeedColliderMac.app/Contents/MacOS/BugspeedColliderMac: + "/BugspeedColliderMac.app/Contents/MacOS/BugspeedColliderMac": - when: - os: mac store: steam steam: id: 415900 -'Build ''m up, Shoot ''m down!': +"Build 'm up, Shoot 'm down!": installDir: - 'Build ''m up, Shoot ''m down!': {} + "Build 'm up, Shoot 'm down!": {} launch: - '/Build ''m up, Shoot ''m down!.exe': + "/Build 'm up, Shoot 'm down!.exe": - when: - os: windows store: steam steam: id: 1174570 -Build 'n Bump: +"Build 'n Bump": installDir: Build-N-Bump: {} launch: - /build-n-bump.app: + "/build-n-bump.app": - when: - os: mac store: steam - /build-n-bump.exe: - - arguments: '--in-process-gpu' + "/build-n-bump.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam - /launch.sh: + "/launch.sh": - when: - bit: 64 os: linux @@ -79841,11 +80085,11 @@ Build Bridges: installDir: Build Bridges: {} launch: - /Build Bridges.app/Contents/MacOS/Build Bridges: + "/Build Bridges.app/Contents/MacOS/Build Bridges": - when: - os: mac store: steam - /Build Bridges.exe: + "/Build Bridges.exe": - when: - os: windows store: steam @@ -79855,7 +80099,7 @@ Build It: installDir: Build It: {} launch: - /Build It.exe: + "/Build It.exe": - when: - bit: 64 os: windows @@ -79866,7 +80110,7 @@ Build Wars: installDir: Build Wars: {} launch: - /BuildWars.exe: + "/BuildWars.exe": - when: - os: windows store: steam @@ -79882,14 +80126,14 @@ Build buildings: installDir: Build buildings: {} launch: - /BuildBuildings.exe: + "/BuildBuildings.exe": - when: - store: steam steam: id: 878660 Build-A-Lot: files: - /HipSoft/Buildalot: + "/HipSoft/Buildalot": tags: - config when: @@ -79897,34 +80141,34 @@ Build-A-Lot: installDir: Build-A-Lot 1: {} launch: - /Buildalot.exe: + "/Buildalot.exe": - when: - store: steam steam: id: 38080 -'Build-A-Lot 2: Town of the Year': +"Build-A-Lot 2: Town of the Year": installDir: Build-A-Lot 2: {} launch: - /Buildalot2.exe: + "/Buildalot2.exe": - when: - store: steam steam: id: 38090 -'Build-A-Lot 3: Passport to Europe': +"Build-A-Lot 3: Passport to Europe": installDir: Build-A-Lot 3: {} launch: - /Buildalot3.exe: + "/Buildalot3.exe": - when: - store: steam steam: id: 38100 -'Build-A-Lot 4: Power Source': +"Build-A-Lot 4: Power Source": installDir: Build-A-Lot 4: {} launch: - /Buildalot4.exe: + "/Buildalot4.exe": - when: - store: steam steam: @@ -79933,18 +80177,18 @@ BuildMoreCubes: installDir: BuildMoreCubes: {} launch: - /system/BuildMoreCubes.exe: + "/system/BuildMoreCubes.exe": - when: - os: windows store: steam - workingDir: /system + workingDir: "/system" steam: id: 557190 Buildanauts: installDir: Buildanauts: {} launch: - /Buildanauts.exe: + "/Buildanauts.exe": - when: - os: windows store: steam @@ -79952,7 +80196,7 @@ Buildanauts: id: 394490 Builder Simulator: files: - /AppData/LocalLow/Live Motion Games/Builder Simulator/Save: + "/AppData/LocalLow/Live Motion Games/Builder Simulator/Save": tags: - save when: @@ -79960,7 +80204,7 @@ Builder Simulator: installDir: Builder Simulator: {} launch: - /Builder Simulator.exe: + "/Builder Simulator.exe": - when: - os: windows store: steam @@ -79980,40 +80224,40 @@ Building Block Heroes: installDir: Building Block Heroes: {} launch: - /Building Block Heroes.app/Contents/MacOS/Building Block Heroes: + "/Building Block Heroes.app/Contents/MacOS/Building Block Heroes": - when: - os: mac store: steam - /BuildingBlockHeroes.exe: + "/BuildingBlockHeroes.exe": - when: - os: windows store: steam - /BuildingBlockHeroesLinux: + "/BuildingBlockHeroesLinux": - when: - bit: 64 os: linux store: steam - /BuildingBlockHeroesLinux32: + "/BuildingBlockHeroesLinux32": - when: - bit: 32 os: linux store: steam steam: id: 695560 -'Building Block Heroes: Rush Edition': +"Building Block Heroes: Rush Edition": installDir: Building Block Heroes Rush: {} launch: - /BBHRush: + "/BBHRush": - when: - bit: 64 os: linux store: steam - /BBHRush.exe: + "/BBHRush.exe": - when: - os: windows store: steam - /Building Block Heroes Rush.app/Contents/MacOS/Building Block Heroes Rush: + "/Building Block Heroes Rush.app/Contents/MacOS/Building Block Heroes Rush": - when: - os: mac store: steam @@ -80023,7 +80267,7 @@ Building Blocks: installDir: Building Blocks: {} launch: - /Building Blocks.exe: + "/Building Blocks.exe": - when: - os: windows store: steam @@ -80033,7 +80277,7 @@ Building Killer: installDir: Buildingkiller: {} launch: - /BuildingKiller.exe: + "/BuildingKiller.exe": - when: - os: windows store: steam @@ -80043,7 +80287,7 @@ Building the Great Wall of China 2: installDir: Building the Great Wall of China 2: {} launch: - /Building the Great Wall of China 2.exe: + "/Building the Great Wall of China 2.exe": - when: - os: windows store: steam @@ -80053,7 +80297,7 @@ Buildings Have Feelings Too!: installDir: Buildings Have Feelings Too!: {} launch: - /Buildings Have Feelings Too!.exe: + "/Buildings Have Feelings Too!.exe": - when: - os: windows store: steam @@ -80063,11 +80307,11 @@ Buissons: installDir: Buissons: {} launch: - /Buissons.app/Contents/MacOS/nwjs: + "/Buissons.app/Contents/MacOS/nwjs": - when: - os: mac store: steam - /Buissons.exe: + "/Buissons.exe": - when: - bit: 64 os: windows @@ -80076,7 +80320,7 @@ Buissons: id: 1151930 Bulb Boy: files: - /AppData/LocalLow/Bulbware/Bulb Boy/BBSave.sgf: + "/AppData/LocalLow/Bulbware/Bulb Boy/BBSave.sgf": tags: - save when: @@ -80086,20 +80330,20 @@ Bulb Boy: installDir: Bulb Boy: {} launch: - /BulbBoy.app: + "/BulbBoy.app": - when: - os: mac store: steam - /BulbBoy.exe: + "/BulbBoy.exe": - when: - os: windows store: steam - /BulbBoy.x86: + "/BulbBoy.x86": - when: - bit: 32 os: linux store: steam - /BulbBoy.x86_64: + "/BulbBoy.x86_64": - when: - bit: 64 os: linux @@ -80114,15 +80358,15 @@ Bulby - Diamond Course: installDir: Bulby Diamond Course: {} launch: - /bulbydiamondcourse.app: + "/bulbydiamondcourse.app": - when: - os: mac store: steam - /bulbydiamondcourse.exe: + "/bulbydiamondcourse.exe": - when: - os: windows store: steam - /bulbydiamondcourse.x86: + "/bulbydiamondcourse.x86": - when: - os: linux store: steam @@ -80135,7 +80379,7 @@ Bullet Beat: installDir: Bullet Beat: {} launch: - /Bullet Beat.exe: + "/Bullet Beat.exe": - when: - os: windows store: steam @@ -80145,7 +80389,7 @@ Bullet Candy: installDir: Bullet Candy: {} launch: - /Bullet Candy.exe: + "/Bullet Candy.exe": - when: - store: steam steam: @@ -80160,7 +80404,7 @@ Bullet Force: id: 450240 Bullet Girls Phantasia: files: - /My Games/BulletGirlsPhantasia: + "/My Games/BulletGirlsPhantasia": tags: - config - save @@ -80169,7 +80413,7 @@ Bullet Girls Phantasia: installDir: OP2: {} launch: - /game.exe: + "/game.exe": - when: - bit: 64 os: windows @@ -80183,7 +80427,7 @@ Bullet Harmony: id: 1058480 Bullet Heaven 2: files: - /BulletHeaven2data.meow: + "/BulletHeaven2data.meow": tags: - save when: @@ -80191,7 +80435,7 @@ Bullet Heaven 2: installDir: Bullet Heaven 2: {} launch: - /Bullet Heaven 2.exe: + "/Bullet Heaven 2.exe": - when: - store: steam steam: @@ -80200,7 +80444,7 @@ Bullet Hell Advanced: installDir: Bullet Hell ADVANCED: {} launch: - /BulletHellAdvanced.exe: + "/BulletHellAdvanced.exe": - when: - bit: 64 os: windows @@ -80211,7 +80455,7 @@ Bullet Life 2010: installDir: Bullet Life 2010: {} launch: - '/Bullet Life 2010 [Eager Passion LLC].exe': + "/Bullet Life 2010 [Eager Passion LLC].exe": - when: - os: windows store: steam @@ -80221,15 +80465,15 @@ Bullet Party: installDir: Bullet Party: {} launch: - /BulletParty.app: + "/BulletParty.app": - when: - os: mac store: steam - /BulletParty.exe: + "/BulletParty.exe": - when: - os: windows store: steam - /Default Linux desktop 32-bit.x86: + "/Default Linux desktop 32-bit.x86": - when: - os: linux store: steam @@ -80249,7 +80493,7 @@ Bullet Soul: installDir: BULLET SOUL: {} launch: - /Launcher.exe: + "/Launcher.exe": - when: - os: windows store: steam @@ -80259,7 +80503,7 @@ Bullet Soul Infinite Burst: installDir: BULLET SOUL Infinite Burst: {} launch: - /Launcher.exe: + "/Launcher.exe": - when: - os: windows store: steam @@ -80272,17 +80516,17 @@ Bullet VR: id: 649510 Bullet Witch: files: - /BulletWitchLangauge: + "/BulletWitchLangauge": tags: - config when: - os: windows - /SystemSetting.dat: + "/SystemSetting.dat": tags: - config when: - os: windows - /savedata: + "/savedata": tags: - save when: @@ -80290,7 +80534,7 @@ Bullet Witch: installDir: Bullet-Witch: {} launch: - /witch.exe: + "/witch.exe": - when: - bit: 32 os: windows @@ -80304,7 +80548,7 @@ Bulletline: installDir: BULLETLINE: {} launch: - /BULLETLINE.exe: + "/BULLETLINE.exe": - when: - os: windows store: steam @@ -80317,7 +80561,7 @@ Bulletorium: installDir: Bulletorium: {} launch: - /Bulletorium.exe: + "/Bulletorium.exe": - when: - os: windows store: steam @@ -80332,7 +80576,7 @@ Bullets in the Space: installDir: Bullets in the Space: {} launch: - /nw.exe: + "/nw.exe": - when: - bit: 64 os: windows @@ -80341,17 +80585,17 @@ Bullets in the Space: id: 905560 Bulletstorm: files: - /Bulletstorm/StormGame/Config: + "/Bulletstorm/StormGame/Config": tags: - config when: - os: windows - /My Games/BulletStorm/StormGame/SaveData: + "/My Games/BulletStorm/StormGame/SaveData": tags: - save when: - os: windows - /My Games/Bulletstorm/StormGame/Config: + "/My Games/Bulletstorm/StormGame/Config": tags: - config when: @@ -80359,7 +80603,7 @@ Bulletstorm: installDir: Bulletstorm: {} launch: - /Binaries/Win32/ShippingPC-StormGame.exe: + "/Binaries/Win32/ShippingPC-StormGame.exe": - when: - store: steam steam: @@ -80367,25 +80611,25 @@ Bulletstorm: Bulletstorm VR: steam: id: 2451320 -'Bulletstorm: Full Clip Edition': +"Bulletstorm: Full Clip Edition": files: - /userdata//501590/remote: + "/userdata//501590/remote": tags: - save when: - os: windows store: steam - /My Games/Bulletstorm Full Clip Edition/StormGame/Config: + "/My Games/Bulletstorm Full Clip Edition/StormGame/Config": tags: - config when: - os: windows - /My Games/Bulletstorm Lite/StormGame/Config: + "/My Games/Bulletstorm Lite/StormGame/Config": tags: - config when: - os: windows - /My Games/Bulletstorm Lite/StormGame/SaveData: + "/My Games/Bulletstorm Lite/StormGame/SaveData": tags: - save when: @@ -80393,7 +80637,7 @@ Bulletstorm VR: installDir: Bulletstorm Full Clip Edition: {} launch: - /Binaries/Win64/StormGame-Win64-Shipping.exe: + "/Binaries/Win64/StormGame-Win64-Shipping.exe": - when: - bit: 64 os: windows @@ -80404,7 +80648,7 @@ Bulls town: installDir: Bulls town_Windows: {} launch: - /BullTown.exe: + "/BullTown.exe": - when: - os: windows store: steam @@ -80414,11 +80658,11 @@ Bullseye: installDir: Bullseye: {} launch: - /Bullseye.app: + "/Bullseye.app": - when: - os: mac store: steam - /Bullseye.exe: + "/Bullseye.exe": - when: - os: windows store: steam @@ -80428,20 +80672,20 @@ Bullshot: installDir: Bullshot: {} launch: - /bullshot.app: + "/bullshot.app": - when: - os: mac store: steam - /bullshot.exe: + "/bullshot.exe": - when: - os: windows store: steam - /bullshot.x86: + "/bullshot.x86": - when: - bit: 32 os: linux store: steam - /bullshot.x86_64: + "/bullshot.x86_64": - when: - bit: 64 os: linux @@ -80453,9 +80697,9 @@ Bully Store: BULLY STORE: {} steam: id: 860870 -'Bully: Scholarship Edition': +"Bully: Scholarship Edition": files: - /Bully Scholarship Edition: + "/Bully Scholarship Edition": tags: - save when: @@ -80463,7 +80707,7 @@ Bully Store: installDir: Bully Scholarship Edition: {} launch: - /Bully.exe: + "/Bully.exe": - when: - store: steam registry: @@ -80476,7 +80720,7 @@ Bullynoid: installDir: Bullynoid: {} launch: - /Bullynoid.exe: + "/Bullynoid.exe": - when: - os: windows store: steam @@ -80486,17 +80730,17 @@ Bullyparade - DER Spiel: installDir: Bullyparade - DER Spiel: {} launch: - /Bullyparade.app: + "/Bullyparade.app": - when: - os: mac store: steam - /Bullyparade.exe: + "/Bullyparade.exe": - when: - os: windows store: steam steam: id: 656780 -'Bulwark: Falconeer Chronicles': +"Bulwark: Falconeer Chronicles": id: steamExtra: - 2278440 @@ -80504,12 +80748,12 @@ Bullyparade - DER Spiel: id: 290100 Bum Simulator: files: - /BumSim/Saved/Config: + "/BumSim/Saved/Config": tags: - config when: - os: windows - /BumSim/Saved/SaveGames: + "/BumSim/Saved/SaveGames": tags: - save when: @@ -80517,7 +80761,7 @@ Bum Simulator: installDir: Bum Simulator: {} launch: - /BumSim.exe: + "/BumSim.exe": - when: - bit: 64 os: windows @@ -80528,11 +80772,11 @@ Bumbledore: installDir: Bumbledore: {} launch: - /bumbledore.app: + "/bumbledore.app": - when: - os: mac store: steam - /bumbledore.exe: + "/bumbledore.exe": - when: - os: windows store: steam @@ -80542,7 +80786,7 @@ Bump Bump Bump: installDir: Bump Bump Bump: {} launch: - /bbb.exe: + "/bbb.exe": - when: - os: windows store: steam @@ -80552,17 +80796,20 @@ Bump+Smack: installDir: Bump+Smack: {} launch: - /bump_smack.exe: + "/bump_smack.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam - /bump_smack.x86: + "/bump_smack.x86": - when: - bit: 32 os: linux store: steam - /bump_smack.x86_64: + "/bump_smack.x86_64": - when: - bit: 64 os: linux @@ -80573,7 +80820,7 @@ Bumper: installDir: Bumper: {} launch: - /game.exe: + "/game.exe": - when: - bit: 64 os: windows @@ -80582,7 +80829,7 @@ Bumper: id: 509850 Bunch of Heroes: files: - /BoH/config.xml: + "/BoH/config.xml": tags: - config when: @@ -80590,10 +80837,10 @@ Bunch of Heroes: installDir: Bunch of Heroes: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam - /keyconfig.exe: + "/keyconfig.exe": - when: - store: steam steam: @@ -80602,7 +80849,7 @@ Bundle Kitt: installDir: Bundle Kitt: {} launch: - /BundleKitt.exe: + "/BundleKitt.exe": - when: - os: windows store: steam @@ -80610,12 +80857,12 @@ Bundle Kitt: id: 1183320 Bunka no Kenkyu - Revival of Queen Leyak -: files: - /renpy/config.py: + "/renpy/config.py": tags: - config when: - os: windows - /RenPy/BNK_SAVE_DIR: + "/RenPy/BNK_SAVE_DIR": tags: - save when: @@ -80623,11 +80870,11 @@ Bunka no Kenkyu - Revival of Queen Leyak -: installDir: Bunka no Kenkyu: {} launch: - /Revival of Queen Leyak.app: + "/Revival of Queen Leyak.app": - when: - os: mac store: steam - /Revival of Queen Leyak.exe: + "/Revival of Queen Leyak.exe": - when: - os: windows store: steam @@ -80637,7 +80884,7 @@ Bunker - Nightmare Begins: installDir: Bunker - Nightmare Begins: {} launch: - /Bunker - Nightmare Begins.exe: + "/Bunker - Nightmare Begins.exe": - when: - os: windows store: steam @@ -80647,7 +80894,7 @@ Bunker - The Underground Game: installDir: Bunker: {} launch: - /Bunker.exe: + "/Bunker.exe": - when: - store: steam steam: @@ -80656,7 +80903,7 @@ Bunker 56: installDir: Bunker 56: {} launch: - /Bunker 56.exe: + "/Bunker 56.exe": - when: - os: windows store: steam @@ -80666,7 +80913,7 @@ Bunker 58: installDir: Bunker 58: {} launch: - /Bunker 58.exe: + "/Bunker 58.exe": - when: - os: windows store: steam @@ -80676,7 +80923,7 @@ Bunker Constructor: installDir: Bunker Constructor: {} launch: - /BunkerConstructor.exe: + "/BunkerConstructor.exe": - when: - os: windows store: steam @@ -80686,11 +80933,11 @@ Bunker Punks: installDir: Bunker Punks: {} launch: - /BunkerPunks.app: + "/BunkerPunks.app": - when: - os: mac store: steam - /BunkerPunks.exe: + "/BunkerPunks.exe": - when: - bit: 32 os: windows @@ -80701,7 +80948,7 @@ Bunker Rush: installDir: Bunker Rush Folder: {} launch: - /BunkerRush.exe: + "/BunkerRush.exe": - when: - os: windows store: steam @@ -80714,7 +80961,7 @@ Bunny - The Horror Game: installDir: Bunny - The Horror Game: {} launch: - /Bunny.exe: + "/Bunny.exe": - when: - store: steam steam: @@ -80723,7 +80970,7 @@ Bunny Adventure: installDir: Bunny adventure: {} launch: - /Bunny Adventure.exe: + "/Bunny Adventure.exe": - when: - os: windows store: steam @@ -80733,17 +80980,17 @@ Bunny Bash: installDir: Bunny Bash: {} launch: - /BunnyBash: + "/BunnyBash": - when: - bit: 64 os: linux store: steam - /BunnyBash.app: + "/BunnyBash.app": - when: - bit: 64 os: mac store: steam - /BunnyBash.exe: + "/BunnyBash.exe": - when: - bit: 64 os: windows @@ -80754,7 +81001,7 @@ Bunny Battle Arena: installDir: Bunny Battle Arena: {} launch: - /BunnyBattleArena.exe: + "/BunnyBattleArena.exe": - when: - os: windows store: steam @@ -80767,15 +81014,15 @@ Bunny Bounce: installDir: Bunny Bounce: {} launch: - /BunnyBounce.app: + "/BunnyBounce.app": - when: - os: mac store: steam - /BunnyBounce.exe: + "/BunnyBounce.exe": - when: - os: windows store: steam - /BunnyBounce.sh: + "/BunnyBounce.sh": - when: - os: linux store: steam @@ -80785,11 +81032,11 @@ Bunny Dance: installDir: Bunny Dance: {} launch: - /Bunny Dance.app: + "/Bunny Dance.app": - when: - os: mac store: steam - /Bunny Dance.exe: + "/Bunny Dance.exe": - when: - os: windows store: steam @@ -80805,11 +81052,11 @@ Bunny Hop League: installDir: Bunny Hop League: {} launch: - /bhl.app/Contents/MacOS/BHL: + "/bhl.app/Contents/MacOS/BHL": - when: - os: mac store: steam - /bhl.exe: + "/bhl.exe": - when: - os: windows store: steam @@ -80819,7 +81066,7 @@ Bunny Madness Anarchy: installDir: Bunny Madness Anarchy: {} launch: - /WindowsNoEditor/BunnyMadness_Anarchy.exe: + "/WindowsNoEditor/BunnyMadness_Anarchy.exe": - when: - os: windows store: steam @@ -80829,11 +81076,11 @@ Bunny Mahjo: installDir: Bunny Mahjo: {} launch: - /LinuxNoEditor/BunnyMahjong.sh: + "/LinuxNoEditor/BunnyMahjong.sh": - when: - os: linux store: steam - /WindowsNoEditor/BunnyMahjong.exe: + "/WindowsNoEditor/BunnyMahjong.exe": - when: - bit: 64 os: windows @@ -80844,7 +81091,7 @@ Bunny Mania 2: installDir: Bunny Mania 2: {} launch: - /bunnymania2.exe: + "/bunnymania2.exe": - when: - os: windows store: steam @@ -80852,7 +81099,7 @@ Bunny Mania 2: id: 746770 Bunny Minesweeper: files: - /MMS/Saved/Config/WindowsNoEditor: + "/MMS/Saved/Config/WindowsNoEditor": tags: - config when: @@ -80860,11 +81107,11 @@ Bunny Minesweeper: installDir: Bunny Minesweeper: {} launch: - /LinuxNoEditor/MMS.sh: + "/LinuxNoEditor/MMS.sh": - when: - os: linux store: steam - /WindowsNoEditor/MMS.exe: + "/WindowsNoEditor/MMS.exe": - when: - bit: 64 os: windows @@ -80873,7 +81120,7 @@ Bunny Minesweeper: id: 900790 Bunny Must Die! Chelsea and the 7 Devils: files: - /userdata//250660/remote: + "/userdata//250660/remote": tags: - save when: @@ -80881,7 +81128,7 @@ Bunny Must Die! Chelsea and the 7 Devils: installDir: Bunny Must Die: {} launch: - /bunnymustdie.exe: + "/bunnymustdie.exe": - when: - store: steam steam: @@ -80890,7 +81137,7 @@ Bunny Park: installDir: Bunny Park: {} launch: - /BunnyPark.exe: + "/BunnyPark.exe": - when: - store: steam steam: @@ -80899,11 +81146,11 @@ Bunny Parking: installDir: Bunny Parking: {} launch: - /LinuxNoEditor/BunnyCars.sh: + "/LinuxNoEditor/BunnyCars.sh": - when: - os: linux store: steam - /WindowsNoEditor/BunnyCars.exe: + "/WindowsNoEditor/BunnyCars.exe": - when: - bit: 64 os: windows @@ -80914,11 +81161,11 @@ Bunny Reversi: installDir: Bunny Reversi: {} launch: - /LinuxNoEditor/BunnyReversi.sh: + "/LinuxNoEditor/BunnyReversi.sh": - when: - os: linux store: steam - /WindowsNoEditor/BunnyReversi.exe: + "/WindowsNoEditor/BunnyReversi.exe": - when: - bit: 64 os: windows @@ -80929,11 +81176,11 @@ Bunny Sudoku: installDir: Bunny Sudoku: {} launch: - /LinuxNoEditor/BunnySudoku.sh: + "/LinuxNoEditor/BunnySudoku.sh": - when: - os: linux store: steam - /WindowsNoEditor/BunnySudoku.exe: + "/WindowsNoEditor/BunnySudoku.exe": - when: - bit: 64 os: windows @@ -80944,15 +81191,15 @@ Bunnyrama: installDir: Bunnyrama: {} launch: - /Bunnyrama.app: + "/Bunnyrama.app": - when: - os: mac store: steam - /Bunnyrama.exe: + "/Bunnyrama.exe": - when: - os: windows store: steam - /bunnyrama: + "/bunnyrama": - when: - os: linux store: steam @@ -80960,7 +81207,7 @@ Bunnyrama: id: 567210 Buoyancy: files: - /AppData/LocalLow/DevsOnABoat/Buoyancy: + "/AppData/LocalLow/DevsOnABoat/Buoyancy": tags: - save when: @@ -80968,15 +81215,15 @@ Buoyancy: installDir: Buoyancy: {} launch: - /Buoyancy.app: + "/Buoyancy.app": - when: - os: mac store: steam - /Buoyancy.exe: + "/Buoyancy.exe": - when: - os: windows store: steam - /Buoyancy.x86_64: + "/Buoyancy.x86_64": - when: - os: linux store: steam @@ -80986,21 +81233,21 @@ Buoyant: installDir: Buoyant: {} launch: - /Buoyant.app/Contents/MacOS/Buoyant: + "/Buoyant.app/Contents/MacOS/Buoyant": - when: - os: mac store: steam - /Buoyant.exe: + "/Buoyant.exe": - when: - os: windows store: steam steam: id: 1085280 -Burak Bahar's Unseen Anchor: +"Burak Bahar's Unseen Anchor": installDir: - Burak Bahar's Unseen Anchor: {} + "Burak Bahar's Unseen Anchor": {} launch: - /windows_content/UnseenAnchor.exe: + "/windows_content/UnseenAnchor.exe": - when: - os: windows store: steam @@ -81013,7 +81260,7 @@ Burden (2018): installDir: Burden: {} launch: - /Burden.exe: + "/Burden.exe": - when: - bit: 64 os: windows @@ -81027,20 +81274,20 @@ Burden of Proof: installDir: Burden of Proof: {} launch: - /BurdenOfProof.app: + "/BurdenOfProof.app": - when: - os: mac store: steam - /BurdenOfProof.exe: + "/BurdenOfProof.exe": - when: - os: windows store: steam - /BurdenOfProof.x86: + "/BurdenOfProof.x86": - when: - bit: 32 os: linux store: steam - /BurdenOfProof.x86_64: + "/BurdenOfProof.x86_64": - when: - bit: 64 os: linux @@ -81051,7 +81298,7 @@ Burg: installDir: Burg: {} launch: - /Burg.exe: + "/Burg.exe": - when: - os: windows store: steam @@ -81061,7 +81308,7 @@ Burger Lord: installDir: Burger Lord: {} launch: - /BurgerLord.exe: + "/BurgerLord.exe": - when: - os: windows store: steam @@ -81069,7 +81316,7 @@ Burger Lord: id: 923630 Burger Shop: files: - /GoBit Games/BurgerShop/users: + "/GoBit Games/BurgerShop/users": tags: - save when: @@ -81077,11 +81324,11 @@ Burger Shop: installDir: Burger Shop: {} launch: - /BurgerShop.app/Contents/MacOS/BurgerShopSteam: + "/BurgerShop.app/Contents/MacOS/BurgerShopSteam": - when: - os: mac store: steam - /BurgerShop.exe: + "/BurgerShop.exe": - when: - os: windows store: steam @@ -81089,7 +81336,7 @@ Burger Shop: id: 730840 Burger Shop 2: files: - /GoBit Games/BurgerShop2/BigFishGames/users: + "/GoBit Games/BurgerShop2/BigFishGames/users": tags: - save when: @@ -81097,11 +81344,11 @@ Burger Shop 2: installDir: Burger Shop 2: {} launch: - /BurgerShop2.app/Contents/MacOS/BurgerShop2Steam: + "/BurgerShop2.app/Contents/MacOS/BurgerShop2Steam": - when: - os: mac store: steam - /BurgerShop2.exe: + "/BurgerShop2.exe": - when: - os: windows store: steam @@ -81120,11 +81367,11 @@ Burgers: installDir: Burgers: {} launch: - /Burgers.app: + "/Burgers.app": - when: - os: mac store: steam - /Burgers.exe: + "/Burgers.exe": - when: - os: windows store: steam @@ -81134,7 +81381,7 @@ Burgers 2: installDir: Burgers 2: {} launch: - /Burgers 2.exe: + "/Burgers 2.exe": - when: - os: windows store: steam @@ -81144,7 +81391,7 @@ Burgerwise the Clown: installDir: Burgerwise the Clown: {} launch: - /windows_content/Burgerwise The Clown.exe: + "/windows_content/Burgerwise The Clown.exe": - when: - store: steam steam: @@ -81153,7 +81400,7 @@ Burgle Bros.: installDir: Burgle Bros: {} launch: - /BurglePC.exe: + "/BurglePC.exe": - when: - os: windows store: steam @@ -81164,19 +81411,19 @@ Buried Alive VR: Buried Alive VR: {} steam: id: 678830 -'Buried: An Interactive Story': +"Buried: An Interactive Story": installDir: Buried An Interactive Story: {} launch: - /Buried.app/Contents/MacOS/Buried: + "/Buried.app/Contents/MacOS/Buried": - when: - os: mac store: steam - /Buried.exe: + "/Buried.exe": - when: - os: windows store: steam - /Buried.x86_64: + "/Buried.x86_64": - when: - os: linux store: steam @@ -81186,7 +81433,7 @@ BuriedTown: installDir: BuriedTown: {} launch: - /BerryTown.exe: + "/BerryTown.exe": - when: - os: windows store: steam @@ -81194,7 +81441,7 @@ BuriedTown: id: 432640 Burly Men at Sea: files: - /AppData/LocalLow/brainandbrain/Burly Men at Sea/burlySave.burly: + "/AppData/LocalLow/brainandbrain/Burly Men at Sea/burlySave.burly": tags: - save when: @@ -81202,11 +81449,11 @@ Burly Men at Sea: installDir: Burly Men at Sea: {} launch: - /Burly Men at Sea.app: + "/Burly Men at Sea.app": - when: - os: mac store: steam - /Burly Men at Sea.exe: + "/Burly Men at Sea.exe": - when: - os: windows store: steam @@ -81220,11 +81467,11 @@ Burn It Down: installDir: Burn It Down: {} launch: - /Burn It Down.exe: + "/Burn It Down.exe": - when: - os: windows store: steam - /Burn_It_Down.app: + "/Burn_It_Down.app": - when: - os: mac store: steam @@ -81234,20 +81481,20 @@ Burn Zombie Burn!: installDir: Burn Zombie Burn!: {} launch: - /BZB Launcher.exe: + "/BZB Launcher.exe": - when: - store: steam steam: id: 50510 -'Burn, Clown, Burn!': +"Burn, Clown, Burn!": installDir: BurnClownBurn: {} launch: - /BurnClownBurn.exe: + "/BurnClownBurn.exe": - when: - os: windows store: steam - /BurnClownBurn_mac.app: + "/BurnClownBurn_mac.app": - when: - os: mac store: steam @@ -81262,7 +81509,7 @@ Burned Land: installDir: Burned Land: {} launch: - /Burned Land.exe: + "/Burned Land.exe": - when: - os: windows store: steam @@ -81270,7 +81517,7 @@ Burned Land: id: 833170 Burnhouse Lane: files: - /AppData/LocalLow/Harvester Games/BurnhouseLane/BurnhouseLane_Savefile_*.save: + "/AppData/LocalLow/Harvester Games/BurnhouseLane/BurnhouseLane_Savefile_*.save": tags: - save when: @@ -81278,56 +81525,56 @@ Burnhouse Lane: installDir: Burnhouse Lane: {} launch: - /BurnhouseLane.exe: + "/BurnhouseLane.exe": - when: - os: windows store: steam steam: id: 1846460 -Burnin' Rubber: +"Burnin' Rubber": files: - /AppData/LocalLow/Adobe/Director 11/BurninRubber: + "/AppData/LocalLow/Adobe/Director 11/BurninRubber": tags: - config - save when: - os: windows -Burnin' Rubber 3: +"Burnin' Rubber 3": files: - /AppData/LocalLow/Adobe/Director 11/BurninRubber3: + "/AppData/LocalLow/Adobe/Director 11/BurninRubber3": tags: - config - save when: - os: windows -Burnin' Rubber 4: +"Burnin' Rubber 4": files: - /AppData/LocalLow/Adobe/Director 11/BurninRubber4: + "/AppData/LocalLow/Adobe/Director 11/BurninRubber4": tags: - config - save when: - os: windows -Burnin' Rubber 5 HD: +"Burnin' Rubber 5 HD": files: - /BurninRubber5HD_Data/UserData: + "/BurninRubber5HD_Data/UserData": tags: - config - save when: - os: windows installDir: - Burnin' Rubber 5 HD: {} + "Burnin' Rubber 5 HD": {} launch: - /BurninRubber5HD.exe: + "/BurninRubber5HD.exe": - when: - os: windows store: steam steam: id: 420660 -Burnin' Rubber Crash n' Burn: +"Burnin' Rubber Crash n' Burn": files: - /AppData/LocalLow/XformGames/BurninRubberCrashnBurn: + "/AppData/LocalLow/XformGames/BurninRubberCrashnBurn": tags: - config - save @@ -81337,7 +81584,7 @@ Burning Cars: installDir: Burning Cars: {} launch: - /Burning Cars Launcher.exe: + "/Burning Cars Launcher.exe": - when: - os: windows store: steam @@ -81347,7 +81594,7 @@ Burning Daylight: installDir: Burning Daylight: {} launch: - /BurningDaylight.exe: + "/BurningDaylight.exe": - when: - bit: 64 os: windows @@ -81358,7 +81605,7 @@ Burning Instinct: installDir: Burning Instinct: {} launch: - /BurningInstinct.exe: + "/BurningInstinct.exe": - when: - os: windows store: steam @@ -81368,16 +81615,16 @@ Burning Knight: installDir: Burning Knight: {} launch: - /BurningKnight.app/Contents/MacOS/Desktop.bin.osx: + "/BurningKnight.app/Contents/MacOS/Desktop.bin.osx": - when: - os: mac store: steam - /Desktop.bin.x86_64: + "/Desktop.bin.x86_64": - when: - bit: 64 os: linux store: steam - /Desktop.exe: + "/Desktop.exe": - when: - bit: 64 os: windows @@ -81388,16 +81635,16 @@ Burning Out: installDir: Burning Out: {} launch: - /Burning Out.exe: + "/Burning Out.exe": - when: - store: steam steam: id: 983610 -'Burning Requiem: Fates': +"Burning Requiem: Fates": installDir: Burning Requiem Fates: {} launch: - /Burning Requiem Fates Windows.exe: + "/Burning Requiem Fates Windows.exe": - when: - os: windows store: steam @@ -81412,7 +81659,7 @@ Burnout Drift: installDir: Burnout Drift: {} launch: - /Burnout Drift.exe: + "/Burnout Drift.exe": - when: - os: windows store: steam @@ -81420,12 +81667,12 @@ Burnout Drift: id: 942760 Burnout Paradise: files: - /Criterion Games/Burnout Paradise/*.ini: + "/Criterion Games/Burnout Paradise/*.ini": tags: - config when: - os: windows - /Criterion Games/Burnout Paradise/Save: + "/Criterion Games/Burnout Paradise/Save": tags: - save when: @@ -81433,25 +81680,25 @@ Burnout Paradise: installDir: Burnout(TM) Paradise The Ultimate Box: {} launch: - /BurnoutConfigTool.exe: + "/BurnoutConfigTool.exe": - when: - store: steam - /BurnoutParadise.exe: + "/BurnoutParadise.exe": - when: - store: steam - /Support/EA Help/Electronic_Arts_Technical_Support.htm: + "/Support/EA Help/Electronic_Arts_Technical_Support.htm": - when: - store: steam steam: id: 24740 Burnout Paradise Remastered: files: - /Criterion Games/Burnout Paradise Remastered/*.ini: + "/Criterion Games/Burnout Paradise Remastered/*.ini": tags: - config when: - os: windows - /Criterion Games/Burnout Paradise Remastered/Save: + "/Criterion Games/Burnout Paradise Remastered/Save": tags: - save when: @@ -81460,14 +81707,14 @@ Burnout Paradise Remastered: BurnoutPR: {} steam: id: 1238080 -'Burnouts: The Igne Mori': +"Burnouts: The Igne Mori": steam: id: 970820 Burnstar: installDir: Burnstar: {} launch: - /BurnStar.exe: + "/BurnStar.exe": - when: - os: windows store: steam @@ -81477,15 +81724,15 @@ Burokku Girls: installDir: Burokku Girls: {} launch: - /Burokku Girls.app/Contents/MacOS/Burokku Girls: + "/Burokku Girls.app/Contents/MacOS/Burokku Girls": - when: - os: mac store: steam - /Burokku Girls.exe: + "/Burokku Girls.exe": - when: - os: windows store: steam - /Burokku Girls.sh: + "/Burokku Girls.sh": - when: - os: linux store: steam @@ -81495,7 +81742,7 @@ Burst: installDir: Burst: {} launch: - /Burst.exe: + "/Burst.exe": - when: - os: windows store: steam @@ -81505,7 +81752,7 @@ Burst Drive: installDir: Burst Drive: {} launch: - /Burst Drive.exe: + "/Burst Drive.exe": - when: - os: windows store: steam @@ -81515,7 +81762,7 @@ Burst Fighter: installDir: Burst Fighter: {} launch: - /Burst Fighter.exe: + "/Burst Fighter.exe": - when: - os: windows store: steam @@ -81525,7 +81772,7 @@ Burst Into: installDir: Burst Into: {} launch: - /Burst Into.exe: + "/Burst Into.exe": - when: - store: steam steam: @@ -81534,17 +81781,17 @@ Burst The Game: installDir: Burst The Game: {} launch: - /BurstTheGame415/Binaries/Linux/BurstTheGame: + "/BurstTheGame415/Binaries/Linux/BurstTheGame": - when: - bit: 64 os: linux store: steam - /BurstTheGame415/Binaries/Win32/BurstTheGame.exe: + "/BurstTheGame415/Binaries/Win32/BurstTheGame.exe": - when: - bit: 32 os: windows store: steam - /BurstTheGame415/Binaries/Win64/BurstTheGame.exe: + "/BurstTheGame415/Binaries/Win64/BurstTheGame.exe": - when: - bit: 64 os: windows @@ -81555,17 +81802,17 @@ Burstfire: installDir: Burstfire: {} launch: - /BurstfireLauncher.exe: - - arguments: '-steam' + "/BurstfireLauncher.exe": + - arguments: "-steam" when: - store: steam steam: id: 349580 -'Bury Me, My Love': +"Bury Me, My Love": installDir: - 'Bury me, my Love': {} + "Bury me, my Love": {} launch: - /EMMA.Desktop.exe: + "/EMMA.Desktop.exe": - when: - os: windows store: steam @@ -81576,12 +81823,12 @@ Bus Controller Simulator: id: 1057610 Bus Driver: files: - /Bus Driver/config.cfg: + "/Bus Driver/config.cfg": tags: - config when: - os: windows - /Bus Driver/save: + "/Bus Driver/save": tags: - save when: @@ -81589,11 +81836,11 @@ Bus Driver: installDir: Bus Driver: {} launch: - /bin/win_x86/busdriver.exe: + "/bin/win_x86/busdriver.exe": - when: - os: windows store: steam - /bin/win_x86/launcher.exe: + "/bin/win_x86/launcher.exe": - when: - os: windows store: steam @@ -81605,8 +81852,8 @@ Bus Driver Simulator: installDir: Bus Driver Simulator: {} launch: - /Bus Driver Simulator.exe: - - arguments: '-vrmode none' + "/Bus Driver Simulator.exe": + - arguments: "-vrmode none" when: - os: windows store: steam @@ -81614,7 +81861,7 @@ Bus Driver Simulator: id: 679260 Bus Mechanic Simulator: files: - /AppData/LocalLow/VIS-Games/BusMechanicSimulator/Savegames: + "/AppData/LocalLow/VIS-Games/BusMechanicSimulator/Savegames": tags: - config when: @@ -81622,7 +81869,7 @@ Bus Mechanic Simulator: installDir: BMS: {} launch: - /BusMechanicSimulator.exe: + "/BusMechanicSimulator.exe": - when: - bit: 64 os: windows @@ -81633,12 +81880,12 @@ Bus Simulator 16: installDir: Bus Simulator 16: {} launch: - /BusSimulator16.app: + "/BusSimulator16.app": - when: - bit: 64 os: mac store: steam - /BusSimulator16.exe: + "/BusSimulator16.exe": - when: - bit: 64 os: windows @@ -81647,17 +81894,17 @@ Bus Simulator 16: id: 324310 Bus Simulator 18: files: - /userdata//515180/remote/SaveGames: + "/userdata//515180/remote/SaveGames": tags: - save when: - store: steam - /BusSimulator18/Saved/Config/WindowsNoEditor: + "/BusSimulator18/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /BusSimulator18/Saved/SaveGames: + "/BusSimulator18/Saved/SaveGames": tags: - save when: @@ -81665,7 +81912,7 @@ Bus Simulator 18: installDir: Bus Simulator 18: {} launch: - /BusSimulator18.exe: + "/BusSimulator18.exe": - when: - bit: 64 os: windows @@ -81674,7 +81921,7 @@ Bus Simulator 18: id: 515180 Bus Simulator 2008: files: - /data: + "/data": tags: - config - save @@ -81682,7 +81929,7 @@ Bus Simulator 2008: - os: windows Bus Simulator 2009: files: - /Bus-Simulator 2009: + "/Bus-Simulator 2009": tags: - config - save @@ -81692,25 +81939,25 @@ Bus Simulator 2012: installDir: Bus-Simulator 2012: {} launch: - /Bin_Basic_Win32/BusSimulator2012.exe: + "/Bin_Basic_Win32/BusSimulator2012.exe": - when: - bit: 32 os: windows store: steam - workingDir: /Bin_Basic_Win32 - /Bin_High_Win64/BusSimulator2012.exe: + workingDir: "/Bin_Basic_Win32" + "/Bin_High_Win64/BusSimulator2012.exe": - when: - bit: 64 os: windows store: steam - workingDir: /Bin_High_Win64 + workingDir: "/Bin_High_Win64" steam: id: 253770 Bus Simulator 21: installDir: Bus Simulator 21: {} launch: - /BusSimulator21.exe: + "/BusSimulator21.exe": - when: - store: steam steam: @@ -81719,7 +81966,7 @@ Bus Tycoon ND (Night and Day): installDir: Bus Tycoon ND (Night and Day): {} launch: - /Bus_Tycoon_ND.exe: + "/Bus_Tycoon_ND.exe": - when: - os: windows store: steam @@ -81729,7 +81976,7 @@ Bus World: installDir: Bus World: {} launch: - /Bus World.exe: + "/Bus World.exe": - when: - store: steam steam: @@ -81744,7 +81991,7 @@ Business Hooiznes: installDir: Business-hooiznes: {} launch: - /Business-hooiznes.exe: + "/Business-hooiznes.exe": - when: - os: windows store: steam @@ -81754,7 +82001,7 @@ Business Magnate: installDir: Business Builder: {} launch: - /bm.exe: + "/bm.exe": - when: - os: windows store: steam @@ -81764,12 +82011,12 @@ Business Tour: installDir: Business Tour: {} launch: - /BusinessTour.app: + "/BusinessTour.app": - when: - os: mac store: steam - /BusinessTour.exe: - - arguments: '-logFile output_log.txt' + "/BusinessTour.exe": + - arguments: "-logFile output_log.txt" when: - os: windows store: steam @@ -81779,7 +82026,7 @@ Business Tycoon Billionaire: installDir: Business Tycoon Billionaire: {} launch: - /Business Tycoon Billionaire.exe: + "/Business Tycoon Billionaire.exe": - when: - os: windows store: steam @@ -81789,16 +82036,16 @@ BusinessMan: installDir: BusinessMan: {} launch: - /BusinessMan.exe: + "/BusinessMan.exe": - when: - bit: 64 os: windows store: steam steam: id: 677820 -'Bust-A-Move 2: Arcade Edition': +"Bust-A-Move 2: Arcade Edition": files: - /BM2SETUP.DAT: + "/BM2SETUP.DAT": tags: - config when: @@ -81807,11 +82054,11 @@ Busted!: installDir: BUSTED!: {} launch: - /BUSTED.exe: + "/BUSTED.exe": - when: - os: windows store: steam - /busted.app/Contents/MacOS/nwjs: + "/busted.app/Contents/MacOS/nwjs": - when: - os: mac store: steam @@ -81821,7 +82068,7 @@ Bustories: installDir: Bustories: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -81831,7 +82078,7 @@ Busty Hentai Mosaic: installDir: Busty Hentai Mosaic: {} launch: - /win32/nw.exe: + "/win32/nw.exe": - when: - os: windows store: steam @@ -81841,7 +82088,7 @@ BustyBiz: installDir: BustyBiz: {} launch: - /BustyBiz.exe: + "/BustyBiz.exe": - when: - os: windows store: steam @@ -81851,7 +82098,7 @@ Busy spider: installDir: busy_spider: {} launch: - /busy_spider.exe: + "/busy_spider.exe": - when: - os: windows store: steam @@ -81861,7 +82108,7 @@ But to Paint a Universe: installDir: But to Paint a Universe: {} launch: - /btpau_steam.exe: + "/btpau_steam.exe": - when: - os: windows store: steam @@ -81869,12 +82116,12 @@ But to Paint a Universe: id: 335220 Butcher: files: - /AppData/LocalLow/THD/Butcher: + "/AppData/LocalLow/THD/Butcher": tags: - save when: - os: windows - /unity3d/THD/Butcher: + "/unity3d/THD/Butcher": tags: - save when: @@ -81884,15 +82131,15 @@ Butcher: installDir: Butcher: {} launch: - /butcher: + "/butcher": - when: - os: linux store: steam - /butcher.app: + "/butcher.app": - when: - os: mac store: steam - /butcher.exe: + "/butcher.exe": - when: - os: windows store: steam @@ -81902,15 +82149,15 @@ ButcherBoy: installDir: ButcherBoy: {} launch: - /ButcherBoy.app/Contents/MacOS/ButcherBoy: + "/ButcherBoy.app/Contents/MacOS/ButcherBoy": - when: - os: mac store: steam - /ButcherBoy.exe: + "/ButcherBoy.exe": - when: - os: windows store: steam - /ButcherBoy.x86: + "/ButcherBoy.x86": - when: - os: linux store: steam @@ -81920,16 +82167,16 @@ Butsbal: installDir: Butsbal: {} launch: - /Butsbal.exe: + "/Butsbal.exe": - when: - os: windows store: steam - /Butsbal.x86: + "/Butsbal.x86": - when: - bit: 32 os: linux store: steam - /Butsbal.x86_64: + "/Butsbal.x86_64": - when: - bit: 64 os: linux @@ -81940,7 +82187,7 @@ Butterbies: installDir: Butterbies: {} launch: - /PC.exe: + "/PC.exe": - when: - os: windows store: steam @@ -81950,7 +82197,7 @@ Butterfly: installDir: Butterfly: {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: @@ -81959,7 +82206,7 @@ Butterfly 2: installDir: Butterfly 2: {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: @@ -81968,7 +82215,7 @@ Butterfly Dream Shadow: installDir: Butterfly dream shadow: {} launch: - /Butterfly dream shadow.exe: + "/Butterfly dream shadow.exe": - when: - store: steam steam: @@ -81985,7 +82232,7 @@ Buttle Tank: installDir: Buttle Tank: {} launch: - /Buttle Tank.exe: + "/Buttle Tank.exe": - when: - os: windows store: steam @@ -81995,8 +82242,8 @@ Button Bros: installDir: Button Bros: {} launch: - /Button Button Up!/ButtonButtonUp!.exe: - - arguments: '-windowed' + "/Button Button Up!/ButtonButtonUp!.exe": + - arguments: "-windowed" when: - os: windows store: steam @@ -82006,7 +82253,7 @@ Button Frenzy: installDir: Button Frenzy: {} launch: - /ButtonFrenzy.exe: + "/ButtonFrenzy.exe": - when: - os: windows store: steam @@ -82016,7 +82263,7 @@ Button Music: installDir: BM Studio: {} launch: - /Button_Music.exe: + "/Button_Music.exe": - when: - bit: 64 os: windows @@ -82027,13 +82274,13 @@ Button Tales: installDir: Button Tales: {} launch: - /ButtonTales.exe: + "/ButtonTales.exe": - when: - os: windows store: steam steam: id: 545590 -'Butts: The VR Experience': +"Butts: The VR Experience": installDir: BUTTS: {} steam: @@ -82042,23 +82289,23 @@ Buy Low Sell High: installDir: Buy Low Sell High: {} launch: - /Buy High Sell Low.exe: + "/Buy High Sell Low.exe": - when: - os: windows store: steam steam: id: 934220 -Buzz Aldrin's Space Program Manager: +"Buzz Aldrin's Space Program Manager": gog: id: 2079613275 installDir: - Buzz Aldrin's Space Program Manager: {} + "Buzz Aldrin's Space Program Manager": {} launch: - /SPM-OSX.app: + "/SPM-OSX.app": - when: - os: mac store: steam - /autorun.exe: + "/autorun.exe": - when: - os: windows store: steam @@ -82068,7 +82315,7 @@ Buzz Kill Zero: installDir: Buzz Kill Zero: {} launch: - /Buzz Kill Zero.exe.exe: + "/Buzz Kill Zero.exe.exe": - when: - os: windows store: steam @@ -82076,7 +82323,7 @@ Buzz Kill Zero: id: 1082480 Buzz Lightyear of Star Command: files: - /BuzzXX.sav: + "/BuzzXX.sav": tags: - save when: @@ -82085,11 +82332,11 @@ By Any Means Necessary: installDir: By Any Means Necessary: {} launch: - /BAMN.exe: + "/BAMN.exe": - when: - os: windows store: steam - /bamn.sh: + "/bamn.sh": - when: - os: linux store: steam @@ -82097,7 +82344,7 @@ By Any Means Necessary: id: 702820 By Moonlight: files: - /*.sav: + "/*.sav": tags: - save when: @@ -82105,11 +82352,11 @@ By Moonlight: installDir: By Moonlight: {} launch: - /By_Moonlight.app: + "/By_Moonlight.app": - when: - os: mac store: steam - /By_Moonlight_Windows.exe: + "/By_Moonlight_Windows.exe": - when: - os: windows store: steam @@ -82119,26 +82366,26 @@ ByLo: installDir: ByLo: {} launch: - /ByLo.exe: + "/ByLo.exe": - when: - store: steam steam: id: 1127620 -'Bye-Bye, Wacky Planet': +"Bye-Bye, Wacky Planet": steam: id: 492130 Bygone Dreams: steam: id: 951620 -'Bygone Worlds: Drama at the Odeion': +"Bygone Worlds: Drama at the Odeion": steam: id: 758840 -'Bygone Worlds: Ephesus': +"Bygone Worlds: Ephesus": installDir: Bygone Worlds Ephesus: {} steam: id: 739090 -'Bygone Worlds: Jerusalem': +"Bygone Worlds: Jerusalem": installDir: Bygone Worlds Jerusalem: {} steam: @@ -82147,15 +82394,15 @@ Bystander: installDir: Bystander: {} launch: - /Bystander.app: + "/Bystander.app": - when: - os: mac store: steam - /nw: + "/nw": - when: - os: linux store: steam - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -82165,11 +82412,11 @@ Byte Chaser: installDir: Byte Chaser: {} launch: - /Byte Chaser.app: + "/Byte Chaser.app": - when: - os: mac store: steam - /Byte Chaser.exe: + "/Byte Chaser.exe": - when: - os: windows store: steam @@ -82179,21 +82426,21 @@ Byte Driver: installDir: Byte Driver: {} launch: - /ByteDr.exe: + "/ByteDr.exe": - when: - os: windows store: steam - /ByteDr.x86: + "/ByteDr.x86": - when: - bit: 32 os: linux store: steam - /ByteDr.x86_64: + "/ByteDr.x86_64": - when: - bit: 64 os: linux store: steam - /ByteDriver.app: + "/ByteDriver.app": - when: - os: mac store: steam @@ -82203,7 +82450,7 @@ Byte Family: installDir: Byte Family: {} launch: - /Byte Family.exe: + "/Byte Family.exe": - when: - os: windows store: steam @@ -82211,7 +82458,7 @@ Byte Family: id: 542880 Bytepath: files: - /BYTEPATH: + "/BYTEPATH": tags: - save when: @@ -82219,16 +82466,16 @@ Bytepath: installDir: BYTEPATH: {} launch: - /BYTEPATH.exe: + "/BYTEPATH.exe": - when: - os: windows store: steam - /game_32.AppImage: + "/game_32.AppImage": - when: - bit: 32 os: linux store: steam - /game_64.AppImage: + "/game_64.AppImage": - when: - bit: 64 os: linux @@ -82237,7 +82484,7 @@ Bytepath: id: 760330 Bzzzt: files: - /AppData/LocalLow/Kodll/Bzzzt: + "/AppData/LocalLow/Kodll/Bzzzt": tags: - config - save @@ -82249,7 +82496,7 @@ B画少说: installDir: STB: {} launch: - /stb.exe: + "/stb.exe": - when: - os: windows store: steam @@ -82259,7 +82506,7 @@ C: installDir: cell: {} launch: - /c.exe: + "/c.exe": - when: - os: windows store: steam @@ -82269,11 +82516,11 @@ C O S M: installDir: COSM: {} launch: - /COSM.app/Contents/MacOS/COSM: + "/COSM.app/Contents/MacOS/COSM": - when: - os: mac store: steam - /COSM.exe: + "/COSM.exe": - when: - os: windows store: steam @@ -82283,7 +82530,7 @@ C-Rush: installDir: C-RUSH: {} launch: - /C-RUSH.exe: + "/C-RUSH.exe": - when: - os: windows store: steam @@ -82293,11 +82540,11 @@ C-War 2: installDir: C-War 2: {} launch: - /C-WAR2.app: + "/C-WAR2.app": - when: - os: mac store: steam - /C-WAR2.exe: + "/C-WAR2.exe": - when: - os: windows store: steam @@ -82307,11 +82554,11 @@ C-Wars: installDir: C-Wars: {} launch: - /cwars.app: + "/cwars.app": - when: - os: mac store: steam - /cwars.exe: + "/cwars.exe": - when: - os: windows store: steam @@ -82321,15 +82568,15 @@ C. Kane: installDir: CKane: {} launch: - /ckane: + "/ckane": - when: - os: linux store: steam - /ckane.app: + "/ckane.app": - when: - os: mac store: steam - /ckane.exe: + "/ckane.exe": - when: - os: windows store: steam @@ -82339,7 +82586,7 @@ C.A.R.L.: installDir: CARL: {} launch: - /CARL.exe: + "/CARL.exe": - when: - os: windows store: steam @@ -82349,7 +82596,7 @@ C.A.T.S. - Carefully Attempting not To Screw up: installDir: C.A.T.S. - Carefully Attempting not To Screw up: {} launch: - /CATS.exe: + "/CATS.exe": - when: - bit: 64 os: windows @@ -82360,7 +82607,7 @@ C.Q.C. - Close Quarters Combat: installDir: C.Q.C. - Close Quaters Combat: {} launch: - /CQC.exe: + "/CQC.exe": - when: - bit: 64 os: windows @@ -82371,7 +82618,7 @@ C.R.E.E.P.S: installDir: CREEPS: {} launch: - /CREEPS.exe: + "/CREEPS.exe": - when: - os: windows store: steam @@ -82386,7 +82633,7 @@ C.Y.S.M.A.: installDir: C.Y.S.M.A: {} launch: - /CYSMA.exe: + "/CYSMA.exe": - when: - bit: 64 os: windows @@ -82397,15 +82644,15 @@ C14 Dating: installDir: C14Dating: {} launch: - /C14Dating.app: + "/C14Dating.app": - when: - os: mac store: steam - /C14Dating.exe: + "/C14Dating.exe": - when: - os: windows store: steam - /C14Dating.sh: + "/C14Dating.sh": - when: - os: linux store: steam @@ -82415,7 +82662,7 @@ C15: installDir: C15 - Horror: {} launch: - /C15.exe: + "/C15.exe": - when: - os: windows store: steam @@ -82428,7 +82675,7 @@ C64 & AMIGA Classix Remakes Sixpack: installDir: C64 & AMIGA Classix Remakes Sixpack: {} launch: - /GameCollectionLauncher_Release Steam_x86.exe: + "/GameCollectionLauncher_Release Steam_x86.exe": - when: - os: windows store: steam @@ -82438,7 +82685,7 @@ C64 & AMIGA Classix Remakes Sixpack 2: installDir: C64 & AMIGA Classix Remakes Sixpack 2: {} launch: - /GameCollectionLauncher_Release Steam_x86.exe: + "/GameCollectionLauncher_Release Steam_x86.exe": - when: - os: windows store: steam @@ -82448,7 +82695,7 @@ C64 & AMIGA Classix Remakes Sixpack 3: installDir: C64 & AMIGA Classix Remakes Sixpack 3: {} launch: - /GameCollectionLauncher_Release Steam_x86.exe: + "/GameCollectionLauncher_Release Steam_x86.exe": - when: - os: windows store: steam @@ -82456,12 +82703,12 @@ C64 & AMIGA Classix Remakes Sixpack 3: id: 1115670 CAFE 0 ~The Drowned Mermaid~: files: - /game/saves/*.save: + "/game/saves/*.save": tags: - save when: - os: windows - /game/saves/persistent: + "/game/saves/persistent": tags: - config when: @@ -82469,15 +82716,15 @@ CAFE 0 ~The Drowned Mermaid~: installDir: CAFE 0 ~The Drowned Mermaid~: {} launch: - /Cafe0.app: + "/Cafe0.app": - when: - os: mac store: steam - /Cafe0.exe: + "/Cafe0.exe": - when: - os: windows store: steam - /Cafe0.sh: + "/Cafe0.sh": - when: - os: linux store: steam @@ -82487,11 +82734,11 @@ CAFE 0 ~The Sleeping Beast~: installDir: CAFE 0 ~The Sleeping Beast~: {} launch: - /CAFE0.app: + "/CAFE0.app": - when: - os: mac store: steam - /CAFE0.exe: + "/CAFE0.exe": - when: - os: windows store: steam @@ -82501,11 +82748,11 @@ CAGE: installDir: CAGE: {} launch: - /CAGE_Three_Dimensional_Combat.app: + "/CAGE_Three_Dimensional_Combat.app": - when: - os: mac store: steam - /CAGE_Three_Dimensional_Combat.exe: + "/CAGE_Three_Dimensional_Combat.exe": - when: - os: windows store: steam @@ -82515,16 +82762,16 @@ CANDLE UNDER WATER: installDir: CANDLE UNDER WATER: {} launch: - /suii.exe: + "/suii.exe": - when: - store: steam steam: id: 936970 -'CAP-FIG-CID (Colors Are Pretty, Fish Is Gross, Cake is Delicious)': +"CAP-FIG-CID (Colors Are Pretty, Fish Is Gross, Cake is Delicious)": installDir: - FAN'CIE VEER!: {} + "FAN'CIE VEER!": {} launch: - /FAN'CIE VEER!.exe: + "/FAN'CIE VEER!.exe": - when: - os: windows store: steam @@ -82535,11 +82782,11 @@ CAPCOM GO! Apollo VR Planetarium: CAPCOM GO! Apollo VR Planetarium: {} steam: id: 1116650 -'CAR TUNE: Project': +"CAR TUNE: Project": installDir: Car Tune Project: {} launch: - /CAR TUNE PROJECT.exe: + "/CAR TUNE PROJECT.exe": - when: - os: windows store: steam @@ -82549,18 +82796,21 @@ CARDCORE: installDir: CARDCORE: {} launch: - /steampvp.exe: + "/steampvp.exe": - when: - bit: 32 os: windows store: steam + - bit: 64 + os: windows + store: steam steam: id: 979170 CARRUMBLE: installDir: CarRumble: {} launch: - /CarRumble.exe: + "/CarRumble.exe": - when: - bit: 64 os: windows @@ -82569,19 +82819,19 @@ CARRUMBLE: id: 743580 CART Precision Racing: files: - /Saved Races: + "/Saved Races": tags: - save when: - os: windows - /system: + "/system": tags: - config when: - os: windows -'CASE: Animatronics': +"CASE: Animatronics": files: - /userdata//489360/remote: + "/userdata//489360/remote": tags: - config - save @@ -82591,39 +82841,39 @@ CART Precision Racing: installDir: CASE Animatronics: {} launch: - /case.app/Contents/MacOS/case: + "/case.app/Contents/MacOS/case": - when: - os: mac store: steam - /case.exe: + "/case.exe": - when: - os: windows store: steam - /case.x86: + "/case.x86": - when: - bit: 32 os: linux store: steam - /case.x86_64: + "/case.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 489360 -'CASTILLO: Shattered Mirrors': +"CASTILLO: Shattered Mirrors": installDir: CastilloHDRP: {} launch: - /CastilloHDRP/CastilloHDRP.app: + "/CastilloHDRP/CastilloHDRP.app": - when: - os: mac store: steam - /CastilloHDRP/CastilloLinux.x86_64: + "/CastilloHDRP/CastilloLinux.x86_64": - when: - os: linux store: steam - /CastilloHDRP/CastilloShatteredMirrors.exe: + "/CastilloHDRP/CastilloShatteredMirrors.exe": - when: - bit: 64 os: windows @@ -82634,7 +82884,7 @@ CAT & MOUSE: installDir: Cat & Mouse: {} launch: - /CatNMouse.exe: + "/CatNMouse.exe": - when: - os: windows store: steam @@ -82642,12 +82892,12 @@ CAT & MOUSE: id: 1137040 CAT Interstellar: files: - /CATInterstellar/Saved/Config/WindowsNoEditor: + "/CATInterstellar/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /CATInterstellar/Saved/SaveGames: + "/CATInterstellar/Saved/SaveGames": tags: - save when: @@ -82655,11 +82905,11 @@ CAT Interstellar: installDir: CAT Interstellar: {} launch: - /CATInterstellar.sh: + "/CATInterstellar.sh": - when: - os: linux store: steam - /CatInterstellar.exe: + "/CatInterstellar.exe": - when: - os: windows store: steam @@ -82669,11 +82919,11 @@ CATAPULT BATTLE SIMULATOR!: installDir: CATAPULT BATTLE SIMULATOR!: {} launch: - /CATAPULT BATTLE SIMULATOR.app: + "/CATAPULT BATTLE SIMULATOR.app": - when: - os: mac store: steam - /CATAPULT BATTLE SIMULATOR.exe: + "/CATAPULT BATTLE SIMULATOR.exe": - when: - os: windows store: steam @@ -82683,7 +82933,7 @@ CBT With Yuuka Kazami: installDir: CBT With Yuuka Kazami: {} launch: - /CBTWithYuukaKazami.exe: + "/CBTWithYuukaKazami.exe": - when: - store: steam steam: @@ -82692,7 +82942,7 @@ CCCP Calls!: installDir: CCCPCALLS: {} launch: - /CCCPCALLS.exe: + "/CCCPCALLS.exe": - when: - store: steam steam: @@ -82701,16 +82951,16 @@ CD-RUN: installDir: CD-RUN: {} launch: - /CD-RUN.exe: + "/CD-RUN.exe": - when: - os: windows store: steam - /CD-RUN.x86_64: + "/CD-RUN.x86_64": - when: - bit: 64 os: linux store: steam - /Contents/MacOS/CD-RUN: + "/Contents/MacOS/CD-RUN": - when: - os: mac store: steam @@ -82718,7 +82968,7 @@ CD-RUN: id: 1051920 CDF Ghostship: files: - /Binaries/Win32/gsstorysav0.sav: + "/Binaries/Win32/gsstorysav0.sav": tags: - save when: @@ -82726,18 +82976,18 @@ CDF Ghostship: installDir: CDFGhostship: {} launch: - /binaries/win32/udk.exe: + "/binaries/win32/udk.exe": - when: - os: windows store: steam - workingDir: /binaries/win32 + workingDir: "/binaries/win32" steam: id: 263640 CDF Starfighter VR: installDir: CDF Starfighter VR: {} launch: - /CDFStarfighterVRup.exe: + "/CDFStarfighterVRup.exe": - when: - bit: 64 os: windows @@ -82746,12 +82996,12 @@ CDF Starfighter VR: id: 433190 CEO CITY: files: - /CyberPlanet Interactive/CEO City/Data: + "/CyberPlanet Interactive/CEO City/Data": tags: - config when: - os: windows - /CyberPlanet Interactive/CEO City/Data/Save: + "/CyberPlanet Interactive/CEO City/Data/Save": tags: - save when: @@ -82763,7 +83013,7 @@ CG the Seven Virus Knights: installDir: CG the Seven Virus Knights Tutorial: {} launch: - /CGtheSevenVirusKnights.exe: + "/CGtheSevenVirusKnights.exe": - when: - os: windows store: steam @@ -82773,7 +83023,7 @@ CGENcore: installDir: CGENcore: {} launch: - /CGENcore.exe: + "/CGENcore.exe": - when: - os: windows store: steam @@ -82783,7 +83033,7 @@ CHAIN SAW: installDir: CHAIN SAW: {} launch: - /CHAIN SAW.exe: + "/CHAIN SAW.exe": - when: - bit: 64 os: windows @@ -82794,7 +83044,7 @@ CHAOS - In the Darkness: installDir: CHAOS - In the Darkness: {} launch: - /Chaos.exe: + "/Chaos.exe": - when: - bit: 64 os: windows @@ -82807,16 +83057,16 @@ CHAZE!: CHERNOBYL HISTORY OF NUCLEAR DISASTER: steam: id: 1104800 -'CHERNOBYL: The Untold Story': +"CHERNOBYL: The Untold Story": installDir: CHERNOBYL The Untold Story: {} launch: - /CHERNOBYL The Untold Story.exe: + "/CHERNOBYL The Untold Story.exe": - when: - os: windows store: steam registry: - 'HKEY_CURRENT_USER/SOFTWARE/MEHSOFT/CHERNOBYL: The Untold Story': + "HKEY_CURRENT_USER/SOFTWARE/MEHSOFT/CHERNOBYL: The Untold Story": tags: - save steam: @@ -82825,54 +83075,54 @@ CHEXS: installDir: CHEXS: {} launch: - /CHEXS.app/Contents/MacOS/CHEXSX: + "/CHEXS.app/Contents/MacOS/CHEXSX": - when: - os: mac store: steam - /CHEXS.exe: + "/CHEXS.exe": - when: - os: windows store: steam steam: id: 511810 -'CHIKARA: AAW Wrestle Factory': +"CHIKARA: AAW Wrestle Factory": installDir: AAW Wrestle Lab: {} launch: - /WrestleLab.exe: + "/WrestleLab.exe": - when: - bit: 64 os: windows store: steam steam: id: 1137700 -'CHIKARA: Action Arcade Wrestling': +"CHIKARA: Action Arcade Wrestling": installDir: CHIKARA Action Arcade Wrestling: {} launch: - /AAWX.exe: + "/AAWX.exe": - when: - bit: 64 os: windows store: steam steam: id: 1072100 -'CHIP: Rescuer of Kittens': +"CHIP: Rescuer of Kittens": steam: id: 1029830 CHKN: installDir: CHKN: {} launch: - /CHKN: + "/CHKN": - when: - os: linux store: steam - /CHKN.app/Contents/MacOS/CHKN: + "/CHKN.app/Contents/MacOS/CHKN": - when: - os: mac store: steam - /CHKN.exe: + "/CHKN.exe": - when: - os: windows store: steam @@ -82888,33 +83138,33 @@ CINEVEO - VR Cinema: installDir: CINEVEO - Virtual Reality Cinema: {} launch: - /CINEVEO Cinema Themes (SteamVR)/CINEVEO - 1960 Drive-in Theater v2.0/movies/dir_shortcut.bat: + "/CINEVEO Cinema Themes (SteamVR)/CINEVEO - 1960 Drive-in Theater v2.0/movies/dir_shortcut.bat": - when: - os: windows store: steam - /CINEVEO Cinema Themes (SteamVR)/CINEVEO - 4D Movie Theater v4.0/movies/dir_shortcut.bat: + "/CINEVEO Cinema Themes (SteamVR)/CINEVEO - 4D Movie Theater v4.0/movies/dir_shortcut.bat": - when: - os: windows store: steam - /CINEVEO Cinema Themes (SteamVR)/CINEVEO - Haunted Valley v2.0/movies/dir_shortcut.bat: + "/CINEVEO Cinema Themes (SteamVR)/CINEVEO - Haunted Valley v2.0/movies/dir_shortcut.bat": - when: - os: windows store: steam - /CINEVEO Cinema Themes (SteamVR)/CINEVEO - Ocean Theater v2.0/movies/dir_shortcut.bat: + "/CINEVEO Cinema Themes (SteamVR)/CINEVEO - Ocean Theater v2.0/movies/dir_shortcut.bat": - when: - os: windows store: steam - /CINEVEO Cinema Themes (SteamVR)/CINEVEO - The Void v3.0/movies/dir_shortcut.bat: + "/CINEVEO Cinema Themes (SteamVR)/CINEVEO - The Void v3.0/movies/dir_shortcut.bat": - when: - os: windows store: steam steam: id: 364380 -'CITYCONOMY: Service for your City': +"CITYCONOMY: Service for your City": installDir: Project Nano: {} launch: - /Cityconomy.exe: + "/Cityconomy.exe": - when: - os: windows store: steam @@ -82922,13 +83172,13 @@ CINEVEO - VR Cinema: id: 304580 CLARC: files: - /.config/unity3d/GoldenTricycle/CLARC: + "/.config/unity3d/GoldenTricycle/CLARC": tags: - config - save when: - os: linux - /AppData/LocalLow/GoldenTricycle/CLARC: + "/AppData/LocalLow/GoldenTricycle/CLARC": tags: - save when: @@ -82939,7 +83189,7 @@ CLASH! - Battle Arena: installDir: CLASH! - Battle Arena: {} launch: - /Hyper Clash Arena.exe: + "/Hyper Clash Arena.exe": - when: - os: windows store: steam @@ -82949,7 +83199,7 @@ CLIMB OUT!: installDir: Climb Out!: {} launch: - /Climb Out!.exe: + "/Climb Out!.exe": - when: - store: steam steam: @@ -82957,11 +83207,11 @@ CLIMB OUT!: CLIMB!: steam: id: 749720 -'CLS: Signal Person': +"CLS: Signal Person": installDir: CLS Signal Person: {} launch: - /Signal Person Training.exe: + "/Signal Person Training.exe": - when: - os: windows store: steam @@ -82971,7 +83221,7 @@ CMD 2048: installDir: CMD 2048: {} launch: - /CMD 2048.exe: + "/CMD 2048.exe": - when: - os: windows store: steam @@ -82981,28 +83231,28 @@ CMYW: installDir: CMYW: {} launch: - /CMYW.exe: + "/CMYW.exe": - when: - os: windows store: steam steam: id: 396590 -'CO-JUMP,FLY': +"CO-JUMP,FLY": steam: id: 1199460 -'CO-OP: Decrypted': +"CO-OP: Decrypted": installDir: CO-OP Decrypted: {} launch: - /CO-OP-DECRYPTED.exe: + "/CO-OP-DECRYPTED.exe": - when: - os: windows store: steam - /CO-OP-Decrypted.app: + "/CO-OP-Decrypted.app": - when: - os: mac store: steam - /CO-OP-Decrypted.x86: + "/CO-OP-Decrypted.x86": - when: - os: linux store: steam @@ -83012,27 +83262,27 @@ CODE2040: installDir: CODE2040: {} launch: - /ReDreamLauncher.exe: + "/ReDreamLauncher.exe": - when: - bit: 64 os: windows store: steam steam: id: 993870 -'COLINA: Legacy': +"COLINA: Legacy": installDir: COLINA Legacy: {} launch: - /ColinaLegacy.exe: + "/ColinaLegacy.exe": - when: - os: windows store: steam - /ColinaLegacy.x86_64: - - arguments: '-force-opengl' + "/ColinaLegacy.x86_64": + - arguments: "-force-opengl" when: - os: linux store: steam - - arguments: '-force-vulkan' + - arguments: "-force-vulkan" when: - os: linux store: steam @@ -83042,11 +83292,11 @@ CONTINGENCY: installDir: CONTINGENCY: {} launch: - /contingency.app/Contents/MacOS/nwjs: + "/contingency.app/Contents/MacOS/nwjs": - when: - os: mac store: steam - /nw.exe: + "/nw.exe": - when: - bit: 64 os: windows @@ -83057,7 +83307,7 @@ CONTINUE: installDir: CONTINUE: {} launch: - /CONTINUE.exe: + "/CONTINUE.exe": - when: - os: windows store: steam @@ -83066,23 +83316,23 @@ CONTINUE: COSH: steam: id: 797180 -COTTOn Rock'n'Roll -SUPERLATIVE NIGHT DREAMS-: +"COTTOn Rock'n'Roll -SUPERLATIVE NIGHT DREAMS-": installDir: COTTOn RocknRoll: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam steam: id: 1364760 -'COVID: The Outbreak': +"COVID: The Outbreak": gog: id: 1574007943 installDir: COVID The Outbreak: {} launch: - /COVID The Outbreak.exe: + "/COVID The Outbreak.exe": - when: - os: windows store: steam @@ -83095,7 +83345,7 @@ CPU Invaders: installDir: CPU Invaders: {} launch: - /CPU Invaders.exe: + "/CPU Invaders.exe": - when: - os: windows store: steam @@ -83105,22 +83355,22 @@ CRAKEN: installDir: CRAKEN: {} launch: - /Craken.exe: + "/Craken.exe": - when: - os: windows store: steam steam: id: 927930 -'CRANGA!: Harbor Frenzy': +"CRANGA!: Harbor Frenzy": installDir: CRANGA! Harbor Frenzy: {} steam: id: 517970 -'CRASH: Autodrive': +"CRASH: Autodrive": installDir: CRASH Autodrive: {} launch: - /CRASH Autodrive.exe: + "/CRASH Autodrive.exe": - when: - os: windows store: steam @@ -83130,7 +83380,7 @@ CROSS X CARROT: installDir: CROSS X CARROT: {} launch: - /player.exe: + "/player.exe": - when: - store: steam steam: @@ -83139,16 +83389,16 @@ CROSSNIQ+: installDir: CROSSNIQ+: {} launch: - /CROSSNIQ+.app: + "/CROSSNIQ+.app": - when: - os: mac store: steam - /CROSSNIQ+.exe: + "/CROSSNIQ+.exe": - when: - bit: 64 os: windows store: steam - /CROSSNIQ+.x86_64: + "/CROSSNIQ+.x86_64": - when: - bit: 64 os: linux @@ -83159,24 +83409,22 @@ CROWZ: installDir: CROWZ: {} launch: - /Crowz.exe: - - arguments: >- - CrowFPS\\Binaries\\Win64\\CrowFPSClient-Win64-Shipping.exe -ServerIP=75.2.116.177 -ServerPort=27015 - -NotInstalled + "/Crowz.exe": + - arguments: "CrowFPS\\\\Binaries\\\\Win64\\\\CrowFPSClient-Win64-Shipping.exe -ServerIP=75.2.116.177 -ServerPort=27015 -NotInstalled" when: - bit: 64 os: windows store: steam steam: id: 1692070 -'CRSED: F.O.A.D.': +"CRSED: F.O.A.D.": files: - /cuisine_royale.config.blk: + "/cuisine_royale.config.blk": tags: - config when: - os: windows - /cuisine_royale/downloads/online_storage//cuisine_royale/venus: + "/cuisine_royale/downloads/online_storage//cuisine_royale/venus": tags: - config when: @@ -83184,20 +83432,20 @@ CROWZ: installDir: CRSED: {} launch: - /cuisine_royale_eac_launcher.exe: - - arguments: ' -eac_dir EasyAntiCheat/cuisine_royale -config:circuit:t=venus -game:cuisine_royale -circuit:venus -skip_pkg_validation -eac_launcher_settings Settings32.json' + "/cuisine_royale_eac_launcher.exe": + - arguments: " -eac_dir EasyAntiCheat/cuisine_royale -config:circuit:t=venus -game:cuisine_royale -circuit:venus -skip_pkg_validation -eac_launcher_settings Settings32.json" when: - bit: 32 os: windows store: steam - /eaccrlauncher.exe: - - arguments: ' -eac_dir EasyAntiCheat/cuisine_royale -config:circuit:t=venus -game:cuisine_royale -circuit:venus -skip_pkg_validation' + "/eaccrlauncher.exe": + - arguments: " -eac_dir EasyAntiCheat/cuisine_royale -config:circuit:t=venus -game:cuisine_royale -circuit:venus -skip_pkg_validation" when: - bit: 64 os: windows store: steam - /linux64/cuisine_royale: - - arguments: '-config:circuit:t=venus -game:cuisine_royale -circuit:venus -skip_pkg_validation' + "/linux64/cuisine_royale": + - arguments: "-config:circuit:t=venus -game:cuisine_royale -circuit:venus -skip_pkg_validation" when: - bit: 64 os: linux @@ -83208,7 +83456,7 @@ CRYPTIC: installDir: CRYPTIC: {} launch: - /CRYPTIC.exe: + "/CRYPTIC.exe": - when: - os: windows store: steam @@ -83216,7 +83464,7 @@ CRYPTIC: id: 1154160 CS2D: files: - /sys: + "/sys": tags: - config when: @@ -83225,67 +83473,67 @@ CS2D: installDir: CS2D: {} launch: - /CS2D: + "/CS2D": - when: - os: linux store: steam - /CS2D.exe: + "/CS2D.exe": - when: - os: windows store: steam steam: id: 666220 -'CSI VR: Crime Scene Investigation': +"CSI VR: Crime Scene Investigation": installDir: CSI VR Crime Scene Investigation: {} steam: id: 893650 -'CSI: 3 Dimensions of Murder': +"CSI: 3 Dimensions of Murder": files: - /*.prop: + "/*.prop": tags: - config when: - os: windows - /*.save: + "/*.save": tags: - save when: - os: windows -'CSI: Crime Scene Investigation': +"CSI: Crime Scene Investigation": files: - /CSI/Data: + "/CSI/Data": tags: - save when: - os: windows -'CSI: Dark Motives': +"CSI: Dark Motives": files: - /CSI2/Data: + "/CSI2/Data": tags: - save when: - os: windows -'CSI: Deadly Intent': +"CSI: Deadly Intent": files: - /*.prop: + "/*.prop": tags: - config when: - os: windows - /*.save: + "/*.save": tags: - save when: - os: windows -'CSI: Hard Evidence': +"CSI: Hard Evidence": files: - /*.prop: + "/*.prop": tags: - config when: - os: windows - /*.save: + "/*.save": tags: - save when: @@ -83293,28 +83541,28 @@ CS2D: installDir: CSI Hard Evidence: {} launch: - /CSI4.exe: + "/CSI4.exe": - when: - store: steam steam: id: 21730 -'CSI: NY - The Game': +"CSI: NY - The Game": installDir: CSI New York: {} launch: - /csi.exe: + "/csi.exe": - when: - store: steam steam: id: 21750 -'CT Special Forces: Fire for Effect': +"CT Special Forces: Fire for Effect": files: - /Savegame: + "/Savegame": tags: - save when: - os: windows - /User.tsc: + "/User.tsc": tags: - config when: @@ -83322,7 +83570,7 @@ CS2D: installDir: CT Special Forces: {} launch: - /CT Special Forces.exe: + "/CT Special Forces.exe": - when: - store: steam steam: @@ -83332,11 +83580,11 @@ CTHON: CTHON: {} steam: id: 595100 -'CTU: Counter Terrorism Unit': +"CTU: Counter Terrorism Unit": installDir: CTU Counter Terrorism Unit: {} launch: - /CTU_64b.exe: + "/CTU_64b.exe": - when: - os: windows store: steam @@ -83346,9 +83594,9 @@ CTHON: - config steam: id: 397320 -'CTU: Marine Sharpshooter': +"CTU: Marine Sharpshooter": files: - /Save: + "/Save": tags: - save when: @@ -83357,21 +83605,21 @@ CUBE 332: installDir: CUBE 332: {} launch: - /CUBE 332.exe: + "/CUBE 332.exe": - when: - store: steam steam: id: 939150 -'CUBE-C: VR Game Collection': +"CUBE-C: VR Game Collection": installDir: CUBE-C VR Game Collection: {} steam: id: 688910 -'CUBG: Car Unknown''s Battlegrounds': +"CUBG: Car Unknown's Battlegrounds": installDir: CUBG: {} launch: - /CUBG.exe: + "/CUBG.exe": - when: - os: windows store: steam @@ -83381,31 +83629,31 @@ CULT: installDir: CULT: {} launch: - /nw.exe: + "/nw.exe": - when: - bit: 64 os: windows store: steam steam: id: 1133250 -CUSTOM ORDER MAID 3D2 It's a Night Magic: +"CUSTOM ORDER MAID 3D2 It's a Night Magic": installDir: - CUSTOM ORDER MAID 3D2 It's a Night Magic: {} + "CUSTOM ORDER MAID 3D2 It's a Night Magic": {} launch: - /com3d2inm/COM3D2.exe: + "/com3d2inm/COM3D2.exe": - when: - bit: 64 os: windows store: steam steam: id: 1097580 -'CW: Chaco War': +"CW: Chaco War": steam: id: 634810 -'CYBER.one: trans car racing': +"CYBER.one: trans car racing": steam: id: 1002010 -'CYCOM: Cybernet Combat': +"CYCOM: Cybernet Combat": installDir: CYCOM: {} steam: @@ -83417,7 +83665,7 @@ CYNOROID -GENTAGELSE-: installDir: CYNOROID -GENTAGELSE- v1.32: {} launch: - /CYNOROID-GENTAGELSE-.exe: + "/CYNOROID-GENTAGELSE-.exe": - when: - store: steam steam: @@ -83426,7 +83674,7 @@ CYPEST Underground: installDir: CYPEST Underground: {} launch: - /cypest.exe: + "/cypest.exe": - when: - os: windows store: steam @@ -83439,7 +83687,7 @@ Cabal Online: installDir: SteamCabal: {} launch: - /cabal.exe: + "/cabal.exe": - arguments: steamLauncher when: - bit: 64 @@ -83447,98 +83695,98 @@ Cabal Online: store: steam steam: id: 253490 -'Cabals: Card Blitz': +"Cabals: Card Blitz": installDir: Cabals Card Blitz: {} launch: - /CardBlitz.exe: + "/CardBlitz.exe": - when: - os: windows store: steam steam: id: 562540 -'Cabals: Magic & Battle Cards': +"Cabals: Magic & Battle Cards": installDir: Cabals: {} launch: - /cabals.app: + "/cabals.app": - when: - os: mac store: steam - /cabals.exe: + "/cabals.exe": - when: - os: windows store: steam steam: id: 458410 -Cabela's 4x4 Off-Road Adventure: +"Cabela's 4x4 Off-Road Adventure": files: - /Profile: + "/Profile": tags: - save when: - os: windows -Cabela's 4x4 Off-Road Adventure 2: +"Cabela's 4x4 Off-Road Adventure 2": registry: HKEY_LOCAL_MACHINE/SOFTWARE/WOW6432Node/clevers/cabelas_4x4adv2: tags: - config -Cabela's African Adventures: +"Cabela's African Adventures": installDir: - Cabela's African Adventures: {} + "Cabela's African Adventures": {} launch: - /bin/CAA_Main.exe: + "/bin/CAA_Main.exe": - when: - store: steam - workingDir: /bin + workingDir: "/bin" steam: id: 250200 -Cabela's Big Game Hunter Pro Hunts: +"Cabela's Big Game Hunter Pro Hunts": files: - /Saved Games/Big Game Hunter 2014: + "/Saved Games/Big Game Hunter 2014": tags: - config - save when: - os: windows installDir: - Cabela's Big Game Hunter Pro Hunts: {} + "Cabela's Big Game Hunter Pro Hunts": {} launch: - /bgh_2014.exe: + "/bgh_2014.exe": - when: - store: steam steam: id: 247770 -Cabela's Big Game Hunter Trophy Bucks: +"Cabela's Big Game Hunter Trophy Bucks": installDir: - Cabela's Trophy Bucks: {} + "Cabela's Trophy Bucks": {} launch: - /bin/ctb.exe: + "/bin/ctb.exe": - when: - store: steam - workingDir: /bin + workingDir: "/bin" steam: id: 7970 -Cabela's Dangerous Hunts 2013: +"Cabela's Dangerous Hunts 2013": installDir: - Cabela's Dangerous Hunts: {} + "Cabela's Dangerous Hunts": {} launch: - /dh_2013.exe: + "/dh_2013.exe": - when: - store: steam steam: id: 218860 -Cabela's Hunting Expeditions: +"Cabela's Hunting Expeditions": installDir: - Cabela's Hunting Expedition: {} + "Cabela's Hunting Expedition": {} launch: - /bin/CSA2_Main.exe: + "/bin/CSA2_Main.exe": - when: - store: steam - workingDir: /bin + workingDir: "/bin" steam: id: 214210 -'Cabins: Jigsaw Puzzles': +"Cabins: Jigsaw Puzzles": installDir: Cabins Jigsaw Puzzles: {} steam: @@ -83547,7 +83795,7 @@ Cactus Canyon: installDir: Cactus Canyon: {} launch: - /CactusCanyon.exe: + "/CactusCanyon.exe": - when: - store: steam steam: @@ -83556,7 +83804,7 @@ Cactus Jumper: installDir: Cactus Jumper: {} launch: - /Cactus Jumper.exe: + "/Cactus Jumper.exe": - when: - os: windows store: steam @@ -83565,21 +83813,21 @@ Cactus Jumper: Cadence: steam: id: 362800 -'Cadenza: Music, Betrayal and Death': +"Cadenza: Music, Betrayal and Death": installDir: - 'Cadenza Music, Betrayal and Death Collector''s Edition': {} + "Cadenza Music, Betrayal and Death Collector's Edition": {} launch: - /Cadenza_MusicBetrayalAndDeath_CE.exe: + "/Cadenza_MusicBetrayalAndDeath_CE.exe": - when: - os: windows store: steam steam: id: 629100 -'Cadenza: The Kiss of Death': +"Cadenza: The Kiss of Death": installDir: - Cadenza The Kiss of Death Collector's Edition: {} + "Cadenza The Kiss of Death Collector's Edition": {} launch: - /Cadenza_TheKissOfDeath_CE.exe: + "/Cadenza_TheKissOfDeath_CE.exe": - when: - os: windows store: steam @@ -83589,13 +83837,13 @@ Cadria Item Shop: installDir: Cadria Item Shop: {} launch: - /Cadria.exe: + "/Cadria.exe": - when: - os: windows store: steam steam: id: 883860 -'Caelum: Into the Sky': +"Caelum: Into the Sky": installDir: Caelum Into the Sky Vol1: {} steam: @@ -83604,7 +83852,7 @@ Caelus Trident: installDir: Caelus Trident: {} launch: - /Caelus Trident.exe: + "/Caelus Trident.exe": - when: - os: windows store: steam @@ -83612,7 +83860,7 @@ Caelus Trident: id: 1052920 Caesar: files: - /cloud_saves: + "/cloud_saves": tags: - save when: @@ -83621,13 +83869,13 @@ Caesar: id: 1469336312 Caesar II: files: - /*.sav: + "/*.sav": tags: - save when: - os: dos - os: windows - /RESOURCE.CFG: + "/RESOURCE.CFG": tags: - config when: @@ -83637,7 +83885,7 @@ Caesar II: id: 1386577474 Caesar III: files: - /*.sav: + "/*.sav": tags: - save when: @@ -83647,31 +83895,31 @@ Caesar III: installDir: Caesar 3: {} launch: - /SierraLauncher.exe: + "/SierraLauncher.exe": - when: - store: steam steam: id: 517790 Caesar IV: files: - /CaesarIV.ini: + "/CaesarIV.ini": tags: - config when: - - os: windows - store: gog - /Data/Saved Games: + - os: windows + "/Data/Saved Games": tags: - save when: - - os: windows - store: gog - /steamapps/common/Caesar 4/C4/CaesarIV.ini: + - os: windows + "/steamapps/common/Caesar 4/C4/CaesarIV.ini": tags: - config when: - store: steam - /steamapps/common/Caesar 4/C4/Data/Saved Games: + "/steamapps/common/Caesar 4/C4/Data/Saved Games": tags: - save when: @@ -83681,7 +83929,7 @@ Caesar IV: installDir: Caesar 4: {} launch: - /SierraLauncher.exe: + "/SierraLauncher.exe": - when: - store: steam steam: @@ -83690,15 +83938,15 @@ CaesarIA: installDir: CaesarIA: {} launch: - /caesaria.exe: + "/caesaria.exe": - when: - os: windows store: steam - /caesaria.linux: + "/caesaria.linux": - when: - os: linux store: steam - /caesaria.macos: + "/caesaria.macos": - when: - os: mac store: steam @@ -83708,11 +83956,11 @@ Cafe Crush: installDir: Cafe Crush: {} launch: - /CafeCrush.app: + "/CafeCrush.app": - when: - os: mac store: steam - /CafeCrush.exe: + "/CafeCrush.exe": - when: - os: windows store: steam @@ -83722,7 +83970,7 @@ Cafe Owner Simulator: installDir: Cafe Owner Simulator: {} launch: - /Cafe Owner Simulator.exe: + "/Cafe Owner Simulator.exe": - when: - store: steam steam: @@ -83731,35 +83979,38 @@ Caffeine: installDir: Caffeine: {} launch: - /CaffeineGame.app: + "/CaffeineGame.app": - when: - os: mac store: steam - /LinuxNoEditor/CaffeineGame/Binaries/Linux/CaffeineGame: - - arguments: '-opengl4' + "/LinuxNoEditor/CaffeineGame/Binaries/Linux/CaffeineGame": + - arguments: "-opengl4" when: - os: linux store: steam - - arguments: '-opengl3' + - arguments: "-opengl3" when: - os: linux store: steam steam: id: 323680 -'Caffeine: Victoria''s Legacy': +"Caffeine: Victoria's Legacy": installDir: - Caffeine Victoria's Legacy: {} + "Caffeine Victoria's Legacy": {} launch: - /Caffeine_Victorias_Legacy.app/Contents/MacOS/Caffeine_Victorias_Legacy: + "/Caffeine_Victorias_Legacy.app/Contents/MacOS/Caffeine_Victorias_Legacy": - when: - os: mac store: steam - /Caffeine_Victorias_Legacy.exe: + "/Caffeine_Victorias_Legacy.exe": - when: - os: windows store: steam - /Caffeine_Victorias_Legacy.sh: + "/Caffeine_Victorias_Legacy.sh": - when: + - bit: 32 + os: linux + store: steam - bit: 64 os: linux store: steam @@ -83769,29 +84020,29 @@ Café International: installDir: CafeInternational: {} launch: - /CafeInternational.app: + "/CafeInternational.app": - when: - os: mac store: steam - /CafeInternational.exe: + "/CafeInternational.exe": - when: - os: windows store: steam - /CafeInternational.x86_64: - - arguments: '-screen-fullscreen 0' + "/CafeInternational.x86_64": + - arguments: "-screen-fullscreen 0" when: - bit: 64 os: linux store: steam steam: id: 965210 -Café Stella and the Reapers' Butterflies: +"Café Stella and the Reapers' Butterflies": gog: id: 1944735225 installDir: CafeStella: {} launch: - /CafeStella.exe: + "/CafeStella.exe": - when: - store: steam steam: @@ -83800,7 +84051,7 @@ Cage of the Succubi: installDir: Cage of the Succubi: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: @@ -83809,8 +84060,8 @@ Cahertis: installDir: Cahertis: {} launch: - /Cahertis.exe: - - arguments: '--in-process-gpu' + "/Cahertis.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam @@ -83820,15 +84071,15 @@ Cahors Sunset: installDir: Cahors Sunset: {} launch: - /cahorssunset.exe: + "/cahorssunset.exe": - when: - os: windows store: steam steam: id: 341700 -'Cairo''s Tale: The Big Egg': +"Cairo's Tale: The Big Egg": installDir: - Cairo's Tale The Big Egg: {} + "Cairo's Tale The Big Egg": {} steam: id: 863470 Cake Bash: @@ -83840,7 +84091,7 @@ Cake Mania: installDir: Cake Mania: {} launch: - /CakeMania.exe: + "/CakeMania.exe": - when: - store: steam steam: @@ -83849,7 +84100,7 @@ Cake Mania 2: installDir: Cake Mania 2: {} launch: - /CakeMania2.exe: + "/CakeMania2.exe": - when: - store: steam steam: @@ -83858,16 +84109,16 @@ Cake Mania 3: installDir: Cake Mania 3: {} launch: - /CakeMania3.exe: + "/CakeMania3.exe": - when: - store: steam steam: id: 36200 -'Cake Mania: Main Street': +"Cake Mania: Main Street": installDir: Cake Mania Main Street: {} launch: - /CakeMania_MainStreet.exe: + "/CakeMania_MainStreet.exe": - when: - store: steam steam: @@ -83881,15 +84132,15 @@ Caladria Chronicles: installDir: Caladria Chronicles: {} launch: - /Caladria Chronicles.exe: + "/Caladria Chronicles.exe": - when: - os: windows store: steam - /Caladria Chronicles.sh: + "/Caladria Chronicles.sh": - when: - os: linux store: steam - /Contents/MacOS/Caladria Chronicles: + "/Contents/MacOS/Caladria Chronicles": - when: - os: mac store: steam @@ -83897,12 +84148,12 @@ Caladria Chronicles: id: 997530 Caladrius Blaze: files: - /MOSS/Caladrius Blaze: + "/MOSS/Caladrius Blaze": tags: - config when: - os: windows - /MOSS/Caladrius Blaze/save: + "/MOSS/Caladrius Blaze/save": tags: - save when: @@ -83912,7 +84163,7 @@ Caladrius Blaze: installDir: Caladrius Blaze: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -83922,21 +84173,21 @@ Calamari Clash: installDir: Calamari Clash: {} launch: - /CalamariClash.exe: + "/CalamariClash.exe": - when: - os: windows store: steam - /calamari_clash.x86_64: + "/calamari_clash.x86_64": - when: - os: linux store: steam steam: id: 1205150 -'Calavera: Day of the Dead': +"Calavera: Day of the Dead": installDir: - Calavera Day of the Dead Collector's Edition: {} + "Calavera Day of the Dead Collector's Edition": {} launch: - /Calavera_DayOfTheDeadCE.exe: + "/Calavera_DayOfTheDeadCE.exe": - when: - os: windows store: steam @@ -83944,7 +84195,7 @@ Calamari Clash: id: 638240 Calcu-Late: files: - /Save.rxdata: + "/Save.rxdata": tags: - save when: @@ -83952,7 +84203,7 @@ Calcu-Late: installDir: Calcu-Late: {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: @@ -83961,7 +84212,7 @@ Calcul8²: installDir: Calcul8²: {} launch: - /calcul82.exe: + "/calcul82.exe": - when: - os: windows store: steam @@ -83971,15 +84222,15 @@ Calendula: installDir: CALENDULA: {} launch: - /CALENDULA.app/Contents/MacOS/CALENDULA: + "/CALENDULA.app/Contents/MacOS/CALENDULA": - when: - os: mac store: steam - /CALENDULA.exe: + "/CALENDULA.exe": - when: - os: windows store: steam - /CALENDULA.x86: + "/CALENDULA.x86": - when: - os: linux store: steam @@ -83992,7 +84243,7 @@ Caliban Below: id: 649890 Caliber: files: - /AppData/LocalLow/1CGS/Caliber: + "/AppData/LocalLow/1CGS/Caliber": tags: - config when: @@ -84000,8 +84251,8 @@ Caliber: installDir: Caliber: {} launch: - /Caliber.exe: - - arguments: '-steam' + "/Caliber.exe": + - arguments: "-steam" when: - os: windows store: steam @@ -84011,10 +84262,10 @@ Calibre 10 Racing: installDir: Gauntlet: {} launch: - /bin/SomaLauncher.exe: + "/bin/SomaLauncher.exe": - when: - store: steam - workingDir: /bin + workingDir: "/bin" steam: id: 266370 Calico: @@ -84023,11 +84274,11 @@ Calico: installDir: Calico: {} launch: - /Calico.app: + "/Calico.app": - when: - os: mac store: steam - /Calico.exe: + "/Calico.exe": - when: - os: windows store: steam @@ -84037,7 +84288,7 @@ Calico & Co.: installDir: Calico and Co: {} launch: - /CalicoAndCo.exe: + "/CalicoAndCo.exe": - when: - os: windows store: steam @@ -84050,7 +84301,7 @@ California Games: id: 1399480 California Games II: files: - /CG2MED.YAY: + "/CG2MED.YAY": tags: - save when: @@ -84065,11 +84316,11 @@ Californium: installDir: Californium: {} launch: - /californium.app: + "/californium.app": - when: - os: mac store: steam - /californium.exe: + "/californium.exe": - when: - os: windows store: steam @@ -84082,12 +84333,12 @@ Californium: id: 402060 Caligo: files: - /AppData/LocalLow/Krealit/Caligo/: + "/AppData/LocalLow/Krealit/Caligo/": tags: - config when: - os: windows - /AppData/LocalLow/Krealit/Caligo//Profile: + "/AppData/LocalLow/Krealit/Caligo//Profile": tags: - save when: @@ -84095,7 +84346,7 @@ Caligo: installDir: Caligo: {} launch: - /Caligo.exe: + "/Caligo.exe": - when: - os: windows store: steam @@ -84109,11 +84360,11 @@ Caliper: installDir: Caliper: {} launch: - /Caliper_launcher: + "/Caliper_launcher": - when: - os: linux store: steam - /Caliper_launcher.exe: + "/Caliper_launcher.exe": - when: - os: windows store: steam @@ -84123,17 +84374,20 @@ Caliper 2: installDir: Caliper 2: {} launch: - /Caliper 2.exe: + "/Caliper 2.exe": - when: - bit: 32 os: windows store: steam - /Caliper 2.x86: + - bit: 64 + os: windows + store: steam + "/Caliper 2.x86": - when: - bit: 32 os: linux store: steam - /Caliper 2.x86_64: + "/Caliper 2.x86_64": - when: - bit: 64 os: linux @@ -84144,7 +84398,7 @@ Call Each New Year: installDir: Call each NEW YEAR: {} launch: - /CalleachNEWYEAR.exe: + "/CalleachNEWYEAR.exe": - when: - os: windows store: steam @@ -84154,18 +84408,18 @@ Call Me Skyfish: installDir: Call Me Skyfish: {} launch: - /CallMeSkyfish.exe: + "/CallMeSkyfish.exe": - arguments: ~windowed when: - os: windows store: steam steam: id: 690220 -'Call Of Pixel: Close Quarters': +"Call Of Pixel: Close Quarters": installDir: Call Of Pixel Close Quarters: {} launch: - /Launcher.exe: + "/Launcher.exe": - when: - os: windows store: steam @@ -84175,7 +84429,7 @@ Call Of Unity: installDir: Call Of Unity: {} launch: - /Call Of Unity.exe: + "/Call Of Unity.exe": - when: - store: steam steam: @@ -84184,7 +84438,7 @@ Call of Bitcoin: installDir: Call of Bitcoin: {} launch: - /Call of Bitcoin.exe: + "/Call of Bitcoin.exe": - when: - os: windows store: steam @@ -84194,7 +84448,7 @@ Call of Booty: installDir: Call of Da Wild: {} launch: - /Call of Da Wild.exe: + "/Call of Da Wild.exe": - when: - os: windows store: steam @@ -84202,17 +84456,17 @@ Call of Booty: id: 896840 Call of Cthulhu: files: - /CallOfCthulhu/Saved/Config/WindowsNoEditor: + "/CallOfCthulhu/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /CallOfCthulhu/Saved/SaveGames: + "/CallOfCthulhu/Saved/SaveGames": tags: - save when: - os: windows - /CallOfCthulhu/Saved/SaveGames/Configuration.sav: + "/CallOfCthulhu/Saved/SaveGames/Configuration.sav": tags: - config when: @@ -84222,19 +84476,19 @@ Call of Cthulhu: installDir: Call of Cthulhu: {} launch: - /CallOfCthulhu.exe: + "/CallOfCthulhu.exe": - when: - store: steam steam: id: 399810 -'Call of Cthulhu: Dark Corners of the Earth': +"Call of Cthulhu: Dark Corners of the Earth": files: - /Bethesda/Call of Cthulhu: + "/Bethesda/Call of Cthulhu": tags: - save when: - os: windows - /Bethesda/Call of Cthulhu/Options: + "/Bethesda/Call of Cthulhu/Options": tags: - config when: @@ -84244,24 +84498,24 @@ Call of Cthulhu: installDir: Call of Cthulhu: {} launch: - /Engine/CoCDCoTELauncher.exe: + "/Engine/CoCDCoTELauncher.exe": - when: - store: steam - workingDir: /Engine + workingDir: "/Engine" registry: HKEY_CURRENT_USER/Software/Bethesda Softworks/Call Of Cthulhu DCoTE/Settings: tags: - config steam: id: 22340 -'Call of Cthulhu: Prisoner of Ice': +"Call of Cthulhu: Prisoner of Ice": files: - /ICE/*.ICE: + "/ICE/*.ICE": tags: - save when: - os: windows - /ICE/ICE.cfg: + "/ICE/ICE.cfg": tags: - config when: @@ -84271,31 +84525,31 @@ Call of Cthulhu: installDir: Prisoner of Ice: {} launch: - /Dosbox/launch.bat: + "/Dosbox/launch.bat": - when: - os: windows store: steam - workingDir: /Dosbox + workingDir: "/Dosbox" steam: id: 359620 -'Call of Cthulhu: Shadow of the Comet': +"Call of Cthulhu: Shadow of the Comet": gog: id: 1431942210 installDir: Shadow of the Comet: {} launch: - /Dosbox/launch.bat: + "/Dosbox/launch.bat": - when: - os: windows store: steam - workingDir: /Dosbox + workingDir: "/Dosbox" steam: id: 389470 -'Call of Cthulhu: The Wasted Land': +"Call of Cthulhu: The Wasted Land": installDir: TheWastedLand: {} launch: - /Cthulhu.exe: + "/Cthulhu.exe": - when: - os: windows store: steam @@ -84303,32 +84557,32 @@ Call of Cthulhu: id: 251390 Call of Duty: files: - /Main: + "/Main": tags: - config when: - os: windows - /Main/save: + "/Main/save": tags: - save when: - os: windows - /uo: + "/uo": tags: - config when: - os: windows - /uo/save: + "/uo/save": tags: - save when: - os: windows - /Library/Application Support/Call of Duty/Main: + "/Library/Application Support/Call of Duty/Main": tags: - config when: - os: mac - /Library/Application Support/Call of Duty/Main/Save: + "/Library/Application Support/Call of Duty/Main/Save": tags: - save when: @@ -84339,19 +84593,19 @@ Call of Duty: installDir: Call of Duty: {} launch: - /Call of Duty MP.app: + "/Call of Duty MP.app": - when: - os: mac store: steam - /Call of Duty SP.app: + "/Call of Duty SP.app": - when: - os: mac store: steam - /CoDMP.exe: + "/CoDMP.exe": - when: - os: windows store: steam - /CoDSP.exe: + "/CoDSP.exe": - when: - os: windows store: steam @@ -84359,12 +84613,12 @@ Call of Duty: id: 2620 Call of Duty 2: files: - /main/players: + "/main/players": tags: - save when: - os: windows - /main/players//*.cfg: + "/main/players//*.cfg": tags: - config when: @@ -84372,32 +84626,32 @@ Call of Duty 2: installDir: Call of Duty 2: {} launch: - /Call of Duty 2.app: + "/Call of Duty 2.app": - when: - os: mac store: steam - /Call of Duty 2.app/Contents/Call of Duty 2 Multiplayer.app: + "/Call of Duty 2.app/Contents/Call of Duty 2 Multiplayer.app": - when: - os: mac store: steam - /CoD2MP_s.exe: + "/CoD2MP_s.exe": - when: - os: windows store: steam - /CoD2SP_s.exe: + "/CoD2SP_s.exe": - when: - os: windows store: steam steam: id: 2630 -'Call of Duty 4: Modern Warfare': +"Call of Duty 4: Modern Warfare": files: - /players/profiles: + "/players/profiles": tags: - save when: - os: windows - /players/profiles//config.cfg: + "/players/profiles//config.cfg": tags: - config when: @@ -84405,27 +84659,27 @@ Call of Duty 2: installDir: Call of Duty 4: {} launch: - /Call of Duty 4.app: + "/Call of Duty 4.app": - when: - os: mac store: steam - /Call of Duty 4.app/Contents/Call of Duty 4 Multiplayer.app: + "/Call of Duty 4.app/Contents/Call of Duty 4 Multiplayer.app": - when: - os: mac store: steam - /iw3mp.exe: + "/iw3mp.exe": - when: - os: windows store: steam - /iw3sp.exe: + "/iw3sp.exe": - when: - os: windows store: steam steam: id: 7940 -'Call of Duty: Advanced Warfare': +"Call of Duty: Advanced Warfare": files: - /players2: + "/players2": tags: - config when: @@ -84437,29 +84691,29 @@ Call of Duty 2: installDir: Call of Duty Advanced Warfare: {} launch: - /s1_sp64_ship.exe: + "/s1_sp64_ship.exe": - when: - store: steam steam: id: 209650 -'Call of Duty: Black Ops': +"Call of Duty: Black Ops": files: - /players: + "/players": tags: - config when: - os: windows - /players/save: + "/players/save": tags: - save when: - os: windows - /Library/Application Support/Call of Duty Black Ops/players: + "/Library/Application Support/Call of Duty Black Ops/players": tags: - config when: - os: mac - /Library/Application Support/Call of Duty Black Ops/players/save: + "/Library/Application Support/Call of Duty Black Ops/players/save": tags: - save when: @@ -84467,30 +84721,30 @@ Call of Duty 2: id: steamExtra: - 42710 + - 42716 + - 42718 - 42719 - 42722 - - 42718 - - 42716 - 214630 - - 214649 - - 214643 - 214640 + - 214643 + - 214649 installDir: Call of Duty Black Ops: {} launch: - /BlackOps.exe: + "/BlackOps.exe": - when: - os: windows store: steam - /CoDBlackOps.app: + "/CoDBlackOps.app": - when: - os: mac store: steam steam: id: 42700 -'Call of Duty: Black Ops Cold War': +"Call of Duty: Black Ops Cold War": files: - /Call Of Duty Black Ops Cold War/player/: + "/Call Of Duty Black Ops Cold War/player/": tags: - config - save @@ -84499,36 +84753,36 @@ Call of Duty 2: installDir: Call of Duty Black Ops Cold War: {} launch: - /BlackOpsColdWar.exe: + "/BlackOpsColdWar.exe": - when: - bit: 64 os: windows store: steam steam: id: 1985810 -'Call of Duty: Black Ops II': +"Call of Duty: Black Ops II": files: - /players/bindings_*.bdg: + "/players/bindings_*.bdg": tags: - config when: - os: windows - /players/hardware*.chp: + "/players/hardware*.chp": tags: - save when: - os: windows - /players/savegame.foo: + "/players/savegame.foo": tags: - save when: - os: windows - /players/savegame.svg: + "/players/savegame.svg": tags: - save when: - os: windows - /players/user_*.cgp: + "/players/user_*.cgp": tags: - save when: @@ -84539,14 +84793,14 @@ Call of Duty 2: installDir: Call of Duty Black Ops II: {} launch: - /t6sp.exe: + "/t6sp.exe": - when: - store: steam steam: id: 202970 -'Call of Duty: Black Ops III': +"Call of Duty: Black Ops III": files: - /players: + "/players": tags: - config - save @@ -84555,26 +84809,26 @@ Call of Duty 2: installDir: Call of Duty Black Ops III: {} launch: - /CoDBlkOps3.app: + "/CoDBlkOps3.app": - when: - os: mac store: steam - /blackops3.exe: + "/blackops3.exe": - when: - os: windows store: steam steam: id: 311210 -'Call of Duty: Black Ops IIII': +"Call of Duty: Black Ops IIII": files: - /players: + "/players": tags: - config when: - os: windows -'Call of Duty: Ghosts': +"Call of Duty: Ghosts": files: - /players2: + "/players2": tags: - config - save @@ -84582,25 +84836,25 @@ Call of Duty 2: - os: windows id: steamExtra: - - 255163 - 209170 - 255160 + - 255163 installDir: Call of Duty Ghosts: {} launch: - /iw6sp64_ship.exe: + "/iw6sp64_ship.exe": - when: - store: steam steam: id: 209160 -'Call of Duty: Infinite Warfare': +"Call of Duty: Infinite Warfare": files: - /players2: + "/players2": tags: - config when: - store: steam - /Packages/38985CA0.PCCallofDutyInfiniteWarfare_5bkah9njm3e9g/LocalState: + "/Packages/38985CA0.PCCallofDutyInfiniteWarfare_5bkah9njm3e9g/LocalState": tags: - config when: @@ -84609,16 +84863,16 @@ Call of Duty 2: installDir: Call of Duty - Infinite Warfare: {} launch: - /iw7_ship.exe: + "/iw7_ship.exe": - when: - bit: 64 os: windows store: steam steam: id: 292730 -'Call of Duty: Modern Warfare': +"Call of Duty: Modern Warfare": files: - /Call of Duty Modern Warfare/players: + "/Call of Duty Modern Warfare/players": tags: - config - save @@ -84627,7 +84881,7 @@ Call of Duty 2: installDir: Call of Duty Modern Warfare: {} launch: - /bootstrapper.exe: + "/bootstrapper.exe": - arguments: ModernWarfare.exe when: - bit: 64 @@ -84635,24 +84889,24 @@ Call of Duty 2: store: steam steam: id: 2000950 -'Call of Duty: Modern Warfare 2': +"Call of Duty: Modern Warfare 2": files: - /players: + "/players": tags: - config when: - os: windows - /players/save: + "/players/save": tags: - save when: - os: windows - /players/settings_c.zip.iw4: + "/players/settings_c.zip.iw4": tags: - save when: - os: windows - /players/settings_s.zip.iw4: + "/players/settings_s.zip.iw4": tags: - save when: @@ -84663,32 +84917,32 @@ Call of Duty 2: installDir: Call of Duty Modern Warfare 2: {} launch: - /COD_MW2_SP.app: + "/COD_MW2_SP.app": - when: - os: mac store: steam - /iw4sp.exe: + "/iw4sp.exe": - when: - os: windows store: steam steam: id: 10180 -'Call of Duty: Modern Warfare 2 Campaign Remastered': +"Call of Duty: Modern Warfare 2 Campaign Remastered": files: - /players2/: + "/players2/": tags: - config - save when: - os: windows -'Call of Duty: Modern Warfare 3': +"Call of Duty: Modern Warfare 3": files: - /players2/*.cfg: + "/players2/*.cfg": tags: - config when: - os: windows - /players2/save: + "/players2/save": tags: - save when: @@ -84699,9 +84953,9 @@ Call of Duty 2: - 42690 steam: id: 115300 -'Call of Duty: Modern Warfare II': +"Call of Duty: Modern Warfare II": files: - /Call of Duty/players: + "/Call of Duty/players": tags: - config - save @@ -84710,7 +84964,7 @@ Call of Duty 2: installDir: Call of Duty HQ: {} launch: - /bootstrapper.exe: + "/bootstrapper.exe": - arguments: cod.exe when: - bit: 64 @@ -84718,9 +84972,9 @@ Call of Duty 2: store: steam steam: id: 1938090 -'Call of Duty: Modern Warfare III': +"Call of Duty: Modern Warfare III": files: - /Call of Duty/players: + "/Call of Duty/players": tags: - config - save @@ -84728,14 +84982,14 @@ Call of Duty 2: - os: windows steam: id: 2519060 -'Call of Duty: Modern Warfare Remastered': +"Call of Duty: Modern Warfare Remastered": files: - /players2: + "/players2": tags: - config when: - store: steam - /players2/savegame.svg: + "/players2/savegame.svg": tags: - save when: @@ -84746,21 +85000,21 @@ Call of Duty 2: installDir: Call of Duty Modern Warfare Remastered: {} launch: - /h1_sp64_ship.exe: + "/h1_sp64_ship.exe": - when: - bit: 64 os: windows store: steam steam: id: 393080 -'Call of Duty: Vanguard': +"Call of Duty: Vanguard": files: - /Call of Duty Vanguard/player: + "/Call of Duty Vanguard/player": tags: - save when: - os: windows - /Call of Duty Vanguard/players: + "/Call of Duty Vanguard/players": tags: - config when: @@ -84768,7 +85022,7 @@ Call of Duty 2: installDir: Call of Duty Vanguard: {} launch: - /bootstrapper.exe: + "/bootstrapper.exe": - arguments: Vanguard.exe when: - bit: 64 @@ -84776,9 +85030,9 @@ Call of Duty 2: store: steam steam: id: 1985820 -'Call of Duty: WWII': +"Call of Duty: WWII": files: - /players2: + "/players2": tags: - config - save @@ -84790,24 +85044,24 @@ Call of Duty 2: installDir: Call of Duty WWII: {} launch: - /s2_sp64_ship.exe: + "/s2_sp64_ship.exe": - when: - bit: 64 os: windows store: steam steam: id: 476600 -'Call of Duty: Warzone 2.0': +"Call of Duty: Warzone 2.0": steam: id: 1962663 -'Call of Duty: World at War': +"Call of Duty: World at War": files: - /Activision/CoDWaW/players/profiles: + "/Activision/CoDWaW/players/profiles": tags: - save when: - os: windows - /Activision/CoDWaW/players/profiles/*.cfg: + "/Activision/CoDWaW/players/profiles/*.cfg": tags: - config when: @@ -84815,10 +85069,10 @@ Call of Duty 2: installDir: Call of Duty World at War: {} launch: - /CoDWaW.exe: + "/CoDWaW.exe": - when: - store: steam - /CoDWaWmp.exe: + "/CoDWaWmp.exe": - when: - store: steam steam: @@ -84827,7 +85081,7 @@ Call of Fries: installDir: Call of Fries: {} launch: - /Call_of_Fries.exe: + "/Call_of_Fries.exe": - when: - os: windows store: steam @@ -84838,12 +85092,12 @@ Call of Honor: id: 1131770 Call of Juarez: files: - /call of juarez/out/Settings: + "/call of juarez/out/Settings": tags: - config when: - os: windows - /call of juarez/out/save: + "/call of juarez/out/save": tags: - save when: @@ -84853,42 +85107,42 @@ Call of Juarez: installDir: Call of Juarez: {} launch: - /CoJ.exe: + "/CoJ.exe": - when: - store: steam - - arguments: '-safemode' + - arguments: "-safemode" when: - store: steam - - arguments: '-server -dedicated -internet' + - arguments: "-server -dedicated -internet" when: - store: steam - /CoJ_DX10.exe: + "/CoJ_DX10.exe": - when: - store: steam - - arguments: '-safemode' + - arguments: "-safemode" when: - store: steam - /chromEd.exe: + "/chromEd.exe": - when: - store: steam - /cojdx10_benchmark.exe: + "/cojdx10_benchmark.exe": - when: - store: steam steam: id: 3020 -'Call of Juarez: Bound in Blood': +"Call of Juarez: Bound in Blood": files: - /Call of Juarez - Bound in Blood/Out/Settings: + "/Call of Juarez - Bound in Blood/Out/Settings": tags: - config when: - os: windows - /Call of Juarez - Bound in Blood/Out/profiles: + "/Call of Juarez - Bound in Blood/Out/profiles": tags: - save when: - os: windows - /Call of Juarez - Bound in Blood/Out/save/: + "/Call of Juarez - Bound in Blood/Out/save/": tags: - save when: @@ -84898,24 +85152,24 @@ Call of Juarez: installDir: Call of Juarez - Bound in Blood: {} launch: - /CoJBiBGame_x86.exe: + "/CoJBiBGame_x86.exe": - when: - store: steam steam: id: 21980 -'Call of Juarez: Gunslinger': +"Call of Juarez: Gunslinger": files: - /userdata//204450/remote/out: + "/userdata//204450/remote/out": tags: - save when: - store: steam - /techland/cojgunslinger/out: + "/techland/cojgunslinger/out": tags: - save when: - os: windows - /techland/cojgunslinger/out/Settings/Video.scr: + "/techland/cojgunslinger/out/Settings/Video.scr": tags: - config when: @@ -84925,21 +85179,21 @@ Call of Juarez: installDir: CoJ Gunslinger: {} launch: - /CoJGunslinger.exe: + "/CoJGunslinger.exe": - when: - os: windows store: steam steam: id: 204450 -'Call of Juarez: The Cartel': +"Call of Juarez: The Cartel": files: - /userdata//33420/remote/out: + "/userdata//33420/remote/out": tags: - save when: - os: windows store: steam - /Call of Juarez - The Cartel/out/Settings: + "/Call of Juarez - The Cartel/out/Settings": tags: - config when: @@ -84947,8 +85201,8 @@ Call of Juarez: installDir: Call of Juarez - The Cartel: {} launch: - /CoJ_TheCartel.exe: - - arguments: '-uplay_steam_mode' + "/CoJ_TheCartel.exe": + - arguments: "-uplay_steam_mode" when: - store: steam - arguments: /dx11 -uplay_steam_mode @@ -84960,7 +85214,7 @@ Call of Nightmare: installDir: Call of Nightmare: {} launch: - /Call of Nightmare.exe: + "/Call of Nightmare.exe": - when: - store: steam steam: @@ -84969,7 +85223,7 @@ Call of Otechestvo Donbass: installDir: Call of Otechestvo Donbass: {} launch: - /test.exe: + "/test.exe": - when: - os: windows store: steam @@ -84984,7 +85238,7 @@ Call of Tomsk-7: installDir: Call of Tomsk-7: {} launch: - /Call of Tomsk-7.exe: + "/Call of Tomsk-7.exe": - when: - os: windows store: steam @@ -84994,11 +85248,11 @@ Call of War: installDir: Call of War: {} launch: - /Call of War.app/Contents/MacOS/Call of War: + "/Call of War.app/Contents/MacOS/Call of War": - when: - os: mac store: steam - /Call of War.exe: + "/Call of War.exe": - when: - os: windows store: steam @@ -85008,7 +85262,7 @@ Call of the Mighty Warriors: installDir: SC Jogos: {} launch: - /Call Of The Mighty Warriors/Call Of The Mighty Warriors.exe: + "/Call Of The Mighty Warriors/Call Of The Mighty Warriors.exe": - when: - os: windows store: steam @@ -85018,15 +85272,15 @@ Call of the Ninja!: installDir: Call of the Ninja: {} launch: - /Call of the Ninja.app: + "/Call of the Ninja.app": - when: - os: mac store: steam - /Call of the Ninja.exe: + "/Call of the Ninja.exe": - when: - os: windows store: steam - /NinjaBuilderCommunity.exe: + "/NinjaBuilderCommunity.exe": - when: - os: windows store: steam @@ -85039,23 +85293,23 @@ Call of the Ocean: id: 630670 Call of the Sea: files: - /COTS/Saved/Config/WindowsNoEditor: + "/COTS/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /COTS/Saved/SaveGames: + "/COTS/Saved/SaveGames": tags: - save when: - os: windows - /Packages/RawFury.CallofTheSeaW10_9s0pnehqffj7t/LocalCache/Local/COTS/Saved/Config/WinGDK: + "/Packages/RawFury.CallofTheSeaW10_9s0pnehqffj7t/LocalCache/Local/COTS/Saved/Config/WinGDK": tags: - config when: - os: windows store: microsoft - /Packages/RawFury.CallofTheSeaW10_9s0pnehqffj7t/SystemAppData/wgs: + "/Packages/RawFury.CallofTheSeaW10_9s0pnehqffj7t/SystemAppData/wgs": tags: - save when: @@ -85066,7 +85320,7 @@ Call of the Sea: installDir: Call of the Sea: {} launch: - /COTS.exe: + "/COTS.exe": - when: - bit: 64 os: windows @@ -85081,7 +85335,7 @@ Call to 10: id: 575870 Call to Arms: files: - /My Games/call to arms/profiles/"string of numbers": + "/My Games/call to arms/profiles/\"string of numbers\"": tags: - config - save @@ -85090,16 +85344,16 @@ Call to Arms: installDir: Call to Arms: {} launch: - /binaries/x64/call_to_arms.exe: + "/binaries/x64/call_to_arms.exe": - when: - store: steam - - arguments: '-safe' + - arguments: "-safe" when: - store: steam - - arguments: '-no_mods' + - arguments: "-no_mods" when: - store: steam - /binaries/x64/call_to_arms_ed.exe: + "/binaries/x64/call_to_arms_ed.exe": - when: - bit: 64 store: steam @@ -85107,17 +85361,17 @@ Call to Arms: id: 302670 Call to Power II: files: - /ctp2_program/ctp/save: + "/ctp2_program/ctp/save": tags: - save when: - os: windows - /ctp2_program/ctp/userkeymap.txt: + "/ctp2_program/ctp/userkeymap.txt": tags: - config when: - os: windows - /ctp2_program/ctp/userprofile.txt: + "/ctp2_program/ctp/userprofile.txt": tags: - config when: @@ -85127,7 +85381,7 @@ Call to Power II: installDir: Call to Power II: {} launch: - /ctp2_program/ctp/ctp2.exe: + "/ctp2_program/ctp/ctp2.exe": - when: - store: steam steam: @@ -85136,15 +85390,15 @@ CallBack: installDir: CallBack: {} launch: - /CallBackBuild.exe: + "/CallBackBuild.exe": - when: - os: windows store: steam steam: id: 985930 -Caller's Bane: +"Caller's Bane": files: - /AppData/LocalLow/Mojang/Scrolls: + "/AppData/LocalLow/Mojang/Scrolls": tags: - config when: @@ -85153,56 +85407,56 @@ Callisto: installDir: Callisto: {} launch: - /Callisto.exe: + "/Callisto.exe": - when: - bit: 64 os: windows store: steam steam: id: 1049730 -Cally's Caves 3: +"Cally's Caves 3": files: - /CC3_steam_greenlight: + "/CC3_steam_greenlight": tags: - config - save when: - os: windows installDir: - Cally's Caves 3: {} + "Cally's Caves 3": {} launch: - /CC3 steam greenlight.exe: + "/CC3 steam greenlight.exe": - when: - os: windows store: steam steam: id: 418120 -Cally's Caves 4: +"Cally's Caves 4": files: - /Super_Callys_World_Steam: + "/Super_Callys_World_Steam": tags: - save when: - os: windows installDir: - Cally's Caves 4: {} + "Cally's Caves 4": {} launch: - /Cally's Caves 4.exe: + "/Cally's Caves 4.exe": - when: - store: steam steam: id: 642580 -Cally's Trials: +"Cally's Trials": files: - /CC2_Steam_Greenlight: + "/CC2_Steam_Greenlight": tags: - save when: - os: windows installDir: - Cally's Trials: {} + "Cally's Trials": {} launch: - /Cally's Trials.exe: + "/Cally's Trials.exe": - when: - os: windows store: steam @@ -85212,50 +85466,50 @@ Calm Cards - Klondike: installDir: Calm Cards - Klondike: {} launch: - /KlondikeBuild.exe: + "/KlondikeBuild.exe": - when: - os: windows store: steam steam: id: 864500 -'Calm Down, Stalin': +"Calm Down, Stalin": installDir: - 'Calm Down, Stalin': {} + "Calm Down, Stalin": {} launch: - /Stalin.exe: + "/Stalin.exe": - when: - os: windows store: steam steam: id: 502940 -'Calm Down, Stalin - VR': +"Calm Down, Stalin - VR": installDir: - 'Calm Down, Stalin - VR': {} + "Calm Down, Stalin - VR": {} steam: id: 1133990 Calm Waters: installDir: Calm Waters: {} launch: - /Calm Waters.app: + "/Calm Waters.app": - when: - os: mac store: steam - /Calm Waters.exe: + "/Calm Waters.exe": - when: - os: windows store: steam - /Calm Waters.x86: + "/Calm Waters.x86": - when: - os: linux store: steam steam: id: 541350 -Calvin Tucker's Farm Animal Racing: +"Calvin Tucker's Farm Animal Racing": installDir: - Calvin Tucker's Farm Animal Racing: {} + "Calvin Tucker's Farm Animal Racing": {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -85265,11 +85519,11 @@ Calvino Noir: installDir: Calvino Noir: {} launch: - /application.exe: + "/application.exe": - when: - os: windows store: steam - /calvinonoirosx: + "/calvinonoirosx": - when: - os: mac store: steam @@ -85280,7 +85534,7 @@ Cam Girls Company Tycoon: id: 850910 Camera Obscura: files: - /userdata//341500/remote/.prof: + "/userdata//341500/remote/.prof": tags: - save when: @@ -85288,10 +85542,10 @@ Camera Obscura: installDir: Camera Obscura: {} launch: - /CameraObscura.exe: + "/CameraObscura.exe": - when: - store: steam - /Editor.exe: + "/Editor.exe": - when: - store: steam steam: @@ -85300,7 +85554,7 @@ Camp Focus: installDir: Camp Focus: {} launch: - /CampFocus.exe: + "/CampFocus.exe": - when: - store: steam steam: @@ -85314,11 +85568,11 @@ Camp Sunshine: installDir: Camp Sunshine: {} launch: - /Game.app: + "/Game.app": - when: - os: mac store: steam - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -85328,11 +85582,11 @@ Camp W: installDir: Camp W: {} launch: - /CampW.app/Contents/MacOS/CampW: + "/CampW.app/Contents/MacOS/CampW": - when: - os: mac store: steam - /CampW.exe: + "/CampW.exe": - when: - os: windows store: steam @@ -85340,7 +85594,7 @@ Camp W: id: 820510 Campaign Clicker: files: - /SpringClick: + "/SpringClick": tags: - save when: @@ -85348,7 +85602,7 @@ Campaign Clicker: installDir: Campaign Clicker: {} launch: - /CampaignClicker.exe: + "/CampaignClicker.exe": - when: - os: windows store: steam @@ -85358,7 +85612,7 @@ Camper Jumper Simulator: installDir: Camper: {} launch: - /Camper.exe: + "/Camper.exe": - when: - os: windows store: steam @@ -85368,27 +85622,27 @@ Campfire Cooking: installDir: Campfire Cooking: {} launch: - /Campfire Cooking.exe: + "/Campfire Cooking.exe": - when: - os: windows store: steam steam: id: 679500 -'Campfire: One of Us Is the Killer': +"Campfire: One of Us Is the Killer": installDir: Campfire: {} launch: - /campfire.exe: + "/campfire.exe": - when: - os: windows store: steam steam: id: 533180 -'Campgrounds: The Endorus Expedition': +"Campgrounds: The Endorus Expedition": installDir: - Campgrounds The Endorus Expedition Collector's Edition: {} + "Campgrounds The Endorus Expedition Collector's Edition": {} launch: - /Campgrounds_The EndorusExpeditionCE.exe: + "/Campgrounds_The EndorusExpeditionCE.exe": - when: - os: windows store: steam @@ -85398,11 +85652,11 @@ Campido: installDir: Campido: {} launch: - /Campido.app: + "/Campido.app": - when: - os: mac store: steam - /Campido.exe: + "/Campido.exe": - when: - os: windows store: steam @@ -85415,15 +85669,15 @@ Campus Notes - forget me not.: installDir: forget me not: {} launch: - /campus_notes.exe: + "/campus_notes.exe": - when: - os: windows store: steam steam: id: 435360 -'Camy 2: The Machine': +"Camy 2: The Machine": files: - /Options_c2.dat: + "/Options_c2.dat": tags: - config when: @@ -85435,25 +85689,25 @@ Can You find it?: installDir: Can You find it: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam steam: id: 929600 -Can't Drive This: +"Can't Drive This": installDir: CantDriveThis: {} launch: - /Cantdrivethis.app: + "/Cantdrivethis.app": - when: - os: mac store: steam - /Cantdrivethis.exe: + "/Cantdrivethis.exe": - when: - os: windows store: steam - /Cantdrivethis.x86_64: + "/Cantdrivethis.x86_64": - when: - bit: 64 os: linux @@ -85473,7 +85727,7 @@ CanYouSurvive?: installDir: CanYouSurvive: {} launch: - /RunRunRun.exe: + "/RunRunRun.exe": - when: - os: windows store: steam @@ -85481,7 +85735,7 @@ CanYouSurvive?: id: 876580 Canabalt: files: - /userdata//358960/remote/SaveData: + "/userdata//358960/remote/SaveData": tags: - save when: @@ -85489,21 +85743,24 @@ Canabalt: installDir: Canabalt: {} launch: - /Canabalt.app: + "/Canabalt.app": - when: - os: mac store: steam - /Canabalt.exe: + "/Canabalt.exe": - when: - bit: 32 os: windows store: steam - /Canabalt.x86: + - bit: 64 + os: windows + store: steam + "/Canabalt.x86": - when: - bit: 32 os: linux store: steam - /Canabalt.x86_64: + "/Canabalt.x86_64": - when: - bit: 64 os: linux @@ -85518,12 +85775,12 @@ Canadian Football 2017: installDir: Canadian Football 2017: {} launch: - /CFB2017.exe: + "/CFB2017.exe": - when: - bit: 64 os: windows store: steam - - arguments: '-force-d3d9' + - arguments: "-force-d3d9" when: - bit: 64 os: windows @@ -85537,11 +85794,11 @@ Canari: installDir: CANARI: {} launch: - /CANARI_OSX.app: + "/CANARI_OSX.app": - when: - os: mac store: steam - /CANARI_PC.exe: + "/CANARI_PC.exe": - when: - os: windows store: steam @@ -85551,64 +85808,64 @@ Canasta 3D Premium: installDir: Canasta 3D Premium: {} launch: - /Canasta3D.exe: + "/Canasta3D.exe": - when: - os: windows store: steam steam: id: 966090 -'Candera: The Forgotten Realm': +"Candera: The Forgotten Realm": installDir: Candera The Forgotten Realm: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam steam: id: 1204480 -Candice DeBébé's Incredibly Trick Lifestyle: +"Candice DeBébé's Incredibly Trick Lifestyle": installDir: - Candice DeBébé's Incredibly Trick Lifestyle: {} + "Candice DeBébé's Incredibly Trick Lifestyle": {} launch: - /Candice.app: + "/Candice.app": - when: - os: mac store: steam - /Candice.exe: + "/Candice.exe": - when: - os: windows store: steam - /Candice.x86: + "/Candice.x86": - when: - bit: 32 os: linux store: steam - /Candice.x86_64: + "/Candice.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 453790 -Candice DeBébé's Scandalous Secrets: +"Candice DeBébé's Scandalous Secrets": installDir: - Candice DeBébé's Scandalous Secrets: {} + "Candice DeBébé's Scandalous Secrets": {} launch: - /CandiceSecrets.app: + "/CandiceSecrets.app": - when: - os: mac store: steam - /CandiceSecrets.exe: + "/CandiceSecrets.exe": - when: - os: windows store: steam - /CandiceSecrets.x86: + "/CandiceSecrets.x86": - when: - bit: 32 os: linux store: steam - /CandiceSecrets.x86_64: + "/CandiceSecrets.x86_64": - when: - bit: 64 os: linux @@ -85617,17 +85874,17 @@ Candice DeBébé's Scandalous Secrets: id: 941540 Candle: files: - /Daedalic Entertainment GmbH/CANDLE/*.sav: + "/Daedalic Entertainment GmbH/CANDLE/*.sav": tags: - save when: - os: windows - /unity3d/Daedalic Entertainment GmbH/CANDLE/prefs: + "/unity3d/Daedalic Entertainment GmbH/CANDLE/prefs": tags: - config when: - os: linux - /Daedalic Entertainment GmbH/CANDLE/*.sav: + "/Daedalic Entertainment GmbH/CANDLE/*.sav": tags: - save when: @@ -85637,15 +85894,15 @@ Candle: installDir: Candle: {} launch: - /Candle.app: + "/Candle.app": - when: - os: mac store: steam - /Candle.exe: + "/Candle.exe": - when: - os: windows store: steam - /Candle.x86_64: + "/Candle.x86_64": - when: - bit: 64 os: linux @@ -85660,19 +85917,19 @@ Candlelight: installDir: Candlelight: {} launch: - /Candlelight-PC.exe: + "/Candlelight-PC.exe": - when: - store: steam steam: id: 451200 -'Candleman: The Complete Journey': +"Candleman: The Complete Journey": files: - /AppData/LocalLow/Spotlightor Interactive/Candleman: + "/AppData/LocalLow/Spotlightor Interactive/Candleman": tags: - save when: - os: windows - /userdata//591630/remote: + "/userdata//591630/remote": tags: - save when: @@ -85682,11 +85939,11 @@ Candlelight: installDir: Candleman: {} launch: - /Candleman.app: + "/Candleman.app": - when: - os: mac store: steam - /Candleman.exe: + "/Candleman.exe": - when: - os: windows store: steam @@ -85700,7 +85957,7 @@ Candy Adventure: installDir: Candy Adventure: {} launch: - /CandyAdventure.exe: + "/CandyAdventure.exe": - when: - bit: 64 os: windows @@ -85711,11 +85968,11 @@ Candy Blast: installDir: Candy Blast: {} launch: - /candyblast.exe: + "/candyblast.exe": - when: - os: windows store: steam - /run.sh: + "/run.sh": - when: - os: linux store: steam @@ -85738,7 +85995,7 @@ Candy Machine: installDir: Candy Machine: {} launch: - /Candy Machine.exe: + "/Candy Machine.exe": - when: - os: windows store: steam @@ -85748,20 +86005,20 @@ Candy Mandy: installDir: Candy Mandy: {} launch: - /CandyMandy.exe: + "/CandyMandy.exe": - when: - store: steam steam: id: 1022040 -'Candy Raid: The Factory': +"Candy Raid: The Factory": installDir: Candy Raid The Factory: {} launch: - /Candy Raid The Factory.exe: + "/Candy Raid The Factory.exe": - when: - os: windows store: steam - /candyraidthefactory.x86_64: + "/candyraidthefactory.x86_64": - when: - os: linux store: steam @@ -85776,7 +86033,7 @@ Candy Snake Master: installDir: Candy Snake Master: {} launch: - /CandySnakeMaster.exe: + "/CandySnakeMaster.exe": - when: - os: windows store: steam @@ -85786,11 +86043,11 @@ Candy Thieves - Tale of Gnomes: installDir: Candy Thieves - Tale of Gnomes: {} launch: - /CandyThieves/CandyThieves.app: + "/CandyThieves/CandyThieves.app": - when: - os: mac store: steam - /CandyTieves.exe: + "/CandyTieves.exe": - when: - os: windows store: steam @@ -85806,21 +86063,21 @@ CandyVenture: installDir: CandyVenture: {} launch: - /CandyVenture.exe: + "/CandyVenture.exe": - when: - os: windows store: steam - /runner: + "/runner": - when: - os: linux store: steam steam: id: 987800 -'Canek: Quest for Corn': +"Canek: Quest for Corn": installDir: Canek Quest for Corn: {} launch: - /Canek.exe: + "/Canek.exe": - when: - os: windows store: steam @@ -85830,7 +86087,7 @@ Canine: installDir: CANINE: {} launch: - /CANINE v1.2/CANINE.exe: + "/CANINE v1.2/CANINE.exe": - when: - os: windows store: steam @@ -85843,7 +86100,7 @@ Cannibal: installDir: Cannibal: {} launch: - /win_x64_release/GameSDK.exe: + "/win_x64_release/GameSDK.exe": - when: - bit: 64 os: windows @@ -85854,17 +86111,19 @@ Cannibal Chickens: installDir: Cannibal Chickens: {} launch: - /Cannibal Chickens.exe: + "/Cannibal Chickens.exe": - when: - os: windows store: steam + - os: mac + store: steam steam: id: 1077390 Cannibal Cuisine: installDir: Cannibal Cuisine: {} launch: - /Cannibal Cuisine.exe: + "/Cannibal Cuisine.exe": - when: - os: windows store: steam @@ -85877,7 +86136,7 @@ Cannon Arena: installDir: Cannon Arena: {} launch: - /CannonArena.exe: + "/CannonArena.exe": - when: - bit: 64 os: windows @@ -85888,15 +86147,15 @@ Cannon Brawl: installDir: Cannon Brawl: {} launch: - /Cannon Brawl.exe: + "/Cannon Brawl.exe": - when: - os: windows store: steam - /LinuxCannon: + "/LinuxCannon": - when: - os: linux store: steam - /MacCannon.app: + "/MacCannon.app": - when: - os: mac store: steam @@ -85906,7 +86165,7 @@ Cannon Crew: installDir: Cannon Crew: {} launch: - /CannonCrew.exe: + "/CannonCrew.exe": - when: - os: windows store: steam @@ -85916,12 +86175,12 @@ Cannon Fire: installDir: Cannon Fire: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: id: 773660 -'Cannon Fire: Bloody Sea': +"Cannon Fire: Bloody Sea": steam: id: 1033600 Cannon Fodder: @@ -85934,7 +86193,7 @@ Cannon Fodder 3: installDir: Cannon Fodder 3: {} launch: - /cf3.exe: + "/cf3.exe": - when: - os: windows store: steam @@ -85942,12 +86201,12 @@ Cannon Fodder 3: id: 209750 Cannonball: files: - /config.xml: + "/config.xml": tags: - config when: - os: windows - /hiscores.xml: + "/hiscores.xml": tags: - save when: @@ -85956,15 +86215,15 @@ Cannonfire Concerto: installDir: Cannonfire Concerto: {} launch: - /Cannonfire Concerto.app/Contents/MacOS/Cannonfire Concerto: + "/Cannonfire Concerto.app/Contents/MacOS/Cannonfire Concerto": - when: - os: mac store: steam - /CannonfireConcerto: + "/CannonfireConcerto": - when: - os: linux store: steam - /CannonfireConcerto.exe: + "/CannonfireConcerto.exe": - when: - os: windows store: steam @@ -85974,25 +86233,25 @@ Cannons Lasers Rockets: installDir: CLR: {} launch: - /clr.app: + "/clr.app": - when: - os: mac store: steam - /clr.exe: + "/clr.exe": - when: - os: windows store: steam - /clr.x86: + "/clr.x86": - when: - os: linux store: steam steam: id: 265770 -'Cannons-Defenders: Steam Edition': +"Cannons-Defenders: Steam Edition": installDir: Cannons-defenders: {} launch: - /Cannons-defenders.exe: + "/Cannons-defenders.exe": - when: - os: windows store: steam @@ -86002,7 +86261,7 @@ Cantata: installDir: Cantata: {} launch: - /cantata.exe: + "/cantata.exe": - when: - os: windows store: steam @@ -86012,11 +86271,11 @@ Cantrip Cafe: installDir: Cantrip Cafe: {} launch: - /Cantrip Cafe.exe: + "/Cantrip Cafe.exe": - when: - os: windows store: steam - /MacBuild.app: + "/MacBuild.app": - when: - os: mac store: steam @@ -86031,11 +86290,11 @@ Canvas The Gallery: installDir: Canvas The Gallery Game: {} launch: - /CTGLinux.x86: + "/CTGLinux.x86": - when: - os: linux store: steam - /CanvasTheGallery.exe: + "/CanvasTheGallery.exe": - when: - os: windows store: steam @@ -86043,7 +86302,7 @@ Canvas The Gallery: id: 590280 Canyon Capers: files: - /userdata//275490: + "/userdata//275490": tags: - save when: @@ -86052,25 +86311,25 @@ Canyon Capers: installDir: Canyon Capers: {} launch: - /CanyonCapers.exe: + "/CanyonCapers.exe": - when: - store: steam steam: id: 275490 -'CapRiders: Euro Soccer': +"CapRiders: Euro Soccer": installDir: CapRiders Euro Soccer: {} launch: - /CapRiders_Universal.app: + "/CapRiders_Universal.app": - when: - os: mac store: steam - /CapRiders_x64.exe: + "/CapRiders_x64.exe": - when: - bit: 64 os: windows store: steam - /CapRiders_x86.exe: + "/CapRiders_x86.exe": - when: - bit: 32 os: windows @@ -86079,7 +86338,7 @@ Canyon Capers: id: 492200 Capcom Arcade 2nd Stadium: files: - /userdata//1755910: + "/userdata//1755910": tags: - save when: @@ -86087,19 +86346,19 @@ Capcom Arcade 2nd Stadium: installDir: Capcom Arcade 2nd Stadium: {} launch: - /CapcomArcade2ndStadium.exe: + "/CapcomArcade2ndStadium.exe": - when: - store: steam steam: id: 1755910 Capcom Arcade Stadium: files: - /config.ini: + "/config.ini": tags: - config when: - os: windows - /userdata//1515950/remote/win64_save: + "/userdata//1515950/remote/win64_save": tags: - save when: @@ -86107,16 +86366,16 @@ Capcom Arcade Stadium: installDir: Capcom Arcade Stadium: {} launch: - /CapcomArcadeStadium.exe: + "/CapcomArcadeStadium.exe": - when: - store: steam steam: id: 1515950 -Capcom Beat 'Em Up Bundle: +"Capcom Beat 'Em Up Bundle": installDir: CBEUB: {} launch: - /CBEUB.exe: + "/CBEUB.exe": - when: - bit: 64 os: windows @@ -86127,7 +86386,7 @@ Capcom Fighting Collection: installDir: CAPCOM FIGHTING COLLECTION: {} launch: - /CapcomFightingCollection.exe: + "/CapcomFightingCollection.exe": - when: - store: steam steam: @@ -86141,17 +86400,17 @@ Capitalism: installDir: Capitalism Plus: {} launch: - /DOSBOX/DOSBox.exe: - - arguments: '-conf dosboxCapPlus.conf -conf dosboxCapPlus_single.conf -noconsole' + "/DOSBOX/DOSBox.exe": + - arguments: "-conf dosboxCapPlus.conf -conf dosboxCapPlus_single.conf -noconsole" when: - os: windows store: steam - workingDir: /DOSBOX + workingDir: "/DOSBOX" steam: id: 450120 Capitalism II: files: - /save: + "/save": tags: - save when: @@ -86161,7 +86420,7 @@ Capitalism II: installDir: Capitalism 2: {} launch: - /Cap2.exe: + "/Cap2.exe": - when: - os: windows store: steam @@ -86171,13 +86430,13 @@ Capitals: installDir: Capitals: {} launch: - /Capitals.exe: + "/Capitals.exe": - when: - os: windows store: steam steam: id: 2083790 -'Capria: Magic of the Elements': +"Capria: Magic of the Elements": installDir: Capria: {} steam: @@ -86186,12 +86445,12 @@ Capsa: installDir: Capsa: {} launch: - /CapsaClient.exe: + "/CapsaClient.exe": - when: - bit: 64 os: windows store: steam - - arguments: '-dx11' + - arguments: "-dx11" when: - bit: 64 os: windows @@ -86202,8 +86461,11 @@ Capsella The Lights of Lucern: installDir: Capsella The Lights of Lucern: {} launch: - /WindowsNoEditor/CapsellaGame.exe: + "/WindowsNoEditor/CapsellaGame.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam @@ -86214,19 +86476,19 @@ Capsize: id: 1092680 Capsized: files: - /Content/Config.cfg: + "/Content/Config.cfg": tags: - config - save when: - os: windows - /Library/Application Support/Capsized/Config.cfg: + "/Library/Application Support/Capsized/Config.cfg": tags: - config - save when: - os: mac - /Capsized/Config.cfg: + "/Capsized/Config.cfg": tags: - config - save @@ -86237,15 +86499,15 @@ Capsized: installDir: Capsized: {} launch: - /Capsized: + "/Capsized": - when: - os: linux store: steam - /Capsized.app: + "/Capsized.app": - when: - os: mac store: steam - /Capsized.exe: + "/Capsized.exe": - when: - os: windows store: steam @@ -86253,7 +86515,7 @@ Capsized: id: 95300 Capsular: files: - /Capsular/Saved/Config/WindowsNoEditor: + "/Capsular/Saved/Config/WindowsNoEditor": tags: - config when: @@ -86261,7 +86523,7 @@ Capsular: installDir: Capsular: {} launch: - /Capsular.exe: + "/Capsular.exe": - when: - os: windows store: steam @@ -86271,11 +86533,11 @@ Capsule: installDir: CAPSULE: {} launch: - /CAPSULE.app: + "/CAPSULE.app": - when: - os: mac store: steam - /CAPSULE.exe: + "/CAPSULE.exe": - when: - os: windows store: steam @@ -86285,15 +86547,15 @@ Capsule Force: installDir: Capsule Force: {} launch: - /Capsule Force: + "/Capsule Force": - when: - os: mac store: steam - /Capsule Force.exe: + "/Capsule Force.exe": - when: - os: windows store: steam - /CapsuleForce: + "/CapsuleForce": - when: - os: linux store: steam @@ -86303,25 +86565,25 @@ Capsule Jump: installDir: Capsule Jump: {} launch: - /Capsule Jump.app/Contents/MacOS/Capsule Jump: + "/Capsule Jump.app/Contents/MacOS/Capsule Jump": - when: - os: mac store: steam - /Capsule Jump.exe: + "/Capsule Jump.exe": - when: - os: windows store: steam - /Capsule Jump.x86_64: + "/Capsule Jump.x86_64": - when: - os: linux store: steam steam: id: 798350 -'Captain 13: Beyond the Hero': +"Captain 13: Beyond the Hero": installDir: Captain 13 Beyond the Hero: {} launch: - /Captain13PC.exe: + "/Captain13PC.exe": - when: - os: windows store: steam @@ -86331,56 +86593,56 @@ Captain Backwater: installDir: Captain Backwater: {} launch: - /linux_content/CaptainBackwater: + "/linux_content/CaptainBackwater": - when: - os: linux store: steam - workingDir: /linux_content - /osx_content/CaptainBackwater.app: + workingDir: "/linux_content" + "/osx_content/CaptainBackwater.app": - when: - os: mac store: steam - workingDir: /osx_content - /windows_content/CaptainBackwater.exe: + workingDir: "/osx_content" + "/windows_content/CaptainBackwater.exe": - when: - os: windows store: steam - workingDir: /windows_content + workingDir: "/windows_content" steam: id: 695830 Captain Bones: installDir: Captain Bones: {} launch: - /Captain Bones.exe: + "/Captain Bones.exe": - when: - bit: 64 os: windows store: steam steam: id: 951820 -'Captain Cook: Word Puzzle': +"Captain Cook: Word Puzzle": installDir: Captain Cook Word Puzzle: {} launch: - /Captain Cook.exe: + "/Captain Cook.exe": - when: - os: windows store: steam - /CaptainCook.x86_64: + "/CaptainCook.x86_64": - when: - store: steam - /Contents/MacOS/Captain Cook: + "/Contents/MacOS/Captain Cook": - when: - os: mac store: steam steam: id: 1172000 -Captain Curve's Intergalactic Space Adventure: +"Captain Curve's Intergalactic Space Adventure": installDir: Curve - War Child: {} launch: - /WarChild.exe: + "/WarChild.exe": - when: - os: windows store: steam @@ -86390,12 +86652,12 @@ Captain Firebeard and the Bay of Crows: installDir: Captain Firebeard and the Bay of Crows: {} launch: - /nw.exe: - - arguments: '--in-process-gpu' + "/nw.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam - /nwjs.app: + "/nwjs.app": - when: - os: mac store: steam @@ -86405,15 +86667,15 @@ Captain Forever Remix: installDir: cap4ever: {} launch: - /cap4ever.app: + "/cap4ever.app": - when: - os: mac store: steam - /cap4ever.exe: + "/cap4ever.exe": - when: - os: windows store: steam - /cap4ever.x86: + "/cap4ever.x86": - when: - os: linux store: steam @@ -86423,7 +86685,7 @@ Captain Forever Trilogy: installDir: Captain Forever Trilogy: {} launch: - /CaptainForeverTrilogy.exe: + "/CaptainForeverTrilogy.exe": - when: - os: windows store: steam @@ -86433,21 +86695,21 @@ Captain Kaon: installDir: Captain Kaon: {} launch: - /Captain Kaon.exe: + "/Captain Kaon.exe": - when: - os: windows store: steam steam: id: 527380 -'Captain Lycop: Invasion of the Heters': +"Captain Lycop: Invasion of the Heters": installDir: lycop: {} launch: - /lycop: + "/lycop": - when: - os: linux store: steam - /lycop.exe: + "/lycop.exe": - when: - os: windows store: steam @@ -86457,7 +86719,7 @@ Captain MaCaw: installDir: Captain MaCaw: {} launch: - /MaCaw.exe: + "/MaCaw.exe": - when: - os: windows store: steam @@ -86465,12 +86727,12 @@ Captain MaCaw: id: 946000 Captain Morgane and the Golden Turtle: files: - /Settings.ini: + "/Settings.ini": tags: - config when: - os: windows - /save.dat: + "/save.dat": tags: - save when: @@ -86478,7 +86740,7 @@ Captain Morgane and the Golden Turtle: installDir: CaptainMorgane: {} launch: - /CaptainMorgane.exe: + "/CaptainMorgane.exe": - when: - os: windows store: steam @@ -86488,7 +86750,7 @@ Captain Sabertooth and the Magic Diamond: installDir: Captain Sabertooth & the Magic Diamond: {} launch: - /KapteinSabeltann.exe: + "/KapteinSabeltann.exe": - when: - os: windows store: steam @@ -86498,7 +86760,7 @@ Captain Starshot: installDir: CaptainStarshot: {} launch: - /CaptainStarshot.exe: + "/CaptainStarshot.exe": - when: - bit: 64 os: windows @@ -86509,19 +86771,19 @@ Captain The Runner: installDir: Captain The Runner: {} launch: - /CaptainTheRunner: + "/CaptainTheRunner": - when: - os: linux store: steam - /CaptainTheRunner.exe: + "/CaptainTheRunner.exe": - when: - os: windows store: steam steam: id: 878500 -'Captain Tsubasa: Rise of New Champions': +"Captain Tsubasa: Rise of New Champions": files: - /Captain Tsubasa Rise of New Champions/Savedata: + "/Captain Tsubasa Rise of New Champions/Savedata": tags: - save when: @@ -86529,18 +86791,18 @@ Captain The Runner: installDir: Captain Tsubasa Rise of New Champions: {} launch: - /GameData/rename.exe: + "/GameData/rename.exe": - when: - os: windows store: steam - workingDir: /GameData + workingDir: "/GameData" steam: id: 1163550 Captain fly and sexy students: installDir: Captain fly and sexy students: {} launch: - /captain fly.exe: + "/captain fly.exe": - when: - bit: 64 os: windows @@ -86549,12 +86811,12 @@ Captain fly and sexy students: id: 1135400 Captain of Industry: files: - /Captain of Industry/Blueprints: + "/Captain of Industry/Blueprints": tags: - save when: - os: windows - /Captain of Industry/Saves: + "/Captain of Industry/Saves": tags: - save when: @@ -86562,7 +86824,7 @@ Captain of Industry: installDir: Captain of Industry: {} launch: - /Captain of Industry.exe: + "/Captain of Industry.exe": - when: - os: windows store: steam @@ -86572,16 +86834,16 @@ Captain vs Sky Pirates: installDir: Captain vs Sky Pirates: {} launch: - /Captain vs Sky Pirates.exe: + "/Captain vs Sky Pirates.exe": - when: - os: windows store: steam steam: id: 722340 -Captain's Tail: +"Captain's Tail": steam: id: 977580 -'Captain:Training': +"Captain:Training": installDir: CaptainTraining: {} steam: @@ -86595,26 +86857,29 @@ Captive: installDir: Captive: {} launch: - /Captive.exe: + "/Captive.exe": - when: - bit: 32 os: windows store: steam + - bit: 64 + os: windows + store: steam steam: id: 802040 Captive of Fortune: installDir: Captive of Fortune: {} launch: - /Captive of Fortune.app/Contents/MacOS/Captive of Fortune: + "/Captive of Fortune.app/Contents/MacOS/Captive of Fortune": - when: - os: mac store: steam - /CaptiveOfFortune: + "/CaptiveOfFortune": - when: - os: linux store: steam - /CaptiveOfFortune.exe: + "/CaptiveOfFortune.exe": - when: - os: windows store: steam @@ -86624,7 +86889,7 @@ Captivity: installDir: Captivity: {} launch: - /Captivity.exe: + "/Captivity.exe": - when: - os: windows store: steam @@ -86634,7 +86899,7 @@ Captivus: installDir: Captivus: {} launch: - /JACCG.exe: + "/JACCG.exe": - when: - bit: 64 os: windows @@ -86644,11 +86909,11 @@ Captivus: Capture the Monster: steam: id: 794920 -'Capture the planet: Cute War': +"Capture the planet: Cute War": installDir: Capture the planet Cute War: {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: @@ -86660,11 +86925,11 @@ Capy hoky: installDir: capyhoky: {} launch: - /capyhoky.app: + "/capyhoky.app": - when: - os: mac store: steam - /capyhoky.exe: + "/capyhoky.exe": - when: - os: windows store: steam @@ -86679,7 +86944,7 @@ Car Crash Couch Party: installDir: Car Crash Couch Party: {} launch: - /CCCP.exe: + "/CCCP.exe": - when: - os: windows store: steam @@ -86689,7 +86954,7 @@ Car Crash Online: installDir: Car Crash Online: {} launch: - /Car Crash Online.exe: + "/Car Crash Online.exe": - when: - os: windows store: steam @@ -86699,7 +86964,7 @@ Car Demolition Clicker: installDir: Car Demolition Clicker: {} launch: - /Car Demolition Clicker.exe: + "/Car Demolition Clicker.exe": - when: - store: steam steam: @@ -86714,14 +86979,14 @@ Car Mechanic Manager: installDir: Car Mechanic Manager: {} launch: - /CarMechanicManager.exe: + "/CarMechanicManager.exe": - when: - store: steam steam: id: 397840 Car Mechanic Simulator 2014: files: - /AppData/LocalLow/Red Dot Games/Car Mechanic Simulator: + "/AppData/LocalLow/Red Dot Games/Car Mechanic Simulator": tags: - save when: @@ -86729,11 +86994,11 @@ Car Mechanic Simulator 2014: installDir: Car Mechanic Simulator: {} launch: - /cms.app: + "/cms.app": - when: - os: mac store: steam - /cms.exe: + "/cms.exe": - when: - os: windows store: steam @@ -86741,7 +87006,7 @@ Car Mechanic Simulator 2014: id: 270850 Car Mechanic Simulator 2015: files: - /AppData/LocalLow/Red Dot Games/Car Mechanic Simulator 2015/profile#: + "/AppData/LocalLow/Red Dot Games/Car Mechanic Simulator 2015/profile#": tags: - save when: @@ -86749,11 +87014,11 @@ Car Mechanic Simulator 2015: installDir: Car Mechanic Simulator 2015: {} launch: - /cms2015.app: + "/cms2015.app": - when: - os: mac store: steam - /cms2015.exe: + "/cms2015.exe": - when: - os: windows store: steam @@ -86761,7 +87026,7 @@ Car Mechanic Simulator 2015: id: 320300 Car Mechanic Simulator 2018: files: - /AppData/LocalLow/Red Dot Games/Car Mechanic Simulator 2018: + "/AppData/LocalLow/Red Dot Games/Car Mechanic Simulator 2018": tags: - save when: @@ -86769,11 +87034,11 @@ Car Mechanic Simulator 2018: installDir: Car Mechanic Simulator 2018: {} launch: - /cms2018.app: + "/cms2018.app": - when: - os: mac store: steam - - arguments: '-force-gfx-metal' + - arguments: "-force-gfx-metal" when: - os: mac store: steam @@ -86785,7 +87050,7 @@ Car Mechanic Simulator 2018: when: - os: mac store: steam - /cms2018.exe: + "/cms2018.exe": - when: - bit: 64 os: windows @@ -86795,7 +87060,7 @@ Car Mechanic Simulator 2018: - bit: 64 os: windows store: steam - - arguments: '-window-mode exclusive' + - arguments: "-window-mode exclusive" when: - bit: 64 os: windows @@ -86816,7 +87081,7 @@ Car Mechanic Simulator 2021: installDir: Car Mechanic Simulator 2021: {} launch: - /Car Mechanic Simulator 2021.exe: + "/Car Mechanic Simulator 2021.exe": - when: - bit: 64 os: windows @@ -86850,20 +87115,20 @@ Car Puzzler: installDir: Car Puzzler: {} launch: - /carPuzzler.app: + "/carPuzzler.app": - when: - os: mac store: steam - /carPuzzler.exe: + "/carPuzzler.exe": - when: - os: windows store: steam - /carPuzzler.x86: + "/carPuzzler.x86": - when: - bit: 32 os: linux store: steam - /carPuzzler.x86_64: + "/carPuzzler.x86_64": - when: - bit: 64 os: linux @@ -86874,7 +87139,7 @@ Car Soccer World Cup: installDir: CarSoccerWorldCup: {} launch: - /carsoccer.exe: + "/carsoccer.exe": - when: - os: windows store: steam @@ -86884,11 +87149,11 @@ Car Thief Simulator 2017: installDir: CAR THIEF SIMULATOR 2017: {} launch: - /CarStealer.app: + "/CarStealer.app": - when: - os: mac store: steam - /CarStealer.exe: + "/CarStealer.exe": - when: - os: windows store: steam @@ -86898,7 +87163,7 @@ Car Trader Simulator: installDir: Car Trader Simulator: {} launch: - /CTS.exe: + "/CTS.exe": - when: - os: windows store: steam @@ -86908,7 +87173,7 @@ Car Transport Simulator: installDir: Car Transport Simulator: {} launch: - /cartrans_win_multi.exe: + "/cartrans_win_multi.exe": - when: - os: windows store: steam @@ -86918,7 +87183,7 @@ Car Tuning Simulator: installDir: Car Tuning Simulator: {} launch: - /CarTuningSim.exe: + "/CarTuningSim.exe": - when: - os: windows store: steam @@ -86927,11 +87192,11 @@ Car Tuning Simulator: Car Wash Simulator: steam: id: 992840 -'Car Washer: Summer of the Ninja': +"Car Washer: Summer of the Ninja": installDir: Car Washer Summer of the Ninja: {} launch: - /CarWasher.exe: + "/CarWasher.exe": - when: - os: windows store: steam @@ -86939,43 +87204,43 @@ Car Wash Simulator: id: 369360 CarX Drift Racing Online: files: - /AppData/LocalLow/CarX Technologies/Drift Racing Online: + "/AppData/LocalLow/CarX Technologies/Drift Racing Online": tags: - config when: - os: windows - /AppData/LocalLow/CarX Technologies/Drift Racing Online/Cache: + "/AppData/LocalLow/CarX Technologies/Drift Racing Online/Cache": tags: - save when: - os: windows id: steamExtra: - - 1535220 - - 1449350 - - 1308680 - - 1308670 - - 1214350 - - 1178950 - - 1159010 - - 1112470 - - 1112460 - - 1112420 - - 998560 - - 967320 - - 965040 - - 937630 - - 906130 - - 858690 - - 842050 - - 776950 - - 769710 - - 752450 - 752440 + - 752450 + - 769710 + - 776950 + - 842050 + - 858690 + - 906130 + - 937630 + - 965040 + - 967320 + - 998560 + - 1112420 + - 1112460 + - 1112470 + - 1159010 + - 1178950 + - 1214350 + - 1308670 + - 1308680 + - 1449350 + - 1535220 installDir: CarX Drift Racing Online: {} launch: - /Drift Racing Online.exe: + "/Drift Racing Online.exe": - when: - os: windows store: steam @@ -86992,7 +87257,7 @@ Caracoland: installDir: Caracoland: {} launch: - /caracoland.exe: + "/caracoland.exe": - when: - os: windows store: steam @@ -87002,15 +87267,15 @@ Caramba!: installDir: Caramba: {} launch: - /Caramba.app: + "/Caramba.app": - when: - os: mac store: steam - /Caramba.exe: + "/Caramba.exe": - when: - os: windows store: steam - /Caramba.sh: + "/Caramba.sh": - when: - os: linux store: steam @@ -87020,7 +87285,7 @@ Caramel Port: installDir: Caramel Port: {} launch: - /Caramel Port.exe: + "/Caramel Port.exe": - when: - os: windows store: steam @@ -87028,7 +87293,7 @@ Caramel Port: id: 1015250 Caravan: files: - /Daedalic Entertainment GmbH/Caravan: + "/Daedalic Entertainment GmbH/Caravan": tags: - save when: @@ -87038,20 +87303,20 @@ Caravan: installDir: Caravan: {} launch: - /Caravan.app: + "/Caravan.app": - when: - os: mac store: steam - /Caravan.exe: + "/Caravan.exe": - when: - os: windows store: steam - /Caravan.x86: + "/Caravan.x86": - when: - bit: 32 os: linux store: steam - /Caravan.x86_64: + "/Caravan.x86_64": - when: - os: linux store: steam @@ -87061,7 +87326,7 @@ Caravaneer 2: installDir: Caravaneer 2: {} launch: - /Caravaneer2.exe: + "/Caravaneer2.exe": - when: - os: windows store: steam @@ -87071,15 +87336,15 @@ Caravanserail: installDir: Caravanserail: {} launch: - /Caravanserail_LINUX.x86_64: + "/Caravanserail_LINUX.x86_64": - when: - os: linux store: steam - /Caravanserail_MAC.app: + "/Caravanserail_MAC.app": - when: - os: mac store: steam - /Caravanserail_WIN.exe: + "/Caravanserail_WIN.exe": - when: - os: windows store: steam @@ -87087,24 +87352,24 @@ Caravanserail: id: 448480 Carcassonne: files: - /AppData/LocalLow/Asmodee/Carcassonne/Default: + "/AppData/LocalLow/Asmodee/Carcassonne/Default": tags: - config - save when: - os: windows - /AppData/LocalLow/Asmodee/Carcassonne/EpicGames: + "/AppData/LocalLow/Asmodee/Carcassonne/EpicGames": tags: - config - save when: - - store: epic + - os: windows gog: id: 1340672747 installDir: Carcassonne The Official Board Game: {} launch: - /Carcassonne.exe: + "/Carcassonne.exe": - when: - os: windows store: steam @@ -87118,7 +87383,7 @@ Card Adventures: installDir: Card Adventures: {} launch: - /Card Game.exe: + "/Card Game.exe": - when: - os: windows store: steam @@ -87128,7 +87393,7 @@ Card Battle Spirit Link: installDir: Card Battle Spirit Link: {} launch: - /Card Battle Spirit Link.exe: + "/Card Battle Spirit Link.exe": - when: - os: windows store: steam @@ -87138,7 +87403,7 @@ Card Brawl: installDir: Card Brawl: {} launch: - /Card Brawl.exe: + "/Card Brawl.exe": - when: - os: windows store: steam @@ -87146,13 +87411,13 @@ Card Brawl: id: 1004000 Card City Nights: files: - /.config/unity3d/Ludosity/CardCityNights: + "/.config/unity3d/Ludosity/CardCityNights": tags: - config - save when: - os: linux - /AppData/LocalLow/Ludosity/CardCityNights: + "/AppData/LocalLow/Ludosity/CardCityNights": tags: - config - save @@ -87163,15 +87428,15 @@ Card City Nights: installDir: Card City Nights: {} launch: - /ccn.app: + "/ccn.app": - when: - os: mac store: steam - /ccn.exe: + "/ccn.exe": - when: - os: windows store: steam - /ccn.x86: + "/ccn.x86": - when: - os: linux store: steam @@ -87181,20 +87446,20 @@ Card City Nights 2: installDir: CCN2: {} launch: - /CCN2.app: + "/CCN2.app": - when: - os: mac store: steam - /CCN2.exe: + "/CCN2.exe": - when: - os: windows store: steam - /CCN2.x86: + "/CCN2.x86": - when: - bit: 32 os: linux store: steam - /CCN2.x86_64: + "/CCN2.x86_64": - when: - bit: 64 os: linux @@ -87205,11 +87470,11 @@ Card Crawl: installDir: Card Crawl: {} launch: - /CardCrawl.app: + "/CardCrawl.app": - when: - os: mac store: steam - /CardCrawl.exe: + "/CardCrawl.exe": - when: - os: windows store: steam @@ -87219,15 +87484,15 @@ Card Dungeon: installDir: Card Dungeon: {} launch: - /Card Dungeon.app: + "/Card Dungeon.app": - when: - os: mac store: steam - /Card Dungeon.exe: + "/Card Dungeon.exe": - when: - os: windows store: steam - /Card Dungeon.x86_64: + "/Card Dungeon.x86_64": - when: - os: linux store: steam @@ -87237,7 +87502,7 @@ Card Games Mega Collection: installDir: Card Games Mega Collection: {} launch: - /CardGames_MegaCollection.exe: + "/CardGames_MegaCollection.exe": - when: - os: windows store: steam @@ -87245,12 +87510,12 @@ Card Games Mega Collection: id: 843870 Card Hog: files: - /CardHog: + "/CardHog": tags: - config when: - os: windows - /CardHog/saves: + "/CardHog/saves": tags: - save when: @@ -87258,7 +87523,7 @@ Card Hog: installDir: Card Hog: {} launch: - /CardHog.exe: + "/CardHog.exe": - when: - os: windows store: steam @@ -87266,7 +87531,7 @@ Card Hog: id: 1163740 Card Hunter: files: - /com.bluemanchu.CardHunter/Local Store/#SharedObjects/CardHunterSteamApp.swf/DesktopOptions.sol: + "/com.bluemanchu.CardHunter/Local Store/#SharedObjects/CardHunterSteamApp.swf/DesktopOptions.sol": tags: - config when: @@ -87274,12 +87539,12 @@ Card Hunter: installDir: CardHunter: {} launch: - /CardHunter.app/Contents/MacOS/CardHunter: + "/CardHunter.app/Contents/MacOS/CardHunter": - when: - os: mac store: steam - workingDir: /CardHunter.app/Contents/Resources - /CardHunter.exe: + workingDir: "/CardHunter.app/Contents/Resources" + "/CardHunter.exe": - when: - os: windows store: steam @@ -87287,7 +87552,7 @@ Card Hunter: id: 293260 Card Quest: files: - /AppData/LocalLow/WinterSpring Games/Card Quest: + "/AppData/LocalLow/WinterSpring Games/Card Quest": tags: - save when: @@ -87295,11 +87560,11 @@ Card Quest: installDir: Card Quest: {} launch: - /Card Quest.exe: + "/Card Quest.exe": - when: - os: windows store: steam - /CardQuest.app/Contents/MacOS/Card Quest: + "/CardQuest.app/Contents/MacOS/Card Quest": - when: - os: mac store: steam @@ -87307,7 +87572,7 @@ Card Quest: id: 493080 Card Shark: files: - /AppData/LocalLow/Nerial/Card_shark/Saves: + "/AppData/LocalLow/Nerial/Card_shark/Saves": tags: - save when: @@ -87317,11 +87582,11 @@ Card Shark: installDir: Card Shark: {} launch: - /Card_shark.app/Contents/MacOS/Card_shark: + "/Card_shark.app/Contents/MacOS/Card_shark": - when: - os: mac store: steam - /Card_shark.exe: + "/Card_shark.exe": - when: - os: windows store: steam @@ -87336,7 +87601,7 @@ Card of Spirits: installDir: Card of spirits: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -87346,19 +87611,19 @@ Card story: installDir: Card story: {} launch: - /CardStory(Test).exe: + "/CardStory(Test).exe": - when: - bit: 64 os: windows store: steam steam: id: 1103330 -'CardLife: Cardboard Survival': +"CardLife: Cardboard Survival": installDir: CardLife: {} launch: - /launcher.exe: - - arguments: '-steam' + "/launcher.exe": + - arguments: "-steam" when: - bit: 64 os: windows @@ -87367,7 +87632,7 @@ Card story: id: 920690 Cardaclysm: files: - /LocalLow/Elder Games/Cardaclysm - Shards of the Four: + "/LocalLow/Elder Games/Cardaclysm - Shards of the Four": tags: - config when: @@ -87377,7 +87642,7 @@ Cardaclysm: installDir: Cardaclysm: {} launch: - /Cardaclysm - Shards of the Four.exe: + "/Cardaclysm - Shards of the Four.exe": - when: - os: windows store: steam @@ -87387,7 +87652,7 @@ Cardaria: installDir: Cardaria: {} launch: - /cardaria.exe: + "/cardaria.exe": - when: - os: windows store: steam @@ -87397,7 +87662,7 @@ Cardboard Ground: installDir: Cardboard Ground: {} launch: - /Cardboard Ground.exe: + "/Cardboard Ground.exe": - when: - os: windows store: steam @@ -87407,7 +87672,7 @@ Cardboard Wars: installDir: CardboardWars: {} launch: - /CardboardWars.exe: + "/CardboardWars.exe": - when: - bit: 64 os: windows @@ -87416,7 +87681,7 @@ Cardboard Wars: id: 728630 Cardfight!! Vanguard Dear Days: files: - /Saved Games/VG2/SAVELOAD: + "/Saved Games/VG2/SAVELOAD": tags: - save when: @@ -87424,7 +87689,7 @@ Cardfight!! Vanguard Dear Days: installDir: VGDD: {} launch: - /VG2.exe: + "/VG2.exe": - when: - os: windows store: steam @@ -87437,15 +87702,15 @@ Cardinal Cross: installDir: CardinalCross: {} launch: - /CardinalCross.app: + "/CardinalCross.app": - when: - os: mac store: steam - /CardinalCross.exe: + "/CardinalCross.exe": - when: - os: windows store: steam - /CardinalCross.sh: + "/CardinalCross.sh": - when: - os: linux store: steam @@ -87455,15 +87720,15 @@ Cardinal Quest 2: installDir: Cardinal Quest 2: {} launch: - /cq2: + "/cq2": - when: - os: linux store: steam - /cq2.app: + "/cq2.app": - when: - os: mac store: steam - /cq2.exe: + "/cq2.exe": - when: - os: windows store: steam @@ -87473,16 +87738,16 @@ Cardlings: installDir: Cardlings: {} launch: - /Electron.app: + "/Electron.app": - when: - os: mac store: steam - /cardlings: + "/cardlings": - when: - bit: 64 os: linux store: steam - /cardlings.exe: + "/cardlings.exe": - when: - bit: 64 os: windows @@ -87495,7 +87760,7 @@ Cardpocalypse: installDir: Cardpocalypse: {} launch: - /Cardpocalypse.exe: + "/Cardpocalypse.exe": - when: - os: windows store: steam @@ -87505,11 +87770,11 @@ Cards and Castles: installDir: Cards and Castles: {} launch: - /Cards and Castles.exe: + "/Cards and Castles.exe": - when: - os: windows store: steam - /Cards_Steam_Mac.app: + "/Cards_Steam_Mac.app": - when: - os: mac store: steam @@ -87519,38 +87784,44 @@ Cards of Chaos: installDir: CardsOfChaos: {} launch: - /jre18/Contents/Home/bin/java: - - arguments: '-XstartOnFirstThread -jar CardChaos.jar' + "/jre18/Contents/Home/bin/java": + - arguments: "-XstartOnFirstThread -jar CardChaos.jar" when: - os: mac store: steam - /jre18/bin/java: - - arguments: '-jar CardChaos.jar' + "/jre18/bin/java": + - arguments: "-jar CardChaos.jar" when: - bit: 32 os: linux store: steam - /jre18/bin/javaw.exe: - - arguments: '-jar CardChaos.jar' + - bit: 64 + os: linux + store: steam + "/jre18/bin/javaw.exe": + - arguments: "-jar CardChaos.jar" when: - bit: 32 os: windows store: steam + - bit: 64 + os: windows + store: steam steam: id: 517110 Cards of Cthulhu: installDir: Cards of Cthulhu: {} launch: - /CthulhuProto.app: + "/CthulhuProto.app": - when: - os: mac store: steam - /CthulhuProto.exe: + "/CthulhuProto.exe": - when: - os: windows store: steam - /CthulhuProto/Binaries/Linux/CthulhuProto-Linux-Shipping: + "/CthulhuProto/Binaries/Linux/CthulhuProto-Linux-Shipping": - when: - os: linux store: steam @@ -87560,7 +87831,7 @@ Cards of Knight: installDir: Cards of Knight: {} launch: - /Cards of Knight.exe: + "/Cards of Knight.exe": - when: - bit: 64 os: windows @@ -87571,7 +87842,7 @@ Caretaker: installDir: Caretaker: {} launch: - /WindowsNoEditor/Caretaker.exe: + "/WindowsNoEditor/Caretaker.exe": - when: - os: windows store: steam @@ -87581,11 +87852,11 @@ Caretaker Retribution: installDir: CaretakerRetribution: {} launch: - /CaretakerRetribution.app: + "/CaretakerRetribution.app": - when: - os: mac store: steam - /CaretakerRetribution.exe: + "/CaretakerRetribution.exe": - when: - os: windows store: steam @@ -87595,7 +87866,7 @@ Caretaker Sacrifice: installDir: Caretaker Sacrifice: {} launch: - /CaretakerSacrifice.app: + "/CaretakerSacrifice.app": - when: - os: mac store: steam @@ -87605,13 +87876,13 @@ Cargo 3: installDir: Cargo 3: {} launch: - /Binaries/Win32/cargo3.exe: - - arguments: '-fullscreen' + "/Binaries/Win32/cargo3.exe": + - arguments: "-fullscreen" when: - os: windows store: steam - /Binaries/Win64/cargo3.exe: - - arguments: '-fullscreen' + "/Binaries/Win64/cargo3.exe": + - arguments: "-fullscreen" when: - store: steam steam: @@ -87623,7 +87894,7 @@ Cargo Breach: id: 722040 Cargo Commander: files: - /.config/unity3d/Serious Brew/Cargo Commander: + "/.config/unity3d/Serious Brew/Cargo Commander": tags: - config - save @@ -87632,20 +87903,23 @@ Cargo Commander: installDir: cargo commander: {} launch: - /CargoCommander.app/Contents/MacOS/CargoCommander: + "/CargoCommander.app/Contents/MacOS/CargoCommander": - when: - os: mac store: steam - workingDir: /CargoCommander.app/Contents - /CargoCommander.exe: + workingDir: "/CargoCommander.app/Contents" + "/CargoCommander.exe": - when: - os: windows store: steam - /CargoCommander.x86: + "/CargoCommander.x86": - when: - bit: 32 os: linux store: steam + - bit: 64 + os: linux + store: steam registry: HKEY_CURRENT_USER/Software/Serious Brew/Cargo Commander: tags: @@ -87656,14 +87930,14 @@ Cargo Commander: Cargo Cult: steam: id: 961280 -'Cargo Cult: Shoot''n''Loot VR': +"Cargo Cult: Shoot'n'Loot VR": installDir: - Cargo Cult Shoot'n'Loot VR: {} + "Cargo Cult Shoot'n'Loot VR": {} steam: id: 565380 Cargo! The Quest for Gravity: files: - /Ice-pick Lodge/Cargo/rcfg.xml: + "/Ice-pick Lodge/Cargo/rcfg.xml": tags: - config when: @@ -87671,13 +87945,13 @@ Cargo! The Quest for Gravity: installDir: Cargo!: {} launch: - /bin/win32/Config.exe: + "/bin/win32/Config.exe": - when: - store: steam - arguments: /musictool when: - store: steam - /bin/win32/Game.exe: + "/bin/win32/Game.exe": - when: - store: steam steam: @@ -87686,7 +87960,7 @@ Caribbean Odyssey: installDir: Caribbean Odyssey: {} launch: - /Odyssey.exe: + "/Odyssey.exe": - when: - os: windows store: steam @@ -87694,12 +87968,12 @@ Caribbean Odyssey: id: 414500 Caribbean!: files: - /Caribbean!: + "/Caribbean!": tags: - config when: - os: windows - /Caribbean!/Savegames/Caribbean!: + "/Caribbean!/Savegames/Caribbean!": tags: - save when: @@ -87709,7 +87983,7 @@ Caribbean!: installDir: Caribbean!: {} launch: - /caribbean!.exe: + "/caribbean!.exe": - when: - os: windows store: steam @@ -87727,12 +88001,12 @@ Carly and the Reaperman - Escape from the Underworld: id: 547480 Carmageddon: files: - /DATA: + "/DATA": tags: - config when: - os: windows - /DATA/SAVEGAME: + "/DATA/SAVEGAME": tags: - save when: @@ -87742,47 +88016,47 @@ Carmageddon: installDir: Carmageddon1: {} launch: - /DOSBOX/dosbox.exe: - - arguments: ' -conf ..\\dosboxCARMA.conf -conf ..\\dosboxCARMA_single.conf -noconsole -c exit' + "/DOSBOX/dosbox.exe": + - arguments: " -conf ..\\\\dosboxCARMA.conf -conf ..\\\\dosboxCARMA_single.conf -noconsole -c exit" when: - os: windows store: steam - workingDir: /DOSBOX - - arguments: '-conf ..\\dosboxCARSPLAT.conf -conf ..\\dosboxCARSPLAT_single.conf -noconsole -c exit' + workingDir: "/DOSBOX" + - arguments: "-conf ..\\\\dosboxCARSPLAT.conf -conf ..\\\\dosboxCARSPLAT_single.conf -noconsole -c exit" when: - os: windows store: steam - workingDir: /DOSBOX - - arguments: '-conf ..\\dosboxCARSPLAT.conf -conf ..\\dosboxCARSPLAT_server.conf -noconsole -c exit' + workingDir: "/DOSBOX" + - arguments: "-conf ..\\\\dosboxCARSPLAT.conf -conf ..\\\\dosboxCARSPLAT_server.conf -noconsole -c exit" when: - os: windows store: steam - workingDir: /DOSBOX - - arguments: '-conf ..\\dosboxCARSPLAT.conf -conf ..\\dosboxCARSPLAT_client.conf -noconsole -c exit' + workingDir: "/DOSBOX" + - arguments: "-conf ..\\\\dosboxCARSPLAT.conf -conf ..\\\\dosboxCARSPLAT_client.conf -noconsole -c exit" when: - os: windows store: steam - workingDir: /DOSBOX - - arguments: '-conf ..\\dosboxCARMA.conf -conf ..\\dosboxCARMA_server.conf -noconsole -c exit' + workingDir: "/DOSBOX" + - arguments: "-conf ..\\\\dosboxCARMA.conf -conf ..\\\\dosboxCARMA_server.conf -noconsole -c exit" when: - os: windows store: steam - workingDir: /DOSBOX - - arguments: '-conf ..\\dosboxCARMA.conf -conf ..\\dosboxCARMA_client.conf -noconsole -c exit' + workingDir: "/DOSBOX" + - arguments: "-conf ..\\\\dosboxCARMA.conf -conf ..\\\\dosboxCARMA_client.conf -noconsole -c exit" when: - os: windows store: steam - workingDir: /DOSBOX + workingDir: "/DOSBOX" steam: id: 282010 -'Carmageddon II: Carpocalypse Now': +"Carmageddon II: Carpocalypse Now": files: - /data: + "/data": tags: - config when: - os: windows - /data/SAVEDGAMES.ARS: + "/data/SAVEDGAMES.ARS": tags: - save when: @@ -87792,7 +88066,7 @@ Carmageddon: installDir: Carmageddon2: {} launch: - /CARMA2_HW.EXE: + "/CARMA2_HW.EXE": - when: - os: windows store: steam @@ -87800,12 +88074,12 @@ Carmageddon: id: 282030 Carmageddon TDR 2000: files: - /ASSETS/options.txt: + "/ASSETS/options.txt": tags: - config when: - os: windows - /Save: + "/Save": tags: - save when: @@ -87815,41 +88089,41 @@ Carmageddon TDR 2000: installDir: Carmageddon TDR 2000: {} launch: - /TDR2000.exe: + "/TDR2000.exe": - when: - os: windows store: steam - - arguments: '-setup' + - arguments: "-setup" when: - os: windows store: steam - - arguments: '-f' + - arguments: "-f" when: - os: windows store: steam steam: id: 331650 -'Carmageddon: Max Damage': +"Carmageddon: Max Damage": files: - /Data_Misc/config: + "/Data_Misc/config": tags: - config when: - os: windows store: steam - /steamapps/common/Carmageddon1/CARMA/DATA/SAVEGAME: + "/steamapps/common/Carmageddon1/CARMA/DATA/SAVEGAME": tags: - save when: - os: windows store: steam - /userdata//505170/remote: + "/userdata//505170/remote": tags: - config when: - os: windows store: steam - /Carmageddon Max Damage/savegames: + "/Carmageddon Max Damage/savegames": tags: - save when: @@ -87859,31 +88133,31 @@ Carmageddon TDR 2000: installDir: Carmageddon Max Damage: {} launch: - /bin/Carmageddon_Max_Damage.exe: + "/bin/Carmageddon_Max_Damage.exe": - when: - os: windows store: steam - - arguments: '-carmodgeddon' + - arguments: "-carmodgeddon" when: - os: windows store: steam - - arguments: '-pedsubstitution trumped_up.txt' + - arguments: "-pedsubstitution trumped_up.txt" when: - os: windows store: steam - - arguments: '-pedsubstitution hillarious.txt' + - arguments: "-pedsubstitution hillarious.txt" when: - os: windows store: steam - - arguments: '-pedsubstitution mass_debate.txt' + - arguments: "-pedsubstitution mass_debate.txt" when: - os: windows store: steam steam: id: 505170 -'Carmageddon: Reincarnation': +"Carmageddon: Reincarnation": files: - /Carmageddon Reincarnation/savegames: + "/Carmageddon Reincarnation/savegames": tags: - save when: @@ -87891,15 +88165,15 @@ Carmageddon TDR 2000: installDir: Carmageddon_Reincarnation: {} launch: - /bin/Carmageddon_Reincarnation.exe: + "/bin/Carmageddon_Reincarnation.exe": - when: - os: windows store: steam - - arguments: '-carmodgeddon' + - arguments: "-carmodgeddon" when: - os: windows store: steam - - arguments: '-disable_game_threading' + - arguments: "-disable_game_threading" when: - os: windows store: steam @@ -87909,29 +88183,29 @@ Carnage Racing: installDir: Carnage Racing: {} launch: - /CarnageRacing.app: + "/CarnageRacing.app": - when: - os: mac store: steam - /CarnageRacing.exe: + "/CarnageRacing.exe": - when: - os: windows store: steam steam: id: 228940 -'Carnage in Space: Ignition': +"Carnage in Space: Ignition": installDir: Carnage in Space Ignition: {} launch: - /carnageinspaceignition.app: + "/carnageinspaceignition.app": - when: - os: mac store: steam - /nw: + "/nw": - when: - os: linux store: steam - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -87941,7 +88215,7 @@ Carnal: installDir: CARNAL: {} launch: - /CARNAL.exe: + "/CARNAL.exe": - when: - bit: 64 os: windows @@ -87952,15 +88226,15 @@ Carnal Instinct: installDir: CarnalInstinct: {} launch: - /Carnal_Instinct.exe: + "/Carnal_Instinct.exe": - when: - os: windows store: steam steam: id: 1495320 -'CarneyVale: Showtime': +"CarneyVale: Showtime": files: - /Gambit/CarneyVale Showtime: + "/Gambit/CarneyVale Showtime": tags: - save when: @@ -87970,7 +88244,7 @@ Carnival Ball: id: 676300 Carnival Games: files: - /My Games/Carnival Games/: + "/My Games/Carnival Games/": tags: - save when: @@ -87978,7 +88252,7 @@ Carnival Games: installDir: Carnival Games: {} launch: - /Carnival Games Launcher.exe: + "/Carnival Games Launcher.exe": - when: - os: windows store: steam @@ -87996,50 +88270,50 @@ Carnivore Land: installDir: Carnivore Land: {} launch: - /CarnivoreLand.app: + "/CarnivoreLand.app": - when: - bit: 64 os: mac store: steam - /CarnivoreLand.exe: + "/CarnivoreLand.exe": - when: - bit: 64 os: windows store: steam - /CarnivoreLand.x86_64: + "/CarnivoreLand.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 397860 -'Carnivores: Cityscape': +"Carnivores: Cityscape": files: - /SaveGame: + "/SaveGame": tags: - save when: - os: windows - /Scripts: + "/Scripts": tags: - config when: - os: windows -'Carnivores: Dinosaur Hunt': +"Carnivores: Dinosaur Hunt": installDir: Carnivores Dinosaur Hunt: {} launch: - /C2.exe: + "/C2.exe": - when: - os: windows store: steam steam: id: 1461030 -'Carnivores: Dinosaur Hunter Reborn': +"Carnivores: Dinosaur Hunter Reborn": installDir: CarnivoresReborn: {} launch: - /Carnivores-master.exe: + "/Carnivores-master.exe": - when: - store: steam steam: @@ -88048,18 +88322,16 @@ Caromble!: installDir: Caromble: {} launch: - /Caromble.exe: + "/Caromble.exe": - when: - os: windows store: steam - /java/bin/java: - - arguments: ' -server -Xms600m -Xmx1600m -XX:+TieredCompilation -XX:ReservedCodeCacheSize=400m -XX:CompileThreshold=2500 -XX:+AggressiveOpts -Djava.library.path=\"lib\" -jar Caromble-GAME.jar' + "/java/bin/java": + - arguments: " -server -Xms600m -Xmx1600m -XX:+TieredCompilation -XX:ReservedCodeCacheSize=400m -XX:CompileThreshold=2500 -XX:+AggressiveOpts -Djava.library.path=\\\"lib\\\" -jar Caromble-GAME.jar" when: - os: mac store: steam - - arguments: >- - -server -XX:ReservedCodeCacheSize=128m -XX:+UseZGC -Xmx1600m -Djava.library.path=\"lib\" -jar - Caromble-GAME.jar + - arguments: "-server -XX:ReservedCodeCacheSize=128m -XX:+UseZGC -Xmx1600m -Djava.library.path=\\\"lib\\\" -jar Caromble-GAME.jar" when: - bit: 64 os: linux @@ -88070,26 +88342,26 @@ Carp Fishing Simulator: installDir: Carp Fishing Simulator: {} launch: - /Carp Fish Sim.exe: + "/Carp Fish Sim.exe": - when: - os: windows store: steam steam: id: 366290 -Carpe Deal 'Em: +"Carpe Deal 'Em": installDir: Carpe Deal Em: {} launch: - /CDE.exe: + "/CDE.exe": - when: - os: windows store: steam - /CDE.x86: + "/CDE.x86": - when: - bit: 32 os: linux store: steam - /CDE.x86_64: + "/CDE.x86_64": - when: - bit: 64 os: linux @@ -88098,12 +88370,12 @@ Carpe Deal 'Em: id: 528190 Carpe Diem: files: - /renpy/config.py: + "/renpy/config.py": tags: - config when: - os: windows - /RenPy/Carpe Diem-1438651883: + "/RenPy/Carpe Diem-1438651883": tags: - save when: @@ -88111,39 +88383,39 @@ Carpe Diem: installDir: Carpe Diem: {} launch: - /Carpe Diem.app: + "/Carpe Diem.app": - when: - os: mac store: steam - /Carpe Diem.exe: + "/Carpe Diem.exe": - when: - os: windows store: steam - /Carpe Diem.sh: + "/Carpe Diem.sh": - when: - os: linux store: steam steam: id: 423880 -'Carpe Diem: Reboot': +"Carpe Diem: Reboot": installDir: Carpe Diem Reboot: {} launch: - /Carpe Diem Reboot.app: + "/Carpe Diem Reboot.app": - when: - os: mac store: steam - /Carpe Diem Reboot.exe: + "/Carpe Diem Reboot.exe": - when: - os: windows store: steam - /Carpe Diem Reboot.sh: + "/Carpe Diem Reboot.sh": - when: - os: linux store: steam steam: id: 686760 -'Carpe Lucem: Seize the Light': +"Carpe Lucem: Seize the Light": installDir: Carpe Lucem - Seize The Light: {} steam: @@ -88152,7 +88424,7 @@ Carpet Bombing: installDir: Carpet Bombing: {} launch: - /Carpet Bombing.exe: + "/Carpet Bombing.exe": - when: - os: windows store: steam @@ -88162,31 +88434,31 @@ Carreras de Velocidad: installDir: Carreras de Velocidad: {} launch: - /Carreras de Velocidad.exe: + "/Carreras de Velocidad.exe": - when: - os: windows store: steam steam: id: 1032060 -Carrie's Order Up!: +"Carrie's Order Up!": installDir: - Carrie's Order Up!: {} + "Carrie's Order Up!": {} launch: - /CarriesOrderUp.exe: + "/CarriesOrderUp.exe": - when: - os: windows store: steam steam: id: 522490 -'Carried Away: Winter Sports': +"Carried Away: Winter Sports": installDir: Carried Away Winter Sports: {} launch: - /CarriedAway.app/Contents/MacOS/CarriedAway: + "/CarriedAway.app/Contents/MacOS/CarriedAway": - when: - os: mac store: steam - /CarriedAway.exe: + "/CarriedAway.exe": - when: - os: windows store: steam @@ -88196,7 +88468,7 @@ Carrier: installDir: Carrier: {} launch: - /carrier.exe: + "/carrier.exe": - when: - store: steam steam: @@ -88208,12 +88480,12 @@ Carrier Command: id: 1802690 Carrier Command 2: files: - /Carrier Command 2: + "/Carrier Command 2": tags: - config when: - os: windows - /Carrier Command 2/saved_games: + "/Carrier Command 2/saved_games": tags: - save when: @@ -88221,25 +88493,25 @@ Carrier Command 2: installDir: Carrier Command 2: {} launch: - /carrier_command.exe: + "/carrier_command.exe": - when: - os: windows store: steam - /carriercommand.app: + "/carriercommand.app": - when: - os: mac store: steam steam: id: 1489630 -'Carrier Command: Gaea Mission': +"Carrier Command: Gaea Mission": files: - /userdata//65740/local: + "/userdata//65740/local": tags: - save when: - os: windows store: steam - /userdata//65740/local/ccsettings.xml: + "/userdata//65740/local/ccsettings.xml": tags: - config when: @@ -88248,7 +88520,7 @@ Carrier Command 2: installDir: Carrier Command Gaea Mission: {} launch: - /carrier.exe: + "/carrier.exe": - when: - store: steam steam: @@ -88257,7 +88529,7 @@ Carrier Deck: installDir: Carrier Deck: {} launch: - /autorun.exe: + "/autorun.exe": - when: - os: windows store: steam @@ -88267,15 +88539,15 @@ Carrier Trail: installDir: CarrierTrail: {} launch: - /CTLinux: + "/CTLinux": - when: - os: linux store: steam - /CTMac.app: + "/CTMac.app": - when: - os: mac store: steam - /CTWindows.exe: + "/CTWindows.exe": - when: - os: windows store: steam @@ -88283,24 +88555,24 @@ Carrier Trail: id: 1009920 Carrion: files: - /AppData/LocalLow/Phobia/Carrion/saves: + "/AppData/LocalLow/Phobia/Carrion/saves": tags: - save when: - os: windows - /AppData/LocalLow/Phobia/Carrion/settings.json: + "/AppData/LocalLow/Phobia/Carrion/settings.json": tags: - config when: - os: windows - /Packages/DevolverDigital.CarrionWin10_6kzv4j18v0c96/SystemAppData/wgs: + "/Packages/DevolverDigital.CarrionWin10_6kzv4j18v0c96/SystemAppData/wgs": tags: - config - save when: - os: windows store: microsoft - /Phobia/Carrion: + "/Phobia/Carrion": tags: - config - save @@ -88316,16 +88588,16 @@ Carrion: installDir: Carrion: {} launch: - /Carrion: + "/Carrion": - when: - bit: 64 os: linux store: steam - /Carrion.app/Contents/Resources/Carrion: + "/Carrion.app/Contents/Resources/Carrion": - when: - os: mac store: steam - /Carrion.exe: + "/Carrion.exe": - when: - bit: 64 os: windows @@ -88336,20 +88608,20 @@ Carrotting Brain: installDir: CarrottingBrain: {} launch: - /CarrottingBrain.app: + "/CarrottingBrain.app": - when: - os: mac store: steam - /CarrottingBrain.exe: + "/CarrottingBrain.exe": - when: - os: windows store: steam - /CarrottingBrain.x86: + "/CarrottingBrain.x86": - when: - bit: 32 os: linux store: steam - /CarrottingBrain.x86_64: + "/CarrottingBrain.x86_64": - when: - bit: 64 os: linux @@ -88358,7 +88630,7 @@ Carrotting Brain: id: 404750 Cars: files: - /THQ/Cars/Save: + "/THQ/Cars/Save": tags: - save when: @@ -88366,7 +88638,7 @@ Cars: installDir: Cars: {} launch: - /Cars.exe: + "/Cars.exe": - when: - os: windows store: steam @@ -88378,12 +88650,12 @@ Cars: id: 331160 Cars 2: files: - /Disney Interactive Studios/Cars2: + "/Disney Interactive Studios/Cars2": tags: - config when: - os: windows - /Disney Interactive Studios/Cars2/storage: + "/Disney Interactive Studios/Cars2/storage": tags: - save when: @@ -88391,7 +88663,7 @@ Cars 2: installDir: Cars 2: {} launch: - /Game-Cars.exe: + "/Game-Cars.exe": - when: - store: steam steam: @@ -88400,7 +88672,7 @@ Cars Arena: installDir: CarsArena: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -88408,7 +88680,7 @@ Cars Arena: id: 873810 Cars Mater-National Championship: files: - /THQ/Cars2: + "/THQ/Cars2": tags: - save when: @@ -88416,33 +88688,33 @@ Cars Mater-National Championship: installDir: Cars Mater-National: {} launch: - /Cars_Mater.exe: + "/Cars_Mater.exe": - when: - store: steam steam: id: 332260 -'Cars Toon: Mater''s Tall Tales': +"Cars Toon: Mater's Tall Tales": installDir: Cars Toon: {} launch: - /cars.exe: + "/cars.exe": - when: - store: steam steam: id: 316320 -'Cars with Guns: It''s About Time': +"Cars with Guns: It's About Time": installDir: - Cars with Guns It's About Time: {} + "Cars with Guns It's About Time": {} launch: - /CarsWithGuns.exe: + "/CarsWithGuns.exe": - when: - os: windows store: steam steam: id: 762900 -'Cars: Radiator Springs Adventures': +"Cars: Radiator Springs Adventures": files: - /Users: + "/Users": tags: - save when: @@ -88450,7 +88722,7 @@ Cars Mater-National Championship: installDir: Cars Radiator Springs Adventures: {} launch: - /Cars.exe: + "/Cars.exe": - when: - store: steam registry: @@ -88463,16 +88735,19 @@ Carsteroids: installDir: CARSTEROIDS: {} launch: - /carsteroids.exe: + "/carsteroids.exe": - when: - bit: 32 os: windows store: steam + - bit: 64 + os: windows + store: steam steam: id: 671470 Cart Life: files: - /agssave: + "/agssave": tags: - save when: @@ -88480,11 +88755,11 @@ Cart Life: installDir: Cart Life: {} launch: - /Cart Life.exe: + "/Cart Life.exe": - when: - os: windows store: steam - /winsetup.exe: + "/winsetup.exe": - when: - os: windows store: steam @@ -88494,7 +88769,7 @@ Cart Racer: installDir: Cart Racer: {} launch: - /Cart_Racer.exe: + "/Cart_Racer.exe": - when: - os: windows store: steam @@ -88504,11 +88779,11 @@ Cartacombs: installDir: Cartacombs: {} launch: - /Cartacombs: + "/Cartacombs": - when: - os: linux store: steam - /Cartacombs.exe: + "/Cartacombs.exe": - when: - os: windows store: steam @@ -88519,7 +88794,7 @@ Cartel Smash: id: 1006940 Cartel Tycoon: files: - /CartelTycoon/Saved/SaveGames: + "/CartelTycoon/Saved/SaveGames": tags: - save when: @@ -88528,21 +88803,21 @@ Cartel Tycoon: id: 1579393346 id: gogExtra: - - 1653457263 - - 1267824996 - 1156481338 - - 1999609476 - 1259294737 + - 1267824996 + - 1653457263 + - 1999609476 - 2056410911 steamExtra: - - 2081450 - - 2081480 - 1570090 - 2020980 + - 2081450 + - 2081480 installDir: Cartel Tycoon: {} launch: - /Cartel Tycoon Launcher.exe: + "/Cartel Tycoon Launcher.exe": - when: - os: windows store: steam @@ -88552,20 +88827,20 @@ Cartesian: installDir: Cartesian: {} launch: - /nwjs/nw.exe: - - arguments: . + "/nwjs/nw.exe": + - arguments: "." when: - store: steam steam: id: 596470 Carto: files: - /AppData/LocalLow/SunheadGames/Carto/Saves: + "/AppData/LocalLow/SunheadGames/Carto/Saves": tags: - save when: - os: windows - /AppData/LocalLow/SunheadGames/Carto/Saves/player.globalsave: + "/AppData/LocalLow/SunheadGames/Carto/Saves/player.globalsave": tags: - config when: @@ -88575,11 +88850,11 @@ Carto: installDir: Carto: {} launch: - /Carto.app/Contents/MacOS/Carto: + "/Carto.app/Contents/MacOS/Carto": - when: - os: mac store: steam - /Carto.exe: + "/Carto.exe": - when: - os: windows store: steam @@ -88593,15 +88868,15 @@ Carton: installDir: Carton: {} launch: - /Carton: + "/Carton": - when: - os: linux store: steam - /Carton.app: + "/Carton.app": - when: - os: mac store: steam - /Carton_app.exe: + "/Carton_app.exe": - when: - os: windows store: steam @@ -88611,7 +88886,7 @@ Cartonfall: installDir: Cartonfall: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -88624,7 +88899,7 @@ Cartoon Kreedz: installDir: Cartoon Kreedz: {} launch: - /Cartoon Kreedz.exe: + "/Cartoon Kreedz.exe": - when: - os: windows store: steam @@ -88639,21 +88914,21 @@ Cartoon Strike: installDir: Cartoon Strike: {} launch: - /Cartoon Strike.exe: + "/Cartoon Strike.exe": - when: - os: windows store: steam steam: id: 616830 -'Cartoonway: Mini Cars': +"Cartoonway: Mini Cars": installDir: Cartoonway - Mini Cars: {} launch: - /Cartoonway - Mini Cars.app/Contents/MacOS/Cartoonway - Mini Cars: + "/Cartoonway - Mini Cars.app/Contents/MacOS/Cartoonway - Mini Cars": - when: - os: mac store: steam - /Cartoonway - Mini Cars.exe: + "/Cartoonway - Mini Cars.exe": - when: - os: windows store: steam @@ -88663,25 +88938,25 @@ Cartoony Cars 2: installDir: Cartoony Cars 2: {} launch: - /Cartoony Cars 2.app: + "/Cartoony Cars 2.app": - when: - os: mac store: steam - /Cartoony Cars 2.exe: + "/Cartoony Cars 2.exe": - when: - os: windows store: steam - /Cartoony Cars 2.x86: + "/Cartoony Cars 2.x86": - when: - os: linux store: steam steam: id: 915190 -'Case 2: Animatronics Survival': +"Case 2: Animatronics Survival": installDir: CASE 2 Animatronics Survival: {} launch: - /CASE 2 Animatronics Survival/Case2/Binaries/Win64/Case2-Win64-Shipping.exe: + "/CASE 2 Animatronics Survival/Case2/Binaries/Win64/Case2-Win64-Shipping.exe": - when: - os: windows store: steam @@ -88697,7 +88972,7 @@ Case Opener Guns: installDir: Case Opener Guns: {} launch: - /Case Opener Guns.exe: + "/Case Opener Guns.exe": - when: - os: windows store: steam @@ -88707,7 +88982,7 @@ Case Simulator Weapons and Armors: installDir: Case Simulator Weapons and Armors: {} launch: - /Case Simulator Weapons and Armors.exe: + "/Case Simulator Weapons and Armors.exe": - when: - os: windows store: steam @@ -88717,7 +88992,7 @@ Casey Powell Lacrosse 16: installDir: Lacrosse: {} launch: - /lacrosse.exe: + "/lacrosse.exe": - when: - store: steam steam: @@ -88726,7 +89001,7 @@ Casey Powell Lacrosse 18: installDir: Casey Powell Lacrosse 18: {} launch: - /lacrosse2.exe: + "/lacrosse2.exe": - when: - bit: 64 os: windows @@ -88735,7 +89010,7 @@ Casey Powell Lacrosse 18: id: 584150 Cash Crop: files: - /AppData/LocalLow/JointVentures/CashCrop: + "/AppData/LocalLow/JointVentures/CashCrop": tags: - save when: @@ -88743,11 +89018,11 @@ Cash Crop: installDir: Cash Crop: {} launch: - /Cash Crop.app: + "/Cash Crop.app": - when: - os: mac store: steam - /Cash Crop.exe: + "/Cash Crop.exe": - when: - os: windows store: steam @@ -88757,7 +89032,7 @@ Cash Out: installDir: Cash_Out: {} launch: - /CashOut.exe: + "/CashOut.exe": - when: - store: steam steam: @@ -88766,7 +89041,7 @@ Cash Rush: installDir: Cash Rush: {} launch: - /Cash Rush.exe: + "/Cash Rush.exe": - when: - os: windows store: steam @@ -88776,7 +89051,7 @@ Cashtronauts: installDir: Cashtronauts: {} launch: - /windows/cashtronauts.exe: + "/windows/cashtronauts.exe": - when: - os: windows store: steam @@ -88786,17 +89061,17 @@ Casino Blackjack: installDir: Casino Blackjack: {} launch: - /BJHelp/help.html: + "/BJHelp/help.html": - when: - os: windows store: steam - workingDir: /BJHelp - /BJHelp/movies: + workingDir: "/BJHelp" + "/BJHelp/movies": - when: - os: windows store: steam - workingDir: /BJHelp - /Launch.bat: + workingDir: "/BJHelp" + "/Launch.bat": - when: - os: windows store: steam @@ -88806,7 +89081,7 @@ Casino Inc.: installDir: Casino Inc: {} launch: - /CIncMenu.exe: + "/CIncMenu.exe": - when: - os: windows store: steam @@ -88816,7 +89091,7 @@ Casino Mega Collection: installDir: Casino Mega Collection: {} launch: - /Casino_MegaCollection.exe: + "/Casino_MegaCollection.exe": - when: - os: windows store: steam @@ -88829,15 +89104,15 @@ Casino Poker: installDir: Casino Poker: {} launch: - /Launch.bat: + "/Launch.bat": - when: - os: windows store: steam - /PokerHelp/help.html: + "/PokerHelp/help.html": - when: - os: windows store: steam - workingDir: /PokerHelp + workingDir: "/PokerHelp" steam: id: 793250 Casino Slot Machines: @@ -88849,34 +89124,34 @@ CasinoRPG: installDir: CasinoRPG: {} launch: - /CasinoRPG.app: + "/CasinoRPG.app": - when: - os: mac store: steam - /CasinoRPG.exe: + "/CasinoRPG.exe": - when: - os: windows store: steam steam: id: 658970 -'Casinopia: The Blackjack': +"Casinopia: The Blackjack": installDir: Casinopia: {} steam: id: 692060 -Cassandra's Fabulous Foray: +"Cassandra's Fabulous Foray": installDir: - Cassandra's Fabulous Foray: {} + "Cassandra's Fabulous Foray": {} launch: - /CassandrasFabulousForay.app: + "/CassandrasFabulousForay.app": - when: - os: mac store: steam - /CassandrasFabulousForay.exe: + "/CassandrasFabulousForay.exe": - when: - os: windows store: steam - /CassandrasFabulousForay.sh: + "/CassandrasFabulousForay.sh": - when: - os: linux store: steam @@ -88884,13 +89159,13 @@ Cassandra's Fabulous Foray: id: 688200 Cassette Beasts: files: - /.local/share/CassetteBeasts: + "/.local/share/CassetteBeasts": tags: - config - save when: - os: linux - /CassetteBeasts: + "/CassetteBeasts": tags: - config - save @@ -88898,7 +89173,7 @@ Cassette Beasts: - os: windows - os: windows store: microsoft - /Packages/RawFury.CassetteBeasts_9s0pnehqffj7t/SystemAppData/wgs/: + "/Packages/RawFury.CassetteBeasts_9s0pnehqffj7t/SystemAppData/wgs/": tags: - save when: @@ -88913,15 +89188,15 @@ Cassette Beasts: installDir: Cassette Beasts: {} launch: - /CassetteBeasts.app: + "/CassetteBeasts.app": - when: - os: mac store: steam - /CassetteBeasts.exe: + "/CassetteBeasts.exe": - when: - os: windows store: steam - /CassetteBeasts.x86_64: + "/CassetteBeasts.x86_64": - when: - bit: 64 os: linux @@ -88930,7 +89205,7 @@ Cassette Beasts: id: 1321440 Cassiodora: files: - /projectCassiodora/Saved/SaveGames: + "/projectCassiodora/Saved/SaveGames": tags: - save when: @@ -88938,12 +89213,12 @@ Cassiodora: installDir: Cassiodora: {} launch: - /projectCassiodora.exe: + "/projectCassiodora.exe": - when: - bit: 64 os: windows store: steam - - arguments: '-steamdeck -vulkan' + - arguments: "-steamdeck -vulkan" when: - bit: 64 os: linux @@ -88957,11 +89232,11 @@ Cast of the Seven Godsends - Redux: installDir: Cast of the Seven Godsends: {} launch: - /Cast_MAC.app: + "/Cast_MAC.app": - when: - os: mac store: steam - /Cast_Of_The_Seven_Godsends.exe: + "/Cast_Of_The_Seven_Godsends.exe": - when: - os: windows store: steam @@ -88969,7 +89244,7 @@ Cast of the Seven Godsends - Redux: id: 373360 Castaway Home Designer: files: - /userdata//656560/remote: + "/userdata//656560/remote": tags: - save when: @@ -88977,11 +89252,11 @@ Castaway Home Designer: installDir: Castaway Home Designer: {} launch: - /Castaway Home Designer.app: + "/Castaway Home Designer.app": - when: - os: mac store: steam - /Castaway Home Designer.exe: + "/Castaway Home Designer.exe": - when: - os: windows store: steam @@ -88991,11 +89266,11 @@ Castaway Paradise Complete Edition: installDir: Castaway Paradise: {} launch: - /Castaway Paradise.app: + "/Castaway Paradise.app": - when: - os: mac store: steam - /Castaway Paradise.exe: + "/Castaway Paradise.exe": - when: - os: windows store: steam @@ -89012,14 +89287,14 @@ Castaway of the Ardusta Sea: installDir: Castaway of the Ardusta Sea: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: id: 1342120 Caster: files: - /save: + "/save": tags: - save when: @@ -89027,11 +89302,11 @@ Caster: installDir: Caster: {} launch: - /Caster.app: + "/Caster.app": - when: - os: mac store: steam - /Caster.exe: + "/Caster.exe": - when: - os: windows store: steam @@ -89041,7 +89316,7 @@ Castle: installDir: Castle: {} launch: - /Castle.exe: + "/Castle.exe": - when: - os: windows store: steam @@ -89051,7 +89326,7 @@ Castle Adventure: installDir: Castle Adventure: {} launch: - /CastleAdventure.exe: + "/CastleAdventure.exe": - when: - bit: 64 os: windows @@ -89062,7 +89337,7 @@ Castle Agony: installDir: Agony: {} launch: - /Agony.exe: + "/Agony.exe": - when: - os: windows store: steam @@ -89072,15 +89347,15 @@ Castle Battles: installDir: Castle Battles: {} launch: - /CastleBattles.app: + "/CastleBattles.app": - when: - os: mac store: steam - /CastleBattles.exe: + "/CastleBattles.exe": - when: - os: windows store: steam - /CastleBattles.x86: + "/CastleBattles.x86": - when: - os: linux store: steam @@ -89090,7 +89365,7 @@ Castle Break: installDir: Castle Break: {} launch: - /CastleBreak.exe: + "/CastleBreak.exe": - when: - os: windows store: steam @@ -89100,22 +89375,22 @@ Castle Chaos: installDir: Castle Chaos: {} launch: - /CastleChaos.app: + "/CastleChaos.app": - when: - os: mac store: steam - /CastleChaos.exe: + "/CastleChaos.exe": - when: - os: windows store: steam - /CastleChaos.x86: - - arguments: '-force-opengl' + "/CastleChaos.x86": + - arguments: "-force-opengl" when: - bit: 32 os: linux store: steam - /CastleChaos.x86_64: - - arguments: '-force-opengl' + "/CastleChaos.x86_64": + - arguments: "-force-opengl" when: - bit: 64 os: linux @@ -89126,16 +89401,16 @@ Castle Clamber: installDir: Castle Clamber: {} launch: - /clamber.app/Contents/MacOS/clamber: + "/clamber.app/Contents/MacOS/clamber": - when: - os: mac store: steam - /clamber.exe: + "/clamber.exe": - when: - bit: 64 os: windows store: steam - /run.sh: + "/run.sh": - when: - bit: 64 os: linux @@ -89146,7 +89421,7 @@ Castle Clicker: installDir: Castle Clicker: {} launch: - /CastleClicker.exe: + "/CastleClicker.exe": - when: - os: windows store: steam @@ -89156,7 +89431,7 @@ Castle Commander: installDir: Castle Commander: {} launch: - /CastleCommander.exe: + "/CastleCommander.exe": - when: - os: windows store: steam @@ -89164,12 +89439,12 @@ Castle Commander: id: 1188670 Castle Crashers: files: - /userdata//204360: + "/userdata//204360": tags: - config when: - store: steam - /userdata//204360/Remote: + "/userdata//204360/Remote": tags: - save when: @@ -89180,15 +89455,15 @@ Castle Defender: installDir: Castle Defender: {} launch: - /Castledefender.exe: + "/Castledefender.exe": - when: - os: windows store: steam - /castledefender_linux: + "/castledefender_linux": - when: - os: linux store: steam - /castledefender_mac.app: + "/castledefender_mac.app": - when: - os: mac store: steam @@ -89203,11 +89478,13 @@ Castle Explorer (2017): installDir: Castle Explorer: {} launch: - /Castleexplorer: + "/Castleexplorer": - when: + - os: mac + store: steam - os: linux store: steam - /Castleexplorer.exe: + "/Castleexplorer.exe": - when: - os: windows store: steam @@ -89225,41 +89502,44 @@ Castle Flipper: installDir: Castle Flipper: {} launch: - /Castle Flipper.exe: + "/Castle Flipper.exe": - when: - store: steam steam: id: 944250 -'Castle Heist: Chapter 1': +"Castle Heist: Chapter 1": installDir: Castle Heist Chapter 1: {} launch: - /Castle Heist Chapter One.exe: + "/Castle Heist Chapter One.exe": - when: - os: windows store: steam steam: id: 438220 -'Castle Invasion: Throne Out': +"Castle Invasion: Throne Out": installDir: Castle Invasion Throne Out: {} launch: - /CastleInvasion.app/Contents/MacOS/CastleInvasion: + "/CastleInvasion.app/Contents/MacOS/CastleInvasion": - when: - os: mac store: steam - /CastleInvasion.exe: + "/CastleInvasion.exe": - when: - bit: 32 os: windows store: steam + - bit: 64 + os: windows + store: steam steam: id: 504850 Castle Kong: installDir: Castle Kong: {} launch: - /Castle.exe: + "/Castle.exe": - when: - os: windows store: steam @@ -89267,14 +89547,14 @@ Castle Kong: id: 877330 Castle Master: files: - /********: + "/********": tags: - save when: - os: dos -'Castle Master II: The Crypt': +"Castle Master II: The Crypt": files: - /********: + "/********": tags: - save when: @@ -89288,7 +89568,7 @@ Castle Of Pixel Skulls: installDir: Castle Of Pixel Skulls: {} launch: - /CastleOfPixelSkulls.exe: + "/CastleOfPixelSkulls.exe": - when: - store: steam steam: @@ -89297,29 +89577,29 @@ Castle Rencounter: installDir: Castle Rencounter: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam steam: id: 970620 -'Castle Secrets: Between Day and Night': +"Castle Secrets: Between Day and Night": installDir: Castle Secrets Between Day and Night: {} launch: - /CastleSecretsBetweenDayAndNight.exe: + "/CastleSecretsBetweenDayAndNight.exe": - when: - store: steam steam: id: 806930 Castle Story: files: - /Info/Saves: + "/Info/Saves": tags: - save when: - os: windows - /Info/UserSettings: + "/Info/UserSettings": tags: - config when: @@ -89327,19 +89607,19 @@ Castle Story: installDir: Castle Story: {} launch: - /Castle Story: + "/Castle Story": - when: - os: linux store: steam - /Castle Story.app: + "/Castle Story.app": - when: - os: mac store: steam - /castlestory-launcher: + "/castlestory-launcher": - when: - os: linux store: steam - /castlestory-launcher.exe: + "/castlestory-launcher.exe": - when: - os: windows store: steam @@ -89347,16 +89627,16 @@ Castle Story: id: 227860 Castle Strike: files: - /savegame: + "/savegame": tags: - save when: - os: windows -'Castle Torgeath: Descent into Darkness': +"Castle Torgeath: Descent into Darkness": installDir: Castle Torgeath: {} launch: - /CastleTorgeath.exe: + "/CastleTorgeath.exe": - when: - os: windows store: steam @@ -89372,17 +89652,17 @@ Castle Werewolf: id: 586520 Castle Wolfenstein: files: - /CASTLE: + "/CASTLE": tags: - save when: - os: dos - /CW.EXE: + "/CW.EXE": tags: - save when: - os: dos - /ctrls: + "/ctrls": tags: - config when: @@ -89391,7 +89671,7 @@ Castle Woodwarf: installDir: Castle Woodwarf: {} launch: - /Castle Woodwarf.exe: + "/Castle Woodwarf.exe": - when: - os: windows store: steam @@ -89401,7 +89681,7 @@ Castle Woodwarf 2: installDir: Castle Woodwarf 2: {} launch: - /Castle Woodwarf 2.exe: + "/Castle Woodwarf 2.exe": - when: - os: windows store: steam @@ -89409,7 +89689,7 @@ Castle Woodwarf 2: id: 1065580 Castle in the Darkness: files: - /citdt: + "/citdt": tags: - save when: @@ -89417,7 +89697,7 @@ Castle in the Darkness: installDir: Castle In The Darkness: {} launch: - /CastleInTheDarkness.exe: + "/CastleInTheDarkness.exe": - when: - os: windows store: steam @@ -89428,12 +89708,12 @@ Castle of Cthulhu: id: 1064880 Castle of Illusion: files: - /pcrun.cfg: + "/pcrun.cfg": tags: - config when: - os: windows - /userdata//227600/remote: + "/userdata//227600/remote": tags: - save when: @@ -89442,11 +89722,11 @@ Castle of Illusion: installDir: Castle of Illusion: {} launch: - /COI.exe: + "/COI.exe": - when: - os: windows store: steam - /Castle of Illusion.app: + "/Castle of Illusion.app": - when: - os: mac store: steam @@ -89463,7 +89743,7 @@ Castle of Shikigami: installDir: Castle of Shikigami: {} launch: - /Shikigami.exe: + "/Shikigami.exe": - when: - store: steam steam: @@ -89472,7 +89752,7 @@ Castle of Shikigami 2: installDir: Castle of Shikigami 2: {} launch: - /Shiki2.exe: + "/Shiki2.exe": - when: - store: steam steam: @@ -89481,7 +89761,7 @@ Castle of Venia: installDir: Castle of Venia: {} launch: - /castleofvenia.exe: + "/castleofvenia.exe": - when: - os: windows store: steam @@ -89491,7 +89771,7 @@ Castle of no Escape: installDir: Castle of no Escape: {} launch: - /Castle of no Escape (port).exe: + "/Castle of no Escape (port).exe": - when: - os: windows store: steam @@ -89501,7 +89781,7 @@ Castle of no Escape 2: installDir: Castle of no Escape 2: {} launch: - /ConE2.exe: + "/ConE2.exe": - when: - os: windows store: steam @@ -89509,12 +89789,12 @@ Castle of no Escape 2: id: 542350 Castle on the Coast: files: - /CastleOnTheCoast/Saved/SaveGames: + "/CastleOnTheCoast/Saved/SaveGames": tags: - save when: - os: windows - /CastleOnTheCoast/Saved/SaveGames/settings.sav: + "/CastleOnTheCoast/Saved/SaveGames/settings.sav": tags: - config when: @@ -89527,30 +89807,30 @@ Castle on the Coast: installDir: Castle on the Coast: {} launch: - /CastleOnTheCoast.app: + "/CastleOnTheCoast.app": - when: - os: mac store: steam - /CastleOnTheCoast.exe: + "/CastleOnTheCoast.exe": - when: - os: windows store: steam steam: id: 1341900 -'Castle: Jigsaw Puzzles': +"Castle: Jigsaw Puzzles": installDir: Castle Jigsaw Puzzles: {} steam: id: 860880 -'Castle: Never Judge a Book by its Cover': +"Castle: Never Judge a Book by its Cover": installDir: Castle Never Judge a Book by its Cover: {} launch: - /Castle.app: + "/Castle.app": - when: - os: mac store: steam - /Castle_NeverJudgeABookByItsCover.exe: + "/Castle_NeverJudgeABookByItsCover.exe": - when: - os: windows store: steam @@ -89560,7 +89840,7 @@ CastleAbra: installDir: CastleAbra: {} launch: - /CastleAbra.exe: + "/CastleAbra.exe": - when: - os: windows store: steam @@ -89575,7 +89855,7 @@ CastleMiner Warfare: installDir: CastleMiner Warfare: {} launch: - /CastleMinerWarfare.exe: + "/CastleMinerWarfare.exe": - when: - os: windows store: steam @@ -89583,12 +89863,12 @@ CastleMiner Warfare: id: 675210 CastleMiner Z: files: - /CastleMiner/user.settings: + "/CastleMiner/user.settings": tags: - config when: - os: windows - /CastleMinerZ/: + "/CastleMinerZ/": tags: - save when: @@ -89596,14 +89876,14 @@ CastleMiner Z: installDir: CastleMiner Z: {} launch: - /CastleMinerZ.exe: + "/CastleMinerZ.exe": - when: - store: steam steam: id: 253430 CastleStorm: files: - /Zen Studios: + "/Zen Studios": tags: - save when: @@ -89611,7 +89891,7 @@ CastleStorm: installDir: CastleStorm: {} launch: - /CastleStorm.exe: + "/CastleStorm.exe": - when: - os: windows store: steam @@ -89619,19 +89899,19 @@ CastleStorm: id: 241410 CastleStorm II: files: - /Castlestorm2/Saved/Config/WindowsNoEditor: + "/Castlestorm2/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /Castlestorm2/Saved/SaveGames: + "/Castlestorm2/Saved/SaveGames": tags: - save when: - os: windows Castles: files: - /SAVEGAME.*: + "/SAVEGAME.*": tags: - save when: @@ -89641,17 +89921,17 @@ Castles: installDir: Castles: {} launch: - /DOSBox/dosbox.app/Contents/MacOS/DOSBox: - - arguments: '-conf \"config/dosboxCastles1.conf\" -conf \"config/dosbox_menu.conf\" -noconsole' + "/DOSBox/dosbox.app/Contents/MacOS/DOSBox": + - arguments: "-conf \\\"config/dosboxCastles1.conf\\\" -conf \\\"config/dosbox_menu.conf\\\" -noconsole" when: - os: mac store: steam - /Launch Castles.bat: + "/Launch Castles.bat": - when: - os: windows store: steam - /dosbox/dosbox: - - arguments: '-conf \"config/dosboxCastles1.conf\" -conf \"config/dosbox_menu.conf\" -noconsole' + "/dosbox/dosbox": + - arguments: "-conf \\\"config/dosboxCastles1.conf\\\" -conf \\\"config/dosbox_menu.conf\\\" -noconsole" when: - os: linux store: steam @@ -89661,20 +89941,20 @@ Castles (2015): installDir: Castles: {} launch: - /castles.exe: + "/castles.exe": - when: - os: windows store: steam steam: id: 384010 -'Castles II: Siege and Conquest': +"Castles II: Siege and Conquest": files: - /*.GAM: + "/*.GAM": tags: - save when: - os: dos - /OPTIONS.DAT: + "/OPTIONS.DAT": tags: - config when: @@ -89684,17 +89964,17 @@ Castles (2015): installDir: Castles II Siege & Conquest: {} launch: - /DOSBox/dosbox.app/Contents/MacOS/DOSBox: - - arguments: '-conf \"config/dosboxCastles2.conf\" -conf \"config/dosboxCastles2_single.conf\" -noconsole' + "/DOSBox/dosbox.app/Contents/MacOS/DOSBox": + - arguments: "-conf \\\"config/dosboxCastles2.conf\\\" -conf \\\"config/dosboxCastles2_single.conf\\\" -noconsole" when: - os: mac store: steam - /Launch Castles.bat: + "/Launch Castles.bat": - when: - os: windows store: steam - /dosbox/dosbox: - - arguments: '-conf \"config/dosboxCastles2.conf\" -conf \"config/dosboxCastles2_single.conf\" -noconsole' + "/dosbox/dosbox": + - arguments: "-conf \\\"config/dosboxCastles2.conf\\\" -conf \\\"config/dosboxCastles2_single.conf\\\" -noconsole" when: - os: linux store: steam @@ -89702,24 +89982,24 @@ Castles (2015): id: 670180 Castlevania: files: - /CASTLE.DAT: + "/CASTLE.DAT": tags: - save when: - os: dos - /SCORES.DAT: + "/SCORES.DAT": tags: - save when: - os: dos Castlevania Advance Collection: files: - /userdata//1552550/remote: + "/userdata//1552550/remote": tags: - save when: - store: steam - /Castlevania Advance Collection/savedata: + "/Castlevania Advance Collection/savedata": tags: - save when: @@ -89727,24 +90007,24 @@ Castlevania Advance Collection: installDir: Castlevania Advance Collection: {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: id: 1552550 Castlevania Anniversary Collection: files: - /userdata//1018010/remote: + "/userdata//1018010/remote": tags: - save when: - store: steam - /Castlevania Anniversary Collection/savedata: + "/Castlevania Anniversary Collection/savedata": tags: - save when: - os: windows - /Castlevania Anniversary Collection/savedata/savecfg.txt: + "/Castlevania Anniversary Collection/savedata/savecfg.txt": tags: - config when: @@ -89752,25 +90032,25 @@ Castlevania Anniversary Collection: installDir: Castlevania Anniversary Collection: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam steam: id: 1018010 -'Castlevania: Lords of Shadow': +"Castlevania: Lords of Shadow": files: - /bin/Profile/Saves/Castlevania.cfg: + "/bin/Profile/Saves/Castlevania.cfg": tags: - config when: - os: windows - /bin/Profile/Saves/Castlevania.profile: + "/bin/Profile/Saves/Castlevania.profile": tags: - save when: - os: windows - /userdata//234080/remote: + "/userdata//234080/remote": tags: - config - save @@ -89779,16 +90059,16 @@ Castlevania Anniversary Collection: installDir: CastlevaniaLoS: {} launch: - /bin/castlevanialosue.exe: + "/bin/castlevanialosue.exe": - when: - os: windows store: steam - workingDir: /bin + workingDir: "/bin" steam: id: 234080 -'Castlevania: Lords of Shadow - Mirror of Fate HD': +"Castlevania: Lords of Shadow - Mirror of Fate HD": files: - /MercurySteam/Castlevania Lords of Shadow Mirror of Fate HD/: + "/MercurySteam/Castlevania Lords of Shadow Mirror of Fate HD/": tags: - config - save @@ -89797,24 +90077,24 @@ Castlevania Anniversary Collection: installDir: Castlevania Lords of Shadow - Mirror of Fate HD: {} launch: - /CMOF.exe: + "/CMOF.exe": - when: - os: windows store: steam - - arguments: '-safemode' + - arguments: "-safemode" when: - os: windows store: steam steam: id: 282530 -'Castlevania: Lords of Shadow 2': +"Castlevania: Lords of Shadow 2": files: - /MercurySteam/Castlevania Lords of Shadow 2/: + "/MercurySteam/Castlevania Lords of Shadow 2/": tags: - save when: - os: windows - /MercurySteam/Castlevania Lords of Shadow 2//game.cfg: + "/MercurySteam/Castlevania Lords of Shadow 2//game.cfg": tags: - config when: @@ -89822,11 +90102,11 @@ Castlevania Anniversary Collection: installDir: Castlevania Lords of Shadow 2: {} launch: - /bin/CLOS2.exe: + "/bin/CLOS2.exe": - when: - os: windows store: steam - - arguments: '-safemode' + - arguments: "-safemode" when: - os: windows store: steam @@ -89836,7 +90116,7 @@ Castra: installDir: Castra: {} launch: - /Castra.exe: + "/Castra.exe": - when: - os: windows store: steam @@ -89846,7 +90126,7 @@ Casual Desktop Game: installDir: Casual Desktop Game: {} launch: - /dnyCasualDeskGame.exe: + "/dnyCasualDeskGame.exe": - when: - bit: 64 os: windows @@ -89857,7 +90137,7 @@ Casual Penalty: installDir: Casual Penalty: {} launch: - /CP.exe: + "/CP.exe": - when: - store: steam steam: @@ -89866,34 +90146,34 @@ Casual Spider Solitaire: installDir: Casual Spider Solitaire: {} launch: - /SpiderSolitaire/Binaries/Win64/SpiderSolitaire-Win64-Shipping.exe: + "/SpiderSolitaire/Binaries/Win64/SpiderSolitaire-Win64-Shipping.exe": - when: - bit: 64 os: windows store: steam steam: id: 722810 -'Casus Belli: Battle of Annihilation': +"Casus Belli: Battle of Annihilation": installDir: Casus Belli Battle Of Annihilation: {} launch: - /CasusBelli.exe: + "/CasusBelli.exe": - when: - bit: 64 os: windows store: steam steam: id: 667000 -'Cat Burglar: A Tail of Purrsuit': +"Cat Burglar: A Tail of Purrsuit": installDir: Cat Burglar: {} launch: - /CB-Build 9-5.exe: + "/CB-Build 9-5.exe": - when: - os: windows store: steam registry: - 'HKEY_CURRENT_USER/Software/Gamers for Good/Cat Burglar: A Tail of Purrsuit': + "HKEY_CURRENT_USER/Software/Gamers for Good/Cat Burglar: A Tail of Purrsuit": tags: - config steam: @@ -89907,7 +90187,7 @@ Cat Cafe Manager: installDir: Cat Cafe Manager: {} launch: - /catcafe.exe: + "/catcafe.exe": - when: - bit: 64 os: windows @@ -89918,7 +90198,7 @@ Cat Defense: installDir: Cat Defense: {} launch: - /CatDefence.exe: + "/CatDefence.exe": - when: - store: steam steam: @@ -89933,7 +90213,7 @@ Cat Fu Mi: installDir: CatFuMi: {} launch: - /CatFuMi.exe: + "/CatFuMi.exe": - when: - bit: 64 os: windows @@ -89944,7 +90224,7 @@ Cat Girl: installDir: Cat Girl: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -89952,19 +90232,19 @@ Cat Girl: id: 686180 Cat Girl Without Salad: files: - /DATA: + "/DATA": tags: - save when: - os: windows Cat Goes Fishing: files: - /options.ini: + "/options.ini": tags: - config when: - os: windows - /Cat_Goes_Fishing: + "/Cat_Goes_Fishing": tags: - save when: @@ -89972,7 +90252,7 @@ Cat Goes Fishing: installDir: Cat Goes Fishing: {} launch: - /Cat Goes Fishing.exe: + "/Cat Goes Fishing.exe": - when: - os: windows store: steam @@ -89985,7 +90265,7 @@ Cat Inside: installDir: Cat Inside: {} launch: - /s008.exe: + "/s008.exe": - when: - os: windows store: steam @@ -89995,11 +90275,11 @@ Cat Lady: installDir: Cat Lady: {} launch: - /CatLady.app/Contents/MacOS/CatLady: + "/CatLady.app/Contents/MacOS/CatLady": - when: - os: mac store: steam - /CatLady.exe: + "/CatLady.exe": - when: - os: windows store: steam @@ -90009,7 +90289,7 @@ Cat Lady - The Card Game: installDir: Cat Lady: {} launch: - /Cat Lady.exe: + "/Cat Lady.exe": - when: - os: windows store: steam @@ -90019,7 +90299,7 @@ Cat Meat: installDir: Cat Meat: {} launch: - /NekoNiku.exe: + "/NekoNiku.exe": - when: - os: windows store: steam @@ -90029,23 +90309,23 @@ Cat Notebook: installDir: cat notebook: {} launch: - /Game: + "/Game": - when: - os: linux store: steam - /Game.app: + "/Game.app": - when: - os: mac store: steam - /Game.exe: + "/Game.exe": - when: - os: windows store: steam steam: id: 1003490 -'Cat President: A More Purrfect Union': +"Cat President: A More Purrfect Union": files: - /renpy/config.py: + "/renpy/config.py": tags: - config when: @@ -90053,15 +90333,15 @@ Cat Notebook: installDir: Cat President: {} launch: - /Cat President.app: + "/Cat President.app": - when: - os: mac store: steam - /Cat President.exe: + "/Cat President.exe": - when: - os: windows store: steam - /Cat President.sh: + "/Cat President.sh": - when: - os: linux store: steam @@ -90069,12 +90349,12 @@ Cat Notebook: id: 474980 Cat Quest: files: - /AppData/LocalLow/The Gentlebros Pte_ Ltd_/Cat Quest: + "/AppData/LocalLow/The Gentlebros Pte_ Ltd_/Cat Quest": tags: - save when: - os: windows - /Library/Application Support/com.thegentlebros.catquest: + "/Library/Application Support/com.thegentlebros.catquest": tags: - save when: @@ -90084,11 +90364,11 @@ Cat Quest: installDir: Cat Quest: {} launch: - /Cat Quest.app/Contents/MacOS/Cat Quest: + "/Cat Quest.app/Contents/MacOS/Cat Quest": - when: - os: mac store: steam - /Cat Quest.exe: + "/Cat Quest.exe": - when: - os: windows store: steam @@ -90100,17 +90380,17 @@ Cat Quest: id: 593280 Cat Quest II: files: - /AppData/LocalLow/The Gentlebros Pte. Ltd_/Cat Quest II: + "/AppData/LocalLow/The Gentlebros Pte. Ltd_/Cat Quest II": tags: - config when: - os: windows - /Documents/Cat Quest II/save_file*.dat: + "/Documents/Cat Quest II/save_file*.dat": tags: - save when: - os: windows - /Cat Quest II/settings: + "/Cat Quest II/settings": tags: - config when: @@ -90120,7 +90400,7 @@ Cat Quest II: installDir: Cat Quest II: {} launch: - /Cat Quest II.exe: + "/Cat Quest II.exe": - when: - os: windows store: steam @@ -90134,7 +90414,7 @@ Cat Simulator: installDir: CatSimulator: {} launch: - /catsim.exe: + "/catsim.exe": - when: - os: windows store: steam @@ -90149,15 +90429,15 @@ Cat Warfare: installDir: Cat Warfare: {} launch: - /Cat Warfare Mac.app/Contents/MacOS/Cat Warfare: + "/Cat Warfare Mac.app/Contents/MacOS/Cat Warfare": - when: - os: mac store: steam - /Cat Warfare.exe: + "/Cat Warfare.exe": - when: - os: windows store: steam - /Cat Warfare.x86_64: + "/Cat Warfare.x86_64": - when: - os: linux store: steam @@ -90167,11 +90447,11 @@ Cat and Ghostly Road: installDir: CatAndGhostlyRoad: {} launch: - /CatWay.exe: + "/CatWay.exe": - when: - os: windows store: steam - /CatWay.x86_64: + "/CatWay.x86_64": - when: - bit: 64 os: linux @@ -90181,17 +90461,17 @@ Cat and Ghostly Road: Cat couple: steam: id: 891570 -Cat doesn't like banana: +"Cat doesn't like banana": steam: id: 914150 Cat on a Diet: files: - /CatOnADiet/saves: + "/CatOnADiet/saves": tags: - save when: - os: windows - /CatOnADiet/settings.ini: + "/CatOnADiet/settings.ini": tags: - config when: @@ -90199,7 +90479,7 @@ Cat on a Diet: installDir: Cat on a Diet: {} launch: - /catonadiet_en.exe: + "/catonadiet_en.exe": - when: - os: windows store: steam @@ -90209,7 +90489,7 @@ Cat or Bread?: installDir: Cat or Bread: {} launch: - /CatOrBread.exe: + "/CatOrBread.exe": - when: - os: windows store: steam @@ -90225,41 +90505,41 @@ Cat vs. Corgis: installDir: Cat vs. Corgis: {} launch: - /CatVsCorgis.exe: + "/CatVsCorgis.exe": - when: - os: windows store: steam steam: id: 687610 -Cat's Bar: +"Cat's Bar": installDir: - Cat's Bar: {} + "Cat's Bar": {} launch: - /Cat's Bar.exe: + "/Cat's Bar.exe": - when: - os: windows store: steam steam: id: 804900 -Cat's Lover: +"Cat's Lover": installDir: Cats Lover: {} launch: - /cats lover.exe: - - arguments: '-fullscreen' + "/cats lover.exe": + - arguments: "-fullscreen" when: - os: windows store: steam steam: id: 691990 -Cat's Puzzle /ᐠ。ꞈ。ᐟ\: +"Cat's Puzzle /ᐠ。ꞈ。ᐟ\\": steam: id: 956190 -Cat's Yarn: +"Cat's Yarn": installDir: - Cat's Yarn: {} + "Cat's Yarn": {} launch: - /Cat'sYarnx86.exe: + "/Cat'sYarnx86.exe": - when: - os: windows store: steam @@ -90272,7 +90552,7 @@ CatAnod: installDir: catAnod: {} launch: - /catanod.exe: + "/catanod.exe": - when: - store: steam steam: @@ -90281,35 +90561,35 @@ CatCatch: installDir: CatCatch: {} launch: - /CatCatch.exe: + "/CatCatch.exe": - when: - os: windows store: steam steam: id: 913210 -'Cataclysm: Dark Days Ahead': +"Cataclysm: Dark Days Ahead": files: - /cataclysm-dda: + "/cataclysm-dda": tags: - config when: - os: linux - /cataclysm-dda/graveyard: + "/cataclysm-dda/graveyard": tags: - save when: - os: linux - /cataclysm-dda/memorial: + "/cataclysm-dda/memorial": tags: - save when: - os: linux - /cataclysm-dda/save: + "/cataclysm-dda/save": tags: - save when: - os: linux - /cataclysm-dda/templates: + "/cataclysm-dda/templates": tags: - save when: @@ -90319,7 +90599,7 @@ CatCatch: Catacomb: gog: id: 1207659189 -'Catacomb 3-D: The Descent': +"Catacomb 3-D: The Descent": gog: id: 1207659189 Catacomb Abyss: @@ -90338,29 +90618,29 @@ Catacomb Kids: installDir: Catacomb Kids: {} launch: - /CatacombKids.app/Contents/MacOS/Catacomb_Kids: + "/CatacombKids.app/Contents/MacOS/Catacomb_Kids": - when: - os: mac store: steam - /CatacombKids.exe: + "/CatacombKids.exe": - when: - os: windows store: steam - /Catacomb_Kids: + "/Catacomb_Kids": - when: - os: linux store: steam steam: id: 315840 -'Catacombs 1: Demon War': +"Catacombs 1: Demon War": installDir: Catacombs 1 Demon War: {} launch: - /Game.app: + "/Game.app": - when: - os: mac store: steam - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -90373,32 +90653,32 @@ Catacombs of the Undercity: installDir: Catacombs of the Undercity: {} launch: - /Gamebook Adventures Catacombs of the Undercity.app: + "/Gamebook Adventures Catacombs of the Undercity.app": - when: - bit: 64 os: mac store: steam - /Gamebook Adventures Catacombs of the Undercity.exe: + "/Gamebook Adventures Catacombs of the Undercity.exe": - when: - os: windows store: steam - /Gamebook Adventures Catacombs of the Undercity.x86: + "/Gamebook Adventures Catacombs of the Undercity.x86": - when: - bit: 32 os: linux store: steam - /Gamebook Adventures Catacombs of the Undercity.x86_64: + "/Gamebook Adventures Catacombs of the Undercity.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 352440 -'Cataegis: The White Wind': +"Cataegis: The White Wind": installDir: Cataegis The White Wind: {} launch: - /CataegisLauncher.exe: + "/CataegisLauncher.exe": - when: - store: steam steam: @@ -90407,7 +90687,7 @@ Catalyst: installDir: Catalyst: {} launch: - /Catalyst.exe: + "/Catalyst.exe": - when: - store: steam steam: @@ -90416,11 +90696,11 @@ Catan Universe: installDir: Catan Universe: {} launch: - /CatanUniverse.app/Contents/MacOS/CatanUniverse: + "/CatanUniverse.app/Contents/MacOS/CatanUniverse": - when: - os: mac store: steam - /CatanUniverse.exe: + "/CatanUniverse.exe": - when: - os: windows store: steam @@ -90431,9 +90711,9 @@ Catan VR: Catan VR: {} steam: id: 857680 -'Catan: Creator''s Edition': +"Catan: Creator's Edition": files: - /Catan: + "/Catan": tags: - save when: @@ -90441,27 +90721,27 @@ Catan VR: installDir: Catan: {} launch: - /bin/Release/Catan.exe: - - arguments: '--dx' + "/bin/Release/Catan.exe": + - arguments: "--dx" when: - os: windows store: steam - workingDir: /bin/Release - - arguments: '--ogl' + workingDir: "/bin/Release" + - arguments: "--ogl" when: - os: windows store: steam - workingDir: /bin/Release - /bin/Release/CatanEdit.exe: + workingDir: "/bin/Release" + "/bin/Release/CatanEdit.exe": - when: - os: windows store: steam - workingDir: /bin/Release + workingDir: "/bin/Release" steam: id: 239410 -'Catan: Die Erste Insel': +"Catan: Die Erste Insel": files: - /SAVE_C: + "/SAVE_C": tags: - config - save @@ -90471,7 +90751,7 @@ Catastronauts: installDir: Catastronauts: {} launch: - /Catastronauts.exe: + "/Catastronauts.exe": - when: - store: steam steam: @@ -90480,7 +90760,7 @@ Catburglar: installDir: Catburglar: {} launch: - /Catburglar.exe: + "/Catburglar.exe": - when: - os: windows store: steam @@ -90488,7 +90768,7 @@ Catburglar: id: 846750 Catch & Release: files: - /userdata//679750/remote: + "/userdata//679750/remote": tags: - save when: @@ -90502,15 +90782,15 @@ Catch Canvas: installDir: Catch Canvas: {} launch: - /Catch Canvas.app: + "/Catch Canvas.app": - when: - os: mac store: steam - /Catch Canvas.exe: + "/Catch Canvas.exe": - when: - os: windows store: steam - /Catch Canvas.sh: + "/Catch Canvas.sh": - when: - os: linux store: steam @@ -90523,25 +90803,25 @@ Catch The Ball 3: installDir: Catch The Ball 3: {} launch: - /Catch the ball 3 Setup.exe: + "/Catch the ball 3 Setup.exe": - when: - os: windows store: steam steam: id: 1186320 -'Catch The Kids: Priest Simulator Game': +"Catch The Kids: Priest Simulator Game": installDir: Catch The Kids Priest Simulator Game: {} launch: - /Catch The Kids Linux.x86_64: + "/Catch The Kids Linux.x86_64": - when: - os: linux store: steam - /Catch The Kids macOS.app: + "/Catch The Kids macOS.app": - when: - os: mac store: steam - /Catch The Kids.exe: + "/Catch The Kids.exe": - when: - os: windows store: steam @@ -90551,7 +90831,7 @@ Catch Your Kitty: installDir: Catch Your Kitty: {} launch: - /Catch Your Kitty.exe: + "/Catch Your Kitty.exe": - when: - os: windows store: steam @@ -90561,7 +90841,7 @@ Catch a Duck: installDir: Catch a Duck: {} launch: - /Catch a Duck.exe: + "/Catch a Duck.exe": - when: - os: windows store: steam @@ -90571,7 +90851,7 @@ Catch a Falling Star: installDir: Catch a Falling Star: {} launch: - /FStar.exe: + "/FStar.exe": - when: - store: steam registry: @@ -90585,7 +90865,7 @@ Catch a Lover: installDir: Catch a Lover: {} launch: - /Catch_a_Lover.exe: + "/Catch_a_Lover.exe": - when: - os: windows store: steam @@ -90595,32 +90875,32 @@ Catch the Head: installDir: Catch the Head: {} launch: - /Catch_The_Head.exe: + "/Catch_The_Head.exe": - when: - os: windows store: steam steam: id: 1049690 -'Catch the Thief, If you can!': +"Catch the Thief, If you can!": installDir: CatchTheThief: {} launch: - /CatchTheThief.exe: + "/CatchTheThief.exe": - when: - bit: 64 os: windows store: steam steam: id: 717760 -Catch'em: +"Catch'em": installDir: Catch-em: {} launch: - /Catchem.exe: + "/Catchem.exe": - when: - os: windows store: steam - - arguments: '-settings' + - arguments: "-settings" when: - os: windows store: steam @@ -90630,7 +90910,7 @@ Catching: installDir: Catching: {} launch: - /Cat_Ching!.exe: + "/Cat_Ching!.exe": - when: - os: windows store: steam @@ -90638,7 +90918,7 @@ Catching: id: 1047090 Cateau: files: - /save.bin: + "/save.bin": tags: - save when: @@ -90646,7 +90926,7 @@ Cateau: installDir: Cateau: {} launch: - /Cateau.exe: + "/Cateau.exe": - when: - store: steam registry: @@ -90657,12 +90937,12 @@ Cateau: id: 949370 Catechumen: files: - /catechumen.ini: + "/catechumen.ini": tags: - config when: - os: windows - /save: + "/save": tags: - save when: @@ -90671,7 +90951,7 @@ Caterpillar Royale: installDir: Caterpillar Wars DX: {} launch: - /CaterpillarRoyale.exe: + "/CaterpillarRoyale.exe": - when: - bit: 64 os: windows @@ -90682,15 +90962,15 @@ Catgirl & Doggirl Cafe: installDir: Catgirl Doggirl Cafe: {} launch: - /CatgirlandDoggirlCafe.app: + "/CatgirlandDoggirlCafe.app": - when: - os: mac store: steam - /CatgirlandDoggirlCafe.exe: + "/CatgirlandDoggirlCafe.exe": - when: - os: windows store: steam - /CatgirlandDoggirlCafe.sh: + "/CatgirlandDoggirlCafe.sh": - when: - os: linux store: steam @@ -90700,7 +90980,7 @@ Catgirl Lover: installDir: CATGIRL LOVER: {} launch: - /CATGIRL LOVER.exe: + "/CATGIRL LOVER.exe": - when: - store: steam steam: @@ -90709,19 +90989,19 @@ Catgirl Lover 2: installDir: CATGIRL LOVER 2: {} launch: - /CATGIRL LOVER 2.exe: + "/CATGIRL LOVER 2.exe": - when: - store: steam steam: id: 1157750 -'Catgirl Magic: Fury Duel': +"Catgirl Magic: Fury Duel": installDir: Catgirl Magic - Fury Duel: {} launch: - /Catgirl Magic - Fury Duel.app/Contents/MacOS/Catgirl Magic - Fury Duel: + "/Catgirl Magic - Fury Duel.app/Contents/MacOS/Catgirl Magic - Fury Duel": - when: - store: steam - /Catgirl Magic - Fury Duel.exe: + "/Catgirl Magic - Fury Duel.exe": - when: - os: windows store: steam @@ -90729,12 +91009,12 @@ Catgirl Lover 2: id: 898540 Cathedral: files: - /DBornInteractive/Cathedral/config.json: + "/DBornInteractive/Cathedral/config.json": tags: - config when: - os: windows - /DBornInteractive/Cathedral/profile*.bin: + "/DBornInteractive/Cathedral/profile*.bin": tags: - save when: @@ -90744,12 +91024,14 @@ Cathedral: installDir: Cathedral: {} launch: - /cathedral: + "/cathedral": - when: + - os: mac + store: steam - bit: 64 os: linux store: steam - /cathedral.exe: + "/cathedral.exe": - when: - bit: 64 os: windows @@ -90760,16 +91042,16 @@ Cathedral 3-D: installDir: Cathedral 3-D: {} launch: - /cathedral-3d.app: + "/cathedral-3d.app": - when: - os: mac store: steam - /cathedral-3d.exe: + "/cathedral-3d.exe": - when: - bit: 64 os: windows store: steam - /run-cathedral-3d.sh: + "/run-cathedral-3d.sh": - when: - bit: 64 os: linux @@ -90778,12 +91060,12 @@ Cathedral 3-D: id: 1091590 Catherine Classic: files: - /TheEccentricApe/Catherine: + "/TheEccentricApe/Catherine": tags: - save when: - os: windows - /TheEccentricApe/Catherine/AppSettings.ini: + "/TheEccentricApe/Catherine/AppSettings.ini": tags: - config when: @@ -90791,7 +91073,7 @@ Catherine Classic: installDir: CatherineClassic: {} launch: - /Catherine.exe: + "/Catherine.exe": - when: - bit: 32 os: windows @@ -90800,7 +91082,7 @@ Catherine Classic: id: 893180 Catie in MeowmeowLand: files: - /.local/share/Steam/steamapps/common/Catie in MeowmeowLand/Save: + "/.local/share/Steam/steamapps/common/Catie in MeowmeowLand/Save": tags: - config - save @@ -90816,15 +91098,15 @@ Catie in MeowmeowLand: installDir: Catie in MeowmeowLand: {} launch: - /CatieinMeowmeowLand.app: + "/CatieinMeowmeowLand.app": - when: - os: mac store: steam - /CatieinMeowmeowLand.exe: + "/CatieinMeowmeowLand.exe": - when: - os: windows store: steam - /CatieinMeowmeowLand.x86_64: + "/CatieinMeowmeowLand.x86_64": - when: - os: linux store: steam @@ -90839,7 +91121,7 @@ Catistry: installDir: Catistry: {} launch: - /Catistry.exe: + "/Catistry.exe": - when: - store: steam steam: @@ -90850,13 +91132,13 @@ Catizens: installDir: Catizens: {} launch: - /Catizens.app/Contents/MacOS/Catizens: - - arguments: '-steam' + "/Catizens.app/Contents/MacOS/Catizens": + - arguments: "-steam" when: - os: mac store: steam - /Catizens.exe: - - arguments: '-steam' + "/Catizens.exe": + - arguments: "-steam" when: - os: windows store: steam @@ -90866,20 +91148,20 @@ Catlateral Damage: installDir: CatlateralDamage: {} launch: - /Catlateral Damage (64-bit).app: + "/Catlateral Damage (64-bit).app": - when: - os: mac store: steam - /CatlateralDamage.exe: + "/CatlateralDamage.exe": - when: - os: windows store: steam - /CatlateralDamage.x86: + "/CatlateralDamage.x86": - when: - bit: 32 os: linux store: steam - /CatlateralDamage.x86_64: + "/CatlateralDamage.x86_64": - when: - bit: 64 os: linux @@ -90888,7 +91170,7 @@ Catlateral Damage: id: 329860 Catmaze: files: - /Catmaze/User Data: + "/Catmaze/User Data": tags: - config when: @@ -90896,15 +91178,15 @@ Catmaze: installDir: Catmaze: {} launch: - /catmaze.app: + "/catmaze.app": - when: - os: mac store: steam - /nw: + "/nw": - when: - os: linux store: steam - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -90914,27 +91196,27 @@ Catmouth Island: installDir: Catmouth: {} launch: - /catmouth.exe: + "/catmouth.exe": - when: - bit: 64 os: windows store: steam - /catmouth.x86: + "/catmouth.x86": - when: - bit: 32 os: linux store: steam - /catmouth.x86_64: + "/catmouth.x86_64": - when: - bit: 64 os: linux store: steam - /catmouth32.exe: + "/catmouth32.exe": - when: - bit: 32 os: windows store: steam - /catmouths64bit.app: + "/catmouths64bit.app": - when: - os: mac store: steam @@ -90944,7 +91226,7 @@ Catorize: installDir: Catorize: {} launch: - /Catorize.exe: + "/Catorize.exe": - when: - os: windows store: steam @@ -90960,7 +91242,7 @@ Cats Make You Smarter!: installDir: CatsMakeYouSmarter: {} launch: - /catsmakeyousmarter.exe: + "/catsmakeyousmarter.exe": - when: - os: windows store: steam @@ -90971,12 +91253,17 @@ Cats Tanks: id: 673770 Cats are Liquid: files: - /CatsAreLiquidLinux_Data/Mono/etc/mono: + /SOFTWARE/LastQuarter Studios/Cats are Liquid: + tags: + - config + when: + - os: windows + "/CatsAreLiquidLinux_Data/Mono/etc/mono": tags: - config when: - os: linux - /AppData/LocalLow/LastQuarter Studios/Cats are Liquid: + "/AppData/LocalLow/LastQuarter Studios/Cats are Liquid": tags: - save when: @@ -90984,15 +91271,15 @@ Cats are Liquid: installDir: Cats are Liquid: {} launch: - /CatsAreLiquidLinux/CatsAreLiquidLinux.x86: + "/CatsAreLiquidLinux/CatsAreLiquidLinux.x86": - when: - os: linux store: steam - /CatsAreLiquidMac/CatsAreLiquidMac.app: + "/CatsAreLiquidMac/CatsAreLiquidMac.app": - when: - os: mac store: steam - /CatsAreLiquidWindows/CatsAreLiquidWindows.exe: + "/CatsAreLiquidWindows/CatsAreLiquidWindows.exe": - when: - os: windows store: steam @@ -91002,15 +91289,15 @@ Cats are Liquid - A Better Place: installDir: Cats are Liquid - A Better Place: {} launch: - /CaL-ABP-Linux.x86_64: + "/CaL-ABP-Linux.x86_64": - when: - os: linux store: steam - /CaL-ABP-Windows.exe: + "/CaL-ABP-Windows.exe": - when: - os: windows store: steam - /CaL-ABP-macOS.app: + "/CaL-ABP-macOS.app": - when: - os: mac store: steam @@ -91018,7 +91305,7 @@ Cats are Liquid - A Better Place: id: 1188080 Cats in Time: files: - /AppData/LocalLow/Pine Studio/Cats in Time/*.sav: + "/AppData/LocalLow/Pine Studio/Cats in Time/*.sav": tags: - save when: @@ -91026,7 +91313,7 @@ Cats in Time: installDir: Cats in Time: {} launch: - /CatsInTime.exe: + "/CatsInTime.exe": - when: - os: windows store: steam @@ -91040,7 +91327,7 @@ Cats!: installDir: CATS: {} launch: - /cats.exe: + "/cats.exe": - when: - os: windows store: steam @@ -91050,7 +91337,7 @@ Catsapults: installDir: Catsapults: {} launch: - /Catsapults.exe: + "/Catsapults.exe": - when: - bit: 64 os: windows @@ -91061,11 +91348,11 @@ Catsby: installDir: Catsby: {} launch: - /Catsby.app: + "/Catsby.app": - when: - os: mac store: steam - /Catsby.exe: + "/Catsby.exe": - when: - os: windows store: steam @@ -91075,17 +91362,17 @@ Cattle Admission Challenge: installDir: Cattle Admission Challenge: {} launch: - /Cattle Admission Challenge.exe: + "/Cattle Admission Challenge.exe": - when: - os: windows store: steam steam: id: 1215500 -'Cattle Call: Hollywood Talent Manager': +"Cattle Call: Hollywood Talent Manager": installDir: Cattle Call: {} launch: - /Cattle Call.exe: + "/Cattle Call.exe": - when: - os: windows store: steam @@ -91093,22 +91380,12 @@ Cattle Admission Challenge: id: 943130 Cattle and Crops: files: - /.cattle-and-crops/Engine: + "/.cattle-and-crops/Engine": tags: - config when: - os: linux - /.cattle-and-crops/Profiles/*/Save: - tags: - - save - when: - - os: linux - /documents/My Games/Cattle and Crops/Profiles/*/Save: - tags: - - save - when: - - os: windows - /My Games/Cattle and Crops/Engine: + "/My Games/Cattle and Crops/Engine": tags: - config when: @@ -91118,12 +91395,12 @@ Cattle and Crops: installDir: Cattle and Crops: {} launch: - /CattleAndCrops: + "/CattleAndCrops": - when: - bit: 64 os: linux store: steam - /CattleAndCrops.exe: + "/CattleAndCrops.exe": - when: - bit: 64 os: windows @@ -91132,39 +91409,39 @@ Cattle and Crops: id: 704030 Catwoman: files: - /EA GAMES/Catwoman/Saved Games: + "/EA GAMES/Catwoman/Saved Games": tags: - save when: - os: windows -'Catyph: The Kunci Experiment': +"Catyph: The Kunci Experiment": files: - /addon/Light Edition/config.ini: + "/addon/Light Edition/config.ini": tags: - config when: - os: windows - /config.ini: + "/config.ini": tags: - config when: - os: windows - /Simon Says Play/Catyph Light Edition/Savegames: + "/Simon Says Play/Catyph Light Edition/Savegames": tags: - save when: - os: windows - /Simon Says Play/Catyph Light Edition/config.ini: + "/Simon Says Play/Catyph Light Edition/config.ini": tags: - config when: - os: windows - /Simon Says Play/Catyph/Savegames: + "/Simon Says Play/Catyph/Savegames": tags: - save when: - os: windows - /Simon Says Play/Catyph/config.ini: + "/Simon Says Play/Catyph/config.ini": tags: - config when: @@ -91172,17 +91449,17 @@ Catwoman: installDir: Catyph: {} launch: - /Launcher.exe: + "/Launcher.exe": - when: - os: windows store: steam steam: id: 396870 -'Causa, Voices of the Dusk': +"Causa, Voices of the Dusk": installDir: - 'Causa, Voices of the Dusk': {} + "Causa, Voices of the Dusk": {} launch: - /Causa Voices of the Dusk.exe: + "/Causa Voices of the Dusk.exe": - when: - os: windows store: steam @@ -91192,20 +91469,20 @@ Causality: installDir: Causality: {} launch: - /Causality.app/Contents/MacOS/Causality: + "/Causality.app/Contents/MacOS/Causality": - when: - os: mac store: steam - /Causality.exe: + "/Causality.exe": - when: - os: windows store: steam - /Causality.x86: + "/Causality.x86": - when: - bit: 32 os: linux store: steam - /Causality.x86_64: + "/Causality.x86_64": - when: - bit: 64 os: linux @@ -91219,15 +91496,15 @@ Cave Brawlers: installDir: Cave Brawlers: {} launch: - /linux/game.x86: + "/linux/game.x86": - when: - os: linux store: steam - /mac/mac.app/Contents/MacOS/mac: + "/mac/mac.app/Contents/MacOS/mac": - when: - os: mac store: steam - /win/game.exe: + "/win/game.exe": - when: - os: windows store: steam @@ -91237,7 +91514,7 @@ Cave Coaster: installDir: Cave Coaster: {} launch: - /CaveCoaster.exe: + "/CaveCoaster.exe": - when: - store: steam steam: @@ -91246,16 +91523,16 @@ Cave Confectioner: installDir: Cave Confectioner: {} launch: - /cave-confec: + "/cave-confec": - when: - bit: 64 os: linux store: steam - /cave-confec-mac: + "/cave-confec-mac": - when: - os: mac store: steam - /cave-confec.exe: + "/cave-confec.exe": - when: - os: windows store: steam @@ -91270,11 +91547,11 @@ Cave Escape: installDir: Cave Escape: {} launch: - /Cave Escape.app: + "/Cave Escape.app": - when: - os: mac store: steam - /Cave Escape.exe: + "/Cave Escape.exe": - when: - os: windows store: steam @@ -91284,7 +91561,7 @@ Cave Maze: installDir: Continuous Girl: {} launch: - /Continuous Girl//Continuous Girl.exe: + "/Continuous Girl//Continuous Girl.exe": - when: - store: steam steam: @@ -91293,7 +91570,7 @@ Cave Quest: installDir: Cave Quest: {} launch: - /cavequest.exe: + "/cavequest.exe": - when: - os: windows store: steam @@ -91303,7 +91580,7 @@ Cave Racer: installDir: CaveRacer: {} launch: - /CaveRacer.exe: + "/CaveRacer.exe": - when: - os: windows store: steam @@ -91313,7 +91590,7 @@ Cave Runner: installDir: Cave Runner: {} launch: - /cv.exe: + "/cv.exe": - when: - os: windows store: steam @@ -91321,19 +91598,19 @@ Cave Runner: id: 763400 Cave Story: files: - /Config.dat: + "/Config.dat": tags: - config when: - os: windows - /Profile.dat: + "/Profile.dat": tags: - save when: - os: windows -Cave Story's Secret Santa: +"Cave Story's Secret Santa": files: - /secret_santa.dat: + "/secret_santa.dat": tags: - save when: @@ -91343,59 +91620,60 @@ Cave Story's Secret Santa: installDir: CSSecretSanta: {} launch: - /Cave Story's Secret Santa.exe: + "/Cave Story's Secret Santa.exe": - when: - os: windows store: steam registry: - HKEY_CURRENT_USER/SOFTWARE/Nicalis/Cave Story's Secret Santa: + "HKEY_CURRENT_USER/SOFTWARE/Nicalis/Cave Story's Secret Santa": tags: - config steam: id: 1812280 Cave Story+: files: - /Profile.dat: + "/Profile.dat": tags: - config - save when: - os: windows - /.local/share/CaveStory+: + "/.local/share/CaveStory+": tags: - config when: - os: linux - /.local/share/CaveStory+/Profile.dat: + "/.local/share/CaveStory+/Profile.dat": tags: - save when: - os: linux - /Library/Application Support/Profile.dat: + "/Library/Application Support/Profile.dat": tags: - save when: - os: mac - /My Games/Cave Story+ (Galaxy)/Profile.dat: + "/My Games/Cave Story+ (Galaxy)/Profile.dat": tags: - config - save when: - - store: gog + - os: windows + store: gog gog: id: 1114665528 installDir: Cave Story+: {} launch: - /Cave Story+.app: + "/Cave Story+.app": - when: - os: mac store: steam - /CaveStory+: + "/CaveStory+": - when: - os: linux store: steam - /CaveStory+.exe: + "/CaveStory+.exe": - when: - os: windows store: steam @@ -91405,7 +91683,7 @@ Cave of Illusions: installDir: Cave of Illusions: {} launch: - /Cave Of Illusions.exe: + "/Cave Of Illusions.exe": - when: - os: windows store: steam @@ -91415,11 +91693,11 @@ Cave to Kingdom: installDir: Cave to Kingdom: {} launch: - /CaveToKingdom: + "/CaveToKingdom": - when: - os: linux store: steam - /CaveToKingdom.exe: + "/CaveToKingdom.exe": - when: - os: windows store: steam @@ -91429,7 +91707,7 @@ CaveBugBoy: installDir: CaveBugBoy: {} launch: - /CAVEBUGBOY.exe: + "/CAVEBUGBOY.exe": - when: - os: windows store: steam @@ -91439,7 +91717,7 @@ CaveDare: installDir: CaveDare: {} launch: - /CaveDare x86.exe: + "/CaveDare x86.exe": - when: - os: windows store: steam @@ -91449,11 +91727,11 @@ CaveDuel: installDir: CaveDuel: {} launch: - /CaveDuel.exe: + "/CaveDuel.exe": - when: - os: windows store: steam - /CaveDuel.x86: + "/CaveDuel.x86": - when: - os: linux store: steam @@ -91461,12 +91739,12 @@ CaveDuel: id: 706310 Caveblazers: files: - /Caveblazers/*.ini: + "/Caveblazers/*.ini": tags: - config when: - os: windows - /Caveblazers/*.sav: + "/Caveblazers/*.sav": tags: - save when: @@ -91476,7 +91754,7 @@ Caveblazers: installDir: Caveblazers: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -91486,7 +91764,7 @@ Caveman Alive: installDir: Caveman Alive: {} launch: - /Caveman Alive.exe: + "/Caveman Alive.exe": - when: - os: windows store: steam @@ -91496,7 +91774,7 @@ Caveman Chuck: installDir: Caveman Chuck: {} launch: - /Caveman Chuck.exe: + "/Caveman Chuck.exe": - when: - bit: 64 os: windows @@ -91507,11 +91785,11 @@ Caveman Craig: installDir: cavemancraig: {} launch: - /CavemanCraig.app: + "/CavemanCraig.app": - when: - os: mac store: steam - /CavemanCraig.exe: + "/CavemanCraig.exe": - when: - os: windows store: steam @@ -91521,7 +91799,7 @@ Caveman Stories: installDir: Caveman Stories: {} launch: - /Caveman Stories.exe: + "/Caveman Stories.exe": - when: - os: windows store: steam @@ -91531,7 +91809,7 @@ Caveman The Game: installDir: Caveman The Game: {} launch: - /CavemanTheGame.exe: + "/CavemanTheGame.exe": - when: - os: windows store: steam @@ -91541,39 +91819,39 @@ Caveman Warriors: installDir: Caveman Warriors: {} launch: - /CavemanWarriors.app/Contents/MacOS/CavemanWarriors: + "/CavemanWarriors.app/Contents/MacOS/CavemanWarriors": - when: - os: mac store: steam - /CavemanWarriors.exe: + "/CavemanWarriors.exe": - when: - os: windows store: steam - /CavemanWarriors.x86: + "/CavemanWarriors.x86": - when: - bit: 32 os: linux store: steam - /CavemanWarriors.x86_64: + "/CavemanWarriors.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 603420 -'Caveman World: Mountains of Unga Boonga': +"Caveman World: Mountains of Unga Boonga": installDir: Caveman World Mountains of Unga Boonga: {} launch: - /Caveman World.app: + "/Caveman World.app": - when: - os: mac store: steam - /Caveman World.exe: + "/Caveman World.exe": - when: - os: windows store: steam - /Caveman World.x86: + "/Caveman World.x86": - when: - os: linux store: steam @@ -91586,7 +91864,7 @@ Caver: installDir: Bugout: {} launch: - /BugOut.exe: + "/BugOut.exe": - when: - bit: 64 os: windows @@ -91597,7 +91875,7 @@ Caver (TrainStory): installDir: Caver: {} launch: - /Caver0.1/DeepWell1.0.exe: + "/Caver0.1/DeepWell1.0.exe": - when: - bit: 64 os: windows @@ -91611,15 +91889,15 @@ Cavern Crumblers: installDir: Cavern Crumblers: {} launch: - /CavernCrumblers.exe: + "/CavernCrumblers.exe": - when: - os: windows store: steam - /Linux.exe: + "/Linux.exe": - when: - os: linux store: steam - /Mac.app: + "/Mac.app": - when: - os: mac store: steam @@ -91629,7 +91907,7 @@ Cavern Escape: installDir: Cavern Escape: {} launch: - /cavern escape.exe: + "/cavern escape.exe": - when: - os: windows store: steam @@ -91639,7 +91917,7 @@ Cavern Kings: installDir: Cavern Kings: {} launch: - /Cavern Kings.exe: + "/Cavern Kings.exe": - when: - bit: 32 os: windows @@ -91648,17 +91926,17 @@ Cavern Kings: id: 321830 Cavern of Dreams: files: - /LocalLow/Bynine Studio/Cavern of Dreams/save1.json: + "/LocalLow/Bynine Studio/Cavern of Dreams/save1.json": tags: - save when: - os: windows - /LocalLow/Bynine Studio/Cavern of Dreams/save2.json: + "/LocalLow/Bynine Studio/Cavern of Dreams/save2.json": tags: - save when: - os: windows - /LocalLow/Bynine Studio/Cavern of Dreams/save3.json: + "/LocalLow/Bynine Studio/Cavern of Dreams/save3.json": tags: - save when: @@ -91666,7 +91944,7 @@ Cavern of Dreams: installDir: Cavern of Dreams: {} launch: - /Cavern of Dreams.exe: + "/Cavern of Dreams.exe": - when: - store: steam steam: @@ -91675,7 +91953,7 @@ Cavern of Time: installDir: Cavern of Time: {} launch: - /nw.exe: + "/nw.exe": - when: - store: steam steam: @@ -91684,30 +91962,30 @@ Caverns of Karvella: installDir: CavernsofKarvella: {} launch: - /caverns of karvella 1.exe: + "/caverns of karvella 1.exe": - when: - os: windows store: steam steam: id: 1011460 -'Caverns of Mars: Recharged': +"Caverns of Mars: Recharged": files: - /AppData/LocalLow/Atari Inc_/CavernsOfMarsRecharged/config.txt: + "/AppData/LocalLow/Atari Inc_/CavernsOfMarsRecharged/config.txt": tags: - config when: - os: windows - /AppData/LocalLow/Atari Inc_/CavernsOfMarsRecharged/save.sav: + "/AppData/LocalLow/Atari Inc_/CavernsOfMarsRecharged/save.sav": tags: - save when: - os: windows - /Library/Application Support/Atari Inc_/CavernsOfMarsRecharged: + "/Library/Application Support/Atari Inc_/CavernsOfMarsRecharged": tags: - save when: - os: mac - /unity3d/Atari Inc_/CavernsOfMarsRecharged: + "/unity3d/Atari Inc_/CavernsOfMarsRecharged": tags: - save when: @@ -91715,15 +91993,15 @@ Caverns of Karvella: installDir: Caverns Of Mars Recharged: {} launch: - /CavernsOfMarsRecharged.app: + "/CavernsOfMarsRecharged.app": - when: - os: mac store: steam - /CavernsOfMarsRecharged.exe: + "/CavernsOfMarsRecharged.exe": - when: - os: windows store: steam - /MarsRecharged.x86_64: + "/MarsRecharged.x86_64": - when: - bit: 64 os: linux @@ -91738,31 +92016,31 @@ Caverns of the Snow Witch: installDir: Caverns of the Snow Witch: {} launch: - /Caverns of the Snow Witch.app: + "/Caverns of the Snow Witch.app": - when: - os: mac store: steam - /Caverns of the Snow Witch.exe: + "/Caverns of the Snow Witch.exe": - when: - os: windows store: steam - /Caverns of the Snow Witch.x86: + "/Caverns of the Snow Witch.x86": - when: - bit: 32 os: linux store: steam - /Caverns of the Snow Witch.x86_64: + "/Caverns of the Snow Witch.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 324730 -'Caverns: Lost Sky': +"Caverns: Lost Sky": installDir: Caverns Lost Sky: {} launch: - /Caverns.exe: + "/Caverns.exe": - when: - bit: 64 os: windows @@ -91773,16 +92051,16 @@ Cavernus: installDir: Cavernus: {} launch: - /nw.exe: + "/nw.exe": - when: - store: steam steam: id: 475080 -'Caves and Castles: Underworld': +"Caves and Castles: Underworld": installDir: Caves and Castles Underworld: {} launch: - /CavesAndCastles_Underworld.exe: + "/CavesAndCastles_Underworld.exe": - when: - os: windows store: steam @@ -91792,7 +92070,7 @@ Caves of Plague: installDir: Caves of Plague: {} launch: - /CavesOfPlague.exe: + "/CavesOfPlague.exe": - when: - os: windows store: steam @@ -91800,32 +92078,32 @@ Caves of Plague: id: 905880 Caves of Qud: files: - /.config/unity3d/Freehold Games/CavesOfQud/PlayerOptions.json: + "/.config/unity3d/Freehold Games/CavesOfQud/PlayerOptions.json": tags: - config when: - os: linux - /.config/unity3d/Freehold Games/CavesOfQud/Saves: + "/.config/unity3d/Freehold Games/CavesOfQud/Saves": tags: - save when: - os: linux - /AppData/LocalLow/Freehold Games/CavesOfQud/PlayerOptions.json: + "/AppData/LocalLow/Freehold Games/CavesOfQud/PlayerOptions.json": tags: - config when: - os: windows - /AppData/LocalLow/Freehold Games/CavesOfQud/Saves: + "/AppData/LocalLow/Freehold Games/CavesOfQud/Saves": tags: - save when: - os: windows - /Library/Application Support/com.FreeholdGames.CavesOfQud/PlayerOptions.json: + "/Library/Application Support/com.FreeholdGames.CavesOfQud/PlayerOptions.json": tags: - config when: - os: mac - /Library/Application Support/com.FreeholdGames.CavesOfQud/Saves: + "/Library/Application Support/com.FreeholdGames.CavesOfQud/Saves": tags: - save when: @@ -91835,20 +92113,20 @@ Caves of Qud: installDir: Caves of Qud: {} launch: - /CoQ.app: + "/CoQ.app": - when: - os: mac store: steam - /CoQ.exe: + "/CoQ.exe": - when: - os: windows store: steam - /CoQ.x86: + "/CoQ.x86": - when: - bit: 32 os: linux store: steam - /CoQ.x86_64: + "/CoQ.x86_64": - when: - bit: 64 os: linux @@ -91862,7 +92140,7 @@ Cavesweeper: installDir: Cavesweeper: {} launch: - /cavesweeper.exe: + "/cavesweeper.exe": - when: - os: windows store: steam @@ -91872,11 +92150,11 @@ Caviar - Endless Stress Reliever: installDir: Caviar - Endless Stress Reliever: {} launch: - /Caviar.app: + "/Caviar.app": - when: - os: mac store: steam - /Caviar.exe: + "/Caviar.exe": - when: - os: windows store: steam @@ -91884,7 +92162,7 @@ Caviar - Endless Stress Reliever: id: 764740 Cavity Busters: files: - /Cavity_Busters/*.sav: + "/Cavity_Busters/*.sav": tags: - save when: @@ -91892,7 +92170,7 @@ Cavity Busters: installDir: Cavity Busters: {} launch: - /Cavity_Busters.exe: + "/Cavity_Busters.exe": - when: - os: windows store: steam @@ -91902,7 +92180,7 @@ Cavyrn: installDir: Cavyrn: {} launch: - /Cavyrn Build/Cavyrn.exe: + "/Cavyrn Build/Cavyrn.exe": - when: - os: windows store: steam @@ -91910,18 +92188,18 @@ Cavyrn: id: 1008970 Cayne: files: - /.config/unity3d/The Brotherhood/CAYNE: + "/.config/unity3d/The Brotherhood/CAYNE": tags: - config - save when: - os: linux - /The Brotherhood/CAYNE: + "/The Brotherhood/CAYNE": tags: - save when: - os: windows - /The Brotherhood/CAYNE/config.ini: + "/The Brotherhood/CAYNE/config.ini": tags: - config when: @@ -91931,17 +92209,17 @@ Cayne: installDir: CAYNE: {} launch: - /cayne.app: + "/cayne.app": - when: - bit: 64 os: mac store: steam - /cayne.exe: + "/cayne.exe": - when: - bit: 64 os: windows store: steam - /cayne.x86_64: + "/cayne.x86_64": - when: - bit: 64 os: linux @@ -91952,11 +92230,11 @@ Cayne: - config steam: id: 532840 -'Cazzarion: Demon Hunting': +"Cazzarion: Demon Hunting": installDir: Cazzarion Demon Hunting: {} launch: - /Cazzarion_Demon_Hunting.exe: + "/Cazzarion_Demon_Hunting.exe": - when: - os: windows store: steam @@ -91966,12 +92244,12 @@ Cecconoid: installDir: Cecconoid: {} launch: - /Cecconoid.exe: + "/Cecconoid.exe": - when: - bit: 64 os: windows store: steam - /Cecconoid.x86_64: + "/Cecconoid.x86_64": - when: - bit: 64 os: linux @@ -91982,7 +92260,7 @@ Cecil Run: installDir: Cecil Run: {} launch: - /Cecil_Run_x86_32bit/Cecil Run.exe: + "/Cecil_Run_x86_32bit/Cecil Run.exe": - when: - os: windows store: steam @@ -91992,7 +92270,7 @@ Cedar Junction: installDir: Cedar Junction: {} launch: - /Cedar Junction.exe: + "/Cedar Junction.exe": - when: - os: windows store: steam @@ -92002,7 +92280,7 @@ Cefore: installDir: Cefore: {} launch: - /Cefore.exe: + "/Cefore.exe": - when: - store: steam registry: @@ -92018,7 +92296,7 @@ Ceggtcher VR: id: 524610 Celaria: files: - /Celaria: + "/Celaria": tags: - config - save @@ -92027,7 +92305,7 @@ Celaria: installDir: Celaria: {} launch: - /Celaria.exe: + "/Celaria.exe": - when: - os: windows store: steam @@ -92035,50 +92313,50 @@ Celaria: id: 1081650 Celeste: files: - /Saves/*.celeste: + "/Saves/*.celeste": tags: - save when: - os: windows - /Saves/debug.celeste: + "/Saves/debug.celeste": tags: - save when: - os: windows - /Saves/settings.celeste: + "/Saves/settings.celeste": tags: - config when: - os: windows - /Library/Application Support/Celeste/Saves: + "/Library/Application Support/Celeste/Saves": tags: - save when: - os: mac - /Library/Application Support/Celeste/Saves/settings.celeste: + "/Library/Application Support/Celeste/Saves/settings.celeste": tags: - config when: - os: mac - /Packages/MattMakesGamesInc.Celeste_79daxvg0dq3v6/Settings/settings.dat: + "/Packages/MattMakesGamesInc.Celeste_79daxvg0dq3v6/Settings/settings.dat": tags: - config when: - os: windows store: microsoft - /Packages/MattMakesGamesInc.Celeste_79daxvg0dq3v6/SystemAppData/wgs: + "/Packages/MattMakesGamesInc.Celeste_79daxvg0dq3v6/SystemAppData/wgs": tags: - config - save when: - os: windows store: microsoft - /Celeste/Saves: + "/Celeste/Saves": tags: - save when: - os: linux - /Celeste/Saves/settings.celeste: + "/Celeste/Saves/settings.celeste": tags: - config when: @@ -92086,15 +92364,15 @@ Celeste: installDir: Celeste: {} launch: - /Celeste: + "/Celeste": - when: - os: linux store: steam - /Celeste.app/Contents/MacOS/Celeste: + "/Celeste.app/Contents/MacOS/Celeste": - when: - os: mac store: steam - /Celeste.exe: + "/Celeste.exe": - when: - os: windows store: steam @@ -92104,7 +92382,7 @@ Celestial: installDir: Celestial: {} launch: - /Celestial.exe: + "/Celestial.exe": - when: - bit: 64 os: windows @@ -92115,7 +92393,7 @@ Celestial Breach: installDir: Celestial Breach: {} launch: - /FireStarter.exe: + "/FireStarter.exe": - when: - os: windows store: steam @@ -92123,14 +92401,14 @@ Celestial Breach: id: 547970 Celestial Command: files: - ./Celestial Command/Saves: + "./Celestial Command/Saves": tags: - save when: - os: windows - os: mac - os: linux - ./Celestial Command/Saves/GameSettings.settings: + "./Celestial Command/Saves/GameSettings.settings": tags: - config when: @@ -92140,20 +92418,20 @@ Celestial Command: installDir: Celestial Command: {} launch: - /CelestialCommand.app: + "/CelestialCommand.app": - when: - os: mac store: steam - /CelestialCommand.exe: + "/CelestialCommand.exe": - when: - os: windows store: steam - /CelestialCommand.x86: + "/CelestialCommand.x86": - when: - bit: 32 os: linux store: steam - /CelestialCommand.x86_64: + "/CelestialCommand.x86_64": - when: - bit: 64 os: linux @@ -92164,26 +92442,29 @@ Celestial Creator: installDir: Luxocraft: {} launch: - /Luxocraft.exe: + "/Luxocraft.exe": - when: - bit: 32 os: windows store: steam + - bit: 64 + os: windows + store: steam steam: id: 666930 Celestial Crossing: installDir: Celestial Crossing: {} launch: - /CelestialCrossing.app: + "/CelestialCrossing.app": - when: - os: mac store: steam - /CelestialCrossing.exe: + "/CelestialCrossing.exe": - when: - os: windows store: steam - /CelestialCrossing.sh: + "/CelestialCrossing.sh": - when: - os: linux store: steam @@ -92193,38 +92474,38 @@ Celestial Hacker Girl Jessica: installDir: CelestialHackerGirlJessica: {} launch: - /CelestialHackerGirlJessica.app: + "/CelestialHackerGirlJessica.app": - when: - os: mac store: steam - /CelestialHackerGirlJessica.exe: + "/CelestialHackerGirlJessica.exe": - when: - os: windows store: steam steam: id: 873390 -'Celestial Tear: Demon''s Revenge': +"Celestial Tear: Demon's Revenge": installDir: - Celestial Tear Demon's Revenge: {} + "Celestial Tear Demon's Revenge": {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: id: 385190 -'Celestian Tales: Old North': +"Celestian Tales: Old North": files: - /Documents/Celestian Tales Old North/*.cton: + "/Documents/Celestian Tales Old North/*.cton": tags: - save when: - os: linux - /Celestian Tales Old North/*.cton: + "/Celestian Tales Old North/*.cton": tags: - save when: - os: windows - /unity3d/Ekuator Games/Celestian Tales Old North/prefs: + "/unity3d/Ekuator Games/Celestian Tales Old North/prefs": tags: - config when: @@ -92234,21 +92515,21 @@ Celestial Hacker Girl Jessica: installDir: Celestian Tales Old North: {} launch: - /CTON Linux.x86: + "/CTON Linux.x86": - when: - bit: 32 os: linux store: steam - /CTON Linux.x86_64: + "/CTON Linux.x86_64": - when: - bit: 64 os: linux store: steam - /CTON MacOSX.app: + "/CTON MacOSX.app": - when: - os: mac store: steam - /CTON Win32.exe: + "/CTON Win32.exe": - when: - os: windows store: steam @@ -92258,17 +92539,17 @@ Celestial Hacker Girl Jessica: - config steam: id: 315860 -'Celestian Tales: Realms Beyond': +"Celestian Tales: Realms Beyond": gog: id: 1875180273 installDir: Celestian Tales Realms Beyond: {} launch: - /CTRB MacOS.app: + "/CTRB MacOS.app": - when: - os: mac store: steam - /Celestian Tales Realms Beyond.exe: + "/Celestian Tales Realms Beyond.exe": - when: - os: windows store: steam @@ -92279,11 +92560,11 @@ Celestrion: Celestrion: {} steam: id: 424100 -Celia's Quest: +"Celia's Quest": installDir: - Celia's Quest: {} + "Celia's Quest": {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -92293,16 +92574,16 @@ Cell Defender: installDir: Cell_Defender: {} launch: - /Cell_Defender.exe: + "/Cell_Defender.exe": - when: - store: steam steam: id: 1002580 -'Cell HD: Emergence': +"Cell HD: Emergence": installDir: Cell HD emergence: {} launch: - /CellGame.exe: + "/CellGame.exe": - when: - os: windows store: steam @@ -92310,7 +92591,7 @@ Cell Defender: id: 334960 Cell to Singularity - Evolution Never Ends: files: - /AppData/LocalLow/Computer Lunch/Cell to Singularity: + "/AppData/LocalLow/Computer Lunch/Cell to Singularity": tags: - save when: @@ -92318,11 +92599,11 @@ Cell to Singularity - Evolution Never Ends: installDir: Cell to Singularity: {} launch: - /CellToSingularity.app/Contents/MacOS/CellToSingularity: + "/CellToSingularity.app/Contents/MacOS/CellToSingularity": - when: - os: mac store: steam - /CellToSingularity.exe: + "/CellToSingularity.exe": - when: - os: windows store: steam @@ -92336,28 +92617,28 @@ Cellar: installDir: Cellar: {} launch: - /CELLAR.exe: + "/CELLAR.exe": - when: - os: windows store: steam - /runner.x86: + "/runner.x86": - when: - os: linux store: steam steam: id: 449060 -'Cellfactor: Revolution': +"Cellfactor: Revolution": files: - /RealityEngine.ini: + "/RealityEngine.ini": tags: - config when: - os: windows -'Cellyon: Boss Confrontation': +"Cellyon: Boss Confrontation": installDir: Boss Confrontation: {} launch: - /Cellyon-BossConfrontation.exe: + "/Cellyon-BossConfrontation.exe": - when: - os: windows store: steam @@ -92367,7 +92648,7 @@ Cellz: installDir: Cellz: {} launch: - /Cellz SV0.01.exe: + "/Cellz SV0.01.exe": - when: - bit: 32 os: windows @@ -92381,19 +92662,19 @@ Celtabula: installDir: Celtabula: {} launch: - /Celtabula.exe: + "/Celtabula.exe": - when: - os: windows store: steam steam: id: 706200 -'Celtic Kings: Rage of War': +"Celtic Kings: Rage of War": gog: id: 1207658762 installDir: CK_RageOfWar: {} launch: - /Celtic kings Launcher.exe: + "/Celtic kings Launcher.exe": - when: - os: windows store: steam @@ -92401,12 +92682,12 @@ Celtabula: id: 827000 Celtreos: files: - /Library/Containers/name.kevingrant.celtreosmac/Data/Library/Application Support: + "/Library/Containers/name.kevingrant.celtreosmac/Data/Library/Application Support": tags: - save when: - os: mac - /Library/Containers/name.kevingrant.celtreosmac/Data/Library/Preferences: + "/Library/Containers/name.kevingrant.celtreosmac/Data/Library/Preferences": tags: - config when: @@ -92414,7 +92695,7 @@ Celtreos: installDir: Celtreos: {} launch: - /Celtreos.app/Contents/MacOS/Celtreos: + "/Celtreos.app/Contents/MacOS/Celtreos": - when: - os: mac store: steam @@ -92430,19 +92711,19 @@ Cemetery Warrior 4: installDir: Cemetery Warrior 4: {} launch: - /Cemetery Warrior 4.exe: + "/Cemetery Warrior 4.exe": - when: - store: steam steam: id: 1150990 Cemu: files: - /mlc01/usr/save: + "/mlc01/usr/save": tags: - save when: - os: windows - /Documents/mlc01/usr/save: + "/Documents/mlc01/usr/save": tags: - save when: @@ -92451,16 +92732,16 @@ Cendric: installDir: Cendric: {} launch: - /Cendric: + "/Cendric": - when: - bit: 64 os: linux store: steam - /Cendric.app/Contents/MacOS/Cendric: + "/Cendric.app/Contents/MacOS/Cendric": - when: - os: mac store: steam - /Cendric.exe: + "/Cendric.exe": - when: - bit: 64 os: windows @@ -92471,15 +92752,15 @@ Centauri Sector: installDir: Centauri Sector: {} launch: - /centaurisector: + "/centaurisector": - when: - os: linux store: steam - /centaurisector.app: + "/centaurisector.app": - when: - os: mac store: steam - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -92494,26 +92775,26 @@ Centifeed: installDir: Centifeed: {} launch: - /Centifeed.exe: + "/Centifeed.exe": - when: - os: windows store: steam steam: id: 889450 -'Centipede: Recharged': +"Centipede: Recharged": gog: id: 1848182037 installDir: Centipede Recharged: {} launch: - /Centipede Recharged.exe: + "/Centipede Recharged.exe": - when: - store: steam - /Centipede_Recharged.app: + "/Centipede_Recharged.app": - when: - os: mac store: steam - /centipde_recharged.x86_64: + "/centipde_recharged.x86_64": - when: - os: linux store: steam @@ -92523,7 +92804,7 @@ Central Intelligence: installDir: Central Intelligence: {} launch: - /dosbox.exe: + "/dosbox.exe": - when: - os: windows store: steam @@ -92533,32 +92814,32 @@ Centralia: installDir: CENTRALIA: {} launch: - /CENTRALIA.exe: + "/CENTRALIA.exe": - when: - bit: 64 os: windows store: steam steam: id: 1122110 -'Centralia: Homecoming': +"Centralia: Homecoming": installDir: Centralia Homecoming: {} launch: - /Centralia Homecoming.exe: + "/Centralia Homecoming.exe": - when: - bit: 64 os: windows store: steam steam: id: 1166740 -'Century: Age of Ashes': +"Century: Age of Ashes": files: - /Century/Saved/Config/WindowsNoEditor: + "/Century/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /Century/Saved/SaveGames: + "/Century/Saved/SaveGames": tags: - save when: @@ -92566,8 +92847,8 @@ Centralia: installDir: Century: {} launch: - /Century.exe: - - arguments: '-noraytracing -dx11' + "/Century.exe": + - arguments: "-noraytracing -dx11" when: - bit: 64 os: windows @@ -92576,7 +92857,7 @@ Centralia: id: 918570 Cepheus Protocol: files: - /CepheusProtocol/Saved/SaveGames: + "/CepheusProtocol/Saved/SaveGames": tags: - save when: @@ -92584,23 +92865,23 @@ Cepheus Protocol: installDir: Cepheus Protocol: {} launch: - /CepheusProtocol.exe: + "/CepheusProtocol.exe": - when: - bit: 64 os: windows store: steam - /CepheusProtocol.sh: + "/CepheusProtocol.sh": - when: - bit: 64 os: linux store: steam steam: id: 979640 -'Cerberus: Orbital watch': +"Cerberus: Orbital watch": installDir: Cerberus Orbital watch: {} launch: - /CerberusOW.exe: + "/CerberusOW.exe": - when: - os: windows store: steam @@ -92613,16 +92894,19 @@ Cereal Soup: installDir: Cereal Soup: {} launch: - /Cereal Soup.app: + "/Cereal Soup.app": - when: - os: mac store: steam - /Cereal Soup.exe: + "/Cereal Soup.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam - /CerealSoup.x86: + "/CerealSoup.x86": - when: - bit: 32 os: linux @@ -92631,7 +92915,7 @@ Cereal Soup: id: 838900 Ceres: files: - /AppData/LocalLow/Jotunn Games/Ceres: + "/AppData/LocalLow/Jotunn Games/Ceres": tags: - save when: @@ -92639,20 +92923,20 @@ Ceres: installDir: Ceres: {} launch: - /Ceres.app/Contents/MacOS/Ceres: + "/Ceres.app/Contents/MacOS/Ceres": - when: - os: mac store: steam - /Ceres.exe: + "/Ceres.exe": - when: - os: windows store: steam - /Ceres.x86: + "/Ceres.x86": - when: - bit: 32 os: linux store: steam - /Ceres.x86_64: + "/Ceres.x86_64": - when: - bit: 64 os: linux @@ -92663,7 +92947,7 @@ Ceress and Orea: installDir: Ceress and Orea: {} launch: - /CeressAndOrea/nw.exe: + "/CeressAndOrea/nw.exe": - when: - bit: 64 os: windows @@ -92674,7 +92958,7 @@ Cetetorius: installDir: Cetetorius: {} launch: - /Cetetorius.exe: + "/Cetetorius.exe": - when: - os: windows store: steam @@ -92682,12 +92966,12 @@ Cetetorius: id: 1140020 Ceville: files: - /Ceville/config.cfg: + "/Ceville/config.cfg": tags: - config when: - os: windows - /Ceville/save: + "/Ceville/save": tags: - save when: @@ -92697,7 +92981,7 @@ Ceville: installDir: Ceville: {} launch: - /Ceville.exe: + "/Ceville.exe": - when: - store: steam steam: @@ -92706,25 +92990,25 @@ Chai: installDir: Chai: {} launch: - /Chai.app: + "/Chai.app": - when: - os: mac store: steam - /Chai.exe: + "/Chai.exe": - when: - os: windows store: steam - /Chai.x86_64: + "/Chai.x86_64": - when: - os: linux store: steam steam: id: 2094380 -'Chain Reaction : Sexy Hentai Girls': +"Chain Reaction : Sexy Hentai Girls": installDir: chainReactionSHG: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -92737,17 +93021,17 @@ ChainMan: id: 646300 Chained Echoes: files: - /AppData/LocalLow/Chained Echoes/Chained Echoes: + "/AppData/LocalLow/Chained Echoes/Chained Echoes": tags: - save when: - os: windows - /Library/Application Support/unity.Chained-Echoes.Chained-Echoes: + "/Library/Application Support/unity.Chained-Echoes.Chained-Echoes": tags: - save when: - os: mac - /.config/unity3d/Chained Echoes/Chained Echoes: + "/.config/unity3d/Chained Echoes/Chained Echoes": tags: - save when: @@ -92762,15 +93046,15 @@ Chained Echoes: installDir: Chained Echoes: {} launch: - /Chained Echoes.exe: + "/Chained Echoes.exe": - when: - os: windows store: steam - /ChainedEchoes.app: + "/ChainedEchoes.app": - when: - os: mac store: steam - /Chained_Echoes.x86_64: + "/Chained_Echoes.x86_64": - when: - os: linux store: steam @@ -92780,7 +93064,7 @@ Chained Echoes: - config steam: id: 1229240 -'Chained: A Victorian Nightmare': +"Chained: A Victorian Nightmare": installDir: Chained A Victorian Nightmare: {} steam: @@ -92795,17 +93079,17 @@ Chainmonsters: id: 815490 Chains: files: - /Save/*.lua: + "/Save/*.lua": tags: - save when: - os: windows - /Save/settings.lua: + "/Save/settings.lua": tags: - config when: - os: windows - /chains/*.xml: + "/chains/*.xml": tags: - config when: @@ -92813,11 +93097,11 @@ Chains: installDir: Chains: {} launch: - /Chains.app: + "/Chains.app": - when: - os: mac store: steam - /Chains.exe: + "/Chains.exe": - when: - os: windows store: steam @@ -92828,7 +93112,7 @@ Chains of Fury: id: 1121320 Chainsaw Warrior: files: - /userdata//251710/remote: + "/userdata//251710/remote": tags: - save when: @@ -92836,15 +93120,15 @@ Chainsaw Warrior: installDir: ChainsawWarrior: {} launch: - /CWSteamLinux.x86: + "/CWSteamLinux.x86": - when: - os: linux store: steam - /CWSteamMac.app: + "/CWSteamMac.app": - when: - os: mac store: steam - /CWSteamPC.exe: + "/CWSteamPC.exe": - when: - os: windows store: steam @@ -92854,33 +93138,33 @@ Chainsaw Warrior: - config steam: id: 251710 -'Chainsaw Warrior: Lords of the Night': +"Chainsaw Warrior: Lords of the Night": installDir: Chainsaw Warrior 2 Lords of the Night: {} launch: - /ChainsawWarrior2.app: + "/ChainsawWarrior2.app": - when: - os: mac store: steam - /ChainsawWarrior2.exe: + "/ChainsawWarrior2.exe": - when: - os: windows store: steam - /ChainsawWarrior2.x86: + "/ChainsawWarrior2.x86": - when: - os: linux store: steam steam: id: 307600 -'Chainz 2: Relinked': +"Chainz 2: Relinked": installDir: Chainz 2: {} launch: - /Chainz 2.app: + "/Chainz 2.app": - when: - os: mac store: steam - /Chainz 2.exe: + "/Chainz 2.exe": - when: - os: windows store: steam @@ -92903,59 +93187,59 @@ Challenge of the Five Realms: installDir: Challenge of the Five Realms: {} launch: - /COTFR.app: + "/COTFR.app": - when: - os: mac store: steam - /dosbox_linux/daum/launch_cotfr_game_daum.sh: + "/dosbox_linux/daum/launch_cotfr_game_daum.sh": - when: - os: linux store: steam - workingDir: /dosbox_linux/daum - /dosbox_linux/launch_cotfr_config.sh: + workingDir: "/dosbox_linux/daum" + "/dosbox_linux/launch_cotfr_config.sh": - when: - os: linux store: steam - workingDir: /dosbox_linux - /dosbox_linux/launch_cotfr_face.sh: + workingDir: "/dosbox_linux" + "/dosbox_linux/launch_cotfr_face.sh": - when: - os: linux store: steam - workingDir: /dosbox_linux - /dosbox_linux/launch_cotfr_game.sh: + workingDir: "/dosbox_linux" + "/dosbox_linux/launch_cotfr_game.sh": - when: - os: linux store: steam - workingDir: /dosbox_linux - /dosbox_windows/daum/dosbox.exe: - - arguments: '-conf dosbox_cotfr.conf -conf dosbox_cotfr_launch_windows.conf -noconsole' + workingDir: "/dosbox_linux" + "/dosbox_windows/daum/dosbox.exe": + - arguments: "-conf dosbox_cotfr.conf -conf dosbox_cotfr_launch_windows.conf -noconsole" when: - os: windows store: steam - workingDir: /dosbox_windows/daum - /dosbox_windows/dosbox.exe: - - arguments: '-conf dosbox_cotfr.conf -conf dosbox_cotfr_launch_windows.conf -noconsole' + workingDir: "/dosbox_windows/daum" + "/dosbox_windows/dosbox.exe": + - arguments: "-conf dosbox_cotfr.conf -conf dosbox_cotfr_launch_windows.conf -noconsole" when: - os: windows store: steam - workingDir: /dosbox_windows - - arguments: '-conf dosbox_cotfr.conf -conf dosbox_cotfr_face_windows.conf -noconsole' + workingDir: "/dosbox_windows" + - arguments: "-conf dosbox_cotfr.conf -conf dosbox_cotfr_face_windows.conf -noconsole" when: - os: windows store: steam - workingDir: /dosbox_windows - - arguments: '-conf dosbox_cotfr.conf -conf dosbox_cotfr_config_windows.conf -noconsole' + workingDir: "/dosbox_windows" + - arguments: "-conf dosbox_cotfr.conf -conf dosbox_cotfr_config_windows.conf -noconsole" when: - os: windows store: steam - workingDir: /dosbox_windows + workingDir: "/dosbox_windows" steam: id: 347240 Challenging Dogfights: installDir: Challenging Dogfights: {} launch: - /challengingDogfights.exe: + "/challengingDogfights.exe": - when: - bit: 64 os: windows @@ -92966,11 +93250,11 @@ Chalo Chalo: installDir: Chalo Chalo: {} launch: - /Chalo_Chalo.app: + "/Chalo_Chalo.app": - when: - os: mac store: steam - /Chalo_Chalo.exe: + "/Chalo_Chalo.exe": - when: - os: windows store: steam @@ -92980,11 +93264,11 @@ Chambara: installDir: Chambara: {} launch: - /Chambara.app/Contents/MacOS/Chambara: + "/Chambara.app/Contents/MacOS/Chambara": - when: - os: mac store: steam - /PC_UnityPro/Chambara.exe: + "/PC_UnityPro/Chambara.exe": - when: - os: windows store: steam @@ -92999,7 +93283,7 @@ Chamber of Darkness: installDir: Chamber of Darkness: {} launch: - /chamber of darkness.exe: + "/chamber of darkness.exe": - when: - store: steam steam: @@ -93011,17 +93295,17 @@ Chambered: id: 658230 Chameleon: files: - /Profiles//Savegame: + "/Profiles//Savegame": tags: - save when: - os: windows - /Profiles//controls.cfg: + "/Profiles//controls.cfg": tags: - config when: - os: windows - /Profiles//usets.cfg: + "/Profiles//usets.cfg": tags: - config when: @@ -93030,7 +93314,7 @@ Chameleon (2020): installDir: CHAMELEON: {} launch: - /chameleon.exe: + "/chameleon.exe": - when: - os: windows store: steam @@ -93040,7 +93324,7 @@ Chameleon Man: installDir: ChameleonMan: {} launch: - /ChameleonMan.exe: + "/ChameleonMan.exe": - when: - os: windows store: steam @@ -93050,7 +93334,7 @@ Chameleon Run Deluxe Edition: installDir: Chameleon Run Deluxe: {} launch: - /chameleon.exe: + "/chameleon.exe": - when: - os: windows store: steam @@ -93060,22 +93344,22 @@ Champ Against Chumps Upgrade Edition: installDir: Champ Against Chumps Upgrade Edition: {} launch: - /ChampAgainstChumpsUPGRADEEDITION.exe: + "/ChampAgainstChumpsUPGRADEEDITION.exe": - when: - os: windows store: steam steam: id: 777580 -Champ's Nightmare: +"Champ's Nightmare": installDir: - Champ's Nightmare: {} + "Champ's Nightmare": {} launch: - /Champ's Nightmare.exe: + "/Champ's Nightmare.exe": - when: - bit: 64 os: windows store: steam - /Champs_Nightmare.app: + "/Champs_Nightmare.app": - when: - os: mac store: steam @@ -93085,15 +93369,15 @@ Champion of the Gods: installDir: ChampionOfTheGods: {} launch: - /Champion of the Gods.app/Contents/MacOS/Champion of the Gods: + "/Champion of the Gods.app/Contents/MacOS/Champion of the Gods": - when: - os: mac store: steam - /ChampionOfTheGods: + "/ChampionOfTheGods": - when: - os: linux store: steam - /ChampionOfTheGods.exe: + "/ChampionOfTheGods.exe": - when: - os: windows store: steam @@ -93103,7 +93387,7 @@ Champions: installDir: Champions: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -93112,9 +93396,9 @@ Champions: Champions Forces: steam: id: 1221470 -'Champions Online: Free For All': +"Champions Online: Free For All": files: - /localdata: + "/localdata": tags: - config when: @@ -93122,8 +93406,8 @@ Champions Forces: installDir: Champions Online: {} launch: - /Champions Online.exe: - - arguments: '-affiliate \"appid=9880\" -launchedfrom steam - ' + "/Champions Online.exe": + - arguments: "-affiliate \\\"appid=9880\\\" -launchedfrom steam - " when: - store: steam steam: @@ -93132,7 +93416,7 @@ Champions of Aerial: installDir: Champions of Aerial: {} launch: - /Champions Of Aerial.exe: + "/Champions Of Aerial.exe": - when: - os: windows store: steam @@ -93142,8 +93426,8 @@ Champions of Anteria: installDir: Champions of Anteria: {} launch: - /CoA.exe: - - arguments: '-uplay_steam_mode --steam' + "/CoA.exe": + - arguments: "-uplay_steam_mode --steam" when: - os: windows store: steam @@ -93153,21 +93437,21 @@ Champions of Breakfast: installDir: Champions of Breakfast: {} launch: - /Breakfast.exe: + "/Breakfast.exe": - when: - os: windows store: steam - /run.sh: + "/run.sh": - when: - os: linux store: steam steam: id: 454380 -'Champions of Chaos II: Ambassadors of the Arena': +"Champions of Chaos II: Ambassadors of the Arena": installDir: Champions Of Chaos 2: {} launch: - /Champions of Chaos 2.exe: + "/Champions of Chaos 2.exe": - when: - os: windows store: steam @@ -93175,12 +93459,12 @@ Champions of Breakfast: id: 366100 Champions of Krynn: files: - /KRYNN.CFG: + "/KRYNN.CFG": tags: - config when: - os: dos - /SAVE: + "/SAVE": tags: - save when: @@ -93196,7 +93480,7 @@ Champions of Odin: installDir: Champions of Odin: {} launch: - /ChampionsofOdin.exe: + "/ChampionsofOdin.exe": - when: - bit: 64 os: windows @@ -93207,19 +93491,19 @@ Champions of Regnum: installDir: regnum: {} launch: - /ROLauncherSteam.app: - - arguments: '-steam' + "/ROLauncherSteam.app": + - arguments: "-steam" when: - os: mac store: steam - workingDir: /bin - /rolauncher_steam: - - arguments: '-steam' + workingDir: "/bin" + "/rolauncher_steam": + - arguments: "-steam" when: - os: linux store: steam - /rolaunchersteam.exe: - - arguments: '-steam' + "/rolaunchersteam.exe": + - arguments: "-steam" when: - os: windows store: steam @@ -93229,7 +93513,7 @@ Champions of Titan: installDir: Champions of Titan: {} launch: - /cot.exe: + "/cot.exe": - arguments: Connect=IDCGamesSteam when: - os: windows @@ -93240,14 +93524,14 @@ Championship Manager 2007: installDir: Championship Manager 2007: {} launch: - /CM2007.exe: + "/CM2007.exe": - when: - store: steam steam: id: 8040 Championship Manager 2008: files: - /Eidos/Championship Manager 2008/Config: + "/Eidos/Championship Manager 2008/Config": tags: - config when: @@ -93255,7 +93539,7 @@ Championship Manager 2008: installDir: Championship Manager 2008: {} launch: - /CM2008.exe: + "/CM2008.exe": - when: - store: steam steam: @@ -93264,20 +93548,20 @@ Championship Manager 2010: installDir: Championship Manager 2010: {} launch: - /Launcher/CMLauncher.exe: + "/Launcher/CMLauncher.exe": - when: - store: steam - workingDir: /Launcher + workingDir: "/Launcher" steam: id: 35030 Championship Manager 5: files: - /Config.txt: + "/Config.txt": tags: - config when: - os: windows - /Saves: + "/Saves": tags: - save when: @@ -93286,7 +93570,7 @@ Change: installDir: Change: {} launch: - /Change.exe: + "/Change.exe": - when: - bit: 64 os: windows @@ -93298,31 +93582,31 @@ Change Ranger: TimeHacker: {} steam: id: 1216350 -'Change: A Homeless Survival Experience': +"Change: A Homeless Survival Experience": gog: id: 1897074196 installDir: CHANGE A Homeless Survival Experience: {} launch: - /CHANGE.exe: + "/CHANGE.exe": - when: - os: windows store: steam - /CHANGE.x86_64: + "/CHANGE.x86_64": - when: - os: linux store: steam - /Contents/MacOS/CHANGE: + "/Contents/MacOS/CHANGE": - when: - os: mac store: steam steam: id: 926140 -'Change: A Little Story': +"Change: A Little Story": installDir: Change A Little Story: {} launch: - /Change -A Little Story.exe: + "/Change -A Little Story.exe": - when: - bit: 64 os: windows @@ -93331,7 +93615,7 @@ Change Ranger: id: 979790 Changed: files: - /Save*.rvdata: + "/Save*.rvdata": tags: - save when: @@ -93339,7 +93623,7 @@ Changed: installDir: Changed: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -93349,29 +93633,29 @@ Changeling: installDir: Changeling: {} launch: - /Changeling.app: + "/Changeling.app": - when: - os: mac store: steam - /Changeling.exe: + "/Changeling.exe": - when: - os: windows store: steam steam: id: 1010240 -'Changeover: Decisions': +"Changeover: Decisions": installDir: Changeover: {} launch: - /Changeover.app: + "/Changeover.app": - when: - os: mac store: steam - /Changeover.exe: + "/Changeover.exe": - when: - os: windows store: steam - /Changeover.x86_64: + "/Changeover.x86_64": - when: - os: linux store: steam @@ -93380,14 +93664,14 @@ Changeling: Changes: steam: id: 1044120 -'Chantelise: A Tale of Two Sisters': +"Chantelise: A Tale of Two Sisters": files: - /chante.ini: + "/chante.ini": tags: - config when: - os: windows - /save.dat: + "/save.dat": tags: - save when: @@ -93397,17 +93681,17 @@ Changes: installDir: Chantelise: {} launch: - /chantelise.exe: + "/chantelise.exe": - when: - store: steam - /custom.exe: + "/custom.exe": - when: - store: steam steam: id: 70420 Chants of Sennaar: files: - /AppData/LocalLow/Rundisc/Chants Of Sennaar: + "/AppData/LocalLow/Rundisc/Chants Of Sennaar": tags: - save when: @@ -93420,7 +93704,7 @@ Chants of Sennaar: installDir: Chants of Sennaar: {} launch: - /Chants Of Sennaar.exe: + "/Chants Of Sennaar.exe": - when: - store: steam steam: @@ -93429,7 +93713,7 @@ Chaordic: installDir: Chaordic: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -93439,7 +93723,7 @@ Chaos: installDir: Chaos: {} launch: - /Chaos.exe: + "/Chaos.exe": - when: - bit: 64 os: windows @@ -93450,7 +93734,7 @@ Chaos Battle: installDir: Chaos Battle: {} launch: - /Chaos Battle.exe: + "/Chaos Battle.exe": - when: - os: windows store: steam @@ -93460,16 +93744,16 @@ Chaos Caves: installDir: ChaosCaves: {} launch: - /ChaosCaves.exe: + "/ChaosCaves.exe": - when: - store: steam steam: id: 1004100 -'Chaos Code: New Sign of Catastrophe': +"Chaos Code: New Sign of Catastrophe": installDir: CHAOSCODE_NSOC: {} launch: - /ChaosCode.exe: + "/ChaosCode.exe": - when: - os: windows store: steam @@ -93479,7 +93763,7 @@ Chaos Control: installDir: Chaos Control: {} launch: - /dosbox.exe: + "/dosbox.exe": - when: - os: windows store: steam @@ -93489,16 +93773,16 @@ Chaos Domain: installDir: Chaos Domain: {} launch: - /Binaries/Win32/CDGame.exe: + "/Binaries/Win32/CDGame.exe": - when: - store: steam steam: id: 287100 -'Chaos Dream: Retribution': +"Chaos Dream: Retribution": installDir: Chaos Dream Retribution: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -93508,7 +93792,7 @@ Chaos Drift: installDir: Chaos Drift: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -93523,7 +93807,7 @@ Chaos Galaxy: installDir: Chaos Galaxy: {} launch: - /ChaosGalaxy.exe: + "/ChaosGalaxy.exe": - when: - os: windows store: steam @@ -93531,22 +93815,22 @@ Chaos Galaxy: id: 1184840 Chaos Legion: files: - /CL_UD##.DAT: + "/CL_UD##.DAT": tags: - save when: - os: windows - /CL_UDCONF2.DAT: + "/CL_UDCONF2.DAT": tags: - config when: - os: windows - /CL_UDSYS.DAT: + "/CL_UDSYS.DAT": tags: - config when: - os: windows - /config.txt: + "/config.txt": tags: - config when: @@ -93560,26 +93844,26 @@ Chaos Reborn: installDir: ChaosReborn: {} launch: - /ChaosRebornLinux.x86: + "/ChaosRebornLinux.x86": - when: - bit: 32 os: linux store: steam - /ChaosRebornLinux.x86_64: + "/ChaosRebornLinux.x86_64": - when: - bit: 64 os: linux store: steam - /ChaosRebornMac.app/Contents/MacOS/ChaosRebornMac: + "/ChaosRebornMac.app/Contents/MacOS/ChaosRebornMac": - when: - os: mac store: steam - /ChaosRebornWin32.exe: + "/ChaosRebornWin32.exe": - when: - bit: 32 os: windows store: steam - /ChaosRebornWin64.exe: + "/ChaosRebornWin64.exe": - when: - bit: 64 os: windows @@ -93594,7 +93878,7 @@ Chaos Ride: installDir: Chaos Ride: {} launch: - /PC/ChaosRide.exe: + "/PC/ChaosRide.exe": - when: - os: windows store: steam @@ -93604,7 +93888,7 @@ Chaos Sector: installDir: Chaos Sector: {} launch: - /Chaos Sector.exe: + "/Chaos Sector.exe": - when: - os: windows store: steam @@ -93614,7 +93898,7 @@ Chaos Souls: installDir: Chaos Souls: {} launch: - /Chaos Souls.exe: + "/Chaos Souls.exe": - when: - os: windows store: steam @@ -93624,7 +93908,7 @@ Chaos Starter: installDir: Chaos Starter: {} launch: - /ChaosStarter.exe: + "/ChaosStarter.exe": - when: - os: windows store: steam @@ -93634,7 +93918,7 @@ Chaos Theory: installDir: ChaosTheory: {} launch: - /ChaosTheory.exe: + "/ChaosTheory.exe": - when: - store: steam steam: @@ -93643,7 +93927,7 @@ Chaos Theory (2019): installDir: Chaos Theory: {} launch: - /Chaos Theory.exe: + "/Chaos Theory.exe": - when: - bit: 64 os: windows @@ -93654,7 +93938,7 @@ Chaos Town: installDir: Chaos Town: {} launch: - /ChaosTown.exe: + "/ChaosTown.exe": - when: - bit: 64 os: windows @@ -93665,7 +93949,7 @@ Chaos Village: installDir: Chaos Village: {} launch: - /ChaosVillage.exe: + "/ChaosVillage.exe": - when: - bit: 64 os: windows @@ -93676,7 +93960,7 @@ Chaos and the White Robot: installDir: Chaos and the White Robot: {} launch: - /Chaos and the White Robot.exe: + "/Chaos and the White Robot.exe": - when: - os: windows store: steam @@ -93686,7 +93970,7 @@ Chaos of East: installDir: ChaosOfEast: {} launch: - /ChaosOfEast.exe: + "/ChaosOfEast.exe": - when: - os: windows store: steam @@ -93696,7 +93980,7 @@ Chaos of Hearts: installDir: Chaos Of Hearts: {} launch: - /coh.exe: + "/coh.exe": - when: - os: windows store: steam @@ -93704,19 +93988,19 @@ Chaos of Hearts: id: 516530 Chaos on Deponia: files: - /Library/Application Support/Daedalic Entertainment/Deponia 2: + "/Library/Application Support/Daedalic Entertainment/Deponia 2": tags: - config - save when: - os: mac - /Daedalic Entertainment/Deponia 2: + "/Daedalic Entertainment/Deponia 2": tags: - config - save when: - os: windows - /Daedalic Entertainment/Deponia 2: + "/Daedalic Entertainment/Deponia 2": tags: - config - save @@ -93727,20 +94011,20 @@ Chaos on Deponia: installDir: Chaos on Deponia: {} launch: - /Deponia2.app: + "/Deponia2.app": - when: - bit: 64 os: mac store: steam - /Deponia2.exe: + "/Deponia2.exe": - when: - os: windows store: steam - /VisionaireConfigurationTool.exe: + "/VisionaireConfigurationTool.exe": - when: - os: windows store: steam - /start: + "/start": - when: - bit: 64 os: linux @@ -93749,24 +94033,25 @@ Chaos on Deponia: id: 220740 Chaos;Child: files: - /My Games/mages_dmm/CHAOS CHILD: + "/My Games/mages_dmm/CHAOS CHILD": tags: - config - save when: - os: windows - /My Games/mages_steam/CHAOS CHILD/eng: + "/My Games/mages_steam/CHAOS CHILD/eng": tags: - config - save when: - - store: steam + - os: windows + store: steam gog: id: 2018454546 installDir: CHAOS;CHILD: {} launch: - /boot.bat: + "/boot.bat": - when: - os: windows store: steam @@ -93774,7 +94059,7 @@ Chaos;Child: id: 970570 Chaos;Head: files: - /Nitroplus/CHAOS;HEAD: + "/Nitroplus/CHAOS;HEAD": tags: - config - save @@ -93782,28 +94067,32 @@ Chaos;Head: - os: windows Chaos;Head NoAH: files: - /My Games/Mages Inc/CHAOS;HEAD NOAH/CONFIG.DAT: + "/My Games/Mages Inc/CHAOS;HEAD NOAH/CONFIG.DAT": tags: - config when: - - store: gog - /My Games/Mages Inc/CHAOS;HEAD NOAH/PADCONFIG.DAT: + - os: windows + store: gog + "/My Games/Mages Inc/CHAOS;HEAD NOAH/PADCONFIG.DAT": tags: - config when: - - store: gog - /My Games/Mages Inc/CHAOS;HEAD NOAH/SAVEDATA.DAT: + - os: windows + store: gog + "/My Games/Mages Inc/CHAOS;HEAD NOAH/SAVEDATA.DAT": tags: - save when: - - store: gog - /My Games/mages_steam/CHAOS;HEAD NOAH/*.dat: + - os: windows + store: gog + "/My Games/mages_steam/CHAOS;HEAD NOAH/*.dat": tags: - config - save when: - os: windows - - store: steam + - os: windows + store: steam gog: id: 1902238860 id: @@ -93814,7 +94103,7 @@ Chaos;Head NoAH: installDir: CHAOS;HEAD NOAH: {} launch: - /Game_Steam.exe: + "/Game_Steam.exe": - when: - bit: 64 os: windows @@ -93825,7 +94114,7 @@ ChaosTower: installDir: ChaosTower: {} launch: - /ChaosTowerStarter.exe: + "/ChaosTowerStarter.exe": - when: - os: windows store: steam @@ -93835,22 +94124,22 @@ Chaotic Void: installDir: Chaotic Void: {} launch: - /ChaoticVoid.exe: + "/ChaoticVoid.exe": - when: - bit: 64 os: windows store: steam steam: id: 762980 -'Chapayev: Legend of Checkers': +"Chapayev: Legend of Checkers": installDir: Knockout Checkers Chamber: {} launch: - /Knockout Checkers Chamber.app/Contents/MacOS/Knockout Checkers Chamber: + "/Knockout Checkers Chamber.app/Contents/MacOS/Knockout Checkers Chamber": - when: - os: mac store: steam - /Knockout Checkers Chamber.exe: + "/Knockout Checkers Chamber.exe": - when: - os: windows store: steam @@ -93860,11 +94149,11 @@ Chapeau: installDir: Chapeau: {} launch: - /Chapeau.app: + "/Chapeau.app": - when: - os: mac store: steam - /Chapeau.exe: + "/Chapeau.exe": - when: - os: windows store: steam @@ -93874,12 +94163,12 @@ Charge: installDir: Charge: {} launch: - /launch.sh: + "/launch.sh": - when: - bit: 64 os: linux store: steam - /launch.vbs: + "/launch.vbs": - when: - bit: 64 os: windows @@ -93888,12 +94177,12 @@ Charge: id: 1095980 Charge Kid: files: - /Charge Kid: + "/Charge Kid": tags: - config when: - os: windows - /Charge Kid/save_progress.save: + "/Charge Kid/save_progress.save": tags: - save when: @@ -93901,16 +94190,16 @@ Charge Kid: installDir: Charge Kid: {} launch: - /Charge Kid.app: + "/Charge Kid.app": - when: - os: mac store: steam - /charge_kid.exe: + "/charge_kid.exe": - when: - bit: 64 os: windows store: steam - /charge_kid.x86_64: + "/charge_kid.x86_64": - when: - bit: 64 os: linux @@ -93921,7 +94210,7 @@ ChargeShot: installDir: ChargeShot: {} launch: - /windows_content/ChargeShot.exe: + "/windows_content/ChargeShot.exe": - when: - os: windows store: steam @@ -93929,7 +94218,7 @@ ChargeShot: id: 401840 Chariot: files: - /userdata//319450/remote: + "/userdata//319450/remote": tags: - save when: @@ -93938,7 +94227,7 @@ Chariot: installDir: Chariot: {} launch: - /Chariot.exe: + "/Chariot.exe": - when: - os: windows store: steam @@ -93952,7 +94241,7 @@ Chariot Wars: installDir: CHARIOT WARS: {} launch: - /ChariotWars.exe: + "/ChariotWars.exe": - when: - os: windows store: steam @@ -93960,12 +94249,12 @@ Chariot Wars: id: 365460 Charlie II: files: - /HISCORES.SAV: + "/HISCORES.SAV": tags: - save when: - os: windows - /PROGRESS.SAV: + "/PROGRESS.SAV": tags: - save when: @@ -93973,7 +94262,7 @@ Charlie II: installDir: Charlie II: {} launch: - /Charlie2.exe: + "/Charlie2.exe": - when: - os: windows store: steam @@ -93981,24 +94270,24 @@ Charlie II: id: 777760 Charlie Murder: files: - /Library/Application Support/CharlieMurder: + "/Library/Application Support/CharlieMurder": tags: - config - save when: - os: mac - /CharlieMurder: + "/CharlieMurder": tags: - config - save when: - os: windows - /CharlieMurder: + "/CharlieMurder": tags: - config when: - os: linux - /CharlieMurder: + "/CharlieMurder": tags: - save when: @@ -94006,16 +94295,16 @@ Charlie Murder: installDir: Charlie Murder: {} launch: - /Charlie Murder.app/Contents/MacOS/CharlieMurder: + "/Charlie Murder.app/Contents/MacOS/CharlieMurder": - when: - os: mac store: steam - /CharlieMurder: + "/CharlieMurder": - when: - os: linux store: steam - /CharlieMurder.exe: - - arguments: '-dsound' + "/CharlieMurder.exe": + - arguments: "-dsound" when: - os: windows store: steam @@ -94025,7 +94314,7 @@ Charlie and Friends: installDir: Charlie and Friends: {} launch: - /Charlie_and_Friends.exe: + "/Charlie_and_Friends.exe": - when: - os: windows store: steam @@ -94033,7 +94322,7 @@ Charlie and Friends: id: 2020570 Charlie the Duck: files: - /Wiering Software/Charlie_the_Duck/Charlie_the_Duck.sol: + "/Wiering Software/Charlie_the_Duck/Charlie_the_Duck.sol": tags: - save when: @@ -94041,32 +94330,32 @@ Charlie the Duck: installDir: Charlie the Duck: {} launch: - /Charlie_the_Duck.exe: + "/Charlie_the_Duck.exe": - when: - os: windows store: steam steam: id: 691250 -Charlie's Adventure: +"Charlie's Adventure": installDir: - Charlie's Adventure: {} + "Charlie's Adventure": {} launch: - /Charlie's Adventure.app: + "/Charlie's Adventure.app": - when: - bit: 64 os: mac store: steam - /Charlie's Adventure.exe: + "/Charlie's Adventure.exe": - when: - os: windows store: steam steam: id: 556870 -Charlie's Conscious: +"Charlie's Conscious": installDir: - Charlie's Conscious: {} + "Charlie's Conscious": {} launch: - /Charlie's Conscious.exe: + "/Charlie's Conscious.exe": - when: - os: windows store: steam @@ -94076,7 +94365,7 @@ Charlotte: installDir: Charlotte: {} launch: - /YWP_working.exe: + "/YWP_working.exe": - when: - os: windows store: steam @@ -94086,16 +94375,16 @@ Charm Tale: installDir: Charm Tale: {} launch: - /CharmTale.exe: + "/CharmTale.exe": - when: - store: steam steam: id: 872180 -'Charm Tale 2: Mermaid Lagoon': +"Charm Tale 2: Mermaid Lagoon": installDir: Charm Tale 2 Mermaid Lagoon: {} launch: - /CharmTale2.exe: + "/CharmTale2.exe": - when: - store: steam steam: @@ -94104,40 +94393,40 @@ Charm Tale Quest: installDir: Charm Tale Quest: {} launch: - /CharmTaleQuest.exe: + "/CharmTaleQuest.exe": - when: - store: steam steam: id: 550220 -Charon's Return: +"Charon's Return": steam: id: 1098180 Charpi: installDir: Charpi: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam steam: id: 694670 -'Charterstone: Digital Edition': +"Charterstone: Digital Edition": gog: id: 1877382924 installDir: Charterstone Digital Edition: {} launch: - /Charterstone.app/Contents/MacOS/Charterstone: + "/Charterstone.app/Contents/MacOS/Charterstone": - when: - os: mac store: steam - /Charterstone.x86_64: + "/Charterstone.x86_64": - when: - bit: 64 os: linux store: steam - /Charterstone/Charterstone.exe: + "/Charterstone/Charterstone.exe": - when: - os: windows store: steam @@ -94147,7 +94436,7 @@ Chase: installDir: Chase: {} launch: - /Chase.exe: + "/Chase.exe": - when: - os: windows store: steam @@ -94155,12 +94444,12 @@ Chase: id: 867390 Chaser: files: - /Save: + "/Save": tags: - save when: - os: windows - /Save/Users/default.cfg: + "/Save/Users/default.cfg": tags: - config when: @@ -94170,7 +94459,7 @@ Chaser: installDir: Chaser: {} launch: - /Chaser.exe: + "/Chaser.exe": - when: - store: steam steam: @@ -94179,20 +94468,20 @@ Chasing Dead: installDir: Chasing Dead: {} launch: - /ChasingDead.app: + "/ChasingDead.app": - when: - os: mac store: steam - /ChasingDead.exe: + "/ChasingDead.exe": - when: - os: windows store: steam - /ChasingDead.x86: + "/ChasingDead.x86": - when: - bit: 32 os: linux store: steam - /ChasingDead.x86_64: + "/ChasingDead.x86_64": - when: - bit: 64 os: linux @@ -94208,11 +94497,11 @@ Chasing Light: installDir: Chasing Light: {} launch: - /ChasingLight.app: + "/ChasingLight.app": - when: - os: mac store: steam - /ChasingLight.exe: + "/ChasingLight.exe": - when: - os: windows store: steam @@ -94227,7 +94516,7 @@ Chasing Nebula: installDir: Chasing Nebula: {} launch: - /ChasingNebula.exe: + "/ChasingNebula.exe": - when: - os: windows store: steam @@ -94235,7 +94524,7 @@ Chasing Nebula: id: 1118800 Chasing Static: files: - /AppData/LocalLow/Headware Games/Chasing Static: + "/AppData/LocalLow/Headware Games/Chasing Static": tags: - save when: @@ -94243,7 +94532,7 @@ Chasing Static: installDir: Chasing Static: {} launch: - /Chasing Static.exe: + "/Chasing Static.exe": - when: - store: steam steam: @@ -94252,21 +94541,21 @@ Chasing Styx: installDir: Chasing Styx: {} launch: - /Chasing Styx.bin.osx: + "/Chasing Styx.bin.osx": - when: - os: mac store: steam - /Chasing Styx.bin.x86: + "/Chasing Styx.bin.x86": - when: - bit: 32 os: linux store: steam - /Chasing Styx.bin.x86_64: + "/Chasing Styx.bin.x86_64": - when: - bit: 64 os: linux store: steam - /Chasing Styx.exe: + "/Chasing Styx.exe": - when: - os: windows store: steam @@ -94276,7 +94565,7 @@ Chasing Tail: installDir: Chasing Tail: {} launch: - /Chasing Tail Steam 3_8/Chasing Tail.exe: + "/Chasing Tail Steam 3_8/Chasing Tail.exe": - when: - os: windows store: steam @@ -94286,15 +94575,15 @@ Chasing the Stars: installDir: Chasing the Stars: {} launch: - /Chasing the Stars.app/Contents/MacOS/Chasing the Stars: + "/Chasing the Stars.app/Contents/MacOS/Chasing the Stars": - when: - os: mac store: steam - /Chasing the Stars.sh: + "/Chasing the Stars.sh": - when: - os: linux store: steam - /Chasing_the_Stars_3.1-pc/Chasing the Stars.exe: + "/Chasing_the_Stars_3.1-pc/Chasing the Stars.exe": - when: - os: windows store: steam @@ -94302,23 +94591,23 @@ Chasing the Stars: id: 763990 Chasm: files: - /Library/Application Support/Chasm: + "/Library/Application Support/Chasm": tags: - config - save when: - os: mac - /Chasm: + "/Chasm": tags: - save when: - os: windows - /Chasm/config.ini: + "/Chasm/config.ini": tags: - config when: - os: windows - /Chasm: + "/Chasm": tags: - config - save @@ -94329,49 +94618,49 @@ Chasm: installDir: Chasm: {} launch: - /Chasm: + "/Chasm": - when: - os: linux store: steam - /Chasm.app: + "/Chasm.app": - when: - os: mac store: steam - /Chasm.exe: + "/Chasm.exe": - when: - os: windows store: steam steam: id: 312200 -'Chasm: The Rift': +"Chasm: The Rift": gog: id: 1302753134 installDir: Chasm The Rift: {} launch: - /Chasm The Rift Original/DOSBOX/ConfigTool.exe: - - arguments: '-conf chasm-graphics.conf' + "/Chasm The Rift Original/DOSBOX/ConfigTool.exe": + - arguments: "-conf chasm-graphics.conf" when: - store: steam - workingDir: /Chasm The Rift Original - /Chasm The Rift Original/DOSBOX/dosbox.exe: - - arguments: '-noconsole -conf chasm-base.conf -conf chasm-graphics.conf -conf chasm-edit.conf' + workingDir: "/Chasm The Rift Original" + "/Chasm The Rift Original/DOSBOX/dosbox.exe": + - arguments: "-noconsole -conf chasm-base.conf -conf chasm-graphics.conf -conf chasm-edit.conf" when: - store: steam - workingDir: /Chasm The Rift Original - /Chasm.exe: + workingDir: "/Chasm The Rift Original" + "/Chasm.exe": - when: - store: steam steam: id: 2061230 -'Chasm: The Rift (2022)': +"Chasm: The Rift (2022)": files: - /Chasm/chasm_config.txt: + "/Chasm/chasm_config.txt": tags: - config when: - os: windows - /Chasm/saves: + "/Chasm/saves": tags: - save when: @@ -94386,17 +94675,17 @@ Chasm: installDir: Chasm The Rift: {} launch: - /Chasm The Rift Original/DOSBOX/ConfigTool.exe: - - arguments: '-conf chasm-graphics.conf' + "/Chasm The Rift Original/DOSBOX/ConfigTool.exe": + - arguments: "-conf chasm-graphics.conf" when: - store: steam - workingDir: /Chasm The Rift Original - /Chasm The Rift Original/DOSBOX/dosbox.exe: - - arguments: '-noconsole -conf chasm-base.conf -conf chasm-graphics.conf -conf chasm-edit.conf' + workingDir: "/Chasm The Rift Original" + "/Chasm The Rift Original/DOSBOX/dosbox.exe": + - arguments: "-noconsole -conf chasm-base.conf -conf chasm-graphics.conf -conf chasm-edit.conf" when: - store: steam - workingDir: /Chasm The Rift Original - /Chasm.exe: + workingDir: "/Chasm The Rift Original" + "/Chasm.exe": - when: - store: steam steam: @@ -94405,15 +94694,15 @@ ChatAid: installDir: ChatAid: {} launch: - /ChatAid/ChatAid.app: + "/ChatAid/ChatAid.app": - when: - os: mac store: steam - /ChatAid/ChatAid.exe: + "/ChatAid/ChatAid.exe": - when: - os: windows store: steam - /ChatAid/ChatAid.sh: + "/ChatAid/ChatAid.sh": - when: - os: linux store: steam @@ -94423,7 +94712,7 @@ Chateau Garden: installDir: Chateau Garden: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: @@ -94432,15 +94721,15 @@ Cheap Golf: installDir: Cheap Golf: {} launch: - /CheapGolf: + "/CheapGolf": - when: - os: linux store: steam - /CheapGolf.app: + "/CheapGolf.app": - when: - os: mac store: steam - /CheapGolf.exe: + "/CheapGolf.exe": - when: - os: windows store: steam @@ -94450,11 +94739,11 @@ Cheaters Blackjack 21: installDir: Cheaters Blackjack 21: {} launch: - /cblacksteam00.exe: + "/cblacksteam00.exe": - when: - os: windows store: steam - /runner: + "/runner": - when: - os: linux store: steam @@ -94464,26 +94753,26 @@ Cheats 4 Hire: installDir: Cheats 4 Hire: {} launch: - /c4h.app: + "/c4h.app": - when: - os: mac store: steam - /c4h.exe: + "/c4h.exe": - when: - bit: 32 os: windows store: steam - /c4h.x86: + "/c4h.x86": - when: - bit: 32 os: linux store: steam - /c4h.x86_64: + "/c4h.x86_64": - when: - bit: 64 os: linux store: steam - /c4h64.exe: + "/c4h64.exe": - when: - bit: 64 os: windows @@ -94494,7 +94783,7 @@ Check Your 6!: installDir: Check Your 6!: {} launch: - /autorun.exe: + "/autorun.exe": - when: - os: windows store: steam @@ -94504,7 +94793,7 @@ Checkmate!: installDir: Checkmate: {} launch: - /CheckMate.exe: + "/CheckMate.exe": - when: - os: windows store: steam @@ -94514,14 +94803,14 @@ Cheeky Beetle And The Unlikely Heroes: installDir: Cheeky Beetle And The Unlikely Heroes: {} launch: - /Cheeky Beetle and the Unlikely Heroes.exe: + "/Cheeky Beetle and the Unlikely Heroes.exe": - when: - store: steam steam: id: 1054180 Cheeky Chooks: files: - /AppData/LocalLow/Trilum Studios/Cheeky Chooks: + "/AppData/LocalLow/Trilum Studios/Cheeky Chooks": tags: - save when: @@ -94529,11 +94818,11 @@ Cheeky Chooks: installDir: Cheeky Chooks: {} launch: - /CheekyChooks.app: + "/CheekyChooks.app": - when: - os: mac store: steam - /CheekyChooks.exe: + "/CheekyChooks.exe": - when: - os: windows store: steam @@ -94543,21 +94832,21 @@ Cheer and Track: installDir: Cheer and Track: {} launch: - /CT.exe: + "/CT.exe": - when: - bit: 64 os: windows store: steam steam: id: 1149900 -'Cheerleader: Reverse Side of Life': +"Cheerleader: Reverse Side of Life": steam: id: 834890 Cheese Game: installDir: Cheese Game: {} launch: - /CheeseGameBuild/Cheese Game.exe: + "/CheeseGameBuild/Cheese Game.exe": - when: - os: windows store: steam @@ -94567,11 +94856,11 @@ Cheese Maze: installDir: Cheese Maze: {} launch: - /CheeseMaze.app/Contents/MacOS/CheeseMaze: + "/CheeseMaze.app/Contents/MacOS/CheeseMaze": - when: - os: mac store: steam - /CheeseMaze.exe: + "/CheeseMaze.exe": - when: - os: windows store: steam @@ -94581,19 +94870,19 @@ Cheesecake Cool Conrad: installDir: Cheesecake Cool Conrad: {} launch: - /Cheesecake Cool Conrad.exe: + "/Cheesecake Cool Conrad.exe": - when: - store: steam steam: id: 327210 Chef: files: - /AppData/LocalLow/Inner Void Interactive/Chef_ A Restaurant Tycoon Game: + "/AppData/LocalLow/Inner Void Interactive/Chef_ A Restaurant Tycoon Game": tags: - save when: - os: windows - /AppData/LocalLow/Inner Void Interactive/Chef_ A Restaurant Tycoon Game/GameSettings.xml: + "/AppData/LocalLow/Inner Void Interactive/Chef_ A Restaurant Tycoon Game/GameSettings.xml": tags: - config when: @@ -94603,25 +94892,28 @@ Chef: installDir: Chef: {} launch: - /ChefMac.app: + "/ChefMac.app": - when: - os: mac store: steam - /chefgame.exe: + "/chefgame.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam steam: id: 886900 -'Chef Solitaire: USA': +"Chef Solitaire: USA": files: - /The Revills Games/Chef Solitaire USA SE/ChefSolitaire.ini: + "/The Revills Games/Chef Solitaire USA SE/ChefSolitaire.ini": tags: - config when: - os: windows - /The Revills Games/Chef Solitaire USA SE/profiles: + "/The Revills Games/Chef Solitaire USA SE/profiles": tags: - save when: @@ -94629,7 +94921,7 @@ Chef: installDir: Chef Solitaire USA: {} launch: - /ChefSolitaire.exe: + "/ChefSolitaire.exe": - when: - os: windows store: steam @@ -94639,7 +94931,7 @@ ChefSquad: installDir: ChefSquad: {} launch: - /ChefSquad.exe: + "/ChefSquad.exe": - when: - os: windows store: steam @@ -94654,21 +94946,21 @@ Cheitha: installDir: Cheitha: {} launch: - /cheitha.exe: + "/cheitha.exe": - when: - os: windows store: steam steam: id: 799910 -'ChemCaper: Act I - Petticles in Peril': +"ChemCaper: Act I - Petticles in Peril": installDir: ChemCaper: {} launch: - /ChemCaper.app/Contents/MacOS/ChemCaper: + "/ChemCaper.app/Contents/MacOS/ChemCaper": - when: - os: mac store: steam - /ChemCaper.exe: + "/ChemCaper.exe": - when: - os: windows store: steam @@ -94681,15 +94973,15 @@ Chemically Bonded: installDir: Chemically Bonded: {} launch: - /cb_content/Chemically Bonded.app/Contents/MacOS/Chemically Bonded: + "/cb_content/Chemically Bonded.app/Contents/MacOS/Chemically Bonded": - when: - os: mac store: steam - /cb_content/Chemically Bonded.exe: + "/cb_content/Chemically Bonded.exe": - when: - os: windows store: steam - /cb_content/Chemically Bonded.sh: + "/cb_content/Chemically Bonded.sh": - when: - os: linux store: steam @@ -94697,12 +94989,12 @@ Chemically Bonded: id: 734900 Chenso Club: files: - /AppData/LocalLow/Pixadome/Chenso Club/Data/SaveData.bin: + "/AppData/LocalLow/Pixadome/Chenso Club/Data/SaveData.bin": tags: - save when: - os: windows - /AppData/LocalLow/Pixadome/Chenso Club/Data/Settings.bin: + "/AppData/LocalLow/Pixadome/Chenso Club/Data/Settings.bin": tags: - save when: @@ -94710,7 +95002,7 @@ Chenso Club: installDir: Chenso Club: {} launch: - /Chenso Club.exe: + "/Chenso Club.exe": - when: - store: steam steam: @@ -94722,7 +95014,7 @@ Chernobyl Commando: installDir: Chernobyl Commando: {} launch: - /CC.exe: + "/CC.exe": - when: - store: steam steam: @@ -94734,24 +95026,24 @@ Chernobyl Liquidators Simulator: - config steam: id: 1113010 -'Chernobyl: Road of Death': +"Chernobyl: Road of Death": installDir: Chernobyl Road of Death: {} launch: - /Chernobyl Road of Death.exe: + "/Chernobyl Road of Death.exe": - when: - os: windows store: steam steam: id: 1151600 -'Chernobyl: Terrorist Attack': +"Chernobyl: Terrorist Attack": files: - /ar.cfg: + "/ar.cfg": tags: - config when: - os: windows - /save: + "/save": tags: - save when: @@ -94759,7 +95051,7 @@ Chernobyl Liquidators Simulator: installDir: Chernobyl Terrorist Attack: {} launch: - /Chernobyl.exe: + "/Chernobyl.exe": - when: - os: windows store: steam @@ -94767,12 +95059,12 @@ Chernobyl Liquidators Simulator: id: 546810 Chernobylite: files: - /ChernobylGame/Saved/Config/WindowsNoEditor: + "/ChernobylGame/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /ChernobylGame/Saved/SaveGames: + "/ChernobylGame/Saved/SaveGames": tags: - save when: @@ -94782,7 +95074,7 @@ Chernobylite: installDir: Chernobylite: {} launch: - /ChernobylGame.exe: + "/ChernobylGame.exe": - when: - store: steam steam: @@ -94791,7 +95083,7 @@ Chernomeat Survival Game: installDir: Chernomeat Survival Game: {} launch: - /Chernomeat Survival Game.exe: + "/Chernomeat Survival Game.exe": - when: - os: windows store: steam @@ -94801,11 +95093,11 @@ Cherry Creek: installDir: Cherry Creek: {} launch: - /CherryCreek.app: + "/CherryCreek.app": - when: - os: mac store: steam - /CherryCreek.exe: + "/CherryCreek.exe": - when: - os: windows store: steam @@ -94815,7 +95107,7 @@ Cherry Island: installDir: Cherry Island: {} launch: - /Cherry Island.exe: + "/Cherry Island.exe": - when: - store: steam steam: @@ -94824,11 +95116,11 @@ Cherry Kisses: installDir: Cherry Kisses: {} launch: - /Cherry Kisses.exe: + "/Cherry Kisses.exe": - when: - os: windows store: steam - /love: + "/love": - when: - os: linux store: steam @@ -94836,12 +95128,12 @@ Cherry Kisses: id: 1259530 Cherry Tree High Comedy Club: files: - /Save*.rxdata: + "/Save*.rxdata": tags: - save when: - os: windows - /conf.rxdata: + "/conf.rxdata": tags: - config when: @@ -94849,16 +95141,16 @@ Cherry Tree High Comedy Club: installDir: Cherry Tree High Comedy Club: {} launch: - /CTHCC.exe: + "/CTHCC.exe": - when: - store: steam steam: id: 214610 -Cherry Tree High Girls' Fight: +"Cherry Tree High Girls' Fight": installDir: - Cherry Tree High Girls' Fight: {} + "Cherry Tree High Girls' Fight": {} launch: - /Cherry Tree High Girls' Fight.exe: + "/Cherry Tree High Girls' Fight.exe": - when: - os: windows store: steam @@ -94866,12 +95158,12 @@ Cherry Tree High Girls' Fight: id: 459540 Cherry Tree High I! My! Girls!: files: - /Save1.rxdata: + "/Save1.rxdata": tags: - save when: - os: windows - /conf.rxdata: + "/conf.rxdata": tags: - config when: @@ -94879,7 +95171,7 @@ Cherry Tree High I! My! Girls!: installDir: Cherry Tree High I My Girls: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: @@ -94888,7 +95180,7 @@ Cherry in the Sky: installDir: Cherry in the Sky: {} launch: - /CitS.exe: + "/CitS.exe": - when: - os: windows store: steam @@ -94901,28 +95193,28 @@ Chess: installDir: Chess: {} launch: - /Chess.app/Contents/MacOS/Chess: + "/Chess.app/Contents/MacOS/Chess": - when: - bit: 64 os: mac store: steam - /Chess.exe: + "/Chess.exe": - when: - bit: 64 os: windows store: steam - /Chess.x86_64: + "/Chess.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 707140 -'Chess 2: The Sequel': +"Chess 2: The Sequel": installDir: Chess2: {} launch: - /Chess2Client.exe: + "/Chess2Client.exe": - when: - os: windows store: steam @@ -94932,7 +95224,7 @@ Chess Arena-象棋竞技场: installDir: Chess Arena: {} launch: - /chess.exe: + "/chess.exe": - when: - os: windows store: steam @@ -94942,16 +95234,16 @@ Chess Cubed: installDir: Chess Cubed: {} launch: - /Chess Cubed.exe: + "/Chess Cubed.exe": - when: - bit: 64 os: windows store: steam - /ChessCubed.app/Contents/MacOS/ChessCubed: + "/ChessCubed.app/Contents/MacOS/ChessCubed": - when: - os: mac store: steam - /ChessCubed.x86_64: + "/ChessCubed.x86_64": - when: - bit: 64 os: linux @@ -94962,7 +95254,7 @@ Chess Knight 2: installDir: Chess Knight 2: {} launch: - /ChessKnight2.exe: + "/ChessKnight2.exe": - when: - os: windows store: steam @@ -94972,11 +95264,11 @@ Chess Parallel Esports: installDir: Chess Multiple Boards: {} launch: - /Chess Multiple Boards.app: + "/Chess Multiple Boards.app": - when: - os: mac store: steam - /Chess Multiple Boards.exe: + "/Chess Multiple Boards.exe": - when: - os: windows store: steam @@ -94986,15 +95278,15 @@ Chess Puzzles: installDir: Chess Puzzles: {} launch: - /Chess Puzzles.app/Contents/MacOS/Chess Puzzles: + "/Chess Puzzles.app/Contents/MacOS/Chess Puzzles": - when: - os: mac store: steam - /Chess Puzzles.exe: + "/Chess Puzzles.exe": - when: - os: windows store: steam - /Chess Puzzles.x86: + "/Chess Puzzles.x86": - when: - os: linux store: steam @@ -95004,12 +95296,12 @@ Chess Sphere: installDir: Chess Sphere: {} launch: - /Chess Sphere.exe: + "/Chess Sphere.exe": - when: - bit: 64 os: windows store: steam - /ChessSphere.x86_64: + "/ChessSphere.x86_64": - when: - bit: 64 os: linux @@ -95021,12 +95313,12 @@ Chess Sudoku: id: 775830 Chess Titans: files: - /Saved Games/Microsoft Games/Chess Titans: + "/Saved Games/Microsoft Games/Chess Titans": tags: - save when: - os: windows - /Microsoft Games/Chess Titans: + "/Microsoft Games/Chess Titans": tags: - config when: @@ -95035,14 +95327,14 @@ Chess Ultra: installDir: Chess Ultra: {} launch: - /Chess2/Binaries/Win32/Chess2-Win32-Shipping.exe: - - arguments: '-nohmd' + "/Chess2/Binaries/Win32/Chess2-Win32-Shipping.exe": + - arguments: "-nohmd" when: - bit: 32 os: windows store: steam - /Chess2/Binaries/Win64/Chess2-Win64-Shipping.exe: - - arguments: '-nohmd' + "/Chess2/Binaries/Win64/Chess2-Win64-Shipping.exe": + - arguments: "-nohmd" when: - bit: 64 os: windows @@ -95053,15 +95345,15 @@ Chess of Blades: installDir: Chess of Blades: {} launch: - /ChessOfBlades.app/Contents/MacOS/ChessOfBlades: + "/ChessOfBlades.app/Contents/MacOS/ChessOfBlades": - when: - os: mac store: steam - /ChessOfBlades.sh: + "/ChessOfBlades.sh": - when: - os: linux store: steam - /lib/windows-i686/ChessOfBlades.exe: + "/lib/windows-i686/ChessOfBlades.exe": - when: - os: windows store: steam @@ -95071,7 +95363,7 @@ Chess3D: installDir: Chess3D: {} launch: - /Chess.exe: + "/Chess.exe": - when: - os: windows store: steam @@ -95081,7 +95373,7 @@ ChessBase 15 Steam Edition: installDir: ChessBase 15 Steam Edition: {} launch: - /CBase15/CBase15.exe: + "/CBase15/CBase15.exe": - when: - os: windows store: steam @@ -95092,21 +95384,21 @@ ChessVR: ChessVR: {} steam: id: 493380 -'Chessaria: The Tactical Adventure': +"Chessaria: The Tactical Adventure": installDir: Chessaria The Tactical Adventure: {} launch: - /Chessaria.app: - - arguments: '--nowrap' + "/Chessaria.app": + - arguments: "--nowrap" when: - os: mac store: steam - /Chessaria.exe: + "/Chessaria.exe": - when: - bit: 64 os: windows store: steam - /Chessaria.x86_64: + "/Chessaria.x86_64": - when: - os: linux store: steam @@ -95116,7 +95408,7 @@ Chessboard Kingdoms: installDir: Chessboard Kingdoms: {} launch: - /Chessboard Kingdoms.exe: + "/Chessboard Kingdoms.exe": - when: - os: windows store: steam @@ -95126,11 +95418,11 @@ Chessia: installDir: Chessia: {} launch: - /Chessia.exe: + "/Chessia.exe": - when: - os: windows store: steam - /Chessia.sh: + "/Chessia.sh": - when: - bit: 64 os: linux @@ -95139,7 +95431,7 @@ Chessia: id: 689270 Chessmaster 10th Edition: files: - /Data/Users/: + "/Data/Users/": tags: - config - save @@ -95147,12 +95439,12 @@ Chessmaster 10th Edition: - os: windows Chessmaster 5500: files: - /*.CMG: + "/*.CMG": tags: - save when: - os: windows - /*.ini: + "/*.ini": tags: - config when: @@ -95162,7 +95454,7 @@ Chessmaster 9000: id: 1207658756 Chessmaster Challenge: files: - /Chessmaster Challenge: + "/Chessmaster Challenge": tags: - config - save @@ -95171,14 +95463,14 @@ Chessmaster Challenge: installDir: Chessmaster: {} launch: - /chess.exe: + "/chess.exe": - when: - store: steam steam: id: 37200 -'Chessmaster: Grandmaster Edition': +"Chessmaster: Grandmaster Edition": files: - /Data/Users/: + "/Data/Users/": tags: - config - save @@ -95187,7 +95479,7 @@ Chessmaster Challenge: installDir: Chessmaster Grandmaster Edition: {} launch: - /gu.exe: + "/gu.exe": - when: - store: steam steam: @@ -95196,15 +95488,15 @@ Chesster: installDir: Chesster: {} launch: - /Chesster.app/Contents/MacOS/Chesster: + "/Chesster.app/Contents/MacOS/Chesster": - when: - os: mac store: steam - /Chesster.exe: + "/Chesster.exe": - when: - os: windows store: steam - /Chesster.x86: + "/Chesster.x86": - when: - os: linux store: steam @@ -95212,7 +95504,7 @@ Chesster: id: 352050 Chester One: files: - /Documents/SavedGames/Chester/Chester/AllPlayers: + "/Documents/SavedGames/Chester/Chester/AllPlayers": tags: - save when: @@ -95220,7 +95512,7 @@ Chester One: installDir: Chester One: {} launch: - /Chester.exe: + "/Chester.exe": - when: - os: windows store: steam @@ -95228,12 +95520,12 @@ Chester One: id: 348800 Chevalier Historie: files: - /Game.ini: + "/Game.ini": tags: - config when: - os: windows - /Save: + "/Save": tags: - save when: @@ -95243,17 +95535,17 @@ Chevalier Historie: installDir: Chevalier Historie: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: id: 1413960 -'Chevo Lurker: Exodus': +"Chevo Lurker: Exodus": installDir: Achievement Chevo Lurker Achievement Exodus: {} launch: - /Game.exe: - - arguments: '--in-process-gpu' + "/Game.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam @@ -95266,7 +95558,7 @@ Chewing: installDir: Chewing: {} launch: - /Chewing.exe: + "/Chewing.exe": - when: - os: windows store: steam @@ -95274,7 +95566,7 @@ Chewing: id: 998760 Chex Quest HD: files: - /ChexHD/Saved/SaveGames: + "/ChexHD/Saved/SaveGames": tags: - save when: @@ -95282,11 +95574,11 @@ Chex Quest HD: installDir: Chex Quest HD: {} launch: - /ChexHD.app/Contents/MacOS/ChexHD: + "/ChexHD.app/Contents/MacOS/ChexHD": - when: - os: mac store: steam - /ChexHD.exe: + "/ChexHD.exe": - when: - bit: 64 os: windows @@ -95297,7 +95589,7 @@ Chi Busters: installDir: Chi Busters: {} launch: - /Build.exe: + "/Build.exe": - when: - os: windows store: steam @@ -95312,38 +95604,38 @@ Chibi Volleyball: installDir: Chibi Volleyball: {} launch: - /Chibi Volleyball.app: + "/Chibi Volleyball.app": - when: - os: mac store: steam - /Chibi Volleyball.exe: + "/Chibi Volleyball.exe": - when: - os: windows store: steam - /Chibi Volleyball.x86: + "/Chibi Volleyball.x86": - when: - os: linux store: steam steam: id: 1100200 -Chibisu's Costume Combat: +"Chibisu's Costume Combat": installDir: - Chibisu's Costume Combat: {} + "Chibisu's Costume Combat": {} launch: - /ChibisusCostumeCombat.exe: + "/ChibisusCostumeCombat.exe": - when: - os: windows store: steam steam: id: 873090 -'Chicago 1930: The Prohibition': +"Chicago 1930: The Prohibition": files: - /Data/Configuration: + "/Data/Configuration": tags: - config when: - os: windows - /Data/Savegame: + "/Data/Savegame": tags: - save when: @@ -95353,15 +95645,15 @@ Chibisu's Costume Combat: installDir: Chicago 1930: {} launch: - /Chicago1930: + "/Chicago1930": - when: - os: linux store: steam - /Chicago1930.exe: + "/Chicago1930.exe": - when: - os: windows store: steam - /Contents/MacOS/Chicago 1930: + "/Contents/MacOS/Chicago 1930": - when: - os: mac store: steam @@ -95369,7 +95661,7 @@ Chibisu's Costume Combat: id: 623920 Chicken Assassin - Master of Humiliation: files: - /AppData/LocalLow/Oneshark/ChickenAssassin/CASaveData.xml: + "/AppData/LocalLow/Oneshark/ChickenAssassin/CASaveData.xml": tags: - save when: @@ -95379,20 +95671,20 @@ Chicken Assassin - Master of Humiliation: installDir: Chicken Assassin Reloaded: {} launch: - /ChickenAssassin.app: + "/ChickenAssassin.app": - when: - os: mac store: steam - /ChickenAssassin.exe: + "/ChickenAssassin.exe": - when: - os: windows store: steam - /ChickenAssassin.x86: + "/ChickenAssassin.x86": - when: - bit: 32 os: linux store: steam - /ChickenAssassin.x86_64: + "/ChickenAssassin.x86_64": - when: - bit: 64 os: linux @@ -95412,7 +95704,7 @@ Chicken Daddy: installDir: Chicken Daddy: {} launch: - /Chicken Daddy.exe: + "/Chicken Daddy.exe": - when: - os: windows store: steam @@ -95422,19 +95714,19 @@ Chicken Farm 2K17: installDir: Chicken Farm 2K17: {} launch: - /CFS_2K17_v2.exe: + "/CFS_2K17_v2.exe": - when: - store: steam steam: id: 746910 Chicken Invaders 2: files: - /ChickenInvaders2.cfg: + "/ChickenInvaders2.cfg": tags: - config when: - os: windows - /ChickenInvaders2.hst: + "/ChickenInvaders2.hst": tags: - save when: @@ -95442,11 +95734,13 @@ Chicken Invaders 2: installDir: Chicken Invaders 2: {} launch: - /CI2rm.exe: + "/CI2rm.exe": - when: - os: windows store: steam - /Chicken Invaders 2 Steam.app/Contents/MacOS/CI2rm.exe: + - os: linux + store: steam + "/Chicken Invaders 2 Steam.app/Contents/MacOS/CI2rm.exe": - when: - os: mac store: steam @@ -95454,7 +95748,7 @@ Chicken Invaders 2: id: 449550 Chicken Invaders 3: files: - /InterAction studios/CI3: + "/InterAction studios/CI3": tags: - config - save @@ -95463,11 +95757,13 @@ Chicken Invaders 3: installDir: Chicken Invaders 3: {} launch: - /CI3.exe: + "/CI3.exe": - when: - os: windows store: steam - /Chicken Invaders 3 Steam.app/Contents/MacOS/CI3.exe: + - os: linux + store: steam + "/Chicken Invaders 3 Steam.app/Contents/MacOS/CI3.exe": - when: - os: mac store: steam @@ -95475,12 +95771,12 @@ Chicken Invaders 3: id: 377460 Chicken Invaders 4: files: - /userdata//301300/remote/steamcloud/CI4/4.20steam: + "/userdata//301300/remote/steamcloud/CI4/4.20steam": tags: - save when: - store: steam - /InterAction studios/CI4: + "/InterAction studios/CI4": tags: - config - save @@ -95489,11 +95785,13 @@ Chicken Invaders 4: installDir: Chicken Invaders 4: {} launch: - /CI4.exe: + "/CI4.exe": - when: - os: windows store: steam - /Chicken Invaders 4 Steam.app/Contents/MacOS/CI4.exe: + - os: linux + store: steam + "/Chicken Invaders 4 Steam.app/Contents/MacOS/CI4.exe": - when: - os: mac store: steam @@ -95501,7 +95799,7 @@ Chicken Invaders 4: id: 301300 Chicken Invaders 5: files: - /InterAction studios/CI5: + "/InterAction studios/CI5": tags: - config - save @@ -95510,11 +95808,13 @@ Chicken Invaders 5: installDir: Chicken Invaders 5: {} launch: - /CI5.exe: + "/CI5.exe": - when: - os: windows store: steam - /Chicken Invaders 5 Steam.app/Contents/MacOS/CI5.exe: + - os: linux + store: steam + "/Chicken Invaders 5 Steam.app/Contents/MacOS/CI5.exe": - when: - os: mac store: steam @@ -95522,7 +95822,7 @@ Chicken Invaders 5: id: 353090 Chicken Invaders Universe: files: - /InterAction studios/CIU: + "/InterAction studios/CIU": tags: - config - save @@ -95531,7 +95831,7 @@ Chicken Invaders Universe: installDir: Chicken Invaders Universe: {} launch: - /CIU.exe: + "/CIU.exe": - when: - os: windows store: steam @@ -95541,7 +95841,7 @@ Chicken Labyrinth Puzzles: installDir: Chicken Labyrinth Puzzles: {} launch: - /sgb_rpgplayer.exe: + "/sgb_rpgplayer.exe": - when: - os: windows store: steam @@ -95549,7 +95849,7 @@ Chicken Labyrinth Puzzles: id: 635880 Chicken Police: files: - /My Games/Chicken Police/Savegames/Savegame.sav: + "/My Games/Chicken Police/Savegames/Savegame.sav": tags: - config - save @@ -95560,11 +95860,11 @@ Chicken Police: installDir: Chicken Police: {} launch: - /chicken_police.app: + "/chicken_police.app": - when: - os: mac store: steam - /chicken_police.exe: + "/chicken_police.exe": - when: - os: windows store: steam @@ -95578,11 +95878,11 @@ Chicken Rider: installDir: Chicken Rider: {} launch: - /ChickenRider.app/Contents/MacOS/ChickenRider: + "/ChickenRider.app/Contents/MacOS/ChickenRider": - when: - os: mac store: steam - /ChickenRider.exe: + "/ChickenRider.exe": - when: - os: windows store: steam @@ -95592,11 +95892,11 @@ Chicken Shoot Gold: installDir: Chicken Shoot: {} launch: - /Chicken Shoot Gold.app: + "/Chicken Shoot Gold.app": - when: - os: mac store: steam - /Kurka.exe: + "/Kurka.exe": - when: - os: windows store: steam @@ -95616,7 +95916,7 @@ Chicken in the Darkness: installDir: Chicken in the Darkness: {} launch: - /Chicken in the Darkness.exe: + "/Chicken in the Darkness.exe": - when: - os: windows store: steam @@ -95626,7 +95926,7 @@ Chicken with Chainguns: installDir: Chicken with Chainguns: {} launch: - /cwc2017.exe: + "/cwc2017.exe": - when: - os: windows store: steam @@ -95636,7 +95936,7 @@ Chicken ~Boiled Egg~: installDir: Chicken ~Boiled Egg~: {} launch: - /BoiledEgg.exe: + "/BoiledEgg.exe": - when: - store: steam steam: @@ -95645,7 +95945,7 @@ Chickens Madness: installDir: Chickens Madness: {} launch: - /ChickensMadness.exe: + "/ChickensMadness.exe": - when: - os: windows store: steam @@ -95660,7 +95960,7 @@ Chicku: installDir: Chicku: {} launch: - /Chicku.exe: + "/Chicku.exe": - when: - store: steam steam: @@ -95669,37 +95969,37 @@ Chico: installDir: Chico: {} launch: - /Chico.exe: + "/Chico.exe": - when: - bit: 64 os: windows store: steam steam: id: 1207420 -'Chicory: A Colorful Tale': +"Chicory: A Colorful Tale": files: - /Library/Application Support/com.greglobanov.chicory: + "/Library/Application Support/com.greglobanov.chicory": tags: - config when: - os: mac - /Library/Application Support/com.greglobanov.chicory/save: + "/Library/Application Support/com.greglobanov.chicory/save": tags: - save when: - os: mac - /Packages/Finji.ChicoryAColorfulTale_tys0ffscxatjj/SystemAppData/wgs: + "/Packages/Finji.ChicoryAColorfulTale_tys0ffscxatjj/SystemAppData/wgs": tags: - save when: - os: windows store: microsoft - /paintdog: + "/paintdog": tags: - config when: - os: windows - /paintdog/save: + "/paintdog/save": tags: - save when: @@ -95707,21 +96007,21 @@ Chico: installDir: Chicory A Colorful Tale: {} launch: - /Mac/Chicory_A_Colorful_Tale.app/Contents/MacOS/Mac_Runner: + "/Mac/Chicory_A_Colorful_Tale.app/Contents/MacOS/Mac_Runner": - when: - os: mac store: steam - /PC/Chicory.exe: + "/PC/Chicory.exe": - when: - os: windows store: steam steam: id: 1123450 -Chief's Quest: +"Chief's Quest": installDir: - Chief's Quest: {} + "Chief's Quest": {} launch: - /Chiefs Quest.exe: + "/Chiefs Quest.exe": - when: - os: windows store: steam @@ -95733,11 +96033,11 @@ Chiffa 2: Chika Militant Cockroach: steam: id: 590420 -'Child Phobia: Nightcoming Fears': +"Child Phobia: Nightcoming Fears": installDir: Child Phobia Nightcoming Fears: {} launch: - /Child Phobia.exe: + "/Child Phobia.exe": - when: - os: windows store: steam @@ -95750,17 +96050,17 @@ Child of Ault: id: 566270 Child of Light: files: - /savegames//609: + "/savegames//609": tags: - save when: - store: uplay - /My Games/Child of Light/: + "/My Games/Child of Light/": tags: - config when: - os: windows - /Orbit/611: + "/Orbit/611": tags: - save when: @@ -95768,7 +96068,7 @@ Child of Light: installDir: Child of Light: {} launch: - /ChildofLight.exe: + "/ChildofLight.exe": - arguments: uplay= -uplay_steam_mode when: - os: windows @@ -95784,7 +96084,7 @@ Children of Apollo: installDir: Children of Apollo: {} launch: - /nw.exe: + "/nw.exe": - when: - store: steam steam: @@ -95798,15 +96098,15 @@ Children of Liberty: installDir: ChildrenOfLiberty: {} launch: - /ChildrenOfLiberty.app: + "/ChildrenOfLiberty.app": - when: - os: mac store: steam - /ChildrenOfLiberty.exe: + "/ChildrenOfLiberty.exe": - when: - os: windows store: steam - /ChildrenOfLiberty.x86: + "/ChildrenOfLiberty.x86": - when: - os: linux store: steam @@ -95814,29 +96114,30 @@ Children of Liberty: id: 264440 Children of Morta: files: - /AppData/LocalLow/Dead Mage/Children of Morta: + "/AppData/LocalLow/Dead Mage/Children of Morta": tags: - config when: - os: windows - /userdata//330020/remote: + "/userdata//330020/remote": tags: - save when: - store: steam - /GOG.com/Galaxy/Applications/49845465038978536/Storage/Shared/Files: + "/GOG.com/Galaxy/Applications/49845465038978536/Storage/Shared/Files": tags: - config - save when: - - store: gog - /Packages/11bitstudios.12487E5DA4D9B_gwy9gn5q9j1y6/SystemAppData/wgs: + - os: windows + store: gog + "/Packages/11bitstudios.12487E5DA4D9B_gwy9gn5q9j1y6/SystemAppData/wgs": tags: - save when: - os: windows store: microsoft - /unity3d/Dead Mage/Children of Morta: + "/unity3d/Dead Mage/Children of Morta": tags: - config - save @@ -95851,15 +96152,15 @@ Children of Morta: installDir: ChildrenOfMorta: {} launch: - /ChildrenOfMorta: + "/ChildrenOfMorta": - when: - os: linux store: steam - /ChildrenOfMorta.app: + "/ChildrenOfMorta.app": - when: - os: mac store: steam - /ChildrenOfMorta.exe: + "/ChildrenOfMorta.exe": - when: - os: windows store: steam @@ -95873,12 +96174,12 @@ Children of Orc: installDir: CoO: {} launch: - /CoO: + "/CoO": - when: - bit: 64 os: linux store: steam - /CoO.exe: + "/CoO.exe": - when: - bit: 64 os: windows @@ -95887,7 +96188,7 @@ Children of Orc: id: 544840 Children of Silentown: files: - /AppData/LocalLow/Daedalic Entertainment GmbH/ChildrenOfSilentown: + "/AppData/LocalLow/Daedalic Entertainment GmbH/ChildrenOfSilentown": tags: - save when: @@ -95897,12 +96198,12 @@ Children of Silentown: installDir: ChildrenOfSilentown: {} launch: - /ChildrenOfSilentown.exe: + "/ChildrenOfSilentown.exe": - when: - bit: 64 os: windows store: steam - /Cos.x86_64: + "/Cos.x86_64": - when: - os: linux store: steam @@ -95914,7 +96215,7 @@ Children of Silentown: id: 1108000 Children of Zodiarcs: files: - /AppData/LocalLow/Cardboard Utopia/Children of Zodiarcs/Saves: + "/AppData/LocalLow/Cardboard Utopia/Children of Zodiarcs/Saves": tags: - save when: @@ -95924,7 +96225,7 @@ Children of Zodiarcs: installDir: Children of Zodiarcs: {} launch: - /Coz.app: + "/Coz.app": - when: - os: mac store: steam @@ -95936,7 +96237,7 @@ Children of Zodiarcs: id: 436290 Children of a Dead Earth: files: - /AppData/Roaming/CDE: + "/AppData/Roaming/CDE": tags: - config - save @@ -95945,11 +96246,11 @@ Children of a Dead Earth: installDir: Children of a Dead Earth: {} launch: - /CDE.exe: + "/CDE.exe": - when: - os: windows store: steam - /Children of a Dead Earth.app/Contents/MacOS/Children of a Dead Earth: + "/Children of a Dead Earth.app/Contents/MacOS/Children of a Dead Earth": - when: - os: mac store: steam @@ -95962,7 +96263,7 @@ Children of the Galaxy: installDir: Children of the Galaxy: {} launch: - /CoG.exe: + "/CoG.exe": - when: - bit: 64 os: windows @@ -95971,12 +96272,12 @@ Children of the Galaxy: id: 563390 Children of the Nile: files: - /Tilted Mill/Children of the Nile: + "/Tilted Mill/Children of the Nile": tags: - config when: - os: windows - /Tilted Mill/Children of the Nile/Saved Games: + "/Tilted Mill/Children of the Nile/Saved Games": tags: - save when: @@ -95989,7 +96290,7 @@ Children of the Nile: installDir: Children of the Nile: {} launch: - /cotn.exe: + "/cotn.exe": - when: - store: steam steam: @@ -96001,7 +96302,7 @@ Chili The Chipmunk Pinball Adventure: installDir: Chili The Chipmunk Pinball Adventure: {} launch: - /ChiliTheChipMunkPinBallAdventure.exe: + "/ChiliTheChipMunkPinBallAdventure.exe": - when: - os: windows store: steam @@ -96011,7 +96312,7 @@ Chilie: installDir: Chilie: {} launch: - /Chilie.exe: + "/Chilie.exe": - when: - os: windows store: steam @@ -96024,11 +96325,11 @@ Chill: installDir: Chill: {} launch: - /Chill.exe: + "/Chill.exe": - when: - os: windows store: steam - /Chill.sh: + "/Chill.sh": - when: - os: linux store: steam @@ -96038,11 +96339,11 @@ Chill II: installDir: Chill II: {} launch: - /Chill2.exe: + "/Chill2.exe": - when: - os: windows store: steam - /Chill2.sh: + "/Chill2.sh": - when: - os: linux store: steam @@ -96055,15 +96356,15 @@ Chill the Piro: installDir: Chill the Piro: {} launch: - /ChillThePiro.app/Contents/MacOS/ChillThePiro: + "/ChillThePiro.app/Contents/MacOS/ChillThePiro": - when: - os: mac store: steam - /ChillThePiro.exe: + "/ChillThePiro.exe": - when: - os: windows store: steam - /ChillThePiro.x86: + "/ChillThePiro.x86": - when: - os: linux store: steam @@ -96071,7 +96372,7 @@ Chill the Piro: id: 437180 ChilloutVR: files: - /Appdata/LocalLow/Alpha Blend Interactive/ChilloutVR: + "/Appdata/LocalLow/Alpha Blend Interactive/ChilloutVR": tags: - config when: @@ -96079,14 +96380,14 @@ ChilloutVR: installDir: ChilloutVR: {} launch: - /ChilloutVR.exe: + "/ChilloutVR.exe": - when: - store: steam steam: id: 661130 Chime: files: - /Chime: + "/Chime": tags: - config - save @@ -96095,7 +96396,7 @@ Chime: installDir: Chime: {} launch: - /Chime.exe: + "/Chime.exe": - when: - store: steam steam: @@ -96104,15 +96405,15 @@ Chime Sharp: installDir: Chime Sharp: {} launch: - /ChimeSharp.app: + "/ChimeSharp.app": - when: - os: mac store: steam - /ChimeSharp.exe: + "/ChimeSharp.exe": - when: - os: windows store: steam - /ChimeSharp.x86: + "/ChimeSharp.x86": - when: - os: linux store: steam @@ -96122,16 +96423,16 @@ Chime Sharp Game Composer Edition: installDir: Chime Sharp Game Composer Edition: {} launch: - /ChimeSharpGCE.app: + "/ChimeSharpGCE.app": - when: - os: mac store: steam - /ChimeSharpGCE.exe: + "/ChimeSharpGCE.exe": - when: - os: windows store: steam - /ChimeSharpGCE.x86: - - arguments: '-force-opengl' + "/ChimeSharpGCE.x86": + - arguments: "-force-opengl" when: - os: linux store: steam @@ -96141,7 +96442,7 @@ Chimera of Tactics: installDir: ZSKX1: {} launch: - /ZSKX1.exe: + "/ZSKX1.exe": - when: - os: windows store: steam @@ -96151,7 +96452,7 @@ Chimera of Tactics 2: installDir: Chimera of Tactics 2: {} launch: - /ZSKX2.exe: + "/ZSKX2.exe": - when: - os: windows store: steam @@ -96161,43 +96462,43 @@ Chimeraland: installDir: chimeraland: {} launch: - /client/x64/Release/Chimeraland.exe: + "/client/x64/Release/Chimeraland.exe": - arguments: /steam when: - os: windows store: steam steam: id: 1913730 -'Chimeras: The Signs of Prophecy': +"Chimeras: The Signs of Prophecy": installDir: - Chimeras The Signs of Prophecy Collector's Edition: {} + "Chimeras The Signs of Prophecy Collector's Edition": {} launch: - /Chimeras_TheSignsOfProphecy_CE.exe: + "/Chimeras_TheSignsOfProphecy_CE.exe": - when: - os: windows store: steam steam: id: 678410 -'Chimeras: Tune of Revenge': +"Chimeras: Tune of Revenge": installDir: - Chimeras Tune of Revenge Collector's Edition: {} + "Chimeras Tune of Revenge Collector's Edition": {} launch: - /Chimeras_TuneOfRevenge.exe: + "/Chimeras_TuneOfRevenge.exe": - when: - store: steam steam: id: 565140 -'Chimpact 1: Chuck''s Adventure': +"Chimpact 1: Chuck's Adventure": files: - /Saved Games/Yippee/ChimpactClassic: + "/Saved Games/Yippee/ChimpactClassic": tags: - save when: - os: windows installDir: - Chimpact 1 - Chuck's Adventure: {} + "Chimpact 1 - Chuck's Adventure": {} launch: - /ChimpactClassic.exe: + "/ChimpactClassic.exe": - when: - os: windows store: steam @@ -96207,7 +96508,7 @@ Chimpology: installDir: Chimpology: {} launch: - /chimpology.exe: + "/chimpology.exe": - when: - bit: 64 os: windows @@ -96218,31 +96519,34 @@ China vs Roman: installDir: MyGame: {} launch: - /China VS Roman.exe: + "/China VS Roman.exe": - when: - os: windows store: steam steam: id: 809830 -'China: Mao''s Legacy': +"China: Mao's Legacy": installDir: - Mao's Legacy: {} + "Mao's Legacy": {} launch: - /China.app: + "/China.app": - when: - os: mac store: steam - /China.exe: + "/China.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam - /China.x86: + "/China.x86": - when: - bit: 32 os: linux store: steam - /China.x86_64: + "/China.x86_64": - when: - bit: 64 os: linux @@ -96251,17 +96555,17 @@ China vs Roman: id: 950740 Chinatown Detective Agency: files: - /AppData/LocalLow/General Interactive Co_/Chinatown Detective Agency: + "/AppData/LocalLow/General Interactive Co_/Chinatown Detective Agency": tags: - save when: - os: windows - /Library/Application Support/unity.General Interactive Co_.Chinatown Detective Agency/General Interactive Co_/Chinatown Detective Agency: + "/Library/Application Support/unity.General Interactive Co_.Chinatown Detective Agency/General Interactive Co_/Chinatown Detective Agency": tags: - save when: - os: mac - /Packages/HumbleBundle.ChinatownDetectiveAgency_q2mcdwmzx4qja/SystemAppData/wgs: + "/Packages/HumbleBundle.ChinatownDetectiveAgency_q2mcdwmzx4qja/SystemAppData/wgs": tags: - save when: @@ -96272,35 +96576,35 @@ Chinatown Detective Agency: installDir: Chinatown Detective Agency: {} launch: - /Chinatown Detective Agency.app/Contents/MacOS/Chinatown Detective Agency: + "/Chinatown Detective Agency.app/Contents/MacOS/Chinatown Detective Agency": - when: - os: mac store: steam - /Chinatown Detective Agency.exe: + "/Chinatown Detective Agency.exe": - when: - bit: 64 os: windows store: steam steam: id: 1172190 -Chinbu's Adventure: +"Chinbu's Adventure": installDir: Chinbus Adventure: {} launch: - /Chinbus Adventure.app: + "/Chinbus Adventure.app": - when: - os: mac store: steam - /Chinbus Adventure.exe: + "/Chinbus Adventure.exe": - when: - os: windows store: steam - /Chinbus Adventure.x86: + "/Chinbus Adventure.x86": - when: - bit: 32 os: linux store: steam - /Chinbus Adventure.x86_64: + "/Chinbus Adventure.x86_64": - when: - bit: 64 os: linux @@ -96311,16 +96615,16 @@ Chinese Brush Simulator: installDir: Chinese Brush Simulator: {} launch: - /ChineseBrushSimulator.exe: + "/ChineseBrushSimulator.exe": - when: - store: steam steam: id: 1222160 -'Chinese Chess/ Elephant Game: 象棋': +"Chinese Chess/ Elephant Game: 象棋": installDir: Xiangqi: {} launch: - /xq.exe: + "/xq.exe": - when: - store: steam steam: @@ -96329,7 +96633,7 @@ Chinese Ink Painting Puzzle & Creator: installDir: Chinese Ink Painting Puzzle & Creator: {} launch: - /CIPPC.exe: + "/CIPPC.exe": - when: - os: windows store: steam @@ -96339,48 +96643,48 @@ Chinese Inn: installDir: Chinese inn: {} launch: - /INN.exe: + "/INN.exe": - when: - os: windows store: steam steam: id: 762480 -'Chinese Paladin: Sword and Fairy 4': +"Chinese Paladin: Sword and Fairy 4": installDir: Chinese Paladin 4: {} launch: - /launch.exe: + "/launch.exe": - when: - store: steam steam: id: 681820 -'Chinese Paladin: Sword and Fairy 5': +"Chinese Paladin: Sword and Fairy 5": installDir: Chinese Paladin 5: {} launch: - /Pal5.exe: + "/Pal5.exe": - when: - store: steam steam: id: 681830 -'Chinese Paladin: Sword and Fairy 5 Prequel': +"Chinese Paladin: Sword and Fairy 5 Prequel": installDir: Chinese Paladin 5 Prequel: {} launch: - /Pal5Q.exe: + "/Pal5Q.exe": - when: - os: windows store: steam steam: id: 681840 -'Chinese Paladin: Sword and Fairy 6': +"Chinese Paladin: Sword and Fairy 6": files: - /My Games/Pal6: + "/My Games/Pal6": tags: - config when: - os: windows - /My Games/Pal6/Save: + "/My Games/Pal6/Save": tags: - save when: @@ -96388,19 +96692,19 @@ Chinese Inn: installDir: Sword & Fairy 6: {} launch: - /Pal6.exe: + "/Pal6.exe": - when: - store: steam steam: id: 696360 Chinese Parents: files: - /AppData/LocalLow/moyuwan/chineseparentsgame/Save/*.sav: + "/AppData/LocalLow/moyuwan/chineseparentsgame/Save/*.sav": tags: - save when: - os: windows - /AppData/LocalLow/moyuwan/中国式家长/Save/*.sav: + "/AppData/LocalLow/moyuwan/中国式家长/Save/*.sav": tags: - save when: @@ -96411,7 +96715,7 @@ Chinese Souls - Hua Garden: installDir: Chinese Souls-Hua Garden中华之魂-华园: {} launch: - /game.exe: + "/game.exe": - when: - bit: 64 os: windows @@ -96427,7 +96731,7 @@ Chineze: installDir: Chineze: {} launch: - /Chineze.exe: + "/Chineze.exe": - when: - store: steam steam: @@ -96436,7 +96740,7 @@ Chinomikon: installDir: Chinomikon: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -96449,12 +96753,12 @@ Chio Hero: id: 737500 Chionophile: files: - /Chionophile/Saved/Config/WindowsNoEditor/*.ini: + "/Chionophile/Saved/Config/WindowsNoEditor/*.ini": tags: - config when: - os: windows - /Chionophile/Saved/SaveGames/*.sav: + "/Chionophile/Saved/SaveGames/*.sav": tags: - save when: @@ -96462,7 +96766,7 @@ Chionophile: installDir: Chionophile: {} launch: - /Chionophile.exe: + "/Chionophile.exe": - when: - bit: 64 os: windows @@ -96473,49 +96777,43 @@ Chip: installDir: Chip: {} launch: - /chip.win32.exe: + "/chip.win32.exe": - when: - os: windows store: steam steam: id: 275470 -Chip's Challenge 1: +"Chip's Challenge 1": files: - /data/games/save.c2l: + "/data/games/save.c2l": tags: - save when: - os: windows - /data/options.txt: + "/data/options.txt": tags: - config when: - os: windows - /data/saves: + "/data/saves": tags: - save when: - os: windows - /entpack.ini *: - tags: - - config - - save - when: - - os: windows installDir: - Chip's Challenge 1: {} + "Chip's Challenge 1": {} launch: - /Chips1.exe: + "/Chips1.exe": - when: - os: windows store: steam steam: id: 346850 -Chip's Challenge 2: +"Chip's Challenge 2": installDir: - Chip's Challenge 2: {} + "Chip's Challenge 2": {} launch: - /Chips2.exe: + "/Chips2.exe": - when: - os: windows store: steam @@ -96525,21 +96823,21 @@ Chipmonk!: installDir: Chipmonk!: {} launch: - /Chipmonk! linux/Chipmonk!: + "/Chipmonk! linux/Chipmonk!": - when: - os: linux store: steam - /Chipmonk! win32/Chipmonk!.exe: + "/Chipmonk! win32/Chipmonk!.exe": - when: - bit: 32 os: windows store: steam - /Chipmonk! win64/Chipmonk!.exe: + "/Chipmonk! win64/Chipmonk!.exe": - when: - bit: 64 os: windows store: steam - /Chipmonk!.app/Contents/MacOS/Chipmonk!: + "/Chipmonk!.app/Contents/MacOS/Chipmonk!": - when: - os: mac store: steam @@ -96549,11 +96847,11 @@ Chippy: installDir: Chippy: {} launch: - /Chippy: + "/Chippy": - when: - os: linux store: steam - /Chippy.exe: + "/Chippy.exe": - when: - os: windows store: steam @@ -96563,7 +96861,7 @@ Chiptune Champion: installDir: Chiptune Champion: {} launch: - /ChiptuneChampion.exe: + "/ChiptuneChampion.exe": - when: - os: windows store: steam @@ -96573,7 +96871,7 @@ Chiptune DJ: installDir: Chiptune DJ: {} launch: - /CHIPTUNE DJ VERSION FINAL.exe: + "/CHIPTUNE DJ VERSION FINAL.exe": - when: - os: windows store: steam @@ -96583,7 +96881,7 @@ Chishiki Runner: installDir: Chishiki Runner: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -96591,13 +96889,13 @@ Chishiki Runner: id: 1005820 Chivalry 2: files: - /Chivalry 2/Saved/Config/WinGDK: + "/Chivalry 2/Saved/Config/WinGDK": tags: - config when: - os: windows store: microsoft - /Chivalry 2/Saved/Config/WindowsNoEditor: + "/Chivalry 2/Saved/Config/WindowsNoEditor": tags: - config when: @@ -96605,8 +96903,8 @@ Chivalry 2: installDir: Chivalry 2: {} launch: - /Chivalry2Launcher.exe: - - arguments: '-useeac -usebugsplat ' + "/Chivalry2Launcher.exe": + - arguments: "-useeac -usebugsplat " when: - bit: 64 os: windows @@ -96615,24 +96913,24 @@ Chivalry 2: id: 1824220 Chivalry Is Not Dead: files: - /saves: + "/saves": tags: - save when: - os: windows -'Chivalry: Medieval Warfare': +"Chivalry: Medieval Warfare": files: - /My Games/Chivalry Deadliest Warrior/CDWGame/Config: + "/My Games/Chivalry Deadliest Warrior/CDWGame/Config": tags: - config when: - os: windows - /My Games/Chivalry Medieval Warfare/UDKGame/Config: + "/My Games/Chivalry Medieval Warfare/UDKGame/Config": tags: - config when: - os: windows - /TornBanner/Chivalry/UDKGame/Config: + "/TornBanner/Chivalry/UDKGame/Config": tags: - config when: @@ -96643,11 +96941,11 @@ Chivalry Is Not Dead: installDir: chivalrymedievalwarfare: {} launch: - /Binaries/Win32/CMW.exe: + "/Binaries/Win32/CMW.exe": - when: - os: windows store: steam - /ChivLauncher.exe: + "/ChivLauncher.exe": - when: - os: windows store: steam @@ -96657,11 +96955,11 @@ Chlorophos: installDir: Chlorophos: {} launch: - /Chlorophos_a.app: + "/Chlorophos_a.app": - when: - os: mac store: steam - /Chlorophos_a.exe: + "/Chlorophos_a.exe": - when: - os: windows store: steam @@ -96671,18 +96969,18 @@ Cho Dengeki Stryker: installDir: Cho Dengeki Stryker: {} launch: - /Cho Dengeki Stryker/BGI.exe: + "/Cho Dengeki Stryker/BGI.exe": - when: - os: windows store: steam - workingDir: /Cho Dengeki Stryker + workingDir: "/Cho Dengeki Stryker" steam: id: 321190 Choco Pixel: installDir: Choco Pixel: {} launch: - /Choco Pixel.exe: + "/Choco Pixel.exe": - when: - os: windows store: steam @@ -96692,7 +96990,7 @@ Choco Pixel 2: installDir: Choco Pixel 2: {} launch: - /Choco Pixel 2.exe: + "/Choco Pixel 2.exe": - when: - os: windows store: steam @@ -96702,7 +97000,7 @@ Choco Pixel 3: installDir: Choco Pixel 3: {} launch: - /Choco Pixel 3.exe: + "/Choco Pixel 3.exe": - when: - os: windows store: steam @@ -96712,7 +97010,7 @@ Choco Pixel 4: installDir: Choco Pixel 4: {} launch: - /Choco Pixel 4.exe: + "/Choco Pixel 4.exe": - when: - os: windows store: steam @@ -96722,7 +97020,7 @@ Choco Pixel 5: installDir: Choco Pixel 5: {} launch: - /Choco Pixel 5.exe: + "/Choco Pixel 5.exe": - when: - os: windows store: steam @@ -96732,7 +97030,7 @@ Choco Pixel 6: installDir: Choco Pixel 6: {} launch: - /Choco Pixel 6.exe: + "/Choco Pixel 6.exe": - when: - store: steam steam: @@ -96741,7 +97039,7 @@ Choco Pixel 7: installDir: Choco Pixel 7: {} launch: - /Choco Pixel 7.exe: + "/Choco Pixel 7.exe": - when: - os: windows store: steam @@ -96751,7 +97049,7 @@ Choco Pixel S: installDir: Choco Pixel S: {} launch: - /Choco Pixel S.exe: + "/Choco Pixel S.exe": - when: - os: windows store: steam @@ -96761,7 +97059,7 @@ Choco pixel D: installDir: Choco Pixel D: {} launch: - /Choco Pixel D.exe: + "/Choco Pixel D.exe": - when: - os: windows store: steam @@ -96779,7 +97077,7 @@ Chocolate: id: 575420 Chocolate Castle: files: - /.lexaloffle/Chocolate Castle: + "/.lexaloffle/Chocolate Castle": tags: - config - save @@ -96789,7 +97087,7 @@ Chocolate Makes You Happy: installDir: Chocolate makes you happy: {} launch: - /Chocolate makes you happy.exe: + "/Chocolate makes you happy.exe": - when: - os: windows store: steam @@ -96799,7 +97097,7 @@ Chocolate Makes You Happy 2: installDir: Chocolate makes you happy 2: {} launch: - /Chocolate makes you happy 2.exe: + "/Chocolate makes you happy 2.exe": - when: - os: windows store: steam @@ -96807,7 +97105,7 @@ Chocolate Makes You Happy 2: id: 764560 Chocolate Makes You Happy 3: files: - /.: + "/.": tags: - save when: @@ -96815,7 +97113,7 @@ Chocolate Makes You Happy 3: installDir: Chocolate makes you happy 3: {} launch: - /Chocolate makes you happy 3.exe: + "/Chocolate makes you happy 3.exe": - when: - os: windows store: steam @@ -96823,7 +97121,7 @@ Chocolate Makes You Happy 3: id: 790860 Chocolate Makes You Happy 4: files: - /.: + "/.": tags: - save when: @@ -96831,7 +97129,7 @@ Chocolate Makes You Happy 4: installDir: Chocolate makes you happy 4: {} launch: - /Chocolate makes you happy 4.exe: + "/Chocolate makes you happy 4.exe": - when: - os: windows store: steam @@ -96839,7 +97137,7 @@ Chocolate Makes You Happy 4: id: 815950 Chocolate Makes You Happy 5: files: - /.: + "/.": tags: - save when: @@ -96847,7 +97145,7 @@ Chocolate Makes You Happy 5: installDir: Chocolate makes you happy 5: {} launch: - /Chocolate makes you happy 5.exe: + "/Chocolate makes you happy 5.exe": - when: - os: windows store: steam @@ -96855,7 +97153,7 @@ Chocolate Makes You Happy 5: id: 844160 Chocolate Makes You Happy 6: files: - /.: + "/.": tags: - save when: @@ -96863,7 +97161,7 @@ Chocolate Makes You Happy 6: installDir: Chocolate makes you happy 6: {} launch: - /Chocolate makes you happy 6.exe: + "/Chocolate makes you happy 6.exe": - when: - os: windows store: steam @@ -96873,25 +97171,25 @@ Chocolate Makes You Happy 7: installDir: Chocolate makes you happy 7: {} launch: - /Chocolate makes you happy 7.exe: + "/Chocolate makes you happy 7.exe": - when: - os: windows store: steam steam: id: 892880 -'Chocolate Makes You Happy: Easter': +"Chocolate Makes You Happy: Easter": installDir: Chocolate makes you happy Easter: {} launch: - /Chocolate makes you happy Easter.exe: + "/Chocolate makes you happy Easter.exe": - when: - os: windows store: steam steam: id: 1054610 -'Chocolate Makes You Happy: Halloween': +"Chocolate Makes You Happy: Halloween": files: - /.: + "/.": tags: - save when: @@ -96899,55 +97197,55 @@ Chocolate Makes You Happy 7: installDir: Chocolate makes you happy Halloween: {} launch: - /Chocolate makes you happy Halloween.exe: + "/Chocolate makes you happy Halloween.exe": - when: - os: windows store: steam steam: id: 941790 -'Chocolate Makes You Happy: Lunar New Year': +"Chocolate Makes You Happy: Lunar New Year": installDir: Chocolate makes you happy Lunar New Year: {} launch: - /Chocolate makes you happy Lunar New Year.exe: + "/Chocolate makes you happy Lunar New Year.exe": - when: - os: windows store: steam steam: id: 1035920 -'Chocolate Makes You Happy: New Year': +"Chocolate Makes You Happy: New Year": installDir: Chocolate makes you happy New Year: {} launch: - /Chocolate makes you happy New Year.exe: + "/Chocolate makes you happy New Year.exe": - when: - os: windows store: steam steam: id: 983280 -'Chocolate Makes You Happy: St. Patrick''s Day': +"Chocolate Makes You Happy: St. Patrick's Day": installDir: Chocolate makes you happy SPD: {} launch: - /Chocolate makes you happy SPD.exe: + "/Chocolate makes you happy SPD.exe": - when: - os: windows store: steam steam: id: 1021260 -'Chocolate Makes You Happy: Valentine''s Day': +"Chocolate Makes You Happy: Valentine's Day": installDir: - Chocolate makes you happy Valentine's Day: {} + "Chocolate makes you happy Valentine's Day": {} launch: - /Chocolate makes you happy Valentine's Day.exe: + "/Chocolate makes you happy Valentine's Day.exe": - when: - os: windows store: steam steam: id: 1006880 -'Chocolatier: Decadence by Design': +"Chocolatier: Decadence by Design": files: - /PlayFirst/chocolatier-decadence-design/prefs.dat: + "/PlayFirst/chocolatier-decadence-design/prefs.dat": tags: - config when: @@ -96955,11 +97253,11 @@ Chocolate Makes You Happy 7: installDir: Chocolatier Decadence by Design: {} launch: - /chocolatier-decadence-design.app: + "/chocolatier-decadence-design.app": - when: - os: mac store: steam - /chocolatier-decadence.exe: + "/chocolatier-decadence.exe": - when: - os: windows store: steam @@ -96969,7 +97267,7 @@ Choconoa: installDir: Choconoa: {} launch: - /Choconoa.exe: + "/Choconoa.exe": - when: - bit: 64 os: windows @@ -96980,7 +97278,7 @@ Choice: installDir: Choice: {} launch: - /Choice.exe: + "/Choice.exe": - when: - os: windows store: steam @@ -96988,7 +97286,7 @@ Choice: id: 648550 Choice Chamber: files: - /com.onemrbean.choicechamber/Local Store/#SharedObjects/choicechamber.swf/choicechamber.sol: + "/com.onemrbean.choicechamber/Local Store/#SharedObjects/choicechamber.swf/choicechamber.sol": tags: - config when: @@ -96996,11 +97294,11 @@ Choice Chamber: installDir: Choice Chamber: {} launch: - /choicechamber.app: + "/choicechamber.app": - when: - os: mac store: steam - /choicechamber.exe: + "/choicechamber.exe": - when: - os: windows store: steam @@ -97010,15 +97308,15 @@ Choice of Alexandria: installDir: Choice of Alexandria: {} launch: - /Alexandria: + "/Alexandria": - when: - os: linux store: steam - /Alexandria.exe: + "/Alexandria.exe": - when: - os: windows store: steam - /Choice of Alexandria.app/Contents/MacOS/Choice of Alexandria: + "/Choice of Alexandria.app/Contents/MacOS/Choice of Alexandria": - when: - os: mac store: steam @@ -97028,33 +97326,33 @@ Choice of Broadsides: installDir: Choice of Broadsides: {} launch: - /Choice of Broadsides.app/Contents/MacOS/Choice of Broadsides: + "/Choice of Broadsides.app/Contents/MacOS/Choice of Broadsides": - when: - os: mac store: steam - /ChoiceOfBroadsides: + "/ChoiceOfBroadsides": - when: - os: linux store: steam - /ChoiceOfBroadsides.exe: + "/ChoiceOfBroadsides.exe": - when: - os: windows store: steam steam: id: 726460 -'Choice of Broadsides: HMS Foraker': +"Choice of Broadsides: HMS Foraker": installDir: Choice of Broadsides HMS Foraker: {} launch: - /Choice of Broadsides HMS Foraker.app/Contents/MacOS/Choice of Broadsides HMS Foraker: + "/Choice of Broadsides HMS Foraker.app/Contents/MacOS/Choice of Broadsides HMS Foraker": - when: - os: mac store: steam - /ChoiceOfBroadsidesHMSForaker: + "/ChoiceOfBroadsidesHMSForaker": - when: - os: linux store: steam - /ChoiceOfBroadsidesHMSForaker.exe: + "/ChoiceOfBroadsidesHMSForaker.exe": - when: - os: windows store: steam @@ -97064,15 +97362,15 @@ Choice of Kung Fu: installDir: ChoiceOfKungFu: {} launch: - /Choice of Kung Fu.app/Contents/MacOS/Choice of Kung Fu: + "/Choice of Kung Fu.app/Contents/MacOS/Choice of Kung Fu": - when: - os: mac store: steam - /ChoiceOfKungFu: + "/ChoiceOfKungFu": - when: - os: linux store: steam - /ChoiceOfKungFu.exe: + "/ChoiceOfKungFu.exe": - when: - os: windows store: steam @@ -97082,33 +97380,33 @@ Choice of Magics: installDir: Choice of Magics: {} launch: - /Choice of Magics.app/Contents/MacOS/Choice of Magics: + "/Choice of Magics.app/Contents/MacOS/Choice of Magics": - when: - os: mac store: steam - /ChoiceOfMagics: + "/ChoiceOfMagics": - when: - os: linux store: steam - /ChoiceOfMagics.exe: + "/ChoiceOfMagics.exe": - when: - os: windows store: steam steam: id: 918380 -'Choice of Rebels: Uprising': +"Choice of Rebels: Uprising": installDir: Choice of Rebels Uprising: {} launch: - /Choice of Rebels Uprising.app/Contents/MacOS/Choice of Rebels Uprising: + "/Choice of Rebels Uprising.app/Contents/MacOS/Choice of Rebels Uprising": - when: - os: mac store: steam - /ChoiceOfRebelsUprising: + "/ChoiceOfRebelsUprising": - when: - os: linux store: steam - /ChoiceOfRebelsUprising.exe: + "/ChoiceOfRebelsUprising.exe": - when: - os: windows store: steam @@ -97118,15 +97416,15 @@ Choice of Robots: installDir: ChoiceOfRobots: {} launch: - /Choice of Robots.app/Contents/MacOS/Choice of Robots: + "/Choice of Robots.app/Contents/MacOS/Choice of Robots": - when: - os: mac store: steam - /ChoiceOfRobots: + "/ChoiceOfRobots": - when: - os: linux store: steam - /ChoiceOfRobots.exe: + "/ChoiceOfRobots.exe": - when: - os: windows store: steam @@ -97136,15 +97434,15 @@ Choice of Zombies: installDir: Choice of Zombies: {} launch: - /Choice of Zombies.app/Contents/MacOS/Choice of Zombies: + "/Choice of Zombies.app/Contents/MacOS/Choice of Zombies": - when: - os: mac store: steam - /ChoiceOfZombies: + "/ChoiceOfZombies": - when: - os: linux store: steam - /ChoiceOfZombies.exe: + "/ChoiceOfZombies.exe": - when: - os: windows store: steam @@ -97154,15 +97452,15 @@ Choice of the Cat: installDir: Choice of the Cat: {} launch: - /Choice of the Cat.app/Contents/MacOS/Choice of the Cat: + "/Choice of the Cat.app/Contents/MacOS/Choice of the Cat": - when: - os: mac store: steam - /ChoiceOfTheCat: + "/ChoiceOfTheCat": - when: - os: linux store: steam - /ChoiceOfTheCat.exe: + "/ChoiceOfTheCat.exe": - when: - os: windows store: steam @@ -97172,15 +97470,15 @@ Choice of the Deathless: installDir: ChoiceOfTheDeathless: {} launch: - /Choice of the Deathless.app/Contents/MacOS/Choice of the Deathless: + "/Choice of the Deathless.app/Contents/MacOS/Choice of the Deathless": - when: - os: mac store: steam - /ChoiceOfTheDeathless: + "/ChoiceOfTheDeathless": - when: - os: linux store: steam - /ChoiceOfTheDeathless.exe: + "/ChoiceOfTheDeathless.exe": - when: - os: windows store: steam @@ -97190,15 +97488,15 @@ Choice of the Dragon: installDir: Choice of the Dragon: {} launch: - /Choice of the Dragon.app/Contents/MacOS/Choice of the Dragon: + "/Choice of the Dragon.app/Contents/MacOS/Choice of the Dragon": - when: - os: mac store: steam - /ChoiceOfTheDragon: + "/ChoiceOfTheDragon": - when: - os: linux store: steam - /ChoiceOfTheDragon.exe: + "/ChoiceOfTheDragon.exe": - when: - os: windows store: steam @@ -97208,15 +97506,15 @@ Choice of the Ninja: installDir: Choice of the Ninja: {} launch: - /Choice of the Ninja.app/Contents/MacOS/Choice of the Ninja: + "/Choice of the Ninja.app/Contents/MacOS/Choice of the Ninja": - when: - os: mac store: steam - /ChoiceOfTheNinja: + "/ChoiceOfTheNinja": - when: - os: linux store: steam - /ChoiceOfTheNinja.exe: + "/ChoiceOfTheNinja.exe": - when: - os: windows store: steam @@ -97226,15 +97524,15 @@ Choice of the Petal Throne: installDir: ChoiceOfThePetalThrone: {} launch: - /Choice of the Petal Throne.app/Contents/MacOS/Choice of the Petal Throne: + "/Choice of the Petal Throne.app/Contents/MacOS/Choice of the Petal Throne": - when: - os: mac store: steam - /ChoiceOfThePetalThrone: + "/ChoiceOfThePetalThrone": - when: - os: linux store: steam - /ChoiceOfThePetalThrone.exe: + "/ChoiceOfThePetalThrone.exe": - when: - os: windows store: steam @@ -97244,15 +97542,15 @@ Choice of the Pirate: installDir: Choice of the Pirate: {} launch: - /Choice of the Pirate.app/Contents/MacOS/Choice of the Pirate: + "/Choice of the Pirate.app/Contents/MacOS/Choice of the Pirate": - when: - os: mac store: steam - /Pirate: + "/Pirate": - when: - os: linux store: steam - /Pirate.exe: + "/Pirate.exe": - when: - os: windows store: steam @@ -97262,15 +97560,15 @@ Choice of the Rock Star: installDir: Choice of the Rock Star: {} launch: - /Choice of the Rock Star.app/Contents/MacOS/Choice of the Rock Star: + "/Choice of the Rock Star.app/Contents/MacOS/Choice of the Rock Star": - when: - os: mac store: steam - /ChoiceOfTheRockStar: + "/ChoiceOfTheRockStar": - when: - os: linux store: steam - /ChoiceOfTheRockStar.exe: + "/ChoiceOfTheRockStar.exe": - when: - os: windows store: steam @@ -97280,15 +97578,15 @@ Choice of the Star Captain: installDir: Choice of the Star Captain: {} launch: - /Choice of the Star Captain.app/Contents/MacOS/Choice of the Star Captain: + "/Choice of the Star Captain.app/Contents/MacOS/Choice of the Star Captain": - when: - os: mac store: steam - /ChoiceOfTheStarCaptain: + "/ChoiceOfTheStarCaptain": - when: - os: linux store: steam - /ChoiceOfTheStarCaptain.exe: + "/ChoiceOfTheStarCaptain.exe": - when: - os: windows store: steam @@ -97298,33 +97596,33 @@ Choice of the Vampire: installDir: Choice of the Vampire: {} launch: - /Choice of the Vampire.app/Contents/MacOS/Choice of the Vampire: + "/Choice of the Vampire.app/Contents/MacOS/Choice of the Vampire": - when: - os: mac store: steam - /ChoiceOfTheVampire: + "/ChoiceOfTheVampire": - when: - os: linux store: steam - /ChoiceOfTheVampire.exe: + "/ChoiceOfTheVampire.exe": - when: - os: windows store: steam steam: id: 776000 -'Choice of the Vampire: The Fall of Memphis': +"Choice of the Vampire: The Fall of Memphis": installDir: Choice of the Vampire The Fall of Memphis: {} launch: - /Choice of the Vampire The Fall of Memphis.app/Contents/MacOS/Choice of the Vampire The Fall of Memphis: + "/Choice of the Vampire The Fall of Memphis.app/Contents/MacOS/Choice of the Vampire The Fall of Memphis": - when: - os: mac store: steam - /ChoiceOfTheVampireTheFallOfMemphis: + "/ChoiceOfTheVampireTheFallOfMemphis": - when: - os: linux store: steam - /ChoiceOfTheVampireTheFallOfMemphis.exe: + "/ChoiceOfTheVampireTheFallOfMemphis.exe": - when: - os: windows store: steam @@ -97334,19 +97632,22 @@ Choice or Fate: installDir: Choice or Fate: {} launch: - /Game.exe: - - arguments: '--in-process-gpu' + "/Game.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam steam: id: 991530 -'Choices, The Game': +"Choices, The Game": installDir: Choices The Game: {} launch: - /Choices.exe: + "/Choices.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam @@ -97354,7 +97655,7 @@ Choice or Fate: id: 787170 Chompy Chomp Chomp: files: - /SavedGames/ChompyChompChomp: + "/SavedGames/ChompyChompChomp": tags: - config - save @@ -97363,7 +97664,7 @@ Chompy Chomp Chomp: installDir: Chompy Chomp Chomp: {} launch: - /ChompyChompChomp.exe: + "/ChompyChompChomp.exe": - when: - os: windows store: steam @@ -97371,12 +97672,12 @@ Chompy Chomp Chomp: id: 292570 Choo-Choo Charles: files: - /Obscure/Saved/Config/WindowsNoEditor: + "/Obscure/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /Obscure/Saved/SaveGames: + "/Obscure/Saved/SaveGames": tags: - save when: @@ -97384,7 +97685,7 @@ Choo-Choo Charles: installDir: Choo-Choo Charles: {} launch: - /Obscure.exe: + "/Obscure.exe": - when: - store: steam steam: @@ -97393,23 +97694,23 @@ Choo-Choo! Train Rides!: installDir: CCTR: {} launch: - /cctr.exe: - - arguments: '-steam' + "/cctr.exe": + - arguments: "-steam" when: - bit: 64 os: windows store: steam - /run.sh: - - arguments: '-steam' + "/run.sh": + - arguments: "-steam" when: - bit: 64 os: linux store: steam steam: id: 743920 -'Chook & Sosig: Walk the Plank': +"Chook & Sosig: Walk the Plank": files: - /AppData/LocalLow/TookiPalooki/WalkthePlank: + "/AppData/LocalLow/TookiPalooki/WalkthePlank": tags: - save when: @@ -97419,11 +97720,11 @@ Choo-Choo! Train Rides!: installDir: Chook & Sosig Walk the Plank: {} launch: - /WalkthePlank.app/Contents/MacOS/WalkthePlank: + "/WalkthePlank.app/Contents/MacOS/WalkthePlank": - when: - os: mac store: steam - /WalkthePlank.exe: + "/WalkthePlank.exe": - when: - os: windows store: steam @@ -97437,7 +97738,7 @@ Choose Wisely: installDir: Where are we: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: @@ -97449,20 +97750,20 @@ Chop: installDir: CHOP: {} launch: - /CHOP.app/Contents/MacOS/CHOP: + "/CHOP.app/Contents/MacOS/CHOP": - when: - os: mac store: steam - /CHOP.exe: + "/CHOP.exe": - when: - os: windows store: steam - /CHOP.x86: + "/CHOP.x86": - when: - bit: 32 os: linux store: steam - /CHOP.x86_64: + "/CHOP.x86_64": - when: - bit: 64 os: linux @@ -97473,11 +97774,11 @@ Chop Chop Princess!: installDir: Chop Chop Princess: {} launch: - /Olympic.app: + "/Olympic.app": - when: - os: mac store: steam - /Olympic.exe: + "/Olympic.exe": - when: - os: windows store: steam @@ -97487,7 +97788,7 @@ Chop Goblins: installDir: Chop Goblins: {} launch: - /Chop Goblins.exe: + "/Chop Goblins.exe": - when: - store: steam steam: @@ -97506,7 +97807,7 @@ Chop is dish: installDir: Chop is dish: {} launch: - /Chop is dish.exe: + "/Chop is dish.exe": - when: - os: windows store: steam @@ -97514,7 +97815,7 @@ Chop is dish: id: 974370 Choplifter HD: files: - /Documents/My Games/UnrealEngine3/ChopGame/Config: + "/Documents/My Games/UnrealEngine3/ChopGame/Config": tags: - config when: @@ -97522,7 +97823,7 @@ Choplifter HD: installDir: Choplifter HD: {} launch: - /ChopLaunch.exe: + "/ChopLaunch.exe": - when: - store: steam steam: @@ -97531,20 +97832,20 @@ Choppa: installDir: Choppa: {} launch: - /choppa.app: + "/choppa.app": - when: - os: mac store: steam - /choppa.exe: + "/choppa.exe": - when: - os: windows store: steam - /choppa.x86: + "/choppa.x86": - when: - bit: 32 os: linux store: steam - /choppa.x86_64: + "/choppa.x86_64": - when: - bit: 64 os: linux @@ -97555,7 +97856,7 @@ Chopper Battle New Horizon: installDir: Chopper Battle New Horizon: {} launch: - /ChopperBattleNewHorizon_steam.exe: + "/ChopperBattleNewHorizon_steam.exe": - when: - os: windows store: steam @@ -97565,50 +97866,50 @@ Chopper To Hell: installDir: Chopper To Hell: {} launch: - /Chopper To Hell.app/Contents/MacOS/Chopper To Hell: + "/Chopper To Hell.app/Contents/MacOS/Chopper To Hell": - when: - os: mac store: steam - /Chopper To Hell.exe: + "/Chopper To Hell.exe": - when: - os: windows store: steam steam: id: 1061790 -'Chopper: Attack helicopters': +"Chopper: Attack helicopters": installDir: Chopper Attack helicopters: {} launch: - /ChopperAH.exe: + "/ChopperAH.exe": - when: - os: windows store: steam - /ChopperAH_linux.x86: + "/ChopperAH_linux.x86": - when: - bit: 32 os: linux store: steam - /ChopperAH_linux.x86_64: + "/ChopperAH_linux.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 703760 -'Chopper: Lethal Darkness': +"Chopper: Lethal Darkness": installDir: Chopper Lethal darkness: {} launch: - /Chopper-LD.exe: + "/Chopper-LD.exe": - when: - os: windows store: steam - /Chopper-LD_linux.x86: + "/Chopper-LD_linux.x86": - when: - bit: 32 os: linux store: steam - /Chopper-LD_linux.x86_64: + "/Chopper-LD_linux.x86_64": - when: - bit: 64 os: linux @@ -97617,12 +97918,12 @@ Chopper To Hell: id: 529480 Chorus: files: - /SpacePrototype/Config/WindowsNoEditor: + "/SpacePrototype/Config/WindowsNoEditor": tags: - config when: - os: windows - /SpacePrototype/SaveGames: + "/SpacePrototype/SaveGames": tags: - save when: @@ -97638,7 +97939,7 @@ Chorus: installDir: Chorus: {} launch: - /Chorus-Win64-Shipping.exe: + "/Chorus-Win64-Shipping.exe": - when: - os: windows store: steam @@ -97648,7 +97949,7 @@ Chosen 2: installDir: Chosen 2: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -97658,7 +97959,7 @@ Chowderchu: installDir: Chowderchu: {} launch: - /Chowderchu_1.4.exe: + "/Chowderchu_1.4.exe": - when: - os: windows store: steam @@ -97668,25 +97969,25 @@ Chowdertwo: installDir: Chowdertwo: {} launch: - /Chowdertwo.exe: + "/Chowdertwo.exe": - when: - os: windows store: steam steam: id: 585750 -Chris Sawyer's Locomotion: +"Chris Sawyer's Locomotion": files: - /Data/GAME.CFG: + "/Data/GAME.CFG": tags: - config when: - os: windows - /Single Player Saved Games: + "/Single Player Saved Games": tags: - save when: - os: windows - /Two Player Saved Games: + "/Two Player Saved Games": tags: - save when: @@ -97696,17 +97997,17 @@ Chris Sawyer's Locomotion: installDir: Locomotion: {} launch: - /Loco.exe: + "/Loco.exe": - when: - os: windows store: steam steam: id: 356430 -'Christmas Adventure: Candy Storm': +"Christmas Adventure: Candy Storm": installDir: Christmas Adventure Candy Storm: {} launch: - /Christmas Adventure - Candy Storm.exe: + "/Christmas Adventure - Candy Storm.exe": - when: - store: steam steam: @@ -97715,7 +98016,7 @@ Christmas Carol: installDir: Christmas Carol: {} launch: - /ChristmasCarol.exe: + "/ChristmasCarol.exe": - when: - store: steam steam: @@ -97724,21 +98025,21 @@ Christmas Cats Revenge: installDir: Christmas Cats Revenge: {} launch: - /ChristmasCatsRevenge: + "/ChristmasCatsRevenge": - when: - os: linux store: steam - /ChristmasCatsRevenge.exe: + "/ChristmasCatsRevenge.exe": - when: - os: windows store: steam steam: id: 1201500 -'Christmas Clicker: Idle Gift Builder': +"Christmas Clicker: Idle Gift Builder": installDir: Christmas Clicker Idle Gift Builder: {} launch: - /ChristmasClicker.exe: + "/ChristmasClicker.exe": - when: - os: windows store: steam @@ -97751,17 +98052,17 @@ Christmas Defence: installDir: Christmas Defence: {} launch: - /Christmas Defence.exe: + "/Christmas Defence.exe": - when: - os: windows store: steam steam: id: 979290 -'Christmas Eve: Midnight''s Call': +"Christmas Eve: Midnight's Call": installDir: - Christmas Eve Midnight's Call Collector's Edition: {} + "Christmas Eve Midnight's Call Collector's Edition": {} launch: - /ChristmasEve_MidnightsCall_CE.exe: + "/ChristmasEve_MidnightsCall_CE.exe": - when: - store: steam steam: @@ -97770,11 +98071,11 @@ Christmas Mahjong: installDir: Christmas Mahjong: {} launch: - /Christmas Mahjong.exe: + "/Christmas Mahjong.exe": - when: - os: windows store: steam - /Christmas mahjong.app: + "/Christmas mahjong.app": - when: - os: mac store: steam @@ -97784,11 +98085,11 @@ Christmas Mahjong 2: installDir: Christmas Mahjong 2: {} launch: - /Mahjong Christmas 2.app: + "/Mahjong Christmas 2.app": - when: - os: mac store: steam - /Mahjong Christmas 2.exe: + "/Mahjong Christmas 2.exe": - when: - os: windows store: steam @@ -97796,7 +98097,7 @@ Christmas Mahjong 2: id: 929410 Christmas Massacre: files: - /AppData/LocalLow/Puppet Combo/Christmas Massacre/SaveData.es3: + "/AppData/LocalLow/Puppet Combo/Christmas Massacre/SaveData.es3": tags: - save when: @@ -97806,7 +98107,7 @@ Christmas Massacre: installDir: Christmas Massacre: {} launch: - /Christmas Massacre.exe: + "/Christmas Massacre.exe": - when: - os: windows store: steam @@ -97827,11 +98128,11 @@ Christmas Puzzle: installDir: Christmas Puzzle: {} launch: - /ChristmasPuzzle.app/Contents/MacOS/christmas: + "/ChristmasPuzzle.app/Contents/MacOS/christmas": - when: - os: mac store: steam - /christmas.exe: + "/christmas.exe": - when: - os: windows store: steam @@ -97841,11 +98142,11 @@ Christmas Puzzle 2: installDir: Christmas Puzzle 2: {} launch: - /ChristmasPuzzle2.app/Contents/MacOS/cm2: + "/ChristmasPuzzle2.app/Contents/MacOS/cm2": - when: - os: mac store: steam - /cm2.exe: + "/cm2.exe": - when: - os: windows store: steam @@ -97855,11 +98156,11 @@ Christmas Puzzle 3: installDir: Christmas Puzzle 3: {} launch: - /ChristmasPuzzle3.app/Contents/MacOS/cm3: + "/ChristmasPuzzle3.app/Contents/MacOS/cm3": - when: - os: mac store: steam - /cm3.exe: + "/cm3.exe": - when: - os: windows store: steam @@ -97869,7 +98170,7 @@ Christmas Race: installDir: Christmas Race: {} launch: - /Christmas Race.exe: + "/Christmas Race.exe": - when: - store: steam steam: @@ -97878,7 +98179,7 @@ Christmas Race 2: installDir: Christmas Race 2: {} launch: - /Christmas Race 2.exe: + "/Christmas Race 2.exe": - when: - store: steam steam: @@ -97887,47 +98188,47 @@ Christmas Santa Troubles: installDir: Christmas Santa Troubles: {} launch: - /Christmas.exe: + "/Christmas.exe": - when: - os: windows store: steam steam: id: 773120 -'Christmas Stories: A Christmas Carol': +"Christmas Stories: A Christmas Carol": installDir: - Christmas Stories A Christmas Carol Collector's Edition: {} + "Christmas Stories A Christmas Carol Collector's Edition": {} launch: - /ChristmasStories_AChristmasCarolCE.exe: + "/ChristmasStories_AChristmasCarolCE.exe": - when: - os: windows store: steam steam: id: 757030 -'Christmas Stories: Enchanted Express': +"Christmas Stories: Enchanted Express": installDir: - Christmas Stories Enchanted Express Collector's Edition: {} + "Christmas Stories Enchanted Express Collector's Edition": {} launch: - /ChristmasStories_EnchantedExpress_CE.exe: + "/ChristmasStories_EnchantedExpress_CE.exe": - when: - os: windows store: steam steam: id: 1198060 -'Christmas Stories: Hans Christian Andersen''s Tin Soldier': +"Christmas Stories: Hans Christian Andersen's Tin Soldier": installDir: - Christmas Stories Hans Christian Andersen's Tin Soldier Collector's Edition: {} + "Christmas Stories Hans Christian Andersen's Tin Soldier Collector's Edition": {} launch: - /ChristmasStories_TinSoldierCE.exe: + "/ChristmasStories_TinSoldierCE.exe": - when: - os: windows store: steam steam: id: 758600 -'Christmas Stories: Nutcracker': +"Christmas Stories: Nutcracker": installDir: - Christmas Stories Nutcracker Collector's Edition: {} + "Christmas Stories Nutcracker Collector's Edition": {} launch: - /ChristmasStories_NutcrackerCE.exe: + "/ChristmasStories_NutcrackerCE.exe": - when: - store: steam steam: @@ -97936,8 +98237,8 @@ Christmas Tale - Visual Novel: installDir: Christmas Tale - Visual Novel: {} launch: - /nw.exe: - - arguments: '--in-process-gpu' + "/nw.exe": + - arguments: "--in-process-gpu" when: - store: steam steam: @@ -97946,7 +98247,7 @@ Christmas Time 2019: installDir: Christmas Time 2019: {} launch: - /ChristmasTime2019.exe: + "/ChristmasTime2019.exe": - when: - bit: 64 os: windows @@ -97957,7 +98258,7 @@ Christmas Tina ‐泡沫冬景‐: installDir: Christmas Tina: {} launch: - /ChristmasTina.exe: + "/ChristmasTina.exe": - when: - os: windows store: steam @@ -97967,7 +98268,7 @@ Christmas Wonderland 2: installDir: Christmas Wonderland 2: {} launch: - /christmas2.exe: + "/christmas2.exe": - when: - store: steam steam: @@ -97976,7 +98277,7 @@ Christmas at Morleyville Mall: installDir: SpookInspectors: {} launch: - /SpookInspectors.exe: + "/SpookInspectors.exe": - when: - os: windows store: steam @@ -97986,7 +98287,7 @@ Christmastry: installDir: Christmastry: {} launch: - /Christmastry.exe: + "/Christmastry.exe": - when: - store: steam steam: @@ -97995,16 +98296,16 @@ Christmastry 2: installDir: Christmastry2: {} launch: - /Christmastry2.exe: + "/Christmastry2.exe": - when: - store: steam steam: id: 697790 -'Chroma : Sexy Hentai Girls': +"Chroma : Sexy Hentai Girls": installDir: chromaSHG: {} launch: - /nw.exe: + "/nw.exe": - when: - store: steam steam: @@ -98013,15 +98314,15 @@ Chroma Blast: installDir: Chroma Blast: {} launch: - /ChromaBlast.exe: + "/ChromaBlast.exe": - when: - os: windows store: steam - /ChromaBlast.x86_64: + "/ChromaBlast.x86_64": - when: - os: linux store: steam - /ChromaBlast_Mac.app/Contents/MacOS/ChromaBlast_Mac: + "/ChromaBlast_Mac.app/Contents/MacOS/ChromaBlast_Mac": - when: - os: mac store: steam @@ -98032,11 +98333,11 @@ Chroma Blast: - save steam: id: 653220 -'Chroma Deluxe : Sexy Hentai Girls': +"Chroma Deluxe : Sexy Hentai Girls": installDir: chromaDeluxeSHG: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -98051,7 +98352,7 @@ Chroma Shift: installDir: Chroma Shift: {} launch: - /ChromaShift.exe: + "/ChromaShift.exe": - when: - bit: 64 os: windows @@ -98060,12 +98361,12 @@ Chroma Shift: id: 860990 Chroma Squad: files: - /chromasquad_Data/savedGames: + "/chromasquad_Data/savedGames": tags: - save when: - os: windows - /AppData/LocalLow/Behold Studios/Chroma Squad/savedGames: + "/AppData/LocalLow/Behold Studios/Chroma Squad/savedGames": tags: - save when: @@ -98075,15 +98376,15 @@ Chroma Squad: installDir: ChromaSquad: {} launch: - /chromasquad.app: + "/chromasquad.app": - when: - os: mac store: steam - /chromasquad.exe: + "/chromasquad.exe": - when: - os: windows store: steam - /chromasquad.x86: + "/chromasquad.x86": - when: - os: linux store: steam @@ -98095,22 +98396,22 @@ Chroma Squad: id: 251130 ChromaGun: files: - /Chromagun.app/Contents/save*.chapp: + "/Chromagun.app/Contents/save*.chapp": tags: - save when: - os: mac - /Chromagun_Data/save*.chapp: + "/Chromagun_Data/save*.chapp": tags: - save when: - os: linux - /chromagun_Data/save*.chapp: + "/chromagun_Data/save*.chapp": tags: - save when: - os: windows - /unity3d/Benjamin Lochmann New Media GmbH/Chromagun/prefs: + "/unity3d/Benjamin Lochmann New Media GmbH/Chromagun/prefs": tags: - config when: @@ -98118,21 +98419,21 @@ ChromaGun: installDir: ChromaGun: {} launch: - /Chromagun.app: + "/Chromagun.app": - when: - os: mac store: steam - /Chromagun.x86: + "/Chromagun.x86": - when: - bit: 32 os: linux store: steam - /Chromagun.x86_64: + "/Chromagun.x86_64": - when: - bit: 64 os: linux store: steam - /chromagun.exe: + "/chromagun.exe": - when: - os: windows store: steam @@ -98146,20 +98447,20 @@ ChromaSquares: installDir: ChromaSquares: {} launch: - /ChromaSquares.app/Contents/MacOS/ChromaSquares: + "/ChromaSquares.app/Contents/MacOS/ChromaSquares": - when: - os: mac store: steam - /ChromaSquares.exe: + "/ChromaSquares.exe": - when: - os: windows store: steam - /ChromaSquares.x86: + "/ChromaSquares.x86": - when: - bit: 32 os: linux store: steam - /ChromaSquares.x86_64: + "/ChromaSquares.x86_64": - when: - bit: 64 os: linux @@ -98170,7 +98471,7 @@ Chromadrome 2: installDir: Chromadrome 2: {} launch: - /Chromadrome2Steam.exe: + "/Chromadrome2Steam.exe": - when: - os: windows store: steam @@ -98180,7 +98481,7 @@ Chromaestro: installDir: Chromaestro: {} launch: - /Chromaestro.exe: + "/Chromaestro.exe": - when: - os: windows store: steam @@ -98190,11 +98491,11 @@ Chromalocity: installDir: Nova Flow: {} launch: - /Nova Flow.exe: + "/Nova Flow.exe": - when: - os: windows store: steam - /run_novaflow.sh: + "/run_novaflow.sh": - when: - os: linux store: steam @@ -98204,26 +98505,26 @@ Chromasia: installDir: Chromasia: {} launch: - /linux32/Chromasia: + "/linux32/Chromasia": - when: - bit: 32 os: linux store: steam - /linux64/Chromasia: + "/linux64/Chromasia": - when: - bit: 64 os: linux store: steam - /mac/Contents/MacOS/Chromasia: + "/mac/Contents/MacOS/Chromasia": - when: - os: mac store: steam - /windows32/Chromasia.exe: + "/windows32/Chromasia.exe": - when: - bit: 32 os: windows store: steam - /windows64/Chromasia.exe: + "/windows64/Chromasia.exe": - when: - bit: 64 os: windows @@ -98234,7 +98535,7 @@ Chromatic: installDir: Chromatic: {} launch: - /Chromatic.exe: + "/Chromatic.exe": - when: - os: windows store: steam @@ -98244,7 +98545,7 @@ Chromatic Aberration: installDir: Chromatic Aberration: {} launch: - /ChromaticAbberation.exe: + "/ChromaticAbberation.exe": - when: - os: windows store: steam @@ -98252,12 +98553,12 @@ Chromatic Aberration: id: 963900 Chrome: files: - /Data: + "/Data": tags: - config when: - os: windows - /Save: + "/Save": tags: - save when: @@ -98265,19 +98566,19 @@ Chrome: installDir: Chrome: {} launch: - /Chrome.exe: + "/Chrome.exe": - when: - store: steam steam: id: 46420 Chrome SpecForce: files: - /Data: + "/Data": tags: - config when: - os: windows - /Save: + "/Save": tags: - save when: @@ -98285,7 +98586,7 @@ Chrome SpecForce: installDir: Chrome Specforce: {} launch: - /SpecForce.exe: + "/SpecForce.exe": - when: - store: steam steam: @@ -98296,7 +98597,7 @@ Chromosome Evil: installDir: Chromosome Evil: {} launch: - /total.exe: + "/total.exe": - when: - os: windows store: steam @@ -98306,34 +98607,34 @@ Chronac: installDir: Chronac: {} launch: - /Chronac.exe: + "/Chronac.exe": - when: - os: windows store: steam steam: id: 1079470 -'Chronicle Keepers: The Dreaming Garden': +"Chronicle Keepers: The Dreaming Garden": installDir: Chronicle Keepers The Dreaming Garden: {} launch: - /ChronicleKeepers_TheDreamingGarden.exe: + "/ChronicleKeepers_TheDreamingGarden.exe": - when: - store: steam steam: id: 377120 Chronicle of Innsmouth: files: - /Saved Games/Chronicle of Innsmouth: + "/Saved Games/Chronicle of Innsmouth": tags: - save when: - os: windows - /Saved Games/Chronicle of Innsmouth/acsetup.cfg: + "/Saved Games/Chronicle of Innsmouth/acsetup.cfg": tags: - config when: - os: windows - /Adventure Game Studio/Chronicle of Innsmouth: + "/Adventure Game Studio/Chronicle of Innsmouth": tags: - config when: @@ -98341,50 +98642,50 @@ Chronicle of Innsmouth: installDir: Chronicle of Innsmouth: {} launch: - /ChronicleOfInnsmouth.exe: + "/ChronicleOfInnsmouth.exe": - when: - os: windows store: steam steam: id: 420180 -'Chronicle of Innsmouth: Mountains of Madness': +"Chronicle of Innsmouth: Mountains of Madness": installDir: Mountains of Madness: {} launch: - /winsetup.exe: + "/winsetup.exe": - when: - os: windows store: steam steam: id: 962700 -'Chronicle: RuneScape Legends': +"Chronicle: RuneScape Legends": installDir: Chronicle: {} launch: - /Chronicle.app: + "/Chronicle.app": - when: - os: mac store: steam - /Chronicle.exe: + "/Chronicle.exe": - when: - os: windows store: steam steam: id: 205890 -'Chronicle: Unit Eight': +"Chronicle: Unit Eight": installDir: Chronicle Unit Eight: {} launch: - /ChronicleUnitEight.app/Contents/MacOS/ChronicleUnitEight: + "/ChronicleUnitEight.app/Contents/MacOS/ChronicleUnitEight": - when: - os: mac store: steam - /ChronicleUnitEight.exe: + "/ChronicleUnitEight.exe": - when: - bit: 64 os: windows store: steam - /ChronicleUnitEight.x86_64: + "/ChronicleUnitEight.x86_64": - when: - bit: 64 os: linux @@ -98395,11 +98696,11 @@ Chronicles of Cyberpunk: installDir: Chronicles of cyberpunk: {} launch: - /Chronicles of cyberpunk.exe: + "/Chronicles of cyberpunk.exe": - when: - os: windows store: steam - /Chronicles of cyberpunk.x86: + "/Chronicles of cyberpunk.x86": - when: - os: linux store: steam @@ -98409,7 +98710,7 @@ Chronicles of Galdurvale: installDir: Chronicles of Galdurvale: {} launch: - /COG.exe: + "/COG.exe": - when: - bit: 64 os: windows @@ -98420,31 +98721,31 @@ Chronicles of Lurra: installDir: Chronicles of Lurra: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam steam: id: 952510 -'Chronicles of Magic: Divided Kingdoms': +"Chronicles of Magic: Divided Kingdoms": installDir: Chronicles of Magic Divided Kingdoms: {} launch: - /ChroniclesofMagic.exe: + "/ChroniclesofMagic.exe": - when: - os: windows store: steam - /ChroniclesofMagic_amd64: + "/ChroniclesofMagic_amd64": - when: - bit: 64 os: linux store: steam - /ChroniclesofMagic_i386: + "/ChroniclesofMagic_i386": - when: - bit: 32 os: linux store: steam - /mac_steam.app/Contents/MacOS/mac_steam: + "/mac_steam.app/Contents/MacOS/mac_steam": - when: - os: mac store: steam @@ -98454,7 +98755,7 @@ Chronicles of Mystery - Secret of the Lost Kingdom: installDir: Chronicles of Mystery - Secret of the Lost Kingdom: {} launch: - /MystLauncher.exe: + "/MystLauncher.exe": - when: - store: steam steam: @@ -98463,19 +98764,19 @@ Chronicles of Mystery - The Legend of the Sacred Treasure: installDir: Chronicles of Mystery - The Legend of the Sacred Treasure: {} launch: - /MystLauncher.exe: + "/MystLauncher.exe": - when: - store: steam steam: id: 837100 Chronicles of Mystery - The Tree of Life: files: - /Chronicles of Mystery - The Tree of Life/game.setup: + "/Chronicles of Mystery - The Tree of Life/game.setup": tags: - config when: - os: windows - /Chronicles of Mystery - The Tree of Life/save*.*: + "/Chronicles of Mystery - The Tree of Life/save*.*": tags: - save when: @@ -98483,19 +98784,19 @@ Chronicles of Mystery - The Tree of Life: installDir: Chronicles of Mystery - The Tree of Life: {} launch: - /ChoM2.exe: + "/ChoM2.exe": - when: - store: steam steam: id: 837090 -'Chronicles of Mystery: The Scorpio Ritual': +"Chronicles of Mystery: The Scorpio Ritual": files: - /Documents/CoM/game.setup: + "/Documents/CoM/game.setup": tags: - config when: - os: windows - /Documents/CoM/save*.*: + "/Documents/CoM/save*.*": tags: - save when: @@ -98503,14 +98804,14 @@ Chronicles of Mystery - The Tree of Life: installDir: Chronicles of Mystery - The Scorpio Ritual: {} launch: - /CoM.exe: + "/CoM.exe": - when: - store: steam steam: id: 34800 Chronicles of Teddy: files: - /FindingTeddy2: + "/FindingTeddy2": tags: - config - save @@ -98519,11 +98820,11 @@ Chronicles of Teddy: installDir: Finding Teddy 2: {} launch: - /Chronicles of Teddy.exe: + "/Chronicles of Teddy.exe": - when: - os: windows store: steam - /FindingTeddy2.app: + "/FindingTeddy2.app": - when: - os: mac store: steam @@ -98531,7 +98832,7 @@ Chronicles of Teddy: id: 341020 Chronicles of Vinland: files: - /Wonderbox Games/Chronicles Of Vinland: + "/Wonderbox Games/Chronicles Of Vinland": tags: - save when: @@ -98539,52 +98840,52 @@ Chronicles of Vinland: installDir: Chronicles of Vinland: {} launch: - /Chronicles of Vinland.app/Contents/MacOS/Chronicles of Vinland: + "/Chronicles of Vinland.app/Contents/MacOS/Chronicles of Vinland": - when: - os: mac store: steam - /Chronicles of Vinland.exe: + "/Chronicles of Vinland.exe": - when: - os: windows store: steam steam: id: 753110 -'Chronicles of a Dark Lord: Episode 1 Tides of Fate Complete': +"Chronicles of a Dark Lord: Episode 1 Tides of Fate Complete": installDir: Chronicles of a Dark Lord Episode 1 Tides of Fate Complete: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam steam: id: 336280 -'Chronicles of a Dark Lord: Episode II War of The Abyss': +"Chronicles of a Dark Lord: Episode II War of The Abyss": installDir: Chronicles of a Dark Lord Episode II War of The Abyss: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam steam: id: 341780 -'Chronicles of a Dark Lord: Rhapsody Clash': +"Chronicles of a Dark Lord: Rhapsody Clash": installDir: Chronicles of a Dark Lord Rhapsody Clash: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam steam: id: 418310 -'Chronicles of a Dark Lord: Tides of Fate Remastered': +"Chronicles of a Dark Lord: Tides of Fate Remastered": installDir: Chronicles of a Dark Lord Tides of Fate Remastered: {} launch: - /Game.exe: - - arguments: '--in-process-gpu' + "/Game.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam @@ -98594,7 +98895,7 @@ Chronicles of the Witches and Warlocks: installDir: ChroniclesOfWAW: {} launch: - /ChroniclesOfWAW.exe: + "/ChroniclesOfWAW.exe": - when: - os: windows store: steam @@ -98602,17 +98903,17 @@ Chronicles of the Witches and Warlocks: id: 396850 Chronicon: files: - /.config/Chronicon/save: + "/.config/Chronicon/save": tags: - save when: - os: linux - /Chronicon: + "/Chronicon": tags: - config when: - os: windows - /Chronicon/save: + "/Chronicon/save": tags: - save when: @@ -98624,11 +98925,11 @@ Chronicon: installDir: Chronicon: {} launch: - /Chronicon.exe: + "/Chronicon.exe": - when: - os: windows store: steam - /run.sh: + "/run.sh": - when: - os: linux store: steam @@ -98638,15 +98939,15 @@ Chronicon Apocalyptica: installDir: Chronicon Apocalyptica: {} launch: - /Chronicon Apocalyptica.app/Contents/MacOS/Chronicon Apocalyptica: + "/Chronicon Apocalyptica.app/Contents/MacOS/Chronicon Apocalyptica": - when: - os: mac store: steam - /ChroniconApocalyptica: + "/ChroniconApocalyptica": - when: - os: linux store: steam - /ChroniconApocalyptica.exe: + "/ChroniconApocalyptica.exe": - when: - os: windows store: steam @@ -98656,11 +98957,11 @@ Chrono: installDir: chrono: {} launch: - /CHRONO_MAC.app: + "/CHRONO_MAC.app": - when: - os: mac store: steam - /CHRONO_WINDOWS/CHRONO_WINDOWS.exe: + "/CHRONO_WINDOWS/CHRONO_WINDOWS.exe": - when: - os: windows store: steam @@ -98671,9 +98972,9 @@ Chrono Ark: Chrono Ark: {} steam: id: 1188930 -'Chrono Cross: The Radical Dreamers Edition': +"Chrono Cross: The Radical Dreamers Edition": files: - /My Games/CHRONO CROSS THE RADICAL DREAMERS EDITION/Steam/: + "/My Games/CHRONO CROSS THE RADICAL DREAMERS EDITION/Steam/": tags: - config - save @@ -98682,7 +98983,7 @@ Chrono Ark: installDir: CHRONO CROSS THE RADICAL DREAMERS EDITION: {} launch: - /CHRONOCROSS_LAUNCHER.exe: + "/CHRONOCROSS_LAUNCHER.exe": - when: - os: windows store: steam @@ -98692,7 +98993,7 @@ Chrono Ghost: installDir: Chrono Ghost: {} launch: - /Chrono Ghost.exe: + "/Chrono Ghost.exe": - when: - os: windows store: steam @@ -98702,15 +99003,15 @@ Chrono Project: installDir: Chrono Project: {} launch: - /ChronoProject.app: + "/ChronoProject.app": - when: - os: mac store: steam - /ChronoProject.exe: + "/ChronoProject.exe": - when: - os: windows store: steam - /ChronoProject.x86_64: + "/ChronoProject.x86_64": - when: - os: linux store: steam @@ -98718,7 +99019,7 @@ Chrono Project: id: 893810 Chrono Trigger: files: - /My Games/Chrono Trigger: + "/My Games/Chrono Trigger": tags: - config - save @@ -98727,17 +99028,17 @@ Chrono Trigger: installDir: Chrono Trigger: {} launch: - /Chrono Trigger.exe: + "/Chrono Trigger.exe": - when: - os: windows store: steam steam: id: 613830 -Chrono's Arena: +"Chrono's Arena": installDir: - Chrono's Arena: {} + "Chrono's Arena": {} launch: - /Chrono's Arena.exe: + "/Chrono's Arena.exe": - when: - store: steam steam: @@ -98746,7 +99047,7 @@ ChronoBreach: installDir: ChronoBreach: {} launch: - /ChronoBreach.exe: + "/ChronoBreach.exe": - when: - os: windows store: steam @@ -98754,12 +99055,12 @@ ChronoBreach: id: 971210 ChronoClock: files: - /save/save*.dat: + "/save/save*.dat": tags: - save when: - os: windows - /save/system.dat: + "/save/system.dat": tags: - config - save @@ -98768,12 +99069,12 @@ ChronoClock: installDir: ChronoClock: {} launch: - /cmvs32.exe: + "/cmvs32.exe": - when: - bit: 32 os: windows store: steam - /cmvs64.exe: + "/cmvs64.exe": - when: - bit: 64 os: windows @@ -98784,7 +99085,7 @@ Chronoclysm: installDir: Chronoclysm: {} launch: - /Chronoclysm.exe: + "/Chronoclysm.exe": - when: - os: windows store: steam @@ -98792,7 +99093,7 @@ Chronoclysm: id: 368690 Chronology: files: - /RFSaveData*.rfo: + "/RFSaveData*.rfo": tags: - save when: @@ -98802,7 +99103,7 @@ Chronology: installDir: Chronology: {} launch: - /Chronology.exe: + "/Chronology.exe": - when: - os: windows store: steam @@ -98810,17 +99111,17 @@ Chronology: id: 269330 Chronomaster: files: - /GAME.OPT: + "/GAME.OPT": tags: - config when: - os: dos - /QUIKSAVE.DAT: + "/QUIKSAVE.DAT": tags: - save when: - os: dos - /SAVE.0**: + "/SAVE.0**": tags: - save when: @@ -98830,28 +99131,28 @@ Chronomaster: installDir: Chronomaster: {} launch: - /DOSBox/dosbox.app/Contents/MacOS/DOSBox: - - arguments: '-conf \"dosbox_chronomaster.conf\"' + "/DOSBox/dosbox.app/Contents/MacOS/DOSBox": + - arguments: "-conf \\\"dosbox_chronomaster.conf\\\"" when: - os: mac store: steam - - arguments: '-conf \"Demo/dosbox_chronomaster_demo.conf\"' + - arguments: "-conf \\\"Demo/dosbox_chronomaster_demo.conf\\\"" when: - os: mac store: steam - /PlayChronomaster.bat: + "/PlayChronomaster.bat": - when: - os: windows store: steam - /PlayChronomaster.sh: + "/PlayChronomaster.sh": - when: - os: linux store: steam - /PlayChronomasterDemo.bat: + "/PlayChronomasterDemo.bat": - when: - os: windows store: steam - /PlayChronomasterDemo.sh: + "/PlayChronomasterDemo.sh": - when: - os: linux store: steam @@ -98861,7 +99162,7 @@ Chronon: installDir: Chronon: {} launch: - /Chronon.exe: + "/Chronon.exe": - when: - os: windows store: steam @@ -98871,7 +99172,7 @@ Chronophobia: installDir: Chronophobia: {} launch: - /Chronophobia.exe: + "/Chronophobia.exe": - when: - os: windows store: steam @@ -98881,16 +99182,16 @@ Chronoraptor: installDir: Chronoraptor: {} launch: - /ChronoRaptor.exe: + "/ChronoRaptor.exe": - when: - bit: 64 os: windows store: steam steam: id: 1049000 -'Chronos: Before the Ashes': +"Chronos: Before the Ashes": files: - /Chronos/Saved/SaveGames: + "/Chronos/Saved/SaveGames": tags: - save when: @@ -98900,28 +99201,28 @@ Chronoraptor: installDir: Chronos: {} launch: - /Chronos.exe: + "/Chronos.exe": - when: - os: windows store: steam steam: id: 967390 -'Chronostorm: Siberian Border': +"Chronostorm: Siberian Border": installDir: Chronostorm Siberian Border: {} launch: - /Bin/Chronostorm.exe: + "/Bin/Chronostorm.exe": - when: - os: windows store: steam - workingDir: /Bin + workingDir: "/Bin" steam: id: 361890 Chronus Arc: installDir: Chronus Arc: {} launch: - /ChronusArc.exe: + "/ChronusArc.exe": - when: - store: steam steam: @@ -98933,11 +99234,11 @@ ChuSingura46+1 S: installDir: ChuSingura46+1: {} launch: - /ChuSinGura46+1.app/Contents/MacOS/ChuSinGura46+1: + "/ChuSinGura46+1.app/Contents/MacOS/ChuSinGura46+1": - when: - os: mac store: steam - /ChuSinGura46+1.exe: + "/ChuSinGura46+1.exe": - when: - os: windows store: steam @@ -98945,7 +99246,7 @@ ChuSingura46+1 S: id: 464780 Chuchel: files: - /Amanita-Design.CHUCHEL: + "/Amanita-Design.CHUCHEL": tags: - save when: @@ -98955,11 +99256,11 @@ Chuchel: installDir: CHUCHEL: {} launch: - /Chuchel.app: + "/Chuchel.app": - when: - os: mac store: steam - /Chuchel.exe: + "/Chuchel.exe": - when: - os: windows store: steam @@ -98969,25 +99270,25 @@ Chuck: installDir: CHUCK: {} launch: - /chuck.exe: + "/chuck.exe": - when: - os: windows store: steam steam: id: 1051710 -Chuck's Challenge 3D: +"Chuck's Challenge 3D": installDir: - Chuck's Challenge 3D 2020: {} + "Chuck's Challenge 3D 2020": {} launch: - /ChucksChallenge3D-Full.app: + "/ChucksChallenge3D-Full.app": - when: - os: mac store: steam - /ChucksChallenge3D-Full.exe: + "/ChucksChallenge3D-Full.exe": - when: - os: windows store: steam - /ChucksChallenge3D-Full.x86: + "/ChucksChallenge3D-Full.x86": - when: - os: linux store: steam @@ -98997,11 +99298,11 @@ Chuckie Egg 2017: installDir: Chuckie Egg 2017: {} launch: - /CE2017.app: + "/CE2017.app": - when: - os: mac store: steam - /CE2017.exe: + "/CE2017.exe": - when: - os: windows store: steam @@ -99011,11 +99312,11 @@ Chuckie Egg 2017 Challenges: installDir: Chuckie Egg 2017 Challenges: {} launch: - /CEC2017.app: + "/CEC2017.app": - when: - os: mac store: steam - /CEC2017.exe: + "/CEC2017.exe": - when: - os: windows store: steam @@ -99025,7 +99326,7 @@ Chucky: installDir: Chucky: {} launch: - /Chucky.exe: + "/Chucky.exe": - when: - os: windows store: steam @@ -99045,7 +99346,7 @@ Chupacabra: installDir: Chupacabra: {} launch: - /Chupacabra.exe: + "/Chupacabra.exe": - when: - os: windows store: steam @@ -99060,11 +99361,11 @@ Church Era: installDir: Church Era: {} launch: - /Church Era.exe: + "/Church Era.exe": - when: - os: windows store: steam - /Church_Era.app: + "/Church_Era.app": - when: - os: mac store: steam @@ -99074,43 +99375,43 @@ Churchgoers: installDir: Churchgoers: {} launch: - /Churchgoers.app/Contents/MacOS/Churchgoers: + "/Churchgoers.app/Contents/MacOS/Churchgoers": - when: - os: mac store: steam - /Churchgoers.exe: + "/Churchgoers.exe": - when: - os: windows store: steam steam: id: 1067390 -'Chuusotsu! 1.5th Graduation: The Moving Castle': +"Chuusotsu! 1.5th Graduation: The Moving Castle": installDir: Chuusotsu! 1.5th Graduation The Moving Castle: {} launch: - /Chuusotsu! 1.5th Graduation.exe: + "/Chuusotsu! 1.5th Graduation.exe": - when: - store: steam steam: id: 1148930 -'Chuusotsu! 1st Graduation: Time After Time': +"Chuusotsu! 1st Graduation: Time After Time": installDir: Chuusotsu - 1st Graduation Time After Time: {} launch: - /Chuusotsu! 1st graduation.exe: + "/Chuusotsu! 1st graduation.exe": - when: - store: steam steam: id: 630870 Chuzzle: files: - /steamapps/common/Chuzzle Deluxe/Profiles: + "/steamapps/common/Chuzzle Deluxe/Profiles": tags: - config - save when: - store: steam - /PopCap Games/Chuzzle/Profiles: + "/PopCap Games/Chuzzle/Profiles": tags: - config - save @@ -99119,11 +99420,11 @@ Chuzzle: installDir: Chuzzle Deluxe: {} launch: - /Chuzzle Deluxe.app: + "/Chuzzle Deluxe.app": - when: - os: mac store: steam - /Chuzzle.exe: + "/Chuzzle.exe": - when: - os: windows store: steam @@ -99133,11 +99434,11 @@ Cibele: installDir: Cibele: {} launch: - /Cibele.app: + "/Cibele.app": - when: - os: mac store: steam - /Cibele/Cibele.exe: + "/Cibele/Cibele.exe": - when: - os: windows store: steam @@ -99147,20 +99448,20 @@ Cibos: installDir: CIBOS: {} launch: - /Cibos.app: + "/Cibos.app": - when: - os: mac store: steam - /Cibos.exe: + "/Cibos.exe": - when: - os: windows store: steam - /Cibos.x86: + "/Cibos.x86": - when: - bit: 32 os: linux store: steam - /Cibos.x86_64: + "/Cibos.x86_64": - when: - bit: 64 os: linux @@ -99174,21 +99475,21 @@ Cicadas - The IQA Edition: installDir: cicadas_iqa: {} launch: - /cicadas.exe: + "/cicadas.exe": - when: - os: windows store: steam steam: id: 846660 -'Ciconia When They Cry - Phase 1: For You, the Replaceable Ones': +"Ciconia When They Cry - Phase 1: For You, the Replaceable Ones": installDir: Ciconia When They Cry Phase 1: {} launch: - /CiconiaPhase1.app: + "/CiconiaPhase1.app": - when: - os: mac store: steam - /ciconia_phase1.exe: + "/ciconia_phase1.exe": - when: - os: windows store: steam @@ -99198,19 +99499,19 @@ Ciel Fledge: installDir: Ciel Fledge: {} launch: - /Game/CielFledge: + "/Game/CielFledge": - when: - os: linux store: steam - /Game/CielFledge.exe: + "/Game/CielFledge.exe": - when: - os: windows store: steam steam: id: 738270 -'Ciel Nosurge: Requiem for a Lost Star DX': +"Ciel Nosurge: Requiem for a Lost Star DX": files: - /KoeiTecmo/CielnosurgeDX/SaveData/data_sys.bin: + "/KoeiTecmo/CielnosurgeDX/SaveData/data_sys.bin": tags: - save when: @@ -99218,14 +99519,14 @@ Ciel Fledge: installDir: CielnosurgeDX: {} launch: - /CielnosurgeDX_Launcher.exe: + "/CielnosurgeDX_Launcher.exe": - when: - store: steam steam: id: 1477480 Cinderella Escape!: files: - /savedata/SaveData*.dat: + "/savedata/SaveData*.dat": tags: - save when: @@ -99233,11 +99534,11 @@ Cinderella Escape!: installDir: Cinderella Escape! R12: {} launch: - /CinderellaEscape!_R12.exe: + "/CinderellaEscape!_R12.exe": - when: - os: windows store: steam - /CinderellaEscape!_R12_Mac.app/Contents/MacOS/CinderellaEscape!_R12_Mac: + "/CinderellaEscape!_R12_Mac.app/Contents/MacOS/CinderellaEscape!_R12_Mac": - when: - os: mac store: steam @@ -99249,7 +99550,7 @@ Cinderella Escape!: id: 408000 Cinderella Escape!! Revenge: files: - /savedata: + "/savedata": tags: - save when: @@ -99257,7 +99558,7 @@ Cinderella Escape!! Revenge: installDir: Cinderella Escape 2 Revenge: {} launch: - /CE2.exe: + "/CE2.exe": - when: - os: windows store: steam @@ -99269,22 +99570,22 @@ Cinderella Escape!! Revenge: id: 710030 Cinderella Phenomenon: files: - /Cinderella Phenomenon - OtomeVisual Novel/game/saves/*.save: + "/Cinderella Phenomenon - OtomeVisual Novel/game/saves/*.save": tags: - save when: - store: steam - /Cinderella Phenomenon - OtomeVisual Novel/game/saves/persistent: + "/Cinderella Phenomenon - OtomeVisual Novel/game/saves/persistent": tags: - config when: - store: steam - /RenPy/CinderellaPhenomenon-1479011247/*.save: + "/RenPy/CinderellaPhenomenon-1479011247/*.save": tags: - save when: - os: windows - /RenPy/CinderellaPhenomenon-1479011247/persistent: + "/RenPy/CinderellaPhenomenon-1479011247/persistent": tags: - config when: @@ -99292,15 +99593,15 @@ Cinderella Phenomenon: installDir: Cinderella Phenomenon - OtomeVisual Novel: {} launch: - /CinderellaPhenomenon.app/Contents/MacOS/CinderellaPhenomenon: + "/CinderellaPhenomenon.app/Contents/MacOS/CinderellaPhenomenon": - when: - os: mac store: steam - /CinderellaPhenomenon.exe: + "/CinderellaPhenomenon.exe": - when: - os: windows store: steam - /CinderellaPhenomenon.sh: + "/CinderellaPhenomenon.sh": - when: - os: linux store: steam @@ -99313,7 +99614,7 @@ Cinderella VR: id: 935720 Cinders: files: - /Cinders: + "/Cinders": tags: - save when: @@ -99323,11 +99624,11 @@ Cinders: installDir: Cinders: {} launch: - /Cinders.app/Contents/MacOS/Mac_Runner: + "/Cinders.app/Contents/MacOS/Mac_Runner": - when: - os: mac store: steam - /Cinders.exe: + "/Cinders.exe": - when: - os: windows store: steam @@ -99337,11 +99638,11 @@ Cine Game: installDir: CineTracer: {} launch: - /CineTracer.app: + "/CineTracer.app": - when: - os: mac store: steam - /CineTracer.exe: + "/CineTracer.exe": - when: - bit: 64 os: windows @@ -99352,7 +99653,7 @@ Cineris Somnia: installDir: CINERIS SOMNIA: {} launch: - /Cineris Somnia.exe: + "/Cineris Somnia.exe": - when: - os: windows store: steam @@ -99360,12 +99661,12 @@ Cineris Somnia: id: 752470 Cions of Vega: files: - /CionsOfVega/Saved/Config/WindowsNoEditor: + "/CionsOfVega/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /CionsOfVega/Saved/SaveGames: + "/CionsOfVega/Saved/SaveGames": tags: - save when: @@ -99373,7 +99674,7 @@ Cions of Vega: installDir: Cions of Vega: {} launch: - /CionsOfVega.exe: + "/CionsOfVega.exe": - when: - bit: 64 os: windows @@ -99382,12 +99683,12 @@ Cions of Vega: id: 1577240 Circa Infinity: files: - /CircaInfinity/*.sav: + "/CircaInfinity/*.sav": tags: - save when: - os: windows - /CircaInfinity: + "/CircaInfinity": tags: - save when: @@ -99395,15 +99696,15 @@ Circa Infinity: installDir: Circa Infinity: {} launch: - /CircaInfinity.app: + "/CircaInfinity.app": - when: - os: mac store: steam - /CircaInfinity.exe: + "/CircaInfinity.exe": - when: - os: windows store: steam - /run.sh: + "/run.sh": - when: - os: linux store: steam @@ -99413,11 +99714,11 @@ Circadian City: installDir: Circadian City: {} launch: - /Circadian City.app: + "/Circadian City.app": - when: - os: mac store: steam - /Circadian_City.exe: + "/Circadian_City.exe": - when: - os: windows store: steam @@ -99425,7 +99726,7 @@ Circadian City: id: 1045430 Circadian Dice: files: - /Circadian_Dice: + "/Circadian_Dice": tags: - save when: @@ -99434,7 +99735,7 @@ Circle: installDir: Circle: {} launch: - /Circle.exe: + "/Circle.exe": - when: - os: windows store: steam @@ -99454,21 +99755,21 @@ Circle Empires: installDir: Circle Empires: {} launch: - /Circle Empires.exe: + "/Circle Empires.exe": - when: - os: windows store: steam - /Circle Empires.x86: + "/Circle Empires.x86": - when: - bit: 32 os: linux store: steam - /Circle Empires.x86_64: + "/Circle Empires.x86_64": - when: - bit: 64 os: linux store: steam - /Contents/MacOS/ce_steam_mac: + "/Contents/MacOS/ce_steam_mac": - when: - os: mac store: steam @@ -99478,7 +99779,7 @@ Circle Empires Rivals: installDir: Circle Empires Multiplayer: {} launch: - /Circle Empires Rivals.exe: + "/Circle Empires Rivals.exe": - when: - os: windows store: steam @@ -99491,7 +99792,7 @@ Circle Rally Party: installDir: Circle Rally Party: {} launch: - /CircleRallyParty.exe: + "/CircleRallyParty.exe": - when: - os: windows store: steam @@ -99501,7 +99802,7 @@ Circle UP: installDir: Circle Up: {} launch: - /Circle Up/Circle Up.exe: + "/Circle Up/Circle Up.exe": - when: - store: steam steam: @@ -99510,7 +99811,7 @@ Circle of Life: installDir: Bacterium: {} launch: - /Bacterium.exe: + "/Bacterium.exe": - when: - bit: 64 os: windows @@ -99521,26 +99822,26 @@ Circle of Sumo: installDir: Circle of Sumo: {} launch: - /Circle of Sumo.app: + "/Circle of Sumo.app": - when: - os: mac store: steam - /Circle of Sumo.exe: + "/Circle of Sumo.exe": - when: - bit: 64 os: windows store: steam steam: id: 961850 -'Circle of Sumo: Online Rumble!': +"Circle of Sumo: Online Rumble!": installDir: Circle of Sumo Online Rumble!: {} launch: - /Circle of Sumo - Online Rumble.app: + "/Circle of Sumo - Online Rumble.app": - when: - os: mac store: steam - /Circle of Sumo - Online Rumble.exe: + "/Circle of Sumo - Online Rumble.exe": - when: - bit: 64 os: windows @@ -99554,11 +99855,11 @@ Circles: installDir: Circles: {} launch: - /Circles.app: + "/Circles.app": - when: - os: mac store: steam - /Circles.exe: + "/Circles.exe": - when: - os: windows store: steam @@ -99568,7 +99869,7 @@ Circles of Hell: installDir: Circles of hell: {} launch: - /Circles of hell.exe: + "/Circles of hell.exe": - when: - store: steam steam: @@ -99577,15 +99878,15 @@ Circuit Breakers: installDir: Circuit Breakers: {} launch: - /Circuit Breakers.app: + "/Circuit Breakers.app": - when: - os: mac store: steam - /CircuitBreakers_Master: + "/CircuitBreakers_Master": - when: - os: linux store: steam - /circuitbreakers.exe: + "/circuitbreakers.exe": - when: - os: windows store: steam @@ -99595,11 +99896,11 @@ Circuit Dude: installDir: Circuit Dude: {} launch: - /CircuitDude.app: + "/CircuitDude.app": - when: - os: mac store: steam - /CircuitDude.exe: + "/CircuitDude.exe": - when: - os: windows store: steam @@ -99614,7 +99915,7 @@ Circuit Superstars: installDir: Circuit Superstars: {} launch: - /circuit-superstars.exe: + "/circuit-superstars.exe": - when: - store: steam steam: @@ -99623,7 +99924,7 @@ Circuit Warz: installDir: Circuit Warz: {} launch: - /Circuit Warz.exe: + "/Circuit Warz.exe": - when: - os: windows store: steam @@ -99633,7 +99934,7 @@ Circuitous: installDir: Circuitous: {} launch: - /Circuitous.exe: + "/Circuitous.exe": - when: - os: windows store: steam @@ -99641,7 +99942,7 @@ Circuitous: id: 483490 Circuits: files: - '"~/.config/unity3d/Digital Tentacle S.L./Circuits/prefs"': + "\"~/.config/unity3d/Digital Tentacle S.L./Circuits/prefs\"": tags: - save when: @@ -99649,27 +99950,27 @@ Circuits: installDir: Circuits: {} launch: - /Circuits.app: + "/Circuits.app": - when: - os: mac store: steam - /Circuits.exe: + "/Circuits.exe": - when: - os: windows store: steam - /Circuits.x86: + "/Circuits.x86": - when: - os: linux store: steam - /Composer/Composer.app: + "/Composer/Composer.app": - when: - os: mac store: steam - /Composer/Composer.exe: + "/Composer/Composer.exe": - when: - os: windows store: steam - /Composer/Composer.x86: + "/Composer/Composer.x86": - when: - os: linux store: steam @@ -99683,20 +99984,20 @@ Circularity: installDir: Circularity: {} launch: - /Circularity.app: + "/Circularity.app": - when: - os: mac store: steam - /Circularity.exe: + "/Circularity.exe": - when: - os: windows store: steam - /Circularity.x86: + "/Circularity.x86": - when: - bit: 32 os: linux store: steam - /Circularity.x86_64: + "/Circularity.x86_64": - when: - bit: 64 os: linux @@ -99707,22 +100008,22 @@ Circus Electrique: installDir: CircusElectrique: {} launch: - /CircusElectrique.exe: + "/CircusElectrique.exe": - when: - bit: 64 os: windows store: steam steam: id: 1666250 -Cirno's Perfect Summer Vacation: +"Cirno's Perfect Summer Vacation": installDir: - Cirno's Perfect Summer Vacation: {} + "Cirno's Perfect Summer Vacation": {} launch: - /CirnosPerfectSummer/CPS.app: + "/CirnosPerfectSummer/CPS.app": - when: - os: mac store: steam - /CirnosPerfectSummer/CPS.exe: + "/CirnosPerfectSummer/CPS.exe": - when: - os: windows store: steam @@ -99740,33 +100041,33 @@ Citadale - The Ancestral Strain: installDir: Citadale - The Ancestral Strain: {} launch: - /linux64/Citadale4: + "/linux64/Citadale4": - when: - os: linux store: steam - /mac64/Citadale4.app: + "/mac64/Citadale4.app": - when: - os: mac store: steam - /win64/Citadale4.exe: + "/win64/Citadale4.exe": - when: - os: windows store: steam steam: id: 963170 -'Citadale: The Legends Trilogy': +"Citadale: The Legends Trilogy": installDir: Citadale - The Legends Trilogy: {} launch: - /linux64/CitadaleTrilogy: + "/linux64/CitadaleTrilogy": - when: - os: linux store: steam - /mac64/CitadaleTrilogy.app: + "/mac64/CitadaleTrilogy.app": - when: - os: mac store: steam - /win64/CitadaleTrilogy.exe: + "/win64/CitadaleTrilogy.exe": - when: - os: windows store: steam @@ -99776,7 +100077,7 @@ Citadel: installDir: Citadel: {} launch: - /Citadel.exe: + "/Citadel.exe": - when: - store: steam steam: @@ -99785,20 +100086,20 @@ Citadel 1986: installDir: Citadel 1986: {} launch: - /Citadel1986.exe: + "/Citadel1986.exe": - when: - os: windows store: steam steam: id: 510830 -'Citadel: Forged with Fire': +"Citadel: Forged with Fire": files: - /Citadel/Saved/Config/WindowsNoEditor: + "/Citadel/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /Citadel/Saved/SaveGames: + "/Citadel/Saved/SaveGames": tags: - save when: @@ -99806,7 +100107,7 @@ Citadel 1986: installDir: Citadel: {} launch: - /Citadel.exe: + "/Citadel.exe": - when: - os: windows store: steam @@ -99816,7 +100117,7 @@ Citadels: installDir: Citadels: {} launch: - /bin/release_bin90dx9x86/citadels.exe: + "/bin/release_bin90dx9x86/citadels.exe": - when: - os: windows store: steam @@ -99826,11 +100127,11 @@ Citalis: installDir: Citalis: {} launch: - /Citalis.app: + "/Citalis.app": - when: - os: mac store: steam - /Citalis.exe: + "/Citalis.exe": - when: - os: windows store: steam @@ -99840,7 +100141,7 @@ Cities XL: installDir: Cities XL: {} launch: - /runme.exe: + "/runme.exe": - when: - store: steam steam: @@ -99849,7 +100150,7 @@ Cities XL 2011: installDir: Cities XL 2011: {} launch: - /CitiesXL_2011.exe: + "/CitiesXL_2011.exe": - when: - store: steam steam: @@ -99858,14 +100159,14 @@ Cities XL 2012: installDir: Cities XL 2012: {} launch: - /CitiesXL_2012.exe: + "/CitiesXL_2012.exe": - when: - store: steam steam: id: 201760 Cities XL Platinum: files: - /Monte Cristo/Cities XL Platinum: + "/Monte Cristo/Cities XL Platinum": tags: - save when: @@ -99873,7 +100174,7 @@ Cities XL Platinum: installDir: Cities XL Platinum: {} launch: - /CitiesXL_Platinum.exe: + "/CitiesXL_Platinum.exe": - when: - store: steam steam: @@ -99882,26 +100183,26 @@ Cities XXL: installDir: Cities XXL: {} launch: - /CitiesXXL.exe: + "/CitiesXXL.exe": - when: - store: steam steam: id: 313010 Cities in Motion: files: - /Library/Application Support/Cities in Motion: + "/Library/Application Support/Cities in Motion": tags: - config - save when: - os: mac - /Cities In Motion: + "/Cities In Motion": tags: - config - save when: - os: windows - /Cities In Motion: + "/Cities In Motion": tags: - config - save @@ -99911,20 +100212,20 @@ Cities in Motion: id: 1437043994 id: gogExtra: - - 1437047329 - 1437046838 + - 1437047329 installDir: Cities In Motion: {} launch: - /Cities In Motion.app: + "/Cities In Motion.app": - when: - os: mac store: steam - /Cities In Motion.bin: + "/Cities In Motion.bin": - when: - os: linux store: steam - /Cities In Motion.exe: + "/Cities In Motion.exe": - when: - os: windows store: steam @@ -99932,23 +100233,23 @@ Cities in Motion: id: 73010 Cities in Motion 2: files: - /.Library/Caches/unity.Colossal Order.Cities in Motion 2/Saves: + "/.Library/Caches/unity.Colossal Order.Cities in Motion 2/Saves": tags: - save when: - os: mac - /.config/unity3d/Colossal Order/Cities in Motion 2: + "/.config/unity3d/Colossal Order/Cities in Motion 2": tags: - config - save when: - os: linux - /Preferences/unity.Colossal Order.Cities in Motion 2.plist: + "/Preferences/unity.Colossal Order.Cities in Motion 2.plist": tags: - config when: - os: mac - /userdata//225420: + "/userdata//225420": tags: - save when: @@ -99961,15 +100262,15 @@ Cities in Motion 2: installDir: Cities in Motion 2: {} launch: - /CIM2.exe: + "/CIM2.exe": - when: - os: windows store: steam - /Cities in Motion 2: + "/Cities in Motion 2": - when: - os: linux store: steam - /Cities in Motion 2.app/Contents/MacOS/Cities in Motion 2: + "/Cities in Motion 2.app/Contents/MacOS/Cities in Motion 2": - when: - os: mac store: steam @@ -99979,34 +100280,34 @@ Cities in Motion 2: - config steam: id: 225420 -'Cities: Skylines': +"Cities: Skylines": files: - /Library/Application Support/Colossal Order/Cities_Skylines/Saves: + "/Library/Application Support/Colossal Order/Cities_Skylines/Saves": tags: - save when: - os: mac - /Library/Application Support/Colossal Order/Cities_Skylines/gameSettings.cgs: + "/Library/Application Support/Colossal Order/Cities_Skylines/gameSettings.cgs": tags: - config when: - os: mac - /Colossal Order/Cities_Skylines/Saves: + "/Colossal Order/Cities_Skylines/Saves": tags: - save when: - os: windows - /Colossal Order/Cities_Skylines/gameSettings.cgs: + "/Colossal Order/Cities_Skylines/gameSettings.cgs": tags: - config when: - os: windows - /Colossal Order/Cities_Skylines/Saves: + "/Colossal Order/Cities_Skylines/Saves": tags: - save when: - os: linux - /Colossal Order/Cities_Skylines/gameSettings.cgs: + "/Colossal Order/Cities_Skylines/gameSettings.cgs": tags: - config when: @@ -100074,9 +100375,9 @@ Cities in Motion 2: - 2144483 - 2148900 - 2148901 + - 2148902 - 2148903 - 2148904 - - 2148902 - 2224690 - 2224691 - 2225940 @@ -100090,30 +100391,30 @@ Cities in Motion 2: installDir: Cities_Skylines: {} launch: - /Cities.app/Contents/Launcher/dowser: + "/Cities.app/Contents/Launcher/dowser": - when: - os: mac store: steam - /dowser: + "/dowser": - when: - bit: 64 os: linux store: steam - /dowser.exe: + "/dowser.exe": - when: - os: windows store: steam steam: id: 255710 -'Cities: Skylines II': +"Cities: Skylines II": files: - /AppData/LocalLow/Colossal Order/Cities Skylines II: + "/AppData/LocalLow/Colossal Order/Cities Skylines II": tags: - save when: - os: windows store: microsoft - /AppData/LocalLow/Colossal Order/Cities Skylines II/Saves: + "/AppData/LocalLow/Colossal Order/Cities Skylines II/Saves": tags: - save when: @@ -100125,7 +100426,7 @@ CitiesCorp Concept - Build Everything on Your Own: installDir: CitiesCorp Concept - Build Everything on Your Own: {} launch: - /CitiesCorp.v.0.83_2016_04_27_ea_releasepatched.exe: + "/CitiesCorp.v.0.83_2016_04_27_ea_releasepatched.exe": - when: - bit: 64 os: windows @@ -100134,17 +100435,17 @@ CitiesCorp Concept - Build Everything on Your Own: id: 446010 Citizen Sleeper: files: - /AppData/LocalLow/Jump Over the Age/Citizen Sleeper: + "/AppData/LocalLow/Jump Over the Age/Citizen Sleeper": tags: - save when: - os: windows - /Library/Application Support/Jump Over the Age/Citizen Sleeper or /Library/Application Support/com.JumpOvertheAge.CitizenSleeper: + "/Library/Application Support/Jump Over the Age/Citizen Sleeper or /Library/Application Support/com.JumpOvertheAge.CitizenSleeper": tags: - save when: - os: mac - /Packages/SurpriseAttackPtyLtd.CitizenSleeper_8k24hnfn3vvj0/SystemAppData/wgs: + "/Packages/SurpriseAttackPtyLtd.CitizenSleeper_8k24hnfn3vvj0/SystemAppData/wgs": tags: - save when: @@ -100155,11 +100456,11 @@ Citizen Sleeper: installDir: Citizen Sleeper: {} launch: - /Citizen Sleeper.app: + "/Citizen Sleeper.app": - when: - os: mac store: steam - /Citizen Sleeper.exe: + "/Citizen Sleeper.exe": - when: - os: windows store: steam @@ -100169,15 +100470,15 @@ Citizen of Rome - Dynasty Ascendant: installDir: Citizen of Rome - Dynasty Ascendant: {} launch: - /Citizen of Rome - Dynasty Ascendant.app: + "/Citizen of Rome - Dynasty Ascendant.app": - when: - os: mac store: steam - /Citizen of Rome - Dynasty Ascendant.exe: + "/Citizen of Rome - Dynasty Ascendant.exe": - when: - os: windows store: steam - /mydynasty: + "/mydynasty": - when: - os: linux store: steam @@ -100185,22 +100486,22 @@ Citizen of Rome - Dynasty Ascendant: id: 1063790 Citizens of Earth: files: - /Citizens of Earth/config: + "/Citizens of Earth/config": tags: - config when: - os: windows - /userdata//258910/remote: + "/userdata//258910/remote": tags: - save when: - store: steam - /Citizens of Earth/SaveData: + "/Citizens of Earth/SaveData": tags: - save when: - os: windows - /Citizens of Earth/config.ini: + "/Citizens of Earth/config.ini": tags: - config when: @@ -100208,14 +100509,14 @@ Citizens of Earth: installDir: Citizens of Earth: {} launch: - /CitizensOfEarth.exe: + "/CitizensOfEarth.exe": - when: - store: steam steam: id: 258910 Citizens of Space: files: - /steamapps/common/Citizens of Space/config/config.ini: + "/steamapps/common/Citizens of Space/config/config.ini": tags: - config when: @@ -100224,16 +100525,16 @@ Citizens of Space: installDir: Citizens of Space: {} launch: - /Citizens of Space.exe: + "/Citizens of Space.exe": - when: - store: steam steam: id: 1016760 -'Citizens: Far Lands': +"Citizens: Far Lands": installDir: Citizens: {} launch: - /Citizens.exe: + "/Citizens.exe": - when: - os: windows store: steam @@ -100243,15 +100544,15 @@ Citrouille: installDir: Citrouille: {} launch: - /Citrouille: + "/Citrouille": - when: - os: linux store: steam - /Citrouille.app: + "/Citrouille.app": - when: - os: mac store: steam - /Citrouille.exe: + "/Citrouille.exe": - when: - os: windows store: steam @@ -100269,7 +100570,7 @@ City Builder: installDir: City Builder: {} launch: - /CityBuilder.exe: + "/CityBuilder.exe": - when: - os: windows store: steam @@ -100279,7 +100580,7 @@ City Builder (2018): installDir: City Builder: {} launch: - /City Builder.exe: + "/City Builder.exe": - when: - os: windows store: steam @@ -100289,7 +100590,7 @@ City Bus Simulator 2018: installDir: City Bus Simulator 2018: {} launch: - /City Bus Simulator 2018.exe: + "/City Bus Simulator 2018.exe": - when: - bit: 64 os: windows @@ -100298,22 +100599,24 @@ City Bus Simulator 2018: id: 833700 City Car Driving: files: - /Forward Development/City Car Driving: + "/Forward Development/City Car Driving": tags: - save when: - os: windows - /Forward Development/City Car Driving Steam: + "/Forward Development/City Car Driving Steam": tags: - save when: - - store: steam - /Forward Development/City Car Driving Steam/config: + - os: windows + store: steam + "/Forward Development/City Car Driving Steam/config": tags: - config when: - - store: steam - /Forward Development/City Car Driving/config: + - os: windows + store: steam + "/Forward Development/City Car Driving/config": tags: - config when: @@ -100321,11 +100624,11 @@ City Car Driving: installDir: City Car Driving: {} launch: - /bin/win32/Starter.exe: + "/bin/win32/Starter.exe": - when: - os: windows store: steam - workingDir: /bin/win32 + workingDir: "/bin/win32" steam: id: 493490 City Climber: @@ -100337,7 +100640,7 @@ City Defense: installDir: City Defense: {} launch: - /City Defense.exe: + "/City Defense.exe": - when: - os: windows store: steam @@ -100347,7 +100650,7 @@ City Escaper: installDir: Game exe: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -100357,7 +100660,7 @@ City Eye: installDir: City Eye: {} launch: - /CityEye.exe: + "/CityEye.exe": - when: - os: windows store: steam @@ -100365,14 +100668,14 @@ City Eye: id: 759080 City Game Studio: files: - /.godot/CityGameStudio: + "/.godot/CityGameStudio": tags: - config - save when: - os: mac - os: linux - /Godot/app_userdata/CityGameStudio: + "/Godot/app_userdata/CityGameStudio": tags: - config - save @@ -100383,20 +100686,20 @@ City Game Studio: installDir: City Game Studio: {} launch: - /CityGameStudio.app: + "/CityGameStudio.app": - when: - os: mac store: steam - /CityGameStudio.sh: + "/CityGameStudio.sh": - when: - os: linux store: steam - /CityGameStudio32.exe: + "/CityGameStudio32.exe": - when: - bit: 32 os: windows store: steam - /CityGameStudio64.exe: + "/CityGameStudio64.exe": - when: - bit: 64 os: windows @@ -100407,7 +100710,7 @@ City Gangs San Andreas: installDir: City Gangs San Andreas: {} launch: - /City Gangs San Andreas.exe: + "/City Gangs San Andreas.exe": - when: - store: steam steam: @@ -100416,7 +100719,7 @@ City Life: installDir: City Life 2008: {} launch: - /BIN/cld.exe: + "/BIN/cld.exe": - when: - store: steam steam: @@ -100425,17 +100728,17 @@ City Monsters: installDir: City Monsters: {} launch: - /CM.exe: + "/CM.exe": - when: - os: windows store: steam steam: id: 801760 -'City Patrol: Police': +"City Patrol: Police": installDir: City Patrol Police: {} launch: - /WorldracingGame/Binaries/Win64/CityPatrol-Win64-Shipping.exe: + "/WorldracingGame/Binaries/Win64/CityPatrol-Win64-Shipping.exe": - when: - os: windows store: steam @@ -100445,7 +100748,7 @@ City Play: installDir: City Play: {} launch: - /CityPlay.exe: + "/CityPlay.exe": - when: - os: windows store: steam @@ -100455,20 +100758,20 @@ City Quest: installDir: CityQuest: {} launch: - /CityQuest.app: + "/CityQuest.app": - when: - os: mac store: steam - /CityQuest.exe: + "/CityQuest.exe": - when: - os: windows store: steam - /CityQuest.x86: + "/CityQuest.x86": - when: - bit: 32 os: linux store: steam - /CityQuest.x86_64: + "/CityQuest.x86_64": - when: - bit: 64 os: linux @@ -100477,12 +100780,12 @@ City Quest: id: 308560 City Racing: files: - /Game.ini: + "/Game.ini": tags: - config when: - os: windows - /Save/Profile*.sav: + "/Save/Profile*.sav": tags: - save when: @@ -100496,7 +100799,7 @@ City Siege Factions: installDir: City Siege Factions: {} launch: - /CitySiegeFactionIsland.exe: + "/CitySiegeFactionIsland.exe": - when: - os: windows store: steam @@ -100506,11 +100809,11 @@ City Survival Project: installDir: CityLiveProject: {} launch: - /CityLiveProject.app/Contents/MacOS/CityLiveProject: + "/CityLiveProject.app/Contents/MacOS/CityLiveProject": - when: - os: mac store: steam - /城市生存计划.exe: + "/城市生存计划.exe": - when: - bit: 64 os: windows @@ -100526,20 +100829,20 @@ City Z: installDir: City Z: {} launch: - /CityZ.app: + "/CityZ.app": - when: - os: mac store: steam - /CityZ.exe: + "/CityZ.exe": - when: - os: windows store: steam - /CityZ.x86: + "/CityZ.x86": - when: - bit: 32 os: linux store: steam - /CityZ.x86_64: + "/CityZ.x86_64": - when: - bit: 64 os: linux @@ -100550,17 +100853,17 @@ City Zombies: installDir: City Zombies: {} launch: - /City Zombies.exe: + "/City Zombies.exe": - when: - os: windows store: steam steam: id: 1056470 -'City of Ages: Picture Supportive Text MUD (server and client included)': +"City of Ages: Picture Supportive Text MUD (server and client included)": installDir: City of Ages Picture Supportive Text MUD (server and client included): {} launch: - /handoff.exe: + "/handoff.exe": - when: - os: windows store: steam @@ -100568,40 +100871,40 @@ City Zombies: id: 688930 City of Brass: files: - /COB/Saved/Config/WindowsNoEditor: + "/COB/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /COB/Saved/SaveGames: + "/COB/Saved/SaveGames": tags: - save when: - os: windows - /COB/Saved_EGS/Config/WindowsNoEditor: + "/COB/Saved_EGS/Config/WindowsNoEditor": tags: - config when: - - store: epic - /COB/Saved_EGS/SaveGames: + - os: windows + "/COB/Saved_EGS/SaveGames": tags: - save when: - - store: epic + - os: windows installDir: City Of Brass: {} launch: - /COB/Binaries/Win64/COB-Win64-Shipping.exe: + "/COB/Binaries/Win64/COB-Win64-Shipping.exe": - when: - bit: 64 os: windows store: steam - workingDir: /COB/Binaries/Win64 + workingDir: "/COB/Binaries/Win64" steam: id: 301840 City of Chains: files: - /City of Chains/Saves: + "/City of Chains/Saves": tags: - save when: @@ -100609,7 +100912,7 @@ City of Chains: installDir: City of Chains: {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: @@ -100618,15 +100921,15 @@ City of Edges: installDir: City of Edges: {} launch: - /City of Edges.app: + "/City of Edges.app": - when: - os: mac store: steam - /City of Edges.exe: + "/City of Edges.exe": - when: - os: windows store: steam - /City of Edges.x86_64: + "/City of Edges.x86_64": - when: - os: linux store: steam @@ -100636,14 +100939,14 @@ City of Fools: installDir: City of Fools: {} launch: - /City of Fools.exe: + "/City of Fools.exe": - when: - store: steam steam: id: 359250 City of Gangsters: files: - /AppData/LocalLow/SomaSim/City of Gangsters/saves: + "/AppData/LocalLow/SomaSim/City of Gangsters/saves": tags: - save when: @@ -100653,7 +100956,7 @@ City of Gangsters: installDir: City of Gangsters: {} launch: - /CoG.exe: + "/CoG.exe": - when: - os: windows store: steam @@ -100663,35 +100966,37 @@ City of God I - Prison Empire: installDir: City of God I - Prison Empire: {} launch: - /cog.exe: + "/cog.exe": - when: - os: windows store: steam steam: id: 466860 -'City of Jade: Imperial Frontier': +"City of Jade: Imperial Frontier": installDir: City Of Jade Imperial Frontier: {} launch: - /City of Jade Imperial Frontier.app/Contents/MacOS/City of Jade Imperial Frontier: + "/City of Jade Imperial Frontier.app/Contents/MacOS/City of Jade Imperial Frontier": - when: - os: mac store: steam - /City of Jade Imperial Frontier.exe: + "/City of Jade Imperial Frontier.exe": - when: - os: windows store: steam steam: id: 862650 -'City of Rott: Streets of Rott': +"City of Rott: Streets of Rott": installDir: City of Rott Streets of Rott: {} launch: - /CITYOFROTT: + "/CITYOFROTT": - when: - os: mac store: steam - /CITYOFROTT.exe: + - os: linux + store: steam + "/CITYOFROTT.exe": - when: - os: windows store: steam @@ -100701,17 +101006,17 @@ City of Sky: installDir: City of sky: {} launch: - /CityOfSky_mac.app: + "/CityOfSky_mac.app": - when: - os: mac store: steam steam: id: 788180 -'City of Steam: Arkadia': +"City of Steam: Arkadia": installDir: CityofSteam: {} launch: - /Launcher.exe: + "/Launcher.exe": - when: - os: windows store: steam @@ -100721,29 +101026,26 @@ City of the Shroud: installDir: City of the Shroud: {} launch: - /City of the Shroud.app: + "/City of the Shroud.app": - when: - os: mac store: steam - /City of the Shroud.exe: + "/City of the Shroud.exe": - when: - os: windows store: steam - /City of the Shroud.x86: + "/City of the Shroud.x86": - when: - os: linux store: steam steam: id: 449100 -'CityBattle: Virtual Earth': +"CityBattle: Virtual Earth": installDir: CityBattle Virtual Earth (EU): {} launch: - /WarguardGameLauncher.exe: - - arguments: >- - -idc idc override-auth-server=https://api.live.cb.idcgames.com - override-warguard-server=https://api.live.cb.idcgames.com - override-global-server=https://api.live.cb.idcgames.com -wolopay + "/WarguardGameLauncher.exe": + - arguments: "-idc idc override-auth-server=https://api.live.cb.idcgames.com override-warguard-server=https://api.live.cb.idcgames.com override-global-server=https://api.live.cb.idcgames.com -wolopay" when: - bit: 64 os: windows @@ -100760,7 +101062,7 @@ CityWarHeroes VR: id: 1204380 Cityglitch: files: - /cityglitch/savedata.lua: + "/cityglitch/savedata.lua": tags: - save when: @@ -100768,26 +101070,26 @@ Cityglitch: installDir: cityglitch: {} launch: - /cityglitch.app: + "/cityglitch.app": - when: - os: mac store: steam - /cityglitch/cityglitch.exe: + "/cityglitch/cityglitch.exe": - when: - os: windows store: steam - workingDir: /cityglitch - /cityglitch/run.sh: + workingDir: "/cityglitch" + "/cityglitch/run.sh": - when: - bit: 64 os: linux store: steam - workingDir: /cityglitch + workingDir: "/cityglitch" steam: id: 756790 Citystate: files: - /CITYSTATE: + "/CITYSTATE": tags: - config - save @@ -100796,12 +101098,12 @@ Citystate: installDir: Citystate: {} launch: - /Citystate.app: - - arguments: '--file-descriptor-limit=10000' + "/Citystate.app": + - arguments: "--file-descriptor-limit=10000" when: - os: mac store: steam - /Citystate.exe: + "/Citystate.exe": - when: - os: windows store: steam @@ -100809,7 +101111,7 @@ Citystate: id: 774351 Citystate II: files: - /AppData/LocalLow/AndySztark/Citystate II: + "/AppData/LocalLow/AndySztark/Citystate II": tags: - config - save @@ -100818,7 +101120,7 @@ Citystate II: installDir: Citystate II: {} launch: - /Citystate II.exe: + "/Citystate II.exe": - when: - bit: 64 os: windows @@ -100828,19 +101130,19 @@ Citystate II: Citywars Savage: steam: id: 910800 -'CivCity: Rome': +"CivCity: Rome": files: - /CivCityRome.configuration.xml: + "/CivCityRome.configuration.xml": tags: - config when: - os: windows - /CivCity Rome/CivCityRome.GraphicsSettings.xml: + "/CivCity Rome/CivCityRome.GraphicsSettings.xml": tags: - config when: - os: windows - /CivCity Rome/Saves: + "/CivCity Rome/Saves": tags: - save when: @@ -100850,7 +101152,7 @@ Citywars Savage: installDir: CivCity Rome: {} launch: - /CivCity Rome.exe: + "/CivCity Rome.exe": - when: - store: steam steam: @@ -100859,138 +101161,138 @@ Civil War II: installDir: Civil War II: {} launch: - /autorun.exe: + "/autorun.exe": - when: - store: steam steam: id: 306630 -'Civil War: 1861': +"Civil War: 1861": installDir: Civil War 1861: {} launch: - /CivilWar1861.app: + "/CivilWar1861.app": - when: - os: mac store: steam - /CivilWar1861.exe: + "/CivilWar1861.exe": - when: - os: windows store: steam steam: id: 540230 -'Civil War: 1862': +"Civil War: 1862": installDir: Civil War 1862: {} launch: - /CivilWar1862.app: + "/CivilWar1862.app": - when: - os: mac store: steam - /CivilWar1862.exe: + "/CivilWar1862.exe": - when: - os: windows store: steam steam: id: 532890 -'Civil War: 1863': +"Civil War: 1863": installDir: Civil War 1863: {} launch: - /CivilWar1863.app: + "/CivilWar1863.app": - when: - os: mac store: steam - /CivilWar1863.exe: + "/CivilWar1863.exe": - when: - os: windows store: steam steam: id: 436270 -'Civil War: 1864': +"Civil War: 1864": installDir: Civil War 1864: {} launch: - /CivilWar1864.app: + "/CivilWar1864.app": - when: - os: mac store: steam - /CivilWar1864.exe: + "/CivilWar1864.exe": - when: - os: windows store: steam steam: id: 699860 -'Civil War: 1865': +"Civil War: 1865": installDir: Civil War 1865: {} launch: - /CivilWar1865.app: + "/CivilWar1865.app": - when: - os: mac store: steam - /CivilWar1865.exe: + "/CivilWar1865.exe": - when: - os: windows store: steam steam: id: 620630 -'Civil War: Battle of Petersburg': +"Civil War: Battle of Petersburg": installDir: Civil War Battle of Petersburg: {} launch: - /Civil War Battle of Petersburg.app: + "/Civil War Battle of Petersburg.app": - when: - os: mac store: steam - /Civil War Battle of Petersburg.exe: + "/Civil War Battle of Petersburg.exe": - when: - os: windows store: steam - /Civil War Battle of Petersburg.x86_64: + "/Civil War Battle of Petersburg.x86_64": - when: - os: linux store: steam steam: id: 584800 -'Civil War: Bull Run 1861': +"Civil War: Bull Run 1861": installDir: Civil War Bull Run 1861: {} launch: - /BullRun1861.app: + "/BullRun1861.app": - when: - os: mac store: steam - /BullRun1861.exe: + "/BullRun1861.exe": - when: - os: windows store: steam steam: id: 374960 -'Civil War: Gettysburg': +"Civil War: Gettysburg": installDir: Civil War Gettysburg: {} launch: - /Gettysburg.app: + "/Gettysburg.app": - when: - os: mac store: steam - /Gettysburg.exe: + "/Gettysburg.exe": - when: - os: windows store: steam steam: id: 665440 -'Civil Warfare: Another Bullet in the War': +"Civil Warfare: Another Bullet in the War": installDir: Civil Warfare Another Bullet In The War: {} launch: - /CivilWarfare.exe: + "/CivilWarfare.exe": - when: - os: windows store: steam steam: id: 734590 -'Civil: The Game': +"Civil: The Game": installDir: Civil: {} steam: @@ -101000,26 +101302,26 @@ CivilContract: CivilContract: {} steam: id: 1010460 -'Civilization II: Test of Time': +"Civilization II: Test of Time": files: - /CIV2.DAT: + "/CIV2.DAT": tags: - config when: - os: windows -'Civilization: Call to Power': +"Civilization: Call to Power": files: - /ctp_program/ctp/save: + "/ctp_program/ctp/save": tags: - save when: - os: windows - /ctp_program/ctp/userkeymap.txt: + "/ctp_program/ctp/userkeymap.txt": tags: - config when: - os: windows - /ctp_program/ctp/userprofile.txt: + "/ctp_program/ctp/userprofile.txt": tags: - config when: @@ -101028,7 +101330,7 @@ Civitas Nova: installDir: Civitas Nova: {} launch: - /Civitas Nova.exe: + "/Civitas Nova.exe": - when: - bit: 64 os: windows @@ -101041,8 +101343,8 @@ Civitatem: installDir: Civitatem: {} launch: - /Civitatem.exe: - - arguments: '--disable-crash-handler=true' + "/Civitatem.exe": + - arguments: "--disable-crash-handler=true" when: - os: windows store: steam @@ -101051,51 +101353,51 @@ Civitatem: Civlands: steam: id: 1208890 -'Clad in Iron: Chincha Islands 1866': +"Clad in Iron: Chincha Islands 1866": installDir: Clad in Iron Chincha Islands 1866: {} launch: - /Totem3_CladInIron_Chincha_Islands.exe: + "/Totem3_CladInIron_Chincha_Islands.exe": - when: - os: windows store: steam steam: id: 2196170 -'Clad in Iron: Gulf of Mexico 1864': +"Clad in Iron: Gulf of Mexico 1864": installDir: Clad in Iron Gulf of Mexico 1864: {} launch: - /Clad in Iron - Gulf of Mexico 1864.exe: + "/Clad in Iron - Gulf of Mexico 1864.exe": - when: - os: windows store: steam steam: id: 693450 -'Clad in Iron: Philippines 1898': +"Clad in Iron: Philippines 1898": installDir: Clad in Iron Philippines 1898: {} launch: - /Launcher.exe: + "/Launcher.exe": - when: - os: windows store: steam steam: id: 712970 -'Clad in Iron: Sakhalin 1904': +"Clad in Iron: Sakhalin 1904": installDir: Clad in Iron Sakhalin 1904: {} launch: - /CladInIron_Sakhalin_1904.exe: + "/CladInIron_Sakhalin_1904.exe": - when: - os: windows store: steam steam: id: 963680 -'Cladun Returns: This Is Sengoku!': +"Cladun Returns: This Is Sengoku!": installDir: Cladun Returns This Is Sengoku: {} launch: - /Cladun Returns This Is Sengoku.exe: + "/Cladun Returns This Is Sengoku.exe": - when: - os: windows store: steam @@ -101105,7 +101407,7 @@ Cladun X2: installDir: ClaDun x2: {} launch: - /CladunX2.exe: + "/CladunX2.exe": - when: - store: steam steam: @@ -101114,11 +101416,11 @@ Claire: installDir: Claire: {} launch: - /Claire.exe: + "/Claire.exe": - when: - os: windows store: steam - /ClaireMac.app: + "/ClaireMac.app": - when: - os: mac store: steam @@ -101132,7 +101434,7 @@ Claire de Lune: installDir: Claire de Lune: {} launch: - /Claire de Lune.exe: + "/Claire de Lune.exe": - when: - store: steam steam: @@ -101141,20 +101443,20 @@ Clam Man: installDir: Clam Man: {} launch: - /Clam Man.app/Contents/MacOS/Clam Man: + "/Clam Man.app/Contents/MacOS/Clam Man": - when: - os: mac store: steam - /Clam Man.exe: + "/Clam Man.exe": - when: - os: windows store: steam - /LinuxGame.x86: + "/LinuxGame.x86": - when: - bit: 32 os: linux store: steam - /LinuxGame.x86_64: + "/LinuxGame.x86_64": - when: - bit: 64 os: linux @@ -101165,7 +101467,7 @@ Clan N: installDir: Clan N: {} launch: - /ClanN.exe: + "/ClanN.exe": - when: - os: windows store: steam @@ -101175,22 +101477,22 @@ Clan of Champions: installDir: Clan Of Champions: {} launch: - /ClanOfChampions.exe: + "/ClanOfChampions.exe": - when: - store: steam - /ConfigTool.exe: + "/ConfigTool.exe": - when: - store: steam steam: id: 206230 Clandestine: files: - /My Games/Clandestine: + "/My Games/Clandestine": tags: - config when: - os: windows - /My Games/Clandestine/saves: + "/My Games/Clandestine/saves": tags: - save when: @@ -101198,11 +101500,11 @@ Clandestine: installDir: Clandestine: {} launch: - /Clandestine.exe: + "/Clandestine.exe": - when: - os: windows store: steam - /Clandestine.x86_64: + "/Clandestine.x86_64": - when: - os: linux store: steam @@ -101210,12 +101512,12 @@ Clandestine: id: 290530 Clandestinity of Elsie: files: - /coe: + "/coe": tags: - save when: - os: windows - /coe/Settings.ini: + "/coe/Settings.ini": tags: - config when: @@ -101223,7 +101525,7 @@ Clandestinity of Elsie: installDir: Clandestinity of Elsie: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -101231,12 +101533,12 @@ Clandestinity of Elsie: id: 379320 Clanfolk: files: - /AppData/LocalLow/MinMax Games/Clanfolk/Cloud/SavedData: + "/AppData/LocalLow/MinMax Games/Clanfolk/Cloud/SavedData": tags: - save when: - os: windows - /AppData/LocalLow/MinMax Games/Clanfolk/Options/Options.opt: + "/AppData/LocalLow/MinMax Games/Clanfolk/Options/Options.opt": tags: - config when: @@ -101244,7 +101546,7 @@ Clanfolk: installDir: Clanfolk: {} launch: - /Clanfolk.exe: + "/Clanfolk.exe": - when: - bit: 64 os: windows @@ -101253,22 +101555,22 @@ Clanfolk: id: 1700870 Clannad: files: - /SAVEDATA/REALLIVE.sav: + "/SAVEDATA/REALLIVE.sav": tags: - config when: - os: windows - /SAVEDATA/REALLIVEEN.sav: + "/SAVEDATA/REALLIVEEN.sav": tags: - config when: - os: windows - /SAVEDATA/read.sav: + "/SAVEDATA/read.sav": tags: - config when: - os: windows - /SAVEDATA/save*.sav: + "/SAVEDATA/save*.sav": tags: - save when: @@ -101276,7 +101578,7 @@ Clannad: installDir: CLANNAD: {} launch: - /SiglusEngine_Steam.exe: + "/SiglusEngine_Steam.exe": - when: - os: windows store: steam @@ -101284,12 +101586,12 @@ Clannad: id: 324160 Clannad Side Stories: files: - /Gameexe.ini: + "/Gameexe.ini": tags: - config when: - os: windows - /SAVEDATA: + "/SAVEDATA": tags: - save when: @@ -101297,7 +101599,7 @@ Clannad Side Stories: installDir: CLANNAD Side Stories: {} launch: - /RealLiveEn.exe: + "/RealLiveEn.exe": - when: - os: windows store: steam @@ -101305,12 +101607,12 @@ Clannad Side Stories: id: 420100 Clans: files: - /*.csg: + "/*.csg": tags: - save when: - os: windows - /data/Clans.INI: + "/data/Clans.INI": tags: - config when: @@ -101318,7 +101620,7 @@ Clans: installDir: Clans: {} launch: - /clans.exe: + "/clans.exe": - when: - store: steam steam: @@ -101330,12 +101632,12 @@ Clans to Kingdoms: installDir: Clans to Kingdoms: {} launch: - /CTK32_steam.exe: + "/CTK32_steam.exe": - when: - bit: 32 os: windows store: steam - /CTK_steam.exe: + "/CTK_steam.exe": - when: - bit: 64 os: windows @@ -101344,22 +101646,22 @@ Clans to Kingdoms: id: 1120580 Clash: files: - /OPTIONS.CFG: + "/OPTIONS.CFG": tags: - config when: - os: dos - /SAVE: + "/SAVE": tags: - save when: - os: dos - /options.cfg: + "/options.cfg": tags: - config when: - os: windows - /save: + "/save": tags: - save when: @@ -101370,7 +101672,7 @@ Clash (2016): installDir: CLASH: {} launch: - /Clash.exe: + "/Clash.exe": - when: - os: windows store: steam @@ -101380,11 +101682,11 @@ Clash Cup Turbo: installDir: Clash Cup Turbo: {} launch: - /CCT_Mac.app/Contents/MacOS/CCT_Mac: + "/CCT_Mac.app/Contents/MacOS/CCT_Mac": - when: - os: mac store: steam - /Clash Cup Turbo.exe: + "/Clash Cup Turbo.exe": - when: - os: windows store: steam @@ -101394,7 +101696,7 @@ Clash Force: installDir: Clash Force: {} launch: - /ClashForce.exe: + "/ClashForce.exe": - when: - os: windows store: steam @@ -101406,7 +101708,7 @@ Clash II: installDir: Clash II: {} launch: - /ClashII.exe: + "/ClashII.exe": - when: - os: windows store: steam @@ -101416,18 +101718,21 @@ Clash of Cards: installDir: Clash of Cards: {} launch: - /gw.exe: + "/gw.exe": - when: - bit: 32 os: windows store: steam + - bit: 64 + os: windows + store: steam steam: id: 640850 Clash of Castle: installDir: Clash of Castle: {} launch: - /Clash of Castle.exe: + "/Clash of Castle.exe": - when: - store: steam steam: @@ -101449,7 +101754,7 @@ Clash of Puppets: installDir: Clash of Puppets: {} launch: - /CoP.exe: + "/CoP.exe": - when: - os: windows store: steam @@ -101459,15 +101764,15 @@ Clash of Robots: installDir: Clash of Robots: {} launch: - /ClashOFRobots.exe: + "/ClashOFRobots.exe": - when: - os: windows store: steam - /ClashbuildLinux.x86: + "/ClashbuildLinux.x86": - when: - os: linux store: steam - /macbuild.app: + "/macbuild.app": - when: - os: mac store: steam @@ -101485,40 +101790,40 @@ Clash of the Monsters: installDir: Clash of the Monsters: {} launch: - /cotm_mac_1.0.app: + "/cotm_mac_1.0.app": - when: - os: mac store: steam - /cotm_win_1.0/cotm_1.0_windows.exe: + "/cotm_win_1.0/cotm_1.0_windows.exe": - when: - os: windows store: steam steam: id: 431500 -'Clash: Artifacts of Chaos': +"Clash: Artifacts of Chaos": installDir: Clash - Artifacts of Chaos: {} launch: - /Clash.exe: + "/Clash.exe": - when: - bit: 64 os: windows store: steam steam: id: 1430680 -'Clash: Mutants Vs Pirates': +"Clash: Mutants Vs Pirates": installDir: Clash Mutants Vs Pirates: {} launch: - /Clash Mutants Vs Pirates.exe: + "/Clash Mutants Vs Pirates.exe": - when: - os: windows store: steam steam: id: 822710 -Class of '09: +"Class of '09": files: - /game/saves: + "/game/saves": tags: - save when: @@ -101526,23 +101831,23 @@ Class of '09: gog: id: 1822996619 installDir: - Class of '09: {} + "Class of '09": {} launch: - /Class_Of_09-1.0-market/Class_Of_09-32.exe: + "/Class_Of_09-1.0-market/Class_Of_09-32.exe": - when: - bit: 32 os: windows store: steam - /Class_Of_09-1.0-market/Class_Of_09.app: + "/Class_Of_09-1.0-market/Class_Of_09.app": - when: - os: mac store: steam - /Class_Of_09-1.0-market/Class_Of_09.exe: + "/Class_Of_09-1.0-market/Class_Of_09.exe": - when: - bit: 64 os: windows store: steam - /Class_Of_09-1.0-market/Class_Of_09.sh: + "/Class_Of_09-1.0-market/Class_Of_09.sh": - when: - os: linux store: steam @@ -101552,12 +101857,12 @@ ClassiCube: installDir: ClassiCube: {} launch: - /ClassiCube: + "/ClassiCube": - when: - bit: 64 os: linux store: steam - /ClassiCube.exe: + "/ClassiCube.exe": - when: - bit: 64 os: windows @@ -101568,7 +101873,7 @@ Classic Car Racing: installDir: Classic Car Racing: {} launch: - /Classic Car Racing.exe: + "/Classic Car Racing.exe": - when: - store: steam steam: @@ -101577,7 +101882,7 @@ Classic Card Game Spades: installDir: Classic_CardGame_Spades: {} launch: - /Spades.exe: + "/Spades.exe": - when: - os: windows store: steam @@ -101587,7 +101892,7 @@ Classic Card Games 3D: installDir: Classic Card Games 3D: {} launch: - /CardGames.exe: + "/CardGames.exe": - when: - os: windows store: steam @@ -101597,11 +101902,11 @@ Classic Fun Collection 5 in 1: installDir: Classic Fun Collection 5 in 1: {} launch: - /Classic Fun Collection.app/Contents/MacOS/Classic Fun Collection: + "/Classic Fun Collection.app/Contents/MacOS/Classic Fun Collection": - when: - os: mac store: steam - /Classic Fun Collection.exe: + "/Classic Fun Collection.exe": - when: - os: windows store: steam @@ -101611,7 +101916,7 @@ Classic Hentai Logic Puzzle: installDir: Classic Hentai Logic Puzzle: {} launch: - /Classic Hentai Logic Puzzle.exe: + "/Classic Hentai Logic Puzzle.exe": - when: - os: windows store: steam @@ -101621,15 +101926,15 @@ Classic Racers: installDir: Classic Racers: {} launch: - /Classic_Racers.app/Contents/MacOS/Classic_Racers: + "/Classic_Racers.app/Contents/MacOS/Classic_Racers": - when: - os: mac store: steam - /Classic_Racers.exe: + "/Classic_Racers.exe": - when: - os: windows store: steam - /Classic_Racers.x86_64: + "/Classic_Racers.x86_64": - when: - bit: 64 os: linux @@ -101640,7 +101945,7 @@ Classic Rodeo Play: installDir: YSCCC: {} launch: - /ysccc.exe: + "/ysccc.exe": - when: - bit: 64 os: windows @@ -101651,16 +101956,16 @@ Classic Snake Adventures: installDir: Classic Snake Adventures: {} launch: - /Classic Snake Adventures.app/Contents/MacOS/Classic Snake Adventures: + "/Classic Snake Adventures.app/Contents/MacOS/Classic Snake Adventures": - when: - os: mac store: steam - /Classic Snake Adventures.exe: + "/Classic Snake Adventures.exe": - when: - os: windows store: steam - /Classic Snake Adventures.x86_64: - - arguments: '-force-opengl' + "/Classic Snake Adventures.x86_64": + - arguments: "-force-opengl" when: - os: linux store: steam @@ -101670,17 +101975,17 @@ Classified Stories: installDir: Classified Stories: {} launch: - /Classified Stories.exe: + "/Classified Stories.exe": - when: - os: windows store: steam steam: id: 937960 -'Classified Stories: Color Out of Space': +"Classified Stories: Color Out of Space": installDir: Classified Stories Color Out of Space: {} launch: - /Classified Stories 2.exe: + "/Classified Stories 2.exe": - when: - bit: 64 os: windows @@ -101694,7 +101999,7 @@ Clatter: installDir: Clatter: {} launch: - /Clatter.exe: + "/Clatter.exe": - when: - os: windows store: steam @@ -101705,11 +102010,11 @@ Claude Monet - The Water Lily obsession: Claude Monet - The Water Lily obsession: {} steam: id: 1071170 -'Claustrophobia: The Downward Struggle': +"Claustrophobia: The Downward Struggle": installDir: Claustrophobia - The Downward Struggle: {} launch: - /Claustrophobia.exe: + "/Claustrophobia.exe": - when: - os: windows store: steam @@ -101717,7 +102022,7 @@ Claude Monet - The Water Lily obsession: id: 269590 Claw: files: - /CLAW.USR: + "/CLAW.USR": tags: - save when: @@ -101730,15 +102035,15 @@ Claw Breaker: installDir: Claw Breaker: {} launch: - /Claw Breaker Mac.app: + "/Claw Breaker Mac.app": - when: - os: mac store: steam - /Claw Breaker Windows.exe: + "/Claw Breaker Windows.exe": - when: - os: windows store: steam - /Claw Breaker.x86_64: + "/Claw Breaker.x86_64": - when: - os: linux store: steam @@ -101748,7 +102053,7 @@ Claw Staff: installDir: Claw Staff: {} launch: - /ClawStaff.exe: + "/ClawStaff.exe": - when: - os: windows store: steam @@ -101758,15 +102063,15 @@ Clawface: installDir: Clawface_Build: {} launch: - /Clawface.app/Contents/MacOS/Clawface: + "/Clawface.app/Contents/MacOS/Clawface": - when: - os: mac store: steam - /Clawface.exe: + "/Clawface.exe": - when: - os: windows store: steam - /Clawface.x86_64: + "/Clawface.x86_64": - when: - os: linux store: steam @@ -101774,7 +102079,7 @@ Clawface: id: 785130 Claws & Feathers: files: - /AlawarEntertainment/Adept Studios/Claws And Feathers: + "/AlawarEntertainment/Adept Studios/Claws And Feathers": tags: - save when: @@ -101782,7 +102087,7 @@ Claws & Feathers: installDir: Claws & Feathers: {} launch: - /ClawsAndFeathers.exe: + "/ClawsAndFeathers.exe": - when: - os: windows store: steam @@ -101792,7 +102097,7 @@ Claws & Feathers 2: installDir: Claws & Feathers 2: {} launch: - /ClawsAndFeathers2.exe: + "/ClawsAndFeathers2.exe": - when: - os: windows store: steam @@ -101802,7 +102107,7 @@ Claws of Furry: installDir: Claws of Furry: {} launch: - /Claws of Furry.exe: + "/Claws of Furry.exe": - when: - os: windows store: steam @@ -101810,12 +102115,12 @@ Claws of Furry: id: 656580 Claybook: files: - /Claybook/Saved/Config: + "/Claybook/Saved/Config": tags: - config when: - os: windows - /Claybook/Saved/SaveGames: + "/Claybook/Saved/SaveGames": tags: - save when: @@ -101823,7 +102128,7 @@ Claybook: installDir: Claybook: {} launch: - /Claybook.exe: + "/Claybook.exe": - when: - bit: 64 os: windows @@ -101844,15 +102149,15 @@ Clea: installDir: Clea: {} launch: - /Clea.app: + "/Clea.app": - when: - os: mac store: steam - /Clea.exe: + "/Clea.exe": - when: - os: windows store: steam - /Clea.x86_64: + "/Clea.x86_64": - when: - os: linux store: steam @@ -101863,17 +102168,17 @@ Clean VR: CleanVR: {} steam: id: 1071090 -Clean'Em Up: +"Clean'Em Up": files: - /CleanEmUp.exe.config: + "/CleanEmUp.exe.config": tags: - config when: - os: windows installDir: - Clean'Em Up: {} + "Clean'Em Up": {} launch: - /CleanEmUp.exe: + "/CleanEmUp.exe": - when: - os: windows store: steam @@ -101883,7 +102188,7 @@ Cleaner: installDir: Cleaner: {} launch: - /Cleaner.exe: + "/Cleaner.exe": - when: - os: windows store: steam @@ -101893,11 +102198,11 @@ Cleansuit: installDir: Cleansuit: {} launch: - /Cleansuit.app/Contents/MacOS/Cleansuit: + "/Cleansuit.app/Contents/MacOS/Cleansuit": - when: - os: mac store: steam - /Cleansuit/Cleansuit.exe: + "/Cleansuit/Cleansuit.exe": - when: - os: windows store: steam @@ -101907,29 +102212,29 @@ ClearIt5: installDir: ClearIt5: {} launch: - /ClearIt5.exe: + "/ClearIt5.exe": - when: - os: windows store: steam steam: id: 1125820 -Cleo's Lost Idols: +"Cleo's Lost Idols": installDir: Cleos Lost Idols: {} launch: - /CleosLostIdols.app: + "/CleosLostIdols.app": - when: - os: mac store: steam - /CleosLostIdols.exe: + "/CleosLostIdols.exe": - when: - os: windows store: steam steam: id: 515230 -'Cleo: A Pirate''s Tale': +"Cleo: A Pirate's Tale": files: - /AppData/LocalLow/Christoph Schultz/CleoAPiratesTale/save.cleo*: + "/AppData/LocalLow/Christoph Schultz/CleoAPiratesTale/save.cleo*": tags: - save when: @@ -101946,11 +102251,11 @@ Cleo's Lost Idols: installDir: CleoAPiratesTale: {} launch: - /CleoAPiratesTale.app/Contents/MacOS/CleoAPiratesTale: + "/CleoAPiratesTale.app/Contents/MacOS/CleoAPiratesTale": - when: - os: mac store: steam - /CleoAPiratesTale.exe: + "/CleoAPiratesTale.exe": - when: - os: windows store: steam @@ -101964,7 +102269,7 @@ Cleopatra Fortune S-Tribute: installDir: Cleopatra Fortune S-Tribute: {} launch: - /S-Tribute.exe: + "/S-Tribute.exe": - when: - os: windows store: steam @@ -101972,22 +102277,22 @@ Cleopatra Fortune S-Tribute: id: 1913690 Clergy Splode: files: - /557b7d79/Saves: + "/557b7d79/Saves": tags: - save when: - os: windows - /S3DClient.cfg: + "/S3DClient.cfg": tags: - config when: - os: windows - /data/S3DClient.cfg: + "/data/S3DClient.cfg": tags: - config when: - os: linux - /.StoneTrip/.saves: + "/.StoneTrip/.saves": tags: - save when: @@ -101995,7 +102300,7 @@ Clergy Splode: installDir: Clergy Splode: {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: @@ -102007,7 +102312,7 @@ Cliché - Critical Change: installDir: Cliché - Critical Change: {} launch: - /cliche.exe: + "/cliche.exe": - when: - os: windows store: steam @@ -102020,7 +102325,7 @@ Click Commander: installDir: Click Commander: {} launch: - /click.exe: + "/click.exe": - when: - os: windows store: steam @@ -102030,7 +102335,7 @@ Click Defense: installDir: Click Defense: {} launch: - /click-defense.exe: + "/click-defense.exe": - when: - os: windows store: steam @@ -102040,7 +102345,7 @@ Click Legends: installDir: Click Legends: {} launch: - /ClickLegends.exe: + "/ClickLegends.exe": - when: - os: windows store: steam @@ -102050,11 +102355,11 @@ Click Space Miner: installDir: Click Space Miner: {} launch: - /ClickSpaceMiner: + "/ClickSpaceMiner": - when: - os: linux store: steam - /ClickSpaceMiner.exe: + "/ClickSpaceMiner.exe": - when: - os: windows store: steam @@ -102069,11 +102374,11 @@ Click and Fight: installDir: Clickandfight: {} launch: - /Click&Fight: + "/Click&Fight": - when: - os: linux store: steam - /Click&Fight.exe: + "/Click&Fight.exe": - when: - os: windows store: steam @@ -102083,8 +102388,8 @@ Click and Manage Tycoon: installDir: Click and Manage Tycoon: {} launch: - /CMTycoon.exe: - - arguments: '--in-process-gpu' + "/CMTycoon.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam @@ -102100,27 +102405,27 @@ ClickBit: installDir: ClickBit: {} launch: - /ClickBit.exe: + "/ClickBit.exe": - when: - os: windows store: steam steam: id: 674220 -'ClickCells: Office Lady': +"ClickCells: Office Lady": installDir: ClickCells Office Lady: {} launch: - /ccol.exe: + "/ccol.exe": - when: - os: windows store: steam steam: id: 1189460 -'ClickCells: Winter Lady': +"ClickCells: Winter Lady": installDir: ClickCells Winter Lady: {} launch: - /ccwl.exe: + "/ccwl.exe": - when: - os: windows store: steam @@ -102130,15 +102435,15 @@ ClickRaid: installDir: ClickRaid: {} launch: - /ClickRaid.app: + "/ClickRaid.app": - when: - os: mac store: steam - /ClickRaid.exe: + "/ClickRaid.exe": - when: - os: windows store: steam - /Click_Raid: + "/Click_Raid": - when: - os: linux store: steam @@ -102148,15 +102453,15 @@ ClickRaid2: installDir: ClickRaid2: {} launch: - /CR2.exe: + "/CR2.exe": - when: - os: windows store: steam - /CR2.x86_64: + "/CR2.x86_64": - when: - os: linux store: steam - /CR2IOS.app: + "/CR2IOS.app": - when: - os: mac store: steam @@ -102166,7 +102471,7 @@ Clickable Coffee Shop: installDir: Clickable Coffee Shop: {} launch: - /Clickable Coffee Shop.exe: + "/Clickable Coffee Shop.exe": - when: - store: steam steam: @@ -102175,7 +102480,7 @@ Clickdraw Clicker: installDir: Clickdraw Clicker: {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: @@ -102187,14 +102492,14 @@ Clicker Age: installDir: Clicker Age: {} launch: - /ClickerAge.exe: + "/ClickerAge.exe": - when: - store: steam steam: id: 1215660 Clicker Guild: files: - /AppData/LocalLow/Fox Dawn/Clicker Guild: + "/AppData/LocalLow/Fox Dawn/Clicker Guild": tags: - save when: @@ -102202,7 +102507,7 @@ Clicker Guild: installDir: Clicker Guild: {} launch: - /guild.exe: + "/guild.exe": - when: - os: windows store: steam @@ -102210,12 +102515,12 @@ Clicker Guild: id: 557810 Clicker Heroes: files: - /userdata//363970/remote: + "/userdata//363970/remote": tags: - save when: - store: steam - /com.playsaurus.heroclicker/Local Store: + "/com.playsaurus.heroclicker/Local Store": tags: - save when: @@ -102223,11 +102528,11 @@ Clicker Heroes: installDir: Clicker Heroes: {} launch: - /Clicker Heroes.exe: + "/Clicker Heroes.exe": - when: - os: windows store: steam - /ClickerHeroes.app: + "/ClickerHeroes.app": - when: - os: mac store: steam @@ -102237,11 +102542,11 @@ Clicker Heroes 2: installDir: Clicker Heroes 2: {} launch: - /ClickerHeroes2.app: + "/ClickerHeroes2.app": - when: - os: mac store: steam - /ClickerHeroes2.exe: + "/ClickerHeroes2.exe": - when: - os: windows store: steam @@ -102256,7 +102561,7 @@ Clicker Warriors: installDir: Clicker Warriors: {} launch: - /Clicker Warriors.exe: + "/Clicker Warriors.exe": - when: - os: windows store: steam @@ -102266,25 +102571,25 @@ Clicker bAdventure: installDir: Clicker bAdventure: {} launch: - /ClickerbAdventure.exe: + "/ClickerbAdventure.exe": - when: - store: steam steam: id: 736430 -'Clicker: Glad Valakas': +"Clicker: Glad Valakas": installDir: Clicker Glad Valakas: {} launch: - /CGV.exe: + "/CGV.exe": - when: - store: steam steam: id: 978470 -'Clicker: Mining Simulator': +"Clicker: Mining Simulator": installDir: Clicker Mining Simulator: {} launch: - /CMS.exe: + "/CMS.exe": - when: - store: steam steam: @@ -102292,12 +102597,12 @@ Clicker bAdventure: Clickey: steam: id: 655450 -'Clickey: The Velocity Click': +"Clickey: The Velocity Click": steam: id: 662310 Clickr: files: - /userdata//45500/remote/ClickrConfig_cloud.pak: + "/userdata//45500/remote/ClickrConfig_cloud.pak": tags: - save when: @@ -102305,7 +102610,7 @@ Clickr: installDir: Clickr: {} launch: - /Clickr.exe: + "/Clickr.exe": - when: - store: steam steam: @@ -102316,7 +102621,7 @@ Clid the Snail: installDir: Clid the Snail: {} launch: - /Clid The Snail.exe: + "/Clid The Snail.exe": - when: - os: windows store: steam @@ -102324,7 +102629,7 @@ Clid the Snail: id: 1597580 Cliff Empire: files: - /AppData/LocalLow/LionShade/Cliff Empire: + "/AppData/LocalLow/LionShade/Cliff Empire": tags: - save when: @@ -102332,10 +102637,10 @@ Cliff Empire: installDir: Cliff Empire: {} launch: - /Cliff Empire HQ.exe: + "/Cliff Empire HQ.exe": - when: - store: steam - /Cliff Empire.exe: + "/Cliff Empire.exe": - when: - os: windows store: steam @@ -102345,17 +102650,17 @@ Cliff Hanger: installDir: Cliff Hanger: {} launch: - /Cliff_Hanger.exe: + "/Cliff_Hanger.exe": - when: - os: windows store: steam steam: id: 515200 -'Cliffs of War: Fortress Defenders': +"Cliffs of War: Fortress Defenders": installDir: Cliffs of War Fortress Defenders: {} launch: - /CliffsOfWar.exe: + "/CliffsOfWar.exe": - when: - os: windows store: steam @@ -102366,21 +102671,21 @@ Cliffstone Manor: Cliffstone Manor: {} steam: id: 698910 -'Climatic Survival: Northern Storm': +"Climatic Survival: Northern Storm": installDir: Climatic Survival Northern Storm: {} launch: - /CSNS.x86: + "/CSNS.x86": - when: - bit: 32 os: linux store: steam - /CSNS.x86_64: + "/CSNS.x86_64": - when: - bit: 64 os: linux store: steam - /Climatic_Survival_Northern_Storm.exe: + "/Climatic_Survival_Northern_Storm.exe": - when: - os: windows store: steam @@ -102390,7 +102695,7 @@ Climb: installDir: Climb: {} launch: - /Climb.exe: + "/Climb.exe": - when: - os: windows store: steam @@ -102400,7 +102705,7 @@ Climb Challenge: installDir: Climb Challenge: {} launch: - /Climbchallenge.exe: + "/Climbchallenge.exe": - when: - bit: 64 os: windows @@ -102411,11 +102716,11 @@ Climb With Wheelbarrow: installDir: Climb With Wheelbarrow: {} launch: - /TB.app: + "/TB.app": - when: - os: mac store: steam - /TB.exe: + "/TB.exe": - when: - bit: 64 os: windows @@ -102434,7 +102739,7 @@ Climbros: installDir: Climbros: {} launch: - /Climbros.exe: + "/Climbros.exe": - when: - os: windows store: steam @@ -102444,8 +102749,8 @@ Climbtime: installDir: climbtime: {} launch: - /climbtime.exe: - - arguments: '-screen-fullscreen 1' + "/climbtime.exe": + - arguments: "-screen-fullscreen 1" when: - os: windows store: steam @@ -102455,15 +102760,15 @@ Clinically Dead: installDir: Clinically Dead: {} launch: - /ClinicallyDead.exe: + "/ClinicallyDead.exe": - when: - os: windows store: steam steam: id: 927840 -Clive 'N' Wrench: +"Clive 'N' Wrench": files: - /AppData/LocalLow/Dinosaur Bytes Studio/Clive 'N' Wrench/GameSave: + "/AppData/LocalLow/Dinosaur Bytes Studio/Clive 'N' Wrench/GameSave": tags: - save when: @@ -102471,43 +102776,43 @@ Clive 'N' Wrench: gog: id: 1936905339 installDir: - Clive 'N' Wrench - 3D Action Platformer: {} + "Clive 'N' Wrench - 3D Action Platformer": {} launch: - /Clive 'N' Wrench.exe: + "/Clive 'N' Wrench.exe": - when: - os: windows store: steam steam: id: 1094720 -Clive Barker's Jericho: +"Clive Barker's Jericho": files: - /Codemasters/Clive Barker's Jericho: + "/Codemasters/Clive Barker's Jericho": tags: - config when: - os: windows - /Codemasters/Clive Barker's Jericho: + "/Codemasters/Clive Barker's Jericho": tags: - save when: - os: windows installDir: - Clive Barker's Jericho: {} + "Clive Barker's Jericho": {} launch: - /bin/jericho.exe: + "/bin/jericho.exe": - when: - store: steam - workingDir: /Bin + workingDir: "/Bin" steam: id: 11420 -Clive Barker's Undying: +"Clive Barker's Undying": files: - /Save: + "/Save": tags: - save when: - os: windows - /System/*.ini: + "/System/*.ini": tags: - config when: @@ -102518,15 +102823,15 @@ Cloak and Dasher: installDir: Cloak and Dasher: {} launch: - /Cloak and Dasher.app/Contents/MacOS/Cloak and Dasher: + "/Cloak and Dasher.app/Contents/MacOS/Cloak and Dasher": - when: - os: mac store: steam - /Cloak and Dasher.exe: + "/Cloak and Dasher.exe": - when: - os: windows store: steam - /Cloak and Dasher.x86_64: + "/Cloak and Dasher.x86_64": - when: - os: linux store: steam @@ -102534,7 +102839,7 @@ Cloak and Dasher: id: 1114620 Clock Simulator: files: - /AppData/LocalLow/Kool2Play/Clock Simulator: + "/AppData/LocalLow/Kool2Play/Clock Simulator": tags: - save when: @@ -102542,22 +102847,22 @@ Clock Simulator: installDir: Clock Simulator: {} launch: - /Clock Simulator.exe: + "/Clock Simulator.exe": - when: - os: windows store: steam - /ClockSimulator.app/Contents/MacOS/ClockSimulator: + "/ClockSimulator.app/Contents/MacOS/ClockSimulator": - when: - os: mac store: steam - /ClockSimulator.x86: - - arguments: '-force-opengl' + "/ClockSimulator.x86": + - arguments: "-force-opengl" when: - bit: 32 os: linux store: steam - /ClockSimulator.x86_64: - - arguments: '-force-opengl' + "/ClockSimulator.x86_64": + - arguments: "-force-opengl" when: - bit: 64 os: linux @@ -102566,7 +102871,7 @@ Clock Simulator: id: 501120 Clock Tower: files: - /DATA.BIN: + "/DATA.BIN": tags: - save when: @@ -102575,11 +102880,11 @@ Clocker: installDir: Clocker: {} launch: - /Clocker.app: + "/Clocker.app": - when: - os: mac store: steam - /Clocker.exe: + "/Clocker.exe": - when: - os: windows store: steam @@ -102589,11 +102894,13 @@ ClockwiZZZe: installDir: ClockwiZZZe: {} launch: - /ClockwiZZZe: + "/ClockwiZZZe": - when: + - os: mac + store: steam - os: linux store: steam - /ClockwiZZZe.exe: + "/ClockwiZZZe.exe": - when: - os: windows store: steam @@ -102603,11 +102910,11 @@ Clockwise: installDir: Clockwise: {} launch: - /Binaries/Win32/UDK.exe: + "/Binaries/Win32/UDK.exe": - when: - os: windows store: steam - /Binaries/Win64/UDK.exe: + "/Binaries/Win64/UDK.exe": - when: - bit: 64 os: windows @@ -102618,11 +102925,11 @@ Clockwork: installDir: Clockwork: {} launch: - /Clockwork.app: + "/Clockwork.app": - when: - os: mac store: steam - /Clockwork.exe: + "/Clockwork.exe": - when: - os: windows store: steam @@ -102630,12 +102937,12 @@ Clockwork: id: 509210 Clockwork Empires: files: - /Gaslamp Games/Clockwork Empires: + "/Gaslamp Games/Clockwork Empires": tags: - config when: - os: windows - /Gaslamp Games/Clockwork Empires/save: + "/Gaslamp Games/Clockwork Empires/save": tags: - save when: @@ -102643,11 +102950,11 @@ Clockwork Empires: installDir: Clockwork Empires: {} launch: - /Clockwork Empires.app: + "/Clockwork Empires.app": - when: - os: mac store: steam - /Clockwork Empires.exe: + "/Clockwork Empires.exe": - when: - os: windows store: steam @@ -102656,26 +102963,26 @@ Clockwork Empires: Clockwork Revolution: steam: id: 2439280 -'Clockwork Tales: Of Glass and Ink': +"Clockwork Tales: Of Glass and Ink": installDir: Clockwork Tales Of Glass and Ink: {} launch: - /ClockworkTales_OfGlassAndInk.exe: + "/ClockworkTales_OfGlassAndInk.exe": - when: - bit: 32 os: windows store: steam - /ClockworkTales_OfGlassAndInk_amd64: + "/ClockworkTales_OfGlassAndInk_amd64": - when: - bit: 64 os: linux store: steam - /ClockworkTales_OfGlassAndInk_i386: + "/ClockworkTales_OfGlassAndInk_i386": - when: - bit: 32 os: linux store: steam - /mac_steam.app/Contents/MacOS/mac_steam: + "/mac_steam.app/Contents/MacOS/mac_steam": - when: - os: mac store: steam @@ -102685,12 +102992,12 @@ Clodhoppers: installDir: Clodhoppers: {} launch: - /Clodhoppers.exe: + "/Clodhoppers.exe": - when: - bit: 64 os: windows store: steam - /clodhoppers.app: + "/clodhoppers.app": - when: - os: mac store: steam @@ -102700,29 +103007,29 @@ Clone Adventures: installDir: Clone Adventures: {} launch: - /CloneAdventures.exe: + "/CloneAdventures.exe": - when: - store: steam steam: id: 898760 Clone Drone in the Danger Zone: files: - /AppData/LocalLow/Doborog/Clone Drone in the Danger Zone: + "/AppData/LocalLow/Doborog/Clone Drone in the Danger Zone": tags: - save when: - os: windows - /AppData/LocalLow/Doborog/Clone Drone in the Danger Zone/CoopCustomGameSettings.json: + "/AppData/LocalLow/Doborog/Clone Drone in the Danger Zone/CoopCustomGameSettings.json": tags: - config when: - os: windows - /AppData/LocalLow/Doborog/Clone Drone in the Danger Zone/Multiplayer1v1CustomGameSettings.json: + "/AppData/LocalLow/Doborog/Clone Drone in the Danger Zone/Multiplayer1v1CustomGameSettings.json": tags: - config when: - os: windows - /AppData/LocalLow/Doborog/Clone Drone in the Danger Zone/SettingsData.json: + "/AppData/LocalLow/Doborog/Clone Drone in the Danger Zone/SettingsData.json": tags: - config when: @@ -102730,11 +103037,11 @@ Clone Drone in the Danger Zone: installDir: Clone Drone in the Danger Zone: {} launch: - /Clone Drone in the Danger Zone.app/Contents/MacOS/Clone Drone in the Danger Zone: + "/Clone Drone in the Danger Zone.app/Contents/MacOS/Clone Drone in the Danger Zone": - when: - os: mac store: steam - /Clone Drone in the Danger Zone.exe: + "/Clone Drone in the Danger Zone.exe": - when: - os: windows store: steam @@ -102746,32 +103053,32 @@ Clone Drone in the Danger Zone: id: 597170 Clone Hero: files: - /.clonehero/settings.ini: + "/.clonehero/settings.ini": tags: - config when: - os: linux - /.config/unity3d/srylain Inc_/Clone Hero: + "/.config/unity3d/srylain Inc_/Clone Hero": tags: - save when: - os: linux - /AppData/LocalLow/srylain Inc_/Clone Hero: + "/AppData/LocalLow/srylain Inc_/Clone Hero": tags: - save when: - os: windows - /Clone Hero/settings.ini: + "/Clone Hero/settings.ini": tags: - config when: - os: mac - /Library/Application Support/com.srylain.CloneHero: + "/Library/Application Support/com.srylain.CloneHero": tags: - save when: - os: mac - /Clone Hero/settings.ini: + "/Clone Hero/settings.ini": tags: - config when: @@ -102780,7 +103087,7 @@ Clones: installDir: Clones: {} launch: - /Bin/ClonesGame.exe: + "/Bin/ClonesGame.exe": - when: - store: steam steam: @@ -102789,15 +103096,15 @@ Cloney: installDir: Cloney: {} launch: - /Cloney: + "/Cloney": - when: - os: linux store: steam - /Cloney.app: + "/Cloney.app": - when: - os: mac store: steam - /cloney.exe: + "/cloney.exe": - when: - os: windows store: steam @@ -102805,12 +103112,12 @@ Cloney: id: 400030 Cloning Clyde: files: - /data/rawPCOnlyData/defaultOptions.ini: + "/data/rawPCOnlyData/defaultOptions.ini": tags: - config when: - os: windows - /userdata//91800: + "/userdata//91800": tags: - save when: @@ -102818,7 +103125,7 @@ Cloning Clyde: installDir: Cloning Clyde: {} launch: - /CloningClyde.exe: + "/CloningClyde.exe": - when: - store: steam steam: @@ -102829,38 +103136,38 @@ Close Call Extreme: Close Combat: gog: id: 1649233263 -'Close Combat III: The Russian Front': +"Close Combat III: The Russian Front": gog: id: 1981721026 -'Close Combat: A Bridge Too Far': +"Close Combat: A Bridge Too Far": gog: id: 1649233263 -'Close Combat: Cross of Iron': +"Close Combat: Cross of Iron": gog: id: 1988084980 installDir: Close Combat Cross of Iron: {} launch: - /Launcher.exe: + "/Launcher.exe": - when: - store: steam steam: id: 1367320 -'Close Combat: First to Fight': +"Close Combat: First to Fight": files: - /Destineer/FirstToFight/Dossiers: + "/Destineer/FirstToFight/Dossiers": tags: - save when: - os: windows - /Destineer/FirstToFight/global: + "/Destineer/FirstToFight/global": tags: - config when: - os: windows -'Close Combat: Gateway to Caen': +"Close Combat: Gateway to Caen": files: - /Close Combat Gateway to Caen/Saved Games: + "/Close Combat Gateway to Caen/Saved Games": tags: - save when: @@ -102870,82 +103177,82 @@ Close Combat: installDir: Close Combat - Gateway to Caen: {} launch: - /autorun.exe: + "/autorun.exe": - when: - os: windows store: steam steam: id: 297750 -'Close Combat: Invasion Normandy': +"Close Combat: Invasion Normandy": gog: id: 2016902862 -'Close Combat: Last Stand Arnhem': +"Close Combat: Last Stand Arnhem": gog: id: 1516759579 installDir: Close Combat Last Stand Arnhem: {} launch: - /autorun.exe: + "/autorun.exe": - when: - os: windows store: steam steam: id: 936530 -'Close Combat: Modern Tactics': +"Close Combat: Modern Tactics": gog: id: 2078946998 installDir: Close Combat Modern Tactics: {} launch: - /Launcher.exe: + "/Launcher.exe": - when: - store: steam steam: id: 1367330 -'Close Combat: Panthers in the Fog': +"Close Combat: Panthers in the Fog": gog: id: 1966901360 installDir: Close Combat Panthers in the Fog: {} launch: - /autorun.exe: + "/autorun.exe": - when: - os: windows store: steam steam: id: 368220 -'Close Combat: The Battle of the Bulge': +"Close Combat: The Battle of the Bulge": gog: id: 1714577252 -'Close Combat: The Bloody First': +"Close Combat: The Bloody First": gog: id: 1893134433 installDir: Close Combat - The Bloody First: {} launch: - /autorun.exe: + "/autorun.exe": - when: - store: steam steam: id: 811880 -'Close Combat: The Longest Day': +"Close Combat: The Longest Day": gog: id: 1877181554 installDir: Close Combat The Longest Day: {} launch: - /Launcher.exe: + "/Launcher.exe": - when: - store: steam steam: id: 1272130 -'Close Combat: Wacht am Rhein': +"Close Combat: Wacht am Rhein": gog: id: 1215191504 installDir: Close Combat Wacht am Rhein: {} launch: - /Launcher.exe: + "/Launcher.exe": - when: - store: steam steam: @@ -102954,18 +103261,18 @@ Close Me: installDir: Close Me: {} launch: - /CloseMe.exe: - - arguments: '--in-process-gpu' + "/CloseMe.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam - /Game: - - arguments: '--in-process-gpu' + "/Game": + - arguments: "--in-process-gpu" when: - os: linux store: steam - /Game.app: - - arguments: '--in-process-gpu' + "/Game.app": + - arguments: "--in-process-gpu" when: - os: mac store: steam @@ -102975,7 +103282,7 @@ Close Order: installDir: Close Order: {} launch: - /CloseOrder.exe: + "/CloseOrder.exe": - when: - os: windows store: steam @@ -102983,7 +103290,7 @@ Close Order: id: 383800 Close Quarters Conflict: files: - /System/*.ini: + "/System/*.ini": tags: - config when: @@ -102992,24 +103299,24 @@ Close Your Eyes: installDir: Close Your Eyes: {} launch: - /Game.exe: - - arguments: '--in-process-gpu' + "/Game.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam steam: id: 377330 -'Close Your Eyes: Anniversary Remake': +"Close Your Eyes: Anniversary Remake": installDir: Close Your Eyes -Anniversary Remake-: {} launch: - /Game.app: - - arguments: '--in-process-gpu' + "/Game.app": + - arguments: "--in-process-gpu" when: - os: mac store: steam - /nw.exe: - - arguments: '--in-process-gpu' + "/nw.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam @@ -103019,15 +103326,15 @@ Close the Window!: installDir: Close the Window!: {} launch: - /CloseTheWindow!.app: + "/CloseTheWindow!.app": - when: - os: mac store: steam - /CloseTheWindow_linux.x86: + "/CloseTheWindow_linux.x86": - when: - os: linux store: steam - /CloseTheWindow_win.exe: + "/CloseTheWindow_win.exe": - when: - os: windows store: steam @@ -103035,12 +103342,12 @@ Close the Window!: id: 773170 Close to the Sun: files: - /ctts/Saved/Config/WindowsNoEditor: + "/ctts/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /ctts/Saved/SaveGames: + "/ctts/Saved/SaveGames": tags: - save when: @@ -103050,7 +103357,7 @@ Close to the Sun: installDir: Close to the Sun: {} launch: - /ctts.exe: + "/ctts.exe": - when: - os: windows store: steam @@ -103061,7 +103368,7 @@ Closer Than You Think: id: 916710 Closers: files: - /closers/GAME_OPTION.lua: + "/closers/GAME_OPTION.lua": tags: - config when: @@ -103069,8 +103376,8 @@ Closers: installDir: closers: {} launch: - /LAUNCHER.exe: - - arguments: '-STEAM 1' + "/LAUNCHER.exe": + - arguments: "-STEAM 1" when: - bit: 64 os: windows @@ -103079,18 +103386,18 @@ Closers: id: 215830 Closure: files: - /Resources/savedsettings.cfg: + "/Resources/savedsettings.cfg": tags: - config when: - os: windows - /userdata//72000: + "/userdata//72000": tags: - config - save when: - store: steam - /Eyebrow Interactive/Closure: + "/Eyebrow Interactive/Closure": tags: - config - save @@ -103099,15 +103406,15 @@ Closure: installDir: Closure: {} launch: - /closure.app: + "/closure.app": - when: - os: mac store: steam - /closure.exe: + "/closure.exe": - when: - os: windows store: steam - /run_steam.sh: + "/run_steam.sh": - when: - os: linux store: steam @@ -103117,15 +103424,15 @@ Clothesline Carnage: installDir: ClotheslineCarnage: {} launch: - /CC.app: + "/CC.app": - when: - os: mac store: steam - /CC.exe: + "/CC.exe": - when: - os: windows store: steam - /CC.x86: + "/CC.x86": - when: - os: linux store: steam @@ -103135,25 +103442,25 @@ Cloud Chamber: installDir: CloudChamber: {} launch: - /CloudChamber.app: + "/CloudChamber.app": - when: - os: mac store: steam - /CloudChamber.exe: + "/CloudChamber.exe": - when: - os: windows store: steam steam: id: 290710 -'Cloud Chasers: Journey of Hope': +"Cloud Chasers: Journey of Hope": installDir: CloudChasers: {} launch: - /CloudChasers_Mac.app/Contents/MacOS/CloudChasers_Mac: + "/CloudChasers_Mac.app/Contents/MacOS/CloudChasers_Mac": - when: - os: mac store: steam - /CloudChasers_Win.exe: + "/CloudChasers_Win.exe": - when: - os: windows store: steam @@ -103161,12 +103468,12 @@ Cloud Chamber: id: 751670 Cloud Gardens: files: - /AppData/LocalLow/noio/Cloud Gardens: + "/AppData/LocalLow/noio/Cloud Gardens": tags: - config when: - os: windows - /AppData/LocalLow/noio/Cloud Gardens/Save: + "/AppData/LocalLow/noio/Cloud Gardens/Save": tags: - save when: @@ -103176,11 +103483,11 @@ Cloud Gardens: installDir: Cloud Gardens: {} launch: - /Cloud Gardens.app: + "/Cloud Gardens.app": - when: - os: mac store: steam - /Cloud Gardens.exe: + "/Cloud Gardens.exe": - when: - os: windows store: steam @@ -103194,11 +103501,11 @@ Cloud Knights: installDir: Cloud Knights: {} launch: - /Cloud Knights.app: + "/Cloud Knights.app": - when: - os: mac store: steam - /Cloud Knights.exe: + "/Cloud Knights.exe": - when: - os: windows store: steam @@ -103213,8 +103520,8 @@ Cloud Pirates: installDir: Cloud Pirates: {} launch: - /WarfaceMycomSteamLoader.exe: - - arguments: '-fromsteam' + "/WarfaceMycomSteamLoader.exe": + - arguments: "-fromsteam" when: - store: steam steam: @@ -103233,15 +103540,15 @@ Cloudbase Prime: installDir: Cloudbase Prime: {} launch: - /Cloudbase Prime.app: + "/Cloudbase Prime.app": - when: - os: mac store: steam - /Cloudbase Prime.exe: + "/Cloudbase Prime.exe": - when: - os: windows store: steam - /Cloudbase Prime.x86: + "/Cloudbase Prime.x86": - when: - os: linux store: steam @@ -103249,7 +103556,7 @@ Cloudbase Prime: id: 511250 Cloudberry Kingdom: files: - /Cloudberry Kingdom: + "/Cloudberry Kingdom": tags: - config - save @@ -103258,7 +103565,7 @@ Cloudberry Kingdom: installDir: Cloudberry Kingdom: {} launch: - /CloudberryKingdom.exe: + "/CloudberryKingdom.exe": - when: - store: steam steam: @@ -103270,12 +103577,12 @@ Cloudborn: id: 677040 Cloudbuilt: files: - /settings: + "/settings": tags: - config when: - os: windows - /My Games/Coilworks/Cloudbuilt/Saved Games: + "/My Games/Coilworks/Cloudbuilt/Saved Games": tags: - save when: @@ -103287,11 +103594,11 @@ Cloudbuilt: installDir: Cloudbuilt: {} launch: - /CloudBuilt.exe: + "/CloudBuilt.exe": - when: - os: windows store: steam - /CommunityLevelEditor.exe: + "/CommunityLevelEditor.exe": - when: - os: windows store: steam @@ -103301,11 +103608,11 @@ Clouded: installDir: Clouded: {} launch: - /Clouded Mac.app: + "/Clouded Mac.app": - when: - os: mac store: steam - /Clouded Win.exe: + "/Clouded Win.exe": - when: - os: windows store: steam @@ -103316,7 +103623,7 @@ Cloudlands 2: Cloudlands 2: {} steam: id: 1206960 -'Cloudlands: VR Minigolf': +"Cloudlands: VR Minigolf": installDir: Cloudlands: {} steam: @@ -103325,7 +103632,7 @@ Cloudphobia: installDir: Cloudphobia: {} launch: - /cloudphobia.exe: + "/cloudphobia.exe": - when: - os: windows store: steam @@ -103333,7 +103640,7 @@ Cloudphobia: id: 329340 Cloudpunk: files: - /AppData/LocalLow/Ion Lands/Cloudpunk: + "/AppData/LocalLow/Ion Lands/Cloudpunk": tags: - save when: @@ -103343,7 +103650,7 @@ Cloudpunk: installDir: Cloudpunk: {} launch: - /Cloudpunk.exe: + "/Cloudpunk.exe": - when: - os: windows store: steam @@ -103357,7 +103664,7 @@ Cloudrift: installDir: Cloudrift: {} launch: - /Cloudrift.exe: + "/Cloudrift.exe": - when: - os: windows store: steam @@ -103367,15 +103674,15 @@ Clouds & Sheep 2: installDir: CloudsAndSheep2: {} launch: - /cloudsandsheep2.app: + "/cloudsandsheep2.app": - when: - os: mac store: steam - /cloudsandsheep2.exe: + "/cloudsandsheep2.exe": - when: - os: windows store: steam - /cloudsandsheep2.out: + "/cloudsandsheep2.out": - when: - os: linux store: steam @@ -103383,7 +103690,7 @@ Clouds & Sheep 2: id: 439800 Cloudy with a Chance of Meatballs: files: - /CLOUDY: + "/CLOUDY": tags: - config when: @@ -103391,7 +103698,7 @@ Cloudy with a Chance of Meatballs: installDir: Cloudy with a Chance of Meatballs: {} launch: - /JadeEngine_Final.exe: + "/JadeEngine_Final.exe": - when: - store: steam steam: @@ -103400,7 +103707,7 @@ Clouzy!: installDir: Clouzy: {} launch: - /Clouzy.exe: + "/Clouzy.exe": - when: - os: windows store: steam @@ -103410,11 +103717,11 @@ Clover Tale: installDir: Clover Tale: {} launch: - /Clover Tale.app: + "/Clover Tale.app": - when: - os: mac store: steam - /CloverTale.exe: + "/CloverTale.exe": - when: - os: windows store: steam @@ -103424,15 +103731,15 @@ Clown House: installDir: Clown House: {} launch: - /ClownHouse.app: + "/ClownHouse.app": - when: - os: mac store: steam - /ClownHouse.exe: + "/ClownHouse.exe": - when: - os: windows store: steam - /ClownHouse.x86_64: + "/ClownHouse.x86_64": - when: - os: linux store: steam @@ -103442,7 +103749,7 @@ Clown Thug Cop Zombies: installDir: Clown Thug Cop Zombies: {} launch: - /clownthugcopzombies.exe: + "/clownthugcopzombies.exe": - when: - os: windows store: steam @@ -103452,10 +103759,12 @@ Clown2Beat: installDir: Clown2Beat: {} launch: - /Clown2Beat.exe: + "/Clown2Beat.exe": - when: - os: windows store: steam + - os: mac + store: steam steam: id: 547870 Club Dance Party VR: @@ -103465,17 +103774,17 @@ Club Dance Party VR: id: 845400 Club Football 2005: files: - /ini: + "/ini": tags: - config when: - os: windows - /Club Football 2005: + "/Club Football 2005": tags: - save when: - os: windows - /Club Football 2005/configpc.cfg: + "/Club Football 2005/configpc.cfg": tags: - config when: @@ -103484,15 +103793,15 @@ Club Life: installDir: Club Life: {} launch: - /Club Life.app: + "/Club Life.app": - when: - os: mac store: steam - /Club Life.exe: + "/Club Life.exe": - when: - os: windows store: steam - /Club Life.sh: + "/Club Life.sh": - when: - os: linux store: steam @@ -103502,7 +103811,7 @@ Club Lighting: installDir: Club Lighting: {} launch: - /Club Lighting.exe: + "/Club Lighting.exe": - when: - os: windows store: steam @@ -103512,7 +103821,7 @@ Club Manager 2015: installDir: Club Manager 2015: {} launch: - /Start.exe: + "/Start.exe": - arguments: tor when: - store: steam @@ -103522,7 +103831,7 @@ Club Manager 2016: installDir: Club Manager 2016: {} launch: - /Clubmanager.exe: + "/Clubmanager.exe": - arguments: Tor when: - os: windows @@ -103533,7 +103842,7 @@ Club Manager 2017: installDir: Club Manager 2017: {} launch: - /Start.exe: + "/Start.exe": - arguments: Tor when: - store: steam @@ -103543,7 +103852,7 @@ Club Naughty: installDir: Club Naughty: {} launch: - /ClubNaughty.exe: + "/ClubNaughty.exe": - when: - bit: 64 os: windows @@ -103554,7 +103863,7 @@ Club Soccer Director Pro 2020: installDir: Club Soccer Director PRO 2020: {} launch: - /CSD20.exe: + "/CSD20.exe": - when: - os: windows store: steam @@ -103567,26 +103876,26 @@ Cluck Yegger in Escape From The Planet of The Poultroid: installDir: Cluck Yegger in Escape From The Planet of The Poultroid: {} launch: - /Cluck_Yegger.app: + "/Cluck_Yegger.app": - when: - os: mac store: steam - /Cluck_Yegger_Linux_1.11.x86: + "/Cluck_Yegger_Linux_1.11.x86": - when: - bit: 32 os: linux store: steam - /Cluck_Yegger_Linux_1.11.x86_64: + "/Cluck_Yegger_Linux_1.11.x86_64": - when: - bit: 64 os: linux store: steam - /Cluck_Yegger_v1.11_x64.exe: + "/Cluck_Yegger_v1.11_x64.exe": - when: - bit: 64 os: windows store: steam - /Cluck_Yegger_v1.11_x86.exe: + "/Cluck_Yegger_v1.11_x86.exe": - when: - bit: 32 os: windows @@ -103597,24 +103906,24 @@ Cluck Yegger in Escape From The Planet of The Poultroid: - config steam: id: 416800 -Cluckles' Adventure: +"Cluckles' Adventure": installDir: Cluckles: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam steam: id: 605250 -Cludbugz's Twisted Magic: +"Cludbugz's Twisted Magic": steam: id: 683570 -'Clue/Cluedo: The Classic Mystery Game': +"Clue/Cluedo: The Classic Mystery Game": installDir: Clue: {} launch: - /Cluedo.exe: + "/Cluedo.exe": - when: - os: windows store: steam @@ -103627,16 +103936,16 @@ Clumsy Fred: installDir: Clumsy Fred: {} launch: - /ClumsyFred.app/Contents/MacOS/cf: + "/ClumsyFred.app/Contents/MacOS/cf": - when: - os: mac store: steam - /ClumsyFred.exe: - - arguments: '-screen-1' + "/ClumsyFred.exe": + - arguments: "-screen-1" when: - os: windows store: steam - /ClumsyFred.x86_64: + "/ClumsyFred.x86_64": - when: - os: linux store: steam @@ -103646,25 +103955,25 @@ Clumsy Knight: installDir: Clumsy Knight 2: {} launch: - /ClumsyKnight2.app: + "/ClumsyKnight2.app": - when: - os: mac store: steam - /ClumsyKnight2.exe: + "/ClumsyKnight2.exe": - when: - os: windows store: steam steam: id: 614050 -'Clumsy Knights : Threats of Dragon': +"Clumsy Knights : Threats of Dragon": installDir: ClumsyKnights: {} launch: - /ClumsyKnightR.app: + "/ClumsyKnightR.app": - when: - os: mac store: steam - /ClumsyKnightR.exe: + "/ClumsyKnightR.exe": - when: - os: windows store: steam @@ -103674,11 +103983,11 @@ Clumsy Moose Season: installDir: ClumsyMooseSeason: {} launch: - /ClumsyMooseSeason.app/Contents/MacOS/ClumsyMooseSeason: + "/ClumsyMooseSeason.app/Contents/MacOS/ClumsyMooseSeason": - when: - os: mac store: steam - /ClumsyMooseSeason.exe: + "/ClumsyMooseSeason.exe": - when: - os: windows store: steam @@ -103688,11 +103997,11 @@ Clumsy Runners: installDir: Clumsy Runners: {} launch: - /ClumsyRunners.app: + "/ClumsyRunners.app": - when: - os: mac store: steam - /ClumsyRunners.exe: + "/ClumsyRunners.exe": - when: - os: windows store: steam @@ -103707,7 +104016,7 @@ Clunk: installDir: Mask Of Fury: {} launch: - /MaskOfFury.exe: + "/MaskOfFury.exe": - when: - os: windows store: steam @@ -103719,15 +104028,15 @@ Clunky Hero: installDir: Clunky Hero: {} launch: - /ClunkyHero.app/Contents/MacOS/ClunkyHero: + "/ClunkyHero.app/Contents/MacOS/ClunkyHero": - when: - os: mac store: steam - /ClunkyHero.exe: + "/ClunkyHero.exe": - when: - os: windows store: steam - /ClunkyHero.x86_64: + "/ClunkyHero.x86_64": - when: - os: linux store: steam @@ -103737,7 +104046,7 @@ Cluster Dust: installDir: Cluster Dust: {} launch: - /ClusterDust1.exe: + "/ClusterDust1.exe": - when: - os: windows store: steam @@ -103747,7 +104056,7 @@ ClusterDisaster: installDir: ClusterDisaster: {} launch: - /ClusterDisaster.exe: + "/ClusterDisaster.exe": - when: - bit: 64 os: windows @@ -103758,15 +104067,15 @@ ClusterPuck 99: installDir: ClusterPuck 99: {} launch: - /ClusterPuck99.app: + "/ClusterPuck99.app": - when: - os: mac store: steam - /ClusterPuck99.exe: + "/ClusterPuck99.exe": - when: - os: windows store: steam - /ClusterPuck99.x86: + "/ClusterPuck99.x86": - when: - os: linux store: steam @@ -103774,7 +104083,7 @@ ClusterPuck 99: id: 337960 Clustertruck: files: - /unity3d/Landfall/Clustertruck: + "/unity3d/Landfall/Clustertruck": tags: - config when: @@ -103784,15 +104093,15 @@ Clustertruck: installDir: ClusterTruck: {} launch: - /Clustertruck.app: + "/Clustertruck.app": - when: - os: mac store: steam - /Clustertruck.exe: + "/Clustertruck.exe": - when: - os: windows store: steam - /Clustertruck.x86_64: + "/Clustertruck.x86_64": - when: - bit: 64 os: linux @@ -103805,7 +104114,7 @@ Clustertruck: id: 397950 Clutch: files: - /My Games/Clutch: + "/My Games/Clutch": tags: - save when: @@ -103813,7 +104122,7 @@ Clutch: installDir: Clutch: {} launch: - /Clutch.exe: + "/Clutch.exe": - when: - store: steam steam: @@ -103822,45 +104131,45 @@ Clutchball: installDir: clutchball: {} launch: - /clutchball.app: + "/clutchball.app": - when: - os: mac store: steam - /clutchball.exe: + "/clutchball.exe": - when: - os: windows store: steam steam: id: 1167710 -'Clutter Infinity: Joe''s Ultimate Quest': +"Clutter Infinity: Joe's Ultimate Quest": installDir: - Clutter Infinity Joe's Ultimate Quest: {} + "Clutter Infinity Joe's Ultimate Quest": {} launch: - /Clutter7.exe: + "/Clutter7.exe": - when: - os: windows store: steam steam: id: 553330 -'Clutter V: Welcome to Clutterville': +"Clutter V: Welcome to Clutterville": installDir: Clutter V: {} launch: - /Clutter V Welcome To Clutterville.app: + "/Clutter V Welcome To Clutterville.app": - when: - os: mac store: steam - /Clutter5.exe: + "/Clutter5.exe": - when: - os: windows store: steam steam: id: 499280 -'Clutter VI: Leigh''s Story': +"Clutter VI: Leigh's Story": installDir: - Clutter VI Leigh's Story: {} + "Clutter VI Leigh's Story": {} launch: - /Clutter6.exe: + "/Clutter6.exe": - when: - os: windows store: steam @@ -103878,16 +104187,16 @@ Co-op Snek Online: installDir: Co-op SNEK Online: {} launch: - /co-opSNEKOnline: + "/co-opSNEKOnline": - when: - os: linux store: steam - /co-opsnekonline.app: + "/co-opsnekonline.app": - when: - os: mac store: steam - /nw.exe: - - arguments: '--disable-direct-composition' + "/nw.exe": + - arguments: "--disable-direct-composition" when: - os: windows store: steam @@ -103902,7 +104211,7 @@ Coach Bus Simulator Parking: installDir: Coach Bus Simulator Parking: {} launch: - /Coach Bus Simulator Parking.exe: + "/Coach Bus Simulator Parking.exe": - arguments: windowed when: - os: windows @@ -103913,7 +104222,7 @@ Coal Mining Simulator: installDir: Coal Mining Simulator: {} launch: - /Coal Mining Simulator.exe: + "/Coal Mining Simulator.exe": - when: - bit: 64 os: windows @@ -103924,16 +104233,16 @@ Coast Guard: installDir: Coast Guard: {} launch: - /CoastGuard.app: + "/CoastGuard.app": - when: - os: mac store: steam - /Coastguard_1.0.6_PC.exe: + "/Coastguard_1.0.6_PC.exe": - when: - bit: 64 os: windows store: steam - /Coastguard_1.0.7_PC_Steam.exe: + "/Coastguard_1.0.7_PC_Steam.exe": - when: - bit: 64 os: windows @@ -103944,7 +104253,7 @@ Coast team: installDir: Coast team: {} launch: - /gamerun.exe: + "/gamerun.exe": - when: - os: windows store: steam @@ -103969,15 +104278,15 @@ Coated: installDir: Coated: {} launch: - /Coated: + "/Coated": - when: - os: linux store: steam - /Coated.app: + "/Coated.app": - when: - os: mac store: steam - /Coated.exe: + "/Coated.exe": - when: - os: windows store: steam @@ -103985,7 +104294,7 @@ Coated: id: 354810 Cobalt: files: - /Cobalt: + "/Cobalt": tags: - config - save @@ -103994,8 +104303,8 @@ Cobalt: installDir: Cobalt: {} launch: - /cobalt.exe: - - arguments: '-bundle-dir bundle' + "/cobalt.exe": + - arguments: "-bundle-dir bundle" when: - os: windows store: steam @@ -104003,7 +104312,7 @@ Cobalt: id: 357340 Cobalt Core: files: - /CobaltCore: + "/CobaltCore": tags: - save when: @@ -104011,7 +104320,7 @@ Cobalt Core: installDir: Cobalt Core: {} launch: - /CobaltCore.exe: + "/CobaltCore.exe": - when: - bit: 64 os: windows @@ -104022,25 +104331,25 @@ Cobalt WASD: installDir: Cobalt WASD: {} launch: - /cobalt.exe: - - arguments: '-bundle-dir bundle -mods_forced official/Lithium' + "/cobalt.exe": + - arguments: "-bundle-dir bundle -mods_forced official/Lithium" when: - store: steam steam: id: 590720 Cobi Treasure Deluxe: files: - /CobiMobi/Cobi Treasure Deluxe/highscores.dat: + "/CobiMobi/Cobi Treasure Deluxe/highscores.dat": tags: - save when: - os: windows - /CobiMobi/Cobi Treasure Deluxe/options.dat: + "/CobiMobi/Cobi Treasure Deluxe/options.dat": tags: - config when: - os: windows - /CobiMobi/Cobi Treasure Deluxe/users.dat: + "/CobiMobi/Cobi Treasure Deluxe/users.dat": tags: - save when: @@ -104048,7 +104357,7 @@ Cobi Treasure Deluxe: installDir: Cobi Treasure Deluxe: {} launch: - /Cobi Treasure Deluxe.exe: + "/Cobi Treasure Deluxe.exe": - when: - store: steam steam: @@ -104057,15 +104366,15 @@ Cobos: installDir: Cobos: {} launch: - /Cobos.exe: + "/Cobos.exe": - when: - os: windows store: steam steam: id: 685450 -'Cobra Kai: The Karate Kid Saga Continues': +"Cobra Kai: The Karate Kid Saga Continues": files: - 'C:/Users/USERNAME/AppData/LocalLow/Flux Games/Cobra Kai_ The Karate Kid Saga Continues': + "C:/Users/USERNAME/AppData/LocalLow/Flux Games/Cobra Kai_ The Karate Kid Saga Continues": tags: - save when: @@ -104073,13 +104382,13 @@ Cobos: installDir: Cobra Kai The Karate Kid Saga Continues: {} launch: - /Cobra Kai The Karate Kid Saga Continues.exe: + "/Cobra Kai The Karate Kid Saga Continues.exe": - when: - bit: 64 os: windows store: steam registry: - 'HKEY_CURRENT_USER/Software/Flux Games/Cobra Kai: The Karate Kid Saga Continues': + "HKEY_CURRENT_USER/Software/Flux Games/Cobra Kai: The Karate Kid Saga Continues": tags: - config steam: @@ -104091,7 +104400,7 @@ Cockroach Planet Survival: installDir: cockroachPlanetSurvival: {} launch: - /cockroachPlanet.exe: + "/cockroachPlanet.exe": - when: - os: windows store: steam @@ -104101,15 +104410,15 @@ Cockroach Simulator: installDir: Cockroach_Simulator: {} launch: - /cs.app: + "/cs.app": - when: - os: mac store: steam - /cs.exe: + "/cs.exe": - when: - os: windows store: steam - /cs.x86: + "/cs.x86": - when: - os: linux store: steam @@ -104124,7 +104433,7 @@ Cocktail for Beauty: installDir: Cocktail for Beauty: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -104132,7 +104441,7 @@ Cocktail for Beauty: id: 1141180 Cockwork Industries Complete: files: - /Digital Seductions/Cockwork Industries/Savegames: + "/Digital Seductions/Cockwork Industries/Savegames": tags: - save when: @@ -104140,7 +104449,7 @@ Cockwork Industries Complete: installDir: Cockwork Industries: {} launch: - /Cockwork Industries.exe: + "/Cockwork Industries.exe": - when: - os: windows store: steam @@ -104150,14 +104459,14 @@ Coconut Queen: installDir: Coconut Queen: {} launch: - /CoconutQueen.exe: + "/CoconutQueen.exe": - when: - store: steam steam: id: 38070 Cocoon: files: - /AppData/LocalLow/GeometricInteractive/Cocoon: + "/AppData/LocalLow/GeometricInteractive/Cocoon": tags: - config - save @@ -104177,7 +104486,7 @@ Code 7: - save when: - os: linux - /AppData/LocalLow/GoodwolfStudio/Code 7/saveFiles: + "/AppData/LocalLow/GoodwolfStudio/Code 7/saveFiles": tags: - save when: @@ -104185,15 +104494,15 @@ Code 7: installDir: Code 7: {} launch: - /code7.app: + "/code7.app": - when: - os: mac store: steam - /code7.exe: + "/code7.exe": - when: - os: windows store: steam - /code7.x86_64: + "/code7.x86_64": - when: - os: linux store: steam @@ -104203,7 +104512,7 @@ Code 9: installDir: Code 9: {} launch: - /Code 9.exe: + "/Code 9.exe": - when: - os: windows store: steam @@ -104213,7 +104522,7 @@ Code Brown: installDir: Code Brown: {} launch: - /Code Brown.exe: + "/Code Brown.exe": - when: - os: windows store: steam @@ -104223,25 +104532,25 @@ Code Cracker: installDir: CODE_CRACKER: {} launch: - /code_cracker.app: + "/code_cracker.app": - when: - os: mac store: steam - /code_cracker.exe: + "/code_cracker.exe": - when: - os: windows store: steam - /code_cracker.sh: + "/code_cracker.sh": - when: - os: linux store: steam steam: id: 813300 -'Code Name: Origin': +"Code Name: Origin": installDir: Code Name Origin: {} launch: - /Code Name Origin_v1.0.2.exe: + "/Code Name Origin_v1.0.2.exe": - when: - os: windows store: steam @@ -104251,22 +104560,22 @@ Code Romantic: installDir: Code Romantic: {} launch: - /Code Romantic.exe: + "/Code Romantic.exe": - when: - os: windows store: steam - /CodeRomantic_Mac.app: + "/CodeRomantic_Mac.app": - when: - os: mac store: steam steam: id: 884980 -'Code S-44: Episode 1': +"Code S-44: Episode 1": installDir: Code S-44 Episode 1: {} launch: - /Code S-44.exe: - - arguments: \\windows_content\\ + "/Code S-44.exe": + - arguments: "\\\\windows_content\\\\" when: - os: windows store: steam @@ -104276,7 +104585,7 @@ Code Shifter: installDir: CodeShifter: {} launch: - /CodeShifter.exe: + "/CodeShifter.exe": - when: - bit: 64 os: windows @@ -104287,7 +104596,7 @@ Code Tracer: installDir: Code Tracer: {} launch: - /Code Tracer.exe: + "/Code Tracer.exe": - when: - os: windows store: steam @@ -104295,17 +104604,17 @@ Code Tracer: id: 1155390 Code Vein: files: - /CodeVein/Saved/Config/WindowsNoEditor: + "/CodeVein/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /CodeVein/Saved/SaveGames: + "/CodeVein/Saved/SaveGames": tags: - save when: - os: windows - /Packages/NAMCOBANDAIGamesInc.CODEVEINPCBaseGame_gdy2aq6ez762w/SystemAppData/wgs: + "/Packages/NAMCOBANDAIGamesInc.CODEVEINPCBaseGame_gdy2aq6ez762w/SystemAppData/wgs": tags: - save when: @@ -104314,7 +104623,7 @@ Code Vein: installDir: CODE VEIN: {} launch: - /CodeVein.exe: + "/CodeVein.exe": - when: - bit: 64 os: windows @@ -104325,28 +104634,28 @@ Code World: installDir: Code World: {} launch: - /Code World.exe: + "/Code World.exe": - when: - os: windows store: steam steam: id: 708190 -'Code of Honor 2: Conspiracy Island': +"Code of Honor 2: Conspiracy Island": files: - /Documents/City Interactive/CODE OF HONOR 2: + "/Documents/City Interactive/CODE OF HONOR 2": tags: - config - save when: - os: windows -'Code of Honor 3: Desperate Measures': +"Code of Honor 3: Desperate Measures": files: - /Documents/City Interactive/CODE OF HONOR 3: + "/Documents/City Interactive/CODE OF HONOR 3": tags: - config when: - os: windows - /Documents/City Interactive/CODE OF HONOR 3/save: + "/Documents/City Interactive/CODE OF HONOR 3/save": tags: - save when: @@ -104355,7 +104664,7 @@ Code of Princess: installDir: CODE OF PRINCESS: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -104365,7 +104674,7 @@ Code of Princess EX: installDir: Code of Princess EX: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -104375,21 +104684,21 @@ Code/The Werewolf Party: installDir: CodeThe Werewolf Party: {} launch: - /CodeThe Werewolf Party.exe: + "/CodeThe Werewolf Party.exe": - when: - store: steam steam: id: 1108240 -'Code51:Mecha Arena': +"Code51:Mecha Arena": installDir: Code51: {} steam: id: 640760 -'CodeRed: Agent Sarah''s Story - Day One': +"CodeRed: Agent Sarah's Story - Day One": installDir: - CodeRed Agent Sarah's Story - Day One: {} + "CodeRed Agent Sarah's Story - Day One": {} launch: - /CodeRedGame.exe: + "/CodeRedGame.exe": - when: - os: windows store: steam @@ -104399,15 +104708,15 @@ CodeSpells: installDir: CodeSpells: {} launch: - /codespells.app: + "/codespells.app": - when: - os: mac store: steam - /codespells.exe: + "/codespells.exe": - when: - os: windows store: steam - /codespells.x86_64: + "/codespells.x86_64": - when: - bit: 64 os: linux @@ -104418,7 +104727,7 @@ Codebreaker: installDir: Codebreaker: {} launch: - /Codebreaker.exe: + "/Codebreaker.exe": - when: - os: windows store: steam @@ -104428,11 +104737,11 @@ Codemancer: installDir: Codemancer: {} launch: - /CodemancerChapter1.app: + "/CodemancerChapter1.app": - when: - os: mac store: steam - /CodemancerChapter1.exe: + "/CodemancerChapter1.exe": - when: - os: windows store: steam @@ -104440,7 +104749,7 @@ Codemancer: id: 1103400 Codename CURE: files: - /cure/cfg: + "/cure/cfg": tags: - config when: @@ -104448,23 +104757,25 @@ Codename CURE: installDir: Codename CURE: {} launch: - /cure.exe: - - arguments: '-game cure -steam' + "/cure.exe": + - arguments: "-game cure -steam" when: - os: windows store: steam - /cure.sh: - - arguments: '-game cure -steam' + "/cure.sh": + - arguments: "-game cure -steam" when: - os: mac store: steam + - os: linux + store: steam steam: id: 355180 Codename Ghost Hunt: installDir: Codename Ghost Hunt: {} launch: - /CGH/CGH.exe: + "/CGH/CGH.exe": - when: - os: windows store: steam @@ -104474,22 +104785,22 @@ Codename Nemesis: installDir: Codename Nemesis: {} launch: - /Codename Nemesis.app: + "/Codename Nemesis.app": - when: - os: mac store: steam - /Codename Nemesis.exe: + "/Codename Nemesis.exe": - when: - os: windows store: steam steam: id: 993530 -'Codename: Agent Cat': +"Codename: Agent Cat": steam: id: 632150 -'Codename: Gordon': +"Codename: Gordon": files: - /Macromedia/Flash Player/localhost/hl2d_settings.sol: + "/Macromedia/Flash Player/localhost/hl2d_settings.sol": tags: - config when: @@ -104497,36 +104808,36 @@ Codename Nemesis: installDir: Codename Gordon: {} launch: - /cg.exe: + "/cg.exe": - when: - store: steam steam: id: 92 -'Codename: ICEMAN': +"Codename: ICEMAN": gog: id: 1405883093 -'Codename: Outbreak': +"Codename: Outbreak": files: - /GAME.INI: + "/GAME.INI": tags: - config when: - os: windows - /lev/Server.ini: + "/lev/Server.ini": tags: - config when: - os: windows - /savegame: + "/savegame": tags: - save when: - os: windows gog: id: 1434357748 -'Codename: Panzers - Cold War': +"Codename: Panzers - Cold War": files: - /My Games/Codename Panzers - Cold War/Profiles/001.profile/Saved Games: + "/My Games/Codename Panzers - Cold War/Profiles/001.profile/Saved Games": tags: - save when: @@ -104534,26 +104845,26 @@ Codename Nemesis: installDir: Codename Panzers Cold War: {} launch: - /Home/Game/CPCW.exe: + "/Home/Game/CPCW.exe": - when: - os: windows store: steam - workingDir: /Home/Game - - arguments: '-windowed' + workingDir: "/Home/Game" + - arguments: "-windowed" when: - os: windows store: steam - workingDir: /Home/Game + workingDir: "/Home/Game" steam: id: 9850 -'Codename: Panzers - Phase One': +"Codename: Panzers - Phase One": files: - /Run/SaveGames: + "/Run/SaveGames": tags: - save when: - os: windows - /options.ini: + "/options.ini": tags: - config when: @@ -104563,58 +104874,58 @@ Codename Nemesis: installDir: Codename Panzers Phase One: {} launch: - /PANZERS.exe: + "/PANZERS.exe": - when: - os: windows store: steam - - arguments: '-windowed' + - arguments: "-windowed" when: - os: windows store: steam - /PANZERS_MOD.exe: + "/PANZERS_MOD.exe": - when: - os: windows store: steam - - arguments: '-windowed' + - arguments: "-windowed" when: - os: windows store: steam steam: id: 411310 -'Codename: Panzers - Phase Two': +"Codename: Panzers - Phase Two": gog: id: 1455704410 installDir: Codename Panzers Phase Two: {} launch: - /Panzers_Phase_2.exe: + "/Panzers_Phase_2.exe": - when: - os: windows store: steam - - arguments: '-windowed' + - arguments: "-windowed" when: - os: windows store: steam - /Panzers_Phase_2_mod.exe: + "/Panzers_Phase_2_mod.exe": - when: - os: windows store: steam - - arguments: '-windowed' + - arguments: "-windowed" when: - os: windows store: steam steam: id: 411320 -'Codename: Phantom': +"Codename: Phantom": installDir: Codename Phantom VR: {} steam: id: 703140 -'Codename: Rogue Fleet': +"Codename: Rogue Fleet": installDir: Codename Rogue Fleet: {} launch: - /RogueFleet.exe: + "/RogueFleet.exe": - when: - os: windows store: steam @@ -104624,22 +104935,22 @@ CoderBear: installDir: CoderBear: {} launch: - /CoderBear.app/Contents/MacOS/Mac_Runner: + "/CoderBear.app/Contents/MacOS/Mac_Runner": - when: - os: mac store: steam - /CoderBear.exe: + "/CoderBear.exe": - when: - os: windows store: steam steam: id: 994360 -'Codex Temondera: Lost Vision': +"Codex Temondera: Lost Vision": installDir: Codex Temondera Lost Vision: {} launch: - /LostVision.exe: - - arguments: '--in-process-gpu' + "/LostVision.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam @@ -104647,7 +104958,7 @@ CoderBear: id: 1031800 Codex of Victory: files: - /AppData/LocalLow/Ino-Co/Codex of Victory/Saves: + "/AppData/LocalLow/Ino-Co/Codex of Victory/Saves": tags: - save when: @@ -104655,15 +104966,15 @@ Codex of Victory: installDir: Codex of Victory: {} launch: - /Codex of Victory.exe: + "/Codex of Victory.exe": - when: - os: windows store: steam - /Codex_of_Victory_linux.x86: + "/Codex_of_Victory_linux.x86": - when: - os: linux store: steam - /Codex_of_Victory_macOS.app: + "/Codex_of_Victory_macOS.app": - when: - os: mac store: steam @@ -104677,7 +104988,7 @@ Coffee Break: installDir: Coffee Break: {} launch: - /Coffee Break/Coffee Break.exe: + "/Coffee Break/Coffee Break.exe": - when: - os: windows store: steam @@ -104687,13 +104998,13 @@ Coffee Crawl: installDir: Coffee Crawl: {} launch: - /Game.app: - - arguments: '--in-process-gpu' + "/Game.app": + - arguments: "--in-process-gpu" when: - os: mac store: steam - /Game.exe: - - arguments: '--in-process-gpu' + "/Game.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam @@ -104703,21 +105014,21 @@ Coffee Crisis: installDir: Coffee Crisis: {} launch: - /Coffee_Crisis.app: + "/Coffee_Crisis.app": - when: - os: mac store: steam - /Coffee_Crisis.x86: + "/Coffee_Crisis.x86": - when: - bit: 32 os: linux store: steam - /Coffee_Crisis.x86_64: + "/Coffee_Crisis.x86_64": - when: - bit: 64 os: linux store: steam - /coffee_crisis.exe: + "/coffee_crisis.exe": - when: - os: windows store: steam @@ -104729,16 +105040,16 @@ Coffee Noir: installDir: Coffee Noir - Business Detective Game: {} launch: - /CoffeeNoir.app/Contents/MacOS/CoffeeNoir: + "/CoffeeNoir.app/Contents/MacOS/CoffeeNoir": - when: - os: mac store: steam - /CoffeeNoir.exe: + "/CoffeeNoir.exe": - when: - bit: 64 os: windows store: steam - /CoffeeNoir.x86_64: + "/CoffeeNoir.x86_64": - when: - bit: 64 os: linux @@ -104749,11 +105060,11 @@ Coffee Pixes: installDir: CoffeePixes: {} launch: - /CoPi.exe: + "/CoPi.exe": - when: - os: windows store: steam - /Coffee Pixes: + "/Coffee Pixes": - when: - os: mac store: steam @@ -104763,20 +105074,20 @@ Coffee Pot Terrarium: installDir: Coffee Pot Terrarium: {} launch: - /Coffee Pot Terrarium.app/Contents/MacOS/Coffee Pot Terrarium: + "/Coffee Pot Terrarium.app/Contents/MacOS/Coffee Pot Terrarium": - when: - os: mac store: steam - /Coffee Pot Terrarium.exe: + "/Coffee Pot Terrarium.exe": - when: - os: windows store: steam - /Coffee Pot Terrarium.x86: + "/Coffee Pot Terrarium.x86": - when: - bit: 32 os: linux store: steam - /Coffee Pot Terrarium.x86_64: + "/Coffee Pot Terrarium.x86_64": - when: - bit: 64 os: linux @@ -104787,7 +105098,7 @@ Coffee Run: installDir: Coffee Run: {} launch: - /Coffee Run 2.17.exe: + "/Coffee Run 2.17.exe": - when: - os: windows store: steam @@ -104797,7 +105108,7 @@ Coffee Runner Black and Mocha: installDir: Coffee Runner Black and Mocha: {} launch: - /FinalFinal.exe: + "/FinalFinal.exe": - when: - os: windows store: steam @@ -104807,7 +105118,7 @@ Coffee Rush: installDir: Coffee Rush: {} launch: - /CoffeeRush.exe: + "/CoffeeRush.exe": - when: - os: windows store: steam @@ -104817,11 +105128,11 @@ Coffee Shop Tycoon: installDir: Coffee Shop Tycoon: {} launch: - /Coffee Shop Tycoon.app: + "/Coffee Shop Tycoon.app": - when: - os: mac store: steam - /Coffee Shop Tycoon.exe: + "/Coffee Shop Tycoon.exe": - when: - os: windows store: steam @@ -104834,23 +105145,23 @@ Coffee Shop Tycoon: id: 370060 Coffee Talk: files: - /AppData/LocalLow/Toge Productions/CoffeeTalk/Data: + "/AppData/LocalLow/Toge Productions/CoffeeTalk/Data": tags: - save when: - os: windows - /AppData/LocalLow/Toge Productions/CoffeeTalk/Data/SettingsData: + "/AppData/LocalLow/Toge Productions/CoffeeTalk/Data/SettingsData": tags: - config when: - os: windows - /Packages/ChorusWorldwideGames.CoffeeTalk_3e08f9hn67c02/LocalState/playerprefs.dat: + "/Packages/ChorusWorldwideGames.CoffeeTalk_3e08f9hn67c02/LocalState/playerprefs.dat": tags: - config when: - os: windows store: microsoft - /Packages/ChorusWorldwideGames.CoffeeTalk_3e08f9hn67c02/SystemAppData/wgs: + "/Packages/ChorusWorldwideGames.CoffeeTalk_3e08f9hn67c02/SystemAppData/wgs": tags: - save when: @@ -104861,33 +105172,34 @@ Coffee Talk: installDir: Coffee Talk: {} launch: - /CoffeeTalk.app/Contents/MacOS/CoffeeTalk: + "/CoffeeTalk.app/Contents/MacOS/CoffeeTalk": - when: - os: mac store: steam - /CoffeeTalk.exe: + "/CoffeeTalk.exe": - when: - os: windows store: steam steam: id: 914800 -'Coffee Talk Episode 2: Hibiscus & Butterfly': +"Coffee Talk Episode 2: Hibiscus & Butterfly": files: - /AppData/LocalLow/Toge Productions/CTHB/SaveData/Steam/: + "/AppData/LocalLow/Toge Productions/CTHB/SaveData/Steam/": tags: - save when: - - store: steam + - os: windows + store: steam gog: id: 1414975207 installDir: Coffee Talk Episode 2 Hibiscus & Butterfly: {} launch: - /CTHB.app/Contents/MacOS/CTHB: + "/CTHB.app/Contents/MacOS/CTHB": - when: - os: mac store: steam - /CTHB.exe: + "/CTHB.exe": - when: - os: windows store: steam @@ -104907,11 +105219,11 @@ CoffeeBiz: installDir: CoffeeBiz: {} launch: - /Alpha2mac.app/Contents/MacOS/Alpha2mac: + "/Alpha2mac.app/Contents/MacOS/Alpha2mac": - when: - os: mac store: steam - /coffeeBiz.exe: + "/coffeeBiz.exe": - when: - os: windows store: steam @@ -104921,7 +105233,7 @@ Coffence: installDir: Coffence: {} launch: - /Game/CoffenceLauncher.exe: + "/Game/CoffenceLauncher.exe": - when: - bit: 64 os: windows @@ -104932,15 +105244,15 @@ Coffin Dodgers: installDir: Coffin Dodgers: {} launch: - /CoffinDodgers.app: + "/CoffinDodgers.app": - when: - os: mac store: steam - /CoffinDodgers.exe: + "/CoffinDodgers.exe": - when: - os: windows store: steam - /CoffinDodgers.x86: + "/CoffinDodgers.x86": - when: - os: linux store: steam @@ -104955,8 +105267,8 @@ Coffin of Ashes: installDir: Coffin of Ashes: {} launch: - /Game.exe: - - arguments: '--in-process-gpu' + "/Game.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam @@ -104972,7 +105284,7 @@ Cogito: id: 543710 Cogmind: files: - /user: + "/user": tags: - save when: @@ -104980,33 +105292,33 @@ Cogmind: installDir: Cogmind: {} launch: - /COGMIND.exe: + "/COGMIND.exe": - when: - os: windows store: steam steam: id: 722730 -'Cognition: An Erica Reed Thriller': +"Cognition: An Erica Reed Thriller": files: - /userdata//242780/remote/cognition _ episode 1: + "/userdata//242780/remote/cognition _ episode 1": tags: - save when: - os: windows store: steam - /userdata//242780/remote/cognition _ episode 2: + "/userdata//242780/remote/cognition _ episode 2": tags: - save when: - os: windows store: steam - /userdata//242780/remote/cognition _ episode 3: + "/userdata//242780/remote/cognition _ episode 3": tags: - save when: - os: windows store: steam - /userdata//242780/remote/cognition _ episode 4: + "/userdata//242780/remote/cognition _ episode 4": tags: - save when: @@ -105017,16 +105329,16 @@ Cogmind: installDir: Cognition: {} launch: - /Launcher/Cognition Launcher.app: + "/Launcher/Cognition Launcher.app": - when: - os: mac store: steam - workingDir: /Launcher - /Launcher/Cognition Launcher.exe: + workingDir: "/Launcher" + "/Launcher/Cognition Launcher.exe": - when: - os: windows store: steam - workingDir: /Launcher + workingDir: "/Launcher" registry: HKEY_CURRENT_USER/Software/Phoenix Online Studios/Cognition - Episode 1: tags: @@ -105046,7 +105358,7 @@ Cognizant Protocol: installDir: Cognizant Protocol: {} launch: - /Cognizant Protocol.exe: + "/Cognizant Protocol.exe": - when: - os: windows store: steam @@ -105056,20 +105368,20 @@ Cognizer: installDir: Cognizer: {} launch: - /Cognizer.app: + "/Cognizer.app": - when: - os: mac store: steam - /Cognizer.exe: + "/Cognizer.exe": - when: - os: windows store: steam - /Cognizer.x86: + "/Cognizer.x86": - when: - bit: 32 os: linux store: steam - /Cognizer.x86_64: + "/Cognizer.x86_64": - when: - bit: 64 os: linux @@ -105081,22 +105393,22 @@ Cogret: id: 1197480 Cogs: files: - /userdata//26500/remote: + "/userdata//26500/remote": tags: - save when: - store: steam - /Lazy 8 Studios/Cogs/playerInfo.dat: + "/Lazy 8 Studios/Cogs/playerInfo.dat": tags: - save when: - os: windows - /Lazy 8 Studios/Cogs/cogs.ini: + "/Lazy 8 Studios/Cogs/cogs.ini": tags: - config when: - os: windows - /Cogs: + "/Cogs": tags: - config - save @@ -105105,15 +105417,15 @@ Cogs: installDir: Cogs: {} launch: - /Cogs: + "/Cogs": - when: - os: linux store: steam - /Cogs.app: + "/Cogs.app": - when: - os: mac store: steam - /Cogs.exe: + "/Cogs.exe": - when: - os: windows store: steam @@ -105128,7 +105440,7 @@ Coin Commander: installDir: Coin Commander: {} launch: - /ProjectNitrogen.exe: + "/ProjectNitrogen.exe": - when: - os: windows store: steam @@ -105136,12 +105448,12 @@ Coin Commander: id: 1214530 Coin Crypt: files: - /Coin/config: + "/Coin/config": tags: - config when: - os: windows - /Coin/save: + "/Coin/save": tags: - save when: @@ -105149,15 +105461,15 @@ Coin Crypt: installDir: Coin Crypt: {} launch: - /Mac/CoinCrypt.app/Contents/MacOS/Mac_Runner: + "/Mac/CoinCrypt.app/Contents/MacOS/Mac_Runner": - when: - os: mac store: steam - /PC/CoinCrypt-win.exe: + "/PC/CoinCrypt-win.exe": - when: - os: windows store: steam - /Unix/runner: + "/Unix/runner": - when: - os: linux store: steam @@ -105167,7 +105479,7 @@ Coin Pickers: installDir: Coin Pickers: {} launch: - /Adventure3rdPerson.exe: + "/Adventure3rdPerson.exe": - when: - os: windows store: steam @@ -105177,7 +105489,7 @@ Coin Pusher: installDir: Coin Pusher: {} launch: - /Coin Pusher.exe: + "/Coin Pusher.exe": - when: - store: steam steam: @@ -105186,8 +105498,8 @@ Coin-Op Kingdom: installDir: Coin-Op Kingdom: {} launch: - /Coin-Op Kingdom.exe: - - arguments: '-windowed' + "/Coin-Op Kingdom.exe": + - arguments: "-windowed" when: - os: windows store: steam @@ -105200,7 +105512,7 @@ Coinon: installDir: Coinon: {} launch: - /coinon.exe: + "/coinon.exe": - when: - store: steam steam: @@ -105212,7 +105524,7 @@ Cold Bite: installDir: Cold Bite: {} launch: - /Cold Bite.exe: + "/Cold Bite.exe": - when: - store: steam steam: @@ -105221,16 +105533,16 @@ Cold Blooded Cube: installDir: Cold Blooded Cube: {} launch: - /cbcproject.exe: + "/cbcproject.exe": - when: - store: steam steam: id: 933070 -'Cold Cable: Lifeshift': +"Cold Cable: Lifeshift": installDir: Cold Cable Lifeshift: {} launch: - /Cold_Cable_Lifeshift.exe: + "/Cold_Cable_Lifeshift.exe": - when: - os: windows store: steam @@ -105240,7 +105552,7 @@ Cold Contract: installDir: Cold Contract: {} launch: - /cc.exe: + "/cc.exe": - when: - os: windows store: steam @@ -105256,7 +105568,7 @@ Cold Dreams (2015): id: 405040 Cold Fear: files: - /SAVES: + "/SAVES": tags: - save when: @@ -105264,7 +105576,7 @@ Cold Fear: installDir: Cold Fear: {} launch: - /coldfear_retail.exe: + "/coldfear_retail.exe": - when: - store: steam steam: @@ -105283,7 +105595,7 @@ Cold Shell: installDir: Cold Shell: {} launch: - /win64/Cold Shell.exe: + "/win64/Cold Shell.exe": - when: - store: steam steam: @@ -105292,7 +105604,7 @@ Cold Silence: installDir: Cold Silence: {} launch: - /cold_silence_upd_2.exe: + "/cold_silence_upd_2.exe": - when: - os: windows store: steam @@ -105302,15 +105614,15 @@ Cold Space: installDir: Cold Space: {} launch: - /ColdSpace.app/Contents/MacOS/ColdSpace: + "/ColdSpace.app/Contents/MacOS/ColdSpace": - when: - os: mac store: steam - /ColdSpace.exe: + "/ColdSpace.exe": - when: - os: windows store: steam - /ColdSpace.sh: + "/ColdSpace.sh": - when: - os: linux store: steam @@ -105320,11 +105632,11 @@ Cold Vengeance: installDir: Cold Vengeance: {} launch: - /Cold Vengeance.app: + "/Cold Vengeance.app": - when: - os: mac store: steam - /ColdVengeance.exe: + "/ColdVengeance.exe": - when: - os: windows store: steam @@ -105332,12 +105644,12 @@ Cold Vengeance: id: 502540 Cold War: files: - /Cold War/Config.txt: + "/Cold War/Config.txt": tags: - config when: - os: windows - /Cold War/Saves: + "/Cold War/Saves": tags: - save when: @@ -105345,7 +105657,7 @@ Cold War: installDir: Cold War: {} launch: - /coldwar.exe: + "/coldwar.exe": - when: - os: windows store: steam @@ -105355,7 +105667,7 @@ Cold War Game: installDir: Cold War Game: {} launch: - /ColdWarGame.exe: + "/ColdWarGame.exe": - when: - bit: 64 os: windows @@ -105367,7 +105679,7 @@ Cold War Minister: id: 1199690 Cold Waters: files: - /AppData/LocalLow/Killerfish Games/Cold Waters/savegame: + "/AppData/LocalLow/Killerfish Games/Cold Waters/savegame": tags: - save when: @@ -105377,11 +105689,11 @@ Cold Waters: installDir: Cold Waters: {} launch: - /ColdWaters.app: + "/ColdWaters.app": - when: - os: mac store: steam - /ColdWaters.exe: + "/ColdWaters.exe": - when: - os: windows store: steam @@ -105395,16 +105707,16 @@ Cold Winter Morning: installDir: Cold Winter Morning: {} launch: - /game.exe: - - arguments: '--in-process-gpu' + "/game.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam steam: id: 1217440 -'Cold Zero: No Mercy': +"Cold Zero: No Mercy": files: - /save: + "/save": tags: - save when: @@ -105413,7 +105725,7 @@ Cold wires: installDir: Cold wires: {} launch: - /Cold wires.exe: + "/Cold wires.exe": - when: - store: steam steam: @@ -105422,7 +105734,7 @@ ColdSide: installDir: ColdSide: {} launch: - /bin/win_x64/ColdSide.exe: + "/bin/win_x64/ColdSide.exe": - when: - os: windows store: steam @@ -105432,11 +105744,11 @@ Coldfall: installDir: Coldfall: {} launch: - /Coldfall Local.exe: + "/Coldfall Local.exe": - when: - os: windows store: steam - /runner: + "/runner": - when: - os: linux store: steam @@ -105446,11 +105758,11 @@ Coldfire Keep: installDir: Coldfire Keep: {} launch: - /ColdfireKeep.app: + "/ColdfireKeep.app": - when: - os: mac store: steam - /ColdfireKeep.exe: + "/ColdfireKeep.exe": - when: - os: windows store: steam @@ -105460,17 +105772,17 @@ ColecoVision Flashback: installDir: ColecoVision Flashback: {} launch: - /CV40-121514.exe: + "/CV40-121514.exe": - when: - os: windows store: steam steam: id: 529860 -Colette's Sugar Madness: +"Colette's Sugar Madness": installDir: - Colette's Sugar Madness: {} + "Colette's Sugar Madness": {} launch: - /ColetteCandy.exe: + "/ColetteCandy.exe": - when: - bit: 64 os: windows @@ -105479,24 +105791,24 @@ Colette's Sugar Madness: id: 938170 Colin McRae Rally: files: - /save: + "/save": tags: - save when: - os: windows Colin McRae Rally (2014): files: - /CMR_Data/Saves: + "/CMR_Data/Saves": tags: - save when: - os: windows - /CMR_Data/Saves/Options.txt: + "/CMR_Data/Saves/Options.txt": tags: - config when: - os: windows - /Cmr.app/Contents/Saves: + "/Cmr.app/Contents/Saves": tags: - config - save @@ -105505,11 +105817,11 @@ Colin McRae Rally (2014): installDir: Colin McRae Rally: {} launch: - /CMR.exe: + "/CMR.exe": - when: - os: windows store: steam - /Cmr.app: + "/Cmr.app": - when: - os: mac store: steam @@ -105521,32 +105833,32 @@ Colin McRae Rally (2014): id: 287340 Colin McRae Rally 04: files: - /BESTTIMES_GHOSTS: + "/BESTTIMES_GHOSTS": tags: - save when: - os: windows - /CHAMPIONSHIP_SLOT_*: + "/CHAMPIONSHIP_SLOT_*": tags: - save when: - os: windows - /OPTIONS: + "/OPTIONS": tags: - config when: - os: windows - /SpecSelection.bin: + "/SpecSelection.bin": tags: - config when: - os: windows - /netopts: + "/netopts": tags: - config when: - os: windows - /network.cfg: + "/network.cfg": tags: - config when: @@ -105557,24 +105869,24 @@ Colin McRae Rally 04: - config Colin McRae Rally 2.0: files: - /Configuration: + "/Configuration": tags: - config when: - os: windows - /gamesave: + "/gamesave": tags: - save when: - os: windows - /pps: + "/pps": tags: - save when: - os: windows Colin McRae Rally 2005: files: - /SG: + "/SG": tags: - save when: @@ -105587,7 +105899,7 @@ Colin McRae Rally 2005: - config Colin McRae Rally 3: files: - /CMR3: + "/CMR3": tags: - save when: @@ -105596,24 +105908,24 @@ Colin McRae Rally 3: HKEY_LOCAL_MACHINE/SOFTWARE/WOW6432Node/Codemasters/Colin McRae Rally 3: tags: - config -'Colin McRae: DiRT': +"Colin McRae: DiRT": files: - /savegame: + "/savegame": tags: - save when: - store: steam - /system: + "/system": tags: - config when: - store: steam - /Codemasters/DiRT/hardware_settings_config.xml: + "/Codemasters/DiRT/hardware_settings_config.xml": tags: - config when: - os: windows - /Codemasters/DiRT/savegame: + "/Codemasters/DiRT/savegame": tags: - save when: @@ -105621,24 +105933,24 @@ Colin McRae Rally 3: installDir: DiRT: {} launch: - /dirt.exe: + "/dirt.exe": - when: - store: steam steam: id: 11440 -'Colin McRae: DiRT 2': +"Colin McRae: DiRT 2": files: - /Library/Application Support/Feral Interactive/DiRT 2/Savegame: + "/Library/Application Support/Feral Interactive/DiRT 2/Savegame": tags: - save when: - os: mac - /My Games/DiRT2/hardwaresettings/hardware_settings_config.xml: + "/My Games/DiRT2/hardwaresettings/hardware_settings_config.xml": tags: - config when: - os: windows - /My Games/DiRT2/savegame: + "/My Games/DiRT2/savegame": tags: - save when: @@ -105646,19 +105958,19 @@ Colin McRae Rally 3: installDir: Dirt 2: {} launch: - /dirt2.exe: + "/dirt2.exe": - when: - store: steam steam: id: 12840 Collapse: files: - /Creoteam Collapse/saveGame: + "/Creoteam Collapse/saveGame": tags: - save when: - os: windows - /Creoteam Collapse/setup.ini: + "/Creoteam Collapse/setup.ini": tags: - config when: @@ -105666,29 +105978,29 @@ Collapse: installDir: Collapse: {} launch: - /collapse.exe: + "/collapse.exe": - when: - store: steam steam: id: 289620 Collapsed: files: - /AppData/LocalLow/Glaive Games/Collapsed/GameDataState: + "/AppData/LocalLow/Glaive Games/Collapsed/GameDataState": tags: - config when: - os: windows - /AppData/LocalLow/Glaive Games/Collapsed/InputSettings: + "/AppData/LocalLow/Glaive Games/Collapsed/InputSettings": tags: - config when: - os: windows - /AppData/LocalLow/Glaive Games/Collapsed/shared.dat: + "/AppData/LocalLow/Glaive Games/Collapsed/shared.dat": tags: - save when: - os: windows - /AppData/LocalLow/Glaive Games/Collapsed/user*.dat: + "/AppData/LocalLow/Glaive Games/Collapsed/user*.dat": tags: - save when: @@ -105698,7 +106010,7 @@ Collapsed: installDir: Collapsed: {} launch: - /Collapsed.exe: + "/Collapsed.exe": - when: - os: windows store: steam @@ -105712,41 +106024,42 @@ Collateral: installDir: Collateral: {} launch: - /Binaries/Win32/CollateralGame.exe: + "/Binaries/Win32/CollateralGame.exe": - when: - store: steam - /Binaries/Win64/CollateralGame.exe: + "/Binaries/Win64/CollateralGame.exe": - when: - bit: 64 store: steam steam: id: 297390 -'Collection of SaGa: Final Fantasy Legend': +"Collection of SaGa: Final Fantasy Legend": files: - /My Games/Sa・Ga COLLECTION/Steam/: + "/My Games/Sa・Ga COLLECTION/Steam/": tags: - save when: - - store: steam + - os: windows + store: steam installDir: Sa・Ga COLLECTION: {} launch: - /Sa・Ga COLLECTION.exe: + "/Sa・Ga COLLECTION.exe": - when: - bit: 64 os: windows store: steam steam: id: 1642620 -'Collective: the Community Created Card Game': +"Collective: the Community Created Card Game": installDir: Collective Card Game: {} launch: - /Collective.app: + "/Collective.app": - when: - os: mac store: steam - /Collective.exe: + "/Collective.exe": - when: - bit: 64 os: windows @@ -105757,7 +106070,7 @@ Collector: installDir: Collector: {} launch: - /Collector.exe: + "/Collector.exe": - when: - os: windows store: steam @@ -105767,15 +106080,15 @@ College Bound - Episode 1: installDir: College Bound: {} launch: - /CollegeBound.app: + "/CollegeBound.app": - when: - os: mac store: steam - /CollegeBound.exe: + "/CollegeBound.exe": - when: - os: windows store: steam - /CollegeBound.sh: + "/CollegeBound.sh": - when: - os: linux store: steam @@ -105785,15 +106098,15 @@ College Craze: installDir: College Craze: {} launch: - /CollegeCraze.exe: + "/CollegeCraze.exe": - when: - os: windows store: steam - /CollegeCraze.sh: + "/CollegeCraze.sh": - when: - os: linux store: steam - /Contents/MacOS/CollegeCraze: + "/Contents/MacOS/CollegeCraze": - when: - os: mac store: steam @@ -105804,13 +106117,13 @@ College Days: id: 467700 College Kings - Act I: files: - /game/saves: + "/game/saves": tags: - save when: - os: windows - os: linux - /Library/RenPy/CollegeKings: + "/Library/RenPy/CollegeKings": tags: - save when: @@ -105818,15 +106131,15 @@ College Kings - Act I: installDir: College Kings: {} launch: - /CollegeKings.app: + "/CollegeKings.app": - when: - os: mac store: steam - /CollegeKings.exe: + "/CollegeKings.exe": - when: - os: windows store: steam - /CollegeKings.sh: + "/CollegeKings.sh": - when: - os: linux store: steam @@ -105836,13 +106149,13 @@ Collide: installDir: Collide: {} launch: - /nw: - - arguments: '--in-process-gpu' + "/nw": + - arguments: "--in-process-gpu" when: - os: linux store: steam - /nw.exe: - - arguments: '--in-process-gpu' + "/nw.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam @@ -105852,25 +106165,25 @@ Collider: installDir: Collider: {} launch: - /love.app/Contents/MacOS/love: + "/love.app/Contents/MacOS/love": - arguments: collider.love when: - bit: 64 os: mac store: steam - /love.bin.x86: + "/love.bin.x86": - arguments: collider.love when: - bit: 32 os: linux store: steam - /love.bin.x86_64: + "/love.bin.x86_64": - arguments: collider.love when: - bit: 64 os: linux store: steam - /love.exe: + "/love.exe": - arguments: collider.love when: - os: windows @@ -105884,7 +106197,7 @@ Colliderscope: installDir: Colliderscope: {} launch: - /Colliderscope.exe: + "/Colliderscope.exe": - when: - os: windows store: steam @@ -105894,7 +106207,7 @@ Collision Course: installDir: CollisionCourse: {} launch: - /bin/win_x64/CollisionCourse.exe: + "/bin/win_x64/CollisionCourse.exe": - when: - bit: 64 os: windows @@ -105905,18 +106218,18 @@ Collisions: installDir: collisions: {} launch: - /Contents/MacOS/love: + "/Contents/MacOS/love": - arguments: collisions.love --fused when: - os: mac store: steam - /love: + "/love": - arguments: collisions.love --fused when: - bit: 64 os: linux store: steam - /love.exe: + "/love.exe": - arguments: collisions.love --fused when: - os: windows @@ -105927,11 +106240,11 @@ Colloc: installDir: Colloc: {} launch: - /Colloc.exe: + "/Colloc.exe": - when: - os: windows store: steam - /Colloc_macOS.app/Contents/MacOS/Colloc_macOS: + "/Colloc_macOS.app/Contents/MacOS/Colloc_macOS": - when: - os: mac store: steam @@ -105941,34 +106254,34 @@ Colo Grid Zation: installDir: Colo Grid Zation: {} launch: - /ColoGridZation.exe: + "/ColoGridZation.exe": - when: - os: windows store: steam - /Contents/MacOS/ColoGridZation: + "/Contents/MacOS/ColoGridZation": - when: - os: mac store: steam steam: id: 946790 -'Colobot: Gold Edition': +"Colobot: Gold Edition": files: - /colobot/colobot.ini: + "/colobot/colobot.ini": tags: - config when: - os: windows - /colobot/savegame: + "/colobot/savegame": tags: - save when: - os: windows - /colobot/colobot.ini: + "/colobot/colobot.ini": tags: - config when: - os: linux - /colobot/savegame: + "/colobot/savegame": tags: - save when: @@ -105977,7 +106290,7 @@ Cologne: installDir: Cologne: {} launch: - /Cologne.exe: + "/Cologne.exe": - when: - os: windows store: steam @@ -105987,19 +106300,19 @@ Colonial Conquest: installDir: Colonial Conquest: {} launch: - /32bit/ColonialConquest.exe: + "/32bit/ColonialConquest.exe": - when: - bit: 32 os: windows store: steam - workingDir: /32bit - /64bit/ColonialConquest.exe: + workingDir: "/32bit" + "/64bit/ColonialConquest.exe": - when: - bit: 64 os: windows store: steam - workingDir: /64bit - /ColonialConquest.app: + workingDir: "/64bit" + "/ColonialConquest.app": - when: - os: mac store: steam @@ -106014,7 +106327,7 @@ Colonies: installDir: Colonies: {} launch: - /Colonies.exe: + "/Colonies.exe": - when: - bit: 64 os: windows @@ -106025,7 +106338,7 @@ Colonies End: installDir: Colonies End: {} launch: - /ColoniesEnd.exe: + "/ColoniesEnd.exe": - when: - bit: 64 os: windows @@ -106036,7 +106349,7 @@ Colonies Online: installDir: Colonies Online: {} launch: - /launcher.exe: + "/launcher.exe": - when: - os: windows store: steam @@ -106046,7 +106359,7 @@ Colonization of the Moon: installDir: Colonization of the Moon 1.01: {} launch: - /Cos.exe: + "/Cos.exe": - when: - os: windows store: steam @@ -106056,11 +106369,11 @@ Colonumbers: installDir: Colonumbers: {} launch: - /Colonumbers.app/Contents/MacOS/Mac_Runner: + "/Colonumbers.app/Contents/MacOS/Mac_Runner": - when: - os: mac store: steam - /Colonumbers.exe: + "/Colonumbers.exe": - when: - os: windows store: steam @@ -106070,7 +106383,7 @@ Colony: installDir: Colony: {} launch: - /Colony.exe: + "/Colony.exe": - when: - bit: 32 os: windows @@ -106081,15 +106394,15 @@ Colony (2017): installDir: Colony: {} launch: - /Colony.exe: + "/Colony.exe": - when: - os: windows store: steam - /Colony.sh: + "/Colony.sh": - when: - os: linux store: steam - /ColonyGameStart.sh: + "/ColonyGameStart.sh": - when: - os: mac store: steam @@ -106099,7 +106412,7 @@ Colony Assault: installDir: Colony Assault: {} launch: - /ColonyAssaultLauncher.exe: + "/ColonyAssaultLauncher.exe": - when: - os: windows store: steam @@ -106109,23 +106422,23 @@ Colony Prospector: installDir: Colony Prospector: {} launch: - /Game: + "/Game": - when: - os: linux store: steam - /Game.app/Contents/MacOS/nwjs: + "/Game.app/Contents/MacOS/nwjs": - when: - os: mac store: steam - /Game.exe: + "/Game.exe": - when: - os: windows store: steam steam: id: 843510 -'Colony Ship: A Post-Earth Role Playing Game': +"Colony Ship: A Post-Earth Role Playing Game": files: - /ColonyShipGame/Saved/SaveGames: + "/ColonyShipGame/Saved/SaveGames": tags: - save when: @@ -106135,7 +106448,7 @@ Colony Prospector: installDir: Colony Ship RPG: {} launch: - /ColonyShipGame.exe: + "/ColonyShipGame.exe": - when: - bit: 64 os: windows @@ -106146,7 +106459,7 @@ Colony Siege: installDir: Colony Siege: {} launch: - /cs.exe: + "/cs.exe": - when: - os: windows store: steam @@ -106154,13 +106467,13 @@ Colony Siege: id: 1198740 Colony Survival: files: - /Colony Survival/gamedata/savegames: + "/Colony Survival/gamedata/savegames": tags: - save when: - os: windows - os: linux - /Colony Survival/gamedata/savegames/*.json: + "/Colony Survival/gamedata/savegames/*.json": tags: - config when: @@ -106168,20 +106481,20 @@ Colony Survival: installDir: Colony Survival: {} launch: - /colonyclient.app: + "/colonyclient.app": - when: - os: mac store: steam - /colonyclient.exe: + "/colonyclient.exe": - when: - os: windows store: steam - /colonyclient.x86: + "/colonyclient.x86": - when: - bit: 32 os: linux store: steam - /colonyclient.x86_64: + "/colonyclient.x86_64": - when: - bit: 64 os: linux @@ -106192,13 +106505,13 @@ Colony on Mars: installDir: Colony On Mars: {} launch: - /Colony On Mars.exe: + "/Colony On Mars.exe": - when: - os: windows store: steam steam: id: 773640 -'ColonyShip-4: Survivors': +"ColonyShip-4: Survivors": steam: id: 947500 Color: @@ -106208,7 +106521,7 @@ Color +: installDir: Color +: {} launch: - /ColorPlus.exe: + "/ColorPlus.exe": - when: - store: steam steam: @@ -106217,7 +106530,7 @@ Color Assembler: installDir: Color Assembler: {} launch: - /ColorAssembler.exe: + "/ColorAssembler.exe": - when: - store: steam steam: @@ -106232,20 +106545,20 @@ Color By: installDir: Color By: {} launch: - /ColorBy.app: + "/ColorBy.app": - when: - os: mac store: steam - /ColorBy.exe: + "/ColorBy.exe": - when: - os: windows store: steam - /ColorBy.x86: + "/ColorBy.x86": - when: - bit: 32 os: linux store: steam - /ColorBy.x86_64: + "/ColorBy.x86_64": - when: - bit: 64 os: linux @@ -106256,7 +106569,7 @@ Color Cannons+: installDir: Color Cannons+: {} launch: - /Color Cannons+.exe: + "/Color Cannons+.exe": - when: - bit: 64 os: windows @@ -106267,15 +106580,15 @@ Color Chain: installDir: Color Chain: {} launch: - /Color Chain.app: + "/Color Chain.app": - when: - os: mac store: steam - /Color Chain.exe: + "/Color Chain.exe": - when: - os: windows store: steam - /Color Chain.x86: + "/Color Chain.x86": - when: - os: linux store: steam @@ -106285,7 +106598,7 @@ Color Chaos: installDir: ColorChaos: {} launch: - /ColorChaos.exe: + "/ColorChaos.exe": - when: - os: windows store: steam @@ -106301,15 +106614,15 @@ Color Circle: installDir: Color Circle: {} launch: - /ColorCircle.app/Contents/MacOS/ColorCircle: + "/ColorCircle.app/Contents/MacOS/ColorCircle": - when: - os: mac store: steam - /ColorCircle.exe: + "/ColorCircle.exe": - when: - os: windows store: steam - /ColorCircle_Linux/ColorCircle.x86: + "/ColorCircle_Linux/ColorCircle.x86": - when: - os: linux store: steam @@ -106319,7 +106632,7 @@ Color Defense: installDir: Color Defense: {} launch: - /Color Defense.exe: + "/Color Defense.exe": - when: - store: steam steam: @@ -106328,7 +106641,7 @@ Color Guardian: installDir: ColorGuardian: {} launch: - /Color Guardian.exe: + "/Color Guardian.exe": - when: - store: steam steam: @@ -106337,11 +106650,11 @@ Color Guardians: installDir: Color Guardians: {} launch: - /ColorGuardians.app: + "/ColorGuardians.app": - when: - os: mac store: steam - /ColorGuardians.exe: + "/ColorGuardians.exe": - when: - os: windows store: steam @@ -106354,15 +106667,15 @@ Color Jumper: installDir: Color Jumper: {} launch: - /Color Jumper.app: + "/Color Jumper.app": - when: - os: mac store: steam - /Color Jumper.exe: + "/Color Jumper.exe": - when: - os: windows store: steam - /Color Jumper.x86_64: + "/Color Jumper.x86_64": - when: - os: linux store: steam @@ -106372,7 +106685,7 @@ Color Party: installDir: Color Party: {} launch: - /ColorParty.exe: + "/ColorParty.exe": - when: - os: windows store: steam @@ -106382,7 +106695,7 @@ Color Path: installDir: Color Path: {} launch: - /Color Path.exe: + "/Color Path.exe": - when: - os: windows store: steam @@ -106392,7 +106705,7 @@ Color Slayer: installDir: Color Slayer: {} launch: - /ColorSlayer.exe: + "/ColorSlayer.exe": - when: - os: windows store: steam @@ -106401,15 +106714,15 @@ Color Slayer: Color Snooker: steam: id: 675760 -'Color Soul: Memories': +"Color Soul: Memories": installDir: Color Soul Memories: {} launch: - /Color Soul Memories.app/Contents/MacOS/Color Soul Memories: + "/Color Soul Memories.app/Contents/MacOS/Color Soul Memories": - when: - os: mac store: steam - /Color Soul Memories.exe: + "/Color Soul Memories.exe": - when: - bit: 64 os: windows @@ -106420,17 +106733,17 @@ Color Sudoku: installDir: Color Sudoku: {} launch: - /Color Sudoku.app/Contents/MacOS/Color Sudoku: + "/Color Sudoku.app/Contents/MacOS/Color Sudoku": - when: - bit: 64 os: mac store: steam - /Color Sudoku.exe: + "/Color Sudoku.exe": - when: - bit: 64 os: windows store: steam - /Color Sudoku.x86_64: + "/Color Sudoku.x86_64": - when: - bit: 64 os: linux @@ -106439,12 +106752,12 @@ Color Sudoku: id: 711190 Color Symphony: files: - /save/Config.dtcf: + "/save/Config.dtcf": tags: - config when: - os: windows - /save/Player.sav: + "/save/Player.sav": tags: - save when: @@ -106457,20 +106770,20 @@ Color Symphony 2: installDir: Color Symphony 2: {} launch: - /ColorSymphony2.app/Contents/MacOS/ColorSymphony2: + "/ColorSymphony2.app/Contents/MacOS/ColorSymphony2": - when: - os: mac store: steam - /ColorSymphony2.exe: + "/ColorSymphony2.exe": - when: - os: windows store: steam - /ColorSymphony2.x86: + "/ColorSymphony2.x86": - when: - bit: 32 os: linux store: steam - /ColorSymphony2.x86_64: + "/ColorSymphony2.x86_64": - when: - bit: 64 os: linux @@ -106484,7 +106797,7 @@ Color ball: installDir: Color ball: {} launch: - /colorball.exe: + "/colorball.exe": - when: - os: windows store: steam @@ -106494,7 +106807,7 @@ Color by Number - Pixel Draw: installDir: Pixel Draw: {} launch: - /Pixel Draw.exe: + "/Pixel Draw.exe": - when: - os: windows store: steam @@ -106504,16 +106817,16 @@ Color by Numbers - Animals: installDir: Color by Numbers - Animals: {} launch: - /Color by Numbers - Animals.app/Contents/MacOS/Color by Numbers - Animals: + "/Color by Numbers - Animals.app/Contents/MacOS/Color by Numbers - Animals": - when: - os: mac store: steam - /cbn-animals.exe: + "/cbn-animals.exe": - when: - bit: 64 os: windows store: steam - /cbn-animals.x86_64: + "/cbn-animals.x86_64": - when: - bit: 64 os: linux @@ -106524,16 +106837,16 @@ Color by Numbers - Christmas: installDir: Color by Numbers - Christmas: {} launch: - /Color by Numbers - Christmas.app/Contents/MacOS/Color by Numbers - Christmas: + "/Color by Numbers - Christmas.app/Contents/MacOS/Color by Numbers - Christmas": - when: - os: mac store: steam - /cbn-christmas.exe: + "/cbn-christmas.exe": - when: - bit: 64 os: windows store: steam - /cbn-christmas.x86_64: + "/cbn-christmas.x86_64": - when: - bit: 64 os: linux @@ -106544,16 +106857,16 @@ Color by Numbers - Dinosaurs: installDir: Color by Numbers - Dinosaurs: {} launch: - /Color by Numbers - Dinosaurs.app/Contents/MacOS/Color by Numbers - Dinosaurs: + "/Color by Numbers - Dinosaurs.app/Contents/MacOS/Color by Numbers - Dinosaurs": - when: - os: mac store: steam - /cbn-dinosaurs.exe: + "/cbn-dinosaurs.exe": - when: - bit: 64 os: windows store: steam - /cbn-dinosaurs.x86_64: + "/cbn-dinosaurs.x86_64": - when: - bit: 64 os: linux @@ -106564,16 +106877,16 @@ Color by Numbers - Flowers: installDir: Color by Numbers - Flowers: {} launch: - /Color by Numbers - Flowers.app/Contents/MacOS/Color by Numbers - Flowers: + "/Color by Numbers - Flowers.app/Contents/MacOS/Color by Numbers - Flowers": - when: - os: mac store: steam - /cbn-flowers.exe: + "/cbn-flowers.exe": - when: - bit: 64 os: windows store: steam - /cbn-flowers.x86_64: + "/cbn-flowers.x86_64": - when: - bit: 64 os: linux @@ -106584,16 +106897,16 @@ Color by Numbers - Halloween: installDir: Color by Numbers - Halloween: {} launch: - /Color by Numbers - Halloween.app/Contents/MacOS/Color by Numbers - Halloween: + "/Color by Numbers - Halloween.app/Contents/MacOS/Color by Numbers - Halloween": - when: - os: mac store: steam - /cbn-halloween.exe: + "/cbn-halloween.exe": - when: - bit: 64 os: windows store: steam - /cbn-halloween.x86_64: + "/cbn-halloween.x86_64": - when: - bit: 64 os: linux @@ -106604,7 +106917,7 @@ ColorCode: installDir: ColorCode: {} launch: - /ColorCode.exe: + "/ColorCode.exe": - when: - os: windows store: steam @@ -106614,12 +106927,12 @@ ColorCube: installDir: ColorCube: {} launch: - /ColorCube.exe: + "/ColorCube.exe": - when: - bit: 64 os: windows store: steam - /ColorCube.sh: + "/ColorCube.sh": - when: - bit: 64 os: linux @@ -106636,7 +106949,7 @@ Colorful Life: installDir: Colorful Life: {} launch: - /ColorfulLife.exe: + "/ColorfulLife.exe": - when: - os: windows store: steam @@ -106646,11 +106959,11 @@ Colorgrid: installDir: Colorgrid: {} launch: - /Colorgrid.exe: + "/Colorgrid.exe": - when: - os: windows store: steam - /Colorgrid_Steam.app/Contents/MacOS/Colorgrid: + "/Colorgrid_Steam.app/Contents/MacOS/Colorgrid": - when: - os: mac store: steam @@ -106660,7 +106973,7 @@ Coloring Book: installDir: Coloring Book: {} launch: - /nw.exe: + "/nw.exe": - when: - store: steam steam: @@ -106669,7 +106982,7 @@ Coloring Game: installDir: Coloring Game: {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: @@ -106678,25 +106991,25 @@ Coloring Game 2: installDir: Coloring game 2: {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: id: 1216200 -'Coloring Game: Little City': +"Coloring Game: Little City": installDir: Coloring Game The Little City: {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: id: 1132190 -'Coloring Game: Pixel': +"Coloring Game: Pixel": installDir: Coloring Game Pixel: {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: @@ -106706,7 +107019,7 @@ Coloring Girls: id: 1153610 Coloring Pixels: files: - /AppData/LocalLow/ToastieLabs/ColoringPixels: + "/AppData/LocalLow/ToastieLabs/ColoringPixels": tags: - save when: @@ -106714,15 +107027,15 @@ Coloring Pixels: installDir: Coloring Pixels: {} launch: - /Coloring Pixels.app: + "/Coloring Pixels.app": - when: - os: mac store: steam - /ColoringPixels: + "/ColoringPixels": - when: - os: linux store: steam - /ColoringPixels.exe: + "/ColoringPixels.exe": - when: - os: windows store: steam @@ -106741,7 +107054,7 @@ Colormeleons: installDir: Colormeleons: {} launch: - /CM.exe: + "/CM.exe": - when: - store: steam steam: @@ -106750,31 +107063,34 @@ Colortone: installDir: Colortone: {} launch: - /colortone.app/Contents/MacOS/colortone: + "/colortone.app/Contents/MacOS/colortone": - arguments: Colortone when: - os: mac store: steam - workingDir: /osx - /colortone.exe: + workingDir: "/osx" + "/colortone.exe": - arguments: Colortone when: - bit: 32 os: windows store: steam - /colortone.x86_64: + - bit: 64 + os: windows + store: steam + "/colortone.x86_64": - arguments: Colortone when: - os: linux store: steam - workingDir: /linux + workingDir: "/linux" steam: id: 375320 Colorvore: installDir: Colorvore: {} launch: - /Colorvore.exe: + "/Colorvore.exe": - when: - os: windows store: steam @@ -106784,7 +107100,7 @@ Colorzzle: installDir: Colorzzle: {} launch: - /Colorzzle.exe: + "/Colorzzle.exe": - when: - os: windows store: steam @@ -106796,26 +107112,26 @@ Colossal Cave: installDir: Colossal Cave: {} launch: - /Colossal Cave.app/Contents/MacOS/Colossal Cave: + "/Colossal Cave.app/Contents/MacOS/Colossal Cave": - when: - os: mac store: steam - /Colossal Cave.exe: + "/Colossal Cave.exe": - when: - bit: 64 os: windows store: steam - /Colossal Cave.x86_64: + "/Colossal Cave.x86_64": - when: - os: linux store: steam steam: id: 2215540 -'Colossal Kaiju Combat: Kaijuland Battles': +"Colossal Kaiju Combat: Kaijuland Battles": installDir: CKC_KLB: {} launch: - /Kaiju.exe: + "/Kaiju.exe": - when: - os: windows store: steam @@ -106825,7 +107141,7 @@ Colossal Saga: installDir: Colossal Saga: {} launch: - /Colossal Saga.exe: + "/Colossal Saga.exe": - when: - os: windows store: steam @@ -106835,7 +107151,7 @@ Colossals: installDir: Colossals: {} launch: - /COLOSSALS !/Game.exe: + "/COLOSSALS !/Game.exe": - when: - store: steam steam: @@ -106849,7 +107165,7 @@ Colosso Crystal Skulls: installDir: CCS1: {} launch: - /CCS1.exe: + "/CCS1.exe": - when: - os: windows store: steam @@ -106859,12 +107175,12 @@ Colour Bind: installDir: ColourBind: {} launch: - /Colour Bind.app: + "/Colour Bind.app": - when: - os: mac store: steam - workingDir: /Colour Bind.app/Contents/Resources - /Colourbind.exe: + workingDir: "/Colour Bind.app/Contents/Resources" + "/Colourbind.exe": - when: - os: windows store: steam @@ -106874,7 +107190,7 @@ Colour Box: installDir: Colour Box: {} launch: - /Colour Box.exe: + "/Colour Box.exe": - when: - os: windows store: steam @@ -106884,7 +107200,7 @@ Colourful Maze: installDir: Colourful Maze: {} launch: - /Colourful Maze.exe: + "/Colourful Maze.exe": - when: - os: windows store: steam @@ -106899,25 +107215,25 @@ Colourless: installDir: Colourless: {} launch: - /Colourless.exe: + "/Colourless.exe": - when: - os: windows store: steam steam: id: 953340 -'Colours of Magic: Aqua Teeter': +"Colours of Magic: Aqua Teeter": installDir: Colours of Magic Aqua Teeter: {} launch: - /CM.sh: + "/CM.sh": - when: - os: linux store: steam - /Colours of Magic.app: + "/Colours of Magic.app": - when: - os: mac store: steam - /Fluids.W7.exe: + "/Fluids.W7.exe": - when: - os: windows store: steam @@ -106925,12 +107241,12 @@ Colourless: id: 464230 Colt Canyon: files: - /ColtCanyon/userdata/save.sav: + "/ColtCanyon/userdata/save.sav": tags: - save when: - os: windows - /ColtCanyon/userdata/settings.ini: + "/ColtCanyon/userdata/settings.ini": tags: - config when: @@ -106940,7 +107256,7 @@ Colt Canyon: installDir: Colt Canyon: {} launch: - /ColtCanyon.exe: + "/ColtCanyon.exe": - when: - os: windows store: steam @@ -106948,7 +107264,7 @@ Colt Canyon: id: 940710 Colt Express: files: - /AppData/LocalLow/Asmodee/Colt Express: + "/AppData/LocalLow/Asmodee/Colt Express": tags: - save when: @@ -106956,7 +107272,7 @@ Colt Express: installDir: Colt Express: {} launch: - /game.exe: + "/game.exe": - when: - store: steam registry: @@ -106972,7 +107288,7 @@ Column Taker: installDir: Column Taker: {} launch: - /ColumnTaker.exe: + "/ColumnTaker.exe": - when: - os: windows store: steam @@ -106982,7 +107298,7 @@ Column on the Sea: installDir: Column on the Sea: {} launch: - /Column on the Sea.exe: + "/Column on the Sea.exe": - when: - os: windows store: steam @@ -106990,46 +107306,46 @@ Column on the Sea: id: 1147280 Columns: files: - /SEGA Genesis Classics/0013: + "/SEGA Genesis Classics/0013": tags: - save when: - os: windows - /SEGA Genesis Classics/setup.dat: + "/SEGA Genesis Classics/setup.dat": tags: - config when: - os: windows - /SEGA Mega Drive Classics/0013: + "/SEGA Mega Drive Classics/0013": tags: - save when: - os: windows - /SEGA Mega Drive Classics/setup.dat: + "/SEGA Mega Drive Classics/setup.dat": tags: - config when: - os: windows steam: id: 34285 -'Columns III: Revenge of Columns': +"Columns III: Revenge of Columns": files: - /SEGA Genesis Classics/0025: + "/SEGA Genesis Classics/0025": tags: - save when: - os: windows - /SEGA Genesis Classics/setup.dat: + "/SEGA Genesis Classics/setup.dat": tags: - config when: - os: windows - /SEGA Mega Drive Classics/0025: + "/SEGA Mega Drive Classics/0025": tags: - save when: - os: windows - /SEGA Mega Drive Classics/setup.dat: + "/SEGA Mega Drive Classics/setup.dat": tags: - config when: @@ -107040,7 +107356,7 @@ ComPet: installDir: ComPet: {} launch: - /ComPet.exe: + "/ComPet.exe": - when: - os: windows store: steam @@ -107048,7 +107364,7 @@ ComPet: id: 532800 ComPressure: files: - /CharlieBrej/ComPressure/compressure.save: + "/CharlieBrej/ComPressure/compressure.save": tags: - config - save @@ -107057,13 +107373,15 @@ ComPressure: installDir: ComPressure: {} launch: - /ComPressure.exe: + "/ComPressure.exe": - when: - bit: 64 os: windows store: steam - /ComPressure.sh: + "/ComPressure.sh": - when: + - os: mac + store: steam - os: linux store: steam steam: @@ -107071,14 +107389,14 @@ ComPressure: Coma Simulator 2020 VR: steam: id: 1198120 -'Coma: Mortuary': +"Coma: Mortuary": files: - /Binaries/Win32: + "/Binaries/Win32": tags: - save when: - os: windows - /UDKGame/Config: + "/UDKGame/Config": tags: - config when: @@ -107086,7 +107404,7 @@ Coma Simulator 2020 VR: installDir: ComaMortuary: {} launch: - /Binaries/Win32/UDK.exe: + "/Binaries/Win32/UDK.exe": - when: - os: windows store: steam @@ -107104,12 +107422,12 @@ Comanche: id: 879000 Comanche 4: files: - /c4.cfg: + "/c4.cfg": tags: - config when: - os: windows - /c4plyr.sav: + "/c4plyr.sav": tags: - save when: @@ -107117,10 +107435,10 @@ Comanche 4: installDir: Comanche 4: {} launch: - /c4.exe: + "/c4.exe": - when: - store: steam - /c4medc.exe: + "/c4medc.exe": - when: - store: steam steam: @@ -107129,7 +107447,7 @@ Combat Air Patrol 2: installDir: Combat Air Patrol 2: {} launch: - /CAP2.exe: + "/CAP2.exe": - when: - os: windows store: steam @@ -107137,7 +107455,7 @@ Combat Air Patrol 2: id: 347170 Combat Arms: files: - /Profiles: + "/Profiles": tags: - config when: @@ -107145,8 +107463,8 @@ Combat Arms: installDir: Combat Arms Reloaded: {} launch: - /Engine_BE.exe: - - arguments: '--vfapp vfsteam' + "/Engine_BE.exe": + - arguments: "--vfapp vfsteam" when: - os: windows store: steam @@ -107154,7 +107472,7 @@ Combat Arms: id: 905640 Combat Cats: files: - /Combat_Cats: + "/Combat_Cats": tags: - save when: @@ -107162,7 +107480,7 @@ Combat Cats: installDir: Combat Cats: {} launch: - /Combat_Cats.exe: + "/Combat_Cats.exe": - when: - os: windows store: steam @@ -107178,12 +107496,12 @@ Combat Core: installDir: Combat Core: {} launch: - /CombatCore.app: + "/CombatCore.app": - when: - os: mac store: steam - /CombatCore.exe: - - arguments: ' -vrmode none' + "/CombatCore.exe": + - arguments: " -vrmode none" when: - os: windows store: steam @@ -107193,7 +107511,7 @@ Combat Force: installDir: Combat Force: {} launch: - /CombatForces.exe: + "/CombatForces.exe": - when: - store: steam steam: @@ -107202,7 +107520,7 @@ Combat Helicopter VR - Surgical Strike: installDir: Combat Helicopter PCVR: {} launch: - /CombatHelicopterPCVR.exe: + "/CombatHelicopterPCVR.exe": - when: - os: windows store: steam @@ -107213,35 +107531,35 @@ Combat Instinct: Combat Instinct: {} steam: id: 725970 -'Combat Mission 3: Afrika Korps': +"Combat Mission 3: Afrika Korps": gog: id: 1196739945 Combat Mission Cold War: installDir: Combat Mission Cold War: {} launch: - /Launcher.exe: + "/Launcher.exe": - when: - store: steam steam: id: 1551160 -'Combat Mission II: Barbarossa to Berlin': +"Combat Mission II: Barbarossa to Berlin": gog: id: 1615872630 -'Combat Mission: Beyond Overlord': +"Combat Mission: Beyond Overlord": files: - /Saved Games: + "/Saved Games": tags: - save when: - os: windows gog: id: 1207658821 -'Combat Mission: Shock Force 2': +"Combat Mission: Shock Force 2": installDir: Combat Mission Shock Force 2: {} launch: - /Launcher.exe: + "/Launcher.exe": - when: - store: steam steam: @@ -107250,7 +107568,7 @@ Combat Monsters: installDir: Combat Monsters: {} launch: - /CombatMonsters.exe: + "/CombatMonsters.exe": - when: - os: windows store: steam @@ -107263,7 +107581,7 @@ Combat Racers: installDir: Combat Racers: {} launch: - /Combat Racers.exe: + "/Combat Racers.exe": - when: - os: windows store: steam @@ -107279,11 +107597,11 @@ Combat Tested: Combat Tested: {} steam: id: 750010 -'Combat Wings: Battle of Britain': +"Combat Wings: Battle of Britain": installDir: Combat Wings Battle of Britain: {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: @@ -107292,28 +107610,28 @@ Combat master: installDir: Combat Master: {} launch: - /CombatMaster.app: + "/CombatMaster.app": - when: - os: mac store: steam - /CombatMaster.exe: + "/CombatMaster.exe": - when: - os: windows store: steam - /CombatMaster.x86_64: + "/CombatMaster.x86_64": - when: - os: linux store: steam steam: id: 2281730 -'Combat: Task Force 121': +"Combat: Task Force 121": files: - /Groove Games/Combat/*.ini: + "/Groove Games/Combat/*.ini": tags: - config when: - os: windows - /Groove Games/Combat/Profiles/.ini: + "/Groove Games/Combat/Profiles/.ini": tags: - config when: @@ -107322,11 +107640,11 @@ Combate Monero: installDir: Combate Monero: {} launch: - /CombateMonero.exe: + "/CombateMonero.exe": - when: - os: windows store: steam - /Combate_Monero_Mac.app/Contents/MacOS/Combate_Monero_Mac: + "/Combate_Monero_Mac.app/Contents/MacOS/Combate_Monero_Mac": - when: - os: mac store: steam @@ -107341,7 +107659,7 @@ Combiner the Card Game: installDir: Combiner the Card Game: {} launch: - /combiner.exe: + "/combiner.exe": - when: - os: windows store: steam @@ -107351,7 +107669,7 @@ Combo Jumper: installDir: Combo Jumper: {} launch: - /Combo_Jumper.exe: + "/Combo_Jumper.exe": - when: - os: windows store: steam @@ -107361,12 +107679,15 @@ Combo Postage: installDir: Combo Postage: {} launch: - /nw: + "/nw": - when: + - bit: 32 + os: linux + store: steam - bit: 64 os: linux store: steam - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -107377,19 +107698,19 @@ Combustion: id: 1251190785 steam: id: 2145090 -'Come Back: Chapter 1': +"Come Back: Chapter 1": installDir: Come Back: {} launch: - /Come Back MacOS.app: + "/Come Back MacOS.app": - when: - os: mac store: steam - /Come Back.exe: + "/Come Back.exe": - when: - os: windows store: steam - /Come Back.x86_64: + "/Come Back.x86_64": - when: - bit: 64 os: linux @@ -107400,20 +107721,20 @@ Come Home: installDir: Come Home: {} launch: - /ComeHome-32.exe: + "/ComeHome-32.exe": - when: - bit: 32 os: windows store: steam - /ComeHome.app: + "/ComeHome.app": - when: - os: mac store: steam - /ComeHome.exe: + "/ComeHome.exe": - when: - os: windows store: steam - /ComeHome.sh: + "/ComeHome.sh": - when: - os: linux store: steam @@ -107423,7 +107744,7 @@ Come on Baby!: installDir: Come on Baby!: {} launch: - /ComeonBaby.exe: + "/ComeonBaby.exe": - when: - os: windows store: steam @@ -107433,15 +107754,15 @@ Comedy Night: installDir: Comedy Night: {} launch: - /Comedy Night.exe: + "/Comedy Night.exe": - when: - os: windows store: steam - /Comedy Night.x86_64: + "/Comedy Night.x86_64": - when: - os: linux store: steam - /Contents/MacOS/Comedy Night: + "/Contents/MacOS/Comedy Night": - when: - os: mac store: steam @@ -107455,7 +107776,7 @@ Comedy Quest: installDir: Comedy Quest: {} launch: - /winsetup.exe: + "/winsetup.exe": - when: - os: windows store: steam @@ -107463,7 +107784,7 @@ Comedy Quest: id: 399520 Comet 64: files: - /AppData/LocalLow/what sorceress this/Comet 64/comet64slot*.dat: + "/AppData/LocalLow/what sorceress this/Comet 64/comet64slot*.dat": tags: - save when: @@ -107471,15 +107792,15 @@ Comet 64: installDir: Comet 64: {} launch: - /Comet 64.app: + "/Comet 64.app": - when: - os: mac store: steam - /Comet 64.exe: + "/Comet 64.exe": - when: - os: windows store: steam - /Comet 64.x86_64: + "/Comet 64.x86_64": - when: - os: linux store: steam @@ -107493,20 +107814,20 @@ Comet Crasher: installDir: Comet Crasher: {} launch: - /CometCrasher.app: + "/CometCrasher.app": - when: - os: mac store: steam - /CometCrasher.exe: + "/CometCrasher.exe": - when: - os: windows store: steam - /CometCrasher.x86: + "/CometCrasher.x86": - when: - bit: 32 os: linux store: steam - /CometCrasher.x86_64: + "/CometCrasher.x86_64": - when: - bit: 64 os: linux @@ -107522,15 +107843,15 @@ CometStriker DX: installDir: CometStriker: {} launch: - /CometStriker: + "/CometStriker": - when: - os: linux store: steam - /CometStriker.app: + "/CometStriker.app": - when: - os: mac store: steam - /CometStriker.exe: + "/CometStriker.exe": - when: - os: windows store: steam @@ -107541,11 +107862,11 @@ Comets Wake: Comets Wake: {} steam: id: 763650 -'Comic Book Hero: The Greatest Cape': +"Comic Book Hero: The Greatest Cape": installDir: Comic Book Hero: {} launch: - /CBH.exe: + "/CBH.exe": - when: - os: windows store: steam @@ -107553,12 +107874,12 @@ Comets Wake: id: 422130 Coming Out on Top: files: - /Library/RenPy/Coming-Out-On-Top: + "/Library/RenPy/Coming-Out-On-Top": tags: - save when: - os: mac - /RenPy/Coming-Out-On-Top: + "/RenPy/Coming-Out-On-Top": tags: - save when: @@ -107566,25 +107887,25 @@ Coming Out on Top: installDir: Coming Out on Top: {} launch: - /Coming-Out-On-Top.app: + "/Coming-Out-On-Top.app": - when: - os: mac store: steam - /Coming-Out-On-Top.exe: + "/Coming-Out-On-Top.exe": - when: - os: windows store: steam - /Coming-Out-On-Top.sh: + "/Coming-Out-On-Top.sh": - when: - os: linux store: steam steam: id: 642090 -Comit in Cosmo Knight's Revenge: +"Comit in Cosmo Knight's Revenge": installDir: - Comit in Cosmo Knight's Revenge: {} + "Comit in Cosmo Knight's Revenge": {} launch: - /Comit in Cosmo Knights Revenge.exe: + "/Comit in Cosmo Knights Revenge.exe": - when: - bit: 64 os: windows @@ -107595,7 +107916,7 @@ Comit in Krater Returns: installDir: Comit in Krater Returns: {} launch: - /Comit in Krater Returns.exe: + "/Comit in Krater Returns.exe": - when: - bit: 64 os: windows @@ -107606,7 +107927,7 @@ Comit the Astrodian: installDir: Comit the Astrodian: {} launch: - /Comit the Astrodian.exe: + "/Comit the Astrodian.exe": - when: - os: windows store: steam @@ -107616,7 +107937,7 @@ Comit the Astrodian 2: installDir: Comit the Astrodian 2: {} launch: - /Comit the Astrodian 2.exe: + "/Comit the Astrodian 2.exe": - when: - os: windows store: steam @@ -107626,7 +107947,7 @@ Comit the Astrodian 3: installDir: Comit the Astrodian 3: {} launch: - /Comit the Astrodian 3.exe: + "/Comit the Astrodian 3.exe": - when: - os: windows store: steam @@ -107634,22 +107955,22 @@ Comit the Astrodian 3: id: 698030 Comix Zone (2010): files: - /SEGA Genesis Classics/0001: + "/SEGA Genesis Classics/0001": tags: - save when: - os: windows - /SEGA Genesis Classics/setup.dat: + "/SEGA Genesis Classics/setup.dat": tags: - config when: - os: windows - /SEGA Mega Drive Classics/0001: + "/SEGA Mega Drive Classics/0001": tags: - save when: - os: windows - /SEGA Mega Drive Classics/setup.dat: + "/SEGA Mega Drive Classics/setup.dat": tags: - config when: @@ -107660,11 +107981,11 @@ ComixPlay: installDir: ComixPlay1: {} launch: - /comixplay.app: + "/comixplay.app": - when: - os: mac store: steam - /comixplay.exe: + "/comixplay.exe": - when: - os: windows store: steam @@ -107674,15 +107995,15 @@ Commanager Tycoon: installDir: Commanager tycoon: {} launch: - /Commanager.app: + "/Commanager.app": - when: - os: mac store: steam - /Commanager.exe: + "/Commanager.exe": - when: - os: windows store: steam - /Commanager.x86_64: + "/Commanager.x86_64": - when: - os: linux store: steam @@ -107690,17 +108011,17 @@ Commanager Tycoon: id: 847630 Command & Conquer: files: - /*.ini: + "/*.ini": tags: - config when: - os: windows - /conquer.ini: + "/conquer.ini": tags: - config when: - os: dos - /savegame.***: + "/savegame.***": tags: - save when: @@ -107708,30 +108029,30 @@ Command & Conquer: - os: windows Command & Conquer (2013): files: - /Documents/Command & Conquer: + "/Documents/Command & Conquer": tags: - config - save when: - os: windows -'Command & Conquer 3: Tiberium Wars': +"Command & Conquer 3: Tiberium Wars": files: - /Saved Games/Command & Conquer 3 Kane's Wrath: + "/Saved Games/Command & Conquer 3 Kane's Wrath": tags: - save when: - os: windows - /Saved Games/Command & Conquer 3 Tiberium Wars: + "/Saved Games/Command & Conquer 3 Tiberium Wars": tags: - save when: - os: windows - /Command & Conquer 3 Kane's Wrath/Profiles/: + "/Command & Conquer 3 Kane's Wrath/Profiles/": tags: - config when: - os: windows - /Command & Conquer 3 Tiberium Wars/Profiles/: + "/Command & Conquer 3 Tiberium Wars/Profiles/": tags: - config when: @@ -107742,22 +108063,22 @@ Command & Conquer (2013): installDir: Command and Conquer 3 Tiberium Wars: {} launch: - /CNC3.exe: + "/CNC3.exe": - when: - store: steam - /Support/EA Help/Electronic_Arts_Technical_Support.htm: + "/Support/EA Help/Electronic_Arts_Technical_Support.htm": - when: - store: steam steam: id: 24790 -'Command & Conquer 4: Tiberian Twilight': +"Command & Conquer 4: Tiberian Twilight": files: - /Saved Games/Command and Conquer 4: + "/Saved Games/Command and Conquer 4": tags: - save when: - os: windows - /Command and Conquer 4/Profiles: + "/Command and Conquer 4/Profiles": tags: - config when: @@ -107765,22 +108086,22 @@ Command & Conquer (2013): installDir: Command and Conquer 4 Tiberian Twilight: {} launch: - /CNC4.exe: + "/CNC4.exe": - when: - store: steam - /Support/EA Help/Electronic_Arts_Technical_Support.htm: + "/Support/EA Help/Electronic_Arts_Technical_Support.htm": - when: - store: steam steam: id: 47700 Command & Conquer Remastered Collection: files: - /CnCRemastered/Profile: + "/CnCRemastered/Profile": tags: - config when: - os: windows - /CnCRemastered/Save: + "/CnCRemastered/Save": tags: - save when: @@ -107788,7 +108109,7 @@ Command & Conquer Remastered Collection: installDir: CnCRemastered: {} launch: - /ClientLauncherG.exe: + "/ClientLauncherG.exe": - when: - store: steam registry: @@ -107797,85 +108118,85 @@ Command & Conquer Remastered Collection: - config steam: id: 1213210 -'Command & Conquer: Generals': +"Command & Conquer: Generals": files: - /Library/Containers/com.aspyr.command.conquer.generals.appstore/Data/Documents/Command & Conquer Generals Zero Hour/User Data: + "/Library/Containers/com.aspyr.command.conquer.generals.appstore/Data/Documents/Command & Conquer Generals Zero Hour/User Data": tags: - config when: - os: mac - /Library/Containers/com.aspyr.command.conquer.generals.appstore/Data/Documents/Command & Conquer Generals Zero Hour/User Data/Save: + "/Library/Containers/com.aspyr.command.conquer.generals.appstore/Data/Documents/Command & Conquer Generals Zero Hour/User Data/Save": tags: - save when: - os: mac - /Library/Containers/com.aspyr.command.conquer.generals.appstore/Data/Documents/Command & Conquer Generals/User Data: + "/Library/Containers/com.aspyr.command.conquer.generals.appstore/Data/Documents/Command & Conquer Generals/User Data": tags: - config when: - os: mac - /Library/Containers/com.aspyr.command.conquer.generals.appstore/Data/Documents/Command & Conquer Generals/User Data/Save: + "/Library/Containers/com.aspyr.command.conquer.generals.appstore/Data/Documents/Command & Conquer Generals/User Data/Save": tags: - save when: - os: mac - /Command and Conquer Generals Data: + "/Command and Conquer Generals Data": tags: - config when: - os: windows - /Command and Conquer Generals Data/Save: + "/Command and Conquer Generals Data/Save": tags: - save when: - os: windows - /Command and Conquer Generals Zero Hour Data: + "/Command and Conquer Generals Zero Hour Data": tags: - config when: - os: windows - /Command and Conquer Generals Zero Hour Data/Save: + "/Command and Conquer Generals Zero Hour Data/Save": tags: - save when: - os: windows -'Command & Conquer: Red Alert': +"Command & Conquer: Red Alert": files: - /*.ini: + "/*.ini": tags: - config when: - os: windows - /savegame.***: + "/savegame.***": tags: - save when: - os: windows -'Command & Conquer: Red Alert 2': +"Command & Conquer: Red Alert 2": files: - /*.sav: + "/*.sav": tags: - save when: - os: windows - /ra2.ini: + "/ra2.ini": tags: - config when: - os: windows - /ra2md.ini: + "/ra2md.ini": tags: - config when: - os: windows -'Command & Conquer: Red Alert 3': +"Command & Conquer: Red Alert 3": files: - /Saved Games/Red Alert 3: + "/Saved Games/Red Alert 3": tags: - save when: - os: windows - /Red Alert 3/Profiles/: + "/Red Alert 3/Profiles/": tags: - config when: @@ -107883,22 +108204,22 @@ Command & Conquer Remastered Collection: installDir: Command and Conquer Red Alert 3: {} launch: - /Support/EA Help/Electronic_Arts_Technical_Support.htm: + "/Support/EA Help/Electronic_Arts_Technical_Support.htm": - when: - store: steam - /runme.exe: + "/runme.exe": - when: - store: steam steam: id: 17480 -'Command & Conquer: Red Alert 3 - Uprising': +"Command & Conquer: Red Alert 3 - Uprising": files: - /Saved Games/Red Alert 3 Uprising/: + "/Saved Games/Red Alert 3 Uprising/": tags: - save when: - os: windows - /Red Alert 3 Uprising/Profiles/: + "/Red Alert 3 Uprising/Profiles/": tags: - config when: @@ -107906,17 +108227,17 @@ Command & Conquer Remastered Collection: installDir: Command and Conquer Red Alert 3 Uprising: {} launch: - /RA3EP1.exe: + "/RA3EP1.exe": - when: - store: steam - /Support/EA Help/Electronic_Arts_Technical_Support.htm: + "/Support/EA Help/Electronic_Arts_Technical_Support.htm": - when: - store: steam steam: id: 24800 -'Command & Conquer: Renegade': +"Command & Conquer: Renegade": files: - /Data/save: + "/Data/save": tags: - save when: @@ -107925,28 +108246,28 @@ Command & Conquer Remastered Collection: HKEY_CURRENT_USER/SOFTWARE/Westwood/Renegade: tags: - config -'Command & Conquer: Sole Survivor': +"Command & Conquer: Sole Survivor": files: - /*.ini: + "/*.ini": tags: - config when: - os: windows -'Command & Conquer: Tiberian Sun': +"Command & Conquer: Tiberian Sun": files: - /SAVE****.sav: + "/SAVE****.sav": tags: - save when: - os: windows - /sun.ini: + "/sun.ini": tags: - config when: - os: windows Command HQ: files: - /SAVE: + "/SAVE": tags: - save when: @@ -107956,102 +108277,102 @@ Command HQ: installDir: Command HQ: {} launch: - /Command HQ.app: + "/Command HQ.app": - when: - os: mac store: steam - /dosbox_linux/daum/launch_commandhq_game_daum.sh: + "/dosbox_linux/daum/launch_commandhq_game_daum.sh": - when: - os: linux store: steam - workingDir: /dosbox_linux/daum - /dosbox_linux/launch_commandhq_config.sh: + workingDir: "/dosbox_linux/daum" + "/dosbox_linux/launch_commandhq_config.sh": - when: - os: linux store: steam - workingDir: /dosbox_linux - /dosbox_linux/launch_commandhq_game.sh: + workingDir: "/dosbox_linux" + "/dosbox_linux/launch_commandhq_game.sh": - when: - os: linux store: steam - workingDir: /dosbox_linux - /dosbox_windows/daum/dosbox.exe: - - arguments: '-conf dosbox_commandhq.conf -conf dosbox_commandhq_launch_windows.conf -noconsole' + workingDir: "/dosbox_linux" + "/dosbox_windows/daum/dosbox.exe": + - arguments: "-conf dosbox_commandhq.conf -conf dosbox_commandhq_launch_windows.conf -noconsole" when: - os: windows store: steam - workingDir: /dosbox_windows/daum - /dosbox_windows/dosbox.exe: - - arguments: '-conf dosbox_commandhq.conf -conf dosbox_commandhq_launch_windows.conf -noconsole' + workingDir: "/dosbox_windows/daum" + "/dosbox_windows/dosbox.exe": + - arguments: "-conf dosbox_commandhq.conf -conf dosbox_commandhq_launch_windows.conf -noconsole" when: - os: windows store: steam - workingDir: /dosbox_windows - - arguments: '-conf dosbox_commandhq.conf -conf dosbox_commandhq_config_windows.conf -noconsole' + workingDir: "/dosbox_windows" + - arguments: "-conf dosbox_commandhq.conf -conf dosbox_commandhq_config_windows.conf -noconsole" when: - os: windows store: steam - workingDir: /dosbox_windows + workingDir: "/dosbox_windows" steam: id: 329630 Command Ops 2: installDir: Command Ops 2: {} launch: - /CmdOps.exe: + "/CmdOps.exe": - when: - os: windows store: steam - /EM.exe: + "/EM.exe": - when: - os: windows store: steam - /EstabEditor.exe: + "/EstabEditor.exe": - when: - os: windows store: steam - /MapMaker.exe: + "/MapMaker.exe": - when: - os: windows store: steam - /ScenMaker.exe: + "/ScenMaker.exe": - when: - os: windows store: steam - /WorkshopManager.exe: + "/WorkshopManager.exe": - when: - os: windows store: steam steam: id: 521800 -'Command: Chains of War': +"Command: Chains of War": installDir: Command Modern Air Naval Operations: {} launch: - /GameMenu_CCoW/autorun.exe: + "/GameMenu_CCoW/autorun.exe": - when: - store: steam steam: id: 614130 -'Command: Desert Storm': +"Command: Desert Storm": installDir: Command Modern Air Naval Operations: {} launch: - /GameMenu_CDS/autorun.exe: + "/GameMenu_CDS/autorun.exe": - when: - store: steam steam: id: 1036420 -'Command: Modern Air / Naval Operations': +"Command: Modern Air / Naval Operations": installDir: Command Modern Air Naval Operations: {} launch: - /GameMenu_CMANO/autorun.exe: + "/GameMenu_CMANO/autorun.exe": - when: - store: steam steam: id: 321410 -'Command: Modern Operations': +"Command: Modern Operations": id: steamExtra: - 1178900 @@ -108079,47 +108400,47 @@ Command Ops 2: installDir: Command - Modern Operations: {} launch: - /Launcher.exe: + "/Launcher.exe": - when: - store: steam steam: id: 1076160 -'Command: Northern Inferno': +"Command: Northern Inferno": installDir: Command Modern Air Naval Operations: {} launch: - /GameMenu_CNI/autorun.exe: + "/GameMenu_CNI/autorun.exe": - when: - store: steam steam: id: 397180 -'Command: Shifting Sands': +"Command: Shifting Sands": installDir: Command Modern Air Naval Operations: {} launch: - /GameMenu_CSS/autorun.exe: + "/GameMenu_CSS/autorun.exe": - when: - store: steam steam: id: 718710 -'Command: The Silent Service': +"Command: The Silent Service": installDir: Command Modern Air Naval Operations: {} launch: - /GameMenu_CTSS/autorun.exe: + "/GameMenu_CTSS/autorun.exe": - when: - store: steam steam: id: 785930 -Commander '85: +"Commander '85": installDir: Commander 85: {} launch: - /Commander 85.app: + "/Commander 85.app": - when: - os: mac store: steam - /Commander 85.exe: + "/Commander 85.exe": - when: - bit: 64 os: windows @@ -108128,7 +108449,7 @@ Commander '85: id: 1086990 Commander Babes: files: - /.renpy/CommanderBabes-1557844763: + "/.renpy/CommanderBabes-1557844763": tags: - save when: @@ -108136,15 +108457,15 @@ Commander Babes: installDir: CommanderBabes: {} launch: - /CommanderBabes.app: + "/CommanderBabes.app": - when: - os: mac store: steam - /CommanderBabes.exe: + "/CommanderBabes.exe": - when: - os: windows store: steam - /CommanderBabes.sh: + "/CommanderBabes.sh": - when: - os: linux store: steam @@ -108154,15 +108475,15 @@ Commander Cool 2: installDir: Commander Cool 2: {} launch: - /CommanderCool.app: + "/CommanderCool.app": - when: - os: mac store: steam - /CommanderCool.exe: + "/CommanderCool.exe": - when: - os: windows store: steam - /CommanderCool.x86: + "/CommanderCool.x86": - when: - os: linux store: steam @@ -108170,13 +108491,13 @@ Commander Cool 2: id: 356070 Commander Keen in Keen Dreams: files: - /Commander Keen/Keen Dreams: + "/Commander Keen/Keen Dreams": tags: - config - save when: - os: windows - /Commander Keen/Keen Dreams: + "/Commander Keen/Keen Dreams": tags: - config - save @@ -108185,16 +108506,16 @@ Commander Keen in Keen Dreams: installDir: Keen Dreams: {} launch: - /KDreams: + "/KDreams": - when: - bit: 64 os: linux store: steam - /KDreams.exe: + "/KDreams.exe": - when: - os: windows store: steam - /Keen Dreams.app: + "/Keen Dreams.app": - when: - os: mac store: steam @@ -108202,12 +108523,12 @@ Commander Keen in Keen Dreams: id: 356200 Commander Keen in Keen Must Die!: files: - /base3: + "/base3": tags: - config when: - os: windows - /base3/SAVED*.CK3: + "/base3/SAVED*.CK3": tags: - save when: @@ -108217,36 +108538,36 @@ Commander Keen in Keen Must Die!: installDir: Commander Keen: {} launch: - /base1/dosbox.exe: - - arguments: base1\\keen1.exe -conf base1\\keen1.conf -fullscreen -exit + "/base1/dosbox.exe": + - arguments: "base1\\\\keen1.exe -conf base1\\\\keen1.conf -fullscreen -exit" when: - store: steam - /base2/dosbox.exe: - - arguments: base2\\keen2.exe -conf base2\\keen2.conf -fullscreen -exit + "/base2/dosbox.exe": + - arguments: "base2\\\\keen2.exe -conf base2\\\\keen2.conf -fullscreen -exit" when: - store: steam - /base3/dosbox.exe: - - arguments: base3\\keen3.exe -conf base3\\keen3.conf -fullscreen -exit + "/base3/dosbox.exe": + - arguments: "base3\\\\keen3.exe -conf base3\\\\keen3.conf -fullscreen -exit" when: - store: steam - /base4/dosbox.exe: - - arguments: base4\\keen4e.exe -conf base4\\keen4.conf -fullscreen -exit + "/base4/dosbox.exe": + - arguments: "base4\\\\keen4e.exe -conf base4\\\\keen4.conf -fullscreen -exit" when: - store: steam - /base5/dosbox.exe: - - arguments: base5\\keen5e.exe -conf base5\\keen5.conf -fullscreen -exit + "/base5/dosbox.exe": + - arguments: "base5\\\\keen5e.exe -conf base5\\\\keen5.conf -fullscreen -exit" when: - store: steam steam: id: 9180 Commander Keen in Marooned on Mars: files: - /base1: + "/base1": tags: - config when: - os: windows - /base1/SAVED*.CK1: + "/base1/SAVED*.CK1": tags: - save when: @@ -108256,36 +108577,36 @@ Commander Keen in Marooned on Mars: installDir: Commander Keen: {} launch: - /base1/dosbox.exe: - - arguments: base1\\keen1.exe -conf base1\\keen1.conf -fullscreen -exit + "/base1/dosbox.exe": + - arguments: "base1\\\\keen1.exe -conf base1\\\\keen1.conf -fullscreen -exit" when: - store: steam - /base2/dosbox.exe: - - arguments: base2\\keen2.exe -conf base2\\keen2.conf -fullscreen -exit + "/base2/dosbox.exe": + - arguments: "base2\\\\keen2.exe -conf base2\\\\keen2.conf -fullscreen -exit" when: - store: steam - /base3/dosbox.exe: - - arguments: base3\\keen3.exe -conf base3\\keen3.conf -fullscreen -exit + "/base3/dosbox.exe": + - arguments: "base3\\\\keen3.exe -conf base3\\\\keen3.conf -fullscreen -exit" when: - store: steam - /base4/dosbox.exe: - - arguments: base4\\keen4e.exe -conf base4\\keen4.conf -fullscreen -exit + "/base4/dosbox.exe": + - arguments: "base4\\\\keen4e.exe -conf base4\\\\keen4.conf -fullscreen -exit" when: - store: steam - /base5/dosbox.exe: - - arguments: base5\\keen5e.exe -conf base5\\keen5.conf -fullscreen -exit + "/base5/dosbox.exe": + - arguments: "base5\\\\keen5e.exe -conf base5\\\\keen5.conf -fullscreen -exit" when: - store: steam steam: id: 9180 Commander Keen in Secret of the Oracle: files: - /base4: + "/base4": tags: - config when: - os: windows - /base4/SAVEGAM*.CK4: + "/base4/SAVEGAM*.CK4": tags: - save when: @@ -108295,36 +108616,36 @@ Commander Keen in Secret of the Oracle: installDir: Commander Keen: {} launch: - /base1/dosbox.exe: - - arguments: base1\\keen1.exe -conf base1\\keen1.conf -fullscreen -exit + "/base1/dosbox.exe": + - arguments: "base1\\\\keen1.exe -conf base1\\\\keen1.conf -fullscreen -exit" when: - store: steam - /base2/dosbox.exe: - - arguments: base2\\keen2.exe -conf base2\\keen2.conf -fullscreen -exit + "/base2/dosbox.exe": + - arguments: "base2\\\\keen2.exe -conf base2\\\\keen2.conf -fullscreen -exit" when: - store: steam - /base3/dosbox.exe: - - arguments: base3\\keen3.exe -conf base3\\keen3.conf -fullscreen -exit + "/base3/dosbox.exe": + - arguments: "base3\\\\keen3.exe -conf base3\\\\keen3.conf -fullscreen -exit" when: - store: steam - /base4/dosbox.exe: - - arguments: base4\\keen4e.exe -conf base4\\keen4.conf -fullscreen -exit + "/base4/dosbox.exe": + - arguments: "base4\\\\keen4e.exe -conf base4\\\\keen4.conf -fullscreen -exit" when: - store: steam - /base5/dosbox.exe: - - arguments: base5\\keen5e.exe -conf base5\\keen5.conf -fullscreen -exit + "/base5/dosbox.exe": + - arguments: "base5\\\\keen5e.exe -conf base5\\\\keen5.conf -fullscreen -exit" when: - store: steam steam: id: 9180 Commander Keen in The Armageddon Machine: files: - /base5: + "/base5": tags: - config when: - os: windows - /base5/SAVEGAM*.CK5: + "/base5/SAVEGAM*.CK5": tags: - save when: @@ -108334,36 +108655,36 @@ Commander Keen in The Armageddon Machine: installDir: Commander Keen: {} launch: - /base1/dosbox.exe: - - arguments: base1\\keen1.exe -conf base1\\keen1.conf -fullscreen -exit + "/base1/dosbox.exe": + - arguments: "base1\\\\keen1.exe -conf base1\\\\keen1.conf -fullscreen -exit" when: - store: steam - /base2/dosbox.exe: - - arguments: base2\\keen2.exe -conf base2\\keen2.conf -fullscreen -exit + "/base2/dosbox.exe": + - arguments: "base2\\\\keen2.exe -conf base2\\\\keen2.conf -fullscreen -exit" when: - store: steam - /base3/dosbox.exe: - - arguments: base3\\keen3.exe -conf base3\\keen3.conf -fullscreen -exit + "/base3/dosbox.exe": + - arguments: "base3\\\\keen3.exe -conf base3\\\\keen3.conf -fullscreen -exit" when: - store: steam - /base4/dosbox.exe: - - arguments: base4\\keen4e.exe -conf base4\\keen4.conf -fullscreen -exit + "/base4/dosbox.exe": + - arguments: "base4\\\\keen4e.exe -conf base4\\\\keen4.conf -fullscreen -exit" when: - store: steam - /base5/dosbox.exe: - - arguments: base5\\keen5e.exe -conf base5\\keen5.conf -fullscreen -exit + "/base5/dosbox.exe": + - arguments: "base5\\\\keen5e.exe -conf base5\\\\keen5.conf -fullscreen -exit" when: - store: steam steam: id: 9180 Commander Keen in The Earth Explodes: files: - /base2: + "/base2": tags: - config when: - os: windows - /base2/SAVED*.CK2: + "/base2/SAVED*.CK2": tags: - save when: @@ -108373,46 +108694,46 @@ Commander Keen in The Earth Explodes: installDir: Commander Keen: {} launch: - /base1/dosbox.exe: - - arguments: base1\\keen1.exe -conf base1\\keen1.conf -fullscreen -exit + "/base1/dosbox.exe": + - arguments: "base1\\\\keen1.exe -conf base1\\\\keen1.conf -fullscreen -exit" when: - store: steam - /base2/dosbox.exe: - - arguments: base2\\keen2.exe -conf base2\\keen2.conf -fullscreen -exit + "/base2/dosbox.exe": + - arguments: "base2\\\\keen2.exe -conf base2\\\\keen2.conf -fullscreen -exit" when: - store: steam - /base3/dosbox.exe: - - arguments: base3\\keen3.exe -conf base3\\keen3.conf -fullscreen -exit + "/base3/dosbox.exe": + - arguments: "base3\\\\keen3.exe -conf base3\\\\keen3.conf -fullscreen -exit" when: - store: steam - /base4/dosbox.exe: - - arguments: base4\\keen4e.exe -conf base4\\keen4.conf -fullscreen -exit + "/base4/dosbox.exe": + - arguments: "base4\\\\keen4e.exe -conf base4\\\\keen4.conf -fullscreen -exit" when: - store: steam - /base5/dosbox.exe: - - arguments: base5\\keen5e.exe -conf base5\\keen5.conf -fullscreen -exit + "/base5/dosbox.exe": + - arguments: "base5\\\\keen5e.exe -conf base5\\\\keen5.conf -fullscreen -exit" when: - store: steam steam: id: 9180 -'Commander Keen: Keen Dreams Definitive Edition': +"Commander Keen: Keen Dreams Definitive Edition": installDir: Commander Keen: {} launch: - /Commander Keen in Keen Dreams Definitive Edition.exe: + "/Commander Keen in Keen Dreams Definitive Edition.exe": - when: - os: windows store: steam steam: id: 2496830 -'Commander: Conquest of the Americas': +"Commander: Conquest of the Americas": files: - /Commander/Config: + "/Commander/Config": tags: - config when: - os: windows - /Commander/SaveGame: + "/Commander/SaveGame": tags: - save when: @@ -108420,16 +108741,16 @@ Commander Keen in The Earth Explodes: installDir: Commander Conquest of the Americas: {} launch: - /Commander.exe: + "/Commander.exe": - when: - store: steam steam: id: 49300 -'Commander: The Great War': +"Commander: The Great War": installDir: Commander The Great War: {} launch: - /autorun.exe: + "/autorun.exe": - when: - os: windows store: steam @@ -108442,18 +108763,18 @@ Commando Dog: installDir: Commando Dog: {} launch: - /Commando Dog.exe: + "/Commando Dog.exe": - when: - bit: 64 os: windows store: steam steam: id: 1103650 -'Commando Fodder: War Dogs': +"Commando Fodder: War Dogs": installDir: Commando Fodder War Dogs: {} launch: - /CFWARDOGS.exe: + "/CFWARDOGS.exe": - when: - store: steam steam: @@ -108462,17 +108783,17 @@ Commando Jack: installDir: Commander Jack: {} launch: - /CommandoJackWindows.exe: + "/CommandoJackWindows.exe": - when: - bit: 32 os: windows store: steam - /CommandoJackWindows64.exe: + "/CommandoJackWindows64.exe": - when: - bit: 64 os: windows store: steam - /CommandoJack_OSX.app: + "/CommandoJack_OSX.app": - when: - os: mac store: steam @@ -108485,22 +108806,22 @@ Commando Jack: id: 299260 Commandos 2 HD Remaster: files: - /AppData/LocalLow/Kalypso Media Group GmbH/Commandos 2 HD Remaster: + "/AppData/LocalLow/Kalypso Media Group GmbH/Commandos 2 HD Remaster": tags: - save when: - os: windows - /unity3d/Kalypso Media Group GmbH/Commandos 2 HD Remaster/*.SAV: + "/unity3d/Kalypso Media Group GmbH/Commandos 2 HD Remaster/*.SAV": tags: - save when: - os: linux - /unity3d/Kalypso Media Group GmbH/Commandos 2 HD Remaster/PERFILES.DAT: + "/unity3d/Kalypso Media Group GmbH/Commandos 2 HD Remaster/PERFILES.DAT": tags: - save when: - os: linux - /unity3d/Kalypso Media Group GmbH/Commandos 2 HD Remaster/prefs: + "/unity3d/Kalypso Media Group GmbH/Commandos 2 HD Remaster/prefs": tags: - config when: @@ -108510,15 +108831,15 @@ Commandos 2 HD Remaster: installDir: Commandos 2 - HD Remaster: {} launch: - /Commandos HD.exe: + "/Commandos HD.exe": - when: - os: windows store: steam - /Linux.x64: + "/Linux.x64": - when: - os: linux store: steam - /MacOSX.app: + "/MacOSX.app": - when: - os: mac store: steam @@ -108528,38 +108849,40 @@ Commandos 2 HD Remaster: - config steam: id: 1100410 -'Commandos 2: Men of Courage': +"Commandos 2: Men of Courage": files: - /Legacy/OUTPUT: + "/Legacy/OUTPUT": tags: - save when: - store: steam - /Legacy/OUTPUT/COMM2.CFG: + "/Legacy/OUTPUT/COMM2.CFG": tags: - config when: - store: steam - /OUTPUT: + "/OUTPUT": tags: - save when: - os: windows - /OUTPUT/COMM2.CFG: + "/OUTPUT/COMM2.CFG": tags: - config when: - os: windows - /Commandos II/OUTPUT: + "/Commandos II/OUTPUT": tags: - save when: - - store: steam - /Commandos II/OUTPUT/COMM2.CFG: + - os: windows + store: steam + "/Commandos II/OUTPUT/COMM2.CFG": tags: - config when: - - store: steam + - os: windows + store: steam gog: id: 1207662213 id: @@ -108568,7 +108891,7 @@ Commandos 2 HD Remaster: installDir: Commandos 2 Men of Courage: {} launch: - /comm2.exe: + "/comm2.exe": - when: - os: windows store: steam @@ -108578,15 +108901,15 @@ Commandos 3 HD Remaster: installDir: Commandos 3 - HD Remaster: {} launch: - /Commandos 3 HD.exe: + "/Commandos 3 HD.exe": - when: - bit: 64 store: steam steam: id: 1469170 -'Commandos 3: Destination Berlin': +"Commandos 3: Destination Berlin": files: - /Output: + "/Output": tags: - config - save @@ -108600,21 +108923,21 @@ Commandos 3 HD Remaster: installDir: Commandos 3 Destination Berlin: {} launch: - /commandos3.exe: + "/commandos3.exe": - when: - os: windows store: steam steam: id: 6840 -'Commandos: Behind Enemy Lines': +"Commandos: Behind Enemy Lines": files: - /OUTPUT: + "/OUTPUT": tags: - config - save when: - os: windows - /Pyro Studios/Commandos/OUTPUT: + "/Pyro Studios/Commandos/OUTPUT": tags: - config - save @@ -108628,20 +108951,20 @@ Commandos 3 HD Remaster: installDir: Commandos Behind Enemy Lines: {} launch: - /Comandos.exe: + "/Comandos.exe": - when: - os: windows store: steam steam: id: 6800 -'Commandos: Beyond the Call of Duty': +"Commandos: Beyond the Call of Duty": files: - /OUTPUT: + "/OUTPUT": tags: - save when: - os: windows - /Pyro Studios/CommandosMissionPack/OUTPUT: + "/Pyro Studios/CommandosMissionPack/OUTPUT": tags: - config - save @@ -108655,23 +108978,23 @@ Commandos 3 HD Remaster: installDir: Commandos Beyond the Call of Duty: {} launch: - /coman_mp.exe: + "/coman_mp.exe": - when: - os: windows store: steam steam: id: 6810 -'Commandos: Origins': +"Commandos: Origins": steam: id: 1479730 -'Commandos: Strike Force': +"Commandos: Strike Force": files: - /Config: + "/Config": tags: - config when: - os: windows - /CSF Data/Games: + "/CSF Data/Games": tags: - save when: @@ -108679,37 +109002,37 @@ Commandos 3 HD Remaster: installDir: Commandos Strike Force: {} launch: - /CommXPC.exe: + "/CommXPC.exe": - when: - store: steam - /readme.rtf: + "/readme.rtf": - when: - store: steam steam: id: 6820 -'Commands & Colors: Ancients': +"Commands & Colors: Ancients": installDir: Commands & Colors Ancients: {} launch: - /Ancients.app: + "/Ancients.app": - when: - os: mac store: steam - /Ancients.exe: + "/Ancients.exe": - when: - os: windows store: steam steam: id: 699870 -'Commands & Colors: The Great War': +"Commands & Colors: The Great War": installDir: CC The Great War: {} launch: - /TheGreatWar.app: + "/TheGreatWar.app": - when: - os: mac store: steam - /TheGreatWar.exe: + "/TheGreatWar.exe": - when: - os: windows store: steam @@ -108719,22 +109042,22 @@ Commercium: installDir: Commercium: {} launch: - /Commercium.exe: + "/Commercium.exe": - when: - bit: 64 os: windows store: steam steam: id: 540550 -'Committed: Mystery at Shady Pines': +"Committed: Mystery at Shady Pines": installDir: Committed Mystery at Shady Pines: {} launch: - /Committed.app/Contents/MacOS/Committed: + "/Committed.app/Contents/MacOS/Committed": - when: - os: mac store: steam - /CommittedPremium.exe: + "/CommittedPremium.exe": - when: - os: windows store: steam @@ -108744,54 +109067,54 @@ Common Hanzi Quiz: installDir: Common Hanzi Quiz: {} launch: - /hanzi.exe: + "/hanzi.exe": - when: - os: windows store: steam steam: id: 860030 -Common'hood: +"Common'hood": installDir: Commonhood: {} launch: - /Common'hood.exe: + "/Common'hood.exe": - when: - bit: 64 os: windows store: steam steam: id: 962090 -'Community College Hero: Knowledge Is Power': +"Community College Hero: Knowledge Is Power": installDir: Community College Hero Knowledge is Power: {} launch: - /Community College Hero Knowledge is Power.app/Contents/MacOS/Community College Hero Knowledge is Power: + "/Community College Hero Knowledge is Power.app/Contents/MacOS/Community College Hero Knowledge is Power": - when: - os: mac store: steam - /CommunityCollegeHeroKnowledgeIsPower: + "/CommunityCollegeHeroKnowledgeIsPower": - when: - os: linux store: steam - /CommunityCollegeHeroKnowledgeIsPower.exe: + "/CommunityCollegeHeroKnowledgeIsPower.exe": - when: - os: windows store: steam steam: id: 847290 -'Community College Hero: Trial by Fire': +"Community College Hero: Trial by Fire": installDir: CommunityCollegeHeroTrialByFire: {} launch: - /Community College Hero Trial by Fire.app/Contents/MacOS/Community College Hero Trial by Fire: + "/Community College Hero Trial by Fire.app/Contents/MacOS/Community College Hero Trial by Fire": - when: - os: mac store: steam - /CommunityCollegeHeroTrialByFire: + "/CommunityCollegeHeroTrialByFire": - when: - os: linux store: steam - /CommunityCollegeHeroTrialByFire.exe: + "/CommunityCollegeHeroTrialByFire.exe": - when: - os: windows store: steam @@ -108806,11 +109129,11 @@ Community Inc: installDir: Community Inc: {} launch: - /CommunityINC.app: + "/CommunityINC.app": - when: - os: mac store: steam - /CommunityINC.exe: + "/CommunityINC.exe": - when: - os: windows store: steam @@ -108823,7 +109146,7 @@ Companion: installDir: Companion: {} launch: - /companion.exe: + "/companion.exe": - when: - os: windows store: steam @@ -108835,11 +109158,11 @@ Company of Crime: installDir: Company of Crime: {} launch: - /CompanyOfCrime.app/Contents/MacOS/CompanyOfCrime: + "/CompanyOfCrime.app/Contents/MacOS/CompanyOfCrime": - when: - os: mac store: steam - /CompanyOfCrime.exe: + "/CompanyOfCrime.exe": - when: - os: windows store: steam @@ -108847,75 +109170,79 @@ Company of Crime: id: 1229420 Company of Heroes: files: - /My Games/Company of Heroes Relaunch/*.ini: + "/My Games/Company of Heroes Relaunch/*.ini": tags: - config when: - - store: steam - /My Games/Company of Heroes Relaunch/*.lua: + - os: windows + store: steam + "/My Games/Company of Heroes Relaunch/*.lua": tags: - config when: - - store: steam - /My Games/Company of Heroes Relaunch/*.txt: + - os: windows + store: steam + "/My Games/Company of Heroes Relaunch/*.txt": tags: - config when: - - store: steam - /My Games/Company of Heroes Relaunch/Savegames: + - os: windows + store: steam + "/My Games/Company of Heroes Relaunch/Savegames": tags: - save when: - - store: steam - /My Games/Company of Heroes/*.ini: + - os: windows + store: steam + "/My Games/Company of Heroes/*.ini": tags: - config when: - os: windows - /My Games/Company of Heroes/*.lua: + "/My Games/Company of Heroes/*.lua": tags: - config when: - os: windows - /My Games/Company of Heroes/*.txt: + "/My Games/Company of Heroes/*.txt": tags: - config when: - os: windows - /My Games/Company of Heroes/Savegames: + "/My Games/Company of Heroes/Savegames": tags: - save when: - os: windows id: steamExtra: + - 9340 + - 20540 - 228200 - 228221 - - 9340 - - 228223 - - 20540 - 228222 + - 228223 installDir: Company of Heroes: {} launch: - /RelicCOH.exe: + "/RelicCOH.exe": - when: - store: steam steam: id: 4560 Company of Heroes 2: files: - /My Games/Company of Heroes 2: + "/My Games/Company of Heroes 2": tags: - config when: - os: windows - /My Games/Company of Heroes 2/Savegames: + "/My Games/Company of Heroes 2/Savegames": tags: - save when: - os: windows - /feral-interactive/CompanyOfHeroes2: + "/feral-interactive/CompanyOfHeroes2": tags: - config - save @@ -108924,15 +109251,15 @@ Company of Heroes 2: installDir: Company of Heroes 2: {} launch: - /Company Of Heroes 2.app: + "/Company Of Heroes 2.app": - when: - os: mac store: steam - /CompanyOfHeroes2.sh: + "/CompanyOfHeroes2.sh": - when: - os: linux store: steam - /RelicCoH2.exe: + "/RelicCoH2.exe": - when: - os: windows store: steam @@ -108951,17 +109278,17 @@ Company of Heroes 2 - The Western Front Armies: id: 260309 Company of Heroes 3: files: - /My Games/Company of Heroes 2/Savegames/users//savegames: + "/My Games/Company of Heroes 2/Savegames/users//savegames": tags: - save when: - os: windows - /My Games/Company of Heroes 3/Savegames/users//configuration_user.lua: + "/My Games/Company of Heroes 3/Savegames/users//configuration_user.lua": tags: - config when: - os: windows - /My Games/Company of Heroes 3/configuration_system.lua: + "/My Games/Company of Heroes 3/configuration_system.lua": tags: - config when: @@ -108972,31 +109299,31 @@ Company of Heroes 3: installDir: Company of Heroes 3: {} launch: - /RelicCoH3.exe: - - arguments: '-crash_on_initlist_failure' + "/RelicCoH3.exe": + - arguments: "-crash_on_initlist_failure" when: - store: steam steam: id: 1677280 -'Company of Heroes: Eastern Front': +"Company of Heroes: Eastern Front": installDir: Company of Heroes Relaunch: {} steam: id: 317600 -'Company of Heroes: Opposing Fronts': +"Company of Heroes: Opposing Fronts": installDir: Company of Heroes: {} launch: - /RelicCOH.exe: + "/RelicCOH.exe": - when: - store: steam steam: id: 9340 -'Company of Heroes: Tales of Valor': +"Company of Heroes: Tales of Valor": installDir: Company of Heroes: {} launch: - /RelicCOH.exe: + "/RelicCOH.exe": - when: - store: steam steam: @@ -109008,32 +109335,32 @@ Complex: id: 772420 CompliKATed: files: - /.config/unity3d/Lite Microsystems/CompliKATed: + "/.config/unity3d/Lite Microsystems/CompliKATed": tags: - config when: - os: linux - /.config/unity3d/Lite Microsystems/CompliKATed/saves: + "/.config/unity3d/Lite Microsystems/CompliKATed/saves": tags: - save when: - os: linux - /AppData/LocalLow/Lite Microsystems/CompliKATed: + "/AppData/LocalLow/Lite Microsystems/CompliKATed": tags: - config when: - os: windows - /AppData/LocalLow/Lite Microsystems/CompliKATed/saves: + "/AppData/LocalLow/Lite Microsystems/CompliKATed/saves": tags: - save when: - os: windows - /Library/Application Support/Lite Microsystems/CompliKATed: + "/Library/Application Support/Lite Microsystems/CompliKATed": tags: - config when: - os: mac - /Library/Application Support/Lite Microsystems/CompliKATed/saves: + "/Library/Application Support/Lite Microsystems/CompliKATed/saves": tags: - save when: @@ -109041,20 +109368,20 @@ CompliKATed: installDir: CompliKATed: {} launch: - /CompliKATed.app/Contents/MacOS/CompliKATed: + "/CompliKATed.app/Contents/MacOS/CompliKATed": - when: - os: mac store: steam - /CompliKATed.exe: + "/CompliKATed.exe": - when: - os: windows store: steam - /CompliKATed.x86: + "/CompliKATed.x86": - when: - bit: 32 os: linux store: steam - /CompliKATed.x86_64: + "/CompliKATed.x86_64": - when: - bit: 64 os: linux @@ -109063,12 +109390,12 @@ CompliKATed: id: 646460 Compound: files: - /COMPOUND/compound.sav: + "/COMPOUND/compound.sav": tags: - save when: - os: windows - /COMPOUND/config_2.cfg: + "/COMPOUND/config_2.cfg": tags: - config when: @@ -109084,22 +109411,25 @@ Computer Tycoon: installDir: Computer Tycoon: {} launch: - /Computer Tycoon.exe: + "/Computer Tycoon.exe": - when: - bit: 32 os: windows store: steam - /ComputerTycoonOSX.app: + - bit: 64 + os: windows + store: steam + "/ComputerTycoonOSX.app": - when: - os: mac store: steam steam: id: 686680 -'Comrades and Barons: Solitaire of Bloody 1919': +"Comrades and Barons: Solitaire of Bloody 1919": installDir: Comrades and Barons Solitaire of Bloody 1919: {} launch: - /CaBSoB19.exe: + "/CaBSoB19.exe": - when: - os: windows store: steam @@ -109109,15 +109439,15 @@ Con Amore: installDir: Con Amore: {} launch: - /Con Amore.app: + "/Con Amore.app": - when: - os: mac store: steam - /Con Amore.exe: + "/Con Amore.exe": - when: - os: windows store: steam - /Con Amore.sh: + "/Con Amore.sh": - when: - os: linux store: steam @@ -109127,7 +109457,7 @@ ConNEcT01: installDir: conNEcT01: {} launch: - /conNEcT01.exe: + "/conNEcT01.exe": - when: - os: windows store: steam @@ -109135,14 +109465,14 @@ ConNEcT01: id: 903680 Conan: files: - /ConanSave_*: + "/ConanSave_*": tags: - save when: - os: windows Conan Chop Chop: files: - /AppData/LocalLow/Funcom Oslo AS/Conan Chop Chop/Saves/: + "/AppData/LocalLow/Funcom Oslo AS/Conan Chop Chop/Saves/": tags: - save when: @@ -109150,7 +109480,7 @@ Conan Chop Chop: installDir: Conan Chop Chop: {} launch: - /Conan Chop Chop.exe: + "/Conan Chop Chop.exe": - when: - os: windows store: steam @@ -109158,17 +109488,17 @@ Conan Chop Chop: id: 1061880 Conan Exiles: files: - /ConanSandbox/Config: + "/ConanSandbox/Config": tags: - config when: - os: windows - /ConanSandbox/Saved: + "/ConanSandbox/Saved": tags: - save when: - os: windows - /ConanSandbox/Saved/Config/WindowsNoEditor: + "/ConanSandbox/Saved/Config/WindowsNoEditor": tags: - config when: @@ -109176,7 +109506,7 @@ Conan Exiles: installDir: Conan Exiles: {} launch: - /Launcher/FuncomLauncher.exe: + "/Launcher/FuncomLauncher.exe": - when: - bit: 64 os: windows @@ -109187,19 +109517,19 @@ Conan Unconquered: installDir: Conan Unconquered: {} launch: - /ClientLauncherG.exe: + "/ClientLauncherG.exe": - when: - store: steam steam: id: 989690 Conan the Cimmerian: files: - /GAME.CFG: + "/GAME.CFG": tags: - config when: - os: dos - /SAVE.DAT: + "/SAVE.DAT": tags: - save when: @@ -109208,15 +109538,15 @@ Conan the Mighty Pig: installDir: Conan the mighty pig: {} launch: - /Conan_migthy_pig_MAC.app: + "/Conan_migthy_pig_MAC.app": - when: - os: mac store: steam - /Conan_the_mighty_pig1.0.exe: + "/Conan_the_mighty_pig1.0.exe": - when: - os: windows store: steam - /conan_game_bun: + "/conan_game_bun": - when: - os: linux store: steam @@ -109224,32 +109554,32 @@ Conan the Mighty Pig: id: 487700 Conarium: files: - /.config/Epic/Conarium/Saved/SaveGames: + "/.config/Epic/Conarium/Saved/SaveGames": tags: - save when: - os: linux - /.config/Epic/Conarium/Saved/SaveGames/options*.sav: + "/.config/Epic/Conarium/Saved/SaveGames/options*.sav": tags: - config when: - os: linux - /Library/Application Support/Epic/Conarium/Saved/SaveGames: + "/Library/Application Support/Epic/Conarium/Saved/SaveGames": tags: - save when: - os: mac - /Conarium/Saved/Config/WindowsNoEditor: + "/Conarium/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /Conarium/Saved/SaveGames: + "/Conarium/Saved/SaveGames": tags: - save when: - os: windows - /Conarium/Saved/SaveGames/options*.sav: + "/Conarium/Saved/SaveGames/options*.sav": tags: - config when: @@ -109259,17 +109589,17 @@ Conarium: installDir: Conarium: {} launch: - /Conarium.exe: + "/Conarium.exe": - when: - bit: 64 os: windows store: steam - /Conarium.sh: + "/Conarium.sh": - when: - bit: 64 os: linux store: steam - /conarium.app/Contents/MacOS/Conarium: + "/conarium.app/Contents/MacOS/Conarium": - when: - os: mac store: steam @@ -109279,7 +109609,7 @@ ConcPerfect 2017: installDir: ConcPerfect 2017: {} launch: - /ConcPerfect_v2_0_1.exe: + "/ConcPerfect_v2_0_1.exe": - when: - os: windows store: steam @@ -109289,20 +109619,20 @@ Concealed Intent: installDir: Concealed Intent: {} launch: - /ConcealedIntent.app/Contents/MacOS/ConcealedIntent: + "/ConcealedIntent.app/Contents/MacOS/ConcealedIntent": - when: - os: mac store: steam - /ConcealedIntent.exe: + "/ConcealedIntent.exe": - when: - os: windows store: steam - /ConcealedIntent.x86: + "/ConcealedIntent.x86": - when: - bit: 32 os: linux store: steam - /ConcealedIntent.x86_64: + "/ConcealedIntent.x86_64": - when: - bit: 64 os: linux @@ -109313,7 +109643,7 @@ Concept 20: installDir: Concept 20: {} launch: - /Concept 20.exe: + "/Concept 20.exe": - when: - os: windows store: steam @@ -109323,15 +109653,15 @@ Concept Destruction: installDir: Concept Destruction: {} launch: - /Concept Destruction.exe: + "/Concept Destruction.exe": - when: - os: windows store: steam steam: id: 1153540 -'Conception II: Children of the Seven Stars': +"Conception II: Children of the Seven Stars": files: - /config.json: + "/config.json": tags: - config when: @@ -109339,20 +109669,20 @@ Concept Destruction: installDir: Conception2: {} launch: - /Conception2.exe: + "/Conception2.exe": - when: - os: windows store: steam steam: id: 458730 -'Conception PLUS: Maidens of the Twelve Stars': +"Conception PLUS: Maidens of the Twelve Stars": files: - /My Games/ConceptionPlus: + "/My Games/ConceptionPlus": tags: - config when: - os: windows - /My Games/ConceptionPlus/Saves: + "/My Games/ConceptionPlus/Saves": tags: - save when: @@ -109360,7 +109690,7 @@ Concept Destruction: installDir: ConceptionPlus: {} launch: - /ConceptionPlus.exe: + "/ConceptionPlus.exe": - when: - bit: 64 os: windows @@ -109371,12 +109701,12 @@ Conclave: installDir: Conclave: {} launch: - /Conclave.app: + "/Conclave.app": - when: - bit: 64 os: mac store: steam - /conclave.exe: + "/conclave.exe": - when: - os: windows store: steam @@ -109386,21 +109716,21 @@ Concluse: installDir: CONCLUSE: {} launch: - /Concluse.exe: + "/Concluse.exe": - when: - os: windows store: steam - /Mac.app/Contents/MacOS/Mac: + "/Mac.app/Contents/MacOS/Mac": - when: - os: mac store: steam steam: id: 826230 -'Concluse 2: The Drifting Prefecture': +"Concluse 2: The Drifting Prefecture": installDir: CONCLUSE 2: {} launch: - /CONCLUSE 2.exe: + "/CONCLUSE 2.exe": - when: - os: windows store: steam @@ -109409,17 +109739,17 @@ Concluse: Conclusion: steam: id: 497350 -'Concordia: Digital Edition': +"Concordia: Digital Edition": gog: id: 1503947102 installDir: Concordia Digital Edition: {} launch: - /Concordia.app/Contents/MacOS/Concordia: + "/Concordia.app/Contents/MacOS/Concordia": - when: - os: mac store: steam - /Concordia/Concordia.exe: + "/Concordia/Concordia.exe": - when: - os: windows store: steam @@ -109427,17 +109757,17 @@ Conclusion: id: 1450330 Concrete Jungle: files: - /Library/Application Support/ConcreteJungle: + "/Library/Application Support/ConcreteJungle": tags: - save when: - os: mac - /ConcreteJungle/*.arr: + "/ConcreteJungle/*.arr": tags: - save when: - os: windows - /ConcreteJungle/ConcreteJungleSave.ini: + "/ConcreteJungle/ConcreteJungleSave.ini": tags: - config when: @@ -109445,7 +109775,7 @@ Concrete Jungle: installDir: Concrete Jungle: {} launch: - /Concrete Jungle.exe: + "/Concrete Jungle.exe": - when: - bit: 32 os: windows @@ -109459,17 +109789,17 @@ Concrete and Steel: installDir: Concrete And Steel: {} launch: - /ConcreteAndSteel.app: + "/ConcreteAndSteel.app": - when: - bit: 64 os: mac store: steam - /ConcreteAndSteel.exe: + "/ConcreteAndSteel.exe": - when: - bit: 64 os: windows store: steam - /ConcreteAndSteel.x86_64: + "/ConcreteAndSteel.x86_64": - when: - bit: 64 os: linux @@ -109480,7 +109810,7 @@ Concurrency: installDir: Concurrency: {} launch: - /Concurrency.exe: + "/Concurrency.exe": - when: - os: windows store: steam @@ -109488,42 +109818,42 @@ Concurrency: id: 636310 Concursion: files: - /ConcursionSaves/Global.bmu: + "/ConcursionSaves/Global.bmu": tags: - config when: - os: mac - /ConcursionSaves/Global.gmu: + "/ConcursionSaves/Global.gmu": tags: - config when: - os: mac - /ConcursionSaves/Profile*.bmu: + "/ConcursionSaves/Profile*.bmu": tags: - save when: - os: mac - /ConcursionSaves/Profile*.gmu: + "/ConcursionSaves/Profile*.gmu": tags: - save when: - os: mac - /ConcursionSaves/Global.bmu: + "/ConcursionSaves/Global.bmu": tags: - config when: - os: windows - /ConcursionSaves/Global.gmu: + "/ConcursionSaves/Global.gmu": tags: - config when: - os: windows - /ConcursionSaves/Profile*.bmu: + "/ConcursionSaves/Profile*.bmu": tags: - save when: - os: windows - /ConcursionSaves/Profile*.gmu: + "/ConcursionSaves/Profile*.gmu": tags: - save when: @@ -109531,25 +109861,25 @@ Concursion: installDir: Concursion: {} launch: - /Concursion.app: + "/Concursion.app": - when: - os: mac store: steam - /Concursion/Concursion.exe: + "/Concursion/Concursion.exe": - when: - os: windows store: steam - workingDir: /Concursion + workingDir: "/Concursion" steam: id: 303340 -'Condemned: Criminal Origins': +"Condemned: Criminal Origins": files: - /Documents/Monolith Productions/Condemned/Save: + "/Documents/Monolith Productions/Condemned/Save": tags: - save when: - os: windows - /Documents/Monolith Productions/Condemned/settings.cfg: + "/Documents/Monolith Productions/Condemned/settings.cfg": tags: - config when: @@ -109557,11 +109887,11 @@ Concursion: installDir: Condemned Criminal Origins: {} launch: - /Condemned.exe: + "/Condemned.exe": - when: - os: windows store: steam - /Config.exe: + "/Config.exe": - when: - os: windows store: steam @@ -109571,14 +109901,14 @@ Condition Red: installDir: Condition Red: {} launch: - /ConditionRed.exe: + "/ConditionRed.exe": - when: - store: steam steam: id: 974860 Conduct Deluxe!: files: - /userdata//737870/remote: + "/userdata//737870/remote": tags: - save when: @@ -109587,11 +109917,11 @@ Conduct Deluxe!: installDir: ConductDeluxe: {} launch: - /Conduct Deluxe!.app/Contents/MacOS/Conduct Deluxe!: + "/Conduct Deluxe!.app/Contents/MacOS/Conduct Deluxe!": - when: - os: mac store: steam - /conduct deluxe.exe: + "/conduct deluxe.exe": - when: - os: windows store: steam @@ -109606,11 +109936,11 @@ Confederate Express: installDir: Confederate Express: {} launch: - /ConEX.app/Contents/MacOS/ConEX: + "/ConEX.app/Contents/MacOS/ConEX": - when: - os: mac store: steam - /ConEx.exe: + "/ConEx.exe": - when: - os: windows store: steam @@ -109618,7 +109948,7 @@ Confederate Express: id: 771370 Confess My Love: files: - /System/System.rvdata2: + "/System/System.rvdata2": tags: - save when: @@ -109626,7 +109956,7 @@ Confess My Love: installDir: ConfessMyLove: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -109636,7 +109966,7 @@ Config Wars: installDir: Config Wars: {} launch: - /Config Wars.exe: + "/Config Wars.exe": - when: - store: steam steam: @@ -109645,20 +109975,20 @@ Conflicks - Revolutionary Space Battles: installDir: conflicks: {} launch: - /conflicks.app: + "/conflicks.app": - when: - os: mac store: steam - /conflicks.exe: + "/conflicks.exe": - when: - os: windows store: steam - /conflicks.x86: + "/conflicks.x86": - when: - bit: 32 os: linux store: steam - /conflicks.x86_64: + "/conflicks.x86_64": - when: - bit: 64 os: linux @@ -109667,41 +109997,44 @@ Conflicks - Revolutionary Space Battles: id: 288260 Conflict Zone: files: - /DATA/SAVE: + "/DATA/SAVE": tags: - save when: - os: windows -'Conflict of Heroes: Awakening the Bear': +"Conflict of Heroes: Awakening the Bear": installDir: Conflict of Heroes Awakening the Bear: {} launch: - /autorun.exe: + "/autorun.exe": - when: - os: windows store: steam steam: id: 510320 -'Conflict of Nations: Modern War': +"Conflict of Nations: Modern War": installDir: Conflict of Nations: {} launch: - /Conflict of Nations.app/Contents/MacOS/Conflict of Nations: + "/Conflict of Nations.app/Contents/MacOS/Conflict of Nations": - when: - os: mac store: steam - /Conflict of Nations.exe: + "/Conflict of Nations.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam steam: id: 784950 -'Conflict: Denied Ops': +"Conflict: Denied Ops": installDir: Conflict Denied Ops: {} launch: - /ConflictDeniedOps.exe: + "/ConflictDeniedOps.exe": - when: - store: steam registry: @@ -109710,14 +110043,14 @@ Conflict Zone: - config steam: id: 8100 -'Conflict: Desert Storm': +"Conflict: Desert Storm": gog: id: 1207658998 installDir: conflict_desert_storm: {} launch: - /DesertStorm.exe: - - arguments: '' + "/DesertStorm.exe": + - arguments: "" when: - store: steam registry: @@ -109726,9 +110059,9 @@ Conflict Zone: - config steam: id: 211780 -'Conflict: Desert Storm II': +"Conflict: Desert Storm II": files: - /Documents/SCi/CDSII: + "/Documents/SCi/CDSII": tags: - save when: @@ -109737,26 +110070,26 @@ Conflict Zone: HKEY_LOCAL_MACHINE/SOFTWARE/SCi Games/CDS II: tags: - config -'Conflict: Europe': +"Conflict: Europe": gog: id: 1973799922 installDir: ConflictEurope: {} launch: - /dosbox_windows/dosbox.exe: - - arguments: \"CONEUROP.EXE\" -conf \"dosbox_conflict_europe.conf\" -exit -noconsole + "/dosbox_windows/dosbox.exe": + - arguments: "\\\"CONEUROP.EXE\\\" -conf \\\"dosbox_conflict_europe.conf\\\" -exit -noconsole" when: - os: windows store: steam - /runConflictEurope.sh: + "/runConflictEurope.sh": - when: - os: linux store: steam steam: id: 1244830 -'Conflict: Global Terror': +"Conflict: Global Terror": files: - /Eidos/ConflictGlobalStorm: + "/Eidos/ConflictGlobalStorm": tags: - save when: @@ -109765,14 +110098,14 @@ Conflict Zone: HKEY_LOCAL_MACHINE/SOFTWARE/Pivotal/Conflict Global/Device Settings: tags: - config -'Conflict: Vietnam': +"Conflict: Vietnam": files: - /SCi/ConflictVietnam: + "/SCi/ConflictVietnam": tags: - config when: - os: windows - /SCi/ConflictVietnam/*.sav: + "/SCi/ConflictVietnam/*.sav": tags: - save when: @@ -109785,11 +110118,11 @@ ConflictCraft: installDir: ConflictCraft: {} launch: - /ConflictCraft.app/Contents/MacOS/ConflictCraft: + "/ConflictCraft.app/Contents/MacOS/ConflictCraft": - when: - os: mac store: steam - /ConflictCraft.exe: + "/ConflictCraft.exe": - when: - os: windows store: steam @@ -109797,12 +110130,12 @@ ConflictCraft: id: 495570 Confrontation: files: - /Confrontation: + "/Confrontation": tags: - config when: - os: windows - /Confrontation/Profiles/Default/Saves: + "/Confrontation/Profiles/Default/Saves": tags: - save when: @@ -109810,7 +110143,7 @@ Confrontation: installDir: Confrontation: {} launch: - /Confrontation.exe: + "/Confrontation.exe": - when: - store: steam steam: @@ -109821,20 +110154,20 @@ Conga Master: installDir: Conga Master: {} launch: - /CongaMaster.app: + "/CongaMaster.app": - when: - os: mac store: steam - /CongaMaster.exe: + "/CongaMaster.exe": - when: - os: windows store: steam - /CongaMaster.x86: + "/CongaMaster.x86": - when: - bit: 32 os: linux store: steam - /CongaMaster.x86_64: + "/CongaMaster.x86_64": - when: - bit: 64 os: linux @@ -109843,12 +110176,12 @@ Conga Master: id: 489720 Conglomerate 451: files: - /AppData/LocalLow/RuneHeads/Conglomerate 451/mng_*.sav: + "/AppData/LocalLow/RuneHeads/Conglomerate 451/mng_*.sav": tags: - save when: - os: windows - /AppData/LocalLow/RuneHeads/Conglomerate 451/setting.cfg: + "/AppData/LocalLow/RuneHeads/Conglomerate 451/setting.cfg": tags: - config when: @@ -109858,15 +110191,15 @@ Conglomerate 451: installDir: Conglomerate 451: {} launch: - /Conglomerate 451.exe: + "/Conglomerate 451.exe": - when: - os: windows store: steam - /Conglomerate451.x86_64: + "/Conglomerate451.x86_64": - when: - os: linux store: steam - /Contents/MacOS/C451: + "/Contents/MacOS/C451": - when: - os: mac store: steam @@ -109880,7 +110213,7 @@ Congo: installDir: Congo: {} launch: - /Congo1/Binaries/Win64/Congo1-Win64-Shipping.exe: + "/Congo1/Binaries/Win64/Congo1-Win64-Shipping.exe": - when: - bit: 64 os: windows @@ -109891,11 +110224,11 @@ Congo Merc: installDir: Congo Merc: {} launch: - /CongoMerc.app: + "/CongoMerc.app": - when: - os: mac store: steam - /CongoMerc.exe: + "/CongoMerc.exe": - when: - os: windows store: steam @@ -109905,15 +110238,15 @@ Congresswolf: installDir: Congresswolf: {} launch: - /Congresswolf: + "/Congresswolf": - when: - os: linux store: steam - /Congresswolf.app/Contents/MacOS/Congresswolf: + "/Congresswolf.app/Contents/MacOS/Congresswolf": - when: - os: mac store: steam - /Congresswolf.exe: + "/Congresswolf.exe": - when: - os: windows store: steam @@ -109923,7 +110256,7 @@ Coniclysm: installDir: Coniclysm: {} launch: - /Coniclysm.exe: + "/Coniclysm.exe": - when: - store: steam steam: @@ -109932,15 +110265,15 @@ Conjuntalia: installDir: Conjuntalia: {} launch: - /UE4Win/Conjuntalia.exe: + "/UE4Win/Conjuntalia.exe": - when: - os: windows store: steam - /aTalia.x86_64: + "/aTalia.x86_64": - when: - os: linux store: steam - /talia.exe: + "/talia.exe": - when: - os: windows store: steam @@ -109951,9 +110284,9 @@ Conjure Strike: Conjure Strike: {} steam: id: 924960 -Conjuror's Eye: +"Conjuror's Eye": installDir: - Conjuror's Eye: {} + "Conjuror's Eye": {} steam: id: 805320 Conjury of Nature: @@ -109965,7 +110298,7 @@ Connect the Dots: installDir: Connect The Dots: {} launch: - /ConnectTheDots.exe: + "/ConnectTheDots.exe": - when: - os: windows store: steam @@ -109975,25 +110308,25 @@ Connected Hearts - Visual novel: installDir: Connected Hearts - Visual novel: {} launch: - /Connected Hearts.app: + "/Connected Hearts.app": - when: - os: mac store: steam - /Connected Hearts.exe: + "/Connected Hearts.exe": - when: - os: windows store: steam - /Connected Hearts.sh: + "/Connected Hearts.sh": - when: - os: linux store: steam steam: id: 603140 -'Connectionism:Pain Control': +"Connectionism:Pain Control": installDir: ConnectomePain Control: {} launch: - /Connectome_Pain_Control.exe: + "/Connectome_Pain_Control.exe": - when: - bit: 64 os: windows @@ -110005,35 +110338,35 @@ Conquer: Conquer: {} steam: id: 779240 -Conqueror's Blade: +"Conqueror's Blade": files: - /Conqueror's Blade: + "/Conqueror's Blade": tags: - config when: - os: windows installDir: - Conqueror's Blade: {} + "Conqueror's Blade": {} launch: - /ConquerorsBladeSteamLoader.exe: - - arguments: '-fromsteam' + "/ConquerorsBladeSteamLoader.exe": + - arguments: "-fromsteam" when: - store: steam steam: id: 905370 -'Conqueror: A.D. 1086': +"Conqueror: A.D. 1086": files: - /CONQUER.INI: + "/CONQUER.INI": tags: - config when: - os: dos - /DEFAULT.DAT: + "/DEFAULT.DAT": tags: - config when: - os: dos - /SAVEGAME: + "/SAVEGAME": tags: - save when: @@ -110044,11 +110377,11 @@ Conquest of Champions: installDir: ConquestOfChampions: {} launch: - /ConquestGame.app/Contents/MacOS/ConquestGame: + "/ConquestGame.app/Contents/MacOS/ConquestGame": - when: - os: mac store: steam - /ConquestGame.exe: + "/ConquestGame.exe": - when: - os: windows store: steam @@ -110056,7 +110389,7 @@ Conquest of Champions: id: 266450 Conquest of Elysium 3: files: - /coe3/saves: + "/coe3/saves": tags: - save when: @@ -110064,15 +110397,15 @@ Conquest of Elysium 3: installDir: ConquestOfElysium3: {} launch: - /coe3.app/Contents/MacOS/coe3: + "/coe3.app/Contents/MacOS/coe3": - when: - os: mac store: steam - /coe3.exe: + "/coe3.exe": - when: - os: windows store: steam - /coe3.sh: + "/coe3.sh": - when: - os: linux store: steam @@ -110080,7 +110413,7 @@ Conquest of Elysium 3: id: 211900 Conquest of Elysium 4: files: - /coe4/saves: + "/coe4/saves": tags: - save when: @@ -110088,15 +110421,15 @@ Conquest of Elysium 4: installDir: ConquestOfElysium4: {} launch: - /coe4.exe: + "/coe4.exe": - when: - os: windows store: steam - /coe4.sh: + "/coe4.sh": - when: - os: linux store: steam - /coe4_mac: + "/coe4_mac": - when: - os: mac store: steam @@ -110106,7 +110439,7 @@ Conquest of Gerazania: installDir: Conquest of Gerazania: {} launch: - /Conquest of Gerazania.exe: + "/Conquest of Gerazania.exe": - when: - os: windows store: steam @@ -110114,12 +110447,12 @@ Conquest of Gerazania: id: 710650 Conquest of the New World: files: - /cloud_saves: + "/cloud_saves": tags: - save when: - store: gog - /cloud_saves/CONQUEST.CFG: + "/cloud_saves/CONQUEST.CFG": tags: - config when: @@ -110129,47 +110462,47 @@ Conquest of the New World: installDir: Conquest of the New World: {} launch: - /DOSBox/dosbox.app/Contents/MacOS/DOSBox: - - arguments: '-conf \"./dosboxConquest.conf\" -conf \"./dosboxConquest_single.conf\" -noconsole' + "/DOSBox/dosbox.app/Contents/MacOS/DOSBox": + - arguments: "-conf \\\"./dosboxConquest.conf\\\" -conf \\\"./dosboxConquest_single.conf\\\" -noconsole" when: - os: mac store: steam - /Launch Conquest of the New World.bat: + "/Launch Conquest of the New World.bat": - when: - os: windows store: steam - /dosbox/dosbox: - - arguments: '-conf \"./dosboxConquest.conf\" -conf \"./dosboxConquest_single.conf\" -noconsole' + "/dosbox/dosbox": + - arguments: "-conf \\\"./dosboxConquest.conf\\\" -conf \\\"./dosboxConquest_single.conf\\\" -noconsole" when: - os: linux store: steam steam: id: 674190 -'Conquest: Frontier Wars': +"Conquest: Frontier Wars": gog: id: 1207659159 installDir: Conquest Frontier Wars: {} launch: - /conquest.cmd: + "/conquest.cmd": - when: - store: steam - /goodies.cmd: + "/goodies.cmd": - when: - store: steam steam: id: 578670 -'Conquests of Camelot: The Search for the Grail': +"Conquests of Camelot: The Search for the Grail": gog: id: 1516146567 -'Conquests of the Longbow: The Legend of Robin Hood': +"Conquests of the Longbow: The Legend of Robin Hood": gog: id: 1344050778 Conran - The dinky Raccoon: installDir: Conran: {} launch: - /Conran.exe: + "/Conran.exe": - when: - os: windows store: steam @@ -110187,12 +110520,12 @@ Conscript: id: 1286990 Consortium: files: - /consortium/SAVE: + "/consortium/SAVE": tags: - save when: - os: windows - /consortium/cfg: + "/consortium/cfg": tags: - config when: @@ -110202,12 +110535,12 @@ Consortium: installDir: Consortium: {} launch: - /consortium.exe: + "/consortium.exe": - when: - bit: 32 os: windows store: steam - - arguments: '-dev' + - arguments: "-dev" when: - bit: 32 os: windows @@ -110216,36 +110549,36 @@ Consortium: id: 264240 Consortium Remastered: files: - /Consortium/Saved/Config/WindowsNoEditor: + "/Consortium/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /idgi/Consortium/CTUser/: + "/idgi/Consortium/CTUser/": tags: - config when: - os: windows - /idgi/Consortium/SaveGames/: + "/idgi/Consortium/SaveGames/": tags: - save when: - os: windows steam: id: 2380550 -'Consortium: The Tower': +"Consortium: The Tower": files: - /thetower/Saved/Config/WindowsNoEditor: + "/thetower/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /thetower/Saved/csav: + "/thetower/Saved/csav": tags: - save when: - os: windows - /thetower/Saved/csav/inputsettings.ini: + "/thetower/Saved/csav/inputsettings.ini": tags: - config when: @@ -110253,7 +110586,7 @@ Consortium Remastered: installDir: Consortium The Tower: {} launch: - /thetower.exe: + "/thetower.exe": - when: - bit: 64 os: windows @@ -110262,12 +110595,12 @@ Consortium Remastered: id: 626250 Constant C: files: - /ConstantC_Saves//slot*/Save.lua: + "/ConstantC_Saves//slot*/Save.lua": tags: - save when: - os: windows - /ConstantC_Saves/gameSetting.txt: + "/ConstantC_Saves/gameSetting.txt": tags: - config when: @@ -110275,7 +110608,7 @@ Constant C: installDir: ConstantC: {} launch: - /ConstantC.exe: + "/ConstantC.exe": - when: - bit: 32 os: windows @@ -110284,12 +110617,12 @@ Constant C: id: 251510 Constantine: files: - /*.dat: + "/*.dat": tags: - save when: - os: windows - /*.dpt: + "/*.dpt": tags: - save when: @@ -110302,11 +110635,11 @@ Constellatio: installDir: Rocky Planet: {} launch: - /Rocky Planet.app/Contents/MacOS/Rocky Planet: + "/Rocky Planet.app/Contents/MacOS/Rocky Planet": - when: - os: mac store: steam - /Rocky Planet.exe: + "/Rocky Planet.exe": - when: - os: windows store: steam @@ -110316,7 +110649,7 @@ Constellation Distantia: installDir: Constellation Distantia: {} launch: - /DistantiaWin.exe: + "/DistantiaWin.exe": - when: - os: windows store: steam @@ -110331,7 +110664,7 @@ Constricting Cubes: installDir: Constricting Cubes: {} launch: - /ConstrictingCubes.exe: + "/ConstrictingCubes.exe": - when: - bit: 64 os: windows @@ -110342,35 +110675,35 @@ Construct PRO: installDir: Construct PRO: {} launch: - /Construct PRO.exe: + "/Construct PRO.exe": - when: - os: windows store: steam steam: id: 941800 -'Construct: Embers of Life': +"Construct: Embers of Life": installDir: Construct: {} launch: - /Construct Embers of Life.exe: + "/Construct Embers of Life.exe": - when: - os: windows store: steam steam: id: 362060 -'Construct: Escape the System': +"Construct: Escape the System": installDir: CONSTRUCT: {} launch: - /CONSTRUCT.app: + "/CONSTRUCT.app": - when: - os: mac store: steam - /CONSTRUCT.exe: + "/CONSTRUCT.exe": - when: - os: windows store: steam - /CONSTRUCT.x86: + "/CONSTRUCT.x86": - when: - os: linux store: steam @@ -110384,11 +110717,11 @@ Construction Charlie: installDir: Construction Charlie: {} launch: - /CCBuilder.exe: + "/CCBuilder.exe": - when: - os: windows store: steam - /CCGame.exe: + "/CCGame.exe": - when: - os: windows store: steam @@ -110398,10 +110731,10 @@ Construction Machines 2014: installDir: Construction Machines 2014: {} launch: - /ConstructionMachines.exe: + "/ConstructionMachines.exe": - when: - store: steam - /Settings.exe: + "/Settings.exe": - when: - store: steam steam: @@ -110413,7 +110746,7 @@ Construction Simulator: installDir: Construction Simulator: {} launch: - /ConSim.exe: + "/ConSim.exe": - when: - os: windows store: steam @@ -110423,12 +110756,12 @@ Construction Simulator 2 US - Pocket Edition: installDir: Construction Simulator 2 US - Pocket Edition: {} launch: - /ConSim2USPE.exe: + "/ConSim2USPE.exe": - when: - bit: 64 os: windows store: steam - /ConSim2USPE32.exe: + "/ConSim2USPE32.exe": - when: - bit: 32 os: windows @@ -110437,17 +110770,17 @@ Construction Simulator 2 US - Pocket Edition: id: 787740 Construction Simulator 2015: files: - /ConSim2015_Data/config.ini: + "/ConSim2015_Data/config.ini": tags: - config when: - os: windows - /Saved Games/ConstructionSimulator2015/Profiles/0: + "/Saved Games/ConstructionSimulator2015/Profiles/0": tags: - save when: - os: windows - /Saved Games/ConstructionSimulator2015/Profiles/0/*.xml: + "/Saved Games/ConstructionSimulator2015/Profiles/0/*.xml": tags: - config when: @@ -110455,26 +110788,29 @@ Construction Simulator 2015: installDir: ConSim2015: {} launch: - /ConSim2015.app: + "/ConSim2015.app": - when: - os: mac store: steam - /ConSim2015.exe: + "/ConSim2015.exe": - when: - os: windows store: steam - /start.sh: + "/start.sh": - when: - bit: 32 os: linux store: steam + - bit: 64 + os: linux + store: steam steam: id: 289950 Construction Truck Simulator: installDir: Construction Truck Simulator: {} launch: - /ConstructionTruckSimulator.exe: + "/ConstructionTruckSimulator.exe": - when: - os: windows store: steam @@ -110487,12 +110823,12 @@ Constructionary: id: 1031830 Constructor: files: - /SAVEGAME: + "/SAVEGAME": tags: - save when: - os: dos - /SETTINGS: + "/SETTINGS": tags: - config when: @@ -110502,30 +110838,30 @@ Constructor: installDir: Constructor Classic: {} launch: - /DOSBOX/DOSBox.exe: - - arguments: '-conf \"..\\dosboxConstructor.conf\" -conf \"..\\dosboxConstructor_single.conf\" -noconsole -c exit' + "/DOSBOX/DOSBox.exe": + - arguments: "-conf \\\"..\\\\dosboxConstructor.conf\\\" -conf \\\"..\\\\dosboxConstructor_single.conf\\\" -noconsole -c exit" when: - os: windows store: steam - workingDir: /DOSBOX + workingDir: "/DOSBOX" steam: id: 599600 Constructor HD: files: - /System 3/Constructor: + "/System 3/Constructor": tags: - save when: - os: windows id: steamExtra: - - 619760 - 616150 - 616901 + - 619760 installDir: Constructor: {} launch: - /Constructor.exe: + "/Constructor.exe": - when: - os: windows store: steam @@ -110535,11 +110871,11 @@ Constructor Plus: installDir: Constructor Plus: {} launch: - /Constructor.exe: + "/Constructor.exe": - when: - os: windows store: steam - - arguments: '-Q' + - arguments: "-Q" when: - os: windows store: steam @@ -110549,50 +110885,50 @@ Consumed Awakening: installDir: Consumed Awakening: {} launch: - /Consumed Awakening.exe: + "/Consumed Awakening.exe": - when: - os: windows store: steam - /ConsumedAwakening.app: + "/ConsumedAwakening.app": - when: - os: mac store: steam - /ConsumedAwakening.x86: + "/ConsumedAwakening.x86": - when: - bit: 32 os: linux store: steam - /ConsumedAwakening.x86_64: + "/ConsumedAwakening.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 1187250 -'Consummate: Missing World': +"Consummate: Missing World": installDir: consummate: {} steam: id: 630060 -'Contact Draw: Bowling': +"Contact Draw: Bowling": steam: id: 877390 -'Contact Draw: Football': +"Contact Draw: Football": steam: id: 860220 -'Contact: Last Defence': +"Contact: Last Defence": installDir: ContactLastDefence: {} steam: id: 944960 Contagion: files: - /contagion/cfg: + "/contagion/cfg": tags: - config when: - os: windows - /userdata//238430/remote/cfg/config.cfg: + "/userdata//238430/remote/cfg/config.cfg": tags: - config when: @@ -110600,14 +110936,14 @@ Contagion: installDir: Contagion: {} launch: - /contagion.exe: - - arguments: '-steam' + "/contagion.exe": + - arguments: "-steam" when: - os: windows store: steam steam: id: 238430 -'Contagion VR: Outbreak': +"Contagion VR: Outbreak": installDir: ContagionVR: {} steam: @@ -110616,15 +110952,15 @@ Containment: installDir: FRContainment: {} launch: - /Containment.app/Contents/MacOS/Containment: + "/Containment.app/Contents/MacOS/Containment": - when: - os: mac store: steam - /Containment.exe: + "/Containment.exe": - when: - os: windows store: steam - /Containment.x86: + "/Containment.x86": - when: - os: linux store: steam @@ -110634,15 +110970,15 @@ Containment (Planet X): installDir: CONTAINMENT: {} launch: - /Containment.app: + "/Containment.app": - when: - os: mac store: steam - /Containment.exe: + "/Containment.exe": - when: - os: windows store: steam - /Containment.x86_64: + "/Containment.x86_64": - when: - os: linux store: steam @@ -110652,7 +110988,7 @@ Containment Corps: installDir: Containment Corps: {} launch: - /ContainmentCorps.exe: + "/ContainmentCorps.exe": - when: - bit: 64 os: windows @@ -110661,7 +110997,7 @@ Containment Corps: id: 693830 Containment Initiative: files: - /AppData/LocalLow/Containment Initiative/Containment Initiative/playerInfo.dat: + "/AppData/LocalLow/Containment Initiative/Containment Initiative/playerInfo.dat": tags: - save when: @@ -110670,11 +111006,11 @@ Containment Initiative: Containment Initiative: {} steam: id: 527700 -'Containment Initiative: PC Standalone': +"Containment Initiative: PC Standalone": installDir: Containment Initiative PC Standalone: {} launch: - /CIPC.exe: + "/CIPC.exe": - when: - store: steam steam: @@ -110683,29 +111019,29 @@ Containment Protocol: installDir: Containment Protocol: {} launch: - /ContainmentProtocol.app: + "/ContainmentProtocol.app": - when: - os: mac store: steam - /ContainmentProtocol.exe: + "/ContainmentProtocol.exe": - when: - os: windows store: steam steam: id: 346300 -'Containment: The Zombie Puzzler': +"Containment: The Zombie Puzzler": installDir: Containment: {} launch: - /Containment.app: + "/Containment.app": - when: - os: mac store: steam - /Containment.exe: + "/Containment.exe": - when: - os: windows store: steam - /containment.x86: + "/containment.x86": - when: - os: linux store: steam @@ -110715,7 +111051,7 @@ Contasion 2: installDir: CONTASION 2: {} launch: - /Contasion 2.exe: + "/Contasion 2.exe": - when: - os: windows store: steam @@ -110725,7 +111061,7 @@ Content Creator Simulator: installDir: Content Creator Simulator: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -110735,7 +111071,7 @@ Context: installDir: Context: {} launch: - /Context.exe: + "/Context.exe": - when: - os: windows store: steam @@ -110745,7 +111081,7 @@ Continent of the Ninth Seal: installDir: C9: {} launch: - /C9Launcher.exe: + "/C9Launcher.exe": - when: - os: windows store: steam @@ -110756,13 +111092,13 @@ Contingent: id: 908330 Continue?9876543210: files: - /.config/unity3d/Jason Oda/continue: + "/.config/unity3d/Jason Oda/continue": tags: - config - save when: - os: linux - /Library/Preferences/unity.Jason Oda.continue.plist: + "/Library/Preferences/unity.Jason Oda.continue.plist": tags: - config when: @@ -110770,15 +111106,15 @@ Continue?9876543210: installDir: Continue_4: {} launch: - /Continue_LINUX_1_4.x86: + "/Continue_LINUX_1_4.x86": - when: - os: linux store: steam - /Continue_OSX_1_4.app: + "/Continue_OSX_1_4.app": - when: - os: mac store: steam - /Continue_WIN_1_4.exe: + "/Continue_WIN_1_4.exe": - when: - os: windows store: steam @@ -110792,11 +111128,11 @@ Continuum: installDir: Continuum: {} launch: - /Continuum.app/Contents/MacOS/Continuum: + "/Continuum.app/Contents/MacOS/Continuum": - when: - os: mac store: steam - /Continuum/Continuum.exe: + "/Continuum/Continuum.exe": - when: - os: windows store: steam @@ -110806,7 +111142,7 @@ Contort Effect: installDir: Contort Effect: {} launch: - /CONTORTEFFECT.exe: + "/CONTORTEFFECT.exe": - when: - bit: 64 os: windows @@ -110819,20 +111155,20 @@ Contra Anniversary Collection: installDir: Contra Anniversary Collection: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam steam: id: 1018020 -'Contra: Rogue Corps': +"Contra: Rogue Corps": files: - /Documents/CONTRA ROGUE CORPS: + "/Documents/CONTRA ROGUE CORPS": tags: - config when: - os: windows - /userdata//1020540/remote: + "/userdata//1020540/remote": tags: - save when: @@ -110841,7 +111177,7 @@ Contra Anniversary Collection: installDir: CONTRA ROGUE CORPS: {} launch: - /contra_rc.exe: + "/contra_rc.exe": - when: - bit: 64 os: windows @@ -110850,7 +111186,7 @@ Contra Anniversary Collection: id: 1020540 Contraband Police: files: - /AppData/LocalLow/CrazyRocks/ContrabandPolice/saves: + "/AppData/LocalLow/CrazyRocks/ContrabandPolice/saves": tags: - save when: @@ -110858,7 +111194,7 @@ Contraband Police: installDir: Contraband Police: {} launch: - /ContrabandPolice.exe: + "/ContrabandPolice.exe": - when: - store: steam steam: @@ -110867,7 +111203,7 @@ Contract: installDir: Contract: {} launch: - /Contract.exe: + "/Contract.exe": - when: - os: windows store: steam @@ -110875,12 +111211,12 @@ Contract: id: 409170 Contract J.A.C.K.: files: - /*.cfg: + "/*.cfg": tags: - config when: - os: windows - /Save: + "/Save": tags: - save when: @@ -110892,12 +111228,12 @@ Contract Wars Client: - config Contract With the Devil: files: - /Az-Art/Contract with the Devil/en/config.dat: + "/Az-Art/Contract with the Devil/en/config.dat": tags: - config when: - os: windows - /Az-Art/Contract with the Devil/en/users.dat: + "/Az-Art/Contract with the Devil/en/users.dat": tags: - save when: @@ -110905,7 +111241,7 @@ Contract With the Devil: installDir: Contract With The Devil: {} launch: - /Contract with the Devil.exe: + "/Contract with the Devil.exe": - when: - os: windows store: steam @@ -110915,16 +111251,16 @@ Contract Work: installDir: Contract Work: {} launch: - /ContractWork: + "/ContractWork": - when: - bit: 64 os: linux store: steam - /ContractWork.app: + "/ContractWork.app": - when: - os: mac store: steam - /ContractWork.exe: + "/ContractWork.exe": - when: - bit: 64 os: windows @@ -110935,7 +111271,7 @@ Contracted: installDir: CONTRACTED: {} launch: - /CONTRACTED_1.0.26.exe: + "/CONTRACTED_1.0.26.exe": - when: - os: windows store: steam @@ -110943,12 +111279,12 @@ Contracted: id: 600330 Contractors: files: - /Contractors_UE4_22/Saved/Config/WindowsNoEditor: + "/Contractors_UE4_22/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /Contractors_UE4_22/Saved/SaveGames: + "/Contractors_UE4_22/Saved/SaveGames": tags: - save when: @@ -110957,14 +111293,14 @@ Contractors: ContractorsVR: {} steam: id: 963930 -'Contradiction: Spot The Liar!': +"Contradiction: Spot The Liar!": files: - /userdata//373390/remote/Save*: + "/userdata//373390/remote/Save*": tags: - save when: - store: steam - /Contradiction/Local Storage: + "/Contradiction/Local Storage": tags: - save when: @@ -110972,11 +111308,11 @@ Contractors: installDir: Contradiction: {} launch: - /Contradiction.app: + "/Contradiction.app": - when: - os: mac store: steam - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -110984,37 +111320,37 @@ Contractors: id: 373390 Contraption Maker: files: - /data/cmprefs.data: + "/data/cmprefs.data": tags: - config when: - os: windows - /data/layout.data: + "/data/layout.data": tags: - config when: - os: windows - /data/puzzles.data: + "/data/puzzles.data": tags: - save when: - os: windows - /.config/spotkincm/contraptionmaker/data/puzzles.data: + "/.config/spotkincm/contraptionmaker/data/puzzles.data": tags: - save when: - os: linux - /Documents/contraptionmaker/cmprefs.data: + "/Documents/contraptionmaker/cmprefs.data": tags: - config when: - os: mac - /Documents/contraptionmaker/data/puzzles.data: + "/Documents/contraptionmaker/data/puzzles.data": tags: - save when: - os: mac - /Documents/contraptionmaker/layout.data: + "/Documents/contraptionmaker/layout.data": tags: - config when: @@ -111022,16 +111358,16 @@ Contraption Maker: installDir: ContraptionMaker: {} launch: - /ContraptionMaker: + "/ContraptionMaker": - when: - bit: 64 os: linux store: steam - /ContraptionMaker.app: + "/ContraptionMaker.app": - when: - os: mac store: steam - /ContraptionMaker.exe: + "/ContraptionMaker.exe": - when: - os: windows store: steam @@ -111041,7 +111377,7 @@ Contraptions: installDir: Contraptions: {} launch: - /contraptions.exe: + "/contraptions.exe": - when: - os: windows store: steam @@ -111051,7 +111387,7 @@ Contraptions Parkour: installDir: World of Contraptions: {} launch: - /World of Contraptions.exe: + "/World of Contraptions.exe": - when: - os: windows store: steam @@ -111059,12 +111395,12 @@ Contraptions Parkour: id: 681640 Contrast: files: - /binaries/win32/contrastsave*: + "/binaries/win32/contrastsave*": tags: - save when: - os: windows - /My Games/Contrast/ContrastGame/Config: + "/My Games/Contrast/ContrastGame/Config": tags: - config when: @@ -111072,23 +111408,23 @@ Contrast: installDir: Contrast: {} launch: - /Binaries/Win32/ContrastGame.exe: + "/Binaries/Win32/ContrastGame.exe": - when: - os: windows store: steam - workingDir: /Binaries/Win32 - - arguments: '-SKIPGPUCHECK -windowed -w 1280 -h 720' + workingDir: "/Binaries/Win32" + - arguments: "-SKIPGPUCHECK -windowed -w 1280 -h 720" when: - os: windows store: steam - workingDir: /Binaries/Win32 + workingDir: "/Binaries/Win32" steam: id: 224460 Contrasted: installDir: Contrasted: {} launch: - /contrasted.exe: + "/contrasted.exe": - when: - os: windows store: steam @@ -111096,56 +111432,57 @@ Contrasted: id: 803960 Control: files: - /renderer.ini: + "/renderer.ini": tags: - config when: - - store: epic - store: gog - store: steam - /userdata//870780/remote: + "/userdata//870780/remote": tags: - save when: - store: steam - /userdata//870780/remote/preferences_data: + "/userdata//870780/remote/preferences_data": tags: - config when: - store: steam - /My Games/Control/Saves: + "/My Games/Control/Saves": tags: - save when: - - store: gog - /My Games/Control/Saves/preferences_data: + - os: windows + store: gog + "/My Games/Control/Saves/preferences_data": tags: - config when: - - store: gog - /Packages/505GAMESS.P.A.ControlPCGP_tefn33qh9azfc/SystemAppData/wgs: + - os: windows + store: gog + "/Packages/505GAMESS.P.A.ControlPCGP_tefn33qh9azfc/SystemAppData/wgs": tags: - config - save when: - os: windows store: microsoft - /Remedy/Control/Default-Epic-User: + "/Remedy/Control/Default-Epic-User": tags: - save when: - - store: epic - /Remedy/Control/Default-Epic-User/preferences: + - os: windows + "/Remedy/Control/Default-Epic-User/preferences": tags: - config when: - - store: epic + - os: windows gog: id: 2049187585 installDir: Control: {} launch: - /Control.exe: + "/Control.exe": - when: - os: windows store: steam @@ -111155,11 +111492,11 @@ Control Craft 2: installDir: Control Craft 2: {} launch: - /ControlCraft 2.app/Contents/MacOS/ControlCraft 2: + "/ControlCraft 2.app/Contents/MacOS/ControlCraft 2": - when: - os: mac store: steam - /ControlCraft2.exe: + "/ControlCraft2.exe": - when: - os: windows store: steam @@ -111169,11 +111506,11 @@ Control Craft 3: installDir: Control Craft 3: {} launch: - /ControlCraft 3.app/Contents/MacOS/ControlCraft 3: + "/ControlCraft 3.app/Contents/MacOS/ControlCraft 3": - when: - os: mac store: steam - /ControlCraft3.exe: + "/ControlCraft3.exe": - when: - os: windows store: steam @@ -111183,20 +111520,20 @@ Control Freak: installDir: Control Freak: {} launch: - /MapBuildingTest.exe: + "/MapBuildingTest.exe": - when: - bit: 64 os: windows store: steam steam: id: 964450 -'Conv/rgence: A League of Legends Story': +"Conv/rgence: A League of Legends Story": gog: id: 2067376346 installDir: Convergence: {} launch: - /Convergence.exe: + "/Convergence.exe": - when: - os: windows store: steam @@ -111206,7 +111543,7 @@ Convenience Store: installDir: Convenience Store: {} launch: - /store.exe: + "/store.exe": - when: - os: windows store: steam @@ -111221,26 +111558,26 @@ Convicted Galaxy: installDir: Convicted Galaxy: {} launch: - /ConvictedGalaxy_Linux.x86: + "/ConvictedGalaxy_Linux.x86": - when: - bit: 32 os: linux store: steam - /ConvictedGalaxy_Linux.x86_64: + "/ConvictedGalaxy_Linux.x86_64": - when: - bit: 64 os: linux store: steam - /ConvictedGalaxy_OSX.app: + "/ConvictedGalaxy_OSX.app": - when: - os: mac store: steam - /ConvictedGalaxy_Windows.exe: + "/ConvictedGalaxy_Windows.exe": - when: - bit: 32 os: windows store: steam - /ConvictedGalaxy_Windows_64.exe: + "/ConvictedGalaxy_Windows_64.exe": - when: - bit: 64 os: windows @@ -111251,11 +111588,11 @@ Conviction: installDir: Conviction: {} launch: - /Game.app: + "/Game.app": - when: - os: mac store: steam - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -111263,13 +111600,13 @@ Conviction: id: 811070 Convoy: files: - /.config/unity3d/Convoy Games/Convoy/Convoy: + "/.config/unity3d/Convoy Games/Convoy/Convoy": tags: - config - save when: - os: linux - /Convoy: + "/Convoy": tags: - config - save @@ -111280,28 +111617,28 @@ Convoy: installDir: Convoy: {} launch: - /Convoy.app: + "/Convoy.app": - when: - os: mac store: steam - /Convoy.exe: + "/Convoy.exe": - when: - os: windows store: steam - /Convoy.x86: + "/Convoy.x86": - when: - os: linux store: steam steam: id: 318230 -'Conway: Disappearance at Dahlia View': +"Conway: Disappearance at Dahlia View": files: - /My Games/DahliaView/Config/WindowsNoEditor: + "/My Games/DahliaView/Config/WindowsNoEditor": tags: - config when: - os: windows - /My Games/DahliaView/Saved/SaveGames: + "/My Games/DahliaView/Saved/SaveGames": tags: - save when: @@ -111311,7 +111648,7 @@ Convoy: installDir: Conway Disappearance at Dahlia View: {} launch: - /DahliaView.exe: + "/DahliaView.exe": - when: - bit: 64 os: windows @@ -111322,7 +111659,7 @@ Cook Dungeon: installDir: Cook Dungeon: {} launch: - /Cook Dungeon.exe: + "/Cook Dungeon.exe": - when: - store: steam steam: @@ -111331,21 +111668,21 @@ Cook Serve Forever: installDir: Cook Serve Forever: {} launch: - /CookServeForever.exe: + "/CookServeForever.exe": - when: - os: windows store: steam steam: id: 1928090 -'Cook, Serve, Delicious!': +"Cook, Serve, Delicious!": files: - /.config/CSDSteamBuild: + "/.config/CSDSteamBuild": tags: - config - save when: - os: linux - /CSDSteamBuild: + "/CSDSteamBuild": tags: - config - save @@ -111356,29 +111693,29 @@ Cook Serve Forever: installDir: CookServeDelicious: {} launch: - /CSDSteamBuild.exe: + "/CSDSteamBuild.exe": - when: - os: windows store: steam - /Cook Serve Delicious.app: + "/Cook Serve Delicious.app": - when: - os: mac store: steam - /run.sh: + "/run.sh": - when: - os: linux store: steam steam: id: 247020 -'Cook, Serve, Delicious! 2!!': +"Cook, Serve, Delicious! 2!!": files: - /NEW_CSD2_PS4Steam: + "/NEW_CSD2_PS4Steam": tags: - config - save when: - os: windows - /NEW_CSD2_PS4Steam: + "/NEW_CSD2_PS4Steam": tags: - config - save @@ -111389,33 +111726,33 @@ Cook Serve Forever: installDir: CookServeDelicious2: {} launch: - /CSD2.app: + "/CSD2.app": - when: - os: mac store: steam - /CSD2.exe: + "/CSD2.exe": - when: - os: windows store: steam - /NEW_CSD2_PS4Steam: + "/NEW_CSD2_PS4Steam": - when: - os: linux store: steam steam: id: 386620 -'Cook, Serve, Delicious! 3?!': +"Cook, Serve, Delicious! 3?!": files: - /userdata//1000030/remote/1S_CSD3_CloudSave.ini: + "/userdata//1000030/remote/1S_CSD3_CloudSave.ini": tags: - config when: - store: steam - /CSD3_Foodtruck: + "/CSD3_Foodtruck": tags: - save when: - os: windows - /CSD3_Foodtruck/CSD3_Op.ini: + "/CSD3_Foodtruck/CSD3_Op.ini": tags: - config when: @@ -111425,38 +111762,39 @@ Cook Serve Forever: installDir: CookServeDelicious3: {} launch: - /CSD3.exe: + "/CSD3.exe": - when: - os: windows store: steam - /CSD3_Foodtruck.app: + "/CSD3_Foodtruck.app": - when: - os: mac store: steam steam: id: 1000030 -'Cook, Serve, Delicious: Re-Mustard!': +"Cook, Serve, Delicious: Re-Mustard!": steam: id: 2139040 Cook-Out: files: - /AppData/LocalLow/ResolutionGames/Cook-Out/: + "/AppData/LocalLow/ResolutionGames/Cook-Out/": tags: - save when: - - store: steam + - os: windows + store: steam installDir: Cook-Out: {} steam: id: 1523720 Cookie Clicker: files: - /userdata//1454400/remote/save.txt: + "/userdata//1454400/remote/save.txt": tags: - save when: - store: steam - /cookie-electron: + "/cookie-electron": tags: - config when: @@ -111464,8 +111802,8 @@ Cookie Clicker: installDir: Cookie Clicker: {} launch: - /Cookie Clicker.exe: - - arguments: '--in-process-gpu --process-start-args \"-disable-features=HardwareMediaKeyHandling\"' + "/Cookie Clicker.exe": + - arguments: "--in-process-gpu --process-start-args \\\"-disable-features=HardwareMediaKeyHandling\\\"" when: - store: steam steam: @@ -111474,20 +111812,20 @@ Cookies vs. Claus: installDir: CookiesvsClaus: {} launch: - /CookiesvsClaus.app: + "/CookiesvsClaus.app": - when: - os: mac store: steam - /CookiesvsClaus.exe: + "/CookiesvsClaus.exe": - when: - os: windows store: steam - /CookiesvsClaus.x86: + "/CookiesvsClaus.x86": - when: - bit: 32 os: linux store: steam - /CookiesvsClaus.x86_64: + "/CookiesvsClaus.x86_64": - when: - bit: 64 os: linux @@ -111498,7 +111836,7 @@ Cooking Academy Fire and Knives: installDir: Cooking Academy Collection: {} launch: - /Cooking Academy Collection.exe: + "/Cooking Academy Collection.exe": - when: - os: windows store: steam @@ -111509,7 +111847,7 @@ Cooking Championship: id: 1087030 Cooking Companions: files: - /RenPy/CookingCompanions-Final-1587829054/*.save: + "/RenPy/CookingCompanions-Final-1587829054/*.save": tags: - save when: @@ -111517,11 +111855,11 @@ Cooking Companions: installDir: Cooking Companions: {} launch: - /Contents/MacOS/CookingCompanions: + "/Contents/MacOS/CookingCompanions": - when: - os: mac store: steam - /CookingCompanions.exe: + "/CookingCompanions.exe": - when: - os: windows store: steam @@ -111531,11 +111869,11 @@ Cooking Dash: installDir: Cooking Dash: {} launch: - /Cooking Dash.app: + "/Cooking Dash.app": - when: - os: mac store: steam - /cookingdash.exe: + "/cookingdash.exe": - when: - os: windows store: steam @@ -111545,7 +111883,7 @@ Cooking Live: installDir: Cooking Live Restaurant Game: {} launch: - /cl.exe: + "/cl.exe": - when: - bit: 64 os: windows @@ -111558,7 +111896,7 @@ Cooking Simulator: installDir: CookingSimulator: {} launch: - /CookingSim.exe: + "/CookingSim.exe": - when: - os: windows store: steam @@ -111566,7 +111904,7 @@ Cooking Simulator: id: 641320 Cooking Simulator VR: files: - /AppData/LocalLow/GameBoom VR/CookingSimulatorVR/Saves: + "/AppData/LocalLow/GameBoom VR/CookingSimulatorVR/Saves": tags: - save when: @@ -111579,17 +111917,17 @@ Cooking Trip: installDir: Cooking Trip: {} launch: - /CookingTrip.exe: + "/CookingTrip.exe": - when: - os: windows store: steam steam: id: 1028110 -'Cooking Trip: Back on the Road': +"Cooking Trip: Back on the Road": installDir: Cooking Trip Back on the road: {} launch: - /Cooking trip Back on the road.exe: + "/Cooking trip Back on the road.exe": - when: - os: windows store: steam @@ -111599,7 +111937,7 @@ Cooking Witch: installDir: Cooking Witch: {} launch: - /Cooking Witch.exe: + "/Cooking Witch.exe": - when: - os: windows store: steam @@ -111612,7 +111950,7 @@ Cool Headed: installDir: Cool Headed: {} launch: - /CoolHeaded.exe: + "/CoolHeaded.exe": - when: - os: windows store: steam @@ -111630,16 +111968,16 @@ Copa Petrobras de Marcas: installDir: Copa Petrobras de Marcas: {} launch: - /Marcas.exe: + "/Marcas.exe": - when: - store: steam steam: id: 359800 -'Cope Island: Adrift': +"Cope Island: Adrift": installDir: Cope Island Adrift: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -111649,7 +111987,7 @@ Copierre: installDir: Copierre: {} launch: - /Copierre.exe: + "/Copierre.exe": - when: - os: windows store: steam @@ -111657,7 +111995,7 @@ Copierre: id: 776780 Copoka: files: - /Copoka_Unreal/Saved/Config/WindowsNoEditor: + "/Copoka_Unreal/Saved/Config/WindowsNoEditor": tags: - config when: @@ -111665,7 +112003,7 @@ Copoka: installDir: Copoka: {} launch: - /Copoka.exe: + "/Copoka.exe": - when: - bit: 64 os: windows @@ -111674,7 +112012,7 @@ Copoka: id: 582620 Copperbell: files: - /AppData/LocalLow/Zero Fun/Copperbell: + "/AppData/LocalLow/Zero Fun/Copperbell": tags: - save when: @@ -111682,21 +112020,21 @@ Copperbell: installDir: Copperbell: {} launch: - /Copperbell.app: + "/Copperbell.app": - when: - os: mac store: steam - /Copperbell.exe: + "/Copperbell.exe": - when: - os: windows store: steam steam: id: 1039040 -'Cops 2170: The Power of Law': +"Cops 2170: The Power of Law": installDir: COPS 2170: {} launch: - /PoL.exe: + "/PoL.exe": - when: - store: steam steam: @@ -111705,7 +112043,7 @@ Cops Kissing Each Other: installDir: Cops Kissing Each Other: {} launch: - /copskissing.exe: + "/copskissing.exe": - when: - os: windows store: steam @@ -111715,7 +112053,7 @@ Copter and Sky: installDir: Copter and Sky: {} launch: - /Copter_and_Sky.exe: + "/Copter_and_Sky.exe": - when: - bit: 64 os: windows @@ -111726,7 +112064,7 @@ Copy Kitty: installDir: Copy Kitty: {} launch: - /kitty.exe: + "/kitty.exe": - when: - store: steam steam: @@ -111736,7 +112074,7 @@ CopyCat: id: 1108950 Coral Island: files: - /ProjectCoral/Saved/SaveGames: + "/ProjectCoral/Saved/SaveGames": tags: - save when: @@ -111754,16 +112092,16 @@ Coral Island: id: 1158160 Core: files: - /My Games/Core/Saved/Config/WindowsNoEditor: + "/My Games/Core/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows -'Core Awaken: The Yuka': +"Core Awaken: The Yuka": installDir: Core Awaken ~The Yuka~: {} launch: - /Launcher.exe: + "/Launcher.exe": - when: - os: windows store: steam @@ -111778,16 +112116,16 @@ Core Defense: installDir: Core Defense: {} launch: - /Core Defense.app/Contents/MacOS/Core Defense: + "/Core Defense.app/Contents/MacOS/Core Defense": - when: - os: mac store: steam - /Core Defense.exe: + "/Core Defense.exe": - when: - os: windows store: steam - /core-defense: - - arguments: '--in-process-gpu --no-sandbox' + "/core-defense": + - arguments: "--in-process-gpu --no-sandbox" when: - os: linux store: steam @@ -111795,22 +112133,22 @@ Core Defense: id: 1203360 Core Keeper: files: - /.config/unity3d/Pugstorm/Core/ Keeper/DedicatedServer/worlds: + "/.config/unity3d/Pugstorm/Core/ Keeper/DedicatedServer/worlds": tags: - save when: - os: linux - /.config/unity3d/Pugstorm/Core/ Keeper/prefs: + "/.config/unity3d/Pugstorm/Core/ Keeper/prefs": tags: - config when: - os: linux - /AppData/LocalLow/Pugstorm/Core Keeper/Steam/: + "/AppData/LocalLow/Pugstorm/Core Keeper/Steam/": tags: - save when: - os: windows - /AppData/LocalLow/Pugstorm/Core Keeper/Steam//prefs.json: + "/AppData/LocalLow/Pugstorm/Core Keeper/Steam//prefs.json": tags: - config when: @@ -111818,11 +112156,11 @@ Core Keeper: installDir: Core Keeper: {} launch: - /CoreKeeper: + "/CoreKeeper": - when: - os: linux store: steam - /CoreKeeper.exe: + "/CoreKeeper.exe": - when: - os: windows store: steam @@ -111832,7 +112170,7 @@ Core Of Darkness: installDir: Core Of Darkness: {} launch: - /CoreOfDarkness.exe: + "/CoreOfDarkness.exe": - when: - os: windows store: steam @@ -111842,7 +112180,7 @@ Core Rescue: installDir: CoreRescue: {} launch: - /CoreRescue.exe: + "/CoreRescue.exe": - when: - os: windows store: steam @@ -111852,16 +112190,16 @@ Coregrounds: installDir: Coregrounds: {} launch: - /coregrounds.app/Contents/MacOS/nwjs: + "/coregrounds.app/Contents/MacOS/nwjs": - when: - os: mac store: steam - /nw: - - arguments: '--password-store=basic' + "/nw": + - arguments: "--password-store=basic" when: - os: linux store: steam - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -111871,22 +112209,22 @@ Corgi Warlock: installDir: CORGI WARLOCK: {} launch: - /corgi_warlock.exe: + "/corgi_warlock.exe": - when: - os: windows store: steam steam: id: 414920 -Corinne Cross's Dead & Breakfast: +"Corinne Cross's Dead & Breakfast": installDir: - Corinne Cross's Dead & Breakfast: {} + "Corinne Cross's Dead & Breakfast": {} launch: - /Game.app: + "/Game.app": - when: - os: mac store: steam - /ccdb2.0/nw.exe: - - arguments: '--in-process-gpu' + "/ccdb2.0/nw.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam @@ -111896,7 +112234,7 @@ Corma: installDir: Corma: {} launch: - /NemosWorld.exe: + "/NemosWorld.exe": - when: - bit: 64 os: windows @@ -111905,7 +112243,7 @@ Corma: id: 978620 Corn Kidz 64: files: - /LocalLow/BogoSoft/Corn Kidz 64/save1.cow: + "/LocalLow/BogoSoft/Corn Kidz 64/save1.cow": tags: - config - save @@ -111914,20 +112252,20 @@ Corn Kidz 64: installDir: Corn Kidz 64: {} launch: - /Corn Kidz 64.exe: + "/Corn Kidz 64.exe": - when: - store: steam steam: id: 2575900 Corn Maze: files: - /Osgoode_Media/CornMaze.exe_StrongName_uqksqli1fpbk15l1kgwkjlftkx1kanwl/1.0.0.0/user.config: + "/Osgoode_Media/CornMaze.exe_StrongName_uqksqli1fpbk15l1kgwkjlftkx1kanwl/1.0.0.0/user.config": tags: - config - save when: - os: windows - /Packages/16591Monstrous.4422283106342_skedv6py88bbr/Settings/settings.dat: + "/Packages/16591Monstrous.4422283106342_skedv6py88bbr/Settings/settings.dat": tags: - config - save @@ -111938,20 +112276,20 @@ CornWars - The Farming-Shooter-Game: installDir: Maze Crusher: {} launch: - /MazeCrusher.exe: + "/MazeCrusher.exe": - when: - os: windows store: steam steam: id: 885480 -'Cornerstone: The Song of Tyrim': +"Cornerstone: The Song of Tyrim": files: - /AppData/LocalLow/Overflow Games/Cornerstone_ The song of Tyrim: + "/AppData/LocalLow/Overflow Games/Cornerstone_ The song of Tyrim": tags: - save when: - os: windows - /userdata//284410/remote: + "/userdata//284410/remote": tags: - save when: @@ -111959,17 +112297,17 @@ CornWars - The Farming-Shooter-Game: gog: id: 1455119388 installDir: - 'Cornerstone, The Song Of Tyrim': {} + "Cornerstone, The Song Of Tyrim": {} launch: - /Cornerstone.app: + "/Cornerstone.app": - when: - os: mac store: steam - /Cornerstone.exe: + "/Cornerstone.exe": - when: - os: windows store: steam - /Cornerstone.x86: + "/Cornerstone.x86": - when: - os: linux store: steam @@ -111979,16 +112317,16 @@ Cornflake Crisis: installDir: Cornflake Crisis: {} launch: - /cornflakecrisis.app: + "/cornflakecrisis.app": - when: - os: mac store: steam - /win32 good version/cornflakecrisis.exe: + "/win32 good version/cornflakecrisis.exe": - when: - bit: 32 os: windows store: steam - /win64 good version/cornflakecrisis.exe: + "/win64 good version/cornflakecrisis.exe": - when: - bit: 64 os: windows @@ -112002,7 +112340,7 @@ Cornflower Corbin: installDir: Cornflower Corbin: {} launch: - /CornflowrCorbin.exe: + "/CornflowrCorbin.exe": - when: - os: windows store: steam @@ -112010,26 +112348,26 @@ Cornflower Corbin: id: 624780 Coromon: files: - /TRAGsoft/Coromon/.system: + "/TRAGsoft/Coromon/.system": tags: - save when: - os: windows - /TRAGsoft_epic/Coromon/.system: + "/TRAGsoft_epic/Coromon/.system": tags: - save when: - - store: epic + - os: windows gog: id: 1950069341 installDir: Coromon: {} launch: - /Contents/MacOS/Coromon: + "/Contents/MacOS/Coromon": - when: - os: mac store: steam - /coromon.exe: + "/coromon.exe": - when: - os: windows store: steam @@ -112039,7 +112377,7 @@ Corona Blossom Vol.1 Gift From the Galaxy: installDir: Corona Blossom Vol.1 Gift From the Galaxy: {} launch: - /CoroBlo_vol_1.exe: + "/CoroBlo_vol_1.exe": - when: - store: steam steam: @@ -112048,7 +112386,7 @@ Corona Blossom Vol.2 The Truth From Beyond: installDir: Corona Blossom Vol. 2 The Truth From Beyond: {} launch: - /CoroBlo_vol_2.exe: + "/CoroBlo_vol_2.exe": - when: - store: steam steam: @@ -112057,7 +112395,7 @@ Corona Blossom Vol.3 Journey to the Stars: installDir: Corona Blossom Vol.3 Journey to the Stars: {} launch: - /CoroBlo_vol_3.exe: + "/CoroBlo_vol_3.exe": - when: - store: steam steam: @@ -112066,15 +112404,15 @@ Corona Borealis: installDir: Corona Borealis: {} launch: - /CoronaBorealis.app: + "/CoronaBorealis.app": - when: - os: mac store: steam - /CoronaBorealis.exe: + "/CoronaBorealis.exe": - when: - os: windows store: steam - /CoronaBorealis.sh: + "/CoronaBorealis.sh": - when: - os: linux store: steam @@ -112084,7 +112422,7 @@ Corona MotorSport: installDir: Corona MotorSport: {} launch: - /CMSv1.03Alphafixed.exe: + "/CMSv1.03Alphafixed.exe": - when: - os: windows store: steam @@ -112094,7 +112432,7 @@ Corpo Tale: installDir: Corpo Tale: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -112104,11 +112442,11 @@ Corpoct: installDir: Corpoct: {} launch: - /Corpoct.app: + "/Corpoct.app": - when: - os: mac store: steam - /Corpoct.exe: + "/Corpoct.exe": - when: - os: windows store: steam @@ -112116,12 +112454,12 @@ Corpoct: id: 1135860 Corporate America: files: - /Corporate_America/Saved/Config/WindowsNoEditor: + "/Corporate_America/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /Corporate_America/Saved/SaveGames: + "/Corporate_America/Saved/SaveGames": tags: - save when: @@ -112129,7 +112467,7 @@ Corporate America: installDir: Corporate America: {} launch: - /Corporate_America.exe: + "/Corporate_America.exe": - when: - os: windows store: steam @@ -112137,7 +112475,7 @@ Corporate America: id: 1111250 Corporate Lifestyle Simulator: files: - /Notzombies: + "/Notzombies": tags: - config - save @@ -112149,26 +112487,26 @@ Corporate Lifestyle Simulator: installDir: Corporate Lifestyle Simulator: {} launch: - /NotZombies.exe: + "/NotZombies.exe": - when: - store: steam steam: id: 261880 Corporate Property: files: - /UTGame/Config: + "/UTGame/Config": tags: - config when: - os: windows Corpse Factory: files: - /AppData/LocalLow/RIVER CROW STUDIO/CORPSE FACTORY/NaninovelData/Saves/*.nson: + "/AppData/LocalLow/RIVER CROW STUDIO/CORPSE FACTORY/NaninovelData/Saves/*.nson": tags: - config when: - os: windows - /AppData/LocalLow/RIVER CROW STUDIO/CORPSE FACTORY/NaninovelData/Saves/Settings.json: + "/AppData/LocalLow/RIVER CROW STUDIO/CORPSE FACTORY/NaninovelData/Saves/Settings.json": tags: - save when: @@ -112183,7 +112521,7 @@ Corpse Factory: installDir: CORPSE FACTORY: {} launch: - /CORPSE FACTORY.exe: + "/CORPSE FACTORY.exe": - when: - os: windows store: steam @@ -112193,7 +112531,7 @@ Corpse Killer - 25th Anniversary Edition: installDir: Corpse Killer - 25th Anniversary Edition: {} launch: - /Corpse Killer - 25th Anniversary Edition.exe: + "/Corpse Killer - 25th Anniversary Edition.exe": - when: - store: steam steam: @@ -112202,7 +112540,7 @@ Corpse Mob: installDir: Corpse Mob: {} launch: - /corpsemob.exe: + "/corpsemob.exe": - when: - os: windows store: steam @@ -112210,17 +112548,17 @@ Corpse Mob: id: 828460 Corpse Party (2021): files: - /CorpseParty: + "/CorpseParty": tags: - save when: - os: windows - /CorpseParty/RepeatedFear.ini: + "/CorpseParty/RepeatedFear.ini": tags: - config when: - os: windows - /unity3d/MAGES_/Corpse Party/RepeatedFear.ini: + "/unity3d/MAGES_/Corpse Party/RepeatedFear.ini": tags: - config when: @@ -112230,28 +112568,28 @@ Corpse Party (2021): installDir: Corpse Party RF: {} launch: - /Corpse Party.app: + "/Corpse Party.app": - when: - os: mac store: steam - /CorpseParty.exe: + "/CorpseParty.exe": - when: - os: windows store: steam - /CorpseParty.x64: + "/CorpseParty.x64": - when: - os: linux store: steam steam: id: 1273260 -'Corpse Party 2: Dead Patient': +"Corpse Party 2: Dead Patient": files: - /CPS.ini: + "/CPS.ini": tags: - config when: - os: windows - /savedata: + "/savedata": tags: - save when: @@ -112261,37 +112599,37 @@ Corpse Party (2021): installDir: Corpse Party 2 Dead Patient: {} launch: - /CorpseParty2.exe: + "/CorpseParty2.exe": - when: - os: windows store: steam steam: id: 940310 -'Corpse Party: Blood Covered': +"Corpse Party: Blood Covered": files: - /grisgris.ini: + "/grisgris.ini": tags: - config when: - os: windows - /save_data/*.*: + "/save_data/*.*": tags: - save when: - os: windows -'Corpse Party: Blood Covered (2016)': +"Corpse Party: Blood Covered (2016)": files: - /corpseparty.ini: + "/corpseparty.ini": tags: - config when: - os: windows - /save_data: + "/save_data": tags: - save when: - os: windows - /userdata//251270/remote: + "/userdata//251270/remote": tags: - save when: @@ -112301,19 +112639,19 @@ Corpse Party (2021): installDir: Corpse Party: {} launch: - /CorpseParty: + "/CorpseParty": - when: - os: linux store: steam - /CorpseParty.exe: + "/CorpseParty.exe": - when: - os: windows store: steam steam: id: 251270 -'Corpse Party: Blood Drive': +"Corpse Party: Blood Drive": files: - /AppData/LocalLow/XSEED/Corpse Party_ Blood Drive/Saves: + "/AppData/LocalLow/XSEED/Corpse Party_ Blood Drive/Saves": tags: - save when: @@ -112323,24 +112661,24 @@ Corpse Party (2021): installDir: Corpse Party Blood Drive: {} launch: - /CorpseParty_BloodDrive.exe: + "/CorpseParty_BloodDrive.exe": - when: - os: windows store: steam registry: - 'HKEY_CURRENT_USER/Software/XSEED/Corpse Party: Blood Drive': + "HKEY_CURRENT_USER/Software/XSEED/Corpse Party: Blood Drive": tags: - config steam: id: 824830 -'Corpse Party: Book of Shadows': +"Corpse Party: Book of Shadows": files: - /corpsepartybos.ini: + "/corpsepartybos.ini": tags: - config when: - os: windows - /save: + "/save": tags: - save when: @@ -112350,19 +112688,19 @@ Corpse Party (2021): installDir: Corpse Party Book of Shadows: {} launch: - /BookofShadows.exe: + "/BookofShadows.exe": - when: - os: windows store: steam steam: id: 778390 -'Corpse Party: Sweet Sachiko''s Hysteric Birthday Bash': +"Corpse Party: Sweet Sachiko's Hysteric Birthday Bash": gog: id: 2013291024 installDir: Corpse Party Hysteric Birthday: {} launch: - /HystericBirthday.exe: + "/HystericBirthday.exe": - when: - os: windows store: steam @@ -112372,11 +112710,11 @@ Corpse of Discovery: installDir: Corpse of Discovery: {} launch: - /CorpseOfDiscovery.app: + "/CorpseOfDiscovery.app": - when: - os: mac store: steam - /CorpseOfDiscovery.exe: + "/CorpseOfDiscovery.exe": - when: - bit: 64 os: windows @@ -112387,7 +112725,7 @@ Corral: installDir: Corral: {} launch: - /Corral.exe: + "/Corral.exe": - when: - os: windows store: steam @@ -112397,23 +112735,23 @@ Corridor 15: installDir: Corridor 15 Alpha: {} launch: - /Corridor 15 Alpha.exe: + "/Corridor 15 Alpha.exe": - when: - os: windows store: steam steam: id: 732040 -'Corridor 7: Alien Invasion': +"Corridor 7: Alien Invasion": gog: id: 2147483140 installDir: Corridor 7: {} launch: - /Corridor.bat: + "/Corridor.bat": - when: - os: windows store: steam - /Corridor.command: + "/Corridor.command": - when: - os: mac store: steam @@ -112421,7 +112759,7 @@ Corridor 15: id: 1341890 Corridor Z: files: - /My Games/Corridor Z/GameSave.zsave: + "/My Games/Corridor Z/GameSave.zsave": tags: - save when: @@ -112429,21 +112767,21 @@ Corridor Z: installDir: Corridor Z: {} launch: - /CorridorZ.app/Contents/MacOS/CorridorZ: + "/CorridorZ.app/Contents/MacOS/CorridorZ": - when: - bit: 64 os: mac store: steam - /CorridorZ.exe: + "/CorridorZ.exe": - when: - os: windows store: steam - /CorridorZ.x86: + "/CorridorZ.x86": - when: - bit: 32 os: linux store: steam - /CorridorZ.x86_64: + "/CorridorZ.x86_64": - when: - bit: 64 os: linux @@ -112458,7 +112796,7 @@ Corridor of Time: installDir: Corridor of time: {} launch: - /timec.exe: + "/timec.exe": - when: - os: windows store: steam @@ -112468,23 +112806,23 @@ Corroded: installDir: Corroded: {} launch: - /CorrodedGame.exe: + "/CorrodedGame.exe": - when: - os: windows store: steam steam: id: 446030 -'Corrosion: Cold Winter Waiting': +"Corrosion: Cold Winter Waiting": files: - /Saved Games/Corrosion - Cold Winter Waiting: + "/Saved Games/Corrosion - Cold Winter Waiting": tags: - save when: - os: windows installDir: - 'Corrosion - Cold Winter Waiting [Enhanced Edition]': {} + "Corrosion - Cold Winter Waiting [Enhanced Edition]": {} launch: - /corrosion_pc_en_1280_st.exe: + "/corrosion_pc_en_1280_st.exe": - when: - store: steam registry: @@ -112497,7 +112835,7 @@ Corrupt: installDir: Corrupt: {} launch: - /Corrupt.exe: + "/Corrupt.exe": - when: - os: windows store: steam @@ -112507,11 +112845,11 @@ Corrupt (2018): installDir: Corrupt: {} launch: - /Corrupt.app/Contents/MacOS/Corrupt: + "/Corrupt.app/Contents/MacOS/Corrupt": - when: - os: mac store: steam - /Corrupt.exe: + "/Corrupt.exe": - when: - os: windows store: steam @@ -112521,11 +112859,11 @@ Corrupt The Priest: installDir: Corrupt The Priest: {} launch: - /Corrupt the Priest.app/Contents/MacOS/Corrupt the Priest: + "/Corrupt the Priest.app/Contents/MacOS/Corrupt the Priest": - when: - os: mac store: steam - /Corrupt the Priest.exe: + "/Corrupt the Priest.exe": - when: - os: windows store: steam @@ -112535,15 +112873,15 @@ Corrupted: installDir: Corrupted: {} launch: - /Corrupted: + "/Corrupted": - when: - os: linux store: steam - /Corrupted.app: + "/Corrupted.app": - when: - os: mac store: steam - /Corrupted.exe: + "/Corrupted.exe": - when: - os: windows store: steam @@ -112553,7 +112891,7 @@ Corrupted Commander: installDir: Corrupted Commander: {} launch: - /Corrupted Commander.exe: + "/Corrupted Commander.exe": - when: - os: windows store: steam @@ -112563,7 +112901,7 @@ Corruption: installDir: CORRUPTION: {} launch: - /CORRUPTION.exe: + "/CORRUPTION.exe": - when: - os: windows store: steam @@ -112571,12 +112909,12 @@ Corruption: id: 848760 Corruption 2029: files: - /Corruption/Saved/Config/WindowsNoEditor: + "/Corruption/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /Corruption/Saved/SavedGames: + "/Corruption/Saved/SavedGames": tags: - save when: @@ -112585,28 +112923,28 @@ Corruption of Champions II: installDir: Corruption of Champions II: {} launch: - /CoC II.exe: - - arguments: '--in-process-gpu' + "/CoC II.exe": + - arguments: "--in-process-gpu" when: - bit: 64 os: windows store: steam - /coc2electron: - - arguments: '--in-process-gpu' + "/coc2electron": + - arguments: "--in-process-gpu" when: - bit: 64 os: linux store: steam steam: id: 1292690 -'Corsairs: Battle of the Caribbean': +"Corsairs: Battle of the Caribbean": gog: id: 1756882332 steam: id: 2397510 -'Corsairs: Conquest at Sea': +"Corsairs: Conquest at Sea": files: - /corsairs.ini: + "/corsairs.ini": tags: - config when: @@ -112617,7 +112955,7 @@ Cortex: installDir: Cortex: {} launch: - /Cortex.exe: + "/Cortex.exe": - when: - store: steam steam: @@ -112626,15 +112964,15 @@ Cortex (2018): installDir: Cortex: {} launch: - /Cortex.app: + "/Cortex.app": - when: - os: mac store: steam - /cortex: + "/cortex": - when: - os: linux store: steam - /cortex.exe: + "/cortex.exe": - when: - os: windows store: steam @@ -112642,12 +112980,12 @@ Cortex (2018): id: 998820 Cortex Command: files: - /Base.rte: + "/Base.rte": tags: - config when: - os: windows - /Metagames.rte: + "/Metagames.rte": tags: - save when: @@ -112655,15 +112993,15 @@ Cortex Command: installDir: Cortex Command: {} launch: - /Cortex Command.exe: + "/Cortex Command.exe": - when: - os: windows store: steam - /CortexCommand.app: + "/CortexCommand.app": - when: - os: mac store: steam - /CortexCommandHaxLoader: + "/CortexCommandHaxLoader": - when: - os: linux store: steam @@ -112672,19 +113010,19 @@ Cortex Command: Cortex Protocol: steam: id: 843850 -'CortexGear: AngryDroids': +"CortexGear: AngryDroids": installDir: CortexGear AngryDroids: {} launch: - /CortexGear AngryDroids (CGAD) LINUX.x86: + "/CortexGear AngryDroids (CGAD) LINUX.x86": - when: - os: linux store: steam - /CortexGear AngryDroids (CGAD) PC.exe: + "/CortexGear AngryDroids (CGAD) PC.exe": - when: - os: windows store: steam - /CortexGear AngryDroids (CGAD)MAC.app/Contents/MacOs/CortexGear AngryDroids: + "/CortexGear AngryDroids (CGAD)MAC.app/Contents/MacOs/CortexGear AngryDroids": - when: - os: mac store: steam @@ -112694,11 +113032,11 @@ Corto Maltese - Secrets of Venice: installDir: Corto Maltese Secrets of Venice: {} launch: - /CortoMaltese.exe: + "/CortoMaltese.exe": - when: - os: windows store: steam - /CortoMaltese_Mac_V1.1.app: + "/CortoMaltese_Mac_V1.1.app": - when: - os: mac store: steam @@ -112706,7 +113044,7 @@ Corto Maltese - Secrets of Venice: id: 310460 Corvette: files: - /data/pc/config: + "/data/pc/config": tags: - config - save @@ -112716,7 +113054,7 @@ Cosa Nostra: installDir: Cosa Nostra: {} launch: - /cosanostra.exe: + "/cosanostra.exe": - when: - store: steam steam: @@ -112725,7 +113063,7 @@ Cosmi-Cave 64: installDir: Cosmi-Cave 64: {} launch: - /cosmicave.exe: + "/cosmicave.exe": - when: - os: windows store: steam @@ -112740,7 +113078,7 @@ Cosmic Buddies Town: installDir: Cosmic Buddies Town: {} launch: - /CBT.exe: + "/CBT.exe": - when: - store: steam steam: @@ -112749,7 +113087,7 @@ Cosmic Cash: installDir: Cosmic Cash: {} launch: - /CosmicCash.exe: + "/CosmicCash.exe": - when: - os: windows store: steam @@ -112759,7 +113097,7 @@ Cosmic Cavern 3671: installDir: CosmicCavern3671: {} launch: - /CC3671.exe: + "/CC3671.exe": - when: - os: windows store: steam @@ -112769,11 +113107,11 @@ Cosmic DJ: installDir: Cosmic DJ: {} launch: - /CosmicDJ.app: + "/CosmicDJ.app": - when: - os: mac store: steam - /CosmicDJ.exe: + "/CosmicDJ.exe": - when: - os: windows store: steam @@ -112785,7 +113123,7 @@ Cosmic DJ: id: 297110 Cosmic Dust & Rust: files: - /Ramos_TD/Save: + "/Ramos_TD/Save": tags: - save when: @@ -112793,24 +113131,24 @@ Cosmic Dust & Rust: installDir: Cosmic Dust & Rust: {} launch: - /Cosmic.exe: + "/Cosmic.exe": - when: - store: steam steam: id: 473560 Cosmic Express: files: - /.config/unity3d/Cosmic Express/Cosmic Express: + "/.config/unity3d/Cosmic Express/Cosmic Express": tags: - save when: - os: linux - /AppData/LocalLow/Cosmic Express/Cosmic Express: + "/AppData/LocalLow/Cosmic Express/Cosmic Express": tags: - save when: - os: windows - /AppData/LocalLow/Cosmic Express/Cosmic Express/config: + "/AppData/LocalLow/Cosmic Express/Cosmic Express/config": tags: - config when: @@ -112818,20 +113156,20 @@ Cosmic Express: installDir: Cosmic Express: {} launch: - /Cosmic Express.app: + "/Cosmic Express.app": - when: - os: mac store: steam - /Cosmic Express.exe: + "/Cosmic Express.exe": - when: - os: windows store: steam - /Cosmic Express.x86: + "/Cosmic Express.x86": - when: - bit: 32 os: linux store: steam - /Cosmic Express.x86_64: + "/Cosmic Express.x86_64": - when: - bit: 64 os: linux @@ -112842,7 +113180,7 @@ Cosmic Kites: installDir: Cosmic Kites: {} launch: - /Cosmic Kites.exe: + "/Cosmic Kites.exe": - when: - os: windows store: steam @@ -112852,7 +113190,7 @@ Cosmic Leap: installDir: Cosmic Leap: {} launch: - /CosmicLeap.exe: + "/CosmicLeap.exe": - when: - os: windows store: steam @@ -112862,8 +113200,8 @@ Cosmic Monsters: installDir: cosmicmonsters: {} launch: - /cmfinal.exe: - - arguments: '-windowed' + "/cmfinal.exe": + - arguments: "-windowed" when: - os: windows store: steam @@ -112873,7 +113211,7 @@ Cosmic Osmo and the Worlds Beyond the Mackerel: installDir: Cosmic Osmo: {} launch: - /Cosmic Osmo.exe: + "/Cosmic Osmo.exe": - when: - store: steam steam: @@ -112882,7 +113220,7 @@ Cosmic Pioneer: installDir: Cosmic Pioneer: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -112892,7 +113230,7 @@ Cosmic Ray: installDir: Cosmic Ray: {} launch: - /Cosmic Ray.exe: + "/Cosmic Ray.exe": - when: - bit: 64 os: windows @@ -112906,14 +113244,14 @@ Cosmic Snake 8473/3671: installDir: CosmicSnake: {} launch: - /CosmicSnake3671.exe: + "/CosmicSnake3671.exe": - when: - store: steam steam: id: 809360 Cosmic Star Heroine: files: - /AppData/LocalLow/Zeboyd Games/Cosmic Star Heroine: + "/AppData/LocalLow/Zeboyd Games/Cosmic Star Heroine": tags: - save when: @@ -112923,20 +113261,20 @@ Cosmic Star Heroine: installDir: Cosmic Star Heroine: {} launch: - /CSH Mac.app: + "/CSH Mac.app": - when: - os: mac store: steam - /CSH.exe: + "/CSH.exe": - when: - os: windows store: steam - /CSHLinux.x86: + "/CSHLinux.x86": - when: - bit: 32 os: linux store: steam - /CSHLinux.x86_64: + "/CSHLinux.x86_64": - when: - bit: 64 os: linux @@ -112956,11 +113294,11 @@ Cosmic Top Secret: installDir: CosmicTopSecret: {} launch: - /CTS_Mac/CosmicTopSecret.app: + "/CTS_Mac/CosmicTopSecret.app": - when: - os: mac store: steam - /CTS_Windows/Cosmic Top Secret.exe: + "/CTS_Windows/Cosmic Top Secret.exe": - when: - os: windows store: steam @@ -112970,7 +113308,7 @@ Cosmic Trail: installDir: Cosmic Trail: {} launch: - /CosmicTrail.exe: + "/CosmicTrail.exe": - when: - os: windows store: steam @@ -112990,7 +113328,7 @@ Cosmic collapse: installDir: Cosmic collapse: {} launch: - /Cosmic collapse.exe: + "/Cosmic collapse.exe": - when: - os: windows store: steam @@ -113000,7 +113338,7 @@ Cosmo Chaser: installDir: CosmoChaser: {} launch: - /Cosmo Chaser.exe: + "/Cosmo Chaser.exe": - when: - os: windows store: steam @@ -113010,20 +113348,20 @@ Cosmo story: installDir: Cosmo story: {} launch: - /CosmoStory.exe: + "/CosmoStory.exe": - when: - store: steam steam: id: 1184710 -Cosmo's Cosmic Adventure: +"Cosmo's Cosmic Adventure": files: - /COSMO*.CFG: + "/COSMO*.CFG": tags: - config - save when: - os: dos - /COSMO*.SV*: + "/COSMO*.SV*": tags: - save when: @@ -113031,41 +113369,41 @@ Cosmo's Cosmic Adventure: gog: id: 1207665563 installDir: - Cosmo's Cosmic Adventure: {} + "Cosmo's Cosmic Adventure": {} launch: - /Cosmo Cosmic Adventure.app: + "/Cosmo Cosmic Adventure.app": - when: - os: mac store: steam - /Cosmo Cosmic Adventure/dosbox/dosbox.exe: - - arguments: '-conf \"..\\COSMO.conf\" -noconsole -c' + "/Cosmo Cosmic Adventure/dosbox/dosbox.exe": + - arguments: "-conf \\\"..\\\\COSMO.conf\\\" -noconsole -c" when: - os: windows store: steam - workingDir: /Cosmo Cosmic Adventure/dosbox - /Dosbox/dosbox: - - arguments: '-conf \"..\\COSMO.conf\" -noconsole -c' + workingDir: "/Cosmo Cosmic Adventure/dosbox" + "/Dosbox/dosbox": + - arguments: "-conf \\\"..\\\\COSMO.conf\\\" -noconsole -c" when: - os: linux store: steam - workingDir: /Dosbox + workingDir: "/Dosbox" steam: id: 358250 -Cosmo's Quickstop: +"Cosmo's Quickstop": installDir: - Cosmo's Quickstop: {} + "Cosmo's Quickstop": {} launch: - /Cosmo's Quickstop.exe: + "/Cosmo's Quickstop.exe": - when: - os: windows store: steam steam: id: 724680 -'CosmoDrive: Zero': +"CosmoDrive: Zero": installDir: CosmoDriveZero: {} launch: - /CosmoDriveZero/InfiniteMatrix.exe: + "/CosmoDriveZero/InfiniteMatrix.exe": - when: - bit: 64 os: windows @@ -113079,18 +113417,18 @@ Cosmochoria: installDir: Cosmochoria: {} launch: - /nw: - - arguments: '--enable-webgl --ignore-gpu-blacklist --in-process-gpu' + "/nw": + - arguments: "--enable-webgl --ignore-gpu-blacklist --in-process-gpu" when: - os: linux store: steam - /nw.app: - - arguments: '--enable-webgl --ignore-gpu-blacklist --in-process-gpu' + "/nw.app": + - arguments: "--enable-webgl --ignore-gpu-blacklist --in-process-gpu" when: - os: mac store: steam - /nw.exe: - - arguments: '--enable-webgl --ignore-gpu-blacklist' + "/nw.exe": + - arguments: "--enable-webgl --ignore-gpu-blacklist" when: - os: windows store: steam @@ -113100,8 +113438,8 @@ Cosmonator: installDir: Cosmonator: {} launch: - /jre/bin/javaw.exe: - - arguments: '-Xms256M -Xmx1024M -jar cosmonator.jar' + "/jre/bin/javaw.exe": + - arguments: "-Xms256M -Xmx1024M -jar cosmonator.jar" when: - os: windows store: steam @@ -113111,7 +113449,7 @@ Cosmonaut: installDir: COSMONAUT: {} launch: - /cosmonaut.exe: + "/cosmonaut.exe": - when: - os: windows store: steam @@ -113119,7 +113457,7 @@ Cosmonaut: id: 743550 Cosmonautica: files: - /My Games/Cosmonautica: + "/My Games/Cosmonautica": tags: - config when: @@ -113129,28 +113467,28 @@ Cosmonautica: installDir: Cosmonautica: {} launch: - /bin/cosmonautica.exe: + "/bin/cosmonautica.exe": - when: - store: steam - workingDir: /bin + workingDir: "/bin" steam: id: 320340 -'Cosmonet: Space Adventure': +"Cosmonet: Space Adventure": steam: id: 993470 Cosmophony: installDir: Cosmophony: {} launch: - /Cosmophony.app: + "/Cosmophony.app": - when: - os: mac store: steam - /Cosmophony.exe: + "/Cosmophony.exe": - when: - os: windows store: steam - /Cosmophony.x86: + "/Cosmophony.x86": - when: - os: linux store: steam @@ -113160,7 +113498,7 @@ Cosmos: installDir: Cosmos: {} launch: - /Cosmos.exe: + "/Cosmos.exe": - when: - bit: 64 os: windows @@ -113179,11 +113517,11 @@ Cosmos Invictus: installDir: Cosmos Invictus: {} launch: - /cin.app/Contents/MacOS/cin: + "/cin.app/Contents/MacOS/cin": - when: - os: mac store: steam - /cin.exe: + "/cin.exe": - when: - os: windows store: steam @@ -113192,9 +113530,9 @@ Cosmos Invictus: Cosmosa: steam: id: 1068730 -'Cosmoteer: Starship Architect & Commander': +"Cosmoteer: Starship Architect & Commander": files: - /Saved Games/Cosmoteer: + "/Saved Games/Cosmoteer": tags: - config - save @@ -113203,15 +113541,15 @@ Cosmosa: installDir: Cosmoteer: {} launch: - /Bin/Cosmoteer.exe: + "/Bin/Cosmoteer.exe": - when: - os: windows store: steam - - arguments: '--no-mods' + - arguments: "--no-mods" when: - os: windows store: steam - - arguments: '--devmode' + - arguments: "--devmode" when: - os: windows store: steam @@ -113224,15 +113562,15 @@ Cosplay Maker: installDir: Cosplay Maker: {} launch: - /Cosplay Maker.app: + "/Cosplay Maker.app": - when: - os: mac store: steam - /Cosplay Maker.exe: + "/Cosplay Maker.exe": - when: - os: windows store: steam - /Cosplay Maker.x86: + "/Cosplay Maker.x86": - when: - os: linux store: steam @@ -113240,22 +113578,22 @@ Cosplay Maker: id: 299090 Cossacks 3: files: - /cossacks/profiles/%profile_name%/profile.cfg: + "/cossacks/profiles/%profile_name%/profile.cfg": tags: - config when: - os: linux - /cossacks/profiles/%profile_name%/saves: + "/cossacks/profiles/%profile_name%/saves": tags: - save when: - os: linux - /cossacks: + "/cossacks": tags: - save when: - os: windows - /cossacks/profiles/: + "/cossacks/profiles/": tags: - config when: @@ -113266,14 +113604,14 @@ Cossacks 3: Cossacks 3: {} steam: id: 333420 -'Cossacks II: Battle for Europe': +"Cossacks II: Battle for Europe": files: - /Save: + "/Save": tags: - save when: - os: windows - /settings.xml: + "/settings.xml": tags: - config when: @@ -113283,19 +113621,19 @@ Cossacks 3: installDir: Cossacks II Battle for Europe: {} launch: - /engine.exe: + "/engine.exe": - when: - store: steam steam: id: 4890 -'Cossacks II: Napoleonic Wars': +"Cossacks II: Napoleonic Wars": files: - /Save: + "/Save": tags: - save when: - os: windows - /settings.xml: + "/settings.xml": tags: - config when: @@ -113305,14 +113643,14 @@ Cossacks 3: installDir: Cossacks II Napoleonic Wars: {} launch: - /engine.exe: + "/engine.exe": - when: - store: steam steam: id: 115200 -'Cossacks: Back to War': +"Cossacks: Back to War": files: - /*.sav: + "/*.sav": tags: - save when: @@ -113322,36 +113660,36 @@ Cossacks 3: installDir: Cossacks Back to War: {} launch: - /bin/HView.exe: + "/bin/HView.exe": - when: - store: steam - workingDir: /bin - /bin/ScenarioEditor.exe: + workingDir: "/bin" + "/bin/ScenarioEditor.exe": - when: - store: steam - workingDir: /bin - /bin/csbtw.exe: + workingDir: "/bin" + "/bin/csbtw.exe": - when: - store: steam - workingDir: /bin + workingDir: "/bin" - arguments: /adhoc when: - store: steam - workingDir: /bin - /bin/cshlp.exe: + workingDir: "/bin" + "/bin/cshlp.exe": - arguments: /ReadMe when: - store: steam - workingDir: /bin + workingDir: "/bin" - arguments: /Docs when: - store: steam - workingDir: /bin + workingDir: "/bin" steam: id: 4850 -'Cossacks: European Wars': +"Cossacks: European Wars": files: - /*.sav: + "/*.sav": tags: - save when: @@ -113364,14 +113702,14 @@ Cossacks 3: installDir: Cossacks European Wars: {} launch: - /dmcr.exe: + "/dmcr.exe": - when: - store: steam steam: id: 4880 -'Cossacks: The Art of War': +"Cossacks: The Art of War": files: - /*.sav: + "/*.sav": tags: - save when: @@ -113381,7 +113719,7 @@ Cossacks 3: installDir: Cossacks Art of War: {} launch: - /dmcr.exe: + "/dmcr.exe": - when: - store: steam steam: @@ -113390,20 +113728,20 @@ Cossanox: installDir: Cossanox: {} launch: - /Cossanox.app: + "/Cossanox.app": - when: - os: mac store: steam - /Cossanox.exe: + "/Cossanox.exe": - when: - os: windows store: steam - /Cossanox.x86: + "/Cossanox.x86": - when: - bit: 32 os: linux store: steam - /Cossanox.x86_64: + "/Cossanox.x86_64": - when: - bit: 64 os: linux @@ -113414,7 +113752,7 @@ Costume Party: installDir: Forbidden World: {} launch: - /CostumeParty/CostumeParty.exe: + "/CostumeParty/CostumeParty.exe": - arguments: SteamPC when: - os: windows @@ -113423,24 +113761,24 @@ Costume Party: id: 1648300 Costume Quest: files: - /Library/Application Support/doublefine/costumequest: + "/Library/Application Support/doublefine/costumequest": tags: - config - save when: - os: mac - /userdata//115100: + "/userdata//115100": tags: - save when: - store: steam - /Doublefine/CostumeQuest: + "/Doublefine/CostumeQuest": tags: - config - save when: - os: windows - /doublefine/costumequest: + "/doublefine/costumequest": tags: - config - save @@ -113451,15 +113789,15 @@ Costume Quest: installDir: Costume Quest: {} launch: - /Cq.app: + "/Cq.app": - when: - os: mac store: steam - /Cq.bin.x86: + "/Cq.bin.x86": - when: - os: linux store: steam - /Cq.exe: + "/Cq.exe": - when: - os: windows store: steam @@ -113467,19 +113805,19 @@ Costume Quest: id: 115100 Costume Quest 2: files: - /Library/Application Support/Doublefine/Costume Quest 2: + "/Library/Application Support/Doublefine/Costume Quest 2": tags: - config - save when: - os: mac - /Doublefine/CostumeQuest2: + "/Doublefine/CostumeQuest2": tags: - config - save when: - os: windows - /doublefine/Costume Quest 2: + "/doublefine/Costume Quest 2": tags: - config - save @@ -113490,20 +113828,20 @@ Costume Quest 2: installDir: CostumeQuest2: {} launch: - /CostumeQuest2.exe: + "/CostumeQuest2.exe": - when: - os: windows store: steam - /CostumeQuest2_DX9.exe: + "/CostumeQuest2_DX9.exe": - when: - os: windows store: steam - /Cq2.app/Contents/MacOS/Cq2: + "/Cq2.app/Contents/MacOS/Cq2": - when: - os: mac store: steam - workingDir: /Cq2.app/Contents/MacOS - /Linux/Bin/Cq2: + workingDir: "/Cq2.app/Contents/MacOS" + "/Linux/Bin/Cq2": - when: - os: linux store: steam @@ -113513,7 +113851,7 @@ Costumenaut: installDir: Costumenaut: {} launch: - /costumenaut.exe: + "/costumenaut.exe": - when: - os: windows store: steam @@ -113523,11 +113861,11 @@ Cotrio: installDir: Cotrio: {} launch: - /Cotrio.app/Contents/MacOS/Cotrio: + "/Cotrio.app/Contents/MacOS/Cotrio": - when: - os: mac store: steam - /Cotrio.exe: + "/Cotrio.exe": - when: - os: windows store: steam @@ -113537,31 +113875,31 @@ Cottage Garden: installDir: Cottage Garden: {} launch: - /cxg.app: + "/cxg.app": - when: - os: mac store: steam - /cxg.exe: + "/cxg.exe": - when: - os: windows store: steam - /cxg.x86: + "/cxg.x86": - when: - bit: 32 os: linux store: steam - /cxg.x86_64: + "/cxg.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 716090 -'Cotton 2: Magical Night Dreams': +"Cotton 2: Magical Night Dreams": installDir: COTTOn 2 Saturn Tribute: {} launch: - /Cotton2.exe: + "/Cotton2.exe": - when: - os: windows store: steam @@ -113569,12 +113907,12 @@ Cottage Garden: id: 1708800 Cotton Boomerang: files: - /CottonBoomerang_Steam.ini: + "/CottonBoomerang_Steam.ini": tags: - config when: - os: windows - /Saved Games/COTTOn Boomerang Saturn Tribute: + "/Saved Games/COTTOn Boomerang Saturn Tribute": tags: - save when: @@ -113582,7 +113920,7 @@ Cotton Boomerang: installDir: COTTOn Boomerang Saturn Tribute: {} launch: - /CottonBoomerang.exe: + "/CottonBoomerang.exe": - when: - os: windows store: steam @@ -113590,7 +113928,7 @@ Cotton Boomerang: id: 1708810 Cotton Reboot!: files: - /save_data.sav: + "/save_data.sav": tags: - save when: @@ -113598,7 +113936,7 @@ Cotton Reboot!: installDir: Cotton Reboot: {} launch: - /cotton_reboot.exe: + "/cotton_reboot.exe": - when: - os: windows store: steam @@ -113608,17 +113946,17 @@ Couch Party Game Night: installDir: Couch Party Game Night: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam steam: id: 833770 -'Couch Storm: Battle Royale': +"Couch Storm: Battle Royale": installDir: Couch Storm Battle Royale: {} launch: - /BattleRoyale.exe: + "/BattleRoyale.exe": - when: - bit: 64 os: windows @@ -113629,17 +113967,23 @@ Couch Versus: installDir: COUCH VERSUS: {} launch: - /COUCH VERSUS: + "/COUCH VERSUS": - when: + - bit: 32 + os: linux + store: steam - bit: 64 os: linux store: steam - /COUCH VERSUS.exe: + "/COUCH VERSUS.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam - /couchversus.app/Contents/MacOS/nwjs: + "/couchversus.app/Contents/MacOS/nwjs": - when: - os: mac store: steam @@ -113649,12 +113993,12 @@ Count Dookie Fart: installDir: Count Dookie Fart: {} launch: - /CountDookie_32bit.exe: + "/CountDookie_32bit.exe": - when: - bit: 32 os: windows store: steam - /CountDookie_64bit.exe: + "/CountDookie_64bit.exe": - when: - bit: 64 os: windows @@ -113665,15 +114009,15 @@ Count Logica: installDir: Count Logica: {} launch: - /CountLogica: + "/CountLogica": - when: - os: linux store: steam - /CountLogica.app: + "/CountLogica.app": - when: - os: mac store: steam - /CountLogica.exe: + "/CountLogica.exe": - when: - os: windows store: steam @@ -113689,7 +114033,7 @@ Counter Agents: installDir: Counter Agents: {} launch: - /Counter Agents PC/CounterAgents.exe: + "/Counter Agents PC/CounterAgents.exe": - when: - os: windows store: steam @@ -113705,7 +114049,7 @@ Counter Fight 3: Counter Fight 3: {} steam: id: 984820 -'Counter Fight: Samurai Edition': +"Counter Fight: Samurai Edition": installDir: Counter Fight Samurai Edition: {} steam: @@ -113714,7 +114058,7 @@ Counter Spell: installDir: Counter Spell: {} launch: - /CounterSpell.exe: + "/CounterSpell.exe": - when: - os: windows store: steam @@ -113724,11 +114068,11 @@ Counter Terrorism - Minesweeper: installDir: Counter Terrorism: {} launch: - /Counter Terrorism.app/Contents/MacOS/Counter Terrorism: + "/Counter Terrorism.app/Contents/MacOS/Counter Terrorism": - when: - os: mac store: steam - /Counter Terrorism.exe: + "/Counter Terrorism.exe": - when: - os: windows store: steam @@ -113736,12 +114080,12 @@ Counter Terrorism - Minesweeper: id: 1154560 Counter Terrorist Agency: files: - /Library/Application Support/pl.play2chill.cta: + "/Library/Application Support/pl.play2chill.cta": tags: - save when: - os: mac - /Library/Preferences/pl.play2chill.cta.plist: + "/Library/Preferences/pl.play2chill.cta.plist": tags: - config when: @@ -113749,11 +114093,11 @@ Counter Terrorist Agency: installDir: Counter Terrorist Agency: {} launch: - /CTA.app/Contents/MacOS/CTA: + "/CTA.app/Contents/MacOS/CTA": - when: - os: mac store: steam - /CTA.exe: + "/CTA.exe": - when: - os: windows store: steam @@ -113764,7 +114108,7 @@ Counter-Fall: id: 1205390 Counter-Strike: files: - /Half-Life/cstrike: + "/Half-Life/cstrike": tags: - config when: @@ -113774,26 +114118,28 @@ Counter-Strike: installDir: Half-Life: {} launch: - /hl.exe: - - arguments: '-steam -game cstrike' + "/hl.exe": + - arguments: "-steam -game cstrike" when: - os: windows store: steam - /hl.sh: - - arguments: '-steam -game cstrike' + "/hl.sh": + - arguments: "-steam -game cstrike" when: - os: mac store: steam + - os: linux + store: steam steam: id: 10 Counter-Strike 2: files: - /userdata//730/local/cfg: + "/userdata//730/local/cfg": tags: - config when: - store: steam - /userdata//730/remote: + "/userdata//730/remote": tags: - config when: @@ -113801,38 +114147,40 @@ Counter-Strike 2: installDir: Counter-Strike Global Offensive: {} launch: - /csgo.exe: - - arguments: '-steam' + "/csgo.exe": + - arguments: "-steam" when: - os: windows store: steam - /csgo.sh: - - arguments: '-steam' + "/csgo.sh": + - arguments: "-steam" when: - os: mac store: steam + - os: linux + store: steam steam: id: 730 -'Counter-Strike Nexon: Studio': +"Counter-Strike Nexon: Studio": installDir: CSNZ: {} launch: - /bin/cstrike-online.exe: + "/bin/cstrike-online.exe": - when: - store: steam - workingDir: /bin + workingDir: "/bin" steam: id: 273110 -'Counter-Strike: Condition Zero': +"Counter-Strike: Condition Zero": files: - /Half-Life/czero: + "/Half-Life/czero": tags: - config when: - os: windows - os: mac - os: linux - /Half-Life/czero/Save: + "/Half-Life/czero/Save": tags: - save when: @@ -113845,21 +114193,23 @@ Counter-Strike 2: installDir: Half-Life: {} launch: - /hl.exe: - - arguments: '-steam -game czero' + "/hl.exe": + - arguments: "-steam -game czero" when: - os: windows store: steam - /hl.sh: - - arguments: '-steam -game czero' + "/hl.sh": + - arguments: "-steam -game czero" when: - os: mac store: steam + - os: linux + store: steam steam: id: 80 -'Counter-Strike: Source': +"Counter-Strike: Source": files: - /cstrike/cfg: + "/cstrike/cfg": tags: - config when: @@ -113869,18 +114219,18 @@ Counter-Strike 2: installDir: Counter-Strike Source: {} launch: - /hl2.exe: - - arguments: '-steam -game cstrike' + "/hl2.exe": + - arguments: "-steam -game cstrike" when: - os: windows store: steam - /hl2.sh: - - arguments: '-game cstrike -steam' + "/hl2.sh": + - arguments: "-game cstrike -steam" when: - os: linux store: steam - /hl2_osx: - - arguments: '-steam -game cstrike' + "/hl2_osx": + - arguments: "-steam -game cstrike" when: - os: mac store: steam @@ -113888,7 +114238,7 @@ Counter-Strike 2: id: 240 CounterAttack: files: - /unity3d/Relative Software LTD_/CounterAttack: + "/unity3d/Relative Software LTD_/CounterAttack": tags: - config when: @@ -113896,15 +114246,15 @@ CounterAttack: installDir: CounterAttack: {} launch: - /CounterAttack.app/Contents/MacOS/CounterAttack: + "/CounterAttack.app/Contents/MacOS/CounterAttack": - when: - os: mac store: steam - /CounterAttack.exe: + "/CounterAttack.exe": - when: - os: windows store: steam - /CounterAttack.x86_64: + "/CounterAttack.x86_64": - when: - os: linux store: steam @@ -113914,7 +114264,7 @@ Countermark Saga Frozen sword: installDir: Countermark Saga: {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: @@ -113923,7 +114273,7 @@ Countersnipe: installDir: Countersnipe: {} launch: - /Countersnipe.exe: + "/Countersnipe.exe": - when: - bit: 64 os: windows @@ -113934,7 +114284,7 @@ Counterspell: installDir: Counterspell: {} launch: - /Counterspell.exe: + "/Counterspell.exe": - when: - os: windows store: steam @@ -113944,10 +114294,10 @@ Countless Rooms of Death: installDir: Countless Rooms of Death: {} launch: - /Binaries/Win32/CROD.exe: + "/Binaries/Win32/CROD.exe": - when: - store: steam - /Countless Rooms of Death.exe: + "/Countless Rooms of Death.exe": - when: - os: windows store: steam @@ -113957,7 +114307,7 @@ Countrified: installDir: Countrified: {} launch: - /Countrified.exe: + "/Countrified.exe": - when: - bit: 64 os: windows @@ -113971,7 +114321,7 @@ Country Girl Keiko: installDir: Country Girl Keiko: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: @@ -113980,7 +114330,7 @@ Country Park: installDir: Park Simulator: {} launch: - /Country_Park_RM.exe: + "/Country_Park_RM.exe": - when: - os: windows store: steam @@ -113995,12 +114345,12 @@ Country Tales: installDir: Country Tales: {} launch: - /Country Tales.app/Contents/MacOS/Country Tales: + "/Country Tales.app/Contents/MacOS/Country Tales": - when: - os: mac store: steam - workingDir: /Country Tales.app/Contents/MacOS - /ctales.exe: + workingDir: "/Country Tales.app/Contents/MacOS" + "/ctales.exe": - when: - os: windows store: steam @@ -114015,28 +114365,28 @@ CountryBalls Heroes: installDir: CountryBalls Heroes: {} launch: - /CountryBalls Heroes.exe: + "/CountryBalls Heroes.exe": - when: - bit: 64 os: windows store: steam steam: id: 1083870 -'Countryballs: Modern Ballfare': +"Countryballs: Modern Ballfare": installDir: Countryballs Modern Ballfare: {} launch: - /CountryBallProject.exe: + "/CountryBallProject.exe": - when: - os: windows store: steam steam: id: 1147130 -'Countryballs: Over the World': +"Countryballs: Over the World": installDir: Countryballs Over The World: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -114046,7 +114396,7 @@ Courage and Honor: installDir: Courage and Honor: {} launch: - /CourageAndHonor.exe: + "/CourageAndHonor.exe": - when: - bit: 64 os: windows @@ -114057,15 +114407,15 @@ Courage for a Kiss: installDir: CourageForAKiss: {} launch: - /CourageForAKiss.app: + "/CourageForAKiss.app": - when: - os: mac store: steam - /CourageForAKiss.exe: + "/CourageForAKiss.exe": - when: - os: windows store: steam - /CourageForAKiss.sh: + "/CourageForAKiss.sh": - when: - os: linux store: steam @@ -114075,7 +114425,7 @@ Courier of the Crypts: installDir: Courier of the Crypts: {} launch: - /CourierOfTheCrypts.exe: + "/CourierOfTheCrypts.exe": - when: - os: windows store: steam @@ -114085,11 +114435,11 @@ Court of Ashes: installDir: Court of Ashes: {} launch: - /CourtofAshes.exe: + "/CourtofAshes.exe": - when: - os: windows store: steam - /CourtofAshes.x86_64: + "/CourtofAshes.x86_64": - when: - bit: 64 os: linux @@ -114100,7 +114450,7 @@ Courtyard Broomball: installDir: Courtyard Broomball EARLY ACCESS: {} launch: - /fly_s.exe: + "/fly_s.exe": - when: - store: steam steam: @@ -114114,7 +114464,7 @@ Cover Sky: installDir: Cover Sky: {} launch: - /CoverSky.exe: + "/CoverSky.exe": - when: - os: windows store: steam @@ -114124,7 +114474,7 @@ Cover Your Eyes: installDir: Cover Your Eyes: {} launch: - /Cover Your Eyes/Cover your eyes.exe: + "/Cover Your Eyes/Cover your eyes.exe": - when: - os: windows store: steam @@ -114152,7 +114502,7 @@ Cowboy: installDir: Cowboy: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -114162,7 +114512,7 @@ Cowboy Escape: installDir: Cowboy Escape: {} launch: - /CowboyEscape.exe: + "/CowboyEscape.exe": - when: - os: windows store: steam @@ -114177,21 +114527,21 @@ Cowboy Revenge: Cowboy Zombie: steam: id: 603570 -Cowboy's Adventure: +"Cowboy's Adventure": installDir: - Cowboy's Adventure: {} + "Cowboy's Adventure": {} launch: - /Cowboy's Adventure.exe: + "/Cowboy's Adventure.exe": - when: - os: windows store: steam steam: id: 666960 -'Cowboy: Attack of Wild Animal': +"Cowboy: Attack of Wild Animal": installDir: Cowboy Attack of Wild Animal: {} launch: - /Cowboy Attack of Wild Animal.exe: + "/Cowboy Attack of Wild Animal.exe": - when: - os: windows store: steam @@ -114201,16 +114551,16 @@ Cowboys vs Hipsters: installDir: Cowboys vs Hipsters: {} launch: - /Cowboys vs Hipsters.app: + "/Cowboys vs Hipsters.app": - when: - os: mac store: steam - /Cowboys vs Hipsters.exe: + "/Cowboys vs Hipsters.exe": - when: - bit: 64 os: windows store: steam - /Cowboys vs Hipsters.x86_64: + "/Cowboys vs Hipsters.x86_64": - when: - bit: 64 os: linux @@ -114221,10 +114571,10 @@ Cowpocalypse - Episode 1: installDir: Cowpocalypse: {} launch: - /game.exe: + "/game.exe": - when: - store: steam - /testgame.exe: + "/testgame.exe": - when: - os: windows store: steam @@ -114234,20 +114584,20 @@ Cows VS Vikings: installDir: Cows VS Vikings: {} launch: - /CowsAndVikingsSteam.app: + "/CowsAndVikingsSteam.app": - when: - os: mac store: steam - /CowsAndVikingsSteam.exe: + "/CowsAndVikingsSteam.exe": - when: - os: windows store: steam - /CowsAndVikingsSteam.x86: + "/CowsAndVikingsSteam.x86": - when: - bit: 32 os: linux store: steam - /CowsAndVikingsSteam.x86_64: + "/CowsAndVikingsSteam.x86_64": - when: - os: linux store: steam @@ -114255,7 +114605,7 @@ Cows VS Vikings: id: 854860 Cozy Grove: files: - /AppData/LocalLow/Spry Fox/Cozy Grove: + "/AppData/LocalLow/Spry Fox/Cozy Grove": tags: - save when: @@ -114263,7 +114613,7 @@ Cozy Grove: installDir: Cozy Grove: {} launch: - /CozyGrove.exe: + "/CozyGrove.exe": - when: - os: windows store: steam @@ -114273,11 +114623,11 @@ Crab Cakes Rescue: installDir: Crab Cakes Rescue: {} launch: - /CrabCakesRescueLauncher.app: + "/CrabCakesRescueLauncher.app": - when: - os: mac store: steam - /CrabCakesRescueLauncher.exe: + "/CrabCakesRescueLauncher.exe": - when: - os: windows store: steam @@ -114285,12 +114635,12 @@ Crab Cakes Rescue: id: 328680 Crab Champions: files: - /CrabChampions/Saved/Config: + "/CrabChampions/Saved/Config": tags: - config when: - os: windows - /CrabChampions/Saved/SaveGames: + "/CrabChampions/Saved/SaveGames": tags: - save when: @@ -114298,7 +114648,7 @@ Crab Champions: installDir: Crab Champions: {} launch: - /CrabChampions.exe: + "/CrabChampions.exe": - when: - os: windows store: steam @@ -114308,7 +114658,7 @@ Crab Dub: installDir: Crab Dub: {} launch: - /CrabDub.exe: + "/CrabDub.exe": - when: - os: windows store: steam @@ -114316,7 +114666,7 @@ Crab Dub: id: 539450 Crab Game: files: - /SavesDir/*.sav: + "/SavesDir/*.sav": tags: - save when: @@ -114324,15 +114674,15 @@ Crab Game: installDir: Crab Game: {} launch: - /Crab Game.app/Contents/MacOS/Crab Game: + "/Crab Game.app/Contents/MacOS/Crab Game": - when: - os: mac store: steam - /Crab Game.exe: + "/Crab Game.exe": - when: - os: windows store: steam - /Crab Game.x86_64: + "/Crab Game.x86_64": - when: - os: linux store: steam @@ -114340,29 +114690,29 @@ Crab Game: id: 1782210 Crack Down: files: - /CRACKDWN.SAV: + "/CRACKDWN.SAV": tags: - save when: - os: dos Crack Down (Genesis): files: - /SEGA Genesis Classics/0002: + "/SEGA Genesis Classics/0002": tags: - save when: - os: windows - /SEGA Genesis Classics/setup.dat: + "/SEGA Genesis Classics/setup.dat": tags: - config when: - os: windows - /SEGA Mega Drive Classics/0002: + "/SEGA Mega Drive Classics/0002": tags: - save when: - os: windows - /SEGA Mega Drive Classics/setup.dat: + "/SEGA Mega Drive Classics/setup.dat": tags: - config when: @@ -114371,12 +114721,12 @@ Crack Down (Genesis): id: 34273 Crackdown 3: files: - /Packages/Microsoft.48248D2C77101_8wekyb3d8bbwe/LocalState/Nimbus/Saved/Config/UWP: + "/Packages/Microsoft.48248D2C77101_8wekyb3d8bbwe/LocalState/Nimbus/Saved/Config/UWP": tags: - config when: - os: windows - /Packages/Microsoft.48248D2C77101_8wekyb3d8bbwe/SystemAppData/wgs/: + "/Packages/Microsoft.48248D2C77101_8wekyb3d8bbwe/SystemAppData/wgs/": tags: - save when: @@ -114385,11 +114735,11 @@ Crackhead: installDir: CRACKHEAD: {} launch: - /CRACKHEAD: + "/CRACKHEAD": - when: - os: linux store: steam - /CRACKHEAD.exe: + "/CRACKHEAD.exe": - when: - os: windows store: steam @@ -114397,12 +114747,12 @@ Crackhead: id: 554530 Cracking the Cryptic: files: - /Library/Application Support/com.StudioGoya.CrackingTheCryptic/76561198271677313: + "/Library/Application Support/com.StudioGoya.CrackingTheCryptic/76561198271677313": tags: - save when: - os: mac - /LocalLow/Studio Goya/Cracking the Cryptic/76561198271677313: + "/LocalLow/Studio Goya/Cracking the Cryptic/76561198271677313": tags: - save when: @@ -114410,21 +114760,21 @@ Cracking the Cryptic: installDir: Cracking the Cryptic: {} launch: - /Cracking the Cryptic.exe: + "/Cracking the Cryptic.exe": - when: - os: windows store: steam - /cracking_the_cryptic.app: + "/cracking_the_cryptic.app": - when: - os: mac store: steam steam: id: 2085970 -'Crackpot Despot: Trump Warfare': +"Crackpot Despot: Trump Warfare": installDir: CRACKPOT DESPOT TRUMP WARFARE: {} launch: - /Crackpot Despot.exe: + "/Crackpot Despot.exe": - when: - os: windows store: steam @@ -114432,30 +114782,30 @@ Cracking the Cryptic: id: 910290 Cradle: files: - /bin/profiles/game.data: + "/bin/profiles/game.data": tags: - config - save when: - os: windows - os: linux - /cradle.cfg: + "/cradle.cfg": tags: - config when: - os: windows - os: linux - /.Cradle/cradle.cfg: + "/.Cradle/cradle.cfg": tags: - config when: - os: linux - /Cradle/cradle.cfg: + "/Cradle/cradle.cfg": tags: - config when: - os: windows - /userdata//361550/remote/data.xml: + "/userdata//361550/remote/data.xml": tags: - save when: @@ -114463,17 +114813,17 @@ Cradle: installDir: Cradle: {} launch: - /bin/cradle_x64.exe: + "/bin/cradle_x64.exe": - when: - bit: 64 os: windows store: steam - /bin/cradle_x86.exe: + "/bin/cradle_x86.exe": - when: - bit: 32 os: windows store: steam - /cradle.sh: + "/cradle.sh": - when: - os: linux store: steam @@ -114481,7 +114831,7 @@ Cradle: id: 361550 Cradle of Persia: files: - /Awem/Cradle of Persia/Config.xml: + "/Awem/Cradle of Persia/Config.xml": tags: - save when: @@ -114489,7 +114839,7 @@ Cradle of Persia: installDir: Cradle of Persia: {} launch: - /CradleOfPersia.exe: + "/CradleOfPersia.exe": - when: - store: steam steam: @@ -114498,7 +114848,7 @@ Cradle of Rome: installDir: Cradle of Rome: {} launch: - /CradleOfRome.exe: + "/CradleOfRome.exe": - when: - store: steam steam: @@ -114510,15 +114860,15 @@ Craft Battle Simulator: installDir: CRAFT BATTLE SIMULATOR: {} launch: - /CBS.app: + "/CBS.app": - when: - os: mac store: steam - /CBS.exe: + "/CBS.exe": - when: - os: windows store: steam - /CBS.sh: + "/CBS.sh": - when: - os: linux store: steam @@ -114528,7 +114878,7 @@ Craft Elements: installDir: Craft Elements: {} launch: - /CraftElements.exe: + "/CraftElements.exe": - when: - bit: 64 os: windows @@ -114544,15 +114894,15 @@ Craft and Dungeon: installDir: Craft & Dungeon: {} launch: - /CraftAndDungeon_linux.x86: + "/CraftAndDungeon_linux.x86": - when: - os: linux store: steam - /CraftAndDungeon_macOS.app: + "/CraftAndDungeon_macOS.app": - when: - os: mac store: steam - /CraftAndDungeon_win.exe: + "/CraftAndDungeon_win.exe": - when: - os: windows store: steam @@ -114560,12 +114910,12 @@ Craft and Dungeon: id: 829250 Craft the World: files: - /dekovir/crafttheworld/config.xml: + "/dekovir/crafttheworld/config.xml": tags: - config when: - os: windows - /dekovir/crafttheworld/saves: + "/dekovir/crafttheworld/saves": tags: - save when: @@ -114575,17 +114925,17 @@ Craft the World: installDir: CraftTheWorld: {} launch: - /CraftWorld.app: + "/CraftWorld.app": - when: - os: mac store: steam - /CraftWorld.exe: + "/CraftWorld.exe": - when: - os: windows store: steam steam: id: 248390 -'Craft: Work VR Shop': +"Craft: Work VR Shop": installDir: Work VR Shop: {} steam: @@ -114594,15 +114944,15 @@ Craftica: installDir: Craftica: {} launch: - /Contents/Linux/bin/Craftica: + "/Contents/Linux/bin/Craftica": - when: - os: linux store: steam - /Contents/MacOS/Craftica: + "/Contents/MacOS/Craftica": - when: - os: mac store: steam - /Contents/Win64/Craftica.exe: + "/Contents/Win64/Craftica.exe": - when: - os: windows store: steam @@ -114612,7 +114962,7 @@ Crafting Block World: installDir: Crafting Block World: {} launch: - /Block Craft World.exe: + "/Block Craft World.exe": - when: - store: steam steam: @@ -114621,7 +114971,7 @@ Crafting Dead: installDir: Crafting Dead: {} launch: - /Crafting Dead.exe: + "/Crafting Dead.exe": - when: - os: windows store: steam @@ -114631,7 +114981,7 @@ Crafting Tycoon: installDir: Crafting Tycoon: {} launch: - /Crafting Tycoon v0.8.exe: + "/Crafting Tycoon v0.8.exe": - when: - os: windows store: steam @@ -114639,23 +114989,23 @@ Crafting Tycoon: id: 757440 Craftopia: files: - /AppData/LocalLow/PocketPair/Craftopia/Save: + "/AppData/LocalLow/PocketPair/Craftopia/Save": tags: - save when: - os: windows - /AppData/LocalLow/PocketPairInc/Craftopia/Save: + "/AppData/LocalLow/PocketPairInc/Craftopia/Save": tags: - config when: - os: windows - /AppData/LocalLow/PocketPairInc/Craftopia/XboxLive//main/Save: + "/AppData/LocalLow/PocketPairInc/Craftopia/XboxLive//main/Save": tags: - config when: - os: windows store: microsoft - /Packages/PocketpairInc.Craftopia_ad4psfrxyesvt/SystemAppData/wgs: + "/Packages/PocketpairInc.Craftopia_ad4psfrxyesvt/SystemAppData/wgs": tags: - save when: @@ -114664,7 +115014,7 @@ Craftopia: installDir: Craftopia: {} launch: - /Craftopia.exe: + "/Craftopia.exe": - when: - bit: 64 os: windows @@ -114675,7 +115025,7 @@ Cragls: installDir: Cragls: {} launch: - /SkyRace.exe: + "/SkyRace.exe": - when: - os: windows store: steam @@ -114685,16 +115035,16 @@ Cranes: installDir: Cranes: {} launch: - /crane: + "/crane": - when: - bit: 64 os: linux store: steam - /crane.app/Contents/MacOS/crane: + "/crane.app/Contents/MacOS/crane": - when: - os: mac store: steam - /cranes.exe: + "/cranes.exe": - when: - bit: 64 os: windows @@ -114705,7 +115055,7 @@ Cranium Conundrum: installDir: Cranium Conundrum: {} launch: - /CraniumConundrum.exe: + "/CraniumConundrum.exe": - when: - os: windows store: steam @@ -114715,43 +115065,43 @@ Cranked Up: installDir: Cranked Up: {} launch: - /CrankedUp.exe: + "/CrankedUp.exe": - when: - bit: 64 os: windows store: steam steam: id: 1074500 -'Crankies Workshop: Bozzbot Assembly': +"Crankies Workshop: Bozzbot Assembly": steam: id: 705400 -'Crankies Workshop: Freebot Assembly': +"Crankies Workshop: Freebot Assembly": steam: id: 724280 -'Crankies Workshop: Grizzbot Assembly': +"Crankies Workshop: Grizzbot Assembly": steam: id: 705420 -'Crankies Workshop: Grizzbot Assembly 2': +"Crankies Workshop: Grizzbot Assembly 2": steam: id: 719460 -'Crankies Workshop: Lerpbot Assembly': +"Crankies Workshop: Lerpbot Assembly": steam: id: 705430 -'Crankies Workshop: Whirlbot Assembly': +"Crankies Workshop: Whirlbot Assembly": steam: id: 707370 -'Crankies Workshop: Zazzbot Assembly': +"Crankies Workshop: Zazzbot Assembly": steam: id: 707380 Cranks and Goggles: installDir: Cranks and Goggles: {} launch: - /CranksAndGoggles.app: + "/CranksAndGoggles.app": - when: - os: mac store: steam - /CranksAndGoggles.exe: + "/CranksAndGoggles.exe": - when: - os: windows store: steam @@ -114761,7 +115111,7 @@ Cranky Cat: installDir: Cranky Cat: {} launch: - /CrankyCat.exe: + "/CrankyCat.exe": - when: - os: windows store: steam @@ -114777,7 +115127,7 @@ Crappy Tube: installDir: crappytube: {} launch: - /factoryofdelusions.exe: + "/factoryofdelusions.exe": - when: - store: steam steam: @@ -114796,19 +115146,19 @@ Crash And Burn Racing: installDir: Crash And Burn Racing: {} launch: - /Crash&Burn.exe: + "/Crash&Burn.exe": - when: - store: steam steam: id: 336630 -'Crash Bandicoot 4: It''s About Time': +"Crash Bandicoot 4: It's About Time": files: - /CrashBandicoot4/Saved/Config/WindowsNoEditor: + "/CrashBandicoot4/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /CrashBandicoot4/Saved/SaveGames: + "/CrashBandicoot4/Saved/SaveGames": tags: - save when: @@ -114816,14 +115166,14 @@ Crash And Burn Racing: installDir: Crash Bandicoot 4: {} launch: - /Lava/Binaries/Win64/CrashBandicoot4.exe: + "/Lava/Binaries/Win64/CrashBandicoot4.exe": - when: - store: steam steam: id: 1378990 Crash Bandicoot N. Sane Trilogy: files: - /Crash Bandicoot(TM) N. Sane Trilogy: + "/Crash Bandicoot(TM) N. Sane Trilogy": tags: - config - save @@ -114832,7 +115182,7 @@ Crash Bandicoot N. Sane Trilogy: installDir: Crash Bandicoot - N Sane Trilogy: {} launch: - /CrashBandicootNSaneTrilogy.exe: + "/CrashBandicootNSaneTrilogy.exe": - when: - store: steam steam: @@ -114846,15 +115196,15 @@ Crash Drive 2: installDir: Crash Drive 2: {} launch: - /Crash Drive 2: + "/Crash Drive 2": - when: - os: linux store: steam - /Crash Drive 2.app/Contents/MacOS/Crash Drive 2: + "/Crash Drive 2.app/Contents/MacOS/Crash Drive 2": - when: - os: mac store: steam - /Crash Drive 2.exe: + "/Crash Drive 2.exe": - when: - os: windows store: steam @@ -114864,17 +115214,17 @@ Crash Drive 3: installDir: Crash Drive 3: {} launch: - /Crash Drive 3: - - arguments: '-force-glcore' + "/Crash Drive 3": + - arguments: "-force-glcore" when: - bit: 64 os: linux store: steam - /Crash Drive 3.app/Contents/MacOS/Crash Drive 3: + "/Crash Drive 3.app/Contents/MacOS/Crash Drive 3": - when: - os: mac store: steam - /Crash Drive 3.exe: + "/Crash Drive 3.exe": - when: - bit: 64 os: windows @@ -114885,15 +115235,15 @@ Crash Dummy: installDir: Crash Dummy: {} launch: - /Crash Dummy 07 08 2015.app: + "/Crash Dummy 07 08 2015.app": - when: - os: mac store: steam - /Crash Dummy 07 08 2015.x86: + "/Crash Dummy 07 08 2015.x86": - when: - os: linux store: steam - /CrashDummy.exe: + "/CrashDummy.exe": - when: - os: windows store: steam @@ -114903,7 +115253,7 @@ Crash Force: installDir: Crash Force: {} launch: - /CrashForce.exe: + "/CrashForce.exe": - when: - os: windows store: steam @@ -114913,7 +115263,7 @@ Crash Landed: installDir: Crash Landed: {} launch: - /Crash Landed.exe: + "/Crash Landed.exe": - when: - os: windows store: steam @@ -114921,7 +115271,7 @@ Crash Landed: id: 1014600 Crash Landing: files: - /CrashLanding/Saved/Config/WindowsNoEditor: + "/CrashLanding/Saved/Config/WindowsNoEditor": tags: - config when: @@ -114929,7 +115279,7 @@ Crash Landing: installDir: Crash Landing: {} launch: - /CrashLanding/Binaries/Win64/CrashLanding.exe: + "/CrashLanding/Binaries/Win64/CrashLanding.exe": - when: - store: steam steam: @@ -114938,7 +115288,7 @@ Crash Test Billy: installDir: Crash Test Billy: {} launch: - /CrashTestBilly.exe: + "/CrashTestBilly.exe": - when: - os: windows store: steam @@ -114946,14 +115296,14 @@ Crash Test Billy: id: 676550 Crash Time: files: - /C11-Saves: + "/C11-Saves": tags: - save when: - os: windows Crash Time 2: files: - /Synetic/BurningWheels: + "/Synetic/BurningWheels": tags: - config - save @@ -114962,14 +115312,14 @@ Crash Time 2: installDir: Crash Time II: {} launch: - /BurningWheels.exe: + "/BurningWheels.exe": - when: - store: steam steam: id: 11390 Crash Time 3: files: - /Synetic/HighwayNights: + "/Synetic/HighwayNights": tags: - config - save @@ -114978,26 +115328,26 @@ Crash Time 3: installDir: Crash Time III: {} launch: - /HighwayNights.exe: + "/HighwayNights.exe": - when: - store: steam steam: id: 33620 -'Crash Time 4: The Syndicate': +"Crash Time 4: The Syndicate": files: - /Synetic/CrashTime4/Config.ini: + "/Synetic/CrashTime4/Config.ini": tags: - config when: - os: windows - /Synetic/SavedGame: + "/Synetic/SavedGame": tags: - save when: - os: windows -'Crash Time 5: Undercover': +"Crash Time 5: Undercover": files: - /Synetic/CrashTime5: + "/Synetic/CrashTime5": tags: - config - save @@ -115005,14 +115355,14 @@ Crash Time 3: - os: windows steam: id: 1687700 -'Crash Time: Undercover': +"Crash Time: Undercover": steam: id: 1687700 Crash Wheels: installDir: Crash Wheels: {} launch: - /Crash Wheels.exe: + "/Crash Wheels.exe": - when: - os: windows store: steam @@ -115021,7 +115371,7 @@ Crash Wheels: Crash World: steam: id: 852890 -'CrashCourse: Concussion Education Reimagined': +"CrashCourse: Concussion Education Reimagined": steam: id: 1032530 Crashbot: @@ -115031,15 +115381,15 @@ Crashbots: installDir: Crashbots: {} launch: - /Crashbots.app: + "/Crashbots.app": - when: - os: mac store: steam - /Crashbots.exe: + "/Crashbots.exe": - when: - os: windows store: steam - /Crashbots.x86_64: + "/Crashbots.x86_64": - when: - os: linux store: steam @@ -115047,19 +115397,19 @@ Crashbots: id: 861940 Crashday: files: - /savegame: + "/savegame": tags: - save when: - os: windows Crashday Redline Edition: files: - /Crashday: + "/Crashday": tags: - save when: - os: windows - /Crashday/config: + "/Crashday/config": tags: - config when: @@ -115067,7 +115417,7 @@ Crashday Redline Edition: installDir: Crashday: {} launch: - /crashday.exe: + "/crashday.exe": - when: - os: windows store: steam @@ -115077,20 +115427,20 @@ Crashed Lander: installDir: Crashed Lander: {} launch: - /CrashedLander.app/Contents/MacOS/CrashedLander: + "/CrashedLander.app/Contents/MacOS/CrashedLander": - when: - os: mac store: steam - /CrashedLander.exe: + "/CrashedLander.exe": - when: - os: windows store: steam - /CrashedLander.x86: + "/CrashedLander.x86": - when: - bit: 32 os: linux store: steam - /CrashedLander.x86_64: + "/CrashedLander.x86_64": - when: - bit: 64 os: linux @@ -115101,11 +115451,11 @@ Crasher: installDir: Crasher: {} launch: - /Crasher.app: + "/Crasher.app": - when: - os: mac store: steam - /Crasher.exe: + "/Crasher.exe": - when: - os: windows store: steam @@ -115118,7 +115468,7 @@ Crashimals: id: 566980 Crashlands: files: - /Crashlands: + "/Crashlands": tags: - config - save @@ -115129,19 +115479,19 @@ Crashlands: installDir: Crashlands: {} launch: - /Crashlands.app/Contents/MacOS/Mac_Runner: + "/Crashlands.app/Contents/MacOS/Mac_Runner": - when: - os: mac store: steam - /Crashlands.exe: + "/Crashlands.exe": - when: - os: windows store: steam - /Crashlands_1604/Crashlands: + "/Crashlands_1604/Crashlands": - when: - os: linux store: steam - /Crashlands_1804/Crashlands: + "/Crashlands_1804/Crashlands": - when: - os: linux store: steam @@ -115151,11 +115501,11 @@ Crashnauts: installDir: Crashnauts: {} launch: - /Crashnauts.app: + "/Crashnauts.app": - when: - os: mac store: steam - /crashnauts.exe: + "/crashnauts.exe": - when: - os: windows store: steam @@ -115165,11 +115515,11 @@ Crashphalt: installDir: Crashphalt: {} launch: - /Crashphalt.app: + "/Crashphalt.app": - when: - os: mac store: steam - /Crashphalt.exe: + "/Crashphalt.exe": - when: - os: windows store: steam @@ -115179,16 +115529,16 @@ Crate Punks: installDir: Crate Punks: {} launch: - /cratepunks_for_linux.x86_64: + "/cratepunks_for_linux.x86_64": - when: - os: linux store: steam - /cratepunks_for_windows_x64.exe: + "/cratepunks_for_windows_x64.exe": - when: - bit: 64 os: windows store: steam - /cratepunks_for_windows_x86.exe: + "/cratepunks_for_windows_x86.exe": - when: - bit: 32 os: windows @@ -115197,13 +115547,13 @@ Crate Punks: id: 517960 Crawl: files: - /Crawl.sav: + "/Crawl.sav": tags: - save when: - store: steam - os: linux - /.config/unity3d/Powerhoof/Crawl: + "/.config/unity3d/Powerhoof/Crawl": tags: - config when: @@ -115213,20 +115563,20 @@ Crawl: installDir: Crawl: {} launch: - /Crawl.app: + "/Crawl.app": - when: - os: mac store: steam - /Crawl.exe: + "/Crawl.exe": - when: - os: windows store: steam - /Crawl.x86: + "/Crawl.x86": - when: - bit: 32 os: linux store: steam - /Crawl.x86_64: + "/Crawl.x86_64": - when: - bit: 64 os: linux @@ -115237,11 +115587,11 @@ Crawl: - config steam: id: 293780 -'Crawl Space: The Mansion': +"Crawl Space: The Mansion": installDir: Crawl Space The Mansion: {} launch: - /Windows 64-bit/Windows 64-bit.exe: + "/Windows 64-bit/Windows 64-bit.exe": - when: - bit: 64 os: windows @@ -115252,7 +115602,7 @@ Crawlco Block Knockers: installDir: Crawlco Block Knockers: {} launch: - /BlockKnockers.exe: + "/BlockKnockers.exe": - when: - os: windows store: steam @@ -115262,15 +115612,15 @@ Crawlers and Brawlers: installDir: CrawlersAndBrawlers: {} launch: - /CrawlersAndBrawlers: + "/CrawlersAndBrawlers": - when: - os: linux store: steam - /CrawlersAndBrawlers.app: + "/CrawlersAndBrawlers.app": - when: - os: mac store: steam - /CrawlersAndBrawlers.exe: + "/CrawlersAndBrawlers.exe": - when: - os: windows store: steam @@ -115283,7 +115633,7 @@ Crawling Of The Dead: id: 1097240 Crayola Scoot: files: - /AppData/LocalLow/Outright Games Ltd/Crayola Scoot: + "/AppData/LocalLow/Outright Games Ltd/Crayola Scoot": tags: - save when: @@ -115291,7 +115641,7 @@ Crayola Scoot: installDir: Scoot: {} launch: - /Crayola Scoot.exe: + "/Crayola Scoot.exe": - when: - bit: 64 os: windows @@ -115302,7 +115652,7 @@ Crayon Chronicles: installDir: Crayon Chronicles: {} launch: - /CrayonChronicles.exe: + "/CrayonChronicles.exe": - when: - os: windows store: steam @@ -115310,18 +115660,18 @@ Crayon Chronicles: id: 341510 Crayon Physics Deluxe: files: - /data/dev: + "/data/dev": tags: - config when: - os: windows - /.CrayonPhysicsDeluxe: + "/.CrayonPhysicsDeluxe": tags: - config - save when: - os: linux - /Crayon Physics Deluxe: + "/Crayon Physics Deluxe": tags: - save when: @@ -115329,22 +115679,22 @@ Crayon Physics Deluxe: installDir: Crayon Physics Deluxe: {} launch: - /Crayon Physics Deluxe.app: + "/Crayon Physics Deluxe.app": - when: - os: mac store: steam - /Launcher.exe: + "/Launcher.exe": - when: - os: windows store: steam steam: id: 26900 -'Crayon Shin-chan: The Storm Called! Flaming Kasukabe Runner!!': +"Crayon Shin-chan: The Storm Called! Flaming Kasukabe Runner!!": installDir: CRAYON SHINCHAN The Storm Called! FLAMING KASUKABE RUNNER!!: {} launch: - /CRAYON SHINCHAN The Storm Called! FLAMING KASUKABE RUNNER!!.exe: - - arguments: '-windowed' + "/CRAYON SHINCHAN The Storm Called! FLAMING KASUKABE RUNNER!!.exe": + - arguments: "-windowed" when: - bit: 64 os: windows @@ -115355,7 +115705,7 @@ Crazy Alchemist: installDir: Crazy Alchemist: {} launch: - /Crazy Alchemist.exe: + "/Crazy Alchemist.exe": - when: - os: windows store: steam @@ -115368,7 +115718,7 @@ Crazy Appliances: installDir: Crazy Appliances: {} launch: - /CrazyAppliances.exe: + "/CrazyAppliances.exe": - when: - os: windows store: steam @@ -115378,7 +115728,7 @@ Crazy Archery: installDir: Crazy Archery: {} launch: - /Crazy Archery.exe: + "/Crazy Archery.exe": - when: - store: steam steam: @@ -115387,7 +115737,7 @@ Crazy Ball: installDir: Crazy Ball: {} launch: - /Crazy Ball.exe: + "/Crazy Ball.exe": - when: - os: windows store: steam @@ -115397,7 +115747,7 @@ Crazy Ball Adventures: installDir: Crazy Ball Adventures: {} launch: - /CrazyBallAdventures.x86: + "/CrazyBallAdventures.x86": - when: - os: linux store: steam @@ -115406,15 +115756,15 @@ Crazy Ball Adventures: Crazy Ball Racing: steam: id: 1088570 -Crazy Beat's Junction: +"Crazy Beat's Junction": installDir: - Crazy Beat's Junction: {} + "Crazy Beat's Junction": {} launch: - /CBJ.exe: + "/CBJ.exe": - when: - os: windows store: steam - /cbj.app: + "/cbj.app": - when: - os: mac store: steam @@ -115424,7 +115774,7 @@ Crazy Belts: installDir: Crazy Belts: {} launch: - /CrazyBelts.exe: + "/CrazyBelts.exe": - when: - os: windows store: steam @@ -115434,7 +115784,7 @@ Crazy Bigheads: installDir: CRAZY BIGHEADS: {} launch: - /BigHeads.exe: + "/BigHeads.exe": - when: - bit: 64 os: windows @@ -115445,7 +115795,7 @@ Crazy Bowling: installDir: Crazy Bowling: {} launch: - /bowl.exe: + "/bowl.exe": - when: - os: windows store: steam @@ -115455,7 +115805,7 @@ Crazy Buggy Racing: installDir: Crazy Buggy Racing: {} launch: - /CrazyBuggyRacing.exe: + "/CrazyBuggyRacing.exe": - when: - bit: 64 os: windows @@ -115465,15 +115815,15 @@ Crazy Buggy Racing: Crazy Cage: steam: id: 1129340 -'Crazy Cars: Hit the Road': +"Crazy Cars: Hit the Road": installDir: Crazy Cars - Hit the Road: {} launch: - /CrazyCars.exe: + "/CrazyCars.exe": - when: - os: windows store: steam - /Crazycars.app: + "/Crazycars.app": - when: - os: mac store: steam @@ -115483,7 +115833,7 @@ Crazy Cat: installDir: CrazyCat: {} launch: - /CrazyCat.exe: + "/CrazyCat.exe": - when: - os: windows store: steam @@ -115496,7 +115846,7 @@ Crazy Chicken: installDir: CrazyChicken: {} launch: - /MoorhuhnDeluxe.exe: + "/MoorhuhnDeluxe.exe": - when: - store: steam steam: @@ -115505,7 +115855,7 @@ Crazy Chicken Invasion: installDir: Crazy Chicken - Invasion: {} launch: - /mh_invasion.exe: + "/mh_invasion.exe": - when: - os: windows store: steam @@ -115513,7 +115863,7 @@ Crazy Chicken Invasion: id: 340130 Crazy Chicken Tales: files: - /Crazy Chicken Tales/savegames.txt: + "/Crazy Chicken Tales/savegames.txt": tags: - save when: @@ -115521,7 +115871,7 @@ Crazy Chicken Tales: installDir: Crazy Chicken Tales: {} launch: - /CC_Tales.exe: + "/CC_Tales.exe": - when: - store: steam steam: @@ -115530,35 +115880,35 @@ Crazy Critters - Combat Cats: installDir: Crazy Critters - Combat Cats: {} launch: - /Crazy Critters - Combat Cats.exe: + "/Crazy Critters - Combat Cats.exe": - when: - os: windows store: steam steam: id: 1141880 -'Crazy Dreamz: Best Of': +"Crazy Dreamz: Best Of": installDir: Crazy Dreamz Best Of: {} launch: - /DreamzBestOf.app: + "/DreamzBestOf.app": - when: - os: mac store: steam - /DreamzBestOf.exe: + "/DreamzBestOf.exe": - when: - os: windows store: steam steam: id: 774711 -'Crazy Dreamz: MagiCats Edition': +"Crazy Dreamz: MagiCats Edition": installDir: Crazy Dreamz: {} launch: - /Dreamz.app: + "/Dreamz.app": - when: - os: mac store: steam - /Dreamz.exe: + "/Dreamz.exe": - when: - os: windows store: steam @@ -115568,15 +115918,15 @@ Crazy Driver: installDir: CRAZY DRIVER: {} launch: - /CRAZY DRIVER.app/Contents/MacOS/CRAZY DRIVER: + "/CRAZY DRIVER.app/Contents/MacOS/CRAZY DRIVER": - when: - os: mac store: steam - /CRAZY DRIVER.exe: + "/CRAZY DRIVER.exe": - when: - os: windows store: steam - /CRAZY DRIVER.x86_64: + "/CRAZY DRIVER.x86_64": - when: - os: linux store: steam @@ -115586,7 +115936,7 @@ Crazy Eights 3D Premium: installDir: Crazy Eights 3D Premium: {} launch: - /CrazyEights3D.exe: + "/CrazyEights3D.exe": - when: - os: windows store: steam @@ -115618,7 +115968,7 @@ Crazy Machines: installDir: Crazy Machines: {} launch: - /CrazyMachines.exe: + "/CrazyMachines.exe": - when: - store: steam steam: @@ -115627,26 +115977,26 @@ Crazy Machines 1.5: installDir: Crazy Machines 15: {} launch: - /new from the lab/testapp.exe: + "/new from the lab/testapp.exe": - when: - store: steam - workingDir: /"new from the lab/" + workingDir: "/\"new from the lab/\"" steam: id: 18430 Crazy Machines 2: files: - /Crazy Machines 2/profiles: + "/Crazy Machines 2/profiles": tags: - save when: - os: windows id: steamExtra: - - 202452 - - 202450 - - 18408 - 18407 + - 18408 - 18440 + - 202450 + - 202452 - 202454 - 242630 - 312090 @@ -115655,19 +116005,19 @@ Crazy Machines 2: installDir: Crazy Machines 2: {} launch: - /cm2.exe: + "/cm2.exe": - when: - store: steam steam: id: 18400 Crazy Machines 3: files: - /Daedalic Entertainment GmbH/Crazy Machines 3/Saves: + "/Daedalic Entertainment GmbH/Crazy Machines 3/Saves": tags: - save when: - os: windows - /Daedalic Entertainment GmbH/Crazy Machines 3/Saves/UserSettings.cms: + "/Daedalic Entertainment GmbH/Crazy Machines 3/Saves/UserSettings.cms": tags: - config when: @@ -115675,7 +116025,7 @@ Crazy Machines 3: installDir: CM3: {} launch: - /cm3.exe: + "/cm3.exe": - when: - os: windows store: steam @@ -115683,19 +116033,19 @@ Crazy Machines 3: id: 351920 Crazy Machines Elements: files: - /My Games/Crazy Machines Elements: + "/My Games/Crazy Machines Elements": tags: - save when: - os: windows id: steamExtra: - - 206416 - 206415 + - 206416 installDir: Crazy Machines Elements: {} launch: - /cmElements.exe: + "/cmElements.exe": - when: - store: steam steam: @@ -115705,19 +116055,19 @@ Crazy Machines VR: Crazy Machines VR: {} steam: id: 802690 -'Crazy Machines: Golden Gears': +"Crazy Machines: Golden Gears": installDir: Crazy Machines Golden Gears: {} launch: - /Crazy Machines Golden Gears.app: + "/Crazy Machines Golden Gears.app": - when: - os: mac store: steam - /cmgg: + "/cmgg": - when: - os: linux store: steam - /cmt.exe: + "/cmt.exe": - when: - os: windows store: steam @@ -115725,12 +116075,12 @@ Crazy Machines VR: id: 265240 Crazy Max VR: files: - /CrazyMaxVR/Saved/Config/WindowsNoEditor: + "/CrazyMaxVR/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /CrazyMaxVR/Saved/SaveGames: + "/CrazyMaxVR/Saved/SaveGames": tags: - save when: @@ -115743,7 +116093,7 @@ Crazy Maze: installDir: CRAZY MAZE: {} launch: - /CrazyMaze.exe: + "/CrazyMaze.exe": - when: - bit: 64 os: windows @@ -115754,7 +116104,7 @@ Crazy Mob: installDir: Crazy Mob: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -115764,20 +116114,20 @@ Crazy Mosquito: installDir: Crazy Mosquito: {} launch: - /CrazyMosquito.exe: + "/CrazyMosquito.exe": - when: - os: windows store: steam steam: id: 1008390 -'Crazy Oafish Ultra Blocks: Big Sale': +"Crazy Oafish Ultra Blocks: Big Sale": steam: id: 555620 Crazy Otto: installDir: Crazy Otto: {} launch: - /CrazyOtto.exe: + "/CrazyOtto.exe": - when: - os: windows store: steam @@ -115790,15 +116140,15 @@ Crazy Pixel Streaker: installDir: Crazy Pixel Streaker: {} launch: - /Crazy Pixel Streaker.app: + "/Crazy Pixel Streaker.app": - when: - os: mac store: steam - /CrazyPixelStreaker.exe: + "/CrazyPixelStreaker.exe": - when: - os: windows store: steam - /run.sh: + "/run.sh": - when: - os: linux store: steam @@ -115808,7 +116158,7 @@ Crazy Plant Shop: installDir: Crazy Plant Shop: {} launch: - /CrazyPlantShop.exe: + "/CrazyPlantShop.exe": - when: - store: steam steam: @@ -115825,29 +116175,29 @@ Crazy Sapper 3D: installDir: Crazy Sapper 3D: {} launch: - /Crazy Sapper 3D.app/Contents/MacOS/Crazy Sapper 3D: + "/Crazy Sapper 3D.app/Contents/MacOS/Crazy Sapper 3D": - when: - os: mac store: steam - /Crazy Sapper 3D.exe: + "/Crazy Sapper 3D.exe": - when: - os: windows store: steam - /Crazy Sapper 3D.x86_64: + "/Crazy Sapper 3D.x86_64": - when: - os: linux store: steam steam: id: 529420 -'Crazy Science: Long Run': +"Crazy Science: Long Run": installDir: Crazy Science Long Run: {} launch: - /Crazy Science Long Run.app/Contents/MacOS/Crazy Science Long Run: + "/Crazy Science Long Run.app/Contents/MacOS/Crazy Science Long Run": - when: - os: mac store: steam - /CrazyScienceLongRun.exe: + "/CrazyScienceLongRun.exe": - when: - os: windows store: steam @@ -115857,7 +116207,7 @@ Crazy Scientist: installDir: Crazy Scientist: {} launch: - /Crazy Scientist.exe: + "/Crazy Scientist.exe": - when: - os: windows store: steam @@ -115867,7 +116217,7 @@ Crazy Shopping: installDir: Crazy Shopping: {} launch: - /CartRace.exe: + "/CartRace.exe": - when: - os: windows store: steam @@ -115877,15 +116227,15 @@ Crazy Simulator: installDir: RUSSIAPHOBIA: {} launch: - /Contents/MacOS/RUSSIAPHOBIA: + "/Contents/MacOS/RUSSIAPHOBIA": - when: - os: mac store: steam - /RUSSIAPHOBIA.exe: + "/RUSSIAPHOBIA.exe": - when: - os: windows store: steam - /RUSSIAPHOBIA.x86_64: + "/RUSSIAPHOBIA.x86_64": - when: - os: linux store: steam @@ -115895,11 +116245,11 @@ Crazy Soccer: installDir: Crazy Soccer: {} launch: - /Crazy Soccer.exe: + "/Crazy Soccer.exe": - when: - os: windows store: steam - /CrazySoccer.app: + "/CrazySoccer.app": - when: - os: mac store: steam @@ -115909,15 +116259,15 @@ Crazy Steam Bros 2: installDir: Crazy Steam Bros 2: {} launch: - /CSB2_STEAM-1.1.exe: + "/CSB2_STEAM-1.1.exe": - when: - os: windows store: steam - /Crazy Steam Bros 2.app: + "/Crazy Steam Bros 2.app": - when: - os: mac store: steam - /runner: + "/runner": - when: - os: linux store: steam @@ -115927,7 +116277,7 @@ Crazy Stone Deep Learning -The First Edition-: installDir: CrazyStoneDL: {} launch: - /CrazyStoneDeepLearningSteam.exe: + "/CrazyStoneDeepLearningSteam.exe": - when: - os: windows store: steam @@ -115938,34 +116288,34 @@ Crazy Tank: id: 946290 Crazy Taxi: files: - /CRAZYTAXI_DC: + "/CRAZYTAXI_DC": tags: - save when: - os: windows - /taxi.cfg: + "/taxi.cfg": tags: - config when: - os: windows Crazy Taxi (2011): files: - /SEGA/Crazy Taxi/CRAZYTAXI_DC: + "/SEGA/Crazy Taxi/CRAZYTAXI_DC": tags: - save when: - os: windows - /SEGA/Crazy Taxi/config.ini: + "/SEGA/Crazy Taxi/config.ini": tags: - config when: - os: windows - /SEGA/Dreamcast Collection/Crazy Taxi/CRAZYTAXI_DC: + "/SEGA/Dreamcast Collection/Crazy Taxi/CRAZYTAXI_DC": tags: - save when: - os: windows - /SEGA/Dreamcast Collection/Crazy Taxi/config.ini: + "/SEGA/Dreamcast Collection/Crazy Taxi/config.ini": tags: - config when: @@ -115973,33 +116323,33 @@ Crazy Taxi (2011): installDir: Crazy Taxi: {} launch: - /AppLauncher.exe: - - arguments: '-bootgame' + "/AppLauncher.exe": + - arguments: "-bootgame" when: - store: steam - - arguments: '-bootlauncher' + - arguments: "-bootlauncher" when: - store: steam steam: id: 71230 Crazy Taxi (Steam): files: - /input_config.xml: + "/input_config.xml": tags: - config when: - os: windows - /keycap_config.xml: + "/keycap_config.xml": tags: - config when: - os: windows - /system_config.xml: + "/system_config.xml": tags: - config when: - os: windows - /SEGA/Dreamcast Collection/Crazy Taxi/CRAZYTAXI_DC: + "/SEGA/Dreamcast Collection/Crazy Taxi/CRAZYTAXI_DC": tags: - save when: @@ -116007,23 +116357,23 @@ Crazy Taxi (Steam): installDir: Crazy Taxi: {} launch: - /AppLauncher.exe: - - arguments: '-bootgame' + "/AppLauncher.exe": + - arguments: "-bootgame" when: - store: steam - - arguments: '-bootlauncher' + - arguments: "-bootlauncher" when: - store: steam steam: id: 71230 -'Crazy Taxi 3: High Roller': +"Crazy Taxi 3: High Roller": files: - /TAXI3.CFG: + "/TAXI3.CFG": tags: - config when: - os: windows - /game: + "/game": tags: - save when: @@ -116032,17 +116382,17 @@ Crazy Toad: installDir: Crazy Toad: {} launch: - /Crazy Toad.app/Contents/MacOS/Crazy Toad: + "/Crazy Toad.app/Contents/MacOS/Crazy Toad": - when: - bit: 64 os: mac store: steam - /Crazy Toad.exe: + "/Crazy Toad.exe": - when: - bit: 64 os: windows store: steam - /Crazy Toad.x86_64: + "/Crazy Toad.x86_64": - when: - bit: 64 os: linux @@ -116056,15 +116406,15 @@ Crazy Veggies: installDir: Crazy Veggies: {} launch: - /Crazy Veggies.app: + "/Crazy Veggies.app": - when: - os: mac store: steam - /Crazy Veggies.exe: + "/Crazy Veggies.exe": - when: - os: windows store: steam - /Crazy Veggies.x86: + "/Crazy Veggies.x86": - when: - os: linux store: steam @@ -116074,7 +116424,7 @@ Crazy Washing Machine: installDir: Crazy Washing Machine: {} launch: - /CrazyWashingMachine.exe: + "/CrazyWashingMachine.exe": - when: - store: steam steam: @@ -116083,7 +116433,7 @@ Crazy city: installDir: Crazy city: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -116093,7 +116443,7 @@ Crazy maze ~疯狂迷宫 ~ 狂った迷路 ~ Laberinto loco ~ Labyrinthe fou ~ V installDir: crazy_maze: {} launch: - /crazy_maze.exe: + "/crazy_maze.exe": - when: - os: windows store: steam @@ -116103,7 +116453,7 @@ Crazy space pirate: installDir: Crazy space pirate: {} launch: - /Crazy space pirate.exe: + "/Crazy space pirate.exe": - when: - store: steam steam: @@ -116112,11 +116462,11 @@ CrazyCar: installDir: CrazyCar: {} launch: - /CrazyCar.app: + "/CrazyCar.app": - when: - os: mac store: steam - /CrazyCar.exe: + "/CrazyCar.exe": - when: - os: windows store: steam @@ -116126,20 +116476,20 @@ CrazyCars3D: installDir: CrazyCars3D: {} launch: - /CC3D.app: + "/CC3D.app": - when: - os: mac store: steam - /CC3D.exe: + "/CC3D.exe": - when: - os: windows store: steam - /CC3D.x86: + "/CC3D.x86": - when: - bit: 32 os: linux store: steam - /CC3D.x86_64: + "/CC3D.x86_64": - when: - bit: 64 os: linux @@ -116150,7 +116500,7 @@ CrazyDriving: installDir: CrazyDriving: {} launch: - /CrazyDriving.exe: + "/CrazyDriving.exe": - when: - os: windows store: steam @@ -116160,7 +116510,7 @@ CrazyHousePlanes: installDir: CrazyHousePlanes: {} launch: - /CrazyHousePlanes.exe: + "/CrazyHousePlanes.exe": - when: - os: windows store: steam @@ -116173,12 +116523,12 @@ Crazzers: id: 816380 Crea: files: - /characters: + "/characters": tags: - save when: - os: windows - /worlds: + "/worlds": tags: - save when: @@ -116186,15 +116536,15 @@ Crea: installDir: Crea: {} launch: - /Crea: + "/Crea": - when: - os: linux store: steam - /Crea.app/Contents/MacOS/Crea: + "/Crea.app/Contents/MacOS/Crea": - when: - os: mac store: steam - /crea.exe: + "/crea.exe": - when: - os: windows store: steam @@ -116204,11 +116554,11 @@ CreaVures: installDir: creavures: {} launch: - /Creavures.app/Contents/MacOS/creavures: + "/Creavures.app/Contents/MacOS/creavures": - when: - os: mac store: steam - /creavures.exe: + "/creavures.exe": - when: - os: windows store: steam @@ -116220,12 +116570,12 @@ CreaVures: id: 49810 Creaks: files: - /AppData/LocalLow/Amanita Design/Creaks/save: + "/AppData/LocalLow/Amanita Design/Creaks/save": tags: - save when: - os: windows - /Library/Application Support/com.amanitadesign.creaks/save: + "/Library/Application Support/com.amanitadesign.creaks/save": tags: - save when: @@ -116235,11 +116585,11 @@ Creaks: installDir: Creaks: {} launch: - /Creaks.app: + "/Creaks.app": - when: - os: mac store: steam - /Creaks.exe: + "/Creaks.exe": - when: - os: windows store: steam @@ -116251,7 +116601,7 @@ Creaks: id: 956030 Create: files: - /Electronic Arts/Create: + "/Electronic Arts/Create": tags: - save when: @@ -116260,23 +116610,23 @@ CreateTech: installDir: CreateTech: {} launch: - /PC 1.2.03/CreateTech.exe: + "/PC 1.2.03/CreateTech.exe": - when: - os: windows store: steam steam: id: 1178700 -'Creatio Ex Nihilo II: Deus Otiosus': +"Creatio Ex Nihilo II: Deus Otiosus": steam: id: 767470 -'Creatio Ex Nihilo III: Amor Dei': +"Creatio Ex Nihilo III: Amor Dei": steam: id: 782060 -'Creatio Ex Nihilo: Aition': +"Creatio Ex Nihilo: Aition": installDir: Creatio Ex Nihilo Aition: {} launch: - /RPG_RT.exe: + "/RPG_RT.exe": - when: - os: windows store: steam @@ -116286,7 +116636,7 @@ Creation and Conquest:The Future War: installDir: Creation and Conquest The Future War: {} launch: - /Creation & Conquest - The Future War.exe: + "/Creation & Conquest - The Future War.exe": - when: - os: windows store: steam @@ -116296,7 +116646,7 @@ Creative Destruction: installDir: CreativeDestruction: {} launch: - /client.exe: + "/client.exe": - when: - os: windows store: steam @@ -116306,11 +116656,11 @@ Creativerse: installDir: Creativerse: {} launch: - /Creativerse.app: + "/Creativerse.app": - when: - os: mac store: steam - /Creativerse.exe: + "/Creativerse.exe": - when: - os: windows store: steam @@ -116324,12 +116674,12 @@ CreatorCrate: installDir: CreatorCrate: {} launch: - /CreatorCrate.exe: + "/CreatorCrate.exe": - when: - bit: 64 os: windows store: steam - /CreatorCrate.x86_64: + "/CreatorCrate.x86_64": - when: - bit: 64 os: linux @@ -116338,7 +116688,7 @@ CreatorCrate: id: 1027060 Creatura: files: - /AppData/LocalLow/Koksny/Creatura: + "/AppData/LocalLow/Koksny/Creatura": tags: - config - save @@ -116347,17 +116697,17 @@ Creatura: installDir: Creatura: {} launch: - /Creatura.exe: + "/Creatura.exe": - when: - bit: 64 os: windows store: steam - /Creatura.x86_64: + "/Creatura.x86_64": - when: - bit: 64 os: linux store: steam - /creatura.app: + "/creatura.app": - when: - os: mac store: steam @@ -116367,47 +116717,47 @@ Creature Card Idle: installDir: Creature Card Idle: {} launch: - /nw: - - arguments: ./ + "/nw": + - arguments: "./" when: - bit: 64 os: linux store: steam - /nw.exe: + "/nw.exe": - when: - bit: 64 os: windows store: steam - /open: - - arguments: '-a nwjs.app' + "/open": + - arguments: "-a nwjs.app" when: - os: mac store: steam steam: id: 1188260 -'Creature Clicker - Capture, Train, Ascend!': +"Creature Clicker - Capture, Train, Ascend!": files: - /Clicker: + "/Clicker": tags: - save when: - os: windows installDir: - 'Creature Clicker - Capture, Train, Ascend!': {} + "Creature Clicker - Capture, Train, Ascend!": {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: id: 529240 -'Creature Romances: Kokonoe Kokoro': +"Creature Romances: Kokonoe Kokoro": files: - /save: + "/save": tags: - save when: - os: windows - /.config/unity3d/Sekai Project/Creature Romances ~Kokonoe Kokoro~: + "/.config/unity3d/Sekai Project/Creature Romances ~Kokonoe Kokoro~": tags: - config when: @@ -116415,15 +116765,15 @@ Creature Card Idle: installDir: Creature Romances: {} launch: - /Kokonoe/Kokonoe.app: + "/Kokonoe/Kokonoe.app": - when: - os: mac store: steam - /Kokonoe/kokonoe.exe: + "/Kokonoe/kokonoe.exe": - when: - os: windows store: steam - /Kokonoe/kokonoe.x86: + "/Kokonoe/kokonoe.x86": - when: - os: linux store: steam @@ -116431,7 +116781,7 @@ Creature Card Idle: id: 356450 Creature in the Well: files: - /CITW/Saved: + "/CITW/Saved": tags: - save when: @@ -116441,7 +116791,7 @@ Creature in the Well: installDir: CreatureInTheWell: {} launch: - /CITW.exe: + "/CITW.exe": - when: - os: windows store: steam @@ -116449,7 +116799,7 @@ Creature in the Well: id: 852300 Creatures: files: - /Creatures/Creatures: + "/Creatures/Creatures": tags: - save when: @@ -116462,7 +116812,7 @@ Creatures: id: 1818340 Creatures 2: files: - /Creatures/Creatures 2: + "/Creatures/Creatures 2": tags: - save when: @@ -116484,11 +116834,11 @@ Creatures Docking Station: installDir: Creatures Docking Station: {} launch: - /Docking Station/C2ELanguageSelector.exe: + "/Docking Station/C2ELanguageSelector.exe": - when: - store: steam - /Docking Station/engine.exe: - - arguments: '--autokill Docking Station' + "/Docking Station/engine.exe": + - arguments: "--autokill Docking Station" when: - os: windows store: steam @@ -116498,7 +116848,7 @@ Creatures Inc.: installDir: Creatures Inc: {} launch: - /CreaturesInc.exe: + "/CreaturesInc.exe": - when: - os: windows store: steam @@ -116508,15 +116858,15 @@ Creatures Such as We: installDir: Creatures Such as We: {} launch: - /Creatures Such as We.app/Contents/MacOS/Creatures Such as We: + "/Creatures Such as We.app/Contents/MacOS/Creatures Such as We": - when: - os: mac store: steam - /CreaturesSuchAsWe: + "/CreaturesSuchAsWe": - when: - os: linux store: steam - /CreaturesSuchAsWe.exe: + "/CreaturesSuchAsWe.exe": - when: - os: windows store: steam @@ -116528,8 +116878,8 @@ Creatures Village: installDir: Creatures Village: {} launch: - /engine.exe: - - arguments: '--autokill Creatures Village' + "/engine.exe": + - arguments: "--autokill Creatures Village" when: - os: windows store: steam @@ -116538,7 +116888,7 @@ Creatures Village: Credence Filter: steam: id: 557320 -'Creed: Rise to Glory': +"Creed: Rise to Glory": installDir: Creed Rise to Glory: {} steam: @@ -116547,7 +116897,7 @@ Creekside Creep Invasion: installDir: Creekside Creep Invasion: {} launch: - /CreepInvasion.exe: + "/CreepInvasion.exe": - when: - os: windows store: steam @@ -116560,7 +116910,7 @@ Creep Rides: id: 1083240 Creeper World: files: - /CreeperWorld: + "/CreeperWorld": tags: - save when: @@ -116568,19 +116918,19 @@ Creeper World: installDir: Creeper World: {} launch: - /CreeperWorld.app: + "/CreeperWorld.app": - when: - os: mac store: steam - /CreeperWorld.exe: + "/CreeperWorld.exe": - when: - os: windows store: steam steam: id: 422910 -'Creeper World 2: Redemption': +"Creeper World 2: Redemption": files: - /CreeperWorld2: + "/CreeperWorld2": tags: - save when: @@ -116588,34 +116938,34 @@ Creeper World: installDir: Creeper World 2: {} launch: - /CreeperWorld2.app: + "/CreeperWorld2.app": - when: - os: mac store: steam - /CreeperWorld2.exe: + "/CreeperWorld2.exe": - when: - os: windows store: steam steam: id: 422920 -'Creeper World 3: Arc Eternal': +"Creeper World 3: Arc Eternal": files: - /.config/creeperworld3: + "/.config/creeperworld3": tags: - config when: - os: linux - /Documents/creeperworld3: + "/Documents/creeperworld3": tags: - save when: - os: linux - /creeperworld3: + "/creeperworld3": tags: - save when: - os: windows - /creeperworld3/keys.txt: + "/creeperworld3/keys.txt": tags: - config when: @@ -116623,15 +116973,15 @@ Creeper World: installDir: Creeper World 3: {} launch: - /CW3.app: + "/CW3.app": - when: - os: mac store: steam - /CW3.exe: + "/CW3.exe": - when: - os: windows store: steam - /CW3Launch: + "/CW3Launch": - when: - os: linux store: steam @@ -116639,12 +116989,12 @@ Creeper World: id: 280220 Creeper World 4: files: - /My Games/creeperworld4: + "/My Games/creeperworld4": tags: - save when: - os: windows - /My Games/creeperworld4/settings: + "/My Games/creeperworld4/settings": tags: - config when: @@ -116657,7 +117007,7 @@ Creeper World 4: installDir: Creeper World 4: {} launch: - /CW4.exe: + "/CW4.exe": - when: - bit: 64 os: windows @@ -116666,12 +117016,12 @@ Creeper World 4: id: 848480 Creeping Terror: files: - /data/game*: + "/data/game*": tags: - save when: - os: windows - /data/system: + "/data/system": tags: - config when: @@ -116679,7 +117029,7 @@ Creeping Terror: installDir: Creeping Terror: {} launch: - /Creeping Terror.exe: + "/Creeping Terror.exe": - when: - os: windows store: steam @@ -116689,15 +117039,15 @@ Creeps Creeps? Creeps!: installDir: CreepsCreepsCreeps: {} launch: - /CreepsCreepsCreeps.app/Contents/MacOS/CreepsCreepsCreeps: + "/CreepsCreepsCreeps.app/Contents/MacOS/CreepsCreepsCreeps": - when: - os: mac store: steam - /CreepsCreepsCreeps.exe: + "/CreepsCreepsCreeps.exe": - when: - os: windows store: steam - /CreepsCreepsCreeps.sh: + "/CreepsCreepsCreeps.sh": - when: - os: linux store: steam @@ -116705,7 +117055,7 @@ Creeps Creeps? Creeps!: id: 1152450 Creepy Castle: files: - /CREEPY_CASTLE_2: + "/CREEPY_CASTLE_2": tags: - config - save @@ -116714,7 +117064,7 @@ Creepy Castle: installDir: Creepy Castle: {} launch: - /450440.exe: + "/450440.exe": - when: - os: windows store: steam @@ -116724,7 +117074,7 @@ Creepy Races: installDir: Creepy Races: {} launch: - /CreepyRaces.exe: + "/CreepyRaces.exe": - arguments: FULLSCREEN when: - bit: 64 @@ -116736,11 +117086,11 @@ Creepy Road: installDir: Creepy Road: {} launch: - /CreepyRoad.app: + "/CreepyRoad.app": - when: - os: mac store: steam - /CreepyRoad.exe: + "/CreepyRoad.exe": - when: - os: windows store: steam @@ -116748,17 +117098,17 @@ Creepy Road: id: 735500 Creepy Tale: files: - /AppData/LocalLow/DeqafStudio/CreepyTale/playerData.deq: + "/AppData/LocalLow/DeqafStudio/CreepyTale/playerData.deq": tags: - save when: - os: windows - /unity3d/DeqafStudio/CreepyTale/playerData.deq: + "/unity3d/DeqafStudio/CreepyTale/playerData.deq": tags: - save when: - os: linux - /unity3d/DeqafStudio/CreepyTale/prefs: + "/unity3d/DeqafStudio/CreepyTale/prefs": tags: - config when: @@ -116768,15 +117118,15 @@ Creepy Tale: installDir: Creepy Tale: {} launch: - /CreepyTale.app: + "/CreepyTale.app": - when: - os: mac store: steam - /CreepyTale.exe: + "/CreepyTale.exe": - when: - os: windows store: steam - /CreepyTale.x86_64: + "/CreepyTale.x86_64": - when: - os: linux store: steam @@ -116788,17 +117138,17 @@ Creepy Tale: id: 1224020 Creepy Tale 2: files: - /AppData/LocalLow/CreepyBrothers/CreepyTale2/playerData.deq: + "/AppData/LocalLow/CreepyBrothers/CreepyTale2/playerData.deq": tags: - save when: - os: windows - /unity3d/CreepyBrothers/CreepyTale2/playerData.deq: + "/unity3d/CreepyBrothers/CreepyTale2/playerData.deq": tags: - save when: - os: linux - /unity3d/CreepyBrothers/CreepyTale2/prefs: + "/unity3d/CreepyBrothers/CreepyTale2/prefs": tags: - config when: @@ -116808,15 +117158,15 @@ Creepy Tale 2: installDir: Creepy Tale 2: {} launch: - /CreepyTale2.exe: + "/CreepyTale2.exe": - when: - os: windows store: steam - /CreepyTale2mac.app: + "/CreepyTale2mac.app": - when: - os: mac store: steam - /Default Linux desktop 64-bit.x86_64: + "/Default Linux desktop 64-bit.x86_64": - when: - os: linux store: steam @@ -116826,19 +117176,19 @@ Creepy Tale 2: - config steam: id: 1550510 -'Creepy Tale 3: Ingrid Penance': +"Creepy Tale 3: Ingrid Penance": installDir: CreepyTale3: {} launch: - /Creepy Tale 3.app: + "/Creepy Tale 3.app": - when: - os: mac store: steam - /Creepy Tale 3.x86_64: + "/Creepy Tale 3.x86_64": - when: - os: linux store: steam - /CreepyTale3.exe: + "/CreepyTale3.exe": - when: - os: windows store: steam @@ -116848,7 +117198,7 @@ Creepy Vision: installDir: CreepyVision: {} launch: - /CreepyVision.exe: + "/CreepyVision.exe": - when: - bit: 64 os: windows @@ -116859,15 +117209,15 @@ Creme de la Creme: installDir: Creme de la Creme: {} launch: - /Creme de la Creme.app/Contents/MacOS/Creme de la Creme: + "/Creme de la Creme.app/Contents/MacOS/Creme de la Creme": - when: - os: mac store: steam - /CremeDeLaCreme: + "/CremeDeLaCreme": - when: - os: linux store: steam - /CremeDeLaCreme.exe: + "/CremeDeLaCreme.exe": - when: - os: windows store: steam @@ -116877,7 +117227,7 @@ Creo God Simulator: installDir: Creo God Simulator: {} launch: - /Creo God Simulator.exe: + "/Creo God Simulator.exe": - when: - os: windows store: steam @@ -116887,15 +117237,15 @@ Crescent Hollow: installDir: Crescent Hollow: {} launch: - /Crescent Hollow.x86_64: + "/Crescent Hollow.x86_64": - when: - os: linux store: steam - /CrescentHollow.app/Contents/MacOS/build_MAC_EAB: + "/CrescentHollow.app/Contents/MacOS/build_MAC_EAB": - when: - os: mac store: steam - /CrescentHollow.exe: + "/CrescentHollow.exe": - when: - os: windows store: steam @@ -116905,31 +117255,31 @@ Crest: installDir: Crest: {} launch: - /Crest.app: + "/Crest.app": - when: - os: mac store: steam - /Crest.exe: + "/Crest.exe": - when: - os: windows store: steam - /Crest.x86: + "/Crest.x86": - when: - bit: 32 os: linux store: steam - /Crest.x86_64: + "/Crest.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 341710 -'Crew 167: The Grand Block Odyssey': +"Crew 167: The Grand Block Odyssey": installDir: Crew 167 - The Grand Block Odyssey: {} launch: - /GrandBlockOdyssey.exe: + "/GrandBlockOdyssey.exe": - when: - os: windows store: steam @@ -116939,11 +117289,11 @@ Crewsaders: installDir: Crewsaders: {} launch: - /Crewsaders.app: + "/Crewsaders.app": - when: - os: mac store: steam - /Crewsaders.exe: + "/Crewsaders.exe": - when: - os: windows store: steam @@ -116956,12 +117306,12 @@ CricVRX - VR Cricket: id: 1109550 Cricket 07: files: - /EA SPORTS(TM) Cricket 07: + "/EA SPORTS(TM) Cricket 07": tags: - save when: - os: windows - /EA SPORTS(TM) Cricket 07/.pro: + "/EA SPORTS(TM) Cricket 07/.pro": tags: - config when: @@ -116970,7 +117320,7 @@ Cricket 19: installDir: Cricket 19: {} launch: - /ashes.exe: + "/ashes.exe": - when: - bit: 64 os: windows @@ -116981,7 +117331,7 @@ Cricket 22: installDir: Cricket 22: {} launch: - /cricket22.exe: + "/cricket22.exe": - when: - bit: 64 os: windows @@ -116992,7 +117342,7 @@ Cricket Captain 2014: installDir: Cricket Captain 2014: {} launch: - /Cricket2014.exe: + "/Cricket2014.exe": - when: - os: windows store: steam @@ -117002,7 +117352,7 @@ Cricket Captain 2015: installDir: Cricket Captain 2015: {} launch: - /CricketCaptain.exe: + "/CricketCaptain.exe": - when: - os: windows store: steam @@ -117012,7 +117362,7 @@ Cricket Captain 2016: installDir: Cricket Captain 2016: {} launch: - /CricketCaptain.exe: + "/CricketCaptain.exe": - when: - os: windows store: steam @@ -117022,7 +117372,7 @@ Cricket Captain 2017: installDir: Cricket Captain 2017: {} launch: - /CricketCaptain.exe: + "/CricketCaptain.exe": - when: - os: windows store: steam @@ -117032,7 +117382,7 @@ Cricket Captain 2018: installDir: Cricket Captain 2018: {} launch: - /CricketCaptain.exe: + "/CricketCaptain.exe": - when: - os: windows store: steam @@ -117042,7 +117392,7 @@ Cricket Captain 2019: installDir: Cricket Captain 2019: {} launch: - /CricketCaptain.exe: + "/CricketCaptain.exe": - when: - os: windows store: steam @@ -117057,31 +117407,31 @@ Cricket Revolution: installDir: Cricket Revolution: {} launch: - /CricketRevolution.exe: + "/CricketRevolution.exe": - when: - store: steam steam: id: 25500 -'Crime Boss: Rockay City': +"Crime Boss: Rockay City": files: - /Saved Games/CrimeBoss/Epic/Saved/Config/WindowsNoEditor: + "/Saved Games/CrimeBoss/Epic/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /Saved Games/CrimeBoss/Epic/Saved/SaveGames: + "/Saved Games/CrimeBoss/Epic/Saved/SaveGames": tags: - save when: - os: windows Crime Cities: files: - /SETUP.SCR: + "/SETUP.SCR": tags: - config when: - os: windows - /SaveGame: + "/SaveGame": tags: - save when: @@ -117091,7 +117441,7 @@ Crime Cities: installDir: Crime Cities: {} launch: - /CRIMECITIES.EXE: + "/CRIMECITIES.EXE": - when: - os: windows store: steam @@ -117101,46 +117451,46 @@ Crime Girl: installDir: Crime Girl: {} launch: - /crimegirl.app/Contents/MacOS/crimegirl: + "/crimegirl.app/Contents/MacOS/crimegirl": - when: - os: mac store: steam - /crimegirl.x86_64: + "/crimegirl.x86_64": - when: - os: linux store: steam steam: id: 916290 -'Crime Life: Gang Wars': +"Crime Life: Gang Wars": files: - /CrimeLife: + "/CrimeLife": tags: - config when: - os: windows - /CrimeLife/Profiles: + "/CrimeLife/Profiles": tags: - save when: - os: windows -'Crime Opera: The Butterfly Effect': +"Crime Opera: The Butterfly Effect": files: - /Crime_Opera_1_-_The_Butterfly_Effect-1.0-all/game/saves/*.save: + "/Crime_Opera_1_-_The_Butterfly_Effect-1.0-all/game/saves/*.save": tags: - save when: - os: windows - /Crime_Opera_1_-_The_Butterfly_Effect-1.0-all/game/saves/persistent: + "/Crime_Opera_1_-_The_Butterfly_Effect-1.0-all/game/saves/persistent": tags: - config when: - os: windows - /RenPy/COTBE-1496841820/*.save: + "/RenPy/COTBE-1496841820/*.save": tags: - save when: - os: windows - /RenPy/COTBE-1496841820/persistent: + "/RenPy/COTBE-1496841820/persistent": tags: - config when: @@ -117150,58 +117500,58 @@ Crime Girl: Crime Scene Cleaner: steam: id: 1040200 -'Crime Scene: Reconstruction of Crime': +"Crime Scene: Reconstruction of Crime": steam: id: 850030 -'Crime Secrets: Crimson Lily': +"Crime Secrets: Crimson Lily": installDir: Crime Secrets: {} launch: - /CrimeSecrets.exe: + "/CrimeSecrets.exe": - when: - os: windows store: steam - /CrimeSecrets_amd64: + "/CrimeSecrets_amd64": - when: - bit: 64 os: linux store: steam - /CrimeSecrets_i386: + "/CrimeSecrets_i386": - when: - bit: 32 os: linux store: steam - /mac_steam.app/Contents/MacOS/mac_steam: + "/mac_steam.app/Contents/MacOS/mac_steam": - when: - os: mac store: steam steam: id: 465170 -'Crime Solitaire 2: The Smoking Gun': +"Crime Solitaire 2: The Smoking Gun": installDir: Crime Solitaire 2: {} launch: - /cs2.exe: + "/cs2.exe": - when: - os: windows store: steam steam: id: 672720 -'Crime Stories: Days of Vengeance': +"Crime Stories: Days of Vengeance": installDir: Crime Stories Days of Vengeance: {} launch: - /CrimeStories.exe: + "/CrimeStories.exe": - when: - os: windows store: steam steam: id: 896110 -'CrimeCraft: GangWars': +"CrimeCraft: GangWars": installDir: CrimeCraft: {} launch: - /SteamLauncher.exe: + "/SteamLauncher.exe": - when: - store: steam steam: @@ -117215,7 +117565,7 @@ Criminal Bundle: installDir: Criminal Bundle: {} launch: - /Criminal.exe: + "/Criminal.exe": - when: - bit: 64 os: windows @@ -117228,15 +117578,15 @@ Criminal Expert: installDir: Criminal Expert: {} launch: - /CriminalExpert.exe: + "/CriminalExpert.exe": - when: - os: windows store: steam steam: id: 2194660 -'Criminal Girls: Invite Only': +"Criminal Girls: Invite Only": files: - /SaveDataFolder/*.dat: + "/SaveDataFolder/*.dat": tags: - save when: @@ -117244,7 +117594,7 @@ Criminal Expert: installDir: Criminal Girls Invite Only: {} launch: - /steam_criminal.exe: + "/steam_criminal.exe": - when: - os: windows store: steam @@ -117254,7 +117604,7 @@ Criminal Pursuit Force: installDir: Criminal Pursuit Force: {} launch: - /Criminal Pursuit Force.exe: + "/Criminal Pursuit Force.exe": - when: - os: windows store: steam @@ -117264,7 +117614,7 @@ Crimson Colosseum: installDir: Crimson Colosseum: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: @@ -117280,12 +117630,12 @@ Crimson Earth 2: id: 631010 Crimson Gray: files: - /renpy/Crimson Gray-1479003098/*.save: + "/renpy/Crimson Gray-1479003098/*.save": tags: - save when: - os: windows - /renpy/Crimson Gray-1479003098/persistent: + "/renpy/Crimson Gray-1479003098/persistent": tags: - config when: @@ -117293,33 +117643,33 @@ Crimson Gray: installDir: Crimson Gray: {} launch: - /Crimson Gray.app: + "/Crimson Gray.app": - when: - os: mac store: steam - /Crimson Gray.exe: + "/Crimson Gray.exe": - when: - os: windows store: steam - /Crimson Gray.sh: + "/Crimson Gray.sh": - when: - os: linux store: steam steam: id: 655770 -'Crimson Gray: Dusk and Dawn': +"Crimson Gray: Dusk and Dawn": installDir: Crimson Gray Dusk and Dawn: {} launch: - /Crimson Gray 1.5.app: + "/Crimson Gray 1.5.app": - when: - os: mac store: steam - /Crimson Gray 1.5.exe: + "/Crimson Gray 1.5.exe": - when: - os: windows store: steam - /Crimson Gray 1.5.sh: + "/Crimson Gray 1.5.sh": - when: - os: linux store: steam @@ -117332,7 +117682,7 @@ Crimson Hotel: installDir: Crimson Hotel: {} launch: - /Crimson Hotel.exe: + "/Crimson Hotel.exe": - when: - os: windows store: steam @@ -117342,7 +117692,7 @@ Crimson Imprint Plus -Nonexistent Christmas-: installDir: Crimson Imprint plus -Nonexistent Christmas-: {} launch: - /ciplus.exe: + "/ciplus.exe": - when: - os: windows store: steam @@ -117352,7 +117702,7 @@ Crimson Keep: installDir: Crimson Keep: {} launch: - /CrimsonKeep.exe: + "/CrimsonKeep.exe": - when: - bit: 64 os: windows @@ -117363,7 +117713,7 @@ Crimson Light: installDir: Crimson Light: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -117373,7 +117723,7 @@ Crimson Memories: installDir: Crimson Memories: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -117388,7 +117738,7 @@ Crimson Nights: installDir: Crimson Nights: {} launch: - /CrimsonNights.exe: + "/CrimsonNights.exe": - when: - os: windows store: steam @@ -117398,11 +117748,11 @@ Crimson Room Decade: installDir: Crimson Room: {} launch: - /CrimsonRoomDecade.app: + "/CrimsonRoomDecade.app": - when: - os: mac store: steam - /CrimsonRoomDecade.exe: + "/CrimsonRoomDecade.exe": - when: - os: windows store: steam @@ -117415,7 +117765,7 @@ Crimson Shift: id: 837330 Crimson Skies: files: - /SavedGames: + "/SavedGames": tags: - save when: @@ -117427,7 +117777,7 @@ Crimson Snow: - config when: - os: windows - /CrimsonSnow/Saved/SaveGames: + "/CrimsonSnow/Saved/SaveGames": tags: - save when: @@ -117435,7 +117785,7 @@ Crimson Snow: installDir: Crimson Snow: {} launch: - /CrimsonSnow.exe: + "/CrimsonSnow.exe": - when: - bit: 64 os: windows @@ -117446,7 +117796,7 @@ Crimson Souls: installDir: Crimson Souls: {} launch: - /Crimson Souls.exe: + "/Crimson Souls.exe": - when: - os: windows store: steam @@ -117455,29 +117805,29 @@ Crimson Souls: Crimson Survival: steam: id: 806680 -'Crimson Sword Saga: Tactics Part I': +"Crimson Sword Saga: Tactics Part I": installDir: Clarent Saga Tactics: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam steam: id: 709670 -'Crimson Sword Saga: The Peloran Wars': +"Crimson Sword Saga: The Peloran Wars": installDir: Crimson Sword Saga: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam steam: id: 497560 -'Crimson Tactics: The Rise of The White Banner': +"Crimson Tactics: The Rise of The White Banner": files: - /AppData/LocalLow/Black March Studios/Crimson Tactics White Banner: + "/AppData/LocalLow/Black March Studios/Crimson Tactics White Banner": tags: - config - save @@ -117486,18 +117836,18 @@ Crimson Survival: installDir: Crimson Tactics White Banner: {} launch: - /Crimson Tactics White Banner.exe: + "/Crimson Tactics White Banner.exe": - when: - bit: 64 os: windows store: steam steam: id: 1480810 -'Crimson Tide: Operation Online': +"Crimson Tide: Operation Online": installDir: Crimson Tide Operation Online: {} launch: - /Crimson Tide Operation Online.exe: + "/Crimson Tide Operation Online.exe": - when: - store: steam steam: @@ -117506,15 +117856,15 @@ Crimson Trigger: installDir: Crimson Trigger: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam - /game.dmg: + "/game.dmg": - when: - os: mac store: steam - /game.x86_94: + "/game.x86_94": - when: - os: linux store: steam @@ -117522,17 +117872,17 @@ Crimson Trigger: id: 566750 Crimsonland: files: - /Library/Application Support/10tons/Crimsonland: + "/Library/Application Support/10tons/Crimsonland": tags: - save when: - os: mac - /10tons/Crimsonland/profiles: + "/10tons/Crimsonland/profiles": tags: - save when: - os: windows - /10tons/Crimsonland: + "/10tons/Crimsonland": tags: - save when: @@ -117542,15 +117892,15 @@ Crimsonland: installDir: Crimsonland: {} launch: - /Crimsonland.app: + "/Crimsonland.app": - when: - os: mac store: steam - /Crimsonland.exe: + "/Crimsonland.exe": - when: - os: windows store: steam - /crimsonland: + "/crimsonland": - when: - os: linux store: steam @@ -117558,24 +117908,24 @@ Crimsonland: id: 262830 Crimzon Clover: files: - /data/config.dat: + "/data/config.dat": tags: - config when: - os: windows - /data/playData.dat: + "/data/playData.dat": tags: - save when: - os: windows Crimzon Clover World EXplosion: files: - /data/*.dat: + "/data/*.dat": tags: - save when: - os: windows - /data/config.dat: + "/data/config.dat": tags: - config when: @@ -117583,39 +117933,39 @@ Crimzon Clover World EXplosion: installDir: Crimzon Clover World EXplosion: {} launch: - /CrimzonCloverWEX.exe: + "/CrimzonCloverWEX.exe": - when: - store: steam steam: id: 1718160 -'Crimzon Clover: World Ignition': +"Crimzon Clover: World Ignition": files: - /data/arcadescore000X.dat: + "/data/arcadescore000X.dat": tags: - save when: - os: windows - /data/bkeep0000.dat: + "/data/bkeep0000.dat": tags: - save when: - os: windows - /data/config0000.dat: + "/data/config0000.dat": tags: - config when: - os: windows - /data/keyboardSetting.dat: + "/data/keyboardSetting.dat": tags: - config when: - os: windows - /data/lastEntryLocalName.dat: + "/data/lastEntryLocalName.dat": tags: - save when: - os: windows - /data/novicescore000X.dat: + "/data/novicescore000X.dat": tags: - save when: @@ -117625,23 +117975,23 @@ Crimzon Clover World EXplosion: installDir: Crimzon Clover: {} launch: - /CrimzonClover_WI.exe: + "/CrimzonClover_WI.exe": - when: - store: steam steam: id: 285440 Cris Tales: files: - /AppData/LocalLow/Dreams Uncorpored LLC/Cristales/CristalesSaveData.csd: + "/AppData/LocalLow/Dreams Uncorpored LLC/Cristales/CristalesSaveData.csd": tags: - save when: - os: windows - /AppData/LocalLow/Dreams Uncorpored LLC/Cristales/CristalesSaveDataepic.csd: + "/AppData/LocalLow/Dreams Uncorpored LLC/Cristales/CristalesSaveDataepic.csd": tags: - save when: - - store: epic + - os: windows gog: id: 1623867313 id: @@ -117653,8 +118003,8 @@ Cris Tales: installDir: Cris Tales: {} launch: - /Cristales.exe: - - arguments: '-screen-fullscreen 1 -screen-height 1080 -screen-width 1920' + "/Cristales.exe": + - arguments: "-screen-fullscreen 1 -screen-height 1080 -screen-width 1920" when: - os: windows store: steam @@ -117664,14 +118014,14 @@ Cris Tales: - config steam: id: 1079830 -'Crisis Core: Final Fantasy VII Reunion': +"Crisis Core: Final Fantasy VII Reunion": files: - /My Games/CRISIS CORE FINAL FANTASY VII REUNION/Steam/: + "/My Games/CRISIS CORE FINAL FANTASY VII REUNION/Steam/": tags: - save when: - os: windows - /CCFF7R/Saved/Config/WindowsNoEditor: + "/CCFF7R/Saved/Config/WindowsNoEditor": tags: - config when: @@ -117679,7 +118029,7 @@ Cris Tales: installDir: CCFF7R: {} launch: - /CCFF7R.exe: + "/CCFF7R.exe": - when: - os: windows store: steam @@ -117699,16 +118049,19 @@ Crisis in the Kremlin (2017): installDir: Crisis in the Kremlin: {} launch: - /Crisis.app: + "/Crisis.app": - when: - os: mac store: steam - /Crisis.x86_64: + "/Crisis.x86_64": - when: - os: linux store: steam - /CrisisintheKremlin.exe: + "/CrisisintheKremlin.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam @@ -117718,11 +118071,11 @@ Crisis of the Middle Ages: installDir: Crisis of the Middle Ages: {} launch: - /Game.app: + "/Game.app": - when: - os: mac store: steam - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -117737,7 +118090,7 @@ CrisisActionVR: installDir: CrisisActionVR: {} launch: - /Client.exe: + "/Client.exe": - when: - store: steam steam: @@ -117749,7 +118102,7 @@ Criss Cross: installDir: Criss Cross: {} launch: - /Croiss_Cross.exe: + "/Croiss_Cross.exe": - when: - os: windows store: steam @@ -117759,7 +118112,7 @@ Critadel: installDir: Critadel: {} launch: - /Critadel.exe: + "/Critadel.exe": - when: - store: steam steam: @@ -117768,15 +118121,15 @@ Critical Annihilation: installDir: Critical Annihilation: {} launch: - /Critical Annihilation.app/Contents/MacOS/Critical Annihilation: + "/Critical Annihilation.app/Contents/MacOS/Critical Annihilation": - when: - os: mac store: steam - /Critical Annihilation.exe: + "/Critical Annihilation.exe": - when: - os: windows store: steam - /Critical Annihilation.x86: + "/Critical Annihilation.x86": - when: - os: linux store: steam @@ -117786,7 +118139,7 @@ Critical Gravity: installDir: Critical Gravity: {} launch: - /Critical Gravity.exe: + "/Critical Gravity.exe": - when: - bit: 64 os: windows @@ -117797,11 +118150,11 @@ Critical Mass: installDir: Critical Mass: {} launch: - /CriticalMass.exe: + "/CriticalMass.exe": - when: - os: windows store: steam - /CriticalMassSteam.app: + "/CriticalMassSteam.app": - when: - os: mac store: steam @@ -117815,11 +118168,11 @@ Critical Mess: installDir: Critical Mess: {} launch: - /Critical Mess.app: + "/Critical Mess.app": - when: - os: mac store: steam - /Critical Mess.exe: + "/Critical Mess.exe": - when: - os: windows store: steam @@ -117830,12 +118183,12 @@ Critter Crops: id: 1641120 Critter Crunch: files: - /userdata//61730/local/config.txt: + "/userdata//61730/local/config.txt": tags: - config when: - store: steam - /userdata//61730/remote/sav: + "/userdata//61730/remote/sav": tags: - save when: @@ -117843,11 +118196,11 @@ Critter Crunch: installDir: Critter Crunch: {} launch: - /CritterCrunch.app/Contents/MacOS/CritterCrunch: + "/CritterCrunch.app/Contents/MacOS/CritterCrunch": - when: - os: mac store: steam - /CritterCrunch.exe: + "/CritterCrunch.exe": - when: - os: windows store: steam @@ -117857,18 +118210,18 @@ Critter Kart: installDir: Critter Kart: {} launch: - /Critter Kart.app/Contents/MacOS/Critter Kart: - - arguments: '-vrmode none' + "/Critter Kart.app/Contents/MacOS/Critter Kart": + - arguments: "-vrmode none" when: - os: mac store: steam - /CritterKart.exe: - - arguments: '-vrmode none' + "/CritterKart.exe": + - arguments: "-vrmode none" when: - os: windows store: steam - /CritterKart.x86_64: - - arguments: '-vrmode none' + "/CritterKart.x86_64": + - arguments: "-vrmode none" when: - os: linux store: steam @@ -117878,7 +118231,7 @@ Critters - Cute Cubs in a Cruel World: installDir: Critters - cute cubs in a cruel world: {} launch: - /Critters.exe: + "/Critters.exe": - when: - os: windows store: steam @@ -117888,16 +118241,16 @@ Critters for Sale: installDir: Critters for Sale: {} launch: - /CrittersForSale.exe: + "/CrittersForSale.exe": - when: - os: windows store: steam - /CrittersForSale.x86: + "/CrittersForSale.x86": - when: - bit: 32 os: linux store: steam - /CrittersForSale.x86_64: + "/CrittersForSale.x86_64": - when: - bit: 64 os: linux @@ -117908,7 +118261,7 @@ Crix: installDir: Crix: {} launch: - /Crix.exe: + "/Crix.exe": - when: - os: windows store: steam @@ -117918,7 +118271,7 @@ Cro Magnon: installDir: Cro Magnon: {} launch: - /Cro Magnon.exe: + "/Cro Magnon.exe": - when: - os: windows store: steam @@ -117928,33 +118281,33 @@ CroNix: installDir: CroNix: {} launch: - /Binaries/Win32/CroNixGame-Win32-Shipping.com: - - arguments: '-seekfreeloading -CXHost=193.219.96.107 -CXChattingHost=193.219.96.107' + "/Binaries/Win32/CroNixGame-Win32-Shipping.com": + - arguments: "-seekfreeloading -CXHost=193.219.96.107 -CXChattingHost=193.219.96.107" when: - bit: 32 os: windows store: steam - /Binaries/Win64/CroNixGame-Win64-Shipping.com: - - arguments: '-seekfreeloading -CXHost=193.219.96.107 -CXChattingHost=193.219.96.107' + "/Binaries/Win64/CroNixGame-Win64-Shipping.com": + - arguments: "-seekfreeloading -CXHost=193.219.96.107 -CXChattingHost=193.219.96.107" when: - bit: 64 os: windows store: steam steam: id: 343630 -Croc's World Construction Kit: +"Croc's World Construction Kit": installDir: - Croc's World Construction Kit: {} + "Croc's World Construction Kit": {} launch: - /Crocs World Construction Kit.exe: + "/Crocs World Construction Kit.exe": - when: - os: windows store: steam steam: id: 831910 -'Croc: Legend of the Gobbos': +"Croc: Legend of the Gobbos": files: - /key.txt: + "/key.txt": tags: - config when: @@ -117970,7 +118323,7 @@ CrocoMars: installDir: CrocoMars: {} launch: - /CrocoMars.exe: + "/CrocoMars.exe": - when: - os: windows store: steam @@ -117978,34 +118331,34 @@ CrocoMars: id: 798280 Croixleur: files: - /Croixleur.ini: + "/Croixleur.ini": tags: - config when: - os: windows - /save.dat: + "/save.dat": tags: - save when: - os: windows - /setup.dat: + "/setup.dat": tags: - config when: - os: windows Croixleur Sigma: files: - /CroixleurSE.ini: + "/CroixleurSE.ini": tags: - config when: - os: windows - /Save.dat: + "/Save.dat": tags: - save when: - os: windows - /Setup.dat: + "/Setup.dat": tags: - config when: @@ -118016,22 +118369,22 @@ Croixleur Sigma: id: 250640 Croixleur Sigma - Deluxe Edition: files: - /CroixleurConfig.bin: + "/CroixleurConfig.bin": tags: - config when: - os: windows - /CroixleurPad.bin: + "/CroixleurPad.bin": tags: - config when: - os: windows - /CroixleurSave.bin: + "/CroixleurSave.bin": tags: - save when: - os: windows - /Setting.ini: + "/Setting.ini": tags: - config when: @@ -118039,25 +118392,25 @@ Croixleur Sigma - Deluxe Edition: installDir: Croixleur Sigma: {} launch: - /CroixleurDX.exe: + "/CroixleurDX.exe": - when: - os: windows store: steam - - arguments: '-ResetSettings' + - arguments: "-ResetSettings" when: - os: windows store: steam steam: id: 1052440 -'Crome: Before Purgatory': +"Crome: Before Purgatory": installDir: Crome: {} launch: - /Crome.app/Contents/MacOS/Crome: + "/Crome.app/Contents/MacOS/Crome": - when: - os: mac store: steam - /Crome.exe: + "/Crome.exe": - when: - os: windows store: steam @@ -118067,7 +118420,7 @@ Croneworld RPG - Chapter 1: installDir: CRONEWORLD-CH1: {} launch: - /CRONEWORLD-CH1.exe: + "/CRONEWORLD-CH1.exe": - when: - os: windows store: steam @@ -118077,16 +118430,16 @@ Crongdor the Barbarian: installDir: crongdor: {} launch: - /Crongdor.app/Contents/MacOS/crongdor_osx64: + "/Crongdor.app/Contents/MacOS/crongdor_osx64": - when: - os: mac store: steam - workingDir: /Crongdor.app/Contents/Resources - /crongdor.exe: + workingDir: "/Crongdor.app/Contents/Resources" + "/crongdor.exe": - when: - os: windows store: steam - /crongdor64: + "/crongdor64": - when: - bit: 64 os: linux @@ -118100,17 +118453,17 @@ Crooked Waters: id: 815280 Crookz - The Big Heist: files: - /Kalypso Media/Crookz/Config: + "/Kalypso Media/Crookz/Config": tags: - config when: - os: linux - /My Games/Kalypso Media/Crookz/Config: + "/My Games/Kalypso Media/Crookz/Config": tags: - config when: - os: windows - /My Games/Kalypso Media/Crookz/saves: + "/My Games/Kalypso Media/Crookz/saves": tags: - save when: @@ -118120,16 +118473,16 @@ Crookz - The Big Heist: installDir: Crookz: {} launch: - /Binaries/Linux/Launch: + "/Binaries/Linux/Launch": - when: - os: linux store: steam - workingDir: /Binaries/Linux - /Binaries/Win32/Crookz.exe: + workingDir: "/Binaries/Linux" + "/Binaries/Win32/Crookz.exe": - when: - os: windows store: steam - /Crookz.app: + "/Crookz.app": - when: - os: mac store: steam @@ -118142,15 +118495,15 @@ CropDuster Supreme: installDir: CropDuster Supreme: {} launch: - /CropDusterSupreme.app: + "/CropDusterSupreme.app": - when: - os: mac store: steam - /CropDusterSupreme.exe: + "/CropDusterSupreme.exe": - when: - os: windows store: steam - /CropDusterSupreme.x86: + "/CropDusterSupreme.x86": - when: - os: linux store: steam @@ -118160,7 +118513,7 @@ Croquet Pro: installDir: Croquet Pro: {} launch: - /CroquetPro.exe: + "/CroquetPro.exe": - when: - store: steam steam: @@ -118169,7 +118522,7 @@ Croquet Pro 2: installDir: Croquet Pro 2: {} launch: - /CroquetPro2.exe: + "/CroquetPro2.exe": - when: - store: steam steam: @@ -118183,7 +118536,7 @@ Cross Channel: installDir: CROSS†CHANNEL Steam Edition: {} launch: - /AdvHD.exe: + "/AdvHD.exe": - when: - os: windows store: steam @@ -118193,8 +118546,11 @@ Cross Country Express - Oddfellows Mini: installDir: Cross Country Express - An Oddfellows Mini: {} launch: - /nw.exe: + "/nw.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam @@ -118214,7 +118570,7 @@ Cross Pixels: installDir: CrossPixels: {} launch: - /CrossPixels.exe: + "/CrossPixels.exe": - when: - os: windows store: steam @@ -118224,29 +118580,29 @@ Cross Princess: installDir: Cross Princess: {} launch: - /CrossPrincess.exe: + "/CrossPrincess.exe": - when: - store: steam steam: id: 1301620 Cross Racing Championship 2005: files: - /save/bestlaps: + "/save/bestlaps": tags: - save when: - os: windows - /save/career: + "/save/career": tags: - save when: - os: windows - /save/controls: + "/save/controls": tags: - config when: - os: windows - /save/game: + "/save/game": tags: - config when: @@ -118254,7 +118610,7 @@ Cross Racing Championship 2005: installDir: Cross Racing Championship: {} launch: - /crc.exe: + "/crc.exe": - when: - store: steam steam: @@ -118263,15 +118619,15 @@ Cross Set: installDir: Cross Set: {} launch: - /CrossSet.app/contents/MacOS/CrossSet: + "/CrossSet.app/contents/MacOS/CrossSet": - when: - os: mac store: steam - /CrossSet.exe: + "/CrossSet.exe": - when: - os: windows store: steam - /CrossSet.x86: + "/CrossSet.x86": - when: - os: linux store: steam @@ -118281,20 +118637,20 @@ Cross Set Infinity: installDir: CrossSetInfinity: {} launch: - /CrossSetInf.app/Contents/MacOS/CrossSetInf: + "/CrossSetInf.app/Contents/MacOS/CrossSetInf": - when: - os: mac store: steam - /CrossSetInf.exe: + "/CrossSetInf.exe": - when: - os: windows store: steam - /CrossSetInf.x86: + "/CrossSetInf.x86": - when: - bit: 32 os: linux store: steam - /CrossSetInf.x86_64: + "/CrossSetInf.x86_64": - when: - bit: 64 os: linux @@ -118308,11 +118664,11 @@ Cross and Crush: installDir: Cross And Crush: {} launch: - /Cross and Crush.app/Contents/MacOS/Cross and Crush: + "/Cross and Crush.app/Contents/MacOS/Cross and Crush": - when: - os: mac store: steam - /Cross and Crush.exe: + "/Cross and Crush.exe": - when: - os: windows store: steam @@ -118322,15 +118678,15 @@ Cross of Auria: installDir: Cross of Auria: {} launch: - /Game: + "/Game": - when: - os: linux store: steam - /Game.exe: + "/Game.exe": - when: - os: windows store: steam - /x. Cross of Auria/Game.app: + "/x. Cross of Auria/Game.app": - when: - os: mac store: steam @@ -118338,18 +118694,18 @@ Cross of Auria: id: 764180 Cross of the Dutchman: files: - /.config/unity3d/Triangle Studios/Cross of the Dutchman: + "/.config/unity3d/Triangle Studios/Cross of the Dutchman": tags: - config - save when: - os: linux - /AppData/LocalLow/Triangle Studios/Cross of the Dutchman: + "/AppData/LocalLow/Triangle Studios/Cross of the Dutchman": tags: - save when: - os: windows - /AppData/LocalLow/Triangle Studios/Cross of the Dutchman/Settings.SET: + "/AppData/LocalLow/Triangle Studios/Cross of the Dutchman/Settings.SET": tags: - config when: @@ -118357,15 +118713,15 @@ Cross of the Dutchman: installDir: crossofthedutchman: {} launch: - /CrossOfTheDutchman.app: + "/CrossOfTheDutchman.app": - when: - os: mac store: steam - /CrossOfTheDutchman.exe: + "/CrossOfTheDutchman.exe": - when: - os: windows store: steam - /CrossOfTheDutchman.x86_64: + "/CrossOfTheDutchman.x86_64": - when: - os: linux store: steam @@ -118375,11 +118731,11 @@ Cross-Stitch Puzzle: installDir: Cross Stitching Puzzle: {} launch: - /Cross-Stitch Puzzle.app/Contents/MacOS/Cross-Stitch Puzzle: + "/Cross-Stitch Puzzle.app/Contents/MacOS/Cross-Stitch Puzzle": - when: - os: mac store: steam - /Cross-Stitch Puzzle.exe: + "/Cross-Stitch Puzzle.exe": - when: - os: windows store: steam @@ -118387,19 +118743,19 @@ Cross-Stitch Puzzle: id: 808950 CrossCells: files: - /saves/options.save: + "/saves/options.save": tags: - config when: - os: windows - os: linux - /saves/slot*.save: + "/saves/slot*.save": tags: - save when: - os: windows - os: linux - /unity3d/Matthew Brown/CrossCells/pref: + "/unity3d/Matthew Brown/CrossCells/pref": tags: - config when: @@ -118407,20 +118763,20 @@ CrossCells: installDir: CrossCells: {} launch: - /CrossCells.app: + "/CrossCells.app": - when: - os: mac store: steam - /CrossCells.exe: + "/CrossCells.exe": - when: - os: windows store: steam - /CrossCells.x86: + "/CrossCells.x86": - when: - bit: 32 os: linux store: steam - /CrossCells.x86_64: + "/CrossCells.x86_64": - when: - bit: 64 os: linux @@ -118433,26 +118789,26 @@ CrossCells: id: 632000 CrossCode: files: - /Library/Application Support/CrossCode/Default/Local Storage: + "/Library/Application Support/CrossCode/Default/Local Storage": tags: - config - save when: - os: mac - /CrossCode/cc.save: + "/CrossCode/cc.save": tags: - config - save when: - os: windows - /Packages/DECK13.CrossCodePC_rn1dn9jh54zft/LocalCache/Local/CrossCode/cc.save: + "/Packages/DECK13.CrossCodePC_rn1dn9jh54zft/LocalCache/Local/CrossCode/cc.save": tags: - config - save when: - os: windows store: microsoft - /CrossCode/Default/cc.save: + "/CrossCode/Default/cc.save": tags: - config - save @@ -118462,54 +118818,54 @@ CrossCode: id: 1252295864 id: gogExtra: - - 1927482349 - - 1473356880 - - 2088603797 - - 2000218216 - 1294860647 + - 1473356880 + - 1927482349 + - 2000218216 + - 2088603797 steamExtra: + - 916190 - 960310 - 1517030 - 1517040 - - 916190 installDir: CrossCode: {} launch: - /CrossCode: - - arguments: '--in-process-gpu --startedFromSteam' + "/CrossCode": + - arguments: "--in-process-gpu --startedFromSteam" when: - os: linux store: steam - /CrossCode.app: - - arguments: '--startedFromSteam' + "/CrossCode.app": + - arguments: "--startedFromSteam" when: - os: mac store: steam - /CrossCode.exe: - - arguments: '--startedFromSteam' + "/CrossCode.exe": + - arguments: "--startedFromSteam" when: - os: windows store: steam steam: id: 368340 -'CrossSide: The Prison': +"CrossSide: The Prison": steam: id: 790140 CrossTrix: installDir: CrossTrix: {} launch: - /CrossTrix.exe: + "/CrossTrix.exe": - when: - os: windows store: steam steam: id: 1003690 -'CrossWorlds: Escape': +"CrossWorlds: Escape": installDir: CrossWorlds Escape: {} launch: - /CrossWorldsEscape/Binaries/Win64/CrossWorldsEscape-Win64-Shipping.exe: + "/CrossWorldsEscape/Binaries/Win64/CrossWorldsEscape-Win64-Shipping.exe": - when: - store: steam steam: @@ -118518,11 +118874,11 @@ Crossbow Warrior - The Legend of William Tell: installDir: Crossbow Warrior - The Legend of William Tell: {} launch: - /Crossbow_Warrior.exe: + "/Crossbow_Warrior.exe": - when: - os: windows store: steam - /Crossbow_Warrior_OSX.app/Contents/MacOS/Crossbow_Warrior_OSX: + "/Crossbow_Warrior_OSX.app/Contents/MacOS/Crossbow_Warrior_OSX": - when: - os: mac store: steam @@ -118532,14 +118888,14 @@ Crossbow Warrior - The Legend of William Tell: - config steam: id: 412010 -'Crossbow: Bloodnight': +"Crossbow: Bloodnight": files: - /AppData/LocalLow/Hyperstrange/CROSSBOW_ Bloodnight/input.cfg: + "/AppData/LocalLow/Hyperstrange/CROSSBOW_ Bloodnight/input.cfg": tags: - config when: - os: windows - /AppData/LocalLow/Hyperstrange/CROSSBOW_ Bloodnight/settings.cfg: + "/AppData/LocalLow/Hyperstrange/CROSSBOW_ Bloodnight/settings.cfg": tags: - config when: @@ -118547,11 +118903,11 @@ Crossbow Warrior - The Legend of William Tell: installDir: CROSSBOW Bloodnight: {} launch: - /CROSSBOW Bloodnight.exe: + "/CROSSBOW Bloodnight.exe": - when: - store: steam registry: - 'HKEY_CURRENT_USER/Software/Hyperstrange/CROSSBOW: Bloodnight': + "HKEY_CURRENT_USER/Software/Hyperstrange/CROSSBOW: Bloodnight": tags: - config steam: @@ -118561,20 +118917,20 @@ Crosser: Crosser: {} steam: id: 1124510 -'Crossfire: Dungeons': +"Crossfire: Dungeons": installDir: Crossfire Dungeons: {} launch: - /jre8/bin/javaw.exe: - - arguments: '-Xms512m -Xmx512m -jar CrossfireDungeon.jar' + "/jre8/bin/javaw.exe": + - arguments: "-Xms512m -Xmx512m -jar CrossfireDungeon.jar" when: - os: windows store: steam steam: id: 369370 -'Crossfire: Legion': +"Crossfire: Legion": files: - /Save: + "/Save": tags: - save when: @@ -118588,27 +118944,28 @@ Crossing Man: id: 868200 Crossing Souls: files: - /AppData/LocalLow/Fourattic/Crossing Souls//GameSave.sav: + "/AppData/LocalLow/Fourattic/Crossing Souls//GameSave.sav": tags: - save when: - - store: steam - /AppData/LocalLow/Fourattic/Crossing Souls/Config.cfg: + - os: windows + store: steam + "/AppData/LocalLow/Fourattic/Crossing Souls/Config.cfg": tags: - config when: - os: windows - /AppData/LocalLow/Fourattic/Crossing Souls/GameSave.sav: + "/AppData/LocalLow/Fourattic/Crossing Souls/GameSave.sav": tags: - save when: - os: windows - /unity3d/Fourattic/Crossing Souls//GameSave.sav: + "/unity3d/Fourattic/Crossing Souls//GameSave.sav": tags: - save when: - os: linux - /unity3d/Fourattic/Crossing Souls/Config.cfg: + "/unity3d/Fourattic/Crossing Souls/Config.cfg": tags: - config when: @@ -118618,15 +118975,15 @@ Crossing Souls: installDir: crossingsouls: {} launch: - /crossingsouls.app: + "/crossingsouls.app": - when: - os: mac store: steam - /crossingsouls.exe: + "/crossingsouls.exe": - when: - os: windows store: steam - /crossingsouls.x86: + "/crossingsouls.x86": - when: - os: linux store: steam @@ -118636,8 +118993,8 @@ Crossout: installDir: Crossout: {} launch: - /launcher.exe: - - arguments: '-steam' + "/launcher.exe": + - arguments: "-steam" when: - os: windows store: steam @@ -118647,33 +119004,33 @@ Crossroad: installDir: Crossroad: {} launch: - /CrossRoad_Lumi.app: + "/CrossRoad_Lumi.app": - when: - os: mac store: steam - /CrossRoad_Lumi.exe: + "/CrossRoad_Lumi.exe": - when: - os: windows store: steam - /CrossRoad_Lumi.sh: + "/CrossRoad_Lumi.sh": - when: - os: linux store: steam steam: id: 778150 -'Crossroad Mysteries: The Broken Deal': +"Crossroad Mysteries: The Broken Deal": installDir: Crossroad Mysteries The Broken Deal: {} launch: - /Game.app: + "/Game.app": - when: - os: mac store: steam - /Game.exe: + "/Game.exe": - when: - os: windows store: steam - /Game.x86: + "/Game.x86": - when: - os: linux store: steam @@ -118683,19 +119040,19 @@ Crossroads Extreme: installDir: Crossroads Extreme: {} launch: - /Crossroads Extreme.exe: + "/Crossroads Extreme.exe": - when: - store: steam steam: id: 1051330 Crossroads Inn: files: - /Save: + "/Save": tags: - save when: - os: windows - /settings.txt: + "/settings.txt": tags: - config when: @@ -118705,29 +119062,29 @@ Crossroads Inn: installDir: Crossroads Inn: {} launch: - /Crossroads Inn: + "/Crossroads Inn": - when: - os: linux store: steam - /Crossroads Inn.app: + "/Crossroads Inn.app": - when: - os: mac store: steam - /Crossroads Inn.exe: + "/Crossroads Inn.exe": - when: - os: windows store: steam steam: id: 867290 -'Crossroads: Roguelike RPG Dungeon Crawler': +"Crossroads: Roguelike RPG Dungeon Crawler": installDir: Crossroads Roguelike RPG Dungeon Crawler: {} launch: - /Crossroads.app/Contents/MacOS/Crossroads: + "/Crossroads.app/Contents/MacOS/Crossroads": - when: - os: mac store: steam - /Crossroads.exe: + "/Crossroads.exe": - when: - os: windows store: steam @@ -118737,11 +119094,11 @@ Crouching Pony Hidden Dragon: installDir: Crouching Pony Hidden Dragon: {} launch: - /CPHD.app: + "/CPHD.app": - when: - os: mac store: steam - /CPHD.exe: + "/CPHD.exe": - when: - os: windows store: steam @@ -118754,7 +119111,7 @@ Crowd Control: installDir: Crowd Control: {} launch: - /CrowdControl.exe: + "/CrowdControl.exe": - when: - os: windows store: steam @@ -118764,15 +119121,15 @@ Crowd Simulator: installDir: Crowd Simulator: {} launch: - /CrowdSimulator.app: + "/CrowdSimulator.app": - when: - os: mac store: steam - /game.exe: + "/game.exe": - when: - os: windows store: steam - /game.x86_64: + "/game.x86_64": - when: - bit: 64 os: linux @@ -118783,20 +119140,20 @@ Crowd Smashers: installDir: Crowd Smashers: {} launch: - /Crowd Smashers.exe: + "/Crowd Smashers.exe": - when: - os: windows store: steam steam: id: 606670 -'Crowe: The Drowned Armory': +"Crowe: The Drowned Armory": installDir: Crowe: {} steam: id: 543410 Crowman & Wolfboy: files: - /AppData/LocalLow/Wither Studios/C ___ W: + "/AppData/LocalLow/Wither Studios/C ___ W": tags: - save when: @@ -118804,11 +119161,11 @@ Crowman & Wolfboy: installDir: CrowmanWolfboy: {} launch: - /CrowmanWolfboy.app: + "/CrowmanWolfboy.app": - when: - os: mac store: steam - /CrowmanWolfboy.exe: + "/CrowmanWolfboy.exe": - when: - os: windows store: steam @@ -118818,14 +119175,14 @@ Crowman & Wolfboy: - config steam: id: 339590 -'Crown Champion: Legends of the Arena': +"Crown Champion: Legends of the Arena": files: - /www/save/*.rpgsave: + "/www/save/*.rpgsave": tags: - save when: - os: windows - /www/save/config.rpgsave: + "/www/save/config.rpgsave": tags: - config when: @@ -118833,20 +119190,20 @@ Crowman & Wolfboy: installDir: Crown Champion Legends of the Arena: {} launch: - /nw.exe: - - arguments: '--in-process-gpu' + "/nw.exe": + - arguments: "--in-process-gpu" when: - store: steam steam: id: 527710 Crown Trick: files: - /NExT Studios/CrownTrick/Setting.txt: + "/NExT Studios/CrownTrick/Setting.txt": tags: - config when: - os: windows - /NExT Studios/CrownTrick/save_data: + "/NExT Studios/CrownTrick/save_data": tags: - save when: @@ -118854,7 +119211,7 @@ Crown Trick: installDir: Crown Trick: {} launch: - /CrownTrick.exe: + "/CrownTrick.exe": - when: - os: windows store: steam @@ -118868,17 +119225,17 @@ Crown and Council: installDir: Crown and Council: {} launch: - /application.macosx/Crown and Council.app/Contents/MacOS/crown_and_council_B6: + "/application.macosx/Crown and Council.app/Contents/MacOS/crown_and_council_B6": - when: - bit: 64 os: mac store: steam - /crown_and_council.exe: + "/crown_and_council.exe": - when: - bit: 64 os: windows store: steam - /crown_and_council_B6: + "/crown_and_council_B6": - when: - bit: 64 os: linux @@ -118892,30 +119249,30 @@ CrownFall: installDir: CrownFall: {} launch: - /Crown Fall.exe: + "/Crown Fall.exe": - when: - os: windows store: steam steam: id: 683730 -'Crowns and Pawns: Kingdom of Deceit': +"Crowns and Pawns: Kingdom of Deceit": files: - /AppData/LocalLow/Tag of Joy/Crowns and Pawns//saves: + "/AppData/LocalLow/Tag of Joy/Crowns and Pawns//saves": tags: - save when: - os: windows - /Library/Application Support/Tag of Joy/Crowns and Pawns//saves: + "/Library/Application Support/Tag of Joy/Crowns and Pawns//saves": tags: - save when: - os: mac - /unity3d/Tag of Joy/Crowns and Pawns//saves: + "/unity3d/Tag of Joy/Crowns and Pawns//saves": tags: - save when: - os: linux - /unity3d/Tag of Joy/Crowns and Pawns/prefs: + "/unity3d/Tag of Joy/Crowns and Pawns/prefs": tags: - config when: @@ -118925,15 +119282,15 @@ CrownFall: installDir: Crowns and Pawns Kingdom of Deceit: {} launch: - /Crowns and Pawns.app/Contents/MacOS/Crowns and Pawns: + "/Crowns and Pawns.app/Contents/MacOS/Crowns and Pawns": - when: - os: mac store: steam - /Crowns and Pawns.exe: + "/Crowns and Pawns.exe": - when: - os: windows store: steam - /Crowns and Pawns.x86_64: + "/Crowns and Pawns.x86_64": - when: - os: linux store: steam @@ -118945,12 +119302,12 @@ CrownFall: id: 1125910 Crowntakers: files: - /Saves: + "/Saves": tags: - save when: - os: windows - /AppData/LocalLow/Bulwark Studios/Crowntakers: + "/AppData/LocalLow/Bulwark Studios/Crowntakers": tags: - config when: @@ -118958,15 +119315,15 @@ Crowntakers: installDir: Crowntakers: {} launch: - /Crowntakers.app: + "/Crowntakers.app": - when: - os: mac store: steam - /Crowntakers.exe: + "/Crowntakers.exe": - when: - os: windows store: steam - /Crowntakers.x86: + "/Crowntakers.x86": - when: - os: linux store: steam @@ -118980,11 +119337,11 @@ Crowtel Renovations: installDir: Crowtel Renovations: {} launch: - /Crowtel Renovations.app: + "/Crowtel Renovations.app": - when: - os: mac store: steam - /CrowtelRenovations.exe: + "/CrowtelRenovations.exe": - when: - os: windows store: steam @@ -118994,7 +119351,7 @@ Crucial Throw: installDir: Crucial Throw: {} launch: - /CrucialThrow.exe: + "/CrucialThrow.exe": - when: - os: windows store: steam @@ -119004,37 +119361,32 @@ Crucible: installDir: Crucible: {} launch: - /Launch_Crucible.exe: - - arguments: >- - +Crucible.AuthMethod 1 +Crucible.SocialEnabled true +Crucible.SocialBackendOverride s 1057240 - +gamesparks_creds jiwcqri6b6qdksaenscj7t7am GgKGCczUrZg12VZyRugR3dxYn Bz5m7WhMuEMjNpS9IV1thWxwrA0MsxLHssLj - us-east-1 +Crucible.AddCrashAnnotations package.distributed true +Crucible.AddCrashAnnotations - package.distributor sonic +Crucible.AddCrashAnnotations package.stage prod +crucible_UsePersonaAuth 1 - +PlayerAuthorizerEndpoint https://x8evjomsd1.execute-api.us-west-2.amazonaws.com/prod + "/Launch_Crucible.exe": + - arguments: "+Crucible.AuthMethod 1 +Crucible.SocialEnabled true +Crucible.SocialBackendOverride s 1057240 +gamesparks_creds jiwcqri6b6qdksaenscj7t7am GgKGCczUrZg12VZyRugR3dxYn Bz5m7WhMuEMjNpS9IV1thWxwrA0MsxLHssLj us-east-1 +Crucible.AddCrashAnnotations package.distributed true +Crucible.AddCrashAnnotations package.distributor sonic +Crucible.AddCrashAnnotations package.stage prod +crucible_UsePersonaAuth 1 +PlayerAuthorizerEndpoint https://x8evjomsd1.execute-api.us-west-2.amazonaws.com/prod" when: - store: steam steam: id: 1057240 -'Crucible Falls: Together Forever': +"Crucible Falls: Together Forever": installDir: Crucible Falls Together Forever: {} launch: - /CrucibleFalls.exe: + "/CrucibleFalls.exe": - when: - bit: 64 os: windows store: steam steam: id: 834750 -'Crucible Trails : Initial Rupture': +"Crucible Trails : Initial Rupture": installDir: Crucible Trails: {} launch: - /CTIR-vb1.0.6.app/Contents/MacOS/CTIR-vb1.0.6: + "/CTIR-vb1.0.6.app/Contents/MacOS/CTIR-vb1.0.6": - when: - os: mac store: steam - /CTIR-vb1.0.6.exe: + "/CTIR-vb1.0.6.exe": - when: - os: windows store: steam @@ -119044,7 +119396,7 @@ Crudelis: installDir: Crudelis: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -119054,7 +119406,7 @@ Cruel Arena: installDir: Cruel Arena: {} launch: - /Cruel_Arena.exe: + "/Cruel_Arena.exe": - when: - os: windows store: steam @@ -119064,11 +119416,11 @@ Cruel Bands Career: installDir: Cruel Bands Career: {} launch: - /CruelBandsCareer.app: + "/CruelBandsCareer.app": - when: - os: mac store: steam - /CruelBandsCareer/CruelBandsCareer.exe: + "/CruelBandsCareer/CruelBandsCareer.exe": - when: - os: windows store: steam @@ -119076,7 +119428,7 @@ Cruel Bands Career: id: 1118740 Cruelty Squad: files: - /Godot/app_userdata/Cruelty Squad: + "/Godot/app_userdata/Cruelty Squad": tags: - config - save @@ -119085,12 +119437,12 @@ Cruelty Squad: installDir: Cruelty Squad: {} launch: - /crueltysquad.exe: + "/crueltysquad.exe": - when: - bit: 64 os: windows store: steam - /crueltysquad32.exe: + "/crueltysquad32.exe": - when: - bit: 32 os: windows @@ -119101,7 +119453,7 @@ Cruentis The Murderer vol.1: installDir: Cruentis The Murderer vol.1: {} launch: - /CruentisTMV1-AlphaV1.exe: + "/CruentisTMV1-AlphaV1.exe": - when: - bit: 64 os: windows @@ -119110,18 +119462,18 @@ Cruentis The Murderer vol.1: id: 674120 Crumble: files: - /AppData/LocalLow/Brute Force/Crumble: + "/AppData/LocalLow/Brute Force/Crumble": tags: - config - save when: - os: windows - /unity3d/Brute Force/Crumble/GameInformation.xml: + "/unity3d/Brute Force/Crumble/GameInformation.xml": tags: - config when: - os: linux - /unity3d/Brute Force/Crumble/GraphicsSettings.xml: + "/unity3d/Brute Force/Crumble/GraphicsSettings.xml": tags: - save when: @@ -119129,16 +119481,16 @@ Crumble: installDir: Crumble: {} launch: - /Crumble.app: + "/Crumble.app": - when: - os: mac store: steam - /Crumble.exe: + "/Crumble.exe": - when: - bit: 64 os: windows store: steam - /Crumble.x86_64: + "/Crumble.x86_64": - when: - bit: 64 os: linux @@ -119149,12 +119501,12 @@ Crumbled World: installDir: Crumbled World: {} launch: - /CrumbledWorld.a: + "/CrumbledWorld.a": - when: - bit: 64 os: linux store: steam - /CrumbledWorld.exe: + "/CrumbledWorld.exe": - when: - bit: 64 os: windows @@ -119165,15 +119517,15 @@ Crumbling World: installDir: CrumblingWorld: {} launch: - /CrumblingWorld.app: + "/CrumblingWorld.app": - when: - os: mac store: steam - /CrumblingWorld.x86_64: + "/CrumblingWorld.x86_64": - when: - os: linux store: steam - /CrumblingWorld/CrumblingWorld.exe: + "/CrumblingWorld/CrumblingWorld.exe": - when: - os: windows store: steam @@ -119181,7 +119533,7 @@ Crumbling World: id: 1003560 Crumple Zone: files: - /AppData/LocalLow/OutOfTune/CrumpleZone01/pld.dat: + "/AppData/LocalLow/OutOfTune/CrumpleZone01/pld.dat": tags: - config when: @@ -119189,7 +119541,7 @@ Crumple Zone: installDir: Crumple Zone: {} launch: - /CrumpleZone.exe: + "/CrumpleZone.exe": - when: - bit: 64 os: windows @@ -119200,20 +119552,20 @@ Crunch: installDir: Crunch: {} launch: - /bin/Crunch.exe: + "/bin/Crunch.exe": - when: - os: windows store: steam - workingDir: /bin - /bin_linux/Crunch: + workingDir: "/bin" + "/bin_linux/Crunch": - when: - bit: 64 os: linux store: steam - workingDir: /bin_linux + workingDir: "/bin_linux" steam: id: 1091260 -'Crunch Element: VR Infiltration': +"Crunch Element: VR Infiltration": installDir: Crunch Element: {} steam: @@ -119222,20 +119574,20 @@ Crunch Time!: installDir: Crunch Time: {} launch: - /CrunchTime.app: + "/CrunchTime.app": - when: - os: mac store: steam - /CrunchTime.exe: + "/CrunchTime.exe": - when: - os: windows store: steam - /CrunchTime.x86: + "/CrunchTime.x86": - when: - bit: 32 os: linux store: steam - /CrunchTime.x86_64: + "/CrunchTime.x86_64": - when: - bit: 64 os: linux @@ -119246,7 +119598,7 @@ CrunchTime: installDir: CrunchTime: {} launch: - /CrunchTime.exe: + "/CrunchTime.exe": - when: - store: steam steam: @@ -119257,13 +119609,13 @@ Crusade in Europe: installDir: Crusade in Europe: {} launch: - /DOSBox/dosbox.app/Contents/MacOS/DOSBox: - - arguments: '-conf dosbox.conf -conf osx.conf -noconsole' + "/DOSBox/dosbox.app/Contents/MacOS/DOSBox": + - arguments: "-conf dosbox.conf -conf osx.conf -noconsole" when: - os: mac store: steam - /dosbox/dosbox.exe: - - arguments: '-conf dosbox.conf -conf win.conf -noconsole' + "/dosbox/dosbox.exe": + - arguments: "-conf dosbox.conf -conf win.conf -noconsole" when: - os: windows store: steam @@ -119273,7 +119625,7 @@ Crusader Crash: installDir: Crusader Crash: {} launch: - /CrusaderCrash.exe: + "/CrusaderCrash.exe": - when: - os: windows store: steam @@ -119285,26 +119637,26 @@ Crusader Kings: installDir: Crusader Kings: {} launch: - /Crusaders.exe: + "/Crusaders.exe": - when: - store: steam steam: id: 204940 Crusader Kings II: files: - /.paradoxinteractive/Crusader Kings II: + "/.paradoxinteractive/Crusader Kings II": tags: - config - save when: - os: linux - /Paradox Interactive/Crusader Kings II: + "/Paradox Interactive/Crusader Kings II": tags: - config - save when: - os: mac - /Paradox Interactive/Crusader Kings II: + "/Paradox Interactive/Crusader Kings II": tags: - config - save @@ -119315,15 +119667,15 @@ Crusader Kings II: installDir: Crusader Kings II: {} launch: - /CK2game.exe: + "/CK2game.exe": - when: - os: windows store: steam - /ck2: + "/ck2": - when: - os: linux store: steam - /ck2.app: + "/ck2.app": - when: - os: mac store: steam @@ -119331,22 +119683,22 @@ Crusader Kings II: id: 203770 Crusader Kings III: files: - /.local/share/Paradox Interactive/Crusader Kings III: + "/.local/share/Paradox Interactive/Crusader Kings III": tags: - config when: - os: linux - /.local/share/Paradox Interactive/Crusader Kings III/save games: + "/.local/share/Paradox Interactive/Crusader Kings III/save games": tags: - save when: - os: linux - /Paradox Interactive/Crusader Kings III: + "/Paradox Interactive/Crusader Kings III": tags: - config when: - os: windows - /Paradox Interactive/Crusader Kings III/save games: + "/Paradox Interactive/Crusader Kings III/save games": tags: - save when: @@ -119354,44 +119706,44 @@ Crusader Kings III: installDir: Crusader Kings III: {} launch: - /launcher/dowser: - - arguments: '-nakama -simultaneouschunks 2' + "/launcher/dowser": + - arguments: "-nakama -simultaneouschunks 2" when: - os: mac store: steam - - arguments: '--pdxlDisableHardwareSettings -nakama -simultaneouschunks 2' + - arguments: "--pdxlDisableHardwareSettings -nakama -simultaneouschunks 2" when: - os: linux store: steam - /launcher/dowser.exe: - - arguments: '-nakama -simultaneouschunks 2' + "/launcher/dowser.exe": + - arguments: "-nakama -simultaneouschunks 2" when: - os: windows store: steam steam: id: 1158310 -'Crusader: No Regret': +"Crusader: No Regret": files: - /Crusader.cfg: + "/Crusader.cfg": tags: - config when: - os: dos - /SAVEGAME: + "/SAVEGAME": tags: - save when: - os: dos gog: id: 1207658982 -'Crusader: No Remorse': +"Crusader: No Remorse": files: - /Crusader.cfg: + "/Crusader.cfg": tags: - config when: - os: dos - /SAVEGAME: + "/SAVEGAME": tags: - save when: @@ -119402,7 +119754,7 @@ Crusaders of Light: installDir: CrusadersOfLight: {} launch: - /col.exe: + "/col.exe": - when: - os: windows store: steam @@ -119410,12 +119762,12 @@ Crusaders of Light: id: 775220 Crusaders of Might and Magic: files: - /Gamers/*.sav: + "/Gamers/*.sav": tags: - save when: - os: windows - /Gamers/latest.cfg: + "/Gamers/latest.cfg": tags: - config when: @@ -119426,24 +119778,24 @@ Crusaders of the Lost Idols: installDir: Crusaders of the Lost Idols: {} launch: - /Crusaders of the Lost Idols.exe: + "/Crusaders of the Lost Idols.exe": - when: - os: windows store: steam - /Crusaders.app: + "/Crusaders.app": - when: - os: mac store: steam steam: id: 402840 -'Crusaders: Thy Kingdom Come': +"Crusaders: Thy Kingdom Come": installDir: Crusaders Thy Kingdom Come: {} launch: - /Loader.exe: + "/Loader.exe": - when: - store: steam - - arguments: 'gamestartmode:MultiPlayer' + - arguments: "gamestartmode:MultiPlayer" when: - store: steam steam: @@ -119452,7 +119804,7 @@ Crush: installDir: Crush: {} launch: - /Crush.exe: + "/Crush.exe": - when: - os: windows store: steam @@ -119462,7 +119814,7 @@ Crush & Squash: installDir: CRUSH & SQUASH: {} launch: - /CRUSH_AND_SQUASH.exe: + "/CRUSH_AND_SQUASH.exe": - when: - store: steam steam: @@ -119471,12 +119823,15 @@ Crush (Salt & Pixel): installDir: CRUSH: {} launch: - /nw.app: + "/nw.app": - when: - os: mac store: steam - /nw.exe: + "/nw.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam @@ -119486,24 +119841,24 @@ Crush Crush: installDir: CrushCrush: {} launch: - /CrushCrush.app: + "/CrushCrush.app": - when: - os: mac store: steam - /CrushCrush.exe: + "/CrushCrush.exe": - when: - os: windows store: steam - - arguments: '-force-d3d9' + - arguments: "-force-d3d9" when: - os: windows store: steam - /CrushCrush.x86: + "/CrushCrush.x86": - when: - bit: 32 os: linux store: steam - /CrushCrush.x86_64: + "/CrushCrush.x86_64": - when: - bit: 64 os: linux @@ -119519,8 +119874,8 @@ Crush Online: installDir: Crush Online: {} launch: - /Launcher.exe: - - arguments: '-steam' + "/Launcher.exe": + - arguments: "-steam" when: - os: windows store: steam @@ -119530,15 +119885,15 @@ Crush Your Enemies: installDir: Crush Your Enemies: {} launch: - /CYE.app/Contents/MacOS/CYE: + "/CYE.app/Contents/MacOS/CYE": - when: - os: mac store: steam - /cye.exe: + "/cye.exe": - when: - os: windows store: steam - /cye.x86: + "/cye.x86": - when: - os: linux store: steam @@ -119551,16 +119906,16 @@ Crushing Blow: installDir: Crushing Blow: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam - /game.x86: + "/game.x86": - when: - bit: 32 os: linux store: steam - /game.x86_64: + "/game.x86_64": - when: - bit: 64 os: linux @@ -119571,11 +119926,11 @@ Cruz Brothers: installDir: Cruz Brothers: {} launch: - /cruz.app: + "/cruz.app": - when: - os: mac store: steam - /cruz.exe: + "/cruz.exe": - when: - os: windows store: steam @@ -119583,17 +119938,17 @@ Cruz Brothers: id: 697870 Cry of Fear: files: - /SAVE: + "/SAVE": tags: - save when: - os: windows - /cryoffear/autoexec.cfg: + "/cryoffear/autoexec.cfg": tags: - config when: - os: windows - /cryoffear/scriptsettings.dat: + "/cryoffear/scriptsettings.dat": tags: - save when: @@ -119601,7 +119956,7 @@ Cry of Fear: installDir: Cry of Fear: {} launch: - /CoFLaunchApp.exe: + "/CoFLaunchApp.exe": - when: - store: steam steam: @@ -119610,18 +119965,18 @@ Cry of War: installDir: PanzerWar-DE: {} launch: - /Mod-PW-Uploader/PW-Mod-Uploader.exe: + "/Mod-PW-Uploader/PW-Mod-Uploader.exe": - when: - store: steam - /dlc/PanzerWar-DE-HDRP/PanzerWar-DE.exe: + "/dlc/PanzerWar-DE-HDRP/PanzerWar-DE.exe": - when: - store: steam - /dlc/PanzerWar-DE/PanzerWar-DE.exe: + "/dlc/PanzerWar-DE/PanzerWar-DE.exe": - when: - bit: 64 os: windows store: steam - /dlc/PanzerWar/PanzerWar.exe: + "/dlc/PanzerWar/PanzerWar.exe": - when: - bit: 64 os: windows @@ -119637,7 +119992,7 @@ Crying Is Not Enough: installDir: Crying is not Enough: {} launch: - /Crying is not Enough.exe: + "/Crying is not Enough.exe": - when: - os: windows store: steam @@ -119645,12 +120000,12 @@ Crying Is Not Enough: id: 850690 Crying Suns: files: - /AppData/LocalLow/Alt Shift/Crying Suns/saves: + "/AppData/LocalLow/Alt Shift/Crying Suns/saves": tags: - save when: - os: windows - /Library/Application Support/unity.Alt Shift.Crying Suns/saves: + "/Library/Application Support/unity.Alt Shift.Crying Suns/saves": tags: - save when: @@ -119660,11 +120015,11 @@ Crying Suns: installDir: Crying Suns: {} launch: - /cs.app/Contents/MacOS/cs: + "/cs.app/Contents/MacOS/cs": - when: - os: mac store: steam - /cs.exe: + "/cs.exe": - when: - bit: 64 os: windows @@ -119680,12 +120035,12 @@ Cryline: id: 693440 Crymachina: files: - /CRYMACHINA/Saved/Config/WindowsNoEditor: + "/CRYMACHINA/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /CRYMACHINA/Saved/SaveGames/: + "/CRYMACHINA/Saved/SaveGames/": tags: - save when: @@ -119696,7 +120051,7 @@ CryoFall: installDir: CryoFall: {} launch: - /Binaries/Client/CryoFall_Client.exe: + "/Binaries/Client/CryoFall_Client.exe": - when: - os: windows store: steam @@ -119707,12 +120062,12 @@ Cryospace: id: 1460010 Cryostasis: files: - /Data/Save: + "/Data/Save": tags: - save when: - os: windows - /config.cfg: + "/config.cfg": tags: - config when: @@ -119722,7 +120077,7 @@ Cryostasis: installDir: Cryostasis: {} launch: - /Cryostasis.exe: + "/Cryostasis.exe": - when: - os: windows store: steam @@ -119732,7 +120087,7 @@ Crypt: installDir: Crypt: {} launch: - /Crypt.exe: + "/Crypt.exe": - when: - os: windows store: steam @@ -119742,12 +120097,12 @@ Crypt Cards: installDir: Crypt Cards: {} launch: - /cryptcards.app: + "/cryptcards.app": - when: - bit: 64 os: mac store: steam - /cryptcards.exe: + "/cryptcards.exe": - when: - os: windows store: steam @@ -119760,14 +120115,14 @@ Crypt Hunter: id: 693790 Crypt of the NecroDancer: files: - /data/save_data.xml: + "/data/save_data.xml": tags: - config - save when: - os: windows - os: linux - /userdata//247080/remote/save_data.xml: + "/userdata//247080/remote/save_data.xml": tags: - config - save @@ -119779,8 +120134,8 @@ Crypt of the NecroDancer: gogExtra: - 1432925124 - 1432925592 - - 1604766360 - 1439377578 + - 1604766360 - 1981284042 - 2105882438 steamExtra: @@ -119791,30 +120146,30 @@ Crypt of the NecroDancer: installDir: Crypt of the NecroDancer: {} launch: - /NecroDancer.app: - - arguments: '1' + "/NecroDancer.app": + - arguments: "1" when: - os: mac store: steam - - arguments: '0' + - arguments: "0" when: - os: mac store: steam - /NecroDancer.exe: - - arguments: '1' + "/NecroDancer.exe": + - arguments: "1" when: - os: windows store: steam - - arguments: '0' + - arguments: "0" when: - os: windows store: steam - /NecroDancer.sh: - - arguments: '1' + "/NecroDancer.sh": + - arguments: "1" when: - os: linux store: steam - - arguments: '0' + - arguments: "0" when: - os: linux store: steam @@ -119824,7 +120179,7 @@ Crypt of the Serpent King: installDir: Crypt of the Serpent King: {} launch: - /CryptOfTheSerpentKing.exe: + "/CryptOfTheSerpentKing.exe": - when: - os: windows store: steam @@ -119832,19 +120187,19 @@ Crypt of the Serpent King: id: 528730 Cryptark: files: - /Content: + "/Content": tags: - config - save when: - os: windows - /Library/Application Support/Cryptark: + "/Library/Application Support/Cryptark": tags: - config - save when: - os: mac - /Cryptark: + "/Cryptark": tags: - config - save @@ -119858,15 +120213,15 @@ Cryptark: installDir: Cryptark: {} launch: - /Cryptark: + "/Cryptark": - when: - os: linux store: steam - /Cryptark.app/Contents/MacOS/Cryptark: + "/Cryptark.app/Contents/MacOS/Cryptark": - when: - os: mac store: steam - /Cryptark.exe: + "/Cryptark.exe": - when: - os: windows store: steam @@ -119876,7 +120231,7 @@ Crypterion: installDir: Crypterion: {} launch: - /CrypterionDemo.exe: + "/CrypterionDemo.exe": - when: - os: windows store: steam @@ -119886,44 +120241,44 @@ Crypto Crisis: installDir: Crypto Crisis: {} launch: - /crypto_crisis.app: + "/crypto_crisis.app": - when: - os: mac store: steam - /crypto_crisis.exe: + "/crypto_crisis.exe": - when: - os: windows store: steam - /crypto_crisis.x86: + "/crypto_crisis.x86": - when: - bit: 32 os: linux store: steam - /crypto_crisis.x86_64: + "/crypto_crisis.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 889720 -'Crypto Crisis: Education Edition': +"Crypto Crisis: Education Edition": installDir: Crypto Crisis EE: {} launch: - /crypto_crisis.app: + "/crypto_crisis.app": - when: - os: mac store: steam - /crypto_crisis.exe: + "/crypto_crisis.exe": - when: - os: windows store: steam - /crypto_crisis.x86: + "/crypto_crisis.x86": - when: - bit: 32 os: linux store: steam - /crypto_crisis.x86_64: + "/crypto_crisis.x86_64": - when: - bit: 64 os: linux @@ -119934,7 +120289,7 @@ Crypto Girl The Visual Novel: installDir: Crypto Girl The Visual Novel: {} launch: - /Crypto Girl.exe: + "/Crypto Girl.exe": - when: - os: windows store: steam @@ -119942,9 +120297,9 @@ Crypto Girl The Visual Novel: id: 820300 Crypto Girls SEXCoin: installDir: - 'Crypto Girls [18+] - SEXCoin': {} + "Crypto Girls [18+] - SEXCoin": {} launch: - /Crypto Girls.exe: + "/Crypto Girls.exe": - when: - store: steam steam: @@ -119953,20 +120308,20 @@ Crypto Quest: installDir: Crypto Quest: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam steam: id: 819640 -'Crypto: Against All Odds': +"Crypto: Against All Odds": files: - /AppData/LocalLow/Pictagor Games/CAAO/CryptoAgainstAllOdds.save: + "/AppData/LocalLow/Pictagor Games/CAAO/CryptoAgainstAllOdds.save": tags: - save when: - os: windows - /AppData/LocalLow/Pictagor Games/CAAO/PlayerPrefs.config: + "/AppData/LocalLow/Pictagor Games/CAAO/PlayerPrefs.config": tags: - config when: @@ -119976,11 +120331,11 @@ Crypto Quest: installDir: Crypto Against All Odds: {} launch: - /CAAO.app/Contents/MacOS/CAAO: + "/CAAO.app/Contents/MacOS/CAAO": - when: - os: mac store: steam - /CAAO.exe: + "/CAAO.exe": - when: - os: windows store: steam @@ -119994,11 +120349,11 @@ CryptoFarm: installDir: CryptoFarm: {} launch: - /CryptoFarm.app/Contents/MacOS/CryptoFarm: + "/CryptoFarm.app/Contents/MacOS/CryptoFarm": - when: - os: mac store: steam - /CryptoFarm.exe: + "/CryptoFarm.exe": - when: - os: windows store: steam @@ -120008,15 +120363,15 @@ CryptoMoneya: installDir: CryptoMoneya: {} launch: - /cryptomoneya.app: + "/cryptomoneya.app": - when: - os: mac store: steam - /cryptomoneya.exe: + "/cryptomoneya.exe": - when: - os: windows store: steam - /cryptomoneya.sh: + "/cryptomoneya.sh": - when: - os: linux store: steam @@ -120026,15 +120381,15 @@ Cryptochain: installDir: Cryptochain: {} launch: - /Cryptochain.app/Contents/MacOS/Cryptochain: + "/Cryptochain.app/Contents/MacOS/Cryptochain": - when: - os: mac store: steam - /Cryptochain.exe: + "/Cryptochain.exe": - when: - os: windows store: steam - /Cryptochain.x86: + "/Cryptochain.x86": - when: - os: linux store: steam @@ -120044,12 +120399,12 @@ Cryptocracy: installDir: Cryptocracy: {} launch: - /Cryptocracy.app/Contents/MacOS/Cryptocracy: + "/Cryptocracy.app/Contents/MacOS/Cryptocracy": - when: - bit: 64 os: mac store: steam - /cryptocracy.exe: + "/cryptocracy.exe": - when: - bit: 64 os: windows @@ -120060,29 +120415,29 @@ Cryptocurrency Clicker: installDir: Cryptocurrency Clicker: {} launch: - /Cryptocurrency Clicker.app/Contents/MacOS/Cryptocurrency Clicker: + "/Cryptocurrency Clicker.app/Contents/MacOS/Cryptocurrency Clicker": - when: - os: mac store: steam - /Cryptocurrency Clicker.exe: + "/Cryptocurrency Clicker.exe": - when: - os: windows store: steam steam: id: 820750 -'Cryptofall: Investor simulator': +"Cryptofall: Investor simulator": installDir: Cryptofall: {} launch: - /Cryptofall.app/Contents/MacOS/Cryptofall: + "/Cryptofall.app/Contents/MacOS/Cryptofall": - when: - os: mac store: steam - /Cryptofall.exe: + "/Cryptofall.exe": - when: - os: windows store: steam - /cryptofall: + "/cryptofall": - when: - os: linux store: steam @@ -120092,17 +120447,17 @@ Cryptographer: installDir: Cryptographer: {} launch: - /Cryptographer.exe: + "/Cryptographer.exe": - when: - bit: 64 os: windows store: steam - /Cryptographer.x86_64: + "/Cryptographer.x86_64": - when: - bit: 64 os: linux store: steam - /Cryptographer/Cryptographer.app: + "/Cryptographer/Cryptographer.app": - when: - os: mac store: steam @@ -120110,17 +120465,17 @@ Cryptographer: id: 1095400 Cryptozookeeper: files: - /czk.cfg: + "/czk.cfg": tags: - config when: - os: windows - /czk.ini: + "/czk.ini": tags: - config when: - os: windows - /czk.sav: + "/czk.sav": tags: - save when: @@ -120128,7 +120483,7 @@ Cryptozookeeper: installDir: Cryptozookeeper: {} launch: - /czk.exe: + "/czk.exe": - when: - os: windows store: steam @@ -120138,7 +120493,7 @@ Cryptrunner: installDir: Cryptrunner: {} launch: - /cryptrunner.exe: + "/cryptrunner.exe": - when: - os: windows store: steam @@ -120146,12 +120501,12 @@ Cryptrunner: id: 1030410 Crysis: files: - /My Games/Crysis/SaveGames: + "/My Games/Crysis/SaveGames": tags: - save when: - os: windows - /My Games/Crysis/game.cfg: + "/My Games/Crysis/game.cfg": tags: - config when: @@ -120165,19 +120520,19 @@ Crysis: installDir: Crysis: {} launch: - /bin32/crysis.exe: + "/bin32/crysis.exe": - when: - store: steam steam: id: 17300 Crysis 2: files: - /Saved Games/Crysis2: + "/Saved Games/Crysis2": tags: - config when: - os: windows - /Saved Games/Crysis2/SaveGames: + "/Saved Games/Crysis2/SaveGames": tags: - save when: @@ -120188,26 +120543,26 @@ Crysis 2: installDir: Crysis 2 Game of the Year: {} launch: - /bin32/Crysis2Launcher.exe: - - arguments: '' + "/bin32/Crysis2Launcher.exe": + - arguments: "" when: - store: steam - workingDir: /bin32 + workingDir: "/bin32" steam: id: 108800 Crysis 2 Remastered: files: - /system.cfg: + "/system.cfg": tags: - config when: - os: windows - /Saved Games/Crysis2Remastered/SaveGames: + "/Saved Games/Crysis2Remastered/SaveGames": tags: - save when: - os: windows - /Saved Games/Crysis2Remastered/game.cfg: + "/Saved Games/Crysis2Remastered/game.cfg": tags: - config when: @@ -120215,7 +120570,7 @@ Crysis 2 Remastered: installDir: Crysis2Remastered: {} launch: - /Bin64/Crysis2Remastered.exe: + "/Bin64/Crysis2Remastered.exe": - when: - os: windows store: steam @@ -120223,17 +120578,17 @@ Crysis 2 Remastered: id: 2096600 Crysis 3: files: - /Crysis 3/USER/SaveGames: + "/Crysis 3/USER/SaveGames": tags: - save when: - os: windows - /Saved Games/Crysis3: + "/Saved Games/Crysis3": tags: - config when: - os: windows - /Saved Games/Crysis3/SaveGames: + "/Saved Games/Crysis3/SaveGames": tags: - save when: @@ -120244,17 +120599,17 @@ Crysis 3: id: 1282690 Crysis 3 Remastered: files: - /system.cfg: + "/system.cfg": tags: - config when: - os: windows - /Saved Games/Crysis3Remastered/SaveGames: + "/Saved Games/Crysis3Remastered/SaveGames": tags: - save when: - os: windows - /Saved Games/Crysis3Remastered/game.cfg: + "/Saved Games/Crysis3Remastered/game.cfg": tags: - config when: @@ -120262,7 +120617,7 @@ Crysis 3 Remastered: installDir: Crysis3Remastered: {} launch: - /Bin64/Crysis3Remastered.exe: + "/Bin64/Crysis3Remastered.exe": - when: - os: windows store: steam @@ -120270,12 +120625,12 @@ Crysis 3 Remastered: id: 2096610 Crysis Remastered: files: - /Saved Games/CrysisRemastered/Profiles/: + "/Saved Games/CrysisRemastered/Profiles/": tags: - config when: - os: windows - /Saved Games/CrysisRemastered/SaveGames: + "/Saved Games/CrysisRemastered/SaveGames": tags: - save when: @@ -120283,7 +120638,7 @@ Crysis Remastered: installDir: Crysis Remastered: {} launch: - /Bin64/CrysisRemastered.exe: + "/Bin64/CrysisRemastered.exe": - when: - os: windows store: steam @@ -120291,12 +120646,12 @@ Crysis Remastered: id: 1715130 Crysis Warhead: files: - /My Games/Crysis_WARHEAD/SaveGames: + "/My Games/Crysis_WARHEAD/SaveGames": tags: - save when: - os: windows - /My Games/Crysis_WARHEAD/game.cfg: + "/My Games/Crysis_WARHEAD/game.cfg": tags: - config when: @@ -120311,7 +120666,7 @@ Crysis Warhead: installDir: Crysis Warhead: {} launch: - /bin64/crysis64.exe: + "/bin64/crysis64.exe": - when: - store: steam steam: @@ -120320,15 +120675,15 @@ Crystal Catacombs: installDir: Crystal Catacombs: {} launch: - /Crystal Catacombs.app: + "/Crystal Catacombs.app": - when: - os: mac store: steam - /Crystal Catacombs.exe: + "/Crystal Catacombs.exe": - when: - os: windows store: steam - /Crystal Catacombs.x86: + "/Crystal Catacombs.x86": - when: - os: linux store: steam @@ -120336,17 +120691,17 @@ Crystal Catacombs: id: 325880 Crystal Caves: files: - /CC*-*.SAV: + "/CC*-*.SAV": tags: - save when: - os: dos - /CC*.CFG: + "/CC*.CFG": tags: - config when: - os: dos - /CC*.HS: + "/CC*.HS": tags: - save when: @@ -120356,42 +120711,43 @@ Crystal Caves: installDir: Crystal Caves: {} launch: - /Crystal Caves.app: + "/Crystal Caves.app": - when: - os: mac store: steam - /Crystal Caves/dosbox/dosbox.exe: - - arguments: '-conf \"..\\CRYSTAL.conf\" -noconsole -c' + "/Crystal Caves/dosbox/dosbox.exe": + - arguments: "-conf \\\"..\\\\CRYSTAL.conf\\\" -noconsole -c" when: - os: windows store: steam - workingDir: /Crystal Caves/dosbox - /Dosbox/dosbox: - - arguments: '-conf \"..\\CRYSTAL.conf\" -noconsole -c' + workingDir: "/Crystal Caves/dosbox" + "/Dosbox/dosbox": + - arguments: "-conf \\\"..\\\\CRYSTAL.conf\\\" -noconsole -c" when: - os: linux store: steam - workingDir: /Dosbox + workingDir: "/Dosbox" steam: id: 358260 Crystal Caves HD: files: - /AppData/LocalLow/Apogee Software/Crystal Caves HD/Gog/Saves: - tags: - - save - when: - - store: gog - /AppData/LocalLow/Apogee Software/Crystal Caves HD/Saves: + "/AppData/LocalLow/Apogee Software/Crystal Caves HD/Gog/Saves": tags: - save when: - os: windows - /unity3d/Apogee Software/Crystal Caves HD/Gog/Saves: + store: gog + "/AppData/LocalLow/Apogee Software/Crystal Caves HD/Saves": + tags: + - save + when: + - os: windows + "/unity3d/Apogee Software/Crystal Caves HD/Gog/Saves": tags: - save when: - os: linux - /unity3d/Apogee Software/Crystal Caves HD/prefs: + "/unity3d/Apogee Software/Crystal Caves HD/prefs": tags: - config when: @@ -120401,11 +120757,11 @@ Crystal Caves HD: installDir: Crystal Caves HD: {} launch: - /Crystal Caves HD.exe: + "/Crystal Caves HD.exe": - when: - os: windows store: steam - /CrystalCavesHD.x86_64: + "/CrystalCavesHD.x86_64": - when: - os: linux store: steam @@ -120419,7 +120775,7 @@ Crystal Chameleon: installDir: Crystal Chameleon: {} launch: - /cc.exe: + "/cc.exe": - when: - os: windows store: steam @@ -120429,7 +120785,7 @@ Crystal Chip Collector: installDir: Crystal Chip Collector: {} launch: - /Crystal Chip Collector.exe: + "/Crystal Chip Collector.exe": - when: - os: windows store: steam @@ -120442,7 +120798,7 @@ Crystal Command: installDir: Crystal Command: {} launch: - /ProjectPetram.exe: + "/ProjectPetram.exe": - when: - os: windows store: steam @@ -120452,12 +120808,12 @@ Crystal Control II: installDir: Crystal Control II: {} launch: - /crystalcontrolii.app: + "/crystalcontrolii.app": - when: - bit: 64 os: mac store: steam - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -120467,15 +120823,15 @@ Crystal Cosmos: installDir: Crystal Cosmos: {} launch: - /CrystalCosmos.app/Contents/MacOS/CrystalCosmos: + "/CrystalCosmos.app/Contents/MacOS/CrystalCosmos": - when: - os: mac store: steam - /linux32/CrystalCosmos.x86: + "/linux32/CrystalCosmos.x86": - when: - os: linux store: steam - /win32/CrystalCosmos.exe: + "/win32/CrystalCosmos.exe": - when: - os: windows store: steam @@ -120483,7 +120839,7 @@ Crystal Cosmos: id: 496590 Crystal Crisis: files: - /AppData/LocalLow/Nicalis/Crystal Crisis: + "/AppData/LocalLow/Nicalis/Crystal Crisis": tags: - config - save @@ -120494,7 +120850,7 @@ Crystal Crisis: installDir: Crystal Crisis: {} launch: - /Crystal Crisis.exe: + "/Crystal Crisis.exe": - when: - bit: 64 os: windows @@ -120505,7 +120861,7 @@ Crystal Defense: installDir: Crystal Defense: {} launch: - /CrystalDefense.exe: + "/CrystalDefense.exe": - when: - bit: 64 os: windows @@ -120519,7 +120875,7 @@ Crystal Maidens: installDir: Crystal Maidens: {} launch: - /Crystal Maidens.exe: + "/Crystal Maidens.exe": - when: - os: windows store: steam @@ -120529,7 +120885,7 @@ Crystal Path: installDir: Crystal Path: {} launch: - /CrystalPath.exe: + "/CrystalPath.exe": - when: - store: steam steam: @@ -120538,15 +120894,15 @@ Crystal Picnic: installDir: Crystal Picnic: {} launch: - /Crystal Picnic.app/Contents/MacOS/Crystal Picnic: + "/Crystal Picnic.app/Contents/MacOS/Crystal Picnic": - when: - os: mac store: steam - /CrystalPicnic: + "/CrystalPicnic": - when: - os: linux store: steam - /CrystalPicnic.exe: + "/CrystalPicnic.exe": - when: - os: windows store: steam @@ -120554,27 +120910,27 @@ Crystal Picnic: id: 415890 Crystal Project: files: - /Saved Games/Crystal Project/Save/*.sav: + "/Saved Games/Crystal Project/Save/*.sav": tags: - save when: - os: windows - /Saved Games/Crystal Project/controls.ini: + "/Saved Games/Crystal Project/controls.ini": tags: - config when: - os: windows - /Saved Games/Crystal Project/settings.ini: + "/Saved Games/Crystal Project/settings.ini": tags: - config when: - os: windows - /Crystal Project: + "/Crystal Project": tags: - config when: - os: linux - /Crystal Project/Save: + "/Crystal Project/Save": tags: - save when: @@ -120587,15 +120943,15 @@ Crystal Project: installDir: Crystal Project: {} launch: - /Crystal Project.app: + "/Crystal Project.app": - when: - os: mac store: steam - /Crystal Project.bin.x86_64: + "/Crystal Project.bin.x86_64": - when: - os: linux store: steam - /Crystal Project.exe: + "/Crystal Project.exe": - when: - os: windows store: steam @@ -120605,11 +120961,11 @@ Crystal Quest Classic: installDir: Crystal Quest Classic: {} launch: - /Crystal Quest.app: + "/Crystal Quest.app": - when: - os: mac store: steam - /Crystal Quest.exe: + "/Crystal Quest.exe": - when: - bit: 64 os: windows @@ -120623,7 +120979,7 @@ Crystal Reign: id: 662780 Crystal Rift: files: - /appdata/LocalLow/Psytec Games Ltd/Crystal Rift/SaveGames/CrystalRift: + "/appdata/LocalLow/Psytec Games Ltd/Crystal Rift/SaveGames/CrystalRift": tags: - save when: @@ -120631,57 +120987,57 @@ Crystal Rift: installDir: Crystal_Rift: {} launch: - /CrystalRift_Linux_x64.x86: - - arguments: '-screen-fullscreen 1 -screen-quality Desktop' + "/CrystalRift_Linux_x64.x86": + - arguments: "-screen-fullscreen 1 -screen-quality Desktop" when: - bit: 32 os: linux store: steam - - arguments: '-screen-fullscreen 0 -screen-quality Desktop' + - arguments: "-screen-fullscreen 0 -screen-quality Desktop" when: - bit: 64 os: linux store: steam - /CrystalRift_Linux_x64.x86_64: - - arguments: '-screen-fullscreen 1 -screen-quality Desktop' + "/CrystalRift_Linux_x64.x86_64": + - arguments: "-screen-fullscreen 1 -screen-quality Desktop" when: - bit: 64 os: linux store: steam - - arguments: '-screen-fullscreen 0 -screen-quality Desktop' + - arguments: "-screen-fullscreen 0 -screen-quality Desktop" when: - bit: 64 os: linux store: steam - /CrystalRift_OSX_x64.app: - - arguments: '-screen-fullscreen 1 -screen-quality Desktop' + "/CrystalRift_OSX_x64.app": + - arguments: "-screen-fullscreen 1 -screen-quality Desktop" when: - bit: 64 os: mac store: steam - - arguments: '-screen-fullscreen 0' + - arguments: "-screen-fullscreen 0" when: - bit: 64 os: mac store: steam - /CrystalRift_Win_x64.exe: - - arguments: '-screen-fullscreen 1 -screen-quality Desktop' + "/CrystalRift_Win_x64.exe": + - arguments: "-screen-fullscreen 1 -screen-quality Desktop" when: - bit: 64 os: windows store: steam - - arguments: '-screen-fullscreen 0 -screen-quality Desktop' + - arguments: "-screen-fullscreen 0 -screen-quality Desktop" when: - bit: 64 os: windows store: steam - /CrystalRift_Win_x86.exe: - - arguments: '-screen-fullscreen 1 -screen-quality Desktop' + "/CrystalRift_Win_x86.exe": + - arguments: "-screen-fullscreen 1 -screen-quality Desktop" when: - bit: 32 os: windows store: steam - - arguments: '-screen-fullscreen 0 -screen-quality Desktop' + - arguments: "-screen-fullscreen 0 -screen-quality Desktop" when: - bit: 32 os: windows @@ -120690,17 +121046,17 @@ Crystal Rift: id: 345140 Crystal Shard Adventure Bundle: files: - /acsetup.cfg: + "/acsetup.cfg": tags: - config when: - os: windows - /allegro.cfg: + "/allegro.cfg": tags: - config when: - os: windows - /Saved Games/Crystal Shard: + "/Saved Games/Crystal Shard": tags: - save when: @@ -120708,13 +121064,13 @@ Crystal Shard Adventure Bundle: installDir: Crystal Shard Adventure Bundle: {} launch: - /Bundle.exe: - - arguments: '-windowed' + "/Bundle.exe": + - arguments: "-windowed" when: - os: windows store: steam - /Bundle.sh: - - arguments: '-windowed' + "/Bundle.sh": + - arguments: "-windowed" when: - os: linux store: steam @@ -120722,7 +121078,7 @@ Crystal Shard Adventure Bundle: id: 551840 Crystal Story II: files: - /com.emmanuelsalvacruz.crystalstory2/Local Store/#SharedObjects/*.sol: + "/com.emmanuelsalvacruz.crystalstory2/Local Store/#SharedObjects/*.sol": tags: - save when: @@ -120730,11 +121086,11 @@ Crystal Story II: installDir: Crystal Story II: {} launch: - /Crystal Story II.app: + "/Crystal Story II.app": - when: - os: mac store: steam - /Crystal Story II.exe: + "/Crystal Story II.exe": - when: - os: windows store: steam @@ -120742,12 +121098,12 @@ Crystal Story II: id: 344860 Crystal Towers 2 XL: files: - /Crystal Towers 2 SE/config.ini: + "/Crystal Towers 2 SE/config.ini": tags: - config when: - os: windows - /Crystal Towers 2 SE/save: + "/Crystal Towers 2 SE/save": tags: - save when: @@ -120755,7 +121111,7 @@ Crystal Towers 2 XL: installDir: Crystal Towers 2 XL: {} launch: - /crystal2xl.exe: + "/crystal2xl.exe": - when: - os: windows store: steam @@ -120779,7 +121135,7 @@ Crystal core: installDir: 水晶核心: {} launch: - /水晶核心.exe: + "/水晶核心.exe": - when: - os: windows store: steam @@ -120789,11 +121145,11 @@ Crystalline: installDir: Crystalline: {} launch: - /Crystalline.app: + "/Crystalline.app": - when: - os: mac store: steam - /Crystalline.exe: + "/Crystalline.exe": - when: - os: windows store: steam @@ -120803,11 +121159,11 @@ Crystals and Curses: installDir: Crystals and Curses: {} launch: - /Crystals&Curses.exe: + "/Crystals&Curses.exe": - when: - os: windows store: steam - /CrystalsAndCurses.app: + "/CrystalsAndCurses.app": - when: - os: mac store: steam @@ -120815,7 +121171,7 @@ Crystals and Curses: id: 778470 Crystals of Arborea: files: - /*.DAT: + "/*.DAT": tags: - save when: @@ -120829,7 +121185,7 @@ Crystals of Time: installDir: Crystals of Time: {} launch: - /Crystals of Time.exe: + "/Crystals of Time.exe": - when: - os: windows store: steam @@ -120837,7 +121193,7 @@ Crystals of Time: id: 306410 Crystar: files: - /userdata//981750/remote: + "/userdata//981750/remote": tags: - save when: @@ -120846,7 +121202,7 @@ Crystar: installDir: Crystar: {} launch: - /CRYSTAR.exe: + "/CRYSTAR.exe": - when: - bit: 64 os: windows @@ -120857,15 +121213,15 @@ Crystar: - config steam: id: 981750 -'Cryste: The Faith of Fire Vol.1': +"Cryste: The Faith of Fire Vol.1": installDir: Cryste the Faith of Fire Vol 1: {} launch: - /Cryste the Faith of Fire.app: + "/Cryste the Faith of Fire.app": - when: - os: mac store: steam - /Cryste the Faith of Fire.exe: + "/Cryste the Faith of Fire.exe": - when: - os: windows store: steam @@ -120873,9 +121229,9 @@ Crystar: id: 616740 Cthulhu: installDir: - Back to the 80's: {} + "Back to the 80's": {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -120885,7 +121241,7 @@ Cthulhu Mythos RPG -The Sleeping Girl of the Miasma Sea-: installDir: Cthulhu Mythos RPG -The Sleeping Girl of the Miasma Sea-: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -120895,11 +121251,11 @@ Cthulhu Realms: installDir: Cthulhu Realms: {} launch: - /CthulhuRealms.app/Contents/MacOS/CthulhuRealms: + "/CthulhuRealms.app/Contents/MacOS/CthulhuRealms": - when: - os: mac store: steam - /cr.exe: + "/cr.exe": - when: - os: windows store: steam @@ -120907,7 +121263,7 @@ Cthulhu Realms: id: 485000 Cthulhu Saves Christmas: files: - /AppData/LocalLow/Zeboyd/Cthulhu Saves Christmas/PlayerPrefs.txt: + "/AppData/LocalLow/Zeboyd/Cthulhu Saves Christmas/PlayerPrefs.txt": tags: - save when: @@ -120917,7 +121273,7 @@ Cthulhu Saves Christmas: installDir: Cthulhu Saves Christmas: {} launch: - /CthulhuSavesChristmas.exe: + "/CthulhuSavesChristmas.exe": - when: - os: windows store: steam @@ -120929,7 +121285,7 @@ Cthulhu Saves Christmas: id: 1057540 Cthulhu Saves the World: files: - /SavedGames/CSTW: + "/SavedGames/CSTW": tags: - save when: @@ -120937,31 +121293,31 @@ Cthulhu Saves the World: installDir: Cthulhu Saves the World: {} launch: - /CSTW.exe: + "/CSTW.exe": - when: - store: steam steam: id: 107310 -Cthulhu's Catharsis: +"Cthulhu's Catharsis": installDir: - Cthulhu's Catharsis: {} + "Cthulhu's Catharsis": {} launch: - /Cthulhu Catharsis.exe: + "/Cthulhu Catharsis.exe": - when: - os: windows store: steam - /Cthulhus_Catharsis: + "/Cthulhus_Catharsis": - when: - os: linux store: steam steam: id: 1069140 -'Cthulhu: Books of Ancients': +"Cthulhu: Books of Ancients": steam: id: 1119040 Ctrl Alt Ego: files: - /MindThunk/CtrlAltEgo: + "/MindThunk/CtrlAltEgo": tags: - config - save @@ -120972,14 +121328,14 @@ Ctrl Alt Ego: installDir: Ctrl Alt Ego: {} launch: - /Ctrl Alt Ego.exe: + "/Ctrl Alt Ego.exe": - when: - store: steam steam: id: 1571940 Ctrl CV: files: - /ctrlcv_re/ctrlcv*.sav: + "/ctrlcv_re/ctrlcv*.sav": tags: - save when: @@ -120987,7 +121343,7 @@ Ctrl CV: installDir: CtrlCV: {} launch: - /CtrlCV.exe: + "/CtrlCV.exe": - when: - os: windows store: steam @@ -121000,7 +121356,7 @@ CuBe (2019): installDir: CuBe: {} launch: - /CuBe.exe: + "/CuBe.exe": - when: - os: windows store: steam @@ -121015,17 +121371,17 @@ Cuban Missile Crisis: installDir: CMC: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam steam: id: 356270 -'Cuban Missile Crisis: Ice Crusade': +"Cuban Missile Crisis: Ice Crusade": installDir: IceCrusade: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -121035,7 +121391,7 @@ Cubanoids: installDir: Cubanoids: {} launch: - /cubiqee.exe: + "/cubiqee.exe": - when: - bit: 64 os: windows @@ -121044,24 +121400,24 @@ Cubanoids: id: 934510 Cube: files: - /autoexec.cfg: + "/autoexec.cfg": tags: - config when: - os: windows - /data: + "/data": tags: - config when: - os: windows - /savegames: + "/savegames": tags: - save when: - os: windows -'Cube & Star: An Arbitrary Love': +"Cube & Star: An Arbitrary Love": files: - /AppData/LocalLow/Doppler Interactive/Cube and Star An Arbitrary Love/PlayerPrefs.txt: + "/AppData/LocalLow/Doppler Interactive/Cube and Star An Arbitrary Love/PlayerPrefs.txt": tags: - save when: @@ -121069,26 +121425,26 @@ Cube: installDir: CubeAndStar_AnArbitraryLove: {} launch: - /Cube and Star An Arbitrary Love: + "/Cube and Star An Arbitrary Love": - when: - os: linux store: steam - /Cube and Star An Arbitrary Love.app: + "/Cube and Star An Arbitrary Love.app": - when: - os: mac store: steam - /Cube and Star PC 32 bit/Cube and Star An Arbitrary Love.exe: + "/Cube and Star PC 32 bit/Cube and Star An Arbitrary Love.exe": - when: - bit: 32 os: windows store: steam - workingDir: /Cube and Star PC 32 bit - /Cube and Star PC 64 bit/Cube and Star An Arbitrary Love.exe: + workingDir: "/Cube and Star PC 32 bit" + "/Cube and Star PC 64 bit/Cube and Star An Arbitrary Love.exe": - when: - bit: 64 os: windows store: steam - workingDir: /Cube and Star PC 64 bit + workingDir: "/Cube and Star PC 64 bit" registry: HKEY_CURRENT_USER/Software/Doppler Interactive/Cube and Star An Arbitrary Love: tags: @@ -121099,36 +121455,36 @@ Cube - The Jumper: installDir: Cube - The Jumper: {} launch: - /ctjgame.exe: + "/ctjgame.exe": - when: - store: steam steam: id: 856440 -'Cube 2: Sauerbraten': +"Cube 2: Sauerbraten": files: - /data: + "/data": tags: - config when: - os: windows - /.sauerbraten: + "/.sauerbraten": tags: - config when: - os: linux - /Library/Application Support/sauerbraten: + "/Library/Application Support/sauerbraten": tags: - config when: - os: mac - /My Games/Sauerbraten: + "/My Games/Sauerbraten": tags: - config when: - os: windows Cube Attack: files: - /AppData/LocalLow/PugStudio/Cube Attack: + "/AppData/LocalLow/PugStudio/Cube Attack": tags: - save when: @@ -121136,7 +121492,7 @@ Cube Attack: installDir: Cube Attack: {} launch: - /Cube Attack.exe: + "/Cube Attack.exe": - when: - store: steam steam: @@ -121150,7 +121506,7 @@ Cube Creator X: installDir: CubeCreatorX: {} launch: - /CubeCreatorX.exe: + "/CubeCreatorX.exe": - when: - bit: 64 os: windows @@ -121161,7 +121517,7 @@ Cube Creatures: installDir: Cube Creatures: {} launch: - /CubeCreatures.exe: + "/CubeCreatures.exe": - when: - os: windows store: steam @@ -121174,11 +121530,11 @@ Cube Defender: installDir: Cube Defender: {} launch: - /Cube Defender.exe: + "/Cube Defender.exe": - when: - os: windows store: steam - /cubeDefender1.4.app: + "/cubeDefender1.4.app": - when: - os: mac store: steam @@ -121188,7 +121544,7 @@ Cube Defender 2000: installDir: Cube Defender: {} launch: - /CubeDefender.exe: + "/CubeDefender.exe": - when: - os: windows store: steam @@ -121198,7 +121554,7 @@ Cube Defense: installDir: Cube Defense: {} launch: - /Cube Defense.exe: + "/Cube Defense.exe": - when: - store: steam steam: @@ -121207,7 +121563,7 @@ Cube Destroyer: installDir: Cube Destroyer: {} launch: - /Cube Destroyer.exe: + "/Cube Destroyer.exe": - when: - os: windows store: steam @@ -121215,7 +121571,7 @@ Cube Destroyer: id: 440760 Cube Escape Collection: files: - /Rusty Lake/CubeEscapeCollection/saveGame.sav: + "/Rusty Lake/CubeEscapeCollection/saveGame.sav": tags: - save when: @@ -121225,19 +121581,19 @@ Cube Escape Collection: installDir: Cube Escape Collection: {} launch: - /CubeEscapeCollection.app: + "/CubeEscapeCollection.app": - when: - os: mac store: steam - /CubeEscapeCollection.exe: + "/CubeEscapeCollection.exe": - when: - os: windows store: steam steam: id: 1292940 -'Cube Escape: Paradox': +"Cube Escape: Paradox": files: - /Rusty Lake/Paradox/saveGame.sav: + "/Rusty Lake/Paradox/saveGame.sav": tags: - save when: @@ -121245,11 +121601,11 @@ Cube Escape Collection: installDir: Cube Escape Paradox: {} launch: - /CubeEscapeParadox.app: + "/CubeEscapeParadox.app": - when: - os: mac store: steam - /CubeEscapeParadox.exe: + "/CubeEscapeParadox.exe": - when: - os: windows store: steam @@ -121259,7 +121615,7 @@ Cube Full of Mines: installDir: Cube Full of Mines: {} launch: - /CubeFullOfMines.exe: + "/CubeFullOfMines.exe": - when: - bit: 64 os: windows @@ -121270,21 +121626,21 @@ Cube Land Arena: installDir: SC Jogos: {} launch: - /Cube Land Arena/Cube Land Arena.exe: + "/Cube Land Arena/Cube Land Arena.exe": - when: - os: windows store: steam steam: id: 450850 -'Cube Life: Island Survival': +"Cube Life: Island Survival": installDir: Cube Life Island Survival: {} launch: - /Cube Life.app: + "/Cube Life.app": - when: - os: mac store: steam - /Cube Life.exe: + "/Cube Life.exe": - when: - os: windows store: steam @@ -121294,11 +121650,11 @@ Cube Link: installDir: Cube Link: {} launch: - /cubelink.exe: + "/cubelink.exe": - when: - os: windows store: steam - /linuxbuild.x86: + "/linuxbuild.x86": - when: - os: linux store: steam @@ -121308,7 +121664,7 @@ Cube Man: installDir: Cube Man: {} launch: - /Cube Man Oficial.exe: + "/Cube Man Oficial.exe": - when: - os: windows store: steam @@ -121318,24 +121674,24 @@ Cube Master: installDir: Cube Master: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam steam: id: 562650 -'Cube Master: Light Adventure': +"Cube Master: Light Adventure": steam: id: 581690 Cube Mission: installDir: Cube Mission: {} launch: - /Cube Mission.exe: + "/Cube Mission.exe": - when: - os: windows store: steam - /Cube Mission.x86_64: + "/Cube Mission.x86_64": - when: - os: linux store: steam @@ -121348,11 +121704,11 @@ Cube Racer: installDir: Cube Racer: {} launch: - /CubeRacer.exe: + "/CubeRacer.exe": - when: - os: windows store: steam - /CubeRacer.x86: + "/CubeRacer.x86": - when: - os: linux store: steam @@ -121362,21 +121718,21 @@ Cube Runner: installDir: Cube Runner: {} launch: - /Cube Runner.app: + "/Cube Runner.app": - when: - os: mac store: steam - /Cube Runner.exe: + "/Cube Runner.exe": - when: - os: windows store: steam steam: id: 567280 -'Cube Samurai: RUN!': +"Cube Samurai: RUN!": installDir: Cube Samurai Run: {} launch: - /CSR.exe: + "/CSR.exe": - when: - os: windows store: steam @@ -121391,8 +121747,8 @@ Cube Universe: installDir: Beosar: {} launch: - /Launcher.exe: - - arguments: '--appid 820070' + "/Launcher.exe": + - arguments: "--appid 820070" when: - bit: 64 os: windows @@ -121407,12 +121763,12 @@ Cube Way 2: id: 769280 Cube World: files: - /Save: + "/Save": tags: - save when: - os: windows - /options.cfg: + "/options.cfg": tags: - config when: @@ -121420,7 +121776,7 @@ Cube World: installDir: Cube World: {} launch: - /cubeworld.exe: + "/cubeworld.exe": - when: - bit: 64 os: windows @@ -121431,7 +121787,7 @@ Cube XL: installDir: CubeXL: {} launch: - /CubeXL.exe: + "/CubeXL.exe": - when: - bit: 64 os: windows @@ -121442,20 +121798,20 @@ Cube Zone: installDir: Cube Zone: {} launch: - /CubeZone.app: + "/CubeZone.app": - when: - os: mac store: steam - /CubeZone.exe: + "/CubeZone.exe": - when: - os: windows store: steam - /CubeZone.x86: + "/CubeZone.x86": - when: - bit: 32 os: linux store: steam - /CubeZone.x86_64: + "/CubeZone.x86_64": - when: - bit: 64 os: linux @@ -121471,12 +121827,12 @@ CubeGun: installDir: CubeGun: {} launch: - /CubeGun.exe: + "/CubeGun.exe": - when: - bit: 64 os: windows store: steam - /CubeGun_32.exe: + "/CubeGun_32.exe": - when: - bit: 32 os: windows @@ -121487,7 +121843,7 @@ CubeHub: installDir: CubeHub: {} launch: - /CubeHub.exe: + "/CubeHub.exe": - when: - os: windows store: steam @@ -121497,7 +121853,7 @@ CubeParkour: installDir: CubeParkour: {} launch: - /CubeParkour.exe: + "/CubeParkour.exe": - when: - os: windows store: steam @@ -121507,7 +121863,7 @@ CubeRace: installDir: CubeRace: {} launch: - /CubeRace.exe: + "/CubeRace.exe": - when: - bit: 64 os: windows @@ -121518,7 +121874,7 @@ CubeRun: installDir: CubeRun: {} launch: - /CubeRun.exe: + "/CubeRun.exe": - when: - os: windows store: steam @@ -121536,7 +121892,7 @@ CubeZ: installDir: CubeZ: {} launch: - /WindowsNoEditor/cubez.exe: + "/WindowsNoEditor/cubez.exe": - when: - os: windows store: steam @@ -121557,7 +121913,7 @@ Cubelz: installDir: Cubelz: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -121565,13 +121921,13 @@ Cubelz: id: 859720 Cubemen: files: - /.config/unity3d/3 Sprockets/Cubemen: + "/.config/unity3d/3 Sprockets/Cubemen": tags: - config - save when: - os: linux - /userdata//207250/remote: + "/userdata//207250/remote": tags: - save when: @@ -121579,15 +121935,15 @@ Cubemen: installDir: Cubemen: {} launch: - /Cubemen.app: + "/Cubemen.app": - when: - os: mac store: steam - /Cubemen.exe: + "/Cubemen.exe": - when: - os: windows store: steam - /startgame.sh: + "/startgame.sh": - when: - os: linux store: steam @@ -121599,13 +121955,13 @@ Cubemen: id: 207250 Cubemen 2: files: - /.config/unity3d/3 Sprockets/Cubemen2: + "/.config/unity3d/3 Sprockets/Cubemen2": tags: - config - save when: - os: linux - /userdata//228440/remote: + "/userdata//228440/remote": tags: - save when: @@ -121613,15 +121969,15 @@ Cubemen 2: installDir: Cubemen 2: {} launch: - /Cubemen2.app: + "/Cubemen2.app": - when: - os: mac store: steam - /Cubemen2.exe: + "/Cubemen2.exe": - when: - os: windows store: steam - /startgame.sh: + "/startgame.sh": - when: - os: linux store: steam @@ -121635,7 +121991,7 @@ Cubeology: installDir: Cubeology: {} launch: - /Cubeology.exe: + "/Cubeology.exe": - when: - store: steam steam: @@ -121644,7 +122000,7 @@ CuberPunk 2089: installDir: CuberPunk 2089: {} launch: - /CuberPunk 2089.exe: + "/CuberPunk 2089.exe": - when: - os: windows store: steam @@ -121659,7 +122015,7 @@ Cubesc: installDir: Cubesc: {} launch: - /cubesc.exe: + "/cubesc.exe": - when: - os: windows store: steam @@ -121669,7 +122025,7 @@ Cubesis: installDir: Cubesis: {} launch: - /Cubesis.exe: + "/Cubesis.exe": - when: - os: windows store: steam @@ -121677,12 +122033,12 @@ Cubesis: id: 318440 Cubetractor: files: - /save.cubt: + "/save.cubt": tags: - save when: - os: windows - /CubetractorSteam/Local Store/save.cubt: + "/CubetractorSteam/Local Store/save.cubt": tags: - save when: @@ -121690,11 +122046,11 @@ Cubetractor: installDir: Cubetractor: {} launch: - /Cubetractor.app: + "/Cubetractor.app": - when: - os: mac store: steam - /Cubetractor.exe: + "/Cubetractor.exe": - when: - os: windows store: steam @@ -121704,11 +122060,11 @@ Cubeverse: installDir: Cubeverse: {} launch: - /Cubeverse.exe: + "/Cubeverse.exe": - when: - os: windows store: steam - /Cubeverse.sh: + "/Cubeverse.sh": - when: - os: linux store: steam @@ -121719,12 +122075,12 @@ Cubians VR: CubiansVR: {} steam: id: 576370 -'Cubians: Combine': +"Cubians: Combine": installDir: Cubians Combine: {} steam: id: 1005470 -'Cubians: Rescue Princess': +"Cubians: Rescue Princess": installDir: CubiansRP: {} steam: @@ -121733,15 +122089,15 @@ Cubic: installDir: Cubic: {} launch: - /Cubic.app: + "/Cubic.app": - when: - os: mac store: steam - /Cubic.exe: + "/Cubic.exe": - when: - os: windows store: steam - /Cubic.x86_64: + "/Cubic.x86_64": - when: - os: linux store: steam @@ -121751,7 +122107,7 @@ Cubic Castles: installDir: Cubic Castles: {} launch: - /Cubic.exe: + "/Cubic.exe": - when: - os: windows store: steam @@ -121761,15 +122117,15 @@ Cubic Color: installDir: Cubic Color: {} launch: - /CubicColor.app/Contents/MacOS/CubicColor: + "/CubicColor.app/Contents/MacOS/CubicColor": - when: - os: mac store: steam - /CubicColor.exe: + "/CubicColor.exe": - when: - os: windows store: steam - /CubicColor_Linux/CubicColor.x86: + "/CubicColor_Linux/CubicColor.x86": - when: - os: linux store: steam @@ -121782,7 +122138,7 @@ Cubic Factory: installDir: Cubic Factory: {} launch: - /Cubic Factory.exe: + "/Cubic Factory.exe": - when: - os: windows store: steam @@ -121792,7 +122148,7 @@ Cubic Kill Array: installDir: Cubic Kill Array: {} launch: - /立方杀阵(Cubic Kill Array).exe: + "/立方杀阵(Cubic Kill Array).exe": - when: - os: windows store: steam @@ -121800,7 +122156,7 @@ Cubic Kill Array: id: 898090 Cubic Neon Nightclub: files: - /userdata//1888810: + "/userdata//1888810": tags: - save when: @@ -121814,7 +122170,7 @@ CubicPanic: installDir: CubicPanic: {} launch: - /CubicPanic.exe: + "/CubicPanic.exe": - when: - os: windows store: steam @@ -121823,20 +122179,23 @@ CubicPanic: Cubicity: steam: id: 335550 -'Cubicity: Slide puzzle': +"Cubicity: Slide puzzle": installDir: Cubicity: {} launch: - /Cubicity.exe: + "/Cubicity.exe": - when: - bit: 32 os: windows store: steam - /Cubicity.x86_64: + - bit: 64 + os: windows + store: steam + "/Cubicity.x86_64": - when: - os: linux store: steam - /Mac OSx.app: + "/Mac OSx.app": - when: - os: mac store: steam @@ -121844,12 +122203,12 @@ Cubicity: id: 970580 Cubicle Quest: files: - /scripts: + "/scripts": tags: - config when: - store: steam - /scripts/Save*.rvdata2: + "/scripts/Save*.rvdata2": tags: - save when: @@ -121857,7 +122216,7 @@ Cubicle Quest: installDir: Cubicle Quest: {} launch: - /scripts/Game.exe: + "/scripts/Game.exe": - when: - os: windows store: steam @@ -121867,15 +122226,15 @@ Cubico: installDir: Cubico: {} launch: - /Cubico.app: + "/Cubico.app": - when: - os: mac store: steam - /Cubico.exe: + "/Cubico.exe": - when: - os: windows store: steam - /cubico.x86_64: + "/cubico.x86_64": - when: - os: linux store: steam @@ -121885,20 +122244,20 @@ Cubicolor: installDir: Cubicolor: {} launch: - /Cubicolor: + "/Cubicolor": - when: - os: linux store: steam - /Cubicolor.app/Contents/MacOS/Cubicolor: + "/Cubicolor.app/Contents/MacOS/Cubicolor": - when: - os: mac store: steam - /cubicolor.win32.exe: + "/cubicolor.win32.exe": - when: - bit: 32 os: windows store: steam - /cubicolor.win64.exe: + "/cubicolor.win64.exe": - when: - bit: 64 os: windows @@ -121912,11 +122271,11 @@ Cubicus Arcanum: installDir: Cubicus Arcanum: {} launch: - /Cubicus Arcanum.app/Contents/MacOS/Cubicus Arcanum: + "/Cubicus Arcanum.app/Contents/MacOS/Cubicus Arcanum": - when: - os: mac store: steam - /Cubicus Arcanum.exe: + "/Cubicus Arcanum.exe": - when: - os: windows store: steam @@ -121926,11 +122285,11 @@ Cubikolor: installDir: Cubikolor: {} launch: - /cubikolor.app: + "/cubikolor.app": - when: - os: mac store: steam - /cubikolor.exe: + "/cubikolor.exe": - when: - os: windows store: steam @@ -121940,7 +122299,7 @@ Cubion: installDir: Cubion: {} launch: - /Cubion.exe: + "/Cubion.exe": - when: - os: windows store: steam @@ -121950,11 +122309,11 @@ Cubiques: installDir: Cubiques: {} launch: - /Cubiques.app: + "/Cubiques.app": - when: - os: mac store: steam - /Cubiques.exe: + "/Cubiques.exe": - when: - os: windows store: steam @@ -121964,11 +122323,11 @@ Cubiques 2: installDir: Cubiques 2: {} launch: - /Cubiques2.app: + "/Cubiques2.app": - when: - os: mac store: steam - /Cubiques2.exe: + "/Cubiques2.exe": - when: - os: windows store: steam @@ -121983,7 +122342,7 @@ Cubistry: installDir: TheIstrys: {} launch: - /TheIstrys.exe: + "/TheIstrys.exe": - when: - bit: 64 os: windows @@ -121994,7 +122353,7 @@ Cubistry Collection Vol. 1: installDir: CubistryColVol01: {} launch: - /CubistryColVol01_x86_64.exe: + "/CubistryColVol01_x86_64.exe": - when: - bit: 64 os: windows @@ -122005,7 +122364,7 @@ Cubit: installDir: Cubit: {} launch: - /Cubit(Remade).exe: + "/Cubit(Remade).exe": - when: - os: windows store: steam @@ -122021,7 +122380,7 @@ Cubixx HD: installDir: Cubixx HD: {} launch: - /Cubixx.exe: + "/Cubixx.exe": - when: - store: steam steam: @@ -122030,15 +122389,15 @@ Cublast HD: installDir: Cublast HD: {} launch: - /Cublast HD.exe: + "/Cublast HD.exe": - when: - os: windows store: steam - /CublastHD.app: + "/CublastHD.app": - when: - os: mac store: steam - /CublastHD.x86_64: + "/CublastHD.x86_64": - when: - os: linux store: steam @@ -122048,7 +122407,7 @@ Cuboid Keeper: installDir: Cuboid Keeper: {} launch: - /Cuboid Keeper.exe: + "/Cuboid Keeper.exe": - when: - os: windows store: steam @@ -122058,20 +122417,20 @@ Cubot: installDir: Cubot: {} launch: - /Cubot.app: + "/Cubot.app": - when: - os: mac store: steam - /Cubot.exe: + "/Cubot.exe": - when: - os: windows store: steam - /Cubot.x86: + "/Cubot.x86": - when: - bit: 32 os: linux store: steam - /Cubot.x86_64: + "/Cubot.x86_64": - when: - bit: 64 os: linux @@ -122082,19 +122441,19 @@ Cubotrox: installDir: Cubotrox: {} launch: - /Cubotrox.app: + "/Cubotrox.app": - when: - os: mac store: steam - /Cubotrox.exe: + "/Cubotrox.exe": - when: - os: windows store: steam steam: id: 526800 -'Cubots: The Origins': +"Cubots: The Origins": files: - /AppData/LocalLow/Street Lamp Games/Cubots The Origins: + "/AppData/LocalLow/Street Lamp Games/Cubots The Origins": tags: - config when: @@ -122102,7 +122461,7 @@ Cubotrox: installDir: Cubots The Origins_Data: {} launch: - /Cubots The Origins.exe: + "/Cubots The Origins.exe": - when: - os: windows store: steam @@ -122117,11 +122476,11 @@ Cubrick: installDir: Cubrick: {} launch: - /Cubrick.app: + "/Cubrick.app": - when: - os: mac store: steam - /Cubrick.exe: + "/Cubrick.exe": - when: - os: windows store: steam @@ -122131,20 +122490,20 @@ Cubway: installDir: Cubway: {} launch: - /Cubway.app: + "/Cubway.app": - when: - os: mac store: steam - /Cubway.exe: + "/Cubway.exe": - when: - os: windows store: steam - /Cubway.x86: + "/Cubway.x86": - when: - bit: 32 os: linux store: steam - /Cubway.x86_64: + "/Cubway.x86_64": - when: - bit: 64 os: linux @@ -122154,9 +122513,9 @@ Cubway: Cuckold Simulator: steam: id: 1196460 -'Cuckold Simulator: Life as a Beta Male Cuck': +"Cuckold Simulator: Life as a Beta Male Cuck": files: - /LocalLow/Team SNEED/CuckoldSimulator: + "/LocalLow/Team SNEED/CuckoldSimulator": tags: - config - save @@ -122165,7 +122524,7 @@ Cuckold Simulator: installDir: CUCKOLD SIMULATOR Life as a Beta Male: {} launch: - /CuckoldSimulator.exe: + "/CuckoldSimulator.exe": - when: - os: windows store: steam @@ -122186,7 +122545,7 @@ Cue Club 2: installDir: Cue Club 2: {} launch: - /cueclub2.exe: + "/cueclub2.exe": - when: - os: windows store: steam @@ -122194,22 +122553,22 @@ Cue Club 2: id: 366690 Cuisineer: files: - /LocalLow/BattleBrew Productions/Cuisineer/save_0.sav: + "/LocalLow/BattleBrew Productions/Cuisineer/save_0.sav": tags: - save when: - os: windows - /LocalLow/BattleBrew Productions/Cuisineer/save_1.sav: + "/LocalLow/BattleBrew Productions/Cuisineer/save_1.sav": tags: - save when: - os: windows - /LocalLow/BattleBrew Productions/Cuisineer/save_2.sav: + "/LocalLow/BattleBrew Productions/Cuisineer/save_2.sav": tags: - save when: - os: windows - /LocalLow/BattleBrew Productions/Cuisineer/settings.asset: + "/LocalLow/BattleBrew Productions/Cuisineer/settings.asset": tags: - config when: @@ -122217,7 +122576,7 @@ Cuisineer: installDir: Cuisineer: {} launch: - /Cuisineer.exe: + "/Cuisineer.exe": - when: - store: steam steam: @@ -122226,25 +122585,25 @@ Cuit: installDir: Cuit: {} launch: - /Cuit.exe: + "/Cuit.exe": - when: - os: windows store: steam steam: id: 614890 -'Culina: Hands in the Kitchen': +"Culina: Hands in the Kitchen": installDir: Culina Hands in the Kitchen: {} launch: - /Culina.app: + "/Culina.app": - when: - os: mac store: steam - /Culina.exe: + "/Culina.exe": - when: - os: windows store: steam - /Culina.x86: + "/Culina.x86": - when: - os: linux store: steam @@ -122252,12 +122611,12 @@ Cuit: id: 364000 Culpa Innata: files: - /Data/SaveGame: + "/Data/SaveGame": tags: - save when: - os: windows - /Options.ini: + "/Options.ini": tags: - config when: @@ -122265,7 +122624,7 @@ Culpa Innata: installDir: Culpa Innata: {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: @@ -122283,13 +122642,13 @@ Cult of the Glitch King: id: 969190 Cult of the Lamb: files: - /AppData/LocalLow/Massive Monster/Cult Of The Lamb/saves: + "/AppData/LocalLow/Massive Monster/Cult Of The Lamb/saves": tags: - config - save when: - os: windows - /Library/Application Support/Massive Monster/Cult Of The Lamb/saves: + "/Library/Application Support/Massive Monster/Cult Of The Lamb/saves": tags: - config - save @@ -122299,10 +122658,10 @@ Cult of the Lamb: id: 2034949552 id: gogExtra: - - 1903774438 - - 1328365634 - 1239694449 + - 1328365634 - 1779108809 + - 1903774438 steamExtra: - 1944680 - 2013550 @@ -122314,11 +122673,11 @@ Cult of the Lamb: installDir: Cult of the Lamb: {} launch: - /Cult Of The Lamb.app: + "/Cult Of The Lamb.app": - when: - os: mac store: steam - /Cult Of The Lamb.exe: + "/Cult Of The Lamb.exe": - when: - os: windows store: steam @@ -122332,25 +122691,25 @@ Cult of the Wind: installDir: CultOfTheWind: {} launch: - /cultofthewind.app: + "/cultofthewind.app": - when: - os: mac store: steam - /cultofthewind.exe: + "/cultofthewind.exe": - when: - os: windows store: steam - /cultofthewind.x86: + "/cultofthewind.x86": - when: - os: linux store: steam steam: id: 293840 -'Cult: Fear Inside': +"Cult: Fear Inside": installDir: Cult Fear Inside: {} launch: - /Cult Fear Insdie.exe: + "/Cult Fear Insdie.exe": - when: - os: windows store: steam @@ -122358,17 +122717,17 @@ Cult of the Wind: id: 622610 Cultic: files: - /CULTIC_Data/Preferences.xml: + "/CULTIC_Data/Preferences.xml": tags: - config when: - os: windows - /CULTIC_Data/Profiles: + "/CULTIC_Data/Profiles": tags: - save when: - os: windows - /CULTIC_Data/Saves: + "/CULTIC_Data/Saves": tags: - save when: @@ -122376,7 +122735,7 @@ Cultic: installDir: CULTIC: {} launch: - /CULTIC.exe: + "/CULTIC.exe": - when: - bit: 64 os: windows @@ -122385,32 +122744,32 @@ Cultic: id: 1684930 Cultist Simulator: files: - /.config/unity3d/Weather Factory/Cultist Simulator: + "/.config/unity3d/Weather Factory/Cultist Simulator": tags: - config when: - os: linux - /.config/unity3d/Weather Factory/Cultist Simulator/save.txt: + "/.config/unity3d/Weather Factory/Cultist Simulator/save.txt": tags: - save when: - os: linux - /AppData/LocalLow/Weather Factory/Cultist Simulator/config.ini: + "/AppData/LocalLow/Weather Factory/Cultist Simulator/config.ini": tags: - config when: - os: windows - /AppData/LocalLow/Weather Factory/Cultist Simulator/save.txt: + "/AppData/LocalLow/Weather Factory/Cultist Simulator/save.txt": tags: - save when: - os: windows - /Library/Application Support/biz.weatherfactory.cultistsimulator/config.ini: + "/Library/Application Support/biz.weatherfactory.cultistsimulator/config.ini": tags: - config when: - os: mac - /Library/Application Support/biz.weatherfactory.cultistsimulator/save.txt: + "/Library/Application Support/biz.weatherfactory.cultistsimulator/save.txt": tags: - save when: @@ -122420,15 +122779,15 @@ Cultist Simulator: installDir: Cultist Simulator: {} launch: - /CS.x86_64: + "/CS.x86_64": - when: - os: linux store: steam - /OSX.app/Contents/MacOS/Cultist Simulator: + "/OSX.app/Contents/MacOS/Cultist Simulator": - when: - os: mac store: steam - /cultistsimulator.exe: + "/cultistsimulator.exe": - when: - os: windows store: steam @@ -122442,11 +122801,11 @@ Cults and Daggers: installDir: Cults and Daggers: {} launch: - /cnd.app: + "/cnd.app": - when: - os: mac store: steam - /cnd.exe: + "/cnd.exe": - when: - os: windows store: steam @@ -122458,38 +122817,38 @@ Cultures - 8th Wonder of the World: installDir: Cultures 8th Wonder: {} launch: - /Editor.exe: + "/Editor.exe": - when: - os: windows store: steam - /Game.exe: + "/Game.exe": - when: - os: windows store: steam steam: id: 351870 -'Cultures 2: The Gates of Asgard': +"Cultures 2: The Gates of Asgard": files: - /Save: + "/Save": tags: - save when: - os: windows - /Save/opt_game.ini & opt_glob.ini: + "/Save/opt_game.ini & opt_glob.ini": tags: - config when: - os: windows gog: id: 1207663813 -'Cultures: The Discovery of Vinland': +"Cultures: The Discovery of Vinland": files: - /Game.cif: + "/Game.cif": tags: - config when: - os: windows - /Save: + "/Save": tags: - save when: @@ -122500,7 +122859,7 @@ Cumming Hotel - A Gay Furry Slice of Life: installDir: Cumming Hotel - A Gay Furry Slice of Life: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -122510,7 +122869,7 @@ Cumulus: installDir: Cumulus: {} launch: - /Cumulus.exe: + "/Cumulus.exe": - when: - os: windows store: steam @@ -122523,7 +122882,7 @@ Cup Of Ethanol: installDir: Cup Of Ethanol: {} launch: - /CupOfEthanolFNA.exe: + "/CupOfEthanolFNA.exe": - when: - os: windows store: steam @@ -122534,12 +122893,12 @@ CupGuess: id: 1022370 Cuphead: files: - /Cuphead: + "/Cuphead": tags: - save when: - os: windows - /Packages/StudioMDHR.20872A364DAA1_tm1s6a95559gt/SystemAppData/wgs: + "/Packages/StudioMDHR.20872A364DAA1_tm1s6a95559gt/SystemAppData/wgs": tags: - save when: @@ -122555,11 +122914,11 @@ Cuphead: installDir: Cuphead: {} launch: - /Cuphead.app/Contents/MacOS/Cuphead: + "/Cuphead.app/Contents/MacOS/Cuphead": - when: - os: mac store: steam - /Cuphead.exe: + "/Cuphead.exe": - when: - os: windows store: steam @@ -122573,15 +122932,15 @@ Cupid: installDir: CUPID - A free to play Visual Novel: {} launch: - /CupidVN.app: + "/CupidVN.app": - when: - os: mac store: steam - /CupidVN.exe: + "/CupidVN.exe": - when: - os: windows store: steam - /CupidVN.sh: + "/CupidVN.sh": - when: - os: linux store: steam @@ -122599,7 +122958,7 @@ Curfew: installDir: Curfew: {} launch: - /CURFEW.exe: + "/CURFEW.exe": - when: - os: windows store: steam @@ -122609,7 +122968,7 @@ Curiosity: installDir: Curiosity: {} launch: - /Curiosity.exe: + "/Curiosity.exe": - when: - os: windows store: steam @@ -122619,7 +122978,7 @@ Curious Cases: installDir: CuriousCases: {} launch: - /CuriousCases.exe: + "/CuriousCases.exe": - when: - os: windows store: steam @@ -122627,17 +122986,17 @@ Curious Cases: id: 1045080 Curious Expedition: files: - /.config/TheCuriousExpedition: + "/.config/TheCuriousExpedition": tags: - save when: - os: linux - /Documents/TheCuriousExpedition: + "/Documents/TheCuriousExpedition": tags: - save when: - os: mac - /Maschinen-Mensch/TheCuriousExpedition: + "/Maschinen-Mensch/TheCuriousExpedition": tags: - save when: @@ -122647,15 +123006,15 @@ Curious Expedition: installDir: The Curious Expedition: {} launch: - /The Curious Expedition: + "/The Curious Expedition": - when: - os: linux store: steam - /The Curious Expedition.exe: + "/The Curious Expedition.exe": - when: - os: windows store: steam - /run_app.sh: + "/run_app.sh": - when: - bit: 64 os: mac @@ -122664,7 +123023,7 @@ Curious Expedition: id: 358130 Curious Expedition 2: files: - /AppData/LocalLow/Maschinen-Mensch/Curious Expedition 2: + "/AppData/LocalLow/Maschinen-Mensch/Curious Expedition 2": tags: - save when: @@ -122674,7 +123033,7 @@ Curious Expedition 2: installDir: Curious Expedition 2: {} launch: - /CE2.exe: + "/CE2.exe": - when: - bit: 64 os: windows @@ -122685,11 +123044,11 @@ Curling World Cup: installDir: Curling World Cup: {} launch: - /Curling World Cup.app/Contents/MacOS/Curling World Cup: + "/Curling World Cup.app/Contents/MacOS/Curling World Cup": - when: - os: mac store: steam - /Curling World Cup.exe: + "/Curling World Cup.exe": - when: - os: windows store: steam @@ -122702,7 +123061,7 @@ Current: installDir: Current: {} launch: - /Current/Project_Current.exe: + "/Current/Project_Current.exe": - when: - store: steam steam: @@ -122711,26 +123070,26 @@ Curse: installDir: CURSE: {} launch: - /Curse.app/Contents/MacOS/Curse: + "/Curse.app/Contents/MacOS/Curse": - when: - bit: 64 os: mac store: steam - /Curse.exe: + "/Curse.exe": - when: - bit: 64 os: windows store: steam - /Curse.x86_64: + "/Curse.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 510570 -'Curse Crackers: For Whom the Belle Toils': +"Curse Crackers: For Whom the Belle Toils": files: - /AppData/LocalLow/Colorgrave/Curse Crackers Belle: + "/AppData/LocalLow/Colorgrave/Curse Crackers Belle": tags: - config - save @@ -122739,7 +123098,7 @@ Curse: installDir: Curse Crackers For Whom the Belle Toils: {} launch: - /Curse Crackers Belle.exe: + "/Curse Crackers Belle.exe": - when: - os: windows store: steam @@ -122749,7 +123108,7 @@ Curse in our heads: installDir: Curse in our heads: {} launch: - /curse.exe: + "/curse.exe": - when: - os: windows store: steam @@ -122759,7 +123118,7 @@ Curse of Anabelle: installDir: Curse of Anabelle: {} launch: - /CurseofAnabelle.exe: + "/CurseofAnabelle.exe": - when: - bit: 64 os: windows @@ -122770,8 +123129,11 @@ Curse of Mermos: installDir: Curse of Mermos: {} launch: - /Curse Of Mermos.exe: + "/Curse Of Mermos.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam @@ -122781,21 +123143,21 @@ Curse of the Assassin: installDir: Curse of the Assassin: {} launch: - /Gamebook Adventures Curse of the Assassin.app: + "/Gamebook Adventures Curse of the Assassin.app": - when: - bit: 64 os: mac store: steam - /Gamebook Adventures Curse of the Assassin.exe: + "/Gamebook Adventures Curse of the Assassin.exe": - when: - os: windows store: steam - /Gamebook Adventures Curse of the Assassin.x86: + "/Gamebook Adventures Curse of the Assassin.x86": - when: - bit: 32 os: linux store: steam - /Gamebook Adventures Curse of the Assassin.x86_64: + "/Gamebook Adventures Curse of the Assassin.x86_64": - when: - bit: 64 os: linux @@ -122808,12 +123170,12 @@ Curse of the Assassin: id: 335450 Curse of the Azure Bonds: files: - /CURSE.CFG: + "/CURSE.CFG": tags: - config when: - os: dos - /SAVE: + "/SAVE": tags: - save when: @@ -122824,12 +123186,12 @@ Curse of the Azure Bonds: id: 1904520 Curse of the Crescent Isle DX: files: - /CurseDXSettings.sav: + "/CurseDXSettings.sav": tags: - config when: - os: windows - /SaveFile.sav: + "/SaveFile.sav": tags: - save when: @@ -122837,21 +123199,21 @@ Curse of the Crescent Isle DX: installDir: Curse of the Crescent Isle DX: {} launch: - /CotCIDX.app: + "/CotCIDX.app": - when: - os: mac store: steam - /CotCIDX.bin.x86: + "/CotCIDX.bin.x86": - when: - bit: 32 os: linux store: steam - /CotCIDX.bin.x86_64: + "/CotCIDX.bin.x86_64": - when: - bit: 64 os: linux store: steam - /CotCIDX.exe: + "/CotCIDX.exe": - when: - os: windows store: steam @@ -122859,13 +123221,13 @@ Curse of the Crescent Isle DX: id: 365120 Curse of the Dead Gods: files: - /Saved Games/Curse of the Dead Gods: + "/Saved Games/Curse of the Dead Gods": tags: - config - save when: - os: windows - /steamapps/common/Curse of the Dead Gods/TempleResources/_Saves: + "/steamapps/common/Curse of the Dead Gods/TempleResources/_Saves": tags: - save when: @@ -122875,7 +123237,7 @@ Curse of the Dead Gods: installDir: Curse of the Dead Gods: {} launch: - /Curse of the Dead Gods.exe: + "/Curse of the Dead Gods.exe": - when: - os: windows store: steam @@ -122890,7 +123252,7 @@ Curse of the Great Forest: installDir: Curse of the Great Forest: {} launch: - /Curse of the Great Forest.exe: + "/Curse of the Great Forest.exe": - when: - os: windows store: steam @@ -122900,19 +123262,19 @@ Curse of the Old Gods: installDir: Curse of the Old Gods: {} launch: - /Curse of the Old Gods.exe: + "/Curse of the Old Gods.exe": - when: - store: steam steam: id: 756100 Curse of the Sea Rats: files: - /AppData/LocalLow/Petoons Studio/Curse Of The Sea Rats/SaveData/SaveData*.game: + "/AppData/LocalLow/Petoons Studio/Curse Of The Sea Rats/SaveData/SaveData*.game": tags: - save when: - os: windows - /AppData/LocalLow/Petoons Studio/Curse Of The Sea Rats/SaveData/Settings.settings: + "/AppData/LocalLow/Petoons Studio/Curse Of The Sea Rats/SaveData/Settings.settings": tags: - config when: @@ -122925,7 +123287,7 @@ Curse of the Sea Rats: installDir: Curse of the Sea Rats: {} launch: - /Curse Of The Sea Rats.exe: + "/Curse Of The Sea Rats.exe": - when: - store: steam registry: @@ -122938,15 +123300,15 @@ Curse of the dungeon: installDir: Curse of the dungeon: {} launch: - /Curse Of The Dungeon.exe: + "/Curse Of The Dungeon.exe": - when: - os: windows store: steam steam: id: 1174810 -'Curse: The Eye of Isis': +"Curse: The Eye of Isis": files: - /Game.cfg: + "/Game.cfg": tags: - config when: @@ -122956,7 +123318,7 @@ Curse of the dungeon: installDir: Curse The Eye of Isis: {} launch: - /RunCurse.exe: + "/RunCurse.exe": - when: - os: windows store: steam @@ -122964,22 +123326,22 @@ Curse of the dungeon: id: 302210 Cursed: files: - /.jetdogs/cursed/*.sav: + "/.jetdogs/cursed/*.sav": tags: - save when: - os: linux - /.jetdogs/cursed/options.cfg: + "/.jetdogs/cursed/options.cfg": tags: - config when: - os: linux - /Jetdogs Studios/Cursed/*.sav: + "/Jetdogs Studios/Cursed/*.sav": tags: - save when: - os: windows - /Jetdogs Studios/Cursed/options.cfg: + "/Jetdogs Studios/Cursed/options.cfg": tags: - config when: @@ -122987,11 +123349,11 @@ Cursed: installDir: Cursed: {} launch: - /cursed: + "/cursed": - when: - os: linux store: steam - /cursed.exe: + "/cursed.exe": - when: - os: windows store: steam @@ -123001,14 +123363,14 @@ Cursed Armor: installDir: 诅咒铠甲: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: id: 907090 Cursed Castilla (Maldita Castilla EX): files: - /Cursed_Castilla: + "/Cursed_Castilla": tags: - config - save @@ -123017,7 +123379,7 @@ Cursed Castilla (Maldita Castilla EX): installDir: Cursed_Castilla: {} launch: - /Cursed_Castilla.exe: + "/Cursed_Castilla.exe": - when: - os: windows store: steam @@ -123030,7 +123392,7 @@ Cursed Isles: installDir: CursedIsles: {} launch: - /CursedIsles.exe: + "/CursedIsles.exe": - when: - os: windows store: steam @@ -123040,15 +123402,15 @@ Cursed Lands: installDir: CursedLands: {} launch: - /CursedLands.app: + "/CursedLands.app": - when: - os: mac store: steam - /CursedLands.exe: + "/CursedLands.exe": - when: - os: windows store: steam - /CursedLands.sh: + "/CursedLands.sh": - when: - os: linux store: steam @@ -123058,7 +123420,7 @@ Cursed Mansion: installDir: Cursed Mansion: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -123066,7 +123428,7 @@ Cursed Mansion: id: 967120 Cursed Mountain: files: - /Deep Silver/Cursed Mountain: + "/Deep Silver/Cursed Mountain": tags: - config - save @@ -123079,23 +123441,23 @@ Cursed Pagoda: installDir: Cursed Pagoda: {} launch: - /Cursed Pagoda.exe: + "/Cursed Pagoda.exe": - when: - bit: 64 os: windows store: steam - /cursed_pagoda.app: + "/cursed_pagoda.app": - when: - os: mac store: steam steam: id: 1181940 -'Cursed Queen: Wicked Witch': +"Cursed Queen: Wicked Witch": installDir: Cursed Queen Wicked Witch: {} launch: - /nw.exe: - - arguments: '--in-process-gpu' + "/nw.exe": + - arguments: "--in-process-gpu" when: - bit: 64 os: windows @@ -123106,7 +123468,7 @@ Cursed Roots: installDir: Cursed Roots: {} launch: - /Cursed Roots.exe: + "/Cursed Roots.exe": - when: - os: windows store: steam @@ -123116,15 +123478,15 @@ Cursed Sight: installDir: Cursed Sight: {} launch: - /cursed_sight.app: + "/cursed_sight.app": - when: - os: mac store: steam - /cursed_sight.exe: + "/cursed_sight.exe": - when: - os: windows store: steam - /cursed_sight.sh: + "/cursed_sight.sh": - when: - os: linux store: steam @@ -123134,17 +123496,17 @@ Cursed Treasure 2: installDir: Cursed Treasure 2: {} launch: - /Cursed TD2: + "/Cursed TD2": - when: - bit: 64 os: linux store: steam - /Cursed TD2.app/Contents/MacOS/Cursed TD2: + "/Cursed TD2.app/Contents/MacOS/Cursed TD2": - when: - bit: 64 os: mac store: steam - /Cursed TD2.exe: + "/Cursed TD2.exe": - when: - os: windows store: steam @@ -123154,7 +123516,7 @@ Cursed Treasure 2 Ultimate Edition: installDir: Cursed Treasure 2 Ultimate Edition: {} launch: - /cursed-treasure-2.exe: + "/cursed-treasure-2.exe": - when: - bit: 64 os: windows @@ -123165,7 +123527,7 @@ Cursed West: installDir: Cursed West: {} launch: - /cursedwest.exe: + "/cursedwest.exe": - when: - os: windows store: steam @@ -123180,31 +123542,31 @@ Cursed to Golf: installDir: Cursed to Golf: {} launch: - /Cursed to Golf.exe: + "/Cursed to Golf.exe": - when: - os: windows store: steam steam: id: 1726120 -'Cursery: The Crooked Man and the Crooked Cat': +"Cursery: The Crooked Man and the Crooked Cat": installDir: - Cursery The Crooked Man and the Crooked Cat Collector's Edition: {} + "Cursery The Crooked Man and the Crooked Cat Collector's Edition": {} launch: - /Cursery_TheCrookedManAndTheCrookedCat_CE.exe: + "/Cursery_TheCrookedManAndTheCrookedCat_CE.exe": - when: - os: windows store: steam steam: id: 622200 -Curses 'N Chaos: +"Curses 'N Chaos": installDir: CursesNChaos: {} launch: - /CursesNChaos.app: + "/CursesNChaos.app": - when: - os: mac store: steam - /CursesnChaos.exe: + "/CursesnChaos.exe": - when: - os: windows store: steam @@ -123214,7 +123576,7 @@ Cursor - by Mr iLyn.: installDir: Cursor - by Mr iLyn: {} launch: - /cursor.exe: + "/cursor.exe": - when: - store: steam steam: @@ -123223,7 +123585,7 @@ Cursor Challenge: installDir: Cursor Challenge: {} launch: - /Cursor Challenge.exe: + "/Cursor Challenge.exe": - when: - os: windows store: steam @@ -123233,16 +123595,19 @@ Curvatron: installDir: Curvatron: {} launch: - /curvatron.exe: + "/curvatron.exe": - when: - os: windows store: steam - /nw: + "/nw": - when: - bit: 32 os: linux store: steam - /nwjs.app: + - bit: 64 + os: linux + store: steam + "/nwjs.app": - when: - os: mac store: steam @@ -123257,7 +123622,7 @@ Curved Space: installDir: Curved Space: {} launch: - /Curved Space.exe: + "/Curved Space.exe": - when: - os: windows store: steam @@ -123267,7 +123632,7 @@ Curves: installDir: Curves: {} launch: - /Curves.exe: + "/Curves.exe": - when: - bit: 64 os: windows @@ -123278,7 +123643,7 @@ Curvy: installDir: Curvy: {} launch: - /Curvy.exe: + "/Curvy.exe": - when: - os: windows store: steam @@ -123286,7 +123651,7 @@ Curvy: id: 699360 Custom Town: files: - /HTP/data/realestate: + "/HTP/data/realestate": tags: - save when: @@ -123294,11 +123659,11 @@ Custom Town: installDir: Custom Town: {} launch: - /htp.bat: + "/htp.bat": - when: - os: windows store: steam - /htp.exe: + "/htp.exe": - when: - os: windows store: steam @@ -123308,15 +123673,15 @@ Customer Cums First!: installDir: Customer Cums First!: {} launch: - /CustomerCumsFirst.app: + "/CustomerCumsFirst.app": - when: - os: mac store: steam - /CustomerCumsFirst.exe: + "/CustomerCumsFirst.exe": - when: - os: windows store: steam - /CustomerCumsFirst.sh: + "/CustomerCumsFirst.sh": - when: - os: linux store: steam @@ -123331,7 +123696,7 @@ Cut Smash Wrap: installDir: Cut Smash Wrap: {} launch: - /nw.exe: + "/nw.exe": - when: - bit: 64 os: windows @@ -123342,14 +123707,14 @@ Cut The Ex-Girlfriends: installDir: Cut The Ex-girlfriends: {} launch: - /CTEG.exe: + "/CTEG.exe": - when: - store: steam steam: id: 868970 Cut the Rope: files: - /SavedGames/CutTheRope/Preferences/Player1: + "/SavedGames/CutTheRope/Preferences/Player1": tags: - save when: @@ -123357,7 +123722,7 @@ Cut the Rope: installDir: CutTheRope: {} launch: - /CutTheRopeApp.exe: + "/CutTheRopeApp.exe": - when: - os: windows store: steam @@ -123365,7 +123730,7 @@ Cut the Rope: id: 223280 Cut the Rope Remastered: files: - /Library/Containers/Cut the Rope/Data/Library/Application Support/com.paladinstudios.ctr: + "/Library/Containers/Cut the Rope/Data/Library/Application Support/com.paladinstudios.ctr": tags: - save when: @@ -123374,7 +123739,7 @@ Cute (Hard) Puzzle: installDir: CutePuzzle: {} launch: - /Cute(Hard)Puzzle.exe: + "/Cute(Hard)Puzzle.exe": - when: - bit: 64 os: windows @@ -123385,15 +123750,15 @@ Cute Adventure: installDir: super island survival: {} launch: - /super island survival.app: + "/super island survival.app": - when: - os: mac store: steam - /superIslandSurvival.exe: + "/superIslandSurvival.exe": - when: - os: windows store: steam - /superIslandSurvival.x86_64: + "/superIslandSurvival.x86_64": - when: - os: linux store: steam @@ -123403,7 +123768,7 @@ Cute Blocks: installDir: Cute Blocks: {} launch: - /Cute Blocks.exe: + "/Cute Blocks.exe": - when: - store: steam steam: @@ -123412,7 +123777,7 @@ Cute Cats PuZZles: installDir: Cute Cats PuZZles: {} launch: - /HentaiPuZZles.exe: + "/HentaiPuZZles.exe": - when: - bit: 64 os: windows @@ -123428,7 +123793,7 @@ Cute Girls 可爱的女孩: installDir: Cute Girls PC: {} launch: - /cutegirlspc.exe: + "/cutegirlspc.exe": - when: - bit: 64 os: windows @@ -123442,7 +123807,7 @@ Cute Honey: installDir: Cute Honey: {} launch: - /CuteHoney.exe: + "/CuteHoney.exe": - when: - bit: 64 os: windows @@ -123453,7 +123818,7 @@ Cute Honey 2: installDir: Cute Honey 2: {} launch: - /CuteHoney2.exe: + "/CuteHoney2.exe": - when: - os: windows store: steam @@ -123463,11 +123828,11 @@ Cute Monsters Battle Arena: installDir: Cute Monsters Battle Arena: {} launch: - /CuteMonstersBattleArena.app: + "/CuteMonstersBattleArena.app": - when: - os: mac store: steam - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -123477,7 +123842,7 @@ Cute Puzzle: installDir: Cute Puzzle: {} launch: - /WC_Puzzle.exe: + "/WC_Puzzle.exe": - when: - os: windows store: steam @@ -123487,7 +123852,7 @@ Cute Puzzle MAX: installDir: Cute Puzzle MAX: {} launch: - /WC_Puzzle.exe: + "/WC_Puzzle.exe": - when: - os: windows store: steam @@ -123497,7 +123862,7 @@ Cute Puzzle SP (Naked Story Ver): installDir: Cute Puzzle SP (Naked Story Ver): {} launch: - /CutePuzzleSP.exe: + "/CutePuzzleSP.exe": - when: - os: windows store: steam @@ -123507,25 +123872,25 @@ Cute Things Dying Violently: installDir: CuteThingsDyingViolently: {} launch: - /CuteThingsDyingViolently.app: + "/CuteThingsDyingViolently.app": - when: - os: mac store: steam - /ctdv.exe: + "/ctdv.exe": - when: - os: windows store: steam - /ctdv.x86: + "/ctdv.x86": - when: - os: linux store: steam steam: id: 305820 -'Cute War: Zero': +"Cute War: Zero": installDir: Cute War:Zero: {} launch: - /CuteWar0.exe: + "/CuteWar0.exe": - when: - bit: 64 os: windows @@ -123534,18 +123899,18 @@ Cute Things Dying Violently: id: 780930 CuteSnake: installDir: - '#CuteSnake': {} + "#CuteSnake": {} launch: - /SN1.exe: + "/SN1.exe": - when: - store: steam steam: id: 782100 CuteSnake 2: installDir: - '#CuteSnake 2': {} + "#CuteSnake 2": {} launch: - /CuteSnake2.exe: + "/CuteSnake2.exe": - when: - store: steam steam: @@ -123554,7 +123919,7 @@ Cutie Paws: installDir: Cutie Paws: {} launch: - /CutiePaws.exe: + "/CutiePaws.exe": - when: - os: windows store: steam @@ -123567,7 +123932,7 @@ Cuties Dungeon: installDir: Cuties Dungeon: {} launch: - /CutiesDungeon.exe: + "/CutiesDungeon.exe": - when: - os: windows store: steam @@ -123577,7 +123942,7 @@ Cutish: installDir: Cutish: {} launch: - /cutish_complet.exe: + "/cutish_complet.exe": - when: - os: windows store: steam @@ -123592,20 +123957,20 @@ Cutthroat: installDir: Cutthroat: {} launch: - /Cutthroat.app/Contents/MacOS/Universal: + "/Cutthroat.app/Contents/MacOS/Universal": - when: - os: mac store: steam - /Cutthroat.exe: + "/Cutthroat.exe": - when: - os: windows store: steam - /Cutthroat.x86: + "/Cutthroat.x86": - when: - bit: 32 os: linux store: steam - /Cutthroat.x86_64: + "/Cutthroat.x86_64": - when: - bit: 64 os: linux @@ -123616,14 +123981,14 @@ Cutthroat Gunboat: installDir: Cutthroat Gunboat: {} launch: - /Cutthroat Gunboat.exe: + "/Cutthroat Gunboat.exe": - when: - store: steam steam: id: 661220 CyClones: files: - /CLOUD_SAVES/CYCLONE: + "/CLOUD_SAVES/CYCLONE": tags: - save when: @@ -123633,8 +123998,8 @@ CyClones: installDir: CyClones: {} launch: - /DOSBOX/dosbox.exe: - - arguments: '-noconsole -conf cyclones-base.conf -conf cyclones-graphics.conf -conf cyclones-game.conf' + "/DOSBOX/dosbox.exe": + - arguments: "-noconsole -conf cyclones-base.conf -conf cyclones-graphics.conf -conf cyclones-game.conf" when: - store: steam steam: @@ -123643,7 +124008,7 @@ Cyadonia: installDir: Cyadonia: {} launch: - /cyadonia.exe: + "/cyadonia.exe": - when: - os: windows store: steam @@ -123653,25 +124018,25 @@ Cyanide & Happiness - Freakpocalypse: installDir: Cyanide & Happiness Freakpocalypse: {} launch: - /Freakpocalypse.app: + "/Freakpocalypse.app": - when: - os: mac store: steam - /Freakpocalypse.exe: + "/Freakpocalypse.exe": - when: - os: windows store: steam - /Freakpocalypse_HPTH_1.09d_Linux.x86_64: + "/Freakpocalypse_HPTH_1.09d_Linux.x86_64": - when: - os: linux store: steam steam: id: 869880 -'Cybarian: The Time Travelling Warrior': +"Cybarian: The Time Travelling Warrior": installDir: Cybarian The Time Travelling Warrior: {} launch: - /Cybarian.exe: + "/Cybarian.exe": - when: - os: windows store: steam @@ -123681,7 +124046,7 @@ Cyber Agent: installDir: Cyber Agent: {} launch: - /CyberAgent.exe: + "/CyberAgent.exe": - when: - os: windows store: steam @@ -123696,15 +124061,15 @@ Cyber Chicken: installDir: CyberChicken: {} launch: - /CC.app: + "/CC.app": - when: - os: mac store: steam - /CC.exe: + "/CC.exe": - when: - os: windows store: steam - /CC.x86: + "/CC.x86": - when: - os: linux store: steam @@ -123714,21 +124079,21 @@ Cyber City: installDir: Cyber City: {} launch: - /CyberCity.exe: + "/CyberCity.exe": - when: - bit: 64 os: windows store: steam steam: id: 1061930 -'Cyber City 2157: The Visual Novel': +"Cyber City 2157: The Visual Novel": files: - /renpy/dream-1450895417/*.save: + "/renpy/dream-1450895417/*.save": tags: - save when: - os: windows - /renpy/dream-1450895417/persistent: + "/renpy/dream-1450895417/persistent": tags: - config when: @@ -123736,15 +124101,15 @@ Cyber City: installDir: Cyber City 2157: {} launch: - /Cyber City 2157.app: + "/Cyber City 2157.app": - when: - os: mac store: steam - /Cyber City 2157.exe: + "/Cyber City 2157.exe": - when: - os: windows store: steam - /Cyber City 2157.sh: + "/Cyber City 2157.sh": - when: - os: linux store: steam @@ -123754,11 +124119,11 @@ Cyber Complex: installDir: CyberComplex: {} launch: - /CyberComplex.exe: + "/CyberComplex.exe": - when: - os: windows store: steam - /run.sh: + "/run.sh": - when: - os: linux store: steam @@ -123766,7 +124131,7 @@ Cyber Complex: id: 600440 Cyber Crush 2069: files: - /CyberCrush_Data/Saves: + "/CyberCrush_Data/Saves": tags: - save when: @@ -123774,7 +124139,7 @@ Cyber Crush 2069: installDir: Cyber Crush 2069: {} launch: - /CyberCrush.exe: + "/CyberCrush.exe": - when: - store: steam steam: @@ -123783,7 +124148,7 @@ Cyber Escape: installDir: Cyber Escape: {} launch: - /CyberEscape.exe: + "/CyberEscape.exe": - when: - store: steam steam: @@ -123795,7 +124160,7 @@ Cyber Gun: installDir: Cyber Gun: {} launch: - /Cyber Gun.exe: + "/Cyber Gun.exe": - when: - os: windows store: steam @@ -123807,7 +124172,7 @@ Cyber Hook: installDir: Cyber Hook: {} launch: - /CyberHook.exe: + "/CyberHook.exe": - when: - os: windows store: steam @@ -123821,7 +124186,7 @@ Cyber Hunter: installDir: Cyber Hunter: {} launch: - /launcher.exe: + "/launcher.exe": - when: - os: windows store: steam @@ -123834,7 +124199,7 @@ Cyber Jolt: id: 580680 Cyber Ops: files: - /Library/Preferences/com.OctetoStudios.TacticalOperator.plist: + "/Library/Preferences/com.OctetoStudios.TacticalOperator.plist": tags: - config - save @@ -123843,11 +124208,11 @@ Cyber Ops: installDir: Cyber Ops: {} launch: - /Cyber Ops.app: + "/Cyber Ops.app": - when: - os: mac store: steam - /Cyber Ops.exe: + "/Cyber Ops.exe": - when: - os: windows store: steam @@ -123857,7 +124222,7 @@ Cyber OutRun: installDir: Cyber OutRun: {} launch: - /CyberOutRun.exe: + "/CyberOutRun.exe": - when: - bit: 64 os: windows @@ -123868,7 +124233,7 @@ Cyber Pussy 2020: installDir: Cyber Pussy 2020: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: @@ -123880,7 +124245,7 @@ Cyber Rage Retribution: installDir: Cyber Rage Retribution: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -123890,20 +124255,20 @@ Cyber Sentinel: installDir: Cyber Sentinel: {} launch: - /Cyber Sentinel.app: + "/Cyber Sentinel.app": - when: - os: mac store: steam - /Cyber Sentinel.exe: + "/Cyber Sentinel.exe": - when: - os: windows store: steam - /Cyber Sentinel.x86: + "/Cyber Sentinel.x86": - when: - bit: 32 os: linux store: steam - /Cyber Sentinel.x86_64: + "/Cyber Sentinel.x86_64": - when: - bit: 64 os: linux @@ -123912,12 +124277,12 @@ Cyber Sentinel: id: 485970 Cyber Shadow: files: - /Yacht Club Games/CyberShadow/save: + "/Yacht Club Games/CyberShadow/save": tags: - save when: - os: windows - /Yacht Club Games/CyberShadow/settings: + "/Yacht Club Games/CyberShadow/settings": tags: - config when: @@ -123927,15 +124292,15 @@ Cyber Shadow: installDir: Cyber Shadow: {} launch: - /CyberShadow.app: + "/CyberShadow.app": - when: - os: mac store: steam - /CyberShadow.exe: + "/CyberShadow.exe": - when: - os: windows store: steam - /CyberShadow/run.sh: + "/CyberShadow/run.sh": - when: - os: linux store: steam @@ -123945,7 +124310,7 @@ Cyber Surf: installDir: CyberSurf: {} launch: - /CyberSurfSteamBuild2.0.exe: + "/CyberSurfSteamBuild2.0.exe": - when: - bit: 64 os: windows @@ -123956,24 +124321,24 @@ Cyber Team Manager: installDir: Cyber Team Manager: {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: id: 415080 Cyber Troopers Virtual-On: files: - /BkUp.bin: + "/BkUp.bin": tags: - save when: - os: windows - /v_on.ini: + "/v_on.ini": tags: - config when: - os: windows - /V_ON.INI: + "/V_ON.INI": tags: - config when: @@ -123982,7 +124347,7 @@ Cyber Utopia: installDir: Cyber Utopia: {} launch: - /CU.exe: + "/CU.exe": - when: - store: steam steam: @@ -124015,38 +124380,38 @@ CyberHive: installDir: CyberHive: {} launch: - /CyberHive.app: + "/CyberHive.app": - when: - os: mac store: steam - /CyberHive.exe: + "/CyberHive.exe": - when: - os: windows store: steam - /CyberHive.x86_64: + "/CyberHive.x86_64": - when: - os: linux store: steam steam: id: 1252390 -'CyberMage: Darklight Awakening': +"CyberMage: Darklight Awakening": files: - /CMDATA.CNF: + "/CMDATA.CNF": tags: - config when: - os: dos - /GAMENAME.USR: + "/GAMENAME.USR": tags: - save when: - os: dos - /SAVE0**.DAT: + "/SAVE0**.DAT": tags: - save when: - os: dos - /SOUNDSYS.CNF: + "/SOUNDSYS.CNF": tags: - config when: @@ -124058,11 +124423,11 @@ CyberRebeat -The Fifth Domain of Warfare-: installDir: CyberRebeat -The Fifth Domain of Warfare-: {} launch: - /CyberRebeat.app/Contents/MacOS/CyberRebeat: + "/CyberRebeat.app/Contents/MacOS/CyberRebeat": - when: - os: mac store: steam - /CyberRebeat.exe: + "/CyberRebeat.exe": - when: - os: windows store: steam @@ -124082,44 +124447,44 @@ Cybercube: installDir: Cybercube: {} launch: - /CyberCube.app: + "/CyberCube.app": - when: - os: mac store: steam - /CyberCube.exe: + "/CyberCube.exe": - when: - os: windows store: steam - /CyberCube.x86: + "/CyberCube.x86": - when: - bit: 32 os: linux store: steam - /CyberCube.x86_64: + "/CyberCube.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 656880 -'Cyberdetective: Ertat': +"Cyberdetective: Ertat": installDir: CyberDetectiveErtat: {} launch: - /CyberDetectiveErtat.exe: + "/CyberDetectiveErtat.exe": - when: - os: windows store: steam steam: id: 1413550 -'Cyberdimension Neptunia: 4 Goddesses Online': +"Cyberdimension Neptunia: 4 Goddesses Online": files: - /CyberdimensionNeptunia4GoddessesOnline/Saved/Config/WindowsNoEditor: + "/CyberdimensionNeptunia4GoddessesOnline/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /CyberdimensionNeptunia4GoddessesOnline/Saved/SaveGames: + "/CyberdimensionNeptunia4GoddessesOnline/Saved/SaveGames": tags: - save when: @@ -124127,7 +124492,7 @@ Cybercube: installDir: Cyberdimension Neptunia 4 Goddesses Online: {} launch: - /CyberdimensionNeptunia4GoddessesOnline.exe: + "/CyberdimensionNeptunia4GoddessesOnline.exe": - when: - os: windows store: steam @@ -124135,7 +124500,7 @@ Cybercube: id: 632350 Cyberdogs: files: - /dogs.ini: + "/dogs.ini": tags: - config when: @@ -124144,7 +124509,7 @@ Cyberdrome: installDir: Cyberdrome: {} launch: - /Cyberdrome.exe: + "/Cyberdrome.exe": - when: - os: windows store: steam @@ -124157,12 +124522,12 @@ Cyberhunt: id: 636150 Cyberia: files: - /*.LOG: + "/*.LOG": tags: - save when: - os: dos - /JOY.DEF: + "/JOY.DEF": tags: - config when: @@ -124172,25 +124537,25 @@ Cyberia: installDir: Cyberia: {} launch: - /DOSBox/dosbox.app/Contents/MacOS/DOSBox: - - arguments: '-conf \"config/dosbox_cyberia.conf\" -conf \"config/dosbox_cyberia_single.conf\" -noconsole' + "/DOSBox/dosbox.app/Contents/MacOS/DOSBox": + - arguments: "-conf \\\"config/dosbox_cyberia.conf\\\" -conf \\\"config/dosbox_cyberia_single.conf\\\" -noconsole" when: - os: mac store: steam - /Launch Cyberia.bat: + "/Launch Cyberia.bat": - when: - os: windows store: steam - /dosbox/dosbox: - - arguments: '-conf \"config/dosbox_cyberia.conf\" -conf \"config/dosbox_cyberia_single.conf\" -noconsole' + "/dosbox/dosbox": + - arguments: "-conf \\\"config/dosbox_cyberia.conf\\\" -conf \\\"config/dosbox_cyberia_single.conf\\\" -noconsole" when: - os: linux store: steam steam: id: 624080 -'Cyberia 2: Resurrection': +"Cyberia 2: Resurrection": files: - /CYBERIA2/*.LOG: + "/CYBERIA2/*.LOG": tags: - save when: @@ -124200,17 +124565,17 @@ Cyberia: installDir: Cyberia 2 Resurrection: {} launch: - /DOSBox/dosbox.app/Contents/MacOS/DOSBox: - - arguments: '-conf \"config/dosbox_cyberia2.conf\" -conf \"config/dosbox_cyberia2_single.conf\" -noconsole' + "/DOSBox/dosbox.app/Contents/MacOS/DOSBox": + - arguments: "-conf \\\"config/dosbox_cyberia2.conf\\\" -conf \\\"config/dosbox_cyberia2_single.conf\\\" -noconsole" when: - os: mac store: steam - /Launch Cyberia 2.bat: + "/Launch Cyberia 2.bat": - when: - os: windows store: steam - /dosbox/dosbox: - - arguments: '-conf \"config/dosbox_cyberia2.conf\" -conf \"config/dosbox_cyberia2_single.conf\" -noconsole' + "/dosbox/dosbox": + - arguments: "-conf \\\"config/dosbox_cyberia2.conf\\\" -conf \\\"config/dosbox_cyberia2_single.conf\\\" -noconsole" when: - os: linux store: steam @@ -124220,20 +124585,20 @@ Cyberline Racing: installDir: Cyberline Racing: {} launch: - /CyberlineRacing.app/Contents/MacOS/CyberlineRacing: + "/CyberlineRacing.app/Contents/MacOS/CyberlineRacing": - when: - os: mac store: steam - /game.exe: + "/game.exe": - when: - os: windows store: steam - /game.x86: + "/game.x86": - when: - bit: 32 os: linux store: steam - /game.x86_64: + "/game.x86_64": - when: - bit: 64 os: linux @@ -124247,7 +124612,7 @@ Cybermotion: installDir: Cybermotion: {} launch: - /Cybermotion.exe: + "/Cybermotion.exe": - when: - os: windows store: steam @@ -124271,12 +124636,12 @@ Cyberprank Girls 2077: id: 1108400 Cyberpunk 2077: files: - /Saved Games/CD Projekt Red/Cyberpunk 2077: + "/Saved Games/CD Projekt Red/Cyberpunk 2077": tags: - save when: - os: windows - /CD Projekt Red/Cyberpunk 2077: + "/CD Projekt Red/Cyberpunk 2077": tags: - config when: @@ -124292,7 +124657,7 @@ Cyberpunk 2077: installDir: Cyberpunk 2077: {} launch: - /redprelauncher.exe: + "/redprelauncher.exe": - when: - store: steam steam: @@ -124301,11 +124666,11 @@ Cyberpunk 3776: installDir: Cyberpunk 3776: {} launch: - /Cyberpunk3776.app: + "/Cyberpunk3776.app": - when: - os: mac store: steam - /Cyberpunk3776.exe: + "/Cyberpunk3776.exe": - when: - os: windows store: steam @@ -124321,7 +124686,7 @@ Cyberpunk Sex Simulator: installDir: Cyberpunk Sex Simulator: {} launch: - /Cyberpunk Sex Simulator.exe: + "/Cyberpunk Sex Simulator.exe": - when: - store: steam steam: @@ -124336,7 +124701,7 @@ Cyborg Arena: installDir: Cyborg Arena: {} launch: - /Binaries/Win32/UDK.exe: + "/Binaries/Win32/UDK.exe": - when: - os: windows store: steam @@ -124349,29 +124714,29 @@ Cyborg Invasion Shooter: installDir: Cyborg Invasion Shooter: {} launch: - /Cyborginvasion.exe: + "/Cyborginvasion.exe": - when: - bit: 64 os: windows store: steam steam: id: 723830 -'Cyborg Invasion Shooter 2: Battle of Earth': +"Cyborg Invasion Shooter 2: Battle of Earth": installDir: Cyborg Invasion Shooter 2 Battle Of Earth: {} launch: - /CIS2.exe: + "/CIS2.exe": - when: - bit: 64 os: windows store: steam steam: id: 779060 -'Cyborg Invasion Shooter 3: Savior of the World': +"Cyborg Invasion Shooter 3: Savior of the World": installDir: Cyborg Invasion Shooter 3 Savior Of The World: {} launch: - /CIS3.exe: + "/CIS3.exe": - when: - bit: 64 os: windows @@ -124391,7 +124756,7 @@ Cyborg Ninja vs. The Third Reich: installDir: Cyborg Ninja vs The Third Reich: {} launch: - /CyborgNinja.exe: + "/CyborgNinja.exe": - when: - os: windows store: steam @@ -124401,7 +124766,7 @@ Cyborg Rage: installDir: Cyborg Rage: {} launch: - /cyborgrage.exe: + "/cyborgrage.exe": - when: - store: steam steam: @@ -124410,7 +124775,7 @@ Cyborg Tower Defense: installDir: Cyborg TD: {} launch: - /CYBORGTD.exe: + "/CYBORGTD.exe": - when: - os: windows store: steam @@ -124420,20 +124785,20 @@ Cybrus: installDir: Cybrus: {} launch: - /Cybrus.app: + "/Cybrus.app": - when: - os: mac store: steam - /Cybrus.exe: + "/Cybrus.exe": - when: - os: windows store: steam - /Cybrus.x86: + "/Cybrus.x86": - when: - bit: 32 os: linux store: steam - /Cybrus.x86_64: + "/Cybrus.x86_64": - when: - bit: 64 os: linux @@ -124444,7 +124809,7 @@ Cycle: installDir: Cycle: {} launch: - /Final.exe: + "/Final.exe": - when: - os: windows store: steam @@ -124454,26 +124819,26 @@ Cycle 28: installDir: Cycle 28: {} launch: - /Cycle28.app/Contents/MacOS/Cycle28: + "/Cycle28.app/Contents/MacOS/Cycle28": - when: - os: mac store: steam - /cycle28.x86: + "/cycle28.x86": - when: - bit: 32 os: linux store: steam - /cycle28.x86_64: + "/cycle28.x86_64": - when: - bit: 64 os: linux store: steam - /windows32.exe: + "/windows32.exe": - when: - bit: 32 os: windows store: steam - /windows64.exe: + "/windows64.exe": - when: - bit: 64 os: windows @@ -124484,7 +124849,7 @@ Cycle of Tyrfing: installDir: Cycle_Of_Tyrfing: {} launch: - /bin/Release/CycleOfTyrfingBuild.exe: + "/bin/Release/CycleOfTyrfingBuild.exe": - when: - os: windows store: steam @@ -124501,21 +124866,21 @@ Cyclones Playground: installDir: Cyclones Playground: {} launch: - /CyclonesPlayground.exe: + "/CyclonesPlayground.exe": - when: - bit: 64 os: windows store: steam steam: id: 916260 -'Cygni: All Guns Blazing': +"Cygni: All Guns Blazing": steam: id: 1248080 Cylne: installDir: Cylne: {} launch: - /Binaries/Win32/UDK.exe: + "/Binaries/Win32/UDK.exe": - when: - os: windows store: steam @@ -124525,11 +124890,13 @@ Cymatically Muffed: installDir: Cymatically Muffed: {} launch: - /Cymatically Muffed: + "/Cymatically Muffed": - when: + - os: mac + store: steam - os: linux store: steam - /Cymatically Muffed.exe: + "/Cymatically Muffed.exe": - when: - os: windows store: steam @@ -124539,26 +124906,26 @@ Cyndy: installDir: Cyndy: {} launch: - /Cyndy.exe: + "/Cyndy.exe": - when: - bit: 64 os: windows store: steam steam: id: 1014730 -'Cynoclept: The Game': +"Cynoclept: The Game": installDir: CynocleptTheGame: {} launch: - /Cynoclept.exe: + "/Cynoclept.exe": - when: - os: windows store: steam steam: id: 688880 -'Cynthia: Hidden in the Moonshadow': +"Cynthia: Hidden in the Moonshadow": files: - /AppData/LocalLow/Catthia Games/Cynthia Hidden in the Moonshadow/CynthiaSaveFile.dat: + "/AppData/LocalLow/Catthia Games/Cynthia Hidden in the Moonshadow/CynthiaSaveFile.dat": tags: - save when: @@ -124566,7 +124933,7 @@ Cyndy: installDir: Cynthia Hidden in the Moonshadow: {} launch: - /Cynthia Hidden in the Moonshadow.exe: + "/Cynthia Hidden in the Moonshadow.exe": - when: - os: windows store: steam @@ -124574,7 +124941,7 @@ Cyndy: id: 1685730 Cypher: files: - /Saves/main.save: + "/Saves/main.save": tags: - config - save @@ -124583,7 +124950,7 @@ Cypher: installDir: Cypher: {} launch: - /Cypher.exe: + "/Cypher.exe": - when: - store: steam registry: @@ -124592,16 +124959,16 @@ Cypher: - config steam: id: 746710 -'Cypress Inheritance: The Beginning': +"Cypress Inheritance: The Beginning": installDir: CypressInheritance: {} launch: - /CypressInheritanceGame/Binaries/Win/CypressInheritanceGame-Win32-Shipping.exe: + "/CypressInheritanceGame/Binaries/Win/CypressInheritanceGame-Win32-Shipping.exe": - when: - os: windows store: steam - workingDir: /CypressInheritanceGame/Binaries/Win - /Cypressinheritance.app: + workingDir: "/CypressInheritanceGame/Binaries/Win" + "/Cypressinheritance.app": - when: - os: mac store: steam @@ -124609,7 +124976,7 @@ Cypher: id: 270430 Cyrano Story: files: - /AppData/LocalLow/Alice _ Smith/Cyrano Story: + "/AppData/LocalLow/Alice _ Smith/Cyrano Story": tags: - save when: @@ -124617,11 +124984,11 @@ Cyrano Story: installDir: Cyrano Story: {} launch: - /Cyrano Story.exe: + "/Cyrano Story.exe": - when: - os: windows store: steam - /CyranoStory.app: + "/CyranoStory.app": - when: - os: mac store: steam @@ -124635,11 +125002,11 @@ Cyto: installDir: Cyto: {} launch: - /Cyto.app/Contents/MacOS/Cyto: + "/Cyto.app/Contents/MacOS/Cyto": - when: - os: mac store: steam - /Cyto.exe: + "/Cyto.exe": - when: - os: windows store: steam @@ -124647,7 +125014,7 @@ Cyto: id: 302650 CyubeVR: files: - /cyubeVR: + "/cyubeVR": tags: - config - save @@ -124661,48 +125028,48 @@ D Series Off Road Racing Simulation: installDir: DSERIES2: {} launch: - /DSERIES2.app: + "/DSERIES2.app": - when: - os: mac store: steam - /DSERIES2.exe: + "/DSERIES2.exe": - when: - os: windows store: steam - /DSERIES2.x86: + "/DSERIES2.x86": - when: - os: linux store: steam steam: id: 363430 -'D''LIRIUM: The Golden Rogue': +"D'LIRIUM: The Golden Rogue": steam: id: 860150 -D'Lirium: +"D'Lirium": files: - /Delirium: + "/Delirium": tags: - config - save when: - os: windows installDir: - D'LIRIUM: {} + "D'LIRIUM": {} launch: - /D'LIRIUM.app/Contents/MacOS/Mac_Runner: + "/D'LIRIUM.app/Contents/MacOS/Mac_Runner": - when: - os: mac store: steam - /delirium/delirium.exe: + "/delirium/delirium.exe": - when: - os: windows store: steam - workingDir: /Delirium + workingDir: "/Delirium" steam: id: 670160 D-Day: files: - /save: + "/save": tags: - save when: @@ -124711,7 +125078,7 @@ D.A.M.A.G.E: installDir: D.A.M.A.G.E: {} launch: - /D.A.M.A.G.E.exe: + "/D.A.M.A.G.E.exe": - when: - store: steam steam: @@ -124720,7 +125087,7 @@ D.A.T.A: installDir: D.A.T.A: {} launch: - /ABYSS421.exe: + "/ABYSS421.exe": - when: - os: windows store: steam @@ -124728,29 +125095,29 @@ D.A.T.A: id: 814310 D.C. S***storm: installDir: - D.C. S#!storm: {} + "D.C. S#!storm": {} launch: - /DC.exe: + "/DC.exe": - when: - os: windows store: steam steam: id: 793640 -'D.F.R.: The Light': +"D.F.R.: The Light": installDir: D.F.R. The Light: {} launch: - /DFR.app/Contents/MacOS/DFR: + "/DFR.app/Contents/MacOS/DFR": - when: - os: mac store: steam - /DFR.exe: + "/DFR.exe": - when: - os: windows store: steam steam: id: 747750 -'D.F.R.: The Light VR': +"D.F.R.: The Light VR": installDir: D.F.R. The Light VR: {} steam: @@ -124768,20 +125135,20 @@ D.I.P.R.I.P. Warm Up: installDir: Source SDK Base 2007: {} launch: - /hl2.exe: - - arguments: '-game diprip' + "/hl2.exe": + - arguments: "-game diprip" when: - store: steam steam: id: 17530 -'D.I.R.T.: Origin of the Species': +"D.I.R.T.: Origin of the Species": files: - /controls.bin: + "/controls.bin": tags: - config when: - os: windows - /saves: + "/saves": tags: - save when: @@ -124790,7 +125157,7 @@ D.I.Y Drone Simulator: installDir: DDS (D.I.Y Drone Simulator) Demo: {} launch: - /SimulationProjects.exe: + "/SimulationProjects.exe": - when: - bit: 64 os: windows @@ -124807,7 +125174,7 @@ D.O.R.F. Real-Time Strategic Conflict: id: 2388620 D.R.O.N.E. The Game: files: - /steamapps/common/D.R.O.N.E. The Game/branches/stable/D.R.O.N.E. The Game_Data/Drones: + "/steamapps/common/D.R.O.N.E. The Game/branches/stable/D.R.O.N.E. The Game_Data/Drones": tags: - save when: @@ -124816,12 +125183,12 @@ D.R.O.N.E. The Game: installDir: D.R.O.N.E. The Game: {} launch: - /D.R.O.N.E. Launcher.exe: + "/D.R.O.N.E. Launcher.exe": - when: - bit: 64 os: windows store: steam - - arguments: '-launcher' + - arguments: "-launcher" when: - bit: 64 os: windows @@ -124832,7 +125199,7 @@ D.U.S.T.: installDir: DUST: {} launch: - /Dust.exe: + "/Dust.exe": - when: - bit: 64 os: windows @@ -124843,14 +125210,14 @@ D.W.A.R.F.S.: installDir: DWARFS: {} launch: - /bin/DWARFS.exe: + "/bin/DWARFS.exe": - when: - store: steam steam: id: 281560 D/Generation: files: - /DATA: + "/DATA": tags: - config - save @@ -124860,11 +125227,11 @@ D/Generation HD: installDir: DGeneration HD: {} launch: - /DGeneration HD.app: + "/DGeneration HD.app": - when: - os: mac store: steam - /DGeneration HD.exe: + "/DGeneration HD.exe": - when: - os: windows store: steam @@ -124874,7 +125241,7 @@ D1896: installDir: D1896: {} launch: - /D1896.exe: + "/D1896.exe": - when: - bit: 64 os: windows @@ -124885,7 +125252,7 @@ D20 Dungeons: installDir: D20 Dungeons: {} launch: - /D20DSteam_Win32.exe: + "/D20DSteam_Win32.exe": - when: - bit: 32 os: windows @@ -124896,29 +125263,29 @@ D3D Inside: installDir: D3D INSIDE: {} launch: - /D3D INSIDE.exe: + "/D3D INSIDE.exe": - when: - store: steam steam: id: 1181330 -'D4: Dark Dreams Don''t Die': +"D4: Dark Dreams Don't Die": files: - /config.ini: + "/config.ini": tags: - config when: - os: windows - /userdata//358090/remote/*.sav: + "/userdata//358090/remote/*.sav": tags: - save when: - store: steam - /My Games/D4 Dark Dreams Don't Die/Ms01Game/Config: + "/My Games/D4 Dark Dreams Don't Die/Ms01Game/Config": tags: - config when: - os: windows - /my games/D4 Dark Dreams Don't Die/Binaries/Win64: + "/my games/D4 Dark Dreams Don't Die/Binaries/Win64": tags: - save when: @@ -124932,11 +125299,11 @@ D3D Inside: steamExtra: - 368060 - 368061 - - 380910 - 372510 - 372511 - 372512 - 373560 + - 380910 - 384220 - 384221 - 384222 @@ -124946,52 +125313,52 @@ D3D Inside: - 384226 - 384227 installDir: - D4 Dark Dreams Don't Die: {} + "D4 Dark Dreams Don't Die": {} launch: - /D4.exe: + "/D4.exe": - when: - bit: 64 os: windows store: steam steam: id: 358090 -'D: The Game': +"D: The Game": gog: id: 1852354510 installDir: D: {} launch: - /D - The Game.app: + "/D - The Game.app": - when: - os: mac store: steam - /dosbox_linux/daum/launch_d_game_daum.sh: + "/dosbox_linux/daum/launch_d_game_daum.sh": - when: - os: linux store: steam - workingDir: /dosbox_linux/daum - /dosbox_linux/launch_d_config.sh: + workingDir: "/dosbox_linux/daum" + "/dosbox_linux/launch_d_config.sh": - when: - os: linux store: steam - workingDir: /dosbox_linux - /dosbox_linux/launch_d_game.sh: + workingDir: "/dosbox_linux" + "/dosbox_linux/launch_d_game.sh": - when: - os: linux store: steam - workingDir: /dosbox_linux - /dosbox_windows/daum/dosbox.exe: - - arguments: '-conf dosbox_d.conf -conf dosbox_d_launch_windows.conf -noconsole' + workingDir: "/dosbox_linux" + "/dosbox_windows/daum/dosbox.exe": + - arguments: "-conf dosbox_d.conf -conf dosbox_d_launch_windows.conf -noconsole" when: - os: windows store: steam - workingDir: /dosbox_windows/daum - /dosbox_windows/dosbox.exe: - - arguments: '-conf dosbox_d.conf -conf dosbox_d_launch_windows.conf -noconsole' + workingDir: "/dosbox_windows/daum" + "/dosbox_windows/dosbox.exe": + - arguments: "-conf dosbox_d.conf -conf dosbox_d_launch_windows.conf -noconsole" when: - os: windows store: steam - workingDir: /dosbox_windows + workingDir: "/dosbox_windows" steam: id: 510590 DAEMMERLICHT: @@ -125001,7 +125368,7 @@ DAHALO: installDir: DAHALO: {} launch: - /Dahalo.exe: + "/Dahalo.exe": - when: - os: windows store: steam @@ -125011,7 +125378,7 @@ DAISENRYAKU PERFECT 4.0/大戦略パーフェクト4.0: installDir: DAISENRYAKU PERFECT 4: {} launch: - /DSP4.exe: + "/DSP4.exe": - when: - store: steam steam: @@ -125020,20 +125387,20 @@ DAMNOSAUR: installDir: DAMNOSAUR: {} launch: - /Damnosaur.app: + "/Damnosaur.app": - when: - os: mac store: steam - /Damnosaur.exe: + "/Damnosaur.exe": - when: - os: windows store: steam - /Damnosaur.x86: + "/Damnosaur.x86": - when: - bit: 32 os: linux store: steam - /Damnosaur.x86_64: + "/Damnosaur.x86_64": - when: - bit: 64 os: linux @@ -125044,7 +125411,7 @@ DARK FABLE: installDir: DARK FABLE: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -125052,7 +125419,7 @@ DARK FABLE: id: 1047830 DARQ: files: - /AppData/LocalLow/Unfold Games/DARQ/save.drq: + "/AppData/LocalLow/Unfold Games/DARQ/save.drq": tags: - save when: @@ -125067,7 +125434,7 @@ DARQ: installDir: DARQ: {} launch: - /DARQ.exe: + "/DARQ.exe": - when: - os: windows store: steam @@ -125077,23 +125444,23 @@ DARQ: - config steam: id: 433550 -'DASH: Danger Action Speed Heroes': +"DASH: Danger Action Speed Heroes": installDir: DASH Danger Action Speed Heroes: {} launch: - /dash_early_access: + "/dash_early_access": - when: - os: linux store: steam - /dash_early_access.exe: + "/dash_early_access.exe": - when: - os: windows store: steam steam: id: 898910 -'DC League of Super-Pets: The Adventures of Krypto and Ace': +"DC League of Super-Pets: The Adventures of Krypto and Ace": files: - /AppData/LocalLow/Outright Games Ltd/DC League of Super Pets: + "/AppData/LocalLow/Outright Games Ltd/DC League of Super Pets": tags: - config - save @@ -125102,7 +125469,7 @@ DARQ: installDir: DC League of Super Pets: {} launch: - /DC League of Super Pets.exe: + "/DC League of Super Pets.exe": - when: - os: windows store: steam @@ -125112,25 +125479,23 @@ DC Universe Online: installDir: DC Universe Online: {} launch: - /LaunchPad.exe: - - arguments: >- - Updates:enable=0 Updates:PatchSelf=1 campaignID=1063044 promoID=132 launchArgs=-STEAM_ENABLED - launchPoint=steam + "/LaunchPad.exe": + - arguments: "Updates:enable=0 Updates:PatchSelf=1 campaignID=1063044 promoID=132 launchArgs=-STEAM_ENABLED launchPoint=steam" when: - store: steam steam: id: 24200 -'DC Wonder: Unlimited': +"DC Wonder: Unlimited": installDir: DC Wonder Unlimited: {} launch: - /DC Wonder.exe: + "/DC Wonder.exe": - when: - os: windows store: steam steam: id: 652160 -'DC''s Justice League: Cosmic Chaos': +"DC's Justice League: Cosmic Chaos": files: HKEY_CURRENT_USER/Software/PHL Collective/DCJLCC: tags: @@ -125141,26 +125506,26 @@ DCL - The Game: installDir: DCL - The Game: {} launch: - /DCGame.app: + "/DCGame.app": - when: - os: mac store: steam - /DCGame.exe: + "/DCGame.exe": - when: - bit: 64 os: windows store: steam steam: id: 964570 -'DCR: Drive.Crash.Repeat': +"DCR: Drive.Crash.Repeat": installDir: DCR Drive.Crash.Repeat: {} launch: - /DCR.app/Contents/MacOS/DCR-desktop: + "/DCR.app/Contents/MacOS/DCR-desktop": - when: - os: mac store: steam - /DCR.exe: + "/DCR.exe": - when: - bit: 32 os: windows @@ -125169,12 +125534,12 @@ DCL - The Game: id: 501850 DCS World: files: - /Saved Games/DCS: + "/Saved Games/DCS": tags: - save when: - os: windows - /Saved Games/DCS/Config: + "/Saved Games/DCS/Config": tags: - config when: @@ -125182,16 +125547,16 @@ DCS World: installDir: DCSWorld: {} launch: - /bin/DCS.exe: + "/bin/DCS.exe": - when: - bit: 64 os: windows store: steam steam: id: 223750 -'DCS: A-10C Warthog': +"DCS: A-10C Warthog": files: - /Saved Games/DCS Warthog: + "/Saved Games/DCS Warthog": tags: - save when: @@ -125199,7 +125564,7 @@ DCS World: installDir: DCS A-10C Warthog: {} launch: - /bin/run.exe: + "/bin/run.exe": - when: - store: steam steam: @@ -125208,7 +125573,7 @@ DDS (D.I.Y Drone Simulator): installDir: DDS (D.I.Y. Drone Simulator): {} launch: - /DDSForAcro.exe: + "/DDSForAcro.exe": - when: - bit: 64 os: windows @@ -125217,24 +125582,24 @@ DDS (D.I.Y Drone Simulator): id: 876170 DDraceNetwork: files: - /.teeworlds: + "/.teeworlds": tags: - config - save when: - os: linux - /Library/Application Support/Teeworlds: + "/Library/Application Support/Teeworlds": tags: - config - save when: - os: mac - /Teeworlds/ddnet-saves.txt: + "/Teeworlds/ddnet-saves.txt": tags: - save when: - os: windows - /Teeworlds/settings_ddnet.cfg: + "/Teeworlds/settings_ddnet.cfg": tags: - config when: @@ -125242,24 +125607,26 @@ DDraceNetwork: installDir: DDraceNetwork: {} launch: - /ddnet/DDNet: + "/ddnet/DDNet": - when: + - os: mac + store: steam - os: linux store: steam - workingDir: /ddnet - /ddnet/DDNet.exe: + workingDir: "/ddnet" + "/ddnet/DDNet.exe": - when: - os: windows store: steam - workingDir: /ddnet + workingDir: "/ddnet" steam: id: 412220 -'DE:VOID': +"DE:VOID": installDir: DEVOID: {} launch: - /nw.exe: - - arguments: '--in-process-gpu' + "/nw.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam @@ -125269,7 +125636,7 @@ DEAD (2019): installDir: DEAD: {} launch: - /DEAD.exe: + "/DEAD.exe": - when: - os: windows store: steam @@ -125282,11 +125649,11 @@ DED: installDir: DED: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam - /start_ded.sh: + "/start_ded.sh": - when: - os: linux store: steam @@ -125296,7 +125663,7 @@ DEEEER Simulator: installDir: DEEEER Simulator: {} launch: - /DEEEER Simulator.exe: + "/DEEEER Simulator.exe": - when: - os: windows store: steam @@ -125304,7 +125671,7 @@ DEEEER Simulator: id: 1018800 DEFCON: files: - /.defcon: + "/.defcon": tags: - config - save @@ -125315,15 +125682,15 @@ DEFCON: installDir: Defcon: {} launch: - /DEFCON.app: + "/DEFCON.app": - when: - os: mac store: steam - /defcon.exe: + "/defcon.exe": - when: - os: windows store: steam - /run_steam.sh: + "/run_steam.sh": - when: - os: linux store: steam @@ -125334,9 +125701,9 @@ DEFCON VR: Defcon VR: {} steam: id: 579040 -'DEPO : Death Epileptic Pixel Origins': +"DEPO : Death Epileptic Pixel Origins": files: - /userdata//1091320: + "/userdata//1091320": tags: - save when: @@ -125344,15 +125711,15 @@ DEFCON VR: installDir: DEPO: {} launch: - /Contents/MacOS/DEPO: + "/Contents/MacOS/DEPO": - when: - os: mac store: steam - /DEPO.exe: + "/DEPO.exe": - when: - os: windows store: steam - /DEPO.x86_64: + "/DEPO.x86_64": - when: - bit: 64 os: linux @@ -125363,15 +125730,15 @@ DERU - The Art of Cooperation: installDir: DERU: {} launch: - /DERU.app/Contents/MacOS/DERU: + "/DERU.app/Contents/MacOS/DERU": - when: - os: mac store: steam - /DERU.exe: + "/DERU.exe": - when: - os: windows store: steam - /DERU.x86: + "/DERU.x86": - when: - os: linux store: steam @@ -125382,7 +125749,7 @@ DEUS EX MACHINA: DeusExMacnina: {} steam: id: 1119950 -'DEUS EX MACHINA: Stage Zero': +"DEUS EX MACHINA: Stage Zero": installDir: DEM_Stage_Zero: {} steam: @@ -125392,28 +125759,28 @@ DEXED: DEXED: {} steam: id: 510290 -'DGU: Death God University': +"DGU: Death God University": installDir: DGU: {} launch: - /DGU.app: + "/DGU.app": - when: - bit: 64 os: mac store: steam - /DGU.exe: + "/DGU.exe": - when: - bit: 64 os: windows store: steam - /DGU/Binaries/Linux/DGU: + "/DGU/Binaries/Linux/DGU": - when: - bit: 64 os: linux store: steam steam: id: 352850 -'DHARMA: THE SWAN': +"DHARMA: THE SWAN": steam: id: 1028940 DINO VR: @@ -125423,17 +125790,17 @@ DINO VR: id: 1024450 DIRT 5: files: - /userdata//1038250/remote/user0/profile: + "/userdata//1038250/remote/user0/profile": tags: - save when: - store: steam - /My Games/DIRT5/user0/profile: + "/My Games/DIRT5/user0/profile": tags: - config when: - os: windows - /Packages/CodemastersSoftwareCompan.DiRT5_4cfye3zbe1gaw/SystemAppData/wgs: + "/Packages/CodemastersSoftwareCompan.DiRT5_4cfye3zbe1gaw/SystemAppData/wgs": tags: - save when: @@ -125447,7 +125814,7 @@ DISONANTE: installDir: DISONANTE: {} launch: - /Disonante.exe: + "/Disonante.exe": - when: - bit: 64 os: windows @@ -125458,7 +125825,7 @@ DIY Simulator: installDir: DIY Simulator: {} launch: - /DIY Simulator.exe: + "/DIY Simulator.exe": - when: - os: windows store: steam @@ -125468,7 +125835,7 @@ DJ Mole: installDir: DJ Mole: {} launch: - /win32/DJ Mole.exe: + "/win32/DJ Mole.exe": - when: - os: windows store: steam @@ -125486,7 +125853,7 @@ DJMax Respect V: installDir: DJMAX RESPECT V: {} launch: - /DJMAX RESPECT V.exe: + "/DJMAX RESPECT V.exe": - when: - bit: 64 os: windows @@ -125497,7 +125864,7 @@ DK Online: installDir: DKOnline: {} launch: - /DKonline.exe: + "/DKonline.exe": - arguments: steam 3.209.176.82 28004 when: - os: windows @@ -125506,7 +125873,7 @@ DK Online: id: 781030 DLC Quest: files: - /SavedGames/DLC/DLCQuest Data/AllPlayers: + "/SavedGames/DLC/DLCQuest Data/AllPlayers": tags: - config - save @@ -125515,11 +125882,11 @@ DLC Quest: installDir: DLC Quest: {} launch: - /DLC.exe: + "/DLC.exe": - when: - os: windows store: steam - /DLCQuest.app: + "/DLCQuest.app": - when: - os: mac store: steam @@ -125530,7 +125897,7 @@ DMD Mars Mission: DMDMarsMission: {} steam: id: 758020 -'DMT: Dynamic Music Tesseract': +"DMT: Dynamic Music Tesseract": installDir: DMT: {} steam: @@ -125542,17 +125909,17 @@ DNF Duel: installDir: DNFDUEL: {} launch: - /DNFDUEL.exe: + "/DNFDUEL.exe": - when: - os: windows store: steam steam: id: 1216060 -DNO Rasa's Journey: +"DNO Rasa's Journey": installDir: - DNO Rasa's Journey: {} + "DNO Rasa's Journey": {} launch: - /DNORasasJourney.exe: + "/DNORasasJourney.exe": - when: - os: windows store: steam @@ -125562,13 +125929,13 @@ DO NOT OPEN: installDir: DO NOT OPEN: {} launch: - /DoNotOpen.exe: + "/DoNotOpen.exe": - when: - os: windows store: steam steam: id: 2061710 -'DOJAGI: The Korean Pottery': +"DOJAGI: The Korean Pottery": installDir: DOJAGI: {} steam: @@ -125577,7 +125944,7 @@ DOKA 2 GUTS OUT NINJA: installDir: DOKA 2 EXODUS: {} launch: - /Doka2.exe: + "/Doka2.exe": - when: - os: windows store: steam @@ -125587,7 +125954,7 @@ DOKA 2 KISHKI EDITION: installDir: DOKA 2: {} launch: - /DOKA2.exe: + "/DOKA2.exe": - when: - os: windows store: steam @@ -125597,16 +125964,19 @@ DOOMTANK: installDir: DOOMTANK: {} launch: - /DOOMTANK.app: + "/DOOMTANK.app": - when: - os: mac store: steam - /DOOMTANK.exe: + "/DOOMTANK.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam - /DOOMTANK.x86_64: + "/DOOMTANK.x86_64": - when: - bit: 64 os: linux @@ -125617,7 +125987,7 @@ DOTOKOI / 像素男友: installDir: DOTOKOI: {} launch: - /DOTOKOI.exe: + "/DOTOKOI.exe": - when: - os: windows store: steam @@ -125627,7 +125997,7 @@ DOUBLE INVASION!!: installDir: DOUBLE INVASION!!: {} launch: - /DOUBLE INVASION!!.exe: + "/DOUBLE INVASION!!.exe": - when: - os: windows store: steam @@ -125637,31 +126007,31 @@ DOWN MEANS UP: installDir: DOWN MEANS UP: {} launch: - /DOWN MEANS UP.exe: + "/DOWN MEANS UP.exe": - when: - os: windows store: steam steam: id: 1137360 -'DOZA 2: NOVOGODNIY PEREDOZ': +"DOZA 2: NOVOGODNIY PEREDOZ": installDir: DOZA 2 - NOVOGODNIY PEREDOZ: {} launch: - /DOKA 2.exe: + "/DOKA 2.exe": - when: - os: windows store: steam steam: id: 1011740 -'DPET : Desktop Pet Engine': +"DPET : Desktop Pet Engine": installDir: DPET: {} launch: - /DPET.app: + "/DPET.app": - when: - os: mac store: steam - /DPET.exe: + "/DPET.exe": - when: - os: windows store: steam @@ -125669,12 +126039,12 @@ DOWN MEANS UP: id: 1980920 DRAG: files: - /DRAG/config/game.sav: + "/DRAG/config/game.sav": tags: - save when: - os: windows - /DRAG/config/settings.sav: + "/DRAG/config/settings.sav": tags: - config when: @@ -125682,16 +126052,16 @@ DRAG: installDir: DRAG: {} launch: - /bin/DRAG: + "/bin/DRAG": - when: - os: linux store: steam - workingDir: /bin - /bin/DRAG.exe: + workingDir: "/bin" + "/bin/DRAG.exe": - when: - os: windows store: steam - workingDir: /bin + workingDir: "/bin" steam: id: 773840 DREAM GIRLS VR: @@ -125703,7 +126073,7 @@ DREAMO: installDir: DREAMO: {} launch: - /DREAMO.exe: + "/DREAMO.exe": - when: - store: steam steam: @@ -125713,22 +126083,24 @@ DREAMO VR: id: 1138220 DREDGE: files: - /AppData/LocalLow/Black Salt Games/DREDGE/dredge-settings.bin: + "/AppData/LocalLow/Black Salt Games/DREDGE/dredge-settings.bin": tags: - config when: - os: windows - /AppData/LocalLow/Black Salt Games/DREDGE/gog_galaxy/dredge-settings.bin: + "/AppData/LocalLow/Black Salt Games/DREDGE/gog_galaxy/dredge-settings.bin": tags: - config when: - - store: gog - /AppData/LocalLow/Black Salt Games/DREDGE/gog_galaxy/saves: + - os: windows + store: gog + "/AppData/LocalLow/Black Salt Games/DREDGE/gog_galaxy/saves": tags: - save when: - - store: gog - /AppData/LocalLow/Black Salt Games/DREDGE/saves: + - os: windows + store: gog + "/AppData/LocalLow/Black Salt Games/DREDGE/saves": tags: - save when: @@ -125737,11 +126109,10 @@ DREDGE: id: 1744110647 id: gogExtra: - - 1487969767 - - 1322967649 - - 1707774748 - 1154366605 + - 1322967649 - 1487969767 + - 1707774748 steamExtra: - 2104240 - 2198600 @@ -125750,15 +126121,15 @@ DREDGE: installDir: DREDGE: {} launch: - /DREDGE.exe: + "/DREDGE.exe": - when: - os: windows store: steam steam: id: 1562430 -'DROD RPG: Tendry''s Tale': +"DROD RPG: Tendry's Tale": files: - /Caravel/drodrpg-1_0: + "/Caravel/drodrpg-1_0": tags: - save when: @@ -125771,24 +126142,24 @@ DREDGE: installDir: DROD RPG: {} launch: - /DROD RPG.app/Contents/MacOS/drod: + "/DROD RPG.app/Contents/MacOS/drod": - when: - bit: 64 os: mac store: steam - /drod: + "/drod": - when: - os: linux store: steam - /drod.exe: + "/drod.exe": - when: - os: windows store: steam steam: id: 351330 -'DROD: Gunthro and the Epic Blunder': +"DROD: Gunthro and the Epic Blunder": files: - /Caravel/drod-4_0: + "/Caravel/drod-4_0": tags: - config - save @@ -125799,24 +126170,24 @@ DREDGE: installDir: DROD Gunthro and the Epic Blunder: {} launch: - /DROD.app/Contents/MacOS/drod: + "/DROD.app/Contents/MacOS/drod": - when: - bit: 64 os: mac store: steam - /drod: + "/drod": - when: - os: linux store: steam - /drod.exe: + "/drod.exe": - when: - os: windows store: steam steam: id: 314330 -'DROD: Journey to Rooted Hold': +"DROD: Journey to Rooted Hold": files: - /data: + "/data": tags: - config - save @@ -125826,9 +126197,9 @@ DREDGE: id: 1207660443 steam: id: 422181 -'DROD: King Dugan''s Dungeon': +"DROD: King Dugan's Dungeon": files: - /Data: + "/Data": tags: - config - save @@ -125839,9 +126210,9 @@ DREDGE: id: 1207660443 steam: id: 422180 -'DROD: The City Beneath': +"DROD: The City Beneath": files: - /Caravel/drod-3_0: + "/Caravel/drod-3_0": tags: - config - save @@ -125851,9 +126222,9 @@ DREDGE: id: 1207660443 steam: id: 422182 -'DROD: The Second Sky': +"DROD: The Second Sky": files: - /Caravel/drod-5_0: + "/Caravel/drod-5_0": tags: - config - save @@ -125864,16 +126235,16 @@ DREDGE: installDir: DROD The Second Sky: {} launch: - /DROD.app/Contents/MacOS/drod: + "/DROD.app/Contents/MacOS/drod": - when: - bit: 64 os: mac store: steam - /drod: + "/drod": - when: - os: linux store: steam - /drod.exe: + "/drod.exe": - when: - os: windows store: steam @@ -125882,11 +126253,11 @@ DREDGE: DSquad War: steam: id: 661370 -'DUCK CASINO: BULLET': +"DUCK CASINO: BULLET": installDir: DUCK CASINO BULLET: {} launch: - /DuckCasino.exe: + "/DuckCasino.exe": - when: - os: windows store: steam @@ -125896,7 +126267,7 @@ DUMB Infernal: installDir: DUMB Infernal: {} launch: - /DeGame_x64.exe: + "/DeGame_x64.exe": - when: - bit: 64 os: windows @@ -125907,7 +126278,7 @@ DUNKYPUNG: installDir: DUNKYPUNG: {} launch: - /dunkypung.exe: + "/dunkypung.exe": - when: - os: windows store: steam @@ -125922,7 +126293,7 @@ DUST-UP: installDir: DUST-UP: {} launch: - /DUST-UP.exe: + "/DUST-UP.exe": - when: - bit: 64 os: windows @@ -125933,11 +126304,11 @@ DUSTNET: installDir: DUSTNET: {} launch: - /DUSTNET.app/Contents/MacOS/DUSTNET: + "/DUSTNET.app/Contents/MacOS/DUSTNET": - when: - os: mac store: steam - /DUSTNET.exe: + "/DUSTNET.exe": - when: - os: windows store: steam @@ -125950,19 +126321,19 @@ DWVR: id: 520750 DX-Ball 2: files: - /config.cfg: + "/config.cfg": tags: - config when: - os: windows -'DX-Ball 2: 20th Anniversary Edition': +"DX-Ball 2: 20th Anniversary Edition": files: - /config.cfg: + "/config.cfg": tags: - config when: - os: windows - /Saved Games/DX-Ball 2 - 20th Anniversary Edition: + "/Saved Games/DX-Ball 2 - 20th Anniversary Edition": tags: - save when: @@ -125970,7 +126341,7 @@ DX-Ball 2: installDir: DX-Ball 2 - 20th Anniversary Edition: {} launch: - /DXBall2.exe: + "/DXBall2.exe": - when: - os: windows store: steam @@ -125982,12 +126353,12 @@ DX-Ball 2: id: 922400 DYO: files: - /options.ini: + "/options.ini": tags: - config when: - os: windows - /savegame.dsf: + "/savegame.dsf": tags: - config - save @@ -125996,7 +126367,7 @@ DYO: installDir: DYO: {} launch: - /DYO.exe: + "/DYO.exe": - when: - os: windows store: steam @@ -126004,17 +126375,17 @@ DYO: id: 791470 DYSNOMIA: files: - /dys.dat: + "/dys.dat": tags: - save when: - os: windows - /game.cfg: + "/game.cfg": tags: - config when: - os: windows - /server.cfg: + "/server.cfg": tags: - config when: @@ -126025,21 +126396,21 @@ Da Capo III: installDir: Da Capo 3 R: {} launch: - /DC3.app: + "/DC3.app": - when: - bit: 64 os: mac store: steam - /DC3.exe: + "/DC3.exe": - when: - os: windows store: steam - /DC3.x86: + "/DC3.x86": - when: - bit: 32 os: linux store: steam - /DC3.x86_64: + "/DC3.x86_64": - when: - bit: 64 os: linux @@ -126050,7 +126421,7 @@ Daaang!: installDir: Daaang!: {} launch: - /Daaang!.exe: + "/Daaang!.exe": - when: - bit: 64 os: windows @@ -126061,17 +126432,17 @@ Daath Origins: installDir: Daath Origins: {} launch: - /DaathOrigins.exe: + "/DaathOrigins.exe": - when: - os: windows store: steam steam: id: 655340 -Dab on 'em Haterz: +"Dab on 'em Haterz": installDir: - Dab on 'em Haterz: {} + "Dab on 'em Haterz": {} launch: - /Dab on 'em Haterz.exe: + "/Dab on 'em Haterz.exe": - when: - bit: 32 os: windows @@ -126082,35 +126453,35 @@ Dab on Darkness!: installDir: Dab on Darkness!: {} launch: - /DabonDarkness.exe: + "/DabonDarkness.exe": - when: - store: steam steam: id: 1332970 -'Dab, Dance & Twerk': +"Dab, Dance & Twerk": steam: id: 767440 Dabda: steam: id: 665600 -'Dabman: DABtastic Bundle': +"Dabman: DABtastic Bundle": steam: id: 985330 -'Dabman: When the Haters Dab Back': +"Dabman: When the Haters Dab Back": steam: id: 888260 -'Dabwoman: When The Dab Isn''t Sexist': +"Dabwoman: When The Dab Isn't Sexist": steam: id: 906590 Dad Beat Dads: installDir: Dad Beat Dads: {} launch: - /dadbeatdads.app: + "/dadbeatdads.app": - when: - os: mac store: steam - /dadbeatdads.exe: + "/dadbeatdads.exe": - when: - os: windows store: steam @@ -126118,12 +126489,12 @@ Dad Beat Dads: id: 386390 Dad Quest: files: - /DadConfig.JSON: + "/DadConfig.JSON": tags: - config when: - os: windows - /DadSave.JSON: + "/DadSave.JSON": tags: - save when: @@ -126131,41 +126502,41 @@ Dad Quest: installDir: Dad Quest: {} launch: - /DadQuest.app: + "/DadQuest.app": - when: - os: mac store: steam - /DadQuest.exe: + "/DadQuest.exe": - when: - os: windows store: steam - /StartDadQuest.sh: + "/StartDadQuest.sh": - when: - os: linux store: steam steam: id: 524250 -Dad's Co-worker: +"Dad's Co-worker": steam: id: 755970 Daddy: installDir: Daddy: {} launch: - /Daddy.exe: + "/Daddy.exe": - when: - os: windows store: steam steam: id: 867480 -Daddy's Girls: +"Daddy's Girls": steam: id: 733260 -Daddy's Gone A-Hunting: +"Daddy's Gone A-Hunting": installDir: - Daddy's gone a-hunting: {} + "Daddy's gone a-hunting": {} launch: - /Daddy’s gone a-hunting.exe: + "/Daddy’s gone a-hunting.exe": - when: - os: windows store: steam @@ -126175,7 +126546,7 @@ Daedalic Complex: installDir: Daedalic Complex: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -126185,18 +126556,18 @@ Daedalus - No Escape: installDir: Daedalus - no escape: {} launch: - /daedalus.app/Contents/MacOS/daedalus.sh: + "/daedalus.app/Contents/MacOS/daedalus.sh": - arguments: game when: - os: mac store: steam - workingDir: /daedalus.app/Contents/MacOS + workingDir: "/daedalus.app/Contents/MacOS" - arguments: editor when: - os: mac store: steam - workingDir: /daedalus.app/Contents/MacOS - /daedalus.bat: + workingDir: "/daedalus.app/Contents/MacOS" + "/daedalus.bat": - arguments: game when: - os: windows @@ -126205,7 +126576,7 @@ Daedalus - No Escape: when: - os: windows store: steam - /daedalus.sh: + "/daedalus.sh": - arguments: game when: - os: linux @@ -126220,8 +126591,8 @@ Daedalus - The Awakening of Golden Jazz: installDir: DAEDALUS:The Awakening of Golden Jazz: {} launch: - /SAX.exe: - - arguments: '-forcecontrollerappid 836600' + "/SAX.exe": + - arguments: "-forcecontrollerappid 836600" when: - os: windows store: steam @@ -126231,15 +126602,15 @@ Daemon 9: installDir: Daemon 9: {} launch: - /daemon_9: + "/daemon_9": - when: - os: linux store: steam - /daemon_9.app: + "/daemon_9.app": - when: - os: mac store: steam - /daemon_9.exe: + "/daemon_9.exe": - when: - os: windows store: steam @@ -126249,44 +126620,46 @@ Daemon Detective Gaiden: installDir: Daemon Detective Gaiden: {} launch: - /Daemon Detective Gaiden.exe: + "/Daemon Detective Gaiden.exe": - when: - store: steam steam: id: 377200 Daemon Vector: files: - /Saves: + "/Saves": tags: - save when: - os: windows Daemon X Machina: files: - /DXM/Saved/Config/WindowsNoEditor: + "/DXM/Saved/Config/WindowsNoEditor": tags: - config when: - - store: steam - /DXM/Saved/SaveGames: + - os: windows + store: steam + "/DXM/Saved/SaveGames": tags: - save when: - - store: steam - /DXM/Saved_EOS/Config/WindowsNoEditor: + - os: windows + store: steam + "/DXM/Saved_EOS/Config/WindowsNoEditor": tags: - config when: - - store: epic - /DXM/Saved_EOS/SaveGames: + - os: windows + "/DXM/Saved_EOS/SaveGames": tags: - save when: - - store: epic + - os: windows installDir: DaemonXMachina: {} launch: - /DXM.exe: + "/DXM.exe": - when: - bit: 64 os: windows @@ -126297,7 +126670,7 @@ Daemonic Runner: installDir: Daemonic Runner: {} launch: - /Prog.exe: + "/Prog.exe": - when: - os: windows store: steam @@ -126305,12 +126678,12 @@ Daemonic Runner: id: 1210660 Daemonica: files: - /Data: + "/Data": tags: - config when: - os: windows - /Data/savedgames: + "/Data/savedgames": tags: - save when: @@ -126319,7 +126692,7 @@ Daemonical: installDir: Daemonical: {} launch: - /daemonical.exe: + "/daemonical.exe": - when: - os: windows store: steam @@ -126335,44 +126708,44 @@ Daemonsgate: installDir: Daemonsgate: {} launch: - /DOSBox.app/Contents/MacOS/DOSBox: - - arguments: '-conf ../Conf/daemonsgate.cfg -noconsole' + "/DOSBox.app/Contents/MacOS/DOSBox": + - arguments: "-conf ../Conf/daemonsgate.cfg -noconsole" when: - os: mac store: steam - workingDir: /DOS - /dosbox: - - arguments: '-conf ../Conf/daemonsgate.cfg -noconsole' + workingDir: "/DOS" + "/dosbox": + - arguments: "-conf ../Conf/daemonsgate.cfg -noconsole" when: - os: linux store: steam - workingDir: /DOS - /dosbox.exe: - - arguments: '-conf ../Conf/daemonsgate.cfg -noconsole' + workingDir: "/DOS" + "/dosbox.exe": + - arguments: "-conf ../Conf/daemonsgate.cfg -noconsole" when: - os: windows store: steam - workingDir: /DOS + workingDir: "/DOS" steam: id: 719300 -Daenerys doesn't want Hentai: +"Daenerys doesn't want Hentai": installDir: Daenerys doesn’t want Hentai: {} launch: - /Daenerys doesn't want Hentai.exe: + "/Daenerys doesn't want Hentai.exe": - when: - os: windows store: steam steam: id: 1163460 -'Dafen Oil Painting Village: An Immersive Reality': +"Dafen Oil Painting Village: An Immersive Reality": installDir: Dafen Oil Painting Village An Immersive Reality: {} steam: id: 960270 -'Dagon: by H. P. Lovecraft': +"Dagon: by H. P. Lovecraft": files: - /AppData/LocalLow/BitGolem/Dagon/DagonSaveFull.es3: + "/AppData/LocalLow/BitGolem/Dagon/DagonSaveFull.es3": tags: - save when: @@ -126389,7 +126762,7 @@ Daenerys doesn't want Hentai: installDir: Dagon: {} launch: - /Dagon.exe: + "/Dagon.exe": - when: - bit: 64 os: windows @@ -126402,12 +126775,12 @@ Daenerys doesn't want Hentai: id: 1481400 Daikatana: files: - /data: + "/data": tags: - config when: - os: windows - /data/save: + "/data/save": tags: - save when: @@ -126417,16 +126790,16 @@ Daikatana: installDir: Daikatana: {} launch: - /daikatana.exe: + "/daikatana.exe": - when: - store: steam steam: id: 242980 -'Daily Chthonicle: Editor''s Edition': +"Daily Chthonicle: Editor's Edition": installDir: - Daily Chthonicle Editor's Edition: {} + "Daily Chthonicle Editor's Edition": {} launch: - /DailyChthonicle.exe: + "/DailyChthonicle.exe": - when: - os: windows store: steam @@ -126436,11 +126809,11 @@ Daily Espada: installDir: Daily Espada: {} launch: - /Daily Espada.exe: + "/Daily Espada.exe": - when: - os: windows store: steam - /out-mac.app: + "/out-mac.app": - when: - os: mac store: steam @@ -126450,7 +126823,7 @@ Daily Routine: installDir: Haldor: {} launch: - /Haldor.exe: + "/Haldor.exe": - when: - store: steam steam: @@ -126459,7 +126832,7 @@ Daily Run: installDir: Daily Run: {} launch: - /Daily Run.exe: + "/Daily Run.exe": - when: - os: windows store: steam @@ -126469,7 +126842,7 @@ Dain Squares: installDir: Dain Squares: {} launch: - /Dain Squares.exe: + "/Dain Squares.exe": - when: - bit: 64 os: windows @@ -126480,7 +126853,7 @@ Dairy Farm Simulator: installDir: DairyFarmSimulator: {} launch: - /DFS.exe: + "/DFS.exe": - when: - bit: 64 os: windows @@ -126491,7 +126864,7 @@ Dairy Princess: installDir: Dairy Princess: {} launch: - /Rakunou Princess.exe: + "/Rakunou Princess.exe": - when: - store: steam steam: @@ -126500,7 +126873,7 @@ Daka Dara: installDir: Daka Dara: {} launch: - /dakadara.exe: + "/dakadara.exe": - when: - os: windows store: steam @@ -126508,12 +126881,12 @@ Daka Dara: id: 1040480 Dakar 18: files: - /Dakar18Game/Saved/Config/WindowsNoEditor: + "/Dakar18Game/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /Dakar18Game/Saved/SaveGames: + "/Dakar18Game/Saved/SaveGames": tags: - save when: @@ -126521,7 +126894,7 @@ Dakar 18: installDir: Dakar 18: {} launch: - /Dakar18Game.exe: + "/Dakar18Game.exe": - when: - os: windows store: steam @@ -126529,12 +126902,12 @@ Dakar 18: id: 767390 Dakar Desert Rally: files: - /Dakar2Game/Saved/Config/WindowsNoEditor: + "/Dakar2Game/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /Dakar2Game/Saved/SaveGames: + "/Dakar2Game/Saved/SaveGames": tags: - save when: @@ -126542,7 +126915,7 @@ Dakar Desert Rally: installDir: Dakar Desert Rally: {} launch: - /Dakar2Game.exe: + "/Dakar2Game.exe": - when: - os: windows store: steam @@ -126552,7 +126925,7 @@ Dal Segno: installDir: Dal Segno: {} launch: - /DST.exe: + "/DST.exe": - when: - store: steam steam: @@ -126561,15 +126934,15 @@ Dale Hardshovel HD: installDir: Dale Hardshovel HD: {} launch: - /DaleHD.app: + "/DaleHD.app": - when: - os: mac store: steam - /DaleHD.exe: + "/DaleHD.exe": - when: - os: windows store: steam - /DaleHD.x86_64: + "/DaleHD.x86_64": - when: - bit: 64 os: linux @@ -126585,7 +126958,7 @@ Damage Control: installDir: DAMAGE CONTROL: {} launch: - /damageControl.exe: + "/damageControl.exe": - when: - os: windows store: steam @@ -126595,16 +126968,16 @@ Damage Inc. Pacific Squadron WWII: installDir: Damage Inc: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: id: 215390 -'Damage: Sadistic Butchering of Humanity': +"Damage: Sadistic Butchering of Humanity": installDir: Damage Sadistic Butchering of Humanity: {} launch: - /Damage.exe: + "/Damage.exe": - when: - os: windows store: steam @@ -126614,11 +126987,11 @@ Damaged In Transit: installDir: DamagedInTransit: {} launch: - /DamagedInTransit.app: + "/DamagedInTransit.app": - when: - os: mac store: steam - /DamagedInTransit.exe: + "/DamagedInTransit.exe": - when: - bit: 64 os: windows @@ -126629,7 +127002,7 @@ Damascus Gear Operation Osaka HD Edition: installDir: Damascus Gear Operation Osaka HDEdition: {} launch: - /DG_OperationOsaka.exe: + "/DG_OperationOsaka.exe": - when: - os: windows store: steam @@ -126639,7 +127012,7 @@ Damascus Gear Operation Tokyo HD: installDir: Damascus Gear Operation Tokyo HD: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -126649,14 +127022,14 @@ Damn Virgins: installDir: Damn virgins: {} launch: - /Binaries/Win32/UDK.exe: - - arguments: '-seekfreeloading -simmobileinput' + "/Binaries/Win32/UDK.exe": + - arguments: "-seekfreeloading -simmobileinput" when: - bit: 32 os: windows store: steam - /Binaries/Win64/UDK.exe: - - arguments: '-seekfreeloading -simmobileinput' + "/Binaries/Win64/UDK.exe": + - arguments: "-seekfreeloading -simmobileinput" when: - bit: 64 os: windows @@ -126667,19 +127040,19 @@ Damn!: installDir: Damn: {} launch: - /Damn.exe: + "/Damn.exe": - when: - store: steam steam: id: 680450 Damnation: files: - /My Games/Damnation: + "/My Games/Damnation": tags: - save when: - os: windows - /My Games/Damnation/Config: + "/My Games/Damnation/Config": tags: - config when: @@ -126687,7 +127060,7 @@ Damnation: installDir: Damnation: {} launch: - /Binaries/DamnGame.exe: + "/Binaries/DamnGame.exe": - when: - store: steam steam: @@ -126696,7 +127069,7 @@ Damnation City of Death: installDir: Damnation City of Death: {} launch: - /DamnationCityofDeath.exe: + "/DamnationCityofDeath.exe": - when: - os: windows store: steam @@ -126706,7 +127079,7 @@ Damnaze: installDir: Damnaze: {} launch: - /MazeSurvivor2.exe: + "/MazeSurvivor2.exe": - when: - bit: 64 os: windows @@ -126715,7 +127088,7 @@ Damnaze: id: 989140 Damned: files: - /Damned: + "/Damned": tags: - config when: @@ -126723,7 +127096,7 @@ Damned: installDir: Damned: {} launch: - /Damned.exe: + "/Damned.exe": - when: - store: steam steam: @@ -126732,7 +127105,7 @@ Damned Cold: installDir: Damned Cold: {} launch: - /damnedcold.exe: + "/damnedcold.exe": - when: - os: windows store: steam @@ -126747,7 +127120,7 @@ Damned Hours: installDir: Damned Hours: {} launch: - /HK.exe: + "/HK.exe": - when: - bit: 64 os: windows @@ -126758,7 +127131,7 @@ Damned Nation Reborn: installDir: Damned Nation Reborn: {} launch: - /windows_content/DamnedNR.exe: + "/windows_content/DamnedNR.exe": - when: - os: windows store: steam @@ -126768,15 +127141,15 @@ Damsel: installDir: Damsel: {} launch: - /Damsel: + "/Damsel": - when: - os: linux store: steam - /Damsel.app: + "/Damsel.app": - when: - os: mac store: steam - /Damsel.exe: + "/Damsel.exe": - when: - os: windows store: steam @@ -126786,7 +127159,7 @@ DanCop - Daniela on Duty: installDir: DanCop: {} launch: - /dancop.exe: + "/dancop.exe": - when: - os: windows store: steam @@ -126804,7 +127177,7 @@ Dance Magic: installDir: Dance Magic: {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: @@ -126821,7 +127194,7 @@ Dance With Memes: installDir: Dance With Memes: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -126834,22 +127207,22 @@ Dance of Death: installDir: Dance of Death: {} launch: - /dance_of_death.exe: + "/dance_of_death.exe": - when: - store: steam steam: id: 430020 -'Dance of Death: Du Lac & Fey': +"Dance of Death: Du Lac & Fey": installDir: Dance_of_Death: {} launch: - /dance_of_death.exe: + "/dance_of_death.exe": - when: - bit: 64 os: windows store: steam registry: - 'HKEY_CURRENT_USER/Software/Salix Games/Dance of Death: Du Lac & Fey': + "HKEY_CURRENT_USER/Software/Salix Games/Dance of Death: Du Lac & Fey": tags: - config steam: @@ -126858,7 +127231,7 @@ DanceGirl-Swimwear: installDir: DanceGirl: {} launch: - /DanceGirl.exe: + "/DanceGirl.exe": - when: - os: windows store: steam @@ -126872,7 +127245,7 @@ Dances with Butterflies VR: Dancin Divas: steam: id: 1941370 -'Dancing Arrow : Beat Smash': +"Dancing Arrow : Beat Smash": installDir: Dancing Arrow: {} steam: @@ -126881,7 +127254,7 @@ Dancing Girl: installDir: Dancing Girl: {} launch: - /Dancing Girl.exe: + "/Dancing Girl.exe": - when: - bit: 64 os: windows @@ -126896,7 +127269,7 @@ Dancing with Anime Girls VR: id: 1220640 Dandara: files: - /AppData/LocalLow/Long Hat House/Dandara: + "/AppData/LocalLow/Long Hat House/Dandara": tags: - save when: @@ -126906,22 +127279,22 @@ Dandara: installDir: Dandara: {} launch: - /Dandara.app: - - arguments: '-show-screen-selector' + "/Dandara.app": + - arguments: "-show-screen-selector" when: - os: mac store: steam - /Dandara.exe: - - arguments: '-show-screen-selector' + "/Dandara.exe": + - arguments: "-show-screen-selector" when: - os: windows store: steam - /Dandara.x86: + "/Dandara.x86": - when: - bit: 32 os: linux store: steam - /Dandara.x86_64: + "/Dandara.x86_64": - when: - os: linux store: steam @@ -126935,11 +127308,11 @@ Dandelion - Wishes brought to you -: installDir: Dandelion - Wishes brought to you -: {} launch: - /Dandelion - Wishes brought to you - Full.exe: + "/Dandelion - Wishes brought to you - Full.exe": - when: - os: windows store: steam - /Dandelion - Wishes brought to you -.app: + "/Dandelion - Wishes brought to you -.app": - when: - os: mac store: steam @@ -126949,16 +127322,16 @@ Dandy & Randy: installDir: DandyRandy: {} launch: - /DandyRandy-linux-x64/DandyRandy: + "/DandyRandy-linux-x64/DandyRandy": - when: - os: linux store: steam - /DandyRandy.app: + "/DandyRandy.app": - when: - os: mac store: steam - /dandyrandy.exe: - - arguments: '--in-process-gpu' + "/dandyrandy.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam @@ -126966,7 +127339,7 @@ Dandy & Randy: id: 959130 Dandy Ace: files: - /SaveData: + "/SaveData": tags: - save when: @@ -126974,11 +127347,11 @@ Dandy Ace: installDir: DandyAce: {} launch: - /DandyAce.app/Contents/MacOS/DandyAce: + "/DandyAce.app/Contents/MacOS/DandyAce": - when: - os: mac store: steam - /DandyAce.exe: + "/DandyAce.exe": - when: - os: windows store: steam @@ -126988,45 +127361,45 @@ Dandy Dungeon - Legend of Brave Yamada -: installDir: DandyDungeon: {} launch: - /DandyDungeon.app: + "/DandyDungeon.app": - when: - os: mac store: steam - /DandyDungeon.exe: + "/DandyDungeon.exe": - when: - os: windows store: steam steam: id: 1138970 -'Dandy: Or a Brief Glimpse Into the Life of the Candy Alchemist': +"Dandy: Or a Brief Glimpse Into the Life of the Candy Alchemist": installDir: Dandy: {} launch: - /Dandy.app: + "/Dandy.app": - when: - os: mac store: steam - /Dandy.exe: + "/Dandy.exe": - when: - os: windows store: steam steam: id: 381610 -'Danganronpa 2: Goodbye Despair': +"Danganronpa 2: Goodbye Despair": files: - /Library/Application Support/Danganronpa2: + "/Library/Application Support/Danganronpa2": tags: - config - save when: - os: mac - /My Games/Danganronpa2: + "/My Games/Danganronpa2": tags: - config - save when: - os: windows - /Danganronpa2: + "/Danganronpa2": tags: - config - save @@ -127035,20 +127408,20 @@ Dandy Dungeon - Legend of Brave Yamada -: installDir: Danganronpa 2 Goodbye Despair: {} launch: - /Danganronpa2.app/Contents/MacOS/Danganronpa2: + "/Danganronpa2.app/Contents/MacOS/Danganronpa2": - when: - os: mac store: steam steam: id: 413420 -'Danganronpa Another Episode: Ultra Despair Girls': +"Danganronpa Another Episode: Ultra Despair Girls": files: - /My Games/DanganAnother: + "/My Games/DanganAnother": tags: - save when: - os: windows - /My Games/DanganAnother/stting.ini: + "/My Games/DanganAnother/stting.ini": tags: - config when: @@ -127056,32 +127429,32 @@ Dandy Dungeon - Legend of Brave Yamada -: installDir: Danganronpa Another Episode Ultra Despair Girls: {} launch: - /game.exe: + "/game.exe": - when: - bit: 64 os: windows store: steam steam: id: 555950 -'Danganronpa S: Ultimate Summer Camp': +"Danganronpa S: Ultimate Summer Camp": installDir: Danganronpa S Ultimate Summer Camp: {} launch: - /danganronpa s ultimate summer camp.exe: + "/danganronpa s ultimate summer camp.exe": - when: - bit: 64 os: windows store: steam steam: id: 1691970 -'Danganronpa V3: Killing Harmony': +"Danganronpa V3: Killing Harmony": files: - /config.txt: + "/config.txt": tags: - config when: - os: windows - /userdata//567640/remote: + "/userdata//567640/remote": tags: - save when: @@ -127092,32 +127465,32 @@ Dandy Dungeon - Legend of Brave Yamada -: installDir: Danganronpa V3 Killing Harmony: {} launch: - /Dangan3Win.exe: + "/Dangan3Win.exe": - when: - store: steam steam: id: 567640 -'Danganronpa: Trigger Happy Havoc': +"Danganronpa: Trigger Happy Havoc": files: - /Library/Application Support/Danganronpa: + "/Library/Application Support/Danganronpa": tags: - config - save when: - os: mac - /My Games/Danganronpa: + "/My Games/Danganronpa": tags: - config - save when: - os: windows - /Packages/44133SpikeChunsoftCo.Ltd.DanganRonpa1_f545tdr3ah1rr/SystemAppData/wgs/: + "/Packages/44133SpikeChunsoftCo.Ltd.DanganRonpa1_f545tdr3ah1rr/SystemAppData/wgs/": tags: - save when: - os: windows store: microsoft - /Danganronpa: + "/Danganronpa": tags: - config - save @@ -127129,23 +127502,23 @@ Dandy Dungeon - Legend of Brave Yamada -: installDir: Danganronpa Trigger Happy Havoc: {} launch: - /Danganronpa.app/Contents/MacOS/Danganronpa: + "/Danganronpa.app/Contents/MacOS/Danganronpa": - when: - os: mac store: steam - /Launcher: - - arguments: '-s' + "/Launcher": + - arguments: "-s" when: - bit: 64 os: linux store: steam - - arguments: '-s -32' + - arguments: "-s -32" when: - bit: 32 os: linux store: steam - /Launcher.app/Contents/MacOS/Launcher: - - arguments: '-s' + "/Launcher.app/Contents/MacOS/Launcher": + - arguments: "-s" when: - os: mac store: steam @@ -127160,7 +127533,7 @@ Danger Close!: installDir: Danger Close: {} launch: - /Danger Close.exe: + "/Danger Close.exe": - when: - os: windows store: steam @@ -127173,7 +127546,7 @@ Danger Course VR: id: 1166100 Danger Crew: files: - /dangercrew/storage: + "/dangercrew/storage": tags: - save when: @@ -127181,15 +127554,15 @@ Danger Crew: installDir: Danger Crew: {} launch: - /Danger Crew.app: + "/Danger Crew.app": - when: - os: mac store: steam - /Danger Crew.exe: + "/Danger Crew.exe": - when: - os: windows store: steam - /dangercrew: + "/dangercrew": - when: - os: linux store: steam @@ -127201,7 +127574,7 @@ Danger Forever: installDir: DangerForever: {} launch: - /Rika-dev.exe: + "/Rika-dev.exe": - when: - os: windows store: steam @@ -127211,11 +127584,11 @@ Danger Gazers: installDir: Danger Gazers: {} launch: - /Danger Gazers.exe: + "/Danger Gazers.exe": - when: - os: windows store: steam - /Danger_Gazers: + "/Danger_Gazers": - when: - os: linux store: steam @@ -127233,7 +127606,7 @@ Danger Room VR: id: 852250 Danger Scavenger: files: - /AppData/LocalLow/Star Drifters/Danger Scavenger//youareawesome.scavenger: + "/AppData/LocalLow/Star Drifters/Danger Scavenger//youareawesome.scavenger": tags: - save when: @@ -127243,15 +127616,15 @@ Danger Scavenger: installDir: Danger Scavenger: {} launch: - /Danger Scavenger.exe: + "/Danger Scavenger.exe": - when: - os: windows store: steam - /DangerScavenger.app: + "/DangerScavenger.app": - when: - os: mac store: steam - /Danger_Scavenger.x86_64: + "/Danger_Scavenger.x86_64": - when: - os: linux store: steam @@ -127261,14 +127634,14 @@ Danger Zone: installDir: DangerZone: {} launch: - /DangerZone/Binaries/Win64/DangerZone-Win64-Shipping.exe: + "/DangerZone/Binaries/Win64/DangerZone-Win64-Shipping.exe": - when: - store: steam steam: id: 604740 Danger Zone 2: files: - /DANGER ZONE 2/DangerZone/Config: + "/DANGER ZONE 2/DangerZone/Config": tags: - config when: @@ -127276,7 +127649,7 @@ Danger Zone 2: installDir: DANGER ZONE 2: {} launch: - /DangerZone/Binaries/Win64/DangerZone-Win64-Shipping.exe: + "/DangerZone/Binaries/Win64/DangerZone-Win64-Shipping.exe": - when: - store: steam steam: @@ -127285,7 +127658,7 @@ Danger!Energy: installDir: Danger!Energy: {} launch: - /danger-energy.exe: + "/danger-energy.exe": - when: - os: windows store: steam @@ -127295,7 +127668,7 @@ DangerSpace: installDir: DangerSpace: {} launch: - /DangerSpace.exe: + "/DangerSpace.exe": - when: - os: windows store: steam @@ -127305,11 +127678,11 @@ Dangerous: installDir: Dangerous: {} launch: - /dangerous-mac-1.5.7.app/Contents/MacOS/Dangerous HD: + "/dangerous-mac-1.5.7.app/Contents/MacOS/Dangerous HD": - when: - os: mac store: steam - /dangerous.exe: + "/dangerous.exe": - when: - os: windows store: steam @@ -127319,7 +127692,7 @@ Dangerous Blaster: installDir: Dangerous Blaster: {} launch: - /Dangerous Blaster.exe: + "/Dangerous Blaster.exe": - when: - os: windows store: steam @@ -127329,20 +127702,20 @@ Dangerous Bullets: installDir: Dangerous Bullets: {} launch: - /Dangerous Bullets.exe: + "/Dangerous Bullets.exe": - when: - os: windows store: steam steam: id: 575770 -Dangerous Dave in the Deserted Pirate's Hideout!: +"Dangerous Dave in the Deserted Pirate's Hideout!": files: - /DD DH/DSCORES.DAV: + "/DD DH/DSCORES.DAV": tags: - save when: - store: gog - /DSCORES.DAV: + "/DSCORES.DAV": tags: - save when: @@ -127352,34 +127725,34 @@ Dangerous Dave in the Deserted Pirate's Hideout!: Dangerous Dave in the Haunted Mansion: gog: id: 1207659130 -Dangerous Dave's Risky Rescue: +"Dangerous Dave's Risky Rescue": files: - /*.SAV: + "/*.SAV": tags: - save when: - os: dos - /AUDIO.DAV: + "/AUDIO.DAV": tags: - config when: - os: dos - /CONFIG.DAV: + "/CONFIG.DAV": tags: - config when: - os: dos - /DD RR/*.SAV: + "/DD RR/*.SAV": tags: - save when: - store: gog - /DD RR/AUDIO.DAV: + "/DD RR/AUDIO.DAV": tags: - config when: - store: gog - /DD RR/CONFIG.DAV: + "/DD RR/CONFIG.DAV": tags: - config when: @@ -127388,12 +127761,12 @@ Dangerous Dave's Risky Rescue: id: 1207659130 Dangerous Driving: files: - /DangerousDriving/Saved/Config/WindowsNoEditor: + "/DangerousDriving/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /DangerousDriving/Saved/SaveGames/SaveGame.sav: + "/DangerousDriving/Saved/SaveGames/SaveGame.sav": tags: - save when: @@ -127402,35 +127775,35 @@ Dangerous Duels: installDir: DANGEROUS DUELS: {} launch: - /DANGEROUS DUELS.exe: + "/DANGEROUS DUELS.exe": - when: - os: windows store: steam - /DANGEROUS DUELS.x86_64: + "/DANGEROUS DUELS.x86_64": - when: - os: linux store: steam - /DangerousDuels.app: + "/DangerousDuels.app": - when: - os: mac store: steam steam: id: 524650 -'Dangerous Games: Illusionist': +"Dangerous Games: Illusionist": installDir: - Dangerous Games Illusionist Collector's Edition: {} + "Dangerous Games Illusionist Collector's Edition": {} launch: - /Dangerous_Games_Illusionist_CE.exe: + "/Dangerous_Games_Illusionist_CE.exe": - when: - os: windows store: steam steam: id: 723920 -'Dangerous Games: Prisoners of Destiny': +"Dangerous Games: Prisoners of Destiny": installDir: - Dangerous Games Prisoners of Destiny Collector's Edition: {} + "Dangerous Games Prisoners of Destiny Collector's Edition": {} launch: - /DangerousGames_PrisonersOfDestiny_CE.exe: + "/DangerousGames_PrisonersOfDestiny_CE.exe": - when: - os: windows store: steam @@ -127438,12 +127811,12 @@ Dangerous Duels: id: 593720 Dangerous Golf: files: - /Orlando/Saved/Config/WindowsNoEditor: + "/Orlando/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /Orlando/Saved/SaveGames: + "/Orlando/Saved/SaveGames": tags: - save when: @@ -127451,7 +127824,7 @@ Dangerous Golf: installDir: Dangerous Golf: {} launch: - /Orlando.exe: + "/Orlando.exe": - when: - bit: 64 os: windows @@ -127465,11 +127838,11 @@ Dangerous High School Girls in Trouble!: installDir: Dangerous High School Girls in Trouble: {} launch: - /Dangerous Girls.app: + "/Dangerous Girls.app": - when: - os: mac store: steam - /prog/brigiton.exe: + "/prog/brigiton.exe": - when: - os: windows store: steam @@ -127479,7 +127852,7 @@ Dangerous Lands - Magic and RPG: installDir: Dangerous Lands - Magic and RPG: {} launch: - /DangerousLands.exe: + "/DangerousLands.exe": - when: - os: windows store: steam @@ -127489,7 +127862,7 @@ Dangerous Level: installDir: Dangerous Level: {} launch: - /Dangerous Level.exe: + "/Dangerous Level.exe": - when: - os: windows store: steam @@ -127499,7 +127872,7 @@ Dangerous Orbit: installDir: Dangerous Orbit: {} launch: - /DangerousOrbit.exe: + "/DangerousOrbit.exe": - when: - os: windows store: steam @@ -127509,18 +127882,18 @@ Dangerous Relationship: installDir: Dangerous Relationship: {} launch: - /Dangerous Relationship.exe: - - arguments: '-windowed' + "/Dangerous Relationship.exe": + - arguments: "-windowed" when: - os: windows store: steam steam: id: 494460 -Dangerous Skies 80's edition: +"Dangerous Skies 80's edition": installDir: - Dangerous Skies 80's edition: {} + "Dangerous Skies 80's edition": {} launch: - /dangerousskiespc.exe: + "/dangerousskiespc.exe": - when: - os: windows store: steam @@ -127535,7 +127908,7 @@ Dangerous Waters: installDir: Dangerous Waters: {} launch: - /Steamrun.exe: + "/Steamrun.exe": - when: - store: steam steam: @@ -127544,22 +127917,22 @@ DanielX.net Paint Composer: installDir: DanielX.net Paint Composer: {} launch: - /DanielX.net Paint Composer.app/Contents/MacOS/DanielX.net Paint Composer: + "/DanielX.net Paint Composer.app/Contents/MacOS/DanielX.net Paint Composer": - when: - os: mac store: steam - /DanielX.net Paint Composer.exe: + "/DanielX.net Paint Composer.exe": - when: - os: windows store: steam - /composer-app: - - arguments: '--no-sandbox' + "/composer-app": + - arguments: "--no-sandbox" when: - os: linux store: steam steam: id: 1208550 -'Dank Prank: Dopeville': +"Dank Prank: Dopeville": steam: id: 1018220 Danko and Treasure Map: @@ -127567,7 +127940,7 @@ Danko and Treasure Map: id: 575130 Danmaku Unlimited 2: files: - /profile/save.esf: + "/profile/save.esf": tags: - config - save @@ -127576,7 +127949,7 @@ Danmaku Unlimited 2: installDir: DanmakuUnlimited2: {} launch: - /DU2.exe: + "/DU2.exe": - when: - bit: 32 os: windows @@ -127587,74 +127960,74 @@ Danmaku Unlimited 3: installDir: Danmaku Unlimited 3: {} launch: - /DU3.exe: + "/DU3.exe": - when: - os: windows store: steam steam: id: 450950 -Danny's War: +"Danny's War": steam: id: 559200 -'Danse Macabre: Crimson Cabaret': +"Danse Macabre: Crimson Cabaret": installDir: - Danse Macabre Crimson Cabaret Collector's Edition: {} + "Danse Macabre Crimson Cabaret Collector's Edition": {} launch: - /DanseMacabre_CrimsonCabaret_CE.exe: + "/DanseMacabre_CrimsonCabaret_CE.exe": - when: - os: windows store: steam steam: id: 647930 -'Danse Macabre: Deadly Deception': +"Danse Macabre: Deadly Deception": installDir: - Danse Macabre Deadly Deception Collector's Edition: {} + "Danse Macabre Deadly Deception Collector's Edition": {} launch: - /DanseMacabre_DeadlyDeception_CE.exe: + "/DanseMacabre_DeadlyDeception_CE.exe": - when: - os: windows store: steam steam: id: 796090 -'Danse Macabre: The Last Adagio': +"Danse Macabre: The Last Adagio": installDir: - Danse Macabre The Last Adagio Collector's Edition: {} + "Danse Macabre The Last Adagio Collector's Edition": {} launch: - /Danse_Macabre_The_Last_Adagio_CE.exe: + "/Danse_Macabre_The_Last_Adagio_CE.exe": - when: - store: steam steam: id: 551380 -'Danse Macabre: Thin Ice': +"Danse Macabre: Thin Ice": installDir: - Danse Macabre Thin Ice Collector's Edition: {} + "Danse Macabre Thin Ice Collector's Edition": {} launch: - /DanseMacabre_ThinIce_CE.exe: + "/DanseMacabre_ThinIce_CE.exe": - when: - os: windows store: steam steam: id: 887950 -Dante's Forest: +"Dante's Forest": installDir: - Dante's Forest: {} + "Dante's Forest": {} steam: id: 538040 -'Daoker:A Banished Tiger': +"Daoker:A Banished Tiger": installDir: xunzhanjiapigou: {} launch: - /0.9/血战夹皮沟.exe: + "/0.9/血战夹皮沟.exe": - when: - os: windows store: steam steam: id: 839500 -Daraney - Guardian's Rise: +"Daraney - Guardian's Rise": installDir: - Daraney - Guardian's Rise: {} + "Daraney - Guardian's Rise": {} launch: - /Daraney.exe: + "/Daraney.exe": - when: - os: windows store: steam @@ -127664,25 +128037,25 @@ Darco - Reign of Elements: installDir: DARCO - Reign of Elements: {} launch: - /DarcoClient.exe: + "/DarcoClient.exe": - when: - os: windows store: steam steam: id: 789960 -'Darconika: The Cube of Soul': +"Darconika: The Cube of Soul": files: - /game/saves: + "/game/saves": tags: - save when: - os: windows - /renpy/config.py: + "/renpy/config.py": tags: - config when: - os: windows - /renpy/Darconika-1448176779: + "/renpy/Darconika-1448176779": tags: - save when: @@ -127693,21 +128066,21 @@ Dare Course: installDir: Dare Course: {} launch: - /Dare Course.app/Contents/MacOS/Dare Course: + "/Dare Course.app/Contents/MacOS/Dare Course": - when: - os: mac store: steam - /Dare Course.exe: + "/Dare Course.exe": - when: - os: windows store: steam steam: id: 896730 -'DareSora: Tears for an Unknown Sky': +"DareSora: Tears for an Unknown Sky": installDir: DareSora - Tears for an Unknown Sky: {} launch: - /daresora_vol1.exe: + "/daresora_vol1.exe": - when: - store: steam steam: @@ -127716,7 +128089,7 @@ Darius Cozmic Collection Arcade: installDir: Darius Cozmic Collection Arcade: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -127724,7 +128097,7 @@ Darius Cozmic Collection Arcade: id: 1638330 Dariusburst Chronicle Saviours: files: - /userdata//377870/remote: + "/userdata//377870/remote": tags: - config - save @@ -127734,20 +128107,20 @@ Dariusburst Chronicle Saviours: installDir: DARIUSBURST Chronicle Saviours: {} launch: - /dariusburstcs.exe: + "/dariusburstcs.exe": - when: - store: steam steam: id: 377870 Dark: files: - /userdata//225360/remote/savegames: + "/userdata//225360/remote/savegames": tags: - save when: - os: windows store: steam - /Kalypso Media/Dark: + "/Kalypso Media/Dark": tags: - config when: @@ -127755,7 +128128,7 @@ Dark: installDir: Dark: {} launch: - /DarkApp.exe: + "/DarkApp.exe": - when: - os: windows store: steam @@ -127763,17 +128136,17 @@ Dark: id: 225360 Dark Ages: files: - /HIGHSCOR.DA1: + "/HIGHSCOR.DA1": tags: - save when: - os: dos - /KEYBOARD.CFG: + "/KEYBOARD.CFG": tags: - config when: - os: dos - /SAVEGAME.DA1: + "/SAVEGAME.DA1": tags: - save when: @@ -127781,73 +128154,73 @@ Dark Ages: installDir: Dark Ages: {} launch: - /Dark Ages.app: + "/Dark Ages.app": - when: - os: mac store: steam - /Dark Ages/dosbox/dosbox.exe: - - arguments: '-conf \"..\\DARK.conf\" -noconsole -c' + "/Dark Ages/dosbox/dosbox.exe": + - arguments: "-conf \\\"..\\\\DARK.conf\\\" -noconsole -c" when: - os: windows store: steam - workingDir: /Dark Ages/dosbox - /Dosbox/dosbox: - - arguments: '-conf \"..\\DARK.conf\" -noconsole -c' + workingDir: "/Dark Ages/dosbox" + "/Dosbox/dosbox": + - arguments: "-conf \\\"..\\\\DARK.conf\\\" -noconsole -c" when: - os: linux store: steam - workingDir: /Dosbox + workingDir: "/Dosbox" steam: id: 358440 Dark Alley Elf: installDir: Dark Alley Elf: {} launch: - /DarkAlleyElf.exe: + "/DarkAlleyElf.exe": - when: - os: windows store: steam steam: id: 988940 -'Dark Angels: Masquerade of Shadows': +"Dark Angels: Masquerade of Shadows": installDir: DarkAngelsMasqueradeofShadows: {} launch: - /DarkAngel.exe: + "/DarkAngel.exe": - when: - os: windows store: steam steam: id: 560720 -'Dark Arcana: The Carnival': +"Dark Arcana: The Carnival": installDir: Dark Arcana The Carnival: {} launch: - /DarkArcana_TheCarnival.exe: + "/DarkArcana_TheCarnival.exe": - when: - os: windows store: steam - /DarkArcana_TheCarnival_amd64: + "/DarkArcana_TheCarnival_amd64": - when: - bit: 64 os: linux store: steam - /DarkArcana_TheCarnival_i386: + "/DarkArcana_TheCarnival_i386": - when: - bit: 32 os: linux store: steam - /mac_steam.app/Contents/MacOS/mac_steam: + "/mac_steam.app/Contents/MacOS/mac_steam": - when: - os: mac store: steam steam: id: 284730 -'Dark Asylum: Mystery Adventure': +"Dark Asylum: Mystery Adventure": installDir: Dark Asylum: {} launch: - /DarkAsylumMysteryAdventure.exe: + "/DarkAsylumMysteryAdventure.exe": - when: - store: steam steam: @@ -127856,15 +128229,15 @@ Dark Bestiary: installDir: Dark Bestiary: {} launch: - /Dark Bestiary.app: + "/Dark Bestiary.app": - when: - os: mac store: steam - /Dark Bestiary.exe: + "/Dark Bestiary.exe": - when: - os: windows store: steam - /Dark Bestiary.x86_64: + "/Dark Bestiary.x86_64": - when: - os: linux store: steam @@ -127874,7 +128247,7 @@ Dark Blood: installDir: Dark Blood: {} launch: - /Dark Blood.exe: + "/Dark Blood.exe": - when: - os: windows store: steam @@ -127883,41 +128256,41 @@ Dark Blood: Dark Burial: steam: id: 1077140 -'Dark Canvas: A Brush With Death': +"Dark Canvas: A Brush With Death": installDir: Dark Canvas A Brush With Death Collectors Edition: {} launch: - /DarkCanvas_BrushWithDeath.exe: + "/DarkCanvas_BrushWithDeath.exe": - when: - os: windows store: steam steam: id: 549220 -'Dark Canvas: A Murder Exposed': +"Dark Canvas: A Murder Exposed": installDir: - Dark Canvas A Murder Exposed Collector's Edition: {} + "Dark Canvas A Murder Exposed Collector's Edition": {} launch: - /DarkCanvas_MurderExposed_CE.exe: + "/DarkCanvas_MurderExposed_CE.exe": - when: - os: windows store: steam steam: id: 826380 -'Dark Canvas: Blood and Stone': +"Dark Canvas: Blood and Stone": installDir: - Dark Canvas Blood and Stone Collector's Edition: {} + "Dark Canvas Blood and Stone Collector's Edition": {} launch: - /DarkCanvas_BloodAndStone_CE.exe: + "/DarkCanvas_BloodAndStone_CE.exe": - when: - os: windows store: steam steam: id: 723910 -'Dark Cases: The Blood Ruby': +"Dark Cases: The Blood Ruby": installDir: - Dark Cases The Blood Ruby Collector's Edition: {} + "Dark Cases The Blood Ruby Collector's Edition": {} launch: - /DarkCases_TheBloodRuby_CE.exe: + "/DarkCases_TheBloodRuby_CE.exe": - when: - store: steam steam: @@ -127926,45 +128299,45 @@ Dark Chess: installDir: Dark Chess: {} launch: - /Contents/MacOS/Dark Chess: + "/Contents/MacOS/Dark Chess": - when: - os: mac store: steam - /Dark Chess.exe: + "/Dark Chess.exe": - when: - os: windows store: steam - /Dark Chess.x86_64: + "/Dark Chess.x86_64": - when: - os: linux store: steam steam: id: 1151130 -'Dark City: Dublin': +"Dark City: Dublin": installDir: - Dark City Dublin Collector's Edition: {} + "Dark City Dublin Collector's Edition": {} launch: - /DC_Dublin_CE.exe: + "/DC_Dublin_CE.exe": - when: - os: windows store: steam steam: id: 1265970 -'Dark City: Paris': +"Dark City: Paris": installDir: - Dark City Paris Collector's Edition: {} + "Dark City Paris Collector's Edition": {} launch: - /DarkCity_Paris_CE.exe: + "/DarkCity_Paris_CE.exe": - when: - os: windows store: steam steam: id: 1805100 -'Dark City: Vienna': +"Dark City: Vienna": installDir: - Dark City Vienna Collector's Edition: {} + "Dark City Vienna Collector's Edition": {} launch: - /DC_Vienna_CE.exe: + "/DC_Vienna_CE.exe": - when: - os: windows store: steam @@ -127972,7 +128345,7 @@ Dark Chess: id: 1157810 Dark Colony: files: - /save: + "/save": tags: - save when: @@ -127981,7 +128354,7 @@ Dark Core: installDir: Dark Core: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -127989,7 +128362,7 @@ Dark Core: id: 773190 Dark Crypt: files: - /.local/share/godot/app_userdata/Dark Crypt: + "/.local/share/godot/app_userdata/Dark Crypt": tags: - config - save @@ -127998,16 +128371,16 @@ Dark Crypt: installDir: Dark Crypt: {} launch: - /Dark Crypt.app/Contents/MacOS/Dark Crypt: + "/Dark Crypt.app/Contents/MacOS/Dark Crypt": - when: - os: mac store: steam - /DarkCrypt.exe: + "/DarkCrypt.exe": - when: - bit: 64 os: windows store: steam - /DarkCrypt.x86_64: + "/DarkCrypt.x86_64": - when: - bit: 64 os: linux @@ -128018,11 +128391,11 @@ Dark Data: installDir: Dark Data: {} launch: - /DarkData.app: + "/DarkData.app": - when: - os: mac store: steam - /DarkData.exe: + "/DarkData.exe": - when: - os: windows store: steam @@ -128032,7 +128405,7 @@ Dark Days: installDir: Dark Days: {} launch: - /Dark Days.exe: + "/Dark Days.exe": - when: - os: windows store: steam @@ -128042,7 +128415,7 @@ Dark Days of Horror: installDir: Dark Days of Horror: {} launch: - /DarkDaysOfHorror.exe: + "/DarkDaysOfHorror.exe": - when: - os: windows store: steam @@ -128050,7 +128423,7 @@ Dark Days of Horror: id: 865330 Dark Deception: files: - /DDeception/Saved/SaveGames/*.sav: + "/DDeception/Saved/SaveGames/*.sav": tags: - config - save @@ -128059,18 +128432,18 @@ Dark Deception: installDir: Dark Deception: {} launch: - /DDeception.exe: + "/DDeception.exe": - when: - bit: 64 os: windows store: steam steam: id: 332950 -'Dark Deception: Monsters & Mortals': +"Dark Deception: Monsters & Mortals": installDir: Dark Deception Monsters & Mortals: {} launch: - /DD_MnM.exe: + "/DD_MnM.exe": - when: - bit: 64 os: windows @@ -128079,12 +128452,12 @@ Dark Deception: id: 1266690 Dark Deity: files: - /Dark_Deity/Config.ini: + "/Dark_Deity/Config.ini": tags: - config when: - os: windows - /Dark_Deity/Save*.ini: + "/Dark_Deity/Save*.ini": tags: - save when: @@ -128092,17 +128465,17 @@ Dark Deity: installDir: Dark Deity: {} launch: - /launcher/freedom-launcher.exe: + "/launcher/freedom-launcher.exe": - when: - os: windows store: steam steam: id: 1374840 -'Dark Descent: The Blue Rose': +"Dark Descent: The Blue Rose": installDir: Dark Descent The Blue Rose: {} launch: - /DarkDescentBlueRose.exe: + "/DarkDescentBlueRose.exe": - when: - os: windows store: steam @@ -128110,12 +128483,12 @@ Dark Deity: id: 676800 Dark Devotion: files: - /0_*: + "/0_*": tags: - save when: - os: windows - /0_Options: + "/0_Options": tags: - config when: @@ -128125,56 +128498,56 @@ Dark Devotion: installDir: Dark Devotion: {} launch: - /DarkDevotion.exe: + "/DarkDevotion.exe": - when: - os: windows store: steam steam: id: 718590 -'Dark Dimensions: City of Ash': +"Dark Dimensions: City of Ash": installDir: - Dark Dimensions City of Ash Collector's Edition: {} + "Dark Dimensions City of Ash Collector's Edition": {} launch: - /DarkDimensions_CityOfAsh_CE.exe: + "/DarkDimensions_CityOfAsh_CE.exe": - when: - os: windows store: steam steam: id: 729920 -'Dark Dimensions: City of Fog': +"Dark Dimensions: City of Fog": installDir: - Dark Dimensions City of Fog Collector's Edition: {} + "Dark Dimensions City of Fog Collector's Edition": {} launch: - /DarkDimensions_CityOfFog.exe: + "/DarkDimensions_CityOfFog.exe": - when: - store: steam steam: id: 578360 -'Dark Dimensions: Homecoming': +"Dark Dimensions: Homecoming": installDir: - Dark Dimensions Homecoming Collector's Edition: {} + "Dark Dimensions Homecoming Collector's Edition": {} launch: - /DarkDimensions_Homecoming_CE.exe: + "/DarkDimensions_Homecoming_CE.exe": - when: - os: windows store: steam steam: id: 956380 -'Dark Dimensions: Somber Song': +"Dark Dimensions: Somber Song": installDir: - Dark Dimensions Somber Song Collector's Edition: {} + "Dark Dimensions Somber Song Collector's Edition": {} launch: - /DarkDimensions_SomberSong_CE.exe: + "/DarkDimensions_SomberSong_CE.exe": - when: - os: windows store: steam steam: id: 838710 -'Dark Dimensions: Wax Beauty': +"Dark Dimensions: Wax Beauty": installDir: - Dark Dimensions Wax Beauty Collector's Edition: {} + "Dark Dimensions Wax Beauty Collector's Edition": {} launch: - /DarkDimensions_WaxBeauty_CE.exe: + "/DarkDimensions_WaxBeauty_CE.exe": - when: - os: windows store: steam @@ -128185,14 +128558,14 @@ Dark Drive: id: 822030 Dark Earth: files: - /save: + "/save": tags: - save when: - os: windows Dark Echo: files: - /lock_icon.png: + "/lock_icon.png": tags: - save when: @@ -128200,20 +128573,20 @@ Dark Echo: installDir: Dark Echo: {} launch: - /DarkEcho.app: + "/DarkEcho.app": - when: - os: mac store: steam - /DarkEcho.exe: + "/DarkEcho.exe": - when: - os: windows store: steam - /DarkEcho.x86: + "/DarkEcho.x86": - when: - bit: 32 os: linux store: steam - /DarkEcho.x86_64: + "/DarkEcho.x86_64": - when: - bit: 64 os: linux @@ -128228,7 +128601,7 @@ Dark Eden: installDir: Dark Eden: {} launch: - /updater.exe: + "/updater.exe": - arguments: steam when: - os: windows @@ -128239,7 +128612,7 @@ Dark Eden Origin: installDir: Dark Eden Origin: {} launch: - /updater.exe: + "/updater.exe": - arguments: steam when: - os: windows @@ -128250,7 +128623,7 @@ Dark Egypt: installDir: Dark Egypt: {} launch: - /Dark Egypt.exe: + "/Dark Egypt.exe": - when: - os: windows store: steam @@ -128260,16 +128633,16 @@ Dark Elf: installDir: Dark Elf: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: id: 665180 -Dark Elf's Adventure: +"Dark Elf's Adventure": installDir: - Dark Elf's Adventure: {} + "Dark Elf's Adventure": {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -128279,7 +128652,7 @@ Dark Empire: installDir: Dark Empire: {} launch: - /Dark Empire.exe: + "/Dark Empire.exe": - when: - os: windows store: steam @@ -128287,12 +128660,12 @@ Dark Empire: id: 681030 Dark Envoy: files: - /AppData/LocalLow/Event Horizon/DarkEnvoy/save: + "/AppData/LocalLow/Event Horizon/DarkEnvoy/save": tags: - save when: - os: windows - /AppData/LocalLow/Event Horizon/DarkEnvoy/settings: + "/AppData/LocalLow/Event Horizon/DarkEnvoy/settings": tags: - config when: @@ -128305,8 +128678,8 @@ Dark Fairies: installDir: Dark Fairies: {} launch: - /nw.exe: - - arguments: '--in-process-gpu' + "/nw.exe": + - arguments: "--in-process-gpu" when: - bit: 64 os: windows @@ -128317,14 +128690,14 @@ Dark Fairy Fantasy: installDir: Dark Fairy Fantasy: {} launch: - /nw.exe: + "/nw.exe": - when: - store: steam steam: id: 1153550 -'Dark Fall 3: Lost Souls': +"Dark Fall 3: Lost Souls": files: - /Saved Games/Dark Fall - Lost Souls: + "/Saved Games/Dark Fall - Lost Souls": tags: - save when: @@ -128334,8 +128707,8 @@ Dark Fairy Fantasy: installDir: Dark Fall Lost Souls: {} launch: - /DarkFallLostSouls.exe: - - arguments: '-Launch' + "/DarkFallLostSouls.exe": + - arguments: "-Launch" when: - store: steam registry: @@ -128344,21 +128717,21 @@ Dark Fairy Fantasy: - config steam: id: 46750 -'Dark Fall II: Lights Out': +"Dark Fall II: Lights Out": gog: id: 1207658830 installDir: Dark Fall 2 Lights Out: {} launch: - /DarkFall2.exe: + "/DarkFall2.exe": - when: - os: windows store: steam steam: id: 260710 -'Dark Fall: Ghost Vigil': +"Dark Fall: Ghost Vigil": files: - /AppData/LocalLow/Darkling Room/Dark Fall - Ghost Vigil: + "/AppData/LocalLow/Darkling Room/Dark Fall - Ghost Vigil": tags: - save when: @@ -128368,11 +128741,11 @@ Dark Fairy Fantasy: installDir: Dark Fall Ghost Vigil: {} launch: - /Dark Fall - Ghost Vigil.exe: + "/Dark Fall - Ghost Vigil.exe": - when: - os: windows store: steam - /DarkFallGhostVigil.app/Contents/MacOS/Dark Fall - Ghost Vigil: + "/DarkFallGhostVigil.app/Contents/MacOS/Dark Fall - Ghost Vigil": - when: - os: mac store: steam @@ -128382,49 +128755,49 @@ Dark Fairy Fantasy: - config steam: id: 1169020 -'Dark Fall: The Journal': +"Dark Fall: The Journal": gog: id: 1207658804 installDir: Dark Fall 1 The Journal: {} launch: - /DarkFall.exe: + "/DarkFall.exe": - when: - store: steam steam: id: 260690 -'Dark Fantasy 2: Jigsaw Puzzle': +"Dark Fantasy 2: Jigsaw Puzzle": installDir: Dark Fantasy 2 Jigsaw Puzzle: {} launch: - /Dark Fantasy 2.app: + "/Dark Fantasy 2.app": - when: - os: mac store: steam - /Dark Fantasy 2.exe: + "/Dark Fantasy 2.exe": - when: - os: windows store: steam - /Dark Fantasy 2.x86_64: + "/Dark Fantasy 2.x86_64": - when: - os: linux store: steam steam: id: 1071330 -'Dark Fantasy: Jigsaw Puzzle': +"Dark Fantasy: Jigsaw Puzzle": installDir: Dark Fantasy: {} launch: - /Dark Fantasy.app: + "/Dark Fantasy.app": - when: - os: mac store: steam - /Dark Fantasy.exe: + "/Dark Fantasy.exe": - when: - bit: 64 os: windows store: steam - /Dark Fantasy.x86_64: + "/Dark Fantasy.x86_64": - when: - bit: 64 os: linux @@ -128435,7 +128808,7 @@ Dark Fear: installDir: Dark Fear: {} launch: - /Dark Fear.exe: + "/Dark Fear.exe": - when: - os: windows store: steam @@ -128445,15 +128818,15 @@ Dark Forest: installDir: Dark Forest: {} launch: - /Dark Forest.exe: + "/Dark Forest.exe": - when: - os: windows store: steam - /DarkForest.app/Contents/MacOS/Dark Forest: + "/DarkForest.app/Contents/MacOS/Dark Forest": - when: - os: mac store: steam - /darkForest.x86_64: + "/darkForest.x86_64": - when: - os: linux store: steam @@ -128463,20 +128836,20 @@ Dark Forester: installDir: Dark Forester: {} launch: - /darkforester.exe: + "/darkforester.exe": - when: - os: windows store: steam steam: id: 349450 -'Dark Future: Blood Red States': +"Dark Future: Blood Red States": files: - /DarkFuture/Saved/Config: + "/DarkFuture/Saved/Config": tags: - config when: - os: windows - /DarkFuture/Saved/SaveGames: + "/DarkFuture/Saved/SaveGames": tags: - save when: @@ -128486,8 +128859,8 @@ Dark Forester: installDir: Dark Future Blood Red States: {} launch: - /DarkFuture.exe: - - arguments: '-Installed' + "/DarkFuture.exe": + - arguments: "-Installed" when: - bit: 64 os: windows @@ -128498,11 +128871,11 @@ Dark Gates: installDir: DarkGates: {} launch: - /dark-gates: + "/dark-gates": - when: - os: linux store: steam - /dark-gates.exe: + "/dark-gates.exe": - when: - os: windows store: steam @@ -128512,7 +128885,7 @@ Dark Ghost RPG: installDir: Dark Ghost RPG: {} launch: - /DarkGhostRPG.exe: + "/DarkGhostRPG.exe": - when: - bit: 64 os: windows @@ -128523,7 +128896,7 @@ Dark Gnome: installDir: Dark Gnome: {} launch: - /DarkGnome.exe: + "/DarkGnome.exe": - when: - os: windows store: steam @@ -128536,31 +128909,31 @@ Dark Grim Mariupolis: installDir: Dark Grim Mariupolis: {} launch: - /Dark Grim Mariupolis.exe: + "/Dark Grim Mariupolis.exe": - when: - os: windows store: steam steam: id: 597730 -'Dark Heritage: Guardians of Hope': +"Dark Heritage: Guardians of Hope": installDir: Dark Heritage Guardians of Hope: {} launch: - /DarkHeritage.exe: + "/DarkHeritage.exe": - when: - os: windows store: steam - /DarkHeritage_amd64: + "/DarkHeritage_amd64": - when: - bit: 64 os: linux store: steam - /DarkHeritage_i386: + "/DarkHeritage_i386": - when: - bit: 32 os: linux store: steam - /mac_steam.app/Contents/MacOS/mac_steam: + "/mac_steam.app/Contents/MacOS/mac_steam": - when: - os: mac store: steam @@ -128570,7 +128943,7 @@ Dark Hero Party: installDir: Dark Hero Party: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: @@ -128579,11 +128952,11 @@ Dark Hill Museum of Death: installDir: Dark Hill Museum of Death: {} launch: - /DarkHill.exe: + "/DarkHill.exe": - when: - os: windows store: steam - /DarkHill.x86_64: + "/DarkHill.x86_64": - when: - bit: 64 os: linux @@ -128594,25 +128967,25 @@ Dark Hope: installDir: Dark_Hope: {} launch: - /Dark_Hope.app: + "/Dark_Hope.app": - when: - os: mac store: steam - /Dark_Hope.exe: + "/Dark_Hope.exe": - when: - bit: 64 os: windows store: steam - /Dark_Hope.x86_64: + "/Dark_Hope.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 620350 -'Dark Horizons: Mechanized Corps': +"Dark Horizons: Mechanized Corps": files: - /art: + "/art": tags: - config when: @@ -128620,16 +128993,16 @@ Dark Hope: installDir: MechanizedCorps: {} launch: - /DHMCDev: + "/DHMCDev": - when: - bit: 64 os: linux store: steam - /DHMCDev.app: + "/DHMCDev.app": - when: - os: mac store: steam - /DHMCDev.exe: + "/DHMCDev.exe": - when: - bit: 64 os: windows @@ -128651,7 +129024,7 @@ Dark Legion VR: id: 598690 Dark Legions: files: - /DLEGIONS/*.GAM: + "/DLEGIONS/*.GAM": tags: - save when: @@ -128661,15 +129034,15 @@ Dark Legions: installDir: Dark Legions: {} launch: - /DOSBOX/DOSBox.exe: - - arguments: '-noconsole -conf dl-base.conf -conf dl-graphics.conf -conf dl-game.conf' + "/DOSBOX/DOSBox.exe": + - arguments: "-noconsole -conf dl-base.conf -conf dl-graphics.conf -conf dl-game.conf" when: - store: steam steam: id: 2414360 Dark Light: files: - /AppData/LocalLow/Mirari_co_JinxterGames/Dark Light: + "/AppData/LocalLow/Mirari_co_JinxterGames/Dark Light": tags: - save when: @@ -128679,11 +129052,11 @@ Dark Light: installDir: Dark Light: {} launch: - /Dark Light.exe: + "/Dark Light.exe": - when: - os: windows store: steam - /DarkLight.app/Contents/MacOS/DarkLight: + "/DarkLight.app/Contents/MacOS/DarkLight": - when: - os: mac store: steam @@ -128693,23 +129066,23 @@ Dark Light: - config steam: id: 1134520 -'Dark Lore Mysteries: The Hunt For Truth': +"Dark Lore Mysteries: The Hunt For Truth": installDir: Dark Lore Mysteries The Hunt For Truth: {} launch: - /DarkLoreMysteries_TheHuntForTruth.exe: + "/DarkLoreMysteries_TheHuntForTruth.exe": - when: - store: steam steam: id: 288970 Dark Matter: files: - /userdata//251410/remote/*.sav: + "/userdata//251410/remote/*.sav": tags: - save when: - store: steam - /userdata//251410/remote/dmprefs.bin: + "/userdata//251410/remote/dmprefs.bin": tags: - config when: @@ -128719,15 +129092,15 @@ Dark Matter: installDir: dark matter iw: {} launch: - /darkmatter.app: + "/darkmatter.app": - when: - os: mac store: steam - /darkmatter.exe: + "/darkmatter.exe": - when: - os: windows store: steam - /darkmatter.sh: + "/darkmatter.sh": - when: - os: linux store: steam @@ -128741,7 +129114,7 @@ Dark Matter (2015): installDir: Dark Matter: {} launch: - /Dark Matter.exe: + "/Dark Matter.exe": - when: - os: windows store: steam @@ -128751,7 +129124,7 @@ Dark Matter (2018): installDir: NEW DARK MATTER: {} launch: - /Dark Matter.exe: + "/Dark Matter.exe": - when: - store: steam steam: @@ -128760,7 +129133,7 @@ Dark Maze: installDir: Dark Maze: {} launch: - /Dark Maze.exe: + "/Dark Maze.exe": - when: - store: steam steam: @@ -128775,12 +129148,12 @@ Dark Mechanism: id: 600580 Dark Messiah of Might and Magic: files: - /mm/SAVE: + "/mm/SAVE": tags: - save when: - os: windows - /mm/cfg/config.cfg: + "/mm/cfg/config.cfg": tags: - config when: @@ -128791,8 +129164,8 @@ Dark Messiah of Might and Magic: installDir: Dark Messiah Might and Magic Single Player: {} launch: - /mm.exe: - - arguments: '-steam' + "/mm.exe": + - arguments: "-steam" when: - store: steam registry: @@ -128805,11 +129178,11 @@ Dark Miasma: installDir: Dark Miasma: {} launch: - /Dark Miasma.exe: + "/Dark Miasma.exe": - when: - os: windows store: steam - /DarkMiasma.app/Contents/MacOS/DarkMiasma: + "/DarkMiasma.app/Contents/MacOS/DarkMiasma": - when: - os: mac store: steam @@ -128822,7 +129195,7 @@ Dark Mystery: installDir: Dark Mystery: {} launch: - /dark.exe: + "/dark.exe": - when: - os: windows store: steam @@ -128837,11 +129210,11 @@ Dark Night: installDir: Dark Night: {} launch: - /Dark Night.app: + "/Dark Night.app": - when: - os: mac store: steam - /Dark Night.exe: + "/Dark Night.exe": - when: - os: windows store: steam @@ -128851,15 +129224,15 @@ Dark Nights: installDir: Dark Nights: {} launch: - /DarkNights-1.0-pc/DarkNights.exe: + "/DarkNights-1.0-pc/DarkNights.exe": - when: - os: windows store: steam - /DarkNights-1.0-pc/DarkNights.sh: + "/DarkNights-1.0-pc/DarkNights.sh": - when: - os: linux store: steam - /DarkNights.app: + "/DarkNights.app": - when: - os: mac store: steam @@ -128867,7 +129240,7 @@ Dark Nights: id: 2143340 Dark Nights with Poe and Munro: files: - /AppData/LocalLow/DAvekki/DarkNights/save.json: + "/AppData/LocalLow/DAvekki/DarkNights/save.json": tags: - save when: @@ -128877,16 +129250,16 @@ Dark Nights with Poe and Munro: installDir: Dark Nights with Poe and Munro: {} launch: - /Contents/MacOS/DarkNights: + "/Contents/MacOS/DarkNights": - when: - os: mac store: steam - /DarkNights.exe: + "/DarkNights.exe": - when: - bit: 64 os: windows store: steam - /DarkNights.x86_64: + "/DarkNights.x86_64": - when: - os: linux store: steam @@ -128896,7 +129269,7 @@ Dark Noid: installDir: Dark Noid: {} launch: - /Dark Noid.exe: + "/Dark Noid.exe": - when: - os: windows store: steam @@ -128906,175 +129279,175 @@ Dark Old Sun: installDir: Dark Old Sun: {} launch: - /Dark Old Sun.exe: + "/Dark Old Sun.exe": - when: - os: windows store: steam - /DarkOldSun.app: + "/DarkOldSun.app": - when: - os: mac store: steam - /darkoldsun.x86: + "/darkoldsun.x86": - when: - os: linux store: steam steam: id: 739290 -'Dark Parables: Ballad of Rapunzel': +"Dark Parables: Ballad of Rapunzel": installDir: - Dark Parables Ballad of Rapunzel Collector's Edition: {} + "Dark Parables Ballad of Rapunzel Collector's Edition": {} launch: - /DarkParables_BalladOfRapunzel_CE.exe: + "/DarkParables_BalladOfRapunzel_CE.exe": - when: - os: windows store: steam steam: id: 629110 -'Dark Parables: Curse of Briar Rose': +"Dark Parables: Curse of Briar Rose": installDir: - Dark Parables Curse of Briar Rose Collector's Edition: {} + "Dark Parables Curse of Briar Rose Collector's Edition": {} launch: - /Dark Parables - Curse of Briar Rose.exe: + "/Dark Parables - Curse of Briar Rose.exe": - when: - store: steam steam: id: 524600 -'Dark Parables: Goldilocks and the Fallen Star': +"Dark Parables: Goldilocks and the Fallen Star": installDir: - Dark Parables Goldilocks and the Fallen Star Collector's Edition: {} + "Dark Parables Goldilocks and the Fallen Star Collector's Edition": {} launch: - /DarkParables_GoldilocksAndTheFallenStar_CE.exe: + "/DarkParables_GoldilocksAndTheFallenStar_CE.exe": - when: - os: windows store: steam steam: id: 711890 -'Dark Parables: Jack and the Sky Kingdom': +"Dark Parables: Jack and the Sky Kingdom": installDir: - Dark Parables Jack and the Sky Kingdom Collector's Edition: {} + "Dark Parables Jack and the Sky Kingdom Collector's Edition": {} launch: - /DarkParables_JackAndTheSkyKingdom_CE.exe: + "/DarkParables_JackAndTheSkyKingdom_CE.exe": - when: - store: steam steam: id: 578320 -'Dark Parables: Portrait of the Stained Princess': +"Dark Parables: Portrait of the Stained Princess": installDir: - Dark Parables Portrait of the Stained Princess Collector's Edition: {} + "Dark Parables Portrait of the Stained Princess Collector's Edition": {} launch: - /DarkParables_PortraitOfTheStainedPrincess_CE.exe: + "/DarkParables_PortraitOfTheStainedPrincess_CE.exe": - when: - os: windows store: steam steam: id: 1161570 -'Dark Parables: Queen of Sands': +"Dark Parables: Queen of Sands": installDir: - Dark Parables Queen of Sands Collector's Edition: {} + "Dark Parables Queen of Sands Collector's Edition": {} launch: - /DarkParables_QueenOfSands_CE.exe: + "/DarkParables_QueenOfSands_CE.exe": - when: - os: windows store: steam steam: id: 678440 -'Dark Parables: Requiem for the Forgotten Shadow': +"Dark Parables: Requiem for the Forgotten Shadow": installDir: - Dark Parables Requiem for the Forgotten Shadow Collector's Edition: {} + "Dark Parables Requiem for the Forgotten Shadow Collector's Edition": {} launch: - /DP_RFTFS_CE_mac.app/Contents/MacOS/EipixGame: + "/DP_RFTFS_CE_mac.app/Contents/MacOS/EipixGame": - when: - os: mac store: steam - /DarkParables_RFTFS_CE.exe: + "/DarkParables_RFTFS_CE.exe": - when: - os: windows store: steam steam: id: 601420 -'Dark Parables: Return of the Salt Princess': +"Dark Parables: Return of the Salt Princess": installDir: - Dark Parables Return of the Salt Princess Collector's Edition: {} + "Dark Parables Return of the Salt Princess Collector's Edition": {} launch: - /DarkParables_ReturnOfTheSaltPrincess_CE.exe: + "/DarkParables_ReturnOfTheSaltPrincess_CE.exe": - when: - os: windows store: steam steam: id: 815580 -'Dark Parables: Rise of the Snow Queen': +"Dark Parables: Rise of the Snow Queen": installDir: - Dark Parables Rise of the Snow Queen Collector's Edition: {} + "Dark Parables Rise of the Snow Queen Collector's Edition": {} launch: - /DarkParables_RiseoftheSnowQueen.exe: + "/DarkParables_RiseoftheSnowQueen.exe": - when: - store: steam steam: id: 499110 -'Dark Parables: The Exiled Prince': +"Dark Parables: The Exiled Prince": installDir: - Dark Parables The Exiled Prince Collector's Edition: {} + "Dark Parables The Exiled Prince Collector's Edition": {} launch: - /Dark Parables The Exiled Prince.exe: + "/Dark Parables The Exiled Prince.exe": - when: - store: steam steam: id: 499100 -'Dark Parables: The Final Cinderella': +"Dark Parables: The Final Cinderella": installDir: - Dark Parables The Final Cinderella Collector's Edition: {} + "Dark Parables The Final Cinderella Collector's Edition": {} launch: - /DarkParables_TheFinalCinderella_CE.exe: + "/DarkParables_TheFinalCinderella_CE.exe": - when: - store: steam steam: id: 465890 -'Dark Parables: The Little Mermaid and the Purple Tide': +"Dark Parables: The Little Mermaid and the Purple Tide": installDir: - Dark Parables The Little Mermaid and the Purple Tide Collector's Edition: {} + "Dark Parables The Little Mermaid and the Purple Tide Collector's Edition": {} launch: - /DarkParables_TLMATPT_CE.exe: + "/DarkParables_TLMATPT_CE.exe": - when: - store: steam steam: id: 453390 -'Dark Parables: The Match Girl''s Lost Paradise': +"Dark Parables: The Match Girl's Lost Paradise": installDir: - Dark Parables The Match Girl's Lost Paradise Collector's Edition: {} + "Dark Parables The Match Girl's Lost Paradise Collector's Edition": {} launch: - /DarkParables_TheMatchGirlsLostParadise_CE.exe: + "/DarkParables_TheMatchGirlsLostParadise_CE.exe": - when: - os: windows store: steam steam: id: 971070 -'Dark Parables: The Red Riding Hood Sisters': +"Dark Parables: The Red Riding Hood Sisters": installDir: - Dark Parables The Red Riding Hood Sisters Collector's Edition: {} + "Dark Parables The Red Riding Hood Sisters Collector's Edition": {} launch: - /DarkParable_TheRedRidingHoodSisters_CE.exe: + "/DarkParable_TheRedRidingHoodSisters_CE.exe": - when: - store: steam steam: id: 499120 -'Dark Parables: The Swan Princess and The Dire Tree': +"Dark Parables: The Swan Princess and The Dire Tree": installDir: - Dark Parables The Swan Princess and The Dire Tree Collector's Edition: {} + "Dark Parables The Swan Princess and The Dire Tree Collector's Edition": {} launch: - /DarkParables_TSPATDT_CE.exe: + "/DarkParables_TSPATDT_CE.exe": - when: - store: steam steam: id: 496030 -'Dark Parables: The Thief and the Tinderbox': +"Dark Parables: The Thief and the Tinderbox": installDir: Dark Parables The Thief and the Tinderbox Collectors Edition: {} launch: - /DarkParables_TheThiefAndTheTinderbox_CE.app/Contents/MacOS/Dark Parables The Thief and the Tinderbox Collector's Edition: + "/DarkParables_TheThiefAndTheTinderbox_CE.app/Contents/MacOS/Dark Parables The Thief and the Tinderbox Collector's Edition": - when: - os: mac store: steam - /DarkParables_TheThiefAndTheTinderbox_CE.exe: + "/DarkParables_TheThiefAndTheTinderbox_CE.exe": - when: - os: windows store: steam @@ -129084,15 +129457,15 @@ Dark Passenger: installDir: Dark Passenger: {} launch: - /DarkPassenger.exe: + "/DarkPassenger.exe": - when: - os: windows store: steam - /DarkPassengerLinux.x86: + "/DarkPassengerLinux.x86": - when: - os: linux store: steam - /DarkPassengerMac.app: + "/DarkPassengerMac.app": - when: - os: mac store: steam @@ -129110,7 +129483,7 @@ Dark Prospect: installDir: Dark Prospect: {} launch: - /DarkProspect.exe: + "/DarkProspect.exe": - when: - os: windows store: steam @@ -129118,12 +129491,12 @@ Dark Prospect: id: 604770 Dark Quest: files: - /AppData/LocalLow/Brain Seal Entertainment/Dark Quest: + "/AppData/LocalLow/Brain Seal Entertainment/Dark Quest": tags: - save when: - os: windows - /AppData/LocalLow/Brain Seal Entertainment/Dark Quest/settings.bin: + "/AppData/LocalLow/Brain Seal Entertainment/Dark Quest/settings.bin": tags: - config when: @@ -129133,7 +129506,7 @@ Dark Quest: installDir: Dark Quest: {} launch: - /DarkQuest.exe: + "/DarkQuest.exe": - when: - os: windows store: steam @@ -129141,12 +129514,12 @@ Dark Quest: id: 342860 Dark Quest 2: files: - /AppData/LocalLow/Brain Seal Ltd/Dark Quest 2: + "/AppData/LocalLow/Brain Seal Ltd/Dark Quest 2": tags: - save when: - os: windows - /AppData/LocalLow/Brain Seal Ltd/Dark Quest 2/gamesettings.bin: + "/AppData/LocalLow/Brain Seal Ltd/Dark Quest 2/gamesettings.bin": tags: - config when: @@ -129156,11 +129529,11 @@ Dark Quest 2: installDir: Dark Quest 2: {} launch: - /DQ2MAC.app/Contents/MacOS/DQ2MAC: + "/DQ2MAC.app/Contents/MacOS/DQ2MAC": - when: - os: mac store: steam - /DarkQuest2.exe: + "/DarkQuest2.exe": - when: - os: windows store: steam @@ -129174,7 +129547,7 @@ Dark Raid: installDir: Dark Raid: {} launch: - /Binaries/Win32/UDK.exe: + "/Binaries/Win32/UDK.exe": - when: - os: windows store: steam @@ -129184,27 +129557,27 @@ Dark Raider: installDir: Dark Raider: {} launch: - /Version0119/Game/Windows/DarkRaider.exe: + "/Version0119/Game/Windows/DarkRaider.exe": - when: - os: windows store: steam steam: id: 1199450 -'Dark Realm: Princess of Ice': +"Dark Realm: Princess of Ice": installDir: - Dark Realm Princess of Ice Collector's Edition: {} + "Dark Realm Princess of Ice Collector's Edition": {} launch: - /DarkRealm_PrincessOfIce_CE.exe: + "/DarkRealm_PrincessOfIce_CE.exe": - when: - os: windows store: steam steam: id: 709350 -'Dark Realm: Queen of Flames': +"Dark Realm: Queen of Flames": installDir: - Dark Realm Queen of Flames Collector's Edition: {} + "Dark Realm Queen of Flames Collector's Edition": {} launch: - /DarkRealm_QueenOfFlames_CE.exe: + "/DarkRealm_QueenOfFlames_CE.exe": - when: - os: windows store: steam @@ -129214,7 +129587,7 @@ Dark Reflection: installDir: Тёмное отражение (Dark Reflection): {} launch: - /Dark Reflection.exe: + "/Dark Reflection.exe": - when: - os: windows store: steam @@ -129223,14 +129596,14 @@ Dark Reflection: Dark Reign 2: gog: id: 1207658911 -'Dark Reign: The Future of War': +"Dark Reign: The Future of War": files: - /TACTICS.CFG: + "/TACTICS.CFG": tags: - config when: - os: windows - /save: + "/save": tags: - save when: @@ -129243,7 +129616,7 @@ Dark Rift: installDir: Dark Rift: {} launch: - /dark_rift_launcher.exe: + "/dark_rift_launcher.exe": - when: - os: windows store: steam @@ -129258,57 +129631,57 @@ Dark Roll: installDir: Dark Roll: {} launch: - /Dark Roll.exe: + "/Dark Roll.exe": - when: - os: windows store: steam steam: id: 962810 -'Dark Romance: Heart of the Beast': +"Dark Romance: Heart of the Beast": installDir: - Dark Romance Heart of the Beast Collector's Edition: {} + "Dark Romance Heart of the Beast Collector's Edition": {} launch: - /DarkRomance_HeartOfTheBeast_CE.exe: + "/DarkRomance_HeartOfTheBeast_CE.exe": - when: - os: windows store: steam steam: id: 826420 -'Dark Romance: Hunchback of Notre-Dame': +"Dark Romance: Hunchback of Notre-Dame": installDir: - Dark Romance Hunchback of NotreDame Collector's Edition: {} + "Dark Romance Hunchback of NotreDame Collector's Edition": {} launch: - /DarkRomance_HunchbackOfNotreDame_CE.exe: + "/DarkRomance_HunchbackOfNotreDame_CE.exe": - when: - os: windows store: steam steam: id: 1046060 -'Dark Romance: The Ethereal Gardens': +"Dark Romance: The Ethereal Gardens": installDir: - Dark Romance The Ethereal Gardens Collector's Edition: {} + "Dark Romance The Ethereal Gardens Collector's Edition": {} launch: - /DarkRomance_TheEtherealGardens_CE.exe: + "/DarkRomance_TheEtherealGardens_CE.exe": - when: - os: windows store: steam steam: id: 1152040 -'Dark Romance: The Swan Sonata': +"Dark Romance: The Swan Sonata": installDir: - Dark Romance The Swan Sonata Collector's Edition: {} + "Dark Romance The Swan Sonata Collector's Edition": {} launch: - /DarkRomance_TheSwanSonata_CE.exe: + "/DarkRomance_TheSwanSonata_CE.exe": - when: - os: windows store: steam steam: id: 941040 -'Dark Romance: Vampire in Love': +"Dark Romance: Vampire in Love": installDir: - Dark Romance Vampire in Love Collector's Edition: {} + "Dark Romance Vampire in Love Collector's Edition": {} launch: - /DarkRomance_VampireInLove_CE.exe: + "/DarkRomance_VampireInLove_CE.exe": - when: - os: windows store: steam @@ -129318,7 +129691,7 @@ Dark Rose Valkyrie: installDir: DarkRoseValkyrie: {} launch: - /DarkRoseValkyrie.exe: + "/DarkRoseValkyrie.exe": - when: - bit: 64 os: windows @@ -129329,7 +129702,7 @@ Dark Running: installDir: DarkRunning: {} launch: - /DarkRunning.exe: + "/DarkRunning.exe": - when: - bit: 64 os: windows @@ -129340,7 +129713,7 @@ Dark Sasi: installDir: Dark SASI: {} launch: - /Dark_SASI.exe: + "/Dark_SASI.exe": - when: - os: windows store: steam @@ -129350,7 +129723,7 @@ Dark Sauce: installDir: Dark Sauce: {} launch: - /Dark Sauce.exe: + "/Dark Sauce.exe": - when: - os: windows store: steam @@ -129358,7 +129731,7 @@ Dark Sauce: id: 995790 Dark Scavenger: files: - /DarkScavenger/SaveFile.txt: + "/DarkScavenger/SaveFile.txt": tags: - save when: @@ -129366,15 +129739,15 @@ Dark Scavenger: installDir: Dark Scavenger: {} launch: - /DSMac.app: + "/DSMac.app": - when: - os: mac store: steam - /DarkScavenger.exe: + "/DarkScavenger.exe": - when: - os: windows store: steam - /run.sh: + "/run.sh": - when: - os: linux store: steam @@ -129382,22 +129755,22 @@ Dark Scavenger: id: 293880 Dark Sector: files: - /Configs: + "/Configs": tags: - config when: - os: windows - /Aspyr/Dark Sector/settings: + "/Aspyr/Dark Sector/settings": tags: - config when: - os: windows - /Dark Sector/*.SAV: + "/Dark Sector/*.SAV": tags: - save when: - os: windows - /Dark Sector/settings: + "/Dark Sector/settings": tags: - config when: @@ -129405,16 +129778,16 @@ Dark Sector: installDir: Dark Sector: {} launch: - /DS.exe: + "/DS.exe": - when: - store: steam steam: id: 29900 -'Dark Shadows: Army of Evil': +"Dark Shadows: Army of Evil": installDir: Dark Shadows: {} launch: - /Dark Shadows.exe: + "/Dark Shadows.exe": - when: - bit: 32 os: windows @@ -129430,54 +129803,54 @@ Dark Shores: installDir: Dark Shores: {} launch: - /DarkShores.exe: + "/DarkShores.exe": - when: - os: windows store: steam steam: id: 574710 -'Dark Side of the Sun - Teil II: Palast der Verdammnis': +"Dark Side of the Sun - Teil II: Palast der Verdammnis": files: - /*.NNG: + "/*.NNG": tags: - save when: - os: dos - /NPARTY.DAT: + "/NPARTY.DAT": tags: - save when: - os: dos - /RPGSOU.INF: + "/RPGSOU.INF": tags: - config when: - os: dos -'Dark Side of the Sun - Teil III: Simon der Zauberer': +"Dark Side of the Sun - Teil III: Simon der Zauberer": files: - /*.SNG: + "/*.SNG": tags: - save when: - os: dos - /SPARTY.DAT: + "/SPARTY.DAT": tags: - save when: - os: dos -'Dark Side of the Sun: Der Stab des Lichts': +"Dark Side of the Sun: Der Stab des Lichts": files: - /*.RGM: + "/*.RGM": tags: - save when: - os: dos - /RPARTY.DAT: + "/RPARTY.DAT": tags: - save when: - os: dos - /RPGSOU.INF: + "/RPGSOU.INF": tags: - config when: @@ -129486,16 +129859,16 @@ Dark Skeleton Survival: installDir: Dark Skeleton Survival: {} launch: - /DarkSkeletonSurvival.exe: + "/DarkSkeletonSurvival.exe": - when: - store: steam steam: id: 1084910 -'Dark Skies: The Nemansk Incident': +"Dark Skies: The Nemansk Incident": installDir: Dark Skies The Nemansk Incident: {} launch: - /Dark Skies.exe: + "/Dark Skies.exe": - when: - os: windows store: steam @@ -129506,12 +129879,12 @@ Dark Snow: id: 656710 Dark Souls II: files: - /DarkSoulsII//DARKSII0000.sl2: + "/DarkSoulsII//DARKSII0000.sl2": tags: - save when: - os: windows - /DarkSoulsII/GraphicsConfig.xml: + "/DarkSoulsII/GraphicsConfig.xml": tags: - config when: @@ -129525,20 +129898,20 @@ Dark Souls II: installDir: Dark Souls II: {} launch: - /Game/DarkSoulsII.exe: + "/Game/DarkSoulsII.exe": - when: - store: steam - workingDir: /Game + workingDir: "/Game" steam: id: 236430 -'Dark Souls II: Scholar of the First Sin': +"Dark Souls II: Scholar of the First Sin": files: - /DarkSoulsII//DS2SOFS0000.sl2: + "/DarkSoulsII//DS2SOFS0000.sl2": tags: - save when: - os: windows - /DarkSoulsII/GraphicsConfig_SOFS.xml: + "/DarkSoulsII/GraphicsConfig_SOFS.xml": tags: - config when: @@ -129546,20 +129919,20 @@ Dark Souls II: installDir: Dark Souls II Scholar of the First Sin: {} launch: - /Game/DarkSoulsII.exe: + "/Game/DarkSoulsII.exe": - when: - store: steam - workingDir: /Game + workingDir: "/Game" steam: id: 335300 Dark Souls III: files: - /DarkSoulsIII//DS30000.sl2: + "/DarkSoulsIII//DS30000.sl2": tags: - save when: - os: windows - /DarkSoulsIII/GraphicsConfig.xml: + "/DarkSoulsIII/GraphicsConfig.xml": tags: - config when: @@ -129567,20 +129940,20 @@ Dark Souls III: installDir: DARK SOULS III: {} launch: - /Game/DarkSoulsIII.exe: + "/Game/DarkSoulsIII.exe": - when: - store: steam - workingDir: /Game + workingDir: "/Game" steam: id: 374320 Dark Souls Remastered: files: - /NBGI/DARK SOULS REMASTERED: + "/NBGI/DARK SOULS REMASTERED": tags: - save when: - os: windows - /FromSoftware/NBGI/DarkSouls: + "/FromSoftware/NBGI/DarkSouls": tags: - config when: @@ -129588,21 +129961,21 @@ Dark Souls Remastered: installDir: DARK SOULS REMASTERED: {} launch: - /DarkSoulsRemastered.exe: + "/DarkSoulsRemastered.exe": - when: - bit: 64 os: windows store: steam steam: id: 570940 -'Dark Souls: Prepare to Die Edition': +"Dark Souls: Prepare to Die Edition": files: - /NBGI/DarkSouls: + "/NBGI/DarkSouls": tags: - save when: - os: windows - /NBGI/DarkSouls: + "/NBGI/DarkSouls": tags: - config when: @@ -129610,73 +129983,73 @@ Dark Souls Remastered: installDir: Dark Souls Prepare to Die Edition: {} launch: - /DATA/DARKSOULS.exe: + "/DATA/DARKSOULS.exe": - when: - os: windows store: steam - workingDir: /DATA + workingDir: "/DATA" steam: id: 211420 Dark Space Conqueror: installDir: Dark Space Conqueror: {} launch: - /com.darkspaceconqueror.prod.exe: + "/com.darkspaceconqueror.prod.exe": - when: - os: windows store: steam steam: id: 1079780 -'Dark Storm: VR Missions': +"Dark Storm: VR Missions": installDir: Dark Storm VR Missions: {} launch: - /DarkStormVRMissions.app/Contents/MacOS/UDKGame: + "/DarkStormVRMissions.app/Contents/MacOS/UDKGame": - when: - os: mac store: steam - workingDir: /Launch - /darkstorm.exe: + workingDir: "/Launch" + "/darkstorm.exe": - when: - bit: 64 os: windows store: steam steam: id: 395150 -'Dark Strokes: The Legend of the Snow Kingdom': +"Dark Strokes: The Legend of the Snow Kingdom": installDir: DarkStrokes2: {} launch: - /DarkStrokesTheLegendOfTheSnowKingdomCE.exe: + "/DarkStrokesTheLegendOfTheSnowKingdomCE.exe": - when: - os: windows store: steam steam: id: 765690 -Dark Sun Pictures' Dark Sun - The Space Shooter: +"Dark Sun Pictures' Dark Sun - The Space Shooter": installDir: DarkSunSpaceShooter: {} launch: - /nw.exe: + "/nw.exe": - when: - bit: 64 os: windows store: steam steam: id: 1003850 -'Dark Sun: Shattered Lands': +"Dark Sun: Shattered Lands": files: - /CHARSAVE.GFF: + "/CHARSAVE.GFF": tags: - save when: - os: dos - /DARKRUN.GFF: + "/DARKRUN.GFF": tags: - config when: - os: dos - /SAVE**.SAV: + "/SAVE**.SAV": tags: - save when: @@ -129685,19 +130058,19 @@ Dark Sun Pictures' Dark Sun - The Space Shooter: id: 1432723859 steam: id: 1904600 -'Dark Sun: Wake of the Ravager': +"Dark Sun: Wake of the Ravager": files: - /CHARSAVE.GFF: + "/CHARSAVE.GFF": tags: - save when: - os: dos - /DARKRUN.GFF: + "/DARKRUN.GFF": tags: - config when: - os: dos - /SAVE**.SAV: + "/SAVE**.SAV": tags: - save when: @@ -129710,74 +130083,74 @@ Dark Swords: installDir: DarkSwords: {} launch: - /DarkSwords.exe: + "/DarkSwords.exe": - when: - store: steam steam: id: 1091010 -'Dark Tales: Edgar Allan Poe''s Ligeia': +"Dark Tales: Edgar Allan Poe's Ligeia": installDir: - Dark Tales Edgar Allan Poe's Ligeia Collector's Edition: {} + "Dark Tales Edgar Allan Poe's Ligeia Collector's Edition": {} launch: - /DarkTales_EAPsLigeia_CE.exe: + "/DarkTales_EAPsLigeia_CE.exe": - when: - os: windows store: steam steam: id: 1123900 -'Dark Tales: Edgar Allan Poe''s The Fall of the House of Usher': +"Dark Tales: Edgar Allan Poe's The Fall of the House of Usher": installDir: - Dark Tales Edgar Allan Poe's The Fall of the House of Usher Collector's Edition: {} + "Dark Tales Edgar Allan Poe's The Fall of the House of Usher Collector's Edition": {} launch: - /DarkTales_EAP_TheFallOfTheHouseOfUsher_CE.exe: + "/DarkTales_EAP_TheFallOfTheHouseOfUsher_CE.exe": - when: - os: windows store: steam steam: id: 678400 -'Dark Tales: Edgar Allan Poe''s The Gold Bug': +"Dark Tales: Edgar Allan Poe's The Gold Bug": installDir: - Dark Tales Edgar Allan Poe's The Gold Bug Collector's Edition: {} + "Dark Tales Edgar Allan Poe's The Gold Bug Collector's Edition": {} launch: - /DarkTales_EdgarAllanPoesTheGoldBugCE.exe: + "/DarkTales_EdgarAllanPoesTheGoldBugCE.exe": - when: - store: steam steam: id: 465900 -'Dark Tales: Edgar Allan Poe''s The Masque of the Red Death': +"Dark Tales: Edgar Allan Poe's The Masque of the Red Death": installDir: - Dark Tales Edgar Allan Poe's The Masque of the Red Death Collector's Edition: {} + "Dark Tales Edgar Allan Poe's The Masque of the Red Death Collector's Edition": {} launch: - /DarkTales_EAP_TheMasqueoftheRedDeathCE.exe: + "/DarkTales_EAP_TheMasqueoftheRedDeathCE.exe": - when: - store: steam steam: id: 514720 -'Dark Tales: Edgar Allan Poe''s The Mystery of Marie Roget': +"Dark Tales: Edgar Allan Poe's The Mystery of Marie Roget": installDir: - Dark Tales™ Edgar Allan Poe's The Mystery of Marie Roget Collector's Edition: {} + "Dark Tales™ Edgar Allan Poe's The Mystery of Marie Roget Collector's Edition": {} launch: - /DarkTales_MarieRoget_CE.exe: + "/DarkTales_MarieRoget_CE.exe": - when: - os: windows store: steam steam: id: 805000 -'Dark Tales: Edgar Allan Poe''s The Premature Burial': +"Dark Tales: Edgar Allan Poe's The Premature Burial": installDir: - Dark Tales Edgar Allan Poe's The Premature Burial Collector's Edition: {} + "Dark Tales Edgar Allan Poe's The Premature Burial Collector's Edition": {} launch: - /DT_EAP_ThePrematureBurial.exe: + "/DT_EAP_ThePrematureBurial.exe": - when: - os: windows store: steam steam: id: 1030180 -'Dark Tales: Edgar Allan Poe''s The Tell-Tale Heart': +"Dark Tales: Edgar Allan Poe's The Tell-Tale Heart": installDir: - Dark Tales Edgar Allan Poe's The Tell-Tale Heart Collector's Edition: {} + "Dark Tales Edgar Allan Poe's The Tell-Tale Heart Collector's Edition": {} launch: - /DarkTales_EAP_TheTellTaleHeart_CE.exe: + "/DarkTales_EAP_TheTellTaleHeart_CE.exe": - when: - os: windows store: steam @@ -129787,22 +130160,22 @@ Dark Throne: installDir: Dark Throne: {} launch: - /Dark Throne.exe: + "/Dark Throne.exe": - when: - os: windows store: steam steam: id: 587490 -'Dark Throne: The Queen Rises': +"Dark Throne: The Queen Rises": installDir: Dark Throne: {} launch: - /Dark Throne.exe: + "/Dark Throne.exe": - when: - bit: 64 os: windows store: steam - /dt_mac.app: + "/dt_mac.app": - when: - os: mac store: steam @@ -129815,20 +130188,20 @@ Dark Tower: installDir: Dark Tower: {} launch: - /DarkTower.exe: + "/DarkTower.exe": - when: - os: windows store: steam steam: id: 606060 -'Dark Town: Invisible Danger': +"Dark Town: Invisible Danger": steam: id: 725010 Dark Trail: installDir: Dark Trail: {} launch: - /DarkTrail.exe: + "/DarkTrail.exe": - when: - os: windows store: steam @@ -129838,11 +130211,11 @@ Dark Train: installDir: Dark Train: {} launch: - /DarkTrain.app: + "/DarkTrain.app": - when: - os: mac store: steam - /DarkTrain.exe: + "/DarkTrain.exe": - when: - os: windows store: steam @@ -129852,7 +130225,7 @@ Dark Train: - config steam: id: 532290 -'Dark Train: Coupe': +"Dark Train: Coupe": steam: id: 659150 Dark Tunnels: @@ -129862,7 +130235,7 @@ Dark Veer: installDir: Dark Veer: {} launch: - /Dark Veer.exe: + "/Dark Veer.exe": - when: - os: windows store: steam @@ -129872,7 +130245,7 @@ Dark Visit: installDir: Dark Visit: {} launch: - /DarkVisit.exe: + "/DarkVisit.exe": - when: - os: windows store: steam @@ -129880,12 +130253,12 @@ Dark Visit: id: 880890 Dark Void: files: - /My Games/Airtight/Dark Void/SavedGames: + "/My Games/Airtight/Dark Void/SavedGames": tags: - save when: - os: windows - /My Games/Airtight/Dark Void/SkyGame/Config: + "/My Games/Airtight/Dark Void/SkyGame/Config": tags: - config when: @@ -129893,14 +130266,14 @@ Dark Void: installDir: Dark Void: {} launch: - /Launcher.exe: + "/Launcher.exe": - when: - store: steam steam: id: 45710 Dark Void Zero: files: - /userdata//45730/remote: + "/userdata//45730/remote": tags: - save when: @@ -129909,7 +130282,7 @@ Dark Void Zero: installDir: Dark Void Zero: {} launch: - /DarkVoidZero.exe: + "/DarkVoidZero.exe": - when: - store: steam steam: @@ -129921,20 +130294,20 @@ Dark Wish: installDir: Dark Wish: {} launch: - /DarkWish.exe: - - arguments: . + "/DarkWish.exe": + - arguments: "." when: - bit: 64 os: windows store: steam - /doc/gamer_guide.pdf: + "/doc/gamer_guide.pdf": - when: - store: steam - /doc/modding_guide.pdf: + "/doc/modding_guide.pdf": - when: - store: steam - /mod_manager/ModManager.exe: - - arguments: ./mod_manager/ + "/mod_manager/ModManager.exe": + - arguments: "./mod_manager/" when: - bit: 64 os: windows @@ -129945,7 +130318,7 @@ Dark Years: installDir: Dark Years: {} launch: - /DarkYears.exe: + "/DarkYears.exe": - when: - store: steam steam: @@ -129954,7 +130327,7 @@ Dark Zone: installDir: Dark Zone: {} launch: - /DarkZone.exe: + "/DarkZone.exe": - when: - store: steam steam: @@ -129963,7 +130336,7 @@ Dark Zone Defense: installDir: Dark Zone Defense: {} launch: - /Dark Zone Defense.exe: + "/Dark Zone Defense.exe": - when: - os: windows store: steam @@ -129973,7 +130346,7 @@ Dark and Bright: installDir: Dark and Bright: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -129981,7 +130354,7 @@ Dark and Bright: id: 652270 Dark and Darker: files: - /DungeonCrawler/Saved/Config/Windows: + "/DungeonCrawler/Saved/Config/Windows": tags: - config when: @@ -129990,12 +130363,12 @@ Dark and Darker: id: 2016590 Dark and Light: files: - /DNL/Saved: + "/DNL/Saved": tags: - save when: - os: windows - /DNL/Saved/Config/WindowsNoEditor/GameUserSettings.ini: + "/DNL/Saved/Config/WindowsNoEditor/GameUserSettings.ini": tags: - config when: @@ -130003,19 +130376,19 @@ Dark and Light: installDir: Dark and Light: {} launch: - /DNL/Binaries/Win64/DNL.exe: + "/DNL/Binaries/Win64/DNL.exe": - when: - os: windows store: steam - workingDir: /DNL/Binaries/Win64 - - arguments: '-allowansel' + workingDir: "/DNL/Binaries/Win64" + - arguments: "-allowansel" when: - os: windows store: steam - workingDir: /DNL/Binaries/Win64 + workingDir: "/DNL/Binaries/Win64" steam: id: 529180 -'Dark: Frontier': +"Dark: Frontier": installDir: Dark: {} steam: @@ -130024,7 +130397,7 @@ DarkBase 01: installDir: DarkBase-01: {} launch: - /darkbase01.exe: + "/darkbase01.exe": - when: - os: windows store: steam @@ -130034,17 +130407,17 @@ DarkDIRE: installDir: DarkDIRE: {} launch: - /DarkDIREClient.app: - - arguments: '-console' + "/DarkDIREClient.app": + - arguments: "-console" when: - os: mac store: steam - /DarkDIREClient64.sh: + "/DarkDIREClient64.sh": - when: - bit: 64 os: linux store: steam - /DarkDireClient.exe: + "/DarkDireClient.exe": - when: - os: windows store: steam @@ -130054,7 +130427,7 @@ DarkEnd: installDir: DarkEnd: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -130064,11 +130437,11 @@ DarkFairyTales SleepingBeauty: installDir: DarkFairyTales SleepingBeauty: {} launch: - /DarkTaleSleepingBeauty.exe: + "/DarkTaleSleepingBeauty.exe": - when: - os: windows store: steam - /dsb.app: + "/dsb.app": - when: - os: mac store: steam @@ -130078,7 +130451,7 @@ DarkLast: installDir: windows_content: {} launch: - /A10.exe: + "/A10.exe": - when: - store: steam steam: @@ -130087,7 +130460,7 @@ DarkLight: installDir: DarkLight: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: @@ -130096,7 +130469,7 @@ DarkMaus: installDir: DarkMaus: {} launch: - /DarkMaus.exe: + "/DarkMaus.exe": - when: - os: windows store: steam @@ -130111,24 +130484,24 @@ DarkSpace: installDir: DarkSpace: {} launch: - /Space.exe: + "/Space.exe": - when: - store: steam steam: id: 1122810 DarkSpyre: files: - /DS*.DAT: + "/DS*.DAT": tags: - save when: - os: dos - /HISCORE: + "/HISCORE": tags: - save when: - os: dos - /SAVE.DIR: + "/SAVE.DIR": tags: - save when: @@ -130137,16 +130510,16 @@ DarkStory Online: installDir: DarkStory Online: {} launch: - /DarkStory.exe: + "/DarkStory.exe": - arguments: steam when: - os: windows store: steam steam: id: 1020780 -'Darkarta: A Broken Heart''s Quest': +"Darkarta: A Broken Heart's Quest": files: - /Tuttifrutti_Games/Darkarta_ABHQ_CE/*.sav: + "/Tuttifrutti_Games/Darkarta_ABHQ_CE/*.sav": tags: - config - save @@ -130155,15 +130528,15 @@ DarkStory Online: installDir: DarkartaCE: {} launch: - /Darkarta A Broken Hearts Quest CE - Steam.app/Contents/MacOS/Darkarta A Broken Hearts Quest CE - Steam: + "/Darkarta A Broken Hearts Quest CE - Steam.app/Contents/MacOS/Darkarta A Broken Hearts Quest CE - Steam": - when: - os: mac store: steam - /DarkartaCE: + "/DarkartaCE": - when: - os: linux store: steam - /DarkartaCE.exe: + "/DarkartaCE.exe": - when: - os: windows store: steam @@ -130173,17 +130546,17 @@ Darkblood Chronicles: installDir: Darkblood Chronicles: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam steam: id: 604920 -'Darkcase: The Basement': +"Darkcase: The Basement": installDir: darkcase the basement: {} launch: - /darkcase - the basement.exe: + "/darkcase - the basement.exe": - when: - os: windows store: steam @@ -130196,7 +130569,7 @@ Darken VR: id: 910850 Darkened Skye: files: - /Save: + "/Save": tags: - save when: @@ -130205,7 +130578,7 @@ Darkest Depths: installDir: Darkest Depths: {} launch: - /DarkestDepths.exe: + "/DarkestDepths.exe": - when: - os: windows store: steam @@ -130213,28 +130586,27 @@ Darkest Depths: id: 1041130 Darkest Dungeon: files: - /.local/share/Red Hook Studios/Darkest: + "/.local/share/Red Hook Studios/Darkest": tags: - save when: - os: linux - /.local/share/Red Hook Studios/Darkest/profile_*: + "/.local/share/Red Hook Studios/Darkest/profile_*": tags: - config when: - os: linux - /userdata//262060/remote/profile_*: + "/userdata//262060/remote/profile_*": tags: - - config - save when: - store: steam - /Darkest/persist.options.json: + "/Darkest/persist.options.json": tags: - config when: - os: windows - /Darkest/profile_*: + "/Darkest/profile_*": tags: - save when: @@ -130243,41 +130615,41 @@ Darkest Dungeon: id: 1450711444 id: gogExtra: + - 1128594953 - 1452238359 - 1452693347 - 1957260232 - - 1128594953 installDir: DarkestDungeon: {} launch: - /_linux/darkest.bin.x86: - - arguments: '-skipvalidation' + "/_linux/darkest.bin.x86": + - arguments: "-skipvalidation" when: - bit: 32 os: linux store: steam - /_linux/darkest.bin.x86_64: - - arguments: '-skipvalidation' + "/_linux/darkest.bin.x86_64": + - arguments: "-skipvalidation" when: - bit: 64 os: linux store: steam - /_osx/darkest.app: - - arguments: '-skipvalidation' + "/_osx/darkest.app": + - arguments: "-skipvalidation" when: - os: mac store: steam - /_windows/darkest.exe: - - arguments: '-skipvalidation' + "/_windows/darkest.exe": + - arguments: "-skipvalidation" when: - os: windows store: steam - workingDir: /_windows + workingDir: "/_windows" steam: id: 262060 Darkest Dungeon II: files: - /AppData/LocalLow/RedHook/Darkest Dungeon II/SaveFiles/: + "/AppData/LocalLow/RedHook/Darkest Dungeon II/SaveFiles/": tags: - save when: @@ -130285,56 +130657,56 @@ Darkest Dungeon II: installDir: Darkest Dungeon® II: {} launch: - /Darkest Dungeon II.exe: + "/Darkest Dungeon II.exe": - when: - store: steam steam: id: 1940340 -'Darkest Hour: A Hearts of Iron Game': +"Darkest Hour: A Hearts of Iron Game": gog: id: 1445505773 installDir: Darkest Hour A HOI Game: {} launch: - /Darkest Hour Launcher.exe: + "/Darkest Hour Launcher.exe": - when: - store: steam steam: id: 73170 -'Darkest Hour: Europe ''44-''45': +"Darkest Hour: Europe '44-'45": installDir: red orchestra: {} launch: - /Red Orchestra.app: - - arguments: '-mod=DarkestHour' + "/Red Orchestra.app": + - arguments: "-mod=DarkestHour" when: - os: mac store: steam - workingDir: /System - /System/RedOrchestraLargeAddressAware.exe: - - arguments: '-mod=DarkestHour' + workingDir: "/System" + "/System/RedOrchestraLargeAddressAware.exe": + - arguments: "-mod=DarkestHour" when: - os: windows store: steam - /System/redorchestra-bin: - - arguments: '-mod=DarkestHour' + "/System/redorchestra-bin": + - arguments: "-mod=DarkestHour" when: - os: linux store: steam - workingDir: /System + workingDir: "/System" steam: id: 1280 Darkest Hunters: installDir: Darkest Hunters: {} launch: - /DH.exe: + "/DH.exe": - when: - os: windows store: steam steam: id: 654300 -'Darkest Mana: Master of the Table': +"Darkest Mana: Master of the Table": installDir: DarkestMana: {} steam: @@ -130343,7 +130715,7 @@ Darkest Wave: installDir: Darkest Wave: {} launch: - /DarkestWave.exe: + "/DarkestWave.exe": - when: - os: windows store: steam @@ -130351,17 +130723,17 @@ Darkest Wave: id: 653920 Darkest of Days: files: - /base/interface/controls.cfg: + "/base/interface/controls.cfg": tags: - config when: - os: windows - /base/interface/user.cfg: + "/base/interface/user.cfg": tags: - config when: - os: windows - /base/save: + "/base/save": tags: - save when: @@ -130369,24 +130741,24 @@ Darkest of Days: installDir: Darkest of Days: {} launch: - /darkestofdays.exe: + "/darkestofdays.exe": - when: - store: steam steam: id: 37700 Darkestville Castle: files: - /AppData/LocalLow/Epic LLama/DarkestVille Castle: + "/AppData/LocalLow/Epic LLama/DarkestVille Castle": tags: - save when: - os: windows - /unity3d/Epic LLama/DarkestVille Castle: + "/unity3d/Epic LLama/DarkestVille Castle": tags: - save when: - os: linux - /unity3d/Epic LLama/DarkestVille Castle/prefs: + "/unity3d/Epic LLama/DarkestVille Castle/prefs": tags: - config when: @@ -130394,16 +130766,19 @@ Darkestville Castle: installDir: Darkestville Castle: {} launch: - /DarkestVille Castle.exe: + "/DarkestVille Castle.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam - /DarkestVilleCastle.app: + "/DarkestVilleCastle.app": - when: - os: mac store: steam - /DarkestVilleCastle.x86_64: + "/DarkestVilleCastle.x86_64": - when: - bit: 64 os: linux @@ -130416,7 +130791,7 @@ Darkestville Castle: id: 689900 Darkfall Unholy Wars: files: - /Darkfall/Character/./././*.cfg: + "/Darkfall/Character/./././*.cfg": tags: - config when: @@ -130424,17 +130799,17 @@ Darkfall Unholy Wars: installDir: Darkfall Unholy Wars: {} launch: - /DFUWLobby.exe: - - arguments: '-steam' + "/DFUWLobby.exe": + - arguments: "-steam" when: - store: steam steam: id: 227400 -'Darkheart: Flight of the Harpies': +"Darkheart: Flight of the Harpies": installDir: Darkheart Flight of the Harpies: {} launch: - /Darkheart.exe: + "/Darkheart.exe": - when: - os: windows store: steam @@ -130442,12 +130817,12 @@ Darkfall Unholy Wars: id: 985070 Darklands: files: - /DARKLAND.CFG: + "/DARKLAND.CFG": tags: - config when: - os: dos - /SAVES: + "/SAVES": tags: - save when: @@ -130457,49 +130832,49 @@ Darklands: installDir: Darklands: {} launch: - /Darklands.app: + "/Darklands.app": - when: - os: mac store: steam - /dosbox_linux/daum/launch_darklands_game_daum.sh: + "/dosbox_linux/daum/launch_darklands_game_daum.sh": - when: - os: linux store: steam - workingDir: /dosbox_linux/daum - /dosbox_linux/launch_darklands_config.sh: + workingDir: "/dosbox_linux/daum" + "/dosbox_linux/launch_darklands_config.sh": - when: - os: linux store: steam - workingDir: /dosbox_linux - /dosbox_linux/launch_darklands_game.sh: + workingDir: "/dosbox_linux" + "/dosbox_linux/launch_darklands_game.sh": - when: - os: linux store: steam - workingDir: /dosbox_linux - /dosbox_windows/daum/dosbox.exe: - - arguments: '-conf dosbox_darklands.conf -conf dosbox_darklands_launch_windows.conf -noconsole' + workingDir: "/dosbox_linux" + "/dosbox_windows/daum/dosbox.exe": + - arguments: "-conf dosbox_darklands.conf -conf dosbox_darklands_launch_windows.conf -noconsole" when: - os: windows store: steam - workingDir: /dosbox_windows/daum - /dosbox_windows/dosbox.exe: - - arguments: '-conf dosbox_darklands.conf -conf dosbox_darklands_launch_windows.conf -noconsole' + workingDir: "/dosbox_windows/daum" + "/dosbox_windows/dosbox.exe": + - arguments: "-conf dosbox_darklands.conf -conf dosbox_darklands_launch_windows.conf -noconsole" when: - os: windows store: steam - workingDir: /dosbox_windows - - arguments: '-conf dosbox_darklands.conf -conf dosbox_darklands_config_windows.conf -noconsole' + workingDir: "/dosbox_windows" + - arguments: "-conf dosbox_darklands.conf -conf dosbox_darklands_config_windows.conf -noconsole" when: - os: windows store: steam - workingDir: /dosbox_windows + workingDir: "/dosbox_windows" steam: id: 327930 Darkness Ahead: installDir: Darkness Ahead: {} launch: - /DarknessAhead.exe: + "/DarknessAhead.exe": - when: - os: windows store: steam @@ -130509,7 +130884,7 @@ Darkness Assault: installDir: The Darkness Assault: {} launch: - /Darkness Assault.exe: + "/Darkness Assault.exe": - when: - os: windows store: steam @@ -130523,7 +130898,7 @@ Darkness Restricted: installDir: Darkness Restricted: {} launch: - /Darkness Restricted.exe: + "/Darkness Restricted.exe": - when: - bit: 64 os: windows @@ -130535,14 +130910,14 @@ Darkness Rollercoaster - Ultimate Shooter Edition: Darkness Rollercoaster - Ultimate Shooter Edition: {} steam: id: 1142850 -'Darkness Within 2: The Dark Lineage': +"Darkness Within 2: The Dark Lineage": files: - /Darkness Within 2: + "/Darkness Within 2": tags: - save when: - os: windows - /Darkness Within 2/config.txt: + "/Darkness Within 2/config.txt": tags: - config when: @@ -130550,25 +130925,25 @@ Darkness Rollercoaster - Ultimate Shooter Edition: installDir: Darkness Within 2: {} launch: - /DarkLineage.exe: + "/DarkLineage.exe": - when: - os: windows store: steam steam: id: 298950 -'Darkness Within: In Pursuit of Loath Nolder': +"Darkness Within: In Pursuit of Loath Nolder": files: - /Darkness Within: + "/Darkness Within": tags: - save when: - os: windows - /Darkness Within/cmdline.txt: + "/Darkness Within/cmdline.txt": tags: - config when: - os: windows - /Darkness Within/config.txt: + "/Darkness Within/config.txt": tags: - config when: @@ -130579,59 +130954,59 @@ Darkness Rollercoaster - Ultimate Shooter Edition: installDir: Darkness Within: {} launch: - /DarknessWithin.exe: + "/DarknessWithin.exe": - when: - os: windows store: steam steam: id: 298930 -'Darkness and Flame: Born of Fire': +"Darkness and Flame: Born of Fire": installDir: Darkness and Flame Born of Fire: {} launch: - /Darkness and Flame Born of Fire CE.app: + "/Darkness and Flame Born of Fire CE.app": - when: - os: mac store: steam - /DarknessAndFlame_BornOfFire.exe: + "/DarknessAndFlame_BornOfFire.exe": - when: - os: windows store: steam steam: id: 528120 -'Darkness and Flame: Enemy in Reflection': +"Darkness and Flame: Enemy in Reflection": installDir: Darkness and Flame Enemy in Reflection: {} launch: - /DarknessAndFlame_EnemyInReflection.exe: + "/DarknessAndFlame_EnemyInReflection.exe": - when: - os: windows store: steam steam: id: 1195230 -'Darkness and Flame: Missing Memories': +"Darkness and Flame: Missing Memories": installDir: Darkness and Flame Missing Memories: {} launch: - /Darkness and Flame Missing Memories.app: + "/Darkness and Flame Missing Memories.app": - when: - os: mac store: steam - /DarknessAndFlame_MissingMemories.exe: + "/DarknessAndFlame_MissingMemories.exe": - when: - os: windows store: steam steam: id: 646330 -'Darkness and Flame: The Dark Side': +"Darkness and Flame: The Dark Side": installDir: Darkness and Flame The Dark Side f2p: {} launch: - /Darkness and Flame The Dark Side F2P.app: + "/Darkness and Flame The Dark Side F2P.app": - when: - os: mac store: steam - /DarknessAndFlame_TheDarkSide.exe: + "/DarknessAndFlame_TheDarkSide.exe": - when: - os: windows store: steam @@ -130641,11 +131016,11 @@ Darkness and a Crowd: installDir: Darkness and a Crowd: {} launch: - /Darkness and a crowd.exe: + "/Darkness and a crowd.exe": - when: - os: windows store: steam - /Universal/Universal.app: + "/Universal/Universal.app": - when: - os: mac store: steam @@ -130653,7 +131028,7 @@ Darkness and a Crowd: id: 659780 Darknet: files: - /AppData/LocalLow/E McNeill/Darknet/Unity/local./Analytics: + "/AppData/LocalLow/E McNeill/Darknet/Unity/local./Analytics": tags: - config when: @@ -130661,10 +131036,10 @@ Darknet: installDir: Darknet: {} launch: - /Darknet Non-VR.exe: + "/Darknet Non-VR.exe": - when: - store: steam - /DarknetRift.exe: + "/DarknetRift.exe": - when: - store: steam steam: @@ -130673,15 +131048,15 @@ Darkour: installDir: Darkour: {} launch: - /Darkour.app/Contents/MacOS/Darkour: + "/Darkour.app/Contents/MacOS/Darkour": - when: - os: mac store: steam - /Darkour.exe: + "/Darkour.exe": - when: - os: windows store: steam - /Darkour.x86: + "/Darkour.x86": - when: - os: linux store: steam @@ -130691,7 +131066,7 @@ Darkout: installDir: Darkout: {} launch: - /Darkout.exe: + "/Darkout.exe": - when: - bit: 32 os: windows @@ -130706,13 +131081,13 @@ Darkroom - Ray of Light: id: 751600 Darksburg: files: - /steamapps/common/Darksburg/options.ini: + "/steamapps/common/Darksburg/options.ini": tags: - config when: - os: windows store: steam - /steamapps/common/Darksburg/playerprofile.json: + "/steamapps/common/Darksburg/playerprofile.json": tags: - save when: @@ -130724,17 +131099,17 @@ Darksburg: id: 939100 Darksiders: files: - /Saved Games/darksiders1.exe: - tags: - - save - when: - - store: epic - /My Games/Darksiders: + "/Saved Games/darksiders1.exe": tags: - save when: - os: windows - /Darksiders: + "/My Games/Darksiders": + tags: + - save + when: + - os: windows + "/Darksiders": tags: - config when: @@ -130747,15 +131122,15 @@ Darksiders: installDir: Darksiders: {} launch: - /Darksiders.sh: + "/Darksiders.sh": - when: - os: linux store: steam - /DarksidersOsX: + "/DarksidersOsX": - when: - os: mac store: steam - /DarksidersPC.exe: + "/DarksidersPC.exe": - when: - os: windows store: steam @@ -130763,18 +131138,18 @@ Darksiders: id: 50620 Darksiders Genesis: files: - /Packages/NordicGames.60987E91223DD_46xc33nm0q0f8/LocalCache/Local/THQ Nordic/Darksiders Genesis/Saved/SaveGames/user: + "/Packages/NordicGames.60987E91223DD_46xc33nm0q0f8/LocalCache/Local/THQ Nordic/Darksiders Genesis/Saved/SaveGames/user": tags: - save when: - os: windows store: microsoft - /THQ Nordic/Darksiders Genesis/Saved/Config/WindowsNoEditor: + "/THQ Nordic/Darksiders Genesis/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /THQ Nordic/Darksiders Genesis/Saved/SaveGames: + "/THQ Nordic/Darksiders Genesis/Saved/SaveGames": tags: - save when: @@ -130789,7 +131164,7 @@ Darksiders Genesis: installDir: DarksidersGenesis: {} launch: - /DarksidersGenesis.exe: + "/DarksidersGenesis.exe": - when: - bit: 64 os: windows @@ -130798,7 +131173,7 @@ Darksiders Genesis: id: 710920 Darksiders II: files: - /My Games/darksiders 2: + "/My Games/darksiders 2": tags: - save when: @@ -130813,24 +131188,24 @@ Darksiders II: installDir: Darksiders 2: {} launch: - /Darksiders2.exe: + "/Darksiders2.exe": - when: - store: steam steam: id: 50650 -'Darksiders II: Deathinitive Edition': +"Darksiders II: Deathinitive Edition": files: - /userdata//388410/remote: + "/userdata//388410/remote": tags: - save when: - store: steam - /My Games/Darksiders2: + "/My Games/Darksiders2": tags: - save when: - os: windows - /Darksiders2: + "/Darksiders2": tags: - config when: @@ -130840,7 +131215,7 @@ Darksiders II: installDir: Darksiders II Deathinitive Edition: {} launch: - /Darksiders2.exe: + "/Darksiders2.exe": - when: - os: windows store: steam @@ -130852,23 +131227,23 @@ Darksiders II: id: 388410 Darksiders III: files: - /Darksiders3/Saved/Config/WindowsNoEditor: + "/Darksiders3/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /Darksiders3/Saved/SaveGames: + "/Darksiders3/Saved/SaveGames": tags: - save when: - os: windows - /Packages/NordicGames.DarksidersIII_46xc33nm0q0f8/LocalCache/Local/Darksiders3/Saved/Config/WindowsNoEditor: + "/Packages/NordicGames.DarksidersIII_46xc33nm0q0f8/LocalCache/Local/Darksiders3/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows store: microsoft - /Packages/NordicGames.DarksidersIII_46xc33nm0q0f8/LocalCache/Local/Darksiders3/Saved/SaveGames: + "/Packages/NordicGames.DarksidersIII_46xc33nm0q0f8/LocalCache/Local/Darksiders3/Saved/SaveGames": tags: - save when: @@ -130878,9 +131253,9 @@ Darksiders III: id: 1246703238 id: gogExtra: - - 1564921405 - - 1396514005 - 1105231560 + - 1396514005 + - 1564921405 steamExtra: - 889900 - 889902 @@ -130888,7 +131263,7 @@ Darksiders III: installDir: Darksiders 3: {} launch: - /Darksiders3.exe: + "/Darksiders3.exe": - when: - os: windows store: steam @@ -130896,17 +131271,17 @@ Darksiders III: id: 606280 Darksiders Warmastered Edition: files: - /Saved Games/darksiders1.exe: + "/Saved Games/darksiders1.exe": tags: - save when: - - store: epic - /userdata//462780/remote/autocloud/save: + - os: windows + "/userdata//462780/remote/autocloud/save": tags: - save when: - store: steam - /kaiko/darksiders1: + "/kaiko/darksiders1": tags: - config when: @@ -130916,7 +131291,7 @@ Darksiders Warmastered Edition: installDir: Darksiders Warmastered Edition: {} launch: - /darksiders1.exe: + "/darksiders1.exe": - when: - os: windows store: steam @@ -130924,7 +131299,7 @@ Darksiders Warmastered Edition: id: 462780 Darkspore: files: - /DarksporeData/Preferences: + "/DarksporeData/Preferences": tags: - config when: @@ -130932,22 +131307,22 @@ Darkspore: installDir: Darkspore: {} launch: - /DarksporeBin/Darkspore.exe: + "/DarksporeBin/Darkspore.exe": - when: - store: steam - /Support/EA Help/Electronic_Arts_Technical_Support.htm: + "/Support/EA Help/Electronic_Arts_Technical_Support.htm": - when: - store: steam steam: id: 99890 Darkstar One: files: - /Ascaron Entertainment/Darkstar One: + "/Ascaron Entertainment/Darkstar One": tags: - config when: - os: windows - /Ascaron Entertainment/Darkstar One/Save: + "/Ascaron Entertainment/Darkstar One/Save": tags: - save when: @@ -130957,19 +131332,19 @@ Darkstar One: installDir: DarkStar One: {} launch: - /DarkStarOne.exe: + "/DarkStarOne.exe": - when: - store: steam steam: id: 12330 Darkstone: files: - /config/*.txt: + "/config/*.txt": tags: - config when: - os: windows - /save: + "/save": tags: - save when: @@ -130979,21 +131354,21 @@ Darkstone: installDir: Darkstone: {} launch: - /Darkstone.exe: + "/Darkstone.exe": - when: - os: windows store: steam steam: id: 320320 -'Darkwind: War on Wheels': +"Darkwind: War on Wheels": installDir: darkwind: {} launch: - /DarkwindOSXClient.app: + "/DarkwindOSXClient.app": - when: - os: mac store: steam - /darkwindClient.exe: + "/darkwindClient.exe": - when: - os: windows store: steam @@ -131004,22 +131379,22 @@ Darkwinds: id: 838240 Darkwood: files: - /.config/unity3d/Acid Wizard Studio/DARKWOOD: + "/.config/unity3d/Acid Wizard Studio/DARKWOOD": tags: - save when: - os: linux - /AppData/LocalLow/Acid Wizard Studio/DARKWOOD: + "/AppData/LocalLow/Acid Wizard Studio/DARKWOOD": tags: - save when: - os: windows - /Library/Application Support/Acid Wizard Studio/DARKWOOD: + "/Library/Application Support/Acid Wizard Studio/DARKWOOD": tags: - save when: - os: mac - /unity3d/Acid Wizard Studio/Darkwood: + "/unity3d/Acid Wizard Studio/Darkwood": tags: - config when: @@ -131029,20 +131404,20 @@ Darkwood: installDir: Darkwood: {} launch: - /Darkwood.app: + "/Darkwood.app": - when: - bit: 64 os: mac store: steam - /Darkwood.exe: + "/Darkwood.exe": - when: - os: windows store: steam - - arguments: '-popupwindow' + - arguments: "-popupwindow" when: - os: windows store: steam - /Darkwood.x86_64: + "/Darkwood.x86_64": - when: - bit: 64 os: linux @@ -131057,11 +131432,11 @@ Darthy: installDir: DARTHY: {} launch: - /DARTHY.app: + "/DARTHY.app": - when: - os: mac store: steam - /DARTHY.exe: + "/DARTHY.exe": - when: - os: windows store: steam @@ -131076,15 +131451,15 @@ Darts and Friends: installDir: Darts and Friends: {} launch: - /DartsAndFriends.app/Contents/MacOS/DartsAndFriends: + "/DartsAndFriends.app/Contents/MacOS/DartsAndFriends": - when: - os: mac store: steam - /DartsAndFriends.exe: + "/DartsAndFriends.exe": - when: - os: windows store: steam - /DartsAndFriends.x86: + "/DartsAndFriends.x86": - when: - os: linux store: steam @@ -131095,40 +131470,40 @@ Darwin Project: Darwin Project: {} steam: id: 544920 -'Darwin''s Bots: Episode 1': +"Darwin's Bots: Episode 1": installDir: - Darwin's bots: {} + "Darwin's bots": {} steam: id: 612120 -Darwin's Demons: +"Darwin's Demons": installDir: - Darwin's Demons: {} + "Darwin's Demons": {} launch: - /Darwin's Demons.app/Contents/MacOS/Darwin's Demons: + "/Darwin's Demons.app/Contents/MacOS/Darwin's Demons": - when: - os: mac store: steam - /Darwin's Demons.exe: + "/Darwin's Demons.exe": - when: - os: windows store: steam - /Darwin's Demons.x86: + "/Darwin's Demons.x86": - when: - bit: 32 os: linux store: steam - /Darwin's Demons.x86_64: + "/Darwin's Demons.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 572020 -Darwin's Test: +"Darwin's Test": installDir: - Darwin's Test: {} + "Darwin's Test": {} launch: - /Darwins_Test.exe: + "/Darwins_Test.exe": - when: - os: windows store: steam @@ -131136,13 +131511,13 @@ Darwin's Test: id: 958960 Darwinia: files: - /.darwinia: + "/.darwinia": tags: - config - save when: - os: linux - /Saved Games/Darwinia: + "/Saved Games/Darwinia": tags: - save when: @@ -131155,16 +131530,16 @@ Darwinia: installDir: Darwinia: {} launch: - /Darwinia.app: + "/Darwinia.app": - when: - os: mac store: steam - /darwinia.exe: + "/darwinia.exe": - when: - bit: 64 os: windows store: steam - /run.sh: + "/run.sh": - when: - bit: 64 os: linux @@ -131182,20 +131557,20 @@ Das Geisterschiff: installDir: Das Geisterschiff: {} launch: - /DasGeisterschiff.app/Contents/MacOS/DasGeisterschiff: + "/DasGeisterschiff.app/Contents/MacOS/DasGeisterschiff": - when: - os: mac store: steam - /DasGeisterschiff.exe: + "/DasGeisterschiff.exe": - when: - os: windows store: steam - /DasGeisterschiff.x86: + "/DasGeisterschiff.x86": - when: - bit: 32 os: linux store: steam - /DasGeisterschiff.x86_64: + "/DasGeisterschiff.x86_64": - when: - bit: 64 os: linux @@ -131206,7 +131581,7 @@ Dash Blitz: installDir: Dash Blitz: {} launch: - /Dash Blitz.exe: + "/Dash Blitz.exe": - when: - os: windows store: steam @@ -131221,20 +131596,20 @@ Dash Fleet: installDir: Dash Fleet: {} launch: - /DashFleet.app: + "/DashFleet.app": - when: - os: mac store: steam - /DashFleet.exe: + "/DashFleet.exe": - when: - os: windows store: steam - /DashFleet.x86: + "/DashFleet.x86": - when: - bit: 32 os: linux store: steam - /DashFleet.x86_64: + "/DashFleet.x86_64": - when: - bit: 64 os: linux @@ -131245,7 +131620,7 @@ Dash Island: installDir: Dash Island: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -131255,7 +131630,7 @@ DashBored: installDir: DashBored: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -131265,7 +131640,7 @@ Dashbot Ninja: installDir: Dashbot Ninja: {} launch: - /Dashbot Ninja.exe: + "/Dashbot Ninja.exe": - when: - os: windows store: steam @@ -131275,12 +131650,12 @@ Dashing Dinos: installDir: Dashing Dinos: {} launch: - /WindowsNoEditor/DashingDinos/Binaries/Win32/DashingDinos-Win32-Shipping.exe: + "/WindowsNoEditor/DashingDinos/Binaries/Win32/DashingDinos-Win32-Shipping.exe": - when: - bit: 32 os: windows store: steam - /WindowsNoEditor/DashingDinos/Binaries/Win64/DashingDinos-Win64-Shipping.exe: + "/WindowsNoEditor/DashingDinos/Binaries/Win64/DashingDinos-Win64-Shipping.exe": - when: - bit: 64 os: windows @@ -131291,35 +131666,35 @@ Dashing Dinosaurs & Sexy Centaurs: installDir: Dashing Dinosaurs: {} launch: - /DashingDinos.app/Contents/MacOS/DashingDinos: + "/DashingDinos.app/Contents/MacOS/DashingDinos": - when: - os: mac store: steam - /DashingDinos.exe: + "/DashingDinos.exe": - when: - os: windows store: steam - /DashingDinos.sh: + "/DashingDinos.sh": - when: - os: linux store: steam steam: id: 947070 -'Dashing Dinosaurs & Sexy Centaurs: Winter''s Tale': +"Dashing Dinosaurs & Sexy Centaurs: Winter's Tale": installDir: - Dashing Dinosaurs Winter's Tale: {} + "Dashing Dinosaurs Winter's Tale": {} launch: - /DashingDinosWT.exe: + "/DashingDinosWT.exe": - when: - os: windows store: steam - /DashingDinosWT.sh: + "/DashingDinosWT.sh": - when: - os: linux store: steam steam: id: 1152210 -'Dashing Nineties: R.M.D.': +"Dashing Nineties: R.M.D.": steam: id: 657650 Dashkin: @@ -131329,20 +131704,20 @@ Dashy Square: installDir: Dashy Square: {} launch: - /DashySquare.app/Contents/MacOS/DashySquare: + "/DashySquare.app/Contents/MacOS/DashySquare": - when: - os: mac store: steam - /DashySquare.exe: + "/DashySquare.exe": - when: - os: windows store: steam - /DashySquare.x86: + "/DashySquare.x86": - when: - bit: 32 os: linux store: steam - /DashySquare.x86_64: + "/DashySquare.x86_64": - when: - bit: 64 os: linux @@ -131358,7 +131733,7 @@ Data Ball: installDir: Data_Ball: {} launch: - /Data_Ball.exe: + "/Data_Ball.exe": - when: - bit: 64 os: windows @@ -131369,11 +131744,11 @@ Data Defense: installDir: Data Defense: {} launch: - /DataDefense.app: + "/DataDefense.app": - when: - os: mac store: steam - /DataDefense.exe: + "/DataDefense.exe": - when: - os: windows store: steam @@ -131383,47 +131758,47 @@ Data Dream: installDir: Data Dream: {} launch: - /Data Dream.app/Contents/MacOS/Data Dream: + "/Data Dream.app/Contents/MacOS/Data Dream": - when: - os: mac store: steam - /Data Dream.exe: + "/Data Dream.exe": - when: - os: windows store: steam - /Data Dream.x86: + "/Data Dream.x86": - when: - os: linux store: steam steam: id: 1215540 -'Data Hacker: Corruption': +"Data Hacker: Corruption": installDir: Data Hacker Corruption: {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: id: 329000 -'Data Hacker: Initiation': +"Data Hacker: Initiation": installDir: Data Hacker Initiation: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam steam: id: 311860 -'Data Hacker: Reboot': +"Data Hacker: Reboot": files: - /Game.ini: + "/Game.ini": tags: - config when: - os: windows - '/[ New Reality Games ] - [ Data Hacker ]/Saves': + "/[ New Reality Games ] - [ Data Hacker ]/Saves": tags: - save when: @@ -131431,14 +131806,14 @@ Data Dream: installDir: Data Hacker Reboot: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: id: 331790 -'Data Jammers: FastForward': +"Data Jammers: FastForward": files: - /config.cfg: + "/config.cfg": tags: - config when: @@ -131446,12 +131821,12 @@ Data Dream: installDir: Data Jammers FastForward: {} launch: - /DataJammers.app: + "/DataJammers.app": - when: - bit: 64 os: mac store: steam - /fastforward.exe: + "/fastforward.exe": - when: - os: windows store: steam @@ -131461,7 +131836,7 @@ Data Mining: installDir: Data mining: {} launch: - /Data mining.exe: + "/Data mining.exe": - when: - os: windows store: steam @@ -131471,7 +131846,7 @@ Data Mining 0: installDir: Data mining 0: {} launch: - /Data mining 0.exe: + "/Data mining 0.exe": - when: - os: windows store: steam @@ -131479,7 +131854,7 @@ Data Mining 0: id: 1059260 Data Mining 2: files: - /.: + "/.": tags: - save when: @@ -131487,7 +131862,7 @@ Data Mining 2: installDir: Data mining 2: {} launch: - /Data mining 2.exe: + "/Data mining 2.exe": - when: - os: windows store: steam @@ -131497,7 +131872,7 @@ Data Mining 3: installDir: Data mining 3: {} launch: - /Data mining 3.exe: + "/Data mining 3.exe": - when: - os: windows store: steam @@ -131507,7 +131882,7 @@ Data Mining 4: installDir: Data mining 4: {} launch: - /Data mining 4.exe: + "/Data mining 4.exe": - when: - os: windows store: steam @@ -131517,7 +131892,7 @@ Data Mining 5: installDir: Data mining 5: {} launch: - /Data mining 5.exe: + "/Data mining 5.exe": - when: - os: windows store: steam @@ -131527,7 +131902,7 @@ Data Mining 6: installDir: Data mining 6: {} launch: - /Data mining 6.exe: + "/Data mining 6.exe": - when: - os: windows store: steam @@ -131537,7 +131912,7 @@ Data Mining 7: installDir: Data mining 7: {} launch: - /Data mining 7.exe: + "/Data mining 7.exe": - when: - os: windows store: steam @@ -131550,7 +131925,7 @@ Data Thief: id: 682740 DataJack: files: - /saves: + "/saves": tags: - save when: @@ -131559,7 +131934,7 @@ Dataflow: installDir: DATAFLOW: {} launch: - /Dataflow.exe: + "/Dataflow.exe": - when: - os: windows store: steam @@ -131568,9 +131943,9 @@ Dataflow: Datascape: steam: id: 835790 -'Date A Live: Rio Reincarnation': +"Date A Live: Rio Reincarnation": files: - /Idea Factory/DATE A LIVE RIO-REINCARNATION: + "/Idea Factory/DATE A LIVE RIO-REINCARNATION": tags: - save when: @@ -131580,7 +131955,7 @@ Datascape: installDir: DATE A LIVE Rio Reincarnation: {} launch: - /DATE A LIVE RIO-REINCARNATION.exe: + "/DATE A LIVE RIO-REINCARNATION.exe": - when: - os: windows store: steam @@ -131588,22 +131963,22 @@ Datascape: id: 1047440 Date Warp: files: - /game/saves: + "/game/saves": tags: - save when: - os: windows - /renpy/config.py: + "/renpy/config.py": tags: - config when: - os: windows - /.renpy/DateWarp: + "/.renpy/DateWarp": tags: - save when: - os: linux - /RenPy/DateWarp: + "/RenPy/DateWarp": tags: - save when: @@ -131611,15 +131986,15 @@ Date Warp: installDir: DateWarp: {} launch: - /DateWarp.app: + "/DateWarp.app": - when: - os: mac store: steam - /DateWarp.exe: + "/DateWarp.exe": - when: - os: windows store: steam - /DateWarp.sh: + "/DateWarp.sh": - when: - os: linux store: steam @@ -131629,7 +132004,7 @@ Date Write: installDir: Date Write: {} launch: - /Date Write.exe: + "/Date Write.exe": - when: - os: windows store: steam @@ -131639,17 +132014,17 @@ Dath: installDir: DATH: {} launch: - /TheDarkTheme.exe: + "/TheDarkTheme.exe": - when: - os: windows store: steam steam: id: 495200 -'Dating Life: Miley X Emily': +"Dating Life: Miley X Emily": installDir: Dating Life Miley X Emily: {} launch: - /DatingLifeMxE.exe: + "/DatingLifeMxE.exe": - when: - os: windows store: steam @@ -131659,17 +132034,17 @@ Datswer: installDir: Datswer: {} launch: - /Datswer/Datswer.exe: + "/Datswer/Datswer.exe": - when: - os: windows store: steam steam: id: 348000 -'Daughter of Shadows: An SCP Breach Event': +"Daughter of Shadows: An SCP Breach Event": installDir: Daughter of Shadows An SCP Breach Event: {} launch: - /DoS.exe: + "/DoS.exe": - when: - os: windows store: steam @@ -131677,7 +132052,7 @@ Datswer: id: 449820 Dauntless: files: - /Archon/Saved/Config/WindowsClient: + "/Archon/Saved/Config/WindowsClient": tags: - config when: @@ -131686,7 +132061,7 @@ Dave: installDir: Dave: {} launch: - /Dave.exe: + "/Dave.exe": - when: - os: windows store: steam @@ -131694,32 +132069,32 @@ Dave: id: 833980 Dave Goes Nutz!: files: - /*.SAV: + "/*.SAV": tags: - save when: - os: dos - /AUDIO.DAV: + "/AUDIO.DAV": tags: - config when: - os: dos - /CONFIG.DAV: + "/CONFIG.DAV": tags: - config when: - os: dos - /DD GN/*.SAV: + "/DD GN/*.SAV": tags: - save when: - store: gog - /DD GN/AUDIO.DAV: + "/DD GN/AUDIO.DAV": tags: - config when: - store: gog - /DD GN/CONFIG.DAV: + "/DD GN/CONFIG.DAV": tags: - config when: @@ -131728,7 +132103,7 @@ Dave Goes Nutz!: id: 1207659130 Dave the Diver: files: - /AppData/LocalLow/nexon/DAVE THE DIVER/SteamSData: + "/AppData/LocalLow/nexon/DAVE THE DIVER/SteamSData": tags: - save when: @@ -131739,7 +132114,7 @@ Dave the Diver: installDir: Dave the Diver: {} launch: - /DaveTheDiver.exe: + "/DaveTheDiver.exe": - when: - os: windows store: steam @@ -131749,15 +132124,18 @@ Dave-Man: installDir: Dave-Man: {} launch: - /Dave-Man.app: + "/Dave-Man.app": - when: - os: mac store: steam - /Dave-Man.exe: + "/Dave-Man.exe": - when: - bit: 32 os: windows store: steam + - bit: 64 + os: windows + store: steam steam: id: 1103790 David Lynch Teaches Typing: @@ -131769,11 +132147,11 @@ David.: installDir: David: {} launch: - /David.app: + "/David.app": - when: - os: mac store: steam - /David.exe: + "/David.exe": - when: - os: windows store: steam @@ -131781,26 +132159,26 @@ David.: id: 346180 Davigo: files: - /Davigo: + "/Davigo": tags: - config when: - os: windows - /Davigo: + "/Davigo": tags: - save when: - os: windows steam: id: 1116540 -'Davyria: Heroes of Eternity': +"Davyria: Heroes of Eternity": files: - /Ungraved: + "/Ungraved": tags: - save when: - os: windows - /Ungraved/Config/WindowsNoEditor: + "/Ungraved/Config/WindowsNoEditor": tags: - config when: @@ -131808,7 +132186,7 @@ Davigo: installDir: Davyria: {} launch: - /Davyria.exe: + "/Davyria.exe": - when: - bit: 64 os: windows @@ -131817,7 +132195,7 @@ Davigo: id: 593850 Dawn: files: - /Dawn/Saved/SaveGames/*.sav: + "/Dawn/Saved/SaveGames/*.sav": tags: - save when: @@ -131825,7 +132203,7 @@ Dawn: installDir: Dawn: {} launch: - /Dawn.exe: + "/Dawn.exe": - when: - bit: 64 os: windows @@ -131836,7 +132214,7 @@ Dawn Break -Origin-: installDir: Dawn Break -Origin-: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -131851,21 +132229,21 @@ Dawn of Andromeda: installDir: Dawn of Andromeda: {} launch: - /Dawn of Andromeda.exe: + "/Dawn of Andromeda.exe": - when: - bit: 64 store: steam steam: id: 427570 -'Dawn of China: Rise of Qin': +"Dawn of China: Rise of Qin": installDir: Dawn of China - Rise of Qin: {} launch: - /Dawn of China - Rise of Qin.app/Contents/MacOS/Dawn of China - Rise of Qin: + "/Dawn of China - Rise of Qin.app/Contents/MacOS/Dawn of China - Rise of Qin": - when: - os: mac store: steam - /Dawn of China - Rise of Qin.exe: + "/Dawn of China - Rise of Qin.exe": - when: - os: windows store: steam @@ -131875,16 +132253,16 @@ Dawn of Corruption: installDir: Dawn of Corruption: {} launch: - /Dawn of Corruption.exe: + "/Dawn of Corruption.exe": - when: - store: steam steam: id: 1608730 -Dawn of H'btakh: +"Dawn of H'btakh": installDir: - Dawn of H'btakh: {} + "Dawn of H'btakh": {} launch: - /dnb.exe: + "/dnb.exe": - when: - os: windows store: steam @@ -131892,19 +132270,19 @@ Dawn of H'btakh: id: 661730 Dawn of Magic: files: - /tbm.ini: + "/tbm.ini": tags: - config when: - os: windows Dawn of Magic 2: files: - /profiles: + "/profiles": tags: - save when: - os: windows - /tbm.ini: + "/tbm.ini": tags: - config when: @@ -131914,19 +132292,19 @@ Dawn of Magic 2: installDir: Dawn of Magic II: {} launch: - /dawnofmagic2.exe: + "/dawnofmagic2.exe": - when: - store: steam steam: id: 33540 Dawn of Man: files: - /DawnOfMan/Saves: + "/DawnOfMan/Saves": tags: - save when: - os: windows - /DawnOfMan/Settings/settings.sav: + "/DawnOfMan/Settings/settings.sav": tags: - config when: @@ -131936,11 +132314,11 @@ Dawn of Man: installDir: DawnOfMan: {} launch: - /DawnOfMan.app/Contents/MacOS/DawnOfMan: + "/DawnOfMan.app/Contents/MacOS/DawnOfMan": - when: - os: mac store: steam - /DawnOfMan.exe: + "/DawnOfMan.exe": - when: - bit: 64 os: windows @@ -131951,14 +132329,14 @@ Dawn of Man: - config steam: id: 858810 -'Dawn of War II: Retribution - The Last Stand': +"Dawn of War II: Retribution - The Last Stand": steam: id: 56438 Dawn of Warriors: installDir: DoW: {} launch: - /Dow.exe: + "/Dow.exe": - when: - os: windows store: steam @@ -131968,22 +132346,28 @@ Dawn of a Soul: installDir: Dawn of a Soul: {} launch: - /Dawn of a Soul.app: + "/Dawn of a Soul.app": - when: - bit: 32 os: mac store: steam - /Dawn of a Soul.exe: + - bit: 64 + os: mac + store: steam + "/Dawn of a Soul.exe": - when: - bit: 32 os: windows store: steam - /Dawn of a Soul.x86: + - bit: 64 + os: windows + store: steam + "/Dawn of a Soul.x86": - when: - bit: 32 os: linux store: steam - /Dawn of a Soul.x86_64: + "/Dawn of a Soul.x86_64": - when: - bit: 64 os: linux @@ -131994,7 +132378,7 @@ Dawn of the Breakers: installDir: Dawn of the Breakers: {} launch: - /Breakers.exe: + "/Breakers.exe": - when: - os: windows store: steam @@ -132004,21 +132388,21 @@ Dawn of the Celestialpod: installDir: Dawn of the Celestialpod: {} launch: - /GWAMM_DOTC_GOLD_MASTER.exe: + "/GWAMM_DOTC_GOLD_MASTER.exe": - when: - os: windows store: steam steam: id: 854500 -'Dawn of the Dragons: Ascension': +"Dawn of the Dragons: Ascension": installDir: Dawn of the Dragons Ascension: {} launch: - /Dawn2.app/Contents/MacOS/Dawn2: + "/Dawn2.app/Contents/MacOS/Dawn2": - when: - os: mac store: steam - /Dawn2.exe: + "/Dawn2.exe": - when: - os: windows store: steam @@ -132028,11 +132412,11 @@ Dawn of the Killer Zombies: installDir: Dawn of the killer zombies: {} launch: - /Dawn of the killer zombies.app: + "/Dawn of the killer zombies.app": - when: - os: mac store: steam - /Win/Dawn of the killer zombies.exe: + "/Win/Dawn of the killer zombies.exe": - when: - os: windows store: steam @@ -132042,11 +132426,11 @@ Dawn of the Lost Castle: installDir: Dawn of the Lost Castle: {} launch: - /Contents/MacOS/Dawn of the Lost Castle: + "/Contents/MacOS/Dawn of the Lost Castle": - when: - os: mac store: steam - /Dawn of the Lost Castle.exe: + "/Dawn of the Lost Castle.exe": - when: - os: windows store: steam @@ -132058,7 +132442,7 @@ Dawn of the Monsters: installDir: Dawn of the Monsters: {} launch: - /DotM.exe: + "/DotM.exe": - when: - os: windows store: steam @@ -132068,16 +132452,16 @@ Dawn of the Plow: installDir: Dawn of the Plow: {} launch: - /DawnofthePlow.app: + "/DawnofthePlow.app": - when: - bit: 64 os: mac store: steam - /dotp: + "/dotp": - when: - os: linux store: steam - /dotp.exe: + "/dotp.exe": - when: - os: windows store: steam @@ -132088,21 +132472,21 @@ Dawn of the Robot Empire: Dawn of the Robot Empire: {} steam: id: 452240 -Dawn's Light: +"Dawn's Light": installDir: - Dawn's Light: {} + "Dawn's Light": {} launch: - /DawnsLight.exe: + "/DawnsLight.exe": - when: - os: windows store: steam steam: id: 520820 -Dawn's Light 2: +"Dawn's Light 2": installDir: - Dawn's Light 2: {} + "Dawn's Light 2": {} launch: - /DawnsLight2.exe: + "/DawnsLight2.exe": - when: - store: steam steam: @@ -132111,23 +132495,23 @@ Dawnfall: installDir: Dawnfall: {} launch: - /Dawnfall: + "/Dawnfall": - when: - os: linux store: steam - /Dawnfall.app/Contents/MacOS/Dawnfall: + "/Dawnfall.app/Contents/MacOS/Dawnfall": - when: - os: mac store: steam - /Dawnfall.exe: + "/Dawnfall.exe": - when: - os: windows store: steam steam: id: 1183300 -'Day D: Tower Rush': +"Day D: Tower Rush": files: - /8Floor/DinoRageDefense: + "/8Floor/DinoRageDefense": tags: - config - save @@ -132136,20 +132520,20 @@ Dawnfall: installDir: Day D Tower Rush: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam steam: id: 423550 -'Day One: Garry''s Incident': +"Day One: Garry's Incident": files: - /Binaries/Win32/*.sav: + "/Binaries/Win32/*.sav": tags: - save when: - os: windows - /UDKGame/Config: + "/UDKGame/Config": tags: - config when: @@ -132157,18 +132541,18 @@ Dawnfall: installDir: DayOne: {} launch: - /Binaries/Win32/DayOne.exe: + "/Binaries/Win32/DayOne.exe": - when: - os: windows store: steam - workingDir: /Binaries/Win32 + workingDir: "/Binaries/Win32" steam: id: 242800 Day Zero: installDir: DayZeroBCS: {} launch: - /DayZero/DayZero.exe: + "/DayZero/DayZero.exe": - when: - bit: 64 os: windows @@ -132179,7 +132563,7 @@ Day and Night: installDir: DayAndNight: {} launch: - /DayAndNight.exe: + "/DayAndNight.exe": - when: - bit: 64 os: windows @@ -132188,12 +132572,12 @@ Day and Night: id: 1347450 Day of Defeat: files: - /Half-Life/dod: + "/Half-Life/dod": tags: - config when: - os: windows - /.steam/steam/SteamApps/common/Half-Life/dod: + "/.steam/steam/SteamApps/common/Half-Life/dod": tags: - config when: @@ -132201,26 +132585,28 @@ Day of Defeat: installDir: Half-Life: {} launch: - /hl.exe: - - arguments: '-steam -game dod' + "/hl.exe": + - arguments: "-steam -game dod" when: - os: windows store: steam - /hl.sh: - - arguments: '-steam -game dod' + "/hl.sh": + - arguments: "-steam -game dod" when: - os: mac store: steam + - os: linux + store: steam steam: id: 30 -'Day of Defeat: Source': +"Day of Defeat: Source": files: - /dod/cfg: + "/dod/cfg": tags: - config when: - os: windows - /.steam/Steam/SteamApps/common/Day of Defeat Source/dod: + "/.steam/Steam/SteamApps/common/Day of Defeat Source/dod": tags: - config when: @@ -132228,18 +132614,18 @@ Day of Defeat: installDir: Day of Defeat Source: {} launch: - /hl2.exe: - - arguments: '-steam -game dod' + "/hl2.exe": + - arguments: "-steam -game dod" when: - os: windows store: steam - /hl2.sh: - - arguments: '-game dod -steam' + "/hl2.sh": + - arguments: "-game dod -steam" when: - os: linux store: steam - /hl2_osx: - - arguments: '-steam -game dod' + "/hl2_osx": + - arguments: "-steam -game dod" when: - os: mac store: steam @@ -132252,7 +132638,7 @@ Day of Destruction: id: 488020 Day of Dragons: files: - /Dragons/Saved/Config/WindowsNoEditor: + "/Dragons/Saved/Config/WindowsNoEditor": tags: - config when: @@ -132260,12 +132646,12 @@ Day of Dragons: installDir: Day of Dragons: {} launch: - /Dragons.exe: + "/Dragons.exe": - when: - bit: 64 os: windows store: steam - /Dragons.sh: + "/Dragons.sh": - when: - bit: 64 os: linux @@ -132274,7 +132660,7 @@ Day of Dragons: id: 1088090 Day of Infamy: files: - /userdata//447820/remote/cfg: + "/userdata//447820/remote/cfg": tags: - config when: @@ -132282,30 +132668,32 @@ Day of Infamy: installDir: dayofinfamy: {} launch: - /dayofinfamy.sh: + "/dayofinfamy.sh": - when: - os: mac store: steam - /dayofinfamy_BE.exe: - - arguments: '-console -crashinprocess' + - os: linux + store: steam + "/dayofinfamy_BE.exe": + - arguments: "-console -crashinprocess" when: - os: windows store: steam steam: id: 447820 -'Day of the Dead: Solitaire Collection': +"Day of the Dead: Solitaire Collection": installDir: Day of the Dead Solitaire Collection: {} launch: - /Day of the Dead - Solitaire.app: + "/Day of the Dead - Solitaire.app": - when: - os: mac store: steam - /Day of the Dead - Solitaire.exe: + "/Day of the Dead - Solitaire.exe": - when: - os: windows store: steam - /Day of the Dead - Solitaire.x86_64: + "/Day of the Dead - Solitaire.x86_64": - when: - os: linux store: steam @@ -132313,45 +132701,45 @@ Day of Infamy: id: 1373600 Day of the Tentacle: files: - /SAVEGAME.*: + "/SAVEGAME.*": tags: - save when: - os: dos Day of the Tentacle Remastered: files: - /savedata: + "/savedata": tags: - save when: - os: windows - /savedata/settings.ini: + "/savedata/settings.ini": tags: - config when: - os: windows - /Library/Application Support/com.doublefine.dottosx: + "/Library/Application Support/com.doublefine.dottosx": tags: - save when: - os: mac - /Library/Preferences/com.doublefine.dottosx.plist: + "/Library/Preferences/com.doublefine.dottosx.plist": tags: - config when: - os: mac - /Doublefine/DayOfTheTentacle: + "/Doublefine/DayOfTheTentacle": tags: - config - save when: - os: windows - /doublefine/dott: + "/doublefine/dott": tags: - config when: - os: linux - /doublefine/dott/savedata: + "/doublefine/dott/savedata": tags: - save when: @@ -132361,15 +132749,15 @@ Day of the Tentacle Remastered: installDir: Day of the Tentacle Remastered: {} launch: - /Dott: + "/Dott": - when: - os: linux store: steam - /Dott.app: + "/Dott.app": - when: - os: mac store: steam - /Dott.exe: + "/Dott.exe": - when: - os: windows store: steam @@ -132379,11 +132767,11 @@ Day of the Trumplings: installDir: DayOfTheTrumplings: {} launch: - /DayOfTheTrumplings.app/Contents/MacOS/DayOfTheTrumplings: + "/DayOfTheTrumplings.app/Contents/MacOS/DayOfTheTrumplings": - when: - os: mac store: steam - /DayOfTheTrumplings.exe: + "/DayOfTheTrumplings.exe": - when: - os: windows store: steam @@ -132391,21 +132779,21 @@ Day of the Trumplings: id: 517060 Day of the Zombie: files: - /Saves: + "/Saves": tags: - config when: - os: windows - /System/*.ini: + "/System/*.ini": tags: - config when: - os: windows -'Day: 40': +"Day: 40": installDir: Day40: {} launch: - /Day40.exe: + "/Day40.exe": - when: - bit: 64 os: windows @@ -132417,18 +132805,18 @@ DayBreak Online: DayBreak Online: {} steam: id: 314860 -'DayD: Through time': +"DayD: Through time": installDir: DayD Through time: {} launch: - /Day D.exe: + "/Day D.exe": - when: - store: steam steam: id: 869560 DayZ: files: - /DayZ: + "/DayZ": tags: - config when: @@ -132436,12 +132824,12 @@ DayZ: installDir: DayZ: {} launch: - /DayZLauncher.exe: + "/DayZLauncher.exe": - when: - bit: 64 store: steam - /DayZ_BE.exe: - - arguments: '-exe DayZ_x64.exe' + "/DayZ_BE.exe": + - arguments: "-exe DayZ_x64.exe" when: - bit: 64 store: steam @@ -132451,7 +132839,7 @@ DayZ (mod): installDir: Arma 2 Operation Arrowhead: {} launch: - /ArmA2OA_BE.exe: + "/ArmA2OA_BE.exe": - arguments: 0 0 -beta=@dayz -noLogs when: - store: steam @@ -132461,25 +132849,25 @@ DayZ Tools: installDir: DayZ Tools: {} launch: - /Bin/Launcher/DayZToolsLauncher.exe: + "/Bin/Launcher/DayZToolsLauncher.exe": - when: - store: steam - workingDir: /Bin/Launcher - /Bin/Launcher/launcher.bat: - - arguments: \"%installdir%\" + workingDir: "/Bin/Launcher" + "/Bin/Launcher/launcher.bat": + - arguments: "\\\"%installdir%\\\"" when: - store: steam - /Bin/Workbench/workbenchApp.exe: + "/Bin/Workbench/workbenchApp.exe": - when: - store: steam - workingDir: /Bin/Workbench + workingDir: "/Bin/Workbench" steam: id: 830640 Daydream: installDir: Daydream: {} launch: - /Daydream.exe: + "/Daydream.exe": - when: - os: windows store: steam @@ -132490,12 +132878,12 @@ Daydream Blue: Daydream Blue: {} steam: id: 413350 -'Daydream: Forgotten Sorrow': +"Daydream: Forgotten Sorrow": installDir: Daydream: {} launch: - /DayDream.exe: - - arguments: '-lean=1' + "/DayDream.exe": + - arguments: "-lean=1" when: - bit: 64 os: windows @@ -132506,7 +132894,7 @@ Daydreamer: installDir: Daydreamer: {} launch: - /Daydreamer.exe: + "/Daydreamer.exe": - when: - os: windows store: steam @@ -132514,22 +132902,22 @@ Daydreamer: id: 394390 Daylight: files: - /Engine/Config: + "/Engine/Config": tags: - config when: - os: windows - /LimaGame/Config: + "/LimaGame/Config": tags: - config when: - os: windows - /Daylight/Config/WindowsNoEditor: + "/Daylight/Config/WindowsNoEditor": tags: - config when: - os: windows - /Daylight/Saved/SaveGames: + "/Daylight/Saved/SaveGames": tags: - save when: @@ -132537,28 +132925,28 @@ Daylight: installDir: Daylight: {} launch: - /DaylightLauncher.exe: + "/DaylightLauncher.exe": - when: - os: windows store: steam - - arguments: '-nosli -nolightfx' + - arguments: "-nosli -nolightfx" when: - os: windows store: steam - - arguments: '-rundiag' + - arguments: "-rundiag" when: - os: windows store: steam steam: id: 230840 -'Daymare: 1994 Sandcastle': +"Daymare: 1994 Sandcastle": files: - /Ogre/Saved: + "/Ogre/Saved": tags: - save when: - os: windows - /Ogre/Saved/Config/WindowsNoEditor: + "/Ogre/Saved/Config/WindowsNoEditor": tags: - config when: @@ -132571,21 +132959,21 @@ Daylight: installDir: Daymare 1994 Sandcastle: {} launch: - /Ogre.exe: + "/Ogre.exe": - when: - bit: 64 os: windows store: steam steam: id: 1530470 -'Daymare: 1998': +"Daymare: 1998": files: - /Daymare_MASTER/Saved: + "/Daymare_MASTER/Saved": tags: - save when: - os: windows - /Daymare_MASTER/Saved/Config/WindowsNoEditor: + "/Daymare_MASTER/Saved/Config/WindowsNoEditor": tags: - config when: @@ -132598,7 +132986,7 @@ Daylight: installDir: Daymare 1998: {} launch: - /Daymare_MASTER.exe: + "/Daymare_MASTER.exe": - when: - bit: 64 os: windows @@ -132607,12 +132995,12 @@ Daylight: id: 842100 Days Gone: files: - /BendGame/Saved/: + "/BendGame/Saved/": tags: - save when: - os: windows - /BendGame/Saved/Config/WindowsNoEditor: + "/BendGame/Saved/Config/WindowsNoEditor": tags: - config when: @@ -132627,21 +133015,24 @@ Days Gone By: installDir: Days Gone By: {} launch: - /Days Gone By v2.0.x86: + "/Days Gone By v2.0.x86": - when: - bit: 32 os: linux store: steam - /Days Gone By v2.0.app: + "/Days Gone By v2.0.app": - when: - os: mac store: steam - /Days Gone By v2.0.exe: + "/Days Gone By v2.0.exe": - when: - bit: 32 os: windows store: steam - /Days Gone By v2.0.x86_64: + - bit: 64 + os: windows + store: steam + "/Days Gone By v2.0.x86_64": - when: - bit: 64 os: linux @@ -132652,15 +133043,15 @@ Days Under Custody: installDir: DaysUnderCustody: {} launch: - /daysundercustody.app/Contents/MacOS/nwjs: + "/daysundercustody.app/Contents/MacOS/nwjs": - when: - os: mac store: steam - /nw: + "/nw": - when: - os: linux store: steam - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -132670,7 +133061,7 @@ Days of Purgatory: installDir: DaysOfPurgatory: {} launch: - /DoP.exe: + "/DoP.exe": - when: - bit: 64 os: windows @@ -132679,7 +133070,7 @@ Days of Purgatory: id: 684840 Days of War: files: - /DaysOfWar/Saved/Config/WindowsNoEditor: + "/DaysOfWar/Saved/Config/WindowsNoEditor": tags: - config when: @@ -132687,7 +133078,7 @@ Days of War: installDir: Days of War: {} launch: - /DaysOfWar.exe: + "/DaysOfWar.exe": - when: - bit: 64 os: windows @@ -132698,7 +133089,7 @@ Days of a Princess: installDir: Days Of A Princess: {} launch: - /DaysOfAPrincess.exe: + "/DaysOfAPrincess.exe": - when: - store: steam steam: @@ -132707,15 +133098,15 @@ Daytona Racing: installDir: Daytona Racing: {} launch: - /Daytona Racing.app/Contents/MacOS/Daytona Racing: + "/Daytona Racing.app/Contents/MacOS/Daytona Racing": - when: - os: mac store: steam - /Daytona Racing.exe: + "/Daytona Racing.exe": - when: - os: windows store: steam - /Daytona Racing.x86: + "/Daytona Racing.x86": - when: - os: linux store: steam @@ -132723,19 +133114,19 @@ Daytona Racing: id: 905300 Daytona USA: files: - /DAYTONA.DAT: + "/DAYTONA.DAT": tags: - save when: - os: windows - /DAYTONA.INI: + "/DAYTONA.INI": tags: - config when: - os: windows -'Daytona USA: Deluxe': +"Daytona USA: Deluxe": files: - /DAYTONA USA Deluxe.INI: + "/DAYTONA USA Deluxe.INI": tags: - config when: @@ -132758,17 +133149,17 @@ Daytona USA: - config De Blob: files: - /setup.ini: + "/setup.ini": tags: - config when: - os: windows - /userdata//532320/remote: + "/userdata//532320/remote": tags: - save when: - store: steam - /deblob: + "/deblob": tags: - save when: @@ -132778,11 +133169,11 @@ De Blob: installDir: de Blob: {} launch: - /deBlob.exe: + "/deBlob.exe": - when: - os: windows store: steam - - arguments: '-exclusivefullscreen' + - arguments: "-exclusivefullscreen" when: - os: windows store: steam @@ -132790,17 +133181,17 @@ De Blob: id: 532320 De Blob 2: files: - /setup.ini: + "/setup.ini": tags: - config when: - os: windows - /userdata//563190/remote: + "/userdata//563190/remote": tags: - save when: - store: steam - /deBlob2: + "/deBlob2": tags: - save when: @@ -132810,11 +133201,11 @@ De Blob 2: installDir: de Blob 2: {} launch: - /deBlob2.exe: + "/deBlob2.exe": - when: - os: windows store: steam - - arguments: '-exclusivefullscreen' + - arguments: "-exclusivefullscreen" when: - os: windows store: steam @@ -132824,11 +133215,11 @@ De Fobos y Deimos: installDir: De Fobos y Deimos: {} launch: - /DFYD.exe: + "/DFYD.exe": - when: - os: windows store: steam - /Game.app: + "/Game.app": - when: - os: mac store: steam @@ -132838,20 +133229,20 @@ De Mambo: installDir: De Mambo: {} launch: - /DeMambo.app/Contents/MacOS/DeMambo: + "/DeMambo.app/Contents/MacOS/DeMambo": - when: - os: mac store: steam - /DeMambo.exe: + "/DeMambo.exe": - when: - os: windows store: steam - /DeMambo.x86: + "/DeMambo.x86": - when: - bit: 32 os: linux store: steam - /DeMambo.x86_64: + "/DeMambo.x86_64": - when: - bit: 64 os: linux @@ -132862,35 +133253,35 @@ De Profundis: installDir: De Profundis: {} launch: - /De Profundis.app: + "/De Profundis.app": - when: - os: mac store: steam - /De Profundis.exe: + "/De Profundis.exe": - when: - os: windows store: steam - /De Profundis.sh: + "/De Profundis.sh": - when: - os: linux store: steam steam: id: 1003960 -'De''Vine: The Card Battles': +"De'Vine: The Card Battles": installDir: - De'Vine Card Game: {} + "De'Vine Card Game": {} steam: id: 998570 -'De''Vine: World of Shadows': +"De'Vine: World of Shadows": installDir: - De'Vine World of Shadows: {} + "De'Vine World of Shadows": {} steam: id: 846710 De-Void: installDir: De-Void: {} launch: - /Binaries/Win32/UDK.exe: + "/Binaries/Win32/UDK.exe": - when: - os: windows store: steam @@ -132900,12 +133291,12 @@ DeDrive: installDir: DeDrive: {} launch: - /DeDrive.exe: + "/DeDrive.exe": - when: - bit: 64 os: windows store: steam - /DeDrive_Linux_64bit.x86_64: + "/DeDrive_Linux_64bit.x86_64": - when: - bit: 64 os: linux @@ -132924,7 +133315,7 @@ Dead: installDir: Dead: {} launch: - /Dead.exe: + "/Dead.exe": - when: - os: windows store: steam @@ -132934,16 +133325,16 @@ Dead Acres: installDir: Dead Acres: {} launch: - /DeadAcres.app/Contents/MacOS/DeadAcres: + "/DeadAcres.app/Contents/MacOS/DeadAcres": - when: - os: mac store: steam - /DeadAcres.exe: - - arguments: '-windowed' + "/DeadAcres.exe": + - arguments: "-windowed" when: - os: windows store: steam - /DeadAcres.x86_64: + "/DeadAcres.x86_64": - when: - os: linux store: steam @@ -132951,27 +133342,27 @@ Dead Acres: id: 404550 Dead Age: files: - /.config/unity3d/SilentDreams/DeadAge/Save*.xml: + "/.config/unity3d/SilentDreams/DeadAge/Save*.xml": tags: - save when: - os: linux - /.config/unity3d/SilentDreams/DeadAge/Settings.xml: + "/.config/unity3d/SilentDreams/DeadAge/Settings.xml": tags: - config when: - os: linux - /.config/unity3d/SilentDreams/DeadAge/prefs: + "/.config/unity3d/SilentDreams/DeadAge/prefs": tags: - config when: - os: linux - /AppData/LocalLow/SilentDreams/DeadAge/Save*.xml: + "/AppData/LocalLow/SilentDreams/DeadAge/Save*.xml": tags: - save when: - os: windows - /AppData/LocalLow/SilentDreams/DeadAge/Settings.xml: + "/AppData/LocalLow/SilentDreams/DeadAge/Settings.xml": tags: - config when: @@ -132981,15 +133372,15 @@ Dead Age: installDir: Dead Age: {} launch: - /DeadAge.app: + "/DeadAge.app": - when: - os: mac store: steam - /DeadAge.exe: + "/DeadAge.exe": - when: - os: windows store: steam - /DeadAge.x86: + "/DeadAge.x86": - when: - os: linux store: steam @@ -133001,32 +133392,32 @@ Dead Age: id: 363930 Dead Age 2: files: - /AppData/LocalLow/SilentDreams/DeadAge2: + "/AppData/LocalLow/SilentDreams/DeadAge2": tags: - save when: - os: windows - /AppData/LocalLow/SilentDreams/DeadAge2/settings.json: + "/AppData/LocalLow/SilentDreams/DeadAge2/settings.json": tags: - config when: - os: windows - /Library/Application Support/SilentDreams/DeadAge2: + "/Library/Application Support/SilentDreams/DeadAge2": tags: - save when: - os: mac - /Library/Application Support/SilentDreams/DeadAge2/settings.json: + "/Library/Application Support/SilentDreams/DeadAge2/settings.json": tags: - config when: - os: mac - /unity3d/SilentDreams/DeadAge2: + "/unity3d/SilentDreams/DeadAge2": tags: - save when: - os: linux - /unity3d/SilentDreams/DeadAge2/settings.json: + "/unity3d/SilentDreams/DeadAge2/settings.json": tags: - config when: @@ -133042,21 +133433,21 @@ Dead Age 2: installDir: Dead Age 2: {} launch: - /DeadAge2.64: + "/DeadAge2.64": - when: - os: linux store: steam - /DeadAge2.app: + "/DeadAge2.app": - when: - os: mac store: steam - /DeadAge2.exe: + "/DeadAge2.exe": - when: - os: windows store: steam steam: id: 951430 -'Dead Age: Survivors': +"Dead Age: Survivors": steam: id: 2117160 Dead Alliance: @@ -133066,7 +133457,7 @@ Dead Alliance: installDir: DeadAlliance: {} launch: - /MHGame.exe: + "/MHGame.exe": - when: - bit: 64 os: windows @@ -133077,15 +133468,15 @@ Dead Army - Radio Frequency: installDir: Dead Army - Radio Frequency: {} launch: - /deadarmy.exe: + "/deadarmy.exe": - when: - os: windows store: steam - /deadarmygame.app: + "/deadarmygame.app": - when: - os: mac store: steam - /deadarmygame.x86_64: + "/deadarmygame.x86_64": - when: - os: linux store: steam @@ -133095,11 +133486,11 @@ Dead Bits: installDir: Dead Bits: {} launch: - /Dead Bits.app: + "/Dead Bits.app": - when: - os: mac store: steam - /Dead Bits.exe: + "/Dead Bits.exe": - when: - os: windows store: steam @@ -133119,7 +133510,7 @@ Dead By Murder: installDir: Dead By Murder: {} launch: - /Dead By Murder.exe: + "/Dead By Murder.exe": - when: - os: windows store: steam @@ -133129,11 +133520,11 @@ Dead Castle: installDir: deadcastle: {} launch: - /GameRuntime.exe: + "/GameRuntime.exe": - when: - os: windows store: steam - /MacGameRuntime: + "/MacGameRuntime": - when: - os: mac store: steam @@ -133141,47 +133532,47 @@ Dead Castle: id: 1067250 Dead Cells: files: - /save/options.json: + "/save/options.json": tags: - config when: - os: windows - os: linux - /save/user_*.dat: + "/save/user_*.dat": tags: - save when: - os: windows - os: linux - /userdata//588650/remote/options.json: + "/userdata//588650/remote/options.json": tags: - config when: - store: steam - /userdata//588650/remote/user_*.dat: + "/userdata//588650/remote/user_*.dat": tags: - save when: - store: steam - /MotionTwin/DeadCells/options.json: + "/MotionTwin/DeadCells/options.json": tags: - config when: - os: windows store: microsoft - /MotionTwin/DeadCells/user_*.dat: + "/MotionTwin/DeadCells/user_*.dat": tags: - save when: - os: windows store: microsoft - /Packages/MotionTwin.DeadCellsWin10_rtjy889c6zgtg/LocalCache/Local/MotionTwin/DeadCells: + "/Packages/MotionTwin.DeadCellsWin10_rtjy889c6zgtg/LocalCache/Local/MotionTwin/DeadCells": tags: - save when: - os: windows store: microsoft - /Packages/MotionTwin.DeadCellsWin10_rtjy889c6zgtg/Settings: + "/Packages/MotionTwin.DeadCellsWin10_rtjy889c6zgtg/Settings": tags: - config when: @@ -133191,17 +133582,16 @@ Dead Cells: id: 1237807960 id: gogExtra: - - 1537569459 - - 1444893699 - 1114691340 - - 1537569459 - - 1758551289 - - 1896771475 - - 1804200569 - - 1385821524 - 1199198569 - - 1942714997 + - 1385821524 + - 1444893699 + - 1537569459 - 1753058625 + - 1758551289 + - 1804200569 + - 1896771475 + - 1942714997 - 2044679306 steamExtra: - 665380 @@ -133214,15 +133604,15 @@ Dead Cells: installDir: Dead Cells: {} launch: - /deadcells: + "/deadcells": - when: - os: mac store: steam - /deadcells.exe: + "/deadcells.exe": - when: - os: windows store: steam - /deadcells.sh: + "/deadcells.sh": - when: - os: linux store: steam @@ -133232,7 +133622,7 @@ Dead Climb: installDir: Dead Climb: {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: @@ -133241,7 +133631,7 @@ Dead Containment: installDir: Dead Containment: {} launch: - /DeadContainment.exe: + "/DeadContainment.exe": - when: - bit: 64 os: windows @@ -133257,7 +133647,7 @@ Dead Dozen: installDir: DEAD DOZEN: {} launch: - /dd.exe: + "/dd.exe": - when: - store: steam steam: @@ -133266,8 +133656,8 @@ Dead Dreams: installDir: Dead Dreams FULL: {} launch: - /Game.exe: - - arguments: '--in-process-gpu' + "/Game.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam @@ -133277,7 +133667,7 @@ Dead Drop: installDir: Dead Drop: {} launch: - /Dead Drop.exe: + "/Dead Drop.exe": - when: - store: steam steam: @@ -133286,16 +133676,16 @@ Dead Dungeon: installDir: Dead Dungeon: {} launch: - /Dead Dungeon.app: + "/Dead Dungeon.app": - when: - os: mac store: steam - /Dead Dungeon.exe: + "/Dead Dungeon.exe": - when: - bit: 64 os: windows store: steam - /Dead Dungeon.x86_64: + "/Dead Dungeon.x86_64": - when: - bit: 64 os: linux @@ -133306,7 +133696,7 @@ Dead Dust: installDir: Dead Dust: {} launch: - /Dead Dust steam.exe: + "/Dead Dust steam.exe": - when: - os: windows store: steam @@ -133316,11 +133706,11 @@ Dead Effect: installDir: DeadEffect: {} launch: - /DeadEffect.app: + "/DeadEffect.app": - when: - os: mac store: steam - /DeadEffect.exe: + "/DeadEffect.exe": - when: - os: windows store: steam @@ -133333,13 +133723,13 @@ Dead Effect: id: 286040 Dead Effect 2: files: - /AppData/LocalLow/BadFly Interactive/Dead Effect 2: + "/AppData/LocalLow/BadFly Interactive/Dead Effect 2": tags: - config - save when: - os: windows - /Library/Application Support/unity.BadFly Interactive.Dead Effect 2: + "/Library/Application Support/unity.BadFly Interactive.Dead Effect 2": tags: - config - save @@ -133348,11 +133738,11 @@ Dead Effect 2: installDir: Dead Effect 2: {} launch: - /DeadEffect2.app: + "/DeadEffect2.app": - when: - os: mac store: steam - /DeadEffect2.exe: + "/DeadEffect2.exe": - when: - os: windows store: steam @@ -133369,23 +133759,23 @@ Dead End Aegis: installDir: Dead End Aegis: {} launch: - /DeadEndAegis.exe: + "/DeadEndAegis.exe": - when: - store: steam steam: id: 1835830 -'Dead End Aegis: Gaiden': +"Dead End Aegis: Gaiden": installDir: DEA Gaiden: {} launch: - /DEA_Gaiden.exe: + "/DEA_Gaiden.exe": - when: - store: steam steam: id: 1839960 Dead End Job: files: - /AppData/LocalLow/AntWorkshop/Dead End Job/saveData: + "/AppData/LocalLow/AntWorkshop/Dead End Job/saveData": tags: - save when: @@ -133393,17 +133783,17 @@ Dead End Job: installDir: Dead End Job: {} launch: - /DeadEndJob.exe: + "/DeadEndJob.exe": - when: - bit: 64 os: windows store: steam - /DeadEndJob.x86: + "/DeadEndJob.x86": - when: - bit: 32 os: linux store: steam - /DeadEndJob.x86_64: + "/DeadEndJob.x86_64": - when: - bit: 64 os: linux @@ -133418,7 +133808,7 @@ Dead End Junction: installDir: Dead End Junction: {} launch: - /krkr.eXe: + "/krkr.eXe": - when: - store: steam steam: @@ -133427,17 +133817,17 @@ Dead End Road: installDir: Dead End Road: {} launch: - /DER.x86: + "/DER.x86": - when: - bit: 32 os: linux store: steam - /DER.x86_64: + "/DER.x86_64": - when: - bit: 64 os: linux store: steam - /Dead End Road.exe: + "/Dead End Road.exe": - when: - os: windows store: steam @@ -133449,7 +133839,7 @@ Dead End Road: id: 448580 Dead Estate: files: - /Dead_Estate: + "/Dead_Estate": tags: - config - save @@ -133458,7 +133848,7 @@ Dead Estate: installDir: Dead Estate: {} launch: - /Dead Estate.exe: + "/Dead Estate.exe": - when: - os: windows store: steam @@ -133468,11 +133858,11 @@ Dead Exit: installDir: Dead Exit: {} launch: - /DeadExit.exe: + "/DeadExit.exe": - when: - os: windows store: steam - /DeadExit.x86_64: + "/DeadExit.x86_64": - when: - bit: 64 os: linux @@ -133483,7 +133873,7 @@ Dead Forest: installDir: Dead Forest: {} launch: - /WindowsNoEditor/Dreaming.exe: + "/WindowsNoEditor/Dreaming.exe": - when: - bit: 64 os: windows @@ -133494,15 +133884,15 @@ Dead Forest (2022): installDir: Dead Forest: {} launch: - /DeadForest.app: + "/DeadForest.app": - when: - os: mac store: steam - /DeadForest.exe: + "/DeadForest.exe": - when: - os: windows store: steam - /DeadForest.sh: + "/DeadForest.sh": - when: - os: linux store: steam @@ -133512,7 +133902,7 @@ Dead Frontier 2: installDir: Dead Frontier 2: {} launch: - /DeadFrontier2.exe: + "/DeadFrontier2.exe": - when: - bit: 64 os: windows @@ -133528,11 +133918,11 @@ Dead Ground: installDir: Dead Ground: {} launch: - /Dead Ground.exe: + "/Dead Ground.exe": - when: - os: windows store: steam - /Dead_Ground: + "/Dead_Ground": - when: - os: linux store: steam @@ -133543,7 +133933,7 @@ Dead Ground Arcade: Dead Ground Arcade: {} steam: id: 1200350 -'Dead Ground: Arena': +"Dead Ground: Arena": installDir: DeadGroundArena: {} steam: @@ -133557,7 +133947,7 @@ Dead Hand: installDir: Dead Hand: {} launch: - /DeadHand_x64.exe: + "/DeadHand_x64.exe": - when: - bit: 64 os: windows @@ -133568,12 +133958,12 @@ Dead Hand Drive: installDir: Dead Hand Drive: {} launch: - /DHDPC_MAC.app/Contents/MacOS/DHDPC_MAC: + "/DHDPC_MAC.app/Contents/MacOS/DHDPC_MAC": - when: - bit: 64 os: mac store: steam - /DHDPC_Windows.exe: + "/DHDPC_Windows.exe": - when: - bit: 64 os: windows @@ -133584,7 +133974,7 @@ Dead Horde: installDir: DeadHorde: {} launch: - /deadhorde.exe: + "/deadhorde.exe": - when: - store: steam steam: @@ -133593,20 +133983,20 @@ Dead Horizon: installDir: Dead Horizon: {} launch: - /DeadHorizon.app: + "/DeadHorizon.app": - when: - os: mac store: steam - /DeadHorizon.exe: + "/DeadHorizon.exe": - when: - os: windows store: steam - /DeadHorizon.x86: + "/DeadHorizon.x86": - when: - bit: 32 os: linux store: steam - /DeadHorizon.x86_64: + "/DeadHorizon.x86_64": - when: - bit: 64 os: linux @@ -133622,7 +134012,7 @@ Dead Hungry Diner: installDir: DeadHungryDiner: {} launch: - /DHDSteam.exe: + "/DHDSteam.exe": - when: - store: steam steam: @@ -133635,17 +134025,17 @@ Dead Inside: id: 554900 Dead Island: files: - /DI/out/Settings: + "/DI/out/Settings": tags: - config when: - os: linux - /userdata//91310/remote/out: + "/userdata//91310/remote/out": tags: - save when: - store: steam - /DeadIsland/out/Settings: + "/DeadIsland/out/Settings": tags: - config when: @@ -133653,15 +134043,15 @@ Dead Island: installDir: Dead Island: {} launch: - /Dead Island.app: + "/Dead Island.app": - when: - os: mac store: steam - /DeadIslandGame: + "/DeadIslandGame": - when: - os: linux store: steam - /DeadIslandGame.exe: + "/DeadIslandGame.exe": - when: - os: windows store: steam @@ -133669,31 +134059,31 @@ Dead Island: id: 91310 Dead Island 2: files: - /DeadIsland/Saved/Config/WindowsNoEditor: + "/DeadIsland/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /DeadIsland/Saved/SaveGames: + "/DeadIsland/Saved/SaveGames": tags: - save when: - os: windows steam: id: 268150 -'Dead Island: Definitive Edition': +"Dead Island: Definitive Edition": files: - /DI/out/Settings: + "/DI/out/Settings": tags: - config when: - os: linux - /userdata//383150/remote/out: + "/userdata//383150/remote/out": tags: - save when: - store: steam - /DeadIslandDE/out/settings: + "/DeadIslandDE/out/settings": tags: - config when: @@ -133701,21 +134091,21 @@ Dead Island 2: installDir: DIDE: {} launch: - /DeadIslandGame: + "/DeadIslandGame": - when: - bit: 64 os: linux store: steam - /DeadIslandGame.exe: + "/DeadIslandGame.exe": - when: - bit: 64 os: windows store: steam steam: id: 383150 -'Dead Island: Epidemic': +"Dead Island: Epidemic": files: - /userdata//222900/remote: + "/userdata//222900/remote": tags: - save when: @@ -133724,34 +134114,34 @@ Dead Island 2: installDir: Dead Island Epidemic: {} launch: - /Dead Island Epidemic - Launcher.exe: + "/Dead Island Epidemic - Launcher.exe": - when: - os: windows store: steam registry: - 'HKEY_CURRENT_USER/Software/Deep Silver/Dead Island: Epidemic': + "HKEY_CURRENT_USER/Software/Deep Silver/Dead Island: Epidemic": tags: - config steam: id: 222900 -'Dead Island: Retro Revenge': +"Dead Island: Retro Revenge": installDir: Dead Island Retro Revenge: {} launch: - /DeadIslandRetroRevenge.exe: + "/DeadIslandRetroRevenge.exe": - when: - os: windows store: steam steam: id: 337360 -'Dead Island: Riptide': +"Dead Island: Riptide": files: - /userdata//91310/remote/out/save: + "/userdata//91310/remote/out/save": tags: - save when: - store: steam - /Riptide/out/Settings: + "/Riptide/out/Settings": tags: - config when: @@ -133759,25 +134149,25 @@ Dead Island 2: installDir: diriptide: {} launch: - /DeadIslandGame_x86_rwdi.exe: + "/DeadIslandGame_x86_rwdi.exe": - when: - os: windows store: steam steam: id: 216250 -'Dead Island: Riptide Definitive Edition': +"Dead Island: Riptide Definitive Edition": files: - /DIR/out/Settings: + "/DIR/out/Settings": tags: - config when: - os: linux - /userdata//383150/remote/out/save: + "/userdata//383150/remote/out/save": tags: - save when: - store: steam - /DeadIslandRiptideDE/out/settings: + "/DeadIslandRiptideDE/out/settings": tags: - config when: @@ -133785,12 +134175,12 @@ Dead Island 2: installDir: DIRDE: {} launch: - /DeadIslandRiptideGame: + "/DeadIslandRiptideGame": - when: - bit: 64 os: linux store: steam - /DeadIslandRiptideGame.exe: + "/DeadIslandRiptideGame.exe": - when: - bit: 64 os: windows @@ -133802,27 +134192,27 @@ Dead Line: Dead line: {} steam: id: 679480 -'Dead Link: Pages Torn': +"Dead Link: Pages Torn": installDir: Dead Link Pages Torn: {} launch: - /dlpt.app: + "/dlpt.app": - when: - os: mac store: steam - /dlpt.exe: + "/dlpt.exe": - when: - os: windows store: steam - /dlpt.x86_64: + "/dlpt.x86_64": - when: - os: linux store: steam steam: id: 740070 -Dead Man's Draw: +"Dead Man's Draw": files: - /deadmansdraw/savedata.json: + "/deadmansdraw/savedata.json": tags: - save when: @@ -133830,32 +134220,32 @@ Dead Man's Draw: installDir: Dead Mans Draw: {} launch: - /DeadMansDraw.exe: + "/DeadMansDraw.exe": - when: - os: windows store: steam steam: id: 262450 -Dead Man's Hand: +"Dead Man's Hand": files: - /Saves/SaveDMH: + "/Saves/SaveDMH": tags: - save when: - os: windows - /System/*.ini: + "/System/*.ini": tags: - config when: - os: windows -Dead Man's Trail: +"Dead Man's Trail": steam: id: 691210 Dead Mayhem: installDir: Dead Mayhem: {} launch: - /DeadMayhem.exe: + "/DeadMayhem.exe": - when: - os: windows store: steam @@ -133865,29 +134255,29 @@ Dead Maze: installDir: Dead Maze: {} launch: - /DeadMaze: + "/DeadMaze": - when: - os: linux store: steam - /DeadMaze.app: + "/DeadMaze.app": - when: - os: mac store: steam - /DeadMaze.exe: + "/DeadMaze.exe": - when: - os: windows store: steam steam: id: 667890 -'Dead Mist: Last Stand': +"Dead Mist: Last Stand": installDir: Dead Mist: {} launch: - /DeadMist.app/Contents/MacOS/DeadMist: + "/DeadMist.app/Contents/MacOS/DeadMist": - when: - os: mac store: steam - /DeadMist.exe: + "/DeadMist.exe": - when: - os: windows store: steam @@ -133895,7 +134285,7 @@ Dead Maze: id: 766500 Dead Monarchy: files: - /AppData/LocalLow/Dead Monarchy Studios/Dead Monarchy: + "/AppData/LocalLow/Dead Monarchy Studios/Dead Monarchy": tags: - save when: @@ -133903,23 +134293,23 @@ Dead Monarchy: installDir: Dead Monarchy: {} launch: - /Dead Monarchy.exe: + "/Dead Monarchy.exe": - when: - bit: 64 os: windows store: steam steam: id: 1037940 -'Dead Moon: Revenge on Phobos': +"Dead Moon: Revenge on Phobos": installDir: Dead Moon - Revenge on Phobos: {} steam: id: 668840 -Dead Mountaineer's Hotel: +"Dead Mountaineer's Hotel": installDir: - Dead Mountaineer's Hotel: {} + "Dead Mountaineer's Hotel": {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: @@ -133928,7 +134318,7 @@ Dead Noir the Heart: installDir: Dead Noir the Heart: {} launch: - /DeadNoir.exe: + "/DeadNoir.exe": - when: - os: windows store: steam @@ -133936,7 +134326,7 @@ Dead Noir the Heart: id: 718920 Dead Pixels: files: - /SavedGames/Dead Pixels/Dead Pixels: + "/SavedGames/Dead Pixels/Dead Pixels": tags: - config - save @@ -133945,7 +134335,7 @@ Dead Pixels: installDir: deadpixels: {} launch: - /Dead Pixels Launcher.exe: + "/Dead Pixels Launcher.exe": - when: - store: steam steam: @@ -133958,11 +134348,11 @@ Dead Prison: DeadPrison: {} steam: id: 923820 -'Dead Purge: Outbreak': +"Dead Purge: Outbreak": installDir: DeadPurgeOutbreak: {} launch: - /DeadPurgeOutbreak.exe: + "/DeadPurgeOutbreak.exe": - when: - os: windows store: steam @@ -133972,7 +134362,7 @@ Dead Quest: installDir: Dead Quest: {} launch: - /Dead Quest.exe: + "/Dead Quest.exe": - when: - os: windows store: steam @@ -133982,7 +134372,7 @@ Dead Rain - New Zombie Virus: installDir: DeadRain - New Zombie Virus: {} launch: - /Dead Rain.exe: + "/Dead Rain.exe": - when: - bit: 64 os: windows @@ -133993,45 +134383,45 @@ Dead Realm: installDir: DeadRealm: {} launch: - /DeadRealm.app: + "/DeadRealm.app": - when: - os: mac store: steam - /DeadRealm.exe: + "/DeadRealm.exe": - when: - os: windows store: steam steam: id: 352460 -'Dead Reckoning: Brassfield Manor': +"Dead Reckoning: Brassfield Manor": installDir: - Dead Reckoning Brassfield Manor Collector's Edition: {} + "Dead Reckoning Brassfield Manor Collector's Edition": {} launch: - /DRBM_CE.exe: + "/DRBM_CE.exe": - when: - os: windows store: steam steam: id: 695990 -'Dead Reckoning: Silvermoon Isle': +"Dead Reckoning: Silvermoon Isle": installDir: - Dead Reckoning Silvermoon Isle Collector's Edition: {} + "Dead Reckoning Silvermoon Isle Collector's Edition": {} launch: - /DeadReckoning_SilvermoonIsleCE.exe: + "/DeadReckoning_SilvermoonIsleCE.exe": - when: - os: windows store: steam - /Dead_Reckoning_Silvermoon_Isle_CE_mac.app/Contents/MacOS/MacGameCLauncher: + "/Dead_Reckoning_Silvermoon_Isle_CE_mac.app/Contents/MacOS/MacGameCLauncher": - when: - os: mac store: steam steam: id: 586690 -'Dead Reckoning: The Crescent Case': +"Dead Reckoning: The Crescent Case": installDir: - Dead Reckoning The Crescent Case Collector's Edition: {} + "Dead Reckoning The Crescent Case Collector's Edition": {} launch: - /DeadReckoning_TheCrescentCase_CE.exe: + "/DeadReckoning_TheCrescentCase_CE.exe": - when: - os: windows store: steam @@ -134039,12 +134429,12 @@ Dead Realm: id: 815560 Dead Reefs: files: - /Save: + "/Save": tags: - save when: - os: windows - /engine.ini: + "/engine.ini": tags: - config when: @@ -134055,18 +134445,18 @@ Dead Reefs: - config Dead Rising: files: - /userdata//427190/remote: + "/userdata//427190/remote": tags: - save when: - os: windows store: steam - /capcom/DEAD RISING/config.ini: + "/capcom/DEAD RISING/config.ini": tags: - config when: - os: windows - /capcom/DEAD RISING/controller_mapping.ini: + "/capcom/DEAD RISING/controller_mapping.ini": tags: - config when: @@ -134074,7 +134464,7 @@ Dead Rising: installDir: Dead Rising: {} launch: - /DeadRising.exe: + "/DeadRising.exe": - when: - bit: 64 os: windows @@ -134083,17 +134473,17 @@ Dead Rising: id: 427190 Dead Rising 2: files: - /userdata//45740/remote: + "/userdata//45740/remote": tags: - save when: - store: steam - /My Games/Dead Rising 2/rendersettings.ini: + "/My Games/Dead Rising 2/rendersettings.ini": tags: - config when: - os: windows - /My Games/Dead Rising 2/saves: + "/My Games/Dead Rising 2/saves": tags: - save when: @@ -134101,19 +134491,19 @@ Dead Rising 2: installDir: Dead Rising 2: {} launch: - /deadrising2.exe: + "/deadrising2.exe": - when: - store: steam steam: id: 45740 -'Dead Rising 2: Off the Record': +"Dead Rising 2: Off the Record": files: - /My Games/Dead Rising 2 Off The Record: + "/My Games/Dead Rising 2 Off The Record": tags: - config when: - os: windows - /My Games/Dead Rising 2 Off The Record/saves: + "/My Games/Dead Rising 2 Off The Record/saves": tags: - save when: @@ -134121,56 +134511,58 @@ Dead Rising 2: installDir: Dead Rising 2 Off the Record: {} launch: - /deadrising2otr.exe: + "/deadrising2otr.exe": - when: - store: steam steam: id: 45770 Dead Rising 3: files: - /My Games/Dead Rising 3: + "/My Games/Dead Rising 3": tags: - config when: - os: windows - /My Games/Dead Rising 3/saves: + "/My Games/Dead Rising 3/saves": tags: - save when: - os: windows id: steamExtra: + - 274110 - 274111 - 274112 - 278140 - - 274110 installDir: deadrising3: {} launch: - /deadrising3.exe: + "/deadrising3.exe": - when: - store: steam steam: id: 265550 Dead Rising 4: files: - /My Games/Dead Rising 4/rendersettings.ini: + "/My Games/Dead Rising 4/rendersettings.ini": tags: - config when: - - store: steam - /My Games/Dead Rising 4/saves: + - os: windows + store: steam + "/My Games/Dead Rising 4/saves": tags: - save when: - - store: steam - /Packages/3F65914F.SwaggerPC_rdarpxrtkxb3r/LocalState/rendersettings.ini: + - os: windows + store: steam + "/Packages/3F65914F.SwaggerPC_rdarpxrtkxb3r/LocalState/rendersettings.ini": tags: - config when: - os: windows store: microsoft - /Packages/3F65914F.SwaggerPC_rdarpxrtkxb3r/SystemAppData/wgs/: + "/Packages/3F65914F.SwaggerPC_rdarpxrtkxb3r/SystemAppData/wgs/": tags: - save when: @@ -134179,7 +134571,7 @@ Dead Rising 4: installDir: DeadRising4: {} launch: - /deadrising4.exe: + "/deadrising4.exe": - when: - bit: 64 os: windows @@ -134190,7 +134582,7 @@ Dead Russia Co-op: installDir: DeadRussia: {} launch: - /DeadRussia.exe: + "/DeadRussia.exe": - when: - os: windows store: steam @@ -134200,7 +134592,7 @@ Dead Sea: installDir: Dead Sea: {} launch: - /WindowsNoEditor/EasySurvivalRPGv2_5.exe: + "/WindowsNoEditor/EasySurvivalRPGv2_5.exe": - when: - bit: 64 os: windows @@ -134209,7 +134601,7 @@ Dead Sea: id: 350220 Dead Secret: files: - /AppData/LocalLow/Robot Invader/Dead Secret: + "/AppData/LocalLow/Robot Invader/Dead Secret": tags: - save when: @@ -134217,11 +134609,11 @@ Dead Secret: installDir: Dead Secret: {} launch: - /Dead Secret.app/Contents/MacOS/Dead Secret: + "/Dead Secret.app/Contents/MacOS/Dead Secret": - when: - os: mac store: steam - /Dead Secret.exe: + "/Dead Secret.exe": - when: - bit: 64 os: windows @@ -134232,11 +134624,11 @@ Dead Secret Circle: installDir: Dead Secret Circle: {} launch: - /ds2.app/Contents/MacOS/ds2: + "/ds2.app/Contents/MacOS/ds2": - when: - os: mac store: steam - /ds2.exe: + "/ds2.exe": - when: - bit: 64 os: windows @@ -134247,7 +134639,7 @@ Dead Shot Heroes: installDir: Dead Shot Heroes: {} launch: - /dsh.app/Contents/MacOS/dsh: + "/dsh.app/Contents/MacOS/dsh": - when: - os: mac store: steam @@ -134257,7 +134649,7 @@ Dead Simple 21: installDir: Dead Simple 21: {} launch: - /Dead Simple 21.exe: + "/Dead Simple 21.exe": - when: - os: windows store: steam @@ -134267,19 +134659,19 @@ Dead Sky: installDir: DeadSky: {} launch: - /DeadSky: + "/DeadSky": - when: - os: linux store: steam - /DeadSky.app: + "/DeadSky.app": - when: - os: mac store: steam - /DeadSky.exe: + "/DeadSky.exe": - when: - os: windows store: steam - - arguments: '-force-d3d9' + - arguments: "-force-d3d9" when: - os: windows store: steam @@ -134287,12 +134679,12 @@ Dead Sky: id: 259700 Dead Space: files: - /Electronic Arts/Dead Space: + "/Electronic Arts/Dead Space": tags: - save when: - os: windows - /Electronic Arts/Dead Space/settings.txt: + "/Electronic Arts/Dead Space/settings.txt": tags: - config when: @@ -134302,41 +134694,42 @@ Dead Space: installDir: Dead Space: {} launch: - /Dead Space.exe: + "/Dead Space.exe": - when: - store: steam - /Support/EA Help/Electronic_Arts_Technical_Support.htm: + "/Support/EA Help/Electronic_Arts_Technical_Support.htm": - when: - store: steam steam: id: 17470 Dead Space (2023): files: - /Dead Space (2023)/settings/steam: + "/Dead Space (2023)/settings/steam": tags: - config - save when: - - store: steam + - os: windows + store: steam id: steamExtra: - 2164210 installDir: Dead Space (2023): {} launch: - /Dead Space.exe: + "/Dead Space.exe": - when: - store: steam steam: id: 1693980 Dead Space 2: files: - /EA Games/Dead Space 2: + "/EA Games/Dead Space 2": tags: - save when: - os: windows - /EA Games/Dead Space 2/settings.txt: + "/EA Games/Dead Space 2/settings.txt": tags: - config when: @@ -134344,22 +134737,22 @@ Dead Space 2: installDir: Dead Space 2: {} launch: - /Support/EA Help/Electronic_Arts_Technical_Support.htm: + "/Support/EA Help/Electronic_Arts_Technical_Support.htm": - when: - store: steam - /deadspace2.exe: + "/deadspace2.exe": - when: - store: steam steam: id: 47780 Dead Space 3: files: - /EA Games/Dead Space 3: + "/EA Games/Dead Space 3": tags: - save when: - os: windows - /EA Games/Dead Space 3: + "/EA Games/Dead Space 3": tags: - config when: @@ -134372,7 +134765,7 @@ Dead Spawn: installDir: Dead Spawn: {} launch: - /Dead Spawn.exe: + "/Dead Spawn.exe": - when: - os: windows store: steam @@ -134382,10 +134775,8 @@ Dead Star: installDir: DeadStar: {} launch: - /Bin64/DeadStar.exe: - - arguments: >- - -i $/needle/loaders/startup.sgpr -l $/needle/ui/loadingscreen/scripts/initial_loading_screen.sgpr -d - $/needle_win.bpdeps -vc network_ServerAddress=\"auto\" -vc inputRequiresAppFocus=true + "/Bin64/DeadStar.exe": + - arguments: "-i $/needle/loaders/startup.sgpr -l $/needle/ui/loadingscreen/scripts/initial_loading_screen.sgpr -d $/needle_win.bpdeps -vc network_ServerAddress=\\\"auto\\\" -vc inputRequiresAppFocus=true" when: - bit: 64 os: windows @@ -134394,7 +134785,7 @@ Dead Star: id: 366400 Dead State: files: - /My Games/Dead State: + "/My Games/Dead State": tags: - config - save @@ -134405,7 +134796,7 @@ Dead State: installDir: Dead State: {} launch: - /ZRPG.exe: + "/ZRPG.exe": - when: - store: steam steam: @@ -134417,15 +134808,15 @@ Dead Stop: installDir: Dead Stop: {} launch: - /deadstop.exe: + "/deadstop.exe": - when: - os: windows store: steam steam: id: 408860 -'Dead Synchronicity: The Longest Night': +"Dead Synchronicity: The Longest Night": files: - /save: + "/save": tags: - config - save @@ -134437,54 +134828,54 @@ Dead Stop: installDir: Dead Synchronicity Tomorrow Comes Today: {} launch: - /Dead Synchronicity.app: + "/Dead Synchronicity.app": - when: - os: mac store: steam - /Dead Synchronicity.exe: + "/Dead Synchronicity.exe": - when: - os: windows store: steam - /Dead Synchronicity.x86: + "/Dead Synchronicity.x86": - when: - bit: 32 os: linux store: steam - /Dead Synchronicity.x86_64: + "/Dead Synchronicity.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 339190 -'Dead Synchronicity: Tomorrow Comes Today': +"Dead Synchronicity: Tomorrow Comes Today": files: - /.local/share/Daedalic Entertainment GmbH/Dead Synchronicity: + "/.local/share/Daedalic Entertainment GmbH/Dead Synchronicity": tags: - config when: - os: linux - /.local/share/Daedalic Entertainment GmbH/Dead Synchronicity/Savegames: + "/.local/share/Daedalic Entertainment GmbH/Dead Synchronicity/Savegames": tags: - save when: - os: linux - /Library/Application Support/Daedalic Entertainment GmbH/Dead Synchronicity: + "/Library/Application Support/Daedalic Entertainment GmbH/Dead Synchronicity": tags: - config when: - os: mac - /Library/Application Support/Daedalic Entertainment GmbH/Dead Synchronicity/Savegames: + "/Library/Application Support/Daedalic Entertainment GmbH/Dead Synchronicity/Savegames": tags: - save when: - os: mac - /Daedalic Entertainment GmbH/Dead Synchronicity: + "/Daedalic Entertainment GmbH/Dead Synchronicity": tags: - config when: - os: windows - /Daedalic Entertainment GmbH/Dead Synchronicity/Savegames: + "/Daedalic Entertainment GmbH/Dead Synchronicity/Savegames": tags: - save when: @@ -134494,27 +134885,27 @@ Dead Stop: installDir: Dead Synchronicity Tomorrow Comes Today: {} launch: - /Dead Synchronicity.app: + "/Dead Synchronicity.app": - when: - os: mac store: steam - /Dead Synchronicity.exe: + "/Dead Synchronicity.exe": - when: - os: windows store: steam - /Dead Synchronicity.x86: + "/Dead Synchronicity.x86": - when: - bit: 32 os: linux store: steam - /Dead Synchronicity.x86_64: + "/Dead Synchronicity.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 339190 -'Dead Target VR: Zombie Intensified': +"Dead Target VR: Zombie Intensified": installDir: DEAD TARGET VR: {} steam: @@ -134523,15 +134914,15 @@ Dead TrailZ: installDir: Dead TrailZ: {} launch: - /Dead TrailZ.App: + "/Dead TrailZ.App": - when: - os: mac store: steam - /Dead TrailZ.exe: + "/Dead TrailZ.exe": - when: - os: windows store: steam - /DeadTrailZ.x86: + "/DeadTrailZ.x86": - when: - os: linux store: steam @@ -134541,7 +134932,7 @@ Dead Tropics: installDir: Deadly Tropics: {} launch: - /Zombies.exe: + "/Zombies.exe": - when: - store: steam steam: @@ -134550,11 +134941,11 @@ Dead Wishes: installDir: Dead Wishes: {} launch: - /DeadWishes.app: + "/DeadWishes.app": - when: - os: mac store: steam - /DeadWishes.exe: + "/DeadWishes.exe": - when: - os: windows store: steam @@ -134562,54 +134953,55 @@ Dead Wishes: id: 1010970 Dead by Daylight: files: - /DeadByDaylight/Saved/Config/EGS: + "/DeadByDaylight/Saved/Config/EGS": tags: - config when: - - store: epic - /DeadByDaylight/Saved/Config/WinGDK: + - os: windows + "/DeadByDaylight/Saved/Config/WinGDK": tags: - config when: - os: windows store: microsoft - /DeadByDaylight/Saved/Config/WindowsClient: + "/DeadByDaylight/Saved/Config/WindowsClient": tags: - config when: - - store: steam + - os: windows + store: steam id: steamExtra: - 492140 - - 1408020 - - 1324970 - - 1251000 - - 1199880 - - 1135280 - - 1089270 - - 1009821 + - 509060 + - 530710 - 530711 + - 554380 + - 554381 + - 573940 + - 577901 + - 582600 + - 627510 + - 661770 + - 700280 - 700282 - 750381 - - 700280 - - 1009820 + - 799200 - 925750 - 971790 - - 799200 - - 582600 - - 554381 - - 661770 - - 509060 - - 573940 - - 627510 - - 530710 - - 554380 - - 577901 + - 1009820 + - 1009821 + - 1089270 + - 1135280 + - 1199880 + - 1251000 + - 1324970 + - 1408020 - 2198470 installDir: Dead by Daylight: {} launch: - /DeadByDaylight.exe: + "/DeadByDaylight.exe": - when: - bit: 64 os: windows @@ -134620,18 +135012,18 @@ Dead by Death: installDir: Dead by Death: {} launch: - /deadbydeathfinal64.exe: + "/deadbydeathfinal64.exe": - when: - bit: 64 os: windows store: steam steam: id: 663290 -'Dead by Wheel: Battle Royal': +"Dead by Wheel: Battle Royal": installDir: DBW Battle Royal: {} launch: - /DBW Battle Royal/DBW Battle Royal.exe: + "/DBW Battle Royal/DBW Battle Royal.exe": - when: - os: windows store: steam @@ -134642,7 +135034,7 @@ Dead file.exe: id: 679650 Dead in Bermuda: files: - /AppData/LocalLow/CCCP/Dead In Bermuda: + "/AppData/LocalLow/CCCP/Dead In Bermuda": tags: - save when: @@ -134650,11 +135042,11 @@ Dead in Bermuda: installDir: Dead In Bermuda: {} launch: - /Dead In Bermuda.app: + "/Dead In Bermuda.app": - when: - os: mac store: steam - /Dead In Bermuda.exe: + "/Dead In Bermuda.exe": - when: - os: windows store: steam @@ -134662,12 +135054,12 @@ Dead in Bermuda: id: 384310 Dead in Vinland: files: - /AppData/LocalLow/CCCP/Dead In Vinland: + "/AppData/LocalLow/CCCP/Dead In Vinland": tags: - save when: - os: windows - /Library/Application Support/unity.CCCP.Dead In Vinland: + "/Library/Application Support/unity.CCCP.Dead In Vinland": tags: - save when: @@ -134677,20 +135069,20 @@ Dead in Vinland: installDir: Dead In Vinland: {} launch: - /Dead In Vinland.app: + "/Dead In Vinland.app": - when: - os: mac store: steam - /Dead In Vinland.exe: + "/Dead In Vinland.exe": - when: - os: windows store: steam - /Dead In Vinland.x86: + "/Dead In Vinland.x86": - when: - bit: 32 os: linux store: steam - /Dead In Vinland.x86_64: + "/Dead In Vinland.x86_64": - when: - bit: 64 os: linux @@ -134705,7 +135097,7 @@ Dead in time: installDir: Dead in time: {} launch: - /DeadInTime.exe: + "/DeadInTime.exe": - when: - os: windows store: steam @@ -134715,7 +135107,7 @@ Dead of Night: installDir: Dead of Night: {} launch: - /Dead of Night.exe: + "/Dead of Night.exe": - when: - os: windows store: steam @@ -134723,7 +135115,7 @@ Dead of Night: id: 656630 Dead or Alive 5 Last Round: files: - /KoeiTecmo/DOA5LR: + "/KoeiTecmo/DOA5LR": tags: - config - save @@ -134732,13 +135124,13 @@ Dead or Alive 5 Last Round: installDir: Dead or Alive 5 Last Round: {} launch: - /game.exe: - - arguments: \"%USERPROFILE%\\Documents\\KoeiTecmo\\DOA5LR\\DOA5LR.ini\" + "/game.exe": + - arguments: "\\\"%USERPROFILE%\\\\Documents\\\\KoeiTecmo\\\\DOA5LR\\\\DOA5LR.ini\\\"" when: - os: windows store: steam - /startup_setting.exe: - - arguments: \"%USERPROFILE%\\Documents\\KoeiTecmo\\DOA5LR\\DOA5LR.ini\" + "/startup_setting.exe": + - arguments: "\\\"%USERPROFILE%\\\\Documents\\\\KoeiTecmo\\\\DOA5LR\\\\DOA5LR.ini\\\"" when: - os: windows store: steam @@ -134746,7 +135138,7 @@ Dead or Alive 5 Last Round: id: 311730 Dead or Alive 6: files: - /KoeiTecmo/DEADORALIVE6: + "/KoeiTecmo/DEADORALIVE6": tags: - save when: @@ -134754,7 +135146,7 @@ Dead or Alive 6: installDir: Dead or Alive 6: {} launch: - /DOA6.exe: + "/DOA6.exe": - when: - bit: 64 os: windows @@ -134763,7 +135155,7 @@ Dead or Alive 6: id: 838380 Dead or Alive Xtreme Venus Vacation: files: - /DX11_global_data/savedata: + "/DX11_global_data/savedata": tags: - config when: @@ -134771,7 +135163,7 @@ Dead or Alive Xtreme Venus Vacation: installDir: DOAX-VenusVacation: {} launch: - /DOAX_VV_Launcher.exe: + "/DOAX_VV_Launcher.exe": - when: - bit: 64 os: windows @@ -134782,7 +135174,7 @@ Dead or School: installDir: Dead or School: {} launch: - /DeadOrSchool.exe: + "/DeadOrSchool.exe": - when: - os: windows store: steam @@ -134792,7 +135184,7 @@ Dead territory: installDir: Dead territory: {} launch: - /Dead territory.exe: + "/Dead territory.exe": - when: - os: windows store: steam @@ -134800,31 +135192,31 @@ Dead territory: id: 1197340 Dead to Rights: files: - /saves: + "/saves": tags: - save when: - os: windows - /settings.cfg: + "/settings.cfg": tags: - config when: - os: windows Dead to Rights II: files: - /pc.cfg: + "/pc.cfg": tags: - config when: - os: windows - /save: + "/save": tags: - save when: - os: windows Dead6hot: files: - /Stencyl/Deadshot022916: + "/Stencyl/Deadshot022916": tags: - config - save @@ -134833,11 +135225,11 @@ Dead6hot: installDir: Dead6hot: {} launch: - /Deadshot020516.app: + "/Deadshot020516.app": - when: - os: mac store: steam - /Deadshot022916.exe: + "/Deadshot022916.exe": - when: - os: windows store: steam @@ -134845,12 +135237,12 @@ Dead6hot: id: 438030 DeadCore: files: - //settings.save: + "//settings.save": tags: - config when: - os: windows - //story.save: + "//story.save": tags: - save when: @@ -134858,15 +135250,15 @@ DeadCore: installDir: DeadCore: {} launch: - /DeadCore.app: + "/DeadCore.app": - when: - os: mac store: steam - /DeadCore.exe: + "/DeadCore.exe": - when: - os: windows store: steam - /DeadCore.x86: + "/DeadCore.x86": - when: - os: linux store: steam @@ -134888,19 +135280,19 @@ DeadShotZ: installDir: DeadShotZ: {} launch: - /nw.exe: + "/nw.exe": - when: - bit: 64 os: windows store: steam steam: id: 1180110 -'DeadTruth: The Dark Path Ahead': +"DeadTruth: The Dark Path Ahead": installDir: DeadTruth The Dark Path Ahead: {} launch: - /DeadTruth - The Dark Path Ahead.exe: - - arguments: '-windowed' + "/DeadTruth - The Dark Path Ahead.exe": + - arguments: "-windowed" when: - bit: 64 os: windows @@ -134909,7 +135301,7 @@ DeadShotZ: id: 572170 Deadbeat Heroes: files: - /AppData/LocalLow/Deadbeat Productions/DeadbeatHeroes/: + "/AppData/LocalLow/Deadbeat Productions/DeadbeatHeroes/": tags: - save when: @@ -134917,7 +135309,7 @@ Deadbeat Heroes: installDir: DeadbeatHeroes: {} launch: - /DeadbeatHeroes.exe: + "/DeadbeatHeroes.exe": - when: - os: windows store: steam @@ -134929,27 +135321,27 @@ Deadbeat Heroes: id: 614090 Deadbolt: files: - /.config/deadbolt_game: + "/.config/deadbolt_game": tags: - save when: - os: linux - /.config/deadbolt_game/prefs.ini: + "/.config/deadbolt_game/prefs.ini": tags: - config when: - os: linux - /Library/Application Support/com.deadbolt.deadbolt: + "/Library/Application Support/com.deadbolt.deadbolt": tags: - save when: - os: mac - /deadbolt_game: + "/deadbolt_game": tags: - save when: - os: windows - /deadbolt_game/Prefs.ini: + "/deadbolt_game/Prefs.ini": tags: - config when: @@ -134959,15 +135351,15 @@ Deadbolt: installDir: DEADBOLT: {} launch: - /DEADBOLT.app: + "/DEADBOLT.app": - when: - os: mac store: steam - /deadbolt_game.exe: + "/deadbolt_game.exe": - when: - os: windows store: steam - /run.sh: + "/run.sh": - when: - os: linux store: steam @@ -134977,8 +135369,8 @@ Deadbreed: installDir: Deadbreed: {} launch: - /Deadbreed.exe: - - arguments: '-steam=1' + "/Deadbreed.exe": + - arguments: "-steam=1" when: - os: windows store: steam @@ -134991,17 +135383,17 @@ Deadeye Dungeon: id: 728220 Deadfall Adventures: files: - /userdata//231330: + "/userdata//231330": tags: - save when: - store: steam - /My Games/Deadfall Adventures/ADVGame/Config: + "/My Games/Deadfall Adventures/ADVGame/Config": tags: - config when: - os: windows - /Deadfall Adventures: + "/Deadfall Adventures": tags: - config when: @@ -135009,22 +135401,22 @@ Deadfall Adventures: installDir: Deadfall Adventures: {} launch: - /ADVGame.sh: + "/ADVGame.sh": - when: - os: linux store: steam - /Binaries/Win32/ADVGame-Win32-Shipping.exe: - - arguments: '-seekfreeloadingpcconsole -fullscreen' + "/Binaries/Win32/ADVGame-Win32-Shipping.exe": + - arguments: "-seekfreeloadingpcconsole -fullscreen" when: - os: windows store: steam - workingDir: /Binaries/Win32 - - arguments: '-seekfreeloadingpcconsole -windowed' + workingDir: "/Binaries/Win32" + - arguments: "-seekfreeloadingpcconsole -windowed" when: - os: windows store: steam - workingDir: /Binaries/Win32 - /view-release-notes.sh: + workingDir: "/Binaries/Win32" + "/view-release-notes.sh": - when: - os: linux store: steam @@ -135034,7 +135426,7 @@ Deadfall Tropics: installDir: Deadfall Tropics: {} launch: - /Deadfall Tropics.exe: + "/Deadfall Tropics.exe": - when: - os: windows store: steam @@ -135047,12 +135439,12 @@ Deadhold: installDir: Deadhold: {} launch: - /Deadhold.app: + "/Deadhold.app": - arguments: +login 54.161.183.23 when: - os: mac store: steam - /Deadhold.exe: + "/Deadhold.exe": - arguments: +login 54.161.183.23 when: - os: windows @@ -135063,7 +135455,7 @@ Deadhunt: installDir: Deadhunt: {} launch: - /Deadhunt.exe: + "/Deadhunt.exe": - when: - store: steam steam: @@ -135072,25 +135464,25 @@ Deadlands Noir - That Old Time Religion: installDir: That Old Time Religion: {} launch: - /That Old Time Religion.app: + "/That Old Time Religion.app": - when: - os: mac store: steam - /That Old Time Religion.exe: + "/That Old Time Religion.exe": - when: - os: windows store: steam - /That Old Time Religion.sh: + "/That Old Time Religion.sh": - when: - os: linux store: steam steam: id: 383670 -'Deadliest Catch: The Game': +"Deadliest Catch: The Game": installDir: Deadliest Catch The Game: {} launch: - /DeadliestCatch.exe: + "/DeadliestCatch.exe": - when: - bit: 64 os: windows @@ -135099,12 +135491,12 @@ Deadlands Noir - That Old Time Religion: id: 838630 Deadlight: files: - /My Games/Deadlight: + "/My Games/Deadlight": tags: - save when: - os: windows - /My Games/UnrealEngine3/LOTDGame/Config: + "/My Games/UnrealEngine3/LOTDGame/Config": tags: - config when: @@ -135112,25 +135504,25 @@ Deadlight: installDir: Deadlight: {} launch: - /Binaries/Win32/LOTDGame.exe: + "/Binaries/Win32/LOTDGame.exe": - when: - store: steam - workingDir: /Binaries + workingDir: "/Binaries" steam: id: 211400 -'Deadlight: Director''s Cut': +"Deadlight: Director's Cut": files: - /userdata//423950/remote: + "/userdata//423950/remote": tags: - save when: - store: steam - /My Games/UnrealEngine3/LOTDGame/Config: + "/My Games/UnrealEngine3/LOTDGame/Config": tags: - config when: - os: windows - /My Games/UnrealEngine3/LOTDGame/Save: + "/My Games/UnrealEngine3/LOTDGame/Save": tags: - save when: @@ -135140,7 +135532,7 @@ Deadlight: installDir: Deadlight Director’s Cut: {} launch: - /Binaries/Win64/LOTDGame.exe: + "/Binaries/Win64/LOTDGame.exe": - when: - bit: 64 os: windows @@ -135151,26 +135543,26 @@ Deadliners: installDir: Deadliners: {} launch: - /build/win32_deadliners.exe: + "/build/win32_deadliners.exe": - when: - bit: 64 os: windows store: steam steam: id: 671290 -'Deadlings: Rotten Edition': +"Deadlings: Rotten Edition": installDir: Deadlings - Rotten Edition: {} launch: - /Deadlings.app: + "/Deadlings.app": - when: - os: mac store: steam - /Deadlings.exe: + "/Deadlings.exe": - when: - os: windows store: steam - /Deadlings.x86: + "/Deadlings.x86": - when: - os: linux store: steam @@ -135178,12 +135570,12 @@ Deadliners: id: 320150 Deadlink: files: - /Deadlink/Saved/Config/WindowsNoEditor: + "/Deadlink/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /Deadlink/Saved/SavedGames: + "/Deadlink/Saved/SavedGames": tags: - save when: @@ -135191,7 +135583,7 @@ Deadlink: installDir: Deadlink: {} launch: - /Deadlink.exe: + "/Deadlink.exe": - when: - bit: 64 os: windows @@ -135203,9 +135595,9 @@ Deadlock: DEADLOCK: {} steam: id: 513790 -'Deadlock 2: Shrine Wars': +"Deadlock 2: Shrine Wars": files: - /DL2.PRF: + "/DL2.PRF": tags: - config when: @@ -135215,15 +135607,15 @@ Deadlock: installDir: Deadlock2: {} launch: - /DEADLOCK.EXE: + "/DEADLOCK.EXE": - when: - os: windows store: steam steam: id: 328450 -'Deadlock: Planetary Conquest': +"Deadlock: Planetary Conquest": files: - /*.sav: + "/*.sav": tags: - save when: @@ -135233,7 +135625,7 @@ Deadlock: installDir: Deadlock: {} launch: - /deadlock.exe: + "/deadlock.exe": - when: - os: windows store: steam @@ -135241,7 +135633,7 @@ Deadlock: id: 328440 Deadly 30: files: - /savedata: + "/savedata": tags: - save when: @@ -135249,15 +135641,15 @@ Deadly 30: installDir: Deadly30: {} launch: - /Deadly30: + "/Deadly30": - when: - os: linux store: steam - /Deadly30.app: + "/Deadly30.app": - when: - os: mac store: steam - /Deadly30.exe: + "/Deadly30.exe": - when: - os: windows store: steam @@ -135267,11 +135659,11 @@ Deadly Animal Duel: installDir: Deadly Animal Duel: {} launch: - /Deadly Animal Duel.app: + "/Deadly Animal Duel.app": - when: - os: mac store: steam - /Deadly Animal Duel.exe: + "/Deadly Animal Duel.exe": - when: - os: windows store: steam @@ -135281,7 +135673,7 @@ Deadly Blue: installDir: Deadly Blue: {} launch: - /Deadly Blue.exe: + "/Deadly Blue.exe": - when: - os: windows store: steam @@ -135291,8 +135683,8 @@ Deadly Burrito: installDir: Deadly Burrito: {} launch: - /AtomicPinata/Binaries/Win64/AtomicPinata-Win64-Shipping.exe: - - arguments: '-mode VR' + "/AtomicPinata/Binaries/Win64/AtomicPinata-Win64-Shipping.exe": + - arguments: "-mode VR" when: - bit: 64 os: windows @@ -135303,7 +135695,7 @@ Deadly Contact: installDir: Population One: {} launch: - /Deadly Contact.exe: + "/Deadly Contact.exe": - when: - store: steam steam: @@ -135317,33 +135709,33 @@ Deadly Curse: installDir: Deadly Curse: {} launch: - /Deadly Curse.app/Contents/MacOS/Deadly Curse: + "/Deadly Curse.app/Contents/MacOS/Deadly Curse": - when: - os: mac store: steam - /Deadly Curse.exe: + "/Deadly Curse.exe": - when: - os: windows store: steam - /Deadly Curse.x86_64: + "/Deadly Curse.x86_64": - when: - os: linux store: steam steam: id: 912020 -'Deadly Curse: Insane Nightmare': +"Deadly Curse: Insane Nightmare": installDir: Deadly Curse Insane Nightmare: {} launch: - /Deadly Curse Insane Nightmare.app/Contents/MacOS/Deadly Curse Insane Nightmare: + "/Deadly Curse Insane Nightmare.app/Contents/MacOS/Deadly Curse Insane Nightmare": - when: - os: mac store: steam - /Deadly Curse Insane Nightmare.exe: + "/Deadly Curse Insane Nightmare.exe": - when: - os: windows store: steam - /Deadly Curse Insane Nightmare.x86_64: + "/Deadly Curse Insane Nightmare.x86_64": - when: - os: linux store: steam @@ -135351,7 +135743,7 @@ Deadly Curse: id: 949510 Deadly Days: files: - /AppData/LocalLow/Pixelsplit/Deadly Days/ddsave: + "/AppData/LocalLow/Pixelsplit/Deadly Days/ddsave": tags: - save when: @@ -135361,15 +135753,15 @@ Deadly Days: installDir: Deadly Days: {} launch: - /Deadly Days.app: + "/Deadly Days.app": - when: - os: mac store: steam - /Deadly Days.exe: + "/Deadly Days.exe": - when: - os: windows store: steam - /Deadly Days.x86_64: + "/Deadly Days.x86_64": - when: - os: linux store: steam @@ -135383,28 +135775,28 @@ Deadly Delivery: installDir: Deadly Delivery: {} launch: - /WindowsNoEditor/Jumping/Binaries/Win32/Jumping-Win32-Shipping.exe: + "/WindowsNoEditor/Jumping/Binaries/Win32/Jumping-Win32-Shipping.exe": - when: - bit: 32 os: windows store: steam - workingDir: /WindowsNoEditor - /WindowsNoEditor/Jumping/Binaries/Win64/Jumping-Win64-Shipping.exe: + workingDir: "/WindowsNoEditor" + "/WindowsNoEditor/Jumping/Binaries/Win64/Jumping-Win64-Shipping.exe": - when: - bit: 64 os: windows store: steam - workingDir: /WindowsNoEditor + workingDir: "/WindowsNoEditor" steam: id: 819740 Deadly Dozen: files: - /*.cfg: + "/*.cfg": tags: - config when: - os: windows - /Saves: + "/Saves": tags: - save when: @@ -135414,7 +135806,7 @@ Deadly Dozen: installDir: Deadly Dozen: {} launch: - /WW2Game.exe: + "/WW2Game.exe": - when: - os: windows store: steam @@ -135422,7 +135814,7 @@ Deadly Dozen: id: 514080 Deadly Dozen Reloaded: files: - /My Games/Deadly Dozen Reloaded: + "/My Games/Deadly Dozen Reloaded": tags: - save when: @@ -135432,7 +135824,7 @@ Deadly Dozen Reloaded: installDir: Deadly Dozen Reloaded: {} launch: - /DeadlyDozenReloaded.exe: + "/DeadlyDozenReloaded.exe": - when: - bit: 64 os: windows @@ -135443,14 +135835,14 @@ Deadly Dozen Reloaded: - config steam: id: 1297430 -'Deadly Dozen: Pacific Theater': +"Deadly Dozen: Pacific Theater": files: - /*.cfg: + "/*.cfg": tags: - config when: - os: windows - /Saves: + "/Saves": tags: - save when: @@ -135460,7 +135852,7 @@ Deadly Dozen Reloaded: installDir: Deadly Dozen Pacific Theater: {} launch: - /DDozen2.exe: + "/DDozen2.exe": - when: - store: steam steam: @@ -135469,7 +135861,7 @@ Deadly Edge: installDir: Deadly Edge: {} launch: - /DeadlyEdge.exe: + "/DeadlyEdge.exe": - when: - store: steam steam: @@ -135478,20 +135870,20 @@ Deadly Escape: installDir: Deadly Escape: {} launch: - /DeadlyEscape.app/Contents/MacOS/DeadlyEscape: + "/DeadlyEscape.app/Contents/MacOS/DeadlyEscape": - when: - os: mac store: steam - /DeadlyEscape.exe: + "/DeadlyEscape.exe": - when: - os: windows store: steam - /DeadlyEscape.x86: + "/DeadlyEscape.x86": - when: - bit: 32 os: linux store: steam - /DeadlyEscape.x86_64: + "/DeadlyEscape.x86_64": - when: - bit: 64 os: linux @@ -135507,15 +135899,15 @@ Deadly Kingdom: installDir: Deadly Kingdom: {} launch: - /Deadly Kingdom.app/Contents/MacOS/Deadly Kingdom: + "/Deadly Kingdom.app/Contents/MacOS/Deadly Kingdom": - when: - os: mac store: steam - /Deadly Kingdom.exe: + "/Deadly Kingdom.exe": - when: - os: windows store: steam - /Deadly Kingdom.x86_64: + "/Deadly Kingdom.x86_64": - when: - os: linux store: steam @@ -135528,14 +135920,14 @@ Deadly Path: installDir: Deadly Path: {} launch: - /Deadly Path.exe: + "/Deadly Path.exe": - when: - store: steam steam: id: 1064480 -'Deadly Premonition 2: A Blessing in Disguise': +"Deadly Premonition 2: A Blessing in Disguise": files: - /AppData/Local/ToyBox Inc/DeadlyPremonition2/Saved/SaveGames//*.dat: + "/AppData/Local/ToyBox Inc/DeadlyPremonition2/Saved/SaveGames//*.dat": tags: - save when: @@ -135543,7 +135935,7 @@ Deadly Path: installDir: Deadly Premonition 2: {} launch: - /DeadlyPremonition2.exe: + "/DeadlyPremonition2.exe": - when: - os: windows store: steam @@ -135553,19 +135945,19 @@ Deadly Path: - config steam: id: 1271100 -'Deadly Premonition: The Director''s Cut': +"Deadly Premonition: The Director's Cut": files: - /config.cnf: + "/config.cnf": tags: - config when: - os: windows - /configJ.cnf: + "/configJ.cnf": tags: - config when: - os: windows - /savedata: + "/savedata": tags: - save when: @@ -135576,9 +135968,9 @@ Deadly Path: steamExtra: - 256240 installDir: - Deadly Premonition The Director's Cut: {} + "Deadly Premonition The Director's Cut": {} launch: - /DPLauncher.exe: + "/DPLauncher.exe": - when: - os: windows store: steam @@ -135596,7 +135988,7 @@ Deadly Runner: installDir: Deadly Runner: {} launch: - /Deadly Runner.exe: + "/Deadly Runner.exe": - when: - os: windows store: steam @@ -135606,15 +135998,15 @@ Deadly Silence: installDir: Deadly Silence: {} launch: - /Deadly Silence.app/Contents/MacOS/Deadly Silence: + "/Deadly Silence.app/Contents/MacOS/Deadly Silence": - when: - os: mac store: steam - /Deadly Silence.exe: + "/Deadly Silence.exe": - when: - os: windows store: steam - /Deadly Silence.x86_64: + "/Deadly Silence.x86_64": - when: - os: linux store: steam @@ -135624,7 +136016,7 @@ Deadly Sin: installDir: Deadly Sin: {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: @@ -135633,7 +136025,7 @@ Deadly Sin 2: installDir: Deadly Sin 2: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: @@ -135648,7 +136040,7 @@ Deadly Step: installDir: Deadly Step: {} launch: - /Deadly Step.exe: + "/Deadly Step.exe": - when: - os: windows store: steam @@ -135658,7 +136050,7 @@ Deadly Stigma: installDir: Deadly Stigma: {} launch: - /Action.exe: + "/Action.exe": - when: - os: windows store: steam @@ -135668,7 +136060,7 @@ Deadly Traps: installDir: Deadly Traps: {} launch: - /Deadly_Traps.exe: + "/Deadly_Traps.exe": - when: - os: windows store: steam @@ -135679,7 +136071,7 @@ Deadly Wheels: id: 914330 Deadnaut: files: - /AppData/LocalLow/Screwfly Studios/Deadnaut: + "/AppData/LocalLow/Screwfly Studios/Deadnaut": tags: - save when: @@ -135689,27 +136081,27 @@ Deadnaut: installDir: Deadnaut: {} launch: - /Deadnaut.app: + "/Deadnaut.app": - when: - os: mac store: steam - /Deadnaut.exe: + "/Deadnaut.exe": - when: - os: windows store: steam - /Manual.app: + "/Manual.app": - when: - os: mac store: steam - /deadnaut.sh: + "/deadnaut.sh": - when: - os: linux store: steam - /manual.bat: + "/manual.bat": - when: - os: windows store: steam - /manual.sh: + "/manual.sh": - when: - os: linux store: steam @@ -135719,24 +136111,24 @@ Deadnaut: - config steam: id: 337040 -'Deadnaut: Signal Lost': +"Deadnaut: Signal Lost": files: - /.config/unity3d/Screwfly Studios/Signal Lost/Game.Session.db: + "/.config/unity3d/Screwfly Studios/Signal Lost/Game.Session.db": tags: - save when: - os: linux - /.config/unity3d/Screwfly Studios/Signal Lost/Game.User.db: + "/.config/unity3d/Screwfly Studios/Signal Lost/Game.User.db": tags: - save when: - os: linux - /AppData/LocalLow/Screwfly Studios/Signal Lost/Game.Session.db: + "/AppData/LocalLow/Screwfly Studios/Signal Lost/Game.Session.db": tags: - save when: - os: windows - /AppData/LocalLow/Screwfly Studios/Signal Lost/Game.User.db: + "/AppData/LocalLow/Screwfly Studios/Signal Lost/Game.User.db": tags: - save when: @@ -135744,12 +136136,12 @@ Deadnaut: installDir: Deadnaut Signal Lost: {} launch: - /Screwfly Launcher: + "/Screwfly Launcher": - when: - bit: 64 os: linux store: steam - /Screwfly Launcher.exe: + "/Screwfly Launcher.exe": - when: - bit: 64 os: windows @@ -135763,12 +136155,12 @@ Deadness: id: 951570 Deadpool: files: - /TransGame/Config/PC/Cooked: + "/TransGame/Config/PC/Cooked": tags: - config when: - os: windows - /My Games/Deadpool/SaveData: + "/My Games/Deadpool/SaveData": tags: - save when: @@ -135776,7 +136168,7 @@ Deadpool: installDir: Deadpool: {} launch: - /Binaries/DP.exe: + "/Binaries/DP.exe": - when: - store: steam registry: @@ -135789,7 +136181,7 @@ Deadrinds: installDir: Last Rose: {} launch: - /Last Rose.exe: + "/Last Rose.exe": - when: - bit: 64 os: windows @@ -135798,7 +136190,7 @@ Deadrinds: id: 758440 Deadside: files: - /Deadside/Saved/Config/WindowsNoEditor: + "/Deadside/Saved/Config/WindowsNoEditor": tags: - config when: @@ -135806,7 +136198,7 @@ Deadside: installDir: Deadside: {} launch: - /Deadside.exe: + "/Deadside.exe": - when: - store: steam steam: @@ -135815,16 +136207,16 @@ Deadsiege: installDir: Deadsiege: {} launch: - /Deadsiege.app: + "/Deadsiege.app": - when: - os: mac store: steam - /Deadsiege.exe: + "/Deadsiege.exe": - when: - bit: 64 os: windows store: steam - /Deadsiege.sh: + "/Deadsiege.sh": - when: - bit: 64 os: linux @@ -135833,7 +136225,7 @@ Deadsiege: id: 948470 Deadstep: files: - /Deadstep/Saved: + "/Deadstep/Saved": tags: - save when: @@ -135841,7 +136233,7 @@ Deadstep: installDir: Deadstep: {} launch: - /Deadstep.exe: + "/Deadstep.exe": - when: - os: windows store: steam @@ -135854,15 +136246,15 @@ Deadstone: installDir: Deadstone: {} launch: - /DeadStone.exe: + "/DeadStone.exe": - when: - os: windows store: steam - /Deadstone.app: + "/Deadstone.app": - when: - os: mac store: steam - /Deadstone.x86_64: + "/Deadstone.x86_64": - when: - bit: 64 os: linux @@ -135873,24 +136265,24 @@ Deadtime Defenders: installDir: Deadtime_Defenders: {} launch: - /DeadtimeDefenders.app: + "/DeadtimeDefenders.app": - when: - os: mac store: steam - /DeadtimeDefenders.exe: + "/DeadtimeDefenders.exe": - when: - os: windows store: steam steam: id: 1148700 -'Deadwar: Old Lies': +"Deadwar: Old Lies": steam: id: 728450 Deadwater Saloon: installDir: Deadwater Saloon: {} launch: - /Deadwater Saloon.exe: + "/Deadwater Saloon.exe": - when: - os: windows store: steam @@ -135900,21 +136292,21 @@ Deadweight: installDir: Deadweight: {} launch: - /Deadweight.app: + "/Deadweight.app": - when: - os: mac store: steam - /Deadweight.exe: + "/Deadweight.exe": - when: - os: windows store: steam steam: id: 385350 -Dealer's Life: +"Dealer's Life": installDir: DealersLife: {} launch: - /Dealer's Life.exe: + "/Dealer's Life.exe": - when: - bit: 64 os: windows @@ -135930,7 +136322,7 @@ Dean Daimon: installDir: Dean Daimon: {} launch: - /win32/DeanDaimon.exe: + "/win32/DeanDaimon.exe": - when: - os: windows store: steam @@ -135940,12 +136332,15 @@ Dear Apothecary: installDir: Dear Apothecary: {} launch: - /DearApothecary.exe: + "/DearApothecary.exe": - when: - bit: 32 os: windows store: steam - /DearApothecary.sh: + - bit: 64 + os: windows + store: steam + "/DearApothecary.sh": - when: - os: linux store: steam @@ -135955,7 +136350,7 @@ Dear Ashely: installDir: DearAshely: {} launch: - /ToMyDearJO.exe: + "/ToMyDearJO.exe": - when: - bit: 64 os: windows @@ -135964,24 +136359,24 @@ Dear Ashely: id: 1068900 Dear Camy: files: - /Options.dat: + "/Options.dat": tags: - config when: - os: windows Dear Esther: files: - /dearesther/SAVE: + "/dearesther/SAVE": tags: - save when: - os: windows - /dearesther/cfg: + "/dearesther/cfg": tags: - config when: - os: windows - /dearesther: + "/dearesther": tags: - config - save @@ -135990,20 +136385,20 @@ Dear Esther: installDir: Dear Esther: {} launch: - /dearesther.exe: + "/dearesther.exe": - when: - os: windows store: steam - /dearesther_osx.sh: - - arguments: '-game dearesther -steam' + "/dearesther_osx.sh": + - arguments: "-game dearesther -steam" when: - os: mac store: steam steam: id: 203810 -'Dear Esther: Landmark Edition': +"Dear Esther: Landmark Edition": files: - /userdata//520720/remote/playerprefs.dat: + "/userdata//520720/remote/playerprefs.dat": tags: - save when: @@ -136013,11 +136408,11 @@ Dear Esther: installDir: Dear Esther Landmark Edition: {} launch: - /DearEsther.app: + "/DearEsther.app": - when: - os: mac store: steam - /DearEsther.exe: + "/DearEsther.exe": - when: - os: windows store: steam @@ -136031,7 +136426,7 @@ Dear Leader: installDir: Dear Leader: {} launch: - /Dear Leader.exe: + "/Dear Leader.exe": - when: - os: windows store: steam @@ -136042,7 +136437,7 @@ Dear My Friend: id: 1093860 Dear Red - Extended: files: - /Save*.rvdata2: + "/Save*.rvdata2": tags: - save when: @@ -136050,7 +136445,7 @@ Dear Red - Extended: installDir: Dear RED - Extended: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -136068,7 +136463,7 @@ Death Cave: installDir: DeathCave: {} launch: - /deathCave.exe: + "/deathCave.exe": - when: - store: steam steam: @@ -136077,15 +136472,15 @@ Death Collector: installDir: Death Collector: {} launch: - /Death Collector.app/Contents/MacOS/Death Collector: + "/Death Collector.app/Contents/MacOS/Death Collector": - when: - os: mac store: steam - /DeathCollector: + "/DeathCollector": - when: - os: linux store: steam - /DeathCollector.exe: + "/DeathCollector.exe": - when: - os: windows store: steam @@ -136095,7 +136490,7 @@ Death Come True: installDir: Death Come True: {} launch: - /DeathComeTrue.exe: + "/DeathComeTrue.exe": - when: - os: windows store: steam @@ -136103,17 +136498,17 @@ Death Come True: id: 1321070 Death Coming: files: - /Doc/Config.ini: + "/Doc/Config.ini": tags: - config when: - os: windows - /DeathBefall_Epic/Update: + "/DeathBefall_Epic/Update": tags: - save when: - os: windows - /xDeath: + "/xDeath": tags: - save when: @@ -136121,7 +136516,7 @@ Death Coming: installDir: DeathComing: {} launch: - /xDeath.exe: + "/xDeath.exe": - when: - os: windows store: steam @@ -136131,7 +136526,7 @@ Death Crown: installDir: Death Crown: {} launch: - /Death Crown.exe: + "/Death Crown.exe": - when: - os: windows store: steam @@ -136142,11 +136537,11 @@ Death Dojo: Death Dojo: {} steam: id: 544590 -'Death Field: The Battle Royale of Disaster': +"Death Field: The Battle Royale of Disaster": installDir: Death Field: {} launch: - /DeathField/Binaries/Win64/DeathFieldClient-Win64-Shipping.exe: + "/DeathField/Binaries/Win64/DeathFieldClient-Win64-Shipping.exe": - when: - bit: 64 os: windows @@ -136157,7 +136552,7 @@ Death Fungeon: installDir: Death Fungeon: {} launch: - /Death Fungeon.exe: + "/Death Fungeon.exe": - when: - os: windows store: steam @@ -136167,20 +136562,20 @@ Death Game+: installDir: DeathGamePlus: {} launch: - /DeathGame.app: + "/DeathGame.app": - when: - os: mac store: steam - /DeathGame.exe: + "/DeathGame.exe": - when: - os: windows store: steam - /DeathGame.x86: + "/DeathGame.x86": - when: - bit: 32 os: linux store: steam - /DeathGame.x86_64: + "/DeathGame.x86_64": - when: - bit: 64 os: linux @@ -136195,12 +136590,12 @@ Death Gasp VR: id: 1199130 Death Gate: files: - /DGATE***.SAV: + "/DGATE***.SAV": tags: - save when: - os: dos - /LEGEND.INI: + "/LEGEND.INI": tags: - config when: @@ -136211,11 +136606,11 @@ Death Goat: installDir: Death Goat: {} launch: - /DeathGoat.app: + "/DeathGoat.app": - when: - os: mac store: steam - /DeathGoat.exe: + "/DeathGoat.exe": - when: - os: windows store: steam @@ -136225,7 +136620,7 @@ Death Inn: installDir: 死亡旅店: {} launch: - /Death Inn.exe: + "/Death Inn.exe": - when: - store: steam steam: @@ -136234,19 +136629,19 @@ Death Jump: installDir: Death Jump: {} launch: - /Death Jump.exe: + "/Death Jump.exe": - when: - store: steam steam: id: 1079630 Death Knights of Krynn: files: - /DKK.CFG: + "/DKK.CFG": tags: - config when: - os: dos - /SAVE: + "/SAVE": tags: - save when: @@ -136259,19 +136654,19 @@ Death Live: installDir: DeathLive: {} launch: - /DeathLive.exe: + "/DeathLive.exe": - when: - store: steam steam: id: 1140610 Death Mark: files: - /Death Mark: + "/Death Mark": tags: - config when: - os: windows - /Death Mark/*.bin: + "/Death Mark/*.bin": tags: - save when: @@ -136279,7 +136674,7 @@ Death Mark: installDir: Death Mark: {} launch: - /Death Mark.exe: + "/Death Mark.exe": - when: - os: windows store: steam @@ -136289,7 +136684,7 @@ Death Mark Vol.1: installDir: The Death Mark Vol.1: {} launch: - /DeathMark.exe: + "/DeathMark.exe": - when: - os: windows store: steam @@ -136302,17 +136697,17 @@ Death Park: installDir: Death Park: {} launch: - /Death Park.exe: + "/Death Park.exe": - when: - os: windows store: steam steam: id: 1186030 -'Death Penalty: Beginning': +"Death Penalty: Beginning": installDir: Death penalty: {} launch: - /Death__Penalty.exe: + "/Death__Penalty.exe": - when: - bit: 64 os: windows @@ -136323,7 +136718,7 @@ Death Pirate: installDir: hdmp: {} launch: - /DeathPirateSP_Steam2.exe: + "/DeathPirateSP_Steam2.exe": - when: - os: windows store: steam @@ -136333,22 +136728,22 @@ Death Point: installDir: Death Point: {} launch: - /Death Point.app: + "/Death Point.app": - when: - bit: 64 os: mac store: steam - /Death Point.exe: + "/Death Point.exe": - when: - bit: 64 os: windows store: steam - /Death Point.x86: + "/Death Point.x86": - when: - bit: 32 os: linux store: steam - /Death Point.x86_64: + "/Death Point.x86_64": - when: - bit: 64 os: linux @@ -136366,7 +136761,7 @@ Death Race: id: 908750 Death Rally: files: - /dr.cfg: + "/dr.cfg": tags: - config when: @@ -136374,26 +136769,26 @@ Death Rally: installDir: Death Rally: {} launch: - /Death Rally.app: + "/Death Rally.app": - when: - os: mac store: steam - /Death Rally/dr.exe: + "/Death Rally/dr.exe": - when: - os: windows store: steam - workingDir: /Death Rally - /Dosbox/dosbox: - - arguments: '-conf \"..\\Death.conf\" -noconsole -c' + workingDir: "/Death Rally" + "/Dosbox/dosbox": + - arguments: "-conf \\\"..\\\\Death.conf\\\" -noconsole -c" when: - os: linux store: steam - workingDir: /Dosbox + workingDir: "/Dosbox" steam: id: 358270 Death Rally (2012): files: - /Remedy/Death Rally/1.0/Profiles: + "/Remedy/Death Rally/1.0/Profiles": tags: - save when: @@ -136401,7 +136796,7 @@ Death Rally (2012): installDir: DeathRally: {} launch: - /DeathRally.exe: + "/DeathRally.exe": - when: - store: steam steam: @@ -136410,7 +136805,7 @@ Death Ray Manta: installDir: Death Ray Manta: {} launch: - /DRM_Steam.exe: + "/DRM_Steam.exe": - when: - os: windows store: steam @@ -136420,7 +136815,7 @@ Death Rings of Jupiter: installDir: Death Rings of Jupiter: {} launch: - /DeathRingsofJupiter.exe: + "/DeathRingsofJupiter.exe": - when: - os: windows store: steam @@ -136428,13 +136823,13 @@ Death Rings of Jupiter: id: 691620 Death Road to Canada: files: - /.madgarden/DR2C: + "/.madgarden/DR2C": tags: - config - save when: - os: linux - /.madgarden/DR2C: + "/.madgarden/DR2C": tags: - config - save @@ -136445,15 +136840,15 @@ Death Road to Canada: installDir: DeathRoadToCanada: {} launch: - /DR2C.app/Contents/MacOS/DR2C: + "/DR2C.app/Contents/MacOS/DR2C": - when: - os: mac store: steam - /prog-linux: + "/prog-linux": - when: - os: linux store: steam - /prog.exe: + "/prog.exe": - when: - os: windows store: steam @@ -136463,7 +136858,7 @@ Death Rpg: installDir: Death Rpg: {} launch: - /DeathRpg.exe: + "/DeathRpg.exe": - when: - bit: 64 os: windows @@ -136474,11 +136869,11 @@ Death Skid Marks: installDir: DeathSkidMarks: {} launch: - /DeathSkidMarks++.exe: + "/DeathSkidMarks++.exe": - when: - os: windows store: steam - /DeathSkidMarks.exe: + "/DeathSkidMarks.exe": - when: - os: windows store: steam @@ -136488,7 +136883,7 @@ Death Space: installDir: Death Space: {} launch: - /DIS.exe: + "/DIS.exe": - when: - bit: 64 os: windows @@ -136497,12 +136892,12 @@ Death Space: id: 969230 Death Squared: files: - /AppData/LocalLow/SMG Studio/Death Squared/Saves: + "/AppData/LocalLow/SMG Studio/Death Squared/Saves": tags: - save when: - os: windows - /AppData/LocalLow/SMG Studio/Death Squared/ds_settings.dat: + "/AppData/LocalLow/SMG Studio/Death Squared/ds_settings.dat": tags: - config when: @@ -136510,13 +136905,13 @@ Death Squared: installDir: Death Squared: {} launch: - /DeathSquared.app: - - arguments: '-logFile logfile.txt' + "/DeathSquared.app": + - arguments: "-logFile logfile.txt" when: - os: mac store: steam - /DeathSquared.exe: - - arguments: '-logFile logfile.txt' + "/DeathSquared.exe": + - arguments: "-logFile logfile.txt" when: - os: windows store: steam @@ -136530,7 +136925,7 @@ Death Stair: installDir: Death Stair: {} launch: - /DeathStair.exe: + "/DeathStair.exe": - when: - os: windows store: steam @@ -136538,28 +136933,28 @@ Death Stair: id: 444880 Death Stranding: files: - /settings.cfg: + "/settings.cfg": tags: - config when: - os: windows - /AppData/LocalLow/KojimaProductions/DeathStranding/: - tags: - - save - when: - - store: epic - /KojimaProductions/DeathStranding/: + "/AppData/LocalLow/KojimaProductions/DeathStranding/": tags: - save when: - os: windows - /Packages/505GAMESS.P.A.DeathStranding_tefn33qh9azfc/SystemAppData/xgs/: + "/KojimaProductions/DeathStranding/": + tags: + - save + when: + - os: windows + "/Packages/505GAMESS.P.A.DeathStranding_tefn33qh9azfc/SystemAppData/xgs/": tags: - save when: - os: windows store: microsoft - /Packages/505GAMESS.P.A.DeathStranding_tefn33qh9azfc/SystemAppData/xgs//profile: + "/Packages/505GAMESS.P.A.DeathStranding_tefn33qh9azfc/SystemAppData/xgs//profile": tags: - config when: @@ -136572,26 +136967,26 @@ Death Stranding: installDir: Death Stranding: {} launch: - /ds.exe: + "/ds.exe": - when: - bit: 64 os: windows store: steam steam: id: 1190460 -Death Stranding Director's Cut: +"Death Stranding Director's Cut": files: - /settings.cfg: + "/settings.cfg": tags: - config when: - os: windows - /AppData/LocalLow/KojimaProductions/DeathStrandingDC/: + "/AppData/LocalLow/KojimaProductions/DeathStrandingDC/": tags: - save when: - - store: epic - /KojimaProductions/DeathStrandingDC/: + - os: windows + "/KojimaProductions/DeathStrandingDC/": tags: - save when: @@ -136599,7 +136994,7 @@ Death Stranding Director's Cut: installDir: DEATH STRANDING DIRECTORS CUT: {} launch: - /ds.exe: + "/ds.exe": - when: - bit: 64 os: windows @@ -136610,8 +137005,8 @@ Death To The Dragon Lord: installDir: Death To The Dragon Lord: {} launch: - /Death To The Dragon Lord.exe: - - arguments: '--in-process-gpu' + "/Death To The Dragon Lord.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam @@ -136621,21 +137016,21 @@ Death Toll: installDir: Death Toll: {} launch: - /DeathToll.exe: + "/DeathToll.exe": - when: - bit: 64 os: windows store: steam steam: id: 414550 -'Death Track: Resurrection': +"Death Track: Resurrection": files: - /skyfallen entertaiment/deathtrack: + "/skyfallen entertaiment/deathtrack": tags: - save when: - os: windows - /skyfallen entertainment/deathtrack/Config: + "/skyfallen entertainment/deathtrack/Config": tags: - config when: @@ -136645,7 +137040,7 @@ Death Toll: installDir: Death Track: {} launch: - /deathtrack.exe: + "/deathtrack.exe": - when: - store: steam steam: @@ -136654,47 +137049,47 @@ Death Tractor: installDir: Death Tractor: {} launch: - /DeathTractor.exe: + "/DeathTractor.exe": - when: - bit: 32 os: windows store: steam steam: id: 375040 -'Death Trader: Cold War': +"Death Trader: Cold War": installDir: Death Trader Cold War: {} launch: - /Death Trader.app/Contents/MacOS/Death Trader: + "/Death Trader.app/Contents/MacOS/Death Trader": - when: - os: mac store: steam - /Death Trader.exe: + "/Death Trader.exe": - when: - os: windows store: steam steam: id: 933700 -'Death Train - Warning: Unsafe VR Experience': +"Death Train - Warning: Unsafe VR Experience": installDir: Death Train VR: {} steam: id: 680780 Death Trash: files: - /.config/Crafting Legends/Death Trash: + "/.config/Crafting Legends/Death Trash": tags: - config - save when: - os: linux - /AppData/LocalLow/Crafting Legends/Death Trash: + "/AppData/LocalLow/Crafting Legends/Death Trash": tags: - config - save when: - os: windows - /Library/Application Support/Crafting Legends/Death Trash: + "/Library/Application Support/Crafting Legends/Death Trash": tags: - config - save @@ -136705,16 +137100,16 @@ Death Trash: installDir: Death Trash: {} launch: - /DeathTrash: + "/DeathTrash": - when: - bit: 64 os: linux store: steam - /DeathTrash.app: + "/DeathTrash.app": - when: - os: mac store: steam - /DeathTrash.exe: + "/DeathTrash.exe": - when: - os: windows store: steam @@ -136724,7 +137119,7 @@ Death Voting Game: installDir: 死亡投票_Death Voting Game: {} launch: - /vote.exe: + "/vote.exe": - when: - store: steam steam: @@ -136733,16 +137128,16 @@ Death Waves: installDir: Death Waves: {} launch: - /DeathWaves.exe: + "/DeathWaves.exe": - when: - store: steam steam: id: 1024220 -'Death and Betrayal in Romania: A Dana Knightstone Novel': +"Death and Betrayal in Romania: A Dana Knightstone Novel": installDir: - Death and Betrayal in Romania A Dana Knightstone Novel Collector's Edition: {} + "Death and Betrayal in Romania A Dana Knightstone Novel Collector's Edition": {} launch: - /DeathandBetrayalinRomania_CE.exe: + "/DeathandBetrayalinRomania_CE.exe": - when: - os: windows store: steam @@ -136752,8 +137147,8 @@ Death and Progress: installDir: Death and Progress: {} launch: - /DeathAndProgress.exe: - - arguments: '--in-process-gpu' + "/DeathAndProgress.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam @@ -136761,32 +137156,32 @@ Death and Progress: id: 1125420 Death and Taxes: files: - /AppData/LocalLow/Placeholder Gameworks/Death and Taxes/Saves/Options.RIP: + "/AppData/LocalLow/Placeholder Gameworks/Death and Taxes/Saves/Options.RIP": tags: - config when: - os: windows - /AppData/LocalLow/Placeholder Gameworks/Death and Taxes/Saves/Save.RIP: + "/AppData/LocalLow/Placeholder Gameworks/Death and Taxes/Saves/Save.RIP": tags: - save when: - os: windows - /Library/Application Support/Placeholder Gameworks/Death and Taxes/Saves/Options.RIP: + "/Library/Application Support/Placeholder Gameworks/Death and Taxes/Saves/Options.RIP": tags: - config when: - os: mac - /Library/Application Support/Placeholder Gameworks/Death and Taxes/Saves/Save.RIP: + "/Library/Application Support/Placeholder Gameworks/Death and Taxes/Saves/Save.RIP": tags: - save when: - os: mac - /unity3d/Placeholder Gameworks/Death and Taxes/Saves/Options.RIP: + "/unity3d/Placeholder Gameworks/Death and Taxes/Saves/Options.RIP": tags: - config when: - os: linux - /unity3d/Placeholder Gameworks/Death and Taxes/Saves/Save.RIP: + "/unity3d/Placeholder Gameworks/Death and Taxes/Saves/Save.RIP": tags: - save when: @@ -136796,15 +137191,15 @@ Death and Taxes: installDir: Death and Taxes: {} launch: - /Death and Taxes.app/Contents/MacOS/Death and Taxes: + "/Death and Taxes.app/Contents/MacOS/Death and Taxes": - when: - os: mac store: steam - /Death and Taxes.exe: + "/Death and Taxes.exe": - when: - os: windows store: steam - /DeathAndTaxes.x86_64: + "/DeathAndTaxes.x86_64": - when: - os: linux store: steam @@ -136814,19 +137209,19 @@ Death and the Fly: installDir: Death and the Fly: {} launch: - /datf.exe: + "/datf.exe": - when: - store: steam steam: id: 41680 Death by Game Show: files: - /.config/unity3d/Oointah/Death by GameShow: + "/.config/unity3d/Oointah/Death by GameShow": tags: - config when: - os: linux - /.config/unity3d/Oointah/Death by GameShow/PlayerData: + "/.config/unity3d/Oointah/Death by GameShow/PlayerData": tags: - save when: @@ -136834,20 +137229,20 @@ Death by Game Show: installDir: DeathByGameShow: {} launch: - /Death by GameShow.app/Contents/MacOS/Death by GameShow: + "/Death by GameShow.app/Contents/MacOS/Death by GameShow": - when: - os: mac store: steam - /Death by GameShow.exe: + "/Death by GameShow.exe": - when: - os: windows store: steam - /Death by GameShow.x86: + "/Death by GameShow.x86": - when: - bit: 32 os: linux store: steam - /Death by GameShow.x86_64: + "/Death by GameShow.x86_64": - when: - bit: 64 os: linux @@ -136856,27 +137251,27 @@ Death by Game Show: id: 409730 Death end re;Quest: files: - /resource/bin/Application.ini: + "/resource/bin/Application.ini": tags: - config when: - os: windows - /userdata//990050/remote: + "/userdata//990050/remote": tags: - save when: - store: steam - /userdata//990050/remote/SYSTEMSAVE_GAME.BIN: + "/userdata//990050/remote/SYSTEMSAVE_GAME.BIN": tags: - config when: - store: steam - /userdata//990050/remote/SYSTEMSAVE_param.sfo: + "/userdata//990050/remote/SYSTEMSAVE_param.sfo": tags: - config when: - store: steam - /Idea Factory/Death end reQuest: + "/Idea Factory/Death end reQuest": tags: - save when: @@ -136909,7 +137304,7 @@ Death end re;Quest: installDir: Death end reQuest: {} launch: - /resource/bin/Application.exe: + "/resource/bin/Application.exe": - when: - bit: 64 os: windows @@ -136918,22 +137313,22 @@ Death end re;Quest: id: 990050 Death end re;Quest 2: files: - /resource/bin/DeathEndReQuest2.ini: + "/resource/bin/DeathEndReQuest2.ini": tags: - config when: - os: windows - /userdata//1266220/remote: + "/userdata//1266220/remote": tags: - save when: - store: steam - /userdata//1266220/remote/SYSTEMSAVE_GAME.BIN: + "/userdata//1266220/remote/SYSTEMSAVE_GAME.BIN": tags: - config when: - store: steam - /userdata//1266220/remote/SYSTEMSAVE_param.sfo: + "/userdata//1266220/remote/SYSTEMSAVE_param.sfo": tags: - config when: @@ -136948,25 +137343,25 @@ Death end re;Quest 2: installDir: DeathEndReQuest2: {} launch: - /resource/bin/DeathEndReQuest2.exe: + "/resource/bin/DeathEndReQuest2.exe": - when: - bit: 64 os: windows store: steam steam: id: 1266220 -'Death from Unknown: Survival': +"Death from Unknown: Survival": steam: id: 809550 Death in the Water: installDir: Death in the Water: {} launch: - /Death in the Water.app/Contents/MacOS/Death in the Water: + "/Death in the Water.app/Contents/MacOS/Death in the Water": - when: - os: mac store: steam - /Death in the Water.exe: + "/Death in the Water.exe": - when: - bit: 64 os: windows @@ -136983,20 +137378,20 @@ Death or Cress: installDir: Death or Cress: {} launch: - /Death or Cress.exe: + "/Death or Cress.exe": - when: - os: windows store: steam - /Death or Cress_Data.app/Contents/MacOS/Death or Cress_Data: + "/Death or Cress_Data.app/Contents/MacOS/Death or Cress_Data": - when: - os: mac store: steam - /Death or Cress_Data.linux/Death or Cress_Data.x86: + "/Death or Cress_Data.linux/Death or Cress_Data.x86": - when: - bit: 32 os: linux store: steam - /Death or Cress_Data.linux/Death or Cress_Data.x86_64: + "/Death or Cress_Data.linux/Death or Cress_Data.x86_64": - when: - bit: 64 os: linux @@ -137005,7 +137400,7 @@ Death or Cress: id: 789220 Death to Spies: files: - /My Games/Death to Spies: + "/My Games/Death to Spies": tags: - config - save @@ -137016,25 +137411,25 @@ Death to Spies: installDir: Death to Spies: {} launch: - /smersh.exe: + "/smersh.exe": - when: - os: windows store: steam steam: id: 9800 -'Death to Spies: Moment of Truth': +"Death to Spies: Moment of Truth": files: - /My Games/Smersh_MT/Profiles: + "/My Games/Smersh_MT/Profiles": tags: - save when: - os: windows - /My Games/Smersh_MT/Profiles/*/settings.scg: + "/My Games/Smersh_MT/Profiles/*/settings.scg": tags: - config when: - os: windows - /My Games/Smersh_MT/smersh.shadvs: + "/My Games/Smersh_MT/smersh.shadvs": tags: - config when: @@ -137044,26 +137439,26 @@ Death to Spies: installDir: Death to Spies Moment of Truth: {} launch: - /Truth.exe: + "/Truth.exe": - when: - store: steam steam: id: 34410 -Death's Door: +"Death's Door": files: - /AppData/LocalLow/Acid Nerve/DeathsDoor: + "/AppData/LocalLow/Acid Nerve/DeathsDoor": tags: - config when: - os: windows - os: windows store: microsoft - /AppData/LocalLow/Acid Nerve/DeathsDoor/SAVEDATA: + "/AppData/LocalLow/Acid Nerve/DeathsDoor/SAVEDATA": tags: - save when: - os: windows - /Packages/DevolverDigital.DeathsDoorWin10_6kzv4j18v0c96/SystemAppData/wgs: + "/Packages/DevolverDigital.DeathsDoorWin10_6kzv4j18v0c96/SystemAppData/wgs": tags: - save when: @@ -137075,39 +137470,39 @@ Death's Door: gogExtra: - 1950471147 installDir: - Death's Door: {} + "Death's Door": {} launch: - /DeathsDoor.exe: + "/DeathsDoor.exe": - when: - os: windows store: steam steam: id: 894020 -Death's Gambit: +"Death's Gambit": files: - /Packages/CartoonInteractiveGroupIn.DeathsGambit_6c1aaymwt3dwm/LocalCache/Local/deathsgambit397/deaths_gambit*/options.sav: + "/Packages/CartoonInteractiveGroupIn.DeathsGambit_6c1aaymwt3dwm/LocalCache/Local/deathsgambit397/deaths_gambit*/options.sav": tags: - config when: - os: windows store: microsoft - /Packages/CartoonInteractiveGroupIn.DeathsGambit_6c1aaymwt3dwm/LocalCache/Local/deathsgambit397/deaths_gambit_system_options/system_options.sav: + "/Packages/CartoonInteractiveGroupIn.DeathsGambit_6c1aaymwt3dwm/LocalCache/Local/deathsgambit397/deaths_gambit_system_options/system_options.sav": tags: - config when: - os: windows store: microsoft - /deathsgambit397/deaths_gambit*: + "/deathsgambit397/deaths_gambit*": tags: - save when: - os: windows - /deathsgambit397/deaths_gambit*/options.sav: + "/deathsgambit397/deaths_gambit*/options.sav": tags: - config when: - os: windows - /deathsgambit397/deaths_gambit_system_options/system_options.sav: + "/deathsgambit397/deaths_gambit_system_options/system_options.sav": tags: - config when: @@ -137115,63 +137510,63 @@ Death's Gambit: gog: id: 1486377314 installDir: - Death's Gambit: {} + "Death's Gambit": {} launch: - /deathsgambit397.exe: + "/deathsgambit397.exe": - when: - store: steam steam: id: 356650 -Death's Hangover: +"Death's Hangover": files: - /data/save/DH.sav: + "/data/save/DH.sav": tags: - save when: - os: windows - /data/save/DHMEM.cfg: + "/data/save/DHMEM.cfg": tags: - config when: - os: windows - /data/save/DH_KEYS.cfg: + "/data/save/DH_KEYS.cfg": tags: - config when: - os: windows - /data/save/SOUL.cfg: + "/data/save/SOUL.cfg": tags: - config when: - os: windows installDir: - Death's Hangover: {} + "Death's Hangover": {} launch: - /Death's Hangover.exe: + "/Death's Hangover.exe": - when: - os: windows store: steam steam: id: 521920 -Death's Life: +"Death's Life": installDir: Deaths Life: {} launch: - /Deaths Life.exe: + "/Deaths Life.exe": - when: - os: windows store: steam steam: id: 502100 -Death's Maze: +"Death's Maze": installDir: DEATHS MAZE: {} launch: - /DEATHS MAZE.exe: + "/DEATHS MAZE.exe": - when: - os: windows store: steam - /DEATHS_MAZE: + "/DEATHS_MAZE": - when: - os: linux store: steam @@ -137181,19 +137576,19 @@ DeathCrank: installDir: DeathCrank: {} launch: - /DeathCrank.exe: + "/DeathCrank.exe": - when: - store: steam steam: id: 391290 DeathKeep: files: - /DkSave**.sav: + "/DkSave**.sav": tags: - save when: - os: windows - /Keys.sav: + "/Keys.sav": tags: - config when: @@ -137203,7 +137598,7 @@ DeathKeep: installDir: DeathKeep: {} launch: - /Launcher/Launcher.exe: + "/Launcher/Launcher.exe": - when: - store: steam steam: @@ -137212,7 +137607,7 @@ DeathMatch: installDir: DeathMatch: {} launch: - /DeathMatch.exe: + "/DeathMatch.exe": - when: - os: windows store: steam @@ -137222,15 +137617,15 @@ DeathMetal: installDir: DeathMetal: {} launch: - /DM.app: + "/DM.app": - when: - os: mac store: steam - /DM.exe: + "/DM.exe": - when: - os: windows store: steam - /DM.x86: + "/DM.x86": - when: - os: linux store: steam @@ -137238,27 +137633,27 @@ DeathMetal: id: 553820 DeathSpank: files: - /Library/Application Support/com.hotheadgames.deathspank/Prefs.ini: + "/Library/Application Support/com.hotheadgames.deathspank/Prefs.ini": tags: - config when: - os: mac - /Library/Application Support/com.hotheadgames.deathspank/SLOT*.SAV: + "/Library/Application Support/com.hotheadgames.deathspank/SLOT*.SAV": tags: - save when: - os: mac - /userdata//18040/SLOT*.SAV: + "/userdata//18040/SLOT*.SAV": tags: - save when: - store: steam - /Hothead Games/DeathSpank/Prefs.ini: + "/Hothead Games/DeathSpank/Prefs.ini": tags: - config when: - os: windows - /Hothead Games/DeathSpank/SLOT*.SAV: + "/Hothead Games/DeathSpank/SLOT*.SAV": tags: - save when: @@ -137266,29 +137661,29 @@ DeathSpank: installDir: DeathSpank: {} launch: - /DeathSpank.app: + "/DeathSpank.app": - when: - os: mac store: steam - /DeathSpank.exe: + "/DeathSpank.exe": - when: - os: windows store: steam steam: id: 18040 -'DeathSpank: Thongs of Virtue': +"DeathSpank: Thongs of Virtue": files: - /userdata//18050/SLOT*.SAV: + "/userdata//18050/SLOT*.SAV": tags: - save when: - store: steam - /Hothead Games/DeathSpankTOV/Prefs.ini: + "/Hothead Games/DeathSpankTOV/Prefs.ini": tags: - config when: - os: windows - /Hothead Games/DeathSpankTOV/SLOT*.SAV: + "/Hothead Games/DeathSpankTOV/SLOT*.SAV": tags: - save when: @@ -137296,11 +137691,11 @@ DeathSpank: installDir: DeathSpankTOV: {} launch: - /DeathSpankTOV.app: + "/DeathSpankTOV.app": - when: - os: mac store: steam - /DeathSpankTOV.exe: + "/DeathSpankTOV.exe": - when: - os: windows store: steam @@ -137311,21 +137706,21 @@ DeathTolls Experience: DeathTolls Experience: {} steam: id: 847900 -'Deathbloom: Chapter 1': +"Deathbloom: Chapter 1": installDir: Deathbloom: {} launch: - /deathbloom01.exe: + "/deathbloom01.exe": - when: - os: windows store: steam steam: id: 1058560 -'Deathbloom: Chapter 2': +"Deathbloom: Chapter 2": installDir: Deathbloom Chapter 2: {} launch: - /deathbloom02.exe: + "/deathbloom02.exe": - when: - os: windows store: steam @@ -137336,19 +137731,19 @@ Deathbound: Deathbound: {} steam: id: 1190060 -'Deathbulge: Battle of the Bands': +"Deathbulge: Battle of the Bands": files: - /.config/unity3d/FiveHouses/Deathbulge: + "/.config/unity3d/FiveHouses/Deathbulge": tags: - config when: - os: linux - /.config/unity3d/FiveHouses/Deathbulge/saves: + "/.config/unity3d/FiveHouses/Deathbulge/saves": tags: - save when: - os: linux - /AppData/LocalLow/FiveHouses/Deathbulge/saves: + "/AppData/LocalLow/FiveHouses/Deathbulge/saves": tags: - save when: @@ -137356,16 +137751,16 @@ Deathbound: installDir: Deathbulge Battle of the Bands: {} launch: - /deathbulge: + "/deathbulge": - when: - bit: 64 os: linux store: steam - /deathbulge.app: + "/deathbulge.app": - when: - os: mac store: steam - /deathbulge.exe: + "/deathbulge.exe": - when: - os: windows store: steam @@ -137379,11 +137774,11 @@ Deathdays End: installDir: Deathdays End: {} launch: - /Game.app: + "/Game.app": - when: - os: mac store: steam - /Game.exe: + "/Game.exe": - when: - bit: 64 os: windows @@ -137394,15 +137789,15 @@ Deatherem: installDir: Deatherem: {} launch: - /Deatherem.exe: + "/Deatherem.exe": - when: - os: windows store: steam steam: id: 1065160 -'Deathgarden: Bloodharvest': +"Deathgarden: Bloodharvest": files: - /TheExit/Saved/Config/WindowsNoEditor: + "/TheExit/Saved/Config/WindowsNoEditor": tags: - config when: @@ -137410,7 +137805,7 @@ Deatherem: installDir: DEATHGARDEN: {} launch: - /Deathgarden.exe: + "/Deathgarden.exe": - when: - store: steam steam: @@ -137419,7 +137814,7 @@ Deathlands: installDir: Deathlands: {} launch: - /Deathlands.exe: + "/Deathlands.exe": - when: - os: windows store: steam @@ -137429,53 +137824,53 @@ Deathless Dungeon: installDir: Deathless Dungeon: {} launch: - /DeathlessDungeon.exe: + "/DeathlessDungeon.exe": - when: - os: windows store: steam - /DeathlessDungeonMacOS.app/Contents/MacOS/DeathlessDungeonMacOS: + "/DeathlessDungeonMacOS.app/Contents/MacOS/DeathlessDungeonMacOS": - when: - os: mac store: steam steam: id: 1026610 -'Deathless: The City''s Thirst': +"Deathless: The City's Thirst": installDir: DeathlessTheCitysThirst: {} launch: - /Deathless The City's Thirst.app/Contents/MacOS/Deathless The City's Thirst: + "/Deathless The City's Thirst.app/Contents/MacOS/Deathless The City's Thirst": - when: - os: mac store: steam - /DeathlessTheCitysThirst: + "/DeathlessTheCitysThirst": - when: - os: linux store: steam - /DeathlessTheCitysThirst.exe: + "/DeathlessTheCitysThirst.exe": - when: - os: windows store: steam steam: id: 410910 -'Deathlike: Awakening': +"Deathlike: Awakening": installDir: Deathlike: {} steam: id: 570230 Deathloop: files: - /AppData/Local/Packages/BethesdaSoftworks.ProjectPrism_3275kfvn8vcwc/SystemAppData/wgs//: + "/AppData/Local/Packages/BethesdaSoftworks.ProjectPrism_3275kfvn8vcwc/SystemAppData/wgs//": tags: - save when: - os: windows store: microsoft - /Saved Games/Arkane Studios/Deathloop/base: + "/Saved Games/Arkane Studios/Deathloop/base": tags: - config when: - os: windows - /Saved Games/Arkane Studios/Deathloop/base/savegame/: + "/Saved Games/Arkane Studios/Deathloop/base/savegame/": tags: - save when: @@ -137483,42 +137878,42 @@ Deathloop: installDir: DEATHLOOP: {} launch: - /Deathloop.exe: + "/Deathloop.exe": - when: - bit: 64 os: windows store: steam steam: id: 1252330 -'Deathly Storm: The Edge of Life': +"Deathly Storm: The Edge of Life": installDir: DSTEOL: {} launch: - /DSTEOL.exe: + "/DSTEOL.exe": - when: - os: windows store: steam - /DSTEOL02.exe: + "/DSTEOL02.exe": - when: - os: windows store: steam - /DSTEOL03.exe: + "/DSTEOL03.exe": - when: - os: windows store: steam - /DSTEOL04.exe: + "/DSTEOL04.exe": - when: - os: windows store: steam - /DSTEOL05.exe: + "/DSTEOL05.exe": - when: - os: windows store: steam - /DSTEOL06.exe: + "/DSTEOL06.exe": - when: - os: windows store: steam - /DSTEOL_TPS.exe: + "/DSTEOL_TPS.exe": - when: - os: windows store: steam @@ -137528,7 +137923,7 @@ Deathly Survival: installDir: Deathly Survival: {} launch: - /Deadly zone.exe: + "/Deadly zone.exe": - when: - os: windows store: steam @@ -137536,7 +137931,7 @@ Deathly Survival: id: 676310 Deathmatch Classic: files: - /Half-Life/dmc: + "/Half-Life/dmc": tags: - config when: @@ -137546,23 +137941,25 @@ Deathmatch Classic: installDir: Half-Life: {} launch: - /hl.exe: - - arguments: '-steam -game dmc' + "/hl.exe": + - arguments: "-steam -game dmc" when: - os: windows store: steam - /hl.sh: - - arguments: '-steam -game dmc' + "/hl.sh": + - arguments: "-steam -game dmc" when: - os: mac store: steam + - os: linux + store: steam steam: id: 40 Deathmatch Soccer: installDir: Deathmatch Soccer: {} launch: - /DeathmatchSoccer.exe: + "/DeathmatchSoccer.exe": - when: - os: windows store: steam @@ -137573,7 +137970,7 @@ Deathopolis: id: 1002820 Deathpit 3000: files: - /AppData/LocalLow/Cyberlamb Studios/DEATHPIT 3000: + "/AppData/LocalLow/Cyberlamb Studios/DEATHPIT 3000": tags: - config - save @@ -137582,15 +137979,15 @@ Deathpit 3000: installDir: DEATHPIT 3000: {} launch: - /Contents/MacOS/dp3k: + "/Contents/MacOS/dp3k": - when: - os: mac store: steam - /dp3k.exe: + "/dp3k.exe": - when: - os: windows store: steam - /dp3k.x86_64: + "/dp3k.x86_64": - when: - os: linux store: steam @@ -137600,7 +137997,7 @@ Deathrun TV: installDir: DEATHRUN TV: {} launch: - /DeathRun_1.2.1_Win/DeathRun TV.exe: + "/DeathRun_1.2.1_Win/DeathRun TV.exe": - when: - bit: 64 os: windows @@ -137611,7 +138008,7 @@ Deathsmiles: installDir: Deathsmiles: {} launch: - /default.exe: + "/default.exe": - when: - store: steam steam: @@ -137620,7 +138017,7 @@ Deathsmiles I・II: installDir: Deathsmiles I-II: {} launch: - /DeathsmilesI-II.exe: + "/DeathsmilesI-II.exe": - when: - bit: 64 os: windows @@ -137631,11 +138028,11 @@ Deathstate: installDir: Deathstate: {} launch: - /Deathstate.app/Contents/MacOS/Deathstate: + "/Deathstate.app/Contents/MacOS/Deathstate": - when: - os: mac store: steam - /Deathstate.exe: + "/Deathstate.exe": - when: - os: windows store: steam @@ -137643,7 +138040,7 @@ Deathstate: id: 402120 Deathtrap: files: - /NeocoreGames/DeathTrap/SaveGame/: + "/NeocoreGames/DeathTrap/SaveGame/": tags: - save when: @@ -137653,11 +138050,11 @@ Deathtrap: installDir: Deathtrap: {} launch: - /DEATHTRAP.app: + "/DEATHTRAP.app": - when: - os: mac store: steam - /DeathTrap.exe: + "/DeathTrap.exe": - when: - os: windows store: steam @@ -137669,12 +138066,12 @@ Deathtrap: id: 310510 Deathtrap Dungeon: files: - /ASYLUM/SAVEGAME/*.DDS: + "/ASYLUM/SAVEGAME/*.DDS": tags: - save when: - os: windows - /ASYLUM/config.dat: + "/ASYLUM/config.dat": tags: - config when: @@ -137684,14 +138081,14 @@ Deathtrap Dungeon: installDir: Deathtrap Dungeon: {} launch: - /dd_cd.exe: + "/dd_cd.exe": - when: - store: steam steam: id: 245010 Deathtrap Dungeon Trilogy: files: - /Nomad Games/Deathtrap Dungeon Trilogy/saved_game: + "/Nomad Games/Deathtrap Dungeon Trilogy/saved_game": tags: - save when: @@ -137699,34 +138096,34 @@ Deathtrap Dungeon Trilogy: installDir: Deathtrap Dungeon Trilogy: {} launch: - /ff2.app: + "/ff2.app": - when: - os: mac store: steam - /ff2.exe: + "/ff2.exe": - when: - os: windows store: steam steam: id: 824760 -'Deathtrap Dungeon: The Interactive Video Adventure': +"Deathtrap Dungeon: The Interactive Video Adventure": installDir: Deathtrap Dungeon The Interactive Video Adventure: {} launch: - /Deathtrap Dungeon.app: + "/Deathtrap Dungeon.app": - when: - os: mac store: steam - /Deathtrap Dungeon.exe: + "/Deathtrap Dungeon.exe": - when: - bit: 64 os: windows store: steam steam: id: 1191940 -'Deathverse: Let It Die': +"Deathverse: Let It Die": files: - /EAGGame/Saved: + "/EAGGame/Saved": tags: - config when: @@ -137734,7 +138131,7 @@ Deathtrap Dungeon Trilogy: installDir: DEATHVERSE: {} launch: - /EAGGame.exe: + "/EAGGame.exe": - when: - os: windows store: steam @@ -137744,18 +138141,18 @@ Deathwave: installDir: Deathwave: {} launch: - /DeathWave.exe: + "/DeathWave.exe": - when: - bit: 64 os: windows store: steam steam: id: 463870 -'Debit and Credit: A Walk Through Accounting Hell': +"Debit and Credit: A Walk Through Accounting Hell": installDir: Debit And Credit: {} launch: - /DebitAndCredit.exe: + "/DebitAndCredit.exe": - when: - os: windows store: steam @@ -137763,7 +138160,7 @@ Deathwave: id: 870430 Debris: files: - /AppData/LocalLow/Moonray Studios/Debris/SaveDataContainers: + "/AppData/LocalLow/Moonray Studios/Debris/SaveDataContainers": tags: - save when: @@ -137771,11 +138168,11 @@ Debris: installDir: Debris: {} launch: - /debris.app/Contents/MacOS/debris: + "/debris.app/Contents/MacOS/debris": - when: - os: mac store: steam - /debris.exe: + "/debris.exe": - when: - os: windows store: steam @@ -137785,15 +138182,15 @@ Debris Field: installDir: Debris Field: {} launch: - /debris_field_OSX.app: + "/debris_field_OSX.app": - when: - os: mac store: steam - /debris_field_PC.exe: + "/debris_field_PC.exe": - when: - os: windows store: steam - /debris_field_linux.x86_64: + "/debris_field_linux.x86_64": - when: - os: linux store: steam @@ -137803,7 +138200,7 @@ Debris Infinity: installDir: Debris Infinity: {} launch: - /Debris Infinity.exe: + "/Debris Infinity.exe": - when: - os: windows store: steam @@ -137819,7 +138216,7 @@ Debtor: installDir: Debtor: {} launch: - /debtor.exe: + "/debtor.exe": - when: - os: windows store: steam @@ -137829,25 +138226,25 @@ Debuff: installDir: DEBUFF: {} launch: - /DEBUFF.app: + "/DEBUFF.app": - when: - os: mac store: steam - /DEBUFF.exe: + "/DEBUFF.exe": - when: - os: windows store: steam - /DEBUFF.x86: + "/DEBUFF.x86": - when: - os: linux store: steam steam: id: 759850 -'Debugger 3.16: 100% bugged': +"Debugger 3.16: 100% bugged": installDir: Debugger 316: {} launch: - /debugger.exe: + "/debugger.exe": - when: - os: windows store: steam @@ -137855,22 +138252,22 @@ Debuff: id: 339720 Decap Attack: files: - /SEGA Genesis Classics/0026: + "/SEGA Genesis Classics/0026": tags: - save when: - os: windows - /SEGA Genesis Classics/setup.dat: + "/SEGA Genesis Classics/setup.dat": tags: - config when: - os: windows - /SEGA Mega Drive Classics/0026: + "/SEGA Mega Drive Classics/0026": tags: - save when: - os: windows - /SEGA Mega Drive Classics/setup.dat: + "/SEGA Mega Drive Classics/setup.dat": tags: - config when: @@ -137881,7 +138278,7 @@ Decarnation: installDir: Decarnation: {} launch: - /Decarnation.exe: + "/Decarnation.exe": - when: - os: windows store: steam @@ -137889,12 +138286,12 @@ Decarnation: id: 1672310 Decay of Logos: files: - /AppData/LocalLow/Amplify Creations/Decay of Logos/DoLOptions.dat: + "/AppData/LocalLow/Amplify Creations/Decay of Logos/DoLOptions.dat": tags: - config when: - os: windows - /AppData/LocalLow/Amplify Creations/Decay of Logos/DoLSave*.sav: + "/AppData/LocalLow/Amplify Creations/Decay of Logos/DoLSave*.sav": tags: - save when: @@ -137904,7 +138301,7 @@ Decay of Logos: installDir: Decay of Logos: {} launch: - /Decay of Logos.exe: + "/Decay of Logos.exe": - when: - os: windows store: steam @@ -137914,15 +138311,15 @@ Decay of Logos: - config steam: id: 759570 -'Decay: The Mare': +"Decay: The Mare": files: - /.local/share/Daedalic Entertainment GmbH/Decay - The Mare: + "/.local/share/Daedalic Entertainment GmbH/Decay - The Mare": tags: - config - save when: - os: linux - /Daedalic Entertainment GmbH/Decay - The Mare: + "/Daedalic Entertainment GmbH/Decay - The Mare": tags: - config - save @@ -137931,15 +138328,15 @@ Decay of Logos: installDir: Decay - The Mare: {} launch: - /Decay - The Mare.app: + "/Decay - The Mare.app": - when: - os: mac store: steam - /Decay - The Mare.exe: + "/Decay - The Mare.exe": - when: - os: windows store: steam - /Decay - The Mare.x86: + "/Decay - The Mare.x86": - when: - os: linux store: steam @@ -137950,7 +138347,7 @@ Decaying West: id: 819130 Deceit: files: - /Saved Games/deceit: + "/Saved Games/deceit": tags: - config when: @@ -137958,8 +138355,8 @@ Deceit: installDir: Deceit: {} launch: - /start_protected_game.exe: - - arguments: '-project Deceit.crygame' + "/start_protected_game.exe": + - arguments: "-project Deceit.crygame" when: - store: steam steam: @@ -137968,7 +138365,7 @@ Deceit 2: installDir: Deceit 2: {} launch: - /start_protected_game.exe: + "/start_protected_game.exe": - when: - bit: 64 os: windows @@ -137979,8 +138376,8 @@ Deceive Inc.: installDir: DeceiveInc: {} launch: - /DeceiveInc: - - arguments: '-nosplash' + "/DeceiveInc": + - arguments: "-nosplash" when: - os: linux store: steam @@ -137989,9 +138386,9 @@ Deceive Inc.: Deceiver: steam: id: 728100 -'Decision: Red Daze': +"Decision: Red Daze": files: - low/FlyAnvil/DecisionRedDaze: + "low/FlyAnvil/DecisionRedDaze": tags: - config - save @@ -138005,7 +138402,7 @@ Deceiver: installDir: Decision Red Daze: {} launch: - /DecisionRedDaze.exe: + "/DecisionRedDaze.exe": - when: - bit: 64 os: windows @@ -138016,50 +138413,50 @@ Decisions: installDir: Decisions: {} launch: - /Decisions.exe.exe: + "/Decisions.exe.exe": - when: - store: steam steam: id: 917710 -'Decisive Campaigns: Barbarossa': +"Decisive Campaigns: Barbarossa": installDir: Decisive Campaigns Barbarossa: {} launch: - /autorun.exe: + "/autorun.exe": - when: - os: windows store: steam steam: id: 454530 -'Decisive Campaigns: Case Blue': +"Decisive Campaigns: Case Blue": installDir: Decisive Campaigns Case Blue: {} launch: - /autorun.exe: + "/autorun.exe": - when: - os: windows store: steam steam: id: 354600 -'Decisive Campaigns: The Blitzkrieg from Warsaw to Paris': +"Decisive Campaigns: The Blitzkrieg from Warsaw to Paris": installDir: Decisive Campaigns The Blitzkrieg from Warsaw to Paris: {} launch: - /autorun.exe: + "/autorun.exe": - when: - os: windows store: steam steam: id: 337760 -Deck 'Em!: +"Deck 'Em!": installDir: - Deck 'Em!: {} + "Deck 'Em!": {} launch: - /Deck 'Em!.exe: + "/Deck 'Em!.exe": - when: - os: windows store: steam - /DeckEm.app: + "/DeckEm.app": - when: - os: mac store: steam @@ -138069,7 +138466,7 @@ Deck Box Dungeons: installDir: Deck Box Dungeons: {} launch: - /DeckBoxDungeons.exe: + "/DeckBoxDungeons.exe": - when: - os: windows store: steam @@ -138079,7 +138476,7 @@ Deck Casters: installDir: Deck Casters: {} launch: - /DeckCasters.exe: + "/DeckCasters.exe": - when: - os: windows store: steam @@ -138089,7 +138486,7 @@ Deck Hunter: installDir: Deck Hunter: {} launch: - /DeckHunter.exe: + "/DeckHunter.exe": - when: - os: windows store: steam @@ -138099,11 +138496,11 @@ Deck of Ashes: installDir: Deck of Ashes: {} launch: - /Deck of Ashes.app: + "/Deck of Ashes.app": - when: - os: mac store: steam - /Deck of Ashes.exe: + "/Deck of Ashes.exe": - when: - os: windows store: steam @@ -138113,12 +138510,12 @@ Deckbound Heroes: installDir: Deckbound Heroes (Open Beta): {} launch: - /Deckbound Heroes (Open Beta).app: + "/Deckbound Heroes (Open Beta).app": - arguments: stlaunch when: - os: mac store: steam - /DeckboundHeroesOpenBeta.exe: + "/DeckboundHeroesOpenBeta.exe": - arguments: stlaunch when: - os: windows @@ -138129,7 +138526,7 @@ Decker: installDir: Decker: {} launch: - /decker.exe: + "/decker.exe": - when: - os: windows store: steam @@ -138139,7 +138536,7 @@ Decoherence: installDir: Decoherence: {} launch: - /Decoherence.exe: + "/Decoherence.exe": - when: - bit: 64 os: windows @@ -138153,7 +138550,7 @@ Deconstruction Lab: installDir: Deconstruction Lab: {} launch: - /PROJECT.exe: + "/PROJECT.exe": - when: - os: windows store: steam @@ -138163,15 +138560,15 @@ Deconstructor: installDir: Deconstructor: {} launch: - /Deconstructor.app/Contents/MacOS/Deconstructor: + "/Deconstructor.app/Contents/MacOS/Deconstructor": - when: - os: mac store: steam - /Deconstructor.exe: + "/Deconstructor.exe": - when: - os: windows store: steam - /Deconstructor.x86: + "/Deconstructor.x86": - when: - os: linux store: steam @@ -138184,25 +138581,25 @@ Decromancer: installDir: Decromancer: {} launch: - /Decromancer.x86: - - arguments: '-popupwindow' + "/Decromancer.x86": + - arguments: "-popupwindow" when: - bit: 32 os: linux store: steam - /Decromancer.x86_64: - - arguments: '-popupwindow' + "/Decromancer.x86_64": + - arguments: "-popupwindow" when: - bit: 64 os: linux store: steam - /decromancer.app: - - arguments: '-popupwindow' + "/decromancer.app": + - arguments: "-popupwindow" when: - os: mac store: steam - /decromancer.exe: - - arguments: '-popupwindow' + "/decromancer.exe": + - arguments: "-popupwindow" when: - os: windows store: steam @@ -138212,7 +138609,7 @@ Ded Inside: installDir: Ded Inside: {} launch: - /Ded Inside.exe: + "/Ded Inside.exe": - when: - store: steam steam: @@ -138221,19 +138618,19 @@ Deep 8: installDir: DEEP 8: {} launch: - /aPLAYERMAC: - - arguments: '--project-path deep8:// --fps-limit 60' + "/aPLAYERMAC": + - arguments: "--project-path deep8:// --fps-limit 60" when: - os: mac store: steam - /aPLAYERWINDOWS.exe: - - arguments: '--project-path deep8:// --fps-limit 60' + "/aPLAYERWINDOWS.exe": + - arguments: "--project-path deep8:// --fps-limit 60" when: - bit: 32 os: windows store: steam - /aPlayerWindows64bit.exe: - - arguments: '--project-path deep8:// --fps-limit 60' + "/aPlayerWindows64bit.exe": + - arguments: "--project-path deep8:// --fps-limit 60" when: - bit: 64 os: windows @@ -138244,16 +138641,16 @@ Deep Below: installDir: Deep Below: {} launch: - /Deep_Below.exe: + "/Deep_Below.exe": - when: - bit: 64 os: windows store: steam steam: id: 526470 -'Deep Black: Reloaded': +"Deep Black: Reloaded": files: - /DeepBlackReloaded: + "/DeepBlackReloaded": tags: - config - save @@ -138262,7 +138659,7 @@ Deep Below: installDir: Deep Black Reloaded: {} launch: - /deepblack.exe: + "/deepblack.exe": - when: - store: steam steam: @@ -138271,20 +138668,20 @@ Deep Blue: installDir: Deep Blue: {} launch: - /Contents/MacOS/Mac: + "/Contents/MacOS/Mac": - when: - os: mac store: steam - /Deep Blue.exe: + "/Deep Blue.exe": - when: - os: windows store: steam - /Deep Blue.x86: + "/Deep Blue.x86": - when: - bit: 32 os: linux store: steam - /Deep Blue.x86_64: + "/Deep Blue.x86_64": - when: - bit: 64 os: linux @@ -138295,12 +138692,12 @@ Deep Dark Dungeon: installDir: Deep Dark Dungeon: {} launch: - /Deep Dark Dungeon.app/Contents/MacOS/Deep Dark Dungeon: + "/Deep Dark Dungeon.app/Contents/MacOS/Deep Dark Dungeon": - when: - bit: 64 os: mac store: steam - /Deep Dark Dungeon.exe: + "/Deep Dark Dungeon.exe": - when: - os: windows store: steam @@ -138310,7 +138707,7 @@ Deep Dark Fantasies: installDir: Deep Dark Fantasies: {} launch: - /Deep_Dark_Fantasies.exe: + "/Deep_Dark_Fantasies.exe": - when: - os: windows store: steam @@ -138320,7 +138717,7 @@ Deep Dark Fight: installDir: DeepDarkFight: {} launch: - /DDF.exe: + "/DDF.exe": - when: - os: windows store: steam @@ -138330,7 +138727,7 @@ Deep Dark Labyrinth: installDir: Deep Dark Labyrinth: {} launch: - /Deep_Dark_Labyrinth.exe: + "/Deep_Dark_Labyrinth.exe": - when: - store: steam steam: @@ -138341,7 +138738,7 @@ Deep Diving Simulator: installDir: Deep Diving Simulator: {} launch: - /Deep Diving Simulator.exe: + "/Deep Diving Simulator.exe": - when: - store: steam steam: @@ -138351,11 +138748,11 @@ Deep Diving VR: Deep Diving VR: {} steam: id: 1104050 -'Deep Dungeon: Gym': +"Deep Dungeon: Gym": installDir: Deep Dungeon Gym: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -138363,7 +138760,7 @@ Deep Diving VR: id: 1067050 Deep Dungeons of Doom: files: - /com.bossa.ddd/Local Store/#SharedObjects/ddd-0.1-SNAPSHOT.swf: + "/com.bossa.ddd/Local Store/#SharedObjects/ddd-0.1-SNAPSHOT.swf": tags: - save when: @@ -138371,21 +138768,21 @@ Deep Dungeons of Doom: installDir: deepdungeonsofdoom: {} launch: - /DDD.exe: + "/DDD.exe": - when: - os: windows store: steam - /ddd.app: + "/ddd.app": - when: - os: mac store: steam steam: id: 325090 -'Deep Eclipse: New Space Odyssey': +"Deep Eclipse: New Space Odyssey": installDir: Deep Eclipse: {} launch: - /DeepEclipse.exe: + "/DeepEclipse.exe": - when: - bit: 32 os: windows @@ -138404,7 +138801,7 @@ Deep GachiGASM: installDir: Deep GachiGASM: {} launch: - /Deep GachiGASM.exe: + "/Deep GachiGASM.exe": - when: - os: windows store: steam @@ -138414,7 +138811,7 @@ Deep Hole: installDir: DEEP HOLE: {} launch: - /DEEPHOLE.exe: + "/DEEPHOLE.exe": - when: - os: windows store: steam @@ -138424,7 +138821,7 @@ Deep Horizon: installDir: Deep Horizon: {} launch: - /DeepHorizon.exe: + "/DeepHorizon.exe": - when: - store: steam steam: @@ -138433,7 +138830,7 @@ Deep Noise: installDir: Deep Noise: {} launch: - /Deep Noise.exe: + "/Deep Noise.exe": - when: - os: windows store: steam @@ -138443,7 +138840,7 @@ Deep Ocean Rush: installDir: Deep Ocean Rush: {} launch: - /DeepOceanRush.exe: + "/DeepOceanRush.exe": - when: - os: windows store: steam @@ -138452,22 +138849,22 @@ Deep Ocean Rush: Deep Ones: steam: id: 696730 -'Deep Race: Battle': +"Deep Race: Battle": installDir: Deep Race Battle: {} launch: - /CarBattle.exe: + "/CarBattle.exe": - when: - bit: 64 os: windows store: steam steam: id: 1136830 -'Deep Race: Space': +"Deep Race: Space": installDir: Deep Race Space: {} launch: - /spacerace.exe: + "/spacerace.exe": - when: - bit: 64 os: windows @@ -138479,23 +138876,23 @@ Deep Rest: id: 880700 Deep Rock Galactic: files: - /FSD/Saved/Config/WinGDK/*.ini: + "/FSD/Saved/Config/WinGDK/*.ini": tags: - config when: - os: windows store: microsoft - /FSD/Saved/Config/WindowsNoEditor/GameUserSettings.ini: + "/FSD/Saved/Config/WindowsNoEditor/GameUserSettings.ini": tags: - config when: - os: windows - /FSD/Saved/SaveGames/*.sav: + "/FSD/Saved/SaveGames/*.sav": tags: - save when: - os: windows - '/Packages/CoffeeStainStudios.DeepRockGalactic_496a1srhmar9w/SystemAppData/wgs/[long alphanumeric sequence folder]/[long alphanumeric sequence folder]/[long alphanumeric sequence file (this file is actually an unnamed .sav file and can be used with steam as well)]': + "/Packages/CoffeeStainStudios.DeepRockGalactic_496a1srhmar9w/SystemAppData/wgs/[long alphanumeric sequence folder]/[long alphanumeric sequence folder]/[long alphanumeric sequence file (this file is actually an unnamed .sav file and can be used with steam as well)]": tags: - save when: @@ -138513,8 +138910,8 @@ Deep Rock Galactic: installDir: Deep Rock Galactic: {} launch: - /FSD.exe: - - arguments: '-nohmd' + "/FSD.exe": + - arguments: "-nohmd" when: - bit: 64 os: windows @@ -138525,18 +138922,18 @@ Deep Sea Endurance: installDir: DSE: {} launch: - /DSE.exe: + "/DSE.exe": - when: - bit: 64 os: windows store: steam steam: id: 989270 -'Deep Sea Tycoon: Diver''s Paradise': +"Deep Sea Tycoon: Diver's Paradise": installDir: DeepSeaTycoon DiversParadise: {} launch: - /DeepSeaTycoon.exe: + "/DeepSeaTycoon.exe": - when: - os: windows store: steam @@ -138544,12 +138941,12 @@ Deep Sea Endurance: id: 1113380 Deep Sixed: files: - /Deep Sixed: + "/Deep Sixed": tags: - config when: - os: windows - /Deep Sixed/saves: + "/Deep Sixed/saves": tags: - save when: @@ -138557,15 +138954,15 @@ Deep Sixed: installDir: Deep Sixed: {} launch: - /Deep Sixed.app/Contents/MacOS/Deep Sixed: + "/Deep Sixed.app/Contents/MacOS/Deep Sixed": - when: - os: mac store: steam - /DeepSixed_win32.exe: + "/DeepSixed_win32.exe": - when: - os: windows store: steam - /run_game: + "/run_game": - when: - os: linux store: steam @@ -138573,17 +138970,17 @@ Deep Sixed: id: 591000 Deep Sky Derelicts: files: - /.config/unity3d/Snowhound/Deep Sky Derelicts: + "/.config/unity3d/Snowhound/Deep Sky Derelicts": tags: - save when: - os: linux - /AppData/LocalLow/Snowhound/Deep Sky Derelicts: + "/AppData/LocalLow/Snowhound/Deep Sky Derelicts": tags: - save when: - os: windows - /userdata//698640/remote: + "/userdata//698640/remote": tags: - save when: @@ -138593,15 +138990,15 @@ Deep Sky Derelicts: installDir: Deep Sky Derelicts: {} launch: - /Deep Sky Derelicts.app/Contents/MacOS/Deep Sky Derelicts: + "/Deep Sky Derelicts.app/Contents/MacOS/Deep Sky Derelicts": - when: - os: mac store: steam - /Deep Sky Derelicts.exe: + "/Deep Sky Derelicts.exe": - when: - os: windows store: steam - /run_dsd.sh: + "/run_dsd.sh": - when: - bit: 64 os: linux @@ -138616,7 +139013,7 @@ Deep Sleep Trilogy: installDir: Deep Sleep Trilogy: {} launch: - /DeepSleep.exe: + "/DeepSleep.exe": - when: - os: windows store: steam @@ -138626,7 +139023,7 @@ Deep Sorrow: installDir: Deep Sorrow: {} launch: - /DeepSorrow.exe: + "/DeepSorrow.exe": - when: - bit: 64 os: windows @@ -138637,7 +139034,7 @@ Deep Space: installDir: Deep Space: {} launch: - /Deep Space.exe: + "/Deep Space.exe": - when: - os: windows store: steam @@ -138647,7 +139044,7 @@ Deep Space Anomaly: installDir: DEEP SPACE ANOMALY: {} launch: - /DEEP SPACE ANOMALY.exe: + "/DEEP SPACE ANOMALY.exe": - when: - os: windows store: steam @@ -138657,13 +139054,13 @@ Deep Space Battle Simulator: installDir: Deep Space: {} launch: - /DeepSpace.exe: + "/DeepSpace.exe": - when: - bit: 64 os: windows store: steam - /DeepSpace.sh: - - arguments: '-opengl4' + "/DeepSpace.sh": + - arguments: "-opengl4" when: - bit: 64 os: linux @@ -138674,12 +139071,12 @@ Deep Space Dash: installDir: DeepSpaceDash: {} launch: - /32/WindowsNoEditor/DeepSpaceDash2_0.exe: + "/32/WindowsNoEditor/DeepSpaceDash2_0.exe": - when: - bit: 32 os: windows store: steam - /64/WindowsNoEditor/DeepSpaceDash2_0.exe: + "/64/WindowsNoEditor/DeepSpaceDash2_0.exe": - when: - bit: 64 os: windows @@ -138690,7 +139087,7 @@ Deep Space Shooter: installDir: Deep Space Shooter: {} launch: - /Deep Space Shooter.exe: + "/Deep Space Shooter.exe": - when: - os: windows store: steam @@ -138698,7 +139095,7 @@ Deep Space Shooter: id: 972280 Deep Space Waifu: files: - /Deep Space Waifu_Data/WaifuArouse.save: + "/Deep Space Waifu_Data/WaifuArouse.save": tags: - save when: @@ -138706,15 +139103,15 @@ Deep Space Waifu: installDir: Deep Space Waifu: {} launch: - /Deep Space Waifu.exe: + "/Deep Space Waifu.exe": - when: - os: windows store: steam steam: id: 639790 -'Deep Space Waifu: Fantasy': +"Deep Space Waifu: Fantasy": files: - /Deep Space Waifu Fantasy_Data/WaifuFantasy.save: + "/Deep Space Waifu Fantasy_Data/WaifuFantasy.save": tags: - save when: @@ -138722,15 +139119,15 @@ Deep Space Waifu: installDir: Deep Space Waifu Fantasy: {} launch: - /Deep Space Waifu Fantasy.exe: + "/Deep Space Waifu Fantasy.exe": - when: - os: windows store: steam steam: id: 859680 -'Deep Space Waifu: Flat Justice Version': +"Deep Space Waifu: Flat Justice Version": files: - /Deep Space Waifu Flat Justice_Data/WaifuFlatJustice.save: + "/Deep Space Waifu Flat Justice_Data/WaifuFlatJustice.save": tags: - save when: @@ -138738,22 +139135,22 @@ Deep Space Waifu: installDir: Deep Space Waifu Justice: {} launch: - /Deep Space Waifu Flat Justice.exe: + "/Deep Space Waifu Flat Justice.exe": - when: - os: windows store: steam registry: - 'HKEY_CURRENT_USER/Software/Hammerfist/Deep Space Waifu: Flat Justice': + "HKEY_CURRENT_USER/Software/Hammerfist/Deep Space Waifu: Flat Justice": tags: - config steam: id: 639780 -'Deep Space Waifu: Legends': +"Deep Space Waifu: Legends": steam: id: 1170620 -'Deep Space Waifu: Nekomimi': +"Deep Space Waifu: Nekomimi": files: - /Deep Space Waifu Nekomimi_Data/WaifuNekomimi.save: + "/Deep Space Waifu Nekomimi_Data/WaifuNekomimi.save": tags: - save when: @@ -138761,15 +139158,15 @@ Deep Space Waifu: installDir: Deep Space Waifu Nekomimi: {} launch: - /Deep Space Waifu Nekomimi.exe: + "/Deep Space Waifu Nekomimi.exe": - when: - os: windows store: steam steam: id: 868980 -'Deep Space Waifu: World': +"Deep Space Waifu: World": files: - /Deep Space Waifu World_Data/WaifuWorld.save: + "/Deep Space Waifu World_Data/WaifuWorld.save": tags: - save when: @@ -138777,17 +139174,17 @@ Deep Space Waifu: installDir: Deep Space Waifu World: {} launch: - /Deep Space Waifu World.exe: + "/Deep Space Waifu World.exe": - when: - os: windows store: steam steam: id: 872130 -'Deep Space: Unknown Universe': +"Deep Space: Unknown Universe": installDir: Deep Space Unknown Universe: {} launch: - /DeepSpace.exe: + "/DeepSpace.exe": - when: - store: steam steam: @@ -138796,32 +139193,38 @@ Deep The Game: installDir: Deep the Game: {} launch: - /deep.app: + "/deep.app": - when: - os: mac store: steam - /nw: + "/nw": - arguments: chmod a+x when: - bit: 32 os: linux store: steam - /nw.exe: + - bit: 64 + os: linux + store: steam + "/nw.exe": - when: - bit: 32 os: windows store: steam + - bit: 64 + os: windows + store: steam steam: id: 1046470 Deep Voyage: installDir: Deep Voyage: {} launch: - /DeepVoyage.app/Contents/MacOS/dv: + "/DeepVoyage.app/Contents/MacOS/dv": - when: - os: mac store: steam - /dv.exe: + "/dv.exe": - when: - os: windows store: steam @@ -138829,13 +139232,13 @@ Deep Voyage: id: 850340 Deep under the Sky: files: - /Library/Preferences/com.richColin.DeepUnderTheSky: + "/Library/Preferences/com.richColin.DeepUnderTheSky": tags: - config - save when: - os: mac - /com.richColin.DeepUnderTheSky/Local Store: + "/com.richColin.DeepUnderTheSky/Local Store": tags: - config - save @@ -138844,21 +139247,21 @@ Deep under the Sky: installDir: Deep Under the Sky: {} launch: - /DeepUnderTheSky.app/Contents/MacOS/DeepUnderTheSky: + "/DeepUnderTheSky.app/Contents/MacOS/DeepUnderTheSky": - when: - os: mac store: steam - /DeepUnderTheSky.exe: + "/DeepUnderTheSky.exe": - when: - os: windows store: steam steam: id: 315650 -'Deep, In the Forest': +"Deep, In the Forest": installDir: - 'Deep, In the Forest': {} + "Deep, In the Forest": {} launch: - '/Deep, In the Forest.exe': + "/Deep, In the Forest.exe": - when: - os: windows store: steam @@ -138868,7 +139271,7 @@ DeepLands: installDir: DeepLands: {} launch: - /DeepLands.exe: + "/DeepLands.exe": - when: - bit: 64 os: windows @@ -138877,12 +139280,12 @@ DeepLands: id: 854680 DeepWeb: files: - /DeepWeb/Saved/Config/WindowsNoEditor: + "/DeepWeb/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /DeepWeb/Saved/SaveGames/*.sav: + "/DeepWeb/Saved/SaveGames/*.sav": tags: - save when: @@ -138890,12 +139293,12 @@ DeepWeb: installDir: DeepWeb: {} launch: - /DeepWeb/Binaries/Win32/DeepWeb.exe: + "/DeepWeb/Binaries/Win32/DeepWeb.exe": - when: - bit: 32 os: windows store: steam - /DeepWeb/Binaries/Win64/DeepWeb.exe: + "/DeepWeb/Binaries/Win64/DeepWeb.exe": - when: - bit: 64 os: windows @@ -138906,7 +139309,7 @@ DeeperRed2028-WeAreEscape-: installDir: DeeperRed2028-WeAreEscape-: {} launch: - /WeAreEscape.exe: + "/WeAreEscape.exe": - when: - os: windows store: steam @@ -138916,7 +139319,7 @@ Deepest Chamber: installDir: Deepest Chamber: {} launch: - /DeepestChamber.exe: + "/DeepestChamber.exe": - when: - bit: 64 os: windows @@ -138927,12 +139330,15 @@ Deepest Sword: installDir: Deepest Sword: {} launch: - /Deepest Sword.exe: + "/Deepest Sword.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam - /DeepestSword.app/Contents/MacOS/Deepest Sword: + "/DeepestSword.app/Contents/MacOS/Deepest Sword": - when: - os: mac store: steam @@ -138946,7 +139352,7 @@ Deepsea Salvor: installDir: Deepsea Salvor: {} launch: - /starter.exe: + "/starter.exe": - when: - os: windows store: steam @@ -138956,11 +139362,11 @@ Deepworld: installDir: Deepworld: {} launch: - /Deepworld.app: + "/Deepworld.app": - when: - os: mac store: steam - /Deepworld.exe: + "/Deepworld.exe": - when: - os: windows store: steam @@ -138970,7 +139376,7 @@ Deer Hunt Legends: installDir: Deer Hunt Legends: {} launch: - /Game.win32.steam.exe: + "/Game.win32.steam.exe": - when: - store: steam steam: @@ -138979,21 +139385,21 @@ Deer Hunter II: installDir: deerhunterII: {} launch: - /deerhunterII.app: + "/deerhunterII.app": - when: - os: mac store: steam - /deerhunterII.exe: + "/deerhunterII.exe": - when: - os: windows store: steam steam: id: 1212190 -'Deer Hunter: Reloaded': +"Deer Hunter: Reloaded": installDir: Deer Hunter: {} launch: - /DeerHunter.exe: + "/DeerHunter.exe": - when: - os: windows store: steam @@ -139003,8 +139409,8 @@ Deer Man: installDir: Deer Man: {} launch: - /build.exe: - - arguments: '-vrmode None' + "/build.exe": + - arguments: "-vrmode None" when: - os: windows store: steam @@ -139014,7 +139420,7 @@ DeerHunterX: installDir: DeerHunterX: {} launch: - /deerhunterx.exe: + "/deerhunterx.exe": - when: - store: steam steam: @@ -139023,7 +139429,7 @@ Deez: installDir: Deez: {} launch: - /quest for death.exe: + "/quest for death.exe": - when: - store: steam steam: @@ -139032,15 +139438,15 @@ Default Dan: installDir: Default Dan: {} launch: - /DefaultDan.app: + "/DefaultDan.app": - when: - os: mac store: steam - /DefaultDan.exe: + "/DefaultDan.exe": - when: - os: windows store: steam - /runner: + "/runner": - when: - os: linux store: steam @@ -139050,7 +139456,7 @@ Default Unreal Physics and Assets AKA DUPA Project: installDir: DUPA_Project: {} launch: - /DUPA_Project.exe: + "/DUPA_Project.exe": - when: - bit: 64 os: windows @@ -139066,15 +139472,15 @@ Defect: installDir: Defect: {} launch: - /Defect.app: + "/Defect.app": - when: - os: mac store: steam - /Defect.exe: + "/Defect.exe": - when: - os: windows store: steam - /Defect.x86: + "/Defect.x86": - when: - os: linux store: steam @@ -139084,7 +139490,7 @@ Defection: installDir: Defection: {} launch: - /nrd_project.exe: + "/nrd_project.exe": - when: - os: windows store: steam @@ -139094,7 +139500,7 @@ Defective: installDir: DEFECTIVE: {} launch: - /DEFECTIVE.exe: + "/DEFECTIVE.exe": - when: - bit: 64 os: windows @@ -139105,8 +139511,8 @@ Defence Alliance 2: installDir: killingfloor: {} launch: - /System/KillingFloor.exe: - - arguments: '-mod=DA2' + "/System/KillingFloor.exe": + - arguments: "-mod=DA2" when: - store: steam steam: @@ -139115,7 +139521,7 @@ Defence War: installDir: Defence War: {} launch: - /DefenceWar.exe: + "/DefenceWar.exe": - when: - store: steam steam: @@ -139129,7 +139535,7 @@ Defend Felinearth: installDir: Defend Felinearth: {} launch: - /DefendFelinearth.exe: + "/DefendFelinearth.exe": - when: - os: windows store: steam @@ -139139,7 +139545,7 @@ Defend Home: installDir: Defend Home: {} launch: - /SpaceShooter.exe: + "/SpaceShooter.exe": - when: - os: windows store: steam @@ -139149,7 +139555,7 @@ Defend Them !: installDir: DefendThem: {} launch: - /DefendThem.exe: + "/DefendThem.exe": - when: - os: windows store: steam @@ -139159,7 +139565,7 @@ Defend Your Buttress: installDir: Defend Your Buttress: {} launch: - /DYB.exe: + "/DYB.exe": - when: - os: windows store: steam @@ -139169,7 +139575,7 @@ Defend Your Castle: installDir: Defend Your Castle: {} launch: - /dyc.exe: + "/dyc.exe": - when: - bit: 32 os: windows @@ -139180,19 +139586,19 @@ Defend Your Crypt: installDir: Defend your Crypt: {} launch: - /DefendYourCrypt.app/Contents/MacOS/DefendYourCrypt: + "/DefendYourCrypt.app/Contents/MacOS/DefendYourCrypt": - when: - os: mac store: steam - /DefendYourCrypt.exe: + "/DefendYourCrypt.exe": - when: - os: windows store: steam - /DefendYourCrypt_Lightning.app/Contents/MacOS/DefendYourCrypt: + "/DefendYourCrypt_Lightning.app/Contents/MacOS/DefendYourCrypt": - when: - os: mac store: steam - /DefendYourCrypt_light.exe: + "/DefendYourCrypt_light.exe": - when: - os: windows store: steam @@ -139202,15 +139608,15 @@ Defend Your Kingdom: installDir: Defend Your Kingdom: {} launch: - /DYK_Linux.x86: + "/DYK_Linux.x86": - when: - os: linux store: steam - /DYK_Windows.exe: + "/DYK_Windows.exe": - when: - os: windows store: steam - /Mac.app: + "/Mac.app": - when: - os: mac store: steam @@ -139218,12 +139624,12 @@ Defend Your Kingdom: id: 653780 Defend Your Life!: files: - /unity3d/Alda Games s.r.o./Defend Your Life!: + "/unity3d/Alda Games s.r.o./Defend Your Life!": tags: - config when: - os: linux - /unity3d/Alda Games s.r.o./Defend Your Life!/prefs: + "/unity3d/Alda Games s.r.o./Defend Your Life!/prefs": tags: - save when: @@ -139231,15 +139637,15 @@ Defend Your Life!: installDir: DYL: {} launch: - /dyl.app: + "/dyl.app": - when: - os: mac store: steam - /dyl.exe: + "/dyl.exe": - when: - os: windows store: steam - /dyl.x86: + "/dyl.x86": - when: - os: linux store: steam @@ -139254,11 +139660,11 @@ Defend the Cake: installDir: Defend the Cake: {} launch: - /Cake.app/Contents/MacOS/Cake: + "/Cake.app/Contents/MacOS/Cake": - when: - os: mac store: steam - /Defend The Cake.exe: + "/Defend The Cake.exe": - when: - os: windows store: steam @@ -139268,44 +139674,44 @@ Defend the Highlands: installDir: Defend The Highlands: {} launch: - /Defend The Highlands.app: + "/Defend The Highlands.app": - when: - os: mac store: steam - /Defend The Highlands.x86: + "/Defend The Highlands.x86": - when: - bit: 32 os: linux store: steam - /Defend The Highlands.x86_64: + "/Defend The Highlands.x86_64": - when: - bit: 64 os: linux store: steam - /Defend the Highlands.exe: + "/Defend the Highlands.exe": - when: - os: windows store: steam steam: id: 374830 -'Defend the Highlands: World Tour': +"Defend the Highlands: World Tour": installDir: Defend the Highlands World Tour: {} launch: - /Defend the Highlands World Tour.app: + "/Defend the Highlands World Tour.app": - when: - os: mac store: steam - /Defend the Highlands World Tour.exe: + "/Defend the Highlands World Tour.exe": - when: - os: windows store: steam - /Defend the Highlands World Tour.x86: + "/Defend the Highlands World Tour.x86": - when: - bit: 32 os: linux store: steam - /Defend the Highlands World Tour.x86_64: + "/Defend the Highlands World Tour.x86_64": - when: - bit: 64 os: linux @@ -139316,11 +139722,11 @@ Defend the Keep: installDir: DefendTheKeep: {} launch: - /DefendTheKeep.exe: + "/DefendTheKeep.exe": - when: - os: windows store: steam - /DefendTheKeep.sh: + "/DefendTheKeep.sh": - when: - os: linux store: steam @@ -139335,7 +139741,7 @@ Defend the Rook: installDir: Defend The Rook: {} launch: - /Defend The Rook.exe: + "/Defend The Rook.exe": - when: - store: steam steam: @@ -139344,7 +139750,7 @@ Defender 3D: installDir: 3D Defender: {} launch: - /Defender.exe: + "/Defender.exe": - when: - os: windows store: steam @@ -139357,7 +139763,7 @@ Defender of Earth vs The Alien Armada: installDir: DEFENDER OF EARTH VS THE ALIEN ARMADA: {} launch: - /DOE_v1.4.exe: + "/DOE_v1.4.exe": - when: - bit: 64 os: windows @@ -139370,33 +139776,33 @@ Defender of the Crown: installDir: Cinemaware Anthology 1986-1991: {} launch: - /Anthology.exe: + "/Anthology.exe": - when: - os: windows store: steam steam: id: 326590 -'Defender''s Quest: Valley of the Forgotten': +"Defender's Quest: Valley of the Forgotten": files: - /Library/Preferences/DefendersQuest/Local Store: + "/Library/Preferences/DefendersQuest/Local Store": tags: - config - save when: - os: mac - /DefendersQuest/Local Store: + "/DefendersQuest/Local Store": tags: - config - save when: - os: windows - /DefendersQuest/Local Store: + "/DefendersQuest/Local Store": tags: - config - save when: - os: linux - /LevelUpLabs/DefendersQuest: + "/LevelUpLabs/DefendersQuest": tags: - config - save @@ -139412,7 +139818,7 @@ Defenders: installDir: DEFENDERS: {} launch: - /DEFENDERS.exe: + "/DEFENDERS.exe": - when: - os: windows store: steam @@ -139422,7 +139828,7 @@ Defenders of Ardania: installDir: Defenders of Ardania: {} launch: - /DOA.exe: + "/DOA.exe": - when: - store: steam steam: @@ -139431,7 +139837,7 @@ Defenders of Ekron: installDir: Defenders of Ekron: {} launch: - /Defenders of Ekron.exe: + "/Defenders of Ekron.exe": - when: - os: windows store: steam @@ -139441,7 +139847,7 @@ Defenders of Ekron - Definitive Edition: installDir: Defenders of Ekron - Definitive Edition: {} launch: - /Defenders of Ekron - Definitive Edition.exe: + "/Defenders of Ekron - Definitive Edition.exe": - when: - store: steam steam: @@ -139450,7 +139856,7 @@ Defenders of Tetsoidea I: installDir: Defenders of Tetsoidea: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -139460,7 +139866,7 @@ Defenders of Tetsoidea II: installDir: Defenders of Tetsoidea II: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -139470,11 +139876,11 @@ Defenders of Time: installDir: Defenders of Time: {} launch: - /dtc.app: + "/dtc.app": - when: - os: mac store: steam - /dtc.exe: + "/dtc.exe": - when: - os: windows store: steam @@ -139484,7 +139890,7 @@ Defenders of the Fallen Island: installDir: DEFENDERS OF THE FALLEN ISLAND: {} launch: - /DOTFI.exe: + "/DOTFI.exe": - when: - os: windows store: steam @@ -139494,7 +139900,7 @@ Defenders of the Last Colony: installDir: DOTLC: {} launch: - /Defenders.exe: + "/Defenders.exe": - when: - bit: 64 os: windows @@ -139510,7 +139916,7 @@ Defending Camelot: installDir: DefendingCamelot: {} launch: - /DefendingCamelot.exe: + "/DefendingCamelot.exe": - when: - os: windows store: steam @@ -139520,7 +139926,7 @@ Defending Frontiers: installDir: Defending Frontiers: {} launch: - /Defending Frontiers.exe: + "/Defending Frontiers.exe": - when: - store: steam steam: @@ -139529,7 +139935,7 @@ Defending Territory: installDir: DefendingTerritory: {} launch: - /DefendingTerritory.exe: + "/DefendingTerritory.exe": - when: - store: steam steam: @@ -139543,7 +139949,7 @@ Defendoooooor!!: installDir: Defendoooooor!!: {} launch: - /Defendooooor!!.exe.exe: + "/Defendooooor!!.exe.exe": - when: - os: windows store: steam @@ -139553,7 +139959,7 @@ Defense And Revenge: installDir: Defense and Revenge: {} launch: - /DaR.exe: + "/DaR.exe": - when: - os: windows store: steam @@ -139563,7 +139969,7 @@ Defense Clicker: installDir: Defense Clicker: {} launch: - /Defense Clicker.exe: + "/Defense Clicker.exe": - when: - os: windows store: steam @@ -139573,7 +139979,7 @@ Defense Contract: installDir: Defense Contract: {} launch: - /DefenseContract.exe: + "/DefenseContract.exe": - when: - os: windows store: steam @@ -139581,7 +139987,7 @@ Defense Contract: id: 907940 Defense Grid 2: files: - /userdata//221540/remote/profile: + "/userdata//221540/remote/profile": tags: - save when: @@ -139589,32 +139995,34 @@ Defense Grid 2: installDir: DefenseGrid2: {} launch: - /DefenseGrid2_Release.exe: + "/DefenseGrid2_Release.exe": - when: - os: windows store: steam - /run_dg2.sh: + "/run_dg2.sh": - when: + - os: mac + store: steam - os: linux store: steam steam: id: 221540 -'Defense Grid: The Awakening': +"Defense Grid: The Awakening": files: - /config.ini: + "/config.ini": tags: - config when: - store: steam - /DefenseGrid/config.ini: + "/DefenseGrid/config.ini": tags: - config when: - - store: epic + - os: windows installDir: DefenseGridTheAwakening: {} launch: - /DefenseGrid.exe: + "/DefenseGrid.exe": - when: - store: steam steam: @@ -139623,8 +140031,11 @@ Defense Task Force: installDir: Defense Task Force: {} launch: - /DefenseTaskForce.exe: + "/DefenseTaskForce.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam @@ -139632,12 +140043,12 @@ Defense Task Force: id: 720270 Defense Technica: files: - /My Games/DefenseTechnica/KeyData.conf: + "/My Games/DefenseTechnica/KeyData.conf": tags: - config when: - os: windows - /My Games/DefenseTechnica/TECHNICAEN.sav: + "/My Games/DefenseTechnica/TECHNICAEN.sav": tags: - save when: @@ -139645,11 +140056,11 @@ Defense Technica: installDir: DefenseTechnica: {} launch: - /DefenseMac.app/Contents/MacOS/Defense Technica: + "/DefenseMac.app/Contents/MacOS/Defense Technica": - when: - os: mac store: steam - /DefenseTechnica.exe: + "/DefenseTechnica.exe": - when: - os: windows store: steam @@ -139659,7 +140070,7 @@ Defense Warfare: installDir: Defense Warfare: {} launch: - /DefenseWarfare.exe: + "/DefenseWarfare.exe": - when: - os: windows store: steam @@ -139669,15 +140080,15 @@ Defense Zone: installDir: Defense Zone: {} launch: - /Defense Zone.app: + "/Defense Zone.app": - when: - os: mac store: steam - /Defense Zone.exe: + "/Defense Zone.exe": - when: - os: windows store: steam - /Defense Zone.x86_64: + "/Defense Zone.x86_64": - when: - os: linux store: steam @@ -139687,15 +140098,15 @@ Defense Zone 2: installDir: Defense zone 2: {} launch: - /Defense Zone 2.app: + "/Defense Zone 2.app": - when: - os: mac store: steam - /Defense Zone 2.exe: + "/Defense Zone 2.exe": - when: - os: windows store: steam - /Defense Zone 2.x86: + "/Defense Zone 2.x86": - when: - os: linux store: steam @@ -139705,20 +140116,20 @@ Defense Zone 3 Ultra HD: installDir: Defense Zone 3 Ultra HD: {} launch: - /Defense Zone 3 Ultra HD.app: + "/Defense Zone 3 Ultra HD.app": - when: - os: mac store: steam - /Defense Zone 3 Ultra HD.exe: + "/Defense Zone 3 Ultra HD.exe": - when: - bit: 64 os: windows store: steam - /Defense Zone 3 Ultra HD.x86_64: + "/Defense Zone 3 Ultra HD.x86_64": - when: - os: linux store: steam - /x86/Defense Zone 3 Ultra HD.exe: + "/x86/Defense Zone 3 Ultra HD.exe": - when: - bit: 32 os: windows @@ -139733,15 +140144,15 @@ Defense of Castle Chilly: Defense of Castle Chilly: {} steam: id: 523550 -'Defense of Egypt: Cleopatra Mission': +"Defense of Egypt: Cleopatra Mission": installDir: Defense of Egypt Cleopatra Mission: {} launch: - /DefenseOfEgypt.app: + "/DefenseOfEgypt.app": - when: - os: mac store: steam - /DefenseOfEgypt.exe: + "/DefenseOfEgypt.exe": - when: - os: windows store: steam @@ -139751,11 +140162,11 @@ Defense of Greece TD: installDir: Defense Of Greece TD: {} launch: - /DefenseOfGrecce.exe: + "/DefenseOfGrecce.exe": - when: - os: windows store: steam - /DefenseOfGreece.app: + "/DefenseOfGreece.app": - when: - os: mac store: steam @@ -139763,7 +140174,7 @@ Defense of Greece TD: id: 537200 Defense of Roman Britain: files: - /RomanBritain: + "/RomanBritain": tags: - save when: @@ -139771,11 +140182,11 @@ Defense of Roman Britain: installDir: Defense of Roman Britain: {} launch: - /Defense of Roman Britain.app: + "/Defense of Roman Britain.app": - when: - os: mac store: steam - /RomanBritain.exe: + "/RomanBritain.exe": - when: - os: windows store: steam @@ -139785,7 +140196,7 @@ Defense of the Fantasy Robots: installDir: DefenseFRobots: {} launch: - /GameApplication.exe: + "/GameApplication.exe": - when: - os: windows store: steam @@ -139795,29 +140206,29 @@ Defense the Farm: installDir: Defense the Farm: {} launch: - /dtf.exe: + "/dtf.exe": - when: - store: steam steam: id: 866520 -'Defense: Abominations': +"Defense: Abominations": installDir: Defense Abominations: {} launch: - /DefenseAbominations.app/Contents/MacOS/DefenseAbominations: + "/DefenseAbominations.app/Contents/MacOS/DefenseAbominations": - when: - os: mac store: steam - /DefenseAbominations.exe: + "/DefenseAbominations.exe": - when: - os: windows store: steam - /DefenseAbominations.x86: + "/DefenseAbominations.x86": - when: - bit: 32 os: linux store: steam - /DefenseAbominations.x86_64: + "/DefenseAbominations.x86_64": - when: - bit: 64 os: linux @@ -139828,7 +140239,7 @@ Defentron: installDir: Defentron: {} launch: - /DEFENTRON.exe: + "/DEFENTRON.exe": - when: - bit: 64 os: windows @@ -139839,7 +140250,7 @@ Defiance: installDir: Defiance: {} launch: - /Patcher.exe: + "/Patcher.exe": - arguments: /steam when: - store: steam @@ -139849,8 +140260,8 @@ Defiance 2050: installDir: Defiance 2050: {} launch: - /GlyphClient.exe: - - arguments: '-steam' + "/GlyphClient.exe": + - arguments: "-steam" when: - store: steam steam: @@ -139859,18 +140270,21 @@ Deficis: installDir: Deficis: {} launch: - /Deficis.exe: + "/Deficis.exe": - when: - bit: 32 os: windows store: steam + - bit: 64 + os: windows + store: steam steam: id: 377220 Definitely Sneaky but Not Sneaky: installDir: Definitely Sneaky But Not Sneaky: {} launch: - /dsbns.x86_64: + "/dsbns.x86_64": - when: - bit: 64 os: linux @@ -139881,14 +140295,14 @@ Deflection Dimension: installDir: Deflection Dimension: {} launch: - /Deflection Dimension.exe: + "/Deflection Dimension.exe": - when: - store: steam steam: id: 859420 Deflector: files: - /AppData/LocalLow/Arrowfist Games/Deflector/Saves: + "/AppData/LocalLow/Arrowfist Games/Deflector/Saves": tags: - save when: @@ -139901,7 +140315,7 @@ Deflector: installDir: Deflector: {} launch: - /Deflector.exe: + "/Deflector.exe": - when: - os: windows store: steam @@ -139911,7 +140325,7 @@ Defoliation: installDir: Defoliation: {} launch: - /Defoliation.exe: + "/Defoliation.exe": - when: - os: windows store: steam @@ -139919,7 +140333,7 @@ Defoliation: id: 1033670 Deformers: files: - /_local/usersettings.json: + "/_local/usersettings.json": tags: - config when: @@ -139927,14 +140341,14 @@ Deformers: installDir: Deformers: {} launch: - /bin/win7/deformers.exe: + "/bin/win7/deformers.exe": - when: - store: steam steam: id: 491770 Defragmented: files: - /Defragmented_Data/Resources/datafiles: + "/Defragmented_Data/Resources/datafiles": tags: - save when: @@ -139942,15 +140356,15 @@ Defragmented: installDir: Defragmented: {} launch: - /Defragmented.app: + "/Defragmented.app": - when: - os: mac store: steam - /Defragmented.exe: + "/Defragmented.exe": - when: - os: windows store: steam - /Defragmented.x86: + "/Defragmented.x86": - when: - os: linux store: steam @@ -139960,11 +140374,11 @@ Defrain: installDir: Defrain: {} launch: - /Defrain_steam.x86: + "/Defrain_steam.x86": - when: - os: linux store: steam - /Defrain_steam_win.exe: + "/Defrain_steam_win.exe": - when: - os: windows store: steam @@ -139974,7 +140388,7 @@ Defunct: installDir: Defunct: {} launch: - /Defunct_x86.exe: + "/Defunct_x86.exe": - when: - os: windows store: steam @@ -139991,7 +140405,7 @@ Defuser VR: id: 589180 Defy Gravity Extended: files: - /Saved Games/Gravity/Gravity_Topher.xml: + "/Saved Games/Gravity/Gravity_Topher.xml": tags: - config - save @@ -140000,7 +140414,7 @@ Defy Gravity Extended: installDir: Defy Gravity: {} launch: - /DefyGravity.exe: + "/DefyGravity.exe": - when: - store: steam steam: @@ -140009,7 +140423,7 @@ Dega Madness: installDir: Dega Madness: {} launch: - /Dega_Madness.exe: + "/Dega_Madness.exe": - when: - os: windows store: steam @@ -140019,15 +140433,15 @@ Degauss: installDir: Degauss: {} launch: - /Degauss: + "/Degauss": - when: - os: linux store: steam - /Degauss.app/Contents/MacOS/Degauss: + "/Degauss.app/Contents/MacOS/Degauss": - when: - os: mac store: steam - /Degauss.exe: + "/Degauss.exe": - when: - os: windows store: steam @@ -140037,25 +140451,25 @@ Degeneration: installDir: Degeneration: {} launch: - /Degeneration.exe: + "/Degeneration.exe": - when: - os: windows store: steam steam: id: 881880 -'Degraman: Act I. Vincent & Cassel': +"Degraman: Act I. Vincent & Cassel": installDir: Degraman Act I. Vincent & Cassel: {} launch: - /D_Act_I-32.exe: + "/D_Act_I-32.exe": - when: - os: windows store: steam - /D_Act_I.app: + "/D_Act_I.app": - when: - os: mac store: steam - /D_Act_I.sh: + "/D_Act_I.sh": - when: - os: linux store: steam @@ -140065,7 +140479,7 @@ Degrees: installDir: Degrees: {} launch: - /nw.exe: + "/nw.exe": - when: - bit: 64 os: windows @@ -140076,7 +140490,7 @@ Degrees of Separation: installDir: Degrees of Separation: {} launch: - /dofs.exe: + "/dofs.exe": - when: - os: windows store: steam @@ -140086,7 +140500,7 @@ Dehumanized: installDir: Dehumanized: {} launch: - /Dehumanized.exe: + "/Dehumanized.exe": - when: - os: windows store: steam @@ -140096,7 +140510,7 @@ Deicide: installDir: Deicide: {} launch: - /CharacterSystem.exe: + "/CharacterSystem.exe": - when: - bit: 64 os: windows @@ -140107,11 +140521,11 @@ Deiland: installDir: Deiland: {} launch: - /Deiland.app: + "/Deiland.app": - when: - os: mac store: steam - /Deiland.exe: + "/Deiland.exe": - when: - os: windows store: steam @@ -140122,9 +140536,9 @@ Deiland: - save steam: id: 760620 -'Deiland: Pocket Planet': +"Deiland: Pocket Planet": files: - /AppData/LocalLow/Chibig/Deiland/Save/Main: + "/AppData/LocalLow/Chibig/Deiland/Save/Main": tags: - config - save @@ -140133,7 +140547,7 @@ Deiland: installDir: Deiland Pocket Planet Edition: {} launch: - /Deiland.exe: + "/Deiland.exe": - when: - os: windows store: steam @@ -140143,11 +140557,11 @@ Deios II // DEIDIA: installDir: Deios II DEIDIA: {} launch: - /DEIOS.app: + "/DEIOS.app": - when: - os: mac store: steam - /DeiosIIDeidia.exe: + "/DeiosIIDeidia.exe": - when: - os: windows store: steam @@ -140162,7 +140576,7 @@ Deity Driving: installDir: Deity Driving: {} launch: - /dd.exe: + "/dd.exe": - when: - os: windows store: steam @@ -140172,12 +140586,12 @@ Deity Empires: installDir: Deity Empires: {} launch: - /Launcher32.exe: + "/Launcher32.exe": - when: - bit: 32 os: windows store: steam - /Launcher64.exe: + "/Launcher64.exe": - when: - bit: 64 os: windows @@ -140188,15 +140602,15 @@ Deity Quest: installDir: Deity Quest: {} launch: - /DeityQuest: + "/DeityQuest": - when: - os: mac store: steam - /DeityQuest.exe: + "/DeityQuest.exe": - when: - os: windows store: steam - /DeityQuest.sh: + "/DeityQuest.sh": - when: - os: linux store: steam @@ -140206,7 +140620,7 @@ Delay: installDir: Delay: {} launch: - /Delay.exe: + "/Delay.exe": - when: - os: windows store: steam @@ -140216,7 +140630,7 @@ DelayedSun: installDir: DelayedSun: {} launch: - /DSR.exe: + "/DSR.exe": - when: - bit: 64 os: windows @@ -140227,11 +140641,11 @@ Delete: installDir: Delete: {} launch: - /Delete.app: + "/Delete.app": - when: - os: mac store: steam - /Delete.exe: + "/Delete.exe": - when: - os: windows store: steam @@ -140239,12 +140653,12 @@ Delete: id: 773670 Deleveled: files: - /AppData/LocalLow/The Quantum Astrophysicists Guild/Deleveled/NotAsImportantButStillImportantInfo.dontLook: + "/AppData/LocalLow/The Quantum Astrophysicists Guild/Deleveled/NotAsImportantButStillImportantInfo.dontLook": tags: - config when: - os: windows - /AppData/LocalLow/The Quantum Astrophysicists Guild/Deleveled/SuperImportantSaveInfo.dontLook: + "/AppData/LocalLow/The Quantum Astrophysicists Guild/Deleveled/SuperImportantSaveInfo.dontLook": tags: - save when: @@ -140252,16 +140666,16 @@ Deleveled: installDir: Deleveled: {} launch: - /Deleveled.exe: + "/Deleveled.exe": - when: - os: windows store: steam - /Deleveled.x86_64: + "/Deleveled.x86_64": - when: - bit: 64 os: linux store: steam - /Mac.app/Contents/MacOS/Deleveled: + "/Mac.app/Contents/MacOS/Deleveled": - when: - os: mac store: steam @@ -140271,99 +140685,99 @@ Deleveled: - config steam: id: 1045580 -Delicious - Emily's Christmas Carol: +"Delicious - Emily's Christmas Carol": installDir: Delicious - Emilys Christmas Carol: {} launch: - /d14.app/Contents/MacOS/d14: + "/d14.app/Contents/MacOS/d14": - when: - os: mac store: steam - /d14.exe: + "/d14.exe": - when: - os: windows store: steam steam: id: 544600 -Delicious - Emily's Home Sweet Home: +"Delicious - Emily's Home Sweet Home": installDir: - Delicious - Emily's Home Sweet Home: {} + "Delicious - Emily's Home Sweet Home": {} launch: - /Delicious 11 Mac Premium Steam.app/Contents/MacOS/Delicious 11 Mac Premium Steam: + "/Delicious 11 Mac Premium Steam.app/Contents/MacOS/Delicious 11 Mac Premium Steam": - when: - os: mac store: steam - /Delicious11.exe: + "/Delicious11.exe": - when: - os: windows store: steam steam: id: 561000 -Delicious - Emily's Hopes and Fears: +"Delicious - Emily's Hopes and Fears": installDir: - Delicious - Emily's Hopes and Fears: {} + "Delicious - Emily's Hopes and Fears": {} launch: - /Delicious 12 Mac Premium Steam.app/Contents/MacOS/Delicious 12 Mac Premium Steam: + "/Delicious 12 Mac Premium Steam.app/Contents/MacOS/Delicious 12 Mac Premium Steam": - when: - os: mac store: steam - /Delicious12.exe: + "/Delicious12.exe": - when: - os: windows store: steam steam: id: 550400 -Delicious - Emily's Message in a Bottle: +"Delicious - Emily's Message in a Bottle": installDir: - Delicious - Emily's Message in a Bottle: {} + "Delicious - Emily's Message in a Bottle": {} launch: - /Delicious - Emily's Message in a Bottle.app/Contents/MacOS/Delicious - Emily's Message in a Bottle: + "/Delicious - Emily's Message in a Bottle.app/Contents/MacOS/Delicious - Emily's Message in a Bottle": - when: - os: mac store: steam - /Delicious13Release.exe: + "/Delicious13Release.exe": - when: - os: windows store: steam steam: id: 540780 -Delicious - Emily's Miracle of Life: +"Delicious - Emily's Miracle of Life": installDir: - Delicious - Emily's Miracle of Life: {} + "Delicious - Emily's Miracle of Life": {} launch: - /Delicious - Emily's D15.app/Contents/MacOS/Delicious - Emily's D15: + "/Delicious - Emily's D15.app/Contents/MacOS/Delicious - Emily's D15": - when: - os: mac store: steam - /Delicious15.exe: + "/Delicious15.exe": - when: - os: windows store: steam steam: id: 623070 -Delicious - Emily's New Beginning: +"Delicious - Emily's New Beginning": installDir: - Delicious - Emily's New Beginning: {} + "Delicious - Emily's New Beginning": {} launch: - /Delicious 10 Mac Standard Steam.app/Contents/MacOS/Delicious 10 Mac Standard Steam: + "/Delicious 10 Mac Standard Steam.app/Contents/MacOS/Delicious 10 Mac Standard Steam": - when: - os: mac store: steam - /Delicious10.exe: + "/Delicious10.exe": - when: - os: windows store: steam steam: id: 544710 -Delicious - Emily's Road Trip: +"Delicious - Emily's Road Trip": installDir: - Delicious - Emily's Road Trip: {} + "Delicious - Emily's Road Trip": {} launch: - /Delicious17.app/Contents/MacOS/Delicious17: + "/Delicious17.app/Contents/MacOS/Delicious17": - when: - os: mac store: steam - /main_launcher.exe: + "/main_launcher.exe": - when: - os: windows store: steam @@ -140371,13 +140785,13 @@ Delicious - Emily's Road Trip: id: 1005130 Delicious - Moms vs Dads: installDir: - Delicious - Emily's 16: {} + "Delicious - Emily's 16": {} launch: - /Delicious16.app/Contents/MacOS/Delicious16: + "/Delicious16.app/Contents/MacOS/Delicious16": - when: - os: mac store: steam - /Delicious16.exe: + "/Delicious16.exe": - when: - os: windows store: steam @@ -140387,26 +140801,26 @@ Delicious! Pretty Girls Mahjong Solitaire: installDir: Delicious! Pretty Girls Mahjong Solitaire: {} launch: - /DeliciousPGMS.app: + "/DeliciousPGMS.app": - when: - os: mac store: steam - /DeliciousPGMS.exe: + "/DeliciousPGMS.exe": - when: - os: windows store: steam steam: id: 540610 -Delila's Gift: +"Delila's Gift": installDir: - Delila's Gift: {} + "Delila's Gift": {} steam: id: 538110 Delirium: installDir: Delirium: {} launch: - /Delirium1.1.1.exe: + "/Delirium1.1.1.exe": - when: - bit: 64 os: windows @@ -140417,7 +140831,7 @@ Delirium (2023): installDir: Delirium: {} launch: - /Delirium.exe: + "/Delirium.exe": - when: - bit: 64 os: windows @@ -140429,17 +140843,17 @@ Delirium VR: Delirium VR: {} steam: id: 1046670 -'Delirium: Bad Trip Edition': +"Delirium: Bad Trip Edition": steam: id: 798570 Deliver Us Mars: files: - /DeliverUsMars/Saved: + "/DeliverUsMars/Saved": tags: - save when: - os: windows - /DeliverUsMars/Saved/Config/WindowsNoEditor: + "/DeliverUsMars/Saved/Config/WindowsNoEditor": tags: - config when: @@ -140447,7 +140861,7 @@ Deliver Us Mars: installDir: Deliver Us Mars: {} launch: - /DeliverUsMars.exe: + "/DeliverUsMars.exe": - when: - bit: 64 os: windows @@ -140456,23 +140870,23 @@ Deliver Us Mars: id: 1345890 Deliver Us the Moon: files: - /MoonMan/Saved: + "/MoonMan/Saved": tags: - save when: - os: windows - /MoonMan/Saved/Config/WindowsNoEditor: + "/MoonMan/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /Packages/WiredProductions.DeliverUsTheMoonWin10_hxzk6evwjr6sy/LocalCache/Local/MoonMan/Saved: + "/Packages/WiredProductions.DeliverUsTheMoonWin10_hxzk6evwjr6sy/LocalCache/Local/MoonMan/Saved": tags: - save when: - os: windows store: microsoft - /Packages/WiredProductions.DeliverUsTheMoonWin10_hxzk6evwjr6sy/LocalCache/Local/MoonMan/Saved/Config/WindowsNoEditor: + "/Packages/WiredProductions.DeliverUsTheMoonWin10_hxzk6evwjr6sy/LocalCache/Local/MoonMan/Saved/Config/WindowsNoEditor": tags: - config when: @@ -140483,7 +140897,7 @@ Deliver Us the Moon: installDir: Deliver Us The Moon: {} launch: - /MoonMan.exe: + "/MoonMan.exe": - when: - os: windows store: steam @@ -140493,15 +140907,15 @@ Deliverace: installDir: Deliverace: {} launch: - /Deliverace.app: + "/Deliverace.app": - when: - os: mac store: steam - /Deliverace.exe: + "/Deliverace.exe": - when: - os: windows store: steam - /Deliverace.x86_64: + "/Deliverace.x86_64": - when: - os: linux store: steam @@ -140511,11 +140925,11 @@ Deliverance: installDir: Deliverance: {} launch: - /Deliverance.app: + "/Deliverance.app": - when: - os: mac store: steam - /Deliverance.exe: + "/Deliverance.exe": - when: - os: windows store: steam @@ -140525,7 +140939,7 @@ Delivered!: installDir: DELIVERED: {} launch: - /Delivered.exe: + "/Delivered.exe": - when: - os: windows store: steam @@ -140535,7 +140949,7 @@ Delivery: installDir: Delivery by Easyroad: {} launch: - /Delivery.exe: + "/Delivery.exe": - when: - os: windows store: steam @@ -140545,40 +140959,40 @@ Delivery Man Simulator: installDir: Delivery man simulator: {} launch: - /CS.exe: + "/CS.exe": - when: - os: windows store: steam steam: id: 840170 -'Delores: A Thimbleweed Park Mini-Adventure': +"Delores: A Thimbleweed Park Mini-Adventure": files: - /Library/Application Support/Terrible Toybox/Delores/Save.dat: + "/Library/Application Support/Terrible Toybox/Delores/Save.dat": tags: - save when: - os: mac - /Library/Application Support/Terrible Toybox/Delores/prefs.json: + "/Library/Application Support/Terrible Toybox/Delores/prefs.json": tags: - config when: - os: mac - /Terrible Toybox/Delores/Prefs.json: + "/Terrible Toybox/Delores/Prefs.json": tags: - config when: - os: windows - /Terrible Toybox/Delores/Save.dat: + "/Terrible Toybox/Delores/Save.dat": tags: - save when: - os: windows - /Terrible Toybox/Delores/Prefs.json: + "/Terrible Toybox/Delores/Prefs.json": tags: - config when: - os: linux - /Terrible Toybox/Delores/Save.dat: + "/Terrible Toybox/Delores/Save.dat": tags: - save when: @@ -140588,16 +141002,16 @@ Delivery Man Simulator: installDir: Delores: {} launch: - /Delores: + "/Delores": - when: - bit: 64 os: linux store: steam - /Delores.app/Contents/MacOS/Delores: + "/Delores.app/Contents/MacOS/Delores": - when: - os: mac store: steam - /Delores.exe: + "/Delores.exe": - when: - bit: 64 os: windows @@ -140608,7 +141022,7 @@ Delphinia Chronicle: installDir: Delphinia Chronicle: {} launch: - /DelphiniaChronicle.exe: + "/DelphiniaChronicle.exe": - when: - os: windows store: steam @@ -140618,7 +141032,7 @@ Delphyq: installDir: Delphyq: {} launch: - /Delphyq.exe: + "/Delphyq.exe": - when: - os: windows store: steam @@ -140628,7 +141042,7 @@ Delta: installDir: INTERPOINT: {} launch: - /INTERPOINT.exe: + "/INTERPOINT.exe": - when: - bit: 64 os: windows @@ -140637,12 +141051,12 @@ Delta: id: 1002020 Delta Force: files: - /df.cfg: + "/df.cfg": tags: - config when: - os: windows - /player#no.ply: + "/player#no.ply": tags: - save when: @@ -140652,19 +141066,19 @@ Delta Force: installDir: Delta Force: {} launch: - /Df.exe: + "/Df.exe": - when: - store: steam steam: id: 32620 Delta Force 2: files: - /df2.cfg: + "/df2.cfg": tags: - config when: - os: windows - /df2plyrs.sav: + "/df2plyrs.sav": tags: - save when: @@ -140674,22 +141088,22 @@ Delta Force 2: installDir: Delta Force 2: {} launch: - /Df2.exe: + "/Df2.exe": - when: - store: steam - /Df2med.exe: + "/Df2med.exe": - when: - store: steam steam: id: 32630 -'Delta Force: Black Hawk Down': +"Delta Force: Black Hawk Down": files: - /dfv.cfg: + "/dfv.cfg": tags: - config when: - os: windows - /dfvplr.sav: + "/dfvplr.sav": tags: - save when: @@ -140702,22 +141116,22 @@ Delta Force 2: installDir: Delta Force Black Hawk Down: {} launch: - /dfbhd.exe: + "/dfbhd.exe": - when: - store: steam - /dfbhdmed.exe: + "/dfbhdmed.exe": - when: - store: steam steam: id: 32670 -'Delta Force: Land Warrior': +"Delta Force: Land Warrior": files: - /dflw.cfg: + "/dflw.cfg": tags: - config when: - os: windows - /dflwplyr.sav: + "/dflwplyr.sav": tags: - save when: @@ -140727,22 +141141,22 @@ Delta Force 2: installDir: Delta Force Land Warrior: {} launch: - /Dflw.exe: + "/Dflw.exe": - when: - store: steam - /Dflwmedc.exe: + "/Dflwmedc.exe": - when: - store: steam steam: id: 32640 -'Delta Force: Task Force Dagger': +"Delta Force: Task Force Dagger": files: - /game.cfg: + "/game.cfg": tags: - config when: - os: windows - /plyr.sav: + "/plyr.sav": tags: - save when: @@ -140752,17 +141166,17 @@ Delta Force 2: installDir: Delta Force Task Force Dagger: {} launch: - /DFTFD.exe: + "/DFTFD.exe": - when: - store: steam - /dftfdmed.exe: + "/dftfdmed.exe": - when: - store: steam steam: id: 32650 -'Delta Force: Xtreme': +"Delta Force: Xtreme": files: - /game.cfg: + "/game.cfg": tags: - config when: @@ -140772,17 +141186,17 @@ Delta Force 2: installDir: Delta Force Xtreme: {} launch: - /DFX.EXE: + "/DFX.EXE": - when: - store: steam - /dfxmed.exe: + "/dfxmed.exe": - when: - store: steam steam: id: 32660 -'Delta Force: Xtreme 2': +"Delta Force: Xtreme 2": files: - /game.cfg: + "/game.cfg": tags: - config when: @@ -140790,10 +141204,10 @@ Delta Force 2: installDir: Delta Force Xtreme 2: {} launch: - /dfx2.exe: + "/dfx2.exe": - when: - store: steam - /dfx2med.exe: + "/dfx2med.exe": - when: - store: steam steam: @@ -140802,7 +141216,7 @@ Delta G: installDir: Delta G: {} launch: - /Gravity.exe: + "/Gravity.exe": - when: - bit: 64 os: windows @@ -140813,7 +141227,7 @@ Delta Horizon: installDir: Delta Horizon: {} launch: - /DeltaHorizon.exe: + "/DeltaHorizon.exe": - when: - store: steam steam: @@ -140822,16 +141236,16 @@ Delta Squad: installDir: Delta Squad: {} launch: - /DeltaSquad.app/Contents/MacOS/DeltaSquad: + "/DeltaSquad.app/Contents/MacOS/DeltaSquad": - when: - os: mac store: steam - /DeltaSquad.exe: + "/DeltaSquad.exe": - when: - bit: 64 os: windows store: steam - /DeltaSquad.x86_64: + "/DeltaSquad.x86_64": - when: - bit: 64 os: linux @@ -140842,7 +141256,7 @@ DeltaBlade 2700: installDir: DeltaBlade 2700: {} launch: - /DeltaBlade 2700.exe: + "/DeltaBlade 2700.exe": - when: - store: steam steam: @@ -140851,7 +141265,7 @@ Deltaplan Simulator: installDir: Deltaplan Simulator: {} launch: - /deltaxfr/delta.exe: + "/deltaxfr/delta.exe": - when: - bit: 64 os: windows @@ -140860,13 +141274,13 @@ Deltaplan Simulator: id: 655040 Deltarune: files: - /Library/Application Support/com.tobyfox.deltarune: + "/Library/Application Support/com.tobyfox.deltarune": tags: - config - save when: - os: mac - /DELTARUNE: + "/DELTARUNE": tags: - config - save @@ -140878,7 +141292,7 @@ Deltazeal: installDir: DELTAZEAL: {} launch: - /deltazeal.exe: + "/deltazeal.exe": - when: - store: steam steam: @@ -140887,16 +141301,16 @@ Delude - Succubus Prison: installDir: Delude - Succubus Prison: {} launch: - /DeludeLinux32/nw: + "/DeludeLinux32/nw": - when: - os: linux store: steam - /DeludeOSX/delude(succubusprison).app/Contents/MacOS/nwjs: + "/DeludeOSX/delude(succubusprison).app/Contents/MacOS/nwjs": - when: - bit: 64 os: mac store: steam - /DeludeWin32/Delude.exe: + "/DeludeWin32/Delude.exe": - when: - os: windows store: steam @@ -140907,25 +141321,25 @@ Deluded Mind: Deluded Mind: {} steam: id: 786910 -'Deluge: Threnody of Crashing Waves': +"Deluge: Threnody of Crashing Waves": installDir: Deluge Threnody of Crashing Waves: {} launch: - /Deluge-32.exe: + "/Deluge-32.exe": - when: - bit: 32 os: windows store: steam - /Deluge.app: + "/Deluge.app": - when: - os: mac store: steam - /Deluge.exe: + "/Deluge.exe": - when: - bit: 64 os: windows store: steam - /Deluge.sh: + "/Deluge.sh": - when: - os: linux store: steam @@ -140936,12 +141350,12 @@ Delusion: id: 1198430 Deluxe Ski Jump 2: files: - /DSJ2.CFG: + "/DSJ2.CFG": tags: - config when: - os: dos - /SETLANG.CFG: + "/SETLANG.CFG": tags: - config when: @@ -140955,8 +141369,8 @@ Delve: installDir: Delve: {} launch: - /Game.exe: - - arguments: '--in-process-gpu' + "/Game.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam @@ -140966,14 +141380,14 @@ Delve Deeper: installDir: Delve Deeper: {} launch: - /DelveDeeper.exe: + "/DelveDeeper.exe": - when: - store: steam steam: id: 63800 Delver: files: - /save: + "/save": tags: - config - save @@ -140984,15 +141398,15 @@ Delver: installDir: Delver: {} launch: - /delver.app: + "/delver.app": - when: - os: mac store: steam - /delver.exe: + "/delver.exe": - when: - os: windows store: steam - /run-delver.sh: + "/run-delver.sh": - when: - os: linux store: steam @@ -141007,7 +141421,7 @@ Demented: installDir: Demented: {} launch: - /Demented_Win.exe: + "/Demented_Win.exe": - when: - os: windows store: steam @@ -141017,11 +141431,11 @@ Demented Pixie: installDir: Demented Pixie: {} launch: - /demented pixie.x86: + "/demented pixie.x86": - when: - os: linux store: steam - /demented_pixie.exe: + "/demented_pixie.exe": - when: - os: windows store: steam @@ -141031,11 +141445,11 @@ Dementium II HD: installDir: Dementium 2: {} launch: - /DII.app: + "/DII.app": - when: - os: mac store: steam - /DII_Beta.exe: + "/DII_Beta.exe": - when: - os: windows store: steam @@ -141045,9 +141459,9 @@ Dementium II HD: - config steam: id: 217100 -'Demeo: PC Edition': +"Demeo: PC Edition": files: - /AppData/LocalLow/Resolution Games/Demeo PC Edition: + "/AppData/LocalLow/Resolution Games/Demeo PC Edition": tags: - save when: @@ -141055,7 +141469,7 @@ Dementium II HD: installDir: Demeo - PC Edition: {} launch: - /demeo.exe: + "/demeo.exe": - when: - os: windows store: steam @@ -141065,7 +141479,7 @@ Demesne: installDir: Demesne: {} launch: - /Demesne.exe: + "/Demesne.exe": - when: - bit: 64 os: windows @@ -141074,12 +141488,12 @@ Demesne: id: 333100 Demetrios - The Big Cynical Adventure: files: - /Demetrios/saves: + "/Demetrios/saves": tags: - save when: - os: windows - /Demetrios/saves/config.ini: + "/Demetrios/saves/config.ini": tags: - config when: @@ -141089,15 +141503,15 @@ Demetrios - The Big Cynical Adventure: installDir: Demetrios: {} launch: - /Demetrios.app/Contents/MacOS/Mac_Runner: + "/Demetrios.app/Contents/MacOS/Mac_Runner": - when: - os: mac store: steam - /Demetrios.exe: + "/Demetrios.exe": - when: - os: windows store: steam - /run.sh: + "/run.sh": - when: - os: linux store: steam @@ -141105,12 +141519,12 @@ Demetrios - The Big Cynical Adventure: id: 451570 Demigod: files: - /My Games/Gas Powered Games/Demigod/Game.prefs: + "/My Games/Gas Powered Games/Demigod/Game.prefs": tags: - config when: - os: windows - /My Games/Gas Powered Games/Demigod/savegames: + "/My Games/Gas Powered Games/Demigod/savegames": tags: - save when: @@ -141118,17 +141532,17 @@ Demigod: installDir: Demigod: {} launch: - /bin/demigod.exe: + "/bin/demigod.exe": - when: - store: steam - workingDir: /bin + workingDir: "/bin" steam: id: 202710 Demigods: installDir: Demigods: {} launch: - /Demigods.exe: + "/Demigods.exe": - when: - os: windows store: steam @@ -141138,16 +141552,16 @@ Demise of Nations: installDir: Demise of Nations - Rome: {} launch: - /app_main: + "/app_main": - when: - bit: 64 os: linux store: steam - /app_main.app: + "/app_main.app": - when: - os: mac store: steam - /app_main.exe: + "/app_main.exe": - when: - os: windows store: steam @@ -141155,12 +141569,12 @@ Demise of Nations: id: 338810 Democracy 2: files: - /data: + "/data": tags: - config when: - os: windows - /democracy2/savegames: + "/democracy2/savegames": tags: - save when: @@ -141168,11 +141582,11 @@ Democracy 2: installDir: Democracy 2: {} launch: - /Democracy2.app: + "/Democracy2.app": - when: - os: mac store: steam - /Democracy2.exe: + "/Democracy2.exe": - when: - os: windows store: steam @@ -141180,19 +141594,19 @@ Democracy 2: id: 218040 Democracy 3: files: - /Library/Application Support/democracy3: + "/Library/Application Support/democracy3": tags: - config - save when: - os: mac - /My Games/democracy3: + "/My Games/democracy3": tags: - config - save when: - os: windows - /democracy3: + "/democracy3": tags: - config - save @@ -141203,29 +141617,29 @@ Democracy 3: installDir: Democracy 3: {} launch: - /Democracy3.app: + "/Democracy3.app": - when: - os: mac store: steam - /Democracy3.bin.x86: + "/Democracy3.bin.x86": - when: - bit: 32 os: linux store: steam - /Democracy3.bin.x86_64: + "/Democracy3.bin.x86_64": - when: - bit: 64 os: linux store: steam - /Democracy3.exe: + "/Democracy3.exe": - when: - os: windows store: steam steam: id: 245470 -'Democracy 3: Africa': +"Democracy 3: Africa": files: - /My Games/democracy3africa: + "/My Games/democracy3africa": tags: - config - save @@ -141236,11 +141650,11 @@ Democracy 3: installDir: Democracy 3: {} launch: - /Democracy3Africa.app: + "/Democracy3Africa.app": - when: - os: mac store: steam - /Democracy3Africa.exe: + "/Democracy3Africa.exe": - when: - os: windows store: steam @@ -141248,17 +141662,17 @@ Democracy 3: id: 427470 Democracy 4: files: - /My Games/democracy4/config.txt: + "/My Games/democracy4/config.txt": tags: - config when: - os: windows - /My Games/democracy4/prefs.ini: + "/My Games/democracy4/prefs.ini": tags: - config when: - os: windows - /My Games/democracy4/savegames: + "/My Games/democracy4/savegames": tags: - save when: @@ -141268,7 +141682,7 @@ Democracy 4: installDir: Democracy 4: {} launch: - /Democracy4.exe: + "/Democracy4.exe": - when: - os: windows store: steam @@ -141278,7 +141692,7 @@ Demolish & Build 2017: installDir: Demolish & Build Company: {} launch: - /demolish.exe: + "/demolish.exe": - when: - store: steam steam: @@ -141287,7 +141701,7 @@ Demolish & Build 2018: installDir: Demolish & Build 2018: {} launch: - /demolish.exe: + "/demolish.exe": - when: - store: steam steam: @@ -141296,7 +141710,7 @@ Demolition: installDir: Demolition: {} launch: - /demolition.exe: + "/demolition.exe": - when: - bit: 64 os: windows @@ -141307,14 +141721,14 @@ Demolition Ball: installDir: Demolition Ball: {} launch: - /Demolition Ball.exe: + "/Demolition Ball.exe": - when: - store: steam steam: id: 864200 Demolition Company: files: - /My Games/DemolitionCompany: + "/My Games/DemolitionCompany": tags: - save when: @@ -141322,8 +141736,8 @@ Demolition Company: installDir: Demolition Company Gold: {} launch: - /game.exe: - - arguments: '-script dataS/scripts/main.lua -name DemolitionCompany' + "/game.exe": + - arguments: "-script dataS/scripts/main.lua -name DemolitionCompany" when: - os: windows store: steam @@ -141333,11 +141747,11 @@ Demolition Engineer: installDir: Demolition Engineer: {} launch: - /Demolition Engineer.app/Contents/MacOS/Demolition Engineer: + "/Demolition Engineer.app/Contents/MacOS/Demolition Engineer": - when: - os: mac store: steam - /Demolition Engineer.exe: + "/Demolition Engineer.exe": - when: - os: windows store: steam @@ -141347,11 +141761,11 @@ Demolition Inc.: installDir: DemolitionInc: {} launch: - /DemolitionInc.app: + "/DemolitionInc.app": - when: - os: mac store: steam - /FinalDGameGL.exe: + "/FinalDGameGL.exe": - when: - os: windows store: steam @@ -141361,7 +141775,7 @@ Demolition Master 3D: installDir: Demolition Master 3D: {} launch: - /DM3D.exe: + "/DM3D.exe": - when: - os: windows store: steam @@ -141369,17 +141783,17 @@ Demolition Master 3D: id: 288710 Demolition Racer: files: - /DR High scores: + "/DR High scores": tags: - save when: - os: windows - /Replay.*: + "/Replay.*": tags: - save when: - os: windows - /players: + "/players": tags: - config - save @@ -141392,7 +141806,7 @@ Demon Blade VR: id: 603340 Demon Gaze Extra: files: - /Saved Games/DEMON GAZE EXTRA/Steam//*.SAV: + "/Saved Games/DEMON GAZE EXTRA/Steam//*.SAV": tags: - save when: @@ -141400,7 +141814,7 @@ Demon Gaze Extra: installDir: DEMON GAZE EXTRA: {} launch: - /DEMON GAZE EXTRA.exe: + "/DEMON GAZE EXTRA.exe": - when: - bit: 64 os: windows @@ -141420,15 +141834,15 @@ Demon Hearts: installDir: Demon Hearts: {} launch: - /DemonHearts.app/Contents/MacOS/DemonHearts: + "/DemonHearts.app/Contents/MacOS/DemonHearts": - when: - os: mac store: steam - /DemonHearts.exe: + "/DemonHearts.exe": - when: - os: windows store: steam - /DemonHearts.x86: + "/DemonHearts.x86": - when: - os: linux store: steam @@ -141442,129 +141856,129 @@ Demon Hunter: Demon Hunter: {} steam: id: 535530 -'Demon Hunter 2: New Chapter': +"Demon Hunter 2: New Chapter": installDir: Demon Hunter 2: {} launch: - /DemonHunter2.exe: + "/DemonHunter2.exe": - when: - os: windows store: steam - /DemonHunter2_amd64: + "/DemonHunter2_amd64": - when: - bit: 64 os: linux store: steam - /DemonHunter2_i386: + "/DemonHunter2_i386": - when: - bit: 32 os: linux store: steam - /mac_steam.app/Contents/MacOS/mac_steam: + "/mac_steam.app/Contents/MacOS/mac_steam": - when: - os: mac store: steam steam: id: 465720 -'Demon Hunter 3: Revelation': +"Demon Hunter 3: Revelation": installDir: Demon Hunter 3: {} launch: - /DemonHunter3.exe: + "/DemonHunter3.exe": - when: - os: windows store: steam - /DemonHunter3_amd64: + "/DemonHunter3_amd64": - when: - bit: 64 os: linux store: steam - /DemonHunter3_i386: + "/DemonHunter3_i386": - when: - bit: 32 os: linux store: steam - /mac_steam.app/Contents/MacOS/mac_steam: + "/mac_steam.app/Contents/MacOS/mac_steam": - when: - os: mac store: steam steam: id: 527420 -'Demon Hunter 4: Riddles of Light': +"Demon Hunter 4: Riddles of Light": installDir: Demon Hunter 4 Riddles of Light: {} launch: - /DemonHunter4.exe: + "/DemonHunter4.exe": - when: - os: windows store: steam - /DemonHunter4_amd64: + "/DemonHunter4_amd64": - when: - bit: 64 os: linux store: steam - /DemonHunter4_i386: + "/DemonHunter4_i386": - when: - bit: 32 os: linux store: steam - /mac_steam.app/Contents/MacOS/mac_steam: + "/mac_steam.app/Contents/MacOS/mac_steam": - when: - os: mac store: steam steam: id: 762520 -'Demon Hunter 5: Ascendance': +"Demon Hunter 5: Ascendance": installDir: Demon Hunter 5 Ascendance: {} launch: - /DemonHunter5.exe: + "/DemonHunter5.exe": - when: - os: windows store: steam - /DemonHunter5_amd64: + "/DemonHunter5_amd64": - when: - bit: 64 os: linux store: steam - /DemonHunter5_i386: + "/DemonHunter5_i386": - when: - bit: 32 os: linux store: steam - /mac_steam.app/Contents/MacOS/mac_steam: + "/mac_steam.app/Contents/MacOS/mac_steam": - when: - os: mac store: steam steam: id: 1020270 -'Demon Hunter: Chronicles from Beyond': +"Demon Hunter: Chronicles from Beyond": installDir: Demon Hunter Chronicles from Beyond: {} launch: - /DemonHunter.exe: + "/DemonHunter.exe": - when: - os: windows store: steam - /DemonHunter_amd64: + "/DemonHunter_amd64": - when: - bit: 64 os: linux store: steam - /DemonHunter_i386: + "/DemonHunter_i386": - when: - bit: 32 os: linux store: steam - /mac_steam.app/Contents/MacOS/mac_steam: + "/mac_steam.app/Contents/MacOS/mac_steam": - when: - os: mac store: steam steam: id: 330990 -'Demon King Domination: Deluxe Edition': +"Demon King Domination: Deluxe Edition": files: - /.renpy/DKD_Save: + "/.renpy/DKD_Save": tags: - save when: @@ -141572,15 +141986,15 @@ Demon Hunter: installDir: Demon King Domination: {} launch: - /DKDDE.app: + "/DKDDE.app": - when: - os: mac store: steam - /DKDDE.exe: + "/DKDDE.exe": - when: - os: windows store: steam - /DKDDE.sh: + "/DKDDE.sh": - when: - os: linux store: steam @@ -141590,26 +142004,26 @@ Demon Lord: installDir: Demon Lord: {} launch: - /Demon/Demon.exe: + "/Demon/Demon.exe": - when: - os: windows store: steam - workingDir: /Demon + workingDir: "/Demon" steam: id: 578920 -'Demon Mark: A Russian Saga': +"Demon Mark: A Russian Saga": installDir: Demon Mark A Russian Saga: {} launch: - /Demon Mark A Russian Saga.app/Contents/MacOS/Demon Mark A Russian Saga: + "/Demon Mark A Russian Saga.app/Contents/MacOS/Demon Mark A Russian Saga": - when: - os: mac store: steam - /DemonMarkARussianSaga: + "/DemonMarkARussianSaga": - when: - os: linux store: steam - /DemonMarkARussianSaga.exe: + "/DemonMarkARussianSaga.exe": - when: - os: windows store: steam @@ -141619,11 +142033,11 @@ Demon Peak: installDir: Demon Peak: {} launch: - /DemonPeak.exe: + "/DemonPeak.exe": - when: - os: windows store: steam - /DemonPeakLauncher: + "/DemonPeakLauncher": - when: - bit: 64 os: linux @@ -141634,7 +142048,7 @@ Demon Pit: installDir: DemonPit: {} launch: - /DemonPit.exe: + "/DemonPit.exe": - when: - os: windows store: steam @@ -141644,7 +142058,7 @@ Demon Queen Melissa: installDir: Demon Queen Melissa: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: @@ -141654,12 +142068,12 @@ Demon Robot Runner: id: 811530 Demon Slayer -Kimetsu no Yaiba- The Hinokami Chronicles: files: - /APK/Saved/Config/WindowsNoEditor: + "/APK/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /APK/Saved/SaveGames: + "/APK/Saved/SaveGames": tags: - save when: @@ -141667,18 +142081,18 @@ Demon Slayer -Kimetsu no Yaiba- The Hinokami Chronicles: installDir: Demon Slayer: {} launch: - /APK.exe: + "/APK.exe": - when: - store: steam steam: id: 1490890 -'Demon Sword: Incubus': +"Demon Sword: Incubus": gog: id: 1659148266 installDir: Demon Sword Incubus: {} launch: - /Demon Sword Incubus.exe: + "/Demon Sword Incubus.exe": - when: - store: steam steam: @@ -141687,15 +142101,15 @@ Demon Truck: installDir: Demon Truck: {} launch: - /DemonTruck.app: + "/DemonTruck.app": - when: - os: mac store: steam - /DemonTruck.exe: + "/DemonTruck.exe": - when: - os: windows store: steam - /DemonTruck.x86: + "/DemonTruck.x86": - when: - os: linux store: steam @@ -141703,7 +142117,7 @@ Demon Truck: id: 489760 Demon Turf: files: - /userdata//1325900/remote: + "/userdata//1325900/remote": tags: - save when: @@ -141717,7 +142131,7 @@ Demon Turf: installDir: Demon Turf: {} launch: - /Demon Turf.exe: + "/Demon Turf.exe": - when: - os: windows store: steam @@ -141727,13 +142141,13 @@ Demon Turf: - config steam: id: 1325900 -'Demon Turf: Neon Splash': +"Demon Turf: Neon Splash": gog: id: 1375346087 installDir: Demon Turf Neon Splash: {} launch: - /Demon Turf NEON SPLASH.exe: + "/Demon Turf NEON SPLASH.exe": - when: - os: windows store: steam @@ -141743,55 +142157,55 @@ Demon and Fairy: installDir: Demon&Fairy: {} launch: - /Demon&Fairy_v1.01.exe: + "/Demon&Fairy_v1.01.exe": - when: - os: windows store: steam steam: id: 719470 -Demon's Crystals: +"Demon's Crystals": installDir: - Demon's Crystals: {} + "Demon's Crystals": {} launch: - /Demon's Crystals.app: + "/Demon's Crystals.app": - when: - os: mac store: steam - /Demon's Crystals.x86: + "/Demon's Crystals.x86": - when: - os: linux store: steam - /Demon'sCrystals.exe: + "/Demon'sCrystals.exe": - when: - os: windows store: steam steam: id: 454610 -Demon's Rise - Lords of Chaos: +"Demon's Rise - Lords of Chaos": installDir: - Demon's Rise - Lords of Chaos: {} + "Demon's Rise - Lords of Chaos": {} launch: - /Demon's Rise Lords of Chaos.exe: + "/Demon's Rise Lords of Chaos.exe": - when: - bit: 64 os: windows store: steam steam: id: 844420 -Demon's Rise - War for the Deep: +"Demon's Rise - War for the Deep": installDir: - Demon's Rise - War for the Deep: {} + "Demon's Rise - War for the Deep": {} launch: - /Demon's Rise War for the Deep.exe: + "/Demon's Rise War for the Deep.exe": - when: - bit: 64 os: windows store: steam steam: id: 843900 -Demon's Tilt: +"Demon's Tilt": files: - /AppData/LocalLow/FLARB LLC/DEMON'S TILT/saveData.txt: + "/AppData/LocalLow/FLARB LLC/DEMON'S TILT/saveData.txt": tags: - save when: @@ -141799,29 +142213,29 @@ Demon's Tilt: installDir: DemonsTilt: {} launch: - /DEMON'S TILT.exe: + "/DEMON'S TILT.exe": - when: - os: windows store: steam - /DemonsTilt.app: + "/DemonsTilt.app": - when: - os: mac store: steam registry: - HKEY_CURRENT_USER/Software/FLARB LLC/DEMON'S TILT: + "HKEY_CURRENT_USER/Software/FLARB LLC/DEMON'S TILT": tags: - config steam: id: 422510 -Demon's Winter: +"Demon's Winter": gog: id: 1505505224 -'Demon: Hell Keeper': +"Demon: Hell Keeper": steam: id: 1117110 DemonCrawl: files: - /DemonCrawl: + "/DemonCrawl": tags: - config - save @@ -141830,15 +142244,15 @@ DemonCrawl: installDir: DemonCrawl: {} launch: - /demoncrawl.app: + "/demoncrawl.app": - when: - os: mac store: steam - /demoncrawl.exe: + "/demoncrawl.exe": - when: - os: windows store: steam - /run.sh: + "/run.sh": - when: - os: linux store: steam @@ -141848,45 +142262,45 @@ Demonheart: installDir: Demonheart: {} launch: - /demonheart: + "/demonheart": - when: - bit: 64 os: linux store: steam - /demonheart.app: + "/demonheart.app": - when: - bit: 64 os: mac store: steam - /demonheart.exe: + "/demonheart.exe": - when: - os: windows store: steam steam: id: 578900 -'Demonheart: Hunters': +"Demonheart: Hunters": installDir: Demonheart Hunters: {} launch: - /DemonheartHunters: + "/DemonheartHunters": - when: - os: linux store: steam - /DemonheartHunters.app: + "/DemonheartHunters.app": - when: - os: mac store: steam - /DemonheartHunters.exe: + "/DemonheartHunters.exe": - when: - os: windows store: steam steam: id: 897930 -'Demoniaca: Everlasting Night': +"Demoniaca: Everlasting Night": installDir: Demoniaca Everlasting Night: {} launch: - /Demoniaca_ Everlasting Night.exe: + "/Demoniaca_ Everlasting Night.exe": - when: - os: windows store: steam @@ -141899,22 +142313,22 @@ DemonicGuestVR: id: 542820 Demonicon: files: - /userdata//215630/remote: + "/userdata//215630/remote": tags: - save when: - store: steam - /Kalypso Media/demonicon/configs: + "/Kalypso Media/demonicon/configs": tags: - config when: - os: windows - /Kalypso Media/demonicon/profile.cfg: + "/Kalypso Media/demonicon/profile.cfg": tags: - config when: - os: windows - /Kalypso Media/demonicon/saves: + "/Kalypso Media/demonicon/saves": tags: - save when: @@ -141924,7 +142338,7 @@ Demonicon: installDir: demonicon: {} launch: - /demoniconR.exe: + "/demoniconR.exe": - when: - os: windows store: steam @@ -141932,21 +142346,27 @@ Demonicon: id: 215630 Demonizer: files: - /Demonizer: + "/Demonizer": tags: - config - save when: - os: windows + "/Demonizer or /.local/share/Demonizer": + tags: + - config + - save + when: + - os: linux installDir: Demonizer: {} launch: - /Demonizer-x86_64.AppImage: + "/Demonizer-x86_64.AppImage": - when: - bit: 64 os: linux store: steam - /demonizer.exe: + "/demonizer.exe": - when: - bit: 64 os: windows @@ -141957,7 +142377,7 @@ Demonlisher: installDir: Demonlisher: {} launch: - /demonlisher.exe: + "/demonlisher.exe": - when: - store: steam steam: @@ -141966,13 +142386,13 @@ Demons Age: installDir: DemonsAge: {} launch: - /DemonsAge.app: - - arguments: r$#33 + "/DemonsAge.app": + - arguments: "r$#33" when: - os: mac store: steam - /DemonsAge.exe: - - arguments: r$#33 + "/DemonsAge.exe": + - arguments: "r$#33" when: - os: windows store: steam @@ -141982,15 +142402,15 @@ Demons Never Lie: installDir: Demons Never Lie: {} launch: - /DNL.app: + "/DNL.app": - when: - os: mac store: steam - /DNL.exe: + "/DNL.exe": - when: - os: windows store: steam - /DNL.x86: + "/DNL.x86": - when: - os: linux store: steam @@ -142002,7 +142422,7 @@ Demons Rise Up!: installDir: Demons Rise Up!: {} launch: - /DemonsRiseUp.exe: + "/DemonsRiseUp.exe": - when: - store: steam steam: @@ -142011,7 +142431,7 @@ Demons of Asteborg: installDir: Demons of Asteborg: {} launch: - /steam_launcher.exe: + "/steam_launcher.exe": - when: - bit: 64 os: windows @@ -142022,15 +142442,15 @@ Demons with Shotguns: installDir: Demons with Shotguns: {} launch: - /dws.app: + "/dws.app": - when: - os: mac store: steam - /dws.exe: + "/dws.exe": - when: - os: windows store: steam - /dws.x86: + "/dws.x86": - when: - os: linux store: steam @@ -142040,7 +142460,7 @@ DemonsAreCrazy: installDir: DemonsAreCrazy: {} launch: - /DemonsAreCrazy.exe: + "/DemonsAreCrazy.exe": - when: - bit: 64 os: windows @@ -142055,15 +142475,15 @@ DemonsTier: Den vänstra handens stig: steam: id: 491370 -Denki Gaka's Bombshell: +"Denki Gaka's Bombshell": installDir: Bombshell: {} launch: - /Bombshell.app: + "/Bombshell.app": - when: - os: mac store: steam - /Bombshell.exe: + "/Bombshell.exe": - when: - os: windows store: steam @@ -142079,7 +142499,7 @@ Departure Dash: installDir: Departure Dash: {} launch: - /DepartureDash.exe: + "/DepartureDash.exe": - when: - os: windows store: steam @@ -142089,33 +142509,33 @@ Depixtion: installDir: Depixtion: {} launch: - /Depixtion.app/Contents/MacOS/Depixtion: + "/Depixtion.app/Contents/MacOS/Depixtion": - when: - os: mac store: steam - /Depixtion.exe: + "/Depixtion.exe": - when: - os: windows store: steam - /Depixtion.x86_64: + "/Depixtion.x86_64": - when: - os: linux store: steam steam: id: 1092780 -'Depixtion: Halloween': +"Depixtion: Halloween": installDir: DepixtionHalloween: {} launch: - /DepixtionHalloween.app/Contents/MacOS/DepixtionHalloween: + "/DepixtionHalloween.app/Contents/MacOS/DepixtionHalloween": - when: - os: mac store: steam - /DepixtionHalloween.exe: + "/DepixtionHalloween.exe": - when: - os: windows store: steam - /DepixtionHalloween.x86_64: + "/DepixtionHalloween.x86_64": - when: - os: linux store: steam @@ -142130,7 +142550,7 @@ Deployment: installDir: Deployment: {} launch: - /deployment.exe: + "/deployment.exe": - when: - store: steam registry: @@ -142141,19 +142561,19 @@ Deployment: id: 755980 Deponia: files: - /Library/Application Support/Daedalic Entertainment/Deponia: + "/Library/Application Support/Daedalic Entertainment/Deponia": tags: - config - save when: - os: mac - /Daedalic Entertainment/Deponia: + "/Daedalic Entertainment/Deponia": tags: - config - save when: - os: windows - /Daedalic Entertainment/Deponia: + "/Daedalic Entertainment/Deponia": tags: - config - save @@ -142168,15 +142588,15 @@ Deponia: installDir: Deponia: {} launch: - /Deponia.app: + "/Deponia.app": - when: - os: mac store: steam - /deponia.exe: + "/deponia.exe": - when: - os: windows store: steam - /start: + "/start": - when: - bit: 64 os: linux @@ -142185,32 +142605,32 @@ Deponia: id: 214340 Deponia Doomsday: files: - /Library/Application Support/Daedalic Entertainment GmbH/Deponia 4/Savegames: + "/Library/Application Support/Daedalic Entertainment GmbH/Deponia 4/Savegames": tags: - save when: - os: mac - /Library/Application Support/Daedalic Entertainment GmbH/Deponia 4/config.ini: + "/Library/Application Support/Daedalic Entertainment GmbH/Deponia 4/config.ini": tags: - config when: - os: mac - /Daedalic Entertainment GmbH/Deponia 4/Savegames: + "/Daedalic Entertainment GmbH/Deponia 4/Savegames": tags: - save when: - os: windows - /Daedalic Entertainment GmbH/Deponia 4/config.ini: + "/Daedalic Entertainment GmbH/Deponia 4/config.ini": tags: - config when: - os: windows - /Daedalic Entertainment GmbH/Deponia 4/Savegames: + "/Daedalic Entertainment GmbH/Deponia 4/Savegames": tags: - save when: - os: linux - /Daedalic Entertainment GmbH/Deponia 4/config.ini: + "/Daedalic Entertainment GmbH/Deponia 4/config.ini": tags: - config when: @@ -142220,62 +142640,62 @@ Deponia Doomsday: installDir: Deponia Doomsday: {} launch: - /Deponia Doomsday.app: + "/Deponia Doomsday.app": - when: - bit: 64 os: mac store: steam - /deponia4.exe: + "/deponia4.exe": - when: - os: windows store: steam - /open_bonus_lin.sh: + "/open_bonus_lin.sh": - when: - os: linux store: steam - /open_bonus_osx.sh: + "/open_bonus_osx.sh": - when: - os: mac store: steam - /open_bonus_win.bat: + "/open_bonus_win.bat": - when: - os: windows store: steam - /start: + "/start": - when: - bit: 64 os: linux store: steam steam: id: 421050 -'Deponia: The Complete Journey': +"Deponia: The Complete Journey": files: - /Library/Application Support/Daedalic Entertainment GmbH/Deponia The Complete Journey/Savegames: + "/Library/Application Support/Daedalic Entertainment GmbH/Deponia The Complete Journey/Savegames": tags: - save when: - os: mac - /Library/Application Support/Daedalic Entertainment GmbH/Deponia The Complete Journey/config.ini: + "/Library/Application Support/Daedalic Entertainment GmbH/Deponia The Complete Journey/config.ini": tags: - config when: - os: mac - /Daedalic Entertainment GmbH/Deponia The Complete Journey/Savegames: + "/Daedalic Entertainment GmbH/Deponia The Complete Journey/Savegames": tags: - save when: - os: windows - /Daedalic Entertainment GmbH/Deponia The Complete Journey/config.ini: + "/Daedalic Entertainment GmbH/Deponia The Complete Journey/config.ini": tags: - config when: - os: windows - /Daedalic Entertainment GmbH/Deponia The Complete Journey/Savegames: + "/Daedalic Entertainment GmbH/Deponia The Complete Journey/Savegames": tags: - save when: - os: linux - /Daedalic Entertainment GmbH/Deponia The Complete Journey/config.ini: + "/Daedalic Entertainment GmbH/Deponia The Complete Journey/config.ini": tags: - config when: @@ -142286,20 +142706,20 @@ Deponia Doomsday: installDir: Deponia The Complete Journey: {} launch: - /Deponia - The Complete Journey.app: + "/Deponia - The Complete Journey.app": - when: - bit: 64 os: mac store: steam - /VisionaireConfigurationTool.exe: + "/VisionaireConfigurationTool.exe": - when: - os: windows store: steam - /deponia.exe: + "/deponia.exe": - when: - os: windows store: steam - /start: + "/start": - when: - bit: 64 os: linux @@ -142310,27 +142730,27 @@ Depopulation: installDir: Depopulation: {} launch: - /Depopulation.exe: + "/Depopulation.exe": - when: - os: windows store: steam steam: id: 718210 -'Deported 2: Build That Wall': +"Deported 2: Build That Wall": installDir: Deported 2 Build That Wall: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam steam: id: 968290 -'Deported: Drain the Swamp': +"Deported: Drain the Swamp": installDir: Deported Drain the Swamp: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -142340,7 +142760,7 @@ DepowerBall: installDir: DepowerBall: {} launch: - /DepowerBall.exe: + "/DepowerBall.exe": - when: - bit: 64 os: windows @@ -142355,7 +142775,7 @@ Deppart Prototype: - save Depraved: files: - /AppData/LocalLow/Evil Bite/Depraved/SaveGames: + "/AppData/LocalLow/Evil Bite/Depraved/SaveGames": tags: - save when: @@ -142363,15 +142783,15 @@ Depraved: installDir: Depraved: {} launch: - /Depraved.app: + "/Depraved.app": - when: - os: mac store: steam - /Depraved.x86_64: + "/Depraved.x86_64": - when: - os: linux store: steam - /DepravedLauncher.exe: + "/DepravedLauncher.exe": - when: - os: windows store: steam @@ -142379,22 +142799,22 @@ Depraved: id: 762650 Depraved Awakening: files: - /game/saves: + "/game/saves": tags: - save when: - os: windows - /game/saves/persistent: + "/game/saves/persistent": tags: - config when: - os: windows - /RenPy/DepravedAwakening-1501333194: + "/RenPy/DepravedAwakening-1501333194": tags: - save when: - os: windows - /RenPy/DepravedAwakening-1501333194/persistent: + "/RenPy/DepravedAwakening-1501333194/persistent": tags: - config when: @@ -142402,15 +142822,15 @@ Depraved Awakening: installDir: Depraved Awakening: {} launch: - /DepravedAwakening.app/Contents/MacOS/DepravedAwakening: + "/DepravedAwakening.app/Contents/MacOS/DepravedAwakening": - when: - os: mac store: steam - /DepravedAwakening.exe: + "/DepravedAwakening.exe": - when: - os: windows store: steam - /DepravedAwakening.sh: + "/DepravedAwakening.sh": - when: - os: linux store: steam @@ -142425,15 +142845,15 @@ Depression Quest: installDir: DepressionQuest: {} launch: - /DepressionQuest.app: + "/DepressionQuest.app": - when: - os: mac store: steam - /DepressionQuest.exe: + "/DepressionQuest.exe": - when: - os: windows store: steam - /nw: + "/nw": - when: - os: linux store: steam @@ -142446,12 +142866,12 @@ Depression The Game: id: 881920 Depth: files: - /My Games/Depth/DepthGame/Config: + "/My Games/Depth/DepthGame/Config": tags: - config when: - os: windows - /My Games/Depth/DepthGame/Profile/Video.settings: + "/My Games/Depth/DepthGame/Profile/Video.settings": tags: - config when: @@ -142459,18 +142879,18 @@ Depth: installDir: Depth: {} launch: - /Binaries/Win32/DepthGame.exe: + "/Binaries/Win32/DepthGame.exe": - arguments: DepthMain?Game=DepthGame.DPGameInfoFrontEnd?LIVEMatchMaking when: - os: windows store: steam steam: id: 274940 -'Depth Hunter 2: Deep Dive': +"Depth Hunter 2: Deep Dive": installDir: DepthHunter2: {} launch: - /dh2.exe: + "/dh2.exe": - when: - os: windows store: steam @@ -142483,29 +142903,29 @@ Depth of Consciousness: installDir: Depth Of Consciousness: {} launch: - /Depth Of Consciousness.exe: + "/Depth Of Consciousness.exe": - when: - store: steam steam: id: 1011980 Depth of Extinction: files: - /AppData/LocalLow/HOF Studios/Depth of Extinction: + "/AppData/LocalLow/HOF Studios/Depth of Extinction": tags: - config when: - os: windows - /AppData/LocalLow/HOF Studios/Depth of Extinction/LocalState: + "/AppData/LocalLow/HOF Studios/Depth of Extinction/LocalState": tags: - save when: - os: windows - /Library/Application Support/HOF Studios/Depth of Extinction: + "/Library/Application Support/HOF Studios/Depth of Extinction": tags: - save when: - os: mac - '{home}/unity3d/HOF Studios/Depth of Extinction': + "{home}/unity3d/HOF Studios/Depth of Extinction": tags: - save when: @@ -142515,15 +142935,15 @@ Depth of Extinction: installDir: Depth of Extinction: {} launch: - /Depth of Extinction.app: + "/Depth of Extinction.app": - when: - os: mac store: steam - /Depth of Extinction.exe: + "/Depth of Extinction.exe": - when: - os: windows store: steam - /Depth of Extinction.x86_64: + "/Depth of Extinction.x86_64": - when: - bit: 64 os: linux @@ -142534,11 +142954,11 @@ DepthMera: installDir: DepthMera: {} launch: - /DepthMera.app/Contents/MacOS/DepthMera: + "/DepthMera.app/Contents/MacOS/DepthMera": - when: - os: mac store: steam - /DepthMera.exe: + "/DepthMera.exe": - when: - os: windows store: steam @@ -142548,21 +142968,21 @@ Depths of Dread: installDir: Depths of Dread: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam steam: id: 498550 -'Depths of Fear: Knossos': +"Depths of Fear: Knossos": installDir: Depths of Fear Knossos: {} launch: - /DOFK.app: + "/DOFK.app": - when: - os: mac store: steam - /DOFK.exe: + "/DOFK.exe": - when: - os: windows store: steam @@ -142572,16 +142992,16 @@ Depths of Limbo: installDir: Depths of Limbo: {} launch: - /DepthsOfLimbo.exe: + "/DepthsOfLimbo.exe": - when: - os: windows store: steam - /run: + "/run": - when: - bit: 64 os: linux store: steam - /run.sh: + "/run.sh": - when: - bit: 64 os: mac @@ -142592,7 +143012,7 @@ Depths of Madness: installDir: Depths of Madness: {} launch: - /SeniorProject2019.exe: + "/SeniorProject2019.exe": - when: - os: windows store: steam @@ -142600,12 +143020,12 @@ Depths of Madness: id: 1070800 Depths of Peril: files: - /User/chars: + "/User/chars": tags: - save when: - os: windows - /User/user.cfg: + "/User/user.cfg": tags: - config when: @@ -142615,15 +143035,15 @@ Depths of Peril: installDir: Depths of Peril: {} launch: - /DepthsOfPeril: + "/DepthsOfPeril": - when: - os: linux store: steam - /DepthsOfPeril.app: + "/DepthsOfPeril.app": - when: - os: mac store: steam - /DepthsOfPeril.exe: + "/DepthsOfPeril.exe": - when: - os: windows store: steam @@ -142633,7 +143053,7 @@ Depths of Sanity: installDir: Depths of Sanity: {} launch: - /DepthsofSanity.exe: + "/DepthsofSanity.exe": - when: - store: steam steam: @@ -142642,15 +143062,15 @@ Deputy Dangle: installDir: Deputy Dangle: {} launch: - /DeputyDangle.app: + "/DeputyDangle.app": - when: - os: mac store: steam - /DeputyDangle.exe: + "/DeputyDangle.exe": - when: - os: windows store: steam - /DeputyDangle.x86: + "/DeputyDangle.x86": - when: - os: linux store: steam @@ -142663,12 +143083,12 @@ Der Geisterturm / The Ghost Tower: installDir: Der Geisterturm: {} launch: - /Der Geisterturm.exe: + "/Der Geisterturm.exe": - when: - bit: 64 os: windows store: steam - /DerGeisterturm.x86_64: + "/DerGeisterturm.x86_64": - when: - bit: 64 os: linux @@ -142679,18 +143099,24 @@ Der einzig wahre Auserwählte: installDir: Der einzig wahre Auserwählte: {} launch: - /Game: + "/Game": - when: + - bit: 32 + os: linux + store: steam - bit: 64 os: linux store: steam - /Game.app/Contents/MacOS/nwjs: + "/Game.app/Contents/MacOS/nwjs": - when: - os: mac store: steam - workingDir: /Game.app/Contents/MacOS - /Game.exe: + workingDir: "/Game.app/Contents/MacOS" + "/Game.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam @@ -142698,7 +143124,7 @@ Der einzig wahre Auserwählte: id: 654080 Derail Valley: files: - /DerailValley_Data/SaveGameData: + "/DerailValley_Data/SaveGameData": tags: - save when: @@ -142711,7 +143137,7 @@ Derange: installDir: Derange: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -142721,17 +143147,17 @@ Deranged Rabbits: installDir: Deranged Rabbits: {} launch: - /Rabbits.exe: + "/Rabbits.exe": - when: - os: windows store: steam steam: id: 448520 -'Derby: Extreme Racing': +"Derby: Extreme Racing": installDir: Derby: {} launch: - /Derby Carmageddon.exe: + "/Derby Carmageddon.exe": - when: - store: steam steam: @@ -142740,7 +143166,7 @@ Dere Evil .exe: installDir: DERE EVIL EXE: {} launch: - /DERE EVIL .exe: + "/DERE EVIL .exe": - when: - os: windows store: steam @@ -142750,7 +143176,7 @@ Derelict: installDir: Derelict: {} launch: - /Derelict.exe: + "/Derelict.exe": - when: - os: windows store: steam @@ -142760,7 +143186,7 @@ Derelict Fleet: installDir: Derelict Fleet: {} launch: - /Derelict Fleet.exe: + "/Derelict Fleet.exe": - when: - os: windows store: steam @@ -142770,11 +143196,11 @@ Dereliction: installDir: Dereliction: {} launch: - /Dereliction.app/Contents/MacOS/Dereliction15: + "/Dereliction.app/Contents/MacOS/Dereliction15": - when: - os: mac store: steam - /Dereliction/Dereliction.exe: + "/Dereliction/Dereliction.exe": - when: - os: windows store: steam @@ -142789,7 +143215,7 @@ Derpy Conga: installDir: Derpy Conga: {} launch: - /derpyconga.exe: + "/derpyconga.exe": - when: - os: windows store: steam @@ -142799,7 +143225,7 @@ Derpy Dinos: installDir: Derpy Dinos: {} launch: - /DerpyDinos.exe: + "/DerpyDinos.exe": - when: - bit: 64 os: windows @@ -142810,23 +143236,23 @@ Derpy pirates!: installDir: Derpy Pirates! The search for the bungalow: {} launch: - /derpypirates.app: + "/derpypirates.app": - when: - os: mac store: steam - /derpypirates.exe: + "/derpypirates.exe": - when: - bit: 64 os: windows store: steam - /derpypirates.x86_64: + "/derpypirates.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 783850 -'Derrek Quest V: Regression': +"Derrek Quest V: Regression": steam: id: 805450 Derrek Quest VII: @@ -142836,15 +143262,15 @@ Derrick the Deathfin: installDir: DerrickTheDeathfin: {} launch: - /DerrickTheDeathfin.app: + "/DerrickTheDeathfin.app": - when: - os: mac store: steam - /DerrickTheDeathfin.exe: + "/DerrickTheDeathfin.exe": - when: - os: windows store: steam - /DerrickTheDeathfin.x86: + "/DerrickTheDeathfin.x86": - when: - os: linux store: steam @@ -142852,7 +143278,7 @@ Derrick the Deathfin: id: 287780 Descenders: files: - HKEY_USERS/"user random mumber"/SOFTWARE/RageSquid/Descenders: + "HKEY_USERS/\"user random mumber\"/SOFTWARE/RageSquid/Descenders": tags: - config - save @@ -142861,16 +143287,16 @@ Descenders: installDir: Descenders: {} launch: - /Descenders.app: + "/Descenders.app": - when: - os: mac store: steam - /Descenders.x86: + "/Descenders.x86": - when: - bit: 32 os: linux store: steam - /Descenders.x86_64: + "/Descenders.x86_64": - when: - bit: 64 os: linux @@ -142881,7 +143307,7 @@ Descending: installDir: Descending: {} launch: - /Build_Descending2.exe: + "/Build_Descending2.exe": - when: - bit: 64 os: windows @@ -142894,17 +143320,17 @@ Descent: installDir: Descent: {} launch: - /DOSBox/dosbox.app/Contents/MacOS/DOSBox: - - arguments: '-conf \"config/dosboxDescent.conf\" -conf \"config/dosboxDescent_single.conf\" -noconsole' + "/DOSBox/dosbox.app/Contents/MacOS/DOSBox": + - arguments: "-conf \\\"config/dosboxDescent.conf\\\" -conf \\\"config/dosboxDescent_single.conf\\\" -noconsole" when: - os: mac store: steam - /dosbox/dosbox: - - arguments: '-conf \"config/dosboxDescent.conf\" -conf \"config/dosboxDescent_single.conf\" -noconsole' + "/dosbox/dosbox": + - arguments: "-conf \\\"config/dosboxDescent.conf\\\" -conf \\\"config/dosboxDescent_single.conf\\\" -noconsole" when: - os: linux store: steam - /launch descent.bat: + "/launch descent.bat": - when: - os: windows store: steam @@ -142916,25 +143342,25 @@ Descent (upcoming): installDir: Descent Underground: {} launch: - /launcher/Descent.app/Contents/MacOS/Descent: - - arguments: '--steam' + "/launcher/Descent.app/Contents/MacOS/Descent": + - arguments: "--steam" when: - bit: 64 os: mac store: steam - /launcher/Descent.exe: - - arguments: '--steam' + "/launcher/Descent.exe": + - arguments: "--steam" when: - bit: 64 os: windows store: steam - - arguments: '--steam --vr=osvr' + - arguments: "--steam --vr=osvr" when: - bit: 64 os: windows store: steam - /launcher/descent.sh: - - arguments: '--steam' + "/launcher/descent.sh": + - arguments: "--steam" when: - bit: 64 os: linux @@ -142945,7 +143371,7 @@ Descent - Silence of Mind: installDir: Descent - Silence of Mind: {} launch: - /SofM.exe: + "/SofM.exe": - when: - os: windows store: steam @@ -142953,7 +143379,7 @@ Descent - Silence of Mind: id: 652600 Descent 3: files: - /savegame: + "/savegame": tags: - save when: @@ -142963,15 +143389,15 @@ Descent 3: installDir: Descent 3: {} launch: - /Descent 3.app: + "/Descent 3.app": - when: - os: mac store: steam - /Descent 3.exe: + "/Descent 3.exe": - when: - os: windows store: steam - /descent3: + "/descent3": - when: - bit: 64 os: linux @@ -142988,17 +143414,17 @@ Descent II: installDir: Descent 2: {} launch: - /DOSBox/dosbox.app/Contents/MacOS/DOSBox: - - arguments: '-conf \"./config/dosboxDescent2.conf\" -conf \"./config/dosboxDescent2_single.conf\" -noconsole' + "/DOSBox/dosbox.app/Contents/MacOS/DOSBox": + - arguments: "-conf \\\"./config/dosboxDescent2.conf\\\" -conf \\\"./config/dosboxDescent2_single.conf\\\" -noconsole" when: - os: mac store: steam - /dosbox/dosbox: - - arguments: '-conf \"./config/dosboxDescent2.conf\" -conf \"./config/dosboxDescent2_single.conf\" -noconsole' + "/dosbox/dosbox": + - arguments: "-conf \\\"./config/dosboxDescent2.conf\\\" -conf \\\"./config/dosboxDescent2_single.conf\\\" -noconsole" when: - os: linux store: steam - /launch descent 2.bat: + "/launch descent 2.bat": - when: - os: windows store: steam @@ -143008,7 +143434,7 @@ Descent of Man: installDir: Descent of Man: {} launch: - /DescentOfMan.exe: + "/DescentOfMan.exe": - when: - bit: 64 os: windows @@ -143017,34 +143443,34 @@ Descent of Man: id: 970450 Descent to Undermountain: files: - /DTU.CFG: + "/DTU.CFG": tags: - config when: - os: dos - /KCONFIG.DAT: + "/KCONFIG.DAT": tags: - config when: - os: dos - /SAVE: + "/SAVE": tags: - save when: - os: dos - /SG*.SG: + "/SG*.SG": tags: - save when: - os: dos -'Descent: FreeSpace - The Great War': +"Descent: FreeSpace - The Great War": files: - /Data: + "/Data": tags: - config when: - os: windows - /Players/Single: + "/Players/Single": tags: - save when: @@ -143057,22 +143483,22 @@ Descent to Undermountain: installDir: Freespace: {} launch: - /freespace.exe: + "/freespace.exe": - when: - bit: 32 os: windows store: steam steam: id: 273600 -'Descent: Road to Legend': +"Descent: Road to Legend": installDir: Descent Road to Legend: {} launch: - /Road to Legend.app: + "/Road to Legend.app": - when: - os: mac store: steam - /Road to Legend.exe: + "/Road to Legend.exe": - when: - os: windows store: steam @@ -143086,7 +143512,7 @@ Desecration of Wings: installDir: Desecration of Wings: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -143099,12 +143525,12 @@ Desert Ashes: installDir: Desert Ashes: {} launch: - /DesertAshes.app/Contents/MacOS/DesertAshes: + "/DesertAshes.app/Contents/MacOS/DesertAshes": - when: - os: mac store: steam - workingDir: /DesertAshes.app/Contents/MacOS - /DesertAshes.exe: + workingDir: "/DesertAshes.app/Contents/MacOS" + "/DesertAshes.exe": - when: - os: windows store: steam @@ -143119,7 +143545,7 @@ Desert Bus VR: installDir: DBProject: {} launch: - /DesertBusLauncher.exe: + "/DesertBusLauncher.exe": - arguments: DB4HOPE when: - os: windows @@ -143132,15 +143558,15 @@ Desert Child: installDir: Desert Child: {} launch: - /Desert Child.app: + "/Desert Child.app": - when: - os: mac store: steam - /Desert Child.exe: + "/Desert Child.exe": - when: - os: windows store: steam - /Desert_Child: + "/Desert_Child": - when: - os: linux store: steam @@ -143150,7 +143576,7 @@ Desert Craft: installDir: DesertCraft: {} launch: - /DesertCraft.exe: + "/DesertCraft.exe": - when: - bit: 64 os: windows @@ -143161,11 +143587,11 @@ Desert Golfing: installDir: Desert Golfing: {} launch: - /DesertGolfing.app/Contents/MacOS/DesertGolfing: + "/DesertGolfing.app/Contents/MacOS/DesertGolfing": - when: - os: mac store: steam - /Golf.exe: + "/Golf.exe": - when: - os: windows store: steam @@ -143175,7 +143601,7 @@ Desert Gunner: installDir: Desert Gunner: {} launch: - /dgunner.exe: + "/dgunner.exe": - when: - store: steam steam: @@ -143184,7 +143610,7 @@ Desert Kill: installDir: Desert Kill: {} launch: - /DesertKill.exe: + "/DesertKill.exe": - when: - store: steam steam: @@ -143195,7 +143621,7 @@ Desert Law: installDir: DesertLaw: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -143203,7 +143629,7 @@ Desert Law: id: 356280 Desert Rats Vs. Afrika Korps: files: - /save: + "/save": tags: - save when: @@ -143230,7 +143656,7 @@ Desert Storm: installDir: Desert Storm: {} launch: - /Desert storm.exe: + "/Desert storm.exe": - when: - os: windows store: steam @@ -143238,7 +143664,7 @@ Desert Storm: id: 581930 Desert Thunder: files: - /System/*.ini: + "/System/*.ini": tags: - config when: @@ -143248,17 +143674,17 @@ Desert Thunder: installDir: Desert Thunder: {} launch: - /system/DT.exe: + "/system/DT.exe": - when: - store: steam - workingDir: /system + workingDir: "/system" steam: id: 283330 Desert coachman: installDir: Desert coachman: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -143268,7 +143694,7 @@ Desert lost: installDir: Desert lost: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -143278,7 +143704,7 @@ Desert monsters: installDir: Desert monsters: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -143288,7 +143714,7 @@ Desert of Doitjma: installDir: Desert of Despair: {} launch: - /desertofdoitjma.exe: + "/desertofdoitjma.exe": - when: - os: windows store: steam @@ -143298,11 +143724,11 @@ Desert of Vice: installDir: Desert of Vice: {} launch: - /Desert of Vice.app/Contents/MacOS/Desert of Vice: + "/Desert of Vice.app/Contents/MacOS/Desert of Vice": - when: - os: mac store: steam - /DesertOfVice.exe: + "/DesertOfVice.exe": - when: - os: windows store: steam @@ -143312,7 +143738,7 @@ Desert of the Dead: installDir: Desert Of The Dead: {} launch: - /gamereliz2.exe: + "/gamereliz2.exe": - when: - os: windows store: steam @@ -143322,7 +143748,7 @@ DesertLand 2115: installDir: DesertLand 2115: {} launch: - /DesertLand2115_Steam.exe: + "/DesertLand2115_Steam.exe": - when: - os: windows store: steam @@ -143332,24 +143758,24 @@ DesertShootout: installDir: DesertShootout: {} launch: - /desertshootout.exe: + "/desertshootout.exe": - when: - os: windows store: steam steam: id: 802180 -'Deserted: The Story of Peter': +"Deserted: The Story of Peter": steam: id: 503320 Deserter Simulator: installDir: Deserter Simulator: {} launch: - /app/Deserter Simulator.app: + "/app/Deserter Simulator.app": - when: - os: mac store: steam - /exe/Deserter Simulator.exe: + "/exe/Deserter Simulator.exe": - when: - os: windows store: steam @@ -143364,21 +143790,21 @@ Design Hero: installDir: Design Hero: {} launch: - /Game.app: + "/Game.app": - when: - os: mac store: steam - /Game.exe: + "/Game.exe": - when: - os: windows store: steam steam: id: 697880 -'Design It, Drive It: Speedboats': +"Design It, Drive It: Speedboats": installDir: Design it Drive it Speedboats: {} launch: - /DIDIBoats.exe: + "/DIDIBoats.exe": - when: - os: windows store: steam @@ -143388,7 +143814,7 @@ Desire Den: installDir: Desire Den: {} launch: - /Desire Den.exe: + "/Desire Den.exe": - when: - os: windows store: steam @@ -143398,7 +143824,7 @@ Desire Gambling House/欲望赌馆: installDir: Desire Gambling House欲望赌馆: {} launch: - /DGH.exe: + "/DGH.exe": - when: - store: steam steam: @@ -143415,15 +143841,15 @@ Desktop Dungeons: installDir: Desktop Dungeons: {} launch: - /DesktopDungeons.app: + "/DesktopDungeons.app": - when: - os: mac store: steam - /DesktopDungeons.exe: + "/DesktopDungeons.exe": - when: - os: windows store: steam - /DesktopDungeons.sh: + "/DesktopDungeons.sh": - when: - os: linux store: steam @@ -143431,12 +143857,12 @@ Desktop Dungeons: id: 226620 Desktop Dungeons Rewind: files: - /Desktop Dungeons Rewind_Data/Saves//*.run: + "/Desktop Dungeons Rewind_Data/Saves//*.run": tags: - save when: - os: windows - /Desktop Dungeons Rewind_Data/Saves//*.sav: + "/Desktop Dungeons Rewind_Data/Saves//*.sav": tags: - save when: @@ -143451,17 +143877,17 @@ Desktop Dungeons Rewind: installDir: Desktop Dungeons Rewind: {} launch: - /Desktop Dungeons Rewind.exe: + "/Desktop Dungeons Rewind.exe": - when: - os: windows store: steam steam: id: 1976950 -'Desktop Dynasties: Pro Football': +"Desktop Dynasties: Pro Football": installDir: Desktop Dynasties: {} launch: - /Desktop Dynasties.exe: + "/Desktop Dynasties.exe": - when: - os: windows store: steam @@ -143471,7 +143897,7 @@ Desktop Girls: installDir: Desktop Girls: {} launch: - /Desktop Girls.exe: + "/Desktop Girls.exe": - when: - os: windows store: steam @@ -143481,7 +143907,7 @@ Desktop Jumpscares: installDir: Desktop Jumpscares: {} launch: - /Desktop Jumpscares.exe: + "/Desktop Jumpscares.exe": - when: - os: windows store: steam @@ -143491,7 +143917,7 @@ Desktop Soccer: installDir: Desktop Soccer: {} launch: - /Desktop Soccer.exe: + "/Desktop Soccer.exe": - when: - os: windows store: steam @@ -143501,20 +143927,18 @@ Desktop Tree: installDir: Desktop Tree: {} launch: - /Desktop Tree.app: - - arguments: '--disable-gpu-compositing --force-cpu-draw --enable-transparent-visuals --disable-gpu' + "/Desktop Tree.app": + - arguments: "--disable-gpu-compositing --force-cpu-draw --enable-transparent-visuals --disable-gpu" when: - os: mac store: steam - /nw: - - arguments: >- - --nwapp=game --password-store=basic --disable-gpu-compositing --force-cpu-draw --enable-transparent-visuals - --disable-gpu --nowarning + "/nw": + - arguments: "--nwapp=game --password-store=basic --disable-gpu-compositing --force-cpu-draw --enable-transparent-visuals --disable-gpu --nowarning" when: - os: linux store: steam - /nw.exe: - - arguments: '--nwapp=game\\1 --disable-gpu-compositing --force-cpu-draw --enable-transparent-visuals --disable-gpu' + "/nw.exe": + - arguments: "--nwapp=game\\\\1 --disable-gpu-compositing --force-cpu-draw --enable-transparent-visuals --disable-gpu" when: - os: windows store: steam @@ -143522,40 +143946,42 @@ Desktop Tree: id: 913110 Desolate: files: - /Desolate: + "/Desolate": tags: - save when: - - store: steam - /Desolate/Saved/Config/WindowsNoEditor: + - os: windows + store: steam + "/Desolate/Saved/Config/WindowsNoEditor": tags: - config when: - - store: steam + - os: windows + store: steam installDir: Desolate: {} launch: - /start.bat: + "/start.bat": - when: - os: windows store: steam steam: id: 671510 -'Desolate City: The Bloody Dawn Enhanced Edition': +"Desolate City: The Bloody Dawn Enhanced Edition": installDir: Desolate City The Bloody Dawn Enhanced Edition: {} launch: - /game.app/Contents/MacOS/parent: + "/game.app/Contents/MacOS/parent": - arguments: game.app/Contents/MacOS/runtime when: - os: mac store: steam - /game.exe: + "/game.exe": - when: - bit: 32 os: windows store: steam - /game.x64: + "/game.x64": - when: - bit: 64 os: linux @@ -143567,21 +143993,21 @@ Desolate Sands: Desolate Sands: {} steam: id: 930300 -'Desolate Wastes: Vendor Chronicles': +"Desolate Wastes: Vendor Chronicles": installDir: Desolate Wastes Vendor Chronicles: {} launch: - /Desolate Wastes Vendor Chronicles.exe: + "/Desolate Wastes Vendor Chronicles.exe": - when: - os: windows store: steam steam: id: 563120 -'Desolate: Clone Catastrophe': +"Desolate: Clone Catastrophe": installDir: DESOLATE Clone Catastrophe: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -143594,7 +144020,7 @@ Desolatium: installDir: DESOLATIUM: {} launch: - /Desolatium.exe: + "/Desolatium.exe": - when: - os: windows store: steam @@ -143607,11 +144033,11 @@ Desordre: installDir: DESORDRE: {} launch: - /Desordre.exe: + "/Desordre.exe": - when: - os: windows store: steam - - arguments: '-vulkan' + - arguments: "-vulkan" when: - os: windows store: steam @@ -143621,20 +144047,20 @@ Despair: installDir: Despair: {} launch: - /Despair.exe: + "/Despair.exe": - when: - os: windows store: steam steam: id: 368990 -'Desperados 2: Cooper''s Revenge': +"Desperados 2: Cooper's Revenge": files: - /data/configuration/game: + "/data/configuration/game": tags: - config when: - os: windows - /Cooper's Revenge/Savegame: + "/Cooper's Revenge/Savegame": tags: - save when: @@ -143644,29 +144070,29 @@ Despair: installDir: Desperados 2: {} launch: - /Desperados2.exe: + "/Desperados2.exe": - when: - store: steam steam: id: 9710 Desperados III: files: - /Library/Application Support/Desperados III: + "/Library/Application Support/Desperados III": tags: - save when: - os: mac - /Desperados III: + "/Desperados III": tags: - save when: - os: windows - /Desperados III/: + "/Desperados III/": tags: - config when: - os: windows - /Desperados III: + "/Desperados III": tags: - save when: @@ -143676,15 +144102,15 @@ Desperados III: installDir: Desperados III: {} launch: - /Desperados III.app: + "/Desperados III.app": - when: - os: mac store: steam - /Desperados III.exe: + "/Desperados III.exe": - when: - os: windows store: steam - /Desperados III.x86_64: + "/Desperados III.x86_64": - when: - os: linux store: steam @@ -143694,37 +144120,38 @@ Desperados III: - config steam: id: 610370 -'Desperados: Wanted Dead or Alive': +"Desperados: Wanted Dead or Alive": files: - /Game/Data/Configuration: + "/Game/Data/Configuration": tags: - config when: - os: windows - /Game/Data/Savegame: + "/Game/Data/Savegame": tags: - save when: - os: windows - /THQNordic/Desperados: + "/THQNordic/Desperados": tags: - save when: - - store: steam + - os: windows + store: steam gog: id: 1207658926 installDir: Desperados Wanted Dead or Alive: {} launch: - /Desperados.app: + "/Desperados.app": - when: - os: mac store: steam - /desperados.exe: + "/desperados.exe": - when: - os: windows store: steam - /desperados32: + "/desperados32": - when: - os: linux store: steam @@ -143734,7 +144161,7 @@ Desperate Game: installDir: Desperate game: {} launch: - /Desperategame.exe: + "/Desperategame.exe": - when: - os: windows store: steam @@ -143744,7 +144171,7 @@ Desperate Times: installDir: Desperate Times: {} launch: - /DesperateTimes.exe: + "/DesperateTimes.exe": - when: - os: windows store: steam @@ -143754,32 +144181,32 @@ Despoiler: installDir: DESPOILER: {} launch: - /despoiler.exe: + "/despoiler.exe": - when: - bit: 64 os: windows store: steam steam: id: 635050 -Despot's Game: +"Despot's Game": files: - /Packages/tinyBuildGames.DespotsGame_3sz1pp2ynv2xe/SystemAppData/wgs: + "/Packages/tinyBuildGames.DespotsGame_3sz1pp2ynv2xe/SystemAppData/wgs": tags: - save when: - os: windows store: microsoft - /unity3d/Konfa Games/Despot's Game//profile.bin: + "/unity3d/Konfa Games/Despot's Game//profile.bin": tags: - save when: - os: linux - /unity3d/Konfa Games/Despot's Game//settings.json: + "/unity3d/Konfa Games/Despot's Game//settings.json": tags: - config when: - os: linux - /unity3d/Konfa Games/Despot's Game/prefs: + "/unity3d/Konfa Games/Despot's Game/prefs": tags: - config when: @@ -143790,17 +144217,17 @@ Despot's Game: steamExtra: - 1515100 installDir: - Despot's Game: {} + "Despot's Game": {} launch: - /Despot's Game.exe: + "/Despot's Game.exe": - when: - os: windows store: steam - /DespotsGame.app/Contents/MacOS/Despot's Game: + "/DespotsGame.app/Contents/MacOS/Despot's Game": - when: - os: mac store: steam - /DespotsGame.x86_64: + "/DespotsGame.x86_64": - when: - os: linux store: steam @@ -143808,7 +144235,7 @@ Despot's Game: id: 1227280 Despotism 3k: files: - /AppData/LocalLow/Konfa Games/Despotism3k: + "/AppData/LocalLow/Konfa Games/Despotism3k": tags: - config - save @@ -143817,16 +144244,19 @@ Despotism 3k: installDir: Despotism 3k: {} launch: - /Despotism3k.app/Contents/MacOS/Despotism3k: + "/Despotism3k.app/Contents/MacOS/Despotism3k": - when: - os: mac store: steam - /Despotism3k.exe: + "/Despotism3k.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam - /Despotism3k.x86_64: + "/Despotism3k.x86_64": - when: - os: linux store: steam @@ -143834,7 +144264,7 @@ Despotism 3k: id: 699920 Dess M-8: files: - /DessM8_Final_PC: + "/DessM8_Final_PC": tags: - save when: @@ -143843,7 +144273,7 @@ Dessert Storm: installDir: Dessert Storm: {} launch: - /DessertStorm.exe: + "/DessertStorm.exe": - when: - os: windows store: steam @@ -143853,7 +144283,7 @@ Destinata: installDir: Destinata Red Edition: {} launch: - /Destinanta_RED_Fin.exe: + "/Destinanta_RED_Fin.exe": - when: - bit: 64 os: windows @@ -143864,29 +144294,29 @@ Destination Ares: installDir: Destination Ares: {} launch: - /Destination Ares.exe: + "/Destination Ares.exe": - when: - store: steam steam: id: 553470 -'Destination Dungeon: Crypts of Warthallow': +"Destination Dungeon: Crypts of Warthallow": steam: id: 702910 -'Destination Dungeon: Tomb of Repentance': +"Destination Dungeon: Tomb of Repentance": steam: id: 942910 -'Destination Dungeons: Catacombs of Dreams': +"Destination Dungeons: Catacombs of Dreams": steam: id: 884230 -'Destination Primus Vita - Episode 1: Austin': +"Destination Primus Vita - Episode 1: Austin": installDir: Destination Primus Vita Episode 1: {} launch: - /DPVE1.app/Contents/MacOS/DPVE1: + "/DPVE1.app/Contents/MacOS/DPVE1": - when: - os: mac store: steam - /DPVE1.exe: + "/DPVE1.exe": - when: - os: windows store: steam @@ -143896,21 +144326,21 @@ Destination Sol: installDir: Destination Sol: {} launch: - /sol.exe: + "/sol.exe": - when: - os: windows store: steam - /sol.sh: + "/sol.sh": - when: - os: linux store: steam - /solOSX.sh: + "/solOSX.sh": - when: - os: mac store: steam steam: id: 342980 -'Destination: Pluto The VR Experience': +"Destination: Pluto The VR Experience": installDir: Destination Pluto The VR Experience: {} steam: @@ -143919,7 +144349,7 @@ Destined: installDir: Destined: {} launch: - /Destined.exe: + "/Destined.exe": - when: - os: windows store: steam @@ -143927,7 +144357,7 @@ Destined: id: 827860 Destiny 2: files: - /Bungie/DestinyPC/prefs: + "/Bungie/DestinyPC/prefs": tags: - config when: @@ -143935,7 +144365,7 @@ Destiny 2: installDir: Destiny 2: {} launch: - /destiny2launcher.exe: + "/destiny2launcher.exe": - when: - os: windows store: steam @@ -143948,7 +144378,7 @@ Destiny Hunter: installDir: Destiny Hunter: {} launch: - /DestinyHunter.exe: + "/DestinyHunter.exe": - when: - os: windows store: steam @@ -143956,7 +144386,7 @@ Destiny Hunter: id: 1028830 Destiny Warriors RPG: files: - /*.rvdata2: + "/*.rvdata2": tags: - save when: @@ -143964,7 +144394,7 @@ Destiny Warriors RPG: installDir: Elements of Power: {} launch: - /EQLauncher.exe: + "/EQLauncher.exe": - when: - os: windows store: steam @@ -143974,7 +144404,7 @@ Destiny of Altrais: installDir: Destiny of Altrais: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: @@ -143983,11 +144413,11 @@ Destiny of Ancient Kingdoms: installDir: Destiny of Ancient Kingdoms: {} launch: - /GameClient.exe: + "/GameClient.exe": - when: - os: windows store: steam - /GameUpdate.exe: + "/GameUpdate.exe": - when: - store: steam steam: @@ -143999,7 +144429,7 @@ Destiny of Light: installDir: Destiny of Light: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -144009,17 +144439,17 @@ Destiny of a Wizard: installDir: Destiny of a Wizard: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam steam: id: 670140 -'Destiny of a Wizard 2: Beyond the Vale': +"Destiny of a Wizard 2: Beyond the Vale": installDir: Destiny of a Wizard 2 Beyond the Vale: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -144027,12 +144457,12 @@ Destiny of a Wizard: id: 864310 Destiny or Fate: files: - /AppData/LocalLow/Blasters/DOF/GameConfig.cfg: + "/AppData/LocalLow/Blasters/DOF/GameConfig.cfg": tags: - config when: - os: windows - /AppData/LocalLow/Blasters/DOF/SaveData: + "/AppData/LocalLow/Blasters/DOF/SaveData": tags: - save when: @@ -144040,16 +144470,16 @@ Destiny or Fate: installDir: DOF: {} launch: - /DOF.app/Contents/MacOS/DOF: + "/DOF.app/Contents/MacOS/DOF": - when: - os: mac store: steam - /DOF.exe: + "/DOF.exe": - when: - bit: 64 os: windows store: steam - /DOF.x86_64: + "/DOF.x86_64": - when: - bit: 64 os: linux @@ -144060,22 +144490,22 @@ Destiny or Fate: - config steam: id: 919220 -'Destiny''s Princess: A War Story, A Love Story': +"Destiny's Princess: A War Story, A Love Story": installDir: - 'Destiny''s Princess A War Story, A Love Story': {} + "Destiny's Princess A War Story, A Love Story": {} launch: - /Destiny's Princess.exe: - - arguments: '-windowed' + "/Destiny's Princess.exe": + - arguments: "-windowed" when: - os: windows store: steam steam: id: 447170 -Destiny's Sword: +"Destiny's Sword": installDir: - Destiny's Sword: {} + "Destiny's Sword": {} launch: - /Destinys-Sword-Client-PC.exe: + "/Destinys-Sword-Client-PC.exe": - when: - os: windows store: steam @@ -144086,12 +144516,12 @@ Destle Strike: id: 1012190 Destroy All Humans!: files: - /DH/Saved/Config/WindowsNoEditor: + "/DH/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /DH/Saved/SaveGames: + "/DH/Saved/SaveGames": tags: - save when: @@ -144101,7 +144531,7 @@ Destroy All Humans!: installDir: Destroy All Humans!: {} launch: - /DH.exe: + "/DH.exe": - when: - bit: 64 os: windows @@ -144114,7 +144544,7 @@ Destroy All Humans! - Clone Carnage: installDir: Destroy All Humans Clone Carnage: {} launch: - /DH.exe: + "/DH.exe": - when: - bit: 64 os: windows @@ -144123,17 +144553,17 @@ Destroy All Humans! - Clone Carnage: id: 1872550 Destroy All Humans! 2 - Reprobed: files: - /DH2/Saved/Config/WindowsNoEditor: + "/DH2/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /DH2/Saved/SaveGames: + "/DH2/Saved/SaveGames": tags: - save when: - os: windows - /DH2/Saved/SaveGames/SaveOptions.sav: + "/DH2/Saved/SaveGames/SaveOptions.sav": tags: - config when: @@ -144142,21 +144572,21 @@ Destroy All Humans! 2 - Reprobed: id: 1744638356 id: gogExtra: - - 2114006874 + - 1345099658 + - 1418041747 - 1620328558 - 1735750190 - - 1418041747 - - 1345099658 - 1794014675 + - 2114006874 steamExtra: - 2080850 - - 2080852 - 2080851 + - 2080852 - 2082930 installDir: Destroy All Humans! 2 Reprobed: {} launch: - /DH.exe: + "/DH.exe": - when: - bit: 64 os: windows @@ -144167,7 +144597,7 @@ Destroy Space Aliens: installDir: Destroy Space Aliens: {} launch: - /DSA.exe: + "/DSA.exe": - when: - os: windows store: steam @@ -144177,11 +144607,11 @@ Destroy The World: installDir: Destroy The World: {} launch: - /DestroyTheWorld_V_1.0.1.exe: + "/DestroyTheWorld_V_1.0.1.exe": - when: - os: windows store: steam - /DestroyTheWorld_V_1.0.1_MAC.app: + "/DestroyTheWorld_V_1.0.1_MAC.app": - when: - os: mac store: steam @@ -144199,18 +144629,18 @@ Destroyer Command: installDir: PHtest: {} launch: - /RaidGame.exe: + "/RaidGame.exe": - when: - bit: 64 os: windows store: steam steam: id: 1789480 -'Destroyer: Invasion': +"Destroyer: Invasion": installDir: Destroyer Invasion: {} launch: - /destroyer.exe: + "/destroyer.exe": - when: - os: windows store: steam @@ -144220,11 +144650,11 @@ Destructamundo: installDir: Destructamundo: {} launch: - /Destructamundo.app/Contents/MacOS/Destructamundo: + "/Destructamundo.app/Contents/MacOS/Destructamundo": - when: - os: mac store: steam - /Destructamundo.exe: + "/Destructamundo.exe": - when: - os: windows store: steam @@ -144234,7 +144664,7 @@ Destruction: installDir: Destruction: {} launch: - /Destruction.exe: + "/Destruction.exe": - when: - os: windows store: steam @@ -144244,7 +144674,7 @@ Destruction (Rising Win Tech): installDir: Destruction: {} launch: - /Destruction.exe: + "/Destruction.exe": - when: - os: windows store: steam @@ -144252,29 +144682,29 @@ Destruction (Rising Win Tech): id: 1033660 Destruction Derby: files: - /DD.CFG: + "/DD.CFG": tags: - config when: - os: dos - /SAVES: + "/SAVES": tags: - save when: - os: dos Destruction Derby 2: files: - /SAVEGAME: + "/SAVEGAME": tags: - save when: - os: dos - /SaveGames: + "/SaveGames": tags: - save when: - os: windows - /pname.txt: + "/pname.txt": tags: - save when: @@ -144288,7 +144718,7 @@ Destructions: installDir: Destructions: {} launch: - /Destructions.exe: + "/Destructions.exe": - when: - os: windows store: steam @@ -144298,26 +144728,26 @@ Destructivator 2: installDir: Destructivator 2: {} launch: - /Destructivator2.exe: + "/Destructivator2.exe": - when: - os: windows store: steam steam: id: 1124990 -'Destructive physics: destruction simulator': +"Destructive physics: destruction simulator": installDir: Destructive physics: {} launch: - /Destructive Physics.exe: + "/Destructive Physics.exe": - when: - bit: 64 os: windows store: steam - /DestructivePhysics.app: + "/DestructivePhysics.app": - when: - os: mac store: steam - /DestructivePhysics.x86_64: + "/DestructivePhysics.x86_64": - when: - bit: 64 os: linux @@ -144328,7 +144758,7 @@ DestructoPod: installDir: DestructoPod: {} launch: - /destructopod.exe: + "/destructopod.exe": - when: - bit: 64 os: windows @@ -144337,7 +144767,7 @@ DestructoPod: id: 1088910 Desync: files: - /DESYNC_Data/StreamingAssets/SaveData: + "/DESYNC_Data/StreamingAssets/SaveData": tags: - save when: @@ -144345,20 +144775,20 @@ Desync: installDir: Desync: {} launch: - /DESYNC.exe: + "/DESYNC.exe": - when: - os: windows store: steam steam: id: 390030 -'Desynced: Autonomous Colony Simulator': +"Desynced: Autonomous Colony Simulator": files: - /Desynced/Saved/Config: + "/Desynced/Saved/Config": tags: - config when: - os: windows - /Desynced/Saved/SaveGames: + "/Desynced/Saved/SaveGames": tags: - save when: @@ -144366,7 +144796,7 @@ Desync: installDir: Desynced: {} launch: - /Desynced/Binaries/Win64/Desynced.exe: + "/Desynced/Binaries/Win64/Desynced.exe": - when: - bit: 64 os: windows @@ -144378,53 +144808,53 @@ Detached: Detached: {} steam: id: 436230 -'Detached: Non-VR Edition': +"Detached: Non-VR Edition": installDir: Detached Non-VR Edition: {} launch: - /DetachedGameplay.exe: + "/DetachedGameplay.exe": - when: - bit: 64 os: windows store: steam steam: id: 848410 -'Detained: Too Good for School': +"Detained: Too Good for School": steam: id: 1394650 -'Detective Butler: Maiden Voyage Murder': +"Detective Butler: Maiden Voyage Murder": installDir: Detective Butler Maiden Voyage Murder: {} launch: - /DetectiveButler.app: + "/DetectiveButler.app": - when: - os: mac store: steam - /DetectiveButler.exe: - - arguments: '-s ./saves' + "/DetectiveButler.exe": + - arguments: "-s ./saves" when: - os: windows store: steam - /run-x64.sh: + "/run-x64.sh": - when: - bit: 64 os: linux store: steam - /run-x86.sh: + "/run-x86.sh": - when: - bit: 32 os: linux store: steam steam: id: 612620 -'Detective Case and Clown Bot in: Murder in the Hotel Lisbon': +"Detective Case and Clown Bot in: Murder in the Hotel Lisbon": files: - /Case_Bot: + "/Case_Bot": tags: - save when: - os: windows - /Case_Bot/settings.ini: + "/Case_Bot/settings.ini": tags: - config when: @@ -144432,41 +144862,41 @@ Detached: installDir: CaseBot: {} launch: - /Case&Bot.exe: + "/Case&Bot.exe": - when: - os: windows store: steam - /CaseBot.app: + "/CaseBot.app": - when: - os: mac store: steam - /Case_Bot: + "/Case_Bot": - when: - os: linux store: steam steam: id: 297290 -'Detective Case and Clown Bot in: The Express Killer': +"Detective Case and Clown Bot in: The Express Killer": installDir: Detective Case and Clown Bot in The Express Killer: {} launch: - /Case&BotExpressKiller.exe: + "/Case&BotExpressKiller.exe": - when: - os: windows store: steam - /Case_BotExpressKiller: + "/Case_BotExpressKiller": - when: - os: linux store: steam - /ExpressKiller.app: + "/ExpressKiller.app": - when: - os: mac store: steam steam: id: 711920 -'Detective Di: The Silk Rose Murders': +"Detective Di: The Silk Rose Murders": files: - /AppData/LocalLow/Nupixo Games/Detective Di_ The Silk Rose Murders/*.save: + "/AppData/LocalLow/Nupixo Games/Detective Di_ The Silk Rose Murders/*.save": tags: - save when: @@ -144474,16 +144904,16 @@ Detached: installDir: Detective Di The Silk Rose Murders: {} launch: - /DetectiveDi.app/Contents/MacOS/DetectiveDi: + "/DetectiveDi.app/Contents/MacOS/DetectiveDi": - when: - os: mac store: steam - /DetectiveDi.exe: + "/DetectiveDi.exe": - when: - os: windows store: steam registry: - 'HKEY_CURRENT_USER/SOFTWARE/Nupixo Games/Detective Di: The Silk Rose Murders': + "HKEY_CURRENT_USER/SOFTWARE/Nupixo Games/Detective Di: The Silk Rose Murders": tags: - config steam: @@ -144492,7 +144922,7 @@ Detective Failure: installDir: Detective Failure: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -144500,19 +144930,19 @@ Detective Failure: id: 874080 Detective From The Crypt: files: - /AppData/LocalLow/DefaultCompany/DetectiveFromTheCrypt/*.json: + "/AppData/LocalLow/DefaultCompany/DetectiveFromTheCrypt/*.json": tags: - config - save when: - os: windows - /unity3d/DefaultCompany/DetectiveFromTheCrypt/*.json: + "/unity3d/DefaultCompany/DetectiveFromTheCrypt/*.json": tags: - config - save when: - os: linux - /unity3d/DefaultCompany/DetectiveFromTheCrypt/prefs: + "/unity3d/DefaultCompany/DetectiveFromTheCrypt/prefs": tags: - config when: @@ -144524,12 +144954,12 @@ Detective From The Crypt: installDir: Detective From The Crypt: {} launch: - /DetectiveFromTheCrypt.exe: + "/DetectiveFromTheCrypt.exe": - when: - bit: 64 os: windows store: steam - /DetectiveFromTheCrypt.x86_64: + "/DetectiveFromTheCrypt.x86_64": - when: - bit: 64 os: linux @@ -144542,7 +144972,7 @@ Detective From The Crypt: id: 1352200 Detective Gallo: files: - /UserSaves: + "/UserSaves": tags: - save when: @@ -144552,7 +144982,7 @@ Detective Gallo: installDir: Detective Gallo: {} launch: - /Detective Gallo.exe: + "/Detective Gallo.exe": - when: - os: windows store: steam @@ -144564,14 +144994,14 @@ Detective Girl of the Steam City: installDir: Detective Girl of the Steam City: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: id: 1012030 Detective Grimoire: files: - /air.com.sfbgames.DetectiveGrimoire/Local Store/#SharedObjects/DetectiveGrimoireDesktopSteam.swf/DetectiveGrimoireSave.sol: + "/air.com.sfbgames.DetectiveGrimoire/Local Store/#SharedObjects/DetectiveGrimoireDesktopSteam.swf/DetectiveGrimoireSave.sol": tags: - save when: @@ -144581,15 +145011,15 @@ Detective Grimoire: installDir: Detective Grimoire: {} launch: - /Detective Grimoire.exe: + "/Detective Grimoire.exe": - when: - os: windows store: steam - /DetectiveGrimoire.app: + "/DetectiveGrimoire.app": - when: - os: mac store: steam - /run.sh: + "/run.sh": - when: - os: linux store: steam @@ -144599,15 +145029,15 @@ Detective Hank and the Golden Sneeze: installDir: Detective Hank and the Golden Sneeze: {} launch: - /hankSneeze.app/Contents/MacOS/hankSneeze: + "/hankSneeze.app/Contents/MacOS/hankSneeze": - when: - os: mac store: steam - /hankSneeze.exe: + "/hankSneeze.exe": - when: - os: windows store: steam - /hankSneeze.x86: + "/hankSneeze.x86": - when: - os: linux store: steam @@ -144617,7 +145047,7 @@ Detective Hayseed - Hollywood: installDir: Detective Hayseed - Hollywood: {} launch: - /Polda6.exe: + "/Polda6.exe": - when: - os: windows store: steam @@ -144627,7 +145057,7 @@ Detective Hunt - Crownston City PD: installDir: Detective Hunt: {} launch: - /Detective Hunt.exe: + "/Detective Hunt.exe": - when: - os: windows store: steam @@ -144637,11 +145067,11 @@ Detective Jackie - Mystic Case: installDir: Jackie: {} launch: - /DJ1_MacOS.app/Contents/MacOS/DJ1_MacOS: + "/DJ1_MacOS.app/Contents/MacOS/DJ1_MacOS": - when: - os: mac store: steam - /Detective Jackie.exe: + "/Detective Jackie.exe": - when: - os: windows store: steam @@ -144651,7 +145081,7 @@ Detective Kobayashi: installDir: Detective Kobayashi: {} launch: - /KobaEu.exe: + "/KobaEu.exe": - when: - os: windows store: steam @@ -144664,7 +145094,7 @@ Detective Psychic: installDir: Detective_Psychic: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -144674,11 +145104,11 @@ Detective Sherlock Pug: installDir: Detective Sherlock Pug: {} launch: - /Detective Sherlock Pug x86.exe: + "/Detective Sherlock Pug x86.exe": - when: - os: windows store: steam - /Detective Sherlock Pug.app: + "/Detective Sherlock Pug.app": - when: - os: mac store: steam @@ -144691,7 +145121,7 @@ Detective Solitaire Inspector Magic: installDir: Detective Solitaire Inspector Magic: {} launch: - /Detective Solitaire. Inspector Magic.exe: + "/Detective Solitaire. Inspector Magic.exe": - when: - os: windows store: steam @@ -144701,11 +145131,11 @@ Detective Solitaire. Butler Story: installDir: DETECTIVE SOLITAIRE BUTLER STORY: {} launch: - /Detective Solitaire. Butler Story.exe: + "/Detective Solitaire. Butler Story.exe": - when: - os: windows store: steam - /Detective solitaire. Butler story.app: + "/Detective solitaire. Butler story.app": - when: - os: mac store: steam @@ -144715,7 +145145,7 @@ Detective escape1: installDir: Detective escape1: {} launch: - /Detective escape1.exe: + "/Detective escape1.exe": - when: - os: windows store: steam @@ -144726,18 +145156,18 @@ Detectivez: id: 1012470 Detention: files: - /.config/unity3d/RedCandleGames/Detention: + "/.config/unity3d/RedCandleGames/Detention": tags: - config - save when: - os: linux - /AppData/LocalLow/RedCandleGames/Detention: + "/AppData/LocalLow/RedCandleGames/Detention": tags: - save when: - os: windows - /AppData/LocalLow/RedCandleGames/Detention/UserGameSetting.json: + "/AppData/LocalLow/RedCandleGames/Detention/UserGameSetting.json": tags: - config when: @@ -144745,15 +145175,15 @@ Detention: installDir: Detention: {} launch: - /Detention.app: + "/Detention.app": - when: - os: mac store: steam - /Detention.exe: + "/Detention.exe": - when: - os: windows store: steam - /Detention.x86: + "/Detention.x86": - when: - os: linux store: steam @@ -144765,7 +145195,7 @@ Detention: id: 555220 DethKarz: files: - /Data/*.dks: + "/Data/*.dks": tags: - save when: @@ -144775,7 +145205,7 @@ DethKarz: installDir: DethKarz: {} launch: - /Dethkarz.exe: + "/Dethkarz.exe": - when: - os: windows store: steam @@ -144789,7 +145219,7 @@ Detonation: installDir: Detonation: {} launch: - /Detonation.exe: + "/Detonation.exe": - when: - os: windows store: steam @@ -144799,7 +145229,7 @@ Detour: installDir: DETOUR: {} launch: - /DETOUR.exe: + "/DETOUR.exe": - when: - store: steam steam: @@ -144808,26 +145238,26 @@ Detrita Battlegrounds: installDir: Detrita Battlegrounds: {} launch: - /DetritaBattlegrounds.exe: + "/DetritaBattlegrounds.exe": - when: - bit: 64 os: windows store: steam steam: id: 672180 -'Detroit: Become Human': +"Detroit: Become Human": files: - /GraphicOptions.JSON: + "/GraphicOptions.JSON": tags: - config when: - os: windows - /WindowInfo.JSON: + "/WindowInfo.JSON": tags: - config when: - os: windows - /Saved Games/Quantic Dream/Detroit Become Human: + "/Saved Games/Quantic Dream/Detroit Become Human": tags: - config - save @@ -144836,7 +145266,7 @@ Detrita Battlegrounds: installDir: Detroit Become Human: {} launch: - /DetroitBecomeHuman.exe: + "/DetroitBecomeHuman.exe": - when: - bit: 64 os: windows @@ -144845,28 +145275,28 @@ Detrita Battlegrounds: id: 1222140 Deus: files: - /OPTION.DAT: + "/OPTION.DAT": tags: - config when: - os: dos - /SAVE**: + "/SAVE**": tags: - save when: - os: dos - os: windows - /SAVE.DAT: + "/SAVE.DAT": tags: - save when: - os: dos - /option.dat: + "/option.dat": tags: - config when: - os: windows - /save.dat: + "/save.dat": tags: - save when: @@ -144875,12 +145305,12 @@ Deus: id: 1207662383 Deus Ex: files: - /Save: + "/Save": tags: - save when: - os: windows - /System/*.ini: + "/System/*.ini": tags: - config when: @@ -144890,15 +145320,15 @@ Deus Ex: installDir: Deus Ex: {} launch: - /System/DeusEx.exe: + "/System/DeusEx.exe": - when: - store: steam - workingDir: /System + workingDir: "/System" steam: id: 6910 Deus Ex GO: files: - /Packages/39C668CD.DeusExGO_r7bfsmp40f67j/LocalState: + "/Packages/39C668CD.DeusExGO_r7bfsmp40f67j/LocalState": tags: - config - save @@ -144908,16 +145338,16 @@ Deus Ex Machina: installDir: DeusExMachina: {} launch: - /DEM.exe: + "/DEM.exe": - when: - os: windows store: steam - /deusexmachina.app: + "/deusexmachina.app": - when: - bit: 64 os: mac store: steam - /nw: + "/nw": - when: - os: linux store: steam @@ -144927,24 +145357,24 @@ Deus Ex Machina 2: installDir: DEM2: {} launch: - /DEM2_20140401_MAC_UNIV_NoDialog_NoLevelSelect.app: + "/DEM2_20140401_MAC_UNIV_NoDialog_NoLevelSelect.app": - when: - os: mac store: steam - /DEM2_20140401_WIN_NoDialog_NoLevelSelect.exe: + "/DEM2_20140401_WIN_NoDialog_NoLevelSelect.exe": - when: - os: windows store: steam steam: id: 353610 -'Deus Ex: Breach': +"Deus Ex: Breach": files: - /userdata//555450/remote: + "/userdata//555450/remote": tags: - save when: - store: steam - /userdata//555450/remote/game_options.bin: + "/userdata//555450/remote/game_options.bin": tags: - config when: @@ -144952,19 +145382,19 @@ Deus Ex Machina 2: installDir: Deus Ex Breach: {} launch: - /retail/DXB.exe: + "/retail/DXB.exe": - when: - os: windows store: steam registry: - 'HKEY_CURRENT_USER/Software/Eidos Montreal/Deus Ex: Breach': + "HKEY_CURRENT_USER/Software/Eidos Montreal/Deus Ex: Breach": tags: - config steam: id: 555450 -'Deus Ex: Human Revolution': +"Deus Ex: Human Revolution": files: - /userdata//28050/remote: + "/userdata//28050/remote": tags: - save when: @@ -144978,57 +145408,58 @@ Deus Ex Machina 2: installDir: Deus Ex - Human Revolution: {} launch: - /dxhr.exe: + "/dxhr.exe": - when: - store: steam - - arguments: '-setup' + - arguments: "-setup" when: - store: steam registry: - 'HKEY_CURRENT_USER/Software/Eidos/Deus Ex: HR': + "HKEY_CURRENT_USER/Software/Eidos/Deus Ex: HR": tags: - config steam: id: 28050 -'Deus Ex: Human Revolution - Director''s Cut': +"Deus Ex: Human Revolution - Director's Cut": files: - /userdata//238010/remote: + "/userdata//238010/remote": tags: - save when: - store: steam - /My Games/Deus Ex HRDC: - tags: - - save - when: - - store: gog - gog: - id: 1370227705 - installDir: - Deus Ex Human Revolution Director's Cut: {} - launch: - /DXHRDC.exe: - - when: - - os: windows - store: steam - /Deus Ex Human Revolution - Directors Cut.app: - - when: - - os: mac - store: steam - registry: - 'HKEY_CURRENT_USER/Software/Eidos/Deus Ex: HRDC': - tags: - - config - steam: - id: 238010 -'Deus Ex: Invisible War': - files: - /Deus Ex - Invisible War/SaveGames: + "/My Games/Deus Ex HRDC": tags: - save when: - os: windows - /Deus Ex - Invisible War/user.ini: + store: gog + gog: + id: 1370227705 + installDir: + "Deus Ex Human Revolution Director's Cut": {} + launch: + "/DXHRDC.exe": + - when: + - os: windows + store: steam + "/Deus Ex Human Revolution - Directors Cut.app": + - when: + - os: mac + store: steam + registry: + "HKEY_CURRENT_USER/Software/Eidos/Deus Ex: HRDC": + tags: + - config + steam: + id: 238010 +"Deus Ex: Invisible War": + files: + "/Deus Ex - Invisible War/SaveGames": + tags: + - save + when: + - os: windows + "/Deus Ex - Invisible War/user.ini": tags: - config when: @@ -145038,30 +145469,31 @@ Deus Ex Machina 2: installDir: Deus Ex Invisible War: {} launch: - /System/dx2.exe: + "/System/dx2.exe": - when: - store: steam - workingDir: /System + workingDir: "/System" steam: id: 6920 -'Deus Ex: Mankind Divided': +"Deus Ex: Mankind Divided": files: - /userdata//337000/remote: + "/userdata//337000/remote": tags: - save when: - store: steam - /userdata//337000/remote/game_options.bin: + "/userdata//337000/remote/game_options.bin": tags: - config when: - store: steam - /My Games/Deus Ex Mankind Divided/Saves: + "/My Games/Deus Ex Mankind Divided/Saves": tags: - save when: - - store: gog - /feral-interactive/Deus Ex Mankind Divided: + - os: windows + store: gog + "/feral-interactive/Deus Ex Mankind Divided": tags: - config when: @@ -145079,35 +145511,35 @@ Deus Ex Machina 2: installDir: Deus Ex Mankind Divided: {} launch: - /Deus Ex Mankind Divided.app: + "/Deus Ex Mankind Divided.app": - when: - os: mac store: steam - /DeusExMD.sh: + "/DeusExMD.sh": - when: - os: linux store: steam - /retail/DXMD.exe: + "/retail/DXMD.exe": - when: - os: windows store: steam registry: - 'HKEY_CURRENT_USER/Software/Eidos Montreal/Deus Ex: MD': + "HKEY_CURRENT_USER/Software/Eidos Montreal/Deus Ex: MD": tags: - config steam: id: 337000 -'Deus Ex: Mankind Divided - VR Experience': +"Deus Ex: Mankind Divided - VR Experience": steam: id: 526180 -'Deus Ex: Revision': +"Deus Ex: Revision": files: - /Revision/Save: + "/Revision/Save": tags: - save when: - os: windows - /Revision/System/Revision.ini: + "/Revision/System/Revision.ini": tags: - config when: @@ -145117,19 +145549,19 @@ Deus Ex Machina 2: installDir: Deus Ex: {} launch: - /Revision/System/Revision.exe: + "/Revision/System/Revision.exe": - when: - store: steam steam: id: 397550 -'Deus Ex: The Fall': +"Deus Ex: The Fall": files: - /AppData/LocalLow/N_Fusion Interactive/Deus Ex_ The Fall: + "/AppData/LocalLow/N_Fusion Interactive/Deus Ex_ The Fall": tags: - save when: - os: windows - /AppData/LocalLow/N_Fusion Interactive/Deus Ex_ The Fall/PlayerPrefs.txt: + "/AppData/LocalLow/N_Fusion Interactive/Deus Ex_ The Fall/PlayerPrefs.txt": tags: - config when: @@ -145137,12 +145569,12 @@ Deus Ex Machina 2: installDir: Deus Ex The Fall: {} launch: - /DeusEx_steam.exe: + "/DeusEx_steam.exe": - when: - os: windows store: steam registry: - 'HKEY_CURRENT_USER/Software/N-Fusion Interactive/Deus Ex: The Fall': + "HKEY_CURRENT_USER/Software/N-Fusion Interactive/Deus Ex: The Fall": tags: - config steam: @@ -145156,12 +145588,12 @@ Deuterium Wars: installDir: Deuterium Wars: {} launch: - /Deuterium Wars x64.exe: + "/Deuterium Wars x64.exe": - when: - bit: 64 os: windows store: steam - /Deuterium Wars.exe: + "/Deuterium Wars.exe": - when: - bit: 32 os: windows @@ -145172,12 +145604,12 @@ Dev Guy: installDir: Dev Guy: {} launch: - /Binaries/Win32/Dev Guy.exe: + "/Binaries/Win32/Dev Guy.exe": - when: - bit: 32 os: windows store: steam - /Binaries/Win64/Dev Guy.exe: + "/Binaries/Win64/Dev Guy.exe": - when: - bit: 64 os: windows @@ -145188,11 +145620,11 @@ Dev me: installDir: dev_me: {} launch: - /dev_me.app: + "/dev_me.app": - when: - os: mac store: steam - /dev_me.exe: + "/dev_me.exe": - when: - os: windows store: steam @@ -145202,7 +145634,7 @@ DevWill: installDir: DevWill: {} launch: - /DevWill.exe: + "/DevWill.exe": - when: - os: windows store: steam @@ -145212,11 +145644,11 @@ Devade: installDir: Devade: {} launch: - /Devade.exe: + "/Devade.exe": - when: - os: windows store: steam - /Devade.x86: + "/Devade.x86": - when: - os: linux store: steam @@ -145226,15 +145658,15 @@ Devader: installDir: Devader: {} launch: - /devader: + "/devader": - when: - os: linux store: steam - /devader.app: + "/devader.app": - when: - os: mac store: steam - /devader.exe: + "/devader.exe": - when: - os: windows store: steam @@ -145242,12 +145674,12 @@ Devader: id: 706850 Devastation: files: - /Devastation/*.ini: + "/Devastation/*.ini": tags: - config when: - os: windows - /Devastation/Save: + "/Devastation/Save": tags: - save when: @@ -145259,7 +145691,7 @@ Devellage: installDir: Devellage: {} launch: - /Devellage.exe: + "/Devellage.exe": - when: - os: windows store: steam @@ -145269,15 +145701,15 @@ Deviant Dungeon: installDir: Deviant Dungeon: {} launch: - /DeviantDungeon.app: + "/DeviantDungeon.app": - when: - os: mac store: steam - /DeviantDungeon.exe: + "/DeviantDungeon.exe": - when: - os: windows store: steam - /DeviantDungeon.sh: + "/DeviantDungeon.sh": - when: - os: linux store: steam @@ -145285,13 +145717,13 @@ Deviant Dungeon: id: 1012900 Devil Daggers: files: - /devildaggers: + "/devildaggers": tags: - config - save when: - os: linux - /DevilDaggers: + "/DevilDaggers": tags: - config - save @@ -145302,16 +145734,16 @@ Devil Daggers: installDir: devildaggers: {} launch: - /Devil Daggers.app: + "/Devil Daggers.app": - when: - bit: 64 os: mac store: steam - /dd.exe: + "/dd.exe": - when: - os: windows store: steam - /devildaggers: + "/devildaggers": - when: - bit: 64 os: linux @@ -145322,7 +145754,7 @@ Devil Engine: installDir: Devil Engine: {} launch: - /DevilEngine.exe: + "/DevilEngine.exe": - when: - os: windows store: steam @@ -145332,7 +145764,7 @@ Devil Girl Needs Massages: installDir: DevilGirlNeedsMassages: {} launch: - /DevilGirlNeedsMassages.exe: + "/DevilGirlNeedsMassages.exe": - when: - bit: 64 os: windows @@ -145342,14 +145774,14 @@ Devil Girl Needs Massages: Devil Guns - Demon Bullet Hell Arena: steam: id: 700780 -'Devil May Cry 3: Special Edition': +"Devil May Cry 3: Special Edition": files: - /DMC3SE.ini: + "/DMC3SE.ini": tags: - config when: - os: windows - /save0.sav: + "/save0.sav": tags: - save when: @@ -145357,22 +145789,22 @@ Devil Guns - Demon Bullet Hell Arena: installDir: Devil May Cry 3: {} launch: - /GPadCfg.exe: + "/GPadCfg.exe": - when: - store: steam - /dmc3se.exe: + "/dmc3se.exe": - when: - store: steam steam: id: 6550 Devil May Cry 4: files: - /capcom/DEVILMAYCRY4: + "/capcom/DEVILMAYCRY4": tags: - save when: - os: windows - /capcom/DEVILMAYCRY4/config.ini: + "/capcom/DEVILMAYCRY4/config.ini": tags: - config when: @@ -145380,22 +145812,22 @@ Devil May Cry 4: installDir: Devil May Cry 4: {} launch: - /DevilMayCry4_DX10.exe: + "/DevilMayCry4_DX10.exe": - when: - store: steam - /DevilMayCry4_DX9.exe: + "/DevilMayCry4_DX9.exe": - when: - store: steam steam: id: 45700 -'Devil May Cry 4: Special Edition': +"Devil May Cry 4: Special Edition": files: - /CAPCOM/DEVILMAYCRY4SPECIALEDITION: + "/CAPCOM/DEVILMAYCRY4SPECIALEDITION": tags: - save when: - os: windows - /CAPCOM/DEVILMAYCRY4SPECIALEDITION: + "/CAPCOM/DEVILMAYCRY4SPECIALEDITION": tags: - config when: @@ -145413,7 +145845,7 @@ Devil May Cry 4: installDir: Special Edition: {} launch: - /DevilMayCry4SpecialEdition.exe: + "/DevilMayCry4SpecialEdition.exe": - when: - os: windows store: steam @@ -145421,12 +145853,12 @@ Devil May Cry 4: id: 329050 Devil May Cry 5: files: - /dmc5config.ini: + "/dmc5config.ini": tags: - config when: - os: windows - /userdata//601150/remote/win64_save/*.bin: + "/userdata//601150/remote/win64_save/*.bin": tags: - save when: @@ -145448,7 +145880,7 @@ Devil May Cry 5: installDir: Devil May Cry 5: {} launch: - /DevilMayCry5.exe: + "/DevilMayCry5.exe": - when: - os: windows store: steam @@ -145456,22 +145888,22 @@ Devil May Cry 5: id: 601150 Devil May Cry HD Collection: files: - /userdata//631510/remote: + "/userdata//631510/remote": tags: - save when: - store: steam - /userdata//631510/remote/options.sav: + "/userdata//631510/remote/options.sav": tags: - config when: - store: steam - /My Games/Devil May Cry HD Collection: + "/My Games/Devil May Cry HD Collection": tags: - save when: - os: windows - /My Games/Devil May Cry HD Collection/options.sav: + "/My Games/Devil May Cry HD Collection/options.sav": tags: - config when: @@ -145485,7 +145917,7 @@ Devil May Cry HD Collection: installDir: Devil May Cry HD Collection: {} launch: - /dmcLauncher.exe: + "/dmcLauncher.exe": - when: - store: steam steam: @@ -145494,7 +145926,7 @@ Devil Sealing Stone: installDir: content: {} launch: - /nw.exe: + "/nw.exe": - when: - store: steam steam: @@ -145503,7 +145935,7 @@ Devil Threats: installDir: Devil Threats: {} launch: - /Devil Threats.exe: + "/Devil Threats.exe": - when: - bit: 64 os: windows @@ -145515,12 +145947,12 @@ Devil Under Sun: id: 1009190 Devil Whiskey: files: - /data: + "/data": tags: - config when: - os: windows - /savegame: + "/savegame": tags: - save when: @@ -145534,7 +145966,7 @@ Devil catching bees: installDir: Devil_catching_bees: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: @@ -145543,7 +145975,7 @@ Devil in the Capital: installDir: Devil In The Capital: {} launch: - /DevilInCapital.exe: + "/DevilInCapital.exe": - when: - store: steam steam: @@ -145552,15 +145984,15 @@ Devil in the Details: installDir: Devil in the Details: {} launch: - /DevilintheDetails.app: + "/DevilintheDetails.app": - when: - os: mac store: steam - /DevilintheDetails.exe: + "/DevilintheDetails.exe": - when: - os: windows store: steam - /DevilintheDetails.sh: + "/DevilintheDetails.sh": - when: - os: linux store: steam @@ -145570,65 +146002,65 @@ Devil in the Pines: installDir: Devil in the Pines: {} launch: - /DevilInThePines.exe: + "/DevilInThePines.exe": - when: - bit: 64 os: windows store: steam steam: id: 706280 -Devil's Bluff: +"Devil's Bluff": installDir: - Devil's Bluff: {} + "Devil's Bluff": {} launch: - /Devils Bluff.app: + "/Devils Bluff.app": - when: - os: mac store: steam - /Devils Bluff.exe: + "/Devils Bluff.exe": - when: - os: windows store: steam steam: id: 382350 -Devil's Dare: +"Devil's Dare": gog: id: 1207666703 installDir: - Devil's Dare: {} + "Devil's Dare": {} launch: - /Devil's Dare.app: + "/Devil's Dare.app": - when: - os: mac store: steam - /Devil's Dare.exe: + "/Devil's Dare.exe": - when: - os: windows store: steam - /Devil's Dare.x86: + "/Devil's Dare.x86": - when: - os: linux store: steam steam: id: 279580 -Devil's Deck 恶魔秘境: +"Devil's Deck 恶魔秘境": installDir: - Devil's Deck: {} + "Devil's Deck": {} launch: - /Devil'sDeck.exe: + "/Devil'sDeck.exe": - when: - os: windows store: steam steam: id: 1093320 -Devil's Hunt: +"Devil's Hunt": files: - /DevilsHuntUnreal/Saved/Config/WindowsNoEditor: + "/DevilsHuntUnreal/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /DevilsHuntUnreal/Saved/SaveGames: + "/DevilsHuntUnreal/Saved/SaveGames": tags: - save when: @@ -145636,17 +146068,17 @@ Devil's Hunt: gog: id: 1085166184 installDir: - Devil's Hunt: {} + "Devil's Hunt": {} launch: - /DevilsHuntUnreal.exe: + "/DevilsHuntUnreal.exe": - when: - os: windows store: steam steam: id: 887720 -Devil's Kiss: +"Devil's Kiss": files: - /AppData/LocalLow/Size Five Games/DevilsKiss/FungusSaves: + "/AppData/LocalLow/Size Five Games/DevilsKiss/FungusSaves": tags: - save when: @@ -145654,17 +146086,17 @@ Devil's Kiss: gog: id: 1807052519 installDir: - Devil's Kiss: {} + "Devil's Kiss": {} launch: - /DevilsKiss.exe: + "/DevilsKiss.exe": - when: - os: windows store: steam - /DevilsKiss_Mac.app: + "/DevilsKiss_Mac.app": - when: - os: mac store: steam - /launcher.sh: + "/launcher.sh": - when: - os: linux store: steam @@ -145674,32 +146106,32 @@ Devil's Kiss: - config steam: id: 1213550 -Devil's Land: +"Devil's Land": steam: id: 770510 -Devil's Toy: +"Devil's Toy": installDir: - Devil's Toy: {} + "Devil's Toy": {} launch: - /Devil's Toy.app: + "/Devil's Toy.app": - when: - os: mac store: steam - /Devil's Toy.exe: + "/Devil's Toy.exe": - when: - os: windows store: steam - /Devil's Toy.x86: + "/Devil's Toy.x86": - when: - os: linux store: steam steam: id: 959540 -'DevilShaft: TheTower': +"DevilShaft: TheTower": installDir: DevilShaft TheTower: {} launch: - /DevilShaft The Tower.exe: + "/DevilShaft The Tower.exe": - when: - os: windows store: steam @@ -145709,7 +146141,7 @@ Devilated: installDir: Devilated: {} launch: - /Devilated.exe: + "/Devilated.exe": - when: - bit: 64 os: windows @@ -145720,8 +146152,8 @@ Devilian: installDir: Devilian: {} launch: - /GlyphClient.exe: - - arguments: '-steam' + "/GlyphClient.exe": + - arguments: "-steam" when: - os: windows store: steam @@ -145731,7 +146163,7 @@ Devilry: installDir: Devilry: {} launch: - /Devilry.exe: + "/Devilry.exe": - when: - store: steam steam: @@ -145740,7 +146172,7 @@ Devils & Demons: installDir: DevilsAndDemons: {} launch: - /DevilsAndDemons.exe: + "/DevilsAndDemons.exe": - when: - os: windows store: steam @@ -145753,7 +146185,7 @@ Devious: installDir: Devious: {} launch: - /Devious.exe: + "/Devious.exe": - when: - os: windows store: steam @@ -145763,7 +146195,7 @@ Devious Dungeon: installDir: Devious Dungeon: {} launch: - /DeviousDungeon.exe: + "/DeviousDungeon.exe": - when: - os: windows store: steam @@ -145773,7 +146205,7 @@ Devious Dungeon 2: installDir: Devious Dungeon 2: {} launch: - /DeviousDungeon2.exe: + "/DeviousDungeon2.exe": - when: - os: windows store: steam @@ -145783,14 +146215,14 @@ Devochka Quest: installDir: Devochka Quest: {} launch: - /DevochkaQuest.exe: + "/DevochkaQuest.exe": - when: - store: steam steam: id: 877250 Devoid of Shadows: files: - /Arslogica/Devoid of Shadows 1.01: + "/Arslogica/Devoid of Shadows 1.01": tags: - save when: @@ -145798,7 +146230,7 @@ Devoid of Shadows: installDir: Devoid of Shadows: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -145806,7 +146238,7 @@ Devoid of Shadows: id: 671900 Devolver Bootleg: files: - /DevolverBootleg: + "/DevolverBootleg": tags: - config - save @@ -145815,7 +146247,7 @@ Devolver Bootleg: installDir: Bootleg: {} launch: - /Bootleg.exe: + "/Bootleg.exe": - when: - os: windows store: steam @@ -145823,7 +146255,7 @@ Devolver Bootleg: id: 1066260 Devolverland Expo: files: - /Devolverland_Expo/Saved/Config/WindowsNoEditor: + "/Devolverland_Expo/Saved/Config/WindowsNoEditor": tags: - config when: @@ -145831,7 +146263,7 @@ Devolverland Expo: installDir: Devolverland_Expo: {} launch: - /Devolverland_Expo.exe: + "/Devolverland_Expo.exe": - when: - bit: 64 os: windows @@ -145840,7 +146272,7 @@ Devolverland Expo: id: 1283220 Devotion: files: - /AppData/LocalLow/RedCandleGames/Devotion/save.json: + "/AppData/LocalLow/RedCandleGames/Devotion/save.json": tags: - save when: @@ -145850,7 +146282,7 @@ Devotion: installDir: Devotion: {} launch: - /Devotion.exe: + "/Devotion.exe": - when: - bit: 64 os: windows @@ -145865,12 +146297,12 @@ Devour: installDir: Devour: {} launch: - /DEVOUR.exe: + "/DEVOUR.exe": - when: - bit: 64 os: windows store: steam - /Devour.app/Contents/MacOS/DEVOUR: + "/Devour.app/Contents/MacOS/DEVOUR": - when: - os: mac store: steam @@ -145883,7 +146315,7 @@ Devoured Time: installDir: Devoured Time_Data: {} launch: - /Devoured Time.exe: + "/Devoured Time.exe": - when: - os: windows store: steam @@ -145893,20 +146325,20 @@ Devouring Stars: installDir: Devouring Stars: {} launch: - /DevouringStars.app: + "/DevouringStars.app": - when: - os: mac store: steam - /DevouringStars.exe: + "/DevouringStars.exe": - when: - os: windows store: steam - /DevouringStars.x86: + "/DevouringStars.x86": - when: - bit: 32 os: linux store: steam - /DevouringStars.x86_64: + "/DevouringStars.x86_64": - when: - bit: 64 os: linux @@ -145915,17 +146347,17 @@ Devouring Stars: id: 354230 Dex: files: - /.config/unity3d/Dreadlocks Ltd/Dex: + "/.config/unity3d/Dreadlocks Ltd/Dex": tags: - config when: - os: linux - /.config/unity3d/Dreadlocks Ltd/Dex/prefs: + "/.config/unity3d/Dreadlocks Ltd/Dex/prefs": tags: - save when: - os: linux - /Library/Preferences/unity.Dreadlocks Ltd.Dex.plist: + "/Library/Preferences/unity.Dreadlocks Ltd.Dex.plist": tags: - config - save @@ -145936,15 +146368,15 @@ Dex: installDir: Dex: {} launch: - /Dex.app: + "/Dex.app": - when: - os: mac store: steam - /Dex.exe: + "/Dex.exe": - when: - os: windows store: steam - /Dex.x86: + "/Dex.x86": - when: - os: linux store: steam @@ -145959,7 +146391,7 @@ Dexodonex: installDir: Dexodonex: {} launch: - /dexodonex.exe: + "/dexodonex.exe": - when: - os: windows store: steam @@ -145969,7 +146401,7 @@ Dexterity Ball 3D: installDir: DexterityBall3D: {} launch: - /DexterityBall3D.exe: + "/DexterityBall3D.exe": - when: - os: windows store: steam @@ -145995,20 +146427,20 @@ Dezatopia: installDir: Dezatopia: {} launch: - /dezatopia: + "/dezatopia": - when: - os: linux store: steam - /dezatopia.app: + "/dezatopia.app": - when: - os: mac store: steam - /dezatopia.exe: + "/dezatopia.exe": - when: - bit: 64 os: windows store: steam - /dezatopia32.exe: + "/dezatopia32.exe": - when: - bit: 32 os: windows @@ -146019,12 +146451,12 @@ Dezzan: installDir: Dezzan: {} launch: - /Dezzan.exe: + "/Dezzan.exe": - when: - bit: 64 os: windows store: steam - /Dezzan.x86_64: + "/Dezzan.x86_64": - when: - os: linux store: steam @@ -146034,11 +146466,11 @@ Dhalang MG: installDir: Dhalang MG: {} launch: - /Dhalang MG.app: + "/Dhalang MG.app": - when: - os: mac store: steam - /Dhalang MG.exe: + "/Dhalang MG.exe": - when: - os: windows store: steam @@ -146046,17 +146478,17 @@ Dhalang MG: id: 799310 DiRT 3: files: - /userdata//321040: + "/userdata//321040": tags: - save when: - store: steam - /My Games/DiRT3/hardwaresettings: + "/My Games/DiRT3/hardwaresettings": tags: - config when: - os: windows - /My Games/DiRT3/savegame: + "/My Games/DiRT3/savegame": tags: - save when: @@ -146067,14 +146499,14 @@ DiRT 3: installDir: DiRT 3: {} launch: - /dirt3.exe: + "/dirt3.exe": - when: - store: steam steam: id: 44320 DiRT 4: files: - /userdata//421020: + "/userdata//421020": tags: - save when: @@ -146082,7 +146514,7 @@ DiRT 4: store: steam - os: linux store: steam - /My Games/DiRT 4/hardwaresettings: + "/My Games/DiRT 4/hardwaresettings": tags: - config when: @@ -146090,16 +146522,16 @@ DiRT 4: installDir: DiRT 4: {} launch: - /DiRT 4.app: + "/DiRT 4.app": - when: - os: mac store: steam - /Dirt4.sh: + "/Dirt4.sh": - when: - bit: 64 os: linux store: steam - /dirt4.exe: + "/dirt4.exe": - when: - os: windows store: steam @@ -146107,22 +146539,22 @@ DiRT 4: id: 421020 DiRT Rally: files: - /Profile/Player/Saves: + "/Profile/Player/Saves": tags: - save when: - os: windows - /.local/share/feral-interactive/DiRT Rally/VFS/User/AppData/Roaming/My Games/DiRT Rally/hardwaresettings: + "/.local/share/feral-interactive/DiRT Rally/VFS/User/AppData/Roaming/My Games/DiRT Rally/hardwaresettings": tags: - config when: - os: linux - /userdata//310560: + "/userdata//310560": tags: - save when: - store: steam - /My Games/DiRT Rally/hardwaresettings: + "/My Games/DiRT Rally/hardwaresettings": tags: - config when: @@ -146130,15 +146562,15 @@ DiRT Rally: installDir: DiRT Rally: {} launch: - /Dirt Rally.app: + "/Dirt Rally.app": - when: - os: mac store: steam - /DirtRally.sh: + "/DirtRally.sh": - when: - os: linux store: steam - /drt.exe: + "/drt.exe": - when: - os: windows store: steam @@ -146146,24 +146578,24 @@ DiRT Rally: id: 310560 DiRT Rally 2.0: files: - /userdata//690790/remote: + "/userdata//690790/remote": tags: - save when: - os: windows store: steam - /My Games/DiRT Rally 2.0: + "/My Games/DiRT Rally 2.0": tags: - config when: - os: windows store: microsoft - /My Games/DiRT Rally 2.0/hardwaresettings: + "/My Games/DiRT Rally 2.0/hardwaresettings": tags: - config when: - os: windows - /Packages/CodemastersSoftwareCompan.DiRTRally2.0Windows_4cfye3zbe1gaw/SystemAppData/wgs/: + "/Packages/CodemastersSoftwareCompan.DiRTRally2.0Windows_4cfye3zbe1gaw/SystemAppData/wgs/": tags: - save when: @@ -146172,8 +146604,8 @@ DiRT Rally 2.0: installDir: DiRT Rally 2.0: {} launch: - /dirtrally2.exe: - - arguments: '-novr' + "/dirtrally2.exe": + - arguments: "-novr" when: - bit: 64 os: windows @@ -146182,22 +146614,22 @@ DiRT Rally 2.0: id: 690790 DiRT Showdown: files: - /Library/Application Support/com.vpltd.Dirt: + "/Library/Application Support/com.vpltd.Dirt": tags: - config when: - os: mac - /userdata//201700: + "/userdata//201700": tags: - save when: - store: steam - /My Games/Dirt Showdown: + "/My Games/Dirt Showdown": tags: - config when: - os: windows - /vpltd/dirt: + "/vpltd/dirt": tags: - config when: @@ -146205,15 +146637,15 @@ DiRT Showdown: installDir: DiRT Showdown: {} launch: - /DiRT Showdown.app: + "/DiRT Showdown.app": - when: - os: mac store: steam - /dirt: + "/dirt": - when: - os: linux store: steam - /showdown.exe: + "/showdown.exe": - when: - os: windows store: steam @@ -146221,17 +146653,17 @@ DiRT Showdown: id: 201700 Diablo: files: - /*.sv: + "/*.sv": tags: - save when: - os: windows - /dx/*.sv: + "/dx/*.sv": tags: - save when: - os: windows - /hellfire/*.hsv: + "/hellfire/*.hsv": tags: - save when: @@ -146244,12 +146676,12 @@ Diablo: - config Diablo II: files: - /Save: + "/Save": tags: - save when: - os: windows - /Saved Games/Diablo II: + "/Saved Games/Diablo II": tags: - save when: @@ -146258,38 +146690,38 @@ Diablo II: HKEY_CURRENT_USER/SOFTWARE/Blizzard Entertainment/Diablo II: tags: - config -'Diablo II: Resurrected': +"Diablo II: Resurrected": files: - /Documents/Diablo II Resurrected/Save: + "/Documents/Diablo II Resurrected/Save": tags: - save when: - os: windows - /Saved Games/Diablo II Resurrected: + "/Saved Games/Diablo II Resurrected": tags: - save when: - os: windows - /Diablo II Resurrected/save: + "/Diablo II Resurrected/save": tags: - config when: - os: windows Diablo III: files: - /Library/Application Support/Blizzard/Diablo III/D3Prefs.txt: + "/Library/Application Support/Blizzard/Diablo III/D3Prefs.txt": tags: - config when: - os: mac - /Diablo III/D3Prefs.txt: + "/Diablo III/D3Prefs.txt": tags: - config when: - os: windows Diablo IV: files: - /Documents/Diablo IV/LocalPrefs.txt: + "/Documents/Diablo IV/LocalPrefs.txt": tags: - config when: @@ -146298,7 +146730,7 @@ Diablo IV: id: 2344520 Diablo Immortal: files: - /LocalData/BaseUserPresets.ini: + "/LocalData/BaseUserPresets.ini": tags: - config when: @@ -146307,7 +146739,7 @@ Diabolic: installDir: Diabolic: {} launch: - /Diabolic.exe: + "/Diabolic.exe": - when: - store: steam steam: @@ -146316,35 +146748,35 @@ Diabolical: installDir: Diabolical: {} launch: - /Diabolical: + "/Diabolical": - when: - os: linux store: steam - /Diabolical.app/Contents/MacOS/Diabolical: + "/Diabolical.app/Contents/MacOS/Diabolical": - when: - os: mac store: steam - /Diabolical.exe: + "/Diabolical.exe": - when: - os: windows store: steam steam: id: 416640 -'Diabolik: The Original Sin': +"Diabolik: The Original Sin": files: - /Config: + "/Config": tags: - config when: - os: windows - /Save: + "/Save": tags: - save when: - os: windows Diabotical: files: - /Diabotical/CloudSave: + "/Diabotical/CloudSave": tags: - config when: @@ -146353,7 +146785,7 @@ Diacrisis: installDir: Diacrisis: {} launch: - /Diacrisi.exe: + "/Diacrisi.exe": - when: - bit: 64 os: windows @@ -146364,7 +146796,7 @@ Diadra Empty: installDir: Diadra Empty: {} launch: - /DiadraEmpty.exe: + "/DiadraEmpty.exe": - when: - store: steam steam: @@ -146373,45 +146805,45 @@ Dialing: installDir: Dialing: {} launch: - /Dialing.Linux/Dialing.x86: + "/Dialing.Linux/Dialing.x86": - when: - os: linux store: steam - /Dialing.app/Contents/MacOS/Dialing: + "/Dialing.app/Contents/MacOS/Dialing": - when: - os: mac store: steam - /win32/Dialing.exe: + "/win32/Dialing.exe": - when: - os: windows store: steam steam: id: 775730 -'Dialogue: A Writer''s Story': +"Dialogue: A Writer's Story": files: - /AppData/LocalLow/Tea-Powered Games/Dialogue: + "/AppData/LocalLow/Tea-Powered Games/Dialogue": tags: - save when: - os: windows installDir: - Dialogue A Writer's Story: {} + "Dialogue A Writer's Story": {} launch: - /Dialogue.app/Contents/MacOS/Dialogue: + "/Dialogue.app/Contents/MacOS/Dialogue": - when: - os: mac store: steam - /Dialogue.exe: + "/Dialogue.exe": - when: - os: windows store: steam steam: id: 654390 -'Dialtown: Phone Dating Sim': +"Dialtown: Phone Dating Sim": installDir: Dialtown Phone Dating Sim: {} launch: - /Dialtown.exe: + "/Dialtown.exe": - when: - os: windows store: steam @@ -146419,7 +146851,7 @@ Dialing: id: 1035990 Diamo XL: files: - /AppData/LocalLow/Nickervision Studios/Diamo XL/*.diamoxl: + "/AppData/LocalLow/Nickervision Studios/Diamo XL/*.diamoxl": tags: - save when: @@ -146427,21 +146859,24 @@ Diamo XL: installDir: Diamo XL: {} launch: - /DiamoXL.app: + "/DiamoXL.app": - when: - os: mac store: steam - /DiamoXL.exe: + "/DiamoXL.exe": - when: - bit: 32 os: windows store: steam - /DiamoXL.x86: + - bit: 64 + os: windows + store: steam + "/DiamoXL.x86": - when: - bit: 32 os: linux store: steam - /DiamoXL.x86_64: + "/DiamoXL.x86_64": - when: - bit: 64 os: linux @@ -146455,7 +146890,7 @@ Diamond Caves: installDir: DiamondCaves: {} launch: - /dc5Steam.exe: + "/dc5Steam.exe": - when: - os: windows store: steam @@ -146465,11 +146900,11 @@ Diamond Dan: installDir: Diamond Dan: {} launch: - /dd.exe: + "/dd.exe": - when: - os: windows store: steam - /diamond_dan.app: + "/diamond_dan.app": - when: - os: mac store: steam @@ -146479,15 +146914,15 @@ Diamond Deeps: installDir: Diamond Deeps: {} launch: - /Diamond Deeps.app: + "/Diamond Deeps.app": - when: - os: mac store: steam - /Diamond_Deeps: + "/Diamond_Deeps": - when: - os: linux store: steam - /Diamond_Deeps.exe: + "/Diamond_Deeps.exe": - when: - os: windows store: steam @@ -146497,11 +146932,11 @@ Diamond Joyce and the Secrets of Crystal Cave: installDir: Diamond Joyce and the Secrets of Crystal Cave: {} launch: - /Diamond Joyce.app: + "/Diamond Joyce.app": - when: - os: mac store: steam - /cc.exe: + "/cc.exe": - when: - os: windows store: steam @@ -146514,7 +146949,7 @@ DiamondFalls: installDir: DiamondFalls: {} launch: - /DiamondFalls.exe: + "/DiamondFalls.exe": - when: - os: windows store: steam @@ -146524,7 +146959,7 @@ Diamonds: installDir: Diamonds: {} launch: - /Diamonds.exe: + "/Diamonds.exe": - when: - os: windows store: steam @@ -146534,11 +146969,11 @@ Diaper Dash: installDir: Diaper Dash: {} launch: - /Diaper Dash.app: + "/Diaper Dash.app": - when: - os: mac store: steam - /diaperdash.exe: + "/diaperdash.exe": - when: - os: windows store: steam @@ -146548,7 +146983,7 @@ Diaper Quest 2055: installDir: Diaperquest 2055: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -146556,7 +146991,7 @@ Diaper Quest 2055: id: 976830 Diaries of a Spaceport Janitor: files: - /AppData/LocalLowSundae Month/Diaries of a Spaceport Janitor: + "/AppData/LocalLowSundae Month/Diaries of a Spaceport Janitor": tags: - save when: @@ -146564,11 +146999,11 @@ Diaries of a Spaceport Janitor: installDir: Diaries of a Spaceport Janitor: {} launch: - /Diaries_7.6_mac.app/Contents/MacOS/Diaries_7.6_mac: + "/Diaries_7.6_mac.app/Contents/MacOS/Diaries_7.6_mac": - when: - os: mac store: steam - /Diaries_7.6_win.exe: + "/Diaries_7.6_win.exe": - when: - os: windows store: steam @@ -146579,33 +147014,33 @@ Diary of Defender: Diary of Defender: {} steam: id: 822870 -'Diaspora: Mass Exodus': +"Diaspora: Mass Exodus": installDir: Diaspora Mass Exodus: {} launch: - /MassExodus.exe: + "/MassExodus.exe": - when: - bit: 64 os: windows store: steam steam: id: 718310 -'Diastone: Confusion': +"Diastone: Confusion": installDir: Diastone Confusion: {} launch: - /WindowsNoEditor/DiastoneConfusion.exe: + "/WindowsNoEditor/DiastoneConfusion.exe": - when: - bit: 64 os: windows store: steam steam: id: 1106670 -'Diastone: Memories': +"Diastone: Memories": installDir: DIASTONE Demo: {} launch: - /Diastone/WindowsNoEditor/DIASTONEMemories.exe: + "/Diastone/WindowsNoEditor/DIASTONEMemories.exe": - when: - bit: 64 os: windows @@ -146616,11 +147051,11 @@ Dice Defenders: installDir: Dice Defenders: {} launch: - /Builds.app/Contents/MacOS/DiceDefenders: + "/Builds.app/Contents/MacOS/DiceDefenders": - when: - os: mac store: steam - /DiceDefenders.exe: + "/DiceDefenders.exe": - when: - os: windows store: steam @@ -146630,7 +147065,7 @@ Dice Keeper: installDir: Dice Keeper: {} launch: - /DiceKeeper.exe: + "/DiceKeeper.exe": - when: - store: steam steam: @@ -146641,7 +147076,7 @@ Dice Legacy: installDir: Dice Legacy: {} launch: - /DiceKingdom.exe: + "/DiceKingdom.exe": - when: - bit: 64 os: windows @@ -146652,15 +147087,15 @@ Dice Tower Defense: installDir: Dice Tower Defense: {} launch: - /dicetd.app/Contents/MacOS/dicetd: + "/dicetd.app/Contents/MacOS/dicetd": - when: - os: mac store: steam - /dicetd.exe: + "/dicetd.exe": - when: - os: windows store: steam - /dicetd.x86: + "/dicetd.x86": - when: - os: linux store: steam @@ -146670,21 +147105,21 @@ Dice Unique Rules: installDir: Bones game online: {} launch: - /BonesGameOnline/Dice 1000 online.exe: + "/BonesGameOnline/Dice 1000 online.exe": - when: - os: windows store: steam steam: id: 708930 -'Dicetiny: The Lord of the Dice': +"Dicetiny: The Lord of the Dice": installDir: Dicetiny: {} launch: - /Dicetiny.app: + "/Dicetiny.app": - when: - os: mac store: steam - /Dicetiny.exe: + "/Dicetiny.exe": - when: - os: windows store: steam @@ -146692,18 +147127,18 @@ Dice Unique Rules: id: 318090 Dicey Dungeons: files: - /Library/Application Support/Terry Cavanagh Games/diceydungeons: + "/Library/Application Support/Terry Cavanagh Games/diceydungeons": tags: - config when: - os: mac - /Terry Cavanagh Games/diceydungeons: + "/Terry Cavanagh Games/diceydungeons": tags: - config - save when: - os: windows - /Terry Cavanagh Games/diceydungeons: + "/Terry Cavanagh Games/diceydungeons": tags: - config - save @@ -146714,17 +147149,23 @@ Dicey Dungeons: installDir: Dicey Dungeons: {} launch: - /diceydungeons: + "/diceydungeons": - when: + - bit: 32 + os: linux + store: steam - bit: 64 os: linux store: steam - /diceydungeons.app: + "/diceydungeons.app": - when: - os: mac store: steam - /diceydungeons.exe: + "/diceydungeons.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam @@ -146732,22 +147173,22 @@ Dicey Dungeons: id: 861540 Dick Johnson V8 Challenge: files: - /assets/tournaments/slot*: + "/assets/tournaments/slot*": tags: - save when: - os: windows - /TCC2.prf: + "/TCC2.prf": tags: - config when: - os: windows - /controlcfg2.dat: + "/controlcfg2.dat": tags: - config when: - os: windows - /djc_sndprefs.dat: + "/djc_sndprefs.dat": tags: - config when: @@ -146762,28 +147203,28 @@ Dick Wilde 2: Dick Wilde 2: {} steam: id: 975430 -Dictator's Dreams: +"Dictator's Dreams": installDir: - Dictator's dreams: {} + "Dictator's dreams": {} launch: - /dream.exe: + "/dream.exe": - when: - store: steam steam: id: 840500 -'Dictators:No Peace Countryballs': +"Dictators:No Peace Countryballs": installDir: DictatorsNoPeaceCountryballs: {} launch: - /DictatorsNoPeaceCountryballs.app/Contents/MacOS/DictatorsNoPeaceCountryballs: + "/DictatorsNoPeaceCountryballs.app/Contents/MacOS/DictatorsNoPeaceCountryballs": - when: - os: mac store: steam - /DictatorsNoPeaceCountryballs.exe: + "/DictatorsNoPeaceCountryballs.exe": - when: - os: windows store: steam - /DictatorsNoPeaceCountryballs.x86_64: + "/DictatorsNoPeaceCountryballs.x86_64": - when: - store: steam steam: @@ -146792,7 +147233,7 @@ Didgery: installDir: Didgery: {} launch: - /Didgery.exe: + "/Didgery.exe": - when: - os: windows store: steam @@ -146802,7 +147243,7 @@ Die 4te Offenbarung: installDir: D4O: {} launch: - /D4O Launcher.exe: + "/D4O Launcher.exe": - when: - os: windows store: steam @@ -146812,15 +147253,15 @@ Die Already: installDir: Die Already: {} launch: - /nw: + "/nw": - when: - os: linux store: steam - /nw.exe: + "/nw.exe": - when: - os: windows store: steam - /quake2d.app: + "/quake2d.app": - when: - os: mac store: steam @@ -146830,14 +147271,14 @@ Die Bloody Nazi Die!: installDir: Die Bloody Nazi Die!: {} launch: - /DBND.exe: + "/DBND.exe": - when: - store: steam steam: id: 1050900 Die Drachen von Laas: files: - /********: + "/********": tags: - save when: @@ -146846,17 +147287,17 @@ Die Drei ??? - Geheimnis der Schattenhelden: installDir: Die drei - Geheimnis der Schattenhelden: {} launch: - /DDF_Schattenhelden.exe: + "/DDF_Schattenhelden.exe": - when: - os: windows store: steam - /DDF_Schattenhelden_Steam.app: + "/DDF_Schattenhelden_Steam.app": - when: - os: mac store: steam steam: id: 735620 -'Die Hard Trilogy 2: Viva Las Vegas': +"Die Hard Trilogy 2: Viva Las Vegas": registry: HKEY_LOCAL_MACHINE/SOFTWARE/WOW6432Node/n-Space/DHT2: tags: @@ -146864,14 +147305,14 @@ Die Drei ??? - Geheimnis der Schattenhelden: HKEY_LOCAL_MACHINE/SOFTWARE/WOW6432Node/n-Space/DHT2/Save Games: tags: - save -'Die Hard: Nakatomi Plaza': +"Die Hard: Nakatomi Plaza": files: - /Save: + "/Save": tags: - save when: - os: windows - /autoexec.cfg: + "/autoexec.cfg": tags: - config when: @@ -146880,11 +147321,11 @@ Die In The Dark: installDir: Die In The Dark: {} launch: - /Die In The Dark Mac.app: + "/Die In The Dark Mac.app": - when: - os: mac store: steam - /Die In The Dark Windows.exe: + "/Die In The Dark Windows.exe": - when: - os: windows store: steam @@ -146894,11 +147335,11 @@ Die With Glory: installDir: Die With Glory: {} launch: - /Die With Glory.app: + "/Die With Glory.app": - when: - os: mac store: steam - /Die With Glory.exe: + "/Die With Glory.exe": - when: - os: windows store: steam @@ -146906,12 +147347,12 @@ Die With Glory: id: 551050 Die Young: files: - /DieYoung/Saved/Config/WindowsNoEditor: + "/DieYoung/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /DieYoung/Saved/SaveGames: + "/DieYoung/Saved/SaveGames": tags: - save when: @@ -146923,14 +147364,14 @@ Die Young: Die Young: {} steam: id: 433170 -'Die Young: Prologue': +"Die Young: Prologue": files: - /DieYoungPrologue/Saved/Config/WindowsNoEditor: + "/DieYoungPrologue/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /DieYoungPrologue/Saved/SaveGames: + "/DieYoungPrologue/Saved/SaveGames": tags: - save when: @@ -146938,7 +147379,7 @@ Die Young: installDir: DieYoungPrologue: {} launch: - /DieYoungPrologue/Binaries/Win64/DieYoungPrologue-Win64-Shipping.exe: + "/DieYoungPrologue/Binaries/Win64/DieYoungPrologue-Win64-Shipping.exe": - when: - bit: 64 os: windows @@ -146950,12 +147391,12 @@ Die by the Blade: id: 1154670 Die by the Sword: files: - /DBTS.INI: + "/DBTS.INI": tags: - config when: - os: windows - /saves: + "/saves": tags: - save when: @@ -146966,11 +147407,11 @@ Die drei ??? - Rätsel aus der Geisterwelt: installDir: Die drei - Rätsel aus der Geisterwelt: {} launch: - /DDF_Geisterwelt.exe: + "/DDF_Geisterwelt.exe": - when: - os: windows store: steam - /DDF_Geisterwelt_Steam.app: + "/DDF_Geisterwelt_Steam.app": - when: - os: mac store: steam @@ -146980,11 +147421,11 @@ Die drei ??? und der Riesenkrake: installDir: Die drei und der Riesenkrake: {} launch: - /DDF_Riesenkrake.exe: + "/DDF_Riesenkrake.exe": - when: - os: windows store: steam - /DDF_Riesenkrake_Steam.app: + "/DDF_Riesenkrake_Steam.app": - when: - os: mac store: steam @@ -146994,20 +147435,20 @@ Die for Valhalla!: installDir: Die_for_Valhalla: {} launch: - /DieForValhalla.app: + "/DieForValhalla.app": - when: - os: mac store: steam - /DieForValhalla.exe: + "/DieForValhalla.exe": - when: - os: windows store: steam - /DieForValhalla.x86: + "/DieForValhalla.x86": - when: - bit: 32 os: linux store: steam - /DieForValhalla.x86_64: + "/DieForValhalla.x86_64": - when: - bit: 64 os: linux @@ -147017,11 +147458,11 @@ Die for Valhalla!: Die for the Empire: steam: id: 537090 -'Die, zombie sausage, die!': +"Die, zombie sausage, die!": installDir: - 'Die ,zombie sausage ,die!': {} + "Die ,zombie sausage ,die!": {} launch: - /Diezombiesausagedie.exe: + "/Diezombiesausagedie.exe": - when: - os: windows store: steam @@ -147036,19 +147477,19 @@ Diehard Dungeon: installDir: DiehardDungeon: {} launch: - /DiehardDungeon.exe: + "/DiehardDungeon.exe": - when: - store: steam steam: id: 277870 -'Dies Irae: Amantes Amentes': +"Dies Irae: Amantes Amentes": files: - /light/Dies irae `Amantes amentes`: + "/light/Dies irae `Amantes amentes`": tags: - save when: - os: windows - /My Games/light/Dies irae `Amantes amentes`: + "/My Games/light/Dies irae `Amantes amentes`": tags: - save when: @@ -147056,15 +147497,15 @@ Diehard Dungeon: installDir: Dies irae ~Amantes amentes~: {} launch: - /malie.exe: + "/malie.exe": - when: - os: windows store: steam registry: - HKEY_CURRENT_USER/Software/light/Dies irae `Amantes amentes`: + "HKEY_CURRENT_USER/Software/light/Dies irae `Amantes amentes`": tags: - config - HKEY_CURRENT_USER/Software/light/Dies irae `Amantes amentes`/SaveDataCode: + "HKEY_CURRENT_USER/Software/light/Dies irae `Amantes amentes`/SaveDataCode": tags: - save steam: @@ -147073,7 +147514,7 @@ Dies irae ~Interview with Kaziklu Bey~: installDir: Dies irae ~Interview with Kaziklu Bey~: {} launch: - /malie.exe: + "/malie.exe": - when: - bit: 32 os: windows @@ -147084,17 +147525,17 @@ Diesel Attack: installDir: Diesel Attack: {} launch: - /Diesel Attack.exe: + "/Diesel Attack.exe": - when: - os: windows store: steam steam: id: 1171080 -'Diesel Brothers: Truck Building Simulator': +"Diesel Brothers: Truck Building Simulator": installDir: Diesel Brothers Truck Building Simulator: {} launch: - /DieselBrothers.exe: + "/DieselBrothers.exe": - when: - os: windows store: steam @@ -147109,7 +147550,7 @@ Diesel Guns: installDir: DieselGuns: {} launch: - /VehicleGame.exe: + "/VehicleGame.exe": - when: - bit: 64 os: windows @@ -147125,13 +147566,13 @@ Diesel Railcar Simulator: installDir: Diesel Railcar Simulator: {} launch: - /Diesel Railcar Simulator 64-bit.exe: - - arguments: '-force-d3d11' + "/Diesel Railcar Simulator 64-bit.exe": + - arguments: "-force-d3d11" when: - bit: 64 store: steam - /Diesel Railcar Simulator.exe: - - arguments: '-force-d3d11' + "/Diesel Railcar Simulator.exe": + - arguments: "-force-d3d11" when: - bit: 32 os: windows @@ -147142,7 +147583,7 @@ Dieselpunk Wars: installDir: Dieselpunk Wars: {} launch: - /Dieselpunk Wars.exe: + "/Dieselpunk Wars.exe": - when: - os: windows store: steam @@ -147162,7 +147603,7 @@ Dig A Boo: installDir: Dig-A-Boo: {} launch: - /DIG-A-BOO.exe: + "/DIG-A-BOO.exe": - when: - os: windows store: steam @@ -147170,7 +147611,7 @@ Dig A Boo: id: 616330 Dig Deep: files: - /dd: + "/dd": tags: - config - save @@ -147179,11 +147620,11 @@ Dig Deep: installDir: DigDeep: {} launch: - /DD.app/Contents/MacOS/DD: + "/DD.app/Contents/MacOS/DD": - when: - os: mac store: steam - /dd.exe: + "/dd.exe": - when: - os: windows store: steam @@ -147191,12 +147632,12 @@ Dig Deep: id: 1029970 Dig Dog: files: - /AppData/Local/DigDog: + "/AppData/Local/DigDog": tags: - save when: - os: windows - /AppData/Local/DigDog/UserDefault.xml: + "/AppData/Local/DigDog/UserDefault.xml": tags: - config when: @@ -147204,11 +147645,11 @@ Dig Dog: installDir: Dig Dog: {} launch: - /Dig Dog.app: + "/Dig Dog.app": - when: - os: mac store: steam - /DigDog.exe: + "/DigDog.exe": - when: - os: windows store: steam @@ -147218,11 +147659,11 @@ Dig It! - A Digger Simulator: installDir: DIG IT! - A Digger Simulator: {} launch: - /DigIt.app: + "/DigIt.app": - when: - os: mac store: steam - /DigIt.exe: + "/DigIt.exe": - when: - os: windows store: steam @@ -147232,7 +147673,7 @@ Dig and Shoot: installDir: Dig and Shoot: {} launch: - /Dig and Shoot.exe: + "/Dig and Shoot.exe": - when: - os: windows store: steam @@ -147242,7 +147683,7 @@ Dig or Die: installDir: Dig or Die: {} launch: - /DigOrDie.exe: + "/DigOrDie.exe": - when: - store: steam steam: @@ -147251,11 +147692,11 @@ Dig to the Stars: installDir: Dig to the Stars: {} launch: - /Dig to the Stars.app/Contents/MacOS/Dig to the Stars: + "/Dig to the Stars.app/Contents/MacOS/Dig to the Stars": - when: - os: mac store: steam - /Dig to the Stars.exe: + "/Dig to the Stars.exe": - when: - os: windows store: steam @@ -147265,15 +147706,15 @@ Digby Extreme: installDir: Digby Extreme: {} launch: - /Digby Extreme.app: + "/Digby Extreme.app": - when: - os: mac store: steam - /Digby Extreme.exe: + "/Digby Extreme.exe": - when: - os: windows store: steam - /startgame.sh: + "/startgame.sh": - when: - os: linux store: steam @@ -147288,7 +147729,7 @@ Diggerman: installDir: Diggerman: {} launch: - /Diggerman.exe: + "/Diggerman.exe": - when: - os: windows store: steam @@ -147298,23 +147739,23 @@ Digging Dragon: installDir: Digging Dragon: {} launch: - /Digging Dragon.app/Contents/MacOS/Digging Dragon: + "/Digging Dragon.app/Contents/MacOS/Digging Dragon": - when: - os: mac store: steam - /Digging Dragon.exe: + "/Digging Dragon.exe": - when: - os: windows store: steam steam: id: 983890 -'Diggles: The Myth of Fenris': +"Diggles: The Myth of Fenris": gog: id: 2095461205 installDir: Diggles The Myth of Fenris: {} launch: - /Diggles.exe: + "/Diggles.exe": - when: - os: windows store: steam @@ -147328,15 +147769,15 @@ Digimon Masters Online: installDir: Digimon Masters Online - Steam: {} launch: - /DMLauncher.exe: + "/DMLauncher.exe": - when: - os: windows store: steam steam: id: 537180 -'Digimon Story: Cyber Sleuth Complete Edition': +"Digimon Story: Cyber Sleuth Complete Edition": files: - /BANDAI NAMCO Entertainment/Digimon Story Cyber Sleuth Complete Edition/Saved/SaveGames//*.bin: + "/BANDAI NAMCO Entertainment/Digimon Story Cyber Sleuth Complete Edition/Saved/SaveGames//*.bin": tags: - config - save @@ -147345,17 +147786,17 @@ Digimon Masters Online: installDir: Digimon Story Cyber Sleuth Complete Edition: {} launch: - /app_digister/Digimon Story CS.exe: + "/app_digister/Digimon Story CS.exe": - when: - bit: 64 os: windows store: steam - workingDir: /app_digister + workingDir: "/app_digister" steam: id: 1042550 Digimon Survive: files: - /©BANDAI NAMCO Entertainment Inc_/DIGIMON SURVIVE/Savedata/: + "/©BANDAI NAMCO Entertainment Inc_/DIGIMON SURVIVE/Savedata/": tags: - config - save @@ -147364,7 +147805,7 @@ Digimon Survive: installDir: Digimon Survive: {} launch: - /DigimonSurvive.exe: + "/DigimonSurvive.exe": - when: - bit: 64 os: windows @@ -147373,14 +147814,14 @@ Digimon Survive: id: 871980 Digimon World: files: - /SAVE/*.*: + "/SAVE/*.*": tags: - save when: - os: windows -'Digimon World: Next Order': +"Digimon World: Next Order": files: - /Bandai Namco Entertainment/Digimon World Next Order/: + "/Bandai Namco Entertainment/Digimon World Next Order/": tags: - config - save @@ -147389,7 +147830,7 @@ Digimon World: installDir: Digimon World Next Order: {} launch: - /Digimon World Next Order.exe: + "/Digimon World Next Order.exe": - when: - store: steam steam: @@ -147401,11 +147842,11 @@ Digital Diamond Baseball: installDir: Digital Diamond Baseball: {} launch: - /DDBBV7.exe: + "/DDBBV7.exe": - when: - os: windows store: steam - /DigitalDiamondBaseballV7.app: + "/DigitalDiamondBaseballV7.app": - when: - os: mac store: steam @@ -147415,17 +147856,17 @@ Digital Diamond Baseball V8: installDir: Digital Diamond Baseball V8: {} launch: - /DDBBV8.exe: + "/DDBBV8.exe": - when: - os: windows store: steam - /DigitalDiamondBaseballV8.app: + "/DigitalDiamondBaseballV8.app": - when: - os: mac store: steam steam: id: 1051500 -Digital Domain's Monkey King: +"Digital Domain's Monkey King": installDir: Digital Domain’s Monkey King™: {} steam: @@ -147434,11 +147875,11 @@ Digital Dungeon: installDir: Digital Dungeon: {} launch: - /Digital Dungeon.app/Contents/MacOS/Digital Dungeon: + "/Digital Dungeon.app/Contents/MacOS/Digital Dungeon": - when: - os: mac store: steam - /Digital Dungeon.exe: + "/Digital Dungeon.exe": - when: - os: windows store: steam @@ -147448,7 +147889,7 @@ Digital Jigsaw Puzzle: installDir: Digital Jigsaw Puzzle: {} launch: - /DigitalJigsawPuzzleSteam.exe: + "/DigitalJigsawPuzzleSteam.exe": - when: - bit: 64 os: windows @@ -147457,12 +147898,12 @@ Digital Jigsaw Puzzle: id: 877550 Digital Paintball Redux: files: - /Half-Life/dpbredux: + "/Half-Life/dpbredux": tags: - config when: - os: windows - /Half-Life/dpbredux/SAVE: + "/Half-Life/dpbredux/SAVE": tags: - save when: @@ -147470,8 +147911,8 @@ Digital Paintball Redux: installDir: Half-Life: {} launch: - /hl.exe: - - arguments: '-game dpbredux' + "/hl.exe": + - arguments: "-game dpbredux" when: - store: steam steam: @@ -147483,7 +147924,7 @@ Digital Rose: installDir: Digital Rose: {} launch: - /Digital Rose.exe: + "/Digital Rose.exe": - when: - os: windows store: steam @@ -147493,7 +147934,7 @@ Digital Runner: installDir: Digital Runner: {} launch: - /DigitalRunner.exe: + "/DigitalRunner.exe": - when: - os: windows store: steam @@ -147503,44 +147944,44 @@ Digital Siege: installDir: Digital Siege: {} launch: - /Digital Siege.app/Contents/MacOS/Digital Siege: + "/Digital Siege.app/Contents/MacOS/Digital Siege": - when: - os: mac store: steam - /Digital Siege.exe: + "/Digital Siege.exe": - when: - os: windows store: steam steam: id: 885090 -Diib's Dilemma: +"Diib's Dilemma": installDir: - Diib's Dilemma: {} + "Diib's Dilemma": {} launch: - /java: - - arguments: '-jar Diib.jar' + "/java": + - arguments: "-jar Diib.jar" when: - os: linux store: steam - /jre8/bin/javaw.exe: - - arguments: '-jar Diib.jar' + "/jre8/bin/javaw.exe": + - arguments: "-jar Diib.jar" when: - os: windows store: steam - - arguments: '-jar Diib.jar -window' + - arguments: "-jar Diib.jar -window" when: - os: windows store: steam steam: id: 473840 -Dilbert's Desktop Games: +"Dilbert's Desktop Games": files: - /Dt05/ToySpr/CEO/sim.dat: + "/Dt05/ToySpr/CEO/sim.dat": tags: - save when: - os: windows - /Dt05/ToySpr/Toys/widget.dat: + "/Dt05/ToySpr/Toys/widget.dat": tags: - save when: @@ -147551,7 +147992,7 @@ Dilbert's Desktop Games: - config Diluvian Winds: files: - /AppData/LocalLow/AlambikStudio/DiluvianWinds/SaveData: + "/AppData/LocalLow/AlambikStudio/DiluvianWinds/SaveData": tags: - save when: @@ -147561,14 +148002,14 @@ Diluvian Winds: installDir: Diluvian: {} launch: - /DiluvianWinds.exe: + "/DiluvianWinds.exe": - when: - store: steam steam: id: 1561040 Diluvion: files: - /Steam/Player: + "/Steam/Player": tags: - config when: @@ -147578,15 +148019,15 @@ Diluvion: installDir: Diluvion: {} launch: - /Diluvion.app: + "/Diluvion.app": - when: - os: mac store: steam - /Diluvion.exe: + "/Diluvion.exe": - when: - os: windows store: steam - /Diluvion.x86_64: + "/Diluvion.x86_64": - when: - os: linux store: steam @@ -147595,11 +148036,11 @@ Diluvion: Dima Rescues Ira: steam: id: 586280 -'Dimense: Chapter 1': +"Dimense: Chapter 1": installDir: Dimense Chapter 1: {} launch: - /Dimense.exe: + "/Dimense.exe": - when: - os: windows store: steam @@ -147609,7 +148050,7 @@ Dimension Drifter: installDir: Dimension Drifter: {} launch: - /DimensionDrifter.exe: + "/DimensionDrifter.exe": - when: - bit: 64 os: windows @@ -147620,20 +148061,20 @@ Dimension Drive: installDir: Dimension Drive: {} launch: - /Dimension Drive.exe: + "/Dimension Drive.exe": - when: - os: windows store: steam - /DimensionDrive.app: + "/DimensionDrive.app": - when: - os: mac store: steam - /DimensionDrive.x86: + "/DimensionDrive.x86": - when: - bit: 32 os: linux store: steam - /DimensionDrive.x86_64: + "/DimensionDrive.x86_64": - when: - bit: 64 os: linux @@ -147649,7 +148090,7 @@ Dimension Jump: installDir: Dimension Jump: {} launch: - /Launcher.exe: + "/Launcher.exe": - when: - os: windows store: steam @@ -147659,22 +148100,22 @@ Dimension Of Gameth: installDir: Dimension Of Gameth: {} launch: - /DOG.exe: + "/DOG.exe": - when: - bit: 64 os: windows store: steam steam: id: 892960 -'Dimension Tripper Neptune: Top Nep': +"Dimension Tripper Neptune: Top Nep": files: - /userdata//1798780/remote/savedata.json: + "/userdata//1798780/remote/savedata.json": tags: - save when: - os: windows store: steam - /topnep/savedata.ini: + "/topnep/savedata.ini": tags: - save when: @@ -147682,7 +148123,7 @@ Dimension Of Gameth: installDir: Top Nep: {} launch: - /TOP NEP.exe: + "/TOP NEP.exe": - when: - os: windows store: steam @@ -147692,15 +148133,15 @@ Dimension of Monster Girls: installDir: Dimension of Monster Girls: {} launch: - /DoMG.app/Contents/MacOS/DoMG: + "/DoMG.app/Contents/MacOS/DoMG": - when: - os: mac store: steam - /DoMG.exe: + "/DoMG.exe": - when: - os: windows store: steam - /DoMG.sh: + "/DoMG.sh": - when: - os: linux store: steam @@ -147725,7 +148166,7 @@ Dimensionality 3.5: installDir: Dimensionality 3.5: {} launch: - /dimension.exe: + "/dimension.exe": - when: - os: windows store: steam @@ -147735,11 +148176,11 @@ Dimensions VIP: installDir: Dimensions VIP: {} launch: - /Dimensions.VIP.exe: + "/Dimensions.VIP.exe": - when: - os: windows store: steam - /DimensionsVIPMacSTEAM.app: + "/DimensionsVIPMacSTEAM.app": - when: - os: mac store: steam @@ -147749,19 +148190,19 @@ DimensionsVS: installDir: DimensionsVS: {} launch: - /DimensionsReborn.exe: + "/DimensionsReborn.exe": - when: - store: steam steam: id: 682420 Dimensity: files: - /Dimensity: + "/Dimensity": tags: - save when: - os: windows - /Dimensity/system.ini: + "/Dimensity/system.ini": tags: - config when: @@ -147774,7 +148215,7 @@ Dimensity: installDir: Dimensity: {} launch: - /bin/DimensityPL.exe: + "/bin/DimensityPL.exe": - when: - store: steam steam: @@ -147783,7 +148224,7 @@ Dimetrosaur: installDir: Dimetrosaur: {} launch: - '/${DIMETROSAUR}.exe': + "/${DIMETROSAUR}.exe": - when: - os: windows store: steam @@ -147796,29 +148237,29 @@ Diminutive: installDir: Diminutive: {} launch: - /diminutive.exe: + "/diminutive.exe": - when: - store: steam steam: id: 694400 -Din's Curse: +"Din's Curse": files: - /.local/DinsCurse/User: + "/.local/DinsCurse/User": tags: - config when: - os: linux - /.local/DinsCurse/User/chars: + "/.local/DinsCurse/User/chars": tags: - save when: - os: linux - /DinsCurse/User: + "/DinsCurse/User": tags: - config when: - os: windows - /DinsCurse/User/chars: + "/DinsCurse/User/chars": tags: - save when: @@ -147826,35 +148267,35 @@ Din's Curse: gog: id: 1207665923 installDir: - Din's Curse: {} + "Din's Curse": {} launch: - /Din's Curse.app: + "/Din's Curse.app": - when: - os: mac store: steam - /DinsCurse: + "/DinsCurse": - when: - os: linux store: steam - /DinsCurse.exe: + "/DinsCurse.exe": - when: - os: windows store: steam steam: id: 217290 -Din's Legacy: +"Din's Legacy": files: - /.local/DinsLegacy/User: + "/.local/DinsLegacy/User": tags: - save when: - os: linux - /DinsLegacy/chars: + "/DinsLegacy/chars": tags: - config when: - os: windows - /DinsLegacy/user.cfg: + "/DinsLegacy/user.cfg": tags: - save when: @@ -147862,17 +148303,17 @@ Din's Legacy: gog: id: 1472462985 installDir: - Din's Legacy: {} + "Din's Legacy": {} launch: - /DinsLegacy: + "/DinsLegacy": - when: - os: linux store: steam - /DinsLegacy.app: + "/DinsLegacy.app": - when: - os: mac store: steam - /DinsLegacy.exe: + "/DinsLegacy.exe": - when: - os: windows store: steam @@ -147880,7 +148321,7 @@ Din's Legacy: id: 911550 Diner Bros: files: - /AppData/LocalLow/JAYFLGAMES/Diner Bros: + "/AppData/LocalLow/JAYFLGAMES/Diner Bros": tags: - save when: @@ -147888,20 +148329,20 @@ Diner Bros: installDir: Diner Bros: {} launch: - /Diner Bros.exe: + "/Diner Bros.exe": - when: - store: steam steam: id: 846800 -'Diner Dash: Hometown Hero': +"Diner Dash: Hometown Hero": installDir: Diner Dash Hometown Hero: {} launch: - /Diner Dash - Hometown Hero.exe: + "/Diner Dash - Hometown Hero.exe": - when: - os: windows store: steam - /DinerDashHometownHero.app: + "/DinerDashHometownHero.app": - when: - os: mac store: steam @@ -147911,7 +148352,7 @@ Diner Mania: installDir: Diner Mania: {} launch: - /DinerMania.exe: + "/DinerMania.exe": - when: - os: windows store: steam @@ -147921,11 +148362,11 @@ DinerTown Detective Agency: installDir: DinerTown Detective Agency: {} launch: - /DDA.exe: + "/DDA.exe": - when: - os: windows store: steam - /DinerTown Detective Agency.app: + "/DinerTown Detective Agency.app": - when: - os: mac store: steam @@ -147935,11 +148376,11 @@ DinerTown Tycoon: installDir: DinerTown Tycoon: {} launch: - /DinerTown Tycoon.app: + "/DinerTown Tycoon.app": - when: - os: mac store: steam - /DinerTown Tycoon.exe: + "/DinerTown Tycoon.exe": - when: - os: windows store: steam @@ -147952,7 +148393,7 @@ Ding Dong VR: id: 897690 Ding Dong XL: files: - /AppData/LocalLow/Nickervision Studios/Ding Dong XL: + "/AppData/LocalLow/Nickervision Studios/Ding Dong XL": tags: - save when: @@ -147960,21 +148401,24 @@ Ding Dong XL: installDir: Ding Dong XL: {} launch: - /DingDongXL.app: + "/DingDongXL.app": - when: - os: mac store: steam - /DingDongXL.exe: + "/DingDongXL.exe": - when: - bit: 32 os: windows store: steam - /DingDongXL.x86: + - bit: 64 + os: windows + store: steam + "/DingDongXL.x86": - when: - bit: 32 os: linux store: steam - /DingDongXL.x86_64: + "/DingDongXL.x86_64": - when: - bit: 64 os: linux @@ -147985,7 +148429,7 @@ DingDingDing: installDir: DingDingDing: {} launch: - /DingDingDing.exe: + "/DingDingDing.exe": - when: - bit: 64 os: windows @@ -147994,12 +148438,12 @@ DingDingDing: id: 936940 Dink Smallwood: files: - /dink/*.dat: + "/dink/*.dat": tags: - save when: - os: windows - /save.dat: + "/save.dat": tags: - config when: @@ -148008,7 +148452,7 @@ Dink Smallwood: id: 1640863824 Dinkum: files: - /AppData/LocalLow/James Bendon/Dinkum: + "/AppData/LocalLow/James Bendon/Dinkum": tags: - save when: @@ -148016,7 +148460,7 @@ Dinkum: installDir: Dinkum: {} launch: - /Dinkum.exe: + "/Dinkum.exe": - when: - os: windows store: steam @@ -148028,7 +148472,7 @@ Dinkum: id: 1062520 Dinner Date: files: - /Dinner Date/user: + "/Dinner Date/user": tags: - config - save @@ -148037,7 +148481,7 @@ Dinner Date: installDir: Dinner Date: {} launch: - /Dinner Date.exe: + "/Dinner Date.exe": - when: - store: steam steam: @@ -148049,19 +148493,19 @@ Dino Crisis: - config Dino Crisis 2: files: - /SAVE*.DAT: + "/SAVE*.DAT": tags: - save when: - os: windows - /dino2.cfg: + "/dino2.cfg": tags: - config when: - os: windows Dino D-Day: files: - /dinodday/cfg: + "/dinodday/cfg": tags: - config when: @@ -148069,7 +148513,7 @@ Dino D-Day: installDir: Dino D-Day: {} launch: - /dinodday.exe: + "/dinodday.exe": - when: - store: steam steam: @@ -148078,7 +148522,7 @@ Dino Dawn: installDir: Dino Dawn: {} launch: - /win32/Dino Dawn.exe: + "/win32/Dino Dawn.exe": - when: - os: windows store: steam @@ -148088,41 +148532,43 @@ Dino Delivery: installDir: Dino Delivery: {} launch: - /DinoDelivery.exe: + "/DinoDelivery.exe": - when: - store: steam steam: id: 1109400 -Dino Dini's Kick Off Revival: +"Dino Dini's Kick Off Revival": files: - /steamapps/common/Dino Dini's Kick Off Revival/Saves: + "/steamapps/common/Dino Dini's Kick Off Revival/Saves": tags: - save when: - os: windows store: steam installDir: - Dino Dini's Kick Off Revival: {} + "Dino Dini's Kick Off Revival": {} launch: - /KOR.exe: + "/KOR.exe": - when: - os: windows store: steam registry: - HKEY_CURRENT_USER/Software/The Digital Lounge/Dino Dini's Kick Off Revival: + "HKEY_CURRENT_USER/Software/The Digital Lounge/Dino Dini's Kick Off Revival": tags: - config steam: id: 537740 -'Dino Eggs: Rebirth': +"Dino Eggs: Rebirth": installDir: DinoEggsRebirth: {} launch: - /DinoEggsRebirth: + "/DinoEggsRebirth": - when: + - os: mac + store: steam - os: linux store: steam - /DinoEggsRebirth.exe: + "/DinoEggsRebirth.exe": - when: - os: windows store: steam @@ -148132,11 +148578,11 @@ Dino Game: installDir: dino game: {} launch: - /dino game.app: + "/dino game.app": - when: - os: mac store: steam - /dino game.exe: + "/dino game.exe": - when: - os: windows store: steam @@ -148146,7 +148592,7 @@ Dino Lost: installDir: Dino Lost: {} launch: - /Dino Lost.exe: + "/Dino Lost.exe": - when: - os: windows store: steam @@ -148154,7 +148600,7 @@ Dino Lost: id: 1063570 Dino Run DX: files: - /com.pixeljam.dinorundx/Local Store: + "/com.pixeljam.dinorundx/Local Store": tags: - save when: @@ -148162,11 +148608,11 @@ Dino Run DX: installDir: DinoRunDX: {} launch: - /Dino Run DX.app: + "/Dino Run DX.app": - when: - os: mac store: steam - /Dino Run DX.exe: + "/Dino Run DX.exe": - when: - os: windows store: steam @@ -148176,7 +148622,7 @@ Dino Scourge: installDir: DinoScourge: {} launch: - /DinoScourge.exe: + "/DinoScourge.exe": - when: - os: windows store: steam @@ -148191,11 +148637,11 @@ DinoBlaster: installDir: DinoBlaster: {} launch: - /DinoBlaster.app: + "/DinoBlaster.app": - when: - os: mac store: steam - /DinoBlaster.exe: + "/DinoBlaster.exe": - when: - os: windows store: steam @@ -148210,15 +148656,15 @@ DinoKnights: installDir: DinoKnights: {} launch: - /DinoKnights: + "/DinoKnights": - when: - os: linux store: steam - /DinoKnights.app/Contents/MacOS/DinoKnights: + "/DinoKnights.app/Contents/MacOS/DinoKnights": - when: - os: mac store: steam - /DinoKnights.exe: + "/DinoKnights.exe": - when: - os: windows store: steam @@ -148231,7 +148677,7 @@ DinoSystem: installDir: DinoSystem: {} launch: - /run_game.exe: + "/run_game.exe": - when: - os: windows store: steam @@ -148246,20 +148692,20 @@ Dinocide: installDir: Dinocide: {} launch: - /Dinocide.app: + "/Dinocide.app": - when: - os: mac store: steam - /Dinocide.exe: + "/Dinocide.exe": - when: - os: windows store: steam - /Dinocide.x86: + "/Dinocide.x86": - when: - bit: 32 os: linux store: steam - /Dinocide.x86_64: + "/Dinocide.x86_64": - when: - bit: 64 os: linux @@ -148270,7 +148716,7 @@ Dinodrifters: installDir: Dinodrifters: {} launch: - /dinodrifters.exe: + "/dinodrifters.exe": - when: - os: windows store: steam @@ -148280,7 +148726,7 @@ Dinoku: installDir: Dinoku: {} launch: - /dinoku.exe: + "/dinoku.exe": - when: - os: windows store: steam @@ -148290,7 +148736,7 @@ Dinosaur Bone Digging: installDir: Dinosaur Bone Digging: {} launch: - /Dinosaur Bone Digging.exe: + "/Dinosaur Bone Digging.exe": - when: - os: windows store: steam @@ -148300,15 +148746,15 @@ Dinosaur Forest: installDir: Dinosaur Forest: {} launch: - /DinosaurForest.app/Contents/MacOS/DinosaurForest: + "/DinosaurForest.app/Contents/MacOS/DinosaurForest": - when: - os: mac store: steam - /DinosaurForest.exe: + "/DinosaurForest.exe": - when: - os: windows store: steam - /DinosaurForest.x86: + "/DinosaurForest.x86": - when: - os: linux store: steam @@ -148318,7 +148764,7 @@ Dinosaur Fossil Hunter: installDir: Dinosaur Fossil Hunter: {} launch: - /Dinosaur Fossil Hunter.exe: + "/Dinosaur Fossil Hunter.exe": - when: - os: windows store: steam @@ -148328,15 +148774,15 @@ Dinosaur Hunt: installDir: Dinosaur Hunt Africa Contract: {} launch: - /DinosaurHuntLinux.x86: + "/DinosaurHuntLinux.x86": - when: - os: linux store: steam - /DinosaurHunterMac.app/Contents/MacOS/DinosaurHunterMac: + "/DinosaurHunterMac.app/Contents/MacOS/DinosaurHunterMac": - when: - os: mac store: steam - /DinosaurHunterWin.exe: + "/DinosaurHunterWin.exe": - when: - os: windows store: steam @@ -148346,15 +148792,15 @@ Dinosaur Hunt First Blood: installDir: Dinosaur Hunt First Blood: {} launch: - /DinosaurHuntFirstBlood.app/Contents/MacOS/DinosaurHuntFirstBlood: + "/DinosaurHuntFirstBlood.app/Contents/MacOS/DinosaurHuntFirstBlood": - when: - os: mac store: steam - /DinosaurHuntFirstBlood.exe: + "/DinosaurHuntFirstBlood.exe": - when: - os: windows store: steam - /DinosaurHuntFirstBlood.x86: + "/DinosaurHuntFirstBlood.x86": - when: - os: linux store: steam @@ -148364,15 +148810,15 @@ Dinosaur Hunt Puzzle: installDir: Dinosaur Hunt Puzzle: {} launch: - /DinosaurHuntPuzzle.app/Contents/MacOS/DinosaurHuntPuzzle: + "/DinosaurHuntPuzzle.app/Contents/MacOS/DinosaurHuntPuzzle": - when: - os: mac store: steam - /DinosaurHuntPuzzle.exe: + "/DinosaurHuntPuzzle.exe": - when: - os: windows store: steam - /DinosaurHuntPuzzle.x86: + "/DinosaurHuntPuzzle.x86": - when: - os: linux store: steam @@ -148382,7 +148828,7 @@ Dinosaur Hunter: installDir: Dinosaur Hunter: {} launch: - /dinosaurhunter.exe: + "/dinosaurhunter.exe": - when: - os: windows store: steam @@ -148397,7 +148843,7 @@ Dinosaur Hunting Patrol 3D Multiplayer Online: installDir: Dinosaur Hunting Patrol Multiplayer: {} launch: - /Multiplayer Dinosaurs Hunting Patrol.exe: + "/Multiplayer Dinosaurs Hunting Patrol.exe": - when: - bit: 64 os: windows @@ -148409,15 +148855,15 @@ Dinosaur Safari VR: Dinosaur Safari VR: {} steam: id: 953290 -'Dinosaur Shakespeare: To Date or Not To Date?': +"Dinosaur Shakespeare: To Date or Not To Date?": installDir: Paper Shakespeare Dating Sim 3: {} launch: - /Paper_Shakespeare_DS3.exe: + "/Paper_Shakespeare_DS3.exe": - when: - os: windows store: steam - /Paper_Shakespeare_DS3.sh: + "/Paper_Shakespeare_DS3.sh": - when: - os: linux store: steam @@ -148427,7 +148873,7 @@ DinosaurIsland: installDir: DinosaurIsland: {} launch: - /DinosaurIsland.exe: + "/DinosaurIsland.exe": - when: - bit: 64 os: windows @@ -148438,7 +148884,7 @@ Dinosaurs A Prehistoric Adventure: installDir: Dinosaurs A Prehistoric Adventure: {} launch: - /DaPA.exe: + "/DaPA.exe": - when: - os: windows store: steam @@ -148448,7 +148894,7 @@ Dinosaurs Prehistoric Survivors: installDir: Dinosaurs Prehistoric Survivors: {} launch: - /DPS_Launcher.exe: + "/DPS_Launcher.exe": - when: - bit: 64 os: windows @@ -148464,7 +148910,7 @@ Dinosis Survival: installDir: Dinosis Survival: {} launch: - /Dinosis.exe: + "/Dinosis.exe": - when: - os: windows store: steam @@ -148474,7 +148920,7 @@ Diorama Battle of Ninja: installDir: DBoN: {} launch: - /Ninja.exe: + "/Ninja.exe": - when: - os: windows store: steam @@ -148482,12 +148928,13 @@ Diorama Battle of Ninja: id: 464070 Diorama Builder: files: - /AppData/LocalLow/Virtual Arts Studio/Diorama Builder: + "/AppData/LocalLow/Virtual Arts Studio/Diorama Builder": tags: - config - save when: - - store: steam + - os: windows + store: steam installDir: Diorama Builder: {} steam: @@ -148496,22 +148943,22 @@ Diorama Dungeoncrawl: installDir: Diorama Dungeoncrawl: {} launch: - /Diorama Dungeoncrawl.exe: + "/Diorama Dungeoncrawl.exe": - when: - os: windows store: steam - /DioramaDungeoncrawl.app: + "/DioramaDungeoncrawl.app": - when: - os: mac store: steam steam: id: 1074640 -'Diorama No.1: Blocked In': +"Diorama No.1: Blocked In": installDir: Diorama No1 - Blocked In: {} steam: id: 431390 -'Diorama No.3: The Marchland': +"Diorama No.3: The Marchland": installDir: Diorama No3 - The Marchland: {} steam: @@ -148523,7 +148970,7 @@ Diorama Worlds: id: 602630 Diplomacy Is Not an Option: files: - /AppData/LocalLow/Door 407/Diplomacy is Not an Option/DNOPersistentData/YUA: + "/AppData/LocalLow/Door 407/Diplomacy is Not an Option/DNOPersistentData/YUA": tags: - save when: @@ -148533,7 +148980,7 @@ Diplomacy Is Not an Option: installDir: Diplomacy is Not an Option: {} launch: - /Diplomacy is Not an Option.exe: + "/Diplomacy is Not an Option.exe": - when: - store: steam steam: @@ -148542,22 +148989,22 @@ Direct: installDir: Direct: {} launch: - /Direct.exe: + "/Direct.exe": - when: - bit: 64 os: windows store: steam steam: id: 675720 -'Direct Hit: Missile War': +"Direct Hit: Missile War": installDir: Direct Hit Missile War: {} launch: - /DirectHit.exe: + "/DirectHit.exe": - when: - os: windows store: steam - /DirectHitNoVideo.exe: + "/DirectHitNoVideo.exe": - when: - os: windows store: steam @@ -148572,7 +149019,7 @@ Director of Football: installDir: Director of Football: {} launch: - /dof_uk.exe: + "/dof_uk.exe": - when: - store: steam steam: @@ -148581,7 +149028,7 @@ Dirt Bike Insanity: installDir: Dirt Bike Insanity: {} launch: - /Dirt Bike Insanity.exe: + "/Dirt Bike Insanity.exe": - when: - bit: 64 os: windows @@ -148590,7 +149037,7 @@ Dirt Bike Insanity: id: 851940 Dirty Bomb: files: - /My Games/UnrealEngine3/ShooterGame/Config: + "/My Games/UnrealEngine3/ShooterGame/Config": tags: - config when: @@ -148598,10 +149045,8 @@ Dirty Bomb: installDir: Dirty Bomb: {} launch: - /DirtyBombLauncher.exe: - - arguments: >- - -flUrl=\"https://api.fireteam.net\" -flDomain=\"net.nexon.shooter.steam\" - -flClientIdSecret=\"086418c2-980e-5f4c-a5b3-140414328555:f7f8ba288459923e94240364240e79c4ae95fdfe\" + "/DirtyBombLauncher.exe": + - arguments: "-flUrl=\\\"https://api.fireteam.net\\\" -flDomain=\\\"net.nexon.shooter.steam\\\" -flClientIdSecret=\\\"086418c2-980e-5f4c-a5b3-140414328555:f7f8ba288459923e94240364240e79c4ae95fdfe\\\"" when: - os: windows store: steam @@ -148611,7 +149056,7 @@ Dirty Education: installDir: Dirty Education: {} launch: - /DirtyEducation.app: + "/DirtyEducation.app": - when: - os: mac store: steam @@ -148621,7 +149066,7 @@ Dirty Fighter 1: installDir: Dirty Fighter 1: {} launch: - /DirtyFighter.exe: + "/DirtyFighter.exe": - when: - bit: 32 os: windows @@ -148632,7 +149077,7 @@ Dirty Fighter 2: installDir: Dirty Fighter 2: {} launch: - /Dirty Fighter 2.exe: + "/Dirty Fighter 2.exe": - when: - bit: 32 os: windows @@ -148646,16 +149091,19 @@ Dis Pontibus: installDir: Dis Pontibus: {} launch: - /Contents/MacOS/Dis Pontibus: + "/Contents/MacOS/Dis Pontibus": - when: - os: mac store: steam - /Dis Pontibus.exe: + "/Dis Pontibus.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam - /Dis Pontibus.x86_64: + "/Dis Pontibus.x86_64": - when: - bit: 64 os: linux @@ -148666,15 +149114,15 @@ Dis The Game: installDir: Dis The Game: {} launch: - /Dis The Game.exe: + "/Dis The Game.exe": - when: - os: windows store: steam - /DisTheGame.x86_64: + "/DisTheGame.x86_64": - when: - os: linux store: steam - /Mac.app: + "/Mac.app": - when: - os: mac store: steam @@ -148689,7 +149137,7 @@ Disassembly 3D: installDir: Disassembly 3D: {} launch: - /Disassembly.exe: + "/Disassembly.exe": - when: - os: windows store: steam @@ -148699,15 +149147,15 @@ Disassembly Line: installDir: DisassemblyLine: {} launch: - /DisassemblyLine.app/Contents/MacOS/DisassemblyLine: + "/DisassemblyLine.app/Contents/MacOS/DisassemblyLine": - when: - os: mac store: steam - /DisassemblyLine.exe: + "/DisassemblyLine.exe": - when: - os: windows store: steam - /DisassemblyLine.x86: + "/DisassemblyLine.x86": - when: - os: linux store: steam @@ -148722,19 +149170,19 @@ Disaster Dragon x Girls from Different Worlds: installDir: DxG: {} launch: - /DxG.exe: + "/DxG.exe": - when: - store: steam steam: id: 1179440 -'Disaster Report 4: Summer Memories': +"Disaster Report 4: Summer Memories": files: - /Saved Games/DisasterReport4: + "/Saved Games/DisasterReport4": tags: - save when: - os: windows - /Saved Games/DisasterReport4/Saved/Config/WindowsNoEditor: + "/Saved Games/DisasterReport4/Saved/Config/WindowsNoEditor": tags: - config when: @@ -148744,7 +149192,7 @@ Disaster Dragon x Girls from Different Worlds: installDir: Disaster Report 4 Summer Memories: {} launch: - /DisasterReport4.exe: + "/DisasterReport4.exe": - when: - bit: 64 os: windows @@ -148755,7 +149203,7 @@ Disastr Blastr: installDir: Disastr_Blastr: {} launch: - /Disastr_Blastr_STEAM_RLSv09.exe: + "/Disastr_Blastr_STEAM_RLSv09.exe": - when: - os: windows store: steam @@ -148765,7 +149213,7 @@ Disc Creatures: installDir: Disc Creatures: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -148783,12 +149231,12 @@ Disc Golf VR: id: 856300 Disc Jam: files: - /DiscJam/Saved/Config: + "/DiscJam/Saved/Config": tags: - config when: - os: windows - /DiscJam/Saved/SaveGames: + "/DiscJam/Saved/SaveGames": tags: - save when: @@ -148804,12 +149252,12 @@ Disc League: id: 591140 Disc Room (2016): files: - /options.ini: + "/options.ini": tags: - config when: - os: windows - /disc_room: + "/disc_room": tags: - save when: @@ -148823,15 +149271,15 @@ Disc Room (2020): installDir: Disc Room: {} launch: - /DISC ROOM.app: + "/DISC ROOM.app": - when: - os: mac store: steam - /disc room.exe: + "/disc room.exe": - when: - os: windows store: steam - /disc_room: + "/disc_room": - when: - os: linux store: steam @@ -148841,15 +149289,15 @@ DiscStorm: installDir: DiscStorm: {} launch: - /DiscStorm.app: + "/DiscStorm.app": - when: - os: mac store: steam - /DiscStorm.exe: + "/DiscStorm.exe": - when: - os: windows store: steam - /DiscStorm.x86: + "/DiscStorm.x86": - when: - os: linux store: steam @@ -148859,7 +149307,7 @@ Discharge: installDir: Discharge: {} launch: - /NeuralNetwork.exe: + "/NeuralNetwork.exe": - when: - bit: 64 os: windows @@ -148869,14 +149317,14 @@ Discharge: Dischord: steam: id: 1090120 -'Disciples II: Dark Prophecy': +"Disciples II: Dark Prophecy": files: - /Disciple.ini: + "/Disciple.ini": tags: - config when: - os: windows - /SaveGame: + "/SaveGame": tags: - save when: @@ -148889,27 +149337,27 @@ Dischord: - 1207663713 steamExtra: - 1630 - - 1645 - 1635 + - 1645 installDir: Disciples II Galleans Return: {} launch: - /ConfigEditor.exe: + "/ConfigEditor.exe": - when: - store: steam - /discipl2.exe: + "/discipl2.exe": - when: - store: steam steam: id: 1640 -'Disciples III: Reincarnation': +"Disciples III: Reincarnation": files: - /My Games/Disciples Reincarnation/Save: + "/My Games/Disciples Reincarnation/Save": tags: - save when: - os: windows - /My Games/Disciples Reincarnation/user.ini: + "/My Games/Disciples Reincarnation/user.ini": tags: - config when: @@ -148917,19 +149365,19 @@ Dischord: installDir: Disciples III Rebirth: {} launch: - /DisciplesIII.exe: + "/DisciplesIII.exe": - when: - store: steam steam: id: 10270 -'Disciples III: Renaissance': +"Disciples III: Renaissance": files: - /My Games/DisciplesIII: + "/My Games/DisciplesIII": tags: - config when: - os: windows - /My Games/DisciplesIII/save: + "/My Games/DisciplesIII/save": tags: - save when: @@ -148937,41 +149385,42 @@ Dischord: installDir: Disciples 3: {} launch: - /DisciplesIII.exe: + "/DisciplesIII.exe": - when: - store: steam steam: id: 33670 -'Disciples III: Resurrection': +"Disciples III: Resurrection": installDir: Disciples III Resurrection: {} launch: - /DisciplesIII.exe: + "/DisciplesIII.exe": - when: - store: steam steam: id: 200670 -'Disciples: Liberation': +"Disciples: Liberation": files: - /Kalypso Media/Disciples Liberation/Saves/: + "/Kalypso Media/Disciples Liberation/Saves/": tags: - save when: - - store: steam + - os: windows + store: steam gog: id: 1914938584 installDir: Disciples Liberation: {} steam: id: 1287840 -'Disciples: Sacred Lands': +"Disciples: Sacred Lands": files: - /Exe/DISCIPLE.INI: + "/Exe/DISCIPLE.INI": tags: - config when: - os: windows - /Savegame: + "/Savegame": tags: - save when: @@ -148981,7 +149430,7 @@ Dischord: installDir: Disciples Sacred Lands Gold: {} launch: - /start.bat: + "/start.bat": - when: - os: windows store: steam @@ -148997,22 +149446,22 @@ Disco Destruction: id: 677380 Disco Elysium: files: - /AppData/LocalLow/ZAUM Studio/Disco Elysium/SaveGames: + "/AppData/LocalLow/ZAUM Studio/Disco Elysium/SaveGames": tags: - save when: - os: windows - /AppData/LocalLow/ZAUM Studio/Disco Elysium/Settings/Settings.json: + "/AppData/LocalLow/ZAUM Studio/Disco Elysium/Settings/Settings.json": tags: - config when: - os: windows - /Library/Application Support/com.zaumstudio.discoelysium/SaveGames: + "/Library/Application Support/com.zaumstudio.discoelysium/SaveGames": tags: - save when: - os: mac - /Library/Application Support/com.zaumstudio.discoelysium/Settings: + "/Library/Application Support/com.zaumstudio.discoelysium/Settings": tags: - config when: @@ -149027,11 +149476,11 @@ Disco Elysium: installDir: Disco Elysium: {} launch: - /disco.app: + "/disco.app": - when: - os: mac store: steam - /disco.exe: + "/disco.exe": - when: - bit: 64 os: windows @@ -149054,7 +149503,7 @@ Discolored: installDir: Discolored: {} launch: - /Discolored.exe: + "/Discolored.exe": - when: - bit: 64 os: windows @@ -149070,7 +149519,7 @@ Discord Rich Me! (Custom Rich Presence): installDir: Discord Rich Me!: {} launch: - /Discord Rich Me!.exe: + "/Discord Rich Me!.exe": - when: - os: windows store: steam @@ -149080,15 +149529,15 @@ Discouraged Workers: installDir: Discouraged Workers: {} launch: - /Discouraged-Workers.app/Contents/MacOS/Discouraged-Workers: + "/Discouraged-Workers.app/Contents/MacOS/Discouraged-Workers": - when: - os: mac store: steam - /Discouraged-Workers.exe: + "/Discouraged-Workers.exe": - when: - os: windows store: steam - /Discouraged-Workers.sh: + "/Discouraged-Workers.sh": - when: - os: linux store: steam @@ -149098,15 +149547,15 @@ Discouraged Workers Teen: installDir: Discouraged Workers TEEN: {} launch: - /Discouraged-Workers-TEEN.app/Contents/MacOS/Discouraged-Workers-TEEN: + "/Discouraged-Workers-TEEN.app/Contents/MacOS/Discouraged-Workers-TEEN": - when: - os: mac store: steam - /Discouraged-Workers-TEEN.exe: + "/Discouraged-Workers-TEEN.exe": - when: - os: windows store: steam - /Discouraged-Workers-TEEN.sh: + "/Discouraged-Workers-TEEN.sh": - when: - os: linux store: steam @@ -149126,20 +149575,20 @@ Discovering Colors - Animals: installDir: Discovering Colors - Animals: {} launch: - /Discovering Colors.app: + "/Discovering Colors.app": - when: - os: mac store: steam - /Discovering Colors.exe: + "/Discovering Colors.exe": - when: - os: windows store: steam - /Discovering Colors.x86: + "/Discovering Colors.x86": - when: - bit: 32 os: linux store: steam - /Discovering Colors.x86_64: + "/Discovering Colors.x86_64": - when: - bit: 64 os: linux @@ -149151,12 +149600,12 @@ Discovering Space 2: Discovering Space 2: {} steam: id: 496740 -'Discovery Tour: Ancient Egypt': +"Discovery Tour: Ancient Egypt": steam: id: 775430 -'Discovery Tour: Ancient Greece': +"Discovery Tour: Ancient Greece": files: - /savegames//5404: + "/savegames//5404": tags: - save when: @@ -149165,12 +149614,12 @@ Discovery! A Seek and Find Adventure: installDir: Discovery! A Seek and Find Adventure: {} launch: - /Discovery.exe: + "/Discovery.exe": - when: - store: steam steam: id: 16000 -'Discovr Egypt: King Tut''s Tomb': +"Discovr Egypt: King Tut's Tomb": installDir: DiscovrEgypt: {} steam: @@ -149179,7 +149628,7 @@ Discrepant: installDir: Discrepant: {} launch: - /Discrepant2.exe: + "/Discrepant2.exe": - when: - bit: 64 os: windows @@ -149190,7 +149639,7 @@ Discs of Steel Party: installDir: Discs of Steel Party: {} launch: - /DiscsOfSteel.exe: + "/DiscsOfSteel.exe": - when: - os: windows store: steam @@ -149198,7 +149647,7 @@ Discs of Steel Party: id: 859660 Discworld Noir: files: - /save: + "/save": tags: - save when: @@ -149207,7 +149656,7 @@ Disdoored: installDir: Disdoored: {} launch: - /Disdoored.exe: + "/Disdoored.exe": - when: - os: windows store: steam @@ -149217,7 +149666,7 @@ Disfigure: installDir: Disfigure: {} launch: - /Disfigure.exe: + "/Disfigure.exe": - when: - os: windows store: steam @@ -149230,12 +149679,12 @@ Disfigure: id: 2083160 Disgaea 2 PC: files: - /game.cfg: + "/game.cfg": tags: - config when: - os: linux - /userdata//495280/remote: + "/userdata//495280/remote": tags: - save when: @@ -149243,15 +149692,15 @@ Disgaea 2 PC: installDir: Disgaea 2 PC: {} launch: - /Disgaea2SteamOS.sh: + "/Disgaea2SteamOS.sh": - when: - os: linux store: steam - /disgaea2.exe: + "/disgaea2.exe": - when: - os: windows store: steam - /disgaea2app.app: + "/disgaea2app.app": - when: - os: mac store: steam @@ -149259,17 +149708,18 @@ Disgaea 2 PC: id: 495280 Disgaea 4 Complete+: files: - '/Nippon Ichi Software, Inc/Disgaea 4 Complete+//SaveData': + "/Nippon Ichi Software, Inc/Disgaea 4 Complete+//SaveData": tags: - save when: - - store: steam - '/Nippon Ichi Software, Inc/Disgaea 4 Complete+//config.ini': + - os: windows + store: steam + "/Nippon Ichi Software, Inc/Disgaea 4 Complete+//config.ini": tags: - config when: - os: windows - '/Nippon Ichi Software, Inc/Disgaea 4 Complete+//keysettings.bin': + "/Nippon Ichi Software, Inc/Disgaea 4 Complete+//keysettings.bin": tags: - config when: @@ -149277,7 +149727,7 @@ Disgaea 4 Complete+: installDir: Disgaea 4 Complete+: {} launch: - /Disgaea4pc.exe: + "/Disgaea4pc.exe": - when: - os: windows store: steam @@ -149285,17 +149735,17 @@ Disgaea 4 Complete+: id: 1233880 Disgaea 5 Complete: files: - '/Nippon Ichi Software, Inc/Disgaea 5 Complete//SaveData/Save_*.sav': + "/Nippon Ichi Software, Inc/Disgaea 5 Complete//SaveData/Save_*.sav": tags: - save when: - os: windows - '/Nippon Ichi Software, Inc/Disgaea 5 Complete//SaveData/SystemSave.sav': + "/Nippon Ichi Software, Inc/Disgaea 5 Complete//SaveData/SystemSave.sav": tags: - save when: - os: windows - '/Nippon Ichi Software, Inc/Disgaea 5 Complete//keysettings.bin': + "/Nippon Ichi Software, Inc/Disgaea 5 Complete//keysettings.bin": tags: - config when: @@ -149303,7 +149753,7 @@ Disgaea 5 Complete: installDir: Disgaea 5 Complete: {} launch: - /disgaea5.exe: + "/disgaea5.exe": - when: - os: windows store: steam @@ -149311,12 +149761,12 @@ Disgaea 5 Complete: id: 803600 Disgaea 6 Complete: files: - '/Nippon Ichi Software, Inc/Disgaea 6 Complete/': + "/Nippon Ichi Software, Inc/Disgaea 6 Complete/": tags: - save when: - os: windows - '/Nippon Ichi Software, Inc/Disgaea 6 Complete//Setting.ini': + "/Nippon Ichi Software, Inc/Disgaea 6 Complete//Setting.ini": tags: - config when: @@ -149324,19 +149774,19 @@ Disgaea 6 Complete: installDir: Disgaea 6 Complete: {} launch: - /Disgaea6.exe: + "/Disgaea6.exe": - when: - store: steam steam: id: 1749750 -'Disgaea 7: Vows of the Virtueless': +"Disgaea 7: Vows of the Virtueless": files: - '/Nippon Ichi Software, Inc/Disgaea 7/': + "/Nippon Ichi Software, Inc/Disgaea 7/": tags: - save when: - os: windows - '/Nippon Ichi Software, Inc/Disgaea 7/Setting.ini': + "/Nippon Ichi Software, Inc/Disgaea 7/Setting.ini": tags: - save when: @@ -149345,24 +149795,24 @@ Disgaea 6 Complete: id: 2250600 Disgaea PC: files: - /*.cfg: + "/*.cfg": tags: - config when: - os: windows - /userdata//405900/remote: + "/userdata//405900/remote": tags: - save when: - store: steam id: steamExtra: - - 439541 - 439540 + - 439541 installDir: Disgaea PC: {} launch: - /dis1_st.exe: + "/dis1_st.exe": - when: - store: steam steam: @@ -149371,7 +149821,7 @@ Disgaea RPG: installDir: DISGAEA RPG: {} launch: - /DISGAEA RPG.exe: + "/DISGAEA RPG.exe": - when: - os: windows store: steam @@ -149381,60 +149831,58 @@ Disgraced: installDir: Disgraced: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: id: 485360 Dishonored: files: - /userdata//205100/remote: + "/userdata//205100/remote": tags: - save when: - store: steam - /userdata//205100/remote/options.sav: + "/userdata//205100/remote/options.sav": tags: - config when: - store: steam - /userdata//217980: + "/userdata//217980": tags: - save when: - store: steam - /My Games/Dishonored/DishonoredGame/Config: + "/My Games/Dishonored/DishonoredGame/Config": tags: - config when: - os: windows - /My Games/Dishonored/DishonoredGame/SaveData: + "/My Games/Dishonored/DishonoredGame/SaveData": tags: - save when: - os: windows - - store: epic gog: id: 1701063787 id: steamExtra: - 208570 - - 212894 - 208575 - 212893 + - 212894 - 217980 - - 218786 - - 218785 - 218784 + - 218785 - 218786 installDir: Dishonored: {} launch: - /Binaries/Win32/Dishonored.exe: + "/Binaries/Win32/Dishonored.exe": - when: - os: windows store: steam - workingDir: /Binaries + workingDir: "/Binaries" registry: HKEY_CURRENT_USER/Software/Arkane/Dishonored: tags: @@ -149443,12 +149891,12 @@ Dishonored: id: 205100 Dishonored 2: files: - /Saved Games/Arkane Studios/dishonored2/base/dishonored2Config.cfg: + "/Saved Games/Arkane Studios/dishonored2/base/dishonored2Config.cfg": tags: - config when: - os: windows - /Saved Games/Arkane Studios/dishonored2/base/savegame: + "/Saved Games/Arkane Studios/dishonored2/base/savegame": tags: - save when: @@ -149461,21 +149909,21 @@ Dishonored 2: installDir: Dishonored2: {} launch: - /Dishonored2.exe: + "/Dishonored2.exe": - when: - bit: 64 os: windows store: steam steam: id: 403640 -'Dishonored: Death of the Outsider': +"Dishonored: Death of the Outsider": files: - /Saved Games/Arkane Studios/Dishonored_DO/base: + "/Saved Games/Arkane Studios/Dishonored_DO/base": tags: - config when: - os: windows - /Saved Games/Arkane Studios/Dishonored_DO/base/savegame: + "/Saved Games/Arkane Studios/Dishonored_DO/base/savegame": tags: - save when: @@ -149485,7 +149933,7 @@ Dishonored 2: installDir: Dishonored_DeathOfTheOutsider: {} launch: - /Dishonored_DO.exe: + "/Dishonored_DO.exe": - when: - bit: 64 os: windows @@ -149496,15 +149944,15 @@ Dishwasher: installDir: Dishwasher: {} launch: - /Dishwasher.app: + "/Dishwasher.app": - when: - os: mac store: steam - /Dishwasher.exe: + "/Dishwasher.exe": - when: - os: windows store: steam - /Dishwasher.x86_64: + "/Dishwasher.x86_64": - when: - os: linux store: steam @@ -149514,23 +149962,23 @@ Disillusions Manga Horror: installDir: Disillusions Manga Horror: {} launch: - /DMH.app: + "/DMH.app": - when: - os: mac store: steam - /DMH.exe: + "/DMH.exe": - when: - os: windows store: steam - /DMH.x86_64: + "/DMH.x86_64": - when: - os: linux store: steam - /DMHvr.app: + "/DMHvr.app": - when: - os: mac store: steam - /DMHvr_DirectToRift.exe: + "/DMHvr_DirectToRift.exe": - when: - os: windows store: steam @@ -149538,12 +149986,12 @@ Disillusions Manga Horror: id: 343270 Disintegration: files: - /Robogore/Saved/Config/WindowsNoEditor: + "/Robogore/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /Robogore/Saved/SaveGames: + "/Robogore/Saved/SaveGames": tags: - save when: @@ -149551,8 +149999,8 @@ Disintegration: installDir: Disintegration: {} launch: - /Disintegration.exe: - - arguments: '-nohmd' + "/Disintegration.exe": + - arguments: "-nohmd" when: - bit: 64 os: windows @@ -149563,7 +150011,7 @@ Disjoint: installDir: Disjoint: {} launch: - /disjoint.exe: + "/disjoint.exe": - when: - os: windows store: steam @@ -149571,12 +150019,12 @@ Disjoint: id: 788120 Disjunction: files: - /Disjunction_v30_2_2/-1/save.json: + "/Disjunction_v30_2_2/-1/save.json": tags: - save when: - os: windows - /Disjunction_v30_2_2/-1/settings.json: + "/Disjunction_v30_2_2/-1/settings.json": tags: - config when: @@ -149586,24 +150034,24 @@ Disjunction: installDir: Disjunction: {} launch: - /Disjunction.exe: + "/Disjunction.exe": - when: - store: steam steam: id: 979310 -'Dismantle: Construct Carnage': +"Dismantle: Construct Carnage": installDir: Dismantle Construct Carnage: {} launch: - /Dismantle.exe: + "/Dismantle.exe": - when: - os: windows store: steam steam: id: 912390 -'Disney Classic Games: Aladdin and The Lion King': +"Disney Classic Games: Aladdin and The Lion King": files: - /DisneyClassicGamesCollection: + "/DisneyClassicGamesCollection": tags: - config when: @@ -149613,7 +150061,7 @@ Disjunction: installDir: Disney Classic Games Aladdin and the Lion King: {} launch: - /DisneyClassicGamesAladdinLionKing.exe: + "/DisneyClassicGamesAladdinLionKing.exe": - when: - os: windows store: steam @@ -149621,7 +150069,7 @@ Disjunction: id: 1126190 Disney Dreamlight Valley: files: - /AppData/LocalLow/Gameloft/Disney Dreamlight Valley: + "/AppData/LocalLow/Gameloft/Disney Dreamlight Valley": tags: - save when: @@ -149629,7 +150077,7 @@ Disney Dreamlight Valley: installDir: Disney Dreamlight Valley: {} launch: - /ddv.exe: + "/ddv.exe": - when: - os: windows store: steam @@ -149637,31 +150085,31 @@ Disney Dreamlight Valley: id: 1401590 Disney Fairies Hidden Treasures: files: - /Packages/Microsoft.DisneyFairies_8wekyb3d8bbwe/LocalState: + "/Packages/Microsoft.DisneyFairies_8wekyb3d8bbwe/LocalState": tags: - save when: - os: windows -'Disney Fairies: Tinker Bell''s Adventure': +"Disney Fairies: Tinker Bell's Adventure": files: - /data/gfx: + "/data/gfx": tags: - config when: - os: windows installDir: - Disney Fairies Tinker Bell's Adventure: {} + "Disney Fairies Tinker Bell's Adventure": {} launch: - /FairiesPC.exe: + "/FairiesPC.exe": - when: - store: steam steam: id: 318350 -'Disney Infinity 1.0: Gold Edition': +"Disney Infinity 1.0: Gold Edition": installDir: Disney Infinity Gold Edition: {} launch: - /DisneyInfinity1.exe: + "/DisneyInfinity1.exe": - when: - store: steam steam: @@ -149670,14 +150118,14 @@ Disney Infinity 2.0: installDir: Disney Infinity 2.0 Gold Edition: {} launch: - /DisneyInfinity2.exe: + "/DisneyInfinity2.exe": - when: - store: steam steam: id: 541660 Disney Infinity 3.0: files: - /AppData/LocalLow/Disney Interactive/Disney Infinity 3.0: + "/AppData/LocalLow/Disney Interactive/Disney Infinity 3.0": tags: - save when: @@ -149688,7 +150136,7 @@ Disney Infinity 3.0: installDir: Disney Infinity 3.0 Gold Edition: {} launch: - /DisneyInfinity3.exe: + "/DisneyInfinity3.exe": - when: - store: steam registry: @@ -149701,33 +150149,33 @@ Disney Planes: installDir: Disney Planes: {} launch: - /PlanesLauncher.exe: + "/PlanesLauncher.exe": - when: - os: windows store: steam steam: id: 286880 -'Disney Princess: Enchanted Journey': +"Disney Princess: Enchanted Journey": files: - /Disney Interactive Studios/Disney Princess - Enchanted Journey: + "/Disney Interactive Studios/Disney Princess - Enchanted Journey": tags: - config - save when: - os: windows installDir: - Disney's Princess Enchanted Journey: {} + "Disney's Princess Enchanted Journey": {} launch: - /play.exe: + "/play.exe": - when: - store: steam steam: id: 322130 -'Disney Princess: My Fairytale Adventure': +"Disney Princess: My Fairytale Adventure": installDir: Disney Princess My Fairytale Adventure: {} launch: - /DisneyPrincess.exe: + "/DisneyPrincess.exe": - when: - os: windows store: steam @@ -149737,7 +150185,7 @@ Disney Speedstorm: installDir: DisneySpeedstorm: {} launch: - /Disney_Speedstorm_x64_rtl.exe: + "/Disney_Speedstorm_x64_rtl.exe": - when: - os: windows store: steam @@ -149745,12 +150193,12 @@ Disney Speedstorm: id: 1537830 Disney Universe: files: - /My Games/Disney Interactive Studios/Disney Universe: + "/My Games/Disney Interactive Studios/Disney Universe": tags: - save when: - os: windows - /Disney Interactive Studios/Disney Universe: + "/Disney Interactive Studios/Disney Universe": tags: - config when: @@ -149758,14 +150206,14 @@ Disney Universe: installDir: Disney Universe: {} launch: - /DisneyUPC.exe: + "/DisneyUPC.exe": - when: - store: steam steam: id: 316260 -Disney's Aladdin: +"Disney's Aladdin": files: - /SOUND.CFG: + "/SOUND.CFG": tags: - config when: @@ -149773,12 +150221,12 @@ Disney's Aladdin: gog: id: 1364995551 installDir: - Disney's Aladdin: {} + "Disney's Aladdin": {} steam: id: 561100 -Disney's Chicken Little: +"Disney's Chicken Little": files: - /Buena Vista Games/Chicken Little: + "/Buena Vista Games/Chicken Little": tags: - config - save @@ -149787,19 +150235,19 @@ Disney's Chicken Little: installDir: Chicken Little: {} launch: - /Launcher.exe: + "/Launcher.exe": - when: - store: steam steam: id: 339040 -'Disney''s Chicken Little: Ace in Action': +"Disney's Chicken Little: Ace in Action": files: - /Disney Interactive Studios/Chicken Little 2: + "/Disney Interactive Studios/Chicken Little 2": tags: - config when: - os: windows - /Disney Interactive Studios/Chicken Little 2/SaveGames: + "/Disney Interactive Studios/Chicken Little 2/SaveGames": tags: - save when: @@ -149807,26 +150255,26 @@ Disney's Chicken Little: installDir: Chicken Little Ace in Action: {} launch: - /Launcher.exe: + "/Launcher.exe": - when: - store: steam steam: id: 338300 -Disney's Dinosaur: +"Disney's Dinosaur": files: - /Gamedata/SaveGame: + "/Gamedata/SaveGame": tags: - save when: - os: windows - /UbiSoft/ubi.ini: + "/UbiSoft/ubi.ini": tags: - config when: - os: windows -Disney's Hercules: +"Disney's Hercules": files: - /DISNEY.INI: + "/DISNEY.INI": tags: - config when: @@ -149836,7 +150284,7 @@ Disney's Hercules: installDir: Disney Hercules Action Game: {} launch: - /hercules.exe: + "/hercules.exe": - when: - os: windows store: steam @@ -149848,24 +150296,24 @@ Disney's Hercules: id: 987400 Disneyland Adventures: files: - /userdata//630610/remote: + "/userdata//630610/remote": tags: - save when: - store: steam - /Packages/Microsoft.DisneylandAdventures_8wekyb3d8bbwe/LocalState: + "/Packages/Microsoft.DisneylandAdventures_8wekyb3d8bbwe/LocalState": tags: - config when: - os: windows store: microsoft - /Packages/Microsoft.DisneylandAdventures_8wekyb3d8bbwe/Settings/settings.dat: + "/Packages/Microsoft.DisneylandAdventures_8wekyb3d8bbwe/Settings/settings.dat": tags: - config when: - os: windows store: microsoft - /Packages/Microsoft.DisneylandAdventures_8wekyb3d8bbwe/SystemAppData/wgs: + "/Packages/Microsoft.DisneylandAdventures_8wekyb3d8bbwe/SystemAppData/wgs": tags: - save when: @@ -149874,7 +150322,7 @@ Disneyland Adventures: installDir: Disneyland Adventures: {} launch: - /Disney.exe: + "/Disney.exe": - when: - bit: 64 os: windows @@ -149885,33 +150333,33 @@ Disobedient Sheep: installDir: Disobedient Sheep: {} launch: - /Disobedient Sheep.exe: + "/Disobedient Sheep.exe": - when: - os: windows store: steam - /disobedientSheep.app: + "/disobedientSheep.app": - when: - os: mac store: steam - /disobedientSheep.x86_64: + "/disobedientSheep.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 1035530 -'Disobey: Revolt Simulator': +"Disobey: Revolt Simulator": steam: id: 461190 Disorder: installDir: Disorder: {} launch: - /Disorder.app: + "/Disorder.app": - when: - os: mac store: steam - /Disorder.exe: + "/Disorder.exe": - when: - os: windows store: steam @@ -149919,7 +150367,7 @@ Disorder: id: 322080 Disoriented: files: - /Disoriented_Data/. Saves: + "/Disoriented_Data/. Saves": tags: - save when: @@ -149927,7 +150375,7 @@ Disoriented: installDir: Disoriented: {} launch: - /Disoriented.exe: + "/Disoriented.exe": - when: - os: windows store: steam @@ -149941,7 +150389,7 @@ Disparity: installDir: Disparity: {} launch: - /Disparity.exe: + "/Disparity.exe": - when: - os: windows store: steam @@ -149952,30 +150400,32 @@ Dispatch: id: 1208740 Dispatcher: files: - /Disp1/Saved/SaveGames: + "/Disp1/Saved/SaveGames": tags: - save when: - os: windows - /Disp1/Saved/SaveGames/GS.sav: + "/Disp1/Saved/SaveGames/GS.sav": tags: - config when: - os: windows steam: id: 341980 -'Dispatcher: Revoke': +"Dispatcher: Revoke": steam: id: 341980 Dispersio: installDir: Dispersio: {} launch: - /dispersio: + "/dispersio": - when: + - os: mac + store: steam - os: linux store: steam - /dispersio.exe: + "/dispersio.exe": - when: - os: windows store: steam @@ -149985,7 +150435,7 @@ Displace: installDir: content: {} launch: - /Displace v1.0.0/WindowsNoEditor/Displace.exe: + "/Displace v1.0.0/WindowsNoEditor/Displace.exe": - when: - bit: 64 os: windows @@ -149996,11 +150446,11 @@ Displaced: installDir: Displaced: {} launch: - /Displaced.app: + "/Displaced.app": - when: - os: mac store: steam - /Displaced.exe: + "/Displaced.exe": - when: - os: windows store: steam @@ -150010,7 +150460,7 @@ Displacement Arcade Game Box: installDir: Displacement Arcade Game Box: {} launch: - /Menu.exe: + "/Menu.exe": - when: - os: windows store: steam @@ -150020,7 +150470,7 @@ Disposable Heroes: installDir: Disposable Heroes Content: {} launch: - /Disposableheroes_4.6.exe: + "/Disposableheroes_4.6.exe": - when: - os: windows store: steam @@ -150030,16 +150480,16 @@ Disputed Space: installDir: Disputed Space: {} launch: - /Contents/MacOS/DisputedSpace: + "/Contents/MacOS/DisputedSpace": - when: - os: mac store: steam - /DisputedSpace.exe: + "/DisputedSpace.exe": - when: - bit: 64 os: windows store: steam - /DisputedSpace.x86_64: + "/DisputedSpace.x86_64": - when: - bit: 64 os: linux @@ -150050,11 +150500,13 @@ Dissembler: installDir: Dissembler: {} launch: - /Dissembler: + "/Dissembler": - when: - os: mac store: steam - /Dissembler.exe: + - os: linux + store: steam + "/Dissembler.exe": - when: - os: windows store: steam @@ -150067,14 +150519,14 @@ Dissent: installDir: Dissent: {} launch: - /Dissent-1.0-pc/Dissent-32.exe: + "/Dissent-1.0-pc/Dissent-32.exe": - when: - store: steam steam: id: 1979210 Dissidia Final Fantasy NT: files: - /My Games/DISSIDIA FINAL FANTASY NT Free Edition/Steam/: + "/My Games/DISSIDIA FINAL FANTASY NT Free Edition/Steam/": tags: - save when: @@ -150082,7 +150534,7 @@ Dissidia Final Fantasy NT: installDir: DISSIDIA FINAL FANTASY NT Free Edition: {} launch: - /dffnt.exe: + "/dffnt.exe": - when: - bit: 64 os: windows @@ -150093,7 +150545,7 @@ Dissimilated Land: installDir: Dissimilated_Land: {} launch: - /mx01.exe: + "/mx01.exe": - when: - store: steam steam: @@ -150102,7 +150554,7 @@ Dissimilation: installDir: Dissimilation: {} launch: - /Dissimilation.exe: + "/Dissimilation.exe": - when: - os: windows store: steam @@ -150112,7 +150564,7 @@ Dissolution: installDir: Dissolution: {} launch: - /Dissolution.exe: + "/Dissolution.exe": - when: - bit: 64 os: windows @@ -150123,25 +150575,25 @@ Dissolving: installDir: Dissolving: {} launch: - /Dissolving.exe: + "/Dissolving.exe": - when: - os: windows store: steam steam: id: 1077230 -'Dissonance: An Interactive Novelette': +"Dissonance: An Interactive Novelette": installDir: Dissonance_Novelette: {} launch: - /Linux/dissonance: + "/Linux/dissonance": - when: - os: linux store: steam - /Mac/Dissonance.app: + "/Mac/Dissonance.app": - when: - os: mac store: steam - /Windows/dissonance.exe: + "/Windows/dissonance.exe": - when: - os: windows store: steam @@ -150149,42 +150601,42 @@ Dissolving: id: 421620 Distance: files: - /.config/refract/Distance: + "/.config/refract/Distance": tags: - config when: - os: linux - /.config/refract/Distance/Profiles: + "/.config/refract/Distance/Profiles": tags: - save when: - os: linux - /.config/unity3d/Refract/Distance: + "/.config/unity3d/Refract/Distance": tags: - config when: - os: linux - /Library/Application Support/Refract/Distance: + "/Library/Application Support/Refract/Distance": tags: - config when: - os: mac - /Library/Application Support/Refract/Distance/Profiles: + "/Library/Application Support/Refract/Distance/Profiles": tags: - save when: - os: mac - /My Games/Distance/GameData.xml: + "/My Games/Distance/GameData.xml": tags: - config when: - os: windows - /My Games/Distance/Profiles: + "/My Games/Distance/Profiles": tags: - save when: - os: windows - /My Games/Distance/Settings: + "/My Games/Distance/Settings": tags: - config when: @@ -150192,16 +150644,16 @@ Distance: installDir: Distance: {} launch: - /Distance: + "/Distance": - when: - os: linux store: steam - /Distance.app: + "/Distance.app": - when: - os: mac store: steam - /Distance.exe: - - arguments: '-vrmode none' + "/Distance.exe": + - arguments: "-vrmode none" when: - os: windows store: steam @@ -150211,7 +150663,7 @@ Distant Castle: installDir: Distant castle: {} launch: - /GAME.exe: + "/GAME.exe": - when: - bit: 64 os: windows @@ -150224,8 +150676,8 @@ Distant Kingdoms: installDir: Distant Kingdoms: {} launch: - /Distant Kingdoms.exe: - - arguments: '-force-d3d11 ' + "/Distant Kingdoms.exe": + - arguments: "-force-d3d11 " when: - os: windows store: steam @@ -150240,7 +150692,7 @@ Distant Space: installDir: Space Distant: {} launch: - /Distant_Space.exe: + "/Distant_Space.exe": - when: - os: windows store: steam @@ -150250,26 +150702,26 @@ Distant Space 2: installDir: Distant Space 2: {} launch: - /DistantSpace.exe: + "/DistantSpace.exe": - when: - os: windows store: steam steam: id: 729460 -'Distant Star: Revenant Fleet': +"Distant Star: Revenant Fleet": installDir: Distant Star Revenant Fleet: {} launch: - /Distant Star.app/Contents/MacOS/Distant Star: + "/Distant Star.app/Contents/MacOS/Distant Star": - when: - os: mac store: steam - /Distant Star.exe: - - arguments: '-popupwindow' + "/Distant Star.exe": + - arguments: "-popupwindow" when: - os: windows store: steam - /Distant Star.x86: + "/Distant Star.x86": - when: - os: linux store: steam @@ -150277,7 +150729,7 @@ Distant Space 2: id: 335830 Distant Worlds 2: files: - /data/SavedGames: + "/data/SavedGames": tags: - save when: @@ -150287,24 +150739,24 @@ Distant Worlds 2: installDir: Distant Worlds 2: {} launch: - /Launcher.exe: + "/Launcher.exe": - when: - store: steam steam: id: 1531540 -'Distant Worlds: Universe': +"Distant Worlds: Universe": files: - /Startup.ini: + "/Startup.ini": tags: - config when: - os: windows - /My Games/Distant Worlds Universe: + "/My Games/Distant Worlds Universe": tags: - config when: - os: windows - /My Games/Distant Worlds Universe/SavedGames: + "/My Games/Distant Worlds Universe/SavedGames": tags: - save when: @@ -150314,7 +150766,7 @@ Distant Worlds 2: installDir: Distant Worlds Universe: {} launch: - /autorun.exe: + "/autorun.exe": - when: - os: windows store: steam @@ -150324,7 +150776,7 @@ Distorted Illusions: installDir: DistortedIllusions: {} launch: - /DistortedIllusions.exe: + "/DistortedIllusions.exe": - when: - bit: 64 os: windows @@ -150335,7 +150787,7 @@ Distorted Reality: installDir: Distorted Reality: {} launch: - /DR/DR.exe: + "/DR/DR.exe": - when: - bit: 64 os: windows @@ -150346,7 +150798,7 @@ Distortions: installDir: Distortions: {} launch: - /DistortionsGame.exe: + "/DistortionsGame.exe": - when: - os: windows store: steam @@ -150354,12 +150806,12 @@ Distortions: id: 772500 Distraint: files: - /distraint/savedata.ini: + "/distraint/savedata.ini": tags: - save when: - os: windows - /distraint/settings.ini: + "/distraint/settings.ini": tags: - config when: @@ -150369,7 +150821,7 @@ Distraint: installDir: DISTRAINT: {} launch: - /distraint.exe: + "/distraint.exe": - when: - os: windows store: steam @@ -150377,12 +150829,12 @@ Distraint: id: 395170 Distraint 2: files: - /distraint2/savedata.ini: + "/distraint2/savedata.ini": tags: - save when: - os: windows - /distraint2/settings.ini: + "/distraint2/settings.ini": tags: - config when: @@ -150392,43 +150844,43 @@ Distraint 2: installDir: DISTRAINT 2: {} launch: - /distraint2.exe: + "/distraint2.exe": - when: - os: windows store: steam steam: id: 743390 -'Distress: A Choice-Driven Sci-Fi Adventure': +"Distress: A Choice-Driven Sci-Fi Adventure": installDir: Distress A Choice-Driven Sci-Fi Adventure: {} launch: - /Distress.app: + "/Distress.app": - when: - os: mac store: steam - /Distress.exe: + "/Distress.exe": - when: - os: windows store: steam - /Distress.sh: + "/Distress.sh": - when: - os: linux store: steam steam: id: 960550 -'District 112 Incident: Bowling Alley': +"District 112 Incident: Bowling Alley": installDir: District 112 Incident: {} launch: - /District112Incident.app/Contents/MacOS/District112Incident: + "/District112Incident.app/Contents/MacOS/District112Incident": - when: - os: mac store: steam - /District112Incident.exe: + "/District112Incident.exe": - when: - os: windows store: steam - /District112Incident.x86: + "/District112Incident.x86": - when: - os: linux store: steam @@ -150441,14 +150893,14 @@ District Steel: id: 616820 District Wars: files: - /settings.txt: + "/settings.txt": tags: - config when: - os: windows Distrust: files: - /AppData/LocalLow/Alawar/Distrust: + "/AppData/LocalLow/Alawar/Distrust": tags: - save when: @@ -150458,11 +150910,11 @@ Distrust: installDir: Distrust: {} launch: - /Distrust.app: + "/Distrust.app": - when: - os: mac store: steam - /Distrust.exe: + "/Distrust.exe": - when: - os: windows store: steam @@ -150474,22 +150926,22 @@ Distrust: id: 635200 Disturbed: files: - /.renpy/Disturbed-1463875248/*.save: + "/.renpy/Disturbed-1463875248/*.save": tags: - save when: - os: linux - /.renpy/Disturbed-1463875248/persistent: + "/.renpy/Disturbed-1463875248/persistent": tags: - config when: - os: linux - /RenPy/Disturbed-1463875248/*.save: + "/RenPy/Disturbed-1463875248/*.save": tags: - save when: - os: windows - /RenPy/Disturbed-1463875248/persistent: + "/RenPy/Disturbed-1463875248/persistent": tags: - config when: @@ -150497,33 +150949,33 @@ Disturbed: installDir: Disturbed: {} launch: - /Disturbed.app: + "/Disturbed.app": - when: - os: mac store: steam - /Disturbed.exe: + "/Disturbed.exe": - when: - os: windows store: steam - /Disturbed.sh: + "/Disturbed.sh": - when: - os: linux store: steam steam: id: 529780 -'Disturbed: Beyond Aramor': +"Disturbed: Beyond Aramor": installDir: Disturbed Beyond Aramor: {} launch: - /Disturbed_Beyond_Aramor.app: + "/Disturbed_Beyond_Aramor.app": - when: - os: mac store: steam - /Disturbed_Beyond_Aramor.exe: + "/Disturbed_Beyond_Aramor.exe": - when: - os: windows store: steam - /Disturbed_Beyond_Aramor.sh: + "/Disturbed_Beyond_Aramor.sh": - when: - os: linux store: steam @@ -150536,7 +150988,7 @@ Dithered: installDir: Dithered: {} launch: - /Dithered: + "/Dithered": - when: - bit: 64 os: windows @@ -150545,9 +150997,9 @@ Dithered: id: 1116530 Divan Chronicles: installDir: - ' Убогое Издание': {} + " Убогое Издание": {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -150557,7 +151009,7 @@ Dive: installDir: Dive: {} launch: - /Dive.exe: + "/Dive.exe": - when: - store: steam steam: @@ -150566,7 +151018,7 @@ Dive (Deothic): installDir: _dive: {} launch: - /_dive.exe: + "/_dive.exe": - when: - store: steam steam: @@ -150575,7 +151027,7 @@ Dive Inside: installDir: Dive Inside: {} launch: - /DiveInside.exe: + "/DiveInside.exe": - when: - os: windows store: steam @@ -150585,7 +151037,7 @@ Dive to the Titanic: installDir: Dive to the Titanic: {} launch: - /Titanic.exe: + "/Titanic.exe": - when: - store: steam steam: @@ -150595,16 +151047,16 @@ Dive with Sylvia VR: DiveWithSylviaVR: {} steam: id: 1080370 -'Dive: Starpath': +"Dive: Starpath": installDir: DIVE Starpath: {} launch: - /dive.exe: + "/dive.exe": - when: - bit: 64 os: windows store: steam - /dive_mac_steam.app: + "/dive_mac_steam.app": - when: - os: mac store: steam @@ -150614,7 +151066,7 @@ DiveReal: installDir: DiveReal: {} launch: - /_data/DiveReal3D/DiveReal3D.exe: + "/_data/DiveReal3D/DiveReal3D.exe": - when: - bit: 64 os: windows @@ -150623,12 +151075,12 @@ DiveReal: id: 865200 Divekick: files: - /GraphicsOptions.xml: + "/GraphicsOptions.xml": tags: - config when: - os: windows - /userdata//244730/remote/divekick/profilesave.sav: + "/userdata//244730/remote/divekick/profilesave.sav": tags: - save when: @@ -150637,7 +151089,7 @@ Divekick: installDir: Divekick: {} launch: - /DivekickD3D11.exe: + "/DivekickD3D11.exe": - when: - os: windows store: steam @@ -150645,7 +151097,7 @@ Divekick: id: 244730 Divenia: files: - /Divenia/Saved/Config/WindowsNoEditor: + "/Divenia/Saved/Config/WindowsNoEditor": tags: - config when: @@ -150653,7 +151105,7 @@ Divenia: installDir: Divenia: {} launch: - /Divenia.exe: + "/Divenia.exe": - when: - store: steam steam: @@ -150662,11 +151114,11 @@ Diver - Sea Survival Simulator: installDir: DIVER - SEA SURVIVAL SIMULATOR: {} launch: - /diverOSX_x86-64.app: + "/diverOSX_x86-64.app": - when: - os: mac store: steam - /diverWin.exe: + "/diverWin.exe": - when: - os: windows store: steam @@ -150674,32 +151126,32 @@ Diver - Sea Survival Simulator: id: 681760 Diver Down: files: - /USER.cfg: + "/USER.cfg": tags: - config when: - os: dos - /winv2.cfg: + "/winv2.cfg": tags: - config when: - os: windows -'Divergence: Online': +"Divergence: Online": installDir: Divergence Online: {} launch: - /Divergence Online.exe: + "/Divergence Online.exe": - when: - bit: 64 os: windows store: steam steam: id: 422940 -'Divergence: Year Zero': +"Divergence: Year Zero": installDir: Divergence Year Zero: {} launch: - /Divergence Year Zero.exe: + "/Divergence Year Zero.exe": - when: - bit: 64 os: windows @@ -150710,7 +151162,7 @@ Divide: installDir: Divide: {} launch: - /Divide_PC.exe: + "/Divide_PC.exe": - when: - os: windows store: steam @@ -150720,11 +151172,11 @@ Divide & Conquer: installDir: Divide & Conquer: {} launch: - /Divide&Conquer.exe: + "/Divide&Conquer.exe": - when: - os: windows store: steam - /DivideConquerMac.app/Contents/MacOS/DivideConquerMac: + "/DivideConquerMac.app/Contents/MacOS/DivideConquerMac": - when: - os: mac store: steam @@ -150732,7 +151184,7 @@ Divide & Conquer: id: 717240 Divide By Sheep: files: - /Dividebysheep/Local Store: + "/Dividebysheep/Local Store": tags: - save when: @@ -150740,11 +151192,11 @@ Divide By Sheep: installDir: Divide by sheep: {} launch: - /Dividebysheep.exe: + "/Dividebysheep.exe": - when: - os: windows store: steam - /dividebysheep.app: + "/dividebysheep.app": - when: - os: mac store: steam @@ -150752,12 +151204,12 @@ Divide By Sheep: id: 252130 Divided Reigns: files: - /save/*.rpgsave: + "/save/*.rpgsave": tags: - save when: - os: windows - /www/save/*.rpgsave: + "/www/save/*.rpgsave": tags: - save when: @@ -150765,8 +151217,8 @@ Divided Reigns: installDir: Divided Reigns: {} launch: - /Game.exe: - - arguments: '--in-process-gpu' + "/Game.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam @@ -150776,25 +151228,25 @@ Divided We Fall: installDir: Divided We Fall: {} launch: - /lobby.app: + "/lobby.app": - when: - os: mac store: steam - /lobby/DividedWeFall: + "/lobby/DividedWeFall": - when: - os: linux store: steam - /lobby/DividedWeFall.exe: + "/lobby/DividedWeFall.exe": - when: - os: windows store: steam steam: id: 495580 -'Divided: Soul Theft': +"Divided: Soul Theft": installDir: Divided Soul Theft: {} launch: - /Divided Soul Theft.exe: + "/Divided Soul Theft.exe": - when: - os: windows store: steam @@ -150804,11 +151256,11 @@ Divination: installDir: Divination: {} launch: - /DIVINATION.app: + "/DIVINATION.app": - when: - os: mac store: steam - /DIVINATION.exe: + "/DIVINATION.exe": - when: - os: windows store: steam @@ -150818,17 +151270,17 @@ Divine Ascent: installDir: Divine Ascent: {} launch: - /Divine Ascent.exe: + "/Divine Ascent.exe": - when: - os: windows store: steam steam: id: 606300 -'Divine Business: Fantasy Trading Simulator': +"Divine Business: Fantasy Trading Simulator": installDir: Divine Business Fantasy Trading Simulator: {} launch: - /DivineBusiness.exe: + "/DivineBusiness.exe": - when: - os: windows store: steam @@ -150841,15 +151293,15 @@ Divine D.I.V.A.: installDir: Divine Diva: {} launch: - /DivineDiva/DivineDiva.app: + "/DivineDiva/DivineDiva.app": - when: - os: mac store: steam - /DivineDiva/DivineDiva.exe: + "/DivineDiva/DivineDiva.exe": - when: - os: windows store: steam - /DivineDiva/DivineDiva.sh: + "/DivineDiva/DivineDiva.sh": - when: - os: linux store: steam @@ -150857,17 +151309,17 @@ Divine D.I.V.A.: id: 1064930 Divine Divinity: files: - /config.div: + "/config.div": tags: - config when: - os: windows - /savegames: + "/savegames": tags: - save when: - os: windows - /Library/Application Support/GOG.com/Divine Divinity⁩/savegames⁩: + "/Library/Application Support/GOG.com/Divine Divinity⁩/savegames⁩": tags: - save when: @@ -150877,11 +151329,11 @@ Divine Divinity: installDir: divine_divinity: {} launch: - /configtool.exe: + "/configtool.exe": - when: - os: windows store: steam - /div.exe: + "/div.exe": - when: - os: windows store: steam @@ -150895,10 +151347,8 @@ Divine Knockout: installDir: Divine Knockout: {} launch: - /DivineKnockout.exe: - - arguments: >- - -hirezenv=RETAIL -homedir=DivineKnockout -oss=Steam - -servicediscoveryurl=xhttps://api.divineknockout.com/config/v1/discovery + "/DivineKnockout.exe": + - arguments: "-hirezenv=RETAIL -homedir=DivineKnockout -oss=Steam -servicediscoveryurl=xhttps://api.divineknockout.com/config/v1/discovery" when: - os: windows store: steam @@ -150910,7 +151360,7 @@ Divine Miko Koyori: installDir: Divine Miko Koyori: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: @@ -150919,24 +151369,24 @@ Divine Miracle Defense: installDir: Divine Miracle Defense: {} launch: - /DMD.exe: + "/DMD.exe": - when: - store: steam steam: id: 904770 Divine Slice of Life: files: - /game/saves: + "/game/saves": tags: - save when: - os: windows - /renpy/config.py: + "/renpy/config.py": tags: - config when: - os: windows - /renpy/divineslice: + "/renpy/divineslice": tags: - save when: @@ -150944,15 +151394,15 @@ Divine Slice of Life: installDir: Divine Slice of Life: {} launch: - /Divine Slice of Life.app: + "/Divine Slice of Life.app": - when: - os: mac store: steam - /Divine Slice of Life.exe: + "/Divine Slice of Life.exe": - when: - os: windows store: steam - /Divine Slice of Life.sh: + "/Divine Slice of Life.sh": - when: - os: linux store: steam @@ -150962,7 +151412,7 @@ Divine Souls: installDir: Divine Souls: {} launch: - /client.exe: + "/client.exe": - arguments: true USESTEAM when: - os: windows @@ -150973,15 +151423,15 @@ Diving Trunks: installDir: Diving Trunks: {} launch: - /DivingTrunks.exe: + "/DivingTrunks.exe": - when: - os: windows store: steam steam: id: 660040 -'Divinia Chronicles: Relics of Gan-Ti': +"Divinia Chronicles: Relics of Gan-Ti": files: - /divchronicles/cfg: + "/divchronicles/cfg": tags: - config when: @@ -150989,22 +151439,22 @@ Diving Trunks: installDir: DiviniaChronicles: {} launch: - /sdk/hl2.exe: - - arguments: '-game ..//divchronicles' + "/sdk/hl2.exe": + - arguments: "-game ..//divchronicles" when: - bit: 32 os: windows store: steam steam: id: 302810 -'Divinity II: Developer''s Cut': +"Divinity II: Developer's Cut": files: - /Divinity 2/Profile: + "/Divinity 2/Profile": tags: - config when: - os: windows - /Divinity 2/Savegames: + "/Divinity 2/Savegames": tags: - save when: @@ -151018,20 +151468,20 @@ Diving Trunks: installDir: divinity2_dev_cut: {} launch: - /Autorun.exe: + "/Autorun.exe": - when: - os: windows store: steam steam: id: 219780 -'Divinity: Dragon Commander': +"Divinity: Dragon Commander": files: - /Larian Studios/Dragon Commander: + "/Larian Studios/Dragon Commander": tags: - config when: - os: windows - /Larian Studios/Dragon Commander/Savegames: + "/Larian Studios/Dragon Commander/Savegames": tags: - save when: @@ -151047,26 +151497,26 @@ Diving Trunks: installDir: Divinity Dragon Commander: {} launch: - /Shipping/DCApp.exe: + "/Shipping/DCApp.exe": - when: - os: windows store: steam - workingDir: /Shipping + workingDir: "/Shipping" steam: id: 243950 -'Divinity: Original Sin': +"Divinity: Original Sin": files: - /Documents/Larian Studios/Divinity Original Sin/PlayerProfiles//Savegames: + "/Documents/Larian Studios/Divinity Original Sin/PlayerProfiles//Savegames": tags: - save when: - os: mac - /Larian Studios/Divinity Original Sin: + "/Larian Studios/Divinity Original Sin": tags: - config when: - os: windows - /Larian Studios/Divinity Original Sin/PlayerProfiles//Savegames: + "/Larian Studios/Divinity Original Sin/PlayerProfiles//Savegames": tags: - save when: @@ -151076,26 +151526,26 @@ Diving Trunks: installDir: Divinity - Original Sin: {} launch: - /Divinity - Original Sin.app: + "/Divinity - Original Sin.app": - when: - os: mac store: steam - /Shipping/EoCApp.exe: + "/Shipping/EoCApp.exe": - when: - os: windows store: steam - workingDir: /Shipping + workingDir: "/Shipping" steam: id: 230230 -'Divinity: Original Sin - Enhanced Edition': +"Divinity: Original Sin - Enhanced Edition": files: - /Larian Studios/Divinity Original Sin Enhanced Edition: + "/Larian Studios/Divinity Original Sin Enhanced Edition": tags: - config - save when: - os: linux - /Larian Studios/Divinity Original Sin Enhanced Edition/PlayerProfiles: + "/Larian Studios/Divinity Original Sin Enhanced Edition/PlayerProfiles": tags: - config - save @@ -151109,31 +151559,31 @@ Diving Trunks: installDir: Divinity Original Sin Enhanced Edition: {} launch: - /Divinity - Original Sin.app: + "/Divinity - Original Sin.app": - when: - bit: 64 os: mac store: steam - /Shipping/EoCApp.exe: + "/Shipping/EoCApp.exe": - when: - os: windows store: steam - workingDir: /Shipping - /runner.sh: + workingDir: "/Shipping" + "/runner.sh": - when: - bit: 64 os: linux store: steam steam: id: 373420 -'Divinity: Original Sin II': +"Divinity: Original Sin II": files: - /Larian Studios/Divinity Original Sin 2: + "/Larian Studios/Divinity Original Sin 2": tags: - config when: - os: windows - /Larian Studios/Divinity Original Sin 2/PlayerProfiles//Savegames: + "/Larian Studios/Divinity Original Sin 2/PlayerProfiles//Savegames": tags: - save when: @@ -151148,35 +151598,35 @@ Diving Trunks: installDir: Divinity Original Sin 2: {} launch: - /Divinity - Original Sin 2.app: + "/Divinity - Original Sin 2.app": - when: - os: mac store: steam - /bin/SupportTool.exe: + "/bin/SupportTool.exe": - when: - os: windows store: steam - workingDir: /bin + workingDir: "/bin" steam: id: 435150 -'Divinity: Original Sin II - Definitive Edition': +"Divinity: Original Sin II - Definitive Edition": files: - /Documents/Larian Studios/Divinity Original Sin 2 Definitive Edition/PlayerProfiles//Savegames: + "/Documents/Larian Studios/Divinity Original Sin 2 Definitive Edition/PlayerProfiles//Savegames": tags: - save when: - os: mac - /Larian Studios/Divinity Original Sin 2 Definitive Edition/PlayerProfiles/: + "/Larian Studios/Divinity Original Sin 2 Definitive Edition/PlayerProfiles/": tags: - config when: - os: windows - /Larian Studios/Divinity Original Sin 2 Definitive Edition/PlayerProfiles//Savegames: + "/Larian Studios/Divinity Original Sin 2 Definitive Edition/PlayerProfiles//Savegames": tags: - save when: - os: windows - /Larian Studios/Divinity Original Sin 2 Definitive Edition/graphicSettings.lsx: + "/Larian Studios/Divinity Original Sin 2 Definitive Edition/graphicSettings.lsx": tags: - config when: @@ -151191,20 +151641,20 @@ Diving Trunks: installDir: Divinity Original Sin 2: {} launch: - /Divinity - Original Sin 2.app: + "/Divinity - Original Sin 2.app": - when: - os: mac store: steam - /bin/SupportTool.exe: + "/bin/SupportTool.exe": - when: - os: windows store: steam - workingDir: /bin + workingDir: "/bin" steam: id: 435150 Divinoids: files: - /AppData/LocalLow/Weltall Zero/Divinoids/saveGame.sav: + "/AppData/LocalLow/Weltall Zero/Divinoids/saveGame.sav": tags: - save when: @@ -151222,15 +151672,15 @@ Divo: installDir: DIVO: {} launch: - /DIVO.exe: + "/DIVO.exe": - when: - os: windows store: steam - /DIVO_lnx.x86: + "/DIVO_lnx.x86": - when: - os: linux store: steam - /DIVO_lnx.x86_64: + "/DIVO_lnx.x86_64": - when: - os: linux store: steam @@ -151240,7 +151690,7 @@ DiyMachinery: installDir: DiyMachinery: {} launch: - /DiyMachinery.exe: + "/DiyMachinery.exe": - when: - os: windows store: steam @@ -151250,11 +151700,11 @@ Dizzy Dungeon: installDir: Dizzy Dungeon: {} launch: - /DizzyDungeon.app/Contents/MacOS/DizzyDungeon: + "/DizzyDungeon.app/Contents/MacOS/DizzyDungeon": - when: - os: mac store: steam - /DizzyDungeon.exe: + "/DizzyDungeon.exe": - when: - os: windows store: steam @@ -151264,11 +151714,11 @@ Dizzy Hearts: installDir: Dizzy Hearts: {} launch: - /DizzyHearts.exe: + "/DizzyHearts.exe": - when: - os: windows store: steam - /DizzyHearts.sh: + "/DizzyHearts.sh": - when: - os: linux store: steam @@ -151278,26 +151728,26 @@ Djilyaro: installDir: Djilyaro: {} launch: - /Djilyaro.exe: + "/Djilyaro.exe": - when: - os: windows store: steam steam: id: 740320 -'DmC: Devil May Cry': +"DmC: Devil May Cry": files: - /userdata//220440/remote: + "/userdata//220440/remote": tags: - save when: - os: windows store: steam - /My Games/UnrealEngine3/DevilGame/*.ini: + "/My Games/UnrealEngine3/DevilGame/*.ini": tags: - config when: - os: windows - /My Games/UnrealEngine3/DevilGame/Config: + "/My Games/UnrealEngine3/DevilGame/Config": tags: - config when: @@ -151311,7 +151761,7 @@ Djilyaro: installDir: DmC Devil May Cry: {} launch: - /Binaries/Win32/DMC-DevilMayCry.exe: + "/Binaries/Win32/DMC-DevilMayCry.exe": - when: - store: steam steam: @@ -151320,34 +151770,34 @@ Do Not Fall: installDir: Do Not Fall: {} launch: - /Launcher.exe: + "/Launcher.exe": - when: - store: steam steam: id: 333130 Do Not Feed the Monkeys: files: - /AppData/LocalLow/Fictiorama Studios/Do not feed the monkeys: + "/AppData/LocalLow/Fictiorama Studios/Do not feed the monkeys": tags: - save when: - os: windows - /Library/Application Support/unity.Fictiorama Studios.Do not feed the monkeys: + "/Library/Application Support/unity.Fictiorama Studios.Do not feed the monkeys": tags: - save when: - os: mac - /Library/Preferences/unity.Fictiorama Studios.Do not feed the monkeys.plist: + "/Library/Preferences/unity.Fictiorama Studios.Do not feed the monkeys.plist": tags: - config when: - os: mac - /unity3d/Fictiorama Studios/Do not feed the monkeys: + "/unity3d/Fictiorama Studios/Do not feed the monkeys": tags: - save when: - os: linux - /unity3d/Fictiorama Studios/Do not feed the monkeys/prefs: + "/unity3d/Fictiorama Studios/Do not feed the monkeys/prefs": tags: - config when: @@ -151357,21 +151807,21 @@ Do Not Feed the Monkeys: installDir: DNFTM: {} launch: - /dnftm.exe: + "/dnftm.exe": - when: - os: windows store: steam - /dnftm.x86: + "/dnftm.x86": - when: - bit: 32 os: linux store: steam - /dnftm.x86_64: + "/dnftm.x86_64": - when: - bit: 64 os: linux store: steam - /dnftm_mac.app: + "/dnftm_mac.app": - when: - os: mac store: steam @@ -151395,15 +151845,15 @@ DoC God Mode Edition: installDir: DoC God Mode Edition: {} launch: - /DoCGodMode.app: + "/DoCGodMode.app": - when: - os: mac store: steam - /DoCGodMode.exe: + "/DoCGodMode.exe": - when: - os: windows store: steam - /DoCGodMode.x86: + "/DoCGodMode.x86": - when: - os: linux store: steam @@ -151413,7 +151863,7 @@ DoDonPachi DaiOuJou DX: installDir: GmodeArchivesPlus_DodonpachiDX: {} launch: - /DodonpachiDX.exe: + "/DodonpachiDX.exe": - when: - store: steam steam: @@ -151422,7 +151872,7 @@ DoDonPachi Resurrection: installDir: DoDonPachi Resurrection: {} launch: - /default.exe: + "/default.exe": - when: - store: steam steam: @@ -151431,7 +151881,7 @@ DoVille: installDir: DoVille: {} launch: - /DoVille.exe: + "/DoVille.exe": - when: - bit: 64 os: windows @@ -151442,20 +151892,20 @@ Doc Apocalypse: installDir: Doc Apocalypse: {} launch: - /Doc_Apocalypse.exe: + "/Doc_Apocalypse.exe": - when: - os: windows store: steam steam: id: 509920 -'Doc Clock: The Toasted Sandwich of Time': +"Doc Clock: The Toasted Sandwich of Time": files: - /userdata//57800/local: + "/userdata//57800/local": tags: - save when: - store: steam - /DocClockGame/Settings.txt: + "/DocClockGame/Settings.txt": tags: - config when: @@ -151463,11 +151913,11 @@ Doc Apocalypse: installDir: Doc Clock - The Toasted Sandwich of Time: {} launch: - /Doc Clock - The Toasted Sandwich of Time.app: + "/Doc Clock - The Toasted Sandwich of Time.app": - when: - os: mac store: steam - /Doc Clock.exe: + "/Doc Clock.exe": - when: - os: windows store: steam @@ -151477,22 +151927,22 @@ Doctor Flow: installDir: DoctorFlow: {} launch: - /Doctor Flow.app/Contents/MacOS/Doctor Flow: + "/Doctor Flow.app/Contents/MacOS/Doctor Flow": - when: - os: mac store: steam - /Doctor Flow.exe: + "/Doctor Flow.exe": - when: - os: windows store: steam steam: id: 836700 -Doctor Kvorak's Obliteration Game: +"Doctor Kvorak's Obliteration Game": installDir: - Doctor Kvorak's Obliteration Game: {} + "Doctor Kvorak's Obliteration Game": {} launch: - /ObliterationGame.exe: - - arguments: '-novr' + "/ObliterationGame.exe": + - arguments: "-novr" when: - bit: 64 os: windows @@ -151503,7 +151953,7 @@ Doctor Tsunami: installDir: Doctor Tsunami: {} launch: - /DrTsunami_V97_MasterBuild.exe: + "/DrTsunami_V97_MasterBuild.exe": - when: - os: windows store: steam @@ -151513,7 +151963,7 @@ Doctor Watson - The Riddle of the Catacombs: installDir: Doctor Watson - The Riddle of the Catacombs: {} launch: - /watson2.exe: + "/watson2.exe": - when: - os: windows store: steam @@ -151523,7 +151973,7 @@ Doctor Watson - Treasure Island: installDir: Doctor Watson - Treasure Island: {} launch: - /watson1.exe: + "/watson1.exe": - when: - os: windows store: steam @@ -151533,20 +151983,20 @@ Doctor Who Infinity: installDir: Doctor Who Infinity: {} launch: - /DoctorWhoInfinity.app/Contents/MacOS/DoctorWhoInfinity: + "/DoctorWhoInfinity.app/Contents/MacOS/DoctorWhoInfinity": - when: - os: mac store: steam - /DoctorWhoInfinity.exe: + "/DoctorWhoInfinity.exe": - when: - bit: 64 os: windows store: steam steam: id: 725370 -'Doctor Who: The Adventure Games': +"Doctor Who: The Adventure Games": files: - /Doctor Who: + "/Doctor Who": tags: - config when: @@ -151554,30 +152004,30 @@ Doctor Who Infinity: installDir: Doctor Who The Adventure Games: {} launch: - /DoctorWhoS1.exe: + "/DoctorWhoS1.exe": - when: - os: windows store: steam - workingDir: /Series1 - /DoctorWhoS2.exe: + workingDir: "/Series1" + "/DoctorWhoS2.exe": - when: - os: windows store: steam - workingDir: /Series2 + workingDir: "/Series2" steam: id: 268830 -'Doctor Who: The Edge of Reality': +"Doctor Who: The Edge of Reality": installDir: Doctor Who The Edge of Reality: {} launch: - /DrWhoEOR.exe: + "/DrWhoEOR.exe": - when: - store: steam steam: id: 1444920 -'Doctor Who: The Edge of Time': +"Doctor Who: The Edge of Time": files: - /AppData/LocalLow/Maze Theory/Doctor Who_ The Edge of Time/save0.dat: + "/AppData/LocalLow/Maze Theory/Doctor Who_ The Edge of Time/save0.dat": tags: - save when: @@ -151586,9 +152036,9 @@ Doctor Who Infinity: Doctor Who The Edge Of Time: {} steam: id: 1075400 -'Doctor Who: The Eternity Clock': +"Doctor Who: The Eternity Clock": files: - /My Games/DWTEC/SMG010Game/Config: + "/My Games/DWTEC/SMG010Game/Config": tags: - config when: @@ -151596,25 +152046,25 @@ Doctor Who Infinity: installDir: Doctor Who Eternity Clock: {} launch: - /Binaries/Win32/DWTEC.exe: + "/Binaries/Win32/DWTEC.exe": - when: - store: steam steam: id: 217080 -'Doctor Who: The Lonely Assassins': +"Doctor Who: The Lonely Assassins": gog: id: 1471517695 installDir: Doctor Who Lonely Assassins: {} launch: - /dwla.exe: + "/dwla.exe": - when: - bit: 64 os: windows store: steam steam: id: 1508270 -'Doctor Who: The Runaway': +"Doctor Who: The Runaway": installDir: Doctor Who The Runaway: {} steam: @@ -151623,7 +152073,7 @@ Dodge: installDir: Dodge: {} launch: - /Dodge.exe: + "/Dodge.exe": - when: - os: windows store: steam @@ -151631,7 +152081,7 @@ Dodge: id: 350630 Dodge (2018): files: - /Dodge: + "/Dodge": tags: - save when: @@ -151639,7 +152089,7 @@ Dodge (2018): installDir: Dodge: {} launch: - /Dodge.exe: + "/Dodge.exe": - when: - os: windows store: steam @@ -151649,7 +152099,7 @@ Dodge Bubble: installDir: Dodge Bubble: {} launch: - /DodgeBubble.exe: + "/DodgeBubble.exe": - when: - store: steam steam: @@ -151658,7 +152108,7 @@ Dodge Diego: installDir: Dodge Diego: {} launch: - /Dodge Diego v0.9.3/Dodge Diego.exe: + "/Dodge Diego v0.9.3/Dodge Diego.exe": - when: - os: windows store: steam @@ -151668,7 +152118,7 @@ Dodge Dummy: installDir: Dodge Dummy: {} launch: - /starterFile.exe: + "/starterFile.exe": - when: - bit: 64 os: windows @@ -151679,7 +152129,7 @@ Dodge If you Can!: installDir: Dodge If you Can!: {} launch: - /Dodge If You Can.exe: + "/Dodge If You Can.exe": - when: - os: windows store: steam @@ -151687,7 +152137,7 @@ Dodge If you Can!: id: 1186280 Dodge It! 2: files: - /SavesDir: + "/SavesDir": tags: - save when: @@ -151695,7 +152145,7 @@ Dodge It! 2: installDir: Dodge It! 2: {} launch: - /DodgeIt2.exe: + "/DodgeIt2.exe": - when: - bit: 64 os: windows @@ -151706,7 +152156,7 @@ Dodge Master: installDir: Dodge Master: {} launch: - /Dodge Master Steam.exe: + "/Dodge Master Steam.exe": - when: - os: windows store: steam @@ -151716,7 +152166,7 @@ Dodge Rocket: installDir: Dodge Rocket: {} launch: - /DR.exe: + "/DR.exe": - when: - os: windows store: steam @@ -151726,7 +152176,7 @@ Dodge Show: installDir: DodgeShow: {} launch: - /DodgeShow.exe: + "/DodgeShow.exe": - when: - os: windows store: steam @@ -151736,7 +152186,7 @@ Dodge This!: installDir: DodgeThis: {} launch: - /DT.exe: + "/DT.exe": - when: - store: steam steam: @@ -151750,7 +152200,7 @@ DodgeBall Blitz: installDir: DodgeBall Blitz: {} launch: - /0.3.exe: + "/0.3.exe": - when: - os: windows store: steam @@ -151760,7 +152210,7 @@ Dodgeball: installDir: Dodgeball: {} launch: - /Dodgeball.exe: + "/Dodgeball.exe": - when: - bit: 64 os: windows @@ -151769,12 +152219,13 @@ Dodgeball: id: 657560 Dodgeball Academia: files: - /AppData/LocalLow/PocketTrap/DodgeballAcademia/SaveFileGOG: + "/AppData/LocalLow/PocketTrap/DodgeballAcademia/SaveFileGOG": tags: - save when: - - store: gog - /Packages/HumbleBundle.DodgeballAcademia_q2mcdwmzx4qja/SystemAppData: + - os: windows + store: gog + "/Packages/HumbleBundle.DodgeballAcademia_q2mcdwmzx4qja/SystemAppData": tags: - save when: @@ -151785,7 +152236,7 @@ Dodgeball Academia: installDir: DodgeballAcademia: {} launch: - /DodgeballAcademia.exe: + "/DodgeballAcademia.exe": - when: - store: steam registry: @@ -151810,7 +152261,7 @@ Dodging Fake News With Donald Trump: id: 1084450 Dodo Peak: files: - /DodoPeak.ini: + "/DodoPeak.ini": tags: - config when: @@ -151819,7 +152270,7 @@ Dofus: installDir: Dofus: {} launch: - /transition/transition.exe: + "/transition/transition.exe": - when: - os: windows store: steam @@ -151832,15 +152283,15 @@ Dog Duty: installDir: Dog Duty: {} launch: - /Dog Duty.exe: + "/Dog Duty.exe": - when: - os: windows store: steam - /Game.x86_64: + "/Game.x86_64": - when: - os: linux store: steam - /game.app/Contents/MacOS/game: + "/game.app/Contents/MacOS/game": - when: - os: mac store: steam @@ -151850,16 +152301,16 @@ Dog Fight: installDir: Dog Fight: {} launch: - /DogFight.app: + "/DogFight.app": - when: - os: mac store: steam - /DogFight.exe: + "/DogFight.exe": - when: - bit: 64 os: windows store: steam - /DogFight.sh: + "/DogFight.sh": - when: - os: linux store: steam @@ -151869,8 +152320,8 @@ Dog Fight Super Ultra Deluxe: installDir: DogFightSuperUltraDeluxe: {} launch: - /DogFight.exe: - - arguments: '-output outputlog.txt ' + "/DogFight.exe": + - arguments: "-output outputlog.txt " when: - os: windows store: steam @@ -151878,7 +152329,7 @@ Dog Fight Super Ultra Deluxe: id: 751530 Dog Gone Golfing: files: - /AppData/LocalLow/Dog_Gone_Golfing: + "/AppData/LocalLow/Dog_Gone_Golfing": tags: - save when: @@ -151886,15 +152337,15 @@ Dog Gone Golfing: installDir: DOG GONE GOLFING: {} launch: - /Dog Gone Golfing.app: + "/Dog Gone Golfing.app": - when: - os: mac store: steam - /Dog Gone Golfing.exe: + "/Dog Gone Golfing.exe": - when: - os: windows store: steam - /runner: + "/runner": - when: - os: linux store: steam @@ -151909,7 +152360,7 @@ Dog Jam: installDir: Dog Jam: {} launch: - /Dog Jam.exe: + "/Dog Jam.exe": - when: - os: windows store: steam @@ -151919,15 +152370,15 @@ Dog Sled Saga: installDir: DogSledSaga: {} launch: - /DogSledSaga: + "/DogSledSaga": - when: - os: linux store: steam - /DogSledSaga.app: + "/DogSledSaga.app": - when: - os: mac store: steam - /DogSledSaga.exe: + "/DogSledSaga.exe": - when: - os: windows store: steam @@ -151937,7 +152388,7 @@ Dog Theatre: installDir: Dog Theatre: {} launch: - /DogTheatreBeta2.3.exe: + "/DogTheatreBeta2.3.exe": - when: - os: windows store: steam @@ -151946,11 +152397,11 @@ Dog Theatre: Dog couple: steam: id: 891580 -Dog's Quest: +"Dog's Quest": installDir: - Dog's Quest: {} + "Dog's Quest": {} launch: - /DogsQuest.exe: + "/DogsQuest.exe": - when: - os: windows store: steam @@ -151963,7 +152414,7 @@ DogFighter: installDir: DogFighter: {} launch: - /bin/x86_vc11/DogFighterSteam.exe: + "/bin/x86_vc11/DogFighterSteam.exe": - when: - os: windows store: steam @@ -151976,45 +152427,45 @@ Dogfight 1942: installDir: Dogfight 1942: {} launch: - /Dogfight1942.exe: + "/Dogfight1942.exe": - when: - os: windows store: steam - /Launcher/Dogfight_1942_Launcher.exe: + "/Launcher/Dogfight_1942_Launcher.exe": - when: - os: windows store: steam - workingDir: /Launcher + workingDir: "/Launcher" steam: id: 217790 Dogfight Elite: installDir: Dogfight Elite: {} launch: - /Dogfight Elite.exe: + "/Dogfight Elite.exe": - when: - bit: 64 os: windows store: steam - /DogfightElite.app/Contents/MacOS/Dogfight Elite: + "/DogfightElite.app/Contents/MacOS/Dogfight Elite": - when: - os: mac store: steam steam: id: 480500 -'Dogfight: 80 Years of Aerial Warfare': +"Dogfight: 80 Years of Aerial Warfare": gog: id: 1313679424 installDir: Dogfight 80 Years of Aerial Warfare: {} launch: - /DOSBox/dosbox.app/Contents/MacOS/DOSBox: - - arguments: '-conf dosbox.conf -conf osx.conf -noconsole' + "/DOSBox/dosbox.app/Contents/MacOS/DOSBox": + - arguments: "-conf dosbox.conf -conf osx.conf -noconsole" when: - os: mac store: steam - /dosbox/dosbox.exe: - - arguments: '-conf dosbox.conf -conf win.conf -noconsole' + "/dosbox/dosbox.exe": + - arguments: "-conf dosbox.conf -conf win.conf -noconsole" when: - os: windows store: steam @@ -152024,11 +152475,14 @@ Doggo Dig Down: installDir: Doggo Dig Down: {} launch: - /doggo: + "/doggo": - when: - os: mac store: steam - /doggo.exe: + - bit: 64 + os: linux + store: steam + "/doggo.exe": - when: - os: windows store: steam @@ -152041,11 +152495,11 @@ Dogma: installDir: Dogma: {} launch: - /Dogma.app/Contents/MacOS/Dogma: + "/Dogma.app/Contents/MacOS/Dogma": - when: - os: mac store: steam - /Dogma.exe: + "/Dogma.exe": - when: - os: windows store: steam @@ -152055,7 +152509,7 @@ Dogo: installDir: DOGO: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -152065,7 +152519,7 @@ Dogolrax: installDir: Dogolrax: {} launch: - /Dogolrax.exe: + "/Dogolrax.exe": - when: - os: windows store: steam @@ -152075,7 +152529,7 @@ Dogos: installDir: DOGOS: {} launch: - /dogos.exe: + "/dogos.exe": - when: - bit: 64 os: windows @@ -152086,7 +152540,7 @@ Dogs of Wall Street: installDir: Dogs of Wall Street: {} launch: - /Dogs of Wallstreet.exe: + "/Dogs of Wallstreet.exe": - when: - os: windows store: steam @@ -152096,17 +152550,17 @@ Dogs of War Online: installDir: Dogs of War Online: {} launch: - /DogsOfWar.exe: + "/DogsOfWar.exe": - when: - os: windows store: steam steam: id: 219700 -'Dogs of War: Kill to Survive': +"Dogs of War: Kill to Survive": installDir: Dogs of War Kill to Survive: {} launch: - /Dogs of War Kill to Survive.exe: + "/Dogs of War Kill to Survive.exe": - when: - os: windows store: steam @@ -152116,7 +152570,7 @@ Dogstar: installDir: Dogstar: {} launch: - /Dogstar.exe: + "/Dogstar.exe": - when: - os: windows store: steam @@ -152126,11 +152580,11 @@ Dogurai: installDir: Dogurai: {} launch: - /dogurai.exe: + "/dogurai.exe": - when: - os: windows store: steam - /dogurai64: + "/dogurai64": - when: - bit: 64 os: linux @@ -152139,7 +152593,7 @@ Dogurai: id: 565180 Dogz: files: - /DATA/Dogz.ini: + "/DATA/Dogz.ini": tags: - config when: @@ -152148,7 +152602,7 @@ Dojini: installDir: Dojini: {} launch: - /dojini.exe: + "/dojini.exe": - when: - os: windows store: steam @@ -152160,14 +152614,14 @@ Doka 2 Trade: Doka 3 Sto Sloev Kishkov: steam: id: 984140 -'Dokapon Kingdom: Connect': +"Dokapon Kingdom: Connect": files: - '/AppData/LocalLow/IDEA FACTORY Co.,Ltd/Dokapon Kingdom Connect/': + "/AppData/LocalLow/IDEA FACTORY Co.,Ltd/Dokapon Kingdom Connect/": tags: - config when: - os: windows - '/AppData/LocalLow/IDEA FACTORY Co.,Ltd/Dokapon Kingdom Connect//SaveData': + "/AppData/LocalLow/IDEA FACTORY Co.,Ltd/Dokapon Kingdom Connect//SaveData": tags: - save when: @@ -152175,7 +152629,7 @@ Doka 3 Sto Sloev Kishkov: installDir: Dokapon Kingdom Connect: {} launch: - /DkkStm.exe: + "/DkkStm.exe": - when: - bit: 64 os: windows @@ -152187,12 +152641,12 @@ Doki Doki Gravity Dive: id: 1787600445 Doki Doki Literature Club Plus!: files: - /AppData/LocalLow/Team Salvato/Doki Doki Literature Club Plus: + "/AppData/LocalLow/Team Salvato/Doki Doki Literature Club Plus": tags: - save when: - os: windows - /AppData/LocalLow/Team Salvato/Doki Doki Literature Club Plus/save_preferences.sav: + "/AppData/LocalLow/Team Salvato/Doki Doki Literature Club Plus/save_preferences.sav": tags: - config when: @@ -152200,11 +152654,11 @@ Doki Doki Literature Club Plus!: installDir: Doki Doki Literature Club Plus: {} launch: - /Doki Doki Literature Club Plus.app: + "/Doki Doki Literature Club Plus.app": - when: - os: mac store: steam - /Doki Doki Literature Club Plus.exe: + "/Doki Doki Literature Club Plus.exe": - when: - os: windows store: steam @@ -152212,32 +152666,32 @@ Doki Doki Literature Club Plus!: id: 1388880 Doki Doki Literature Club!: files: - /.renpy/DDLC-1454445547/*.save: + "/.renpy/DDLC-1454445547/*.save": tags: - save when: - os: linux - /.renpy/DDLC-1454445547/persistent: + "/.renpy/DDLC-1454445547/persistent": tags: - config when: - os: linux - /Library/RenPy/DDLC-1454445547/*.save: + "/Library/RenPy/DDLC-1454445547/*.save": tags: - save when: - os: mac - /Library/RenPy/DDLC-1454445547/persistent: + "/Library/RenPy/DDLC-1454445547/persistent": tags: - config when: - os: mac - /RenPy/DDLC-1454445547/*.save: + "/RenPy/DDLC-1454445547/*.save": tags: - save when: - os: windows - /RenPy/DDLC-1454445547/persistent: + "/RenPy/DDLC-1454445547/persistent": tags: - config when: @@ -152245,11 +152699,11 @@ Doki Doki Literature Club!: installDir: Doki Doki Literature Club: {} launch: - /DDLC.app/Contents/MacOS/DDLC: + "/DDLC.app/Contents/MacOS/DDLC": - when: - os: mac store: steam - /DDLC.exe: + "/DDLC.exe": - when: - os: windows store: steam @@ -152259,15 +152713,15 @@ Doki Doki Ragnarok: installDir: Doki Doki Ragnarok: {} launch: - /Doki Doki Ragnarok: + "/Doki Doki Ragnarok": - when: - os: linux store: steam - /Doki Doki Ragnarok.app/Contents/MacOS/Doki Doki Ragnarok: + "/Doki Doki Ragnarok.app/Contents/MacOS/Doki Doki Ragnarok": - when: - os: mac store: steam - /Doki Doki Ragnarok.exe: + "/Doki Doki Ragnarok.exe": - when: - bit: 64 os: windows @@ -152278,7 +152732,7 @@ Dokkaebi Hentai Adventures: installDir: Dokkaebi Hentai Adventures: {} launch: - /DHA.exe: + "/DHA.exe": - when: - os: windows store: steam @@ -152288,7 +152742,7 @@ Dokuro: installDir: Dokuro: {} launch: - /main.exe: + "/main.exe": - when: - os: windows store: steam @@ -152298,11 +152752,11 @@ Doler: installDir: Sokpop S03 Doler: {} launch: - /doler.app: + "/doler.app": - when: - os: mac store: steam - /doler.exe: + "/doler.exe": - when: - os: windows store: steam @@ -152312,20 +152766,20 @@ Dolguth: installDir: Dolguth: {} launch: - /Dolguth.app/Contents/MacOS/Dolguth: + "/Dolguth.app/Contents/MacOS/Dolguth": - when: - os: mac store: steam - /Dolguth.exe: + "/Dolguth.exe": - when: - os: windows store: steam - /Dolguth.x86: + "/Dolguth.x86": - when: - bit: 32 os: linux store: steam - /Dolguth.x86_64: + "/Dolguth.x86_64": - when: - bit: 64 os: linux @@ -152336,13 +152790,13 @@ Doll: installDir: Doll: {} launch: - /doll.exe: + "/doll.exe": - when: - os: windows store: steam steam: id: 1164910 -'Doll City: Prologue': +"Doll City: Prologue": installDir: Doll-City-Prologue: {} steam: @@ -152351,7 +152805,7 @@ Doll of Resurrection: installDir: Doll of Resurrection: {} launch: - /RoofGirl.exe: + "/RoofGirl.exe": - when: - os: windows store: steam @@ -152361,12 +152815,12 @@ DollKart: installDir: DollKart: {} launch: - /DollKart.exe: + "/DollKart.exe": - when: - bit: 64 os: windows store: steam - /DollKart.x86_64: + "/DollKart.x86_64": - when: - bit: 64 os: linux @@ -152377,7 +152831,7 @@ Dolla World: installDir: Dolla World: {} launch: - /dollaworld.exe: + "/dollaworld.exe": - when: - store: steam steam: @@ -152387,7 +152841,7 @@ Dollal Simulator 2018: id: 806660 Dollar Dash: files: - /userdata//214320/remote: + "/userdata//214320/remote": tags: - save when: @@ -152395,8 +152849,8 @@ Dollar Dash: installDir: Dollar Dash: {} launch: - /Binaries/win32/PKGame-Win32-Shipping.exe: - - arguments: '-console' + "/Binaries/win32/PKGame-Win32-Shipping.exe": + - arguments: "-console" when: - os: windows store: steam @@ -152404,7 +152858,7 @@ Dollar Dash: id: 214320 Dollhouse: files: - /userdata//280850/remote: + "/userdata//280850/remote": tags: - save when: @@ -152412,7 +152866,7 @@ Dollhouse: installDir: Dollhouse: {} launch: - /Dollhouse.exe: + "/Dollhouse.exe": - when: - os: windows store: steam @@ -152420,7 +152874,7 @@ Dollhouse: id: 280850 Dolmen: files: - /DolmenWindows/Saved/SaveGames: + "/DolmenWindows/Saved/SaveGames": tags: - save when: @@ -152428,7 +152882,7 @@ Dolmen: installDir: Dolmen: {} launch: - /Dolmen.exe: + "/Dolmen.exe": - when: - os: windows store: steam @@ -152438,11 +152892,11 @@ Dolmenjord - Viking Islands: installDir: Dolmenjord: {} launch: - /Dolmenjord.app/Contents/MacOS/Dolmenjord: + "/Dolmenjord.app/Contents/MacOS/Dolmenjord": - when: - os: mac store: steam - /Dolmenjord.exe: + "/Dolmenjord.exe": - when: - bit: 64 os: windows @@ -152451,42 +152905,42 @@ Dolmenjord - Viking Islands: id: 1899950 Dolphin: files: - /Dolphin Emulator/Config: + "/Dolphin Emulator/Config": tags: - config when: - os: windows - /Dolphin Emulator/GC: + "/Dolphin Emulator/GC": tags: - save when: - os: windows - /Dolphin Emulator/StateSaves: + "/Dolphin Emulator/StateSaves": tags: - save when: - os: windows - /Dolphin Emulator/Wii: + "/Dolphin Emulator/Wii": tags: - save when: - os: windows - /Dolphin Emulator/Config: + "/Dolphin Emulator/Config": tags: - config when: - os: windows - /Dolphin Emulator/GC: + "/Dolphin Emulator/GC": tags: - save when: - os: windows - /Dolphin Emulator/StateSaves: + "/Dolphin Emulator/StateSaves": tags: - save when: - os: windows - /Dolphin Emulator/Wii: + "/Dolphin Emulator/Wii": tags: - save when: @@ -152500,7 +152954,7 @@ Dolphin Swim: installDir: Dolphin Swim: {} launch: - /Dolphin Swim.exe: + "/Dolphin Swim.exe": - when: - os: windows store: steam @@ -152510,16 +152964,16 @@ Dolphin Up: installDir: DolphinUp: {} launch: - /DolphinUp: + "/DolphinUp": - when: - bit: 64 os: linux store: steam - /DolphinUp.app: + "/DolphinUp.app": - when: - os: mac store: steam - /DolphinUp.exe: + "/DolphinUp.exe": - when: - os: windows store: steam @@ -152529,7 +152983,7 @@ Dolphins-cyborgs and Open Space: installDir: Dolphins-Cyborgs and open space: {} launch: - /Dolphins-Cyborgs and open space.exe: + "/Dolphins-Cyborgs and open space.exe": - when: - store: steam steam: @@ -152538,15 +152992,15 @@ Domain Defense: installDir: Domain Defense: {} launch: - /DomainDefense.app/Contents/MacOS/DomainDefense: + "/DomainDefense.app/Contents/MacOS/DomainDefense": - when: - os: mac store: steam - /DomainDefense.exe: + "/DomainDefense.exe": - when: - os: windows store: steam - /DomainDefense.x86: + "/DomainDefense.x86": - when: - os: linux store: steam @@ -152554,7 +153008,7 @@ Domain Defense: id: 455960 Domain Defense VR: files: - /Saved Games/Domain Defense VR/gamesave.dat: + "/Saved Games/Domain Defense VR/gamesave.dat": tags: - save when: @@ -152565,7 +153019,7 @@ Domain Defense VR: id: 455190 Dome Keeper: files: - /Godot/app_userdata/Dome Keeper: + "/Godot/app_userdata/Dome Keeper": tags: - save when: @@ -152579,15 +153033,15 @@ Dome Keeper: installDir: Dome Keeper: {} launch: - /Contents/MacOS/Dome Keeper: + "/Contents/MacOS/Dome Keeper": - when: - os: mac store: steam - /domekeeper.exe: + "/domekeeper.exe": - when: - os: windows store: steam - /domekeeper.x86_64: + "/domekeeper.x86_64": - when: - os: linux store: steam @@ -152597,7 +153051,7 @@ Domestic Dog: installDir: Domestic Dog: {} launch: - /Domestic_Dog.exe: + "/Domestic_Dog.exe": - when: - store: steam steam: @@ -152606,7 +153060,7 @@ DomiCard: installDir: DomiCard: {} launch: - /DomiCard.exe: + "/DomiCard.exe": - when: - os: windows store: steam @@ -152616,11 +153070,11 @@ DomiDo: installDir: DomiDo: {} launch: - /DomiDO.app/Contents/MacOS/DomiDO: + "/DomiDO.app/Contents/MacOS/DomiDO": - when: - os: mac store: steam - /DomiDO.exe: + "/DomiDO.exe": - when: - os: windows store: steam @@ -152628,7 +153082,7 @@ DomiDo: id: 1061200 Domina: files: - /Domina: + "/Domina": tags: - config - save @@ -152637,11 +153091,11 @@ Domina: installDir: Domina: {} launch: - /Domina.app/Contents/MacOS/Domina: + "/Domina.app/Contents/MacOS/Domina": - when: - os: mac store: steam - /Domina.exe: + "/Domina.exe": - when: - os: windows store: steam @@ -152654,67 +153108,67 @@ Dominari Tournament: installDir: Dominari: {} launch: - /dominari.exe: + "/dominari.exe": - when: - os: windows store: steam steam: id: 662930 -'Dominatrix Simulator: Threshold': +"Dominatrix Simulator: Threshold": installDir: Dominatrix Simulator: {} launch: - /Dominatrix Simulator.exe: - - arguments: '-vrmode None -enableSteam' + "/Dominatrix Simulator.exe": + - arguments: "-vrmode None -enableSteam" when: - bit: 64 os: windows store: steam steam: id: 953270 -'Dominion: Storm Over Gift 3': +"Dominion: Storm Over Gift 3": files: - /Dominion.ini: + "/Dominion.ini": tags: - config when: - os: windows -'Dominions 3: The Awakening': +"Dominions 3: The Awakening": installDir: Dominions3: {} launch: - /Dominions3.app/Contents/MacOS/Dominions3: + "/Dominions3.app/Contents/MacOS/Dominions3": - when: - os: mac store: steam - /dom3.exe: + "/dom3.exe": - when: - os: windows store: steam - /dom3.sh: + "/dom3.sh": - when: - os: linux store: steam steam: id: 248510 -'Dominions 4: Thrones of Ascension': +"Dominions 4: Thrones of Ascension": files: - /dominions4: + "/dominions4": tags: - config when: - os: linux - /dominions4/savedgames: + "/dominions4/savedgames": tags: - save when: - os: linux - /Dominions4: + "/Dominions4": tags: - config when: - os: windows - /Dominions4/savedgames: + "/Dominions4/savedgames": tags: - save when: @@ -152722,28 +153176,28 @@ Dominari Tournament: installDir: Dominions4: {} launch: - /Dominions4.exe: + "/Dominions4.exe": - when: - os: windows store: steam - /dom4.sh: + "/dom4.sh": - when: - os: linux store: steam - /dom4_mac: + "/dom4_mac": - when: - os: mac store: steam steam: id: 259060 -'Dominions 5: Warriors of the Faith': +"Dominions 5: Warriors of the Faith": files: - /.dominions5: + "/.dominions5": tags: - config when: - os: linux - /.dominions5/savedgames: + "/.dominions5/savedgames": tags: - save when: @@ -152751,45 +153205,39 @@ Dominari Tournament: installDir: Dominions5: {} launch: - /Dominions5.exe: + "/Dominions5.exe": - when: - bit: 32 os: windows store: steam - /dom5.sh: + "/dom5.sh": - when: - os: linux store: steam - /dom5_mac: + "/dom5_mac": - when: - os: mac store: steam - /win64/Dominions5.exe: + "/win64/Dominions5.exe": - when: - bit: 64 os: windows store: steam - workingDir: /win64 + workingDir: "/win64" steam: id: 722060 Dominique Pamplemousse: - files: - /Macromedia/Flash Player/#SharedObjects/*/localhost/*/autosave.sol: - tags: - - save - when: - - os: windows id: steamExtra: - 285550 installDir: DominiquePamplemousse: {} launch: - /Dominique Pamplemousse.app: + "/Dominique Pamplemousse.app": - when: - os: mac store: steam - /DominiquePamplemousse.exe: + "/DominiquePamplemousse.exe": - when: - os: windows store: steam @@ -152799,16 +153247,16 @@ Domino: installDir: Domino: {} launch: - /Domino.app/Contents/MacOS/Domino: + "/Domino.app/Contents/MacOS/Domino": - when: - os: mac store: steam - /Domino.exe: + "/Domino.exe": - when: - bit: 64 os: windows store: steam - /Domino.x86_64: + "/Domino.x86_64": - when: - bit: 64 os: linux @@ -152824,7 +153272,7 @@ Domino Dungeon: installDir: Domino Dungeon: {} launch: - /domino.exe: + "/domino.exe": - when: - os: windows store: steam @@ -152834,7 +153282,7 @@ Domino Effect: installDir: Domino Effect: {} launch: - /Config.bat: + "/Config.bat": - when: - bit: 64 os: windows @@ -152845,7 +153293,7 @@ Domino Simulator: installDir: Domino Simulator 2020: {} launch: - /DominoSimulator20.exe: + "/DominoSimulator20.exe": - when: - store: steam steam: @@ -152854,11 +153302,11 @@ Domino Sky: installDir: Domino Sky: {} launch: - /dominosky.app: + "/dominosky.app": - when: - os: mac store: steam - /dominosky.exe: + "/dominosky.exe": - when: - os: windows store: steam @@ -152877,11 +153325,11 @@ Dominos!: installDir: Dominos!: {} launch: - /Domino.exe: + "/Domino.exe": - when: - os: windows store: steam - /Dominos.x86_64: + "/Dominos.x86_64": - when: - os: linux store: steam @@ -152891,15 +153339,15 @@ Dominus 2: installDir: Dominus2: {} launch: - /Dominus 2: + "/Dominus 2": - when: - os: linux store: steam - /Dominus 2.app: + "/Dominus 2.app": - when: - os: mac store: steam - /Dominus 2.exe: + "/Dominus 2.exe": - when: - os: windows store: steam @@ -152909,15 +153357,15 @@ Domiverse: installDir: Domiverse: {} launch: - /domiverse.app: + "/domiverse.app": - when: - os: mac store: steam - /domiverse.exe: + "/domiverse.exe": - when: - os: windows store: steam - /domiverse.x86: + "/domiverse.x86": - when: - os: linux store: steam @@ -152927,7 +153375,7 @@ Don Bradman Cricket 14: installDir: DBC14: {} launch: - /cricket14.exe: + "/cricket14.exe": - when: - os: windows store: steam @@ -152937,26 +153385,29 @@ Don Bradman Cricket 17: installDir: Don Bradman Cricket 17: {} launch: - /cricket17.exe: + "/cricket17.exe": - when: - os: windows store: steam steam: id: 464850 -Don'Yoku: +"Don'Yoku": installDir: - Don'Yoku: {} + "Don'Yoku": {} launch: - /nw.exe: + "/nw.exe": - when: - bit: 32 os: windows store: steam + - bit: 64 + os: windows + store: steam steam: id: 380690 -Don't Be Afraid: +"Don't Be Afraid": files: - /AppData/LocalLow/Broken Arrow Games/Don't Be Afraid/savegameAUTO.save: + "/AppData/LocalLow/Broken Arrow Games/Don't Be Afraid/savegameAUTO.save": tags: - save when: @@ -152964,223 +153415,232 @@ Don't Be Afraid: gog: id: 1285563191 installDir: - Don't Be Afraid: {} + "Don't Be Afraid": {} launch: - /Don't Be Afraid.exe: + "/Don't Be Afraid.exe": - when: - bit: 64 os: windows store: steam registry: - HKEY_CURRENT_USER/SOFTWARE/Broken Arrow Games/Don't Be Afraid: + "HKEY_CURRENT_USER/SOFTWARE/Broken Arrow Games/Don't Be Afraid": tags: - config steam: id: 760410 -Don't Bite Me Bro!: +"Don't Bite Me Bro!": installDir: DontBiteMeBro: {} launch: - /DontBiteMeBro_LINUX/DontBiteMeBro_LINUX.x86_64: + "/DontBiteMeBro_LINUX/DontBiteMeBro_LINUX.x86_64": - when: - os: linux store: steam - /DontBiteMeBro_MAC.app: + "/DontBiteMeBro_MAC.app": - when: - os: mac store: steam - /DontBiteMeBro_PC/DontBiteMeBro_PC.exe: + "/DontBiteMeBro_PC/DontBiteMeBro_PC.exe": - when: - os: windows store: steam steam: id: 786450 -Don't Bleed: +"Don't Bleed": installDir: Dont Bleed: {} launch: - /Don't Bleed.exe: + "/Don't Bleed.exe": - when: - os: windows store: steam steam: id: 723810 -Don't Burn: +"Don't Burn": steam: id: 1089960 -Don't Chat With Strangers: +"Don't Chat With Strangers": installDir: - Don't Chat With Strangers: {} + "Don't Chat With Strangers": {} launch: - /start.bat: + "/start.bat": - when: - store: steam steam: id: 533170 -Don't Crawl: +"Don't Crawl": installDir: Ghost Croquet: {} launch: - /GhostCroquet.app: + "/GhostCroquet.app": - when: - os: mac store: steam - /GhostCroquet.exe: + "/GhostCroquet.exe": - when: - os: windows store: steam - /run.sh: + "/run.sh": - when: - os: linux store: steam steam: id: 466770 -Don't Cut Your Hand: +"Don't Cut Your Hand": installDir: DontCutYourHand: {} launch: - /DontCutYourHand.app/Contents/MacOS/DontCutYourHand: + "/DontCutYourHand.app/Contents/MacOS/DontCutYourHand": - when: - os: mac store: steam - /DontCutYourHand.exe: + "/DontCutYourHand.exe": - when: - os: windows store: steam steam: id: 603350 -Don't Die: +"Don't Die": installDir: - Don't Die: {} + "Don't Die": {} steam: id: 1113930 -'Don''t Die Dateless, Dummy!': +"Don't Die Dateless, Dummy!": installDir: - 'Don''t Die Dateless, Dummy!': {} + "Don't Die Dateless, Dummy!": {} launch: - /DontDieDatelessDummy.exe: + "/DontDieDatelessDummy.exe": - when: - os: windows store: steam steam: id: 455490 -Don't Die!: +"Don't Die!": files: - /AppData/LocalLow/Templarius Studios/Don't Die!: + "/AppData/LocalLow/Templarius Studios/Don't Die!": tags: - config - save when: - os: windows installDir: - Don't Die!: {} + "Don't Die!": {} launch: - /Don't Die!.app: + "/Don't Die!.app": - when: - os: mac store: steam - /Don't Die!.exe: + "/Don't Die!.exe": - when: - os: windows store: steam - /Don't Die!.x86: + "/Don't Die!.x86": - when: - bit: 32 os: linux store: steam - /Don't Die!.x86_64: + "/Don't Die!.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 659870 -Don't Die! (2018): +"Don't Die! (2018)": installDir: - DON'T DIE!: {} + "DON'T DIE!": {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam steam: id: 856220 -'Don''t Die, Minerva!': +"Don't Die, Minerva!": installDir: - 'Don''t Die, Minerva!': {} + "Don't Die, Minerva!": {} launch: - /DDM.exe: + "/DDM.exe": - when: - bit: 64 os: windows store: steam steam: id: 982040 -'Don''t Die: Survival': +"Don't Die: Survival": installDir: Spell Cast: {} launch: - /Spell Cast/Spell Cast.exe: + "/Spell Cast/Spell Cast.exe": - when: - os: windows store: steam - /SpellCastMacos.app: + "/SpellCastMacos.app": - when: - os: mac store: steam steam: id: 554710 -Don't Disturb: +"Don't Disturb": installDir: - Don't Disturb: {} + "Don't Disturb": {} launch: - /don'tdisturb: + "/don'tdisturb": - when: + - bit: 32 + os: linux + store: steam - bit: 64 os: linux store: steam - /don'tdisturb.app/Contents/MacOS/nwjs: + "/don'tdisturb.app/Contents/MacOS/nwjs": - when: + - bit: 32 + os: mac + store: steam - bit: 64 os: mac store: steam - /don'tdisturb.exe: + "/don'tdisturb.exe": - when: - bit: 32 os: windows store: steam + - bit: 64 + os: windows + store: steam steam: id: 501840 -Don't Drop the Bass: +"Don't Drop the Bass": installDir: - Don't Drop the Bass: {} + "Don't Drop the Bass": {} launch: - /Don't Drop the Bass.exe: + "/Don't Drop the Bass.exe": - when: - os: windows store: steam - /DontDropTheBass.app: + "/DontDropTheBass.app": - when: - os: mac store: steam steam: id: 471220 -Don't Drop the Soap: +"Don't Drop the Soap": steam: id: 383970 -Don't Escape Trilogy: +"Don't Escape Trilogy": installDir: - Don't Escape Trilogy: {} + "Don't Escape Trilogy": {} launch: - /DontEscape.exe: + "/DontEscape.exe": - when: - os: windows store: steam steam: id: 1070550 -'Don''t Escape: 4 Days to Survive': +"Don't Escape: 4 Days to Survive": files: - /AppData/LocalLow/scriptwelder studio/Don't Escape_ 4 Days in a Wasteland: + "/AppData/LocalLow/scriptwelder studio/Don't Escape_ 4 Days in a Wasteland": tags: - config - save @@ -153191,75 +153651,75 @@ Don't Escape Trilogy: installDir: DontEscape: {} launch: - /dontescape.app: + "/dontescape.app": - when: - os: mac store: steam - /dontescape.exe: + "/dontescape.exe": - when: - os: windows store: steam steam: id: 611760 -Don't Explode: +"Don't Explode": installDir: - Don't Explode: {} + "Don't Explode": {} launch: - /Don't Explode.app: + "/Don't Explode.app": - when: - os: mac store: steam - /Dont Explode.exe: + "/Dont Explode.exe": - when: - os: windows store: steam steam: id: 692680 -Don't Fall: +"Don't Fall": steam: id: 797170 -Don't Feed: +"Don't Feed": installDir: DontFeed: {} launch: - /DontFeed.app: + "/DontFeed.app": - when: - os: mac store: steam - /DontFeed.exe: + "/DontFeed.exe": - when: - os: windows store: steam - /DontFeed.x86: + "/DontFeed.x86": - when: - bit: 32 os: linux store: steam - /DontFeed.x86_64: + "/DontFeed.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 712090 -Don't Feed The Slimes!: +"Don't Feed The Slimes!": installDir: - Don't Feed The Slimes!: {} + "Don't Feed The Slimes!": {} launch: - /Don't Feed The Slimes!.exe: + "/Don't Feed The Slimes!.exe": - when: - os: windows store: steam steam: id: 878610 -Don't Forget Me: +"Don't Forget Me": files: - /AppData/LocalLow/The Moon Pirates/Don't Forget Me/data/save: + "/AppData/LocalLow/The Moon Pirates/Don't Forget Me/data/save": tags: - save when: - os: windows - /AppData/LocalLow/The Moon Pirates/Don't Forget Me/data/settings: + "/AppData/LocalLow/The Moon Pirates/Don't Forget Me/data/settings": tags: - config when: @@ -153269,170 +153729,170 @@ Don't Forget Me: installDir: dont_forget_me: {} launch: - /dont_forget_me.app: + "/dont_forget_me.app": - when: - os: mac store: steam - /dont_forget_me.exe: + "/dont_forget_me.exe": - when: - os: windows store: steam - /dont_forget_me.x86_64: + "/dont_forget_me.x86_64": - when: - os: linux store: steam steam: id: 1335800 -Don't Forget Our Esports Dream: +"Don't Forget Our Esports Dream": files: - /renpy/config.py: + "/renpy/config.py": tags: - config when: - os: windows - /RenPy/EsportsDreamSaves: + "/RenPy/EsportsDreamSaves": tags: - save when: - os: windows installDir: - Don't Forget Our Esports Dream: {} + "Don't Forget Our Esports Dream": {} launch: - /EsportsDream.app: + "/EsportsDream.app": - when: - os: mac store: steam - /EsportsDream.exe: + "/EsportsDream.exe": - when: - os: windows store: steam - /EsportsDream.sh: + "/EsportsDream.sh": - when: - os: linux store: steam steam: id: 946560 -Don't Get Hit In The Face: +"Don't Get Hit In The Face": installDir: DGHITF: {} steam: id: 594200 -'Don''t Give Up: A Cynical Tale': +"Don't Give Up: A Cynical Tale": installDir: - DON'T GIVE UP A Cynical Tale: {} + "DON'T GIVE UP A Cynical Tale": {} launch: - /DontGiveUp.app: + "/DontGiveUp.app": - when: - os: mac store: steam - /DontGiveUp.exe: + "/DontGiveUp.exe": - when: - os: windows store: steam - /DontGiveUp.x86: + "/DontGiveUp.x86": - when: - bit: 32 os: linux store: steam - /DontGiveUp.x86_64: + "/DontGiveUp.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 960710 -Don't Go into the Woods: +"Don't Go into the Woods": installDir: - Don't Go into the Woods: {} + "Don't Go into the Woods": {} launch: - /DGITW.exe: + "/DGITW.exe": - when: - os: windows store: steam steam: id: 1017660 -Don't Kill Her: +"Don't Kill Her": steam: id: 918520 -Don't Kill the Cow: +"Don't Kill the Cow": installDir: - Don't Kill the Cow: {} + "Don't Kill the Cow": {} launch: - /Don't_Kill_the_Cow.exe: + "/Don't_Kill_the_Cow.exe": - when: - os: windows store: steam steam: id: 1180800 -Don't Knock Twice: +"Don't Knock Twice": files: - /userdata//328590/remote: + "/userdata//328590/remote": tags: - config - save when: - store: steam installDir: - Don't Knock Twice: {} + "Don't Knock Twice": {} launch: - /DontKnockTwice.exe: - - arguments: '-platform None' + "/DontKnockTwice.exe": + - arguments: "-platform None" when: - bit: 64 os: windows store: steam steam: id: 328590 -Don't Let Go!: +"Don't Let Go!": installDir: - Don't let go!: {} + "Don't let go!": {} steam: id: 519030 -Don't Look Back: +"Don't Look Back": installDir: - Don't Look Back: {} + "Don't Look Back": {} launch: - /NeverLookBack.exe: + "/NeverLookBack.exe": - when: - bit: 64 os: windows store: steam steam: id: 601550 -Don't Look Back (2018): +"Don't Look Back (2018)": installDir: - Don't Look Back: {} + "Don't Look Back": {} launch: - /Don't Look Back.exe: + "/Don't Look Back.exe": - when: - bit: 64 os: windows store: steam steam: id: 811630 -Don't Look Back - VR: +"Don't Look Back - VR": installDir: - Don't Look Back: {} + "Don't Look Back": {} steam: id: 1028410 -Don't Look Down: +"Don't Look Down": installDir: - Don't Look Down: {} + "Don't Look Down": {} steam: id: 869290 -Don't Make Love: +"Don't Make Love": files: - /dontmakelove/Saved/Config/WindowsNoEditor: + "/dontmakelove/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /dontmakelove/Saved/SaveGames: + "/dontmakelove/Saved/SaveGames": tags: - save when: - os: windows - /dontmakelove/Saved/SaveGames/GameSettings.sav: + "/dontmakelove/Saved/SaveGames/GameSettings.sav": tags: - config when: @@ -153440,199 +153900,199 @@ Don't Make Love: installDir: DontMakeLove: {} launch: - /dontmakelove.exe: + "/dontmakelove.exe": - when: - bit: 64 os: windows store: steam steam: id: 723890 -Don't Mess Up: +"Don't Mess Up": steam: id: 575170 -Don't Move: +"Don't Move": steam: id: 334350 -Don't Notice Me: +"Don't Notice Me": installDir: DontNoticeMe: {} launch: - /DontNoticeMe.app: + "/DontNoticeMe.app": - when: - os: mac store: steam - /DontNoticeMe.exe: + "/DontNoticeMe.exe": - when: - os: windows store: steam steam: id: 859740 -Don't Open the Doors!: +"Don't Open the Doors!": installDir: doors_game: {} launch: - /DoorsGame.app: + "/DoorsGame.app": - when: - os: mac store: steam - /DoorsGame.exe: + "/DoorsGame.exe": - when: - os: windows store: steam steam: id: 533950 -Don't Panic!: +"Don't Panic!": installDir: - Don't Panic!: {} + "Don't Panic!": {} launch: - /nw: + "/nw": - when: - os: linux store: steam - /nw.exe: + "/nw.exe": - when: - os: windows store: steam steam: id: 720000 -Don't Pick On The Fat Kid: +"Don't Pick On The Fat Kid": installDir: - Don't Pick On The Fat Kid: {} + "Don't Pick On The Fat Kid": {} launch: - /Bully Beatdown (iOS).app: + "/Bully Beatdown (iOS).app": - when: - os: mac store: steam - /Bully Beatdown.exe: + "/Bully Beatdown.exe": - when: - os: windows store: steam - /Bully Beatdown.x86: + "/Bully Beatdown.x86": - when: - os: linux store: steam steam: id: 793600 -Don't Play This Game: +"Don't Play This Game": steam: id: 679240 -Don't Play With Dolls: +"Don't Play With Dolls": installDir: - Don't Play With Dolls: {} + "Don't Play With Dolls": {} launch: - /Dont_Play_With_Dolls: + "/Dont_Play_With_Dolls": - when: - bit: 64 os: windows store: steam steam: id: 845750 -Don't Pray to Satan: +"Don't Pray to Satan": installDir: - Don't Pray To Satan: {} + "Don't Pray To Satan": {} launch: - /Dont Pray To Satan.app: + "/Dont Pray To Satan.app": - when: - os: mac store: steam - /dpts.exe: + "/dpts.exe": - when: - os: windows store: steam steam: id: 813170 -Don't Save the Princess: +"Don't Save the Princess": steam: id: 951840 -Don't Shoot Rabbit / 不要射中兔子: +"Don't Shoot Rabbit / 不要射中兔子": installDir: DontShootRabbit: {} launch: - /DontShootRabbit.exe: + "/DontShootRabbit.exe": - when: - os: windows store: steam steam: id: 981990 -Don't Shoot Yourself!: +"Don't Shoot Yourself!": installDir: - Don't Shoot Yourself!: {} + "Don't Shoot Yourself!": {} launch: - /dsy.app: + "/dsy.app": - when: - os: mac store: steam - /dsy.exe: + "/dsy.exe": - when: - os: windows store: steam steam: id: 332880 -Don't Sink: +"Don't Sink": files: - /Don_t_Sink/saves: + "/Don_t_Sink/saves": tags: - save when: - os: windows - /Don_t_Sink/settings.ini: + "/Don_t_Sink/settings.ini": tags: - config when: - os: windows installDir: - Don't Sink: {} + "Don't Sink": {} launch: - /Contents/MacOS/Mac_Runner: + "/Contents/MacOS/Mac_Runner": - when: - os: mac store: steam - /Don't Sink.exe: + "/Don't Sink.exe": - when: - os: windows store: steam - /Don_t_Sink: + "/Don_t_Sink": - when: - os: linux store: steam steam: id: 710610 -Don't Stand Out: +"Don't Stand Out": installDir: - Don't Stand Out: {} + "Don't Stand Out": {} launch: - /DSO.exe: + "/DSO.exe": - when: - bit: 64 os: windows store: steam steam: id: 811240 -Don't Starve: +"Don't Starve": files: - /.klei/DoNotStarve: + "/.klei/DoNotStarve": tags: - config - save when: - os: linux - /Documents/Klei/DoNotStarve: + "/Documents/Klei/DoNotStarve": tags: - config - save when: - os: mac - /userdata//219740/remote: + "/userdata//219740/remote": tags: - save when: - store: steam - /Klei/DoNotStarve/save: + "/Klei/DoNotStarve/save": tags: - save when: - os: windows - /Klei/DoNotStarve/settings.ini: + "/Klei/DoNotStarve/settings.ini": tags: - config when: @@ -153647,154 +154107,157 @@ Don't Starve: installDir: dont_starve: {} launch: - /bin/dontstarve_steam: + "/bin/dontstarve_steam": - when: - os: linux store: steam - workingDir: /bin - /bin/dontstarve_steam.exe: + workingDir: "/bin" + "/bin/dontstarve_steam.exe": - when: - os: windows store: steam - workingDir: /bin - /dontstarve_steam.app: + workingDir: "/bin" + "/dontstarve_steam.app": - when: - os: mac store: steam steam: id: 219740 -Don't Starve Together: +"Don't Starve Together": files: - /.klei/DoNotStarveTogether//client_save: + "/.klei/DoNotStarveTogether//client_save": tags: - save when: - os: linux - /.klei/DoNotStarveTogether/client.ini: + "/.klei/DoNotStarveTogether/client.ini": tags: - config when: - os: linux - /Klei/DoNotStarveTogether//client.ini: + "/Klei/DoNotStarveTogether//client.ini": tags: - config when: - os: windows - /Klei/DoNotStarveTogether//client_save: + "/Klei/DoNotStarveTogether//client_save": tags: - save when: - os: windows - /Klei/DoNotStarveTogether/client.ini: + "/Klei/DoNotStarveTogether/client.ini": tags: - config when: - os: windows - /Klei/DoNotStarveTogether/client_save: + "/Klei/DoNotStarveTogether/client_save": tags: - save when: - os: windows - /Klei/DoNotStarveTogether/save: + "/Klei/DoNotStarveTogether/save": tags: - save when: - os: windows installDir: - Don't Starve Together: {} + "Don't Starve Together": {} launch: - /bin/dontstarve_steam: + "/bin/dontstarve_steam": - when: - os: linux store: steam - workingDir: /bin - /bin/dontstarve_steam.exe: + workingDir: "/bin" + "/bin/dontstarve_steam.exe": - when: - os: windows store: steam - workingDir: /bin - /bin64/dontstarve_steam_x64: + workingDir: "/bin" + "/bin64/dontstarve_steam_x64": - when: - bit: 64 os: linux store: steam - workingDir: /bin64 - /bin64/dontstarve_steam_x64.exe: + workingDir: "/bin64" + "/bin64/dontstarve_steam_x64.exe": - when: - bit: 64 os: windows store: steam - workingDir: /bin64 - /dontstarve_steam.app: + workingDir: "/bin64" + "/dontstarve_steam.app": - when: - os: mac store: steam steam: id: 322330 -Don't Stop: +"Don't Stop": installDir: DontStop_64: {} launch: - /Don`t Stop.exe: + "/Don`t Stop.exe": - when: - bit: 64 os: windows store: steam steam: id: 868760 -'Don''t Tax Me, Bro!': +"Don't Tax Me, Bro!": installDir: - 'Don''t Tax Me, Bro!': {} + "Don't Tax Me, Bro!": {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam steam: id: 639450 -Don't Touch My Virgin: +"Don't Touch My Virgin": steam: id: 932830 -Don't Touch the Walls: +"Don't Touch the Walls": installDir: - DON'T touch the walls: {} + "DON'T touch the walls": {} launch: - /dttw.exe: + "/dttw.exe": - when: - os: windows store: steam steam: id: 796600 -Don't Touch the Zombies: +"Don't Touch the Zombies": installDir: DontTouchTheZombies: {} launch: - /DontTouchTheZombies.app/Contents/MacOS/DontTouchTheZombies: + "/DontTouchTheZombies.app/Contents/MacOS/DontTouchTheZombies": - when: - os: mac store: steam - /DontTouchTheZombies.exe: + "/DontTouchTheZombies.exe": - when: - bit: 32 os: windows store: steam - /DontTouchTheZombies.x86: + - bit: 64 + os: windows + store: steam + "/DontTouchTheZombies.x86": - when: - bit: 32 os: linux store: steam - /DontTouchTheZombies.x86_64: + "/DontTouchTheZombies.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 563370 -Don't touch me: +"Don't touch me": installDir: WindowsNoEditor: {} launch: - /Donttouchme.exe: + "/Donttouchme.exe": - when: - os: windows store: steam @@ -153804,41 +154267,41 @@ DonDon Busters!!: installDir: DonDon Busters!!: {} launch: - /DonDonBusters!!/DonDonBusters.exe: + "/DonDonBusters!!/DonDonBusters.exe": - when: - store: steam steam: id: 1206010 -'Donald Duck: Goin'' Quackers': +"Donald Duck: Goin' Quackers": files: - /Data/Options/current.cfg: + "/Data/Options/current.cfg": tags: - config when: - os: windows - /Data/SaveGame: + "/Data/SaveGame": tags: - save when: - os: windows - /Disney/DonaldDuck/Data: + "/Disney/DonaldDuck/Data": tags: - save when: - os: windows - /Disney/DonaldDuck/Data/Options/current.cfg: + "/Disney/DonaldDuck/Data/Options/current.cfg": tags: - config when: - os: windows - /UbiSoft/Ubi.ini: + "/UbiSoft/Ubi.ini": tags: - config when: - os: windows -Donald Trump's Real Estate Tycoon: +"Donald Trump's Real Estate Tycoon": files: - /Save/Games: + "/Save/Games": tags: - save when: @@ -153847,7 +154310,7 @@ Donald VS Martians: installDir: Donald VS Martians: {} launch: - /Donald VS Martians.exe: + "/Donald VS Martians.exe": - when: - os: windows store: steam @@ -153857,7 +154320,7 @@ Dong-Jin Rice-hime: installDir: Dong-Jin Rice-hime: {} launch: - /MoeRice.exe: + "/MoeRice.exe": - when: - os: windows store: steam @@ -153867,7 +154330,7 @@ Dongo Adventure: installDir: Dongo Adventure: {} launch: - /DongoAdventure.exe: + "/DongoAdventure.exe": - when: - os: windows store: steam @@ -153877,7 +154340,7 @@ Donjon Defense: installDir: Donjon Defense: {} launch: - /Donjon Defense.exe: + "/Donjon Defense.exe": - when: - store: steam steam: @@ -153886,11 +154349,11 @@ Dontbegrey: installDir: dontbegrey: {} launch: - /dontbegrey: + "/dontbegrey": - when: - os: linux store: steam - /dontbegrey.exe: + "/dontbegrey.exe": - when: - os: windows store: steam @@ -153898,32 +154361,34 @@ Dontbegrey: id: 681490 Donut County: files: - /AppData/LocalLow/Annapurna Interactive/Donut County//preferences.pref: - tags: - - config - when: - - store: steam - /AppData/LocalLow/Annapurna Interactive/Donut County//savegame.sav: - tags: - - save - when: - - store: steam - /AppData/LocalLow/Annapurna Interactive/Donut County/preferences.pref: + "/AppData/LocalLow/Annapurna Interactive/Donut County//preferences.pref": tags: - config when: - os: windows - /AppData/LocalLow/Annapurna Interactive/Donut County/savegame.sav: + store: steam + "/AppData/LocalLow/Annapurna Interactive/Donut County//savegame.sav": tags: - save when: - os: windows - /Library/Application Support/Annapurna Interactive/Donut County//preferences.pref: + store: steam + "/AppData/LocalLow/Annapurna Interactive/Donut County/preferences.pref": + tags: + - config + when: + - os: windows + "/AppData/LocalLow/Annapurna Interactive/Donut County/savegame.sav": + tags: + - save + when: + - os: windows + "/Library/Application Support/Annapurna Interactive/Donut County//preferences.pref": tags: - config when: - os: mac - /Library/Application Support/Annapurna Interactive/Donut County//savegame.sav: + "/Library/Application Support/Annapurna Interactive/Donut County//savegame.sav": tags: - save when: @@ -153933,11 +154398,11 @@ Donut County: installDir: Donut County: {} launch: - /DonutCounty.app: + "/DonutCounty.app": - when: - os: mac store: steam - /DonutCounty.exe: + "/DonutCounty.exe": - when: - os: windows store: steam @@ -153952,7 +154417,7 @@ Donut Dodo: installDir: DonutDodo: {} launch: - /DonutDodo.exe: + "/DonutDodo.exe": - when: - os: windows store: steam @@ -153962,17 +154427,17 @@ Donut Shop: installDir: Donut Shop: {} launch: - /Donut Shop Final 3.exe: + "/Donut Shop Final 3.exe": - when: - os: windows store: steam steam: id: 825210 -Donuts'n'Justice: +"Donuts'n'Justice": installDir: - Donuts'n'Justice: {} + "Donuts'n'Justice": {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -153982,7 +154447,7 @@ DooM in the Dark: installDir: DooM in the Dark: {} launch: - /DooM in the Dark.exe: + "/DooM in the Dark.exe": - when: - bit: 64 os: windows @@ -153993,7 +154458,7 @@ DooM in the Dark 2: installDir: DooM in the Dark 2: {} launch: - /DooM in the Dark 2.exe: + "/DooM in the Dark 2.exe": - when: - bit: 64 os: windows @@ -154004,15 +154469,15 @@ Doodle Creatures: installDir: Doodle Creatures: {} launch: - /DoodleCreatures.app: + "/DoodleCreatures.app": - when: - os: mac store: steam - /DoodleCreatures.exe: + "/DoodleCreatures.exe": - when: - os: windows store: steam - /DoodleGame: + "/DoodleGame": - when: - bit: 64 os: linux @@ -154023,7 +154488,7 @@ Doodle Date: installDir: Doodle Date: {} launch: - /Doodle_Date.exe: + "/Doodle_Date.exe": - when: - os: windows store: steam @@ -154031,17 +154496,17 @@ Doodle Date: id: 830980 Doodle Derby: files: - /fromto/graphics_settings.ini: + "/fromto/graphics_settings.ini": tags: - config when: - os: windows - /fromto/savegames: + "/fromto/savegames": tags: - save when: - os: windows - /fromto/settings: + "/fromto/settings": tags: - config when: @@ -154049,7 +154514,7 @@ Doodle Derby: installDir: Fromto: {} launch: - /DoodleDerby.exe: + "/DoodleDerby.exe": - when: - os: windows store: steam @@ -154059,15 +154524,15 @@ Doodle Devil: installDir: Doodle Devil: {} launch: - /DoodleDevil.app: + "/DoodleDevil.app": - when: - os: mac store: steam - /DoodleDevil.exe: + "/DoodleDevil.exe": - when: - os: windows store: steam - /DoodleGame: + "/DoodleGame": - when: - bit: 64 os: linux @@ -154078,15 +154543,15 @@ Doodle Farm: installDir: Doodle Farm: {} launch: - /DoodleFarm.app: + "/DoodleFarm.app": - when: - os: mac store: steam - /DoodleFarm.exe: + "/DoodleFarm.exe": - when: - os: windows store: steam - /DoodleGame: + "/DoodleGame": - when: - bit: 64 os: linux @@ -154095,17 +154560,17 @@ Doodle Farm: id: 947390 Doodle God: files: - /temp: + "/temp": tags: - save when: - os: windows - /temp/config.txt: + "/temp/config.txt": tags: - config when: - os: windows - /userdata//348360/remote/savedata.dat: + "/userdata//348360/remote/savedata.dat": tags: - save when: @@ -154113,15 +154578,15 @@ Doodle God: installDir: Doodle God: {} launch: - /DoodleGame: + "/DoodleGame": - when: - os: linux store: steam - /DoodleGod.app: + "/DoodleGod.app": - when: - os: mac store: steam - /DoodleGod.exe: + "/DoodleGod.exe": - when: - os: windows store: steam @@ -154135,16 +154600,16 @@ Doodle God Blitz: installDir: Doodle God Blitz: {} launch: - /DoodleGame: + "/DoodleGame": - when: - bit: 64 os: linux store: steam - /DoodleGod.exe: + "/DoodleGod.exe": - when: - os: windows store: steam - /DoodleGodBlitz.app: + "/DoodleGodBlitz.app": - when: - os: mac store: steam @@ -154153,58 +154618,58 @@ Doodle God Blitz: Doodle God Universe: steam: id: 1697770 -'Doodle God: 8-bit Mania': +"Doodle God: 8-bit Mania": installDir: Doodle God 8-bit Mania: {} launch: - /DoodleGame: + "/DoodleGame": - when: - os: linux store: steam - /DoodleGod.app: + "/DoodleGod.app": - when: - os: mac store: steam - /DoodleGod.exe: + "/DoodleGod.exe": - when: - os: windows store: steam steam: id: 538060 -'Doodle God: Alchemy Jam': +"Doodle God: Alchemy Jam": installDir: Doodle God Alchemy Jam: {} launch: - /AlchemyJam_Steam.exe: + "/AlchemyJam_Steam.exe": - when: - os: windows store: steam steam: id: 759750 -'Doodle God: Genesis Secrets': +"Doodle God: Genesis Secrets": installDir: Doodle God Genesis Secrets: {} launch: - /Doodle God HOG Steam.app: + "/Doodle God HOG Steam.app": - when: - os: mac store: steam - /DoodleGame: + "/DoodleGame": - when: - bit: 64 os: linux store: steam - /DoodleGod.exe: + "/DoodleGod.exe": - when: - os: windows store: steam steam: id: 837210 -'Doodle God: Mighty Trio': +"Doodle God: Mighty Trio": installDir: Doodle God Mighty Trio: {} launch: - /MightyTrio_Steam.exe: + "/MightyTrio_Steam.exe": - when: - store: steam steam: @@ -154213,12 +154678,15 @@ Doodle Jamboree: installDir: Doodle Jamboree: {} launch: - /doodlejamboree.app: + "/doodlejamboree.app": - when: - os: mac store: steam - /doodlejamboree.exe: + "/doodlejamboree.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam @@ -154228,16 +154696,16 @@ Doodle Kingdom: installDir: Doodle Kingdom: {} launch: - /DoodleGame: + "/DoodleGame": - when: - bit: 64 os: linux store: steam - /DoodleKingdom.app: + "/DoodleKingdom.app": - when: - os: mac store: steam - /DoodleKingdom.exe: + "/DoodleKingdom.exe": - when: - os: windows store: steam @@ -154247,16 +154715,16 @@ Doodle Mafia: installDir: Doodle Mafia: {} launch: - /DoodleGame: + "/DoodleGame": - when: - bit: 64 os: linux store: steam - /DoodleMafia.app: + "/DoodleMafia.app": - when: - os: mac store: steam - /DoodleMafia.exe: + "/DoodleMafia.exe": - when: - os: windows store: steam @@ -154266,7 +154734,7 @@ Doodle What?!: installDir: DoodleWHAT: {} launch: - /Doodle WHAT.exe: + "/Doodle WHAT.exe": - when: - os: windows store: steam @@ -154276,7 +154744,7 @@ DoodleVR: installDir: DoodleVR: {} launch: - /DoodleVR.exe: + "/DoodleVR.exe": - when: - os: windows store: steam @@ -154286,7 +154754,7 @@ Doodler: installDir: Doodler: {} launch: - /Doodler.exe: + "/Doodler.exe": - when: - os: windows store: steam @@ -154294,12 +154762,12 @@ Doodler: id: 479310 Doom & Destiny: files: - /Saves/Options.rvdata: + "/Saves/Options.rvdata": tags: - config when: - os: windows - /Saves/Save*: + "/Saves/Save*": tags: - save when: @@ -154307,15 +154775,15 @@ Doom & Destiny: installDir: DoomAndDestiny: {} launch: - /DoomAndDestiny.app: + "/DoomAndDestiny.app": - when: - os: mac store: steam - /DoomAndDestiny.exe: + "/DoomAndDestiny.exe": - when: - os: windows store: steam - /run.sh: + "/run.sh": - when: - os: linux store: steam @@ -154323,7 +154791,7 @@ Doom & Destiny: id: 318130 Doom & Destiny Advanced: files: - /My Games/Doom and Destiny Advanced/Saves: + "/My Games/Doom and Destiny Advanced/Saves": tags: - save when: @@ -154331,15 +154799,15 @@ Doom & Destiny Advanced: installDir: Doom & Destiny Advanced: {} launch: - /Doom and Destiny 2.exe: + "/Doom and Destiny 2.exe": - when: - os: windows store: steam - /DoomAndDestinyAdvanced.app: + "/DoomAndDestinyAdvanced.app": - when: - os: mac store: steam - /run.sh: + "/run.sh": - when: - os: linux store: steam @@ -154349,7 +154817,7 @@ Doom & Destiny Worlds: installDir: DoomAndDestinyWorlds: {} launch: - /DoomAndDestiny3.exe: + "/DoomAndDestiny3.exe": - when: - os: windows store: steam @@ -154357,29 +154825,29 @@ Doom & Destiny Worlds: id: 953690 Doom (1993): files: - /DOOMDATA: + "/DOOMDATA": tags: - config - save when: - os: dos - /Ultimate Doom for Windows 95: + "/Ultimate Doom for Windows 95": tags: - config - save when: - os: windows - /base/*.CFG: + "/base/*.CFG": tags: - config when: - store: steam - /base/*.DSG: + "/base/*.DSG": tags: - save when: - store: steam - /base/*.conf: + "/base/*.conf": tags: - config when: @@ -154392,14 +154860,14 @@ Doom (1993): installDir: Ultimate Doom: {} launch: - /base/dosbox.exe: - - arguments: '-conf base\\ultimatem.conf -fullscreen -exit' + "/base/dosbox.exe": + - arguments: "-conf base\\\\ultimatem.conf -fullscreen -exit" when: - store: steam - - arguments: '-conf base\\ultimate.conf -fullscreen -exit' + - arguments: "-conf base\\\\ultimate.conf -fullscreen -exit" when: - store: steam - /rerelease/DOOM.exe: + "/rerelease/DOOM.exe": - when: - bit: 64 store: steam @@ -154407,17 +154875,17 @@ Doom (1993): id: 2280 Doom (2016): files: - /Saved Games/id Software/DOOM/base/DOOMConfig.cfg: + "/Saved Games/id Software/DOOM/base/DOOMConfig.cfg": tags: - config when: - os: windows - /Saved Games/id Software/DOOM/base/savegame: + "/Saved Games/id Software/DOOM/base/savegame": tags: - save when: - os: windows - /Saved Games/id Software/DOOM/base/savegame.user: + "/Saved Games/id Software/DOOM/base/savegame.user": tags: - save when: @@ -154428,7 +154896,7 @@ Doom (2016): installDir: DOOM: {} launch: - /DOOMx64.exe: + "/DOOMx64.exe": - when: - bit: 64 os: windows @@ -154437,42 +154905,42 @@ Doom (2016): id: 379720 Doom 3: files: - /base/*.cfg: + "/base/*.cfg": tags: - config when: - os: windows - /base/d3xp: + "/base/d3xp": tags: - save when: - os: windows - /base/savegames: + "/base/savegames": tags: - save when: - os: windows - /d3xp/*.cfg: + "/d3xp/*.cfg": tags: - config when: - os: windows - /.doom3/base/*.cfg: + "/.doom3/base/*.cfg": tags: - config when: - os: linux - /.doom3/base/savegames: + "/.doom3/base/savegames": tags: - save when: - os: linux - /.doom3/d3xp/*.cfg: + "/.doom3/d3xp/*.cfg": tags: - config when: - os: linux - /.doom3/d3xp/savegames: + "/.doom3/d3xp/savegames": tags: - save when: @@ -154487,23 +154955,23 @@ Doom 3: installDir: Doom 3: {} launch: - /DOOM3DED.exe: + "/DOOM3DED.exe": - when: - store: steam - /Doom3.exe: + "/Doom3.exe": - when: - store: steam steam: id: 9050 -'Doom 3: BFG Edition': +"Doom 3: BFG Edition": files: - /Saved Games/id Software/DOOM 3 BFG/base: + "/Saved Games/id Software/DOOM 3 BFG/base": tags: - config - save when: - os: windows - /Saved Games/id Software/DOOM 3/base: + "/Saved Games/id Software/DOOM 3/base": tags: - config - save @@ -154517,30 +154985,30 @@ Doom 3: installDir: DOOM 3 BFG Edition: {} launch: - /Doom3BFG.exe: + "/Doom3BFG.exe": - when: - store: steam steam: id: 208200 Doom 64: files: - /Saved Games/Nightdive Studios/DOOM 64: + "/Saved Games/Nightdive Studios/DOOM 64": tags: - config when: - os: windows store: microsoft - /Saved Games/Nightdive Studios/DOOM 64/kexengine.cfg: + "/Saved Games/Nightdive Studios/DOOM 64/kexengine.cfg": tags: - config when: - os: windows - /Saved Games/Nightdive Studios/DOOM 64/saves: + "/Saved Games/Nightdive Studios/DOOM 64/saves": tags: - save when: - os: windows - /Packages/BethesdaSoftworks.Doom641997_3275kfvn8vcwc/SystemAppData/wgs: + "/Packages/BethesdaSoftworks.Doom641997_3275kfvn8vcwc/SystemAppData/wgs": tags: - save when: @@ -154551,7 +155019,7 @@ Doom 64: installDir: Doom 64: {} launch: - /DOOM64_x64.exe: + "/DOOM64_x64.exe": - when: - bit: 64 os: windows @@ -154560,39 +155028,39 @@ Doom 64: id: 1148590 Doom 64 EX: files: - /config.cfg: + "/config.cfg": tags: - config when: - os: windows - /doomsav*.dsg: + "/doomsav*.dsg": tags: - save when: - os: windows Doom Eternal: files: - /Saved Games/id Software/DOOMEternal/base: + "/Saved Games/id Software/DOOMEternal/base": tags: - save when: - os: windows - /Saved Games/id Software/DOOMEternal/base/DOOMEternalConfig.cfg: + "/Saved Games/id Software/DOOMEternal/base/DOOMEternalConfig.cfg": tags: - config when: - os: windows - /Saved Games/id Software/DOOMEternal/base/DOOMEternalConfig.local: + "/Saved Games/id Software/DOOMEternal/base/DOOMEternalConfig.local": tags: - config when: - os: windows - /userdata//782330/remote: + "/userdata//782330/remote": tags: - save when: - store: steam - /Packages/BethesdaSoftworks.DOOMEternal-PC_3275kfvn8vcwc/SystemAppData/wgs: + "/Packages/BethesdaSoftworks.DOOMEternal-PC_3275kfvn8vcwc/SystemAppData/wgs": tags: - save when: @@ -154602,13 +155070,13 @@ Doom Eternal: steamExtra: - 1098290 - 1098291 + - 1098292 - 1098300 - 1098301 - - 1098292 installDir: DOOMEternal: {} launch: - /idTechLauncher.exe: + "/idTechLauncher.exe": - when: - bit: 64 os: windows @@ -154617,12 +155085,12 @@ Doom Eternal: id: 782330 Doom I Enhanced: files: - /Saved Games/id Software/DOOM Classic/playerSave.dat: + "/Saved Games/id Software/DOOM Classic/playerSave.dat": tags: - save when: - os: windows - /Packages/BethesdaSoftworks.DoomClassic_3275kfvn8vcwc/SystemAppData/wgs: + "/Packages/BethesdaSoftworks.DoomClassic_3275kfvn8vcwc/SystemAppData/wgs": tags: - save when: @@ -154633,14 +155101,14 @@ Doom I Enhanced: installDir: Ultimate Doom: {} launch: - /base/dosbox.exe: - - arguments: '-conf base\\ultimatem.conf -fullscreen -exit' + "/base/dosbox.exe": + - arguments: "-conf base\\\\ultimatem.conf -fullscreen -exit" when: - store: steam - - arguments: '-conf base\\ultimate.conf -fullscreen -exit' + - arguments: "-conf base\\\\ultimate.conf -fullscreen -exit" when: - store: steam - /rerelease/DOOM.exe: + "/rerelease/DOOM.exe": - when: - bit: 64 store: steam @@ -154652,12 +155120,12 @@ Doom I Enhanced: id: 2280 Doom II Enhanced: files: - /Saved Games/id Software/DOOM 2/playerSave.dat: + "/Saved Games/id Software/DOOM 2/playerSave.dat": tags: - save when: - os: windows - /Packages/BethesdaSoftworks.DoomIIClassic_3275kfvn8vcwc/SystemAppData/wgs: + "/Packages/BethesdaSoftworks.DoomIIClassic_3275kfvn8vcwc/SystemAppData/wgs": tags: - save when: @@ -154668,13 +155136,13 @@ Doom II Enhanced: installDir: Doom 2: {} launch: - /doom2 + mouse.bat: + "/doom2 + mouse.bat": - when: - store: steam - /doom2.bat: + "/doom2.bat": - when: - store: steam - /rerelease/DOOM II.exe: + "/rerelease/DOOM II.exe": - when: - bit: 64 store: steam @@ -154684,40 +155152,35 @@ Doom II Enhanced: - config steam: id: 2300 -'Doom II: Hell on Earth': +"Doom II: Hell on Earth": files: - /DOOM2: + "/DOOM2": tags: - config - save when: - os: dos - /Doom II for Windows 95: + "/Doom II for Windows 95": tags: - config - save when: - os: windows - /base/*.CFG: + "/base/*.CFG": tags: - config when: - store: steam - /base/*.DSG: + "/base/*.DSG": tags: - save when: - store: steam - /base/*.conf: + "/base/*.conf": tags: - config when: - store: steam - /Saved Games/GZDoom/doom.id.doom2.commercial: - tags: - - save - when: - - os: windows gog: id: 1440161275 id: @@ -154728,13 +155191,13 @@ Doom II Enhanced: installDir: Doom 2: {} launch: - /doom2 + mouse.bat: + "/doom2 + mouse.bat": - when: - store: steam - /doom2.bat: + "/doom2.bat": - when: - store: steam - /rerelease/DOOM II.exe: + "/rerelease/DOOM II.exe": - when: - bit: 64 store: steam @@ -154744,14 +155207,14 @@ Doom Rails: installDir: Doom Rails: {} launch: - /Doom Rails.exe: + "/Doom Rails.exe": - when: - store: steam steam: id: 41400 Doom VFR: files: - /Saved Games/id Software/DOOM_VFR/base/savegame.user/: + "/Saved Games/id Software/DOOM_VFR/base/savegame.user/": tags: - save when: @@ -154764,7 +155227,7 @@ Doom of the Clawn: installDir: WindowsNoEditor: {} launch: - /WindowsNoEditor/Doom.exe: + "/WindowsNoEditor/Doom.exe": - when: - store: steam steam: @@ -154773,7 +155236,7 @@ DoomAI: installDir: DoomAI: {} launch: - /Release.win32/DoomAI.exe: + "/Release.win32/DoomAI.exe": - when: - os: windows store: steam @@ -154781,12 +155244,12 @@ DoomAI: id: 1065920 Doombringer: files: - /Saved Games/doombringer/dbdata/*.sav: + "/Saved Games/doombringer/dbdata/*.sav": tags: - save when: - os: windows - /Saved Games/doombringer/dbdata/config.cfg: + "/Saved Games/doombringer/dbdata/config.cfg": tags: - config when: @@ -154794,31 +155257,31 @@ Doombringer: installDir: DOOMBRINGER: {} launch: - /doombringer-lx: + "/doombringer-lx": - when: - bit: 64 os: linux store: steam - /doombringer_launcher.exe: + "/doombringer_launcher.exe": - when: - bit: 64 os: windows store: steam steam: id: 1156120 -Doomdark's Revenge: +"Doomdark's Revenge": files: - /LOM-*.GAM: + "/LOM-*.GAM": tags: - save when: - os: dos - /settings.cfg: + "/settings.cfg": tags: - config when: - os: windows - /story: + "/story": tags: - save when: @@ -154829,7 +155292,7 @@ Doomed: installDir: DOOMED: {} launch: - /Launcher.exe: + "/Launcher.exe": - when: - os: windows store: steam @@ -154838,11 +155301,11 @@ Doomed: Doomed Kingdoms: steam: id: 558810 -Doomed'n Damned: +"Doomed'n Damned": installDir: Doomedndamned: {} launch: - /doomedndamned.exe: + "/doomedndamned.exe": - when: - os: windows store: steam @@ -154852,13 +155315,13 @@ Doomsday Ark: installDir: DeliveryFromThePain: {} launch: - /DeliveryFromThePain.exe: + "/DeliveryFromThePain.exe": - when: - os: windows store: steam steam: id: 685340 -'Doomsday Survival: Training': +"Doomsday Survival: Training": installDir: Doomsday Survival Training: {} steam: @@ -154867,11 +155330,11 @@ Doomsday Vault: installDir: Doomsday Vault: {} launch: - /Doomsday Vault.exe: + "/Doomsday Vault.exe": - when: - os: windows store: steam - /DoomsdayVault.app: + "/DoomsdayVault.app": - when: - os: mac store: steam @@ -154881,15 +155344,15 @@ Doomsday on Demand: installDir: Doomsday on Demand: {} launch: - /Doomsday on Demand.app/Contents/MacOS/Doomsday on Demand: + "/Doomsday on Demand.app/Contents/MacOS/Doomsday on Demand": - when: - os: mac store: steam - /DoomsdayOnDemand: + "/DoomsdayOnDemand": - when: - os: linux store: steam - /DoomsdayOnDemand.exe: + "/DoomsdayOnDemand.exe": - when: - os: windows store: steam @@ -154899,15 +155362,15 @@ Doomsday on Demand 2: installDir: Doomsday on Demand 2: {} launch: - /Doomsday on Demand 2.app/Contents/MacOS/Doomsday on Demand 2: + "/Doomsday on Demand 2.app/Contents/MacOS/Doomsday on Demand 2": - when: - os: mac store: steam - /DoomsdayOnDemand2: + "/DoomsdayOnDemand2": - when: - os: linux store: steam - /DoomsdayOnDemand2.exe: + "/DoomsdayOnDemand2.exe": - when: - os: windows store: steam @@ -154917,16 +155380,16 @@ Doomtrooper: installDir: doomtrooper: {} launch: - /Doomtrooper.app/Contents/MacOS/doomtrooper: + "/Doomtrooper.app/Contents/MacOS/doomtrooper": - when: - os: mac store: steam - /doomtrooper: + "/doomtrooper": - when: - bit: 64 os: linux store: steam - /doomtrooper.exe: + "/doomtrooper.exe": - when: - bit: 64 os: windows @@ -154942,7 +155405,7 @@ Door: installDir: Doors: {} launch: - /Door.exe: + "/Door.exe": - when: - os: windows store: steam @@ -154950,32 +155413,32 @@ Door: id: 882560 Door Kickers: files: - /.local/share/DoorKickers: + "/.local/share/DoorKickers": tags: - save when: - os: linux - /.local/share/DoorKickers/options.xml OR ~/DoorKickers/options.xml: + "/.local/share/DoorKickers/options.xml OR ~/DoorKickers/options.xml": tags: - config when: - os: linux - /Library/Application Support/DoorKickers: + "/Library/Application Support/DoorKickers": tags: - save when: - os: mac - /Library/Application Support/DoorKickers/options.xml: + "/Library/Application Support/DoorKickers/options.xml": tags: - config when: - os: mac - /KillHouseGames/DoorKickers: + "/KillHouseGames/DoorKickers": tags: - save when: - os: windows - /KillHouseGames/DoorKickers/options.xml: + "/KillHouseGames/DoorKickers/options.xml": tags: - config when: @@ -154985,23 +155448,23 @@ Door Kickers: installDir: DoorKickers: {} launch: - /DoorKickers: + "/DoorKickers": - when: - os: linux store: steam - /DoorKickers.app/Contents/MacOS/DoorKickers: + "/DoorKickers.app/Contents/MacOS/DoorKickers": - when: - os: mac store: steam - /DoorKickers.exe: + "/DoorKickers.exe": - when: - os: windows store: steam steam: id: 248610 -'Door Kickers 2: Task Force North': +"Door Kickers 2: Task Force North": files: - /KillHouseGames/DoorKickers2: + "/KillHouseGames/DoorKickers2": tags: - config - save @@ -155010,26 +155473,26 @@ Door Kickers: installDir: DoorKickers2: {} launch: - /DoorKickers2.exe: + "/DoorKickers2.exe": - when: - bit: 64 os: windows store: steam - /win32_runtime/DoorKickers2.exe: + "/win32_runtime/DoorKickers2.exe": - when: - bit: 32 os: windows store: steam steam: id: 1239080 -'Door Kickers: Action Squad': +"Door Kickers: Action Squad": files: - /KillHouseGames/ActionSquad/options.xml: + "/KillHouseGames/ActionSquad/options.xml": tags: - config when: - os: windows - /KillHouseGames/ActionSquad/userdata.bin: + "/KillHouseGames/ActionSquad/userdata.bin": tags: - save when: @@ -155039,7 +155502,7 @@ Door Kickers: installDir: Door Kickers - Action Squad: {} launch: - /ActionSquad.exe: + "/ActionSquad.exe": - when: - os: windows store: steam @@ -155049,7 +155512,7 @@ Door To Door: installDir: Door To Door: {} launch: - /Binaries/Win32/DoorToDoor.exe: + "/Binaries/Win32/DoorToDoor.exe": - when: - os: windows store: steam @@ -155059,16 +155522,16 @@ Door in the Woods: installDir: Door in the Woods: {} launch: - /Door in the Woods.exe: + "/Door in the Woods.exe": - when: - store: steam steam: id: 1189230 -'Door2:Key': +"Door2:Key": installDir: Door2Key: {} launch: - /Door_next.exe: + "/Door_next.exe": - when: - os: windows store: steam @@ -155078,11 +155541,11 @@ Doors: installDir: Doors: {} launch: - /doors.app: + "/doors.app": - when: - os: mac store: steam - /doors.exe: + "/doors.exe": - when: - os: windows store: steam @@ -155092,7 +155555,7 @@ Doors & Rooms: installDir: Doors&Rooms: {} launch: - /DoorsAndRooms.exe: + "/DoorsAndRooms.exe": - when: - os: windows store: steam @@ -155102,7 +155565,7 @@ Doors Push or Pull: installDir: Doors Push or Pull: {} launch: - /doors.exe: + "/doors.exe": - when: - os: windows store: steam @@ -155112,7 +155575,7 @@ Doors Quest Demo: installDir: Doors Quest Demo: {} launch: - /Doors Quest Demo.exe: + "/Doors Quest Demo.exe": - when: - os: windows store: steam @@ -155126,29 +155589,29 @@ Doors of Silence - the prologue: Doors to the City: steam: id: 879300 -'Doorways: Holy Mountains of Flesh': +"Doorways: Holy Mountains of Flesh": files: - /Doorways Holy Mountains of Flesh/Doorways_Data/config: + "/Doorways Holy Mountains of Flesh/Doorways_Data/config": tags: - config when: - os: linux - /Doorways Holy Mountains of Flesh/Doorways_Data/saves: + "/Doorways Holy Mountains of Flesh/Doorways_Data/saves": tags: - save when: - os: linux - /Doorways_Data/config: + "/Doorways_Data/config": tags: - config when: - os: windows - /Doorways_Data/saves: + "/Doorways_Data/saves": tags: - save when: - os: windows - /unity3d/Saibot Studios/Doorways_ Holy Mountains of Flesh/prefs: + "/unity3d/Saibot Studios/Doorways_ Holy Mountains of Flesh/prefs": tags: - config when: @@ -155156,29 +155619,29 @@ Doors to the City: installDir: Doorways Holy Mountains of Flesh: {} launch: - /Doorways.app: + "/Doorways.app": - when: - os: mac store: steam - /Doorways.exe: + "/Doorways.exe": - when: - os: windows store: steam - workingDir: /Doorways_Data - /Doorways.x86: + workingDir: "/Doorways_Data" + "/Doorways.x86": - when: - os: linux store: steam - workingDir: /Doorways_Data + workingDir: "/Doorways_Data" registry: - 'HKEY_CURRENT_USER/Software/Saibot Studios/Doorways: Holy Mountains of Flesh': + "HKEY_CURRENT_USER/Software/Saibot Studios/Doorways: Holy Mountains of Flesh": tags: - config steam: id: 383930 -'Doorways: Old Prototype': +"Doorways: Old Prototype": files: - '/.config/unity3d/Saibot Studios/Doorways: Old Prototype/prefs': + "/.config/unity3d/Saibot Studios/Doorways: Old Prototype/prefs": tags: - config when: @@ -155186,64 +155649,64 @@ Doors to the City: installDir: Doorways Old Prototype: {} launch: - /Doorways.app: + "/Doorways.app": - when: - os: mac store: steam - /Doorways.exe: + "/Doorways.exe": - when: - os: windows store: steam - workingDir: /Doorways_Data - /Doorways.x86: + workingDir: "/Doorways_Data" + "/Doorways.x86": - when: - os: linux store: steam - workingDir: /Doorways_Data + workingDir: "/Doorways_Data" registry: - 'HKEY_CURRENT_USER/Software/Saibot Studios/Doorways: Old Prototype': + "HKEY_CURRENT_USER/Software/Saibot Studios/Doorways: Old Prototype": tags: - config steam: id: 525780 -'Doorways: Prelude': +"Doorways: Prelude": installDir: Doorways Prelude: {} launch: - /Doorways.app: + "/Doorways.app": - when: - os: mac store: steam - /Doorways.exe: + "/Doorways.exe": - when: - os: windows store: steam - workingDir: /Doorways_Data - /Doorways.x86: + workingDir: "/Doorways_Data" + "/Doorways.x86": - when: - os: linux store: steam - workingDir: /Doorways_Data + workingDir: "/Doorways_Data" steam: id: 248470 -'Doorways: The Underworld': +"Doorways: The Underworld": installDir: Doorways The Underworld: {} launch: - /Doorways.app: + "/Doorways.app": - when: - os: mac store: steam - /Doorways.exe: + "/Doorways.exe": - when: - os: windows store: steam - workingDir: /Doorways_Data - /Doorways.x86: + workingDir: "/Doorways_Data" + "/Doorways.x86": - when: - os: linux store: steam - workingDir: /Doorways_Data + workingDir: "/Doorways_Data" steam: id: 311250 Dopamine: @@ -155255,33 +155718,33 @@ DoraKone: installDir: DoraKone: {} launch: - /DoraKone.app/Contents/MacOS/DoraKone: + "/DoraKone.app/Contents/MacOS/DoraKone": - when: - os: mac store: steam - /DoraKone.exe: + "/DoraKone.exe": - when: - os: windows store: steam - /DoraKone.sh: + "/DoraKone.sh": - when: - os: linux store: steam steam: id: 1034880 -'Doraemon Story of Seasons: Friends of the Great Kingdom': +"Doraemon Story of Seasons: Friends of the Great Kingdom": installDir: DORAEMON STORY OF SEASONS FotGK: {} launch: - /DORAEMON STORY OF SEASONS FotGK.exe: + "/DORAEMON STORY OF SEASONS FotGK.exe": - when: - os: windows store: steam steam: id: 1492730 -'Doraemon: Story of Seasons': +"Doraemon: Story of Seasons": files: - /userdata//965230/local: + "/userdata//965230/local": tags: - save when: @@ -155290,14 +155753,14 @@ DoraKone: installDir: DORAEMON STORY OF SEASONS: {} launch: - /DORaEMON STORY OF SEASONS.exe: + "/DORaEMON STORY OF SEASONS.exe": - when: - store: steam steam: id: 965230 Dorfromantik: files: - /AppData/LocalLow/Toukana Interactive/Dorfromantik/Saves: + "/AppData/LocalLow/Toukana Interactive/Dorfromantik/Saves": tags: - config - save @@ -155313,7 +155776,7 @@ Dorfromantik: installDir: Dorfromantik: {} launch: - /Dorfromantik.exe: + "/Dorfromantik.exe": - when: - os: windows store: steam @@ -155323,7 +155786,7 @@ Dorian Morris Adventure: installDir: Dorian Morris Adventure: {} launch: - /Dorian Morris - Adventure Game.exe: + "/Dorian Morris - Adventure Game.exe": - when: - os: windows store: steam @@ -155341,7 +155804,7 @@ Dorke and Ymp: installDir: Dorke and Ymp: {} launch: - /dorke and imp.exe: + "/dorke and imp.exe": - when: - os: windows store: steam @@ -155351,7 +155814,7 @@ Dormant World: installDir: Dormant World: {} launch: - /Dormant World.exe: + "/Dormant World.exe": - when: - os: windows store: steam @@ -155361,7 +155824,7 @@ Dot to Dot Puzzles: installDir: Dot to Dot Puzzles: {} launch: - /dotsadult.exe: + "/dotsadult.exe": - when: - os: windows store: steam @@ -155371,15 +155834,15 @@ DotLine: installDir: DotLine: {} launch: - /DotLine.app/Contents/MacOS/DotLine: + "/DotLine.app/Contents/MacOS/DotLine": - when: - os: mac store: steam - /dotline: + "/dotline": - when: - os: linux store: steam - /dotline.exe: + "/dotline.exe": - when: - os: windows store: steam @@ -155389,7 +155852,7 @@ DotX: installDir: DotX: {} launch: - /DotX.exe: + "/DotX.exe": - when: - os: windows store: steam @@ -155397,38 +155860,37 @@ DotX: id: 954420 Dota 2: files: - /dota/cfg: + "/dota/cfg": tags: - config when: - store: steam id: steamExtra: - - 1241930 - 652720 + - 1241930 installDir: dota 2 beta: {} launch: - /game/bin/win64/dota2.exe: - - arguments: >- - -steam +engine_experimental_drop_frame_ticks 1 +voice_fadeouttime 0 -prewarm_panorama - +@panorama_experimental_overdraw_prevention 0 + "/game/bin/win64/dota2.exe": + - arguments: "-steam +engine_experimental_drop_frame_ticks 1 +voice_fadeouttime 0 -prewarm_panorama +@panorama_experimental_overdraw_prevention 0" when: - bit: 64 os: windows store: steam - /game/dota.sh: - - arguments: >- - +engine_experimental_drop_frame_ticks 1 +@panorama_min_comp_layer_dimension 0 -prewarm_panorama - +@panorama_experimental_overdraw_prevention 0 + "/game/dota.sh": + - arguments: +engine_experimental_drop_frame_ticks 1 +@panorama_min_comp_layer_dimension 0 -prewarm_panorama +@panorama_experimental_overdraw_prevention 0 when: - os: mac store: steam + - bit: 64 + os: linux + store: steam steam: id: 570 Dota Underlords: files: - /game/dac/cfg: + "/game/dac/cfg": tags: - config when: @@ -155436,25 +155898,28 @@ Dota Underlords: installDir: Underlords: {} launch: - /game/bin/win64/underlords.exe: - - arguments: '-steam -consolelog -conrotate 3' + "/game/bin/win64/underlords.exe": + - arguments: "-steam -consolelog -conrotate 3" when: - bit: 64 os: windows store: steam - workingDir: /game/dac - /game/underlords.sh: - - arguments: '-steam -vulkan -consolelog -conrotate 3' + workingDir: "/game/dac" + "/game/underlords.sh": + - arguments: "-steam -vulkan -consolelog -conrotate 3" when: - os: mac store: steam + - bit: 64 + os: linux + store: steam steam: id: 1046930 Dotori: installDir: DOTORI: {} launch: - /DOTORI.exe: + "/DOTORI.exe": - when: - os: windows store: steam @@ -155463,11 +155928,11 @@ Dotori: Dots: steam: id: 760820 -'Dots Pop : Sexy Hentai Girls': +"Dots Pop : Sexy Hentai Girls": installDir: dotsPopSHG: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -155477,25 +155942,25 @@ Dots eXtreme: installDir: Dots eXtreme: {} launch: - /DotsXtreme: + "/DotsXtreme": - when: - os: linux store: steam - /DotsXtreme.app: + "/DotsXtreme.app": - when: - os: mac store: steam - /DotsXtreme.exe: + "/DotsXtreme.exe": - when: - os: windows store: steam steam: id: 521130 -'Dots: Revamped!': +"Dots: Revamped!": installDir: dotsRevamped: {} launch: - /dots-revamped.exe: + "/dots-revamped.exe": - when: - os: windows store: steam @@ -155505,28 +155970,30 @@ Double: installDir: Double: {} launch: - /Double.exe: + "/Double.exe": - when: - os: windows store: steam steam: id: 887820 -'Double Action: Boogaloo': +"Double Action: Boogaloo": installDir: Double Action: {} launch: - /bin/hammer.exe: + "/bin/hammer.exe": - when: - os: windows store: steam - /hl2.exe: - - arguments: '-game dab' + "/hl2.exe": + - arguments: "-game dab" when: - os: windows store: steam - /hl2.sh: - - arguments: '-game dab' + "/hl2.sh": + - arguments: "-game dab" when: + - os: mac + store: steam - os: linux store: steam steam: @@ -155536,11 +156003,11 @@ Double Bubble Blaster Madness VR: Double Bubble Blaster Madness VR: {} steam: id: 942490 -'Double Clue: Solitaire Stories': +"Double Clue: Solitaire Stories": installDir: Double Clue Solitaire Stories: {} launch: - /Double Clue - Solitaire Stories.exe: + "/Double Clue - Solitaire Stories.exe": - when: - os: windows store: steam @@ -155548,7 +156015,7 @@ Double Bubble Blaster Madness VR: id: 631250 Double Cross: files: - /AppData/LocalLow/13AM Games/DoubleCross: + "/AppData/LocalLow/13AM Games/DoubleCross": tags: - save when: @@ -155556,7 +156023,7 @@ Double Cross: installDir: Double Cross: {} launch: - /DoubleCross.exe: + "/DoubleCross.exe": - when: - os: windows store: steam @@ -155566,7 +156033,7 @@ Double Dealing Character: installDir: th14: {} launch: - /th14.exe: + "/th14.exe": - when: - os: windows store: steam @@ -155578,9 +156045,9 @@ Double Death: Double Dragon Advance: steam: id: 2086360 -'Double Dragon Gaiden: Rise of the Dragons': +"Double Dragon Gaiden: Rise of the Dragons": files: - /AppData/LocalLow/Secret Base/DoubleDragonGaiden_ROTD: + "/AppData/LocalLow/Secret Base/DoubleDragonGaiden_ROTD": tags: - save when: @@ -155588,16 +156055,16 @@ Double Dragon Advance: installDir: DoubleDragonGaiden_ROTD: {} launch: - /DoubleDragonGaiden_ROTD: + "/DoubleDragonGaiden_ROTD": - when: - bit: 64 os: linux store: steam - /DoubleDragonGaiden_ROTD.app/Contents/MacOS/DoubleDragonGaiden_ROTD: + "/DoubleDragonGaiden_ROTD.app/Contents/MacOS/DoubleDragonGaiden_ROTD": - when: - os: mac store: steam - /DoubleDragonGaiden_ROTD.exe: + "/DoubleDragonGaiden_ROTD.exe": - when: - os: windows store: steam @@ -155607,7 +156074,7 @@ Double Dragon IV: installDir: Double Dragon IV: {} launch: - /Sousairyu4.exe: + "/Sousairyu4.exe": - when: - os: windows store: steam @@ -155615,7 +156082,7 @@ Double Dragon IV: id: 528610 Double Dragon Neon: files: - /Wayforward Technologies/DoubleDragon: + "/Wayforward Technologies/DoubleDragon": tags: - save when: @@ -155623,16 +156090,16 @@ Double Dragon Neon: installDir: Double Dragon Neon: {} launch: - /bin/DoubleDragon.exe: + "/bin/DoubleDragon.exe": - when: - os: windows store: steam - workingDir: /bin + workingDir: "/bin" steam: id: 252350 Double Dragon Trilogy: files: - /userdata//314150/remote: + "/userdata//314150/remote": tags: - config - save @@ -155644,7 +156111,7 @@ Double Dragon Trilogy: installDir: Double Dragon Trilogy: {} launch: - /ddtrilogy.exe: + "/ddtrilogy.exe": - when: - os: windows store: steam @@ -155654,7 +156121,7 @@ Double Elf Fantasy: installDir: DoubleElfFantasy: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: @@ -155663,7 +156130,7 @@ Double Head Shark Attack: installDir: Double Head Shark Attack: {} launch: - /twoheadshark.exe: + "/twoheadshark.exe": - when: - os: windows store: steam @@ -155675,11 +156142,11 @@ Double Kick Heroes: installDir: dkh: {} launch: - /DoubleKickHeroes.exe: + "/DoubleKickHeroes.exe": - when: - os: windows store: steam - /dkh.app/dkh: + "/dkh.app/dkh": - when: - os: mac store: steam @@ -155689,21 +156156,21 @@ Double Memory: installDir: Double Memory: {} launch: - /Double Memory.app: + "/Double Memory.app": - when: - os: mac store: steam - /DoubleMemoryMain1b_CC.exe: + "/DoubleMemoryMain1b_CC.exe": - when: - os: windows store: steam steam: id: 676450 -'Double Play: 2-Player VR Baseball': +"Double Play: 2-Player VR Baseball": installDir: Double Play 2-Player VR Baseball: {} launch: - /DoublePlayVR.exe: + "/DoublePlayVR.exe": - when: - os: windows store: steam @@ -155718,7 +156185,7 @@ Double Spoiler: installDir: th125: {} launch: - /th125.exe: + "/th125.exe": - when: - os: windows store: steam @@ -155728,7 +156195,7 @@ Double Stretch: installDir: Double Stretch: {} launch: - /Double Stretch.exe: + "/Double Stretch.exe": - when: - store: steam steam: @@ -155737,7 +156204,7 @@ Double Switch: installDir: Double Switch - 25th Anniversary Edition: {} launch: - /DS25.exe: + "/DS25.exe": - when: - os: windows store: steam @@ -155747,15 +156214,15 @@ Double Turn: installDir: Double Turn: {} launch: - /DoubleTurn: + "/DoubleTurn": - when: - os: linux store: steam - /DoubleTurn.app: + "/DoubleTurn.app": - when: - os: mac store: steam - /DoubleTurn.exe: + "/DoubleTurn.exe": - when: - bit: 64 os: windows @@ -155773,11 +156240,11 @@ DoubleTap: Douche Bag: steam: id: 681650 -Doug Flutie's Maximum Football 2020: +"Doug Flutie's Maximum Football 2020": installDir: - Doug Flutie's Maximum Football 2020: {} + "Doug Flutie's Maximum Football 2020": {} launch: - /Maximum Football 2020.exe: + "/Maximum Football 2020.exe": - when: - bit: 64 os: windows @@ -155788,31 +156255,31 @@ Doug and Lily: installDir: Doug and Lily: {} launch: - /dl.exe: + "/dl.exe": - when: - os: windows store: steam steam: id: 601180 -'Doughlings: Arcade': +"Doughlings: Arcade": installDir: Doughlings: {} launch: - /Doughlings Arcade.app/Contents/MacOS/Doughlings Arcade: + "/Doughlings Arcade.app/Contents/MacOS/Doughlings Arcade": - when: - os: mac store: steam - /Doughlings Arcade.exe: + "/Doughlings Arcade.exe": - when: - os: windows store: steam steam: id: 747470 -'Doughlings: Invasion': +"Doughlings: Invasion": installDir: DoughlingsInvasion: {} launch: - /DoughlingsInvasion.exe: + "/DoughlingsInvasion.exe": - when: - bit: 64 os: windows @@ -155824,7 +156291,7 @@ Doujin Jigsaw Puzzle: id: 890660 Dovetail Games Flight School: files: - /Flight School Files: + "/Flight School Files": tags: - save when: @@ -155832,7 +156299,7 @@ Dovetail Games Flight School: installDir: FlightSchool: {} launch: - /FSc.exe: + "/FSc.exe": - when: - os: windows store: steam @@ -155842,7 +156309,7 @@ Down To One: installDir: Down To One: {} launch: - /DownToOne.exe: + "/DownToOne.exe": - when: - bit: 64 os: windows @@ -155853,7 +156320,7 @@ Down Ward: installDir: Down Ward: {} launch: - /Down Ward.exe: + "/Down Ward.exe": - when: - os: windows store: steam @@ -155865,11 +156332,11 @@ Down in Bermuda: installDir: Down in Bermuda: {} launch: - /DowninBermuda.app: + "/DowninBermuda.app": - when: - os: mac store: steam - /DowninBermuda.exe: + "/DowninBermuda.exe": - when: - bit: 64 os: windows @@ -155885,17 +156352,17 @@ Down to Hell: installDir: Down to Hell: {} launch: - /DownToHell.app/Contents/MacOS/DownToHell: + "/DownToHell.app/Contents/MacOS/DownToHell": - when: - os: mac store: steam - /DownToHell.exe: + "/DownToHell.exe": - when: - os: windows store: steam steam: id: 961040 -'DownStream: VR Whitewater Kayaking': +"DownStream: VR Whitewater Kayaking": installDir: DownStream: {} steam: @@ -155907,7 +156374,7 @@ Downbreak: installDir: Downbreak: {} launch: - /downbreak.exe: + "/downbreak.exe": - when: - os: windows store: steam @@ -155915,28 +156382,30 @@ Downbreak: id: 667790 Downfall: files: - /acsetup.cfg: + "/acsetup.cfg": tags: - config when: - os: windows - os: linux - /Saved Games/Downfall (2016): + "/Saved Games/Downfall (2016)": tags: - save when: - os: windows - /Saved Games/Downfall (2016) Steam/acsetup.cfg: + "/Saved Games/Downfall (2016) Steam/acsetup.cfg": tags: - config when: - - store: steam - /Saved Games/Downfall (2016) Steam/agssave.*: + - os: windows + store: steam + "/Saved Games/Downfall (2016) Steam/agssave.*": tags: - save when: - - store: steam - /ags/Downfall (2016) Steam: + - os: windows + store: steam + "/ags/Downfall (2016) Steam": tags: - save when: @@ -155946,23 +156415,23 @@ Downfall: installDir: Downfall: {} launch: - /DOWNFALL.exe: + "/DOWNFALL.exe": - when: - os: windows store: steam - - arguments: '--setup' + - arguments: "--setup" when: - os: windows store: steam - /Downfall: + "/Downfall": - when: - os: linux store: steam - /downfall_2009/Downfall.exe: + "/downfall_2009/Downfall.exe": - when: - os: windows store: steam - /downfall_2009/winsetup.exe: + "/downfall_2009/winsetup.exe": - when: - os: windows store: steam @@ -155970,12 +156439,12 @@ Downfall: id: 364390 Downfall (2009): files: - /acsetup.cfg: + "/acsetup.cfg": tags: - config when: - os: windows - /agssave.*: + "/agssave.*": tags: - save when: @@ -155986,25 +156455,25 @@ Downhill Deceits: installDir: Downhill Deceits: {} launch: - /Downhill Deceits.app: + "/Downhill Deceits.app": - when: - os: mac store: steam - /Downhill Deceits.exe: + "/Downhill Deceits.exe": - when: - os: windows store: steam - /Downhill Deceits.x86: + "/Downhill Deceits.x86": - when: - os: linux store: steam steam: id: 825350 -'Downloaded: Fragments of a Forgotten Soul': +"Downloaded: Fragments of a Forgotten Soul": installDir: Downloaded: {} launch: - /monkey.exe: + "/monkey.exe": - when: - os: windows store: steam @@ -156014,38 +156483,38 @@ Downpour: installDir: Downpour: {} launch: - /Downpour.exe: + "/Downpour.exe": - when: - os: windows store: steam steam: id: 371400 -Downstairs at Grandma's House: +"Downstairs at Grandma's House": steam: id: 749750 Downtown: installDir: Downtown DarkRP: {} launch: - /SteamRPG.exe: + "/SteamRPG.exe": - when: - os: windows store: steam - /SteamRPG/Binaries/Win64/DedicatedServer.exe: - - arguments: '-log' + "/SteamRPG/Binaries/Win64/DedicatedServer.exe": + - arguments: "-log" when: - store: steam steam: id: 833380 -'Downtown Casino: Texas Hold''em Poker': +"Downtown Casino: Texas Hold'em Poker": installDir: PokerLegends: {} launch: - /PokerLegends.app: + "/PokerLegends.app": - when: - os: mac store: steam - /PokerLegends.exe: + "/PokerLegends.exe": - when: - os: windows store: steam @@ -156055,7 +156524,7 @@ Downtown Drift: installDir: Downtown Drift: {} launch: - /Downtown Drift.exe: + "/Downtown Drift.exe": - when: - bit: 64 os: windows @@ -156066,26 +156535,26 @@ Downtown Jam: installDir: Downtown Jam: {} launch: - /DownTown Jam.exe: + "/DownTown Jam.exe": - when: - os: windows store: steam steam: id: 2010960 -'Downtown Mafia: Gang Wars': +"Downtown Mafia: Gang Wars": installDir: dtmafia: {} launch: - /dtmafia: + "/dtmafia": - when: - bit: 64 os: linux store: steam - /dtmafia.app: + "/dtmafia.app": - when: - os: mac store: steam - /dtmafia.exe: + "/dtmafia.exe": - when: - os: windows store: steam @@ -156093,24 +156562,24 @@ Downtown Jam: id: 889730 Downtown Run: files: - /data/save/Main.cfg: + "/data/save/Main.cfg": tags: - config when: - os: windows - /data/save/players.cfg: + "/data/save/players.cfg": tags: - save when: - os: windows Downward: files: - /Downward/Saved/Config/WindowsNoEditor: + "/Downward/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /Downward/Saved/SaveGames: + "/Downward/Saved/SaveGames": tags: - save when: @@ -156118,33 +156587,33 @@ Downward: installDir: Downward: {} launch: - /Downward.exe: + "/Downward.exe": - when: - os: windows store: steam - /Downward/Binaries/Linux/Downward: + "/Downward/Binaries/Linux/Downward": - when: - os: linux store: steam steam: id: 506900 -'Downward Spiral: Horus Station': +"Downward Spiral: Horus Station": installDir: Downward Spiral Horus Station: {} launch: - /DownwardSpiral.exe: + "/DownwardSpiral.exe": - when: - store: steam steam: id: 690620 -'Downward Spiral: Prologue': +"Downward Spiral: Prologue": installDir: Downward Spiral: {} steam: id: 574940 Downwell: files: - /Downwell_v1_0_5/save.ini: + "/Downwell_v1_0_5/save.ini": tags: - config - save @@ -156155,27 +156624,27 @@ Downwell: installDir: Downwell: {} launch: - /downwell.exe: + "/downwell.exe": - when: - os: windows store: steam steam: id: 360740 -'Dr Dick Dong: Stripper Underworld': +"Dr Dick Dong: Stripper Underworld": steam: id: 1217950 Dr Greenstuff: installDir: Dr Greenstuff: {} launch: - /DrGreenstuff.exe: + "/DrGreenstuff.exe": - when: - store: steam steam: id: 892380 -'Dr Livingstone, I Presume?': +"Dr Livingstone, I Presume?": files: - /DrLivingstone/Saved: + "/DrLivingstone/Saved": tags: - save when: @@ -156193,9 +156662,9 @@ Dr Greenstuff: - 1640530 - 1640620 installDir: - 'Dr Livingstone, I Presume': {} + "Dr Livingstone, I Presume": {} launch: - /DrLivingstone.exe: + "/DrLivingstone.exe": - when: - bit: 64 os: windows @@ -156206,35 +156675,35 @@ Dr. Bulbaceous: installDir: DrBulbaceous: {} launch: - /gamecake.exe: + "/gamecake.exe": - when: - os: windows store: steam - /gamecake.osx: + "/gamecake.osx": - when: - os: mac store: steam - /gamecake.x32: + "/gamecake.x32": - when: - bit: 32 os: linux store: steam - /gamecake.x64: + "/gamecake.x64": - when: - bit: 64 os: linux store: steam steam: id: 388540 -Dr. Cares - Amy's Pet Clinic: +"Dr. Cares - Amy's Pet Clinic": installDir: - Dr. Cares 2 - Amy's Pet Clinic: {} + "Dr. Cares 2 - Amy's Pet Clinic": {} launch: - /Dr. Cares 2.app/Contents/MacOS/Dr. Cares 2: + "/Dr. Cares 2.app/Contents/MacOS/Dr. Cares 2": - when: - os: mac store: steam - /DrCares2.exe: + "/DrCares2.exe": - when: - os: windows store: steam @@ -156244,11 +156713,11 @@ Dr. Cares - Family Practice: installDir: Dr. Cares 3 - Family Practice: {} launch: - /Dr. Cares 3 Steam.app/Contents/MacOS/Dr. Cares 3 Steam: + "/Dr. Cares 3 Steam.app/Contents/MacOS/Dr. Cares 3 Steam": - when: - os: mac store: steam - /DrCares3ReleaseSteam.exe: + "/DrCares3ReleaseSteam.exe": - when: - os: windows store: steam @@ -156258,11 +156727,11 @@ Dr. Cares - Pet Rescue 911: installDir: Dr. Cares - Pet Rescue 911: {} launch: - /DrCares.app: + "/DrCares.app": - when: - os: mac store: steam - /DrCares.exe: + "/DrCares.exe": - when: - os: windows store: steam @@ -156272,7 +156741,7 @@ Dr. Daisy Pet Vet: installDir: Dr Daisy: {} launch: - /daisy.exe: + "/daisy.exe": - when: - store: steam steam: @@ -156281,23 +156750,23 @@ Dr. Doyle & The Mystery of the Cloche Hat: installDir: Dr Doyle - Mystery Of The Cloche Hat: {} launch: - /DrDoyle.exe: + "/DrDoyle.exe": - when: - os: windows store: steam steam: id: 574420 -Dr. Dungeon's Madman!: +"Dr. Dungeon's Madman!": installDir: - Dr. Dungeon's MADMAN!: {} + "Dr. Dungeon's MADMAN!": {} launch: - /mmmainv13.exe: + "/mmmainv13.exe": - when: - os: windows store: steam steam: id: 684570 -Dr. Emmerson's Nocturnes: +"Dr. Emmerson's Nocturnes": gog: id: 1783507957 id: @@ -156307,14 +156776,14 @@ Dr. Emmerson's Nocturnes: - 2643510 steam: id: 2361560 -Dr. Fetus' Mean Meat Machine: +"Dr. Fetus' Mean Meat Machine": files: - /AppData/LocalLow/Thunderful/Dr. Fetus' Mean Meat Machine: + "/AppData/LocalLow/Thunderful/Dr. Fetus' Mean Meat Machine": tags: - save when: - os: windows - /AppData/LocalLow/Thunderful/Dr. Fetus' Mean Meat Machine/AppSettings.dat: + "/AppData/LocalLow/Thunderful/Dr. Fetus' Mean Meat Machine/AppSettings.dat": tags: - config when: @@ -156324,25 +156793,25 @@ Dr. Fetus' Mean Meat Machine: installDir: Dr. Fetus Mean Meat Machine: {} launch: - /Dr. Fetus' Mean Meat Machine.exe: + "/Dr. Fetus' Mean Meat Machine.exe": - when: - os: windows store: steam steam: id: 2228030 -Dr. Fizzgigious' Fantabulous Carbon Dating Simulacrum: +"Dr. Fizzgigious' Fantabulous Carbon Dating Simulacrum": installDir: Dr Fizzgigious Carbon Dating: {} launch: - /Dr_Fizzgigious_Carbon_Dating-1.0-win/Dr_Fizzgigious_Carbon_Dating.exe: + "/Dr_Fizzgigious_Carbon_Dating-1.0-win/Dr_Fizzgigious_Carbon_Dating.exe": - when: - os: windows store: steam steam: id: 711500 -Dr. Frank's Build a Boyfriend: +"Dr. Frank's Build a Boyfriend": files: - /game/saves: + "/game/saves": tags: - save when: @@ -156350,15 +156819,15 @@ Dr. Frank's Build a Boyfriend: installDir: Dr._Frank_Build_A_Boyfriend: {} launch: - /Dr._Frank_1.0.app: + "/Dr._Frank_1.0.app": - when: - os: mac store: steam - /Dr._Frank_1.0.exe: + "/Dr._Frank_1.0.exe": - when: - os: windows store: steam - /Dr._Frank_1.0.sh: + "/Dr._Frank_1.0.sh": - when: - os: linux store: steam @@ -156368,26 +156837,26 @@ Dr. Green: installDir: Dr.Green: {} launch: - /Dr.Green.exe: + "/Dr.Green.exe": - when: - os: windows store: steam steam: id: 340290 -'Dr. Langeskov, The Tiger, and The Terribly Cursed Emerald: A Whirlwind Heist': +"Dr. Langeskov, The Tiger, and The Terribly Cursed Emerald: A Whirlwind Heist": installDir: Dr Langeskov The Tiger and The Terribly Cursed Emerald A Whirlwind Heist: {} launch: - /DrLangeskov.app/Contents/MacOS/DrLangeskov: + "/DrLangeskov.app/Contents/MacOS/DrLangeskov": - when: - os: mac store: steam - /DrLangeskov.exe: + "/DrLangeskov.exe": - when: - os: windows store: steam registry: - 'HKEY_CURRENT_USER/SOFTWARE/CrowsCrowsCrows/Dr. Langeskov, The Tiger, and The Terribly Cursed Emerald': + "HKEY_CURRENT_USER/SOFTWARE/CrowsCrowsCrows/Dr. Langeskov, The Tiger, and The Terribly Cursed Emerald": tags: - config steam: @@ -156396,53 +156865,53 @@ Dr. Pills: installDir: Dr. Pills: {} launch: - /Dr. Pills.app/Contents/MacOS/Dr. Pills: + "/Dr. Pills.app/Contents/MacOS/Dr. Pills": - when: - os: mac store: steam - /Dr. Pills.exe: + "/Dr. Pills.exe": - when: - os: windows store: steam - /Dr. Pills.x86: + "/Dr. Pills.x86": - when: - os: linux store: steam steam: id: 836790 -Dr. Robotnik's Mean Bean Machine: +"Dr. Robotnik's Mean Bean Machine": files: - /SEGA Genesis Classics/0014: + "/SEGA Genesis Classics/0014": tags: - save when: - os: windows - /SEGA Genesis Classics/setup.dat: + "/SEGA Genesis Classics/setup.dat": tags: - config when: - os: windows - /SEGA Mega Drive Classics/0014: + "/SEGA Mega Drive Classics/0014": tags: - save when: - os: windows - /SEGA Mega Drive Classics/setup.dat: + "/SEGA Mega Drive Classics/setup.dat": tags: - config when: - os: windows steam: id: 34286 -Dr. Schplot's Nanobots: +"Dr. Schplot's Nanobots": installDir: DrSchplotsNanobots: {} launch: - /DrSchplotsNanobotsMacSteam.app: + "/DrSchplotsNanobotsMacSteam.app": - when: - os: mac store: steam - /DrSchplotsNanobotsWindowsSteam.exe: + "/DrSchplotsNanobotsWindowsSteam.exe": - when: - os: windows store: steam @@ -156452,20 +156921,20 @@ Dr. Spacezoo: installDir: Dr. Spacezoo: {} launch: - /DrSpacezoo.app/Contents/MacOS/DrSpacezoo: + "/DrSpacezoo.app/Contents/MacOS/DrSpacezoo": - when: - os: mac store: steam - /DrSpacezoo.exe: + "/DrSpacezoo.exe": - when: - os: windows store: steam - /DrSpacezoo.x86: + "/DrSpacezoo.x86": - when: - bit: 32 os: linux store: steam - /DrSpacezoo.x86_64: + "/DrSpacezoo.x86_64": - when: - bit: 64 os: linux @@ -156476,36 +156945,36 @@ Dr. Tacocat: installDir: DrTacocat: {} launch: - /DrTacocat.exe: + "/DrTacocat.exe": - when: - bit: 64 os: windows store: steam steam: id: 1114630 -Dr. Trolley's Problem: +"Dr. Trolley's Problem": installDir: - Dr. Trolley's Problem: {} + "Dr. Trolley's Problem": {} launch: - /DrTrolley.app: + "/DrTrolley.app": - when: - os: mac store: steam - /Trolley.exe: + "/Trolley.exe": - when: - os: windows store: steam steam: id: 773830 -Dr. Umgebung's School of Life: +"Dr. Umgebung's School of Life": installDir: - Dr. Umgebung's School of Life: {} + "Dr. Umgebung's School of Life": {} launch: - /Dr. Umgebung's School of Life.app: + "/Dr. Umgebung's School of Life.app": - when: - os: mac store: steam - /UmgebungPHD.exe: + "/UmgebungPHD.exe": - when: - os: windows store: steam @@ -156516,18 +156985,18 @@ Draco Dux: Draco Dux: {} steam: id: 460730 -Draco's Misfortune: +"Draco's Misfortune": steam: id: 949130 Dracologic: installDir: Dracologic: {} launch: - /Dracologic_G_001.exe: + "/Dracologic_G_001.exe": - when: - os: windows store: steam - /dracologic.app: + "/dracologic.app": - when: - os: mac store: steam @@ -156537,18 +157006,18 @@ Draconian Wars: installDir: Draconian Wars: {} launch: - /DraconianWars.exe: + "/DraconianWars.exe": - when: - os: windows store: steam steam: id: 296590 -'Draconic Echoes: The Ardent War': +"Draconic Echoes: The Ardent War": installDir: Draconic Echoes The Ardent War: {} launch: - /Draconic Echoes The Ardent War.exe: - - arguments: '--in-process-gpu' + "/Draconic Echoes The Ardent War.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam @@ -156563,20 +157032,20 @@ Draconic Route: installDir: Draconic Route: {} launch: - /DraconicRoute.exe: + "/DraconicRoute.exe": - when: - os: windows store: steam steam: id: 1136790 -'Dracula 2: The Last Sanctuary': +"Dracula 2: The Last Sanctuary": files: - /Dracula The Last Sanctuary/options.xml: + "/Dracula The Last Sanctuary/options.xml": tags: - config when: - os: windows - /Dracula The Last Sanctuary/save.xml: + "/Dracula The Last Sanctuary/save.xml": tags: - save when: @@ -156586,24 +157055,24 @@ Draconic Route: installDir: Dracula The Last Sanctuary: {} launch: - /Dracula The Last Sanctuary.app: + "/Dracula The Last Sanctuary.app": - when: - os: mac store: steam - /DraculaTheLastSanctuary.exe: + "/DraculaTheLastSanctuary.exe": - when: - os: windows store: steam steam: id: 289820 -'Dracula 3: The Path of the Dragon': +"Dracula 3: The Path of the Dragon": files: - /Dracula 3/options.xml: + "/Dracula 3/options.xml": tags: - config when: - os: windows - /Dracula 3/save.xml: + "/Dracula 3/save.xml": tags: - save when: @@ -156613,24 +157082,24 @@ Draconic Route: installDir: Dracula The Path of the Dragon: {} launch: - /Dracula 3.app: + "/Dracula 3.app": - when: - os: mac store: steam - /Dracula3.exe: + "/Dracula3.exe": - when: - os: windows store: steam steam: id: 289840 -'Dracula 4: The Shadow of the Dragon': +"Dracula 4: The Shadow of the Dragon": files: - /My Games/Dracula 4 Special Steam Edition/Profile*/options.xml: + "/My Games/Dracula 4 Special Steam Edition/Profile*/options.xml": tags: - config when: - os: windows - /My Games/Dracula 4 Special Steam Edition/Profile*/save.xml: + "/My Games/Dracula 4 Special Steam Edition/Profile*/save.xml": tags: - save when: @@ -156640,24 +157109,24 @@ Draconic Route: installDir: Dracula 5 The Blood Legacy: {} launch: - /Dracula 4 and 5.app: + "/Dracula 4 and 5.app": - when: - os: mac store: steam - /Dracula ODD.exe: + "/Dracula ODD.exe": - when: - os: windows store: steam steam: id: 279560 -'Dracula 5: The Blood Legacy': +"Dracula 5: The Blood Legacy": files: - /My Games/Dracula 5 Special Steam Edition/Profile*/options.xml: + "/My Games/Dracula 5 Special Steam Edition/Profile*/options.xml": tags: - config when: - os: windows - /My Games/Dracula 5 Special Steam Edition/Profile*/save.xml: + "/My Games/Dracula 5 Special Steam Edition/Profile*/save.xml": tags: - save when: @@ -156667,55 +157136,55 @@ Draconic Route: installDir: Dracula 5 The Blood Legacy: {} launch: - /Dracula 4 and 5.app: + "/Dracula 4 and 5.app": - when: - os: mac store: steam - /Dracula ODD.exe: + "/Dracula ODD.exe": - when: - os: windows store: steam steam: id: 279560 -Dracula's Legacy: +"Dracula's Legacy": files: - /DraculaLegacy: + "/DraculaLegacy": tags: - save when: - os: windows - /DraculaLegacy/params.conf: + "/DraculaLegacy/params.conf": tags: - config when: - os: windows installDir: - Dracula's Legacy: {} + "Dracula's Legacy": {} launch: - /DraculaLegacy.app: + "/DraculaLegacy.app": - when: - os: mac store: steam - /DraculaLegacy.exe: + "/DraculaLegacy.exe": - when: - os: windows store: steam steam: id: 396790 -Dracula's Library: +"Dracula's Library": steam: id: 656310 -Dracula's Library 2: +"Dracula's Library 2": steam: id: 765300 -'Dracula: Love Kills': +"Dracula: Love Kills": files: - /Frogwares/Dracula. Love Kills Collector's Edition/save: + "/Frogwares/Dracula. Love Kills Collector's Edition/save": tags: - save when: - os: windows - /Frogwares/Dracula. Love Kills Collector's Edition/setup.ini: + "/Frogwares/Dracula. Love Kills Collector's Edition/setup.ini": tags: - config when: @@ -156725,19 +157194,19 @@ Dracula's Library 2: installDir: Dracula - Love Kills: {} launch: - /Dracula_LoveKills.exe: + "/Dracula_LoveKills.exe": - when: - store: steam steam: id: 252890 -'Dracula: Origin': +"Dracula: Origin": files: - /Games/dracula/save: + "/Games/dracula/save": tags: - save when: - os: windows - /Games/dracula/setup.ini: + "/Games/dracula/setup.ini": tags: - config when: @@ -156747,19 +157216,19 @@ Dracula's Library 2: installDir: Dracula Origin: {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: id: 11050 -'Dracula: The Resurrection': +"Dracula: The Resurrection": files: - /Dracula Resurrection/options.xml: + "/Dracula Resurrection/options.xml": tags: - config when: - os: windows - /Dracula Resurrection/save.xml: + "/Dracula Resurrection/save.xml": tags: - save when: @@ -156769,176 +157238,176 @@ Dracula's Library 2: installDir: Dracula The Resurrection: {} launch: - /Dracula Resurrection.app: + "/Dracula Resurrection.app": - when: - os: mac store: steam - /DraculaResurrection.exe: + "/DraculaResurrection.exe": - when: - os: windows store: steam steam: id: 289800 -'Dracula: Vampires vs. Zombies': +"Dracula: Vampires vs. Zombies": installDir: Dracula Vampires vs. Zombies: {} steam: id: 667010 -'Draft Day Sports: College Basketball 2017': +"Draft Day Sports: College Basketball 2017": installDir: Draft Day Sports College Basketball 2017: {} launch: - /DDSCB2017.exe: + "/DDSCB2017.exe": - when: - os: windows store: steam steam: id: 729310 -'Draft Day Sports: College Basketball 2018': +"Draft Day Sports: College Basketball 2018": installDir: Draft Day Sports College Basketball 2018: {} launch: - /DDSCB2018.exe: + "/DDSCB2018.exe": - when: - os: windows store: steam steam: id: 807730 -'Draft Day Sports: College Basketball 2019': +"Draft Day Sports: College Basketball 2019": installDir: Draft Day Sports College Basketball 2019: {} launch: - /DDSCB19.exe: + "/DDSCB19.exe": - when: - os: windows store: steam steam: id: 1013710 -'Draft Day Sports: College Basketball 3': +"Draft Day Sports: College Basketball 3": installDir: Draft Day Sports College Basketball 3: {} launch: - /DDSCB3.exe: + "/DDSCB3.exe": - when: - store: steam steam: id: 413460 -'Draft Day Sports: College Football 2018': +"Draft Day Sports: College Football 2018": installDir: Draft Day Sports College Football 2018: {} launch: - /DDSCF18.exe: + "/DDSCF18.exe": - when: - os: windows store: steam steam: id: 878710 -'Draft Day Sports: College Football 2019': +"Draft Day Sports: College Football 2019": installDir: Draft Day Sports College Football 2019: {} launch: - /DDSCF19.exe: + "/DDSCF19.exe": - when: - os: windows store: steam steam: id: 1013700 -'Draft Day Sports: College Football 2020': +"Draft Day Sports: College Football 2020": installDir: Draft Day Sports College Football 2020: {} launch: - /DDSCF20.exe: + "/DDSCF20.exe": - when: - os: windows store: steam steam: id: 1225550 -'Draft Day Sports: Pro Basketball 2017': +"Draft Day Sports: Pro Basketball 2017": installDir: Draft Day Sports Pro Basketball 2017: {} launch: - /DDSPB2017.exe: + "/DDSPB2017.exe": - when: - os: windows store: steam steam: id: 544480 -'Draft Day Sports: Pro Basketball 2018': +"Draft Day Sports: Pro Basketball 2018": installDir: Draft Day Sports Pro Basketball 2018: {} launch: - /DDSPB2018.exe: + "/DDSPB2018.exe": - when: - os: windows store: steam steam: id: 745530 -'Draft Day Sports: Pro Basketball 2019': +"Draft Day Sports: Pro Basketball 2019": installDir: Draft Day Sports Pro Basketball 2019: {} launch: - /DDSPB2019.exe: + "/DDSPB2019.exe": - when: - os: windows store: steam steam: id: 971900 -'Draft Day Sports: Pro Basketball 2020': +"Draft Day Sports: Pro Basketball 2020": installDir: Draft Day Sports Pro Basketball 2020: {} launch: - /DDSPB2020.exe: + "/DDSPB2020.exe": - when: - bit: 64 os: windows store: steam steam: id: 1196260 -'Draft Day Sports: Pro Basketball 4': +"Draft Day Sports: Pro Basketball 4": installDir: Draft Day Sports Pro Basketball 4: {} launch: - /DDSPB4.exe: + "/DDSPB4.exe": - when: - os: windows store: steam steam: id: 328870 -'Draft Day Sports: Pro Football 2018': +"Draft Day Sports: Pro Football 2018": installDir: Draft Day Sports Pro Football 2018: {} launch: - /DDSPF18.exe: + "/DDSPF18.exe": - when: - os: windows store: steam steam: id: 782510 -'Draft Day Sports: Pro Football 2019': +"Draft Day Sports: Pro Football 2019": installDir: Draft Day Sports Pro Football 2019: {} launch: - /DDSPF19.exe: + "/DDSPF19.exe": - when: - os: windows store: steam steam: id: 974530 -'Draft Day Sports: Pro Football 2020': +"Draft Day Sports: Pro Football 2020": installDir: Draft Day Sports Pro Football 2020: {} launch: - /DDSPF20.exe: + "/DDSPF20.exe": - when: - os: windows store: steam steam: id: 1124530 -'Draft Day Sports: Pro Golf': +"Draft Day Sports: Pro Golf": installDir: Draft Day Sports Pro Golf: {} launch: - /DDSPG.exe: + "/DDSPG.exe": - when: - os: windows store: steam @@ -156948,16 +157417,16 @@ Drafting Tales: installDir: Drafting Tales: {} launch: - /Drafting Tales.app: + "/Drafting Tales.app": - when: - os: mac store: steam - /Drafting Tales.exe: + "/Drafting Tales.exe": - when: - bit: 64 os: windows store: steam - /Drafting Tales.x86_64: + "/Drafting Tales.x86_64": - when: - bit: 64 os: linux @@ -156968,15 +157437,15 @@ Drag Star!: installDir: Drag Star: {} launch: - /Drag Star.app/Contents/MacOS/Drag Star: + "/Drag Star.app/Contents/MacOS/Drag Star": - when: - os: mac store: steam - /DragStar: + "/DragStar": - when: - os: linux store: steam - /DragStar.exe: + "/DragStar.exe": - when: - os: windows store: steam @@ -156986,15 +157455,15 @@ DragoDino: installDir: DragoDino: {} launch: - /DragoDino.app: + "/DragoDino.app": - when: - os: mac store: steam - /DragoDino.exe: + "/DragoDino.exe": - when: - os: windows store: steam - /DragoDino.x86: + "/DragoDino.x86": - when: - os: linux store: steam @@ -157004,8 +157473,8 @@ Dragomon Hunter: installDir: Dragomon Hunter: {} launch: - /Launcher.exe: - - arguments: '-steam' + "/Launcher.exe": + - arguments: "-steam" when: - os: windows store: steam @@ -157016,22 +157485,22 @@ Dragon Adventure VR: id: 607180 Dragon Age II: files: - /Documents/BioWare/Dragon Age 2/Characters: + "/Documents/BioWare/Dragon Age 2/Characters": tags: - save when: - os: mac - /Documents/BioWare/Dragon Age 2/Settings/DragonAge.ini: + "/Documents/BioWare/Dragon Age 2/Settings/DragonAge.ini": tags: - config when: - os: mac - /BioWare/Dragon Age 2/Characters: + "/BioWare/Dragon Age 2/Characters": tags: - save when: - os: windows - /BioWare/Dragon Age 2/Settings/DragonAge.ini: + "/BioWare/Dragon Age 2/Settings/DragonAge.ini": tags: - config when: @@ -157040,9 +157509,9 @@ Dragon Age II: Dragon Age II: {} steam: id: 1238040 -'Dragon Age: Inquisition': +"Dragon Age: Inquisition": files: - /BioWare/Dragon Age Inquisition/Save: + "/BioWare/Dragon Age Inquisition/Save": tags: - config - save @@ -157052,14 +157521,14 @@ Dragon Age II: Dragon Age Inquisition: {} steam: id: 1222690 -'Dragon Age: Origins': +"Dragon Age: Origins": files: - /BioWare/Dragon Age/Characters: + "/BioWare/Dragon Age/Characters": tags: - save when: - os: windows - /BioWare/Dragon Age/Settings/DragonAge.ini: + "/BioWare/Dragon Age/Settings/DragonAge.ini": tags: - config when: @@ -157073,11 +157542,11 @@ Dragon Age II: installDir: Dragon Age Ultimate Edition: {} launch: - /"docs: + "/\"docs": - when: - store: steam - /DAOriginsLauncher.exe: - - arguments: '' + "/DAOriginsLauncher.exe": + - arguments: "" when: - store: steam steam: @@ -157086,7 +157555,7 @@ Dragon Audit: installDir: Dragon Audit: {} launch: - /DragonAudit.exe: + "/DragonAudit.exe": - when: - store: steam steam: @@ -157095,15 +157564,15 @@ Dragon Awaken: installDir: Dragonawaken: {} launch: - /Dragon Awaken.app: + "/Dragon Awaken.app": - when: - os: mac store: steam - /Dragon Awaken.exe: + "/Dragon Awaken.exe": - when: - os: windows store: steam - /dragon-awaken: + "/dragon-awaken": - when: - os: linux store: steam @@ -157111,27 +157580,27 @@ Dragon Awaken: id: 824300 Dragon Ball FighterZ: files: - /DBFighterZ/Saved/SaveGames//Config.sav: + "/DBFighterZ/Saved/SaveGames//Config.sav": tags: - config when: - os: windows - /DBFighterZ/Saved/SaveGames//REPLAY.sav: + "/DBFighterZ/Saved/SaveGames//REPLAY.sav": tags: - save when: - os: windows - /DBFighterZ/Saved/SaveGames//SYSTEM.sav: + "/DBFighterZ/Saved/SaveGames//SYSTEM.sav": tags: - save when: - os: windows - /DBFighterZ/Saved/SaveGames/Config.sav: + "/DBFighterZ/Saved/SaveGames/Config.sav": tags: - config when: - os: windows - /DBFighterZ/Saved/SaveGames/SYSTEM.sav: + "/DBFighterZ/Saved/SaveGames/SYSTEM.sav": tags: - save when: @@ -157139,7 +157608,7 @@ Dragon Ball FighterZ: installDir: DRAGON BALL FighterZ: {} launch: - /DBFighterZ.exe: + "/DBFighterZ.exe": - when: - bit: 64 os: windows @@ -157148,12 +157617,12 @@ Dragon Ball FighterZ: id: 678950 Dragon Ball Xenoverse: files: - /userdata//323470/remote/DBXV.sav: + "/userdata//323470/remote/DBXV.sav": tags: - save when: - store: steam - /BANDAI NAMCO Games/DB Xenoverse: + "/BANDAI NAMCO Games/DB Xenoverse": tags: - config when: @@ -157164,19 +157633,19 @@ Dragon Ball Xenoverse: installDir: DB Xenoverse: {} launch: - /DBXV.exe: + "/DBXV.exe": - when: - store: steam steam: id: 323470 Dragon Ball Xenoverse 2: files: - /userdata//323470/remote/DBXV21/DBXV2.sav: + "/userdata//323470/remote/DBXV21/DBXV2.sav": tags: - save when: - store: steam - /BANDAI NAMCO Entertainment/DB Xenoverse 2: + "/BANDAI NAMCO Entertainment/DB Xenoverse 2": tags: - config when: @@ -157184,22 +157653,22 @@ Dragon Ball Xenoverse 2: installDir: DB Xenoverse 2: {} launch: - /START.exe: + "/START.exe": - when: - bit: 64 os: windows store: steam steam: id: 454650 -'Dragon Ball Z: Kakarot': +"Dragon Ball Z: Kakarot": files: - /userdata//851850/remote: + "/userdata//851850/remote": tags: - save when: - os: windows store: steam - /AT/Saved/Config/WindowsNoEditor: + "/AT/Saved/Config/WindowsNoEditor": tags: - config when: @@ -157207,16 +157676,16 @@ Dragon Ball Xenoverse 2: installDir: DRAGON BALL Z KAKAROT: {} launch: - /AT.exe: + "/AT.exe": - when: - bit: 64 os: windows store: steam steam: id: 851850 -'Dragon Ball: The Breakers': +"Dragon Ball: The Breakers": files: - /BANDAI NAMCO Entertainment/DRAGON BALL THE BREAKERS/Saved/SaveGames//settings.ini: + "/BANDAI NAMCO Entertainment/DRAGON BALL THE BREAKERS/Saved/SaveGames//settings.ini": tags: - config when: @@ -157224,8 +157693,8 @@ Dragon Ball Xenoverse 2: installDir: DRAGON BALL THE BREAKERS: {} launch: - /start_game.exe: - - arguments: '-use_eac' + "/start_game.exe": + - arguments: "-use_eac" when: - bit: 64 os: windows @@ -157241,11 +157710,11 @@ Dragon Blaze: installDir: Dragon Blaze: {} launch: - /dragonblaze.exe: + "/dragonblaze.exe": - when: - os: windows store: steam - /setting.exe: + "/setting.exe": - when: - os: windows store: steam @@ -157255,8 +157724,8 @@ Dragon Blood: installDir: Dragon Blood: {} launch: - /dragonblood.exe: - - arguments: '--in-process-gpu --disable-transparency' + "/dragonblood.exe": + - arguments: "--in-process-gpu --disable-transparency" when: - os: windows store: steam @@ -157266,7 +157735,7 @@ Dragon Boar and Lady Rabbit: installDir: Dragon Boar and Lady Rabbit: {} launch: - /dragonboarandladyrabbit.exe: + "/dragonboarandladyrabbit.exe": - when: - store: steam steam: @@ -157275,21 +157744,24 @@ Dragon Bros: installDir: Dragon Bros: {} launch: - /DragonBros.app: + "/DragonBros.app": - when: - os: mac store: steam - /DragonBros.exe: + "/DragonBros.exe": - when: - bit: 32 os: windows store: steam - /DragonBros.x86: + - bit: 64 + os: windows + store: steam + "/DragonBros.x86": - when: - bit: 32 os: linux store: steam - /DragonBros.x86_64: + "/DragonBros.x86_64": - when: - bit: 64 os: linux @@ -157300,29 +157772,29 @@ Dragon Caffi: installDir: Dragon Caffi: {} launch: - /Dragon Caffi.app: + "/Dragon Caffi.app": - when: - os: mac store: steam - /Dragon Caffi.exe: + "/Dragon Caffi.exe": - when: - os: windows store: steam - /Dragon_Caffi.x86_64: + "/Dragon_Caffi.x86_64": - when: - os: linux store: steam steam: id: 1943310 -'Dragon Castle: The Board Game': +"Dragon Castle: The Board Game": installDir: Dragon Castle The Board Game: {} launch: - /DragonCastle.app: + "/DragonCastle.app": - when: - os: mac store: steam - /DragonCastle.exe: + "/DragonCastle.exe": - when: - os: windows store: steam @@ -157332,19 +157804,19 @@ Dragon Chase: installDir: Dragon Chase: {} launch: - /DragonChase.app/Contents/MacOS/DragonChase: + "/DragonChase.app/Contents/MacOS/DragonChase": - when: - store: steam - /DragonChase.exe: + "/DragonChase.exe": - when: - os: windows store: steam - /DragonChase.x86: + "/DragonChase.x86": - when: - bit: 32 os: linux store: steam - /DragonChase.x86_64: + "/DragonChase.x86_64": - when: - bit: 64 os: linux @@ -157356,12 +157828,12 @@ Dragon City: id: 1052510 Dragon Cliff: files: - /AppData/LocalLow/Meta Interaction/Dragon Cliff: + "/AppData/LocalLow/Meta Interaction/Dragon Cliff": tags: - save when: - os: windows - /AppData/LocalLow/Meta Interaction/Dragon Cliff/Unity: + "/AppData/LocalLow/Meta Interaction/Dragon Cliff/Unity": tags: - config when: @@ -157369,11 +157841,11 @@ Dragon Cliff: installDir: Dragon Cliff: {} launch: - /game.app: + "/game.app": - when: - os: mac store: steam - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -157383,7 +157855,7 @@ Dragon Climax: installDir: Dragon Climax: {} launch: - /Dragon Climax.exe: + "/Dragon Climax.exe": - when: - os: windows store: steam @@ -157393,7 +157865,7 @@ Dragon Defense: installDir: Dragon Defense: {} launch: - /DragonDefense.exe: + "/DragonDefense.exe": - when: - os: windows store: steam @@ -157403,11 +157875,11 @@ Dragon Drop: installDir: Dragon Drop: {} launch: - /DragonDrop.app: + "/DragonDrop.app": - when: - os: mac store: steam - /DragonDrop.exe: + "/DragonDrop.exe": - when: - os: windows store: steam @@ -157417,7 +157889,7 @@ Dragon Essence - Color My World: installDir: Dragon Essence - Color My World -: {} launch: - /dragon-first.exe: + "/dragon-first.exe": - when: - os: windows store: steam @@ -157426,37 +157898,37 @@ Dragon Essence - Color My World: Dragon Eye Online: steam: id: 992780 -'Dragon Fantasy: The Black Tome of Ice': +"Dragon Fantasy: The Black Tome of Ice": installDir: Dragon Fantasy Book II: {} launch: - /Dragon Fantasy 2.app/Contents/MacOS/Dragon Fantasy 2: + "/Dragon Fantasy 2.app/Contents/MacOS/Dragon Fantasy 2": - when: - os: mac store: steam - /DragonFantasy2: + "/DragonFantasy2": - when: - os: linux store: steam - /DragonFantasy2.exe: + "/DragonFantasy2.exe": - when: - os: windows store: steam steam: id: 328000 -'Dragon Fantasy: The Volumes of Westeria': +"Dragon Fantasy: The Volumes of Westeria": installDir: Dragon Fantasy Book I: {} launch: - /Dragon Fantasy.app/Contents/MacOS/Dragon Fantasy: + "/Dragon Fantasy.app/Contents/MacOS/Dragon Fantasy": - when: - os: mac store: steam - /DragonFantasy: + "/DragonFantasy": - when: - os: linux store: steam - /DragonFantasy.exe: + "/DragonFantasy.exe": - when: - os: windows store: steam @@ -157466,7 +157938,7 @@ Dragon Fin Soup: installDir: DragonFinSoup: {} launch: - /DragonFinSoup.exe: + "/DragonFinSoup.exe": - when: - os: windows store: steam @@ -157476,8 +157948,8 @@ Dragon Glory: installDir: Dragon Glory: {} launch: - /dragonglory.exe: - - arguments: '--in-process-gpu --disable-transparency' + "/dragonglory.exe": + - arguments: "--in-process-gpu --disable-transparency" when: - os: windows store: steam @@ -157492,15 +157964,15 @@ Dragon Hunt: installDir: Dragon Hunt: {} launch: - /DragonHunt.app/Contents/MacOS/DragonHunt: + "/DragonHunt.app/Contents/MacOS/DragonHunt": - when: - os: mac store: steam - /DragonHunt.exe: + "/DragonHunt.exe": - when: - os: windows store: steam - /DragonHunt.x86: + "/DragonHunt.x86": - when: - os: linux store: steam @@ -157510,15 +157982,15 @@ Dragon Hunter: installDir: Dragon Hunter: {} launch: - /DragonHunter.app/Contents/MacOS/DragonHunter: + "/DragonHunter.app/Contents/MacOS/DragonHunter": - when: - os: mac store: steam - /DragonHunter.exe: + "/DragonHunter.exe": - when: - os: windows store: steam - /DragonHunter.x86: + "/DragonHunter.x86": - when: - os: linux store: steam @@ -157528,7 +158000,7 @@ Dragon Iris: installDir: Dragon Iris: {} launch: - /Dragon Iris.exe: + "/Dragon Iris.exe": - when: - os: windows store: steam @@ -157538,11 +158010,11 @@ Dragon Kingdom War: installDir: Seven Kingdoms The Rise of Summoners: {} launch: - /SevenKingdoms.app: + "/SevenKingdoms.app": - when: - os: mac store: steam - /SevenKingdoms.exe: + "/SevenKingdoms.exe": - when: - bit: 64 os: windows @@ -157553,11 +158025,11 @@ Dragon Knight: installDir: Dragon Knight: {} launch: - /game.app: + "/game.app": - when: - os: mac store: steam - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -157565,7 +158037,7 @@ Dragon Knight: id: 508190 Dragon Lord: files: - /*.DBG: + "/*.DBG": tags: - save when: @@ -157574,22 +158046,22 @@ Dragon Lords 3D: installDir: Dragon Lords 3D: {} launch: - /dnl.app: + "/dnl.app": - when: - os: mac store: steam - /dnl.exe: + "/dnl.exe": - when: - os: windows store: steam steam: id: 661960 -'Dragon Lore: The Legend Begins': +"Dragon Lore: The Legend Begins": gog: id: 1207660223 Dragon Marked for Death: files: - /userdata//1149440/local: + "/userdata//1149440/local": tags: - save when: @@ -157598,7 +158070,7 @@ Dragon Marked for Death: installDir: Dragon Marked For Death: {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: @@ -157610,7 +158082,7 @@ Dragon Nest: installDir: dragonnest: {} launch: - /DNSteamLauncher.exe: + "/DNSteamLauncher.exe": - when: - os: windows store: steam @@ -157625,14 +158097,14 @@ Dragon Perception: installDir: Dragon Perception: {} launch: - /Dragon Perception.exe: + "/Dragon Perception.exe": - when: - store: steam steam: id: 732090 Dragon Quest Builders 2: files: - /My Games/DRAGON QUEST BUILDERS II/Steam/: + "/My Games/DRAGON QUEST BUILDERS II/Steam/": tags: - save when: @@ -157640,7 +158112,7 @@ Dragon Quest Builders 2: installDir: DRAGON QUEST BUILDERS 2: {} launch: - /GameLauncher.exe: + "/GameLauncher.exe": - when: - bit: 64 os: windows @@ -157653,7 +158125,7 @@ Dragon Quest Builders 2: id: 1072420 Dragon Quest Heroes: files: - /SQUARE ENIX/DRAGON QUEST HEROES/Savedata: + "/SQUARE ENIX/DRAGON QUEST HEROES/Savedata": tags: - save when: @@ -157661,7 +158133,7 @@ Dragon Quest Heroes: installDir: Dragon Quest Heroes: {} launch: - /DQH.exe: + "/DQH.exe": - when: - bit: 64 os: windows @@ -157670,7 +158142,7 @@ Dragon Quest Heroes: id: 410850 Dragon Quest Heroes II: files: - /SQUARE ENIX/DRAGON QUEST HEROES II: + "/SQUARE ENIX/DRAGON QUEST HEROES II": tags: - save when: @@ -157678,7 +158150,7 @@ Dragon Quest Heroes II: installDir: DRAGON QUEST HEROES™ II: {} launch: - /DQH2.exe: + "/DQH2.exe": - when: - bit: 64 os: windows @@ -157689,7 +158161,7 @@ Dragon Quest Rivals Ace: installDir: DRAGON QUEST RIVALS: {} launch: - /DQRGame.exe: + "/DQRGame.exe": - when: - os: windows store: steam @@ -157697,7 +158169,7 @@ Dragon Quest Rivals Ace: id: 1223840 Dragon Quest Treasures: files: - /DragonQuestTreasures/Saved/SaveGames: + "/DragonQuestTreasures/Saved/SaveGames": tags: - config - save @@ -157706,7 +158178,7 @@ Dragon Quest Treasures: installDir: DRAGON QUEST TREASURES: {} launch: - /DragonQuestTreasures/Binaries/Win64/DragonQuestTreasures.exe: + "/DragonQuestTreasures/Binaries/Win64/DragonQuestTreasures.exe": - when: - os: windows store: steam @@ -157714,7 +158186,7 @@ Dragon Quest Treasures: id: 2021210 Dragon Quest X Offline: files: - /My Games/DRAGON QUEST X OFFLINE/Steam//Saved/SaveGames: + "/My Games/DRAGON QUEST X OFFLINE/Steam//Saved/SaveGames": tags: - save when: @@ -157722,8 +158194,8 @@ Dragon Quest X Offline: installDir: DRAGON QUEST X OFFLINE: {} launch: - /Game/Binaries/Win64/DQXOffline.exe: - - arguments: '-DocumentDirSave=\"My Games\\DRAGON QUEST X OFFLINE\\Steam\\\\\"' + "/Game/Binaries/Win64/DQXOffline.exe": + - arguments: "-DocumentDirSave=\\\"My Games\\\\DRAGON QUEST X OFFLINE\\\\Steam\\\\\\\\\\\"" when: - os: windows store: steam @@ -157731,12 +158203,12 @@ Dragon Quest X Offline: id: 1358750 Dragon Quest XI: files: - /My Games/DRAGON QUEST XI/Saved/Config/WindowsNoEditor: + "/My Games/DRAGON QUEST XI/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /My Games/DRAGON QUEST XI/Saved/SaveGames: + "/My Games/DRAGON QUEST XI/Saved/SaveGames": tags: - save when: @@ -157744,12 +158216,12 @@ Dragon Quest XI: installDir: DRAGON QUEST XI: {} launch: - /Game/Binaries/Win64/DRAGON QUEST XI.exe: + "/Game/Binaries/Win64/DRAGON QUEST XI.exe": - when: - bit: 64 os: windows store: steam - /Game/Binaries/Win64/OverwriteSettings.exe: + "/Game/Binaries/Win64/OverwriteSettings.exe": - when: - bit: 64 os: windows @@ -157758,33 +158230,35 @@ Dragon Quest XI: id: 742120 Dragon Quest XI S - Definitive Edition: files: - /Saved Games/DRAGON QUEST XI S/Epic Games Store: + "/Saved Games/DRAGON QUEST XI S/Epic Games Store": tags: - save when: - - store: epic - /Saved Games/DRAGON QUEST XI S/Epic Games Store/Saved/Config/WindowsNoEditor: + - os: windows + "/Saved Games/DRAGON QUEST XI S/Epic Games Store/Saved/Config/WindowsNoEditor": tags: - config when: - - store: epic - /My Games/DRAGON QUEST XI S/Steam//Saved/SaveGames/Book: + - os: windows + "/My Games/DRAGON QUEST XI S/Steam//Saved/SaveGames/Book": tags: - save when: - - store: steam - /My Games/DRAGON QUEST XI S/Steam/Saved/Config/WindowsNoEditor: + - os: windows + store: steam + "/My Games/DRAGON QUEST XI S/Steam/Saved/Config/WindowsNoEditor": tags: - config when: - - store: steam - /My Games/DRAGON QUEST XI S/Xbox/Saved/Config/WindowsNoEditor: + - os: windows + store: steam + "/My Games/DRAGON QUEST XI S/Xbox/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows store: microsoft - /Packages/39EA002F.DQXISWW_n746a19ndrrjg/SystemAppData/wgs: + "/Packages/39EA002F.DQXISWW_n746a19ndrrjg/SystemAppData/wgs": tags: - save when: @@ -157793,7 +158267,7 @@ Dragon Quest XI S - Definitive Edition: installDir: DRAGON QUEST XI S: {} launch: - /Game/Binaries/Win64/DRAGON QUEST XI S.exe: + "/Game/Binaries/Win64/DRAGON QUEST XI S.exe": - when: - bit: 64 os: windows @@ -157804,15 +158278,15 @@ Dragon Racer: installDir: Dragon Racer: {} launch: - /Dragon Racer.app/Contents/MacOS/Dragon Racer: + "/Dragon Racer.app/Contents/MacOS/Dragon Racer": - when: - os: mac store: steam - /DragonRacer: + "/DragonRacer": - when: - os: linux store: steam - /DragonRacer.exe: + "/DragonRacer.exe": - when: - os: windows store: steam @@ -157822,7 +158296,7 @@ Dragon Rage: installDir: Dragon Rage: {} launch: - /DRAGON_RAGE.exe: + "/DRAGON_RAGE.exe": - when: - os: windows store: steam @@ -157832,11 +158306,11 @@ Dragon Rider: installDir: Dragon Rider: {} launch: - /DragonRider.app/Contents/MacOS/DragonRider: + "/DragonRider.app/Contents/MacOS/DragonRider": - when: - os: mac store: steam - /DragonRider.exe: + "/DragonRider.exe": - when: - os: windows store: steam @@ -157851,7 +158325,7 @@ Dragon Saga: installDir: Dragon Saga: {} launch: - /WPLauncher.exe: + "/WPLauncher.exe": - when: - os: windows store: steam @@ -157861,7 +158335,7 @@ Dragon Simulator Multiplayer: installDir: Dragon Simulator Multiplayer: {} launch: - /DragonSimulatorMultiplayer.exe: + "/DragonSimulatorMultiplayer.exe": - when: - os: windows store: steam @@ -157871,7 +158345,7 @@ Dragon Sin: installDir: DragonSin: {} launch: - /DragonSin.exe: + "/DragonSin.exe": - when: - os: windows store: steam @@ -157881,7 +158355,7 @@ Dragon Sinker: installDir: Dragon Sinker: {} launch: - /DragonSinker.exe: + "/DragonSinker.exe": - when: - os: windows store: steam @@ -157894,23 +158368,23 @@ Dragon Slayer: installDir: Dragon Slayer: {} launch: - /nw.exe: - - arguments: '--in-process-gpu' + "/nw.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam steam: id: 1151770 -'Dragon Slayer: The Legend of Heroes': +"Dragon Slayer: The Legend of Heroes": files: - /SAVE: + "/SAVE": tags: - save when: - os: dos -'Dragon Slayer: The Legend of Heroes II': +"Dragon Slayer: The Legend of Heroes II": files: - /SAVE: + "/SAVE": tags: - save when: @@ -157919,7 +158393,7 @@ Dragon Souls: installDir: Dragon Souls: {} launch: - /DragonSouls.exe: + "/DragonSouls.exe": - when: - os: windows store: steam @@ -157929,11 +158403,11 @@ Dragon Spear: installDir: Dragon_Spear: {} launch: - /Dragon_Spear.app/Contents/MacOS/Dragon_Spear: + "/Dragon_Spear.app/Contents/MacOS/Dragon_Spear": - when: - os: mac store: steam - /Dragon_Spear.exe: + "/Dragon_Spear.exe": - when: - os: windows store: steam @@ -157943,11 +158417,11 @@ Dragon Spirits: installDir: dragonspirits: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam - /RGD.exe: + "/RGD.exe": - when: - os: windows store: steam @@ -157955,22 +158429,22 @@ Dragon Spirits: id: 1074190 Dragon Star Varnir: files: - /resource/bin/DragonStarVarnir.ini: + "/resource/bin/DragonStarVarnir.ini": tags: - config when: - os: windows - /userdata//1062040/remote: + "/userdata//1062040/remote": tags: - save when: - store: steam - /userdata//1062040/remote/SYSTEMSAVE_GAME.BIN: + "/userdata//1062040/remote/SYSTEMSAVE_GAME.BIN": tags: - config when: - store: steam - /userdata//1062040/remote/SYSTEMSAVE_param.sfo: + "/userdata//1062040/remote/SYSTEMSAVE_param.sfo": tags: - config when: @@ -157980,7 +158454,7 @@ Dragon Star Varnir: installDir: Dragon Star Varnir: {} launch: - /resource/bin/DragonStarVarnir.exe: + "/resource/bin/DragonStarVarnir.exe": - when: - bit: 64 os: windows @@ -157991,13 +158465,13 @@ Dragon Stone - Legendary Archer: installDir: Dragon Stone - Legendary Archer: {} launch: - /DragonStone-LegendaryArcher.exe: + "/DragonStone-LegendaryArcher.exe": - when: - os: windows store: steam steam: id: 1188100 -'Dragon Throne: Battle of Red Cliffs': +"Dragon Throne: Battle of Red Cliffs": steam: id: 1733020 Dragon Valley: @@ -158005,7 +158479,7 @@ Dragon Valley: id: 941760 Dragon View: files: - /res: + "/res": tags: - config - save @@ -158016,7 +158490,7 @@ Dragon View: installDir: Dragon View: {} launch: - /dragon view.exe: + "/dragon view.exe": - when: - os: windows store: steam @@ -158024,12 +158498,12 @@ Dragon View: id: 784010 Dragon Wars: files: - /DATA1: + "/DATA1": tags: - save when: - os: dos - /DRAGON.COM: + "/DRAGON.COM": tags: - config when: @@ -158039,17 +158513,17 @@ Dragon Wars: installDir: Dragon Wars: {} launch: - /DOSBox/dosbox.app/Contents/MacOS/DOSBox: - - arguments: '-conf \"./dosboxDragonWars.conf\" -conf \"./dosboxDragonWars_single.conf\" -noconsole' + "/DOSBox/dosbox.app/Contents/MacOS/DOSBox": + - arguments: "-conf \\\"./dosboxDragonWars.conf\\\" -conf \\\"./dosboxDragonWars_single.conf\\\" -noconsole" when: - os: mac store: steam - /Launch Dragon Wars.bat: + "/Launch Dragon Wars.bat": - when: - os: windows store: steam - /dosbox/dosbox: - - arguments: \"-conf\" \"./dosboxDragonWars.conf\" \"-conf\" \"./dosboxDragonWars_single.conf\" \"-noconsole\" + "/dosbox/dosbox": + - arguments: "\\\"-conf\\\" \\\"./dosboxDragonWars.conf\\\" \\\"-conf\\\" \\\"./dosboxDragonWars_single.conf\\\" \\\"-noconsole\\\"" when: - os: linux store: steam @@ -158059,26 +158533,26 @@ Dragon World: installDir: Dragon World: {} launch: - /DragonWorld.exe: + "/DragonWorld.exe": - when: - os: windows store: steam steam: id: 973800 -'Dragon and Weed: Origins OB - Dual Edges': +"Dragon and Weed: Origins OB - Dual Edges": installDir: Dragon and Weed Origins Season 1 Vol.1: {} launch: - /DWO S1V1 1-001.x86_64: + "/DWO S1V1 1-001.x86_64": - when: - bit: 64 os: linux store: steam - /DWO S1V1.app: + "/DWO S1V1.app": - when: - os: mac store: steam - /DWO S1V1.exe: + "/DWO S1V1.exe": - when: - bit: 64 os: windows @@ -158089,46 +158563,47 @@ Dragon of Legends: installDir: Dragon of Legends: {} launch: - /dol.exe: + "/dol.exe": - when: - os: windows store: steam steam: id: 590580 -Dragon's Checkers: +"Dragon's Checkers": installDir: Warcaby: {} launch: - /Project2.exe: + "/Project2.exe": - when: - os: windows store: steam steam: id: 879110 -Dragon's Dogma II: +"Dragon's Dogma II": steam: id: 2054970 -Dragon's Dogma Online: +"Dragon's Dogma Online": files: - /CAPCOM/Dragon's Dogma Online: + "/CAPCOM/Dragon's Dogma Online": tags: - config - save when: - os: windows -'Dragon''s Dogma: Dark Arisen': +"Dragon's Dogma: Dark Arisen": files: - /userdata//367500/remote: + "/userdata//367500/remote": tags: - save when: - store: steam - /GOG.com/Galaxy/Applications/49987265717041704/Storage/Shared/Files: + "/GOG.com/Galaxy/Applications/49987265717041704/Storage/Shared/Files": tags: - save when: - - store: gog - /capcom/DRAGONS DOGMA DARK ARISEN/config.ini: + - os: windows + store: gog + "/capcom/DRAGONS DOGMA DARK ARISEN/config.ini": tags: - config when: @@ -158138,132 +158613,132 @@ Dragon's Dogma Online: installDir: DDDA: {} launch: - /DDDA.exe: + "/DDDA.exe": - when: - store: steam steam: id: 367500 -'Dragon''s Dungeon: Awakening': +"Dragon's Dungeon: Awakening": steam: id: 640430 -Dragon's Hope: +"Dragon's Hope": steam: id: 1005320 -Dragon's Lair: +"Dragon's Lair": gog: id: 2083200433 installDir: - Dragon's Lair: {} + "Dragon's Lair": {} launch: - /Dragon's Lair.app: + "/Dragon's Lair.app": - when: - os: mac store: steam - /DragonsLair.exe: + "/DragonsLair.exe": - when: - os: windows store: steam - /DragonsLair.x86: + "/DragonsLair.x86": - when: - os: linux store: steam steam: id: 227380 -'Dragon''s Lair 3D: Return to the Lair': +"Dragon's Lair 3D: Return to the Lair": files: - /Save: + "/Save": tags: - save when: - os: windows -'Dragon''s Lair II: Time Warp': +"Dragon's Lair II: Time Warp": gog: id: 2083200433 installDir: - Dragon's Lair II: {} + "Dragon's Lair II": {} launch: - /Dragon's Lair 2.app: + "/Dragon's Lair 2.app": - when: - os: mac store: steam - /DragonsLair2.exe: + "/DragonsLair2.exe": - when: - os: windows store: steam - /DragonsLair2.x86: + "/DragonsLair2.x86": - when: - os: linux store: steam steam: id: 240360 -Dragon's Lair Trilogy: +"Dragon's Lair Trilogy": gog: id: 2083200433 registry: - HKEY_CURRENT_USER/Software/Digital Leisure Inc./Dragon's Lair Trilogy: + "HKEY_CURRENT_USER/Software/Digital Leisure Inc./Dragon's Lair Trilogy": tags: - config - save -Dragon's Lunch: +"Dragon's Lunch": installDir: - Dragon's Lunch: {} + "Dragon's Lunch": {} launch: - /DragonsLunch.exe: + "/DragonsLunch.exe": - when: - os: windows store: steam steam: id: 663530 -Dragon's Prophet: +"Dragon's Prophet": steam: id: 1380940 -Dragon's Wake: +"Dragon's Wake": installDir: - Dragon's Wake: {} + "Dragon's Wake": {} launch: - /Dragon.app: + "/Dragon.app": - when: - os: mac store: steam - /Dragon.exe: + "/Dragon.exe": - when: - os: windows store: steam - /Dragon.x86: + "/Dragon.x86": - when: - os: linux store: steam steam: id: 399070 -'Dragon: A Game About a Dragon': +"Dragon: A Game About a Dragon": installDir: DRAGON A Game About a Dragon: {} launch: - /AGameAboutADragon.exe: + "/AGameAboutADragon.exe": - when: - os: windows store: steam steam: id: 351150 -'Dragon: The Game': +"Dragon: The Game": installDir: Dragon: {} launch: - /Dragon_EA.exe: + "/Dragon_EA.exe": - when: - os: windows store: steam - /Dragon_EA.x86: + "/Dragon_EA.x86": - when: - bit: 32 os: linux store: steam - /Dragon_EA.x86_64: + "/Dragon_EA.x86_64": - when: - bit: 64 os: linux store: steam - /Dragon_EA_OSX.app: + "/Dragon_EA_OSX.app": - when: - os: mac store: steam @@ -158278,7 +158753,7 @@ DragonClash: installDir: DragonClash: {} launch: - /DragonClash.exe: + "/DragonClash.exe": - when: - os: windows store: steam @@ -158288,7 +158763,7 @@ DragonCrash: installDir: DragonCrash: {} launch: - /DragonCrashLauncher.exe: + "/DragonCrashLauncher.exe": - when: - bit: 64 os: windows @@ -158299,11 +158774,11 @@ DragonFangZ - The Rose & Dungeon of Time: installDir: DragonFangZ: {} launch: - /dfz.app: + "/dfz.app": - when: - os: mac store: steam - /dfz.exe: + "/dfz.exe": - when: - os: windows store: steam @@ -158314,24 +158789,24 @@ DragonRide VR: DragonRideVR: {} steam: id: 1197620 -'DragonScales 3: Eternal Prophecy of Darkness': +"DragonScales 3: Eternal Prophecy of Darkness": installDir: DragonScales3: {} launch: - /DragonScales3.exe: + "/DragonScales3.exe": - when: - store: steam steam: id: 1215310 -'DragonScales 5: The Frozen Tomb': +"DragonScales 5: The Frozen Tomb": installDir: DragonScales5: {} launch: - /DragonScales5.app: + "/DragonScales5.app": - when: - os: mac store: steam - /DragonScales5.exe: + "/DragonScales5.exe": - when: - os: windows store: steam @@ -158342,7 +158817,7 @@ DragonSnake VR: id: 972950 DragonStrike: files: - /PREF.DAT: + "/PREF.DAT": tags: - save when: @@ -158352,7 +158827,7 @@ DragonStrike: installDir: DragonStrike: {} launch: - /Launcher/Launcher.exe: + "/Launcher/Launcher.exe": - when: - store: steam steam: @@ -158361,31 +158836,31 @@ DragonWingsVR: installDir: DragonWingsVR: {} launch: - /DragonRider.exe: + "/DragonRider.exe": - when: - bit: 64 os: windows store: steam - /DragonRider32.exe: + "/DragonRider32.exe": - when: - bit: 32 os: windows store: steam steam: id: 563680 -Dragonfang - Drahn's Mystery Dungeon: +"Dragonfang - Drahn's Mystery Dungeon": installDir: DragonFang: {} launch: - /Dragonfang.app: + "/Dragonfang.app": - when: - os: mac store: steam - /Dragonfang.exe: + "/Dragonfang.exe": - when: - os: windows store: steam - /Dragonfang.x86: + "/Dragonfang.x86": - when: - os: linux store: steam @@ -158400,22 +158875,22 @@ Dragonfly Chronicles: installDir: Dragonfly Chronicles: {} launch: - /Dragonfly Chronicles.exe: + "/Dragonfly Chronicles.exe": - when: - os: windows store: steam - /DragonflyChronicles.app/Contents/MacOS/DragonflyChronicles: + "/DragonflyChronicles.app/Contents/MacOS/DragonflyChronicles": - when: - os: mac store: steam steam: id: 888760 -'Dragonheir: Silent Gods': +"Dragonheir: Silent Gods": steam: id: 2203070 Dragonia: files: - /AppData/LocalLow/Bluster Light/Dragonia/SavegameData: + "/AppData/LocalLow/Bluster Light/Dragonia/SavegameData": tags: - save when: @@ -158423,11 +158898,11 @@ Dragonia: installDir: Dragonia: {} launch: - /game.app: + "/game.app": - when: - os: mac store: steam - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -158437,7 +158912,7 @@ Dragonpath: installDir: Dragonpath: {} launch: - /Dragonpath.exe: + "/Dragonpath.exe": - when: - os: windows store: steam @@ -158447,7 +158922,7 @@ Dragons Be: installDir: windows_content: {} launch: - /content.exe: + "/content.exe": - when: - os: windows store: steam @@ -158457,7 +158932,7 @@ Dragons Never Cry: installDir: DragonsNeverCry: {} launch: - /DQShooter1R-dev.exe: + "/DQShooter1R-dev.exe": - when: - os: windows store: steam @@ -158467,15 +158942,15 @@ Dragons and Titans: installDir: Dragons&Titans: {} launch: - /dnt.app: + "/dnt.app": - when: - os: mac store: steam - /dnt.exe: + "/dnt.exe": - when: - os: windows store: steam - /dnt.x86: + "/dnt.x86": - when: - os: linux store: steam @@ -158483,7 +158958,7 @@ Dragons and Titans: id: 263500 Dragons of Flame: files: - /********: + "/********": tags: - save when: @@ -158493,16 +158968,16 @@ Dragons of Flame: installDir: Shadow Sorcerer: {} launch: - /Launcher/Launcher.exe: + "/Launcher/Launcher.exe": - when: - store: steam steam: id: 2344020 -Dragons' Twilight: +"Dragons' Twilight": installDir: - Dragons' Twilight: {} + "Dragons' Twilight": {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -158510,17 +158985,17 @@ Dragons' Twilight: id: 658050 Dragonsphere: files: - /CONFIG.DRA: + "/CONFIG.DRA": tags: - config when: - os: dos - /DRAG0**.SAV: + "/DRAG0**.SAV": tags: - save when: - os: dos - /SAVES.DIR: + "/SAVES.DIR": tags: - save when: @@ -158530,50 +159005,50 @@ Dragonsphere: installDir: Dragonsphere: {} launch: - /DragonSphere.app: + "/DragonSphere.app": - when: - os: mac store: steam - /dosbox_linux/daum/launch_dragonsphere_game_daum.sh: + "/dosbox_linux/daum/launch_dragonsphere_game_daum.sh": - when: - os: linux store: steam - workingDir: /dosbox_linux/daum - /dosbox_linux/launch_dragonsphere_config.sh: + workingDir: "/dosbox_linux/daum" + "/dosbox_linux/launch_dragonsphere_config.sh": - when: - os: linux store: steam - workingDir: /dosbox_linux - /dosbox_linux/launch_dragonsphere_game.sh: + workingDir: "/dosbox_linux" + "/dosbox_linux/launch_dragonsphere_game.sh": - when: - os: linux store: steam - workingDir: /dosbox_linux - /dosbox_windows/daum/dosbox.exe: - - arguments: '-conf dosbox_dragonsphere.conf -conf dosbox_dragonsphere_launch_windows.conf -noconsole' + workingDir: "/dosbox_linux" + "/dosbox_windows/daum/dosbox.exe": + - arguments: "-conf dosbox_dragonsphere.conf -conf dosbox_dragonsphere_launch_windows.conf -noconsole" when: - os: windows store: steam - workingDir: /dosbox_windows/daum - /dosbox_windows/dosbox.exe: - - arguments: '-conf dosbox_dragonsphere.conf -conf dosbox_dragonsphere_launch_windows.conf -noconsole' + workingDir: "/dosbox_windows/daum" + "/dosbox_windows/dosbox.exe": + - arguments: "-conf dosbox_dragonsphere.conf -conf dosbox_dragonsphere_launch_windows.conf -noconsole" when: - os: windows store: steam - workingDir: /dosbox_windows - - arguments: '-conf dosbox_dragonsphere.conf -conf dosbox_dragonsphere_config_windows.conf -noconsole' + workingDir: "/dosbox_windows" + - arguments: "-conf dosbox_dragonsphere.conf -conf dosbox_dragonsphere_config_windows.conf -noconsole" when: - os: windows store: steam - workingDir: /dosbox_windows + workingDir: "/dosbox_windows" steam: id: 327940 Dragonward: installDir: Dragonward: {} launch: - /Dragonward.exe: - - arguments: '--in-process-gpu' + "/Dragonward.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam @@ -158583,7 +159058,7 @@ Draid: installDir: Draid: {} launch: - /Draid.exe: + "/Draid.exe": - when: - os: windows store: steam @@ -158591,22 +159066,22 @@ Draid: id: 856270 Drain Mansion: files: - /DrainMansion_Data/*.save: + "/DrainMansion_Data/*.save": tags: - config when: - os: windows - /DrainMansion_Data/*.txt: + "/DrainMansion_Data/*.txt": tags: - config when: - os: windows - /AppData/LocalLow/Kredyn/DrainMansion/DrainMansion_Data/*.save: + "/AppData/LocalLow/Kredyn/DrainMansion/DrainMansion_Data/*.save": tags: - config when: - os: windows - /AppData/LocalLow/Kredyn/DrainMansion/DrainMansion_Data/*.txt: + "/AppData/LocalLow/Kredyn/DrainMansion/DrainMansion_Data/*.txt": tags: - config when: @@ -158617,16 +159092,16 @@ Drain Mansion: installDir: Drain Mansion: {} launch: - /DrainMansion.exe: + "/DrainMansion.exe": - when: - bit: 64 os: windows store: steam - /DrainMansion.x86_64: + "/DrainMansion.x86_64": - when: - os: linux store: steam - /DrainMansionSteam.app: + "/DrainMansionSteam.app": - when: - os: mac store: steam @@ -158636,12 +159111,15 @@ DrainLive: installDir: DrainLive: {} launch: - /DrainLive.app: + "/DrainLive.app": - when: - os: mac store: steam - /DrainLive.exe: + "/DrainLive.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam @@ -158651,42 +159129,44 @@ Drainus: installDir: DRAINUS: {} launch: - /DRAINUS.exe: + "/DRAINUS.exe": - when: - store: steam steam: id: 1975360 -'Drakan: Order of the Flame': +"Drakan: Order of the Flame": files: - /Drakan.cfg: + "/Drakan.cfg": tags: - config when: - os: windows - /Saves: + "/Saves": tags: - save when: - os: windows Drake Hollow: files: - /DrakeHollow/Saved/Config/WindowsNoEditor: + "/DrakeHollow/Saved/Config/WindowsNoEditor": tags: - config when: - - store: steam - /DrakeHollow/Saved/SaveGames: + - os: windows + store: steam + "/DrakeHollow/Saved/SaveGames": tags: - save when: - - store: steam - /Packages/64006TheMolassesFloodLLC.418795752BB1E_2jgfqbz9r2ze2/LocalCache/Local/DrakeHollow/Saved/Config/WinGDK: + - os: windows + store: steam + "/Packages/64006TheMolassesFloodLLC.418795752BB1E_2jgfqbz9r2ze2/LocalCache/Local/DrakeHollow/Saved/Config/WinGDK": tags: - config when: - os: windows store: microsoft - /Packages/64006TheMolassesFloodLLC.418795752BB1E_2jgfqbz9r2ze2/SystemAppData/wgs: + "/Packages/64006TheMolassesFloodLLC.418795752BB1E_2jgfqbz9r2ze2/SystemAppData/wgs": tags: - save when: @@ -158697,7 +159177,7 @@ Drake Hollow: installDir: Drake Hollow: {} launch: - /DrakeHollow.exe: + "/DrakeHollow.exe": - when: - bit: 64 os: windows @@ -158706,7 +159186,7 @@ Drake Hollow: id: 739650 Drake of the 99 Dragons: files: - /version/savegames: + "/version/savegames": tags: - save when: @@ -158714,7 +159194,7 @@ Drake of the 99 Dragons: installDir: Drake of the 99 Dragons: {} launch: - /drakeshell.exe: + "/drakeshell.exe": - when: - store: steam steam: @@ -158731,8 +159211,8 @@ Drakensang Online: installDir: Drakensang Online: {} launch: - /thinclient.exe: - - arguments: '-x86_64' + "/thinclient.exe": + - arguments: "-x86_64" when: - bit: 64 os: windows @@ -158743,14 +159223,14 @@ Drakensang Online: store: steam steam: id: 2067850 -'Drakensang: The Dark Eye': +"Drakensang: The Dark Eye": files: - /Drakensang/profiles/default: + "/Drakensang/profiles/default": tags: - config when: - os: windows - /Drakensang/profiles/default/save: + "/Drakensang/profiles/default/save": tags: - save when: @@ -158760,19 +159240,19 @@ Drakensang Online: installDir: Drakensang: {} launch: - /drakensang.exe: + "/drakensang.exe": - when: - store: steam steam: id: 12640 -'Drakensang: The River of Time': +"Drakensang: The River of Time": files: - /Drakensang_TRoT/profiles/default/profile.xml: + "/Drakensang_TRoT/profiles/default/profile.xml": tags: - config when: - os: windows - /Drakensang_TRoT/profiles/default/save: + "/Drakensang_TRoT/profiles/default/save": tags: - save when: @@ -158783,7 +159263,7 @@ Drakensang Online: installDir: Drakensang The River of Time: {} launch: - /drakensang.exe: + "/drakensang.exe": - when: - store: steam steam: @@ -158792,7 +159272,7 @@ Drakerz - Confrontation: installDir: DRAKERZ-Confrontation: {} launch: - /Drakerz.exe: + "/Drakerz.exe": - when: - os: windows store: steam @@ -158802,7 +159282,7 @@ Drakkar Crew: installDir: Drakkar Crew: {} launch: - /DrakkarCrew.exe: + "/DrakkarCrew.exe": - when: - os: windows store: steam @@ -158810,17 +159290,17 @@ Drakkar Crew: id: 879050 Drakkhen: files: - /ACTIV.SAV: + "/ACTIV.SAV": tags: - save when: - os: dos - /OBJET.SAV: + "/OBJET.SAV": tags: - save when: - os: dos - /PERSO.SAV: + "/PERSO.SAV": tags: - save when: @@ -158830,7 +159310,7 @@ Drakkhen: installDir: Drakkhen: {} launch: - /dosbox.exe: + "/dosbox.exe": - when: - os: windows store: steam @@ -158843,12 +159323,12 @@ Draoi: id: 818070 Draugen: files: - /Draugen/Saved/Config/WindowsNoEditor: + "/Draugen/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /Draugen/Saved/SaveGames: + "/Draugen/Saved/SaveGames": tags: - save when: @@ -158858,7 +159338,7 @@ Draugen: installDir: Draugen: {} launch: - /Draugen.exe: + "/Draugen.exe": - when: - os: windows store: steam @@ -158868,7 +159348,7 @@ Draw Chilly: installDir: DRAW CHILLY: {} launch: - /DRAW CHILLY.exe: + "/DRAW CHILLY.exe": - when: - os: windows store: steam @@ -158878,7 +159358,7 @@ Draw It!: installDir: Draw It!: {} launch: - /Di!.exe: + "/Di!.exe": - when: - store: steam steam: @@ -158887,7 +159367,7 @@ Draw It! 2: installDir: Draw It! 2: {} launch: - /Di!2.exe: + "/Di!2.exe": - when: - os: windows store: steam @@ -158897,7 +159377,7 @@ Draw Light: installDir: Draw Light: {} launch: - /Draw Light.exe: + "/Draw Light.exe": - when: - store: steam steam: @@ -158909,7 +159389,7 @@ Draw Near: installDir: Draw Near: {} launch: - /DrawNear.exe: + "/DrawNear.exe": - when: - bit: 64 os: windows @@ -158918,7 +159398,7 @@ Draw Near: id: 831490 Draw Puzzle: files: - /AppData/LocalLow/VeryWenStudio/DrawPuzzle: + "/AppData/LocalLow/VeryWenStudio/DrawPuzzle": tags: - save when: @@ -158926,11 +159406,11 @@ Draw Puzzle: installDir: Draw Puzzle: {} launch: - /DrawPuzzle.exe: + "/DrawPuzzle.exe": - when: - os: windows store: steam - /pixeldraw.app/Contents/MacOS/pixeldraw: + "/pixeldraw.app/Contents/MacOS/pixeldraw": - when: - os: mac store: steam @@ -158940,11 +159420,11 @@ Draw Rider: installDir: Draw Rider: {} launch: - /Draw Rider.app: + "/Draw Rider.app": - when: - os: mac store: steam - /Draw Rider.exe: + "/Draw Rider.exe": - when: - os: windows store: steam @@ -158954,11 +159434,11 @@ Draw Rider 2: installDir: Draw Rider 2: {} launch: - /Draw Rider 2.app: + "/Draw Rider 2.app": - when: - os: mac store: steam - /Draw Rider 2.exe: + "/Draw Rider 2.exe": - when: - os: windows store: steam @@ -158966,12 +159446,12 @@ Draw Rider 2: id: 588630 Draw Slasher: files: - /AppData/LocalLow/Mass Creation/Draw Slasher/AdvancedMassPlayerPrefs.txt: + "/AppData/LocalLow/Mass Creation/Draw Slasher/AdvancedMassPlayerPrefs.txt": tags: - config when: - os: windows - /userdata//418270/remote/save_icloud: + "/userdata//418270/remote/save_icloud": tags: - save when: @@ -158979,22 +159459,25 @@ Draw Slasher: installDir: Draw Slasher: {} launch: - /Draw Slasher.exe: + "/Draw Slasher.exe": - when: - bit: 32 os: windows store: steam - /DrawSlasher.app/Contents/MacOS/DrawSlasher: + - bit: 64 + os: windows + store: steam + "/DrawSlasher.app/Contents/MacOS/DrawSlasher": - when: - bit: 64 os: mac store: steam - /DrawSlasher.x86: + "/DrawSlasher.x86": - when: - bit: 32 os: linux store: steam - /DrawSlasher.x86_64: + "/DrawSlasher.x86_64": - when: - bit: 64 os: linux @@ -159009,7 +159492,7 @@ Draw Souls: installDir: Draw Souls: {} launch: - /Draw Souls.exe: + "/Draw Souls.exe": - when: - os: windows store: steam @@ -159019,7 +159502,7 @@ Draw With Unknown: installDir: Draw With Unknown: {} launch: - /Draw With Unknown.exe: + "/Draw With Unknown.exe": - when: - store: steam steam: @@ -159028,14 +159511,14 @@ Draw Your Game: installDir: Draw Your Game: {} launch: - /dyg.exe: + "/dyg.exe": - when: - store: steam steam: id: 677880 -'Draw a Stickman: EPIC': +"Draw a Stickman: EPIC": files: - /userdata//248650/remote: + "/userdata//248650/remote": tags: - save when: @@ -159043,17 +159526,17 @@ Draw Your Game: installDir: DrawAStickmanEpic: {} launch: - /DrawAStickman.Steam.exe: + "/DrawAStickman.Steam.exe": - when: - os: windows store: steam steam: id: 248650 -'Draw a Stickman: EPIC 2': +"Draw a Stickman: EPIC 2": installDir: Draw a Stickman EPIC 2: {} launch: - /Epic2.exe: + "/Epic2.exe": - when: - os: windows store: steam @@ -159063,11 +159546,11 @@ Draw the Way: installDir: Draw The Way: {} launch: - /DrawTheWay.exe: + "/DrawTheWay.exe": - when: - os: windows store: steam - /DrawTheWay.sh: + "/DrawTheWay.sh": - when: - os: linux store: steam @@ -159077,11 +159560,11 @@ Drawer: installDir: Drawer: {} launch: - /Drawer.exe: + "/Drawer.exe": - when: - os: windows store: steam - /Drawer.x86_64: + "/Drawer.x86_64": - when: - bit: 64 os: linux @@ -159090,13 +159573,13 @@ Drawer: id: 1858620 Drawful 2: files: - /.config/Jackbox Games/Drawful 2/Userdata.sav: + "/.config/Jackbox Games/Drawful 2/Userdata.sav": tags: - config - save when: - os: linux - /Jackbox Games/Drawful 2/UserData.sav: + "/Jackbox Games/Drawful 2/UserData.sav": tags: - config - save @@ -159105,15 +159588,15 @@ Drawful 2: installDir: Drawful 2: {} launch: - /Drawful 2.app: + "/Drawful 2.app": - when: - os: mac store: steam - /Drawful 2.exe: + "/Drawful 2.exe": - when: - os: windows store: steam - /Launcher.sh: + "/Launcher.sh": - when: - bit: 64 os: linux @@ -159124,19 +159607,19 @@ Drawing Path: installDir: Drawing Path: {} launch: - /Drawing Path.exe: + "/Drawing Path.exe": - when: - store: steam steam: id: 1098140 Drawkanoid: files: - /AppData/LocalLow/QCF Design/Drawkanoid/.bak: + "/AppData/LocalLow/QCF Design/Drawkanoid/.bak": tags: - save when: - os: windows - /AppData/LocalLow/QCF Design/Drawkanoid/.sav: + "/AppData/LocalLow/QCF Design/Drawkanoid/.sav": tags: - save when: @@ -159144,19 +159627,19 @@ Drawkanoid: installDir: Drawkanoid: {} launch: - /Drawkanoid.app: + "/Drawkanoid.app": - when: - os: mac store: steam - /Drawkanoid.exe: + "/Drawkanoid.exe": - when: - os: windows store: steam steam: id: 951370 -'Drawkanoid: Review Breaker': +"Drawkanoid: Review Breaker": files: - /AppData/LocalLow/QCF Design/Drawkanoid_ Review Breaker/ReviewBreaker.sav: + "/AppData/LocalLow/QCF Design/Drawkanoid_ Review Breaker/ReviewBreaker.sav": tags: - save when: @@ -159164,12 +159647,12 @@ Drawkanoid: installDir: Drawkanoid Review Breaker: {} launch: - /Drawkanoid_ Review Breaker.exe: + "/Drawkanoid_ Review Breaker.exe": - when: - os: windows store: steam registry: - 'HKEY_CURRENT_USER/Software/QCF Design/Drawkanoid: Review Breaker': + "HKEY_CURRENT_USER/Software/QCF Design/Drawkanoid: Review Breaker": tags: - config steam: @@ -159178,11 +159661,11 @@ Drawn Down: installDir: Drawn Down: {} launch: - /Drawn Down.app/Contents/MacOS/Drawn Down: + "/Drawn Down.app/Contents/MacOS/Drawn Down": - when: - os: mac store: steam - /Drawn Down/Drawn Down.exe: + "/Drawn Down/Drawn Down.exe": - when: - os: windows store: steam @@ -159192,11 +159675,11 @@ Drawn Down Abyss: installDir: Drawn Down Abyss: {} launch: - /Drawn Down Abyss: + "/Drawn Down Abyss": - when: - os: linux store: steam - /Drawn Down Abyss.exe: + "/Drawn Down Abyss.exe": - when: - os: windows store: steam @@ -159206,42 +159689,42 @@ Drawn Story: installDir: DrawnStory: {} launch: - /DrawnStory.app/Contents/MacOS/drawnstory: + "/DrawnStory.app/Contents/MacOS/drawnstory": - when: - os: mac store: steam - /drawnstory.exe: + "/drawnstory.exe": - when: - os: windows store: steam - /drawnstory.sh: + "/drawnstory.sh": - when: - os: linux store: steam steam: id: 440770 -'Drawn: Dark Flight': +"Drawn: Dark Flight": installDir: Drawn 2 Dark Flight: {} launch: - /DrawnII.app: + "/DrawnII.app": - when: - os: mac store: steam - /DrawnII.exe: + "/DrawnII.exe": - when: - os: windows store: steam steam: id: 433360 -'Drawn: The Painted Tower': +"Drawn: The Painted Tower": files: - /Big Fish Games/Drawn/GameSettings.ini: + "/Big Fish Games/Drawn/GameSettings.ini": tags: - config when: - os: windows - /Big Fish Games/Drawn/profile: + "/Big Fish Games/Drawn/profile": tags: - save when: @@ -159249,26 +159732,26 @@ Drawn Story: installDir: Drawn The Painted Tower: {} launch: - /Drawn.exe: + "/Drawn.exe": - when: - os: windows store: steam steam: id: 51060 -'Drawn: Trail of Shadows': +"Drawn: Trail of Shadows": installDir: - Drawn™ Trail of Shadows Collector's Edition: {} + "Drawn™ Trail of Shadows Collector's Edition": {} launch: - /DrawnIII.exe: + "/DrawnIII.exe": - when: - store: steam steam: id: 567240 -'Drawngeon: Dungeons of Ink and Paper': +"Drawngeon: Dungeons of Ink and Paper": installDir: Drawngeon: {} launch: - /Dungetron.exe: + "/Dungetron.exe": - when: - os: windows store: steam @@ -159278,7 +159761,7 @@ Drawz: installDir: Drawz: {} launch: - /drawz.exe: + "/drawz.exe": - when: - os: windows store: steam @@ -159288,7 +159771,7 @@ Drayt Empire: installDir: Drayt Empire: {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: @@ -159297,7 +159780,7 @@ Dread Delusion: installDir: Dread Delusion: {} launch: - /windows_content/Dread Delusion.exe: + "/windows_content/Dread Delusion.exe": - when: - os: windows store: steam @@ -159313,7 +159796,7 @@ Dread Nautical: installDir: Dread Nautical: {} launch: - /DreadNautical.exe: + "/DreadNautical.exe": - when: - store: steam steam: @@ -159322,19 +159805,19 @@ Dread Station: installDir: Dread station: {} launch: - /Dread Station.exe: + "/Dread Station.exe": - when: - store: steam steam: id: 803110 Dread Templar: files: - /HellHunt_Data/Save*.Dat: + "/HellHunt_Data/Save*.Dat": tags: - save when: - os: windows - /AppData/LocalLow/T19/DreadTemplar: + "/AppData/LocalLow/T19/DreadTemplar": tags: - config when: @@ -159344,7 +159827,7 @@ Dread Templar: installDir: Dread Templar: {} launch: - /DreadTemplar.exe: + "/DreadTemplar.exe": - when: - store: steam steam: @@ -159377,7 +159860,7 @@ Dread X Collection 5: Dread X Collection 5: {} steam: id: 1899810 -'Dread X Collection: The Hunt': +"Dread X Collection: The Hunt": gog: id: 1565289890 installDir: @@ -159388,7 +159871,7 @@ Dread of Laughter: installDir: Dread of Laughter: {} launch: - /DoL.exe: + "/DoL.exe": - when: - os: windows store: steam @@ -159404,23 +159887,23 @@ DreadHaunt: id: 1855580 DreadOut: files: - /cloud/: + "/cloud/": tags: - save when: - os: windows - os: linux - /cloud//*/profile.cfg: + "/cloud//*/profile.cfg": tags: - config when: - os: windows - /AppData/LocalLow/Digital Happiness/dreadout//screen.cfg: + "/AppData/LocalLow/Digital Happiness/dreadout//screen.cfg": tags: - config when: - os: windows - /unity3d/Digital Happiness/dreadout: + "/unity3d/Digital Happiness/dreadout": tags: - config when: @@ -159430,21 +159913,24 @@ DreadOut: installDir: DreadOut: {} launch: - /dreadout.app: + "/dreadout.app": - when: - os: mac store: steam - /dreadout.exe: + "/dreadout.exe": - when: - bit: 64 os: windows store: steam - /dreadout.sh: + "/dreadout.sh": - when: - os: linux store: steam - /dreadout32.exe: + "/dreadout32.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam @@ -159456,12 +159942,12 @@ DreadOut: id: 269790 DreadOut 2: files: - /cloud/: + "/cloud/": tags: - save when: - os: windows - /DreadOut2/Saved/Config/WindowsNoEditor: + "/DreadOut2/Saved/Config/WindowsNoEditor": tags: - config when: @@ -159469,18 +159955,18 @@ DreadOut 2: installDir: DreadOut 2: {} launch: - /DreadOut2.exe: + "/DreadOut2.exe": - when: - bit: 64 os: windows store: steam steam: id: 945710 -'DreadOut: Keepers of The Dark': +"DreadOut: Keepers of The Dark": installDir: Keepers of The Dark: {} launch: - /kotd.exe: + "/kotd.exe": - when: - bit: 64 os: windows @@ -159491,11 +159977,11 @@ DreadOut 2: - config steam: id: 418950 -'DreadStar: The Quest for Revenge': +"DreadStar: The Quest for Revenge": installDir: DreadStar: {} launch: - /DreadStar.exe: + "/DreadStar.exe": - when: - os: windows store: steam @@ -159505,7 +159991,7 @@ Dreadborne Drifters: installDir: Dreadborne Drifters: {} launch: - /db.exe: + "/db.exe": - when: - store: steam steam: @@ -159514,7 +160000,7 @@ Dreadful: installDir: Dreadful: {} launch: - /Dreadful.exe: + "/Dreadful.exe": - when: - os: windows store: steam @@ -159529,19 +160015,19 @@ Dreadlands: installDir: Dreadlands: {} launch: - /launcher/Launcher.exe: + "/launcher/Launcher.exe": - when: - os: windows store: steam - workingDir: /launcher + workingDir: "/launcher" steam: id: 1054690 Dreadnought: installDir: Dreadnought: {} launch: - /DreadnoughtLauncher.exe: - - arguments: '--debug' + "/DreadnoughtLauncher.exe": + - arguments: "--debug" when: - os: windows store: steam @@ -159551,7 +160037,7 @@ Dreadnought Sol: installDir: Dreadnought Sol: {} launch: - /Dreadnought.exe: + "/Dreadnought.exe": - when: - os: windows store: steam @@ -159559,17 +160045,17 @@ Dreadnought Sol: id: 722580 Dream: files: - /Dream/Engine/Config/*.ini: + "/Dream/Engine/Config/*.ini": tags: - config when: - os: windows - /DreamSaves/*.Dream: + "/DreamSaves/*.Dream": tags: - save when: - os: windows - /UDKGame/Config/*.ini: + "/UDKGame/Config/*.ini": tags: - config when: @@ -159579,18 +160065,18 @@ Dream: installDir: Dream: {} launch: - /Binaries/Win32/Dream.exe: + "/Binaries/Win32/Dream.exe": - when: - os: windows store: steam - workingDir: /Binaries/Win32 + workingDir: "/Binaries/Win32" steam: id: 229580 Dream Alone: installDir: Dream Alone: {} launch: - /LauncherNNG.exe: + "/LauncherNNG.exe": - when: - os: windows store: steam @@ -159600,12 +160086,12 @@ Dream Car Builder: installDir: Dream Car Builder: {} launch: - /dcr3d_x32.exe: + "/dcr3d_x32.exe": - when: - bit: 32 os: windows store: steam - /dcr3d_x64.exe: + "/dcr3d_x64.exe": - when: - bit: 64 os: windows @@ -159616,17 +160102,17 @@ Dream Catcher: installDir: Dream Catcher: {} launch: - /DreamCatcher.exe: + "/DreamCatcher.exe": - when: - os: windows store: steam steam: id: 1275290 -'Dream Catcher Chronicles: Manitou': +"Dream Catcher Chronicles: Manitou": installDir: Mystery Masters The Dream Catcher Chronicles Manitou: {} launch: - /Dreamcatcher.exe: + "/Dreamcatcher.exe": - when: - os: windows store: steam @@ -159636,11 +160122,11 @@ Dream Chamber: installDir: Dream Chamber: {} launch: - /DreamChamber.app: + "/DreamChamber.app": - when: - os: mac store: steam - /DreamChamber.exe: + "/DreamChamber.exe": - when: - os: windows store: steam @@ -159651,14 +160137,14 @@ Dream Channel: Dream Channel: {} steam: id: 744660 -'Dream Chronicles: The Chosen Child': +"Dream Chronicles: The Chosen Child": files: - /PlayFirst/dream-chronicles-chosen-child: + "/PlayFirst/dream-chronicles-chosen-child": tags: - save when: - os: windows - /PlayFirst/dream-chronicles-chosen-child/prefs.dat: + "/PlayFirst/dream-chronicles-chosen-child/prefs.dat": tags: - config when: @@ -159666,11 +160152,11 @@ Dream Channel: installDir: Dream Chronicles The Chosen Child: {} launch: - /Dream Chronicles - The Chosen Child.app: + "/Dream Chronicles - The Chosen Child.app": - when: - os: mac store: steam - /dc_chosen_child.exe: + "/dc_chosen_child.exe": - when: - os: windows store: steam @@ -159683,12 +160169,12 @@ Dream Coaster VR: id: 663190 Dream Cycle: files: - /DreamCycle/Saved/SaveGames: + "/DreamCycle/Saved/SaveGames": tags: - save when: - os: windows - /DreamCycle/Saved/SaveGames/Settings: + "/DreamCycle/Saved/SaveGames/Settings": tags: - config when: @@ -159696,25 +160182,25 @@ Dream Cycle: installDir: Dream Cycle: {} launch: - /DreamCycle.exe: + "/DreamCycle.exe": - when: - os: windows store: steam steam: id: 1105590 -'Dream Daddy: A Dad Dating Simulator': +"Dream Daddy: A Dad Dating Simulator": files: - /Saves: + "/Saves": tags: - save when: - os: windows - /Library/Application Support/Steam/SteamApps/common/Dream Daddy/DDaDDs.app/Saves: + "/Library/Application Support/Steam/SteamApps/common/Dream Daddy/DDaDDs.app/Saves": tags: - save when: - os: mac - /Game Grumps/Dream Daddy: + "/Game Grumps/Dream Daddy": tags: - save when: @@ -159722,21 +160208,21 @@ Dream Cycle: installDir: Dream Daddy: {} launch: - /DDaDDS.x86: + "/DDaDDS.x86": - when: - bit: 32 os: linux store: steam - /DDaDDS.x86_64: + "/DDaDDS.x86_64": - when: - bit: 64 os: linux store: steam - /DDaDDs.app: + "/DDaDDs.app": - when: - os: mac store: steam - /ddadds.exe: + "/ddadds.exe": - when: - os: windows store: steam @@ -159750,27 +160236,27 @@ Dream Dealer: installDir: Dream Dealer: {} launch: - /DreamDealer32.exe: + "/DreamDealer32.exe": - when: - bit: 32 os: windows store: steam - /DreamDealer64.exe: + "/DreamDealer64.exe": - when: - bit: 64 os: windows store: steam - /DreamDealerLinuxUniversal.x86: + "/DreamDealerLinuxUniversal.x86": - when: - bit: 32 os: linux store: steam - /DreamDealerLinuxUniversal.x86_64: + "/DreamDealerLinuxUniversal.x86_64": - when: - bit: 64 os: linux store: steam - /DreamDealerMacosxUniversal.app: + "/DreamDealerMacosxUniversal.app": - when: - os: mac store: steam @@ -159780,7 +160266,7 @@ Dream Detective: installDir: Dream Detective: {} launch: - /DreamDetective.exe: + "/DreamDetective.exe": - when: - os: windows store: steam @@ -159790,7 +160276,7 @@ Dream Enders RPG: installDir: DreamEnders: {} launch: - /DreamEnders.exe: + "/DreamEnders.exe": - when: - os: windows store: steam @@ -159800,19 +160286,19 @@ Dream Ending: installDir: Dream Ending: {} launch: - /DreamEnding.exe: + "/DreamEnding.exe": - when: - os: windows store: steam steam: id: 944020 -'Dream Engines: Nomad Cities': +"Dream Engines: Nomad Cities": gog: id: 1630833604 installDir: Dream Engines Nomad Cities: {} launch: - /Dream Engines.exe: + "/Dream Engines.exe": - when: - os: windows store: steam @@ -159822,7 +160308,7 @@ Dream Factory: installDir: Dream Factory: {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: @@ -159831,11 +160317,11 @@ Dream Flash: installDir: Dream Flash: {} launch: - /Dream Flash.app: + "/Dream Flash.app": - when: - os: mac store: steam - /Dream Flash.exe: + "/Dream Flash.exe": - when: - os: windows store: steam @@ -159846,11 +160332,11 @@ Dream Golf VR: Dream_Golf_VR: {} steam: id: 723610 -'Dream Hills: Captured Magic': +"Dream Hills: Captured Magic": installDir: Dream Hills Captured Magic: {} launch: - /dream_hills.exe: + "/dream_hills.exe": - when: - os: windows store: steam @@ -159860,7 +160346,7 @@ Dream Home: installDir: Dream Home: {} launch: - /dreamhome.app/Contents/MacOS/dreamhome: + "/dreamhome.app/Contents/MacOS/dreamhome": - when: - os: mac store: steam @@ -159870,7 +160356,7 @@ Dream Jump Adventure: installDir: Dream Jump Adventure: {} launch: - /Dream Jump Adventure/Dream Jump Adventure.exe: + "/Dream Jump Adventure/Dream Jump Adventure.exe": - when: - store: steam steam: @@ -159879,7 +160365,7 @@ Dream Keeper: installDir: Dream Keeper: {} launch: - /Dream Keeper.exe: + "/Dream Keeper.exe": - when: - os: windows store: steam @@ -159899,16 +160385,16 @@ Dream Pinball 3D: installDir: dream_pinball_3D: {} launch: - /Dream Pinball 3D.app/Contents/MacOS/Dream Pinball 3D: + "/Dream Pinball 3D.app/Contents/MacOS/Dream Pinball 3D": - when: - os: mac store: steam - /RunGame: + "/RunGame": - when: - bit: 64 os: linux store: steam - /dp3d.exe: + "/dp3d.exe": - when: - os: windows store: steam @@ -159918,16 +160404,16 @@ Dream Quest: installDir: Dream Quest: {} launch: - /Mac.app/Contents/MacOS/Mac: + "/Mac.app/Contents/MacOS/Mac": - when: - os: mac store: steam - /Win32.exe: + "/Win32.exe": - when: - bit: 32 os: windows store: steam - /Windows64.exe: + "/Windows64.exe": - when: - bit: 64 os: windows @@ -159938,7 +160424,7 @@ Dream Solutions: installDir: Dream Solution: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -159948,7 +160434,7 @@ Dream Stone: installDir: Dream Stone: {} launch: - /Dream.exe: + "/Dream.exe": - when: - os: windows store: steam @@ -159958,16 +160444,16 @@ Dream Tale: installDir: Dream Tale: {} launch: - /Dream Tale.exe: + "/Dream Tale.exe": - when: - store: steam steam: id: 337450 -'Dream Tale: The Golden Keys': +"Dream Tale: The Golden Keys": installDir: Dream Tale: {} launch: - /Dream Tale.exe: + "/Dream Tale.exe": - when: - store: steam steam: @@ -159981,7 +160467,7 @@ Dream Walker: installDir: Dream Walker: {} launch: - /dreamwalker.exe: + "/dreamwalker.exe": - when: - os: windows store: steam @@ -159991,17 +160477,17 @@ Dream of Mirror Online: installDir: DOMO_US: {} launch: - /Main/DOMO.exe: + "/Main/DOMO.exe": - when: - store: steam - workingDir: /Main + workingDir: "/Main" steam: id: 335820 Dream on the Moon: installDir: Dream_On_The_Moon: {} launch: - /Dream_On_The_Moon/Dream_On_The_Moon.exe: + "/Dream_On_The_Moon/Dream_On_The_Moon.exe": - when: - os: windows store: steam @@ -160011,7 +160497,7 @@ Dream rose: installDir: Dream Rose: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -160028,11 +160514,11 @@ DreamBreak: installDir: DreamBreak: {} launch: - /DreamBreak.app: + "/DreamBreak.app": - when: - os: mac store: steam - /DreamBreak.exe: + "/DreamBreak.exe": - when: - os: windows store: steam @@ -160042,7 +160528,7 @@ DreamEater: installDir: DreamEater: {} launch: - /DreamEater.exe: + "/DreamEater.exe": - when: - bit: 64 os: windows @@ -160066,16 +160552,16 @@ DreamTank: id: 664560 DreamWeb: files: - /DREAMWEB.D0*: + "/DREAMWEB.D0*": tags: - save when: - os: dos -'DreamWorks Dragons: Dawn of New Riders': +"DreamWorks Dragons: Dawn of New Riders": installDir: Dragons Dawn of New Riders: {} launch: - /DragonsDawnOfNewRiders.exe: + "/DragonsDawnOfNewRiders.exe": - when: - os: windows store: steam @@ -160090,25 +160576,25 @@ Dreamals: installDir: Dreamals: {} launch: - /Dreamals.app/Contents/MacOS/Dreamals: + "/Dreamals.app/Contents/MacOS/Dreamals": - when: - os: mac store: steam - /Dreamals.exe: + "/Dreamals.exe": - when: - os: windows store: steam - /Dreamals.x86: + "/Dreamals.x86": - when: - os: linux store: steam steam: id: 480770 -'Dreamals: Dream Quest': +"Dreamals: Dream Quest": installDir: Dreamals Dream Quest: {} launch: - /DDQ.exe: + "/DDQ.exe": - when: - os: windows store: steam @@ -160118,7 +160604,7 @@ Dreamblaster: installDir: Dreamblaster: {} launch: - /Dreamblaster.exe: + "/Dreamblaster.exe": - when: - os: windows store: steam @@ -160128,7 +160614,7 @@ Dreamcage Escape: installDir: Dreamcage Escape: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -160140,35 +160626,35 @@ Dreamcutter: installDir: Dreamcutter: {} launch: - /Dreamcutter.exe: + "/Dreamcutter.exe": - when: - store: steam steam: id: 2163030 Dreamfall Chapters: files: - /.config/RedThreadGames/DreamfallChapters: + "/.config/RedThreadGames/DreamfallChapters": tags: - save when: - os: mac - /.config/unity3d/Red Thread Games/Dreamfall Chapters: + "/.config/unity3d/Red Thread Games/Dreamfall Chapters": tags: - config - save when: - os: linux - /AppData/LocalLow/Red Thread Games/Dreamfall Chapters: + "/AppData/LocalLow/Red Thread Games/Dreamfall Chapters": tags: - save when: - os: windows - /Library/Application Support/unity.Red Thread Games.Dreamfall Chapters: + "/Library/Application Support/unity.Red Thread Games.Dreamfall Chapters": tags: - save when: - os: mac - /Library/Preferences/unity.Red Thread Games.Dreamfall Chapters.plist: + "/Library/Preferences/unity.Red Thread Games.Dreamfall Chapters.plist": tags: - config when: @@ -160183,17 +160669,17 @@ Dreamfall Chapters: installDir: Dreamfall Chapters: {} launch: - /Dreamfall Chapters: + "/Dreamfall Chapters": - when: - bit: 64 os: linux store: steam - /Dreamfall Chapters.app: + "/Dreamfall Chapters.app": - when: - bit: 64 os: mac store: steam - /Dreamfall Chapters.exe: + "/Dreamfall Chapters.exe": - when: - os: windows store: steam @@ -160203,14 +160689,14 @@ Dreamfall Chapters: - config steam: id: 237850 -'Dreamfall: The Longest Journey': +"Dreamfall: The Longest Journey": files: - /prefs.dat: + "/prefs.dat": tags: - config when: - os: windows - /saves: + "/saves": tags: - save when: @@ -160220,7 +160706,7 @@ Dreamfall Chapters: installDir: Dreamfall The Longest Journey: {} launch: - /dreamfall.exe: + "/dreamfall.exe": - when: - store: steam steam: @@ -160230,14 +160716,14 @@ Dreamflight VR: DREAMFLIGHTVR: {} steam: id: 365140 -'Dreamhouse: The Game': +"Dreamhouse: The Game": steam: id: 1468400 Dreamily: installDir: Dreamly: {} launch: - /Dreamily.exe: + "/Dreamily.exe": - when: - os: windows store: steam @@ -160247,7 +160733,7 @@ Dreaming: installDir: Dreaming: {} launch: - /_bin/Dreaming.exe: + "/_bin/Dreaming.exe": - when: - bit: 64 os: windows @@ -160259,7 +160745,7 @@ Dreaming About You: id: 665400 Dreaming Sarah: files: - /save.json: + "/save.json": tags: - save when: @@ -160267,16 +160753,16 @@ Dreaming Sarah: installDir: Dreaming Sarah: {} launch: - /DreamingSarah: + "/DreamingSarah": - when: - bit: 64 os: linux store: steam - /DreamingSarah.app: + "/DreamingSarah.app": - when: - os: mac store: steam - /DreamingSarah.exe: + "/DreamingSarah.exe": - when: - os: windows store: steam @@ -160284,12 +160770,12 @@ Dreaming Sarah: id: 296870 Dreamkiller: files: - /Aspyr/Dreamkiller/Config.txt: + "/Aspyr/Dreamkiller/Config.txt": tags: - config when: - os: windows - /Aspyr/Dreamkiller/Saves: + "/Aspyr/Dreamkiller/Saves": tags: - save when: @@ -160297,10 +160783,10 @@ Dreamkiller: installDir: Dreamkiller: {} launch: - /dreamkiller.exe: + "/dreamkiller.exe": - when: - store: steam - /localized_readme.exe: + "/localized_readme.exe": - when: - store: steam steam: @@ -160312,17 +160798,17 @@ Dreamland Solitaire: installDir: Dreamland Solitaire: {} launch: - /DreamlandSolitaire.exe: + "/DreamlandSolitaire.exe": - when: - os: windows store: steam steam: id: 1149590 -'Dreamland Solitaire: Dragon''s Fury': +"Dreamland Solitaire: Dragon's Fury": installDir: - Dreamland Solitaire Dragon's Fury: {} + "Dreamland Solitaire Dragon's Fury": {} launch: - /DreamlandSolitaire_Dragon'sFury.exe: + "/DreamlandSolitaire_Dragon'sFury.exe": - when: - os: windows store: steam @@ -160332,11 +160818,11 @@ Dreamlike Worlds: installDir: Dreamlike Worlds: {} launch: - /Dreamlike Worlds.app: + "/Dreamlike Worlds.app": - when: - os: mac store: steam - /Dreamlike Worlds.exe: + "/Dreamlike Worlds.exe": - when: - os: windows store: steam @@ -160351,10 +160837,10 @@ Dreams in the Witch House: installDir: Dreams in the Witch House: {} launch: - /Dreams in the Witch House.exe: + "/Dreams in the Witch House.exe": - when: - store: steam - /winsetup.exe: + "/winsetup.exe": - when: - store: steam steam: @@ -160364,15 +160850,15 @@ Dreams of Dali: DreamsOfDali: {} steam: id: 591360 -'Dreams of Desire: Definitive Edition': +"Dreams of Desire: Definitive Edition": installDir: Dreams of Desire Definitive Edition: {} launch: - /DreamsofDesire.exe: + "/DreamsofDesire.exe": - when: - os: windows store: steam - /DreamsofDesire.sh: + "/DreamsofDesire.sh": - when: - os: linux store: steam @@ -160382,7 +160868,7 @@ Dreams of Greatness: installDir: Dreams of Greatness: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -160392,7 +160878,7 @@ Dreams of Solari - Chapter 1: installDir: Dreams of Solari - Chapter 1: {} launch: - /Dreams Of Solari.exe: + "/Dreams Of Solari.exe": - when: - os: windows store: steam @@ -160402,21 +160888,21 @@ Dreamscape: installDir: Dreamscape: {} launch: - /Dreamscape/Dreamscape.exe: + "/Dreamscape/Dreamscape.exe": - when: - os: windows store: steam - workingDir: /Dreamscape + workingDir: "/Dreamscape" steam: id: 271990 Dreamscaper: files: - /Dreamscaper/Saved/Config/WindowsNoEditor: + "/Dreamscaper/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /Dreamscaper/Saved/SaveGames: + "/Dreamscaper/Saved/SaveGames": tags: - save when: @@ -160426,26 +160912,26 @@ Dreamscaper: installDir: Dreamscaper: {} launch: - /Dreamscaper.exe: + "/Dreamscaper.exe": - when: - bit: 64 os: windows store: steam steam: id: 1040420 -'Dreamscapes: Nightmare''s Heir': +"Dreamscapes: Nightmare's Heir": installDir: - Dreamscapes Nightmare's Heir: {} + "Dreamscapes Nightmare's Heir": {} launch: - /Dreamscapes_Nightmares_Heir.exe: + "/Dreamscapes_Nightmares_Heir.exe": - when: - os: windows store: steam steam: id: 353110 -'Dreamscapes: The Sandman': +"Dreamscapes: The Sandman": files: - /ShamanGS/Dreamscapes_TheSandman_CE: + "/ShamanGS/Dreamscapes_TheSandman_CE": tags: - config - save @@ -160454,16 +160940,16 @@ Dreamscaper: installDir: Dreamscapes The Sandman: {} launch: - /Dreamscapes_TheSandman_CE.app: + "/Dreamscapes_TheSandman_CE.app": - when: - os: mac store: steam - /Dreamscapes_TheSandman_CE.exe: + "/Dreamscapes_TheSandman_CE.exe": - when: - os: windows store: steam registry: - 'HKEY_CURRENT_USER/Software/sandman/Dreamscapes: The Sandman Premium Edition': + "HKEY_CURRENT_USER/Software/sandman/Dreamscapes: The Sandman Premium Edition": tags: - config steam: @@ -160472,41 +160958,41 @@ Dreamstones: installDir: Dreamstones: {} launch: - /Dreamstones.exe: + "/Dreamstones.exe": - when: - os: windows store: steam steam: id: 645920 -'Dreamwalker: Never Fall Asleep': +"Dreamwalker: Never Fall Asleep": installDir: Dreamwalker: {} launch: - /Dreamwalker.exe: + "/Dreamwalker.exe": - when: - os: windows store: steam - /Dreamwalker_amd64: + "/Dreamwalker_amd64": - when: - bit: 64 os: linux store: steam - /Dreamwalker_i386: + "/Dreamwalker_i386": - when: - bit: 32 os: linux store: steam - /mac_steam.app/Contents/MacOS/mac_steam: + "/mac_steam.app/Contents/MacOS/mac_steam": - when: - os: mac store: steam steam: id: 916160 -Dreamworks Spirit Lucky's Big Adventure: +"Dreamworks Spirit Lucky's Big Adventure": installDir: Spirit: {} launch: - /Spirit.exe: + "/Spirit.exe": - when: - bit: 64 os: windows @@ -160517,7 +161003,7 @@ Dredgers: installDir: Dredgers: {} launch: - /Dredgers.exe: + "/Dredgers.exe": - when: - os: windows store: steam @@ -160527,21 +161013,21 @@ Dreii: installDir: dreii: {} launch: - /Dreii.app: + "/Dreii.app": - when: - os: mac store: steam - /Dreii.exe: + "/Dreii.exe": - when: - bit: 32 os: windows store: steam - /Dreii.x86: + "/Dreii.x86": - when: - bit: 32 os: linux store: steam - /Dreii.x86_64: + "/Dreii.x86_64": - when: - bit: 64 os: linux @@ -160554,7 +161040,7 @@ Drekirökr - Dusk of the Dragon: installDir: Drekirokr - Dusk of the Dragon: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -160564,17 +161050,17 @@ Dresden Files Cooperative Card Game: installDir: Dresden Files Cooperative Card Game: {} launch: - /DFCO: + "/DFCO": - when: - bit: 64 os: linux store: steam - /DFCO.app/Contents/MacOS/DFCO: + "/DFCO.app/Contents/MacOS/DFCO": - when: - bit: 64 os: mac store: steam - /DFCO.exe: + "/DFCO.exe": - when: - bit: 64 os: windows @@ -160585,7 +161071,7 @@ Dress-up Traveller: installDir: Dress-up Traveller: {} launch: - /Dress-up Traveller.exe: + "/Dress-up Traveller.exe": - when: - os: windows store: steam @@ -160595,15 +161081,15 @@ Drew and the Floating Labyrinth: installDir: Drew and the Floating Labyrinth: {} launch: - /Drew and the Floating Labyrinth - SD - LINUX.x86: + "/Drew and the Floating Labyrinth - SD - LINUX.x86": - when: - os: linux store: steam - /Drew and the Floating Labyrinth - SD - MAC.app: + "/Drew and the Floating Labyrinth - SD - MAC.app": - when: - os: mac store: steam - /Drew and the Floating Labyrinth - SD - WIN.exe: + "/Drew and the Floating Labyrinth - SD - WIN.exe": - when: - os: windows store: steam @@ -160613,7 +161099,7 @@ Drift (Over) Drive: installDir: Drift (Over) Drive: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -160623,7 +161109,7 @@ Drift 1969: installDir: Drift 1969: {} launch: - /Drift 1969.exe: + "/Drift 1969.exe": - when: - store: steam steam: @@ -160632,7 +161118,7 @@ Drift 4000: installDir: Drift4000: {} launch: - /Drift4000.exe: + "/Drift4000.exe": - when: - os: windows store: steam @@ -160642,7 +161128,7 @@ Drift 7 Islands: installDir: Drift 7 Islands: {} launch: - /D7i.exe: + "/D7i.exe": - when: - os: windows store: steam @@ -160652,11 +161138,11 @@ Drift 84: installDir: DRIFT_84: {} launch: - /game.app: + "/game.app": - when: - os: mac store: steam - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -160666,7 +161152,7 @@ Drift Alone: installDir: Drift Alone: {} launch: - /DriftAlone.exe: + "/DriftAlone.exe": - when: - bit: 64 os: windows @@ -160677,7 +161163,7 @@ Drift Gear: installDir: Drift GEAR: {} launch: - /Drift GEAR.exe: + "/Drift GEAR.exe": - when: - os: windows store: steam @@ -160687,7 +161173,7 @@ Drift Horizon Online: installDir: Drift Horizon Online: {} launch: - /Drift Horizon.exe: + "/Drift Horizon.exe": - when: - os: windows store: steam @@ -160697,37 +161183,37 @@ Drift Into Eternity: installDir: Drift Into Eternity: {} launch: - /Drift_Into_Eternity.app: + "/Drift_Into_Eternity.app": - when: - os: mac store: steam - /Drift_Into_Eternity.exe: + "/Drift_Into_Eternity.exe": - when: - os: windows store: steam - /Drift_Into_Eternity.x86: - - arguments: '-screen-fullscreen 0' + "/Drift_Into_Eternity.x86": + - arguments: "-screen-fullscreen 0" when: - bit: 32 os: linux store: steam - /Drift_Into_Eternity.x86_64: - - arguments: '-screen-fullscreen 0' + "/Drift_Into_Eternity.x86_64": + - arguments: "-screen-fullscreen 0" when: - bit: 64 os: linux store: steam steam: id: 431830 -'Drift King: Survival': +"Drift King: Survival": installDir: Drift King: {} launch: - /DriftKing.app/Contents/MacOS/DriftKing: + "/DriftKing.app/Contents/MacOS/DriftKing": - when: - os: mac store: steam - /DriftKing.exe: + "/DriftKing.exe": - when: - os: windows store: steam @@ -160737,7 +161223,7 @@ Drift Legends: installDir: Drift Legends: {} launch: - /Drift Legends.exe: + "/Drift Legends.exe": - when: - os: windows store: steam @@ -160750,7 +161236,7 @@ Drift Masters: installDir: Drift Masters: {} launch: - /Drift Masters.exe: + "/Drift Masters.exe": - when: - store: steam steam: @@ -160759,7 +161245,7 @@ Drift Of The Hill: installDir: Drift Of The Hill: {} launch: - /Drift Of The Hill.exe: + "/Drift Of The Hill.exe": - when: - store: steam steam: @@ -160768,20 +161254,20 @@ Drift Stage: installDir: Drift Stage: {} launch: - /driftstage.app: + "/driftstage.app": - when: - os: mac store: steam - /driftstage.exe: + "/driftstage.exe": - when: - os: windows store: steam - /driftstage.x86: + "/driftstage.x86": - when: - bit: 32 os: linux store: steam - /driftstage.x86_64: + "/driftstage.x86_64": - when: - bit: 64 os: linux @@ -160792,7 +161278,7 @@ Drift Streets Japan: installDir: Drift Streets Japan Windows: {} launch: - /Drift Streets Japan.exe: + "/Drift Streets Japan.exe": - when: - os: windows store: steam @@ -160802,7 +161288,7 @@ Drift Stunt Racing 2019: installDir: Drift Stunt Racing 2019: {} launch: - /DriftStuntRacing.exe: + "/DriftStuntRacing.exe": - when: - store: steam steam: @@ -160811,7 +161297,7 @@ Drift Tuner 2019: installDir: Drift Tuner 2019: {} launch: - /DriftTuner2019.exe: + "/DriftTuner2019.exe": - when: - os: windows store: steam @@ -160821,7 +161307,7 @@ Drift Zone: installDir: Drift Zone: {} launch: - /DriftZone.exe: + "/DriftZone.exe": - when: - os: windows store: steam @@ -160829,7 +161315,7 @@ Drift Zone: id: 726600 Drift21: files: - /eccgames/Drift21: + "/eccgames/Drift21": tags: - save when: @@ -160837,7 +161323,7 @@ Drift21: installDir: Drift21: {} launch: - /Drift21.exe: + "/Drift21.exe": - when: - os: windows store: steam @@ -160847,7 +161333,7 @@ Drift86: installDir: Drift86 V3: {} launch: - /Drift86 V3.exe: + "/Drift86 V3.exe": - when: - store: steam steam: @@ -160856,7 +161342,7 @@ DriftForce: installDir: DriftForce: {} launch: - /DriftForce.exe: + "/DriftForce.exe": - when: - bit: 64 os: windows @@ -160867,8 +161353,8 @@ DriftKing 2D: installDir: DriftKing2D: {} launch: - /DK2D.exe: - - arguments: '-Windowed' + "/DK2D.exe": + - arguments: "-Windowed" when: - os: windows store: steam @@ -160878,7 +161364,7 @@ DriftOn: installDir: DriftOn: {} launch: - /DriftOn.exe: + "/DriftOn.exe": - when: - os: windows store: steam @@ -160888,24 +161374,24 @@ DriftWay: installDir: DriftWay: {} launch: - /Drift Way.exe: + "/Drift Way.exe": - when: - store: steam steam: id: 1146480 -Drifted Tales - Ancestor's Isle: +"Drifted Tales - Ancestor's Isle": steam: id: 1047730 Drifter: files: - /Drifter.prefs: + "/Drifter.prefs": tags: - config when: - os: windows - os: mac - os: linux - /Save: + "/Save": tags: - save when: @@ -160915,22 +161401,22 @@ Drifter: installDir: Drifter: {} launch: - /Drifter OSX.app: + "/Drifter OSX.app": - when: - bit: 64 os: mac store: steam - /Drifter-x86: + "/Drifter-x86": - when: - bit: 32 os: linux store: steam - /Drifter-x86-64: + "/Drifter-x86-64": - when: - bit: 64 os: linux store: steam - /drifter.exe: + "/drifter.exe": - when: - os: windows store: steam @@ -160940,7 +161426,7 @@ Drifting Cloud: installDir: Drifting Cloud: {} launch: - /drifting cloud.exe: + "/drifting cloud.exe": - when: - os: windows store: steam @@ -160950,24 +161436,24 @@ Drifting Lands: installDir: Drifting Lands: {} launch: - /drifting-lands.app: + "/drifting-lands.app": - when: - os: mac store: steam - /drifting-lands.exe: + "/drifting-lands.exe": - when: - os: windows store: steam steam: id: 322750 -'Driftland: The Magic Revival': +"Driftland: The Magic Revival": files: - /Driftland/Saved/Config/WindowsNoEditor: + "/Driftland/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /Driftland/Saved/SaveGames: + "/Driftland/Saved/SaveGames": tags: - save when: @@ -160977,7 +161463,7 @@ Drifting Lands: installDir: Driftland The Magic Revival: {} launch: - /Driftland.app: + "/Driftland.app": - when: - os: mac store: steam @@ -160989,7 +161475,7 @@ Drifting Lands: when: - os: mac store: steam - /Driftland.exe: + "/Driftland.exe": - when: - os: windows store: steam @@ -160997,7 +161483,7 @@ Drifting Lands: id: 718650 Driftmoon: files: - /Driftmoon/mainmod/slot*: + "/Driftmoon/mainmod/slot*": tags: - save when: @@ -161007,15 +161493,15 @@ Driftmoon: installDir: Driftmoon: {} launch: - /Driftmoon.app: + "/Driftmoon.app": - when: - os: mac store: steam - /Driftmoon.exe: + "/Driftmoon.exe": - when: - os: windows store: steam - /driftmoon.x86_64: + "/driftmoon.x86_64": - when: - bit: 64 os: linux @@ -161026,11 +161512,11 @@ Driftpunk Racer: installDir: Driftpunk Racer: {} launch: - /Driftpunk Racer.app/Contents/MacOS/Driftpunk Racer: + "/Driftpunk Racer.app/Contents/MacOS/Driftpunk Racer": - when: - os: mac store: steam - /Driftpunk Racer.exe: + "/Driftpunk Racer.exe": - when: - os: windows store: steam @@ -161045,11 +161531,11 @@ Driftwood: installDir: driftwood: {} launch: - /driftwood.app: + "/driftwood.app": - when: - os: mac store: steam - /driftwood.exe: + "/driftwood.exe": - when: - os: windows store: steam @@ -161057,7 +161543,7 @@ Driftwood: id: 1135100 Driftwood The Visual Novel: files: - /game/saves: + "/game/saves": tags: - save when: @@ -161065,15 +161551,15 @@ Driftwood The Visual Novel: installDir: Driftwood The Visual Novel: {} launch: - /Driftwood.app: + "/Driftwood.app": - when: - os: mac store: steam - /Driftwood.exe: + "/Driftwood.exe": - when: - os: windows store: steam - /Driftwood.sh: + "/Driftwood.sh": - when: - os: linux store: steam @@ -161083,7 +161569,7 @@ Drill Arena: installDir: Drill Arena: {} launch: - /Drill Arena.exe: + "/Drill Arena.exe": - when: - store: steam steam: @@ -161092,7 +161578,7 @@ Drill Deal: installDir: Drill Deal: {} launch: - /DrillDeal.exe: + "/DrillDeal.exe": - when: - os: windows store: steam @@ -161105,7 +161591,7 @@ DrillMania: installDir: DrillMania: {} launch: - /DrillMania.exe: + "/DrillMania.exe": - when: - os: windows store: steam @@ -161113,7 +161599,7 @@ DrillMania: id: 905860 Driller: files: - /********: + "/********": tags: - save when: @@ -161127,7 +161613,7 @@ Drink Inc.: installDir: Drink Em: {} launch: - /DrinkEmGame.exe: + "/DrinkEmGame.exe": - when: - os: windows store: steam @@ -161137,16 +161623,16 @@ Drink More Glurp: installDir: Drink More Glurp: {} launch: - /Drink More Glurp.app/Contents/MacOS/Drink More Glurp: + "/Drink More Glurp.app/Contents/MacOS/Drink More Glurp": - when: - os: mac store: steam - /Drink More Glurp.exe: + "/Drink More Glurp.exe": - when: - bit: 64 os: windows store: steam - /Drink More Glurp.x86_64: + "/Drink More Glurp.x86_64": - when: - bit: 64 os: linux @@ -161157,7 +161643,7 @@ Drink Pro Tycoon: installDir: Drink Pro Tycoon: {} launch: - /DrinkProTycoon.exe: + "/DrinkProTycoon.exe": - when: - os: windows store: steam @@ -161167,11 +161653,11 @@ Drinks With Abbey: installDir: Drinks With Abbey: {} launch: - /Drinks-With-Abbey.app/Contents/MacOS/Drinks-With-Abbey: + "/Drinks-With-Abbey.app/Contents/MacOS/Drinks-With-Abbey": - when: - os: mac store: steam - /Drinks-With-Abbey.exe: + "/Drinks-With-Abbey.exe": - when: - os: windows store: steam @@ -161181,7 +161667,7 @@ Drip Drip: installDir: Drip Drip: {} launch: - /Drip Drip.exe: + "/Drip Drip.exe": - when: - os: windows store: steam @@ -161189,7 +161675,7 @@ Drip Drip: id: 358490 Driv3r: files: - /Saves/D3P_/ProfileData: + "/Saves/D3P_/ProfileData": tags: - config - save @@ -161199,7 +161685,7 @@ Drive: installDir: Drive: {} launch: - /Drive.exe: + "/Drive.exe": - when: - os: windows store: steam @@ -161209,7 +161695,7 @@ Drive Buy: installDir: Drive Buy: {} launch: - /Drive Buy.exe: + "/Drive Buy.exe": - when: - bit: 64 os: windows @@ -161220,19 +161706,19 @@ Drive Isle: installDir: Roadfactory: {} launch: - /Drive Isle/Drive Isle.exe: + "/Drive Isle/Drive Isle.exe": - when: - os: windows store: steam - workingDir: /Drive Isle + workingDir: "/Drive Isle" steam: id: 658490 Drive Megapolis: installDir: DriveMGPLS: {} launch: - /Debug/iLevelEditorr.exe: - - arguments: '-menu' + "/Debug/iLevelEditorr.exe": + - arguments: "-menu" when: - os: windows store: steam @@ -161242,7 +161728,7 @@ Drive Switch Evade: installDir: Drive Switch Evade: {} launch: - /Drive Switch Evade.exe: + "/Drive Switch Evade.exe": - when: - store: steam steam: @@ -161251,7 +161737,7 @@ Drive for Your Life: installDir: Drive for Your Life: {} launch: - /Drive For Your Life.exe: + "/Drive For Your Life.exe": - when: - os: windows store: steam @@ -161263,7 +161749,7 @@ Drive on Moscow: installDir: Drive on Moscow: {} launch: - /autorun.exe: + "/autorun.exe": - when: - os: windows store: steam @@ -161273,15 +161759,15 @@ Drive to Hell: installDir: Drive to Hell: {} launch: - /DriveToHell.app: + "/DriveToHell.app": - when: - os: mac store: steam - /DriveToHell.exe: + "/DriveToHell.exe": - when: - os: windows store: steam - /DriveToHell.x86: + "/DriveToHell.x86": - when: - os: linux store: steam @@ -161291,11 +161777,11 @@ Drive!Drive!Drive!: installDir: DriveDriveDrive: {} launch: - /DriveDriveDrive.app: + "/DriveDriveDrive.app": - when: - os: mac store: steam - /DriveDriveDrive.exe: + "/DriveDriveDrive.exe": - when: - os: windows store: steam @@ -161309,15 +161795,15 @@ Drive-By Hero: installDir: Drive By Hero: {} launch: - /DriveByHero.app: + "/DriveByHero.app": - when: - os: mac store: steam - /DriveByHero.exe: + "/DriveByHero.exe": - when: - os: windows store: steam - /DriveByHero.x86: + "/DriveByHero.x86": - when: - os: linux store: steam @@ -161327,7 +161813,7 @@ Drive//Shaft: installDir: DriveShaft: {} launch: - /DriveShaft.exe: + "/DriveShaft.exe": - when: - os: windows store: steam @@ -161337,11 +161823,11 @@ Driveby Gangster: installDir: Driveby Gangster: {} launch: - /Driveby Gangster.app/Contents/MacOS/Driveby Gangster: + "/Driveby Gangster.app/Contents/MacOS/Driveby Gangster": - when: - os: mac store: steam - /Driveby Gangster.exe: + "/Driveby Gangster.exe": - when: - bit: 64 os: windows @@ -161352,34 +161838,34 @@ Driven Out: installDir: Driven Out: {} launch: - /Driven_out_STEAM.exe: + "/Driven_out_STEAM.exe": - when: - store: steam steam: id: 1054710 Driver: files: - /CONFIG.DAT: + "/CONFIG.DAT": tags: - config when: - os: windows - /Saves/GAME*.BIN: + "/Saves/GAME*.BIN": tags: - save when: - os: windows -'Driver Pro: 2017': +"Driver Pro: 2017": steam: id: 710540 -'Driver: Parallel Lines': +"Driver: Parallel Lines": files: - /My Games/Driver Parallel Lines/.DPLSave: + "/My Games/Driver Parallel Lines/.DPLSave": tags: - save when: - os: windows - /My Games/Driver Parallel Lines/Config.DPLUser: + "/My Games/Driver Parallel Lines/Config.DPLUser": tags: - config when: @@ -161389,29 +161875,29 @@ Driver: installDir: Driver Parallel Lines: {} launch: - /DriverParallelLines.exe: + "/DriverParallelLines.exe": - when: - store: steam steam: id: 21780 -'Driver: San Francisco': +"Driver: San Francisco": files: - /Library/Application Support/Ubisoft/Driver San Francisco/Profiles//savegames: + "/Library/Application Support/Ubisoft/Driver San Francisco/Profiles//savegames": tags: - save when: - os: mac - /Library/Application Support/Ubisoft/Driver San Francisco/graphics.ini: + "/Library/Application Support/Ubisoft/Driver San Francisco/graphics.ini": tags: - config when: - os: mac - /Ubisoft/Driver San Francisco//savegames: + "/Ubisoft/Driver San Francisco//savegames": tags: - save when: - os: windows - /Ubisoft/Driver San Francisco/graphics.ini: + "/Ubisoft/Driver San Francisco/graphics.ini": tags: - config when: @@ -161419,12 +161905,12 @@ Driver: installDir: Driver San Francisco: {} launch: - /Driver San Francisco.app: + "/Driver San Francisco.app": - when: - os: mac store: steam - /Driver.exe: - - arguments: '-uplay_steam_mode' + "/Driver.exe": + - arguments: "-uplay_steam_mode" when: - os: windows store: steam @@ -161434,7 +161920,7 @@ Driving School Simulator: installDir: Driving School Simulator: {} launch: - /Driving School Simulator.exe: + "/Driving School Simulator.exe": - when: - os: windows store: steam @@ -161442,7 +161928,7 @@ Driving School Simulator: id: 273730 Drizzlepath: files: - /USER/Profiles/default: + "/USER/Profiles/default": tags: - config when: @@ -161450,26 +161936,26 @@ Drizzlepath: installDir: Drizzlepath: {} launch: - /Bin32/GameSDK.exe: + "/Bin32/GameSDK.exe": - when: - bit: 32 os: windows store: steam - /Bin64/GameSDK.exe: + "/Bin64/GameSDK.exe": - when: - bit: 64 os: windows store: steam steam: id: 355760 -'Drizzlepath: Deja Vu': +"Drizzlepath: Deja Vu": files: - /DejaVu/Saved/Config/WindowsNoEditor: + "/DejaVu/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /DejaVu/Saved/SaveGames: + "/DejaVu/Saved/SaveGames": tags: - save when: @@ -161477,21 +161963,21 @@ Drizzlepath: installDir: Drizzlepath Deja Vu: {} launch: - /DejaVu.exe: + "/DejaVu.exe": - when: - bit: 64 os: windows store: steam steam: id: 860650 -'Drizzlepath: Genie': +"Drizzlepath: Genie": files: - /Genie/Saved/SaveGames: + "/Genie/Saved/SaveGames": tags: - save when: - os: windows - /Genie/Saved/SaveGames/SettingsSaveFile.sav: + "/Genie/Saved/SaveGames/SettingsSaveFile.sav": tags: - config when: @@ -161499,21 +161985,21 @@ Drizzlepath: installDir: Drizzlepath Genie: {} launch: - /Genie.exe: + "/Genie.exe": - when: - bit: 64 os: windows store: steam steam: id: 438340 -'Drizzlepath: Glass': +"Drizzlepath: Glass": files: - /Glass/Saved/Config/WindowsNoEditor/GameUserSettings.ini: + "/Glass/Saved/Config/WindowsNoEditor/GameUserSettings.ini": tags: - config when: - os: windows - /Glass/Saved/SaveGames: + "/Glass/Saved/SaveGames": tags: - save when: @@ -161521,7 +162007,7 @@ Drizzlepath: installDir: Drizzlepath Glass: {} launch: - /Glass.exe: + "/Glass.exe": - when: - bit: 64 os: windows @@ -161530,7 +162016,7 @@ Drizzlepath: id: 581370 Droid Assault: files: - /userdata//219200/remote: + "/userdata//219200/remote": tags: - config - save @@ -161539,15 +162025,15 @@ Droid Assault: installDir: Droid Assault: {} launch: - /DroidAssault.app: + "/DroidAssault.app": - when: - os: mac store: steam - /DroidAssault.exe: + "/DroidAssault.exe": - when: - os: windows store: steam - /droidassault.sh: + "/droidassault.sh": - when: - os: linux store: steam @@ -161558,7 +162044,7 @@ Droid Invaders: id: 801790 Drome Racers: files: - /LEGO Interactive/Games/Drome Racers/SaveGame.sav: + "/LEGO Interactive/Games/Drome Racers/SaveGame.sav": tags: - save when: @@ -161573,11 +162059,11 @@ Drone Combat: installDir: Drone Combat: {} launch: - /Drone Combat.exe: + "/Drone Combat.exe": - when: - os: windows store: steam - /Drone_Combat.app: + "/Drone_Combat.app": - when: - os: mac store: steam @@ -161587,7 +162073,7 @@ Drone Fighters: installDir: Drone Fighters: {} launch: - /DroneFightersVR.exe: + "/DroneFightersVR.exe": - when: - bit: 64 os: windows @@ -161598,7 +162084,7 @@ Drone Hero: installDir: Drone Hero: {} launch: - /DroneHero.exe: + "/DroneHero.exe": - when: - os: windows store: steam @@ -161621,7 +162107,7 @@ Drone Racer: installDir: Drone Racer: {} launch: - /DroneRacer.exe: + "/DroneRacer.exe": - arguments: novr when: - bit: 64 @@ -161629,15 +162115,15 @@ Drone Racer: store: steam steam: id: 1092300 -'Drone Racer: Canyons': +"Drone Racer: Canyons": installDir: Drone Racer Canyons: {} launch: - /DroneRacerCanyons.app: + "/DroneRacerCanyons.app": - when: - os: mac store: steam - /DroneRacerCanyons.exe: + "/DroneRacerCanyons.exe": - when: - os: windows store: steam @@ -161647,12 +162133,12 @@ Drone Spektra: installDir: Drone Spektra: {} launch: - /DroneSpektra1.0.exe: + "/DroneSpektra1.0.exe": - when: - bit: 32 os: windows store: steam - /MyProject.sh: + "/MyProject.sh": - when: - os: linux store: steam @@ -161672,7 +162158,7 @@ Drone Tracks: installDir: MRDrone: {} launch: - /MRDrone.exe: + "/MRDrone.exe": - when: - bit: 64 os: windows @@ -161686,7 +162172,7 @@ Drone Wars: installDir: Drone Wars: {} launch: - /DroneWarsII.exe: + "/DroneWarsII.exe": - when: - bit: 64 os: windows @@ -161697,25 +162183,25 @@ Drone Zero Gravity: installDir: Drone Zero Gravity: {} launch: - /DroneZG.exe: + "/DroneZG.exe": - when: - os: windows store: steam steam: id: 360680 -'Drone: Remote Tactical Warfare': +"Drone: Remote Tactical Warfare": installDir: DroneRTW: {} launch: - /DroneRTW.exe: + "/DroneRTW.exe": - when: - os: windows store: steam - /DroneRTW_Linux.x86: + "/DroneRTW_Linux.x86": - when: - os: linux store: steam - /DroneRTW_Mac.app: + "/DroneRTW_Mac.app": - when: - os: mac store: steam @@ -161725,7 +162211,7 @@ Drones: installDir: Drones: {} launch: - /Drones.exe: + "/Drones.exe": - when: - bit: 64 os: windows @@ -161736,21 +162222,21 @@ Drones and Ruins: installDir: Drones and Ruins: {} launch: - /Drones_and_Ruins.exe: + "/Drones_and_Ruins.exe": - when: - os: windows store: steam steam: id: 782650 -'Drones, The Human Condition': +"Drones, The Human Condition": installDir: - 'Drones, The Human Condition': {} + "Drones, The Human Condition": {} launch: - /DTHC_Game: + "/DTHC_Game": - when: - os: linux store: steam - /DTHC_Game.exe: + "/DTHC_Game.exe": - when: - os: windows store: steam @@ -161765,7 +162251,7 @@ Drop: installDir: Drop: {} launch: - /drop.exe: + "/drop.exe": - when: - store: steam steam: @@ -161782,7 +162268,7 @@ Drop Hunt - Adventure Puzzle: installDir: Drop Hunt: {} launch: - /Drop Hunt.exe: + "/Drop Hunt.exe": - when: - os: windows store: steam @@ -161793,12 +162279,12 @@ Drop Kick Zombie!: id: 1069180 Drop Mania: files: - /DropSetup.dat: + "/DropSetup.dat": tags: - config when: - os: windows - /Ranking.dat: + "/Ranking.dat": tags: - save when: @@ -161807,15 +162293,15 @@ Drop Out 0: installDir: Drop Out 0: {} launch: - /Drop Out 0.app: + "/Drop Out 0.app": - when: - os: mac store: steam - /Drop Out 0.exe: + "/Drop Out 0.exe": - when: - os: windows store: steam - /Drop Out 0.x86: + "/Drop Out 0.x86": - when: - os: linux store: steam @@ -161825,16 +162311,16 @@ Drop Up: installDir: Drop_Up: {} launch: - /YoYo Runner.app: - - arguments: '-game /Applications/DropUp/GameAssetsMac.zip' + "/YoYo Runner.app": + - arguments: "-game /Applications/DropUp/GameAssetsMac.zip" when: - os: mac store: steam - /dropup.exe: + "/dropup.exe": - when: - os: windows store: steam - /dropup/assets/game.unx: + "/dropup/assets/game.unx ": - when: - os: linux store: steam @@ -161848,9 +162334,9 @@ Drop VR: Drop the Bomb: steam: id: 528170 -'Drop: System Breach': +"Drop: System Breach": files: - /AppData/LocalLow/Etherfield/Drop//savegame: + "/AppData/LocalLow/Etherfield/Drop//savegame": tags: - save when: @@ -161858,7 +162344,7 @@ Drop the Bomb: installDir: DROP: {} launch: - /Drop.exe: + "/Drop.exe": - when: - bit: 64 os: windows @@ -161867,7 +162353,7 @@ Drop the Bomb: id: 1902300 Droplitz: files: - /Atlus/Droplitz/Droplitz_save0: + "/Atlus/Droplitz/Droplitz_save0": tags: - config - save @@ -161876,12 +162362,12 @@ Droplitz: installDir: Droplitz: {} launch: - /Cascade.exe: + "/Cascade.exe": - when: - store: steam steam: id: 23120 -'Drops: Rhythm Garden': +"Drops: Rhythm Garden": installDir: Drops Rhythm Garden: {} steam: @@ -161890,7 +162376,7 @@ Dropship Down: installDir: DropshipDown: {} launch: - /DropshipDown.exe: + "/DropshipDown.exe": - when: - os: windows store: steam @@ -161898,13 +162384,13 @@ Dropship Down: id: 501740 Dropsy: files: - /Save: + "/Save": tags: - save when: - os: windows - os: linux - /Save/settings.cfg: + "/Save/settings.cfg": tags: - config when: @@ -161915,20 +162401,20 @@ Dropsy: installDir: Dropsy: {} launch: - /Dropsy.app: + "/Dropsy.app": - when: - os: mac store: steam - /Dropsy.exe: + "/Dropsy.exe": - when: - os: windows store: steam - /Dropsy.x86: + "/Dropsy.x86": - when: - bit: 32 os: linux store: steam - /Dropsy.x86_64: + "/Dropsy.x86_64": - when: - bit: 64 os: linux @@ -161939,18 +162425,18 @@ Dropzone: installDir: Dropzone: {} launch: - /bin/DropzoneSteamClient_x32_rel.exe: + "/bin/DropzoneSteamClient_x32_rel.exe": - when: - os: windows store: steam - workingDir: /bin + workingDir: "/bin" steam: id: 572520 Drosoph Hotel: installDir: Drosoph Hotel: {} launch: - /Drosoph Hotel.exe: + "/Drosoph Hotel.exe": - when: - os: windows store: steam @@ -161960,20 +162446,20 @@ Drowning: installDir: Drowning: {} launch: - /Drowning.app: + "/Drowning.app": - when: - os: mac store: steam - /Drowning.exe: + "/Drowning.exe": - when: - os: windows store: steam - /Drowning.x86: + "/Drowning.x86": - when: - bit: 32 os: linux store: steam - /Drowning.x86_64: + "/Drowning.x86_64": - when: - bit: 64 os: linux @@ -161984,15 +162470,15 @@ Drowning Cross: installDir: Drowning Cross: {} launch: - /cross.app/Contents/MacOS/cross: + "/cross.app/Contents/MacOS/cross": - when: - os: mac store: steam - /cross.exe: + "/cross.exe": - when: - os: windows store: steam - /cross.x86: + "/cross.x86": - when: - os: linux store: steam @@ -162004,15 +162490,15 @@ Drox Operative: installDir: Drox Operative: {} launch: - /Drox Operative.app: + "/Drox Operative.app": - when: - os: mac store: steam - /DroxOperative: + "/DroxOperative": - when: - os: linux store: steam - /DroxOperative.exe: + "/DroxOperative.exe": - when: - os: windows store: steam @@ -162027,11 +162513,11 @@ Drox Operative 2: installDir: Drox Operative 2: {} launch: - /DroxOperative2: + "/DroxOperative2": - when: - os: linux store: steam - /DroxOperative2.exe: + "/DroxOperative2.exe": - when: - os: windows store: steam @@ -162039,12 +162525,12 @@ Drox Operative 2: id: 1305310 Drug Dealer Simulator: files: - /DrugDealerSimulator/Saved/Config/WindowsNoEditor: + "/DrugDealerSimulator/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /DrugDealerSimulator/Saved/SaveGames: + "/DrugDealerSimulator/Saved/SaveGames": tags: - save when: @@ -162054,7 +162540,7 @@ Drug Dealer Simulator: installDir: DrugDealerSimulator: {} launch: - /DrugDealerSimulator.exe: + "/DrugDealerSimulator.exe": - when: - os: windows store: steam @@ -162065,12 +162551,12 @@ Drug Lord: id: 1175620 Drug Wars: files: - /My Games/MOB: + "/My Games/MOB": tags: - config when: - os: windows - /My Games/MOB/SaveGames: + "/My Games/MOB/SaveGames": tags: - save when: @@ -162078,7 +162564,7 @@ Drug Wars: installDir: Merchants of Brooklyn: {} launch: - /Bin32/launcher.exe: + "/Bin32/launcher.exe": - when: - store: steam steam: @@ -162087,7 +162573,7 @@ Drugs to Bee: installDir: Drugs to Bee: {} launch: - /Drugs.exe: + "/Drugs.exe": - when: - store: steam steam: @@ -162096,38 +162582,38 @@ Druid: installDir: Druid: {} launch: - /Druid.app: + "/Druid.app": - when: - os: mac store: steam - /Druid.exe: + "/Druid.exe": - when: - os: windows store: steam - /Druid.x86_64: + "/Druid.x86_64": - when: - os: linux store: steam steam: id: 552390 -'Druid''s Tale: Crystal Cave': +"Druid's Tale: Crystal Cave": installDir: - Druid's Tale Crystal Cave: {} + "Druid's Tale Crystal Cave": {} launch: - /Druid's Tale.exe: + "/Druid's Tale.exe": - when: - bit: 64 store: steam steam: id: 700560 -'Druidstone: The Secret of the Menhir Forest': +"Druidstone: The Secret of the Menhir Forest": files: - /Ctrl Alt Ninja/Druidstone: + "/Ctrl Alt Ninja/Druidstone": tags: - save when: - os: windows - /Ctrl Alt Ninja/Druidstone/config.lua: + "/Ctrl Alt Ninja/Druidstone/config.lua": tags: - config when: @@ -162137,7 +162623,7 @@ Druid: installDir: Druidstone: {} launch: - /druidstone.exe: + "/druidstone.exe": - when: - bit: 64 os: windows @@ -162169,9 +162655,9 @@ DrummingVR: DrummingVR: {} steam: id: 777610 -'Drumpf 2: Lost, But Not Forgotten!': +"Drumpf 2: Lost, But Not Forgotten!": files: - /www/save: + "/www/save": tags: - save when: @@ -162179,18 +162665,18 @@ DrummingVR: installDir: Drumpf 2 Lost But Not Forgotten: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam steam: id: 1039290 -'Drumpf: Rise up, Libertonia!': +"Drumpf: Rise up, Libertonia!": installDir: Drumpf Rise Up Libertonia: {} launch: - /Game.exe: - - arguments: '-windowed --in-process-gpu' + "/Game.exe": + - arguments: "-windowed --in-process-gpu" when: - os: windows store: steam @@ -162200,7 +162686,7 @@ Drumpfy Walls: installDir: DrumpfyWalls: {} launch: - /DrumpfyWalls.exe: + "/DrumpfyWalls.exe": - when: - os: windows store: steam @@ -162215,7 +162701,7 @@ Drums Hero PC: installDir: Drums Hero PC: {} launch: - /Drums Hero PC.exe: + "/Drums Hero PC.exe": - arguments: Handle when: - os: windows @@ -162231,7 +162717,7 @@ Drunk Puppet: installDir: Drunk Puppet: {} launch: - /Puppet.exe: + "/Puppet.exe": - when: - store: steam steam: @@ -162243,7 +162729,7 @@ Drunk Wizards: installDir: Drunk Wizards: {} launch: - /DrunkWizards.exe: + "/DrunkWizards.exe": - when: - os: windows store: steam @@ -162253,12 +162739,12 @@ Drunk on Nectar: installDir: Drunk On Nectar: {} launch: - /DoN.exe: + "/DoN.exe": - when: - bit: 64 os: windows store: steam - /DoN.sh: + "/DoN.sh": - when: - bit: 64 os: linux @@ -162274,14 +162760,14 @@ Drunk ride: installDir: Drunk ride: {} launch: - /DRUNK_RIDE.exe: + "/DRUNK_RIDE.exe": - when: - store: steam steam: id: 1168970 -'Drunk-Fu: Wasted Masters': +"Drunk-Fu: Wasted Masters": files: - /AppData/LocalLow/Rusto Games/Drunk-Fu/SaveData: + "/AppData/LocalLow/Rusto Games/Drunk-Fu/SaveData": tags: - save when: @@ -162289,11 +162775,11 @@ Drunk ride: installDir: Drunk-Fu Wasted Masters: {} launch: - /Contents/MacOS/drunkfu: + "/Contents/MacOS/drunkfu": - when: - os: mac store: steam - /drunkfu.exe: + "/drunkfu.exe": - when: - os: windows store: steam @@ -162303,7 +162789,7 @@ Drunken Fight Simulator: installDir: Drunken Fight Simulator: {} launch: - /DrunkenFightSimulator.exe: + "/DrunkenFightSimulator.exe": - when: - os: windows store: steam @@ -162313,7 +162799,7 @@ Drunken Fist: installDir: Drunken Fist: {} launch: - /DrunkenFist422.exe: + "/DrunkenFist422.exe": - when: - os: windows store: steam @@ -162321,12 +162807,12 @@ Drunken Fist: id: 1059460 Drunken Robot Pornography: files: - /GameData: + "/GameData": tags: - config when: - os: windows - /GameData//SaveGame.dejo: + "/GameData//SaveGame.dejo": tags: - save when: @@ -162334,16 +162820,16 @@ Drunken Robot Pornography: installDir: Drunken Robot Pornography: {} launch: - /DRP.exe: + "/DRP.exe": - when: - os: windows store: steam - /DRP.x86: + "/DRP.x86": - when: - os: linux store: steam registry: - 'HKEY_CURRENT_USER/Software/Dejobaan Games, LLC/Drunken Robot Pornography': + "HKEY_CURRENT_USER/Software/Dejobaan Games, LLC/Drunken Robot Pornography": tags: - config steam: @@ -162352,7 +162838,7 @@ Drunken Wrestlers: installDir: Drunken Wrestlers: {} launch: - /DrunkenWrestlers.exe: + "/DrunkenWrestlers.exe": - when: - os: windows store: steam @@ -162360,7 +162846,7 @@ Drunken Wrestlers: id: 1188720 Drunken Wrestlers 2: files: - /AppData/LocalLow/Oleg Skutte/Drunken Wrestlers 2/Settings.dat: + "/AppData/LocalLow/Oleg Skutte/Drunken Wrestlers 2/Settings.dat": tags: - config when: @@ -162368,8 +162854,8 @@ Drunken Wrestlers 2: installDir: Drunken Wrestlers 2: {} launch: - /DW2_Data/Managed/DW2Launcher/DW2Launcher.exe: - - arguments: '-batchmode' + "/DW2_Data/Managed/DW2Launcher/DW2Launcher.exe": + - arguments: "-batchmode" when: - os: windows store: steam @@ -162379,7 +162865,7 @@ Drunkenpants: installDir: Drunkenpants: {} launch: - /drunkenpants.exe: + "/drunkenpants.exe": - when: - os: windows store: steam @@ -162399,21 +162885,21 @@ Drusilla Dreams: installDir: Drusilla Dreams: {} launch: - /Drusilla_Dreams.exe: + "/Drusilla_Dreams.exe": - when: - store: steam steam: id: 458060 -'Druuna: Morbus Gravis': +"Druuna: Morbus Gravis": files: - /SaveGame: + "/SaveGame": tags: - save when: - os: windows Dry Drowning: files: - /AppData/LocalLow/DAZEL/Dry Drowning: + "/AppData/LocalLow/DAZEL/Dry Drowning": tags: - save when: @@ -162423,7 +162909,7 @@ Dry Drowning: installDir: Dry Drowning: {} launch: - /Dry Drowning.exe: + "/Dry Drowning.exe": - when: - os: windows store: steam @@ -162433,7 +162919,7 @@ Dry Drowning: - config steam: id: 1077970 -'Dry Erase: Infinite VR Whiteboard': +"Dry Erase: Infinite VR Whiteboard": installDir: Dry Erase VR Whiteboard: {} steam: @@ -162447,20 +162933,20 @@ Drymir Cave under Richmordnom: installDir: DrymirCave: {} launch: - /DrymirCave.exe: + "/DrymirCave.exe": - when: - os: windows store: steam steam: id: 913570 -'Dráscula: The Vampire Strikes Back': +"Dráscula: The Vampire Strikes Back": files: - /drascula**: + "/drascula**": tags: - save when: - os: windows - /drascula.epa: + "/drascula.epa": tags: - save when: @@ -162468,7 +162954,7 @@ Drymir Cave under Richmordnom: installDir: Drascula The Vampire Strikes Back: {} launch: - /Drascula.exe: + "/Drascula.exe": - when: - os: windows store: steam @@ -162478,7 +162964,7 @@ Dsync: installDir: dsync: {} launch: - /dsync.exe: + "/dsync.exe": - when: - os: windows store: steam @@ -162488,31 +162974,31 @@ Dual Blade ~ Battle of The Female Ninja ~: installDir: DualBlade: {} launch: - /32bit/DualBladeEN32.exe: + "/32bit/DualBladeEN32.exe": - when: - bit: 32 os: windows store: steam - /32bit/DualBladeJP32.exe: + "/32bit/DualBladeJP32.exe": - when: - bit: 32 os: windows store: steam - /64bit/DualBladeEN64.exe: + "/64bit/DualBladeEN64.exe": - when: - bit: 64 os: windows store: steam - /64bit/DualBladeJP64.exe: + "/64bit/DualBladeJP64.exe": - when: - bit: 64 os: windows store: steam - /DualBladeEN.app: + "/DualBladeEN.app": - when: - os: mac store: steam - /DualBladeJP.app: + "/DualBladeJP.app": - when: - os: mac store: steam @@ -162522,7 +163008,7 @@ Dual Core: installDir: Dual Core: {} launch: - /DualCore.exe: + "/DualCore.exe": - when: - os: windows store: steam @@ -162532,15 +163018,15 @@ Dual Family I - IX: installDir: Dual Family: {} launch: - /DF.app: + "/DF.app": - when: - os: mac store: steam - /DF.exe: + "/DF.exe": - when: - os: windows store: steam - /DF.sh: + "/DF.sh": - when: - os: linux store: steam @@ -162550,7 +163036,7 @@ Dual Gear: installDir: DualGearCloseAlpha: {} launch: - /DualGear.exe: + "/DualGear.exe": - when: - bit: 64 os: windows @@ -162561,7 +163047,7 @@ Dual Snake: installDir: Dual Snake: {} launch: - /Dual Snake.exe: + "/Dual Snake.exe": - when: - os: windows store: steam @@ -162569,7 +163055,7 @@ Dual Snake: id: 752600 Dual Universe: files: - /NQ/DualUniverse: + "/NQ/DualUniverse": tags: - save when: @@ -162577,7 +163063,7 @@ Dual Universe: installDir: Dual Universe: {} launch: - /Bin/equ8-launch-dual.exe: + "/Bin/equ8-launch-dual.exe": - when: - bit: 64 os: windows @@ -162588,11 +163074,11 @@ Duality: installDir: Duality: {} launch: - /ClickOnMeToRunCoolGame.x86_64: + "/ClickOnMeToRunCoolGame.x86_64": - when: - os: linux store: steam - /Duality BETA.exe: + "/Duality BETA.exe": - when: - os: windows store: steam @@ -162600,7 +163086,7 @@ Duality: id: 959930 Dub Dash: files: - /UserData/GameData/Store.xml: + "/UserData/GameData/Store.xml": tags: - config - save @@ -162609,11 +163095,11 @@ Dub Dash: installDir: Dub Dash: {} launch: - /DubDash.app/Contents/MacOS/DubDash: + "/DubDash.app/Contents/MacOS/DubDash": - when: - os: mac store: steam - /DubDash.exe: + "/DubDash.exe": - when: - os: windows store: steam @@ -162621,12 +163107,12 @@ Dub Dash: id: 406940 DubWars: files: - /AppData/LocalLow/MURAInteractive/DubWars/stats/save.wub: + "/AppData/LocalLow/MURAInteractive/DubWars/stats/save.wub": tags: - config when: - os: windows - /AppData/LocalLow/MURAInteractive/DubWarsGraphicsSettings.ini: + "/AppData/LocalLow/MURAInteractive/DubWarsGraphicsSettings.ini": tags: - save when: @@ -162634,20 +163120,20 @@ DubWars: installDir: DubWars: {} launch: - /DubWars.app: + "/DubWars.app": - when: - os: mac store: steam - /DubWars.exe: + "/DubWars.exe": - when: - os: windows store: steam - /DubWars.x86: + "/DubWars.x86": - when: - bit: 32 os: linux store: steam - /DubWars.x86_64: + "/DubWars.x86_64": - when: - bit: 64 os: linux @@ -162658,7 +163144,7 @@ Dubstep Abasralsa: installDir: Dubstep Abasralsa: {} launch: - /dubstep_Abasralsa.exe: + "/dubstep_Abasralsa.exe": - when: - os: windows store: steam @@ -162666,12 +163152,12 @@ Dubstep Abasralsa: id: 865310 Ducati - 90th Anniversary: files: - /Milestone/Ducati: + "/Milestone/Ducati": tags: - config when: - os: windows - /Milestone/Ducati/Saves: + "/Milestone/Ducati/Saves": tags: - save when: @@ -162679,11 +163165,11 @@ Ducati - 90th Anniversary: installDir: Ducati - 90th Anniversary: {} launch: - /Ducati.exe: + "/Ducati.exe": - when: - bit: 32 store: steam - /DucatiX64.exe: + "/DucatiX64.exe": - when: - bit: 64 store: steam @@ -162691,7 +163177,7 @@ Ducati - 90th Anniversary: id: 456780 Ducati World Championship: files: - /Save: + "/Save": tags: - save when: @@ -162699,7 +163185,7 @@ Ducati World Championship: installDir: Ducati World Championship: {} launch: - /Ducati.exe: + "/Ducati.exe": - when: - store: steam steam: @@ -162708,10 +163194,10 @@ Duck Dynasty: installDir: Duck Dynasty: {} launch: - /Bin/DuckDynasty.exe: + "/Bin/DuckDynasty.exe": - when: - store: steam - workingDir: /Bin + workingDir: "/Bin" steam: id: 319410 Duck Force: @@ -162720,16 +163206,10 @@ Duck Force: steam: id: 511690 Duck Game: - files: - /DuckGame/*/Options: - tags: - - config - when: - - os: windows installDir: Duck Game: {} launch: - /DuckGame.exe: + "/DuckGame.exe": - when: - os: windows store: steam @@ -162739,7 +163219,7 @@ Duck Hunt Challenge: installDir: Duck Hunting Challenge: {} launch: - /Duck Hunting Challenge.exe: + "/Duck Hunting Challenge.exe": - when: - store: steam steam: @@ -162748,43 +163228,43 @@ Duck Hunting: installDir: DH_v01: {} launch: - /DuckHunting.app/Contents/MacOS/DuckHunting: + "/DuckHunting.app/Contents/MacOS/DuckHunting": - when: - os: mac store: steam - /DuckHunting.exe: + "/DuckHunting.exe": - when: - os: windows store: steam - /DuckHunting.x86: + "/DuckHunting.x86": - when: - os: linux store: steam steam: id: 619330 -'Duck Life: Battle': +"Duck Life: Battle": installDir: Duck Life Battle: {} launch: - /Duck Life Battle.app: + "/Duck Life Battle.app": - when: - os: mac store: steam - /Duck Life Battle.exe: + "/Duck Life Battle.exe": - when: - os: windows store: steam steam: id: 914170 -'Duck Life: Space': +"Duck Life: Space": installDir: Duck Life Space: {} launch: - /DuckLifeSpace.app/Contents/MacOS/DuckLifeSpace: + "/DuckLifeSpace.app/Contents/MacOS/DuckLifeSpace": - when: - os: mac store: steam - /DuckLifeSpace.exe: + "/DuckLifeSpace.exe": - when: - os: windows store: steam @@ -162794,7 +163274,7 @@ Duck Paradox: installDir: Duck Paradox: {} launch: - /Duck Paradox.exe: + "/Duck Paradox.exe": - when: - os: windows store: steam @@ -162802,7 +163282,7 @@ Duck Paradox: id: 2058150 Duck Season: files: - /AppData/LocalLow/Stress Level Zero/Duck Season: + "/AppData/LocalLow/Stress Level Zero/Duck Season": tags: - save when: @@ -162815,7 +163295,7 @@ Duck Season PC: installDir: DuckSeasonPC: {} launch: - /DuckSeasonPC/DuckSeasonPC.exe: + "/DuckSeasonPC/DuckSeasonPC.exe": - when: - os: windows store: steam @@ -162825,11 +163305,11 @@ Duck Simulator 2: installDir: Duck Simulator 2: {} launch: - /Duck Simulator 2.app: + "/Duck Simulator 2.app": - when: - os: mac store: steam - /Duck Simulator 2.exe: + "/Duck Simulator 2.exe": - when: - os: windows store: steam @@ -162839,7 +163319,7 @@ Duck Souls: installDir: Duck Souls: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -162849,49 +163329,49 @@ Duck in Town - A Rising Knight: installDir: Duck in Town - A Rising Knight: {} launch: - /Duck in Town - A Rising Knight.app/Contents/MacOS/Duck in Town - A Rising Knight: + "/Duck in Town - A Rising Knight.app/Contents/MacOS/Duck in Town - A Rising Knight": - when: - os: mac store: steam - /duckintown-linux.x86_64: + "/duckintown-linux.x86_64": - when: - bit: 64 os: linux store: steam - /duckintown-win.exe: + "/duckintown-win.exe": - when: - bit: 64 os: windows store: steam steam: id: 1111310 -Duck's Inferno: +"Duck's Inferno": installDir: DucksInferno: {} launch: - /DucksInferno.app: + "/DucksInferno.app": - when: - os: mac store: steam - /DucksInferno.exe: + "/DucksInferno.exe": - when: - os: windows store: steam steam: id: 930290 -'DuckTales: Remastered': +"DuckTales: Remastered": files: - /data/engine.ini: + "/data/engine.ini": tags: - config when: - os: windows - /userdata//237630/remote: + "/userdata//237630/remote": tags: - save when: - store: steam - /Wayforward Technologies/DuckTales: + "/Wayforward Technologies/DuckTales": tags: - save when: @@ -162899,7 +163379,7 @@ Duck's Inferno: installDir: DuckTales Remastered: {} launch: - /Executable/DuckTales.exe: + "/Executable/DuckTales.exe": - when: - store: steam steam: @@ -162908,21 +163388,21 @@ Duckie Dash: installDir: Duckie Dash: {} launch: - /Duck.app: + "/Duck.app": - when: - os: mac store: steam - /Game.exe: + "/Game.exe": - when: - os: windows store: steam steam: id: 491110 -'Duckles: The Jisgaw Witch': +"Duckles: The Jisgaw Witch": installDir: Duckles the Jisgaw Witch: {} launch: - /Duckles6.0.0.0.1.exe: + "/Duckles6.0.0.0.1.exe": - when: - os: windows store: steam @@ -162937,7 +163417,7 @@ Ducks and Gooobers: installDir: Ducks and Gooobers: {} launch: - /Ducks And Gooobers.exe: + "/Ducks And Gooobers.exe": - when: - store: steam steam: @@ -162946,7 +163426,7 @@ Ducks in Space: installDir: Ducks in Space: {} launch: - /Ducks In Space.exe: + "/Ducks In Space.exe": - when: - os: windows store: steam @@ -162956,7 +163436,7 @@ Duckumentary: installDir: Duckumentary: {} launch: - /Duckumentary.exe: + "/Duckumentary.exe": - when: - os: windows store: steam @@ -162964,22 +163444,22 @@ Duckumentary: id: 1042290 Dude Cops: files: - /www/save/config.rpgsave: + "/www/save/config.rpgsave": tags: - config when: - os: windows - /www/save/file*.rpgsave: + "/www/save/file*.rpgsave": tags: - save when: - os: windows - /DudeCops/config.rpgsave: + "/DudeCops/config.rpgsave": tags: - config when: - os: windows - /DudeCops/file*.rpgsave: + "/DudeCops/file*.rpgsave": tags: - save when: @@ -162987,7 +163467,7 @@ Dude Cops: installDir: Dude Cops: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -162997,7 +163477,7 @@ Dude Simulator: installDir: Dude Simulator: {} launch: - /DudeSimulator.exe: + "/DudeSimulator.exe": - when: - os: windows store: steam @@ -163007,7 +163487,7 @@ Dude Simulator 2: installDir: Dude Simulator 2: {} launch: - /DudeSimulator2.exe: + "/DudeSimulator2.exe": - when: - os: windows store: steam @@ -163017,42 +163497,42 @@ Dude Simulator 5: installDir: Dude Simulator 3: {} launch: - /DudeSimulator3.exe: + "/DudeSimulator3.exe": - when: - os: windows store: steam steam: id: 1086640 -'Dude, Stop': +"Dude, Stop": files: - /Saves: + "/Saves": tags: - save when: - os: windows installDir: - 'Dude, Stop': {} + "Dude, Stop": {} launch: - '/Dude, Stop.exe': + "/Dude, Stop.exe": - when: - os: windows store: steam - /DudeStop.app: + "/DudeStop.app": - when: - os: mac store: steam - /DudeStop.x86: + "/DudeStop.x86": - when: - bit: 32 os: linux store: steam - /DudeStop.x86_64: + "/DudeStop.x86_64": - when: - bit: 64 os: linux store: steam registry: - 'HKEY_CURRENT_USER/Software/Team HalfBeard/Dude, Stop': + "HKEY_CURRENT_USER/Software/Team HalfBeard/Dude, Stop": tags: - config steam: @@ -163061,7 +163541,7 @@ Duder: installDir: Duder: {} launch: - /DUDER.exe: + "/DUDER.exe": - when: - bit: 64 os: windows @@ -163072,7 +163552,7 @@ Due Process: installDir: DueProcess: {} launch: - /Launch_Game.exe: + "/Launch_Game.exe": - when: - store: steam registry: @@ -163085,7 +163565,7 @@ Duel: installDir: DUEL: {} launch: - /DUEL.exe: + "/DUEL.exe": - when: - os: windows store: steam @@ -163098,7 +163578,7 @@ Duel Girl: installDir: Duel Girl: {} launch: - /Duel Girl.exe: + "/Duel Girl.exe": - arguments: b when: - os: windows @@ -163109,15 +163589,15 @@ Duel Jousting: installDir: Duel Jousting: {} launch: - /Duel Jousting.app/Contents/MacOS/_BUILD_Mac: + "/Duel Jousting.app/Contents/MacOS/_BUILD_Mac": - when: - os: mac store: steam - /Duel Jousting.exe: + "/Duel Jousting.exe": - when: - os: windows store: steam - /Duel Jousting.x86_64: + "/Duel Jousting.x86_64": - when: - os: linux store: steam @@ -163127,7 +163607,7 @@ Duel Survival: installDir: Duel Survival: {} launch: - /steam_game.exe: + "/steam_game.exe": - when: - store: steam steam: @@ -163141,7 +163621,7 @@ Duel of Summoners: installDir: Duel of Summoners: {} launch: - /DuelofSummoners.exe: + "/DuelofSummoners.exe": - when: - os: windows store: steam @@ -163151,11 +163631,11 @@ Duel on Board: installDir: Duel on Board: {} launch: - /Duel on Board.app: + "/Duel on Board.app": - when: - os: mac store: steam - /Duel on Board.exe: + "/Duel on Board.exe": - when: - os: windows store: steam @@ -163173,15 +163653,18 @@ Duelyst: installDir: Duelyst: {} launch: - /Duelyst.app/Contents/MacOS/Duelyst: - - arguments: '-s --token=foo' + "/Duelyst.app/Contents/MacOS/Duelyst": + - arguments: "-s --token=foo" when: - bit: 64 os: mac store: steam - /Duelyst.exe: - - arguments: '-s --token=foo' + "/Duelyst.exe": + - arguments: "-s --token=foo" when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam @@ -163189,19 +163672,19 @@ Duelyst: id: 291410 Duet: files: - /.config/Duet: + "/.config/Duet": tags: - config - save when: - os: linux - /Library/Application Support/Duet: + "/Library/Application Support/Duet": tags: - config - save when: - os: mac - /Duet: + "/Duet": tags: - config - save @@ -163210,20 +163693,20 @@ Duet: installDir: Duet: {} launch: - /Duet: + "/Duet": - when: - bit: 64 os: linux store: steam - /Duet.app: + "/Duet.app": - when: - os: mac store: steam - /Duet.exe: + "/Duet.exe": - when: - os: windows store: steam - - arguments: '-tablet 1' + - arguments: "-tablet 1" when: - os: windows store: steam @@ -163233,7 +163716,7 @@ Dujanah: installDir: Dujanah: {} launch: - /nw.exe: + "/nw.exe": - when: - bit: 64 os: windows @@ -163242,7 +163725,7 @@ Dujanah: id: 681240 Duke Dashington Remastered: files: - /Stencyl/Duke Dashington Remastered: + "/Stencyl/Duke Dashington Remastered": tags: - save when: @@ -163250,34 +163733,34 @@ Duke Dashington Remastered: installDir: Duke Dashington Remastered: {} launch: - /Duke Dashington Remastered.app: + "/Duke Dashington Remastered.app": - when: - os: mac store: steam - /Duke Dashington Remastered.exe: + "/Duke Dashington Remastered.exe": - when: - os: windows store: steam steam: id: 894420 -'Duke Grabowski, Mighty Swashbuckler': +"Duke Grabowski, Mighty Swashbuckler": installDir: - 'Duke Grabowski, Mighty Swashbuckler': {} + "Duke Grabowski, Mighty Swashbuckler": {} launch: - /Duke.app: + "/Duke.app": - when: - os: mac store: steam - /Duke.exe: + "/Duke.exe": - when: - os: windows store: steam - /Duke.x86: + "/Duke.x86": - when: - bit: 32 os: linux store: steam - /Duke.x86_64: + "/Duke.x86_64": - when: - bit: 64 os: linux @@ -163286,12 +163769,12 @@ Duke Dashington Remastered: id: 472420 Duke Nukem: files: - /KEYS.DN*: + "/KEYS.DN*": tags: - config when: - os: dos - /SAVED*.DN*: + "/SAVED*.DN*": tags: - save when: @@ -163304,26 +163787,26 @@ Duke Nukem: installDir: Duke Nukem 1: {} launch: - /DukeNukem.app: + "/DukeNukem.app": - when: - os: mac store: steam - /dosbox/dosbox.exe: - - arguments: '-conf \"..\\NUKEM1.conf\" -noconsole -c' + "/dosbox/dosbox.exe": + - arguments: "-conf \\\"..\\\\NUKEM1.conf\\\" -noconsole -c" when: - os: windows store: steam - workingDir: /dosbox + workingDir: "/dosbox" steam: id: 240160 Duke Nukem 3D: files: - /DUKE3D.CFG: + "/DUKE3D.CFG": tags: - config when: - os: dos - /GAME*.SAV: + "/GAME*.SAV": tags: - save when: @@ -163336,40 +163819,40 @@ Duke Nukem 3D: installDir: Duke Nukem 3D: {} launch: - /Dosbox/dosbox: - - arguments: '-conf \"..\\DUKE3d.conf\" -noconsole -c' + "/Dosbox/dosbox": + - arguments: "-conf \\\"..\\\\DUKE3d.conf\\\" -noconsole -c" when: - os: linux store: steam - workingDir: /Dosbox - /Duke Nukem 3D - DOS.bat: + workingDir: "/Dosbox" + "/Duke Nukem 3D - DOS.bat": - when: - os: windows store: steam - /Duke Nukem 3D.app: + "/Duke Nukem 3D.app": - when: - os: mac store: steam - /Duke Nukem 3D/eduke32.exe: + "/Duke Nukem 3D/eduke32.exe": - when: - os: windows store: steam - workingDir: /Duke Nukem 3D + workingDir: "/Duke Nukem 3D" steam: id: 359850 -'Duke Nukem 3D: 20th Anniversary World Tour': +"Duke Nukem 3D: 20th Anniversary World Tour": files: - /DUKE3D.CFG: + "/DUKE3D.CFG": tags: - config when: - os: windows - /Gearbox/DukeNukem/profile.dat: + "/Gearbox/DukeNukem/profile.dat": tags: - config when: - os: windows - /Gearbox/DukeNukem/savedata*.dat: + "/Gearbox/DukeNukem/savedata*.dat": tags: - save when: @@ -163377,33 +163860,33 @@ Duke Nukem 3D: installDir: Duke Nukem 3D Twentieth Anniversary World Tour: {} launch: - /duke3d.exe: + "/duke3d.exe": - when: - os: windows store: steam steam: id: 434050 -'Duke Nukem 3D: Megaton Edition': +"Duke Nukem 3D: Megaton Edition": files: - /gameroot/*.sav: + "/gameroot/*.sav": tags: - save when: - os: windows - os: linux - /gameroot/duke3d-local.cfg: + "/gameroot/duke3d-local.cfg": tags: - config when: - os: windows - os: linux - /gameroot/duke3d.cfg: + "/gameroot/duke3d.cfg": tags: - config when: - os: windows - os: linux - /userdata//225140: + "/userdata//225140": tags: - save when: @@ -163411,89 +163894,99 @@ Duke Nukem 3D: installDir: Duke Nukem 3D: {} launch: - /bin/build.exe: + "/bin/build.exe": - when: - os: windows store: steam - workingDir: /gameroot - /bin/build_linux.sh: + workingDir: "/gameroot" + "/bin/build_linux.sh": - when: - os: linux store: steam - workingDir: /gameroot - /bin/build_mac.sh: + workingDir: "/gameroot" + "/bin/build_mac.sh": - when: - os: mac store: steam - workingDir: /gameroot - /bin/dosbox/dosbox.exe: - - arguments: '-conf dosbox.conf -conf dosbox_setup.conf -noconsole -c exit' + workingDir: "/gameroot" + "/bin/dosbox/dosbox.exe": + - arguments: "-conf dosbox.conf -conf dosbox_setup.conf -noconsole -c exit" when: - os: windows store: steam - workingDir: /gameroot/classic - /bin/duke3d.exe: + workingDir: "/gameroot/classic" + "/bin/duke3d.exe": - when: - os: windows store: steam - workingDir: /gameroot - - arguments: '-addon 1' + workingDir: "/gameroot" + - arguments: "-addon 1" when: - os: windows store: steam - workingDir: /gameroot - - arguments: '-addon 2' + workingDir: "/gameroot" + - arguments: "-addon 2" when: - os: windows store: steam - workingDir: /gameroot - - arguments: '-addon 3' + workingDir: "/gameroot" + - arguments: "-addon 3" when: - os: windows store: steam - workingDir: /gameroot - /bin/duke3d.sh: + workingDir: "/gameroot" + "/bin/duke3d.sh": - when: - os: mac store: steam - workingDir: /gameroot - - arguments: '-addon 1' + - os: linux + store: steam + workingDir: "/gameroot" + - arguments: "-addon 1" when: - os: mac store: steam - workingDir: /gameroot - - arguments: '-addon 2' + - os: linux + store: steam + workingDir: "/gameroot" + - arguments: "-addon 2" when: - os: mac store: steam - workingDir: /gameroot - - arguments: '-addon 3' + - os: linux + store: steam + workingDir: "/gameroot" + - arguments: "-addon 3" when: - os: mac store: steam - workingDir: /gameroot - /bin/duke3d_dosbox.sh: + - os: linux + store: steam + workingDir: "/gameroot" + "/bin/duke3d_dosbox.sh": - when: - os: mac store: steam - workingDir: /gameroot/classic + - os: linux + store: steam + workingDir: "/gameroot/classic" steam: id: 225140 Duke Nukem Forever: files: - /userdata//57900/remote: + "/userdata//57900/remote": tags: - save when: - os: windows store: steam - /userdata//57900/remote/system.ini: + "/userdata//57900/remote/system.ini": tags: - config when: - os: windows store: steam - /userdata//57900/remote/user.ini: + "/userdata//57900/remote/user.ini": tags: - config when: @@ -163502,11 +163995,11 @@ Duke Nukem Forever: installDir: Duke Nukem Forever: {} launch: - /Duke Nukem Forever.app: + "/Duke Nukem Forever.app": - when: - os: mac store: steam - /System/DukeForever.exe: + "/System/DukeForever.exe": - when: - os: windows store: steam @@ -163514,24 +164007,24 @@ Duke Nukem Forever: id: 57900 Duke Nukem Forever (2001): files: - '/Players/[player name]/DukeForever.ini': + "/Players/[player name]/DukeForever.ini": tags: - config when: - os: windows - '/Players/[player name]/Save': + "/Players/[player name]/Save": tags: - save when: - os: windows Duke Nukem II: files: - /NUKEM2.-GT: + "/NUKEM2.-GT": tags: - config when: - os: dos - /NUKEM2.-S*: + "/NUKEM2.-S*": tags: - save when: @@ -163544,26 +164037,26 @@ Duke Nukem II: installDir: Duke Nukem 2: {} launch: - /DukeNukemII.app: + "/DukeNukemII.app": - when: - os: mac store: steam - /dosbox/dosbox.exe: - - arguments: '-conf \"..\\NUKEM2.conf\" -noconsole -c' + "/dosbox/dosbox.exe": + - arguments: "-conf \\\"..\\\\NUKEM2.conf\\\" -noconsole -c" when: - os: windows store: steam - workingDir: /dosbox + workingDir: "/dosbox" steam: id: 240180 -'Duke Nukem: Manhattan Project': +"Duke Nukem: Manhattan Project": files: - /duke/base/config.cfg: + "/duke/base/config.cfg": tags: - config when: - os: windows - /duke/base/save: + "/duke/base/save": tags: - save when: @@ -163573,15 +164066,15 @@ Duke Nukem II: installDir: Duke Nukem Manhatten Project: {} launch: - /Duke Nukem Manhattan Project.app: + "/Duke Nukem Manhattan Project.app": - when: - os: mac store: steam - /DukeNukemManhattanLauncher.exe: + "/DukeNukemManhattanLauncher.exe": - when: - os: windows store: steam - /prism3d.exe: + "/prism3d.exe": - when: - os: windows store: steam @@ -163589,7 +164082,7 @@ Duke Nukem II: id: 240200 Duke of Alpha Centauri: files: - /AppData/LocalLow/Just1337/Duke of Alpha Centauri/*.json: + "/AppData/LocalLow/Just1337/Duke of Alpha Centauri/*.json": tags: - save when: @@ -163597,22 +164090,28 @@ Duke of Alpha Centauri: installDir: Duke of Alpha Centauri: {} launch: - /DukeOfAlphaCentauri.app/Contents/MacOS/DukeOfAlphaCentauri: + "/DukeOfAlphaCentauri.app/Contents/MacOS/DukeOfAlphaCentauri": - when: - bit: 32 os: mac store: steam - /DukeOfAlphaCentauri.exe: + - bit: 64 + os: mac + store: steam + "/DukeOfAlphaCentauri.exe": - when: - bit: 32 os: windows store: steam - /DukeOfAlphaCentauri.x86: + - bit: 64 + os: windows + store: steam + "/DukeOfAlphaCentauri.x86": - when: - bit: 32 os: linux store: steam - /DukeOfAlphaCentauri.x86_64: + "/DukeOfAlphaCentauri.x86_64": - when: - bit: 64 os: linux @@ -163623,7 +164122,7 @@ Duke of Defense: installDir: Duke of Defense: {} launch: - /DukeOfDefense.exe: + "/DukeOfDefense.exe": - when: - os: windows store: steam @@ -163633,7 +164132,7 @@ Dum-Dum: installDir: Dum-Dum: {} launch: - /dumdum.exe: + "/dumdum.exe": - when: - os: windows store: steam @@ -163643,17 +164142,17 @@ Dumb As Wizards: installDir: Dumb As Wizards: {} launch: - /DumbAsWizards.exe: + "/DumbAsWizards.exe": - when: - os: windows store: steam steam: id: 828730 -'Dumb Chicken 2: One Way Out': +"Dumb Chicken 2: One Way Out": installDir: Dumb Chicken 2 One Way Out: {} launch: - /DumbChicken2.exe: + "/DumbChicken2.exe": - when: - os: windows store: steam @@ -163668,11 +164167,11 @@ Dumb Little Creatures: installDir: Dumb Little Creatures: {} launch: - /DumbLittleCreatures.app: + "/DumbLittleCreatures.app": - when: - os: mac store: steam - /DumbLittleCreatures.exe: + "/DumbLittleCreatures.exe": - when: - os: windows store: steam @@ -163682,25 +164181,25 @@ Dumb Stone Card Game: installDir: DumbStone: {} launch: - /DumbStone.app/Contents/MacOS/DumbStone: + "/DumbStone.app/Contents/MacOS/DumbStone ": - when: - os: mac store: steam - /DumbStone.exe: + "/DumbStone.exe": - when: - os: windows store: steam - /DumbStoneLinux.x86_64: + "/DumbStoneLinux.x86_64": - when: - os: linux store: steam steam: id: 693050 -'Dumb test: Check your teammates': +"Dumb test: Check your teammates": installDir: Dumb test Check your teammates: {} launch: - /Dumb test.exe: + "/Dumb test.exe": - when: - store: steam steam: @@ -163709,20 +164208,20 @@ Dumbass Drivers!: installDir: Dumbass Drivers: {} launch: - /DumbassDrivers.app: + "/DumbassDrivers.app": - when: - os: mac store: steam - /DumbassDrivers.exe: + "/DumbassDrivers.exe": - when: - os: windows store: steam - /DumbassDrivers.x86: + "/DumbassDrivers.x86": - when: - bit: 32 os: linux store: steam - /DumbassDrivers.x86_64: + "/DumbassDrivers.x86_64": - when: - bit: 64 os: linux @@ -163733,7 +164232,7 @@ Dummy Life: installDir: Dummy Life: {} launch: - /FR_DummyLifeSteam.exe: + "/FR_DummyLifeSteam.exe": - when: - bit: 64 os: windows @@ -163744,7 +164243,7 @@ Dummy!: installDir: Dummy!: {} launch: - /Dummy.exe: + "/Dummy.exe": - when: - os: windows store: steam @@ -163752,7 +164251,7 @@ Dummy!: id: 754480 Dumpy & Bumpy: files: - /DumpyAndBumpy: + "/DumpyAndBumpy": tags: - save when: @@ -163760,7 +164259,7 @@ Dumpy & Bumpy: installDir: Dumpy & Bumpy: {} launch: - /DumpyAndBumpy.exe: + "/DumpyAndBumpy.exe": - when: - os: windows store: steam @@ -163770,7 +164269,7 @@ Duncan and the Wisp: installDir: DuncanandtheWisp: {} launch: - /Duncan & The Wisp.exe: + "/Duncan & The Wisp.exe": - when: - os: windows store: steam @@ -163778,36 +164277,36 @@ Duncan and the Wisp: id: 1087060 Dune: files: - /DUNE.BAT: + "/DUNE.BAT": tags: - config when: - os: dos - /DUNE37S0?.SAV: + "/DUNE37S0?.SAV": tags: - save when: - os: dos Dune 2000: files: - /GameSave: + "/GameSave": tags: - save when: - os: windows - /dune2000.cfg: + "/dune2000.cfg": tags: - config when: - os: windows -'Dune II: The Building of a Dynasty': +"Dune II: The Building of a Dynasty": files: - /*.cfg: + "/*.cfg": tags: - config when: - os: dos - /_SAVE???.DAT: + "/_SAVE???.DAT": tags: - save when: @@ -163816,29 +164315,29 @@ Dune Sea: installDir: DuneSea: {} launch: - /DuneSea.app: + "/DuneSea.app": - when: - os: mac store: steam - /DuneSea.exe: + "/DuneSea.exe": - when: - bit: 64 os: windows store: steam steam: id: 1103120 -'Dune: Awakening': +"Dune: Awakening": steam: id: 1172710 -'Dune: Spice Wars': +"Dune: Spice Wars": files: - /steamapps/common/D4X/options.ini: + "/steamapps/common/D4X/options.ini": tags: - config when: - os: windows store: steam - /steamapps/common/D4X/save: + "/steamapps/common/D4X/save": tags: - save when: @@ -163851,9 +164350,9 @@ Dune Sea: Dungellion: steam: id: 935630 -'Dungelot: Shattered Lands': +"Dungelot: Shattered Lands": files: - /AppData/LocalLow/Red Winter Software/Dungelot _ Shattered Lands: + "/AppData/LocalLow/Red Winter Software/Dungelot _ Shattered Lands": tags: - save when: @@ -163861,7 +164360,7 @@ Dungellion: installDir: Dungelot Shattered Lands: {} launch: - /Dungelot.exe: + "/Dungelot.exe": - when: - bit: 32 os: windows @@ -163872,7 +164371,7 @@ Dungeon Adventure: installDir: Dungeon Adventure: {} launch: - /Dungeon Adventure.exe: + "/Dungeon Adventure.exe": - when: - os: windows store: steam @@ -163882,7 +164381,7 @@ Dungeon Bosses: installDir: Dungeon Bosses: {} launch: - /Dungeon Bosses.exe: + "/Dungeon Bosses.exe": - when: - os: windows store: steam @@ -163892,7 +164391,7 @@ Dungeon Brewmaster: installDir: Dungeon Brew Master: {} launch: - /DBM.exe: + "/DBM.exe": - when: - os: windows store: steam @@ -163902,7 +164401,7 @@ Dungeon Builder S: installDir: Dungeon Builder S: {} launch: - /dungeon_builder_S.exe: + "/dungeon_builder_S.exe": - when: - os: windows store: steam @@ -163912,7 +164411,7 @@ Dungeon Cards: installDir: Dungeon Cards: {} launch: - /Dungeon Cards PC Standalone.exe: + "/Dungeon Cards PC Standalone.exe": - when: - os: windows store: steam @@ -163922,7 +164421,7 @@ Dungeon Chest: installDir: Dungeon Chest: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -163932,7 +164431,7 @@ Dungeon Cleaning Express: installDir: Dungeon Cleaning Express: {} launch: - /Dungeon Cleaning Express.exe: + "/Dungeon Cleaning Express.exe": - when: - os: windows store: steam @@ -163942,7 +164441,7 @@ Dungeon Coup: installDir: Dungeon Coup: {} launch: - /Dungeon Coup.exe: + "/Dungeon Coup.exe": - when: - os: windows store: steam @@ -163952,26 +164451,26 @@ Dungeon Crawlers HD: installDir: Dungeon Crawlers HD: {} launch: - /DCHD.x86: + "/DCHD.x86": - when: - bit: 32 os: linux store: steam - /DCHD.x86_64: + "/DCHD.x86_64": - when: - bit: 64 os: linux store: steam - /Dungeon Crawlers HD.exe: + "/Dungeon Crawlers HD.exe": - when: - os: windows store: steam - /Dungeon Crawlers HD_DirectToRift.exe: - - arguments: '-force-d3d11' + "/Dungeon Crawlers HD_DirectToRift.exe": + - arguments: "-force-d3d11" when: - os: windows store: steam - /DungeonCrawlers HD.app: + "/DungeonCrawlers HD.app": - when: - os: mac store: steam @@ -163984,7 +164483,7 @@ Dungeon Crowley: installDir: Crowley: {} launch: - /Crowley.exe: + "/Crowley.exe": - when: - bit: 64 os: windows @@ -163995,10 +164494,10 @@ Dungeon Dashers: installDir: DungeonDashers: {} launch: - /DD_Public_LevelEditor_70.exe: + "/DD_Public_LevelEditor_70.exe": - when: - store: steam - /Dungeon Dashers.exe: + "/Dungeon Dashers.exe": - when: - store: steam steam: @@ -164007,7 +164506,7 @@ Dungeon Deathball: installDir: Dungeon Deathball: {} launch: - /Dungeon Deathball.exe: + "/Dungeon Deathball.exe": - when: - bit: 64 os: windows @@ -164016,13 +164515,13 @@ Dungeon Deathball: id: 861330 Dungeon Defenders: files: - /userdata//65800/remote: + "/userdata//65800/remote": tags: - config - save when: - store: steam - /DungeonDefenders: + "/DungeonDefenders": tags: - config - save @@ -164031,19 +164530,19 @@ Dungeon Defenders: installDir: Dungeon Defenders: {} launch: - /Binaries/Win32/DunDefGame.exe: + "/Binaries/Win32/DunDefGame.exe": - when: - os: windows store: steam - /DunDef.app/Config/Contents/MacOS/DDConfig: + "/DunDef.app/Config/Contents/MacOS/DDConfig": - when: - os: mac store: steam - /DunDef.app/Contents/MacOS/DunDef: + "/DunDef.app/Contents/MacOS/DunDef": - when: - os: mac store: steam - /DungeonDefenders: + "/DungeonDefenders": - when: - os: linux store: steam @@ -164053,31 +164552,31 @@ Dungeon Defenders Eternity: installDir: DunDefEternity: {} launch: - /DungeonDefendersEternity/Binaries/Linux/DunDefGame: + "/DungeonDefendersEternity/Binaries/Linux/DunDefGame": - when: - os: linux store: steam - - arguments: '-OFFLINE' + - arguments: "-OFFLINE" when: - os: linux store: steam - /DungeonDefendersEternity/Binaries/Win32/DunDefGame.exe: + "/DungeonDefendersEternity/Binaries/Win32/DunDefGame.exe": - when: - os: windows store: steam - - arguments: '-OFFLINE' + - arguments: "-OFFLINE" when: - os: windows store: steam - /DungeonDefendersEternity/DunDef.app: + "/DungeonDefendersEternity/DunDef.app": - when: - os: mac store: steam - - arguments: '-OFFLINE' + - arguments: "-OFFLINE" when: - os: mac store: steam - /LaunchScript.sh: + "/LaunchScript.sh": - arguments: LinkSteam.sh when: - os: linux @@ -164090,7 +164589,7 @@ Dungeon Defenders Eternity: id: 302270 Dungeon Defenders II: files: - /DunDef2/Engine/Config: + "/DunDef2/Engine/Config": tags: - config when: @@ -164098,28 +164597,28 @@ Dungeon Defenders II: installDir: Dungeon Defenders 2: {} launch: - /DunDef2/Binaries/Win64/DunDefGame.exe: + "/DunDef2/Binaries/Win64/DunDefGame.exe": - when: - os: windows store: steam - /DunDefLauncher.app: + "/DunDefLauncher.app": - when: - os: mac store: steam - /LinuxDownloadLauncher: + "/LinuxDownloadLauncher": - when: - os: linux store: steam steam: id: 236110 -'Dungeon Defenders: Awakened': +"Dungeon Defenders: Awakened": files: - /DDS/Saved/Config/WindowsNoEditor: + "/DDS/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /DDS/Saved/SaveGames: + "/DDS/Saved/SaveGames": tags: - save when: @@ -164127,7 +164626,7 @@ Dungeon Defenders II: installDir: Dungeon Defenders Awakened: {} launch: - /DDS.exe: + "/DDS.exe": - when: - bit: 64 os: windows @@ -164136,22 +164635,22 @@ Dungeon Defenders II: id: 1101190 Dungeon Drafters: files: - /.config/unity3d/Manalith Studios/Dungeon Drafters/Decks/*.pcd: + "/.config/unity3d/Manalith Studios/Dungeon Drafters/Decks/*.pcd": tags: - save when: - os: linux - /.config/unity3d/Manalith Studios/Dungeon Drafters/Saves/*.dd: + "/.config/unity3d/Manalith Studios/Dungeon Drafters/Saves/*.dd": tags: - save when: - os: linux - /AppData/LocalLow/Manalith Studios/Dungeon Drafters/Decks/*.pcd: + "/AppData/LocalLow/Manalith Studios/Dungeon Drafters/Decks/*.pcd": tags: - save when: - os: windows - /AppData/LocalLow/Manalith Studios/Dungeon Drafters/Saves/*.dd: + "/AppData/LocalLow/Manalith Studios/Dungeon Drafters/Saves/*.dd": tags: - save when: @@ -164161,7 +164660,7 @@ Dungeon Drafters: installDir: Dungeon Drafters: {} launch: - /Dungeon Drafters.x86_64: + "/Dungeon Drafters.x86_64": - when: - bit: 64 os: linux @@ -164170,7 +164669,7 @@ Dungeon Drafters: id: 1824580 Dungeon Dreams: files: - /steamapps/common/Dungeon Dreams/www/save: + "/steamapps/common/Dungeon Dreams/www/save": tags: - save when: @@ -164179,11 +164678,11 @@ Dungeon Dreams: installDir: Dungeon Dreams: {} launch: - /Game.app: + "/Game.app": - when: - os: mac store: steam - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -164193,7 +164692,7 @@ Dungeon Dreams (Female Protagonist): installDir: Dungeon Dreams (Female Protagonist): {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -164204,7 +164703,7 @@ Dungeon Duos: id: 389540 Dungeon Encounters: files: - /My Games/DUNGEON ENCOUNTERS/Steam/: + "/My Games/DUNGEON ENCOUNTERS/Steam/": tags: - save when: @@ -164212,7 +164711,7 @@ Dungeon Encounters: installDir: DUNGEON ENCOUNTERS: {} launch: - /DUNGEON ENCOUNTERS.exe: + "/DUNGEON ENCOUNTERS.exe": - when: - bit: 64 os: windows @@ -164225,13 +164724,13 @@ Dungeon Encounters: id: 1451080 Dungeon Escape: files: - /.config/unity3d/Alexey Roenko/Dungeon Escape: + "/.config/unity3d/Alexey Roenko/Dungeon Escape": tags: - config - save when: - os: linux - /AppData/LocalLow/Alexey Roenko/Dungeon Escape: + "/AppData/LocalLow/Alexey Roenko/Dungeon Escape": tags: - save when: @@ -164242,15 +164741,15 @@ Dungeon Escape: installDir: Dungeon Escape: {} launch: - /Dungeon Escape.app: + "/Dungeon Escape.app": - when: - os: mac store: steam - /Dungeon Escape.exe: + "/Dungeon Escape.exe": - when: - os: windows store: steam - /Dungeon Escape.x86_64: + "/Dungeon Escape.x86_64": - when: - os: linux store: steam @@ -164270,15 +164769,15 @@ Dungeon Explorer: Dungeon Fighter Online: id: steamExtra: - - 503380 - - 502790 - 495920 - 495930 + - 502790 + - 503380 installDir: DFO: {} launch: - /NeopleLauncher.exe: - - arguments: 'data:14' + "/NeopleLauncher.exe": + - arguments: "data:14" when: - os: windows store: steam @@ -164288,15 +164787,15 @@ Dungeon Gambit Boy: installDir: Dungeon Gambit Boy: {} launch: - /dungeongambitboy.app/Contents/MacOS/nwjs: + "/dungeongambitboy.app/Contents/MacOS/nwjs": - when: - os: mac store: steam - /nw: + "/nw": - when: - os: linux store: steam - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -164306,18 +164805,18 @@ Dungeon Girl: installDir: Dungeon Girl: {} launch: - /Dungeon Girl - Japanese/Dungeon Girl.exe: + "/Dungeon Girl - Japanese/Dungeon Girl.exe": - when: - store: steam - workingDir: /Dungeon Girl - Japanese - /Dungeon Girl.exe: + workingDir: "/Dungeon Girl - Japanese" + "/Dungeon Girl.exe": - when: - store: steam steam: id: 494090 Dungeon Hack: files: - /SAVEGAME: + "/SAVEGAME": tags: - save when: @@ -164328,7 +164827,7 @@ Dungeon Hack: id: 1904551 Dungeon Hearts: files: - /.config/unity3d/CubeRoots/DungeonHearts: + "/.config/unity3d/CubeRoots/DungeonHearts": tags: - config when: @@ -164336,15 +164835,15 @@ Dungeon Hearts: installDir: Dungeon Hearts: {} launch: - /DungeonHearts: + "/DungeonHearts": - when: - os: linux store: steam - /DungeonHearts.app: + "/DungeonHearts.app": - when: - os: mac store: steam - /DungeonHearts.exe: + "/DungeonHearts.exe": - when: - os: windows store: steam @@ -164354,15 +164853,15 @@ Dungeon Hero: installDir: Dungeon Hero: {} launch: - /Dungeon Hero: + "/Dungeon Hero": - when: - os: linux store: steam - /Dungeon Hero.app: + "/Dungeon Hero.app": - when: - os: mac store: steam - /Dungeon Hero.exe: + "/Dungeon Hero.exe": - when: - bit: 64 os: windows @@ -164373,15 +164872,15 @@ Dungeon Highway: installDir: DungeonHighway: {} launch: - /DungeonHighway.app: + "/DungeonHighway.app": - when: - os: mac store: steam - /DungeonHighway.exe: + "/DungeonHighway.exe": - when: - os: windows store: steam - /DungeonHighway.x86: + "/DungeonHighway.x86": - when: - os: linux store: steam @@ -164391,7 +164890,7 @@ Dungeon Hunter 5: installDir: Dungeon Hunter 5: {} launch: - /DH5.exe: + "/DH5.exe": - when: - os: windows store: steam @@ -164401,7 +164900,7 @@ Dungeon Hunter Champions: installDir: Dungeon Hunter Champions: {} launch: - /DHC.exe: + "/DHC.exe": - when: - os: windows store: steam @@ -164411,7 +164910,7 @@ Dungeon Journey: installDir: DungeonJourney: {} launch: - /DungeonJourney.exe: + "/DungeonJourney.exe": - when: - os: windows store: steam @@ -164421,7 +164920,7 @@ Dungeon Jump - 地牢跳跃: installDir: Dungeon Jump: {} launch: - /Dungeon Jump.exe: + "/Dungeon Jump.exe": - when: - os: windows store: steam @@ -164429,13 +164928,13 @@ Dungeon Jump - 地牢跳跃: id: 820780 Dungeon Keeper: files: - /KEEPER.CFG: + "/KEEPER.CFG": tags: - config when: - os: dos - os: windows - /SAVE: + "/SAVE": tags: - save when: @@ -164445,12 +164944,12 @@ Dungeon Keeper: id: 1207658934 Dungeon Keeper 2: files: - /Data/Save: + "/Data/Save": tags: - save when: - os: windows - /Data/Settings: + "/Data/Settings": tags: - config when: @@ -164461,19 +164960,19 @@ Dungeon Keeper 2: HKEY_CURRENT_USER/SOFTWARE/Bullfrog Productions Ltd/Dungeon Keeper II/Configuration/Player: tags: - save -'Dungeon Kingdom: Sign of the Moon': +"Dungeon Kingdom: Sign of the Moon": installDir: Dungeon Kingdom: {} launch: - /Dungeon Kingdom.exe: + "/Dungeon Kingdom.exe": - when: - os: windows store: steam - /DungeonKingdom.app: + "/DungeonKingdom.app": - when: - os: mac store: steam - /DungeonKingdom.x86_64: + "/DungeonKingdom.x86_64": - when: - os: linux store: steam @@ -164483,11 +164982,11 @@ Dungeon Kitty: installDir: Dungeon Kitty: {} launch: - /DKMAC.app: + "/DKMAC.app": - when: - os: mac store: steam - /Dungeon Kitty.exe: + "/Dungeon Kitty.exe": - when: - os: windows store: steam @@ -164497,15 +164996,15 @@ Dungeon League: installDir: Dungeon League: {} launch: - /Dungeon League.app: + "/Dungeon League.app": - when: - os: mac store: steam - /Dungeon League.exe: + "/Dungeon League.exe": - when: - os: windows store: steam - /Dungeon League.x86: + "/Dungeon League.x86": - when: - os: linux store: steam @@ -164515,7 +165014,7 @@ Dungeon Lord: installDir: Dungeon Lord: {} launch: - /DungeonLord.exe: + "/DungeonLord.exe": - when: - bit: 64 os: windows @@ -164524,7 +165023,7 @@ Dungeon Lord: id: 1429670 Dungeon Lords: files: - /save: + "/save": tags: - save when: @@ -164532,21 +165031,21 @@ Dungeon Lords: installDir: Dungeon Lords: {} launch: - /DLSteamEdition.exe: + "/DLSteamEdition.exe": - when: - os: windows store: steam steam: id: 271760 -'Dungeon Lurk II: Leona': +"Dungeon Lurk II: Leona": installDir: Dungeon Lurk II - Leona: {} launch: - /DungeonLurk2.exe: + "/DungeonLurk2.exe": - when: - os: windows store: steam - /DungeonLurk2.x86: + "/DungeonLurk2.x86": - when: - os: linux store: steam @@ -164556,7 +165055,7 @@ Dungeon Manager ZV: installDir: Dungeon Manager ZV: {} launch: - /DungeonManagerZV.exe: + "/DungeonManagerZV.exe": - when: - store: steam steam: @@ -164565,16 +165064,16 @@ Dungeon Manager ZV 2: installDir: Dungeon Manager ZV 2: {} launch: - /DungeonManagerZV2.exe: + "/DungeonManagerZV2.exe": - when: - store: steam steam: id: 581210 -'Dungeon Manager ZV: Resurrection': +"Dungeon Manager ZV: Resurrection": installDir: DungeonManagerZVR: {} launch: - /ZV_DG_steam.exe: + "/ZV_DG_steam.exe": - when: - os: windows store: steam @@ -164584,7 +165083,7 @@ Dungeon Marathon: installDir: Dungeon Marathon: {} launch: - /DungeonMarathon.exe: + "/DungeonMarathon.exe": - when: - os: windows store: steam @@ -164599,24 +165098,24 @@ Dungeon Munchies: installDir: Dungeon Munchies: {} launch: - /Dungeon Munchies.app/Contents/MacOS/Dungeon Munchies: + "/Dungeon Munchies.app/Contents/MacOS/Dungeon Munchies": - when: - os: mac store: steam - /Dungeon Munchies.exe: + "/Dungeon Munchies.exe": - when: - os: windows store: steam steam: id: 799640 -'Dungeon Nightmares II: The Memory': +"Dungeon Nightmares II: The Memory": files: - /AppData/LocalLow/K Monkey/Dungeon Nightmares II _ The Memory/gameoptions.dat: + "/AppData/LocalLow/K Monkey/Dungeon Nightmares II _ The Memory/gameoptions.dat": tags: - config when: - os: windows - /unity3d/K Monkey/Dungeon Nightmares II: + "/unity3d/K Monkey/Dungeon Nightmares II": tags: - config when: @@ -164624,11 +165123,11 @@ Dungeon Munchies: installDir: Dungeon Nightmares II - The Memory: {} launch: - /DungeonNightmaresII.app: + "/DungeonNightmaresII.app": - when: - os: mac store: steam - /DungeonNightmaresII.exe: + "/DungeonNightmaresII.exe": - when: - os: windows store: steam @@ -164638,11 +165137,11 @@ Dungeon Of Dragon Knight: installDir: DODK: {} launch: - /DODK.app: + "/DODK.app": - when: - os: mac store: steam - /DODK.exe: + "/DODK.exe": - when: - os: windows store: steam @@ -164652,7 +165151,7 @@ Dungeon Origins: installDir: Dungeon Origins: {} launch: - /Dungeon Origins.exe: + "/Dungeon Origins.exe": - when: - os: windows store: steam @@ -164662,7 +165161,7 @@ Dungeon Pain Maniac: installDir: DPM: {} launch: - /Dungeon Pain Maniac.exe: + "/Dungeon Pain Maniac.exe": - when: - os: windows store: steam @@ -164672,7 +165171,7 @@ Dungeon Punks: installDir: DungeonPunks: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -164687,7 +165186,7 @@ Dungeon Quest: installDir: Dungeon Quest: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -164697,7 +165196,7 @@ Dungeon Rankers: installDir: Dungeon Rankers: {} launch: - /DungeonRankers.exe: + "/DungeonRankers.exe": - when: - os: windows store: steam @@ -164709,7 +165208,7 @@ Dungeon Rats: installDir: Dungeon Rats: {} launch: - /DR64.exe: + "/DR64.exe": - when: - bit: 64 os: windows @@ -164726,7 +165225,7 @@ Dungeon Rush: id: 871230 Dungeon Rushers: files: - /AppData/LocalLow/GoblinzStudio/Dungeon Rushers: + "/AppData/LocalLow/GoblinzStudio/Dungeon Rushers": tags: - save when: @@ -164734,15 +165233,15 @@ Dungeon Rushers: installDir: Dungeon_Rushers: {} launch: - /Dungeon Rushers.app: + "/Dungeon Rushers.app": - when: - os: mac store: steam - /Dungeon Rushers.exe: + "/Dungeon Rushers.exe": - when: - os: windows store: steam - /Dungeon Rushers.x86: + "/Dungeon Rushers.x86": - when: - os: linux store: steam @@ -164752,7 +165251,7 @@ Dungeon Rustlers: installDir: Dungeon Rustlers: {} launch: - /DungeonRustlers.exe: + "/DungeonRustlers.exe": - when: - os: windows store: steam @@ -164762,7 +165261,7 @@ Dungeon Scavenger: installDir: Dungeon Scavenger: {} launch: - /Dungeon Scavenger.exe: + "/Dungeon Scavenger.exe": - when: - os: windows store: steam @@ -164772,7 +165271,7 @@ Dungeon Shooter 2: installDir: Dungeon Shooter 2: {} launch: - /ds2.exe: + "/ds2.exe": - when: - os: windows store: steam @@ -164780,22 +165279,22 @@ Dungeon Shooter 2: id: 335440 Dungeon Siege: files: - /Dungeon Siege/DungeonSiege.ini: + "/Dungeon Siege/DungeonSiege.ini": tags: - config when: - os: windows - /Dungeon Siege/Keys/current.gas: + "/Dungeon Siege/Keys/current.gas": tags: - config when: - os: windows - /Dungeon Siege/Save: + "/Dungeon Siege/Save": tags: - save when: - os: windows - /Dungeon Siege/prefs.gas: + "/Dungeon Siege/prefs.gas": tags: - config when: @@ -164808,29 +165307,29 @@ Dungeon Siege: installDir: Dungeon Siege 1: {} launch: - /DungeonSiege.exe: + "/DungeonSiege.exe": - when: - store: steam steam: id: 39190 Dungeon Siege II: files: - /My Games/Dungeon Siege 2 Broken World/DungeonSiege2BrokenWorld.ini: + "/My Games/Dungeon Siege 2 Broken World/DungeonSiege2BrokenWorld.ini": tags: - config when: - os: windows - /My Games/Dungeon Siege 2 Broken World/save: + "/My Games/Dungeon Siege 2 Broken World/save": tags: - save when: - os: windows - /My Games/Dungeon Siege 2/DungeonSiege2.ini: + "/My Games/Dungeon Siege 2/DungeonSiege2.ini": tags: - config when: - os: windows - /My Games/Dungeon Siege 2/save: + "/My Games/Dungeon Siege 2/save": tags: - save when: @@ -164843,24 +165342,24 @@ Dungeon Siege II: installDir: Dungeon Siege 2: {} launch: - /DungeonSiege2.exe: + "/DungeonSiege2.exe": - when: - store: steam steam: id: 39200 Dungeon Siege III: files: - /My Games/Dungeon Siege III/save: + "/My Games/Dungeon Siege III/save": tags: - save when: - os: windows - /My Games/Dungeon Siege III/save/*.opt: + "/My Games/Dungeon Siege III/save/*.opt": tags: - config when: - os: windows - /My Games/Dungeon Siege III/user.ini: + "/My Games/Dungeon Siege III/user.ini": tags: - config when: @@ -164882,37 +165381,37 @@ Dungeon Siege III: installDir: Dungeon Siege III: {} launch: - /Dungeon Siege III.exe: - - arguments: '-steam' + "/Dungeon Siege III.exe": + - arguments: "-steam" when: - store: steam steam: id: 39160 -'Dungeon Siege: Legends of Aranna': +"Dungeon Siege: Legends of Aranna": files: - /Dungeon Siege LOA/DungeonSiege.ini: + "/Dungeon Siege LOA/DungeonSiege.ini": tags: - config when: - os: windows - /Dungeon Siege LOA/Save: + "/Dungeon Siege LOA/Save": tags: - save when: - os: windows Dungeon Souls: files: - /DungeonSouls/configuration.ini: + "/DungeonSouls/configuration.ini": tags: - config when: - os: windows - /DungeonSouls/dungeonsouls.ds: + "/DungeonSouls/dungeonsouls.ds": tags: - save when: - os: windows - /DungeonSouls/dungeonsouls.ds: + "/DungeonSouls/dungeonsouls.ds": tags: - save when: @@ -164922,15 +165421,15 @@ Dungeon Souls: installDir: Dungeon Souls: {} launch: - /DungeonSouls.app/Contents/MacOS/Mac_Runner: + "/DungeonSouls.app/Contents/MacOS/Mac_Runner": - when: - os: mac store: steam - /DungeonSouls.exe: + "/DungeonSouls.exe": - when: - os: windows store: steam - /DungeonSouls/runner: + "/DungeonSouls/runner": - when: - os: linux store: steam @@ -164940,7 +165439,7 @@ Dungeon Stars: installDir: Dungeon Stars: {} launch: - /Dungeonstars.exe: + "/Dungeonstars.exe": - when: - bit: 32 os: windows @@ -164953,14 +165452,14 @@ Dungeon Town: installDir: Dungeon Town: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: id: 959880 Dungeon Village: files: - /saves/: + "/saves/": tags: - save when: @@ -164968,7 +165467,7 @@ Dungeon Village: installDir: DungeonVillage: {} launch: - /KairoGames.exe: + "/KairoGames.exe": - when: - os: windows store: steam @@ -164978,21 +165477,21 @@ Dungeon Warfare: installDir: Dungeon Warfare: {} launch: - /DW.exe: + "/DW.exe": - when: - os: windows store: steam - /DW.x86: + "/DW.x86": - when: - bit: 32 os: linux store: steam - /DW.x86_64: + "/DW.x86_64": - when: - bit: 64 os: linux store: steam - /DungeonWarfare.app: + "/DungeonWarfare.app": - when: - os: mac store: steam @@ -165006,11 +165505,11 @@ Dungeon Warfare 2: installDir: Dungeon Warfare 2: {} launch: - /DungeonWarfare2.app: + "/DungeonWarfare2.app": - when: - os: mac store: steam - /DungeonWarfare2.exe: + "/DungeonWarfare2.exe": - when: - os: windows store: steam @@ -165020,7 +165519,7 @@ Dungeon of Doom: installDir: Dungeon of Doom Puzzle: {} launch: - /Dungeon of Doom.exe: + "/Dungeon of Doom.exe": - when: - bit: 64 os: windows @@ -165029,12 +165528,12 @@ Dungeon of Doom: id: 537750 Dungeon of Elements: files: - /AppData/LocalLow/Frogdice/DoE: + "/AppData/LocalLow/Frogdice/DoE": tags: - save when: - os: windows - /AppData/LocalLow/Frogdice/DoE/settings.doe: + "/AppData/LocalLow/Frogdice/DoE/settings.doe": tags: - config when: @@ -165042,15 +165541,15 @@ Dungeon of Elements: installDir: Dungeon of Elements: {} launch: - /DungeonofElements: + "/DungeonofElements": - when: - os: linux store: steam - /DungeonofElements.app: + "/DungeonofElements.app": - when: - os: mac store: steam - /DungeonofElements.exe: + "/DungeonofElements.exe": - when: - os: windows store: steam @@ -165064,11 +165563,11 @@ Dungeon of Gain: installDir: Dungeon of gain: {} launch: - /DungeonRL: + "/DungeonRL": - when: - os: linux store: steam - /DungeonRL.exe: + "/DungeonRL.exe": - when: - os: windows store: steam @@ -165078,11 +165577,11 @@ Dungeon of Zaar: installDir: Dungeon Of Zaar: {} launch: - /DungeonOfZaarBeta.app: + "/DungeonOfZaarBeta.app": - when: - os: mac store: steam - /DungeonOfZaarBeta.exe: + "/DungeonOfZaarBeta.exe": - when: - os: windows store: steam @@ -165094,7 +165593,7 @@ Dungeon of Zaar: id: 613590 Dungeon of Zolthan: files: - /Stencyl/Dungeon of Zolthan: + "/Stencyl/Dungeon of Zolthan": tags: - config - save @@ -165103,11 +165602,11 @@ Dungeon of Zolthan: installDir: Dungeon of Zolthan: {} launch: - /Dungeon of Zolthan.app: + "/Dungeon of Zolthan.app": - when: - os: mac store: steam - /Dungeon of Zolthan.exe: + "/Dungeon of Zolthan.exe": - when: - os: windows store: steam @@ -165115,17 +165614,17 @@ Dungeon of Zolthan: id: 463220 Dungeon of the Endless: files: - /Library/Application Support/Dungeon of the Endless/Users: + "/Library/Application Support/Dungeon of the Endless/Users": tags: - save when: - os: mac - /Dungeon of the Endless/Users: + "/Dungeon of the Endless/Users": tags: - save when: - os: windows - /Dungeon of the Endless/Users//Registry.xml: + "/Dungeon of the Endless/Users//Registry.xml": tags: - config when: @@ -165136,19 +165635,19 @@ Dungeon of the Endless: steamExtra: - 349770 - 365940 - - 410940 - 407200 - 407210 + - 410940 installDir: Dungeon of the Endless: {} launch: - /DungeonoftheEndless.app: - - arguments: '-single-instance' + "/DungeonoftheEndless.app": + - arguments: "-single-instance" when: - os: mac store: steam - /DungeonoftheEndless.exe: - - arguments: '-single-instance' + "/DungeonoftheEndless.exe": + - arguments: "-single-instance" when: - os: windows store: steam @@ -165158,11 +165657,11 @@ Dungeon of the Endless: - config steam: id: 249050 -Dungeon's Barrage: +"Dungeon's Barrage": installDir: - Dungeon's Barrage: {} + "Dungeon's Barrage": {} launch: - /Dungeon_Barrage_2.0.0.exe: + "/Dungeon_Barrage_2.0.0.exe": - when: - os: windows store: steam @@ -165172,7 +165671,7 @@ Dungeon-Party: installDir: DungeonParty: {} launch: - /DungeonParty.exe: + "/DungeonParty.exe": - when: - store: steam steam: @@ -165181,7 +165680,7 @@ DungeonEpic: installDir: DungeonEpic: {} launch: - /DungeonEpic.exe: + "/DungeonEpic.exe": - when: - bit: 64 os: windows @@ -165192,11 +165691,11 @@ DungeonGOGO: installDir: DungeonGOGO: {} launch: - /DungeonGOGO v1.1.app/Contents/MacOS/DungeonGOGO: + "/DungeonGOGO v1.1.app/Contents/MacOS/DungeonGOGO": - when: - os: mac store: steam - /DungeonGOGO.exe: + "/DungeonGOGO.exe": - when: - os: windows store: steam @@ -165206,7 +165705,7 @@ DungeonMaze: installDir: Dungeon Maze: {} launch: - /DungeonMaze.exe: + "/DungeonMaze.exe": - when: - store: steam steam: @@ -165215,20 +165714,20 @@ DungeonRift: installDir: DungeonRift: {} launch: - /DungeonRift.app: + "/DungeonRift.app": - when: - os: mac store: steam - /DungeonRift.exe: + "/DungeonRift.exe": - when: - os: windows store: steam - /DungeonRift.x86: + "/DungeonRift.x86": - when: - bit: 32 os: linux store: steam - /DungeonRift.x86_64: + "/DungeonRift.x86_64": - when: - bit: 64 os: linux @@ -165237,7 +165736,7 @@ DungeonRift: id: 375550 DungeonTop: files: - /AppData/LocalLow/One Up Plus/Dungeontop/SaveData.txt: + "/AppData/LocalLow/One Up Plus/Dungeontop/SaveData.txt": tags: - save when: @@ -165245,7 +165744,7 @@ DungeonTop: installDir: Spellsword Cards DungeonTop: {} launch: - /Dungeontop.exe: + "/Dungeontop.exe": - when: - store: steam registry: @@ -165258,11 +165757,11 @@ DungeonUp: installDir: DungeonUp: {} launch: - /DungeonUp.app: + "/DungeonUp.app": - when: - os: mac store: steam - /DungeonUp.exe: + "/DungeonUp.exe": - when: - os: windows store: steam @@ -165272,8 +165771,8 @@ Dungeonbowl - Knockout Edition: installDir: Dungeonbowl: {} launch: - /DB.exe: - - arguments: '' + "/DB.exe": + - arguments: "" when: - store: steam steam: @@ -165282,7 +165781,7 @@ Dungeoncraft: installDir: Dungeoncraft: {} launch: - /dungeoncraft.exe: + "/dungeoncraft.exe": - when: - os: windows store: steam @@ -165292,7 +165791,7 @@ Dungeoneer: installDir: Dungeoneer: {} launch: - /Dungeoneer.exe: + "/Dungeoneer.exe": - when: - os: windows store: steam @@ -165302,11 +165801,11 @@ Dungeonland: installDir: Dungeonland: {} launch: - /Dungeonland.exe: + "/Dungeonland.exe": - when: - os: windows store: steam - /dungeonland.app: + "/dungeonland.app": - when: - os: mac store: steam @@ -165316,24 +165815,24 @@ Dungeonmans: installDir: Dungeonmans: {} launch: - /dungeonmans.exe: + "/dungeonmans.exe": - when: - store: steam steam: id: 288120 Dungeons: files: - /Kalypso Media/Dungeons/config.cfg: + "/Kalypso Media/Dungeons/config.cfg": tags: - config when: - os: windows - /Kalypso Media/Dungeons/keybindings.csv: + "/Kalypso Media/Dungeons/keybindings.csv": tags: - config when: - os: windows - /Kalypso Media/Dungeons/savegames: + "/Kalypso Media/Dungeons/savegames": tags: - save when: @@ -165341,7 +165840,7 @@ Dungeons: installDir: Dungeons: {} launch: - /DungeonsStarter.exe: + "/DungeonsStarter.exe": - when: - store: steam steam: @@ -165350,7 +165849,7 @@ Dungeons & Darkness: installDir: DungeonsAndDarkness: {} launch: - /DungeonsAndDarkness.exe: + "/DungeonsAndDarkness.exe": - when: - bit: 64 os: windows @@ -165359,7 +165858,7 @@ Dungeons & Darkness: id: 479990 Dungeons & Dragons Online: files: - /Dungeons and Dragons Online: + "/Dungeons and Dragons Online": tags: - config when: @@ -165367,26 +165866,26 @@ Dungeons & Dragons Online: installDir: Dungeons and Dragons Online: {} launch: - /DNDLauncher.app: - - arguments: '-steam' + "/DNDLauncher.app": + - arguments: "-steam" when: - os: mac store: steam - /DNDLauncher.exe: - - arguments: '-steam' + "/DNDLauncher.exe": + - arguments: "-steam" when: - os: windows store: steam steam: id: 206480 -'Dungeons & Dragons: Chronicles of Mystara': +"Dungeons & Dragons: Chronicles of Mystara": files: - /Settings.igsconfig: + "/Settings.igsconfig": tags: - config when: - os: windows - /Saved Games/Capcom/Dungeons & Dragons/Saved Games: + "/Saved Games/Capcom/Dungeons & Dragons/Saved Games": tags: - save when: @@ -165397,15 +165896,15 @@ Dungeons & Dragons Online: installDir: Dungeons & Dragons HD: {} launch: - /ManaGame.exe: + "/ManaGame.exe": - when: - os: windows store: steam steam: id: 229480 -'Dungeons & Dragons: Daggerdale': +"Dungeons & Dragons: Daggerdale": files: - /My Games/Daggerdale/DnDGame/SaveData: + "/My Games/Daggerdale/DnDGame/SaveData": tags: - save when: @@ -165413,24 +165912,24 @@ Dungeons & Dragons Online: installDir: Daggerdale: {} launch: - /Binaries/Win32/DnDGame.exe: + "/Binaries/Win32/DnDGame.exe": - when: - store: steam steam: id: 99100 -'Dungeons & Dragons: Dark Alliance': +"Dungeons & Dragons: Dark Alliance": files: - /CotH/Saved/Config/WindowsNoEditor: + "/CotH/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /CotH/Saved/SaveGames/: + "/CotH/Saved/SaveGames/": tags: - save when: - os: windows - /Packages/WizardsoftheCoastLLC.DarkAlliance_egzvkhb86xsmw/LocalCache/Local/CotH/Saved/Config/WinGDK: + "/Packages/WizardsoftheCoastLLC.DarkAlliance_egzvkhb86xsmw/LocalCache/Local/CotH/Saved/Config/WinGDK": tags: - config when: @@ -165439,15 +165938,15 @@ Dungeons & Dragons Online: installDir: DarkAlliance: {} launch: - /WindowsNoEditor/DarkAlliance.exe: - - arguments: '-nothreadtimeout' + "/WindowsNoEditor/DarkAlliance.exe": + - arguments: "-nothreadtimeout" when: - store: steam steam: id: 623280 -'Dungeons & Dragons: Dragonshard': +"Dungeons & Dragons: Dragonshard": files: - /My Games/Dragonshard: + "/My Games/Dragonshard": tags: - config - save @@ -165459,7 +165958,7 @@ Dungeons & Geese: installDir: Dungeons & Geese: {} launch: - /Dungeons & Geese.exe: + "/Dungeons & Geese.exe": - when: - store: steam steam: @@ -165468,15 +165967,15 @@ Dungeons & Robots: installDir: Dungeons & Robots: {} launch: - /DNRS.app: + "/DNRS.app": - when: - os: mac store: steam - /DNRS.exe: + "/DNRS.exe": - when: - os: windows store: steam - /DNRS.x86: + "/DNRS.x86": - when: - os: linux store: steam @@ -165491,7 +165990,7 @@ Dungeons & Vampires: installDir: Dungeons&Vampires: {} launch: - /Dungeons&Vampires.exe: + "/Dungeons&Vampires.exe": - when: - os: windows store: steam @@ -165499,33 +165998,33 @@ Dungeons & Vampires: id: 759160 Dungeons 2: files: - /savegames: + "/savegames": tags: - save when: - os: windows - os: linux - /.config/Kalypso Media/Dungeons 2: + "/.config/Kalypso Media/Dungeons 2": tags: - config when: - os: mac - /steam/steamapps/common/Dungeons2/savegames/config-cloud.cfg: + "/steam/steamapps/common/Dungeons2/savegames/config-cloud.cfg": tags: - config when: - os: linux - /Kalypso Media/Dungeons 2/config.cfg: + "/Kalypso Media/Dungeons 2/config.cfg": tags: - config when: - os: windows - /Kalypso Media/Dungeons 2/keybindings-rts.txt: + "/Kalypso Media/Dungeons 2/keybindings-rts.txt": tags: - config when: - os: windows - /Kalypso Media/Dungeons 2/savegames: + "/Kalypso Media/Dungeons 2/savegames": tags: - save when: @@ -165538,22 +166037,22 @@ Dungeons 2: - 1441636287 - 1444640476 steamExtra: - - 408600 - 382400 - - 390180 - 382410 + - 390180 + - 408600 installDir: Dungeons2: {} launch: - /Dungeons2: + "/Dungeons2": - when: - os: linux store: steam - /Dungeons2.app: + "/Dungeons2.app": - when: - os: mac store: steam - /Dungeons2.exe: + "/Dungeons2.exe": - when: - os: windows store: steam @@ -165565,27 +166064,27 @@ Dungeons 2: id: 262280 Dungeons 3: files: - /.config/Kalypso Media/Dungeons 3/config.cfg: + "/.config/Kalypso Media/Dungeons 3/config.cfg": tags: - config when: - os: linux - /.config/Kalypso Media/Dungeons 3/savegames: + "/.config/Kalypso Media/Dungeons 3/savegames": tags: - save when: - os: linux - /Kalypso Media/Dungeons 3/config.cfg: + "/Kalypso Media/Dungeons 3/config.cfg": tags: - config when: - os: windows - /Kalypso Media/Dungeons 3/keybindings-wasd.txt: + "/Kalypso Media/Dungeons 3/keybindings-wasd.txt": tags: - config when: - os: windows - /Kalypso Media/Dungeons 3/savegames: + "/Kalypso Media/Dungeons 3/savegames": tags: - save when: @@ -165599,15 +166098,15 @@ Dungeons 3: installDir: Dungeons 3: {} launch: - /Dungeons3: + "/Dungeons3": - when: - os: linux store: steam - /Dungeons3.app: + "/Dungeons3.app": - when: - os: mac store: steam - /Dungeons3.exe: + "/Dungeons3.exe": - when: - os: windows store: steam @@ -165619,12 +166118,12 @@ Dungeons 3: id: 493900 Dungeons 4: files: - /Kalypso Media/Dungeons 4/config-*.cfg: + "/Kalypso Media/Dungeons 4/config-*.cfg": tags: - config when: - os: windows - /Kalypso Media/Dungeons 4/savegames/*.d4: + "/Kalypso Media/Dungeons 4/savegames/*.d4": tags: - save when: @@ -165638,7 +166137,7 @@ Dungeons Again: installDir: Dungeons Again: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -165648,15 +166147,15 @@ Dungeons Are Random: installDir: Dungeons Are Random: {} launch: - /DaR.exe: + "/DaR.exe": - when: - os: windows store: steam - /DaR_Linux.x86: + "/DaR_Linux.x86": - when: - os: linux store: steam - /DaR_MAC.app/Contents/MacOS/DaR_MAC: + "/DaR_MAC.app/Contents/MacOS/DaR_MAC": - when: - os: mac store: steam @@ -165666,11 +166165,11 @@ Dungeons Forever: installDir: Dungeons Forever: {} launch: - /DF_Game.exe: + "/DF_Game.exe": - when: - os: windows store: steam - /DF_Game.x86: + "/DF_Game.x86": - when: - os: linux store: steam @@ -165683,7 +166182,7 @@ Dungeons and Dinners: installDir: Dungeons and Dinners: {} launch: - /DungeonAndDinner.exe: + "/DungeonAndDinner.exe": - when: - os: windows store: steam @@ -165693,15 +166192,15 @@ Dungeons of Betrayal: installDir: Dungeons of Betrayal: {} launch: - /Game: + "/Game": - when: - os: linux store: steam - /Game.app: + "/Game.app": - when: - os: mac store: steam - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -165711,15 +166210,15 @@ Dungeons of Chaos: installDir: DUNGEONS OF CHAOS: {} launch: - /DoC.app: + "/DoC.app": - when: - os: mac store: steam - /DoC.exe: + "/DoC.exe": - when: - os: windows store: steam - /DoC.x86: + "/DoC.x86": - when: - os: linux store: steam @@ -165727,25 +166226,25 @@ Dungeons of Chaos: id: 613390 Dungeons of Dredmor: files: - /Library/Application Support/Dungeons of Dredmor: + "/Library/Application Support/Dungeons of Dredmor": tags: - config - save when: - os: mac - /userdata//98800: + "/userdata//98800": tags: - config - save when: - store: steam - /Gaslamp Games/Dungeons of Dredmor: + "/Gaslamp Games/Dungeons of Dredmor": tags: - config - save when: - os: windows - /Dredmor: + "/Dredmor": tags: - config - save @@ -165754,15 +166253,15 @@ Dungeons of Dredmor: installDir: Dungeons of Dredmor: {} launch: - /Dredmor: + "/Dredmor": - when: - os: linux store: steam - /Dungeons of Dredmor.app: + "/Dungeons of Dredmor.app": - when: - os: mac store: steam - /Dungeons of Dredmor.exe: + "/Dungeons of Dredmor.exe": - when: - os: windows store: steam @@ -165770,7 +166269,7 @@ Dungeons of Dredmor: id: 98800 Dungeons of Edera: files: - /DoE: + "/DoE": tags: - save when: @@ -165780,7 +166279,7 @@ Dungeons of Edera: installDir: Dungeons of Edera: {} launch: - /DoE.exe: + "/DoE.exe": - when: - bit: 64 os: windows @@ -165791,15 +166290,15 @@ Dungeons of Hell: installDir: Dungeons of Hell: {} launch: - /DungeonsOfHell.app/Contents/MacOS/DungeonsOfHell: + "/DungeonsOfHell.app/Contents/MacOS/DungeonsOfHell": - when: - os: mac store: steam - /DungeonsOfHell.exe: + "/DungeonsOfHell.exe": - when: - os: windows store: steam - /DungeonsOfHell.x86: + "/DungeonsOfHell.x86": - when: - os: linux store: steam @@ -165810,14 +166309,14 @@ Dungeons of Kragmor: Dungeons Of Kragmor: {} steam: id: 407730 -'Dungeons of Kremlin: Remastered': +"Dungeons of Kremlin: Remastered": steam: id: 708800 -'Dungeons of Legend: Cast Within': +"Dungeons of Legend: Cast Within": installDir: Dungeons of Legend Cast Within: {} launch: - /Dungeons of Legend - Cast Within.exe: + "/Dungeons of Legend - Cast Within.exe": - when: - os: windows store: steam @@ -165827,17 +166326,17 @@ Dungeons of Necromancers: installDir: Dungeons of Necromancers: {} launch: - /Dungeons of Necromancers.exe: + "/Dungeons of Necromancers.exe": - when: - os: windows store: steam steam: id: 967370 -Dungeons of Tal'Doria: +"Dungeons of Tal'Doria": installDir: - Dungeons of Tal'Doria: {} + "Dungeons of Tal'Doria": {} launch: - /TalDoria.exe: + "/TalDoria.exe": - when: - os: windows store: steam @@ -165847,7 +166346,7 @@ Dungeons of the Dead: installDir: Dungeons of the dead: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -165857,20 +166356,20 @@ Dungeons of the Fallen: installDir: Dungeons of the Fallen: {} launch: - /DoTF.exe: + "/DoTF.exe": - when: - os: windows store: steam steam: id: 701610 -'Dungeons: The Dark Lord': +"Dungeons: The Dark Lord": files: - /Kalypso Media/Dungeons - The Dark Lord/config.cfg: + "/Kalypso Media/Dungeons - The Dark Lord/config.cfg": tags: - config when: - os: windows - /Kalypso Media/Dungeons - The Dark Lord/savegames: + "/Kalypso Media/Dungeons - The Dark Lord/savegames": tags: - save when: @@ -165878,19 +166377,19 @@ Dungeons of the Fallen: installDir: Dungeons - The Dark Lord: {} launch: - /DungeonsTheDarkLord.exe: + "/DungeonsTheDarkLord.exe": - when: - store: steam steam: id: 200550 -'Dungeons: The Eye of Draconus': +"Dungeons: The Eye of Draconus": files: - /Saved Games/Dungeons The Eye of Draconus: + "/Saved Games/Dungeons The Eye of Draconus": tags: - config when: - os: windows - /Saved Games/Dungeons The Eye of Draconus/save.xml: + "/Saved Games/Dungeons The Eye of Draconus/save.xml": tags: - save when: @@ -165898,7 +166397,7 @@ Dungeons of the Fallen: installDir: Dungeons The Eye Of Draconus: {} launch: - /DungeonsLauncher.exe: + "/DungeonsLauncher.exe": - when: - os: windows store: steam @@ -165911,25 +166410,25 @@ Dungreed: installDir: Dungreed: {} launch: - /Contents/MacOS/Dungreed_Mac: + "/Contents/MacOS/Dungreed_Mac": - when: - os: mac store: steam - /Dungreed.exe: + "/Dungreed.exe": - when: - os: windows store: steam - /Dungreed.x86_64: + "/Dungreed.x86_64": - when: - os: linux store: steam steam: id: 753420 -'Dunia: Masters': +"Dunia: Masters": installDir: TeamWoodBlock: {} launch: - /DuniaMasters.exe: + "/DuniaMasters.exe": - when: - bit: 64 os: windows @@ -165945,7 +166444,7 @@ Dunk Lords: installDir: Dunk Lords: {} launch: - /Dunk Lords.exe: + "/Dunk Lords.exe": - when: - os: windows store: steam @@ -165955,7 +166454,7 @@ DunkRatz: installDir: DunkRatz: {} launch: - /DunkRatz.exe: + "/DunkRatz.exe": - when: - os: windows store: steam @@ -165965,7 +166464,7 @@ Dunmakia Kingdom: installDir: Dunmakia Kingdom: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -165975,7 +166474,7 @@ Dunrog: installDir: Dunrog: {} launch: - /Dunrog.exe: + "/Dunrog.exe": - when: - os: windows store: steam @@ -165985,11 +166484,11 @@ Duo (Bruno Freitas): installDir: Duo: {} launch: - /Duo.exe: + "/Duo.exe": - when: - os: windows store: steam - /Duo.x86_64: + "/Duo.x86_64": - when: - os: linux store: steam @@ -165999,11 +166498,11 @@ Duped: installDir: Duped: {} launch: - /Duped.app: + "/Duped.app": - when: - os: mac store: steam - /Duped.exe: + "/Duped.exe": - when: - os: windows store: steam @@ -166013,7 +166512,7 @@ Dupio: installDir: Dupio: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -166023,7 +166522,7 @@ Duplexer: installDir: Duplexer: {} launch: - /Binaries/Win32/Duplexer.exe: + "/Binaries/Win32/Duplexer.exe": - when: - bit: 32 os: windows @@ -166034,29 +166533,29 @@ Dupli City: installDir: DupliCity: {} launch: - /DupliCity.app/Contents/MacOS/DupliCity: + "/DupliCity.app/Contents/MacOS/DupliCity": - when: - os: mac store: steam - /DupliCity.exe: + "/DupliCity.exe": - when: - os: windows store: steam steam: id: 1014750 -'Duplicity: Beyond the Lies': +"Duplicity: Beyond the Lies": installDir: dUpLicity ~Beyond the Lies~: {} launch: - /duplicity.app: + "/duplicity.app": - when: - os: mac store: steam - /duplicity.exe: + "/duplicity.exe": - when: - os: windows store: steam - /duplicity.sh: + "/duplicity.sh": - when: - os: linux store: steam @@ -166066,7 +166565,7 @@ Durak!: installDir: Durak: {} launch: - /durak.exe: + "/durak.exe": - when: - bit: 64 os: windows @@ -166077,7 +166576,7 @@ Duralumin Wind: installDir: Duralumin Wind: {} launch: - /DuraluminWind.exe: + "/DuraluminWind.exe": - when: - os: windows store: steam @@ -166087,11 +166586,11 @@ Duru – About Mole Rats and Depression: installDir: Duru: {} launch: - /Duru.exe: + "/Duru.exe": - when: - os: windows store: steam - /Duru_Mac.app: + "/Duru_Mac.app": - when: - os: mac store: steam @@ -166099,17 +166598,17 @@ Duru – About Mole Rats and Depression: id: 1387900 Dusk: files: - /config: + "/config": tags: - config when: - os: linux - /config/dusk.ini: + "/config/dusk.ini": tags: - config when: - os: windows - /saves: + "/saves": tags: - save when: @@ -166121,27 +166620,27 @@ Dusk: Dusk: {} steam: id: 519860 -Dusk '82: +"Dusk '82": files: - /progress: + "/progress": tags: - save when: - os: windows - /settings.ini: + "/settings.ini": tags: - config when: - os: windows installDir: - Dusk '82: {} + "Dusk '82": {} launch: - /Dusk '82.exe: + "/Dusk '82.exe": - when: - bit: 64 os: windows store: steam - /readme.txt: + "/readme.txt": - when: - store: steam steam: @@ -166150,7 +166649,7 @@ Dusk 12: installDir: Dusk 12: {} launch: - /dusk.exe: + "/dusk.exe": - when: - os: windows store: steam @@ -166158,12 +166657,12 @@ Dusk 12: id: 317970 Dusk Diver: files: - /ProjectEverett/Saved/Config/WindowsNoEditor: + "/ProjectEverett/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /ProjectEverett/Saved/SaveGames: + "/ProjectEverett/Saved/SaveGames": tags: - save when: @@ -166171,20 +166670,20 @@ Dusk Diver: installDir: Dusk Diver: {} launch: - /ProjectEverett.exe: + "/ProjectEverett.exe": - when: - os: windows store: steam steam: id: 911220 -Dusk Golem's Anthology of Horror: +"Dusk Golem's Anthology of Horror": steam: id: 833020 Dusk Warlocks: installDir: Dusk Warlocks: {} launch: - /Dusk Warlocks.exe: + "/Dusk Warlocks.exe": - when: - os: windows store: steam @@ -166194,7 +166693,7 @@ Dusk of Confinement: installDir: DuskOfConfinement: {} launch: - /DuskOfConfinment.exe: + "/DuskOfConfinment.exe": - when: - os: windows store: steam @@ -166202,19 +166701,19 @@ Dusk of Confinement: id: 793510 Duskers: files: - /.config/unity3d/Misfits/ Attic/Duskers: + "/.config/unity3d/Misfits/ Attic/Duskers": tags: - config - save when: - os: linux - /Library/Application Support/unity.Misfits Attic.Duskers: + "/Library/Application Support/unity.Misfits Attic.Duskers": tags: - config - save when: - os: mac - /My Games/Duskers: + "/My Games/Duskers": tags: - config - save @@ -166225,35 +166724,35 @@ Duskers: installDir: Duskers: {} launch: - /Duskers.exe: + "/Duskers.exe": - when: - os: windows store: steam - /Duskers_linux.x86: + "/Duskers_linux.x86": - when: - bit: 32 os: linux store: steam - /Duskers_linux.x86_64: + "/Duskers_linux.x86_64": - when: - bit: 64 os: linux store: steam - /Duskers_mac.app: + "/Duskers_mac.app": - when: - os: mac store: steam steam: id: 254320 -'Duskless: The Clockwork Army': +"Duskless: The Clockwork Army": installDir: Duskless The Clockwork Army: {} launch: - /Duskless_TheClockworkArmy.app/Contents/MacOS/Duskless_TheClockworkArmy: + "/Duskless_TheClockworkArmy.app/Contents/MacOS/Duskless_TheClockworkArmy": - when: - os: mac store: steam - /Duskless_TheClockworkArmy.exe: + "/Duskless_TheClockworkArmy.exe": - when: - os: windows store: steam @@ -166263,12 +166762,12 @@ Dust On Wheels: installDir: Dust On Wheels: {} launch: - /Dust On Wheels.exe: + "/Dust On Wheels.exe": - when: - store: steam steam: id: 1043020 -'Dust and Echos: Vengeance': +"Dust and Echos: Vengeance": installDir: Dust and Echos Vengeance: {} steam: @@ -166277,25 +166776,25 @@ Dust and Salt: installDir: Dust and Salt: {} launch: - /Dust and Salt.app/Contents/MacOS/Dust and Salt: + "/Dust and Salt.app/Contents/MacOS/Dust and Salt": - when: - os: mac store: steam - /Dust and Salt.exe: + "/Dust and Salt.exe": - when: - os: windows store: steam steam: id: 766630 -'Dust and Salt: The Battle for Murk': +"Dust and Salt: The Battle for Murk": installDir: The Battle for Murk: {} launch: - /Battle for Murk.app/Contents/MacOS/Battle for Murk: + "/Battle for Murk.app/Contents/MacOS/Battle for Murk": - when: - os: mac store: steam - /Battle for Murk.exe: + "/Battle for Murk.exe": - when: - os: windows store: steam @@ -166305,41 +166804,41 @@ Dust n Wheels: installDir: Dust n Wheels: {} launch: - /Dust_N_Wheels.exe: + "/Dust_N_Wheels.exe": - when: - bit: 64 store: steam steam: id: 833650 -'Dust: An Elysian Tail': +"Dust: An Elysian Tail": files: - /Library/Application Support/DustAET: + "/Library/Application Support/DustAET": tags: - config - save when: - os: mac - /SavedGames/DustAET/Game Save *.sav: + "/SavedGames/DustAET/Game Save *.sav": tags: - save when: - os: windows - /SavedGames/DustAET/Save Files/Player*/Game Save *.sav: + "/SavedGames/DustAET/Save Files/Player*/Game Save *.sav": tags: - save when: - os: windows - /SavedGames/DustAET/Save Files/Player*/Settings.sav: + "/SavedGames/DustAET/Save Files/Player*/Settings.sav": tags: - config when: - os: windows - /SavedGames/DustAET/Settings.sav: + "/SavedGames/DustAET/Settings.sav": tags: - config when: - os: windows - /DustAET: + "/DustAET": tags: - config - save @@ -166350,15 +166849,15 @@ Dust n Wheels: installDir: Dust An Elysian Tail: {} launch: - /DustAET: + "/DustAET": - when: - os: linux store: steam - /DustAET.app: + "/DustAET.app": - when: - os: mac store: steam - /DustAET.exe: + "/DustAET.exe": - when: - os: windows store: steam @@ -166371,7 +166870,7 @@ Dustbowl: installDir: Dustbowl: {} launch: - /Dustbowl.exe: + "/Dustbowl.exe": - when: - os: windows store: steam @@ -166379,25 +166878,25 @@ Dustbowl: id: 367110 Dustforce: files: - /user: + "/user": tags: - config - save when: - store: steam - /.HitboxTeam/Dustforce: + "/.HitboxTeam/Dustforce": tags: - config - save when: - os: linux - /Library/Application Support/Hitbox Team/Dustforce: + "/Library/Application Support/Hitbox Team/Dustforce": tags: - config - save when: - os: mac - /Dustforce: + "/Dustforce": tags: - config - save @@ -166408,21 +166907,21 @@ Dustforce: installDir: Dustforce: {} launch: - /Dustforce.app: + "/Dustforce.app": - when: - os: mac store: steam - /Dustforce.bin.x86: + "/Dustforce.bin.x86": - when: - bit: 32 os: linux store: steam - /Dustforce.bin.x86_64: + "/Dustforce.bin.x86_64": - when: - bit: 64 os: linux store: steam - /Dustforce.exe: + "/Dustforce.exe": - when: - os: windows store: steam @@ -166430,7 +166929,7 @@ Dustforce: id: 65300 Dustoff Heli Rescue: files: - /DustoffPC_Data/Saves/SaveData.sav: + "/DustoffPC_Data/Saves/SaveData.sav": tags: - save when: @@ -166438,11 +166937,11 @@ Dustoff Heli Rescue: installDir: Dustoff Heli Rescue: {} launch: - /DustoffMacSteam.app: + "/DustoffMacSteam.app": - when: - os: mac store: steam - /DustoffPC.exe: + "/DustoffPC.exe": - when: - os: windows store: steam @@ -166454,7 +166953,7 @@ Dustoff Heli Rescue: id: 341730 Dustoff Heli Rescue 2: files: - /AppData/LocalLow/Invictus Games/Dustoff II/Saves: + "/AppData/LocalLow/Invictus Games/Dustoff II/Saves": tags: - save when: @@ -166462,7 +166961,7 @@ Dustoff Heli Rescue 2: installDir: Dustoff Heli Rescue 2: {} launch: - /dustoff2.exe: + "/dustoff2.exe": - when: - os: windows store: steam @@ -166472,7 +166971,7 @@ Dustwind: installDir: Dustwind: {} launch: - /Dustwind.exe: + "/Dustwind.exe": - when: - bit: 64 os: windows @@ -166486,42 +166985,42 @@ Dusty Raging Fist: installDir: Dusty Raging Fist: {} launch: - /DRF.app/Contents/MacOS/DRF: + "/DRF.app/Contents/MacOS/DRF": - when: - os: mac store: steam - /DRF.exe: + "/DRF.exe": - when: - os: windows store: steam steam: id: 570820 -'Dusty Revenge: Co-Op Edition': +"Dusty Revenge: Co-Op Edition": installDir: DustyRevenge: {} launch: - /DustyRevengeCoOp.app: + "/DustyRevengeCoOp.app": - when: - os: mac store: steam - /DustyRevengeCoopSteam.exe: + "/DustyRevengeCoopSteam.exe": - when: - os: windows store: steam steam: id: 252430 -'Duty Calls: The Calm Before the Storm': +"Duty Calls: The Calm Before the Storm": files: - /UDKGame/config: + "/UDKGame/config": tags: - config when: - os: windows -'DvDrum, Ultimate Drum Simulator!': +"DvDrum, Ultimate Drum Simulator!": installDir: - 'DvDrum, Ultimate Drum Simulator!': {} + "DvDrum, Ultimate Drum Simulator!": {} launch: - /DvDrum.exe: + "/DvDrum.exe": - when: - os: windows store: steam @@ -166539,7 +167038,7 @@ Dwarf Defense: installDir: Dwarf Defense: {} launch: - /Dwarf Defense.exe: + "/Dwarf Defense.exe": - when: - os: windows store: steam @@ -166547,26 +167046,26 @@ Dwarf Defense: id: 857850 Dwarf Fortress: files: - /data/init: + "/data/init": tags: - config when: - os: windows - os: mac - os: linux - /data/save: + "/data/save": tags: - save when: - os: windows - os: mac - os: linux - /prefs: + "/prefs": tags: - config when: - store: steam - /save: + "/save": tags: - save when: @@ -166576,12 +167075,12 @@ Dwarf Fortress: installDir: Dwarf Fortress: {} launch: - /Dwarf Fortress.exe: + "/Dwarf Fortress.exe": - when: - bit: 64 os: windows store: steam - /dwarfort: + "/dwarfort": - when: - bit: 64 os: linux @@ -166593,12 +167092,12 @@ Dwarf Swordsman: id: 945300 Dwarf Tower: files: - /iosoftware/DwarfTower: + "/iosoftware/DwarfTower": tags: - config when: - os: windows - /iosoftware/DwarfTower/save: + "/iosoftware/DwarfTower/save": tags: - save when: @@ -166606,11 +167105,11 @@ Dwarf Tower: installDir: Dwarf Tower: {} launch: - /Dwarf Tower.app: + "/Dwarf Tower.app": - when: - os: mac store: steam - /DwarfTower.exe: + "/DwarfTower.exe": - when: - os: windows store: steam @@ -166620,24 +167119,27 @@ DwarfCorp: installDir: DwarfCorp: {} launch: - /DwarfCorp.app/Contents/MacOS/DwarfCorpFNA: + "/DwarfCorp.app/Contents/MacOS/DwarfCorpFNA": - when: - os: mac store: steam - /DwarfCorp.exe: + "/DwarfCorp.exe": - when: - os: windows store: steam - /DwarfCorp.sh: + "/DwarfCorp.sh": - when: - bit: 32 os: linux store: steam + - bit: 64 + os: linux + store: steam steam: id: 252390 DwarfHeim: files: - /Client/DwarfHeim_Data/saves: + "/Client/DwarfHeim_Data/saves": tags: - save when: @@ -166645,7 +167147,7 @@ DwarfHeim: installDir: DwarfHeim: {} launch: - /Client/DwarfHeim.exe: + "/Client/DwarfHeim.exe": - when: - os: windows store: steam @@ -166659,20 +167161,20 @@ Dwarflings: installDir: Dwarflings: {} launch: - /Dwarflings: + "/Dwarflings": - when: - os: linux store: steam - /Dwarflings.app: + "/Dwarflings.app": - when: - os: mac store: steam - /win32/Dwarflings.exe: + "/win32/Dwarflings.exe": - when: - bit: 32 os: windows store: steam - /win64/Dwarflings.exe: + "/win64/Dwarflings.exe": - when: - bit: 64 os: windows @@ -166681,7 +167183,7 @@ Dwarflings: id: 562330 Dwarfs!?: files: - /Save: + "/Save": tags: - save when: @@ -166690,15 +167192,15 @@ Dwarfs!?: installDir: Dwarfs: {} launch: - /Dwarfs: + "/Dwarfs": - when: - os: linux store: steam - /Dwarfs.exe: + "/Dwarfs.exe": - when: - os: windows store: steam - /DwarfsMac.app: + "/DwarfsMac.app": - when: - os: mac store: steam @@ -166706,22 +167208,22 @@ Dwarfs!?: id: 35480 Dwarrows: files: - /.config/Epic/Dwarrows/Saved/Config/LinuxNoEditor: + "/.config/Epic/Dwarrows/Saved/Config/LinuxNoEditor": tags: - config when: - os: linux - /.config/Epic/Dwarrows/Saved/SaveGames: + "/.config/Epic/Dwarrows/Saved/SaveGames": tags: - save when: - os: linux - /Dwarrows/Saved/Config/WindowsNoEditor: + "/Dwarrows/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /Dwarrows/Saved/SaveGames: + "/Dwarrows/Saved/SaveGames": tags: - save when: @@ -166731,12 +167233,12 @@ Dwarrows: installDir: Dwarrows: {} launch: - /Dwarrows.app: + "/Dwarrows.app": - when: - os: mac store: steam - /Dwarrows.exe: - - arguments: '-useallavailablecores' + "/Dwarrows.exe": + - arguments: "-useallavailablecores" when: - bit: 64 os: windows @@ -166747,7 +167249,7 @@ Dwarven Brawl Bros: installDir: Dwarven Brawl Bros: {} launch: - /Dwarven Brawl Bros.exe: + "/Dwarven Brawl Bros.exe": - when: - os: windows store: steam @@ -166764,11 +167266,11 @@ Dwarven Skykeep: installDir: Dwarven Skykeep: {} launch: - /DwarvenSkykeep.app: + "/DwarvenSkykeep.app": - when: - os: mac store: steam - /DwarvenSkykeep.exe: + "/DwarvenSkykeep.exe": - when: - os: windows store: steam @@ -166781,7 +167283,7 @@ Dwelvers: installDir: Dwelvers: {} launch: - /dwelvers.exe: + "/dwelvers.exe": - when: - os: windows store: steam @@ -166791,15 +167293,15 @@ Dwerve: installDir: Dwerve: {} launch: - /Dwerve.app/Contents/MacOS/Dwerve: + "/Dwerve.app/Contents/MacOS/Dwerve": - when: - os: mac store: steam - /Dwerve.exe: + "/Dwerve.exe": - when: - os: windows store: steam - /Dwerve.x86_64: + "/Dwerve.x86_64": - when: - bit: 64 os: linux @@ -166811,14 +167313,14 @@ Dwerve: - save steam: id: 1132760 -'Dwingle: B.O.T': +"Dwingle: B.O.T": installDir: Dwingle B.O.T: {} steam: id: 535650 Dyad: files: - /userdata//223450/remote: + "/userdata//223450/remote": tags: - save when: @@ -166828,7 +167330,7 @@ Dyad: installDir: Dyad: {} launch: - /Dyad.exe: + "/Dyad.exe": - when: - store: steam steam: @@ -166837,11 +167339,11 @@ Dyadic: installDir: Dyadic: {} launch: - /Dyadic.app: + "/Dyadic.app": - when: - os: mac store: steam - /Dyadic.exe: + "/Dyadic.exe": - when: - os: windows store: steam @@ -166851,11 +167353,11 @@ Dyana Moto: installDir: Dyana Moto: {} launch: - /dyanamotoWin32/DyanaMoto.exe: + "/dyanamotoWin32/DyanaMoto.exe": - when: - os: windows store: steam - /dyanamotolinux64/nw: + "/dyanamotolinux64/nw": - when: - os: linux store: steam @@ -166865,15 +167367,15 @@ Dye: installDir: DYE: {} launch: - /dyegame: + "/dyegame": - when: - os: linux store: steam - /dyegame.app: + "/dyegame.app": - when: - os: mac store: steam - /dyegame.exe: + "/dyegame.exe": - when: - os: windows store: steam @@ -166884,22 +167386,22 @@ Dying 1983: id: 1490830 Dying Light: files: - /DW/out/Settings: + "/DW/out/Settings": tags: - config when: - os: linux - /userdata//239140/remote/out: + "/userdata//239140/remote/out": tags: - save when: - store: steam - /DyingLight/out/save: + "/DyingLight/out/save": tags: - save when: - os: windows - /DyingLight/out/settings: + "/DyingLight/out/settings": tags: - config when: @@ -166908,29 +167410,29 @@ Dying Light: id: 1448452156 id: gogExtra: - - 1460996196 - 1460996021 + - 1460996196 - 1460996282 - 1539474600 - 1841289280 steamExtra: - - 335810 - 325723 + - 335810 - 347090 installDir: Dying Light: {} launch: - /DyingLightGame: + "/DyingLightGame": - when: - bit: 64 os: linux store: steam - /DyingLightGame.app: + "/DyingLightGame.app": - when: - bit: 64 os: mac store: steam - /DyingLightGame.exe: + "/DyingLightGame.exe": - when: - bit: 64 os: windows @@ -166939,13 +167441,13 @@ Dying Light: id: 239140 Dying Light 2 Stay Human: files: - /userdata//534380/remote/out/save: + "/userdata//534380/remote/out/save": tags: - save when: - os: windows store: steam - /Dying Light 2/out/settings: + "/Dying Light 2/out/settings": tags: - config when: @@ -166953,19 +167455,19 @@ Dying Light 2 Stay Human: installDir: Dying Light 2: {} launch: - /ph/work/bin/x64/DyingLightGame_x64_rwdi.exe: + "/ph/work/bin/x64/DyingLightGame_x64_rwdi.exe": - when: - bit: 64 os: windows store: steam - workingDir: /ph/work/bin/x64 + workingDir: "/ph/work/bin/x64" steam: id: 534380 -'Dying Light: Bad Blood': +"Dying Light: Bad Blood": installDir: Dying Light Bad Blood: {} launch: - /BadBloodGameLauncher.exe: + "/BadBloodGameLauncher.exe": - when: - bit: 64 os: windows @@ -166976,24 +167478,24 @@ Dying Star: installDir: The Dome Fight Back: {} launch: - /FightBack.exe: + "/FightBack.exe": - when: - os: windows store: steam steam: id: 556840 -'Dying: Reborn': +"Dying: Reborn": installDir: DyingReborn_steam: {} launch: - /DYING_Reborn.exe: + "/DYING_Reborn.exe": - when: - store: steam steam: id: 699700 Dyna Blaster: files: - /dyna.cfg: + "/dyna.cfg": tags: - config when: @@ -167002,12 +167504,12 @@ Dyna Bomb: installDir: Dyna Bomb: {} launch: - /Dyna Bomb.app/Contents/MacOS/Mac_Runner: + "/Dyna Bomb.app/Contents/MacOS/Mac_Runner": - when: - bit: 64 os: mac store: steam - /win32/DynaBomb-Steam-1.0.0.7.exe: + "/win32/DynaBomb-Steam-1.0.0.7.exe": - when: - os: windows store: steam @@ -167017,7 +167519,7 @@ Dynamic: installDir: Dynamic: {} launch: - /Dynamic.exe: + "/Dynamic.exe": - when: - os: windows store: steam @@ -167027,7 +167529,7 @@ Dynamite Alex: installDir: Dynamite Alex: {} launch: - /Dynamite Alex/Dynamite Alex.exe: + "/Dynamite Alex/Dynamite Alex.exe": - when: - os: windows store: steam @@ -167037,7 +167539,7 @@ Dynamite Bunny: installDir: Dynamite_Bunny: {} launch: - /Dynamite_Bunny.exe: + "/Dynamite_Bunny.exe": - when: - os: windows store: steam @@ -167045,22 +167547,22 @@ Dynamite Bunny: id: 836280 Dynamite Headdy: files: - /SEGA Genesis Classics/0049: + "/SEGA Genesis Classics/0049": tags: - save when: - os: windows - /SEGA Genesis Classics/setup.dat: + "/SEGA Genesis Classics/setup.dat": tags: - config when: - os: windows - /SEGA Mega Drive Classics/0049: + "/SEGA Mega Drive Classics/0049": tags: - save when: - os: windows - /SEGA Mega Drive Classics/setup.dat: + "/SEGA Mega Drive Classics/setup.dat": tags: - config when: @@ -167069,19 +167571,19 @@ Dynamite Headdy: id: 211201 Dynamite Jack: files: - /.dynamitejack: + "/.dynamitejack": tags: - config - save when: - os: linux - /Library/Application Support/Dynamite Jack: + "/Library/Application Support/Dynamite Jack": tags: - config - save when: - os: mac - /Dynamite Jack: + "/Dynamite Jack": tags: - config - save @@ -167090,19 +167592,19 @@ Dynamite Jack: installDir: Dynamite Jack: {} launch: - /Dynamite Jack.app: + "/Dynamite Jack.app": - when: - os: mac store: steam - /Dynamite Jack.exe: + "/Dynamite Jack.exe": - when: - os: windows store: steam - /bin/main: + "/bin/main": - when: - os: linux store: steam - workingDir: /bin + workingDir: "/bin" steam: id: 202730 DynamixVR - D.R.I.L.L.: @@ -167114,59 +167616,59 @@ Dynasty Feud: installDir: Dynasty Feud: {} launch: - /DynastyFeud.app: + "/DynastyFeud.app": - when: - bit: 64 os: mac store: steam - /DynastyFeud.exe: + "/DynastyFeud.exe": - when: - os: windows store: steam - /DynastyFeud.x86: + "/DynastyFeud.x86": - when: - bit: 32 os: linux store: steam - /DynastyFeud.x86_64: + "/DynastyFeud.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 493180 -'Dynasty Warriors 4: Hyper': +"Dynasty Warriors 4: Hyper": files: - /KOEI/Dynasty Warriors 4 Hyper/*.*: + "/KOEI/Dynasty Warriors 4 Hyper/*.*": tags: - config when: - os: windows - /KOEI/Dynasty Warriors 4 Hyper/Savedata/*.dat: + "/KOEI/Dynasty Warriors 4 Hyper/Savedata/*.dat": tags: - save when: - os: windows Dynasty Warriors 6: files: - /KOEI/Dynasty Warriors 6/Savedata/save.dat: + "/KOEI/Dynasty Warriors 6/Savedata/save.dat": tags: - save when: - os: windows - /KOEI/Dynasty Warriors 6/inputmap*.dat: + "/KOEI/Dynasty Warriors 6/inputmap*.dat": tags: - config when: - os: windows -'Dynasty Warriors 7: Xtreme Legends Definitive Edition': +"Dynasty Warriors 7: Xtreme Legends Definitive Edition": files: - /KoeiTecmo/Dynasty Warriors 7 DX/Savedata/save.dat: + "/KoeiTecmo/Dynasty Warriors 7 DX/Savedata/save.dat": tags: - save when: - os: windows - /KoeiTecmo/Dynasty Warriors 7 DX/inputmap*.dat: + "/KoeiTecmo/Dynasty Warriors 7 DX/inputmap*.dat": tags: - config when: @@ -167174,7 +167676,7 @@ Dynasty Warriors 6: installDir: Dynasty Warriors 7 DX: {} launch: - /Launch.exe: + "/Launch.exe": - when: - os: windows store: steam @@ -167184,14 +167686,14 @@ Dynasty Warriors 6: - config steam: id: 968790 -'Dynasty Warriors 8: Empires': +"Dynasty Warriors 8: Empires": files: - /KoeiTecmo/Dynasty Warriors 8 Empires/Savedata/*.dat: + "/KoeiTecmo/Dynasty Warriors 8 Empires/Savedata/*.dat": tags: - save when: - os: windows - /KoeiTecmo/Dynasty Warriors 8/inputmap*.dat: + "/KoeiTecmo/Dynasty Warriors 8/inputmap*.dat": tags: - config when: @@ -167224,11 +167726,11 @@ Dynasty Warriors 6: installDir: Dynasty Warriors 8 - Empires: {} launch: - /Config.exe: + "/Config.exe": - when: - os: windows store: steam - /Launch.exe: + "/Launch.exe": - when: - os: windows store: steam @@ -167238,14 +167740,14 @@ Dynasty Warriors 6: - config steam: id: 322520 -'Dynasty Warriors 8: Xtreme Legends': +"Dynasty Warriors 8: Xtreme Legends": files: - /TecmoKoei/Dynasty Warriors 8/Savedata/save.dat: + "/TecmoKoei/Dynasty Warriors 8/Savedata/save.dat": tags: - save when: - os: windows - /TecmoKoei/Dynasty Warriors 8/inputmap*.dat: + "/TecmoKoei/Dynasty Warriors 8/inputmap*.dat": tags: - config when: @@ -167277,11 +167779,11 @@ Dynasty Warriors 6: installDir: Dynasty Warriors 8: {} launch: - /Config.exe: + "/Config.exe": - when: - os: windows store: steam - /Launch.exe: + "/Launch.exe": - when: - os: windows store: steam @@ -167293,12 +167795,12 @@ Dynasty Warriors 6: id: 278080 Dynasty Warriors 9: files: - /KoeiTecmo/Dynasty Warriors 9 for Steam/*.*: + "/KoeiTecmo/Dynasty Warriors 9 for Steam/*.*": tags: - save when: - os: windows - /KoeiTecmo/Dynasty Warriors 9/SYSTEMDATA/sinpmap.dat: + "/KoeiTecmo/Dynasty Warriors 9/SYSTEMDATA/sinpmap.dat": tags: - config when: @@ -167482,7 +167984,7 @@ Dynasty Warriors 9: installDir: Dynasty Warriors 9: {} launch: - /DW9.exe: + "/DW9.exe": - when: - bit: 64 os: windows @@ -167493,14 +167995,14 @@ Dynasty Warriors 9: - config steam: id: 730310 -'Dynasty Warriors 9: Empires': +"Dynasty Warriors 9: Empires": files: - /KoeiTecmo/Dynasty Warriors 9 Empires/*.*: + "/KoeiTecmo/Dynasty Warriors 9 Empires/*.*": tags: - save when: - os: windows - /KoeiTecmo/Dynasty Warriors 9 Empires/SYSTEMDATA/sinpmap.dat: + "/KoeiTecmo/Dynasty Warriors 9 Empires/SYSTEMDATA/sinpmap.dat": tags: - config when: @@ -167533,7 +168035,7 @@ Dynasty Warriors 9: installDir: Dynasty Warriors 9 Empires: {} launch: - /DW9Emp.exe: + "/DW9Emp.exe": - when: - bit: 64 os: windows @@ -167553,11 +168055,11 @@ Dynetzzle Extended: installDir: Dynetzzle Extended: {} launch: - /Dynetzzle Extended.app/Contents/MacOS/Dynetzzle Extended: + "/Dynetzzle Extended.app/Contents/MacOS/Dynetzzle Extended": - when: - os: mac store: steam - /Dynetzzle Extended.exe: + "/Dynetzzle Extended.exe": - when: - os: windows store: steam @@ -167567,7 +168069,7 @@ Dyno Adventure: installDir: Dyno Adventure: {} launch: - /Dyno11.exe: + "/Dyno11.exe": - when: - os: windows store: steam @@ -167575,7 +168077,7 @@ Dyno Adventure: id: 525600 Dynomite!: files: - /SLOT*.SAV: + "/SLOT*.SAV": tags: - save when: @@ -167583,7 +168085,7 @@ Dynomite!: installDir: Dynomite Deluxe: {} launch: - /Dynomite.exe: + "/Dynomite.exe": - when: - store: steam steam: @@ -167592,7 +168094,7 @@ Dynopunk: installDir: Dynopunk: {} launch: - /DynoPunk.exe: + "/DynoPunk.exe": - when: - os: windows store: steam @@ -167602,11 +168104,11 @@ Dysan the Shapeshifter: installDir: DysanTheShapeshifter: {} launch: - /ds.app: + "/ds.app": - when: - os: mac store: steam - /ds.exe: + "/ds.exe": - when: - os: windows store: steam @@ -167614,12 +168116,12 @@ Dysan the Shapeshifter: id: 303410 Dyscourse: files: - /AppData/LocalLow/Owlchemy Labs/Dyscourse/DyscourseSettings.xml: + "/AppData/LocalLow/Owlchemy Labs/Dyscourse/DyscourseSettings.xml": tags: - config when: - os: windows - /AppData/LocalLow/Owlchemy Labs/Dyscourse/User/*.save: + "/AppData/LocalLow/Owlchemy Labs/Dyscourse/User/*.save": tags: - save when: @@ -167627,15 +168129,15 @@ Dyscourse: installDir: Dyscourse: {} launch: - /Dyscourse.app: + "/Dyscourse.app": - when: - os: mac store: steam - /Dyscourse.exe: + "/Dyscourse.exe": - when: - os: windows store: steam - /Dyscourse.x86: + "/Dyscourse.x86": - when: - os: linux store: steam @@ -167645,29 +168147,29 @@ Dyscourse: - config steam: id: 234920 -'Dysfunctional Systems: Learning to Manage Chaos': +"Dysfunctional Systems: Learning to Manage Chaos": files: - /.renpy/winter_ep1_patch2/*.save: + "/.renpy/winter_ep1_patch2/*.save": tags: - save when: - os: linux - /Library/RenPy/winter_ep1_patch2/*.save: + "/Library/RenPy/winter_ep1_patch2/*.save": tags: - save when: - os: mac - /Library/RenPy/winter_ep1_patch2/persistent: + "/Library/RenPy/winter_ep1_patch2/persistent": tags: - config when: - os: mac - /RenPy/winter_ep1_patch2/*.save: + "/RenPy/winter_ep1_patch2/*.save": tags: - save when: - os: windows - /RenPy/winter_ep1_patch2/persistent: + "/RenPy/winter_ep1_patch2/persistent": tags: - config when: @@ -167675,33 +168177,33 @@ Dyscourse: installDir: DysfunctionalSystemsEpisode1: {} launch: - /Dysfunctional Systems - Episode 1.app: + "/Dysfunctional Systems - Episode 1.app": - when: - os: mac store: steam - /Dysfunctional Systems - Episode 1.exe: + "/Dysfunctional Systems - Episode 1.exe": - when: - os: windows store: steam - /Dysfunctional Systems - Episode 1.sh: + "/Dysfunctional Systems - Episode 1.sh": - when: - os: linux store: steam steam: id: 248800 -'Dysfunctional Systems: Orientation': +"Dysfunctional Systems: Orientation": installDir: Dysfunctional Systems Orientation: {} launch: - /Dysfunctional Systems - Episode 0.app/Contents/MacOS/Dysfunctional Systems - Episode 0: + "/Dysfunctional Systems - Episode 0.app/Contents/MacOS/Dysfunctional Systems - Episode 0": - when: - os: mac store: steam - /Dysfunctional Systems - Episode 0.exe: + "/Dysfunctional Systems - Episode 0.exe": - when: - os: windows store: steam - /Dysfunctional Systems - Episode 0.sh: + "/Dysfunctional Systems - Episode 0.sh": - when: - os: linux store: steam @@ -167709,7 +168211,7 @@ Dyscourse: id: 337890 Dysmantle: files: - /10tons/DYSMANTLE/save: + "/10tons/DYSMANTLE/save": tags: - save when: @@ -167718,8 +168220,8 @@ Dysmantle: id: 2080674103 id: gogExtra: - - 1715984033 - 1636760249 + - 1715984033 - 1815564294 steamExtra: - 2004110 @@ -167728,11 +168230,11 @@ Dysmantle: installDir: DYSMANTLE: {} launch: - /DYSMANTLE.app: + "/DYSMANTLE.app": - when: - os: mac store: steam - /DYSMANTLE.exe: + "/DYSMANTLE.exe": - when: - os: windows store: steam @@ -167740,22 +168242,22 @@ Dysmantle: id: 846770 Dyson Sphere Program: files: - /Dyson Sphere Program: + "/Dyson Sphere Program": tags: - save when: - os: windows - /Dyson Sphere Program/options.dso (??? - 0.6.16.????): + "/Dyson Sphere Program/options.dso (??? - 0.6.16.????)": tags: - config when: - os: windows - /Dyson Sphere Program/options.dsv (??? and newer): + "/Dyson Sphere Program/options.dsv (??? and newer)": tags: - config when: - os: windows - /Dyson Sphere Program/options.xml (0.6.15.5651 and older): + "/Dyson Sphere Program/options.xml (0.6.15.5651 and older)": tags: - config when: @@ -167767,7 +168269,7 @@ Dyson Sphere Program: installDir: Dyson Sphere Program: {} launch: - /DSPGAME.exe: + "/DSPGAME.exe": - when: - bit: 64 os: windows @@ -167781,12 +168283,12 @@ Dystopia: installDir: Dystopia: {} launch: - /bin/dystopia.sh: + "/bin/dystopia.sh": - when: - os: linux store: steam - /bin/win32/dystopia.exe: - - arguments: '-steam' + "/bin/win32/dystopia.exe": + - arguments: "-steam" when: - os: windows store: steam @@ -167796,11 +168298,11 @@ Dystopia (2018): installDir: Dystopia: {} launch: - /Dystopia.app/Contents/MacOS/Dystopia: + "/Dystopia.app/Contents/MacOS/Dystopia": - when: - os: mac store: steam - /Dystopia.exe: + "/Dystopia.exe": - when: - os: windows store: steam @@ -167810,7 +168312,7 @@ Dystopian Drift: installDir: Dystopian Drift: {} launch: - /Dystopian Drift.exe: + "/Dystopian Drift.exe": - when: - os: windows store: steam @@ -167823,7 +168325,7 @@ Dystopy: installDir: Dystopy: {} launch: - /Dystopy.exe: + "/Dystopy.exe": - when: - os: windows store: steam @@ -167833,7 +168335,7 @@ Dystoria: installDir: DYSTORIA: {} launch: - /windows/Dystoria.exe: + "/windows/Dystoria.exe": - when: - bit: 32 os: windows @@ -167844,29 +168346,29 @@ Dämmerlicht: installDir: Dämmerlicht: {} launch: - /DammerLicht_Windows_V1.0.1.exe: + "/DammerLicht_Windows_V1.0.1.exe": - when: - os: windows store: steam - /Dammerlicht_Linux_V1.0.1.x86: + "/Dammerlicht_Linux_V1.0.1.x86": - when: - bit: 32 os: linux store: steam - /Dammerlicht_Linux_V1.0.1.x86_64: + "/Dammerlicht_Linux_V1.0.1.x86_64": - when: - bit: 64 os: linux store: steam - /Dammerlicht_OSX_V101.app: + "/Dammerlicht_OSX_V101.app": - when: - os: mac store: steam steam: id: 589410 -'Déjà Vu II: Lost in Las Vegas': +"Déjà Vu II: Lost in Las Vegas": files: - /zojoi: + "/zojoi": tags: - config - save @@ -167875,23 +168377,23 @@ Dämmerlicht: installDir: Deja Vu II MacVenture Series: {} launch: - /Deja Vu II.app: + "/Deja Vu II.app": - when: - os: mac store: steam - /dejavu2: + "/dejavu2": - when: - os: linux store: steam - /dejavu2.exe: + "/dejavu2.exe": - when: - os: windows store: steam steam: id: 343830 -'Déjà Vu: A Nightmare Comes True': +"Déjà Vu: A Nightmare Comes True": files: - /zojoi: + "/zojoi": tags: - config - save @@ -167900,15 +168402,15 @@ Dämmerlicht: installDir: Deja Vu MacVenture Series: {} launch: - /Deja Vu.app: + "/Deja Vu.app": - when: - os: mac store: steam - /dejavu: + "/dejavu": - when: - os: linux store: steam - /dejavu.exe: + "/dejavu.exe": - when: - os: windows store: steam @@ -167916,7 +168418,7 @@ Dämmerlicht: id: 343820 Désiré: files: - /.config/unity3d/Seccia/Adventure Game Engine Application: + "/.config/unity3d/Seccia/Adventure Game Engine Application": tags: - config when: @@ -167924,11 +168426,11 @@ Désiré: installDir: Desire: {} launch: - /Desire.app: + "/Desire.app": - when: - os: mac store: steam - /Desire.exe: + "/Desire.exe": - when: - bit: 64 os: windows @@ -167939,12 +168441,12 @@ E-Ball: installDir: E-Ball: {} launch: - /EBall.exe: + "/EBall.exe": - when: - bit: 64 os: windows store: steam - /EBall.sh: + "/EBall.sh": - when: - os: linux store: steam @@ -167954,7 +168456,7 @@ E-River Cabin Journal: installDir: e-River Cabin Journal: {} launch: - /e CabinTestGameFile.exe: + "/e CabinTestGameFile.exe": - when: - os: windows store: steam @@ -167964,7 +168466,7 @@ E-Sport Manager: installDir: E-Sport Manager: {} launch: - /eSportManager.exe: + "/eSportManager.exe": - when: - os: windows store: steam @@ -167974,7 +168476,7 @@ E-Startup: installDir: E-Startup: {} launch: - /EStartup.exe: + "/EStartup.exe": - when: - os: windows store: steam @@ -167984,7 +168486,7 @@ E.B.: installDir: EB: {} launch: - /EB.exe: + "/EB.exe": - when: - os: windows store: steam @@ -167994,20 +168496,20 @@ E.T. Armies: installDir: E.T. Armies: {} launch: - /ETArmiesLauncher.exe: + "/ETArmiesLauncher.exe": - when: - os: windows store: steam steam: id: 382420 -'E.Y.E: Divine Cybermancy': +"E.Y.E: Divine Cybermancy": files: - /EYE/cfg: + "/EYE/cfg": tags: - config when: - os: windows - /streumon/eye/Save: + "/streumon/eye/Save": tags: - save when: @@ -168017,7 +168519,7 @@ E.T. Armies: installDir: EYE: {} launch: - /EYE.exe: + "/EYE.exe": - when: - store: steam steam: @@ -168026,7 +168528,7 @@ E.Z: installDir: E.Z: {} launch: - /EZ.exe: + "/EZ.exe": - when: - os: windows store: steam @@ -168036,7 +168538,7 @@ E06-Anomaly: installDir: E06-Anomaly: {} launch: - /E06.exe: + "/E06.exe": - when: - bit: 64 os: windows @@ -168047,7 +168549,7 @@ E3.14CENTER: installDir: E3.14CENTER: {} launch: - /ePIcenter.exe: + "/ePIcenter.exe": - when: - os: windows store: steam @@ -168056,8 +168558,8 @@ E3.14CENTER: EA Sports FC 24: id: steamExtra: - - 2380512 - 2195260 + - 2380512 installDir: EA Sports FC 24: {} steam: @@ -168069,13 +168571,13 @@ EA Sports PGA Tour: id: 1677350 EA Sports WRC: files: - /userdata//1849250/remote: + "/userdata//1849250/remote": tags: - save when: - os: windows store: steam - /WRC/Saved/Config/WindowsNoEditor: + "/WRC/Saved/Config/WindowsNoEditor": tags: - config when: @@ -168086,7 +168588,7 @@ EAGLETALON vs. HORDE OF THE FLIES: installDir: EAGLETALON vs. HORDE OF THE FLIES: {} launch: - /tntvhotf.exe: + "/tntvhotf.exe": - when: - bit: 64 os: windows @@ -168097,7 +168599,7 @@ EARLY ACCESS CA$HGRAB: installDir: Project Polygun: {} launch: - /ProjectTDM.exe: + "/ProjectTDM.exe": - when: - os: windows store: steam @@ -168107,7 +168609,7 @@ EBOLA: installDir: EBOLA: {} launch: - /EBOLA.exe: + "/EBOLA.exe": - when: - bit: 64 os: windows @@ -168118,7 +168620,7 @@ EBOLA 2: installDir: EBOLA 2: {} launch: - /EBOLA 2.exe: + "/EBOLA 2.exe": - when: - bit: 64 os: windows @@ -168129,7 +168631,7 @@ EBOLA 3: installDir: EBOLA 3: {} launch: - /EBOLA 3.exe: + "/EBOLA 3.exe": - when: - bit: 64 os: windows @@ -168143,7 +168645,7 @@ EBONY: installDir: EBONY: {} launch: - /EBONY.exe: + "/EBONY.exe": - when: - bit: 64 os: windows @@ -168154,7 +168656,7 @@ EBall: installDir: eBall: {} launch: - /eBall.exe: + "/eBall.exe": - when: - os: windows store: steam @@ -168164,17 +168666,17 @@ ECCHI NEKO GIRLS PUZZLE: installDir: ECCHI NEKO GIRLS PUZZLE: {} launch: - /ECCHI NEKO GIRLS PUZZLE.exe: + "/ECCHI NEKO GIRLS PUZZLE.exe": - when: - os: windows store: steam steam: id: 1019630 -'ECHORIA: Ancient Echoes': +"ECHORIA: Ancient Echoes": installDir: ECHORIA Ancient Echoes: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -168184,12 +168686,12 @@ ECON: installDir: ECON - Elemental Connection: {} launch: - /ECON/ECON (Windows32)/nw.exe: + "/ECON/ECON (Windows32)/nw.exe": - when: - bit: 32 os: windows store: steam - /ECON/ECON (Windows64)/nw.exe: + "/ECON/ECON (Windows64)/nw.exe": - when: - bit: 64 os: windows @@ -168200,7 +168702,7 @@ ECheese Zone: installDir: eCheese Zone: {} launch: - /eCheese Zone Beta.exe: + "/eCheese Zone Beta.exe": - when: - os: windows store: steam @@ -168210,7 +168712,7 @@ ECrossminton: installDir: eCrossminton: {} launch: - /eCrossminton.exe: + "/eCrossminton.exe": - when: - os: windows store: steam @@ -168220,7 +168722,7 @@ ED-IT: installDir: ED-IT: {} launch: - /ED-IT.exe: + "/ED-IT.exe": - when: - os: windows store: steam @@ -168230,7 +168732,7 @@ EEP 12: installDir: EEP12: {} launch: - /EEP12.exe: + "/EEP12.exe": - when: - os: windows store: steam @@ -168240,7 +168742,7 @@ EEP 13: installDir: EEP13: {} launch: - /EEP13.exe: + "/EEP13.exe": - when: - os: windows store: steam @@ -168250,7 +168752,7 @@ EEP 15: installDir: EEP15: {} launch: - /EEP15.exe: + "/EEP15.exe": - when: - os: windows store: steam @@ -168260,7 +168762,7 @@ EEP 16 Expert: installDir: EEP16: {} launch: - /EEP16.exe: + "/EEP16.exe": - when: - os: windows store: steam @@ -168270,7 +168772,7 @@ EEP TSM Gotthardbahn Nordrampe Modul Erstfeld: installDir: EEP TSM Gotthard: {} launch: - /EEPTSMp.exe: + "/EEPTSMp.exe": - when: - os: windows store: steam @@ -168280,7 +168782,7 @@ EEP Train Simulator Mission: installDir: Eisenbahn Now: {} launch: - /EisenbahnNow.exe: + "/EisenbahnNow.exe": - when: - os: windows store: steam @@ -168290,17 +168792,17 @@ EEP eisenbahn.exe 14: installDir: EEP14: {} launch: - /EEP14.exe: + "/EEP14.exe": - when: - os: windows store: steam steam: id: 722190 -'EF Universe: Reclaiming the World': +"EF Universe: Reclaiming the World": installDir: EF Universe Reclaiming the World: {} launch: - /Reclaiming the World.exe: + "/Reclaiming the World.exe": - when: - bit: 64 os: windows @@ -168309,7 +168811,7 @@ EEP eisenbahn.exe 14: id: 985500 EFMB: files: - /EFMB/config.ini: + "/EFMB/config.ini": tags: - config when: @@ -168321,33 +168823,34 @@ EFMB: - os: windows EFootball 2024: files: - /KONAMI/eFootball/MS: + "/KONAMI/eFootball/MS": tags: - config when: - os: windows store: microsoft - /KONAMI/eFootball/ST: + "/KONAMI/eFootball/ST": tags: - config when: - - store: steam + - os: windows + store: steam installDir: eFootball: {} launch: - /eFootball/Binaries/Win64/eFootball.exe: + "/eFootball/Binaries/Win64/eFootball.exe": - when: - store: steam steam: id: 1665460 EFootball PES 2020: files: - /KONAMI/eFootball PES 2020: + "/KONAMI/eFootball PES 2020": tags: - config when: - os: windows - /KONAMI/eFootball PES 2020//save: + "/KONAMI/eFootball PES 2020//save": tags: - save when: @@ -168355,19 +168858,19 @@ EFootball PES 2020: installDir: eFootball PES 2020: {} launch: - /PES2020.exe: + "/PES2020.exe": - when: - store: steam steam: id: 996470 EFootball PES 2021 Season Update: files: - /KONAMI/eFootball PES 2021 SEASON UPDATE: + "/KONAMI/eFootball PES 2021 SEASON UPDATE": tags: - config when: - os: windows - /KONAMI/eFootball PES 2021 SEASON UPDATE//save: + "/KONAMI/eFootball PES 2021 SEASON UPDATE//save": tags: - save when: @@ -168375,7 +168878,7 @@ EFootball PES 2021 Season Update: installDir: eFootball PES 2021: {} launch: - /PES2021.exe: + "/PES2021.exe": - when: - store: steam steam: @@ -168392,7 +168895,7 @@ ELDR Legacy: installDir: MyGame: {} launch: - /nw.exe: + "/nw.exe": - when: - bit: 64 os: windows @@ -168401,12 +168904,12 @@ ELDR Legacy: id: 825480 ELEA: files: - /Project_Elea/Saved/Config/WindowsNoEditor: + "/Project_Elea/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /Project_Elea/Saved/SaveGames: + "/Project_Elea/Saved/SaveGames": tags: - save when: @@ -168414,7 +168917,7 @@ ELEA: installDir: ELEA: {} launch: - /Project_Elea.exe: + "/Project_Elea.exe": - when: - os: windows store: steam @@ -168424,7 +168927,7 @@ ELECTRONIC STOCK TRADING SYSTEM: installDir: Electronic Stock Trading System: {} launch: - /ESTS.EXE: + "/ESTS.EXE": - when: - os: windows store: steam @@ -168432,12 +168935,12 @@ ELECTRONIC STOCK TRADING SYSTEM: id: 895710 ELEX: files: - /Saved Games/ELEX: + "/Saved Games/ELEX": tags: - save when: - os: windows - /ELEX: + "/ELEX": tags: - config when: @@ -168450,7 +168953,7 @@ ELEX: installDir: ELEX: {} launch: - /system/ELEX.exe: + "/system/ELEX.exe": - when: - os: windows store: steam @@ -168458,12 +168961,12 @@ ELEX: id: 411300 ELEX II: files: - /Saved Games/ELEX2/SaveGames: + "/Saved Games/ELEX2/SaveGames": tags: - save when: - os: windows - /ELEX2: + "/ELEX2": tags: - config when: @@ -168473,22 +168976,22 @@ ELEX II: installDir: ELEX2: {} launch: - /system/ELEX2.exe: + "/system/ELEX2.exe": - when: - os: windows store: steam - workingDir: /system + workingDir: "/system" steam: id: 900040 ELON on MARS: installDir: ELON on MARS: {} launch: - /ELON on MARS.exe: + "/ELON on MARS.exe": - when: - os: windows store: steam - /ELON on MARS.x86_64: + "/ELON on MARS.x86_64": - when: - os: linux store: steam @@ -168498,20 +169001,20 @@ ELYSION: installDir: ELYSION: {} launch: - /ELYSION.exe: + "/ELYSION.exe": - when: - store: steam steam: id: 1070110 -'EM: Shader Attack': +"EM: Shader Attack": steam: id: 527490 -'EMMA: Lost in Memories': +"EMMA: Lost in Memories": installDir: EMMA Lost in Memories: {} launch: - /Lost in Memories.exe: - - arguments: '- full' + "/Lost in Memories.exe": + - arguments: "- full" when: - os: windows store: steam @@ -168521,7 +169024,7 @@ EMOTIONS: installDir: EMOTIONS: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -168531,7 +169034,7 @@ EMemories: installDir: eMemories: {} launch: - /eMemories.exe: + "/eMemories.exe": - when: - os: windows store: steam @@ -168541,7 +169044,7 @@ ENKI: installDir: Enki: {} launch: - /ENKI.exe: + "/ENKI.exe": - when: - os: windows store: steam @@ -168551,7 +169054,7 @@ ENYO Arcade: installDir: ENYO ARCADE: {} launch: - /ENYOArcade.exe: + "/ENYOArcade.exe": - when: - os: windows store: steam @@ -168561,7 +169064,7 @@ ENZBOTS: installDir: ENZBOTS: {} launch: - /ENZBOTS_update.exe: + "/ENZBOTS_update.exe": - when: - os: windows store: steam @@ -168571,7 +169074,7 @@ EPHEMERAL -FANTASY ON DARK-: installDir: EPHEMERAL -FANTASY ON DARK-: {} launch: - /config.exe: + "/config.exe": - when: - os: windows store: steam @@ -168581,7 +169084,7 @@ ERI: installDir: ERI: {} launch: - /ERI.exe: + "/ERI.exe": - when: - os: windows store: steam @@ -168591,8 +169094,9 @@ ERISLE: installDir: ERISLE: {} launch: - /GameMain1.exe: + "/GameMain1.exe": - when: + - store: steam - os: windows store: steam steam: @@ -168601,7 +169105,7 @@ ERR - 001: installDir: ERR - 001: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -168612,7 +169116,7 @@ ERTX 2080TI Mining clicker: id: 932180 ERacer: files: - /Saves: + "/Saves": tags: - save when: @@ -168620,11 +169124,11 @@ ERacer: ES Games: steam: id: 802560 -'ESCAPE FROM VOYNA: Dead Forest': +"ESCAPE FROM VOYNA: Dead Forest": installDir: Dead Forest: {} launch: - /EFV.exe: + "/EFV.exe": - when: - os: windows store: steam @@ -168632,12 +169136,12 @@ ES Games: id: 588140 ESCHATOS: files: - /Qute/Eschatos/config.ini: + "/Qute/Eschatos/config.ini": tags: - config when: - os: windows - /Qute/Eschatos/jss3.bin: + "/Qute/Eschatos/jss3.bin": tags: - config - save @@ -168645,12 +169149,12 @@ ESCHATOS: - os: windows id: steamExtra: - - 409480 - 396910 + - 409480 installDir: ESCHATOS: {} launch: - /ESCHATOS.exe: + "/ESCHATOS.exe": - when: - store: steam steam: @@ -168659,7 +169163,7 @@ ESKO: installDir: ESKO: {} launch: - /Interaction.exe: + "/Interaction.exe": - when: - bit: 64 os: windows @@ -168674,24 +169178,24 @@ ESPER: ESPORTS HERO: steam: id: 1046270 -'ESWAT: City under Siege': +"ESWAT: City under Siege": files: - /SEGA Genesis Classics/0028: + "/SEGA Genesis Classics/0028": tags: - save when: - os: windows - /SEGA Genesis Classics/setup.dat: + "/SEGA Genesis Classics/setup.dat": tags: - config when: - os: windows - /SEGA Mega Drive Classics/0028: + "/SEGA Mega Drive Classics/0028": tags: - save when: - os: windows - /SEGA Mega Drive Classics/setup.dat: + "/SEGA Mega Drive Classics/setup.dat": tags: - config when: @@ -168702,11 +169206,11 @@ ESail Sailing Simulator: installDir: eSail: {} launch: - /eSail.app: + "/eSail.app": - when: - os: mac store: steam - /eSail.exe: + "/eSail.exe": - when: - os: windows store: steam @@ -168714,7 +169218,7 @@ ESail Sailing Simulator: id: 794860 ESports Club: files: - /AppData/LocalLow/CraftsmanGames/ESports Club/GameSaveData: + "/AppData/LocalLow/CraftsmanGames/ESports Club/GameSaveData": tags: - save when: @@ -168722,11 +169226,11 @@ ESports Club: installDir: ESports Club: {} launch: - /Contents/MacOS/output_mac: + "/Contents/MacOS/output_mac": - when: - os: mac store: steam - /ESports Club.exe: + "/ESports Club.exe": - when: - os: windows store: steam @@ -168736,12 +169240,12 @@ ESports Life: installDir: Esports Life: {} launch: - /EsportsLife.app/Contents/MacOS/EsportsLife: + "/EsportsLife.app/Contents/MacOS/EsportsLife": - when: - os: mac store: steam - /EsportsLife.exe: - - arguments: '-force-gfx-direct -nolog' + "/EsportsLife.exe": + - arguments: "-force-gfx-direct -nolog" when: - os: windows store: steam @@ -168751,7 +169255,7 @@ ETERNAL BLOOD: installDir: ETERNAL BLOOD: {} launch: - /Eternal Blood.exe: + "/Eternal Blood.exe": - when: - os: windows store: steam @@ -168761,7 +169265,7 @@ EURGAVA - Fight for Haaria: installDir: Eurgava - Fight for Haaria: {} launch: - /Eurgava - Fight for Haaria.exe: + "/Eurgava - Fight for Haaria.exe": - when: - os: windows store: steam @@ -168771,7 +169275,7 @@ EURGAVA - Tomb of Senza: installDir: EURGAVA™ - Tomb of Senza: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -168781,11 +169285,11 @@ EV3 - Drag Racing: installDir: EV3 - Drag Racing: {} launch: - /EV3.app: + "/EV3.app": - when: - os: mac store: steam - /ev3.exe: + "/ev3.exe": - when: - os: windows store: steam @@ -168795,8 +169299,8 @@ EVE Aether Wars - Tech Demo: installDir: EVEAetherWars: {} launch: - /AbyssalHounds.exe: - - arguments: '-crashreports' + "/AbyssalHounds.exe": + - arguments: "-crashreports" when: - bit: 64 os: windows @@ -168805,7 +169309,7 @@ EVE Aether Wars - Tech Demo: id: 1165670 EVE Online: files: - /CCP/EVE/c_eve_sharedcache_tq_tranquility/settings_Default: + "/CCP/EVE/c_eve_sharedcache_tq_tranquility/settings_Default": tags: - config when: @@ -168813,58 +169317,58 @@ EVE Online: installDir: Eve Online: {} launch: - /EVE Online.app: + "/EVE Online.app": - when: - os: mac store: steam - /Launcher/evelauncher.exe: + "/Launcher/evelauncher.exe": - when: - os: windows store: steam steam: id: 8500 -'EVE: Gunjack': +"EVE: Gunjack": installDir: GUNJACK: {} steam: id: 410570 -'EVE: Valkyrie': +"EVE: Valkyrie": installDir: EVE Valkyrie: {} steam: id: 538870 -'EVE: Valkyrie - Warzone': +"EVE: Valkyrie - Warzone": installDir: EVE Valkyrie - Warzone: {} launch: - /WindowsNoEditor/VkGame/Binaries/Win64/EVE Valkyrie - Warzone.exe: - - arguments: '-steam -2d -tenant=live' + "/WindowsNoEditor/VkGame/Binaries/Win64/EVE Valkyrie - Warzone.exe": + - arguments: "-steam -2d -tenant=live" when: - store: steam - workingDir: /WindowsNoEditor/VkGame/Binaries/Win64 + workingDir: "/WindowsNoEditor/VkGame/Binaries/Win64" steam: id: 688480 EW/WE: installDir: EWWE: {} launch: - /EWWE.exe: + "/EWWE.exe": - when: - os: windows store: steam steam: id: 895470 -'EX0: Dark Moon': +"EX0: Dark Moon": installDir: EX0 Dark Moon: {} launch: - /ExoDarkMoon.exe: + "/ExoDarkMoon.exe": - when: - os: windows store: steam steam: id: 736180 -'EXA: The Infinite Instrument': +"EXA: The Infinite Instrument": installDir: EXA - The Infinite Instrument: {} steam: @@ -168873,45 +169377,45 @@ EXCHANGE: installDir: EXCHANGE: {} launch: - /EXCHANGE.exe: + "/EXCHANGE.exe": - when: - os: windows store: steam steam: id: 854400 -'EXE: Mainframe': +"EXE: Mainframe": installDir: EXE Mainframe: {} launch: - /EXE-GM-1.exe: + "/EXE-GM-1.exe": - when: - os: windows store: steam - /EXE-GM-Linux-1.x86_64: + "/EXE-GM-Linux-1.x86_64": - when: - os: linux store: steam steam: id: 822450 -'EXON: The Impossible Challenge': +"EXON: The Impossible Challenge": installDir: EXON The Impossible Challenge: {} launch: - /EXON.exe: + "/EXON.exe": - when: - bit: 64 os: windows store: steam steam: id: 683130 -'EXP: The Excellent Potato': +"EXP: The Excellent Potato": files: - /EXP.CFG: + "/EXP.CFG": tags: - config when: - os: dos - /GAMEDATA.*: + "/GAMEDATA.*": tags: - save when: @@ -168926,14 +169430,14 @@ EXZEAL: installDir: EXZEAL: {} launch: - /ExZeal.exe: + "/ExZeal.exe": - when: - store: steam steam: id: 465060 EXceed - Gun Bullet Children: files: - /doc.sv: + "/doc.sv": tags: - config - save @@ -168946,19 +169450,19 @@ EXceed - Gun Bullet Children: installDir: eXceed - Gun Bullet Children: {} launch: - /eXceed.exe: + "/eXceed.exe": - when: - store: steam steam: id: 207370 EXceed 2nd - Vampire REX: files: - /doc.sv: + "/doc.sv": tags: - config when: - os: windows - /sco.sv: + "/sco.sv": tags: - save when: @@ -168966,7 +169470,7 @@ EXceed 2nd - Vampire REX: installDir: eXceed 2nd - Vampire REX: {} launch: - /eXceed2nd-VR.exe: + "/eXceed2nd-VR.exe": - when: - store: steam steam: @@ -168975,7 +169479,7 @@ EXceed 3rd - Jade Penetrate Black Package: installDir: eXceed 3rd - Jade Penetrate Black Package: {} launch: - /eXceed3rd-BR.exe: + "/eXceed3rd-BR.exe": - when: - store: steam steam: @@ -168985,7 +169489,7 @@ EXpanSIM: id: 1015370 EXperience 112: files: - /the experiment: + "/the experiment": tags: - save when: @@ -168993,7 +169497,7 @@ EXperience 112: installDir: Experience112: {} launch: - /experience112.exe: + "/experience112.exe": - when: - os: windows store: steam @@ -169003,39 +169507,39 @@ EZ4u: installDir: EZ4u: {} launch: - /nw.exe: - - arguments: '--in-process-gpu' + "/nw.exe": + - arguments: "--in-process-gpu" when: - store: steam steam: id: 702550 -'EZRA: The Stranger': +"EZRA: The Stranger": installDir: EZRA: {} launch: - /EZRA.app: + "/EZRA.app": - when: - os: mac store: steam - /EZRA.exe: + "/EZRA.exe": - when: - os: windows store: steam - /EZRA.x86: + "/EZRA.x86": - when: - bit: 32 os: linux store: steam - /EZRA.x86_64: + "/EZRA.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 587010 -'Eador: Genesis': +"Eador: Genesis": files: - /save: + "/save": tags: - save when: @@ -169045,7 +169549,7 @@ EZ4u: installDir: Eador. Genesis: {} launch: - /Eador.exe: + "/Eador.exe": - when: - store: steam - arguments: f @@ -169053,21 +169557,21 @@ EZ4u: - store: steam steam: id: 235660 -'Eador: Imperium': +"Eador: Imperium": gog: id: 1675687984 installDir: Eador. Imperium: {} launch: - /launcher.exe: + "/launcher.exe": - when: - os: windows store: steam steam: id: 477730 -'Eador: Masters of the Broken World': +"Eador: Masters of the Broken World": files: - /Eador/profiles//saves: + "/Eador/profiles//saves": tags: - save when: @@ -169077,11 +169581,11 @@ EZ4u: installDir: Eador. Masters of the Broken World: {} launch: - /launcher.exe: + "/launcher.exe": - when: - os: windows store: steam - /runme.sh: + "/runme.sh": - arguments: config when: - os: linux @@ -169095,12 +169599,12 @@ Eagle Flight: id: 408250 Eagle Island: files: - /Eagle Island/Saves: + "/Eagle Island/Saves": tags: - save when: - os: windows - /Eagle Island/config.ini: + "/Eagle Island/config.ini": tags: - config when: @@ -169110,25 +169614,25 @@ Eagle Island: installDir: Eagle Island: {} launch: - /EagleIsland.exe: + "/EagleIsland.exe": - when: - os: windows store: steam - /EagleIslandMacLinux: + "/EagleIslandMacLinux": - when: - os: mac store: steam - when: - os: linux store: steam - workingDir: /MacLinux + workingDir: "/MacLinux" steam: id: 681110 Eared Hero: installDir: Eared Hero: {} launch: - /Eared Hero.exe: + "/Eared Hero.exe": - when: - os: windows store: steam @@ -169136,12 +169640,12 @@ Eared Hero: id: 715980 Earn to Die 2: files: - /app.icf: + "/app.icf": tags: - config when: - os: windows - /profile.dat: + "/profile.dat": tags: - save when: @@ -169149,11 +169653,11 @@ Earn to Die 2: installDir: Earn to Die 2: {} launch: - /EarnToDie_2: + "/EarnToDie_2": - when: - os: mac store: steam - /EarnToDie_2.exe: + "/EarnToDie_2.exe": - when: - os: windows store: steam @@ -169166,22 +169670,22 @@ Earth & Beyond: - config Earth 2140: files: - /SAVE: + "/SAVE": tags: - save when: - os: dos - /game.ini: + "/game.ini": tags: - config when: - os: dos - /Earth 2140/game.ini: + "/Earth 2140/game.ini": tags: - config when: - os: windows - /Earth 2140/save: + "/Earth 2140/save": tags: - save when: @@ -169191,24 +169695,24 @@ Earth 2140: installDir: Earth 2140: {} launch: - /Earth 2140.app/Contents/MacOS/Earth 2140: + "/Earth 2140.app/Contents/MacOS/Earth 2140": - when: - os: mac store: steam - /Earth2140.exe: + "/Earth2140.exe": - when: - os: windows store: steam - /classic/E2140.exe: + "/classic/E2140.exe": - when: - os: windows store: steam - workingDir: /classic + workingDir: "/classic" steam: id: 253860 Earth 2150: files: - /Players: + "/Players": tags: - config - save @@ -169220,54 +169724,54 @@ Earth 2150: gogExtra: - 1207658739 steamExtra: - - 259300 - 259280 + - 259300 installDir: Earth 2150 EftbP: {} launch: - /Earth 2150 Trilogy.app: + "/Earth 2150 Trilogy.app": - when: - os: mac store: steam - /Earth 2150 Trilogy.app/Setup.app: + "/Earth 2150 Trilogy.app/Setup.app": - when: - os: mac store: steam - /Earth2150.exe: + "/Earth2150.exe": - when: - os: windows store: steam - /RunGame: + "/RunGame": - when: - bit: 64 os: linux store: steam - /RunGame1: + "/RunGame1": - when: - bit: 64 os: linux store: steam - /RunGame2: + "/RunGame2": - when: - bit: 64 os: linux store: steam - /RunSetup: + "/RunSetup": - when: - bit: 64 os: linux store: steam - /RunSetup1: + "/RunSetup1": - when: - bit: 64 os: linux store: steam - /RunSetup2: + "/RunSetup2": - when: - bit: 64 os: linux store: steam - /Setup.exe: + "/Setup.exe": - when: - os: windows store: steam @@ -169285,7 +169789,7 @@ Earth 2150: id: 253880 Earth 2160: files: - /Earth 2160/Players: + "/Earth 2160/Players": tags: - save when: @@ -169295,23 +169799,23 @@ Earth 2160: installDir: Earth 2160: {} launch: - /Earth 2160.app: + "/Earth 2160.app": - when: - os: mac store: steam - /Earth2160Editor_START.exe: + "/Earth2160Editor_START.exe": - when: - os: windows store: steam - /Earth2160_START.exe: + "/Earth2160_START.exe": - when: - os: windows store: steam - - arguments: '-safemode' + - arguments: "-safemode" when: - os: windows store: steam - /RunGame: + "/RunGame": - when: - os: linux store: steam @@ -169325,7 +169829,7 @@ Earth Analog: installDir: Earth Analog: {} launch: - /EarthAnalog.exe: + "/EarthAnalog.exe": - when: - bit: 64 os: windows @@ -169336,15 +169840,15 @@ Earth Atlantis: installDir: Earth Atlantis: {} launch: - /earthatlantis.exe: + "/earthatlantis.exe": - when: - os: windows store: steam steam: id: 997030 -'Earth Defense Force 4.1: The Shadow of New Despair': +"Earth Defense Force 4.1: The Shadow of New Despair": files: - /My Games/EDF4.1/SAVE_DATA: + "/My Games/EDF4.1/SAVE_DATA": tags: - save when: @@ -169352,25 +169856,25 @@ Earth Atlantis: installDir: Earth Defense Force 4.1: {} launch: - /EDF41.exe: + "/EDF41.exe": - when: - bit: 64 os: windows store: steam steam: id: 410320 -'Earth Defense Force 4.1: Wingdiver the Shooter': +"Earth Defense Force 4.1: Wingdiver the Shooter": installDir: Earth Defense Force 4.1 Wingdiver The Mission: {} launch: - /WDTM.exe: + "/WDTM.exe": - when: - store: steam steam: id: 574200 Earth Defense Force 5: files: - /My Games/EDF5/SAVE_DATA: + "/My Games/EDF5/SAVE_DATA": tags: - config - save @@ -169379,16 +169883,16 @@ Earth Defense Force 5: installDir: EARTH DEFENSE FORCE 5: {} launch: - /EDF5.exe: + "/EDF5.exe": - when: - bit: 64 os: windows store: steam steam: id: 1007040 -'Earth Defense Force: Insect Armageddon': +"Earth Defense Force: Insect Armageddon": files: - /userdata//23530: + "/userdata//23530": tags: - save when: @@ -169397,19 +169901,19 @@ Earth Defense Force 5: installDir: Earth Defense Force Insect Armageddon: {} launch: - /EDF-IA.exe: + "/EDF-IA.exe": - when: - store: steam steam: id: 23530 -'Earth Defense Force: Iron Rain': +"Earth Defense Force: Iron Rain": files: - /My Games/EDFIR/SAVE_DATA: + "/My Games/EDFIR/SAVE_DATA": tags: - save when: - os: windows - /EDFIR/Saved/Config/WindowsNoEditor: + "/EDFIR/Saved/Config/WindowsNoEditor": tags: - config when: @@ -169417,21 +169921,21 @@ Earth Defense Force 5: installDir: paper: {} launch: - /EDFIR.exe: + "/EDFIR.exe": - when: - bit: 64 os: windows store: steam steam: id: 1039890 -'Earth Defense Force: World Brothers': +"Earth Defense Force: World Brothers": files: - /EDFWB/SaveData: + "/EDFWB/SaveData": tags: - save when: - os: windows - /EDFWB/Saved/Config/WindowsNoEditor: + "/EDFWB/Saved/Config/WindowsNoEditor": tags: - config when: @@ -169439,7 +169943,7 @@ Earth Defense Force 5: installDir: mikan: {} launch: - /EDFWB.exe: + "/EDFWB.exe": - when: - bit: 64 os: windows @@ -169453,11 +169957,11 @@ Earth Liberation: installDir: Earth Liberation: {} launch: - /EarthLiberation.app/Contents/MacOS/EarthLiberation: + "/EarthLiberation.app/Contents/MacOS/EarthLiberation": - when: - os: mac store: steam - /EarthLiberation.exe: + "/EarthLiberation.exe": - when: - os: windows store: steam @@ -169470,7 +169974,7 @@ Earth Muncher: installDir: Earth Muncher: {} launch: - /Earth Muncher.exe: + "/Earth Muncher.exe": - when: - os: windows store: steam @@ -169478,12 +169982,12 @@ Earth Muncher: id: 809460 Earth Overclocked: files: - /EarthOverclocked/eosave.sav: + "/EarthOverclocked/eosave.sav": tags: - save when: - os: windows - /EarthOverclocked/settings.ini: + "/EarthOverclocked/settings.ini": tags: - config when: @@ -169491,11 +169995,11 @@ Earth Overclocked: installDir: Earth Overclocked: {} launch: - /Earth Overclocked.app: + "/Earth Overclocked.app": - when: - os: mac store: steam - /EarthOverclocked.exe: + "/EarthOverclocked.exe": - when: - os: windows store: steam @@ -169505,29 +170009,29 @@ Earth Space Colonies: installDir: Earth Space Colonies: {} launch: - /ESC.exe: + "/ESC.exe": - when: - bit: 64 os: windows store: steam - /ESC.x86: - - arguments: '-force-opengl' + "/ESC.x86": + - arguments: "-force-opengl" when: - bit: 32 os: linux store: steam - /ESC.x86_64: - - arguments: '-force-opengl' + "/ESC.x86_64": + - arguments: "-force-opengl" when: - bit: 64 os: linux store: steam - /ESC_32.exe: + "/ESC_32.exe": - when: - bit: 32 os: windows store: steam - /EarthSpaceColonies.app/Contents/MacOS/ESC: + "/EarthSpaceColonies.app/Contents/MacOS/ESC": - when: - os: mac store: steam @@ -169537,35 +170041,35 @@ Earth Under Siege: installDir: Earth Under Siege: {} launch: - /eus.app: + "/eus.app": - when: - os: mac store: steam - /eus.exe: + "/eus.exe": - when: - os: windows store: steam steam: id: 324450 -'Earth: Year 2066': +"Earth: Year 2066": installDir: Earth Year 2066: {} launch: - /Earth Year 2066.app: + "/Earth Year 2066.app": - when: - os: mac store: steam - /Earth Year 2066.x86: + "/Earth Year 2066.x86": - when: - bit: 32 os: linux store: steam - /Earth Year 2066.x86_64: + "/Earth Year 2066.x86_64": - when: - bit: 64 os: linux store: steam - /Earth year 2066.exe: + "/Earth year 2066.exe": - when: - os: windows store: steam @@ -169573,7 +170077,7 @@ Earth Under Siege: id: 290750 EarthNight: files: - /Saves//EarthNight.sav: + "/Saves//EarthNight.sav": tags: - save when: @@ -169581,11 +170085,11 @@ EarthNight: installDir: EarthNight: {} launch: - /EarthNight.app/Contents/MacOS/EarthNight: + "/EarthNight.app/Contents/MacOS/EarthNight": - when: - os: mac store: steam - /EarthNight.exe: + "/EarthNight.exe": - when: - os: windows store: steam @@ -169597,12 +170101,12 @@ EarthNight: id: 777410 EarthX: files: - /EarthX/savedata: + "/EarthX/savedata": tags: - save when: - os: windows - /EarthX/settings.json: + "/EarthX/settings.json": tags: - config when: @@ -169611,22 +170115,22 @@ EarthX: id: 1307753333 id: gogExtra: - - 2034704599 - 1838314409 + - 2034704599 steamExtra: - 1260270 installDir: EarthX: {} launch: - /EarthX.app: + "/EarthX.app": - when: - os: mac store: steam - /EarthX.exe: + "/EarthX.exe": - when: - os: windows store: steam - /earthx.x86_64: + "/earthx.x86_64": - when: - os: linux store: steam @@ -169643,8 +170147,8 @@ Earthfall: installDir: Earthfall: {} launch: - /Earthfall.exe: - - arguments: '-NoVerifyGC' + "/Earthfall.exe": + - arguments: "-NoVerifyGC" when: - os: windows store: steam @@ -169654,11 +170158,11 @@ Earthlingo: installDir: Earthlingo: {} launch: - /Earthlingo.exe: + "/Earthlingo.exe": - when: - os: windows store: steam - /Earthlingo.x86_64: + "/Earthlingo.x86_64": - when: - os: linux store: steam @@ -169668,7 +170172,7 @@ Earthlings Must Die: installDir: Earthlings: {} launch: - /Earthlings.exe: + "/Earthlings.exe": - when: - os: windows store: steam @@ -169676,37 +170180,37 @@ Earthlings Must Die: id: 1162330 Earthlock: files: - /AppData/LocalLow/Snowcastle Games/Earthlock Enhanced Edition/Earthlock_Save_*.efom: + "/AppData/LocalLow/Snowcastle Games/Earthlock Enhanced Edition/Earthlock_Save_*.efom": tags: - save when: - os: windows - /AppData/LocalLow/Snowcastle Games/Earthlock Enhanced Edition/Earthlock_Settings.efomsettings: + "/AppData/LocalLow/Snowcastle Games/Earthlock Enhanced Edition/Earthlock_Settings.efomsettings": tags: - config when: - os: windows - /Library/Application Support/unity.Snowcastle Games.Earthlock/Earthlock_Save_*.efom: + "/Library/Application Support/unity.Snowcastle Games.Earthlock/Earthlock_Save_*.efom": tags: - save when: - os: mac - /Library/Application Support/unity.Snowcastle Games.Earthlock/Earthlock_Settings.efomsettings: + "/Library/Application Support/unity.Snowcastle Games.Earthlock/Earthlock_Settings.efomsettings": tags: - config when: - os: mac - /unity3d/Snowcastle Games/Earthlock Enhanced Edition/Earthlock_Save_*.efom: + "/unity3d/Snowcastle Games/Earthlock Enhanced Edition/Earthlock_Save_*.efom": tags: - save when: - os: linux - /unity3d/Snowcastle Games/Earthlock Enhanced Edition/Earthlock_Settings.efomsettings: + "/unity3d/Snowcastle Games/Earthlock Enhanced Edition/Earthlock_Settings.efomsettings": tags: - config when: - os: linux - /unity3d/Snowcastle Games/Earthlock Enhanced Edition/prefs: + "/unity3d/Snowcastle Games/Earthlock Enhanced Edition/prefs": tags: - config when: @@ -169716,28 +170220,28 @@ Earthlock: installDir: Earthlock Enhanced Edition: {} launch: - /Earthlock.app: + "/Earthlock.app": - when: - os: mac store: steam - /Earthlock.exe: + "/Earthlock.exe": - when: - os: windows store: steam - /Earthlock.x86: + "/Earthlock.x86": - when: - os: linux store: steam steam: id: 761030 -'Earthlock: Festival of Magic': +"Earthlock: Festival of Magic": files: - /AppData/LocalLow/Snowcastle Games/Earthlock: + "/AppData/LocalLow/Snowcastle Games/Earthlock": tags: - save when: - os: windows - /Steam//258030: + "/Steam//258030": tags: - config when: @@ -169747,15 +170251,15 @@ Earthlock: installDir: Earthlock: {} launch: - /Earthlock.app: + "/Earthlock.app": - when: - os: mac store: steam - /Earthlock.exe: + "/Earthlock.exe": - when: - os: windows store: steam - /Earthlock.x86: + "/Earthlock.x86": - when: - os: linux store: steam @@ -169771,12 +170275,12 @@ Earthshine: id: 1072440 Earthsiege 2: files: - /DATA/*.cfg: + "/DATA/*.cfg": tags: - config when: - os: windows - /SAV: + "/SAV": tags: - save when: @@ -169785,11 +170289,11 @@ Earthtongue: installDir: Earthtongue: {} launch: - /Earthtongue.app: + "/Earthtongue.app": - when: - os: mac store: steam - /Earthtongue.exe: + "/Earthtongue.exe": - when: - os: windows store: steam @@ -169806,18 +170310,18 @@ Earthworm Jim: installDir: Earthworm Jim: {} launch: - /DOSBox/dosbox.app/Contents/MacOS/DOSBox: - - arguments: '-conf \"./Earthworm Jim 1/ewj1.conf\"' + "/DOSBox/dosbox.app/Contents/MacOS/DOSBox": + - arguments: "-conf \\\"./Earthworm Jim 1/ewj1.conf\\\"" when: - os: mac store: steam - /Earthworm Jim 1/runme.exe: + "/Earthworm Jim 1/runme.exe": - when: - os: windows store: steam - workingDir: /Earthworm Jim 1 - /dosbox/dosbox: - - arguments: '-conf \"./Earthworm Jim 1/ewj1.conf\"' + workingDir: "/Earthworm Jim 1" + "/dosbox/dosbox": + - arguments: "-conf \\\"./Earthworm Jim 1/ewj1.conf\\\"" when: - os: linux store: steam @@ -169825,7 +170329,7 @@ Earthworm Jim: id: 38480 Earthworm Jim 2: files: - /EWJ2.PWD: + "/EWJ2.PWD": tags: - save when: @@ -169840,18 +170344,18 @@ Earthworm Jim 2: installDir: Earthworm Jim: {} launch: - /DOSBox/dosbox.app/Contents/MacOS/DOSBox: - - arguments: '-conf \"./Earthworm Jim 2/ewj2.conf\"' + "/DOSBox/dosbox.app/Contents/MacOS/DOSBox": + - arguments: "-conf \\\"./Earthworm Jim 2/ewj2.conf\\\"" when: - os: mac store: steam - /Earthworm Jim 2/runme.exe: + "/Earthworm Jim 2/runme.exe": - when: - os: windows store: steam - workingDir: /Earthworm Jim 2 - /dosbox/dosbox: - - arguments: '-conf \"./Earthworm Jim 2/ewj2.conf\"' + workingDir: "/Earthworm Jim 2" + "/dosbox/dosbox": + - arguments: "-conf \\\"./Earthworm Jim 2/ewj2.conf\\\"" when: - os: linux store: steam @@ -169859,7 +170363,7 @@ Earthworm Jim 2: id: 38490 Earthworm Jim 3D: files: - /GameSave.SAV: + "/GameSave.SAV": tags: - save when: @@ -169869,13 +170373,13 @@ Earthworm Jim 3D: installDir: Earthworm Jim: {} launch: - /Earthworm Jim 3D/EarthwormJim3D.exe: + "/Earthworm Jim 3D/EarthwormJim3D.exe": - when: - store: steam - workingDir: /Earthworm Jim 3D + workingDir: "/Earthworm Jim 3D" steam: id: 41600 -'Earthworm Jim: Special Edition': +"Earthworm Jim: Special Edition": registry: HKEY_LOCAL_MACHINE/SOFTWARE/WOW6432Node/Activision/Earthworm: tags: @@ -169885,7 +170389,7 @@ Earthworms: installDir: Earthworms: {} launch: - /Earthworms.exe: + "/Earthworms.exe": - when: - os: windows store: steam @@ -169893,9 +170397,9 @@ Earthworms: id: 320330 Earth’s Dawn: installDir: - Earth's Dawn: {} + "Earth's Dawn": {} launch: - /EarthsDawn.exe: + "/EarthsDawn.exe": - when: - os: windows store: steam @@ -169905,15 +170409,15 @@ East 73: installDir: East 73: {} launch: - /East73.exe: + "/East73.exe": - when: - os: windows store: steam - /lib/linux-x86_64/renpy: + "/lib/linux-x86_64/renpy": - when: - os: linux store: steam - /lib/mac-x86_64/renpy: + "/lib/mac-x86_64/renpy": - when: - os: mac store: steam @@ -169921,26 +170425,26 @@ East 73: id: 769550 East India Company: files: - /East India Company/Config: + "/East India Company/Config": tags: - config when: - os: windows - /East India Company/SaveGame: + "/East India Company/SaveGame": tags: - save when: - os: windows id: steamExtra: - - 254000 - - 42800 - 25940 + - 42800 - 42820 + - 254000 installDir: East India Company: {} launch: - /eastindia.exe: + "/eastindia.exe": - when: - store: steam steam: @@ -169949,11 +170453,11 @@ East Tower - Akio: installDir: East Tower - Akio: {} launch: - /East Tower - Akio.app: + "/East Tower - Akio.app": - when: - os: mac store: steam - /East Tower - Akio.exe: + "/East Tower - Akio.exe": - when: - os: windows store: steam @@ -169963,11 +170467,11 @@ East Tower - Kuon: installDir: East Tower - Kuon: {} launch: - /East Tower - Kuon.app: + "/East Tower - Kuon.app": - when: - os: mac store: steam - /East Tower - Kuon.exe: + "/East Tower - Kuon.exe": - when: - os: windows store: steam @@ -169977,11 +170481,11 @@ East Tower - Kurenai: installDir: East Tower - Kurenai: {} launch: - /East Tower - Kurenai.app: + "/East Tower - Kurenai.app": - when: - os: mac store: steam - /East Tower - Kurenai.exe: + "/East Tower - Kurenai.exe": - when: - os: windows store: steam @@ -169991,21 +170495,21 @@ East Tower - Takashi: installDir: East Tower - Takashi: {} launch: - /East Tower - Takashi.app: + "/East Tower - Takashi.app": - when: - os: mac store: steam - /East Tower - Takashi.exe: + "/East Tower - Takashi.exe": - when: - os: windows store: steam steam: id: 356540 -'Easter Clicker: Idle Manager': +"Easter Clicker: Idle Manager": installDir: Easter Clicker Idle Manager: {} launch: - /EasterClicker.exe: + "/EasterClicker.exe": - when: - os: windows store: steam @@ -170013,12 +170517,12 @@ East Tower - Takashi: id: 1081740 Easter Egg: files: - /EasterEggs/Saved/Config/WindowsNoEditor: + "/EasterEggs/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /EasterEggs/Saved/SaveGames: + "/EasterEggs/Saved/SaveGames": tags: - save when: @@ -170026,7 +170530,7 @@ Easter Egg: installDir: Easter Egg: {} launch: - /EasterEggs.exe: + "/EasterEggs.exe": - when: - store: steam steam: @@ -170035,7 +170539,7 @@ Easter!: installDir: Easter!: {} launch: - /Easter!.exe: + "/Easter!.exe": - when: - store: steam steam: @@ -170044,7 +170548,7 @@ Eastern Exorcist: installDir: Eastern Exorcist: {} launch: - /Exorcist.exe: + "/Exorcist.exe": - when: - os: windows store: steam @@ -170052,12 +170556,12 @@ Eastern Exorcist: id: 1120810 Eastshade: files: - /AppData/LocalLow/Eastshade Studios/Eastshade/*.BIN: + "/AppData/LocalLow/Eastshade Studios/Eastshade/*.BIN": tags: - save when: - os: windows - /AppData/LocalLow/Eastshade Studios/Eastshade/GraphicsSettings.txt: + "/AppData/LocalLow/Eastshade Studios/Eastshade/GraphicsSettings.txt": tags: - config when: @@ -170065,7 +170569,7 @@ Eastshade: installDir: Eastshade: {} launch: - /Eastshade.exe: + "/Eastshade.exe": - when: - bit: 64 os: windows @@ -170078,7 +170582,7 @@ Eastshade: id: 715560 Eastside Hockey Manager: files: - /Sports Interactive/EHM: + "/Sports Interactive/EHM": tags: - save when: @@ -170086,7 +170590,7 @@ Eastside Hockey Manager: installDir: Eastside Hockey Manager: {} launch: - /ehm.exe: + "/ehm.exe": - when: - os: windows store: steam @@ -170094,37 +170598,38 @@ Eastside Hockey Manager: id: 301120 Eastward: files: - /Pixpil/Eastward/SaveData: + "/Pixpil/Eastward/SaveData": tags: - save when: - os: windows - /Pixpil/Eastward/game_settings: + "/Pixpil/Eastward/game_settings": tags: - config when: - os: windows - /Pixpil/Eastward/steam_/SaveData: + "/Pixpil/Eastward/steam_/SaveData": tags: - save when: - - store: steam + - os: windows + store: steam gog: id: 1116987509 installDir: Eastward: {} launch: - /Eastward.app/Contents/MacOS/eastward: + "/Eastward.app/Contents/MacOS/eastward": - when: - os: mac store: steam - /Eastward.exe: - - arguments: '--gfx dx10' + "/Eastward.exe": + - arguments: "--gfx dx10" when: - bit: 64 os: windows store: steam - - arguments: '--gfx gl' + - arguments: "--gfx gl" when: - bit: 64 os: windows @@ -170140,7 +170645,7 @@ Easy Hentai: installDir: Easy Hentai: {} launch: - /EasyHentai.exe: + "/EasyHentai.exe": - when: - store: steam steam: @@ -170149,13 +170654,13 @@ Easy Magic: installDir: Easy Magic: {} launch: - /EasyMagic.exe: + "/EasyMagic.exe": - when: - os: windows store: steam steam: id: 599800 -'Easy Puzzle: Animals': +"Easy Puzzle: Animals": installDir: Easy puzzle Animals: {} steam: @@ -170164,7 +170669,7 @@ Easy Racing: installDir: Easy Racing: {} launch: - /Easy Racing.exe: + "/Easy Racing.exe": - when: - os: windows store: steam @@ -170174,15 +170679,15 @@ Easy Red: installDir: Easy Red: {} launch: - /EasyRed/EasyRed.exe: + "/EasyRed/EasyRed.exe": - when: - os: windows store: steam - /EasyRedLinux/EasyRed.x86: + "/EasyRedLinux/EasyRed.x86": - when: - os: linux store: steam - /EasyRedMAC/EasyRedMAC.app/Contents/MacOS/EasyRedMAC: + "/EasyRedMAC/EasyRedMAC.app/Contents/MacOS/EasyRedMAC": - when: - os: mac store: steam @@ -170192,7 +170697,7 @@ Easy Shooter: installDir: Action Entities: {} launch: - /Action Entities.exe: + "/Action Entities.exe": - arguments: ㅤ when: - bit: 64 @@ -170209,7 +170714,7 @@ EasyPianoGame: installDir: EasyPianoGame: {} launch: - /EasyPianoGame.exe: + "/EasyPianoGame.exe": - when: - os: windows store: steam @@ -170219,20 +170724,20 @@ Eat All the Things: installDir: Eat All The Things: {} launch: - /Eat All The Things.app: + "/Eat All The Things.app": - when: - os: mac store: steam - /Eat All The Things.exe: + "/Eat All The Things.exe": - when: - os: windows store: steam - /Eat All The Things.x86: + "/Eat All The Things.x86": - when: - bit: 32 os: linux store: steam - /Eat All The Things.x86_64: + "/Eat All The Things.x86_64": - when: - bit: 64 os: linux @@ -170245,7 +170750,7 @@ Eat All the Things: id: 730290 Eat My Dust: files: - /SIERRA.INF: + "/SIERRA.INF": tags: - config when: @@ -170254,7 +170759,7 @@ Eat Your Words: installDir: Eat Your Words: {} launch: - /Eat Your Words.exe: + "/Eat Your Words.exe": - when: - os: windows store: steam @@ -170264,7 +170769,7 @@ Eat my Shuriken and Die!: installDir: Eat my Shuriken and Die!: {} launch: - /EatMyShuriken.exe: + "/EatMyShuriken.exe": - when: - os: windows store: steam @@ -170275,11 +170780,11 @@ Eat this!: Eat this!: {} steam: id: 1093220 -'Eat, Sleep, Bet, Repeat': +"Eat, Sleep, Bet, Repeat": installDir: esbr: {} launch: - /esbr.exe: + "/esbr.exe": - when: - os: windows store: steam @@ -170289,7 +170794,7 @@ EatWell: installDir: EatWell: {} launch: - /EatWell.exe: + "/EatWell.exe": - when: - os: windows store: steam @@ -170297,12 +170802,12 @@ EatWell: id: 678870 Eaten Alive: files: - /Game.ini: + "/Game.ini": tags: - config when: - os: windows - /System/Options.dt: + "/System/Options.dt": tags: - config when: @@ -170310,24 +170815,24 @@ Eaten Alive: installDir: Eaten Alive: {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: id: 403560 -'Ebony Spire: Heresy': +"Ebony Spire: Heresy": installDir: Ebony Spire Heresy: {} launch: - /EbonySpireHeresy.app: + "/EbonySpireHeresy.app": - when: - os: mac store: steam - /EbonySpire_release.exe: + "/EbonySpire_release.exe": - when: - os: windows store: steam - /moai: + "/moai": - when: - bit: 64 os: linux @@ -170339,19 +170844,19 @@ Ebullition LBVR: Ebullition LBVR: {} steam: id: 1127010 -'Ecchi 2: compile 2D chan': +"Ecchi 2: compile 2D chan": installDir: Ecchi 2 compile 2D chan: {} launch: - /Ecchi 2.app: + "/Ecchi 2.app": - when: - os: mac store: steam - /Ecchi 2.exe: + "/Ecchi 2.exe": - when: - os: windows store: steam - /Ecchi 2.sh: + "/Ecchi 2.sh": - when: - os: linux store: steam @@ -170361,15 +170866,15 @@ Ecchi Cards: installDir: Ecchi Cards: {} launch: - /EcchiCards.app/Contents/MacOS/EcchiCards: + "/EcchiCards.app/Contents/MacOS/EcchiCards": - when: - os: mac store: steam - /EcchiCards.exe: + "/EcchiCards.exe": - when: - os: windows store: steam - /EcchiCards.x86: + "/EcchiCards.x86": - when: - os: linux store: steam @@ -170385,30 +170890,32 @@ Ecchi Puzzle: installDir: Ecchi Puzzle: {} launch: - /EcchiPuzzle.app/Contents/MacOS/EcchiPuzzle: + "/EcchiPuzzle.app/Contents/MacOS/EcchiPuzzle": - when: - os: mac store: steam - /EcchiPuzzle.exe: + "/EcchiPuzzle.exe": - when: - os: windows store: steam - /EcchiPuzzle.x86: + "/EcchiPuzzle.x86": - when: - os: linux store: steam steam: id: 890710 -'Ecchi Sketch: Draw Cute Girls Every Day!': +"Ecchi Sketch: Draw Cute Girls Every Day!": installDir: Ecchi Sketch Draw Cute Girls Every Day!: {} launch: - /Ecchi_Sketch.exe: + "/Ecchi_Sketch.exe": - when: - os: windows store: steam - /Ecchi_Sketch.sh: + "/Ecchi_Sketch.sh": - when: + - os: mac + store: steam - os: linux store: steam steam: @@ -170418,22 +170925,22 @@ Ecchi Sky: id: 1078090 Ecco Jr.: files: - /SEGA Genesis Classics/0015: + "/SEGA Genesis Classics/0015": tags: - save when: - os: windows - /SEGA Genesis Classics/setup.dat: + "/SEGA Genesis Classics/setup.dat": tags: - config when: - os: windows - /SEGA Mega Drive Classics/0015: + "/SEGA Mega Drive Classics/0015": tags: - save when: - os: windows - /SEGA Mega Drive Classics/setup.dat: + "/SEGA Mega Drive Classics/setup.dat": tags: - config when: @@ -170442,53 +170949,53 @@ Ecco Jr.: id: 34287 Ecco the Dolphin: files: - /dol32nt.stg: + "/dol32nt.stg": tags: - save when: - os: windows Ecco the Dolphin (2010): files: - /SEGA Genesis Classics/0003: + "/SEGA Genesis Classics/0003": tags: - save when: - os: windows - /SEGA Genesis Classics/setup.dat: + "/SEGA Genesis Classics/setup.dat": tags: - config when: - os: windows - /SEGA Mega Drive Classics/0003: + "/SEGA Mega Drive Classics/0003": tags: - save when: - os: windows - /SEGA Mega Drive Classics/setup.dat: + "/SEGA Mega Drive Classics/setup.dat": tags: - config when: - os: windows steam: id: 34274 -'Ecco: The Tides of Time': +"Ecco: The Tides of Time": files: - /SEGA Genesis Classics/0027: + "/SEGA Genesis Classics/0027": tags: - save when: - os: windows - /SEGA Genesis Classics/setup.dat: + "/SEGA Genesis Classics/setup.dat": tags: - config when: - os: windows - /SEGA Mega Drive Classics/0027: + "/SEGA Mega Drive Classics/0027": tags: - save when: - os: windows - /SEGA Mega Drive Classics/setup.dat: + "/SEGA Mega Drive Classics/setup.dat": tags: - config when: @@ -170497,12 +171004,12 @@ Ecco the Dolphin (2010): id: 34319 Echelon: files: - /DISK2/G*.BIN: + "/DISK2/G*.BIN": tags: - save when: - os: dos - 'A:/G*.BIN': + "A:/G*.BIN": tags: - save when: @@ -170511,12 +171018,12 @@ Echelon: id: 1660643617 Echelon (2001): files: - /Data/Configs.cfg: + "/Data/Configs.cfg": tags: - config when: - os: windows - /Saved Games: + "/Saved Games": tags: - save when: @@ -170524,16 +171031,16 @@ Echelon (2001): installDir: Echelon: {} launch: - /GameLauncher.bat: + "/GameLauncher.bat": - when: - store: steam steam: id: 311080 -'Echelon: Wind Warriors': +"Echelon: Wind Warriors": installDir: Echelon Wind Warriors: {} launch: - /GameLauncher.bat: + "/GameLauncher.bat": - when: - os: windows store: steam @@ -170545,17 +171052,17 @@ Echelon (2001): id: 311100 Echo: files: - /Echo/Saved/Config: + "/Echo/Saved/Config": tags: - config when: - os: windows - /Echo/Saved/Config/WindowsNoEditor: + "/Echo/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /Echo/Saved/SaveGames: + "/Echo/Saved/SaveGames": tags: - save when: @@ -170565,7 +171072,7 @@ Echo: installDir: ECHO: {} launch: - /Echo.exe: + "/Echo.exe": - when: - os: windows store: steam @@ -170575,11 +171082,11 @@ Echo (Nobody Studio): installDir: Echo: {} launch: - /Echo.exe: + "/Echo.exe": - when: - os: windows store: steam - /Readme.htm: + "/Readme.htm": - when: - store: steam steam: @@ -170596,7 +171103,7 @@ Echo Lake: installDir: Echo Lake: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -170606,7 +171113,7 @@ Echo Nine: installDir: EchoNine: {} launch: - /EchoNine.exe: + "/EchoNine.exe": - when: - os: windows store: steam @@ -170616,8 +171123,8 @@ Echo Prime: installDir: Echo Prime: {} launch: - /Echo Prime.exe: - - arguments: '-test' + "/Echo Prime.exe": + - arguments: "-test" when: - os: windows store: steam @@ -170627,29 +171134,29 @@ Echo Royale: installDir: Echo Royale: {} launch: - /Echo Royale.app/Contents/MacOS/Echo Royale: + "/Echo Royale.app/Contents/MacOS/Echo Royale": - when: - os: mac store: steam - /Echo Royale.exe: + "/Echo Royale.exe": - when: - os: windows store: steam steam: id: 1052370 -'Echo Tokyo: Intro': +"Echo Tokyo: Intro": files: - /game/saves: + "/game/saves": tags: - save when: - os: windows - /renpy/config.py: + "/renpy/config.py": tags: - config when: - os: windows - /renpy/Echo Tokyo Intro Save1: + "/renpy/Echo Tokyo Intro Save1": tags: - save when: @@ -170657,46 +171164,46 @@ Echo Royale: installDir: Echo Tokyo Intro: {} launch: - /Echo Tokyo Intro.app: + "/Echo Tokyo Intro.app": - when: - os: mac store: steam - /Echo Tokyo Intro.exe: + "/Echo Tokyo Intro.exe": - when: - os: windows store: steam - /Echo Tokyo Intro.sh: + "/Echo Tokyo Intro.sh": - when: - os: linux store: steam steam: id: 345700 -'Echo Tokyo: Phoenix': +"Echo Tokyo: Phoenix": installDir: Echo Tokyo Phoenix: {} launch: - /ET Phoenix.app: + "/ET Phoenix.app": - when: - os: mac store: steam - /ET Phoenix.exe: + "/ET Phoenix.exe": - when: - os: windows store: steam - /ET Phoenix.sh: + "/ET Phoenix.sh": - when: - os: linux store: steam steam: id: 432110 -'Echo Tokyo: Reaper': +"Echo Tokyo: Reaper": steam: id: 506640 Echo of Combats: installDir: Echo of Combats: {} launch: - /Echo of Combats.exe: + "/Echo of Combats.exe": - when: - os: windows store: steam @@ -170706,8 +171213,8 @@ Echo of Soul: installDir: EchoOfSoul: {} launch: - /EOSLauncher.exe: - - arguments: '-steam' + "/EOSLauncher.exe": + - arguments: "-steam" when: - store: steam steam: @@ -170716,7 +171223,7 @@ Echo of the Wilds: installDir: Echo of the Wilds: {} launch: - /Echo of the Wilds.exe: + "/Echo of the Wilds.exe": - when: - os: windows store: steam @@ -170724,12 +171231,12 @@ Echo of the Wilds: id: 305780 Echoed World: files: - /Saves: + "/Saves": tags: - save when: - os: windows - /Saves/settings.xml: + "/Saves/settings.xml": tags: - config when: @@ -170737,7 +171244,7 @@ Echoed World: installDir: Echoed World: {} launch: - /EchoedWorld.exe: + "/EchoedWorld.exe": - when: - os: windows store: steam @@ -170747,7 +171254,7 @@ Echoes III: installDir: Echoes III: {} launch: - /e3.exe: + "/e3.exe": - when: - store: steam steam: @@ -170756,8 +171263,8 @@ Echoes World: installDir: Echoes World: {} launch: - /SteamWin.exe: - - arguments: '-windowed' + "/SteamWin.exe": + - arguments: "-windowed" when: - os: windows store: steam @@ -170770,7 +171277,7 @@ Echoes in White: id: 891320 Echoes of Aetheria: files: - /Echoes of Aetheria: + "/Echoes of Aetheria": tags: - config - save @@ -170779,99 +171286,99 @@ Echoes of Aetheria: installDir: Echoes Of Aetheria: {} launch: - /EchoesOfAetheria.app/Contents/MacOS/steamshim_parent: + "/EchoesOfAetheria.app/Contents/MacOS/steamshim_parent": - arguments: EchoesOfAetheria.app/Contents/MacOS/mkxp when: - os: mac store: steam - /game.exe: + "/game.exe": - when: - os: windows store: steam - /steamshim/parent.amd64: - - arguments: ./EchoesOfAetheria.amd64 + "/steamshim/parent.amd64": + - arguments: "./EchoesOfAetheria.amd64" when: - bit: 64 os: linux store: steam - /steamshim/parent.x86: - - arguments: ./EchoesOfAetheria.x86 + "/steamshim/parent.x86": + - arguments: "./EchoesOfAetheria.x86" when: - bit: 32 os: linux store: steam steam: id: 354740 -'Echoes of War: The Last Heartbeat': +"Echoes of War: The Last Heartbeat": installDir: Echoes of War The Last Heartbeat: {} steam: id: 786710 -'Echoes of the Fey Episode 0: The Immolation': +"Echoes of the Fey Episode 0: The Immolation": installDir: Echoes of the Fey Episode 0 The Immolation: {} launch: - /EotF_Episode0.exe: + "/EotF_Episode0.exe": - when: - bit: 64 os: windows store: steam steam: id: 585990 -'Echoes of the Fey: The Fox''s Trail': +"Echoes of the Fey: The Fox's Trail": installDir: - Echoes of the Fey - The Fox's Trail: {} + "Echoes of the Fey - The Fox's Trail": {} launch: - /data/Echoes of the Fey - The Fox's Trail.exe: + "/data/Echoes of the Fey - The Fox's Trail.exe": - when: - os: windows store: steam steam: id: 511320 -'Echoes of the Fey: The Last Sacrament': +"Echoes of the Fey: The Last Sacrament": installDir: Echoes of the Fey The Last Sacrament: {} launch: - /EotF2_TheLastSacrament/EotF_Sacrament.exe: + "/EotF2_TheLastSacrament/EotF_Sacrament.exe": - when: - bit: 64 os: windows store: steam steam: id: 858830 -'Echoes of the Past: The Citadels of Time': +"Echoes of the Past: The Citadels of Time": installDir: - Echoes of the Past The Citadels of Time Collector's Edition: {} + "Echoes of the Past The Citadels of Time Collector's Edition": {} launch: - /EchoesofthePast_TheCitadelsofTime.exe: + "/EchoesofthePast_TheCitadelsofTime.exe": - when: - os: windows store: steam steam: id: 995890 -'Echoes of the Past: The Kingdom of Despair': +"Echoes of the Past: The Kingdom of Despair": installDir: - Echoes of the Past Kingdom of Despair Collector's Edition: {} + "Echoes of the Past Kingdom of Despair Collector's Edition": {} launch: - /EchoesOfThePast_TheKingdomOfDespair_CE.exe: + "/EchoesOfThePast_TheKingdomOfDespair_CE.exe": - when: - store: steam steam: id: 503080 -'Echoes of the Past: The Revenge of the Witch': +"Echoes of the Past: The Revenge of the Witch": installDir: - Echoes of the Past The Revenge of the Witch Collector's Edition: {} + "Echoes of the Past The Revenge of the Witch Collector's Edition": {} launch: - /EchoesOfThePast_TheRevengeOfTheWitch_CE.exe: + "/EchoesOfThePast_TheRevengeOfTheWitch_CE.exe": - when: - store: steam steam: id: 465920 -'Echoes of the Past: Wolf Healer': +"Echoes of the Past: Wolf Healer": installDir: Echoes of the Past Wolf Healer: {} launch: - /EchoesOfThePast_WolfHealer_CE.exe: + "/EchoesOfThePast_WolfHealer_CE.exe": - when: - os: windows store: steam @@ -170881,11 +171388,11 @@ Echoes+: installDir: Echoes+: {} launch: - /echoes+.exe: + "/echoes+.exe": - when: - os: windows store: steam - /echoes_plus.app/Contents/MacOS/Echoes+: + "/echoes_plus.app/Contents/MacOS/Echoes+": - when: - os: mac store: steam @@ -170893,7 +171400,7 @@ Echoes+: id: 338000 Echoplex: files: - /AppData/LocalLow/Output Games/Echoplex: + "/AppData/LocalLow/Output Games/Echoplex": tags: - config - save @@ -170902,12 +171409,12 @@ Echoplex: installDir: ECHOPLEX: {} launch: - /Echoplex.app: + "/Echoplex.app": - when: - bit: 64 os: mac store: steam - /Echoplex.exe: + "/Echoplex.exe": - when: - bit: 64 os: windows @@ -170922,7 +171429,7 @@ Ecio: installDir: Ecio: {} launch: - /Ecio/nw.exe: + "/Ecio/nw.exe": - when: - os: windows store: steam @@ -170934,35 +171441,35 @@ Eclipse: installDir: Eclipse: {} launch: - /Eclipse.exe: + "/Eclipse.exe": - when: - os: windows store: steam steam: id: 1464380 -'Eclipse: Defending the Motherland': +"Eclipse: Defending the Motherland": installDir: Eclipse --- Defending the motherland: {} steam: id: 470130 -'Eclipse: Edge of Light': +"Eclipse: Edge of Light": installDir: Eclipse Edge Of Light: {} launch: - /Flat/EclipseEdgeOfLightFlat.exe: + "/Flat/EclipseEdgeOfLightFlat.exe": - when: - store: steam steam: id: 406710 -'Eclipse: New Dawn for the Galaxy': +"Eclipse: New Dawn for the Galaxy": installDir: EclipseNDftG: {} launch: - /Eclipse.app/Contents/MacOS/Eclipse: + "/Eclipse.app/Contents/MacOS/Eclipse": - when: - os: mac store: steam - /Eclipse.exe: + "/Eclipse.exe": - when: - os: windows store: steam @@ -170975,17 +171482,17 @@ Eclipsed: id: 439740 Eco: files: - /Eco_Data/Server/Configs: + "/Eco_Data/Server/Configs": tags: - save when: - os: windows - /Eco_Data/Server/Storage: + "/Eco_Data/Server/Storage": tags: - save when: - os: windows - /AppData/LocalLow/Strange Loop Games/Eco: + "/AppData/LocalLow/Strange Loop Games/Eco": tags: - config when: @@ -171000,7 +171507,7 @@ Economic Conquest: installDir: Economic Conquest: {} launch: - /EconomicConquest.exe: + "/EconomicConquest.exe": - when: - os: windows store: steam @@ -171013,7 +171520,7 @@ Ecosystem: installDir: Ecosystem: {} launch: - /Ecosystem.exe: + "/Ecosystem.exe": - when: - bit: 64 os: windows @@ -171024,17 +171531,17 @@ Ecotone: installDir: ecotone: {} launch: - /ecotone: + "/ecotone": - when: - bit: 64 os: linux store: steam - /ecotone.app/Contents/MacOS/ecotone: + "/ecotone.app/Contents/MacOS/ecotone": - when: - bit: 64 os: mac store: steam - /ecotone.exe: + "/ecotone.exe": - when: - os: windows store: steam @@ -171042,7 +171549,7 @@ Ecotone: id: 446070 Ecstatica: files: - /saved: + "/saved": tags: - config - save @@ -171051,18 +171558,18 @@ Ecstatica: - os: windows Ecstatica II: files: - /saved: + "/saved": tags: - config - save when: - - os: windows - os: dos + - os: windows Ectolibrium: installDir: Ectolibrium: {} launch: - /Ectolibrium.exe: + "/Ectolibrium.exe": - when: - os: windows store: steam @@ -171072,33 +171579,33 @@ Eczema Angel Orifice: installDir: Eczema Angel Orifice: {} launch: - /Eczema Angel Orifice: + "/Eczema Angel Orifice": - when: - os: linux store: steam - /Eczema Angel Orifice.exe: + "/Eczema Angel Orifice.exe": - when: - os: windows store: steam steam: id: 422010 -'Ed, Edd n Eddy: The Mis-Edventures': +"Ed, Edd n Eddy: The Mis-Edventures": files: - /eeegd: + "/eeegd": tags: - save when: - os: windows - /engine.ini: + "/engine.ini": tags: - config when: - os: windows -'Ed-0: Zombie Uprising': +"Ed-0: Zombie Uprising": installDir: Ed-0 Zombie Uprising: {} launch: - /edozero.exe: + "/edozero.exe": - when: - store: steam steam: @@ -171112,7 +171619,7 @@ Eddy Violet: installDir: Eddy Violet: {} launch: - /EddyViolet.exe: + "/EddyViolet.exe": - when: - os: windows store: steam @@ -171128,7 +171635,7 @@ Eden Rising - Supremacy: installDir: Eden Rising: {} launch: - /Client/EdenRising.exe: + "/Client/EdenRising.exe": - when: - os: windows store: steam @@ -171136,7 +171643,7 @@ Eden Rising - Supremacy: id: 345330 Eden Star: files: - /EdenGame/Saved/Config/WindowsNoEditor: + "/EdenGame/Saved/Config/WindowsNoEditor": tags: - config when: @@ -171144,30 +171651,30 @@ Eden Star: installDir: Eden Star Pre-Alpha: {} launch: - /EdenGame/Binaries/Win64/EdenGame.exe: + "/EdenGame/Binaries/Win64/EdenGame.exe": - when: - bit: 64 os: windows store: steam steam: id: 259570 -'Eden''s Ritter: Paladins of Ecstasy': +"Eden's Ritter: Paladins of Ecstasy": installDir: - Eden's Ritter - Paladins of Ecstasy: {} + "Eden's Ritter - Paladins of Ecstasy": {} launch: - /er_paladins.exe: + "/er_paladins.exe": - when: - store: steam steam: id: 1127540 Eden*: files: - /minori/eden (English edition): + "/minori/eden (English edition)": tags: - save when: - os: windows - /minori/eden (English edition)/sysparams.txt: + "/minori/eden (English edition)/sysparams.txt": tags: - config when: @@ -171177,7 +171684,7 @@ Eden*: installDir: eden: {} launch: - /eden_en.exe: + "/eden_en.exe": - when: - os: windows store: steam @@ -171187,20 +171694,20 @@ Edengrad: installDir: Edengrad: {} launch: - /edengrad.exe: + "/edengrad.exe": - when: - store: steam steam: id: 381180 -'Edepth Angel: Pinocchio''s Murder': +"Edepth Angel: Pinocchio's Murder": installDir: Edepth Angel PM: {} launch: - /EDepth_PM.app: + "/EDepth_PM.app": - when: - os: mac store: steam - /EDepth_PM.exe: + "/EDepth_PM.exe": - when: - os: windows store: steam @@ -171210,7 +171717,7 @@ Edgar: installDir: Edgar: {} launch: - /Edgar.exe: + "/Edgar.exe": - when: - os: windows store: steam @@ -171220,15 +171727,15 @@ Edgar - Bokbok in Boulzac: installDir: Edgar - Bokbok in Boulzac: {} launch: - /Edgar.app/Contents/MacOS/Edgar: + "/Edgar.app/Contents/MacOS/Edgar": - when: - os: mac store: steam - /Edgar.exe: + "/Edgar.exe": - when: - os: windows store: steam - /Edgar.x86_64: + "/Edgar.x86_64": - when: - os: linux store: steam @@ -171236,33 +171743,33 @@ Edgar - Bokbok in Boulzac: id: 1007830 Edge: files: - /edge: + "/edge": tags: - save when: - os: windows - /Library/com.twotribes.edge: + "/Library/com.twotribes.edge": tags: - config - save when: - os: mac - /userdata//38740/remote: + "/userdata//38740/remote": tags: - save when: - store: steam - /Two Tribes/EDGE: + "/Two Tribes/EDGE": tags: - config when: - os: windows - /twotribes/edge: + "/twotribes/edge": tags: - save when: - os: linux - /twotribes/edge/settings.ini: + "/twotribes/edge/settings.ini": tags: - config when: @@ -171270,15 +171777,15 @@ Edge: installDir: EDGE: {} launch: - /EDGE.app: + "/EDGE.app": - when: - os: mac store: steam - /EDGE.bin.x86: + "/EDGE.bin.x86": - when: - os: linux store: steam - /edge.exe: + "/edge.exe": - when: - os: windows store: steam @@ -171288,8 +171795,8 @@ Edge (2018): installDir: Edge: {} launch: - /Edge.exe: - - arguments: '-windowed' + "/Edge.exe": + - arguments: "-windowed" when: - os: windows store: steam @@ -171305,17 +171812,17 @@ Edge of Atlantis: id: 616420 Edge of Eternity: files: - /userdata//269190/remote: + "/userdata//269190/remote": tags: - save when: - store: steam - /My Games/Edge Of Eternity/AutoSave/EOEGameAutoSave: + "/My Games/Edge Of Eternity/AutoSave/EOEGameAutoSave": tags: - save when: - os: windows - /My Games/Edge Of Eternity/Save: + "/My Games/Edge Of Eternity/Save": tags: - save when: @@ -171325,15 +171832,18 @@ Edge of Eternity: installDir: Edge Of Eternity: {} launch: - /EdgeOfEternity.app: + "/EdgeOfEternity.app": - when: - os: mac store: steam - /EdgeOfEternity.exe: + "/EdgeOfEternity.exe": - when: - os: windows store: steam - - arguments: '--fastload' + - bit: 64 + os: linux + store: steam + - arguments: "--fastload" when: - os: windows store: steam @@ -171347,7 +171857,7 @@ Edge of Existence: installDir: Edge Of Existence: {} launch: - /EoE.exe: + "/EoE.exe": - when: - os: windows store: steam @@ -171359,7 +171869,7 @@ Edge of Galaxy: installDir: Edge Of Galaxy: {} launch: - /Edge Of Galaxy.exe: + "/Edge Of Galaxy.exe": - when: - os: windows store: steam @@ -171376,7 +171886,7 @@ Edge of Reality Visual Novel: id: 1071250 Edge of Space: files: - /EdgeOfSpace: + "/EdgeOfSpace": tags: - config when: @@ -171384,20 +171894,20 @@ Edge of Space: installDir: Edge of Space: {} launch: - /launcher.exe: + "/launcher.exe": - when: - os: windows store: steam steam: id: 238240 -'Edge of Time: Rise of the Aeus': +"Edge of Time: Rise of the Aeus": steam: id: 1101530 -'Edge of Twilight: Return to Glory': +"Edge of Twilight: Return to Glory": installDir: Edge of Twilight - Return to Glory: {} launch: - /Binaries/Win32/Shipping-TwilightGame.exe: + "/Binaries/Win32/Shipping-TwilightGame.exe": - when: - os: windows store: steam @@ -171407,7 +171917,7 @@ Edge of War: installDir: Edge Of War: {} launch: - /EdgeOfWar.exe: + "/EdgeOfWar.exe": - when: - os: windows store: steam @@ -171424,24 +171934,24 @@ Edmonton Trolley Car: Edmonton Trolley Car: {} steam: id: 701990 -'Edna & Harvey: Harvey''s New Eyes': +"Edna & Harvey: Harvey's New Eyes": files: - /Daedalic Entertainment/Harvey/Savegames: + "/Daedalic Entertainment/Harvey/Savegames": tags: - save when: - os: windows - /Daedalic Entertainment/Harvey/config.ini: + "/Daedalic Entertainment/Harvey/config.ini": tags: - config when: - os: windows - /Daedalic Entertainment/Harvey/Savegames: + "/Daedalic Entertainment/Harvey/Savegames": tags: - save when: - os: linux - /Daedalic Entertainment/Harvey/config.ini: + "/Daedalic Entertainment/Harvey/config.ini": tags: - config when: @@ -171449,37 +171959,37 @@ Edmonton Trolley Car: gog: id: 1207664343 installDir: - Edna and Harvey Harvey's New Eyes: {} + "Edna and Harvey Harvey's New Eyes": {} launch: - /Harvey.app: + "/Harvey.app": - when: - bit: 64 os: mac store: steam - /harvey.exe: + "/harvey.exe": - when: - os: windows store: steam - /start: + "/start": - when: - bit: 64 os: linux store: steam steam: id: 219910 -'Edna & Harvey: The Breakout': +"Edna & Harvey: The Breakout": files: - /ednaPreferen.ces: + "/ednaPreferen.ces": tags: - config when: - os: windows - /Daedalic/EdnaSE/savegame: + "/Daedalic/EdnaSE/savegame": tags: - save when: - os: windows - /Daedalic Entertainment/Edna/savegame: + "/Daedalic Entertainment/Edna/savegame": tags: - save when: @@ -171489,35 +171999,35 @@ Edmonton Trolley Car: installDir: Edna & Harvey The Breakout: {} launch: - /_anniversary/edna.exe: + "/_anniversary/edna.exe": - when: - os: windows store: steam steam: id: 255320 -'Edna & Harvey: The Breakout - Anniversary Edition': +"Edna & Harvey: The Breakout - Anniversary Edition": files: - /Daedalic Entertainment GmbH/Edna and Harvey - The Breakout: + "/Daedalic Entertainment GmbH/Edna and Harvey - The Breakout": tags: - save when: - os: windows - /Daedalic Entertainment GmbH/Edna and Harvey - The Breakout/Options.sav: + "/Daedalic Entertainment GmbH/Edna and Harvey - The Breakout/Options.sav": tags: - config when: - os: windows - /unity3d/Daedalic Entertainment GmbH/Edna and Harvey - The Breakout/prefs: + "/unity3d/Daedalic Entertainment GmbH/Edna and Harvey - The Breakout/prefs": tags: - config when: - os: linux - /Daedalic Entertainment GmbH/Edna and Harvey - The Breakout: + "/Daedalic Entertainment GmbH/Edna and Harvey - The Breakout": tags: - save when: - os: linux - /Daedalic Entertainment GmbH/Edna and Harvey - The Breakout/Options.sav: + "/Daedalic Entertainment GmbH/Edna and Harvey - The Breakout/Options.sav": tags: - config when: @@ -171527,20 +172037,20 @@ Edmonton Trolley Car: installDir: Edna Anniversary: {} launch: - /Edna.app: + "/Edna.app": - when: - os: mac store: steam - /edna.exe: + "/edna.exe": - when: - os: windows store: steam - /edna.x86: + "/edna.x86": - when: - bit: 32 os: linux store: steam - /edna.x86_64: + "/edna.x86_64": - when: - bit: 64 os: linux @@ -171555,7 +172065,7 @@ Edolie: installDir: Edolie: {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: @@ -171564,18 +172074,18 @@ Education: installDir: Education: {} launch: - /Education.exe: + "/Education.exe": - when: - bit: 64 os: windows store: steam steam: id: 1261880 -'Educator 2076: Basics in Education': +"Educator 2076: Basics in Education": installDir: Educator 2076 - Basics in Education: {} launch: - /Educator 2076.exe: + "/Educator 2076.exe": - when: - os: windows store: steam @@ -171585,11 +172095,11 @@ Edvog Explorer Game: installDir: Edvog Explorer Game: {} launch: - /EdvogExplorerGame.exe: + "/EdvogExplorerGame.exe": - when: - os: windows store: steam - /EdvogExplorerGame64.exe: + "/EdvogExplorerGame64.exe": - when: - bit: 64 os: windows @@ -171603,11 +172113,11 @@ Eekeemoo - Splinters of the Dark Shard: installDir: Eekeemoo: {} launch: - /Eekeemoo.app: + "/Eekeemoo.app": - when: - os: mac store: steam - /Eekeemoo.exe: + "/Eekeemoo.exe": - when: - os: windows store: steam @@ -171617,11 +172127,11 @@ Eets: installDir: Eets: {} launch: - /Eets.app: + "/Eets.app": - when: - os: mac store: steam - /Eets.exe: + "/Eets.exe": - when: - os: windows store: steam @@ -171629,13 +172139,13 @@ Eets: id: 6100 Eets Munchies: files: - /.klei/eets2: + "/.klei/eets2": tags: - config - save when: - os: linux - /Klei/Eets2: + "/Klei/Eets2": tags: - config when: @@ -171643,24 +172153,24 @@ Eets Munchies: installDir: eets_munchies: {} launch: - /Eets2.app: + "/Eets2.app": - when: - os: mac store: steam - /bin/eets2: + "/bin/eets2": - when: - os: linux store: steam - workingDir: /bin - /eets2.exe: + workingDir: "/bin" + "/eets2.exe": - when: - os: windows store: steam steam: id: 214550 -'Ef: The First Tale': +"Ef: The First Tale": files: - /minori/ef - the first tale.(AA)/*.*: + "/minori/ef - the first tale.(AA)/*.*": tags: - save when: @@ -171668,14 +172178,14 @@ Eets Munchies: installDir: ef - the first tale: {} launch: - /ef_first_en_AA.exe: + "/ef_first_en_AA.exe": - when: - store: steam steam: id: 1144300 -'Ef: The Latter Tale': +"Ef: The Latter Tale": files: - /minori/ef - the latter tale.(AA)/*.*: + "/minori/ef - the latter tale.(AA)/*.*": tags: - save when: @@ -171683,24 +172193,24 @@ Eets Munchies: installDir: ef - the latter tale: {} launch: - /ef_latter_en_AA.exe: + "/ef_latter_en_AA.exe": - when: - store: steam steam: id: 1145030 Effie: files: - /Effie/Saved/Config/WindowsNoEditor: + "/Effie/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /Effie/Saved/SaveGames/EffieGame.sav: + "/Effie/Saved/SaveGames/EffieGame.sav": tags: - save when: - os: windows - /Effie/Saved/SaveGames/EffieSettings.sav: + "/Effie/Saved/SaveGames/EffieSettings.sav": tags: - config when: @@ -171708,7 +172218,7 @@ Effie: installDir: Effie: {} launch: - /Effie/Binaries/Win64/Effie-Win64-Shipping.exe: + "/Effie/Binaries/Win64/Effie-Win64-Shipping.exe": - when: - bit: 64 os: windows @@ -171722,7 +172232,7 @@ Egg Hunt: installDir: EggHuntSteamv2: {} launch: - /Egg Hunt.exe: + "/Egg Hunt.exe": - when: - os: windows store: steam @@ -171735,12 +172245,12 @@ Egg Hunt VR: id: 621140 Egg Returns Home: files: - /Egg Returns Home/gamedata.bin: + "/Egg Returns Home/gamedata.bin": tags: - save when: - os: windows - /Egg Returns Home/settings.cfg: + "/Egg Returns Home/settings.cfg": tags: - config when: @@ -171748,26 +172258,26 @@ Egg Returns Home: installDir: Egg Returns Home: {} launch: - /EggReturnsHome.app: + "/EggReturnsHome.app": - when: - os: mac store: steam - /EggReturnsHome.exe: + "/EggReturnsHome.exe": - when: - bit: 64 os: windows store: steam - /EggReturnsHome.x86: + "/EggReturnsHome.x86": - when: - bit: 32 os: linux store: steam - /EggReturnsHome.x86_64: + "/EggReturnsHome.x86_64": - when: - bit: 64 os: linux store: steam - /EggReturnsHome_x86.exe: + "/EggReturnsHome_x86.exe": - when: - bit: 32 os: windows @@ -171788,11 +172298,11 @@ Egg is broken. heart is too.: installDir: egg is broken: {} launch: - /egg is broken. heart is too..exe: + "/egg is broken. heart is too..exe": - when: - os: windows store: steam - /egg is broken.app/Contents/MacOS/egg is broken: + "/egg is broken.app/Contents/MacOS/egg is broken": - when: - os: mac store: steam @@ -171807,7 +172317,7 @@ EggK47: installDir: EggK47: {} launch: - /EggK47.exe: + "/EggK47.exe": - when: - os: windows store: steam @@ -171825,12 +172335,12 @@ Eggcellent VR: id: 727840 Eggggg - The platform puker: files: - /AppData/LocalLow/Hyper Games/Eggggg: + "/AppData/LocalLow/Hyper Games/Eggggg": tags: - save when: - os: windows - /Library/Application Support/Hyper Games/Eggggg: + "/Library/Application Support/Hyper Games/Eggggg": tags: - save when: @@ -171838,11 +172348,11 @@ Eggggg - The platform puker: installDir: Eggggg: {} launch: - /Eggggg.app/Contents/MacOS/Eggggg: + "/Eggggg.app/Contents/MacOS/Eggggg": - when: - os: mac store: steam - /Eggggg.exe: + "/Eggggg.exe": - when: - os: windows store: steam @@ -171852,7 +172362,7 @@ Egghead Gumpty: installDir: Egghead Grumpty: {} launch: - /Egghead_Gumpty.exe: + "/Egghead_Gumpty.exe": - when: - os: windows store: steam @@ -171862,7 +172372,7 @@ Eggness: installDir: Eggness: {} launch: - /EggnessEpisode1.exe: + "/EggnessEpisode1.exe": - when: - os: windows store: steam @@ -171872,20 +172382,20 @@ Eggo: installDir: Eggo: {} launch: - /Eggo.app/Contents/MacOS/Eggo: + "/Eggo.app/Contents/MacOS/Eggo": - when: - os: mac store: steam - /Eggo.exe: + "/Eggo.exe": - when: - os: windows store: steam - /Eggo.x86: + "/Eggo.x86": - when: - bit: 32 os: linux store: steam - /Eggo.x86_64: + "/Eggo.x86_64": - when: - bit: 64 os: linux @@ -171896,11 +172406,14 @@ Eggoria: installDir: Eggoria: {} launch: - /Eggoria.exe: + "/Eggoria.exe": - when: - bit: 32 os: windows store: steam + - bit: 64 + os: windows + store: steam steam: id: 1078640 Eggs & Kings: @@ -171910,7 +172423,7 @@ Eggs 1942: installDir: Eggs 1942: {} launch: - /Eggs 1942.exe: + "/Eggs 1942.exe": - when: - os: windows store: steam @@ -171920,11 +172433,11 @@ Eggy: installDir: Eggy: {} launch: - /Eggy.app: + "/Eggy.app": - when: - os: mac store: steam - /Eggy/Eggy.exe: + "/Eggy/Eggy.exe": - when: - os: windows store: steam @@ -171934,7 +172447,7 @@ Eggys Games Flash Collection: installDir: Eggys Games Flash Collection: {} launch: - /Eggys Games.exe: + "/Eggys Games.exe": - when: - store: steam steam: @@ -171943,11 +172456,11 @@ Ego Hearts: installDir: Ego Hearts: {} launch: - /EgoHearts.app: + "/EgoHearts.app": - when: - os: mac store: steam - /EgoHearts.exe: + "/EgoHearts.exe": - when: - os: windows store: steam @@ -171957,11 +172470,11 @@ Ego Protocol: installDir: Ego Protocol: {} launch: - /Ego Protocol.app: + "/Ego Protocol.app": - when: - os: mac store: steam - /Ego Protocol.exe: + "/Ego Protocol.exe": - when: - os: windows store: steam @@ -171976,32 +172489,32 @@ Egypt Solitaire. Match 2 Cards: installDir: Egypt Solitaire. Match 2 Cards: {} launch: - /Egypt Solitaire. Match 2 Cards.exe: + "/Egypt Solitaire. Match 2 Cards.exe": - when: - os: windows store: steam steam: id: 1202220 -'Egypt: Old Kingdom': +"Egypt: Old Kingdom": gog: id: 1422781192 installDir: Egypt Old Kingdom: {} launch: - /Egypt Old Kingdom.app: + "/Egypt Old Kingdom.app": - when: - os: mac store: steam - /Egypt Old Kingdom.exe: + "/Egypt Old Kingdom.exe": - when: - os: windows store: steam - /Egypt Old Kingdom.x86: + "/Egypt Old Kingdom.x86": - when: - bit: 32 os: linux store: steam - /Egypt Old Kingdom.x86_64: + "/Egypt Old Kingdom.x86_64": - when: - bit: 64 os: linux @@ -172012,11 +172525,11 @@ Egyptian Senet: installDir: Egyptian Senet: {} launch: - /Egyptian Senet.exe: + "/Egyptian Senet.exe": - when: - os: windows store: steam - /EgyptianSenet.app: + "/EgyptianSenet.app": - when: - os: mac store: steam @@ -172026,7 +172539,7 @@ Egyptian Settlement Gold: installDir: EgyptianSettlementGold: {} launch: - /EgyptianSettlementGold.exe: + "/EgyptianSettlementGold.exe": - when: - os: windows store: steam @@ -172036,7 +172549,7 @@ Ehandcipation: installDir: Ehandcipation: {} launch: - /Ehandcipation.exe: + "/Ehandcipation.exe": - when: - os: windows store: steam @@ -172047,12 +172560,12 @@ Eidetus: id: 681710 Eidolon: files: - /Binaries/Win32/*.bin: + "/Binaries/Win32/*.bin": tags: - save when: - os: windows - /UDKGame/Config/*.ini: + "/UDKGame/Config/*.ini": tags: - config when: @@ -172060,11 +172573,11 @@ Eidolon: installDir: Eidolon: {} launch: - /Binaries/Win32/UDK.exe: + "/Binaries/Win32/UDK.exe": - when: - os: windows store: steam - /EIDOLON.app: + "/EIDOLON.app": - when: - os: mac store: steam @@ -172074,28 +172587,28 @@ Eidolon adventure: installDir: Eidolon adventure: {} launch: - /Eidolon adventure.exe: + "/Eidolon adventure.exe": - when: - os: windows store: steam steam: id: 1098230 -'Eidolons: Nethergate': +"Eidolons: Nethergate": steam: id: 1043440 Eight Dragons: installDir: Eight Dragons: {} launch: - /EightDragons.app: + "/EightDragons.app": - when: - os: mac store: steam - /EightDragons.exe: + "/EightDragons.exe": - when: - os: windows store: steam - /EightDragons.x86_64: + "/EightDragons.x86_64": - when: - bit: 64 os: linux @@ -172106,7 +172619,7 @@ Eight Mini Racers: installDir: Eight Mini Racers: {} launch: - /Eight_Mini_Racers.exe: + "/Eight_Mini_Racers.exe": - when: - os: windows store: steam @@ -172119,20 +172632,20 @@ Eight-Minute Empire: installDir: Eight-Minute Empire: {} launch: - /Eight-Minute Empire.app/Contents/MacOS/Eight-Minute Empire: + "/Eight-Minute Empire.app/Contents/MacOS/Eight-Minute Empire": - when: - os: mac store: steam - /Eight-Minute Empire.exe: + "/Eight-Minute Empire.exe": - when: - os: windows store: steam - /Eight-Minute Empire.x86: + "/Eight-Minute Empire.x86": - when: - bit: 32 os: linux store: steam - /Eight-Minute Empire.x86_64: + "/Eight-Minute Empire.x86_64": - when: - bit: 64 os: linux @@ -172146,7 +172659,7 @@ Eikan wa Kimi ni Legend Pack: installDir: Eikan_LP: {} launch: - /EIKAN_LP.exe: + "/EIKAN_LP.exe": - when: - store: steam steam: @@ -172155,7 +172668,7 @@ Eilf: installDir: Eilf: {} launch: - /Clicker.exe: + "/Clicker.exe": - when: - os: windows store: steam @@ -172165,7 +172678,7 @@ Einar: installDir: Einar: {} launch: - /Einar.exe: + "/Einar.exe": - when: - bit: 64 os: windows @@ -172181,7 +172694,7 @@ Einn: installDir: Einn: {} launch: - /EINN.exe: + "/EINN.exe": - when: - bit: 64 os: windows @@ -172192,14 +172705,14 @@ Eisenbahn X: installDir: EisenbahnX: {} launch: - /EEP10.exe: + "/EEP10.exe": - when: - store: steam steam: id: 335310 -'Eisenhorn: Xenos': +"Eisenhorn: Xenos": files: - /My Games/Eisenhorn XENOS/XenosGame: + "/My Games/Eisenhorn XENOS/XenosGame": tags: - save when: @@ -172207,25 +172720,25 @@ Eisenbahn X: installDir: Eisenhorn XENOS: {} launch: - /Binaries/Win32/XenosGame.exe: + "/Binaries/Win32/XenosGame.exe": - when: - bit: 32 os: windows store: steam - /Binaries/Win64/XenosGame.exe: + "/Binaries/Win64/XenosGame.exe": - when: - bit: 64 os: windows store: steam steam: id: 373920 -'Eisenwald: Blood of November': +"Eisenwald: Blood of November": gog: id: 1589369222 installDir: Eisenwald Blood of November: {} launch: - /Eisenwald_BoN.exe: + "/Eisenwald_BoN.exe": - when: - os: windows store: steam @@ -172240,24 +172753,24 @@ Eiyu*Senki - The World Conquest: installDir: Eiyu Senki: {} launch: - /Eiyu Senki.exe: + "/Eiyu Senki.exe": - when: - store: steam steam: id: 691770 -'Eiyuden Chronicle: Hundred Heroes': +"Eiyuden Chronicle: Hundred Heroes": gog: id: 1352770401 steam: id: 1658280 -'Eiyuden Chronicle: Rising': +"Eiyuden Chronicle: Rising": files: - /AppData/LocalLow/505 Games S_p_A/Eiyuden Chronicle Rising//*.sav: + "/AppData/LocalLow/505 Games S_p_A/Eiyuden Chronicle Rising//*.sav": tags: - save when: - os: windows - /AppData/LocalLow/505 Games S_p_A/Eiyuden Chronicle Rising//EcrSaveSys.dat: + "/AppData/LocalLow/505 Games S_p_A/Eiyuden Chronicle Rising//EcrSaveSys.dat": tags: - config when: @@ -172267,7 +172780,7 @@ Eiyu*Senki - The World Conquest: installDir: Eiyuden Chronicle Rising: {} launch: - /Eiyuden Chronicle Rising.exe: + "/Eiyuden Chronicle Rising.exe": - when: - bit: 64 os: windows @@ -172276,12 +172789,12 @@ Eiyu*Senki - The World Conquest: id: 1658290 Eksperyment Delfin: files: - /DELFIN.SAV: + "/DELFIN.SAV": tags: - save when: - os: dos - /SOUND.SET: + "/SOUND.SET": tags: - config when: @@ -172290,17 +172803,17 @@ El Culto: installDir: El Culto: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam steam: id: 1129480 -'El Culto: edición completa': +"El Culto: edición completa": installDir: El Culto edición completa: {} launch: - /El Culto/Game.exe: + "/El Culto/Game.exe": - when: - os: windows store: steam @@ -172308,12 +172821,12 @@ El Culto: id: 1191700 El Hijo - A Wild West Tale: files: - /AppData/LocalLow/HonigStudios/el-hijo: + "/AppData/LocalLow/HonigStudios/el-hijo": tags: - config when: - os: windows - /AppData/LocalLow/HonigStudios/el-hijo/Save_01.json: + "/AppData/LocalLow/HonigStudios/el-hijo/Save_01.json": tags: - save when: @@ -172323,7 +172836,7 @@ El Hijo - A Wild West Tale: installDir: El Hijo: {} launch: - /el-hijo.exe: + "/el-hijo.exe": - when: - os: windows store: steam @@ -172333,7 +172846,7 @@ El Hincha Rusia 2018: installDir: El Hincha Rusia 2018: {} launch: - /ElHincha.exe: + "/ElHincha.exe": - when: - bit: 64 os: windows @@ -172342,12 +172855,12 @@ El Hincha Rusia 2018: id: 865370 El Matador: files: - /PROFILES//core.ini: + "/PROFILES//core.ini": tags: - config when: - os: windows - /TYPHOON/USERS/DEFAULT USER/SAVES: + "/TYPHOON/USERS/DEFAULT USER/SAVES": tags: - save when: @@ -172357,18 +172870,18 @@ El Matador: installDir: El Matador: {} launch: - /pc_matador.exe: + "/pc_matador.exe": - when: - os: windows store: steam steam: id: 289280 -'El Ministerio del Tiempo VR: El tiempo en tus manos': +"El Ministerio del Tiempo VR: El tiempo en tus manos": installDir: Ministerio VR: {} steam: id: 646360 -'El Ministerio del Tiempo VR: Salva el tiempo': +"El Ministerio del Tiempo VR: Salva el tiempo": installDir: El Ministerio del Tiempo VR Salva el tiempo: {} steam: @@ -172377,7 +172890,7 @@ El Ninja: installDir: El Ninja: {} launch: - /nw.exe: + "/nw.exe": - when: - store: steam steam: @@ -172386,20 +172899,20 @@ El Pansas: installDir: El Pansas: {} launch: - /El Pansas.exe: + "/El Pansas.exe": - when: - os: windows store: steam steam: id: 944200 -'El Shaddai: Ascension of the Metatron HD Remaster': +"El Shaddai: Ascension of the Metatron HD Remaster": files: - /Win32/AppSettings.ini: + "/Win32/AppSettings.ini": tags: - config when: - os: windows - /Elshaddai: + "/Elshaddai": tags: - save when: @@ -172407,7 +172920,7 @@ El Pansas: installDir: ElShaddaiASCENSION_OF_THE_METATRON: {} launch: - /RunElshadai.exe: + "/RunElshadai.exe": - when: - os: windows store: steam @@ -172417,7 +172930,7 @@ El Taco Diablo: installDir: El Taco Diablo: {} launch: - /El Taco Diablo.exe: + "/El Taco Diablo.exe": - when: - bit: 64 os: windows @@ -172428,7 +172941,7 @@ El Tango de la Muerte: installDir: El Tango de la Muerte: {} launch: - /tango.exe: + "/tango.exe": - when: - os: windows store: steam @@ -172438,7 +172951,7 @@ El Tesoro de Isla Alcachofa: installDir: El Tesoro de Isla Alcachofa: {} launch: - /Isla.exe: + "/Isla.exe": - when: - os: windows store: steam @@ -172448,7 +172961,7 @@ Elaine: installDir: elaine: {} launch: - /elaine.exe: + "/elaine.exe": - when: - os: windows store: steam @@ -172458,11 +172971,11 @@ Elansar: installDir: Elansar: {} launch: - /Elansar.exe: + "/Elansar.exe": - when: - os: windows store: steam - /elansar_fullscreen_linux86: + "/elansar_fullscreen_linux86": - when: - bit: 32 os: linux @@ -172471,7 +172984,7 @@ Elansar: id: 435070 Elasto Mania: files: - /state.dat: + "/state.dat": tags: - config - save @@ -172482,7 +172995,7 @@ Elasto Mania: installDir: elma: {} launch: - /ElmaLauncher/ElmaLauncher.exe: + "/ElmaLauncher/ElmaLauncher.exe": - when: - os: windows store: steam @@ -172494,7 +173007,7 @@ Elasto Mania II: installDir: elma2: {} launch: - /ElmaLauncher/ElmaLauncher.exe: + "/ElmaLauncher/ElmaLauncher.exe": - when: - os: windows store: steam @@ -172504,20 +173017,20 @@ Elastrix: installDir: Elastrix: {} launch: - /Elastrix.app: + "/Elastrix.app": - when: - os: mac store: steam - /Elastrix.exe: + "/Elastrix.exe": - when: - os: windows store: steam - /elastrix.x86: + "/elastrix.x86": - when: - bit: 32 os: linux store: steam - /elastrix.x86_64: + "/elastrix.x86_64": - when: - bit: 64 os: linux @@ -172528,7 +173041,7 @@ Elbub: installDir: Elbub: {} launch: - /PLAY.exe: + "/PLAY.exe": - when: - os: windows store: steam @@ -172536,12 +173049,12 @@ Elbub: id: 757860 Elden Ring: files: - /EldenRing//ER0000.sl2: + "/EldenRing//ER0000.sl2": tags: - save when: - os: windows - /EldenRing/GraphicsConfig.xml: + "/EldenRing/GraphicsConfig.xml": tags: - config when: @@ -172549,17 +173062,17 @@ Elden Ring: installDir: ELDEN RING: {} launch: - /Game/start_protected_game.exe: + "/Game/start_protected_game.exe": - when: - store: steam - workingDir: /Game + workingDir: "/Game" steam: id: 1245620 -'Elden: Path of the Forgotten': +"Elden: Path of the Forgotten": installDir: Elden: {} launch: - /Elden Path of the Forgotten.exe: + "/Elden Path of the Forgotten.exe": - when: - os: windows store: steam @@ -172569,19 +173082,19 @@ Elder Chaos: installDir: Elder Chaos: {} launch: - /Elder Chaos.app: + "/Elder Chaos.app": - when: - os: mac store: steam - /Elder Chaos.exe: + "/Elder Chaos.exe": - when: - os: windows store: steam steam: id: 712000 -'Elder Sign: Omens': +"Elder Sign: Omens": files: - /unity3d/Fantasy Flight Games/ElderSign: + "/unity3d/Fantasy Flight Games/ElderSign": tags: - config - save @@ -172590,20 +173103,20 @@ Elder Chaos: installDir: ElderSign: {} launch: - /ElderSign.app: + "/ElderSign.app": - when: - os: mac store: steam - /ElderSign.exe: + "/ElderSign.exe": - when: - os: windows store: steam - /ElderSign.x86: + "/ElderSign.x86": - when: - bit: 32 os: linux store: steam - /ElderSign.x86_64: + "/ElderSign.x86_64": - when: - bit: 64 os: linux @@ -172614,7 +173127,7 @@ Elder Village: installDir: Elder Village: {} launch: - /Elder_Village_1.exe: + "/Elder_Village_1.exe": - when: - os: windows store: steam @@ -172622,7 +173135,7 @@ Elder Village: id: 1126630 Elderborn: files: - /AppData/LocalLow/Hyperstrange/ELDERBORN: + "/AppData/LocalLow/Hyperstrange/ELDERBORN": tags: - config - save @@ -172633,17 +173146,17 @@ Elderborn: installDir: Elderborn: {} launch: - /Elderborn.exe: + "/Elderborn.exe": - when: - os: windows store: steam steam: id: 727850 -'Elderine: Dreams to Destiny': +"Elderine: Dreams to Destiny": installDir: Elderine Dreams to Destiny: {} launch: - /Elderine.exe: + "/Elderine.exe": - when: - os: windows store: steam @@ -172653,7 +173166,7 @@ Eldervale: installDir: Eldervale: {} launch: - /Eldervale.exe: + "/Eldervale.exe": - when: - os: windows store: steam @@ -172665,7 +173178,7 @@ Eldest Souls: installDir: Eldest Souls: {} launch: - /Eldest Souls.exe: + "/Eldest Souls.exe": - when: - store: steam steam: @@ -172674,12 +173187,12 @@ Eldevin: installDir: Eldevin: {} launch: - /Eldevin.app: + "/Eldevin.app": - arguments: steam when: - os: mac store: steam - /Eldevin.exe: + "/Eldevin.exe": - arguments: steam when: - os: windows @@ -172688,32 +173201,32 @@ Eldevin: id: 298160 Eldritch: files: - /Library/Application Support/Eldritch/main.eldritchmastersave: + "/Library/Application Support/Eldritch/main.eldritchmastersave": tags: - save when: - os: mac - /Library/Application Support/Eldritch/prefs.cfg: + "/Library/Application Support/Eldritch/prefs.cfg": tags: - config when: - os: mac - /Eldritch Reanimated/main.eldritchmastersave: + "/Eldritch Reanimated/main.eldritchmastersave": tags: - save when: - os: windows - /Eldritch Reanimated/prefs.cfg: + "/Eldritch Reanimated/prefs.cfg": tags: - config when: - os: windows - /Eldritch Reanimated/main.eldritchmastersave: + "/Eldritch Reanimated/main.eldritchmastersave": tags: - save when: - os: linux - /Eldritch Reanimated/prefs.cfg: + "/Eldritch Reanimated/prefs.cfg": tags: - config when: @@ -172721,20 +173234,20 @@ Eldritch: installDir: Eldritch: {} launch: - /Eldritch: + "/Eldritch": - when: - os: linux store: steam - /Eldritch.app: + "/Eldritch.app": - when: - os: mac store: steam - /Eldritch.exe: + "/Eldritch.exe": - when: - bit: 64 os: windows store: steam - /Eldritch_x86.exe: + "/Eldritch_x86.exe": - when: - os: windows store: steam @@ -172744,15 +173257,15 @@ Eldritch Academy: installDir: Eldritch Academy: {} launch: - /Eldritch_Academy.app: + "/Eldritch_Academy.app": - when: - os: mac store: steam - /Eldritch_Academy.exe: + "/Eldritch_Academy.exe": - when: - os: windows store: steam - /Eldritch_Academy.sh: + "/Eldritch_Academy.sh": - when: - os: linux store: steam @@ -172765,7 +173278,7 @@ Eldritch Hunter: installDir: Eldritch Hunter: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -172775,15 +173288,15 @@ Eldritch University: installDir: Eldritch University: {} launch: - /Eldritch_University.app: + "/Eldritch_University.app": - when: - os: mac store: steam - /Eldritch_University.exe: + "/Eldritch_University.exe": - when: - os: windows store: steam - /Eldritch_University.sh: + "/Eldritch_University.sh": - when: - os: linux store: steam @@ -172793,12 +173306,12 @@ Ele Blaze: installDir: ELE BLAZE: {} launch: - /ELEBLAZE.exe: + "/ELEBLAZE.exe": - when: - bit: 64 os: windows store: steam - /Magical Nova - Meteor Sparkle.exe: + "/Magical Nova - Meteor Sparkle.exe": - when: - bit: 64 os: windows @@ -172807,12 +173320,12 @@ Ele Blaze: id: 719370 Elea - Episode 1: files: - /Project_Elea/Saved/Config/WindowsNoEditor: + "/Project_Elea/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /Project_Elea/Saved/SaveGames: + "/Project_Elea/Saved/SaveGames": tags: - save when: @@ -172820,7 +173333,7 @@ Elea - Episode 1: installDir: Elea Episode 1: {} launch: - /Elea.exe: + "/Elea.exe": - when: - os: windows store: steam @@ -172828,13 +173341,13 @@ Elea - Episode 1: id: 812020 ElecHead: files: - /steamapps/common/ElecHead: + "/steamapps/common/ElecHead": tags: - config when: - os: windows store: steam - /ElecHead: + "/ElecHead": tags: - save when: @@ -172850,7 +173363,7 @@ ElecHead: installDir: ElecHead: {} launch: - /ElecHead.exe: + "/ElecHead.exe": - when: - os: windows store: steam @@ -172860,7 +173373,7 @@ Election simulator: installDir: Election simulator: {} launch: - /Election Simulator.exe: + "/Election Simulator.exe": - when: - os: windows store: steam @@ -172869,7 +173382,7 @@ Election simulator: Elections Simulator 2018: steam: id: 654650 -'ElectriX: Electro Mechanic Simulator': +"ElectriX: Electro Mechanic Simulator": steam: id: 652620 Electric Circuit: @@ -172882,29 +173395,29 @@ Electric Sermon: installDir: Brutalism: {} launch: - /brutalism_mac.app: + "/brutalism_mac.app": - when: - os: mac store: steam - /brutalism_win.exe: + "/brutalism_win.exe": - when: - os: windows store: steam steam: id: 801770 -'Electric Sheep: A Cyberpunk Dystopia': +"Electric Sheep: A Cyberpunk Dystopia": steam: id: 1116570 Electric Sleep: files: - /Player: + "/Player": tags: - save when: - os: windows - os: mac - os: linux - /Player/save.soul: + "/Player/save.soul": tags: - config when: @@ -172914,16 +173427,16 @@ Electric Sleep: installDir: ElectricSleep: {} launch: - /ElectricSleep.exe: + "/ElectricSleep.exe": - when: - os: windows store: steam - /LinuxBundle: + "/LinuxBundle": - when: - bit: 64 os: linux store: steam - /MacBundle: + "/MacBundle": - when: - os: mac store: steam @@ -172939,7 +173452,7 @@ ElectricVLab: installDir: ElectricVLab: {} launch: - /ElectricVLab.exe: + "/ElectricVLab.exe": - when: - os: windows store: steam @@ -172947,7 +173460,7 @@ ElectricVLab: id: 760920 Electrician Simulator: files: - /AppData/LocalLow/Take IT Studio!/Electrician/: + "/AppData/LocalLow/Take IT Studio!/Electrician/": tags: - save when: @@ -172956,14 +173469,14 @@ Electrician Simulator: id: 1998534507 id: gogExtra: - - 2037143961 - 1250430229 + - 2037143961 steamExtra: - 2329870 installDir: Electrician Simulator: {} launch: - /Electrician.exe: + "/Electrician.exe": - when: - bit: 64 os: windows @@ -172981,8 +173494,8 @@ Electro Ride: installDir: Electro Ride: {} launch: - /ElectroRide.exe: - - arguments: '-window-mode exclusive' + "/ElectroRide.exe": + - arguments: "-window-mode exclusive" when: - bit: 64 os: windows @@ -172991,12 +173504,12 @@ Electro Ride: id: 696150 Electroman: files: - /config.dta: + "/config.dta": tags: - config when: - os: dos - /em.sav: + "/em.sav": tags: - save when: @@ -173005,7 +173518,7 @@ Electromaze Defense: installDir: Electromaze Defense: {} launch: - /ElectromazeDefense.exe: + "/ElectromazeDefense.exe": - when: - os: windows store: steam @@ -173018,17 +173531,17 @@ Electronauts: id: 691160 Electronic Super Joy: files: - /esj.sav: + "/esj.sav": tags: - save when: - os: windows - /.config/unity3d/Michael Todd Games/Electronic Super Joy: + "/.config/unity3d/Michael Todd Games/Electronic Super Joy": tags: - config when: - os: linux - /userdata//244870/remote/esj.sav: + "/userdata//244870/remote/esj.sav": tags: - save when: @@ -173036,15 +173549,15 @@ Electronic Super Joy: installDir: ElectronicSuperJoy: {} launch: - /ElectronicSuperJoy: + "/ElectronicSuperJoy": - when: - os: linux store: steam - /ElectronicSuperJoy.app: + "/ElectronicSuperJoy.app": - when: - os: mac store: steam - /ElectronicSuperJoy.exe: + "/ElectronicSuperJoy.exe": - when: - os: windows store: steam @@ -173058,20 +173571,20 @@ Electronic Super Joy 2: installDir: ElectronicSuperJoy2: {} launch: - /ESJ2.app: + "/ESJ2.app": - when: - os: mac store: steam - /ESJ2.exe: + "/ESJ2.exe": - when: - os: windows store: steam - /ESJ2.x86: + "/ESJ2.x86": - when: - bit: 32 os: linux store: steam - /ESJ2.x86_64: + "/ESJ2.x86_64": - when: - bit: 64 os: linux @@ -173083,9 +173596,9 @@ Electronic Super Joy 2: - save steam: id: 1113940 -'Electronic Super Joy: Groove City': +"Electronic Super Joy: Groove City": files: - /.config/unity3d/Yazar Media Group/Groove City: + "/.config/unity3d/Yazar Media Group/Groove City": tags: - config - save @@ -173094,15 +173607,15 @@ Electronic Super Joy 2: installDir: GrooveCity: {} launch: - /GrooveCity.app: + "/GrooveCity.app": - when: - os: mac store: steam - /GrooveCity.exe: + "/GrooveCity.exe": - when: - os: windows store: steam - /GrooveCity.x86: + "/GrooveCity.x86": - when: - os: linux store: steam @@ -173117,21 +173630,21 @@ Electronics Circuits Simulator: installDir: Electronics Circuits Simulator: {} launch: - /Circuit Warz Training levels.exe: + "/Circuit Warz Training levels.exe": - when: - os: windows store: steam steam: id: 657410 -'Electroquest: Resistance Is Futile': +"Electroquest: Resistance Is Futile": installDir: Electroquest: {} launch: - /Electroquest - Resistance is Futile.app/Contents/MacOS/Electroquest - Resistance is Futile: + "/Electroquest - Resistance is Futile.app/Contents/MacOS/Electroquest - Resistance is Futile": - when: - os: mac store: steam - /Electroquest - Resistance is Futile.exe: + "/Electroquest - Resistance is Futile.exe": - when: - os: windows store: steam @@ -173141,15 +173654,15 @@ Elegy for a Dead World: installDir: ElegyForADeadWorld: {} launch: - /Elegy.app: + "/Elegy.app": - when: - os: mac store: steam - /Elegy.exe: + "/Elegy.exe": - when: - os: windows store: steam - /Elegy.x86: + "/Elegy.x86": - when: - os: linux store: steam @@ -173159,26 +173672,26 @@ Element: installDir: Element: {} launch: - /OSX/Element.app/Contents/MacOS/Element: + "/OSX/Element.app/Contents/MacOS/Element": - when: - os: mac store: steam - /x86/Element.exe: + "/x86/Element.exe": - when: - bit: 32 os: windows store: steam - /x86/Element.x86: + "/x86/Element.x86": - when: - bit: 32 os: linux store: steam - /x86_64/Element.exe: + "/x86_64/Element.exe": - when: - bit: 64 os: windows store: steam - /x86_64/Element.x86_64: + "/x86_64/Element.x86_64": - when: - bit: 64 os: linux @@ -173192,7 +173705,7 @@ Element Industry: installDir: Element Industry: {} launch: - /Element Industry.exe: + "/Element Industry.exe": - when: - os: windows store: steam @@ -173202,7 +173715,7 @@ Element TD: installDir: Element TD: {} launch: - /ETD.exe: + "/ETD.exe": - when: - os: windows store: steam @@ -173210,7 +173723,7 @@ Element TD: id: 578350 Element TD 2: files: - /AppData/LocalLow/Element Studios/Element TD 2: + "/AppData/LocalLow/Element Studios/Element TD 2": tags: - save when: @@ -173218,7 +173731,7 @@ Element TD 2: installDir: Element TD 2: {} launch: - /Element TD 2.exe: + "/Element TD 2.exe": - when: - bit: 64 os: windows @@ -173229,7 +173742,7 @@ Element Z: installDir: Element Z: {} launch: - /Element Z.exe: + "/Element Z.exe": - when: - os: windows store: steam @@ -173239,23 +173752,23 @@ Element4l: installDir: Element4l: {} launch: - /element4l.app: - - arguments: '-console' + "/element4l.app": + - arguments: "-console" when: - os: mac store: steam - workingDir: /Contents - /element4l.exe: - - arguments: '-console' + workingDir: "/Contents" + "/element4l.exe": + - arguments: "-console" when: - os: windows store: steam - /element4l.x86: + "/element4l.x86": - when: - bit: 32 os: linux store: steam - /element4l.x86_64: + "/element4l.x86_64": - when: - bit: 64 os: linux @@ -173267,11 +173780,11 @@ Element4l: - save steam: id: 235820 -'Element: Space': +"Element: Space": installDir: Element Space: {} launch: - /ElementSpace.exe: + "/ElementSpace.exe": - when: - store: steam steam: @@ -173285,7 +173798,7 @@ Elemental Girls: installDir: Elemental Girls: {} launch: - /Elemental Girls.exe: + "/Elemental Girls.exe": - when: - store: steam steam: @@ -173294,15 +173807,15 @@ Elemental Heroes: installDir: Elemental Heroes: {} launch: - /ElementalHeroes.app: + "/ElementalHeroes.app": - when: - os: mac store: steam - /ElementalHeroes.exe: + "/ElementalHeroes.exe": - when: - os: windows store: steam - /ElementalHeroes.x86_64: + "/ElementalHeroes.x86_64": - when: - os: linux store: steam @@ -173312,16 +173825,16 @@ Elemental War: installDir: Elemental War: {} launch: - /Elemental War.app/Contents/MacOS/Elemental War: + "/Elemental War.app/Contents/MacOS/Elemental War": - when: - os: mac store: steam - /Elemental War.exe: + "/Elemental War.exe": - when: - bit: 64 os: windows store: steam - /Elemental War.x86_64: + "/Elemental War.x86_64": - when: - bit: 64 os: linux @@ -173332,52 +173845,52 @@ Elemental War 2: installDir: Elemental War 2: {} launch: - /Elemental War 2.app/Contents/MacOS/Elemental War 2: + "/Elemental War 2.app/Contents/MacOS/Elemental War 2": - when: - os: mac store: steam - /Elemental War 2.exe: + "/Elemental War 2.exe": - when: - os: windows store: steam - /Elemental War 2.x86_64: + "/Elemental War 2.x86_64": - when: - os: linux store: steam steam: id: 1063020 -'Elemental World Part 1: Rise of the Guardians': +"Elemental World Part 1: Rise of the Guardians": installDir: Elemental World Part 1Rise Of The Guardians: {} launch: - /Elemental World ROTG.exe: + "/Elemental World ROTG.exe": - when: - os: windows store: steam - /ElementalWorldP1ROTG.app: + "/ElementalWorldP1ROTG.app": - when: - os: mac store: steam - /ElementalWorldP1ROTG.x86: + "/ElementalWorldP1ROTG.x86": - when: - bit: 32 os: linux store: steam - /ElementalWorldP1ROTG.x86_64: + "/ElementalWorldP1ROTG.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 340140 -'Elemental: Fallen Enchantress': +"Elemental: Fallen Enchantress": files: - /My Games/FallenEnchantress/Prefs.ini: + "/My Games/FallenEnchantress/Prefs.ini": tags: - config when: - os: windows - /My Games/FallenEnchantress/Saves: + "/My Games/FallenEnchantress/Saves": tags: - save when: @@ -173387,7 +173900,7 @@ Elemental War 2: installDir: Elemental Fallen Enchantress: {} launch: - /FallenEnchantress.exe: + "/FallenEnchantress.exe": - when: - store: steam steam: @@ -173399,7 +173912,7 @@ Elementals Reborn: installDir: Elementals Reborn: {} launch: - /Elementals Reborn.exe: + "/Elementals Reborn.exe": - when: - os: windows store: steam @@ -173412,11 +173925,11 @@ Elementary My Dear Majesty!: installDir: ElementaryMyDearMajesty: {} launch: - /EMDM.exe: + "/EMDM.exe": - when: - os: windows store: steam - /Elementary My Dear Majesty.app: + "/Elementary My Dear Majesty.app": - when: - os: mac store: steam @@ -173424,12 +173937,12 @@ Elementary My Dear Majesty!: id: 343390 Elementium: files: - /Elementium/Saved/Config/WindowsNoEditor: + "/Elementium/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /Elementium/Saved/SaveGames: + "/Elementium/Saved/SaveGames": tags: - save when: @@ -173437,7 +173950,7 @@ Elementium: installDir: Elementium: {} launch: - /RomeIllusion.exe: + "/RomeIllusion.exe": - when: - bit: 64 os: windows @@ -173449,14 +173962,14 @@ Elements: id: 2053196692 steam: id: 1468110 -'Elements II: Hearts of Light': +"Elements II: Hearts of Light": files: - /E2.ini: + "/E2.ini": tags: - config when: - os: windows - /Save*.rvdata2: + "/Save*.rvdata2": tags: - save when: @@ -173464,40 +173977,40 @@ Elements: installDir: Elements II Hearts of Light: {} launch: - /E2.exe: + "/E2.exe": - when: - store: steam steam: id: 448640 Elements of War: files: - /Data: + "/Data": tags: - config when: - os: windows - /Save: + "/Save": tags: - save when: - os: windows -'Elements: Epic Heroes': +"Elements: Epic Heroes": installDir: Elements Epic Heroes: {} launch: - /epic.app/Contents/MacOS/epic: + "/epic.app/Contents/MacOS/epic": - when: - os: mac store: steam - /epic.exe: + "/epic.exe": - when: - os: windows store: steam steam: id: 410490 -'Elements: Soul of Fire': +"Elements: Soul of Fire": files: - /Save1.rxdata: + "/Save1.rxdata": tags: - save when: @@ -173505,7 +174018,7 @@ Elements of War: installDir: Elements Soul of Fire: {} launch: - /E1.exe: + "/E1.exe": - when: - store: steam steam: @@ -173514,7 +174027,7 @@ Elems: installDir: Elems: {} launch: - /Elems.exe: + "/Elems.exe": - when: - os: windows store: steam @@ -173524,7 +174037,7 @@ Elena: installDir: Elena: {} launch: - /Project43.exe: + "/Project43.exe": - when: - bit: 64 os: windows @@ -173535,7 +174048,7 @@ Elendia Ceus: installDir: Elendia Ceus: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: @@ -173545,11 +174058,11 @@ Elephant Express VR: Elephant Express VR: {} steam: id: 566170 -Elephants Can't Jump: +"Elephants Can't Jump": installDir: - Elephants Can't Jump: {} + "Elephants Can't Jump": {} launch: - /ElephantsCantJump_1.1/Elephant's Can't Jump.exe: + "/ElephantsCantJump_1.1/Elephant's Can't Jump.exe": - when: - store: steam steam: @@ -173558,7 +174071,7 @@ Elette Fragments: installDir: Elette Fragments: {} launch: - /Elette Fragments.exe: + "/Elette Fragments.exe": - when: - os: windows store: steam @@ -173566,12 +174079,12 @@ Elette Fragments: id: 1181360 Eleusis: files: - /Binaries/Win32: + "/Binaries/Win32": tags: - config when: - os: windows - /Binaries/Win32/SaveSystemNew.bin: + "/Binaries/Win32/SaveSystemNew.bin": tags: - save when: @@ -173579,7 +174092,7 @@ Eleusis: installDir: Eleusis: {} launch: - /Eleusis Game Launcher.exe: + "/Eleusis Game Launcher.exe": - when: - os: windows store: steam @@ -173589,7 +174102,7 @@ Elevator Action -Returns- S-Tribute: installDir: Elevator Action Returns S-Tribute: {} launch: - /S-Tribute.exe: + "/S-Tribute.exe": - when: - os: windows store: steam @@ -173599,7 +174112,7 @@ Elevator Ritual: installDir: Elevator Ritual: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -173627,7 +174140,7 @@ Eleven Eleven: id: 872810 Eleven Islands: files: - /JoyfulSoftware/ElevenIslands: + "/JoyfulSoftware/ElevenIslands": tags: - config - save @@ -173636,7 +174149,7 @@ Eleven Islands: installDir: Eleven Islands: {} launch: - /Eleven Islands.exe: + "/Eleven Islands.exe": - when: - os: windows store: steam @@ -173646,13 +174159,13 @@ Eleven Prophecies: installDir: Eleven Prophecies: {} launch: - /ElevenProphecies.exe: + "/ElevenProphecies.exe": - when: - os: windows store: steam steam: id: 1011720 -'Eleven: Table Tennis VR': +"Eleven: Table Tennis VR": installDir: Eleven Table Tennis VR: {} steam: @@ -173666,34 +174179,34 @@ Elf: installDir: ELF: {} launch: - /dosbox.exe: + "/dosbox.exe": - when: - os: windows store: steam steam: id: 814630 -'Elf Bowling: Hawaiian Vacation': +"Elf Bowling: Hawaiian Vacation": installDir: Elf Bowling Hawaiian Vacation: {} launch: - /elfbowling.exe: + "/elfbowling.exe": - when: - store: steam steam: id: 15990 -'Elf Enchanter: Arousing Anima': +"Elf Enchanter: Arousing Anima": installDir: Elf Enchanter Arousing Anima: {} launch: - /Elf_Enchanter.app: + "/Elf_Enchanter.app": - when: - os: mac store: steam - /Elf_Enchanter.exe: + "/Elf_Enchanter.exe": - when: - os: windows store: steam - /Elf_Enchanter.sh: + "/Elf_Enchanter.sh": - when: - os: linux store: steam @@ -173703,7 +174216,7 @@ Elf Epizode One: installDir: Elf Epizode One: {} launch: - /ElfEpizodeOne.exe: + "/ElfEpizodeOne.exe": - when: - store: steam steam: @@ -173712,7 +174225,7 @@ Elf Manor: installDir: Elf Manor: {} launch: - /ElfManor.exe: + "/ElfManor.exe": - when: - bit: 64 os: windows @@ -173723,48 +174236,48 @@ Elf-World (Three Kingdoms): installDir: ABC-TK: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam steam: id: 658610 -Eliosi's Hunt: +"Eliosi's Hunt": installDir: - Eliosi's Hunt: {} + "Eliosi's Hunt": {} launch: - /EliosisHunt.exe: + "/EliosisHunt.exe": - when: - bit: 64 os: windows store: steam steam: id: 494700 -'Elisa: Seduce the Innkeeper': +"Elisa: Seduce the Innkeeper": installDir: Elisa Seduce the Innkeeper: {} launch: - /Elisa.exe: - - arguments: '--in-process-gpu' + "/Elisa.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam - /nwjs.app/Contents/MacOS/nwjs: + "/nwjs.app/Contents/MacOS/nwjs": - when: - os: mac store: steam steam: id: 704690 -'Elisa: The Innkeeper': +"Elisa: The Innkeeper": installDir: Elisa the Innkeeper: {} launch: - /nw.exe: - - arguments: '--in-process-gpu' + "/nw.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam - /nwjs.app/Contents/MacOS/nwjs: + "/nwjs.app/Contents/MacOS/nwjs": - when: - os: mac store: steam @@ -173772,7 +174285,7 @@ Eliosi's Hunt: id: 576400 Elise the Devil: files: - /www/save: + "/www/save": tags: - save when: @@ -173780,7 +174293,7 @@ Elise the Devil: installDir: Elyse the Devil: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -173790,16 +174303,16 @@ Elite Archery: installDir: Elite Archery: {} launch: - /Elite Archery.exe: + "/Elite Archery.exe": - when: - store: steam steam: id: 977110 -'Elite Battle : Rio': +"Elite Battle : Rio": installDir: Elite Battle Rio: {} launch: - /RIO.exe: + "/RIO.exe": - when: - os: windows store: steam @@ -173807,7 +174320,7 @@ Elite Archery: id: 1154860 Elite Dangerous: files: - /Frontier Developments/Elite Dangerous: + "/Frontier Developments/Elite Dangerous": tags: - config when: @@ -173819,11 +174332,11 @@ Elite Dangerous: Elite Dangerous: {} steam: id: 359320 -'Elite Dangerous: Arena': +"Elite Dangerous: Arena": installDir: Elite Dangerous Arena: {} launch: - /EDLaunch.exe: + "/EDLaunch.exe": - arguments: /Steam /steamid 443080 /EDA when: - bit: 64 @@ -173841,22 +174354,22 @@ Elite Escape: Elite Escape: {} steam: id: 1141990 -'Elite Soldier: 3D Shooter': +"Elite Soldier: 3D Shooter": installDir: Shooter: {} launch: - /3D FPS Shooter.exe: + "/3D FPS Shooter.exe": - when: - store: steam steam: id: 1137220 -'Elite Warriors: Vietnam': +"Elite Warriors: Vietnam": gog: id: 1663498890 installDir: Elite Warriors Vietnam: {} launch: - /SOG.exe: + "/SOG.exe": - when: - os: windows store: steam @@ -173866,7 +174379,7 @@ Elite vs. Freedom: installDir: Elite vs. Freedom: {} launch: - /Binaries/Win32/UDK.exe: + "/Binaries/Win32/UDK.exe": - when: - store: steam steam: @@ -173875,18 +174388,18 @@ Elium - Prison Escape: installDir: Elium - Prison Escape: {} launch: - /Binaries/Win64/Elium.exe: + "/Binaries/Win64/Elium.exe": - when: - bit: 64 os: windows store: steam steam: id: 680330 -'Elixir of Immortality II: The League of Immortality': +"Elixir of Immortality II: The League of Immortality": installDir: Elixir of Immortality II The League of Immortality: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -173894,12 +174407,12 @@ Elium - Prison Escape: id: 621090 Eliza: files: - /My Games/Eliza/: + "/My Games/Eliza/": tags: - save when: - os: windows - /My Games/Eliza//config.cfg: + "/My Games/Eliza//config.cfg": tags: - config when: @@ -173909,15 +174422,15 @@ Eliza: installDir: Eliza: {} launch: - /Eliza: + "/Eliza": - when: - os: linux store: steam - /Eliza.app/Contents/MacOS/Eliza: + "/Eliza.app/Contents/MacOS/Eliza": - when: - os: mac store: steam - /Eliza.exe: + "/Eliza.exe": - when: - os: windows store: steam @@ -173927,11 +174440,11 @@ Elizabeth Find M.D. - Diagnosis Mystery - Season 2: installDir: Elizabeth Find M.D. - Diagnosis Mystery - Season 2: {} launch: - /Elizabeth Find Season 2.app: + "/Elizabeth Find Season 2.app": - when: - os: mac store: steam - /Elizabeth Find Season 2.exe: + "/Elizabeth Find Season 2.exe": - when: - os: windows store: steam @@ -173941,22 +174454,25 @@ Elk: installDir: Welcome to Elk: {} launch: - /Welcome to Elk.app: + "/Welcome to Elk.app": - when: - os: mac store: steam - /Welcome to Elk.exe: + "/Welcome to Elk.exe": - when: - bit: 64 os: windows store: steam + - bit: 64 + os: linux + store: steam steam: id: 1015940 Elle: installDir: Elle: {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: @@ -173965,7 +174481,7 @@ Ellen: installDir: Ellen: {} launch: - /Ellen.exe: + "/Ellen.exe": - when: - os: windows store: steam @@ -173975,35 +174491,35 @@ Ellen and the Degenerates RPG: installDir: Ellen and the Degenerates RPG: {} launch: - /ELLEN AND THE DEGENERATES RPG.app: + "/ELLEN AND THE DEGENERATES RPG.app": - when: - os: mac store: steam - /Game.exe: + "/Game.exe": - when: - os: windows store: steam steam: id: 1016970 -'Elleros Origins: Season I': +"Elleros Origins: Season I": installDir: Elleros: {} launch: - /Thornblood.exe: + "/Thornblood.exe": - when: - bit: 64 os: windows store: steam - /game.exe: + "/game.exe": - when: - store: steam steam: id: 989050 -'Elleros Origins: Wytchsun': +"Elleros Origins: Wytchsun": installDir: Wytchsun: {} launch: - /Wytchsun_IH.exe: + "/Wytchsun_IH.exe": - when: - bit: 64 os: windows @@ -174015,27 +174531,27 @@ Ellie: id: 1012140 Elliot Quest: files: - /.config/Elliot Quest: + "/.config/Elliot Quest": tags: - config when: - os: linux - /Library/Application Support/Elliot Quest: + "/Library/Application Support/Elliot Quest": tags: - config when: - os: mac - /userdata//293440/remote/eq_save_*.dat: + "/userdata//293440/remote/eq_save_*.dat": tags: - save when: - store: steam - /userdata//293440/remote/eq_settings.dat: + "/userdata//293440/remote/eq_settings.dat": tags: - config when: - store: steam - /Elliot Quest: + "/Elliot Quest": tags: - config when: @@ -174043,25 +174559,28 @@ Elliot Quest: installDir: ElliotQuestApp: {} launch: - /ElliotQuest.exe: + "/ElliotQuest.exe": - when: - os: windows store: steam - /elliot_quest.app: + "/elliot_quest.app": - when: - bit: 64 os: mac store: steam - /elliot_quest/elliot: + "/elliot_quest/elliot": - when: - bit: 32 os: linux store: steam + - bit: 64 + os: linux + store: steam steam: id: 293440 Ellipsis: files: - /appdata/LocalLow/Salmi GmbH/Ellipsis/Saves: + "/appdata/LocalLow/Salmi GmbH/Ellipsis/Saves": tags: - save when: @@ -174069,20 +174588,20 @@ Ellipsis: installDir: Ellipsis: {} launch: - /Ellipsis.app: + "/Ellipsis.app": - when: - os: mac store: steam - /Ellipsis.exe: + "/Ellipsis.exe": - when: - os: windows store: steam - /Ellipsis.x86: + "/Ellipsis.x86": - when: - bit: 32 os: linux store: steam - /Ellipsis.x86_64: + "/Ellipsis.x86_64": - when: - bit: 64 os: linux @@ -174093,7 +174612,7 @@ EllrLand: installDir: Ellrland: {} launch: - /EllrLand.exe: + "/EllrLand.exe": - when: - store: steam steam: @@ -174102,21 +174621,21 @@ Elly The Jelly: installDir: Elly The Jelly: {} launch: - /EllyTheJelly.app: + "/EllyTheJelly.app": - when: - os: mac store: steam - /EllyTheJelly.exe: + "/EllyTheJelly.exe": - when: - os: windows store: steam steam: id: 681670 -'Elmarion: Dragon time': +"Elmarion: Dragon time": installDir: Elmarion Dragon time: {} launch: - /ElmarionDragon time.exe: + "/ElmarionDragon time.exe": - when: - store: steam steam: @@ -174125,7 +174644,7 @@ Elmia: installDir: ELMIA_forWindows_Ver2.00_Data: {} launch: - /ELMIA_forWindows_Ver2.00.exe: + "/ELMIA_forWindows_Ver2.00.exe": - when: - os: windows store: steam @@ -174133,7 +174652,7 @@ Elmia: id: 738020 Elminage Gothic: files: - /My Games/Ghostlight Ltd/Elminage Gothic/*.sav: + "/My Games/Ghostlight Ltd/Elminage Gothic/*.sav": tags: - save when: @@ -174143,17 +174662,17 @@ Elminage Gothic: installDir: Elminage Gothic: {} launch: - /Elminage.exe: + "/Elminage.exe": - when: - os: windows store: steam steam: id: 291960 -'Elminage Original: Priestess of Darkness and the Ring of the Gods': +"Elminage Original: Priestess of Darkness and the Ring of the Gods": installDir: EO: {} launch: - /Elminage.exe: + "/Elminage.exe": - when: - os: windows store: steam @@ -174161,12 +174680,12 @@ Elminage Gothic: id: 618710 Elo Hell: files: - /userdata/68091703/655940/remote: + "/userdata/68091703/655940/remote": tags: - save when: - store: steam - /EloHell/Saved/Config/WindowsNoEditor: + "/EloHell/Saved/Config/WindowsNoEditor": tags: - config when: @@ -174174,7 +174693,7 @@ Elo Hell: installDir: Elo Hell: {} launch: - /EloHell.exe: + "/EloHell.exe": - when: - bit: 32 os: windows @@ -174191,7 +174710,7 @@ Elon Must - Road to Respect: installDir: Elon Must - Road to Respect: {} launch: - /Road to Respect.exe: + "/Road to Respect.exe": - when: - bit: 64 os: windows @@ -174202,25 +174721,25 @@ Elon Simulator 2019: installDir: Elon Simulator 2019: {} launch: - /Elon Simulator 2019.app/Contents/MacOS/Elon Simulator 2019: + "/Elon Simulator 2019.app/Contents/MacOS/Elon Simulator 2019": - when: - os: mac store: steam - /Elon Simulator 2019.exe: + "/Elon Simulator 2019.exe": - when: - os: windows store: steam - /Elon Simulator 2019.x86: + "/Elon Simulator 2019.x86": - when: - os: linux store: steam steam: id: 1116550 -'Elpida: Crônicas de uma guerreira': +"Elpida: Crônicas de uma guerreira": installDir: Elpida Crônicas de uma guerreira: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -174228,7 +174747,7 @@ Elon Simulator 2019: id: 1069290 Else Heart.Break(): files: - /ElseHeartbreak_Data/Saves: + "/ElseHeartbreak_Data/Saves": tags: - save when: @@ -174238,15 +174757,15 @@ Else Heart.Break(): installDir: ElseHeartbreak: {} launch: - /ElseHeartbreak: + "/ElseHeartbreak": - when: - os: linux store: steam - /ElseHeartbreak.app: + "/ElseHeartbreak.app": - when: - os: mac store: steam - /ElseHeartbreak.exe: + "/ElseHeartbreak.exe": - when: - os: windows store: steam @@ -174256,15 +174775,15 @@ Else Heart.Break(): - config steam: id: 400110 -'Elsewhere High: Chapter 1 - A Visual Novel': +"Elsewhere High: Chapter 1 - A Visual Novel": installDir: Elsewhere High Chapter 1: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam - /nwjs.app: + "/nwjs.app": - when: - os: mac store: steam @@ -174274,16 +174793,16 @@ Elsinore: installDir: Elsinore: {} launch: - /Elsinore: + "/Elsinore": - when: - bit: 64 os: linux store: steam - /Elsinore.app: + "/Elsinore.app": - when: - os: mac store: steam - /Elsinore.exe: + "/Elsinore.exe": - when: - os: windows store: steam @@ -174297,7 +174816,7 @@ Elsword: installDir: Elsword (Anime MMO): {} launch: - /steam_launcher.exe: + "/steam_launcher.exe": - arguments: steam when: - store: steam @@ -174310,11 +174829,11 @@ Elude: installDir: Elude: {} launch: - /Elude.app/Contents/MacOS/Elude: + "/Elude.app/Contents/MacOS/Elude": - when: - os: mac store: steam - /Elude.exe: + "/Elude.exe": - when: - os: windows store: steam @@ -174327,7 +174846,7 @@ Elven Assassin: id: 503770 Elven Legacy: files: - /Elven Legacy Profiles/Profiles/Profile.*: + "/Elven Legacy Profiles/Profiles/Profile.*": tags: - config - save @@ -174337,15 +174856,15 @@ Elven Legacy: id: 1455891732 id: steamExtra: - - 42950 - 25850 - - 42940 - - 42930 - 25880 + - 42930 + - 42940 + - 42950 installDir: Elven Legacy: {} launch: - /ElvenLegacy.exe: + "/ElvenLegacy.exe": - when: - store: steam steam: @@ -174354,33 +174873,33 @@ Elven Legend: installDir: Elven Legend: {} launch: - /ElvenLegend.app: + "/ElvenLegend.app": - when: - os: mac store: steam - /ElvenLegend.exe: + "/ElvenLegend.exe": - when: - os: windows store: steam - /ElvenLegend.x86: + "/ElvenLegend.x86": - when: - os: linux store: steam steam: id: 593410 -'Elven Legend 2: The Bewitched Tree': +"Elven Legend 2: The Bewitched Tree": installDir: Elven Legend 2 The Bewitched Tree: {} launch: - /ElvenLegend2.app: + "/ElvenLegend2.app": - when: - os: mac store: steam - /ElvenLegend2.exe: + "/ElvenLegend2.exe": - when: - os: windows store: steam - /ElvenLegend2.x86: + "/ElvenLegend2.x86": - when: - os: linux store: steam @@ -174395,41 +174914,41 @@ Elven Magic: installDir: Elven Magic: {} launch: - /ElvenMagic2MAConMAC.app/Contents/MacOS/ElvenMagic2MacOnMac: + "/ElvenMagic2MAConMAC.app/Contents/MacOS/ElvenMagic2MacOnMac": - when: - os: mac store: steam - workingDir: /ElvenMagic2MAConMAC.app/Contents/MacOS - /ElvenMagic2Win.exe: + workingDir: "/ElvenMagic2MAConMAC.app/Contents/MacOS" + "/ElvenMagic2Win.exe": - when: - os: windows store: steam - /ElvenMagicProMAConMAC.app/Contents/MacOS/ElvenMagicProMAConMAC: + "/ElvenMagicProMAConMAC.app/Contents/MacOS/ElvenMagicProMAConMAC": - when: - os: mac store: steam - workingDir: /ElvenMagicProMAConMAC.app/Contents/MacOS - /ElvenMagicProWin.exe: + workingDir: "/ElvenMagicProMAConMAC.app/Contents/MacOS" + "/ElvenMagicProWin.exe": - when: - os: windows store: steam - /ElvenMagicSE/ElvenMagicSEWin.exe: + "/ElvenMagicSE/ElvenMagicSEWin.exe": - when: - os: windows store: steam - workingDir: /ElvenMagicSE - /ElvenMagicSEMAConMAC.app/Contents/MacOS/EMMMORPGKIT: + workingDir: "/ElvenMagicSE" + "/ElvenMagicSEMAConMAC.app/Contents/MacOS/EMMMORPGKIT ": - when: - os: mac store: steam - workingDir: /ElvenMagicSEMAConMAC.app/Contents/MacOS + workingDir: "/ElvenMagicSEMAConMAC.app/Contents/MacOS" steam: id: 923140 Elves Adventure: installDir: Elves Adventure: {} launch: - /Elves Adventure.exe: + "/Elves Adventure.exe": - when: - os: windows store: steam @@ -174439,26 +174958,26 @@ Elves vs Goblins Defender: installDir: Elves vs Goblins Defender: {} launch: - /ElvesVsGoblins.exe: + "/ElvesVsGoblins.exe": - when: - os: windows store: steam steam: id: 516740 -'Elvira II: The Jaws of Cerberus': +"Elvira II: The Jaws of Cerberus": gog: id: 1270268814 -'Elvira: Mistress of the Dark': +"Elvira: Mistress of the Dark": gog: id: 1403214533 Elysium VR: steam: id: 808790 -'Elysium: Blood Games': +"Elysium: Blood Games": installDir: Elysium Blood Games: {} launch: - /elysium.exe: + "/elysium.exe": - when: - os: windows store: steam @@ -174468,7 +174987,7 @@ Em-A-Li: installDir: Em-A-Li: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: @@ -174477,7 +174996,7 @@ Embark: installDir: Embark: {} launch: - /Embark.exe: + "/Embark.exe": - when: - bit: 64 os: windows @@ -174486,7 +175005,7 @@ Embark: id: 1055090 Embarrassed Shina-chan~ the Naked Wandering College Girl: files: - /data/savedata: + "/data/savedata": tags: - save when: @@ -174494,7 +175013,7 @@ Embarrassed Shina-chan~ the Naked Wandering College Girl: installDir: Embarrassed Shina-chan~ the Naked Wandering College Girl: {} launch: - /shina.exe: + "/shina.exe": - when: - os: windows store: steam @@ -174502,12 +175021,12 @@ Embarrassed Shina-chan~ the Naked Wandering College Girl: id: 2326780 Ember: files: - /Ember: + "/Ember": tags: - save when: - os: windows - /Ember/options.xml: + "/Ember/options.xml": tags: - config when: @@ -174517,7 +175036,7 @@ Ember: installDir: Ember: {} launch: - /Ember.exe: + "/Ember.exe": - when: - os: windows store: steam @@ -174527,11 +175046,11 @@ Ember Kaboom: installDir: Ember Kaboom: {} launch: - /emberkaboom.app: + "/emberkaboom.app": - when: - os: mac store: steam - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -174541,7 +175060,7 @@ Ember Strike: installDir: Ember Strike: {} launch: - /EmberStrike.exe: + "/EmberStrike.exe": - when: - os: windows store: steam @@ -174551,7 +175070,7 @@ Emberdoom: installDir: Emberdoom: {} launch: - /Emberdoom.exe: + "/Emberdoom.exe": - when: - os: windows store: steam @@ -174566,15 +175085,15 @@ Emberlight: installDir: Emberlight: {} launch: - /Emberlight.app/Contents/MacOS/Emberlight: + "/Emberlight.app/Contents/MacOS/Emberlight": - when: - os: mac store: steam - /Emberlight.exe: + "/Emberlight.exe": - when: - os: windows store: steam - /Emberlight.x86_64: + "/Emberlight.x86_64": - when: - os: linux store: steam @@ -174584,15 +175103,15 @@ Embers of Magic: installDir: Embers of Magic: {} launch: - /Embers of Magic.app: + "/Embers of Magic.app": - when: - os: mac store: steam - /Embers of Magic.exe: + "/Embers of Magic.exe": - when: - os: windows store: steam - /Embers of Magic.sh: + "/Embers of Magic.sh": - when: - os: linux store: steam @@ -174600,7 +175119,7 @@ Embers of Magic: id: 526400 Embers of Mirrim: files: - /userdata//596080/remote: + "/userdata//596080/remote": tags: - save when: @@ -174609,7 +175128,7 @@ Embers of Mirrim: installDir: Embers of Mirrim: {} launch: - /EmbersofMirrim.exe: + "/EmbersofMirrim.exe": - when: - os: windows store: steam @@ -174623,7 +175142,7 @@ Embers of War: installDir: Embers of War: {} launch: - /EmbersOfWar.exe: + "/EmbersOfWar.exe": - when: - os: windows store: steam @@ -174641,12 +175160,12 @@ Embr: installDir: Embr: {} launch: - /FireProject.exe: - - arguments: '-force-d3d11' + "/FireProject.exe": + - arguments: "-force-d3d11" when: - os: windows store: steam - - arguments: '-force-vulkan' + - arguments: "-force-vulkan" when: - os: windows store: steam @@ -174657,15 +175176,15 @@ Embr: - save steam: id: 1062830 -'Embrace of Ocean: Story of Hope': +"Embrace of Ocean: Story of Hope": installDir: Embrace of Ocean Story of Hope: {} launch: - /EmbraseOfOceane.app: + "/EmbraseOfOceane.app": - when: - os: mac store: steam - /EmbraseOfOceane.exe: + "/EmbraseOfOceane.exe": - when: - os: windows store: steam @@ -174680,8 +175199,8 @@ Embrace the Three Kingdoms OL: installDir: Embrace the Three Kingdoms: {} launch: - /pc_3p.exe: - - arguments: '-entrance steam' + "/pc_3p.exe": + - arguments: "-entrance steam" when: - os: windows store: steam @@ -174693,7 +175212,7 @@ Embracelet: installDir: Embracelet: {} launch: - /Embracelet.exe: + "/Embracelet.exe": - when: - os: windows store: steam @@ -174707,11 +175226,11 @@ Emerald City Confidential: installDir: Emerald City Confidential: {} launch: - /ECC.exe: + "/ECC.exe": - when: - os: windows store: steam - /Emerald City Confidential.app: + "/Emerald City Confidential.app": - when: - os: mac store: steam @@ -174721,22 +175240,22 @@ Emerald Shores: installDir: Emerald Shores: {} launch: - /Emerald Shores.exe: + "/Emerald Shores.exe": - when: - os: windows store: steam - /Emerald_Shores/runner: + "/Emerald_Shores/runner": - when: - os: linux store: steam - workingDir: /Emerald_Shores + workingDir: "/Emerald_Shores" steam: id: 970470 -'Emerge: Cities of the Apocalypse': +"Emerge: Cities of the Apocalypse": installDir: Emerge Cities of the Apocalypse: {} launch: - /emerge.exe: + "/emerge.exe": - when: - os: windows store: steam @@ -174746,11 +175265,11 @@ EmergeNYC: installDir: EmergeNYC: {} launch: - /EmergeNYC.app: + "/EmergeNYC.app": - when: - os: mac store: steam - /EmergeNYC.exe: + "/EmergeNYC.exe": - when: - os: windows store: steam @@ -174760,11 +175279,11 @@ Emergency 20: installDir: EMERGENCY 20: {} launch: - /Emergency20.app: + "/Emergency20.app": - when: - os: mac store: steam - /bin/em5_launcher.exe: + "/bin/em5_launcher.exe": - when: - os: windows store: steam @@ -174772,12 +175291,12 @@ Emergency 20: id: 735280 Emergency 2012: files: - /Quadriga Games/Emergency 2012: + "/Quadriga Games/Emergency 2012": tags: - save when: - os: windows - /Quadriga Games/Emergency 2012/em2012.cfg: + "/Quadriga Games/Emergency 2012/em2012.cfg": tags: - config when: @@ -174785,20 +175304,20 @@ Emergency 2012: installDir: Emergency 2012: {} launch: - /bin.x86/em2012.exe: + "/bin.x86/em2012.exe": - when: - store: steam - workingDir: /bin.x86 + workingDir: "/bin.x86" steam: id: 40370 Emergency 2014: files: - /Quadriga Games/Emergency 2014: + "/Quadriga Games/Emergency 2014": tags: - save when: - os: windows - /Quadriga Games/Emergency 2014/em2014.cfg: + "/Quadriga Games/Emergency 2014/em2014.cfg": tags: - config when: @@ -174806,7 +175325,7 @@ Emergency 2014: installDir: Emergency 2014: {} launch: - /bin.x86/em2014.exe: + "/bin.x86/em2014.exe": - when: - os: windows store: steam @@ -174816,7 +175335,7 @@ Emergency 2016: installDir: Emergency 2016: {} launch: - /bin/em5_launcher.exe: + "/bin/em5_launcher.exe": - when: - store: steam steam: @@ -174825,29 +175344,30 @@ Emergency 2017: installDir: Emergency 2017: {} launch: - /bin/em5_launcher.exe: + "/bin/em5_launcher.exe": - when: - bit: 64 os: windows store: steam steam: id: 524110 -'Emergency 2: The Ultimate Fight for Life': +"Emergency 2: The Ultimate Fight for Life": files: - /SaveGames: + "/SaveGames": tags: - save when: - os: windows - /Saved Games/Emergency 2/savegames: + "/Saved Games/Emergency 2/savegames": tags: - save when: - - store: steam + - os: windows + store: steam installDir: EMERGENCY 2: {} launch: - /Emergency2.exe: + "/Emergency2.exe": - when: - store: steam registry: @@ -174856,14 +175376,14 @@ Emergency 2017: - config steam: id: 977840 -'Emergency 3: Mission:Life': +"Emergency 3: Mission:Life": files: - /Data/Save: + "/Data/Save": tags: - save when: - os: windows - /em3.cfg: + "/em3.cfg": tags: - config when: @@ -174871,25 +175391,25 @@ Emergency 2017: installDir: EMERGENCY 3: {} launch: - /Em3.exe: - - arguments: '-game' + "/Em3.exe": + - arguments: "-game" when: - store: steam steam: id: 757200 -'Emergency 4: Global Fighters for Life': +"Emergency 4: Global Fighters for Life": files: - /Data/Save/campaignprogress.xml: + "/Data/Save/campaignprogress.xml": tags: - save when: - os: windows - /Data/Specs/keys.xml: + "/Data/Specs/keys.xml": tags: - config when: - os: windows - /em4.cfg: + "/em4.cfg": tags: - config when: @@ -174897,7 +175417,7 @@ Emergency 2017: installDir: 911 First Responders: {} launch: - /em4.exe: + "/em4.exe": - when: - store: steam steam: @@ -174906,11 +175426,11 @@ Emergency Robot Simulator: installDir: Emergency Robot Simulator: {} launch: - /Emergency Robot Simulator.app/Contents/MacOS/Emergency Robot Simulator: + "/Emergency Robot Simulator.app/Contents/MacOS/Emergency Robot Simulator": - when: - os: mac store: steam - /Emergency Robot Simulator.exe: + "/Emergency Robot Simulator.exe": - when: - os: windows store: steam @@ -174920,25 +175440,25 @@ Emergency Water Landing: installDir: Emergency Water Landing: {} launch: - /Emergency Water Landing.exe: + "/Emergency Water Landing.exe": - when: - bit: 64 os: windows store: steam steam: id: 1053920 -'Emergency: Fighters for Life': +"Emergency: Fighters for Life": files: - /*.sav: + "/*.sav": tags: - save when: - os: windows -'Emerland Solitaire: Endless Journey': +"Emerland Solitaire: Endless Journey": installDir: Emerland Solitaire Endless Journey: {} launch: - /EmerlandSolitaireEndlessJourney.exe: + "/EmerlandSolitaireEndlessJourney.exe": - when: - store: steam steam: @@ -174947,7 +175467,7 @@ Emily Archer and the Curse of Tutankhamun: installDir: Emily Archer and the Curse of Tutankhamun: {} launch: - /EmilyArcherPC.exe: + "/EmilyArcherPC.exe": - when: - os: windows store: steam @@ -174957,15 +175477,15 @@ Emily Is Away: installDir: Emily is Away: {} launch: - /emily is away.app: + "/emily is away.app": - when: - os: mac store: steam - /emily is away.exe: + "/emily is away.exe": - when: - os: windows store: steam - /emily is away.x86: + "/emily is away.x86": - when: - os: linux store: steam @@ -174978,7 +175498,7 @@ Emily Is Away: id: 417860 Emily Is Away 3: files: - /AppData/LocalLow/KyleSeeley/Facenook - Welcome to Facenook: + "/AppData/LocalLow/KyleSeeley/Facenook - Welcome to Facenook": tags: - save when: @@ -174986,11 +175506,11 @@ Emily Is Away 3: installDir: Emily is Away 3: {} launch: - /Emily3.app: + "/Emily3.app": - when: - os: mac store: steam - /Emily3.exe: + "/Emily3.exe": - when: - os: windows store: steam @@ -175000,15 +175520,15 @@ Emily Is Away Too: installDir: Emily is Away Too: {} launch: - /EmilyIsAwayToo.app: + "/EmilyIsAwayToo.app": - when: - os: mac store: steam - /EmilyIsAwayToo.exe: + "/EmilyIsAwayToo.exe": - when: - os: windows store: steam - /EmilyIsAwayToo.x86: + "/EmilyIsAwayToo.x86": - when: - os: linux store: steam @@ -175022,13 +175542,16 @@ Emily Wants to Play: installDir: Emily Wants To Play: {} launch: - /EmilyWantsToPlay.app: + "/EmilyWantsToPlay.app": - when: - bit: 64 os: mac store: steam - /EmilyWantsToPlay.exe: + "/EmilyWantsToPlay.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam @@ -175036,7 +175559,7 @@ Emily Wants to Play: id: 416590 Emily Wants to Play Too: files: - /EWTP_Too: + "/EWTP_Too": tags: - config - save @@ -175045,34 +175568,37 @@ Emily Wants to Play Too: installDir: Emily Wants to Play Too: {} launch: - /EWTP_Too.app: + "/EWTP_Too.app": - when: - os: mac store: steam - /EWTP_Too.exe: + "/EWTP_Too.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam - /EWTP_Too.sh: + "/EWTP_Too.sh": - when: - bit: 64 os: linux store: steam steam: id: 652190 -Emily's Adventure: +"Emily's Adventure": steam: id: 888550 -'Emily: Displaced': +"Emily: Displaced": installDir: Emily Displaced: {} launch: - /Emily Displaced.app: + "/Emily Displaced.app": - when: - os: mac store: steam - /Emily Displaced.exe: + "/Emily Displaced.exe": - when: - os: windows store: steam @@ -175082,8 +175608,8 @@ Emission VR: installDir: Emission VR: {} launch: - /Emission.exe: - - arguments: '-screen-quality Fantastic -show-screen-selector -screen-fullscreen 1 -screen-height 1080 -screen-width 1920' + "/Emission.exe": + - arguments: "-screen-quality Fantastic -show-screen-selector -screen-fullscreen 1 -screen-height 1080 -screen-width 1920" when: - os: windows store: steam @@ -175093,28 +175619,28 @@ Emitters: installDir: Emitters: {} launch: - /Emitters.sh: + "/Emitters.sh": - when: - bit: 64 os: linux store: steam steam: id: 920640 -'Emma: The Story': +"Emma: The Story": installDir: EMMA: {} launch: - /Default Mac desktop Universal.app: + "/Default Mac desktop Universal.app": - when: - os: mac store: steam - /Default Windows desktop 32-bit.exe: + "/Default Windows desktop 32-bit.exe": - when: - os: windows store: steam steam: id: 831720 -'Emmerholt: Prologue': +"Emmerholt: Prologue": installDir: Emmerholt Prologue: {} steam: @@ -175126,16 +175652,16 @@ Emoj.io: installDir: emoojio: {} launch: - /bin/main: + "/bin/main": - when: - os: linux store: steam - workingDir: /bin - /emojio.app: + workingDir: "/bin" + "/emojio.app": - when: - os: mac store: steam - /main.exe: + "/main.exe": - when: - os: windows store: steam @@ -175145,11 +175671,11 @@ Emoji Charades: installDir: Emoji Charades: {} launch: - /EmojiCharades.app/Contents/MacOS/EmojiCharades: + "/EmojiCharades.app/Contents/MacOS/EmojiCharades": - when: - os: mac store: steam - /EmojiCharades.exe: + "/EmojiCharades.exe": - when: - os: windows store: steam @@ -175159,28 +175685,28 @@ Emoji TD: installDir: Emoji TD: {} launch: - /Emoji TD.exe: + "/Emoji TD.exe": - when: - os: windows store: steam - /EmojiTD.app/Contents/MacOS/Emoji TD: + "/EmojiTD.app/Contents/MacOS/Emoji TD": - when: - os: mac store: steam - /emojitd.x86_64: + "/emojitd.x86_64": - when: - os: linux store: steam steam: id: 1058220 -'Empathy: Path of Whispers': +"Empathy: Path of Whispers": files: - /Empathy/Saved/Config/WindowsNoEditor: + "/Empathy/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /Empathy/Saved/SaveGames: + "/Empathy/Saved/SaveGames": tags: - save when: @@ -175188,7 +175714,7 @@ Emoji TD: installDir: Empathy: {} launch: - /Empathy.exe: + "/Empathy.exe": - when: - os: windows store: steam @@ -175198,7 +175724,7 @@ Emperor Kingdom: installDir: Emperor Kingdom: {} launch: - /EmperorKingdom.exe: + "/EmperorKingdom.exe": - when: - bit: 64 os: windows @@ -175207,21 +175733,21 @@ Emperor Kingdom: id: 585590 Emperor of the Fading Suns: files: - /DAT/EFS.INI: + "/DAT/EFS.INI": tags: - config when: - os: windows - /SAV: + "/SAV": tags: - save when: - os: windows gog: id: 1886767424 -'Emperor: Battle for Dune': +"Emperor: Battle for Dune": files: - /DATA/saves: + "/DATA/saves": tags: - save when: @@ -175230,9 +175756,9 @@ Emperor of the Fading Suns: HKEY_LOCAL_MACHINE/SOFTWARE/WOW6432Node/Westwood/Emperor/Options: tags: - config -'Emperor: Rise of the Middle Kingdom': +"Emperor: Rise of the Middle Kingdom": files: - /Save: + "/Save": tags: - save when: @@ -175243,7 +175769,7 @@ Empire: installDir: Empire: {} launch: - /Empire.exe: + "/Empire.exe": - when: - os: windows store: steam @@ -175253,12 +175779,12 @@ Empire - Wargame of new Century: installDir: Empire - Wargame of new Century: {} launch: - /Empire.exe: + "/Empire.exe": - when: - bit: 64 os: windows store: steam - /Empire32.exe: + "/Empire32.exe": - when: - os: windows store: steam @@ -175268,7 +175794,7 @@ Empire Architect: installDir: Empire Architect: {} launch: - /Empire Architect.exe: + "/Empire Architect.exe": - when: - os: windows store: steam @@ -175278,21 +175804,24 @@ Empire Deluxe Combined Edition: installDir: Empire Deluxe Combined Edition: {} launch: - /EmpireCombined.app/Contents/MacOS/EmpireCombined: + "/EmpireCombined.app/Contents/MacOS/EmpireCombined": - when: - os: mac store: steam - /EmpireCombined.exe: + "/EmpireCombined.exe": - when: - bit: 32 os: windows store: steam - /EmpireCombined.x86: + - bit: 64 + os: windows + store: steam + "/EmpireCombined.x86": - when: - bit: 32 os: linux store: steam - /EmpireCombined.x86_64: + "/EmpireCombined.x86_64": - when: - bit: 64 os: linux @@ -175301,7 +175830,7 @@ Empire Deluxe Combined Edition: id: 742700 Empire Earth: files: - /Data/Saved Games: + "/Data/Saved Games": tags: - save when: @@ -175320,12 +175849,12 @@ Empire Earth: id: 254760 Empire Earth II: files: - /Sierra/Empire Earth II: + "/Sierra/Empire Earth II": tags: - config when: - os: windows - /Empire Earth II/savegame_SP: + "/Empire Earth II/savegame_SP": tags: - save when: @@ -175340,12 +175869,12 @@ Empire Earth II: id: 254780 Empire Earth III: files: - /Empire Earth III/profiles: + "/Empire Earth III/profiles": tags: - save when: - os: windows - /Empire Earth III/profiles//profile.xml: + "/Empire Earth III/profiles//profile.xml": tags: - config when: @@ -175361,7 +175890,7 @@ Empire Live: installDir: Empire Live: {} launch: - /EmpireLive.exe: + "/EmpireLive.exe": - when: - bit: 64 os: windows @@ -175373,12 +175902,12 @@ Empire Patron: id: 1010910 Empire TV Tycoon: files: - /AppData/LocalLow/Dreamsite Games/Empire TV Tycoon: + "/AppData/LocalLow/Dreamsite Games/Empire TV Tycoon": tags: - config when: - os: windows - /AppData/LocalLow/Dreamsite Games/Empire TV Tycoon/savegames: + "/AppData/LocalLow/Dreamsite Games/Empire TV Tycoon/savegames": tags: - save when: @@ -175386,24 +175915,24 @@ Empire TV Tycoon: installDir: Empire TV Tycoon: {} launch: - /EmpireTV.app: - - arguments: '-force-d3d9' + "/EmpireTV.app": + - arguments: "-force-d3d9" when: - os: mac store: steam - /EmpireTV.exe: - - arguments: '-force-d3d9' + "/EmpireTV.exe": + - arguments: "-force-d3d9" when: - os: windows store: steam - /EmpireTV.x86: - - arguments: '-force-d3d9' + "/EmpireTV.x86": + - arguments: "-force-d3d9" when: - bit: 32 os: linux store: steam - /EmpireTV.x86_64: - - arguments: '-force-d3d9' + "/EmpireTV.x86_64": + - arguments: "-force-d3d9" when: - bit: 64 os: linux @@ -175414,7 +175943,7 @@ Empire of Angels IV: installDir: EOA4: {} launch: - /EOA4.exe: + "/EOA4.exe": - when: - os: windows store: steam @@ -175427,7 +175956,7 @@ Empire of Ember: installDir: Empire of Ember: {} launch: - /Empire of Ember.exe: + "/Empire of Ember.exe": - when: - bit: 64 os: windows @@ -175438,11 +175967,11 @@ Empire of Sin: installDir: EmpireOfSin: {} launch: - /EmpireOfSin.app/Contents/ParadoxLauncher/dowser: + "/EmpireOfSin.app/Contents/ParadoxLauncher/dowser": - when: - os: mac store: steam - /ParadoxLauncher/dowser.exe: + "/ParadoxLauncher/dowser.exe": - when: - os: windows store: steam @@ -175450,12 +175979,12 @@ Empire of Sin: id: 604540 Empire of the Ants: files: - /Savegame: + "/Savegame": tags: - save when: - os: windows - /ini: + "/ini": tags: - config when: @@ -175474,7 +176003,7 @@ Empire of the Fallen Steel: installDir: Empire of the Fallen Steel: {} launch: - /Eotfs.exe: + "/Eotfs.exe": - when: - os: windows store: steam @@ -175484,54 +176013,54 @@ Empire of the Gods: installDir: Empire of the Gods: {} launch: - /Empire of the Gods: + "/Empire of the Gods": - when: - os: linux store: steam - /Empire of the Gods 32bit.exe: + "/Empire of the Gods 32bit.exe": - when: - bit: 32 os: windows store: steam - /Empire of the Gods.app: + "/Empire of the Gods.app": - when: - os: mac store: steam - /Empire of the Gods.exe: + "/Empire of the Gods.exe": - when: - bit: 64 os: windows store: steam steam: id: 436140 -'Empire: Total War': +"Empire: Total War": files: - /Library/Application Support/Feral Interactive/Empire Total War/AppData: + "/Library/Application Support/Feral Interactive/Empire Total War/AppData": tags: - config when: - os: mac - /Library/Application Support/Feral Interactive/Empire Total War/AppData/save_games: + "/Library/Application Support/Feral Interactive/Empire Total War/AppData/save_games": tags: - save when: - os: mac - /The Creative Assembly/Empire: + "/The Creative Assembly/Empire": tags: - config when: - os: windows - /The Creative Assembly/Empire/save_games: + "/The Creative Assembly/Empire/save_games": tags: - save when: - os: windows - /feral-interactive/Empire/AppData: + "/feral-interactive/Empire/AppData": tags: - config when: - os: linux - /feral-interactive/Empire/AppData/save_games: + "/feral-interactive/Empire/AppData/save_games": tags: - save when: @@ -175550,15 +176079,15 @@ Empire of the Gods: installDir: Empire Total War: {} launch: - /Empire Total War.app: + "/Empire Total War.app": - when: - os: mac store: steam - /Empire.exe: + "/Empire.exe": - when: - os: windows store: steam - /Empire.sh: + "/Empire.sh": - when: - os: linux store: steam @@ -175568,13 +176097,13 @@ Empires: installDir: Empires: {} launch: - /hl2.exe: - - arguments: '-game ./empires -steam -nobreakpad -forceallmips' + "/hl2.exe": + - arguments: "-game ./empires -steam -nobreakpad -forceallmips" when: - os: windows store: steam - /hl2.sh: - - arguments: '-game ./empires -steam -nobreakpad -forceallmips' + "/hl2.sh": + - arguments: "-game ./empires -steam -nobreakpad -forceallmips" when: - os: linux store: steam @@ -175584,7 +176113,7 @@ Empires (2017): installDir: EmpiresPC: {} launch: - /EmpiresPC.exe: + "/EmpiresPC.exe": - when: - bit: 64 os: windows @@ -175600,7 +176129,7 @@ Empires in Ruins: installDir: Empires in Ruins: {} launch: - /Empires In Ruins.exe: + "/Empires In Ruins.exe": - when: - os: windows store: steam @@ -175610,15 +176139,15 @@ Empires of Creation: installDir: Empires Of Creation: {} launch: - /EmpiresOfCreation.app: + "/EmpiresOfCreation.app": - when: - os: mac store: steam - /EmpiresOfCreation.exe: + "/EmpiresOfCreation.exe": - when: - os: windows store: steam - /EmpiresOfCreation.x86: + "/EmpiresOfCreation.x86": - when: - os: linux store: steam @@ -175626,12 +176155,12 @@ Empires of Creation: id: 412250 Empires of the Undergrowth: files: - /EotU/Saved/Config/WindowsNoEditor: + "/EotU/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /EotU/Saved/SaveGames: + "/EotU/Saved/SaveGames": tags: - save when: @@ -175641,15 +176170,15 @@ Empires of the Undergrowth: installDir: Empires of the Undergrowth: {} launch: - /EotU.app: + "/EotU.app": - when: - os: mac store: steam steam: id: 463530 -'Empires: Dawn of the Modern World': +"Empires: Dawn of the Modern World": files: - /Data/Saved Games: + "/Data/Saved Games": tags: - save when: @@ -175659,7 +176188,7 @@ Empires of the Undergrowth: installDir: Empires Dawn of the Modern World: {} launch: - /Empires_DMW.exe: + "/Empires_DMW.exe": - when: - store: steam registry: @@ -175668,16 +176197,16 @@ Empires of the Undergrowth: - config steam: id: 2690 -'Empires:The Rise': +"Empires:The Rise": installDir: EmpiresThe Rise: {} launch: - /Empire_Win_HaiWai.exe: + "/Empire_Win_HaiWai.exe": - when: - os: windows store: steam registry: - 'HKEY_CURRENT_USER/Software/拇指时代/帝国:崛起': + "HKEY_CURRENT_USER/Software/拇指时代/帝国:崛起": tags: - config steam: @@ -175686,29 +176215,29 @@ Employee Recycling Center: installDir: Employee Recycling Center: {} launch: - /Employee_Recycling_Center.app: + "/Employee_Recycling_Center.app": - when: - os: mac store: steam - /Employee_Recycling_Center.exe: + "/Employee_Recycling_Center.exe": - when: - os: windows store: steam - /Employee_Recycling_Center.x86: + "/Employee_Recycling_Center.x86": - when: - os: linux store: steam steam: id: 629030 -'Emporea: Realms of War and Magic': +"Emporea: Realms of War and Magic": installDir: Emporea: {} launch: - /Emporea.exe: + "/Emporea.exe": - when: - os: windows store: steam - /emporea.app/Contents/MacOS/Emporea: + "/emporea.app/Contents/MacOS/Emporea": - when: - os: mac store: steam @@ -175718,7 +176247,7 @@ Emporium: installDir: EMPORIUM: {} launch: - /Emporium.exe: + "/Emporium.exe": - when: - os: windows store: steam @@ -175728,34 +176257,34 @@ Empress of Gold: installDir: Empress of Gold: {} launch: - /EoGFV/EOG.exe: + "/EoGFV/EOG.exe": - when: - os: windows store: steam - /EoGFV/EoG-FVL.x86: + "/EoGFV/EoG-FVL.x86": - when: - os: linux store: steam - /EoGFV/EoGFVMac.app: + "/EoGFV/EoGFVMac.app": - when: - os: mac store: steam steam: id: 705920 -'Empress of the Deep 2: Song of the Blue Whale': +"Empress of the Deep 2: Song of the Blue Whale": installDir: Empress Of The Deep 2 Song Of The Blue Whale: {} launch: - /EmpressoftheDeep2_SongoftheBlueWhale.exe: + "/EmpressoftheDeep2_SongoftheBlueWhale.exe": - when: - store: steam steam: id: 299160 -'Empress of the Deep: The Darkest Secret': +"Empress of the Deep: The Darkest Secret": installDir: Empress Of The Deep: {} launch: - /Empress of the Deep 632.exe: + "/Empress of the Deep 632.exe": - when: - store: steam steam: @@ -175764,11 +176293,11 @@ Empty Handed: installDir: Empty Handed: {} launch: - /Empty Handed.app/Contents/MacOS/nwjs: + "/Empty Handed.app/Contents/MacOS/nwjs": - when: - os: mac store: steam - /Empty Handed.exe: + "/Empty Handed.exe": - when: - os: windows store: steam @@ -175778,15 +176307,15 @@ Empty Horizons: installDir: Empty Horizons: {} launch: - /Empty Horizons.app: + "/Empty Horizons.app": - when: - os: mac store: steam - /Empty Horizons.exe: + "/Empty Horizons.exe": - when: - os: windows store: steam - /Empty Horizons.sh: + "/Empty Horizons.sh": - when: - os: linux store: steam @@ -175796,7 +176325,7 @@ Empty Sharp: installDir: Empty Sharp: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -175806,7 +176335,7 @@ Empty Soul: installDir: Empty Soul: {} launch: - /Empty Soul/Launcher.exe: + "/Empty Soul/Launcher.exe": - when: - os: windows store: steam @@ -175817,11 +176346,11 @@ Empty Town: EmptyTown: {} steam: id: 779620 -'Empyre: Lords of the Sea Gates': +"Empyre: Lords of the Sea Gates": installDir: EMPYRE Lords of the Sea Gates: {} launch: - /empyre.exe: + "/empyre.exe": - when: - os: windows store: steam @@ -175831,15 +176360,15 @@ Empyrean: installDir: Empyrean: {} launch: - /Empyrean: + "/Empyrean": - when: - os: linux store: steam - /Empyrean.app/Contents/MacOS/Empyrean: + "/Empyrean.app/Contents/MacOS/Empyrean": - when: - os: mac store: steam - /Empyrean.exe: + "/Empyrean.exe": - when: - os: windows store: steam @@ -175849,7 +176378,7 @@ Empyrean Frontier: installDir: Empyrean Frontier: {} launch: - /EmpyreanFrontier.application: + "/EmpyreanFrontier.application": - when: - os: windows store: steam @@ -175857,7 +176386,7 @@ Empyrean Frontier: id: 586920 Empyrion - Galactic Survival: files: - /Saves: + "/Saves": tags: - save when: @@ -175865,7 +176394,7 @@ Empyrion - Galactic Survival: installDir: Empyrion - Galactic Survival: {} launch: - /EmpyrionLauncher.exe: + "/EmpyrionLauncher.exe": - when: - bit: 64 os: windows @@ -175880,19 +176409,19 @@ Emu War!: installDir: Emu War!: {} launch: - /EmuWar.exe: + "/EmuWar.exe": - when: - store: steam steam: id: 1031650 En Garde!: files: - /EnGarde/Saved/Config: + "/EnGarde/Saved/Config": tags: - config when: - os: windows - /EnGarde/Saved/SaveGames: + "/EnGarde/Saved/SaveGames": tags: - save when: @@ -175903,8 +176432,8 @@ En Garde!: installDir: EnGarde: {} launch: - /EnGarde.exe: - - arguments: '-DX11' + "/EnGarde.exe": + - arguments: "-DX11" when: - bit: 64 os: windows @@ -175915,7 +176444,7 @@ En Tactico: installDir: En Tactico: {} launch: - /EnTactico.exe: + "/EnTactico.exe": - when: - store: steam steam: @@ -175927,7 +176456,7 @@ EnHanced: installDir: EnHanced: {} launch: - /EnHanced.exe: + "/EnHanced.exe": - when: - os: windows store: steam @@ -175938,22 +176467,22 @@ Enadakina: id: 1004160 Encased: files: - /AppData/LocalLow/Dark Crystal Games/Encased: + "/AppData/LocalLow/Dark Crystal Games/Encased": tags: - config when: - os: windows - /AppData/LocalLow/Dark Crystal Games/Encased/UserProfiles: + "/AppData/LocalLow/Dark Crystal Games/Encased/UserProfiles": tags: - save when: - os: windows - /unity3d/Dark Crystal Games/Encased: + "/unity3d/Dark Crystal Games/Encased": tags: - config when: - os: linux - /unity3d/Dark Crystal Games/Encased/UserProfiles: + "/unity3d/Dark Crystal Games/Encased/UserProfiles": tags: - save when: @@ -175963,11 +176492,11 @@ Encased: installDir: Encased: {} launch: - /Encased.exe: + "/Encased.exe": - when: - os: windows store: steam - /Encased.x86_64: + "/Encased.x86_64": - when: - os: linux store: steam @@ -175977,7 +176506,7 @@ Enceladus: installDir: Enceladus: {} launch: - /Enceladus.exe: + "/Enceladus.exe": - when: - os: windows store: steam @@ -175987,11 +176516,11 @@ EnchantedGirl - 纯情房东俏房客: installDir: EnchantedGirl: {} launch: - /EnchantedGirl.app: + "/EnchantedGirl.app": - when: - os: mac store: steam - /EnchantedGirl.exe: + "/EnchantedGirl.exe": - when: - os: windows store: steam @@ -175999,22 +176528,22 @@ EnchantedGirl - 纯情房东俏房客: id: 858010 Enclave: files: - /Config.mpp: + "/Config.mpp": tags: - config when: - os: windows - /Sbz1/Save: + "/Sbz1/Save": tags: - save when: - os: windows - /environment.cfg: + "/environment.cfg": tags: - config when: - os: windows - /options.cfg: + "/options.cfg": tags: - config when: @@ -176024,15 +176553,15 @@ Enclave: installDir: Enclave: {} launch: - /Enclave.app: + "/Enclave.app": - when: - os: mac store: steam - /RunGame: + "/RunGame": - when: - os: linux store: steam - /enclave.exe: + "/enclave.exe": - when: - os: windows store: steam @@ -176040,40 +176569,40 @@ Enclave: id: 253980 Enclosure: files: - /*.ini: + "/*.ini": tags: - config when: - os: windows - /sg.*: + "/sg.*": tags: - save when: - os: windows Enclosure 3-D: files: - /Enclosure 3-D.app/Contents/Resources/enclosure3d.ini: + "/Enclosure 3-D.app/Contents/Resources/enclosure3d.ini": tags: - config when: - os: mac - /enclosure3d.ini: + "/enclosure3d.ini": tags: - config when: - os: windows - os: linux - /Library/Application Support/Enclosure 3-D: + "/Library/Application Support/Enclosure 3-D": tags: - save when: - os: mac - /Enclosure 3-D: + "/Enclosure 3-D": tags: - save when: - os: windows - /Enclosure 3-D: + "/Enclosure 3-D": tags: - save when: @@ -176081,16 +176610,16 @@ Enclosure 3-D: installDir: Enclosure 3-D: {} launch: - /Enclosure 3-D.app: + "/Enclosure 3-D.app": - when: - os: mac store: steam - /enclosure3d: + "/enclosure3d": - when: - bit: 64 os: linux store: steam - /enclosure3d.exe: + "/enclosure3d.exe": - when: - bit: 64 os: windows @@ -176099,7 +176628,7 @@ Enclosure 3-D: id: 2128440 Encodya: files: - /AppData/LocalLow/chaosmonger studio/ENCODYA/ENCODYA_*.save: + "/AppData/LocalLow/chaosmonger studio/ENCODYA/ENCODYA_*.save": tags: - save when: @@ -176109,16 +176638,16 @@ Encodya: installDir: ENCODYA: {} launch: - /ENCODYA.app/Contents/MacOS/ENCODYA: + "/ENCODYA.app/Contents/MacOS/ENCODYA": - when: - os: mac store: steam - /ENCODYA.exe: + "/ENCODYA.exe": - when: - bit: 64 os: windows store: steam - /ENCODYA.x86_64: + "/ENCODYA.x86_64": - when: - bit: 64 os: linux @@ -176133,7 +176662,7 @@ Encompassed: installDir: Encompassed: {} launch: - /Encompassed.exe: + "/Encompassed.exe": - when: - os: windows store: steam @@ -176143,11 +176672,11 @@ Encore Card Games Collection: installDir: Encore_Card_Games: {} launch: - /Encore Card Games.app: + "/Encore Card Games.app": - when: - os: mac store: steam - /EncoreCardGames.exe: + "/EncoreCardGames.exe": - when: - os: windows store: steam @@ -176157,11 +176686,11 @@ Encore Casino Games Collection: installDir: Encore Casino Games: {} launch: - /Encore Casino Games.app: + "/Encore Casino Games.app": - when: - os: mac store: steam - /EncoreCasinoGames.exe: + "/EncoreCasinoGames.exe": - when: - os: windows store: steam @@ -176171,7 +176700,7 @@ Encounter of Galaxies: installDir: Encounter of Galaxies: {} launch: - /Scroller.exe: + "/Scroller.exe": - when: - store: steam steam: @@ -176180,7 +176709,7 @@ End Space: installDir: End Space: {} launch: - /End Space.exe: + "/End Space.exe": - when: - bit: 64 os: windows @@ -176191,7 +176720,7 @@ End State: installDir: End State: {} launch: - /EndState.exe: + "/EndState.exe": - when: - bit: 64 os: windows @@ -176202,7 +176731,7 @@ End War RTS: installDir: end War RTS: {} launch: - /EndWarRTS.exe: + "/EndWarRTS.exe": - when: - os: windows store: steam @@ -176217,11 +176746,11 @@ End of Realms: installDir: End of Realms: {} launch: - /End_of_Realms: + "/End_of_Realms": - when: - os: linux store: steam - /End_of_Realms.exe: + "/End_of_Realms.exe": - when: - os: windows store: steam @@ -176231,7 +176760,7 @@ End of War 1945: installDir: End of War 1945: {} launch: - /EndofWar_1945.exe: + "/EndofWar_1945.exe": - when: - bit: 64 os: windows @@ -176242,11 +176771,11 @@ End of the Mine: installDir: End of the Mine: {} launch: - /End of the Mine.app: + "/End of the Mine.app": - when: - os: mac store: steam - /End of the Mine.exe: + "/End of the Mine.exe": - when: - os: windows store: steam @@ -176261,12 +176790,12 @@ EndCycle VS: installDir: EndCycle VS: {} launch: - /EndCycle.exe: + "/EndCycle.exe": - when: - os: windows store: steam - /jre/bin/java: - - arguments: '-jar game.jar' + "/jre/bin/java": + - arguments: "-jar game.jar" when: - bit: 64 os: linux @@ -176277,15 +176806,15 @@ EndZ Village: installDir: EndZVillage: {} launch: - /EndZ Village.app/Contents/MacOS/EndZ Village: + "/EndZ Village.app/Contents/MacOS/EndZ Village": - when: - os: mac store: steam - /EndZ Village.exe: + "/EndZ Village.exe": - when: - os: windows store: steam - /EndZ Village.x86_64: + "/EndZ Village.x86_64": - when: - os: linux store: steam @@ -176295,7 +176824,7 @@ Endangered: installDir: Endangered: {} launch: - /Endangered.exe: + "/Endangered.exe": - when: - os: windows store: steam @@ -176308,19 +176837,19 @@ Endciv: installDir: Endciv: {} launch: - /Endciv.exe: + "/Endciv.exe": - when: - os: windows store: steam - /Endciv.x86: + "/Endciv.x86": - when: - os: linux store: steam steam: id: 444650 -'Ender Lilies: Quietus of the Knights': +"Ender Lilies: Quietus of the Knights": files: - /EnderLilies/Saved/SaveGames: + "/EnderLilies/Saved/SaveGames": tags: - save when: @@ -176328,36 +176857,36 @@ Endciv: installDir: ENDER LILIES: {} launch: - /EnderLilies.exe: + "/EnderLilies.exe": - when: - bit: 64 os: windows store: steam - /EnderLilies.sh: + "/EnderLilies.sh": - when: - bit: 64 os: linux store: steam steam: id: 1369630 -'Ender Story: Chapter 1': +"Ender Story: Chapter 1": installDir: Ender Story Chapter 1: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam steam: id: 760300 -'Enderal: Forgotten Stories': +"Enderal: Forgotten Stories": files: - /My Games/Enderal: + "/My Games/Enderal": tags: - config when: - os: windows - /My Games/Enderal/Saves: + "/My Games/Enderal/Saves": tags: - save when: @@ -176365,15 +176894,15 @@ Endciv: installDir: Enderal: {} launch: - /Enderal Launcher.exe: + "/Enderal Launcher.exe": - when: - os: windows store: steam steam: id: 933480 -'Enderal: Forgotten Stories (Special Edition)': +"Enderal: Forgotten Stories (Special Edition)": files: - /My Games/Enderal Special Edition/Saves: + "/My Games/Enderal Special Edition/Saves": tags: - save when: @@ -176386,7 +176915,7 @@ Endciv: installDir: Enderal Special Edition: {} launch: - /Enderal Launcher.exe: + "/Enderal Launcher.exe": - when: - store: steam steam: @@ -176395,7 +176924,7 @@ Endersite: installDir: Endersite: {} launch: - /Endersite.exe: + "/Endersite.exe": - when: - os: windows store: steam @@ -176405,16 +176934,16 @@ Endhall: installDir: Endhall: {} launch: - /Endhall: + "/Endhall": - when: - bit: 64 os: linux store: steam - /Endhall.app: + "/Endhall.app": - when: - os: mac store: steam - /Endhall.exe: + "/Endhall.exe": - when: - os: windows store: steam @@ -176424,7 +176953,7 @@ Endica VII The Dream King: installDir: Endica 07 The Dream King: {} launch: - /Endica 07 The Dream King.exe: + "/Endica 07 The Dream King.exe": - when: - os: windows store: steam @@ -176434,7 +176963,7 @@ Endless ATC: installDir: Endless ATC: {} launch: - /Endless ATC.exe: + "/Endless ATC.exe": - when: - os: windows store: steam @@ -176444,7 +176973,7 @@ Endless Battle: installDir: EndlessBattle: {} launch: - /cos.exe: + "/cos.exe": - when: - os: windows store: steam @@ -176454,7 +176983,7 @@ Endless Burst: installDir: Endless Burst: {} launch: - /EndlessBurst.exe: + "/EndlessBurst.exe": - when: - os: windows store: steam @@ -176470,12 +176999,12 @@ Endless Combat: installDir: Endless Combat: {} launch: - /EndlessCombat/Binaries/Win32/EndlessCombat.exe: + "/EndlessCombat/Binaries/Win32/EndlessCombat.exe": - when: - bit: 32 os: windows store: steam - /EndlessCombat/Binaries/Win64/EndlessCombat.exe: + "/EndlessCombat/Binaries/Win64/EndlessCombat.exe": - when: - bit: 64 os: windows @@ -176491,7 +177020,7 @@ Endless Dead: installDir: Endless Dead: {} launch: - /EndlessDead_VR.exe: + "/EndlessDead_VR.exe": - when: - os: windows store: steam @@ -176501,11 +177030,11 @@ Endless Defence 2: installDir: Endless Defence 2: {} launch: - /Contents/MacOS/Endless Defence 2 Mac: + "/Contents/MacOS/Endless Defence 2 Mac": - when: - os: mac store: steam - /Endless Defence 2.exe: + "/Endless Defence 2.exe": - when: - os: windows store: steam @@ -176516,45 +177045,45 @@ Endless Dream: id: 629350 Endless Dungeon: files: - /AppData/LocalLow/AMPLITUDE Studios/ENDLESS Dungeon: + "/AppData/LocalLow/AMPLITUDE Studios/ENDLESS Dungeon": tags: - config when: - os: windows - /Endless Dungeon/SaveFiles: + "/Endless Dungeon/SaveFiles": tags: - save when: - os: windows steam: id: 1485590 -'Endless Fables 2: Frozen Path': +"Endless Fables 2: Frozen Path": installDir: Endless Fables 2 Frozen Path: {} launch: - /EndlessFables2.exe: + "/EndlessFables2.exe": - when: - os: windows store: steam - /EndlessFables2_amd64: + "/EndlessFables2_amd64": - when: - bit: 64 os: linux store: steam - /EndlessFables2_i386: + "/EndlessFables2_i386": - when: - bit: 32 os: linux store: steam - /mac_steam.app/Contents/MacOS/mac_steam: + "/mac_steam.app/Contents/MacOS/mac_steam": - when: - os: mac store: steam steam: id: 699780 -'Endless Fables 3: Dark Moor': +"Endless Fables 3: Dark Moor": files: - /userdata//867050/remote/profile: + "/userdata//867050/remote/profile": tags: - config - save @@ -176563,69 +177092,69 @@ Endless Dungeon: installDir: Endless Fables 3: {} launch: - /EndlessFables3.exe: + "/EndlessFables3.exe": - when: - os: windows store: steam - /EndlessFables3_amd64: + "/EndlessFables3_amd64": - when: - bit: 64 os: linux store: steam - /EndlessFables3_i386: + "/EndlessFables3_i386": - when: - bit: 32 os: linux store: steam - /mac_steam.app/Contents/MacOS/mac_steam: + "/mac_steam.app/Contents/MacOS/mac_steam": - when: - os: mac store: steam steam: id: 867050 -'Endless Fables 4: Shadow Within': +"Endless Fables 4: Shadow Within": installDir: Endless Fables 4: {} launch: - /EndlessFables4.app/Contents/MacOS/EndlessFables4: + "/EndlessFables4.app/Contents/MacOS/EndlessFables4": - when: - os: mac store: steam - /EndlessFables4.exe: + "/EndlessFables4.exe": - when: - os: windows store: steam - /EndlessFables4_amd64: + "/EndlessFables4_amd64": - when: - bit: 64 os: linux store: steam - /EndlessFables4_i386: + "/EndlessFables4_i386": - when: - bit: 32 os: linux store: steam steam: id: 1129030 -'Endless Fables: The Minotaur''s Curse': +"Endless Fables: The Minotaur's Curse": installDir: EndlessFables_TheMinotaursCurse: {} launch: - /EndlessFables.exe: + "/EndlessFables.exe": - when: - os: windows store: steam - /EndlessFables_amd64: + "/EndlessFables_amd64": - when: - bit: 64 os: linux store: steam - /EndlessFables_i386: + "/EndlessFables_i386": - when: - bit: 32 os: linux store: steam - /mac_steam.app/Contents/MacOS/mac_steam: + "/mac_steam.app/Contents/MacOS/mac_steam": - when: - os: mac store: steam @@ -176635,33 +177164,33 @@ Endless Fighter: installDir: Endless Fighter: {} launch: - /EndlessFighter.exe: + "/EndlessFighter.exe": - when: - os: windows store: steam steam: id: 925290 -'Endless Fun: The Battle for Peanuts': +"Endless Fun: The Battle for Peanuts": steam: id: 821810 Endless Horde: installDir: Endless Horde: {} launch: - /EndlessHorde.app/Contents/MacOS/EndlessHorde: + "/EndlessHorde.app/Contents/MacOS/EndlessHorde": - when: - os: mac store: steam - /EndlessHorde.exe: + "/EndlessHorde.exe": - when: - os: windows store: steam - /EndlessHorde.x86: + "/EndlessHorde.x86": - when: - bit: 32 os: linux store: steam - /EndlessHorde.x86_64: + "/EndlessHorde.x86_64": - when: - bit: 64 os: linux @@ -176672,7 +177201,7 @@ Endless Horizon: installDir: Endless Horizon: {} launch: - /endlesshorizon.exe: + "/endlesshorizon.exe": - when: - os: windows store: steam @@ -176682,7 +177211,7 @@ Endless Inside: installDir: EndlessInside: {} launch: - /Endless Inside.exe: + "/Endless Inside.exe": - when: - os: windows store: steam @@ -176692,7 +177221,7 @@ Endless Jade Sea -Midori no Umi-: installDir: Endless Jade Sea -Midori no Umi-: {} launch: - /ExHIBIT.exe: + "/ExHIBIT.exe": - when: - os: windows store: steam @@ -176702,7 +177231,7 @@ Endless Knight: installDir: EndlessKnight: {} launch: - /EndlessKnight.exe: + "/EndlessKnight.exe": - when: - os: windows store: steam @@ -176715,22 +177244,22 @@ Endless Labyrinth: id: 495830 Endless Legend: files: - /Library/Application Support/Endless Legend/Save Files: + "/Library/Application Support/Endless Legend/Save Files": tags: - save when: - os: mac - /Library/Application Support/Endless Legend/Users//Registry.xml: + "/Library/Application Support/Endless Legend/Users//Registry.xml": tags: - config when: - os: mac - /Endless Legend/Save Files: + "/Endless Legend/Save Files": tags: - save when: - os: windows - /Endless Legend/Users//Registry.xml: + "/Endless Legend/Users//Registry.xml": tags: - config when: @@ -176756,13 +177285,13 @@ Endless Legend: installDir: Endless Legend: {} launch: - /EndlessLegend.app: - - arguments: '-single-instance -useembedded' + "/EndlessLegend.app": + - arguments: "-single-instance -useembedded" when: - os: mac store: steam - /EndlessLegend.exe: - - arguments: '-single-instance' + "/EndlessLegend.exe": + - arguments: "-single-instance" when: - os: windows store: steam @@ -176772,7 +177301,7 @@ Endless Maneuver: installDir: Endless Maneuver: {} launch: - /EndlessManeuver.exe: + "/EndlessManeuver.exe": - when: - os: windows store: steam @@ -176790,7 +177319,7 @@ Endless RPG: installDir: Endless RPG: {} launch: - /ENDLESS RPG.exe: + "/ENDLESS RPG.exe": - when: - os: windows store: steam @@ -176800,16 +177329,16 @@ Endless Reality: installDir: EndlessReality: {} launch: - /Endless/Endless/Endless: + "/Endless/Endless/Endless": - when: - bit: 64 os: linux store: steam - /Endless/Endless/Endless.app/Contents/MacOS/Endless: + "/Endless/Endless/Endless.app/Contents/MacOS/Endless": - when: - os: mac store: steam - /Endless/Endless/Endless.exe: + "/Endless/Endless/Endless.exe": - when: - os: windows store: steam @@ -176819,11 +177348,11 @@ Endless Road: installDir: Endless Road: {} launch: - /EndlessRoad.app: + "/EndlessRoad.app": - when: - os: mac store: steam - /EndlessRoad.exe: + "/EndlessRoad.exe": - when: - os: windows store: steam @@ -176839,7 +177368,7 @@ Endless Ski: installDir: EndlessSki: {} launch: - /EndlessSki.exe: + "/EndlessSki.exe": - when: - bit: 64 os: windows @@ -176848,17 +177377,17 @@ Endless Ski: id: 1125800 Endless Sky: files: - /endless-sky/saves: + "/endless-sky/saves": tags: - save when: - os: windows - /endless-sky: + "/endless-sky": tags: - config when: - os: linux - /endless-sky/saves: + "/endless-sky/saves": tags: - save when: @@ -176866,15 +177395,15 @@ Endless Sky: installDir: Endless Sky: {} launch: - /EndlessSky.app/Contents/MacOS/EndlessSky: + "/EndlessSky.app/Contents/MacOS/EndlessSky": - when: - os: mac store: steam - /EndlessSky.exe: + "/EndlessSky.exe": - when: - os: windows store: steam - /endless-sky: + "/endless-sky": - when: - os: linux store: steam @@ -176882,32 +177411,33 @@ Endless Sky: id: 404410 Endless Space: files: - /Library/Application Support/Endless Space/Disharmony/Save: + "/Library/Application Support/Endless Space/Disharmony/Save": tags: - save when: - os: mac - /Library/Application Support/Endless Space/Users: + "/Library/Application Support/Endless Space/Users": tags: - save when: - os: mac - /Endless Space/Registry.xml: + "/Endless Space/Registry.xml": tags: - config when: - os: windows - /Endless Space/Save: + "/Endless Space/Save": tags: - save when: - os: windows - /Endless Space/Save/Cloud: + "/Endless Space/Save/Cloud": tags: - save when: - - store: steam - /Endless Space/Users: + - os: windows + store: steam + "/Endless Space/Users": tags: - save when: @@ -176917,13 +177447,13 @@ Endless Space: installDir: Endless Space: {} launch: - /Endless Space.app: - - arguments: '-single-instance' + "/Endless Space.app": + - arguments: "-single-instance" when: - os: mac store: steam - /EndlessSpace.exe: - - arguments: '-single-instance' + "/EndlessSpace.exe": + - arguments: "-single-instance" when: - os: windows store: steam @@ -176935,12 +177465,12 @@ Endless Space: id: 208140 Endless Space 2: files: - /Endless Space 2/Save Files: + "/Endless Space 2/Save Files": tags: - save when: - os: windows - /Endless Space 2/Users//Registry.xml: + "/Endless Space 2/Users//Registry.xml": tags: - config when: @@ -176950,11 +177480,11 @@ Endless Space 2: installDir: Endless Space 2: {} launch: - /EndlessSpace2.app: + "/EndlessSpace2.app": - when: - os: mac store: steam - /EndlessSpace2.exe: + "/EndlessSpace2.exe": - when: - bit: 64 os: windows @@ -176968,7 +177498,7 @@ Endless Treasure Hunt: installDir: Endless Treasure Hunt: {} launch: - /Endless Treasure Hunt.exe: + "/Endless Treasure Hunt.exe": - when: - os: windows store: steam @@ -176981,7 +177511,7 @@ Endless Wave: installDir: EndlessWave: {} launch: - /EndlessWave.exe: + "/EndlessWave.exe": - when: - store: steam steam: @@ -176995,11 +177525,11 @@ Endless World: installDir: EndlessWorld: {} launch: - /EndlessWorld.app: + "/EndlessWorld.app": - when: - os: mac store: steam - /EndlessWorld.exe: + "/EndlessWorld.exe": - when: - os: windows store: steam @@ -177009,7 +177539,7 @@ Endless Zone: installDir: Endless Zone: {} launch: - /EndlessZone.exe: + "/EndlessZone.exe": - when: - os: windows store: steam @@ -177019,7 +177549,7 @@ EndlessHell: installDir: EndlessHell: {} launch: - /EndlessHell.exe: + "/EndlessHell.exe": - when: - bit: 64 os: windows @@ -177030,15 +177560,15 @@ Endlessness: installDir: Endlessness: {} launch: - /Endlessness.exe: + "/Endlessness.exe": - when: - os: windows store: steam steam: id: 781650 -'Endling: Extinction Is Forever': +"Endling: Extinction Is Forever": files: - /Endling/Config: + "/Endling/Config": tags: - config when: @@ -177048,7 +177578,7 @@ Endlessness: installDir: Endling: {} launch: - /Endling.exe: + "/Endling.exe": - when: - store: steam steam: @@ -177057,15 +177587,15 @@ Endoparasitic: installDir: Endoparasitic: {} launch: - /Endoparasitic.app: + "/Endoparasitic.app": - when: - os: mac store: steam - /Endoparasitic.exe: + "/Endoparasitic.exe": - when: - os: windows store: steam - /Endoparasitic.x86_64: + "/Endoparasitic.x86_64": - when: - os: linux store: steam @@ -177073,12 +177603,12 @@ Endoparasitic: id: 2124780 Endorlight: files: - /Endorlight/config.ini: + "/Endorlight/config.ini": tags: - config when: - os: windows - /Endorlight/save data.ini: + "/Endorlight/save data.ini": tags: - save when: @@ -177086,12 +177616,12 @@ Endorlight: installDir: Endorlight: {} launch: - /Endorlight_x64.exe: + "/Endorlight_x64.exe": - when: - bit: 64 os: windows store: steam - /Endorlight_x86.exe: + "/Endorlight_x86.exe": - when: - bit: 32 os: windows @@ -177102,7 +177632,7 @@ Endurance: installDir: Endurance: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -177115,7 +177645,7 @@ Endzeit: installDir: Endzeit: {} launch: - /Thaw.exe: + "/Thaw.exe": - when: - os: windows store: steam @@ -177123,12 +177653,12 @@ Endzeit: id: 1012710 Endzone - A World Apart: files: - /AppData/LocalLow/Gentlymad Studios/Endzone/config/Options.json: + "/AppData/LocalLow/Gentlymad Studios/Endzone/config/Options.json": tags: - config when: - os: windows - /AppData/LocalLow/Gentlymad Studios/Endzone/savegame: + "/AppData/LocalLow/Gentlymad Studios/Endzone/savegame": tags: - save when: @@ -177138,11 +177668,11 @@ Endzone - A World Apart: installDir: Endzone - A World Apart: {} launch: - /Endzone.app: + "/Endzone.app": - when: - os: mac store: steam - /Endzone.exe: + "/Endzone.exe": - when: - bit: 64 os: windows @@ -177156,15 +177686,15 @@ Enemy: installDir: Enemy: {} launch: - /enemy: + "/enemy": - when: - os: linux store: steam - /enemy.app: + "/enemy.app": - when: - os: mac store: steam - /enemy.exe: + "/enemy.exe": - when: - os: windows store: steam @@ -177174,32 +177704,32 @@ Enemy Engaged 2: installDir: Enemy Engaged 2 Desert Operations: {} launch: - /cohokum/ee2Deopt.exe: + "/cohokum/ee2Deopt.exe": - when: - os: windows store: steam - workingDir: /cohokum + workingDir: "/cohokum" steam: id: 1581200 -'Enemy Engaged: Apache vs Havoc': +"Enemy Engaged: Apache vs Havoc": gog: id: 1207658733 -'Enemy Engaged: RAH-66 Comanche versus Ka-52 Hokum': +"Enemy Engaged: RAH-66 Comanche versus Ka-52 Hokum": gog: id: 1207658761 Enemy Front: files: - /system.cfg: + "/system.cfg": tags: - config when: - os: windows - /Saved Games/EnemyFront/Profiles: + "/Saved Games/EnemyFront/Profiles": tags: - save when: - os: windows - /Saved Games/EnemyFront/SaveGames: + "/Saved Games/EnemyFront/SaveGames": tags: - save when: @@ -177207,21 +177737,21 @@ Enemy Front: installDir: Enemy Front: {} launch: - /Bin32/DedicatedServer.exe: + "/Bin32/DedicatedServer.exe": - when: - os: windows store: steam - workingDir: /Bin32 - /Bin32/EnemyFront.exe: + workingDir: "/Bin32" + "/Bin32/EnemyFront.exe": - when: - os: windows store: steam - workingDir: /Bin32 + workingDir: "/Bin32" steam: id: 256190 Enemy Mind: files: - /EnemyMind/Local Store/settings.cfg: + "/EnemyMind/Local Store/settings.cfg": tags: - config - save @@ -177230,11 +177760,11 @@ Enemy Mind: installDir: EnemyMind: {} launch: - /EnemyMind.app: + "/EnemyMind.app": - when: - os: mac store: steam - /enemymind.exe: + "/enemymind.exe": - when: - os: windows store: steam @@ -177244,44 +177774,44 @@ Enemy On Board: installDir: EnemyOnBoard: {} launch: - /enemy-on-board.app: + "/enemy-on-board.app": - when: - os: mac store: steam - /enemy-on-board.exe: + "/enemy-on-board.exe": - when: - os: windows store: steam steam: id: 999860 -'Enemy Territory: Quake Wars': +"Enemy Territory: Quake Wars": files: - /.etqwcl/base: + "/.etqwcl/base": tags: - config when: - os: linux - /.etqwcl/sdnet: + "/.etqwcl/sdnet": tags: - save when: - os: linux - /Library/Application Support/ETQW/base: + "/Library/Application Support/ETQW/base": tags: - config when: - os: mac - /Library/Application Support/ETQW/sdnet: + "/Library/Application Support/ETQW/sdnet": tags: - save when: - os: mac - /id Software/Enemy Territory - QUAKE Wars/base: + "/id Software/Enemy Territory - QUAKE Wars/base": tags: - config when: - os: windows - /id Software/Enemy Territory - QUAKE Wars/sdnet: + "/id Software/Enemy Territory - QUAKE Wars/sdnet": tags: - save when: @@ -177289,19 +177819,19 @@ Enemy On Board: installDir: Enemy Territory QUAKE Wars: {} launch: - /etqw.exe: + "/etqw.exe": - when: - store: steam steam: id: 10000 Enemy Zero: files: - /EZERO.INI: + "/EZERO.INI": tags: - config when: - os: windows - /VOICEREC.DAT: + "/VOICEREC.DAT": tags: - save when: @@ -177310,7 +177840,7 @@ Energia: installDir: Energia: {} launch: - /EnergiaWindows.exe: + "/EnergiaWindows.exe": - when: - os: windows store: steam @@ -177318,7 +177848,7 @@ Energia: id: 592040 Energy Balance: files: - /unity3d/Sometimes You/Energy Balance: + "/unity3d/Sometimes You/Energy Balance": tags: - save when: @@ -177326,20 +177856,20 @@ Energy Balance: installDir: Energy Balance: {} launch: - /EnergyBalance.app: + "/EnergyBalance.app": - when: - os: mac store: steam - /EnergyBalance.exe: + "/EnergyBalance.exe": - when: - os: windows store: steam - /EnergyBalance.x86: + "/EnergyBalance.x86": - when: - bit: 32 os: linux store: steam - /EnergyBalance.x86_64: + "/EnergyBalance.x86_64": - when: - bit: 64 os: linux @@ -177350,20 +177880,20 @@ Energy Cycle: installDir: Energy Cycle: {} launch: - /EnergyCycle.app: + "/EnergyCycle.app": - when: - os: mac store: steam - /EnergyCycle.exe: + "/EnergyCycle.exe": - when: - os: windows store: steam - /EnergyCycle.x86: + "/EnergyCycle.x86": - when: - bit: 32 os: linux store: steam - /EnergyCycle.x86_64: + "/EnergyCycle.x86_64": - when: - bit: 64 os: linux @@ -177374,16 +177904,16 @@ Energy Hook: installDir: Energy Hook: {} launch: - /Energy Hook.app: + "/Energy Hook.app": - when: - os: mac store: steam - /Energy Hook.exe: - - arguments: '-vrmode none' + "/Energy Hook.exe": + - arguments: "-vrmode none" when: - os: windows store: steam - /EnergyHook.x86_64: + "/EnergyHook.x86_64": - when: - bit: 64 os: linux @@ -177394,7 +177924,7 @@ Energy Hunter Boy: installDir: Energy Hunter Boy: {} launch: - /hunter.exe: + "/hunter.exe": - when: - store: steam steam: @@ -177403,20 +177933,20 @@ Energy Invasion: installDir: Energy Invasion: {} launch: - /EnergyInvasion.app: + "/EnergyInvasion.app": - when: - os: mac store: steam - /EnergyInvasion.exe: + "/EnergyInvasion.exe": - when: - os: windows store: steam - /EnergyInvasion.x86: + "/EnergyInvasion.x86": - when: - bit: 32 os: linux store: steam - /EnergyInvasion.x86_64: + "/EnergyInvasion.x86_64": - when: - bit: 64 os: linux @@ -177430,15 +177960,15 @@ Energy Shock: installDir: Energy Shock: {} launch: - /EnergyShock.exe: + "/EnergyShock.exe": - when: - os: windows store: steam steam: id: 965120 -'Enforcer: Police Crime Action': +"Enforcer: Police Crime Action": files: - /AppData/LocalLow/OdinGameStudio/Enforcer/DATA_Saves/PROFILE*.xml: + "/AppData/LocalLow/OdinGameStudio/Enforcer/DATA_Saves/PROFILE*.xml": tags: - save when: @@ -177446,11 +177976,11 @@ Energy Shock: installDir: Enforcer: {} launch: - /Enforcer.app: + "/Enforcer.app": - when: - os: mac store: steam - /Enforcer.exe: + "/Enforcer.exe": - when: - os: windows store: steam @@ -177460,11 +177990,11 @@ Engare: installDir: Engare: {} launch: - /Engare.app: + "/Engare.app": - when: - os: mac store: steam - /Engare.exe: + "/Engare.exe": - when: - os: windows store: steam @@ -177474,11 +178004,11 @@ Engineer Arena: installDir: Engineer Arena: {} launch: - /Engineer Arena.app: + "/Engineer Arena.app": - when: - os: mac store: steam - /Engineer Arena.exe: + "/Engineer Arena.exe": - when: - os: windows store: steam @@ -177488,15 +178018,15 @@ England Exchange: installDir: England Exchange: {} launch: - /EnglandExchange.app: + "/EnglandExchange.app": - when: - os: mac store: steam - /EnglandExchange.exe: + "/EnglandExchange.exe": - when: - os: windows store: steam - /EnglandExchange.sh: + "/EnglandExchange.sh": - when: - os: linux store: steam @@ -177504,17 +178034,17 @@ England Exchange: id: 627820 English Country Tune: files: - /.config/unity3d/increpare/English Country Tune: + "/.config/unity3d/increpare/English Country Tune": tags: - config when: - os: linux - /.config/unity3d/increpare/English Country Tune/prefs: + "/.config/unity3d/increpare/English Country Tune/prefs": tags: - save when: - os: linux - /userdata//207570/remote/save.txt: + "/userdata//207570/remote/save.txt": tags: - config - save @@ -177523,15 +178053,15 @@ English Country Tune: installDir: English Country Tune: {} launch: - /English Country Tune: + "/English Country Tune": - when: - os: linux store: steam - /English Country Tune.app: + "/English Country Tune.app": - when: - os: mac store: steam - /English Country Tune.exe: + "/English Country Tune.exe": - when: - os: windows store: steam @@ -177546,7 +178076,7 @@ Engram: installDir: Engram: {} launch: - /cpp-app-vr-studio.exe: + "/cpp-app-vr-studio.exe": - arguments: app.sxap . when: - os: windows @@ -177555,12 +178085,12 @@ Engram: id: 930360 Enigma: files: - /ENIGMA.cf: + "/ENIGMA.cf": tags: - config when: - os: windows - /savedata: + "/savedata": tags: - save when: @@ -177568,7 +178098,7 @@ Enigma: installDir: ENIGMA: {} launch: - /ENIGMA.exe: + "/ENIGMA.exe": - when: - store: steam steam: @@ -177576,24 +178106,25 @@ Enigma: Enigma Prison: steam: id: 500740 -'Enigma Sphere: Enhanced Edition': +"Enigma Sphere: Enhanced Edition": installDir: Enigma Sphere: {} steam: id: 589080 -'Enigma: An Illusion Named Family': +"Enigma: An Illusion Named Family": installDir: enigmawindows: {} launch: - /game.exe: + "/game.exe": - when: + - store: steam - os: windows store: steam steam: id: 355570 -'Enigmatis 2: The Mists of Ravenwood': +"Enigmatis 2: The Mists of Ravenwood": files: - /userdata//284770/remote/profile: + "/userdata//284770/remote/profile": tags: - config - save @@ -177604,36 +178135,36 @@ Enigma Prison: installDir: Enigmatis The Mists of Ravenwood: {} launch: - /Enigmatis_TheMistsOfRavenwood.exe: + "/Enigmatis_TheMistsOfRavenwood.exe": - when: - bit: 32 os: windows store: steam - /Enigmatis_TheMistsOfRavenwood_amd64: + "/Enigmatis_TheMistsOfRavenwood_amd64": - when: - bit: 64 os: linux store: steam - /Enigmatis_TheMistsOfRavenwood_i386: + "/Enigmatis_TheMistsOfRavenwood_i386": - when: - bit: 32 os: linux store: steam - /mac_steam.app/Contents/MacOS/mac_steam: + "/mac_steam.app/Contents/MacOS/mac_steam": - when: - os: mac store: steam steam: id: 284770 -'Enigmatis 3: The Shadow of Karkhala': +"Enigmatis 3: The Shadow of Karkhala": files: - /userdata//495110/remote/profile: + "/userdata//495110/remote/profile": tags: - save when: - os: windows store: steam - /ArtifexMundi/SparkPromo/steam.eni3.full: + "/ArtifexMundi/SparkPromo/steam.eni3.full": tags: - config when: @@ -177643,35 +178174,35 @@ Enigma Prison: installDir: Enigmatis 3: {} launch: - /Enigmatis3.exe: + "/Enigmatis3.exe": - when: - os: windows store: steam - /Enigmatis3_amd64: + "/Enigmatis3_amd64": - when: - bit: 64 os: linux store: steam - /Enigmatis3_i386: + "/Enigmatis3_i386": - when: - bit: 32 os: linux store: steam - /mac_steam.app/Contents/MacOS/mac_steam: + "/mac_steam.app/Contents/MacOS/mac_steam": - when: - os: mac store: steam steam: id: 495110 -'Enigmatis: The Ghosts of Maple Creek': +"Enigmatis: The Ghosts of Maple Creek": files: - /.Artifex Mundi/Enigmatis_TheGhostOfMapleCreek/CE/profile: + "/.Artifex Mundi/Enigmatis_TheGhostOfMapleCreek/CE/profile": tags: - config - save when: - os: linux - /userdata//284750/remote/profile: + "/userdata//284750/remote/profile": tags: - config - save @@ -177682,22 +178213,22 @@ Enigma Prison: installDir: Enigmatis The Ghosts of Maple Creek: {} launch: - /Enigmatis_TheGhostsOfMapleCreek.exe: + "/Enigmatis_TheGhostsOfMapleCreek.exe": - when: - bit: 32 os: windows store: steam - /Enigmatis_TheGhostsOfMapleCreek_amd64: + "/Enigmatis_TheGhostsOfMapleCreek_amd64": - when: - bit: 64 os: linux store: steam - /Enigmatis_TheGhostsOfMapleCreek_i386: + "/Enigmatis_TheGhostsOfMapleCreek_i386": - when: - bit: 32 os: linux store: steam - /mac_steam.app/Contents/MacOS/mac_steam: + "/mac_steam.app/Contents/MacOS/mac_steam": - when: - os: mac store: steam @@ -177707,7 +178238,7 @@ Enlightenment: installDir: Enlightenment: {} launch: - /Enlightenment.exe: + "/Enlightenment.exe": - when: - os: windows store: steam @@ -177715,7 +178246,7 @@ Enlightenment: id: 663300 Enlisted: files: - /enlisted.config: + "/enlisted.config": tags: - config when: @@ -177724,18 +178255,18 @@ Enlysia: installDir: content: {} launch: - /dedo3.exe: + "/dedo3.exe": - when: - bit: 64 os: windows store: steam steam: id: 665670 -'Enoch: Underground': +"Enoch: Underground": installDir: Enoch Underground: {} launch: - /Enoch_v001.exe: + "/Enoch_v001.exe": - when: - bit: 64 os: windows @@ -177746,26 +178277,26 @@ Enola: installDir: Enola: {} launch: - /Binaries/Win32/udk.exe: + "/Binaries/Win32/udk.exe": - when: - bit: 32 os: windows store: steam - /Enola.app: + "/Enola.app": - when: - os: mac store: steam steam: id: 263520 -'Enshrouded World: Home Truths': +"Enshrouded World: Home Truths": installDir: Enshrouded World - Home Truths: {} launch: - /ewht: + "/ewht": - when: - os: linux store: steam - /ewht.exe: + "/ewht.exe": - when: - os: windows store: steam @@ -177775,35 +178306,35 @@ Ensign-1: installDir: Ensign-1: {} launch: - /Ender3.exe: + "/Ender3.exe": - when: - os: windows store: steam - /Ensign32: + "/Ensign32": - when: - bit: 32 os: linux store: steam - /Ensign64: + "/Ensign64": - when: - bit: 64 os: linux store: steam steam: id: 312310 -'Enslaved: Odyssey to the West': +"Enslaved: Odyssey to the West": files: - /userdata//245280: + "/userdata//245280": tags: - save when: - store: steam - /My Games/UnrealEngine3/MonkeyGame/Config: + "/My Games/UnrealEngine3/MonkeyGame/Config": tags: - config when: - os: windows - /My Games/UnrealEngine3/MonkeyGame/SaveData: + "/My Games/UnrealEngine3/MonkeyGame/SaveData": tags: - save when: @@ -177811,19 +178342,19 @@ Ensign-1: installDir: Enslaved: {} launch: - /Binaries/Win32/Enslaved.exe: - - arguments: '-NOSPLASH' + "/Binaries/Win32/Enslaved.exe": + - arguments: "-NOSPLASH" when: - os: windows store: steam - workingDir: /Binaries + workingDir: "/Binaries" steam: id: 245280 Entangle: installDir: Entangle: {} launch: - /Entangle.exe: + "/Entangle.exe": - when: - os: windows store: steam @@ -177833,26 +178364,26 @@ Entangled: installDir: Entangled: {} launch: - /Entangled_linux32.exe: + "/Entangled_linux32.exe": - when: - bit: 32 os: linux store: steam - /Entangled_linux64.exe: + "/Entangled_linux64.exe": - when: - bit: 64 os: linux store: steam - /Entangled_osx64.app: + "/Entangled_osx64.app": - when: - os: mac store: steam - /Entangled_win32.exe: + "/Entangled_win32.exe": - when: - bit: 32 os: windows store: steam - /Entangled_win64.exe: + "/Entangled_win64.exe": - when: - bit: 64 os: windows @@ -177863,15 +178394,15 @@ Entanglement: installDir: Entanglement: {} launch: - /Entanglement: + "/Entanglement": - when: - os: linux store: steam - /Entanglement.app/Contents/MacOS/nwjs: + "/Entanglement.app/Contents/MacOS/nwjs": - when: - os: mac store: steam - /Entanglement.exe: + "/Entanglement.exe": - when: - os: windows store: steam @@ -177884,7 +178415,7 @@ Enter The Moon: installDir: Enter_The_Moon_1_0_4: {} launch: - /Enter_The_Moon.exe: + "/Enter_The_Moon.exe": - arguments: v.1.0.4 when: - os: windows @@ -177893,23 +178424,23 @@ Enter The Moon: id: 922590 Enter the Gungeon: files: - /.config/unity3d/Dodge Roll/Enter the Gungeon: + "/.config/unity3d/Dodge Roll/Enter the Gungeon": tags: - config - save when: - os: linux - /AppData/LocalLow/Dodge Roll/Enter the Gungeon: + "/AppData/LocalLow/Dodge Roll/Enter the Gungeon": tags: - save when: - os: windows - /AppData/LocalLow/Dodge Roll/Enter the Gungeon/Slot*.options: + "/AppData/LocalLow/Dodge Roll/Enter the Gungeon/Slot*.options": tags: - config when: - os: windows - /Library/Application Support/Dodge Roll/Enter the Gungeon: + "/Library/Application Support/Dodge Roll/Enter the Gungeon": tags: - save when: @@ -177920,27 +178451,27 @@ Enter the Gungeon: gogExtra: - 1459847591 steamExtra: - - 457841 - 457840 + - 457841 - 457842 installDir: Enter the Gungeon: {} launch: - /EtG.exe: + "/EtG.exe": - when: - os: windows store: steam - /EtG.x86: + "/EtG.x86": - when: - bit: 32 os: linux store: steam - /EtG.x86_64: + "/EtG.x86_64": - when: - bit: 64 os: linux store: steam - /EtG_OSX.app: + "/EtG_OSX.app": - when: - os: mac store: steam @@ -177948,12 +178479,12 @@ Enter the Gungeon: id: 311690 Enter the Matrix: files: - /MatrixConfig.ini: + "/MatrixConfig.ini": tags: - config when: - os: windows - /saved: + "/saved": tags: - save when: @@ -177967,11 +178498,11 @@ Enternal Liiivie: installDir: Eternal Liiivie(12+): {} launch: - /Game.app: + "/Game.app": - when: - os: mac store: steam - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -177981,7 +178512,7 @@ Entertainment Hero: installDir: Entertainment Hero: {} launch: - /Entertainment Hero 1.0/EnterHero1.0.exe: + "/Entertainment Hero 1.0/EnterHero1.0.exe": - when: - os: windows store: steam @@ -177991,24 +178522,24 @@ Entity Researchers: installDir: EntityResearchers: {} launch: - /EntityResearchers: + "/EntityResearchers": - when: - os: linux store: steam - /EntityResearchers.exe: + "/EntityResearchers.exe": - when: - os: windows store: steam steam: id: 1562230 -'Entomorph: Plague of the Darkfall': +"Entomorph: Plague of the Darkfall": files: - /*.DAT: + "/*.DAT": tags: - save when: - os: windows - /plague.cfg: + "/plague.cfg": tags: - config when: @@ -178020,19 +178551,19 @@ Entre-Deux: Entre Deux: {} steam: id: 839750 -'Entre-Deux: Cursed': +"Entre-Deux: Cursed": installDir: Entre-Deux Cursed: {} launch: - /EntreDeuxCursed/EntreDeuxCursed.app: + "/EntreDeuxCursed/EntreDeuxCursed.app": - when: - os: mac store: steam - /EntreDeuxCursed/EntreDeuxCursed.exe: + "/EntreDeuxCursed/EntreDeuxCursed.exe": - when: - os: windows store: steam - /EntreDeuxCursed/EntreDeuxCursed.sh: + "/EntreDeuxCursed/EntreDeuxCursed.sh": - when: - os: linux store: steam @@ -178040,29 +178571,29 @@ Entre-Deux: id: 918130 Entropia Universe: files: - /Entropia Universe/public_users_data/settings-ce.cfg: + "/Entropia Universe/public_users_data/settings-ce.cfg": tags: - config when: - os: windows -'Entropic Float: This World Will Decay and Disappear': +"Entropic Float: This World Will Decay and Disappear": installDir: Entropic Float This World Will Decay And Disappear: {} launch: - /EntropicFloat-32.exe: + "/EntropicFloat-32.exe": - when: - bit: 32 os: windows store: steam - /EntropicFloat.app: + "/EntropicFloat.app": - when: - os: mac store: steam - /EntropicFloat.app/Contents/MacOS/EntropicFloat: + "/EntropicFloat.app/Contents/MacOS/EntropicFloat": - when: - os: mac store: steam - /EntropicFloat.exe: + "/EntropicFloat.exe": - when: - bit: 64 os: windows @@ -178078,15 +178609,15 @@ Entropy: installDir: Entropy: {} launch: - /Entropy.exe: + "/Entropy.exe": - when: - os: windows store: steam - /EntropyLinux.x86: + "/EntropyLinux.x86": - when: - os: linux store: steam - /EntropyOSX.app: + "/EntropyOSX.app": - when: - os: mac store: steam @@ -178096,15 +178627,15 @@ Entropy 2120: installDir: Entropy 2120: {} launch: - /Entropy2120.exe: + "/Entropy2120.exe": - when: - os: windows store: steam - /Entropy2120Linux.x86_64: + "/Entropy2120Linux.x86_64": - when: - os: linux store: steam - /Entropy2120Mac.app: + "/Entropy2120Mac.app": - when: - os: mac store: steam @@ -178114,20 +178645,20 @@ Entropy Rising: installDir: Entropy Rising: {} launch: - /EntropyRising.exe: + "/EntropyRising.exe": - when: - os: windows store: steam steam: id: 334830 -'Entropy: Zero': +"Entropy: Zero": files: - /Entropy Zero/Entropy Zero/EntropyZero/cfg: + "/Entropy Zero/Entropy Zero/EntropyZero/cfg": tags: - config when: - os: windows - /Entropy Zero/Entropy Zero/EntropyZero/save: + "/Entropy Zero/Entropy Zero/EntropyZero/save": tags: - save when: @@ -178135,20 +178666,20 @@ Entropy Rising: installDir: Entropy Zero: {} launch: - /Entropy Zero/hl2.exe: - - arguments: '-game EntropyZero' + "/Entropy Zero/hl2.exe": + - arguments: "-game EntropyZero" when: - store: steam steam: id: 714070 -'Entropy: Zero 2': +"Entropy: Zero 2": files: - /entropyzero2/cfg: + "/entropyzero2/cfg": tags: - config when: - store: steam - /entropyzero2/save: + "/entropyzero2/save": tags: - save when: @@ -178156,8 +178687,8 @@ Entropy Rising: installDir: EntropyZero2: {} launch: - /hl2.exe: - - arguments: '-game EntropyZero2' + "/hl2.exe": + - arguments: "-game EntropyZero2" when: - store: steam steam: @@ -178166,35 +178697,35 @@ Entschuldigung: installDir: Entschuldigung: {} launch: - /Entschuldigung.app: + "/Entschuldigung.app": - when: - os: mac store: steam - /Entschuldigung.exe: + "/Entschuldigung.exe": - when: - os: windows store: steam - /Entschuldigung.sh: + "/Entschuldigung.sh": - when: - os: linux store: steam steam: id: 570350 -'Entwined: Strings of Deception': +"Entwined: Strings of Deception": installDir: Entwined Strings of Deception: {} launch: - /Entwined.exe: + "/Entwined.exe": - when: - os: windows store: steam steam: id: 645420 -'Entwined: The Perfect Murder': +"Entwined: The Perfect Murder": installDir: Entwined The Perfect Murder: {} launch: - /Entwined.exe: + "/Entwined.exe": - when: - store: steam steam: @@ -178203,7 +178734,7 @@ EnviroGolf: installDir: EnviroGolf: {} launch: - /Envirogolf.exe: + "/Envirogolf.exe": - when: - os: windows store: steam @@ -178211,22 +178742,22 @@ EnviroGolf: id: 1166090 Environmental Station Alpha: files: - /MMFApplications/ESA_Settings.txt: + "/MMFApplications/ESA_Settings.txt": tags: - config when: - os: windows - /MMFApplications/ESA_save.lar: + "/MMFApplications/ESA_save.lar": tags: - save when: - os: windows - /MMFApplications/LMap*.arr: + "/MMFApplications/LMap*.arr": tags: - save when: - os: windows - /MMFApplications/Map*.arr: + "/MMFApplications/Map*.arr": tags: - save when: @@ -178234,11 +178765,11 @@ Environmental Station Alpha: installDir: Environmental Station Alpha: {} launch: - /Environmental Station Alpha.exe: + "/Environmental Station Alpha.exe": - when: - os: windows store: steam - /esa_launcher.sh: + "/esa_launcher.sh": - when: - os: mac store: steam @@ -178259,7 +178790,7 @@ Envy the Dead: installDir: Envy the Dead: {} launch: - /Envy The Dead.exe: + "/Envy The Dead.exe": - when: - store: steam steam: @@ -178268,7 +178799,7 @@ Eo: installDir: Eo: {} launch: - /Eo.exe: + "/Eo.exe": - when: - os: windows store: steam @@ -178278,16 +178809,16 @@ Eon: installDir: Eon: {} launch: - /eon-o64: + "/eon-o64": - when: - os: mac store: steam - /eon-x86_64: + "/eon-x86_64": - when: - bit: 64 os: linux store: steam - /eon.exe: + "/eon.exe": - when: - os: windows store: steam @@ -178295,7 +178826,7 @@ Eon: id: 1056060 Eon Altar: files: - /AppData/LocalLow/Flying Helmet Games/Eon Altar/SavedGames: + "/AppData/LocalLow/Flying Helmet Games/Eon Altar/SavedGames": tags: - save when: @@ -178303,11 +178834,11 @@ Eon Altar: installDir: Eon Altar: {} launch: - /EonAltar.app: + "/EonAltar.app": - when: - os: mac store: steam - /EonAltar.exe: + "/EonAltar.exe": - when: - os: windows store: steam @@ -178321,21 +178852,21 @@ Eon Fleet: installDir: Eon Fleet: {} launch: - /Eon Fleet.exe: + "/Eon Fleet.exe": - when: - os: windows store: steam - /EonFleet.x86: + "/EonFleet.x86": - when: - bit: 32 os: linux store: steam - /EonFleet.x86_64: + "/EonFleet.x86_64": - when: - bit: 64 os: linux store: steam - /MacOs.app/Contents/MacOS/MacOs: + "/MacOs.app/Contents/MacOS/MacOs": - when: - os: mac store: steam @@ -178345,7 +178876,7 @@ Eonia: installDir: EONIA: {} launch: - /EONIA alpha.exe: + "/EONIA alpha.exe": - when: - os: windows store: steam @@ -178354,11 +178885,11 @@ Eonia: Eons of War: steam: id: 947460 -'Eormor: Shattered Lands': +"Eormor: Shattered Lands": installDir: Eormor Shattered Lands: {} launch: - /Eormor.exe: + "/Eormor.exe": - when: - os: windows store: steam @@ -178366,7 +178897,7 @@ Eons of War: id: 1098640 Epanalepsis: files: - /Epanalepsis/IndexedDB: + "/Epanalepsis/IndexedDB": tags: - save when: @@ -178374,15 +178905,15 @@ Epanalepsis: installDir: Epanalepsis: {} launch: - /epanalepsis: + "/epanalepsis": - when: - os: linux store: steam - /epanalepsis.app: + "/epanalepsis.app": - when: - os: mac store: steam - /epanalepsis.exe: + "/epanalepsis.exe": - when: - os: windows store: steam @@ -178390,12 +178921,12 @@ Epanalepsis: id: 333690 Ephemeral Tale: files: - /www/save: + "/www/save": tags: - save when: - os: windows - /www/save/config.rpgsave: + "/www/save/config.rpgsave": tags: - config when: @@ -178403,8 +178934,8 @@ Ephemeral Tale: installDir: Ephemeral Tale: {} launch: - /EphemeralTale.exe: - - arguments: '--in-process-gpu' + "/EphemeralTale.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam @@ -178414,17 +178945,17 @@ Ephemeral Unnatural Balance: installDir: 東方逆妙乱 ~ Ephemeral Unnatural Balance: {} launch: - /TH_EUB.exe: + "/TH_EUB.exe": - when: - os: windows store: steam steam: id: 834580 -'Ephemerid: A Musical Adventure': +"Ephemerid: A Musical Adventure": installDir: Ephemerid A Musical Adventure: {} launch: - /ephemerid_windows.exe: + "/ephemerid_windows.exe": - when: - os: windows store: steam @@ -178433,21 +178964,21 @@ Ephemeral Unnatural Balance: Epic: gog: id: 2057791884 -'Epic Adventures: Cursed Onboard': +"Epic Adventures: Cursed Onboard": installDir: Epic Adventures - Cursed Onboard: {} launch: - /Cursed Onboard.exe: + "/Cursed Onboard.exe": - when: - os: windows store: steam steam: id: 1056080 -'Epic Adventures: La Jangada': +"Epic Adventures: La Jangada": installDir: Epic Adventures La Jangada: {} launch: - /Jangada.exe: + "/Jangada.exe": - when: - os: windows store: steam @@ -178457,15 +178988,15 @@ Epic Arena: installDir: Epic Arena: {} launch: - /EpicArena.exe: + "/EpicArena.exe": - when: - os: windows store: steam - /EpicArena.x86_64: + "/EpicArena.x86_64": - when: - os: linux store: steam - /EpicArenaMac.app: + "/EpicArenaMac.app": - when: - os: mac store: steam @@ -178473,12 +179004,12 @@ Epic Arena: id: 334030 Epic Battle Fantasy 3: files: - /EpicBattleFantasy3/Local Store/#SharedObjects/Epic%20Battle%20Fantasy%203.swf: + "/EpicBattleFantasy3/Local Store/#SharedObjects/Epic%20Battle%20Fantasy%203.swf": tags: - save when: - os: windows - /EpicBattleFantasy3/Local Store/#SharedObjects/Epic%20Battle%20Fantasy%203.swf/EBF3options.sol: + "/EpicBattleFantasy3/Local Store/#SharedObjects/Epic%20Battle%20Fantasy%203.swf/EBF3options.sol": tags: - config when: @@ -178486,7 +179017,7 @@ Epic Battle Fantasy 3: installDir: Epic Battle Fantasy 3: {} launch: - /Epic Battle Fantasy 3.exe: + "/Epic Battle Fantasy 3.exe": - when: - os: windows store: steam @@ -178494,12 +179025,7 @@ Epic Battle Fantasy 3: id: 521200 Epic Battle Fantasy 4: files: - /*.meow: - tags: - - save - when: - - os: windows - /Macromedia/Flash Player/#SharedObjects/*/localhost/Epic Battle Fantasy 4.swf/EBF4*.sol: + "/*.meow": tags: - save when: @@ -178507,20 +179033,20 @@ Epic Battle Fantasy 4: installDir: Epic Battle Fantasy 4: {} launch: - /EBF4.exe: + "/EBF4.exe": - when: - store: steam steam: id: 265610 Epic Battle Fantasy 5: files: - /steamapps/common/Epic Battle Fantasy 5: + "/steamapps/common/Epic Battle Fantasy 5": tags: - save when: - os: windows store: steam - /steamapps/common/Epic Battle Fantasy 5/options.meow: + "/steamapps/common/Epic Battle Fantasy 5/options.meow": tags: - config when: @@ -178529,7 +179055,7 @@ Epic Battle Fantasy 5: installDir: Epic Battle Fantasy 5: {} launch: - /Epic Battle Fantasy 5.exe: + "/Epic Battle Fantasy 5.exe": - when: - store: steam steam: @@ -178538,7 +179064,7 @@ Epic Battle Simulator 2: installDir: Epic Battle Simulator 2: {} launch: - /Epic Battle Simulator 2.exe: + "/Epic Battle Simulator 2.exe": - when: - os: windows store: steam @@ -178546,7 +179072,7 @@ Epic Battle Simulator 2: id: 711570 Epic Car Factory: files: - /userdata//656510/remote: + "/userdata//656510/remote": tags: - config - save @@ -178556,27 +179082,27 @@ Epic Car Factory: installDir: Epic Car Factory: {} launch: - /epiccarfactory: + "/epiccarfactory": - when: - os: linux store: steam - /epiccarfactory.app/Contents/MacOS/epiccarfactory: + "/epiccarfactory.app/Contents/MacOS/epiccarfactory": - when: - os: mac store: steam - /epiccarfactory.app/Contents/mod_uploader/mod_uploader: + "/epiccarfactory.app/Contents/mod_uploader/mod_uploader": - when: - os: mac store: steam - /epiccarfactory.exe: + "/epiccarfactory.exe": - when: - os: windows store: steam - /mod_uploader/mod_uploader: + "/mod_uploader/mod_uploader": - when: - os: linux store: steam - /mod_uploader/mod_uploader.exe: + "/mod_uploader/mod_uploader.exe": - when: - os: windows store: steam @@ -178586,21 +179112,21 @@ Epic Cards Battle: installDir: Epic Cards Battle: {} launch: - /Epic Cards Battle.app: + "/Epic Cards Battle.app": - when: - os: mac store: steam - /game.exe: + "/game.exe": - when: - os: windows store: steam steam: id: 381560 -'Epic Cards Battle 2: Dragons Rising': +"Epic Cards Battle 2: Dragons Rising": installDir: ECB2: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -178612,7 +179138,7 @@ Epic Chef: installDir: Epic Chef: {} launch: - /EpicChef.exe: + "/EpicChef.exe": - when: - os: windows store: steam @@ -178620,7 +179146,7 @@ Epic Chef: id: 1312960 Epic Clicker Journey: files: - /userdata//414730/remote/data.dat: + "/userdata//414730/remote/data.dat": tags: - save when: @@ -178628,15 +179154,15 @@ Epic Clicker Journey: installDir: Epic Clicker Journey: {} launch: - /Epic Clicker Journey.app: + "/Epic Clicker Journey.app": - when: - os: mac store: steam - /Epic Clicker Journey.exe: + "/Epic Clicker Journey.exe": - when: - os: windows store: steam - /Epic Clicker Journey.x86: + "/Epic Clicker Journey.x86": - when: - os: linux store: steam @@ -178648,12 +179174,12 @@ Epic Clicker Journey: id: 414730 Epic Conquest 2: files: - /Epic Conquest 2/settings.save: + "/Epic Conquest 2/settings.save": tags: - config when: - os: windows - /Epic Conquest 2/user_*: + "/Epic Conquest 2/user_*": tags: - save when: @@ -178661,17 +179187,17 @@ Epic Conquest 2: installDir: Epic Conquest 2: {} launch: - /EC2.exe: + "/EC2.exe": - when: - os: windows store: steam steam: id: 1235360 -'Epic Dumpster Bear: Dumpster Fire Redux': +"Epic Dumpster Bear: Dumpster Fire Redux": installDir: EpicDumpsterBear: {} launch: - /epicdumpsterbear20180505.exe: + "/epicdumpsterbear20180505.exe": - when: - bit: 64 os: windows @@ -178682,7 +179208,7 @@ Epic Flail: installDir: EpicFlail: {} launch: - /EpicFlail.exe: + "/EpicFlail.exe": - when: - os: windows store: steam @@ -178692,7 +179218,7 @@ Epic Food Fight: installDir: Epic Food Fight: {} launch: - /Epic Food Fight.exe: + "/Epic Food Fight.exe": - when: - os: windows store: steam @@ -178715,7 +179241,7 @@ Epic Game Theory: installDir: Epic Game Theory: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -178725,7 +179251,7 @@ Epic Helicopter: installDir: Epic Helicopter: {} launch: - /EpicHelicopterCompilaciónParaSteam.exe: + "/EpicHelicopterCompilaciónParaSteam.exe": - when: - store: steam steam: @@ -178734,7 +179260,7 @@ Epic Little War Game: installDir: Epic Little War Game: {} launch: - /ELWG.exe: + "/ELWG.exe": - when: - store: steam steam: @@ -178743,11 +179269,11 @@ Epic Loon: installDir: Epic Loon: {} launch: - /EpicLoon.app/Contents/MacOS/EpicLoon: + "/EpicLoon.app/Contents/MacOS/EpicLoon": - when: - os: mac store: steam - /EpicLoon.exe: + "/EpicLoon.exe": - when: - os: windows store: steam @@ -178757,7 +179283,7 @@ Epic Manager: installDir: Epic Manager: {} launch: - /Epic Manager.app: + "/Epic Manager.app": - when: - os: mac store: steam @@ -178766,14 +179292,14 @@ Epic Manager: Epic Mayhem: steam: id: 612430 -'Epic Mickey 2: The Power of Two': +"Epic Mickey 2: The Power of Two": files: - /Disney Interactive Studios/Epic Mickey 2: + "/Disney Interactive Studios/Epic Mickey 2": tags: - config when: - os: windows - /Disney Interactive Studios/Epic Mickey 2/Save: + "/Disney Interactive Studios/Epic Mickey 2/Save": tags: - save when: @@ -178781,11 +179307,11 @@ Epic Mayhem: installDir: Disney Epic Mickey 2: {} launch: - /DEM2.exe: + "/DEM2.exe": - when: - os: windows store: steam - /Launch.exe: + "/Launch.exe": - when: - os: windows store: steam @@ -178796,12 +179322,12 @@ Epic PVP Castles: id: 727300 Epic Pinball: files: - /CONFIG.PIN: + "/CONFIG.PIN": tags: - config when: - os: dos - /HISCORE.PIN: + "/HISCORE.PIN": tags: - save when: @@ -178812,7 +179338,7 @@ Epic Quest of the 4 Crystals: installDir: Epic Quest of the 4 Crystals: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -178835,7 +179361,7 @@ Epic Showdown: installDir: Epic Showdown: {} launch: - /EpicShowdown.exe: + "/EpicShowdown.exe": - when: - os: windows store: steam @@ -178845,7 +179371,7 @@ Epic Skater 2: installDir: Epic Skater 2: {} launch: - /Epic Skater 2.exe: + "/Epic Skater 2.exe": - when: - store: steam steam: @@ -178854,11 +179380,11 @@ Epic Snails: installDir: Epic Snails: {} launch: - /EpicSnails.app/Contents/MacOS/EpicSnails: + "/EpicSnails.app/Contents/MacOS/EpicSnails": - when: - os: mac store: steam - /epic_snails.exe: + "/epic_snails.exe": - when: - bit: 64 os: windows @@ -178870,29 +179396,29 @@ Epic Snowday Adventure: ESA: {} steam: id: 477190 -'Epic Space: Online': +"Epic Space: Online": installDir: Epic Space: {} launch: - /ESO_ClassicHelper.exe: + "/ESO_ClassicHelper.exe": - when: - os: windows store: steam - /ESO_Launcher.exe: + "/ESO_Launcher.exe": - when: - bit: 64 os: windows store: steam - /Run_ESO_Launchpad(Mac).command: + "/Run_ESO_Launchpad(Mac).command": - when: - os: mac store: steam - /Run_ESO_Launchpad_Linux32.sh: + "/Run_ESO_Launchpad_Linux32.sh": - when: - bit: 32 os: linux store: steam - /Run_ESO_Launchpad_Linux64.sh: + "/Run_ESO_Launchpad_Linux64.sh": - when: - bit: 64 os: linux @@ -178905,7 +179431,7 @@ Epic Tavern: installDir: Epic Tavern: {} launch: - /EpicTavern.exe: + "/EpicTavern.exe": - when: - os: windows store: steam @@ -178915,7 +179441,7 @@ Epic World: installDir: Epic World: {} launch: - /Epic World.exe: + "/Epic World.exe": - when: - os: windows store: steam @@ -178924,11 +179450,11 @@ Epic World: Epic drag puZOOls: steam: id: 862320 -'Epic of Serinor: Dawnshadow': +"Epic of Serinor: Dawnshadow": installDir: Dawnshadow: {} launch: - /Dawnshadow.exe: + "/Dawnshadow.exe": - when: - store: steam steam: @@ -178936,11 +179462,11 @@ Epic drag puZOOls: Epica: steam: id: 540370 -'Epics of Distant Realm: Remastered Edition': +"Epics of Distant Realm: Remastered Edition": installDir: Epics of the Distant Realm Remastered Edition: {} launch: - /Epics of the Distant Realm.exe: + "/Epics of the Distant Realm.exe": - when: - os: windows store: steam @@ -178951,7 +179477,7 @@ Epifrog: id: 1156350 Epigenesis: files: - /My Games/UnrealEngine3/LochGame/Config: + "/My Games/UnrealEngine3/LochGame/Config": tags: - config when: @@ -178959,26 +179485,26 @@ Epigenesis: installDir: Epigenesis: {} launch: - /Binaries/Win32/Epigenesis.exe: + "/Binaries/Win32/Epigenesis.exe": - when: - os: windows store: steam - workingDir: /Binaries/Win32 + workingDir: "/Binaries/Win32" steam: id: 244590 Epiphany!: installDir: Epiphany: {} launch: - /Epiphany.exe: + "/Epiphany.exe": - when: - os: windows store: steam - /Epiphany_Linux.x86: + "/Epiphany_Linux.x86": - when: - os: linux store: steam - /Gold 1_0_5.app: + "/Gold 1_0_5.app": - when: - os: mac store: steam @@ -178988,7 +179514,7 @@ Epiphyllum in Love: installDir: Epiphyllum in Love: {} launch: - /Epiphyllum.exe: + "/Epiphyllum.exe": - when: - os: windows store: steam @@ -178998,15 +179524,15 @@ Episicava - Vol. 1: installDir: Episicava: {} launch: - /EpisicavaVol1.app: + "/EpisicavaVol1.app": - when: - os: mac store: steam - /EpisicavaVol1.exe: + "/EpisicavaVol1.exe": - when: - os: windows store: steam - /EpisicavaVol1.sh: + "/EpisicavaVol1.sh": - when: - os: linux store: steam @@ -179014,19 +179540,19 @@ Episicava - Vol. 1: id: 618430 Epistory - Typing Chronicles: files: - /AppData/LocalLow/Fishing Cactus/Epistory: + "/AppData/LocalLow/Fishing Cactus/Epistory": tags: - config - save when: - os: windows - /Library/Application Support/unity.Fishing Cactus.Epistory: + "/Library/Application Support/unity.Fishing Cactus.Epistory": tags: - config - save when: - os: mac - /unity3d/Fishing Cactus/Epistory: + "/unity3d/Fishing Cactus/Epistory": tags: - config - save @@ -179037,20 +179563,20 @@ Epistory - Typing Chronicles: installDir: Epistory: {} launch: - /Epistory.app/Contents/MacOS/Epistory: + "/Epistory.app/Contents/MacOS/Epistory": - when: - os: mac store: steam - /Epistory.exe: + "/Epistory.exe": - when: - os: windows store: steam - /Epistory.x86: + "/Epistory.x86": - when: - bit: 32 os: linux store: steam - /Epistory.x86_64: + "/Epistory.x86_64": - when: - bit: 64 os: linux @@ -179065,11 +179591,11 @@ Epitaph: installDir: Epitaph: {} launch: - /Epitaph.app: + "/Epitaph.app": - when: - os: mac store: steam - /Epitaph.exe: + "/Epitaph.exe": - when: - os: windows store: steam @@ -179079,11 +179605,11 @@ Epitasis: installDir: Epitasis: {} launch: - /Epitasis.app/Contents/MacOS/DistantWorldsCode: + "/Epitasis.app/Contents/MacOS/DistantWorldsCode": - when: - os: mac store: steam - /epitasis/epitasis.exe: + "/epitasis/epitasis.exe": - when: - os: windows store: steam @@ -179091,7 +179617,7 @@ Epitasis: id: 662240 Epoch: files: - /UDKGame/EpochSave: + "/UDKGame/EpochSave": tags: - save when: @@ -179099,24 +179625,24 @@ Epoch: installDir: EPOCH: {} launch: - /Binaries/Win32/UDK.exe: + "/Binaries/Win32/UDK.exe": - when: - os: windows store: steam - workingDir: /Binaries/Win32 - /Binaries/Win64/UDK.exe: + workingDir: "/Binaries/Win32" + "/Binaries/Win64/UDK.exe": - when: - bit: 64 os: windows store: steam - workingDir: /Binaries/Win64 + workingDir: "/Binaries/Win64" steam: id: 270510 Epoch (2016): installDir: EPΘCH: {} launch: - /Epoch.exe: + "/Epoch.exe": - when: - os: windows store: steam @@ -179126,15 +179652,15 @@ Eponymous: installDir: Eponymous: {} launch: - /Cygnus.app: + "/Cygnus.app": - when: - os: mac store: steam - /Cygnus.exe: + "/Cygnus.exe": - when: - os: windows store: steam - /Cygnus_NFML: + "/Cygnus_NFML": - when: - os: linux store: steam @@ -179144,7 +179670,7 @@ Epsilon: installDir: EPSILON: {} launch: - /EPSILON.exe: + "/EPSILON.exe": - when: - store: steam steam: @@ -179153,20 +179679,20 @@ Epsilon Jump Prime: installDir: EpsilonJumpPrime: {} launch: - /EpsilonJumpPrime.app: + "/EpsilonJumpPrime.app": - when: - os: mac store: steam - /EpsilonJumpPrime.exe: + "/EpsilonJumpPrime.exe": - when: - os: windows store: steam - /EpsilonJumpPrime.x86: + "/EpsilonJumpPrime.x86": - when: - bit: 32 os: linux store: steam - /EpsilonJumpPrime.x86_64: + "/EpsilonJumpPrime.x86_64": - when: - bit: 64 os: linux @@ -179180,7 +179706,7 @@ Equalizer: installDir: Equalizer_Game: {} launch: - /Equalizer.exe: + "/Equalizer.exe": - when: - os: windows store: steam @@ -179190,8 +179716,8 @@ EquiMagic - Galashow of Horses: installDir: Galashow of Horses: {} launch: - /HorseShow-Steam.exe: - - arguments: '-console' + "/HorseShow-Steam.exe": + - arguments: "-console" when: - os: windows store: steam @@ -179209,11 +179735,11 @@ Equilibrium of Divinity: installDir: Equilibrium Of Divinity: {} launch: - /eod.exe: + "/eod.exe": - when: - os: windows store: steam - /eod.x86_64: + "/eod.x86_64": - when: - os: linux store: steam @@ -179223,25 +179749,25 @@ Equilinox: installDir: Equilinox: {} launch: - /EquilinoxMac.app: + "/EquilinoxMac.app": - when: - os: mac store: steam - /EquilinoxWindows32.exe: + "/EquilinoxWindows32.exe": - when: - os: windows store: steam - /equilinox: + "/equilinox": - when: - os: linux store: steam steam: id: 853550 -'Equin: The Lantern': +"Equin: The Lantern": installDir: Equin The Lantern: {} launch: - /EQUIN- THE LANTERN.exe: + "/EQUIN- THE LANTERN.exe": - when: - os: windows store: steam @@ -179251,15 +179777,15 @@ Equivoque: installDir: Equivoque: {} launch: - /Equivoque.app: + "/Equivoque.app": - when: - os: mac store: steam - /Equivoque.exe: + "/Equivoque.exe": - when: - os: windows store: steam - /Equivoque.sh: + "/Equivoque.sh": - when: - os: linux store: steam @@ -179269,7 +179795,7 @@ Er-Spectro: installDir: Er-Spectro: {} launch: - /Er-Spectro.exe: + "/Er-Spectro.exe": - when: - store: steam steam: @@ -179281,7 +179807,7 @@ Era Of Newborns: installDir: Era Of Newborns: {} launch: - /EraOfNewborns.exe: + "/EraOfNewborns.exe": - when: - bit: 64 os: windows @@ -179295,8 +179821,8 @@ Era of Miracles: installDir: Era of Miracles: {} launch: - /Game.exe: - - arguments: '--in-process-gpu' + "/Game.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam @@ -179307,17 +179833,17 @@ Eradicated: id: 548270 Eradicator: files: - /ERAD**.SAV: + "/ERAD**.SAV": tags: - save when: - os: dos - /ERAD.CFG: + "/ERAD.CFG": tags: - config when: - os: dos - /PLAYER.DAT: + "/PLAYER.DAT": tags: - save when: @@ -179327,62 +179853,62 @@ Eradicator: installDir: Eradicator: {} launch: - /Eradicator.app: + "/Eradicator.app": - when: - os: mac store: steam - /dosbox_linux/daum/launch_eradicator_game_daum.sh: + "/dosbox_linux/daum/launch_eradicator_game_daum.sh": - when: - os: linux store: steam - workingDir: /dosbox_linux/daum - /dosbox_linux/launch_eradicator_config.sh: + workingDir: "/dosbox_linux/daum" + "/dosbox_linux/launch_eradicator_config.sh": - when: - os: linux store: steam - workingDir: /dosbox_linux - /dosbox_linux/launch_eradicator_editor.sh: + workingDir: "/dosbox_linux" + "/dosbox_linux/launch_eradicator_editor.sh": - when: - os: linux store: steam - workingDir: /dosbox_linux - /dosbox_linux/launch_eradicator_game.sh: + workingDir: "/dosbox_linux" + "/dosbox_linux/launch_eradicator_game.sh": - when: - os: linux store: steam - workingDir: /dosbox_linux - /dosbox_windows/daum/dosbox.exe: - - arguments: '-conf dosbox_eradicator.conf -conf dosbox_eradicator_launch_windows.conf -noconsole' + workingDir: "/dosbox_linux" + "/dosbox_windows/daum/dosbox.exe": + - arguments: "-conf dosbox_eradicator.conf -conf dosbox_eradicator_launch_windows.conf -noconsole" when: - os: windows store: steam - workingDir: /dosbox_windows/daum - /dosbox_windows/dosbox.exe: - - arguments: '-conf dosbox_eradicator.conf -conf dosbox_eradicator_launch_windows.conf -noconsole' + workingDir: "/dosbox_windows/daum" + "/dosbox_windows/dosbox.exe": + - arguments: "-conf dosbox_eradicator.conf -conf dosbox_eradicator_launch_windows.conf -noconsole" when: - os: windows store: steam - workingDir: /dosbox_windows - - arguments: '-conf dosbox_eradicator.conf -conf dosbox_eradicator_config_windows.conf -noconsole' + workingDir: "/dosbox_windows" + - arguments: "-conf dosbox_eradicator.conf -conf dosbox_eradicator_config_windows.conf -noconsole" when: - os: windows store: steam - workingDir: /dosbox_windows - - arguments: '-conf dosbox_eradicator.conf -conf dosbox_eradicator_editor_windows.conf -noconsole' + workingDir: "/dosbox_windows" + - arguments: "-conf dosbox_eradicator.conf -conf dosbox_eradicator_editor_windows.conf -noconsole" when: - os: windows store: steam - workingDir: /dosbox_windows + workingDir: "/dosbox_windows" steam: id: 329640 Eragon: files: - /Eragon.ini: + "/Eragon.ini": tags: - config when: - os: windows - /savegames: + "/savegames": tags: - save when: @@ -179391,7 +179917,7 @@ Erannorth Reborn: installDir: Erannorth Reborn: {} launch: - /Erannorth Reborn.exe: + "/Erannorth Reborn.exe": - when: - store: steam steam: @@ -179400,7 +179926,7 @@ Eraser & Builder: installDir: Eraser & Builder: {} launch: - /EraserAndBuilder.exe: + "/EraserAndBuilder.exe": - when: - os: windows store: steam @@ -179410,28 +179936,28 @@ EreaDrone Simulator: installDir: EreaDrone: {} launch: - /EDS.app: + "/EDS.app": - when: - os: mac store: steam - /EDS.exe: + "/EDS.exe": - when: - os: windows store: steam - /EreaDrone.exe: + "/EreaDrone.exe": - when: - os: windows store: steam steam: id: 866260 -'Ereban: Shadow Legacy': +"Ereban: Shadow Legacy": steam: id: 1671360 -'Eredia: The Diary of Heroes': +"Eredia: The Diary of Heroes": installDir: Eredia The Diary of Heroes: {} launch: - /Launcher.exe: + "/Launcher.exe": - when: - os: windows store: steam @@ -179440,31 +179966,31 @@ EreaDrone Simulator: Erefia: steam: id: 673290 -Eremidia - Archivist's Curse: +"Eremidia - Archivist's Curse": files: - /save: + "/save": tags: - save when: - os: windows installDir: - Eremidia - Archivist's Curse: {} + "Eremidia - Archivist's Curse": {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam steam: id: 2077550 -'Ergastulum: Dungeon Nightmares III': +"Ergastulum: Dungeon Nightmares III": installDir: Ergastulum: {} launch: - /Ergastulum.app: + "/Ergastulum.app": - when: - os: mac store: steam - /Ergastulum.exe: + "/Ergastulum.exe": - when: - os: windows store: steam @@ -179476,7 +180002,7 @@ Eric the Unready: installDir: Eric The Unready: {} launch: - /start.bat: + "/start.bat": - when: - os: windows store: steam @@ -179486,7 +180012,7 @@ Erinye: installDir: Erinye: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -179496,17 +180022,17 @@ Ermo: installDir: ERMO: {} launch: - /ERMO: - - arguments: '--disable-gpu' + "/ERMO": + - arguments: "--disable-gpu" when: - os: linux store: steam - /ERMO.app/Contents/MacOS/ERMO: + "/ERMO.app/Contents/MacOS/ERMO": - when: - os: mac store: steam - /ERMO.exe: - - arguments: '--in-process--gpu' + "/ERMO.exe": + - arguments: "--in-process--gpu" when: - os: windows store: steam @@ -179516,7 +180042,7 @@ Ero Date: installDir: Ero Date: {} launch: - /Ero Date.exe: + "/Ero Date.exe": - when: - os: windows store: steam @@ -179524,7 +180050,7 @@ Ero Date: id: 925040 Eroico: files: - /cloud: + "/cloud": tags: - save when: @@ -179532,11 +180058,11 @@ Eroico: installDir: Eroico: {} launch: - /Eroico.exe: + "/Eroico.exe": - when: - os: windows store: steam - /game.exe: + "/game.exe": - when: - store: steam steam: @@ -179548,11 +180074,11 @@ Eron: installDir: Eron: {} launch: - /eron.exe: + "/eron.exe": - when: - os: windows store: steam - /eron.x86: + "/eron.x86": - when: - os: linux store: steam @@ -179562,7 +180088,7 @@ Eros Fantasy: installDir: Eros Fantasy: {} launch: - /Eros Fantasy.exe: + "/Eros Fantasy.exe": - when: - os: windows store: steam @@ -179575,7 +180101,7 @@ Erotic Jigsaw Challenge Vol. 1: installDir: Erotic Jigsaw Challenge Vol 1: {} launch: - /nw.exe: + "/nw.exe": - when: - bit: 64 os: windows @@ -179586,7 +180112,7 @@ Erotic Jigsaw Challenge Vol. 2: installDir: Erotic Jigsaw Challenge Vol 2: {} launch: - /nw.exe: + "/nw.exe": - when: - bit: 64 os: windows @@ -179597,11 +180123,11 @@ Erotic Winter Sports: installDir: Erotic Winter Sports: {} launch: - /Erotic Winter Sports.app/Contents/MacOS/Erotic Winter Sports: + "/Erotic Winter Sports.app/Contents/MacOS/Erotic Winter Sports": - when: - os: mac store: steam - /Erotic Winter Sports.exe: + "/Erotic Winter Sports.exe": - when: - os: windows store: steam @@ -179611,7 +180137,7 @@ Errant Heart: installDir: Errant Heart: {} launch: - /Errant_Heart_Public_Release_1.0.exe: + "/Errant_Heart_Public_Release_1.0.exe": - when: - os: windows store: steam @@ -179621,15 +180147,15 @@ Errant Kingdom: installDir: Errant Kingdom: {} launch: - /Contents/MacOS/ErrantKingdom: + "/Contents/MacOS/ErrantKingdom": - when: - os: mac store: steam - /EK_Linux.x86_64: + "/EK_Linux.x86_64": - when: - os: linux store: steam - /ErrantKingdom.exe: + "/ErrantKingdom.exe": - when: - bit: 64 os: windows @@ -179640,30 +180166,30 @@ Error143: installDir: Error143: {} launch: - /Error143.app: + "/Error143.app": - when: - os: mac store: steam - /Error143.exe: + "/Error143.exe": - when: - bit: 64 os: windows store: steam - /Error143.sh: + "/Error143.sh": - when: - os: linux store: steam steam: id: 2066550 -'Error: Human Not Found': +"Error: Human Not Found": installDir: ERROR Human Not Found: {} launch: - /ErrorHumanNotFound.app: + "/ErrorHumanNotFound.app": - when: - os: mac store: steam - /ErrorHumanNotFound.exe: + "/ErrorHumanNotFound.exe": - when: - os: windows store: steam @@ -179673,15 +180199,15 @@ Ersatz: installDir: Ersatz: {} launch: - /Ersatz.app: + "/Ersatz.app": - when: - os: mac store: steam - /Ersatz.exe: + "/Ersatz.exe": - when: - os: windows store: steam - /runner: + "/runner": - when: - os: linux store: steam @@ -179691,7 +180217,7 @@ Erstwhile Tower: installDir: Erstwhile Tower: {} launch: - /Erstwhile Tower.exe: + "/Erstwhile Tower.exe": - when: - os: windows store: steam @@ -179701,11 +180227,11 @@ Eruption: installDir: Eruption: {} launch: - /Eruption.app: + "/Eruption.app": - when: - os: mac store: steam - /Eruption.exe: + "/Eruption.exe": - when: - os: windows store: steam @@ -179715,35 +180241,35 @@ Erusal: installDir: Erusal: {} launch: - /Erusal_2016-07-07.exe: + "/Erusal_2016-07-07.exe": - when: - os: windows store: steam - /Erusal_2016-07-07_Data.app/Contents/MacOS/Erusal_2016-07-07_Data: + "/Erusal_2016-07-07_Data.app/Contents/MacOS/Erusal_2016-07-07_Data": - when: - os: mac store: steam steam: id: 509230 -Erwin's Timewarp: +"Erwin's Timewarp": installDir: Erwins Timewarp: {} launch: - /ErwinsTimewarp.exe: + "/ErwinsTimewarp.exe": - when: - os: windows store: steam steam: id: 392690 -Eryi's Action: +"Eryi's Action": installDir: - Eryi's Action: {} + "Eryi's Action": {} launch: - /EryisAction: + "/EryisAction": - when: - os: linux store: steam - /eryi.exe: + "/eryi.exe": - when: - os: windows store: steam @@ -179751,7 +180277,7 @@ Eryi's Action: id: 261700 Erzurum: files: - /MyProject/Saved/SaveGames: + "/MyProject/Saved/SaveGames": tags: - save when: @@ -179759,7 +180285,7 @@ Erzurum: installDir: Erzurum: {} launch: - /MyProject.exe: + "/MyProject.exe": - when: - store: steam steam: @@ -179768,27 +180294,27 @@ Esc-8-bit: installDir: Esc-8-bit: {} launch: - /Esc-8-bit.exe: + "/Esc-8-bit.exe": - when: - os: windows store: steam steam: id: 1009220 -'Esc: From Planet': +"Esc: From Planet": installDir: Esc From Planet: {} launch: - /esc_fp.exe: + "/esc_fp.exe": - when: - os: windows store: steam steam: id: 985420 -'Escalation: Aggressors': +"Escalation: Aggressors": installDir: Escalation Aggressors: {} launch: - /EscalationAggressors/Escalation Aggressors.exe: + "/EscalationAggressors/Escalation Aggressors.exe": - when: - os: windows store: steam @@ -179798,7 +180324,7 @@ Escape: installDir: Escape (2D Game): {} launch: - /Escape.exe: + "/Escape.exe": - when: - os: windows store: steam @@ -179808,11 +180334,11 @@ Escape (2018): installDir: Escape: {} launch: - /Escape Mac.app: + "/Escape Mac.app": - when: - os: mac store: steam - /Escape.exe: + "/Escape.exe": - when: - os: windows store: steam @@ -179822,7 +180348,7 @@ Escape 2042 - The Truth Defenders: installDir: Escape2042: {} launch: - /E2042.exe: + "/E2042.exe": - when: - os: windows store: steam @@ -179830,7 +180356,7 @@ Escape 2042 - The Truth Defenders: id: 598590 Escape Academy: files: - /AppData/LocalLow/CoinCrewGames/Escape Academy: + "/AppData/LocalLow/CoinCrewGames/Escape Academy": tags: - save when: @@ -179838,7 +180364,7 @@ Escape Academy: installDir: Escape Academy: {} launch: - /Escape Academy.exe: + "/Escape Academy.exe": - when: - store: steam steam: @@ -179853,7 +180379,7 @@ Escape Artist: Mechanisms Of Mystery: {} steam: id: 875640 -'Escape Artist: The Trial': +"Escape Artist: The Trial": installDir: Escape Artist The Trial: {} steam: @@ -179877,7 +180403,7 @@ Escape Code - Coding Adventure: installDir: Escape Code: {} launch: - /EscapeCode.app/Contents/MacOS/EscapeCode: + "/EscapeCode.app/Contents/MacOS/EscapeCode": - when: - os: mac store: steam @@ -179885,13 +180411,13 @@ Escape Code - Coding Adventure: id: 842350 Escape Dead Island: files: - /userdata//226560/remote: + "/userdata//226560/remote": tags: - save when: - os: windows store: steam - /Fatshark/Escape Dead Island: + "/Fatshark/Escape Dead Island": tags: - config when: @@ -179899,8 +180425,8 @@ Escape Dead Island: installDir: Escape Dead Island: {} launch: - /EscapeDeadIsland.exe: - - arguments: '-bundle-dir bundle' + "/EscapeDeadIsland.exe": + - arguments: "-bundle-dir bundle" when: - store: steam steam: @@ -179909,7 +180435,7 @@ Escape Doodland: installDir: Escape Doodland: {} launch: - /EscapeDoodland.exe: + "/EscapeDoodland.exe": - when: - os: windows store: steam @@ -179919,11 +180445,11 @@ Escape Dungeon: installDir: EscapeDungeon: {} launch: - /EscapeDungeon.app: + "/EscapeDungeon.app": - when: - os: mac store: steam - /EscapeDungeon.exe: + "/EscapeDungeon.exe": - when: - bit: 64 os: windows @@ -179934,7 +180460,7 @@ Escape Expert: installDir: EscapeExpert: {} launch: - /EscapeExpert.exe: + "/EscapeExpert.exe": - when: - store: steam steam: @@ -179943,22 +180469,28 @@ Escape Fantasy: installDir: EscapeFantasy: {} launch: - /EscapeFantasy.app: + "/EscapeFantasy.app": - when: + - bit: 32 + os: mac + store: steam - bit: 64 os: mac store: steam - /EscapeFantasy.exe: + "/EscapeFantasy.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam - /EscapeFantasy.x86: + "/EscapeFantasy.x86": - when: - bit: 32 os: linux store: steam - /EscapeFantasy.x86_64: + "/EscapeFantasy.x86_64": - when: - bit: 64 os: linux @@ -179969,7 +180501,7 @@ Escape First: installDir: Escape First: {} launch: - /EscapeFirst.exe: + "/EscapeFirst.exe": - when: - os: windows store: steam @@ -179979,7 +180511,7 @@ Escape First 2: installDir: EscapeFirst2: {} launch: - /EscapeFirst2.exe: + "/EscapeFirst2.exe": - when: - os: windows store: steam @@ -179989,11 +180521,11 @@ Escape From Cozy Island: installDir: Escape From Cozy Island: {} launch: - /Escape From Cozy Island.app/Contents/MacOS/Escape From Cozy Island: + "/Escape From Cozy Island.app/Contents/MacOS/Escape From Cozy Island": - when: - os: mac store: steam - /Escape From Cozy Island.exe: + "/Escape From Cozy Island.exe": - when: - os: windows store: steam @@ -180003,7 +180535,7 @@ Escape From Darkmoor Manor: installDir: Escape From Darkmoor Manor: {} launch: - /Darkmoor_Manor.exe: + "/Darkmoor_Manor.exe": - when: - os: windows store: steam @@ -180013,11 +180545,11 @@ Escape From Earth: installDir: Escape From Earth: {} launch: - /Escape From Earth: + "/Escape From Earth": - when: - os: linux store: steam - /Escape From Earth.exe: + "/Escape From Earth.exe": - when: - os: windows store: steam @@ -180028,12 +180560,12 @@ Escape From Russia: id: 1223230 Escape From Tethys: files: - /AppData/LocalLow/EscapeFromTethys/Escape From Tethys: + "/AppData/LocalLow/EscapeFromTethys/Escape From Tethys": tags: - save when: - os: windows - /Library/Application Support/com.Whimsical.EscapeFromTethys: + "/Library/Application Support/com.Whimsical.EscapeFromTethys": tags: - save when: @@ -180041,11 +180573,11 @@ Escape From Tethys: installDir: Escape From Tethys: {} launch: - /Contents/MacOS/EscapeFromTethysMac: + "/Contents/MacOS/EscapeFromTethysMac": - when: - os: mac store: steam - /Escape From Tethys.exe: + "/Escape From Tethys.exe": - when: - os: windows store: steam @@ -180059,20 +180591,20 @@ Escape From The Dragons: installDir: Escape From The Dragons: {} launch: - /EscapeFromTheDragons.app/Contents/MacOS/EscapeFromTheDragons: + "/EscapeFromTheDragons.app/Contents/MacOS/EscapeFromTheDragons": - when: - os: mac store: steam - /EscapeFromTheDragons.exe: + "/EscapeFromTheDragons.exe": - when: - os: windows store: steam - /EscapeFromTheDragons.x86: + "/EscapeFromTheDragons.x86": - when: - bit: 32 os: linux store: steam - /EscapeFromTheDragons.x86_64: + "/EscapeFromTheDragons.x86_64": - when: - bit: 64 os: linux @@ -180083,7 +180615,7 @@ Escape From The Grim: installDir: Escape From The Grim: {} launch: - /Escape From The Grim.exe: + "/Escape From The Grim.exe": - when: - os: windows store: steam @@ -180093,7 +180625,7 @@ Escape Game: installDir: Escape Game: {} launch: - /Escape Game.exe: + "/Escape Game.exe": - when: - store: steam steam: @@ -180102,7 +180634,7 @@ Escape Game Cake: installDir: Escape Game Cake: {} launch: - /EscapeGameCake.exe: + "/EscapeGameCake.exe": - when: - bit: 64 os: windows @@ -180111,13 +180643,13 @@ Escape Game Cake: id: 1103640 Escape Goat: files: - /Escape Goat: + "/Escape Goat": tags: - config - save when: - os: windows - /Escape Goat: + "/Escape Goat": tags: - config - save @@ -180128,23 +180660,23 @@ Escape Goat: installDir: Escape Goat: {} launch: - /Escape Goat.app: + "/Escape Goat.app": - when: - os: mac store: steam - /EscapeGoat: + "/EscapeGoat": - when: - os: linux store: steam - - arguments: '-windowed' + - arguments: "-windowed" when: - os: linux store: steam - /EscapeGoat.exe: + "/EscapeGoat.exe": - when: - os: windows store: steam - - arguments: '-windowed' + - arguments: "-windowed" when: - os: windows store: steam @@ -180152,24 +180684,24 @@ Escape Goat: id: 251370 Escape Goat 2: files: - /Library/Application Support/Escape Goat 2: + "/Library/Application Support/Escape Goat 2": tags: - config - save when: - os: mac - /Escape Goat 2: + "/Escape Goat 2": tags: - config - save when: - os: windows - /Escape Goat 2: + "/Escape Goat 2": tags: - config when: - os: linux - /Escape Goat 2: + "/Escape Goat 2": tags: - save when: @@ -180179,15 +180711,15 @@ Escape Goat 2: installDir: Escape Goat 2: {} launch: - /Escape Goat 2.app: + "/Escape Goat 2.app": - when: - os: mac store: steam - /EscapeGoat2: + "/EscapeGoat2": - when: - os: linux store: steam - /EscapeGoat2.exe: + "/EscapeGoat2.exe": - when: - os: windows store: steam @@ -180197,11 +180729,11 @@ Escape Lala: installDir: Escape Lala: {} launch: - /Escape Lala.app: + "/Escape Lala.app": - when: - os: mac store: steam - /Escape Lala.exe: + "/Escape Lala.exe": - when: - os: windows store: steam @@ -180211,15 +180743,15 @@ Escape Lala 2: installDir: Escape Lala 2: {} launch: - /Escape Lala 2.app: + "/Escape Lala 2.app": - when: - os: mac store: steam - /Escape Lala 2.exe: + "/Escape Lala 2.exe": - when: - os: windows store: steam - /Escape Lala 2.x64: + "/Escape Lala 2.x64": - when: - os: linux store: steam @@ -180230,19 +180762,19 @@ Escape Legacy VR: Escape Legacy VR: {} steam: id: 995000 -'Escape Legacy: Ancient Scrolls': +"Escape Legacy: Ancient Scrolls": installDir: Escape Legacy: {} launch: - /EscapeLegacyPC: + "/EscapeLegacyPC": - when: - os: linux store: steam - /EscapeLegacyPC.app/Contents/MacOS/EscapeLegacyPC: + "/EscapeLegacyPC.app/Contents/MacOS/EscapeLegacyPC": - when: - os: mac store: steam - /EscapeLegacyPC.exe: + "/EscapeLegacyPC.exe": - when: - os: windows store: steam @@ -180252,8 +180784,8 @@ Escape Lizards: installDir: Escape Lizards: {} launch: - /EscapeLizards.exe: - - arguments: .\\ + "/EscapeLizards.exe": + - arguments: ".\\\\" when: - os: windows store: steam @@ -180261,7 +180793,7 @@ Escape Lizards: id: 508940 Escape Machines: files: - /Macromedia/Flash Player/#SharedObjects///NEOScavenger.exe/EM.sol: + "/Macromedia/Flash Player/#SharedObjects///NEOScavenger.exe/EM.sol": tags: - save when: @@ -180269,7 +180801,7 @@ Escape Machines: installDir: Escape Machines: {} launch: - /EMBeta.exe: + "/EMBeta.exe": - when: - os: windows store: steam @@ -180279,7 +180811,7 @@ Escape Mind: installDir: Escape Mind: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -180289,7 +180821,7 @@ Escape Rebooted: installDir: Escape Rebooted: {} launch: - /escaperebooted_x64.exe: + "/escaperebooted_x64.exe": - when: - os: windows store: steam @@ -180309,11 +180841,11 @@ Escape Room Academy: installDir: Escape Room Academy: {} launch: - /Escape Room Academy.exe: + "/Escape Room Academy.exe": - when: - os: windows store: steam - /EscapeRoomAcademy.app: + "/EscapeRoomAcademy.app": - when: - os: mac store: steam @@ -180327,30 +180859,30 @@ Escape Room VR: ESCAPE ROOM VR: {} steam: id: 1210650 -'Escape Room VR: Stories': +"Escape Room VR: Stories": installDir: Escape Room VR Stories: {} steam: id: 800380 -'Escape Room: Reality': +"Escape Room: Reality": installDir: ESCAPE Room Reality: {} launch: - /game.app: - - arguments: '--in-process-gpu' + "/game.app": + - arguments: "--in-process-gpu" when: - os: mac store: steam - /game.exe: - - arguments: '--in-process-gpu' + "/game.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam steam: id: 652510 -'Escape Room: The Sick Colleague': +"Escape Room: The Sick Colleague": files: - /AppData/LocalLow/Bitbeast Games/Escape Room - The Sick Colleague/*.json: + "/AppData/LocalLow/Bitbeast Games/Escape Room - The Sick Colleague/*.json": tags: - save when: @@ -180358,7 +180890,7 @@ Escape Room VR: installDir: Escape Room - The Sick Colleague: {} launch: - /Escape Room.exe: + "/Escape Room.exe": - when: - os: windows store: steam @@ -180370,12 +180902,12 @@ Escape Room VR: id: 1301720 Escape Rosecliff Island: files: - /SpinTop Games/Escape Rosecliff Island/*.mse: + "/SpinTop Games/Escape Rosecliff Island/*.mse": tags: - save when: - os: windows - /SpinTop Games/Escape Rosecliff Island/options.mso: + "/SpinTop Games/Escape Rosecliff Island/options.mso": tags: - config when: @@ -180383,11 +180915,11 @@ Escape Rosecliff Island: installDir: Escape Rosecliff Island: {} launch: - /Escape Rosecliff Island.app: + "/Escape Rosecliff Island.app": - when: - os: mac store: steam - /EscapeRosecliffIsland.exe: + "/EscapeRosecliffIsland.exe": - when: - os: windows store: steam @@ -180395,7 +180927,7 @@ Escape Rosecliff Island: id: 3600 Escape Simulator: files: - /AppData/LocalLow/Pine Studio/Escape Simulator/EscapeSimulator-*.sav: + "/AppData/LocalLow/Pine Studio/Escape Simulator/EscapeSimulator-*.sav": tags: - save when: @@ -180404,20 +180936,20 @@ Escape Simulator: steamExtra: - 1538700 - 1942100 - - 2175260 - 2000170 + - 2175260 installDir: Escape Simulator: {} launch: - /Escape Simulator.exe: + "/Escape Simulator.exe": - when: - os: windows store: steam - /EscapeSimulator: + "/EscapeSimulator": - when: - os: linux store: steam - /EscapeSimulator.app: + "/EscapeSimulator.app": - when: - os: mac store: steam @@ -180444,25 +180976,25 @@ Escape The Labyrinth: installDir: Escape The Labyrinth: {} launch: - /Escape The Labyrinth.app: + "/Escape The Labyrinth.app": - when: - os: mac store: steam - /Escape The Labyrinth.exe: + "/Escape The Labyrinth.exe": - when: - os: windows store: steam - /Escape The Labyrinth.x86: + "/Escape The Labyrinth.x86": - when: - os: linux store: steam steam: id: 920450 -'Escape The Lost Kingdom: The Forgotten Pharaoh': +"Escape The Lost Kingdom: The Forgotten Pharaoh": installDir: Escape The Lost Kingdom The Forgotten Pharaoh: {} launch: - /ETLK.exe: + "/ETLK.exe": - when: - store: steam steam: @@ -180471,7 +181003,7 @@ Escape The Manor: installDir: Escape The Manor: {} launch: - /EscapeTheMannor.exe: + "/EscapeTheMannor.exe": - when: - store: steam steam: @@ -180480,7 +181012,7 @@ Escape The Museum: installDir: Escape The Museum: {} launch: - /Museum.exe: + "/Museum.exe": - when: - store: steam steam: @@ -180489,11 +181021,11 @@ Escape This: installDir: Escape This: {} launch: - /Escape This.app: + "/Escape This.app": - when: - os: mac store: steam - /Escape This.exe: + "/Escape This.exe": - when: - os: windows store: steam @@ -180506,11 +181038,11 @@ Escape Velocity: installDir: Escape Velocity: {} launch: - /Escape_Velocity.exe: + "/Escape_Velocity.exe": - when: - os: windows store: steam - /mac_content.app: + "/mac_content.app": - when: - os: mac store: steam @@ -180520,11 +181052,11 @@ Escape Zolstar: installDir: Escape Zolstar: {} launch: - /Escape Zolstar.app: + "/Escape Zolstar.app": - when: - os: mac store: steam - /Escape Zolstar.exe: + "/Escape Zolstar.exe": - when: - os: windows store: steam @@ -180534,11 +181066,11 @@ Escape Zombie Land: installDir: jjxcz: {} launch: - /绝境幸存者.app: + "/绝境幸存者.app": - when: - os: mac store: steam - /绝境幸存者.exe: + "/绝境幸存者.exe": - when: - os: windows store: steam @@ -180548,7 +181080,7 @@ Escape again: installDir: EscapeAgain: {} launch: - /EscapeAgain.exe: + "/EscapeAgain.exe": - when: - store: steam steam: @@ -180557,7 +181089,7 @@ Escape from BioStation: installDir: Escape From BioStation: {} launch: - /EscapeFromBioStation.exe: + "/EscapeFromBioStation.exe": - when: - os: windows store: steam @@ -180567,33 +181099,33 @@ Escape from Chernobyl: installDir: Escape from Chernobyl: {} launch: - /Contents/MacOS/efc: + "/Contents/MacOS/efc": - when: - os: mac store: steam - /efc: + "/efc": - when: - os: linux store: steam - /efc.exe: + "/efc.exe": - when: - os: windows store: steam steam: id: 1098700 -'Escape from Chernobyl: Jailbreak': +"Escape from Chernobyl: Jailbreak": installDir: Escape from Chernobyl Jailbreak: {} launch: - /Contents/MacOS/jailbreak: + "/Contents/MacOS/jailbreak": - when: - os: mac store: steam - /jailbreak: + "/jailbreak": - when: - os: linux store: steam - /jailbreak.exe: + "/jailbreak.exe": - when: - os: windows store: steam @@ -180603,7 +181135,7 @@ Escape from Classroom: installDir: Escape from Classroom: {} launch: - /Escape from Classroom.exe: + "/Escape from Classroom.exe": - when: - store: steam steam: @@ -180615,7 +181147,7 @@ Escape from Fortress Lugohm: installDir: Escape from Fortress Lugohm: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -180628,7 +181160,7 @@ Escape from Labyrinth: installDir: EFL: {} launch: - /Labyrinth.exe: + "/Labyrinth.exe": - when: - bit: 64 os: windows @@ -180639,12 +181171,12 @@ Escape from Life Inc: installDir: Escape from Life Inc: {} launch: - /Life Inc.exe: + "/Life Inc.exe": - when: - bit: 64 os: windows store: steam - /Life Inc.x86_64: + "/Life Inc.x86_64": - when: - bit: 64 os: linux @@ -180653,12 +181185,12 @@ Escape from Life Inc: id: 1208220 Escape from Monkey Island: files: - /Saves/efmi*.gsv: + "/Saves/efmi*.gsv": tags: - save when: - os: windows - /Saves/efmi.cfg: + "/Saves/efmi.cfg": tags: - config when: @@ -180668,7 +181200,7 @@ Escape from Monkey Island: installDir: Escape from Monkey Island: {} launch: - /start.bat: + "/start.bat": - when: - os: windows store: steam @@ -180680,7 +181212,7 @@ Escape from Naraka: installDir: Leyak: {} launch: - /Leyak.exe: + "/Leyak.exe": - when: - bit: 64 os: windows @@ -180694,7 +181226,7 @@ Escape from Paradise: installDir: Escape from Paradise: {} launch: - /Escape.exe: + "/Escape.exe": - when: - store: steam steam: @@ -180703,7 +181235,7 @@ Escape from Paradise 2: installDir: Escape from Paradise 2: {} launch: - /Escape2.exe: + "/Escape2.exe": - when: - store: steam steam: @@ -180712,11 +181244,13 @@ Escape from Pleasure Planet: installDir: Escape from Pleasure Planet: {} launch: - /main: + "/main": - when: + - os: mac + store: steam - os: linux store: steam - /main.exe: + "/main.exe": - when: - os: windows store: steam @@ -180726,16 +181260,16 @@ Escape from Puzzlegate: installDir: Escape from Puzzlegate: {} launch: - /Puzzlegate.app: + "/Puzzlegate.app": - when: - os: mac store: steam - /Puzzlegate.exe: + "/Puzzlegate.exe": - when: - bit: 32 os: windows store: steam - /Puzzlegate.sh: + "/Puzzlegate.sh": - when: - os: linux store: steam @@ -180746,14 +181280,14 @@ Escape from Pyramid: id: 828290 Escape from Ragor: files: - /*.EGM: + "/*.EGM": tags: - save when: - os: dos -'Escape from Ragor II: Megrim''s Rache': +"Escape from Ragor II: Megrim's Rache": files: - /*.EGM: + "/*.EGM": tags: - save when: @@ -180762,7 +181296,7 @@ Escape from Space Shredder: installDir: Escape_From_Space_Shredder: {} launch: - /Escape_From_Space_Shredder.exe: + "/Escape_From_Space_Shredder.exe": - when: - os: windows store: steam @@ -180770,7 +181304,7 @@ Escape from Space Shredder: id: 681540 Escape from Tarkov: files: - /Battlestate Games/Escape from Tarkov/Settings: + "/Battlestate Games/Escape from Tarkov/Settings": tags: - config when: @@ -180783,17 +181317,17 @@ Escape from Voyna: installDir: ESCAPE FROM VOYNA Tactical FPS survival: {} launch: - /EFV.exe: + "/EFV.exe": - when: - os: windows store: steam steam: id: 771400 -'Escape from Voyna: Aliens from Area 51': +"Escape from Voyna: Aliens from Area 51": installDir: ESCAPE FROM VOYNA ALIENS FROM AREA 51: {} launch: - /EFT51.exe: + "/EFT51.exe": - when: - store: steam steam: @@ -180805,16 +181339,16 @@ Escape from the Lostmoon: installDir: Escape from the Lostmoon: {} launch: - /EscapeLostmoon.app/Contents/MacOS/JavaAppLauncher: + "/EscapeLostmoon.app/Contents/MacOS/JavaAppLauncher": - when: - os: mac store: steam - /lostmoon: + "/lostmoon": - when: - bit: 64 os: linux store: steam - /lostmoon.exe: + "/lostmoon.exe": - when: - os: windows store: steam @@ -180824,15 +181358,15 @@ Escape from the Princess: installDir: EscapeFromThePrincess: {} launch: - /EscapeFromThePrincess.app: + "/EscapeFromThePrincess.app": - when: - os: mac store: steam - /EscapeFromThePrincess.exe: + "/EscapeFromThePrincess.exe": - when: - os: windows store: steam - /EscapeFromThePrincess.sh: + "/EscapeFromThePrincess.sh": - when: - os: linux store: steam @@ -180842,7 +181376,7 @@ Escape from the death castle: installDir: Escape from the death castle: {} launch: - /Escape from the death castle.exe: + "/Escape from the death castle.exe": - when: - os: windows store: steam @@ -180855,11 +181389,11 @@ Escape from the tomb tower: installDir: Escape from the tomb tower: {} launch: - /EscapeFromTheTombTower.exe: + "/EscapeFromTheTombTower.exe": - when: - os: windows store: steam - /EscapeFromTheTombTower.sh: + "/EscapeFromTheTombTower.sh": - when: - os: linux store: steam @@ -180872,11 +181406,11 @@ Escape the Ayuwoki: installDir: Escape the Ayuwoki: {} launch: - /Escape the Ayuwoki.app: + "/Escape the Ayuwoki.app": - when: - os: mac store: steam - /Escape the Ayuwoki.exe: + "/Escape the Ayuwoki.exe": - when: - os: windows store: steam @@ -180891,7 +181425,7 @@ Escape the Darkness: installDir: Escape the Darkness: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -180904,7 +181438,7 @@ Escape the Game: installDir: Escape the Game: {} launch: - /EscapeTheGame.exe: + "/EscapeTheGame.exe": - when: - os: windows store: steam @@ -180927,7 +181461,7 @@ Escape the Mazes: installDir: Escape the Mazes: {} launch: - /mazes.exe: + "/mazes.exe": - when: - os: windows store: steam @@ -180937,7 +181471,7 @@ Escape the Ninja Room: installDir: Escape the Ninja Room: {} launch: - /Escape the Ninja Room.exe: + "/Escape the Ninja Room.exe": - when: - os: windows store: steam @@ -180947,11 +181481,11 @@ Escape the Omnochronom!: installDir: Escape the Omnochronom: {} launch: - /Escape the Omnochronom!.exe: + "/Escape the Omnochronom!.exe": - when: - os: windows store: steam - /EscapeTheOmnochronom.app: + "/EscapeTheOmnochronom.app": - when: - os: mac store: steam @@ -180961,7 +181495,7 @@ Escape the Pacific: installDir: Escape The Pacific: {} launch: - /EscapeThePacific.exe: + "/EscapeThePacific.exe": - when: - bit: 64 os: windows @@ -180972,11 +181506,11 @@ Escape the Past: installDir: Escape The Past: {} launch: - /Escape The Past.app/Contents/MacOS/Escape The Past: + "/Escape The Past.app/Contents/MacOS/Escape The Past": - when: - os: mac store: steam - /Escape The Past.exe: + "/Escape The Past.exe": - when: - os: windows store: steam @@ -180986,7 +181520,7 @@ Escape until Friday: installDir: Escape until Friday: {} launch: - /EscapeUntilFriday.exe: + "/EscapeUntilFriday.exe": - when: - os: windows store: steam @@ -180996,44 +181530,44 @@ Escape!: installDir: Escape!: {} launch: - /Escape.exe: + "/Escape.exe": - when: - os: windows store: steam steam: id: 806600 -'Escape: Close Call': +"Escape: Close Call": installDir: Escape Close Call: {} launch: - /Escape.app/Contents/MacOS/Escape: + "/Escape.app/Contents/MacOS/Escape": - when: - os: mac store: steam - /Escape32.exe: + "/Escape32.exe": - when: - bit: 32 os: windows store: steam - /Escape64.exe: + "/Escape64.exe": - when: - bit: 64 os: windows store: steam steam: id: 448380 -'Escape: Sierra Leone': +"Escape: Sierra Leone": installDir: Escape Sierra Leone: {} launch: - /Escape Sierra Leone/EscapeSierraLeone.exe: + "/Escape Sierra Leone/EscapeSierraLeone.exe": - when: - bit: 64 os: windows store: steam steam: id: 440450 -'Escape: VR': +"Escape: VR": installDir: Escape VR: {} steam: @@ -181042,18 +181576,18 @@ EscapeRoute: installDir: EscapeRoute: {} launch: - /Escape_route.exe: + "/Escape_route.exe": - when: - os: windows store: steam steam: id: 1036030 -'EscapeVR: The Basement': +"EscapeVR: The Basement": installDir: Escape!VR -The Basement-: {} steam: id: 552060 -'EscapeVR: Trapped above the Clouds': +"EscapeVR: Trapped above the Clouds": installDir: Escape!VR -Above the Clouds-: {} steam: @@ -181062,15 +181596,15 @@ EscapeeZ: installDir: EscapeeZ: {} launch: - /EscapeeZ.exe: + "/EscapeeZ.exe": - when: - os: windows store: steam - /EscapeeZ.x86_64: + "/EscapeeZ.x86_64": - when: - os: linux store: steam - /mac_content.app/Contents/MacOS/mac_content: + "/mac_content.app/Contents/MacOS/mac_content": - when: - os: mac store: steam @@ -181080,7 +181614,7 @@ Escargot: installDir: Escargot: {} launch: - /escargot.exe: + "/escargot.exe": - when: - os: windows store: steam @@ -181090,24 +181624,24 @@ Escargot Kart: installDir: Escargot Kart: {} launch: - /Escargot Kart.exe: + "/Escargot Kart.exe": - when: - os: windows store: steam - - arguments: '-screen-quality Ugly' + - arguments: "-screen-quality Ugly" when: - os: windows store: steam steam: id: 488070 -'Eschalon: Book I': +"Eschalon: Book I": files: - /Eschalon Book 1 Saved Games: + "/Eschalon Book 1 Saved Games": tags: - save when: - os: windows - /Eschalon Book 1 Saved Games/eschalon.cfg: + "/Eschalon Book 1 Saved Games/eschalon.cfg": tags: - config when: @@ -181117,33 +181651,33 @@ Escargot Kart: installDir: Eschalon Book I: {} launch: - /eschalon_book_1: + "/eschalon_book_1": - when: - os: linux store: steam - /eschalon_book_1.app: + "/eschalon_book_1.app": - when: - os: mac store: steam - /eschalon_book_1.exe: + "/eschalon_book_1.exe": - when: - os: windows store: steam steam: id: 25600 -'Eschalon: Book II': +"Eschalon: Book II": files: - /general.cfg: + "/general.cfg": tags: - config when: - os: windows - /Basilisk Games/Book 2 Saved Games/eb2.cfg: + "/Basilisk Games/Book 2 Saved Games/eb2.cfg": tags: - config when: - os: windows - /Basilisk Games/Book 2 Saved Games/slot*: + "/Basilisk Games/Book 2 Saved Games/slot*": tags: - save when: @@ -181153,33 +181687,33 @@ Escargot Kart: installDir: Eschalon Book 2: {} launch: - /book_2.exe: + "/book_2.exe": - when: - os: windows store: steam - /eschalon_book_2: + "/eschalon_book_2": - when: - os: linux store: steam - /eschalon_book_2.app: + "/eschalon_book_2.app": - when: - os: mac store: steam steam: id: 25620 -'Eschalon: Book III': +"Eschalon: Book III": files: - /general.cfg: + "/general.cfg": tags: - config when: - os: windows - /Basilisk Games/Book 3 Saved Games/eb3.cfg: + "/Basilisk Games/Book 3 Saved Games/eb3.cfg": tags: - config when: - os: windows - /Basilisk Games/Book 3 Saved Games/slot*: + "/Basilisk Games/Book 3 Saved Games/slot*": tags: - save when: @@ -181189,15 +181723,15 @@ Escargot Kart: installDir: eschalon_book_3: {} launch: - /eschalon-book-3.app: + "/eschalon-book-3.app": - when: - os: mac store: steam - /eschalon_book_3: + "/eschalon_book_3": - when: - os: linux store: steam - /eschalon_book_3.exe: + "/eschalon_book_3.exe": - when: - os: windows store: steam @@ -181207,7 +181741,7 @@ Escort Commander: installDir: EscortCommander: {} launch: - /EscortCommander.exe: + "/EscortCommander.exe": - when: - os: windows store: steam @@ -181217,7 +181751,7 @@ Escoteiros Espaciais: installDir: Escoteiros Espaciais: {} launch: - /Escoteiros Espaciais.exe: + "/Escoteiros Espaciais.exe": - when: - os: windows store: steam @@ -181227,7 +181761,7 @@ Eseapner: installDir: Eseapner: {} launch: - /Eseapner.exe: + "/Eseapner.exe": - when: - bit: 64 os: windows @@ -181238,21 +181772,21 @@ Eselmir and the Five Magical Gifts: installDir: Eselmir: {} launch: - /Eselmir.app: + "/Eselmir.app": - when: - os: mac store: steam - /Eselmir.exe: + "/Eselmir.exe": - when: - os: windows store: steam steam: id: 677850 -'Eskimo Bob: Starring Alfonzo': +"Eskimo Bob: Starring Alfonzo": installDir: Eskimo Bob: {} launch: - /EskimoBob.exe: + "/EskimoBob.exe": - when: - bit: 64 os: windows @@ -181268,7 +181802,7 @@ Esper - Make You Live Again: installDir: Esper - Make You Live Again: {} launch: - /Esper - Make You Live Again.exe: + "/Esper - Make You Live Again.exe": - when: - os: windows store: steam @@ -181278,13 +181812,13 @@ Esperia ~ Uprising of the Scarlet Witch ~: installDir: Esperia ~ Uprising of the Scarlet Witch ~: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam steam: id: 1138210 -'Espire 1: VR Operative': +"Espire 1: VR Operative": installDir: Espire 1 VR Operative: {} steam: @@ -181293,7 +181827,7 @@ Esport Test Toolkit (ETT): installDir: Esport Test Toolkit: {} launch: - /ETT.exe: + "/ETT.exe": - when: - bit: 64 os: windows @@ -181304,7 +181838,7 @@ Esports Legend: installDir: 电竞传奇: {} launch: - /EL_Steam.exe: + "/EL_Steam.exe": - when: - os: windows store: steam @@ -181314,13 +181848,13 @@ Esports Life Tycoon: installDir: Esports Life Tycoon: {} launch: - /EsportsLifeTycoon.app/Contents/MacOS/EsportsLifeTycoon: - - arguments: '-force-gfx-direct -force-glcore32' + "/EsportsLifeTycoon.app/Contents/MacOS/EsportsLifeTycoon": + - arguments: "-force-gfx-direct -force-glcore32" when: - os: mac store: steam - /EsportsLifeTycoon.exe: - - arguments: '-force-gfx-direct' + "/EsportsLifeTycoon.exe": + - arguments: "-force-gfx-direct" when: - os: windows store: steam @@ -181328,7 +181862,7 @@ Esports Life Tycoon: id: 897410 Espresso Tycoon: files: - /AppData/LocalLow/DreamWay Games/Espresso Tycoon/GameState: + "/AppData/LocalLow/DreamWay Games/Espresso Tycoon/GameState": tags: - save when: @@ -181336,7 +181870,7 @@ Espresso Tycoon: installDir: Espresso Tycoon: {} launch: - /Espresso Tycoon.exe: + "/Espresso Tycoon.exe": - when: - store: steam steam: @@ -181347,7 +181881,7 @@ Essays on Empathy: installDir: Essays on Empathy: {} launch: - /Essays-on-Empathy.exe: + "/Essays-on-Empathy.exe": - when: - store: steam steam: @@ -181358,7 +181892,7 @@ Essence: Essence Defenders: steam: id: 755420 -'Essence of Illumination: The Beginning': +"Essence of Illumination: The Beginning": installDir: Essence of Illumination The Beginning: {} steam: @@ -181367,13 +181901,13 @@ Estellium Legends: installDir: Estellium Legends: {} launch: - /Game.app: - - arguments: '--in-process-gpu' + "/Game.app": + - arguments: "--in-process-gpu" when: - os: mac store: steam - /Game.exe: - - arguments: '--in-process-gpu' + "/Game.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam @@ -181381,12 +181915,12 @@ Estellium Legends: id: 1013070 Estencel: files: - /Estencel/Saved/Config/WindowsNoEditor: + "/Estencel/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /Estencel/Saved/SaveGames/*.sav: + "/Estencel/Saved/SaveGames/*.sav": tags: - save when: @@ -181394,7 +181928,7 @@ Estencel: installDir: Estencel: {} launch: - /Estencel.exe: + "/Estencel.exe": - when: - os: windows store: steam @@ -181404,22 +181938,22 @@ Estiman: installDir: Estiman: {} launch: - /Estiman.exe: + "/Estiman.exe": - when: - os: windows store: steam steam: id: 560220 -'Estranged: Act I': +"Estranged: Act I": files: - /estrangedact1/cfg: + "/estrangedact1/cfg": tags: - config when: - os: windows - os: mac - os: linux - /estrangedact1/save: + "/estrangedact1/save": tags: - save when: @@ -181429,68 +181963,70 @@ Estiman: installDir: Estranged Act I: {} launch: - /Hammer.bat: + "/Hammer.bat": - when: - bit: 64 os: windows store: steam - /WorkshopMount.bat: + "/WorkshopMount.bat": - when: - bit: 64 os: windows store: steam - /hl2.exe: - - arguments: '-game estrangedact1 -steam' + "/hl2.exe": + - arguments: "-game estrangedact1 -steam" when: - os: windows store: steam - workingDir: /estrangedact1 - /hl2.sh: - - arguments: '-game estrangedact1 -steam' + workingDir: "/estrangedact1" + "/hl2.sh": + - arguments: "-game estrangedact1 -steam" when: - os: mac store: steam - workingDir: /estrangedact1 + - os: linux + store: steam + workingDir: "/estrangedact1" steam: id: 261820 -'Estranged: The Departure': +"Estranged: The Departure": files: - /.config/Epic/Insulam/Saved/Config/LinuxNoEditor: + "/.config/Epic/Insulam/Saved/Config/LinuxNoEditor": tags: - config when: - os: linux - /.config/Epic/Insulam/Saved/SaveGames/GameState: + "/.config/Epic/Insulam/Saved/SaveGames/GameState": tags: - save when: - os: linux - /Library/Application/ Support/Epic/Insulam/Saved/SaveGames/GameState: + "/Library/Application/ Support/Epic/Insulam/Saved/SaveGames/GameState": tags: - save when: - os: mac - /Library/Containers/com.estranged.insulam/Data/Library/Application/ Support/Epic/Insulam/Saved/SaveGames/GameState: + "/Library/Containers/com.estranged.insulam/Data/Library/Application/ Support/Epic/Insulam/Saved/SaveGames/GameState": tags: - save when: - os: mac - /Library/Containers/com.estranged.insulam/Data/Library/Preferences/Insulam/MacNoEditor: + "/Library/Containers/com.estranged.insulam/Data/Library/Preferences/Insulam/MacNoEditor": tags: - config when: - os: mac - /Library/Preferences/Insulam/MacNoEditor: + "/Library/Preferences/Insulam/MacNoEditor": tags: - config when: - os: mac - /Insulam/Saved/Config: + "/Insulam/Saved/Config": tags: - config when: - os: windows - /Insulam/Saved/SaveGames/GameState: + "/Insulam/Saved/SaveGames/GameState": tags: - save when: @@ -181498,15 +182034,15 @@ Estiman: installDir: Estranged Act II: {} launch: - /Insulam.app: + "/Insulam.app": - when: - os: mac store: steam - /Insulam.exe: + "/Insulam.exe": - when: - os: windows store: steam - /Insulam.sh: + "/Insulam.sh": - when: - os: linux store: steam @@ -181520,12 +182056,12 @@ Etaria: id: 423920 Eterium: files: - /SavedGames/Eterium/Eterium/AllPlayers/EteriumSave: + "/SavedGames/Eterium/Eterium/AllPlayers/EteriumSave": tags: - save when: - os: windows - /SavedGames/Eterium/Eterium/AllPlayers/LauncherSettings.xml: + "/SavedGames/Eterium/Eterium/AllPlayers/LauncherSettings.xml": tags: - config when: @@ -181533,7 +182069,7 @@ Eterium: installDir: Eterium: {} launch: - /EteriumLauncher.exe: + "/EteriumLauncher.exe": - when: - os: windows store: steam @@ -181543,7 +182079,7 @@ Eternal Battlefield: installDir: Eternal Battlefield: {} launch: - /legion.exe: + "/legion.exe": - when: - os: windows store: steam @@ -181553,11 +182089,11 @@ Eternal Card Game: installDir: Eternal Card Game: {} launch: - /Eternal.app: + "/Eternal.app": - when: - os: mac store: steam - /Eternal.exe: + "/Eternal.exe": - when: - os: windows store: steam @@ -181565,22 +182101,22 @@ Eternal Card Game: id: 531640 Eternal Champions: files: - /SEGA Genesis Classics/0016: + "/SEGA Genesis Classics/0016": tags: - save when: - os: windows - /SEGA Genesis Classics/setup.dat: + "/SEGA Genesis Classics/setup.dat": tags: - config when: - os: windows - /SEGA Mega Drive Classics/0016: + "/SEGA Mega Drive Classics/0016": tags: - save when: - os: windows - /SEGA Mega Drive Classics/setup.dat: + "/SEGA Mega Drive Classics/setup.dat": tags: - config when: @@ -181591,18 +182127,18 @@ Eternal Concord: installDir: EternalConcord: {} launch: - /EternalConcord: + "/EternalConcord": - arguments: play when: - bit: 64 os: linux store: steam - /EternalConcord.app: + "/EternalConcord.app": - arguments: play when: - os: mac store: steam - /EternalConcord.exe: + "/EternalConcord.exe": - arguments: play when: - os: windows @@ -181616,7 +182152,7 @@ Eternal Destiny: installDir: Eternal Destiny: {} launch: - /eternal.exe: + "/eternal.exe": - when: - store: steam steam: @@ -181625,7 +182161,7 @@ Eternal Dread: installDir: Eternal Dread: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -181635,7 +182171,7 @@ Eternal Dread 2: installDir: Eternal Dread 2: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -181643,7 +182179,7 @@ Eternal Dread 2: id: 1083820 Eternal Edge +: files: - /Righteous Weasel Games: + "/Righteous Weasel Games": tags: - save when: @@ -181651,7 +182187,7 @@ Eternal Edge +: installDir: Eternal Edge: {} launch: - /Eternal Edge +.exe: + "/Eternal Edge +.exe": - when: - os: windows store: steam @@ -181665,12 +182201,12 @@ Eternal Elements: installDir: Eternal Elements: {} launch: - /EternalElements32.exe: + "/EternalElements32.exe": - when: - bit: 32 os: windows store: steam - /EternalElements64.exe: + "/EternalElements64.exe": - when: - bit: 64 os: windows @@ -181684,7 +182220,7 @@ Eternal Essence: installDir: Eternal Essence: {} launch: - /Eternal_Essence.exe: + "/Eternal_Essence.exe": - when: - bit: 64 os: windows @@ -181698,7 +182234,7 @@ Eternal Fantasy: installDir: Eternal Fantasy: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -181708,39 +182244,39 @@ Eternal Fate: installDir: Eternal Fate: {} launch: - /Eternal Fate.app: + "/Eternal Fate.app": - when: - os: mac store: steam - /ruby.exe: + "/ruby.exe": - when: - os: windows store: steam steam: id: 317780 -'Eternal Hour: Golden Hour': +"Eternal Hour: Golden Hour": installDir: Eternal Hour Golden Hour: {} launch: - /EternalHour_GoldenHour.app: + "/EternalHour_GoldenHour.app": - when: - os: mac store: steam - /EternalHour_GoldenHour.exe: + "/EternalHour_GoldenHour.exe": - when: - os: windows store: steam - /EternalHour_GoldenHour.sh: + "/EternalHour_GoldenHour.sh": - when: - os: linux store: steam steam: id: 734910 -'Eternal Journey: New Atlantis': +"Eternal Journey: New Atlantis": installDir: Eternal Journey New Atlantis: {} launch: - /EternalJourney_NewAtlantisCE.exe: + "/EternalJourney_NewAtlantisCE.exe": - when: - os: windows store: steam @@ -181750,7 +182286,7 @@ Eternal Lore: installDir: Eternal Lore: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -181760,37 +182296,37 @@ Eternal Magic: installDir: Eternal Magic: {} launch: - /EmGame.exe: + "/EmGame.exe": - when: - os: windows store: steam steam: id: 1153700 -'Eternal Man: Forest': +"Eternal Man: Forest": installDir: Eternal Man Forest: {} launch: - /Eternal Man.exe: + "/Eternal Man.exe": - when: - os: windows store: steam steam: id: 786720 -'Eternal Man: Mountain': +"Eternal Man: Mountain": installDir: Eternal Man Mountain: {} launch: - /mountain.exe: + "/mountain.exe": - when: - os: windows store: steam steam: id: 818480 -'Eternal Man: Village': +"Eternal Man: Village": installDir: Eternal Man Mountain: {} launch: - /village.exe: + "/village.exe": - when: - os: windows store: steam @@ -181800,7 +182336,7 @@ Eternal Maze: installDir: Eternal Maze: {} launch: - /EternalMaze.exe: + "/EternalMaze.exe": - when: - os: windows store: steam @@ -181808,12 +182344,12 @@ Eternal Maze: id: 652990 Eternal Radiance: files: - /Visualnoveler/Eternal Radiance/*.dat: + "/Visualnoveler/Eternal Radiance/*.dat": tags: - config when: - os: windows - /Visualnoveler/Eternal Radiance/Saves/*.dat: + "/Visualnoveler/Eternal Radiance/Saves/*.dat": tags: - save when: @@ -181821,7 +182357,7 @@ Eternal Radiance: installDir: Eternal Radiance: {} launch: - /Eternal Radiance.exe: + "/Eternal Radiance.exe": - when: - os: windows store: steam @@ -181831,11 +182367,11 @@ Eternal Radiance: - config steam: id: 923570 -'Eternal Realm II: Dark Matter': +"Eternal Realm II: Dark Matter": installDir: Dark Matter: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -181845,29 +182381,29 @@ Eternal Return: installDir: EternalReturn: {} launch: - /ER.app: + "/ER.app": - when: - bit: 64 os: mac store: steam - /ER.exe: + "/ER.exe": - when: - bit: 64 os: windows store: steam - /ER.x86: + "/ER.x86": - when: - bit: 64 os: linux store: steam steam: id: 528010 -'Eternal Return: Black Survival': +"Eternal Return: Black Survival": installDir: Eternal Return: {} launch: - /EternalReturn.exe: - - arguments: '-provider=steam' + "/EternalReturn.exe": + - arguments: "-provider=steam" when: - os: windows store: steam @@ -181875,7 +182411,7 @@ Eternal Return: id: 1049590 Eternal Senia: files: - /Save*.rvdata2: + "/Save*.rvdata2": tags: - save when: @@ -181883,7 +182419,7 @@ Eternal Senia: installDir: Eternal Senia: {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: @@ -181892,7 +182428,7 @@ Eternal Space Battles: installDir: Eternal space battles: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -181907,15 +182443,15 @@ Eternal Step: installDir: Eternal_Step: {} launch: - /eternalstep: + "/eternalstep": - when: - os: linux store: steam - /eternalstep.app: + "/eternalstep.app": - when: - os: mac store: steam - /eternalstep.exe: + "/eternalstep.exe": - when: - os: windows store: steam @@ -181925,21 +182461,21 @@ Eternal Threads: installDir: Eternal Threads: {} launch: - /EternalThreads.exe: + "/EternalThreads.exe": - when: - bit: 64 os: windows store: steam steam: id: 1046790 -'Eternal War: Shadows of Light': +"Eternal War: Shadows of Light": files: - /ew/*.cfg: + "/ew/*.cfg": tags: - config when: - os: windows - /ew/*.sav: + "/ew/*.sav": tags: - save when: @@ -181955,7 +182491,7 @@ Eternights: installDir: Eternights: {} launch: - /Eternights.exe: + "/Eternights.exe": - when: - store: steam steam: @@ -181965,23 +182501,23 @@ Eternity Warriors VR: Eternity Warriors™ VR: {} steam: id: 664090 -Eternity's Child: +"Eternity's Child": installDir: Eternitys Child: {} launch: - /Eternity's Child.exe: + "/Eternity's Child.exe": - when: - store: steam - /MapEditor.exe: + "/MapEditor.exe": - when: - store: steam steam: id: 19500 -'Eternity: The Last Unicorn': +"Eternity: The Last Unicorn": installDir: Eternity The Last Unicorn: {} launch: - /Eternity.exe: + "/Eternity.exe": - when: - store: steam steam: @@ -181990,34 +182526,34 @@ Eternum EX: installDir: Eternum EX: {} launch: - /Eternum EX.app: + "/Eternum EX.app": - when: - os: mac store: steam - /Eternum EX.exe: + "/Eternum EX.exe": - when: - os: windows store: steam - /Eternum EX.x86: + "/Eternum EX.x86": - when: - bit: 32 os: linux store: steam - /Eternum EX.x86_64: + "/Eternum EX.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 597900 -'Ethan: Meteor Hunter': +"Ethan: Meteor Hunter": files: - /EthanMeteorHunter/: + "/EthanMeteorHunter/": tags: - save when: - os: windows - /EthanMeteorHunter/config.xml: + "/EthanMeteorHunter/config.xml": tags: - config when: @@ -182027,10 +182563,10 @@ Eternum EX: installDir: Ethan Meteor Hunter: {} launch: - /Ethan.exe: + "/Ethan.exe": - when: - store: steam - /LaunchConfig.exe: + "/LaunchConfig.exe": - when: - store: steam steam: @@ -182039,7 +182575,7 @@ Ethanol in dungeon: installDir: Ethanol in dungeon: {} launch: - /Ethanol in dungeon.exe: + "/Ethanol in dungeon.exe": - when: - store: steam steam: @@ -182048,7 +182584,7 @@ Ether Awakening: installDir: Ether Awakening: {} launch: - /Ether Awakening/Game.exe: + "/Ether Awakening/Game.exe": - when: - store: steam steam: @@ -182057,7 +182593,7 @@ Ether Loop: installDir: Ether Loop: {} launch: - /EtherLoop.exe: + "/EtherLoop.exe": - when: - os: windows store: steam @@ -182065,12 +182601,12 @@ Ether Loop: id: 1188970 Ether One: files: - /UDKGame/Config: + "/UDKGame/Config": tags: - config when: - os: windows - /binaries/win32/*.bin: + "/binaries/win32/*.bin": tags: - save when: @@ -182080,7 +182616,7 @@ Ether One: installDir: Ether One: {} launch: - /Binaries/Win32/UDK.exe: + "/Binaries/Win32/UDK.exe": - when: - bit: 32 os: windows @@ -182089,12 +182625,12 @@ Ether One: id: 265950 Ether One Redux: files: - /My Games/EtherOne/Saved/Config/WindowsNoEditor: + "/My Games/EtherOne/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /My Games/EtherOne/Saved/SaveGames/*.sav: + "/My Games/EtherOne/Saved/SaveGames/*.sav": tags: - save when: @@ -182104,7 +182640,7 @@ Ether One Redux: installDir: Ether One HD: {} launch: - /EtherOne.exe: + "/EtherOne.exe": - when: - os: windows store: steam @@ -182112,25 +182648,25 @@ Ether One Redux: id: 391920 Ether Vapor: files: - /Data/config.dat: + "/Data/config.dat": tags: - config when: - os: windows - /Data/ranking.dat: + "/Data/ranking.dat": tags: - save when: - os: windows Ether Vapor Remaster: files: - /EtherVapor/data/config.dat: + "/EtherVapor/data/config.dat": tags: - config - save when: - os: windows - /EtherVapor/data/ranking.dat: + "/EtherVapor/data/ranking.dat": tags: - save when: @@ -182138,29 +182674,31 @@ Ether Vapor Remaster: installDir: Ether Vapor Remaster: {} launch: - /EtherVaporRemaster.exe: + "/EtherVaporRemaster.exe": - when: - store: steam steam: id: 214570 Etherborn: files: - /AppData/LocalLow/Altered Matter/Etherborn//GameOptions.txt: - tags: - - config - when: - - store: steam - /AppData/LocalLow/Altered Matter/Etherborn//gameData*.dat: - tags: - - save - when: - - store: steam - /AppData/LocalLow/Altered Matter/Etherborn/GameOptions.txt: + "/AppData/LocalLow/Altered Matter/Etherborn//GameOptions.txt": tags: - config when: - os: windows - /AppData/LocalLow/Altered Matter/Etherborn/gameData*.dat: + store: steam + "/AppData/LocalLow/Altered Matter/Etherborn//gameData*.dat": + tags: + - save + when: + - os: windows + store: steam + "/AppData/LocalLow/Altered Matter/Etherborn/GameOptions.txt": + tags: + - config + when: + - os: windows + "/AppData/LocalLow/Altered Matter/Etherborn/gameData*.dat": tags: - save when: @@ -182170,7 +182708,7 @@ Etherborn: installDir: Etherborn: {} launch: - /Etherborn/Etherborn.exe: + "/Etherborn/Etherborn.exe": - when: - os: windows store: steam @@ -182182,12 +182720,12 @@ Etherborn: id: 812160 Ethereal: files: - /AppData/LocalLow/Nonsense Arts/ETHEREAL/EtherealConfig.dat: + "/AppData/LocalLow/Nonsense Arts/ETHEREAL/EtherealConfig.dat": tags: - config when: - os: windows - /AppData/LocalLow/Nonsense Arts/ETHEREAL/EtherealSavedData.dat: + "/AppData/LocalLow/Nonsense Arts/ETHEREAL/EtherealSavedData.dat": tags: - save when: @@ -182195,11 +182733,11 @@ Ethereal: installDir: ETHEREAL: {} launch: - /ETHEREAL.app/Contents/MacOS/ETHEREAL: + "/ETHEREAL.app/Contents/MacOS/ETHEREAL": - when: - os: mac store: steam - /ETHEREAL.exe: + "/ETHEREAL.exe": - when: - os: windows store: steam @@ -182209,11 +182747,11 @@ Ethereal Enigma: installDir: Ethereal Enigma: {} launch: - /Ethereal Enigma.app: + "/Ethereal Enigma.app": - when: - os: mac store: steam - /Ethereal Enigma.exe: + "/Ethereal Enigma.exe": - when: - os: windows store: steam @@ -182223,7 +182761,7 @@ Ethereal Legends: installDir: Ethereal Legends: {} launch: - /Ethereal.exe: + "/Ethereal.exe": - when: - bit: 64 os: windows @@ -182237,7 +182775,7 @@ Etherian: id: 836460 Etherium: files: - /Etherium_Data/Saves: + "/Etherium_Data/Saves": tags: - save when: @@ -182245,18 +182783,18 @@ Etherium: installDir: Etherium: {} launch: - /Etherium.exe: + "/Etherium.exe": - when: - store: steam registry: - 'HKEY_CURRENT_USER/Software/Tindalos Interactive/Etherium [v.1.0.9200] - win64 - Release': + "HKEY_CURRENT_USER/Software/Tindalos Interactive/Etherium [v.1.0.9200] - win64 - Release": tags: - config steam: id: 245370 Etherlords: files: - /Save: + "/Save": tags: - save when: @@ -182266,7 +182804,7 @@ Etherlords: installDir: Etherlords: {} launch: - /Run.cmd: + "/Run.cmd": - when: - bit: 32 os: windows @@ -182279,7 +182817,7 @@ Etherlords II: installDir: Etherlords II: {} launch: - /Run.cmd: + "/Run.cmd": - when: - bit: 32 os: windows @@ -182288,7 +182826,7 @@ Etherlords II: id: 270790 Etrian Odyssey HD: files: - /SEGA/EOHD/Steam/: + "/SEGA/EOHD/Steam/": tags: - save when: @@ -182296,7 +182834,7 @@ Etrian Odyssey HD: installDir: EOHD: {} launch: - /Etrian Odyssey.exe: + "/Etrian Odyssey.exe": - when: - bit: 64 os: windows @@ -182309,7 +182847,7 @@ Etrian Odyssey HD: id: 1868180 Etrian Odyssey II HD: files: - /SEGA/EO2HD/Steam/: + "/SEGA/EO2HD/Steam/": tags: - save when: @@ -182317,7 +182855,7 @@ Etrian Odyssey II HD: installDir: EO2HD: {} launch: - /Etrian Odyssey 2.exe: + "/Etrian Odyssey 2.exe": - when: - os: windows store: steam @@ -182329,7 +182867,7 @@ Etrian Odyssey II HD: id: 1868170 Etrian Odyssey III HD: files: - /SEGA/EO3HD/Steam/: + "/SEGA/EO3HD/Steam/": tags: - save when: @@ -182337,7 +182875,7 @@ Etrian Odyssey III HD: installDir: EO3HD: {} launch: - /Etrian Odyssey 3.exe: + "/Etrian Odyssey 3.exe": - when: - os: windows store: steam @@ -182351,18 +182889,20 @@ Euclidean: installDir: Euclidean: {} launch: - /Euclidean.exe: - - arguments: '-show-screen-selector -vrmode None' + "/Euclidean.exe": + - arguments: "-show-screen-selector -vrmode None" when: - os: windows store: steam + - os: linux + store: steam steam: id: 398180 Euclidean Skies: installDir: Euclidean Skies: {} launch: - /EuclideanSkies.exe: + "/EuclideanSkies.exe": - when: - os: windows store: steam @@ -182370,18 +182910,18 @@ Euclidean Skies: id: 983980 Eufloria: files: - /Resources/user.settings: + "/Resources/user.settings": tags: - config - save when: - os: windows - /EufloriaHD/OptionsData.bin: + "/EufloriaHD/OptionsData.bin": tags: - config when: - os: linux - /EufloriaHD/ProgressData.bin: + "/EufloriaHD/ProgressData.bin": tags: - save when: @@ -182389,14 +182929,14 @@ Eufloria: installDir: Eufloria: {} launch: - /Eufloria.exe: + "/Eufloria.exe": - when: - store: steam steam: id: 41210 Eufloria HD: files: - /EufloriaHD: + "/EufloriaHD": tags: - save when: @@ -182404,21 +182944,21 @@ Eufloria HD: installDir: Eufloria HD: {} launch: - /Eufloria HD.app: + "/Eufloria HD.app": - when: - os: mac store: steam - /EufloriaHD.bin.x86: + "/EufloriaHD.bin.x86": - when: - bit: 32 os: linux store: steam - /EufloriaHD.bin.x86_64: + "/EufloriaHD.bin.x86_64": - when: - bit: 64 os: linux store: steam - /EufloriaHD.exe: + "/EufloriaHD.exe": - when: - os: windows store: steam @@ -182428,11 +182968,11 @@ Eugenics: installDir: Eugenics: {} launch: - /2019-12-15-3_Eugenics_Steam.exe: + "/2019-12-15-3_Eugenics_Steam.exe": - when: - os: windows store: steam - /Eugenics.app/Contents/MacOS/Eugenics: + "/Eugenics.app/Contents/MacOS/Eugenics": - when: - os: mac store: steam @@ -182442,11 +182982,11 @@ Euro Fishing: installDir: Fishing: {} launch: - /FishingGame/Binaries/Win64/FishingGame-Win64-Shipping.exe: + "/FishingGame/Binaries/Win64/FishingGame-Win64-Shipping.exe": - when: - os: windows store: steam - /WindowsNoEditor/FishingGame/Binaries/Win64/FishingGame-Win64-Shipping.exe: + "/WindowsNoEditor/FishingGame/Binaries/Win64/FishingGame-Win64-Shipping.exe": - when: - os: windows store: steam @@ -182456,8 +182996,11 @@ Euro NumismatCy! Coin Collector: installDir: Euro NumismatCy! Coin Collector: {} launch: - /nw.exe: + "/nw.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam @@ -182465,22 +183008,22 @@ Euro NumismatCy! Coin Collector: id: 1111110 Euro Truck Simulator: files: - /Library/Application Support/Euro Truck Simulator: + "/Library/Application Support/Euro Truck Simulator": tags: - config when: - os: mac - /Library/Application Support/Euro Truck Simulator/save: + "/Library/Application Support/Euro Truck Simulator/save": tags: - save when: - os: mac - /Euro Truck Simulator: + "/Euro Truck Simulator": tags: - config when: - os: windows - /Euro Truck Simulator/save: + "/Euro Truck Simulator/save": tags: - save when: @@ -182491,11 +183034,11 @@ Euro Truck Simulator: installDir: Euro Truck Simulator: {} launch: - /Euro Truck Simulator.app: + "/Euro Truck Simulator.app": - when: - os: mac store: steam - /eurotrucks.exe: + "/eurotrucks.exe": - when: - os: windows store: steam @@ -182507,42 +183050,42 @@ Euro Truck Simulator: id: 232010 Euro Truck Simulator 2: files: - /Library/Application Support/Euro Truck Simulator 2/config.cfg: + "/Library/Application Support/Euro Truck Simulator 2/config.cfg": tags: - config when: - os: mac - /Library/Application Support/Euro Truck Simulator 2/profiles: + "/Library/Application Support/Euro Truck Simulator 2/profiles": tags: - save when: - os: mac - /userdata//227300/remote/profiles//config.cfg: + "/userdata//227300/remote/profiles//config.cfg": tags: - config when: - store: steam - /userdata//227300/remote/profiles//save: + "/userdata//227300/remote/profiles//save": tags: - save when: - store: steam - /Euro Truck Simulator 2/config.cfg: + "/Euro Truck Simulator 2/config.cfg": tags: - config when: - os: windows - /Euro Truck Simulator 2/profiles: + "/Euro Truck Simulator 2/profiles": tags: - save when: - os: windows - /Euro Truck Simulator 2/config.cfg: + "/Euro Truck Simulator 2/config.cfg": tags: - config when: - os: linux - /Euro Truck Simulator 2/profiles: + "/Euro Truck Simulator 2/profiles": tags: - save when: @@ -182628,60 +183171,60 @@ Euro Truck Simulator 2: installDir: Euro Truck Simulator 2: {} launch: - /Euro Truck Simulator 2.app: + "/Euro Truck Simulator 2.app": - when: - os: mac store: steam - /bin/linux_x64/eurotrucks2: + "/bin/linux_x64/eurotrucks2": - when: - bit: 64 os: linux store: steam - workingDir: /bin/linux_x64 - /bin/linux_x86/eurotrucks2: + workingDir: "/bin/linux_x64" + "/bin/linux_x86/eurotrucks2": - when: - bit: 32 os: linux store: steam - workingDir: /bin/linux_x86 - - arguments: '-safe' + workingDir: "/bin/linux_x86" + - arguments: "-safe" when: - os: linux store: steam - workingDir: /bin/linux_x86 - /bin/win_x64/eurotrucks2.exe: + workingDir: "/bin/linux_x86" + "/bin/win_x64/eurotrucks2.exe": - when: - bit: 64 os: windows store: steam - - arguments: '-rdevice dx11' + - arguments: "-rdevice dx11" when: - bit: 64 os: windows store: steam - - arguments: '-rdevice gl' + - arguments: "-rdevice gl" when: - bit: 64 os: windows store: steam - - arguments: '-safe' + - arguments: "-safe" when: - bit: 64 os: windows store: steam - /bin/win_x86/eurotrucks2.exe: + "/bin/win_x86/eurotrucks2.exe": - when: - os: windows store: steam - - arguments: '-rdevice dx11' + - arguments: "-rdevice dx11" when: - os: windows store: steam - - arguments: '-rdevice gl' + - arguments: "-rdevice gl" when: - os: windows store: steam - - arguments: '-safe' + - arguments: "-safe" when: - os: windows store: steam @@ -182691,7 +183234,7 @@ Eurobi Racing: installDir: Eurobi Racing: {} launch: - /Eurobi Racing.exe: + "/Eurobi Racing.exe": - when: - os: windows store: steam @@ -182699,7 +183242,7 @@ Eurobi Racing: id: 982020 Eurofighter Typhoon: files: - /players: + "/players": tags: - save when: @@ -182707,11 +183250,11 @@ Eurofighter Typhoon: installDir: Eurofighter Typhoon: {} launch: - /Typhoon.exe: + "/Typhoon.exe": - when: - os: windows store: steam - /config3dr2000.exe: + "/config3dr2000.exe": - when: - store: steam registry: @@ -182720,14 +183263,14 @@ Eurofighter Typhoon: - config steam: id: 283350 -'Europa 1400: The Guild': +"Europa 1400: The Guild": files: - /game.ini: + "/game.ini": tags: - config when: - os: windows - /resources/gamedata/Saves: + "/resources/gamedata/Saves": tags: - save when: @@ -182737,11 +183280,11 @@ Eurofighter Typhoon: installDir: Europa 1400 The Guild - Gold Edition: {} launch: - /Europa1400Gold.exe: + "/Europa1400Gold.exe": - when: - os: windows store: steam - /Europa1400Gold_TL.exe: + "/Europa1400Gold_TL.exe": - when: - os: windows store: steam @@ -182749,17 +183292,17 @@ Eurofighter Typhoon: id: 39520 Europa Universalis: files: - /Scenarios/Save Games: + "/Scenarios/Save Games": tags: - save when: - os: windows - /config: + "/config": tags: - config when: - os: windows - /config.eu: + "/config.eu": tags: - config when: @@ -182771,7 +183314,7 @@ Europa Universalis II: id: 1428922775 Europa Universalis III: files: - /Save Games: + "/Save Games": tags: - save when: @@ -182781,11 +183324,11 @@ Europa Universalis III: installDir: Europa Universalis III - Complete: {} launch: - /EU3 Complete.app: + "/EU3 Complete.app": - when: - os: mac store: steam - /eu3game.exe: + "/eu3game.exe": - when: - os: windows store: steam @@ -182793,19 +183336,19 @@ Europa Universalis III: id: 25800 Europa Universalis IV: files: - /Documents/Paradox Interactive/Europa Universalis IV: + "/Documents/Paradox Interactive/Europa Universalis IV": tags: - config - save when: - os: mac - /Paradox Interactive/Europa Universalis IV: + "/Paradox Interactive/Europa Universalis IV": tags: - config - save when: - os: windows - /Paradox Interactive/Europa Universalis IV: + "/Paradox Interactive/Europa Universalis IV": tags: - config - save @@ -182815,46 +183358,46 @@ Europa Universalis IV: id: 2057001589 id: steamExtra: - - 960920 - - 760070 - - 1259360 - - 827240 - - 721340 - - 538020 - - 486570 - - 436120 - - 373370 - - 338163 - - 338160 - - 310031 - - 279623 - - 279620 - 241369 - - 1264340 - - 827250 - - 721341 - - 538021 - - 486571 - - 436121 - - 373380 - - 373150 - - 338161 - - 768340 - - 617961 - - 617960 - - 834360 - 241373 + - 279620 + - 279623 + - 310031 + - 338160 + - 338161 + - 338163 + - 373150 + - 373370 + - 373380 - 414301 + - 436120 + - 436121 + - 486570 + - 486571 + - 538020 + - 538021 - 539260 + - 617960 + - 617961 - 625171 + - 721340 + - 721341 + - 760070 + - 768340 + - 827240 + - 827250 + - 834360 + - 960920 + - 1259360 + - 1264340 - 2223660 installDir: Europa Universalis IV: {} steam: id: 236850 -'Europa Universalis: Rome': +"Europa Universalis: Rome": files: - /save games: + "/save games": tags: - save when: @@ -182864,7 +183407,7 @@ Europa Universalis IV: installDir: Europa Universalis Rome: {} launch: - /RomeGame.exe: + "/RomeGame.exe": - when: - store: steam steam: @@ -182875,7 +183418,7 @@ European Air War: installDir: European Air War: {} launch: - /eaw.exe: + "/eaw.exe": - when: - os: windows store: steam @@ -182885,35 +183428,35 @@ European Fishing: installDir: European Fishing 2014: {} launch: - /Play.exe: + "/Play.exe": - when: - store: steam steam: id: 310640 -'European Mystery: Flowers of Death': +"European Mystery: Flowers of Death": installDir: - European Mystery Flowers of Death Collector's Edition: {} + "European Mystery Flowers of Death Collector's Edition": {} launch: - /European Mystery_FlowersOfDeath_CE_RC.exe: + "/European Mystery_FlowersOfDeath_CE_RC.exe": - when: - os: windows store: steam steam: id: 805040 -'European Mystery: Scent of Desire': +"European Mystery: Scent of Desire": installDir: European Mystery Scent of Desire Collector’s Edition: {} launch: - /EuropeanMystery_ScentofDesire_CE.exe: + "/EuropeanMystery_ScentofDesire_CE.exe": - when: - store: steam steam: id: 580480 -'European Mystery: The Face of Envy': +"European Mystery: The Face of Envy": installDir: - European Mystery The Face of Envy Collector's Edition: {} + "European Mystery The Face of Envy Collector's Edition": {} launch: - /EuropeanMystery_TheFaceOfEnvy_CE.exe: + "/EuropeanMystery_TheFaceOfEnvy_CE.exe": - when: - os: windows store: steam @@ -182921,7 +183464,7 @@ European Fishing: id: 695950 European Ship Simulator: files: - /ESS: + "/ESS": tags: - save when: @@ -182929,11 +183472,11 @@ European Ship Simulator: installDir: European Ship Simulator: {} launch: - /ess.app: + "/ess.app": - when: - os: mac store: steam - /ess.exe: + "/ess.exe": - when: - bit: 64 os: windows @@ -182944,7 +183487,7 @@ Eutergeläuter: installDir: Eutergeläuter: {} launch: - /Eutergelaeuter.exe: + "/Eutergelaeuter.exe": - when: - bit: 64 os: windows @@ -182955,7 +183498,7 @@ Eva Reynes: installDir: Eva Reynes: {} launch: - /Launcher.exe: + "/Launcher.exe": - when: - os: windows store: steam @@ -182963,12 +183506,12 @@ Eva Reynes: id: 1055150 Evacuation: files: - /evacuation/cfg: + "/evacuation/cfg": tags: - config when: - os: windows - /evacuation/save: + "/evacuation/save": tags: - save when: @@ -182979,17 +183522,17 @@ Evacuation: installDir: Evacuation: {} launch: - /hl2.exe: - - arguments: '-steam -nohmd -game \"evacuation\"' + "/hl2.exe": + - arguments: "-steam -nohmd -game \\\"evacuation\\\"" when: - bit: 64 os: windows store: steam steam: id: 2224920 -Evan's Remains: +"Evan's Remains": files: - /Evan_v_3_3_3: + "/Evan_v_3_3_3": tags: - save when: @@ -183003,13 +183546,13 @@ Evan's Remains: steamExtra: - 1340750 installDir: - Evan's Remains: {} + "Evan's Remains": {} launch: - /EvansRemains.app/Contents/MacOS/EvansRemainsv324: + "/EvansRemains.app/Contents/MacOS/EvansRemainsv324": - when: - os: mac store: steam - /evansremains.exe: + "/evansremains.exe": - when: - os: windows store: steam @@ -183024,31 +183567,31 @@ Eve of Destruction - REDUX: installDir: Eve of Destruction - REDUX: {} launch: - /Eve of Destruction.app: + "/Eve of Destruction.app": - when: - os: mac store: steam - /Eve of Destruction.exe: + "/Eve of Destruction.exe": - when: - os: windows store: steam - /Eve of Destruction.x86: + "/Eve of Destruction.x86": - when: - bit: 32 os: linux store: steam - /Eve of Destruction.x86_64: + "/Eve of Destruction.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 530160 -'Eve of Souls: Static Pod': +"Eve of Souls: Static Pod": installDir: Eve of Souls Static Pod: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -183058,15 +183601,15 @@ Evemnesis: installDir: Evemnesis: {} launch: - /Evemnesis.app: + "/Evemnesis.app": - when: - os: mac store: steam - /Evemnesis.exe: + "/Evemnesis.exe": - when: - os: windows store: steam - /Evemnesis.x86_64: + "/Evemnesis.x86_64": - when: - os: linux store: steam @@ -183076,7 +183619,7 @@ Even For Eternia: installDir: Even For Eternia: {} launch: - /Even For Eternia.exe: + "/Even For Eternia.exe": - when: - os: windows store: steam @@ -183084,12 +183627,12 @@ Even For Eternia: id: 1050010 Even the Ocean: files: - /Library/Application Support/Eventheocean/save: + "/Library/Application Support/Eventheocean/save": tags: - save when: - os: mac - /AnalgesicProductionsLLC/EventheOcean/save: + "/AnalgesicProductionsLLC/EventheOcean/save": tags: - save when: @@ -183099,11 +183642,11 @@ Even the Ocean: installDir: Even the Ocean: {} launch: - /playgame.bat: + "/playgame.bat": - when: - os: windows store: steam - /rungame.sh: + "/rungame.sh": - when: - os: mac store: steam @@ -183111,7 +183654,7 @@ Even the Ocean: id: 265470 Evenicle: files: - /AliceSoft/Evenicle/SaveData: + "/AliceSoft/Evenicle/SaveData": tags: - config - save @@ -183122,7 +183665,7 @@ Evenicle: installDir: Evenicle: {} launch: - /Evenicle.exe: + "/Evenicle.exe": - when: - store: steam steam: @@ -183133,7 +183676,7 @@ Evenicle 2: installDir: Evenicle 2 - Clinical Trial Edition: {} launch: - /Evenicle2Trial.exe: + "/Evenicle2Trial.exe": - when: - os: windows store: steam @@ -183143,7 +183686,7 @@ Evening Chaos: installDir: EVENING CHAOS: {} launch: - /EveningChaos.exe: + "/EveningChaos.exe": - arguments: EveningChaos.exe when: - os: windows @@ -183154,7 +183697,7 @@ Evening Star: installDir: Evening Star: {} launch: - /Evening Star.exe: + "/Evening Star.exe": - when: - os: windows store: steam @@ -183167,15 +183710,15 @@ Evening Surprise: installDir: Evening Surprise: {} launch: - /EveningSurprise.app: + "/EveningSurprise.app": - when: - os: mac store: steam - /EveningSurprise.exe: + "/EveningSurprise.exe": - when: - os: windows store: steam - /EveningSurprise.sh: + "/EveningSurprise.sh": - when: - os: linux store: steam @@ -183183,13 +183726,13 @@ Evening Surprise: id: 690930 Event 0: files: - '/AppData/LocalLow/Ocelot Society/Event[0]': + "/AppData/LocalLow/Ocelot Society/Event[0]": tags: - config - save when: - os: windows - /Documents/cache/OcelotSociety/event0: + "/Documents/cache/OcelotSociety/event0": tags: - save when: @@ -183197,17 +183740,17 @@ Event 0: gog: id: 1976935743 installDir: - 'Event[0]': {} + "Event[0]": {} launch: - /event0.app: + "/event0.app": - when: - os: mac store: steam - /event0.exe: + "/event0.exe": - when: - os: windows store: steam - /event0.x86_64: + "/event0.x86_64": - when: - os: linux store: steam @@ -183217,15 +183760,15 @@ Event Horizon: installDir: Event Horizon: {} launch: - /eventhorizon.app: + "/eventhorizon.app": - when: - os: mac store: steam - /eventhorizon.exe: + "/eventhorizon.exe": - when: - os: windows store: steam - /eventhorizon.x86_64: + "/eventhorizon.x86_64": - when: - os: linux store: steam @@ -183235,20 +183778,20 @@ Event Horizon - Frontier: installDir: Event Horizon - Frontier: {} launch: - /frontier.app: + "/frontier.app": - when: - os: mac store: steam - /frontier.exe: + "/frontier.exe": - when: - os: windows store: steam - /frontier.x86: + "/frontier.x86": - when: - bit: 32 os: linux store: steam - /frontier.x86_64: + "/frontier.x86_64": - when: - bit: 64 os: linux @@ -183259,55 +183802,55 @@ Event-D: installDir: Event-D: {} launch: - /EventD.exe: + "/EventD.exe": - when: - os: windows store: steam steam: id: 949670 -'Eventide 2: The Sorcerers Mirror': +"Eventide 2: The Sorcerers Mirror": installDir: Eventide 2 The Sorcerers Mirror: {} launch: - /Slavic2.exe: + "/Slavic2.exe": - when: - os: windows store: steam - /Slavic2_amd64: + "/Slavic2_amd64": - when: - bit: 64 os: linux store: steam - /Slavic2_i386: + "/Slavic2_i386": - when: - bit: 32 os: linux store: steam - /mac_steam.app/Contents/MacOS/mac_steam: + "/mac_steam.app/Contents/MacOS/mac_steam": - when: - os: mac store: steam steam: id: 510650 -'Eventide 3: Legacy of Legends': +"Eventide 3: Legacy of Legends": installDir: Eventide 3 Legacy of Legends: {} launch: - /Eventide3.exe: + "/Eventide3.exe": - when: - os: windows store: steam - /Eventide3_amd64: + "/Eventide3_amd64": - when: - bit: 64 os: linux store: steam - /Eventide3_i386: + "/Eventide3_i386": - when: - bit: 32 os: linux store: steam - /mac_steam.app/Contents/MacOS/mac_steam: + "/mac_steam.app/Contents/MacOS/mac_steam": - when: - os: mac store: steam @@ -183320,44 +183863,44 @@ Eventide Night: installDir: EventideNight: {} launch: - /Eventide Night.exe: + "/Eventide Night.exe": - when: - os: windows store: steam steam: id: 616030 -'Eventide: Slavic Fable': +"Eventide: Slavic Fable": installDir: Eventide Slavic Fable: {} launch: - /Eventide_SlavicFable.exe: + "/Eventide_SlavicFable.exe": - when: - os: windows store: steam - /Eventide_SlavicFable_amd64: + "/Eventide_SlavicFable_amd64": - when: - bit: 64 os: linux store: steam - /Eventide_SlavicFable_i386: + "/Eventide_SlavicFable_i386": - when: - bit: 32 os: linux store: steam - /mac_steam.app/Contents/MacOS/mac_steam: + "/mac_steam.app/Contents/MacOS/mac_steam": - when: - os: mac store: steam steam: id: 406870 -'Ever 17: The Out of Infinity': +"Ever 17: The Out of Infinity": files: - /*.ini: + "/*.ini": tags: - config when: - os: windows - /save: + "/save": tags: - save when: @@ -183368,7 +183911,7 @@ Ever Forward: installDir: Ever Forward: {} launch: - /EverForward.exe: + "/EverForward.exe": - when: - os: windows store: steam @@ -183378,11 +183921,11 @@ EverHero: installDir: EverHero: {} launch: - /EverHero.app/Contents/MacOS/EverHero: + "/EverHero.app/Contents/MacOS/EverHero": - when: - os: mac store: steam - /EverHero.exe: + "/EverHero.exe": - when: - os: windows store: steam @@ -183392,8 +183935,8 @@ EverQuest: installDir: Everquest F2P: {} launch: - /LaunchPad.exe: - - arguments: 'Updates:enable=0 Updates:PatchSelf=1 campaignID=1063243 promoID=142 launchArgs=STEAM_ENABLED launchPoint=steam' + "/LaunchPad.exe": + - arguments: "Updates:enable=0 Updates:PatchSelf=1 campaignID=1063243 promoID=142 launchArgs=STEAM_ENABLED launchPoint=steam" when: - store: steam steam: @@ -183402,8 +183945,8 @@ EverQuest II: installDir: EverQuest 2: {} launch: - /LaunchPad.exe: - - arguments: 'Updates:enable=0 Updates:PatchSelf=1 promoID=133 campaignID=1063054 launchArgs=STEAM_ENABLED launchPoint=steam' + "/LaunchPad.exe": + - arguments: "Updates:enable=0 Updates:PatchSelf=1 promoID=133 campaignID=1063054 launchArgs=STEAM_ENABLED launchPoint=steam" when: - store: steam steam: @@ -183412,7 +183955,7 @@ EverStopped: installDir: EverStopped: {} launch: - /EverStopped.exe: + "/EverStopped.exe": - when: - os: windows store: steam @@ -183420,7 +183963,7 @@ EverStopped: id: 1101180 Everdream Valley: files: - /AppData/LocalLow/Untold Tales/Everdream Valley/Save: + "/AppData/LocalLow/Untold Tales/Everdream Valley/Save": tags: - save when: @@ -183430,7 +183973,7 @@ Everdream Valley: installDir: Everdream Valley: {} launch: - /Everdream Valley.exe: + "/Everdream Valley.exe": - when: - os: windows store: steam @@ -183443,12 +183986,12 @@ Everest VR: id: 384750 Evergarden: files: - /AppData/LocalLow/Flippfly/Evergarden: + "/AppData/LocalLow/Flippfly/Evergarden": tags: - config when: - os: windows - /userdata//576500/remote: + "/userdata//576500/remote": tags: - save when: @@ -183457,21 +184000,21 @@ Evergarden: installDir: Evergarden: {} launch: - /Evergarden.app: + "/Evergarden.app": - when: - os: mac store: steam - /Evergarden.exe: + "/Evergarden.exe": - when: - bit: 64 os: windows store: steam - /Evergarden.x86: + "/Evergarden.x86": - when: - bit: 32 os: linux store: steam - /Evergarden.x86_64: + "/Evergarden.x86_64": - when: - bit: 64 os: linux @@ -183480,7 +184023,7 @@ Evergarden: id: 576500 Evergate: files: - /AppData/LocalLow/StoneLantern/Evergate: + "/AppData/LocalLow/StoneLantern/Evergate": tags: - save when: @@ -183488,7 +184031,7 @@ Evergate: installDir: Evergate: {} launch: - /Evergate.exe: + "/Evergate.exe": - when: - os: windows store: steam @@ -183496,17 +184039,17 @@ Evergate: id: 845030 Everglow: files: - /.renpy/everglow-1763150: + "/.renpy/everglow-1763150": tags: - save when: - os: linux - /Library/RenPy/everglow-1763150: + "/Library/RenPy/everglow-1763150": tags: - save when: - os: mac - /RenPy/everglow-1763150: + "/RenPy/everglow-1763150": tags: - save when: @@ -183514,15 +184057,15 @@ Everglow: installDir: Everglow: {} launch: - /everglow.app: + "/everglow.app": - when: - os: mac store: steam - /everglow.exe: + "/everglow.exe": - when: - os: windows store: steam - /everglow.sh: + "/everglow.sh": - when: - os: linux store: steam @@ -183532,11 +184075,11 @@ Evergreen Blues: installDir: Evergreen Blues: {} launch: - /Evergreen Blues - Mac/Evergreen Blues.app: + "/Evergreen Blues - Mac/Evergreen Blues.app": - when: - os: mac store: steam - /Evergreen Blues - Windows/Evergreen Blues.exe: + "/Evergreen Blues - Windows/Evergreen Blues.exe": - when: - os: windows store: steam @@ -183547,12 +184090,12 @@ Evergrow: id: 594210 Everhood: files: - /AppData/LocalLow/Foreign Gnomes/Everhood: + "/AppData/LocalLow/Foreign Gnomes/Everhood": tags: - config when: - os: windows - /AppData/LocalLow/Foreign Gnomes/Everhood/config: + "/AppData/LocalLow/Foreign Gnomes/Everhood/config": tags: - save when: @@ -183568,7 +184111,7 @@ Everhood: installDir: Everhood: {} launch: - /Everhood/Everhood.exe: + "/Everhood/Everhood.exe": - when: - bit: 64 os: windows @@ -183577,7 +184120,7 @@ Everhood: id: 1229380 Everlasting Summer: files: - /game/saves: + "/game/saves": tags: - save when: @@ -183585,59 +184128,59 @@ Everlasting Summer: installDir: Everlasting Summer: {} launch: - /Everlasting Summer-32.exe: + "/Everlasting Summer-32.exe": - when: - bit: 32 os: windows store: steam - /Everlasting Summer.app: + "/Everlasting Summer.app": - when: - os: mac store: steam - /Everlasting Summer.exe: + "/Everlasting Summer.exe": - when: - bit: 64 os: windows store: steam - /Everlasting Summer.sh: + "/Everlasting Summer.sh": - when: - os: linux store: steam steam: id: 331470 -'Everpath: A pixel art roguelite': +"Everpath: A pixel art roguelite": installDir: Everpath A pixel art roguelite: {} launch: - /Everpath.exe: + "/Everpath.exe": - when: - os: windows store: steam steam: id: 1004560 -'Everreach: Project Eden': +"Everreach: Project Eden": installDir: Everreach: {} launch: - /Everreach.exe: + "/Everreach.exe": - when: - store: steam steam: id: 915670 Eversion: files: - /Library/Application Support/Eversion: + "/Library/Application Support/Eversion": tags: - config - save when: - os: mac - /Eversion: + "/Eversion": tags: - config when: - os: linux - /Eversion: + "/Eversion": tags: - save when: @@ -183645,15 +184188,15 @@ Eversion: installDir: Eversion: {} launch: - /Eversion: + "/Eversion": - when: - os: linux store: steam - /Eversion.app/Contents/MacOS/Eversion: + "/Eversion.app/Contents/MacOS/Eversion": - when: - os: mac store: steam - /eversion.exe: + "/eversion.exe": - when: - os: windows store: steam @@ -183663,7 +184206,7 @@ Everslash: installDir: Everslash: {} launch: - /Everslash.exe: + "/Everslash.exe": - when: - os: windows store: steam @@ -183671,34 +184214,34 @@ Everslash: id: 1152820 Everspace: files: - /Packages/ROCKFISHGames.EVERSPACE_wm11qtfe9fmzj/LocalState/RSG/Saved/Config/UWP: + "/Packages/ROCKFISHGames.EVERSPACE_wm11qtfe9fmzj/LocalState/RSG/Saved/Config/UWP": tags: - config when: - os: windows store: microsoft - /Packages/ROCKFISHGames.EVERSPACE_wm11qtfe9fmzj/SystemAppData/wgs: + "/Packages/ROCKFISHGames.EVERSPACE_wm11qtfe9fmzj/SystemAppData/wgs": tags: - save when: - os: windows store: microsoft - /RSG/Saved/Config/WindowsNoEditor: + "/RSG/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /RSG/Saved/SaveGames: + "/RSG/Saved/SaveGames": tags: - save when: - os: windows - /Epic/RSG/Saved/Config/LinuxNoEditor: + "/Epic/RSG/Saved/Config/LinuxNoEditor": tags: - config when: - os: linux - /Epic/RSG/Saved/SaveGames: + "/Epic/RSG/Saved/SaveGames": tags: - save when: @@ -183707,29 +184250,29 @@ Everspace: id: 1513949567 id: gogExtra: - - 1706032184 - 1165094689 + - 1706032184 installDir: EVERSPACE: {} launch: - /EVERSPACE.app: + "/EVERSPACE.app": - when: - os: mac store: steam - /EverspaceWithSystemLibraries.sh: + "/EverspaceWithSystemLibraries.sh": - when: - bit: 64 os: linux store: steam - workingDir: /RSG/Scripts - /RSG/Binaries/Win32/RSG-Win32-Shipping.exe: - - arguments: '-nohmd' + workingDir: "/RSG/Scripts" + "/RSG/Binaries/Win32/RSG-Win32-Shipping.exe": + - arguments: "-nohmd" when: - bit: 32 os: windows store: steam - /RSG/Binaries/Win64/RSG-Win64-Shipping.exe: - - arguments: '-nohmd' + "/RSG/Binaries/Win64/RSG-Win64-Shipping.exe": + - arguments: "-nohmd" when: - bit: 64 os: windows @@ -183738,23 +184281,23 @@ Everspace: id: 396750 Everspace 2: files: - /ES2/Saved/Config/WinGDK: + "/ES2/Saved/Config/WinGDK": tags: - config when: - os: windows store: microsoft - /ES2/Saved/Config/WindowsNoEditor: + "/ES2/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /ES2/Saved/SaveGames: + "/ES2/Saved/SaveGames": tags: - save when: - os: windows - /Packages/ROCKFISHGames.EVERSPACE2_wm11qtfe9fmzj/SystemAppData/wgs: + "/Packages/ROCKFISHGames.EVERSPACE2_wm11qtfe9fmzj/SystemAppData/wgs": tags: - save when: @@ -183768,8 +184311,8 @@ Everspace 2: installDir: EVERSPACE™ 2: {} launch: - /Everspace2.exe: - - arguments: '-dx11' + "/Everspace2.exe": + - arguments: "-dx11" when: - bit: 64 os: windows @@ -183780,7 +184323,7 @@ Evertown: installDir: Evertown: {} launch: - /Evertown.exe: + "/Evertown.exe": - when: - os: windows store: steam @@ -183790,15 +184333,15 @@ Evertree Inn: installDir: Evertree Inn: {} launch: - /Evertree Inn.app/Contents/MacOS/Evertree Inn: + "/Evertree Inn.app/Contents/MacOS/Evertree Inn": - when: - os: mac store: steam - /EvertreeInn: + "/EvertreeInn": - when: - os: linux store: steam - /EvertreeInn.exe: + "/EvertreeInn.exe": - when: - os: windows store: steam @@ -183810,25 +184353,25 @@ Evertried: installDir: Evertried: {} launch: - /Evertried.app: + "/Evertried.app": - when: - os: mac store: steam - /Evertried.exe: + "/Evertried.exe": - when: - os: windows store: steam - /Evertried_Release.x86_64: + "/Evertried_Release.x86_64": - when: - os: linux store: steam steam: id: 1607040 -Every Day's Different: +"Every Day's Different": installDir: - Every Day's Different: {} + "Every Day's Different": {} launch: - /EveryDaysDifferent.exe: + "/EveryDaysDifferent.exe": - when: - os: windows store: steam @@ -183838,20 +184381,20 @@ Everybody Loves Skeletons: installDir: Everybody Loves Skeletons: {} launch: - /Everybody Loves Skeletons.exe: + "/Everybody Loves Skeletons.exe": - when: - os: windows store: steam - /EverybodyLovesSkeletons.x86_64: + "/EverybodyLovesSkeletons.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 1100210 -Everybody's Gone to the Rapture: +"Everybody's Gone to the Rapture": files: - /Saved Games/Rapture: + "/Saved Games/Rapture": tags: - config - save @@ -183860,16 +184403,16 @@ Everybody's Gone to the Rapture: installDir: Rapture: {} launch: - /Bin64/Rapture_Release.exe: + "/Bin64/Rapture_Release.exe": - when: - bit: 64 os: windows store: steam steam: id: 417880 -Everybody's sad: +"Everybody's sad": installDir: - everybody's sad: {} + "everybody's sad": {} steam: id: 898080 Everyday Baseball VR: @@ -183877,14 +184420,14 @@ Everyday Baseball VR: EverydayBaseballVR: {} steam: id: 903620 -'Everyday Genius: SquareLogic': +"Everyday Genius: SquareLogic": files: - /userdata//32150/remote/steamuser.playerProfile: + "/userdata//32150/remote/steamuser.playerProfile": tags: - save when: - store: steam - /userdata//32150/remote/steamuser.sloptions: + "/userdata//32150/remote/steamuser.sloptions": tags: - config when: @@ -183892,7 +184435,7 @@ Everyday Baseball VR: installDir: Everyday Genius SquareLogic: {} launch: - /SquareLogic.exe: + "/SquareLogic.exe": - when: - store: steam steam: @@ -183906,7 +184449,7 @@ Everyday Life Edengrall: installDir: Everyday Life Edengrall: {} launch: - /Everyday Life Edengrall.exe: + "/Everyday Life Edengrall.exe": - when: - os: windows store: steam @@ -183916,7 +184459,7 @@ Everyday Lite: installDir: Everyday Lite: {} launch: - /EverydayLite.exe: + "/EverydayLite.exe": - when: - os: windows store: steam @@ -183924,7 +184467,7 @@ Everyday Lite: id: 759800 Everyday Shooter: files: - /data: + "/data": tags: - config when: @@ -183932,7 +184475,7 @@ Everyday Shooter: installDir: Everyday Shooter: {} launch: - /EverydayShooter.exe: + "/EverydayShooter.exe": - when: - store: steam steam: @@ -183941,7 +184484,7 @@ Everyone Dies: installDir: Everyone Dies: {} launch: - /Everyone Dies.exe: + "/Everyone Dies.exe": - when: - os: windows store: steam @@ -183954,13 +184497,13 @@ Everyone Goes Home: id: 1100840 Everything: files: - /AppData/LocalLow/David OReilly/Everything/Save Data: + "/AppData/LocalLow/David OReilly/Everything/Save Data": tags: - config - save when: - os: windows - /Library/Application Support/unity.David OReilly.Everything/Save Data: + "/Library/Application Support/unity.David OReilly.Everything/Save Data": tags: - config - save @@ -183971,20 +184514,20 @@ Everything: installDir: Everything: {} launch: - /Everything.app: + "/Everything.app": - when: - os: mac store: steam - /Everything.exe: + "/Everything.exe": - when: - os: windows store: steam - /Everything.x86: + "/Everything.x86": - when: - bit: 32 os: linux store: steam - /Everything.x86_64: + "/Everything.x86_64": - when: - bit: 64 os: linux @@ -184004,7 +184547,7 @@ Everything Will Flow: installDir: TACS_Program: {} launch: - /TrekkingAndCampingSketch.exe: + "/TrekkingAndCampingSketch.exe": - when: - store: steam steam: @@ -184013,7 +184556,7 @@ Everything is Black and White: installDir: EBW: {} launch: - /EBW-STEAM.exe: + "/EBW-STEAM.exe": - when: - os: windows store: steam @@ -184023,11 +184566,11 @@ Everything is Mayo: installDir: Everything is Mayo: {} launch: - /MacBuild.app: + "/MacBuild.app": - when: - os: mac store: steam - /Mayo.exe: + "/Mayo.exe": - when: - os: windows store: steam @@ -184037,7 +184580,7 @@ Everything is Peachy: installDir: Everything is Peachy: {} launch: - /EverythingIsPeachy.exe: + "/EverythingIsPeachy.exe": - when: - os: windows store: steam @@ -184047,7 +184590,7 @@ Eveslan: installDir: Eveslan: {} launch: - /Eveslan.exe: + "/Eveslan.exe": - when: - os: windows store: steam @@ -184057,7 +184600,7 @@ Evidence of Life: installDir: Evidence of Life: {} launch: - /Evidence of Life.exe: + "/Evidence of Life.exe": - when: - os: windows store: steam @@ -184067,7 +184610,7 @@ Evie: installDir: Evie: {} launch: - /Evie.exe: + "/Evie.exe": - when: - os: windows store: steam @@ -184082,11 +184625,11 @@ Evil Bank Manager: installDir: Evil Bank Manager: {} launch: - /EvilBankManager.exe: + "/EvilBankManager.exe": - when: - os: windows store: steam - /IBM.app: + "/IBM.app": - when: - os: mac store: steam @@ -184096,7 +184639,7 @@ Evil Cogs: installDir: Evil Cogs: {} launch: - /Evil Cogs.exe: + "/Evil Cogs.exe": - when: - os: windows store: steam @@ -184108,21 +184651,21 @@ Evil Come: Evil Dead: steam: id: 832030 -'Evil Dead: Hail to the King': +"Evil Dead: Hail to the King": files: - /slot*.eds: + "/slot*.eds": tags: - save when: - os: windows -'Evil Dead: The Game': +"Evil Dead: The Game": files: - /EvilDead/Saved/Config/WindowsNoEditor: + "/EvilDead/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /EvilDead/Saved/SaveGames: + "/EvilDead/Saved/SaveGames": tags: - save when: @@ -184130,14 +184673,14 @@ Evil Dead: installDir: ED: {} launch: - /EvilDead.exe: + "/EvilDead.exe": - when: - store: steam steam: id: 1493750 Evil Defenders: files: - /AppData/LocalLow/Crazy Panda/Evil Defenders/profiles: + "/AppData/LocalLow/Crazy Panda/Evil Defenders/profiles": tags: - config - save @@ -184146,11 +184689,11 @@ Evil Defenders: installDir: Evil Defenders: {} launch: - /Evil Defenders.app/Contents/MacOS/Evil Defenders: + "/Evil Defenders.app/Contents/MacOS/Evil Defenders": - when: - os: mac store: steam - /Evil Defenders.exe: + "/Evil Defenders.exe": - when: - os: windows store: steam @@ -184161,12 +184704,12 @@ Evil Fire: id: 783820 Evil Genius: files: - /DynamicResources/Config: + "/DynamicResources/Config": tags: - config when: - os: windows - /DynamicResources/Layouts: + "/DynamicResources/Layouts": tags: - save when: @@ -184176,14 +184719,14 @@ Evil Genius: installDir: Evil Genius: {} launch: - /EvilGeniusLauncher.exe: + "/EvilGeniusLauncher.exe": - when: - store: steam steam: id: 3720 -'Evil Genius 2: World Domination': +"Evil Genius 2: World Domination": files: - /Evil Genius 2/PC_ProfileSaves: + "/Evil Genius 2/PC_ProfileSaves": tags: - save when: @@ -184191,7 +184734,7 @@ Evil Genius: installDir: Evil Genius 2: {} launch: - /Launcher/eg2.exe: + "/Launcher/eg2.exe": - when: - store: steam steam: @@ -184200,7 +184743,7 @@ Evil Genome: installDir: Evil Genome: {} launch: - /EvilGenome.exe: + "/EvilGenome.exe": - when: - os: windows store: steam @@ -184210,12 +184753,12 @@ Evil Glitch: installDir: Evil Glitch: {} launch: - /EvilGlitch.app: + "/EvilGlitch.app": - when: - bit: 64 os: mac store: steam - /EvilGlitch.exe: + "/EvilGlitch.exe": - when: - os: windows store: steam @@ -184225,24 +184768,24 @@ Evil Hazard: installDir: Evil Hazard: {} launch: - /EvilHazard.exe: + "/EvilHazard.exe": - when: - os: windows store: steam - /EvilHazardFullScreen.exe: + "/EvilHazardFullScreen.exe": - when: - os: windows store: steam steam: id: 403440 -'Evil Islands: Curse of the Lost Soul': +"Evil Islands: Curse of the Lost Soul": files: - /config: + "/config": tags: - config when: - os: windows - /saves: + "/saves": tags: - save when: @@ -184253,7 +184796,7 @@ Evil Labs: installDir: Evil Labs: {} launch: - /Evil Labs.exe: + "/Evil Labs.exe": - when: - store: steam steam: @@ -184262,7 +184805,7 @@ Evil Maze: installDir: EvilMaze: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -184272,7 +184815,7 @@ Evil Maze 2: installDir: Evil Maze 2: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: @@ -184281,11 +184824,11 @@ Evil Orbs: installDir: Evil Orbs: {} launch: - /EvilOrbs.app/Contents/MacOS/EvilOrbsSteam: + "/EvilOrbs.app/Contents/MacOS/EvilOrbsSteam": - when: - os: mac store: steam - /EvilOrbs.exe: + "/EvilOrbs.exe": - when: - os: windows store: steam @@ -184295,7 +184838,7 @@ Evil Park: installDir: Evil Park: {} launch: - /EvilPark.exe: + "/EvilPark.exe": - when: - bit: 64 os: windows @@ -184306,39 +184849,39 @@ Evil Possession: installDir: Evil Possession: {} launch: - /Evil Possession.app: + "/Evil Possession.app": - when: - os: mac store: steam - /Evil Possession.exe: + "/Evil Possession.exe": - when: - os: windows store: steam - /Evil Possession.x86: + "/Evil Possession.x86": - when: - bit: 32 os: linux store: steam - /Evil Possession.x86_64: + "/Evil Possession.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 620700 -'Evil Pumpkin: The Lost Halloween': +"Evil Pumpkin: The Lost Halloween": installDir: EvilPumpkin: {} launch: - /EvilPumpkin.exe: + "/EvilPumpkin.exe": - when: - os: windows store: steam - /EvilPumpkin_i386: + "/EvilPumpkin_i386": - when: - os: linux store: steam - /mac_steam.app: + "/mac_steam.app": - when: - os: mac store: steam @@ -184348,12 +184891,12 @@ Evil Reap: installDir: EvilReap: {} launch: - /EvilReapV1.exe: + "/EvilReapV1.exe": - when: - bit: 64 os: windows store: steam - /game.exe: + "/game.exe": - when: - store: steam steam: @@ -184370,7 +184913,7 @@ Evil Robots From N1M: installDir: Evil Robots From N1M: {} launch: - /Evil Robots From Nim.exe: + "/Evil Robots From Nim.exe": - when: - os: windows store: steam @@ -184380,24 +184923,24 @@ Evil Spirits: installDir: Evil Spirits: {} launch: - /Evil Spirits.exe: + "/Evil Spirits.exe": - when: - os: windows store: steam steam: id: 690580 -'Evil Spring: Student Holidays': +"Evil Spring: Student Holidays": steam: id: 884170 Evil Star: installDir: Evil Star: {} launch: - /ESMAC.app: + "/ESMAC.app": - when: - os: mac store: steam - /EVIL STAR.exe: + "/EVIL STAR.exe": - when: - os: windows store: steam @@ -184407,7 +184950,7 @@ Evil Tag: installDir: Evil_Tag: {} launch: - /Evil_Tag.exe: + "/Evil_Tag.exe": - when: - os: windows store: steam @@ -184417,32 +184960,32 @@ Evil Tonight: installDir: Evil Tonight: {} launch: - /evil_tonight.exe: + "/evil_tonight.exe": - when: - os: windows store: steam steam: id: 1480830 -'Evil Twin: Cyprien''s Chronicles': +"Evil Twin: Cyprien's Chronicles": files: - /save: + "/save": tags: - save when: - os: windows - /save/Config.sav: + "/save/Config.sav": tags: - config when: - os: windows Evil West: files: - /HighMoon/Saved/Config/WindowsNoEditor: + "/HighMoon/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /HighMoon/Saved/SaveGames/: + "/HighMoon/Saved/SaveGames/": tags: - save when: @@ -184457,7 +185000,7 @@ Evil West: installDir: Evil West: {} launch: - /EvilWest.exe: + "/EvilWest.exe": - when: - bit: 64 os: windows @@ -184470,7 +185013,7 @@ Evil Wizard: installDir: Evil Wizard: {} launch: - /Evil Wizard.exe: + "/Evil Wizard.exe": - when: - os: windows store: steam @@ -184480,19 +185023,19 @@ EvilMorph: installDir: EvilMorph: {} launch: - /EvilMorph.exe: + "/EvilMorph.exe": - when: - store: steam steam: id: 562490 EvilQuest: files: - /savedGame*.dat: + "/savedGame*.dat": tags: - save when: - os: windows - /settings.dat: + "/settings.dat": tags: - config when: @@ -184500,7 +185043,7 @@ EvilQuest: installDir: EvilQuestInstall: {} launch: - /EvilQuest.exe: + "/EvilQuest.exe": - when: - store: steam steam: @@ -184509,8 +185052,8 @@ Eville: installDir: Eville: {} launch: - /Eville.exe: - - arguments: '-nohmd' + "/Eville.exe": + - arguments: "-nohmd" when: - bit: 64 os: windows @@ -184521,20 +185064,20 @@ Evo Explores: installDir: Evo Explores: {} launch: - /evo.app/Contents/MacOS/evo: + "/evo.app/Contents/MacOS/evo": - when: - os: mac store: steam - /evo.exe: + "/evo.exe": - when: - os: windows store: steam - /evo.x86: + "/evo.x86": - when: - bit: 32 os: linux store: steam - /evo.x86_64: + "/evo.x86_64": - when: - bit: 64 os: linux @@ -184545,7 +185088,7 @@ Evocation: installDir: Evocation: {} launch: - /Evocation.exe: + "/Evocation.exe": - when: - os: windows store: steam @@ -184555,19 +185098,19 @@ Evochron Legacy: installDir: Evochron Legacy: {} launch: - /EvochronLegacySE.exe: + "/EvochronLegacySE.exe": - when: - store: steam steam: id: 398170 Evochron Mercenary: files: - 'C:/sw3dg/EvochronMercenary': + "C:/sw3dg/EvochronMercenary": tags: - save when: - os: windows - 'C:/sw3dg/EvochronMercenary/sw.cfg': + "C:/sw3dg/EvochronMercenary/sw.cfg": tags: - config when: @@ -184575,7 +185118,7 @@ Evochron Mercenary: installDir: Evochron Mercenary: {} launch: - /EvochronMercenary.exe: + "/EvochronMercenary.exe": - when: - store: steam steam: @@ -184587,23 +185130,17 @@ Evoke: id: 965730 Evoland: files: - /.config/Evoland/Pepper Data/Shockwave Flash/WritableRoot/#SharedObjects/<...>/#localhost/game.dat/evoSave.sol: - tags: - - config - - save - when: - - os: linux - /Library/Application Support/com.shirogames.evoland/Local Store/#SharedObjects/game.dat: + "/Library/Application Support/com.shirogames.evoland/Local Store/#SharedObjects/game.dat": tags: - save when: - os: mac - /Library/Preferences/com.shirogames.evoland/Local Store/#SharedObjects/game.dat: + "/Library/Preferences/com.shirogames.evoland/Local Store/#SharedObjects/game.dat": tags: - config when: - os: mac - /com.shirogames.evoland/Local Store/#SharedObjects/game.dat/evoSave.sol: + "/com.shirogames.evoland/Local Store/#SharedObjects/game.dat/evoSave.sol": tags: - config - save @@ -184614,15 +185151,15 @@ Evoland: installDir: Evoland: {} launch: - /Evo32: + "/Evo32": - when: - os: linux store: steam - /Evoland.app: + "/Evoland.app": - when: - os: mac store: steam - /Evoland.exe: + "/Evoland.exe": - when: - os: windows store: steam @@ -184630,18 +185167,18 @@ Evoland: id: 233470 Evoland 2: files: - /Contents/Resources/game/Evoland2/Contents/Resources/save: + "/Contents/Resources/game/Evoland2/Contents/Resources/save": tags: - save when: - os: mac - /save: + "/save": tags: - save when: - - os: windows - store: steam - /com.shirogames.evoland2/Local Store/#SharedObjects/game.dat/props.sol: + - os: windows + "/com.shirogames.evoland2/Local Store/#SharedObjects/game.dat/props.sol": tags: - config when: @@ -184651,11 +185188,11 @@ Evoland 2: installDir: Evoland 2: {} launch: - /Evoland2.app: + "/Evoland2.app": - when: - os: mac store: steam - /Evoland2.exe: + "/Evoland2.exe": - when: - os: windows store: steam @@ -184663,30 +185200,28 @@ Evoland 2: id: 359310 Evoland Legendary Edition: files: - /save: + "/save": tags: - save when: - os: windows - /slot*.sav: + "/slot*.sav": tags: - save - when: - - store: epic gog: id: 1466932507 installDir: Evoland Legendary Edition: {} launch: - /Evoland.exe: + "/Evoland.exe": - when: - os: windows store: steam - /linux/run.sh: + "/linux/run.sh": - when: - os: linux store: steam - /osx/run.sh: + "/osx/run.sh": - when: - os: mac store: steam @@ -184696,7 +185231,7 @@ Evolo.Evolution: installDir: Evolo.Evolution: {} launch: - /Evolo.Evolution.exe: + "/Evolo.Evolution.exe": - when: - store: steam steam: @@ -184705,7 +185240,7 @@ Evolo.Mine: installDir: Evolo.Mine: {} launch: - /Evolo.Mine.exe: + "/Evolo.Mine.exe": - when: - store: steam steam: @@ -184714,7 +185249,7 @@ Evolo.SpiderSim: installDir: Evolo.SpiderSim: {} launch: - /Evolo.SpiderSim.exe: + "/Evolo.SpiderSim.exe": - when: - store: steam steam: @@ -184726,15 +185261,15 @@ Evolution: installDir: Evolution: {} launch: - /Evolution.x86: + "/Evolution.x86": - when: - os: linux store: steam - /evolution.app: + "/evolution.app": - when: - os: mac store: steam - /evolution.exe: + "/evolution.exe": - when: - os: windows store: steam @@ -184744,7 +185279,7 @@ Evolution (2018): installDir: Evo: {} launch: - /Evo.exe: + "/Evo.exe": - when: - store: steam steam: @@ -184754,44 +185289,44 @@ Evolution Battle Simulator: id: 1177710 Evolution GT: files: - /saves: + "/saves": tags: - save when: - os: windows -'Evolution II: Fighting for Survival': +"Evolution II: Fighting for Survival": installDir: Evolution II Fighting for Survival: {} launch: - /setup.exe: + "/setup.exe": - when: - os: windows store: steam steam: id: 347580 -'Evolution Pinball VR: The Summoning': +"Evolution Pinball VR: The Summoning": installDir: Evolution Pinball VR The Summoning: {} steam: id: 486370 -'Evolution Planet: Gold Edition': +"Evolution Planet: Gold Edition": installDir: Evolution Planet Gold Edition: {} launch: - /EvolutionPlanetGold.app/Contents/MacOS/EvolutionPlanetGold: + "/EvolutionPlanetGold.app/Contents/MacOS/EvolutionPlanetGold": - when: - os: mac store: steam - /EvolutionPlanetGold.exe: + "/EvolutionPlanetGold.exe": - when: - os: windows store: steam - /EvolutionPlanetGold.x86: + "/EvolutionPlanetGold.x86": - when: - bit: 32 os: linux store: steam - /EvolutionPlanetGold.x86_64: + "/EvolutionPlanetGold.x86_64": - when: - bit: 64 os: linux @@ -184802,12 +185337,12 @@ Evolution RTS: installDir: EvolutionRTS: {} launch: - /launch.bat: + "/launch.bat": - when: - bit: 64 os: windows store: steam - /launch.sh: + "/launch.sh": - when: - bit: 64 os: linux @@ -184819,9 +185354,9 @@ Evolution VR: Evolution VR: {} steam: id: 549760 -'Evolution: The Video Game': +"Evolution: The Video Game": files: - /AppData/LocalLow/North Star Games LLC/Evolution: + "/AppData/LocalLow/North Star Games LLC/Evolution": tags: - save when: @@ -184829,13 +185364,19 @@ Evolution VR: installDir: Evolution: {} launch: - /Evolution.app/Contents/MacOS/Evolution: + "/Evolution.app/Contents/MacOS/Evolution": - when: + - bit: 32 + os: mac + store: steam - bit: 64 os: mac store: steam - /Evolution.exe: + "/Evolution.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam @@ -184847,12 +185388,12 @@ Evolution VR: id: 469800 Evolva: files: - /GenoHunters: + "/GenoHunters": tags: - save when: - os: windows - /SaveGames: + "/SaveGames": tags: - save when: @@ -184862,7 +185403,7 @@ Evolva: installDir: Evolva: {} launch: - /Evolva.exe: + "/Evolva.exe": - when: - os: windows store: steam @@ -184874,12 +185415,12 @@ Evolva: id: 771430 Evolvation: files: - /Evolvation/Saved/Config/WindowsNoEditor: + "/Evolvation/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /Evolvation/Saved/SaveGames/Settings.sav: + "/Evolvation/Saved/SaveGames/Settings.sav": tags: - config when: @@ -184887,11 +185428,11 @@ Evolvation: installDir: Evolvation: {} launch: - /Evolvation.exe: + "/Evolvation.exe": - when: - os: windows store: steam - /Evolvation/Binaries/Linux/Evolvation-Linux-Shipping: + "/Evolvation/Binaries/Linux/Evolvation-Linux-Shipping": - when: - os: linux store: steam @@ -184899,50 +185440,50 @@ Evolvation: id: 510840 Evolve Stage 2: files: - /system.cfg: + "/system.cfg": tags: - config when: - os: windows - /userdata//273350/local/USER: + "/userdata//273350/local/USER": tags: - save when: - store: steam - /userdata//273350/local/USER/Profiles/default/settings.xml: + "/userdata//273350/local/USER/Profiles/default/settings.xml": tags: - config when: - store: steam id: steamExtra: - - 341847 - - 341843 - - 341842 - - 341841 - - 341845 - - 341849 - 338470 - - 341846 - - 341850 - - 341844 - 341840 + - 341841 + - 341842 + - 341843 + - 341844 + - 341845 + - 341846 + - 341847 - 341848 + - 341849 + - 341850 installDir: EvolveGame: {} launch: - /Bin64_SteamRetail/Evolve.exe: + "/Bin64_SteamRetail/Evolve.exe": - when: - bit: 64 os: windows store: steam - workingDir: /Bin64_SteamRetail - /Evolve.app: + workingDir: "/Bin64_SteamRetail" + "/Evolve.app": - when: - bit: 64 os: mac store: steam - /Evolve.sh: + "/Evolve.sh": - when: - bit: 64 os: linux @@ -184953,7 +185494,7 @@ Evopollution: installDir: Evopollution: {} launch: - /evopollution.exe: + "/evopollution.exe": - when: - os: windows store: steam @@ -184961,7 +185502,7 @@ Evopollution: id: 295990 Evospace: files: - /AppData/Local/Evospace/Saved/SaveGames: + "/AppData/Local/Evospace/Saved/SaveGames": tags: - save when: @@ -184969,8 +185510,8 @@ Evospace: installDir: Evospace: {} launch: - /Evospace.exe: - - arguments: '-fullscreen -nohmd' + "/Evospace.exe": + - arguments: "-fullscreen -nohmd" when: - bit: 64 os: windows @@ -184984,7 +185525,7 @@ Evrisia Art: id: 1154150 Ex-Zodiac: files: - /godot/app_userdata/Ex-Zodiac: + "/godot/app_userdata/Ex-Zodiac": tags: - save when: @@ -184992,15 +185533,15 @@ Ex-Zodiac: installDir: Ex-Zodiac: {} launch: - /Ex-Zodiac.app: + "/Ex-Zodiac.app": - when: - os: mac store: steam - /ExZodiac.exe: + "/ExZodiac.exe": - when: - os: windows store: steam - /ExZodiac.x86_64: + "/ExZodiac.x86_64": - when: - os: linux store: steam @@ -185008,12 +185549,12 @@ Ex-Zodiac: id: 1249480 ExZeus: files: - /opeX.dat: + "/opeX.dat": tags: - config when: - os: windows - /s.dat: + "/s.dat": tags: - save when: @@ -185022,7 +185563,7 @@ ExZeus 2: installDir: ExZeus 2: {} launch: - /exzeus2.exe: + "/exzeus2.exe": - when: - os: windows store: steam @@ -185033,24 +185574,24 @@ ExZeus 2: - save steam: id: 668520 -'ExZeus: The Complete Collection': +"ExZeus: The Complete Collection": files: - /AppData/LocalLow/ScreenSelectorPrefs.txt: + "/AppData/LocalLow/ScreenSelectorPrefs.txt": tags: - config when: - os: windows - /AppData/LocalLow/high.data: + "/AppData/LocalLow/high.data": tags: - save when: - os: windows - /AppData/LocalLow/opL.dat: + "/AppData/LocalLow/opL.dat": tags: - save when: - os: windows - /AppData/LocalLow/opx4.dat: + "/AppData/LocalLow/opx4.dat": tags: - save when: @@ -185060,21 +185601,21 @@ ExZeus 2: installDir: ExZeusCollection: {} launch: - /ExZeusCollection.exe: + "/ExZeusCollection.exe": - when: - bit: 32 os: windows store: steam steam: id: 1545010 -'Exactamundo: World Trivia Tour': +"Exactamundo: World Trivia Tour": steam: id: 1142820 Exaella: installDir: EXAELLA: {} launch: - /EXAELLA.exe: + "/EXAELLA.exe": - when: - os: windows store: steam @@ -185082,7 +185623,7 @@ Exaella: id: 851370 Exanima: files: - /Exanima: + "/Exanima": tags: - config - save @@ -185093,7 +185634,7 @@ Exanima: installDir: Exanima: {} launch: - /Exanima.exe: + "/Exanima.exe": - when: - os: windows store: steam @@ -185101,27 +185642,27 @@ Exanima: id: 362490 Exapunks: files: - /.local/share/EXAPUNKS/: + "/.local/share/EXAPUNKS/": tags: - save when: - os: linux - /Library/Application Support/EXAPUNKS/: + "/Library/Application Support/EXAPUNKS/": tags: - save when: - os: mac - /Library/Application Support/EXAPUNKS//config.cfg: + "/Library/Application Support/EXAPUNKS//config.cfg": tags: - config when: - os: mac - /My Games/EXAPUNKS/: + "/My Games/EXAPUNKS/": tags: - save when: - os: windows - /My Games/EXAPUNKS//config.cfg: + "/My Games/EXAPUNKS//config.cfg": tags: - config when: @@ -185131,28 +185672,28 @@ Exapunks: installDir: EXAPUNKS: {} launch: - /EXAPUNKS: + "/EXAPUNKS": - when: - os: linux store: steam - /EXAPUNKS.app/Contents/MacOS/EXAPUNKS: + "/EXAPUNKS.app/Contents/MacOS/EXAPUNKS": - when: - os: mac store: steam - /EXAPUNKS.exe: + "/EXAPUNKS.exe": - when: - os: windows store: steam steam: id: 716490 -'Exapunks: TEC Redshift Player': +"Exapunks: TEC Redshift Player": files: - /My Games/EXAPUNKS TEC Redshift Player//config.cfg: + "/My Games/EXAPUNKS TEC Redshift Player//config.cfg": tags: - config when: - os: windows - /My Games/EXAPUNKS TEC Redshift Player//save.dat: + "/My Games/EXAPUNKS TEC Redshift Player//save.dat": tags: - save when: @@ -185160,15 +185701,15 @@ Exapunks: installDir: EXAPUNKS TEC Redshift Player: {} launch: - /EXAPUNKS: + "/EXAPUNKS": - when: - os: linux store: steam - /EXAPUNKS.app/Contents/MacOS/EXAPUNKS: + "/EXAPUNKS.app/Contents/MacOS/EXAPUNKS": - when: - os: mac store: steam - /EXAPUNKS.exe: + "/EXAPUNKS.exe": - when: - os: windows store: steam @@ -185176,10 +185717,10 @@ Exapunks: id: 948420 Exatron Quest 2: installDir: - Exatron Quest l'Epée de Sang: {} + "Exatron Quest l'Epée de Sang": {} launch: - /Game.exe: - - arguments: '--in-process-gpu' + "/Game.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam @@ -185189,11 +185730,11 @@ Excellent Expectations: installDir: qcsj_ee: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam - /osx/nw.app: + "/osx/nw.app": - when: - os: mac store: steam @@ -185201,12 +185742,12 @@ Excellent Expectations: id: 759940 Exception: files: - /Exception/: + "/Exception/": tags: - save when: - os: windows - /Exception//settings.json: + "/Exception//settings.json": tags: - config when: @@ -185214,7 +185755,7 @@ Exception: installDir: Exception: {} launch: - /Exception.exe: + "/Exception.exe": - when: - os: windows store: steam @@ -185224,7 +185765,7 @@ Exception (Traxmaster Software): installDir: Exception: {} launch: - /Exception.exe: + "/Exception.exe": - when: - os: windows store: steam @@ -185234,20 +185775,20 @@ Excubitor: installDir: Excubitor: {} launch: - /Excubitor.app: + "/Excubitor.app": - when: - os: mac store: steam - /Excubitor.exe: + "/Excubitor.exe": - when: - os: windows store: steam - /Excubitor.x86: + "/Excubitor.x86": - when: - bit: 32 os: linux store: steam - /Excubitor.x86_64: + "/Excubitor.x86_64": - when: - bit: 64 os: linux @@ -185258,7 +185799,7 @@ Excursion: installDir: Excursion: {} launch: - /Excursion.exe: + "/Excursion.exe": - when: - bit: 64 os: windows @@ -185272,7 +185813,7 @@ Executive Assault: installDir: Executive Assault: {} launch: - /ExecutiveAssault64.exe: + "/ExecutiveAssault64.exe": - when: - bit: 64 os: windows @@ -185283,11 +185824,11 @@ Executive Assault 2: installDir: Executive Assault 2: {} launch: - /ExecutiveAssault2.app/Contents/MacOS/Executive Assault 2: + "/ExecutiveAssault2.app/Contents/MacOS/Executive Assault 2": - when: - os: mac store: steam - /ExecutiveAssault2.exe: + "/ExecutiveAssault2.exe": - when: - os: windows store: steam @@ -185297,8 +185838,8 @@ Executive Hockey: installDir: Executive Hockey: {} launch: - /jre/bin/javaw.exe: - - arguments: '-jar hockeybrass-2.jar' + "/jre/bin/javaw.exe": + - arguments: "-jar hockeybrass-2.jar" when: - os: windows store: steam @@ -185308,7 +185849,7 @@ Exemption: installDir: Exemption: {} launch: - /ProjectExemption.exe: + "/ProjectExemption.exe": - when: - bit: 64 os: windows @@ -185319,7 +185860,7 @@ Exercise Book Epic: installDir: exercise book epic: {} launch: - /S007.exe: + "/S007.exe": - when: - os: windows store: steam @@ -185329,7 +185870,7 @@ Exertus: installDir: Exertus: {} launch: - /loneminded2.exe: + "/loneminded2.exe": - when: - os: windows store: steam @@ -185339,11 +185880,11 @@ Exile Squadron: installDir: Exile Squadron: {} launch: - /Exile Squadron.exe: + "/Exile Squadron.exe": - when: - os: windows store: steam - /Exile_Squadron: + "/Exile_Squadron": - when: - os: linux store: steam @@ -185353,15 +185894,15 @@ Exile of the Gods: installDir: Exile of the Gods: {} launch: - /Exile of the Gods.app/Contents/MacOS/Exile of the Gods: + "/Exile of the Gods.app/Contents/MacOS/Exile of the Gods": - when: - os: mac store: steam - /ExileOfTheGods: + "/ExileOfTheGods": - when: - os: linux store: steam - /ExileOfTheGods.exe: + "/ExileOfTheGods.exe": - when: - os: windows store: steam @@ -185371,22 +185912,28 @@ Exile to Death: installDir: ExiletoDeath: {} launch: - /ExiletoDeath.exe: + "/ExiletoDeath.exe": - when: - os: windows store: steam steam: id: 489240 -Exile's End: +"Exile's End": installDir: - Exile's End: {} + "Exile's End": {} launch: - /exiles_end: + "/exiles_end": - when: + - bit: 32 + os: linux + store: steam - bit: 64 os: mac store: steam - /exiles_end.exe: + - bit: 64 + os: linux + store: steam + "/exiles_end.exe": - when: - os: windows store: steam @@ -185398,15 +185945,15 @@ Exiled Kingdoms: installDir: Exiled Kingdoms: {} launch: - /Contents/MacOS/exiledkingdoms: + "/Contents/MacOS/exiledkingdoms": - when: - os: mac store: steam - /exiledkingdoms: + "/exiledkingdoms": - when: - os: linux store: steam - /exiledkingdoms.exe: + "/exiledkingdoms.exe": - when: - os: windows store: steam @@ -185416,11 +185963,11 @@ Exiled to the Void: installDir: Exiled to the Void: {} launch: - /Exiled to the Void.app/Contents/MacOS/Exiled to the Void: + "/Exiled to the Void.app/Contents/MacOS/Exiled to the Void": - when: - os: mac store: steam - /Exiled to the Void.exe: + "/Exiled to the Void.exe": - when: - os: windows store: steam @@ -185429,11 +185976,11 @@ Exiled to the Void: Exilium: steam: id: 2197240 -'Eximius: Seize the Frontline': +"Eximius: Seize the Frontline": installDir: Eximius: {} launch: - /ProjectCombine.exe: + "/ProjectCombine.exe": - when: - bit: 64 os: windows @@ -185444,7 +185991,7 @@ Exist: installDir: EXIST: {} launch: - /EXIST.exe: + "/EXIST.exe": - when: - store: steam steam: @@ -185456,8 +186003,8 @@ Existence: installDir: Existence: {} launch: - /Existence.exe: - - arguments: '-windowed' + "/Existence.exe": + - arguments: "-windowed" when: - os: windows store: steam @@ -185476,7 +186023,7 @@ Existential Kitty Cat RPG: installDir: Existential Kitty Cat RPG: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -185486,7 +186033,7 @@ Exit: installDir: EXIT: {} launch: - /bin64/exit.exe: + "/bin64/exit.exe": - when: - bit: 64 os: windows @@ -185497,7 +186044,7 @@ Exit 2 - Directions: installDir: EXIT 2 - Directions: {} launch: - /bin64/exit2.exe: + "/bin64/exit2.exe": - when: - bit: 64 os: windows @@ -185508,7 +186055,7 @@ Exit 3 - Painter: installDir: EXIT 3 - Painter: {} launch: - /bin64/exit3.exe: + "/bin64/exit3.exe": - when: - bit: 64 os: windows @@ -185519,7 +186066,7 @@ Exit 4 - Portal: installDir: EXIT 4 - Portal: {} launch: - /bin64/exit4.exe: + "/bin64/exit4.exe": - when: - bit: 64 os: windows @@ -185531,12 +186078,12 @@ Exit From: Exit From: {} steam: id: 1092140 -'Exit Limbo: Opening': +"Exit Limbo: Opening": installDir: ExitLimbo_Opening_Beta: {} launch: - /Game.exe: - - arguments: '-window-mode exclusive' + "/Game.exe": + - arguments: "-window-mode exclusive" when: - os: windows store: steam @@ -185547,17 +186094,17 @@ Exit VR: id: 667440 Exit the Gungeon: files: - /AppData/LocalLow/Dodge Roll/Exit the Gungeon/LocalOptions.txt: + "/AppData/LocalLow/Dodge Roll/Exit the Gungeon/LocalOptions.txt": tags: - config when: - os: windows - /AppData/LocalLow/Dodge Roll/Exit the Gungeon/Options.txt: + "/AppData/LocalLow/Dodge Roll/Exit the Gungeon/Options.txt": tags: - config when: - os: windows - /AppData/LocalLow/Dodge Roll/Exit the Gungeon/Slot*.save: + "/AppData/LocalLow/Dodge Roll/Exit the Gungeon/Slot*.save": tags: - save when: @@ -185572,7 +186119,7 @@ Exit the Gungeon: installDir: Exit the Gungeon: {} launch: - /XTG.exe: + "/XTG.exe": - when: - os: windows store: steam @@ -185582,23 +186129,23 @@ Exit the Gungeon: - config steam: id: 1209490 -'Exit: A Biodelic Adventure': +"Exit: A Biodelic Adventure": steam: id: 620410 Exitium: installDir: Exitium: {} launch: - /Exitium.exe: + "/Exitium.exe": - when: - os: windows store: steam - /Exitium.x86: + "/Exitium.x86": - when: - bit: 32 os: linux store: steam - /Exitium.x86_64: + "/Exitium.x86_64": - when: - bit: 64 os: linux @@ -185607,12 +186154,12 @@ Exitium: id: 1180450 Exo One: files: - /AppData/LocalLow/Exbleative/EXO ONE: + "/AppData/LocalLow/Exbleative/EXO ONE": tags: - save when: - os: windows - /Packages/FutureFriendsGames.ExoOne_2whsqx9fyfsdj/SystemAppData/wgs: + "/Packages/FutureFriendsGames.ExoOne_2whsqx9fyfsdj/SystemAppData/wgs": tags: - config - save @@ -185625,7 +186172,7 @@ Exo One: installDir: Exo One: {} launch: - /EXO ONE.exe: + "/EXO ONE.exe": - when: - os: windows store: steam @@ -185633,13 +186180,15 @@ Exo One: HKEY_CURRENT_USER/Software/Exbleative/EXO ONE: tags: - config + when: + - store: microsoft steam: id: 773370 Exo Racing: installDir: Exo Racing: {} launch: - /Exo Racing.exe: + "/Exo Racing.exe": - when: - os: windows store: steam @@ -185649,7 +186198,7 @@ Exo TD: installDir: Exo TD: {} launch: - /ExoTD.exe: + "/ExoTD.exe": - when: - os: windows store: steam @@ -185659,7 +186208,7 @@ Exo-Adventures: installDir: Exo-Adventures: {} launch: - /Exo_Adventures.exe: + "/Exo_Adventures.exe": - when: - os: windows store: steam @@ -185669,7 +186218,7 @@ ExoCorps: installDir: ExoCorps: {} launch: - /Binaries/Win32/UDK.exe: + "/Binaries/Win32/UDK.exe": - when: - bit: 32 os: windows @@ -185680,8 +186229,8 @@ ExoTanks MOBA: installDir: ExoTanks: {} launch: - /ExoTanksMOBA.exe: - - arguments: '-OnlineClient=SteamClient' + "/ExoTanksMOBA.exe": + - arguments: "-OnlineClient=SteamClient" when: - bit: 64 os: windows @@ -185692,15 +186241,15 @@ Exocomets: installDir: Exocomets: {} launch: - /Exocomets: + "/Exocomets": - when: - os: linux store: steam - /Exocomets.app/Contents/MacOS/Exocomets: + "/Exocomets.app/Contents/MacOS/Exocomets": - when: - os: mac store: steam - /Exocomets.exe: + "/Exocomets.exe": - when: - os: windows store: steam @@ -185708,7 +186257,7 @@ Exocomets: id: 655950 Exocraft: files: - /Exocraft: + "/Exocraft": tags: - save when: @@ -185716,11 +186265,11 @@ Exocraft: installDir: Exocraft: {} launch: - /Exocraft.app: + "/Exocraft.app": - when: - os: mac store: steam - /Exocraft.exe: + "/Exocraft.exe": - when: - os: windows store: steam @@ -185730,7 +186279,7 @@ Exodemon: installDir: Exodemon: {} launch: - /Exodemon.exe: + "/Exodemon.exe": - when: - os: windows store: steam @@ -185740,12 +186289,12 @@ Exoder: installDir: Exoder: {} launch: - /ExoderWind32.exe: + "/ExoderWind32.exe": - when: - bit: 32 os: windows store: steam - /ExoderWind64.exe: + "/ExoderWind64.exe": - when: - bit: 64 os: windows @@ -185756,110 +186305,110 @@ Exodus: installDir: Spiritual Warfare & Wisdom Tree Collection: {} launch: - /DOSBox.app/Contents/MacOS/DOSBox: - - arguments: '-conf ../Conf/spirit.cfg -noconsole' + "/DOSBox.app/Contents/MacOS/DOSBox": + - arguments: "-conf ../Conf/spirit.cfg -noconsole" when: - os: mac store: steam - workingDir: /DOS - - arguments: '-conf ../Conf/bibleunix.cfg -noconsole' + workingDir: "/DOS" + - arguments: "-conf ../Conf/bibleunix.cfg -noconsole" when: - os: mac store: steam - workingDir: /DOS - - arguments: '-conf ../Conf/exodus.cfg -noconsole' + workingDir: "/DOS" + - arguments: "-conf ../Conf/exodus.cfg -noconsole" when: - os: mac store: steam - workingDir: /DOS - - arguments: '-conf ../Conf/joshua.cfg -noconsole' + workingDir: "/DOS" + - arguments: "-conf ../Conf/joshua.cfg -noconsole" when: - os: mac store: steam - workingDir: /DOS - /dosbox: - - arguments: '-conf ../Conf/spirit.cfg -noconsole' + workingDir: "/DOS" + "/dosbox": + - arguments: "-conf ../Conf/spirit.cfg -noconsole" when: - os: linux store: steam - workingDir: /DOS - - arguments: '-conf ../Conf/bibleunix.cfg -noconsole' + workingDir: "/DOS" + - arguments: "-conf ../Conf/bibleunix.cfg -noconsole" when: - os: linux store: steam - workingDir: /DOS - - arguments: '-conf ../Conf/exodus.cfg -noconsole' + workingDir: "/DOS" + - arguments: "-conf ../Conf/exodus.cfg -noconsole" when: - os: linux store: steam - workingDir: /DOS - - arguments: '-conf ../Conf/joshua.cfg -noconsole' + workingDir: "/DOS" + - arguments: "-conf ../Conf/joshua.cfg -noconsole" when: - os: linux store: steam - workingDir: /DOS - /dosbox.exe: - - arguments: '-conf ../Conf/spirit.cfg -noconsole' + workingDir: "/DOS" + "/dosbox.exe": + - arguments: "-conf ../Conf/spirit.cfg -noconsole" when: - os: windows store: steam - workingDir: /DOS - - arguments: '-conf ../Conf/bible.cfg -noconsole' + workingDir: "/DOS" + - arguments: "-conf ../Conf/bible.cfg -noconsole" when: - os: windows store: steam - workingDir: /DOS - - arguments: '-conf ../Conf/exodus.cfg -noconsole' + workingDir: "/DOS" + - arguments: "-conf ../Conf/exodus.cfg -noconsole" when: - os: windows store: steam - workingDir: /DOS - - arguments: '-conf ../Conf/joshua.cfg -noconsole' + workingDir: "/DOS" + - arguments: "-conf ../Conf/joshua.cfg -noconsole" when: - os: windows store: steam - workingDir: /DOS + workingDir: "/DOS" steam: id: 624550 Exodus (2013): installDir: Exodus: {} launch: - /bin/release/Exodus.exe: + "/bin/release/Exodus.exe": - when: - os: windows store: steam - workingDir: /bin/release + workingDir: "/bin/release" steam: id: 313960 Exodus (2018): installDir: Exodus: {} launch: - /Exodus.exe: + "/Exodus.exe": - when: - os: windows store: steam steam: id: 904950 -'Exodus Wars: Fractured Empire': +"Exodus Wars: Fractured Empire": installDir: FracturedEmpire: {} launch: - /FracturedEmpire.app: + "/FracturedEmpire.app": - when: - os: mac store: steam - /FracturedEmpire.exe: + "/FracturedEmpire.exe": - when: - os: windows store: steam - /FracturedEmpire.x86: + "/FracturedEmpire.x86": - when: - bit: 32 os: linux store: steam - /FracturedEmpire.x86_64: + "/FracturedEmpire.x86_64": - when: - bit: 64 os: linux @@ -185868,12 +186417,12 @@ Exodus (2018): id: 297270 Exodus from the Earth: files: - 'C:/Users//Documents/My Games/Exodus/Default': + "C:/Users//Documents/My Games/Exodus/Default": tags: - config when: - os: windows - 'C:/Users//Documents/My Games/Exodus/Default/save': + "C:/Users//Documents/My Games/Exodus/Default/save": tags: - save when: @@ -185881,37 +186430,37 @@ Exodus from the Earth: installDir: Exodus from the Earth: {} launch: - /bin/efte.exe: - - arguments: '-data ..\\single' + "/bin/efte.exe": + - arguments: "-data ..\\\\single" when: - store: steam - - arguments: '-data ..\\net -multiplayer' + - arguments: "-data ..\\\\net -multiplayer" when: - store: steam steam: id: 12390 -'Exodus: Proxima Centauri': +"Exodus: Proxima Centauri": installDir: Exodus Proxima Centauri: {} launch: - /Exodus Proxima Centauri.app/Contents/MacOS/Exodus Proxima Centauri: + "/Exodus Proxima Centauri.app/Contents/MacOS/Exodus Proxima Centauri": - when: - os: mac store: steam - /Exodus Proxima Centauri.exe: + "/Exodus Proxima Centauri.exe": - when: - os: windows store: steam steam: id: 892440 -'Exodus: Rising': +"Exodus: Rising": steam: id: 951770 Exogen VR: installDir: Exogen VR: {} launch: - /Exogen.exe: + "/Exogen.exe": - when: - bit: 64 os: windows @@ -185922,7 +186471,7 @@ Exogenesis ~Perils of Rebirth~: installDir: Exogenesis ~Perils of Rebirth~: {} launch: - /Exogenesis.exe: + "/Exogenesis.exe": - when: - os: windows store: steam @@ -185938,9 +186487,9 @@ Exoplanet: Exoplanet: {} steam: id: 894380 -'Exoplanet: First Contact': +"Exoplanet: First Contact": files: - /Alersteam/Exoplanet First Contact/savegames: + "/Alersteam/Exoplanet First Contact/savegames": tags: - save when: @@ -185948,7 +186497,7 @@ Exoplanet: installDir: Exoplanet First Contact: {} launch: - /ExoplanetFC.exe: + "/ExoplanetFC.exe": - when: - os: windows store: steam @@ -185956,7 +186505,7 @@ Exoplanet: id: 531660 Exoprimal: files: - /Documents/EXOPRIMAL_Windows: + "/Documents/EXOPRIMAL_Windows": tags: - config when: @@ -185982,7 +186531,7 @@ Exoprimal: installDir: Exoprimal: {} launch: - /start_protected_game.exe: + "/start_protected_game.exe": - when: - bit: 64 os: windows @@ -185993,17 +186542,17 @@ Exorcise The Demons: installDir: Exorcise the Demons: {} launch: - /Exorcise The Demons.exe: + "/Exorcise The Demons.exe": - when: - os: windows store: steam steam: id: 654450 -'Exorcism: Case Zero': +"Exorcism: Case Zero": installDir: Exorcism Case Zero: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -186013,15 +186562,15 @@ Exorder: installDir: Exorder: {} launch: - /Exorder.app/Contents/MacOS/Exorder: + "/Exorder.app/Contents/MacOS/Exorder": - when: - os: mac store: steam - /LauncherNNG.exe: + "/LauncherNNG.exe": - when: - os: windows store: steam - /exorder.x86: + "/exorder.x86": - when: - os: linux store: steam @@ -186031,7 +186580,7 @@ Exos Heroes: installDir: Exos Heroes: {} launch: - /Exos Heroes.exe: + "/Exos Heroes.exe": - when: - store: steam steam: @@ -186040,7 +186589,7 @@ Exosphere: installDir: Exosphere: {} launch: - /exosphere.exe: + "/exosphere.exe": - when: - os: windows store: steam @@ -186050,15 +186599,15 @@ Exostorm: installDir: Exostorm: {} launch: - /Contents/MacOS/ExostormGame: + "/Contents/MacOS/ExostormGame": - when: - os: mac store: steam - /Exostorm.exe: + "/Exostorm.exe": - when: - os: windows store: steam - /ExostormGame: + "/ExostormGame": - when: - os: linux store: steam @@ -186071,7 +186620,7 @@ Exotic Matter: installDir: Exotic Matter: {} launch: - /exoticmatter.exe: + "/exoticmatter.exe": - when: - bit: 64 os: windows @@ -186082,20 +186631,20 @@ Exowar: installDir: Exowar: {} launch: - /Exowar.jar: + "/Exowar.jar": - when: - store: steam steam: id: 358610 Expand: files: - /data/config: + "/data/config": tags: - save when: - os: windows - os: linux - /data/saves: + "/data/saves": tags: - config when: @@ -186104,15 +186653,15 @@ Expand: installDir: Expand: {} launch: - /Expand.app/Contents/MacOS/Expand: + "/Expand.app/Contents/MacOS/Expand": - when: - os: mac store: steam - /expand.exe: + "/expand.exe": - when: - os: windows store: steam - /runExpand: + "/runExpand": - when: - bit: 64 os: linux @@ -186123,15 +186672,15 @@ Expander: installDir: Expander: {} launch: - /Expander.app/Contents/MacOS/Expander: + "/Expander.app/Contents/MacOS/Expander": - when: - os: mac store: steam - /Expander.exe: + "/Expander.exe": - when: - os: windows store: steam - /Expander.x86: + "/Expander.x86": - when: - os: linux store: steam @@ -186141,7 +186690,7 @@ Expanse: installDir: Expanse: {} launch: - /Expanse.exe: + "/Expanse.exe": - when: - os: windows store: steam @@ -186151,7 +186700,7 @@ Expansion: installDir: Expansion: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: @@ -186160,15 +186709,15 @@ Expect the Unexpected: installDir: ExpectTheUnexpected: {} launch: - /ExpectTheUnexpected.app/Contents/MacOS/ExpectTheUnexpected: + "/ExpectTheUnexpected.app/Contents/MacOS/ExpectTheUnexpected": - when: - os: mac store: steam - /ExpectTheUnexpected.exe: + "/ExpectTheUnexpected.exe": - when: - os: windows store: steam - /ExpectTheUnexpected.x86: + "/ExpectTheUnexpected.x86": - when: - os: linux store: steam @@ -186186,19 +186735,19 @@ Expedition Oregon: installDir: Expedition Oregon: {} launch: - /expeditionoregon.exe: + "/expeditionoregon.exe": - when: - store: steam steam: id: 947580 Expedition Zero: files: - /ExpeditionZero/Saved/Config: + "/ExpeditionZero/Saved/Config": tags: - config when: - os: windows - /ExpeditionZero/Saved/Savegames: + "/ExpeditionZero/Saved/Savegames": tags: - save when: @@ -186208,40 +186757,40 @@ Expedition Zero: installDir: Expedition Zero: {} launch: - /ExpeditionZero.exe: + "/ExpeditionZero.exe": - when: - os: windows store: steam steam: id: 1247570 -'Expeditions: Conquistador': +"Expeditions: Conquistador": files: - /.local/share/Expeditions-Conquistador: + "/.local/share/Expeditions-Conquistador": tags: - config when: - os: mac - /.local/share/Expeditions-Conquistador/Saves: + "/.local/share/Expeditions-Conquistador/Saves": tags: - save when: - os: mac - /My Games/Expeditions Conquistador/Saves: + "/My Games/Expeditions Conquistador/Saves": tags: - save when: - os: windows - /My Games/Expeditions Conquistador/config.ini: + "/My Games/Expeditions Conquistador/config.ini": tags: - config when: - os: windows - /Expeditions-Conquistador: + "/Expeditions-Conquistador": tags: - config when: - os: linux - /Expeditions-Conquistador/Saves: + "/Expeditions-Conquistador/Saves": tags: - save when: @@ -186251,32 +186800,32 @@ Expedition Zero: installDir: Expeditions Conquistador: {} launch: - /Expeditions Conquistador.app: + "/Expeditions Conquistador.app": - when: - os: mac store: steam - /Expeditions Conquistador.exe: + "/Expeditions Conquistador.exe": - when: - os: windows store: steam - /ExpeditionsConquistador.x86: + "/ExpeditionsConquistador.x86": - when: - os: linux store: steam - /ExpeditionsConquistador.x86_64: + "/ExpeditionsConquistador.x86_64": - when: - os: linux store: steam steam: id: 237430 -'Expeditions: Rome': +"Expeditions: Rome": files: - /ExpeditionsRome/Saved/Config/WindowsNoEditor: + "/ExpeditionsRome/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /ExpeditionsRome/Saved/SaveGames: + "/ExpeditionsRome/Saved/SaveGames": tags: - save when: @@ -186288,30 +186837,30 @@ Expedition Zero: - 1412350651 - 1564431817 steamExtra: - - 1815770 - 1805540 + - 1815770 installDir: Expeditions Rome: {} launch: - /ExpeditionsRome.exe: + "/ExpeditionsRome.exe": - when: - os: windows store: steam steam: id: 987840 -'Expeditions: Viking': +"Expeditions: Viking": files: - /My Games/Expeditions Viking/Config/Config.ini: + "/My Games/Expeditions Viking/Config/Config.ini": tags: - config when: - os: windows - /My Games/Expeditions Viking/InputBindings: + "/My Games/Expeditions Viking/InputBindings": tags: - config when: - os: windows - /My Games/Expeditions Viking/Savegames: + "/My Games/Expeditions Viking/Savegames": tags: - save when: @@ -186321,7 +186870,7 @@ Expedition Zero: installDir: Expeditions Viking: {} launch: - /Expeditions Viking.exe: + "/Expeditions Viking.exe": - when: - os: windows store: steam @@ -186331,25 +186880,28 @@ Expelled: installDir: Expelled: {} launch: - /osx64/expelled.app: + "/osx64/expelled.app": - when: - os: mac store: steam - /win32/Expelled.exe: + "/win32/Expelled.exe": - when: - bit: 32 os: windows store: steam + - bit: 64 + os: windows + store: steam steam: id: 727530 Expendable: files: - /config.txt: + "/config.txt": tags: - config when: - os: windows - /misc/savegame.dta: + "/misc/savegame.dta": tags: - save when: @@ -186359,7 +186911,7 @@ Expendable: installDir: Expendable: {} launch: - /Expendable.exe: + "/Expendable.exe": - when: - os: windows store: steam @@ -186371,7 +186923,7 @@ Experience: Experience (2019): steam: id: 1017330 -'Experience: Colorblindness': +"Experience: Colorblindness": installDir: Experience Colorblindness: {} steam: @@ -186385,25 +186937,25 @@ Expert Rifleman - Reloaded: installDir: Expert Rifleman: {} launch: - /Expert Rifleman Reloaded.app: + "/Expert Rifleman Reloaded.app": - when: - os: mac store: steam - /ExpertRifleman.exe: + "/ExpertRifleman.exe": - when: - os: windows store: steam steam: id: 383590 -'Exphelius: Arena': +"Exphelius: Arena": installDir: Exphelius - Arena: {} launch: - /Exphelius Arena.exe: + "/Exphelius Arena.exe": - when: - os: windows store: steam - /Exphelius.app: + "/Exphelius.app": - when: - os: mac store: steam @@ -186411,7 +186963,7 @@ Expert Rifleman - Reloaded: id: 1167800 Explodemon: files: - /EXPLODEMON!: + "/EXPLODEMON!": tags: - config - save @@ -186420,20 +186972,20 @@ Explodemon: installDir: Explodemon: {} launch: - /explodemon.exe: + "/explodemon.exe": - when: - os: windows store: steam steam: id: 281820 -Explodey - Sci-fi Side Scroller w/ 'splosions: +"Explodey - Sci-fi Side Scroller w/ 'splosions": steam: id: 886860 Exploding Babies: installDir: Exploding Babies: {} launch: - /ExplodingBabies.exe: + "/ExplodingBabies.exe": - when: - os: windows store: steam @@ -186443,7 +186995,7 @@ Explomania: installDir: Explomania: {} launch: - /Explomania.exe: + "/Explomania.exe": - when: - os: windows store: steam @@ -186453,11 +187005,11 @@ Exploration Pro: installDir: Exploration Pro: {} launch: - /ExplorationProHD_Mac.app: + "/ExplorationProHD_Mac.app": - when: - os: mac store: steam - /ExplorationProHD_PC.exe: + "/ExplorationProHD_PC.exe": - when: - os: windows store: steam @@ -186467,7 +187019,7 @@ Explore Fushimi Inari: installDir: Explore Fushimi Inari: {} launch: - /Fushimi Inari/FushimiInari.exe: + "/Fushimi Inari/FushimiInari.exe": - when: - bit: 64 os: windows @@ -186480,7 +187032,7 @@ Explorer of Yggdrasil: installDir: Explorer of Yggdrasil: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: @@ -186489,7 +187041,7 @@ Explorers of the Abyss: installDir: Explorers of the Abyss: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: @@ -186501,7 +187053,7 @@ Explosion Magic Firebolt VR: id: 1173070 Explosionade: files: - /Explosionade/Explosionade.mbg: + "/Explosionade/Explosionade.mbg": tags: - config - save @@ -186510,7 +187062,7 @@ Explosionade: installDir: Explosionade: {} launch: - /Explosionade.exe: + "/Explosionade.exe": - when: - store: steam steam: @@ -186519,11 +187071,11 @@ Explosive Dinosaurs: installDir: Explosive Dinosaurs: {} launch: - /pmouya: + "/pmouya": - when: - os: linux store: steam - /pmouya.exe: + "/pmouya.exe": - when: - os: windows store: steam @@ -186533,7 +187085,7 @@ Explosive Jake: installDir: Explosive Jake: {} launch: - /ExplosiveJake.exe: + "/ExplosiveJake.exe": - when: - os: windows store: steam @@ -186546,11 +187098,11 @@ Explottens: installDir: Explottens: {} launch: - /Explottens.app: + "/Explottens.app": - when: - os: mac store: steam - /explottens.exe: + "/explottens.exe": - when: - os: windows store: steam @@ -186560,7 +187112,7 @@ Export Simulator: installDir: Export Simulator: {} launch: - /Export Simulator.exe: + "/Export Simulator.exe": - when: - os: windows store: steam @@ -186570,7 +187122,7 @@ Exposure: installDir: Exposure: {} launch: - /Exposure.exe: + "/Exposure.exe": - when: - bit: 64 os: windows @@ -186583,7 +187135,7 @@ Express Raider: installDir: Retro Classix Express Raider: {} launch: - /Retro Classix Express Raider.exe: + "/Retro Classix Express Raider.exe": - when: - os: windows store: steam @@ -186593,7 +187145,7 @@ Exsys: installDir: Exsys: {} launch: - /Exsys.exe: + "/Exsys.exe": - when: - os: windows store: steam @@ -186603,7 +187155,7 @@ Exteria: installDir: Exteria: {} launch: - /Exteria.exe: + "/Exteria.exe": - when: - os: windows store: steam @@ -186622,7 +187174,7 @@ Exterminator: Exterminator Simulator: steam: id: 1197300 -'Exterminator: Escape!': +"Exterminator: Escape!": installDir: ExterminatorEscape: {} steam: @@ -186631,30 +187183,30 @@ External Visions: installDir: External Visions: {} launch: - /bin/java: - - arguments: '-Dorg.lwjgl.librarypath=./natives/ -m growth_opengl/mainPackage.AppMain' + "/bin/java": + - arguments: "-Dorg.lwjgl.librarypath=./natives/ -m growth_opengl/mainPackage.AppMain" when: - bit: 64 os: linux store: steam - workingDir: /bin - /bin/javaw.exe: - - arguments: '-Dorg.lwjgl.librarypath=.\\natives\\ -m growth_opengl/mainPackage.AppMain' + workingDir: "/bin" + "/bin/javaw.exe": + - arguments: "-Dorg.lwjgl.librarypath=.\\\\natives\\\\ -m growth_opengl/mainPackage.AppMain" when: - bit: 64 os: windows store: steam - workingDir: /bin + workingDir: "/bin" steam: id: 748880 Extinction: files: - /AppData/Local/Blink/Saved/Config/WindowsNoEditor: + "/AppData/Local/Blink/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /AppData/Local/Blink/Saved/SaveGames//AUTOSAVE.sav: + "/AppData/Local/Blink/Saved/SaveGames//AUTOSAVE.sav": tags: - save when: @@ -186662,7 +187214,7 @@ Extinction: installDir: Extinction: {} launch: - /Blink/Binaries/Win64/Extinction.exe: + "/Blink/Binaries/Win64/Extinction.exe": - when: - bit: 64 os: windows @@ -186672,11 +187224,11 @@ Extinction: Extinction Protocol: steam: id: 1078210 -'Extinction: Alien Invasion': +"Extinction: Alien Invasion": installDir: Extinction Alien Invasion: {} launch: - /EXTINCTION ALIEN INVASION.exe: + "/EXTINCTION ALIEN INVASION.exe": - when: - os: windows store: steam @@ -186689,15 +187241,15 @@ Extra Terrestrial Perception: installDir: Extra Terrestrial Perception: {} launch: - /quinn.app: + "/quinn.app": - when: - os: mac store: steam - /quinn.exe: + "/quinn.exe": - when: - os: windows store: steam - /quinn.sh: + "/quinn.sh": - when: - os: linux store: steam @@ -186707,21 +187259,21 @@ ExtraGalactica: installDir: ExtraGalactica: {} launch: - /ExtraGalactica.app: + "/ExtraGalactica.app": - when: - os: mac store: steam - /ExtraGalactica.exe: + "/ExtraGalactica.exe": - when: - os: windows store: steam steam: id: 1207840 -Extraction Valley Devils' Curse: +"Extraction Valley Devils' Curse": installDir: Extraction Valley: {} launch: - /ExtractionValley/Binaries/Win64/ExtractionValley.exe: + "/ExtractionValley/Binaries/Win64/ExtractionValley.exe": - when: - bit: 64 os: windows @@ -186732,11 +187284,11 @@ Extraneum: installDir: Extraneum: {} launch: - /Extraneum.exe: + "/Extraneum.exe": - when: - os: windows store: steam - /extraneum.x86_64: + "/extraneum.x86_64": - when: - os: linux store: steam @@ -186746,7 +187298,7 @@ Extravaganza Rising: installDir: Extravaganza Rising: {} launch: - /Extravaganza Rising.exe: + "/Extravaganza Rising.exe": - when: - os: windows store: steam @@ -186754,40 +187306,40 @@ Extravaganza Rising: id: 501030 Extreme Assault: files: - /INIT.CFG: + "/INIT.CFG": tags: - config when: - os: dos - /SAVEGAME: + "/SAVEGAME": tags: - save when: - os: dos - /SETUP.INI: + "/SETUP.INI": tags: - config when: - os: dos Extreme Burger Defense: files: - /ExtremeBurgerDefense: + "/ExtremeBurgerDefense": tags: - save when: - os: windows -'Extreme Dash: Reloaded': +"Extreme Dash: Reloaded": steam: id: 829120 Extreme Drifters: installDir: Extreme Drifters: {} launch: - /Extreme Drifters.app/Contents/MacOS/Extreme Drifters: + "/Extreme Drifters.app/Contents/MacOS/Extreme Drifters": - when: - os: mac store: steam - /Extreme Drifters.exe: + "/Extreme Drifters.exe": - when: - os: windows store: steam @@ -186797,11 +187349,11 @@ Extreme Exorcism: installDir: Extreme Exorcism: {} launch: - /ExtremeExorcism.app: + "/ExtremeExorcism.app": - when: - os: mac store: steam - /ExtremeExorcism.exe: + "/ExtremeExorcism.exe": - when: - os: windows store: steam @@ -186815,11 +187367,11 @@ Extreme Forklifting 2: installDir: Extreme Forklifting 2: {} launch: - /ExtremeForklifting2.app/Contents/MacOS/ExtremeForklifting2: + "/ExtremeForklifting2.app/Contents/MacOS/ExtremeForklifting2": - when: - os: mac store: steam - /ExtremeForklifting2.exe: + "/ExtremeForklifting2.exe": - when: - os: windows store: steam @@ -186829,7 +187381,7 @@ Extreme Formula Championship: installDir: Extreme Formula Championship: {} launch: - /extremeformula.exe: + "/extremeformula.exe": - when: - os: windows store: steam @@ -186839,7 +187391,7 @@ Extreme Offroad Monster Simulator: installDir: Extreme Offroad Monster Simulator: {} launch: - /Extreme Offroad Monster Simulator.exe: + "/Extreme Offroad Monster Simulator.exe": - when: - os: windows store: steam @@ -186847,7 +187399,7 @@ Extreme Offroad Monster Simulator: id: 1164440 Extreme Paintbrawl: files: - /engine/PaintB.cfg: + "/engine/PaintB.cfg": tags: - config when: @@ -186856,15 +187408,15 @@ Extreme Painting Puzzles: installDir: Extreme Painting Puzzle: {} launch: - /EPP.x86_64: + "/EPP.x86_64": - when: - os: linux store: steam - /Extreme Painting Puzzle Mac.app: + "/Extreme Painting Puzzle Mac.app": - when: - os: mac store: steam - /Extreme Painting Puzzle Windows.exe: + "/Extreme Painting Puzzle Windows.exe": - when: - os: windows store: steam @@ -186874,7 +187426,7 @@ Extreme Racing on Highway: installDir: Exteme Racing on Highway: {} launch: - /Extreme Racing on Highway.exe: + "/Extreme Racing on Highway.exe": - when: - os: windows store: steam @@ -186884,12 +187436,15 @@ Extreme Real Reality HD Remix: installDir: Extreme Real Reality HD Remix: {} launch: - /extremerealreality.app: + "/extremerealreality.app": - when: - os: mac store: steam - /nw.exe: + "/nw.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam @@ -186899,12 +187454,12 @@ Extreme Roads USA: installDir: ExtremeRoadsUSA: {} launch: - /xrusa.app: + "/xrusa.app": - when: - os: mac store: steam - /xrusa.exe: - - arguments: '-debug' + "/xrusa.exe": + - arguments: "-debug" when: - os: windows store: steam @@ -186914,7 +187469,7 @@ Extreme School Driving Simulator: installDir: Exteme School Driving Simulator: {} launch: - /Exteme School Driving Simulator.exe: + "/Exteme School Driving Simulator.exe": - when: - bit: 64 os: windows @@ -186930,7 +187485,7 @@ Extreme Tactical Executioners: installDir: Extreme Tactical Executioners: {} launch: - /Extreme Tactical Executioners.exe: + "/Extreme Tactical Executioners.exe": - when: - store: steam steam: @@ -186939,7 +187494,7 @@ Extreme Truck Simulator: installDir: Extreme Truck Simulator: {} launch: - /Extreme Truck Simulator.exe: + "/Extreme Truck Simulator.exe": - when: - os: windows store: steam @@ -186957,12 +187512,12 @@ Extreme Tux Racer: - config when: - os: linux - /config: + "/config": tags: - save when: - os: windows - /config/options.txt: + "/config/options.txt": tags: - config when: @@ -186972,7 +187527,7 @@ Extreme flight: id: 1068320 Extreme-G 2: files: - /newfile.dat: + "/newfile.dat": tags: - config - save @@ -186981,7 +187536,7 @@ Extreme-G 2: installDir: Extreme-G 2: {} launch: - /Play Extreme G-2.exe: + "/Play Extreme G-2.exe": - when: - os: windows store: steam @@ -186989,12 +187544,12 @@ Extreme-G 2: id: 582260 Extremely Goofy Skateboarding: files: - /data/config/config.cfg: + "/data/config/config.cfg": tags: - config when: - os: windows - /data/gamesave.dat: + "/data/gamesave.dat": tags: - save when: @@ -187003,7 +187558,7 @@ Extricate: installDir: Extricate: {} launch: - /Extricate.exe: + "/Extricate.exe": - when: - os: windows store: steam @@ -187016,7 +187571,7 @@ Exсive A-1000: installDir: Excive A-1000: {} launch: - /Excive A-1000.exe: + "/Excive A-1000.exe": - when: - os: windows store: steam @@ -187026,7 +187581,7 @@ Eye Of Plunder: installDir: Eye Of Plunder: {} launch: - /EOPlunder/EOPlunder.exe: + "/EOPlunder/EOPlunder.exe": - when: - os: windows store: steam @@ -187044,7 +187599,7 @@ Eye of Odin: id: 601330 Eye of the Beholder: files: - /EOBDATA.SAV: + "/EOBDATA.SAV": tags: - save when: @@ -187056,9 +187611,9 @@ Eye of the Beholder: - 1436868249 steam: id: 1882260 -'Eye of the Beholder II: The Legend of Darkmoon': +"Eye of the Beholder II: The Legend of Darkmoon": files: - /EOBDATA*.SAV: + "/EOBDATA*.SAV": tags: - save when: @@ -187070,9 +187625,9 @@ Eye of the Beholder: - 1436868249 steam: id: 1882261 -'Eye of the Beholder III: Assault on Myth Drannor': +"Eye of the Beholder III: Assault on Myth Drannor": files: - /SAVEGAME: + "/SAVEGAME": tags: - config - save @@ -187093,12 +187648,6 @@ Eye of the Temple: steam: id: 589940 Eyes in the Dark: - files: - 'C:/Users/*/AppData/LocalLow/Under the Stairs/Eyes in the Dark': - tags: - - save - when: - - os: windows id: steamExtra: - 1966520 @@ -187106,7 +187655,7 @@ Eyes in the Dark: installDir: Eyes in the Dark: {} launch: - /Eyes in the Dark.exe: + "/Eyes in the Dark.exe": - when: - bit: 64 os: windows @@ -187120,7 +187669,7 @@ Eyestorm: installDir: Eyestorm: {} launch: - /Eyestorm.exe: + "/Eyestorm.exe": - when: - os: windows store: steam @@ -187130,7 +187679,7 @@ Ezaron Defense: installDir: Ezaron Defense: {} launch: - /Ezaron Defense.exe: + "/Ezaron Defense.exe": - when: - bit: 64 os: windows @@ -187141,7 +187690,7 @@ Ezy: installDir: Ezy: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -187151,11 +187700,11 @@ F-1 Drive: installDir: F-1 drive: {} launch: - /F-1_drive_launcher: + "/F-1_drive_launcher": - when: - os: linux store: steam - /F-1_drive_launcher.exe: + "/F-1_drive_launcher.exe": - when: - os: windows store: steam @@ -187167,41 +187716,41 @@ F-117A Nighthawk Stealth Fighter 2.0: installDir: F-117A Nighthawk Stealth Fighter: {} launch: - /dosbox_linux/daum/launch_F117A_game_daum.sh: + "/dosbox_linux/daum/launch_F117A_game_daum.sh": - when: - os: linux store: steam - workingDir: /dosbox_linux/daum - /dosbox_linux/launch_F117A_game.sh: + workingDir: "/dosbox_linux/daum" + "/dosbox_linux/launch_F117A_game.sh": - when: - os: linux store: steam - workingDir: /dosbox_linux - /dosbox_windows/daum/dosbox.exe: - - arguments: '-conf dosbox_F117A.conf -conf dosbox_F117A_launch_windows.conf -noconsole' + workingDir: "/dosbox_linux" + "/dosbox_windows/daum/dosbox.exe": + - arguments: "-conf dosbox_F117A.conf -conf dosbox_F117A_launch_windows.conf -noconsole" when: - os: windows store: steam - workingDir: /dosbox_windows/daum - /dosbox_windows/dosbox.exe: - - arguments: '-conf dosbox_F117A.conf -conf dosbox_F117A_launch_windows.conf -noconsole' + workingDir: "/dosbox_windows/daum" + "/dosbox_windows/dosbox.exe": + - arguments: "-conf dosbox_F117A.conf -conf dosbox_F117A_launch_windows.conf -noconsole" when: - os: windows store: steam - workingDir: /dosbox_windows + workingDir: "/dosbox_windows" steam: id: 328920 F-15 Strike Eagle: installDir: Strike Eagle: {} launch: - /DOSBox/dosbox.app/Contents/MacOS/DOSBox: - - arguments: '-conf dosbox.conf -conf osx.conf -noconsole' + "/DOSBox/dosbox.app/Contents/MacOS/DOSBox": + - arguments: "-conf dosbox.conf -conf osx.conf -noconsole" when: - os: mac store: steam - /dosbox/dosbox.exe: - - arguments: '-conf dosbox.conf -conf win.conf -noconsole' + "/dosbox/dosbox.exe": + - arguments: "-conf dosbox.conf -conf win.conf -noconsole" when: - os: windows store: steam @@ -187209,27 +187758,27 @@ F-15 Strike Eagle: id: 1703080 F-16 Multirole Fighter: files: - /F16.INP: + "/F16.INP": tags: - config when: - os: windows - /F16.SAV: + "/F16.SAV": tags: - config when: - os: windows - /F16.cfg: + "/F16.cfg": tags: - config when: - os: windows - /fslot*.cmp: + "/fslot*.cmp": tags: - save when: - os: windows - /fslot*.sav: + "/fslot*.sav": tags: - save when: @@ -187237,10 +187786,10 @@ F-16 Multirole Fighter: installDir: F-16 Multirole Fighter: {} launch: - /F16.EXE: + "/F16.EXE": - when: - store: steam - /FWE.EXE: + "/FWE.EXE": - when: - store: steam steam: @@ -187251,43 +187800,43 @@ F-19 Stealth Fighter: installDir: F-19 Stealth Fighter: {} launch: - /dosbox_linux/daum/launch_f19sf_game_daum.sh: + "/dosbox_linux/daum/launch_f19sf_game_daum.sh": - when: - os: linux store: steam - workingDir: /dosbox_linux/daum - /dosbox_linux/launch_f19sf_game.sh: + workingDir: "/dosbox_linux/daum" + "/dosbox_linux/launch_f19sf_game.sh": - when: - os: linux store: steam - workingDir: /dosbox_linux - /dosbox_windows/daum/dosbox.exe: - - arguments: '-conf dosbox_f19sf.conf -conf dosbox_f19sf_launch_windows.conf -noconsole' + workingDir: "/dosbox_linux" + "/dosbox_windows/daum/dosbox.exe": + - arguments: "-conf dosbox_f19sf.conf -conf dosbox_f19sf_launch_windows.conf -noconsole" when: - os: windows store: steam - workingDir: /dosbox_windows/daum - /dosbox_windows/dosbox.exe: - - arguments: '-conf dosbox_f19sf.conf -conf dosbox_f19sf_launch_windows.conf -noconsole' + workingDir: "/dosbox_windows/daum" + "/dosbox_windows/dosbox.exe": + - arguments: "-conf dosbox_f19sf.conf -conf dosbox_f19sf_launch_windows.conf -noconsole" when: - os: windows store: steam - workingDir: /dosbox_windows + workingDir: "/dosbox_windows" steam: id: 347250 F-22 Lightning 3: files: - /L3.INP: + "/L3.INP": tags: - config when: - os: windows - /L3.cfg: + "/L3.cfg": tags: - config when: - os: windows - /LSLOT*.sav: + "/LSLOT*.sav": tags: - save when: @@ -187295,54 +187844,54 @@ F-22 Lightning 3: installDir: F-22 Lightning 3: {} launch: - /Fwe.exe: + "/Fwe.exe": - when: - store: steam - /L3.exe: + "/L3.exe": - when: - store: steam steam: id: 32730 -'F-22: Air Dominance Fighter': +"F-22: Air Dominance Fighter": files: - /PROGRAM/game.cfg: + "/PROGRAM/game.cfg": tags: - config when: - os: windows - /PROGRAM/players/0: + "/PROGRAM/players/0": tags: - save when: - os: windows F.E.A.R.: files: - /Documents/Monolith Productions/FEAR/Save/Profile000/SinglePlayer: + "/Documents/Monolith Productions/FEAR/Save/Profile000/SinglePlayer": tags: - save when: - os: windows - /Documents/Monolith Productions/FEAR/settings.cfg: + "/Documents/Monolith Productions/FEAR/settings.cfg": tags: - config when: - os: windows - /Documents/TimeGate Studios/FEARXP/Save/Profile000/SinglePlayer: + "/Documents/TimeGate Studios/FEARXP/Save/Profile000/SinglePlayer": tags: - save when: - os: windows - /Documents/TimeGate Studios/FEARXP/settings.cfg: + "/Documents/TimeGate Studios/FEARXP/settings.cfg": tags: - config when: - os: windows - /Documents/TimeGate Studios/FEARXP2/Save/Profile000/SinglePlayer: + "/Documents/TimeGate Studios/FEARXP2/Save/Profile000/SinglePlayer": tags: - save when: - os: windows - /Documents/TimeGate Studios/FEARXP2/settings.cfg: + "/Documents/TimeGate Studios/FEARXP2/settings.cfg": tags: - config when: @@ -187355,14 +187904,14 @@ F.E.A.R.: installDir: FEAR Ultimate Shooter Edition: {} launch: - /FEAR.exe: + "/FEAR.exe": - when: - store: steam steam: id: 21090 -'F.E.A.R. 2: Project Origin': +"F.E.A.R. 2: Project Origin": files: - /WBGames/FEAR2/: + "/WBGames/FEAR2/": tags: - config - save @@ -187376,25 +187925,25 @@ F.E.A.R.: installDir: FEAR2: {} launch: - /FEAR2.exe: + "/FEAR2.exe": - when: - store: steam steam: id: 16450 F.E.A.R. 3: files: - /options.cfg: + "/options.cfg": tags: - config when: - os: windows - /userdata//21100/local: + "/userdata//21100/local": tags: - save when: - os: windows store: steam - /Day 1 Studios/FEAR3/SharedData.settings: + "/Day 1 Studios/FEAR3/SharedData.settings": tags: - config when: @@ -187404,14 +187953,14 @@ F.E.A.R. 3: installDir: F.E.A.R. 3: {} launch: - /F.E.A.R. 3.exe: + "/F.E.A.R. 3.exe": - when: - store: steam steam: id: 21100 F.E.A.R. Online: files: - /settings.cfg: + "/settings.cfg": tags: - config when: @@ -187419,8 +187968,8 @@ F.E.A.R. Online: installDir: FEAR Online: {} launch: - /Launcher.exe: - - arguments: '-steam' + "/Launcher.exe": + - arguments: "-steam" when: - os: windows store: steam @@ -187428,12 +187977,12 @@ F.E.A.R. Online: id: 223650 F.E.A.R. Perseus Mandate: files: - /Documents/TimeGate Studios/FEARXP2/Save/Profile000/SinglePlayer: + "/Documents/TimeGate Studios/FEARXP2/Save/Profile000/SinglePlayer": tags: - save when: - os: windows - /Documents/TimeGate Studios/FEARXP2/settings.cfg: + "/Documents/TimeGate Studios/FEARXP2/settings.cfg": tags: - config when: @@ -187443,35 +187992,35 @@ F.E.A.R. Perseus Mandate: installDir: FEAR Ultimate Shooter Edition: {} launch: - /FEARXP2/FEARXP2.exe: + "/FEARXP2/FEARXP2.exe": - when: - store: steam - workingDir: /FEARXP2 + workingDir: "/FEARXP2" steam: id: 21120 F.E.X (Forced Evolution Experiment): installDir: F.E.X (Forced Evolution Experiment): {} launch: - /F.E.X (Forced Evolution Experiment).app: + "/F.E.X (Forced Evolution Experiment).app": - when: - os: mac store: steam - /F.E.X (Forced Evolution Experiment).exe: + "/F.E.X (Forced Evolution Experiment).exe": - when: - bit: 32 os: windows store: steam steam: id: 655700 -'F.I.S.T.: Forged in Shadow Torch': +"F.I.S.T.: Forged in Shadow Torch": files: - /ZingangGame/Saved/Config/WindowsNoEditor: + "/ZingangGame/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /ZingangGame/Saved/SaveGames: + "/ZingangGame/Saved/SaveGames": tags: - save when: @@ -187479,7 +188028,7 @@ F.E.X (Forced Evolution Experiment): installDir: FISTGame: {} launch: - /ZingangGame.exe: + "/ZingangGame.exe": - when: - bit: 64 os: windows @@ -187488,7 +188037,7 @@ F.E.X (Forced Evolution Experiment): id: 1330470 F/A-18E Super Hornet: files: - /LOG: + "/LOG": tags: - save when: @@ -187498,26 +188047,26 @@ F/A-18E Super Hornet: installDir: FA-18E Super Hornet: {} launch: - /F18.exe: + "/F18.exe": - when: - os: windows store: steam - /Pilot Notes.pdf: + "/Pilot Notes.pdf": - when: - store: steam - /RefCard.pdf: + "/RefCard.pdf": - when: - store: steam steam: id: 776050 F1 2010: files: - /My Games/FormulaOne/hardwaresettings/hardware_settings_config.xml: + "/My Games/FormulaOne/hardwaresettings/hardware_settings_config.xml": tags: - config when: - os: windows - /My Games/FormulaOne/savegame: + "/My Games/FormulaOne/savegame": tags: - save when: @@ -187525,19 +188074,19 @@ F1 2010: installDir: F1 2010: {} launch: - /f1_2010.exe: + "/f1_2010.exe": - when: - store: steam steam: id: 44310 F1 2011: files: - /My Games/FormulaOne2011/savegame: + "/My Games/FormulaOne2011/savegame": tags: - save when: - os: windows - /My Games/FormulaOne2011/savegame/hardwaresettings: + "/My Games/FormulaOne2011/savegame/hardwaresettings": tags: - config when: @@ -187545,7 +188094,7 @@ F1 2011: installDir: F1 2011: {} launch: - /F1_2011.exe: + "/F1_2011.exe": - when: - store: steam steam: @@ -187554,20 +188103,20 @@ F1 2012: installDir: F1 2012: {} launch: - /F1_2012.exe: + "/F1_2012.exe": - when: - store: steam steam: id: 208500 F1 2013: files: - /userdata//223670/local/savegame: + "/userdata//223670/local/savegame": tags: - save when: - os: windows store: steam - /My Games/FormulaOne2013/hardwaresettings: + "/My Games/FormulaOne2013/hardwaresettings": tags: - config when: @@ -187575,11 +188124,11 @@ F1 2013: installDir: f12013: {} launch: - /F1 2013.app: + "/F1 2013.app": - when: - os: mac store: steam - /f1_2013.exe: + "/f1_2013.exe": - when: - os: windows store: steam @@ -187587,13 +188136,13 @@ F1 2013: id: 223670 F1 2014: files: - /userdata//226580/remote: + "/userdata//226580/remote": tags: - save when: - os: windows store: steam - /My Games/FormulaOne2014/hardwaresettings: + "/My Games/FormulaOne2014/hardwaresettings": tags: - config when: @@ -187601,7 +188150,7 @@ F1 2014: installDir: F1 2014: {} launch: - /f1_2014.exe: + "/f1_2014.exe": - when: - os: windows store: steam @@ -187609,17 +188158,17 @@ F1 2014: id: 226580 F1 2015: files: - /userdata//286570/local/savegame: + "/userdata//286570/local/savegame": tags: - save when: - store: steam - /My Games/F1 2015/hardware_settings_config.xml: + "/My Games/F1 2015/hardware_settings_config.xml": tags: - config when: - os: windows - /feral-interactive/F1 2015: + "/feral-interactive/F1 2015": tags: - config when: @@ -187627,15 +188176,15 @@ F1 2015: installDir: F1 2015: {} launch: - /F1 2015.app: + "/F1 2015.app": - when: - os: mac store: steam - /F12015.sh: + "/F12015.sh": - when: - os: linux store: steam - /F1_2015.exe: + "/F1_2015.exe": - when: - bit: 64 os: windows @@ -187644,12 +188193,12 @@ F1 2015: id: 286570 F1 2016: files: - /userdata//391040/remote/savegame: + "/userdata//391040/remote/savegame": tags: - save when: - store: steam - /My Games/F1 2016/hardware_settings_config.xml: + "/My Games/F1 2016/hardware_settings_config.xml": tags: - config when: @@ -187660,11 +188209,11 @@ F1 2016: installDir: F1 2016: {} launch: - /F1 2016.app: + "/F1 2016.app": - when: - os: mac store: steam - /F1_2016.exe: + "/F1_2016.exe": - when: - os: windows store: steam @@ -187672,17 +188221,17 @@ F1 2016: id: 391040 F1 2017: files: - /.local/share/feral-interactive/F1 2017/SaveData/feral_bench/hardwaresettings/hardware_settings_config.xml: + "/.local/share/feral-interactive/F1 2017/SaveData/feral_bench/hardwaresettings/hardware_settings_config.xml": tags: - config when: - os: linux - /userdata//515220/remote/savegame: + "/userdata//515220/remote/savegame": tags: - save when: - store: steam - /My Games/F1 2017/hardwaresettings/hardware_settings_config.xml: + "/My Games/F1 2017/hardwaresettings/hardware_settings_config.xml": tags: - config when: @@ -187693,15 +188242,15 @@ F1 2017: installDir: F1 2017: {} launch: - /F1 2017.app: + "/F1 2017.app": - when: - os: mac store: steam - /F12017.sh: + "/F12017.sh": - when: - os: linux store: steam - /F1_2017.exe: + "/F1_2017.exe": - when: - os: windows store: steam @@ -187709,13 +188258,13 @@ F1 2017: id: 515220 F1 2018: files: - /userdata//737800: + "/userdata//737800": tags: - save when: - os: windows store: steam - /My Games/F1 2018: + "/My Games/F1 2018": tags: - config when: @@ -187726,12 +188275,12 @@ F1 2018: id: 737800 F1 2019: files: - /userdata//928600/remote/savegame: + "/userdata//928600/remote/savegame": tags: - save when: - store: steam - /My Games/F1 2019/hardwaresettings/hardware_settings_config.xml: + "/My Games/F1 2019/hardwaresettings/hardware_settings_config.xml": tags: - config when: @@ -187742,13 +188291,13 @@ F1 2019: id: 928600 F1 2020: files: - /userdata//1080110/remote: + "/userdata//1080110/remote": tags: - save when: - os: windows store: steam - /My Games/F1 2020/hardwaresettings/hardware_settings_config.xml: + "/My Games/F1 2020/hardwaresettings/hardware_settings_config.xml": tags: - config when: @@ -187768,13 +188317,13 @@ F1 2021: id: 1134570 F1 22: files: - /userdata//1692250/remote: + "/userdata//1692250/remote": tags: - save when: - os: windows store: steam - /My Games/F1 22/hardwaresettings/hardware_settings_config.xml: + "/My Games/F1 22/hardwaresettings/hardware_settings_config.xml": tags: - config when: @@ -187785,7 +188334,7 @@ F1 22: installDir: F1 22: {} launch: - /F1_22.exe: + "/F1_22.exe": - when: - os: windows store: steam @@ -187793,13 +188342,13 @@ F1 22: id: 1692250 F1 23: files: - /userdata//2108330/remote: + "/userdata//2108330/remote": tags: - save when: - os: windows store: steam - /My Games/F1 23/hardwaresettings: + "/My Games/F1 23/hardwaresettings": tags: - config when: @@ -187807,26 +188356,26 @@ F1 23: installDir: F1 23: {} launch: - /F1_23.exe: + "/F1_23.exe": - when: - bit: 64 os: windows store: steam steam: id: 2108330 -F1 Challenge '99-'02: +"F1 Challenge '99-'02": files: - /Config.ini: + "/Config.ini": tags: - config when: - os: windows - '/Save/[profile name]': + "/Save/[profile name]": tags: - save when: - os: windows - '/Save/[profile name]/[profile name].plr': + "/Save/[profile name]/[profile name].plr": tags: - config when: @@ -187835,7 +188384,7 @@ F1 Chequered Flag: installDir: F1 Chequered Flag: {} launch: - /F-1.exe: + "/F-1.exe": - when: - os: windows store: steam @@ -187843,12 +188392,12 @@ F1 Chequered Flag: id: 371600 F1 Manager 2022: files: - /F1Manager22/Saved/Config/WindowsNoEditor: + "/F1Manager22/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /F1Manager22/Saved/SaveGames: + "/F1Manager22/Saved/SaveGames": tags: - save when: @@ -187856,7 +188405,7 @@ F1 Manager 2022: installDir: F1Manager2022: {} launch: - /F1Manager22.exe: + "/F1Manager22.exe": - when: - bit: 64 os: windows @@ -187865,17 +188414,17 @@ F1 Manager 2022: id: 1708520 F1 Manager 2023: files: - /F1Manager23/Saved/SaveGames: + "/F1Manager23/Saved/SaveGames": tags: - save when: - os: windows - /F1Manager23/Saved/Config/WindowsNoEditor: + "/F1Manager23/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /F1Manager23/Saved/SaveGames: + "/F1Manager23/Saved/SaveGames": tags: - save when: @@ -187886,20 +188435,20 @@ F1 Manager 2023: installDir: F1 Manager 2023: {} launch: - /F1Manager23.exe: + "/F1Manager23.exe": - when: - store: steam steam: id: 2287220 F1 Race Stars: files: - /userdata//203680/local/hardwareconfig: + "/userdata//203680/local/hardwareconfig": tags: - config when: - os: windows store: steam - /userdata//203680/remote/gamedata/Profile/Profile: + "/userdata//203680/remote/gamedata/Profile/Profile": tags: - save when: @@ -187908,7 +188457,7 @@ F1 Race Stars: installDir: f1 race stars: {} launch: - /f1racestars.exe: + "/f1racestars.exe": - when: - store: steam steam: @@ -187920,26 +188469,26 @@ F18 Carrier Landing: id: 1049370 FAITH: files: - /FAITH_v1_4_0_spriteOptimizationTest/SAV_FAITH_DX_itch_v1-4.dat: + "/FAITH_v1_4_0_spriteOptimizationTest/SAV_FAITH_DX_itch_v1-4.dat": tags: - save when: - os: windows -'FAITH: Chapter II': +"FAITH: Chapter II": files: - /FAITH_CHII_v1_2_2019_07_23/sav_FAITHchII_v1-2.dat: + "/FAITH_CHII_v1_2_2019_07_23/sav_FAITHchII_v1-2.dat": tags: - save when: - os: windows -'FAITH: The Unholy Trinity': +"FAITH: The Unholy Trinity": files: - /FAITH: + "/FAITH": tags: - save when: - os: windows - /FAITH/UTconfigs.csv: + "/FAITH/UTconfigs.csv": tags: - config when: @@ -187949,7 +188498,7 @@ FAITH: installDir: FAITH: {} launch: - /FAITH.exe: + "/FAITH.exe": - when: - os: windows store: steam @@ -187959,11 +188508,11 @@ FALL: installDir: FALL: {} launch: - /FALL.exe: + "/FALL.exe": - when: - os: windows store: steam - /game.exe: + "/game.exe": - when: - store: steam steam: @@ -187972,8 +188521,8 @@ FALL 坠落之后: installDir: FALL: {} launch: - /FALL.exe: - - arguments: '--in-process-gpu' + "/FALL.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam @@ -187988,22 +188537,22 @@ FANTAVISION 202X: installDir: Fantavision202X: {} launch: - /fv.exe: + "/fv.exe": - when: - bit: 64 os: windows store: steam - workingDir: /fv/Binaries/Win64 + workingDir: "/fv/Binaries/Win64" steam: id: 2353280 -'FAR: Changing Tides': +"FAR: Changing Tides": files: - /AppData/LocalLow/Okomotive/FarChangingTides: + "/AppData/LocalLow/Okomotive/FarChangingTides": tags: - save when: - os: windows - /Packages/FrontierDevelopmentsPlc.FARChangingTidesWindowsEdi_ft442cafaz8hg/SystemAppData/wgs/: + "/Packages/FrontierDevelopmentsPlc.FARChangingTidesWindowsEdi_ft442cafaz8hg/SystemAppData/wgs/": tags: - save when: @@ -188015,8 +188564,8 @@ FANTAVISION 202X: installDir: FAR Changing Tides: {} launch: - /FarChangingTides.exe: - - arguments: '-platform-steam' + "/FarChangingTides.exe": + - arguments: "-platform-steam" when: - os: windows store: steam @@ -188026,20 +188575,20 @@ FANTAVISION 202X: - config steam: id: 1570010 -'FAR: Lone Sails': +"FAR: Lone Sails": files: - /AppData/LocalLow/Okomotive/FarLoneSails: + "/AppData/LocalLow/Okomotive/FarLoneSails": tags: - save when: - os: windows - /Library/Application Support/Okomotive/FarLoneSails: + "/Library/Application Support/Okomotive/FarLoneSails": tags: - config - save when: - os: mac - /userdata//609320/remote: + "/userdata//609320/remote": tags: - save when: @@ -188049,13 +188598,13 @@ FANTAVISION 202X: installDir: FAR Lone Sails: {} launch: - /Game/FarLoneSails.app/Contents/MacOS/FarLoneSails: - - arguments: '-platform-steam' + "/Game/FarLoneSails.app/Contents/MacOS/FarLoneSails": + - arguments: "-platform-steam" when: - os: mac store: steam - /Game/FarLoneSails.exe: - - arguments: '-platform-steam' + "/Game/FarLoneSails.exe": + - arguments: "-platform-steam" when: - os: windows store: steam @@ -188065,21 +188614,21 @@ FANTAVISION 202X: - config steam: id: 609320 -'FARIA: Ghosts of the Stream': +"FARIA: Ghosts of the Stream": installDir: FARIA Ghosts of the Stream: {} launch: - /Ghosts of the Stream.exe: + "/Ghosts of the Stream.exe": - when: - store: steam steam: id: 504670 -'FARIA: Starfall': +"FARIA: Starfall": installDir: FARIA Starfall: {} launch: - /Starfall.exe: - - arguments: '--in-process-gpu' + "/Starfall.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam @@ -188087,22 +188636,24 @@ FANTAVISION 202X: id: 696440 FATE: files: - /WildTangent/Fate/Persistent/SAVE: + "/WildTangent/Fate/Persistent/SAVE": tags: - save when: - - store: gog - /WildTangent/Fate/Persistent/config.dat: - tags: - - config - when: - - store: gog - /WildTangent/FateSteam/Persistent/config.dat: + - os: windows + store: gog + "/WildTangent/Fate/Persistent/config.dat": tags: - config when: - os: windows - /WildTangent/Fatesteam/persistent/SAVE: + store: gog + "/WildTangent/FateSteam/Persistent/config.dat": + tags: + - config + when: + - os: windows + "/WildTangent/Fatesteam/persistent/SAVE": tags: - save when: @@ -188112,14 +188663,14 @@ FATE: installDir: FATE: {} launch: - /fate.exe: + "/fate.exe": - when: - store: steam steam: id: 246840 -'FATE: The Cursed King': +"FATE: The Cursed King": files: - /WildTangent/FateCursedKingSteam/Persistent/SAVE: + "/WildTangent/FateCursedKingSteam/Persistent/SAVE": tags: - save when: @@ -188129,29 +188680,29 @@ FATE: installDir: FATE The Cursed King: {} launch: - /Fate.exe: + "/Fate.exe": - when: - store: steam steam: id: 303690 -'FATE: The Traitor Soul': +"FATE: The Traitor Soul": gog: id: 1595490147 installDir: FATE The Traitor Soul: {} launch: - /fate.exe: + "/fate.exe": - when: - store: steam steam: id: 303680 -'FATE: Undiscovered Realms': +"FATE: Undiscovered Realms": gog: id: 1128601888 installDir: FATE Undiscovered Realms: {} launch: - /fate.exe: + "/fate.exe": - when: - store: steam steam: @@ -188159,19 +188710,19 @@ FATE: FBI Mania: steam: id: 569840 -'FBI: Hostage Rescue': +"FBI: Hostage Rescue": registry: HKEY_LOCAL_MACHINE/SOFTWARE/WOW6432Node/Idol FX/Hostage Rescue: tags: - config -'FEAST: Book One «Family Ties»': +"FEAST: Book One «Family Ties»": files: - /renpy/FEAST-1487488210/*.save: + "/renpy/FEAST-1487488210/*.save": tags: - save when: - os: windows - /renpy/FEAST-1487488210/persistent: + "/renpy/FEAST-1487488210/persistent": tags: - config when: @@ -188179,7 +188730,7 @@ FBI Mania: installDir: FEAST Book One Family Ties: {} launch: - /FEAST.exe: + "/FEAST.exe": - when: - os: windows store: steam @@ -188189,7 +188740,7 @@ FEB - Brazilian Elite Force: installDir: FEB - Brazilian Elite Force: {} launch: - /FEB.exe: + "/FEB.exe": - when: - store: steam steam: @@ -188198,7 +188749,7 @@ FIA European Truck Racing Championship: installDir: TruckRacingChampionship: {} launch: - /TruckRacer.exe: + "/TruckRacer.exe": - when: - bit: 64 os: windows @@ -188207,7 +188758,7 @@ FIA European Truck Racing Championship: id: 940580 FIFA 07: files: - /FIFA 07: + "/FIFA 07": tags: - config - save @@ -188219,7 +188770,7 @@ FIFA 07: - config FIFA 08: files: - /FIFA 08: + "/FIFA 08": tags: - config - save @@ -188231,7 +188782,7 @@ FIFA 08: - config FIFA 09: files: - /FIFA 09: + "/FIFA 09": tags: - config - save @@ -188243,7 +188794,7 @@ FIFA 09: - config FIFA 11: files: - /FIFA 11: + "/FIFA 11": tags: - config - save @@ -188255,7 +188806,7 @@ FIFA 11: - config FIFA 12: files: - /FIFA 12: + "/FIFA 12": tags: - config - save @@ -188263,7 +188814,7 @@ FIFA 12: - os: windows FIFA 13: files: - /FIFA 13: + "/FIFA 13": tags: - config - save @@ -188271,7 +188822,7 @@ FIFA 13: - os: windows FIFA 14: files: - /FIFA 14: + "/FIFA 14": tags: - config - save @@ -188279,7 +188830,7 @@ FIFA 14: - os: windows FIFA 15: files: - /FIFA 15: + "/FIFA 15": tags: - config - save @@ -188287,7 +188838,7 @@ FIFA 15: - os: windows FIFA 16: files: - /FIFA 16: + "/FIFA 16": tags: - config - save @@ -188295,14 +188846,14 @@ FIFA 16: - os: windows FIFA 17: files: - /FIFA 17: + "/FIFA 17": tags: - config when: - os: windows FIFA 18: files: - /FIFA 18: + "/FIFA 18": tags: - config - save @@ -188310,7 +188861,7 @@ FIFA 18: - os: windows FIFA 19: files: - /FIFA 19: + "/FIFA 19": tags: - config - save @@ -188318,7 +188869,7 @@ FIFA 19: - os: windows FIFA 20: files: - /FIFA 20: + "/FIFA 20": tags: - config - save @@ -188326,7 +188877,7 @@ FIFA 20: - os: windows FIFA 2001: files: - /EA SPORTS/FIFA 2001/user: + "/EA SPORTS/FIFA 2001/user": tags: - save when: @@ -188338,12 +188889,12 @@ FIFA 21: id: 1313860 FIFA 22: files: - /FIFA 22: + "/FIFA 22": tags: - config when: - os: windows - /FIFA 22/settings: + "/FIFA 22/settings": tags: - save when: @@ -188359,7 +188910,7 @@ FIFA 23: id: 1811260 FIFA 99: files: - /USER: + "/USER": tags: - save when: @@ -188370,7 +188921,7 @@ FIFA 99: - config FIFA Football 2002: files: - /user: + "/user": tags: - save when: @@ -188383,22 +188934,22 @@ FIFA Manager 09: installDir: FIFA Manager 09: {} launch: - /Support/EA Help/Electronic_Arts_Technical_Support.htm: + "/Support/EA Help/Electronic_Arts_Technical_Support.htm": - when: - store: steam - /runme.exe: + "/runme.exe": - when: - store: steam steam: id: 17400 FIFA Manager 10: files: - /FIFA MANAGER 10/Config: + "/FIFA MANAGER 10/Config": tags: - config when: - os: windows - /FIFA MANAGER 10/Data/SaveGames: + "/FIFA MANAGER 10/Data/SaveGames": tags: - save when: @@ -188406,22 +188957,22 @@ FIFA Manager 10: installDir: FIFA Manager 10: {} launch: - /Manager10.exe: + "/Manager10.exe": - when: - store: steam - /Support/EA Help/Electronic_Arts_Technical_Support.htm: + "/Support/EA Help/Electronic_Arts_Technical_Support.htm": - when: - store: steam steam: id: 24850 FIFA Manager 11: files: - /FIFA MANAGER 11/Config: + "/FIFA MANAGER 11/Config": tags: - config when: - os: windows - /FIFA MANAGER 11/Data/SaveGames: + "/FIFA MANAGER 11/Data/SaveGames": tags: - save when: @@ -188429,60 +188980,60 @@ FIFA Manager 11: installDir: FIFA Manager 11: {} launch: - /Manager11.exe: + "/Manager11.exe": - when: - store: steam - /Support/EA Help/Electronic_Arts_Technical_Support.htm: + "/Support/EA Help/Electronic_Arts_Technical_Support.htm": - when: - store: steam steam: id: 47850 FIFA Manager 12: files: - /FIFA Manager 12: + "/FIFA Manager 12": tags: - save when: - os: windows - /FIFA Manager 12/Config/user.ini: + "/FIFA Manager 12/Config/user.ini": tags: - config when: - os: windows FIFA Manager 13: files: - /FIFA Manager 13: + "/FIFA Manager 13": tags: - save when: - os: windows - /FIFA Manager 13/Config/user.ini: + "/FIFA Manager 13/Config/user.ini": tags: - config when: - os: windows FIFA Manager 14: files: - /FIFA MANAGER 14/Config: + "/FIFA MANAGER 14/Config": tags: - config when: - os: windows - /FIFA MANAGER 14/Data/SaveGames: + "/FIFA MANAGER 14/Data/SaveGames": tags: - save when: - os: windows FIFA World Cup 98: files: - /USER: + "/USER": tags: - save when: - os: windows -'FIFA: Road to World Cup 98': +"FIFA: Road to World Cup 98": files: - /USER: + "/USER": tags: - save when: @@ -188496,7 +189047,7 @@ FIGHTWORLD: installDir: FIGHTWORLD: {} launch: - /Fightworld.exe: + "/Fightworld.exe": - when: - os: windows store: steam @@ -188511,12 +189062,12 @@ FIM Speedway Grand Prix 15: installDir: FIM Speedway Grand Prix 2015: {} launch: - /32BitError.exe: + "/32BitError.exe": - when: - bit: 32 os: windows store: steam - /FIMSGP15.exe: + "/FIMSGP15.exe": - when: - bit: 64 os: windows @@ -188532,7 +189083,7 @@ FIREFLIES: installDir: FirefliesGame: {} launch: - /Firefly421.exe: + "/Firefly421.exe": - when: - os: windows store: steam @@ -188542,11 +189093,11 @@ FIREGROUND: installDir: FIREGROUND: {} launch: - /Fireground.exe: + "/Fireground.exe": - when: - os: windows store: steam - /Fireground.x86_64: + "/Fireground.x86_64": - when: - os: linux store: steam @@ -188561,7 +189112,7 @@ FIT Food: installDir: FIT Food: {} launch: - /FITFood.exe: + "/FITFood.exe": - when: - os: windows store: steam @@ -188571,7 +189122,7 @@ FIT IN: installDir: FIT IN: {} launch: - '/${fit_in}.exe': + "/${fit_in}.exe": - when: - os: windows store: steam @@ -188586,7 +189137,7 @@ FLAGFIGHTS: installDir: FLAGFIGHTS EA 0.1: {} launch: - /FLAGFIGHTS.exe: + "/FLAGFIGHTS.exe": - when: - bit: 64 os: windows @@ -188600,11 +189151,11 @@ FLATLAND Vol.1: installDir: Flatland Vol.1: {} launch: - /FLATLAND.app: + "/FLATLAND.app": - when: - os: mac store: steam - /FlatLand.exe: + "/FlatLand.exe": - when: - os: windows store: steam @@ -188614,7 +189165,7 @@ FLS: installDir: FLS: {} launch: - /FLS.exe: + "/FLS.exe": - when: - os: windows store: steam @@ -188624,7 +189175,7 @@ FLYING SHOT: installDir: FLYING SHOT: {} launch: - /FlyingShot.exe: + "/FlyingShot.exe": - when: - os: windows store: steam @@ -188635,12 +189186,12 @@ FMath: id: 754130 FNaF World: files: - /MMFApplications/fnafw*: + "/MMFApplications/fnafw*": tags: - save when: - os: windows - /MMFApplications/info: + "/MMFApplications/info": tags: - save when: @@ -188648,7 +189199,7 @@ FNaF World: installDir: FNaF World: {} launch: - /FNaF_World.exe: + "/FNaF_World.exe": - when: - os: windows store: steam @@ -188656,12 +189207,12 @@ FNaF World: id: 427920 FOCUS on YOU: files: - /ProjectYUKI/Saved/Config/WindowsNoEditor: + "/ProjectYUKI/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /ProjectYUKI/Saved/Steam/SaveGames: + "/ProjectYUKI/Saved/Steam/SaveGames": tags: - save when: @@ -188679,7 +189230,7 @@ FOREST OF ELF: installDir: FOREST OF ELF: {} launch: - /Forest of ELF.exe: + "/Forest of ELF.exe": - when: - os: windows store: steam @@ -188689,7 +189240,7 @@ FORT: installDir: Fort: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -188699,7 +189250,7 @@ FPS Chess: installDir: FPS Chess: {} launch: - /FPSChess.exe: + "/FPSChess.exe": - when: - store: steam steam: @@ -188708,16 +189259,16 @@ FPS Training: installDir: FPS Training: {} launch: - /FPSTraining.exe: + "/FPSTraining.exe": - when: - store: steam steam: id: 971460 -'FPS: Fun Puzzle Shooter': +"FPS: Fun Puzzle Shooter": installDir: FPS - Fun Puzzle Shooter: {} launch: - /FunPuzzleShooter.exe: + "/FunPuzzleShooter.exe": - when: - os: windows store: steam @@ -188727,7 +189278,7 @@ FPSBois: installDir: FPSBois: {} launch: - /fps2018.exe: + "/fps2018.exe": - when: - os: windows store: steam @@ -188737,7 +189288,7 @@ FPV Air 2: installDir: FPV Air 2: {} launch: - /FPVAir2.exe: + "/FPVAir2.exe": - when: - bit: 64 os: windows @@ -188748,17 +189299,21 @@ FPV Air Tracks: installDir: Drone Racing: {} launch: - /DroneRacing.exe: + "/DroneRacing.exe": - when: - os: windows store: steam + - os: mac + store: steam + - os: linux + store: steam steam: id: 461680 FPV Drone Simulator: installDir: FPV Drone Simulator: {} launch: - /FPV drone simulator.exe: + "/FPV drone simulator.exe": - when: - bit: 64 os: windows @@ -188769,11 +189324,11 @@ FPV Freerider: installDir: FPV Freerider: {} launch: - /FPVFreerider.app: + "/FPVFreerider.app": - when: - os: mac store: steam - /FPVFreerider.exe: + "/FPVFreerider.exe": - when: - os: windows store: steam @@ -188783,11 +189338,11 @@ FPV Freerider Recharged: installDir: FPV Freerider Recharged: {} launch: - /FPVFreerider_Recharged.app: + "/FPVFreerider_Recharged.app": - when: - os: mac store: steam - /FPVFreerider_Recharged.exe: + "/FPVFreerider_Recharged.exe": - when: - os: windows store: steam @@ -188801,11 +189356,11 @@ FRACTER: installDir: Fracter: {} launch: - /FRACTER.app/Contents/MacOS/FRACTER: + "/FRACTER.app/Contents/MacOS/FRACTER": - when: - os: mac store: steam - /Fracter.exe: + "/Fracter.exe": - when: - bit: 64 os: windows @@ -188816,55 +189371,50 @@ FRENZY PLANTS: installDir: FRENZY PLANTS: {} launch: - /FRENZY PLANTS.exe: + "/FRENZY PLANTS.exe": - when: - os: windows store: steam steam: id: 1118930 -'FSR: French Street Racing': +"FSR: French Street Racing": files: - /City Interactive/FSR/Config.cfg: + "/City Interactive/FSR/Config.cfg": tags: - config when: - os: windows - /City Interactive/FSR/Misc: - tags: - - save - when: - - os: windows FSX SpacePort: steam: id: 776380 -'FTL: Faster Than Light': +"FTL: Faster Than Light": files: - /Library/Application Support/fasterthanlight: + "/Library/Application Support/fasterthanlight": tags: - save when: - os: mac - /Library/Application Support/fasterthanlight/settings.ini: + "/Library/Application Support/fasterthanlight/settings.ini": tags: - config when: - os: mac - /FasterThanLight/settings.ini: + "/FasterThanLight/settings.ini": tags: - config when: - os: windows - /My Games/FasterThanLight: + "/My Games/FasterThanLight": tags: - save when: - os: windows - /FasterThanLight: + "/FasterThanLight": tags: - save when: - os: linux - /FasterThanLight/settings.ini: + "/FasterThanLight/settings.ini": tags: - config when: @@ -188874,16 +189424,16 @@ FSX SpacePort: installDir: FTL Faster Than Light: {} launch: - /FTL: + "/FTL": - when: - os: linux store: steam - workingDir: /data - /FTL.app: + workingDir: "/data" + "/FTL.app": - when: - os: mac store: steam - /FTLGame.exe: + "/FTLGame.exe": - when: - os: windows store: steam @@ -188896,11 +189446,11 @@ FULFILLMENT: installDir: FULFILLMENT: {} launch: - /Fulfillment: + "/Fulfillment": - when: - os: linux store: steam - /Fulfillment.exe: + "/Fulfillment.exe": - when: - os: windows store: steam @@ -188915,12 +189465,12 @@ FUNGI: installDir: FUNGI: {} launch: - /Fungi.exe: + "/Fungi.exe": - when: - bit: 64 os: windows store: steam - /fungi.app: + "/fungi.app": - when: - os: mac store: steam @@ -188928,7 +189478,7 @@ FUNGI: id: 1197060 FX Fighter Turbo: files: - /Fight: + "/Fight": tags: - config - save @@ -188938,7 +189488,7 @@ FX Football - The Manager for Every Football Fan: installDir: FX Football: {} launch: - /FXFootball.exe: + "/FXFootball.exe": - when: - store: steam steam: @@ -188948,35 +189498,35 @@ FYD: id: 760700 Fable Anniversary: files: - /WellingtonGame/Config: + "/WellingtonGame/Config": tags: - config when: - os: windows - /My Games/FableHD/saves: + "/My Games/FableHD/saves": tags: - save when: - os: windows id: steamExtra: - - 319120 - 315150 + - 319120 installDir: Fable Anniversary: {} launch: - /binaries/Win32/Fable Anniversary.exe: + "/binaries/Win32/Fable Anniversary.exe": - when: - os: windows store: steam - workingDir: /binaries/Win32 + workingDir: "/binaries/Win32" steam: id: 288470 Fable Fortune: installDir: Fortune: {} launch: - /Fortune.exe: + "/Fortune.exe": - when: - os: windows store: steam @@ -188984,12 +189534,12 @@ Fable Fortune: id: 469830 Fable III: files: - /Saved Games/Lionhead Studios/Fable 3: + "/Saved Games/Lionhead Studios/Fable 3": tags: - save when: - os: windows - /Lionhead Studios/Fable 3: + "/Lionhead Studios/Fable 3": tags: - config when: @@ -189005,7 +189555,7 @@ Fable III: installDir: Fable 3: {} launch: - /FableLauncher.exe: + "/FableLauncher.exe": - when: - store: steam steam: @@ -189017,20 +189567,20 @@ Fable of the Sword: installDir: Fable of the Sword: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam steam: id: 787370 -'Fable: The Lost Chapters': +"Fable: The Lost Chapters": files: - /My Games/Fable/Saves: + "/My Games/Fable/Saves": tags: - save when: - os: windows - /My Games/Fable/Saves//Profile.bin: + "/My Games/Fable/Saves//Profile.bin": tags: - config when: @@ -189038,7 +189588,7 @@ Fable of the Sword: installDir: Fable The Lost Chapters: {} launch: - /Fable.exe: + "/Fable.exe": - when: - store: steam steam: @@ -189047,7 +189597,7 @@ Fables of Talumos: installDir: Fables of Talumos: {} launch: - /Fables of Talumos.exe: + "/Fables of Talumos.exe": - when: - os: windows store: steam @@ -189057,7 +189607,7 @@ Fabric: installDir: Fabric: {} launch: - /fabric.exe: + "/fabric.exe": - when: - os: windows store: steam @@ -189067,27 +189617,27 @@ Fabula Mortis: installDir: Fabula Mortis: {} launch: - /Binaries/Win32/FabulaMortis.exe: + "/Binaries/Win32/FabulaMortis.exe": - when: - os: windows store: steam steam: id: 320790 -'Fabular: Once upon a Spacetime': +"Fabular: Once upon a Spacetime": gog: id: 1801054520 installDir: Fabular Once upon a Spacetime: {} launch: - /Fabular.exe: + "/Fabular.exe": - when: - os: windows store: steam steam: id: 645720 -'Fabular: Prologue': +"Fabular: Prologue": files: - /SpiritusGames/FabularPrologue: + "/SpiritusGames/FabularPrologue": tags: - save when: @@ -189095,60 +189645,60 @@ Fabula Mortis: installDir: FabularPrologue: {} launch: - /FabularPrologue.exe: + "/FabularPrologue.exe": - when: - bit: 64 os: windows store: steam steam: id: 2060550 -Fabulous - Angela's Fashion Fever: +"Fabulous - Angela's Fashion Fever": installDir: - Fabulous - Angela's Fashion Fever: {} + "Fabulous - Angela's Fashion Fever": {} launch: - /Fabulous 2.app/Contents/MacOS/Fabulous 2 OSX Steam: + "/Fabulous 2.app/Contents/MacOS/Fabulous 2 OSX Steam": - when: - os: mac store: steam - /Fabulous2.exe: + "/Fabulous2.exe": - when: - os: windows store: steam steam: id: 540060 -Fabulous - Angela's High School Reunion: +"Fabulous - Angela's High School Reunion": installDir: - Fabulous - Angela's High School Reunion: {} + "Fabulous - Angela's High School Reunion": {} launch: - /Fabulous 3.app/Contents/MacOS/Game OSX Steam: + "/Fabulous 3.app/Contents/MacOS/Game OSX Steam": - when: - os: mac store: steam - /Fabulous3.exe: + "/Fabulous3.exe": - when: - os: windows store: steam steam: id: 619810 -Fabulous - Angela's True Colors: +"Fabulous - Angela's True Colors": installDir: Fabulous 5: {} launch: - /Fabulous5 OSX Steam.app/Contents/MacOS/Fabulous5 OSX Steam: + "/Fabulous5 OSX Steam.app/Contents/MacOS/Fabulous5 OSX Steam": - when: - os: mac store: steam - /Fabulous5_Steam.exe: + "/Fabulous5_Steam.exe": - when: - os: windows store: steam steam: id: 1005050 -Fabulous - Angela's Wedding Disaster: +"Fabulous - Angela's Wedding Disaster": installDir: Fabulous 4: {} launch: - /Fabulous4.exe: + "/Fabulous4.exe": - when: - os: windows store: steam @@ -189158,11 +189708,11 @@ Fabulous - New York to LA: installDir: Fabulous 6: {} launch: - /Fabulous6 OSX Steam.app/Contents/MacOS/Fabulous6 OSX Steam: + "/Fabulous6 OSX Steam.app/Contents/MacOS/Fabulous6 OSX Steam": - when: - os: mac store: steam - /Fabulous6_Steam.exe: + "/Fabulous6_Steam.exe": - when: - os: windows store: steam @@ -189172,7 +189722,7 @@ Fabulous Food Truck: installDir: Fabulous Food Truck: {} launch: - /FabulousFoodTruck.exe: + "/FabulousFoodTruck.exe": - when: - os: windows store: steam @@ -189187,15 +189737,15 @@ Face It - A game to fight inner demons: installDir: Face It - A game to fight inner demons: {} launch: - /FaceIt.app: + "/FaceIt.app": - when: - os: mac store: steam - /FaceIt.exe: + "/FaceIt.exe": - when: - os: windows store: steam - /FaceIt.x86: + "/FaceIt.x86": - when: - os: linux store: steam @@ -189203,7 +189753,7 @@ Face It - A game to fight inner demons: id: 364050 Face Noir: files: - /Saved Games/Face Noir: + "/Saved Games/Face Noir": tags: - save when: @@ -189211,7 +189761,7 @@ Face Noir: installDir: Face Noir: {} launch: - /Face Noir.exe: + "/Face Noir.exe": - when: - os: windows store: steam @@ -189229,9 +189779,9 @@ Face Your Demons: Faceless: steam: id: 243240 -'Faces of Illusion: The Twin Phantoms': +"Faces of Illusion: The Twin Phantoms": files: - /userdata//558340/remote/profile: + "/userdata//558340/remote/profile": tags: - save when: @@ -189239,48 +189789,37 @@ Faceless: installDir: Faces of Illusion The Twin Phantoms: {} launch: - /FacesOfIllusion.exe: + "/FacesOfIllusion.exe": - when: - os: windows store: steam - /FacesOfIllusion_amd64: + "/FacesOfIllusion_amd64": - when: - bit: 64 os: linux store: steam - /FacesOfIllusion_i386: + "/FacesOfIllusion_i386": - when: - bit: 32 os: linux store: steam - /mac_steam.app/Contents/MacOS/mac_steam: + "/mac_steam.app/Contents/MacOS/mac_steam": - when: - os: mac store: steam steam: id: 558340 Faces of War: - files: - /My Games/faces of war/profiles/*/options: - tags: - - config - when: - - os: windows - /My Games/faces of war/profiles/*/save: - tags: - - save - when: - - os: windows gog: id: 1428586504 installDir: Faces of War: {} launch: - /facesofwar.exe: + "/facesofwar.exe": - when: - os: windows store: steam - /fowed.exe: + "/fowed.exe": - when: - os: windows store: steam @@ -189293,20 +189832,20 @@ Faceted Flight: id: 355230 Facewound: files: - /settings: + "/settings": tags: - config when: - os: windows -'Factions: Origins of Malu': +"Factions: Origins of Malu": installDir: Origins of Malu: {} launch: - /Blueprint3RDP.exe: + "/Blueprint3RDP.exe": - when: - os: windows store: steam - /Blueprint3RDP/Binaries/Linux/Blueprint3RDP: + "/Blueprint3RDP/Binaries/Linux/Blueprint3RDP": - when: - os: linux store: steam @@ -189314,49 +189853,49 @@ Facewound: id: 339530 Factorio: files: - /game/blueprint-storage.dat: + "/game/blueprint-storage.dat": tags: - config when: - os: windows - os: mac - os: linux - /game/config: + "/game/config": tags: - config when: - os: linux - /game/saves: + "/game/saves": tags: - save when: - os: linux - /.factorio/config: + "/.factorio/config": tags: - config when: - os: linux - /.factorio/saves: + "/.factorio/saves": tags: - save when: - os: linux - /Library/Application Support/factorio/config: + "/Library/Application Support/factorio/config": tags: - config when: - os: mac - /Library/Application Support/factorio/saves: + "/Library/Application Support/factorio/saves": tags: - save when: - os: mac - /Factorio/config: + "/Factorio/config": tags: - config when: - os: windows - /Factorio/saves: + "/Factorio/saves": tags: - save when: @@ -189369,27 +189908,27 @@ Factorio: installDir: Factorio: {} launch: - /bin/Win32/Factorio.exe: + "/bin/Win32/Factorio.exe": - when: - bit: 32 os: windows store: steam - /bin/i386/factorio: + "/bin/i386/factorio": - when: - bit: 32 os: linux store: steam - /bin/x64/Factorio.exe: + "/bin/x64/Factorio.exe": - when: - bit: 64 os: windows store: steam - /bin/x64/factorio: + "/bin/x64/factorio": - when: - bit: 64 os: linux store: steam - /factorio.app/Contents/MacOS/factorio: + "/factorio.app/Contents/MacOS/factorio": - when: - os: mac store: steam @@ -189399,11 +189938,11 @@ Factory Balls: installDir: Factory Balls: {} launch: - /FactoryBalls.app/Contents/MacOS/FactoryBalls: + "/FactoryBalls.app/Contents/MacOS/FactoryBalls": - when: - os: mac store: steam - /FactoryBalls.exe: + "/FactoryBalls.exe": - when: - os: windows store: steam @@ -189413,12 +189952,15 @@ Factory Coin Mining: installDir: FactoryCoinMining: {} launch: - /FactoryCoinMining.app/Contents/MacOS/FactoryCoinMining: + "/FactoryCoinMining.app/Contents/MacOS/FactoryCoinMining": - when: - os: mac store: steam - /FactoryCoinMining.exe: + "/FactoryCoinMining.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam @@ -189428,20 +189970,20 @@ Factory Engineer: installDir: Factory Engineer: {} launch: - /Factory Engineer.exe: + "/Factory Engineer.exe": - when: - os: windows store: steam - /FactoryEngineer.app: + "/FactoryEngineer.app": - when: - os: mac store: steam - /FactoryEngineer.x86: + "/FactoryEngineer.x86": - when: - bit: 32 os: linux store: steam - /FactoryEngineer.x86_64: + "/FactoryEngineer.x86_64": - when: - bit: 64 os: linux @@ -189452,11 +189994,11 @@ Factory Hiro: installDir: Factory Hiro: {} launch: - /Factory Hiro.app: + "/Factory Hiro.app": - when: - os: mac store: steam - /Factory Hiro.exe: + "/Factory Hiro.exe": - when: - os: windows store: steam @@ -189466,7 +190008,7 @@ Factory Manager: installDir: Factory Manager: {} launch: - /FactoryManager.exe: + "/FactoryManager.exe": - when: - os: windows store: steam @@ -189474,7 +190016,7 @@ Factory Manager: id: 877380 Factory Town: files: - /AppData/LocalLow/82 Apps/Factory Town/Saved Games: + "/AppData/LocalLow/82 Apps/Factory Town/Saved Games": tags: - save when: @@ -189484,11 +190026,11 @@ Factory Town: installDir: Factory Town: {} launch: - /Factory Town.app: + "/Factory Town.app": - when: - os: mac store: steam - /Factory Town.exe: + "/Factory Town.exe": - when: - os: windows store: steam @@ -189502,7 +190044,7 @@ Factory of Monsters: installDir: Factory of Monsters: {} launch: - /Factory of Monsters.exe: + "/Factory of Monsters.exe": - when: - os: windows store: steam @@ -189512,7 +190054,7 @@ Factory pirates: installDir: Factory pirates: {} launch: - /Factory Pirates.exe: + "/Factory Pirates.exe": - when: - os: windows store: steam @@ -189522,7 +190064,7 @@ Factorybelts 2: installDir: Factorybelts2: {} launch: - /Factorybelts2.exe: + "/Factorybelts2.exe": - when: - bit: 64 os: windows @@ -189533,7 +190075,7 @@ Factotum 90: installDir: Factotum 90: {} launch: - /win.exe: + "/win.exe": - when: - os: windows store: steam @@ -189543,11 +190085,11 @@ Fade Away: installDir: Fade Away: {} launch: - /fadeaway.app: + "/fadeaway.app": - when: - os: mac store: steam - /fadeaway.exe: + "/fadeaway.exe": - when: - os: windows store: steam @@ -189560,12 +190102,12 @@ Fade Out: id: 1054310 Fade to Silence: files: - /FadeToSilence/Saved/Config/WindowsNoEditor: + "/FadeToSilence/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /FadeToSilence/Saved/SaveGames: + "/FadeToSilence/Saved/SaveGames": tags: - save when: @@ -189580,7 +190122,7 @@ FadeZone: installDir: FadeZone: {} launch: - /ProjectFZ.exe: + "/ProjectFZ.exe": - when: - os: windows store: steam @@ -189591,14 +190133,14 @@ Fadeholm: FadeHolm: {} steam: id: 757500 -'Fadeout: Underground': +"Fadeout: Underground": files: - /.config/Epic/Grapple/Saved/SaveGames: + "/.config/Epic/Grapple/Saved/SaveGames": tags: - save when: - os: linux - /Grapple/Saved/SaveGames: + "/Grapple/Saved/SaveGames": tags: - save when: @@ -189606,12 +190148,12 @@ Fadeholm: installDir: Fadeout Underground: {} launch: - /Grapple.exe: + "/Grapple.exe": - when: - bit: 64 os: windows store: steam - /Grapple.sh: + "/Grapple.sh": - when: - bit: 64 os: linux @@ -189622,11 +190164,11 @@ Fading: installDir: Fading: {} launch: - /Fading.app/Contents/MacOS/Fading: + "/Fading.app/Contents/MacOS/Fading": - when: - os: mac store: steam - /Fading.exe: + "/Fading.exe": - when: - os: windows store: steam @@ -189634,12 +190176,12 @@ Fading: id: 639320 Fading Hearts: files: - /renpy/config.py: + "/renpy/config.py": tags: - config when: - os: windows - /RenPy/Fading Hearts 1237998905: + "/RenPy/Fading Hearts 1237998905": tags: - save when: @@ -189647,15 +190189,15 @@ Fading Hearts: installDir: FadingHearts: {} launch: - /Fading Hearts.app: + "/Fading Hearts.app": - when: - os: mac store: steam - /Fading Hearts.exe: + "/Fading Hearts.exe": - when: - os: windows store: steam - /Fading Hearts.sh: + "/Fading Hearts.sh": - when: - os: linux store: steam @@ -189665,11 +190207,11 @@ Fading Visage: installDir: Fading Visage: {} launch: - /Fading Visage.app/Contents/MacOS/Fading Visage: + "/Fading Visage.app/Contents/MacOS/Fading Visage": - when: - os: mac store: steam - /Fading Visage.exe: + "/Fading Visage.exe": - when: - os: windows store: steam @@ -189678,11 +190220,11 @@ Fading Visage: Fading of Zarya 7: steam: id: 596580 -'Fadó: Chapter One': +"Fadó: Chapter One": installDir: Fado: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -189690,12 +190232,12 @@ Fading of Zarya 7: id: 1148200 Fae Tactics: files: - /fae_tactics/lofconfig.ini: + "/fae_tactics/lofconfig.ini": tags: - config when: - os: windows - /fae_tactics/lofsav.ini: + "/fae_tactics/lofsav.ini": tags: - save when: @@ -189705,7 +190247,7 @@ Fae Tactics: installDir: Fae Tactics: {} launch: - /fae_tactics.exe: + "/fae_tactics.exe": - when: - store: steam steam: @@ -189714,15 +190256,15 @@ FaeVerse Alchemy: installDir: FaeVerseAlchemy: {} launch: - /FaeVerseAlchemy.app: + "/FaeVerseAlchemy.app": - when: - os: mac store: steam - /FaeVerseAlchemy.exe: + "/FaeVerseAlchemy.exe": - when: - os: windows store: steam - /FaeVerseAlchemy.sh: + "/FaeVerseAlchemy.sh": - when: - os: linux store: steam @@ -189730,7 +190272,7 @@ FaeVerse Alchemy: id: 282880 Faeria: files: - /.config/unity3d/Abrakam/Faeria/prefs: + "/.config/unity3d/Abrakam/Faeria/prefs": tags: - config when: @@ -189738,20 +190280,20 @@ Faeria: installDir: Faeria: {} launch: - /Faeria.app/Contents/MacOS/Faeria: + "/Faeria.app/Contents/MacOS/Faeria": - when: - os: mac store: steam - /Faeria.exe: + "/Faeria.exe": - when: - os: windows store: steam - /Faeria.x86: + "/Faeria.x86": - when: - bit: 32 os: linux store: steam - /Faeria.x86_64: + "/Faeria.x86_64": - when: - bit: 64 os: linux @@ -189764,17 +190306,17 @@ Faeria: id: 397060 Faerie Solitaire: files: - /Faerie Solitaire: + "/Faerie Solitaire": tags: - save when: - os: linux - /Library/Preferences/Faerie Solitaire: + "/Library/Preferences/Faerie Solitaire": tags: - save when: - os: mac - /Faerie Solitaire: + "/Faerie Solitaire": tags: - save when: @@ -189782,15 +190324,15 @@ Faerie Solitaire: installDir: Faerie Solitaire: {} launch: - /FaerieSolitaire: + "/FaerieSolitaire": - when: - os: linux store: steam - /FaerieSolitaire.app/Contents/MacOS/runtime: + "/FaerieSolitaire.app/Contents/MacOS/runtime": - when: - os: mac store: steam - /FaerieSolitaire.exe: + "/FaerieSolitaire.exe": - when: - os: windows store: steam @@ -189800,16 +190342,16 @@ Faerie Solitaire Dire: installDir: Faerie Solitaire Dire: {} launch: - /Faerie Solitaire Dire.app/Contents/MacOS/FaerieSolitaireDire: + "/Faerie Solitaire Dire.app/Contents/MacOS/FaerieSolitaireDire": - when: - os: mac store: steam - /FaerieSolitaireDire.exe: + "/FaerieSolitaireDire.exe": - when: - bit: 64 os: windows store: steam - /FaerieSolitaireDire.x86_64: + "/FaerieSolitaireDire.x86_64": - when: - bit: 64 os: linux @@ -189820,15 +190362,15 @@ Faerie Solitaire Harvest: installDir: Faerie Solitaire Harvest: {} launch: - /Faerie Solitaire Harvest.app/Contents/MacOS/FaerieSolitaireHarvest: + "/Faerie Solitaire Harvest.app/Contents/MacOS/FaerieSolitaireHarvest": - when: - os: mac store: steam - /FaerieSolitaireHarvest.exe: + "/FaerieSolitaireHarvest.exe": - when: - os: windows store: steam - /FaerieSolitaireHarvest.x86_64: + "/FaerieSolitaireHarvest.x86_64": - when: - bit: 64 os: linux @@ -189837,13 +190379,13 @@ Faerie Solitaire Harvest: id: 348910 Faerie Solitaire Remastered: files: - /Faerie Solitaire Remastered: + "/Faerie Solitaire Remastered": tags: - config - save when: - os: windows - /Faerie Solitaire Remastered Defold: + "/Faerie Solitaire Remastered Defold": tags: - config - save @@ -189852,25 +190394,25 @@ Faerie Solitaire Remastered: installDir: Faerie Solitaire Remastered: {} launch: - /Faerie Solitaire Remastered.app/Contents/MacOS/FaerieSolitaireRemastered: + "/Faerie Solitaire Remastered.app/Contents/MacOS/FaerieSolitaireRemastered": - when: - os: mac store: steam - /FaerieSolitaireRemastered.exe: + "/FaerieSolitaireRemastered.exe": - when: - bit: 64 os: windows store: steam - /FaerieSolitaireRemastered.x86_64: + "/FaerieSolitaireRemastered.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 583930 -'Faery: Legends of Avalon': +"Faery: Legends of Avalon": files: - /Faery - Legends of Avalon: + "/Faery - Legends of Avalon": tags: - config - save @@ -189879,7 +190421,7 @@ Faerie Solitaire Remastered: installDir: Faery - Legends of Avalon: {} launch: - /FaerySteam.exe: + "/FaerySteam.exe": - when: - os: windows store: steam @@ -189887,12 +190429,12 @@ Faerie Solitaire Remastered: id: 303790 Fahrenheit: files: - /Fahrenheit.ini: + "/Fahrenheit.ini": tags: - config when: - os: windows - /atari/Fahrenheit Profile: + "/atari/Fahrenheit Profile": tags: - save when: @@ -189902,45 +190444,47 @@ Fahrenheit: installDir: Indigo Prophecy: {} launch: - /Indigo Prophecy.exe: + "/Indigo Prophecy.exe": - when: - store: steam steam: id: 9740 -'Fahrenheit: Indigo Prophecy Remastered': +"Fahrenheit: Indigo Prophecy Remastered": files: - /Saves/: + "/Saves/": tags: - save when: - store: steam - /fahrenheit.ini: + "/fahrenheit.ini": tags: - config when: - os: windows - /steamassets/fahrenheit.ini: + "/steamassets/fahrenheit.ini": tags: - config when: - os: linux - /Aspyr/Fahrenheit Profile: + "/Aspyr/Fahrenheit Profile": tags: - save + when: + - os: windows gog: id: 1103453760 installDir: Kelvin: {} launch: - /Fahrenheit: + "/Fahrenheit": - when: - os: linux store: steam - /Fahrenheit.app: + "/Fahrenheit.app": - when: - os: mac store: steam - /Fahrenheit.exe: + "/Fahrenheit.exe": - when: - os: windows store: steam @@ -189950,16 +190494,16 @@ Fail to Win: installDir: Fail to Win: {} launch: - /Contents/MacOS/FailToWin: + "/Contents/MacOS/FailToWin": - when: - os: mac store: steam - /FailToWin.exe: + "/FailToWin.exe": - when: - bit: 64 os: windows store: steam - /FailToWin.x86_64: + "/FailToWin.x86_64": - when: - os: linux store: steam @@ -189967,12 +190511,12 @@ Fail to Win: id: 1147460 Failed Adventurer: files: - /AppData/LocalLow/Srloop/FailedAdventurer/option: + "/AppData/LocalLow/Srloop/FailedAdventurer/option": tags: - config when: - os: windows - /AppData/LocalLow/Srloop/FailedAdventurer/playData: + "/AppData/LocalLow/Srloop/FailedAdventurer/playData": tags: - save when: @@ -189980,7 +190524,7 @@ Failed Adventurer: installDir: FailedAdventure: {} launch: - /FailedAdventurer.exe: + "/FailedAdventurer.exe": - when: - os: windows store: steam @@ -189994,15 +190538,15 @@ Failspace: Failspace: {} steam: id: 971650 -'Fair Deal: Las Vegas': +"Fair Deal: Las Vegas": installDir: Fair Deal Las Vegas: {} launch: - /FairDealBetaMac.app/Contents/MacOS/FairDealBetaMac: + "/FairDealBetaMac.app/Contents/MacOS/FairDealBetaMac": - when: - os: mac store: steam - /FairDealBetaWin.exe: + "/FairDealBetaWin.exe": - when: - os: windows store: steam @@ -190017,7 +190561,7 @@ Fair Strike: installDir: Fair Strike: {} launch: - /FS.exe: + "/FS.exe": - when: - store: steam steam: @@ -190026,7 +190570,7 @@ Fairground 2 - The Ride Simulation: installDir: Fairground 2 - The Ride Simulation: {} launch: - /Fairground2.exe: + "/Fairground2.exe": - when: - os: windows store: steam @@ -190036,30 +190580,30 @@ Fairies vs Bugs: installDir: Fairies vs Bugs: {} launch: - /fvb.exe: + "/fvb.exe": - when: - os: windows store: steam steam: id: 1187850 -'Fairies vs. Darklings: Arcane Edition': +"Fairies vs. Darklings: Arcane Edition": installDir: Fairies vs. Darklings Arcane Edition: {} launch: - /FvD.app: + "/FvD.app": - when: - os: mac store: steam - /FvD.exe: + "/FvD.exe": - when: - os: windows store: steam - /FvD.x86: + "/FvD.x86": - when: - bit: 32 os: linux store: steam - /FvD.x86_64: + "/FvD.x86_64": - when: - bit: 64 os: linux @@ -190075,7 +190619,7 @@ Fairspace: installDir: Fairspace: {} launch: - /fairSpacegame.exe: + "/fairSpacegame.exe": - when: - os: windows store: steam @@ -190086,7 +190630,7 @@ Fairtravel Battle: id: 917820 Fairune Collection: files: - /AppData/LocalLow/Flyhigh Works/Fairune Collection: + "/AppData/LocalLow/Flyhigh Works/Fairune Collection": tags: - config - save @@ -190095,7 +190639,7 @@ Fairune Collection: installDir: Fairune Collection: {} launch: - /Fairune.exe: + "/Fairune.exe": - when: - bit: 64 os: windows @@ -190104,12 +190648,12 @@ Fairune Collection: id: 783180 Fairy Bloom Freesia: files: - /FairyBloomRe/data/*.dat: + "/FairyBloomRe/data/*.dat": tags: - config when: - os: windows - /FairyBloomRe/data/save/*.sav: + "/FairyBloomRe/data/save/*.sav": tags: - save when: @@ -190117,7 +190661,7 @@ Fairy Bloom Freesia: installDir: Fairy Bloom Freesia: {} launch: - /FairyBloomFreesia.exe: + "/FairyBloomFreesia.exe": - when: - store: steam steam: @@ -190126,15 +190670,15 @@ Fairy Escape: installDir: Fairy Escape: {} launch: - /Fairy Escape.app/Contents/MacOS/Fairy Escape: + "/Fairy Escape.app/Contents/MacOS/Fairy Escape": - when: - os: mac store: steam - /Fairy Escape.exe: + "/Fairy Escape.exe": - when: - os: windows store: steam - /Fairy Escape.x86: + "/Fairy Escape.x86": - when: - os: linux store: steam @@ -190142,12 +190686,12 @@ Fairy Escape: id: 841030 Fairy Fencer F: files: - /FairyFencer.ini: + "/FairyFencer.ini": tags: - config when: - os: windows - '/My Games/Idea Factory International, Inc/Fairy Fencer F': + "/My Games/Idea Factory International, Inc/Fairy Fencer F": tags: - save when: @@ -190155,15 +190699,15 @@ Fairy Fencer F: installDir: Fairy Fencer F: {} launch: - /FairyFencer.exe: + "/FairyFencer.exe": - when: - os: windows store: steam steam: id: 347830 -'Fairy Fencer F: Advent Dark Force': +"Fairy Fencer F: Advent Dark Force": files: - '/My Games/Idea Factory International, Inc/Fairy Fencer F Advent Dark Force': + "/My Games/Idea Factory International, Inc/Fairy Fencer F Advent Dark Force": tags: - save when: @@ -190173,23 +190717,23 @@ Fairy Fencer F: installDir: Fairy Fencer F Advent Dark Force: {} launch: - /FairyFencerAD.exe: + "/FairyFencerAD.exe": - when: - store: steam steam: id: 524580 Fairy Fixer: files: - /game/saves: + "/game/saves": tags: - save when: - os: windows -'Fairy Godmother Stories: Cinderella': +"Fairy Godmother Stories: Cinderella": installDir: - Fairy Godmother Stories Cinderella Collector's Edition: {} + "Fairy Godmother Stories Cinderella Collector's Edition": {} launch: - /Fairy_Godmother_Stories_Cinderella_CE.exe: + "/Fairy_Godmother_Stories_Cinderella_CE.exe": - when: - os: windows store: steam @@ -190199,17 +190743,17 @@ Fairy Knights: installDir: FairyKnights: {} launch: - /Pipe.exe: + "/Pipe.exe": - when: - os: windows store: steam steam: id: 903850 -'Fairy Lands: Rinka and the Fairy Gems': +"Fairy Lands: Rinka and the Fairy Gems": installDir: Fairy Lands Rinka and the Fairy Gems: {} launch: - /Fairy_lands_upd_ver_1-5-5.exe: + "/Fairy_lands_upd_ver_1-5-5.exe": - when: - os: windows store: steam @@ -190219,7 +190763,7 @@ Fairy Light: installDir: Fairy Light: {} launch: - /Fairy Light.exe: + "/Fairy Light.exe": - when: - os: windows store: steam @@ -190229,16 +190773,16 @@ Fairy Maids: installDir: Fairy Maids: {} launch: - /FairyMaids.exe: + "/FairyMaids.exe": - when: - store: steam steam: id: 503090 Fairy Picturebook of Hero and Sorceress / 勇者と魔法使いとおとぎの絵本: installDir: - '勇者と魔法使いとおとぎの絵本 A Picturebook of Hero, Sorceress and Fairy Tale': {} + "勇者と魔法使いとおとぎの絵本 A Picturebook of Hero, Sorceress and Fairy Tale": {} launch: - /Picturebook of Hero.exe: + "/Picturebook of Hero.exe": - when: - os: windows store: steam @@ -190248,15 +190792,15 @@ Fairy Rescue: installDir: Fairy Rescue: {} launch: - /Fairy Rescue.app/Contents/MacOS/Fairy Rescue: + "/Fairy Rescue.app/Contents/MacOS/Fairy Rescue": - when: - os: mac store: steam - /Fairy Rescue.exe: + "/Fairy Rescue.exe": - when: - os: windows store: steam - /Fairy Rescue.x86: + "/Fairy Rescue.x86": - when: - os: linux store: steam @@ -190264,17 +190808,17 @@ Fairy Rescue: id: 895570 Fairy Tail: files: - /game.ini: + "/game.ini": tags: - config when: - os: windows - /KoeiTecmo/FAIRY TAIL: + "/KoeiTecmo/FAIRY TAIL": tags: - save when: - os: windows - /KoeiTecmo/FAIRY TAIL/system_data.bin: + "/KoeiTecmo/FAIRY TAIL/system_data.bin": tags: - config when: @@ -190282,17 +190826,17 @@ Fairy Tail: installDir: FAIRY TAIL: {} launch: - /FAIRY_TAIL.exe: + "/FAIRY_TAIL.exe": - when: - os: windows store: steam steam: id: 1233260 -'Fairy Tale About Father Frost, Ivan and Nastya': +"Fairy Tale About Father Frost, Ivan and Nastya": installDir: Morozko: {} launch: - /mrazik.exe: + "/mrazik.exe": - when: - os: windows store: steam @@ -190302,49 +190846,49 @@ Fairy Tail: - config steam: id: 289320 -'Fairy Tale Mysteries 2: The Beanstalk': +"Fairy Tale Mysteries 2: The Beanstalk": installDir: Fairy Tale Mysteries 2 The Beanstalk: {} launch: - /Beanstalk.exe: + "/Beanstalk.exe": - when: - os: windows store: steam - /Beanstalk_amd64: + "/Beanstalk_amd64": - when: - bit: 64 os: linux store: steam - /Beanstalk_i386: + "/Beanstalk_i386": - when: - bit: 32 os: linux store: steam - /mac_steam.app/Contents/MacOS/mac_steam: + "/mac_steam.app/Contents/MacOS/mac_steam": - when: - os: mac store: steam steam: id: 403510 -'Fairy Tale Mysteries: The Puppet Thief': +"Fairy Tale Mysteries: The Puppet Thief": installDir: Fairy Tale Mysteries: {} launch: - /PuppetThief.exe: + "/PuppetThief.exe": - when: - os: windows store: steam - /PuppetThief_amd64: + "/PuppetThief_amd64": - when: - bit: 64 os: linux store: steam - /PuppetThief_i386: + "/PuppetThief_i386": - when: - bit: 32 os: linux store: steam - /mac_steam.app/Contents/MacOS/mac_steam: + "/mac_steam.app/Contents/MacOS/mac_steam": - when: - os: mac store: steam @@ -190354,15 +190898,15 @@ Fairy Tower Defense: installDir: Fairy Tower Defense: {} launch: - /Fairy Tower Defense.app/Contents/MacOS/Fairy Tower Defense: + "/Fairy Tower Defense.app/Contents/MacOS/Fairy Tower Defense": - when: - os: mac store: steam - /Fairy Tower Defense.exe: + "/Fairy Tower Defense.exe": - when: - os: windows store: steam - /Fairy Tower Defense.x86: + "/Fairy Tower Defense.x86": - when: - os: linux store: steam @@ -190372,7 +190916,7 @@ Fairy Wars: installDir: th128: {} launch: - /th128.exe: + "/th128.exe": - when: - os: windows store: steam @@ -190387,49 +190931,49 @@ Fairy of the Treasures: installDir: Fairy of the treasures: {} launch: - /fairybetatest.app: + "/fairybetatest.app": - when: - os: mac store: steam - /fairybetatest.exe: + "/fairybetatest.exe": - when: - os: windows store: steam - /fairybetatest.sh: + "/fairybetatest.sh": - when: - os: linux store: steam steam: id: 770400 -'Fairyland: Blackberry Warrior': +"Fairyland: Blackberry Warrior": steam: id: 885600 -'Fairyland: Chronicle': +"Fairyland: Chronicle": steam: id: 827670 -'Fairyland: Fairy Power': +"Fairyland: Fairy Power": steam: id: 555940 -'Fairyland: Fairylines': +"Fairyland: Fairylines": steam: id: 968780 -'Fairyland: Incursion': +"Fairyland: Incursion": steam: id: 493760 -'Fairyland: Manuscript': +"Fairyland: Manuscript": steam: id: 666160 -'Fairyland: Power Dice': +"Fairyland: Power Dice": steam: id: 885310 -'Fairyland: The Guild': +"Fairyland: The Guild": steam: id: 916270 Fairytale Mosaics Beauty and Beast: installDir: Fairytale Mosaics Beauty and Beast: {} launch: - /Fairytale Mosaics. Beauty and the Beast.exe: + "/Fairytale Mosaics. Beauty and the Beast.exe": - when: - os: windows store: steam @@ -190439,21 +190983,21 @@ Fairytale Solitaire. Witch Charms: installDir: Fairytale Solitaire Witch Charms: {} launch: - /Fairytale Solitaire Witch Charms.exe: + "/Fairytale Solitaire Witch Charms.exe": - when: - os: windows store: steam steam: id: 1164310 -'Fairytale Solitaire: Red Riding Hood': +"Fairytale Solitaire: Red Riding Hood": installDir: Fairytale Solitaire Red Riding Hood: {} launch: - /Fairytale Solitaire. Red Riding Hood.app: + "/Fairytale Solitaire. Red Riding Hood.app": - when: - os: mac store: steam - /Fairytale Solitaire. Red Riding Hood.exe: + "/Fairytale Solitaire. Red Riding Hood.exe": - when: - os: windows store: steam @@ -190461,13 +191005,13 @@ Fairytale Solitaire. Witch Charms: id: 1095840 Faith of Danschant: files: - /userdata//724970/remote: + "/userdata//724970/remote": tags: - save when: - os: windows store: steam - /JoyfunRPG/Saved/Config/WindowsNoEditor: + "/JoyfunRPG/Saved/Config/WindowsNoEditor": tags: - config when: @@ -190475,7 +191019,7 @@ Faith of Danschant: installDir: FOD: {} launch: - /FOD.exe: + "/FOD.exe": - when: - bit: 64 os: windows @@ -190486,7 +191030,7 @@ Faith of Fate: installDir: Faith of Fate: {} launch: - /Faith of Fate.exe: + "/Faith of Fate.exe": - when: - store: steam steam: @@ -190498,15 +191042,15 @@ Fake Colours: installDir: Fake Colours: {} launch: - /Fake Colours.app: + "/Fake Colours.app": - when: - os: mac store: steam - /Fake Colours.exe: + "/Fake Colours.exe": - when: - os: windows store: steam - /Fake Colours.x86: + "/Fake Colours.x86": - when: - os: linux store: steam @@ -190521,7 +191065,7 @@ Fake Happy End: installDir: Fake Happy End: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -190531,7 +191075,7 @@ Fake Hostel: installDir: Fake Hostel: {} launch: - /Fake_Hostel.exe: + "/Fake_Hostel.exe": - when: - os: windows store: steam @@ -190541,11 +191085,11 @@ Fake Lay: installDir: Fake Lay: {} launch: - /Fakelay.app: + "/Fakelay.app": - when: - os: mac store: steam - /fakelay.exe: + "/fakelay.exe": - when: - bit: 64 os: windows @@ -190560,11 +191104,11 @@ Fake World: Fake/SuperSonia: steam: id: 705840 -'Fakespearean: Overdramatic': +"Fakespearean: Overdramatic": installDir: Fakespearean Game: {} launch: - /fofGame.exe: + "/fofGame.exe": - when: - store: steam steam: @@ -190578,7 +191122,7 @@ Falcon: installDir: Falcon: {} launch: - /FalconLauncher.exe: + "/FalconLauncher.exe": - when: - os: windows store: steam @@ -190586,22 +191130,22 @@ Falcon: id: 374080 Falcon 3.0: files: - /falcon3.def: + "/falcon3.def": tags: - config when: - os: dos - /hornet.def: + "/hornet.def": tags: - config when: - os: dos - /mig29.def: + "/mig29.def": tags: - config when: - os: dos - /squad*.*: + "/squad*.*": tags: - save when: @@ -190614,7 +191158,7 @@ Falcon 3.0: installDir: Falcon Gold: {} launch: - /FalconGoldLauncher.exe: + "/FalconGoldLauncher.exe": - when: - os: windows store: steam @@ -190622,12 +191166,12 @@ Falcon 3.0: id: 429520 Falcon 4.0: files: - /campaign/SAVE: + "/campaign/SAVE": tags: - save when: - os: windows - /config: + "/config": tags: - config when: @@ -190640,25 +191184,25 @@ Falcon 4.0: installDir: Falcon 4.0: {} launch: - /falcon4.exe: + "/falcon4.exe": - when: - os: windows store: steam steam: id: 429530 -'Falcon 4.0: Allied Force': +"Falcon 4.0: Allied Force": files: - '/Campaign/[campaign name]/*.tac': + "/Campaign/[campaign name]/*.tac": tags: - save when: - os: windows - /config: + "/config": tags: - config when: - os: windows - /global.cfg: + "/global.cfg": tags: - config when: @@ -190672,7 +191216,7 @@ Falcon A.T.: installDir: Falcon AT: {} launch: - /FalconATLauncher.exe: + "/FalconATLauncher.exe": - when: - os: windows store: steam @@ -190680,12 +191224,12 @@ Falcon A.T.: id: 286790 Falcon Age: files: - /AppData/LocalLow/Outerloop Games/FalconAge/OPTIONS.opt: + "/AppData/LocalLow/Outerloop Games/FalconAge/OPTIONS.opt": tags: - config when: - os: windows - /My Games/Falcon Age: + "/My Games/Falcon Age": tags: - save when: @@ -190693,7 +191237,7 @@ Falcon Age: installDir: Falcon Age: {} launch: - /FalconAge.exe: + "/FalconAge.exe": - when: - bit: 64 os: windows @@ -190713,7 +191257,7 @@ Falcon City: installDir: Falcon City: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -190723,7 +191267,7 @@ Fall Down: installDir: FallDown: {} launch: - /FallDown.exe: + "/FallDown.exe": - when: - os: windows store: steam @@ -190747,11 +191291,11 @@ Fall In Love - My Billionaire Boss: installDir: Fall In Love - My Billionaire Boss: {} launch: - /Contents/MacOS/mbb: + "/Contents/MacOS/mbb": - when: - os: mac store: steam - /mbb.exe: + "/mbb.exe": - when: - os: windows store: steam @@ -190761,7 +191305,7 @@ Fall of Civilization: installDir: Fall of Civilization: {} launch: - /FallofCivilization.exe: + "/FallofCivilization.exe": - when: - os: windows store: steam @@ -190771,7 +191315,7 @@ Fall of Freya: installDir: Fall of Freya: {} launch: - /FreyaA2.exe: + "/FreyaA2.exe": - when: - os: windows store: steam @@ -190781,20 +191325,20 @@ Fall of Gyes: installDir: Fall of Gyes: {} launch: - /fallofgyes.app: + "/fallofgyes.app": - when: - os: mac store: steam - /fallofgyes.exe: + "/fallofgyes.exe": - when: - os: windows store: steam - /fallofgyes.x86: + "/fallofgyes.x86": - when: - bit: 32 os: linux store: steam - /fallofgyes.x86_64: + "/fallofgyes.x86_64": - when: - bit: 64 os: linux @@ -190803,7 +191347,7 @@ Fall of Gyes: id: 440100 Fall of Light: files: - /AppData/LocalLow/RuneHeads/FallOfLight: + "/AppData/LocalLow/RuneHeads/FallOfLight": tags: - save when: @@ -190811,11 +191355,11 @@ Fall of Light: installDir: Fall of Light: {} launch: - /FallOfLight_osx.app/Contents/MacOS/FallOfLight_osx: + "/FallOfLight_osx.app/Contents/MacOS/FallOfLight_osx": - when: - os: mac store: steam - /FallOfLight_win.exe: + "/FallOfLight_win.exe": - when: - os: windows store: steam @@ -190830,15 +191374,15 @@ Fall of Porcupine: id: 1956203012 id: gogExtra: - - 1876546888 - 1238928286 + - 1876546888 steamExtra: - 1710850 - 2461480 installDir: Fall of Porcupine: {} launch: - /FallOfPorcupine.exe: + "/FallOfPorcupine.exe": - when: - os: windows store: steam @@ -190851,15 +191395,15 @@ Fall of the New Age: installDir: Fall of the New Age: {} launch: - /Fall_Of_The_New_Age_CE: + "/Fall_Of_The_New_Age_CE": - when: - os: linux store: steam - /Fall_Of_The_New_Age_CE.exe: + "/Fall_Of_The_New_Age_CE.exe": - when: - os: windows store: steam - /The_Fall_Of_The_New_Age_CE.app: + "/The_Fall_Of_The_New_Age_CE.app": - when: - os: mac store: steam @@ -190869,11 +191413,11 @@ Fall of the Titanic: installDir: Fall of the Titanic: {} launch: - /Fall of the Titanic Oculus.exe: + "/Fall of the Titanic Oculus.exe": - when: - os: windows store: steam - /Fall of the Titanic.exe: + "/Fall of the Titanic.exe": - when: - os: windows store: steam @@ -190883,7 +191427,7 @@ Fall... in Love: installDir: FallInLoveSeason1_Demo: {} launch: - /FallInLoveSeason1_Demo.exe: + "/FallInLoveSeason1_Demo.exe": - when: - os: windows store: steam @@ -190893,20 +191437,20 @@ Fallalypse: installDir: Fallalypse: {} launch: - /fallalypse.app/Contents/MacOS/fallalypse: + "/fallalypse.app/Contents/MacOS/fallalypse": - when: - os: mac store: steam - /fallalypse.exe: + "/fallalypse.exe": - when: - os: windows store: steam - /fallalypse.linux/fallalypse.x86: + "/fallalypse.linux/fallalypse.x86": - when: - bit: 32 os: linux store: steam - /fallalypse.linux/fallalypse.x86_64: + "/fallalypse.linux/fallalypse.x86_64": - when: - bit: 64 os: linux @@ -190915,7 +191459,7 @@ Fallalypse: id: 689520 Fallback: files: - /fallback_Data/Save: + "/fallback_Data/Save": tags: - save when: @@ -190923,7 +191467,7 @@ Fallback: installDir: FALLBACK: {} launch: - /fallback.exe: + "/fallback.exe": - when: - bit: 64 os: windows @@ -190934,7 +191478,7 @@ Fallen: installDir: Fallen: {} launch: - /Fallen.exe: + "/Fallen.exe": - when: - os: windows store: steam @@ -190942,7 +191486,7 @@ Fallen: id: 570890 Fallen Aces: files: - /AppData/LocalLow/New Blood Interactive/Fallen Aces: + "/AppData/LocalLow/New Blood Interactive/Fallen Aces": tags: - config when: @@ -190953,7 +191497,7 @@ Fallen Aces: id: 1411910 Fallen Angel: files: - /Fallen_Angel: + "/Fallen_Angel": tags: - save when: @@ -190961,7 +191505,7 @@ Fallen Angel: installDir: Fallen Angel: {} launch: - /Fallen Angel.exe: + "/Fallen Angel.exe": - when: - os: windows store: steam @@ -190971,14 +191515,14 @@ Fallen Beast (Project Ora) US Version: installDir: Fallen Beast US: {} launch: - /Beast1.exe: + "/Beast1.exe": - when: - os: windows store: steam - /Beast2.exe: + "/Beast2.exe": - when: - store: steam - /Beast3.exe: + "/Beast3.exe": - when: - store: steam steam: @@ -190987,7 +191531,7 @@ Fallen Bird: installDir: Fallen Bird: {} launch: - /FallenBird.exe: + "/FallenBird.exe": - when: - os: windows store: steam @@ -190997,7 +191541,7 @@ Fallen Cube: installDir: FallenCube: {} launch: - /FallenCube.exe: + "/FallenCube.exe": - when: - store: steam steam: @@ -191009,7 +191553,7 @@ Fallen Earth: installDir: Fallen Earth F2P: {} launch: - /FEUpdater.exe: + "/FEUpdater.exe": - when: - store: steam steam: @@ -191021,24 +191565,24 @@ Fallen Empires: installDir: Fallen Empires: {} launch: - /Fallen Empires.exe: + "/Fallen Empires.exe": - when: - os: windows store: steam - /Fallen_Empires_alpha.app: + "/Fallen_Empires_alpha.app": - when: - os: mac store: steam steam: id: 824900 -'Fallen Enchantress: Legendary Heroes': +"Fallen Enchantress: Legendary Heroes": files: - /My Games/LegendaryHeroes: + "/My Games/LegendaryHeroes": tags: - config when: - os: windows - /My Games/LegendaryHeroes/Saves: + "/My Games/LegendaryHeroes/Saves": tags: - save when: @@ -191048,28 +191592,28 @@ Fallen Empires: installDir: FE Legendary Heroes: {} launch: - /LegendaryHeroes.exe: + "/LegendaryHeroes.exe": - when: - store: steam steam: id: 228260 Fallen Haven: files: - /savegame.**: + "/savegame.**": tags: - save when: - os: windows gog: id: 2099920872 -'Fallen Haven: Liberation Day': +"Fallen Haven: Liberation Day": files: - /EXE/LIBDAY.INI: + "/EXE/LIBDAY.INI": tags: - config when: - os: windows - /SAVEGAME: + "/SAVEGAME": tags: - save when: @@ -191080,33 +191624,27 @@ Fallen Hearts: installDir: FallenHearts: {} launch: - /FH.exe: - - arguments: '-force-d3d11' + "/FH.exe": + - arguments: "-force-d3d11" when: - bit: 64 os: windows store: steam steam: id: 1032450 -'Fallen Hero: Rebirth': - files: - Steam/userdata/*/800620/remote/storePSfallenherorebirthPSstate: - tags: - - save - when: - - os: windows +"Fallen Hero: Rebirth": installDir: Fallen Hero Rebirth: {} launch: - /Fallen Hero Rebirth.app/Contents/MacOS/Fallen Hero Rebirth: + "/Fallen Hero Rebirth.app/Contents/MacOS/Fallen Hero Rebirth": - when: - os: mac store: steam - /FallenHeroRebirth: + "/FallenHeroRebirth": - when: - os: linux store: steam - /FallenHeroRebirth.exe: + "/FallenHeroRebirth.exe": - when: - os: windows store: steam @@ -191116,7 +191654,7 @@ Fallen Kingdom: installDir: Fallen Kingdom: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -191126,30 +191664,30 @@ Fallen Knight: installDir: Fallen Knight: {} launch: - /Fallen Knight.exe: + "/Fallen Knight.exe": - when: - os: windows store: steam steam: id: 1378370 -'Fallen Legion: Revenants': +"Fallen Legion: Revenants": gog: id: 1117246454 installDir: Fallen Legion Revenants: {} launch: - /Fallen Legion Revenants.exe: + "/Fallen Legion Revenants.exe": - when: - store: steam steam: id: 1921340 -'Fallen Legion: Rise to Glory': +"Fallen Legion: Rise to Glory": gog: id: 1239542637 installDir: Fallen Legion: {} launch: - /fallenlegion-rtg.exe: + "/fallenlegion-rtg.exe": - when: - store: steam steam: @@ -191158,7 +191696,7 @@ Fallen Mage: installDir: Fallen Mage: {} launch: - /Fallen Mage.exe: + "/Fallen Mage.exe": - when: - bit: 64 os: windows @@ -191174,7 +191712,7 @@ Fallen Temple: installDir: Fallen Temple: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -191184,7 +191722,7 @@ Fallen Threats: installDir: Fallen Threats: {} launch: - /FALLEN THREATS PC.exe: + "/FALLEN THREATS PC.exe": - when: - store: steam steam: @@ -191193,17 +191731,17 @@ Fallen Times: installDir: FallenTimes: {} launch: - /FallenTimes.app/Contents/MacOS/FallenTimes: + "/FallenTimes.app/Contents/MacOS/FallenTimes": - when: - bit: 64 os: mac store: steam - /FallenTimes.exe: + "/FallenTimes.exe": - when: - bit: 64 os: windows store: steam - /FallenTimes.x86_64: + "/FallenTimes.x86_64": - when: - bit: 64 os: linux @@ -191214,41 +191752,41 @@ Fallen valiant-Loopy: installDir: Fallen valiant-Loopy: {} launch: - /001/Game.app: + "/001/Game.app": - when: - os: mac store: steam - /001/Game.exe: + "/001/Game.exe": - when: - os: windows store: steam steam: id: 1096120 -'Fallen: A2P Protocol': +"Fallen: A2P Protocol": installDir: Fallen A2P Protocol: {} launch: - /Fallen.app: + "/Fallen.app": - when: - os: mac store: steam - /Fallen.exe: + "/Fallen.exe": - when: - os: windows store: steam - /Fallen.x86: + "/Fallen.x86": - when: - os: linux store: steam steam: id: 325790 -'Fallen: Makina and the City of Ruins': +"Fallen: Makina and the City of Ruins": gog: id: 1365841075 installDir: Fallen ~Makina and the City of Ruins~: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -191258,20 +191796,20 @@ FallenCore: installDir: FallenCore: {} launch: - /FallenCore.app: + "/FallenCore.app": - when: - os: mac store: steam - /FallenCore.exe: + "/FallenCore.exe": - when: - os: windows store: steam - /FallenCore.x86: + "/FallenCore.x86": - when: - bit: 32 os: linux store: steam - /FallenCore.x86_64: + "/FallenCore.x86_64": - when: - bit: 64 os: linux @@ -191282,7 +191820,7 @@ Falling Blocks: installDir: Falling Blocks: {} launch: - /FallingBlocks.exe: + "/FallingBlocks.exe": - when: - os: windows store: steam @@ -191292,15 +191830,15 @@ Falling Bullets: installDir: Falling Bullets: {} launch: - /Contents/MacOS/FallingBullets_MacOS: + "/Contents/MacOS/FallingBullets_MacOS": - when: - os: mac store: steam - /Falling Bullets.exe: + "/Falling Bullets.exe": - when: - os: windows store: steam - /FallingBullets_Linux.x86: + "/FallingBullets_Linux.x86": - when: - os: linux store: steam @@ -191315,25 +191853,25 @@ Falling Plus: installDir: Falling Plus: {} launch: - /Falling Plus.app: + "/Falling Plus.app": - when: - os: mac store: steam - /FallingPlus.exe: + "/FallingPlus.exe": - when: - os: windows store: steam steam: id: 934480 -'Falling Skies: The Game': +"Falling Skies: The Game": installDir: Falling Skies The Game: {} launch: - /fallingskies.exe: + "/fallingskies.exe": - when: - os: windows store: steam - - arguments: '-c' + - arguments: "-c" when: - os: windows store: steam @@ -191343,21 +191881,21 @@ Falling Slime: installDir: Falling Slime: {} launch: - /falling-slime: + "/falling-slime": - when: - os: linux store: steam - /falling-slime.exe: + "/falling-slime.exe": - when: - os: windows store: steam steam: id: 838150 -'Falling Stars: War of Empires': +"Falling Stars: War of Empires": installDir: Falling Stars War of Empires: {} launch: - /Empires.exe: + "/Empires.exe": - when: - os: windows store: steam @@ -191367,15 +191905,15 @@ Falling Words: installDir: Falling words: {} launch: - /Falling words.app: + "/Falling words.app": - when: - os: mac store: steam - /Falling words.exe: + "/Falling words.exe": - when: - os: windows store: steam - /Falling words.x86: + "/Falling words.x86": - when: - os: linux store: steam @@ -191386,13 +191924,13 @@ Fallingcers: id: 824290 Fallout: files: - /data/SAVEGAME: + "/data/SAVEGAME": tags: - save when: - os: dos - os: windows - /fallout.cfg: + "/fallout.cfg": tags: - config when: @@ -191407,11 +191945,11 @@ Fallout: installDir: Fallout: {} launch: - /falloutlauncher.exe: + "/falloutlauncher.exe": - when: - os: windows store: steam - - arguments: '-classic' + - arguments: "-classic" when: - os: windows store: steam @@ -191419,17 +191957,17 @@ Fallout: id: 38400 Fallout 2: files: - /data/SAVEGAME: + "/data/SAVEGAME": tags: - save when: - os: windows - /Library/Application Support/Fallout 2/saves: + "/Library/Application Support/Fallout 2/saves": tags: - save when: - os: mac - /Library/Application Support/GOG.com/Fallout 2/saves: + "/Library/Application Support/GOG.com/Fallout 2/saves": tags: - save when: @@ -191443,23 +191981,23 @@ Fallout 2: installDir: Fallout 2: {} launch: - /fallout2launcher.exe: + "/fallout2launcher.exe": - when: - os: windows store: steam - - arguments: '-classic' + - arguments: "-classic" when: - store: steam steam: id: 38410 Fallout 3: files: - /My Games/Fallout3/*.ini: + "/My Games/Fallout3/*.ini": tags: - config when: - os: windows - /My Games/Fallout3/Saves: + "/My Games/Fallout3/Saves": tags: - save when: @@ -191470,28 +192008,28 @@ Fallout 3: gogExtra: - 1454315831 steamExtra: + - 22370 - 22400 - 22410 - 22420 - 22430 - 22440 - - 22370 installDir: Fallout 3: {} launch: - /FalloutLauncherSteam.exe: + "/FalloutLauncherSteam.exe": - when: - store: steam steam: id: 22300 Fallout 4: files: - /My Games/Fallout4: + "/My Games/Fallout4": tags: - config when: - os: windows - /My Games/Fallout4/Saves: + "/My Games/Fallout4/Saves": tags: - save when: @@ -191507,7 +192045,7 @@ Fallout 4: installDir: Fallout 4: {} launch: - /Fallout4Launcher.exe: + "/Fallout4Launcher.exe": - when: - bit: 64 store: steam @@ -191515,12 +192053,12 @@ Fallout 4: id: 377160 Fallout 4 VR: files: - /My Games/Fallout4VR: + "/My Games/Fallout4VR": tags: - config when: - os: windows - /My Games/Fallout4VR/Saves: + "/My Games/Fallout4VR/Saves": tags: - save when: @@ -191531,7 +192069,7 @@ Fallout 4 VR: id: 611660 Fallout 76: files: - /My Games/Fallout 76: + "/My Games/Fallout 76": tags: - config when: @@ -191548,14 +192086,14 @@ Fallout 76: installDir: Fallout76: {} launch: - /Fallout76.exe: + "/Fallout76.exe": - when: - store: steam steam: id: 1151340 Fallout Shelter: files: - /FalloutShelter: + "/FalloutShelter": tags: - save when: @@ -191563,7 +192101,7 @@ Fallout Shelter: installDir: Fallout Shelter: {} launch: - /FalloutShelter.exe: + "/FalloutShelter.exe": - when: - store: steam registry: @@ -191572,14 +192110,14 @@ Fallout Shelter: - config steam: id: 588430 -'Fallout Tactics: Brotherhood of Steel': +"Fallout Tactics: Brotherhood of Steel": files: - /core/bos.cfg: + "/core/bos.cfg": tags: - config when: - os: windows - /core/user: + "/core/user": tags: - save when: @@ -191593,60 +192131,60 @@ Fallout Shelter: installDir: Fallout Tactics: {} launch: - /tacticslauncher.exe: + "/tacticslauncher.exe": - when: - os: windows store: steam - - arguments: '-classic' + - arguments: "-classic" when: - os: windows store: steam - - arguments: '-win8' + - arguments: "-win8" when: - store: steam steam: id: 38420 -'Fallout: New Vegas': +"Fallout: New Vegas": files: - /My Games/FalloutNV/*.ini: + "/My Games/FalloutNV/*.ini": tags: - config when: - os: windows - /My Games/FalloutNV/Saves: + "/My Games/FalloutNV/Saves": tags: - save when: - os: windows - /My Games/FalloutNV_Epic/Saves: + "/My Games/FalloutNV_Epic/Saves": tags: - save when: - - store: epic + - os: windows gog: id: 1312824873 id: gogExtra: - 1454587428 steamExtra: - - 2028016 - - 72840 - - 901778 - - 72760 - - 72750 - - 72740 - - 72730 - 22470 - 22490 - - 72774 - 72709 + - 72730 + - 72740 + - 72750 + - 72760 - 72770 - 72772 - 72773 + - 72774 + - 72840 + - 901778 + - 2028016 installDir: Fallout New Vegas: {} launch: - /FalloutNVLauncher.exe: + "/FalloutNVLauncher.exe": - when: - store: steam steam: @@ -191655,15 +192193,15 @@ Fallstreak: installDir: Fallstreak: {} launch: - /Fallstreak.app/Contents/MacOS/Fallstreak: + "/Fallstreak.app/Contents/MacOS/Fallstreak": - when: - os: mac store: steam - /Fallstreak.exe: + "/Fallstreak.exe": - when: - os: windows store: steam - /Fallstreak.sh: + "/Fallstreak.sh": - when: - os: linux store: steam @@ -191673,8 +192211,8 @@ Falnarion Tactics: installDir: Falnarion Tactics: {} launch: - /game.exe: - - arguments: '--in-process-gpu' + "/game.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam @@ -191684,8 +192222,8 @@ Falnarion Tactics II: installDir: Falnarion Tactics II: {} launch: - /game.exe: - - arguments: '--in-process-gpu' + "/game.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam @@ -191695,7 +192233,7 @@ False Front: installDir: False Front: {} launch: - /FalseFront.exe: + "/FalseFront.exe": - when: - bit: 64 os: windows @@ -191706,7 +192244,7 @@ False Myth: installDir: False Myth: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: @@ -191715,7 +192253,7 @@ False Shelter: installDir: False Shelter: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -191724,20 +192262,20 @@ False Shelter: Falsemen: steam: id: 643930 -'Falsemen: Demon Rebirth': +"Falsemen: Demon Rebirth": installDir: Falsemen Rebirth: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: id: 859280 -'Falsus Chronicle: Ancient Treasure': +"Falsus Chronicle: Ancient Treasure": installDir: AncientTreasure: {} launch: - /FalsusChronicle_AncientTreasure.exe: + "/FalsusChronicle_AncientTreasure.exe": - when: - os: windows store: steam @@ -191745,7 +192283,7 @@ Falsemen: id: 745930 Famaze: files: - /famaze: + "/famaze": tags: - config - save @@ -191754,7 +192292,7 @@ Famaze: installDir: Famaze: {} launch: - /Famaze.exe: + "/Famaze.exe": - when: - os: windows store: steam @@ -191764,12 +192302,12 @@ Familia: installDir: Familia: {} launch: - /Game.app: + "/Game.app": - when: - os: mac store: steam - /game.exe: - - arguments: '--in-process-gpu' + "/game.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam @@ -191777,7 +192315,7 @@ Familia: id: 1197520 Familiar Travels: files: - /FT_Game/Local Storage: + "/FT_Game/Local Storage": tags: - save when: @@ -191785,11 +192323,11 @@ Familiar Travels: installDir: Familiar Travels: {} launch: - /FT_Game.exe: + "/FT_Game.exe": - when: - os: windows store: steam - /tyranoscript.app: + "/tyranoscript.app": - when: - os: mac store: steam @@ -191798,9 +192336,9 @@ Familiar Travels: Family Cobweb: steam: id: 670810 -'Family Guy: Back to the Multiverse': +"Family Guy: Back to the Multiverse": files: - /Save: + "/Save": tags: - save when: @@ -191811,7 +192349,7 @@ Family Cobweb: installDir: Family Guy Back to the Multiverse: {} launch: - /FGUY.exe: + "/FGUY.exe": - when: - store: steam registry: @@ -191824,7 +192362,7 @@ Family Hidden Secret: installDir: Family Hidden Secret - Hidden Objects Puzzle Adventure: {} launch: - /FamilyHiddenSecret.exe: + "/FamilyHiddenSecret.exe": - when: - os: windows store: steam @@ -191834,7 +192372,7 @@ Family Jewels: installDir: Family Jewels: {} launch: - /FJ.exe: + "/FJ.exe": - when: - store: steam steam: @@ -191843,7 +192381,7 @@ Family Man: installDir: Family Man: {} launch: - /FamilyMan.exe: + "/FamilyMan.exe": - when: - os: windows store: steam @@ -191860,19 +192398,19 @@ Famousity: installDir: Famousity: {} launch: - /famousity.app: + "/famousity.app": - when: - os: mac store: steam - /famousity.exe: + "/famousity.exe": - when: - os: windows store: steam - /famousity.x86: + "/famousity.x86": - when: - os: linux store: steam - /famousity.x86_64: + "/famousity.x86_64": - when: - bit: 64 os: linux @@ -191891,7 +192429,7 @@ FanaticBlader: installDir: FanaticBlader: {} launch: - /FanaticBlader.exe: + "/FanaticBlader.exe": - when: - bit: 64 os: windows @@ -191903,7 +192441,7 @@ Fancy Fishing VR: Fancy Fishing VR: {} steam: id: 601940 -'Fancy Skiing 2: Online': +"Fancy Skiing 2: Online": installDir: FancySkiing2 Online: {} steam: @@ -191913,7 +192451,7 @@ Fancy Skiing VR: Fancy Skiing VR: {} steam: id: 512080 -'Fancy Skiing: Speed': +"Fancy Skiing: Speed": installDir: FancySkiingSpeed: {} steam: @@ -191922,19 +192460,19 @@ Fancy Skulls: installDir: FancySkulls: {} launch: - /fancy_skulls.app: + "/fancy_skulls.app": - when: - os: mac store: steam - /fancy_skulls.exe: + "/fancy_skulls.exe": - when: - os: windows store: steam - /fancy_skulls.x86: + "/fancy_skulls.x86": - when: - os: linux store: steam - /fancy_skulls.x86_64: + "/fancy_skulls.x86_64": - when: - bit: 64 os: linux @@ -191955,7 +192493,7 @@ Fant Kids Animated Puzzle: installDir: Fant Kids Animated Puzzle: {} launch: - /Fant Kids Animated Puzzle.exe: + "/Fant Kids Animated Puzzle.exe": - when: - os: windows store: steam @@ -191965,11 +192503,11 @@ Fant Kids Matching Game: installDir: Fant Kids Matching Game: {} launch: - /Fant Kids Matching Game.exe: + "/Fant Kids Matching Game.exe": - when: - os: windows store: steam - /FantKidsMatchingGame.app: + "/FantKidsMatchingGame.app": - when: - os: mac store: steam @@ -191979,12 +192517,12 @@ Fantasia of the Wind: installDir: Fantasia of the Wind: {} launch: - /FantasiaOfWind.app/Contents/MacOS/nwjs: + "/FantasiaOfWind.app/Contents/MacOS/nwjs": - when: - os: mac store: steam - /FantasiaOfWind.exe: - - arguments: ' --in-process-gpu' + "/FantasiaOfWind.exe": + - arguments: " --in-process-gpu" when: - os: windows store: steam @@ -191994,12 +192532,12 @@ Fantasia of the Wind 2: installDir: Fantasia of the Wind 2: {} launch: - /FantasiaOfWind2.app: + "/FantasiaOfWind2.app": - when: - os: mac store: steam - /FantasiaOfWind2.exe: - - arguments: ' --in-process-gpu' + "/FantasiaOfWind2.exe": + - arguments: " --in-process-gpu" when: - bit: 64 os: windows @@ -192008,12 +192546,12 @@ Fantasia of the Wind 2: id: 1006400 Fantasian: files: - /Library/Containers/com.mistwalkercorp.fantasian/Data/Library/Application Support/FANTASIAN: + "/Library/Containers/com.mistwalkercorp.fantasian/Data/Library/Application Support/FANTASIAN": tags: - save when: - os: mac - /Library/Preferences/com.mistwalkercorp.fantasian.plist: + "/Library/Preferences/com.mistwalkercorp.fantasian.plist": tags: - config when: @@ -192023,7 +192561,7 @@ Fantasization: id: 708200 Fantastic 4: files: - /Activision/Fantastic Four: + "/Activision/Fantastic Four": tags: - config - save @@ -192037,7 +192575,7 @@ Fantastic 4 In A Row 2: installDir: Fantastic 4 In A Row 2: {} launch: - /Fantastic4InARow2.exe: + "/Fantastic4InARow2.exe": - when: - os: windows store: steam @@ -192052,7 +192590,7 @@ Fantastic Checkers 2: installDir: Fantastic Checkers 2: {} launch: - /FantasticCheckers2.exe: + "/FantasticCheckers2.exe": - when: - os: windows store: steam @@ -192062,7 +192600,7 @@ Fantastic Contraption: installDir: Fantastic Contraption: {} launch: - /FantasticContraption.app: + "/FantasticContraption.app": - when: - os: mac store: steam @@ -192072,16 +192610,16 @@ Fantastic Creatures - 四靈文明: installDir: Fantastic Creatures: {} launch: - /Fantastic Creatures.app/Contents/MacOS/Fantastic Creatures: + "/Fantastic Creatures.app/Contents/MacOS/Fantastic Creatures": - when: - os: mac store: steam - /Fantastic Creatures.exe: + "/Fantastic Creatures.exe": - when: - bit: 64 os: windows store: steam - /Fantastic Creatures.x86_64: + "/Fantastic Creatures.x86_64": - when: - bit: 64 os: linux @@ -192092,7 +192630,7 @@ Fantastic Pinball Thrills: installDir: Fantastic Pinball Thrills: {} launch: - /FantasticPinballThrills.exe: + "/FantasticPinballThrills.exe": - when: - os: windows store: steam @@ -192102,7 +192640,7 @@ Fantastic Sea: installDir: Fantastic Sea: {} launch: - /FantasticSea.exe: + "/FantasticSea.exe": - when: - os: windows store: steam @@ -192112,11 +192650,11 @@ Fantasy & Blade: installDir: Fantasy & Blade: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam - /nw: + "/nw": - when: - os: linux store: steam @@ -192126,7 +192664,7 @@ Fantasy & Blade II: installDir: Fantasy & Blade Ⅱ: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: @@ -192135,7 +192673,7 @@ Fantasy Ball: installDir: Fantasy Ball: {} launch: - /Fantasy Ball.exe: + "/Fantasy Ball.exe": - when: - os: windows store: steam @@ -192145,7 +192683,7 @@ Fantasy Battles: installDir: Fantasy Battles: {} launch: - /FantasyBattles.exe: + "/FantasyBattles.exe": - when: - os: windows store: steam @@ -192155,7 +192693,7 @@ Fantasy Battles (2019): installDir: Fantasy Battles: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -192165,7 +192703,7 @@ Fantasy Blacksmith: installDir: Fantasy Blacksmith: {} launch: - /FantasyBlacksmith.exe: + "/FantasyBlacksmith.exe": - when: - os: windows store: steam @@ -192178,7 +192716,7 @@ Fantasy Defense: installDir: Fantasy Defense: {} launch: - /Fantasy Defense.exe: + "/Fantasy Defense.exe": - when: - os: windows store: steam @@ -192188,7 +192726,7 @@ Fantasy ERA: installDir: Fantasy_ERA: {} launch: - /FantasyERA.exe: + "/FantasyERA.exe": - when: - os: windows store: steam @@ -192200,7 +192738,7 @@ Fantasy Empires: installDir: Fantasy Empires: {} launch: - /Launcher/Launcher.exe: + "/Launcher/Launcher.exe": - when: - store: steam steam: @@ -192209,30 +192747,30 @@ Fantasy Fairways: installDir: Fantasy Fairways: {} launch: - /Fantasy Fairways OSX.app: + "/Fantasy Fairways OSX.app": - when: - os: mac store: steam - /FantasyFairways.exe: + "/FantasyFairways.exe": - when: - os: windows store: steam steam: id: 552690 -'Fantasy Farming: Orange Season': +"Fantasy Farming: Orange Season": installDir: OrangeSeason: {} launch: - /Game.app: + "/Game.app": - when: - os: mac store: steam - /nw: + "/nw": - when: - os: linux store: steam - /nw.exe: - - arguments: '--in-process-gpu --ignore-gpu-blacklist' + "/nw.exe": + - arguments: "--in-process-gpu --ignore-gpu-blacklist" when: - os: windows store: steam @@ -192240,12 +192778,12 @@ Fantasy Fairways: id: 416000 Fantasy General: files: - /DAT/PREFS.DAT: + "/DAT/PREFS.DAT": tags: - config when: - os: dos - /SAVES: + "/SAVES": tags: - save when: @@ -192255,8 +192793,8 @@ Fantasy General: installDir: Fantasy General: {} launch: - /DOSBOX/DOSBox.exe: - - arguments: '-noconsole -conf fg-base.conf -conf fg-graphics.conf -conf fg-game.conf' + "/DOSBOX/DOSBox.exe": + - arguments: "-noconsole -conf fg-base.conf -conf fg-graphics.conf -conf fg-game.conf" when: - os: windows store: steam @@ -192264,12 +192802,12 @@ Fantasy General: id: 1741120 Fantasy General II: files: - /My Games/Fantasy General II/Custom.fg2settings: + "/My Games/Fantasy General II/Custom.fg2settings": tags: - config when: - os: windows - /My Games/Fantasy General II/Savegames: + "/My Games/Fantasy General II/Savegames": tags: - save when: @@ -192278,12 +192816,12 @@ Fantasy General II: id: 1090255211 id: steamExtra: - - 1193871 - 1193870 + - 1193871 installDir: Fantasy General II: {} launch: - /Launcher.exe: + "/Launcher.exe": - when: - store: steam registry: @@ -192296,7 +192834,7 @@ Fantasy Girl: installDir: Fantasy Girl: {} launch: - /Fantasy Girl.exe: + "/Fantasy Girl.exe": - when: - os: windows store: steam @@ -192306,7 +192844,7 @@ Fantasy Girl Puzzle: installDir: Fantasy Girl Puzzle: {} launch: - /FGP1.exe: + "/FGP1.exe": - when: - os: windows store: steam @@ -192316,11 +192854,11 @@ Fantasy Gladiators: installDir: Fantasy Gladiators: {} launch: - /FGContentMac.app: + "/FGContentMac.app": - when: - os: mac store: steam - /GladiatorGame.exe: + "/GladiatorGame.exe": - when: - os: windows store: steam @@ -192597,11 +193135,11 @@ Fantasy Grounds: installDir: Fantasy Grounds: {} launch: - /FGSteamLauncher.exe: + "/FGSteamLauncher.exe": - when: - os: windows store: steam - /FantasyGrounds.app: + "/FantasyGrounds.app": - when: - os: mac store: steam @@ -192611,7 +193149,7 @@ Fantasy Hero Manager: installDir: Fantasy Hero Manager: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -192621,7 +193159,7 @@ Fantasy Heroes: installDir: Fantasy Heroes: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: @@ -192630,7 +193168,7 @@ Fantasy Island: installDir: Fantasy Island: {} launch: - /FantasyIsland.exe: + "/FantasyIsland.exe": - when: - os: windows store: steam @@ -192640,7 +193178,7 @@ Fantasy Kingdom Simulator: installDir: Fantasy Kingdom Simulator: {} launch: - /fantasysim.exe: + "/fantasysim.exe": - when: - store: steam steam: @@ -192654,15 +193192,15 @@ Fantasy Monarch: installDir: Fantasy Monarch: {} launch: - /Fantasy Monarch.exe: + "/Fantasy Monarch.exe": - when: - os: windows store: steam steam: id: 949680 -'Fantasy Mosaics 14: Fourth Color': +"Fantasy Mosaics 14: Fourth Color": files: - /fantasy_mosaics_14: + "/fantasy_mosaics_14": tags: - save when: @@ -192670,137 +193208,137 @@ Fantasy Monarch: installDir: Fantasy Mosaics 14 Fourth Color: {} launch: - /fantasy_mosaics_14.exe: + "/fantasy_mosaics_14.exe": - when: - os: windows store: steam steam: id: 487020 -'Fantasy Mosaics 15: Ancient Land': +"Fantasy Mosaics 15: Ancient Land": installDir: Fantasy Mosaics 15 Ancient Land: {} launch: - /fantasy_mosaics_15.exe: + "/fantasy_mosaics_15.exe": - when: - os: windows store: steam steam: id: 656660 -'Fantasy Mosaics 16: Six Colors in Wonderland': +"Fantasy Mosaics 16: Six Colors in Wonderland": installDir: Fantasy Mosaics 16 Six Colors in Wonderland: {} launch: - /fantasy_mosaics_16.exe: + "/fantasy_mosaics_16.exe": - when: - os: windows store: steam steam: id: 658800 -'Fantasy Mosaics 17: New Palette': +"Fantasy Mosaics 17: New Palette": installDir: Fantasy Mosaics 17 New Palette: {} launch: - /fantasy_mosaics_17.exe: + "/fantasy_mosaics_17.exe": - when: - os: windows store: steam steam: id: 659890 -'Fantasy Mosaics 18: Explore New Colors': +"Fantasy Mosaics 18: Explore New Colors": installDir: Fantasy Mosaics 18 Explore New Colors: {} launch: - /fantasy_mosaics_18.exe: + "/fantasy_mosaics_18.exe": - when: - os: windows store: steam steam: id: 660030 -'Fantasy Mosaics 19: Edge of the World': +"Fantasy Mosaics 19: Edge of the World": installDir: Fantasy Mosaics 19 Edge of the World: {} launch: - /fantasy_mosaics_19.exe: + "/fantasy_mosaics_19.exe": - when: - os: windows store: steam steam: id: 795940 -'Fantasy Mosaics 20: Castle of Puzzles': +"Fantasy Mosaics 20: Castle of Puzzles": installDir: Fantasy Mosaics 20 Castle of Puzzles: {} launch: - /fantasy_mosaics_20.exe: + "/fantasy_mosaics_20.exe": - when: - os: windows store: steam steam: id: 796490 -'Fantasy Mosaics 21: On the Movie Set': +"Fantasy Mosaics 21: On the Movie Set": installDir: Fantasy Mosaics 21 On the Movie Set: {} launch: - /fantasy_mosaics_21.exe: + "/fantasy_mosaics_21.exe": - when: - os: windows store: steam steam: id: 797300 -'Fantasy Mosaics 22: Summer Vacation': +"Fantasy Mosaics 22: Summer Vacation": installDir: Fantasy Mosaics 22 Summer Vacation: {} launch: - /fantasy_mosaics_22.exe: + "/fantasy_mosaics_22.exe": - when: - os: windows store: steam steam: id: 797310 -'Fantasy Mosaics 23: Magic Forest': +"Fantasy Mosaics 23: Magic Forest": installDir: Fantasy Mosaics 23 Magic Forest: {} launch: - /fantasy_mosaics_23.exe: + "/fantasy_mosaics_23.exe": - when: - os: windows store: steam steam: id: 797330 -'Fantasy Mosaics 24: Deserted Island': +"Fantasy Mosaics 24: Deserted Island": installDir: Fantasy Mosaics 24 Deserted Island: {} launch: - /fantasy_mosaics_24.exe: + "/fantasy_mosaics_24.exe": - when: - os: windows store: steam steam: id: 797340 -'Fantasy Mosaics 25: Wedding Ceremony': +"Fantasy Mosaics 25: Wedding Ceremony": installDir: Fantasy Mosaics 25 Wedding Ceremony: {} launch: - /fantasy_mosaics_25.exe: + "/fantasy_mosaics_25.exe": - when: - os: windows store: steam steam: id: 797350 -'Fantasy Mosaics 26: Fairytale Garden': +"Fantasy Mosaics 26: Fairytale Garden": installDir: Fantasy Mosaics 26 Fairytale Garden: {} launch: - /fantasy_mosaics_26.exe: + "/fantasy_mosaics_26.exe": - when: - os: windows store: steam steam: id: 797440 -'Fantasy Mosaics 27: Secret Colors': +"Fantasy Mosaics 27: Secret Colors": installDir: Fantasy Mosaics 27 Secret Colors: {} launch: - /fantasy_mosaics_27.exe: + "/fantasy_mosaics_27.exe": - when: - os: windows store: steam @@ -192810,11 +193348,11 @@ Fantasy Quest Solitiare: installDir: Fantasy Quest Solitaire: {} launch: - /FantasySolitaire.app/Contents/MacOS/FantasySolitaire: + "/FantasySolitaire.app/Contents/MacOS/FantasySolitaire": - when: - os: mac store: steam - /FantasySolitaire.exe: + "/FantasySolitaire.exe": - when: - os: windows store: steam @@ -192824,11 +193362,11 @@ Fantasy Raiders: installDir: Fantasy Raiders: {} launch: - /Fantasy Raiders.app: + "/Fantasy Raiders.app": - when: - os: mac store: steam - /Fantasy Raiders.exe: + "/Fantasy Raiders.exe": - when: - bit: 64 os: windows @@ -192839,7 +193377,7 @@ Fantasy Realm TD: installDir: Fantasy Realm TD: {} launch: - /Fantasy Realm TD Tower Defense Game.exe: + "/Fantasy Realm TD Tower Defense Game.exe": - when: - os: windows store: steam @@ -192852,7 +193390,7 @@ Fantasy Sino-Japanese War 幻想甲午: installDir: Fantasy Sino-Japanese War 幻想甲午: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -192865,16 +193403,16 @@ Fantasy Strike: installDir: Fantasy Strike: {} launch: - /FS_Linux.bin: + "/FS_Linux.bin": - when: - bit: 64 os: linux store: steam - /FS_Mac.app: + "/FS_Mac.app": - when: - os: mac store: steam - /FS_Win64.exe: + "/FS_Win64.exe": - when: - bit: 64 os: windows @@ -192885,30 +193423,24 @@ Fantasy TD - Dragon Knights: installDir: FantasyTD: {} launch: - /bin/TowerDefenseBase.exe: + "/bin/TowerDefenseBase.exe": - when: - os: windows store: steam - workingDir: /bin + workingDir: "/bin" steam: id: 599900 Fantasy Tales Online: installDir: Fantasy Tales Online: {} launch: - /FantasyTalesOnline.app/Contents/MacOS/jre/bin/java: - - arguments: >- - -Xmx1g -Xdock:icon=./data/misc/icon/fto128.jpg -Djava.library.path=lib -Djava.net.preferIPv4Stack=true -cp - jar/FtoClientClass.jar:jar/FtoClientClassPath.jar:jar/FtoUpdater.jar:jar/jogg-0.0.7.jar:jar/jorbis-0.0.15.jar:jar/lwjgl.jar:jar/slick.jar:jar/steamworks4j-1.2.3.jar - FTO.FtoClient --appendlog=FtoRunLog + "/FantasyTalesOnline.app/Contents/MacOS/jre/bin/java": + - arguments: "-Xmx1g -Xdock:icon=./data/misc/icon/fto128.jpg -Djava.library.path=lib -Djava.net.preferIPv4Stack=true -cp jar/FtoClientClass.jar:jar/FtoClientClassPath.jar:jar/FtoUpdater.jar:jar/jogg-0.0.7.jar:jar/jorbis-0.0.15.jar:jar/lwjgl.jar:jar/slick.jar:jar/steamworks4j-1.2.3.jar FTO.FtoClient --appendlog=FtoRunLog" when: - os: mac store: steam - /jre/bin/javaw.exe: - - arguments: >- - -Xmx1g -Djava.library.path=lib -Djava.net.preferIPv4Stack=true -cp - jar\\FtoClientClass.jar;jar\\FtoClientClassPath.jar;jar\\FtoUpdater.jar;jar\\jogg-0.0.7.jar;jar\\jorbis-0.0.15.jar;jar\\lwjgl.jar;jar\\slick.jar;jar\\steamworks4j-1.2.3.jar - FTO.FtoClient --appendlog=FtoRunLog + "/jre/bin/javaw.exe": + - arguments: "-Xmx1g -Djava.library.path=lib -Djava.net.preferIPv4Stack=true -cp jar\\\\FtoClientClass.jar;jar\\\\FtoClientClassPath.jar;jar\\\\FtoUpdater.jar;jar\\\\jogg-0.0.7.jar;jar\\\\jorbis-0.0.15.jar;jar\\\\lwjgl.jar;jar\\\\slick.jar;jar\\\\steamworks4j-1.2.3.jar FTO.FtoClient --appendlog=FtoRunLog" when: - os: windows store: steam @@ -192916,7 +193448,7 @@ Fantasy Tales Online: id: 442710 Fantasy Versus: files: - /FantasyVersus_Data/SaveFile.dat: + "/FantasyVersus_Data/SaveFile.dat": tags: - save when: @@ -192924,7 +193456,7 @@ Fantasy Versus: installDir: Fantasy Versus: {} launch: - /FantasyVersus.exe: + "/FantasyVersus.exe": - when: - os: windows store: steam @@ -192932,7 +193464,7 @@ Fantasy Versus: id: 787400 Fantasy Wars: files: - /Fantasy Wars/Profiles: + "/Fantasy Wars/Profiles": tags: - config - save @@ -192943,7 +193475,7 @@ Fantasy Wars: installDir: Fantasy Wars: {} launch: - /FantasyWars.exe: + "/FantasyWars.exe": - when: - os: windows store: steam @@ -192952,15 +193484,15 @@ Fantasy Wars: Fantasy World: steam: id: 708790 -'Fantasy World: A Land Torn Asunder': +"Fantasy World: A Land Torn Asunder": installDir: Fantasy Realm: {} launch: - /Game.app: + "/Game.app": - when: - os: mac store: steam - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -192970,7 +193502,7 @@ Fantasy of Eden: installDir: FantasyofEden: {} launch: - /FantasyofEden.exe: + "/FantasyofEden.exe": - when: - os: windows store: steam @@ -192980,21 +193512,21 @@ Fantasy of Expedition: installDir: Fantasy of Expedition: {} launch: - /Contents/MacOS/FOE: + "/Contents/MacOS/FOE": - when: - os: mac store: steam - /FOE.exe: + "/FOE.exe": - when: - os: windows store: steam steam: id: 780670 -'FantasyDynasty: Le château DERETIC': +"FantasyDynasty: Le château DERETIC": installDir: FantasyDynasty Le château DERETIC: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -193004,7 +193536,7 @@ Fantasya Final Definitiva Remake: installDir: Fantasya Final Definitiva REMAKE: {} launch: - /RPG_RT.exe: + "/RPG_RT.exe": - when: - os: windows store: steam @@ -193014,13 +193546,13 @@ Fantasyland: installDir: Fantasyland: {} launch: - /Fantasyland.exe: + "/Fantasyland.exe": - when: - os: windows store: steam steam: id: 833300 -'Fantasynth: Chez Nous': +"Fantasynth: Chez Nous": installDir: Fantasynth: {} steam: @@ -193029,7 +193561,7 @@ Fantom Feast: installDir: Fantom Feast: {} launch: - /Fantom Feast.exe: + "/Fantom Feast.exe": - when: - store: steam steam: @@ -193038,7 +193570,7 @@ Fap Queen: installDir: Fap Queen: {} launch: - /FQ.exe: + "/FQ.exe": - when: - os: windows store: steam @@ -193048,7 +193580,7 @@ Fap Queen 2: installDir: Fap Queen 2: {} launch: - /Fap Queen 2.exe: + "/Fap Queen 2.exe": - when: - store: steam steam: @@ -193057,7 +193589,7 @@ Fapic: installDir: Fapic: {} launch: - /A Fans Epic.exe: + "/A Fans Epic.exe": - when: - store: steam steam: @@ -193066,12 +193598,12 @@ Far Away: installDir: 海沙风云: {} launch: - /海沙风云.exe: + "/海沙风云.exe": - when: - store: steam steam: id: 1250760 -'Far Beyond: A Space Odyssey': +"Far Beyond: A Space Odyssey": installDir: Far Beyond A space odyssey: {} steam: @@ -193081,7 +193613,7 @@ Far Cnight: id: 841100 Far Cry: files: - /Profiles/player//savegames: + "/Profiles/player//savegames": tags: - save when: @@ -193091,27 +193623,27 @@ Far Cry: installDir: FarCry: {} launch: - /Bin32/FarCry.exe: + "/Bin32/FarCry.exe": - when: - store: steam - /Bin32/FarCryConfigurator.exe: + "/Bin32/FarCryConfigurator.exe": - when: - store: steam steam: id: 13520 Far Cry 2: files: - /My Games/Far Cry 2/GamerProfile.xml: + "/My Games/Far Cry 2/GamerProfile.xml": tags: - config when: - os: windows - /My Games/Far Cry 2/Saved Games: + "/My Games/Far Cry 2/Saved Games": tags: - save when: - os: windows - /My Games/Far Cry 2/InputUserActionMap.xml: + "/My Games/Far Cry 2/InputUserActionMap.xml": tags: - config when: @@ -193121,38 +193653,38 @@ Far Cry 2: installDir: Far Cry 2: {} launch: - /bin/FC2BenchmarkTool.exe: + "/bin/FC2BenchmarkTool.exe": - when: - store: steam - workingDir: /bin - /bin/FC2Editor.exe: + workingDir: "/bin" + "/bin/FC2Editor.exe": - when: - store: steam - workingDir: /bin - /bin/FC2ServerLauncher.exe: + workingDir: "/bin" + "/bin/FC2ServerLauncher.exe": - when: - store: steam - workingDir: /bin - /bin/FarCry2.exe: + workingDir: "/bin" + "/bin/FarCry2.exe": - when: - store: steam - workingDir: /bin + workingDir: "/bin" steam: id: 19900 Far Cry 3: files: - /savegames//46: + "/savegames//46": tags: - save when: - os: windows store: uplay - /My Games/Far Cry 3/GamerProfile.xml: + "/My Games/Far Cry 3/GamerProfile.xml": tags: - config when: - os: windows - /My Games/Far Cry 3/InputUserActionMap.xml: + "/My Games/Far Cry 3/InputUserActionMap.xml": tags: - config when: @@ -193163,68 +193695,69 @@ Far Cry 3: installDir: Far Cry 3: {} launch: - /bin/FC3UpdaterSteam.exe: - - arguments: '-uplay_steam_mode ' + "/bin/FC3UpdaterSteam.exe": + - arguments: "-uplay_steam_mode " when: - os: windows store: steam - workingDir: /bin + workingDir: "/bin" steam: id: 220240 Far Cry 3 Blood Dragon: files: - /savegames//205: + "/savegames//205": tags: - save when: - store: uplay - /My Games/Far Cry 3 Blood Dragon/GamerProfile.xml: + "/My Games/Far Cry 3 Blood Dragon/GamerProfile.xml": tags: - config when: - os: windows - /My Games/Far Cry 3 Blood Dragon/InputUserActionMap.xml: + "/My Games/Far Cry 3 Blood Dragon/InputUserActionMap.xml": tags: - config when: - os: windows - /Orbit/205: + "/Orbit/205": tags: - save when: - - store: steam + - os: windows + store: steam installDir: Far Cry 3 Blood Dragon: {} launch: - /bin/FC3BDUpdaterSteam.exe: - - arguments: '-uplay_steam_mode' + "/bin/FC3BDUpdaterSteam.exe": + - arguments: "-uplay_steam_mode" when: - os: windows store: steam - workingDir: /bin + workingDir: "/bin" steam: id: 233270 Far Cry 4: files: - /savegames//420: + "/savegames//420": tags: - save when: - os: windows store: uplay - /savegames//856: + "/savegames//856": tags: - save when: - os: windows store: uplay - /savegames//971: + "/savegames//971": tags: - save when: - os: windows store: uplay - /My Games/Far Cry 4//*.xml: + "/My Games/Far Cry 4//*.xml": tags: - config when: @@ -193232,8 +193765,8 @@ Far Cry 4: installDir: Far Cry 4: {} launch: - /bin/FarCry4.exe: - - arguments: '-uplay_steam_mode' + "/bin/FarCry4.exe": + - arguments: "-uplay_steam_mode" when: - bit: 64 os: windows @@ -193242,17 +193775,17 @@ Far Cry 4: id: 298110 Far Cry 5: files: - /savegames//1803: + "/savegames//1803": tags: - save when: - store: uplay - /savegames//4311: + "/savegames//4311": tags: - save when: - - store: uplay - /My Games/Far Cry 5/*.xml: + - store: steam + "/My Games/Far Cry 5/*.xml": tags: - config when: @@ -193263,43 +193796,43 @@ Far Cry 5: id: 552520 Far Cry 6: files: - /savegames//5266: + "/savegames//5266": tags: - save when: - os: windows store: uplay - /My Games/Far Cry 6: + "/My Games/Far Cry 6": tags: - config when: - os: windows id: steamExtra: - - 2369472 - - 2369470 - - 2369458 - - 2369456 - - 2369454 - 2369450 + - 2369454 + - 2369456 + - 2369458 + - 2369470 + - 2369472 installDir: Far Cry 6: {} launch: - /bin/FarCry6.exe: - - arguments: '-uplay_steam_mode' + "/bin/FarCry6.exe": + - arguments: "-uplay_steam_mode" when: - store: steam steam: id: 2369390 Far Cry New Dawn: files: - /savegames//5210: + "/savegames//5210": tags: - save when: - os: windows store: uplay - /My Games/Far Cry New Dawn/*.xml: + "/My Games/Far Cry New Dawn/*.xml": tags: - config when: @@ -193314,8 +193847,8 @@ Far Cry New Dawn: installDir: Far Cry New Dawn: {} launch: - /bin/FarCryNewDawn.exe: - - arguments: '-uplay_steam_mode' + "/bin/FarCryNewDawn.exe": + - arguments: "-uplay_steam_mode" when: - bit: 64 os: windows @@ -193324,17 +193857,17 @@ Far Cry New Dawn: id: 939960 Far Cry Primal: files: - /savegames//2010: + "/savegames//2010": tags: - save when: - store: uplay - /savegames//2029: + "/savegames//2029": tags: - save when: - - store: uplay - /My Games/Far Cry Primal/*.xml: + - store: steam + "/My Games/Far Cry Primal/*.xml": tags: - config when: @@ -193342,8 +193875,8 @@ Far Cry Primal: installDir: Far Cry Primal: {} launch: - /bin/FCPrimal.exe: - - arguments: '-uplay_steam_mode' + "/bin/FCPrimal.exe": + - arguments: "-uplay_steam_mode" when: - store: steam steam: @@ -193352,7 +193885,7 @@ Far From Orbit: installDir: Far From Orbit: {} launch: - /Far From Orbit.exe: + "/Far From Orbit.exe": - when: - os: windows store: steam @@ -193368,11 +193901,11 @@ Far from Noise: installDir: FarFromNoise: {} launch: - /FarFromNoise.app/Contents/MacOS/FarFromNoise: + "/FarFromNoise.app/Contents/MacOS/FarFromNoise": - when: - os: mac store: steam - /FarFromNoise.exe: + "/FarFromNoise.exe": - when: - os: windows store: steam @@ -193383,32 +193916,32 @@ Far-Out: id: 389860 FarSky: files: - /.FarSky: + "/.FarSky": tags: - config when: - os: linux - /.FarSky/save: + "/.FarSky/save": tags: - save when: - os: linux - /Library/.FarSky: + "/Library/.FarSky": tags: - config when: - os: mac - /Library/.FarSky/save: + "/Library/.FarSky/save": tags: - save when: - os: mac - /FarSky: + "/FarSky": tags: - config when: - os: windows - /FarSky/save: + "/FarSky/save": tags: - save when: @@ -193416,15 +193949,15 @@ FarSky: installDir: FarSky: {} launch: - /FarSky.sh: + "/FarSky.sh": - when: - os: linux store: steam - /farskyExec.app: + "/farskyExec.app": - when: - os: mac store: steam - /farskyExec.exe: + "/farskyExec.exe": - when: - os: windows store: steam @@ -193432,7 +193965,7 @@ FarSky: id: 286340 Farabel: files: - /AppData/LocalLow/Frogames/Farabel/Saves: + "/AppData/LocalLow/Frogames/Farabel/Saves": tags: - save when: @@ -193440,20 +193973,20 @@ Farabel: installDir: Farabel: {} launch: - /Farabel.app: + "/Farabel.app": - when: - os: mac store: steam - /Farabel.exe: + "/Farabel.exe": - when: - os: windows store: steam - /Farabel.x86: + "/Farabel.x86": - when: - bit: 32 os: linux store: steam - /Farabel.x86_64: + "/Farabel.x86_64": - when: - bit: 64 os: linux @@ -193469,12 +194002,12 @@ Farabel: id: 364200 Faraday Protocol: files: - /FaradayProtocol/Saved/Config/WindowsNoEditor: + "/FaradayProtocol/Saved/Config/WindowsNoEditor": tags: - save when: - os: windows - /FaradayProtocol/Saved/SaveGames: + "/FaradayProtocol/Saved/SaveGames": tags: - config when: @@ -193484,12 +194017,12 @@ Faraday Protocol: installDir: Faraday Protocol: {} launch: - /FaradayProtocol.exe: + "/FaradayProtocol.exe": - when: - bit: 64 os: windows store: steam - /FaradayProtocol.sh: + "/FaradayProtocol.sh": - when: - os: linux store: steam @@ -193499,7 +194032,7 @@ Faraway: installDir: Faraway: {} launch: - /Faraway.exe: + "/Faraway.exe": - when: - os: windows store: steam @@ -193509,25 +194042,25 @@ Faraway Islands: installDir: Faraway Islands: {} launch: - /Faraway Islands.exe: + "/Faraway Islands.exe": - when: - os: windows store: steam steam: id: 576060 -'Faraway: Director''s Cut': +"Faraway: Director's Cut": files: - /AppData/LocalLow/Pine Studio/Faraway_ Director's Cut/*.save: + "/AppData/LocalLow/Pine Studio/Faraway_ Director's Cut/*.save": tags: - save when: - os: windows - /unity3d/Pine Studio/Faraway_ Director's Cut/*.save: + "/unity3d/Pine Studio/Faraway_ Director's Cut/*.save": tags: - save when: - os: linux - /unity3d/Pine Studio/Faraway_ Director's Cut/prefs: + "/unity3d/Pine Studio/Faraway_ Director's Cut/prefs": tags: - config when: @@ -193535,20 +194068,20 @@ Faraway Islands: installDir: Faraway Directors Cut: {} launch: - /FarawayDirectorsCut: + "/FarawayDirectorsCut": - when: - os: linux store: steam - /FarawayDirectorsCut.app: + "/FarawayDirectorsCut.app": - when: - os: mac store: steam - /FarawayDirectorsCut.exe: + "/FarawayDirectorsCut.exe": - when: - os: windows store: steam registry: - 'HKEY_CURRENT_USER/SOFTWARE/Pine Studio/Faraway: Director''s Cut': + "HKEY_CURRENT_USER/SOFTWARE/Pine Studio/Faraway: Director's Cut": tags: - config steam: @@ -193557,15 +194090,15 @@ Fare Thee Well: installDir: Fare Thee Well: {} launch: - /Fare-Thee-Well.app: + "/Fare-Thee-Well.app": - when: - os: mac store: steam - /Fare-Thee-Well.exe: + "/Fare-Thee-Well.exe": - when: - os: windows store: steam - /Fare-Thee-Well.sh: + "/Fare-Thee-Well.sh": - when: - os: linux store: steam @@ -193575,7 +194108,7 @@ Fares: installDir: Fares: {} launch: - '/${Fares}.exe': + "/${Fares}.exe": - when: - os: windows store: steam @@ -193586,21 +194119,21 @@ Farhome: FarHomeVR: {} steam: id: 787550 -'Faria: Spiritbird': +"Faria: Spiritbird": installDir: FARIA Spiritbird: {} launch: - /FARIA.exe: - - arguments: '-fullscreen' + "/FARIA.exe": + - arguments: "-fullscreen" when: - store: steam steam: id: 723370 -'Fariwalk: The Prelude': +"Fariwalk: The Prelude": installDir: Fariwalk - The Prelude: {} launch: - /Fariwalk - The Prelude.exe: + "/Fariwalk - The Prelude.exe": - when: - store: steam steam: @@ -193609,11 +194142,11 @@ Farjob: installDir: Farjob: {} launch: - /Farjob.app/Contents/MacOS/Mac_Runner: + "/Farjob.app/Contents/MacOS/Mac_Runner": - when: - os: mac store: steam - /Farjob.exe: + "/Farjob.exe": - when: - os: windows store: steam @@ -193623,7 +194156,7 @@ Farkle Friends: installDir: Farkle Friends: {} launch: - /FarkleFriends.exe: + "/FarkleFriends.exe": - when: - bit: 64 os: windows @@ -193632,17 +194165,17 @@ Farkle Friends: id: 709590 Farlanders: files: - /.config/unity3d/Andriy Bychkovskyi/Farlanders/*.json: + "/.config/unity3d/Andriy Bychkovskyi/Farlanders/*.json": tags: - save when: - os: linux - /AppData/LocalLow/Andriy Bychkovskyi/Farlanders/*.json: + "/AppData/LocalLow/Andriy Bychkovskyi/Farlanders/*.json": tags: - save when: - os: windows - /Library/Application Support/Andriy Bychkovskyi/Farlanders/*.json: + "/Library/Application Support/Andriy Bychkovskyi/Farlanders/*.json": tags: - save when: @@ -193657,16 +194190,16 @@ Farlanders: installDir: Farlanders: {} launch: - /Farlanders.exe: + "/Farlanders.exe": - when: - bit: 64 os: windows store: steam - /farlanders-macos.app: + "/farlanders-macos.app": - when: - os: mac store: steam - /farlanders.x86_64: + "/farlanders.x86_64": - when: - bit: 64 os: linux @@ -193675,7 +194208,7 @@ Farlanders: id: 1318740 Farlight 84: files: - /Solarland/Saved/Config/WindowsClient: + "/Solarland/Saved/Config/WindowsClient": tags: - config when: @@ -193683,7 +194216,7 @@ Farlight 84: installDir: Farlight 84: {} launch: - /start_protected_game.exe: + "/start_protected_game.exe": - when: - os: windows store: steam @@ -193691,12 +194224,12 @@ Farlight 84: id: 1928420 Farlight Explorers: files: - /FarlightExplorers/Saved/Config/WindowsNoEditor: + "/FarlightExplorers/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /FarlightExplorers/Saved/SaveGames: + "/FarlightExplorers/Saved/SaveGames": tags: - save when: @@ -193704,7 +194237,7 @@ Farlight Explorers: installDir: Farlight Explorers: {} launch: - /FarlightExplorers.exe: + "/FarlightExplorers.exe": - when: - os: windows store: steam @@ -193714,7 +194247,7 @@ Farm Business: installDir: Farm Business: {} launch: - /Farm Business.exe: + "/Farm Business.exe": - when: - os: windows store: steam @@ -193727,7 +194260,7 @@ Farm Expert 2017: installDir: Farm Expert 2017: {} launch: - /FE2017.exe: + "/FE2017.exe": - when: - os: windows store: steam @@ -193738,7 +194271,7 @@ Farm Folks: id: 895160 Farm Frenzy: files: - 'C:/ProgramData/Farm Frenzy': + "C:/ProgramData/Farm Frenzy": tags: - config when: @@ -193746,7 +194279,7 @@ Farm Frenzy: installDir: Farm Frenzy: {} launch: - /farm.exe: + "/farm.exe": - when: - store: steam steam: @@ -193755,7 +194288,7 @@ Farm Frenzy 2: installDir: Farm Frenzy 2: {} launch: - /farm2.exe: + "/farm2.exe": - when: - store: steam steam: @@ -193764,16 +194297,16 @@ Farm Frenzy 3: installDir: Farm Frenzy 3: {} launch: - /FarmFrenzy3.exe: + "/FarmFrenzy3.exe": - when: - store: steam steam: id: 38150 -'Farm Frenzy 3: American Pie': +"Farm Frenzy 3: American Pie": installDir: Farm Frenzy 3 American Pie: {} launch: - /FarmFrenzy3_America.exe: + "/FarmFrenzy3_America.exe": - when: - store: steam steam: @@ -193782,11 +194315,11 @@ Farm Frenzy 4: installDir: Farm Frenzy 4: {} launch: - /FarmFrenzy4.app: + "/FarmFrenzy4.app": - when: - os: mac store: steam - /FarmFrenzy4.exe: + "/FarmFrenzy4.exe": - when: - os: windows store: steam @@ -193796,55 +194329,58 @@ Farm Frenzy Collection: installDir: Farm Frenzy Collection: {} launch: - /FarmFrenzyMegaPack.exe: + "/FarmFrenzyMegaPack.exe": - when: - os: windows store: steam steam: id: 391000 -'Farm Frenzy: Heave Ho': +"Farm Frenzy: Heave Ho": installDir: Farm Frenzy Heave Ho: {} launch: - /Farm Frenzy Heave Ho.app: + "/Farm Frenzy Heave Ho.app": - when: - os: mac store: steam - /FarmFrenzy_HeaveHo.exe: + "/FarmFrenzy_HeaveHo.exe": - when: - os: windows store: steam steam: id: 395930 -'Farm Frenzy: Hurricane Season': +"Farm Frenzy: Hurricane Season": installDir: Farm Frenzy Hurricane Season: {} launch: - /FarmFrenzyHurricaneSeason.exe: + "/FarmFrenzyHurricaneSeason.exe": - when: - os: windows store: steam - /FarmFrenzy_HurricaneSeason.app: + "/FarmFrenzy_HurricaneSeason.app": - when: - os: mac store: steam steam: id: 361930 -'Farm Frenzy: Pizza Party': +"Farm Frenzy: Pizza Party": installDir: Farm Frenzy Pizza Party: {} launch: - /FarmFrenzyPizzaParty.exe: + "/FarmFrenzyPizzaParty.exe": - when: - store: steam steam: id: 38140 -'Farm Life: Natures Adventure': +"Farm Life: Natures Adventure": installDir: Farm Life Natures Adventure: {} launch: - /nw.exe: + "/nw.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam @@ -193854,14 +194390,14 @@ Farm Machines Championships 2014: installDir: FMC 2014: {} launch: - /FMC2014.exe: + "/FMC2014.exe": - when: - store: steam steam: id: 284290 Farm Manager 2018: files: - /AppData/LocalLow/PlayWay/Farm Manager 2018/saves: + "/AppData/LocalLow/PlayWay/Farm Manager 2018/saves": tags: - save when: @@ -193869,7 +194405,7 @@ Farm Manager 2018: installDir: Farm Manager 2018: {} launch: - /Farm Manager 2018.exe: + "/Farm Manager 2018.exe": - when: - bit: 64 os: windows @@ -193880,7 +194416,7 @@ Farm Manager 2021: installDir: Farm Manager 2021: {} launch: - /FarmManager21.exe: + "/FarmManager21.exe": - when: - bit: 64 os: windows @@ -193891,16 +194427,16 @@ Farm Mania 2: installDir: Farm Mania 2: {} launch: - /Farm2.exe: + "/Farm2.exe": - when: - store: steam steam: id: 573710 -'Farm Mania: Hot Vacation': +"Farm Mania: Hot Vacation": installDir: Farm Mania Hot Vacation: {} launch: - /Farm.exe: + "/Farm.exe": - when: - store: steam steam: @@ -193912,7 +194448,7 @@ Farm Quest: installDir: Farm Quest: {} launch: - /FarmQuest.exe: + "/FarmQuest.exe": - when: - os: windows store: steam @@ -193922,15 +194458,15 @@ Farm Together: installDir: Farm Together: {} launch: - /FarmTogether: + "/FarmTogether": - when: - os: linux store: steam - /FarmTogether.app: + "/FarmTogether.app": - when: - os: mac store: steam - /FarmTogether.exe: + "/FarmTogether.exe": - when: - os: windows store: steam @@ -193940,7 +194476,7 @@ Farm Tribe: installDir: Farm Tribe: {} launch: - /FarmTribe.exe: + "/FarmTribe.exe": - when: - store: steam steam: @@ -193949,7 +194485,7 @@ Farm Tribe 2: installDir: Farm Tribe 2: {} launch: - /FarmTribe 2.exe: + "/FarmTribe 2.exe": - when: - os: windows store: steam @@ -193959,12 +194495,12 @@ Farm World: installDir: Farm World: {} launch: - /FarmWorld-STEAM-OSX.app/Contents/MacOS/FarmWorld-STEAM-OSX: + "/FarmWorld-STEAM-OSX.app/Contents/MacOS/FarmWorld-STEAM-OSX": - when: - os: mac store: steam - /FarmWorld-STEAM-Windows.exe: - - arguments: '-console' + "/FarmWorld-STEAM-Windows.exe": + - arguments: "-console" when: - os: windows store: steam @@ -193974,15 +194510,15 @@ Farm for your Life: installDir: Farm for your Life: {} launch: - /FarmForYourLife: + "/FarmForYourLife": - when: - os: linux store: steam - /FarmForYourLife.app: + "/FarmForYourLife.app": - when: - os: mac store: steam - /FarmForYourLife.exe: + "/FarmForYourLife.exe": - when: - os: windows store: steam @@ -193995,7 +194531,7 @@ FarmD: installDir: FarmD: {} launch: - /FarmD.exe: + "/FarmD.exe": - when: - os: windows store: steam @@ -194005,14 +194541,14 @@ Farmer Pug Dash: installDir: Farmer Pug Dash: {} launch: - /Farmer Pug Dash.exe: + "/Farmer Pug Dash.exe": - when: - store: steam steam: id: 1221830 -Farmer's Dynasty: +"Farmer's Dynasty": files: - /FarmersDynasty/Save: + "/FarmersDynasty/Save": tags: - config - save @@ -194021,32 +194557,32 @@ Farmer's Dynasty: gog: id: 1317256893 installDir: - Farmer's Dynasty: {} + "Farmer's Dynasty": {} launch: - /FarmersDynasty.exe: + "/FarmersDynasty.exe": - when: - os: windows store: steam steam: id: 678900 -Farmer's Fairy Tale: +"Farmer's Fairy Tale": installDir: - Farmer's Fairy Tale: {} + "Farmer's Fairy Tale": {} launch: - /FarmersFairyTale.exe: + "/FarmersFairyTale.exe": - when: - bit: 64 os: windows store: steam steam: id: 821820 -Farmer's Life: +"Farmer's Life": gog: id: 1997897783 installDir: - Farmer's Life: {} + "Farmer's Life": {} launch: - /FarmersLife.exe: + "/FarmersLife.exe": - when: - store: steam steam: @@ -194055,7 +194591,7 @@ Farming 6-in-1 bundle: installDir: Farming 6-in-1 bundle: {} launch: - /Farm6in1Bundle.exe: + "/Farm6in1Bundle.exe": - when: - os: windows store: steam @@ -194065,7 +194601,7 @@ Farming Giant: installDir: Farming Giant: {} launch: - /farminggiant.exe: + "/farminggiant.exe": - when: - store: steam steam: @@ -194074,20 +194610,20 @@ Farming Life: installDir: Farming Life: {} launch: - /Farming Life.exe: + "/Farming Life.exe": - when: - store: steam steam: id: 1031270 Farming Simulator 15: files: - /Library/Application/ Support/FarmingSimulator2015: + "/Library/Application/ Support/FarmingSimulator2015": tags: - config - save when: - os: mac - /My Games/FarmingSimulator2015: + "/My Games/FarmingSimulator2015": tags: - config - save @@ -194096,26 +194632,34 @@ Farming Simulator 15: installDir: Farming Simulator 15: {} launch: - /Farming Simulator 2015.app: + "/Farming Simulator 2015.app": - when: - bit: 64 os: mac store: steam - /x64/FarmingSimulator2015Game.exe: + "/x64/FarmingSimulator2015Game.exe": - when: - bit: 64 os: windows store: steam - /x86/FarmingSimulator2015Game.exe: + "/x86/FarmingSimulator2015Game.exe": - when: - bit: 32 os: windows store: steam steam: id: 313160 +Farming Simulator 16: + files: + /WindowsApps/GIANTSSoftware.FarmingSimulator16_1.1.2.8_x86__fa8jxm5fj0esw: + tags: + - save + when: + - os: windows + store: microsoft Farming Simulator 17: files: - /My Games/FarmingSimulator2017: + "/My Games/FarmingSimulator2017": tags: - config - save @@ -194124,17 +194668,17 @@ Farming Simulator 17: installDir: Farming Simulator 17: {} launch: - /Farming Simulator 2017.app: + "/Farming Simulator 2017.app": - when: - bit: 64 os: mac store: steam - /x64/FarmingSimulator2017Game.exe: + "/x64/FarmingSimulator2017Game.exe": - when: - bit: 64 os: windows store: steam - /x86/FarmingSimulator2017Game.exe: + "/x86/FarmingSimulator2017Game.exe": - when: - bit: 32 os: windows @@ -194143,22 +194687,22 @@ Farming Simulator 17: id: 447020 Farming Simulator 19: files: - /My Games/FarmingSimulator2019/game.xml: + "/My Games/FarmingSimulator2019/game.xml": tags: - config when: - os: windows - /My Games/FarmingSimulator2019/gameSettings.xml: + "/My Games/FarmingSimulator2019/gameSettings.xml": tags: - config when: - os: windows - /My Games/FarmingSimulator2019/inputBinding.xml: + "/My Games/FarmingSimulator2019/inputBinding.xml": tags: - config when: - os: windows - /My Games/FarmingSimulator2019/savegame*: + "/My Games/FarmingSimulator2019/savegame*": tags: - save when: @@ -194166,11 +194710,11 @@ Farming Simulator 19: installDir: Farming Simulator 19: {} launch: - /Farming Simulator 2019.app: + "/Farming Simulator 2019.app": - when: - os: mac store: steam - /x64/FarmingSimulator2019Game.exe: + "/x64/FarmingSimulator2019Game.exe": - when: - bit: 64 os: windows @@ -194179,56 +194723,56 @@ Farming Simulator 19: id: 787860 Farming Simulator 2008: files: - /FarmingSimulator2008/game.xml: + "/FarmingSimulator2008/game.xml": tags: - config when: - os: windows - /FarmingSimulator2008/savegame*: + "/FarmingSimulator2008/savegame*": tags: - save when: - os: windows Farming Simulator 2009: files: - /My Games/FarmingSimulator2009/game.xml: + "/My Games/FarmingSimulator2009/game.xml": tags: - config when: - os: windows - /My Games/FarmingSimulator2009/gameSettings.xml: + "/My Games/FarmingSimulator2009/gameSettings.xml": tags: - config when: - os: windows - /My Games/FarmingSimulator2009/inputBinding.xml: + "/My Games/FarmingSimulator2009/inputBinding.xml": tags: - config when: - os: windows - /My Games/FarmingSimulator2009/savegame*: + "/My Games/FarmingSimulator2009/savegame*": tags: - save when: - os: windows Farming Simulator 2011: files: - /My Games/FarmingSimulator2011/game.xml: + "/My Games/FarmingSimulator2011/game.xml": tags: - config when: - os: windows - /My Games/FarmingSimulator2011/gameSettings.xml: + "/My Games/FarmingSimulator2011/gameSettings.xml": tags: - config when: - os: windows - /My Games/FarmingSimulator2011/inputBinding.xml: + "/My Games/FarmingSimulator2011/inputBinding.xml": tags: - config when: - os: windows - /My Games/FarmingSimulator2011/savegame*: + "/My Games/FarmingSimulator2011/savegame*": tags: - save when: @@ -194236,12 +194780,12 @@ Farming Simulator 2011: installDir: Farming Simulator 2011: {} launch: - /FarmingSimulator2011.app: + "/FarmingSimulator2011.app": - when: - os: mac store: steam - /game.exe: - - arguments: '-name FarmingSimulator2011' + "/game.exe": + - arguments: "-name FarmingSimulator2011" when: - os: windows store: steam @@ -194249,22 +194793,22 @@ Farming Simulator 2011: id: 90200 Farming Simulator 2013: files: - /My Games/FarmingSimulator2013/game.xml: + "/My Games/FarmingSimulator2013/game.xml": tags: - config when: - os: windows - /My Games/FarmingSimulator2013/gameSettings.xml: + "/My Games/FarmingSimulator2013/gameSettings.xml": tags: - config when: - os: windows - /My Games/FarmingSimulator2013/inputBinding.xml: + "/My Games/FarmingSimulator2013/inputBinding.xml": tags: - config when: - os: windows - /My Games/FarmingSimulator2013/savegame*: + "/My Games/FarmingSimulator2013/savegame*": tags: - save when: @@ -194272,12 +194816,12 @@ Farming Simulator 2013: installDir: Farming Simulator 2013: {} launch: - /Farming Simulator 2013.app: + "/Farming Simulator 2013.app": - when: - os: mac store: steam - /FarmingSimulator2013Game.exe: - - arguments: '-name FarmingSimulator2013' + "/FarmingSimulator2013Game.exe": + - arguments: "-name FarmingSimulator2013" when: - os: windows store: steam @@ -194285,22 +194829,22 @@ Farming Simulator 2013: id: 220260 Farming Simulator 22: files: - /My Games/FarmingSimulator2022/game.xml: + "/My Games/FarmingSimulator2022/game.xml": tags: - config when: - os: windows - /My Games/FarmingSimulator2022/gameSettings.xml: + "/My Games/FarmingSimulator2022/gameSettings.xml": tags: - config when: - os: windows - /My Games/FarmingSimulator2022/inputBinding.xml: + "/My Games/FarmingSimulator2022/inputBinding.xml": tags: - config when: - os: windows - /My Games/FarmingSimulator2022/savegame*: + "/My Games/FarmingSimulator2022/savegame*": tags: - save when: @@ -194308,11 +194852,11 @@ Farming Simulator 22: installDir: Farming Simulator 22: {} launch: - /Farming Simulator 2022.app: + "/Farming Simulator 2022.app": - when: - os: mac store: steam - /x64/FarmingSimulator2022Game.exe: + "/x64/FarmingSimulator2022Game.exe": - when: - os: windows store: steam @@ -194322,7 +194866,7 @@ Farming Village: installDir: Farming Village: {} launch: - /FarmingVillage/FarmingVillage.exe: + "/FarmingVillage/FarmingVillage.exe": - when: - os: windows store: steam @@ -194332,11 +194876,11 @@ Farming World: installDir: Farming World: {} launch: - /FarmingWorld.app: + "/FarmingWorld.app": - when: - os: mac store: steam - /FarmingWorld.exe: + "/FarmingWorld.exe": - when: - os: windows store: steam @@ -194346,11 +194890,11 @@ Farmington County: installDir: Farmington County: {} launch: - /Farmington County.app: + "/Farmington County.app": - when: - os: mac store: steam - /Farmington County.exe: + "/Farmington County.exe": - when: - os: windows store: steam @@ -194360,7 +194904,7 @@ Farmington Tales: installDir: Farmington Tales: {} launch: - /Farmington Tales.exe: + "/Farmington Tales.exe": - when: - os: windows store: steam @@ -194370,17 +194914,17 @@ Farnham Fables: installDir: Farnham Fables: {} launch: - /FarnhamFables_Episode1.exe: + "/FarnhamFables_Episode1.exe": - when: - os: windows store: steam steam: id: 463110 -Faron's Fate: +"Faron's Fate": installDir: - Faron's Fate: {} + "Faron's Fate": {} launch: - /Launch_FaronsFate.exe: + "/Launch_FaronsFate.exe": - when: - os: windows store: steam @@ -194390,7 +194934,7 @@ Farplane Relic: installDir: Farplane Relic: {} launch: - /FarplaneRelic.exe: + "/FarplaneRelic.exe": - when: - os: windows store: steam @@ -194400,18 +194944,18 @@ Farragnarok: installDir: Farragnarok: {} launch: - /Farragnarok.exe: + "/Farragnarok.exe": - when: - bit: 64 os: windows store: steam steam: id: 929640 -'Farrealm: The Prince of Winds': +"Farrealm: The Prince of Winds": installDir: Farrealm The Prince of Winds: {} launch: - /Farrealm.exe: + "/Farrealm.exe": - when: - store: steam steam: @@ -194420,7 +194964,7 @@ Farstorm: installDir: Farstorm: {} launch: - /Farstorm.exe: + "/Farstorm.exe": - when: - os: windows store: steam @@ -194430,7 +194974,7 @@ Fart Fiasco Premium: installDir: Fart Fiasco Premium: {} launch: - /Fart Fiasco Premium.exe: + "/Fart Fiasco Premium.exe": - when: - os: windows store: steam @@ -194440,20 +194984,20 @@ Fart Simulator 2018: installDir: Fart Simulator 2018: {} launch: - /FS2018_MacOs2.app: + "/FS2018_MacOs2.app": - when: - os: mac store: steam - /FartSimulator.exe: + "/FartSimulator.exe": - when: - os: windows store: steam - /FartSimulator2018.x86: + "/FartSimulator2018.x86": - when: - bit: 32 os: linux store: steam - /FartSimulator2018.x86_64: + "/FartSimulator2018.x86_64": - when: - bit: 64 os: linux @@ -194462,7 +195006,7 @@ Fart Simulator 2018: id: 719080 Farthest Frontier: files: - /My Games/Farthest Frontier/Save: + "/My Games/Farthest Frontier/Save": tags: - save when: @@ -194470,7 +195014,7 @@ Farthest Frontier: installDir: Farthest Frontier: {} launch: - /Farthest Frontier.exe: + "/Farthest Frontier.exe": - when: - os: windows store: steam @@ -194480,14 +195024,14 @@ Farworld Pioneers: installDir: Farworld Pioneers: {} launch: - /Pioneers.exe: + "/Pioneers.exe": - when: - store: steam steam: id: 1363900 Fasaria Legacy Collection: installDir: - 'Fasaria Classics [LEGACY]': {} + "Fasaria Classics [LEGACY]": {} steam: id: 839040 Fasaria World Online: @@ -194500,7 +195044,7 @@ Fashion Designer: id: 1226580 Fashion Police Squad: files: - /AppData/LocalLow/Mopeful Games/Fashion Police Squad: + "/AppData/LocalLow/Mopeful Games/Fashion Police Squad": tags: - save when: @@ -194508,7 +195052,7 @@ Fashion Police Squad: installDir: Fashion Police Squad: {} launch: - /Fashion Police Squad.exe: + "/Fashion Police Squad.exe": - when: - os: windows store: steam @@ -194518,19 +195062,19 @@ Fashioning Little Miss Lonesome: installDir: Fashioning Little Miss Lonesome: {} launch: - /Fashioning Little Miss Lonesome.exe: + "/Fashioning Little Miss Lonesome.exe": - when: - store: steam steam: id: 640990 Fast & Furious Crossroads: files: - /Slightly Mad Studios/Fast & Furious Crossroads/GraphicsConfigDX11.xml: + "/Slightly Mad Studios/Fast & Furious Crossroads/GraphicsConfigDX11.xml": tags: - config when: - os: windows - /Slightly Mad Studios/Fast & Furious Crossroads/savegame: + "/Slightly Mad Studios/Fast & Furious Crossroads/savegame": tags: - save when: @@ -194538,21 +195082,21 @@ Fast & Furious Crossroads: installDir: Fast & Furious Crossroads: {} launch: - /FFCROSSROADS.exe: + "/FFCROSSROADS.exe": - when: - bit: 64 os: windows store: steam steam: id: 678030 -'Fast & Furious: Showdown': +"Fast & Furious: Showdown": files: - /Activision/Fast & Furious™ - Showdown: + "/Activision/Fast & Furious™ - Showdown": tags: - config when: - os: windows - /Activision/Fast & Furious™ - Showdown/save.bin: + "/Activision/Fast & Furious™ - Showdown/save.bin": tags: - save when: @@ -194560,16 +195104,16 @@ Fast & Furious Crossroads: installDir: Fast and Furious Showdown: {} launch: - /Fast and Furious Showdown.exe: + "/Fast and Furious Showdown.exe": - when: - store: steam steam: id: 224340 -'Fast & Furious: Spy Racers Rise of SH1FT3R': +"Fast & Furious: Spy Racers Rise of SH1FT3R": installDir: Fast and Furious Spy Racers: {} launch: - /FF.exe: + "/FF.exe": - when: - os: windows store: steam @@ -194582,7 +195126,7 @@ Fast Action Hero: id: 534000 Fast Beat Loop Racer GT: files: - /WorkSpace/Save0: + "/WorkSpace/Save0": tags: - save when: @@ -194590,7 +195134,7 @@ Fast Beat Loop Racer GT: installDir: Fast Beat Loop Racer: {} launch: - /Main.exe: + "/Main.exe": - when: - os: windows store: steam @@ -194607,30 +195151,30 @@ Fast Detect: installDir: Fast Detect: {} launch: - /FastDetect.exe: - - arguments: '-game FastDetect' + "/FastDetect.exe": + - arguments: "-game FastDetect" when: - os: windows store: steam steam: id: 353220 -'Fast Drive: Extreme Race & Drift': +"Fast Drive: Extreme Race & Drift": steam: id: 766060 Fast Dust: installDir: Fast Dust: {} launch: - /fastdust.app: + "/fastdust.app": - when: - os: mac store: steam - /fastdust.exe: + "/fastdust.exe": - when: - bit: 64 os: windows store: steam - /fastdust.x86_64: + "/fastdust.x86_64": - when: - bit: 64 os: linux @@ -194641,7 +195185,7 @@ Fast Food Fighters: installDir: Fast Food Fighters: {} launch: - /Fast Food Fighter.exe: + "/Fast Food Fighter.exe": - when: - os: windows store: steam @@ -194651,7 +195195,7 @@ Fast Food Never More: installDir: Fast Food Never More: {} launch: - /FastFoodNeverMore.exe: + "/FastFoodNeverMore.exe": - when: - bit: 64 os: windows @@ -194662,11 +195206,11 @@ Fast Food Rampage: installDir: Fast Food Rampage: {} launch: - /Fast Food Rampage/Fast Food Rampage.app/Contents/MacOS/Fast Food Rampage: + "/Fast Food Rampage/Fast Food Rampage.app/Contents/MacOS/Fast Food Rampage": - when: - os: mac store: steam - /Fast Food Rampage/Fast Food Rampage.exe: + "/Fast Food Rampage/Fast Food Rampage.exe": - when: - os: windows store: steam @@ -194674,7 +195218,7 @@ Fast Food Rampage: id: 810330 Fast Food Tycoon: files: - /save: + "/save": tags: - save when: @@ -194685,7 +195229,7 @@ Fast Food Tycoon: - config Fast Food Tycoon 2: files: - /Save: + "/Save": tags: - save when: @@ -194695,7 +195239,7 @@ Fast Food Tycoon 2: installDir: Pizza Connection 2: {} launch: - /fastfood2.exe: + "/fastfood2.exe": - when: - os: windows store: steam @@ -194704,11 +195248,11 @@ Fast Food Tycoon 2: Fast Rolling: steam: id: 651050 -'Fast Travel: Loot Delivery Service': +"Fast Travel: Loot Delivery Service": installDir: Fast Travel Loot Delivery Service: {} launch: - /Fast Travel.exe: + "/Fast Travel.exe": - when: - os: windows store: steam @@ -194718,16 +195262,16 @@ Fast and Curious: installDir: FastAndCurious: {} launch: - /fastandcurious.app/Contents/MacOS/nwjs: + "/fastandcurious.app/Contents/MacOS/nwjs": - when: - bit: 64 os: mac store: steam - /nw: + "/nw": - when: - os: linux store: steam - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -194737,7 +195281,7 @@ Fast and Low: installDir: Fast and Low: {} launch: - /FastandLow.exe: + "/FastandLow.exe": - when: - store: steam steam: @@ -194756,7 +195300,7 @@ Fastigium: Fastigium: {} steam: id: 552960 -'Fastigium: Dead End': +"Fastigium: Dead End": installDir: Fastigium Dead End: {} steam: @@ -194765,15 +195309,15 @@ Fat Chicken: installDir: Fat Chicken: {} launch: - /FatChicken.app: + "/FatChicken.app": - when: - os: mac store: steam - /FatChicken.exe: + "/FatChicken.exe": - when: - os: windows store: steam - /FatChicken.x86: + "/FatChicken.x86": - when: - os: linux store: steam @@ -194783,7 +195327,7 @@ Fat City: installDir: Fat City: {} launch: - /FatCity.exe: + "/FatCity.exe": - when: - os: windows store: steam @@ -194793,7 +195337,7 @@ Fat Dude Simulator: installDir: Fat Dude Simulator: {} launch: - /FatDudeSimulator.exe: + "/FatDudeSimulator.exe": - when: - os: windows store: steam @@ -194808,7 +195352,7 @@ Fat Mask: installDir: Fat Mask: {} launch: - /FatMask.exe: + "/FatMask.exe": - when: - store: steam steam: @@ -194817,7 +195361,7 @@ Fat Prisoner Simulator: installDir: Fat Prisoner Simulator: {} launch: - /FatPrisonerSimulator.exe: + "/FatPrisonerSimulator.exe": - when: - os: windows store: steam @@ -194827,7 +195371,7 @@ Fat Prisoner Simulator 2: installDir: Fat Prisoner Simulator 2: {} launch: - /FatPrisonerSimulator2.exe: + "/FatPrisonerSimulator2.exe": - when: - os: windows store: steam @@ -194840,18 +195384,18 @@ Fatal Burst: installDir: Fatal Stormer: {} launch: - /FatalStormer.exe: + "/FatalStormer.exe": - when: - bit: 64 os: windows store: steam steam: id: 818220 -'Fatal Evidence: Cursed Island': +"Fatal Evidence: Cursed Island": installDir: - Fatal Evidence Cursed Island Collector's Edition: {} + "Fatal Evidence Cursed Island Collector's Edition": {} launch: - /Fatal_Evidence_The_Cursed_Island_CE.exe: + "/Fatal_Evidence_The_Cursed_Island_CE.exe": - when: - os: windows store: steam @@ -194861,15 +195405,15 @@ Fatal Fight: installDir: Fatal Fight: {} launch: - /Fatal Fight.exe: + "/Fatal Fight.exe": - when: - os: windows store: steam steam: id: 449690 -'Fatal Frame: Maiden of Black Water': +"Fatal Frame: Maiden of Black Water": files: - /KoeiTecmo/FATAL FRAME MOBW/SAVEDATA: + "/KoeiTecmo/FATAL FRAME MOBW/SAVEDATA": tags: - config - save @@ -194878,14 +195422,14 @@ Fatal Fight: installDir: FATAL FRAME MOBW: {} launch: - /FATAL_FRAME_MOBW.exe: + "/FATAL_FRAME_MOBW.exe": - when: - store: steam steam: id: 1732190 -'Fatal Frame: Mask of the Lunar Eclipse': +"Fatal Frame: Mask of the Lunar Eclipse": files: - /KoeiTecmo/FATAL FRAME MOL/SAVEDATA: + "/KoeiTecmo/FATAL FRAME MOL/SAVEDATA": tags: - config - save @@ -194894,12 +195438,12 @@ Fatal Fight: installDir: FATAL FRAME MOL: {} launch: - /FATAL_FRAME_MOL.exe: + "/FATAL_FRAME_MOL.exe": - when: - store: steam steam: id: 2130460 -'Fatal Fury 3: Road to the Final Victory': +"Fatal Fury 3: Road to the Final Victory": registry: HKEY_LOCAL_MACHINE/SOFTWARE/WOW6432Node/GameBank/FatalFury: tags: @@ -194913,11 +195457,11 @@ Fatal Gem VR(The First Match-3 VR Game): Fatal Gem VR(Match-Three VR Game): {} steam: id: 546030 -'Fatal Hour: Petroleum': +"Fatal Hour: Petroleum": installDir: Fatal Hour Petroleum: {} launch: - /Fatal Hour - Petroleum.exe: + "/Fatal Hour - Petroleum.exe": - when: - os: windows store: steam @@ -194925,33 +195469,33 @@ Fatal Gem VR(The First Match-3 VR Game): id: 916540 Fatal Labyrinth: files: - /SEGA Genesis Classics/0017: + "/SEGA Genesis Classics/0017": tags: - save when: - os: windows - /SEGA Genesis Classics/setup.dat: + "/SEGA Genesis Classics/setup.dat": tags: - config when: - os: windows - /SEGA Mega Drive Classics/0017: + "/SEGA Mega Drive Classics/0017": tags: - save when: - os: windows - /SEGA Mega Drive Classics/setup.dat: + "/SEGA Mega Drive Classics/setup.dat": tags: - config when: - os: windows steam: id: 34289 -'Fatal Passion: Art Prison': +"Fatal Passion: Art Prison": installDir: - Fatal Passion Art Prison Collector's Edition: {} + "Fatal Passion Art Prison Collector's Edition": {} launch: - /FatalPassion_ArtPrison_CE.exe: + "/FatalPassion_ArtPrison_CE.exe": - when: - os: windows store: steam @@ -194961,11 +195505,13 @@ Fatal Theory: installDir: Fatal Theory: {} launch: - /Fatal Theory: + "/Fatal Theory": - when: - os: mac store: steam - /Fatal Theory.exe: + - os: linux + store: steam + "/Fatal Theory.exe": - when: - os: windows store: steam @@ -194973,7 +195519,7 @@ Fatal Theory: id: 392100 Fatal Twelve: files: - /game/saves: + "/game/saves": tags: - save when: @@ -194984,25 +195530,25 @@ Fatal Twelve: installDir: Fatal Twelve: {} launch: - /fatal.app: + "/fatal.app": - when: - os: mac store: steam - /fatal.exe: + "/fatal.exe": - when: - os: windows store: steam - /fatal.sh: + "/fatal.sh": - when: - os: linux store: steam steam: id: 620210 -'Fatal Velocity: Physics Combat': +"Fatal Velocity: Physics Combat": installDir: Fatal Velocity Physics Combat: {} launch: - /FatalVelocity.exe: + "/FatalVelocity.exe": - when: - os: windows store: steam @@ -195012,20 +195558,20 @@ Fatale: installDir: FATALE: {} launch: - /FATALE.app: + "/FATALE.app": - when: - os: mac store: steam - /FATALE.exe: + "/FATALE.exe": - when: - os: windows store: steam - /Fatale.x86: + "/Fatale.x86": - when: - bit: 32 os: linux store: steam - /Fatale.x86_64: + "/Fatale.x86_64": - when: - bit: 64 os: linux @@ -195041,18 +195587,18 @@ Fate Hunters: installDir: Fate Hunters: {} launch: - /Fate Hunters.app/Contents/MacOS/Fate Hunters: - - arguments: '-logFile log.txt' + "/Fate Hunters.app/Contents/MacOS/Fate Hunters": + - arguments: "-logFile log.txt" when: - os: mac store: steam - /fatehunters.exe: - - arguments: '-logFile log.txt' + "/fatehunters.exe": + - arguments: "-logFile log.txt" when: - os: windows store: steam - /fatehunters.x64: - - arguments: '-logFile log.txt' + "/fatehunters.x64": + - arguments: "-logFile log.txt" when: - bit: 64 os: linux @@ -195063,7 +195609,7 @@ Fate Seeker: installDir: FateSeeker: {} launch: - /FateSeeker.exe: + "/FateSeeker.exe": - when: - os: windows store: steam @@ -195073,7 +195619,7 @@ Fate Seeker 2: installDir: FateSeekerII: {} launch: - /FateSeekerII.exe: + "/FateSeekerII.exe": - when: - os: windows store: steam @@ -195083,11 +195629,11 @@ Fate Tectonics: installDir: Fate Tectonics: {} launch: - /Fate Tectonics.exe: + "/Fate Tectonics.exe": - when: - os: windows store: steam - /FateTectonics.app: + "/FateTectonics.app": - when: - os: mac store: steam @@ -195095,12 +195641,12 @@ Fate Tectonics: id: 379530 Fate of the World: files: - /fotw: + "/fotw": tags: - config when: - os: windows - /fotw/save: + "/fotw/save": tags: - save when: @@ -195108,39 +195654,39 @@ Fate of the World: installDir: Fate of the World: {} launch: - /FateOfTheWorld.app: + "/FateOfTheWorld.app": - when: - os: mac store: steam - /bin/fotw.exe: + "/bin/fotw.exe": - when: - os: windows store: steam - /bin/fotw.exe --config: + "/bin/fotw.exe --config": - when: - os: windows store: steam steam: id: 80200 -'Fate/Extella: Link': +"Fate/Extella: Link": installDir: Fate Extella Link: {} launch: - /fateextellalink.exe: + "/fateextellalink.exe": - when: - bit: 64 os: windows store: steam steam: id: 622220 -'Fate/Extella: The Umbral Star': +"Fate/Extella: The Umbral Star": files: - /win_config.ini: + "/win_config.ini": tags: - config when: - store: steam - /userdata/"SteamUserID"/511680/remote/savedata/FESAVSYSTEM.bin: + "/userdata/\"SteamUserID\"/511680/remote/savedata/FESAVSYSTEM.bin": tags: - save when: @@ -195152,12 +195698,12 @@ Fate of the World: id: 511680 Fate/Samurai Remnant: files: - /KoeiTecmo/FateSamuraiRemnant/Savedata: + "/KoeiTecmo/FateSamuraiRemnant/Savedata": tags: - save when: - os: windows - /KoeiTecmo/FateSamuraiRemnant/SavesDir: + "/KoeiTecmo/FateSamuraiRemnant/SavesDir": tags: - config when: @@ -195170,7 +195716,7 @@ Fate/Samurai Remnant: id: 1902690 Fate/Stay Night: files: - /savedata: + "/savedata": tags: - config - save @@ -195178,7 +195724,7 @@ Fate/Stay Night: - os: windows Fate/Stay Night (Realta Nua): files: - /Documents/faterealtanua_savedata: + "/Documents/faterealtanua_savedata": tags: - config - save @@ -195188,7 +195734,7 @@ Fated Era: installDir: Fated Era: {} launch: - /Fated Era.exe: + "/Fated Era.exe": - when: - os: windows store: steam @@ -195198,7 +195744,7 @@ Fated Kingdom: installDir: Fated Kingdom: {} launch: - /FatedKingdom.exe: + "/FatedKingdom.exe": - when: - bit: 64 os: windows @@ -195209,7 +195755,7 @@ Fated Souls: installDir: Fated Souls: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -195219,7 +195765,7 @@ Fated Souls 2: installDir: Fated Souls 2: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: @@ -195228,12 +195774,12 @@ Fated Souls 3: installDir: Fated Souls 3: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: id: 602790 -'Fated: The Silent Oath': +"Fated: The Silent Oath": installDir: Fated: {} steam: @@ -195242,15 +195788,15 @@ Fatehaven: installDir: Fatehaven: {} launch: - /Fatehaven: + "/Fatehaven": - when: - os: linux store: steam - /Fatehaven.app/Contents/MacOS/Fatehaven: + "/Fatehaven.app/Contents/MacOS/Fatehaven": - when: - os: mac store: steam - /Fatehaven.exe: + "/Fatehaven.exe": - when: - os: windows store: steam @@ -195260,7 +195806,7 @@ Fateholders of Tetsoidea: installDir: Fateholders of Tetsoidea: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -195270,7 +195816,7 @@ Fateless: installDir: Fateless: {} launch: - /Fateless.exe: + "/Fateless.exe": - when: - os: windows store: steam @@ -195280,7 +195826,7 @@ Fateline(命运线): installDir: Fateline(命运线): {} launch: - /fateline.exe: + "/fateline.exe": - when: - bit: 64 os: windows @@ -195291,8 +195837,8 @@ Fates 8 Stories (F8S): installDir: Fates - 8 Stories: {} launch: - /nw.exe: - - arguments: '--in-process-gpu' + "/nw.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam @@ -195304,15 +195850,15 @@ Fates of Ort: installDir: Fates of Ort: {} launch: - /Contents/MacOS/FatesofOrt: + "/Contents/MacOS/FatesofOrt": - when: - os: mac store: steam - /FatesofOrt.exe: + "/FatesofOrt.exe": - when: - os: windows store: steam - /FatesofOrt.x86_64: + "/FatesofOrt.x86_64": - when: - os: linux store: steam @@ -195321,11 +195867,11 @@ Fates of Ort: Father Xmas: steam: id: 1127640 -Father's Island: +"Father's Island": installDir: FathersIsland: {} launch: - /FI_Full.exe: + "/FI_Full.exe": - when: - os: windows store: steam @@ -195334,38 +195880,38 @@ Father's Island: Fatman Simulator: steam: id: 866330 -Fatty Bear's Birthday Surprise: +"Fatty Bear's Birthday Surprise": installDir: - Fatty Bear's Birthday Surprise: {} + "Fatty Bear's Birthday Surprise": {} launch: - /ScummVM_Linux/launch_fbear.sh: + "/ScummVM_Linux/launch_fbear.sh": - when: - os: linux store: steam - workingDir: /ScummVM_Linux - /ScummVM_Mac/ScummVM.app/Contents/MacOS/scummvm: - - arguments: '-c scummvm-fbear.ini fbear' + workingDir: "/ScummVM_Linux" + "/ScummVM_Mac/ScummVM.app/Contents/MacOS/scummvm": + - arguments: "-c scummvm-fbear.ini fbear" when: - os: mac store: steam - workingDir: /ScummVM_Mac - /ScummVM_Windows/ScummVM.exe: - - arguments: '--no-console -c scummvm-fbear.ini fbear' + workingDir: "/ScummVM_Mac" + "/ScummVM_Windows/ScummVM.exe": + - arguments: "--no-console -c scummvm-fbear.ini fbear" when: - os: windows store: steam - workingDir: /ScummVM_Windows + workingDir: "/ScummVM_Windows" steam: id: 317030 -Fatty Maze's Adventures: +"Fatty Maze's Adventures": installDir: - Fatty Maze's Adventures: {} + "Fatty Maze's Adventures": {} launch: - /FattyMazePC.app: + "/FattyMazePC.app": - when: - os: mac store: steam - /FattyMazePC.exe: + "/FattyMazePC.exe": - when: - os: windows store: steam @@ -195375,15 +195921,15 @@ Fatty Rabbit Hole: installDir: Fatty Rabbit Hole: {} launch: - /Fatty Rabbit Hole: + "/Fatty Rabbit Hole": - when: - os: linux store: steam - /Fatty Rabbit Hole.app: + "/Fatty Rabbit Hole.app": - when: - os: mac store: steam - /Fatty Rabbit Hole.exe: + "/Fatty Rabbit Hole.exe": - when: - os: windows store: steam @@ -195393,7 +195939,7 @@ Fatty Space: installDir: Fatty Space: {} launch: - /Fatty Space.exe: + "/Fatty Space.exe": - when: - os: windows store: steam @@ -195409,17 +195955,17 @@ Fault & Fragment: id: 1111150 Fault - Milestone One: files: - /game/saves: + "/game/saves": tags: - save when: - os: windows - /renpy/config.py: + "/renpy/config.py": tags: - config when: - os: windows - /RenPy/projectwritten_fm1: + "/RenPy/projectwritten_fm1": tags: - save when: @@ -195429,15 +195975,15 @@ Fault - Milestone One: installDir: faultms1: {} launch: - /faultms1.app: + "/faultms1.app": - when: - os: mac store: steam - /faultms1.exe: + "/faultms1.exe": - when: - os: windows store: steam - /faultms1.sh: + "/faultms1.sh": - when: - os: linux store: steam @@ -195445,17 +195991,17 @@ Fault - Milestone One: id: 286260 Fault - Milestone Two: files: - /game/saves: + "/game/saves": tags: - save when: - os: windows - /renpy/config.py: + "/renpy/config.py": tags: - config when: - os: windows - /renpy/projectwritten_fm2_part1: + "/renpy/projectwritten_fm2_part1": tags: - save when: @@ -195465,15 +196011,15 @@ Fault - Milestone Two: installDir: faultms2a: {} launch: - /faultms2a.app: + "/faultms2a.app": - when: - os: mac store: steam - /faultms2a.exe: + "/faultms2a.exe": - when: - os: windows store: steam - /faultms2a.sh: + "/faultms2a.sh": - when: - os: linux store: steam @@ -195482,15 +196028,15 @@ Fault - Milestone Two: Fault - Silence the Pedant: steam: id: 487500 -'Fault: Elder Orb': +"Fault: Elder Orb": installDir: Fault: {} launch: - /start_protected_game.exe: + "/start_protected_game.exe": - when: - os: windows store: steam - - arguments: '-dx11' + - arguments: "-dx11" when: - store: steam steam: @@ -195499,7 +196045,7 @@ Faulty Apprentice: installDir: Faulty Apprentice: {} launch: - /Faulty Apprentice.exe: + "/Faulty Apprentice.exe": - when: - os: windows store: steam @@ -195509,7 +196055,7 @@ Fausts Alptraum: installDir: Fausts Alptraum: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -195519,7 +196065,7 @@ Faux: installDir: Faux: {} launch: - /Faux.exe: + "/Faux.exe": - when: - os: windows store: steam @@ -195529,11 +196075,11 @@ Favo!+: installDir: Favo: {} launch: - /Favo!+.app: + "/Favo!+.app": - when: - os: mac store: steam - /Favo!+.exe: + "/Favo!+.exe": - when: - os: windows store: steam @@ -195543,11 +196089,11 @@ Favor Chess: installDir: Favor Chess: {} launch: - /Favor Chess.app: + "/Favor Chess.app": - when: - os: mac store: steam - /FavorChess.exe: + "/FavorChess.exe": - when: - os: windows store: steam @@ -195561,12 +196107,12 @@ Fazbear Nightmare: id: 366580 Fe: files: - /AppData/LocalLow/Zoink Games/Fe/Save*.sav: + "/AppData/LocalLow/Zoink Games/Fe/Save*.sav": tags: - save when: - os: windows - /AppData/LocalLow/Zoink Games/Fe/SystemSettings.sav: + "/AppData/LocalLow/Zoink Games/Fe/SystemSettings.sav": tags: - config when: @@ -195583,18 +196129,18 @@ FeArea: installDir: FeArea: {} launch: - /SmashHash.exe: + "/SmashHash.exe": - when: - bit: 64 os: windows store: steam steam: id: 520960 -'FeArea: Battle Royale': +"FeArea: Battle Royale": installDir: FeArea Battle Royale: {} launch: - /FeareaBR.exe: + "/FeareaBR.exe": - when: - bit: 64 os: windows @@ -195603,7 +196149,7 @@ FeArea: id: 1136010 Fear & Hunger: files: - /steamapps/common/Fear & Hunger/www/save: + "/steamapps/common/Fear & Hunger/www/save": tags: - config - save @@ -195613,19 +196159,19 @@ Fear & Hunger: installDir: Fear & Hunger: {} launch: - /Game.app: + "/Game.app": - when: - os: mac store: steam - /Game.exe: + "/Game.exe": - when: - os: windows store: steam steam: id: 1002300 -'Fear & Hunger 2: Termina': +"Fear & Hunger 2: Termina": files: - /steamapps/common/Fear & Hunger 2 Termina/www/save: + "/steamapps/common/Fear & Hunger 2 Termina/www/save": tags: - config - save @@ -195635,7 +196181,7 @@ Fear & Hunger: installDir: Fear & Hunger 2 Termina: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -195643,12 +196189,12 @@ Fear & Hunger: id: 2171440 Fear Effect Sedna: files: - /AppData/LocalLow/sushee/FearEffect/SaveFiles: + "/AppData/LocalLow/sushee/FearEffect/SaveFiles": tags: - config when: - os: windows - /AppData/LocalLow/sushee/FearEffect/SaveFiles/saves: + "/AppData/LocalLow/sushee/FearEffect/SaveFiles/saves": tags: - save when: @@ -195658,8 +196204,8 @@ Fear Effect Sedna: installDir: Fear Effect Sedna: {} launch: - /FearEffect.exe: - - arguments: '-forcecontrollerappid 546900' + "/FearEffect.exe": + - arguments: "-forcecontrollerappid 546900" when: - os: windows store: steam @@ -195671,19 +196217,19 @@ Fear Equation: installDir: Fear Equation: {} launch: - /FearEquation.app: + "/FearEquation.app": - when: - os: mac store: steam - /FearEquation.exe: + "/FearEquation.exe": - when: - os: windows store: steam - /FearEquation.x86: + "/FearEquation.x86": - when: - os: linux store: steam - /OpenCustomPhotosFolder.exe: + "/OpenCustomPhotosFolder.exe": - when: - os: windows store: steam @@ -195697,7 +196243,7 @@ Fear For Freedom: installDir: Fear For Freedom: {} launch: - /Fear For Freedom.exe: + "/Fear For Freedom.exe": - when: - os: windows store: steam @@ -195707,11 +196253,11 @@ Fear Half Factor: installDir: Fear Half Factor: {} launch: - /FearHalfFactor: + "/FearHalfFactor": - when: - os: linux store: steam - /FearHalfFactor.exe: + "/FearHalfFactor.exe": - when: - os: windows store: steam @@ -195720,21 +196266,21 @@ Fear Half Factor: Fear Simulator: steam: id: 1008410 -'Fear for Sale: City of the Past': +"Fear for Sale: City of the Past": installDir: - Fear for Sale City of the Past Collector's Edition: {} + "Fear for Sale City of the Past Collector's Edition": {} launch: - /FearForSale_CityOfThePast_CE.exe: + "/FearForSale_CityOfThePast_CE.exe": - when: - os: windows store: steam steam: id: 926070 -'Fear for Sale: Endless Voyage': +"Fear for Sale: Endless Voyage": installDir: - Fear for Sale Endless Voyage Collector's Edition: {} + "Fear for Sale Endless Voyage Collector's Edition": {} launch: - /FearForSale_EndlessVoyage_CE.exe: + "/FearForSale_EndlessVoyage_CE.exe": - when: - os: windows store: steam @@ -195744,7 +196290,7 @@ Fear in Hospital: installDir: Fear in Hospital: {} launch: - /Fear in Hospital.exe: + "/Fear in Hospital.exe": - when: - store: steam steam: @@ -195753,7 +196299,7 @@ Fear of Clowns: installDir: Fear of Clowns: {} launch: - /Fear Of Clowns.exe: + "/Fear Of Clowns.exe": - when: - os: windows store: steam @@ -195763,17 +196309,17 @@ Fear of Dark: installDir: Fear of Dark: {} launch: - /Fear of Dark.exe: + "/Fear of Dark.exe": - when: - os: windows store: steam steam: id: 1084350 -'Fear of Nightmares: Madness Descent': +"Fear of Nightmares: Madness Descent": installDir: Fear Of Nightmares Madness Descent: {} launch: - /FearOfNightmaresMD.exe: + "/FearOfNightmaresMD.exe": - when: - os: windows store: steam @@ -195783,15 +196329,15 @@ Fear of Traffic: installDir: Fear Of Traffic: {} launch: - /Fear Of Traffic.app: + "/Fear Of Traffic.app": - when: - os: mac store: steam - /Fear Of Traffic.exe: + "/Fear Of Traffic.exe": - when: - os: windows store: steam - /Fear Of Traffic.x86_64: + "/Fear Of Traffic.x86_64": - when: - os: linux store: steam @@ -195799,12 +196345,12 @@ Fear of Traffic: id: 536670 Fear the Dark Unknown: files: - /DarkUnknown/Saved/Config/WindowsNoEditor: + "/DarkUnknown/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /DarkUnknown/Saved/SaveGames: + "/DarkUnknown/Saved/SaveGames": tags: - save when: @@ -195812,7 +196358,7 @@ Fear the Dark Unknown: installDir: Fear the Dark Unknown: {} launch: - /DarkUnknown.exe: + "/DarkUnknown.exe": - when: - bit: 64 os: windows @@ -195823,7 +196369,7 @@ Fear the Dead: installDir: Fear the Dead: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -195833,8 +196379,8 @@ Fear the Night: installDir: FearTheNight: {} launch: - /Moonlight/Binaries/Win64/Moonlight.exe: - - arguments: '-allowansel' + "/Moonlight/Binaries/Win64/Moonlight.exe": + - arguments: "-allowansel" when: - bit: 64 os: windows @@ -195843,7 +196389,7 @@ Fear the Night: id: 764920 Fear the Wolves: files: - /FearTheWolves/Saved/Config/WindowsNoEditor: + "/FearTheWolves/Saved/Config/WindowsNoEditor": tags: - config when: @@ -195856,7 +196402,7 @@ Fearful Symmetry: installDir: Fearful Symmetry: {} launch: - /FearfulSymmetry.exe: + "/FearfulSymmetry.exe": - when: - os: windows store: steam @@ -195866,7 +196412,7 @@ Fearful Symmetry & The Cursed Prince: installDir: Fearful Symmetry & The Cursed Prince: {} launch: - /FearfulSymmetryTheCursedPrince.exe: + "/FearfulSymmetryTheCursedPrince.exe": - when: - os: windows store: steam @@ -195874,7 +196420,7 @@ Fearful Symmetry & The Cursed Prince: id: 725080 Fearless Fantasy: files: - /userdata//282100/remote: + "/userdata//282100/remote": tags: - save when: @@ -195882,7 +196428,7 @@ Fearless Fantasy: installDir: Fearless Fantasy: {} launch: - /FearlessFantasy.exe: + "/FearlessFantasy.exe": - when: - store: steam steam: @@ -195892,7 +196438,7 @@ Fearless Tigor: id: 624930 Fearmonium: files: - /FearMonium/User Data/Default/IndexedDB: + "/FearMonium/User Data/Default/IndexedDB": tags: - save when: @@ -195900,34 +196446,34 @@ Fearmonium: installDir: Fearmonium: {} launch: - /fearmonium.app: + "/fearmonium.app": - when: - os: mac store: steam - /nw: + "/nw": - when: - bit: 64 os: linux store: steam - /nw.exe: + "/nw.exe": - when: - os: windows store: steam steam: id: 1068360 -'Feast Your Eyes: Little Marshmallow': +"Feast Your Eyes: Little Marshmallow": installDir: Feast Your Eyes: {} launch: - /Game.exe: - - arguments: '--in-process-gpu' + "/Game.exe": + - arguments: "--in-process-gpu" when: - store: steam steam: id: 712260 Feather: files: - /punkplayerprefs.dat: + "/punkplayerprefs.dat": tags: - save when: @@ -195935,11 +196481,11 @@ Feather: installDir: Feather: {} launch: - /Feather.exe: + "/Feather.exe": - when: - os: windows store: steam - /feather.app: + "/feather.app": - when: - os: mac store: steam @@ -195953,7 +196499,7 @@ Feather of Praying: installDir: FeatherOfPraying: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -195963,15 +196509,15 @@ Featherpunk Prime: installDir: Featherpunk Prime: {} launch: - /Featherpunk Prime.app: + "/Featherpunk Prime.app": - when: - os: mac store: steam - /FeatherpunkPrime-32-bit.exe: + "/FeatherpunkPrime-32-bit.exe": - when: - os: windows store: steam - /FeatherpunkPrime.x86: + "/FeatherpunkPrime.x86": - when: - os: linux store: steam @@ -195981,11 +196527,11 @@ Feathery Ears 羽耳: installDir: Feathery Ears: {} launch: - '/Feathery Ears [WIN].app': + "/Feathery Ears [WIN].app": - when: - os: mac store: steam - /Feathery Ears 羽耳.exe: + "/Feathery Ears 羽耳.exe": - when: - os: windows store: steam @@ -195995,7 +196541,7 @@ Feditor: installDir: Feditor: {} launch: - /Feditor.exe: + "/Feditor.exe": - when: - os: windows store: steam @@ -196014,11 +196560,11 @@ Feed Eve: Feed Eve: {} steam: id: 790950 -'Feed and Grow: Fish': +"Feed and Grow: Fish": installDir: Feed and Grow Fish: {} launch: - /Feed and Grow.exe: + "/Feed and Grow.exe": - when: - os: windows store: steam @@ -196028,7 +196574,7 @@ Feed the Animals: installDir: Feed the Animals: {} launch: - /ftagame.exe: + "/ftagame.exe": - when: - os: windows store: steam @@ -196038,7 +196584,7 @@ Feed the Pets: installDir: Feed the Pets: {} launch: - /Feed the Pets.exe: + "/Feed the Pets.exe": - when: - os: windows store: steam @@ -196052,11 +196598,11 @@ Feeding Frenzy: HKEY_CURRENT_USER/Software/GameHouse/FeedingFrenzy/scores: tags: - save -'Feeding Frenzy 2: Shipwreck Showdown': +"Feeding Frenzy 2: Shipwreck Showdown": installDir: Feeding Frenzy 2 Deluxe: {} launch: - /FeedingFrenzyTwo.exe: + "/FeedingFrenzyTwo.exe": - when: - store: steam registry: @@ -196070,15 +196616,15 @@ Feeding The Monster: installDir: Feeding The Monster: {} launch: - /Linux/Feeding The Monster.x86: + "/Linux/Feeding The Monster.x86": - when: - os: linux store: steam - /MacOS/Feeding The Monster.app/Contents/MacOS/Feeding The Monster: + "/MacOS/Feeding The Monster.app/Contents/MacOS/Feeding The Monster": - when: - os: mac store: steam - /Windows/Feeding The Monster.exe: + "/Windows/Feeding The Monster.exe": - when: - os: windows store: steam @@ -196088,11 +196634,11 @@ Feel the Snow: installDir: Feel The Snow: {} launch: - /FeelTheSnow: + "/FeelTheSnow": - when: - os: linux store: steam - /FeelTheSnow.exe: + "/FeelTheSnow.exe": - when: - os: windows store: steam @@ -196102,7 +196648,7 @@ Feel-A-Maze: installDir: Feel-A-Maze: {} launch: - /feelamaze.exe: + "/feelamaze.exe": - when: - store: steam steam: @@ -196111,11 +196657,11 @@ Feelin: installDir: Feelin: {} launch: - /Feelin.app: + "/Feelin.app": - when: - os: mac store: steam - /Feelin.exe: + "/Feelin.exe": - when: - bit: 64 os: windows @@ -196126,7 +196672,7 @@ Feelings Adrift: installDir: Feelings Adrift: {} launch: - /FeelingsAdrift.exe: + "/FeelingsAdrift.exe": - when: - os: windows store: steam @@ -196136,7 +196682,7 @@ Feels: installDir: Feels: {} launch: - /Feels.exe: + "/Feels.exe": - when: - os: windows store: steam @@ -196146,21 +196692,21 @@ Feesh: installDir: Feesh: {} launch: - /Feesh32.exe: + "/Feesh32.exe": - when: - bit: 32 os: windows store: steam - /Feesh64.exe: + "/Feesh64.exe": - when: - bit: 64 os: windows store: steam - /FeeshLin.x86: + "/FeeshLin.x86": - when: - os: linux store: steam - /FeeshMac.app/Contents/MacOS/FeeshMac: + "/FeeshMac.app/Contents/MacOS/FeeshMac": - when: - os: mac store: steam @@ -196170,15 +196716,15 @@ Fei Duanmu vs Kobayashi: installDir: DMF_VS_KOBA: {} launch: - /dmfVSkobayashi.app: + "/dmfVSkobayashi.app": - when: - os: mac store: steam - /dmfVSkobayashi.exe: + "/dmfVSkobayashi.exe": - when: - os: windows store: steam - /dmfVSkobayashi.sh: + "/dmfVSkobayashi.sh": - when: - os: linux store: steam @@ -196186,7 +196732,7 @@ Fei Duanmu vs Kobayashi: id: 806740 Feist: files: - /Library/Preferences/ch.play.Feist.plist: + "/Library/Preferences/ch.play.Feist.plist": tags: - config - save @@ -196197,20 +196743,20 @@ Feist: installDir: Feist: {} launch: - /Feist.app: + "/Feist.app": - when: - os: mac store: steam - /Feist.exe: + "/Feist.exe": - when: - os: windows store: steam - /Feist.x86: + "/Feist.x86": - when: - bit: 32 os: linux store: steam - /Feist.x86_64: + "/Feist.x86_64": - when: - bit: 64 os: linux @@ -196226,7 +196772,7 @@ Felis: installDir: Felis: {} launch: - /Felis.exe: + "/Felis.exe": - when: - os: windows store: steam @@ -196236,24 +196782,24 @@ Felix Jumpman: installDir: Felix Jumpman: {} launch: - /FelixJumpman.exe: + "/FelixJumpman.exe": - when: - store: steam steam: id: 575920 Felix the Reaper: files: - /Daedalic Entertainment GmbH/Felix The Reaper/Data/GameData.dat: + "/Daedalic Entertainment GmbH/Felix The Reaper/Data/GameData.dat": tags: - save when: - os: windows - /Daedalic Entertainment GmbH/Felix The Reaper/Data/PlayerData.dat: + "/Daedalic Entertainment GmbH/Felix The Reaper/Data/PlayerData.dat": tags: - save when: - os: windows - /Daedalic Entertainment GmbH/Felix The Reaper/Data/Settings.ini: + "/Daedalic Entertainment GmbH/Felix The Reaper/Data/Settings.ini": tags: - config when: @@ -196263,11 +196809,11 @@ Felix the Reaper: installDir: Felix The Reaper: {} launch: - /FelixTheReaper.app: + "/FelixTheReaper.app": - when: - os: mac store: steam - /FelixTheReaper.exe: + "/FelixTheReaper.exe": - when: - os: windows store: steam @@ -196277,25 +196823,25 @@ Felix the Reaper: - config steam: id: 919410 -'Fell Seal: Arbiter''s Mark': +"Fell Seal: Arbiter's Mark": files: - /Fell Seal: + "/Fell Seal": tags: - config when: - os: linux - /Fell Seal/saves: + "/Fell Seal/saves": tags: - save when: - os: mac - os: linux - /Fell Seal: + "/Fell Seal": tags: - config when: - os: windows - /Fell Seal/saves: + "/Fell Seal/saves": tags: - save when: @@ -196305,21 +196851,21 @@ Felix the Reaper: installDir: Fell Seal: {} launch: - /Fell Seal.exe: + "/Fell Seal.exe": - when: - os: windows store: steam - /Fell Seal.x86: + "/Fell Seal.x86": - when: - bit: 32 os: linux store: steam - /Fell Seal.x86_64: + "/Fell Seal.x86_64": - when: - bit: 64 os: linux store: steam - /FellSeal.app/Contents/MacOS/FellSeal: + "/FellSeal.app/Contents/MacOS/FellSeal": - when: - os: mac store: steam @@ -196334,7 +196880,7 @@ Femboy Bangers - Pub: installDir: Femboy Bangers: {} launch: - /FemboyBangers.exe: + "/FemboyBangers.exe": - when: - os: windows store: steam @@ -196344,12 +196890,12 @@ Femboy Bangers 2: installDir: Femboy Bangers 2: {} launch: - /FemboyBangers2-32.exe: + "/FemboyBangers2-32.exe": - when: - bit: 32 os: windows store: steam - /FemboyBangers2.exe: + "/FemboyBangers2.exe": - when: - bit: 64 os: windows @@ -196360,7 +196906,7 @@ Femboy Besties: installDir: Femboy Besties: {} launch: - /FemboyBesties.exe: + "/FemboyBesties.exe": - when: - os: windows store: steam @@ -196370,7 +196916,7 @@ Femboys of the Phalanx: installDir: Femboys of the Phalanx: {} launch: - /FemboysofthePhalanx.exe: + "/FemboysofthePhalanx.exe": - when: - os: windows store: steam @@ -196378,7 +196924,7 @@ Femboys of the Phalanx: id: 1565080 Femdemic: files: - /AppData/LocalLow/Rel_Pink/Femdemic: + "/AppData/LocalLow/Rel_Pink/Femdemic": tags: - config - save @@ -196387,17 +196933,17 @@ Femdemic: installDir: Femdemic: {} launch: - /Femdemic.exe: + "/Femdemic.exe": - when: - bit: 64 os: windows store: steam - /femdemic.x86_64: + "/femdemic.x86_64": - when: - bit: 64 os: linux store: steam - /femdemic_mac.app: + "/femdemic_mac.app": - when: - os: mac store: steam @@ -196407,33 +196953,33 @@ Femida: installDir: Femida: {} launch: - /Femida.app: + "/Femida.app": - when: - os: mac store: steam - /Femida.exe: + "/Femida.exe": - when: - os: windows store: steam - /Femida.x86_64: + "/Femida.x86_64": - when: - os: linux store: steam steam: id: 1167640 -'Feminazi: 3000': +"Feminazi: 3000": installDir: FEMINAZI 3000: {} launch: - /FEMINAZI 3000.exe: + "/FEMINAZI 3000.exe": - when: - os: windows store: steam steam: id: 705070 -'Feminazi: The Triggering': +"Feminazi: The Triggering": files: - /Feminazi: + "/Feminazi": tags: - config when: @@ -196441,7 +196987,7 @@ Femida: installDir: FEMINAZI The Triggering: {} launch: - /Feminazi.exe: + "/Feminazi.exe": - when: - os: windows store: steam @@ -196450,17 +196996,17 @@ Femida: Fen: steam: id: 771170 -'Fen: Prologue': +"Fen: Prologue": steam: id: 736830 -'Fenimore Fillmore: 3 Skulls of the Toltecs': +"Fenimore Fillmore: 3 Skulls of the Toltecs": files: - /CasualBrothers/3Skulls//Savegames: + "/CasualBrothers/3Skulls//Savegames": tags: - save when: - os: windows - /CasualBrothers/3Skulls//config.txt: + "/CasualBrothers/3Skulls//config.txt": tags: - config when: @@ -196470,20 +197016,20 @@ Fen: installDir: Fenimore Fillmore 3 Skulls of the Toltecs: {} launch: - /3 Skulls of the Toltecs.exe: + "/3 Skulls of the Toltecs.exe": - when: - os: windows store: steam steam: id: 977300 -'Fenimore Fillmore: The Westerner': +"Fenimore Fillmore: The Westerner": files: - /CasualBrothers/TheWesterner//SavedGames: + "/CasualBrothers/TheWesterner//SavedGames": tags: - save when: - os: windows - /CasualBrothers/TheWesterner//Settings.txt: + "/CasualBrothers/TheWesterner//Settings.txt": tags: - config when: @@ -196493,7 +197039,7 @@ Fen: installDir: Fenimore Fillmore The Westerner: {} launch: - /TheWesterner.exe: + "/TheWesterner.exe": - when: - os: windows store: steam @@ -196503,7 +197049,7 @@ Fenix Box: installDir: Fenix Box: {} launch: - /Fenix Box.exe: + "/Fenix Box.exe": - when: - os: windows store: steam @@ -196513,11 +197059,11 @@ Fenix Fight: installDir: YOUFIGHT: {} launch: - /YOUFIGHT.app: + "/YOUFIGHT.app": - when: - os: mac store: steam - /YOUFIGHT.exe: + "/YOUFIGHT.exe": - when: - bit: 64 os: windows @@ -196526,7 +197072,7 @@ Fenix Fight: id: 733710 Fenix Rage: files: - /Fenix_Rage/phoenix.dat: + "/Fenix_Rage/phoenix.dat": tags: - config - save @@ -196535,7 +197081,7 @@ Fenix Rage: installDir: Fenix Rage: {} launch: - /Fenix Rage.exe: + "/Fenix Rage.exe": - when: - os: windows store: steam @@ -196545,7 +197091,7 @@ Fenrisulfr Puzzle: installDir: FenrisulfrPuzzle: {} launch: - /loading.exe: + "/loading.exe": - when: - os: windows store: steam @@ -196555,7 +197101,7 @@ Feral Blue: installDir: Feral blue: {} launch: - /Karabas.exe: + "/Karabas.exe": - when: - bit: 64 os: windows @@ -196566,16 +197112,16 @@ Feral Flowers: installDir: Feral Flowers: {} launch: - /Feral Flowers.app/Contents/MacOS/Feral Flowers: + "/Feral Flowers.app/Contents/MacOS/Feral Flowers": - when: - os: mac store: steam - /feral: + "/feral": - when: - bit: 64 os: linux store: steam - /feral.exe: + "/feral.exe": - when: - bit: 64 os: windows @@ -196589,15 +197135,15 @@ Feral Fury: installDir: Feral Fury: {} launch: - /Feral Fury.exe: + "/Feral Fury.exe": - when: - os: windows store: steam - /Feral_Fury.app/Contents/MacOS/Feral_Fury: + "/Feral_Fury.app/Contents/MacOS/Feral_Fury": - when: - os: mac store: steam - /run.sh: + "/run.sh": - when: - os: linux store: steam @@ -196606,25 +197152,25 @@ Feral Fury: Fergus The Fly: steam: id: 585790 -Feria d'Arles: +"Feria d'Arles": installDir: - Feria d'Arles: {} + "Feria d'Arles": {} launch: - /Feria Mac.app/Contents/MacOS/AGS: + "/Feria Mac.app/Contents/MacOS/AGS": - when: - os: mac store: steam - /Feria d'Arles.exe: + "/Feria d'Arles.exe": - when: - os: windows store: steam steam: id: 1181570 -Fermi's Path: +"Fermi's Path": installDir: - Fermi's Path: {} + "Fermi's Path": {} launch: - /FerP.exe: + "/FerP.exe": - when: - os: windows store: steam @@ -196635,7 +197181,7 @@ Fernageddon: id: 2241510 Fernbus Simulator: files: - /Fernbus/Saved: + "/Fernbus/Saved": tags: - save when: @@ -196643,7 +197189,7 @@ Fernbus Simulator: installDir: Fernbus Simulator: {} launch: - /Fernbus/Binaries/Win64/Fernbus-Win64-Shipping.exe: + "/Fernbus/Binaries/Win64/Fernbus-Win64-Shipping.exe": - when: - os: windows store: steam @@ -196653,7 +197199,7 @@ Fernz Gate: installDir: Fernz Gate: {} launch: - /FernzGate.exe: + "/FernzGate.exe": - when: - os: windows store: steam @@ -196661,12 +197207,12 @@ Fernz Gate: id: 860480 Ferrari Virtual Race: files: - /Synetic/FerrariVR: + "/Synetic/FerrariVR": tags: - config when: - os: windows - /Synetic/FerrariVR/SavedGame: + "/Synetic/FerrariVR/SavedGame": tags: - save when: @@ -196675,27 +197221,27 @@ Ferret Scoundrels: installDir: Ferret Scoundrels: {} launch: - /Ferret Scoundrels.exe: + "/Ferret Scoundrels.exe": - when: - os: windows store: steam steam: id: 1064320 -'Ferrum''s Secrets: Where Is Grandpa?': +"Ferrum's Secrets: Where Is Grandpa?": installDir: FerrumSecrets: {} launch: - /FerrumLinux.x86: + "/FerrumLinux.x86": - when: - bit: 32 os: linux store: steam - /FerrumLinux.x86_64: + "/FerrumLinux.x86_64": - when: - bit: 64 os: linux store: steam - /FerrumSecrets.exe: + "/FerrumSecrets.exe": - when: - os: windows store: steam @@ -196705,26 +197251,26 @@ Fesnia: installDir: Fesnia: {} launch: - /Fesnia.exe: - - arguments: '--in-process-gpu' + "/Fesnia.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam steam: id: 851290 -'Fester Mudd: Curse of the Gold - Episode 1': +"Fester Mudd: Curse of the Gold - Episode 1": installDir: Fester Mudd - Episode 1: {} launch: - /fester_mudd_linux.x86: + "/fester_mudd_linux.x86": - when: - os: linux store: steam - /fester_mudd_mac.app: + "/fester_mudd_mac.app": - when: - os: mac store: steam - /fester_mudd_win.exe: + "/fester_mudd_win.exe": - when: - os: windows store: steam @@ -196734,7 +197280,7 @@ Festival Tycoon: installDir: Festival Tycoon: {} launch: - /FestivalTycoon.exe: + "/FestivalTycoon.exe": - when: - os: windows store: steam @@ -196744,11 +197290,11 @@ Fetch: installDir: FETCH: {} launch: - /FetchMacSteam.app/Contents/MacOS/FetchMacSteam: + "/FetchMacSteam.app/Contents/MacOS/FetchMacSteam": - when: - os: mac store: steam - /FetchWindows.exe: + "/FetchWindows.exe": - when: - os: windows store: steam @@ -196758,12 +197304,12 @@ Fetch It Again: installDir: Fetch It Again: {} launch: - /FetchItAgain.hta: + "/FetchItAgain.hta": - when: - store: steam steam: id: 12650 -'Fetish Locator: Week One': +"Fetish Locator: Week One": gog: id: 1654462894 id: @@ -196772,38 +197318,38 @@ Fetch It Again: installDir: Fetish Locator Week One - Extended Edition: {} launch: - /FetishLocator.app/Contents/MacOS/FetishLocator: + "/FetishLocator.app/Contents/MacOS/FetishLocator": - when: - os: mac store: steam - /FetishLocator.exe: + "/FetishLocator.exe": - when: - os: windows store: steam - /FetishLocator.sh: + "/FetishLocator.sh": - when: - os: linux store: steam steam: id: 1360980 -'Fetish Locator: Week Two': +"Fetish Locator: Week Two": installDir: Fetish Locator Week Two: {} launch: - /FetishLocatorWeek2-32.exe: + "/FetishLocatorWeek2-32.exe": - when: - bit: 32 os: windows store: steam - /FetishLocatorWeek2.app/Contents/MacOS/FetishLocatorWeek2: + "/FetishLocatorWeek2.app/Contents/MacOS/FetishLocatorWeek2": - when: - os: mac store: steam - /FetishLocatorWeek2.exe: + "/FetishLocatorWeek2.exe": - when: - os: windows store: steam - /FetishLocatorWeek2.sh: + "/FetishLocatorWeek2.sh": - when: - os: linux store: steam @@ -196813,16 +197359,16 @@ Feud: installDir: Feud: {} launch: - /Feud.app/Contents/MacOS/feud: + "/Feud.app/Contents/MacOS/feud": - when: - os: mac store: steam - /feud: + "/feud": - when: - bit: 64 os: linux store: steam - /feud.exe: + "/feud.exe": - when: - bit: 64 os: windows @@ -196835,15 +197381,15 @@ Feudal Alloy: installDir: Feudal Alloy: {} launch: - /FeudalAlloy.app/Contents/MacOS/FeudalAlloy: + "/FeudalAlloy.app/Contents/MacOS/FeudalAlloy": - when: - os: mac store: steam - /FeudalAlloy.exe: + "/FeudalAlloy.exe": - when: - os: windows store: steam - /FeudalAlloy.x86_64: + "/FeudalAlloy.x86_64": - when: - os: linux store: steam @@ -196856,15 +197402,15 @@ Feudalism: installDir: Feudalism: {} launch: - /Feudalism.app: + "/Feudalism.app": - when: - os: mac store: steam - /Feudalism.exe: + "/Feudalism.exe": - when: - os: windows store: steam - /Feudalism.x86: + "/Feudalism.x86": - when: - os: linux store: steam @@ -196874,7 +197420,7 @@ Fever Cabin: installDir: Fever Cabin: {} launch: - /FeverCabin.exe: + "/FeverCabin.exe": - when: - bit: 64 os: windows @@ -196883,37 +197429,37 @@ Fever Cabin: id: 1226210 Fez: files: - /Library/Application Support/FEZ: + "/Library/Application Support/FEZ": tags: - save when: - os: mac - /Library/Application Support/FEZ/Settings: + "/Library/Application Support/FEZ/Settings": tags: - config when: - os: mac - /userdata//224760/remote: + "/userdata//224760/remote": tags: - save when: - store: steam - /FEZ: + "/FEZ": tags: - save when: - os: windows - /FEZ/Settings: + "/FEZ/Settings": tags: - config when: - os: windows - /FEZ/Settings: + "/FEZ/Settings": tags: - config when: - os: linux - /FEZ: + "/FEZ": tags: - save when: @@ -196923,15 +197469,15 @@ Fez: installDir: FEZ: {} launch: - /FEZ: + "/FEZ": - when: - os: linux store: steam - /FEZ.app/Contents/MacOS/FEZ: + "/FEZ.app/Contents/MacOS/FEZ": - when: - os: mac store: steam - /FEZ.exe: + "/FEZ.exe": - when: - os: windows store: steam @@ -196941,22 +197487,22 @@ FhaMAZEin: installDir: fhaMAZEin: {} launch: - /launch_script_linux_x32.sh: + "/launch_script_linux_x32.sh": - when: - bit: 32 os: linux store: steam - /launch_script_linux_x64.sh: + "/launch_script_linux_x64.sh": - when: - bit: 64 os: linux store: steam - /launch_script_windows_x32.bat: + "/launch_script_windows_x32.bat": - when: - bit: 32 os: windows store: steam - /launch_script_windows_x64.bat: + "/launch_script_windows_x64.bat": - when: - bit: 64 os: windows @@ -196967,7 +197513,7 @@ Fhtagn! - Tales of the Creeping Madness: installDir: Fhtagn Tales of the Creeping Madness: {} launch: - /Fhtagn.exe: + "/Fhtagn.exe": - when: - os: windows store: steam @@ -196977,15 +197523,15 @@ Fibbage XL: installDir: Fibbage XL: {} launch: - /Fibbage XL.app: + "/Fibbage XL.app": - when: - os: mac store: steam - /Fibbage XL.exe: + "/Fibbage XL.exe": - when: - os: windows store: steam - /Launcher.sh: + "/Launcher.sh": - when: - bit: 64 os: linux @@ -196999,38 +197545,38 @@ Fiber Twig 2: installDir: Fiber Twig 2: {} launch: - /FiberTwigII.exe: + "/FiberTwigII.exe": - when: - store: steam steam: id: 925060 -'Fiber Twig: Midnight Puzzle': +"Fiber Twig: Midnight Puzzle": installDir: Fiber Twig Midnight Puzzle: {} launch: - /FiberTwig.exe: + "/FiberTwig.exe": - when: - store: steam steam: id: 550180 Fibrillation HD: files: - /AppData/LocalLow/Egor Rezenov/Fibrillation HD: + "/AppData/LocalLow/Egor Rezenov/Fibrillation HD": tags: - save when: - os: windows - /AppData/LocalLow/Egor Rezenov/Fibrillation HD/config.txt: + "/AppData/LocalLow/Egor Rezenov/Fibrillation HD/config.txt": tags: - config when: - os: windows - /unity3d/Egor Rezenov/Fibrillation HD: + "/unity3d/Egor Rezenov/Fibrillation HD": tags: - save when: - os: linux - /unity3d/Egor Rezenov/Fibrillation HD/config.txt: + "/unity3d/Egor Rezenov/Fibrillation HD/config.txt": tags: - config when: @@ -197038,11 +197584,11 @@ Fibrillation HD: installDir: Fibrillation HD: {} launch: - /Fibrillation HD.exe: + "/Fibrillation HD.exe": - when: - os: windows store: steam - /Fibrillation HD.x86: + "/Fibrillation HD.x86": - when: - os: linux store: steam @@ -197056,7 +197602,7 @@ Ficterra: installDir: Ficterra: {} launch: - /Ficterra.exe: + "/Ficterra.exe": - when: - os: windows store: steam @@ -197068,7 +197614,7 @@ Fictorum: installDir: Fictorum: {} launch: - /Fictorum.exe: + "/Fictorum.exe": - when: - bit: 64 os: windows @@ -197077,12 +197623,12 @@ Fictorum: id: 503620 Fidel Dungeon Rescue: files: - /fidel/Local Store: + "/fidel/Local Store": tags: - save when: - os: windows - /fidel/Local Store/config.txt: + "/fidel/Local Store/config.txt": tags: - config when: @@ -197090,11 +197636,11 @@ Fidel Dungeon Rescue: installDir: Fidel: {} launch: - /Fidel.app/Contents/MacOS/Fidel: + "/Fidel.app/Contents/MacOS/Fidel": - when: - os: mac store: steam - /Fidel.exe: + "/Fidel.exe": - when: - os: windows store: steam @@ -197104,7 +197650,7 @@ Fidelity: installDir: Fidelity: {} launch: - /Fidelity.exe: + "/Fidelity.exe": - when: - os: windows store: steam @@ -197114,15 +197660,15 @@ Fidget Spinner: installDir: Fidget Spinner: {} launch: - /Fidget Spinner.app: + "/Fidget Spinner.app": - when: - os: mac store: steam - /Fidget Spinner.exe: + "/Fidget Spinner.exe": - when: - os: windows store: steam - /Fidget Spinner.x86: + "/Fidget Spinner.x86": - when: - os: linux store: steam @@ -197132,7 +197678,7 @@ Fidget Spinner Editor: installDir: Fidget Spinner Editor: {} launch: - /Fidget Spinner Editor.exe: + "/Fidget Spinner Editor.exe": - when: - os: windows store: steam @@ -197142,7 +197688,7 @@ Fidget Spinner In Space: installDir: Fidget Spinner In Space: {} launch: - /Fidget Spinner In Space.exe: + "/Fidget Spinner In Space.exe": - when: - os: windows store: steam @@ -197155,15 +197701,15 @@ Field Breaking: installDir: FIELD BREAKING: {} launch: - /FIELD BREAKING.app/Contents/MacOS/FIELD BREAKING: + "/FIELD BREAKING.app/Contents/MacOS/FIELD BREAKING": - when: - os: mac store: steam - /FIELD BREAKING.exe: + "/FIELD BREAKING.exe": - when: - os: windows store: steam - /FIELD BREAKING.x86_64: + "/FIELD BREAKING.x86_64": - when: - os: linux store: steam @@ -197174,12 +197720,12 @@ Field of Glory II: id: 1468566011 id: gogExtra: - - 2024895377 - 1299102798 - - 2031592984 - - 1720946731 - 1382487035 - 1402045615 + - 1720946731 + - 2024895377 + - 2031592984 steamExtra: - 737740 - 754790 @@ -197190,58 +197736,58 @@ Field of Glory II: installDir: Field of Glory II: {} launch: - /autorun.exe: + "/autorun.exe": - when: - os: windows store: steam steam: id: 660160 -'Field of Glory II: Medieval': +"Field of Glory II: Medieval": gog: id: 1274798618 installDir: Field of Glory II Medieval: {} launch: - /Launcher.exe: + "/Launcher.exe": - when: - store: steam steam: id: 1368870 -'Field of Glory: Empires': +"Field of Glory: Empires": gog: id: 1193470625 installDir: Field of Glory Empires: {} launch: - /autorun.exe: + "/autorun.exe": - when: - store: steam steam: id: 1011390 Fieldrunners: files: - /Saves: + "/Saves": tags: - save when: - os: windows - /user_defaults.plist: + "/user_defaults.plist": tags: - config when: - os: windows - /.fieldrunners: + "/.fieldrunners": tags: - config - save when: - os: linux - /userdata//209690/remote/Saves: + "/userdata//209690/remote/Saves": tags: - save when: - store: steam - /userdata//209690/remote/user_defaults.plist: + "/userdata//209690/remote/user_defaults.plist": tags: - config when: @@ -197249,11 +197795,11 @@ Fieldrunners: installDir: Fieldrunners: {} launch: - /Fieldrunners-Mac: + "/Fieldrunners-Mac": - when: - os: mac store: steam - /Fieldrunners.exe: + "/Fieldrunners.exe": - when: - os: windows store: steam @@ -197261,13 +197807,13 @@ Fieldrunners: id: 209690 Fieldrunners 2: files: - /userdata//215710/remote/Player.usr: + "/userdata//215710/remote/Player.usr": tags: - save when: - os: windows store: steam - /com.subatomic/FieldRunners2: + "/com.subatomic/FieldRunners2": tags: - config - save @@ -197276,16 +197822,16 @@ Fieldrunners 2: installDir: Fieldrunners 2: {} launch: - /Fieldrunners2.app/Contents/MacOS/Fieldrunners2: + "/Fieldrunners2.app/Contents/MacOS/Fieldrunners2": - when: - os: mac store: steam - /Fieldrunners2.exe: - - arguments: '--bpp 32 --noresize --controls stickydrag --fps 60 --mipmaps -.36' + "/Fieldrunners2.exe": + - arguments: "--bpp 32 --noresize --controls stickydrag --fps 60 --mipmaps -.36" when: - os: windows store: steam - /fieldrunners2-32: + "/fieldrunners2-32": - when: - os: linux store: steam @@ -197295,7 +197841,7 @@ Fields XY: installDir: Fields XY: {} launch: - /Fields XY.exe: + "/Fields XY.exe": - when: - os: windows store: steam @@ -197305,7 +197851,7 @@ Fields of Battle: installDir: Fields of Battle: {} launch: - /FOB.exe: + "/FOB.exe": - when: - os: windows store: steam @@ -197320,24 +197866,24 @@ Fields of Glory: id: 1237800 Fiend: files: - /config.dat: + "/config.dat": tags: - config when: - os: windows - /save/save*.sav: + "/save/save*.sav": tags: - save when: - os: windows -Fiendish Freddy's Big Top o' Fun: +"Fiendish Freddy's Big Top o' Fun": gog: id: 1680154175 installDir: FiendishFreddys: {} launch: - /dosbox_windows/dosbox.exe: - - arguments: \"FREDDY.EXE\" -conf \"dosbox_fiendishFreddys.conf\" -noconsole -exit + "/dosbox_windows/dosbox.exe": + - arguments: "\\\"FREDDY.EXE\\\" -conf \\\"dosbox_fiendishFreddys.conf\\\" -noconsole -exit" when: - os: windows store: steam @@ -197346,31 +197892,31 @@ Fiendish Freddy's Big Top o' Fun: Fiends of Imprisonment: steam: id: 410590 -'Fierce Tales: Feline Sight': +"Fierce Tales: Feline Sight": installDir: - Fierce Tales Feline Sight Collector's Edition: {} + "Fierce Tales Feline Sight Collector's Edition": {} launch: - /FierceTales_FelinesSight_CE.exe: + "/FierceTales_FelinesSight_CE.exe": - when: - os: windows store: steam steam: id: 805010 -'Fierce Tales: Marcus'' Memory': +"Fierce Tales: Marcus' Memory": installDir: - Fierce Tales Marcus' Memory Collector's Edition: {} + "Fierce Tales Marcus' Memory Collector's Edition": {} launch: - /FierceTales_MarcusMemory_CE.exe: + "/FierceTales_MarcusMemory_CE.exe": - when: - os: windows store: steam steam: id: 678420 -'Fierce Tales: The Dog''s Heart': +"Fierce Tales: The Dog's Heart": installDir: - Fierce Tales The Dog's Heart Collector's Edition: {} + "Fierce Tales The Dog's Heart Collector's Edition": {} launch: - /FierceTalesTheDogsHeartCE.exe: + "/FierceTalesTheDogsHeartCE.exe": - when: - store: steam steam: @@ -197379,7 +197925,7 @@ FierceWind Decay: installDir: FierceWind Decay: {} launch: - /FierceWindDecay/FWDecay.exe: + "/FierceWindDecay/FWDecay.exe": - when: - bit: 64 os: windows @@ -197390,11 +197936,11 @@ Fiery Disaster: installDir: Fiery Disaster: {} launch: - /Fiery Disaster.exe: + "/Fiery Disaster.exe": - when: - os: windows store: steam - /run.sh: + "/run.sh": - when: - os: linux store: steam @@ -197404,7 +197950,7 @@ Fiery catacombs: installDir: Fiery catacombs: {} launch: - /FieryCatacombs.exe: + "/FieryCatacombs.exe": - when: - os: windows store: steam @@ -197414,18 +197960,18 @@ Fiesta Online: installDir: Fiesta Online: {} launch: - /Fiesta.exe: - - arguments: '-i 46.253.147.130 -p 9010' + "/Fiesta.exe": + - arguments: "-i 46.253.147.130 -p 9010" when: - os: windows store: steam steam: id: 280620 -Fifo's Night: +"Fifo's Night": installDir: - Fifo's Night: {} + "Fifo's Night": {} launch: - /Fifo's Night.exe: + "/Fifo's Night.exe": - when: - os: windows store: steam @@ -197438,7 +197984,7 @@ Fight Angel: installDir: Fight Angel: {} launch: - /FightAngel.exe: + "/FightAngel.exe": - when: - bit: 64 os: windows @@ -197449,7 +197995,7 @@ Fight Angel Special Edition: installDir: Fight AngelSE: {} launch: - /FightAngelSE.exe: + "/FightAngelSE.exe": - when: - bit: 64 os: windows @@ -197460,7 +198006,7 @@ Fight Crab: installDir: Fight Crab: {} launch: - /FightCrab.exe: + "/FightCrab.exe": - when: - os: windows store: steam @@ -197470,7 +198016,7 @@ Fight Desserts: installDir: Fight desserts: {} launch: - /Fight desserts.exe: + "/Fight desserts.exe": - when: - os: windows store: steam @@ -197485,11 +198031,11 @@ Fight For Love: installDir: Fight For Love: {} launch: - /FightForLove: + "/FightForLove": - when: - os: linux store: steam - /FightForLove.exe: + "/FightForLove.exe": - when: - os: windows store: steam @@ -197502,7 +198048,7 @@ Fight High: installDir: Fight High: {} launch: - /FightHigh.exe: + "/FightHigh.exe": - when: - bit: 64 os: windows @@ -197511,12 +198057,12 @@ Fight High: id: 1195430 Fight Knight: files: - /options.ini: + "/options.ini": tags: - config when: - os: windows - /FIGHTKNIGHT: + "/FIGHTKNIGHT": tags: - save when: @@ -197524,7 +198070,7 @@ Fight Knight: installDir: FIGHT KNIGHT: {} launch: - /FIGHTKNIGHT.exe: + "/FIGHTKNIGHT.exe": - when: - os: windows store: steam @@ -197534,7 +198080,7 @@ Fight Me Bro!: installDir: Fight Me Bro!: {} launch: - /FMBgame.exe: + "/FMBgame.exe": - when: - os: windows store: steam @@ -197547,12 +198093,12 @@ Fight Sparring VR: id: 665730 Fight The Dragon: files: - /.config/unity3d/3 Sprockets/FightTheDragon: + "/.config/unity3d/3 Sprockets/FightTheDragon": tags: - config when: - os: linux - /AppData/LocalLow/3 Sprockets/FightTheDragon: + "/AppData/LocalLow/3 Sprockets/FightTheDragon": tags: - save when: @@ -197560,15 +198106,15 @@ Fight The Dragon: installDir: FightTheDragon: {} launch: - /FightTheDragon.app: + "/FightTheDragon.app": - when: - os: mac store: steam - /FightTheDragon.exe: + "/FightTheDragon.exe": - when: - os: windows store: steam - /startgame.sh: + "/startgame.sh": - when: - os: linux store: steam @@ -197581,7 +198127,7 @@ Fight for Gold II: installDir: Fight for Gold II: {} launch: - /Fight for Gold II.exe: + "/Fight for Gold II.exe": - when: - os: windows store: steam @@ -197591,7 +198137,7 @@ Fight of Animals: installDir: Fight of Animals: {} launch: - /FOA.exe: + "/FOA.exe": - when: - bit: 64 os: windows @@ -197602,8 +198148,11 @@ Fight of Gods: installDir: Fight of Gods: {} launch: - /FOG.exe: + "/FOG.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam @@ -197624,7 +198173,7 @@ Fight the Horror: installDir: Fight_the_Horror: {} launch: - /Fight_the_Horror.exe: + "/Fight_the_Horror.exe": - when: - os: windows store: steam @@ -197634,20 +198183,21 @@ Fight wisdom: installDir: fight wisdom: {} launch: - /fight wisdom.exe: + "/fight wisdom.exe": - when: - os: windows store: steam steam: id: 1151500 -Fight'N Rage: +"Fight'N Rage": files: - /AppData/LocalLow/sebagamesdev/fightnrage/savedata/data.sav: + "/AppData/LocalLow/sebagamesdev/fightnrage/savedata/data.sav": tags: - save when: - - store: steam - /AppData/LocalLow/sebagamesdev/gog/fightnrage/savedata/data.sav: + - os: windows + store: steam + "/AppData/LocalLow/sebagamesdev/gog/fightnrage/savedata/data.sav": tags: - save when: @@ -197657,17 +198207,17 @@ Fight'N Rage: installDir: fightnrage: {} launch: - /FIGHT_N_RAGE.exe: + "/FIGHT_N_RAGE.exe": - when: - os: windows store: steam steam: id: 674520 -'Fight,to the last': +"Fight,to the last": installDir: - 'Fight,to the last': {} + "Fight,to the last": {} launch: - '/Fight,to the last/Fight,to the last.exe': + "/Fight,to the last/Fight,to the last.exe": - when: - store: steam steam: @@ -197676,8 +198226,8 @@ Fighter Royale - Last Ace Flying: installDir: Fighter Royale: {} launch: - /FighterRoyale/FighterRoyale.exe: - - arguments: \"?steam=true&env=prod\" + "/FighterRoyale/FighterRoyale.exe": + - arguments: "\\\"?steam=true&env=prod\\\"" when: - bit: 64 os: windows @@ -197687,14 +198237,14 @@ Fighter Royale - Last Ace Flying: Fighter of Evil: steam: id: 628840 -Fighter's History: +"Fighter's History": steam: id: 1649210 Fighters Legacy: installDir: Fighters Legacy: {} launch: - /Fighters Legacy.exe: + "/Fighters Legacy.exe": - when: - bit: 64 os: windows @@ -197705,7 +198255,7 @@ Fighters Unleashed: installDir: Fighters Unleashed: {} launch: - /FU.exe: + "/FU.exe": - when: - os: windows store: steam @@ -197713,12 +198263,12 @@ Fighters Unleashed: id: 566560 Fighties: files: - /userdata//362810/remote/fightiessavegame.sav: + "/userdata//362810/remote/fightiessavegame.sav": tags: - save when: - store: steam - /Fighties/fightiessavegame.sav: + "/Fighties/fightiessavegame.sav": tags: - save when: @@ -197726,15 +198276,15 @@ Fighties: installDir: Fighties: {} launch: - /Fighties: + "/Fighties": - when: - os: linux store: steam - /Fighties.app: + "/Fighties.app": - when: - os: mac store: steam - /Fighties.exe: + "/Fighties.exe": - when: - os: windows store: steam @@ -197744,7 +198294,7 @@ Fighting Box: installDir: FIGHTING BOX: {} launch: - /game.exe: + "/game.exe": - when: - bit: 64 os: windows @@ -197753,7 +198303,7 @@ Fighting Box: id: 721420 Fighting EX Layer: files: - /EXF/Saved/Config/WindowsNoEditor/GameUserSettings.ini: + "/EXF/Saved/Config/WindowsNoEditor/GameUserSettings.ini": tags: - config when: @@ -197761,7 +198311,7 @@ Fighting EX Layer: installDir: FIGHTING EX LAYER: {} launch: - /EXF.exe: + "/EXF.exe": - when: - os: windows store: steam @@ -197769,7 +198319,7 @@ Fighting EX Layer: id: 871200 Fighting Fantasy Classics: files: - /AppData/LocalLow/Tin Man Games/Fighting Fantasy Classics: + "/AppData/LocalLow/Tin Man Games/Fighting Fantasy Classics": tags: - save when: @@ -197777,11 +198327,11 @@ Fighting Fantasy Classics: installDir: Fighting Fantasy Classics: {} launch: - /Fighting Fantasy Classics.app: + "/Fighting Fantasy Classics.app": - when: - os: mac store: steam - /Fighting Fantasy Classics.exe: + "/Fighting Fantasy Classics.exe": - when: - os: windows store: steam @@ -197793,7 +198343,7 @@ Fighting Fantasy Classics: id: 856880 Fighting Fantasy Legends: files: - /saved_game: + "/saved_game": tags: - save when: @@ -197801,11 +198351,11 @@ Fighting Fantasy Legends: installDir: Fighting Fantasy Legends: {} launch: - /FightingFantasy.exe: + "/FightingFantasy.exe": - when: - os: windows store: steam - /fightingfantasy.app: + "/fightingfantasy.app": - when: - os: mac store: steam @@ -197816,15 +198366,15 @@ Fighting Force: HKEY_CURRENT_USER/SOFTWARE/Core Design/FightingForce: tags: - config -'Fighting Frenzy: Swole Simulator': +"Fighting Frenzy: Swole Simulator": installDir: Fighting Frenzy Swole Simulator: {} launch: - /FFSS.app: + "/FFSS.app": - when: - os: mac store: steam - /FightingFrenzy.exe: + "/FightingFrenzy.exe": - when: - os: windows store: steam @@ -197839,7 +198389,7 @@ Fighting Space: installDir: FIGHTING SPACE: {} launch: - /nw.exe: + "/nw.exe": - when: - bit: 64 os: windows @@ -197850,7 +198400,7 @@ Fighting Spree 3D: installDir: Fighting Spree 3D: {} launch: - /Fighting Spree 3D.exe: + "/Fighting Spree 3D.exe": - when: - os: windows store: steam @@ -197860,11 +198410,11 @@ Fighting for Food: installDir: FightingForFood: {} launch: - /FFF.exe: + "/FFF.exe": - when: - os: windows store: steam - /FightingForFoodMac.app: + "/FightingForFoodMac.app": - when: - os: mac store: steam @@ -197872,7 +198422,7 @@ Fighting for Food: id: 667580 Fights in Tight Spaces: files: - /AppData/LocalLow/Mode7/Fights in Tight Spaces/Saves: + "/AppData/LocalLow/Mode7/Fights in Tight Spaces/Saves": tags: - save when: @@ -197881,9 +198431,9 @@ Fights in Tight Spaces: id: 1557142688 id: gogExtra: - - 1287812237 - - 1177544610 - 1122933596 + - 1177544610 + - 1287812237 - 1954553930 steamExtra: - 1478070 @@ -197891,7 +198441,7 @@ Fights in Tight Spaces: installDir: Fights in Tight Spaces: {} launch: - /FightsInTightSpaces.exe: + "/FightsInTightSpaces.exe": - when: - store: steam steam: @@ -197903,27 +198453,27 @@ Fightttris VR: id: 841340 Figment: files: - /My Games/Figment: + "/My Games/Figment": tags: - config when: - os: linux - /userdata//493540/remote/*.sav: + "/userdata//493540/remote/*.sav": tags: - save when: - store: steam - /userdata//493540/remote/RoamingConfig.cfg: + "/userdata//493540/remote/RoamingConfig.cfg": tags: - config when: - store: steam - /My Games/Figment: + "/My Games/Figment": tags: - config when: - os: windows - /My Games/Figment/Saves: + "/My Games/Figment/Saves": tags: - save when: @@ -197937,27 +198487,27 @@ Figment: installDir: Figment: {} launch: - /Figment.app: + "/Figment.app": - when: - os: mac store: steam - /Figment.exe: + "/Figment.exe": - when: - os: windows store: steam - /Figment.x86: + "/Figment.x86": - when: - bit: 32 os: linux store: steam - /Figment.x86_64: + "/Figment.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 493540 -'Figment 2: Creed Valley': +"Figment 2: Creed Valley": gog: id: 1195169485 id: @@ -197969,7 +198519,7 @@ Figment: installDir: Figment 2: {} launch: - /Figment 2.exe: + "/Figment 2.exe": - when: - store: steam steam: @@ -197981,7 +198531,7 @@ Figure Simulator War: installDir: Figure Simulator War: {} launch: - /FIGURE.exe: + "/FIGURE.exe": - when: - os: windows store: steam @@ -197994,29 +198544,29 @@ Figurine Scene Simulator: installDir: Figurine Scene Simulator: {} launch: - /Figurine Scene Simulator.exe: + "/Figurine Scene Simulator.exe": - when: - store: steam steam: id: 1659810 Filament: files: - /.config/Epic/Filament/Saved/Config/LinuxNoEditor: + "/.config/Epic/Filament/Saved/Config/LinuxNoEditor": tags: - config when: - os: linux - /.config/Epic/Filament/Saved/SaveGames: + "/.config/Epic/Filament/Saved/SaveGames": tags: - save when: - os: linux - /Filament/Saved/Config/WindowsNoEditor: + "/Filament/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /Filament/Saved/SaveGames: + "/Filament/Saved/SaveGames": tags: - save when: @@ -198026,7 +198576,7 @@ Filament: installDir: Filament: {} launch: - /Filament.sh: + "/Filament.sh": - when: - bit: 64 os: linux @@ -198035,7 +198585,7 @@ Filament: id: 1137350 Filcher: files: - /AppData/LocalLow/Johan Hjärpe/Filcher/KeyBindings.dat: + "/AppData/LocalLow/Johan Hjärpe/Filcher/KeyBindings.dat": tags: - config when: @@ -198043,7 +198593,7 @@ Filcher: installDir: Filcher: {} launch: - /Filcher.exe: + "/Filcher.exe": - when: - store: steam registry: @@ -198057,7 +198607,7 @@ Fill Up!: installDir: Fill Up!: {} launch: - /gasstation.exe: + "/gasstation.exe": - when: - os: windows store: steam @@ -198067,7 +198617,7 @@ Filmmaker Tycoon: installDir: Filmmaker Tycoon: {} launch: - /Filmmaker Tycoon.exe: + "/Filmmaker Tycoon.exe": - when: - bit: 64 os: windows @@ -198078,7 +198628,7 @@ Filthy Frank Kart: installDir: Filthyfrankkart: {} launch: - /Filthy Frank Kart update2.exe: + "/Filthy Frank Kart update2.exe": - when: - os: windows store: steam @@ -198088,7 +198638,7 @@ Filthy Hands: installDir: Filthy Hands: {} launch: - /FilthyHands.exe: + "/FilthyHands.exe": - when: - os: windows store: steam @@ -198098,12 +198648,12 @@ Filthy Lucre: installDir: Filthy Lucre: {} launch: - /FilthyLucre.exe: + "/FilthyLucre.exe": - when: - store: steam steam: id: 533010 -'Filthy, Stinking, Orcs!': +"Filthy, Stinking, Orcs!": installDir: FilthyStinkingOrcs: {} steam: @@ -198112,7 +198662,7 @@ Fimbul: installDir: Fimbul: {} launch: - /Fimbul.exe: + "/Fimbul.exe": - when: - os: windows store: steam @@ -198123,7 +198673,7 @@ Final Approach: Final Approach: {} steam: id: 380670 -'Final Approach: Pilot Edition': +"Final Approach: Pilot Edition": installDir: FinalApproach_PilotEdition: {} steam: @@ -198142,7 +198692,7 @@ Final Battle: installDir: Final Battle: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: @@ -198151,13 +198701,13 @@ Final Bravely: installDir: Final Bravely: {} launch: - /Game_boxed.exe: - - arguments: '--in-process-gpu' + "/Game_boxed.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam - /game_boxedEN.exe: - - arguments: '--in-process-gpu' + "/game_boxedEN.exe": + - arguments: "--in-process-gpu" when: - store: steam steam: @@ -198166,7 +198716,7 @@ Final Core: installDir: Final Core: {} launch: - /final_core.exe: + "/final_core.exe": - when: - os: windows store: steam @@ -198176,56 +198726,56 @@ Final Crash Demo: installDir: Final Crash Demo: {} launch: - /Final Crash.exe: + "/Final Crash.exe": - when: - os: windows store: steam steam: id: 1105570 -'Final Cut: Death on the Silver Screen': +"Final Cut: Death on the Silver Screen": installDir: - Final Cut Death on the Silver Screen Collector's Edition: {} + "Final Cut Death on the Silver Screen Collector's Edition": {} launch: - /FinalCut_DeathOnTheSilverScreenCE.exe: + "/FinalCut_DeathOnTheSilverScreenCE.exe": - when: - store: steam steam: id: 514740 -'Final Cut: Encore': +"Final Cut: Encore": installDir: - Final Cut Encore Collector's Edition: {} + "Final Cut Encore Collector's Edition": {} launch: - /FinalCut_Encore_CE.exe: + "/FinalCut_Encore_CE.exe": - when: - os: windows store: steam steam: id: 622550 -'Final Cut: Fame Fatale': +"Final Cut: Fame Fatale": installDir: - Final Cut Fame Fatale Collector's Edition: {} + "Final Cut Fame Fatale Collector's Edition": {} launch: - /FinalCut_FameFatale_CE.exe: + "/FinalCut_FameFatale_CE.exe": - when: - os: windows store: steam steam: id: 956390 -'Final Cut: Homage': +"Final Cut: Homage": installDir: - Final Cut Homage Collector's Edition: {} + "Final Cut Homage Collector's Edition": {} launch: - /FinalCut_Homage_CE.exe: + "/FinalCut_Homage_CE.exe": - when: - os: windows store: steam steam: id: 749000 -'Final Cut: The True Escapade': +"Final Cut: The True Escapade": installDir: - Final Cut The True Escapade Collector's Edition: {} + "Final Cut The True Escapade Collector's Edition": {} launch: - /FinalCut_TheTrueEscapade_CE.exe: + "/FinalCut_TheTrueEscapade_CE.exe": - when: - os: windows store: steam @@ -198235,7 +198785,7 @@ Final Days: installDir: Final Days: {} launch: - /FinalDays.exe: + "/FinalDays.exe": - when: - os: windows store: steam @@ -198245,20 +198795,20 @@ Final Directive: installDir: Final Directive: {} launch: - /Final Directive.exe: + "/Final Directive.exe": - when: - os: windows store: steam - /finaldirective.app: + "/finaldirective.app": - when: - os: mac store: steam - /finaldirective.x86: + "/finaldirective.x86": - when: - bit: 32 os: linux store: steam - /finaldirective.x86_64: + "/finaldirective.x86_64": - when: - bit: 64 os: linux @@ -198267,25 +198817,25 @@ Final Directive: id: 777790 Final Doom: files: - /Final Doom for Windows 95: + "/Final Doom for Windows 95": tags: - config - save when: - os: windows - /PLUTONIA: + "/PLUTONIA": tags: - config - save when: - os: dos - /TNT: + "/TNT": tags: - config - save when: - os: dos - /base: + "/base": tags: - config - save @@ -198299,17 +198849,17 @@ Final Doom: installDir: Final Doom: {} launch: - /base/dosbox.exe: - - arguments: '-conf .\\base\\plutoniam.conf -fullscreen -exit' + "/base/dosbox.exe": + - arguments: "-conf .\\\\base\\\\plutoniam.conf -fullscreen -exit" when: - store: steam - - arguments: '-conf .\\base\\plutonia.conf -fullscreen -exit' + - arguments: "-conf .\\\\base\\\\plutonia.conf -fullscreen -exit" when: - store: steam - - arguments: '-conf .\\base\\tntm.conf -fullscreen -exit' + - arguments: "-conf .\\\\base\\\\tntm.conf -fullscreen -exit" when: - store: steam - - arguments: '-conf .\\base\\tnt.conf -fullscreen -exit' + - arguments: "-conf .\\\\base\\\\tnt.conf -fullscreen -exit" when: - store: steam steam: @@ -198318,7 +198868,7 @@ Final Dusk: installDir: Final Dusk: {} launch: - /Final Dusk.exe: + "/Final Dusk.exe": - when: - os: windows store: steam @@ -198331,12 +198881,12 @@ Final Dusk: id: 337420 Final Exam: files: - /video_cfg.xml: + "/video_cfg.xml": tags: - config when: - os: windows - /userdata//233190/remote: + "/userdata//233190/remote": tags: - save when: @@ -198345,7 +198895,7 @@ Final Exam: installDir: Final Exam: {} launch: - /final_exam.exe: + "/final_exam.exe": - when: - os: windows store: steam @@ -198353,7 +198903,7 @@ Final Exam: id: 233190 Final Fantasy: files: - /My Games/FINAL FANTASY PR/Steam/: + "/My Games/FINAL FANTASY PR/Steam/": tags: - save when: @@ -198361,14 +198911,14 @@ Final Fantasy: installDir: FINAL FANTASY PR: {} registry: - 'HKEY_CURRENT_USER/Software/SQUARE ENIX, Inc./FINAL FANTASY': + "HKEY_CURRENT_USER/Software/SQUARE ENIX, Inc./FINAL FANTASY": tags: - config steam: id: 1173770 Final Fantasy II: files: - /My Games/FINAL FANTASY II PR/Steam/: + "/My Games/FINAL FANTASY II PR/Steam/": tags: - save when: @@ -198379,7 +198929,7 @@ Final Fantasy II: id: 1173780 Final Fantasy III: files: - /My Games/FINAL FANTASY III PR/Steam/: + "/My Games/FINAL FANTASY III PR/Steam/": tags: - save when: @@ -198390,12 +198940,12 @@ Final Fantasy III: id: 1173790 Final Fantasy III (3D Remake): files: - /FF3_Win32/: + "/FF3_Win32/": tags: - save when: - os: windows - /FF3_Win32/FF3.ini: + "/FF3_Win32/FF3.ini": tags: - config when: @@ -198403,7 +198953,7 @@ Final Fantasy III (3D Remake): installDir: Final Fantasy III: {} launch: - /FF3_Launcher.exe: + "/FF3_Launcher.exe": - when: - os: windows store: steam @@ -198411,7 +198961,7 @@ Final Fantasy III (3D Remake): id: 239120 Final Fantasy IV: files: - /My Games/FINAL FANTASY IV PR/Steam/: + "/My Games/FINAL FANTASY IV PR/Steam/": tags: - save when: @@ -198422,12 +198972,12 @@ Final Fantasy IV: id: 1173800 Final Fantasy IV (3D Remake): files: - /FF4/: + "/FF4/": tags: - save when: - os: windows - /FF4/FF4.ini: + "/FF4/FF4.ini": tags: - config when: @@ -198435,20 +198985,20 @@ Final Fantasy IV (3D Remake): installDir: Final Fantasy IV: {} launch: - /FF4_Launcher.exe: + "/FF4_Launcher.exe": - when: - os: windows store: steam steam: id: 312750 -'Final Fantasy IV: The After Years': +"Final Fantasy IV: The After Years": files: - /FF4A/: + "/FF4A/": tags: - save when: - os: windows - /FF4A/FF4A.ini: + "/FF4A/FF4A.ini": tags: - config when: @@ -198456,7 +199006,7 @@ Final Fantasy IV (3D Remake): installDir: FINAL FANTASY IV THE AFTER YEARS: {} launch: - /FF4A_Launcher.exe: + "/FF4A_Launcher.exe": - when: - os: windows store: steam @@ -198464,17 +199014,17 @@ Final Fantasy IV (3D Remake): id: 346830 Final Fantasy IX: files: - /Settings.ini: + "/Settings.ini": tags: - config when: - os: windows - /AppData/LocalLow/SquareEnix/FINAL FANTASY IX/Steam/EncryptedSavedData: + "/AppData/LocalLow/SquareEnix/FINAL FANTASY IX/Steam/EncryptedSavedData": tags: - save when: - os: windows - /Packages/39EA002F.FINALFANTASYIX_n746a19ndrrjg/SystemAppData/wgs: + "/Packages/39EA002F.FINALFANTASYIX_n746a19ndrrjg/SystemAppData/wgs": tags: - save when: @@ -198483,7 +199033,7 @@ Final Fantasy IX: installDir: FINAL FANTASY IX: {} launch: - /FF9_Launcher.exe: + "/FF9_Launcher.exe": - when: - os: windows store: steam @@ -198491,12 +199041,12 @@ Final Fantasy IX: id: 377840 Final Fantasy Type-0 HD: files: - /SquareEnix/FinalFantasyType-0HD/save/SYSTEMDATA: + "/SquareEnix/FinalFantasyType-0HD/save/SYSTEMDATA": tags: - save when: - os: windows - /SquareEnix/FinalFantasyType-0HD/save/SYSTEMDATA/TYPE0SYS.BIN: + "/SquareEnix/FinalFantasyType-0HD/save/SYSTEMDATA/TYPE0SYS.BIN": tags: - config when: @@ -198504,8 +199054,8 @@ Final Fantasy Type-0 HD: installDir: FINAL FANTASY TYPE-0 HD: {} launch: - /fftype0hdlauncher.exe: - - arguments: '0' + "/fftype0hdlauncher.exe": + - arguments: "0" when: - bit: 64 os: windows @@ -198514,12 +199064,12 @@ Final Fantasy Type-0 HD: id: 340170 Final Fantasy V: files: - /FFV_Game/: + "/FFV_Game/": tags: - save when: - os: windows - /FFV_Game/FF5.ini: + "/FFV_Game/FF5.ini": tags: - config when: @@ -198527,7 +199077,7 @@ Final Fantasy V: installDir: FINAL FANTASY V: {} launch: - /FFV_Launcher.exe: + "/FFV_Launcher.exe": - when: - os: windows store: steam @@ -198535,7 +199085,7 @@ Final Fantasy V: id: 382890 Final Fantasy V (2021): files: - /My Games/FINAL FANTASY V PR/Steam/: + "/My Games/FINAL FANTASY V PR/Steam/": tags: - save when: @@ -198543,24 +199093,24 @@ Final Fantasy V (2021): installDir: FINAL FANTASY V PR: {} registry: - 'HKEY_CURRENT_USER/SOFTWARE/SQUARE ENIX, Inc./FINAL FANTASY V': + "HKEY_CURRENT_USER/SOFTWARE/SQUARE ENIX, Inc./FINAL FANTASY V": tags: - config steam: id: 1173810 Final Fantasy VI: files: - /userdata//382900/local/data: + "/userdata//382900/local/data": tags: - save when: - store: steam - /userdata//382900/local/settings.bin: + "/userdata//382900/local/settings.bin": tags: - config when: - store: steam - /userdata//382900/remote/data: + "/userdata//382900/remote/data": tags: - save when: @@ -198568,11 +199118,11 @@ Final Fantasy VI: installDir: Final Fantasy 6: {} launch: - /FF6.exe: + "/FF6.exe": - when: - os: windows store: steam - /FF6_Launcher.exe: + "/FF6_Launcher.exe": - when: - os: windows store: steam @@ -198580,7 +199130,7 @@ Final Fantasy VI: id: 382900 Final Fantasy VI (2022): files: - /My Games/FINAL FANTASY VI PR/Steam/: + "/My Games/FINAL FANTASY VI PR/Steam/": tags: - save when: @@ -198588,7 +199138,7 @@ Final Fantasy VI (2022): installDir: FINAL FANTASY VI PR: {} launch: - /FINAL FANTASY VI.exe: + "/FINAL FANTASY VI.exe": - when: - os: windows store: steam @@ -198596,36 +199146,39 @@ Final Fantasy VI (2022): id: 1173820 Final Fantasy VII: files: - /save: + "/save": tags: - save when: - os: windows registry: - 'HKEY_LOCAL_MACHINE/SOFTWARE/WOW6432Node/Square Soft, Inc./Final Fantasy VII/1.00': + "HKEY_LOCAL_MACHINE/SOFTWARE/WOW6432Node/Square Soft, Inc./Final Fantasy VII/1.00": tags: - config Final Fantasy VII (2012): files: - /Square Enix/FINAL FANTASY VII Steam/ff7*.cfg: + "/Square Enix/FINAL FANTASY VII Steam/ff7*.cfg": tags: - config when: - - store: steam - /Square Enix/FINAL FANTASY VII Steam/networkSettings.dat: + - os: windows + store: steam + "/Square Enix/FINAL FANTASY VII Steam/networkSettings.dat": tags: - config when: - - store: steam - /Square Enix/FINAL FANTASY VII Steam/user_: + - os: windows + store: steam + "/Square Enix/FINAL FANTASY VII Steam/user_": tags: - save when: - - store: steam + - os: windows + store: steam installDir: FINAL FANTASY VII: {} launch: - /FF7_Launcher.exe: + "/FF7_Launcher.exe": - when: - os: windows store: steam @@ -198633,25 +199186,26 @@ Final Fantasy VII (2012): id: 39140 Final Fantasy VII Remake Intergrade: files: - /My Games/FINAL FANTASY VII REMAKE: + "/My Games/FINAL FANTASY VII REMAKE": tags: - config when: - os: windows - /My Games/FINAL FANTASY VII REMAKE/EOS: + "/My Games/FINAL FANTASY VII REMAKE/EOS": tags: - save when: - - store: epic - /My Games/FINAL FANTASY VII REMAKE/Steam: + - os: windows + "/My Games/FINAL FANTASY VII REMAKE/Steam": tags: - save when: - - store: steam + - os: windows + store: steam installDir: FINAL FANTASY VII REMAKE: {} launch: - /ff7remake.exe: + "/ff7remake.exe": - when: - bit: 64 os: windows @@ -198660,40 +199214,40 @@ Final Fantasy VII Remake Intergrade: id: 1462040 Final Fantasy VII Windows Edition: files: - /My Games/FINAL FANTASY VII/config.txt: + "/My Games/FINAL FANTASY VII/config.txt": tags: - config when: - os: windows store: microsoft - /Packages/39EA002F.FINALFANTASYVII_n746a19ndrrjg/SystemAppData: + "/Packages/39EA002F.FINALFANTASYVII_n746a19ndrrjg/SystemAppData": tags: - save when: - os: windows store: microsoft -'Final Fantasy VII: Ever Crisis': +"Final Fantasy VII: Ever Crisis": steam: id: 2484110 Final Fantasy VIII: files: - /Save: + "/Save": tags: - save when: - os: windows registry: - 'HKEY_LOCAL_MACHINE/SOFTWARE/WOW6432Node/Square Soft, Inc/FINAL FANTASY VIII/1.00': + "HKEY_LOCAL_MACHINE/SOFTWARE/WOW6432Node/Square Soft, Inc/FINAL FANTASY VIII/1.00": tags: - config Final Fantasy VIII (2013): files: - /Square Enix/FINAL FANTASY VIII Steam: + "/Square Enix/FINAL FANTASY VIII Steam": tags: - config when: - os: windows - /Square Enix/FINAL FANTASY VIII Steam/: + "/Square Enix/FINAL FANTASY VIII Steam/": tags: - save when: @@ -198701,7 +199255,7 @@ Final Fantasy VIII (2013): installDir: FINAL FANTASY VIII: {} launch: - /FF8_Launcher.exe: + "/FF8_Launcher.exe": - when: - os: windows store: steam @@ -198709,20 +199263,22 @@ Final Fantasy VIII (2013): id: 39150 Final Fantasy VIII Remastered: files: - /My Games/FINAL FANTASY VIII Remastered/Steam/: + "/My Games/FINAL FANTASY VIII Remastered/Steam/": tags: - config when: - - store: steam - /My Games/FINAL FANTASY VIII Remastered/Steam//game_data/user/saves: + - os: windows + store: steam + "/My Games/FINAL FANTASY VIII Remastered/Steam//game_data/user/saves": tags: - save when: - - store: steam + - os: windows + store: steam installDir: FINAL FANTASY VIII Remastered: {} launch: - /FFVIII_LAUNCHER.exe: + "/FFVIII_LAUNCHER.exe": - when: - os: windows store: steam @@ -198730,19 +199286,19 @@ Final Fantasy VIII Remastered: id: 1026680 Final Fantasy X/X-2 HD Remaster: files: - /SQUARE ENIX/FINAL FANTASY X&X-2 HD Remaster: + "/SQUARE ENIX/FINAL FANTASY X&X-2 HD Remaster": tags: - save when: - os: windows - /SQUARE ENIX/FINAL FANTASY X&X-2 HD Remaster/GameSetting.ini: + "/SQUARE ENIX/FINAL FANTASY X&X-2 HD Remaster/GameSetting.ini": tags: - config when: - os: windows - os: windows store: microsoft - '/Packages/39EA002F.FFXX-2HDRemaster_n746a19ndrrjg/SystemAppData/wgs/0009000000B904E5_0000000000000000000000006038DDC9/{Random Characters}': + "/Packages/39EA002F.FFXX-2HDRemaster_n746a19ndrrjg/SystemAppData/wgs/0009000000B904E5_0000000000000000000000006038DDC9/{Random Characters}": tags: - save when: @@ -198751,7 +199307,7 @@ Final Fantasy X/X-2 HD Remaster: installDir: FINAL FANTASY FFX&FFX-2 HD Remaster: {} launch: - /FFX&X-2_LAUNCHER.exe: + "/FFX&X-2_LAUNCHER.exe": - when: - os: windows store: steam @@ -198767,28 +199323,28 @@ Final Fantasy XI: installDir: FFXINA: {} launch: - /SquareEnix/FINAL FANTASY XI/ToolsUS/FINAL FANTASY XI Config.exe: + "/SquareEnix/FINAL FANTASY XI/ToolsUS/FINAL FANTASY XI Config.exe": - when: - store: steam - /SquareEnix/FINAL FANTASY XI/polboot.exe: + "/SquareEnix/FINAL FANTASY XI/polboot.exe": - when: - os: windows store: steam - workingDir: /SquareEnix/FINAL FANTASY XI - /SquareEnix/PlayOnlineViewer/polcfg/polcfg.exe: + workingDir: "/SquareEnix/FINAL FANTASY XI" + "/SquareEnix/PlayOnlineViewer/polcfg/polcfg.exe": - when: - store: steam steam: id: 230330 -'Final Fantasy XII: The Zodiac Age': +"Final Fantasy XII: The Zodiac Age": files: - /My Games/FINAL FANTASY XII THE ZODIAC AGE: + "/My Games/FINAL FANTASY XII THE ZODIAC AGE": tags: - config - save when: - os: windows - /My Games/MS-Store FINAL FANTASY XII THE ZODIAC AGE: + "/My Games/MS-Store FINAL FANTASY XII THE ZODIAC AGE": tags: - config - save @@ -198798,39 +199354,39 @@ Final Fantasy XI: installDir: FINAL FANTASY XII THE ZODIAC AGE: {} launch: - /x64/FFXII_TZA.exe: + "/x64/FFXII_TZA.exe": - when: - bit: 64 os: windows store: steam - workingDir: /x64 + workingDir: "/x64" steam: id: 595520 Final Fantasy XIII: files: - /setup.xml: + "/setup.xml": tags: - config when: - os: windows - /userdata//292120/remote: + "/userdata//292120/remote": tags: - save when: - store: steam - /Square Enix/FFXIII/MS/config.json: + "/Square Enix/FFXIII/MS/config.json": tags: - config when: - os: windows store: microsoft - /Packages/39EA002F.FFXIII_n746a19ndrrjg/SystemAppData/wgs/: + "/Packages/39EA002F.FFXIII_n746a19ndrrjg/SystemAppData/wgs/": tags: - save when: - os: windows store: microsoft - /SquareEnix/FinalFantasyXIII/save: + "/SquareEnix/FinalFantasyXIII/save": tags: - save when: @@ -198838,7 +199394,7 @@ Final Fantasy XIII: installDir: FINAL FANTASY XIII: {} launch: - /FFXiiiLauncher.exe: + "/FFXiiiLauncher.exe": - arguments: /boot when: - os: windows @@ -198847,17 +199403,17 @@ Final Fantasy XIII: id: 292120 Final Fantasy XIII-2: files: - /setup.xml: + "/setup.xml": tags: - config when: - os: windows - /userdata//292140/remote: + "/userdata//292140/remote": tags: - save when: - store: steam - /SquareEnix/FinalFantasyXIII-2/save: + "/SquareEnix/FinalFantasyXIII-2/save": tags: - save when: @@ -198865,7 +199421,7 @@ Final Fantasy XIII-2: installDir: FINAL FANTASY XIII-2: {} launch: - /FFXiii2Launcher.exe: + "/FFXiii2Launcher.exe": - arguments: /boot when: - os: windows @@ -198874,19 +199430,19 @@ Final Fantasy XIII-2: id: 292140 Final Fantasy XIV Online (2010): files: - /My Games/FINAL FANTASY XIV: + "/My Games/FINAL FANTASY XIV": tags: - config when: - os: windows -'Final Fantasy XIV: A Realm Reborn': +"Final Fantasy XIV: A Realm Reborn": files: - /Documents/My Games/FINAL FANTASY XIV - A Realm Reborn: + "/Documents/My Games/FINAL FANTASY XIV - A Realm Reborn": tags: - config when: - os: mac - /My Games/FINAL FANTASY XIV - A Realm Reborn: + "/My Games/FINAL FANTASY XIV - A Realm Reborn": tags: - config when: @@ -198901,8 +199457,8 @@ Final Fantasy XIV Online (2010): installDir: FINAL FANTASY XIV Online: {} launch: - /boot/ffxivboot.exe: - - arguments: '-issteam' + "/boot/ffxivboot.exe": + - arguments: "-issteam" when: - os: windows store: steam @@ -198910,30 +199466,32 @@ Final Fantasy XIV Online (2010): id: 39210 Final Fantasy XV: files: - /userdata//637650/remote: + "/userdata//637650/remote": tags: - save when: - store: steam - /My Games/FINAL FANTASY XV/Origin/savestorage: + "/My Games/FINAL FANTASY XV/Origin/savestorage": tags: - config - save when: - - store: origin - /My Games/FINAL FANTASY XV/Steam//savestorage: + - os: windows + store: origin + "/My Games/FINAL FANTASY XV/Steam//savestorage": tags: - config - save when: - - store: steam - /Packages/39EA002F.FINALFANTASYXVforPC_n746a19ndrrjg/LocalState: + - os: windows + store: steam + "/Packages/39EA002F.FINALFANTASYXVforPC_n746a19ndrrjg/LocalState": tags: - config when: - os: windows store: microsoft - /Packages/39EA002F.FINALFANTASYXVforPC_n746a19ndrrjg/SystemAppData/wgs: + "/Packages/39EA002F.FINALFANTASYXVforPC_n746a19ndrrjg/SystemAppData/wgs": tags: - save when: @@ -198942,7 +199500,7 @@ Final Fantasy XV: installDir: FINAL FANTASY XV: {} launch: - /ffxv_s.exe: + "/ffxv_s.exe": - when: - bit: 64 os: windows @@ -198951,12 +199509,12 @@ Final Fantasy XV: id: 637650 Final Fantasy XV Pocket Edition: files: - /Packages/39EA002F.FINALFANTASY15POCKETEDITION_n746a19ndrrjg/LocalState: + "/Packages/39EA002F.FINALFANTASY15POCKETEDITION_n746a19ndrrjg/LocalState": tags: - config when: - os: windows - /Packages/39EA002F.FINALFANTASY15POCKETEDITION_n746a19ndrrjg/SystemAppData/wgs: + "/Packages/39EA002F.FINALFANTASY15POCKETEDITION_n746a19ndrrjg/SystemAppData/wgs": tags: - save when: @@ -198972,12 +199530,12 @@ Final Frontier: installDir: FinalFrontier: {} launch: - /dosbox_windows/dosbox.exe: - - arguments: \"FRONTIER.EXE\" -conf \"dosbox_final-frontier.conf\" -noconsole + "/dosbox_windows/dosbox.exe": + - arguments: "\\\"FRONTIER.EXE\\\" -conf \\\"dosbox_final-frontier.conf\\\" -noconsole" when: - os: windows store: steam - /runFinalFrontier.sh: + "/runFinalFrontier.sh": - when: - os: linux store: steam @@ -198987,7 +199545,7 @@ Final Hope: installDir: Final Hope: {} launch: - /Client.exe: + "/Client.exe": - when: - store: steam steam: @@ -198996,20 +199554,20 @@ Final Islands: installDir: Final Islands: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam steam: id: 929150 -'Final Liberation: Warhammer Epic 40,000': +"Final Liberation: Warhammer Epic 40,000": files: - /SAV: + "/SAV": tags: - save when: - os: windows - /epic.ini: + "/epic.ini": tags: - config when: @@ -199020,7 +199578,7 @@ Final Match: installDir: FINAL MATCH: {} launch: - /FinalMatch.exe: + "/FinalMatch.exe": - when: - os: windows store: steam @@ -199035,7 +199593,7 @@ Final Missions: installDir: Final Missions: {} launch: - /FinalMisssions.exe: + "/FinalMisssions.exe": - when: - os: windows store: steam @@ -199048,7 +199606,7 @@ Final Quest: installDir: Final Quest: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: @@ -199057,7 +199615,7 @@ Final Quest II: installDir: Final Quest II: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: @@ -199071,7 +199629,7 @@ Final Rush: installDir: FinalRush: {} launch: - /binaries/win32/FinalRushGame.exe: + "/binaries/win32/FinalRushGame.exe": - when: - bit: 32 os: windows @@ -199082,7 +199640,7 @@ Final SIM: installDir: Final_SIM: {} launch: - /Final_SIM.exe: + "/Final_SIM.exe": - when: - os: windows store: steam @@ -199092,7 +199650,7 @@ Final Slam 2: installDir: FinalSlam2: {} launch: - /Final Slam 2.exe: + "/Final Slam 2.exe": - when: - os: windows store: steam @@ -199107,16 +199665,16 @@ Final Storm: installDir: Final Storm: {} launch: - /Final Storm.app/Contents/MacOS/Final Storm: + "/Final Storm.app/Contents/MacOS/Final Storm": - when: - os: mac store: steam - /FinalStorm: + "/FinalStorm": - when: - bit: 64 os: linux store: steam - /FinalStorm.exe: + "/FinalStorm.exe": - when: - bit: 64 os: windows @@ -199132,7 +199690,7 @@ Final Theory: installDir: Final Theory: {} launch: - /FinalTheory.exe: + "/FinalTheory.exe": - when: - os: windows store: steam @@ -199142,8 +199700,8 @@ Final Theosis: installDir: finaltheosis: {} launch: - /nw.exe: - - arguments: '-windowed' + "/nw.exe": + - arguments: "-windowed" when: - os: windows store: steam @@ -199155,16 +199713,16 @@ Final Vendetta: installDir: Final Vendetta: {} launch: - /Final Vendetta: + "/Final Vendetta": - when: - bit: 64 os: linux store: steam - /Final Vendetta.app/Contents/MacOS/Final Vendetta: + "/Final Vendetta.app/Contents/MacOS/Final Vendetta": - when: - os: mac store: steam - /Final Vendetta.exe: + "/Final Vendetta.exe": - when: - os: windows store: steam @@ -199178,25 +199736,25 @@ Final Warrior Quest: installDir: Final Warrior Quest: {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: id: 521320 Final World: installDir: - ' FINAL WORLD': {} + " FINAL WORLD": {} steam: id: 625690 Final m00n - Defender of the Cubes: installDir: final m00n - Defender of the Cubes: {} launch: - /final_m00n.app/Contents/MacOS/final_m00n: + "/final_m00n.app/Contents/MacOS/final_m00n": - when: - os: mac store: steam - /final_m00n.exe: + "/final_m00n.exe": - when: - os: windows store: steam @@ -199206,7 +199764,7 @@ FinalAdventure: installDir: FinalAdventure: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -199216,31 +199774,31 @@ FinalFire: installDir: FinalFire: {} launch: - /FinalFire.exe: + "/FinalFire.exe": - arguments: TheRightWayToFF.10 when: - os: windows store: steam steam: id: 816590 -'Find & Destroy: Tank Strategy': +"Find & Destroy: Tank Strategy": installDir: Find & Destroy Tank Strategy: {} launch: - /fnd.app: + "/fnd.app": - when: - os: mac store: steam - /fnd.exe: + "/fnd.exe": - when: - os: windows store: steam - /fnd.x86: + "/fnd.x86": - when: - bit: 32 os: linux store: steam - /fnd.x86_64: + "/fnd.x86_64": - when: - bit: 64 os: linux @@ -199251,16 +199809,16 @@ Find Differences: installDir: Find Differences: {} launch: - /Find Differences.exe: + "/Find Differences.exe": - when: - store: steam steam: id: 936020 -'Find Me: Horror Game': +"Find Me: Horror Game": installDir: Find Me Horror Game: {} launch: - /FindMeHorrorGame.exe: + "/FindMeHorrorGame.exe": - when: - bit: 64 os: windows @@ -199271,7 +199829,7 @@ Find Out: installDir: FindOut: {} launch: - /FindOut/bin/win_x64/FindOut.exe: + "/FindOut/bin/win_x64/FindOut.exe": - when: - os: windows store: steam @@ -199281,7 +199839,7 @@ Find Pixel: installDir: Find Pixel: {} launch: - /FindPixel.exe: + "/FindPixel.exe": - when: - bit: 64 os: windows @@ -199292,7 +199850,7 @@ Find Someone Else: installDir: Find someone else: {} launch: - /Find_someone_else.exe: + "/Find_someone_else.exe": - when: - os: windows store: steam @@ -199302,11 +199860,11 @@ Find The Balance: installDir: Find The Balance: {} launch: - /FindTheBalance.app: + "/FindTheBalance.app": - when: - os: mac store: steam - /FindTheBalance.exe: + "/FindTheBalance.exe": - when: - os: windows store: steam @@ -199316,11 +199874,11 @@ Find The Treasure: installDir: Find The Treasure: {} launch: - /Game: + "/Game": - when: - os: linux store: steam - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -199330,21 +199888,21 @@ Find This!: installDir: Find this!: {} launch: - /Linux/Find this!.x86: + "/Linux/Find this!.x86": - when: - bit: 32 os: linux store: steam - /Linux/Find this!.x86_64: + "/Linux/Find this!.x86_64": - when: - bit: 64 os: linux store: steam - /MacOS/Find this!.app/Contents/MacOS/Find this!: + "/MacOS/Find this!.app/Contents/MacOS/Find this!": - when: - os: mac store: steam - /Windows/Find this!.exe: + "/Windows/Find this!.exe": - when: - os: windows store: steam @@ -199354,7 +199912,7 @@ Find You: installDir: Find_You: {} launch: - /Find_You.exe: + "/Find_You.exe": - arguments: steam when: - os: windows @@ -199365,21 +199923,21 @@ Find Your Way: installDir: Find your way: {} launch: - /Find Your way.exe: + "/Find Your way.exe": - when: - os: windows store: steam - /FindYourWay.x86: + "/FindYourWay.x86": - when: - bit: 32 os: linux store: steam - /FindYourWay.x86_64: + "/FindYourWay.x86_64": - when: - bit: 64 os: linux store: steam - /MacOs.app/Contents/MacOS/MacOs: + "/MacOs.app/Contents/MacOS/MacOs": - when: - os: mac store: steam @@ -199389,15 +199947,15 @@ Find the Gnome: installDir: Find the gnome: {} launch: - /Find the gnome: + "/Find the gnome": - when: - os: linux store: steam - /Find the gnome.app: + "/Find the gnome.app": - when: - os: mac store: steam - /Find the gnome.exe: + "/Find the gnome.exe": - when: - os: windows store: steam @@ -199407,7 +199965,7 @@ Find the Oil Racing Edition: installDir: Find the Oil Racing Edition: {} launch: - /Find the oil.exe: + "/Find the oil.exe": - when: - os: windows store: steam @@ -199417,7 +199975,7 @@ Find-Life EP1: installDir: Find-Life EP1: {} launch: - /Find-Life Ep.1.exe: + "/Find-Life Ep.1.exe": - when: - os: windows store: steam @@ -199430,11 +199988,11 @@ Finders: installDir: Finders: {} launch: - /Finders.app: + "/Finders.app": - when: - os: mac store: steam - /Finders.exe: + "/Finders.exe": - when: - os: windows store: steam @@ -199444,7 +200002,7 @@ Finders Reapers: installDir: Finders Reapers: {} launch: - /FindersReapers.exe: + "/FindersReapers.exe": - when: - bit: 64 os: windows @@ -199455,19 +200013,19 @@ Finding Hope: installDir: Finding Hope: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: id: 481600 Finding Light: files: - /www/save/config.rpgsave: + "/www/save/config.rpgsave": tags: - config when: - os: windows - /www/save/file*.rpgsave: + "/www/save/file*.rpgsave": tags: - save when: @@ -199475,7 +200033,7 @@ Finding Light: installDir: Finding Light: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -199485,26 +200043,26 @@ Finding Nemo: installDir: Finding Nemo: {} launch: - /NemoAdv.exe: + "/NemoAdv.exe": - when: - store: steam steam: id: 331450 Finding Paradise: files: - /Library/Application Support/freebirdgames/findingparadise: + "/Library/Application Support/freebirdgames/findingparadise": tags: - config - save when: - os: mac - /Finding Paradise - Freebird Games: + "/Finding Paradise - Freebird Games": tags: - config - save when: - os: windows - /freebirdgames/findingparadise: + "/freebirdgames/findingparadise": tags: - config - save @@ -199521,24 +200079,24 @@ Finding Paradise: installDir: Finding Paradise: {} launch: - /Finding Paradise/Finding Paradise.exe: + "/Finding Paradise/Finding Paradise.exe": - when: - os: windows store: steam - workingDir: /Finding Paradise - /FindingParadise.app/Contents/MacOS/steamshim_parent: + workingDir: "/Finding Paradise" + "/FindingParadise.app/Contents/MacOS/steamshim_parent": - arguments: FindingParadise.app/Contents/MacOS/mkxp when: - os: mac store: steam - /steamshim/parent.amd64: - - arguments: ./FindingParadise.amd64 + "/steamshim/parent.amd64": + - arguments: "./FindingParadise.amd64" when: - bit: 64 os: linux store: steam - /steamshim/parent.x86: - - arguments: ./FindingParadise.x86 + "/steamshim/parent.x86": + - arguments: "./FindingParadise.x86" when: - bit: 32 os: linux @@ -199549,15 +200107,15 @@ Finding Teddy: installDir: FindingTeddy: {} launch: - /Finding Teddy.app: + "/Finding Teddy.app": - when: - os: mac store: steam - /FindingTeddy: + "/FindingTeddy": - when: - os: linux store: steam - /FindingTeddy.exe: + "/FindingTeddy.exe": - when: - os: windows store: steam @@ -199567,19 +200125,19 @@ Finding summer: installDir: Finding summer: {} launch: - /Finding summer.exe: + "/Finding summer.exe": - when: - store: steam steam: id: 993400 Finding the Soul Orb: files: - /FTSO/Saved/Config/WindowsNoEditor: + "/FTSO/Saved/Config/WindowsNoEditor": tags: - save when: - os: windows - /FTSO/Saved/SaveGames: + "/FTSO/Saved/SaveGames": tags: - config when: @@ -199587,7 +200145,7 @@ Finding the Soul Orb: installDir: Finding the Soul Orb: {} launch: - /FTSO.exe: + "/FTSO.exe": - when: - bit: 64 os: windows @@ -199601,12 +200159,12 @@ Fine China: id: 529040 Fine Sweeper: files: - /Fine_Sweeper/finesweeper.ini: + "/Fine_Sweeper/finesweeper.ini": tags: - config when: - os: windows - /Fine_Sweeper/finesweeper_online.sav: + "/Fine_Sweeper/finesweeper_online.sav": tags: - save when: @@ -199614,7 +200172,7 @@ Fine Sweeper: installDir: Fine Sweeper: {} launch: - /Fine Sweeper.exe: + "/Fine Sweeper.exe": - when: - os: windows store: steam @@ -199623,19 +200181,19 @@ Fine Sweeper: Finger Derpy: steam: id: 1074490 -'Finger Jets: Phase Challenge': +"Finger Jets: Phase Challenge": installDir: Finger Jets Phase Challenge: {} launch: - /fingerjets.app/Contents/MacOS/fingerjets: + "/fingerjets.app/Contents/MacOS/fingerjets": - when: - os: mac store: steam - /fingerjets.exe: + "/fingerjets.exe": - when: - os: windows store: steam - /fingerjets.x86_64: + "/fingerjets.x86_64": - when: - bit: 64 os: linux @@ -199649,7 +200207,7 @@ Fingerbones: installDir: Fingerbones: {} launch: - /Fingerbones.exe: + "/Fingerbones.exe": - when: - store: steam registry: @@ -199662,8 +200220,8 @@ Fingered: installDir: Fingered: {} launch: - /nw.exe: - - arguments: '--in-process-gpu' + "/nw.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam @@ -199673,7 +200231,7 @@ Finnish Army Simulator: installDir: Finnish Army Simulator: {} launch: - /Finnish Army Simulator.exe: + "/Finnish Army Simulator.exe": - when: - store: steam steam: @@ -199682,7 +200240,7 @@ Finnish Roller: installDir: FR: {} launch: - /FR.exe: + "/FR.exe": - when: - os: windows store: steam @@ -199692,11 +200250,11 @@ Finque: installDir: Finque: {} launch: - /Finque.exe: + "/Finque.exe": - when: - os: windows store: steam - /Finque.x86: + "/Finque.x86": - when: - os: linux store: steam @@ -199704,7 +200262,7 @@ Finque: id: 532700 Fire: files: - /Saves/: + "/Saves/": tags: - save when: @@ -199712,37 +200270,37 @@ Fire: installDir: Fire: {} launch: - /BonusContent/Prototype/Fire Prototype.app: + "/BonusContent/Prototype/Fire Prototype.app": - when: - bit: 64 os: mac store: steam - workingDir: /BonusContent/Prototype - /BonusContent/Prototype/fire_prototype.exe: + workingDir: "/BonusContent/Prototype" + "/BonusContent/Prototype/fire_prototype.exe": - when: - os: windows store: steam - workingDir: /BonusContent/Prototype - /BonusContent/Prototype/start: + workingDir: "/BonusContent/Prototype" + "/BonusContent/Prototype/start": - when: - bit: 64 os: linux store: steam - workingDir: /BonusContent/Prototype - /Fire.app: + workingDir: "/BonusContent/Prototype" + "/Fire.app": - when: - os: mac store: steam - /Fire.exe: + "/Fire.exe": - when: - os: windows store: steam - /Fire.x86: + "/Fire.x86": - when: - bit: 32 os: linux store: steam - /Fire.x86_64: + "/Fire.x86_64": - when: - bit: 64 os: linux @@ -199757,11 +200315,11 @@ Fire & Forget - The Final Assault: installDir: Fire & Forget - The Final Assault: {} launch: - /FireForget.app: + "/FireForget.app": - when: - os: mac store: steam - /FireForget.exe: + "/FireForget.exe": - when: - os: windows store: steam @@ -199771,7 +200329,7 @@ Fire & Maneuver: installDir: Fire & Maneuver: {} launch: - /Fire & Maneuver.exe: + "/Fire & Maneuver.exe": - when: - os: windows store: steam @@ -199779,7 +200337,7 @@ Fire & Maneuver: id: 1679290 Fire & Steel: files: - /AppData/LocalLow/Kreatin Studios/Fire _ Steel: + "/AppData/LocalLow/Kreatin Studios/Fire _ Steel": tags: - save when: @@ -199787,11 +200345,11 @@ Fire & Steel: installDir: Fire & Steel: {} launch: - /Fire & Steel.app: + "/Fire & Steel.app": - when: - os: mac store: steam - /Fire & Steel.exe: + "/Fire & Steel.exe": - when: - store: steam registry: @@ -199807,7 +200365,7 @@ Fire Arrow Plus: installDir: Fire Arrow Plus: {} launch: - /FAX/FAX.exe: + "/FAX/FAX.exe": - when: - os: windows store: steam @@ -199819,7 +200377,7 @@ Fire Commander: installDir: Fire Commander: {} launch: - /Fire Commander.exe: + "/Fire Commander.exe": - when: - os: windows store: steam @@ -199827,21 +200385,21 @@ Fire Commander: id: 1362560 Fire Department: files: - /save: + "/save": tags: - save when: - os: windows Fire Department 2: files: - /save: + "/save": tags: - save when: - os: windows Fire Department 3: files: - /Save: + "/Save": tags: - save when: @@ -199850,7 +200408,7 @@ Fire Farm VR: installDir: Fire Farm VR: {} launch: - /FireFarmVR.exe: + "/FireFarmVR.exe": - when: - os: windows store: steam @@ -199860,7 +200418,7 @@ Fire Fighter: installDir: Fire Fighter: {} launch: - /Fire Fighter.exe: + "/Fire Fighter.exe": - when: - os: windows store: steam @@ -199870,15 +200428,15 @@ Fire Flight: installDir: Fire Flight: {} launch: - /ffs.exe: + "/ffs.exe": - when: - os: windows store: steam steam: id: 761770 -'Fire Hawk: Thexder - The Second Contact': +"Fire Hawk: Thexder - The Second Contact": files: - /RESOURCE.CFG: + "/RESOURCE.CFG": tags: - config when: @@ -199890,20 +200448,20 @@ Fire Place: installDir: Fire Place: {} launch: - /Fire Place.exe: + "/Fire Place.exe": - when: - os: windows store: steam - /FirePlace.app: + "/FirePlace.app": - when: - os: mac store: steam - /FirePlace.x86: + "/FirePlace.x86": - when: - bit: 32 os: linux store: steam - /FirePlace.x86_64: + "/FirePlace.x86_64": - when: - bit: 64 os: linux @@ -199912,7 +200470,7 @@ Fire Place: id: 933080 Fire Pro Wrestling World: files: - /AppData/LocalLow/spikechunsoft/FireProWrestlingWorld: + "/AppData/LocalLow/spikechunsoft/FireProWrestlingWorld": tags: - save when: @@ -199920,7 +200478,7 @@ Fire Pro Wrestling World: installDir: Fire Prowrestling World: {} launch: - /FireProWrestlingW.exe: + "/FireProWrestlingW.exe": - when: - os: windows store: steam @@ -199930,15 +200488,15 @@ Fire Shark: installDir: Fire Shark: {} launch: - /FireShark.app: + "/FireShark.app": - when: - os: mac store: steam - /FireShark.exe: + "/FireShark.exe": - when: - os: windows store: steam - /FireShark.x64: + "/FireShark.x64": - when: - os: linux store: steam @@ -199948,21 +200506,21 @@ Fire With Fire Tower Attack and Defense: installDir: Fire With Fire Online Tower Attack and Defense: {} launch: - /Firewithfire-steam.exe: + "/Firewithfire-steam.exe": - when: - os: windows store: steam steam: id: 351630 -'Fire and Fury: English Civil War': +"Fire and Fury: English Civil War": installDir: Fire and Fury English Civil War: {} launch: - /fireandfury.app: + "/fireandfury.app": - when: - os: mac store: steam - /fireandfury.exe: + "/fireandfury.exe": - when: - os: windows store: steam @@ -199972,12 +200530,12 @@ Fire in the Goal: installDir: Fire in the Goal: {} launch: - /wildball.exe: + "/wildball.exe": - when: - bit: 32 os: windows store: steam - /wildball64.exe: + "/wildball64.exe": - when: - bit: 64 os: windows @@ -199986,7 +200544,7 @@ Fire in the Goal: id: 535160 FireStarter: files: - /BASE/*.cfg: + "/BASE/*.cfg": tags: - config when: @@ -199997,8 +200555,8 @@ FireTry: installDir: FireTry: {} launch: - /FireTry.exe: - - arguments: '-steam' + "/FireTry.exe": + - arguments: "-steam" when: - store: steam steam: @@ -200007,7 +200565,7 @@ Firebase Defence: installDir: Firebase Defence: {} launch: - /firebase.exe: + "/firebase.exe": - when: - os: windows store: steam @@ -200017,7 +200575,7 @@ Firebird: installDir: Firebird - Steam version: {} launch: - /Firebird.exe: + "/Firebird.exe": - when: - os: windows store: steam @@ -200033,27 +200591,27 @@ Firebird - The Unfinished: Firebird The Unfinished: {} steam: id: 691430 -'Fireboy & Watergirl: Elements': +"Fireboy & Watergirl: Elements": installDir: Fireboy & Watergirl Elements: {} launch: - /Fbwg.app/Contents/MacOS/Fbwg: + "/Fbwg.app/Contents/MacOS/Fbwg": - when: - os: mac store: steam - /Fbwg.exe: - - arguments: '--in-process-gpu --disable-direct-composition' + "/Fbwg.exe": + - arguments: "--in-process-gpu --disable-direct-composition" when: - os: windows store: steam steam: id: 1003480 -'Fireboy & Watergirl: Fairy Tales': +"Fireboy & Watergirl: Fairy Tales": installDir: Fireboy & Watergirl Fairy Tales: {} launch: - /Fbwg.exe: - - arguments: '--in-process-gpu --disable-direct-composition' + "/Fbwg.exe": + - arguments: "--in-process-gpu --disable-direct-composition" when: - os: windows store: steam @@ -200061,7 +200619,7 @@ Firebird - The Unfinished: id: 1781350 Fireburst: files: - /My Games/Fireburst/FSGame/Config: + "/My Games/Fireburst/FSGame/Config": tags: - config when: @@ -200069,14 +200627,14 @@ Fireburst: installDir: Fireburst: {} launch: - /Binaries/Win32/FireburstLauncher.exe: + "/Binaries/Win32/FireburstLauncher.exe": - when: - store: steam steam: id: 207190 Firefall: files: - /red 5 studios/firefall: + "/red 5 studios/firefall": tags: - config when: @@ -200084,19 +200642,19 @@ Firefall: installDir: Firefall: {} launch: - /system/bin/FirefallClient.exe: - - arguments: '--steam' + "/system/bin/FirefallClient.exe": + - arguments: "--steam" when: - os: windows store: steam - workingDir: /system/bin + workingDir: "/system/bin" steam: id: 227700 Firefight: installDir: Firefight: {} launch: - /Firefight.exe: + "/Firefight.exe": - when: - os: windows store: steam @@ -200104,12 +200662,12 @@ Firefight: id: 500190 Firefight Reloaded: files: - /firefightreloaded/cfg: + "/firefightreloaded/cfg": tags: - config when: - os: windows - /firefightreloaded/save: + "/firefightreloaded/save": tags: - save when: @@ -200122,7 +200680,7 @@ Firefight!: installDir: Firefight: {} launch: - /Firefight.exe: + "/Firefight.exe": - when: - bit: 64 os: windows @@ -200133,7 +200691,7 @@ Firefighters - The Simulation: installDir: Firefighters - The Simulation: {} launch: - /Firefighters-TheSimulation.exe: + "/Firefighters-TheSimulation.exe": - when: - os: windows store: steam @@ -200143,17 +200701,17 @@ Firefighters 2014: installDir: Firefighters 2014: {} launch: - /Firefighters2014-x64.exe: + "/Firefighters2014-x64.exe": - when: - bit: 64 os: windows store: steam - /Firefighters2014-x86.exe: + "/Firefighters2014-x86.exe": - when: - bit: 32 os: windows store: steam - /firefighters2014_osx.app: + "/firefighters2014_osx.app": - when: - os: mac store: steam @@ -200163,7 +200721,7 @@ Firefighting Simulator - The Squad: installDir: Firefighting Simulator - The Squad: {} launch: - /FG.exe: + "/FG.exe": - when: - os: windows store: steam @@ -200173,7 +200731,7 @@ Fireflies: installDir: Fireflies: {} launch: - /fireflies.exe: + "/fireflies.exe": - when: - bit: 32 os: windows @@ -200184,7 +200742,7 @@ Fireflies (2018): installDir: FirefliesGame: {} launch: - /Fireflies.exe: + "/Fireflies.exe": - when: - os: windows store: steam @@ -200194,24 +200752,24 @@ Firefly Online Cortex: installDir: FireflyOnlineCortex: {} launch: - /FireflyCortex.app: + "/FireflyCortex.app": - when: - os: mac store: steam - /FireflyCortex.exe: + "/FireflyCortex.exe": - when: - os: windows store: steam steam: id: 343750 -'Firegirl: Hack ''n Splash Rescue': +"Firegirl: Hack 'n Splash Rescue": files: - /AppData/LocalLow/FireG/Saved/Config/WindowsNoEditor/*.ini: + "/AppData/LocalLow/FireG/Saved/Config/WindowsNoEditor/*.ini": tags: - config when: - os: windows - /AppData/LocalLow/FireG/Saved/SaveGames: + "/AppData/LocalLow/FireG/Saved/SaveGames": tags: - save when: @@ -200221,27 +200779,27 @@ Firefly Online Cortex: installDir: Firegirl: {} launch: - /FireG.exe: + "/FireG.exe": - when: - bit: 64 os: windows store: steam steam: id: 1608550 -Fireman's Quest: +"Fireman's Quest": steam: id: 1006590 Fires at Midnight: installDir: Fires At Midnight: {} launch: - /Fires At Midnight.exe: - - arguments: '-window' + "/Fires At Midnight.exe": + - arguments: "-window" when: - os: windows store: steam - /FiresAtMidnight.app/Contents/MacOS/Fires At Midnight: - - arguments: '-Mac' + "/FiresAtMidnight.app/Contents/MacOS/Fires At Midnight": + - arguments: "-Mac" when: - os: mac store: steam @@ -200251,15 +200809,15 @@ Firestone Idle RPG: installDir: Firestone: {} launch: - /Firestone.app: + "/Firestone.app": - when: - os: mac store: steam - /Firestone.exe: + "/Firestone.exe": - when: - os: windows store: steam - /Firestone.x86_64: + "/Firestone.x86_64": - when: - os: linux store: steam @@ -200267,33 +200825,33 @@ Firestone Idle RPG: id: 1013320 Firewatch: files: - /AppData/LocalLow/CampoSanto/Firewatch/saves: + "/AppData/LocalLow/CampoSanto/Firewatch/saves": tags: - save when: - os: windows - /Library/Application Support/unity.CampoSanto.Firewatch: + "/Library/Application Support/unity.CampoSanto.Firewatch": tags: - config when: - os: mac - /Library/Application Support/unity.CampoSanto.Firewatch/saves: + "/Library/Application Support/unity.CampoSanto.Firewatch/saves": tags: - save when: - os: mac - /Packages/CampoSanto.Firewatch_1traspxf3h47a/SystemAppData/wgs: + "/Packages/CampoSanto.Firewatch_1traspxf3h47a/SystemAppData/wgs": tags: - save when: - os: windows store: microsoft - /unity3d/CampoSanto/Firewatch: + "/unity3d/CampoSanto/Firewatch": tags: - config when: - os: linux - /unity3d/CampoSanto/Firewatch/saves: + "/unity3d/CampoSanto/Firewatch/saves": tags: - save when: @@ -200303,16 +200861,16 @@ Firewatch: installDir: Firewatch: {} launch: - /firewatch.app: + "/firewatch.app": - when: - bit: 64 os: mac store: steam - /firewatch.exe: + "/firewatch.exe": - when: - os: windows store: steam - /fw.x86_64: + "/fw.x86_64": - when: - bit: 64 os: linux @@ -200327,7 +200885,7 @@ Firewood: installDir: Firewood: {} launch: - /Firewood.exe: + "/Firewood.exe": - when: - os: windows store: steam @@ -200337,7 +200895,7 @@ Firework: installDir: FIREWORK: {} launch: - /FIREWORK.exe: + "/FIREWORK.exe": - when: - os: windows store: steam @@ -200349,7 +200907,7 @@ Firework (2021): installDir: Firework: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -200364,7 +200922,7 @@ Fireworks Mania - An Explosive Simulator: installDir: Fireworks Mania: {} launch: - /Fireworks Mania.exe: + "/Fireworks Mania.exe": - when: - os: windows store: steam @@ -200372,7 +200930,7 @@ Fireworks Mania - An Explosive Simulator: id: 1079260 Fireworks Simulator: files: - /Save: + "/Save": tags: - save when: @@ -200380,7 +200938,7 @@ Fireworks Simulator: installDir: Fireworks Simulator: {} launch: - /Grossfeuerwerksimulator.exe: + "/Grossfeuerwerksimulator.exe": - when: - os: windows store: steam @@ -200392,12 +200950,12 @@ Firezone: installDir: Firezone: {} launch: - /dosbox_windows/dosbox.exe: - - arguments: \"fz.exe\" -conf \"dosbox_firezone.conf\" -noconsole + "/dosbox_windows/dosbox.exe": + - arguments: "\\\"fz.exe\\\" -conf \\\"dosbox_firezone.conf\\\" -noconsole" when: - os: windows store: steam - /runFireZone.sh: + "/runFireZone.sh": - when: - os: linux store: steam @@ -200405,17 +200963,17 @@ Firezone: id: 1157840 Firmament: files: - /Library/Application Support/Epic/Firmament/Saved/SaveGames: + "/Library/Application Support/Epic/Firmament/Saved/SaveGames": tags: - save when: - os: mac - /Firmament/Saved/Config/WindowsNoEditor: + "/Firmament/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /Firmament/Saved/SaveGames: + "/Firmament/Saved/SaveGames": tags: - save when: @@ -200425,12 +200983,12 @@ Firmament: installDir: Firmament: {} launch: - /Firmament-Mac-Shipping.app: + "/Firmament-Mac-Shipping.app": - when: - os: mac store: steam - /Firmament.exe: - - arguments: '-d3d12 -nohmd' + "/Firmament.exe": + - arguments: "-d3d12 -nohmd" when: - bit: 64 os: windows @@ -200441,7 +200999,7 @@ Firmament Wars: installDir: Firmament-Wars: {} launch: - /firmament-wars.exe: + "/firmament-wars.exe": - when: - os: windows store: steam @@ -200451,7 +201009,7 @@ Firon: installDir: Firon: {} launch: - /RPG_RT.exe: + "/RPG_RT.exe": - when: - os: windows store: steam @@ -200461,7 +201019,7 @@ First Class Trouble: installDir: First Class Trouble: {} launch: - /FCTClient.exe: + "/FCTClient.exe": - when: - bit: 64 os: windows @@ -200472,7 +201030,7 @@ First Customer: installDir: First Customer: {} launch: - /FirstCustomer.exe: + "/FirstCustomer.exe": - when: - os: windows store: steam @@ -200482,29 +201040,29 @@ First Day: installDir: First Day: {} launch: - /First Day.app: + "/First Day.app": - when: - os: mac store: steam - /First Day.exe: + "/First Day.exe": - when: - os: windows store: steam - /First Day.x86: + "/First Day.x86": - when: - os: linux store: steam steam: id: 1067810 -'First Day: Home Defender': +"First Day: Home Defender": installDir: First Day Home Defender: {} launch: - /First Day Home Defender.exe: + "/First Day Home Defender.exe": - when: - os: windows store: steam - /First Day Home Defender.x86: + "/First Day Home Defender.x86": - when: - os: linux store: steam @@ -200512,12 +201070,12 @@ First Day: id: 1225640 First Feudal: files: - /FirstFeudal/FFServer: + "/FirstFeudal/FFServer": tags: - config when: - os: windows - /FirstFeudal/FFServer/save: + "/FirstFeudal/FFServer/save": tags: - save when: @@ -200527,18 +201085,18 @@ First Feudal: installDir: First Feudal: {} launch: - /FirstFeudalLauncher.exe: + "/FirstFeudalLauncher.exe": - when: - os: windows store: steam steam: id: 733460 -'First Impact: Rise of a Hero': +"First Impact: Rise of a Hero": installDir: First Impact Rise of a Hero: {} launch: - /FIROAH.exe: - - arguments: '-show-screen-selector' + "/FIROAH.exe": + - arguments: "-show-screen-selector" when: - os: windows store: steam @@ -200549,24 +201107,24 @@ First Person Tennis - The Real Tennis Simulator: First Person Tennis - The Real Tennis Simulator: {} steam: id: 454140 -'First Steam Game VHS - Color Retro Racer: Miles Challenge': +"First Steam Game VHS - Color Retro Racer: Miles Challenge": installDir: FIRST STEAM GAME VHS - COLOR RETRO RACER MILES CHALLENGE: {} launch: - /win32/COLOR RETRO RACER - MILES CHALLENGE.exe: + "/win32/COLOR RETRO RACER - MILES CHALLENGE.exe": - when: - os: windows store: steam steam: id: 768840 -'First Strike: Final Hour': +"First Strike: Final Hour": files: - /AppData/LocalLow/Blindflug Studios AG/First Strike Final Hour: + "/AppData/LocalLow/Blindflug Studios AG/First Strike Final Hour": tags: - save when: - os: windows - /Library/Application Support/Blindflug Studios AG/First Strike Final Hour: + "/Library/Application Support/Blindflug Studios AG/First Strike Final Hour": tags: - save when: @@ -200574,12 +201132,12 @@ First Person Tennis - The Real Tennis Simulator: installDir: FirstStrikeFinalHour: {} launch: - /FirstStikeFinalHour.app/Contents/MacOS/FirstStikeFinalHour: - - arguments: '-W' + "/FirstStikeFinalHour.app/Contents/MacOS/FirstStikeFinalHour": + - arguments: "-W" when: - os: mac store: steam - /FirstStrikeClassic.exe: + "/FirstStrikeClassic.exe": - when: - os: windows store: steam @@ -200592,11 +201150,11 @@ First Winter: installDir: First Winter: {} launch: - /FirstWinter.app: + "/FirstWinter.app": - when: - os: mac store: steam - /FirstWinter.exe: + "/FirstWinter.exe": - when: - os: windows store: steam @@ -200606,7 +201164,7 @@ FirstPlanet: installDir: FirstPlanet: {} launch: - /FirstPlanet.exe: + "/FirstPlanet.exe": - when: - os: windows store: steam @@ -200616,7 +201174,7 @@ Fish Catcher: installDir: Fish Catcher: {} launch: - /Fish Catcher.exe: + "/Fish Catcher.exe": - when: - os: windows store: steam @@ -200626,7 +201184,7 @@ Fish Duel: installDir: Fish Duel: {} launch: - /FishDuel.exe: + "/FishDuel.exe": - when: - os: windows store: steam @@ -200634,7 +201192,7 @@ Fish Duel: id: 918500 Fish Fillets 2: files: - /Profiles: + "/Profiles": tags: - save when: @@ -200642,10 +201200,10 @@ Fish Fillets 2: installDir: Fish Fillets 2: {} launch: - /Fillets2.exe: + "/Fillets2.exe": - when: - store: steam - /Fillets2Editor.exe: + "/Fillets2Editor.exe": - when: - store: steam steam: @@ -200654,21 +201212,21 @@ Fish Lake: installDir: FISH LAKE: {} launch: - /Fish Lake Mac.app/Contents/MacOS/Fish Lake Mac: + "/Fish Lake Mac.app/Contents/MacOS/Fish Lake Mac": - when: - os: mac store: steam - /Fish Lake PC.exe: + "/Fish Lake PC.exe": - when: - os: windows store: steam steam: id: 529610 -'Fish Simulator: Aquarium Manager': +"Fish Simulator: Aquarium Manager": installDir: Fish Simulator Aquarium Manager: {} launch: - /Fish Simulator.exe: + "/Fish Simulator.exe": - when: - os: windows store: steam @@ -200678,20 +201236,20 @@ Fish Tycoon: installDir: Fish Tycoon: {} launch: - /fishtycoon.exe: + "/fishtycoon.exe": - when: - store: steam steam: id: 16130 -'Fish Tycoon 2: Virtual Aquarium': +"Fish Tycoon 2: Virtual Aquarium": installDir: Fish Tycoon 2 Virtual Aquarium: {} launch: - /Virtual Fish Tycoon.app: + "/Virtual Fish Tycoon.app": - when: - os: mac store: steam - /Virtual Fish Tycoon.exe: + "/Virtual Fish Tycoon.exe": - when: - os: windows store: steam @@ -200707,21 +201265,21 @@ Fish or Die: installDir: Fish or Die: {} launch: - /fishordie-v5.29.4.app/Contents/MacOS/fishordie-v5.29.4: + "/fishordie-v5.29.4.app/Contents/MacOS/fishordie-v5.29.4": - when: - os: mac store: steam - /fishordie-v5.29.4.exe: + "/fishordie-v5.29.4.exe": - when: - os: windows store: steam steam: id: 389230 -Fish's Trip: +"Fish's Trip": installDir: - Fish's Trip: {} + "Fish's Trip": {} launch: - /Fish's Trip.exe: + "/Fish's Trip.exe": - when: - os: windows store: steam @@ -200736,7 +201294,7 @@ Fishermurs: installDir: Fishermurs: {} launch: - /Fishermurs.exe: + "/Fishermurs.exe": - when: - os: windows store: steam @@ -200746,7 +201304,7 @@ Fisherones: installDir: Fisherones: {} launch: - /Fisherones.exe: + "/Fisherones.exe": - when: - os: windows store: steam @@ -200754,12 +201312,12 @@ Fisherones: id: 772600 Fishery: files: - /AppData/LocalLow/Lilou Studio/Fishery/options: + "/AppData/LocalLow/Lilou Studio/Fishery/options": tags: - config when: - os: windows - /AppData/LocalLow/Lilou Studio/Fishery/saved_games: + "/AppData/LocalLow/Lilou Studio/Fishery/saved_games": tags: - save when: @@ -200767,7 +201325,7 @@ Fishery: installDir: Fishery: {} launch: - /Fishery.exe: + "/Fishery.exe": - when: - os: windows store: steam @@ -200777,7 +201335,7 @@ Fishing Adventure: installDir: Fishing Adventure: {} launch: - /Fishing Adventure.exe: + "/Fishing Adventure.exe": - when: - os: windows store: steam @@ -200787,7 +201345,7 @@ Fishing Maniacs 1 TD: installDir: Fishing Maniacs: {} launch: - /FM1.exe: + "/FM1.exe": - when: - os: windows store: steam @@ -200797,32 +201355,35 @@ Fishing Planet: installDir: Fishing Planet: {} launch: - /FishingPlanet.X86: + "/FishingPlanet.X86": - when: - bit: 32 os: linux store: steam - /FishingPlanet.X86_64: + "/FishingPlanet.X86_64": - when: - bit: 64 os: linux store: steam - /FishingPlanet.app: + "/FishingPlanet.app": - when: - os: mac store: steam - /FishingPlanet.exe: + "/FishingPlanet.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam steam: id: 380600 -'Fishing Sim World: Pro Tour': +"Fishing Sim World: Pro Tour": installDir: Fishing Sim World: {} launch: - /FishingGame/Binaries/Win64/FishingGame-Win64-Shipping.exe: + "/FishingGame/Binaries/Win64/FishingGame-Win64-Shipping.exe": - when: - bit: 64 os: windows @@ -200836,16 +201397,16 @@ Fishing on the Fly: installDir: Fishing On The Fly: {} launch: - /Binaries/Win32/UDK.exe: - - arguments: '-silent ' + "/Binaries/Win32/UDK.exe": + - arguments: "-silent " when: - os: windows store: steam steam: id: 660560 -'Fishing: Barents Sea': +"Fishing: Barents Sea": files: - /FBS/Saved: + "/FBS/Saved": tags: - save when: @@ -200853,20 +201414,20 @@ Fishing on the Fly: installDir: Fishing Barents Sea: {} launch: - /FBS.exe: + "/FBS.exe": - when: - bit: 64 os: windows store: steam steam: id: 501080 -'Fishing: North Atlantic': +"Fishing: North Atlantic": gog: id: 1122501818 installDir: Fishing North Atlantic: {} launch: - /FNA.exe: + "/FNA.exe": - when: - bit: 64 os: windows @@ -200877,7 +201438,7 @@ Fishman: installDir: fishman: {} launch: - /fishman.exe: + "/fishman.exe": - when: - os: windows store: steam @@ -200892,7 +201453,7 @@ Fishy Dungeon Delving: installDir: Fishy Dungeon Delving: {} launch: - /Fishy Dungeon Delving.exe: + "/Fishy Dungeon Delving.exe": - when: - os: windows store: steam @@ -200907,7 +201468,7 @@ Fisk: installDir: FISK: {} launch: - /nw.exe: + "/nw.exe": - when: - bit: 64 os: windows @@ -200915,21 +201476,10 @@ Fisk: steam: id: 744240 Fission Superstar X: - files: - 'C:/Users/*/Saved Games/FISSIONX/Jesus.sav': - tags: - - save - when: - - os: windows - 'C:/Users/*/Saved Games/FISSIONX/settings.ini': - tags: - - config - when: - - os: windows installDir: Fission Superstar X: {} launch: - /FSSX.exe: + "/FSSX.exe": - when: - os: windows store: steam @@ -200939,15 +201489,15 @@ Fist Of Heaven & Hell: installDir: Fist Of Heaven and Hell: {} launch: - /Fist Of Heaven and Hell.app/Contents/MacOS/Fist Of Heaven and Hell: + "/Fist Of Heaven and Hell.app/Contents/MacOS/Fist Of Heaven and Hell": - when: - os: mac store: steam - /Fist Of Heaven and Hell.exe: + "/Fist Of Heaven and Hell.exe": - when: - os: windows store: steam - /Fist Of Heaven and Hell.x86_64: + "/Fist Of Heaven and Hell.x86_64": - when: - os: linux store: steam @@ -200955,19 +201505,19 @@ Fist Of Heaven & Hell: id: 1000650 Fist Puncher: files: - /Library/Application Support/FistPuncher: + "/Library/Application Support/FistPuncher": tags: - config - save when: - os: mac - /SavedGames/Fist Puncher: + "/SavedGames/Fist Puncher": tags: - config - save when: - os: windows - /FistPuncher: + "/FistPuncher": tags: - config - save @@ -200978,25 +201528,25 @@ Fist Puncher: installDir: Fist Puncher: {} launch: - /Fist Puncher.app/Contents/MacOS/FistPuncher: + "/Fist Puncher.app/Contents/MacOS/FistPuncher": - when: - os: mac store: steam - /Fist Puncher.exe: + "/Fist Puncher.exe": - when: - os: windows store: steam - /FistPuncher: + "/FistPuncher": - when: - os: linux store: steam steam: id: 238630 -'Fist Slash: Of Ultimate Fury': +"Fist Slash: Of Ultimate Fury": installDir: Fist Slash Of Ultimate Fury: {} launch: - /FSv4.2b(001).exe: + "/FSv4.2b(001).exe": - when: - os: windows store: steam @@ -201004,7 +201554,7 @@ Fist Puncher: id: 409070 Fist of Awesome: files: - /fistofawesome/UserDefault.xml: + "/fistofawesome/UserDefault.xml": tags: - save when: @@ -201012,15 +201562,15 @@ Fist of Awesome: installDir: FIST OF AWESOME: {} launch: - /FIST OF AWESOME.app: + "/FIST OF AWESOME.app": - when: - os: mac store: steam - /fistofawesome.exe: + "/fistofawesome.exe": - when: - os: windows store: steam - - arguments: '-w' + - arguments: "-w" when: - os: windows store: steam @@ -201030,7 +201580,7 @@ Fist of Brave: installDir: Fist of Brave: {} launch: - /FistofBrave.exe: + "/FistofBrave.exe": - when: - os: windows store: steam @@ -201038,7 +201588,7 @@ Fist of Brave: id: 793400 Fist of Jesus: files: - /AppData/LocalLow/Mutant Games/Fist Of Jesus: + "/AppData/LocalLow/Mutant Games/Fist Of Jesus": tags: - save when: @@ -201056,22 +201606,22 @@ Fist of love: Fist of the Forgotten: steam: id: 1105470 -Fist's Elimination Tower: +"Fist's Elimination Tower": files: - /Impostor Cat Games/Fist/FETFinalBuild2.sol: + "/Impostor Cat Games/Fist/FETFinalBuild2.sol": tags: - save when: - os: windows installDir: - Fist's Elimination Tower: {} + "Fist's Elimination Tower": {} launch: - /Fist.app: + "/Fist.app": - when: - bit: 64 os: mac store: steam - /Fist.exe: + "/Fist.exe": - when: - bit: 64 os: windows @@ -201080,7 +201630,7 @@ Fist's Elimination Tower: id: 630460 Fistful of Frags: files: - /fof/cfg: + "/fof/cfg": tags: - config when: @@ -201088,14 +201638,16 @@ Fistful of Frags: installDir: Fistful of Frags: {} launch: - /sdk/hl2.exe: - - arguments: '-steam -game ../fof' + "/sdk/hl2.exe": + - arguments: "-steam -game ../fof" when: - os: windows store: steam - /sdk/hl2.sh: - - arguments: '-steam -game ../fof' + "/sdk/hl2.sh": + - arguments: "-steam -game ../fof" when: + - os: mac + store: steam - os: linux store: steam steam: @@ -201104,7 +201656,7 @@ Fisti-Fluffs: installDir: fistifluffs: {} launch: - /Fistifluffs.exe: + "/Fistifluffs.exe": - when: - bit: 64 os: windows @@ -201115,7 +201667,7 @@ Fit For a King: installDir: Fit For a King: {} launch: - /FitforaKing.exe: + "/FitforaKing.exe": - when: - os: windows store: steam @@ -201130,11 +201682,11 @@ Fitness Dash: installDir: Fitness Dash: {} launch: - /Fitness Dash.app: + "/Fitness Dash.app": - when: - os: mac store: steam - /fitnessdash.exe: + "/fitnessdash.exe": - when: - os: windows store: steam @@ -201147,7 +201699,7 @@ Fitz the Fox: installDir: Fitz the Fox: {} launch: - /fitz the fox.exe: + "/fitz the fox.exe": - when: - os: windows store: steam @@ -201180,18 +201732,18 @@ Fitzzle Regal Tigers: Fitzzle Wise Owls: steam: id: 884250 -'Fitzzle: Vicious Alligators': +"Fitzzle: Vicious Alligators": steam: id: 913870 Five Dates: installDir: Five Dates: {} launch: - /FiveDates.app/Contents/MacOS/Five Dates: + "/FiveDates.app/Contents/MacOS/Five Dates": - when: - os: mac store: steam - /FiveDates.exe: + "/FiveDates.exe": - when: - os: windows store: steam @@ -201201,7 +201753,7 @@ Five Elements: installDir: Five Elements: {} launch: - /Five Elements.exe: + "/Five Elements.exe": - when: - os: windows store: steam @@ -201211,15 +201763,15 @@ Five Keys to Exit: installDir: Five Keys to Exit: {} launch: - /FiveKeysToExit_Linux.x86: + "/FiveKeysToExit_Linux.x86": - when: - os: linux store: steam - /FiveKeysToExit_Win.exe: + "/FiveKeysToExit_Win.exe": - when: - os: windows store: steam - /FiveKeysToExit_macOS.app: + "/FiveKeysToExit_macOS.app": - when: - os: mac store: steam @@ -201227,7 +201779,7 @@ Five Keys to Exit: id: 790160 Five Nations: files: - /SilverForge/FiveNations: + "/SilverForge/FiveNations": tags: - save when: @@ -201238,7 +201790,7 @@ Five Nations: installDir: Five Nations: {} launch: - /fivenations.exe: + "/fivenations.exe": - when: - bit: 64 os: windows @@ -201249,63 +201801,63 @@ Five Nights With Firearms: installDir: Five Nights With Firearms: {} launch: - /Five Nights With Firearms.exe: + "/1/Five Nights With Firearms.exe": - when: - os: windows store: steam steam: id: 2131000 -Five Nights at Freddy's: +"Five Nights at Freddy's": files: - /MMFApplications/freddy: + "/MMFApplications/freddy": tags: - save when: - os: windows installDir: - Five Nights at Freddy's: {} + "Five Nights at Freddy's": {} launch: - /FiveNightsatFreddys.exe: + "/FiveNightsatFreddys.exe": - when: - os: windows store: steam steam: id: 319510 -Five Nights at Freddy's 2: +"Five Nights at Freddy's 2": files: - /MMFApplications/freddy2: + "/MMFApplications/freddy2": tags: - save when: - os: windows installDir: - Five Nights at Freddy's 2: {} + "Five Nights at Freddy's 2": {} launch: - /FiveNightsatFreddys2.exe: + "/FiveNightsatFreddys2.exe": - when: - os: windows store: steam steam: id: 332800 -Five Nights at Freddy's 3: +"Five Nights at Freddy's 3": files: - /MMFApplications/freddy3: + "/MMFApplications/freddy3": tags: - save when: - os: windows installDir: - Five Nights at Freddy's 3: {} + "Five Nights at Freddy's 3": {} launch: - /FiveNightsatFreddys3.exe: + "/FiveNightsatFreddys3.exe": - when: - os: windows store: steam steam: id: 354140 -Five Nights at Freddy's 4: +"Five Nights at Freddy's 4": files: - /MMFApplications/fn4: + "/MMFApplications/fn4": tags: - save when: @@ -201313,27 +201865,27 @@ Five Nights at Freddy's 4: installDir: FiveNightsatFreddys4: {} launch: - /FiveNightsatFreddys4.exe: + "/FiveNightsatFreddys4.exe": - when: - os: windows store: steam - /HalloweenEdition.exe: + "/HalloweenEdition.exe": - when: - os: windows store: steam steam: id: 388090 -Five Nights at Freddy's Plus: +"Five Nights at Freddy's Plus": steam: id: 2107410 -'Five Nights at Freddy''s: Help Wanted': +"Five Nights at Freddy's: Help Wanted": files: - /freddys/Saved/Config/WindowsNoEditor: + "/freddys/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /freddys/Saved/SaveGames: + "/freddys/Saved/SaveGames": tags: - save when: @@ -201341,21 +201893,21 @@ Five Nights at Freddy's Plus: installDir: FNAFVRHelpWanted: {} launch: - /freddys.exe: + "/freddys.exe": - when: - bit: 64 os: windows store: steam steam: id: 732690 -'Five Nights at Freddy''s: Security Breach': +"Five Nights at Freddy's: Security Breach": files: - /fnaf9/Saved/Config/WindowsNoEditor/GameUserSettings.ini: + "/fnaf9/Saved/Config/WindowsNoEditor/GameUserSettings.ini": tags: - config when: - os: windows - /fnaf9/Saved/SaveGames: + "/fnaf9/Saved/SaveGames": tags: - save when: @@ -201363,24 +201915,24 @@ Five Nights at Freddy's Plus: installDir: Quarters: {} launch: - /fnaf9.exe: - - arguments: '-nohmd' + "/fnaf9.exe": + - arguments: "-nohmd" when: - os: windows store: steam steam: id: 747660 -'Five Nights at Freddy''s: Sister Location': +"Five Nights at Freddy's: Sister Location": files: - /MMFApplications/sl: + "/MMFApplications/sl": tags: - save when: - os: windows installDir: - Five Nights at Freddy's Sister Location: {} + "Five Nights at Freddy's Sister Location": {} launch: - /SisterLocation.exe: + "/SisterLocation.exe": - when: - os: windows store: steam @@ -201393,25 +201945,25 @@ Five Seconds of Bad Music: installDir: FSoBM: {} launch: - /Five Seconds of Bad Music.exe: + "/Five Seconds of Bad Music.exe": - when: - os: windows store: steam steam: id: 805800 -'Five: Champions of Canaan': +"Five: Champions of Canaan": installDir: FIVE Champions of Canaan: {} launch: - /Champions.exe: + "/Champions.exe": - when: - os: windows store: steam steam: id: 492870 -'Five: Guardians of David': +"Five: Guardians of David": files: - /AppData/LocalLow/Kingdom Games/Five_ Guardians of David/Saves/THEPLAYER: + "/AppData/LocalLow/Kingdom Games/Five_ Guardians of David/Saves/THEPLAYER": tags: - save when: @@ -201419,11 +201971,11 @@ Five Seconds of Bad Music: installDir: FIVE Guardians of David: {} launch: - /Five.app: + "/Five.app": - when: - os: mac store: steam - /Five.exe: + "/Five.exe": - when: - os: windows store: steam @@ -201431,12 +201983,12 @@ Five Seconds of Bad Music: id: 387010 Fix Me Fix You: files: - /FixMeFixYou_tyrano_data.sav: + "/FixMeFixYou_tyrano_data.sav": tags: - save when: - os: windows - /data/system/Config.tjs: + "/data/system/Config.tjs": tags: - config when: @@ -201444,12 +201996,12 @@ Fix Me Fix You: installDir: Fix Me Fix You: {} launch: - /nw.exe: - - arguments: '--in-process-gpu' + "/nw.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam - /nwjs.app: + "/nwjs.app": - when: - os: mac store: steam @@ -201459,7 +202011,7 @@ Fix Race: installDir: Fix Race: {} launch: - /TouchRace.exe: + "/TouchRace.exe": - when: - os: windows store: steam @@ -201471,11 +202023,11 @@ FixFox: installDir: FixFox: {} launch: - /FixFox.app: + "/FixFox.app": - when: - os: mac store: steam - /FixFox.exe: + "/FixFox.exe": - when: - os: windows store: steam @@ -201485,12 +202037,14 @@ Fjall: installDir: Fjall: {} launch: - /FjallGame.exe: + "/FjallGame.exe": - when: - os: windows store: steam - /FjallGame.sh: + "/FjallGame.sh": - when: + - os: mac + store: steam - os: linux store: steam steam: @@ -201499,7 +202053,7 @@ Fjong: installDir: Fjong: {} launch: - /Fjong.exe: + "/Fjong.exe": - when: - os: windows store: steam @@ -201509,7 +202063,7 @@ Fjord Battle Racing: installDir: Fjord battle racing: {} launch: - /FjordBattleracing.exe: + "/FjordBattleracing.exe": - when: - os: windows store: steam @@ -201522,33 +202076,33 @@ Flag N Frag: installDir: Flag N Frag: {} launch: - /FlagNFrag.exe: + "/FlagNFrag.exe": - when: - os: windows store: steam steam: id: 456160 -"Flag couple\U0001F6A9": +Flag couple🚩: steam: id: 960430 Flagsplosion: installDir: Flagsplosion: {} launch: - /Flagsplosion.app: + "/Flagsplosion.app": - when: - os: mac store: steam - /flagsplosion.exe: + "/flagsplosion.exe": - when: - os: windows store: steam - /flagsplosion.x32: + "/flagsplosion.x32": - when: - bit: 32 os: linux store: steam - /flagsplosion.x64: + "/flagsplosion.x64": - when: - bit: 64 os: linux @@ -201567,16 +202121,16 @@ Flaky Bakery: installDir: Flaky Bakery: {} launch: - /Flaky Bakery.app: + "/Flaky Bakery.app": - when: - os: mac store: steam - /Flaky Bakery.exe: + "/Flaky Bakery.exe": - when: - bit: 64 os: windows store: steam - /Flaky Bakery.x86_64: + "/Flaky Bakery.x86_64": - when: - bit: 64 os: linux @@ -201587,25 +202141,28 @@ Flamberge: installDir: Flamberge: {} launch: - /flamberge.app: + "/flamberge.app": - when: - os: mac store: steam - /flamberge.exe: + "/flamberge.exe": - when: - os: windows store: steam - /flamberge.x86: + "/flamberge.x86": - when: - os: linux store: steam + - bit: 32 + os: linux + store: steam steam: id: 355420 Flame Over: installDir: Flame Over: {} launch: - /FlameOver.exe: + "/FlameOver.exe": - when: - os: windows store: steam @@ -201615,15 +202172,15 @@ Flame of Memory: installDir: Flame of Memory: {} launch: - /flameofmemory.app: + "/flameofmemory.app": - when: - os: mac store: steam - /nw: + "/nw": - when: - os: linux store: steam - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -201633,7 +202190,7 @@ Flame of Mirrors: installDir: Flame of Mirrors: {} launch: - /Flame of Mirrors.exe: + "/Flame of Mirrors.exe": - when: - store: steam steam: @@ -201642,33 +202199,33 @@ Flamebreak: installDir: Flamebreak: {} launch: - /flamebreak: + "/flamebreak": - when: - os: linux store: steam - /flamebreak.app: + "/flamebreak.app": - when: - os: mac store: steam - /flamebreak.exe: + "/flamebreak.exe": - when: - os: windows store: steam steam: id: 399640 -Flamel's Miracle: +"Flamel's Miracle": installDir: - Flamel's miracle: {} + "Flamel's miracle": {} launch: - /Flamels Miracle.app: + "/Flamels Miracle.app": - when: - os: mac store: steam - /Flamels Miracle.exe: + "/Flamels Miracle.exe": - when: - os: windows store: steam - /Flamels Miracle.sh: + "/Flamels Miracle.sh": - when: - os: linux store: steam @@ -201678,7 +202235,7 @@ Flameruby: installDir: Flameruby: {} launch: - /Flameruby.exe: + "/Flameruby.exe": - when: - os: windows store: steam @@ -201688,11 +202245,11 @@ Flaming Pixels: installDir: Flaming Pixels: {} launch: - /Flaming Pixels.app/Contents/MacOS/Flaming Pixels: + "/Flaming Pixels.app/Contents/MacOS/Flaming Pixels": - when: - os: mac store: steam - /Flaming Pixels.exe: + "/Flaming Pixels.exe": - when: - os: windows store: steam @@ -201702,17 +202259,17 @@ Flan: installDir: Flan: {} launch: - /Flan.exe: + "/Flan.exe": - when: - os: windows store: steam steam: id: 974850 -Flandre's dream. - 36000 ft deep -: +"Flandre's dream. - 36000 ft deep -": installDir: - Flandre's dream. - 36000 ft deep -: {} + "Flandre's dream. - 36000 ft deep -": {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -201722,13 +202279,13 @@ Flank That Tank!: installDir: Flank That Tank: {} launch: - /FTT.exe: + "/FTT.exe": - arguments: fs=1 when: - bit: 64 os: windows store: steam - /armor: + "/armor": - arguments: fs=1 when: - bit: 64 @@ -201740,7 +202297,7 @@ Flappatron Episode 1: installDir: Flappatron: {} launch: - /Flappatron.exe: + "/Flappatron.exe": - when: - store: steam steam: @@ -201749,7 +202306,7 @@ Flapping Over It: installDir: Flapping Over It: {} launch: - /FlappingOverIt.exe: + "/FlappingOverIt.exe": - when: - os: windows store: steam @@ -201779,27 +202336,27 @@ Flash Point: installDir: Flash Point: {} launch: - /Flash Point.exe: + "/Flash Point.exe": - when: - bit: 64 os: windows store: steam steam: id: 997560 -'Flash Point: Fire Rescue': +"Flash Point: Fire Rescue": installDir: Flash Point Fire Rescue: {} launch: - /flashpoint.app: + "/flashpoint.app": - when: - bit: 64 os: mac store: steam - /flashpoint.exe: + "/flashpoint.exe": - when: - os: windows store: steam - /flashpoint.x86: + "/flashpoint.x86": - when: - os: linux store: steam @@ -201809,7 +202366,7 @@ Flash Snooker Game: installDir: Flash Snooker Game: {} launch: - /flashsnookergame.exe: + "/flashsnookergame.exe": - when: - os: windows store: steam @@ -201817,12 +202374,12 @@ Flash Snooker Game: id: 1250610 Flashback: files: - /AppData/LocalLow/Microids/Flashback: + "/AppData/LocalLow/Microids/Flashback": tags: - save when: - os: windows - /AppData/LocalLow/Microids/Flashback/OPTIONS: + "/AppData/LocalLow/Microids/Flashback/OPTIONS": tags: - config when: @@ -201832,11 +202389,11 @@ Flashback: installDir: Flashback: {} launch: - /Flashback.app: + "/Flashback.app": - when: - os: mac store: steam - /Flashback.exe: + "/Flashback.exe": - when: - os: windows store: steam @@ -201848,13 +202405,13 @@ Flashback: id: 961620 Flashback (2013): files: - /savegames//424: + "/savegames//424": tags: - save when: - os: windows store: uplay - /My Games/Flashback/FlashbackGame/Config: + "/My Games/Flashback/FlashbackGame/Config": tags: - config when: @@ -201862,8 +202419,8 @@ Flashback (2013): installDir: Flashback: {} launch: - /Binaries/Win32/Flashback.exe: - - arguments: '-uplay_steam_mode' + "/Binaries/Win32/Flashback.exe": + - arguments: "-uplay_steam_mode" when: - os: windows store: steam @@ -201871,7 +202428,7 @@ Flashback (2013): id: 245730 Flashback 2: files: - /AppData/LocalLow/Microids/Flashback 2/*.es3: + "/AppData/LocalLow/Microids/Flashback 2/*.es3": tags: - save when: @@ -201884,11 +202441,11 @@ Flashing Lights - Police Fire EMS: installDir: Flashing Lights: {} launch: - /flashinglights.app: + "/flashinglights.app": - when: - os: mac store: steam - /flashinglights.exe: + "/flashinglights.exe": - when: - os: windows store: steam @@ -201904,15 +202461,15 @@ Flashout 2: installDir: Flashout2: {} launch: - /FLASHOUT2: + "/FLASHOUT2": - when: - os: linux store: steam - /FLASHOUT2.app: + "/FLASHOUT2.app": - when: - os: mac store: steam - /FLASHOUT2.exe: + "/FLASHOUT2.exe": - when: - os: windows store: steam @@ -201920,17 +202477,17 @@ Flashout 2: id: 298340 Flashout 3: files: - /AppData/LocalLow/Jujubee S_A_/Flashout 3/SaveData/*.gx: + "/AppData/LocalLow/Jujubee S_A_/Flashout 3/SaveData/*.gx": tags: - save when: - os: windows - /Library/Application Support/pl.jujubee.flashout3/SaveData/*.gx: + "/Library/Application Support/pl.jujubee.flashout3/SaveData/*.gx": tags: - save when: - os: mac - /unity3d/Jujubee S_A_/Flashout 3/SaveData/*.gx: + "/unity3d/Jujubee S_A_/Flashout 3/SaveData/*.gx": tags: - save when: @@ -201940,27 +202497,27 @@ Flashout 3: installDir: FLASHOUT 3: {} launch: - /Flashout 3.app/Contents/MacOS/Flashout 3: + "/Flashout 3.app/Contents/MacOS/Flashout 3": - when: - os: mac store: steam - /Flashout 3.exe: + "/Flashout 3.exe": - when: - os: windows store: steam - /Flashout 3.x86_64: + "/Flashout 3.x86_64": - when: - os: linux store: steam steam: id: 1761870 -'Flashout 3D: Enhanced Edition': +"Flashout 3D: Enhanced Edition": gog: id: 2121564020 installDir: FLASHOUT 3D Enhanced Edition: {} launch: - /Flashout3D-EE.exe: + "/Flashout3D-EE.exe": - when: - os: windows store: steam @@ -201975,17 +202532,17 @@ Flashover MegaSector: installDir: Flashover MegaSector: {} launch: - /Flashover MegaSector.exe: + "/Flashover MegaSector.exe": - when: - os: windows store: steam steam: id: 1197380 -'Flashpoint Campaigns: Red Storm Player''s Edition': +"Flashpoint Campaigns: Red Storm Player's Edition": installDir: Flashpoint Campaigns Red Storm: {} launch: - /autorun.exe: + "/autorun.exe": - when: - store: steam steam: @@ -201994,20 +202551,20 @@ Flat Earths!: installDir: FlatEarths: {} launch: - /flat-earths.app/Contents/MacOS/flat-earths: + "/flat-earths.app/Contents/MacOS/flat-earths": - when: - os: mac store: steam - /flat-earths.exe: + "/flat-earths.exe": - when: - os: windows store: steam - /flat-earths.x86: + "/flat-earths.x86": - when: - bit: 32 os: linux store: steam - /flat-earths.x86_64: + "/flat-earths.x86_64": - when: - bit: 64 os: linux @@ -202020,11 +202577,11 @@ Flat Eye: installDir: Flat Eye: {} launch: - /flat-eye-osxu.app: + "/flat-eye-osxu.app": - when: - os: mac store: steam - /flat-eye-win64.exe: + "/flat-eye-win64.exe": - when: - os: windows store: steam @@ -202032,7 +202589,7 @@ Flat Eye: id: 1358840 Flat Heroes: files: - /userdata//508790/remote/saveGame.dat: + "/userdata//508790/remote/saveGame.dat": tags: - save when: @@ -202040,20 +202597,20 @@ Flat Heroes: installDir: Flat Heroes: {} launch: - /FlatHeroes.app: + "/FlatHeroes.app": - when: - os: mac store: steam - /FlatHeroes.exe: + "/FlatHeroes.exe": - when: - os: windows store: steam - /FlatHeroes.x86: + "/FlatHeroes.x86": - when: - bit: 32 os: linux store: steam - /FlatHeroes.x86_64: + "/FlatHeroes.x86_64": - when: - bit: 64 os: linux @@ -202064,9 +202621,9 @@ Flat Heroes: - config steam: id: 508790 -Flat Kingdom Paper's Cut Edition: +"Flat Kingdom Paper's Cut Edition": files: - /AppData/LocalLow/Fat Panda/Flat Kingdom: + "/AppData/LocalLow/Fat Panda/Flat Kingdom": tags: - config - save @@ -202075,22 +202632,25 @@ Flat Kingdom Paper's Cut Edition: installDir: Flat Kingdom: {} launch: - /FlatKingdom.app: + "/FlatKingdom.app": - when: - bit: 64 os: mac store: steam - /FlatKingdom.exe: + "/FlatKingdom.exe": - when: - bit: 32 os: windows store: steam - /Flatkingdom.app: + - bit: 64 + os: windows + store: steam + "/Flatkingdom.app": - when: - bit: 64 os: mac store: steam - /Flatkingdom.exe: + "/Flatkingdom.exe": - when: - os: windows store: steam @@ -202100,15 +202660,15 @@ Flat Path: installDir: FlatPath: {} launch: - /FlatPath: + "/FlatPath": - when: - os: linux store: steam - /FlatPath.app: + "/FlatPath.app": - when: - os: mac store: steam - /FlatPath.exe: + "/FlatPath.exe": - when: - os: windows store: steam @@ -202118,7 +202678,7 @@ Flat Trip: installDir: Flat Trip: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -202133,11 +202693,11 @@ FlatFatCat: installDir: FlatFatCat: {} launch: - /Contents/MacOS/ffc: + "/Contents/MacOS/ffc": - when: - os: mac store: steam - /ffc.exe: + "/ffc.exe": - when: - os: windows store: steam @@ -202145,7 +202705,7 @@ FlatFatCat: id: 690130 FlatOut: files: - /Savegame: + "/Savegame": tags: - config - save @@ -202156,14 +202716,14 @@ FlatOut: installDir: FlatOut: {} launch: - /flatout.exe: + "/flatout.exe": - when: - store: steam steam: id: 6220 FlatOut 2: files: - /Savegame: + "/Savegame": tags: - config - save @@ -202174,20 +202734,20 @@ FlatOut 2: installDir: FlatOut2: {} launch: - /FlatOut2.exe: + "/FlatOut2.exe": - when: - store: steam steam: id: 2990 -'FlatOut 3: Chaos & Destruction': +"FlatOut 3: Chaos & Destruction": files: - /userdata//201510: + "/userdata//201510": tags: - save when: - os: windows store: steam - /userdata//201510/localConfig.cfg: + "/userdata//201510/localConfig.cfg": tags: - config when: @@ -202196,48 +202756,48 @@ FlatOut 2: installDir: Flatout 3: {} launch: - /Flatout.exe: + "/Flatout.exe": - when: - store: steam steam: id: 201510 -'FlatOut 4: Total Insanity': +"FlatOut 4: Total Insanity": files: - /userdata//402130/remote: + "/userdata//402130/remote": tags: - save when: - os: windows store: steam - /My Games/FlatOut 4/UserSettings.cfg: + "/My Games/FlatOut 4/UserSettings.cfg": tags: - config when: - os: windows id: steamExtra: - - 625080 - 600590 - 600591 - 600592 + - 625080 installDir: FlatOut 4 Total Insanity: {} launch: - /Flatout.exe: + "/Flatout.exe": - when: - bit: 64 os: windows store: steam steam: id: 402130 -'FlatOut: Ultimate Carnage': +"FlatOut: Ultimate Carnage": files: - /FlatOut Ultimate Carnage/Savegame: + "/FlatOut Ultimate Carnage/Savegame": tags: - save when: - os: windows - /FlatOut Ultimate Carnage/Savegame/options.cfg: + "/FlatOut Ultimate Carnage/Savegame/options.cfg": tags: - config when: @@ -202245,7 +202805,7 @@ FlatOut 2: installDir: FlatOut Ultimate Carnage: {} launch: - /Launcher.exe: + "/Launcher.exe": - when: - store: steam steam: @@ -202254,7 +202814,7 @@ Flatshot: installDir: Flatshot: {} launch: - /Flatshot.exe: + "/Flatshot.exe": - when: - os: windows store: steam @@ -202266,22 +202826,22 @@ Flatshot: when: - os: windows store: steam - /flatshot_config.sh: + "/flatshot_config.sh": - when: - bit: 64 os: linux store: steam - /flatshot_fullscreen.sh: + "/flatshot_fullscreen.sh": - when: - bit: 64 os: linux store: steam - /flatshot_init.sh: + "/flatshot_init.sh": - when: - bit: 64 os: linux store: steam - /flatshot_optirun.sh: + "/flatshot_optirun.sh": - when: - bit: 64 os: linux @@ -202290,7 +202850,7 @@ Flatshot: id: 517510 Flatspace: files: - /Options.txt: + "/Options.txt": tags: - config when: @@ -202298,7 +202858,7 @@ Flatspace: installDir: Flatspace: {} launch: - /Flatspace.exe: + "/Flatspace.exe": - when: - os: windows store: steam @@ -202308,7 +202868,7 @@ Flatspace IIk: installDir: Flatspace IIk: {} launch: - /FlatspaceII.exe: + "/FlatspaceII.exe": - when: - os: windows store: steam @@ -202318,17 +202878,17 @@ Flatwaters: installDir: Flatwaters: {} launch: - /Flatwaters: + "/Flatwaters": - when: - os: linux store: steam - /Flatwaters.exe: + "/Flatwaters.exe": - when: - os: windows store: steam steam: id: 779870 -'Flavortown:VR': +"Flavortown:VR": installDir: Welcome 2 FlavortownVR: {} steam: @@ -202337,7 +202897,7 @@ Flaws in the People We Love: installDir: Flaws in the People We Love: {} launch: - /FlawsInPeopleWeLove.exe: + "/FlawsInPeopleWeLove.exe": - when: - os: windows store: steam @@ -202350,7 +202910,7 @@ Fleazer: installDir: Fleazer: {} launch: - /Fleazer The Game.blend.exe: + "/Fleazer The Game.blend.exe": - when: - store: steam steam: @@ -202359,65 +202919,65 @@ Fleet: installDir: FL337: {} launch: - /FL337.app: + "/FL337.app": - when: - os: mac store: steam - /FL337.exe: + "/FL337.exe": - when: - os: windows store: steam - /FL337.x86: + "/FL337.x86": - when: - os: linux store: steam steam: id: 406760 -'Fleet Defender: The F-14 Tomcat Simulation': +"Fleet Defender: The F-14 Tomcat Simulation": gog: id: 1708998465 installDir: Fleet Defender: {} launch: - /dosbox_linux/daum/launch_fleetdefender_game_daum.sh: + "/dosbox_linux/daum/launch_fleetdefender_game_daum.sh": - when: - os: linux store: steam - workingDir: /dosbox_linux/daum - /dosbox_linux/launch_fleetdefender_game.sh: + workingDir: "/dosbox_linux/daum" + "/dosbox_linux/launch_fleetdefender_game.sh": - when: - os: linux store: steam - workingDir: /dosbox_linux - /dosbox_linux/launch_fleetdefender_jukebox.sh: + workingDir: "/dosbox_linux" + "/dosbox_linux/launch_fleetdefender_jukebox.sh": - when: - os: linux store: steam - workingDir: /dosbox_linux - /dosbox_windows/daum/dosbox.exe: - - arguments: '-conf dosbox_fleetdefender.conf -conf dosbox_fleetdefender_launch_windows.conf -noconsole' + workingDir: "/dosbox_linux" + "/dosbox_windows/daum/dosbox.exe": + - arguments: "-conf dosbox_fleetdefender.conf -conf dosbox_fleetdefender_launch_windows.conf -noconsole" when: - os: windows store: steam - workingDir: /dosbox_windows/daum - /dosbox_windows/dosbox.exe: - - arguments: '-conf dosbox_fleetdefender.conf -conf dosbox_fleetdefender_launch_windows.conf -noconsole' + workingDir: "/dosbox_windows/daum" + "/dosbox_windows/dosbox.exe": + - arguments: "-conf dosbox_fleetdefender.conf -conf dosbox_fleetdefender_launch_windows.conf -noconsole" when: - os: windows store: steam - workingDir: /dosbox_windows - - arguments: '-conf dosbox_fleetdefender.conf -conf dosbox_fleetdefender_jukebox_windows.conf -noconsole' + workingDir: "/dosbox_windows" + - arguments: "-conf dosbox_fleetdefender.conf -conf dosbox_fleetdefender_jukebox_windows.conf -noconsole" when: - os: windows store: steam - workingDir: /dosbox_windows + workingDir: "/dosbox_windows" steam: id: 328930 Fleet Scrapper: installDir: Fleet Scrapper: {} launch: - /FleetScrapper.exe: + "/FleetScrapper.exe": - when: - os: windows store: steam @@ -202427,7 +202987,7 @@ Fleet Star V: installDir: Fleet Star V: {} launch: - /FleetStarFive.exe: + "/FleetStarFive.exe": - when: - os: windows store: steam @@ -202442,7 +203002,7 @@ Fleeting Ages: installDir: Fleeting Ages: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -202452,7 +203012,7 @@ Fleeting Iris: installDir: Fleeting Iris: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: @@ -202461,7 +203021,7 @@ Fleets of Ascendancy: installDir: Fleets of Ascendancy: {} launch: - /FOA.exe: + "/FOA.exe": - when: - os: windows store: steam @@ -202471,11 +203031,11 @@ Flem: installDir: Flem: {} launch: - /Flem.app: + "/Flem.app": - when: - os: mac store: steam - /Flem.exe: + "/Flem.exe": - when: - os: windows store: steam @@ -202483,7 +203043,7 @@ Flem: id: 341760 Flesh Eaters: files: - /FleshEaters: + "/FleshEaters": tags: - config - save @@ -202492,7 +203052,7 @@ Flesh Eaters: installDir: Flesh Eaters: {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: @@ -202501,15 +203061,15 @@ Flesh Water: installDir: Flesh Water: {} launch: - /fleshwater.app/Contents/MacOS/nwjs: + "/fleshwater.app/Contents/MacOS/nwjs": - when: - os: mac store: steam - /nw: + "/nw": - when: - os: linux store: steam - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -202519,7 +203079,7 @@ Flex Apocalypse Racing: installDir: Flex Apocalypse Racing: {} launch: - /Race228.exe: + "/Race228.exe": - when: - bit: 64 os: windows @@ -202533,7 +203093,7 @@ FlickSync - Mad Hatter VR: id: 827170 Flicker of Hope: files: - /FlickerOfHope/Saved/Config/WindowsNoEditor: + "/FlickerOfHope/Saved/Config/WindowsNoEditor": tags: - config when: @@ -202541,11 +203101,11 @@ Flicker of Hope: installDir: Wick: {} launch: - /FlickerOfHope.app/Contents/MacOS/FlickerOfHope: + "/FlickerOfHope.app/Contents/MacOS/FlickerOfHope": - when: - os: mac store: steam - /FlickerOfHope.exe: + "/FlickerOfHope.exe": - when: - bit: 64 os: windows @@ -202556,7 +203116,7 @@ FlickerMAZE: installDir: FlickerMAZE: {} launch: - /FlickerMAZE.exe: + "/FlickerMAZE.exe": - when: - os: windows store: steam @@ -202564,22 +203124,22 @@ FlickerMAZE: id: 1207260 Flicky: files: - /SEGA Genesis Classics/0029: + "/SEGA Genesis Classics/0029": tags: - save when: - os: windows - /SEGA Genesis Classics/setup.dat: + "/SEGA Genesis Classics/setup.dat": tags: - config when: - os: windows - /SEGA Mega Drive Classics/0029: + "/SEGA Mega Drive Classics/0029": tags: - save when: - os: windows - /SEGA Mega Drive Classics/setup.dat: + "/SEGA Mega Drive Classics/setup.dat": tags: - config when: @@ -202590,7 +203150,7 @@ Flight 732: installDir: Flight 732: {} launch: - /Flight732.exe: + "/Flight732.exe": - when: - bit: 64 os: windows @@ -202601,11 +203161,11 @@ Flight 787 - Advanced: installDir: Flight787: {} launch: - /F787.app/Contents/MacOS/F787: + "/F787.app/Contents/MacOS/F787": - when: - os: mac store: steam - /F787.exe: + "/F787.exe": - when: - os: windows store: steam @@ -202613,12 +203173,12 @@ Flight 787 - Advanced: id: 490380 Flight Control HD: files: - /startup.bin: + "/startup.bin": tags: - config when: - os: windows - /userdata//62000/remote: + "/userdata//62000/remote": tags: - save when: @@ -202626,11 +203186,11 @@ Flight Control HD: installDir: Flight_Control_HD: {} launch: - /Flight_Control_HD.app: + "/Flight_Control_HD.app": - when: - os: mac store: steam - /flightControl_win32.exe: + "/flightControl_win32.exe": - when: - os: windows store: steam @@ -202641,17 +203201,17 @@ Flight Sim World: FSW: {} steam: id: 389280 -'Flight Simulator: VR': +"Flight Simulator: VR": steam: id: 569330 Flight Unlimited: files: - /LOGS/*.LOG: + "/LOGS/*.LOG": tags: - save when: - os: windows - /LOGS/HANGAR.DAT: + "/LOGS/HANGAR.DAT": tags: - config when: @@ -202660,21 +203220,24 @@ Flight Unlimited 2K18: installDir: Flight Unlimited 2K18: {} launch: - /Flight Unlimited 2K18.app: + "/Flight Unlimited 2K18.app": - when: - os: mac store: steam - /Flight Unlimited 2K18.exe: + "/Flight Unlimited 2K18.exe": - when: - bit: 32 os: windows store: steam - /Flight Unlimited 2K18.x86: + - bit: 64 + os: windows + store: steam + "/Flight Unlimited 2K18.x86": - when: - bit: 32 os: linux store: steam - /Flight Unlimited 2K18.x86_64: + "/Flight Unlimited 2K18.x86_64": - when: - bit: 64 os: linux @@ -202683,24 +203246,24 @@ Flight Unlimited 2K18: id: 667520 Flight Unlimited II: files: - /flt2.cfg: + "/flt2.cfg": tags: - config when: - os: windows - /logs/*.log: + "/logs/*.log": tags: - save when: - os: windows Flight Unlimited III: files: - /flt3.cfg: + "/flt3.cfg": tags: - config when: - os: windows - /logs/*.log: + "/logs/*.log": tags: - save when: @@ -202709,11 +203272,11 @@ Flight Unlimited Las Vegas: installDir: Flight Unlimited Las Vegas: {} launch: - /Flight Unlimited Las Vegas.app: + "/Flight Unlimited Las Vegas.app": - when: - os: mac store: steam - /Flight Unlimited Las Vegas.exe: + "/Flight Unlimited Las Vegas.exe": - when: - os: windows store: steam @@ -202723,15 +203286,15 @@ Flight of Light: installDir: Flight of Light: {} launch: - /Flight of Light.exe: + "/Flight of Light.exe": - when: - os: windows store: steam - /flight_of_light.app/Contents/MacOS/flight_of_light: + "/flight_of_light.app/Contents/MacOS/flight_of_light": - when: - os: mac store: steam - /flight_of_light.x86: + "/flight_of_light.x86": - when: - os: linux store: steam @@ -202739,31 +203302,31 @@ Flight of Light: id: 671370 Flight of the Amazon Queen: files: - /queen.ini: + "/queen.ini": tags: - config when: - os: windows - /queen.s**: + "/queen.s**": tags: - save when: - os: windows gog: id: 1207659723 -'Flight of the Amazon Queen: 25th Anniversary Edition': +"Flight of the Amazon Queen: 25th Anniversary Edition": files: - /Saved games/fotaq.ini: + "/Saved games/fotaq.ini": tags: - config when: - os: windows - /Saved games/queen.asd: + "/Saved games/queen.asd": tags: - save when: - os: windows - /Saved games/queen.s0?: + "/Saved games/queen.s0?": tags: - save when: @@ -202771,7 +203334,7 @@ Flight of the Amazon Queen: installDir: FOTAQ: {} launch: - /fotaq.exe: + "/fotaq.exe": - when: - os: windows store: steam @@ -202781,7 +203344,7 @@ Flight of the Athena: installDir: Flight of the Athena: {} launch: - /FlightOfTheAthena.exe: + "/FlightOfTheAthena.exe": - when: - os: windows store: steam @@ -202791,11 +203354,11 @@ Flight of the Icarus: installDir: Guns of Icarus: {} launch: - /GunsOfIcarusMac.app: + "/GunsOfIcarusMac.app": - when: - os: mac store: steam - /GunsOfIcarusWindows.exe: + "/GunsOfIcarusWindows.exe": - when: - os: windows store: steam @@ -202805,15 +203368,15 @@ Flight of the Paladin: installDir: Flight of the Paladin: {} launch: - /FlightofthePaladin.app/Contents/MacOS/FlightofthePaladin: + "/FlightofthePaladin.app/Contents/MacOS/FlightofthePaladin": - when: - os: mac store: steam - /FlightofthePaladin.exe: + "/FlightofthePaladin.exe": - when: - os: windows store: steam - /FlightofthePaladin.x86: + "/FlightofthePaladin.x86": - when: - os: linux store: steam @@ -202824,31 +203387,41 @@ Flight to Eternity: id: 638680 FlightGear Flight Simulator: files: - /.fgfs: + "/.fgfs": tags: - config when: - os: linux - /FlightGear: + "/FlightGear": tags: - config when: - os: windows - /FlightGear/aircraft-data: + "/FlightGear/aircraft-data": tags: - save when: - os: windows - /Library/Application Support/FlightGear: + "/Library/Application Support/FlightGear": tags: - config when: - os: mac + "/flightgear.org/ (Versions before FlightGear 3.0)": + tags: + - config + when: + - os: windows + "/FlightGear (FlightGear 3.0 to FlightGear 2018.3)": + tags: + - config + when: + - os: windows Flightless: installDir: Flightless: {} launch: - /flightless-x64.exe: + "/flightless-x64.exe": - when: - bit: 64 os: windows @@ -202864,7 +203437,7 @@ Fling to the Finish: installDir: Fling to the Finish: {} launch: - /Fling to the Finish.exe: + "/Fling to the Finish.exe": - when: - os: windows store: steam @@ -202878,11 +203451,11 @@ Flinger Tactics: installDir: Flinger Tactics: {} launch: - /Flinger Tactics (Mac) v0.6.0.app: + "/Flinger Tactics (Mac) v0.6.0.app": - when: - os: mac store: steam - /Flinger Tactics (Windows)/Flinger Tactics.exe: + "/Flinger Tactics (Windows)/Flinger Tactics.exe": - when: - os: windows store: steam @@ -202892,7 +203465,7 @@ Flint: installDir: Flint: {} launch: - /Flint/Flint.exe: + "/Flint/Flint.exe": - when: - os: windows store: steam @@ -202900,19 +203473,19 @@ Flint: id: 1146090 Flinthook: files: - /Library/Application Support/Tribute Games/Flinthook: + "/Library/Application Support/Tribute Games/Flinthook": tags: - config - save when: - os: mac - /Tribute Games/Flinthook: + "/Tribute Games/Flinthook": tags: - config - save when: - os: windows - /Tribute Games/Flinthook: + "/Tribute Games/Flinthook": tags: - config - save @@ -202921,19 +203494,19 @@ Flinthook: installDir: Flinthook: {} launch: - /Flinthook: + "/Flinthook": - when: - os: linux store: steam - /Flinthook.app/Contents/MacOS/Flinthook: + "/Flinthook.app/Contents/MacOS/Flinthook": - when: - os: mac store: steam - - arguments: '-singlethread -singlethreadsaving' + - arguments: "-singlethread -singlethreadsaving" when: - os: mac store: steam - /Flinthook.exe: + "/Flinthook.exe": - when: - os: windows store: steam @@ -202943,7 +203516,7 @@ Flip: installDir: Flip: {} launch: - /Flip.exe: + "/Flip.exe": - when: - os: windows store: steam @@ -202953,7 +203526,7 @@ Flip Polygon: installDir: Flip Polygon: {} launch: - /Flip Polygon.exe: + "/Flip Polygon.exe": - when: - os: windows store: steam @@ -202968,7 +203541,7 @@ Flip-Out!: installDir: Flip-Out!: {} launch: - /Flip-Out.exe: + "/Flip-Out.exe": - when: - os: windows store: steam @@ -202981,15 +203554,15 @@ Flipon: installDir: Flipon: {} launch: - /flipon.app: + "/flipon.app": - when: - os: mac store: steam - /flipon.exe: + "/flipon.exe": - when: - os: windows store: steam - /flipon.x86_64: + "/flipon.x86_64": - when: - bit: 64 os: linux @@ -203000,7 +203573,7 @@ Flipped On: installDir: Flipped On: {} launch: - /Flipped On.app: + "/Flipped On.app": - when: - os: mac store: steam @@ -203028,11 +203601,11 @@ Flippin Kaktus: installDir: Flippin Kaktus: {} launch: - /FlippinKaktus.app: + "/FlippinKaktus.app": - when: - os: mac store: steam - /FlippinKaktus.exe: + "/FlippinKaktus.exe": - when: - os: windows store: steam @@ -203042,7 +203615,7 @@ Flippin Misfits: installDir: Flippin Misfits: {} launch: - /FlippinMisfits-Win64-Shipping.exe: + "/FlippinMisfits-Win64-Shipping.exe": - when: - os: windows store: steam @@ -203052,11 +203625,11 @@ Flipping Death: installDir: Flipping Death: {} launch: - /FlippingDeath.app: + "/FlippingDeath.app": - when: - os: mac store: steam - /FlippingDeath.exe: + "/FlippingDeath.exe": - when: - bit: 64 os: windows @@ -203067,7 +203640,7 @@ Flippt: installDir: Flippt: {} launch: - /flippt.exe: + "/flippt.exe": - when: - os: windows store: steam @@ -203077,25 +203650,25 @@ Flirt Balls: installDir: Flirt Balls: {} launch: - /FlirtBalls.app/Contents/MacOS/FlirtBalls: + "/FlirtBalls.app/Contents/MacOS/FlirtBalls": - when: - os: mac store: steam - /FlirtBalls.x86: + "/FlirtBalls.x86": - when: - bit: 32 os: linux store: steam - /FlirtBalls.x86_64: + "/FlirtBalls.x86_64": - when: - bit: 64 os: linux store: steam - /Windows_x86/FlirtBalls.exe: + "/Windows_x86/FlirtBalls.exe": - when: - os: windows store: steam - /Windows_x86_64/FlirtBalls.exe: + "/Windows_x86_64/FlirtBalls.exe": - when: - bit: 64 os: windows @@ -203109,7 +203682,7 @@ Flix The Flea: installDir: Flix The Flea: {} launch: - /Flix The Flea.exe: + "/Flix The Flea.exe": - when: - os: windows store: steam @@ -203119,25 +203692,25 @@ Flix and Chill: installDir: Flix and Chill: {} launch: - /FlixAndChill.app: + "/FlixAndChill.app": - when: - os: mac store: steam - /FlixAndChill.exe: + "/FlixAndChill.exe": - when: - os: windows store: steam steam: id: 595460 -'Flix and Chill 2: Millennials': +"Flix and Chill 2: Millennials": installDir: Flix and Chill 2 Millennials: {} launch: - /FlixAndChill2.app: + "/FlixAndChill2.app": - when: - os: mac store: steam - /FlixAndChill2.exe: + "/FlixAndChill2.exe": - when: - os: windows store: steam @@ -203152,15 +203725,15 @@ Floating Point: installDir: Floating Point: {} launch: - /Floating Point.app: + "/Floating Point.app": - when: - os: mac store: steam - /Floating Point.exe: + "/Floating Point.exe": - when: - os: windows store: steam - /Floating Point.x86: + "/Floating Point.x86": - when: - os: linux store: steam @@ -203170,7 +203743,7 @@ Floaty Fighters: installDir: Floaty Fighters: {} launch: - /Floaty Fighters.exe: + "/Floaty Fighters.exe": - when: - os: windows store: steam @@ -203180,11 +203753,11 @@ Flobe: installDir: Flobe: {} launch: - /Flobe.app: + "/Flobe.app": - when: - os: mac store: steam - /Flobe.exe: + "/Flobe.exe": - when: - os: windows store: steam @@ -203199,15 +203772,15 @@ Flock of Dogs: installDir: Flock of Dogs: {} launch: - /LinuxAndSteamOS/FlockOfDogs/FlockOfDogs.x86_64: + "/LinuxAndSteamOS/FlockOfDogs/FlockOfDogs.x86_64": - when: - os: linux store: steam - /MacOS/FlockOfDogs.app: + "/MacOS/FlockOfDogs.app": - when: - os: mac store: steam - /Windows/FlockOfDogs/FlockOfDogs.exe: + "/Windows/FlockOfDogs/FlockOfDogs.exe": - when: - os: windows store: steam @@ -203217,7 +203790,7 @@ Flock!: installDir: FLOCK: {} launch: - /Flock.exe: + "/Flock.exe": - when: - store: steam steam: @@ -203226,21 +203799,21 @@ Flockers: installDir: Flockers: {} launch: - /Flockers.app: + "/Flockers.app": - when: - os: mac store: steam - /Flockers.bin.x64: + "/Flockers.bin.x64": - when: - bit: 64 os: linux store: steam - /Flockers.bin.x86: + "/Flockers.bin.x86": - when: - bit: 32 os: linux store: steam - /Flockers.exe: + "/Flockers.exe": - when: - os: windows store: steam @@ -203250,29 +203823,29 @@ Flood of Light: installDir: FloodOfLight: {} launch: - /FloodOfLight.app: + "/FloodOfLight.app": - when: - os: mac store: steam - /FloodOfLight.exe: + "/FloodOfLight.exe": - when: - os: windows store: steam steam: id: 606480 -'Flood: The Prequel': +"Flood: The Prequel": installDir: Flood The Prequel: {} launch: - /Game: + "/Game": - when: - os: linux store: steam - /Game.app: + "/Game.app": - when: - os: mac store: steam - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -203280,7 +203853,7 @@ Flood of Light: id: 680880 Flooded: files: - /AppData/LocalLow/Copper_Island/savemaster/*.save: + "/AppData/LocalLow/Copper_Island/savemaster/*.save": tags: - save when: @@ -203290,7 +203863,7 @@ Flooded: installDir: Flooded: {} launch: - /Flooded.exe: + "/Flooded.exe": - when: - bit: 64 os: windows @@ -203301,37 +203874,37 @@ Floogen: installDir: Floogen: {} launch: - /stopmotionOld.exe: + "/stopmotionOld.exe": - when: - os: windows store: steam steam: id: 800830 -'Floor 13: Deep State': +"Floor 13: Deep State": installDir: Floor 13 Deep State: {} launch: - /Floor 13 Deep State.exe: + "/Floor 13 Deep State.exe": - when: - bit: 64 os: windows store: steam - /floor13.app/Contents/MacOS/Floor 13 Deep State: + "/floor13.app/Contents/MacOS/Floor 13 Deep State": - when: - os: mac store: steam - workingDir: /Contents/MacOS + workingDir: "/Contents/MacOS" steam: id: 1263990 Floor Kids: installDir: Floor Kids: {} launch: - /FloorKids.app/Contents/MacOS/FloorKids: + "/FloorKids.app/Contents/MacOS/FloorKids": - when: - os: mac store: steam - /FloorKids.exe: + "/FloorKids.exe": - when: - os: windows store: steam @@ -203341,12 +203914,12 @@ Floor Massacre: installDir: Floor Massacre: {} launch: - /FM.exe: + "/FM.exe": - when: - store: steam steam: id: 885630 -'Floor Plan: Hands-On Edition': +"Floor Plan: Hands-On Edition": installDir: Floor Plan: {} steam: @@ -203355,7 +203928,7 @@ Floor by Floor: installDir: Floor By Floor: {} launch: - /Floor By Floor.exe: + "/Floor By Floor.exe": - when: - os: windows store: steam @@ -203365,11 +203938,11 @@ Floors of Discomfort: installDir: Floors of Discomfort: {} launch: - /fod: + "/fod": - when: - os: linux store: steam - /fod.exe: + "/fod.exe": - when: - os: windows store: steam @@ -203379,7 +203952,7 @@ Floppy Heroes: installDir: Floppy Heroes: {} launch: - /Floppy Heroes.exe: + "/Floppy Heroes.exe": - when: - os: windows store: steam @@ -203387,7 +203960,7 @@ Floppy Heroes: id: 480450 Floppy Knights: files: - /AppData/LocalLow/RoseCityGames/Floppy Knights/*.*: + "/AppData/LocalLow/RoseCityGames/Floppy Knights/*.*": tags: - save when: @@ -203397,12 +203970,12 @@ Floppy Knights: installDir: Floppy Knights: {} launch: - /Floppy Knights.exe: + "/Floppy Knights.exe": - when: - bit: 64 os: windows store: steam - /FloppyKnights.app: + "/FloppyKnights.app": - when: - os: mac store: steam @@ -203412,25 +203985,25 @@ Flora: installDir: Flora: {} launch: - /Linux/Flora.x86_64: + "/Linux/Flora.x86_64": - when: - os: linux store: steam - /flora.exe: + "/flora.exe": - when: - os: windows store: steam - /macOS/Flora.app/Contents/MacOS/Flora: + "/macOS/Flora.app/Contents/MacOS/Flora": - when: - os: mac store: steam steam: id: 733480 -Flora's Fruit Farm: +"Flora's Fruit Farm": installDir: Floras Fruit Farm: {} launch: - /FlorasFruitFarm.exe: + "/FlorasFruitFarm.exe": - when: - store: steam steam: @@ -203439,7 +204012,7 @@ Floral Aroma in the Shrine: installDir: FloralAromaintheShrine: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -203447,7 +204020,7 @@ Floral Aroma in the Shrine: id: 925440 Florence: files: - /AppData/LocalLow/Mountains/Florence: + "/AppData/LocalLow/Mountains/Florence": tags: - save when: @@ -203460,11 +204033,11 @@ Florence: installDir: Florence: {} launch: - /Florence.app: + "/Florence.app": - when: - os: mac store: steam - /Florence.exe: + "/Florence.exe": - when: - bit: 64 os: windows @@ -203479,18 +204052,18 @@ Florensia: installDir: Florensia: {} launch: - /Bin/FlorensiaEN.exe: - - arguments: '-steam' + "/Bin/FlorensiaEN.exe": + - arguments: "-steam" when: - os: windows store: steam steam: id: 384030 -'Floresia I: Intemporel': +"Floresia I: Intemporel": installDir: Floresia I - Intemporel: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -203498,36 +204071,36 @@ Florensia: id: 761000 Floribella: files: - /floribella/client/config.cs: + "/floribella/client/config.cs": tags: - config when: - os: windows - /floribella/client/defaults.cs: + "/floribella/client/defaults.cs": tags: - config when: - os: windows - /floribella/client/prefs.cs: + "/floribella/client/prefs.cs": tags: - config when: - os: windows Flotilla: files: - /Library/Application Support/Flotilla/Flotilla/AllPlayers: + "/Library/Application Support/Flotilla/Flotilla/AllPlayers": tags: - config - save when: - os: mac - /SavedGames/Flotilla/Flotilla/AllPlayers: + "/SavedGames/Flotilla/Flotilla/AllPlayers": tags: - config - save when: - os: windows - /Flotilla/Flotilla/AllPlayers: + "/Flotilla/Flotilla/AllPlayers": tags: - config - save @@ -203536,15 +204109,15 @@ Flotilla: installDir: Flotilla: {} launch: - /Flotilla: + "/Flotilla": - when: - os: linux store: steam - /Flotilla.app/Contents/MacOS/Flotilla: + "/Flotilla.app/Contents/MacOS/Flotilla": - when: - os: mac store: steam - /Flotilla.exe: + "/Flotilla.exe": - when: - os: windows store: steam @@ -203557,12 +204130,12 @@ Flotilla 2: id: 592100 Flotsam: files: - /AppData/LocalLow/Pajama Llama Games/Flotsam/PlayerSettings.json: + "/AppData/LocalLow/Pajama Llama Games/Flotsam/PlayerSettings.json": tags: - config when: - os: windows - /AppData/LocalLow/Pajama Llama Games/Flotsam/Saves: + "/AppData/LocalLow/Pajama Llama Games/Flotsam/Saves": tags: - save when: @@ -203572,7 +204145,7 @@ Flotsam: installDir: Flotsam: {} launch: - /Flotsam.exe: + "/Flotsam.exe": - when: - os: windows store: steam @@ -203589,29 +204162,29 @@ Flow Handcrafted: installDir: Flow Handcrafted: {} launch: - /FlowHandcrafted.app: + "/FlowHandcrafted.app": - when: - os: mac store: steam - /FlowHandcrafted.exe: + "/FlowHandcrafted.exe": - when: - os: windows store: steam steam: id: 747810 -'Flow: The Sliding': +"Flow: The Sliding": installDir: FlowThe Sliding: {} launch: - /FlowTheSliding.app/Contents/MacOS/FlowTheSliding: + "/FlowTheSliding.app/Contents/MacOS/FlowTheSliding": - when: - os: mac store: steam - /Linux/FlowThe Sliding.x86: + "/Linux/FlowThe Sliding.x86": - when: - os: linux store: steam - /Windows/FlowTheSliding.exe: + "/Windows/FlowTheSliding.exe": - when: - os: windows store: steam @@ -203621,7 +204194,7 @@ FlowDot: installDir: FlowDot: {} launch: - /FlowDot.exe: + "/FlowDot.exe": - when: - os: windows store: steam @@ -203634,7 +204207,7 @@ FlowScape: installDir: FlowScape: {} launch: - /FlowScape.exe: + "/FlowScape.exe": - when: - bit: 64 os: windows @@ -203643,27 +204216,28 @@ FlowScape: id: 1043390 Flower: files: - /Documents/Flower/SAVEGAME.BIN: + "/Documents/Flower/SAVEGAME.BIN": tags: - save when: - os: windows - /Flower/Flower.cfg: + "/Flower/Flower.cfg": tags: - config when: - os: windows - /GOG.com/Galaxy/Applications/51964741675694916/Storage/Shared/Files/SAVEGAME.BIN: + "/GOG.com/Galaxy/Applications/51964741675694916/Storage/Shared/Files/SAVEGAME.BIN": tags: - save when: - - store: gog + - os: windows + store: gog gog: id: 1319851840 installDir: Flower: {} launch: - /Flower.exe: + "/Flower.exe": - when: - bit: 64 os: windows @@ -203674,12 +204248,12 @@ Flower Design: installDir: Flower Design: {} launch: - /Flowers.app/Contents/MacOS/Flowers: + "/Flowers.app/Contents/MacOS/Flowers": - when: - os: mac store: steam - /Flowers.exe: - - arguments: '-windowed' + "/Flowers.exe": + - arguments: "-windowed" when: - os: windows store: steam @@ -203689,7 +204263,7 @@ Flower Design II: installDir: FlowerDesignTwo: {} launch: - /FlowerDesginTwo.exe: + "/FlowerDesginTwo.exe": - when: - os: windows store: steam @@ -203697,7 +204271,7 @@ Flower Design II: id: 960140 Flower Girl: files: - /LocalLow/JZ/Flower Girl: + "/LocalLow/JZ/Flower Girl": tags: - save when: @@ -203705,7 +204279,7 @@ Flower Girl: installDir: Flower girl: {} launch: - /Flower Girl.exe: + "/Flower Girl.exe": - when: - bit: 64 os: windows @@ -203714,7 +204288,7 @@ Flower Girl: id: 1568940 Flower Girl 2: files: - /LocalLow/JZ/Flower Girl 2: + "/LocalLow/JZ/Flower Girl 2": tags: - save when: @@ -203722,7 +204296,7 @@ Flower Girl 2: installDir: Flower girl 2: {} launch: - /Flower Girl 2.exe: + "/Flower Girl 2.exe": - when: - bit: 64 os: windows @@ -203733,7 +204307,7 @@ Flowering Across the Hakugyokurou: installDir: FloweringAcrosstheHakugyokurou: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -203743,15 +204317,15 @@ Flowering Nightshade: installDir: Flowering Nightshade: {} launch: - /Flowering_Nightshade.app: + "/Flowering_Nightshade.app": - when: - os: mac store: steam - /Flowering_Nightshade.exe: + "/Flowering_Nightshade.exe": - when: - os: windows store: steam - /Flowering_Nightshade.sh: + "/Flowering_Nightshade.sh": - when: - os: linux store: steam @@ -203764,19 +204338,19 @@ Flowers in Dark: installDir: Flowers in Dark: {} launch: - /flower.exe: + "/flower.exe": - when: - store: steam steam: id: 1004190 -'Flowers: Le Volume sur Automne': +"Flowers: Le Volume sur Automne": files: - /save: + "/save": tags: - save when: - os: windows - /save/config.dat: + "/save/config.dat": tags: - config when: @@ -203786,30 +204360,30 @@ Flowers in Dark: installDir: Flowers -Le volume sur automne-: {} launch: - /FLOWERS.exe: + "/FLOWERS.exe": - when: - store: steam steam: id: 1238730 -'Flowers: Le Volume sur Hiver': +"Flowers: Le Volume sur Hiver": gog: id: 1564851593 installDir: Flowers -Le volume sur hiver-: {} launch: - /FLOWERS.exe: + "/FLOWERS.exe": - when: - store: steam steam: id: 1921560 -'Flowers: Le Volume sur Printemps': +"Flowers: Le Volume sur Printemps": files: - /save: + "/save": tags: - save when: - os: windows - /save/config.dat: + "/save/config.dat": tags: - config when: @@ -203819,20 +204393,20 @@ Flowers in Dark: installDir: Flowers -Le volume sur printemps-: {} launch: - /FLOWERS.exe: + "/FLOWERS.exe": - when: - os: windows store: steam steam: id: 452440 -'Flowers: Le Volume sur Été': +"Flowers: Le Volume sur Été": files: - /save: + "/save": tags: - save when: - os: windows - /save/config.dat: + "/save/config.dat": tags: - config when: @@ -203842,7 +204416,7 @@ Flowers in Dark: installDir: Flowers -Le volume sur ete-: {} launch: - /FLOWERS.exe: + "/FLOWERS.exe": - when: - os: windows store: steam @@ -203852,7 +204426,7 @@ Flowing Lights: installDir: Flowing Lights: {} launch: - /FlowingLights.exe: + "/FlowingLights.exe": - when: - bit: 64 os: windows @@ -203872,7 +204446,7 @@ Fluffy Creatures VS The World: installDir: Fluffy Creatures VS The World: {} launch: - /Fluffy.exe: + "/Fluffy.exe": - when: - store: steam steam: @@ -203881,15 +204455,15 @@ Fluffy Friends: installDir: Fluffy Friends: {} launch: - /Linux/Fluffy.x86: + "/Linux/Fluffy.x86": - when: - os: linux store: steam - /MacOS/Fluffy.app/Contents/MacOS/Fluffy: + "/MacOS/Fluffy.app/Contents/MacOS/Fluffy": - when: - os: mac store: steam - /Windows/Fluffy.exe: + "/Windows/Fluffy.exe": - when: - os: windows store: steam @@ -203899,15 +204473,15 @@ Fluffy Friends 2: installDir: Fluffy Friends 2: {} launch: - /Fluffy2.app/Contents/MacOS/Fluffy2: + "/Fluffy2.app/Contents/MacOS/Fluffy2": - when: - os: mac store: steam - /Fluffy2.exe: + "/Fluffy2.exe": - when: - os: windows store: steam - /Fluffy2.x86: + "/Fluffy2.x86": - when: - os: linux store: steam @@ -203920,15 +204494,15 @@ Fluffy Horde: installDir: Fluffy Horde: {} launch: - /FluffyHorde.exe: + "/FluffyHorde.exe": - when: - os: windows store: steam - /FluffyHorde.x86: + "/FluffyHorde.x86": - when: - os: linux store: steam - /MacBuild.app: + "/MacBuild.app": - when: - os: mac store: steam @@ -203941,17 +204515,17 @@ Fluffy Horde: id: 777880 Fluffy Store: files: - /FluffyStore_Data/StreamingAssets/*.jpg: + "/FluffyStore_Data/StreamingAssets/*.jpg": tags: - save when: - os: windows - /FluffyStore_Data/StreamingAssets/ScreenShot/*.jpg: + "/FluffyStore_Data/StreamingAssets/ScreenShot/*.jpg": tags: - save when: - os: windows - /FluffyStore_Data/StreamingAssets/userinfo.db: + "/FluffyStore_Data/StreamingAssets/userinfo.db": tags: - save when: @@ -203959,11 +204533,11 @@ Fluffy Store: installDir: FluffyStore: {} launch: - /FluffyStore.app/Contents/MacOS/FluffyStore: + "/FluffyStore.app/Contents/MacOS/FluffyStore": - when: - os: mac store: steam - /FluffyStore.exe: + "/FluffyStore.exe": - when: - os: windows store: steam @@ -203973,7 +204547,7 @@ Fluid Lander - フリュードランダー: installDir: fluidlander: {} launch: - /cfdgame.exe: + "/cfdgame.exe": - when: - store: steam steam: @@ -203985,7 +204559,7 @@ Flurius: installDir: Flurius: {} launch: - /Flurius.exe: + "/Flurius.exe": - when: - os: windows store: steam @@ -203995,11 +204569,11 @@ Flute Master: installDir: Flute Master: {} launch: - /Flute Master.app/Contents/MacOS/Flute Master: + "/Flute Master.app/Contents/MacOS/Flute Master": - when: - os: mac store: steam - /Flute Master.exe: + "/Flute Master.exe": - when: - os: windows store: steam @@ -204009,7 +204583,7 @@ Fluttabyes: installDir: Fluttabyes: {} launch: - /Fluttabyes.exe: + "/Fluttabyes.exe": - when: - store: steam steam: @@ -204018,7 +204592,7 @@ Flutter Bombs: installDir: Flutter Bombs: {} launch: - /FlutterBombs.exe: + "/FlutterBombs.exe": - when: - bit: 64 os: windows @@ -204029,7 +204603,7 @@ Flux: installDir: Flux: {} launch: - /flux.exe: + "/flux.exe": - when: - os: windows store: steam @@ -204039,15 +204613,15 @@ Flux Caves: installDir: FluxCaves: {} launch: - /FluxCaves.exe: + "/FluxCaves.exe": - when: - os: windows store: steam - /Mac_full.app/Contents/MacOS/FluxCaves: + "/Mac_full.app/Contents/MacOS/FluxCaves": - when: - os: mac store: steam - /fluxcaves.x86_64: + "/fluxcaves.x86_64": - when: - os: linux store: steam @@ -204057,15 +204631,15 @@ Flux8: installDir: Flux8: {} launch: - /Flux8.app/Contents/MacOS/Flux8: + "/Flux8.app/Contents/MacOS/Flux8": - when: - os: mac store: steam - /Flux8.exe: + "/Flux8.exe": - when: - os: windows store: steam - /Flux8.x86: + "/Flux8.x86": - when: - os: linux store: steam @@ -204075,11 +204649,11 @@ Fly Away: installDir: Fly Away: {} launch: - /Flyaway.app: + "/Flyaway.app": - when: - os: mac store: steam - /Flyaway.exe: + "/Flyaway.exe": - when: - os: windows store: steam @@ -204094,7 +204668,7 @@ Fly Flew Flown: installDir: Fly Flew Flown: {} launch: - /FlyFlewFlown.exe: + "/FlyFlewFlown.exe": - when: - os: windows store: steam @@ -204104,7 +204678,7 @@ Fly High: installDir: Fly High: {} launch: - /BUILD 10.09.18_2.exe: + "/BUILD 10.09.18_2.exe": - when: - os: windows store: steam @@ -204115,19 +204689,19 @@ Fly Killer VR: Fly Killer VR: {} steam: id: 868560 -Fly O'Clock: +"Fly O'Clock": installDir: Fly OClock: {} launch: - /FlyOClock.app: + "/FlyOClock.app": - when: - os: mac store: steam - /FlyOClock.exe: + "/FlyOClock.exe": - when: - os: windows store: steam - /FlyOClock.x86: + "/FlyOClock.x86": - when: - os: linux store: steam @@ -204137,7 +204711,7 @@ Fly Punch Boom!: installDir: Fly Punch Boom!: {} launch: - /Fly Punch Boom!.exe: + "/Fly Punch Boom!.exe": - when: - os: windows store: steam @@ -204147,7 +204721,7 @@ Fly Simulator: installDir: Fly Simulator: {} launch: - /Fly Simulator.exe: + "/Fly Simulator.exe": - when: - os: windows store: steam @@ -204155,7 +204729,7 @@ Fly Simulator: id: 655790 Fly and Destroy: files: - /AppData/LocalLow/Just1337/Fly And Destroy: + "/AppData/LocalLow/Just1337/Fly And Destroy": tags: - save when: @@ -204163,20 +204737,20 @@ Fly and Destroy: installDir: Fly and Destroy: {} launch: - /FlyAndDestroy.app: + "/FlyAndDestroy.app": - when: - os: mac store: steam - /FlyAndDestroy.exe: + "/FlyAndDestroy.exe": - when: - os: windows store: steam - /FlyAndDestroy.x86: + "/FlyAndDestroy.x86": - when: - bit: 32 os: linux store: steam - /FlyAndDestroy.x86_64: + "/FlyAndDestroy.x86_64": - when: - bit: 64 os: linux @@ -204191,7 +204765,7 @@ Fly in the House: installDir: Fly in the House: {} launch: - /StartGame.exe: + "/StartGame.exe": - when: - store: steam steam: @@ -204200,11 +204774,11 @@ Fly of Butterfly: installDir: Fly of butterfly: {} launch: - /nw: + "/nw": - when: - os: linux store: steam - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -204218,14 +204792,14 @@ Fly to KUMA MAKER: Fly to KUMA MAKER: {} steam: id: 517860 -Fly'N: +"Fly'N": files: - /Source/Content/Config/slot1/*.dat: + "/Source/Content/Config/slot1/*.dat": tags: - save when: - os: windows - /Source/Content/Config/slot1/*.xml: + "/Source/Content/Config/slot1/*.xml": tags: - config when: @@ -204233,18 +204807,18 @@ Fly'N: installDir: FLYN: {} launch: - /Source/Flyn.exe: + "/Source/Flyn.exe": - when: - os: windows store: steam - workingDir: /Source + workingDir: "/Source" steam: id: 223730 -'Fly, Glowfly!': +"Fly, Glowfly!": installDir: - 'Fly, Glowfly!': {} + "Fly, Glowfly!": {} launch: - /FlyGlowfly.exe: + "/FlyGlowfly.exe": - when: - os: windows store: steam @@ -204259,7 +204833,7 @@ FlyInside Flight Simulator: installDir: FlyInside Flight Simulator: {} launch: - /FlyInsideSimulator.exe: + "/FlyInsideSimulator.exe": - when: - bit: 64 os: windows @@ -204270,7 +204844,7 @@ FlyManMissile: installDir: FlyManMissile: {} launch: - /FlyManMissile.exe: + "/FlyManMissile.exe": - when: - bit: 64 os: windows @@ -204281,7 +204855,7 @@ FlyWarzz: installDir: FlyWarzz: {} launch: - /FlyWarzz.exe: + "/FlyWarzz.exe": - when: - os: windows store: steam @@ -204291,11 +204865,11 @@ FlyWings 2018 Flight Simulator: installDir: FlyWings 2018 Flight Simulator: {} launch: - /FlyWings 2018 Flight Simulator.app/Contents/MacOS/FlyWings 2018 Flight Simulator: + "/FlyWings 2018 Flight Simulator.app/Contents/MacOS/FlyWings 2018 Flight Simulator": - when: - os: mac store: steam - /FlyWings 2018 Flight Simulator.exe: + "/FlyWings 2018 Flight Simulator.exe": - when: - bit: 64 os: windows @@ -204311,11 +204885,11 @@ Flyhunter Origins: installDir: Flyhunter Origins: {} launch: - /FlyHunter.app: + "/FlyHunter.app": - when: - os: mac store: steam - /FlyHunter.exe: + "/FlyHunter.exe": - when: - os: windows store: steam @@ -204326,11 +204900,11 @@ Flying Aces - Navy Pilot Simulator: Navy Pilot Simulator: {} steam: id: 837430 -'Flying Bacon: Ukrainian Air Force': +"Flying Bacon: Ukrainian Air Force": installDir: Flying Bacon: {} launch: - /fb.exe: + "/fb.exe": - when: - store: steam steam: @@ -204339,7 +204913,7 @@ Flying Baron 1916: installDir: The Flying Baron 1916: {} launch: - /The Flying Baron.exe: + "/The Flying Baron.exe": - when: - os: windows store: steam @@ -204349,7 +204923,7 @@ Flying Circus: installDir: Flying Circus: {} launch: - /FlyingCircus.exe: + "/FlyingCircus.exe": - when: - os: windows store: steam @@ -204357,13 +204931,13 @@ Flying Circus: id: 980770 Flying Corps: files: - /SAVEGAME: + "/SAVEGAME": tags: - save when: - os: dos - os: windows - /SAVEGAME/SETTINGS.CFG: + "/SAVEGAME/SETTINGS.CFG": tags: - config when: @@ -204372,7 +204946,7 @@ Flying Corps: installDir: Flying Corps: {} launch: - /DOSBox-0.74-3/DOSBox.exe: + "/DOSBox-0.74-3/DOSBox.exe": - when: - os: windows store: steam @@ -204382,29 +204956,29 @@ Flying Pengy: installDir: Flying Pengy: {} launch: - /Flying Pengy.app/Contents/MacOS/Flying Pengy: + "/Flying Pengy.app/Contents/MacOS/Flying Pengy": - when: - os: mac store: steam - /FlyingPengy.exe: + "/FlyingPengy.exe": - when: - os: windows store: steam steam: id: 519870 -'Flying Red Barrel: The Diary of a Little Aviator': +"Flying Red Barrel: The Diary of a Little Aviator": files: - /config.dat: + "/config.dat": tags: - config when: - os: windows - /system/ranking.dat: + "/system/ranking.dat": tags: - save when: - os: windows - /system/system.dat: + "/system/system.dat": tags: - save when: @@ -204412,7 +204986,7 @@ Flying Pengy: installDir: Flying Red Barrel - Diary of a Little Aviator: {} launch: - /FRB.exe: + "/FRB.exe": - when: - store: steam steam: @@ -204421,11 +204995,11 @@ Flying Salvager: installDir: Flying Salvager: {} launch: - /Flying Salvager.app/Contents/MacOS/Flying Salvager: + "/Flying Salvager.app/Contents/MacOS/Flying Salvager": - when: - os: mac store: steam - /Flying Salvager.exe: + "/Flying Salvager.exe": - when: - os: windows store: steam @@ -204435,15 +205009,15 @@ Flying Shark: installDir: Flying Shark: {} launch: - /FlyingShark.app: + "/FlyingShark.app": - when: - os: mac store: steam - /FlyingShark.exe: + "/FlyingShark.exe": - when: - os: windows store: steam - /FlyingShark.x64: + "/FlyingShark.x64": - when: - os: linux store: steam @@ -204453,7 +205027,7 @@ Flying Slime!: installDir: Flying Slime!: {} launch: - /Flying Slime!.exe: + "/Flying Slime!.exe": - when: - os: windows store: steam @@ -204463,25 +205037,25 @@ Flying Soul: installDir: Flying Soul: {} launch: - /FlyingSoul.exe: + "/FlyingSoul.exe": - when: - os: windows store: steam steam: id: 909270 -'Flying Tigers: Shadows Over China': +"Flying Tigers: Shadows Over China": files: - /media/config.ini: + "/media/config.ini": tags: - config when: - os: windows - /media/controls_user.ini: + "/media/controls_user.ini": tags: - config when: - os: windows - /media/save: + "/media/save": tags: - save when: @@ -204489,7 +205063,7 @@ Flying Soul: installDir: Flying Tigers Shadows Over China: {} launch: - /SETUPAPPLICATION.exe: + "/SETUPAPPLICATION.exe": - when: - store: steam steam: @@ -204509,7 +205083,7 @@ FlyingMetalSuit: FlyingMetalSuit: {} steam: id: 972290 -'FlyingRock: Arena': +"FlyingRock: Arena": installDir: FlyingRock Arena: {} steam: @@ -204518,7 +205092,7 @@ Flynguin Station: installDir: Flynguin Station: {} launch: - /FlynguinStation.exe: + "/FlynguinStation.exe": - when: - bit: 64 os: windows @@ -204529,20 +205103,20 @@ Flynn and Freckles: installDir: Flynn and Freckles: {} launch: - /Flynn and Freckles.exe: + "/Flynn and Freckles.exe": - when: - os: windows store: steam steam: id: 822130 -'Flynn: Son of Crimson': +"Flynn: Son of Crimson": files: - /Flynn_Son_of_Crimson/Data: + "/Flynn_Son_of_Crimson/Data": tags: - save when: - os: windows - /Packages/HumbleBundle.FlynnSonofCrimson_q2mcdwmzx4qja/LocalCache/Local/Flynn_Son_of_Crimson/Data: + "/Packages/HumbleBundle.FlynnSonofCrimson_q2mcdwmzx4qja/LocalCache/Local/Flynn_Son_of_Crimson/Data": tags: - config - save @@ -204554,7 +205128,7 @@ Flynn and Freckles: installDir: Flynn Son of Crimson: {} launch: - /Flynn Son of Crimson.exe: + "/Flynn Son of Crimson.exe": - when: - os: windows store: steam @@ -204564,7 +205138,7 @@ Flyvalny 20!8: installDir: FLYVALNY 20!8: {} launch: - /FLYVALNY.exe: + "/FLYVALNY.exe": - when: - os: windows store: steam @@ -204572,13 +205146,13 @@ Flyvalny 20!8: id: 800280 Flywrench: files: - /.config/FlywrenchStudio: + "/.config/FlywrenchStudio": tags: - config - save when: - os: linux - /FlywrenchStudio: + "/FlywrenchStudio": tags: - config - save @@ -204587,15 +205161,15 @@ Flywrench: installDir: Flywrench: {} launch: - /Flywrench.app: + "/Flywrench.app": - when: - os: mac store: steam - /FlywrenchStudio.exe: + "/FlywrenchStudio.exe": - when: - os: windows store: steam - /runner: + "/runner": - when: - os: linux store: steam @@ -204605,15 +205179,15 @@ Fobia: installDir: Fobia: {} launch: - /Fobia.app/Contents/MacOS/Fobia: + "/Fobia.app/Contents/MacOS/Fobia": - when: - os: mac store: steam - /Fobia.exe: + "/Fobia.exe": - when: - os: windows store: steam - /Fobia.x86_64: + "/Fobia.x86_64": - when: - bit: 64 os: linux @@ -204624,12 +205198,12 @@ Fobia - St. Dinfna Hotel: installDir: FobiaStDinfnaHotel: {} launch: - /Fobia.exe: + "/Fobia.exe": - when: - bit: 64 os: windows store: steam - - arguments: '-dx12' + - arguments: "-dx12" when: - bit: 64 os: windows @@ -204640,13 +205214,15 @@ Foe Frenzy: installDir: Foe Frenzy: {} launch: - /FoeFrenzy: - - arguments: '--requireSteam' + "/FoeFrenzy": + - arguments: "--requireSteam" when: - os: mac store: steam - /FoeFrenzy.exe: - - arguments: '--requireSteam' + - os: linux + store: steam + "/FoeFrenzy.exe": + - arguments: "--requireSteam" when: - os: windows store: steam @@ -204656,33 +205232,33 @@ Fog of War: installDir: Fog of War: {} launch: - /Battalion_Beta/Binaries/Win32/Battalion_BetaClient.exe: - - arguments: '-fullscreen' + "/Battalion_Beta/Binaries/Win32/Battalion_BetaClient.exe": + - arguments: "-fullscreen" when: - bit: 32 os: windows store: steam - /Battalion_Beta/Binaries/Win64/Battalion_BetaClient.exe: - - arguments: '-fullscreen' + "/Battalion_Beta/Binaries/Win64/Battalion_BetaClient.exe": + - arguments: "-fullscreen" when: - bit: 64 os: windows store: steam steam: id: 574080 -'Fog of War: The Battle for Cerberus': +"Fog of War: The Battle for Cerberus": installDir: Fog of War The Battle for Cerberus: {} launch: - /Fog of War The Battle for Cerberus.app/Contents/MacOS/Fog of War The Battle for Cerberus: + "/Fog of War The Battle for Cerberus.app/Contents/MacOS/Fog of War The Battle for Cerberus": - when: - os: mac store: steam - /FogOfWarTheBattleForCerberus: + "/FogOfWarTheBattleForCerberus": - when: - os: linux store: steam - /FogOfWarTheBattleForCerberus.exe: + "/FogOfWarTheBattleForCerberus.exe": - when: - os: windows store: steam @@ -204692,7 +205268,7 @@ Fold: installDir: Fold: {} launch: - /Fold.exe: + "/Fold.exe": - when: - os: windows store: steam @@ -204702,20 +205278,20 @@ Folk Tale: installDir: Folk Tale: {} launch: - /Folk Tale.app: + "/Folk Tale.app": - when: - os: mac store: steam - /Folk Tale.exe: - - arguments: '-force-d3d11' + "/Folk Tale.exe": + - arguments: "-force-d3d11" when: - os: windows store: steam - - arguments: '-force-d3d9' + - arguments: "-force-d3d9" when: - os: windows store: steam - /Folk Tale.x84_64: + "/Folk Tale.x84_64": - when: - bit: 64 os: linux @@ -204726,7 +205302,7 @@ Folklore Hunter: installDir: FolkloreHunter: {} launch: - /FolkloreHunter.exe: + "/FolkloreHunter.exe": - when: - store: steam steam: @@ -204735,7 +205311,7 @@ Follia - Dear father: installDir: Follia Dear father: {} launch: - /FolliaDearFather.exe: + "/FolliaDearFather.exe": - when: - os: windows store: steam @@ -204749,11 +205325,11 @@ Follow the White Rabbit VR (화이트래빗): WhiteRabbit VR: {} steam: id: 1134500 -'Follower:Sacrifice': +"Follower:Sacrifice": installDir: FollowerSacrifice: {} launch: - /FollowerSacrifice.exe: + "/FollowerSacrifice.exe": - when: - os: windows store: steam @@ -204763,7 +205339,7 @@ Food Bomber: installDir: Food Bomber: {} launch: - /Food Bomber.exe: + "/Food Bomber.exe": - when: - store: steam steam: @@ -204772,7 +205348,7 @@ Food Drive: installDir: Food Drive: {} launch: - /FD 2-1.exe: + "/FD 2-1.exe": - when: - os: windows store: steam @@ -204782,32 +205358,32 @@ Food Girls: installDir: 食用系少女 Food Girls: {} launch: - /Eatery.app: + "/Eatery.app": - when: - os: mac store: steam - /Eatery.exe: + "/Eatery.exe": - when: - os: windows store: steam steam: id: 985080 -'Food Girls: Civil War': +"Food Girls: Civil War": files: - /AppData/LocalLow/Storia/Eatery/Utage/SaveEatery: + "/AppData/LocalLow/Storia/Eatery/Utage/SaveEatery": tags: - config - save when: - os: windows installDir: - ' Food Girls:Civil War': {} + " Food Girls:Civil War": {} launch: - /Eatery2.app: + "/Eatery2.app": - when: - os: mac store: steam - /Eatery2.exe: + "/Eatery2.exe": - when: - os: windows store: steam @@ -204820,7 +205396,7 @@ Food Mahjong: installDir: Food Mahjong: {} launch: - /Food Mahjong.exe: + "/Food Mahjong.exe": - when: - os: windows store: steam @@ -204830,7 +205406,7 @@ Food Monster and Animals Memory Match: installDir: Food Monster and Animals Memory Match: {} launch: - /Food Monster and Animals Memory Match.exe: + "/Food Monster and Animals Memory Match.exe": - when: - os: windows store: steam @@ -204840,7 +205416,7 @@ Food Truck Simulator: installDir: Food Truck Renovation: {} launch: - /FTR3.exe: + "/FTR3.exe": - when: - os: windows store: steam @@ -204858,7 +205434,7 @@ FoodBall: installDir: FoodBall: {} launch: - /foodtruckarena.exe: + "/foodtruckarena.exe": - when: - store: steam steam: @@ -204867,7 +205443,7 @@ Foodie Bear: installDir: Foodie Bear: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -204877,15 +205453,15 @@ Fool!: installDir: Fool!: {} launch: - /Fool: + "/Fool": - when: - os: linux store: steam - /Fool.app/Contents/MacOS/Fool: + "/Fool.app/Contents/MacOS/Fool": - when: - os: mac store: steam - /Fool.exe: + "/Fool.exe": - when: - os: windows store: steam @@ -204895,15 +205471,15 @@ Foosball - Street Edition: installDir: Foosball Street Edition: {} launch: - /Foosball Street Edition.app: + "/Foosball Street Edition.app": - when: - os: mac store: steam - /foosball_se.exe: + "/foosball_se.exe": - when: - os: windows store: steam - /foosball_se.sh: + "/foosball_se.sh": - when: - os: linux store: steam @@ -204914,32 +205490,32 @@ Foosball VR: Foosball VR: {} steam: id: 779730 -'Foosball: World Tour': +"Foosball: World Tour": installDir: Foosball: {} launch: - /Configure.exe: + "/Configure.exe": - when: - store: steam - /Foosball.exe: + "/Foosball.exe": - when: - store: steam steam: id: 386400 -'FootLOL: Epic Fail League': +"FootLOL: Epic Fail League": installDir: FootLOL: {} launch: - /FootLOL Epic Fail League.app: + "/FootLOL Epic Fail League.app": - when: - os: mac store: steam - /FootLOL Epic Fail League.x86: + "/FootLOL Epic Fail League.x86": - when: - os: linux store: steam - /FootLOLSteam.exe: - - arguments: '-console' + "/FootLOLSteam.exe": + - arguments: "-console" when: - os: windows store: steam @@ -204949,7 +205525,7 @@ FootRock: installDir: FootRock: {} launch: - /build.exe: + "/build.exe": - when: - os: windows store: steam @@ -204959,7 +205535,7 @@ FootRock 2: installDir: FootRock 2: {} launch: - /build.exe: + "/build.exe": - when: - store: steam steam: @@ -204968,11 +205544,11 @@ Football Blitz: installDir: Football Blitz: {} launch: - /FootballBlitz.app/Contents/MacOS/FootballBlitz: + "/FootballBlitz.app/Contents/MacOS/FootballBlitz": - when: - os: mac store: steam - /FootballBlitz.exe: + "/FootballBlitz.exe": - when: - os: windows store: steam @@ -204982,7 +205558,7 @@ Football Club Simulator: installDir: Football Club Simulator: {} launch: - /FCS.exe: + "/FCS.exe": - when: - store: steam steam: @@ -204991,7 +205567,7 @@ Football Director 2019: installDir: Football Director 2019: {} launch: - /FD19.exe: + "/FD19.exe": - when: - os: windows store: steam @@ -205001,16 +205577,16 @@ Football Drama: installDir: Football Drama: {} launch: - /FootballDrama.app: + "/FootballDrama.app": - when: - os: mac store: steam - /FootballDrama32.exe: + "/FootballDrama32.exe": - when: - bit: 32 os: windows store: steam - /FootballDrama64.exe: + "/FootballDrama64.exe": - when: - bit: 64 os: windows @@ -205021,7 +205597,7 @@ Football Game: installDir: Football Game: {} launch: - /Football Game.exe: + "/Football Game.exe": - when: - os: windows store: steam @@ -205029,20 +205605,20 @@ Football Game: id: 654550 Football Generation: files: - /Saves: + "/Saves": tags: - save when: - os: windows -'Football Girls: Dream Team': +"Football Girls: Dream Team": installDir: Football Girls Dream Team: {} launch: - /Football Girls - Dream Team.app/Contents/MacOS/Football Girls - Dream Team: + "/Football Girls - Dream Team.app/Contents/MacOS/Football Girls - Dream Team": - when: - os: mac store: steam - /Football Girls - Dream Team.exe: + "/Football Girls - Dream Team.exe": - when: - os: windows store: steam @@ -205052,7 +205628,7 @@ Football Heroes Turbo: installDir: Football Heroes Turbo: {} launch: - /FootballHeroes_Win7.exe: + "/FootballHeroes_Win7.exe": - when: - bit: 64 os: windows @@ -205063,14 +205639,14 @@ Football Manager 2008: installDir: Football Manager 2008: {} launch: - /fm.exe: + "/fm.exe": - when: - store: steam steam: id: 10480 Football Manager 2009: files: - /Sports Interactive/Football Manager 2009: + "/Sports Interactive/Football Manager 2009": tags: - save when: @@ -205078,14 +205654,14 @@ Football Manager 2009: installDir: Football Manager 2009: {} launch: - /fm.exe: + "/fm.exe": - when: - store: steam steam: id: 10540 Football Manager 2010: files: - /Sports Interactive/Football Manager 2010: + "/Sports Interactive/Football Manager 2010": tags: - save when: @@ -205094,7 +205670,7 @@ Football Manager 2010: id: 34009 Football Manager 2011: files: - /Sports Interactive/Football Manager 2011: + "/Sports Interactive/Football Manager 2011": tags: - save when: @@ -205102,11 +205678,11 @@ Football Manager 2011: installDir: Football Manager 2011: {} launch: - /fm.app: + "/fm.app": - when: - os: mac store: steam - /fm.exe: + "/fm.exe": - when: - os: windows store: steam @@ -205114,7 +205690,7 @@ Football Manager 2011: id: 34220 Football Manager 2012: files: - /Sports Interactive/Football Manager 2012: + "/Sports Interactive/Football Manager 2012": tags: - save when: @@ -205122,11 +205698,11 @@ Football Manager 2012: installDir: Football Manager 2012: {} launch: - /fm.app: + "/fm.app": - when: - os: mac store: steam - /fm.exe: + "/fm.exe": - when: - os: windows store: steam @@ -205139,11 +205715,11 @@ Football Manager 2013: installDir: Football Manager 2013: {} launch: - /fm.app: + "/fm.app": - when: - os: mac store: steam - /fm.exe: + "/fm.exe": - when: - os: windows store: steam @@ -205151,25 +205727,25 @@ Football Manager 2013: id: 207890 Football Manager 2014: files: - /Library/Application Support/Sports Interactive/Football Manager 2014: + "/Library/Application Support/Sports Interactive/Football Manager 2014": tags: - config - save when: - os: mac - /Sports Interactive/Football Manager 2014: + "/Sports Interactive/Football Manager 2014": tags: - config - save when: - os: linux - /Sports Interactive/Football Manager 2014: + "/Sports Interactive/Football Manager 2014": tags: - config - save when: - os: windows - /Sports Interactive/Football Manager 2014: + "/Sports Interactive/Football Manager 2014": tags: - config - save @@ -205178,15 +205754,15 @@ Football Manager 2014: installDir: Football Manager 2014: {} launch: - /fm: + "/fm": - when: - os: linux store: steam - /fm.app: + "/fm.app": - when: - os: mac store: steam - /fm.exe: + "/fm.exe": - when: - os: windows store: steam @@ -205196,15 +205772,15 @@ Football Manager 2015: installDir: Football Manager 2015: {} launch: - /fm: + "/fm": - when: - os: linux store: steam - /fm.app: + "/fm.app": - when: - os: mac store: steam - /fm.exe: + "/fm.exe": - when: - os: windows store: steam @@ -205214,15 +205790,15 @@ Football Manager 2016: installDir: Football Manager 2016: {} launch: - /fm: + "/fm": - when: - os: linux store: steam - /fm.app: + "/fm.app": - when: - os: mac store: steam - /fm.exe: + "/fm.exe": - when: - os: windows store: steam @@ -205230,7 +205806,7 @@ Football Manager 2016: id: 378120 Football Manager 2017: files: - /Sports Interactive/Football Manager 2017/games: + "/Sports Interactive/Football Manager 2017/games": tags: - save when: @@ -205238,15 +205814,15 @@ Football Manager 2017: installDir: Football Manager 2017: {} launch: - /fm: + "/fm": - when: - os: linux store: steam - /fm.app: + "/fm.app": - when: - os: mac store: steam - /fm.exe: + "/fm.exe": - when: - os: windows store: steam @@ -205254,7 +205830,7 @@ Football Manager 2017: id: 482730 Football Manager 2018: files: - /Sports Interactive/Football Manager 2018: + "/Sports Interactive/Football Manager 2018": tags: - config when: @@ -205262,15 +205838,15 @@ Football Manager 2018: installDir: Football Manager 2018: {} launch: - /fm: + "/fm": - when: - os: linux store: steam - /fm.app: + "/fm.app": - when: - os: mac store: steam - /fm.exe: + "/fm.exe": - when: - os: windows store: steam @@ -205280,25 +205856,25 @@ Football Manager 2019: installDir: Football Manager 2019: {} launch: - /fm.app: + "/fm.app": - when: - os: mac store: steam - /fm.exe: + "/fm.exe": - when: - os: windows store: steam steam: id: 872790 -'Football Manager 2019: The Hashtag United Challenge': +"Football Manager 2019: The Hashtag United Challenge": installDir: Football Manager 2019 Hashtag United Challenge: {} launch: - /fm.app: + "/fm.app": - when: - os: mac store: steam - /fm.exe: + "/fm.exe": - when: - os: windows store: steam @@ -205306,24 +205882,24 @@ Football Manager 2019: id: 884830 Football Manager 2020: files: - /Sports Interactive/Football Manager 2020/Gamepass/games: + "/Sports Interactive/Football Manager 2020/Gamepass/games": tags: - save when: - os: windows store: microsoft - /Sports Interactive/Football Manager 2020/games: + "/Sports Interactive/Football Manager 2020/games": tags: - save when: - os: windows - /Packages/SportsInteractive.FootballManager2020_5w3tn6tb6stnm/LocalCache/Local/Sports Interactive/Football Manager 2020/Gamepass/Preferences: + "/Packages/SportsInteractive.FootballManager2020_5w3tn6tb6stnm/LocalCache/Local/Sports Interactive/Football Manager 2020/Gamepass/Preferences": tags: - config when: - os: windows store: microsoft - /Sports Interactive/Football Manager 2020/Preferences: + "/Sports Interactive/Football Manager 2020/Preferences": tags: - config when: @@ -205331,11 +205907,11 @@ Football Manager 2020: installDir: Football Manager 2020: {} launch: - /fm.app: + "/fm.app": - when: - os: mac store: steam - /fm.exe: + "/fm.exe": - when: - bit: 64 os: windows @@ -205344,12 +205920,12 @@ Football Manager 2020: id: 1100600 Football Manager 2020 Touch: files: - /Sports Interactive/Football Manager 2020 Touch/games: + "/Sports Interactive/Football Manager 2020 Touch/games": tags: - save when: - os: windows - /Sports Interactive/Football Manager 2020 Touch/Preferences: + "/Sports Interactive/Football Manager 2020 Touch/Preferences": tags: - config when: @@ -205357,11 +205933,11 @@ Football Manager 2020 Touch: installDir: Football Manager 2020 Touch: {} launch: - /fm.app: + "/fm.app": - when: - os: mac store: steam - /fm.exe: + "/fm.exe": - when: - bit: 64 os: windows @@ -205372,11 +205948,11 @@ Football Manager 2021: installDir: Football Manager 2021: {} launch: - /fm.app: + "/fm.app": - when: - os: mac store: steam - /fm.exe: + "/fm.exe": - when: - bit: 64 os: windows @@ -205387,11 +205963,11 @@ Football Manager 2021 Touch: installDir: Football Manager 2021 Touch: {} launch: - /fm.app: + "/fm.app": - when: - os: mac store: steam - /fm.exe: + "/fm.exe": - when: - bit: 64 os: windows @@ -205402,11 +205978,11 @@ Football Manager 2022: installDir: Football Manager 2022: {} launch: - /fm.app: + "/fm.app": - when: - os: mac store: steam - /fm.exe: + "/fm.exe": - when: - bit: 64 os: windows @@ -205415,12 +205991,12 @@ Football Manager 2022: id: 1569040 Football Manager 2023: files: - /Library/Application Support/Sports Interactive/Football Manager 2023/cloud: + "/Library/Application Support/Sports Interactive/Football Manager 2023/cloud": tags: - save when: - os: mac - /Sports Interactive/Football Manager 2023/cloud: + "/Sports Interactive/Football Manager 2023/cloud": tags: - save when: @@ -205428,11 +206004,11 @@ Football Manager 2023: installDir: Football Manager 2023: {} launch: - /fm.app: + "/fm.app": - when: - os: mac store: steam - /fm.exe: + "/fm.exe": - when: - bit: 64 os: windows @@ -205443,15 +206019,15 @@ Football Manager Touch 2016: installDir: Football Manager 2016 Test App: {} launch: - /fm: + "/fm": - when: - os: linux store: steam - /fm.app: + "/fm.app": - when: - os: mac store: steam - /fm.exe: + "/fm.exe": - when: - os: windows store: steam @@ -205461,15 +206037,15 @@ Football Manager Touch 2017: installDir: Football Manager Touch 2017: {} launch: - /fm: + "/fm": - when: - os: linux store: steam - /fm.app: + "/fm.app": - when: - os: mac store: steam - /fm.exe: + "/fm.exe": - when: - os: windows store: steam @@ -205479,15 +206055,15 @@ Football Manager Touch 2018: installDir: Football Manager Touch 2018: {} launch: - /fm: + "/fm": - when: - os: linux store: steam - /fm.app: + "/fm.app": - when: - os: mac store: steam - /fm.exe: + "/fm.exe": - when: - os: windows store: steam @@ -205497,11 +206073,11 @@ Football Manager Touch 2019: installDir: Football Manager 2019 Touch: {} launch: - /fm.app: + "/fm.app": - when: - os: mac store: steam - /fm.exe: + "/fm.exe": - when: - os: windows store: steam @@ -205511,7 +206087,7 @@ Football Mogul 15: installDir: Football Mogul 15: {} launch: - /FB15.exe: + "/FB15.exe": - when: - store: steam steam: @@ -205520,7 +206096,7 @@ Football Mogul 18: installDir: Football Mogul 18: {} launch: - /FB18.exe: + "/FB18.exe": - when: - os: windows store: steam @@ -205530,7 +206106,7 @@ Football Mogul 2014: installDir: Football Mogul 2014: {} launch: - /FB2K14.exe: + "/FB2K14.exe": - when: - os: windows store: steam @@ -205545,7 +206121,7 @@ Football Russian 20!8: installDir: Football Russian 20!8: {} launch: - /Football Russian 20!8.exe: + "/Football Russian 20!8.exe": - when: - os: windows store: steam @@ -205555,7 +206131,7 @@ Football School: installDir: Football School: {} launch: - /footballschool.exe: + "/footballschool.exe": - when: - os: windows store: steam @@ -205568,7 +206144,7 @@ Football Superstars: installDir: Football Superstars: {} launch: - /PatchBootstrap.exe: + "/PatchBootstrap.exe": - arguments: FSPatchR.exe when: - os: windows @@ -205577,12 +206153,12 @@ Football Superstars: id: 219870 Football Tactics: files: - /Creoteam/Football Tactics/saveGame: + "/Creoteam/Football Tactics/saveGame": tags: - save when: - os: windows - /Creoteam/Football Tactics/setup.ini: + "/Creoteam/Football Tactics/setup.ini": tags: - config when: @@ -205590,7 +206166,7 @@ Football Tactics: installDir: Football Tactics: {} launch: - /game64.exe: + "/game64.exe": - when: - store: steam steam: @@ -205600,15 +206176,15 @@ Football VR: Football Toss: {} steam: id: 500930 -'Football: The Hardest Job': +"Football: The Hardest Job": installDir: Football The Hardest Job: {} launch: - /Football- The Hardest Job.app: + "/Football- The Hardest Job.app": - when: - os: mac store: steam - /Football- The Hardest Job.exe: + "/Football- The Hardest Job.exe": - when: - bit: 64 os: windows @@ -205619,16 +206195,16 @@ Footbrawl Playground: installDir: FootbrawlPlayground: {} launch: - /Footbrawl_Playground_Mac.app/Contents/MacOS/Footbrawl_Playground_Mac: + "/Footbrawl_Playground_Mac.app/Contents/MacOS/Footbrawl_Playground_Mac": - when: - os: mac store: steam - /Footbrawl_Playground_win_32bit.exe: + "/Footbrawl_Playground_win_32bit.exe": - when: - bit: 32 os: windows store: steam - /Footbrawl_Playground_win_64bit.exe: + "/Footbrawl_Playground_win_64bit.exe": - when: - bit: 64 os: windows @@ -205639,7 +206215,7 @@ Footy Ball Tournament 2018: installDir: Footy Ball Tournament 2018: {} launch: - /FootyBall_T2018.exe: + "/FootyBall_T2018.exe": - when: - os: windows store: steam @@ -205655,7 +206231,7 @@ For Food Sake! VR: id: 790890 For Honor: files: - /My Games/For Honor: + "/My Games/For Honor": tags: - config when: @@ -205672,25 +206248,25 @@ For Inco: installDir: For Inco: {} launch: - /ForInco.exe: + "/ForInco.exe": - when: - os: windows store: steam steam: id: 1154360 -'For Rent: Haunted House': +"For Rent: Haunted House": installDir: For Rent Haunted House: {} launch: - /For Rent Haunted House.app/Contents/MacOS/For Rent Haunted House: + "/For Rent Haunted House.app/Contents/MacOS/For Rent Haunted House": - when: - os: mac store: steam - /ForRentHauntedHouse: + "/ForRentHauntedHouse": - when: - os: linux store: steam - /ForRentHauntedHouse.exe: + "/ForRentHauntedHouse.exe": - when: - os: windows store: steam @@ -205700,30 +206276,30 @@ For a Better Country: installDir: For a Better Country: {} launch: - /forabettercountry.exe: + "/forabettercountry.exe": - when: - os: windows store: steam steam: id: 1131420 -'For the Glory: A Europa Universalis Game': +"For the Glory: A Europa Universalis Game": files: - /Scenarios/Save Games/*.cfg: + "/Scenarios/Save Games/*.cfg": tags: - save when: - os: windows - /Scenarios/Save Games/*.eeg: + "/Scenarios/Save Games/*.eeg": tags: - save when: - os: windows - /config.tfg: + "/config.tfg": tags: - config when: - os: windows - /settings.txt: + "/settings.txt": tags: - config when: @@ -205733,39 +206309,39 @@ For a Better Country: installDir: For The Glory: {} launch: - /FTG.exe: + "/FTG.exe": - when: - store: steam steam: id: 42810 For the King: files: - /.config/unity3d/IronOak Games/FTK: + "/.config/unity3d/IronOak Games/FTK": tags: - config when: - os: linux - /.config/unity3d/IronOak Games/FTK/save: + "/.config/unity3d/IronOak Games/FTK/save": tags: - save when: - os: linux - /AppData/LocalLow/IronOak Games/FTK/save: + "/AppData/LocalLow/IronOak Games/FTK/save": tags: - save when: - os: windows - /AppData/LocalLow/IronOak Games/FTK/save/custominput.bin: + "/AppData/LocalLow/IronOak Games/FTK/save/custominput.bin": tags: - config when: - os: windows - /Library/Application Support/IronOak Games/FTK: + "/Library/Application Support/IronOak Games/FTK": tags: - config when: - os: mac - /Library/Application Support/IronOak Games/FTK/save: + "/Library/Application Support/IronOak Games/FTK/save": tags: - save when: @@ -205783,14 +206359,16 @@ For the King: installDir: For The King: {} launch: - /FTK.app: + "/FTK.app": - when: - os: mac store: steam - /FTK.exe: + "/FTK.exe": - when: - os: windows store: steam + - os: linux + store: steam registry: HKEY_CURRENT_USER/Software/IronOak Games/FTK: tags: @@ -205799,7 +206377,7 @@ For the King: id: 527230 For the King II: files: - /IronOak Games/For The King II: + "/IronOak Games/For The King II": tags: - save when: @@ -205807,7 +206385,7 @@ For the King II: installDir: For The King II: {} launch: - /For The King II.exe: + "/For The King II.exe": - when: - store: steam steam: @@ -205819,7 +206397,7 @@ For the Revenge: installDir: For the Revenge: {} launch: - /For the Revenge.exe: + "/For the Revenge.exe": - when: - bit: 64 os: windows @@ -205833,7 +206411,7 @@ For the Warp: installDir: For The Warp: {} launch: - /FTW.exe: + "/FTW.exe": - when: - bit: 64 os: windows @@ -205842,19 +206420,19 @@ For the Warp: id: 1201830 Forager: files: - /.config/Forager: + "/.config/Forager": tags: - config - save when: - os: linux - /Forager: + "/Forager": tags: - config - save when: - os: windows - /Packages/HumbleBundle.ForagerWin10_q2mcdwmzx4qja/LocalState: + "/Packages/HumbleBundle.ForagerWin10_q2mcdwmzx4qja/LocalState": tags: - save when: @@ -205865,15 +206443,15 @@ Forager: installDir: Forager: {} launch: - /Forager: + "/Forager": - when: - os: linux store: steam - /Forager.app: + "/Forager.app": - when: - os: mac store: steam - /Forager.exe: + "/Forager.exe": - when: - os: windows store: steam @@ -205883,11 +206461,11 @@ Forbidden Clicker Party: installDir: Forbidden Clicker Party: {} launch: - /The Forbidden Clicker Party.app/Contents/MacOS/The Forbidden Clicker Party: + "/The Forbidden Clicker Party.app/Contents/MacOS/The Forbidden Clicker Party": - when: - os: mac store: steam - /The Forbidden Clicker Party.exe: + "/The Forbidden Clicker Party.exe": - when: - os: windows store: steam @@ -205900,7 +206478,7 @@ Forbidden Fruit: installDir: ForbiddenFruitRework: {} launch: - /ForbiddenFruitRework-SB-pc/ForbiddenFruitRework.exe: + "/ForbiddenFruitRework-SB-pc/ForbiddenFruitRework.exe": - when: - os: windows store: steam @@ -205913,7 +206491,7 @@ Forbidden Ingress: installDir: Forbidden Ingress: {} launch: - /ForbiddenIngress.exe: + "/ForbiddenIngress.exe": - when: - os: windows store: steam @@ -205923,8 +206501,8 @@ Forbidden Love: installDir: Forbidden Love: {} launch: - /ForbiddenLove.exe: - - arguments: '-windowed' + "/ForbiddenLove.exe": + - arguments: "-windowed" when: - os: windows store: steam @@ -205934,7 +206512,7 @@ Forbidden Love With The Ghost Girl: installDir: Forbidden Love With The Ghost Girl: {} launch: - /Game.exe: + "/Game.exe": - when: - bit: 64 os: windows @@ -205945,7 +206523,7 @@ Forbidden Planet: installDir: Forbidden planet: {} launch: - /Forbiddenplanet.exe: + "/Forbiddenplanet.exe": - when: - os: windows store: steam @@ -205961,7 +206539,7 @@ Force of Elements: installDir: Force of Elements: {} launch: - /forceOfElements.exe: + "/forceOfElements.exe": - when: - os: windows store: steam @@ -205969,12 +206547,12 @@ Force of Elements: id: 368980 Force of Nature: files: - /ForceofNature: + "/ForceofNature": tags: - config when: - os: windows - 'C:/ProgramData/ForceOfNature/Worlds': + "C:/ProgramData/ForceOfNature/Worlds": tags: - save when: @@ -205982,19 +206560,19 @@ Force of Nature: installDir: Force of Nature: {} launch: - /ForceOfNature.exe: + "/ForceOfNature.exe": - when: - os: windows store: steam - /ForceOfNatureDX11.exe: + "/ForceOfNatureDX11.exe": - when: - os: windows store: steam steam: id: 568570 -'Force of Nature 2: Ghost Keeper': +"Force of Nature 2: Ghost Keeper": files: - /AY std/Force Of Nature 2/Worlds: + "/AY std/Force Of Nature 2/Worlds": tags: - save when: @@ -206002,7 +206580,7 @@ Force of Nature: installDir: Force of Nature 2: {} launch: - /ForceOfNature.exe: + "/ForceOfNature.exe": - when: - bit: 64 os: windows @@ -206011,12 +206589,12 @@ Force of Nature: id: 1316230 Forced: files: - /userdata//249990/remote: + "/userdata//249990/remote": tags: - save when: - store: steam - /unity3d/BetaDwarf ApS/FORCED/prefs: + "/unity3d/BetaDwarf ApS/FORCED/prefs": tags: - config when: @@ -206024,17 +206602,17 @@ Forced: installDir: FORCED: {} launch: - /FORCED.app: + "/FORCED.app": - when: - os: mac store: steam - workingDir: /FORCED.app - /FORCED.exe: - - arguments: '-force-d3d9' + workingDir: "/FORCED.app" + "/FORCED.exe": + - arguments: "-force-d3d9" when: - os: windows store: steam - /run_steam.sh: + "/run_steam.sh": - when: - os: linux store: steam @@ -206046,17 +206624,17 @@ Forced: id: 249990 Forced Showdown: files: - /game/save/profile: + "/game/save/profile": tags: - save when: - os: linux - /.config/unity3d/BetaDwarf/FORCED SHOWDOWN: + "/.config/unity3d/BetaDwarf/FORCED SHOWDOWN": tags: - config when: - os: linux - /FORCED Showdown/profile: + "/FORCED Showdown/profile": tags: - save when: @@ -206066,15 +206644,15 @@ Forced Showdown: installDir: FORCED SHOWDOWN: {} launch: - /forced_showdown.app: + "/forced_showdown.app": - when: - os: mac store: steam - /forced_showdown.exe: + "/forced_showdown.exe": - when: - os: windows store: steam - /run_steam.sh: + "/run_steam.sh": - when: - os: linux store: steam @@ -206086,14 +206664,14 @@ Forced Showdown: id: 265000 Ford Racing: files: - /Save: + "/Save": tags: - save when: - os: windows Ford Racing 2: files: - /SAVEDATA/AUTOSAVE: + "/SAVEDATA/AUTOSAVE": tags: - save when: @@ -206104,7 +206682,7 @@ Ford Racing 2: - config Ford Racing 3: files: - /SAVEDATA/AUTOSAVE: + "/SAVEDATA/AUTOSAVE": tags: - save when: @@ -206112,7 +206690,7 @@ Ford Racing 3: installDir: Ford Racing 3: {} launch: - /fr3.exe: + "/fr3.exe": - when: - store: steam registry: @@ -206121,24 +206699,24 @@ Ford Racing 3: - config steam: id: 315600 -'Ford Racing: Off Road': +"Ford Racing: Off Road": files: - /Ford Racing Off Road/autosave: + "/Ford Racing Off Road/autosave": tags: - save when: - os: windows - /Ford Racing Off Road/ctrllers.dat: + "/Ford Racing Off Road/ctrllers.dat": tags: - config when: - os: windows - /Off Road/autosave: + "/Off Road/autosave": tags: - save when: - os: windows - /Off Road/ctrllers.dat: + "/Off Road/ctrllers.dat": tags: - config when: @@ -206146,7 +206724,7 @@ Ford Racing 3: installDir: Ford Racing Off Road: {} launch: - /FordORR.exe: + "/FordORR.exe": - when: - store: steam registry: @@ -206157,12 +206735,12 @@ Ford Racing 3: id: 315740 Ford Street Racing: files: - /Ford Street Racing/autosave: + "/Ford Street Racing/autosave": tags: - save when: - os: windows - /Ford Street Racing/ctrllers.dat: + "/Ford Street Racing/ctrllers.dat": tags: - config when: @@ -206170,7 +206748,7 @@ Ford Street Racing: installDir: Ford Street Racing: {} launch: - /fsr.exe: + "/fsr.exe": - when: - store: steam registry: @@ -206183,7 +206761,7 @@ Forebearers: installDir: Forebearers: {} launch: - /Forebearers.exe: + "/Forebearers.exe": - when: - bit: 64 os: windows @@ -206194,7 +206772,7 @@ Foreclosed: installDir: FORECLOSED: {} launch: - /Foreclosed.exe: + "/Foreclosed.exe": - when: - bit: 64 os: windows @@ -206203,12 +206781,12 @@ Foreclosed: id: 1308880 Foregone: files: - /AppData/LocalLow/Big Blue Bubble Inc/Foregone/game: + "/AppData/LocalLow/Big Blue Bubble Inc/Foregone/game": tags: - save when: - os: windows - /AppData/LocalLow/Big Blue Bubble Inc/Foregone/settings: + "/AppData/LocalLow/Big Blue Bubble Inc/Foregone/settings": tags: - config when: @@ -206218,7 +206796,7 @@ Foregone: installDir: Foregone: {} launch: - /Foregone.exe: + "/Foregone.exe": - when: - bit: 64 os: windows @@ -206233,7 +206811,7 @@ Foreign: installDir: Foreign: {} launch: - /Foreign.exe: + "/Foreign.exe": - when: - os: windows store: steam @@ -206243,15 +206821,15 @@ Foreign Frugglers: installDir: Foreign Frugglers: {} launch: - /Foreign Frugglers.exe: + "/Foreign Frugglers.exe": - when: - os: windows store: steam steam: id: 1071920 -'Foreign Legion: Buckets of Blood': +"Foreign Legion: Buckets of Blood": files: - /userdata//205550: + "/userdata//205550": tags: - save when: @@ -206260,11 +206838,11 @@ Foreign Frugglers: installDir: Foreign Legion (Buckets of Blood): {} launch: - /Foreign Legion.app: + "/Foreign Legion.app": - when: - os: mac store: steam - /Foreign Legion.exe: + "/Foreign Legion.exe": - when: - os: windows store: steam @@ -206274,9 +206852,9 @@ Foreign Frugglers: - config steam: id: 36000 -'Foreign Legion: Multi Massacre': +"Foreign Legion: Multi Massacre": files: - /userdata//205550: + "/userdata//205550": tags: - save when: @@ -206285,11 +206863,11 @@ Foreign Frugglers: installDir: foreign legion multi massacre: {} launch: - /FL_MM.app: + "/FL_MM.app": - when: - os: mac store: steam - /FL_MM.exe: + "/FL_MM.exe": - when: - os: windows store: steam @@ -206301,7 +206879,7 @@ Foreign Frugglers: id: 205550 Forep Man: files: - /Stencyl/Forep Man: + "/Stencyl/Forep Man": tags: - save when: @@ -206309,7 +206887,7 @@ Forep Man: installDir: Forep Man: {} launch: - /Forep Man.exe: + "/Forep Man.exe": - when: - os: windows store: steam @@ -206319,7 +206897,7 @@ Foresight: installDir: Foresight: {} launch: - /Foresight.exe: + "/Foresight.exe": - when: - store: steam steam: @@ -206328,12 +206906,12 @@ Foreskin Fury: installDir: ForeskinFury: {} launch: - /ForeskinFury.exe: + "/ForeskinFury.exe": - when: - bit: 64 os: windows store: steam - /ForeskinFury.sh: + "/ForeskinFury.sh": - when: - bit: 64 os: linux @@ -206344,7 +206922,7 @@ Forest Escape: installDir: Forest Escape: {} launch: - /Forest Escape.exe: + "/Forest Escape.exe": - when: - store: steam steam: @@ -206353,7 +206931,7 @@ Forest Fortress: installDir: Forest Fortress: {} launch: - /Forest Fortress.exe: + "/Forest Fortress.exe": - when: - os: windows store: steam @@ -206363,11 +206941,11 @@ Forest Guardian: installDir: Forest Guardian: {} launch: - /newproject.app/Contents/MacOS/nwjs: + "/newproject.app/Contents/MacOS/nwjs": - when: - os: mac store: steam - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -206377,7 +206955,7 @@ Forest Harvester Tractor 3D: installDir: Forest Harvester Tractor 3D: {} launch: - /Forest Harvester Simulator.app/Contents/MacOS/Forest Harvester Simulator: + "/Forest Harvester Simulator.app/Contents/MacOS/Forest Harvester Simulator": - when: - os: mac store: steam @@ -206387,18 +206965,18 @@ Forest Home: installDir: Forest Home: {} launch: - /Forest Home.exe: + "/Forest Home.exe": - when: - bit: 64 os: windows store: steam steam: id: 1145970 -'Forest Legends: The Call of Love': +"Forest Legends: The Call of Love": installDir: ForestLegends: {} launch: - /ForestLegends.exe: + "/ForestLegends.exe": - when: - os: windows store: steam @@ -206408,7 +206986,7 @@ Forest Mage: installDir: Forest Mage: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -206418,11 +206996,11 @@ Forest Plague: installDir: Forest Plague: {} launch: - /Forest Plague.app/Contents/MacOS/Forest Plague: + "/Forest Plague.app/Contents/MacOS/Forest Plague": - when: - os: mac store: steam - /Forest Plague.exe: + "/Forest Plague.exe": - when: - os: windows store: steam @@ -206432,11 +207010,11 @@ Forest Rabbit: installDir: sdk: {} launch: - /Forest Rabbit.app: + "/Forest Rabbit.app": - when: - os: mac store: steam - /Forest Rabbit.exe: + "/Forest Rabbit.exe": - when: - os: windows store: steam @@ -206449,7 +207027,7 @@ Forest Warrior: installDir: Forest Warrior: {} launch: - /forest_warrior.exe: + "/forest_warrior.exe": - when: - os: windows store: steam @@ -206459,7 +207037,7 @@ Forest Woodman: installDir: ForestWoodman: {} launch: - /WindowsNoEditor/ForestWoodman.exe: + "/WindowsNoEditor/ForestWoodman.exe": - when: - bit: 64 os: windows @@ -206470,7 +207048,7 @@ Forest of Evil: installDir: Forest of Evil: {} launch: - /Forest of Evil.exe: + "/Forest of Evil.exe": - when: - os: windows store: steam @@ -206480,7 +207058,7 @@ Forest spiders: installDir: Forest spiders: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -206490,25 +207068,25 @@ Forestation: installDir: Forestation: {} launch: - /Forestation.app/Contents/MacOS/Forestation: + "/Forestation.app/Contents/MacOS/Forestation": - when: - os: mac store: steam - /Forestation.exe: + "/Forestation.exe": - when: - os: windows store: steam steam: id: 752300 -'Forestation: Circles Of Nature': +"Forestation: Circles Of Nature": installDir: Forestation Circles Of Nature: {} launch: - /Forestation Circle of Nature.app/Contents/MacOS/Forestation Circle of Nature: + "/Forestation Circle of Nature.app/Contents/MacOS/Forestation Circle of Nature": - when: - os: mac store: steam - /Forestation Circle of Nature.exe: + "/Forestation Circle of Nature.exe": - when: - os: windows store: steam @@ -206523,7 +207101,7 @@ Forestry 2017 - The Simulation: installDir: Forestry 2017 - The Simulation: {} launch: - /forestry.exe: + "/forestry.exe": - when: - os: windows store: steam @@ -206533,7 +207111,7 @@ Forests of Augusta: installDir: Forests of Augusta: {} launch: - /ForestsOfAugusta.exe: + "/ForestsOfAugusta.exe": - when: - os: windows store: steam @@ -206541,7 +207119,7 @@ Forests of Augusta: id: 846330 Foretales: files: - /AppData/LocalLow/Alkemi/Foretales: + "/AppData/LocalLow/Alkemi/Foretales": tags: - config when: @@ -206555,7 +207133,7 @@ Foretales: installDir: Foretales: {} launch: - /Foretales.exe: + "/Foretales.exe": - when: - os: windows store: steam @@ -206565,53 +207143,53 @@ Forever Home: installDir: Forever Home: {} launch: - /Forever Home.app/Contents/MacOS/startwine: + "/Forever Home.app/Contents/MacOS/startwine": - when: - os: mac store: steam - /Game.exe: + "/Game.exe": - when: - os: windows store: steam steam: id: 718200 -'Forever Lost: Episode 1': +"Forever Lost: Episode 1": installDir: Forever Lost Episode 1: {} launch: - /Forever Lost 1.app/Contents/MacOS/Forever Lost 1: + "/Forever Lost 1.app/Contents/MacOS/Forever Lost 1": - when: - os: mac store: steam - /Forever Lost 1.exe: + "/Forever Lost 1.exe": - when: - os: windows store: steam steam: id: 448450 -'Forever Lost: Episode 2': +"Forever Lost: Episode 2": installDir: Forever Lost Episode 2: {} launch: - /Forever Lost 2.app/Contents/MacOS/Forever Lost 2: + "/Forever Lost 2.app/Contents/MacOS/Forever Lost 2": - when: - os: mac store: steam - /Forever Lost 2.exe: + "/Forever Lost 2.exe": - when: - os: windows store: steam steam: id: 1025320 -'Forever Lost: Episode 3': +"Forever Lost: Episode 3": installDir: Forever Lost Episode 3: {} launch: - /Forever Lost 3.app/Contents/MacOS/Forever Lost 3: + "/Forever Lost 3.app/Contents/MacOS/Forever Lost 3": - when: - os: mac store: steam - /Forever Lost 3.exe: + "/Forever Lost 3.exe": - when: - os: windows store: steam @@ -206619,12 +207197,12 @@ Forever Home: id: 1025450 Forever Skies: files: - /ProjectZeppelin/Saved/Config/WindowsNoEditor: + "/ProjectZeppelin/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /ProjectZeppelin/Saved/SaveGames: + "/ProjectZeppelin/Saved/SaveGames": tags: - save when: @@ -206637,11 +207215,11 @@ Forever Space: installDir: Forever Space: {} launch: - /ForeverSpace.app: + "/ForeverSpace.app": - when: - os: mac store: steam - /ForeverSpace.exe: + "/ForeverSpace.exe": - when: - os: windows store: steam @@ -206651,21 +207229,24 @@ Foreveracers: installDir: Foreveracers: {} launch: - /fr.app: + "/fr.app": - when: - os: mac store: steam - /fr.exe: + "/fr.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam - /fr.x86: + "/fr.x86": - when: - bit: 32 os: linux store: steam - /fr.x86_64: + "/fr.x86_64": - when: - bit: 64 os: linux @@ -206674,7 +207255,7 @@ Foreveracers: id: 548450 Forewarned: files: - /AppData/LocalLow/Dreambyte Games/FOREWARNED: + "/AppData/LocalLow/Dreambyte Games/FOREWARNED": tags: - save when: @@ -206682,7 +207263,7 @@ Forewarned: installDir: FOREWARNED: {} launch: - /FOREWARNED.exe: + "/FOREWARNED.exe": - when: - bit: 64 os: windows @@ -206693,17 +207274,17 @@ Forex Demo Accelerator: installDir: Forex Demo Accelerator: {} launch: - /Trading_Game.exe: + "/Trading_Game.exe": - when: - os: windows store: steam steam: id: 1129080 -'Forex Trading Master: Simulator': +"Forex Trading Master: Simulator": installDir: Forex Trading Master Simulator: {} launch: - /SimulationTrade.exe: + "/SimulationTrade.exe": - when: - bit: 64 os: windows @@ -206714,7 +207295,7 @@ Forge: installDir: Forge: {} launch: - /Binaries/Win32/ForgeGame.exe: + "/Binaries/Win32/ForgeGame.exe": - arguments: ForgeMenu TERMINALIP=account.playforgewar.com when: - os: windows @@ -206725,16 +207306,19 @@ Forge Quest: installDir: ForgeQuest: {} launch: - /Forge Quest Rpg.app: + "/Forge Quest Rpg.app": - when: - os: mac store: steam - /Forge Quest.exe: + "/Forge Quest.exe": - when: - os: windows store: steam - /GameClient: + "/GameClient": - when: + - bit: 32 + os: linux + store: steam - bit: 64 os: linux store: steam @@ -206744,26 +207328,29 @@ Forge and Fight: installDir: Forge and Fight: {} launch: - /Forge and Fight.app/Contents/MacOS/Forge and Fight: + "/Forge and Fight.app/Contents/MacOS/Forge and Fight": - when: - os: mac store: steam - /Forge and Fight.exe: + "/Forge and Fight.exe": - when: - bit: 32 os: windows store: steam + - bit: 64 + os: windows + store: steam steam: id: 1066810 Forge of Gods (RPG): installDir: Forge of Gods (RPG): {} launch: - /fog.exe: + "/fog.exe": - when: - os: windows store: steam - /fog.x86: + "/fog.x86": - when: - os: linux store: steam @@ -206773,15 +207360,15 @@ Forged Adventure: installDir: Forged Adventure: {} launch: - /Forged Adventure.app: + "/Forged Adventure.app": - when: - os: mac store: steam - /Forged Adventure.exe: + "/Forged Adventure.exe": - when: - os: windows store: steam - /RunWithHardwareRendering.sh: + "/RunWithHardwareRendering.sh": - when: - os: linux store: steam @@ -206791,7 +207378,7 @@ Forged Battalion: installDir: ForgedBattalion: {} launch: - /ClientLauncherG.exe: + "/ClientLauncherG.exe": - arguments: DUMP_FULL when: - store: steam @@ -206801,20 +207388,20 @@ Forged of Blood: installDir: Forged of Blood: {} launch: - /Kingmaker.exe: + "/Kingmaker.exe": - when: - os: windows store: steam steam: id: 617640 -'Forget Me Not: My Organic Garden': +"Forget Me Not: My Organic Garden": files: - /mog_Data/*.sv: + "/mog_Data/*.sv": tags: - save when: - os: windows - /mog_Data/config.txt: + "/mog_Data/config.txt": tags: - config when: @@ -206822,11 +207409,11 @@ Forged of Blood: installDir: Forget Me Not My Organic Garden: {} launch: - /mog.app: + "/mog.app": - when: - os: mac store: steam - /mog.exe: + "/mog.exe": - when: - os: windows store: steam @@ -206836,7 +207423,7 @@ Forgetful Dictator: installDir: Forgetful Dictator: {} launch: - /ForgetfulDictator.exe: + "/ForgetfulDictator.exe": - when: - os: windows store: steam @@ -206844,12 +207431,12 @@ Forgetful Dictator: id: 1087810 Forgive Me Father: files: - /FMF/Saved/Config/WindowsNoEditor: + "/FMF/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /FMF/Saved/SaveGames: + "/FMF/Saved/SaveGames": tags: - save when: @@ -206859,7 +207446,7 @@ Forgive Me Father: installDir: Forgive me Father: {} launch: - /FMF.exe: + "/FMF.exe": - when: - bit: 64 os: windows @@ -206868,12 +207455,12 @@ Forgive Me Father: id: 1590910 Forgive Me Father 2: files: - /FMF2/Saved/Config/WindowsNoEditor: + "/FMF2/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /FMF2/Saved/SaveGames: + "/FMF2/Saved/SaveGames": tags: - save when: @@ -206886,7 +207473,7 @@ Forgive Me Father 2: installDir: Forgive Me Father 2: {} launch: - /FMF2.exe: + "/FMF2.exe": - when: - os: windows store: steam @@ -206896,15 +207483,15 @@ Forgiveness: installDir: Forgiveness: {} launch: - /Forgiveness.app: + "/Forgiveness.app": - when: - os: mac store: steam - /Forgiveness.exe: + "/Forgiveness.exe": - when: - os: windows store: steam - /Forgiveness.x86_64: + "/Forgiveness.x86_64": - when: - os: linux store: steam @@ -206917,7 +207504,7 @@ Forgotten: installDir: Forgotten: {} launch: - /Forgotten.exe: + "/Forgotten.exe": - when: - os: windows store: steam @@ -206930,26 +207517,26 @@ Forgotten Ball: installDir: Forgotten Ball: {} launch: - /Contents/MacOS/ForgottenBallMac: + "/Contents/MacOS/ForgottenBallMac": - when: - os: mac store: steam - /ForgottenBall_Linuxx64.x86_64: + "/ForgottenBall_Linuxx64.x86_64": - when: - bit: 64 os: linux store: steam - /ForgottenBall_Linuxx86.x86: + "/ForgottenBall_Linuxx86.x86": - when: - bit: 32 os: linux store: steam - /ForgottenBall_Windowsx64.exe: + "/ForgottenBall_Windowsx64.exe": - when: - bit: 64 os: windows store: steam - /ForgottenBall_Windowsx86.exe: + "/ForgottenBall_Windowsx86.exe": - when: - bit: 32 os: windows @@ -206965,7 +207552,7 @@ Forgotten Faces: installDir: Forgotten Faces: {} launch: - /Forgotten Faces.exe: + "/Forgotten Faces.exe": - when: - os: windows store: steam @@ -206977,21 +207564,24 @@ Forgotten Fields: installDir: Forgotten Fields: {} launch: - /Forgotten Fields.app/Contents/MacOS/Forgotten Fields: + "/Forgotten Fields.app/Contents/MacOS/Forgotten Fields": - when: - os: mac store: steam - /Forgotten Fields.exe: + "/Forgotten Fields.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam - /Forgotten Fields.x86: + "/Forgotten Fields.x86": - when: - bit: 32 os: linux store: steam - /Forgotten Fields.x86_64: + "/Forgotten Fields.x86_64": - when: - bit: 64 os: linux @@ -207008,11 +207598,11 @@ Forgotten Hill Disillusion: installDir: Forgotten Hill Disillusion: {} launch: - /Forgotten Hill Disillusion.app: + "/Forgotten Hill Disillusion.app": - when: - os: mac store: steam - /Forgotten Hill Disillusion.exe: + "/Forgotten Hill Disillusion.exe": - when: - os: windows store: steam @@ -207022,11 +207612,11 @@ Forgotten Hill Mementoes: installDir: Forgotten Hill Mementoes: {} launch: - /FHMementoes.app: + "/FHMementoes.app": - when: - os: mac store: steam - /Forgotten Hill Mementoes.exe: + "/Forgotten Hill Mementoes.exe": - when: - os: windows store: steam @@ -207036,7 +207626,7 @@ Forgotten Land: installDir: ForgottenLand: {} launch: - /FL/Dreaming.exe: + "/FL/Dreaming.exe": - when: - store: steam steam: @@ -207045,7 +207635,7 @@ Forgotten Light: installDir: Forgotten Light: {} launch: - /Forgotten Light.exe: + "/Forgotten Light.exe": - when: - bit: 64 os: windows @@ -207056,20 +207646,23 @@ Forgotten Lore: installDir: Forgotten Lore: {} launch: - /ForgottenLore.app: + "/ForgottenLore.app": - when: - os: mac store: steam - /ForgottenLore.exe: + "/ForgottenLore.exe": - when: - os: windows store: steam - /ForgottenLore.x86: + - bit: 32 + os: windows + store: steam + "/ForgottenLore.x86": - when: - bit: 32 os: linux store: steam - /ForgottenLore.x86_64: + "/ForgottenLore.x86_64": - when: - bit: 64 os: linux @@ -207080,20 +207673,20 @@ Forgotten Myths CCG: installDir: Forgotten Myths CCG: {} launch: - /Forgotten Myths CCG.app/Contents/MacOS/Forgotten Myths CCG: + "/Forgotten Myths CCG.app/Contents/MacOS/Forgotten Myths CCG": - when: - os: mac store: steam - /Forgotten Myths CCG.exe: + "/Forgotten Myths CCG.exe": - when: - os: windows store: steam - /Forgotten Myths CCG.x86: + "/Forgotten Myths CCG.x86": - when: - bit: 32 os: linux store: steam - /Forgotten Myths CCG.x86_64: + "/Forgotten Myths CCG.x86_64": - when: - bit: 64 os: linux @@ -207104,35 +207697,35 @@ Forgotten Passages: installDir: Forgotten Passages: {} launch: - /Forgotten_Passages.exe: + "/Forgotten_Passages.exe": - when: - os: windows store: steam steam: id: 1120940 -'Forgotten Places: Lost Circus': +"Forgotten Places: Lost Circus": installDir: Forgotten Places Lost Circus: {} launch: - /LostCircus.app/Contents/MacOS/Lost Circus: + "/LostCircus.app/Contents/MacOS/Lost Circus": - when: - os: mac store: steam - /game.exe: + "/game.exe": - when: - os: windows store: steam steam: id: 818440 -'Forgotten Places: Regained Castle': +"Forgotten Places: Regained Castle": installDir: Forgotten Places Regained Castle: {} launch: - /RegainedCastle.app/Contents/MacOS/Regained Castle: + "/RegainedCastle.app/Contents/MacOS/Regained Castle": - when: - os: mac store: steam - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -207142,37 +207735,37 @@ Forgotten Realm RPG: installDir: Forgotten Realm RPG: {} launch: - /Game.app/Contents/MacOS/nwjs: + "/Game.app/Contents/MacOS/nwjs": - when: - os: mac store: steam - /nw: + "/nw": - when: - os: linux store: steam - /nw.exe: + "/nw.exe": - when: - os: windows store: steam steam: id: 849970 -'Forgotten Realms: Demon Stone': +"Forgotten Realms: Demon Stone": files: - /*.sav: + "/*.sav": tags: - save when: - os: windows - /IC020004.cfg: + "/IC020004.cfg": tags: - config when: - os: windows gog: id: 1207658929 -'Forgotten Realms: Unlimited Adventures': +"Forgotten Realms: Unlimited Adventures": files: - /*.DSN/SAVE: + "/*.DSN/SAVE": tags: - save when: @@ -207184,27 +207777,27 @@ Forgotten Realm RPG: - 1436871302 steam: id: 1904526 -'Forgotten Sound 1: Revelation': +"Forgotten Sound 1: Revelation": installDir: Forgotten Sound 1 - Revelation: {} launch: - /Forgotten Sound 1.exe: + "/Forgotten Sound 1.exe": - when: - store: steam steam: id: 779840 -'Forgotten Sound 2: Destiny': +"Forgotten Sound 2: Destiny": installDir: Forgotten Sound 2 Destiny: {} launch: - /ForgottenSound2.exe: + "/ForgottenSound2.exe": - when: - store: steam steam: id: 783960 -'Forgotten Tales: Day of the Dead': +"Forgotten Tales: Day of the Dead": files: - /Green Sauce Games/Forgotten Tales - Day of the Dead: + "/Green Sauce Games/Forgotten Tales - Day of the Dead": tags: - save when: @@ -207212,15 +207805,15 @@ Forgotten Realm RPG: installDir: Forgotten Tales Day of the Dead: {} launch: - /Forgotten Tales - Day of the Dead.app: + "/Forgotten Tales - Day of the Dead.app": - when: - os: mac store: steam - /Forgotten Tales - Day of the Dead.exe: + "/Forgotten Tales - Day of the Dead.exe": - when: - os: windows store: steam - /Forgotten Tales - Day of the Dead.x86_64: + "/Forgotten Tales - Day of the Dead.x86_64": - when: - os: linux store: steam @@ -207230,7 +207823,7 @@ Forgotten World: installDir: ForgottenWorld: {} launch: - /Forgotten World © .exe: + "/Forgotten World © .exe": - when: - os: windows store: steam @@ -207240,25 +207833,25 @@ Forgotten in Hell: installDir: FORGOTTEN IN HELL: {} launch: - /F.I.HELL.exe: + "/F.I.HELL.exe": - when: - os: windows store: steam steam: id: 1065830 -'Forgotten, Not Lost - A Kinetic Novel': +"Forgotten, Not Lost - A Kinetic Novel": files: - /renpy/config.py: + "/renpy/config.py": tags: - config when: - os: windows - /.renpy/Forgotten Not Lost-1455509813: + "/.renpy/Forgotten Not Lost-1455509813": tags: - save when: - os: linux - /RenPy/Forgotten Not Lost-1455509813: + "/RenPy/Forgotten Not Lost-1455509813": tags: - save when: @@ -207266,15 +207859,15 @@ Forgotten in Hell: installDir: Forgotten Not Lost: {} launch: - /Forgotten Not Lost.app: + "/Forgotten Not Lost.app": - when: - os: mac store: steam - /Forgotten Not Lost.exe: + "/Forgotten Not Lost.exe": - when: - os: windows store: steam - /Forgotten Not Lost.sh: + "/Forgotten Not Lost.sh": - when: - os: linux store: steam @@ -207282,17 +207875,18 @@ Forgotten in Hell: id: 457490 Forgotton Anne: files: - /AppData/Local/GOG.com/Galaxy/Applications/51445449926814491/Storage/Shared/Files/ForgottonAnne-Save.json: + "/AppData/Local/GOG.com/Galaxy/Applications/51445449926814491/Storage/Shared/Files/ForgottonAnne-Save.json": tags: - save when: - - store: gog - /Library/Preferences/com.throughlinegames.forgottonanne.plist: + - os: windows + store: gog + "/Library/Preferences/com.throughlinegames.forgottonanne.plist": tags: - config when: - os: mac - /userdata//542050/remote/forgottonanne-save.json: + "/userdata//542050/remote/forgottonanne-save.json": tags: - save when: @@ -207302,11 +207896,11 @@ Forgotton Anne: installDir: Forgotton Anne: {} launch: - /ForgottonAnne.app/Contents/MacOS/ForgottonAnne: + "/ForgottonAnne.app/Contents/MacOS/ForgottonAnne": - when: - os: mac store: steam - /ForgottonAnne.exe: + "/ForgottonAnne.exe": - when: - os: windows store: steam @@ -207320,26 +207914,26 @@ Fork Knights: installDir: Fork Knights: {} launch: - /ForkKnights.exe: + "/ForkKnights.exe": - when: - os: windows store: steam steam: id: 1097330 -Fork Parker's Holiday Profit Hike: +"Fork Parker's Holiday Profit Hike": installDir: - Fork Parker's Holiday Profit Hike: {} + "Fork Parker's Holiday Profit Hike": {} launch: - /ForkParker.app: + "/ForkParker.app": - when: - os: mac store: steam - /ForkParker.exe: + "/ForkParker.exe": - when: - os: windows store: steam registry: - HKEY_CURRENT_USER/Software/Dodge Roll/Fork Parker's Holiday Profit Hike: + "HKEY_CURRENT_USER/Software/Dodge Roll/Fork Parker's Holiday Profit Hike": tags: - save steam: @@ -207348,7 +207942,7 @@ Fork Truck Challenge: installDir: Forktruck Challenge: {} launch: - /Forktruck Challenge.exe: + "/Forktruck Challenge.exe": - when: - os: windows store: steam @@ -207358,18 +207952,18 @@ Forklift Simulator 2019: installDir: Forklift Simulator 2019: {} launch: - /FL_Engine/FL-Simulator.exe: - - arguments: ../FL_Content/FLS-CON-004/startup.json -vrmode None + "/FL_Engine/FL-Simulator.exe": + - arguments: "../FL_Content/FLS-CON-004/startup.json -vrmode None" when: - store: steam - workingDir: /FL_Engine + workingDir: "/FL_Engine" steam: id: 939450 -'Forklift: Simulator': +"Forklift: Simulator": installDir: Forklift: {} launch: - /Forklift.exe: + "/Forklift.exe": - when: - store: steam steam: @@ -207383,7 +207977,7 @@ FormFish: installDir: FormFish: {} launch: - /FormFish.exe: + "/FormFish.exe": - when: - bit: 64 os: windows @@ -207394,11 +207988,11 @@ Forma.8: installDir: forma8: {} launch: - /forma8.app/Contents/MacOS/forma8: + "/forma8.app/Contents/MacOS/forma8": - when: - os: mac store: steam - /forma8.exe: + "/forma8.exe": - when: - bit: 32 os: windows @@ -207409,7 +208003,7 @@ Formata: installDir: Formata: {} launch: - /Formata.exe: + "/Formata.exe": - when: - bit: 64 os: windows @@ -207423,7 +208017,7 @@ Formicide: installDir: Formicide: {} launch: - /Formicide.exe: + "/Formicide.exe": - when: - os: windows store: steam @@ -207433,7 +208027,7 @@ Formless Adventure: installDir: Formless Adventure: {} launch: - /Formless_Adventure.exe: + "/Formless_Adventure.exe": - when: - os: windows store: steam @@ -207443,26 +208037,26 @@ Formula Car Racing Simulator: installDir: Formula Car Racing Simulator: {} launch: - /FormulaCarRacingSimulator.app/Contents/MacOS/FormulaCarRacingSimulator: + "/FormulaCarRacingSimulator.app/Contents/MacOS/FormulaCarRacingSimulator": - when: - os: mac store: steam - /FormulaCarRacingSimulator.x86: + "/FormulaCarRacingSimulator.x86": - when: - bit: 32 os: linux store: steam - /FormulaCarRacingSimulator.x86_64: + "/FormulaCarRacingSimulator.x86_64": - when: - bit: 64 os: linux store: steam - /Windows_x86/FormulaCarRacingSimulator.exe: + "/Windows_x86/FormulaCarRacingSimulator.exe": - when: - bit: 32 os: windows store: steam - /Windows_x86_64/FormulaCarRacingSimulator.exe: + "/Windows_x86_64/FormulaCarRacingSimulator.exe": - when: - bit: 64 os: windows @@ -207474,11 +208068,11 @@ Formula E powered by Virtually Live: Formula E powered by Virtually Live: {} steam: id: 585000 -'Formula E: Grand Prix': +"Formula E: Grand Prix": installDir: Formula E Grand Prix: {} launch: - /Formula E Grand Prix.exe: + "/Formula E Grand Prix.exe": - when: - bit: 64 os: windows @@ -207487,49 +208081,49 @@ Formula E powered by Virtually Live: id: 683490 Formula One 99: files: - /chmpsave.dat: + "/chmpsave.dat": tags: - save when: - os: windows - /config116.dsv: + "/config116.dsv": tags: - config when: - os: windows Formula Truck 2013: files: - /Config.ini: + "/Config.ini": tags: - config when: - os: windows - /ReplayFridge/REPLAYS: + "/ReplayFridge/REPLAYS": tags: - save when: - os: windows - /UserData/: + "/UserData/": tags: - save when: - os: windows - /UserData/Controller: + "/UserData/Controller": tags: - config when: - os: windows - /UserData/KnownRFMs.ini: + "/UserData/KnownRFMs.ini": tags: - config when: - os: windows - /UserData/bans.txt: + "/UserData/bans.txt": tags: - config when: - os: windows - /UserData/vehicledata.spt: + "/UserData/vehicledata.spt": tags: - save when: @@ -207537,7 +208131,7 @@ Formula Truck 2013: installDir: Formula Truck 2013: {} launch: - /FTruck.exe: + "/FTruck.exe": - when: - store: steam steam: @@ -207546,7 +208140,7 @@ Formula X: installDir: Formula X: {} launch: - /FormulaXv2.exe: + "/FormulaXv2.exe": - when: - os: windows store: steam @@ -207556,11 +208150,11 @@ Formula XD: installDir: Formula XD: {} launch: - /Formula XD.exe: + "/Formula XD.exe": - when: - os: windows store: steam - /Formula_XD.app/Contents/MacOS/Formula_XD: + "/Formula_XD.app/Contents/MacOS/Formula_XD": - when: - os: mac store: steam @@ -207570,7 +208164,7 @@ FormulaNext: installDir: FormulaNext: {} launch: - /FormulaNext.exe: + "/FormulaNext.exe": - when: - os: windows store: steam @@ -207583,7 +208177,7 @@ Forsaken Fortress Strategy: installDir: Forsaken Fortress Strategy: {} launch: - /Forsaken Fortress Strategy.exe: + "/Forsaken Fortress Strategy.exe": - when: - store: steam steam: @@ -207592,7 +208186,7 @@ Forsaken Generation: installDir: Forsaken Generation: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -207602,7 +208196,7 @@ Forsaken Isle: installDir: Forsaken Isle: {} launch: - /ForsakenIsle.exe: + "/ForsakenIsle.exe": - when: - os: windows store: steam @@ -207613,22 +208207,22 @@ Forsaken Realm: id: 1044700 Forsaken Remastered: files: - /Nightdive Studios/Forsaken EX: + "/Nightdive Studios/Forsaken EX": tags: - config when: - os: windows - /Nightdive Studios/Forsaken EX/saves: + "/Nightdive Studios/Forsaken EX/saves": tags: - save when: - os: windows - /Nightdive Studios/Forsaken EX: + "/Nightdive Studios/Forsaken EX": tags: - config when: - os: linux - /Nightdive Studios/Forsaken EX/saves: + "/Nightdive Studios/Forsaken EX/saves": tags: - save when: @@ -207638,16 +208232,16 @@ Forsaken Remastered: installDir: Forsaken Remastered: {} launch: - /Forsaken EX.app: + "/Forsaken EX.app": - when: - os: mac store: steam - /ForsakenEx: + "/ForsakenEx": - when: - bit: 64 os: linux store: steam - /selkis_x64.exe: + "/selkis_x64.exe": - when: - bit: 64 os: windows @@ -207661,38 +208255,38 @@ Forsaken World: installDir: Forsaken World: {} launch: - /patcher.exe: - - arguments: 'steam:1' + "/patcher.exe": + - arguments: "steam:1" when: - store: steam - workingDir: /update + workingDir: "/update" steam: id: 36620 -'Forsekir:First Invasion': +"Forsekir:First Invasion": steam: id: 1122450 Forspoken: files: - /FORSPOKEN/Steam/: + "/FORSPOKEN/Steam/": tags: - save when: - os: windows - /FORSPOKEN/Steam//savestorage: + "/FORSPOKEN/Steam//savestorage": tags: - config when: - os: windows id: steamExtra: - - 1819222 - 1818430 + - 1819222 - 1819223 - 1819224 installDir: FORSPOKEN: {} launch: - /FORSPOKEN.exe: + "/FORSPOKEN.exe": - when: - bit: 64 os: windows @@ -207703,7 +208297,7 @@ Fort: installDir: Fort: {} launch: - /fort.exe: + "/fort.exe": - when: - store: steam steam: @@ -207717,16 +208311,16 @@ Fort Boyard: installDir: Fort Boyard: {} launch: - /FB_6551_Mac_OSX_Release.app/Contents/MacOS/FB_6551_Mac_OSX_Release: + "/FB_6551_Mac_OSX_Release.app/Contents/MacOS/FB_6551_Mac_OSX_Release": - when: - os: mac store: steam - /FB_6551_Windows_Windowsx86_64_Release.exe: + "/FB_6551_Windows_Windowsx86_64_Release.exe": - when: - bit: 64 os: windows store: steam - /FB_6551_Windows_Windowsx86_Release.exe: + "/FB_6551_Windows_Windowsx86_Release.exe": - when: - bit: 32 os: windows @@ -207737,11 +208331,11 @@ Fort Defense: installDir: Fort Defense: {} launch: - /Fort Defense.app: + "/Fort Defense.app": - when: - os: mac store: steam - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -207749,7 +208343,7 @@ Fort Defense: id: 343930 Fort Meow: files: - /Fort Meow/Data: + "/Fort Meow/Data": tags: - config - save @@ -207758,7 +208352,7 @@ Fort Meow: installDir: Fort Meow: {} launch: - /FortMeow.exe: + "/FortMeow.exe": - when: - os: windows store: steam @@ -207766,12 +208360,12 @@ Fort Meow: id: 352070 Fort Solis: files: - /appdata/local/Sycamore/Saved/Config/Windows: + "/appdata/local/Sycamore/Saved/Config/Windows": tags: - config when: - os: windows - /appdata/local/Sycamore/Saved/SaveGames: + "/appdata/local/Sycamore/Saved/SaveGames": tags: - save when: @@ -207782,24 +208376,27 @@ Fort Solis: installDir: Fort Solis: {} launch: - /Sycamore/Binaries/Win64/fortsolis.exe: - - arguments: '-nolumenhrtonamd' + "/Sycamore/Binaries/Win64/fortsolis.exe": + - arguments: "-nolumenhrtonamd" when: - bit: 64 os: windows store: steam steam: id: 1931730 -'Fort Sumter: The Secession Crisis': +"Fort Sumter: The Secession Crisis": installDir: Fort Sumter: {} launch: - /FortSumter.app/Contents/MacOS/FortSumter: + "/FortSumter.app/Contents/MacOS/FortSumter": - when: - os: mac store: steam - /FortSumter.exe: + "/FortSumter.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam @@ -207807,7 +208404,7 @@ Fort Solis: id: 1041940 Fort Triumph: files: - /AppData/LocalLow/Cookie Byte Entertainment/Fort Triumph: + "/AppData/LocalLow/Cookie Byte Entertainment/Fort Triumph": tags: - save when: @@ -207817,20 +208414,20 @@ Fort Triumph: installDir: Fort Triumph: {} launch: - /Fort Triumph.app: + "/Fort Triumph.app": - when: - os: mac store: steam - /Fort Triumph.exe: + "/Fort Triumph.exe": - when: - os: windows store: steam - /Fort Triumph.x86: + "/Fort Triumph.x86": - when: - bit: 32 os: linux store: steam - /Fort Triumph.x86_64: + "/Fort Triumph.x86_64": - when: - bit: 64 os: linux @@ -207845,7 +208442,7 @@ Fort Zombie: installDir: Fort Zombie: {} launch: - /FortZombie.exe: + "/FortZombie.exe": - when: - os: windows store: steam @@ -207855,19 +208452,19 @@ FortOfTheNight: installDir: FortOfTheNight: {} launch: - /fortofthenight.exe: + "/fortofthenight.exe": - when: - store: steam steam: id: 888740 Fortified: files: - /Fortified/Saved/Config/WindowsNoEditor: + "/Fortified/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /Fortified/Saved/SaveGames: + "/Fortified/Saved/SaveGames": tags: - save when: @@ -207875,7 +208472,7 @@ Fortified: installDir: Fortified: {} launch: - /Fortified.exe: + "/Fortified.exe": - when: - bit: 64 os: windows @@ -207886,11 +208483,11 @@ Fortified Swiss: installDir: Fortified Swiss: {} launch: - /Fortified Swiss.exe: + "/Fortified Swiss.exe": - when: - os: windows store: steam - /OSXFOLDER/FortifiedSwiss.app/Contents/MacOS/FortifiedSwiss/FortifiedSwiss.app: + "/OSXFOLDER/FortifiedSwiss.app/Contents/MacOS/FortifiedSwiss/FortifiedSwiss.app": - when: - os: mac store: steam @@ -207900,7 +208497,7 @@ Fortify: installDir: Fortify: {} launch: - /Fortify.exe: + "/Fortify.exe": - when: - os: windows store: steam @@ -207910,7 +208507,7 @@ Fortissimo FA: installDir: Fortissimo FA: {} launch: - /fortissimo_fa.exe: + "/fortissimo_fa.exe": - when: - os: windows store: steam @@ -207920,14 +208517,14 @@ Fortissimo FA INTL Ver: installDir: Fortissimo FA INTL Ver: {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: id: 896030 Fortix: files: - /Fortix/gamedata.dat: + "/Fortix/gamedata.dat": tags: - config - save @@ -207936,11 +208533,11 @@ Fortix: installDir: Fortix: {} launch: - /Fortix: + "/Fortix": - when: - os: mac store: steam - /Fortix.exe: + "/Fortix.exe": - when: - os: windows store: steam @@ -207948,13 +208545,13 @@ Fortix: id: 45400 Fortix 2: files: - /.Fortix2: + "/.Fortix2": tags: - config - save when: - os: linux - /userdata//45450/remote/profiles.dat: + "/userdata//45450/remote/profiles.dat": tags: - config - save @@ -207963,15 +208560,15 @@ Fortix 2: installDir: Fortix 2: {} launch: - /Fortix2: + "/Fortix2": - when: - os: mac store: steam - /Fortix2.exe: + "/Fortix2.exe": - when: - os: windows store: steam - /fortix2: + "/fortix2": - when: - os: linux store: steam @@ -207979,19 +208576,19 @@ Fortix 2: id: 45450 Fortnite: files: - /FortniteGame/Saved/Config/WindowsClient: + "/FortniteGame/Saved/Config/WindowsClient": tags: - config when: - os: windows - /FortniteGame/Saved/SaveGames: + "/FortniteGame/Saved/SaveGames": tags: - save when: - os: windows Fortress Forever: files: - /FortressForever/cfg: + "/FortressForever/cfg": tags: - config when: @@ -207999,18 +208596,18 @@ Fortress Forever: installDir: Fortress Forever: {} launch: - /hl2.exe: - - arguments: '-game FortressForever -allowdebug -tickrate 66' + "/hl2.exe": + - arguments: "-game FortressForever -allowdebug -tickrate 66" when: - os: windows store: steam - /hl2.sh: - - arguments: '-game FortressForever -allowdebug -tickrate 66' + "/hl2.sh": + - arguments: "-game FortressForever -allowdebug -tickrate 66" when: - os: linux store: steam - /hl2_osx: - - arguments: '-game FortressForever -allowdebug -tickrate 66' + "/hl2_osx": + - arguments: "-game FortressForever -allowdebug -tickrate 66" when: - os: mac store: steam @@ -208020,29 +208617,29 @@ Fortress of Hell: installDir: Fortress of Hell: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: id: 644870 FortressCraft Evolved: files: - /.config/unity3d/ProjectorGames/FortressCraft: + "/.config/unity3d/ProjectorGames/FortressCraft": tags: - config when: - os: linux - /.config/unity3d/ProjectorGames/FortressCraft/Worlds: + "/.config/unity3d/ProjectorGames/FortressCraft/Worlds": tags: - save when: - os: linux - /AppData/LocalLow/ProjectorGames/FortressCraft/Worlds: + "/AppData/LocalLow/ProjectorGames/FortressCraft/Worlds": tags: - save when: - os: windows - /AppData/LocalLow/ProjectorGames/FortressCraft/settings.ini: + "/AppData/LocalLow/ProjectorGames/FortressCraft/settings.ini": tags: - config when: @@ -208050,23 +208647,23 @@ FortressCraft Evolved: installDir: FortressCraft: {} launch: - /32/fortresscraft.exe: + "/32/fortresscraft.exe": - when: - bit: 32 os: windows store: steam - workingDir: /32 - /64/FC_64.exe: + workingDir: "/32" + "/64/FC_64.exe": - when: - bit: 64 os: windows store: steam - workingDir: /64 - /FortressCraft.app: + workingDir: "/64" + "/FortressCraft.app": - when: - os: mac store: steam - /launchlinux: + "/launchlinux": - when: - os: linux store: steam @@ -208074,7 +208671,7 @@ FortressCraft Evolved: id: 254200 Forts: files: - /users//campaigns: + "/users//campaigns": tags: - config when: @@ -208082,7 +208679,7 @@ Forts: installDir: Forts: {} launch: - /Forts.exe: + "/Forts.exe": - when: - os: windows store: steam @@ -208092,15 +208689,15 @@ Fortune & Gloria: installDir: Fortune & Gloria: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam steam: id: 881060 -'Fortune Summoners: Secret of the Elemental Stone': +"Fortune Summoners: Secret of the Elemental Stone": files: - /user: + "/user": tags: - config - save @@ -208109,7 +208706,7 @@ Fortune & Gloria: installDir: Fortune Summoners: {} launch: - /sotes.exe: + "/sotes.exe": - when: - store: steam steam: @@ -208118,21 +208715,21 @@ Fortune Telling: installDir: FortuneTelling: {} launch: - /FortuneTelling.exe: + "/FortuneTelling.exe": - when: - bit: 64 os: windows store: steam steam: id: 1114140 -Fortune's Run: +"Fortune's Run": files: - /AppData/LocalLow/TeamFortune/FortunesRun: + "/AppData/LocalLow/TeamFortune/FortunesRun": tags: - save when: - os: windows - /AppData/LocalLow/TeamFortune/FortunesRun/user.prop: + "/AppData/LocalLow/TeamFortune/FortunesRun/user.prop": tags: - config when: @@ -208141,20 +208738,20 @@ Fortune's Run: id: 1573480744 steam: id: 1692240 -Fortune's Tavern - Remastered: +"Fortune's Tavern - Remastered": installDir: - Fortune's Tavern - Remastered: {} + "Fortune's Tavern - Remastered": {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: id: 691980 -Fortune's Tavern - The Fantasy Tavern Simulator!: +"Fortune's Tavern - The Fantasy Tavern Simulator!": installDir: - Fortune's Tavern - The Fantasy Tavern Simulator!: {} + "Fortune's Tavern - The Fantasy Tavern Simulator!": {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -208162,7 +208759,7 @@ Fortune's Tavern - The Fantasy Tavern Simulator!: id: 346270 Fortune-499: files: - /AppData/LocalLow/AP Thomson/Fortune-499/SaveData: + "/AppData/LocalLow/AP Thomson/Fortune-499/SaveData": tags: - save when: @@ -208170,11 +208767,11 @@ Fortune-499: installDir: Fortune-499: {} launch: - /Fortune-499.app: + "/Fortune-499.app": - when: - os: mac store: steam - /Fortune-499.exe: + "/Fortune-499.exe": - when: - os: windows store: steam @@ -208188,7 +208785,7 @@ Forward: installDir: FORWARD: {} launch: - /Forward.exe: + "/Forward.exe": - when: - os: windows store: steam @@ -208198,7 +208795,7 @@ Forward Line: installDir: Forward Line: {} launch: - /ForwardLine.exe: + "/ForwardLine.exe": - when: - os: windows store: steam @@ -208206,7 +208803,7 @@ Forward Line: id: 870260 Forward to the Sky: files: - /unity3d/AnimuGame/ForwardToTheSky: + "/unity3d/AnimuGame/ForwardToTheSky": tags: - config - save @@ -208215,15 +208812,15 @@ Forward to the Sky: installDir: Forward to the Sky: {} launch: - /ForwardToTheSky.app/Contents/MacOS/ForwardToTheSky: + "/ForwardToTheSky.app/Contents/MacOS/ForwardToTheSky": - when: - os: mac store: steam - /ForwardToTheSky.exe: + "/ForwardToTheSky.exe": - when: - os: windows store: steam - /ForwardToTheSky.x86: + "/ForwardToTheSky.x86": - when: - os: linux store: steam @@ -208234,15 +208831,15 @@ Forward to the Sky: - save steam: id: 333250 -'Forward: Escape the Fold': +"Forward: Escape the Fold": installDir: Forward Escape the Fold: {} launch: - /Forward.app/Contents/MacOS/Forward: + "/Forward.app/Contents/MacOS/Forward": - when: - os: mac store: steam - /Forward.exe: + "/Forward.exe": - when: - os: windows store: steam @@ -208250,30 +208847,30 @@ Forward to the Sky: id: 1766390 Forza Horizon 3: files: - /Packages/Microsoft.OpusPG_8wekyb3d8bbwe/SystemAppData/wgs: + "/Packages/Microsoft.OpusPG_8wekyb3d8bbwe/SystemAppData/wgs": tags: - save when: - os: windows - /Packages/Microsoft.OpusPG_8wekyb3d8bbwe/TempState/scratch/User_PCLocalStorageDirectory/ConnectedStorage/ForzaUserConfigSelections: + "/Packages/Microsoft.OpusPG_8wekyb3d8bbwe/TempState/scratch/User_PCLocalStorageDirectory/ConnectedStorage/ForzaUserConfigSelections": tags: - config when: - os: windows Forza Horizon 4: files: - /userdata//1293830/remote: + "/userdata//1293830/remote": tags: - save when: - store: steam - /Packages/Microsoft.SunriseBaseGame_8wekyb3d8bbwe/SystemAppData/wgs: + "/Packages/Microsoft.SunriseBaseGame_8wekyb3d8bbwe/SystemAppData/wgs": tags: - save when: - os: windows store: microsoft - /Packages/Microsoft.SunriseBaseGame_8wekyb3d8bbwe/TempState/scratch/User_PCLocalStorageDirectory/ConnectedStorage/ForzaUserConfigSelections/UserConfigSelections: + "/Packages/Microsoft.SunriseBaseGame_8wekyb3d8bbwe/TempState/scratch/User_PCLocalStorageDirectory/ConnectedStorage/ForzaUserConfigSelections/UserConfigSelections": tags: - config when: @@ -208285,23 +208882,24 @@ Forza Horizon 4: id: 1293830 Forza Horizon 5: files: - /userdata//1551360/remote/: + "/userdata//1551360/remote/": tags: - save when: - store: steam - /ForzaHorizon5/User_SteamLocalStorageDirectory/ConnectedStorage/ForzaUserConfigSelections/UserConfigSelections: + "/ForzaHorizon5/User_SteamLocalStorageDirectory/ConnectedStorage/ForzaUserConfigSelections/UserConfigSelections": tags: - config when: - - store: steam - /Packages/Microsoft.624F8B84B80_8wekyb3d8bbwe/LocalCache/Local/User_GamingLocalStorageDirectory/ConnectedStorage/ForzaUserConfigSelections/UserConfigSelections: + - os: windows + store: steam + "/Packages/Microsoft.624F8B84B80_8wekyb3d8bbwe/LocalCache/Local/User_GamingLocalStorageDirectory/ConnectedStorage/ForzaUserConfigSelections/UserConfigSelections": tags: - config when: - os: windows store: microsoft - /Packages/Microsoft.624F8B84B80_8wekyb3d8bbwe/SystemAppData/wgs: + "/Packages/Microsoft.624F8B84B80_8wekyb3d8bbwe/SystemAppData/wgs": tags: - save when: @@ -208310,7 +208908,7 @@ Forza Horizon 5: installDir: ForzaHorizon5: {} launch: - /ForzaHorizon5.exe: + "/ForzaHorizon5.exe": - when: - bit: 64 os: windows @@ -208319,12 +208917,13 @@ Forza Horizon 5: id: 1551360 Forza Motorsport: files: - /Microsoft.ForzaMotorsport/User_SteamLocalStorageDirectory/ConnectedStorage/ForzaUserConfigSelections/UserConfigSelections: + "/Microsoft.ForzaMotorsport/User_SteamLocalStorageDirectory/ConnectedStorage/ForzaUserConfigSelections/UserConfigSelections": tags: - config when: - - store: steam - /Packages/Microsoft.ForzaMotorsport_8wekyb3d8bbwe/LocalCache/Local/User_GamingLocalStorageDirectory/ConnectedStorage/ForzaUserConfigSelections/UserConfigSelections: + - os: windows + store: steam + "/Packages/Microsoft.ForzaMotorsport_8wekyb3d8bbwe/LocalCache/Local/User_GamingLocalStorageDirectory/ConnectedStorage/ForzaUserConfigSelections/UserConfigSelections": tags: - config when: @@ -208332,38 +208931,38 @@ Forza Motorsport: store: microsoft steam: id: 2440510 -'Forza Motorsport 6: Apex': +"Forza Motorsport 6: Apex": files: - /Packages/Microsoft.ApexPG_8wekyb3d8bbwe/AC/Temp/Turn10Temp.scratch/UserConfig.xml: + "/Packages/Microsoft.ApexPG_8wekyb3d8bbwe/AC/Temp/Turn10Temp.scratch/UserConfig.xml": tags: - config when: - os: windows - /Packages/Microsoft.ApexPG_8wekyb3d8bbwe/SystemAppData/wgs: + "/Packages/Microsoft.ApexPG_8wekyb3d8bbwe/SystemAppData/wgs": tags: - save when: - os: windows Forza Motorsport 7: files: - /Packages/Microsoft.ApolloBaseGame_8wekyb3d8bbwe/AC/Temp/Turn10Temp.scratch/User_PCMachineConnectedStorageDirectory/ConnectedStorage: + "/Packages/Microsoft.ApolloBaseGame_8wekyb3d8bbwe/AC/Temp/Turn10Temp.scratch/User_PCMachineConnectedStorageDirectory/ConnectedStorage": tags: - config when: - os: windows - /Packages/Microsoft.ApolloBaseGame_8wekyb3d8bbwe/SystemAppData/wgs: + "/Packages/Microsoft.ApolloBaseGame_8wekyb3d8bbwe/SystemAppData/wgs": tags: - save when: - os: windows Forza Street: files: - /Packages/Microsoft.331194F9F13CC_8wekyb3d8bbwe/LocalState/Gravity/Saved/Config/UWP/GameUserSettings.ini: + "/Packages/Microsoft.331194F9F13CC_8wekyb3d8bbwe/LocalState/Gravity/Saved/Config/UWP/GameUserSettings.ini": tags: - config when: - os: windows - /Packages/Microsoft.331194F9F13CC_8wekyb3d8bbwe/SystemAppData/wgs: + "/Packages/Microsoft.331194F9F13CC_8wekyb3d8bbwe/SystemAppData/wgs": tags: - save when: @@ -208372,7 +208971,7 @@ ForzeBreak: installDir: ForzeBreak: {} launch: - /ForzeBreak_steam_8.23.2018.exe: + "/ForzeBreak_steam_8.23.2018.exe": - when: - os: windows store: steam @@ -208382,7 +208981,7 @@ Fos: installDir: Fos: {} launch: - /Fos.exe: + "/Fos.exe": - when: - os: windows store: steam @@ -208394,11 +208993,13 @@ Fossil Echo: installDir: Fossil Echo: {} launch: - /FossilEcho: + "/FossilEcho": - when: - os: mac store: steam - /FossilEcho.exe: + - os: linux + store: steam + "/FossilEcho.exe": - when: - os: windows store: steam @@ -208408,11 +209009,11 @@ Fossil Hunters: installDir: Fossil Hunters: {} launch: - /FossilHunters.app/Contents/MacOS/FossilHunters: + "/FossilHunters.app/Contents/MacOS/FossilHunters": - when: - os: mac store: steam - /FossilHunters.exe: + "/FossilHunters.exe": - when: - bit: 64 os: windows @@ -208421,7 +209022,7 @@ Fossil Hunters: id: 690150 Foto Flash: files: - /FotoFlash: + "/FotoFlash": tags: - config - save @@ -208430,7 +209031,7 @@ Foto Flash: installDir: Foto Flash: {} launch: - /FotoFlash.exe: + "/FotoFlash.exe": - when: - os: windows store: steam @@ -208440,7 +209041,7 @@ Foto Flash 2: installDir: Foto Flash 2: {} launch: - /Foto Flash 2.exe: + "/Foto Flash 2.exe": - when: - os: windows store: steam @@ -208448,7 +209049,7 @@ Foto Flash 2: id: 861760 Fotonica: files: - /.config/unity3d/Santa Ragione/FOTONICA: + "/.config/unity3d/Santa Ragione/FOTONICA": tags: - config - save @@ -208457,15 +209058,15 @@ Fotonica: installDir: Fotonica: {} launch: - /FOTONICA.app: + "/FOTONICA.app": - when: - os: mac store: steam - /FOTONICA.exe: + "/FOTONICA.exe": - when: - os: windows store: steam - /FOTONICA.x86: + "/FOTONICA.x86": - when: - os: linux store: steam @@ -208478,12 +209079,12 @@ Fotonica: id: 253290 Foul Play: files: - /.FoulPlay: + "/.FoulPlay": tags: - config when: - os: linux - /userdata//244810/remote: + "/userdata//244810/remote": tags: - save when: @@ -208491,15 +209092,15 @@ Foul Play: installDir: Foul Play: {} launch: - /Foul Play.app/Contents/MacOS/Foul Play: + "/Foul Play.app/Contents/MacOS/Foul Play": - when: - os: mac store: steam - /foul_play: + "/foul_play": - when: - os: linux store: steam - /foul_play.exe: + "/foul_play.exe": - when: - os: windows store: steam @@ -208518,41 +209119,41 @@ Found Horror Game 11.exe: installDir: Found Horror Game 11.exe: {} launch: - /Game 1/Found Horror Game 1.exe: - - arguments: '--in-process-gpu' + "/Game 1/Found Horror Game 1.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam - /Game 2/FoundHorrorGame2.exe: + "/Game 2/FoundHorrorGame2.exe": - when: - store: steam - /Game 3/Found Horror Game 3.exe: - - arguments: '--in-process-gpu' + "/Game 3/Found Horror Game 3.exe": + - arguments: "--in-process-gpu" when: - store: steam - /Game 4/Found Horror Game 4.exe: - - arguments: '--in-process-gpu' + "/Game 4/Found Horror Game 4.exe": + - arguments: "--in-process-gpu" when: - store: steam - /Game 5/Feast Your Eyes.exe: + "/Game 5/Feast Your Eyes.exe": - when: - os: windows store: steam - workingDir: /Game 5 - /Game 6/The Ominous Whisperer.exe: - - arguments: '--in-process-gpu' + workingDir: "/Game 5" + "/Game 6/The Ominous Whisperer.exe": + - arguments: "--in-process-gpu" when: - store: steam steam: id: 727720 Foundation: files: - /Polymorph Games/Foundation/Save Game: + "/Polymorph Games/Foundation/Save Game": tags: - save when: - os: windows - /Polymorph Games/Foundation/usersetting.config: + "/Polymorph Games/Foundation/usersetting.config": tags: - config when: @@ -208562,8 +209163,8 @@ Foundation: installDir: Foundation: {} launch: - /foundation.exe: - - arguments: '-fullscreen' + "/foundation.exe": + - arguments: "-fullscreen" when: - bit: 64 os: windows @@ -208574,23 +209175,23 @@ Foundation of Nightmares: installDir: Foundation of Nightmares: {} launch: - /Foundation of Nightmares.app/Contents/MacOS/Foundation of Nightmares: + "/Foundation of Nightmares.app/Contents/MacOS/Foundation of Nightmares": - when: - os: mac store: steam - /FoundationOfNightmares: + "/FoundationOfNightmares": - when: - os: linux store: steam - /FoundationOfNightmares.exe: + "/FoundationOfNightmares.exe": - when: - os: windows store: steam steam: id: 705130 -Founders' Fortune: +"Founders' Fortune": files: - /AppData/LocalLow/Oachkatzlschwoaf Interactive/Founders Fortune/saves: + "/AppData/LocalLow/Oachkatzlschwoaf Interactive/Founders Fortune/saves": tags: - save when: @@ -208600,12 +209201,12 @@ Founders' Fortune: installDir: Founders Fortune: {} launch: - /Founders Fortune.exe: + "/Founders Fortune.exe": - when: - bit: 64 os: windows store: steam - /FoundersFortune.app: + "/FoundersFortune.app": - when: - os: mac store: steam @@ -208615,15 +209216,15 @@ Four Horsemen: installDir: Four Horsemen: {} launch: - /FourHorsemen.app: + "/FourHorsemen.app": - when: - os: mac store: steam - /FourHorsemen.exe: + "/FourHorsemen.exe": - when: - os: windows store: steam - /FourHorsemen.sh: + "/FourHorsemen.sh": - when: - os: linux store: steam @@ -208633,11 +209234,11 @@ Four Kings One War: installDir: Four Kings One War: {} launch: - /4K1W.app: + "/4K1W.app": - when: - os: mac store: steam - /4k1w.exe: + "/4k1w.exe": - when: - os: windows store: steam @@ -208645,7 +209246,7 @@ Four Kings One War: id: 883680 Four Last Things: files: - /Joe Richardson/Four Last Things 1.3/Savegames: + "/Joe Richardson/Four Last Things 1.3/Savegames": tags: - save when: @@ -208653,7 +209254,7 @@ Four Last Things: installDir: Four Last Things: {} launch: - /Four Last Things.exe: + "/Four Last Things.exe": - when: - os: windows store: steam @@ -208663,7 +209264,7 @@ Four Realms: installDir: Four Realms: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -208673,7 +209274,7 @@ Four Seals: installDir: Four Seals: {} launch: - /Four Seals.exe: + "/Four Seals.exe": - when: - bit: 64 os: windows @@ -208684,11 +209285,11 @@ Four Sided Fantasy: installDir: FourSidedFantasy: {} launch: - /FourSidedFantasy.app: + "/FourSidedFantasy.app": - when: - os: mac store: steam - /FourSidedFantasy.exe: + "/FourSidedFantasy.exe": - when: - os: windows store: steam @@ -208698,7 +209299,7 @@ Four-color Fantasy: installDir: Four-color Fantasy: {} launch: - /Four-color Fantasy.exe: + "/Four-color Fantasy.exe": - when: - os: windows store: steam @@ -208708,11 +209309,11 @@ FourChords Guitar Karaoke: installDir: FourChords Guitar Karaoke: {} launch: - /FourChords.app/Contents/MacOS/FourChords: + "/FourChords.app/Contents/MacOS/FourChords": - when: - os: mac store: steam - /FourChords.exe: + "/FourChords.exe": - when: - os: windows store: steam @@ -208722,20 +209323,20 @@ Fourtex Jugo: installDir: Fourtex Jugo: {} launch: - /Jugo.app/Contents/MacOS/Jugo: + "/Jugo.app/Contents/MacOS/Jugo": - when: - os: mac store: steam - /Jugo.exe: + "/Jugo.exe": - when: - os: windows store: steam - /Jugo.x86: + "/Jugo.x86": - when: - bit: 32 os: linux store: steam - /Jugo.x86_64: + "/Jugo.x86_64": - when: - bit: 64 os: linux @@ -208746,7 +209347,7 @@ Fourthy: installDir: Fourthy: {} launch: - /fourthy.exe: + "/fourthy.exe": - when: - store: steam steam: @@ -208760,7 +209361,7 @@ Fowl Magic: installDir: Fowl Magic: {} launch: - /FowlMagic.exe: + "/FowlMagic.exe": - when: - store: steam steam: @@ -208769,7 +209370,7 @@ Fowl Space: installDir: Fowl Space: {} launch: - /Fowl Space.air/Fowl Space.exe: + "/Fowl Space.air/Fowl Space.exe": - when: - store: steam steam: @@ -208778,15 +209379,15 @@ Fox & Flock: installDir: Fox and Flock: {} launch: - /Fox and Flock.app: + "/Fox and Flock.app": - when: - os: mac store: steam - /Fox and Flock.exe: + "/Fox and Flock.exe": - when: - os: windows store: steam - /foxandflock.sh: + "/foxandflock.sh": - when: - os: linux store: steam @@ -208796,11 +209397,11 @@ Fox Hime: installDir: FoxHime: {} launch: - /FoxHime.app/Contents/MacOS/FoxHime: + "/FoxHime.app/Contents/MacOS/FoxHime": - when: - os: mac store: steam - /FoxHime.exe: + "/FoxHime.exe": - when: - os: windows store: steam @@ -208808,17 +209409,17 @@ Fox Hime: id: 720280 Fox Hime Zero: files: - /FluffyStore_Data/StreamingAssets/*.jpg: + "/FluffyStore_Data/StreamingAssets/*.jpg": tags: - save when: - os: windows - /FluffyStore_Data/StreamingAssets/ScreenShot/*.jpg: + "/FluffyStore_Data/StreamingAssets/ScreenShot/*.jpg": tags: - save when: - os: windows - /FoxHimeZero_Data/StreamingAssets/userinfo.db: + "/FoxHimeZero_Data/StreamingAssets/userinfo.db": tags: - save when: @@ -208826,11 +209427,11 @@ Fox Hime Zero: installDir: FoxHimeZero: {} launch: - /FoxHimeZero.app/Contents/MacOS/FoxHimeZero: + "/FoxHimeZero.app/Contents/MacOS/FoxHimeZero": - when: - os: mac store: steam - /FoxHimeZero.exe: + "/FoxHimeZero.exe": - when: - os: windows store: steam @@ -208840,8 +209441,11 @@ Fox and Bunny: installDir: Fox and Bunny: {} launch: - /nw.exe: + "/nw.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam @@ -208849,7 +209453,7 @@ Fox and Bunny: id: 1075790 Fox n Forests: files: - /AppData/LocalLow/Bonus Level Entertainment/FOXnFORESTS: + "/AppData/LocalLow/Bonus Level Entertainment/FOXnFORESTS": tags: - save when: @@ -208857,15 +209461,15 @@ Fox n Forests: installDir: FOXnFORESTS: {} launch: - /FOXnFORESTS.app: + "/FOXnFORESTS.app": - when: - os: mac store: steam - /FOXnFORESTS.exe: + "/FOXnFORESTS.exe": - when: - os: windows store: steam - /FOXnFORESTS.x86_64: + "/FOXnFORESTS.x86_64": - when: - bit: 64 os: linux @@ -208880,17 +209484,17 @@ Fox soldier: installDir: fox_soldier: {} launch: - /fox_soldier.exe: + "/fox_soldier.exe": - when: - os: windows store: steam steam: id: 1076130 -Fox's Holiday: +"Fox's Holiday": installDir: - Fox's Holiday 狐の假期: {} + "Fox's Holiday 狐の假期": {} launch: - /Fox.exe: + "/Fox.exe": - when: - store: steam steam: @@ -208899,12 +209503,12 @@ Fox-Trot Over Run: installDir: Fox-Trot Over Run: {} launch: - /Fox-Trot Over Run_Windows_32/Fox-Trot Over Run.exe: + "/Fox-Trot Over Run_Windows_32/Fox-Trot Over Run.exe": - when: - bit: 32 os: windows store: steam - /Fox-Trot Over Run_Windows_64/Fox-Trot Over Run.exe: + "/Fox-Trot Over Run_Windows_64/Fox-Trot Over Run.exe": - when: - bit: 64 os: windows @@ -208913,13 +209517,13 @@ Fox-Trot Over Run: id: 1189470 FoxTail: files: - /Library/Application Support/Foxtail: + "/Library/Application Support/Foxtail": tags: - config - save when: - os: mac - /Foxtail: + "/Foxtail": tags: - config - save @@ -208930,15 +209534,15 @@ FoxTail: installDir: FoxTail: {} launch: - /foxtail.app/Contents/MacOS/foxtail: + "/foxtail.app/Contents/MacOS/foxtail": - when: - os: mac store: steam - /foxtail.exe: + "/foxtail.exe": - when: - os: windows store: steam - /run.sh: + "/run.sh": - when: - os: linux store: steam @@ -208948,7 +209552,7 @@ Foxfall: installDir: Foxfall: {} launch: - /Foxfall Deluxe.exe: + "/Foxfall Deluxe.exe": - when: - os: windows store: steam @@ -208958,7 +209562,7 @@ Foxfolk: installDir: Foxfolk: {} launch: - /Foxfolk.exe: + "/Foxfolk.exe": - when: - os: windows store: steam @@ -208966,7 +209570,7 @@ Foxfolk: id: 663590 Foxhole: files: - /Foxhole/Saved/Config/WindowsNoEditor: + "/Foxhole/Saved/Config/WindowsNoEditor": tags: - config when: @@ -208974,7 +209578,7 @@ Foxhole: installDir: Foxhole: {} launch: - /War.exe: + "/War.exe": - when: - bit: 64 os: windows @@ -208985,7 +209589,7 @@ Foxus: installDir: Foxus: {} launch: - /Foxus.exe: + "/Foxus.exe": - when: - store: steam steam: @@ -208994,15 +209598,15 @@ FoxyLand: installDir: FLX: {} launch: - /linux32/FXL: + "/linux32/FXL": - when: - os: linux store: steam - /osx64/foxyland.app/Contents/MacOS/nwjs: + "/osx64/foxyland.app/Contents/MacOS/nwjs": - when: - os: mac store: steam - /win32/FXL.exe: + "/win32/FXL.exe": - when: - os: windows store: steam @@ -209012,19 +209616,19 @@ Foxyland 2: installDir: fxl2: {} launch: - /win64/FoxyLand2.exe: + "/win64/FoxyLand2.exe": - when: - store: steam steam: id: 1053730 Fract OSC: files: - /FRACTOSC: + "/FRACTOSC": tags: - save when: - os: windows - /FRACTOSC/game/world.fract: + "/FRACTOSC/game/world.fract": tags: - config when: @@ -209034,11 +209638,11 @@ Fract OSC: installDir: FRACTOSC: {} launch: - /FRACTOSC.app: + "/FRACTOSC.app": - when: - os: mac store: steam - /FRACTOSC.exe: + "/FRACTOSC.exe": - when: - os: windows store: steam @@ -209057,8 +209661,8 @@ Fractal Chicken: installDir: Fractal Chicken: {} launch: - /boxEngine.exe: - - arguments: '-s games.moon -game minesmenu' + "/boxEngine.exe": + - arguments: "-s games.moon -game minesmenu" when: - os: windows store: steam @@ -209079,9 +209683,9 @@ Fractal Space: - os: windows steam: id: 435410 -'Fractal: Make Blooms Not War': +"Fractal: Make Blooms Not War": files: - '/.config/unity3d/Cipher Prime Studios, Inc./Fractal': + "/.config/unity3d/Cipher Prime Studios, Inc./Fractal": tags: - config - save @@ -209090,16 +209694,16 @@ Fractal Space: installDir: Fractal: {} launch: - /Fractal.app: + "/Fractal.app": - when: - os: mac store: steam - /fractal.exe: + "/fractal.exe": - when: - os: windows store: steam registry: - 'HKEY_CURRENT_USER/Software/Cipher Prime Studios, Inc./Fractal': + "HKEY_CURRENT_USER/Software/Cipher Prime Studios, Inc./Fractal": tags: - config - save @@ -209109,15 +209713,15 @@ Fractalis: installDir: Fractalis: {} launch: - /Fractalis.app/Contents/MacOS/Fractalis: + "/Fractalis.app/Contents/MacOS/Fractalis": - when: - os: mac store: steam - /Fractalis.exe: + "/Fractalis.exe": - when: - os: windows store: steam - /Fractalis.x86_64: + "/Fractalis.x86_64": - when: - os: linux store: steam @@ -209127,11 +209731,11 @@ Fracture the Flag: installDir: Fracture the Flag: {} launch: - /FractureTheFlag.app: + "/FractureTheFlag.app": - when: - os: mac store: steam - /FractureTheFlag.exe: + "/FractureTheFlag.exe": - when: - os: windows store: steam @@ -209139,7 +209743,7 @@ Fracture the Flag: id: 388900 Fractured Lands: files: - /FracturedLands/Saved/Config/WindowsClient: + "/FracturedLands/Saved/Config/WindowsClient": tags: - config when: @@ -209147,7 +209751,7 @@ Fractured Lands: installDir: Fractured Lands: {} launch: - /FracturedLandsLauncher.exe: + "/FracturedLandsLauncher.exe": - when: - store: steam steam: @@ -209156,11 +209760,11 @@ Fractured Minds: installDir: Fractured Minds: {} launch: - /FracturedMinds_Mac.app: + "/FracturedMinds_Mac.app": - when: - os: mac store: steam - /Fractured_Minds.exe: + "/Fractured_Minds.exe": - when: - os: windows store: steam @@ -209168,12 +209772,12 @@ Fractured Minds: id: 688740 Fractured Soul: files: - /Fractured Soul: + "/Fractured Soul": tags: - save when: - os: windows - /Fractured Soul/ControllerConfiguration.xml: + "/Fractured Soul/ControllerConfiguration.xml": tags: - config when: @@ -209183,15 +209787,15 @@ Fractured Soul: installDir: Fractured Soul: {} launch: - /FracturedSoul.exe: - - arguments: '--fullscreen' + "/FracturedSoul.exe": + - arguments: "--fullscreen" when: - os: windows store: steam - when: - os: windows store: steam - - arguments: '--resetcontrolconfig' + - arguments: "--resetcontrolconfig" when: - os: windows store: steam @@ -209199,7 +209803,7 @@ Fractured Soul: id: 307030 Fractured Space: files: - /spacegame/Saved/Config: + "/spacegame/Saved/Config": tags: - config when: @@ -209207,18 +209811,18 @@ Fractured Space: installDir: Space: {} launch: - /launcher/launcher.exe: + "/launcher/launcher.exe": - when: - os: windows store: steam - workingDir: /launcher + workingDir: "/launcher" steam: id: 310380 Fractured State: installDir: Fractured State: {} launch: - /fracturedstate.exe: + "/fracturedstate.exe": - when: - bit: 64 os: windows @@ -209229,12 +209833,12 @@ Fractus: installDir: Fractus: {} launch: - /Fractus: + "/Fractus": - when: - bit: 64 os: linux store: steam - /Fractus.exe: + "/Fractus.exe": - when: - bit: 64 os: windows @@ -209248,7 +209852,7 @@ Fragile: installDir: Fragile: {} launch: - /Fragile.exe: + "/Fragile.exe": - when: - bit: 64 os: windows @@ -209257,12 +209861,12 @@ Fragile: id: 1184210 Fragile Allegiance: files: - /CONFIG.INI: + "/CONFIG.INI": tags: - config when: - os: dos - /_SAVE: + "/_SAVE": tags: - save when: @@ -209272,7 +209876,7 @@ Fragile Allegiance: installDir: Fragile Allegiance: {} launch: - /FAMenu.exe: + "/FAMenu.exe": - when: - os: windows store: steam @@ -209282,7 +209886,7 @@ Fragile Equilibrium: installDir: Fragile Equilibrium: {} launch: - /fragile_equilibrium.exe: + "/fragile_equilibrium.exe": - when: - os: windows store: steam @@ -209292,18 +209896,18 @@ Fragile Fighter: installDir: Fragile Fighter: {} launch: - /fragilefighter2018.app: - - arguments: '--disable-devtools' + "/fragilefighter2018.app": + - arguments: "--disable-devtools" when: - os: mac store: steam - /nw: - - arguments: '--disable-devtools' + "/nw": + - arguments: "--disable-devtools" when: - os: linux store: steam - /nw.exe: - - arguments: '--disable-devtools' + "/nw.exe": + - arguments: "--disable-devtools" when: - os: windows store: steam @@ -209313,7 +209917,7 @@ Fragmental: installDir: Fragmental: {} launch: - /LithiumUE4.exe: + "/LithiumUE4.exe": - when: - bit: 64 os: windows @@ -209322,12 +209926,12 @@ Fragmental: id: 424040 Fragmented: files: - /Fragmented/Saved/Config: + "/Fragmented/Saved/Config": tags: - config when: - os: windows - /Fragmented/Saved/SaveGames: + "/Fragmented/Saved/SaveGames": tags: - save when: @@ -209335,12 +209939,12 @@ Fragmented: installDir: Fragmented: {} launch: - /Fragmented.exe: + "/Fragmented.exe": - when: - bit: 64 os: windows store: steam - /Fragmented/Binaries/Linux/Fragmented: + "/Fragmented/Binaries/Linux/Fragmented": - when: - os: linux store: steam @@ -209357,7 +209961,7 @@ Fragments of Him: installDir: Fragments of Him: {} launch: - /Fragments of Him.exe: + "/Fragments of Him.exe": - when: - os: windows store: steam @@ -209367,12 +209971,12 @@ Fragmentum: installDir: Fragmentum: {} launch: - /Fragmentum64: + "/Fragmentum64": - when: - bit: 64 os: linux store: steam - /Fragmentum64.exe: + "/Fragmentum64.exe": - when: - bit: 64 os: windows @@ -209381,17 +209985,17 @@ Fragmentum: id: 652460 Framed Collection: files: - /Saved Games/FRAMED Collection/f2.sav: + "/Saved Games/FRAMED Collection/f2.sav": tags: - save when: - os: windows - /Saved Games/FRAMED Collection/game.sav: + "/Saved Games/FRAMED Collection/game.sav": tags: - save when: - os: windows - /Saved Games/FRAMED Collection/game.settings: + "/Saved Games/FRAMED Collection/game.settings": tags: - config when: @@ -209399,60 +210003,60 @@ Framed Collection: installDir: FRAMED: {} launch: - /Framed.app/Contents/MacOS/Framed: + "/Framed.app/Contents/MacOS/Framed": - when: - os: mac store: steam - /application/Framed: + "/application/Framed": - when: - os: linux store: steam - workingDir: /application - /bin/Framed.exe: + workingDir: "/application" + "/bin/Framed.exe": - when: - os: windows store: steam - workingDir: /bin + workingDir: "/bin" steam: id: 322450 Framed Wings: installDir: Framed Wings: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam steam: id: 479140 -'Framing Dawes, Episode 1: Thyme to Leave': +"Framing Dawes, Episode 1: Thyme to Leave": steam: id: 1130820 Fran Bow: files: - /.config/Fran_Bow/savedata.ini: + "/.config/Fran_Bow/savedata.ini": tags: - config - save when: - os: linux - /AppData/LocalLow/Killmonday Games AB/Fran Bow: + "/AppData/LocalLow/Killmonday Games AB/Fran Bow": tags: - save when: - os: windows - /Fran_Bow/savedata.ini: + "/Fran_Bow/savedata.ini": tags: - config - save when: - os: windows - /unity3d/Killmonday Games AB/Fran Bow/FranBow_*.*: + "/unity3d/Killmonday Games AB/Fran Bow/FranBow_*.*": tags: - save when: - os: linux - /unity3d/Killmonday Games AB/Fran Bow/prefs: + "/unity3d/Killmonday Games AB/Fran Bow/prefs": tags: - config when: @@ -209463,21 +210067,21 @@ Fran Bow: gogExtra: - 1379946679 steamExtra: + - 393500 - 404840 - 1124030 - - 393500 installDir: Fran Bow: {} launch: - /Fran Bow.exe: + "/Fran Bow.exe": - when: - os: windows store: steam - /FranBow.app: + "/FranBow.app": - when: - os: mac store: steam - /runner: + "/runner": - when: - os: linux store: steam @@ -209491,11 +210095,11 @@ Franchise Hockey Manager 2: installDir: Franchise Hockey Manager 2: {} launch: - /Franchise Hockey Manager 2.app: + "/Franchise Hockey Manager 2.app": - when: - os: mac store: steam - /fhm2.exe: + "/fhm2.exe": - when: - os: windows store: steam @@ -209505,11 +210109,11 @@ Franchise Hockey Manager 2014: installDir: Franchise Hockey Manager 2014: {} launch: - /Franchise Hockey Manager 2014.app: + "/Franchise Hockey Manager 2014.app": - when: - os: mac store: steam - /fhm2014.exe: + "/fhm2014.exe": - when: - os: windows store: steam @@ -209519,11 +210123,11 @@ Franchise Hockey Manager 3: installDir: Franchise Hockey Manager 3: {} launch: - /Franchise Hockey Manager 3.app: + "/Franchise Hockey Manager 3.app": - when: - os: mac store: steam - /fhm3.exe: + "/fhm3.exe": - when: - os: windows store: steam @@ -209533,11 +210137,11 @@ Franchise Hockey Manager 4: installDir: Franchise Hockey Manager 4: {} launch: - /Franchise Hockey Manager 4.app: + "/Franchise Hockey Manager 4.app": - when: - os: mac store: steam - /fhm4.exe: + "/fhm4.exe": - when: - os: windows store: steam @@ -209547,11 +210151,11 @@ Franchise Hockey Manager 5: installDir: Franchise Hockey Manager 5: {} launch: - /Franchise Hockey Manager 5.app: + "/Franchise Hockey Manager 5.app": - when: - os: mac store: steam - /fhm5.exe: + "/fhm5.exe": - when: - os: windows store: steam @@ -209559,7 +210163,7 @@ Franchise Hockey Manager 5: id: 880380 Franchise Hockey Manager 6: files: - /Out of the Park Developments/Franchise Hockey Manager 6/saved_games: + "/Out of the Park Developments/Franchise Hockey Manager 6/saved_games": tags: - save when: @@ -209567,11 +210171,11 @@ Franchise Hockey Manager 6: installDir: Franchise Hockey Manager 6: {} launch: - /Franchise Hockey Manager 6.app: + "/Franchise Hockey Manager 6.app": - when: - os: mac store: steam - /fhm6.exe: + "/fhm6.exe": - when: - os: windows store: steam @@ -209581,11 +210185,11 @@ Franchise Hockey Manager 8: installDir: Franchise Hockey Manager 8: {} launch: - /Franchise Hockey Manager 8.app: + "/Franchise Hockey Manager 8.app": - when: - os: mac store: steam - /fhm8.exe: + "/fhm8.exe": - when: - os: windows store: steam @@ -209595,7 +210199,7 @@ Franchise Wars: installDir: Franchise Wars: {} launch: - /Franchise Wars.exe: + "/Franchise Wars.exe": - when: - os: windows store: steam @@ -209605,17 +210209,17 @@ Francisca: installDir: Francisca: {} launch: - /Francisca.exe: + "/Francisca.exe": - when: - os: windows store: steam steam: id: 501760 -'Frane: Dragons'' Odyssey': +"Frane: Dragons' Odyssey": installDir: - Frane Dragons' Odyssey: {} + "Frane Dragons' Odyssey": {} launch: - /Frane Dragons' Odyssey.exe: + "/Frane Dragons' Odyssey.exe": - when: - os: windows store: steam @@ -209625,20 +210229,20 @@ Frank & the TimeTwister Machine: installDir: Frank & the TimeTwister Machine: {} launch: - /Frank & the TimeTwister Machine.exe: + "/Frank & the TimeTwister Machine.exe": - when: - os: windows store: steam steam: id: 1062470 -Frank Herbert's Dune: +"Frank Herbert's Dune": files: - /Dune_*.sav: + "/Dune_*.sav": tags: - save when: - os: windows - /configpc.cfg: + "/configpc.cfg": tags: - config when: @@ -209647,7 +210251,7 @@ Frank and 10 roots: installDir: Frank and 10 roots: {} launch: - /Frank.exe: + "/Frank.exe": - when: - bit: 64 os: windows @@ -209658,30 +210262,30 @@ Frank the Miner: installDir: Frank the Miner: {} launch: - /franktheminer.exe: + "/franktheminer.exe": - when: - os: windows store: steam steam: id: 807340 -'Frankenstein: Beyond the Time': +"Frankenstein: Beyond the Time": installDir: Frankenstein Beyond the Time: {} steam: id: 863380 -'Frankenstein: Master of Death': +"Frankenstein: Master of Death": files: - '/.config/unity3d/Fineway Studios/Frankenstein: Master of Death/prefs': + "/.config/unity3d/Fineway Studios/Frankenstein: Master of Death/prefs": tags: - config when: - os: linux - /FinewayStudios/Frankenstein/save.bin: + "/FinewayStudios/Frankenstein/save.bin": tags: - save when: - os: windows - /FinewayStudios/Frankenstein/save.bin: + "/FinewayStudios/Frankenstein/save.bin": tags: - save when: @@ -209689,20 +210293,20 @@ Frank the Miner: installDir: FrankensteinMasterOfDeath: {} launch: - /Frankenstein_MasterOfDeath.app: + "/Frankenstein_MasterOfDeath.app": - when: - os: mac store: steam - /Frankenstein_MasterOfDeath.exe: + "/Frankenstein_MasterOfDeath.exe": - when: - os: windows store: steam - /Frankenstein_MasterOfDeath.x86: + "/Frankenstein_MasterOfDeath.x86": - when: - os: linux store: steam registry: - 'HKEY_CURRENT_USER/Software/Fineway Studios/Frankenstein: Master of Death': + "HKEY_CURRENT_USER/Software/Fineway Studios/Frankenstein: Master of Death": tags: - config steam: @@ -209711,20 +210315,20 @@ FranknJohn: installDir: FranknJohn: {} launch: - /FranknJohn.app: + "/FranknJohn.app": - when: - os: mac store: steam - /FranknJohn.exe: + "/FranknJohn.exe": - when: - os: windows store: steam - /FranknJohn.x86: + "/FranknJohn.x86": - when: - bit: 32 os: linux store: steam - /FranknJohn.x86_64: + "/FranknJohn.x86_64": - when: - bit: 64 os: linux @@ -209735,7 +210339,7 @@ Franky Lettuce: installDir: Franky Lettuce: {} launch: - /Franky Lettuce.exe: + "/Franky Lettuce.exe": - when: - os: windows store: steam @@ -209748,7 +210352,7 @@ Frantic Dimension: installDir: Frantic Dimension: {} launch: - /Frantic_Dimension.exe: + "/Frantic_Dimension.exe": - when: - os: windows store: steam @@ -209758,62 +210362,62 @@ Frantic Freighter: installDir: Frantic Freighter: {} launch: - /ff.app: - - arguments: '-show-screen-selector' + "/ff.app": + - arguments: "-show-screen-selector" when: - os: mac store: steam - /ff.exe: - - arguments: '-show-screen-selector -vrmode none' + "/ff.exe": + - arguments: "-show-screen-selector -vrmode none" when: - os: windows store: steam - /ff.x86: - - arguments: '-show-screen-selector' + "/ff.x86": + - arguments: "-show-screen-selector" when: - bit: 32 os: linux store: steam - /ff.x86_64: - - arguments: '-show-screen-selector' + "/ff.x86_64": + - arguments: "-show-screen-selector" when: - bit: 64 os: linux store: steam steam: id: 503150 -'Fray: Reloaded Edition': +"Fray: Reloaded Edition": installDir: Fray: {} launch: - /fray.exe: + "/fray.exe": - when: - store: steam steam: id: 210490 -'Frayed Knights: The Skull of S''makh-Daon': +"Frayed Knights: The Skull of S'makh-Daon": files: - /game/prefs.cs: + "/game/prefs.cs": tags: - config when: - os: windows - /game/saves: + "/game/saves": tags: - save when: - os: windows installDir: - Frayed Knights The Skull of S'makh-Daon: {} + "Frayed Knights The Skull of S'makh-Daon": {} launch: - /FrayedKnights_Steam.exe: + "/FrayedKnights_Steam.exe": - when: - store: steam steam: id: 314120 Fraymakers: files: - /*.save: + "/*.save": tags: - save when: @@ -209823,15 +210427,18 @@ Fraymakers: installDir: Fraymakers: {} launch: - /run.sh: + "/run.sh": - when: - os: mac store: steam + - bit: 64 + os: linux + store: steam steam: id: 1420350 -'FreakOut: Extreme Freeride': +"FreakOut: Extreme Freeride": files: - /Data/User/profile.pro: + "/Data/User/profile.pro": tags: - save when: @@ -209839,7 +210446,7 @@ Fraymakers: installDir: FreakOut Extreme Freeride: {} launch: - /FreakOut.exe: + "/FreakOut.exe": - when: - os: windows store: steam @@ -209847,7 +210454,7 @@ Fraymakers: id: 304540 Freaking Meatbags: files: - /unity3d/Wild Factor/Freaking Meatbags: + "/unity3d/Wild Factor/Freaking Meatbags": tags: - save when: @@ -209855,21 +210462,21 @@ Freaking Meatbags: installDir: Freaking Meatbags: {} launch: - /FreakingMeatbags.app: + "/FreakingMeatbags.app": - when: - os: mac store: steam - /FreakingMeatbags.x86: + "/FreakingMeatbags.x86": - when: - bit: 32 os: linux store: steam - /FreakingMeatbags.x86_64: + "/FreakingMeatbags.x86_64": - when: - bit: 64 os: linux store: steam - /Freaking_MeatBags.exe: + "/Freaking_MeatBags.exe": - when: - os: windows store: steam @@ -209879,20 +210486,20 @@ Freaking Meatbags: - save steam: id: 297060 -'Freakout: Calamity TV Show': +"Freakout: Calamity TV Show": installDir: Freakout TV Calamity Show: {} launch: - /Freakout.app/Contents/MacOS/Freakout: + "/Freakout.app/Contents/MacOS/Freakout": - when: - os: mac store: steam - /Freakout.exe: + "/Freakout.exe": - when: - bit: 64 os: windows store: steam - /Freakout.x86_64: + "/Freakout.x86_64": - when: - bit: 64 os: linux @@ -209903,7 +210510,7 @@ Freakshow 2: installDir: Freakshow 2: {} launch: - /FAnniversary.exe: + "/FAnniversary.exe": - when: - bit: 64 os: windows @@ -209914,15 +210521,15 @@ Freaky Awesome: installDir: Freaky Awesome: {} launch: - /FreakyAwesome.app: + "/FreakyAwesome.app": - when: - os: mac store: steam - /FreakyAwesome.exe: + "/FreakyAwesome.exe": - when: - os: windows store: steam - /FreakyAwesome.x86: + "/FreakyAwesome.x86": - when: - os: linux store: steam @@ -209935,269 +210542,269 @@ Fred3ric: installDir: Fred3ric: {} launch: - /Fred3ric.exe: + "/Fred3ric.exe": - when: - store: steam steam: id: 1269030 -'Freddi Fish 2: The Case of the Haunted Schoolhouse': +"Freddi Fish 2: The Case of the Haunted Schoolhouse": installDir: Freddi Fish 2: {} launch: - /ScummVM_Linux/launch_freddifish2.sh: + "/ScummVM_Linux/launch_freddifish2.sh": - when: - os: linux store: steam - workingDir: /ScummVM_Linux - /ScummVM_Mac/ScummVM.app/Contents/MacOS/scummvm: - - arguments: '-c scummvm-freddifish2.ini freddi2' + workingDir: "/ScummVM_Linux" + "/ScummVM_Mac/ScummVM.app/Contents/MacOS/scummvm": + - arguments: "-c scummvm-freddifish2.ini freddi2" when: - os: mac store: steam - workingDir: /ScummVM_Mac - /ScummVM_Windows/scummvm.exe: - - arguments: '--no-console -c scummvm-freddifish2.ini freddi2' + workingDir: "/ScummVM_Mac" + "/ScummVM_Windows/scummvm.exe": + - arguments: "--no-console -c scummvm-freddifish2.ini freddi2" when: - os: windows store: steam - workingDir: /ScummVM_Windows + workingDir: "/ScummVM_Windows" steam: id: 294530 -'Freddi Fish 3: The Case of the Stolen Conch Shell': +"Freddi Fish 3: The Case of the Stolen Conch Shell": installDir: Freddi Fish 3: {} launch: - /ScummVM_Linux/launch_freddifish3.sh: + "/ScummVM_Linux/launch_freddifish3.sh": - when: - os: linux store: steam - workingDir: /ScummVM_Linux - /ScummVM_Mac/ScummVM.app/Contents/MacOS/scummvm: - - arguments: '-c scummvm-freddifish3.ini freddi3' + workingDir: "/ScummVM_Linux" + "/ScummVM_Mac/ScummVM.app/Contents/MacOS/scummvm": + - arguments: "-c scummvm-freddifish3.ini freddi3" when: - os: mac store: steam - workingDir: /ScummVM_Mac - /ScummVM_Windows/scummvm.exe: - - arguments: '--no-console -c scummvm-freddifish3.ini freddi3' + workingDir: "/ScummVM_Mac" + "/ScummVM_Windows/scummvm.exe": + - arguments: "--no-console -c scummvm-freddifish3.ini freddi3" when: - os: windows store: steam - workingDir: /ScummVM_Windows + workingDir: "/ScummVM_Windows" steam: id: 294540 -'Freddi Fish 4: The Case of the Hogfish Rustlers of Briny Gulch': +"Freddi Fish 4: The Case of the Hogfish Rustlers of Briny Gulch": installDir: Freddi Fish 4: {} launch: - /ScummVM_Linux/launch_freddifish4.sh: + "/ScummVM_Linux/launch_freddifish4.sh": - when: - os: linux store: steam - workingDir: /ScummVM_Linux - /ScummVM_Mac/ScummVM.app/Contents/MacOS/scummvm: - - arguments: '-c scummvm-freddifish4.ini freddi4' + workingDir: "/ScummVM_Linux" + "/ScummVM_Mac/ScummVM.app/Contents/MacOS/scummvm": + - arguments: "-c scummvm-freddifish4.ini freddi4" when: - os: mac store: steam - workingDir: /ScummVM_Mac - /ScummVM_Windows/scummvm.exe: - - arguments: '--no-console -c scummvm-freddifish4.ini freddi4' + workingDir: "/ScummVM_Mac" + "/ScummVM_Windows/scummvm.exe": + - arguments: "--no-console -c scummvm-freddifish4.ini freddi4" when: - os: windows store: steam - workingDir: /ScummVM_Windows + workingDir: "/ScummVM_Windows" steam: id: 294550 -'Freddi Fish 5: The Case of the Creature of Coral Cove': +"Freddi Fish 5: The Case of the Creature of Coral Cove": installDir: Freddi Fish 5: {} launch: - /ScummVM_Linux/launch_freddifish5.sh: + "/ScummVM_Linux/launch_freddifish5.sh": - when: - os: linux store: steam - workingDir: /ScummVM_Linux - /ScummVM_Mac/ScummVM.app/Contents/MacOS/scummvm: - - arguments: '-c scummvm-freddifish5.ini freddi5' + workingDir: "/ScummVM_Linux" + "/ScummVM_Mac/ScummVM.app/Contents/MacOS/scummvm": + - arguments: "-c scummvm-freddifish5.ini freddi5" when: - os: mac store: steam - workingDir: /ScummVM_Mac - /ScummVM_Windows/scummvm.exe: - - arguments: '--no-console -c scummvm-freddifish5.ini freddi5' + workingDir: "/ScummVM_Mac" + "/ScummVM_Windows/scummvm.exe": + - arguments: "--no-console -c scummvm-freddifish5.ini freddi5" when: - os: windows store: steam - workingDir: /ScummVM_Windows + workingDir: "/ScummVM_Windows" steam: id: 294570 -Freddi Fish and Luther's Maze Madness: +"Freddi Fish and Luther's Maze Madness": installDir: Freddi Fish and Luthers Maze Madness: {} launch: - /ScummVM_Linux/launch_freddimazemadness.sh: + "/ScummVM_Linux/launch_freddimazemadness.sh": - when: - os: linux store: steam - workingDir: /ScummVM_Linux - /ScummVM_Mac/ScummVM.app/Contents/MacOS/scummvm: - - arguments: '-c scummvm-freddimazemadness.ini freddimazemadness' + workingDir: "/ScummVM_Linux" + "/ScummVM_Mac/ScummVM.app/Contents/MacOS/scummvm": + - arguments: "-c scummvm-freddimazemadness.ini freddimazemadness" when: - os: mac store: steam - workingDir: /ScummVM_Mac - /ScummVM_Windows/scummvm.exe: - - arguments: '--no-console -c scummvm-freddimazemadness.ini freddimazemadness' + workingDir: "/ScummVM_Mac" + "/ScummVM_Windows/scummvm.exe": + - arguments: "--no-console -c scummvm-freddimazemadness.ini freddimazemadness" when: - os: windows store: steam - workingDir: /ScummVM_Windows + workingDir: "/ScummVM_Windows" steam: id: 284020 -Freddi Fish and Luther's Water Worries: +"Freddi Fish and Luther's Water Worries": installDir: Freddi Fish and Luthers Water Worries: {} launch: - /ScummVM_Linux/launch_freddiwaterworries.sh: + "/ScummVM_Linux/launch_freddiwaterworries.sh": - when: - os: linux store: steam - workingDir: /ScummVM_Linux - /ScummVM_Mac/ScummVM.app/Contents/MacOS/scummvm: - - arguments: '-c scummvm-freddiwaterworries.ini freddiwaterworries' + workingDir: "/ScummVM_Linux" + "/ScummVM_Mac/ScummVM.app/Contents/MacOS/scummvm": + - arguments: "-c scummvm-freddiwaterworries.ini freddiwaterworries" when: - os: mac store: steam - workingDir: /ScummVM_Mac - /ScummVM_Windows/scummvm.exe: - - arguments: '--no-console -c scummvm-freddiwaterworries.ini freddiwaterworries' + workingDir: "/ScummVM_Mac" + "/ScummVM_Windows/scummvm.exe": + - arguments: "--no-console -c scummvm-freddiwaterworries.ini freddiwaterworries" when: - os: windows store: steam - workingDir: /ScummVM_Windows + workingDir: "/ScummVM_Windows" steam: id: 294580 Freddi Fish and the Case of the Missing Kelp Seeds: installDir: Freddi Fish 1 - Kelp Seeds: {} launch: - /ScummVM_Linux/launch_freddifish1_opengl.sh: + "/ScummVM_Linux/launch_freddifish1_opengl.sh": - when: - bit: 64 os: linux store: steam - workingDir: /ScummVM_Linux - /ScummVM_Linux/launch_freddifish1_safe.sh: + workingDir: "/ScummVM_Linux" + "/ScummVM_Linux/launch_freddifish1_safe.sh": - when: - bit: 64 os: linux store: steam - workingDir: /ScummVM_Linux - /ScummVM_Mac/ScummVM.app/Contents/MacOS/scummvm: - - arguments: '-c scummvm-freddifish1-opengl.ini freddi' + workingDir: "/ScummVM_Linux" + "/ScummVM_Mac/ScummVM.app/Contents/MacOS/scummvm": + - arguments: "-c scummvm-freddifish1-opengl.ini freddi" when: - os: mac store: steam - workingDir: /ScummVM_Mac - - arguments: '-c scummvm-freddifish1-safe.ini freddi' + workingDir: "/ScummVM_Mac" + - arguments: "-c scummvm-freddifish1-safe.ini freddi" when: - os: mac store: steam - workingDir: /ScummVM_Mac - /ScummVM_Windows/scummvm.exe: - - arguments: '--no-console -c scummvm-freddifish1-opengl.ini freddi' + workingDir: "/ScummVM_Mac" + "/ScummVM_Windows/scummvm.exe": + - arguments: "--no-console -c scummvm-freddifish1-opengl.ini freddi" when: - os: windows store: steam - workingDir: /ScummVM_Windows - - arguments: '--no-console -c scummvm-freddifish1-safe.ini freddi' + workingDir: "/ScummVM_Windows" + - arguments: "--no-console -c scummvm-freddifish1-safe.ini freddi" when: - os: windows store: steam - workingDir: /ScummVM_Windows + workingDir: "/ScummVM_Windows" steam: id: 283940 -Freddy Fazbear's Pizzeria Simulator: +"Freddy Fazbear's Pizzeria Simulator": files: - /MMFApplications/FNAF6: + "/MMFApplications/FNAF6": tags: - config - save when: - os: windows installDir: - Freddy Fazbear's Pizzeria Simulator: {} + "Freddy Fazbear's Pizzeria Simulator": {} launch: - /Pizzeria Simulator.exe: + "/Pizzeria Simulator.exe": - when: - os: windows store: steam steam: id: 738060 -'Freddy Pharkas: Frontier Pharmacist': +"Freddy Pharkas: Frontier Pharmacist": gog: id: 1939489874 Freddy in Space 2: files: - /MMFApplications/FIS2: + "/MMFApplications/FIS2": tags: - save when: - os: windows -Freddy's Journey: +"Freddy's Journey": installDir: - Freddy's Journey: {} + "Freddy's Journey": {} launch: - /fj.app/Contents/MacOS/fj: + "/fj.app/Contents/MacOS/fj": - when: - os: mac store: steam - /fj.exe: + "/fj.exe": - when: - os: windows store: steam - /fj.x86: + "/fj.x86": - when: - bit: 32 os: linux store: steam - /fj.x86_64: + "/fj.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 875520 -'Frederic: Evil Strikes Back': +"Frederic: Evil Strikes Back": installDir: Frederic Evil Strikes Back: {} launch: - /Frederic2.app: + "/Frederic2.app": - when: - os: mac store: steam - /Frederic2.exe: + "/Frederic2.exe": - when: - os: windows store: steam - - arguments: '--touch' + - arguments: "--touch" when: - os: windows store: steam - /Frederic2.x86: + "/Frederic2.x86": - when: - os: linux store: steam - /soundtrack.cmd: + "/soundtrack.cmd": - when: - os: windows store: steam steam: id: 301200 -'Frederic: Resurrection of Music': +"Frederic: Resurrection of Music": files: - /userdata//301190/remote/FredericROM.prefs: + "/userdata//301190/remote/FredericROM.prefs": tags: - config when: @@ -210205,23 +210812,23 @@ Freddy's Journey: installDir: FredericROM: {} launch: - /Frederic.app: + "/Frederic.app": - when: - os: mac store: steam - /Frederic.exe: + "/Frederic.exe": - when: - os: windows store: steam - - arguments: '--touch' + - arguments: "--touch" when: - os: windows store: steam - /Frederic.x86: + "/Frederic.x86": - when: - os: linux store: steam - /soundtrack.cmd: + "/soundtrack.cmd": - when: - os: windows store: steam @@ -210232,19 +210839,19 @@ Freddy's Journey: - save steam: id: 301190 -'Frederic: Resurrection of Music Director''s Cut': +"Frederic: Resurrection of Music Director's Cut": installDir: Frederic Resurrection of Music Remastered: {} launch: - /Frederic.app: + "/Frederic.app": - when: - os: mac store: steam - /Frederic.exe: + "/Frederic.exe": - when: - os: windows store: steam - /Frederic.x86: + "/Frederic.x86": - when: - os: linux store: steam @@ -210257,7 +210864,7 @@ Free Balling: installDir: Free Balling: {} launch: - /Free_Balling.exe: + "/Free_Balling.exe": - when: - os: windows store: steam @@ -210267,7 +210874,7 @@ Free Bowling 3D: installDir: Free Bowling 3D: {} launch: - /Free Bowling 3D.exe: + "/Free Bowling 3D.exe": - when: - store: steam steam: @@ -210281,7 +210888,7 @@ Free Road: installDir: Free road: {} launch: - /Free road.exe: + "/Free road.exe": - when: - store: steam steam: @@ -210290,7 +210897,7 @@ Free Running: installDir: Free Running: {} launch: - /FRLauncher.exe: + "/FRLauncher.exe": - when: - os: windows store: steam @@ -210300,7 +210907,7 @@ Free Throw: installDir: Free Throw: {} launch: - /FreeThrow.exe: + "/FreeThrow.exe": - when: - os: windows store: steam @@ -210310,7 +210917,7 @@ Free Towns: installDir: Free Towns: {} launch: - /freetowns.exe: + "/freetowns.exe": - when: - os: windows store: steam @@ -210320,11 +210927,11 @@ Free Yourself - A Gravity Puzzle Game Starring YOU!: installDir: Free Yourself: {} launch: - /FreeYourself.app: + "/FreeYourself.app": - when: - os: mac store: steam - /FreeYourself.exe: + "/FreeYourself.exe": - when: - os: windows store: steam @@ -210334,7 +210941,7 @@ Free at Last: installDir: Free At Last: {} launch: - /freeatlast.exe: + "/freeatlast.exe": - when: - os: windows store: steam @@ -210344,7 +210951,7 @@ Free the Animation: installDir: Free the Animation: {} launch: - /FreeTheAnimation.exe: + "/FreeTheAnimation.exe": - when: - bit: 64 os: windows @@ -210356,7 +210963,7 @@ Free the Dragons: id: 1032220 FreeCell Quest: files: - /.config/unity3d/Legend Studio/FreeCell Quest: + "/.config/unity3d/Legend Studio/FreeCell Quest": tags: - config - save @@ -210365,15 +210972,15 @@ FreeCell Quest: installDir: FreeCell Quest: {} launch: - /FreeCell Quest.app: + "/FreeCell Quest.app": - when: - os: mac store: steam - /FreeCell Quest.exe: + "/FreeCell Quest.exe": - when: - os: windows store: steam - /FreeCell Quest.x86: + "/FreeCell Quest.x86": - when: - os: linux store: steam @@ -210383,7 +210990,7 @@ FreeFlight: installDir: FreeFlight: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -210393,7 +211000,7 @@ FreeFly Burning: installDir: FreeFly Burning: {} launch: - /OpenWorldCreative.exe: + "/OpenWorldCreative.exe": - when: - store: steam steam: @@ -210402,11 +211009,11 @@ FreeHolder: installDir: FreeHolder: {} launch: - /FHAlphaMac.app: + "/FHAlphaMac.app": - when: - os: mac store: steam - /FreeHoldera1.exe: + "/FreeHoldera1.exe": - when: - os: windows store: steam @@ -210414,7 +211021,7 @@ FreeHolder: id: 463800 FreeSpace 2: files: - /data/players: + "/data/players": tags: - save when: @@ -210424,7 +211031,7 @@ FreeSpace 2: installDir: Freespace 2: {} launch: - /fs2.exe: + "/fs2.exe": - when: - bit: 32 os: windows @@ -210435,7 +211042,7 @@ FreeStyle Football: installDir: FreeStyleFootball: {} launch: - /Launcher/Launcher.exe: + "/Launcher/Launcher.exe": - when: - os: windows store: steam @@ -210443,7 +211050,7 @@ FreeStyle Football: id: 568810 Freebie: files: - /Project_Freebie/settings.ini: + "/Project_Freebie/settings.ini": tags: - config when: @@ -210451,25 +211058,25 @@ Freebie: installDir: Freebie: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam steam: id: 487220 -'Freebot : Battle for FreeWeb': +"Freebot : Battle for FreeWeb": installDir: Freebot Battle for FreeWeb: {} launch: - /Freebot19.exe: + "/Freebot19.exe": - when: - os: windows store: steam steam: id: 873790 -'Freediver: Triton Down': +"Freediver: Triton Down": files: - /Freediver/Saved/SaveGames: + "/Freediver/Saved/SaveGames": tags: - save when: @@ -210482,7 +211089,7 @@ Freedom Cry: installDir: Freedom Cry: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -210492,7 +211099,7 @@ Freedom Defender: installDir: Freedom Defender: {} launch: - /FD.exe: + "/FD.exe": - when: - os: windows store: steam @@ -210502,11 +211109,11 @@ Freedom Fall: installDir: Freedom Fall: {} launch: - /Freedom Fall.app: + "/Freedom Fall.app": - when: - os: mac store: steam - /moai-sdl.exe: + "/moai-sdl.exe": - when: - os: windows store: steam @@ -210516,7 +211123,7 @@ Freedom Fighter: installDir: Freedom Fighter: {} launch: - /Freedom Fighter.exe: + "/Freedom Fighter.exe": - when: - os: windows store: steam @@ -210524,22 +211131,22 @@ Freedom Fighter: id: 514360 Freedom Fighters: files: - /Freedom.ini: + "/Freedom.ini": tags: - config when: - os: windows - /IO Interactive/Freedom Fighters/ (Re-Release 2020): + "/IO Interactive/Freedom Fighters/ (Re-Release 2020)": tags: - save when: - os: windows - /IO Interactive/Freedom Fighters/Freedom.ini (Re-Release 2020): + "/IO Interactive/Freedom Fighters/Freedom.ini (Re-Release 2020)": tags: - config when: - os: windows - /Freedom Fighters/Profiles/*.dat: + "/Freedom Fighters/Profiles/*.dat": tags: - save when: @@ -210549,7 +211156,7 @@ Freedom Fighters: installDir: Freedom_Fighters: {} launch: - /Launcher.exe: + "/Launcher.exe": - when: - os: windows store: steam @@ -210559,7 +211166,7 @@ Freedom Fighters (2020): installDir: Freedom_Fighters: {} launch: - /Launcher.exe: + "/Launcher.exe": - when: - os: windows store: steam @@ -210569,11 +211176,11 @@ Freedom Finger: installDir: Freedom Finger: {} launch: - /FreedomFinger.app: + "/FreedomFinger.app": - when: - os: mac store: steam - /FreedomFinger.exe: + "/FreedomFinger.exe": - when: - os: windows store: steam @@ -210581,7 +211188,7 @@ Freedom Finger: id: 1005410 Freedom Force: files: - /Data/SaveGames: + "/Data/SaveGames": tags: - save when: @@ -210591,14 +211198,14 @@ Freedom Force: installDir: Freedom Force: {} launch: - /fforce.exe: + "/fforce.exe": - when: - store: steam steam: id: 8880 Freedom Force vs. The 3rd Reich: files: - /Irrational Games/Freedom Force vs the 3rd Reich/User/SaveGames: + "/Irrational Games/Freedom Force vs the 3rd Reich/User/SaveGames": tags: - save when: @@ -210608,7 +211215,7 @@ Freedom Force vs. The 3rd Reich: installDir: Freedom Force vs. the 3rd Reich: {} launch: - /ffvt3r.exe: + "/ffvt3r.exe": - when: - store: steam steam: @@ -210618,15 +211225,15 @@ Freedom Locomotion VR: Freedom Locomotion VR: {} steam: id: 584170 -'Freedom March: Rebel Leader': +"Freedom March: Rebel Leader": installDir: Freedom March: {} launch: - /Freedom March.app/Contents/MacOS/Freedom March: + "/Freedom March.app/Contents/MacOS/Freedom March": - when: - os: mac store: steam - /Freedom March.exe: + "/Freedom March.exe": - when: - os: windows store: steam @@ -210634,43 +211241,43 @@ Freedom Locomotion VR: id: 823740 Freedom Planet: files: - /*.cfg: + "/*.cfg": tags: - config when: - os: windows - os: linux - /file*.sav: + "/file*.sav": tags: - save when: - os: windows - /game/file*.sav: + "/game/file*.sav": tags: - save when: - os: linux - /game/records.dat: + "/game/records.dat": tags: - save when: - os: linux - /records.dat: + "/records.dat": tags: - save when: - os: windows - /userdata//248310/remote/*.cfg: + "/userdata//248310/remote/*.cfg": tags: - config when: - store: steam - /userdata//248310/remote/file*.sav: + "/userdata//248310/remote/file*.sav": tags: - save when: - store: steam - /userdata//248310/remote/records.dat: + "/userdata//248310/remote/records.dat": tags: - save when: @@ -210680,15 +211287,15 @@ Freedom Planet: installDir: Freedom Planet: {} launch: - /Freedom Planet.app: + "/Freedom Planet.app": - when: - os: mac store: steam - /fp.exe: + "/fp.exe": - when: - os: windows store: steam - /run.sh: + "/run.sh": - when: - os: linux store: steam @@ -210696,17 +211303,17 @@ Freedom Planet: id: 248310 Freedom Planet 2: files: - /AppData/LocalLow/GalaxyTrail/Freedom Planet 2: + "/AppData/LocalLow/GalaxyTrail/Freedom Planet 2": tags: - save when: - os: windows - /AppData/LocalLow/GalaxyTrail/Freedom Planet 2/controls.ini: + "/AppData/LocalLow/GalaxyTrail/Freedom Planet 2/controls.ini": tags: - config when: - os: windows - /AppData/LocalLow/GalaxyTrail/Freedom Planet 2/settings.ini: + "/AppData/LocalLow/GalaxyTrail/Freedom Planet 2/settings.ini": tags: - config when: @@ -210714,11 +211321,11 @@ Freedom Planet 2: installDir: Freedom Planet 2: {} launch: - /FP2.exe: + "/FP2.exe": - when: - os: windows store: steam - /Freedom Planet 2.app: + "/Freedom Planet 2.app": - when: - os: mac store: steam @@ -210728,31 +211335,31 @@ Freedom Poopie: installDir: Freedom Poopie: {} launch: - /FreedomPoopiePC.app: + "/FreedomPoopiePC.app": - when: - os: mac store: steam - /FreedomPoopiePC/Binaries/Linux/FreedomPoopieLinux: + "/FreedomPoopiePC/Binaries/Linux/FreedomPoopieLinux": - when: - os: linux store: steam - /FreedomPoopiePC32.exe: + "/FreedomPoopiePC32.exe": - when: - bit: 32 os: windows store: steam - /FreedomPoopiePC64.exe: + "/FreedomPoopiePC64.exe": - when: - bit: 64 os: windows store: steam steam: id: 400130 -'Freedom: A Time to Reckon': +"Freedom: A Time to Reckon": installDir: Freedom A Time to Reckon: {} launch: - /Freedom.exe: + "/Freedom.exe": - when: - store: steam steam: @@ -210761,11 +211368,11 @@ Freefall: installDir: Freefall: {} launch: - /Freefall.app: + "/Freefall.app": - when: - os: mac store: steam - /Freefall.exe: + "/Freefall.exe": - when: - os: windows store: steam @@ -210775,7 +211382,7 @@ Freefall 3050AD: installDir: Freefall 3050AD: {} launch: - /PCFF.exe: + "/PCFF.exe": - when: - os: windows store: steam @@ -210785,16 +211392,16 @@ Freefall Tournament: installDir: Freefall Tournament: {} launch: - /MacOSXClient/freefalltournament.app: + "/MacOSXClient/freefalltournament.app": - when: - os: mac store: steam - /WindowsClient/freefalltournament.exe: + "/WindowsClient/freefalltournament.exe": - when: - bit: 64 os: windows store: steam - /WindowsClient/freefalltournament32.exe: + "/WindowsClient/freefalltournament32.exe": - when: - bit: 32 os: windows @@ -210803,29 +211410,29 @@ Freefall Tournament: id: 849940 Freelancer: files: - /DATA: + "/DATA": tags: - config when: - os: windows - /My Games/Freelancer/Accts: + "/My Games/Freelancer/Accts": tags: - save when: - os: windows - /My Games/Freelancer/PerfOptions.ini: + "/My Games/Freelancer/PerfOptions.ini": tags: - config when: - os: windows -'Freeman: Guerrilla Warfare': +"Freeman: Guerrilla Warfare": files: - /AppData/LocalLow/KK Game Studio/Freeman Guerrilla Warfare: + "/AppData/LocalLow/KK Game Studio/Freeman Guerrilla Warfare": tags: - save when: - os: windows - /AppData/LocalLow/KK Game Studio/Freeman Guerrilla Warfare/settings.txt: + "/AppData/LocalLow/KK Game Studio/Freeman Guerrilla Warfare/settings.txt": tags: - config when: @@ -210835,11 +211442,11 @@ Freelancer: installDir: Freeman Guerrilla Warfare: {} launch: - /Freeman Guerrilla Warfare.exe: + "/Freeman Guerrilla Warfare.exe": - when: - os: windows store: steam - /StartFGW.exe: + "/StartFGW.exe": - when: - os: windows store: steam @@ -210848,9 +211455,9 @@ Freelancer: Freemium Way: steam: id: 504030 -'Freestyle2: Street Basketball': +"Freestyle2: Street Basketball": files: - /options.ini: + "/options.ini": tags: - config when: @@ -210858,7 +211465,7 @@ Freemium Way: installDir: FreeStyle2: {} launch: - /LauncherSteam.exe: + "/LauncherSteam.exe": - when: - os: windows store: steam @@ -210866,12 +211473,12 @@ Freemium Way: id: 339610 Freeways: files: - /Library/Application Support/CaptainGames/Freeways: + "/Library/Application Support/CaptainGames/Freeways": tags: - save when: - os: mac - /CaptainGames/Freeways: + "/CaptainGames/Freeways": tags: - save when: @@ -210879,11 +211486,11 @@ Freeways: installDir: Freeways: {} launch: - /Freeways.app/Contents/MacOS/Freeways: + "/Freeways.app/Contents/MacOS/Freeways": - when: - os: mac store: steam - /Freeways.exe: + "/Freeways.exe": - when: - os: windows store: steam @@ -210902,7 +211509,7 @@ Freeze Tag Fun Pack 2: id: 39392 FreezeME: files: - /Appdata/LocalLow/Rainy Night Creations/FreezeME: + "/Appdata/LocalLow/Rainy Night Creations/FreezeME": tags: - save when: @@ -210915,21 +211522,21 @@ FreezeME: installDir: FreezeME: {} launch: - /FreezeME_Linux.x86: + "/FreezeME_Linux.x86": - when: - bit: 32 os: linux store: steam - /FreezeME_Linux.x86_64: + "/FreezeME_Linux.x86_64": - when: - bit: 64 os: linux store: steam - /FreezeME_TEST_MACOS.app/Contents/MacOS/FreezeME: + "/FreezeME_TEST_MACOS.app/Contents/MacOS/FreezeME": - when: - os: mac store: steam - /freeze.exe: + "/freeze.exe": - when: - os: windows store: steam @@ -210939,7 +211546,7 @@ Freezeer: installDir: Freezeer: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -210947,7 +211554,7 @@ Freezeer: id: 872090 Freight Tycoon Inc.: files: - /nikita/tracktycoon: + "/nikita/tracktycoon": tags: - save when: @@ -210957,11 +211564,11 @@ Freight Tycoon Inc.: installDir: FreightTycoon: {} launch: - /Tycoon.exe: + "/Tycoon.exe": - when: - os: windows store: steam - - arguments: '-s' + - arguments: "-s" when: - os: windows store: steam @@ -210971,7 +211578,7 @@ Frenzy Retribution: installDir: FrenzyRetribution: {} launch: - /FrenzyRetribution.exe: + "/FrenzyRetribution.exe": - when: - os: windows store: steam @@ -210986,33 +211593,33 @@ Frequent Flyer: installDir: FrequentFlyer: {} launch: - /FrequentFlyer.app: + "/FrequentFlyer.app": - when: - os: mac store: steam - /frequentflyer: + "/frequentflyer": - when: - os: linux store: steam - /frequentflyer.exe: + "/frequentflyer.exe": - when: - os: windows store: steam steam: id: 554150 -'Frequent Flyer: A Long Distance Love Story': +"Frequent Flyer: A Long Distance Love Story": installDir: Frequent Flyer A Long Distance Love Story: {} launch: - /Frequent_Flyer.app: + "/Frequent_Flyer.app": - when: - os: mac store: steam - /Frequent_Flyer.exe: + "/Frequent_Flyer.exe": - when: - os: windows store: steam - /Frequent_Flyer.sh: + "/Frequent_Flyer.sh": - when: - os: linux store: steam @@ -211022,11 +211629,11 @@ Fresh Body: installDir: FreshBody: {} launch: - /freshbody.app: + "/freshbody.app": - when: - os: mac store: steam - /freshbody.exe: + "/freshbody.exe": - when: - os: windows store: steam @@ -211036,11 +211643,11 @@ Freshly Frosted: installDir: Freshly_Frosted: {} launch: - /Freshly Frosted.exe: + "/Freshly Frosted.exe": - when: - os: windows store: steam - /FreshlyFrosted.app/Contents/MacOS/FreshlyFrosted: + "/FreshlyFrosted.app/Contents/MacOS/FreshlyFrosted": - when: - os: mac store: steam @@ -211050,7 +211657,7 @@ Freshly fried shrimps seemed hot additionally named noth: installDir: FreshlyFriedShrimps: {} launch: - /achichinoth.exe: + "/achichinoth.exe": - when: - store: steam steam: @@ -211059,11 +211666,11 @@ Freshman Year: installDir: Freshman Year: {} launch: - /freshmanyear.app: + "/freshmanyear.app": - when: - os: mac store: steam - /freshmanyear/Freshman Year.exe: + "/freshmanyear/Freshman Year.exe": - when: - os: windows store: steam @@ -211071,7 +211678,7 @@ Freshman Year: id: 364450 Frets on Fire: files: - /fretsonfire/fretsonfire.ini: + "/fretsonfire/fretsonfire.ini": tags: - config when: @@ -211080,15 +211687,15 @@ Freud Gate: installDir: Freud Gate: {} launch: - /FreudGate.exe: + "/FreudGate.exe": - when: - os: windows store: steam steam: id: 1161270 -'Frick, Inc.': +"Frick, Inc.": files: - /AppData/LocalLow/Kenney/Frick Inc/Frick Inc.save: + "/AppData/LocalLow/Kenney/Frick Inc/Frick Inc.save": tags: - config - save @@ -211097,11 +211704,11 @@ Freud Gate: installDir: Frick Inc: {} launch: - /Frick Inc.exe: + "/Frick Inc.exe": - when: - os: windows store: steam - /frickInc.x86_64: + "/frickInc.x86_64": - when: - os: linux store: steam @@ -211111,28 +211718,28 @@ Friday Night Bullet Arena: installDir: Friday Night Bullet Arena: {} launch: - /fnba.app: + "/fnba.app": - when: - os: mac store: steam - /fnba.exe: + "/fnba.exe": - when: - os: windows store: steam - /run.sh: + "/run.sh": - when: - os: linux store: steam steam: id: 513840 -Friday Night Funkin': +"Friday Night Funkin'": files: - /Users/user/Library/Application Support/ninjamuffin99/Funkin/ninjamuffin99/funkin.sol: + "/Users/user/Library/Application Support/ninjamuffin99/Funkin/ninjamuffin99/funkin.sol": tags: - save when: - os: mac - /ninjamuffin99/Funkin/ninjamuffin99/funkin.sol: + "/ninjamuffin99/Funkin/ninjamuffin99/funkin.sol": tags: - save when: @@ -211142,14 +211749,14 @@ Friday Night Funkin': - save when: - os: linux -'Friday the 13th: Killer Puzzle': +"Friday the 13th: Killer Puzzle": files: - /AppData/LocalLow/Blue Wizard/Friday the 13th/f13_save.sav: + "/AppData/LocalLow/Blue Wizard/Friday the 13th/f13_save.sav": tags: - save when: - os: windows - /AppData/LocalLow/Blue Wizard/Friday the 13th/settings.dat: + "/AppData/LocalLow/Blue Wizard/Friday the 13th/settings.dat": tags: - config when: @@ -211157,19 +211764,19 @@ Friday Night Funkin': installDir: Friday the 13th Killer Puzzle: {} launch: - /F13.app: + "/F13.app": - when: - os: mac store: steam - /F13.exe: + "/F13.exe": - when: - os: windows store: steam steam: id: 795100 -'Friday the 13th: The Game': +"Friday the 13th: The Game": files: - /SummerCamp/Saved/Config/WindowsNoEditor: + "/SummerCamp/Saved/Config/WindowsNoEditor": tags: - config when: @@ -211177,7 +211784,7 @@ Friday Night Funkin': installDir: F13Game: {} launch: - /EAC_Launcher.exe: + "/EAC_Launcher.exe": - when: - bit: 64 os: windows @@ -211188,7 +211795,7 @@ Friday 星期五部门: installDir: Friday 星期五部门: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -211203,7 +211810,7 @@ FriendZoned Archer: installDir: FriendZoned Archer: {} launch: - /FriendZoned Archer.exe: + "/FriendZoned Archer.exe": - when: - os: windows store: steam @@ -211219,15 +211826,15 @@ Friendship Club: installDir: Friendship Club: {} launch: - /Friendship Club.app: + "/Friendship Club.app": - when: - os: mac store: steam - /friendshipclub.exe: + "/friendshipclub.exe": - when: - os: windows store: steam - /game: + "/game": - when: - bit: 64 os: linux @@ -211238,7 +211845,7 @@ Fright: installDir: Fright: {} launch: - /HorrorHouse.exe: + "/HorrorHouse.exe": - when: - store: steam steam: @@ -211247,7 +211854,7 @@ Fright Light: installDir: Fright Light: {} launch: - /LightsOnCrazies.exe: + "/LightsOnCrazies.exe": - when: - store: steam steam: @@ -211256,11 +211863,11 @@ FrightShow Fighter: installDir: FrightShow Fighter: {} launch: - /FrightShowFighter.exe: + "/FrightShowFighter.exe": - when: - os: windows store: steam - /frightshowfighter: + "/frightshowfighter": - when: - os: mac store: steam @@ -211270,7 +211877,7 @@ Frightened Beetles: installDir: Frightened Beetles: {} launch: - /Frightened_Beetles.exe: + "/Frightened_Beetles.exe": - when: - os: windows store: steam @@ -211291,8 +211898,8 @@ Fringes of the Empire: installDir: Fringes of the Empire: {} launch: - /Fringes.exe: - - arguments: '-wintitle \"Fringes of the Empire\"' + "/Fringes.exe": + - arguments: "-wintitle \\\"Fringes of the Empire\\\"" when: - os: windows store: steam @@ -211302,7 +211909,7 @@ Frio - Lost in Old Town: installDir: Frioone: {} launch: - /frioone.exe: + "/frioone.exe": - when: - os: windows store: steam @@ -211312,7 +211919,7 @@ Frio2 - Memory of My Sister: installDir: Frio2 - Memory of my sister: {} launch: - /friotwo.exe: + "/friotwo.exe": - when: - os: windows store: steam @@ -211322,7 +211929,7 @@ Frio3 - Parting and Meeting: installDir: Frio3 Parting and Meeting: {} launch: - /friothree.exe: + "/friothree.exe": - when: - os: windows store: steam @@ -211332,11 +211939,11 @@ Frisky Business: installDir: Frisky Business: {} launch: - /FriskyBusiness.app: + "/FriskyBusiness.app": - when: - os: mac store: steam - /FriskyBusiness.exe: + "/FriskyBusiness.exe": - when: - os: windows store: steam @@ -211347,15 +211954,18 @@ Frisky Business: - save steam: id: 588240 -'Frisky Business: Episode 2': +"Frisky Business: Episode 2": steam: id: 794700 Fritz Chess 14: installDir: ChessBase: {} launch: - /ChessProgram14/ChessProgram14.exe: + "/ChessProgram14/ChessProgram14.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam @@ -211365,8 +211975,8 @@ Fritz Chess 15: installDir: FritzChess 15: {} launch: - /ChessProgram15/ChessProgram15.exe: - - arguments: '-Fritz15' + "/ChessProgram15/ChessProgram15.exe": + - arguments: "-Fritz15" when: - os: windows store: steam @@ -211376,8 +211986,8 @@ Fritz Chess 16: installDir: Fritz Chess 16: {} launch: - /ChessProgram16/ChessProgram16.exe: - - arguments: '-Fritz16Steam' + "/ChessProgram16/ChessProgram16.exe": + - arguments: "-Fritz16Steam" when: - os: windows store: steam @@ -211387,8 +211997,8 @@ Fritz Chess 17: installDir: FritzChess 17 SteamEdition: {} launch: - /ChessProgram17/ChessProgram17.exe: - - arguments: '-Fritz17Steam' + "/ChessProgram17/ChessProgram17.exe": + - arguments: "-Fritz17Steam" when: - os: windows store: steam @@ -211398,8 +212008,8 @@ Fritz Chess 18: installDir: FritzChess 18 SteamEdition: {} launch: - /ChessProgram18/ChessProgram18.exe: - - arguments: '-Fritz18Steam' + "/ChessProgram18/ChessProgram18.exe": + - arguments: "-Fritz18Steam" when: - os: windows store: steam @@ -211409,7 +212019,7 @@ Fritz for Fun 13: installDir: Fritz for Fun 13: {} launch: - /ChessProgram13/ChessProgram13.exe: + "/ChessProgram13/ChessProgram13.exe": - when: - os: windows store: steam @@ -211419,7 +212029,7 @@ Frizzy: installDir: Frizzy: {} launch: - /windows/Frizzy_Steam_v1.5/Frizzy.exe: + "/windows/Frizzy_Steam_v1.5/Frizzy.exe": - when: - os: windows store: steam @@ -211429,11 +212039,11 @@ Frog Climbers: installDir: Frog Climbers: {} launch: - /FrogClimbers.app: + "/FrogClimbers.app": - when: - os: mac store: steam - /FrogClimbers.exe: + "/FrogClimbers.exe": - when: - os: windows store: steam @@ -211447,15 +212057,15 @@ Frog Demon: installDir: Frog Demon: {} launch: - /FrogDemon.exe: + "/FrogDemon.exe": - when: - os: windows store: steam steam: id: 810770 -'Frog Detective 2: The Case of the Invisible Wizard': +"Frog Detective 2: The Case of the Invisible Wizard": files: - /AppData/LocalLow/Worm Club/Frog Detective 2/frog.sav: + "/AppData/LocalLow/Worm Club/Frog Detective 2/frog.sav": tags: - save when: @@ -211463,11 +212073,11 @@ Frog Demon: installDir: Frog_Detective_2: {} launch: - /Frog_Detective_2.app: + "/Frog_Detective_2.app": - when: - os: mac store: steam - /Frog_Detective_2.exe: + "/Frog_Detective_2.exe": - when: - os: windows store: steam @@ -211477,23 +212087,23 @@ Frog Demon: - config steam: id: 1047220 -'Frog Detective 3: Corruption at Cowboy County': +"Frog Detective 3: Corruption at Cowboy County": installDir: Frog_Detective_3: {} launch: - /Frog_Detective_3.app: + "/Frog_Detective_3.app": - when: - os: mac store: steam - /Frog_Detective_3.exe: + "/Frog_Detective_3.exe": - when: - os: windows store: steam steam: id: 1171320 -'Frog Fractions: Game of the Decade Edition': +"Frog Fractions: Game of the Decade Edition": files: - /AppData/LocalLow/Twinbeard/Frog Fractions Game of the Decade Edition/saved.!!!: + "/AppData/LocalLow/Twinbeard/Frog Fractions Game of the Decade Edition/saved.!!!": tags: - save when: @@ -211501,11 +212111,11 @@ Frog Demon: installDir: Frog Fractions Game of the Decade Edition: {} launch: - /FFGOTDE.app: + "/FFGOTDE.app": - when: - os: mac store: steam - /Frog Fractions Game of the Decade Edition.exe: + "/Frog Fractions Game of the Decade Edition.exe": - when: - os: windows store: steam @@ -211519,15 +212129,15 @@ Frog Hop: installDir: Frog Hop: {} launch: - /FrogHop.app/Contents/MacOS/Frog_Hop: + "/FrogHop.app/Contents/MacOS/Frog_Hop": - when: - os: mac store: steam - /Froghop.exe: + "/Froghop.exe": - when: - os: windows store: steam - /assets/launch.sh: + "/assets/launch.sh": - when: - os: linux store: steam @@ -211537,7 +212147,7 @@ Frog Out!: installDir: Frog Out!: {} launch: - /FrogOut.exe: + "/FrogOut.exe": - when: - os: windows store: steam @@ -211547,11 +212157,11 @@ Frog Struggles: installDir: Sokpop S03 Frog struggles: {} launch: - /frogstruggles_mac.app: + "/frogstruggles_mac.app": - when: - os: mac store: steam - /frogstruggles_windows.exe: + "/frogstruggles_windows.exe": - when: - os: windows store: steam @@ -211561,7 +212171,7 @@ Frog X Bird: installDir: FROG X BIRD: {} launch: - /FROGXBIRD.exe: + "/FROGXBIRD.exe": - when: - os: windows store: steam @@ -211571,8 +212181,11 @@ Frog X Log: installDir: Frog X Log: {} launch: - /nw.exe: + "/nw.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam @@ -211582,7 +212195,7 @@ FrogStatue: installDir: FrogStatue: {} launch: - /FrogStatue.exe: + "/FrogStatue.exe": - when: - os: windows store: steam @@ -211594,9 +212207,9 @@ Frogger (1997): tags: - config - save -'Frogger 2: Swampy''s Revenge': +"Frogger 2: Swampy's Revenge": files: - /savedata/savegame.dat: + "/savedata/savegame.dat": tags: - save when: @@ -211607,7 +212220,7 @@ Frogger (1997): - config Frogger Beyond: files: - /data/others/FNG.sbx: + "/data/others/FNG.sbx": tags: - save when: @@ -211616,49 +212229,49 @@ Frogger Beyond: HKEY_LOCAL_MACHINE/SOFTWARE/WOW6432Node/KONAMI/Frogger Beyond: tags: - config -'Frogger''s Adventures: The Rescue': +"Frogger's Adventures: The Rescue": files: - /Frogger's Adventure: + "/Frogger's Adventure": tags: - save when: - os: windows registry: - HKEY_CURRENT_USER/Software/KONAMI/Frogger's Adventures: + "HKEY_CURRENT_USER/Software/KONAMI/Frogger's Adventures": tags: - config -Frogger's Crackout: +"Frogger's Crackout": files: - /Packages/49E9872B.150304977B57C_axt76zvwedqv0: + "/Packages/49E9872B.150304977B57C_axt76zvwedqv0": tags: - config - save when: - os: windows store: microsoft -'Frogger: Ancient Shadow': +"Frogger: Ancient Shadow": files: - /save*.sav: + "/save*.sav": tags: - save when: - os: windows -'Frogger: The Great Quest': +"Frogger: The Great Quest": files: - /LoadSave: + "/LoadSave": tags: - save when: - os: windows registry: - 'HKEY_CURRENT_USER/Software/Konami of America/Frogger: The Great Quest/Options': + "HKEY_CURRENT_USER/Software/Konami of America/Frogger: The Great Quest/Options": tags: - config Froggo: installDir: Froggo: {} launch: - /Froggo.exe: + "/Froggo.exe": - when: - store: steam steam: @@ -211668,7 +212281,7 @@ Froggy Boi: id: 852070 Froggy Castle: files: - /data/settings.txt: + "/data/settings.txt": tags: - save when: @@ -211678,7 +212291,7 @@ Frogmonster: id: 1853760 Frogun: files: - /.config/unity3d/Molegato/Frogun: + "/.config/unity3d/Molegato/Frogun": tags: - save when: @@ -211697,11 +212310,11 @@ Frogun: installDir: Frogun: {} launch: - /Linux/Frogun: + "/Linux/Frogun": - when: - os: linux store: steam - /Windows/Frogun.exe: + "/Windows/Frogun.exe": - when: - os: windows store: steam @@ -211723,15 +212336,15 @@ From Beyond Prologue: installDir: From Beyond Prologue: {} launch: - /Contents/MacOS/Prologue: + "/Contents/MacOS/Prologue": - when: - os: mac store: steam - /Prologue.exe: + "/Prologue.exe": - when: - os: windows store: steam - /Prologue.x86_64: + "/Prologue.x86_64": - when: - bit: 64 os: linux @@ -211742,7 +212355,7 @@ From Darkness: installDir: FromDarkness: {} launch: - /FromDarkness.exe: + "/FromDarkness.exe": - when: - bit: 64 os: windows @@ -211751,29 +212364,29 @@ From Darkness: id: 918550 From Dusk Till Dawn: files: - /Config.ini: + "/Config.ini": tags: - config when: - os: windows - /Slot*.fdd: + "/Slot*.fdd": tags: - save when: - os: windows From Dust: files: - /DUST/DustSave/Ingame: + "/DUST/DustSave/Ingame": tags: - save when: - os: windows - /Dust/DustSave: + "/Dust/DustSave": tags: - save when: - os: windows - /Dust/profiles: + "/Dust/profiles": tags: - config when: @@ -211781,8 +212394,8 @@ From Dust: installDir: From Dust: {} launch: - /From_Dust.exe: - - arguments: '-uplay_steam_mode' + "/From_Dust.exe": + - arguments: "-uplay_steam_mode" when: - store: steam steam: @@ -211791,11 +212404,11 @@ From Head to Toe: installDir: From Head to Toe: {} launch: - /From Head to Toe.app: + "/From Head to Toe.app": - when: - os: mac store: steam - /From Head to Toe.exe: + "/From Head to Toe.exe": - when: - os: windows store: steam @@ -211809,15 +212422,15 @@ From Orbit: installDir: From Orbit: {} launch: - /FromOrbit.app/Contents/MacOS/FromOrbit: + "/FromOrbit.app/Contents/MacOS/FromOrbit": - when: - os: mac store: steam - /FromOrbit.exe: + "/FromOrbit.exe": - when: - os: windows store: steam - /FromOrbit.x86: + "/FromOrbit.x86": - when: - os: linux store: steam @@ -211827,20 +212440,20 @@ From Shadows: installDir: FromShadows: {} launch: - /From Shadows.app: + "/From Shadows.app": - when: - os: mac store: steam - /From Shadows.exe: + "/From Shadows.exe": - when: - os: windows store: steam - /From Shadows.x86: + "/From Shadows.x86": - when: - bit: 32 os: linux store: steam - /From Shadows.x86_64: + "/From Shadows.x86_64": - when: - bit: 64 os: linux @@ -211856,11 +212469,11 @@ From Village to Empire: installDir: From Village to Empire: {} launch: - /fvte.exe: + "/fvte.exe": - when: - os: windows store: steam - /run.sh: + "/run.sh": - when: - os: linux store: steam @@ -211870,7 +212483,7 @@ From lamer to guru: installDir: FLTG: {} launch: - /fltg.exe: + "/fltg.exe": - when: - os: windows store: steam @@ -211878,7 +212491,7 @@ From lamer to guru: id: 1122770 From the Depths: files: - /From The Depths/Player Profiles: + "/From The Depths/Player Profiles": tags: - save when: @@ -211886,20 +212499,20 @@ From the Depths: installDir: From The Depths: {} launch: - /From_The_Depths.app: + "/From_The_Depths.app": - when: - os: mac store: steam - /From_The_Depths.exe: + "/From_The_Depths.exe": - when: - os: windows store: steam - /From_The_Depths.x86: + "/From_The_Depths.x86": - when: - bit: 32 os: linux store: steam - /From_The_Depths.x86_64: + "/From_The_Depths.x86_64": - when: - bit: 64 os: linux @@ -211914,7 +212527,7 @@ From the Sky: installDir: From The Sky: {} launch: - /From The Sky.exe: + "/From The Sky.exe": - when: - store: steam steam: @@ -211924,7 +212537,7 @@ Front Defense: Front Defense: {} steam: id: 396560 -'Front Defense: Heroes': +"Front Defense: Heroes": installDir: Front Defense Heroes: {} steam: @@ -211933,19 +212546,19 @@ Front Lines: installDir: Front Lines: {} launch: - /Contents/MacOS/FrontLines3.1: + "/Contents/MacOS/FrontLines3.1": - when: - os: mac store: steam - /Front Lines.exe: + "/Front Lines.exe": - when: - os: windows store: steam steam: id: 1084980 -'Front Mission 1st: Remake': +"Front Mission 1st: Remake": files: - /AppData/LocalLow/Forever Entertainment SA/FRONT MISSION 1st Remake: + "/AppData/LocalLow/Forever Entertainment SA/FRONT MISSION 1st Remake": tags: - save when: @@ -211958,34 +212571,34 @@ Front Lines: installDir: FRONT MISSION 1st Remake: {} launch: - /FRONT MISSION 1st Remake.exe: + "/FRONT MISSION 1st Remake.exe": - when: - os: windows store: steam registry: - 'HKEY_CURRENT_USER/Software/Forever Entertainment SA/FRONT MISSION 1st: Remake': + "HKEY_CURRENT_USER/Software/Forever Entertainment SA/FRONT MISSION 1st: Remake": tags: - config steam: id: 2399730 Front Mission Evolved: files: - /Front Mission Evolved: + "/Front Mission Evolved": tags: - config when: - os: windows id: steamExtra: - - 43013 - - 43011 - - 43014 - 43005 - 43006 + - 43011 + - 43013 + - 43014 installDir: Front Mission Evolved: {} launch: - /FrontMissionEvolved.exe: + "/FrontMissionEvolved.exe": - when: - store: steam steam: @@ -211994,7 +212607,7 @@ Front Office Football Eight: installDir: Front Office Football Eight: {} launch: - /Front Office Football Eight.exe: + "/Front Office Football Eight.exe": - when: - os: windows store: steam @@ -212004,7 +212617,7 @@ Front Office Football Seven: installDir: Front Office Football Seven: {} launch: - /Front Office Football Seven.exe: + "/Front Office Football Seven.exe": - when: - os: windows store: steam @@ -212014,7 +212627,7 @@ Front Page Sports Football: installDir: FrontPageSportsFootball: {} launch: - /Client.exe: + "/Client.exe": - when: - store: steam steam: @@ -212023,11 +212636,11 @@ Front Wars: installDir: Front Wars: {} launch: - /FrontWars.app: + "/FrontWars.app": - when: - os: mac store: steam - /FrontWars.exe: + "/FrontWars.exe": - when: - os: windows store: steam @@ -212037,20 +212650,20 @@ Frontier: installDir: Frontier: {} launch: - /Frontier.app/Contents/MacOS/Frontier: + "/Frontier.app/Contents/MacOS/Frontier": - when: - os: mac store: steam - /Frontier.exe: + "/Frontier.exe": - when: - os: windows store: steam - /Frontier.x86: + "/Frontier.x86": - when: - bit: 32 os: linux store: steam - /Frontier.x86_64: + "/Frontier.x86_64": - when: - bit: 64 os: linux @@ -212061,14 +212674,14 @@ Frontier - TRS: installDir: Frontier - Tactical Response Squad: {} launch: - /FTRS.exe: + "/FTRS.exe": - when: - store: steam steam: id: 1217480 -'Frontier Hunter: Erza''s Wheel of Fortune': +"Frontier Hunter: Erza's Wheel of Fortune": files: - /AppData/LocalLow/IceSitruuna/Frontier_Hunter/PlayerPrefs: + "/AppData/LocalLow/IceSitruuna/Frontier_Hunter/PlayerPrefs": tags: - save when: @@ -212076,14 +212689,16 @@ Frontier - TRS: installDir: Frontier Hunter: {} launch: - /Frontier_Hunter.app: + "/Frontier_Hunter.app": - when: - os: mac store: steam - /Frontier_Hunter.exe: + "/Frontier_Hunter.exe": - when: - os: windows store: steam + - os: linux + store: steam registry: HKEY_CURRENT_USER/Software/IceSitruuna/Frontier_Hunter: tags: @@ -212092,7 +212707,7 @@ Frontier - TRS: id: 1429500 Frontier Pilot Simulator: files: - /Razar/Frontier Pilot Simulator/Saves: + "/Razar/Frontier Pilot Simulator/Saves": tags: - config when: @@ -212100,7 +212715,7 @@ Frontier Pilot Simulator: installDir: Frontier Pilot Simulator: {} launch: - /Frontier Pilot Simulator.exe: + "/Frontier Pilot Simulator.exe": - when: - os: windows store: steam @@ -212110,7 +212725,7 @@ Frontier Runner: installDir: Frontier Runner: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -212123,7 +212738,7 @@ Frontier VR: id: 608190 Frontiers: files: - /AppData/LocalLow/AADProductions/Frontiers/SaveGames: + "/AppData/LocalLow/AADProductions/Frontiers/SaveGames": tags: - save when: @@ -212131,16 +212746,19 @@ Frontiers: installDir: FRONTIERS: {} launch: - /Frontiers.app: + "/Frontiers.app": - when: - os: mac store: steam - /Frontiers.exe: + "/Frontiers.exe": - when: - bit: 32 os: windows store: steam - /Frontiers.x86: + - bit: 64 + os: windows + store: steam + "/Frontiers.x86": - when: - os: linux store: steam @@ -212150,7 +212768,7 @@ Frontiers.io: installDir: Frontiers.io: {} launch: - /Frontiers.io.exe: + "/Frontiers.io.exe": - when: - os: windows store: steam @@ -212168,60 +212786,60 @@ Frontline Zed: installDir: Frontline Zed: {} launch: - /FrontlineZed.exe: + "/FrontlineZed.exe": - when: - bit: 64 os: windows store: steam steam: id: 915490 -'Frontline: Longest Day': +"Frontline: Longest Day": installDir: Frontline Longest Day: {} launch: - /autorun.exe: + "/autorun.exe": - when: - os: windows store: steam steam: id: 312400 -'Frontline: Road to Moscow': +"Frontline: Road to Moscow": installDir: Frontline Road to Moscow: {} launch: - /autorun.exe: + "/autorun.exe": - when: - store: steam steam: id: 306620 -'Frontline: The Great Patriotic War': +"Frontline: The Great Patriotic War": installDir: Frontline The Great Patriotic War: {} launch: - /PW.exe: + "/PW.exe": - when: - os: windows store: steam steam: id: 1206110 -'Frontline: Western Front': +"Frontline: Western Front": installDir: Frontline Western Front: {} launch: - /Frontline Western Front.exe: + "/Frontline Western Front.exe": - when: - os: windows store: steam steam: id: 1147490 -'Frontlines: Fuel of War': +"Frontlines: Fuel of War": files: - /My Games/Frontlines - Fuel of War/GCGame/Config: + "/My Games/Frontlines - Fuel of War/GCGame/Config": tags: - config when: - os: windows - /My Games/Frontlines - Fuel of War/GCGame/Save: + "/My Games/Frontlines - Fuel of War/GCGame/Save": tags: - save when: @@ -212229,30 +212847,30 @@ Frontline Zed: installDir: Frontlines Fuel of War: {} launch: - /Binaries/ffow.exe: + "/Binaries/ffow.exe": - when: - store: steam - workingDir: /Binaries + workingDir: "/Binaries" steam: id: 9460 Frost: installDir: Frost: {} launch: - /Frost.app: + "/Frost.app": - when: - os: mac store: steam - /Frost.exe: + "/Frost.exe": - when: - os: windows store: steam - /Frost.x86: + "/Frost.x86": - when: - bit: 32 os: linux store: steam - /Frost.x86_64: + "/Frost.x86_64": - when: - bit: 64 os: linux @@ -212263,7 +212881,7 @@ FrostRunner: installDir: FrostRunner: {} launch: - /FrostRunner.exe: + "/FrostRunner.exe": - when: - os: windows store: steam @@ -212272,14 +212890,14 @@ FrostRunner: Frostage: steam: id: 920860 -'Frostbite: Deadly Climate': +"Frostbite: Deadly Climate": files: - /Frostbite_AlexO/Saved/Config: + "/Frostbite_AlexO/Saved/Config": tags: - config when: - os: windows - /Frostbite_AlexO/Saved/SaveGames: + "/Frostbite_AlexO/Saved/SaveGames": tags: - save when: @@ -212287,7 +212905,7 @@ Frostage: installDir: FROSTBITE Deadly Climate: {} launch: - /Frostbite_AlexO.exe: + "/Frostbite_AlexO.exe": - when: - os: windows store: steam @@ -212297,7 +212915,7 @@ Frostford: installDir: Frostford: {} launch: - /Frostford.exe: + "/Frostford.exe": - when: - os: windows store: steam @@ -212305,38 +212923,38 @@ Frostford: id: 1213890 Frostpunk: files: - /Library/Application Support/11bitstudios/FrostPunk: + "/Library/Application Support/11bitstudios/FrostPunk": tags: - config when: - os: mac - /Library/Application Support/11bitstudios/FrostPunk/Default/saves: + "/Library/Application Support/11bitstudios/FrostPunk/Default/saves": tags: - save when: - os: mac - /userdata//323190/remote/saves: + "/userdata//323190/remote/saves": tags: - save when: - store: steam - /11bitstudios/Frostpunk: + "/11bitstudios/Frostpunk": tags: - config when: - os: windows - /11bitstudios/Frostpunk/Default/saves: + "/11bitstudios/Frostpunk/Default/saves": tags: - save when: - os: windows - /Packages/11bitstudios.Frostpunk_gwy9gn5q9j1y6/LocalState: + "/Packages/11bitstudios.Frostpunk_gwy9gn5q9j1y6/LocalState": tags: - config when: - os: windows store: microsoft - /Packages/11bitstudios.Frostpunk_gwy9gn5q9j1y6/LocalState/saves: + "/Packages/11bitstudios.Frostpunk_gwy9gn5q9j1y6/LocalState/saves": tags: - save when: @@ -212347,11 +212965,11 @@ Frostpunk: installDir: Frostpunk: {} launch: - /Frostpunk.app: + "/Frostpunk.app": - when: - os: mac store: steam - /Frostpunk.exe: + "/Frostpunk.exe": - when: - bit: 64 os: windows @@ -212367,11 +212985,11 @@ Frosty Kiss: installDir: Frosty Kiss: {} launch: - /frosty kiss STEAM BUILD.exe: + "/frosty kiss STEAM BUILD.exe": - when: - os: windows store: steam - /frosty kiss STEAM BUILD.sh: + "/frosty kiss STEAM BUILD.sh": - when: - os: linux store: steam @@ -212381,7 +212999,7 @@ Frosty Nights: installDir: Frosty Nights: {} launch: - /FrostyNights/FrostyNights.exe: + "/FrostyNights/FrostyNights.exe": - when: - bit: 64 os: windows @@ -212390,12 +213008,12 @@ Frosty Nights: id: 733800 Frozen Cortex: files: - /saves: + "/saves": tags: - save when: - os: linux - /FrozenCortex/map/saves/LVLeagueDefault/Player: + "/FrozenCortex/map/saves/LVLeagueDefault/Player": tags: - save when: @@ -212405,15 +213023,15 @@ Frozen Cortex: installDir: Frozen Endzone: {} launch: - /FrozenCortex.app: + "/FrozenCortex.app": - when: - os: mac store: steam - /FrozenEndzone.exe: + "/FrozenEndzone.exe": - when: - os: windows store: steam - /runCortex.sh: + "/runCortex.sh": - when: - os: linux store: steam @@ -212423,7 +213041,7 @@ Frozen Drift Race: installDir: Frozen Drift Race: {} launch: - /Frozen Drift Race.exe: + "/Frozen Drift Race.exe": - when: - os: windows store: steam @@ -212433,18 +213051,18 @@ Frozen Flame: installDir: Frozen Flame: {} launch: - /FrozenFlame.exe: + "/FrozenFlame.exe": - when: - bit: 64 os: windows store: steam steam: id: 715400 -'Frozen Free Fall: Snowball Fight': +"Frozen Free Fall: Snowball Fight": installDir: Frozen Free Fall - Snowball Fight: {} launch: - /FFFE.exe: + "/FFFE.exe": - when: - os: windows store: steam @@ -212454,11 +213072,11 @@ Frozen Hearth: installDir: FrozenHearth: {} launch: - /Application/Deploy/FrozenHearth.exe: + "/Application/Deploy/FrozenHearth.exe": - when: - os: windows store: steam - workingDir: /Application/Deploy + workingDir: "/Application/Deploy" steam: id: 257890 Frozen Knight: @@ -212468,11 +213086,11 @@ Frozen Soul: installDir: Frozen Soul: {} launch: - /Frozen Soul.app/Contents/MacOS/Frozen Soul: + "/Frozen Soul.app/Contents/MacOS/Frozen Soul": - when: - os: mac store: steam - /Frozen Soul.exe: + "/Frozen Soul.exe": - when: - os: windows store: steam @@ -212480,7 +213098,7 @@ Frozen Soul: id: 875260 Frozen State: files: - /data: + "/data": tags: - config - save @@ -212489,26 +213107,26 @@ Frozen State: installDir: FrozenState: {} launch: - /fs.app: + "/fs.app": - when: - os: mac store: steam - /fs.exe: + "/fs.exe": - when: - bit: 32 os: windows store: steam - /fs.x86: + "/fs.x86": - when: - bit: 32 os: linux store: steam - /fs.x86_64: + "/fs.x86_64": - when: - bit: 64 os: linux store: steam - /fs64.exe: + "/fs64.exe": - when: - bit: 64 os: windows @@ -212517,19 +213135,19 @@ Frozen State: id: 270270 Frozen Synapse: files: - /Library/Application Support/FrozenSynapse: + "/Library/Application Support/FrozenSynapse": tags: - config - save when: - os: mac - /FrozenSynapse: + "/FrozenSynapse": tags: - config - save when: - os: linux - '[Installfolder]/psychoff/spSave*.enc': + "[Installfolder]/psychoff/spSave*.enc": tags: - config when: @@ -212539,15 +213157,15 @@ Frozen Synapse: installDir: Frozen Synapse: {} launch: - /FS.sh: + "/FS.sh": - when: - os: linux store: steam - /Frozen Synapse.app: + "/Frozen Synapse.app": - when: - os: mac store: steam - /FrozenSynapse.exe: + "/FrozenSynapse.exe": - when: - os: windows store: steam @@ -212555,12 +213173,12 @@ Frozen Synapse: id: 98200 Frozen Synapse 2: files: - /FrozenSynapse2/map/saves: + "/FrozenSynapse2/map/saves": tags: - save when: - os: windows - /FrozenSynapse2/map/saves: + "/FrozenSynapse2/map/saves": tags: - save when: @@ -212570,17 +213188,17 @@ Frozen Synapse 2: installDir: Frozen Synapse 2: {} launch: - /FrozenSynapse2.app: + "/FrozenSynapse2.app": - when: - bit: 64 os: mac store: steam - /FrozenSynapse2.exe: + "/FrozenSynapse2.exe": - when: - bit: 64 os: windows store: steam - /runFS2.sh: + "/runFS2.sh": - when: - bit: 64 os: linux @@ -212591,7 +213209,7 @@ Frozen Synapse Prime: installDir: FrozenSynapsePrime: {} launch: - /FrozenSynapse.exe: + "/FrozenSynapse.exe": - when: - os: windows store: steam @@ -212601,7 +213219,7 @@ Frozenheim: installDir: Frozenheim: {} launch: - /Frozenheim.exe: + "/Frozenheim.exe": - when: - os: windows store: steam @@ -212611,7 +213229,7 @@ Frqncy: installDir: Frqncy: {} launch: - /Frqncy.exe: + "/Frqncy.exe": - when: - bit: 64 os: windows @@ -212622,7 +213240,7 @@ Fruit Arranger: installDir: Fruit Arranger: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -212640,15 +213258,15 @@ Fruit Crawler: installDir: Fruit Crawler: {} launch: - /Fruit Crawler: + "/Fruit Crawler": - when: - os: linux store: steam - /Fruit Crawler.app: + "/Fruit Crawler.app": - when: - os: mac store: steam - /Fruit Crawler.exe: + "/Fruit Crawler.exe": - when: - os: windows store: steam @@ -212661,7 +213279,7 @@ Fruit Hoop: installDir: Fruit Hoop: {} launch: - /fruithoop.exe: + "/fruithoop.exe": - when: - os: windows store: steam @@ -212671,7 +213289,7 @@ Fruit Lockers Reborn! 2: installDir: Fruit Lockers Reborn! 2: {} launch: - /FruitLockersReborn2.exe: + "/FruitLockersReborn2.exe": - when: - os: windows store: steam @@ -212681,14 +213299,14 @@ Fruit Mess: installDir: Fruit Mess: {} launch: - /Fruit Mess.exe: + "/Fruit Mess.exe": - when: - store: steam steam: id: 1085210 Fruit Ninja: files: - /Halfbrick/FruitNinja: + "/Halfbrick/FruitNinja": tags: - config - save @@ -212709,7 +213327,7 @@ Fruit Postal Service: installDir: Fruit Postal Service: {} launch: - /FruitPostalService.exe: + "/FruitPostalService.exe": - when: - store: steam steam: @@ -212718,7 +213336,7 @@ Fruit Punch: installDir: Fruit Punch: {} launch: - /DyrnwynGames-FruitPunch.exe: + "/DyrnwynGames-FruitPunch.exe": - when: - os: windows store: steam @@ -212740,11 +213358,11 @@ Fruit Tower Defense: installDir: Fruit Tower Defense: {} launch: - /Fruit tower defense.exe: + "/Fruit tower defense.exe": - when: - os: windows store: steam - /Launcher.sh: + "/Launcher.sh": - when: - os: linux store: steam @@ -212762,29 +213380,29 @@ Fruits Inc. Deluxe Pack: installDir: Fruits Inc. Deluxe Pack: {} launch: - /Fruits Inc 1/Fruit's Inc.exe: + "/Fruits Inc 1/Fruit's Inc.exe": - when: - store: steam - workingDir: /Fruits Inc 1 - /Fruits Inc 2/Fruits Inc. 2.exe: + workingDir: "/Fruits Inc 1" + "/Fruits Inc 2/Fruits Inc. 2.exe": - when: - store: steam - workingDir: /Fruits Inc 2 + workingDir: "/Fruits Inc 2" steam: id: 349060 Fruity Smoothie: installDir: Fruity Smoothie: {} launch: - /FruitySmoothie.app: + "/FruitySmoothie.app": - when: - os: mac store: steam - /FruitySmoothie.exe: + "/FruitySmoothie.exe": - when: - os: windows store: steam - /FruitySmoothie.x86_64: + "/FruitySmoothie.x86_64": - when: - os: linux store: steam @@ -212794,7 +213412,7 @@ Frustrate-a-ball: installDir: Frustrate-a-ball: {} launch: - /Frustrate-a-ball.exe: + "/Frustrate-a-ball.exe": - when: - os: windows store: steam @@ -212804,17 +213422,17 @@ Frutakia 2: installDir: Frutakia_2: {} launch: - /Frutakia 2.app/Contents/MacOS/Frutakia 2: + "/Frutakia 2.app/Contents/MacOS/Frutakia 2": - when: - os: mac store: steam - /Frutakia 2.exe: + "/Frutakia 2.exe": - when: - bit: 64 os: windows store: steam - /Frutakia 2.x86_64: - - arguments: '-force-opengl' + "/Frutakia 2.x86_64": + - arguments: "-force-opengl" when: - os: linux store: steam @@ -212824,12 +213442,12 @@ Fuck Putin: installDir: FUCK PUTIN: {} launch: - /FP.exe: + "/FP.exe": - when: - bit: 64 os: windows store: steam - /FP.sh: + "/FP.sh": - when: - os: linux store: steam @@ -212839,12 +213457,12 @@ Fuego!: installDir: Fuego: {} launch: - /Fuego: + "/Fuego": - arguments: 162.243.31.164 30001 1 when: - os: linux store: steam - /Fuego.exe: + "/Fuego.exe": - arguments: 162.243.31.164 30001 1 when: - os: windows @@ -212853,7 +213471,7 @@ Fuego!: id: 356100 Fuel: files: - /My Games/FUEL: + "/My Games/FUEL": tags: - save when: @@ -212861,7 +213479,7 @@ Fuel: installDir: FUEL: {} launch: - /GameSetup.exe: + "/GameSetup.exe": - when: - store: steam registry: @@ -212874,16 +213492,16 @@ Fuel Renegades: installDir: Fuel Renegades: {} launch: - /Racing.exe: + "/Racing.exe": - when: - bit: 64 os: windows store: steam steam: id: 878110 -'Fuga: Melodies of Steel': +"Fuga: Melodies of Steel": files: - /TANK/Saved/SaveGames: + "/TANK/Saved/SaveGames": tags: - save when: @@ -212893,35 +213511,35 @@ Fuel Renegades: - 1611470 steam: id: 1357860 -'Fuga: Melodies of Steel 2': +"Fuga: Melodies of Steel 2": installDir: Fuga Melodies of Steel 2: {} launch: - /TANK.exe: + "/TANK.exe": - when: - bit: 64 os: windows store: steam steam: id: 2001340 -'Fugitive Hunter: War on Terror': +"Fugitive Hunter: War on Terror": files: - /MAKE/AutoSave*.aww: + "/MAKE/AutoSave*.aww": tags: - save when: - os: windows - /MAKE/Config.dat: + "/MAKE/Config.dat": tags: - config when: - os: windows - /MAKE/HighScore.dat: + "/MAKE/HighScore.dat": tags: - save when: - os: windows - /MAKE/Save*.aww: + "/MAKE/Save*.aww": tags: - save when: @@ -212930,15 +213548,15 @@ Fugl: installDir: Fugl: {} launch: - /Fugl: + "/Fugl": - when: - os: linux store: steam - /Fugl-osx.app: + "/Fugl-osx.app": - when: - os: mac store: steam - /Fugl.exe: + "/Fugl.exe": - when: - os: windows store: steam @@ -212948,15 +213566,15 @@ Fugue: installDir: Fugue: {} launch: - /Fugue.app: + "/Fugue.app": - when: - os: mac store: steam - /Fugue.exe: + "/Fugue.exe": - when: - os: windows store: steam - /Fugue.x86: + "/Fugue.x86": - when: - os: linux store: steam @@ -212967,7 +213585,7 @@ Fugue State: id: 905760 Fugue in Void: files: - /unity3d/Moshe Linke/Fugue in Void/prefs: + "/unity3d/Moshe Linke/Fugue in Void/prefs": tags: - config when: @@ -212975,11 +213593,11 @@ Fugue in Void: installDir: Fugue in Void: {} launch: - /Fugue in Void.exe: + "/Fugue in Void.exe": - when: - os: windows store: steam - /FugueinVoid.app: + "/FugueinVoid.app": - when: - os: mac store: steam @@ -212987,12 +213605,12 @@ Fugue in Void: id: 883220 Fujii: files: - /AppData/LocalLow/Funktronic Labs/Fujii: + "/AppData/LocalLow/Funktronic Labs/Fujii": tags: - save when: - os: windows - /AppData/LocalLow/Funktronic Labs/Fujii/game.config: + "/AppData/LocalLow/Funktronic Labs/Fujii/game.config": tags: - config when: @@ -213005,23 +213623,23 @@ FukTopia: installDir: FukTopia: {} launch: - /FuckTopia.exe: + "/FuckTopia.exe": - when: - os: windows store: steam - workingDir: /FuckTopia_Data - /FuckTopia.x86: + workingDir: "/FuckTopia_Data" + "/FuckTopia.x86": - when: - os: linux store: steam - workingDir: /FuckTopia_Data + workingDir: "/FuckTopia_Data" steam: id: 795490 Full Ace Tennis Simulator: installDir: Full Ace Tennis Simulator: {} launch: - /FullAce.exe: + "/FullAce.exe": - when: - os: windows store: steam @@ -213031,7 +213649,7 @@ Full Body Workout: installDir: Full Body Workout: {} launch: - /Full Body Workout.exe: + "/Full Body Workout.exe": - when: - os: windows store: steam @@ -213039,13 +213657,13 @@ Full Body Workout: id: 951760 Full Bore: files: - /.fullbore: + "/.fullbore": tags: - config - save when: - os: linux - /Full Bore: + "/Full Bore": tags: - config - save @@ -213054,11 +213672,11 @@ Full Bore: installDir: FullBore: {} launch: - /FullBore.exe: + "/FullBore.exe": - when: - os: windows store: steam - /gofullbore.sh: + "/gofullbore.sh": - when: - os: linux store: steam @@ -213068,15 +213686,15 @@ Full Colour Tiles: installDir: Full Colour Tiles: {} launch: - /linux-tiles-build14-2.x86: + "/linux-tiles-build14-2.x86": - when: - os: linux store: steam - /mac-tiles-build-steam.app: + "/mac-tiles-build-steam.app": - when: - os: mac store: steam - /windows-build14-2.exe: + "/windows-build14-2.exe": - when: - os: windows store: steam @@ -213084,7 +213702,7 @@ Full Colour Tiles: id: 868450 Full Metal Daemon Muramasa: files: - /Nitroplus/Muramasa/1.00s: + "/Nitroplus/Muramasa/1.00s": tags: - config - save @@ -213094,17 +213712,17 @@ Full Metal Daemon Muramasa: id: 1209310984 Full Metal Furies: files: - /.local/share/Cellar Door Games/Full Metal Furies/Saves/*.brdat: + "/.local/share/Cellar Door Games/Full Metal Furies/Saves/*.brdat": tags: - save when: - os: linux - /Cellar Door Games/Full Metal Furies/GameConfig.ini: + "/Cellar Door Games/Full Metal Furies/GameConfig.ini": tags: - config when: - os: windows - /Cellar Door Games/Full Metal Furies/Saves/*.brdat: + "/Cellar Door Games/Full Metal Furies/Saves/*.brdat": tags: - save when: @@ -213112,15 +213730,15 @@ Full Metal Furies: installDir: Full Metal Furies: {} launch: - /Brawler2D.exe: + "/Brawler2D.exe": - when: - os: windows store: steam - /Full Metal Furies.app/Contents/MacOS/FullMetalFuries: + "/Full Metal Furies.app/Contents/MacOS/FullMetalFuries": - when: - os: mac store: steam - /FullMetalFuries: + "/FullMetalFuries": - when: - os: linux store: steam @@ -213130,11 +213748,11 @@ Full Metal Renegade: installDir: Full Metal Renegade: {} launch: - /Full Metal Renegade.app/Contents/MacOS/Full Metal Renegade: + "/Full Metal Renegade.app/Contents/MacOS/Full Metal Renegade": - when: - os: mac store: steam - /Full Metal Renegade.exe: + "/Full Metal Renegade.exe": - when: - os: windows store: steam @@ -213142,12 +213760,12 @@ Full Metal Renegade: id: 897390 Full Mojo Rampage: files: - /Over the Top Games/Full Mojo Rampage/ConfigPC.cfg: + "/Over the Top Games/Full Mojo Rampage/ConfigPC.cfg": tags: - config when: - os: windows - /Over the Top Games/Full Mojo Rampage/savegame.dat: + "/Over the Top Games/Full Mojo Rampage/savegame.dat": tags: - save when: @@ -213155,7 +213773,7 @@ Full Mojo Rampage: installDir: FullMojoRampage: {} launch: - /FullMojo.exe: + "/FullMojo.exe": - when: - os: windows store: steam @@ -213165,14 +213783,14 @@ Full Of Love: installDir: FullOfLove: {} launch: - /FullOfLove.exe: + "/FullOfLove.exe": - when: - store: steam steam: id: 990940 Full Pipe: files: - /*.sav: + "/*.sav": tags: - save when: @@ -213180,7 +213798,7 @@ Full Pipe: installDir: Full Pipe: {} launch: - /Fullpipe.exe: + "/Fullpipe.exe": - when: - store: steam registry: @@ -213193,7 +213811,7 @@ Full Pitch: installDir: Full Pitch: {} launch: - /Full Pitch.exe: + "/Full Pitch.exe": - when: - os: windows store: steam @@ -213205,17 +213823,17 @@ Full Spectrum Warrior: installDir: Full Spectrum Warrior: {} launch: - /Launcher.exe: + "/Launcher.exe": - when: - store: steam - /help.htm: + "/help.htm": - when: - store: steam steam: id: 4520 -'Full Spectrum Warrior: Ten Hammers': +"Full Spectrum Warrior: Ten Hammers": files: - /FSW2: + "/FSW2": tags: - save when: @@ -213225,10 +213843,10 @@ Full Spectrum Warrior: installDir: Full Spectrum Warrior Ten Hammers: {} launch: - /fsw2.exe: + "/fsw2.exe": - when: - store: steam - /help.htm: + "/help.htm": - when: - store: steam steam: @@ -213237,7 +213855,7 @@ Full Swing Hero: installDir: ぶんまわしヒーロー: {} launch: - /FullSwingHero.exe: + "/FullSwingHero.exe": - when: - os: windows store: steam @@ -213245,7 +213863,7 @@ Full Swing Hero: id: 1060630 Full Throttle: files: - /LucasArts/Full Throttle: + "/LucasArts/Full Throttle": tags: - save when: @@ -213256,29 +213874,29 @@ Full Throttle: - config Full Throttle Remastered: files: - /savedata: + "/savedata": tags: - config - save when: - store: steam - /Library/Preferences/com.doublefine.ftrosx.plist: + "/Library/Preferences/com.doublefine.ftrosx.plist": tags: - config when: - os: mac - /Doublefine/fullthrottle: + "/Doublefine/fullthrottle": tags: - config - save when: - os: windows - /doublefine/ft: + "/doublefine/ft": tags: - save when: - os: linux - /doublefine/ft/savedata: + "/doublefine/ft/savedata": tags: - config when: @@ -213288,15 +213906,15 @@ Full Throttle Remastered: installDir: Full Throttle Remastered: {} launch: - /Throttle: + "/Throttle": - when: - os: linux store: steam - /Throttle.app: + "/Throttle.app": - when: - os: mac store: steam - /Throttle.exe: + "/Throttle.exe": - when: - os: windows store: steam @@ -213306,7 +213924,7 @@ Full Tilt Poker: installDir: Full Tilt Poker: {} launch: - /FullTiltPoker.Steam.app/Contents/MacOS/FullTiltPoker.Net: + "/FullTiltPoker.Steam.app/Contents/MacOS/FullTiltPoker.Net": - when: - os: mac store: steam @@ -213328,7 +213946,7 @@ Full-On Paintball: installDir: Full-On Paintball: {} launch: - /Binaries/Win32/FOPB.exe: + "/Binaries/Win32/FOPB.exe": - when: - bit: 32 os: windows @@ -213339,11 +213957,11 @@ FullBlast: installDir: FullBlast: {} launch: - /FullBlast.app/Contents/MacOS/FullBlast: + "/FullBlast.app/Contents/MacOS/FullBlast": - when: - os: mac store: steam - /FullBlast.exe: + "/FullBlast.exe": - when: - os: windows store: steam @@ -213353,21 +213971,24 @@ Fumiko!: installDir: Fumiko: {} launch: - /fumikothegame.app: + "/fumikothegame.app": - when: - os: mac store: steam - /fumikothegame.exe: + "/fumikothegame.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam - /fumikothegame.x86: + "/fumikothegame.x86": - when: - bit: 32 os: linux store: steam - /fumikothegame.x86_64: + "/fumikothegame.x86_64": - when: - bit: 64 os: linux @@ -213378,15 +213999,15 @@ Fun Fantasy Girls Jigsaw: installDir: Fun Fantasy Girls Jigsaw: {} launch: - /FunFantasyGirlsPuzzle.app: + "/FunFantasyGirlsPuzzle.app": - when: - os: mac store: steam - /FunFantasyGirlsPuzzle.exe: + "/FunFantasyGirlsPuzzle.exe": - when: - os: windows store: steam - /FunFantasyGirlsPuzzle.x86: + "/FunFantasyGirlsPuzzle.x86": - when: - os: linux store: steam @@ -213396,11 +214017,11 @@ Fun Hospital: installDir: Fun Hospital: {} launch: - /FunHospital.app/Contents/MacOS/FunHospital: + "/FunHospital.app/Contents/MacOS/FunHospital": - when: - os: mac store: steam - /release/Fun Hospital.exe: + "/release/Fun Hospital.exe": - when: - os: windows store: steam @@ -213411,15 +214032,15 @@ Fun VR Farm: Fun VR Farm: {} steam: id: 1007560 -'Fun with Ragdolls: The Game': +"Fun with Ragdolls: The Game": installDir: Fun with Ragdolls: {} launch: - /Fun with Ragdolls.app/Contents/MacOS/Fun with Ragdolls: + "/Fun with Ragdolls.app/Contents/MacOS/Fun with Ragdolls": - when: - os: mac store: steam - /Fun with Ragdolls/Fun with Ragdolls.exe: + "/Fun with Ragdolls/Fun with Ragdolls.exe": - when: - os: windows store: steam @@ -213427,7 +214048,7 @@ Fun VR Farm: id: 1142500 Fun with The Wiggles: files: - /Wiggles.ini: + "/Wiggles.ini": tags: - config when: @@ -213436,7 +214057,7 @@ Funbag Fantasy: installDir: Funbag Fantasy: {} launch: - /Funbag Fantasy.exe: + "/Funbag Fantasy.exe": - when: - store: steam steam: @@ -213445,16 +214066,16 @@ Funbag Fantasy 2: installDir: Funbag Fantasy 2: {} launch: - /Funbag Fantasy 2.exe: + "/Funbag Fantasy 2.exe": - when: - store: steam steam: id: 1102340 -'Funbag Fantasy: Sideboob Story': +"Funbag Fantasy: Sideboob Story": installDir: Funbag Fantasy Sideboob Story: {} launch: - /Funbag Fantasy Sideboob Story.exe: + "/Funbag Fantasy Sideboob Story.exe": - when: - os: windows store: steam @@ -213479,15 +214100,15 @@ Funfair Ride Simulator 3: installDir: Funfair Ride Simulator 3: {} launch: - /FRS3.app/Contents/MacOS/FRS3: + "/FRS3.app/Contents/MacOS/FRS3": - when: - os: mac store: steam - /FRS3.exe: + "/FRS3.exe": - when: - os: windows store: steam - /FRS3.x86: + "/FRS3.x86": - when: - os: linux store: steam @@ -213497,7 +214118,7 @@ Fungiman: installDir: Fungiman: {} launch: - /Füngiman.exe: + "/Füngiman.exe": - when: - os: windows store: steam @@ -213507,7 +214128,7 @@ Fungoids - Steam version: installDir: Fungoids - Steam version: {} launch: - /fungoids.exe: + "/fungoids.exe": - when: - os: windows store: steam @@ -213517,7 +214138,7 @@ Funk Unplugged: installDir: Funk Unplugged: {} launch: - /FunkUnplugged.exe: + "/FunkUnplugged.exe": - when: - os: windows store: steam @@ -213527,7 +214148,7 @@ Funk of Titans: installDir: Funk of Titans: {} launch: - /FunkOfTitans.exe: + "/FunkOfTitans.exe": - when: - os: windows store: steam @@ -213537,16 +214158,16 @@ Funklift: installDir: Funklift: {} launch: - /Funklift.exe: + "/Funklift.exe": - when: - os: windows store: steam - /Funklift.x86: + "/Funklift.x86": - when: - bit: 32 os: linux store: steam - /Funklift.x86_64: + "/Funklift.x86_64": - when: - bit: 64 os: linux @@ -213557,7 +214178,7 @@ Funky Karts: installDir: Funky Karts: {} launch: - /FunkyKarts.exe: + "/FunkyKarts.exe": - when: - os: windows store: steam @@ -213568,19 +214189,19 @@ Funny Archery: FunnyArchery: {} steam: id: 1161840 -'Funny Bunny: Adventures': +"Funny Bunny: Adventures": installDir: Funny Bunny Adventures: {} launch: - /FunnyBunny.app/Contents/MacOS/FunnyBunny: + "/FunnyBunny.app/Contents/MacOS/FunnyBunny": - when: - os: mac store: steam - /FunnyBunny.exe: + "/FunnyBunny.exe": - when: - os: windows store: steam - /FunnyBunny.x86: + "/FunnyBunny.x86": - when: - os: linux store: steam @@ -213590,11 +214211,11 @@ Funny Fingers: installDir: FunnyFingers: {} launch: - /FunnyFingers.exe: + "/FunnyFingers.exe": - when: - os: windows store: steam - /Made in GameMaker Studio 2.app: + "/Made in GameMaker Studio 2.app": - when: - os: mac store: steam @@ -213604,7 +214225,7 @@ Funny Road Chase Simulator: installDir: Funny Road Chase Simulator: {} launch: - /Funny Road Chase Simulator.exe: + "/Funny Road Chase Simulator.exe": - when: - store: steam steam: @@ -213619,11 +214240,11 @@ Funny Yo: Funny Yo: {} steam: id: 842620 -Funtoon's World: +"Funtoon's World": installDir: - Funtoon's World: {} + "Funtoon's World": {} launch: - /Funtoons World.exe: + "/Funtoons World.exe": - when: - os: windows store: steam @@ -213631,14 +214252,14 @@ Funtoon's World: id: 681090 Fur Fighters: files: - /SAVE/FUR_FIGHTERS.SAV: + "/SAVE/FUR_FIGHTERS.SAV": tags: - save when: - os: windows Fur Fun: files: - /FurFun/Content/PaksWindowsNoEditor: + "/FurFun/Content/PaksWindowsNoEditor": tags: - config when: @@ -213654,11 +214275,11 @@ Fur Up: installDir: Fur Up: {} launch: - /Fur Up.app: + "/Fur Up.app": - when: - os: mac store: steam - /Fur Up.exe: + "/Fur Up.exe": - when: - os: windows store: steam @@ -213668,17 +214289,17 @@ Fur the Game: installDir: Fur the Game: {} launch: - /Fur_0.5.exe: + "/Fur_0.5.exe": - when: - os: windows store: steam steam: id: 856600 -'Fureraba: Friend to Lover': +"Fureraba: Friend to Lover": installDir: Fureraba ~Friend to Lover~: {} launch: - /fureraba.exe: + "/fureraba.exe": - when: - os: windows store: steam @@ -213688,7 +214309,7 @@ Furfly: installDir: Furfly: {} launch: - /Furfly.exe: + "/Furfly.exe": - when: - os: windows store: steam @@ -213696,12 +214317,12 @@ Furfly: id: 429040 Furi: files: - /AppData/LocalLow/TheGameBakers/Furi/Game.data: + "/AppData/LocalLow/TheGameBakers/Furi/Game.data": tags: - save when: - os: windows - /AppData/LocalLow/TheGameBakers/Furi/Settings.xml: + "/AppData/LocalLow/TheGameBakers/Furi/Settings.xml": tags: - config when: @@ -213718,13 +214339,13 @@ Furi: installDir: Furi: {} launch: - /Furi.exe: + "/Furi.exe": - when: - os: windows store: steam steam: id: 423230 -'Furidashi: Drift Cyber Sport': +"Furidashi: Drift Cyber Sport": id: steamExtra: - 731010 @@ -213733,7 +214354,7 @@ Furi: installDir: FURIDASHI Drift Cyber Sport: {} launch: - /Furidashi.exe: + "/Furidashi.exe": - when: - os: windows store: steam @@ -213743,7 +214364,7 @@ Furion Chronicles: installDir: Furion Chironicles: {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: @@ -213752,7 +214373,7 @@ Furion Chronicles II: installDir: 法利恩戰記 Ⅱ (Furion Chronicles Ⅱ): {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: @@ -213761,11 +214382,11 @@ Furious Angels: installDir: FuriousAngels: {} launch: - /FuriousAngels.app/Contents/MacOS/FuriousAngels: + "/FuriousAngels.app/Contents/MacOS/FuriousAngels": - when: - os: mac store: steam - /FuriousAngels.exe: + "/FuriousAngels.exe": - when: - os: windows store: steam @@ -213775,7 +214396,7 @@ Furious Drivers: installDir: Furious Drivers: {} launch: - /FuriousDrivers.exe: + "/FuriousDrivers.exe": - when: - bit: 64 os: windows @@ -213786,11 +214407,11 @@ Furious Goal: installDir: Furious Goal: {} launch: - /Furious Goal.exe: + "/Furious Goal.exe": - when: - os: windows store: steam - /FuriousGoal.app: + "/FuriousGoal.app": - when: - os: mac store: steam @@ -213805,43 +214426,43 @@ Furries & Scalies & Bears OH MY!: installDir: FurriesScaliesBears: {} launch: - /FurriesScaliesBears.app/Contents/MacOS/FurriesScaliesBears: + "/FurriesScaliesBears.app/Contents/MacOS/FurriesScaliesBears": - when: - os: mac store: steam - /FurriesScaliesBears.exe: + "/FurriesScaliesBears.exe": - when: - os: windows store: steam - /FurriesScaliesBears.sh: + "/FurriesScaliesBears.sh": - when: - os: linux store: steam steam: id: 845960 -'Furries & Scalies: Friendswood': +"Furries & Scalies: Friendswood": installDir: FS_Friendswood: {} launch: - /FS_Friendswood.exe: + "/FS_Friendswood.exe": - when: - os: windows store: steam - /FS_Friendswood.sh: + "/FS_Friendswood.sh": - when: - os: linux store: steam steam: id: 1106950 -'Furries & Scalies: Love''s Lizards Lost': +"Furries & Scalies: Love's Lizards Lost": installDir: - Furry Shakespeare Love's Lizards Lost: {} + "Furry Shakespeare Love's Lizards Lost": {} launch: - /Furry_Shakespeare_LLL.exe: + "/Furry_Shakespeare_LLL.exe": - when: - os: windows store: steam - /Furry_Shakespeare_LLL.sh: + "/Furry_Shakespeare_LLL.sh": - when: - os: linux store: steam @@ -213857,15 +214478,15 @@ Furry Chronicles: installDir: Furry Chronicles: {} launch: - /Furry Chronicles.app: + "/Furry Chronicles.app": - when: - os: mac store: steam - /Furry Chronicles.exe: + "/Furry Chronicles.exe": - when: - os: windows store: steam - /FurryChronicles.x86_64: + "/FurryChronicles.x86_64": - when: - os: linux store: steam @@ -213875,17 +214496,17 @@ Furry Futanari Jigsaw: installDir: Furry Futanari Jigsaw: {} launch: - /Furry Futanari Jigsaw.exe: + "/Furry Futanari Jigsaw.exe": - when: - os: windows store: steam steam: id: 1909320 -"Furry Futanari: 3 in 1 ⚧\U0001F3F3️‍\U0001F308": +"Furry Futanari: 3 in 1 ⚧🏳️‍🌈": installDir: Furry Futanari: {} launch: - /game.exe: + "/game.exe": - when: - bit: 64 os: windows @@ -213898,76 +214519,76 @@ Furry Girl: Furry Girls Style: steam: id: 1219290 -"Furry Ladies \U0001F43E": +Furry Ladies 🐾: steam: id: 1204310 Furry Love: installDir: Furry Love: {} launch: - /Contents/MacOS/Furry Love: + "/Contents/MacOS/Furry Love": - when: - os: mac store: steam - /Furry Love.exe: + "/Furry Love.exe": - when: - os: windows store: steam - /Furry_Love.x86_64: + "/Furry_Love.x86_64": - when: - os: linux store: steam steam: id: 1334590 -'Furry Shakespeare: To Date Or Not To Date Cat Girls?': +"Furry Shakespeare: To Date Or Not To Date Cat Girls?": installDir: Paper Shakespeare Dating Sim 2: {} launch: - /Paper_Shakespeare_DS2.app/Contents/MacOS/Paper_Shakespeare_DS2: + "/Paper_Shakespeare_DS2.app/Contents/MacOS/Paper_Shakespeare_DS2": - when: - os: mac store: steam - /Paper_Shakespeare_DS2.exe: + "/Paper_Shakespeare_DS2.exe": - when: - os: windows store: steam - /Paper_Shakespeare_DS2.sh: + "/Paper_Shakespeare_DS2.sh": - when: - os: linux store: steam steam: id: 947060 -'Furry Stories: Alpha-Male': +"Furry Stories: Alpha-Male": steam: id: 1156300 FurryFury: installDir: FurryFury: {} launch: - /FurryFury.exe: + "/FurryFury.exe": - when: - os: windows store: steam steam: id: 906870 -'Fururu Project : Ruby': +"Fururu Project : Ruby": installDir: Fururu Project Ruby: {} launch: - /FururuProjectRuby.exe: + "/FururuProjectRuby.exe": - when: - os: windows store: steam - /Fururu_2018.2_mac.app: + "/Fururu_2018.2_mac.app": - when: - os: mac store: steam - /fururu.x86: + "/fururu.x86": - when: - bit: 32 os: linux store: steam - /fururu.x86_64: + "/fururu.x86_64": - when: - bit: 64 os: linux @@ -213978,7 +214599,7 @@ Furwind: installDir: Furwind: {} launch: - /Furwind.exe: + "/Furwind.exe": - when: - os: windows store: steam @@ -213993,11 +214614,11 @@ Fury Race: installDir: Fury Race: {} launch: - /Fury Race.app/Contents/MacOS/Fury Race: + "/Fury Race.app/Contents/MacOS/Fury Race": - when: - os: mac store: steam - /Fury Race.exe: + "/Fury Race.exe": - when: - os: windows store: steam @@ -214007,7 +214628,7 @@ Fury Strike: installDir: Fury Strike: {} launch: - /FuryStrike.exe: + "/FuryStrike.exe": - when: - os: windows store: steam @@ -214015,18 +214636,18 @@ Fury Strike: id: 893150 Fury Unleashed: files: - /AppData/LocalLow/Awesome Games Studio/Fury Unleashed: + "/AppData/LocalLow/Awesome Games Studio/Fury Unleashed": tags: - config - save when: - os: windows - /userdata//465200: + "/userdata//465200": tags: - save when: - store: steam - /unity3d/Awesome Games Studio/Fury Unleashed: + "/unity3d/Awesome Games Studio/Fury Unleashed": tags: - config when: @@ -214036,15 +214657,15 @@ Fury Unleashed: installDir: Fury Unleashed: {} launch: - /FuryUnleashed.app/Contents/MacOS/FuryUnleashed: + "/FuryUnleashed.app/Contents/MacOS/FuryUnleashed": - when: - os: mac store: steam - /FuryUnleashed.exe: + "/FuryUnleashed.exe": - when: - os: windows store: steam - /FuryUnleashed.x86_64: + "/FuryUnleashed.x86_64": - when: - os: linux store: steam @@ -214054,18 +214675,21 @@ Fury of the Gods: installDir: Fury Of The Gods: {} launch: - /Binaries/Win32/FuryGame.exe: + "/Binaries/Win32/FuryGame.exe": - when: - store: steam - workingDir: /Binaries/Win32 + workingDir: "/Binaries/Win32" steam: id: 373460 -Fury's Sky: +"Fury's Sky": installDir: - Fury's Sky: {} + "Fury's Sky": {} launch: - /gzdoom.exe: + "/gzdoom.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam @@ -214073,17 +214697,17 @@ Fury's Sky: id: 1118550 Fury3: files: - /SYSTEM/FURY3.INI: + "/SYSTEM/FURY3.INI": tags: - config when: - os: windows - /data/*.fff: + "/data/*.fff": tags: - save when: - os: windows - /data/score.dat: + "/data/score.dat": tags: - save when: @@ -214092,11 +214716,11 @@ Fuse Balls: installDir: Fuse Balls: {} launch: - /FuseBalls.app: + "/FuseBalls.app": - when: - os: mac store: steam - /FuseBalls.exe: + "/FuseBalls.exe": - when: - os: windows store: steam @@ -214106,7 +214730,7 @@ Fused: installDir: Fused: {} launch: - /Fused.exe: + "/Fused.exe": - when: - bit: 64 os: windows @@ -214115,7 +214739,7 @@ Fused: id: 1001910 Fuser: files: - /Fuser/Saved/Config/WindowsNoEditor: + "/Fuser/Saved/Config/WindowsNoEditor": tags: - config when: @@ -214123,7 +214747,7 @@ Fuser: installDir: Fuser: {} launch: - /Fuser.exe: + "/Fuser.exe": - when: - bit: 64 os: windows @@ -214134,7 +214758,7 @@ Futa Battle TD: installDir: Futa Battle TD: {} launch: - /BattleTD.exe: + "/BattleTD.exe": - when: - os: windows store: steam @@ -214147,7 +214771,7 @@ Futa Fix Dick Dine and Dash: installDir: Futa Fix Dick Dine and Dash: {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: @@ -214156,12 +214780,12 @@ Futa Spell: installDir: Futa Spell: {} launch: - /FutaSpell-32.exe: + "/FutaSpell-32.exe": - when: - bit: 32 os: windows store: steam - /FutaSpell.exe: + "/FutaSpell.exe": - when: - bit: 64 os: windows @@ -214172,7 +214796,7 @@ Futa University: installDir: Futa University: {} launch: - /Futa University.exe: + "/Futa University.exe": - when: - bit: 64 os: windows @@ -214183,16 +214807,16 @@ FutaDomWorld: installDir: FutaDomWorld: {} launch: - /FutaDomWorld-32.exe: + "/FutaDomWorld-32.exe": - when: - bit: 32 os: windows store: steam - /FutaDomWorld.app: + "/FutaDomWorld.app": - when: - os: mac store: steam - /FutaDomWorld.exe: + "/FutaDomWorld.exe": - when: - bit: 64 os: windows @@ -214203,7 +214827,7 @@ Futanari Jigsaw Puzzle: installDir: Futanari Jigsaw Puzzle: {} launch: - /FutanariJigsawPuzzle.exe: + "/FutanariJigsawPuzzle.exe": - when: - os: windows store: steam @@ -214216,8 +214840,8 @@ Futanari Quest: installDir: Futanari Quest: {} launch: - /Futanari Quest.exe: - - arguments: '--in-process-gpu' + "/Futanari Quest.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam @@ -214227,7 +214851,7 @@ Futanari Sex - BDSM Room: installDir: Futanari Sex - BDSM Room: {} launch: - /Futanari_Sex_BDSM_Room_win.exe: + "/Futanari_Sex_BDSM_Room_win.exe": - when: - os: windows store: steam @@ -214237,7 +214861,7 @@ Futanari Sex - Mile High Fun: installDir: Futanari Sex - Mile High Fun: {} launch: - /FUTANARI SEX - Mile High Fun.exe: + "/FUTANARI SEX - Mile High Fun.exe": - when: - os: windows store: steam @@ -214247,7 +214871,7 @@ Futanari Sex - Naughty Massage: installDir: Futanari Sex - Naughty Massage: {} launch: - /Futanari_Sex_Naughty_Massage_Win.exe: + "/Futanari_Sex_Naughty_Massage_Win.exe": - when: - os: windows store: steam @@ -214257,7 +214881,7 @@ Futanari Sex - Pool Party: installDir: Futanari Sex - Pool Party: {} launch: - /Futanari_Sex_Pool_Party_Win.exe: + "/Futanari_Sex_Pool_Party_Win.exe": - when: - os: windows store: steam @@ -214267,7 +214891,7 @@ Futanari Sex - The Birthday Massage: installDir: Futanari Sex - The Birthday Massage: {} launch: - /FUTANARI SEX - The Birthday Massage.exe: + "/FUTANARI SEX - The Birthday Massage.exe": - when: - os: windows store: steam @@ -214277,7 +214901,7 @@ Futanari Sex - The Fertility Doctor: installDir: Futanari Sex - The Fertility Doctor: {} launch: - /FUTANARI SEX - The Fertility Doctor.exe: + "/FUTANARI SEX - The Fertility Doctor.exe": - when: - os: windows store: steam @@ -214287,7 +214911,7 @@ Futanari Sex - The Gym: installDir: Futanari Sex - The Gym: {} launch: - /FUTANARI SEX - The GYM.exe: + "/FUTANARI SEX - The GYM.exe": - when: - os: windows store: steam @@ -214297,7 +214921,7 @@ Futanari Sex - The New Boss: installDir: Futanari Sex - The New Boss: {} launch: - /FUTANARI SEX - The New Boss.exe: + "/FUTANARI SEX - The New Boss.exe": - when: - os: windows store: steam @@ -214307,7 +214931,7 @@ Futanari Sex - Unexpected Roomate: installDir: Futanari Sex - Unexpected Roomate: {} launch: - /Futanari_Sex_Unexpected_Roommate.exe: + "/Futanari_Sex_Unexpected_Roommate.exe": - when: - os: windows store: steam @@ -214317,17 +214941,17 @@ Futanari Vampire Girlfriend: installDir: Futanari Vampire Girlfriend: {} launch: - /FutanariVampireGirlfriend.exe: + "/FutanariVampireGirlfriend.exe": - when: - os: windows store: steam steam: id: 1690150 -"Futanari girlfriends ⚧\U0001F467\U0001F346": +Futanari girlfriends ⚧👧🍆: installDir: - "Futanari girlfriends ⚧\U0001F467\U0001F346": {} + Futanari girlfriends ⚧👧🍆: {} launch: - /FutaGF.exe: + "/FutaGF.exe": - when: - os: windows store: steam @@ -214337,7 +214961,7 @@ Futanari of the Amazon: installDir: Futanari of the Amazon: {} launch: - /FutanarioftheAmazon.exe: + "/FutanarioftheAmazon.exe": - when: - os: windows store: steam @@ -214347,12 +214971,12 @@ Futanari of the Apocalypse: installDir: Futanari of the Apocalypse: {} launch: - /FutanariOfTheApocalypse-32.exe: + "/FutanariOfTheApocalypse-32.exe": - when: - bit: 32 os: windows store: steam - /FutanariOfTheApocalypse.exe: + "/FutanariOfTheApocalypse.exe": - when: - bit: 64 os: windows @@ -214363,12 +214987,12 @@ Futapunk 2069: installDir: Futapunk 2069: {} launch: - /Futapunk2069-32.exe: + "/Futapunk2069-32.exe": - when: - bit: 32 os: windows store: steam - /Futapunk2069.exe: + "/Futapunk2069.exe": - when: - bit: 64 os: windows @@ -214379,7 +215003,7 @@ Future Aero Racing S Ultra: installDir: Future Aero Racing S Ultra Steam: {} launch: - /FARSULTRA.exe: + "/FARSULTRA.exe": - when: - bit: 64 os: windows @@ -214390,19 +215014,19 @@ Future City Coaster: installDir: Future City Coaster: {} launch: - /future_city_coaster_pc.exe: + "/future_city_coaster_pc.exe": - when: - store: steam steam: id: 820660 -'Future Cop: LAPD': +"Future Cop: LAPD": files: - /controls.txt: + "/controls.txt": tags: - config when: - os: windows - /save.cfg: + "/save.cfg": tags: - save when: @@ -214416,7 +215040,7 @@ Future GPX Cyber Formula Sin Vier: installDir: FutureGpxCyberFormulaSinVier: {} launch: - /CfSinVier.exe: + "/CfSinVier.exe": - when: - bit: 64 os: windows @@ -214433,7 +215057,7 @@ Future Pool: installDir: Future Pool: {} launch: - /FuturePool.exe: + "/FuturePool.exe": - when: - os: windows store: steam @@ -214443,8 +215067,8 @@ Future Proof: installDir: Future Proof: {} launch: - /Future Proof.exe: - - arguments: '--in-process-gpu' + "/Future Proof.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam @@ -214454,8 +215078,8 @@ Future Simulation World: installDir: earth: {} launch: - /earth.exe: - - arguments: '-windowed' + "/earth.exe": + - arguments: "-windowed" when: - os: windows store: steam @@ -214465,7 +215089,7 @@ Future Snooker: installDir: Future Snooker: {} launch: - /FutureSnooker.exe: + "/FutureSnooker.exe": - when: - os: windows store: steam @@ -214477,11 +215101,11 @@ Future Unfolding: installDir: Future Unfolding: {} launch: - /FutureUnfolding.app: + "/FutureUnfolding.app": - when: - os: mac store: steam - /FutureUnfolding.exe: + "/FutureUnfolding.exe": - when: - os: windows store: steam @@ -214489,12 +215113,12 @@ Future Unfolding: id: 539340 Future Wars (2010): files: - /Future Wars/profiles: + "/Future Wars/profiles": tags: - save when: - os: windows - /Future Wars/profiles/profile.xml: + "/Future Wars/profiles/profile.xml": tags: - config when: @@ -214502,10 +215126,10 @@ Future Wars (2010): installDir: Future Wars: {} launch: - /bin/win32/futurewars.exe: + "/bin/win32/futurewars.exe": - when: - store: steam - /bin/win32/leveleditor.exe: + "/bin/win32/leveleditor.exe": - when: - store: steam steam: @@ -214514,11 +215138,11 @@ FutureGrind: installDir: FutureGrind: {} launch: - /FutureGrind.app/Contents/MacOS/FutureGrind: + "/FutureGrind.app/Contents/MacOS/FutureGrind": - when: - os: mac store: steam - /FutureGrind.exe: + "/FutureGrind.exe": - when: - os: windows store: steam @@ -214536,15 +215160,15 @@ Futuridium EP Deluxe: installDir: Futuridium EP Deluxe: {} launch: - /futuridiumepd.app/Contents/MacOS/futuridiumepd: + "/futuridiumepd.app/Contents/MacOS/futuridiumepd": - when: - os: mac store: steam - /futuridiumepd.exe: + "/futuridiumepd.exe": - when: - os: windows store: steam - /futuridiumepd.x86: + "/futuridiumepd.x86": - when: - os: linux store: steam @@ -214557,25 +215181,25 @@ Fuzecat: installDir: Fuzecat: {} launch: - /Fuzecat.app: + "/Fuzecat.app": - when: - os: mac store: steam - /Fuzecat.exe: + "/Fuzecat.exe": - when: - os: windows store: steam steam: id: 629720 -Fuzzy's Quest: +"Fuzzy's Quest": installDir: Fuzzy Quest: {} launch: - /FuzzysQuest.app/Contents/MacOS/FuzzysQuest: + "/FuzzysQuest.app/Contents/MacOS/FuzzysQuest": - when: - os: mac store: steam - /FuzzysQuest.exe: + "/FuzzysQuest.exe": - when: - os: windows store: steam @@ -214583,12 +215207,12 @@ Fuzzy's Quest: id: 676600 Fürst Marigor und die Tobis: files: - /ProgramData/Microsoft/Windows/Anwendungsdaten/CSoft/Marigor/Spieler: + "/ProgramData/Microsoft/Windows/Anwendungsdaten/CSoft/Marigor/Spieler": tags: - save when: - os: windows - /Tobis2.ini: + "/Tobis2.ini": tags: - config when: @@ -214597,11 +215221,11 @@ G Prime: installDir: G Prime: {} launch: - /GPrime.app: + "/GPrime.app": - when: - os: mac store: steam - /GPrime.exe: + "/GPrime.exe": - when: - os: windows store: steam @@ -214609,12 +215233,12 @@ G Prime: id: 497430 G String: files: - /gstringv2/cfg: + "/gstringv2/cfg": tags: - config when: - store: steam - /gstringv2/save: + "/gstringv2/save": tags: - save when: @@ -214622,8 +215246,8 @@ G String: installDir: G String: {} launch: - /gstring.exe: - - arguments: '-game gstringv2 +fps_max 300 +r_radiosity 3' + "/gstring.exe": + - arguments: "-game gstringv2 +fps_max 300 +r_radiosity 3" when: - os: windows store: steam @@ -214633,11 +215257,11 @@ G-Ball: installDir: GBall: {} launch: - /GBall.app: + "/GBall.app": - when: - os: mac store: steam - /GBall.exe: + "/GBall.exe": - when: - os: windows store: steam @@ -214645,19 +215269,19 @@ G-Ball: id: 296150 G-Darius: files: - /CONFIG.SGS: + "/CONFIG.SGS": tags: - config when: - os: windows - /UVSAVE.BIN: + "/UVSAVE.BIN": tags: - save when: - os: windows G-Darius HD: files: - /userdata//1640160/remote: + "/userdata//1640160/remote": tags: - config - save @@ -214667,39 +215291,39 @@ G-Darius HD: installDir: G-Darius HD: {} launch: - /gdarahd.exe: + "/gdarahd.exe": - when: - os: windows store: steam steam: id: 1640160 -G-Dino's Jungle Adventure: +"G-Dino's Jungle Adventure": steam: id: 862180 G-Force: installDir: G-Force: {} launch: - /GForce.exe: + "/GForce.exe": - when: - store: steam steam: id: 319170 G-Nome: files: - /7THLEVEL.INI: + "/7THLEVEL.INI": tags: - config when: - os: windows G-Police: files: - /GPolice.cfg: + "/GPolice.cfg": tags: - config when: - os: windows - /GPolice.sav: + "/GPolice.sav": tags: - save when: @@ -214708,16 +215332,16 @@ G.A.M.E.S: installDir: Bundle: {} launch: - /Play The Game/Play The Game.exe: + "/Play The Game/Play The Game.exe": - when: - store: steam steam: id: 844020 -'G.I. Joe: Operation Blackout': +"G.I. Joe: Operation Blackout": installDir: G.I. Joe Operation Blackout: {} launch: - /GIJOE_FS/Binaries/Win64/GIJOE.exe: + "/GIJOE_FS/Binaries/Win64/GIJOE.exe": - when: - store: steam steam: @@ -214726,7 +215350,7 @@ G.R.E.E.N. The Life Algorithm: installDir: GREEN: {} launch: - /GREEN.exe: + "/GREEN.exe": - when: - bit: 64 os: windows @@ -214737,7 +215361,7 @@ G2 Fighter: installDir: G2 Fighter: {} launch: - /G2 Fighter.exe: + "/G2 Fighter.exe": - when: - bit: 64 os: windows @@ -214753,11 +215377,11 @@ GALAXIUM: installDir: GALAXIUM: {} launch: - /GALAXIUM-MAC-GAME.app: + "/GALAXIUM-MAC-GAME.app": - when: - os: mac store: steam - /GALAXIUM.exe: + "/GALAXIUM.exe": - when: - os: windows store: steam @@ -214768,11 +215392,11 @@ GALAXY TOP WING: GALAXY TOP WING: {} steam: id: 905630 -'GALER: Plague of Heroes': +"GALER: Plague of Heroes": installDir: GALER Plague of Heroes: {} launch: - /RPG_RT.exe: + "/RPG_RT.exe": - when: - os: windows store: steam @@ -214785,7 +215409,7 @@ GANUSH: installDir: GANUSH: {} launch: - /GANUSH.exe: + "/GANUSH.exe": - when: - os: windows store: steam @@ -214795,7 +215419,7 @@ GASH: installDir: GASH: {} launch: - /GASH.exe: + "/GASH.exe": - when: - os: windows store: steam @@ -214805,7 +215429,7 @@ GASP: installDir: GASP: {} launch: - /GASP.exe: + "/GASP.exe": - when: - store: steam steam: @@ -214827,7 +215451,7 @@ GEESE vs CTHULHU: installDir: GEESE vs CTHULHU: {} launch: - /GEESE_vs_CTHULHU.exe: + "/GEESE_vs_CTHULHU.exe": - when: - store: steam steam: @@ -214836,7 +215460,7 @@ GENSOU Skydrift: installDir: Gensou SkyDrift: {} launch: - /SkyDrift.exe: + "/SkyDrift.exe": - when: - bit: 64 os: windows @@ -214847,11 +215471,11 @@ GEO Master: installDir: GEO Master: {} launch: - /GEO Master.app/Contents/MacOS/GEO Master: + "/GEO Master.app/Contents/MacOS/GEO Master": - when: - os: mac store: steam - /GEO Master.exe: + "/GEO Master.exe": - when: - os: windows store: steam @@ -214861,7 +215485,7 @@ GG Puzzler: installDir: GG Puzzler: {} launch: - /GG Puzzler.exe: + "/GG Puzzler.exe": - when: - store: steam steam: @@ -214875,15 +215499,15 @@ GGG Collection: installDir: GGG Collection: {} launch: - /game: + "/game": - when: - os: linux store: steam - /game.app: + "/game.app": - when: - os: mac store: steam - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -214896,7 +215520,7 @@ GI Racing 2.0: installDir: GI Racing 2.0: {} launch: - /giracing2.exe: + "/giracing2.exe": - when: - os: windows store: steam @@ -214906,30 +215530,30 @@ GIBZ: installDir: GIBZ: {} launch: - /GIBZ.exe: + "/GIBZ.exe": - when: - os: windows store: steam steam: id: 448320 -'GIF: The Game of Inevitable Frustration': +"GIF: The Game of Inevitable Frustration": installDir: GIF: {} launch: - /GIF HD.app/Contents/MacOS/GIF HD: + "/GIF HD.app/Contents/MacOS/GIF HD": - when: - os: mac store: steam - /GIF HD.exe: + "/GIF HD.exe": - when: - os: windows store: steam - /GIF HD.x86: + "/GIF HD.x86": - when: - bit: 32 os: linux store: steam - /GIF HD.x86_64: + "/GIF HD.x86_64": - when: - bit: 64 os: linux @@ -214940,7 +215564,7 @@ GIGABUSTER: installDir: GIGABUSTER: {} launch: - /GIGABUSTER.exe: + "/GIGABUSTER.exe": - when: - os: windows store: steam @@ -214955,7 +215579,7 @@ GIRAL: installDir: GIRAL: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -214970,7 +215594,7 @@ GL1TCH: installDir: GL1TCH: {} launch: - /GL1TCH.exe: + "/GL1TCH.exe": - when: - os: windows store: steam @@ -214980,7 +215604,7 @@ GLADIUM: installDir: GLADIUM: {} launch: - /Gladium.exe: + "/Gladium.exe": - when: - os: windows store: steam @@ -214990,16 +215614,16 @@ GLADOM - the 2D moba in Pixel Art: installDir: GLADOM: {} launch: - /GLADOM.exe: + "/GLADOM.exe": - when: - bit: 64 os: windows store: steam steam: id: 1134320 -'GLOWCOMA: chapter 1': +"GLOWCOMA: chapter 1": files: - /GLOWCOMA/Saved/Config/WindowsNoEditor: + "/GLOWCOMA/Saved/Config/WindowsNoEditor": tags: - config when: @@ -215007,7 +215631,7 @@ GLADOM - the 2D moba in Pixel Art: installDir: GLOWCOMA: {} launch: - /GLOWCOMA.exe: + "/GLOWCOMA.exe": - when: - bit: 64 os: windows @@ -215018,7 +215642,7 @@ GM Forge - Virtual Tabletop: installDir: GM Forge - Virtual Tabletop: {} launch: - /gmforge.exe: + "/gmforge.exe": - when: - os: windows store: steam @@ -215026,7 +215650,7 @@ GM Forge - Virtual Tabletop: id: 842250 GM Rally: files: - /Data/profiles: + "/Data/profiles": tags: - save when: @@ -215034,19 +215658,19 @@ GM Rally: installDir: GM Rally: {} launch: - /GM Rally.exe: + "/GM Rally.exe": - when: - store: steam steam: id: 3150 GNOG: files: - /AppData/LocalLow/KO_OP/GNOG: + "/AppData/LocalLow/KO_OP/GNOG": tags: - save when: - os: windows - /Library/Application Support/unity.KO_OP.GNOG: + "/Library/Application Support/unity.KO_OP.GNOG": tags: - save when: @@ -215056,11 +215680,11 @@ GNOG: installDir: GNOG: {} launch: - /GNOG.app: + "/GNOG.app": - when: - os: mac store: steam - /GNOG.exe: + "/GNOG.exe": - when: - os: windows store: steam @@ -215077,7 +215701,7 @@ GO-4-Soldier-1: installDir: GO-4-Soldier-1: {} launch: - /GO-4-Soldier-1.exe: + "/GO-4-Soldier-1.exe": - when: - bit: 64 os: windows @@ -215088,7 +215712,7 @@ GOLF in PAPER: installDir: GOLF in PAPER: {} launch: - /GOLF in PAPER.exe: + "/GOLF in PAPER.exe": - when: - bit: 64 os: windows @@ -215099,7 +215723,7 @@ GOOSE.IO: installDir: GOOSE.IO: {} launch: - /GOOSE.IO.exe: + "/GOOSE.IO.exe": - when: - os: windows store: steam @@ -215109,15 +215733,15 @@ GORB: installDir: GORB: {} launch: - /GORBMAC.app: + "/GORBMAC.app": - when: - os: mac store: steam - /Gorb.exe: + "/Gorb.exe": - when: - os: windows store: steam - /Gorb.x86: + "/Gorb.x86": - when: - os: linux store: steam @@ -215127,7 +215751,7 @@ GORILLA TOWN: installDir: GORILLA TOWN: {} launch: - /Gorilla Town.exe: + "/Gorilla Town.exe": - when: - store: steam steam: @@ -215136,7 +215760,7 @@ GORSD: installDir: GORSD: {} launch: - /GORSD.exe: + "/GORSD.exe": - when: - os: windows store: steam @@ -215146,17 +215770,17 @@ GPRO: installDir: GPRO: {} launch: - /GPRO.app/Contents/MacOS/GPRO: + "/GPRO.app/Contents/MacOS/GPRO": - arguments: steam=1 when: - os: mac store: steam - /GPRO.exe: + "/GPRO.exe": - arguments: steam=1 when: - os: windows store: steam - /gpro: + "/gpro": - arguments: steam=1 when: - os: linux @@ -215167,7 +215791,7 @@ GRAULARM: installDir: GRAULARM: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -215177,17 +215801,17 @@ GRAV: installDir: GRAV: {} launch: - /Binaries/Win64/CAGGame-Win64-Shipping.exe: + "/Binaries/Win64/CAGGame-Win64-Shipping.exe": - when: - bit: 64 os: windows store: steam - workingDir: /Binaries/Win64 + workingDir: "/Binaries/Win64" steam: id: 332500 GRAY: files: - /MMFApplications/DontReadME: + "/MMFApplications/DontReadME": tags: - config - save @@ -215196,7 +215820,7 @@ GRAY: installDir: GRAY: {} launch: - /GRAY.exe: + "/GRAY.exe": - when: - os: windows store: steam @@ -215206,7 +215830,7 @@ GRAY TANK: installDir: GRAY TANK: {} launch: - /GrayTank.exe: + "/GrayTank.exe": - when: - os: windows store: steam @@ -215214,12 +215838,12 @@ GRAY TANK: id: 596570 GRID (2019): files: - /userdata//703860/remote/savegame: + "/userdata//703860/remote/savegame": tags: - save when: - store: steam - /My Games/GRID (2019)/hardwaresettings/hardware_settings_config.xml: + "/My Games/GRID (2019)/hardwaresettings/hardware_settings_config.xml": tags: - config when: @@ -215230,18 +215854,18 @@ GRID (2019): id: 703860 GRID 2: files: - /userdata//44350/remote: + "/userdata//44350/remote": tags: - save when: - os: windows store: steam - /My Games/GRID 2/hardwaresettings/hardware_settings_config.xml: + "/My Games/GRID 2/hardwaresettings/hardware_settings_config.xml": tags: - config when: - os: windows - /Codemasters/GRID 2/DataCache/: + "/Codemasters/GRID 2/DataCache/": tags: - save when: @@ -215263,11 +215887,11 @@ GRID 2: installDir: grid 2: {} launch: - /Grid 2.app: + "/Grid 2.app": - when: - os: mac store: steam - /grid2.exe: + "/grid2.exe": - when: - os: windows store: steam @@ -215275,22 +215899,22 @@ GRID 2: id: 44350 GRID Autosport: files: - /userdata//255220/remote: + "/userdata//255220/remote": tags: - save when: - store: steam - /My Games/GRID Autosport: + "/My Games/GRID Autosport": tags: - config when: - os: windows - /feral-interactive/GRID Autosport/VFS/User/AppData/Roaming/My Games/GRID Autosport/hardwaresettings: + "/feral-interactive/GRID Autosport/VFS/User/AppData/Roaming/My Games/GRID Autosport/hardwaresettings": tags: - config when: - os: linux - /feral-interactive/GRID Autosport/preferences: + "/feral-interactive/GRID Autosport/preferences": tags: - config when: @@ -215301,19 +215925,19 @@ GRID Autosport: installDir: GRID Autosport: {} launch: - /GRID Autosport.app: + "/GRID Autosport.app": - when: - os: mac store: steam - /GRIDAutosport.exe: + "/GRIDAutosport.exe": - when: - os: windows store: steam - - arguments: '-enable_touch' + - arguments: "-enable_touch" when: - os: windows store: steam - /GridAutosport.sh: + "/GridAutosport.sh": - when: - os: linux store: steam @@ -215321,12 +215945,12 @@ GRID Autosport: id: 255220 GRID Legends: files: - /My Games/GRID Legends/hardwaresettings/hardware_settings_config.xml: + "/My Games/GRID Legends/hardwaresettings/hardware_settings_config.xml": tags: - config when: - os: windows - /My Games/GRID Legends/savegame/profile: + "/My Games/GRID Legends/savegame/profile": tags: - save when: @@ -215334,33 +215958,39 @@ GRID Legends: installDir: GRID Legends: {} launch: - /GridLegends.exe: + "/GridLegends.exe": - when: - bit: 64 os: windows store: steam steam: id: 1307710 -'GRIDD: Retroenhanced': +"GRIDD: Retroenhanced": installDir: GRIDD Retroenhanced: {} launch: - /Gridd3.app: + "/Gridd3.app": - when: + - bit: 32 + os: mac + store: steam - bit: 64 os: mac store: steam - /Gridd3.exe: + "/Gridd3.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam - /Gridd3.x86: + "/Gridd3.x86": - when: - bit: 32 os: linux store: steam - /Gridd3.x86_64: + "/Gridd3.x86_64": - when: - bit: 64 os: linux @@ -215370,14 +216000,14 @@ GRID Legends: GRIMO: steam: id: 802600 -'GRIP: Combat Racing': +"GRIP: Combat Racing": files: - /Grip/Saved/Config: + "/Grip/Saved/Config": tags: - config when: - os: windows - /Grip/Saved/SaveGames: + "/Grip/Saved/SaveGames": tags: - save when: @@ -215390,8 +216020,8 @@ GRIMO: installDir: Grip: {} launch: - /Grip.exe: - - arguments: '-nohmd' + "/Grip.exe": + - arguments: "-nohmd" when: - bit: 64 os: windows @@ -215402,15 +216032,15 @@ GRITS Racing: installDir: GRITS Racing: {} launch: - /GRITS Racing.app/Contents/MacOS/GRITS Racing: + "/GRITS Racing.app/Contents/MacOS/GRITS Racing": - when: - os: mac store: steam - /grits.exe: + "/grits.exe": - when: - os: windows store: steam - /grits.x86_64: + "/grits.x86_64": - when: - bit: 64 os: linux @@ -215419,7 +216049,7 @@ GRITS Racing: id: 907190 GRUNND: files: - /SavesDir: + "/SavesDir": tags: - save when: @@ -215429,7 +216059,7 @@ GRUNND: installDir: GRUNND: {} launch: - /GRUNND.exe: + "/GRUNND.exe": - when: - os: windows store: steam @@ -215439,7 +216069,7 @@ GRally: installDir: gRally: {} launch: - /gRally.exe: + "/gRally.exe": - when: - bit: 64 os: windows @@ -215450,7 +216080,7 @@ GShift: installDir: gShift: {} launch: - /gShift.exe: + "/gShift.exe": - when: - os: windows store: steam @@ -215460,7 +216090,7 @@ GSpot Master: installDir: GSpot Master: {} launch: - /G-Spot-Master.exe: + "/G-Spot-Master.exe": - when: - bit: 64 os: windows @@ -215469,12 +216099,12 @@ GSpot Master: id: 1154650 GT Legends: files: - /Config.ini: + "/Config.ini": tags: - config when: - os: windows - /UserData//.plr: + "/UserData//.plr": tags: - save when: @@ -215482,7 +216112,7 @@ GT Legends: installDir: GT Legends: {} launch: - /sudo.exe: + "/sudo.exe": - arguments: gtl.exe when: - store: steam @@ -215491,21 +216121,21 @@ GT Legends: - store: steam steam: id: 44690 -'GT Racing 2: The Real Car Experience': +"GT Racing 2: The Real Car Experience": files: - /Packages/GAMELOFTSA.GTRacing2TheRealCarExperience_0pp20fcewvvtj/LocalState: + "/Packages/GAMELOFTSA.GTRacing2TheRealCarExperience_0pp20fcewvvtj/LocalState": tags: - save when: - os: windows - /Packages/GAMELOFTSA.GTRacing2TheRealCarExperience_0pp20fcewvvtj/Settings: + "/Packages/GAMELOFTSA.GTRacing2TheRealCarExperience_0pp20fcewvvtj/Settings": tags: - config when: - os: windows GTFO: files: - /AppData/LocalLow/10 Chambers Collective/GTFO: + "/AppData/LocalLow/10 Chambers Collective/GTFO": tags: - config when: @@ -215513,7 +216143,7 @@ GTFO: installDir: GTFO: {} launch: - /GTFO.exe: + "/GTFO.exe": - when: - bit: 64 os: windows @@ -215522,12 +216152,12 @@ GTFO: id: 493520 GTI Racing: files: - /Data: + "/Data": tags: - config when: - os: windows - /Data/profiles: + "/Data/profiles": tags: - save when: @@ -215535,19 +216165,19 @@ GTI Racing: installDir: GTI Racing: {} launch: - /GTIRacing.exe: + "/GTIRacing.exe": - when: - store: steam steam: id: 3000 GTR - FIA GT Racing Game: files: - /UserData//.plr: + "/UserData//.plr": tags: - save when: - os: windows - /config.ini: + "/config.ini": tags: - config when: @@ -215555,37 +216185,37 @@ GTR - FIA GT Racing Game: installDir: GTR - FIA GT Raceing Game: {} launch: - /Config.exe: + "/Config.exe": - when: - store: steam - /SteamProxy.exe: + "/SteamProxy.exe": - when: - store: steam steam: id: 44600 GTR 2 - FIA GT Racing Game: files: - /Config.ini: + "/Config.ini": tags: - config when: - os: windows - /ReplayData: + "/ReplayData": tags: - save when: - os: windows - /UserData/: + "/UserData/": tags: - save when: - os: windows - /UserData/defviews.cam: + "/UserData/defviews.cam": tags: - save when: - os: windows - /UserData/vehicledata.spt: + "/UserData/vehicledata.spt": tags: - save when: @@ -215593,7 +216223,7 @@ GTR 2 - FIA GT Racing Game: installDir: GTR 2 - FIA GT Racing Game: {} launch: - /sudo.exe: + "/sudo.exe": - arguments: GTR2.exe when: - store: steam @@ -215605,13 +216235,13 @@ GTR 2 - FIA GT Racing Game: - store: steam steam: id: 8790 -'GTTOD: Get to the Orange Door': +"GTTOD: Get to the Orange Door": gog: id: 1775694272 installDir: Get To The Orange Door: {} launch: - /Get To The Orange Door.exe: + "/Get To The Orange Door.exe": - when: - bit: 64 os: windows @@ -215627,7 +216257,7 @@ GUIDE: installDir: GUIDE: {} launch: - /GUIDE.exe: + "/GUIDE.exe": - when: - os: windows store: steam @@ -215637,7 +216267,7 @@ GUILT: installDir: Guilt: {} launch: - /GuiltEA.exe: + "/GuiltEA.exe": - when: - os: windows store: steam @@ -215647,7 +216277,7 @@ GUNGUNGUN: installDir: GUNGUNGUN: {} launch: - /GGGnew60fps.exe: + "/GGGnew60fps.exe": - when: - os: windows store: steam @@ -215658,11 +216288,11 @@ GUNNVR: GUNNVR: {} steam: id: 576640 -GUNS 'n GUTS: +"GUNS 'n GUTS": installDir: - GUNS 'n GUTS: {} + "GUNS 'n GUTS": {} launch: - /GUNS 'n GUTS.exe: + "/GUNS 'n GUTS.exe": - when: - os: windows store: steam @@ -215677,7 +216307,7 @@ GUTS: installDir: GUTS: {} launch: - /GUTS.exe: + "/GUTS.exe": - when: - bit: 64 os: windows @@ -215688,12 +216318,12 @@ GYATM: installDir: GYATM: {} launch: - /GYATM.exe: + "/GYATM.exe": - when: - bit: 64 os: windows store: steam - /GYATM.sh: + "/GYATM.sh": - when: - os: linux store: steam @@ -215703,7 +216333,7 @@ Gabbuchi: installDir: Gabbuchi: {} launch: - /Gabbuchi.exe: + "/Gabbuchi.exe": - when: - os: windows store: steam @@ -215714,11 +216344,11 @@ Gabe Newell Simulator 2.0: Gabe Newell Simulator: {} steam: id: 407420 -'GabeN: The Final Decision': +"GabeN: The Final Decision": installDir: GabeN The Final Decision: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -215728,15 +216358,15 @@ Gaben Kingdom: installDir: Gaben Kingdom: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam steam: id: 593340 -'Gabriel Knight 3: Blood of the Sacred, Blood of the Damned': +"Gabriel Knight 3: Blood of the Sacred, Blood of the Damned": files: - /Save Games: + "/Save Games": tags: - save when: @@ -215746,7 +216376,7 @@ Gaben Kingdom: installDir: Gabriel Knight 3: {} launch: - /SierraLauncher.exe: + "/SierraLauncher.exe": - when: - store: steam registry: @@ -215755,20 +216385,20 @@ Gaben Kingdom: - config steam: id: 497360 -'Gabriel Knight: Sins of the Fathers': +"Gabriel Knight: Sins of the Fathers": files: - /GKSG.*: + "/GKSG.*": tags: - save when: - os: dos - os: windows - /RESOURCE.CFG: + "/RESOURCE.CFG": tags: - config when: - os: dos - /RESOURCE.WIN: + "/RESOURCE.WIN": tags: - config when: @@ -215778,19 +216408,19 @@ Gaben Kingdom: installDir: Gabriel Knight: {} launch: - /SierraLauncher.exe: + "/SierraLauncher.exe": - when: - store: steam steam: id: 495700 -'Gabriel Knight: Sins of the Fathers - 20th Anniversary Edition': +"Gabriel Knight: Sins of the Fathers - 20th Anniversary Edition": files: - /AppData/LocalLow/Phoenix Online Studios/GK1: + "/AppData/LocalLow/Phoenix Online Studios/GK1": tags: - save when: - os: windows - /userdata//262000/remote/gk1: + "/userdata//262000/remote/gk1": tags: - save when: @@ -215800,11 +216430,11 @@ Gaben Kingdom: installDir: Gabriel Knight 1: {} launch: - /GK1.app: + "/GK1.app": - when: - os: mac store: steam - /GK1.exe: + "/GK1.exe": - when: - os: windows store: steam @@ -215818,7 +216448,7 @@ Gachi Finder 3000: installDir: Gachi Finder 3000: {} launch: - /Gachi Finder 3000.exe: + "/Gachi Finder 3000.exe": - when: - os: windows store: steam @@ -215828,7 +216458,7 @@ Gachi Gang: installDir: Gachi Gang: {} launch: - /Gachi Gang.exe: + "/Gachi Gang.exe": - when: - os: windows store: steam @@ -215838,17 +216468,17 @@ Gachi Heroes: installDir: Gachi Heroes: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam steam: id: 944220 -'Gachi Heroes 2: Flexboll': +"Gachi Heroes 2: Flexboll": installDir: Gachi Heroes 2 Flexboll: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -215858,25 +216488,25 @@ Gachi Revenge: installDir: Gachi Revenge: {} launch: - /Gachi Revenge.exe: + "/Gachi Revenge.exe": - when: - os: windows store: steam - /Gachi_Revenge.app/Contents/MacOS/Gachi_Revenge: + "/Gachi_Revenge.app/Contents/MacOS/Gachi_Revenge": - when: - os: mac store: steam - /Gachi_Revenge.sh: + "/Gachi_Revenge.sh": - when: - os: linux store: steam steam: id: 1202070 -'Gachi Run: Running of the Slaves': +"Gachi Run: Running of the Slaves": installDir: Gachi run Running of the slaves: {} launch: - /GachiRun.exe: + "/GachiRun.exe": - when: - bit: 64 os: windows @@ -215887,20 +216517,20 @@ Gachimuchi: installDir: GACHIMUCHI: {} launch: - /GACHIMUCHI.exe: + "/GACHIMUCHI.exe": - when: - os: windows store: steam steam: id: 740600 -'Gachimuchi Arcade: Lustful Boys': +"Gachimuchi Arcade: Lustful Boys": steam: id: 987090 Gachimuchi Manly Puzzle: installDir: GACHIMUCHI MANLY PUZZLE: {} launch: - /GACHIMUCHI_III_MANLY_PUZZLE.exe: + "/GACHIMUCHI_III_MANLY_PUZZLE.exe": - when: - store: steam steam: @@ -215909,7 +216539,7 @@ Gachimuchi Rebirth: installDir: GACHIMUCHI REBIRTH: {} launch: - /GACHIMUCHI_REBIRTH.exe: + "/GACHIMUCHI_REBIRTH.exe": - when: - store: steam steam: @@ -215918,17 +216548,17 @@ Gachimuchi Reloaded: installDir: Gachimuchi Reloaded: {} launch: - /Gachimuchi_Reloaded.exe: + "/Gachimuchi_Reloaded.exe": - when: - os: windows store: steam steam: id: 766730 -'Gachimuchi: The Card Game': +"Gachimuchi: The Card Game": installDir: GACHIMUCHI The Card Game: {} launch: - /GACHIMUCHI_The_Card_Game.exe: + "/GACHIMUCHI_The_Card_Game.exe": - when: - store: steam steam: @@ -215937,7 +216567,7 @@ Gahkthun of the Golden Lightning: installDir: Gahkthun of the Golden Lightning Steam Edition: {} launch: - /Gahkthun.exe: + "/Gahkthun.exe": - when: - store: steam steam: @@ -215954,7 +216584,7 @@ Gaia 2200: installDir: GAIA 2200: {} launch: - /GAIA2200.exe: + "/GAIA2200.exe": - when: - os: windows store: steam @@ -215962,12 +216592,12 @@ Gaia 2200: id: 671200 Gaia Beyond: files: - /Saved Games/Gaia Beyond: + "/Saved Games/Gaia Beyond": tags: - config when: - os: windows - /Saved Games/Gaia Beyond/savegames: + "/Saved Games/Gaia Beyond/savegames": tags: - save when: @@ -215975,39 +216605,39 @@ Gaia Beyond: installDir: Gaia Beyond: {} launch: - /Gaia Beyond.exe: + "/Gaia Beyond.exe": - when: - os: windows store: steam steam: id: 788630 -Gaia's Decision: +"Gaia's Decision": steam: id: 1212510 -'Gaia''s Melody: Echoed Melodies': +"Gaia's Melody: Echoed Melodies": installDir: - Gaia's Melody Echoed Melodies: {} + "Gaia's Melody Echoed Melodies": {} launch: - /Gaia's Melody Echoed Melodies.exe: - - arguments: '--in-process-gpu' + "/Gaia's Melody Echoed Melodies.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam - /Game: + "/Game": - when: - os: linux store: steam - /Game.app: + "/Game.app": - when: - os: mac store: steam steam: id: 725410 -'Gaijin Charenji 1 : Kiss or Kill': +"Gaijin Charenji 1 : Kiss or Kill": installDir: Gaijin Charenji 1 Kiss or Kill: {} launch: - /GaijinCharenji1KissOrKill_steam.exe: + "/GaijinCharenji1KissOrKill_steam.exe": - when: - bit: 64 os: windows @@ -216018,7 +216648,7 @@ Gaijin Troubles: installDir: GaijinTroubles: {} launch: - /GaijinTroubles64.exe: + "/GaijinTroubles64.exe": - when: - bit: 64 os: windows @@ -216027,22 +216657,22 @@ Gaijin Troubles: id: 1179220 Gain Ground: files: - /SEGA Genesis Classics/0004: + "/SEGA Genesis Classics/0004": tags: - save when: - os: windows - /SEGA Genesis Classics/setup.dat: + "/SEGA Genesis Classics/setup.dat": tags: - config when: - os: windows - /SEGA Mega Drive Classics/0004: + "/SEGA Mega Drive Classics/0004": tags: - save when: - os: windows - /SEGA Mega Drive Classics/setup.dat: + "/SEGA Mega Drive Classics/setup.dat": tags: - config when: @@ -216053,26 +216683,26 @@ Gakuen Club: installDir: Gakuen Club: {} launch: - /Gakuen_Club.exe: - - arguments: '-windowed' + "/Gakuen_Club.exe": + - arguments: "-windowed" when: - os: windows store: steam steam: id: 505080 -'Gal Guardians: Demon Purge': +"Gal Guardians: Demon Purge": files: - /GGDPGameData*: + "/GGDPGameData*": tags: - save when: - os: windows - /GGDPSystemData: + "/GGDPSystemData": tags: - save when: - os: windows - /config.ini: + "/config.ini": tags: - config when: @@ -216080,7 +216710,7 @@ Gakuen Club: installDir: Grim Guardians Demon Purge: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -216088,12 +216718,12 @@ Gakuen Club: id: 2081400 Gal*Gun 2: files: - /GalGun2/Saved/Config/WindowsNoEditor: + "/GalGun2/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /GalGun2/Saved/SaveGames: + "/GalGun2/Saved/SaveGames": tags: - save when: @@ -216101,7 +216731,7 @@ Gal*Gun 2: installDir: GalGun 2: {} launch: - /GalGun2.exe: + "/GalGun2.exe": - when: - bit: 64 os: windows @@ -216110,12 +216740,12 @@ Gal*Gun 2: id: 851890 Gal*Gun Returns: files: - /GalGunReturns/: + "/GalGunReturns/": tags: - save when: - os: windows - /GalGunReturns//Config.ini: + "/GalGunReturns//Config.ini": tags: - config when: @@ -216123,7 +216753,7 @@ Gal*Gun Returns: installDir: GalGun Returns: {} launch: - /game.exe: + "/game.exe": - when: - bit: 64 os: windows @@ -216135,22 +216765,22 @@ Gal*Gun VR: GalGun VR: {} steam: id: 678520 -'Gal*Gun: Double Peace': +"Gal*Gun: Double Peace": files: - /Binaries/Win64/save: + "/Binaries/Win64/save": tags: - save when: - os: windows - /My Games/UnrealEngine3/GG2Game/Config: + "/My Games/UnrealEngine3/GG2Game/Config": tags: - config when: - os: windows id: steamExtra: - - 537770 - 537120 + - 537770 - 537780 - 537790 - 539780 @@ -216176,18 +216806,18 @@ Gal*Gun VR: installDir: GalGun Double Peace: {} launch: - /Binaries/Win64/GG2Game.exe: + "/Binaries/Win64/GG2Game.exe": - when: - os: windows store: steam - workingDir: /Binaries/Win64 + workingDir: "/Binaries/Win64" steam: id: 511740 Gal-X-E: installDir: Gal-X-E: {} launch: - /Gal-X-E.exe: + "/Gal-X-E.exe": - when: - os: windows store: steam @@ -216197,35 +216827,35 @@ Gala Collider: installDir: Gala_Collider: {} launch: - /GalaCollider.app/Contents/MacOS/GalaCollider: - - arguments: '-LaunchArgs=default' + "/GalaCollider.app/Contents/MacOS/GalaCollider": + - arguments: "-LaunchArgs=default" when: - os: mac store: steam - /GalaCollider.exe: - - arguments: '-LaunchArgs=default' + "/GalaCollider.exe": + - arguments: "-LaunchArgs=default" when: - os: windows store: steam - /GalaCollider.x86: - - arguments: '-LaunchArgs=default' + "/GalaCollider.x86": + - arguments: "-LaunchArgs=default" when: - bit: 32 os: linux store: steam - /GalaCollider.x86_64: - - arguments: '-LaunchArgs=default' + "/GalaCollider.x86_64": + - arguments: "-LaunchArgs=default" when: - bit: 64 os: linux store: steam steam: id: 970370 -'Galacatraz: Eject Equip Escape': +"Galacatraz: Eject Equip Escape": installDir: Galacatraz Eject Equip Escape: {} launch: - /GEEE.exe: + "/GEEE.exe": - when: - os: windows store: steam @@ -216235,16 +216865,16 @@ Galacide: installDir: Galacide: {} launch: - /Galacide.exe: + "/Galacide.exe": - when: - bit: 64 os: windows store: steam - /Galacide/Binaries/Linux/Galacide-Linux-Shipping: + "/Galacide/Binaries/Linux/Galacide-Linux-Shipping": - when: - os: linux store: steam - /Galacide/Binaries/Win32/Galacide.exe: + "/Galacide/Binaries/Win32/Galacide.exe": - when: - bit: 32 os: windows @@ -216255,7 +216885,7 @@ Galact Quest: installDir: Galact Quest: {} launch: - /GalactQuest.exe: + "/GalactQuest.exe": - when: - os: windows store: steam @@ -216265,7 +216895,7 @@ Galactic Adventures: installDir: Galactic Adventures: {} launch: - /Version 1.0.0.exe: + "/Version 1.0.0.exe": - when: - store: steam steam: @@ -216274,25 +216904,25 @@ Galactic Arms Race: installDir: GalacticArmsRace: {} launch: - /GAR Client 1.2.exe: + "/GAR Client 1.2.exe": - when: - os: windows store: steam steam: id: 249610 -'Galactic Assault: Prisoner of Power': +"Galactic Assault: Prisoner of Power": files: - /replays: + "/replays": tags: - save when: - os: windows - /savegame: + "/savegame": tags: - save when: - os: windows - /settings.ini: + "/settings.ini": tags: - config when: @@ -216303,11 +216933,11 @@ Galactic Asteroids Patrol: installDir: Galactic Asteroids Patrol: {} launch: - /GAP.app: + "/GAP.app": - when: - os: mac store: steam - /GAP.exe: + "/GAP.exe": - when: - os: windows store: steam @@ -216317,7 +216947,7 @@ Galactic Battles: installDir: Galactic Battles: {} launch: - /Galactic Battles.exe: + "/Galactic Battles.exe": - when: - os: windows store: steam @@ -216327,7 +216957,7 @@ Galactic Bowling: installDir: Galactic Bowling: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: @@ -216336,7 +216966,7 @@ Galactic Bulwark Strike: installDir: Galactic Bulwark Strike: {} launch: - /GBS.exe: + "/GBS.exe": - when: - os: windows store: steam @@ -216346,11 +216976,11 @@ Galactic Campaign: installDir: GC: {} launch: - /GC linux/GC linux.x86: + "/GC linux/GC linux.x86": - when: - os: linux store: steam - /GC/GC.exe: + "/GC/GC.exe": - when: - os: windows store: steam @@ -216358,12 +216988,12 @@ Galactic Campaign: id: 974430 Galactic Civilizations: files: - /GalCiv/Data/Prefs.ini: + "/GalCiv/Data/Prefs.ini": tags: - config when: - os: windows - /GalCiv/Data/SaveGames: + "/GalCiv/Data/SaveGames": tags: - save when: @@ -216373,32 +217003,32 @@ Galactic Civilizations: installDir: Galactic Civilizations I Ultimate Edition: {} launch: - /AltarianProphecy/GalCiv.exe: + "/AltarianProphecy/GalCiv.exe": - when: - store: steam - workingDir: /AltarianProphecy + workingDir: "/AltarianProphecy" steam: id: 214150 -'Galactic Civilizations II: Dread Lords': +"Galactic Civilizations II: Dread Lords": gog: id: 1444400746 installDir: Galactic Civilizations II - Ultimate Edition: {} launch: - /Twilight/GC2TwilightOfTheArnor.exe: + "/Twilight/GC2TwilightOfTheArnor.exe": - when: - store: steam - workingDir: /Twilight + workingDir: "/Twilight" steam: id: 202200 Galactic Civilizations III: files: - /My Games/GalCiv3: + "/My Games/GalCiv3": tags: - config when: - os: windows - /My Games/GalCiv3/Saves: + "/My Games/GalCiv3/Saves": tags: - save when: @@ -216408,19 +217038,19 @@ Galactic Civilizations III: installDir: Galactic Civilizations III: {} launch: - /StardockLauncher.exe: + "/StardockLauncher.exe": - when: - store: steam steam: id: 226860 Galactic Civilizations IV: files: - /My Games/GalCiv4/MPSaves: + "/My Games/GalCiv4/MPSaves": tags: - save when: - os: windows - /My Games/GalCiv4/Saves: + "/My Games/GalCiv4/Saves": tags: - save when: @@ -216435,7 +217065,7 @@ Galactic Civilizations IV: installDir: Galactic Civilizations IV: {} launch: - /StardockLauncher.exe: + "/StardockLauncher.exe": - when: - store: steam steam: @@ -216444,7 +217074,7 @@ Galactic Command Echo Squad SE: installDir: Galactic Command Echo Squad SE: {} launch: - /GCES_SE.EXE: + "/GCES_SE.EXE": - when: - os: windows store: steam @@ -216454,27 +217084,27 @@ Galactic Conquerors: installDir: Galactic Conquerors: {} launch: - /Galactic Conquerors.app: + "/Galactic Conquerors.app": - when: - os: mac store: steam - /Galactic Conquerors.exe: + "/Galactic Conquerors.exe": - when: - os: windows store: steam - /Galactic Conquerors.x86: + "/Galactic Conquerors.x86": - when: - bit: 32 os: linux store: steam - /Galactic Conquerors.x86_64: + "/Galactic Conquerors.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 385680 -'Galactic Core: The Lost Fleet': +"Galactic Core: The Lost Fleet": installDir: Galactic Core The Lost Fleet: {} steam: @@ -216483,7 +217113,7 @@ Galactic Crew: installDir: Galactic Crew: {} launch: - /Galactic Crew.exe: + "/Galactic Crew.exe": - when: - os: windows store: steam @@ -216493,12 +217123,12 @@ Galactic Delivery: installDir: Galactic Delivery: {} launch: - /GalacticDelivery_32Bit.exe: + "/GalacticDelivery_32Bit.exe": - when: - bit: 32 os: windows store: steam - /GalacticDelivery_64Bit.exe: + "/GalacticDelivery_64Bit.exe": - when: - bit: 64 os: windows @@ -216509,7 +217139,7 @@ Galactic Dominion: installDir: Galactic Dominion: {} launch: - /Galactic Dominion.exe: + "/Galactic Dominion.exe": - when: - os: windows store: steam @@ -216519,7 +217149,7 @@ Galactic Feud: installDir: Galactic Feud: {} launch: - /GFGame.exe: + "/GFGame.exe": - when: - bit: 64 os: windows @@ -216530,7 +217160,7 @@ Galactic Field: installDir: Galactic Field: {} launch: - /Galactic Field.exe: + "/Galactic Field.exe": - when: - os: windows store: steam @@ -216543,32 +217173,32 @@ Galactic Fighters: installDir: Galactic Fighters: {} launch: - /GalacticFighters.exe: + "/GalacticFighters.exe": - when: - bit: 32 os: windows store: steam - /GalacticFighters.x64.app: + "/GalacticFighters.x64.app": - when: - bit: 64 os: mac store: steam - /GalacticFighters.x86: + "/GalacticFighters.x86": - when: - bit: 32 os: linux store: steam - /GalacticFighters.x86.app: + "/GalacticFighters.x86.app": - when: - bit: 32 os: mac store: steam - /GalacticFighters64.exe: + "/GalacticFighters64.exe": - when: - bit: 64 os: windows store: steam - /GalacticFighters64.x86_64: + "/GalacticFighters64.x86_64": - when: - bit: 64 os: linux @@ -216579,7 +217209,7 @@ Galactic Force: installDir: Galactic Force: {} launch: - /GalacticForce.exe: + "/GalacticForce.exe": - when: - os: windows store: steam @@ -216594,7 +217224,7 @@ Galactic Harvester: installDir: Galactic Harvester: {} launch: - /GalacticHarvester.exe: + "/GalacticHarvester.exe": - when: - bit: 64 os: windows @@ -216608,7 +217238,7 @@ Galactic Incoming: installDir: Galactic Incoming: {} launch: - /Galactic_Incoming.exe: + "/Galactic_Incoming.exe": - when: - os: windows store: steam @@ -216618,7 +217248,7 @@ Galactic Inheritors: installDir: Galactic Inheritors: {} launch: - /Galactic Inheritors.exe: + "/Galactic Inheritors.exe": - when: - os: windows store: steam @@ -216628,11 +217258,11 @@ Galactic Junk League: installDir: Galactic Junk League: {} launch: - /GJL.app/Contents/MacOS/GJL: + "/GJL.app/Contents/MacOS/GJL": - when: - os: mac store: steam - /GJL.exe: + "/GJL.exe": - when: - os: windows store: steam @@ -216642,12 +217272,12 @@ Galactic Keep: installDir: Galactic Keep: {} launch: - /Galactic Keep.app: + "/Galactic Keep.app": - when: - bit: 64 os: mac store: steam - /Galactic Keep.exe: + "/Galactic Keep.exe": - when: - os: windows store: steam @@ -216657,7 +217287,7 @@ Galactic Lander: installDir: Galactic Lander: {} launch: - /Galactic Lander.exe: + "/Galactic Lander.exe": - when: - store: steam steam: @@ -216666,20 +217296,20 @@ Galactic Landing: installDir: Galactic Landing: {} launch: - /Galactic Landing.app/Contents/MacOS/Galactic Landing: + "/Galactic Landing.app/Contents/MacOS/Galactic Landing": - when: - os: mac store: steam - /Galactic Landing.exe: + "/Galactic Landing.exe": - when: - os: windows store: steam - /Galactic Landing.x86: + "/Galactic Landing.x86": - when: - bit: 32 os: linux store: steam - /Galactic Landing.x86_64: + "/Galactic Landing.x86_64": - when: - bit: 64 os: linux @@ -216690,7 +217320,7 @@ Galactic Lords: installDir: Galactic Lords: {} launch: - /Galactic Lords.exe: + "/Galactic Lords.exe": - when: - store: steam steam: @@ -216699,7 +217329,7 @@ Galactic Management: installDir: GalMgmt: {} launch: - /GalMgmt.exe: + "/GalMgmt.exe": - when: - os: windows store: steam @@ -216709,15 +217339,15 @@ Galactic Missile Defense: installDir: Galactic Missile Defense: {} launch: - /GMD_Steam.exe: + "/GMD_Steam.exe": - when: - os: windows store: steam - /GMD_Steam/runner: + "/GMD_Steam/runner": - when: - os: linux store: steam - /Galactic Missile Defense.app: + "/Galactic Missile Defense.app": - when: - os: mac store: steam @@ -216727,7 +217357,7 @@ Galactic Orbital Death Sport: installDir: G.O.D.Sport: {} launch: - /gods.exe: + "/gods.exe": - when: - bit: 64 os: windows @@ -216740,7 +217370,7 @@ Galactic Pick Up Artist: installDir: Galactic Pick Up Artist: {} launch: - /Galactic_PickUpArtist.exe: + "/Galactic_PickUpArtist.exe": - when: - os: windows store: steam @@ -216750,11 +217380,11 @@ Galactic Pocket Billiards: installDir: Galactic Pocket Billiards: {} launch: - /GPB.exe: + "/GPB.exe": - when: - os: windows store: steam - /GPB/runner: + "/GPB/runner": - when: - os: linux store: steam @@ -216769,7 +217399,7 @@ Galactic Ruler: installDir: Galactic Ruler: {} launch: - /GalacticRuler.exe: + "/GalacticRuler.exe": - when: - bit: 64 os: windows @@ -216780,7 +217410,7 @@ Galactic Shipwright: installDir: GalacticShipwright: {} launch: - /GalacticShipwright.exe: + "/GalacticShipwright.exe": - when: - os: windows store: steam @@ -216790,7 +217420,7 @@ Galactic Storm: installDir: Galactic Storm: {} launch: - /GalacticStorm.exe: + "/GalacticStorm.exe": - when: - bit: 64 os: windows @@ -216804,7 +217434,7 @@ Galactic Tower Defense: installDir: Galactic Tower Defense: {} launch: - /Galactic Tower Defense.exe: + "/Galactic Tower Defense.exe": - when: - os: windows store: steam @@ -216814,7 +217444,7 @@ Galactic Tree Frog: installDir: Galactic Tree Frog: {} launch: - /GalacticAmphibians.exe: + "/GalacticAmphibians.exe": - when: - os: windows store: steam @@ -216829,7 +217459,7 @@ Galactineers: installDir: Galactineers: {} launch: - /Galactineers.exe: + "/Galactineers.exe": - when: - bit: 32 os: windows @@ -216840,24 +217470,24 @@ Galactis: installDir: Galactis: {} launch: - /Galactis.exe: + "/Galactis.exe": - when: - os: windows store: steam steam: id: 906460 -'Galador: The Prince and the Coward': +"Galador: The Prince and the Coward": gog: id: 2014998256 -'Galagan''s Island: Reprymian Rising': +"Galagan's Island: Reprymian Rising": installDir: - Galagan's Island Reprymian Rising: {} + "Galagan's Island Reprymian Rising": {} launch: - /Galagan's Island.app: + "/Galagan's Island.app": - when: - os: mac store: steam - /Galagan's Island.exe: + "/Galagan's Island.exe": - when: - os: windows store: steam @@ -216872,20 +217502,20 @@ Galak Zed: installDir: Galak Zed: {} launch: - /GalakZed.exe: + "/GalakZed.exe": - when: - store: steam steam: id: 1053020 -'Galak-Z: The Dimensional': +"Galak-Z: The Dimensional": files: - /SaveData.dat: + "/SaveData.dat": tags: - save when: - os: windows - os: linux - /unity3d/17-BIT/Galak-Z: + "/unity3d/17-BIT/Galak-Z": tags: - config when: @@ -216895,20 +217525,20 @@ Galak Zed: installDir: Galak-Z: {} launch: - /Galak-Z.app: + "/Galak-Z.app": - when: - os: mac store: steam - /Galak-Z.exe: + "/Galak-Z.exe": - when: - os: windows store: steam - /Galak-Z.x86: + "/Galak-Z.x86": - when: - bit: 32 os: linux store: steam - /Galak-Z.x86_64: + "/Galak-Z.x86_64": - when: - bit: 64 os: linux @@ -216923,7 +217553,7 @@ GalaxIverse: installDir: GalaxIverse: {} launch: - /GalaxIverse.exe: + "/GalaxIverse.exe": - when: - os: windows store: steam @@ -216933,11 +217563,11 @@ Galaxia Conquestum: installDir: Galaxia Conquestum: {} launch: - /gc.exe: + "/gc.exe": - when: - os: windows store: steam - /runner: + "/runner": - when: - os: linux store: steam @@ -216947,16 +217577,16 @@ Galaxicus: installDir: Galaxicus: {} launch: - /CrimsonLeafLauncher.app/Contents/MacOS/CrimsonLeafLauncher: + "/CrimsonLeafLauncher.app/Contents/MacOS/CrimsonLeafLauncher": - when: - os: mac store: steam - /Launcher/CrimsonLeafLauncher.exe: + "/Launcher/CrimsonLeafLauncher.exe": - when: - bit: 64 os: windows store: steam - /Launcher/CrimsonLeafLauncher.x86_64: + "/Launcher/CrimsonLeafLauncher.x86_64": - when: - bit: 64 os: linux @@ -216985,15 +217615,15 @@ Galaxy Admirals: installDir: Galaxy Admirals: {} launch: - /GalaxyAdmirals.app: + "/GalaxyAdmirals.app": - when: - os: mac store: steam - /GalaxyAdmirals.exe: + "/GalaxyAdmirals.exe": - when: - os: windows store: steam - /GalaxyAdmirals.x86: + "/GalaxyAdmirals.x86": - when: - os: linux store: steam @@ -217003,11 +217633,11 @@ Galaxy Annihilation: installDir: Galaxy Annihilation: {} launch: - /galaxy_annihilation.exe: + "/galaxy_annihilation.exe": - when: - os: windows store: steam - /galaxy_annihilation_linux: + "/galaxy_annihilation_linux": - when: - bit: 64 os: linux @@ -217018,11 +217648,11 @@ Galaxy Ball: installDir: Galaxy Ball: {} launch: - /Galaxy Ball.app/Contents/MacOS/Galaxy Ball: + "/Galaxy Ball.app/Contents/MacOS/Galaxy Ball": - when: - os: mac store: steam - /Galaxy Ball.exe: + "/Galaxy Ball.exe": - when: - os: windows store: steam @@ -217037,19 +217667,19 @@ Galaxy Cannon Rider: installDir: Galaxy Cannon Rider: {} launch: - /GCR.exe: + "/GCR.exe": - when: - store: steam steam: id: 461580 Galaxy Champions TV: files: - /.config/unity3d/aQuadiun/Galaxy Champions TV: + "/.config/unity3d/aQuadiun/Galaxy Champions TV": tags: - save when: - os: linux - /.config/unity3d/aQuadiun/Galaxy Champions TV/prefs: + "/.config/unity3d/aQuadiun/Galaxy Champions TV/prefs": tags: - config when: @@ -217057,15 +217687,15 @@ Galaxy Champions TV: installDir: Galaxy Champions TV: {} launch: - /Galaxy Champions TV.exe: + "/Galaxy Champions TV.exe": - when: - os: windows store: steam - /GalaxyChampionsTV.app/Contents/MacOS/GalaxyChampionsTV: + "/GalaxyChampionsTV.app/Contents/MacOS/GalaxyChampionsTV": - when: - os: mac store: steam - /GalaxyChampionsTV.x86_64: + "/GalaxyChampionsTV.x86_64": - when: - os: linux store: steam @@ -217075,7 +217705,7 @@ Galaxy Combat Wargames: installDir: Galaxy Combat Wargames: {} launch: - /GCWG.exe: + "/GCWG.exe": - when: - os: windows store: steam @@ -217085,22 +217715,22 @@ Galaxy Commando: installDir: Galaxy Commando: {} launch: - /solar.exe: + "/solar.exe": - when: - os: windows store: steam steam: id: 526840 -'Galaxy Control: 3D Strategy': +"Galaxy Control: 3D Strategy": installDir: Galaxy Control 3D Strategy: {} launch: - /gc.app: + "/gc.app": - when: - bit: 64 os: mac store: steam - /gc.exe: + "/gc.exe": - when: - bit: 64 os: windows @@ -217114,22 +217744,22 @@ Galaxy Crash: id: 658090 Galaxy Force II: files: - /SEGA Genesis Classics/0018: + "/SEGA Genesis Classics/0018": tags: - save when: - os: windows - /SEGA Genesis Classics/setup.dat: + "/SEGA Genesis Classics/setup.dat": tags: - config when: - os: windows - /SEGA Mega Drive Classics/0018: + "/SEGA Mega Drive Classics/0018": tags: - save when: - os: windows - /SEGA Mega Drive Classics/setup.dat: + "/SEGA Mega Drive Classics/setup.dat": tags: - config when: @@ -217140,7 +217770,7 @@ Galaxy Forces VR: installDir: Galaxy Forces VR: {} launch: - /Galaxy Forces VR.exe: + "/Galaxy Forces VR.exe": - when: - bit: 64 os: windows @@ -217149,7 +217779,7 @@ Galaxy Forces VR: id: 1035550 Galaxy Girls: files: - /.renpy/GalaxyGirlsSave: + "/.renpy/GalaxyGirlsSave": tags: - config - save @@ -217158,15 +217788,15 @@ Galaxy Girls: installDir: Galaxy Girls: {} launch: - /Galaxy Girls.app: + "/Galaxy Girls.app": - when: - os: mac store: steam - /Galaxy Girls.exe: + "/Galaxy Girls.exe": - when: - os: windows store: steam - /Galaxy Girls.sh: + "/Galaxy Girls.sh": - when: - os: linux store: steam @@ -217176,7 +217806,7 @@ Galaxy Monster: installDir: GALAXY MONSTER: {} launch: - /GALAXY MONSTER.exe: + "/GALAXY MONSTER.exe": - when: - store: steam steam: @@ -217190,7 +217820,7 @@ Galaxy Reavers: installDir: Galaxy Reavers: {} launch: - /Galaxy.exe: + "/Galaxy.exe": - when: - store: steam steam: @@ -217201,27 +217831,27 @@ Galaxy Squad: installDir: Galaxy Squad: {} launch: - /Galaxy Squad.exe: + "/Galaxy Squad.exe": - when: - os: windows store: steam - /Galaxy Squad.x86: + "/Galaxy Squad.x86": - when: - os: linux store: steam steam: id: 921710 -'Galaxy Trucker: Extended Edition': +"Galaxy Trucker: Extended Edition": gog: id: 1633057647 installDir: Galaxy Trucker: {} launch: - /GalaxyTrucker_steam.app/Contents/MacOS/GalaxyTrucker_steam: + "/GalaxyTrucker_steam.app/Contents/MacOS/GalaxyTrucker_steam": - when: - os: mac store: steam - /GalaxyTrucker_steam.exe: + "/GalaxyTrucker_steam.exe": - when: - os: windows store: steam @@ -217231,7 +217861,7 @@ Galaxy Union: installDir: Galaxy Union: {} launch: - /Galaxy Union.exe: + "/Galaxy Union.exe": - when: - os: windows store: steam @@ -217241,7 +217871,7 @@ Galaxy Wide Domination: installDir: GalaxyWideDomanation: {} launch: - /Galaxy Wide Domination.exe: + "/Galaxy Wide Domination.exe": - when: - store: steam steam: @@ -217253,7 +217883,7 @@ Galaxy in Peril: installDir: Galaxy in Peril: {} launch: - /Galaxy In Peril.exe: + "/Galaxy In Peril.exe": - when: - store: steam steam: @@ -217262,7 +217892,7 @@ Galaxy in Turmoil: installDir: Galaxy in Turmoil: {} launch: - /GalaxyinTurmoil.exe: + "/GalaxyinTurmoil.exe": - when: - bit: 64 os: windows @@ -217273,15 +217903,15 @@ Galaxy of Drones: installDir: Galaxy of Drones: {} launch: - /Galaxy of Drones.app/Contents/MacOS/Galaxy of Drones: + "/Galaxy of Drones.app/Contents/MacOS/Galaxy of Drones": - when: - os: mac store: steam - /Galaxy of Drones.exe: + "/Galaxy of Drones.exe": - when: - os: windows store: steam - /Galaxy of Drones.x86_64: + "/Galaxy of Drones.x86_64": - when: - bit: 64 os: linux @@ -217294,20 +217924,20 @@ Galaxy of Pen & Paper: installDir: Galaxy of Pen and Paper: {} launch: - /GalaxyOfPenAndPaper.app: + "/GalaxyOfPenAndPaper.app": - when: - os: mac store: steam - /GalaxyOfPenAndPaper.exe: + "/GalaxyOfPenAndPaper.exe": - when: - os: windows store: steam - /GalaxyOfPenAndPaper.x86: + "/GalaxyOfPenAndPaper.x86": - when: - bit: 32 os: linux store: steam - /GalaxyOfPenAndPaper.x86_64: + "/GalaxyOfPenAndPaper.x86_64": - when: - bit: 64 os: linux @@ -217318,7 +217948,7 @@ Galaxy of Trian: installDir: Galaxy of Trian: {} launch: - /GalaxyOfTrian.exe: + "/GalaxyOfTrian.exe": - when: - os: windows store: steam @@ -217326,12 +217956,12 @@ Galaxy of Trian: id: 525330 Galaxy on Fire 2 Full HD: files: - /Galaxy on Fire 2 Full HD: + "/Galaxy on Fire 2 Full HD": tags: - save when: - os: windows - /Galaxy on Fire 2 Full HD/GoF2.ini: + "/Galaxy on Fire 2 Full HD/GoF2.ini": tags: - config when: @@ -217339,26 +217969,26 @@ Galaxy on Fire 2 Full HD: installDir: Galaxy On Fire 2 HD: {} launch: - /GoF2Launcher.exe: + "/GoF2Launcher.exe": - when: - os: windows store: steam steam: id: 212010 -'Galcon 2: Galactic Conquest': +"Galcon 2: Galactic Conquest": installDir: Galcon 2: {} launch: - /Galcon 2.app: + "/Galcon 2.app": - when: - os: mac store: steam - /bin/main: + "/bin/main": - when: - os: linux store: steam - workingDir: /bin - /galcon2.exe: + workingDir: "/bin" + "/galcon2.exe": - when: - os: windows store: steam @@ -217368,43 +217998,43 @@ Galcon Fusion: installDir: Galcon Fusion: {} launch: - /Galcon Fusion.app: + "/Galcon Fusion.app": - when: - os: mac store: steam - /GalconFusion.exe: + "/GalconFusion.exe": - when: - os: windows store: steam - /bin/sdlapp: + "/bin/sdlapp": - when: - os: linux store: steam - workingDir: /bin + workingDir: "/bin" steam: id: 44200 Galcon Legends: installDir: Galcon Legends: {} launch: - /Galcon Legends.app: + "/Galcon Legends.app": - when: - os: mac store: steam - /bin/main: + "/bin/main": - when: - os: linux store: steam - workingDir: /bin - /galcon2.exe: + workingDir: "/bin" + "/galcon2.exe": - when: - os: windows store: steam steam: id: 201040 -Galdregon's Domain: +"Galdregon's Domain": files: - /*.GME: + "/*.GME": tags: - save when: @@ -217416,11 +218046,11 @@ Galencia: installDir: Galencia: {} launch: - /Galencia.exe: + "/Galencia.exe": - when: - os: windows store: steam - /test.bat: + "/test.bat": - when: - os: windows store: steam @@ -217428,7 +218058,7 @@ Galencia: id: 887510 Galimulator: files: - /.prefs: + "/.prefs": tags: - config when: @@ -217436,21 +218066,21 @@ Galimulator: installDir: Galimulator: {} launch: - /Contents/MacOS/galimulator-macosx: + "/Contents/MacOS/galimulator-macosx": - when: - os: mac store: steam - /galimulator-linux-64bit: + "/galimulator-linux-64bit": - when: - bit: 64 os: linux store: steam - /galimulator-windows-32bit.exe: + "/galimulator-windows-32bit.exe": - when: - bit: 32 os: windows store: steam - /galimulator-windows-64bit.exe: + "/galimulator-windows-64bit.exe": - when: - bit: 64 os: windows @@ -217461,7 +218091,7 @@ Gallery One: installDir: Gallery One: {} launch: - /Gallery One.exe: + "/Gallery One.exe": - when: - os: windows store: steam @@ -217471,7 +218101,7 @@ Gallows: installDir: Gallows: {} launch: - /Gallows.exe: + "/Gallows.exe": - when: - bit: 64 os: windows @@ -217482,7 +218112,7 @@ Gallows Choice: installDir: Gallows Choice: {} launch: - /Gallows choice.exe: + "/Gallows choice.exe": - when: - os: windows store: steam @@ -217492,7 +218122,7 @@ Gambit Heart: installDir: GambitHeart: {} launch: - /GambitHeart.exe: + "/GambitHeart.exe": - when: - os: windows store: steam @@ -217502,7 +218132,7 @@ Gamble Fight Plus: installDir: Gamble Fight Plus: {} launch: - /GambleFightPlus.exe: + "/GambleFightPlus.exe": - when: - store: steam steam: @@ -217511,7 +218141,7 @@ Gamble of Gods: installDir: Gamble of Gods: {} launch: - /Egipto.exe: + "/Egipto.exe": - when: - os: windows store: steam @@ -217521,7 +218151,7 @@ Gambol: installDir: Gambol: {} launch: - /Gambol.exe: + "/Gambol.exe": - when: - bit: 64 os: windows @@ -217532,7 +218162,7 @@ Game Breaker: installDir: Game Breaker: {} launch: - /GameBreaker.exe: + "/GameBreaker.exe": - when: - bit: 64 os: windows @@ -217543,11 +218173,11 @@ Game Builder: installDir: Game Builder: {} launch: - /Game Builder.app/Contents/MacOS/Game Builder: + "/Game Builder.app/Contents/MacOS/Game Builder": - when: - os: mac store: steam - /Game Builder.exe: + "/Game Builder.exe": - when: - os: windows store: steam @@ -217555,7 +218185,7 @@ Game Builder: id: 929860 Game Corp DX: files: - /GameCorpDX_Data/Saves: + "/GameCorpDX_Data/Saves": tags: - save when: @@ -217563,15 +218193,15 @@ Game Corp DX: installDir: Game Corp DX: {} launch: - /GameCorpDX.app: + "/GameCorpDX.app": - when: - os: mac store: steam - /GameCorpDX.exe: + "/GameCorpDX.exe": - when: - os: windows store: steam - /GameCorpDX.x86: + "/GameCorpDX.x86": - when: - os: linux store: steam @@ -217579,7 +218209,7 @@ Game Corp DX: id: 399670 Game Dev Story: files: - /saves/: + "/saves/": tags: - save when: @@ -217587,7 +218217,7 @@ Game Dev Story: installDir: GameDevStory: {} launch: - /KairoGames.exe: + "/KairoGames.exe": - when: - os: windows store: steam @@ -217597,11 +218227,11 @@ Game Dev Studio: installDir: Game Dev Studio: {} launch: - /game_dev_studio.exe: + "/game_dev_studio.exe": - when: - os: windows store: steam - /launch_gds: + "/launch_gds": - when: - bit: 64 os: linux @@ -217610,37 +218240,37 @@ Game Dev Studio: id: 773580 Game Dev Tycoon: files: - /.config/Game Dev Tycoon: + "/.config/Game Dev Tycoon": tags: - config - save when: - os: linux - /Library/Application Support/Game Dev Tycoon/Local Storage: + "/Library/Application Support/Game Dev Tycoon/Local Storage": tags: - config - save when: - os: mac - /userdata//239820/remote: + "/userdata//239820/remote": tags: - config - save when: - store: steam - /Game Dev Tycoon - Steam/Local Storage: + "/Game Dev Tycoon - Steam/Local Storage": tags: - config - save when: - os: windows - /Game Dev Tycoon/Local Storage: + "/Game Dev Tycoon/Local Storage": tags: - config - save when: - os: windows - /Packages/B3B9BB81.56264F78B4FFF_swksbykwsp6kr/RoamingState: + "/Packages/B3B9BB81.56264F78B4FFF_swksbykwsp6kr/RoamingState": tags: - config - save @@ -217650,25 +218280,25 @@ Game Dev Tycoon: installDir: Game Dev Tycoon: {} launch: - /Game Dev Tycoon.app: + "/Game Dev Tycoon.app": - when: - os: mac store: steam - /nw.exe: + "/nw.exe": - when: - os: windows store: steam - /start.sh: + "/start.sh": - when: - os: linux store: steam steam: id: 239820 -'Game Machines: Arcade Casino': +"Game Machines: Arcade Casino": installDir: Game Machines Arcade Casino: {} launch: - /QuestViewer.exe: + "/QuestViewer.exe": - arguments: Q3DStart.q3d when: - os: windows @@ -217679,25 +218309,25 @@ Game Master Plus: installDir: Game Master Plus: {} launch: - /Game: + "/Game": - when: - os: linux store: steam - /Game.app: + "/Game.app": - when: - os: mac store: steam - /Game.exe: + "/Game.exe": - when: - os: windows store: steam steam: id: 950890 -'Game Of Puzzles: Nature': +"Game Of Puzzles: Nature": installDir: Game Of Puzzles Nature: {} launch: - /GOPNature.exe: + "/GOPNature.exe": - when: - store: steam steam: @@ -217707,19 +218337,19 @@ Game Room: HKEY_CURRENT_USER/Software/Krome Studios/Game Room: tags: - config -'Game Royale 2: The Secret of Jannis Island': +"Game Royale 2: The Secret of Jannis Island": installDir: GAME ROYALE 2: {} launch: - /Game Royale 2.app: + "/Game Royale 2.app": - when: - os: mac store: steam - /gameroyale2.exe: + "/gameroyale2.exe": - when: - os: windows store: steam - /start: + "/start": - when: - os: linux store: steam @@ -217729,7 +218359,7 @@ Game Soup: installDir: Game Soup: {} launch: - /GameSoup.exe: + "/GameSoup.exe": - when: - os: windows store: steam @@ -217737,12 +218367,12 @@ Game Soup: id: 981420 Game Stock Car: files: - /Config.ini: + "/Config.ini": tags: - config when: - os: windows - /UserData//.plr: + "/UserData//.plr": tags: - save when: @@ -217751,7 +218381,7 @@ Game Studio Simulator(我要做游戏): installDir: Game Studio Simulator: {} launch: - /GameMaker.exe: + "/GameMaker.exe": - when: - os: windows store: steam @@ -217759,7 +218389,7 @@ Game Studio Simulator(我要做游戏): id: 1021690 Game Tengoku CruisinMix Special: files: - /Game Tengoku CruisinMix/savedata.dat: + "/Game Tengoku CruisinMix/savedata.dat": tags: - save when: @@ -217767,7 +218397,7 @@ Game Tengoku CruisinMix Special: installDir: Game Tengoku: {} launch: - /Game Tengoku CruisinMix.exe: + "/Game Tengoku CruisinMix.exe": - when: - store: steam steam: @@ -217776,20 +218406,20 @@ Game Tube: installDir: GAME TUBE: {} launch: - /GameTube.app/Contents/MacOS/GameTube: + "/GameTube.app/Contents/MacOS/GameTube": - when: - os: mac store: steam - /GameTube.exe: + "/GameTube.exe": - when: - os: windows store: steam - /GameTube.linux/GameTube.x86: + "/GameTube.linux/GameTube.x86": - when: - bit: 32 os: linux store: steam - /GameTube.linux/GameTube.x86_64: + "/GameTube.linux/GameTube.x86_64": - when: - bit: 64 os: linux @@ -217800,7 +218430,7 @@ Game Tycoon 1.5: installDir: Game Tycoon 1.5: {} launch: - /Game_Tycoon.exe: + "/Game_Tycoon.exe": - when: - store: steam steam: @@ -217809,15 +218439,15 @@ Game Tycoon 2: installDir: Game Tycoon 2: {} launch: - /GameTycoon2.app: + "/GameTycoon2.app": - when: - os: mac store: steam - /GameTycoon2.exe: + "/GameTycoon2.exe": - when: - os: windows store: steam - /GameTycoon2.x86: + "/GameTycoon2.x86": - when: - os: linux store: steam @@ -217827,22 +218457,22 @@ Game Type: installDir: Game Type: {} launch: - /GameType.exe: + "/GameType.exe": - when: - store: steam steam: id: 373630 -Game club "Waka-Waka": +"Game club \"Waka-Waka\"": installDir: Game club Waka-Waka: {} launch: - /WakaWaka.exe: + "/WakaWaka.exe": - when: - os: windows store: steam steam: id: 1047240 -'Game of Death: Bloody Infidelity': +"Game of Death: Bloody Infidelity": registry: HKEY_CURRENT_USER/SOFTWARE/RSK Entertainment/CaptivityOfDeath: tags: @@ -217852,7 +218482,7 @@ Game of Dragons: installDir: Game of Dragons: {} launch: - /Game of Dragons.exe: + "/Game of Dragons.exe": - when: - os: windows store: steam @@ -217862,7 +218492,7 @@ Game of Emperors: installDir: Game of Emperors: {} launch: - /GameOfEmperors.exe: + "/GameOfEmperors.exe": - when: - store: steam steam: @@ -217870,29 +218500,29 @@ Game of Emperors: Game of Life: steam: id: 760750 -'Game of Puzzles: Animals': +"Game of Puzzles: Animals": installDir: Game Of Puzzles Animals: {} launch: - /GOPanimals.exe: + "/GOPanimals.exe": - when: - store: steam steam: id: 1077160 -'Game of Puzzles: Dragons': +"Game of Puzzles: Dragons": installDir: Game Of Puzzles Dragons: {} launch: - /GOPDragons.exe: + "/GOPDragons.exe": - when: - store: steam steam: id: 1072590 -'Game of Puzzles: Space': +"Game of Puzzles: Space": installDir: Game Of Puzzles Space: {} launch: - /GOPspace.exe: + "/GOPspace.exe": - when: - store: steam steam: @@ -217901,7 +218531,7 @@ Game of Stones: installDir: Game of Stones: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -217909,12 +218539,12 @@ Game of Stones: id: 811160 Game of Thrones: files: - /Game of Thrones/UnrealEngine3/AGOTGame/Config: + "/Game of Thrones/UnrealEngine3/AGOTGame/Config": tags: - config when: - os: windows - /Game of Thrones/UnrealEngine3/Binaries/SaveData: + "/Game of Thrones/UnrealEngine3/Binaries/SaveData": tags: - save when: @@ -217922,20 +218552,20 @@ Game of Thrones: installDir: Game of Thrones: {} launch: - /Binaries/Win32/ShippingPC-AGOTGame.exe: + "/Binaries/Win32/ShippingPC-AGOTGame.exe": - when: - store: steam steam: id: 208730 -'Game of Thrones: A Telltale Games Series': +"Game of Thrones: A Telltale Games Series": files: - /Library/Application Support/Telltale Games/Game of Thrones: + "/Library/Application Support/Telltale Games/Game of Thrones": tags: - config - save when: - os: mac - /Telltale Games/Game of Thrones A Telltale Games Series: + "/Telltale Games/Game of Thrones A Telltale Games Series": tags: - config - save @@ -217946,34 +218576,34 @@ Game of Thrones: installDir: Game of Thrones: {} launch: - /Game of Thrones.app: + "/Game of Thrones.app": - when: - os: mac store: steam - /Thrones.exe: + "/Thrones.exe": - when: - os: windows store: steam steam: id: 330840 -'Game of Thrones: Tale of Crows': +"Game of Thrones: Tale of Crows": files: - /Library/Containers/com.devolver.gotwall/Data/Library/Application Support/com.devolver.gotwall/Local: + "/Library/Containers/com.devolver.gotwall/Data/Library/Application Support/com.devolver.gotwall/Local": tags: - config - save when: - os: mac - /Library/Containers/com.devolver.gotwall/Data/Library/Preferences: + "/Library/Containers/com.devolver.gotwall/Data/Library/Preferences": tags: - config when: - os: mac -'Game of Thrones: Winter Is Coming': +"Game of Thrones: Winter Is Coming": installDir: Game of Thrones Winter is Coming: {} launch: - /GotPC.exe: + "/GotPC.exe": - when: - os: windows store: steam @@ -217983,7 +218613,7 @@ Game of the Forgotten Gods. Wake Up: installDir: Game of the forgotten Gods: {} launch: - /GameOfFogottenGod.exe: + "/GameOfFogottenGod.exe": - when: - os: windows store: steam @@ -217996,7 +218626,7 @@ GameBook: installDir: GameBook: {} launch: - /GameBook.exe: + "/GameBook.exe": - when: - os: windows store: steam @@ -218006,7 +218636,7 @@ GameDevDan vs Life: installDir: GameDevDan vs Life: {} launch: - /GameDevDan vs Life.exe: + "/GameDevDan vs Life.exe": - when: - os: windows store: steam @@ -218021,42 +218651,42 @@ GameEllen: installDir: Ellen: {} launch: - /Contents/MacOS/Mac: + "/Contents/MacOS/Mac": - when: - os: mac store: steam - /GameEllen.exe: + "/GameEllen.exe": - when: - os: windows store: steam - /GameEllen.x86: + "/GameEllen.x86": - when: - bit: 32 os: linux store: steam - /GameEllen.x86_64: + "/GameEllen.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 961060 -'GameMaster: Magus': +"GameMaster: Magus": installDir: GameMasterMAGUS: {} launch: - /GameMasterMAGUS.exe: + "/GameMasterMAGUS.exe": - when: - bit: 64 os: windows store: steam steam: id: 844250 -'Gamebook Edgar A. Poe: The Oval Portrait': +"Gamebook Edgar A. Poe: The Oval Portrait": installDir: Gamebook Edgar A. Poe The Oval Portrait: {} launch: - /Gamebook The Oval Portrait.exe: + "/Gamebook The Oval Portrait.exe": - when: - os: windows store: steam @@ -218069,12 +218699,12 @@ Gamecraft: id: 1078000 Gamedec: files: - /GameDEC/Saved/Config/WindowsNoEditor: + "/GameDEC/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /GameDEC/Saved/SaveGames: + "/GameDEC/Saved/SaveGames": tags: - save when: @@ -218084,8 +218714,8 @@ Gamedec: installDir: Gamedec: {} launch: - /GameDEC/Binaries/Win64/GameDEC-Win64-Shipping.exe: - - arguments: '-choiceslogger' + "/GameDEC/Binaries/Win64/GameDEC-Win64-Shipping.exe": + - arguments: "-choiceslogger" when: - bit: 64 os: windows @@ -218096,11 +218726,11 @@ Gamedev Beatdown: installDir: Gamedev Beatdown: {} launch: - /Gamedev Beatdown.app/Contents/MacOS/Gamedev Beatdown: + "/Gamedev Beatdown.app/Contents/MacOS/Gamedev Beatdown": - when: - os: mac store: steam - /Gamedev Beatdown.exe: + "/Gamedev Beatdown.exe": - when: - os: windows store: steam @@ -218110,7 +218740,7 @@ Gamedev simulator: installDir: Gamedev simulator: {} launch: - /gamedev simulator.exe: + "/gamedev simulator.exe": - when: - store: steam steam: @@ -218119,7 +218749,7 @@ Gamehunt: installDir: Gamehunt: {} launch: - /Gamehunt.exe: + "/Gamehunt.exe": - when: - os: windows store: steam @@ -218129,14 +218759,14 @@ Gamepad Massage: installDir: Gamepad Massage: {} launch: - /jre/bin/java: - - arguments: ' -Dfile.encoding=UTF-8 -classpath \"bin:lib:bin/*:lib/*\" com.xenoamess.cyan_potion.base.GameEntrance SettingFilePath=settings/GamepadMassageGuiSettings.x8l -XX:+UnlockExperimentalVMOptions -XX:+UseShenandoahGC' + "/jre/bin/java": + - arguments: " -Dfile.encoding=UTF-8 -classpath \\\"bin:lib:bin/*:lib/*\\\" com.xenoamess.cyan_potion.base.GameEntrance SettingFilePath=settings/GamepadMassageGuiSettings.x8l -XX:+UnlockExperimentalVMOptions -XX:+UseShenandoahGC" when: - bit: 64 os: linux store: steam - /jre/bin/javaw.exe: - - arguments: ' -Dfile.encoding=UTF-8 -classpath bin;lib;bin/*;lib/* com.xenoamess.cyan_potion.base.GameEntrance SettingFilePath=settings/GamepadMassageGuiSettings.x8l -XX:+UnlockExperimentalVMOptions -XX:+UseShenandoahGC' + "/jre/bin/javaw.exe": + - arguments: " -Dfile.encoding=UTF-8 -classpath bin;lib;bin/*;lib/* com.xenoamess.cyan_potion.base.GameEntrance SettingFilePath=settings/GamepadMassageGuiSettings.x8l -XX:+UnlockExperimentalVMOptions -XX:+UseShenandoahGC" when: - os: windows store: steam @@ -218146,28 +218776,28 @@ Gamer Career Tycoon: installDir: Gamer Career Tycoon: {} launch: - /GamerCareerTycoon.exe: + "/GamerCareerTycoon.exe": - when: - os: windows store: steam steam: id: 567750 -'Gamer Girls: Cyberpunk 2069': +"Gamer Girls: Cyberpunk 2069": installDir: Gamer Girls Cyberpunk 2069: {} launch: - /Gamer 3.exe: + "/Gamer 3.exe": - when: - os: windows store: steam steam: id: 1793840 -Gamer Sensei's Range Royale: +"Gamer Sensei's Range Royale": installDir: Range Royale: {} launch: - /RangeRoyale.exe: - - arguments: '-FULLSCREEN -SAVEINPOS=1' + "/RangeRoyale.exe": + - arguments: "-FULLSCREEN -SAVEINPOS=1" when: - bit: 64 os: windows @@ -218178,7 +218808,7 @@ Gamer Simulator: installDir: Gamer Simulator: {} launch: - /GamerSimulator.exe: + "/GamerSimulator.exe": - when: - os: windows store: steam @@ -218188,7 +218818,7 @@ Gamers Unknown Survival: installDir: Gamers Unknown Survival: {} launch: - /GUSTheGame.exe: + "/GUSTheGame.exe": - when: - os: windows store: steam @@ -218196,7 +218826,7 @@ Gamers Unknown Survival: id: 677870 GamersGoMakers: files: - /save: + "/save": tags: - save when: @@ -218204,7 +218834,7 @@ GamersGoMakers: installDir: GamersGoMakers: {} launch: - /ggm.exe: + "/ggm.exe": - when: - os: windows store: steam @@ -218214,7 +218844,7 @@ Games of Glory: installDir: Games of Glory: {} launch: - /GoGClient.exe: + "/GoGClient.exe": - when: - os: windows store: steam @@ -218224,15 +218854,15 @@ Games&Girls: installDir: Games&Girls: {} launch: - /Games&Girls.app: + "/Games&Girls.app": - when: - os: mac store: steam - /Games&Girls.exe: + "/Games&Girls.exe": - when: - os: windows store: steam - /Games&Girls.sh: + "/Games&Girls.sh": - when: - os: linux store: steam @@ -218245,17 +218875,20 @@ Gamma Blast: installDir: Gamma Blast: {} launch: - /Gamma Blast.exe: + "/Gamma Blast.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam - /Gamma Blast.x86: + "/Gamma Blast.x86": - when: - bit: 32 os: linux store: steam - /Gamma Blast.x86_64: + "/Gamma Blast.x86_64": - when: - bit: 64 os: linux @@ -218266,11 +218899,11 @@ Gamma Bros: installDir: GammaBros: {} launch: - /GammaBros.app: + "/GammaBros.app": - when: - os: mac store: steam - /GammaBros.exe: + "/GammaBros.exe": - when: - os: windows store: steam @@ -218278,12 +218911,12 @@ Gamma Bros: id: 436470 Ganbare! Super Strikers: files: - /.config/unity3d/Rese Games/Ganbare! Super Strikers/Data: + "/.config/unity3d/Rese Games/Ganbare! Super Strikers/Data": tags: - save when: - os: linux - /AppData/LocalLow/Rese Games/Ganbare! Super Strikers/Data: + "/AppData/LocalLow/Rese Games/Ganbare! Super Strikers/Data": tags: - config - save @@ -218292,15 +218925,15 @@ Ganbare! Super Strikers: installDir: GanbareSuperStrikers: {} launch: - /Ganbare.exe: + "/Ganbare.exe": - when: - os: windows store: steam - /Ganbare.x86_64: + "/Ganbare.x86_64": - when: - os: linux store: steam - /GanbareSuperStrikers.app: + "/GanbareSuperStrikers.app": - when: - os: mac store: steam @@ -218313,7 +218946,7 @@ Ganbatte: id: 691680 Gang Beasts: files: - /.config/unity3d/Boneloaf/Gang Beasts: + "/.config/unity3d/Boneloaf/Gang Beasts": tags: - config when: @@ -218321,15 +218954,15 @@ Gang Beasts: installDir: Gang Beasts: {} launch: - /Gang Beasts.app: + "/Gang Beasts.app": - when: - os: mac store: steam - /Gang Beasts.exe: + "/Gang Beasts.exe": - when: - os: windows store: steam - /Gang Beasts.x86_64: + "/Gang Beasts.x86_64": - when: - os: linux store: steam @@ -218343,7 +218976,7 @@ Gang District: installDir: Gang District: {} launch: - /GangDistrict.exe: + "/GangDistrict.exe": - when: - bit: 64 os: windows @@ -218352,12 +218985,12 @@ Gang District: id: 1196170 Gang Garrison 2: files: - /controls.gg2: + "/controls.gg2": tags: - config when: - os: windows - /gg2.ini: + "/gg2.ini": tags: - config when: @@ -218366,11 +218999,11 @@ Gang of Four: installDir: Gang of Four: {} launch: - /GangOfFour.app: + "/GangOfFour.app": - when: - os: mac store: steam - /GangOfFour.exe: + "/GangOfFour.exe": - when: - os: windows store: steam @@ -218378,12 +219011,12 @@ Gang of Four: id: 350300 Gangland: files: - /config: + "/config": tags: - config when: - os: windows - /profiles: + "/profiles": tags: - save when: @@ -218394,20 +219027,20 @@ Gangs of Space: installDir: Gangs of Space: {} launch: - /Gangs of Space.app/Contents/MacOS/Gangs of Space: + "/Gangs of Space.app/Contents/MacOS/Gangs of Space": - when: - os: mac store: steam - /Gangs of Space.exe: + "/Gangs of Space.exe": - when: - os: windows store: steam - /Gangs of Space.x86: + "/Gangs of Space.x86": - when: - bit: 32 os: linux store: steam - /Gangs of Space.x86_64: + "/Gangs of Space.x86_64": - when: - bit: 64 os: linux @@ -218418,36 +219051,36 @@ Gangsta Sniper: installDir: Gangsta Sniper: {} launch: - /GangstaSniper.exe: + "/GangstaSniper.exe": - when: - bit: 64 os: windows store: steam steam: id: 951640 -'Gangsta Sniper 2: Revenge': +"Gangsta Sniper 2: Revenge": installDir: Gangsta Sniper 2 Revenge: {} launch: - /GangstaSniper2.exe: + "/GangstaSniper2.exe": - when: - bit: 64 os: windows store: steam steam: id: 998480 -'Gangsta Sniper 3: Final Parody': +"Gangsta Sniper 3: Final Parody": installDir: Gangsta Sniper 3 Final Parody: {} launch: - /GangstaSniper3.exe: + "/GangstaSniper3.exe": - when: - bit: 64 os: windows store: steam steam: id: 1173260 -'Gangsta Underground : The Poker': +"Gangsta Underground : The Poker": installDir: GangstaUnderground: {} steam: @@ -218456,7 +219089,7 @@ Gangsta Woman: installDir: Gangsta Woman: {} launch: - /Gangstawoman.exe: + "/Gangstawoman.exe": - when: - bit: 64 os: windows @@ -218467,27 +219100,27 @@ Gangsters 1920: installDir: Gangsters 1920: {} launch: - /GangstersLauncher.exe: + "/GangstersLauncher.exe": - when: - os: windows store: steam steam: id: 1163490 -'Gangsters 2: Vendetta': +"Gangsters 2: Vendetta": files: - /Saved Games: + "/Saved Games": tags: - save when: - os: windows -'Gangsters: Organized Crime': +"Gangsters: Organized Crime": files: - /Multiplayer Saved Games: + "/Multiplayer Saved Games": tags: - save when: - os: windows - /Saved Games: + "/Saved Games": tags: - save when: @@ -218502,7 +219135,7 @@ Ganryu 2: installDir: Ganryu 2: {} launch: - /Ganryu 2.exe: + "/Ganryu 2.exe": - when: - store: steam steam: @@ -218514,41 +219147,41 @@ Gaokao.Love.100Days: installDir: gaokao100: {} launch: - /gaokao100.exe: + "/gaokao100.exe": - when: - os: windows store: steam steam: id: 347620 -Gappo's Legacy VR: +"Gappo's Legacy VR": installDir: - Gappo's Legacy VR: {} + "Gappo's Legacy VR": {} steam: id: 611080 Garage Master 2018: installDir: Garage Master 2018: {} launch: - /GarageMaster.exe: + "/GarageMaster.exe": - when: - os: windows store: steam steam: id: 884590 -'Garage: Bad Dream Adventure': +"Garage: Bad Dream Adventure": installDir: Garage Bad Dream Adventure: {} launch: - /Garage.exe: + "/Garage.exe": - when: - bit: 64 os: windows store: steam steam: id: 1946430 -'Garage: Bad Trip': +"Garage: Bad Trip": files: - /AppData/LocalLow/Zombie Dynamics/Garage/save.dat: + "/AppData/LocalLow/Zombie Dynamics/Garage/save.dat": tags: - save when: @@ -218556,11 +219189,11 @@ Garage Master 2018: installDir: Garage: {} launch: - /Garage Bad Trip.exe: + "/Garage Bad Trip.exe": - when: - os: windows store: steam - /garage.app/Contents/MacOS/garage: + "/garage.app/Contents/MacOS/garage": - when: - os: mac store: steam @@ -218574,7 +219207,7 @@ Garbage Classification Simulator 垃圾分类模拟器: installDir: Garbage Classification Simulator: {} launch: - /GCS.exe: + "/GCS.exe": - when: - os: windows store: steam @@ -218584,11 +219217,11 @@ Garbage Day: installDir: Garbage Day: {} launch: - /Garbage_Day.exe: + "/Garbage_Day.exe": - when: - os: windows store: steam - /gday410.app/Contents/MacOS/gday410: + "/gday410.app/Contents/MacOS/gday410": - when: - os: mac store: steam @@ -218601,12 +219234,12 @@ GarbageClassification: id: 1117150 Garden In!: files: - /GardenIn/Saved/Config/WindowsNoEditor: + "/GardenIn/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /GardenIn/Saved/SaveGames: + "/GardenIn/Saved/SaveGames": tags: - save when: @@ -218616,22 +219249,22 @@ Garden In!: installDir: Garden in!: {} launch: - /LinuxNoEditor/GardenIn/Binaries/Linux/GardenIn-Linux-Shipping: + "/LinuxNoEditor/GardenIn/Binaries/Linux/GardenIn-Linux-Shipping": - when: - os: linux store: steam - workingDir: /LinuxNoEditor/GardenIn/Binaries/Linux - /WindowsNoEditor/GardenIn/Binaries/Win64/GardenIn-Win64-Shipping.exe: + workingDir: "/LinuxNoEditor/GardenIn/Binaries/Linux" + "/WindowsNoEditor/GardenIn/Binaries/Win64/GardenIn-Win64-Shipping.exe": - when: - bit: 64 os: windows store: steam - workingDir: /WindowsNoEditor/GardenIn/Binaries/Win64 + workingDir: "/WindowsNoEditor/GardenIn/Binaries/Win64" steam: id: 1953860 Garden Paws: files: - /AppData/LocalLow/Bitten Toast Games/Garden Paws/SavesDir: + "/AppData/LocalLow/Bitten Toast Games/Garden Paws/SavesDir": tags: - save when: @@ -218639,11 +219272,11 @@ Garden Paws: installDir: Garden Paws: {} launch: - /GardenPaws.app: + "/GardenPaws.app": - when: - os: mac store: steam - /GardenPaws.exe: + "/GardenPaws.exe": - when: - os: windows store: steam @@ -218653,17 +219286,17 @@ Garden Rescue: installDir: Garden Rescue: {} launch: - /garden_rescue.exe: + "/garden_rescue.exe": - when: - os: windows store: steam steam: id: 346210 -'Garden Rescue: Christmas Edition': +"Garden Rescue: Christmas Edition": installDir: Garden Rescue Christmas Edition: {} launch: - /garden_rescue.exe: + "/garden_rescue.exe": - when: - store: steam steam: @@ -218674,7 +219307,7 @@ Garden Simulator: installDir: Garden Simulator: {} launch: - /Garden Simulator.exe: + "/Garden Simulator.exe": - when: - os: windows store: steam @@ -218682,7 +219315,7 @@ Garden Simulator: id: 1403310 Garden Story: files: - /Garden_Story__for_Blue_Build_: + "/Garden_Story__for_Blue_Build_": tags: - save when: @@ -218690,11 +219323,11 @@ Garden Story: installDir: Garden Story: {} launch: - '/${Garden Story}.exe': + "/${Garden Story}.exe": - when: - os: windows store: steam - /Garden Story.app: + "/Garden Story.app": - when: - os: mac store: steam @@ -218704,7 +219337,7 @@ Garden Tale: installDir: Garden Tale: {} launch: - /GardenTale.exe: + "/GardenTale.exe": - when: - os: windows store: steam @@ -218714,15 +219347,15 @@ Garden Variety Body Horror - Rare Import: installDir: Garden Variety Body Horror: {} launch: - /gardenvariety.app: + "/gardenvariety.app": - when: - os: mac store: steam - /gardenvariety.exe: + "/gardenvariety.exe": - when: - os: windows store: steam - /gardenvariety.x86_64: + "/gardenvariety.x86_64": - when: - bit: 64 os: linux @@ -218733,11 +219366,11 @@ Garden Wars: installDir: GardenWars: {} launch: - /GardenWars.app: + "/GardenWars.app": - when: - os: mac store: steam - /GardenWars.exe: + "/GardenWars.exe": - when: - os: windows store: steam @@ -218747,7 +219380,7 @@ Garden of Mooj: installDir: Mooj: {} launch: - /Garden of Mooj.exe: + "/Garden of Mooj.exe": - when: - store: steam steam: @@ -218756,15 +219389,15 @@ Garden of Oblivion: installDir: Garden of Oblivion: {} launch: - /Garden_of_Oblivion_-_Steam_Edition.app: + "/Garden_of_Oblivion_-_Steam_Edition.app": - when: - os: mac store: steam - /Garden_of_Oblivion_-_Steam_Edition.exe: + "/Garden_of_Oblivion_-_Steam_Edition.exe": - when: - os: windows store: steam - /Garden_of_Oblivion_-_Steam_Edition.sh: + "/Garden_of_Oblivion_-_Steam_Edition.sh": - when: - os: linux store: steam @@ -218779,15 +219412,15 @@ Gardenarium: installDir: Gardenarium: {} launch: - /Gardenarium.app: + "/Gardenarium.app": - when: - os: mac store: steam - /Gardenarium.exe: + "/Gardenarium.exe": - when: - os: windows store: steam - /Gardenarium.x86_64: + "/Gardenarium.x86_64": - when: - os: linux store: steam @@ -218798,7 +219431,7 @@ Gardener the Ripper: id: 852080 Gardens Inc. - From Rakes to Riches: files: - /Nitreal Games/Gardens Inc: + "/Nitreal Games/Gardens Inc": tags: - config - save @@ -218807,16 +219440,16 @@ Gardens Inc. - From Rakes to Riches: installDir: Gardens Inc: {} launch: - /GardensInc.exe: + "/GardensInc.exe": - when: - store: steam steam: id: 279420 -'Gardens Inc. 2: The Road to Fame': +"Gardens Inc. 2: The Road to Fame": installDir: Gardens Inc. 2 The Road to Fame: {} launch: - /GardensInc2.exe: + "/GardensInc2.exe": - when: - store: steam steam: @@ -218825,7 +219458,7 @@ Gare Sapphire Mechs: installDir: Gare Sapphire Mechs: {} launch: - /Gare.exe: + "/Gare.exe": - when: - os: windows store: steam @@ -218838,7 +219471,7 @@ Garenburg Woods: id: 750610 Garfield: files: - /save: + "/save": tags: - save when: @@ -218849,7 +219482,7 @@ Garfield: - config Garfield Kart: files: - /AppData/LocalLow/Anuman Interactive/Garfield Kart: + "/AppData/LocalLow/Anuman Interactive/Garfield Kart": tags: - save when: @@ -218857,11 +219490,11 @@ Garfield Kart: installDir: Garfield Kart: {} launch: - /GarfieldKartNoMulti.app: + "/GarfieldKartNoMulti.app": - when: - os: mac store: steam - /GarfieldKartNoMulti.exe: + "/GarfieldKartNoMulti.exe": - when: - os: windows store: steam @@ -218871,9 +219504,9 @@ Garfield Kart: - config steam: id: 362930 -'Garfield Kart: Furious Racing': +"Garfield Kart: Furious Racing": files: - /AppData/LocalLow/Microids/Garfield Kart Furious Racing: + "/AppData/LocalLow/Microids/Garfield Kart Furious Racing": tags: - save when: @@ -218881,11 +219514,11 @@ Garfield Kart: installDir: Garfield Kart - Furious Racing: {} launch: - /Garfield Kart Furious Racing.app: + "/Garfield Kart Furious Racing.app": - when: - os: mac store: steam - /Garfield Kart Furious Racing.exe: + "/Garfield Kart Furious Racing.exe": - when: - os: windows store: steam @@ -218899,18 +219532,18 @@ Garfield Lasagna Party: installDir: Garfield Lasagna Party: {} launch: - /GarfieldLasagnaParty.app: + "/GarfieldLasagnaParty.app": - when: - os: mac store: steam - /GarfieldLasagnaParty.exe: + "/GarfieldLasagnaParty.exe": - when: - bit: 64 os: windows store: steam steam: id: 2008410 -'Garfield: Saving Arlene': +"Garfield: Saving Arlene": files: Game Directory/game.sav: tags: @@ -218922,15 +219555,15 @@ Gargoyles Remastered: id: 1092632361 steam: id: 1928020 -'Garin Game: Curse of Revival Ceremony': +"Garin Game: Curse of Revival Ceremony": installDir: Garin Game Curse of Revival Ceremony: {} launch: - /Garin_File_01.app/Contents/MacOS/Garin_File_01: + "/Garin_File_01.app/Contents/MacOS/Garin_File_01": - when: - os: mac store: steam - /Garin_File_01.exe: + "/Garin_File_01.exe": - when: - os: windows store: steam @@ -218940,19 +219573,19 @@ Garlock Online: installDir: garlock_online: {} launch: - /Garlock-Online.exe: + "/Garlock-Online.exe": - when: - os: windows store: steam steam: id: 389530 -'Garou: Mark of the Wolves': +"Garou: Mark of the Wolves": gog: id: 1830215906 installDir: GAROU MARK OF THE WOLVES: {} launch: - /Garou.exe: + "/Garou.exe": - when: - os: windows store: steam @@ -218962,32 +219595,32 @@ Garrison Gauntlet: installDir: Garrison Gauntlet: {} launch: - /Garrison Gauntlet.exe: + "/Garrison Gauntlet.exe": - when: - os: windows store: steam steam: id: 912360 -'Garrison: Archangel': +"Garrison: Archangel": installDir: GarrisonArchangel: {} launch: - /GarrisonArchangelClient.exe: - - arguments: '-logFile \"output_log.txt\"' + "/GarrisonArchangelClient.exe": + - arguments: "-logFile \\\"output_log.txt\\\"" when: - os: windows store: steam steam: id: 682450 -Garry's Mod: +"Garry's Mod": files: - /garrysmod/cfg: + "/garrysmod/cfg": tags: - config when: - os: windows - os: linux - /garrysmod/saves: + "/garrysmod/saves": tags: - save when: @@ -218995,36 +219628,36 @@ Garry's Mod: installDir: GarrysMod: {} launch: - /hl2.exe: - - arguments: '-steam -game garrysmod' + "/hl2.exe": + - arguments: "-steam -game garrysmod" when: - os: windows store: steam - /hl2.sh: - - arguments: '-steam -game garrysmod' + "/hl2.sh": + - arguments: "-steam -game garrysmod" when: - os: linux store: steam - /hl2_osx: - - arguments: '-steam -game garrysmod' + "/hl2_osx": + - arguments: "-steam -game garrysmod" when: - os: mac store: steam steam: id: 4000 -'Garshasp: Temple of the Dragon': +"Garshasp: Temple of the Dragon": files: - /DeadMage/Garshasp_Expansion/options_*.xml: + "/DeadMage/Garshasp_Expansion/options_*.xml": tags: - config when: - os: windows - /DeadMage/Garshasp_Expansion/profiles/profile_Garshasp/options_user_*.xml: + "/DeadMage/Garshasp_Expansion/profiles/profile_Garshasp/options_user_*.xml": tags: - config when: - os: windows - /DeadMage/Garshasp_Expansion/profiles/profile_Garshasp/saves: + "/DeadMage/Garshasp_Expansion/profiles/profile_Garshasp/saves": tags: - save when: @@ -219032,26 +219665,26 @@ Garry's Mod: installDir: ValveTestApp99410: {} launch: - /distro/garshasp.exe: + "/distro/garshasp.exe": - when: - os: windows store: steam - workingDir: /distro - /distro/garshaspconfig.exe: + workingDir: "/distro" + "/distro/garshaspconfig.exe": - when: - os: windows store: steam - workingDir: /distro + workingDir: "/distro" steam: id: 99410 -'Garshasp: The Monster Slayer': +"Garshasp: The Monster Slayer": files: - /DeadMage/Garshasp/profiles/profile_Garshasp/options_user_garshasp.xml: + "/DeadMage/Garshasp/profiles/profile_Garshasp/options_user_garshasp.xml": tags: - config when: - os: windows - /DeadMage/Garshasp/profiles/profile_Garshasp/saves: + "/DeadMage/Garshasp/profiles/profile_Garshasp/saves": tags: - save when: @@ -219059,24 +219692,24 @@ Garry's Mod: installDir: TheMonsterSlayer: {} launch: - /distro/garshasp.exe: + "/distro/garshasp.exe": - when: - store: steam - workingDir: /distro - /distro/garshaspconfig.exe: + workingDir: "/distro" + "/distro/garshaspconfig.exe": - when: - store: steam - workingDir: /distro + workingDir: "/distro" steam: id: 99400 Garten of Banban: files: - /Clay/Saved/Config/Windows: + "/Clay/Saved/Config/Windows": tags: - config when: - os: windows - /Clay/Saved/SaveGames: + "/Clay/Saved/SaveGames": tags: - save when: @@ -219084,7 +219717,7 @@ Garten of Banban: installDir: Garten Of Banban: {} launch: - /Garten_of_Banban.exe: + "/Garten_of_Banban.exe": - when: - os: windows store: steam @@ -219094,7 +219727,7 @@ Garten of Banban 2: installDir: Garten Of Banban 2: {} launch: - /Garten of Banban 2.exe: + "/Garten of Banban 2.exe": - when: - os: windows store: steam @@ -219104,7 +219737,7 @@ Garten of Banban 3: installDir: Garten of Banban 3: {} launch: - /Garten of Banban 3.exe: + "/Garten of Banban 3.exe": - when: - os: windows store: steam @@ -219114,7 +219747,7 @@ Garten of Banban 4: installDir: Garten of Banban 4: {} launch: - /Garten of Banban 4.exe: + "/Garten of Banban 4.exe": - when: - os: windows store: steam @@ -219126,40 +219759,40 @@ Garten of Banban 5: Garten of Banban 6: steam: id: 2499800 -Gary Grigsby's War in the East: +"Gary Grigsby's War in the East": gog: id: 1953257763 installDir: - Gary Grigsby's War in the East: {} + "Gary Grigsby's War in the East": {} launch: - /autorun.exe: + "/autorun.exe": - when: - os: windows store: steam steam: id: 370540 -Gary Grigsby's War in the East 2: +"Gary Grigsby's War in the East 2": installDir: - Gary Grigsby's War in the East 2: {} + "Gary Grigsby's War in the East 2": {} launch: - /Launcher.exe: + "/Launcher.exe": - when: - store: steam steam: id: 1775550 -Gary Grigsby's War in the West: +"Gary Grigsby's War in the West": gog: id: 1826669486 installDir: Gary Grigsbys War in the West: {} launch: - /autorun.exe: + "/autorun.exe": - when: - os: windows store: steam steam: id: 644710 -'Gary Grigsby''s World at War: A World Divided': +"Gary Grigsby's World at War: A World Divided": gog: id: 1980503427 Gary the Gull: @@ -219169,7 +219802,7 @@ Gary the Gull: id: 456920 Gas Guzzlers Extreme: files: - /Gamepires/GasGuzzlersExtreme: + "/Gamepires/GasGuzzlersExtreme": tags: - config - save @@ -219177,39 +219810,39 @@ Gas Guzzlers Extreme: - os: windows id: steamExtra: + - 265100 - 277820 - 277821 - - 265100 installDir: GasGuzzlersExtreme: {} launch: - /Bin32/GGDedicatedServerLauncher.exe: + "/Bin32/GGDedicatedServerLauncher.exe": - when: - os: windows store: steam - workingDir: /Bin32 - /Bin32/GasGuzzlers.exe: + workingDir: "/Bin32" + "/Bin32/GasGuzzlers.exe": - when: - os: windows store: steam - workingDir: /Bin32 - /Bin64/GGDedicatedServerLauncher.exe: + workingDir: "/Bin32" + "/Bin64/GGDedicatedServerLauncher.exe": - when: - bit: 64 os: windows store: steam - workingDir: /Bin64 - /Bin64/GasGuzzlers.exe: + workingDir: "/Bin64" + "/Bin64/GasGuzzlers.exe": - when: - bit: 64 os: windows store: steam - workingDir: /Bin64 + workingDir: "/Bin64" steam: id: 243800 -'Gas Guzzlers: Combat Carnage': +"Gas Guzzlers: Combat Carnage": files: - /Gamepires/GasGuzzlersCombatCarnage: + "/Gamepires/GasGuzzlersCombatCarnage": tags: - config - save @@ -219218,26 +219851,26 @@ Gas Guzzlers Extreme: installDir: Gas Guzzlers Combat Carnage: {} launch: - /Bin32/GGDedicatedServerLauncher.exe: + "/Bin32/GGDedicatedServerLauncher.exe": - when: - os: windows store: steam - workingDir: /Bin32 - /Bin32/GasGuzzlers.exe: + workingDir: "/Bin32" + "/Bin32/GasGuzzlers.exe": - when: - os: windows store: steam - workingDir: /Bin32 + workingDir: "/Bin32" steam: id: 596620 Gas Station Simulator: files: - /GSS2/Saved/Config: + "/GSS2/Saved/Config": tags: - config when: - os: windows - /GSS2/Saved/SaveGames: + "/GSS2/Saved/SaveGames": tags: - save when: @@ -219247,11 +219880,11 @@ Gas Station Simulator: installDir: Gas Station Simulator: {} launch: - /GSS2.app: + "/GSS2.app": - when: - os: mac store: steam - /GSS2.exe: + "/GSS2.exe": - when: - os: windows store: steam @@ -219260,11 +219893,11 @@ Gas Station Simulator: Gataela: steam: id: 631860 -'Gatari: Sand on Teeth': +"Gatari: Sand on Teeth": installDir: Joust: {} launch: - /Joust.exe: + "/Joust.exe": - when: - os: windows store: steam @@ -219279,7 +219912,7 @@ Gate of Doom: installDir: Retro Classix Gate of Doom: {} launch: - /Retro Classix Gate of Doom.exe: + "/Retro Classix Gate of Doom.exe": - when: - os: windows store: steam @@ -219297,7 +219930,7 @@ Gates of Avalon: installDir: Gates of Avalon: {} launch: - /GatesOfAvalon.exe: + "/GatesOfAvalon.exe": - when: - os: windows store: steam @@ -219305,7 +219938,7 @@ Gates of Avalon: id: 725430 Gates of Hell: files: - /My Games/gates of hell/profiles/"string of numbers": + "/My Games/gates of hell/profiles/\"string of numbers\"": tags: - config - save @@ -219314,16 +219947,16 @@ Gates of Hell: installDir: Call to Arms - Gates of Hell: {} launch: - /binaries/x64/call_to_arms.exe: + "/binaries/x64/call_to_arms.exe": - when: - store: steam - - arguments: '-safe' + - arguments: "-safe" when: - store: steam - - arguments: '-no_mods' + - arguments: "-no_mods" when: - store: steam - /binaries/x64/call_to_arms_ed.exe: + "/binaries/x64/call_to_arms_ed.exe": - when: - store: steam steam: @@ -219332,20 +219965,20 @@ Gates of Horizon: installDir: Gates of Horizon: {} launch: - /Gates of Horizon.app: + "/Gates of Horizon.app": - when: - os: mac store: steam - /Gates of Horizon.exe: + "/Gates of Horizon.exe": - when: - os: windows store: steam - /Gates of Horizon.x86: + "/Gates of Horizon.x86": - when: - bit: 32 os: linux store: steam - /Gates of Horizon.x86_64: + "/Gates of Horizon.x86_64": - when: - bit: 64 os: linux @@ -219356,7 +219989,7 @@ Gates of Horn and Ivory: installDir: Gates of Horn and Ivory: {} launch: - /Gates of Horn and Ivory.exe: + "/Gates of Horn and Ivory.exe": - when: - os: windows store: steam @@ -219371,7 +220004,7 @@ Gates to Terra II: installDir: Gates to Terra II: {} launch: - /Gates to Terra II.exe: + "/Gates to Terra II.exe": - when: - os: windows store: steam @@ -219381,7 +220014,7 @@ Gatewalkers: installDir: Gatewalkers: {} launch: - /Gatewalkers.exe: + "/Gatewalkers.exe": - when: - os: windows store: steam @@ -219389,12 +220022,12 @@ Gatewalkers: id: 1125710 Gateway to the Savage Frontier: files: - /GAME.CFG: + "/GAME.CFG": tags: - config when: - os: dos - /SAVE: + "/SAVE": tags: - save when: @@ -219405,24 +220038,24 @@ Gateway to the Savage Frontier: id: 1904523 Gateways: files: - /Library/Application Support/Gateways: + "/Library/Application Support/Gateways": tags: - config - save when: - os: mac - /userdata//216290: + "/userdata//216290": tags: - save when: - store: steam - /SavedGames/Gateways: + "/SavedGames/Gateways": tags: - config - save when: - os: windows - /Gateways: + "/Gateways": tags: - config - save @@ -219433,15 +220066,15 @@ Gateways: installDir: Gateways: {} launch: - /Gateways: + "/Gateways": - when: - os: linux store: steam - /Gateways.app/Contents/MacOS/Gateways: + "/Gateways.app/Contents/MacOS/Gateways": - when: - os: mac store: steam - /Gateways.exe: + "/Gateways.exe": - when: - os: windows store: steam @@ -219451,35 +220084,35 @@ Gathering Sky: installDir: Gathering Sky: {} launch: - /GatheringSky: + "/GatheringSky": - when: - bit: 64 os: linux store: steam - /GatheringSky.app/Contents/MacOS/GatheringSky: + "/GatheringSky.app/Contents/MacOS/GatheringSky": - when: - bit: 64 os: mac store: steam - /GatheringSky.exe: + "/GatheringSky.exe": - when: - os: windows store: steam steam: id: 356250 -Gatlin': +"Gatlin'": installDir: - Gatlin': {} + "Gatlin'": {} launch: - /Contents/MacOS/Gatlin': + "/Contents/MacOS/Gatlin'": - when: - os: mac store: steam - /Gatlin'.exe: + "/Gatlin'.exe": - when: - os: windows store: steam - /gatlin.x86_64: + "/gatlin.x86_64": - when: - os: linux store: steam @@ -219487,7 +220120,7 @@ Gatlin': id: 783430 Gatling Gears: files: - /userdata//102810: + "/userdata//102810": tags: - save when: @@ -219496,20 +220129,20 @@ Gatling Gears: installDir: Gatling Gears (VG): {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam - workingDir: /Data + workingDir: "/Data" steam: id: 102810 Gato Roboto: files: - /GatoRoboto_patch_1_1/default/*.ini: + "/GatoRoboto_patch_1_1/default/*.ini": tags: - save when: - os: windows - /GatoRoboto_patch_1_1/userprefs.json: + "/GatoRoboto_patch_1_1/userprefs.json": tags: - config when: @@ -219519,7 +220152,7 @@ Gato Roboto: installDir: Gato Roboto: {} launch: - /GatoRoboto.exe: + "/GatoRoboto.exe": - when: - store: steam steam: @@ -219528,7 +220161,7 @@ Gator Parade - An Oddfellows Mini: installDir: Gator Parade: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -219536,7 +220169,7 @@ Gator Parade - An Oddfellows Mini: id: 1152840 Gauge: files: - /gauge_save.ini: + "/gauge_save.ini": tags: - save when: @@ -219544,7 +220177,7 @@ Gauge: installDir: GAUGE: {} launch: - /Gauge.exe: + "/Gauge.exe": - when: - store: steam steam: @@ -219553,7 +220186,7 @@ Gauge of Rage: installDir: Gauge Of Rage: {} launch: - /Gauge Of Rage.exe: + "/Gauge Of Rage.exe": - when: - os: windows store: steam @@ -219561,12 +220194,12 @@ Gauge of Rage: id: 917870 Gauntlet (2014): files: - /Arrowhead/Gauntlet/saves: + "/Arrowhead/Gauntlet/saves": tags: - save when: - os: windows - /Arrowhead/Gauntlet/user_settings.config: + "/Arrowhead/Gauntlet/user_settings.config": tags: - config when: @@ -219576,8 +220209,8 @@ Gauntlet (2014): installDir: Gauntlet: {} launch: - /binaries/gauntlet.exe: - - arguments: '-bundle-dir contents -ini settings ' + "/binaries/gauntlet.exe": + - arguments: "-bundle-dir contents -ini settings " when: - os: windows store: steam @@ -219587,7 +220220,7 @@ Gauntlet of IRE: installDir: Gauntlet of IRE: {} launch: - /Gauntlet of IRE.exe: + "/Gauntlet of IRE.exe": - when: - os: windows store: steam @@ -219595,7 +220228,7 @@ Gauntlet of IRE: id: 754540 Gaurodan: files: - /Gaurodan/config.ini: + "/Gaurodan/config.ini": tags: - config when: @@ -219607,7 +220240,7 @@ Gay Guys: installDir: Gay Guys: {} launch: - /GayGuys.exe: + "/GayGuys.exe": - when: - os: windows store: steam @@ -219620,24 +220253,24 @@ Gay World: installDir: Gay World: {} launch: - /Gay World.exe: + "/Gay World.exe": - when: - os: windows store: steam steam: id: 776340 -Gaygarin In deep as's'pace: +"Gaygarin In deep as's'pace": steam: id: 937030 Gaze At Maze: installDir: Gaze At Maze: {} launch: - /GazeAtMaze: + "/GazeAtMaze": - when: - os: linux store: steam - /GazeAtMaze.exe: + "/GazeAtMaze.exe": - when: - os: windows store: steam @@ -219647,11 +220280,11 @@ Gazillionaire: installDir: Gazillionaire: {} launch: - /Gazillionaire.app: + "/Gazillionaire.app": - when: - os: mac store: steam - /Gazillionaire.exe: + "/Gazillionaire.exe": - when: - os: windows store: steam @@ -219661,17 +220294,17 @@ Gazing From Beyond: installDir: Gazing from beyond: {} launch: - /Gfb.exe: + "/Gfb.exe": - when: - os: windows store: steam steam: id: 782690 -'Gazzel Quest, The Five Magic Stones': +"Gazzel Quest, The Five Magic Stones": installDir: - 'Gazzel Quest, The Five Magic Stones': {} + "Gazzel Quest, The Five Magic Stones": {} launch: - /gazzelquest.exe: + "/gazzelquest.exe": - when: - bit: 32 os: windows @@ -219682,11 +220315,11 @@ Gear: installDir: Gear: {} launch: - /Gear.app: + "/Gear.app": - when: - os: mac store: steam - /Gear.exe: + "/Gear.exe": - when: - os: windows store: steam @@ -219696,7 +220329,7 @@ Gear City Against Chaos: installDir: Gear City Against Chaos: {} launch: - /GearCity_V3.21.191114.exe: + "/GearCity_V3.21.191114.exe": - when: - os: windows store: steam @@ -219706,11 +220339,11 @@ Gear Gauntlet: installDir: Gear Gauntlet: {} launch: - /gear_gauntlet.app/Contents/MacOS/gear_gauntlet: + "/gear_gauntlet.app/Contents/MacOS/gear_gauntlet": - when: - os: mac store: steam - /gear_gauntlet.exe: + "/gear_gauntlet.exe": - when: - os: windows store: steam @@ -219720,29 +220353,29 @@ Gear Path: installDir: Gear Path: {} launch: - /GearPath: + "/GearPath": - when: - os: linux store: steam - /GearPath.app: + "/GearPath.app": - when: - os: mac store: steam - /GearPath.exe: + "/GearPath.exe": - when: - os: windows store: steam steam: id: 764470 -'Gear Puzzle: the inheritance of grandpa(齿轮迷局)': +"Gear Puzzle: the inheritance of grandpa(齿轮迷局)": installDir: GearPuzzle: {} launch: - /Gear.app: + "/Gear.app": - when: - os: mac store: steam - /Gear.exe: + "/Gear.exe": - when: - os: windows store: steam @@ -219752,16 +220385,16 @@ Gear Up: installDir: GearUp: {} launch: - /GearUp.app: + "/GearUp.app": - when: - os: mac store: steam - /bin/Traktor.Amalgam.Game.App: + "/bin/Traktor.Amalgam.Game.App": - when: - bit: 64 os: linux store: steam - /bin64/Traktor.Amalgam.Game.App.exe: + "/bin64/Traktor.Amalgam.Game.App.exe": - arguments: Application.config when: - bit: 64 @@ -219771,7 +220404,7 @@ Gear Up: id: 214420 Gear.Club Unlimited 2 Ultimate Edition: files: - /AppData/LocalLow/Eden Games/GCU2: + "/AppData/LocalLow/Eden Games/GCU2": tags: - save when: @@ -219779,7 +220412,7 @@ Gear.Club Unlimited 2 Ultimate Edition: installDir: Gear.Club HD: {} launch: - /GCU2.exe: + "/GCU2.exe": - when: - os: windows store: steam @@ -219795,37 +220428,37 @@ GearCity: installDir: GearCity: {} launch: - /GearCity.app: + "/GearCity.app": - when: - os: mac store: steam - /GearCity.exe: + "/GearCity.exe": - when: - os: windows store: steam - /ModTools/GearCity_ModToolSuite: + "/ModTools/GearCity_ModToolSuite": - when: - bit: 32 os: linux store: steam - workingDir: /ModTools - /ModTools/GearCity_ModToolSuite.exe: + workingDir: "/ModTools" + "/ModTools/GearCity_ModToolSuite.exe": - when: - os: windows store: steam - workingDir: /ModTools - /ModTools/VideoSettings: + workingDir: "/ModTools" + "/ModTools/VideoSettings": - when: - bit: 32 os: linux store: steam - workingDir: /ModTools - /ModTools/VideoSettings.exe: + workingDir: "/ModTools" + "/ModTools/VideoSettings.exe": - when: - os: windows store: steam - workingDir: /ModTools - /runGearCity: + workingDir: "/ModTools" + "/runGearCity": - when: - os: linux store: steam @@ -219835,7 +220468,7 @@ GearGrinder: installDir: Sledgehammer: {} launch: - /GearGrinder.exe: + "/GearGrinder.exe": - when: - store: steam steam: @@ -219844,11 +220477,11 @@ GearStorm: installDir: GearStorm: {} launch: - /GearStorm.app: + "/GearStorm.app": - when: - os: mac store: steam - /GearStorm/Binaries/Win64/GearStorm.exe: + "/GearStorm/Binaries/Win64/GearStorm.exe": - when: - bit: 64 os: windows @@ -219857,7 +220490,7 @@ GearStorm: id: 393800 Gearcrack Arena: files: - /GEARCRACK_Arena: + "/GEARCRACK_Arena": tags: - save when: @@ -219865,7 +220498,7 @@ Gearcrack Arena: installDir: GEARCRACK Arena: {} launch: - /GEARCRACK Arena.exe: + "/GEARCRACK Arena.exe": - when: - os: windows store: steam @@ -219875,7 +220508,7 @@ Geared: installDir: Geared: {} launch: - /GearedForSteam.exe: + "/GearedForSteam.exe": - when: - os: windows store: steam @@ -219885,44 +220518,45 @@ Gearend: installDir: Gearend: {} launch: - /run_linux.sh: + "/run_linux.sh": - when: - os: linux store: steam - /run_osx.command: + "/run_osx.command": - when: - os: mac store: steam - /run_win.bat: + "/run_win.bat": - when: - os: windows store: steam steam: id: 574500 -'Gearguns: Tank Offensive': +"Gearguns: Tank Offensive": steam: id: 526250 Gears 5: files: - /userdata//1097840/remote: + "/userdata//1097840/remote": tags: - save when: - store: steam - /Gears5/Saved/Config/PC: - tags: - - config - when: - - store: steam - - os: windows - store: microsoft - /Packages/Microsoft.HalifaxBaseGame_8wekyb3d8bbwe/Settings: + "/Gears5/Saved/Config/PC": tags: - config when: - os: windows store: microsoft - /Packages/Microsoft.HalifaxBaseGame_8wekyb3d8bbwe/SystemAppData: + - os: windows + store: steam + "/Packages/Microsoft.HalifaxBaseGame_8wekyb3d8bbwe/Settings": + tags: + - config + when: + - os: windows + store: microsoft + "/Packages/Microsoft.HalifaxBaseGame_8wekyb3d8bbwe/SystemAppData": tags: - save when: @@ -219934,19 +220568,20 @@ Gears 5: id: 1097840 Gears Tactics: files: - /userdata//1184050/remote: + "/userdata//1184050/remote": tags: - save when: - store: steam - /GearsTactics/Saved/Config/PC: + "/GearsTactics/Saved/Config/PC": tags: - config when: - os: windows store: microsoft - - store: steam - /Packages/Microsoft.GanderBaseGame_8wekyb3d8bbwe/SystemAppData: + - os: windows + store: steam + "/Packages/Microsoft.GanderBaseGame_8wekyb3d8bbwe/SystemAppData": tags: - save when: @@ -219955,7 +220590,7 @@ Gears Tactics: installDir: GearsTactics: {} launch: - /GearGame/Binaries/Steam/GearsTactics.exe: + "/GearGame/Binaries/Steam/GearsTactics.exe": - when: - bit: 64 os: windows @@ -219967,36 +220602,36 @@ Gears of Eden: id: 791190 Gears of War: files: - /Documents/My Games/Gears of War for Windows/WarGame/SaveData: + "/Documents/My Games/Gears of War for Windows/WarGame/SaveData": tags: - config when: - os: windows - /My Games/Gears of War for Windows/WarGame/Config: + "/My Games/Gears of War for Windows/WarGame/Config": tags: - config when: - os: windows Gears of War 4: files: - /Packages/Microsoft.SpartaUWP_8wekyb3d8bbwe: + "/Packages/Microsoft.SpartaUWP_8wekyb3d8bbwe": tags: - save when: - os: windows - /Packages/Microsoft.SpartaUWP_8wekyb3d8bbwe/LocalState/GearGame/Saved/Config/UWP: + "/Packages/Microsoft.SpartaUWP_8wekyb3d8bbwe/LocalState/GearGame/Saved/Config/UWP": tags: - config when: - os: windows -'Gears of War: Ultimate Edition': +"Gears of War: Ultimate Edition": files: - /Packages/Microsoft.DeltaPC_8wekyb3d8bbwe/LocalState/WarGame/Config: + "/Packages/Microsoft.DeltaPC_8wekyb3d8bbwe/LocalState/WarGame/Config": tags: - config when: - os: windows - /Packages/Microsoft.DeltaPC_8wekyb3d8bbwe/SystemAppData/wgs: + "/Packages/Microsoft.DeltaPC_8wekyb3d8bbwe/SystemAppData/wgs": tags: - save when: @@ -220005,7 +220640,7 @@ Gearshifters: installDir: Gearshifters: {} launch: - /Gearshifters.exe: + "/Gearshifters.exe": - when: - bit: 64 os: windows @@ -220015,15 +220650,15 @@ Gearshifters: Gearwars: steam: id: 1127950 -Gebub's Adventure: +"Gebub's Adventure": installDir: - Gebub's Adventure: {} + "Gebub's Adventure": {} launch: - /gebub project.app/Gebub's Adventure.app: + "/gebub project.app/Gebub's Adventure.app": - when: - os: mac store: steam - /gebub project.exe: + "/gebub project.exe": - when: - os: windows store: steam @@ -220031,7 +220666,7 @@ Gebub's Adventure: id: 509160 Gedonia: files: - /AppData/LocalLow/Oleg Kazakov/Gedonia/*.es3: + "/AppData/LocalLow/Oleg Kazakov/Gedonia/*.es3": tags: - save when: @@ -220039,7 +220674,7 @@ Gedonia: installDir: Gedonia: {} launch: - /Gedonia.exe: + "/Gedonia.exe": - when: - os: windows store: steam @@ -220049,11 +220684,11 @@ Geek Fighter: installDir: Math & Mental Fighter: {} launch: - /Geek Fighter.app/Contents/MacOS/Geek Fighter: + "/Geek Fighter.app/Contents/MacOS/Geek Fighter": - when: - os: mac store: steam - /Geek Fighter.exe: + "/Geek Fighter.exe": - when: - os: windows store: steam @@ -220063,7 +220698,7 @@ Geek Resort: installDir: Geek Resort: {} launch: - /GeekResort.exe: + "/GeekResort.exe": - when: - os: windows store: steam @@ -220073,7 +220708,7 @@ Geeksos: installDir: Geeksos: {} launch: - /Geeksos.exe: + "/Geeksos.exe": - when: - bit: 64 os: windows @@ -220084,20 +220719,20 @@ Geeste: installDir: Geeste: {} launch: - /Geeste.exe: + "/Geeste.exe": - when: - os: windows store: steam steam: id: 831790 -'Gekido: Kintaro''s Revenge': +"Gekido: Kintaro's Revenge": files: - /Gekido_Data/save.dat: + "/Gekido_Data/save.dat": tags: - save when: - os: windows - /AppData/LocalLow/NapsTeam/Gekido/Unity/d0ab1b3a-1f49-425f-9ad7-a9a9595a3dc4/Analytics: + "/AppData/LocalLow/NapsTeam/Gekido/Unity/d0ab1b3a-1f49-425f-9ad7-a9a9595a3dc4/Analytics": tags: - config when: @@ -220105,9 +220740,9 @@ Geeste: gog: id: 1683385187 installDir: - Gekido Kintaro's Revenge: {} + "Gekido Kintaro's Revenge": {} launch: - /Gekido.exe: + "/Gekido.exe": - when: - store: steam steam: @@ -220116,7 +220751,7 @@ Gekisou! Benza Race -Toilet Shooting Star-: installDir: GekisouBenzaRace: {} launch: - /Gekisou!BenzaRace -Toilet Shooting Star-.exe: + "/Gekisou!BenzaRace -Toilet Shooting Star-.exe": - when: - store: steam steam: @@ -220125,7 +220760,7 @@ Gekraxel: installDir: Gekraxel: {} launch: - /gekraxel.exe: + "/gekraxel.exe": - when: - os: windows store: steam @@ -220135,7 +220770,7 @@ Gelu: installDir: Gelu Content: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -220145,15 +220780,15 @@ Gem Collector: installDir: GemCollector: {} launch: - /GemCollector.exe: + "/GemCollector.exe": - when: - os: windows store: steam - /GemCollector.x86_64: + "/GemCollector.x86_64": - when: - os: linux store: steam - /GemCollectorMac.app/Contents/MacOS/GemCollectorMac: + "/GemCollectorMac.app/Contents/MacOS/GemCollectorMac": - when: - os: mac store: steam @@ -220163,11 +220798,11 @@ Gem Forge: installDir: Gem Forge: {} launch: - /Gem Forge.app/Contents/MacOS/Gem Forge: + "/Gem Forge.app/Contents/MacOS/Gem Forge": - when: - os: mac store: steam - /GemForge.exe: + "/GemForge.exe": - when: - os: windows store: steam @@ -220185,7 +220820,7 @@ Gem Monster: installDir: Gem Monster: {} launch: - /Gemmonster.exe: + "/1/Gemmonster.exe": - when: - bit: 64 os: windows @@ -220196,60 +220831,60 @@ Gem Rush: installDir: Gem Rush: {} launch: - /GemRush.app: + "/GemRush.app": - when: - os: mac store: steam - /GemRush.exe: + "/GemRush.exe": - when: - os: windows store: steam - /GemRush.x86: + "/GemRush.x86": - when: - bit: 32 os: linux store: steam - /GemRush.x86_64: + "/GemRush.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 845860 -'Gem Wars: Attack of the Jiblets': +"Gem Wars: Attack of the Jiblets": installDir: Gem Wars Attack of the Jiblets: {} launch: - /bin/l64-release/Gem Wars: + "/bin/l64-release/Gem Wars": - when: - os: linux store: steam - workingDir: /bin/l64-release - /bin/release/Gem Wars.exe: + workingDir: "/bin/l64-release" + "/bin/release/Gem Wars.exe": - when: - os: windows store: steam - workingDir: /bin/release + workingDir: "/bin/release" steam: id: 370590 GemBreak: installDir: GemBreak: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam steam: id: 491160 -'GemCraft: Chasing Shadows': +"GemCraft: Chasing Shadows": files: - /GCCS/Local Store: + "/GCCS/Local Store": tags: - save when: - os: windows - /GCCS/Local Store/prefs.dat: + "/GCCS/Local Store/prefs.dat": tags: - config when: @@ -220257,15 +220892,15 @@ GemBreak: installDir: GemCraft Chasing Shadows: {} launch: - /GemCraft Chasing Shadows.exe: + "/GemCraft Chasing Shadows.exe": - when: - os: windows store: steam steam: id: 296490 -'GemCraft: Frostborn Wrath': +"GemCraft: Frostborn Wrath": files: - /Documents/GCFW-backup1/saveslot*.dat: + "/Documents/GCFW-backup1/saveslot*.dat": tags: - save when: @@ -220275,7 +220910,7 @@ GemBreak: installDir: GemCraft Frostborn Wrath: {} launch: - /GemCraft Frostborn Wrath.exe: + "/GemCraft Frostborn Wrath.exe": - when: - os: windows store: steam @@ -220288,14 +220923,14 @@ GemWars: id: 556830 GemWorld: files: - /SAVEGAME.DAT: + "/SAVEGAME.DAT": tags: - save when: - os: dos Gemini: files: - /Gemini/Save.ini: + "/Gemini/Save.ini": tags: - config - save @@ -220304,7 +220939,7 @@ Gemini: installDir: Gemini: {} launch: - /Gemini.exe: + "/Gemini.exe": - when: - os: windows store: steam @@ -220314,11 +220949,11 @@ Gemini Lost: installDir: Gemini Lost: {} launch: - /Gemini Lost.app: + "/Gemini Lost.app": - when: - os: mac store: steam - /gemini-lost.exe: + "/gemini-lost.exe": - when: - os: windows store: steam @@ -220326,33 +220961,33 @@ Gemini Lost: id: 37390 Gemini Rue: files: - /Saves: + "/Saves": tags: - save when: - store: steam - /acsetup.cfg: + "/acsetup.cfg": tags: - config when: - os: mac - os: linux - /Library/Application Support/Gemini Rue: + "/Library/Application Support/Gemini Rue": tags: - save when: - os: mac - /Saved Games/Gemini Rue: + "/Saved Games/Gemini Rue": tags: - save when: - os: windows - /Saved Games/Gemini Rue/acsetup.cfg: + "/Saved Games/Gemini Rue/acsetup.cfg": tags: - config when: - os: windows - /Gemini Rue: + "/Gemini Rue": tags: - save when: @@ -220362,16 +220997,19 @@ Gemini Rue: installDir: Gemini Rue: {} launch: - /Gemini Rue.exe: + "/Gemini Rue.exe": - when: - os: windows store: steam - /GeminiRue.app/Contents/MacOS/AGS: + "/GeminiRue.app/Contents/MacOS/AGS": - when: - os: mac store: steam - /Start.sh: + "/Start.sh": - when: + - bit: 32 + os: linux + store: steam - bit: 64 os: linux store: steam @@ -220381,24 +221019,24 @@ Gemini Wars: installDir: GeminiWars: {} launch: - /gw.app: + "/gw.app": - when: - os: mac store: steam - /gw.exe: + "/gw.exe": - when: - os: windows store: steam steam: id: 216130 -'Gemini: Heroes Reborn': +"Gemini: Heroes Reborn": files: - /TravelerGame/Saved/Config/WindowsNoEditor: + "/TravelerGame/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /TravelerGame/Saved/SaveGames: + "/TravelerGame/Saved/SaveGames": tags: - save when: @@ -220406,7 +221044,7 @@ Gemini Wars: installDir: GeminiHeroesReborn: {} launch: - /GeminiHeroesReborn.exe: + "/GeminiHeroesReborn.exe": - when: - bit: 64 os: windows @@ -220417,7 +221055,7 @@ GeminiArms: installDir: GeminiArms: {} launch: - /gemini_arms.exe: + "/gemini_arms.exe": - when: - os: windows store: steam @@ -220427,16 +221065,16 @@ Gems: installDir: Gems: {} launch: - /Gems.app/Contents/MacOS/Gems: + "/Gems.app/Contents/MacOS/Gems": - when: - os: mac store: steam - /Gems.exe: + "/Gems.exe": - when: - bit: 64 os: windows store: steam - /Gems.x86_64: + "/Gems.x86_64": - when: - bit: 64 os: linux @@ -220447,21 +221085,21 @@ Gems Kingdom: installDir: Gems Kingdom: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam steam: id: 972620 -'Gems of Magic: Lost Family': +"Gems of Magic: Lost Family": installDir: Gems of Magic Lost Family: {} launch: - /Gems of Magic Lost Family.app: + "/Gems of Magic Lost Family.app": - when: - os: mac store: steam - /bin/Gems_Of_Magic_Lost_Family.exe: + "/bin/Gems_Of_Magic_Lost_Family.exe": - when: - os: windows store: steam @@ -220471,7 +221109,7 @@ Gems of War: installDir: Gems of War: {} launch: - /GemsOfWar.exe: + "/GemsOfWar.exe": - when: - os: windows store: steam @@ -220481,7 +221119,7 @@ Gems of the Aztecs: installDir: Gems of the Aztecs: {} launch: - /Gems of the Aztecs.exe: + "/Gems of the Aztecs.exe": - when: - os: windows store: steam @@ -220491,11 +221129,11 @@ Gemstone Keeper: installDir: GemstoneKeeper: {} launch: - /GemstoneKeeper.exe: + "/GemstoneKeeper.exe": - when: - os: windows store: steam - /runGemstoneKeeper.sh: + "/runGemstoneKeeper.sh": - when: - os: linux store: steam @@ -220505,7 +221143,7 @@ Gender Bender: installDir: Gender Bender: {} launch: - /genderBender.exe: + "/genderBender.exe": - when: - bit: 32 os: windows @@ -220516,15 +221154,15 @@ Gender Bender DNA Twister Extreme: installDir: Gender Bender DNA Twister Extreme: {} launch: - /gbdnate.app: + "/gbdnate.app": - when: - os: mac store: steam - /gbdnate.exe: + "/gbdnate.exe": - when: - os: windows store: steam - /gbdnate.sh: + "/gbdnate.sh": - when: - os: linux store: steam @@ -220537,7 +221175,7 @@ Gene: installDir: Gene: {} launch: - /gene.exe: + "/gene.exe": - when: - os: windows store: steam @@ -220547,17 +221185,17 @@ Gene Rain: installDir: GeneRain: {} launch: - /GeneRain.exe: + "/GeneRain.exe": - when: - os: windows store: steam steam: id: 781150 -'Gene Rain: Wind Tower': +"Gene Rain: Wind Tower": installDir: GeneRainWindTower: {} launch: - /GeneRainWindTower.exe: + "/GeneRainWindTower.exe": - when: - os: windows store: steam @@ -220565,41 +221203,41 @@ Gene Rain: id: 1147980 Gene Troopers: files: - /config.def: + "/config.def": tags: - config when: - os: windows - /controls.cfg: + "/controls.cfg": tags: - config when: - os: windows - /saved_games: + "/saved_games": tags: - save when: - os: windows GeneRally: files: - /options.set: + "/options.set": tags: - config when: - os: windows - /saves/*.gam: + "/saves/*.gam": tags: - save when: - os: windows Geneforge: files: - /Spiderweb Software/Geneforge Saved Games/GFPrefs.dat: + "/Spiderweb Software/Geneforge Saved Games/GFPrefs.dat": tags: - config when: - os: windows - /Spiderweb Software/Geneforge Saved Games/Save*: + "/Spiderweb Software/Geneforge Saved Games/Save*": tags: - save when: @@ -220609,19 +221247,19 @@ Geneforge: installDir: Geneforge: {} launch: - /Geneforge.exe: + "/Geneforge.exe": - when: - store: steam steam: id: 200960 Geneforge 1 - Mutagen: files: - /Spiderweb Software/Geneforge Mutagen Saved Games/GeneforgeSettings.dat: + "/Spiderweb Software/Geneforge Mutagen Saved Games/GeneforgeSettings.dat": tags: - config when: - os: windows - /Spiderweb Software/Geneforge Mutagen Saved Games/Save*: + "/Spiderweb Software/Geneforge Mutagen Saved Games/Save*": tags: - save when: @@ -220631,11 +221269,11 @@ Geneforge 1 - Mutagen: installDir: Geneforge 1 - Mutagen: {} launch: - /Geneforge Mutagen.app/Contents/MacOS/Geneforge Mutagen: + "/Geneforge Mutagen.app/Contents/MacOS/Geneforge Mutagen": - when: - os: mac store: steam - /Geneforge Mutagen.exe: + "/Geneforge Mutagen.exe": - when: - os: windows store: steam @@ -220643,12 +221281,12 @@ Geneforge 1 - Mutagen: id: 1424710 Geneforge 2: files: - /Spiderweb Software/Geneforge 2 Saved Games/GF2Prefs.dat: + "/Spiderweb Software/Geneforge 2 Saved Games/GF2Prefs.dat": tags: - config when: - os: windows - /Spiderweb Software/Geneforge 2 Saved Games/Save*: + "/Spiderweb Software/Geneforge 2 Saved Games/Save*": tags: - save when: @@ -220658,14 +221296,14 @@ Geneforge 2: installDir: Geneforge 2: {} launch: - /Geneforge 2.exe: + "/Geneforge 2.exe": - when: - store: steam steam: id: 200980 Geneforge 3: files: - /Spiderweb Software/Geneforge 3 Saved Games: + "/Spiderweb Software/Geneforge 3 Saved Games": tags: - config - save @@ -220676,19 +221314,19 @@ Geneforge 3: installDir: Geneforge 3: {} launch: - /Geneforge 3.exe: + "/Geneforge 3.exe": - when: - store: steam steam: id: 200990 -'Geneforge 4: Rebellion': +"Geneforge 4: Rebellion": files: - /Geneforge 4 Saved Games/Geneforge4Settings.dat: + "/Geneforge 4 Saved Games/Geneforge4Settings.dat": tags: - config when: - os: windows - /Geneforge 4 Saved Games/Save*: + "/Geneforge 4 Saved Games/Save*": tags: - save when: @@ -220698,14 +221336,14 @@ Geneforge 3: installDir: Geneforge 4: {} launch: - /Geneforge 4.exe: + "/Geneforge 4.exe": - when: - store: steam steam: id: 201000 -'Geneforge 5: Overthrow': +"Geneforge 5: Overthrow": files: - /Spiderweb Software/Geneforge 5 Saved Games: + "/Spiderweb Software/Geneforge 5 Saved Games": tags: - config - save @@ -220716,7 +221354,7 @@ Geneforge 3: installDir: Geneforge 5: {} launch: - /Geneforge 5.exe: + "/Geneforge 5.exe": - when: - store: steam steam: @@ -220728,12 +221366,12 @@ General Horse and the Package of Doom: installDir: General Horse and the Package of Doom: {} launch: - /General Horse and the Package of Doom: + "/General Horse and the Package of Doom": - when: - bit: 64 os: linux store: steam - /General Horse and the Package of Doom.exe: + "/General Horse and the Package of Doom.exe": - when: - bit: 64 os: windows @@ -220744,20 +221382,20 @@ General Practitioner: installDir: General Practitioner: {} launch: - /General_Practitioner-32.exe: + "/General_Practitioner-32.exe": - when: - bit: 32 os: windows store: steam - /General_Practitioner.app: + "/General_Practitioner.app": - when: - os: mac store: steam - /General_Practitioner.exe: + "/General_Practitioner.exe": - when: - os: windows store: steam - /General_Practitioner.sh: + "/General_Practitioner.sh": - when: - os: linux store: steam @@ -220767,11 +221405,11 @@ Generals & Rulers: installDir: Generals & Rulers: {} launch: - /Generals.app: + "/Generals.app": - when: - os: mac store: steam - /GeneralsAndRulers.exe: + "/GeneralsAndRulers.exe": - when: - os: windows store: steam @@ -220781,28 +221419,28 @@ Generation Streets: installDir: Generation Streets: {} launch: - /bin-linux64-steamrt/run-streets64-steamrt.sh: + "/bin-linux64-steamrt/run-streets64-steamrt.sh": - when: - bit: 64 os: linux store: steam - workingDir: /bin-linux64-steamrt - /bin-win64/streets64.exe: + workingDir: "/bin-linux64-steamrt" + "/bin-win64/streets64.exe": - when: - bit: 64 os: windows store: steam - workingDir: /bin-win64 + workingDir: "/bin-win64" steam: id: 887970 Generation Zero: files: - /Avalanche Studios/GenerationZero/Saves/: + "/Avalanche Studios/GenerationZero/Saves/": tags: - save when: - os: windows - /Avalanche Studios/GenerationZero/Saves/settings/: + "/Avalanche Studios/GenerationZero/Saves/settings/": tags: - config when: @@ -220810,7 +221448,7 @@ Generation Zero: installDir: GenerationZero: {} launch: - /GenerationZero_F.exe: + "/GenerationZero_F.exe": - when: - bit: 64 os: windows @@ -220821,7 +221459,7 @@ Generic Jumper: installDir: Generic Jumper: {} launch: - /GenericJumper.exe: + "/GenericJumper.exe": - when: - os: windows store: steam @@ -220831,19 +221469,21 @@ Generic Space Shooter: installDir: Generic Space Shooter: {} launch: - /GSS.app: + "/GSS.app": - when: - os: mac store: steam - /GSS.exe: + "/GSS.exe": - when: - os: windows store: steam + - os: linux + store: steam steam: id: 366010 Geneshift: files: - /data/config.ini: + "/data/config.ini": tags: - config when: @@ -220851,19 +221491,19 @@ Geneshift: installDir: Geneshift: {} launch: - /Geneshift: + "/Geneshift": - when: - os: linux store: steam - /Geneshift.exe: + "/Geneshift.exe": - when: - os: windows store: steam steam: id: 308600 -'Genesia Legacy: Ultimate Domain': +"Genesia Legacy: Ultimate Domain": files: - /AppData/LocalLow/Thomas Zighem: + "/AppData/LocalLow/Thomas Zighem": tags: - save when: @@ -220871,7 +221511,7 @@ Geneshift: installDir: Genesia Legacy: {} launch: - /Genesia Legacy.exe: + "/Genesia Legacy.exe": - when: - os: windows store: steam @@ -220879,37 +221519,41 @@ Geneshift: id: 591930 Genesis Alpha One: files: - /Genesis/Saved/Config/WindowsNoEditor: + "/Genesis/Saved/Config/WindowsNoEditor": tags: - config when: - - store: steam - /Genesis/Saved/SaveGames: + - os: windows + store: steam + "/Genesis/Saved/SaveGames": tags: - save when: - - store: steam - /Genesis_EGS/Saved/SaveGames: + - os: windows + store: steam + "/Genesis_EGS/Saved/SaveGames": tags: - save when: - - store: epic - /Genesis_GOG/Saved/Config/WindowsNoEditor: + - os: windows + "/Genesis_GOG/Saved/Config/WindowsNoEditor": tags: - config when: - - store: gog - /Genesis_GOG/Saved/SaveGames: + - os: windows + store: gog + "/Genesis_GOG/Saved/SaveGames": tags: - save when: - - store: gog + - os: windows + store: gog gog: id: 1541701876 installDir: Genesis Alpha One: {} launch: - /Genesis.exe: + "/Genesis.exe": - when: - bit: 64 os: windows @@ -220918,28 +221562,28 @@ Genesis Alpha One: id: 712190 Genesis Noir: files: - /Library/Application Support/Epic/GenesisNoir/Saved/SaveGames: + "/Library/Application Support/Epic/GenesisNoir/Saved/SaveGames": tags: - save when: - os: mac - /GenesisNoir/Saved/Config/WindowsNoEditor: + "/GenesisNoir/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /GenesisNoir/Saved/SaveGames: + "/GenesisNoir/Saved/SaveGames": tags: - save when: - os: windows - /Packages/SurpriseAttackPtyLtd.GenesisNoirforWindows_8k24hnfn3vvj0/LocalCache/Local/GenesisNoir/Saved/Config/WindowsNoEditor: + "/Packages/SurpriseAttackPtyLtd.GenesisNoirforWindows_8k24hnfn3vvj0/LocalCache/Local/GenesisNoir/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows store: microsoft - /Packages/SurpriseAttackPtyLtd.GenesisNoirforWindows_8k24hnfn3vvj0/LocalCache/Local/GenesisNoir/Saved/SaveGames: + "/Packages/SurpriseAttackPtyLtd.GenesisNoirforWindows_8k24hnfn3vvj0/LocalCache/Local/GenesisNoir/Saved/SaveGames": tags: - save when: @@ -220950,11 +221594,11 @@ Genesis Noir: installDir: Genesis Noir: {} launch: - /GenesisNoir.app: + "/GenesisNoir.app": - when: - os: mac store: steam - /GenesisNoir.exe: + "/GenesisNoir.exe": - when: - os: windows store: steam @@ -220964,27 +221608,27 @@ Genesis Online: installDir: Genesis Online: {} launch: - /GenesisOnline.exe: + "/GenesisOnline.exe": - when: - os: windows store: steam steam: id: 409510 -'Genesis Rising: The Universal Crusade': +"Genesis Rising: The Universal Crusade": installDir: Genesis Rising: {} launch: - /bin/GenesisRising.exe: + "/bin/GenesisRising.exe": - when: - store: steam - workingDir: /bin + workingDir: "/bin" steam: id: 3230 Genesis of Drones: installDir: Genesis of Drones: {} launch: - /GoD.exe: + "/GoD.exe": - when: - os: windows store: steam @@ -220994,7 +221638,7 @@ Genesis创世争霸: installDir: Genesis: {} launch: - /MobaGame.exe: + "/MobaGame.exe": - when: - os: windows store: steam @@ -221004,7 +221648,7 @@ Genetic Disaster: installDir: Genetic Disaster: {} launch: - /GeneticDisaster.exe: + "/GeneticDisaster.exe": - when: - store: steam steam: @@ -221013,7 +221657,7 @@ Geneticognito: installDir: Geneticognito: {} launch: - /Geneticognito.exe: + "/Geneticognito.exe": - when: - os: windows store: steam @@ -221023,17 +221667,17 @@ Genghis Khan: installDir: GenghisKhan2: {} launch: - /GenghisKhan2_Launcher.exe: + "/GenghisKhan2_Launcher.exe": - when: - os: windows store: steam steam: id: 521650 -'Genghis Khan II: Clan of the Gray Wolf': +"Genghis Khan II: Clan of the Gray Wolf": installDir: GenghisKhan3: {} launch: - /GenghisKhan3_Launcher.exe: + "/GenghisKhan3_Launcher.exe": - when: - os: windows store: steam @@ -221043,15 +221687,15 @@ Genie: installDir: Genie: {} launch: - /Genie.app: + "/Genie.app": - when: - os: mac store: steam - /Genie.exe: + "/Genie.exe": - when: - os: windows store: steam - /Genie.sh: + "/Genie.sh": - when: - os: linux store: steam @@ -221059,12 +221703,12 @@ Genie: id: 663600 Genital Jousting: files: - /AppData/LocalLow/Free Lives/Genital Jousting/Config.butthole: + "/AppData/LocalLow/Free Lives/Genital Jousting/Config.butthole": tags: - config when: - os: windows - /AppData/LocalLow/Free Lives/Genital Jousting/Profile.penis: + "/AppData/LocalLow/Free Lives/Genital Jousting/Profile.penis": tags: - save when: @@ -221072,11 +221716,11 @@ Genital Jousting: installDir: GenitalJousting: {} launch: - /GenitalJousting.app: + "/GenitalJousting.app": - when: - os: mac store: steam - /GenitalJousting.exe: + "/GenitalJousting.exe": - when: - os: windows store: steam @@ -221086,15 +221730,15 @@ Genius Calculator: installDir: Genius Calculator: {} launch: - /GeniusCalculator.app/Contents/MacOS/GeniusCalculator: + "/GeniusCalculator.app/Contents/MacOS/GeniusCalculator": - when: - os: mac store: steam - /GeniusCalculator_Linux/GeniusCalculator.x86: + "/GeniusCalculator_Linux/GeniusCalculator.x86": - when: - os: linux store: steam - /win32/GeniusCalculator.exe: + "/win32/GeniusCalculator.exe": - when: - os: windows store: steam @@ -221104,7 +221748,7 @@ Genius Greedy Mouse: installDir: Genius Greedy Mouse: {} launch: - /greedymouse.exe: + "/greedymouse.exe": - arguments: maze when: - store: steam @@ -221114,11 +221758,11 @@ Genius! NAZI-GIRL GoePPels-Chan ep1: installDir: Genius! NAZI-GIRL GoePPels-Chan ep1: {} launch: - /goeppels01.exe: + "/goeppels01.exe": - when: - os: windows store: steam - /goeppels01E.exe: + "/goeppels01E.exe": - when: - os: windows store: steam @@ -221128,11 +221772,11 @@ Genius! NAZI-GIRL GoePPels-Chan ep2: installDir: Genius! NAZI-GIRL GoePPels-Chan ep2: {} launch: - /goeppels02.exe: + "/goeppels02.exe": - when: - os: windows store: steam - /goeppels02E.exe: + "/goeppels02E.exe": - when: - os: windows store: steam @@ -221142,11 +221786,11 @@ Genius! NAZI-GIRL GoePPels-Chan ep3: installDir: Genius! NAZI-GIRL GoePPels-Chan ep3: {} launch: - /goeppels03.exe: + "/goeppels03.exe": - when: - os: windows store: steam - /goeppels03E.exe: + "/goeppels03E.exe": - when: - os: windows store: steam @@ -221156,7 +221800,7 @@ Geno The Fallen King: installDir: Geno The Fallen King 1: {} launch: - /Geno The Fallen King.exe: + "/Geno The Fallen King.exe": - when: - os: windows store: steam @@ -221164,19 +221808,19 @@ Geno The Fallen King: id: 972180 Genocide: files: - /config.cfg: + "/config.cfg": tags: - config when: - os: windows -'Genocide: Remixed Version': +"Genocide: Remixed Version": files: - /Baseq/config.cfg: + "/Baseq/config.cfg": tags: - config when: - os: windows - /Baseq/save: + "/Baseq/save": tags: - save when: @@ -221191,12 +221835,12 @@ Gensokyo Defenders / 幻想郷ディフェンダーズ / 幻想鄉守護者: installDir: Gensokyo Defenders: {} launch: - /TohoATD3D.exe: + "/TohoATD3D.exe": - when: - bit: 64 os: windows store: steam - - arguments: '-fullscreen' + - arguments: "-fullscreen" when: - bit: 64 os: windows @@ -221205,12 +221849,12 @@ Gensokyo Defenders / 幻想郷ディフェンダーズ / 幻想鄉守護者: id: 1019920 Gensokyo Night Festival: files: - /sKagura/Saved/Config/WindowsNoEditor: + "/sKagura/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /sKagura/Saved/SaveGames: + "/sKagura/Saved/SaveGames": tags: - save when: @@ -221218,7 +221862,7 @@ Gensokyo Night Festival: installDir: Gensokyo Night Festival: {} launch: - /Suiyasai.exe: + "/Suiyasai.exe": - when: - store: steam steam: @@ -221227,7 +221871,7 @@ Gensokyo Rolling Force: installDir: choutenalapha: {} launch: - /幻想郷ローリングフォース.exe: + "/幻想郷ローリングフォース.exe": - when: - os: windows store: steam @@ -221237,7 +221881,7 @@ GentleMoon 2: installDir: GentleMoon 2: {} launch: - /GentleMoon 2.exe: + "/GentleMoon 2.exe": - when: - os: windows store: steam @@ -221247,31 +221891,31 @@ Gentlemen!: installDir: Gentlemen!: {} launch: - /Gentlemen!.app: + "/Gentlemen!.app": - when: - os: mac store: steam - /Gentlemen!.exe: + "/Gentlemen!.exe": - when: - os: windows store: steam - /Gentlemen.x86: + "/Gentlemen.x86": - when: - bit: 32 os: linux store: steam - /Gentlemen.x86_64: + "/Gentlemen.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 253570 -Gentlemen's Club: +"Gentlemen's Club": installDir: - Gentlemen's Club: {} + "Gentlemen's Club": {} launch: - /Gentlemens-Club.exe: + "/Gentlemens-Club.exe": - when: - os: windows store: steam @@ -221279,7 +221923,7 @@ Gentlemen's Club: id: 1717170 Geo: files: - /GEO: + "/GEO": tags: - save when: @@ -221287,7 +221931,7 @@ Geo: installDir: Geo: {} launch: - /Geo.exe: + "/Geo.exe": - when: - os: windows store: steam @@ -221310,15 +221954,15 @@ Geocells Quadcells: installDir: Geocells Quadcells: {} launch: - /Geocells Quadcells.exe: + "/Geocells Quadcells.exe": - when: - os: windows store: steam - /Geocells Quadcells.x86_64: + "/Geocells Quadcells.x86_64": - when: - os: linux store: steam - /Geocells.app/Contents/MacOS/Geocells: + "/Geocells.app/Contents/MacOS/Geocells": - when: - os: mac store: steam @@ -221328,15 +221972,15 @@ Geocells Tricells: installDir: Geocells Tricells: {} launch: - /Geocells Tricells.exe: + "/Geocells Tricells.exe": - when: - os: windows store: steam - /Geocells Tricells.x86_64: + "/Geocells Tricells.x86_64": - when: - os: linux store: steam - /Geocells.app/Contents/MacOS/Geocells: + "/Geocells.app/Contents/MacOS/Geocells": - when: - os: mac store: steam @@ -221344,12 +221988,12 @@ Geocells Tricells: id: 859960 Geocore: files: - /.config/unity3d/AnarchyInteractive/Geocore/PlayerPrefs: + "/.config/unity3d/AnarchyInteractive/Geocore/PlayerPrefs": tags: - config when: - os: linux - /Library/Preferences/unity.AnarchyInteractive.Geocore.plist: + "/Library/Preferences/unity.AnarchyInteractive.Geocore.plist": tags: - config when: @@ -221357,16 +222001,16 @@ Geocore: installDir: Geocore: {} launch: - /geocore.app: + "/geocore.app": - when: - os: mac store: steam - /geocore.exe: + "/geocore.exe": - when: - bit: 64 os: windows store: steam - /geocore.x86_64: + "/geocore.x86_64": - when: - os: linux store: steam @@ -221380,7 +222024,7 @@ Geography Quiz: installDir: Geography Quiz: {} launch: - /GeographyQuiz.exe: + "/GeographyQuiz.exe": - when: - os: windows store: steam @@ -221390,17 +222034,17 @@ Geoid: installDir: Geoid: {} launch: - /Geoid.app/Contents/MacOS/Geoid: + "/Geoid.app/Contents/MacOS/Geoid": - when: - bit: 64 os: mac store: steam - /Geoid.exe: + "/Geoid.exe": - when: - bit: 64 os: windows store: steam - /Geoid.sh: + "/Geoid.sh": - when: - bit: 64 os: linux @@ -221411,7 +222055,7 @@ Geology Business: installDir: Geology Business: {} launch: - /Geology Business.exe: + "/Geology Business.exe": - when: - os: windows store: steam @@ -221421,17 +222065,17 @@ Geometry Boxer: installDir: Geometry Boxer: {} launch: - /GeometryBoxerV1-3Windows32.exe: + "/GeometryBoxerV1-3Windows32.exe": - when: - bit: 32 os: windows store: steam - /GeometryBoxerV1-3Windows64.exe: + "/GeometryBoxerV1-3Windows64.exe": - when: - bit: 64 os: windows store: steam - /GeometryBoxerV1-6Mac64.app/Contents/MacOS/Geometry Boxer: + "/GeometryBoxerV1-6Mac64.app/Contents/MacOS/Geometry Boxer": - when: - os: mac store: steam @@ -221439,7 +222083,7 @@ Geometry Boxer: id: 840620 Geometry Dash: files: - /GeometryDash: + "/GeometryDash": tags: - config - save @@ -221448,40 +222092,40 @@ Geometry Dash: installDir: Geometry Dash: {} launch: - /Geometry Dash.app: + "/Geometry Dash.app": - when: - os: mac store: steam - /GeometryDash.exe: + "/GeometryDash.exe": - when: - os: windows store: steam steam: id: 322170 -'Geometry Defense: Infinite': +"Geometry Defense: Infinite": installDir: Geometry Defense Infinite: {} launch: - /GeometryDefense.app: + "/GeometryDefense.app": - when: - os: mac store: steam - /GeometryDefense.exe: + "/GeometryDefense.exe": - when: - bit: 32 os: windows store: steam - /GeometryDefense.x86: + "/GeometryDefense.x86": - when: - bit: 32 os: linux store: steam - /GeometryDefense.x86_64: + "/GeometryDefense.x86_64": - when: - bit: 64 os: linux store: steam - /GeometryDefense_x64.exe: + "/GeometryDefense_x64.exe": - when: - bit: 64 os: windows @@ -221492,17 +222136,17 @@ Geometry Hero: installDir: Geometry Hero: {} launch: - /Geometry Hero.exe: + "/Geometry Hero.exe": - when: - os: windows store: steam steam: id: 1177080 -Geometry May. I swear it's a nice free game: +"Geometry May. I swear it's a nice free game": installDir: - Geometry May. I swear it's a nice free game: {} + "Geometry May. I swear it's a nice free game": {} launch: - /nw.exe: + "/nw.exe": - when: - store: steam steam: @@ -221511,7 +222155,7 @@ Geometry Runner Online: installDir: Geometry Runner Online: {} launch: - /runner.exe: + "/runner.exe": - when: - os: windows store: steam @@ -221521,19 +222165,19 @@ Geometry Rush: installDir: Geometry Rush: {} launch: - /Geometry Rush.exe: + "/Geometry Rush.exe": - when: - store: steam steam: id: 861710 -'Geometry Wars 3: Dimensions Evolved': +"Geometry Wars 3: Dimensions Evolved": files: - /userdata//310790/remote: + "/userdata//310790/remote": tags: - save when: - store: steam - /GeometryWars3Dimensions/Settings: + "/GeometryWars3Dimensions/Settings": tags: - config when: @@ -221541,23 +222185,23 @@ Geometry Rush: installDir: Geometry Wars 3 - Dimensions: {} launch: - /GW3.exe: + "/GW3.exe": - when: - os: windows store: steam - /GeometryWars3: + "/GeometryWars3": - when: - os: linux store: steam - /GeometryWars3.app/Contents/MacOS/GeometryWars3: + "/GeometryWars3.app/Contents/MacOS/GeometryWars3": - when: - os: mac store: steam steam: id: 310790 -'Geometry Wars: Retro Evolved': +"Geometry Wars: Retro Evolved": files: - /AppData/Local/Bizarre Creations/Geometry Wars Retro Evolved: + "/AppData/Local/Bizarre Creations/Geometry Wars Retro Evolved": tags: - config - save @@ -221566,7 +222210,7 @@ Geometry Rush: installDir: Geometry Wars: {} launch: - /GeometryWars.exe: + "/GeometryWars.exe": - when: - store: steam steam: @@ -221575,7 +222219,7 @@ Geometry World: installDir: Geometry World: {} launch: - /Geometry World.exe: + "/Geometry World.exe": - when: - os: windows store: steam @@ -221585,34 +222229,34 @@ GeometryPuzzler: installDir: Puzzler: {} launch: - /Puzzler.app/Contents/MacOS/Puzzler: + "/Puzzler.app/Contents/MacOS/Puzzler": - when: - os: mac store: steam - /Puzzler.exe: + "/Puzzler.exe": - when: - os: windows store: steam - /Puzzler.x86: + "/Puzzler.x86": - when: - bit: 32 os: linux store: steam - /Puzzler.x86_64: + "/Puzzler.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 719550 -George's Memories EP.1: +"George's Memories EP.1": steam: id: 894050 Georifters: installDir: georifters: {} launch: - /Georifters.exe: + "/Georifters.exe": - when: - os: windows store: steam @@ -221620,7 +222264,7 @@ Georifters: id: 1080490 Geostorm: files: - /userdata//688400/remote: + "/userdata//688400/remote": tags: - save when: @@ -221629,11 +222273,11 @@ Geostorm: installDir: Geostorm: {} launch: - /Game.app/Contents/MacOS/Game: + "/Game.app/Contents/MacOS/Game": - when: - os: mac store: steam - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -221644,9 +222288,9 @@ Geostorm: - save steam: id: 688400 -'Gerda: A Flame in Winter': +"Gerda: A Flame in Winter": files: - /AppData/LocalLow/PortaPlay/Gerda/Saves: + "/AppData/LocalLow/PortaPlay/Gerda/Saves": tags: - save when: @@ -221654,7 +222298,7 @@ Geostorm: installDir: Gerda: {} launch: - /Gerda.exe: + "/Gerda.exe": - when: - os: windows store: steam @@ -221668,7 +222312,7 @@ Gericonia 2: installDir: Gericonia 2: {} launch: - /Gericonia2.exe: + "/Gericonia2.exe": - when: - os: windows store: steam @@ -221678,7 +222322,7 @@ Germ Wars: installDir: Germ Wars: {} launch: - /Germ Wars.exe: + "/Germ Wars.exe": - when: - os: windows store: steam @@ -221688,7 +222332,7 @@ German Fortress 3D: installDir: German Fortress 3D: {} launch: - /German Fortress 3D.exe: + "/German Fortress 3D.exe": - when: - os: windows store: steam @@ -221696,12 +222340,12 @@ German Fortress 3D: id: 664350 German Truck Simulator: files: - /German Truck Simulator: + "/German Truck Simulator": tags: - config when: - os: windows - /German Truck Simulator/save: + "/German Truck Simulator/save": tags: - save when: @@ -221710,7 +222354,7 @@ Germination: installDir: germination: {} launch: - /Germination.exe: + "/Germination.exe": - when: - bit: 64 os: windows @@ -221719,12 +222363,12 @@ Germination: id: 428490 Gerty: files: - /AppData/LocalLow/Spawn Point OSK/Gerty: + "/AppData/LocalLow/Spawn Point OSK/Gerty": tags: - save when: - os: windows - /unity3d/Spawn Point OSK/Gerty: + "/unity3d/Spawn Point OSK/Gerty": tags: - config - save @@ -221736,31 +222380,31 @@ Gerty: installDir: Gerty: {} launch: - /Gerty.app: + "/Gerty.app": - when: - os: mac store: steam - /Gerty.exe: - - arguments: '-popupwindow' + "/Gerty.exe": + - arguments: "-popupwindow" when: - os: windows store: steam - /Gerty.x86: + "/Gerty.x86": - when: - bit: 32 os: linux store: steam - /Gerty.x86_64: + "/Gerty.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 455100 -'Gerty: Robots in Love': +"Gerty: Robots in Love": steam: id: 516360 -'Gestalt: Steam & Cinder': +"Gestalt: Steam & Cinder": gog: id: 1187861565 steam: @@ -221777,15 +222421,15 @@ Get Dis Money: installDir: Get Dis Money: {} launch: - /Get Dis Money.app: + "/Get Dis Money.app": - when: - os: mac store: steam - /Get Dis Money.exe: + "/Get Dis Money.exe": - when: - os: windows store: steam - /getdismoney: + "/getdismoney": - when: - os: linux store: steam @@ -221793,12 +222437,12 @@ Get Dis Money: id: 738130 Get Even: files: - /userdata//299950/remote: + "/userdata//299950/remote": tags: - save when: - store: steam - /My Games/GetEven/StormGame/Config: + "/My Games/GetEven/StormGame/Config": tags: - config when: @@ -221806,8 +222450,8 @@ Get Even: installDir: GetEven: {} launch: - /Binaries/Win64/GetEven.exe: - - arguments: '-seekfreeloadingpcconsole' + "/Binaries/Win64/GetEven.exe": + - arguments: "-seekfreeloadingpcconsole" when: - bit: 64 os: windows @@ -221818,11 +222462,11 @@ Get Me Outta Here - Deluxe/Remastered Edition: installDir: Get Me Outta Here - DeluxeRemastered Edition: {} launch: - /gmoh.app/Contents/MacOS/Mac_Runner: + "/gmoh.app/Contents/MacOS/Mac_Runner": - when: - os: mac store: steam - /gmoh_dx.exe: + "/gmoh_dx.exe": - when: - os: windows store: steam @@ -221830,12 +222474,12 @@ Get Me Outta Here - Deluxe/Remastered Edition: id: 1177960 Get Medieval: files: - /GAME/MEDIEVAL.SAV: + "/GAME/MEDIEVAL.SAV": tags: - save when: - os: windows - /GAME/MEDIEVAL.USR: + "/GAME/MEDIEVAL.USR": tags: - config when: @@ -221844,11 +222488,11 @@ Get Off My Lawn!: installDir: Get Off My Lawn: {} launch: - /GOML.app/Contents/MacOS/Get Off My Lawn!: + "/GOML.app/Contents/MacOS/Get Off My Lawn!": - when: - os: mac store: steam - /goml.exe: + "/goml.exe": - when: - os: windows store: steam @@ -221858,17 +222502,20 @@ Get Out: installDir: Get Out: {} launch: - /Get Out.exe: + "/Get Out.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam - /Get Out.x86_64: + "/Get Out.x86_64": - when: - bit: 64 os: linux store: steam - /getout-MacOS.app: + "/getout-MacOS.app": - when: - os: mac store: steam @@ -221878,7 +222525,7 @@ Get Over Here: installDir: Get Over Here: {} launch: - /GOH.exe: + "/GOH.exe": - when: - store: steam steam: @@ -221887,7 +222534,7 @@ Get Rich or Die Gaming: installDir: Get Rich or Die Gaming: {} launch: - /Get Rich or Die Gaming.exe: + "/Get Rich or Die Gaming.exe": - when: - os: windows store: steam @@ -221897,35 +222544,35 @@ Get Wrecked: installDir: Get Wrecked: {} launch: - /GW_MAC.app/Contents/MacOS/GW_MAC: + "/GW_MAC.app/Contents/MacOS/GW_MAC": - when: - os: mac store: steam - /GetWrecked.exe: + "/GetWrecked.exe": - when: - os: windows store: steam - /GetWreckedLinux.x86: + "/GetWreckedLinux.x86": - when: - os: linux store: steam steam: id: 805850 -'Get in the Car, Loser!': +"Get in the Car, Loser!": files: - /AppData/LocalLow/Love Conquers All Games/Get in the Car Loser/saves: + "/AppData/LocalLow/Love Conquers All Games/Get in the Car Loser/saves": tags: - save when: - os: windows installDir: - 'Get In The Car, Loser!': {} + "Get In The Car, Loser!": {} launch: - /Get in the Car Loser.app: + "/Get in the Car Loser.app": - when: - os: mac store: steam - /Get in the Car Loser.exe: + "/Get in the Car Loser.exe": - when: - os: windows store: steam @@ -221935,21 +222582,21 @@ Get the Banana: installDir: Get the Banana: {} launch: - /Linux/bin/lyf: + "/Linux/bin/lyf": - when: - os: linux store: steam - workingDir: /Linux/bin - /OSX/bin/lyf: + workingDir: "/Linux/bin" + "/OSX/bin/lyf": - when: - os: mac store: steam - workingDir: /OSX/bin - /Windows_100/bin_win/lyf.exe: + workingDir: "/OSX/bin" + "/Windows_100/bin_win/lyf.exe": - when: - os: windows store: steam - workingDir: /Windows_100/bin_win + workingDir: "/Windows_100/bin_win" steam: id: 1216480 Get the Gems: @@ -221961,32 +222608,32 @@ Get to Amkonius: installDir: Get To Amkonius: {} launch: - /AmkoniusSRE.exe: + "/AmkoniusSRE.exe": - when: - os: windows store: steam steam: id: 720160 -'Get to Work, Succubus-Chan!': +"Get to Work, Succubus-Chan!": files: - '/Get To Work, Succubus-Chan!_Data/SaveData': + "/Get To Work, Succubus-Chan!_Data/SaveData": tags: - save when: - os: windows - '/Get To Work, Succubus-Chan!_Data/SaveData_S': + "/Get To Work, Succubus-Chan!_Data/SaveData_S": tags: - save when: - os: windows installDir: - 'Get To Work, Succubus-Chan!': {} + "Get To Work, Succubus-Chan!": {} launch: - '/Get To Work, Succubus-Chan!.app/Contents/MacOS/Get To Work, Succubus-Chan!': + "/Get To Work, Succubus-Chan!.app/Contents/MacOS/Get To Work, Succubus-Chan!": - when: - os: mac store: steam - '/Get To Work, Succubus-Chan!.exe': + "/Get To Work, Succubus-Chan!.exe": - when: - os: windows store: steam @@ -221996,24 +222643,24 @@ Get to a Gun: installDir: Get To A Gun: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam steam: id: 935320 -Get'em Gary: +"Get'em Gary": steam: id: 604900 GetMeBro!: installDir: GetMeBro!: {} launch: - /GetMeBro.exe: + "/GetMeBro.exe": - when: - os: windows store: steam - /mac.app/Contents/MacOS/mac: + "/mac.app/Contents/MacOS/mac": - when: - os: mac store: steam @@ -222023,20 +222670,20 @@ Getaway Island: installDir: Getaway Island: {} launch: - /GetawayIsland.exe: + "/GetawayIsland.exe": - when: - os: windows store: steam steam: id: 605190 -'GetsuFumaDen: Undying Moon': +"GetsuFumaDen: Undying Moon": files: - /GetsuFumaDen/Saved/Config/WindowsNoEditor: + "/GetsuFumaDen/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /GetsuFumaDen/Saved/SaveGames: + "/GetsuFumaDen/Saved/SaveGames": tags: - save when: @@ -222044,7 +222691,7 @@ Getaway Island: installDir: GetsuFumaDen: {} launch: - /GetsuFumaDen.exe: + "/GetsuFumaDen.exe": - when: - bit: 64 os: windows @@ -222053,7 +222700,7 @@ Getaway Island: id: 1323470 Getsuei Gakuen -kou-: files: - /data/saveload: + "/data/saveload": tags: - config - save @@ -222062,7 +222709,7 @@ Getsuei Gakuen -kou-: installDir: Getsuei Gakuen -kou-: {} launch: - /Getsuei.exe: + "/Getsuei.exe": - when: - os: windows store: steam @@ -222070,13 +222717,13 @@ Getsuei Gakuen -kou-: id: 411390 Getting Over It with Bennett Foddy: files: - /Library/Preferences/net.Foddy.GettingOverIt.plist: + "/Library/Preferences/net.Foddy.GettingOverIt.plist": tags: - config - save when: - os: mac - /.config/unity3d/Bennett Foddy/Getting Over It: + "/.config/unity3d/Bennett Foddy/Getting Over It": tags: - config - save @@ -222085,17 +222732,17 @@ Getting Over It with Bennett Foddy: installDir: Getting Over It: {} launch: - /GettingOverIt.app: + "/GettingOverIt.app": - when: - bit: 64 os: mac store: steam - /GettingOverIt.exe: + "/GettingOverIt.exe": - when: - bit: 64 os: windows store: steam - /GettingOverIt.x86_64: + "/GettingOverIt.x86_64": - when: - bit: 64 os: linux @@ -222107,20 +222754,20 @@ Getting Over It with Bennett Foddy: - save steam: id: 240720 -'Gettysburg: Armored Warfare': +"Gettysburg: Armored Warfare": installDir: Gettysburg Armored Warfare: {} launch: - /ArmoredWarfare.exe: + "/ArmoredWarfare.exe": - when: - store: steam steam: id: 200630 -'Gettysburg: The Tide Turns': +"Gettysburg: The Tide Turns": installDir: Gettysburg The Tide Turns: {} launch: - /autorun.exe: + "/autorun.exe": - when: - store: steam steam: @@ -222129,7 +222776,7 @@ Gevaudan: installDir: Gevaudan: {} launch: - /Gevaudan.exe: + "/Gevaudan.exe": - when: - os: windows store: steam @@ -222142,7 +222789,7 @@ Gex: HKEY_LOCAL_MACHINE/SOFTWARE/WOW6432Node/Microsoft/Games/GEX: tags: - config -'Gex: Enter the Gecko': +"Gex: Enter the Gecko": registry: HKEY_LOCAL_MACHINE/SOFTWARE/WOW6432Node/Crystal Dynamics/Gex2: tags: @@ -222151,7 +222798,7 @@ Ghetto Conspiracy: installDir: Ghetto Conspiracy: {} launch: - /Ghetto Conspiracy.exe: + "/Ghetto Conspiracy.exe": - when: - os: windows store: steam @@ -222161,11 +222808,11 @@ Ghone is gone: installDir: Ghone is gone: {} launch: - /Ghone is gone.app: + "/Ghone is gone.app": - when: - os: mac store: steam - /Ghone is gone.exe: + "/Ghone is gone.exe": - when: - os: windows store: steam @@ -222173,22 +222820,22 @@ Ghone is gone: id: 1220890 Ghost 1.0: files: - /config_sp.cfg: + "/config_sp.cfg": tags: - config when: - os: windows - /save: + "/save": tags: - save when: - os: windows - /userdata//463270/remote: + "/userdata//463270/remote": tags: - config when: - store: steam - /userdata//463270/remote/save: + "/userdata//463270/remote/save": tags: - save when: @@ -222198,8 +222845,8 @@ Ghost 1.0: installDir: Ghost: {} launch: - /ghost.exe: - - arguments: '-console' + "/ghost.exe": + - arguments: "-console" when: - os: windows store: steam @@ -222209,15 +222856,15 @@ Ghost Blade HD: installDir: GhostBladeHD: {} launch: - /GhostBlade.app: + "/GhostBlade.app": - when: - os: mac store: steam - /GhostBlade.exe: + "/GhostBlade.exe": - when: - os: windows store: steam - /GhostBlade.sh: + "/GhostBlade.sh": - when: - os: linux store: steam @@ -222227,7 +222874,7 @@ Ghost Buster 3D: installDir: Ghost Buster 3D: {} launch: - /Ghost Buster 3D.exe: + "/Ghost Buster 3D.exe": - when: - os: windows store: steam @@ -222237,11 +222884,11 @@ Ghost Cleaner: installDir: GhostCleaner: {} launch: - /GCleaner.app/Contents/MacOS/GCleaner: + "/GCleaner.app/Contents/MacOS/GCleaner": - when: - os: mac store: steam - /GCleaner.exe: + "/GCleaner.exe": - when: - os: windows store: steam @@ -222251,65 +222898,65 @@ Ghost Dimension: installDir: ghostdimension: {} launch: - /ghostdimension.exe: + "/ghostdimension.exe": - when: - os: windows store: steam steam: id: 1178000 -'Ghost Encounters: Deadwood': +"Ghost Encounters: Deadwood": installDir: - Ghost Encounters Deadwood - Collector's Edition: {} + "Ghost Encounters Deadwood - Collector's Edition": {} launch: - /GhostEncountersDeadwood.exe: + "/GhostEncountersDeadwood.exe": - when: - os: windows store: steam steam: id: 353070 -'Ghost Files 2: Memory of a Crime': +"Ghost Files 2: Memory of a Crime": installDir: Ghost Files 2: {} launch: - /GhostFiles2.app/Contents/MacOS/GhostFiles2: + "/GhostFiles2.app/Contents/MacOS/GhostFiles2": - when: - os: mac store: steam - /GhostFiles2.exe: + "/GhostFiles2.exe": - when: - os: windows store: steam - /GhostFiles2_amd64: + "/GhostFiles2_amd64": - when: - bit: 64 os: linux store: steam - /GhostFiles2_i386: + "/GhostFiles2_i386": - when: - bit: 32 os: linux store: steam steam: id: 1159500 -'Ghost Files: The Face of Guilt': +"Ghost Files: The Face of Guilt": installDir: Ghost Files: {} launch: - /GhostFiles.exe: + "/GhostFiles.exe": - when: - os: windows store: steam - /GhostFiles_amd64: + "/GhostFiles_amd64": - when: - bit: 64 os: linux store: steam - /GhostFiles_i386: + "/GhostFiles_i386": - when: - bit: 32 os: linux store: steam - /mac_steam.app/Contents/MacOS/mac_steam: + "/mac_steam.app/Contents/MacOS/mac_steam": - when: - os: mac store: steam @@ -222319,15 +222966,15 @@ Ghost Grab 3000: installDir: Ghost Grab 3000: {} launch: - /Ghost Grab 3000.app: + "/Ghost Grab 3000.app": - when: - os: mac store: steam - /Ghost Grab 3000.exe: + "/Ghost Grab 3000.exe": - when: - os: windows store: steam - /Ghost Grab 3000.x86_64: + "/Ghost Grab 3000.x86_64": - when: - bit: 64 os: linux @@ -222341,11 +222988,11 @@ Ghost In The Barn House: installDir: Ghost In The Barn House: {} launch: - /GhostInTheBarnHouse: + "/GhostInTheBarnHouse": - when: - os: linux store: steam - /GhostInTheBarnHouse.exe: + "/GhostInTheBarnHouse.exe": - when: - os: windows store: steam @@ -222358,7 +223005,7 @@ Ghost Land: installDir: Ghost Land: {} launch: - /Ghostland.exe: + "/Ghostland.exe": - when: - os: windows store: steam @@ -222366,12 +223013,12 @@ Ghost Land: id: 1109110 Ghost Master: files: - /GhostData/SaveGames: + "/GhostData/SaveGames": tags: - save when: - os: windows - /GhostData/SpDrv.cfg: + "/GhostData/SpDrv.cfg": tags: - config when: @@ -222381,7 +223028,7 @@ Ghost Master: installDir: Ghost Master: {} launch: - /ghost.exe: + "/ghost.exe": - when: - store: steam steam: @@ -222395,7 +223042,7 @@ Ghost Parade: installDir: Ghost Parade Suri and the Svaka Forest: {} launch: - /Ghost Parade.exe: + "/Ghost Parade.exe": - when: - os: windows store: steam @@ -222403,7 +223050,7 @@ Ghost Parade: id: 1093360 Ghost Pirates of Vooju Island: files: - /Ghost Pirates: + "/Ghost Pirates": tags: - config when: @@ -222411,7 +223058,7 @@ Ghost Pirates of Vooju Island: installDir: Ghost Pirates of Vooju Island: {} launch: - /main.exe: + "/main.exe": - when: - store: steam steam: @@ -222420,7 +223067,7 @@ Ghost Platoon: installDir: Ghost Platoon: {} launch: - /Launcher.exe: + "/Launcher.exe": - when: - bit: 64 os: windows @@ -222431,7 +223078,7 @@ Ghost Pursuit VR: installDir: Ghost Pursuit VR: {} launch: - /Ghost_Pursuit_VR.exe: + "/Ghost_Pursuit_VR.exe": - when: - os: windows store: steam @@ -222439,7 +223086,7 @@ Ghost Pursuit VR: id: 505110 Ghost Song: files: - '{C:/Users/username/AppData/LocalLow/Old Moon/GhostSong': + "{C:/Users/username/AppData/LocalLow/Old Moon/GhostSong": tags: - save when: @@ -222449,7 +223096,7 @@ Ghost Song: installDir: GhostSong: {} launch: - /GhostSong.exe: + "/GhostSong.exe": - when: - store: steam steam: @@ -222458,7 +223105,7 @@ Ghost Stories: installDir: Ghost Stories: {} launch: - /Ghost Stories.exe: + "/Ghost Stories.exe": - when: - bit: 64 os: windows @@ -222469,17 +223116,17 @@ Ghost Sweeper: installDir: Ghost Sweeper: {} launch: - /Ghost Sweeper.app/Contents/MacOS/Mac_Runner: + "/Ghost Sweeper.app/Contents/MacOS/Mac_Runner": - when: - os: mac store: steam - /win32/Ghost_Sweeper-Steam-1.0.0.0.exe: + "/win32/Ghost_Sweeper-Steam-1.0.0.0.exe": - when: - os: windows store: steam steam: id: 496990 -Ghost Town Mine Ride & Shootin' Gallery: +"Ghost Town Mine Ride & Shootin' Gallery": installDir: Ghost Town Mine Ride: {} steam: @@ -222493,20 +223140,20 @@ Ghost Trap: installDir: GhostTrap: {} launch: - /GhostTrap.exe: + "/GhostTrap.exe": - when: - os: windows store: steam steam: id: 2006090 -'Ghost Trick: Phantom Detective': +"Ghost Trick: Phantom Detective": files: - /config.ini: + "/config.ini": tags: - config when: - os: windows - /userdata//1967430/remote/win64_save: + "/userdata//1967430/remote/win64_save": tags: - save when: @@ -222514,7 +223161,7 @@ Ghost Trap: installDir: Ghost Trick: {} launch: - /Ghost Trick.exe: + "/Ghost Trick.exe": - when: - os: windows store: steam @@ -222524,24 +223171,24 @@ Ghost in the Machine: installDir: GitM: {} launch: - /GhostInTheMachine.exe: + "/GhostInTheMachine.exe": - when: - os: windows store: steam - /gitm: + "/gitm": - when: - os: linux store: steam - /gitm.app: + "/gitm.app": - when: - bit: 64 os: mac store: steam steam: id: 363220 -'Ghost in the Shell: Stand Alone Complex - First Assault Online': +"Ghost in the Shell: Stand Alone Complex - First Assault Online": files: - /Data: + "/Data": tags: - config when: @@ -222549,7 +223196,7 @@ Ghost in the Machine: installDir: firstassault: {} launch: - /Shipping/nxsteam.exe: + "/Shipping/nxsteam.exe": - when: - os: windows store: steam @@ -222557,7 +223204,7 @@ Ghost in the Machine: id: 369200 Ghost of a Tale: files: - /My Games/Ghost of a Tale: + "/My Games/Ghost of a Tale": tags: - save when: @@ -222567,7 +223214,7 @@ Ghost of a Tale: installDir: Ghost of a Tale: {} launch: - /GoaT.exe: + "/GoaT.exe": - when: - bit: 32 os: windows @@ -222580,7 +223227,7 @@ Ghost of a Tale: id: 417290 Ghost on the Shore: files: - /AppData/LocalLow/like Charlie/Ghost On The Shore: + "/AppData/LocalLow/like Charlie/Ghost On The Shore": tags: - config - save @@ -222591,11 +223238,11 @@ Ghost on the Shore: installDir: Ghost on the Shore: {} launch: - /gots.app: + "/gots.app": - when: - os: mac store: steam - /gots.exe: + "/gots.exe": - when: - bit: 64 os: windows @@ -222606,20 +223253,20 @@ GhostControl Inc.: installDir: GhostControlInc: {} launch: - /GhostControl.app: + "/GhostControl.app": - when: - os: mac store: steam - /GhostControl.exe: + "/GhostControl.exe": - when: - os: windows store: steam - /GhostControl.x86: + "/GhostControl.x86": - when: - bit: 32 os: linux store: steam - /GhostControl.x86_64: + "/GhostControl.x86_64": - when: - bit: 64 os: linux @@ -222630,11 +223277,11 @@ GhostGame: installDir: GhostGame: {} launch: - /GhostGame.exe: + "/GhostGame.exe": - when: - os: windows store: steam - /Ghostgame.app/Contents/MacOS/Mac_Runner: + "/Ghostgame.app/Contents/MacOS/Mac_Runner": - when: - os: mac store: steam @@ -222647,61 +223294,61 @@ Ghostbusters (2016): installDir: Ghostbusters: {} launch: - /Ghostbusters/Binaries/Win64/Ghostbusters.exe: + "/Ghostbusters/Binaries/Win64/Ghostbusters.exe": - when: - os: windows store: steam steam: id: 425310 -'Ghostbusters VR: Now Hiring': +"Ghostbusters VR: Now Hiring": installDir: GB1_vive_595003: {} launch: - /ghostbusters.exe: + "/ghostbusters.exe": - when: - os: windows store: steam steam: id: 595000 -'Ghostbusters VR: Showdown': +"Ghostbusters VR: Showdown": installDir: GB2_vive_862943: {} launch: - /ghostbusters.exe: + "/ghostbusters.exe": - when: - os: windows store: steam steam: id: 862940 -'Ghostbusters: Sanctum of Slime': +"Ghostbusters: Sanctum of Slime": installDir: Ghostbusters Sanctum of Slime: {} launch: - /Game/GhostBustersSOS.exe: + "/Game/GhostBustersSOS.exe": - when: - store: steam steam: id: 9990 -'Ghostbusters: Spirits Unleashed': +"Ghostbusters: Spirits Unleashed": installDir: GBSU: {} launch: - /SwayzeGame.exe: - - arguments: '-steam' + "/SwayzeGame.exe": + - arguments: "-steam" when: - bit: 64 os: windows store: steam steam: id: 2383990 -'Ghostbusters: The Video Game': +"Ghostbusters: The Video Game": files: - /GHOSTBUSTERS (tm): + "/GHOSTBUSTERS (tm)": tags: - save when: - os: windows - /GHOSTBUSTERS (tm): + "/GHOSTBUSTERS (tm)": tags: - config when: @@ -222709,19 +223356,19 @@ Ghostbusters (2016): installDir: Ghostbusters: {} launch: - /ghost_w32.exe: + "/ghost_w32.exe": - when: - store: steam steam: id: 9870 -'Ghostbusters: The Video Game Remastered': +"Ghostbusters: The Video Game Remastered": files: - /GHOSTBUSTERS: + "/GHOSTBUSTERS": tags: - save when: - os: windows - /GHOSTBUSTERS: + "/GHOSTBUSTERS": tags: - config when: @@ -222729,7 +223376,7 @@ Ghostbusters (2016): installDir: Ghostbusters The Video Game Remastered: {} launch: - /ghost.exe: + "/ghost.exe": - when: - bit: 64 os: windows @@ -222740,7 +223387,7 @@ Ghostdream: installDir: GhostDream: {} launch: - /Ghostdream.exe: + "/Ghostdream.exe": - when: - os: windows store: steam @@ -222750,8 +223397,8 @@ Ghostie Quest: installDir: Ghostie Quest: {} launch: - /jre6/bin/javaw.exe: - - arguments: '-jar GhostieQuest.jar' + "/jre6/bin/javaw.exe": + - arguments: "-jar GhostieQuest.jar" when: - os: windows store: steam @@ -222761,7 +223408,7 @@ Ghosting Gun S: installDir: Ghosting Gun S: {} launch: - /Ghosting Gun S.exe: + "/Ghosting Gun S.exe": - when: - os: windows store: steam @@ -222771,11 +223418,11 @@ Ghostlight Manor: installDir: Ghostlight Manor: {} launch: - /Ghostlight Manor.app/Contents/MacOS/Ghostlight Manor: + "/Ghostlight Manor.app/Contents/MacOS/Ghostlight Manor": - when: - os: mac store: steam - /Ghostlight Manor.exe: + "/Ghostlight Manor.exe": - when: - os: windows store: steam @@ -222785,15 +223432,15 @@ Ghostlords: installDir: Ghostlords: {} launch: - /Ghostlords.app/Contents/MacOS/Ghostlords: + "/Ghostlords.app/Contents/MacOS/Ghostlords": - when: - os: mac store: steam - /Ghostlords.exe: + "/Ghostlords.exe": - when: - os: windows store: steam - /ghostlords.x86_64: + "/ghostlords.x86_64": - when: - os: linux store: steam @@ -222801,12 +223448,12 @@ Ghostlords: id: 522340 Ghostlore: files: - /AppData/LocalLow/ATATGames/Ghostlore/saves: + "/AppData/LocalLow/ATATGames/Ghostlore/saves": tags: - save when: - os: windows - /AppData/LocalLow/ATATGames/Ghostlore/userConfig/*.json: + "/AppData/LocalLow/ATATGames/Ghostlore/userConfig/*.json": tags: - config when: @@ -222814,7 +223461,7 @@ Ghostlore: installDir: Ghostlore: {} launch: - /Ghostlore.exe: + "/Ghostlore.exe": - when: - store: steam steam: @@ -222823,11 +223470,11 @@ Ghostly Horizon: installDir: Ghostly Horizon: {} launch: - /GHClient.app/Contents/MacOS/GHClient: + "/GHClient.app/Contents/MacOS/GHClient": - when: - os: mac store: steam - /GHClient.exe: + "/GHClient.exe": - when: - os: windows store: steam @@ -222837,16 +223484,16 @@ Ghostly Matter: installDir: Ghostly Matter: {} launch: - /nw.exe: + "/nw.exe": - when: - store: steam steam: id: 800240 -'Ghostman: The Council Calamity': +"Ghostman: The Council Calamity": installDir: GhostmanTheCouncilCalamity: {} launch: - /Rebut And Ghostman.exe: + "/Rebut And Ghostman.exe": - when: - os: windows store: steam @@ -222854,12 +223501,12 @@ Ghostly Matter: id: 894120 Ghostory: files: - /unity3d/RigidCore Games/Ghostory//profile.sav: + "/unity3d/RigidCore Games/Ghostory//profile.sav": tags: - save when: - os: linux - /unity3d/RigidCore Games/Ghostory/prefs: + "/unity3d/RigidCore Games/Ghostory/prefs": tags: - config when: @@ -222867,15 +223514,15 @@ Ghostory: installDir: Ghostory: {} launch: - /Ghostory.app/Contents/MacOS/Ghostory: + "/Ghostory.app/Contents/MacOS/Ghostory": - when: - os: mac store: steam - /Ghostory.exe: + "/Ghostory.exe": - when: - os: windows store: steam - /Ghostory.x86: + "/Ghostory.x86": - when: - os: linux store: steam @@ -222883,12 +223530,12 @@ Ghostory: id: 568460 Ghostrunner: files: - /Ghostrunner/Saved: + "/Ghostrunner/Saved": tags: - save when: - os: windows - /Ghostrunner/Saved/Config/WindowsNoEditor: + "/Ghostrunner/Saved/Config/WindowsNoEditor": tags: - config when: @@ -222897,12 +223544,12 @@ Ghostrunner: id: 1957528513 id: gogExtra: - - 2072875151 - - 1797774287 - - 1732470242 - - 1596358146 - - 1519337965 - 1443435189 + - 1519337965 + - 1596358146 + - 1732470242 + - 1797774287 + - 2072875151 steamExtra: - 1480500 - 1542040 @@ -222917,12 +223564,12 @@ Ghostrunner: id: 1139900 Ghostrunner 2: files: - /Ghostrunner2/Saved/SaveGames: + "/Ghostrunner2/Saved/SaveGames": tags: - config when: - os: windows - /Ghostrunner2/Saved/SaveGames/: + "/Ghostrunner2/Saved/SaveGames/": tags: - save when: @@ -222936,14 +223583,14 @@ Ghostrunner 2: - 2478370 steam: id: 2144740 -Ghosts 'n Goblins Resurrection: +"Ghosts 'n Goblins Resurrection": files: - /config.ini: + "/config.ini": tags: - config when: - os: windows - /userdata//1375400/remote/win64_save: + "/userdata//1375400/remote/win64_save": tags: - save when: @@ -222952,7 +223599,7 @@ Ghosts 'n Goblins Resurrection: installDir: Makaimura_GG_RE: {} launch: - /makaimura_GG_RE.exe: + "/makaimura_GG_RE.exe": - when: - os: windows store: steam @@ -222962,16 +223609,16 @@ Ghosts of Miami: installDir: Ghosts of Miami: {} launch: - /GhostsOfMiami.app/Contents/MacOS/GhostsOfMiami: + "/GhostsOfMiami.app/Contents/MacOS/GhostsOfMiami": - when: - os: mac store: steam - /GhostsOfMiami.exe: + "/GhostsOfMiami.exe": - when: - bit: 64 os: windows store: steam - /GhostsOfMiami.x86_64: + "/GhostsOfMiami.x86_64": - when: - bit: 64 os: linux @@ -222980,12 +223627,12 @@ Ghosts of Miami: id: 677300 Ghostship Aftermath: files: - /Binaries/Win32/gsstorysav0.sav: + "/Binaries/Win32/gsstorysav0.sav": tags: - save when: - os: windows - /UDKGame/Config/UDKSystemSettings.ini: + "/UDKGame/Config/UDKSystemSettings.ini": tags: - config when: @@ -222993,31 +223640,31 @@ Ghostship Aftermath: installDir: GSaftermath: {} launch: - /GSAHassleFree/binaries/win32/udk.exe: + "/GSAHassleFree/binaries/win32/udk.exe": - when: - os: windows store: steam - workingDir: /GSAHassleFree/binaries/win32 - /GhostShipaftermathVR/binaries/win32/udk.exe: + workingDir: "/GSAHassleFree/binaries/win32" + "/GhostShipaftermathVR/binaries/win32/udk.exe": - when: - os: windows store: steam - workingDir: /GhostShipaftermathVR/binaries/win32 - /binaries/win32/udk.exe: + workingDir: "/GhostShipaftermathVR/binaries/win32" + "/binaries/win32/udk.exe": - when: - os: windows store: steam - workingDir: /binaries/win32 + workingDir: "/binaries/win32" steam: id: 280890 Ghostship Chronicles: files: - /Ghosthip3/Saved/Config/WindowsNoEditor: + "/Ghosthip3/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /Ghosthip3/Saved/Savegames: + "/Ghosthip3/Saved/Savegames": tags: - save when: @@ -223025,21 +223672,21 @@ Ghostship Chronicles: installDir: PC_GSChronicles: {} launch: - /Ghosthip3.exe: + "/Ghosthip3.exe": - when: - bit: 64 os: windows store: steam steam: id: 925010 -'Ghostware: Arena of the Dead': +"Ghostware: Arena of the Dead": files: - /DeadGaem/Saved/Config: + "/DeadGaem/Saved/Config": tags: - config when: - os: windows - /DeadGaem/Saved/SaveGames: + "/DeadGaem/Saved/SaveGames": tags: - save when: @@ -223047,42 +223694,44 @@ Ghostship Chronicles: installDir: GHOSTWARE Arena of the Dead: {} launch: - /GWARE.exe: + "/GWARE.exe": - when: - bit: 64 os: windows store: steam steam: id: 1893370 -'Ghostwire: Tokyo': +"Ghostwire: Tokyo": files: - /Saved Games/TangoGameworks/GhostWire Tokyo (EGS)/Saved/Config/WindowsNoEditor: + "/Saved Games/TangoGameworks/GhostWire Tokyo (EGS)/Saved/Config/WindowsNoEditor": tags: - config when: - - store: epic - /Saved Games/TangoGameworks/GhostWire Tokyo (EGS)/Saved/SaveGames: + - os: windows + "/Saved Games/TangoGameworks/GhostWire Tokyo (EGS)/Saved/SaveGames": tags: - save when: - - store: epic - /Saved Games/TangoGameworks/GhostWire Tokyo (STEAM)/Saved/Config/WindowsNoEditor: + - os: windows + "/Saved Games/TangoGameworks/GhostWire Tokyo (STEAM)/Saved/Config/WindowsNoEditor": tags: - config when: - - store: steam - /Saved Games/TangoGameworks/GhostWire Tokyo (STEAM)/Saved/SaveGames: + - os: windows + store: steam + "/Saved Games/TangoGameworks/GhostWire Tokyo (STEAM)/Saved/SaveGames": tags: - save when: - - store: steam - /Saved Games/TangoGameworks/GhostWire Tokyo (Xbox)/Saved/Config/WinGDK: + - os: windows + store: steam + "/Saved Games/TangoGameworks/GhostWire Tokyo (Xbox)/Saved/Config/WinGDK": tags: - config when: - os: windows store: microsoft - /Packages/BethesdaSoftworks.ProjectSnowfall_3275kfvn8vcwc/SystemAppData/wgs/: + "/Packages/BethesdaSoftworks.ProjectSnowfall_3275kfvn8vcwc/SystemAppData/wgs/": tags: - save when: @@ -223091,16 +223740,16 @@ Ghostship Chronicles: installDir: Ghostwire Tokyo: {} launch: - /GWT.exe: + "/GWT.exe": - when: - store: steam steam: id: 1475810 -'Ghostwire: Tokyo - Prelude': +"Ghostwire: Tokyo - Prelude": installDir: Ghostwire Tokyo Prelude: {} launch: - /GWTPrelude.exe: + "/GWTPrelude.exe": - when: - store: steam steam: @@ -223109,22 +223758,22 @@ Ghoul: installDir: GHOUL: {} launch: - /Ghoul.exe: + "/Ghoul.exe": - when: - bit: 64 os: windows store: steam steam: id: 709050 -'Ghoul Britannia: Land of Hope and Gorey': +"Ghoul Britannia: Land of Hope and Gorey": installDir: Ghoul Britannia Land of Hope and Gorey: {} launch: - /Land of Hope and Gorey.app: + "/Land of Hope and Gorey.app": - when: - os: mac store: steam - /Land of Hope and Gorey.exe: + "/Land of Hope and Gorey.exe": - when: - bit: 64 os: windows @@ -223135,7 +223784,7 @@ Ghoul Kid: installDir: Ghoul Kid: {} launch: - /GhoulKid.exe: + "/GhoulKid.exe": - when: - os: windows store: steam @@ -223145,7 +223794,7 @@ Ghoulboy: installDir: Ghoulboy: {} launch: - /Ghoulboy.exe: + "/Ghoulboy.exe": - when: - os: windows store: steam @@ -223155,7 +223804,7 @@ Ghouls Underground: installDir: Ghouls Underground: {} launch: - /GhoulsUnderground.exe: + "/GhoulsUnderground.exe": - when: - store: steam steam: @@ -223164,7 +223813,7 @@ Ghrian: installDir: Ghrian: {} launch: - /Ghrian.exe: + "/Ghrian.exe": - when: - os: windows store: steam @@ -223174,7 +223823,7 @@ GiAnt: installDir: GiAnt: {} launch: - /GiAnt.exe: + "/GiAnt.exe": - when: - os: windows store: steam @@ -223184,11 +223833,11 @@ Giana Sisters 2D: installDir: Giana Sisters 2D: {} launch: - /Giana.app: + "/Giana.app": - when: - os: mac store: steam - /giana.exe: + "/giana.exe": - when: - os: windows store: steam @@ -223198,19 +223847,19 @@ Giana Sisters 2D: - save steam: id: 350770 -'Giana Sisters: Dream Runners': +"Giana Sisters: Dream Runners": installDir: Giana Sisters Dream Runners: {} launch: - /launcher/GSLauncher.exe: + "/launcher/GSLauncher.exe": - when: - store: steam - workingDir: /Launcher + workingDir: "/Launcher" steam: id: 352900 -'Giana Sisters: Twisted Dreams': +"Giana Sisters: Twisted Dreams": files: - /Giana Sisters - Twisted Dreams: + "/Giana Sisters - Twisted Dreams": tags: - config - save @@ -223221,15 +223870,15 @@ Giana Sisters 2D: installDir: Giana Sisters Twisted Dreams: {} launch: - /launcher/GSLauncher.exe: + "/launcher/GSLauncher.exe": - when: - store: steam - workingDir: /Launcher + workingDir: "/Launcher" steam: id: 223220 -'Giana Sisters: Twisted Dreams - Rise of the Owlverlord': +"Giana Sisters: Twisted Dreams - Rise of the Owlverlord": files: - /Giana Sisters - Rise of the Owlverlord: + "/Giana Sisters - Rise of the Owlverlord": tags: - config - save @@ -223240,17 +223889,17 @@ Giana Sisters 2D: installDir: GSTD - Rise of the Owlverlord: {} launch: - /launcher/GSLauncher.exe: + "/launcher/GSLauncher.exe": - when: - store: steam - workingDir: /launcher + workingDir: "/launcher" steam: id: 246960 Giant Bear Rampage! - a Kaiju Bear Simulator: installDir: Giant Bear Rampage!: {} launch: - /ProjectCMS2.exe: + "/ProjectCMS2.exe": - when: - store: steam steam: @@ -223260,7 +223909,7 @@ Giant Celebration: Giant Celebration: {} steam: id: 982120 -'Giant Cop: Justice Above All': +"Giant Cop: Justice Above All": installDir: Giant Cop Justice Above All: {} steam: @@ -223272,7 +223921,7 @@ Giant Life: id: 1081250 Giant Machines 2017: files: - /AppData/LocalLow/CodeHorizon/GiantMachines2017/saves: + "/AppData/LocalLow/CodeHorizon/GiantMachines2017/saves": tags: - save when: @@ -223280,17 +223929,17 @@ Giant Machines 2017: installDir: GiantMachines2017: {} launch: - /GiantMachines2017.app: + "/GiantMachines2017.app": - when: - bit: 64 os: mac store: steam - /GiantMachines2017.exe: + "/GiantMachines2017.exe": - when: - bit: 64 os: windows store: steam - /GiantMachines2017.x86_64: + "/GiantMachines2017.x86_64": - when: - bit: 64 os: linux @@ -223301,15 +223950,15 @@ Giants Uprising: installDir: Giants Uprising: {} launch: - /GiantsUprising.exe: + "/GiantsUprising.exe": - when: - os: windows store: steam steam: id: 1109160 -'Giants: Citizen Kabuto': +"Giants: Citizen Kabuto": files: - /savegame: + "/savegame": tags: - save when: @@ -223319,7 +223968,7 @@ Giants Uprising: installDir: Giants Citizen Kabuto: {} launch: - /Launch Giants.bat: + "/Launch Giants.bat": - when: - store: steam registry: @@ -223328,15 +223977,15 @@ Giants Uprising: - config steam: id: 557750 -'Gibbon: Beyond the Trees': +"Gibbon: Beyond the Trees": installDir: Gibbon Beyond the Trees: {} launch: - /Gibbon.app: + "/Gibbon.app": - when: - os: mac store: steam - /Gibbon.exe: + "/Gibbon.exe": - when: - os: windows store: steam @@ -223344,22 +223993,22 @@ Giants Uprising: id: 1837330 Gibbous - A Cthulhu Adventure: files: - /AppData/LocalLow/StuckInAttic/Gibbous - A Cthulhu Adventure/Cthulhu_*.save: + "/AppData/LocalLow/StuckInAttic/Gibbous - A Cthulhu Adventure/Cthulhu_*.save": tags: - save when: - os: windows - /Library/application support/unity.StuckInAttic.Gibbous/Cthulhu_*.save: + "/Library/application support/unity.StuckInAttic.Gibbous/Cthulhu_*.save": tags: - save when: - os: mac - /unity3d/StuckInAttic/Gibbous - A Cthulhu Adventure/Cthulhu_*.save: + "/unity3d/StuckInAttic/Gibbous - A Cthulhu Adventure/Cthulhu_*.save": tags: - save when: - os: linux - /unity3d/StuckInAttic/Gibbous - A Cthulhu Adventure/prefs: + "/unity3d/StuckInAttic/Gibbous - A Cthulhu Adventure/prefs": tags: - config when: @@ -223369,17 +224018,17 @@ Gibbous - A Cthulhu Adventure: installDir: Gibbous - A Cthulhu Adventure: {} launch: - /Gibbous - A Cthulhu Adventure.app: + "/Gibbous - A Cthulhu Adventure.app": - when: - os: mac store: steam - /Gibbous - A Cthulhu Adventure.exe: + "/Gibbous - A Cthulhu Adventure.exe": - when: - bit: 64 os: windows store: steam - /Gibbous - A Cthulhu Adventure.x86_64: - - arguments: '-force-glcore42 -force-clamped' + "/Gibbous - A Cthulhu Adventure.x86_64": + - arguments: "-force-glcore42 -force-clamped" when: - bit: 64 os: linux @@ -223392,32 +224041,32 @@ Gibbous - A Cthulhu Adventure: id: 914020 Gift: files: - /TheGift.cfg: + "/TheGift.cfg": tags: - config when: - os: windows - /gift.sav: + "/gift.sav": tags: - save when: - os: windows -'Gift of Life: Key of Solomon': +"Gift of Life: Key of Solomon": steam: id: 795030 Gift of Parthax: installDir: Gift of Parthax: {} launch: - /Gift of Parthax.app: + "/Gift of Parthax.app": - when: - os: mac store: steam - /Gift of Parthax.exe: + "/Gift of Parthax.exe": - when: - os: windows store: steam - /Gift of Parthax.x86_64: + "/Gift of Parthax.x86_64": - when: - os: linux store: steam @@ -223427,7 +224076,7 @@ Gift to Humanity: installDir: Gift to Humanity: {} launch: - /Gift To Humanity.exe: + "/Gift To Humanity.exe": - when: - os: windows store: steam @@ -223437,7 +224086,7 @@ Gifted: installDir: Gifted: {} launch: - /Underhill.exe: + "/Underhill.exe": - when: - store: steam steam: @@ -223446,7 +224095,7 @@ Giga Girl: installDir: Giga Girl: {} launch: - /Gigagirl.exe: + "/Gigagirl.exe": - when: - bit: 32 os: windows @@ -223455,7 +224104,7 @@ Giga Girl: id: 474620 Giga Wrecker: files: - /Saves: + "/Saves": tags: - save when: @@ -223463,7 +224112,7 @@ Giga Wrecker: installDir: GigaWrecker: {} launch: - /GigaWrecker.exe: + "/GigaWrecker.exe": - when: - os: windows store: steam @@ -223481,7 +224130,7 @@ GigaBash: installDir: GigaBash: {} launch: - /GigaBash.exe: + "/GigaBash.exe": - when: - store: steam steam: @@ -223490,11 +224139,11 @@ Gigachess: installDir: Gigachess: {} launch: - /gigachess_steam_osx.app: + "/gigachess_steam_osx.app": - when: - os: mac store: steam - /gigachess_v1.26_steam.exe: + "/gigachess_v1.26_steam.exe": - when: - os: windows store: steam @@ -223502,22 +224151,23 @@ Gigachess: id: 415910 Gigantic: files: - /Gigantic/RxGame/Config: + "/Gigantic/RxGame/Config": tags: - config when: - - store: steam + - os: windows + store: steam installDir: Gigantic: {} launch: - /ArcSteamHelper.exe: + "/ArcSteamHelper.exe": - when: - store: steam steam: id: 327690 Gigantic Army: files: - /Option: + "/Option": tags: - config - save @@ -223526,19 +224176,19 @@ Gigantic Army: installDir: Gigantic Army: {} launch: - /GIGANTIC ARMY.exe: + "/GIGANTIC ARMY.exe": - when: - os: windows store: steam - /GiganticArmy: + "/GiganticArmy": - when: - os: linux store: steam steam: id: 278930 -'Gigantosaurus: The Game': +"Gigantosaurus: The Game": files: - /Gigantosaurus/Saved/Config/WindowsNoEditor/GameUserSettings.ini: + "/Gigantosaurus/Saved/Config/WindowsNoEditor/GameUserSettings.ini": tags: - config when: @@ -223546,7 +224196,7 @@ Gigantic Army: installDir: Gigantosaturus The Game: {} launch: - /Gigantosaurus.exe: + "/Gigantosaurus.exe": - when: - os: windows store: steam @@ -223558,32 +224208,32 @@ Gigapocalypse: installDir: Gigapocalypse: {} launch: - /Gigapocalypse.exe: + "/Gigapocalypse.exe": - when: - store: steam steam: id: 1543240 -Gil's Lucid Dreams: +"Gil's Lucid Dreams": installDir: - Gil's Lucid Dreams: {} + "Gil's Lucid Dreams": {} steam: id: 556260 Gilbert Goodmate and the Mushroom of Phungoria: installDir: Gilbert Goodmate: {} launch: - /Bin/Gilbert.exe: + "/Bin/Gilbert.exe": - when: - os: windows store: steam - workingDir: /Bin + workingDir: "/Bin" steam: id: 365730 Gilded: installDir: Gilded: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -223593,15 +224243,15 @@ Gilded Rails: installDir: Gilded Rails: {} launch: - /Gilded Rails.app/Contents/MacOS/Gilded Rails: + "/Gilded Rails.app/Contents/MacOS/Gilded Rails": - when: - os: mac store: steam - /GildedRails: + "/GildedRails": - when: - os: linux store: steam - /GildedRails.exe: + "/GildedRails.exe": - when: - os: windows store: steam @@ -223611,7 +224261,7 @@ Gimbal: installDir: Gimbal: {} launch: - /Gimbal.exe: + "/Gimbal.exe": - when: - store: steam steam: @@ -223620,15 +224270,15 @@ Gimbal Gravity: installDir: Gimbal Gravity: {} launch: - /Gimbal Gravity.app: + "/Gimbal Gravity.app": - when: - os: mac store: steam - /Gravity Game.exe: + "/Gravity Game.exe": - when: - os: windows store: steam - /Gravity Game.sh: + "/Gravity Game.sh": - when: - os: linux store: steam @@ -223638,7 +224288,7 @@ Gimel Dimension: installDir: Gimel Dimension: {} launch: - /Gimel Dimension.exe: + "/Gimel Dimension.exe": - when: - store: steam steam: @@ -223649,18 +224299,18 @@ Gimmick! Special Edition: installDir: Gimmick! Special Edition: {} launch: - /TRICK/TRICK.EXE: + "/TRICK/TRICK.EXE": - when: - os: windows store: steam - workingDir: /TRICK + workingDir: "/TRICK" steam: id: 2131800 Gin Rummy 3D Premium: installDir: Gin Rummy 3D Premium: {} launch: - /GinRummy3D.exe: + "/GinRummy3D.exe": - when: - os: windows store: steam @@ -223668,18 +224318,18 @@ Gin Rummy 3D Premium: id: 1178510 Ginga Force: files: - /Qute/GingaForce/display_setting.ini: + "/Qute/GingaForce/display_setting.ini": tags: - config when: - os: windows - /Qute/GingaForce/j4w_sav.bin: + "/Qute/GingaForce/j4w_sav.bin": tags: - config - save when: - os: windows - /Qute/GingaForce/j4w_storysav_###.bin: + "/Qute/GingaForce/j4w_storysav_###.bin": tags: - save when: @@ -223687,7 +224337,7 @@ Ginga Force: installDir: GingaForce: {} launch: - /GingaForce_x64_Release.exe: + "/GingaForce_x64_Release.exe": - when: - bit: 64 os: windows @@ -223699,15 +224349,15 @@ Ginga Kagekidan - 放課後くるーずっ!: Ginga Kagekidan - 放課後くるーずっ!: {} steam: id: 1128200 -'Ginger: Beyond the Crystal': +"Ginger: Beyond the Crystal": installDir: Ginger Beyond the Crystal: {} launch: - /ginger_btc.app: + "/ginger_btc.app": - when: - os: mac store: steam - /ginger_btc.exe: + "/ginger_btc.exe": - when: - os: windows store: steam @@ -223717,7 +224367,7 @@ Gingerbread Story: installDir: Gingerbread Story: {} launch: - /Ginger.exe: + "/Ginger.exe": - when: - os: windows store: steam @@ -223727,7 +224377,7 @@ Giraffe Town: installDir: Giraffe Town: {} launch: - /Giraffe Town.exe: + "/Giraffe Town.exe": - when: - bit: 64 os: windows @@ -223736,12 +224386,12 @@ Giraffe Town: id: 941480 Giraffe and Annika: files: - /Giraffe_and_Annika/Saved: + "/Giraffe_and_Annika/Saved": tags: - config when: - os: windows - /Giraffe_and_Annika/Saved/Config: + "/Giraffe_and_Annika/Saved/Config": tags: - save when: @@ -223749,7 +224399,7 @@ Giraffe and Annika: installDir: Giraffe and annika(ジラフとアンニカ): {} launch: - /Giraffe_and_Annika.exe: + "/Giraffe_and_Annika.exe": - when: - bit: 64 os: windows @@ -223760,19 +224410,19 @@ Girl Amazon Survival: installDir: Girl Amazon Survival: {} launch: - /Girl Amazon Survival.app/Contents/MacOS/Girl Amazon Survival: + "/Girl Amazon Survival.app/Contents/MacOS/Girl Amazon Survival": - when: - os: mac store: steam - /Girl Amazon Survival.exe: + "/Girl Amazon Survival.exe": - when: - os: windows store: steam - /Girl Amazon Survival.x86: + "/Girl Amazon Survival.x86": - when: - os: linux store: steam - /Girl Amazon Survival.x86_64: + "/Girl Amazon Survival.x86_64": - when: - os: linux store: steam @@ -223783,19 +224433,19 @@ Girl Blonde: Girl Blonde: {} steam: id: 726320 -'Girl Genius: Adventures In Castle Heterodyne': +"Girl Genius: Adventures In Castle Heterodyne": files: - /.config/unity3d/Saves.json: + "/.config/unity3d/Saves.json": tags: - save when: - os: mac - /Library/Application Support/Rain/Girl Genius/Saves.json: + "/Library/Application Support/Rain/Girl Genius/Saves.json": tags: - save when: - os: linux - /Rain/Girl Genius/Saves.json: + "/Rain/Girl Genius/Saves.json": tags: - save when: @@ -223808,15 +224458,15 @@ Girl Blonde: installDir: Girl Genius Adventures In Castle Heterodyne: {} launch: - /Girl Genius.exe: + "/Girl Genius.exe": - when: - os: windows store: steam - /GirlGenius.app: + "/GirlGenius.app": - when: - os: mac store: steam - /GirlGenius.x86_64: + "/GirlGenius.x86_64": - when: - os: linux store: steam @@ -223826,7 +224476,7 @@ Girl Kill Zombies: installDir: Girl Kill Zombies: {} launch: - /Girl Kill Zombies.exe: + "/Girl Kill Zombies.exe": - when: - store: steam steam: @@ -223835,11 +224485,11 @@ Girl Rugby Dash: installDir: Girl Rugby Dash: {} launch: - /Girl Rugby Dash.app/Contents/MacOS/Girl Rugby Dash: + "/Girl Rugby Dash.app/Contents/MacOS/Girl Rugby Dash": - when: - os: mac store: steam - /Girl Rugby Dash.exe: + "/Girl Rugby Dash.exe": - when: - os: windows store: steam @@ -223849,7 +224499,7 @@ Girl X: installDir: Girl X: {} launch: - /GirlX.exe: + "/GirlX.exe": - when: - store: steam steam: @@ -223858,7 +224508,7 @@ Girl X Mushrooms: installDir: Girl X Mushrooms(少女X蘑菇): {} launch: - /Girl X Mushrooms.exe: + "/Girl X Mushrooms.exe": - when: - os: windows store: steam @@ -223868,7 +224518,7 @@ Girl friend simulator: installDir: GFS: {} launch: - /GirlFriendSimulator.exe: + "/GirlFriendSimulator.exe": - when: - os: windows store: steam @@ -223881,16 +224531,16 @@ Girl with a big SWORD: installDir: Girl with a big SWORD: {} launch: - /Game: + "/Game": - when: - os: linux store: steam - /Game.app: + "/Game.app": - when: - os: mac store: steam - /Game.exe: - - arguments: '--in-process-gpu' + "/Game.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam @@ -223900,7 +224550,7 @@ Girlfriend Cards: installDir: GirlfriendCards: {} launch: - /GirlfriendCards.exe: + "/GirlfriendCards.exe": - when: - os: windows store: steam @@ -223915,20 +224565,20 @@ Girlfriend Rescue: installDir: Girlfriend Rescue: {} launch: - /GirlfriendRescue.exe: + "/GirlfriendRescue.exe": - when: - os: windows store: steam steam: id: 332400 -Girlfriend's Sister: +"Girlfriend's Sister": steam: id: 749330 Girls: installDir: Girls: {} launch: - /Girls.exe: + "/Girls.exe": - when: - bit: 64 os: windows @@ -223939,11 +224589,11 @@ Girls & Dungeons 2: installDir: Girls & Dungeons 2: {} launch: - /Game.app: + "/Game.app": - when: - os: mac store: steam - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -223953,15 +224603,15 @@ Girls & sweets: installDir: Girls & sweets: {} launch: - /TwoSisProject.app: + "/TwoSisProject.app": - when: - os: mac store: steam - /TwoSisProject.exe: + "/TwoSisProject.exe": - when: - os: windows store: steam - /TwoSisProject.sh: + "/TwoSisProject.sh": - when: - os: linux store: steam @@ -223971,7 +224621,7 @@ Girls Dance: installDir: Girls dance: {} launch: - /girls dance.exe: + "/girls dance.exe": - when: - bit: 64 os: windows @@ -223987,7 +224637,7 @@ Girls Free: installDir: Girls Free: {} launch: - /Girls Free.exe: + "/Girls Free.exe": - when: - bit: 64 os: windows @@ -223996,7 +224646,7 @@ Girls Free: id: 974470 Girls Like Robots: files: - /userdata//263460/remote/MyFile.dat: + "/userdata//263460/remote/MyFile.dat": tags: - save when: @@ -224005,15 +224655,15 @@ Girls Like Robots: installDir: GirlsLikeRobots: {} launch: - /GirlsLikeRobots.app/Contents/MacOS/GirlsLikeRobots: + "/GirlsLikeRobots.app/Contents/MacOS/GirlsLikeRobots": - when: - os: mac store: steam - /GirlsLikeRobots.exe: + "/GirlsLikeRobots.exe": - when: - os: windows store: steam - /GirlsLikeRobots.x86: + "/GirlsLikeRobots.x86": - when: - os: linux store: steam @@ -224032,7 +224682,7 @@ Girls and Dungeons: installDir: Girls and Dungeons: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -224042,8 +224692,8 @@ Girls and Quiz: installDir: Girls and Quiz: {} launch: - /nw.exe: - - arguments: '--in-process-gpu' + "/nw.exe": + - arguments: "--in-process-gpu" when: - store: steam steam: @@ -224052,8 +224702,8 @@ Girls and Tests: installDir: Girls and Tests: {} launch: - /nw.exe: - - arguments: '--in-process-gpu' + "/nw.exe": + - arguments: "--in-process-gpu" when: - store: steam steam: @@ -224062,16 +224712,16 @@ Girls on the beach: installDir: Girls on the beach: {} launch: - /girls.exe: + "/girls.exe": - when: - store: steam steam: id: 1123790 -Girls' civilization: +"Girls' civilization": installDir: GirlsCivilization: {} launch: - /Gciv21V.exe: + "/Gciv21V.exe": - when: - bit: 64 os: windows @@ -224080,19 +224730,19 @@ Girls' civilization: id: 960740 Gish: files: - /.gish: + "/.gish": tags: - config - save when: - os: linux - /Library/Application Support/Gish: + "/Library/Application Support/Gish": tags: - config - save when: - os: mac - /Gish: + "/Gish": tags: - config - save @@ -224101,11 +224751,11 @@ Gish: installDir: Gish: {} launch: - /Gish.app: + "/Gish.app": - when: - os: mac store: steam - /gish.exe: + "/gish.exe": - when: - os: windows store: steam @@ -224115,12 +224765,12 @@ Git Gud or Get Rekt: installDir: Git Gud or Git Rekt: {} launch: - /main: + "/main": - when: - bit: 64 os: linux store: steam - /main.exe: + "/main.exe": - when: - bit: 64 os: windows @@ -224131,7 +224781,7 @@ Give It Up! Plus: installDir: Give It Up!: {} launch: - /Give It Up! Plus.exe: + "/Give It Up! Plus.exe": - when: - os: windows store: steam @@ -224141,7 +224791,7 @@ Give Me Your Coins: installDir: GiveMeYourCoins: {} launch: - /GiveMeYourCoins.exe: + "/GiveMeYourCoins.exe": - when: - bit: 64 os: windows @@ -224152,7 +224802,7 @@ Give Up The Dupe: installDir: GiveUpTheDupe: {} launch: - /game.exe: + "/game.exe": - when: - bit: 64 os: windows @@ -224164,12 +224814,12 @@ Give an Imp a Chance!: id: 1076520 Gizmo: files: - /GIZMO_GAME/Saved/Config/WindowsNoEditor: + "/GIZMO_GAME/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /GIZMO_GAME/Saved/SaveGames: + "/GIZMO_GAME/Saved/SaveGames": tags: - save when: @@ -224177,28 +224827,28 @@ Gizmo: installDir: Gizmo: {} launch: - /GIZMO_GAME.exe: + "/GIZMO_GAME.exe": - when: - bit: 64 os: windows store: steam steam: id: 979260 -'Gizmos: Steampunk Nonograms': +"Gizmos: Steampunk Nonograms": installDir: Gizmos Steampunk Nonograms: {} launch: - /Gizmos.exe: + "/Gizmos.exe": - when: - os: windows store: steam steam: id: 1207310 -Gjana's World: +"Gjana's World": installDir: - Gjana's World: {} + "Gjana's World": {} launch: - /gjanasworld.exe: + "/gjanasworld.exe": - when: - store: steam steam: @@ -224210,17 +224860,17 @@ Glacial: installDir: Glacial: {} launch: - /Glacial.exe: + "/Glacial.exe": - when: - os: windows store: steam steam: id: 1042310 -'Glacier 3: The Meltdown': +"Glacier 3: The Meltdown": installDir: Glacier 3 The Meltdown: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -224230,7 +224880,7 @@ Glad Valakas Simulator: installDir: GLAD VALAKAS SIMULATOR: {} launch: - /GVS.exe: + "/GVS.exe": - when: - store: steam steam: @@ -224239,7 +224889,7 @@ Glad Valakas Tower Defence: installDir: GLAD VALAKAS TOWER DEFENCE: {} launch: - /GVTD.exe: + "/GVTD.exe": - when: - store: steam steam: @@ -224248,17 +224898,20 @@ Glad Valakas Tower Defence 2: installDir: GLAD VALAKAS TOWER DEFENCE 2: {} launch: - /GVTD2.exe: + "/GVTD2.exe": - when: - store: steam steam: id: 1025240 -'Glad Valakas: Cyberban': +"Glad Valakas: Cyberban": installDir: GladValakas_Cyberban: {} launch: - /GladValakas - Cyberban.exe: + "/GladValakas - Cyberban.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam @@ -224268,20 +224921,20 @@ Gladiabots: installDir: Gladiabots: {} launch: - /Gladiabots.app: + "/Gladiabots.app": - when: - os: mac store: steam - /Gladiabots.exe: + "/Gladiabots.exe": - when: - os: windows store: steam - /Gladiabots.x86: + "/Gladiabots.x86": - when: - bit: 32 os: linux store: steam - /Gladiabots.x86_64: + "/Gladiabots.x86_64": - when: - bit: 64 os: linux @@ -224292,7 +224945,7 @@ Gladiator School: installDir: Gladiator School: {} launch: - /gladiatorschool.exe: + "/gladiatorschool.exe": - when: - os: windows store: steam @@ -224302,48 +224955,48 @@ Gladiator Trainer: installDir: Gladiator Trainer: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam steam: id: 527990 -'Gladiator: Blades of Fury': +"Gladiator: Blades of Fury": installDir: Windows_Content: {} launch: - /Blades of Fury.exe: + "/Blades of Fury.exe": - when: - os: windows store: steam steam: id: 1007490 -'Gladiator: Road to the Colosseum': +"Gladiator: Road to the Colosseum": installDir: Gladiator Road to the Colosseum: {} launch: - /Gladiator Road to the Colosseum.app/Contents/MacOS/Gladiator Road to the Colosseum: + "/Gladiator Road to the Colosseum.app/Contents/MacOS/Gladiator Road to the Colosseum": - when: - os: mac store: steam - /GladiatorRoadToTheColosseum: + "/GladiatorRoadToTheColosseum": - when: - os: linux store: steam - /GladiatorRoadToTheColosseum.exe: + "/GladiatorRoadToTheColosseum.exe": - when: - os: windows store: steam steam: id: 1097690 -'Gladiator: Sword of Vengeance': +"Gladiator: Sword of Vengeance": files: - /GladiatorSoV: + "/GladiatorSoV": tags: - config when: - os: windows - /GladiatorSoV/Save: + "/GladiatorSoV/Save": tags: - save when: @@ -224351,24 +225004,24 @@ Gladiator Trainer: installDir: Gladiator Sword of Vengeance: {} launch: - /IGladiator.exe: + "/IGladiator.exe": - when: - bit: 32 os: windows store: steam steam: id: 577580 -'Gladiators Online: Death Before Dishonor': +"Gladiators Online: Death Before Dishonor": installDir: Gladiators Online Death Before Dishonor: {} launch: - /gladiator.app: - - arguments: '-steamversion' + "/gladiator.app": + - arguments: "-steamversion" when: - os: mac store: steam - /gladiator.exe: - - arguments: '-steamversion' + "/gladiator.exe": + - arguments: "-steamversion" when: - os: windows store: steam @@ -224378,21 +225031,21 @@ Gladiators of the Arena: installDir: Gladiators of the arena: {} launch: - /Binaries/Win32/GOTA.exe: + "/Binaries/Win32/GOTA.exe": - when: - bit: 32 os: windows store: steam steam: id: 791740 -'Gladiators: Ludus Manager': +"Gladiators: Ludus Manager": steam: id: 1016020 Gladio: installDir: gladio_v2: {} launch: - /gladio_v2.exe: + "/gladio_v2.exe": - when: - bit: 64 os: windows @@ -224409,15 +225062,15 @@ Glaive: Glaive: {} steam: id: 505680 -'Glaive: Brick Breaker': +"Glaive: Brick Breaker": installDir: Glaive Brick Breaker: {} launch: - /Glaive Brick Breaker.exe: + "/Glaive Brick Breaker.exe": - when: - os: windows store: steam - /glaive.app/Contents/MacOS/glaive: + "/glaive.app/Contents/MacOS/glaive": - when: - os: mac store: steam @@ -224430,13 +225083,13 @@ GlaiveZ: id: 1153920 Glare: files: - /.config/unity3d/Phobic Studios/Glare: + "/.config/unity3d/Phobic Studios/Glare": tags: - config - save when: - os: linux - /userdata//243140: + "/userdata//243140": tags: - save when: @@ -224444,15 +225097,15 @@ Glare: installDir: Glare: {} launch: - /Glare: + "/Glare": - when: - os: linux store: steam - /Glare.app: + "/Glare.app": - when: - os: mac store: steam - /Glare.exe: + "/Glare.exe": - when: - os: windows store: steam @@ -224466,27 +225119,27 @@ Glare1more: installDir: Glare1more: {} launch: - /Glare_more.exe: + "/Glare_more.exe": - when: - store: steam steam: id: 834150 -'Glass City: The Dust': +"Glass City: The Dust": steam: id: 575040 Glass Masquerade: files: - /Saves: + "/Saves": tags: - save when: - os: windows - /settings.txt: + "/settings.txt": tags: - config when: - os: windows - /AppData/LocalLow/Onyx Lute/Glass Masquerade_ Origins/Saves: + "/AppData/LocalLow/Onyx Lute/Glass Masquerade_ Origins/Saves": tags: - save when: @@ -224494,28 +225147,28 @@ Glass Masquerade: installDir: Glass Masquerade: {} launch: - /Glass.app/Contents/MacOS/Glass: + "/Glass.app/Contents/MacOS/Glass": - when: - os: mac store: steam - /Glass.exe: + "/Glass.exe": - when: - os: windows store: steam registry: - 'HKEY_CURRENT_USER/Software/Onyx Lute/Glass Masquerade: Origins': + "HKEY_CURRENT_USER/Software/Onyx Lute/Glass Masquerade: Origins": tags: - config steam: id: 511470 -'Glass Masquerade 2: Illusions': +"Glass Masquerade 2: Illusions": files: - /Saves: + "/Saves": tags: - save when: - os: windows - /settings.txt: + "/settings.txt": tags: - config when: @@ -224529,23 +225182,23 @@ Glass Masquerade: installDir: Glass Masquerade 2: {} launch: - /Illusions.app/Contents/MacOS/Illusions: + "/Illusions.app/Contents/MacOS/Illusions": - when: - os: mac store: steam - /Illusions.exe: + "/Illusions.exe": - when: - os: windows store: steam registry: - 'HKEY_CURRENT_USER/Software/Onyx Lute/Glass Masquerade 2: Illusions': + "HKEY_CURRENT_USER/Software/Onyx Lute/Glass Masquerade 2: Illusions": tags: - config steam: id: 935880 -'Glass Masquerade 3: Honeylines': +"Glass Masquerade 3: Honeylines": files: - /AppData/LocalLow/Onyx Lute/Glass Masquerade 3/ID_number: + "/AppData/LocalLow/Onyx Lute/Glass Masquerade 3/ID_number": tags: - save when: @@ -224553,25 +225206,25 @@ Glass Masquerade: installDir: Glass Masquerade 3: {} launch: - /Glass Masquerade 3.app/Contents/MacOS/Glass Masquerade 3: + "/Glass Masquerade 3.app/Contents/MacOS/Glass Masquerade 3": - when: - os: mac store: steam - /Glass Masquerade 3.exe: + "/Glass Masquerade 3.exe": - when: - os: windows store: steam steam: id: 1536980 -'Glass Painting: Winter Art': +"Glass Painting: Winter Art": installDir: Winter Windows: {} launch: - /Glass Painting - Winter Art.app/Contents/MacOS/Glass Painting - Winter Art: + "/Glass Painting - Winter Art.app/Contents/MacOS/Glass Painting - Winter Art": - when: - os: mac store: steam - /Glass Painting - Winter Art.exe: + "/Glass Painting - Winter Art.exe": - when: - os: windows store: steam @@ -224581,12 +225234,12 @@ Glass Wing: installDir: Glass Wing: {} launch: - '/Glass Wing [Eager Passion LLC].exe': + "/Glass Wing [Eager Passion LLC].exe": - when: - bit: 64 os: windows store: steam - /SET_CONTROLS.exe: + "/SET_CONTROLS.exe": - when: - store: steam steam: @@ -224595,7 +225248,7 @@ GlassSmash: installDir: GlassSmash: {} launch: - /GlassSmash.exe: + "/GlassSmash.exe": - when: - os: windows store: steam @@ -224605,8 +225258,8 @@ Glassteroids: installDir: Glassteroids: {} launch: - /Glassteroids.exe: - - arguments: '-nohmd' + "/Glassteroids.exe": + - arguments: "-nohmd" when: - bit: 64 os: windows @@ -224617,7 +225270,7 @@ Glasswinged Ascension: installDir: Glasswinged Ascension: {} launch: - /GlasswingedAscension.exe: + "/GlasswingedAscension.exe": - when: - os: windows store: steam @@ -224627,7 +225280,7 @@ Gleamlight: installDir: Gleamlight: {} launch: - /Gleamlight.exe: + "/Gleamlight.exe": - when: - os: windows store: steam @@ -224635,7 +225288,7 @@ Gleamlight: id: 1199370 Gleaner Heights: files: - /Gleaner_Heights: + "/Gleaner_Heights": tags: - save when: @@ -224643,17 +225296,17 @@ Gleaner Heights: installDir: Gleaner Heights: {} launch: - /Gleaner_Heights.exe: + "/Gleaner_Heights.exe": - when: - os: windows store: steam - /assets/steamrun.sh: + "/assets/steamrun.sh": - when: - os: linux store: steam steam: id: 786580 -Glick's Cat Simulator: +"Glick's Cat Simulator": steam: id: 723360 Glider Island: @@ -224668,7 +225321,7 @@ Glista: installDir: Glista: {} launch: - /glista.bat: + "/glista.bat": - when: - bit: 64 os: windows @@ -224679,8 +225332,8 @@ Glitch: installDir: Glitch: {} launch: - /Glitch.exe: - - arguments: '-windowed' + "/Glitch.exe": + - arguments: "-windowed" when: - store: steam steam: @@ -224689,19 +225342,19 @@ Glitch Arena: installDir: Glitch Arena: {} launch: - /Glitch_steam.exe: + "/Glitch_steam.exe": - when: - bit: 64 os: windows store: steam - workingDir: /Glitch_steam/Binaries/Win64 + workingDir: "/Glitch_steam/Binaries/Win64" steam: id: 1083800 Glitch Pets: installDir: GlitchPets: {} launch: - /GP_UE5.exe: + "/GP_UE5.exe": - when: - bit: 64 os: windows @@ -224712,7 +225365,7 @@ Glitch Puzzle: installDir: Glitch Puzzle: {} launch: - /Glitch Puzzle.exe: + "/Glitch Puzzle.exe": - when: - os: windows store: steam @@ -224721,24 +225374,24 @@ Glitch Puzzle: Glitch Simulator 2018: steam: id: 702090 -Glitch's Trip: +"Glitch's Trip": installDir: - Glitch's Trip: {} + "Glitch's Trip": {} launch: - /Glitchs Trip.app: + "/Glitchs Trip.app": - when: - os: mac store: steam - /Glitchs Trip.exe: + "/Glitchs Trip.exe": - when: - os: windows store: steam - /Glitchs Trip.x86: + "/Glitchs Trip.x86": - when: - bit: 32 os: linux store: steam - /Glitchs Trip.x86_64: + "/Glitchs Trip.x86_64": - when: - bit: 64 os: linux @@ -224749,16 +225402,16 @@ Glitchangels: installDir: Glitchangels: {} launch: - /Glitchangels: + "/Glitchangels": - when: - bit: 64 os: linux store: steam - /Glitchangels.app/Contents/MacOS/Glitchangels: + "/Glitchangels.app/Contents/MacOS/Glitchangels": - when: - os: mac store: steam - /Glitchangels.exe: + "/Glitchangels.exe": - when: - bit: 64 os: windows @@ -224769,15 +225422,15 @@ Glitchball: installDir: Glitchball: {} launch: - /Glitchball.app/Contents/MacOS/build1: + "/Glitchball.app/Contents/MacOS/build1": - when: - os: mac store: steam - /Glitchball.exe: + "/Glitchball.exe": - when: - os: windows store: steam - /glitchball_linux.x86_64: + "/glitchball_linux.x86_64": - when: - os: linux store: steam @@ -224787,31 +225440,31 @@ Glitchbuster: installDir: Glitchbuster: {} launch: - /Glitchbuster.app: + "/Glitchbuster.app": - when: - os: mac store: steam - /glitchbuster: + "/glitchbuster": - when: - os: linux store: steam - /glitchbuster.exe: + "/glitchbuster.exe": - when: - os: windows store: steam steam: id: 661360 -'Glitchhikers: The Spaces Between': +"Glitchhikers: The Spaces Between": gog: id: 2129197835 installDir: Glitchhikers - The Spaces Between: {} launch: - /Glitchhikers.app: + "/Glitchhikers.app": - when: - os: mac store: steam - /Glitchhikers.exe: + "/Glitchhikers.exe": - when: - os: windows store: steam @@ -224823,7 +225476,7 @@ Glitchpunk: installDir: Glitchpunk: {} launch: - /Glitchpunk.exe: + "/Glitchpunk.exe": - when: - os: windows store: steam @@ -224833,11 +225486,11 @@ Glitchrunners: installDir: Glitchrunners: {} launch: - /Glitchrunners.app/Contents/MacOS/Glitchrunners.dmg: + "/Glitchrunners.app/Contents/MacOS/Glitchrunners.dmg": - when: - os: mac store: steam - /Glitchrunners.exe: + "/Glitchrunners.exe": - when: - os: windows store: steam @@ -224845,7 +225498,7 @@ Glitchrunners: id: 446870 Glitchspace: files: - /Space Budgie/Glitchspace: + "/Space Budgie/Glitchspace": tags: - config - save @@ -224854,20 +225507,20 @@ Glitchspace: installDir: Glitchspace: {} launch: - /glitchspace.app: + "/glitchspace.app": - when: - os: mac store: steam - /glitchspace.exe: + "/glitchspace.exe": - when: - os: windows store: steam - /glitchspace.x86: + "/glitchspace.x86": - when: - bit: 32 os: linux store: steam - /glitchspace.x86_64: + "/glitchspace.x86_64": - when: - bit: 64 os: linux @@ -224876,17 +225529,17 @@ Glitchspace: id: 290060 Glittermitten Grove: files: - /AppData/LocalLow/Mostly Tigerproof/Glittermitten Grove: + "/AppData/LocalLow/Mostly Tigerproof/Glittermitten Grove": tags: - save when: - os: windows - /unity3d/Mostly Tigerproof/Glittermitten Grove: + "/unity3d/Mostly Tigerproof/Glittermitten Grove": tags: - save when: - os: linux - /unity3d/Mostly Tigerproof/Glittermitten Grove/prefs: + "/unity3d/Mostly Tigerproof/Glittermitten Grove/prefs": tags: - config when: @@ -224894,20 +225547,20 @@ Glittermitten Grove: installDir: Glittermitten Grove: {} launch: - /gmg.app: + "/gmg.app": - when: - os: mac store: steam - /gmg.exe: + "/gmg.exe": - when: - os: windows store: steam - /gmg.x86: + "/gmg.x86": - when: - bit: 32 os: linux store: steam - /gmg.x86_64: + "/gmg.x86_64": - when: - bit: 64 os: linux @@ -224922,7 +225575,7 @@ Glo: installDir: Glo: {} launch: - /Glo.exe: + "/Glo.exe": - when: - os: windows store: steam @@ -224932,12 +225585,12 @@ GloGo: installDir: GloGo: {} launch: - /GloGo32.exe: + "/GloGo32.exe": - when: - bit: 32 os: windows store: steam - /GloGoDemo.exe: + "/GloGoDemo.exe": - when: - bit: 64 os: windows @@ -224948,7 +225601,7 @@ Global ATC Simulator: installDir: Global ATC Simulator: {} launch: - /GATC.exe: + "/GATC.exe": - when: - store: steam steam: @@ -224957,7 +225610,7 @@ Global Adventures: installDir: Global Adventures: {} launch: - /release/YYC3D.exe: + "/release/YYC3D.exe": - when: - store: steam steam: @@ -224966,7 +225619,7 @@ Global Aviation Dream: installDir: Global Aviation Dream: {} launch: - /Global Aviation Dream.exe: + "/Global Aviation Dream.exe": - when: - os: windows store: steam @@ -224976,12 +225629,12 @@ Global City: installDir: Global City: {} launch: - /City.exe: + "/City.exe": - when: - bit: 32 os: windows store: steam - /City64.exe: + "/City64.exe": - when: - bit: 64 os: windows @@ -224992,11 +225645,11 @@ Global Fortune: installDir: Global Fortune: {} launch: - /GlobalFortune.app: + "/GlobalFortune.app": - when: - os: mac store: steam - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -225006,32 +225659,32 @@ Global Infection: installDir: Global Infection: {} launch: - /Binaries/Win32/UDK.exe: + "/Binaries/Win32/UDK.exe": - when: - store: steam steam: id: 1060470 Global Operations: files: - /Globalops/profile: + "/Globalops/profile": tags: - config when: - os: windows -'Global Ops: Commando Libya': +"Global Ops: Commando Libya": installDir: Global Ops Commando Libya: {} launch: - /Binaries/GlobalOps.exe: + "/Binaries/GlobalOps.exe": - when: - store: steam steam: id: 200020 -'Global Outbreak: Doomsday Edition': +"Global Outbreak: Doomsday Edition": installDir: GlobalOutbreak: {} launch: - /GlobalOutbreak.exe: + "/GlobalOutbreak.exe": - when: - os: windows store: steam @@ -225041,7 +225694,7 @@ Global Soccer Manager: installDir: Global Soccer Manager: {} launch: - /manager.exe: + "/manager.exe": - when: - os: windows store: steam @@ -225051,7 +225704,7 @@ Global Soccer Manager 2017: installDir: Global Soccer Manager 2017: {} launch: - /manager17.exe: + "/manager17.exe": - when: - store: steam steam: @@ -225060,7 +225713,7 @@ Global Soccer Manager 2018: installDir: Global Soccer Manager 2018: {} launch: - /manager18.exe: + "/manager18.exe": - when: - store: steam steam: @@ -225069,7 +225722,7 @@ Global Soccer Manager 2019: installDir: Global Soccer Manager 2019: {} launch: - /manager19.exe: + "/manager19.exe": - when: - store: steam steam: @@ -225078,7 +225731,7 @@ GlobalMap Astro: installDir: GlobalMap_Astro: {} launch: - /GlobalMap_GS_Astro.exe: + "/GlobalMap_GS_Astro.exe": - when: - bit: 64 os: windows @@ -225089,7 +225742,7 @@ Globat Pixels: installDir: Globat Pixels: {} launch: - /Globat Pixels.exe: + "/Globat Pixels.exe": - when: - store: steam steam: @@ -225098,11 +225751,11 @@ Globe Rush: installDir: MiesIlmanHousuja2: {} launch: - /GlobeRush.app: + "/GlobeRush.app": - when: - os: mac store: steam - /GlobeRush.exe: + "/GlobeRush.exe": - when: - os: windows store: steam @@ -225112,34 +225765,34 @@ Globesweeper: installDir: Globesweeper: {} launch: - /Globesweeper.app: + "/Globesweeper.app": - when: - os: mac store: steam - /Globesweeper.exe: + "/Globesweeper.exe": - when: - os: windows store: steam - /Globesweeper.x86_64: + "/Globesweeper.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 982220 -'Globesweeper: Hex Puzzler': +"Globesweeper: Hex Puzzler": installDir: Globesweeper Hex Puzzler: {} launch: - /Globesweeper Hex Puzzler.app: + "/Globesweeper Hex Puzzler.app": - when: - os: mac store: steam - /Globesweeper Hex Puzzler.exe: + "/Globesweeper Hex Puzzler.exe": - when: - os: windows store: steam - /Globesweeper Hex Puzzler.x86_64: + "/Globesweeper Hex Puzzler.x86_64": - when: - bit: 64 os: linux @@ -225148,7 +225801,7 @@ Globesweeper: id: 1121530 Gloom: files: - /gloom: + "/gloom": tags: - config - save @@ -225157,23 +225810,23 @@ Gloom: installDir: Gloom: {} launch: - /Gloom.app/Contents/MacOS/Mac_Runner: + "/Gloom.app/Contents/MacOS/Mac_Runner": - when: - os: mac store: steam - /gloom.exe: + "/gloom.exe": - when: - os: windows store: steam - /run.sh: + "/run.sh": - when: - os: linux store: steam steam: id: 619280 -'Gloom: Digital Edition': +"Gloom: Digital Edition": files: - /AppData/LocalLow/SkyShip Studios/Gloom/*Settings.json: + "/AppData/LocalLow/SkyShip Studios/Gloom/*Settings.json": tags: - config when: @@ -225181,11 +225834,11 @@ Gloom: installDir: Gloom: {} launch: - /Gloom.app: + "/Gloom.app": - when: - os: mac store: steam - /Gloom.exe: + "/Gloom.exe": - when: - os: windows store: steam @@ -225193,12 +225846,12 @@ Gloom: id: 766040 Gloomgrave: files: - /Godot/app_userdata/Gloomgrave/*.scn: + "/Godot/app_userdata/Gloomgrave/*.scn": tags: - save when: - os: windows - /Godot/app_userdata/Gloomgrave/settings.cfg: + "/Godot/app_userdata/Gloomgrave/settings.cfg": tags: - config when: @@ -225206,7 +225859,7 @@ Gloomgrave: installDir: Gloomgrave: {} launch: - /Gloomgrave.exe: + "/Gloomgrave.exe": - when: - bit: 64 os: windows @@ -225215,12 +225868,12 @@ Gloomgrave: id: 1907000 Gloomhaven: files: - /AppData/LocalLow/FlamingFowlStudios/Gloomhaven/GloomSaves: + "/AppData/LocalLow/FlamingFowlStudios/Gloomhaven/GloomSaves": tags: - save when: - os: windows - /AppData/LocalLow/FlamingFowlStudios/Gloomhaven/GloomSaves/GlobalData.dat: + "/AppData/LocalLow/FlamingFowlStudios/Gloomhaven/GloomSaves/GlobalData.dat": tags: - config when: @@ -225235,11 +225888,11 @@ Gloomhaven: installDir: Gloomhaven: {} launch: - /GH.exe: + "/GH.exe": - when: - os: windows store: steam - /GH_OSX.app: + "/GH_OSX.app": - when: - os: mac store: steam @@ -225251,12 +225904,12 @@ Gloomhaven: id: 780290 Gloomwood: files: - /Saves: + "/Saves": tags: - save when: - os: windows - /user.ini: + "/user.ini": tags: - config when: @@ -225271,26 +225924,26 @@ Gloomwood: installDir: Gloomwood: {} launch: - /Gloomwood.exe: + "/Gloomwood.exe": - when: - store: steam steam: id: 1150760 -'Glorch''s Great Escape: Walking is for Chumps': +"Glorch's Great Escape: Walking is for Chumps": installDir: - Glorch's Great Escape: {} + "Glorch's Great Escape": {} launch: - /Glorch.exe: + "/Glorch.exe": - when: - os: windows store: steam steam: id: 549790 -'Gloria Sinica: Han Xiongnu Wars': +"Gloria Sinica: Han Xiongnu Wars": installDir: Gloria Sinica Han Xiongnu Wars: {} launch: - /HanXiongnuWars.exe: + "/HanXiongnuWars.exe": - when: - os: windows store: steam @@ -225303,8 +225956,8 @@ Gloria Victis: installDir: Gloria Victis: {} launch: - /gv.exe: - - arguments: '-runUsingSteam' + "/gv.exe": + - arguments: "-runUsingSteam" when: - store: steam steam: @@ -225313,7 +225966,7 @@ Glorious Companions: installDir: Glorious Companions: {} launch: - /Glorious Companions.exe: + "/Glorious Companions.exe": - when: - os: windows store: steam @@ -225324,9 +225977,9 @@ Glorious Noon: Glorious Noon: {} steam: id: 724870 -'Glorkian Warrior: The Trials of Glork': +"Glorkian Warrior: The Trials of Glork": files: - /com.pixeljam.trialsOfGlorkMac/Local Store/trialsOfGlork.txt: + "/com.pixeljam.trialsOfGlorkMac/Local Store/trialsOfGlork.txt": tags: - save when: @@ -225334,11 +225987,11 @@ Glorious Noon: installDir: Glorkian Warrior The Trials Of Glork: {} launch: - /GLORK.app: + "/GLORK.app": - when: - os: mac store: steam - /Glorkian Warrior.exe: + "/Glorkian Warrior.exe": - when: - os: windows store: steam @@ -225348,12 +226001,12 @@ Glory & Honor: installDir: Glory & Honor: {} launch: - /glory_honor.exe: + "/glory_honor.exe": - when: - bit: 64 os: windows store: steam - /testing_GH.x86_64: + "/testing_GH.x86_64": - when: - bit: 64 os: linux @@ -225364,20 +226017,20 @@ Glory Kingdom: installDir: Glory Kingdom: {} launch: - /GloryKingdom.exe: + "/GloryKingdom.exe": - when: - os: windows store: steam steam: id: 435050 -'Glory Warrior: Lord of Darkness': +"Glory Warrior: Lord of Darkness": steam: id: 463140 Glory by Example: installDir: Glory by Example: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -225387,7 +226040,7 @@ Glory of the Self-Styled Diehard Girl: installDir: Glory of the Self-Styled Diehard girl: {} launch: - /game.eXe: + "/game.eXe": - when: - os: windows store: steam @@ -225395,19 +226048,19 @@ Glory of the Self-Styled Diehard Girl: id: 762920 Glover: files: - /Data/*.001: + "/Data/*.001": tags: - save when: - os: windows - /Glover.cfg: + "/Glover.cfg": tags: - config when: - os: windows Glover (2022): files: - /Piko Interactive/Glover/config.ini: + "/Piko Interactive/Glover/config.ini": tags: - config when: @@ -225422,7 +226075,7 @@ Glow: installDir: Glow: {} launch: - /Glow.exe: + "/Glow.exe": - when: - os: windows store: steam @@ -225432,12 +226085,12 @@ Glow Ball - Not a Billiard Puzzle Game: installDir: Glow Ball - Not A Billiard Puzzle Game: {} launch: - /GBNABPG32.exe: + "/GBNABPG32.exe": - when: - bit: 32 os: windows store: steam - /GBNABPG64.exe: + "/GBNABPG64.exe": - when: - bit: 64 os: windows @@ -225448,12 +226101,12 @@ Glow Ball - The Billiard Puzzle Game: installDir: Glow Ball - The billiard puzzle game: {} launch: - /GlowBall.exe: + "/GlowBall.exe": - when: - bit: 32 os: windows store: steam - /GlowBall.x86_64: + "/GlowBall.x86_64": - when: - os: linux store: steam @@ -225463,15 +226116,15 @@ Glow Chess: installDir: Glow Chess: {} launch: - /GlowChess.app: + "/GlowChess.app": - when: - os: mac store: steam - /GlowChess.exe: + "/GlowChess.exe": - when: - os: windows store: steam - /GlowChess.sh: + "/GlowChess.sh": - when: - os: linux store: steam @@ -225481,11 +226134,11 @@ Glowfish: installDir: Glowfish: {} launch: - /Glowfish.app: + "/Glowfish.app": - when: - os: mac store: steam - /Glowfish.exe: + "/Glowfish.exe": - when: - os: windows store: steam @@ -225498,7 +226151,7 @@ Gluon: installDir: Gluon: {} launch: - /Game_Release.exe: + "/Game_Release.exe": - when: - os: windows store: steam @@ -225508,7 +226161,7 @@ Glutton Man: installDir: glutton man: {} launch: - /gluttonman.exe: + "/gluttonman.exe": - when: - os: windows store: steam @@ -225516,12 +226169,12 @@ Glutton Man: id: 792080 Glyph: files: - /AppData/LocalLow/Bolverk Games/Glyph PC/*.bin: + "/AppData/LocalLow/Bolverk Games/Glyph PC/*.bin": tags: - config when: - os: windows - /AppData/LocalLow/Bolverk Games/Glyph PC/*.save: + "/AppData/LocalLow/Bolverk Games/Glyph PC/*.save": tags: - save when: @@ -225530,11 +226183,11 @@ Glyph: Glyph: {} steam: id: 1190530 -'Glyph-Bound: Kotodama': +"Glyph-Bound: Kotodama": installDir: Glyph-Bound: {} launch: - /Glyph-Bound Alpha.exe: + "/Glyph-Bound Alpha.exe": - when: - store: steam steam: @@ -225543,13 +226196,13 @@ Glyphs Apprentice: installDir: Glyphs Apprentice: {} launch: - /jre/bin/java: - - arguments: '-jar ga-1.1.jar' + "/jre/bin/java": + - arguments: "-jar ga-1.1.jar" when: - os: mac store: steam - /jre/bin/javaw.exe: - - arguments: '-jar ga-1.1.jar' + "/jre/bin/javaw.exe": + - arguments: "-jar ga-1.1.jar" when: - os: windows store: steam @@ -225559,7 +226212,7 @@ Glö Phlox: installDir: GloPhlox: {} launch: - /Glo Phlox.exe: + "/Glo Phlox.exe": - when: - bit: 64 os: windows @@ -225570,18 +226223,18 @@ Glück Auf: installDir: GlueckAuf: {} launch: - /GlueckAuf.exe: + "/GlueckAuf.exe": - when: - os: windows store: steam steam: id: 392700 -Gnarltoof's Revenge: +"Gnarltoof's Revenge": steam: id: 486340 Gnomancer: files: - /AppData/LocalLow/ProjectorGames/Gnomancer: + "/AppData/LocalLow/ProjectorGames/Gnomancer": tags: - save when: @@ -225589,7 +226242,7 @@ Gnomancer: installDir: Gnomancer: {} launch: - /Gnomancer.exe: + "/Gnomancer.exe": - when: - store: steam steam: @@ -225598,7 +226251,7 @@ Gnome Light: installDir: Gnome Light: {} launch: - /Gnome Light.exe: + "/Gnome Light.exe": - when: - store: steam steam: @@ -225606,7 +226259,7 @@ Gnome Light: Gnome Rampage: steam: id: 1148860 -'Gnomelings: Migration': +"Gnomelings: Migration": installDir: Gnomelings Migration: {} steam: @@ -225618,7 +226271,7 @@ Gnomes Garden: installDir: Gnomes Garden: {} launch: - /Gnomes Garden.exe: + "/Gnomes Garden.exe": - when: - os: windows store: steam @@ -225628,17 +226281,17 @@ Gnomes Garden 2: installDir: Gnomes Garden 2: {} launch: - /Gnomes Garden 2.exe: + "/Gnomes Garden 2.exe": - when: - os: windows store: steam steam: id: 449170 -'Gnomes Garden 3: The Thief of Castles': +"Gnomes Garden 3: The Thief of Castles": installDir: Gnomes Garden 3 The thief of castles: {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: @@ -225647,7 +226300,7 @@ Gnomes Garden Lost King: installDir: Gnomes Garden Lost King: {} launch: - /Lost King.exe: + "/Lost King.exe": - when: - store: steam steam: @@ -225656,35 +226309,35 @@ Gnomes Garden New home: installDir: Gnomes Garden New Home: {} launch: - /GnomesGarden.exe: + "/GnomesGarden.exe": - when: - os: windows store: steam steam: id: 686520 -'Gnomes Garden: Christmas Story': +"Gnomes Garden: Christmas Story": installDir: Gnomes Garden Christmas Story: {} launch: - /Gnomes Garden Christmas Story.app: + "/Gnomes Garden Christmas Story.app": - when: - os: mac store: steam - /Gnomes Garden Christmas Story.exe: + "/Gnomes Garden Christmas Story.exe": - when: - os: windows store: steam steam: id: 940800 -'Gnomes Garden: Halloween': +"Gnomes Garden: Halloween": installDir: Gnomes Garden Halloween: {} launch: - /Gnomes Garden Halloween.app: + "/Gnomes Garden Halloween.app": - when: - os: mac store: steam - /Gnomes Garden Halloween.exe: + "/Gnomes Garden Halloween.exe": - when: - os: windows store: steam @@ -225694,24 +226347,24 @@ Gnomes Vs. Fairies: installDir: GnomesVsFairies: {} launch: - /GnomesVsFairies.app: + "/GnomesVsFairies.app": - when: - bit: 64 os: mac store: steam - /GnomesVsFairies.exe: - - arguments: '-vrmode none -show-screen-selector' + "/GnomesVsFairies.exe": + - arguments: "-vrmode none -show-screen-selector" when: - os: windows store: steam - /GnomesVsFairies.x86: - - arguments: '-vrmode none' + "/GnomesVsFairies.x86": + - arguments: "-vrmode none" when: - bit: 32 os: linux store: steam - /GnomesVsFairies.x86_64: - - arguments: '-vrmode none' + "/GnomesVsFairies.x86_64": + - arguments: "-vrmode none" when: - bit: 64 os: linux @@ -225720,32 +226373,32 @@ Gnomes Vs. Fairies: id: 406220 Gnomoria: files: - /Library/Application Support/Gnomoria/Worlds: + "/Library/Application Support/Gnomoria/Worlds": tags: - save when: - os: mac - /Library/Application Support/Gnomoria/settings.ini: + "/Library/Application Support/Gnomoria/settings.ini": tags: - config when: - os: mac - /My Games/Gnomoria/Worlds: + "/My Games/Gnomoria/Worlds": tags: - save when: - os: windows - /My Games/Gnomoria/settings.ini: + "/My Games/Gnomoria/settings.ini": tags: - config when: - os: windows - /Gnomoria/Worlds: + "/Gnomoria/Worlds": tags: - save when: - os: linux - /Gnomoria/settings.ini: + "/Gnomoria/settings.ini": tags: - config when: @@ -225755,16 +226408,16 @@ Gnomoria: installDir: Gnomoria: {} launch: - /Gnomoria: + "/Gnomoria": - when: - os: linux store: steam - /Gnomoria.app/Contents/MacOS/Gnomoria: + "/Gnomoria.app/Contents/MacOS/Gnomoria": - when: - os: mac store: steam - /gnomoria.exe: - - arguments: '-console' + "/gnomoria.exe": + - arguments: "-console" when: - os: windows store: steam @@ -225772,22 +226425,22 @@ Gnomoria: id: 224500 Gnosia: files: - /AppData/LocalLow/Playism/Gnosia/save/setting: + "/AppData/LocalLow/Playism/Gnosia/save/setting": tags: - config when: - os: windows - /AppData/LocalLow/Playism/Gnosia/save/slot0: + "/AppData/LocalLow/Playism/Gnosia/save/slot0": tags: - save when: - os: windows - /AppData/LocalLow/Playism/Gnosia/save/slot1: + "/AppData/LocalLow/Playism/Gnosia/save/slot1": tags: - save when: - os: windows - /AppData/LocalLow/Playism/Gnosia/save/slot2: + "/AppData/LocalLow/Playism/Gnosia/save/slot2": tags: - save when: @@ -225795,7 +226448,7 @@ Gnosia: installDir: GNOSIA: {} launch: - /Gnosia.exe: + "/Gnosia.exe": - when: - store: steam registry: @@ -225808,7 +226461,7 @@ Gnrblex: installDir: GNRBLEX: {} launch: - /Gnrblex_AGS.exe: + "/Gnrblex_AGS.exe": - when: - os: windows store: steam @@ -225818,21 +226471,21 @@ Gnubbl: installDir: Gnubbl: {} launch: - /Gnubbl.exe: + "/Gnubbl.exe": - when: - os: windows store: steam steam: id: 1012670 -'Gnumz: Masters of Defense': +"Gnumz: Masters of Defense": installDir: GnumzMastersOfDefense: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam - /GnumzMastersOfDefense.app/Contents/MacOS/Gnumz - Masters of Defense: + "/GnumzMastersOfDefense.app/Contents/MacOS/Gnumz - Masters of Defense": - when: - os: mac store: steam @@ -225842,21 +226495,21 @@ Go All Out: installDir: Go All Out: {} launch: - /GoAllOut.app: + "/GoAllOut.app": - when: - os: mac store: steam - /GoAllOut.exe: + "/GoAllOut.exe": - when: - os: windows store: steam steam: id: 759260 -'Go All Out: Free to Play': +"Go All Out: Free to Play": installDir: Go All Out Free To Play: {} launch: - /GoAllOut.exe: + "/GoAllOut.exe": - when: - os: windows store: steam @@ -225866,16 +226519,16 @@ Go Away My Fat: installDir: GoAwayMyFat: {} launch: - /Run.exe: + "/Run.exe": - when: - store: steam steam: id: 788150 -'Go Away, There''s Kumis Over There!': +"Go Away, There's Kumis Over There!": installDir: GoAwayTheresKumisOverThere: {} launch: - /GATIKOT.exe: + "/GATIKOT.exe": - when: - os: windows store: steam @@ -225885,7 +226538,7 @@ Go Cabbies!GB: installDir: Go Cabbies!GB: {} launch: - /GoCabbiesGB.exe: + "/GoCabbiesGB.exe": - when: - os: windows store: steam @@ -225899,11 +226552,11 @@ Go For A Walk: Go For A Walk: {} steam: id: 1121820 -'Go For Launch: Mercury': +"Go For Launch: Mercury": installDir: Go For Launch Mercury: {} launch: - /Go For Launch Mercury.exe: + "/Go For Launch Mercury.exe": - when: - os: windows store: steam @@ -225913,20 +226566,20 @@ Go Go Electric Samurai: installDir: Go Go Electric Samurai: {} launch: - /Universal.app: + "/Universal.app": - when: - os: mac store: steam - /gges.exe: + "/gges.exe": - when: - os: windows store: steam - /gges.x86: + "/gges.x86": - when: - bit: 32 os: linux store: steam - /gges.x86_64: + "/gges.x86_64": - when: - bit: 64 os: linux @@ -225937,11 +226590,11 @@ Go Go Poncho!: installDir: GoGoPoncho: {} launch: - /gogoponcho.app: + "/gogoponcho.app": - when: - os: mac store: steam - /gogoponcho.exe: + "/gogoponcho.exe": - when: - os: windows store: steam @@ -225956,15 +226609,15 @@ Go Home - Rage incoming: installDir: Go Home - Rage incoming: {} launch: - /game.app: + "/game.app": - when: - os: mac store: steam - /game.exe: + "/game.exe": - when: - os: windows store: steam - /game.x86: + "/game.x86": - when: - os: linux store: steam @@ -225974,7 +226627,7 @@ Go Home Dinosaurs!: installDir: Go Home Dinosaurs: {} launch: - /Eastgate.exe: + "/Eastgate.exe": - when: - store: steam steam: @@ -225983,25 +226636,25 @@ Go Kart Survival: installDir: Go Kart Survival: {} launch: - /Gokartsurvival.exe: + "/Gokartsurvival.exe": - when: - bit: 64 os: windows store: steam steam: id: 713570 -'Go Mission: Space Travel': +"Go Mission: Space Travel": steam: id: 487270 Go Morse Go! Arcade Edition: installDir: Go Morse Go! Arcade Edition: {} launch: - /GoMorseGo.app: + "/GoMorseGo.app": - when: - os: mac store: steam - /GoMorseGo.exe: + "/GoMorseGo.exe": - when: - bit: 64 os: windows @@ -226012,17 +226665,17 @@ Go Outside Simulator: installDir: Go Outside Simulator: {} launch: - /Go Outside Simulator.exe: + "/Go Outside Simulator.exe": - when: - os: windows store: steam steam: id: 955640 -'Go To Bed: Survive The Night': +"Go To Bed: Survive The Night": installDir: Go To Bed Survive The Night: {} launch: - /gotobedsteamedition.exe: + "/gotobedsteamedition.exe": - when: - os: windows store: steam @@ -226032,15 +226685,15 @@ Go to IT: installDir: Go to IT: {} launch: - /GoToIT.app/Contents/MacOS/GoToIT: + "/GoToIT.app/Contents/MacOS/GoToIT": - when: - os: mac store: steam - /GoToIT.exe: + "/GoToIT.exe": - when: - os: windows store: steam - /gotoit: + "/gotoit": - when: - os: linux store: steam @@ -226048,7 +226701,7 @@ Go to IT: id: 953060 Go! Go! Nippon! 2015: files: - /GoGoNippon/GoGoNippon2015/UserData: + "/GoGoNippon/GoGoNippon2015/UserData": tags: - save when: @@ -226057,12 +226710,12 @@ Go! Go! Nippon! 2015: id: 397030 Go! Go! Nippon! ~My First Trip to Japan~: files: - /GoGoNippon/BGI.gdb: + "/GoGoNippon/BGI.gdb": tags: - config when: - os: windows - /GoGoNippon/UserData: + "/GoGoNippon/UserData": tags: - save when: @@ -226071,11 +226724,11 @@ Go! Go! Nippon! ~My First Trip to Japan~: GoGoNippon: {} steam: id: 251870 -'Go! Go! Radio: 8-Bit Edition': +"Go! Go! Radio: 8-Bit Edition": installDir: Go! Go! Radio 8-Bit Edition: {} launch: - /win32/Go! Go! Radio 8-Bit Edition.exe: + "/win32/Go! Go! Radio 8-Bit Edition.exe": - when: - os: windows store: steam @@ -226085,54 +226738,54 @@ Go-Kart Racing: installDir: Go-Kart Racing: {} launch: - /gokartracing.exe: + "/gokartracing.exe": - when: - os: windows store: steam steam: id: 844750 -GoBlock's Impossible Medley: +"GoBlock's Impossible Medley": installDir: - GoBlock's Impossible Medley: {} + "GoBlock's Impossible Medley": {} launch: - /GoblocksImpossibleMedley.app: + "/GoblocksImpossibleMedley.app": - when: - os: mac store: steam - /GoblocksImpossibleMedley.exe: + "/GoblocksImpossibleMedley.exe": - when: - os: windows store: steam - /GoblocksImpossibleMedley.x86: + "/GoblocksImpossibleMedley.x86": - when: - bit: 32 os: linux store: steam - /GoblocksImpossibleMedley.x86_64: + "/GoblocksImpossibleMedley.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 619220 -'GoD Factory: Wingmen': +"GoD Factory: Wingmen": installDir: GoDFactoryWingmen: {} launch: - /GoDFactoryWingmen.app: + "/GoDFactoryWingmen.app": - when: - os: mac store: steam - /GoDFactoryWingmen.exe: + "/GoDFactoryWingmen.exe": - when: - os: windows store: steam - /GoDFactoryWingmen.x86: + "/GoDFactoryWingmen.x86": - when: - bit: 32 os: linux store: steam - /GoDFactoryWingmen.x86_64: + "/GoDFactoryWingmen.x86_64": - when: - bit: 64 os: linux @@ -226143,7 +226796,7 @@ GoFetch: installDir: GoFetch: {} launch: - /GoFetch.exe: + "/GoFetch.exe": - when: - os: windows store: steam @@ -226153,7 +226806,7 @@ GoK: installDir: GOK: {} launch: - /GoK.exe: + "/GoK.exe": - when: - bit: 64 os: windows @@ -226164,11 +226817,11 @@ GoVenture Micro Business: installDir: GoVenture MICRO BUSINESS: {} launch: - /PLAY.app: + "/PLAY.app": - when: - os: mac store: steam - /PLAY.exe: + "/PLAY.exe": - when: - os: windows store: steam @@ -226178,11 +226831,11 @@ GoVenture TYPING: installDir: GoVenture TYPING: {} launch: - /GoVentureTyping.app/Contents/MacOS/GoVentureTyping: + "/GoVentureTyping.app/Contents/MacOS/GoVentureTyping": - when: - os: mac store: steam - /GoVentureTyping.exe: + "/GoVentureTyping.exe": - when: - os: windows store: steam @@ -226199,7 +226852,7 @@ Goal! The Club Manager: installDir: GOAL! The Club Manager: {} launch: - /GOAL.exe: + "/GOAL.exe": - when: - os: windows store: steam @@ -226239,7 +226892,7 @@ Goalunited PRO - football manager for experts: installDir: goalunited: {} launch: - /GoalunitedPro.exe: + "/GoalunitedPro.exe": - when: - os: windows store: steam @@ -226249,7 +226902,7 @@ Goat Life: installDir: Goat Life: {} launch: - /Goat Life.exe: + "/Goat Life.exe": - when: - os: windows store: steam @@ -226257,27 +226910,27 @@ Goat Life: id: 860440 Goat Simulator: files: - /Engine/Config: + "/Engine/Config": tags: - config when: - os: windows - /.steam/steam/steamapps/common/GoatSimulator/GoatGame/Config: + "/.steam/steam/steamapps/common/GoatSimulator/GoatGame/Config": tags: - config when: - os: linux - /Library/Application Support/Steam/steamapps/common/GoatSimulator/GoatSimulator.app/Contents/Resources/GoatGame/Config: + "/Library/Application Support/Steam/steamapps/common/GoatSimulator/GoatSimulator.app/Contents/Resources/GoatGame/Config": tags: - config when: - os: mac - /userdata//265930/remote/goatprogression: + "/userdata//265930/remote/goatprogression": tags: - save when: - store: steam - /My Games/GoatSim/GoatGame/Config: + "/My Games/GoatSim/GoatGame/Config": tags: - config when: @@ -226290,22 +226943,22 @@ Goat Simulator: installDir: GoatSimulator: {} launch: - /Binaries/Win32/GoatGame-Win32-Shipping.exe: + "/Binaries/Win32/GoatGame-Win32-Shipping.exe": - when: - os: windows store: steam - workingDir: /Binaries/Win32 - /Binaries/linux-amd64/GoatGame: + workingDir: "/Binaries/Win32" + "/Binaries/linux-amd64/GoatGame": - when: - bit: 64 os: linux store: steam - /Binaries/linux-x86/GoatGame: + "/Binaries/linux-x86/GoatGame": - when: - bit: 32 os: linux store: steam - /GoatSimulator.app: + "/GoatSimulator.app": - when: - os: mac store: steam @@ -226313,19 +226966,19 @@ Goat Simulator: id: 265930 Goat Simulator 3: files: - /appdata/Local/Goat2/Saved/Config: + "/appdata/Local/Goat2/Saved/Config": tags: - config when: - os: windows - /appdata/Local/Goat2/Saved/SaveGames: + "/appdata/Local/Goat2/Saved/SaveGames": tags: - save when: - os: windows Goat of Duty: files: - /GoatOfDuty/Saved/SaveGames/*.sav: + "/GoatOfDuty/Saved/SaveGames/*.sav": tags: - save when: @@ -226333,8 +226986,8 @@ Goat of Duty: installDir: Goat of Duty: {} launch: - /GoatOfDuty.exe: - - arguments: '-fullscreen' + "/GoatOfDuty.exe": + - arguments: "-fullscreen" when: - bit: 64 os: windows @@ -226345,15 +226998,15 @@ GoatPunks: installDir: GoatPunks: {} launch: - /GoatPunks.app: + "/GoatPunks.app": - when: - os: mac store: steam - /GoatPunks.exe: + "/GoatPunks.exe": - when: - os: windows store: steam - /GoatPunks.x86: + "/GoatPunks.x86": - when: - os: linux store: steam @@ -226367,7 +227020,7 @@ Goats on a Bridge: installDir: Goats on a Bridge: {} launch: - /goab.exe: + "/goab.exe": - when: - os: windows store: steam @@ -226377,7 +227030,7 @@ Gobernators: installDir: Gobernators: {} launch: - /Gobernators_SteamVer.exe: + "/Gobernators_SteamVer.exe": - when: - os: windows store: steam @@ -226387,7 +227040,7 @@ Goblet of Maya: installDir: Goblet of Maya: {} launch: - /Goblet of Maya.exe: + "/Goblet of Maya.exe": - when: - os: windows store: steam @@ -226400,30 +227053,30 @@ Gobligeddon: id: 1120090 Gobliiins: files: - /Gobliiins1.ini: + "/Gobliiins1.ini": tags: - config when: - os: windows gog: id: 1207662273 -'Gobliins 2: The Prince Buffoon': +"Gobliins 2: The Prince Buffoon": files: - /Gobliins2.ini: + "/Gobliins2.ini": tags: - config when: - os: windows gog: id: 1207662293 -'Goblin Defenders: Steel''n'' Wood': +"Goblin Defenders: Steel'n' Wood": files: - /AlawarEntertainment/Adwizer/GoblinDefenders: + "/AlawarEntertainment/Adwizer/GoblinDefenders": tags: - save when: - os: windows - /AlawarEntertainment/Adwizer/GoblinDefenders/cfg.dat: + "/AlawarEntertainment/Adwizer/GoblinDefenders/cfg.dat": tags: - config when: @@ -226431,7 +227084,7 @@ Gobliiins: installDir: GoblinDefenders: {} launch: - /GoblinDefenders.exe: + "/GoblinDefenders.exe": - when: - os: windows store: steam @@ -226441,7 +227094,7 @@ Goblin Gearshop: installDir: Goblin Gearshop: {} launch: - /GGS.exe: + "/GGS.exe": - when: - bit: 64 os: windows @@ -226452,17 +227105,17 @@ Goblin Harvest - The Mighty Quest: installDir: Goblin Harvest - The Mighty Quest: {} launch: - /GoblinHarvest.exe: + "/GoblinHarvest.exe": - when: - os: windows store: steam steam: id: 604060 -'Goblin Quest: Escape!': +"Goblin Quest: Escape!": installDir: GoblinQuestEscape: {} launch: - /mook.exe: + "/mook.exe": - when: - os: windows store: steam @@ -226472,7 +227125,7 @@ Goblin Squad - Total Division: installDir: Goblin Squad - Total Division: {} launch: - /GSQD.exe: + "/GSQD.exe": - when: - os: windows store: steam @@ -226485,7 +227138,7 @@ Goblin Storm: installDir: Goblin Storm: {} launch: - /Goblin.exe: + "/Goblin.exe": - when: - os: windows store: steam @@ -226495,7 +227148,7 @@ Goblin Times / 哥布林时代: installDir: Goblin Times: {} launch: - /Goblin_Times.exe: + "/Goblin_Times.exe": - when: - bit: 64 os: windows @@ -226506,7 +227159,7 @@ Goblin Walker: installDir: GoblinWalker: {} launch: - /gob_steam.exe: + "/gob_steam.exe": - when: - os: windows store: steam @@ -226514,22 +227167,22 @@ Goblin Walker: id: 834060 Goblin and Coins: files: - /.config/Goblin_and_Coins: + "/.config/Goblin_and_Coins": tags: - save when: - os: linux - /.config/Goblin_and_Coins/settings.ini: + "/.config/Goblin_and_Coins/settings.ini": tags: - config when: - os: linux - /Goblin_and_Coins: + "/Goblin_and_Coins": tags: - save when: - os: windows - /Goblin_and_Coins/settings.ini: + "/Goblin_and_Coins/settings.ini": tags: - config when: @@ -226537,11 +227190,11 @@ Goblin and Coins: installDir: Goblin and Coins: {} launch: - /Goblin_and_Coins.exe: + "/Goblin_and_Coins.exe": - when: - os: windows store: steam - /run.sh: + "/run.sh": - when: - os: linux store: steam @@ -226551,31 +227204,31 @@ Goblin and Coins II: installDir: gnc2: {} launch: - /gnc2.exe: + "/gnc2.exe": - when: - os: windows store: steam - /run.sh: + "/run.sh": - when: - os: linux store: steam steam: id: 694990 -Goblin's Fantasy: +"Goblin's Fantasy": installDir: GoblinWalker: {} launch: - /gob_steam.exe: + "/gob_steam.exe": - when: - os: windows store: steam steam: id: 834060 -Goblin's Shop: +"Goblin's Shop": installDir: - Goblin's Shop: {} + "Goblin's Shop": {} launch: - /Goblin's Shop.exe: + "/Goblin's Shop.exe": - when: - os: windows store: steam @@ -226585,16 +227238,16 @@ Goblins Keep Coming - Tower Defense: installDir: Goblins Keep Coming - Tower Defense: {} launch: - /gkc-td.exe: + "/gkc-td.exe": - when: - os: windows store: steam - /gkc-td.x86: + "/gkc-td.x86": - when: - bit: 32 os: linux store: steam - /gkc-td.x86_64: + "/gkc-td.x86_64": - when: - bit: 64 os: linux @@ -226603,7 +227256,7 @@ Goblins Keep Coming - Tower Defense: id: 739850 Goblins Quest 3: files: - /Goblins3.ini: + "/Goblins3.ini": tags: - config when: @@ -226614,11 +227267,11 @@ Goblins and Grottos: installDir: Goblins & Grottos: {} launch: - /GoblinsAndGrottos.app: + "/GoblinsAndGrottos.app": - when: - os: mac store: steam - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -226626,7 +227279,7 @@ Goblins and Grottos: id: 389190 Goblins of Elderstone: files: - /GoblinsOfElderstone/Saved/SaveGames: + "/GoblinsOfElderstone/Saved/SaveGames": tags: - save when: @@ -226634,7 +227287,7 @@ Goblins of Elderstone: installDir: Goblins of Elderstone: {} launch: - /GoblinsOfElderstone.exe: + "/GoblinsOfElderstone.exe": - when: - os: windows store: steam @@ -226647,12 +227300,12 @@ Gocco of War: installDir: GOCCO OF WAR: {} launch: - /gocco_of_war_32.exe: + "/gocco_of_war_32.exe": - when: - bit: 32 os: windows store: steam - /gocco_of_war_64.exe: + "/gocco_of_war_64.exe": - when: - bit: 64 os: windows @@ -226663,7 +227316,7 @@ Gochi-Show!: installDir: Gochi-Show: {} launch: - /gochiso.exe: + "/gochiso.exe": - when: - store: steam steam: @@ -226672,7 +227325,7 @@ Gochi-Show! for Girls -How To Learn Japanese Cooking Game-: installDir: Gochi-Show! for Girls: {} launch: - /gochiso.exe: + "/gochiso.exe": - when: - store: steam steam: @@ -226681,21 +227334,21 @@ God Awe-full Clicker: installDir: God Awe-full Clicker: {} launch: - /GAC.exe: + "/GAC.exe": - when: - os: windows store: steam steam: id: 625860 -'God Eater 2: Rage Burst': +"God Eater 2: Rage Burst": files: - /userdata//438490/remote: + "/userdata//438490/remote": tags: - save when: - os: windows store: steam - /BANDAI NAMCO GAMES/GOD EATER 2 RAGE BURST: + "/BANDAI NAMCO GAMES/GOD EATER 2 RAGE BURST": tags: - config when: @@ -226703,7 +227356,7 @@ God Awe-full Clicker: installDir: GOD EATER 2 Rage Burst: {} launch: - /GE2RB.exe: + "/GE2RB.exe": - when: - store: steam steam: @@ -226712,20 +227365,20 @@ God Eater 3: installDir: GOD EATER 3: {} launch: - /ge3.exe: + "/ge3.exe": - when: - store: steam steam: id: 899440 -'God Eater: Resurrection': +"God Eater: Resurrection": files: - /userdata//460870/remote: + "/userdata//460870/remote": tags: - save when: - os: windows store: steam - /BANDAI NAMCO GAMES/GOD EATER RESURRECTION: + "/BANDAI NAMCO GAMES/GOD EATER RESURRECTION": tags: - config when: @@ -226733,7 +227386,7 @@ God Eater 3: installDir: GOD EATER RESURRECTION: {} launch: - /GER.exe: + "/GER.exe": - when: - store: steam steam: @@ -226745,7 +227398,7 @@ God Hand: id: 978970 God Mode: files: - /bin/*.cfg: + "/bin/*.cfg": tags: - config when: @@ -226753,18 +227406,18 @@ God Mode: installDir: GodMode: {} launch: - /bin/GodMode.exe: + "/bin/GodMode.exe": - when: - os: windows store: steam - workingDir: /bin + workingDir: "/bin" steam: id: 227480 God Monster: installDir: God Monster: {} launch: - /xjqx.exe: + "/xjqx.exe": - when: - os: windows store: steam @@ -226774,7 +227427,7 @@ God Simulator: installDir: God Simulator: {} launch: - /GodSimulator.exe: + "/GodSimulator.exe": - when: - os: windows store: steam @@ -226784,49 +227437,49 @@ God Vs Zombies: installDir: God Vs Zombies: {} launch: - /godvszombies.exe: + "/godvszombies.exe": - when: - os: windows store: steam steam: id: 843500 -'God Wars: The Complete Legend': +"God Wars: The Complete Legend": installDir: GodWars: {} launch: - /godwars.exe: + "/godwars.exe": - when: - os: windows store: steam steam: id: 1038810 -'God and Nemesis: of Ghosts from Dragons': +"God and Nemesis: of Ghosts from Dragons": installDir: GodsandNemesis: {} launch: - /GodsandNemesis.exe: + "/GodsandNemesis.exe": - when: - store: steam steam: id: 509530 -'God is a Cube: Programming Robot Cubes': +"God is a Cube: Programming Robot Cubes": installDir: God is a Cube Programming Robot Cubes: {} launch: - /giac.app/Contents/MacOS/God_is_a_Cube-Age_of_DNA: + "/giac.app/Contents/MacOS/God_is_a_Cube-Age_of_DNA": - when: - os: mac store: steam - /giac.exe: + "/giac.exe": - when: - os: windows store: steam - /giac.x86: + "/giac.x86": - when: - bit: 32 os: linux store: steam - /giac.x86_64: + "/giac.x86_64": - when: - bit: 64 os: linux @@ -226842,7 +227495,7 @@ God of Failure: installDir: GOF: {} launch: - /GOF.exe: + "/GOF.exe": - when: - store: steam steam: @@ -226851,21 +227504,21 @@ God of Gym: installDir: God of Gym: {} launch: - /God of Gym.exe: + "/God of Gym.exe": - when: - os: windows store: steam steam: id: 1181270 -'God of Light: Remastered': +"God of Light: Remastered": installDir: God of Light Remastered: {} launch: - /gol.app: + "/gol.app": - when: - os: mac store: steam - /gol.exe: + "/gol.exe": - when: - os: windows store: steam @@ -226873,17 +227526,17 @@ God of Gym: id: 711130 God of Thunder: files: - /CONFIG.GOT: + "/CONFIG.GOT": tags: - save when: - os: dos - /SAVEGAM*.GOT: + "/SAVEGAM*.GOT": tags: - save when: - os: dos - /SAVEGAM*.GT*: + "/SAVEGAM*.GT*": tags: - save when: @@ -226891,7 +227544,7 @@ God of Thunder: installDir: God Of Thunder: {} launch: - /GodOfThunder.bat: + "/GodOfThunder.bat": - when: - os: windows store: steam @@ -226899,12 +227552,12 @@ God of Thunder: id: 738470 God of War: files: - /settings.ini: + "/settings.ini": tags: - config when: - os: windows - /Saved Games/God of War: + "/Saved Games/God of War": tags: - save when: @@ -226914,7 +227567,7 @@ God of War: installDir: GodOfWar: {} launch: - /GoW.exe: + "/GoW.exe": - when: - bit: 64 os: windows @@ -226925,59 +227578,59 @@ God of Word: installDir: God of Word: {} launch: - /GodOfWord.app/Contents/MacOS/GodOfWord: + "/GodOfWord.app/Contents/MacOS/GodOfWord": - when: - os: mac store: steam - /GodOfWord.exe: + "/GodOfWord.exe": - when: - os: windows store: steam steam: id: 467320 -God's Basement: +"God's Basement": installDir: - God's Basement: {} + "God's Basement": {} launch: - /GodsBasement.exe: + "/GodsBasement.exe": - when: - os: windows store: steam steam: id: 753930 -God's Challenge: +"God's Challenge": installDir: - God's Challenge: {} + "God's Challenge": {} steam: id: 1217640 -God's Death: +"God's Death": installDir: - GOD's DEATH: {} + "GOD's DEATH": {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam steam: id: 466580 -God's One Day World: +"God's One Day World": installDir: - God's One Day World: {} + "God's One Day World": {} launch: - /ODW.exe: + "/ODW.exe": - when: - os: windows store: steam steam: id: 490390 -God's Trigger: +"God's Trigger": files: - /AppData/LocalLow/One More Level/Gods_Trigger: + "/AppData/LocalLow/One More Level/Gods_Trigger": tags: - save when: - os: windows - /userdata//488730/remote/save: + "/userdata//488730/remote/save": tags: - save when: @@ -226987,7 +227640,7 @@ God's Trigger: installDir: GodsTrigger: {} launch: - /GodsTrigger.exe: + "/GodsTrigger.exe": - when: - bit: 64 os: windows @@ -227002,7 +227655,7 @@ GodOrEvil.Beta: installDir: GodOrEvil.Bate: {} launch: - /GodOrEvil_Update2019.9.22.exe: + "/GodOrEvil_Update2019.9.22.exe": - when: - os: windows store: steam @@ -227012,11 +227665,11 @@ Goddess of Math 数学女神: installDir: GoddessOfMath: {} launch: - /GoddessOfMath.app/Contents/MacOS/GoddessOfMath: + "/GoddessOfMath.app/Contents/MacOS/GoddessOfMath": - when: - os: mac store: steam - /GoddessOfMath/Goddess of Math.exe: + "/GoddessOfMath/Goddess of Math.exe": - when: - os: windows store: steam @@ -227024,7 +227677,7 @@ Goddess of Math 数学女神: id: 1044770 Godfall: files: - /Aperion/Saved/Config/WindowsNoEditor: + "/Aperion/Saved/Config/WindowsNoEditor": tags: - config when: @@ -227032,7 +227685,7 @@ Godfall: installDir: Godfall: {} launch: - /Aperion.exe: + "/Aperion.exe": - when: - bit: 64 os: windows @@ -227045,16 +227698,16 @@ Godhood: installDir: Godhood: {} launch: - /godhood: + "/godhood": - when: - bit: 64 os: linux store: steam - /godhood.app: + "/godhood.app": - when: - os: mac store: steam - /godhood.exe: + "/godhood.exe": - when: - bit: 64 os: windows @@ -227066,12 +227719,12 @@ Godkin: id: 692580 Godlike Burger: files: - /AppData/LocalLow/Liquid Pug LLC/Godlike Burger/*/*.es3: + "/AppData/LocalLow/Liquid Pug LLC/Godlike Burger/*/*.es3": tags: - config when: - os: windows - /AppData/LocalLow/Liquid Pug LLC/Godlike Burger/*/Slot*: + "/AppData/LocalLow/Liquid Pug LLC/Godlike Burger/*/Slot*": tags: - save when: @@ -227089,16 +227742,16 @@ Godlike Burger: installDir: Godlike Burger: {} launch: - /Godlike Burger.app: + "/Godlike Burger.app": - when: - os: mac store: steam - /Godlike Burger.exe: + "/Godlike Burger.exe": - when: - bit: 64 os: windows store: steam - /Godlike Burger.x86_64: + "/Godlike Burger.x86_64": - when: - os: linux store: steam @@ -227112,16 +227765,19 @@ Godly Corp: installDir: Godly Corp: {} launch: - /Godly Corp.app/Contents/MacOS/Godly Corp: + "/Godly Corp.app/Contents/MacOS/Godly Corp": - when: - os: mac store: steam - /Godly Corp.exe: + "/Godly Corp.exe": - when: - os: windows store: steam - /GodlyCorp.x86_64: - - arguments: '-screen-fullscreen 0' + - bit: 32 + os: windows + store: steam + "/GodlyCorp.x86_64": + - arguments: "-screen-fullscreen 0" when: - os: linux store: steam @@ -227129,12 +227785,12 @@ Godly Corp: id: 799260 Gods Remastered: files: - /userdata//628720/remote/godsconf.txt: + "/userdata//628720/remote/godsconf.txt": tags: - config when: - store: steam - /userdata//628720/remote/sf.txt: + "/userdata//628720/remote/sf.txt": tags: - save when: @@ -227142,11 +227798,11 @@ Gods Remastered: installDir: GODS Remastered: {} launch: - /Gods.exe: + "/Gods.exe": - when: - os: windows store: steam - /GodsRemastered.app/Contents/MacOS/GodsRemastered: + "/GodsRemastered.app/Contents/MacOS/GodsRemastered": - when: - os: mac store: steam @@ -227158,13 +227814,13 @@ Gods Remastered: id: 628720 Gods Will Be Watching: files: - /.config/Gods_Will_Be_Watching: + "/.config/Gods_Will_Be_Watching": tags: - config - save when: - os: linux - /Gods_Will_Be_Watching: + "/Gods_Will_Be_Watching": tags: - config - save @@ -227175,15 +227831,15 @@ Gods Will Be Watching: installDir: Gods Will Be Watching: {} launch: - /Gods Will Be Watching.app: + "/Gods Will Be Watching.app": - when: - os: mac store: steam - /gwbw.exe: + "/gwbw.exe": - when: - os: windows store: steam - /run.sh: + "/run.sh": - when: - os: linux store: steam @@ -227194,8 +227850,8 @@ Gods Will Fall: id: 1919321830 id: gogExtra: - - 1614367395 - 1535985598 + - 1614367395 - 1745467638 steamExtra: - 1483510 @@ -227204,7 +227860,7 @@ Gods Will Fall: installDir: Gods Will Fall: {} launch: - /Gods Will Fall.exe: + "/Gods Will Fall.exe": - when: - bit: 64 os: windows @@ -227215,7 +227871,7 @@ Gods and Idols: installDir: Gods and Idols: {} launch: - /Launch Gods and Idols.exe: + "/Launch Gods and Idols.exe": - when: - bit: 32 os: windows @@ -227226,43 +227882,43 @@ Gods and Kings: installDir: GodsandKings: {} launch: - /CardWar.exe: + "/CardWar.exe": - when: - os: windows store: steam steam: id: 982380 -'Gods of Havoc: Fall to Earth': +"Gods of Havoc: Fall to Earth": installDir: Gods of Havoc Fall to Earth: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: id: 1120770 -'Gods of Havoc: Into the Void': +"Gods of Havoc: Into the Void": installDir: Gods of Havoc Into the Void: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: id: 1117340 -'Gods of Love: An Otome Visual Novel': +"Gods of Love: An Otome Visual Novel": installDir: Gods of Love An Otome Visual Novel: {} launch: - /GodsofLove.app/Contents/MacOS/GodsofLove: + "/GodsofLove.app/Contents/MacOS/GodsofLove": - when: - os: mac store: steam - /GodsofLove.exe: + "/GodsofLove.exe": - when: - os: windows store: steam - /GodsofLove.sh: + "/GodsofLove.sh": - when: - os: linux store: steam @@ -227272,7 +227928,7 @@ Gods of the Fallen Land: installDir: Gods of the Fallen Land: {} launch: - /GotFL.exe: + "/GotFL.exe": - when: - os: windows store: steam @@ -227280,7 +227936,7 @@ Gods of the Fallen Land: id: 674960 Gods vs Humans: files: - /Gods vs Humans: + "/Gods vs Humans": tags: - save when: @@ -227288,12 +227944,12 @@ Gods vs Humans: installDir: Gods vs Humans: {} launch: - /GodsVsHumans.app: + "/GodsVsHumans.app": - when: - os: mac store: steam - /GodsVsHumans.exe: - - arguments: '--show_config_dialog=yes' + "/GodsVsHumans.exe": + - arguments: "--show_config_dialog=yes" when: - os: windows store: steam @@ -227306,7 +227962,7 @@ Godstrike: installDir: Godstrike: {} launch: - /Godstrike.exe: + "/Godstrike.exe": - when: - os: windows store: steam @@ -227319,32 +227975,32 @@ Godus: installDir: Godus: {} launch: - /mac/godus.app/Contents/MacOS/godus: + "/mac/godus.app/Contents/MacOS/godus": - when: - os: mac store: steam - workingDir: /mac - /windows/Godus.exe: + workingDir: "/mac" + "/windows/Godus.exe": - when: - os: windows store: steam - workingDir: /windows + workingDir: "/windows" steam: id: 232810 Godus Wars: installDir: Godus Wars: {} launch: - /mac/Godus Wars.app/Contents/MacOS/Godus Wars: + "/mac/Godus Wars.app/Contents/MacOS/Godus Wars": - when: - os: mac store: steam - workingDir: /mac - /windows/Godus Wars.exe: + workingDir: "/mac" + "/windows/Godus Wars.exe": - when: - os: windows store: steam - workingDir: /windows + workingDir: "/windows" steam: id: 422420 Godzilla Voxel Wars: @@ -227352,17 +228008,17 @@ Godzilla Voxel Wars: id: 2439780 Goetia: files: - /AppData/LocalLow/Sushee/goetia: + "/AppData/LocalLow/Sushee/goetia": tags: - save when: - os: windows - /unity3d/Sushee/goetia: + "/unity3d/Sushee/goetia": tags: - save when: - os: linux - /unity3d/Sushee/goetia/prefs: + "/unity3d/Sushee/goetia/prefs": tags: - config when: @@ -227372,24 +228028,24 @@ Goetia: installDir: goetia: {} launch: - /Goetia.app: - - arguments: '-forcecontrollerappid 421740' + "/Goetia.app": + - arguments: "-forcecontrollerappid 421740" when: - os: mac store: steam - /Goetia.exe: - - arguments: '-forcecontrollerappid 421740' + "/Goetia.exe": + - arguments: "-forcecontrollerappid 421740" when: - os: windows store: steam - /goetia.x86: - - arguments: '-forcecontrollerappid 421740' + "/goetia.x86": + - arguments: "-forcecontrollerappid 421740" when: - bit: 32 os: linux store: steam - /goetia.x86_64: - - arguments: '-forcecontrollerappid 421740' + "/goetia.x86_64": + - arguments: "-forcecontrollerappid 421740" when: - bit: 64 os: linux @@ -227406,7 +228062,7 @@ Goetia 2: installDir: Goetia 2: {} launch: - /Goetia 2.exe: + "/Goetia 2.exe": - when: - store: steam steam: @@ -227415,15 +228071,15 @@ Goggles - World of Vaporia: installDir: b2gGOGGLES: {} launch: - /goggles.app: + "/goggles.app": - when: - os: mac store: steam - /goggles.exe: + "/goggles.exe": - when: - os: windows store: steam - /goggles.x86: + "/goggles.x86": - when: - os: linux store: steam @@ -227436,7 +228092,7 @@ Gohorobo: installDir: GOHOROBO: {} launch: - /GOHOROBO.exe: + "/GOHOROBO.exe": - when: - os: windows store: steam @@ -227446,7 +228102,7 @@ Going Astray: installDir: Going Astray: {} launch: - /GoingAstray.exe: + "/GoingAstray.exe": - when: - os: windows store: steam @@ -227454,12 +228110,12 @@ Going Astray: id: 715430 Going Medieval: files: - /AppData/LocalLow/Foxy Voxel/Going Medieval/VillageSaves: + "/AppData/LocalLow/Foxy Voxel/Going Medieval/VillageSaves": tags: - save when: - os: windows - /AppData/LocalLow/Foxy Voxel/Going Medieval/global.config: + "/AppData/LocalLow/Foxy Voxel/Going Medieval/global.config": tags: - config when: @@ -227469,25 +228125,25 @@ Going Medieval: installDir: Going Medieval: {} launch: - /Going Medieval.exe: + "/Going Medieval.exe": - when: - os: windows store: steam steam: id: 1029780 -'Going Nowhere: The Dream': +"Going Nowhere: The Dream": installDir: Going Nowhere The Dream: {} launch: - /gn2.app: + "/gn2.app": - when: - os: mac store: steam - /linux_content/gn2.x86: + "/linux_content/gn2.x86": - when: - os: linux store: steam - /windows_content/gn2.exe: + "/windows_content/gn2.exe": - when: - os: windows store: steam @@ -227495,7 +228151,7 @@ Going Medieval: id: 691240 Going Under: files: - /AppData/LocalLow/Aggro Crab/Going Under: + "/AppData/LocalLow/Aggro Crab/Going Under": tags: - config - save @@ -227504,12 +228160,12 @@ Going Under: installDir: Going Under: {} launch: - /Going Under.exe: - - arguments: '-windowed' + "/Going Under.exe": + - arguments: "-windowed" when: - os: windows store: steam - /GoingUnder.app: + "/GoingUnder.app": - when: - os: mac store: steam @@ -227524,15 +228180,15 @@ Going Up?: installDir: Going Up: {} launch: - /Going Up.app: + "/Going Up.app": - when: - os: mac store: steam - /Going Up.exe: + "/Going Up.exe": - when: - os: windows store: steam - /GoingUp.x86_64: + "/GoingUp.x86_64": - when: - os: linux store: steam @@ -227542,7 +228198,7 @@ Goinund: installDir: Goinund: {} launch: - /GOINUNDR.exe: + "/GOINUNDR.exe": - when: - bit: 64 os: windows @@ -227551,12 +228207,12 @@ Goinund: id: 874770 Goken: files: - /unity3d/Gianty/Goken/*.dat: + "/unity3d/Gianty/Goken/*.dat": tags: - save when: - os: linux - /unity3d/Gianty/Goken/prefs: + "/unity3d/Gianty/Goken/prefs": tags: - config when: @@ -227564,11 +228220,11 @@ Goken: installDir: GOKEN: {} launch: - /GOKEN.exe: + "/GOKEN.exe": - when: - os: windows store: steam - /GOKEN.x86_64: + "/GOKEN.x86_64": - when: - os: linux store: steam @@ -227580,7 +228236,7 @@ Golazo!: installDir: Golazo Soccer League: {} launch: - /golazo/game.exe: + "/golazo/game.exe": - when: - store: steam steam: @@ -227589,7 +228245,7 @@ Gold Crusader: installDir: Gold Crusader: {} launch: - /GoldCrusader.exe: + "/GoldCrusader.exe": - when: - os: windows store: steam @@ -227599,15 +228255,15 @@ Gold Digger Maze: installDir: Gold Digger Maze: {} launch: - /Gold Digger Maze.app/Contents/MacOS/Gold Digger Maze: + "/Gold Digger Maze.app/Contents/MacOS/Gold Digger Maze": - when: - os: mac store: steam - /Gold Digger Maze.exe: + "/Gold Digger Maze.exe": - when: - os: windows store: steam - /Gold Digger Maze.x86: + "/Gold Digger Maze.x86": - when: - os: linux store: steam @@ -227617,7 +228273,7 @@ Gold Express: installDir: GOLD EXPRESS: {} launch: - /HJLC.exe: + "/HJLC.exe": - when: - bit: 64 os: windows @@ -227628,7 +228284,7 @@ Gold Hunter: installDir: Gold Hunter: {} launch: - /GoldHunter.exe: + "/GoldHunter.exe": - when: - bit: 64 os: windows @@ -227642,11 +228298,11 @@ Gold Magic 800: installDir: Gold Magic 800: {} launch: - /editor/leveleditor.exe: + "/editor/leveleditor.exe": - when: - os: windows store: steam - /goldmagic800.exe: + "/goldmagic800.exe": - when: - os: windows store: steam @@ -227656,16 +228312,19 @@ Gold Rush In The Oort Cloud: installDir: Gold Rush In The Oort Cloud: {} launch: - /GRITOC.exe: + "/GRITOC.exe": - when: - bit: 32 os: windows store: steam + - bit: 64 + os: windows + store: steam steam: id: 661530 Gold Rush!: files: - /GRSG.**: + "/GRSG.**": tags: - save when: @@ -227673,11 +228332,11 @@ Gold Rush!: installDir: Gold Rush - Classic: {} launch: - /Gold Rush!.exe: + "/Gold Rush!.exe": - when: - os: windows store: steam - /conf.exe: + "/conf.exe": - when: - os: windows store: steam @@ -227687,15 +228346,15 @@ Gold Rush! 2: installDir: Gold Rush! 2: {} launch: - /Gold Rush! 2.app: + "/Gold Rush! 2.app": - when: - os: mac store: steam - /Gold Rush! 2.exe: + "/Gold Rush! 2.exe": - when: - os: windows store: steam - /Gold Rush! 2.x86: + "/Gold Rush! 2.x86": - when: - os: linux store: steam @@ -227703,7 +228362,7 @@ Gold Rush! 2: id: 609100 Gold Rush! Anniversary: files: - /Gold Rush! Anniversary/Saves: + "/Gold Rush! Anniversary/Saves": tags: - save when: @@ -227714,23 +228373,23 @@ Gold Rush! Anniversary: installDir: Gold Rush Anniversary: {} launch: - /Gold Rush! Anniversary.app: + "/Gold Rush! Anniversary.app": - when: - os: mac store: steam - /Gold Rush! Anniversary.exe: + "/Gold Rush! Anniversary.exe": - when: - os: windows store: steam - /Gold Rush! Anniversary.x86: + "/Gold Rush! Anniversary.x86": - when: - os: linux store: steam steam: id: 319230 -'Gold Rush: The Game': +"Gold Rush: The Game": files: - /AppData/LocalLow/CodeHorizon/GoldRushTheGame: + "/AppData/LocalLow/CodeHorizon/GoldRushTheGame": tags: - save when: @@ -227738,42 +228397,42 @@ Gold Rush! Anniversary: installDir: Gold Rush The Game: {} launch: - /GoldRushTheGame.exe: + "/GoldRushTheGame.exe": - when: - os: windows store: steam steam: id: 451340 -'Gold and Glory: The Road to El Dorado': +"Gold and Glory: The Road to El Dorado": files: - /engine/eldorado.ini: + "/engine/eldorado.ini": tags: - config when: - os: windows - /engine/linc/saves: + "/engine/linc/saves": tags: - save when: - os: windows Golden Axe (Genesis): files: - /SEGA Genesis Classics/0005: + "/SEGA Genesis Classics/0005": tags: - save when: - os: windows - /SEGA Genesis Classics/setup.dat: + "/SEGA Genesis Classics/setup.dat": tags: - config when: - os: windows - /SEGA Mega Drive Classics/0005: + "/SEGA Mega Drive Classics/0005": tags: - save when: - os: windows - /SEGA Mega Drive Classics/setup.dat: + "/SEGA Mega Drive Classics/setup.dat": tags: - config when: @@ -227782,22 +228441,22 @@ Golden Axe (Genesis): id: 34276 Golden Axe II: files: - /SEGA Genesis Classics/0030: + "/SEGA Genesis Classics/0030": tags: - save when: - os: windows - /SEGA Genesis Classics/setup.dat: + "/SEGA Genesis Classics/setup.dat": tags: - config when: - os: windows - /SEGA Mega Drive Classics/0030: + "/SEGA Mega Drive Classics/0030": tags: - save when: - os: windows - /SEGA Mega Drive Classics/setup.dat: + "/SEGA Mega Drive Classics/setup.dat": tags: - config when: @@ -227806,33 +228465,33 @@ Golden Axe II: id: 71112 Golden Axe III: files: - /SEGA Genesis Classics/0050: + "/SEGA Genesis Classics/0050": tags: - save when: - os: windows - /SEGA Genesis Classics/setup.dat: + "/SEGA Genesis Classics/setup.dat": tags: - config when: - os: windows - /SEGA Mega Drive Classics/0050: + "/SEGA Mega Drive Classics/0050": tags: - save when: - os: windows - /SEGA Mega Drive Classics/setup.dat: + "/SEGA Mega Drive Classics/setup.dat": tags: - config when: - os: windows steam: id: 211202 -'Golden Axed: A Cancelled Prototype': +"Golden Axed: A Cancelled Prototype": installDir: Golden Axed: {} launch: - /GAXD.exe: + "/GAXD.exe": - when: - bit: 64 os: windows @@ -227843,7 +228502,7 @@ Golden Dungeons: installDir: Golden Dungeons: {} launch: - /Golden Dungeons.exe: + "/Golden Dungeons.exe": - when: - os: windows store: steam @@ -227853,17 +228512,17 @@ Golden Fall: installDir: Golden Fall: {} launch: - /Golden Fall.exe: + "/Golden Fall.exe": - when: - bit: 64 os: windows store: steam - /GoldenFall.x86: + "/GoldenFall.x86": - when: - bit: 32 os: linux store: steam - /GoldenFall.x86_64: + "/GoldenFall.x86_64": - when: - bit: 64 os: linux @@ -227877,7 +228536,7 @@ Golden Hornet: installDir: Golden Hornet: {} launch: - /Golden_Hornet.exe: + "/Golden_Hornet.exe": - when: - os: windows store: steam @@ -227887,7 +228546,7 @@ Golden Key: installDir: Golden Key: {} launch: - /GoldenKey.exe: + "/GoldenKey.exe": - when: - os: windows store: steam @@ -227897,16 +228556,16 @@ Golden Krone Hotel: installDir: Golden Krone Hotel: {} launch: - /gkh: + "/gkh": - when: - os: linux store: steam - /gkh.app: + "/gkh.app": - when: - bit: 64 os: mac store: steam - /gkh.exe: + "/gkh.exe": - when: - os: windows store: steam @@ -227914,7 +228573,7 @@ Golden Krone Hotel: id: 497800 Golden Light: files: - /AppData/LocalLow/MrPink/Golden Light: + "/AppData/LocalLow/MrPink/Golden Light": tags: - save when: @@ -227922,7 +228581,7 @@ Golden Light: installDir: Golden Light: {} launch: - /Golden Light.exe: + "/Golden Light.exe": - when: - store: steam steam: @@ -227931,25 +228590,25 @@ Golden Panic: installDir: Golden Panic: {} launch: - /GoldenPanic: + "/GoldenPanic": - when: - os: linux store: steam - /GoldenPanic.app: + "/GoldenPanic.app": - when: - os: mac store: steam - /GoldenPanic.exe: + "/GoldenPanic.exe": - when: - os: windows store: steam steam: id: 614550 -'Golden Rails: Tales of the Wild West': +"Golden Rails: Tales of the Wild West": installDir: Golden Rails Tales of the Wild West: {} launch: - /GoldenRails_TalesOfTheWildWest.exe: + "/GoldenRails_TalesOfTheWildWest.exe": - when: - os: windows store: steam @@ -227959,20 +228618,20 @@ Golden Rush: installDir: GoldenRush: {} launch: - /GoldenRush.app: + "/GoldenRush.app": - when: - os: mac store: steam - /GoldenRush.exe: + "/GoldenRush.exe": - when: - os: windows store: steam - /GoldenRush.x86: + "/GoldenRush.x86": - when: - bit: 32 os: linux store: steam - /GoldenRush.x86_64: + "/GoldenRush.x86_64": - when: - bit: 64 os: linux @@ -227982,14 +228641,14 @@ Golden Rush: Golden Swords: steam: id: 531490 -'Golden Treasure: The Great Green': +"Golden Treasure: The Great Green": files: - /AppData/LocalLow/Dreaming Door Studios/Golden Treasure - The Great Green/Saves: + "/AppData/LocalLow/Dreaming Door Studios/Golden Treasure - The Great Green/Saves": tags: - config when: - os: windows - /AppData/LocalLow/Dreaming Door Studios/Golden Treasure - The Great Green/Saves/savedGame.gt: + "/AppData/LocalLow/Dreaming Door Studios/Golden Treasure - The Great Green/Saves/savedGame.gt": tags: - save when: @@ -227997,15 +228656,15 @@ Golden Swords: installDir: Golden Treasure The Great Green: {} launch: - /Golden Treasure - The Great Green.exe: + "/Golden Treasure - The Great Green.exe": - when: - os: windows store: steam - /Golden Treasure - The Great Green.x86_64: + "/Golden Treasure - The Great Green.x86_64": - when: - os: linux store: steam - /GoldenTreasureTGG.app/Contents/MacOS/GoldenTreasureTGG: + "/GoldenTreasureTGG.app/Contents/MacOS/GoldenTreasureTGG": - when: - os: mac store: steam @@ -228015,7 +228674,7 @@ Golden War Spirit: installDir: Golden war spirit: {} launch: - /Golden war spirit.exe: + "/Golden war spirit.exe": - when: - os: windows store: steam @@ -228025,20 +228684,23 @@ Golden8bits: installDir: Golden8bits: {} launch: - /Golden8Bits.app/Contents/MacOS/Golden8Bits: + "/Golden8Bits.app/Contents/MacOS/Golden8Bits": - when: - os: mac store: steam - /Golden8Bits.exe: + "/Golden8Bits.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam steam: id: 794230 -'GoldenEye: Source': +"GoldenEye: Source": files: - /cfg: + "/cfg": tags: - config when: @@ -228047,16 +228709,16 @@ Goldmine: installDir: Goldmine: {} launch: - /Goldmine: + "/Goldmine": - when: - bit: 64 os: linux store: steam - /Goldmine.app/Contents/MacOS/Goldmine: + "/Goldmine.app/Contents/MacOS/Goldmine": - when: - os: mac store: steam - /goldmine.exe: + "/goldmine.exe": - when: - os: windows store: steam @@ -228066,11 +228728,11 @@ Goldrushers: installDir: GOLDRUSHERS: {} launch: - /GOLDRUSHERS.app/Contents/MacOS/GOLDRUSHERS: + "/GOLDRUSHERS.app/Contents/MacOS/GOLDRUSHERS": - when: - os: mac store: steam - /GOLDRUSHERS.exe: + "/GOLDRUSHERS.exe": - when: - os: windows store: steam @@ -228078,17 +228740,17 @@ Goldrushers: id: 710630 Golem: files: - /controls.xml: + "/controls.xml": tags: - config when: - os: windows - /Saved Games/Golem: + "/Saved Games/Golem": tags: - save when: - os: windows - /Longbow Digital Arts/Golem/Settings.xml: + "/Longbow Digital Arts/Golem/Settings.xml": tags: - config when: @@ -228098,12 +228760,12 @@ Golem: installDir: Golem: {} launch: - /Golem.exe: + "/Golem.exe": - when: - bit: 32 os: windows store: steam - /Golem64.exe: + "/Golem64.exe": - when: - bit: 64 os: windows @@ -228114,15 +228776,15 @@ Golem Creation Kit: installDir: Golem Creation Kit: {} launch: - /GCK-1.0-market/GCK.app: + "/GCK-1.0-market/GCK.app": - when: - os: mac store: steam - /GCK-1.0-market/GCK.exe: + "/GCK-1.0-market/GCK.exe": - when: - os: windows store: steam - /GCK-1.0-market/GCK.sh: + "/GCK-1.0-market/GCK.sh": - when: - os: linux store: steam @@ -228132,7 +228794,7 @@ Golem Gates: installDir: Golem Gates: {} launch: - /CardRTS.exe: + "/CardRTS.exe": - when: - store: steam steam: @@ -228141,7 +228803,7 @@ Golem Rush: installDir: GolemRush: {} launch: - /MyProject32/Binaries/Win64/MyProject32-Win64-Shipping.exe: + "/MyProject32/Binaries/Win64/MyProject32-Win64-Shipping.exe": - when: - bit: 64 os: windows @@ -228152,7 +228814,7 @@ Golf 2D: installDir: Golf 2D: {} launch: - /Golf 2D.exe: + "/Golf 2D.exe": - when: - store: steam steam: @@ -228161,11 +228823,11 @@ Golf Around!: installDir: GolfAround: {} launch: - /GolfAround.app/Contents/MacOS/GolfAround: + "/GolfAround.app/Contents/MacOS/GolfAround": - when: - os: mac store: steam - /GolfAround.exe: + "/GolfAround.exe": - when: - os: windows store: steam @@ -228175,14 +228837,14 @@ Golf Cart Drive: installDir: Golf Cart Drive: {} launch: - /golf_cart_drive.exe: + "/golf_cart_drive.exe": - when: - store: steam steam: id: 826550 Golf Club Nostalgia: files: - /AppData/LocalLow/Untold Tales/Golf Club_ Wasteland: + "/AppData/LocalLow/Untold Tales/Golf Club_ Wasteland": tags: - save when: @@ -228192,7 +228854,7 @@ Golf Club Nostalgia: installDir: Golf Club Wasteland: {} launch: - /GCWasteland.exe: + "/GCWasteland.exe": - when: - os: windows store: steam @@ -228202,7 +228864,7 @@ Golf Defied: installDir: Golf Defied: {} launch: - /Golf Defied.exe: + "/Golf Defied.exe": - when: - os: windows store: steam @@ -228215,11 +228877,11 @@ Golf Galore: installDir: Golf Galore: {} launch: - /Golf Galore.app/Contents/MacOS/Golf Galore: + "/Golf Galore.app/Contents/MacOS/Golf Galore": - when: - os: mac store: steam - /Golf Galore.exe: + "/Golf Galore.exe": - when: - os: windows store: steam @@ -228229,11 +228891,11 @@ Golf Gang: installDir: Golf Gang: {} launch: - /Golf Gang.exe: + "/Golf Gang.exe": - when: - os: windows store: steam - /Golf Gang.x86_64: + "/Golf Gang.x86_64": - when: - os: linux store: steam @@ -228241,12 +228903,12 @@ Golf Gang: id: 1151050 Golf It!: files: - /GolfIt/Saved/Config/WindowsNoEditor: + "/GolfIt/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /GolfIt/Saved/SaveGames: + "/GolfIt/Saved/SaveGames": tags: - save when: @@ -228254,12 +228916,12 @@ Golf It!: installDir: Golf It!: {} launch: - /GolfIt-Mac-Shipping.app/Contents/MacOS/GolfIt-Mac-Shipping: + "/GolfIt-Mac-Shipping.app/Contents/MacOS/GolfIt-Mac-Shipping": - when: - os: mac store: steam - /GolfIt.exe: - - arguments: '-nohmd' + "/GolfIt.exe": + - arguments: "-nohmd" when: - os: windows store: steam @@ -228269,7 +228931,7 @@ Golf Masters: installDir: Golf Masters: {} launch: - /GolfMasters_SteamVR.exe: + "/GolfMasters_SteamVR.exe": - when: - os: windows store: steam @@ -228277,18 +228939,18 @@ Golf Masters: id: 374970 Golf Peaks: files: - /AppData/LocalLow/Afterburn/Golf Peaks/SaveData.es3: + "/AppData/LocalLow/Afterburn/Golf Peaks/SaveData.es3": tags: - config - save when: - os: windows - /Library/Application Support/Afterburn/Golf Peaks/SaveData.es3: + "/Library/Application Support/Afterburn/Golf Peaks/SaveData.es3": tags: - save when: - os: mac - /Library/Application Support/Afterburn/Golf Peaks/Settings.es3: + "/Library/Application Support/Afterburn/Golf Peaks/Settings.es3": tags: - config when: @@ -228298,11 +228960,11 @@ Golf Peaks: installDir: Golf Peaks: {} launch: - /Golf Peaks.app: + "/Golf Peaks.app": - when: - os: mac store: steam - /Golf Peaks.exe: + "/Golf Peaks.exe": - when: - os: windows store: steam @@ -228324,12 +228986,12 @@ Golf Pro VR: id: 528910 Golf Resort Tycoon II: files: - /Data/saved_games: + "/Data/saved_games": tags: - save when: - os: windows - /settings.bin: + "/settings.bin": tags: - config when: @@ -228338,16 +229000,16 @@ Golf for Workgroups: installDir: Golf for Workgroups: {} launch: - /golf.app: + "/golf.app": - when: - bit: 64 os: mac store: steam - /golf.exe: + "/golf.exe": - when: - os: windows store: steam - /golf.x64: + "/golf.x64": - when: - bit: 64 os: linux @@ -228358,11 +229020,11 @@ Golf on Mars: installDir: Golf On Mars: {} launch: - /GolfOnMars.app/Contents/MacOS/GolfOnMars: + "/GolfOnMars.app/Contents/MacOS/GolfOnMars": - when: - os: mac store: steam - /GolfOnMars.exe: + "/GolfOnMars.exe": - when: - os: windows store: steam @@ -228373,28 +229035,28 @@ Golf on the Moon: id: 1176570 Golf with Your Friends: files: - /.config/unity3d/Team17 Digital Ltd/Golf With Your Friends: + "/.config/unity3d/Team17 Digital Ltd/Golf With Your Friends": tags: - config - save when: - os: linux - /AppData/LocalLow/Team17 Digital Ltd/Golf With Your Friends: + "/AppData/LocalLow/Team17 Digital Ltd/Golf With Your Friends": tags: - save when: - os: windows - /AppData/LocalLow/Team17 Digital Ltd/Golf With Your Friends/gwyf.sav: + "/AppData/LocalLow/Team17 Digital Ltd/Golf With Your Friends/gwyf.sav": tags: - config when: - os: windows - /Library/Application Support/unity.Blacklight Interactive.Golf With Your Friends: + "/Library/Application Support/unity.Blacklight Interactive.Golf With Your Friends": tags: - config when: - os: mac - /Packages/Team17DigitalLimited.GolfWithYourFriendsWin10_j5x4vj4y67jhc/SystemAppData/wgs: + "/Packages/Team17DigitalLimited.GolfWithYourFriendsWin10_j5x4vj4y67jhc/SystemAppData/wgs": tags: - config - save @@ -228407,29 +229069,29 @@ Golf with Your Friends: installDir: Golf With Your Friends: {} launch: - /Golf With Your Friends.app: + "/Golf With Your Friends.app": - when: - os: mac store: steam - - arguments: '-force-glcore' + - arguments: "-force-glcore" when: - os: mac store: steam - /Golf With Your Friends.exe: + "/Golf With Your Friends.exe": - when: - os: windows store: steam - /Golf With Your Friends.x86_64: + "/Golf With Your Friends.x86_64": - when: - bit: 64 os: linux store: steam - - arguments: '-force-opengl' + - arguments: "-force-opengl" when: - bit: 64 os: linux store: steam - - arguments: '-screen-fullscreen 0' + - arguments: "-screen-fullscreen 0" when: - bit: 64 os: linux @@ -228440,19 +229102,19 @@ Golf98: installDir: Golf98: {} launch: - /Golf98.exe: + "/Golf98.exe": - when: - store: steam steam: id: 1170160 GolfTopia: files: - /AppData/LocalLow/MinMax Games/Golftopia/Cloud/SavedData: + "/AppData/LocalLow/MinMax Games/Golftopia/Cloud/SavedData": tags: - save when: - os: windows - /AppData/LocalLow/MinMax Games/Golftopia/Options: + "/AppData/LocalLow/MinMax Games/Golftopia/Options": tags: - config when: @@ -228460,7 +229122,7 @@ GolfTopia: installDir: GolfTopia: {} launch: - /Golftopia.exe: + "/Golftopia.exe": - when: - bit: 64 os: windows @@ -228469,7 +229131,7 @@ GolfTopia: id: 1144020 Golfing over It with Alva Majo: files: - /userdata//817510/remote: + "/userdata//817510/remote": tags: - save when: @@ -228477,20 +229139,20 @@ Golfing over It with Alva Majo: installDir: Golfing Over It with Alva Majo: {} launch: - /Golfing Over It with Alva Majo.app: + "/Golfing Over It with Alva Majo.app": - when: - os: mac store: steam - /Golfing Over It with Alva Majo.exe: + "/Golfing Over It with Alva Majo.exe": - when: - os: windows store: steam - /Golfing Over It with Alva Majo.x86: + "/Golfing Over It with Alva Majo.x86": - when: - bit: 32 os: linux store: steam - /Golfing Over It with Alva Majo.x86_64: + "/Golfing Over It with Alva Majo.x86_64": - when: - bit: 64 os: linux @@ -228501,15 +229163,15 @@ Golfy Golf: installDir: GOLFY GOLF: {} launch: - /Linux/GG_Linux.x86: + "/Linux/GG_Linux.x86": - when: - os: linux store: steam - /Mac/GG_Mac.app: + "/Mac/GG_Mac.app": - when: - os: mac store: steam - /Windows/GG_Windows64/GG_Windows64.exe: + "/Windows/GG_Windows64/GG_Windows64.exe": - when: - bit: 64 os: windows @@ -228522,11 +229184,11 @@ Goliath: installDir: Goliath: {} launch: - /Goliath.app: + "/Goliath.app": - when: - os: mac store: steam - /Goliath.exe: + "/Goliath.exe": - when: - os: windows store: steam @@ -228534,7 +229196,7 @@ Goliath: id: 363520 Gomo: files: - /Gomo/Local Store/saves.dat: + "/Gomo/Local Store/saves.dat": tags: - config - save @@ -228545,46 +229207,46 @@ Gomo: installDir: Gomo: {} launch: - /Gomo.app: + "/Gomo.app": - when: - os: mac store: steam - /Gomo.exe: + "/Gomo.exe": - when: - os: windows store: steam steam: id: 265330 -Gon' E-Choo!: +"Gon' E-Choo!": files: - /AppData/LocalLow/Marc Ellis/Gon' E-Choo!/sync/thekitchensync.sync: + "/AppData/LocalLow/Marc Ellis/Gon' E-Choo!/sync/thekitchensync.sync": tags: - save when: - os: windows installDir: - Gon' E-Choo!: {} + "Gon' E-Choo!": {} launch: - /gonechoo.app: + "/gonechoo.app": - when: - os: mac store: steam - /gonechoo.exe: + "/gonechoo.exe": - when: - os: windows store: steam - /gonechoo.x86: + "/gonechoo.x86": - when: - bit: 32 os: linux store: steam - /gonechoo.x86_64: + "/gonechoo.x86_64": - when: - bit: 64 os: linux store: steam registry: - HKEY_CURRENT_USER/Software/Marc Ellis/Gon' E-Choo!: + "HKEY_CURRENT_USER/Software/Marc Ellis/Gon' E-Choo!": tags: - config steam: @@ -228593,7 +229255,7 @@ Gone Astray: installDir: Gone Astray: {} launch: - /GoneAstray.exe: + "/GoneAstray.exe": - when: - bit: 64 os: windows @@ -228604,8 +229266,8 @@ Gone Fireflies: installDir: Gone Fireflies: {} launch: - /nw.exe: - - arguments: '--in-process-gpu' + "/nw.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam @@ -228613,23 +229275,23 @@ Gone Fireflies: id: 784100 Gone Home: files: - /.config/unity3d/The Fullbright Company/Gone Home: + "/.config/unity3d/The Fullbright Company/Gone Home": tags: - config - save when: - os: linux - /AppData/LocalLow/The Fullbright Company/Gone Home: + "/AppData/LocalLow/The Fullbright Company/Gone Home": tags: - config when: - os: windows - /AppData/LocalLow/The Fullbright Company/Gone Home/Saves: + "/AppData/LocalLow/The Fullbright Company/Gone Home/Saves": tags: - save when: - os: windows - /Library/Caches/unity.The Fullbright Company.Gone Home: + "/Library/Caches/unity.The Fullbright Company.Gone Home": tags: - config - save @@ -228640,21 +229302,21 @@ Gone Home: installDir: Gone Home: {} launch: - /GoneHome.app: + "/GoneHome.app": - when: - os: mac store: steam - /GoneHome.exe: + "/GoneHome.exe": - when: - bit: 64 os: windows store: steam - /GoneHome32.exe: + "/GoneHome32.exe": - when: - bit: 32 os: windows store: steam - /Launch.sh: + "/Launch.sh": - when: - os: linux store: steam @@ -228664,7 +229326,7 @@ Gone In November: installDir: Gone In November: {} launch: - /Launcher.exe: + "/Launcher.exe": - when: - os: windows store: steam @@ -228676,7 +229338,7 @@ Gone Viral: installDir: GoneViral: {} launch: - /GoneViral.exe: + "/GoneViral.exe": - when: - os: windows store: steam @@ -228686,7 +229348,7 @@ Gone with the Demon: installDir: Gone with the Demon: {} launch: - /GoneWithTheDemon.exe: + "/GoneWithTheDemon.exe": - when: - bit: 64 os: windows @@ -228700,12 +229362,12 @@ Gonio VR: id: 619250 Gonner: files: - /.config/unity3d/Art in Heart/GoNNER: + "/.config/unity3d/Art in Heart/GoNNER": tags: - config when: - os: linux - /AppData/LocalLow/Art in Heart/GoNNER: + "/AppData/LocalLow/Art in Heart/GoNNER": tags: - config - save @@ -228716,15 +229378,15 @@ Gonner: installDir: GoNNER: {} launch: - /GoNNER.exe: + "/GoNNER.exe": - when: - os: windows store: steam - /Gonner.x86_64: + "/Gonner.x86_64": - when: - os: linux store: steam - /MacSteam.app: + "/MacSteam.app": - when: - os: mac store: steam @@ -228740,15 +229402,15 @@ Gonner2: installDir: GONNER 2: {} launch: - /GONNER2: + "/GONNER2": - when: - os: linux store: steam - /GONNER2.app: + "/GONNER2.app": - when: - os: mac store: steam - /GONNER2.exe: + "/GONNER2.exe": - when: - os: windows store: steam @@ -228763,7 +229425,7 @@ Goo Saga - HD Edition: installDir: Goo Saga - HD Edition: {} launch: - /goosaga.exe: + "/goosaga.exe": - when: - os: windows store: steam @@ -228775,19 +229437,19 @@ GooCubelets: GooCubelets 2: steam: id: 416270 -'GooCubelets: Color Blocking': +"GooCubelets: Color Blocking": steam: id: 662270 -'GooCubelets: OCD': +"GooCubelets: OCD": steam: id: 460660 -'GooCubelets: RGB': +"GooCubelets: RGB": steam: id: 659850 -'GooCubelets: The Algoorithm': +"GooCubelets: The Algoorithm": steam: id: 431270 -'GooCubelets: The Void': +"GooCubelets: The Void": steam: id: 505440 GooHuebelets: @@ -228797,7 +229459,7 @@ Gooberries: installDir: Gooberries: {} launch: - /GooBerries.exe: + "/GooBerries.exe": - when: - bit: 64 os: windows @@ -228816,7 +229478,7 @@ Good Boy!: installDir: Good Boy!: {} launch: - /GGame.exe: + "/GGame.exe": - when: - os: windows store: steam @@ -228824,27 +229486,28 @@ Good Boy!: id: 840440 Good Company: files: - /userdata//911430/remote: + "/userdata//911430/remote": tags: - save when: - store: steam - /GOG.com/Galaxy/Applications/52756061851437994/Storage/Shared/Files: + "/GOG.com/Galaxy/Applications/52756061851437994/Storage/Shared/Files": tags: - save when: - - store: gog - /GoodCompany/saves: + - os: windows + store: gog + "/GoodCompany/saves": tags: - save when: - - store: epic + - os: windows gog: id: 1220669720 installDir: Good Company: {} launch: - /GoodCompany.exe: + "/GoodCompany.exe": - when: - os: windows store: steam @@ -228854,21 +229517,21 @@ Good Doggo: installDir: Good Doggo: {} launch: - /GoodDoggo_steam_linux.x86: + "/GoodDoggo_steam_linux.x86": - when: - bit: 32 os: linux store: steam - /GoodDoggo_steam_linux.x86_64: + "/GoodDoggo_steam_linux.x86_64": - when: - bit: 64 os: linux store: steam - /GoodDoggo_steam_mac.app: + "/GoodDoggo_steam_mac.app": - when: - os: mac store: steam - /GoodDoggo_steam_win.exe: + "/GoodDoggo_steam_win.exe": - when: - os: windows store: steam @@ -228878,7 +229541,7 @@ Good Girl: installDir: goodgirl: {} launch: - /goodgirl.exe: + "/goodgirl.exe": - when: - os: windows store: steam @@ -228888,11 +229551,11 @@ Good Goods Incorporated: installDir: Good Goods Incorporated: {} launch: - /GoodGoodsInc.app: + "/GoodGoodsInc.app": - when: - os: mac store: steam - /GoodGoodsInc.exe: + "/GoodGoodsInc.exe": - when: - os: windows store: steam @@ -228902,7 +229565,7 @@ Good Morning: installDir: GoodMorning: {} launch: - /GoodMorning.exe: + "/GoodMorning.exe": - when: - store: steam steam: @@ -228916,20 +229579,20 @@ Good Mourning: installDir: Good Mourning: {} launch: - /Good Mourning.exe: + "/Good Mourning.exe": - when: - os: windows store: steam steam: id: 1338790 -'Good Night, Knight': +"Good Night, Knight": files: - /Good_Night__Knight/Data/plsnoedit1.txt: + "/Good_Night__Knight/Data/plsnoedit1.txt": tags: - save when: - os: windows - /Good_Night__Knight/config.ini: + "/Good_Night__Knight/config.ini": tags: - save when: @@ -228940,23 +229603,23 @@ Good Mourning: steamExtra: - 1403930 installDir: - 'Good Night, Knight': {} + "Good Night, Knight": {} launch: - '/Good Night, Knight.exe': + "/Good Night, Knight.exe": - when: - os: windows store: steam steam: id: 1133050 -'Good Pizza, Great Pizza': +"Good Pizza, Great Pizza": installDir: - 'Good Pizza, Great Pizza': {} + "Good Pizza, Great Pizza": {} launch: - /GPGP_Mac.app: + "/GPGP_Mac.app": - when: - os: mac store: steam - /PizzaBusiness.exe: + "/PizzaBusiness.exe": - when: - os: windows store: steam @@ -228966,7 +229629,7 @@ Good Robot: installDir: Good Robot: {} launch: - /GoodRobot.exe: + "/GoodRobot.exe": - when: - os: windows store: steam @@ -228976,12 +229639,12 @@ Good doktor: installDir: Good doktor: {} launch: - /Gooddoktor.exe: + "/Gooddoktor.exe": - when: - bit: 64 os: windows store: steam - /nw.exe: + "/nw.exe": - when: - bit: 64 os: windows @@ -228993,19 +229656,19 @@ Goodbye 2019 (Interactive Movie): id: 1216130 Goodbye Deponia: files: - /Library/Application Support/Daedalic Entertainment/Deponia 3: + "/Library/Application Support/Daedalic Entertainment/Deponia 3": tags: - config - save when: - os: mac - /Daedalic Entertainment/Deponia 3: + "/Daedalic Entertainment/Deponia 3": tags: - config - save when: - os: windows - /Daedalic Entertainment/Deponia 3: + "/Daedalic Entertainment/Deponia 3": tags: - config - save @@ -229016,16 +229679,16 @@ Goodbye Deponia: installDir: Goodbye Deponia: {} launch: - /Deponia3.exe: + "/Deponia3.exe": - when: - os: windows store: steam - /Goodbye Deponia.app: + "/Goodbye Deponia.app": - when: - bit: 64 os: mac store: steam - /start: + "/start": - when: - bit: 64 os: linux @@ -229037,7 +229700,7 @@ Goodbye My King: id: 647410 Goodbye Volcano High: files: - /Goodbye Volcano High_Data/saves: + "/Goodbye Volcano High_Data/saves": tags: - config - save @@ -229046,7 +229709,7 @@ Goodbye Volcano High: installDir: Goodbye Volcano High: {} launch: - /Goodbye Volcano High.exe: + "/Goodbye Volcano High.exe": - when: - bit: 64 os: windows @@ -229060,7 +229723,7 @@ Goodnight Butcher: installDir: Goodnight Butcher: {} launch: - /GoodnightButcher.exe: + "/GoodnightButcher.exe": - when: - os: windows store: steam @@ -229074,9 +229737,9 @@ Google Earth VR: EarthVR: {} steam: id: 348250 -'Google Spotlight Stories: Age of Sail': +"Google Spotlight Stories: Age of Sail": files: - /Google Spotlight Stories Piggy/storyplayer.cfg: + "/Google Spotlight Stories Piggy/storyplayer.cfg": tags: - config when: @@ -229085,9 +229748,9 @@ Google Earth VR: Google Spotlight Stories Age of Sail: {} steam: id: 882110 -'Google Spotlight Stories: Back to the Moon': +"Google Spotlight Stories: Back to the Moon": files: - /Back to the Moon/storyplayer.cfg: + "/Back to the Moon/storyplayer.cfg": tags: - config when: @@ -229096,9 +229759,9 @@ Google Earth VR: Back to the Moon: {} steam: id: 832080 -'Google Spotlight Stories: On Ice': +"Google Spotlight Stories: On Ice": files: - /Google Spotlight Stories On Ice/storyplayer.cfg: + "/Google Spotlight Stories On Ice/storyplayer.cfg": tags: - config when: @@ -229107,9 +229770,9 @@ Google Earth VR: Google Spotlight Stories On Ice: {} steam: id: 750360 -'Google Spotlight Stories: Pearl': +"Google Spotlight Stories: Pearl": files: - /Google Spotlight Stories - Pearl/saves: + "/Google Spotlight Stories - Pearl/saves": tags: - save when: @@ -229118,9 +229781,9 @@ Google Earth VR: Google Spotlight Stories - Pearl: {} steam: id: 476540 -'Google Spotlight Stories: Piggy': +"Google Spotlight Stories: Piggy": files: - /Google Spotlight Stories Piggy/storyplayer.cfg: + "/Google Spotlight Stories Piggy/storyplayer.cfg": tags: - config when: @@ -229129,9 +229792,9 @@ Google Earth VR: Google Spotlight Stories Piggy: {} steam: id: 750350 -'Google Spotlight Stories: Rain or Shine': +"Google Spotlight Stories: Rain or Shine": files: - /Google Spotlight Stories - Rain or Shine/storyplayer.cfg: + "/Google Spotlight Stories - Rain or Shine/storyplayer.cfg": tags: - config when: @@ -229140,9 +229803,9 @@ Google Earth VR: Google Spotlight Stories - Rain or Shine: {} steam: id: 714610 -'Google Spotlight Stories: Son of Jaguar': +"Google Spotlight Stories: Son of Jaguar": files: - /Google Spotlight Stories - Son of Jaguar/storyplayer.cfg: + "/Google Spotlight Stories - Son of Jaguar/storyplayer.cfg": tags: - config when: @@ -229151,9 +229814,9 @@ Google Earth VR: Google Spotlight Stories - Son of Jaguar: {} steam: id: 714580 -'Google Spotlight Stories: Sonaria': +"Google Spotlight Stories: Sonaria": files: - /Google Spotlight Stories - Sonaria/storyplayer.cfg: + "/Google Spotlight Stories - Sonaria/storyplayer.cfg": tags: - config when: @@ -229162,9 +229825,9 @@ Google Earth VR: Google Spotlight Stories - Sonaria: {} steam: id: 713320 -'Google Spotlight Stories: Special Delivery': +"Google Spotlight Stories: Special Delivery": files: - /Google Spotlight Stories - Special Delivery/storyplayer.cfg: + "/Google Spotlight Stories - Special Delivery/storyplayer.cfg": tags: - config when: @@ -229177,41 +229840,41 @@ Goose Goose Duck: installDir: Goose Goose Duck: {} launch: - /GGD.app: + "/GGD.app": - when: - os: mac store: steam - /Goose Goose Duck.exe: + "/Goose Goose Duck.exe": - when: - bit: 64 os: windows store: steam steam: id: 1568590 -'Goosebumps: Dead of Night': +"Goosebumps: Dead of Night": installDir: Goosebumps Dead of Night: {} launch: - /Goosebumps_DeadOfNight.exe: + "/Goosebumps_DeadOfNight.exe": - when: - os: windows store: steam steam: id: 1173150 -'Goosebumps: Escape from Horrorland': +"Goosebumps: Escape from Horrorland": registry: HKEY_LOCAL_MACHINE/SOFTWARE/WOW6432Node/DreamWorks Interactive/Horrorland: tags: - config - save -'Goosebumps: The Game': +"Goosebumps: The Game": files: - /Wayforward/Goosebumps/save*.sav: + "/Wayforward/Goosebumps/save*.sav": tags: - save when: - os: windows - /Wayforward/Goosebumps/wfEngine.ini: + "/Wayforward/Goosebumps/wfEngine.ini": tags: - config when: @@ -229219,7 +229882,7 @@ Goose Goose Duck: installDir: Goosebumps: {} launch: - /executable/goosebumps.exe: + "/executable/goosebumps.exe": - when: - os: windows store: steam @@ -229229,26 +229892,26 @@ Gopnik Simulator: installDir: Gopnik Simulator: {} launch: - /GopnikSimulator.exe: + "/GopnikSimulator.exe": - when: - store: steam steam: id: 853210 -'Gorasul: The Legacy of the Dragon': +"Gorasul: The Legacy of the Dragon": files: - /Save: + "/Save": tags: - save when: - os: windows Gordian Quest: files: - /AppData/LocalLow/MixedRealms/GordianQuest/Preferences.json: + "/AppData/LocalLow/MixedRealms/GordianQuest/Preferences.json": tags: - config when: - os: windows - /AppData/LocalLow/MixedRealms/GordianQuest/Saves: + "/AppData/LocalLow/MixedRealms/GordianQuest/Saves": tags: - save when: @@ -229258,7 +229921,7 @@ Gordian Quest: installDir: GordianQuest: {} launch: - /GordianQuest.exe: + "/GordianQuest.exe": - when: - os: windows store: steam @@ -229268,44 +229931,44 @@ Gordian Quest: - config steam: id: 981430 -'Gordian Rooms 2: A Curious Island': +"Gordian Rooms 2: A Curious Island": files: - /GordianRooms2/Saved/Config/Windows: + "/GordianRooms2/Saved/Config/Windows": tags: - config when: - os: windows - /GordianRooms2/Saved/SaveGames: + "/GordianRooms2/Saved/SaveGames": tags: - save when: - os: windows id: steamExtra: - - 2117290 - 1906260 + - 2117290 steam: id: 1528220 -'Gordian Rooms: A Curious Heritage': +"Gordian Rooms: A Curious Heritage": files: - /GordianRoom/Saved/Config/WindowsNoEditor: + "/GordianRoom/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /GordianRoom/Saved/SaveGames: + "/GordianRoom/Saved/SaveGames": tags: - save when: - os: windows id: steamExtra: - - 1386790 - 1367510 + - 1386790 installDir: Gordian Rooms A curious heritage: {} launch: - /GordianRoom.exe: + "/GordianRoom.exe": - when: - bit: 64 os: windows @@ -229316,14 +229979,14 @@ Gordon Streaman: installDir: Gordon Streaman: {} launch: - /Gordon Streaman.exe: + "/Gordon Streaman.exe": - when: - store: steam steam: id: 1131810 -'Gore: Ultimate Soldier': +"Gore: Ultimate Soldier": files: - /settings: + "/settings": tags: - config when: @@ -229332,7 +229995,7 @@ Gorescript: installDir: Gorescript: {} launch: - /gorescript.exe: + "/gorescript.exe": - when: - bit: 64 os: windows @@ -229343,11 +230006,11 @@ Gorgeous Elves of Ganassa: installDir: Gorgeous Elves of Ganassa: {} launch: - /Gorgeous Elves of Ganassa.app: + "/Gorgeous Elves of Ganassa.app": - when: - os: mac store: steam - /Gorgeous Elves of Ganassa.exe: + "/Gorgeous Elves of Ganassa.exe": - when: - os: windows store: steam @@ -229362,7 +230025,7 @@ Gorilla Unko: installDir: Gorilla Unko: {} launch: - /GorillaUnko.exe: + "/GorillaUnko.exe": - when: - os: windows store: steam @@ -229370,17 +230033,17 @@ Gorilla Unko: id: 1047120 Gorky 17: files: - /SAVEGAME: + "/SAVEGAME": tags: - save when: - os: windows - /SaveGame: + "/SaveGame": tags: - save when: - os: mac - /gorky17.cfg: + "/gorky17.cfg": tags: - config when: @@ -229390,15 +230053,15 @@ Gorky 17: installDir: Gorky 17: {} launch: - /Gorky 17.app: + "/Gorky 17.app": - when: - os: mac store: steam - /Gorky17.exe: + "/Gorky17.exe": - when: - os: windows store: steam - /RunGame: + "/RunGame": - when: - os: linux store: steam @@ -229417,26 +230080,28 @@ Goro 2: id: 732870 Gorogoa: files: - /AppData/LocalLow/Annapurna/Gorogoa//SaveGame.sav.xml: + "/AppData/LocalLow/Annapurna/Gorogoa//SaveGame.sav.xml": tags: - save when: - - store: steam - /GOG.com/Galaxy/Applications/50686913489464392/Storage/Shared/Files: + - os: windows + store: steam + "/GOG.com/Galaxy/Applications/50686913489464392/Storage/Shared/Files": tags: - save when: - - store: gog + - os: windows + store: gog gog: id: 1988613419 installDir: Gorogoa: {} launch: - /Gorogoa.app: + "/Gorogoa.app": - when: - os: mac store: steam - /Gorogoa.exe: + "/Gorogoa.exe": - when: - os: windows store: steam @@ -229450,20 +230115,20 @@ Goroons: installDir: Goroons: {} launch: - /Goroons.app/Contents/MacOS/Goroons: + "/Goroons.app/Contents/MacOS/Goroons": - when: - os: mac store: steam - /Goroons.exe: + "/Goroons.exe": - when: - os: windows store: steam - /Goroons.x86: + "/Goroons.x86": - when: - bit: 32 os: linux store: steam - /Goroons.x86_64: + "/Goroons.x86_64": - when: - os: linux store: steam @@ -229473,11 +230138,11 @@ Gorytale: installDir: Gorytale: {} launch: - /Gorytale.app/Contents/MacOS/Gorytale: + "/Gorytale.app/Contents/MacOS/Gorytale": - when: - os: mac store: steam - /Gorytale.exe: + "/Gorytale.exe": - when: - os: windows store: steam @@ -229487,20 +230152,20 @@ Goscurry: installDir: Goscurry: {} launch: - /Goscurry.app: + "/Goscurry.app": - when: - os: mac store: steam - /Goscurry.exe: + "/Goscurry.exe": - when: - os: windows store: steam - /Goscurry.x86: + "/Goscurry.x86": - when: - bit: 32 os: linux store: steam - /Goscurry.x86_64: + "/Goscurry.x86_64": - when: - bit: 64 os: linux @@ -229511,7 +230176,7 @@ Gotcha Racing 2nd: installDir: Gotcha Racing 2nd: {} launch: - /Gotcha Racing 2nd.exe: + "/Gotcha Racing 2nd.exe": - when: - os: windows store: steam @@ -229519,7 +230184,7 @@ Gotcha Racing 2nd: id: 848960 Gotcha! Extreme Paintball: files: - /Gotcha.cfg: + "/Gotcha.cfg": tags: - config when: @@ -229531,7 +230196,7 @@ Gotham City Impostors: installDir: Gotham City Impostors F2P: {} launch: - /Impostors.exe: + "/Impostors.exe": - when: - store: steam steam: @@ -229541,43 +230206,45 @@ Gotham Gangsta: id: 572870 Gotham Knights: files: - /Mercury/Saved/Config/WindowsNoEditor: + "/Mercury/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /Packages/WarnerBros.Interactive.ea2bab08-46b7-40e4-bdd5-590_ktmk1xygcecda/SystemAppData/wgs/: + "/Packages/WarnerBros.Interactive.ea2bab08-46b7-40e4-bdd5-590_ktmk1xygcecda/SystemAppData/wgs/": tags: - save when: - os: windows store: microsoft - /WB Games/Gotham Knights/Steam: + "/WB Games/Gotham Knights/Steam": tags: - config when: - - store: steam - /WB Games/Gotham Knights/Steam/Saved/SaveGames/: + - os: windows + store: steam + "/WB Games/Gotham Knights/Steam/Saved/SaveGames/": tags: - save when: - - store: steam + - os: windows + store: steam installDir: Gotham Knights: {} launch: - /GothamKnights.exe: + "/GothamKnights.exe": - when: - store: steam steam: id: 1496790 Gothic: files: - /Saves: + "/Saves": tags: - save when: - os: windows - /system/GOTHIC.INI: + "/system/GOTHIC.INI": tags: - config when: @@ -229587,10 +230254,10 @@ Gothic: installDir: Gothic: {} launch: - /system/GOTHIC.EXE: + "/system/GOTHIC.EXE": - when: - store: steam - workingDir: /system + workingDir: "/system" steam: id: 65540 Gothic 1 Remake: @@ -229600,12 +230267,12 @@ Gothic 1 Remake: id: 1297900 Gothic 3: files: - /gothic3: + "/gothic3": tags: - save when: - os: windows - /gothic3/UserOptions.ini: + "/gothic3/UserOptions.ini": tags: - config when: @@ -229615,19 +230282,19 @@ Gothic 3: installDir: Gothic 3: {} launch: - /Gothic3.exe: + "/Gothic3.exe": - when: - store: steam steam: id: 39500 -'Gothic 3: Forsaken Gods': +"Gothic 3: Forsaken Gods": files: - /Gothic3ForsakenGods: + "/Gothic3ForsakenGods": tags: - save when: - os: windows - /Gothic3ForsakenGods/_UserOptions.ini: + "/Gothic3ForsakenGods/_UserOptions.ini": tags: - config when: @@ -229637,19 +230304,19 @@ Gothic 3: installDir: Gothic 3 Forsaken Gods: {} launch: - /Gothic III Forsaken Gods.exe: + "/Gothic III Forsaken Gods.exe": - when: - store: steam steam: id: 65600 Gothic II: files: - /Saves: + "/Saves": tags: - save when: - os: windows - /system/GOTHIC.INI: + "/system/GOTHIC.INI": tags: - config when: @@ -229659,7 +230326,7 @@ Gothic II: installDir: Gothic II: {} launch: - /system/Gothic2.exe: + "/system/Gothic2.exe": - when: - store: steam steam: @@ -229679,7 +230346,7 @@ Gothicc Breaker: installDir: Gothicc Breaker: {} launch: - /Gothicc Breaker.exe: + "/Gothicc Breaker.exe": - when: - os: windows store: steam @@ -229689,23 +230356,23 @@ Goto: installDir: goto: {} launch: - /goto.exe: + "/goto.exe": - when: - store: steam steam: id: 906880 -'Gotta Get Going: Steam Smugglers VR': +"Gotta Get Going: Steam Smugglers VR": steam: id: 783320 Gotta Go: installDir: Gotta Go: {} launch: - /Gotta_Go_Mac.app: + "/Gotta_Go_Mac.app": - when: - os: mac store: steam - /Gotta_Go_Windows.exe: + "/Gotta_Go_Windows.exe": - when: - os: windows store: steam @@ -229715,11 +230382,11 @@ GourMelee: installDir: GourMelee: {} launch: - /GourMelee.app: + "/GourMelee.app": - when: - os: mac store: steam - /GourMelee.exe: + "/GourMelee.exe": - when: - os: windows store: steam @@ -229727,7 +230394,7 @@ GourMelee: id: 1081410 Gourmet Warriors: files: - /res: + "/res": tags: - config - save @@ -229738,7 +230405,7 @@ Gourmet Warriors: installDir: Gourmet Warriors: {} launch: - /gourmet warriors.exe: + "/gourmet warriors.exe": - when: - os: windows store: steam @@ -229748,7 +230415,7 @@ Government Simulator: installDir: Government Simulator: {} launch: - /gs.exe: + "/gs.exe": - when: - os: windows store: steam @@ -229756,7 +230423,7 @@ Government Simulator: id: 731920 Governor of Poker 2: files: - /YoudaGames/Governor_of_Poker2_v100_standard/save: + "/YoudaGames/Governor_of_Poker2_v100_standard/save": tags: - save when: @@ -229764,7 +230431,7 @@ Governor of Poker 2: installDir: GovernorofPoker2_SE_Full: {} launch: - /GovernorofPoker2_SE.exe: + "/GovernorofPoker2_SE.exe": - when: - store: steam steam: @@ -229773,11 +230440,11 @@ Governor of Poker 3: installDir: Governor of poker 3: {} launch: - /GOP3.app/Contents/MacOS/GOP3: + "/GOP3.app/Contents/MacOS/GOP3": - when: - os: mac store: steam - /GOP3.exe: + "/GOP3.exe": - when: - os: windows store: steam @@ -229787,7 +230454,7 @@ GraFi: installDir: GraFi: {} launch: - /GraFi.exe: + "/GraFi.exe": - when: - os: windows store: steam @@ -229797,7 +230464,7 @@ GraFi 2: installDir: GraFi 2: {} launch: - /GraFi 2.exe: + "/GraFi 2.exe": - when: - os: windows store: steam @@ -229807,7 +230474,7 @@ GraFi 3: installDir: GraFi 3: {} launch: - /GraFi 3.exe: + "/GraFi 3.exe": - when: - os: windows store: steam @@ -229817,7 +230484,7 @@ GraFi 4: installDir: GraFi 4: {} launch: - /GraFi 4.exe: + "/GraFi 4.exe": - when: - os: windows store: steam @@ -229825,7 +230492,7 @@ GraFi 4: id: 1150790 GraFi Christmas: files: - /.: + "/.": tags: - save when: @@ -229833,7 +230500,7 @@ GraFi Christmas: installDir: GraFi Christmas: {} launch: - /GraFi Christmas.exe: + "/GraFi Christmas.exe": - when: - os: windows store: steam @@ -229841,7 +230508,7 @@ GraFi Christmas: id: 1192500 GraFi Halloween: files: - /.: + "/.": tags: - save when: @@ -229849,7 +230516,7 @@ GraFi Halloween: installDir: GraFi Halloween: {} launch: - /GraFi Halloween.exe: + "/GraFi Halloween.exe": - when: - os: windows store: steam @@ -229859,7 +230526,7 @@ GraFi Lunar: installDir: GraFi Lunar: {} launch: - /GraFi Lunar.exe: + "/GraFi Lunar.exe": - when: - os: windows store: steam @@ -229869,7 +230536,7 @@ Grab Lab: installDir: GrabLab: {} launch: - /GrabLab.exe: + "/GrabLab.exe": - when: - os: windows store: steam @@ -229879,15 +230546,15 @@ Grab the Bottle: installDir: Grab the Bottle: {} launch: - /GrabTheBottle.exe: + "/GrabTheBottle.exe": - when: - os: windows store: steam - /GrabTheBottle.x86: + "/GrabTheBottle.x86": - when: - os: linux store: steam - /Mac.app/Contents/MacOS/Mac: + "/Mac.app/Contents/MacOS/Mac": - when: - os: mac store: steam @@ -229902,7 +230569,7 @@ Grabity: installDir: Grabity: {} launch: - /Grabity.exe: + "/Grabity.exe": - when: - os: windows store: steam @@ -229917,11 +230584,11 @@ Grace: installDir: Grace: {} launch: - /Grace.app: + "/Grace.app": - when: - os: mac store: steam - /grace.exe: + "/grace.exe": - when: - os: windows store: steam @@ -229931,7 +230598,7 @@ Grace of Zordan: installDir: Grace of Zordan: {} launch: - /GOZ.exe: + "/GOZ.exe": - when: - os: windows store: steam @@ -229939,7 +230606,7 @@ Grace of Zordan: id: 685420 Graceful Explosion Machine: files: - /graceful_explosion_machine: + "/graceful_explosion_machine": tags: - config - save @@ -229948,7 +230615,7 @@ Graceful Explosion Machine: installDir: Graceful Explosion Machine: {} launch: - /gem.exe: + "/gem.exe": - when: - os: windows store: steam @@ -229961,11 +230628,11 @@ Graduated: installDir: Graduated: {} launch: - /Graduated.exe: + "/Graduated.exe": - when: - os: windows store: steam - /graduated_mac.app: + "/graduated_mac.app": - when: - os: mac store: steam @@ -229980,21 +230647,21 @@ Grail to the Thief: installDir: Grail to the Thief: {} launch: - /Grail to the Thief v1.05 (Linux).x86: + "/Grail to the Thief v1.05 (Linux).x86": - when: - bit: 32 os: linux store: steam - /Grail to the Thief v1.05 (Linux).x86_64: + "/Grail to the Thief v1.05 (Linux).x86_64": - when: - bit: 64 os: linux store: steam - /Grail to the Thief v1.05 (Mac).app: + "/Grail to the Thief v1.05 (Mac).app": - when: - os: mac store: steam - /Grail to the Thief v1.05 (Windows).exe: + "/Grail to the Thief v1.05 (Windows).exe": - when: - os: windows store: steam @@ -230004,15 +230671,15 @@ Gral: installDir: GRAL: {} launch: - /Contents/MacOS/GRAL_MAC: + "/Contents/MacOS/GRAL_MAC": - when: - os: mac store: steam - /GRAL.exe: + "/GRAL.exe": - when: - os: windows store: steam - /GRAL.x86_64: + "/GRAL.x86_64": - when: - os: linux store: steam @@ -230022,11 +230689,11 @@ Gran Skrea Online: installDir: Gran Skrea Online: {} launch: - /GSO.exe: + "/GSO.exe": - when: - os: windows store: steam - /Gran Skrea Online.app: + "/Gran Skrea Online.app": - when: - os: mac store: steam @@ -230036,7 +230703,7 @@ Gran Vitreous: installDir: Gran Vitreous: {} launch: - /GranVitreous.exe: + "/GranVitreous.exe": - when: - os: windows store: steam @@ -230046,27 +230713,27 @@ Granado Espada: installDir: Granado Espada: {} launch: - /ge.exe: - - arguments: '-steam' + "/ge.exe": + - arguments: "-steam" when: - os: windows store: steam steam: id: 319730 -'Granblue Fantasy Versus: Rising': +"Granblue Fantasy Versus: Rising": steam: id: 2157560 -'Granblue Fantasy: Relink': +"Granblue Fantasy: Relink": steam: id: 881020 -'Granblue Fantasy: Versus': +"Granblue Fantasy: Versus": files: - /GBVS/Saved/Config/WindowsNoEditor: + "/GBVS/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /GBVS/Saved/SaveGames: + "/GBVS/Saved/SaveGames": tags: - save when: @@ -230074,25 +230741,25 @@ Granado Espada: installDir: Granblue Fantasy Versus: {} launch: - /GBVS.exe: + "/GBVS.exe": - when: - os: windows store: steam steam: id: 1090630 -'Grand Academy II: Attack of the Sequel': +"Grand Academy II: Attack of the Sequel": installDir: Grand Academy II Attack of the Sequel: {} launch: - /Grand Academy II Attack of the Sequel.app/Contents/MacOS/Grand Academy II Attack of the Sequel: + "/Grand Academy II Attack of the Sequel.app/Contents/MacOS/Grand Academy II Attack of the Sequel": - when: - os: mac store: steam - /GrandAcademy2: + "/GrandAcademy2": - when: - os: linux store: steam - /GrandAcademy2.exe: + "/GrandAcademy2.exe": - when: - os: windows store: steam @@ -230102,43 +230769,43 @@ Grand Academy for Future Villains: installDir: Grand Academy for Future Villains: {} launch: - /Grand Academy for Future Villains.app/Contents/MacOS/Grand Academy for Future Villains: + "/Grand Academy for Future Villains.app/Contents/MacOS/Grand Academy for Future Villains": - when: - os: mac store: steam - /GrandAcademyForFutureVillains: + "/GrandAcademyForFutureVillains": - when: - os: linux store: steam - /GrandAcademyForFutureVillains.exe: + "/GrandAcademyForFutureVillains.exe": - when: - os: windows store: steam steam: id: 711240 -'Grand Ages: Medieval': +"Grand Ages: Medieval": gog: id: 1442498547 installDir: Grand Ages Medieval: {} launch: - /App: + "/App": - when: - os: linux store: steam - /Grand Ages Medieval.app/Contents/MacOS/Grand Ages Medieval: + "/Grand Ages Medieval.app/Contents/MacOS/Grand Ages Medieval": - when: - os: mac store: steam - /GrandAgesMedieval.exe: + "/GrandAgesMedieval.exe": - when: - os: windows store: steam steam: id: 310470 -'Grand Ages: Rome': +"Grand Ages: Rome": files: - /Reign of Augustus/Saves: + "/Reign of Augustus/Saves": tags: - save when: @@ -230149,7 +230816,7 @@ Grand Academy for Future Villains: installDir: Grand Ages Rome: {} launch: - /Rome.exe: + "/Rome.exe": - when: - store: steam steam: @@ -230158,7 +230825,7 @@ Grand Battle: installDir: GrandBattle: {} launch: - /Grand Battle.exe: + "/Grand Battle.exe": - when: - os: windows store: steam @@ -230168,7 +230835,7 @@ Grand Brix Shooter: installDir: Grand Brix Shooter: {} launch: - /Grand Brix Shooter.exe: + "/Grand Brix Shooter.exe": - when: - os: windows store: steam @@ -230176,7 +230843,7 @@ Grand Brix Shooter: id: 1115580 Grand Class Melee 2: files: - /Ogopogoid/Grand Class Melee 2/savegame.sav: + "/Ogopogoid/Grand Class Melee 2/savegame.sav": tags: - save when: @@ -230184,11 +230851,11 @@ Grand Class Melee 2: installDir: Grand Class Melee 2: {} launch: - /Grand Class Melee.exe: + "/Grand Class Melee.exe": - when: - os: windows store: steam - /gcm2_wineskinner_x_01.app: + "/gcm2_wineskinner_x_01.app": - when: - os: mac store: steam @@ -230198,7 +230865,7 @@ Grand Dude Simulator: installDir: Grand Dude Simulator: {} launch: - /GrandDudeSimulator.exe: + "/GrandDudeSimulator.exe": - when: - os: windows store: steam @@ -230208,7 +230875,7 @@ Grand Guilds: installDir: Grand Guilds: {} launch: - /GrandGuilds.exe: + "/GrandGuilds.exe": - when: - bit: 64 os: windows @@ -230219,15 +230886,15 @@ Grand Hand: installDir: Dexterity: {} launch: - /Dexterity.app/Contents/MacOS/Dexterity: + "/Dexterity.app/Contents/MacOS/Dexterity": - when: - os: mac store: steam - /Dexterity.exe: + "/Dexterity.exe": - when: - os: windows store: steam - /Dexterity.x86: + "/Dexterity.x86": - when: - os: linux store: steam @@ -230237,22 +230904,25 @@ Grand Kokoro - Episode 1: installDir: Grand Kokoro - Episode 1: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam steam: id: 889030 -Grand Pigeon's Duty: +"Grand Pigeon's Duty": installDir: GPD: {} launch: - /nw: + "/nw": - when: - bit: 32 os: linux store: steam - /nw.exe: + - bit: 64 + os: linux + store: steam + "/nw.exe": - when: - os: windows store: steam @@ -230265,30 +230935,30 @@ Grand Strategy: installDir: Grand Strategy: {} launch: - /GrandStrategyClient: + "/GrandStrategyClient": - when: - os: linux store: steam - /GrandStrategyClient.exe: + "/GrandStrategyClient.exe": - when: - os: windows store: steam steam: id: 952090 -'Grand Tactician: The Civil War (1861-1865)': +"Grand Tactician: The Civil War (1861-1865)": gog: id: 1229916877 installDir: Grand Tactician The Civil War (1861-1865): {} launch: - /The Civil War (1861-1865).exe: + "/The Civil War (1861-1865).exe": - when: - store: steam steam: id: 654890 Grand Theft Auto: files: - /GTADATA/PLAYER_A.DAT: + "/GTADATA/PLAYER_A.DAT": tags: - save when: @@ -230297,10 +230967,10 @@ Grand Theft Auto: installDir: Grand Theft Auto: {} launch: - /WINO/Grand Theft Auto.exe: + "/WINO/Grand Theft Auto.exe": - when: - store: steam - workingDir: /wino + workingDir: "/wino" registry: HKEY_LOCAL_MACHINE/Software/DMA Design/Grand Theft Auto: tags: @@ -230309,7 +230979,7 @@ Grand Theft Auto: id: 12170 Grand Theft Auto 2: files: - /player: + "/player": tags: - save when: @@ -230317,7 +230987,7 @@ Grand Theft Auto 2: installDir: Grand Theft Auto 2: {} launch: - /gta2.exe: + "/gta2.exe": - when: - store: steam registry: @@ -230328,17 +230998,17 @@ Grand Theft Auto 2: id: 12180 Grand Theft Auto III: files: - /Documents/GTA3 User Files: + "/Documents/GTA3 User Files": tags: - save when: - os: mac - /GTA3 User Files/GTA3sf*.b: + "/GTA3 User Files/GTA3sf*.b": tags: - save when: - os: windows - /GTA3 User Files/gta3.set: + "/GTA3 User Files/gta3.set": tags: - config when: @@ -230350,11 +231020,11 @@ Grand Theft Auto III: installDir: Grand Theft Auto 3: {} launch: - /Grand Theft Auto3.app: + "/Grand Theft Auto3.app": - when: - os: mac store: steam - /gta3.exe: + "/gta3.exe": - when: - os: windows store: steam @@ -230362,12 +231032,12 @@ Grand Theft Auto III: id: 12100 Grand Theft Auto III – The Definitive Edition: files: - /Rockstar Games/GTA III Definitive Edition/Config/WindowsNoEditor: + "/Rockstar Games/GTA III Definitive Edition/Config/WindowsNoEditor": tags: - config when: - os: windows - /Rockstar Games/GTA III Definitive Edition/Profiles/: + "/Rockstar Games/GTA III Definitive Edition/Profiles/": tags: - save when: @@ -230375,7 +231045,7 @@ Grand Theft Auto III – The Definitive Edition: installDir: GTA III - The Definitive Edition: {} launch: - /PlayGTA3.exe: + "/PlayGTA3.exe": - when: - bit: 64 os: windows @@ -230384,37 +231054,37 @@ Grand Theft Auto III – The Definitive Edition: id: 1546970 Grand Theft Auto IV: files: - /Rockstar Games/GTA IV/Profiles// (Complete Edition): + "/Rockstar Games/GTA IV/Profiles// (Complete Edition)": tags: - save when: - os: windows - /Rockstar Games/GTA IV/Settings/SETTINGS.CFG: + "/Rockstar Games/GTA IV/Settings/SETTINGS.CFG": tags: - config when: - os: windows - /Rockstar Games/GTA IV/savegames// (Retail patches): + "/Rockstar Games/GTA IV/savegames// (Retail patches)": tags: - save when: - os: windows id: steamExtra: - - 901583 - 200690 + - 901583 installDir: Grand Theft Auto IV: {} launch: - /GTAIV/PlayGTAIV.exe: + "/GTAIV/PlayGTAIV.exe": - when: - store: steam - workingDir: /GTAIV + workingDir: "/GTAIV" steam: id: 12210 -'Grand Theft Auto Re: Liberty City Stories': +"Grand Theft Auto Re: Liberty City Stories": files: - /GTA Liberty City Stories User Files: + "/GTA Liberty City Stories User Files": tags: - config - save @@ -230422,17 +231092,17 @@ Grand Theft Auto IV: - os: windows Grand Theft Auto V: files: - /Rockstar Games/GTA V: + "/Rockstar Games/GTA V": tags: - config when: - os: windows - /Rockstar Games/GTA V/Profiles/: + "/Rockstar Games/GTA V/Profiles/": tags: - save when: - os: windows - /Socialclub/Player: + "/Socialclub/Player": tags: - save when: @@ -230444,26 +231114,26 @@ Grand Theft Auto V: installDir: Grand Theft Auto V: {} launch: - /PlayGTAV.exe: + "/PlayGTAV.exe": - when: - bit: 64 os: windows store: steam steam: id: 271590 -'Grand Theft Auto: Episodes from Liberty City': +"Grand Theft Auto: Episodes from Liberty City": files: - /Rockstar Games/GTA IV/Profiles// (Complete Edition): + "/Rockstar Games/GTA IV/Profiles// (Complete Edition)": tags: - save when: - os: windows - /Rockstar Games/GTA IV/Settings/SETTINGS_EFLC.CFG: + "/Rockstar Games/GTA IV/Settings/SETTINGS_EFLC.CFG": tags: - config when: - os: windows - /Rockstar Games/GTA IV/savegames/: + "/Rockstar Games/GTA IV/savegames/": tags: - save when: @@ -230471,35 +231141,35 @@ Grand Theft Auto V: installDir: Grand Theft Auto IV Episodes from Liberty City: {} launch: - /EFLC/LaunchEFLC.exe: + "/EFLC/LaunchEFLC.exe": - when: - store: steam - workingDir: /EFLC + workingDir: "/EFLC" steam: id: 12220 -'Grand Theft Auto: San Andreas': +"Grand Theft Auto: San Andreas": files: - /Documents/Rockstar Games/GTA San Andreas User Files: + "/Documents/Rockstar Games/GTA San Andreas User Files": tags: - save when: - os: mac - /GTA San Andreas User Files/GTASAsf*.b: + "/GTA San Andreas User Files/GTASAsf*.b": tags: - save when: - os: windows - /GTA San Andreas User Files/Gallery: + "/GTA San Andreas User Files/Gallery": tags: - save when: - os: windows - /GTA San Andreas User Files/gta_sa.set: + "/GTA San Andreas User Files/gta_sa.set": tags: - config when: - os: windows - /Packages/RockstarGames.GrandTheftAutoSanAndreas_3t068xe29zjvp/LocalState: + "/Packages/RockstarGames.GrandTheftAutoSanAndreas_3t068xe29zjvp/LocalState": tags: - save when: @@ -230513,31 +231183,31 @@ Grand Theft Auto V: installDir: Grand Theft Auto San Andreas: {} launch: - /gta-sa.exe: + "/gta-sa.exe": - when: - store: steam steam: id: 12120 -'Grand Theft Auto: San Andreas Next-gen+': +"Grand Theft Auto: San Andreas Next-gen+": files: - /userfiles/GTASAsf*.b: + "/userfiles/GTASAsf*.b": tags: - save when: - os: windows - /userfiles/gta_sa.set: + "/userfiles/gta_sa.set": tags: - config when: - os: windows -'Grand Theft Auto: San Andreas – The Definitive Edition': +"Grand Theft Auto: San Andreas – The Definitive Edition": files: - /Rockstar Games/GTA San Andreas Definitive Edition/Config/WindowsNoEditor: + "/Rockstar Games/GTA San Andreas Definitive Edition/Config/WindowsNoEditor": tags: - config when: - os: windows - /Rockstar Games/GTA San Andreas Definitive Edition/Profiles/: + "/Rockstar Games/GTA San Andreas Definitive Edition/Profiles/": tags: - save when: @@ -230545,28 +231215,28 @@ Grand Theft Auto V: installDir: GTA San Andreas - The Definitive Edition: {} launch: - /PlayGTASanAndreas.exe: + "/PlayGTASanAndreas.exe": - when: - os: windows store: steam steam: id: 1547000 -'Grand Theft Auto: The Trilogy – The Definitive Edition': +"Grand Theft Auto: The Trilogy – The Definitive Edition": steam: id: 817628 -'Grand Theft Auto: Vice City': +"Grand Theft Auto: Vice City": files: - /Library/Application Support/Grand Theft Auto Vice City/p_drive/Documents/GTA Vice City User Files: + "/Library/Application Support/Grand Theft Auto Vice City/p_drive/Documents/GTA Vice City User Files": tags: - save when: - os: mac - /GTA Vice City User Files/GTAVCsf*.b: + "/GTA Vice City User Files/GTAVCsf*.b": tags: - save when: - os: windows - /GTA Vice City User Files/gta_vc.set: + "/GTA Vice City User Files/gta_vc.set": tags: - config when: @@ -230578,31 +231248,31 @@ Grand Theft Auto V: installDir: Grand Theft Auto Vice City: {} launch: - /gta-vc.exe: + "/gta-vc.exe": - when: - store: steam steam: id: 12110 -'Grand Theft Auto: Vice City Stories PC Edition': +"Grand Theft Auto: Vice City Stories PC Edition": files: - /Documents/GTA Vice City Stories User Files/*.set: + "/Documents/GTA Vice City Stories User Files/*.set": tags: - config when: - os: windows - /Documents/GTA Vice City Stories User Files/GTAVCSsf*.b: + "/Documents/GTA Vice City Stories User Files/GTAVCSsf*.b": tags: - save when: - os: windows -'Grand Theft Auto: Vice City – The Definitive Edition': +"Grand Theft Auto: Vice City – The Definitive Edition": files: - /Rockstar Games/GTA Vice City Definitive Edition/Config/WindowsNoEditor: + "/Rockstar Games/GTA Vice City Definitive Edition/Config/WindowsNoEditor": tags: - config when: - os: windows - /Rockstar Games/GTA Vice City Definitive Edition/Profiles/: + "/Rockstar Games/GTA Vice City Definitive Edition/Profiles/": tags: - save when: @@ -230610,7 +231280,7 @@ Grand Theft Auto V: installDir: GTA Vice City - The Definitive Edition: {} launch: - /PlayGTAViceCity.exe: + "/PlayGTAViceCity.exe": - when: - bit: 64 os: windows @@ -230622,12 +231292,12 @@ GrandNarr!: id: 724930 Grandia HD Remaster: files: - /GRANDIA1: + "/GRANDIA1": tags: - config when: - os: windows - /GRANDIA1/Saves: + "/GRANDIA1/Saves": tags: - save when: @@ -230635,7 +231305,7 @@ Grandia HD Remaster: installDir: GRANDIA HD Remaster: {} launch: - /launcher.exe: + "/launcher.exe": - when: - bit: 32 os: windows @@ -230644,24 +231314,24 @@ Grandia HD Remaster: id: 1034860 Grandia II: files: - /Config.cfg: + "/Config.cfg": tags: - config when: - os: windows - /GRANDIA2_*.sav: + "/GRANDIA2_*.sav": tags: - save when: - os: windows Grandia II Anniversary Edition: files: - /data/saves: + "/data/saves": tags: - config when: - os: windows - /data/saves/grandia2_*.VMS: + "/data/saves/grandia2_*.VMS": tags: - save when: @@ -230671,11 +231341,11 @@ Grandia II Anniversary Edition: installDir: Grandia II Anniversary Edition: {} launch: - /Grandia2Launcher.exe: + "/Grandia2Launcher.exe": - when: - os: windows store: steam - /grandia2.exe: + "/grandia2.exe": - when: - os: windows store: steam @@ -230692,7 +231362,7 @@ Grandpa: installDir: Grandpa: {} launch: - /grandpa/Grandpa.exe: + "/grandpa/Grandpa.exe": - when: - os: windows store: steam @@ -230702,25 +231372,25 @@ Grandpa and the Zombies: installDir: Grandpa and the Zombies: {} launch: - /Hub.exe: + "/Hub.exe": - when: - os: windows store: steam steam: id: 732390 -Grandpa's Table: +"Grandpa's Table": installDir: Grandpas_Table: {} launch: - /Contents/MacOS/gtb: + "/Contents/MacOS/gtb": - when: - os: mac store: steam - /gtb: + "/gtb": - when: - os: linux store: steam - /gtb.exe: + "/gtb.exe": - when: - os: windows store: steam @@ -230730,7 +231400,7 @@ Granny: installDir: Granny: {} launch: - /Granny.exe: + "/Granny.exe": - when: - os: windows store: steam @@ -230740,7 +231410,7 @@ Granny 3: installDir: Granny 3: {} launch: - /Granny 3.exe: + "/Granny 3.exe": - when: - os: windows store: steam @@ -230750,31 +231420,31 @@ Granny Simulator: installDir: Granny Simulator: {} launch: - /Granny Simulator.exe: + "/Granny Simulator.exe": - when: - bit: 64 os: windows store: steam - /LinuxBuild.x86_64: + "/LinuxBuild.x86_64": - when: - os: linux store: steam - /MacBuild.app/Contents/MacOS/Mac: + "/MacBuild.app/Contents/MacOS/Mac": - when: - os: mac store: steam steam: id: 1053680 -Granny's Grantastic Granventure: +"Granny's Grantastic Granventure": installDir: - Granny's Grantastic Granventure: {} + "Granny's Grantastic Granventure": {} steam: id: 878160 -'Granny: Chapter Two': +"Granny: Chapter Two": installDir: Granny Chapter Two: {} launch: - /Granny Chapter Two.exe: + "/Granny Chapter Two.exe": - when: - os: windows store: steam @@ -230784,7 +231454,7 @@ Grape Jelly: installDir: Grape Jelly: {} launch: - /GrapeJelly.exe: + "/GrapeJelly.exe": - when: - os: windows store: steam @@ -230794,7 +231464,7 @@ Grapple: installDir: Grapple: {} launch: - /Grapple.exe: + "/Grapple.exe": - when: - os: windows store: steam @@ -230802,7 +231472,7 @@ Grapple: id: 268320 Grapple Force Rena: files: - /AppData/LocalLow/GrappleForceRena/User Data: + "/AppData/LocalLow/GrappleForceRena/User Data": tags: - save when: @@ -230810,15 +231480,15 @@ Grapple Force Rena: installDir: Grapple Force Rena: {} launch: - /grappleforcerena.app: + "/grappleforcerena.app": - when: - os: mac store: steam - /nw: + "/nw": - when: - os: linux store: steam - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -230829,7 +231499,7 @@ Grapple Whip: id: 1115430 Grapple dog: files: - /Grapple_Dog/grappledog_data: + "/Grapple_Dog/grappledog_data": tags: - config - save @@ -230838,7 +231508,7 @@ Grapple dog: installDir: Grapple Dog: {} launch: - /Grapple Dog.exe: + "/Grapple Dog.exe": - when: - os: windows store: steam @@ -230848,11 +231518,11 @@ Grappledrome: installDir: Grappledrome: {} launch: - /RoverGame.exe: + "/RoverGame.exe": - when: - os: windows store: steam - /RoverGame.sh: + "/RoverGame.sh": - when: - os: linux store: steam @@ -230873,20 +231543,20 @@ Grass Cutter: installDir: Grass Cutter: {} launch: - /GrassCutter.app: + "/GrassCutter.app": - when: - os: mac store: steam - /GrassCutter.exe: + "/GrassCutter.exe": - when: - os: windows store: steam - /GrassCutter.x86: + "/GrassCutter.x86": - when: - bit: 32 os: linux store: steam - /GrassCutter.x86_64: + "/GrassCutter.x86_64": - when: - bit: 64 os: linux @@ -230901,7 +231571,7 @@ Grass Max: installDir: GrassMax: {} launch: - /GrassMax.exe: + "/GrassMax.exe": - when: - os: windows store: steam @@ -230911,15 +231581,15 @@ Grass Simulator: installDir: Grass Simulator: {} launch: - /Grass Simulator.app: + "/Grass Simulator.app": - when: - os: mac store: steam - /Grass Simulator.exe: + "/Grass Simulator.exe": - when: - os: windows store: steam - /Grass Simulator.x86: + "/Grass Simulator.x86": - when: - os: linux store: steam @@ -230929,7 +231599,7 @@ Grater: installDir: Grater: {} launch: - /Grater.exe: + "/Grater.exe": - when: - os: windows store: steam @@ -230939,7 +231609,7 @@ Gratuitous Animal Massacre: installDir: Gratuitous Animal Massacre: {} launch: - /I HATE Animals.exe: + "/I HATE Animals.exe": - when: - os: windows store: steam @@ -230947,13 +231617,13 @@ Gratuitous Animal Massacre: id: 1091540 Gratuitous Space Battles: files: - /.positech/GSB: + "/.positech/GSB": tags: - config - save when: - os: linux - /My Games/GratuitousSpaceBattles: + "/My Games/GratuitousSpaceBattles": tags: - config - save @@ -230962,15 +231632,15 @@ Gratuitous Space Battles: installDir: Gratuitous Space Battles: {} launch: - /GSB.exe: + "/GSB.exe": - when: - os: windows store: steam - /Gratuitous Space Battles.app: + "/Gratuitous Space Battles.app": - when: - os: mac store: steam - /run_game.sh: + "/run_game.sh": - when: - os: linux store: steam @@ -230978,7 +231648,7 @@ Gratuitous Space Battles: id: 41800 Gratuitous Space Battles 2: files: - /GratuitousSpaceBattles2: + "/GratuitousSpaceBattles2": tags: - config - save @@ -230989,15 +231659,15 @@ Gratuitous Space Battles 2: installDir: Gratuitous Space Battles 2: {} launch: - /GSB2: + "/GSB2": - when: - os: linux store: steam - /GSB2.app: + "/GSB2.app": - when: - os: mac store: steam - /GSB2.exe: + "/GSB2.exe": - when: - os: windows store: steam @@ -231007,11 +231677,11 @@ Gratuitous Tank Battles: installDir: Gratuitous Tank Battles: {} launch: - /GTB.exe: + "/GTB.exe": - when: - os: windows store: steam - /Gratuitous Tank Battles.app: + "/Gratuitous Tank Battles.app": - when: - os: mac store: steam @@ -231024,7 +231694,7 @@ Grav Blazer: installDir: Grav Blazer: {} launch: - /gravblazer.exe: + "/gravblazer.exe": - when: - os: windows store: steam @@ -231034,7 +231704,7 @@ Grav Blazer Squared: installDir: Grav Blazer Squared: {} launch: - /GravBlazerSquared.exe: + "/GravBlazerSquared.exe": - when: - os: windows store: steam @@ -231047,15 +231717,15 @@ GravBlocks: installDir: GravBlocks: {} launch: - /GravBlocks.app: + "/GravBlocks.app": - when: - os: mac store: steam - /GravBlocks.exe: + "/GravBlocks.exe": - when: - os: windows store: steam - /GravBlocks.x86: + "/GravBlocks.x86": - when: - os: linux store: steam @@ -231065,7 +231735,7 @@ GravNewton: installDir: GravNewton: {} launch: - /Gravinewton.exe: + "/Gravinewton.exe": - when: - store: steam steam: @@ -231079,15 +231749,15 @@ Grave Chase: installDir: Grave Chase: {} launch: - /GraveChase.app/Contents/MacOS/GraveChase: + "/GraveChase.app/Contents/MacOS/GraveChase": - when: - os: mac store: steam - /GraveChase.exe: + "/GraveChase.exe": - when: - os: windows store: steam - /GraveChase.x86: + "/GraveChase.x86": - when: - os: linux store: steam @@ -231097,20 +231767,20 @@ Grave Danger: installDir: Grave Danger: {} launch: - /GraveDanger.app: + "/GraveDanger.app": - when: - os: mac store: steam - /GraveDanger.exe: + "/GraveDanger.exe": - when: - os: windows store: steam - /GraveDanger.x86: + "/GraveDanger.x86": - when: - bit: 32 os: linux store: steam - /GraveDanger.x86_64: + "/GraveDanger.x86_64": - when: - bit: 64 os: linux @@ -231124,27 +231794,27 @@ Grave Keeper: installDir: Grave Keeper: {} launch: - /GraveK.exe: + "/GraveK.exe": - when: - bit: 64 os: windows store: steam steam: id: 979810 -'Grave Mania: Pandemic Pandemonium': +"Grave Mania: Pandemic Pandemonium": installDir: Grave Mania Pandemic Pandemonium: {} launch: - /Grave_Mania_Pandemic_Pandemonium.exe: + "/Grave_Mania_Pandemic_Pandemonium.exe": - when: - store: steam steam: id: 514770 -'Grave Mania: Undead Fever': +"Grave Mania: Undead Fever": installDir: Grave Mania Undead Fever: {} launch: - /GraveMania.exe: + "/GraveMania.exe": - when: - store: steam steam: @@ -231153,15 +231823,15 @@ Grave Matters: installDir: GraveMatters: {} launch: - /gm.app: + "/gm.app": - when: - os: mac store: steam - /gm.exe: + "/gm.exe": - when: - os: windows store: steam - /gm.x86_64: + "/gm.x86_64": - when: - os: linux store: steam @@ -231171,17 +231841,17 @@ Grave Prosperity - Part 1: installDir: Grave Prosperity part1: {} launch: - /GP part1.exe: + "/GP part1.exe": - when: - os: windows store: steam steam: id: 833660 -'Grave Prosperity: Redux - Part 1': +"Grave Prosperity: Redux - Part 1": installDir: GP Redux part 1: {} launch: - /graveprosperityredux.exe: + "/graveprosperityredux.exe": - when: - os: windows store: steam @@ -231199,11 +231869,11 @@ GraveRun: installDir: GraveRun: {} launch: - /GraveRun.exe: + "/GraveRun.exe": - when: - os: windows store: steam - /ModUploader.exe: + "/ModUploader.exe": - when: - os: windows store: steam @@ -231213,7 +231883,7 @@ Graveball: installDir: Graveball: {} launch: - /Graveball.exe: + "/Graveball.exe": - when: - os: windows store: steam @@ -231221,12 +231891,12 @@ Graveball: id: 563170 Gravel: files: - /gravel/Saved/Config/WindowsNoEditor: + "/gravel/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /gravel/Saved/SaveGames: + "/gravel/Saved/SaveGames": tags: - save when: @@ -231234,16 +231904,16 @@ Gravel: installDir: Gravel: {} launch: - /Gravel.app: + "/Gravel.app": - when: - os: mac store: steam - /gravel.exe: + "/gravel.exe": - when: - bit: 64 os: windows store: steam - /gravel.run: + "/gravel.run": - when: - bit: 64 os: linux @@ -231252,12 +231922,12 @@ Gravel: id: 558260 Graven: files: - /Praest/Saved/Config/WindowsNoEditor: + "/Praest/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /Praest/Saved/SaveGames: + "/Praest/Saved/SaveGames": tags: - save when: @@ -231267,24 +231937,24 @@ Graven: installDir: GRAVEN: {} launch: - /Praest.exe: + "/Praest.exe": - when: - bit: 64 os: windows store: steam - /Praest/Binaries/Win64/Praest-Win64-Shipping.exe: - - arguments: '-d3d11' + "/Praest/Binaries/Win64/Praest-Win64-Shipping.exe": + - arguments: "-d3d11" when: - bit: 64 os: windows store: steam steam: id: 1371690 -'Graven: The Purple Moon Prophecy': +"Graven: The Purple Moon Prophecy": installDir: GRAVEN The Purple Moon Prophecy: {} launch: - /graven.exe: + "/graven.exe": - when: - os: windows store: steam @@ -231303,7 +231973,7 @@ Gravewood High: installDir: Gravewood High: {} launch: - /GravewoodHigh.exe: + "/GravewoodHigh.exe": - when: - bit: 64 os: windows @@ -231314,11 +231984,11 @@ Graveyard Birds: installDir: Graveyard Birds: {} launch: - /GraveyardBirds.app/Contents/MacOS/GraveyardBirds: + "/GraveyardBirds.app/Contents/MacOS/GraveyardBirds": - when: - os: mac store: steam - /GraveyardBirds.exe: + "/GraveyardBirds.exe": - when: - os: windows store: steam @@ -231328,7 +231998,7 @@ Graveyard Defender: installDir: Graveyard Defender: {} launch: - /Graveyard Defender.exe: + "/Graveyard Defender.exe": - when: - os: windows store: steam @@ -231336,27 +232006,27 @@ Graveyard Defender: id: 1143780 Graveyard Keeper: files: - /.config/unity3d/Lazy Bear Games/Graveyard Keeper: + "/.config/unity3d/Lazy Bear Games/Graveyard Keeper": tags: - save when: - os: linux - /.config/unity3d/Lazy Bear Games/Graveyard Keeper/prefs: + "/.config/unity3d/Lazy Bear Games/Graveyard Keeper/prefs": tags: - config when: - os: linux - /AppData/LocalLow/Lazy Bear Games/Graveyard Keeper: + "/AppData/LocalLow/Lazy Bear Games/Graveyard Keeper": tags: - save when: - os: windows - /Library/Application Support/Lazy Bear Games/Graveyard Keeper: + "/Library/Application Support/Lazy Bear Games/Graveyard Keeper": tags: - save when: - os: mac - /Library/Preferences/unity.Lazy Bear Games.Graveyard Keeper.plist: + "/Library/Preferences/unity.Lazy Bear Games.Graveyard Keeper.plist": tags: - config when: @@ -231366,20 +232036,20 @@ Graveyard Keeper: installDir: Graveyard Keeper: {} launch: - /Graveyard Keeper.app: + "/Graveyard Keeper.app": - when: - os: mac store: steam - /Graveyard Keeper.exe: + "/Graveyard Keeper.exe": - when: - os: windows store: steam - /Graveyard Keeper.x86: + "/Graveyard Keeper.x86": - when: - bit: 32 os: linux store: steam - /Graveyard Keeper.x86_64: + "/Graveyard Keeper.x86_64": - when: - bit: 64 os: linux @@ -231394,20 +232064,20 @@ Graveyard Shift: installDir: Graveyard Shift: {} launch: - /Graveyard Shift.app: + "/Graveyard Shift.app": - when: - os: mac store: steam - /Graveyard Shift.exe: + "/Graveyard Shift.exe": - when: - os: windows store: steam - /GraveyardShift.x86: + "/GraveyardShift.x86": - when: - bit: 32 os: linux store: steam - /GraveyardShift.x86_64: + "/GraveyardShift.x86_64": - when: - bit: 64 os: linux @@ -231418,7 +232088,7 @@ Graveyard Smash: installDir: Graveyard Smash: {} launch: - /graveyardsmash_steamedition.exe: + "/graveyardsmash_steamedition.exe": - when: - os: windows store: steam @@ -231426,7 +232096,7 @@ Graveyard Smash: id: 504240 Gravi: files: - /Gravi_Steam_v1.13b_Data/StreamingAssets/PlayerPrefs.dat: + "/Gravi_Steam_v1.13b_Data/StreamingAssets/PlayerPrefs.dat": tags: - save when: @@ -231434,7 +232104,7 @@ Gravi: installDir: Gravi: {} launch: - /Gravi_Steam_v1.13b.exe: + "/Gravi_Steam_v1.13b.exe": - when: - os: windows store: steam @@ -231448,7 +232118,7 @@ GraviSound: installDir: GraviSound: {} launch: - /GraviSound.exe: + "/GraviSound.exe": - when: - os: windows store: steam @@ -231458,11 +232128,11 @@ Gravia: installDir: Gravia: {} launch: - /Gravia.app/Contents/MacOS/Gravia: + "/Gravia.app/Contents/MacOS/Gravia": - when: - os: mac store: steam - /Gravia.exe: + "/Gravia.exe": - when: - os: windows store: steam @@ -231472,20 +232142,20 @@ Gravilon: installDir: gravilon: {} launch: - /EQLauncher.exe: + "/EQLauncher.exe": - when: - os: windows store: steam - /gravilon.app: + "/gravilon.app": - when: - os: mac store: steam - /gravilon.x86: + "/gravilon.x86": - when: - bit: 32 os: linux store: steam - /gravilon.x86_64: + "/gravilon.x86_64": - when: - bit: 64 os: linux @@ -231497,21 +232167,21 @@ Gravilon: - save steam: id: 355150 -'Gravitar: Recharged': +"Gravitar: Recharged": gog: id: 2076004618 installDir: Gravitar Recharged: {} launch: - /Gravitar Recharged.exe: + "/Gravitar Recharged.exe": - when: - os: windows store: steam - /Gravitar_steam_Linux.x86_64: + "/Gravitar_steam_Linux.x86_64": - when: - os: linux store: steam - /gravitar_recharged.app: + "/gravitar_recharged.app": - when: - os: mac store: steam @@ -231519,17 +232189,17 @@ Gravilon: id: 1905430 Gravitas: files: - /SkyArk/Saved/Config/WindowsNoEditor: + "/SkyArk/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /SkyArk/Saved/SaveGames: + "/SkyArk/Saved/SaveGames": tags: - save when: - os: windows - /SkyArk/Saved/SaveGames/GameSettings.sav: + "/SkyArk/Saved/SaveGames/GameSettings.sav": tags: - config when: @@ -231537,29 +232207,29 @@ Gravitas: installDir: Gravitas: {} launch: - /Drop.exe: + "/Drop.exe": - when: - bit: 64 os: windows store: steam steam: id: 1067310 -'Graviteam Tactics: Mius-Front': +"Graviteam Tactics: Mius-Front": installDir: Graviteam Tactics Mius-Front: {} launch: - /starter_x64.exe: + "/starter_x64.exe": - when: - bit: 64 os: windows store: steam steam: id: 312980 -'Graviteam Tactics: Operation Star': +"Graviteam Tactics: Operation Star": installDir: Graviteam Tactics Operation Star: {} launch: - /starter.exe: + "/starter.exe": - when: - store: steam steam: @@ -231568,11 +232238,11 @@ Graviton: installDir: Graviton: {} launch: - /Graviton.app/Contents/MacOS/Graviton: + "/Graviton.app/Contents/MacOS/Graviton": - when: - os: mac store: steam - /Graviton/Graviton.exe: + "/Graviton/Graviton.exe": - when: - os: windows store: steam @@ -231580,7 +232250,7 @@ Graviton: id: 1140520 Gravitron 2: files: - /Data: + "/Data": tags: - save when: @@ -231588,7 +232258,7 @@ Gravitron 2: installDir: Gravitron2: {} launch: - /Gravitron2.exe: + "/Gravitron2.exe": - when: - store: steam steam: @@ -231597,16 +232267,16 @@ Gravitura: installDir: Gravitura: {} launch: - /Gravitura: + "/Gravitura": - when: - bit: 64 os: linux store: steam - /Gravitura.app/Contents/MacOS/nwjs: + "/Gravitura.app/Contents/MacOS/nwjs": - when: - os: mac store: steam - /Gravitura.exe: + "/Gravitura.exe": - when: - bit: 64 os: windows @@ -231617,12 +232287,12 @@ Gravity Ace: installDir: Gravity Ace: {} launch: - /gravity-win64.exe: + "/gravity-win64.exe": - when: - bit: 64 os: windows store: steam - /gravity.x86_64: + "/gravity.x86_64": - when: - bit: 64 os: linux @@ -231644,15 +232314,15 @@ Gravity Badgers: installDir: Gravity Badgers: {} launch: - /Gravity Badgers.app: + "/Gravity Badgers.app": - when: - os: mac store: steam - /Gravity Badgers.exe: + "/Gravity Badgers.exe": - when: - os: windows store: steam - /Gravity Badgers.x86: + "/Gravity Badgers.x86": - when: - os: linux store: steam @@ -231662,7 +232332,7 @@ Gravity Ball: installDir: Gravity Balls: {} launch: - /Gravity Ball.exe: + "/Gravity Ball.exe": - when: - store: steam steam: @@ -231671,7 +232341,7 @@ Gravity Balls: installDir: Gravity Balls: {} launch: - /GravityBalls.exe: + "/GravityBalls.exe": - when: - os: windows store: steam @@ -231679,12 +232349,12 @@ Gravity Balls: id: 1197960 Gravity Bone: files: - /baseq2/kmq2config.cfg: + "/baseq2/kmq2config.cfg": tags: - config when: - os: windows - /baseq2/save: + "/baseq2/save": tags: - save when: @@ -231695,7 +232365,7 @@ Gravity Cat: installDir: Gravity Cat: {} launch: - /Gravity Cat.exe: + "/Gravity Cat.exe": - when: - os: windows store: steam @@ -231705,7 +232375,7 @@ Gravity Chase: installDir: Gravity Chase: {} launch: - /Gravity Chase.exe: + "/Gravity Chase.exe": - when: - os: windows store: steam @@ -231713,17 +232383,17 @@ Gravity Chase: id: 1171520 Gravity Circuit: files: - /.local/share/Gravity Circuit/profile/*.sav: + "/.local/share/Gravity Circuit/profile/*.sav": tags: - save when: - os: linux - /Library/Application Support/Gravity Circuit/profile/*.sav: + "/Library/Application Support/Gravity Circuit/profile/*.sav": tags: - save when: - os: mac - /Gravity Circuit/profile/*.sav: + "/Gravity Circuit/profile/*.sav": tags: - save when: @@ -231736,15 +232406,15 @@ Gravity Circuit: installDir: Gravity Circuit: {} launch: - /GravityCircuit.AppImage: + "/GravityCircuit.AppImage": - when: - os: linux store: steam - /GravityCircuit.app: + "/GravityCircuit.app": - when: - os: mac store: steam - /win64_steam/GravityCircuit.exe: + "/win64_steam/GravityCircuit.exe": - when: - os: windows store: steam @@ -231754,7 +232424,7 @@ Gravity Compass: installDir: Gravity Compass: {} launch: - /GravityCompass.exe: + "/GravityCompass.exe": - when: - bit: 64 os: windows @@ -231765,11 +232435,11 @@ Gravity Control: installDir: Gravity Control: {} launch: - /Gravity Control.exe: + "/Gravity Control.exe": - when: - os: windows store: steam - /Gravity Control.x86_64: + "/Gravity Control.x86_64": - when: - os: linux store: steam @@ -231782,7 +232452,7 @@ Gravity Core - Braintwisting Space Odyssey: installDir: Gravity Core - Braintwisting Space Odyssey: {} launch: - /GravityCore.exe: + "/GravityCore.exe": - when: - store: steam steam: @@ -231791,16 +232461,16 @@ Gravity Den: installDir: Gravity Den: {} launch: - /Gravity Den: + "/Gravity Den": - when: - bit: 64 os: linux store: steam - /Gravity Den.exe: + "/Gravity Den.exe": - when: - os: windows store: steam - /GravityDen.app/Contents/MacOS/Gravity Den: + "/GravityDen.app/Contents/MacOS/Gravity Den": - when: - os: mac store: steam @@ -231810,11 +232480,11 @@ Gravity Error: installDir: GravityError: {} launch: - /GravityError.app: + "/GravityError.app": - when: - os: mac store: steam - /GravityError.exe: + "/GravityError.exe": - when: - os: windows store: steam @@ -231827,7 +232497,7 @@ Gravity Escape From The Maze: installDir: Gravity Escape From The Maze: {} launch: - /Gravity Escape From The Maze.exe: + "/Gravity Escape From The Maze.exe": - when: - os: windows store: steam @@ -231835,12 +232505,12 @@ Gravity Escape From The Maze: id: 1199170 Gravity Field: files: - /GravityField/Saved/SaveGames/*Settings.sav: + "/GravityField/Saved/SaveGames/*Settings.sav": tags: - config when: - os: windows - /GravityField/Saved/SaveGames/Save*.sav: + "/GravityField/Saved/SaveGames/Save*.sav": tags: - save when: @@ -231848,7 +232518,7 @@ Gravity Field: installDir: GravityField: {} launch: - /GravityField.exe: + "/GravityField.exe": - when: - os: windows store: steam @@ -231861,13 +232531,13 @@ Gravity Garden: id: 609360 Gravity Ghost: files: - /save: + "/save": tags: - save when: - os: windows - os: linux - /.config/unity3d/Ivy Games/Gravity Ghost: + "/.config/unity3d/Ivy Games/Gravity Ghost": tags: - config when: @@ -231875,20 +232545,20 @@ Gravity Ghost: installDir: GravityGhost: {} launch: - /GravityGhost.app: + "/GravityGhost.app": - when: - os: mac store: steam - /GravityGhost.exe: + "/GravityGhost.exe": - when: - os: windows store: steam - /GravityGhost.x86: + "/GravityGhost.x86": - when: - bit: 32 os: linux store: steam - /GravityGhost.x86_64: + "/GravityGhost.x86_64": - when: - bit: 64 os: linux @@ -231908,7 +232578,7 @@ Gravity Island: installDir: Gravity Island: {} launch: - /GravityIsland.exe: + "/GravityIsland.exe": - when: - os: windows store: steam @@ -231919,16 +232589,16 @@ Gravity Jump: Gravity Jump: {} steam: id: 867800 -'Gravity Lab: Gravitational Testing Facility & Observations': +"Gravity Lab: Gravitational Testing Facility & Observations": installDir: GravityLab: {} launch: - /GravLab.exe: + "/GravLab.exe": - when: - bit: 64 os: windows store: steam - - arguments: '-vrmode OpenVR' + - arguments: "-vrmode OpenVR" when: - store: steam steam: @@ -231943,11 +232613,11 @@ Gravity Light: installDir: Gravity Light: {} launch: - /GravityLight.app/Contents/MacOS/GravityLight: + "/GravityLight.app/Contents/MacOS/GravityLight": - when: - os: mac store: steam - /GravityLight.exe: + "/GravityLight.exe": - when: - os: windows store: steam @@ -231957,11 +232627,11 @@ Gravity Panda: installDir: Gravity Panda: {} launch: - /GravityPanda.app/Contents/MacOS/GravityPanda: + "/GravityPanda.app/Contents/MacOS/GravityPanda": - when: - os: mac store: steam - /GravityPanda.exe: + "/GravityPanda.exe": - when: - bit: 64 os: windows @@ -231975,11 +232645,11 @@ Gravity Quest: installDir: Gravity Quest: {} launch: - /Gravity Quest.app: + "/Gravity Quest.app": - when: - os: mac store: steam - /Gravity Quest.exe: + "/Gravity Quest.exe": - when: - os: windows store: steam @@ -231989,11 +232659,11 @@ Gravity Shot: installDir: Gravity Shot: {} launch: - /Gravity Shot.app: + "/Gravity Shot.app": - when: - os: mac store: steam - /Gravity Shot.exe: + "/Gravity Shot.exe": - when: - os: windows store: steam @@ -232003,15 +232673,15 @@ Gravity Spin: installDir: Gravity Spin: {} launch: - /linux64/GravitySpin: + "/linux64/GravitySpin": - when: - os: linux store: steam - /mac64/GravitySpin.app: + "/mac64/GravitySpin.app": - when: - os: mac store: steam - /win64/GravitySpin.exe: + "/win64/GravitySpin.exe": - when: - os: windows store: steam @@ -232024,7 +232694,7 @@ Gravity Vector: installDir: Gravity Vector: {} launch: - /GravityVector.exe: + "/GravityVector.exe": - when: - bit: 64 os: windows @@ -232035,28 +232705,28 @@ Gravity Wars: installDir: Gravity Wars: {} launch: - /Gravity Wars.app: + "/Gravity Wars.app": - when: - os: mac store: steam - /Gravity Wars.exe: + "/Gravity Wars.exe": - when: - os: windows store: steam - /Gravity Wars.x86_64: + "/Gravity Wars.x86_64": - when: - os: linux store: steam steam: id: 877150 -'Gravity Wars: Black Hole': +"Gravity Wars: Black Hole": steam: id: 968560 Gravity Well: installDir: GravityWellReleaseBuild: {} launch: - /GravityWell_1.1.exe: + "/GravityWell_1.1.exe": - when: - os: windows store: steam @@ -232066,7 +232736,7 @@ Gravityball: installDir: SpaceHockey: {} launch: - /Space Hockey.exe: + "/Space Hockey.exe": - when: - bit: 64 os: windows @@ -232080,19 +232750,19 @@ Gray Cat: installDir: Gray Cat: {} launch: - /Gray_Cat_Steam.exe: + "/Gray_Cat_Steam.exe": - when: - store: steam steam: id: 816710 Gray Dawn: files: - /GrayDawn/Saved/Config/WindowsNoEditor: + "/GrayDawn/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /GrayDawn/Saved/SaveGames: + "/GrayDawn/Saved/SaveGames": tags: - save when: @@ -232100,7 +232770,7 @@ Gray Dawn: installDir: Gray Dawn: {} launch: - /GrayDawn.exe: + "/GrayDawn.exe": - when: - os: windows store: steam @@ -232111,12 +232781,12 @@ Gray Grofa: id: 664580 Gray Matter: files: - /GrayMatter/*.sav: + "/GrayMatter/*.sav": tags: - save when: - os: windows - /GrayMatter/Profile.dat: + "/GrayMatter/Profile.dat": tags: - config when: @@ -232126,11 +232796,11 @@ Gray Matter: installDir: Gray Matter: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam - /config.exe: + "/config.exe": - when: - os: windows store: steam @@ -232140,30 +232810,30 @@ Gray Memory: installDir: Gray Memory: {} launch: - /Gray Memory.exe: + "/Gray Memory.exe": - when: - os: windows store: steam steam: id: 1049230 -'Gray Skies, Dark Waters': +"Gray Skies, Dark Waters": installDir: - 'Gray Skies, Dark Waters': {} + "Gray Skies, Dark Waters": {} launch: - '/Gray Skies, Dark Waters.app': + "/Gray Skies, Dark Waters.app": - when: - os: mac store: steam - '/Gray Skies, Dark Waters.exe': + "/Gray Skies, Dark Waters.exe": - when: - os: windows store: steam - '/Gray Skies, Dark Waters.x86': + "/Gray Skies, Dark Waters.x86": - when: - bit: 32 os: linux store: steam - '/Gray Skies, Dark Waters.x86_64': + "/Gray Skies, Dark Waters.x86_64": - when: - bit: 64 os: linux @@ -232174,7 +232844,7 @@ Gray Zone: installDir: GrayZone: {} launch: - /GrayZone.exe: + "/GrayZone.exe": - when: - store: steam steam: @@ -232183,7 +232853,7 @@ GrayScale: installDir: GrayScale: {} launch: - /GrayScale.exe: + "/GrayScale.exe": - when: - bit: 64 os: windows @@ -232194,22 +232864,22 @@ Grayland: installDir: Grayland: {} launch: - /Grayland.exe: + "/Grayland.exe": - when: - os: windows store: steam steam: id: 297190 -'Graywalkers: Purgatory': +"Graywalkers: Purgatory": installDir: Graywalkers Purgatory: {} launch: - /Graywalkers.x86_64: + "/Graywalkers.x86_64": - when: - bit: 64 os: linux store: steam - /Graywalkers64.exe: + "/Graywalkers64.exe": - when: - bit: 64 os: windows @@ -232220,32 +232890,33 @@ Graze Counter: installDir: Graze Counter: {} launch: - /KeyConfig.exe: + "/KeyConfig.exe": - when: - os: windows store: steam steam: id: 629440 -'Greak: Memories of Azur': +"Greak: Memories of Azur": files: - /Greak Memories of Azur_Data/Data: + "/Greak Memories of Azur_Data/Data": tags: - save when: - store: gog - /AppData/LocalLow/Navegante Entertainment/Greak_ Memories of Azur/Data: + "/AppData/LocalLow/Navegante Entertainment/Greak_ Memories of Azur/Data": tags: - config - save when: - os: windows - - store: steam + - os: windows + store: steam gog: id: 2142923325 installDir: Greak Memories of Azur: {} launch: - /Greak Memories of Azur.exe: + "/Greak Memories of Azur.exe": - when: - os: windows store: steam @@ -232255,30 +232926,30 @@ Great Ball of Fire: installDir: Great Ball of Fire: {} launch: - /win32/Great Ball of Fire.exe: + "/win32/Great Ball of Fire.exe": - when: - bit: 32 os: windows store: steam - /win64/Great Ball of Fire.exe: + "/win64/Great Ball of Fire.exe": - when: - bit: 64 os: windows store: steam steam: id: 1061970 -'Great Battle IV: Navy Field IV': +"Great Battle IV: Navy Field IV": steam: id: 481890 Great Battles of the American Civil War: installDir: Great Battles of the American Civil War: {} launch: - /americancivilwarbattles.app: + "/americancivilwarbattles.app": - when: - os: mac store: steam - /americancivilwarbattles.exe: + "/americancivilwarbattles.exe": - when: - os: windows store: steam @@ -232286,12 +232957,12 @@ Great Battles of the American Civil War: id: 1025550 Great Big War Game: files: - /Great Big War Game: + "/Great Big War Game": tags: - save when: - os: windows - /Great Big War Game/screenmode.txt: + "/Great Big War Game/screenmode.txt": tags: - config when: @@ -232299,7 +232970,7 @@ Great Big War Game: installDir: Great Big War Game: {} launch: - /GLWG2.exe: + "/GLWG2.exe": - when: - store: steam steam: @@ -232308,30 +232979,30 @@ Great Cause of the Three Kingdoms: installDir: 三国宏图(Great Cause Of The Three Kingdoms): {} launch: - /GreatCauseOfTheThreeKingdoms.exe: + "/GreatCauseOfTheThreeKingdoms.exe": - when: - store: steam steam: id: 717800 -Great Hero's Beard: +"Great Hero's Beard": installDir: - Great Hero's Beard: {} + "Great Hero's Beard": {} launch: - /Great Heros Beard.exe: + "/Great Heros Beard.exe": - when: - os: windows store: steam steam: id: 935270 -'Great Hunt: North America': +"Great Hunt: North America": installDir: Hunting Animals: {} launch: - /Great Hunt - North America.app/Contents/MacOS/Great Hunt - North America: + "/Great Hunt - North America.app/Contents/MacOS/Great Hunt - North America": - when: - os: mac store: steam - /Great Hunt - North America.exe: + "/Great Hunt - North America.exe": - when: - os: windows store: steam @@ -232346,13 +233017,13 @@ Great Old One - Arrival: installDir: GOO: {} launch: - /GOO.app/Contents/MacOS/GOO: - - arguments: '-windowed' + "/GOO.app/Contents/MacOS/GOO": + - arguments: "-windowed" when: - os: mac store: steam - /GOO_Win64/GOO.exe: - - arguments: '-windowed' + "/GOO_Win64/GOO.exe": + - arguments: "-windowed" when: - os: windows store: steam @@ -232360,12 +233031,12 @@ Great Old One - Arrival: id: 871140 Great Permutator: files: - /great-permutator: + "/great-permutator": tags: - save when: - os: windows - /great-permutator/settings: + "/great-permutator/settings": tags: - config when: @@ -232373,15 +233044,15 @@ Great Permutator: installDir: Great Permutator: {} launch: - /GreatPermutator.app: + "/GreatPermutator.app": - when: - os: mac store: steam - /gp.exe: + "/gp.exe": - when: - os: windows store: steam - /gp_run.sh: + "/gp_run.sh": - when: - os: linux store: steam @@ -232396,7 +233067,7 @@ Great Toilet Simulator: installDir: Great Toilet Simulator: {} launch: - /GreatToiletSimulator.exe: + "/GreatToiletSimulator.exe": - when: - os: windows store: steam @@ -232406,11 +233077,11 @@ Great Utopia: installDir: Great Utopia: {} launch: - /Game.app: + "/Game.app": - when: - os: mac store: steam - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -232421,7 +233092,7 @@ Great War 1914: id: 739200 Great eSports Manager: files: - /ESPORTSManager_Data/saves/Slot*.gd: + "/ESPORTSManager_Data/saves/Slot*.gd": tags: - save when: @@ -232429,21 +233100,21 @@ Great eSports Manager: installDir: Great eSports Manager: {} launch: - /ESPORTSManager.exe: + "/ESPORTSManager.exe": - when: - os: windows store: steam - /ESPORTSManager.x86: + "/ESPORTSManager.x86": - when: - bit: 32 os: linux store: steam - /ESPORTSManager.x86_64: + "/ESPORTSManager.x86_64": - when: - bit: 64 os: linux store: steam - /eSportsManager_OSX.app: + "/eSportsManager_OSX.app": - when: - os: mac store: steam @@ -232453,7 +233124,7 @@ Gred: installDir: Gred: {} launch: - /Gred.exe: + "/Gred.exe": - when: - os: windows store: steam @@ -232463,21 +233134,21 @@ Greece Defense TD: installDir: Greece Defense TD: {} launch: - /GreeceDefense.app/Contents/MacOS/GreeceDefense: + "/GreeceDefense.app/Contents/MacOS/GreeceDefense": - when: - os: mac store: steam - /GreeceDefense.exe: + "/GreeceDefense.exe": - when: - os: windows store: steam steam: id: 650600 -'Greed 3: Old Enemies Returning': +"Greed 3: Old Enemies Returning": installDir: Greed 3 - Old Enemies Returning: {} launch: - /Greed3.exe: + "/Greed3.exe": - when: - os: windows store: steam @@ -232485,18 +233156,18 @@ Greece Defense TD: id: 1034280 Greed Corp: files: - /.config/unity3d/Vanguard Games/Greed Corp: + "/.config/unity3d/Vanguard Games/Greed Corp": tags: - config - save when: - os: linux - /userdata//48950/local/settings.dat: + "/userdata//48950/local/settings.dat": tags: - config when: - store: steam - /userdata//48950/remote: + "/userdata//48950/remote": tags: - save when: @@ -232504,7 +233175,7 @@ Greed Corp: installDir: Greed Corp: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam registry: @@ -232514,9 +233185,9 @@ Greed Corp: - save steam: id: 48950 -'Greed: Black Border': +"Greed: Black Border": files: - /save: + "/save": tags: - config when: @@ -232524,29 +233195,29 @@ Greed Corp: installDir: Greed Black Border: {} launch: - /Greed.exe: + "/Greed.exe": - when: - store: steam - /Options.exe: + "/Options.exe": - when: - store: steam steam: id: 46400 -'Greed: Forbidden Experiments': +"Greed: Forbidden Experiments": installDir: Greed 2 Forbidden Experiments: {} launch: - /GreedFE.exe: + "/GreedFE.exe": - when: - os: windows store: steam steam: id: 1007730 -'Greed: The Mad Scientist': +"Greed: The Mad Scientist": installDir: Greed The Mad Scientist: {} launch: - /Greed.exe: + "/Greed.exe": - when: - os: windows store: steam @@ -232554,12 +233225,12 @@ Greed Corp: id: 991960 GreedFall: files: - /GreedFall: + "/GreedFall": tags: - config when: - os: windows - /GreedFall/*.fsav: + "/GreedFall/*.fsav": tags: - save when: @@ -232569,7 +233240,7 @@ GreedFall: installDir: GreedFall: {} launch: - /GreedFall.exe: + "/GreedFall.exe": - when: - bit: 64 os: windows @@ -232581,7 +233252,7 @@ Greedy Crush: Greedy Crush: {} steam: id: 985840 -Greedy Developer's Cash Grab: +"Greedy Developer's Cash Grab": steam: id: 804540 Greedy Dungeons: @@ -232591,21 +233262,21 @@ Greedy Guns: installDir: Greedy Guns: {} launch: - /GreedyGuns.app/Contents/MacOS/GreedyGuns: + "/GreedyGuns.app/Contents/MacOS/GreedyGuns": - when: - os: mac store: steam - /GreedyGuns.x86: + "/GreedyGuns.x86": - when: - bit: 32 os: linux store: steam - /GreedyGuns.x86_64: + "/GreedyGuns.x86_64": - when: - bit: 64 os: linux store: steam - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -232618,7 +233289,7 @@ Green Blood: installDir: GreenBlood: {} launch: - /GreenBlood.exe: + "/GreenBlood.exe": - when: - os: windows store: steam @@ -232631,17 +233302,17 @@ Green Elephant 2D: installDir: Green elephant 2D: {} launch: - /ZS2D.exe: + "/ZS2D.exe": - when: - os: windows store: steam steam: id: 589770 -'Green Elephant: Epilogue': +"Green Elephant: Epilogue": installDir: Green Elephant Epilogue: {} launch: - /Green Elephant Epilogue.exe: + "/Green Elephant Epilogue.exe": - when: - store: steam steam: @@ -232650,30 +233321,30 @@ Green Field Silver Tree / 绿野白银树: installDir: 绿野白银树: {} launch: - /绿野白银树.exe: + "/绿野白银树.exe": - when: - os: windows store: steam steam: id: 1069520 -'Green Game: TimeSwapper': +"Green Game: TimeSwapper": installDir: Green Game: {} launch: - /GreenGame.app/Contents/MacOS/GreenGame: + "/GreenGame.app/Contents/MacOS/GreenGame": - when: - os: mac store: steam - /GreenGame.exe: + "/GreenGame.exe": - when: - os: windows store: steam - /GreenGame.x86: + "/GreenGame.x86": - when: - bit: 32 os: linux store: steam - /GreenGame.x86_64: + "/GreenGame.x86_64": - when: - bit: 64 os: linux @@ -232684,7 +233355,7 @@ Green General: installDir: Green General: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -232692,7 +233363,7 @@ Green General: id: 838370 Green Hell: files: - /userdata//815370/remote: + "/userdata//815370/remote": tags: - config - save @@ -232702,7 +233373,7 @@ Green Hell: installDir: Green Hell: {} launch: - /GH.exe: + "/GH.exe": - when: - bit: 64 os: windows @@ -232720,7 +233391,7 @@ Green Moon: installDir: Green Moon: {} launch: - /GreenMoon.exe: + "/GreenMoon.exe": - when: - os: windows store: steam @@ -232730,7 +233401,7 @@ Green Moon 2: installDir: Green Moon 2: {} launch: - /GreenMoon2.exe: + "/GreenMoon2.exe": - when: - os: windows store: steam @@ -232738,12 +233409,12 @@ Green Moon 2: id: 513260 Green Ranch: files: - /Palaplay/GreenRanch: + "/Palaplay/GreenRanch": tags: - save when: - os: windows - /Palaplay/GreenRanch/config.dat: + "/Palaplay/GreenRanch/config.dat": tags: - config when: @@ -232751,7 +233422,7 @@ Green Ranch: installDir: Green Ranch: {} launch: - /Green Ranch.exe: + "/Green Ranch.exe": - when: - os: windows store: steam @@ -232760,19 +233431,19 @@ Green Ranch: Green Slaughter: steam: id: 781940 -'Green: An Orc''s Life': +"Green: An Orc's Life": installDir: - Green An Orc's Life: {} + "Green An Orc's Life": {} launch: - /Green: + "/Green": - when: - os: mac store: steam - /Green.exe: + "/Green.exe": - when: - os: windows store: steam - /green.x86_64: + "/green.x86_64": - when: - os: linux store: steam @@ -232785,7 +233456,7 @@ GreenTech+ Legacy Edition: installDir: greenTech Legacy Edition: {} launch: - /greentech.exe: + "/greentech.exe": - when: - os: windows store: steam @@ -232796,7 +233467,7 @@ Greeng 2D Dungeon: id: 929810 Greenspawn Restaurant: files: - /.config/unity3d/AppleDash/Greenspawn Restaurant: + "/.config/unity3d/AppleDash/Greenspawn Restaurant": tags: - config - save @@ -232805,11 +233476,11 @@ Greenspawn Restaurant: installDir: Greenspawn Restaurant: {} launch: - /GreenspawnRestaurant.exe: + "/GreenspawnRestaurant.exe": - when: - os: windows store: steam - /GreenspawnRestaurant.x86: + "/GreenspawnRestaurant.x86": - when: - os: linux store: steam @@ -232824,26 +233495,26 @@ Greenwood the Last Ritual: installDir: Greenwood the Last Ritual: {} launch: - /greenwood.app: + "/greenwood.app": - when: - os: mac store: steam - /greenwood.exe: + "/greenwood.exe": - when: - bit: 64 os: windows store: steam - /greenwood.x86: + "/greenwood.x86": - when: - bit: 32 os: linux store: steam - /greenwood.x86_64: + "/greenwood.x86_64": - when: - bit: 64 os: linux store: steam - /greenwood32.exe: + "/greenwood32.exe": - when: - bit: 32 os: windows @@ -232854,7 +233525,7 @@ Greetings: installDir: Greetings: {} launch: - /Greetings.exe: + "/Greetings.exe": - when: - os: windows store: steam @@ -232869,21 +233540,21 @@ Gregor Hills Haunted Hospital: installDir: Gregor Hills Haunted Hospital: {} launch: - /GregorHillsHauntedHospital: + "/GregorHillsHauntedHospital": - when: - os: linux store: steam - /GregorHillsHauntedHospital.exe: + "/GregorHillsHauntedHospital.exe": - when: - os: windows store: steam steam: id: 1084770 -'Gremlin Invasion: Survivor': +"Gremlin Invasion: Survivor": installDir: Gremlin Invasion Survivor: {} launch: - /GremlinInvasionSurvivor.exe: + "/GremlinInvasionSurvivor.exe": - when: - os: windows store: steam @@ -232891,12 +233562,12 @@ Gregor Hills Haunted Hospital: id: 349980 Gremlins vs Automatons: files: - /Gremlins_vs_Automatons_Data/user.dat: + "/Gremlins_vs_Automatons_Data/user.dat": tags: - save when: - os: windows - /AppData/LocalLow/CharlieOscar/Gremlins vs Automatons/player_offline.cfg: + "/AppData/LocalLow/CharlieOscar/Gremlins vs Automatons/player_offline.cfg": tags: - config when: @@ -232906,15 +233577,15 @@ Gremlins vs Automatons: installDir: Gremlins_vs_Automatons: {} launch: - /Gremlins_vs_Automatons.app: + "/Gremlins_vs_Automatons.app": - when: - os: mac store: steam - /Gremlins_vs_Automatons.exe: + "/Gremlins_vs_Automatons.exe": - when: - os: windows store: steam - /Gremlins_vs_Automatons.x86: + "/Gremlins_vs_Automatons.x86": - when: - os: linux store: steam @@ -232924,9 +233595,9 @@ Gremlins vs Automatons: - config steam: id: 587670 -'Gremlins, Inc.': +"Gremlins, Inc.": files: - '/AppData/LocalLow/CharlieOscar/Gremlins, Inc_/player.cfg': + "/AppData/LocalLow/CharlieOscar/Gremlins, Inc_/player.cfg": tags: - config when: @@ -232936,25 +233607,25 @@ Gremlins vs Automatons: installDir: Gremlins: {} launch: - /Gremlins_Inc.app: + "/Gremlins_Inc.app": - when: - os: mac store: steam - /Gremlins_Inc.exe: + "/Gremlins_Inc.exe": - when: - os: windows store: steam - /Gremlins_Inc.x86: + "/Gremlins_Inc.x86": - when: - bit: 32 os: linux store: steam - /Gremlins_Inc.x86_64: + "/Gremlins_Inc.x86_64": - when: - os: linux store: steam registry: - 'HKEY_CURRENT_USER/Software/CharlieOscar/Gremlins, Inc.': + "HKEY_CURRENT_USER/Software/CharlieOscar/Gremlins, Inc.": tags: - config steam: @@ -232963,15 +233634,15 @@ Grenade Madness: installDir: Grenade Madness: {} launch: - /GM.app/Contents/MacOS/GM: + "/GM.app/Contents/MacOS/GM": - when: - os: mac store: steam - /GM.exe: + "/GM.exe": - when: - os: windows store: steam - /GM.x86: + "/GM.x86": - when: - os: linux store: steam @@ -232981,20 +233652,20 @@ Grey Cubes: installDir: GreyCubes: {} launch: - /GreyCubes.app: + "/GreyCubes.app": - when: - os: mac store: steam - /GreyCubes.exe: + "/GreyCubes.exe": - when: - os: windows store: steam - /GreyCubes.x86: + "/GreyCubes.x86": - when: - bit: 32 os: linux store: steam - /GreyCubes.x86_64: + "/GreyCubes.x86_64": - when: - bit: 64 os: linux @@ -233003,13 +233674,13 @@ Grey Cubes: id: 371500 Grey Goo: files: - /userdata//290790/remote: + "/userdata//290790/remote": tags: - config - save when: - store: steam - /Petroglyph/Goo: + "/Petroglyph/Goo": tags: - config - save @@ -233018,7 +233689,7 @@ Grey Goo: installDir: GreyGoo: {} launch: - /ClientLauncherG.exe: + "/ClientLauncherG.exe": - when: - bit: 32 os: windows @@ -233029,20 +233700,20 @@ Grey Hack: installDir: Grey Hack: {} launch: - /Grey Hack.app: + "/Grey Hack.app": - when: - os: mac store: steam - /Grey Hack.exe: + "/Grey Hack.exe": - when: - os: windows store: steam - /Grey Hack.x86: + "/Grey Hack.x86": - when: - bit: 32 os: linux store: steam - /Grey Hack.x86_64: + "/Grey Hack.x86_64": - when: - bit: 64 os: linux @@ -233053,7 +233724,7 @@ Grey Phobia: installDir: Grey Phobia: {} launch: - /GreyPhobia.exe: + "/GreyPhobia.exe": - when: - os: windows store: steam @@ -233063,27 +233734,27 @@ Grey Zone: installDir: Grey Zone: {} launch: - /GreyZone.exe: + "/GreyZone.exe": - when: - bit: 64 os: windows store: steam steam: id: 718980 -'Grey''s Anatomy: The Video Game': +"Grey's Anatomy: The Video Game": installDir: Greys Anatomy: {} launch: - /GreysAnatomy.exe: + "/GreysAnatomy.exe": - when: - store: steam steam: id: 21950 -'Grey: An Alien Dream': +"Grey: An Alien Dream": installDir: Grey An Alien Dream: {} launch: - /Grey - An alien dream.exe: + "/Grey - An alien dream.exe": - when: - os: windows store: steam @@ -233093,7 +233764,7 @@ Greyfox: installDir: Greyfox: {} launch: - /EQLauncher.exe: + "/EQLauncher.exe": - when: - os: windows store: steam @@ -233103,7 +233774,7 @@ Greyhound Manager 2 Rebooted: installDir: Greyhound Manager 2 Rebooted: {} launch: - /gm2.exe: + "/gm2.exe": - when: - os: windows store: steam @@ -233118,7 +233789,7 @@ Grid Creeps: installDir: Grid Creeps: {} launch: - /Grid Creeps.exe: + "/Grid Creeps.exe": - when: - os: windows store: steam @@ -233128,20 +233799,20 @@ Grid Defense: installDir: Spec Defense: {} launch: - /Spec Defense.exe: + "/Spec Defense.exe": - when: - store: steam steam: id: 956210 -'Grid Games: Color Coded': +"Grid Games: Color Coded": installDir: Color Coded: {} launch: - /Color Coded.exe: + "/Color Coded.exe": - when: - os: windows store: steam - /GridGamesColorCoded.app: + "/GridGamesColorCoded.app": - when: - os: mac store: steam @@ -233151,16 +233822,16 @@ Grid Gunner: installDir: Grid Gunner: {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: id: 898170 -'Grid Legion, Storm': +"Grid Legion, Storm": installDir: - 'Grid Legion, Storm': {} + "Grid Legion, Storm": {} launch: - /Grid Legion.exe: + "/Grid Legion.exe": - when: - os: windows store: steam @@ -233170,7 +233841,7 @@ Grid Magic: installDir: Grid Magic: {} launch: - /Grid Magic.exe: + "/Grid Magic.exe": - when: - os: windows store: steam @@ -233180,7 +233851,7 @@ Grid Masters: installDir: Grid Masters: {} launch: - /GridMasters.exe: + "/GridMasters.exe": - when: - os: windows store: steam @@ -233204,11 +233875,11 @@ Griddlers Victorian Picnic: installDir: Griddlers Victorian Picnic: {} launch: - /Griddlers Victorian Picnic.app: + "/Griddlers Victorian Picnic.app": - when: - os: mac store: steam - /Griddlers Victorian Picnic.exe: + "/Griddlers Victorian Picnic.exe": - when: - os: windows store: steam @@ -233218,7 +233889,7 @@ Gridiron Solitaire: installDir: Gridiron Solitaire: {} launch: - /Gridiron Solitaire.exe: + "/Gridiron Solitaire.exe": - when: - store: steam steam: @@ -233227,7 +233898,7 @@ Gridrunner Revolution: installDir: GridRunner Revolution: {} launch: - /GridRunnerRev_PC.exe: + "/GridRunnerRev_PC.exe": - when: - store: steam steam: @@ -233236,16 +233907,16 @@ Gridworld: installDir: Gridworld: {} launch: - /Gridworld.sh: + "/Gridworld.sh": - when: - os: linux store: steam - /Gridworld_32b.exe: + "/Gridworld_32b.exe": - when: - bit: 32 os: windows store: steam - /Gridworld_64b.exe: + "/Gridworld_64b.exe": - when: - bit: 64 os: windows @@ -233256,7 +233927,7 @@ Griefer: installDir: Griefer: {} launch: - /Griefer.exe: + "/Griefer.exe": - when: - os: windows store: steam @@ -233266,7 +233937,7 @@ Griefhelm: installDir: Griefhelm: {} launch: - /Griefhelm.exe: + "/Griefhelm.exe": - when: - os: windows store: steam @@ -233274,27 +233945,27 @@ Griefhelm: id: 1125330 Griftlands: files: - /.local/share/Klei/Griftlands/steam-/*.lua: + "/.local/share/Klei/Griftlands/steam-/*.lua": tags: - save when: - os: linux - /.local/share/Klei/Griftlands/steam-/saves: + "/.local/share/Klei/Griftlands/steam-/saves": tags: - save when: - os: linux - /.local/share/Klei/Griftlands/steam-/settings.ini: + "/.local/share/Klei/Griftlands/steam-/settings.ini": tags: - config when: - os: linux - /Klei/Griftlands//saves: + "/Klei/Griftlands//saves": tags: - save when: - os: windows - /Klei/Griftlands//settings.ini: + "/Klei/Griftlands//settings.ini": tags: - config when: @@ -233302,20 +233973,20 @@ Griftlands: installDir: Griftlands: {} launch: - /Griftlands.app: + "/Griftlands.app": - when: - os: mac store: steam - /bin/Griftlands: + "/bin/Griftlands": - when: - os: linux store: steam - workingDir: /bin - /bin/Griftlands.exe: + workingDir: "/bin" + "/bin/Griftlands.exe": - when: - os: windows store: steam - workingDir: /bin + workingDir: "/bin" steam: id: 601840 Grim Clicker: @@ -233329,7 +234000,7 @@ Grim Clicker: installDir: Grim Clicker: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -233337,17 +234008,17 @@ Grim Clicker: id: 1160750 Grim Dawn: files: - /userdata//219990/remote/save: + "/userdata//219990/remote/save": tags: - save when: - store: steam - /My Games/Grim Dawn/Settings: + "/My Games/Grim Dawn/Settings": tags: - config when: - os: windows - /My Games/Grim Dawn/save: + "/My Games/Grim Dawn/save": tags: - save when: @@ -233356,11 +234027,11 @@ Grim Dawn: id: 1449651388 id: gogExtra: - - 1812959072 - - 1551979801 - 1536648751 - - 2004748256 + - 1551979801 + - 1812959072 - 1842678741 + - 2004748256 steamExtra: - 483840 - 565610 @@ -233370,7 +234041,7 @@ Grim Dawn: installDir: Grim Dawn: {} launch: - /grim dawn.exe: + "/grim dawn.exe": - when: - os: windows store: steam @@ -233378,7 +234049,7 @@ Grim Dawn: when: - os: windows store: steam - /x64/grim dawn.exe: + "/x64/grim dawn.exe": - when: - bit: 64 os: windows @@ -233389,7 +234060,7 @@ Grim Dragons: installDir: Grim Dragons: {} launch: - /GrimDragons.exe: + "/GrimDragons.exe": - when: - os: windows store: steam @@ -233399,56 +234070,56 @@ Grim Earth: installDir: Grim Earth: {} launch: - /GrimEarth.exe: + "/GrimEarth.exe": - when: - os: windows store: steam steam: id: 905220 -'Grim Facade: A Wealth of Betrayal': +"Grim Facade: A Wealth of Betrayal": installDir: - Grim Facade A Wealth of Betrayal Collector's Edition: {} + "Grim Facade A Wealth of Betrayal Collector's Edition": {} launch: - /Grim_Facade_A_Wealth_of_Betrayal_CE.exe: + "/Grim_Facade_A_Wealth_of_Betrayal_CE.exe": - when: - os: windows store: steam steam: id: 786080 -'Grim Facade: Hidden Sins': +"Grim Facade: Hidden Sins": installDir: - Grim Facade Hidden Sins Collector's Edition: {} + "Grim Facade Hidden Sins Collector's Edition": {} launch: - /GrimFacade_HiddenSins_CE.exe: + "/GrimFacade_HiddenSins_CE.exe": - when: - os: windows store: steam steam: id: 1072180 -'Grim Facade: Mystery of Venice': +"Grim Facade: Mystery of Venice": installDir: Grim Facade Mystery of Venice Collector’s Edition: {} launch: - /GrimFacade_MysteryOfVeniceCE.exe: + "/GrimFacade_MysteryOfVeniceCE.exe": - when: - store: steam steam: id: 555820 -'Grim Facade: Sinister Obsession': +"Grim Facade: Sinister Obsession": installDir: Grim Facade Sinister Obsession Collector’s Edition: {} launch: - /GrimFacade_SinisterObsessionCE.exe: + "/GrimFacade_SinisterObsessionCE.exe": - when: - os: windows store: steam steam: id: 638290 -'Grim Facade: The Artist and The Pretender': +"Grim Facade: The Artist and The Pretender": installDir: - Grim Facade The Artist and The Pretender Collector's Edition: {} + "Grim Facade The Artist and The Pretender Collector's Edition": {} launch: - /GrimFacade_TheArtistandthePretender_CE.exe: + "/GrimFacade_TheArtistandthePretender_CE.exe": - when: - os: windows store: steam @@ -233456,32 +234127,32 @@ Grim Earth: id: 940990 Grim Fandango: files: - /grim**.gsv: + "/grim**.gsv": tags: - save when: - os: windows Grim Fandango Remastered: files: - /Saves: + "/Saves": tags: - config - save when: - store: steam - /bin/Saves: + "/bin/Saves": tags: - config - save when: - os: linux - /Library/Application Support/Doublefine/GrimFandango: + "/Library/Application Support/Doublefine/GrimFandango": tags: - config - save when: - os: mac - /Doublefine/GrimFandango: + "/Doublefine/GrimFandango": tags: - config - save @@ -233492,23 +234163,23 @@ Grim Fandango Remastered: installDir: Grim Fandango Remastered: {} launch: - /GrimFandango: + "/GrimFandango": - when: - os: linux store: steam - /GrimFandango.app: + "/GrimFandango.app": - when: - os: mac store: steam - /GrimFandango.exe: + "/GrimFandango.exe": - when: - os: windows store: steam steam: id: 316790 -'Grim Legends 2: Song of the Dark Swan': +"Grim Legends 2: Song of the Dark Swan": files: - /userdata//279800/remote/profile: + "/userdata//279800/remote/profile": tags: - config - save @@ -233519,29 +234190,29 @@ Grim Fandango Remastered: installDir: Grim Legends Song of the Dark Swan: {} launch: - /GrimLegends_SongOfTheDarkSwan.exe: + "/GrimLegends_SongOfTheDarkSwan.exe": - when: - os: windows store: steam - /GrimLegends_SongOfTheDarkSwan_amd64: + "/GrimLegends_SongOfTheDarkSwan_amd64": - when: - bit: 64 os: linux store: steam - /GrimLegends_SongOfTheDarkSwan_i386: + "/GrimLegends_SongOfTheDarkSwan_i386": - when: - bit: 32 os: linux store: steam - /mac_steam.app/Contents/MacOS/mac_steam: + "/mac_steam.app/Contents/MacOS/mac_steam": - when: - os: mac store: steam steam: id: 279800 -'Grim Legends 3: The Dark City': +"Grim Legends 3: The Dark City": files: - /userdata//458470/remote/profile: + "/userdata//458470/remote/profile": tags: - config - save @@ -233552,29 +234223,29 @@ Grim Fandango Remastered: installDir: Grim Legends 3 The Dark City: {} launch: - /DarkCity.exe: + "/DarkCity.exe": - when: - os: windows store: steam - /DarkCity_amd64: + "/DarkCity_amd64": - when: - bit: 64 os: linux store: steam - /DarkCity_i386: + "/DarkCity_i386": - when: - bit: 32 os: linux store: steam - /mac_steam.app/Contents/MacOS/mac_steam: + "/mac_steam.app/Contents/MacOS/mac_steam": - when: - os: mac store: steam steam: id: 458470 -'Grim Legends: The Forsaken Bride': +"Grim Legends: The Forsaken Bride": files: - /userdata//284850/remote/profile: + "/userdata//284850/remote/profile": tags: - config - save @@ -233585,22 +234256,22 @@ Grim Fandango Remastered: installDir: Grim Legends The Forsaken Bride: {} launch: - /GrimLegends_TheForsakenBride.exe: + "/GrimLegends_TheForsakenBride.exe": - when: - bit: 32 os: windows store: steam - /GrimLegends_TheForsakenBride_amd64: + "/GrimLegends_TheForsakenBride_amd64": - when: - bit: 64 os: linux store: steam - /GrimLegends_TheForsakenBride_i386: + "/GrimLegends_TheForsakenBride_i386": - when: - bit: 32 os: linux store: steam - /mac_steam.app/Contents/MacOS/mac_steam: + "/mac_steam.app/Contents/MacOS/mac_steam": - when: - os: mac store: steam @@ -233615,76 +234286,76 @@ Grim Seventh: installDir: Grim Seventh: {} launch: - /GrimSeventh.exe: + "/GrimSeventh.exe": - when: - os: windows store: steam steam: id: 510730 -'Grim Tales: Bloody Mary': +"Grim Tales: Bloody Mary": installDir: - Grim Tales Bloody Mary Collector's Edition: {} + "Grim Tales Bloody Mary Collector's Edition": {} launch: - /GrimTales_BloodyMaryCE.exe: + "/GrimTales_BloodyMaryCE.exe": - when: - os: windows store: steam steam: id: 956400 -'Grim Tales: Guest from the Future': +"Grim Tales: Guest from the Future": installDir: - Grim Tales Guest From The Future Collector's Edition: {} + "Grim Tales Guest From The Future Collector's Edition": {} launch: - /GrimTales_GuestFromTheFuture_CE.exe: + "/GrimTales_GuestFromTheFuture_CE.exe": - when: - os: windows store: steam steam: id: 1147220 -'Grim Tales: The Bride': +"Grim Tales: The Bride": installDir: - Grim Tales The Bride Collector's Edition: {} + "Grim Tales The Bride Collector's Edition": {} launch: - /GrimTales_TheBride_CE.exe: + "/GrimTales_TheBride_CE.exe": - when: - store: steam steam: id: 527900 -'Grim Tales: The Legacy': +"Grim Tales: The Legacy": installDir: - Grim Tales The Legacy Collector's Edition: {} + "Grim Tales The Legacy Collector's Edition": {} launch: - /GrimTales_TheLegacy_CE.exe: + "/GrimTales_TheLegacy_CE.exe": - when: - os: windows store: steam steam: id: 623360 -'Grim Tales: The Stone Queen': +"Grim Tales: The Stone Queen": installDir: - Grim Tales The Stone Queen Collector's Edition: {} + "Grim Tales The Stone Queen Collector's Edition": {} launch: - /GrimTales_TheStoneQueenCE.exe: + "/GrimTales_TheStoneQueenCE.exe": - when: - os: windows store: steam steam: id: 838730 -'Grim Tales: The Vengeance': +"Grim Tales: The Vengeance": installDir: - Grim Tales The Vengeance Collector's Edition: {} + "Grim Tales The Vengeance Collector's Edition": {} launch: - /GrimTales_TheVengeanceCE.exe: + "/GrimTales_TheVengeanceCE.exe": - when: - os: windows store: steam steam: id: 1082500 -'Grim Tales: The Wishes': +"Grim Tales: The Wishes": installDir: - Grim Tales The Wishes Collector's Edition: {} + "Grim Tales The Wishes Collector's Edition": {} launch: - /GrimTales_TheWishesCE.exe: + "/GrimTales_TheWishesCE.exe": - when: - os: windows store: steam @@ -233694,36 +234365,36 @@ Grim Wanderings: installDir: Grim wanderings: {} launch: - /Contents/MacOS/Grim wanderings: + "/Contents/MacOS/Grim wanderings": - when: - os: mac store: steam - /Grim wanderings: + "/Grim wanderings": - when: - os: linux store: steam - /Grim wanderings.exe: + "/Grim wanderings.exe": - when: - os: windows store: steam steam: id: 799620 -'Grim: Mystery of Wasules': +"Grim: Mystery of Wasules": installDir: GRIM - Mystery of Wasules: {} launch: - /GRIM - Mystery of Wasules/GRIMMoW.exe: - - arguments: '-fullscreen' + "/GRIM - Mystery of Wasules/GRIMMoW.exe": + - arguments: "-fullscreen" when: - os: windows store: steam steam: id: 714530 -'Grimalkin: Solar Defense Force': +"Grimalkin: Solar Defense Force": installDir: Grimalkin Solar Defense Force: {} launch: - /GSDF.exe: + "/GSDF.exe": - when: - os: windows store: steam @@ -233733,25 +234404,25 @@ Grimante: installDir: Grimante: {} launch: - /Grimante.app: + "/Grimante.app": - when: - os: mac store: steam - /grimante.exe: + "/grimante.exe": - when: - os: windows store: steam steam: id: 734450 -'Grimcastle: Battle Tales': +"Grimcastle: Battle Tales": installDir: Grim Town Battle Tales: {} launch: - /Grim Town Battle Tales.app/Contents/MacOS/Grim Town Battle Tales: + "/Grim Town Battle Tales.app/Contents/MacOS/Grim Town Battle Tales": - when: - os: mac store: steam - /Grim Town Battle Tales.exe: + "/Grim Town Battle Tales.exe": - when: - os: windows store: steam @@ -233759,7 +234430,7 @@ Grimante: id: 813240 Grime: files: - /AppData/LocalLow/Clover Bite/GRIME/Save Files: + "/AppData/LocalLow/Clover Bite/GRIME/Save Files": tags: - save when: @@ -233773,7 +234444,7 @@ Grime: installDir: GRIME: {} launch: - /GRIME.exe: + "/GRIME.exe": - when: - os: windows store: steam @@ -233787,15 +234458,15 @@ Grimind: installDir: Grimind: {} launch: - /Grimind: + "/Grimind": - when: - os: linux store: steam - /Grimind.app: + "/Grimind.app": - when: - os: mac store: steam - /Grimind.exe: + "/Grimind.exe": - when: - os: windows store: steam @@ -233805,7 +234476,7 @@ Grimm & Tonic: installDir: Grimm & Tonic: {} launch: - /GnT.exe: + "/GnT.exe": - when: - os: windows store: steam @@ -233815,34 +234486,34 @@ Grimm 1865: installDir: Grimm 1865: {} launch: - /Grimm1865.exe: + "/Grimm1865.exe": - when: - bit: 64 os: windows store: steam steam: id: 1217200 -Grimm's Hollow: +"Grimm's Hollow": files: - /*.lsd: + "/*.lsd": tags: - save when: - os: windows installDir: - Grimm's Hollow: {} + "Grimm's Hollow": {} launch: - /RPG_RT.exe: + "/RPG_RT.exe": - when: - os: windows store: steam steam: id: 1170880 -'Grimm: Dark Legacy': +"Grimm: Dark Legacy": installDir: Grimm Dark Legacy: {} launch: - /grimm.exe: + "/grimm.exe": - when: - store: steam steam: @@ -233851,7 +234522,7 @@ Grimmwood: installDir: Grimmwood Open beta: {} launch: - /Grimmwood.exe: + "/Grimmwood.exe": - when: - os: windows store: steam @@ -233861,7 +234532,7 @@ Grimmwood - They Come at Night: installDir: Grimmwood: {} launch: - /Grimmwood.exe: + "/Grimmwood.exe": - when: - os: windows store: steam @@ -233871,14 +234542,14 @@ Grimoire Chronicles: installDir: Grimoire Chronicles: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: id: 607040 -'Grimoire: Heralds of the Winged Exemplar': +"Grimoire: Heralds of the Winged Exemplar": files: - /game.cfg: + "/game.cfg": tags: - config when: @@ -233888,17 +234559,17 @@ Grimoire Chronicles: installDir: Grimoire_Heralds_of_the_Winged_Exemplar: {} launch: - /Grimoire.exe: + "/Grimoire.exe": - when: - os: windows store: steam steam: id: 650670 -'Grimoire: Manastorm': +"Grimoire: Manastorm": installDir: Grimoire Manastorm: {} launch: - /Binaries/Win32/UDK.exe: + "/Binaries/Win32/UDK.exe": - when: - bit: 32 os: windows @@ -233909,7 +234580,7 @@ Grimrush: installDir: Grimrush: {} launch: - /grimrush.exe: + "/grimrush.exe": - when: - os: windows store: steam @@ -233919,11 +234590,11 @@ Grimsfield: installDir: Grimsfield: {} launch: - /Grimsfield.app: + "/Grimsfield.app": - when: - os: mac store: steam - /Grimsfield.exe: + "/Grimsfield.exe": - when: - os: windows store: steam @@ -233931,12 +234602,12 @@ Grimsfield: id: 447000 Grimshade: files: - /Games/Talerock/Grimshade/Saves: + "/Games/Talerock/Grimshade/Saves": tags: - save when: - os: windows - /Games/Talerock/Grimshade/Saves/profiles.gsh: + "/Games/Talerock/Grimshade/Saves/profiles.gsh": tags: - config when: @@ -233946,7 +234617,7 @@ Grimshade: installDir: Grimshade: {} launch: - /Grimshade.exe: + "/Grimshade.exe": - when: - os: windows store: steam @@ -233959,7 +234630,7 @@ Grimtale Island: installDir: Grimtale Island: {} launch: - /GrimtaleIsland: + "/GrimtaleIsland": - when: - bit: 64 os: windows @@ -233974,15 +234645,15 @@ Grind Zones: id: 327680 Grindstone: files: - /AppData/LocalLow/Capybara Games/Grindstone/EpicSaves: + "/AppData/LocalLow/Capybara Games/Grindstone/EpicSaves": tags: - save when: - - store: epic + - os: windows installDir: Grindstone: {} launch: - /Grindstone.exe: + "/Grindstone.exe": - when: - store: steam registry: @@ -233995,7 +234666,7 @@ Grindzones: installDir: Grindzones: {} launch: - /GrindZones.exe: + "/GrindZones.exe": - when: - os: windows store: steam @@ -234007,21 +234678,21 @@ Gripper: installDir: Gripper: {} launch: - /Gripper.exe: + "/Gripper.exe": - when: - os: windows store: steam steam: id: 1336380 -Gripper's Adventure: +"Gripper's Adventure": installDir: - Gripper's Adventure: {} + "Gripper's Adventure": {} launch: - /Gripper's Adventure.app: + "/Gripper's Adventure.app": - when: - os: mac store: steam - /Grippers Adventure.exe: + "/Grippers Adventure.exe": - when: - os: windows store: steam @@ -234031,15 +234702,15 @@ Griptape Backbone: installDir: Griptape Backbone: {} launch: - /Griptape Backbone.app: + "/Griptape Backbone.app": - when: - os: mac store: steam - /Griptape Backbone.exe: + "/Griptape Backbone.exe": - when: - os: windows store: steam - /Griptape Backbone.x86: + "/Griptape Backbone.x86": - when: - os: linux store: steam @@ -234047,33 +234718,33 @@ Griptape Backbone: id: 581120 Gris: files: - /AppData/LocalLow/nomada studio/GRIS//Save01/Config.gs: + "/AppData/LocalLow/nomada studio/GRIS//Save01/Config.gs": tags: - config when: - os: windows - /AppData/LocalLow/nomada studio/GRIS//Save01/Persistent.gs: + "/AppData/LocalLow/nomada studio/GRIS//Save01/Persistent.gs": tags: - save when: - os: windows - /AppData/LocalLow/nomada studio/GRIS//Save01/Progress.gs: + "/AppData/LocalLow/nomada studio/GRIS//Save01/Progress.gs": tags: - save when: - os: windows - /AppData/LocalLow/nomada studio/GRIS/Save01: + "/AppData/LocalLow/nomada studio/GRIS/Save01": tags: - save when: - os: windows store: microsoft - /Library/Application Support/nomada studio/GRIS//Save01/Persistent.gs: + "/Library/Application Support/nomada studio/GRIS//Save01/Persistent.gs": tags: - save when: - os: mac - /Library/Application Support/nomada studio/GRIS//Save01/Progress.gs: + "/Library/Application Support/nomada studio/GRIS//Save01/Progress.gs": tags: - save when: @@ -234083,11 +234754,11 @@ Gris: installDir: GRIS: {} launch: - /GRIS.app: + "/GRIS.app": - when: - os: mac store: steam - /GRIS.exe: + "/GRIS.exe": - when: - os: windows store: steam @@ -234101,7 +234772,7 @@ Grisaia Phantom Trigger Vol.1: installDir: Grisaia Phantom Trigger Vol.1: {} launch: - /GPT_vol1.exe: + "/GPT_vol1.exe": - when: - store: steam steam: @@ -234110,7 +234781,7 @@ Grisaia Phantom Trigger Vol.2: installDir: Grisaia Phantom Trigger Vol.2: {} launch: - /GPT_vol2.exe: + "/GPT_vol2.exe": - when: - store: steam steam: @@ -234119,7 +234790,7 @@ Grisaia Phantom Trigger Vol.3: installDir: Grisaia Phantom Trigger Vol.3: {} launch: - /GPT_vol3.exe: + "/GPT_vol3.exe": - when: - store: steam steam: @@ -234128,7 +234799,7 @@ Grisaia Phantom Trigger Vol.4: installDir: Grisaia Phantom Trigger Vol.4: {} launch: - /GPT_vol4.exe: + "/GPT_vol4.exe": - when: - store: steam steam: @@ -234137,7 +234808,7 @@ Grisaia Phantom Trigger Vol.5: installDir: Grisaia Phantom Trigger Vol.5: {} launch: - /GPT_vol5.exe: + "/GPT_vol5.exe": - when: - store: steam steam: @@ -234146,7 +234817,7 @@ Grisaia Phantom Trigger Vol.5.5: installDir: Grisaia Phantom Trigger Vol.5.5: {} launch: - /GPT_vol5_5.exe: + "/GPT_vol5_5.exe": - when: - store: steam steam: @@ -234155,16 +234826,16 @@ Grisaia Phantom Trigger Vol.6: installDir: Grisaia Phantom Trigger Vol.6: {} launch: - /GPT_vol6.exe: + "/GPT_vol6.exe": - when: - store: steam steam: id: 1039970 -'Grit : Overworld Survival': +"Grit : Overworld Survival": installDir: Grit: {} launch: - /Grit.exe: + "/Grit.exe": - when: - os: windows store: steam @@ -234179,7 +234850,7 @@ Grizzland: installDir: Grizzland: {} launch: - /Grizzland.exe: + "/Grizzland.exe": - when: - store: steam steam: @@ -234191,7 +234862,7 @@ Grizzly Valley: installDir: Grizzly Valley: {} launch: - /GrizzlyValley.exe: + "/GrizzlyValley.exe": - when: - os: windows store: steam @@ -234199,7 +234870,7 @@ Grizzly Valley: id: 461520 Grobda Remix: files: - /kotokata_Data/save: + "/kotokata_Data/save": tags: - save when: @@ -234207,7 +234878,7 @@ Grobda Remix: installDir: Grobda Remix: {} launch: - /kotokata.exe: + "/kotokata.exe": - when: - os: windows store: steam @@ -234217,7 +234888,7 @@ Groggers!: installDir: Groggers!: {} launch: - /Groggers.exe: + "/Groggers.exe": - when: - bit: 64 os: windows @@ -234231,7 +234902,7 @@ Grompula: installDir: Grompula: {} launch: - /Grompula.exe: + "/Grompula.exe": - when: - os: windows store: steam @@ -234241,11 +234912,11 @@ Grood: installDir: GROOD: {} launch: - /Build-osx.app: + "/Build-osx.app": - when: - os: mac store: steam - /full-game.exe: + "/full-game.exe": - when: - os: windows store: steam @@ -234255,15 +234926,15 @@ Groomer: installDir: Groomer: {} launch: - /Groomer.app/Contents/MacOS/Groomer: + "/Groomer.app/Contents/MacOS/Groomer": - when: - os: mac store: steam - /Groomer.exe: + "/Groomer.exe": - when: - os: windows store: steam - /Groomer.x86: + "/Groomer.x86": - when: - os: linux store: steam @@ -234273,7 +234944,7 @@ Grooming Adventure: installDir: Grooming Adventure: {} launch: - /Grooming Adventure.exe: + "/Grooming Adventure.exe": - when: - os: windows store: steam @@ -234281,7 +234952,7 @@ Grooming Adventure: id: 974250 Groove Coaster: files: - /gcst: + "/gcst": tags: - save when: @@ -234289,10 +234960,10 @@ Groove Coaster: installDir: Groove Coaster for Steam: {} launch: - /App/Release/gcst.exe: + "/App/Release/gcst.exe": - when: - store: steam - workingDir: /App/Release + workingDir: "/App/Release" steam: id: 744060 Groove Gunner: @@ -234304,7 +234975,7 @@ Groove Runner: installDir: Groove Runner: {} launch: - /RhythmGame/Binaries/Win64/RhythmGame-Win64-Shipping.exe: + "/RhythmGame/Binaries/Win64/RhythmGame-Win64-Shipping.exe": - when: - os: windows store: steam @@ -234314,11 +234985,11 @@ Groovy: installDir: Groovy: {} launch: - /Groovy.exe: + "/Groovy.exe": - when: - os: windows store: steam - /Groovy/Binaries/Linux/Groovy: + "/Groovy/Binaries/Linux/Groovy": - when: - os: linux store: steam @@ -234328,11 +234999,11 @@ Grotesque Beauty - A Psychological Horror Text Adventure: installDir: Grotesque Beauty: {} launch: - /Grotesque Beauty.exe: + "/Grotesque Beauty.exe": - when: - os: windows store: steam - /Grotesque_Beauty.app: + "/Grotesque_Beauty.app": - when: - os: mac store: steam @@ -234342,15 +235013,15 @@ Grotesque Tactics 2 - Dungeons and Donuts: installDir: Grotesque Tactics 2: {} launch: - /x86_installer/GrotesqueTactics.exe: + "/x86_installer/GrotesqueTactics.exe": - when: - store: steam - workingDir: /x86_installer + workingDir: "/x86_installer" steam: id: 46570 -'Grotesque Tactics: Evil Heroes': +"Grotesque Tactics: Evil Heroes": files: - /Grotesque-Tactics/Settings/Config.xml: + "/Grotesque-Tactics/Settings/Config.xml": tags: - config when: @@ -234358,7 +235029,7 @@ Grotesque Tactics 2 - Dungeons and Donuts: installDir: Grotesque Tactics: {} launch: - /GrotesqueTactics.exe: + "/GrotesqueTactics.exe": - when: - store: steam steam: @@ -234367,7 +235038,7 @@ Grotoro: installDir: Grotoro: {} launch: - /Grotoro.exe: + "/Grotoro.exe": - when: - bit: 64 os: windows @@ -234376,7 +235047,7 @@ Grotoro: id: 825580 Grottesco Absurdus: files: - /Fucking_Hare/Grottesco_Absurdus.dat: + "/Fucking_Hare/Grottesco_Absurdus.dat": tags: - save when: @@ -234384,7 +235055,7 @@ Grottesco Absurdus: installDir: Grottesco Absurdus: {} launch: - /Grottesco_Absurdus_Steam.exe: + "/Grottesco_Absurdus_Steam.exe": - when: - os: windows store: steam @@ -234396,7 +235067,7 @@ Grotto: installDir: Grotto: {} launch: - /Grotto.exe: + "/Grotto.exe": - when: - store: steam steam: @@ -234406,12 +235077,12 @@ GrottyScape: id: 540310 Ground Branch: files: - /GroundBranch: + "/GroundBranch": tags: - save when: - os: windows - /GroundBranch/Saved/Config/WindowsNoEditor: + "/GroundBranch/Saved/Config/WindowsNoEditor": tags: - config when: @@ -234419,7 +235090,7 @@ Ground Branch: installDir: Ground Branch: {} launch: - /GroundBranch.exe: + "/GroundBranch.exe": - when: - bit: 64 os: windows @@ -234430,15 +235101,15 @@ Ground Breakers: installDir: Ground Breakers: {} launch: - /GroundBreakers.app: + "/GroundBreakers.app": - when: - os: mac store: steam - /GroundBreakers.exe: + "/GroundBreakers.exe": - when: - os: windows store: steam - /GroundBreakers.x86_64: + "/GroundBreakers.x86_64": - when: - os: linux store: steam @@ -234446,12 +235117,12 @@ Ground Breakers: id: 376250 Ground Control: files: - /data/games/game*: + "/data/games/game*": tags: - save when: - os: windows - /data/games/settings.dat: + "/data/games/settings.dat": tags: - config when: @@ -234461,19 +235132,19 @@ Ground Control: installDir: Ground Control Anthology: {} launch: - /Launcher/GC1Launcher.exe: + "/Launcher/GC1Launcher.exe": - when: - store: steam steam: id: 254820 -'Ground Control II: Operation Exodus': +"Ground Control II: Operation Exodus": files: - '/profiles/[profile number]/*.gciisave': + "/profiles/[profile number]/*.gciisave": tags: - save when: - os: windows - '/profiles/[profile number]/[profile number].profile': + "/profiles/[profile number]/[profile number].profile": tags: - config when: @@ -234483,12 +235154,12 @@ Ground Control: installDir: Ground Control II: {} launch: - /Launcher/GC2Launcher.exe: + "/Launcher/GC2Launcher.exe": - when: - store: steam steam: id: 254840 -'Ground Runner: Trials': +"Ground Runner: Trials": installDir: Ground Runner Trials: {} steam: @@ -234497,7 +235168,7 @@ Ground War: installDir: Ground War: {} launch: - /GWar.exe: + "/GWar.exe": - when: - os: windows store: steam @@ -234507,7 +235178,7 @@ GroundFall: installDir: GroundFall: {} launch: - /GroundFall.exe: + "/GroundFall.exe": - when: - os: windows store: steam @@ -234515,23 +235186,25 @@ GroundFall: id: 934260 Grounded: files: - /Saved Games/Grounded: + "/Saved Games/Grounded": tags: - save when: - - store: steam - /Maine/Saved/Config: + - os: windows + store: steam + "/Maine/Saved/Config": tags: - config when: - - store: steam - /Maine/Saved/Config/WinGDK: + - os: windows + store: steam + "/Maine/Saved/Config/WinGDK": tags: - config when: - os: windows store: microsoft - /Packages/Microsoft.Maine_8wekyb3d8bbwe/SystemAppData/wgs: + "/Packages/Microsoft.Maine_8wekyb3d8bbwe/SystemAppData/wgs": tags: - save when: @@ -234540,19 +235213,19 @@ Grounded: installDir: Grounded: {} launch: - /Grounded.exe: + "/Grounded.exe": - when: - store: steam steam: id: 962130 -'Groundhog Day: Like Father Like Son': +"Groundhog Day: Like Father Like Son": files: - /GHD/Saved/Config/WindowsNoEditor: + "/GHD/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /GHD/Saved/SaveGames: + "/GHD/Saved/SaveGames": tags: - save when: @@ -234565,11 +235238,11 @@ Groundless: installDir: Groundless: {} launch: - /Groundless.app: + "/Groundless.app": - when: - os: mac store: steam - /Groundless.exe: + "/Groundless.exe": - when: - os: windows store: steam @@ -234579,7 +235252,7 @@ Grounds of Glory: installDir: Grounds of Glory: {} launch: - /Arenaz.exe: + "/Arenaz.exe": - when: - bit: 64 os: windows @@ -234590,7 +235263,7 @@ Grove flowers: installDir: Grove flowers: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -234598,17 +235271,17 @@ Grove flowers: id: 1031290 Grow Home: files: - /.config/unity3d/Reflections/Grow Home: + "/.config/unity3d/Reflections/Grow Home": tags: - config when: - os: linux - /userdata//323320/remote: + "/userdata//323320/remote": tags: - save when: - store: steam - /GrowHome: + "/GrowHome": tags: - save when: @@ -234616,17 +235289,17 @@ Grow Home: installDir: GrowHome: {} launch: - /GrowHome.exe: + "/GrowHome.exe": - when: - os: windows store: steam - /GrowHome.x86: + "/GrowHome.x86": - arguments: LC_ALL=C %command% when: - bit: 32 os: linux store: steam - /GrowHome.x86_64: + "/GrowHome.x86_64": - arguments: LC_ALL=C %command% when: - bit: 64 @@ -234640,7 +235313,7 @@ Grow Home: id: 323320 Grow Up: files: - /userdata//426790/remote: + "/userdata//426790/remote": tags: - save when: @@ -234648,7 +235321,7 @@ Grow Up: installDir: Grow Up: {} launch: - /GrowUP.exe: + "/GrowUP.exe": - when: - os: windows store: steam @@ -234658,14 +235331,14 @@ Grow Up: - config steam: id: 426790 -'Grow: Song of the Evertree': +"Grow: Song of the Evertree": files: - /AppData/LocalLow/505 Games/Grow_ Song of the Evertree: + "/AppData/LocalLow/505 Games/Grow_ Song of the Evertree": tags: - save when: - os: windows - /AppData/LocalLow/505 Games/Grow_ Song of the Evertree/settings.prefs: + "/AppData/LocalLow/505 Games/Grow_ Song of the Evertree/settings.prefs": tags: - config when: @@ -234675,17 +235348,17 @@ Grow Up: installDir: Grow Song of the Evertree: {} launch: - /Grow.exe: + "/Grow.exe": - when: - os: windows store: steam steam: id: 1380420 -'Grow: Wild West': +"Grow: Wild West": installDir: GROW Wild West: {} launch: - /GROW_Wild_West.exe: + "/GROW_Wild_West.exe": - when: - store: steam steam: @@ -234697,7 +235370,7 @@ GrowRilla: id: 981880 Growbot: files: - /AppData/LocalLow/Dumpling Media/Growbot: + "/AppData/LocalLow/Dumpling Media/Growbot": tags: - save when: @@ -234707,20 +235380,20 @@ Growbot: installDir: Growbot: {} launch: - /Growbot.app: + "/Growbot.app": - when: - os: mac store: steam - /Growbot.exe: + "/Growbot.exe": - when: - os: windows store: steam - /Growbot.x86: + "/Growbot.x86": - when: - bit: 32 os: linux store: steam - /Growbot.x86_64: + "/Growbot.x86_64": - when: - bit: 64 os: linux @@ -234729,19 +235402,19 @@ Growbot: id: 661680 Growing Pains: files: - /Library/Application Support/GrowingPains: + "/Library/Application Support/GrowingPains": tags: - config - save when: - os: mac - /SavedGames/GrowingPains: + "/SavedGames/GrowingPains": tags: - config - save when: - os: windows - /GrowingPains: + "/GrowingPains": tags: - config - save @@ -234750,37 +235423,31 @@ Growing Pains: installDir: Growing Pains: {} launch: - /Growing Pains.app/Contents/MacOS/GrowingPains: + "/Growing Pains.app/Contents/MacOS/GrowingPains": - when: - os: mac store: steam - /GrowingPains: + "/GrowingPains": - when: - os: linux store: steam - /GrowingPains.exe: + "/GrowingPains.exe": - when: - os: windows store: steam steam: id: 291610 Growing Up: - files: - 'C:/Users/*/Documents/Growing Up': - tags: - - save - when: - - os: windows gog: id: 2063281711 installDir: Growing Up: {} launch: - /Growing Up.app: + "/Growing Up.app": - when: - os: mac store: steam - /Growing Up.exe: + "/Growing Up.exe": - when: - os: windows store: steam @@ -234790,7 +235457,7 @@ Grudge TV: installDir: Grudge TV: {} launch: - /DirgeProject.exe: + "/DirgeProject.exe": - when: - os: windows store: steam @@ -234803,7 +235470,7 @@ Grunt1914: installDir: Grunt1914: {} launch: - /Grunt1914.exe: + "/Grunt1914.exe": - when: - os: windows store: steam @@ -234816,15 +235483,15 @@ Gryphon Knight Epic: installDir: Gryphon Knight Epic: {} launch: - /gke.app: + "/gke.app": - when: - os: mac store: steam - /gke.exe: + "/gke.exe": - when: - os: windows store: steam - /gke.x86: + "/gke.x86": - when: - os: linux store: steam @@ -234834,7 +235501,7 @@ GuJian: installDir: Gujian: {} launch: - /bin/GuJian.exe: + "/bin/GuJian.exe": - when: - os: windows store: steam @@ -234844,7 +235511,7 @@ GuJian 2: installDir: Gujian2: {} launch: - /Bin/GuJian2.exe: + "/Bin/GuJian2.exe": - when: - os: windows store: steam @@ -234852,7 +235519,7 @@ GuJian 2: id: 570770 GuJian 3: files: - /config: + "/config": tags: - config when: @@ -234863,32 +235530,32 @@ GuJian 3: id: 994280 Guacamelee! 2: files: - /userdata//534550/remote/SAVE.DAT: + "/userdata//534550/remote/SAVE.DAT": tags: - save when: - store: steam - /Guacamelee2/SAVE.DAT: + "/Guacamelee2/SAVE.DAT": tags: - save when: - os: windows - /Guacamelee2Settings/LOCALSETTINGS.DAT: + "/Guacamelee2Settings/LOCALSETTINGS.DAT": tags: - config when: - os: windows - /Guacamelee2_EGS/LOCALSETTINGS.DAT: + "/Guacamelee2_EGS/LOCALSETTINGS.DAT": tags: - config when: - - store: epic - /Guacamelee2_EGS/SAVE.DAT: + - os: windows + "/Guacamelee2_EGS/SAVE.DAT": tags: - save when: - - store: epic - /Packages/DrinkboxStudios.Guacamelee2_n8jvyy2pw6mya/SystemAppData/wgs: + - os: windows + "/Packages/DrinkboxStudios.Guacamelee2_n8jvyy2pw6mya/SystemAppData/wgs": tags: - save when: @@ -234899,9 +235566,9 @@ Guacamelee! 2: id: gogExtra: - 1165180350 - - 1912729628 - 1263671489 - 1460368534 + - 1912729628 steamExtra: - 911610 - 942540 @@ -234909,12 +235576,12 @@ Guacamelee! 2: installDir: Guacamelee2: {} launch: - /Guac2_x64.exe: + "/Guac2_x64.exe": - when: - bit: 64 os: windows store: steam - /Guac2_x86.exe: + "/Guac2_x86.exe": - when: - bit: 32 os: windows @@ -234923,24 +235590,24 @@ Guacamelee! 2: id: 534550 Guacamelee! Gold Edition: files: - /Documents/Drinkbox Studios/Guacamelee: + "/Documents/Drinkbox Studios/Guacamelee": tags: - config - save when: - os: mac - /userdata//214770/remote: + "/userdata//214770/remote": tags: - save when: - store: steam - /Guacamelee: + "/Guacamelee": tags: - config - save when: - os: windows - /Drinkbox Studios/Guacamelee: + "/Drinkbox Studios/Guacamelee": tags: - config - save @@ -234951,15 +235618,15 @@ Guacamelee! Gold Edition: installDir: Guacamelee: {} launch: - /Guac.exe: + "/Guac.exe": - when: - os: windows store: steam - /Guacamelee_Steam.app: + "/Guacamelee_Steam.app": - when: - os: mac store: steam - /game: + "/game": - when: - os: linux store: steam @@ -234967,54 +235634,54 @@ Guacamelee! Gold Edition: id: 214770 Guacamelee! Super Turbo Championship Edition: files: - /userdata//275390/remote/SAVE.DAT: + "/userdata//275390/remote/SAVE.DAT": tags: - save when: - store: steam - /GuacameleeSTCE/LOCALSETTINGS.DAT: + "/GuacameleeSTCE/LOCALSETTINGS.DAT": tags: - config when: - os: windows - /GuacameleeSTCE_EGS/LOCALSETTINGS.DAT: + "/GuacameleeSTCE_EGS/LOCALSETTINGS.DAT": tags: - config when: - - store: epic - /GuacameleeSTCE_EGS/SAVE.DAT: + - os: windows + "/GuacameleeSTCE_EGS/SAVE.DAT": tags: - save when: - - store: epic + - os: windows gog: id: 1207665733 installDir: DrinkBox_Game4: {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: id: 275390 Guard Duty: files: - /Saved Games/Guard Duty: + "/Saved Games/Guard Duty": tags: - save when: - os: windows - /Saved Games/Guard Duty/acsetup.cfg: + "/Saved Games/Guard Duty/acsetup.cfg": tags: - config when: - os: windows - /ags/Guard Duty: + "/ags/Guard Duty": tags: - save when: - os: linux - /ags/Guard Duty/acsetup.cfg: + "/ags/Guard Duty/acsetup.cfg": tags: - config when: @@ -235024,11 +235691,11 @@ Guard Duty: installDir: Guard Duty: {} launch: - /Guard Duty.app/Contents/MacOS/Guard Duty: + "/Guard Duty.app/Contents/MacOS/Guard Duty": - when: - os: mac store: steam - /GuardDuty.exe: + "/GuardDuty.exe": - when: - os: windows store: steam @@ -235038,7 +235705,7 @@ Guard of Wonderland: installDir: Guard of Wonderland: {} launch: - /Guard of Wonderland.exe: + "/Guard of Wonderland.exe": - when: - os: windows store: steam @@ -235053,11 +235720,11 @@ Guardian: installDir: Guardian: {} launch: - /nw: + "/nw": - when: - os: linux store: steam - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -235070,7 +235737,7 @@ Guardian Chronicle: installDir: Guardian Chronicle: {} launch: - /GC.exe: + "/GC.exe": - when: - store: steam steam: @@ -235079,7 +235746,7 @@ Guardian Force: installDir: Guardian Force Saturn Tribute: {} launch: - /GuardianForce.exe: + "/GuardianForce.exe": - when: - os: windows store: steam @@ -235097,7 +235764,7 @@ Guardian of December: installDir: Guardian Of December: {} launch: - /Guardian Of December.exe: + "/Guardian Of December.exe": - when: - os: windows store: steam @@ -235112,11 +235779,11 @@ Guardian of Lore: installDir: Guardian_of_Lore: {} launch: - /GOL.exe: + "/GOL.exe": - when: - os: windows store: steam - /GOLMac.app: + "/GOLMac.app": - when: - os: mac store: steam @@ -235131,25 +235798,25 @@ Guardian of the Future: installDir: Guardian of the future: {} launch: - /GuardianOfTheFuture.app: + "/GuardianOfTheFuture.app": - when: - os: mac store: steam - /GuardianOfTheFuture.exe: + "/GuardianOfTheFuture.exe": - when: - os: windows store: steam - /GuardianOfTheFuture.sh: + "/GuardianOfTheFuture.sh": - when: - os: linux store: steam steam: id: 1076610 -Guardian's Oath: +"Guardian's Oath": installDir: GuardiansOath: {} launch: - /golaunch.exe: + "/golaunch.exe": - when: - os: windows store: steam @@ -235159,7 +235826,7 @@ Guardians Of Rings: installDir: Guardians Of Rings: {} launch: - /guardiansofmagic.exe: + "/guardiansofmagic.exe": - when: - bit: 64 os: windows @@ -235180,7 +235847,7 @@ Guardians of Graxia: installDir: Guardians Of Graxia: {} launch: - /GuardiansOfGraxia.exe: + "/GuardiansOfGraxia.exe": - when: - store: steam steam: @@ -235189,13 +235856,13 @@ Guardians of Hyelore: installDir: GoH: {} launch: - /GoH.exe: + "/GoH.exe": - when: - os: windows store: steam steam: id: 1525330 -'Guardians of Infinity: To Save Kennedy': +"Guardians of Infinity: To Save Kennedy": installDir: Guardians of Infinity To Save Kennedy: {} steam: @@ -235209,16 +235876,16 @@ Guardians of Middle-earth: installDir: Guardians of Middle-earth: {} launch: - /x86/GOME.exe: + "/x86/GOME.exe": - when: - os: windows store: steam - workingDir: /x86 + workingDir: "/x86" steam: id: 111900 Guardians of Victoria: files: - /GuardiansofVictoria/User Data: + "/GuardiansofVictoria/User Data": tags: - config - save @@ -235227,26 +235894,35 @@ Guardians of Victoria: installDir: Guardians of Victoria: {} launch: - /guardiansofvictoria: + "/guardiansofvictoria": - when: - bit: 32 os: linux store: steam - /guardiansofvictoria.app: + - bit: 64 + os: linux + store: steam + "/guardiansofvictoria.app": - when: - bit: 32 os: mac store: steam - /nw.exe: + - bit: 64 + os: mac + store: steam + "/nw.exe": - when: - bit: 32 os: windows store: steam + - bit: 64 + os: windows + store: steam steam: id: 385080 Guardians of the Ashes: files: - /GotA_Data/Saves: + "/GotA_Data/Saves": tags: - save when: @@ -235254,7 +235930,7 @@ Guardians of the Ashes: installDir: Guardians of the Ashes: {} launch: - /GotA.exe: + "/GotA.exe": - when: - os: windows store: steam @@ -235264,8 +235940,11 @@ Guardians of the Past: installDir: Guardians Of The Past: {} launch: - /Project_Hologram.exe: + "/Project_Hologram.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam @@ -235275,16 +235954,16 @@ Guards: installDir: po: {} launch: - /guards.app/Contents/MacOS/guards: + "/guards.app/Contents/MacOS/guards": - when: - os: mac store: steam - /guards.x86: + "/guards.x86": - when: - os: linux store: steam - /po.exe: - - arguments: '-windowed' + "/po.exe": + - arguments: "-windowed" when: - os: windows store: steam @@ -235294,18 +235973,18 @@ Guards of the Gate: installDir: Guards of the Gate: {} launch: - /GuardsoftheGate.exe: + "/GuardsoftheGate.exe": - when: - os: windows store: steam steam: id: 815290 -'Guazu: The Rescue': +"Guazu: The Rescue": installDir: Guazu The Rescue: {} launch: - /Guazu The Rescue.exe: - - arguments: '-fullscreen' + "/Guazu The Rescue.exe": + - arguments: "-fullscreen" when: - os: windows store: steam @@ -235313,7 +235992,7 @@ Guards of the Gate: id: 1620920 Gubble 2: files: - /gubble0#.sav: + "/gubble0#.sav": tags: - save when: @@ -235326,20 +236005,20 @@ Guess Da Meme: installDir: Guess Da Meme: {} launch: - /Guess Da Meme.app: + "/Guess Da Meme.app": - when: - os: mac store: steam - /Guess Da Meme.exe: + "/Guess Da Meme.exe": - when: - os: windows store: steam - /Guess Da Meme.x86: + "/Guess Da Meme.x86": - when: - bit: 32 os: linux store: steam - /Guess Da Meme.x86_64: + "/Guess Da Meme.x86_64": - when: - bit: 64 os: linux @@ -235350,7 +236029,7 @@ Guess who ?: installDir: Guess who: {} launch: - /Guesswho.exe: + "/Guesswho.exe": - when: - store: steam steam: @@ -235359,7 +236038,7 @@ Guide the Ball: installDir: Guide The Ball: {} launch: - /GuideTheBall.exe: + "/GuideTheBall.exe": - when: - os: windows store: steam @@ -235379,7 +236058,7 @@ Guiding Light: installDir: Guiding Light: {} launch: - /Guiding Light.exe: + "/Guiding Light.exe": - when: - os: windows store: steam @@ -235389,7 +236068,7 @@ Guild Commander: installDir: Guild Commander: {} launch: - /Guild Commander.exe: + "/Guild Commander.exe": - when: - os: windows store: steam @@ -235399,11 +236078,11 @@ Guild Quest: installDir: Guild Quest: {} launch: - /guild-quest.app: + "/guild-quest.app": - when: - os: mac store: steam - /guild-quest.exe: + "/guild-quest.exe": - when: - os: windows store: steam @@ -235425,14 +236104,14 @@ Guild Wars: installDir: Guild Wars: {} launch: - /Gw.exe: + "/Gw.exe": - when: - store: steam steam: id: 29720 Guild Wars 2: files: - /Guild Wars 2/GFXSettings.Gw2.exe.xml: + "/Guild Wars 2/GFXSettings.Gw2.exe.xml": tags: - config when: @@ -235447,8 +236126,8 @@ Guild Wars 2: installDir: Guild Wars 2: {} launch: - /Gw2-64.exe: - - arguments: '-provider Steam' + "/Gw2-64.exe": + - arguments: "-provider Steam" when: - bit: 64 os: windows @@ -235461,7 +236140,7 @@ Guild Wars Factions: Guild Wars Nightfall: steam: id: 29580 -'Guild Wars: Eye of the North': +"Guild Wars: Eye of the North": steam: id: 29700 Guild of Ascension: @@ -235470,7 +236149,7 @@ Guild of Ascension: installDir: Guild of Ascension: {} launch: - /GuildOfAscension.exe: + "/GuildOfAscension.exe": - when: - bit: 64 os: windows @@ -235483,19 +236162,19 @@ Guild of Darksteel: installDir: Guild of Darksteel: {} launch: - /Guild of Darksteel.exe: + "/Guild of Darksteel.exe": - when: - store: steam steam: id: 1356580 Guild of Dungeoneering: files: - /dungeoneering/Local Store: + "/dungeoneering/Local Store": tags: - save when: - os: windows - /dungeoneering/Local Store/settings.dat: + "/dungeoneering/Local Store/settings.dat": tags: - config when: @@ -235505,11 +236184,11 @@ Guild of Dungeoneering: installDir: Guild of Dungeoneering: {} launch: - /GuildUltimate.app: + "/GuildUltimate.app": - when: - os: mac store: steam - /Ultimate Dungeoneering.exe: + "/Ultimate Dungeoneering.exe": - when: - os: windows store: steam @@ -235522,11 +236201,11 @@ Guildmaster Story: installDir: Guildmaster Story: {} launch: - /Guildmaster Story.exe: + "/Guildmaster Story.exe": - when: - os: windows store: steam - /OSX.app: + "/OSX.app": - when: - os: mac store: steam @@ -235536,7 +236215,7 @@ Guilt Battle Arena: installDir: Guilt Battle Arena: {} launch: - /Guilt Battle Arena.exe: + "/Guilt Battle Arena.exe": - when: - os: windows store: steam @@ -235544,12 +236223,12 @@ Guilt Battle Arena: id: 677520 Guilty Gear: files: - /AppData/LocalLow/Arc System Works/GUILTY GEAR: + "/AppData/LocalLow/Arc System Works/GUILTY GEAR": tags: - config when: - os: windows - /AppData/LocalLow/Arc System Works/GUILTY GEAR/savedata: + "/AppData/LocalLow/Arc System Works/GUILTY GEAR/savedata": tags: - save when: @@ -235557,17 +236236,17 @@ Guilty Gear: installDir: GUILTYGEAR: {} launch: - /GuiltyGear.exe: + "/GuiltyGear.exe": - when: - os: windows store: steam steam: id: 850980 -'Guilty Gear 2: Overture': +"Guilty Gear 2: Overture": installDir: GG2: {} launch: - /ggsx.exe: + "/ggsx.exe": - when: - os: windows store: steam @@ -235575,7 +236254,7 @@ Guilty Gear: id: 437000 Guilty Gear Isuka: files: - /ZOO Digital Publishing/GuiltyGearIsuka: + "/ZOO Digital Publishing/GuiltyGearIsuka": tags: - config - save @@ -235586,11 +236265,11 @@ Guilty Gear Isuka: installDir: GUILTY GEAR ISUKA: {} launch: - /config.exe: + "/config.exe": - when: - os: windows store: steam - /ggdx.exe: + "/ggdx.exe": - when: - os: windows store: steam @@ -235598,12 +236277,12 @@ Guilty Gear Isuka: id: 267900 Guilty Gear Strive: files: - /GGST/Saved/Config/WindowsNoEditor: + "/GGST/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /GGST/Saved/SaveGames/: + "/GGST/Saved/SaveGames/": tags: - save when: @@ -235614,7 +236293,7 @@ Guilty Gear Strive: id: 1384160 Guilty Gear X2 Reload: files: - /ZOO Digital Publishing/GuiltyGearX2: + "/ZOO Digital Publishing/GuiltyGearX2": tags: - config - save @@ -235623,24 +236302,24 @@ Guilty Gear X2 Reload: gog: id: 1207658922 installDir: - 'Guilty Gear X2 #Reload': {} + "Guilty Gear X2 #Reload": {} launch: - /config.exe: + "/config.exe": - when: - store: steam - /ggx2.exe: + "/ggx2.exe": - when: - store: steam steam: id: 314030 Guilty Gear XX Accent Core Plus R: files: - /ARC SYSTEM WORKS/GGXXAC/Config: + "/ARC SYSTEM WORKS/GGXXAC/Config": tags: - config when: - os: windows - /ARC SYSTEM WORKS/GGXXAC/save: + "/ARC SYSTEM WORKS/GGXXAC/save": tags: - save when: @@ -235648,7 +236327,7 @@ Guilty Gear XX Accent Core Plus R: installDir: Guilty Gear XX Accent Core Plus R: {} launch: - /GGXXACPR_Win.exe: + "/GGXXACPR_Win.exe": - when: - os: windows store: steam @@ -235656,12 +236335,12 @@ Guilty Gear XX Accent Core Plus R: id: 348550 Guilty Gear Xrd -Revelator-: files: - /REDGame/Config: + "/REDGame/Config": tags: - config when: - os: windows - /SAVE: + "/SAVE": tags: - save when: @@ -235669,19 +236348,19 @@ Guilty Gear Xrd -Revelator-: installDir: GUILTY GEAR Xrd -REVELATOR-: {} launch: - /BootGGXrd.bat: + "/BootGGXrd.bat": - when: - store: steam steam: id: 520440 Guilty Gear Xrd -SIGN-: files: - /REDGame/Config: + "/REDGame/Config": tags: - config when: - os: windows - /SAVE: + "/SAVE": tags: - save when: @@ -235689,19 +236368,19 @@ Guilty Gear Xrd -SIGN-: installDir: GUILTY GEAR Xrd -SIGN-: {} launch: - /BootGGXrd.bat: + "/BootGGXrd.bat": - when: - store: steam steam: id: 376300 Guilty Gear Xrd Rev 2: files: - /REDGame/Config: + "/REDGame/Config": tags: - config when: - os: windows - /SAVE: + "/SAVE": tags: - save when: @@ -235709,7 +236388,7 @@ Guilty Gear Xrd Rev 2: installDir: GUILTY GEAR Xrd -REVELATOR-: {} launch: - /BootGGXrd.bat: + "/BootGGXrd.bat": - when: - store: steam steam: @@ -235718,20 +236397,20 @@ Guilty Parade: installDir: Guilty Parade: {} launch: - /GuiltyParade-32.exe: + "/GuiltyParade-32.exe": - when: - bit: 32 os: windows store: steam - /GuiltyParade.app: + "/GuiltyParade.app": - when: - os: mac store: steam - /GuiltyParade.exe: + "/GuiltyParade.exe": - when: - os: windows store: steam - /GuiltyParade.sh: + "/GuiltyParade.sh": - when: - os: linux store: steam @@ -235741,11 +236420,11 @@ Guilty Summer Kiss: installDir: Guilty Summer Kiss: {} launch: - /Guilty Summer Kiss.app/Contents/MacOS/Guilty Summer Kiss: + "/Guilty Summer Kiss.app/Contents/MacOS/Guilty Summer Kiss": - when: - os: mac store: steam - /Guilty Summer Kiss.exe: + "/Guilty Summer Kiss.exe": - when: - os: windows store: steam @@ -235755,11 +236434,11 @@ Guilty Summer Kiss 2 - Bloody Secret: installDir: Guilty Summer Kiss 2: {} launch: - /Guilty Summer Kiss 2.app/Contents/MacOS/Guilty Summer Kiss 2: + "/Guilty Summer Kiss 2.app/Contents/MacOS/Guilty Summer Kiss 2": - when: - os: mac store: steam - /Guilty Summer Kiss 2.exe: + "/Guilty Summer Kiss 2.exe": - when: - os: windows store: steam @@ -235770,7 +236449,7 @@ Guinea-Pig: id: 781700 Guise of the Wolf: files: - /Game/INFO1.SAV: + "/Game/INFO1.SAV": tags: - save when: @@ -235778,60 +236457,60 @@ Guise of the Wolf: installDir: Guise Of The Wolf: {} launch: - /Game/Guise Of The Wolf H.exe: + "/Game/Guise Of The Wolf H.exe": - when: - os: windows store: steam - workingDir: /Game - /Game/Guise Of The Wolf M.exe: + workingDir: "/Game" + "/Game/Guise Of The Wolf M.exe": - when: - os: windows store: steam - workingDir: /Game + workingDir: "/Game" steam: id: 259640 Guitar Hardness: installDir: Guitar Hardness: {} launch: - /Guitar Hardness.exe: + "/Guitar Hardness.exe": - when: - os: windows store: steam steam: id: 694470 -'Guitar Hero III: Legends of Rock': +"Guitar Hero III: Legends of Rock": files: - /Aspyr/Guitar Hero III/Save: + "/Aspyr/Guitar Hero III/Save": tags: - save when: - os: windows - /Aspyr/Guitar Hero III/AspyrConfig.xml: + "/Aspyr/Guitar Hero III/AspyrConfig.xml": tags: - config when: - os: windows -'Guitar Hero: Aerosmith': +"Guitar Hero: Aerosmith": files: - /Aspyr/Guitar Hero Aerosmith/Save: + "/Aspyr/Guitar Hero Aerosmith/Save": tags: - save when: - os: windows - /Aspyr/Guitar Hero Aerosmith/AspyrConfig.xml: + "/Aspyr/Guitar Hero Aerosmith/AspyrConfig.xml": tags: - config when: - os: windows -'Guitar Hero: World Tour': +"Guitar Hero: World Tour": files: - /Aspyr/Guitar Hero World Tour/Save: + "/Aspyr/Guitar Hero World Tour/Save": tags: - save when: - os: windows - /Aspyr/Guitar Hero World Tour/AspyrConfig.xml: + "/Aspyr/Guitar Hero World Tour/AspyrConfig.xml": tags: - config when: @@ -235846,15 +236525,15 @@ Gulf of Aden - Task Force Somalia: installDir: Gulf of Aden - Task Force Somalia: {} launch: - /GulfOfAden.app/Contents/MacOS/GulfOfAden: + "/GulfOfAden.app/Contents/MacOS/GulfOfAden": - when: - os: mac store: steam - /GulfOfAden.exe: + "/GulfOfAden.exe": - when: - os: windows store: steam - /GulfOfAden.x86: + "/GulfOfAden.x86": - when: - os: linux store: steam @@ -235865,19 +236544,19 @@ Gull Kebap VR: Gull Kebap VR: {} steam: id: 867750 -'Gulman 4: Still alive': +"Gulman 4: Still alive": installDir: Gulman 4 Still alive: {} launch: - /G4_en.exe: + "/G4_en.exe": - when: - os: windows store: steam - /G4_remake.exe: + "/G4_remake.exe": - when: - os: windows store: steam - /Shooter22.exe: + "/Shooter22.exe": - when: - os: windows store: steam @@ -235887,7 +236566,7 @@ Gulman 5: installDir: Gulman 5: {} launch: - /G5.exe: + "/G5.exe": - when: - os: windows store: steam @@ -235897,7 +236576,7 @@ Gulu: installDir: Gulu: {} launch: - /Gulu.exe: + "/Gulu.exe": - when: - store: steam steam: @@ -235906,7 +236585,7 @@ Gum Guy: installDir: Gum Guy: {} launch: - /GumGuy.exe: + "/GumGuy.exe": - when: - os: windows store: steam @@ -235921,16 +236600,16 @@ Gumboy Tournament: installDir: Gumboy Tournament: {} launch: - /GumboyTournament.exe: + "/GumboyTournament.exe": - when: - store: steam steam: id: 11230 -'Gumboy: Crazy Adventures': +"Gumboy: Crazy Adventures": installDir: Gumboy Crazy Adventures: {} launch: - /GumboyCrazyAdventures.exe: + "/GumboyCrazyAdventures.exe": - when: - store: steam steam: @@ -235939,7 +236618,7 @@ Gummy Goo Clean Up: installDir: Gummy Goo Clean Up: {} launch: - /Gummy Goo Clean Up.exe: + "/Gummy Goo Clean Up.exe": - when: - os: windows store: steam @@ -235949,7 +236628,7 @@ Gump: installDir: Gump: {} launch: - /Gump.exe: + "/Gump.exe": - when: - os: windows store: steam @@ -235958,18 +236637,18 @@ Gump: Gump Runner: steam: id: 606050 -'Gumstein: The Awakening': +"Gumstein: The Awakening": installDir: Gumstein The Awakening: {} launch: - /SlimeGame.exe: + "/SlimeGame.exe": - when: - store: steam steam: id: 906650 Gun: files: - /Activision/Gun/saves: + "/Activision/Gun/saves": tags: - save when: @@ -235979,7 +236658,7 @@ Gun: installDir: GUN: {} launch: - /gun.exe: + "/gun.exe": - when: - store: steam registry: @@ -235997,7 +236676,7 @@ Gun Blaze: installDir: GunBlaze: {} launch: - /GunBlaze.exe: + "/GunBlaze.exe": - when: - bit: 64 os: windows @@ -236008,7 +236687,7 @@ Gun Bombers: installDir: Gun Bombers: {} launch: - /GB.exe: + "/GB.exe": - when: - os: windows store: steam @@ -236018,21 +236697,21 @@ Gun Brothers: installDir: GunBrothers: {} launch: - /GunBrothers.exe: + "/GunBrothers.exe": - when: - os: windows store: steam - workingDir: /GunBrothers_Data - /GunBrothers.x86: + workingDir: "/GunBrothers_Data" + "/GunBrothers.x86": - when: - os: linux store: steam - workingDir: /GunBrothers_Data + workingDir: "/GunBrothers_Data" steam: id: 514410 Gun Club VR: files: - /AppData/LocalLow/NextGen Reality/Gun Club VR: + "/AppData/LocalLow/NextGen Reality/Gun Club VR": tags: - save when: @@ -236045,7 +236724,7 @@ Gun Crazy: installDir: Gun Crazy: {} launch: - /Gun Crazy.exe: + "/Gun Crazy.exe": - when: - os: windows store: steam @@ -236055,7 +236734,7 @@ Gun Devil: installDir: Gun Devil: {} launch: - /Gun Devil.exe: + "/Gun Devil.exe": - when: - store: steam steam: @@ -236064,17 +236743,17 @@ Gun Done: installDir: Gun Done: {} launch: - /Gun Done.exe: + "/Gun Done.exe": - when: - store: steam steam: id: 488280 -'Gun Done: Who Is Awesome': +"Gun Done: Who Is Awesome": steam: id: 836310 Gun Godz: files: - /GUNGODZ: + "/GUNGODZ": tags: - config when: @@ -236082,15 +236761,15 @@ Gun Godz: installDir: GUNGODZ: {} launch: - /GUNGODZ: + "/GUNGODZ": - when: - os: linux store: steam - /GUNGODZ.app: + "/GUNGODZ.app": - when: - os: mac store: steam - /GUNGODZ.exe: + "/GUNGODZ.exe": - when: - os: windows store: steam @@ -236098,12 +236777,12 @@ Gun Godz: id: 522940 Gun Gun Pixies: files: - /My Games/GunGunPixies: + "/My Games/GunGunPixies": tags: - save when: - os: windows - /My Games/GunGunPixies/setting.ini: + "/My Games/GunGunPixies/setting.ini": tags: - config when: @@ -236111,12 +236790,12 @@ Gun Gun Pixies: installDir: Gun Gun Pixies: {} launch: - /game_x64.exe: + "/game_x64.exe": - when: - bit: 64 os: windows store: steam - /game_x86.exe: + "/game_x86.exe": - when: - bit: 32 os: windows @@ -236125,12 +236804,12 @@ Gun Gun Pixies: id: 1023970 Gun Metal: files: - /data/SavedGames: + "/data/SavedGames": tags: - save when: - os: windows - /data/persist.dat: + "/data/persist.dat": tags: - config when: @@ -236140,7 +236819,7 @@ Gun Metal: installDir: Gun Metal: {} launch: - /gunmetal.exe: + "/gunmetal.exe": - when: - os: windows store: steam @@ -236151,7 +236830,7 @@ Gun Miner: id: 1213100 Gun Monkeys: files: - /userdata//239450/remote: + "/userdata//239450/remote": tags: - config when: @@ -236159,11 +236838,11 @@ Gun Monkeys: installDir: Gun Monkeys: {} launch: - /Gun_Monkeys.exe: + "/Gun_Monkeys.exe": - when: - os: windows store: steam - /gun_monkeys.app: + "/gun_monkeys.app": - when: - os: mac store: steam @@ -236177,7 +236856,7 @@ Gun Rage: installDir: Gun Rage: {} launch: - /Gun Rage.exe: + "/Gun Rage.exe": - when: - os: windows store: steam @@ -236195,8 +236874,11 @@ Gun Rocket: installDir: Gun Rocket: {} launch: - /GunRocket.exe: + "/GunRocket.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam @@ -236210,7 +236892,7 @@ Gun Wings: installDir: Gun Wings: {} launch: - /GunWings.exe: + "/GunWings.exe": - when: - store: steam steam: @@ -236219,11 +236901,11 @@ Gun man: installDir: gun man: {} launch: - /Part2_complete: + "/Part2_complete": - when: - os: linux store: steam - /gun_man.exe: + "/gun_man.exe": - when: - os: windows store: steam @@ -236233,7 +236915,7 @@ Gun-Running War Dogs: installDir: Gun-Running War Dogs: {} launch: - /GRWD.exe: + "/GRWD.exe": - when: - os: windows store: steam @@ -236243,7 +236925,7 @@ GunFleet: installDir: GunFleet: {} launch: - /gunfleet.exe: + "/gunfleet.exe": - when: - os: windows store: steam @@ -236253,7 +236935,7 @@ GunFu Heroes: installDir: Gunfu: {} launch: - /Gunfu.exe: + "/Gunfu.exe": - when: - os: windows store: steam @@ -236263,10 +236945,10 @@ GunGirl 2: installDir: GunGirl 2: {} launch: - /GG2setup.exe: + "/GG2setup.exe": - when: - store: steam - /GunGirl 2.exe: + "/GunGirl 2.exe": - when: - store: steam steam: @@ -236275,11 +236957,11 @@ GunHero: installDir: GunHero: {} launch: - /GunHero.exe: + "/GunHero.exe": - when: - os: windows store: steam - /GunHero.x86: + "/GunHero.x86": - when: - os: linux store: steam @@ -236287,7 +236969,7 @@ GunHero: id: 568840 GunWorld: files: - /GunWorld_Steam: + "/GunWorld_Steam": tags: - config - save @@ -236296,17 +236978,17 @@ GunWorld: installDir: GunWorld: {} launch: - /GunWorld Steam.exe: + "/GunWorld Steam.exe": - when: - os: windows store: steam steam: id: 349950 -'GunZ 2: The Second Duel': +"GunZ 2: The Second Duel": installDir: GunZ 2 The Second Duel: {} launch: - /Gunz2_Steam.exe: + "/Gunz2_Steam.exe": - when: - os: windows store: steam @@ -236321,11 +237003,11 @@ Gunbarich: installDir: GUNBARICH: {} launch: - /Gunbarich.exe: + "/Gunbarich.exe": - when: - os: windows store: steam - /setting.exe: + "/setting.exe": - when: - os: windows store: steam @@ -236333,12 +237015,12 @@ Gunbarich: id: 1342240 Gunbird: files: - /gunbird/savedata.bin: + "/gunbird/savedata.bin": tags: - save when: - os: windows - /gunbird/setting.bin: + "/gunbird/setting.bin": tags: - config when: @@ -236346,11 +237028,11 @@ Gunbird: installDir: GUNBIRD: {} launch: - /gunbird.exe: + "/gunbird.exe": - when: - os: windows store: steam - /setting.exe: + "/setting.exe": - when: - os: windows store: steam @@ -236360,11 +237042,11 @@ Gunbird 2: installDir: GUNBIRD2: {} launch: - /gunbird2.exe: + "/gunbird2.exe": - when: - os: windows store: steam - /setting.exe: + "/setting.exe": - when: - os: windows store: steam @@ -236379,7 +237061,7 @@ Gunboat: id: 1357490 Guncraft: files: - /GunCraft: + "/GunCraft": tags: - save when: @@ -236387,14 +237069,14 @@ Guncraft: installDir: Guncraft: {} launch: - /GunCraft.exe: + "/GunCraft.exe": - when: - store: steam steam: id: 241720 Gundam Evolution: files: - /EvoGame/Saved: + "/EvoGame/Saved": tags: - config when: @@ -236402,8 +237084,8 @@ Gundam Evolution: installDir: GUNDAM EVOLUTION: {} launch: - /EvoLauncher.exe: - - arguments: '-noreuseconn -Provider=Live' + "/EvoLauncher.exe": + - arguments: "-noreuseconn -Provider=Live" when: - os: windows store: steam @@ -236411,7 +237093,7 @@ Gundam Evolution: id: 1816670 GundeadliGne: files: - /userdata//92220/remote: + "/userdata//92220/remote": tags: - save when: @@ -236419,14 +237101,14 @@ GundeadliGne: installDir: GundeadliGne: {} launch: - /gundeadligne.exe: + "/gundeadligne.exe": - when: - store: steam steam: id: 92220 Gundemonium Recollection: files: - /userdata//92200/remote: + "/userdata//92200/remote": tags: - save when: @@ -236434,7 +237116,7 @@ Gundemonium Recollection: installDir: Gundemonium Recollection: {} launch: - /gundemonium.exe: + "/gundemonium.exe": - when: - store: steam steam: @@ -236443,7 +237125,7 @@ Gunducky Industries: installDir: Gunducky Industries: {} launch: - /gunduckyindustries.exe: + "/gunduckyindustries.exe": - when: - bit: 32 os: windows @@ -236452,12 +237134,12 @@ Gunducky Industries: id: 686240 Gunfire Reborn: files: - /AppData/LocalLow/duoyi/Gunfire Reborn: + "/AppData/LocalLow/duoyi/Gunfire Reborn": tags: - config when: - os: windows - /userdata//1217060/remote: + "/userdata//1217060/remote": tags: - save when: @@ -236466,8 +237148,8 @@ Gunfire Reborn: installDir: Gunfire Reborn: {} launch: - /Gunfire Reborn.exe: - - arguments: '-nolog' + "/Gunfire Reborn.exe": + - arguments: "-nolog" when: - bit: 64 os: windows @@ -236476,18 +237158,18 @@ Gunfire Reborn: id: 1217060 Gungrave G.O.R.E: files: - /GunGraveGore/Saved/Config/WindowsNoEditor: + "/GunGraveGore/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /GunGraveGore/Saved/SaveGames: + "/GunGraveGore/Saved/SaveGames": tags: - config - save when: - os: windows - /GunGraveGore/Saved/WindowsNoEditor: + "/GunGraveGore/Saved/WindowsNoEditor": tags: - save when: @@ -236495,7 +237177,7 @@ Gungrave G.O.R.E: installDir: Gungrave G.O.R.E: {} launch: - /GunGraveGore.exe: + "/GunGraveGore.exe": - when: - bit: 64 os: windows @@ -236521,7 +237203,7 @@ Gunheart: installDir: Gunheart: {} launch: - /Drift.exe: + "/Drift.exe": - when: - bit: 64 os: windows @@ -236532,11 +237214,11 @@ Gunjitsu: installDir: Gunjitsu: {} launch: - /Gunjitsu.app: + "/Gunjitsu.app": - when: - os: mac store: steam - /Gunjitsu.exe: + "/Gunjitsu.exe": - when: - os: windows store: steam @@ -236546,7 +237228,7 @@ Gunk: installDir: Crazy Snail: {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: @@ -236555,7 +237237,7 @@ Gunlock: installDir: Gunlock: {} launch: - /Gunlock.exe: + "/Gunlock.exe": - when: - os: windows store: steam @@ -236565,7 +237247,7 @@ Gunlocked: installDir: Gunlocked: {} launch: - /Gunlocked.exe: + "/Gunlocked.exe": - when: - os: windows store: steam @@ -236573,7 +237255,7 @@ Gunlocked: id: 1512480 Gunlok: files: - /scripts/GLkeys.cfg: + "/scripts/GLkeys.cfg": tags: - config when: @@ -236581,26 +237263,26 @@ Gunlok: installDir: Gunlok: {} launch: - /gl.exe: + "/gl.exe": - when: - store: steam steam: id: 254900 Gunman Chronicles: files: - /Half-Life/rewolf: + "/Half-Life/rewolf": tags: - config when: - os: windows - /Half-Life/rewolf/SAVE: + "/Half-Life/rewolf/SAVE": tags: - save when: - os: windows Gunman Clive: files: - /Games/GunmanClive: + "/Games/GunmanClive": tags: - config - save @@ -236609,7 +237291,7 @@ Gunman Clive: installDir: GunmanClive: {} launch: - /gunmanclive.exe: + "/gunmanclive.exe": - when: - os: windows store: steam @@ -236619,7 +237301,7 @@ Gunman Clive 2: installDir: Gunman Clive 2: {} launch: - /gc2.exe: + "/gc2.exe": - when: - os: windows store: steam @@ -236629,11 +237311,11 @@ Gunman Taco Truck: installDir: Gunman Taco Truck: {} launch: - /Gunman Taco Truck.app: + "/Gunman Taco Truck.app": - when: - os: mac store: steam - /gunmantacotruck.exe: + "/gunmantacotruck.exe": - when: - os: windows store: steam @@ -236643,7 +237325,7 @@ Gunman Tales: installDir: Gunman Tales: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -236653,15 +237335,15 @@ Gunmetal Arcadia: installDir: Gunmetal Arcadia: {} launch: - /GunArc.app: + "/GunArc.app": - when: - os: mac store: steam - /GunArc.exe: + "/GunArc.exe": - when: - os: windows store: steam - /GunArc_NFML: + "/GunArc_NFML": - when: - os: linux store: steam @@ -236669,22 +237351,22 @@ Gunmetal Arcadia: id: 332270 Gunmetal Arcadia Zero: files: - /My Games/Gunmetal Arcadia Zero/Config: + "/My Games/Gunmetal Arcadia Zero/Config": tags: - config when: - os: windows - /My Games/Gunmetal Arcadia Zero/Saves: + "/My Games/Gunmetal Arcadia Zero/Saves": tags: - save when: - os: windows - /Minor Key Games/Gunmetal Arcadia Zero/Config: + "/Minor Key Games/Gunmetal Arcadia Zero/Config": tags: - config when: - os: linux - /Minor Key Games/Gunmetal Arcadia Zero/Saves: + "/Minor Key Games/Gunmetal Arcadia Zero/Saves": tags: - save when: @@ -236692,15 +237374,15 @@ Gunmetal Arcadia Zero: installDir: Gunmetal Arcadia Zero: {} launch: - /GunPreq.app: + "/GunPreq.app": - when: - os: mac store: steam - /GunPreq.exe: + "/GunPreq.exe": - when: - os: windows store: steam - /GunPreq_NFML: + "/GunPreq_NFML": - when: - os: linux store: steam @@ -236710,11 +237392,11 @@ GunnRunner: installDir: GunnRunner: {} launch: - /GunnRunner.app: + "/GunnRunner.app": - when: - os: mac store: steam - /GunnRunner.exe: + "/GunnRunner.exe": - when: - os: windows store: steam @@ -236724,21 +237406,21 @@ Gunnheim: installDir: Gunnheim: {} launch: - /Gunnheim.app: + "/Gunnheim.app": - when: - os: mac store: steam - /Gunnheim.exe: + "/Gunnheim.exe": - when: - bit: 32 os: windows store: steam - /Gunnheim.x86: + "/Gunnheim.x86": - when: - bit: 32 os: linux store: steam - /Gunnheim.x86_64: + "/Gunnheim.x86_64": - when: - bit: 64 os: linux @@ -236749,7 +237431,7 @@ Gunnihilation: installDir: Gunnihilation: {} launch: - /Gunnihilation_Alpha.exe: + "/Gunnihilation_Alpha.exe": - when: - os: windows store: steam @@ -236757,32 +237439,32 @@ Gunnihilation: id: 502920 Gunpoint: files: - /Savegames: + "/Savegames": tags: - save when: - os: windows - /Settings: + "/Settings": tags: - config when: - os: windows - /Library/Application Support/Gunpoint/Savegames: + "/Library/Application Support/Gunpoint/Savegames": tags: - save when: - os: mac - /Library/Application Support/Gunpoint/Settings: + "/Library/Application Support/Gunpoint/Settings": tags: - config when: - os: mac - /gunpoint/Settings: + "/gunpoint/Settings": tags: - config when: - os: linux - /gunpoint/savegames: + "/gunpoint/savegames": tags: - save when: @@ -236790,15 +237472,15 @@ Gunpoint: installDir: Gunpoint: {} launch: - /Gunpoint.exe: + "/Gunpoint.exe": - when: - os: windows store: steam - /GunpointSteam: + "/GunpointSteam": - when: - os: linux store: steam - /GunpointSteam.app: + "/GunpointSteam.app": - when: - os: mac store: steam @@ -236808,15 +237490,15 @@ Gunpowder: installDir: Gunpowder: {} launch: - /Gunpowder: + "/Gunpowder": - when: - os: linux store: steam - /Gunpowder.app: + "/Gunpowder.app": - when: - os: mac store: steam - /gunpowder.exe: + "/gunpowder.exe": - when: - os: windows store: steam @@ -236825,11 +237507,11 @@ Gunpowder: Gunpowder on The Teeth 2: steam: id: 1088030 -'Gunpowder on the Teeth: Arcade': +"Gunpowder on the Teeth: Arcade": installDir: Gunpowder on The Teeth Arcade: {} launch: - /Gunpowder on The Teeth Arcade.exe: + "/Gunpowder on The Teeth Arcade.exe": - when: - os: windows store: steam @@ -236839,11 +237521,11 @@ Guns Battle Royale: installDir: GUNS BATTLE ROYALE: {} launch: - /GUNS BATTLE ROYALE.app: + "/GUNS BATTLE ROYALE.app": - when: - os: mac store: steam - /GUNS BATTLE ROYALE.exe: + "/GUNS BATTLE ROYALE.exe": - when: - os: windows store: steam @@ -236853,25 +237535,25 @@ Guns Color Pixel Art: installDir: Guns Color Pixel Art: {} launch: - /Guns Craft.exe: + "/Guns Craft.exe": - when: - os: windows store: steam steam: id: 1122210 -Guns N' Boxes: +"Guns N' Boxes": installDir: GunsNBoxes: {} launch: - /GunsNBoxes.app: + "/GunsNBoxes.app": - when: - os: mac store: steam - /GunsNBoxes.exe: + "/GunsNBoxes.exe": - when: - os: windows store: steam - /GunsNBoxes.x86: + "/GunsNBoxes.x86": - when: - os: linux store: steam @@ -236884,7 +237566,7 @@ Guns Up!: installDir: GUNS UP: {} launch: - /GUNS UP.exe: + "/GUNS UP.exe": - when: - os: windows store: steam @@ -236902,7 +237584,7 @@ Guns and Robots: installDir: GAR: {} launch: - /GAR.exe: + "/GAR.exe": - when: - os: windows store: steam @@ -236912,47 +237594,47 @@ Guns of Icarus Alliance: installDir: Guns of Icarus Online: {} launch: - /GunsOfIcarusOnline.app/Contents/MacOS/GunsOfIcarusOnline: + "/GunsOfIcarusOnline.app/Contents/MacOS/GunsOfIcarusOnline": - when: - os: mac store: steam - /GunsOfIcarusOnline.exe: + "/GunsOfIcarusOnline.exe": - when: - os: windows store: steam - - arguments: '-force-d3d9' + - arguments: "-force-d3d9" when: - os: windows store: steam - /launch.sh: + "/launch.sh": - when: - os: linux store: steam - /workshop/Workshop.app/Contents/MacOS/Workshop: + "/workshop/Workshop.app/Contents/MacOS/Workshop": - when: - os: mac store: steam - workingDir: /workshop - /workshop/Workshop.exe: + workingDir: "/workshop" + "/workshop/Workshop.exe": - when: - os: windows store: steam - workingDir: /workshop - /workshop/launch.sh: + workingDir: "/workshop" + "/workshop/launch.sh": - when: - os: linux store: steam - workingDir: /workshop + workingDir: "/workshop" steam: id: 608800 Guns of Icarus Online: files: - /.config/unity3d/Muse Games/GunsOfIcarusOnline: + "/.config/unity3d/Muse Games/GunsOfIcarusOnline": tags: - config when: - os: linux - /Library/Application Support/unity.Muse Games.GunsOfIcarusOnline: + "/Library/Application Support/unity.Muse Games.GunsOfIcarusOnline": tags: - config when: @@ -236960,36 +237642,36 @@ Guns of Icarus Online: installDir: Guns of Icarus Online: {} launch: - /GunsOfIcarusOnline.app/Contents/MacOS/GunsOfIcarusOnline: + "/GunsOfIcarusOnline.app/Contents/MacOS/GunsOfIcarusOnline": - when: - os: mac store: steam - /GunsOfIcarusOnline.exe: + "/GunsOfIcarusOnline.exe": - when: - os: windows store: steam - - arguments: '-force-d3d9' + - arguments: "-force-d3d9" when: - os: windows store: steam - /launch.sh: + "/launch.sh": - when: - os: linux store: steam - /workshop/Workshop.app/Contents/MacOS/Workshop: + "/workshop/Workshop.app/Contents/MacOS/Workshop": - when: - os: mac store: steam - /workshop/Workshop.exe: + "/workshop/Workshop.exe": - when: - os: windows store: steam - workingDir: /workshop - /workshop/launch.sh: + workingDir: "/workshop" + "/workshop/launch.sh": - when: - os: linux store: steam - workingDir: /workshop + workingDir: "/workshop" registry: HKEY_CURRENT_USER/Software/Muse Games/GunsOfIcarusOnline: tags: @@ -237000,15 +237682,15 @@ Guns of Infinity: installDir: Guns of Infinity: {} launch: - /Guns of Infinity.app/Contents/MacOS/Guns of Infinity: + "/Guns of Infinity.app/Contents/MacOS/Guns of Infinity": - when: - os: mac store: steam - /GunsOfInfinity: + "/GunsOfInfinity": - when: - os: linux store: steam - /GunsOfInfinity.exe: + "/GunsOfInfinity.exe": - when: - os: windows store: steam @@ -237018,15 +237700,15 @@ Guns of Midnight: installDir: Guns of Midnight: {} launch: - /Guns of Midnight.exe: + "/Guns of Midnight.exe": - when: - os: windows store: steam steam: id: 1077490 -Guns'N'Zombies: +"Guns'N'Zombies": files: - /AppData/LocalLow/Krealit/Guns_n_Zombies: + "/AppData/LocalLow/Krealit/Guns_n_Zombies": tags: - config - save @@ -237035,29 +237717,29 @@ Guns'N'Zombies: installDir: GunsNZombies: {} launch: - /GNZ.app: + "/GNZ.app": - when: - os: mac store: steam - /GNZ.exe: + "/GNZ.exe": - when: - os: windows store: steam steam: id: 264300 -'Guns''n''Stories: Bulletproof VR': +"Guns'n'Stories: Bulletproof VR": installDir: - Guns'n'Stories Bulletproof VR: {} + "Guns'n'Stories Bulletproof VR": {} steam: id: 685690 -'Guns''n''Stories: Preface VR': +"Guns'n'Stories: Preface VR": installDir: - Guns'n'Stories Preface VR: {} + "Guns'n'Stories Preface VR": {} steam: id: 716260 -'Guns, Gore & Cannoli': +"Guns, Gore & Cannoli": files: - /AppData/LocalLow/Crazy Monkey Studios/Guns Gore and Cannoli: + "/AppData/LocalLow/Crazy Monkey Studios/Guns Gore and Cannoli": tags: - save when: @@ -237065,13 +237747,13 @@ Guns'N'Zombies: gog: id: 1828861545 installDir: - 'Guns, Gore and Cannoli': {} + "Guns, Gore and Cannoli": {} launch: - /ggc.app: + "/ggc.app": - when: - os: mac store: steam - /ggc.exe: + "/ggc.exe": - when: - os: windows store: steam @@ -237081,9 +237763,9 @@ Guns'N'Zombies: - config steam: id: 322210 -'Guns, Gore & Cannoli 2': +"Guns, Gore & Cannoli 2": files: - /AppData/LocalLow/Crazy Monkey Studios: + "/AppData/LocalLow/Crazy Monkey Studios": tags: - save when: @@ -237091,13 +237773,13 @@ Guns'N'Zombies: gog: id: 1922744356 installDir: - 'Guns, Gore and Cannoli 2': {} + "Guns, Gore and Cannoli 2": {} launch: - /ggc2.app: + "/ggc2.app": - when: - os: mac store: steam - /ggc2.exe: + "/ggc2.exe": - when: - os: windows store: steam @@ -237111,27 +237793,27 @@ Gunscape: installDir: Gunscape: {} launch: - /Gunscape.app: + "/Gunscape.app": - when: - os: mac store: steam - /Gunscape.exe: + "/Gunscape.exe": - when: - os: windows store: steam - /Gunscape.x86: + "/Gunscape.x86": - when: - bit: 32 os: linux store: steam - /Gunscape.x86_64: + "/Gunscape.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 342480 -'Gunship Battle2 VR: Steam Edition': +"Gunship Battle2 VR: Steam Edition": installDir: Gunship Battle2 VR: {} steam: @@ -237140,7 +237822,7 @@ Gunship Recon: installDir: Gunship Recon: {} launch: - /Gunshiprecon.exe: + "/Gunshiprecon.exe": - when: - os: windows store: steam @@ -237148,7 +237830,7 @@ Gunship Recon: id: 1065050 Gunship!: files: - /Data: + "/Data": tags: - config when: @@ -237158,7 +237840,7 @@ Gunship!: installDir: Gunship: {} launch: - /gunship.exe: + "/gunship.exe": - when: - os: windows store: steam @@ -237173,7 +237855,7 @@ Gunslingers: installDir: Gunslingers: {} launch: - /Gunslingers.exe: + "/Gunslingers.exe": - when: - bit: 32 os: windows @@ -237184,7 +237866,7 @@ Gunslingers & Zombies: installDir: Gunslingers & Zombies: {} launch: - /Gunslingers & Zombies.exe: + "/Gunslingers & Zombies.exe": - when: - store: steam steam: @@ -237193,15 +237875,15 @@ Gunslugs: installDir: Gunslugs: {} launch: - /gunslugs: + "/gunslugs": - when: - os: linux store: steam - /gunslugs.app: + "/gunslugs.app": - when: - os: mac store: steam - /gunslugs.exe: + "/gunslugs.exe": - when: - os: windows store: steam @@ -237211,33 +237893,33 @@ Gunslugs 2: installDir: Gunslugs2: {} launch: - /gunslugs2: + "/gunslugs2": - when: - os: linux store: steam - /gunslugs2.app: + "/gunslugs2.app": - when: - os: mac store: steam - /gunslugs2.exe: + "/gunslugs2.exe": - when: - os: windows store: steam steam: id: 340750 -'Gunslugs: Rogue Tactics': +"Gunslugs: Rogue Tactics": installDir: GunslugsRogue Tactics: {} launch: - /gunslugs3: + "/gunslugs3": - when: - os: linux store: steam - /gunslugs3.app: + "/gunslugs3.app": - when: - os: mac store: steam - /gunslugs3.exe: + "/gunslugs3.exe": - when: - os: windows store: steam @@ -237247,7 +237929,7 @@ Gunsmith: installDir: Gunsmith: {} launch: - /GunSmithProject.exe: + "/GunSmithProject.exe": - when: - bit: 64 os: windows @@ -237258,7 +237940,7 @@ Gunsmith Simulator: installDir: Gunsmith Simulator: {} launch: - /Gunsmith Simulator.exe: + "/Gunsmith Simulator.exe": - when: - os: windows store: steam @@ -237268,21 +237950,21 @@ Gunspell - Steam Edition: installDir: Gunspell_SE: {} launch: - /Gunspell_SE_LINUX.x86: + "/Gunspell_SE_LINUX.x86": - when: - bit: 32 os: linux store: steam - /Gunspell_SE_LINUX.x86_64: + "/Gunspell_SE_LINUX.x86_64": - when: - bit: 64 os: linux store: steam - /Gunspell_SE_Mac.app: + "/Gunspell_SE_Mac.app": - when: - os: mac store: steam - /Gunspell_SE_PC.exe: + "/Gunspell_SE_PC.exe": - when: - os: windows store: steam @@ -237290,22 +237972,22 @@ Gunspell - Steam Edition: id: 328100 Gunstar Heroes: files: - /SEGA Genesis Classics/0035: + "/SEGA Genesis Classics/0035": tags: - save when: - os: windows - /SEGA Genesis Classics/setup.dat: + "/SEGA Genesis Classics/setup.dat": tags: - config when: - os: windows - /SEGA Mega Drive Classics/0035: + "/SEGA Mega Drive Classics/0035": tags: - save when: - os: windows - /SEGA Mega Drive Classics/setup.dat: + "/SEGA Mega Drive Classics/setup.dat": tags: - config when: @@ -237316,16 +237998,16 @@ Guntastic: installDir: Guntastic: {} launch: - /FolliesGame.exe: + "/FolliesGame.exe": - when: - bit: 64 os: windows store: steam - /Guntastic.app/Contents/MacOS/Guntastic: + "/Guntastic.app/Contents/MacOS/Guntastic": - when: - os: mac store: steam - /Guntastic/Binaries/Win32/FolliesGame-Win32-Shipping.exe: + "/Guntastic/Binaries/Win32/FolliesGame-Win32-Shipping.exe": - when: - bit: 32 os: windows @@ -237336,24 +238018,24 @@ Guntech: installDir: URG: {} launch: - /URG.app: + "/URG.app": - when: - os: mac store: steam - /URG.exe: + "/URG.exe": - when: - bit: 64 os: windows store: steam - /URG.x86_64: + "/URG.x86_64": - when: - os: linux store: steam steam: id: 1195140 -'Gunvolt Chronicles: Luminous Avenger iX': +"Gunvolt Chronicles: Luminous Avenger iX": files: - /win/save: + "/win/save": tags: - config - save @@ -237362,18 +238044,18 @@ Guntech: installDir: LUMINOUS AVENGER iX: {} launch: - /exe/GVIX.exe: + "/exe/GVIX.exe": - when: - os: windows store: steam - workingDir: /exe + workingDir: "/exe" steam: id: 1085180 -'Gunvolt Chronicles: Luminous Avenger iX 2': +"Gunvolt Chronicles: Luminous Avenger iX 2": installDir: Gunvolt Chronicles Luminous Avenger iX 2: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -237383,15 +238065,15 @@ Guppy: installDir: Guppy: {} launch: - /Guppy.app: + "/Guppy.app": - when: - os: mac store: steam - /guppy.exe: + "/guppy.exe": - when: - os: windows store: steam - /runner: + "/runner": - when: - os: linux store: steam @@ -237401,15 +238083,15 @@ Gurgamoth: installDir: Gurgamoth: {} launch: - /Gurgamoth.app: + "/Gurgamoth.app": - when: - os: mac store: steam - /Gurgamoth.exe: + "/Gurgamoth.exe": - when: - os: windows store: steam - /Gurgamoth.x86: + "/Gurgamoth.x86": - when: - os: linux store: steam @@ -237419,7 +238101,7 @@ Guroopia!: installDir: Guroopia!: {} launch: - /Guroopia!.exe: + "/Guroopia!.exe": - when: - os: windows store: steam @@ -237430,19 +238112,19 @@ Gurugedara: Gurugedara: {} steam: id: 701010 -'Gurumin: A Monstrous Adventure': +"Gurumin: A Monstrous Adventure": files: - /userdata//322290/remote/gdata**.sav: + "/userdata//322290/remote/gdata**.sav": tags: - save when: - store: steam - /userdata//322290/remote/system.sav: + "/userdata//322290/remote/system.sav": tags: - config when: - store: steam - /FALCOM/GURUMIN: + "/FALCOM/GURUMIN": tags: - config - save @@ -237453,7 +238135,7 @@ Gurugedara: installDir: Gurumin A Monstrous Adventure: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -237468,11 +238150,11 @@ Gus Track Adventures VR: Gus Track Adventures VR: {} steam: id: 622480 -'Gustavo: Kingdom Rebirth': +"Gustavo: Kingdom Rebirth": installDir: 《古斯塔奥:帝國重生》Gustavo Kingdom Rebirth: {} launch: - /GKR.exe: + "/GKR.exe": - when: - os: windows store: steam @@ -237480,12 +238162,12 @@ Gus Track Adventures VR: id: 895980 Guts and Glory: files: - /.config/unity3d/HakJak Productions LLC/Guts and Glory: + "/.config/unity3d/HakJak Productions LLC/Guts and Glory": tags: - save when: - os: linux - /AppData/LocalLow/HakJak Productions LLC/Guts and Glory: + "/AppData/LocalLow/HakJak Productions LLC/Guts and Glory": tags: - save when: @@ -237493,20 +238175,20 @@ Guts and Glory: installDir: Guts and Glory: {} launch: - /Guts and Glory.app: + "/Guts and Glory.app": - when: - os: mac store: steam - /Guts and Glory.exe: + "/Guts and Glory.exe": - when: - os: windows store: steam - /Guts and Glory.x86: + "/Guts and Glory.x86": - when: - bit: 32 os: linux store: steam - /Guts and Glory.x86_64: + "/Guts and Glory.x86_64": - when: - bit: 64 os: linux @@ -237521,7 +238203,7 @@ Guts and Goals: installDir: GutsAndGoals: {} launch: - /gng.exe: + "/gng.exe": - when: - store: steam steam: @@ -237530,28 +238212,28 @@ Guts and Syringes: installDir: Guts and Syringes: {} launch: - /Guts and Syringes.exe: + "/Guts and Syringes.exe": - when: - os: windows store: steam steam: id: 654800 -'Gwent: Rogue Mage': +"Gwent: Rogue Mage": gog: id: 1302422684 installDir: GWENT Rogue Mage: {} launch: - /REDprelauncher.exe: + "/REDprelauncher.exe": - when: - bit: 64 os: windows store: steam steam: id: 1711950 -'Gwent: The Witcher Card Game': +"Gwent: The Witcher Card Game": files: - /AppData/LocalLow/CDProjektRED/Gwent: + "/AppData/LocalLow/CDProjektRED/Gwent": tags: - config - save @@ -237561,12 +238243,12 @@ Guts and Syringes: id: 1971477531 id: gogExtra: - - 1286889002 - 1142753074 + - 1286889002 installDir: GWENT The Witcher Card Game: {} launch: - /REDprelauncher.exe: + "/REDprelauncher.exe": - when: - bit: 64 os: windows @@ -237579,7 +238261,7 @@ Guts and Syringes: id: 1284410 Gylt: files: - /Gylt/Saved/SaveGames/*.sav: + "/Gylt/Saved/SaveGames/*.sav": tags: - save when: @@ -237594,7 +238276,7 @@ Gylt: installDir: GYLT: {} launch: - /Gylt.exe: + "/Gylt.exe": - when: - bit: 64 os: windows @@ -237605,7 +238287,7 @@ Gym Empire: installDir: Gym Empire: {} launch: - /Gym Empire.exe: + "/Gym Empire.exe": - when: - os: windows store: steam @@ -237615,7 +238297,7 @@ Gym Simulator: installDir: Gym Simulator: {} launch: - /Gym Simulator.exe: + "/Gym Simulator.exe": - when: - os: windows store: steam @@ -237625,11 +238307,11 @@ Gynophobia: installDir: Gynophobia: {} launch: - /Gynophobia.app: + "/Gynophobia.app": - when: - os: mac store: steam - /Gynophobia.exe: + "/Gynophobia.exe": - when: - os: windows store: steam @@ -237639,7 +238321,7 @@ Gyro Boss DX: installDir: Gyro Boss DX: {} launch: - /Gyro Boss DX.exe: + "/Gyro Boss DX.exe": - when: - os: windows store: steam @@ -237649,15 +238331,18 @@ Gyro Buster: installDir: Gyro Buster: {} launch: - /Gyro Buster.app: + "/Gyro Buster.app": - when: - os: mac store: steam - /Gyro Buster.exe: + "/Gyro Buster.exe": - when: - os: windows store: steam - /Gyro Buster.x86_64: + - bit: 32 + os: windows + store: steam + "/Gyro Buster.x86_64": - when: - bit: 64 os: linux @@ -237673,7 +238358,7 @@ GyroShooter: installDir: GyroShooter: {} launch: - /gs_win32.exe: + "/gs_win32.exe": - when: - os: windows store: steam @@ -237683,11 +238368,11 @@ GyroSphere Trials: installDir: GyroSphere Trials: {} launch: - /GyroSphereTrials.app/Contents/MacOS/GyroSphereTrials: + "/GyroSphereTrials.app/Contents/MacOS/GyroSphereTrials": - when: - os: mac store: steam - /GyroSphereTrials.exe: + "/GyroSphereTrials.exe": - when: - os: windows store: steam @@ -237697,20 +238382,20 @@ Gyrodisc Super League: installDir: Gyrodisc Super League: {} launch: - /GyrodiscSuperLeague/gyrodisc.app: + "/GyrodiscSuperLeague/gyrodisc.app": - when: - os: mac store: steam - /GyrodiscSuperLeague/gyrodisc.exe: + "/GyrodiscSuperLeague/gyrodisc.exe": - when: - os: windows store: steam - /GyrodiscSuperLeague/gyrodisc.x86: + "/GyrodiscSuperLeague/gyrodisc.x86": - when: - bit: 32 os: linux store: steam - /GyrodiscSuperLeague/gyrodisc.x86_64: + "/GyrodiscSuperLeague/gyrodisc.x86_64": - when: - bit: 64 os: linux @@ -237719,7 +238404,7 @@ Gyrodisc Super League: id: 425870 Gyromancer: files: - /Gyromancer_*.dat: + "/Gyromancer_*.dat": tags: - save when: @@ -237727,16 +238412,16 @@ Gyromancer: installDir: Gyromancer: {} launch: - /Gyromancer.exe: + "/Gyromancer.exe": - when: - store: steam steam: id: 23380 -'Gythol Granditti: The Crypt of Darkness': +"Gythol Granditti: The Crypt of Darkness": installDir: GytholGrandittiTheCryptofDarkness: {} launch: - /GytholGrandittiTheCryptofDarkness/GG_TCOD.exe: + "/GytholGrandittiTheCryptofDarkness/GG_TCOD.exe": - when: - os: windows store: steam @@ -237747,22 +238432,22 @@ Géants disparus VR: GDVR: {} steam: id: 956880 -'H Chan: Girl': +"H Chan: Girl": installDir: H Chan Girl: {} launch: - /H Chan Girl.exe: + "/H Chan Girl.exe": - arguments: b when: - os: windows store: steam steam: id: 1081090 -'H-Hour: World''s Elite': +"H-Hour: World's Elite": installDir: H-Hour Worlds Elite: {} launch: - /Launch_H-Hour.exe: + "/Launch_H-Hour.exe": - when: - bit: 64 os: windows @@ -237773,7 +238458,7 @@ H-Rescue: installDir: H-Rescue: {} launch: - /H-Rescue.exe: + "/H-Rescue.exe": - when: - os: windows store: steam @@ -237789,7 +238474,7 @@ H.U.N.T: installDir: HUNT: {} launch: - /HUNT.exe: + "/HUNT.exe": - when: - store: steam steam: @@ -237801,16 +238486,16 @@ HA/CK: installDir: HACK: {} launch: - /HACK: + "/HACK": - when: - bit: 64 os: linux store: steam - /HACK.app/Contents/MacOS/HACK: + "/HACK.app/Contents/MacOS/HACK": - when: - os: mac store: steam - /HACK.exe: + "/HACK.exe": - when: - bit: 64 os: windows @@ -237821,7 +238506,7 @@ HAAK: installDir: Haak: {} launch: - /haak.exe: + "/haak.exe": - when: - store: steam steam: @@ -237830,7 +238515,7 @@ HABITKING RPG: installDir: HABITKING RPG: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -237840,15 +238525,15 @@ HACK IT: installDir: HACK_IT: {} launch: - /HACK_IT.app: + "/HACK_IT.app": - when: - os: mac store: steam - /HACK_IT.exe: + "/HACK_IT.exe": - when: - os: windows store: steam - /HACK_IT.x86: + "/HACK_IT.x86": - when: - os: linux store: steam @@ -237864,14 +238549,14 @@ HAM-MASTER: HAM-MASTER: {} steam: id: 1179460 -'HAMMER WORLD: DIMENSION TRAVELER': +"HAMMER WORLD: DIMENSION TRAVELER": steam: id: 819440 HAMMY: installDir: HAMMY: {} launch: - /HAMMY.exe: + "/HAMMY.exe": - when: - os: windows store: steam @@ -237884,7 +238569,7 @@ HANGMAN: installDir: HANGMAN: {} launch: - /Hangman.exe: + "/Hangman.exe": - when: - os: windows store: steam @@ -237894,7 +238579,7 @@ HANZ!: installDir: HANZ!: {} launch: - /HANZ.exe: + "/HANZ.exe": - when: - bit: 64 os: windows @@ -237905,17 +238590,17 @@ HARP Vefa: installDir: HARP: {} launch: - /HARP.exe: + "/HARP.exe": - when: - os: windows store: steam steam: id: 646430 -'HBDIE: The Nonce 2': +"HBDIE: The Nonce 2": installDir: HBDIE The Nonce 2: {} launch: - /HBDIE The Nonce 2.exe: + "/HBDIE The Nonce 2.exe": - when: - bit: 64 os: windows @@ -237923,18 +238608,18 @@ HARP Vefa: - when: - os: mac store: steam - workingDir: /HBDIE The Nonce 2 Steam Mac.app/Contents/MacOS + workingDir: "/HBDIE The Nonce 2 Steam Mac.app/Contents/MacOS" steam: id: 2066250 HD Poker: installDir: HD Poker: {} launch: - /HD Poker.exe: + "/HD Poker.exe": - when: - os: windows store: steam - /HDPoker.app/Contents/MacOS/HDPoker: + "/HDPoker.app/Contents/MacOS/HDPoker": - when: - os: mac store: steam @@ -237944,21 +238629,21 @@ HEAVEN AND HELL - the last war: installDir: HNH: {} launch: - /MacOS/nwjs: + "/MacOS/nwjs": - when: - os: mac store: steam - /nw: + "/nw": - when: - os: linux store: steam steam: id: 949930 -'HEBEREKE!: March! Red Army Girls'' Brigade': +"HEBEREKE!: March! Red Army Girls' Brigade": installDir: - HEBEREKE! March! Red Army Girls' Brigade: {} + "HEBEREKE! March! Red Army Girls' Brigade": {} launch: - /contents/Game.exe: + "/contents/Game.exe": - when: - store: steam steam: @@ -237967,7 +238652,7 @@ HEIST: installDir: Heist: {} launch: - /Heist.exe: + "/Heist.exe": - when: - os: windows store: steam @@ -237977,17 +238662,17 @@ HELLO PLAYER: installDir: HELLO PLAYER: {} launch: - /HELLO PLAYER.exe: + "/HELLO PLAYER.exe": - when: - os: windows store: steam steam: id: 1200450 -'HELLSEED: Chapter 1': +"HELLSEED: Chapter 1": installDir: HELLSEED: {} launch: - /HELLSEED.exe: + "/HELLSEED.exe": - when: - os: windows store: steam @@ -237997,7 +238682,7 @@ HENTAI - World War II: installDir: HENTAI - World War II: {} launch: - /HENTAI WW2.exe: + "/HENTAI WW2.exe": - when: - os: windows store: steam @@ -238007,7 +238692,7 @@ HENTAI ARENA HOLY PUSSY: installDir: HENTAI ARENA HOLY PUSSY: {} launch: - /Hentai Arena.exe: + "/Hentai Arena.exe": - when: - store: steam steam: @@ -238019,7 +238704,7 @@ HENTAI CLIMBER: installDir: HENTAI CLIMBER: {} launch: - /HENTAI CLIMBER.exe: + "/HENTAI CLIMBER.exe": - when: - os: windows store: steam @@ -238029,17 +238714,17 @@ HENTAI HELL: installDir: HENTAI HELL: {} launch: - /HENTAI HELL.exe: + "/HENTAI HELL.exe": - when: - os: windows store: steam steam: id: 1144250 -'HENTAI HORROR: The Eight Pictures': +"HENTAI HORROR: The Eight Pictures": installDir: HENTAI HORROR The Eight Pictures: {} launch: - /HENTAI HORROR The Eight Pictures.exe: + "/HENTAI HORROR The Eight Pictures.exe": - when: - os: windows store: steam @@ -238052,15 +238737,15 @@ HENTAI MINESWEEPER: installDir: HENTAI MINESWEEPER: {} launch: - /HENTAIMINSMAC.app: + "/HENTAIMINSMAC.app": - when: - os: mac store: steam - /ХЕНТАЙ СОПЕР.exe: + "/ХЕНТАЙ СОПЕР.exe": - when: - os: windows store: steam - /ХЕНТАЙ СОПЕР.x86: + "/ХЕНТАЙ СОПЕР.x86": - when: - os: linux store: steam @@ -238070,7 +238755,7 @@ HENTAI PUZZLE: installDir: Hentai Puzzle: {} launch: - /Hentai Puzzle.exe: + "/Hentai Puzzle.exe": - when: - os: windows store: steam @@ -238080,7 +238765,7 @@ HENTAI REDEMPTION: installDir: HENTAI REDEMPTION: {} launch: - /Hentai Redemption.exe: + "/Hentai Redemption.exe": - when: - os: windows store: steam @@ -238090,7 +238775,7 @@ HENTAI SEEK: installDir: HENTAI SEEK: {} launch: - /hentaiseek/Game.exe: + "/hentaiseek/Game.exe": - when: - store: steam steam: @@ -238099,15 +238784,15 @@ HENTAI SHADOW: installDir: HENTAI SHADOW: {} launch: - /HENTAI SHADOW.exe: + "/HENTAI SHADOW.exe": - when: - os: windows store: steam - /HENTAI SHADOW.x86: + "/HENTAI SHADOW.x86": - when: - os: linux store: steam - /HENTAISHADOWMAC.app: + "/HENTAISHADOWMAC.app": - when: - os: mac store: steam @@ -238116,11 +238801,11 @@ HENTAI SHADOW: HENTAI SISTERS: steam: id: 664150 -'HENTAI SNIPER: Middle East': +"HENTAI SNIPER: Middle East": installDir: HENTAI SNIPER Middle East: {} launch: - /HENTAI SNIPER Middle East.exe: + "/HENTAI SNIPER Middle East.exe": - when: - os: windows store: steam @@ -238130,7 +238815,7 @@ HEPH: installDir: HEPH: {} launch: - /HEPH.exe: + "/HEPH.exe": - when: - bit: 64 os: windows @@ -238141,7 +238826,7 @@ HERO-E: installDir: HERO-E: {} launch: - /HERO-E.exe: + "/HERO-E.exe": - when: - os: windows store: steam @@ -238151,21 +238836,21 @@ HEVN: installDir: HEVN: {} launch: - /Hevn.exe: + "/Hevn.exe": - when: - os: windows store: steam steam: id: 588800 -'HEX: Shards of Fate': +"HEX: Shards of Fate": installDir: HEX SHARDS OF FATE: {} launch: - /Hex.app/Contents/MacOS/Hex: + "/Hex.app/Contents/MacOS/Hex": - when: - os: mac store: steam - /Hex.exe: + "/Hex.exe": - when: - os: windows store: steam @@ -238175,17 +238860,17 @@ HEXAD: installDir: HEXAD: {} launch: - /HEXAD.exe: + "/HEXAD.exe": - when: - os: windows store: steam steam: id: 1507570 -'HEXCRAFT: Harlequin Fair': +"HEXCRAFT: Harlequin Fair": installDir: HEXCRAFT Harlequin Fair: {} launch: - /Harlequin Fair/Harlequin Fair.exe: + "/Harlequin Fair/Harlequin Fair.exe": - when: - bit: 64 os: windows @@ -238196,7 +238881,7 @@ HIGHRISE: installDir: HIGHRISE: {} launch: - /Highrise.exe: + "/Highrise.exe": - when: - store: steam steam: @@ -238205,7 +238890,7 @@ HIKIBYOU2: installDir: HIKIBYOU2: {} launch: - /HIKIBYOU2.exe: + "/HIKIBYOU2.exe": - when: - os: windows store: steam @@ -238215,7 +238900,7 @@ HIS (Heroes In the Sky): installDir: HIS (Heroes In the Sky): {} launch: - /hisstarter.exe: + "/hisstarter.exe": - arguments: _STEAM_ when: - os: windows @@ -238226,28 +238911,31 @@ HIT: installDir: HIT: {} launch: - /Hit/Binaries/Win64/Hit.exe: + "/Hit/Binaries/Win64/Hit.exe": - when: - os: windows store: steam steam: id: 336670 -'HIVE: Altenum Wars': +"HIVE: Altenum Wars": installDir: HIVE: {} launch: - /Concept.exe: + "/Concept.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam steam: id: 468330 -'HJ: Sacrifice': +"HJ: Sacrifice": installDir: HJ Sacrifice: {} launch: - /HJ-Sacrifice.exe: + "/HJ-Sacrifice.exe": - when: - os: windows store: steam @@ -238257,7 +238945,7 @@ HOLY COW! Milking Simulator: installDir: HOLY COW! Milking Simulator: {} launch: - /HolyCow.exe: + "/HolyCow.exe": - when: - bit: 64 os: windows @@ -238273,7 +238961,7 @@ HORSE: installDir: HORSE: {} launch: - /Horse.exe: + "/Horse.exe": - when: - os: windows store: steam @@ -238281,7 +238969,7 @@ HORSE: id: 977160 HOT FIT!: files: - /userdata//962380: + "/userdata//962380": tags: - save when: @@ -238290,7 +238978,7 @@ HOT FIT!: installDir: Hot Fit: {} launch: - /Fitness.exe: + "/Fitness.exe": - when: - os: windows store: steam @@ -238306,7 +238994,7 @@ HRDINA: installDir: HRDINA: {} launch: - /DLC.exe: + "/DLC.exe": - when: - bit: 64 os: windows @@ -238317,11 +239005,11 @@ HTR+ Slot Car Simulation: installDir: HTR_Plus_High_Tech_Racing: {} launch: - /HTR_Plus.app/Contents/MacOS/HTR+ High Tech Racing: + "/HTR_Plus.app/Contents/MacOS/HTR+ High Tech Racing": - when: - os: mac store: steam - /HTR_Plus.exe: + "/HTR_Plus.exe": - when: - os: windows store: steam @@ -238331,11 +239019,11 @@ HTR+ Slot Car Simulation: - config steam: id: 288650 -'HUMAN LIVE-HOW LONG CAN HUMAN BEINGS EXIST?Survive the end of the earth, challenge disaster save the world': +"HUMAN LIVE-HOW LONG CAN HUMAN BEINGS EXIST?Survive the end of the earth, challenge disaster save the world": installDir: How long can human beings exist: {} launch: - /content.exe: + "/content.exe": - when: - os: windows store: steam @@ -238345,7 +239033,7 @@ HUNTERS FOR YOUR BRAIN: installDir: HUNTERS FOR YOUR BRAIN: {} launch: - /lev1.exe: + "/lev1.exe": - when: - os: windows store: steam @@ -238368,7 +239056,7 @@ HYBRIS - Pulse of Ruin: installDir: HYBRIS - Pulse of Ruin: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -238384,34 +239072,34 @@ HYPERFIGHT Max Battle: installDir: HYPERFIGHT: {} launch: - /HYPERFIGHT.app/Contents/MacOS/HYPERFIGHT: + "/HYPERFIGHT.app/Contents/MacOS/HYPERFIGHT": - when: - os: mac store: steam - /HYPERFIGHT.exe: + "/HYPERFIGHT.exe": - when: - os: windows store: steam - /HYPERFIGHT.x86_64: + "/HYPERFIGHT.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 1005870 -'HYPERNOVA: Escape from Hadea': +"HYPERNOVA: Escape from Hadea": installDir: HYPERNOVA Escape from Hadea: {} launch: - /Hypernova.app: + "/Hypernova.app": - when: - os: mac store: steam - /Hypernova.exe: + "/Hypernova.exe": - when: - os: windows store: steam - /Hypernova.x86_64: + "/Hypernova.x86_64": - when: - os: linux store: steam @@ -238419,7 +239107,7 @@ HYPERFIGHT Max Battle: id: 650750 Habitat: files: - /AppData/LocalLow/4gency/Habitat: + "/AppData/LocalLow/4gency/Habitat": tags: - save when: @@ -238427,20 +239115,20 @@ Habitat: installDir: Habitat: {} launch: - /Habitat.app: + "/Habitat.app": - when: - os: mac store: steam - /Habitat.exe: + "/Habitat.exe": - when: - os: windows store: steam - /Habitat.x86: + "/Habitat.x86": - when: - bit: 32 os: linux store: steam - /Habitat.x86_64: + "/Habitat.x86_64": - when: - bit: 64 os: linux @@ -238451,15 +239139,15 @@ Habitus: installDir: Habitus: {} launch: - /habitus.app: + "/habitus.app": - when: - os: mac store: steam - /nw: + "/nw": - when: - os: linux store: steam - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -238472,21 +239160,21 @@ Hack: - save when: - os: linux -Hack 'n' Slash: +"Hack 'n' Slash": files: - /Documents/Hack ‘n’ Slash: + "/Documents/Hack ‘n’ Slash": tags: - config - save when: - os: mac - /Hack 'n' Slash: + "/Hack 'n' Slash": tags: - config - save when: - os: windows - /doublefine/hacknslash: + "/doublefine/hacknslash": tags: - config - save @@ -238495,15 +239183,15 @@ Hack 'n' Slash: installDir: HacknSlash: {} launch: - /Hack: + "/Hack": - when: - os: linux store: steam - /Hack.app: + "/Hack.app": - when: - os: mac store: steam - /Hack.exe: + "/Hack.exe": - when: - os: windows store: steam @@ -238513,15 +239201,15 @@ Hack Me: installDir: hack_me: {} launch: - /hack_me.app: + "/hack_me.app": - when: - os: mac store: steam - /nw: + "/nw": - when: - os: linux store: steam - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -238531,7 +239219,7 @@ Hack Me 2: installDir: hack_me 2: {} launch: - /hack_me 2.exe: + "/hack_me 2.exe": - when: - os: windows store: steam @@ -238541,7 +239229,7 @@ Hack RUN: installDir: Hack RUN: {} launch: - /HackRUN.exe: + "/HackRUN.exe": - when: - os: windows store: steam @@ -238551,7 +239239,7 @@ Hack Run ZERO: installDir: Hack Run ZERO: {} launch: - /HackZero.exe: + "/HackZero.exe": - when: - os: windows store: steam @@ -238561,7 +239249,7 @@ Hack Time: installDir: Hack Time: {} launch: - /HackTime.exe: + "/HackTime.exe": - when: - store: steam steam: @@ -238573,15 +239261,15 @@ Hack the Core: installDir: Hack the Core: {} launch: - /HackCore/HackCore.app: + "/HackCore/HackCore.app": - when: - os: mac store: steam - /HackCore/HackCore.exe: + "/HackCore/HackCore.exe": - when: - os: windows store: steam - /HackCore/HackCore.sh: + "/HackCore/HackCore.sh": - when: - os: linux store: steam @@ -238590,45 +239278,45 @@ Hack the Core: Hack the FBI: steam: id: 582450 -'Hack, Slash & Backstab': +"Hack, Slash & Backstab": installDir: - 'Hack, Slash & Backstab': {} + "Hack, Slash & Backstab": {} launch: - /HSBSteam.app: + "/HSBSteam.app": - when: - os: mac store: steam - /HSBSteam.exe: + "/HSBSteam.exe": - when: - os: windows store: steam - /HSBSteam.x86: + "/HSBSteam.x86": - when: - bit: 32 os: linux store: steam - /HSBSteam.x86_64: + "/HSBSteam.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 438910 -'Hack, Slash, Loot': +"Hack, Slash, Loot": files: - /.HackSlashLoot/Data: + "/.HackSlashLoot/Data": tags: - config - save when: - os: linux - /Library/Application Support/HackSlashLoot/Data: + "/Library/Application Support/HackSlashLoot/Data": tags: - config - save when: - os: mac - /HackSlashLoot/Data: + "/HackSlashLoot/Data": tags: - config - save @@ -238637,15 +239325,15 @@ Hack the FBI: installDir: HackSlashLoot: {} launch: - /HackSlashLoot: + "/HackSlashLoot": - when: - os: linux store: steam - /HackSlashLoot.app: + "/HackSlashLoot.app": - when: - os: mac store: steam - /HackSlashLoot.exe: + "/HackSlashLoot.exe": - when: - os: windows store: steam @@ -238655,7 +239343,7 @@ Hack.88: installDir: hack.88: {} launch: - /hack88.exe: + "/hack88.exe": - when: - os: windows store: steam @@ -238665,17 +239353,17 @@ Hacked: installDir: Hacked: {} launch: - /Hacked.exe: + "/Hacked.exe": - when: - os: windows store: steam steam: id: 453470 -'Hacked: Hentai prison': +"Hacked: Hentai prison": installDir: Hacked: {} launch: - /hacked.exe: + "/hacked.exe": - when: - os: windows store: steam @@ -238683,13 +239371,13 @@ Hacked: id: 897300 Hacker Evolution: files: - /he-data/engine.ini: + "/he-data/engine.ini": tags: - config when: - os: windows - os: linux - /he-savegames: + "/he-savegames": tags: - save when: @@ -238698,19 +239386,19 @@ Hacker Evolution: installDir: Hacker Evolution: {} launch: - /Hacker Evolution.app: + "/Hacker Evolution.app": - when: - os: mac store: steam - /HackerEvolution: + "/HackerEvolution": - when: - os: linux store: steam - /HackerEvolution.exe: + "/HackerEvolution.exe": - when: - os: windows store: steam - /HackerEvolutionModEditor.exe: + "/HackerEvolutionModEditor.exe": - when: - os: windows store: steam @@ -238720,15 +239408,15 @@ Hacker Evolution - 2019 HD Remaster: installDir: Hacker Evolution - 2019 HD remaster: {} launch: - /HackerEvolution.exe: + "/HackerEvolution.exe": - when: - os: windows store: steam steam: id: 1153990 -'Hacker Evolution: Duality': +"Hacker Evolution: Duality": files: - /sys-hed-appdata/settings.ini: + "/sys-hed-appdata/settings.ini": tags: - config when: @@ -238737,46 +239425,46 @@ Hacker Evolution - 2019 HD Remaster: installDir: Hacker Evolution Duality: {} launch: - /Hacker Evolution Duality.exe: + "/Hacker Evolution Duality.exe": - when: - os: windows store: steam - /HackerEvolutionDuality: + "/HackerEvolutionDuality": - when: - os: linux store: steam - /HackerEvolutionDuality.app: + "/HackerEvolutionDuality.app": - when: - os: mac store: steam steam: id: 70120 -'Hacker Evolution: Immersion': +"Hacker Evolution: Immersion": installDir: Hacker Evolution IMMERSION: {} launch: - /Hacker Evolution IMMERSION.app: + "/Hacker Evolution IMMERSION.app": - when: - os: mac store: steam - /HackerEvolutionIMMERSION: + "/HackerEvolutionIMMERSION": - when: - os: linux store: steam - /HackerEvolutionIMMERSION.exe: + "/HackerEvolutionIMMERSION.exe": - when: - os: windows store: steam steam: id: 229560 -'Hacker Evolution: Untold': +"Hacker Evolution: Untold": files: - /heuntold-data/config.ini: + "/heuntold-data/config.ini": tags: - config when: - os: windows - /heuntold-savegames: + "/heuntold-savegames": tags: - save when: @@ -238784,19 +239472,19 @@ Hacker Evolution - 2019 HD Remaster: installDir: Hacker Evolution Untold: {} launch: - /Hacker Evolution Mod Editor.exe: + "/Hacker Evolution Mod Editor.exe": - when: - os: windows store: steam - /Hacker Evolution Untold: + "/Hacker Evolution Untold": - when: - os: linux store: steam - /Hacker Evolution Untold.exe: + "/Hacker Evolution Untold.exe": - when: - os: windows store: steam - /HackerEvolutionUntold.app: + "/HackerEvolutionUntold.app": - when: - os: mac store: steam @@ -238806,29 +239494,29 @@ Hacker Series: installDir: Hacker Series: {} launch: - /BSHacker.exe: + "/BSHacker.exe": - when: - os: windows store: steam - /BSHackerUnlimited.exe: + "/BSHackerUnlimited.exe": - when: - os: windows store: steam - /BlueSky.exe: + "/BlueSky.exe": - when: - os: windows store: steam - /DigitalHazard.exe: + "/DigitalHazard.exe": - when: - os: windows store: steam steam: id: 536510 -Hacker's Beat: +"Hacker's Beat": installDir: - Hacker's Beat: {} + "Hacker's Beat": {} launch: - /Hacker'sBeat_steam.exe: + "/Hacker'sBeat_steam.exe": - when: - os: windows store: steam @@ -238838,11 +239526,11 @@ Hacker.exe: installDir: Hacker.exe: {} launch: - /Hacker.exe: + "/Hacker.exe": - when: - os: windows store: steam - /hacker_exe.app/Contents/MacOS/hacker_exe: + "/hacker_exe.app/Contents/MacOS/hacker_exe": - when: - os: mac store: steam @@ -238855,20 +239543,20 @@ Hackmud: installDir: hackmud: {} launch: - /hackmud_lin.x86_64: + "/hackmud_lin.x86_64": - when: - os: linux store: steam - /hackmud_mac.app: + "/hackmud_mac.app": - when: - os: mac store: steam - /hackmud_win.exe: + "/hackmud_win.exe": - when: - bit: 64 os: windows store: steam - /hackmud_win32.exe: + "/hackmud_win32.exe": - when: - bit: 32 os: windows @@ -238877,37 +239565,37 @@ Hackmud: id: 469920 Hacknet: files: - /Settings.txt: + "/Settings.txt": tags: - config when: - os: windows - /Library/Application Support/Hacknet/Accounts: + "/Library/Application Support/Hacknet/Accounts": tags: - save when: - os: mac - /Library/Application Support/Hacknet/Settings.txt: + "/Library/Application Support/Hacknet/Settings.txt": tags: - config when: - os: mac - /userdata//365450/remote: + "/userdata//365450/remote": tags: - save when: - store: steam - /My Games/Hacknet/Accounts: + "/My Games/Hacknet/Accounts": tags: - save when: - os: windows - /Hacknet/Settings.txt: + "/Hacknet/Settings.txt": tags: - config when: - os: linux - /Hacknet/Accounts: + "/Hacknet/Accounts": tags: - save when: @@ -238917,15 +239605,15 @@ Hacknet: installDir: Hacknet: {} launch: - /Hacknet: + "/Hacknet": - when: - os: linux store: steam - /Hacknet.app: + "/Hacknet.app": - when: - os: mac store: steam - /Hacknet.exe: + "/Hacknet.exe": - when: - os: windows store: steam @@ -238935,12 +239623,15 @@ Hacktag: installDir: Hacktag: {} launch: - /Hacktag.app/Contents/MacOS/Hacktag: + "/Hacktag.app/Contents/MacOS/Hacktag": - when: - os: mac store: steam - /Hacktag.exe: + "/Hacktag.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam @@ -238948,12 +239639,12 @@ Hacktag: id: 622770 HackyZack: files: - /HackyZackGame/hackyzack_save.ini: + "/HackyZackGame/hackyzack_save.ini": tags: - save when: - os: windows - /HackyZackGame/hz_settings.ini: + "/HackyZackGame/hz_settings.ini": tags: - config when: @@ -238961,15 +239652,15 @@ HackyZack: installDir: HackyZack: {} launch: - /HackyZack.app: + "/HackyZack.app": - when: - os: mac store: steam - /HackyZack.exe: + "/HackyZack.exe": - when: - os: windows store: steam - /run.sh: + "/run.sh": - when: - os: linux store: steam @@ -238979,15 +239670,15 @@ Hadaka Shitsuji - Naked Butlers: installDir: Hadaka Shitsuji - Naked Butlers: {} launch: - /Hadaka.app: + "/Hadaka.app": - when: - os: mac store: steam - /Hadaka.exe: + "/Hadaka.exe": - when: - os: windows store: steam - /Hadaka.sh: + "/Hadaka.sh": - when: - os: linux store: steam @@ -238995,7 +239686,7 @@ Hadaka Shitsuji - Naked Butlers: id: 1031020 Hade: files: - /AppData/Local/hade/config.ini: + "/AppData/Local/hade/config.ini": tags: - config when: @@ -239003,7 +239694,7 @@ Hade: installDir: Hade: {} launch: - /Hade.exe: + "/Hade.exe": - when: - os: windows store: steam @@ -239013,16 +239704,16 @@ Hadean Lands: installDir: Hadean Lands: {} launch: - /Hadean Lands: - - arguments: '--no-sandbox' + "/Hadean Lands": + - arguments: "--no-sandbox" when: - os: linux store: steam - /Hadean Lands.app/Contents/MacOS/Hadean Lands: + "/Hadean Lands.app/Contents/MacOS/Hadean Lands": - when: - os: mac store: steam - /Hadean Lands.exe: + "/Hadean Lands.exe": - when: - os: windows store: steam @@ -239030,19 +239721,19 @@ Hadean Lands: id: 376240 Hades: files: - /Library/Application Support/Supergiant Games/Hades: + "/Library/Application Support/Supergiant Games/Hades": tags: - config - save when: - os: mac - /Saved Games/Hades: + "/Saved Games/Hades": tags: - config - save when: - os: windows - /Packages/SupergiantGamesLLC.Hades_q53c1yqmx7pha/SystemAppData/wgs: + "/Packages/SupergiantGamesLLC.Hades_q53c1yqmx7pha/SystemAppData/wgs": tags: - config - save @@ -239055,45 +239746,40 @@ Hades: installDir: Hades: {} launch: - /Game.macOS.app/Contents/MacOS/Game.macOS: - - arguments: >- - /steampowered /DirectLoadShell=true /DebugMessages=false /DebugKeysEnabled=false /ShowFPS=false - /PerfDashWarnings=false /VerboseScriptLogging=false /UnsafeDebugKeysEnabled=false /UseDevSaves=false - /UseInternalBugReporter=false /LiveCreateTextures=false + "/Game.macOS.app/Contents/MacOS/Game.macOS": + - arguments: /steampowered /DirectLoadShell=true /DebugMessages=false /DebugKeysEnabled=false /ShowFPS=false /PerfDashWarnings=false /VerboseScriptLogging=false /UnsafeDebugKeysEnabled=false /UseDevSaves=false /UseInternalBugReporter=false /LiveCreateTextures=false when: - os: mac store: steam - /x86/Hades.exe: - - arguments: >- - /c=..\\ /steampowered /DirectLoadShell=true /DebugMessages=false /DebugKeysEnabled=false /ShowFPS=false - /PerfDashWarnings=false /VerboseScriptLogging=false /UnsafeDebugKeysEnabled=false /LiveCreateTextures=false + "/x86/Hades.exe": + - arguments: "/c=..\\\\ /steampowered /DirectLoadShell=true /DebugMessages=false /DebugKeysEnabled=false /ShowFPS=false /PerfDashWarnings=false /VerboseScriptLogging=false /UnsafeDebugKeysEnabled=false /LiveCreateTextures=false" when: - bit: 32 os: windows store: steam - workingDir: /x86 + workingDir: "/x86" steam: id: 1145360 Hades II: steam: id: 1145350 -Hades' Star: +"Hades' Star": installDir: - Hades' Star: {} + "Hades' Star": {} launch: - /hades_mac.app: + "/hades_mac.app": - when: - os: mac store: steam - /hadesstar.exe: + "/hadesstar.exe": - when: - os: windows store: steam steam: id: 755800 -'Haegemonia: Legions of Iron': +"Haegemonia: Legions of Iron": files: - /Save: + "/Save": tags: - save when: @@ -239106,11 +239792,11 @@ Hades' Star: installDir: Haegemonia Legions of Iron: {} launch: - /Haegemonia LOI.app: + "/Haegemonia LOI.app": - when: - os: mac store: steam - /Hgm.exe: + "/Hgm.exe": - when: - os: windows store: steam @@ -239120,9 +239806,9 @@ Hades' Star: - config steam: id: 294770 -'Haegemonia: The Solon Heritage': +"Haegemonia: The Solon Heritage": files: - /Save: + "/Save": tags: - save when: @@ -239135,7 +239821,7 @@ Hades' Star: installDir: Haegemonia The Solon Heritage: {} launch: - /Hgma.exe: + "/Hgma.exe": - when: - os: windows store: steam @@ -239149,7 +239835,7 @@ Haeven: installDir: Haeven: {} launch: - /Haven/Game.exe: + "/Haven/Game.exe": - when: - os: windows store: steam @@ -239159,25 +239845,25 @@ Hags Castle: installDir: Hags Castle: {} launch: - /WindowsBuild.exe: + "/WindowsBuild.exe": - when: - os: windows store: steam steam: id: 905260 -'Haiku, the Robot': +"Haiku, the Robot": files: - /AppData/LocalLow/MisterMorrisGames/Haiku/00*.haiku: + "/AppData/LocalLow/MisterMorrisGames/Haiku/00*.haiku": tags: - save when: - os: windows - /AppData/LocalLow/MisterMorrisGames/Haiku/playerconfiguration.haiku: + "/AppData/LocalLow/MisterMorrisGames/Haiku/playerconfiguration.haiku": tags: - config when: - os: windows - /AppData/LocalLow/MisterMorrisGames/Haiku/speedrunningconfig.haiku: + "/AppData/LocalLow/MisterMorrisGames/Haiku/speedrunningconfig.haiku": tags: - config when: @@ -239185,11 +239871,11 @@ Hags Castle: installDir: Haiku the Robot: {} launch: - /Haiku.app/Contents/MacOS/Haiku: + "/Haiku.app/Contents/MacOS/Haiku": - when: - os: mac store: steam - /Haiku.exe: + "/Haiku.exe": - when: - os: windows store: steam @@ -239199,25 +239885,25 @@ Hail To The King: installDir: Hail To The King: {} launch: - /Hail To The King (Mac).app: + "/Hail To The King (Mac).app": - when: - os: mac store: steam - /Hail To The King.exe: + "/Hail To The King.exe": - when: - os: windows store: steam - /Hail To The King.x86: + "/Hail To The King.x86": - when: - os: linux store: steam steam: id: 998730 -'Hail to the King: Deathbat': +"Hail to the King: Deathbat": installDir: Hail to the King Deathbat: {} launch: - /Deathbat.exe: + "/Deathbat.exe": - when: - os: windows store: steam @@ -239227,7 +239913,7 @@ Hailey: installDir: Hailey: {} launch: - /Hailey.exe: + "/Hailey.exe": - when: - os: windows store: steam @@ -239240,7 +239926,7 @@ Hailstorm: id: 618500 Haimrik: files: - /AppData/LocalLow/Below The Game/Haimrik/Haimrik/HaimrikData.json: + "/AppData/LocalLow/Below The Game/Haimrik/Haimrik/HaimrikData.json": tags: - save when: @@ -239250,14 +239936,14 @@ Haimrik: installDir: Haimrik: {} launch: - /Haimrik.exe: + "/Haimrik.exe": - when: - store: steam steam: id: 492180 Hairdresser Simulator: files: - /AppData/LocalLow/GameFormatic/HairDresser/Saves: + "/AppData/LocalLow/GameFormatic/HairDresser/Saves": tags: - config - save @@ -239267,37 +239953,37 @@ Hakoniwa Explorer Plus: installDir: Hakoniwa Explorer Plus: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: id: 705280 -'Hakuoki: Edo Blossoms': +"Hakuoki: Edo Blossoms": gog: id: 1442075729 installDir: Hakuoki Edo Blossoms: {} launch: - /HakuokiFlower.exe: + "/HakuokiFlower.exe": - when: - store: steam steam: id: 733340 -'Hakuoki: Kyoto Winds': +"Hakuoki: Kyoto Winds": gog: id: 1370392202 installDir: Hakuoki Kyoto Winds: {} launch: - /HakuokiWin.exe: + "/HakuokiWin.exe": - when: - os: windows store: steam steam: id: 589530 -'Halcyon 6: Lightspeed Edition': +"Halcyon 6: Lightspeed Edition": files: - /AppData/LocalLow/MASSDMG/Halcyon6LSE: + "/AppData/LocalLow/MASSDMG/Halcyon6LSE": tags: - save when: @@ -239307,20 +239993,20 @@ Hakoniwa Explorer Plus: installDir: Halcyon 6 Lightspeed Edition: {} launch: - /H6.app/Contents/MacOS/H6: + "/H6.app/Contents/MacOS/H6": - when: - os: mac store: steam - /H6.exe: + "/H6.exe": - when: - os: windows store: steam - /H6.x86: + "/H6.x86": - when: - bit: 32 os: linux store: steam - /H6.x86_64: + "/H6.x86_64": - when: - bit: 64 os: linux @@ -239331,9 +240017,9 @@ Hakoniwa Explorer Plus: - config steam: id: 651660 -'Halcyon 6: Starbase Commander': +"Halcyon 6: Starbase Commander": files: - /AppData/LocalLow/MASSDMG/Halcyon6: + "/AppData/LocalLow/MASSDMG/Halcyon6": tags: - save when: @@ -239343,15 +240029,15 @@ Hakoniwa Explorer Plus: installDir: Halcyon 6 Starbase Commander: {} launch: - /H6.app/Contents/MacOS/H6: + "/H6.app/Contents/MacOS/H6": - when: - os: mac store: steam - /H6.exe: + "/H6.exe": - when: - os: windows store: steam - /H6.x86: + "/H6.x86": - when: - os: linux store: steam @@ -239365,7 +240051,7 @@ Half Dead: installDir: Half dead: {} launch: - /HalfDead.exe: + "/HalfDead.exe": - when: - os: windows store: steam @@ -239375,7 +240061,7 @@ Half Dead 2: installDir: HALF DEAD 2: {} launch: - /hd2.exe: + "/hd2.exe": - when: - store: steam registry: @@ -239388,11 +240074,11 @@ Half Past Disaster: installDir: Half Past Disaster: {} launch: - /halfpastdisaster.app: + "/halfpastdisaster.app": - when: - os: mac store: steam - /halfpastdisaster.exe: + "/halfpastdisaster.exe": - when: - os: windows store: steam @@ -239400,12 +240086,12 @@ Half Past Disaster: id: 683630 Half Past Fate: files: - /AppData/LocalLow/Serenity Forge/Half Past FateGameData/Save.dat: + "/AppData/LocalLow/Serenity Forge/Half Past FateGameData/Save.dat": tags: - save when: - os: windows - /AppData/LocalLow/Serenity Forge/Half Past FateGameData/UserSettings.dat: + "/AppData/LocalLow/Serenity Forge/Half Past FateGameData/UserSettings.dat": tags: - config when: @@ -239413,11 +240099,11 @@ Half Past Fate: installDir: Half Past Fate: {} launch: - /Half Past Fate.exe: + "/Half Past Fate.exe": - when: - os: windows store: steam - /HalfPastFate.app/Contents/MacOS/HalfPastFate: + "/HalfPastFate.app/Contents/MacOS/HalfPastFate": - when: - os: mac store: steam @@ -239437,15 +240123,15 @@ Half-Earth Socialism: installDir: Half-Earth Socialism: {} launch: - /Half-Earth Socialism.app: + "/Half-Earth Socialism.app": - when: - os: mac store: steam - /half-earth: + "/half-earth": - when: - os: linux store: steam - /half-earth.exe: + "/half-earth.exe": - when: - os: windows store: steam @@ -239453,12 +240139,12 @@ Half-Earth Socialism: id: 2071530 Half-Life: files: - /valve/*.cfg: + "/valve/*.cfg": tags: - config when: - store: steam - /valve/SAVE: + "/valve/SAVE": tags: - save when: @@ -239471,16 +240157,18 @@ Half-Life: installDir: Half-Life: {} launch: - /hl.exe: - - arguments: '-steam' + "/hl.exe": + - arguments: "-steam" when: - os: windows store: steam - /hl.sh: - - arguments: '-steam' + "/hl.sh": + - arguments: "-steam" when: - os: mac store: steam + - os: linux + store: steam registry: HKEY_CURRENT_USER/Software/Valve/Half-Life: tags: @@ -239491,26 +240179,28 @@ Half-Life (SteamPipe): installDir: Half-Life: {} launch: - /hl.exe: - - arguments: '-steam' + "/hl.exe": + - arguments: "-steam" when: - os: windows store: steam - /hl.sh: - - arguments: '-steam' + "/hl.sh": + - arguments: "-steam" when: - os: mac store: steam + - os: linux + store: steam steam: id: 70 Half-Life 2: files: - /hl2/cfg: + "/hl2/cfg": tags: - config when: - store: steam - /hl2/save: + "/hl2/save": tags: - save when: @@ -239518,28 +240208,30 @@ Half-Life 2: id: steamExtra: - 219 + - 290930 - 323140 - 466270 - - 290930 installDir: Half-Life 2: {} launch: - /hl2.exe: - - arguments: '-game hl2 -steam' + "/hl2.exe": + - arguments: "-game hl2 -steam" when: - os: windows store: steam - workingDir: /bin - /hl2.sh: - - arguments: '-game hl2 -steam' + workingDir: "/bin" + "/hl2.sh": + - arguments: "-game hl2 -steam" when: - os: mac store: steam + - os: linux + store: steam steam: id: 220 -'Half-Life 2: Deathmatch': +"Half-Life 2: Deathmatch": files: - /hl2mp/cfg: + "/hl2mp/cfg": tags: - config when: @@ -239547,43 +240239,43 @@ Half-Life 2: installDir: Half-Life 2 Deathmatch: {} launch: - /hl2.exe: - - arguments: '-steam -game hl2mp' + "/hl2.exe": + - arguments: "-steam -game hl2mp" when: - os: windows store: steam - /hl2.sh: - - arguments: '-game hl2mp -steam' + "/hl2.sh": + - arguments: "-game hl2mp -steam" when: - os: linux store: steam - /hl2_osx: - - arguments: '-steam -game hl2mp' + "/hl2_osx": + - arguments: "-steam -game hl2mp" when: - os: mac store: steam steam: id: 320 -'Half-Life 2: DownFall': +"Half-Life 2: DownFall": installDir: Half-Life 2 DownFall: {} launch: - /hl2.exe: - - arguments: '-game downfall' + "/hl2.exe": + - arguments: "-game downfall" when: - bit: 32 os: windows store: steam steam: id: 587650 -'Half-Life 2: Episode One': +"Half-Life 2: Episode One": files: - /SteamApps/common/Half-Life 2/episodic/cfg: + "/SteamApps/common/Half-Life 2/episodic/cfg": tags: - config when: - store: steam - /SteamApps/common/Half-Life 2/episodic/save: + "/SteamApps/common/Half-Life 2/episodic/save": tags: - save when: @@ -239594,27 +240286,29 @@ Half-Life 2: installDir: Half-Life 2: {} launch: - /hl2.exe: - - arguments: '-game episodic -steam' + "/hl2.exe": + - arguments: "-game episodic -steam" when: - os: windows store: steam - workingDir: /bin - /hl2.sh: - - arguments: '-game episodic -steam' + workingDir: "/bin" + "/hl2.sh": + - arguments: "-game episodic -steam" when: - os: mac store: steam + - os: linux + store: steam steam: id: 380 -'Half-Life 2: Episode Two': +"Half-Life 2: Episode Two": files: - /SteamApps/common/Half-Life 2/ep2/cfg: + "/SteamApps/common/Half-Life 2/ep2/cfg": tags: - config when: - store: steam - /SteamApps/common/Half-Life 2/ep2/save: + "/SteamApps/common/Half-Life 2/ep2/save": tags: - save when: @@ -239625,38 +240319,40 @@ Half-Life 2: installDir: Half-Life 2: {} launch: - /hl2.exe: - - arguments: '-game ep2 -steam' + "/hl2.exe": + - arguments: "-game ep2 -steam" when: - os: windows store: steam - workingDir: /bin - /hl2.sh: - - arguments: '-game ep2 -steam' + workingDir: "/bin" + "/hl2.sh": + - arguments: "-game ep2 -steam" when: - os: mac store: steam + - os: linux + store: steam steam: id: 420 -'Half-Life 2: Genry''s Great Escape from City 13': +"Half-Life 2: Genry's Great Escape from City 13": installDir: Half-Life 2 GGEFC13: {} launch: - /hl2.exe: - - arguments: '-game ggefc13' + "/hl2.exe": + - arguments: "-game ggefc13" when: - os: windows store: steam steam: id: 1341060 -'Half-Life 2: Lost Coast': +"Half-Life 2: Lost Coast": files: - /SteamApps/common/Half-Life 2/lostcoast/cfg: + "/SteamApps/common/Half-Life 2/lostcoast/cfg": tags: - config when: - store: steam - /SteamApps/common/Half-Life 2/lostcoast/save: + "/SteamApps/common/Half-Life 2/lostcoast/save": tags: - save when: @@ -239664,27 +240360,29 @@ Half-Life 2: installDir: Half-Life 2: {} launch: - /hl2.exe: - - arguments: '-game lostcoast -steam' + "/hl2.exe": + - arguments: "-game lostcoast -steam" when: - os: windows store: steam - workingDir: /bin - /hl2.sh: - - arguments: '-game lostcoast -steam' + workingDir: "/bin" + "/hl2.sh": + - arguments: "-game lostcoast -steam" when: - os: mac store: steam + - os: linux + store: steam steam: id: 340 -'Half-Life 2: VR Mod': +"Half-Life 2: VR Mod": files: - /hlvr/cfg: + "/hlvr/cfg": tags: - config when: - store: steam - /hlvr/save: + "/hlvr/save": tags: - save when: @@ -239693,14 +240391,14 @@ Half-Life 2: Half-Life 2 VR: {} steam: id: 658920 -'Half-Life 2: VR Mod - Episode One': +"Half-Life 2: VR Mod - Episode One": files: - /episodicvr/cfg: + "/episodicvr/cfg": tags: - config when: - os: windows - /episodicvr/save: + "/episodicvr/save": tags: - save when: @@ -239709,14 +240407,14 @@ Half-Life 2: Half-Life 2 VR: {} steam: id: 2177750 -'Half-Life 2: VR Mod - Episode Two': +"Half-Life 2: VR Mod - Episode Two": files: - /ep2vr/cfg: + "/ep2vr/cfg": tags: - config when: - os: windows - /ep2vr/save: + "/ep2vr/save": tags: - save when: @@ -239725,9 +240423,9 @@ Half-Life 2: Half-Life 2 VR: {} steam: id: 2177760 -'Half-Life 2: Year Long Alarm': +"Half-Life 2: Year Long Alarm": files: - /yearlongalarm/SAVE: + "/yearlongalarm/SAVE": tags: - save when: @@ -239735,8 +240433,8 @@ Half-Life 2: installDir: Half-Life 2 Year Long Alarm: {} launch: - /hl2.exe: - - arguments: '-game yearlongalarm +developer 0 -steam' + "/hl2.exe": + - arguments: "-game yearlongalarm +developer 0 -steam" when: - os: windows store: steam @@ -239746,14 +240444,14 @@ Half-Life 2: - config steam: id: 747250 -'Half-Life Deathmatch: Source': +"Half-Life Deathmatch: Source": files: - /hl1mp/cfg: + "/hl1mp/cfg": tags: - config when: - os: windows - /hl2/cfg: + "/hl2/cfg": tags: - config when: @@ -239761,26 +240459,28 @@ Half-Life 2: installDir: Half-Life 1 Source Deathmatch: {} launch: - /hl2.exe: - - arguments: '-game hl1mp -steam' + "/hl2.exe": + - arguments: "-game hl1mp -steam" when: - os: windows store: steam - /hl2.sh: - - arguments: '-game hl1mp -steam' + "/hl2.sh": + - arguments: "-game hl1mp -steam" when: - os: mac store: steam + - os: linux + store: steam steam: id: 360 -'Half-Life Decay: Solo Mission': +"Half-Life Decay: Solo Mission": files: - /decaysolodemo: + "/decaysolodemo": tags: - config when: - os: windows - /decaysolodemo/SAVE: + "/decaysolodemo/SAVE": tags: - save when: @@ -239790,40 +240490,40 @@ Half-Life 2: - 1889470 steam: id: 1874090 -'Half-Life: Absolute Zero': +"Half-Life: Absolute Zero": installDir: Half-Life Absolute Zero: {} launch: - /hl.exe: - - arguments: '-game AbsoluteZero' + "/hl.exe": + - arguments: "-game AbsoluteZero" when: - os: windows store: steam steam: id: 812440 -'Half-Life: Alyx': +"Half-Life: Alyx": files: - /game/hlvr/SAVE/S*: + "/game/hlvr/SAVE/S*": tags: - save when: - os: windows - /game/hlvr/SAVE/S*/personal.cfg: + "/game/hlvr/SAVE/S*/personal.cfg": tags: - config when: - os: windows - /game/hlvr/SAVE/s*: + "/game/hlvr/SAVE/s*": tags: - save when: - os: windows - /game/hlvr/SAVE/s*/personal.cfg: + "/game/hlvr/SAVE/s*/personal.cfg": tags: - config when: - os: windows - /game/hlvr/cfg: + "/game/hlvr/cfg": tags: - config when: @@ -239832,27 +240532,27 @@ Half-Life 2: Half-Life Alyx: {} steam: id: 546560 -'Half-Life: Before': +"Half-Life: Before": installDir: Half-Life: {} launch: - /hl.exe: - - arguments: '-game before' + "/hl.exe": + - arguments: "-game before" when: - os: windows store: steam steam: id: 261980 -'Half-Life: Blue Shift': +"Half-Life: Blue Shift": files: - /Half-Life/bshift: + "/Half-Life/bshift": tags: - config when: - os: windows - os: mac - os: linux - /Half-Life/bshift/SAVE: + "/Half-Life/bshift/SAVE": tags: - save when: @@ -239862,21 +240562,23 @@ Half-Life 2: installDir: Half-Life: {} launch: - /hl.exe: - - arguments: '-game bshift -steam' + "/hl.exe": + - arguments: "-game bshift -steam" when: - os: windows store: steam - /hl.sh: - - arguments: '-steam -game bshift' + "/hl.sh": + - arguments: "-steam -game bshift" when: - os: mac store: steam + - os: linux + store: steam steam: id: 130 -'Half-Life: Caged': +"Half-Life: Caged": files: - /caged_fgs/SAVE: + "/caged_fgs/SAVE": tags: - save when: @@ -239884,56 +240586,58 @@ Half-Life 2: installDir: half_life_caged: {} launch: - /hl.exe: - - arguments: '-game caged_fgs' + "/hl.exe": + - arguments: "-game caged_fgs" when: - os: windows store: steam - /hl.sh: - - arguments: '-game caged_fgs' + "/hl.sh": + - arguments: "-game caged_fgs" when: + - os: mac + store: steam - os: linux store: steam steam: id: 679990 -'Half-Life: Decay': +"Half-Life: Decay": files: - /Half-Life/decay: + "/Half-Life/decay": tags: - config when: - os: windows - /Half-Life/decay/SAVE: + "/Half-Life/decay/SAVE": tags: - save when: - os: windows -'Half-Life: MMod': +"Half-Life: MMod": installDir: Half-Life MMod: {} launch: - /hl.exe: - - arguments: '-game HL1MMod' + "/hl.exe": + - arguments: "-game HL1MMod" when: - os: windows store: steam - /hl.sh: - - arguments: '-game HL1MMod' + "/hl.sh": + - arguments: "-game HL1MMod" when: - os: linux store: steam steam: id: 1761270 -'Half-Life: Opposing Force': +"Half-Life: Opposing Force": files: - /Half-Life/gearbox: + "/Half-Life/gearbox": tags: - config when: - os: windows - os: mac - os: linux - /Half-Life/gearbox/SAVE: + "/Half-Life/gearbox/SAVE": tags: - save when: @@ -239943,37 +240647,39 @@ Half-Life 2: installDir: Half-Life: {} launch: - /hl.exe: - - arguments: '-steam -game gearbox' + "/hl.exe": + - arguments: "-steam -game gearbox" when: - os: windows store: steam - /hl.sh: - - arguments: '-steam -game gearbox' + "/hl.sh": + - arguments: "-steam -game gearbox" when: - os: mac store: steam + - os: linux + store: steam steam: id: 50 -'Half-Life: Restored': +"Half-Life: Restored": installDir: Half-Life Restored: {} launch: - /restored.exe: - - arguments: '-nobindless +cl_lw 0' + "/restored.exe": + - arguments: "-nobindless +cl_lw 0" when: - os: windows store: steam steam: id: 1283930 -'Half-Life: Source': +"Half-Life: Source": files: - /SteamApps/common/Half-Life 2/hl1/cfg: + "/SteamApps/common/Half-Life 2/hl1/cfg": tags: - config when: - store: steam - /SteamApps/common/Half-Life 2/hl1/save: + "/SteamApps/common/Half-Life 2/hl1/save": tags: - save when: @@ -239981,21 +240687,23 @@ Half-Life 2: installDir: Half-Life 2: {} launch: - /hl2.exe: - - arguments: '-game hl1 -steam' + "/hl2.exe": + - arguments: "-game hl1 -steam" when: - os: windows store: steam - /hl2.sh: - - arguments: '-game hl1 -steam' + "/hl2.sh": + - arguments: "-game hl1 -steam" when: - os: mac store: steam + - os: linux + store: steam steam: id: 280 -'Half-Minute Hero: Super Mega Neo Climax Ultimate Boy': +"Half-Minute Hero: Super Mega Neo Climax Ultimate Boy": files: - /userdata//214830/remote: + "/userdata//214830/remote": tags: - save when: @@ -240004,21 +240712,21 @@ Half-Life 2: installDir: Half Minute Hero: {} launch: - /HMH.exe: - - arguments: '-console' + "/HMH.exe": + - arguments: "-console" when: - os: windows store: steam steam: id: 214830 -'Half-Minute Hero: The Second Coming': +"Half-Minute Hero: The Second Coming": files: - /HMH2.cfg: + "/HMH2.cfg": tags: - config when: - os: windows - /userdata//240970/remote: + "/userdata//240970/remote": tags: - save when: @@ -240026,7 +240734,7 @@ Half-Life 2: installDir: Half Minute Hero Two: {} launch: - /HMH2.exe: + "/HMH2.exe": - when: - os: windows store: steam @@ -240036,23 +240744,23 @@ Half-Past Impossible: installDir: Half-Past Impossible: {} launch: - /HPI.exe: + "/HPI.exe": - when: - os: windows store: steam steam: id: 1142790 -'Half-Rats: Parasomnia': +"Half-Rats: Parasomnia": installDir: Half-Rats - Parasomnia: {} launch: - /hl.exe: - - arguments: '-game hrp' + "/hl.exe": + - arguments: "-game hrp" when: - os: windows store: steam - /hl.sh: - - arguments: '-game hrp' + "/hl.sh": + - arguments: "-game hrp" when: - os: linux store: steam @@ -240062,7 +240770,7 @@ HalfLight: installDir: HalfLight: {} launch: - /XISHENG.exe: + "/XISHENG.exe": - when: - os: windows store: steam @@ -240072,8 +240780,8 @@ Halfquake Trilogy: installDir: Halfquake Trilogy: {} launch: - /launcher.exe: - - arguments: '-game hqtrilogy' + "/launcher.exe": + - arguments: "-game hqtrilogy" when: - os: windows store: steam @@ -240081,17 +240789,17 @@ Halfquake Trilogy: id: 644320 Halfway: files: - /config.json: + "/config.json": tags: - config when: - os: windows - /settings.json: + "/settings.json": tags: - config when: - os: windows - /.halfway/halfwayProgress*.json: + "/.halfway/halfwayProgress*.json": tags: - save when: @@ -240101,30 +240809,30 @@ Halfway: installDir: Halfway: {} launch: - /Halfway: - - arguments: '-steam' + "/Halfway": + - arguments: "-steam" when: - os: linux store: steam - - arguments: '-steam -editor' + - arguments: "-steam -editor" when: - os: linux store: steam - /Halfway.app: - - arguments: '-steam' + "/Halfway.app": + - arguments: "-steam" when: - os: mac store: steam - - arguments: '-steam -editor' + - arguments: "-steam -editor" when: - os: mac store: steam - /Halfway.exe: - - arguments: '-steam' + "/Halfway.exe": + - arguments: "-steam" when: - os: windows store: steam - - arguments: '-steam -editor' + - arguments: "-steam -editor" when: - os: windows store: steam @@ -240134,7 +240842,7 @@ Halfway Home: installDir: Halfway Home: {} launch: - /HalfwayHome.exe: + "/HalfwayHome.exe": - when: - bit: 64 os: windows @@ -240145,17 +240853,17 @@ Hallo Spaceboy: installDir: Hallo Spaceboy: {} launch: - /HalloSpaceboy.exe: + "/HalloSpaceboy.exe": - when: - bit: 64 os: windows store: steam - /HalloSpaceboy32.exe: + "/HalloSpaceboy32.exe": - when: - bit: 32 os: windows store: steam - /HalloSpaceboyMacOS.app/Contents/MacOS/HalloSpaceboyMacOS: + "/HalloSpaceboyMacOS.app/Contents/MacOS/HalloSpaceboyMacOS": - when: - os: mac store: steam @@ -240165,7 +240873,7 @@ Hallowed Encounter: installDir: HE_Game: {} launch: - /bin/HE_Game.exe: + "/bin/HE_Game.exe": - when: - bit: 64 os: windows @@ -240176,17 +240884,17 @@ Halloween Arkanoid 2: installDir: Halloween Arkanoid 2: {} launch: - /Halloween Arkanoid 2.exe: + "/Halloween Arkanoid 2.exe": - when: - os: windows store: steam steam: id: 979450 -'Halloween Chronicles: Evil behind a Mask': +"Halloween Chronicles: Evil behind a Mask": installDir: - Halloween Chronicles Evil Behind a Mask Collector's Edition: {} + "Halloween Chronicles Evil Behind a Mask Collector's Edition": {} launch: - /HalloweenChronicles_EvilBehindAMask_CE.exe: + "/HalloweenChronicles_EvilBehindAMask_CE.exe": - when: - os: windows store: steam @@ -240194,7 +240902,7 @@ Halloween Arkanoid 2: id: 1181910 Halloween Forever: files: - /halloweenforever_GMS2_Master/savefiles: + "/halloweenforever_GMS2_Master/savefiles": tags: - save when: @@ -240202,7 +240910,7 @@ Halloween Forever: installDir: Halloween Forever: {} launch: - /halloweenforever.exe: + "/halloweenforever.exe": - when: - os: windows store: steam @@ -240212,7 +240920,7 @@ Halloween Girl: installDir: Halloween Girl: {} launch: - /HalloweenGirl.exe: + "/HalloweenGirl.exe": - when: - store: steam steam: @@ -240221,7 +240929,7 @@ Halloween Knight: installDir: Halloween Knight: {} launch: - /HalloweenKnight.exe: + "/HalloweenKnight.exe": - when: - os: windows store: steam @@ -240229,7 +240937,7 @@ Halloween Knight: id: 716480 Halloween Mysteries: files: - /AppData/LocalLow/Ozo/HalloweenMysteries: + "/AppData/LocalLow/Ozo/HalloweenMysteries": tags: - save when: @@ -240237,11 +240945,11 @@ Halloween Mysteries: installDir: Halloween mysteries: {} launch: - /Halloween mysteries.app/Contents/MacOS/Halloween mysteries: + "/Halloween mysteries.app/Contents/MacOS/Halloween mysteries": - when: - os: mac store: steam - /Halloween mysteries.exe: + "/Halloween mysteries.exe": - when: - os: windows store: steam @@ -240256,7 +240964,7 @@ Halloween Puzzles: installDir: Halloween Puzzles: {} launch: - /Halloween Puzzles.exe: + "/Halloween Puzzles.exe": - when: - os: windows store: steam @@ -240266,17 +240974,17 @@ Halloween with Veronica: installDir: Halloween with Veronica: {} launch: - /Halloween With Veronica.exe: + "/Halloween With Veronica.exe": - when: - os: windows store: steam steam: id: 1162590 -'Halloween: Jigsaw Puzzles': +"Halloween: Jigsaw Puzzles": installDir: Halloween Jigsaw Puzzles: {} launch: - /HalloweenJigsaw.exe: + "/HalloweenJigsaw.exe": - when: - os: windows store: steam @@ -240291,7 +240999,7 @@ Halloweenistry: installDir: Halloweenistry: {} launch: - /Halloweenistry.exe: + "/Halloweenistry.exe": - when: - store: steam steam: @@ -240300,19 +241008,19 @@ Halloweenistry 2: installDir: Halloweenistry 2: {} launch: - /Halloweenistry2.exe: + "/Halloweenistry2.exe": - when: - store: steam steam: id: 697820 Halls of Torment: files: - /userdata//2218750/remote: + "/userdata//2218750/remote": tags: - save when: - store: steam - /HallsOfTorment/settings.json: + "/HallsOfTorment/settings.json": tags: - config when: @@ -240320,40 +241028,40 @@ Halls of Torment: installDir: Halls of Torment: {} launch: - /HallsOfTorment.exe: + "/HallsOfTorment.exe": - when: - os: windows store: steam - - arguments: '--rendering-driver opengl3' + - arguments: "--rendering-driver opengl3" when: - bit: 64 os: windows store: steam - /HallsOfTorment.x86_64: + "/HallsOfTorment.x86_64": - when: - os: linux store: steam - /force_gpu.bat: + "/force_gpu.bat": - when: - bit: 64 os: windows store: steam steam: id: 2218750 -'Halls of the Dead: Faery Tale Adventure II': +"Halls of the Dead: Faery Tale Adventure II": files: - /0**.SAV: + "/0**.SAV": tags: - save when: - os: dos - os: windows - /FTA2.INI: + "/FTA2.INI": tags: - config when: - os: dos - /FTA2.INI: + "/FTA2.INI": tags: - config when: @@ -240362,11 +241070,11 @@ Hallucination - 幻觉: installDir: hallucination - 幻觉: {} launch: - /Mac.app: + "/Mac.app": - when: - os: mac store: steam - /hallucination.exe: + "/hallucination.exe": - when: - os: windows store: steam @@ -240376,12 +241084,15 @@ Hallway Simulator 2020: installDir: Hallway Simulator 2020: {} launch: - /Hallway Simulator 2020.exe: + "/Hallway Simulator 2020.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam - /Hallway Simulator 2020.x86_64: + "/Hallway Simulator 2020.x86_64": - when: - os: linux store: steam @@ -240389,7 +241100,7 @@ Hallway Simulator 2020: id: 1105870 Halo 2: files: - /Microsoft/Halo 2/Saved Games: + "/Microsoft/Halo 2/Saved Games": tags: - save when: @@ -240398,21 +241109,22 @@ Halo 2: HKEY_CURRENT_USER/Software/Microsoft/Halo 2: tags: - config -'Halo 2: Anniversary': +"Halo 2: Anniversary": files: - /AppData/LocalLow/MCC: + "/AppData/LocalLow/MCC": tags: - config when: - os: windows store: microsoft - - store: steam - /userdata//976730/remote//Saves/SaveGame/halo1: + - os: windows + store: steam + "/userdata//976730/remote//Saves/SaveGame/halo1": tags: - save when: - store: steam - /Packages/Microsoft.Chelan_8wekyb3d8bbwe/SystemAppData/wgs: + "/Packages/Microsoft.Chelan_8wekyb3d8bbwe/SystemAppData/wgs": tags: - save when: @@ -240422,19 +241134,20 @@ Halo 2: id: 1064270 Halo 3: files: - /AppData/LocalLow/MCC: + "/AppData/LocalLow/MCC": tags: - config when: - os: windows store: microsoft - - store: steam - /userdata//976730/remote//Saves/SaveGame/halo2: + - os: windows + store: steam + "/userdata//976730/remote//Saves/SaveGame/halo2": tags: - save when: - store: steam - /Packages/Microsoft.Chelan_8wekyb3d8bbwe/SystemAppData/wgs: + "/Packages/Microsoft.Chelan_8wekyb3d8bbwe/SystemAppData/wgs": tags: - save when: @@ -240442,21 +241155,22 @@ Halo 3: store: microsoft steam: id: 1064271 -'Halo 3: ODST': +"Halo 3: ODST": files: - /AppData/LocalLow/MCC: + "/AppData/LocalLow/MCC": tags: - config when: - os: windows store: microsoft - - store: steam - /userdata//976730/remote//Saves/SaveGame/halo5: + - os: windows + store: steam + "/userdata//976730/remote//Saves/SaveGame/halo5": tags: - save when: - store: steam - /Packages/Microsoft.Chelan_8wekyb3d8bbwe/SystemAppData/wgs: + "/Packages/Microsoft.Chelan_8wekyb3d8bbwe/SystemAppData/wgs": tags: - save when: @@ -240466,19 +241180,20 @@ Halo 3: id: 1064272 Halo 4: files: - /AppData/LocalLow/MCC: + "/AppData/LocalLow/MCC": tags: - config when: - os: windows store: microsoft - - store: steam - /userdata//976730/remote//Saves: + - os: windows + store: steam + "/userdata//976730/remote//Saves": tags: - save when: - store: steam - /Packages/Microsoft.Chelan_8wekyb3d8bbwe/SystemAppData/wgs: + "/Packages/Microsoft.Chelan_8wekyb3d8bbwe/SystemAppData/wgs": tags: - save when: @@ -240486,9 +241201,9 @@ Halo 4: store: microsoft steam: id: 1064273 -'Halo 5: Forge': +"Halo 5: Forge": files: - /Packages/Microsoft.Halo5Forge_8wekyb3d8bbwe/LocalState: + "/Packages/Microsoft.Halo5Forge_8wekyb3d8bbwe/LocalState": tags: - config when: @@ -240497,7 +241212,7 @@ Halo Beats!: installDir: Halo Beats!: {} launch: - /Halo Beats.exe: + "/Halo Beats.exe": - when: - os: windows store: steam @@ -240505,23 +241220,24 @@ Halo Beats!: id: 1224900 Halo Infinite: files: - /userdata//1240440/remote: + "/userdata//1240440/remote": tags: - save when: - store: steam - /HaloInfinite/Settings/SpecControlSettings.json: + "/HaloInfinite/Settings/SpecControlSettings.json": tags: - config when: - - store: steam - /Packages/Microsoft.254428597CFE2_8wekyb3d8bbwe/LocalCache/Local/HaloInfinite/Settings/SpecControlSettings.json: + - os: windows + store: steam + "/Packages/Microsoft.254428597CFE2_8wekyb3d8bbwe/LocalCache/Local/HaloInfinite/Settings/SpecControlSettings.json": tags: - config when: - os: windows store: microsoft - /Packages/Microsoft.254428597CFE2_8wekyb3d8bbwe/SystemAppData/wgs: + "/Packages/Microsoft.254428597CFE2_8wekyb3d8bbwe/SystemAppData/wgs": tags: - save when: @@ -240533,7 +241249,7 @@ Halo Infinite: installDir: Halo Infinite: {} launch: - /HaloInfinite.exe: + "/HaloInfinite.exe": - when: - bit: 64 os: windows @@ -240542,24 +241258,25 @@ Halo Infinite: id: 1240440 Halo Online: files: - /dewrito_prefs.cfg: + "/dewrito_prefs.cfg": tags: - config when: - os: windows -'Halo Wars: Definitive Edition': +"Halo Wars: Definitive Edition": files: - /savegame: + "/savegame": tags: - save when: - store: steam - /Halo Wars/GameConfig.dat: + "/Halo Wars/GameConfig.dat": tags: - config when: - - store: steam - /Packages/Microsoft.BulldogThreshold_8wekyb3d8bbwe/SystemAppData/wgs/0009000004A4B138_6FA9010088A3442BA8B18CF53D64D3E9/0059769F9205496C9CE1349E2BD749A4: + - os: windows + store: steam + "/Packages/Microsoft.BulldogThreshold_8wekyb3d8bbwe/SystemAppData/wgs/0009000004A4B138_6FA9010088A3442BA8B18CF53D64D3E9/0059769F9205496C9CE1349E2BD749A4": tags: - save when: @@ -240568,54 +241285,55 @@ Halo Online: installDir: HaloWarsDE: {} launch: - /xgameFinal.exe: + "/xgameFinal.exe": - when: - bit: 64 os: windows store: steam - - arguments: '-safemode' + - arguments: "-safemode" when: - store: steam steam: id: 459220 -'Halo: Combat Evolved': +"Halo: Combat Evolved": files: - /HLMD: + "/HLMD": tags: - save when: - os: mac - /Halo: + "/Halo": tags: - save when: - os: mac - /My Games/Halo: + "/My Games/Halo": tags: - config - save when: - os: windows - /My Games/Halo CE: + "/My Games/Halo CE": tags: - save when: - os: windows -'Halo: Combat Evolved Anniversary': +"Halo: Combat Evolved Anniversary": files: - /AppData/LocalLow/MCC: + "/AppData/LocalLow/MCC": tags: - config when: - os: windows store: microsoft - - store: steam - /userdata//976730/remote//Saves/SaveGame/halo0: + - os: windows + store: steam + "/userdata//976730/remote//Saves/SaveGame/halo0": tags: - save when: - store: steam - /Packages/Microsoft.Chelan_8wekyb3d8bbwe/SystemAppData/wgs: + "/Packages/Microsoft.Chelan_8wekyb3d8bbwe/SystemAppData/wgs": tags: - save when: @@ -240623,21 +241341,22 @@ Halo Online: store: microsoft steam: id: 1064221 -'Halo: Reach': +"Halo: Reach": files: - /AppData/LocalLow/MCC: + "/AppData/LocalLow/MCC": tags: - config when: - os: windows store: microsoft - - store: steam - /userdata//976730/remote//Saves/SaveGame/halo6: + - os: windows + store: steam + "/userdata//976730/remote//Saves/SaveGame/halo6": tags: - save when: - store: steam - /Packages/Microsoft.Chelan_8wekyb3d8bbwe/SystemAppData/wgs: + "/Packages/Microsoft.Chelan_8wekyb3d8bbwe/SystemAppData/wgs": tags: - save when: @@ -240645,25 +241364,25 @@ Halo Online: store: microsoft steam: id: 1064220 -'Halo: Spartan Assault': +"Halo: Spartan Assault": files: - /userdata//277430/local/settings.bin: + "/userdata//277430/local/settings.bin": tags: - config when: - store: steam - /userdata//277430/remote/savedata.bin: + "/userdata//277430/remote/savedata.bin": tags: - save when: - store: steam - /Packages/Microsoft.HaloSpartanAssault_8wekyb3d8bbwe/RoamingState: + "/Packages/Microsoft.HaloSpartanAssault_8wekyb3d8bbwe/RoamingState": tags: - save when: - os: windows store: microsoft - /Packages/Microsoft.HaloSpartanAssault_8wekyb3d8bbwe/Settings/settings.dat: + "/Packages/Microsoft.HaloSpartanAssault_8wekyb3d8bbwe/Settings/settings.dat": tags: - config when: @@ -240672,20 +241391,20 @@ Halo Online: installDir: Halo Spartan Assault: {} launch: - /HaloSpartanAssault.exe: + "/HaloSpartanAssault.exe": - when: - store: steam - workingDir: /Data + workingDir: "/Data" steam: id: 277430 -'Halo: Spartan Strike': +"Halo: Spartan Strike": files: - /userdata//324570/local/settings.bin: + "/userdata//324570/local/settings.bin": tags: - config when: - store: steam - /userdata//324570/remote/savedata.bin: + "/userdata//324570/remote/savedata.bin": tags: - save when: @@ -240693,32 +241412,33 @@ Halo Online: installDir: HaloSpartanStrike: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam - workingDir: /Data + workingDir: "/Data" steam: id: 324570 -'Halo: The Master Chief Collection': +"Halo: The Master Chief Collection": files: - /AppData/LocalLow/MCC: + "/AppData/LocalLow/MCC": tags: - config when: - os: windows store: microsoft - /AppData/LocalLow/MCC/Saved/Config/WindowsNoEditor: + "/AppData/LocalLow/MCC/Saved/Config/WindowsNoEditor": tags: - config when: - - store: steam - /userdata//976730/remote//Saves: + - os: windows + store: steam + "/userdata//976730/remote//Saves": tags: - save when: - store: steam - /Packages/Microsoft.Chelan_8wekyb3d8bbwe/SystemAppData/wgs: + "/Packages/Microsoft.Chelan_8wekyb3d8bbwe/SystemAppData/wgs": tags: - save when: @@ -240731,39 +241451,39 @@ Halo Online: Halunazi: steam: id: 622820 -'Halzae: Heroes of Divinity': +"Halzae: Heroes of Divinity": installDir: Halzae Heroes of Divinity: {} launch: - /HalzaeHeroesOfDivinity.exe: + "/HalzaeHeroesOfDivinity.exe": - when: - os: windows store: steam steam: id: 942320 -Hamilton's Great Adventure: +"Hamilton's Great Adventure": files: - /userdata//42140/remote: + "/userdata//42140/remote": tags: - save when: - os: windows store: steam - /FatShark/Hamilton: + "/FatShark/Hamilton": tags: - config when: - os: windows installDir: - Hamilton's Great Adventure: {} + "Hamilton's Great Adventure": {} launch: - /Hamilton's Great Adventure.app: - - arguments: '-bundle-dir hamilton_macosx_bundled' + "/Hamilton's Great Adventure.app": + - arguments: "-bundle-dir hamilton_macosx_bundled" when: - os: mac store: steam - /Hamilton.exe: - - arguments: '-bundle-dir bundle' + "/Hamilton.exe": + - arguments: "-bundle-dir bundle" when: - os: windows store: steam @@ -240774,9 +241494,9 @@ Hamlet: Hamlet: {} steam: id: 673580 -'Hamlet or the Last Game without MMORPG Features, Shaders and Product Placement': +"Hamlet or the Last Game without MMORPG Features, Shaders and Product Placement": files: - /Saved Games/mif2000's Hamlet: + "/Saved Games/mif2000's Hamlet": tags: - save when: @@ -240784,7 +241504,7 @@ Hamlet: installDir: Hamlet: {} launch: - /Hamlet.exe: + "/Hamlet.exe": - when: - os: windows store: steam @@ -240801,19 +241521,19 @@ Hammer & Anvil VR: id: 1017780 Hammer & Sickle: files: - /cfg: + "/cfg": tags: - config when: - os: windows - /save: + "/save": tags: - save when: - os: windows Hammer 2: files: - /AppData/LocalLow/RewindApp/Hammer2: + "/AppData/LocalLow/RewindApp/Hammer2": tags: - save when: @@ -240821,7 +241541,7 @@ Hammer 2: installDir: Solar System: {} launch: - /Hammer 2.exe: + "/Hammer 2.exe": - when: - store: steam registry: @@ -240832,7 +241552,7 @@ Hammer 2: id: 730620 Hammer Heads: files: - /users: + "/users": tags: - save when: @@ -240840,7 +241560,7 @@ Hammer Heads: installDir: Hammer Heads Deluxe: {} launch: - /HammerHeads.exe: + "/HammerHeads.exe": - when: - store: steam steam: @@ -240852,7 +241572,7 @@ HammerHelm: installDir: HammerHelm: {} launch: - /HammerHelm.exe: + "/HammerHelm.exe": - when: - os: windows store: steam @@ -240860,27 +241580,27 @@ HammerHelm: id: 664000 Hammerfight: files: - /Config.ini: + "/Config.ini": tags: - config when: - os: windows - /Hammerfight/Config.ini: + "/Hammerfight/Config.ini": tags: - config when: - os: mac - /Saves: + "/Saves": tags: - save when: - os: windows - /Library/Application Support/HammerFight/Saves: + "/Library/Application Support/HammerFight/Saves": tags: - save when: - os: mac - /Hammerfight: + "/Hammerfight": tags: - config - save @@ -240889,15 +241609,15 @@ Hammerfight: installDir: Hammerfight: {} launch: - /Hammerfight: + "/Hammerfight": - when: - os: linux store: steam - /Hammerfight.app: + "/Hammerfight.app": - when: - os: mac store: steam - /Hammerfight.exe: + "/Hammerfight.exe": - when: - os: windows store: steam @@ -240909,7 +241629,7 @@ Hammerting: installDir: Hammerting: {} launch: - /boot.exe: + "/boot.exe": - when: - os: windows store: steam @@ -240917,12 +241637,12 @@ Hammerting: id: 760650 Hammerwatch: files: - /config.xml: + "/config.xml": tags: - config when: - os: windows - /saves: + "/saves": tags: - save when: @@ -240934,26 +241654,28 @@ Hammerwatch: installDir: Hammerwatch: {} launch: - /Hammerwatch.exe: + "/Hammerwatch.exe": - when: - os: windows store: steam - /RunHammerwatch: + "/RunHammerwatch": - when: - os: mac store: steam - /editor/HammerEditor.exe: + - os: linux + store: steam + "/editor/HammerEditor.exe": - when: - os: windows store: steam - workingDir: /editor + workingDir: "/editor" steam: id: 239070 Hammy: installDir: HAMMY: {} launch: - /Hammy.exe: + "/Hammy.exe": - when: - os: windows store: steam @@ -240963,7 +241685,7 @@ Hamster Daily: installDir: Hamster Daily: {} launch: - /HamsterDaily.exe: + "/HamsterDaily.exe": - when: - os: windows store: steam @@ -240973,15 +241695,15 @@ Hamster Playground: installDir: Hamster Playground: {} launch: - /Hamster Playground.app/Contents/MacOS/Hamster Playground: + "/Hamster Playground.app/Contents/MacOS/Hamster Playground": - when: - os: mac store: steam - /Hamster Playground.exe: + "/Hamster Playground.exe": - when: - os: windows store: steam - /Hamster Playground.x86_64: + "/Hamster Playground.x86_64": - when: - os: linux store: steam @@ -240992,7 +241714,7 @@ Hamster Scramble: id: 1151100 Hamsterball: files: - /Data/TOURNAMENT.SAV: + "/Data/TOURNAMENT.SAV": tags: - save when: @@ -241005,11 +241727,11 @@ Hamsterdam: installDir: Hamsterdam: {} launch: - /Hamsterdam.app/Contents/MacOS/Hamsterdam: + "/Hamsterdam.app/Contents/MacOS/Hamsterdam": - when: - os: mac store: steam - /Hamsterdam.exe: + "/Hamsterdam.exe": - when: - os: windows store: steam @@ -241019,11 +241741,11 @@ Hanaby the Witch: installDir: Hanaby the Witch: {} launch: - /hanaby2.app/Contents/MacOS/hanaby2: + "/hanaby2.app/Contents/MacOS/hanaby2": - when: - os: mac store: steam - /hanaby2.exe: + "/hanaby2.exe": - when: - os: windows store: steam @@ -241031,17 +241753,17 @@ Hanaby the Witch: id: 1126710 Hanachirasu: files: - /Nitroplus/Hanachirasu/version1.00: + "/Nitroplus/Hanachirasu/version1.00": tags: - config - save when: - os: windows -'Hanako: Honor & Blade': +"Hanako: Honor & Blade": installDir: Hanako_Honor_and_Blade: {} launch: - /Hanako.exe: + "/Hanako.exe": - when: - os: windows store: steam @@ -241051,7 +241773,7 @@ Hanapon Princess: installDir: Hanapon Princess: {} launch: - /HanaponPrincess.exe: + "/HanaponPrincess.exe": - when: - os: windows store: steam @@ -241069,17 +241791,17 @@ Hand Simulator: installDir: Hand Simulator: {} launch: - /Hand Simulator.exe: + "/Hand Simulator.exe": - when: - os: windows store: steam steam: id: 657200 -'Hand Simulator: Survival': +"Hand Simulator: Survival": installDir: Hand Simulator Survival: {} launch: - /Hand Simulator Survival.exe: + "/Hand Simulator Survival.exe": - when: - bit: 64 os: windows @@ -241088,7 +241810,7 @@ Hand Simulator: id: 924140 Hand of Doom: files: - /AppData/LocalLow/Torple Dook/Hand of Doom/SaveData: + "/AppData/LocalLow/Torple Dook/Hand of Doom/SaveData": tags: - save when: @@ -241096,7 +241818,7 @@ Hand of Doom: installDir: Hand of Doom: {} launch: - /Hand of Doom.exe: + "/Hand of Doom.exe": - when: - store: steam registry: @@ -241107,22 +241829,22 @@ Hand of Doom: id: 1924400 Hand of Fate: files: - /.config/unity3d/Defiant Development/Hand of Fate: + "/.config/unity3d/Defiant Development/Hand of Fate": tags: - config when: - os: linux - /.config/unity3d/Defiant Development/Hand of Fate/player.profile: + "/.config/unity3d/Defiant Development/Hand of Fate/player.profile": tags: - save when: - os: linux - /AppData/LocalLow/Defiant Development/Hand of Fate/player.profile: + "/AppData/LocalLow/Defiant Development/Hand of Fate/player.profile": tags: - save when: - os: windows - /userdata//266510/remote/HandOfFate/player.profile: + "/userdata//266510/remote/HandOfFate/player.profile": tags: - save when: @@ -241138,25 +241860,25 @@ Hand of Fate: installDir: Hand of Fate: {} launch: - /Hand of Fate.app: - - arguments: '-force-glcore' + "/Hand of Fate.app": + - arguments: "-force-glcore" when: - os: mac store: steam - /Hand of Fate.exe: + "/Hand of Fate.exe": - when: - os: windows store: steam - - arguments: '-force-d3d9' + - arguments: "-force-d3d9" when: - os: windows store: steam - /Hand of Fate.x86: + "/Hand of Fate.x86": - when: - bit: 32 os: linux store: steam - /Hand of Fate.x86_64: + "/Hand of Fate.x86_64": - when: - bit: 64 os: linux @@ -241169,17 +241891,17 @@ Hand of Fate: id: 266510 Hand of Fate 2: files: - /.config/unity3d/Defiant Development/Hand of Fate 2: + "/.config/unity3d/Defiant Development/Hand of Fate 2": tags: - save when: - os: linux - /AppData/LocalLow/Defiant Development/Hand of Fate 2/player_data.profile: + "/AppData/LocalLow/Defiant Development/Hand of Fate 2/player_data.profile": tags: - save when: - os: windows - /Library/Application Support/Defiant Development/Hand of Fate 2: + "/Library/Application Support/Defiant Development/Hand of Fate 2": tags: - save when: @@ -241189,30 +241911,30 @@ Hand of Fate 2: id: gogExtra: - 1099831630 - - 1820622057 - 1591953992 + - 1820622057 steamExtra: + - 748680 - 862450 - 945450 - 969730 - - 748680 installDir: Hand of Fate 2: {} launch: - /Hand of Fate 2.app: + "/Hand of Fate 2.app": - when: - os: mac store: steam - /Hand of Fate 2.exe: + "/Hand of Fate 2.exe": - when: - os: windows store: steam - /Hand of Fate 2.x86: + "/Hand of Fate 2.x86": - when: - bit: 32 os: linux store: steam - /Hand of Fate 2.x86_64: + "/Hand of Fate 2.x86_64": - when: - bit: 64 os: linux @@ -241227,11 +241949,11 @@ Hand of Horzasha: installDir: Hand of Horzasha: {} launch: - /Hand of Horzasha.app: + "/Hand of Horzasha.app": - when: - os: mac store: steam - /Hand of Horzasha.exe: + "/Hand of Horzasha.exe": - when: - os: windows store: steam @@ -241241,8 +241963,8 @@ Hand of the Gods: installDir: Hand of the Gods: {} launch: - /Tactics/Binaries/Win64/Tactics.exe: - - arguments: '-steam -pid=351 ' + "/Tactics/Binaries/Win64/Tactics.exe": + - arguments: "-steam -pid=351 " when: - bit: 64 os: windows @@ -241263,37 +241985,37 @@ Handball 16: installDir: Handball 16: {} launch: - /Exe/Game_Main.exe: + "/Exe/Game_Main.exe": - when: - store: steam - workingDir: /Exe + workingDir: "/Exe" steam: id: 384320 Handball 17: installDir: Handball 17: {} launch: - /Exe/Handball17.exe: + "/Exe/Handball17.exe": - when: - store: steam - workingDir: /Exe + workingDir: "/Exe" steam: id: 526980 Handball 21: installDir: Handball 21: {} launch: - /Exe/Handball 21.exe: + "/Exe/Handball 21.exe": - when: - store: steam - workingDir: /Exe + workingDir: "/Exe" steam: id: 891020 Handball Action Total: installDir: HandballActionTotal: {} launch: - /HandballActionTotal.exe: + "/HandballActionTotal.exe": - when: - os: windows store: steam @@ -241303,14 +242025,14 @@ Handball Manager - TEAM: installDir: Handball Manager - TEAM: {} launch: - /hbm.exe: + "/hbm.exe": - when: - store: steam steam: id: 623860 Handkerchief: files: - '"user" subfolder': + "\"user\" subfolder": tags: - save when: @@ -241326,16 +242048,16 @@ Hands of Necromancy: installDir: Hands of Necromancy: {} launch: - /Hands of Necromancy.app/Contents/MacOS/runscript: + "/Hands of Necromancy.app/Contents/MacOS/runscript": - when: - os: mac store: steam - /handsofnecromancy: + "/handsofnecromancy": - when: - bit: 64 os: linux store: steam - /handsofnecromancy.exe: + "/handsofnecromancy.exe": - when: - bit: 64 os: windows @@ -241346,7 +242068,7 @@ Handsome Mr. Frog: installDir: Handsome Mr. Frog: {} launch: - /HandsomeMrFrog.exe: + "/HandsomeMrFrog.exe": - when: - os: windows store: steam @@ -241356,7 +242078,7 @@ Handy: installDir: Handy: {} launch: - /Handy.exe: + "/Handy.exe": - when: - os: windows store: steam @@ -241366,11 +242088,11 @@ HandyCopter: installDir: HandyCopter: {} launch: - /HandyCopter.app/Contents/MacOS/HandyCopter: + "/HandyCopter.app/Contents/MacOS/HandyCopter": - when: - os: mac store: steam - /HandyCopter.exe: + "/HandyCopter.exe": - when: - os: windows store: steam @@ -241383,11 +242105,11 @@ Hang The Kings: installDir: Hang The Kings: {} launch: - /Hang_the_King.exe: + "/Hang_the_King.exe": - when: - os: windows store: steam - /Hang_the_King_Steam.app/Contents/MacOS/Hang the King: + "/Hang_the_King_Steam.app/Contents/MacOS/Hang the King": - when: - os: mac store: steam @@ -241400,7 +242122,7 @@ Hang Up: id: 950380 Hangeki: files: - /Hangeki: + "/Hangeki": tags: - config when: @@ -241408,7 +242130,7 @@ Hangeki: installDir: Hangeki: {} launch: - /Hangeki.exe: + "/Hangeki.exe": - when: - os: windows store: steam @@ -241418,11 +242140,11 @@ Hanger World: installDir: Hanger World: {} launch: - /Hanger World.app: + "/Hanger World.app": - when: - os: mac store: steam - /hangerworld.exe: + "/hangerworld.exe": - when: - os: windows store: steam @@ -241435,7 +242157,7 @@ Hangover: installDir: Hangover: {} launch: - /Hangover.exe: + "/Hangover.exe": - when: - os: windows store: steam @@ -241446,9 +242168,9 @@ Hangry Bunnies From Mars: Hangry Bunnies From Mars: {} steam: id: 672910 -'Hannah Montana: The Movie': +"Hannah Montana: The Movie": files: - /Disney Interactive Studios/Hannah Montana The Movie: + "/Disney Interactive Studios/Hannah Montana The Movie": tags: - config - save @@ -241458,11 +242180,11 @@ Hanse - The Hanseatic League: installDir: Hanse - The Hanseatic League: {} launch: - /hanse.app: + "/hanse.app": - when: - os: mac store: steam - /hanse.exe: + "/hanse.exe": - when: - os: windows store: steam @@ -241472,7 +242194,7 @@ Hanz Puppetguns: installDir: Hanz Puppetguns: {} launch: - /HANZ.exe: + "/HANZ.exe": - when: - bit: 64 os: windows @@ -241483,7 +242205,7 @@ Happiness Drops!: installDir: HappinessDrops: {} launch: - /HappinessDrops.exe: + "/HappinessDrops.exe": - when: - os: windows store: steam @@ -241496,16 +242218,16 @@ Happy Anime Puzzle: installDir: Happy Anime Puzzle: {} launch: - /HappyAnimePuzzle.exe: + "/HappyAnimePuzzle.exe": - when: - store: steam steam: id: 1013130 -'Happy Birthday, Bernard': +"Happy Birthday, Bernard": installDir: - 'Happy Birthday, Bernard': {} + "Happy Birthday, Bernard": {} launch: - /Bernard Steam.exe: + "/Bernard Steam.exe": - when: - os: windows store: steam @@ -241515,8 +242237,8 @@ Happy Block: installDir: HappyBlock: {} launch: - /happyblock.exe: - - arguments: '-LydGameStudio' + "/happyblock.exe": + - arguments: "-LydGameStudio" when: - os: windows store: steam @@ -241526,15 +242248,15 @@ Happy Campers: installDir: Happy Campers: {} launch: - /Happy Campers.app: + "/Happy Campers.app": - when: - os: mac store: steam - /Happy Campers.exe: + "/Happy Campers.exe": - when: - os: windows store: steam - /Happy Campers.sh: + "/Happy Campers.sh": - when: - os: linux store: steam @@ -241544,11 +242266,11 @@ Happy Critters: installDir: Happy Critters: {} launch: - /bin32/game_casual.exe: + "/bin32/game_casual.exe": - when: - os: windows store: steam - workingDir: /bin32 + workingDir: "/bin32" steam: id: 446110 Happy Drummer VR: @@ -241560,7 +242282,7 @@ Happy Empire: installDir: Happy Empire: {} launch: - /AEL - Happy Empire.exe: + "/AEL - Happy Empire.exe": - when: - os: windows store: steam @@ -241570,7 +242292,7 @@ Happy Empire - A Bouquet for the Princess: installDir: Happy Empire - A Bouquet for the Princess: {} launch: - /Happy Empire - A Bouquet for the Princess - Game.exe: + "/Happy Empire - A Bouquet for the Princess - Game.exe": - when: - store: steam steam: @@ -241579,7 +242301,7 @@ Happy Empire - The Marriage Voyage: installDir: Happy Empire - A Bouquet for the Princess (Enhanced Edition): {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -241589,7 +242311,7 @@ Happy Engine: installDir: Happy Engine: {} launch: - /Happy Engine.exe: + "/Happy Engine.exe": - arguments: b when: - os: windows @@ -241607,16 +242329,16 @@ Happy Game: installDir: HappyGame: {} launch: - /HappyGame.app: + "/HappyGame.app": - when: - os: mac store: steam - /HappyGame.exe: + "/HappyGame.exe": - when: - os: windows store: steam - /HappyGame.x86: - - arguments: '-force-glcore42 -force-clamped' + "/HappyGame.x86": + - arguments: "-force-glcore42 -force-clamped" when: - os: linux store: steam @@ -241631,11 +242353,11 @@ Happy Grumps: installDir: Happy Grumps: {} launch: - /HappyGrumps.app: + "/HappyGrumps.app": - when: - os: mac store: steam - /HappyGrumps.exe: + "/HappyGrumps.exe": - when: - os: windows store: steam @@ -241645,7 +242367,7 @@ Happy Maze: installDir: Happy Maze: {} launch: - /HappyMaze.exe: + "/HappyMaze.exe": - when: - os: windows store: steam @@ -241655,7 +242377,7 @@ Happy Neighbors: installDir: Happy Neighbors: {} launch: - /HappyNeighbors.exe: + "/HappyNeighbors.exe": - when: - os: windows store: steam @@ -241665,7 +242387,7 @@ Happy New Year Clicker: installDir: Happy New Year Clicker: {} launch: - /hnyc.exe: + "/hnyc.exe": - when: - store: steam steam: @@ -241674,7 +242396,7 @@ Happy Numbers: installDir: Happy Numbers: {} launch: - /HappyNumbers.exe: + "/HappyNumbers.exe": - when: - os: windows store: steam @@ -241689,7 +242411,7 @@ Happy Pong: installDir: Happy Pong: {} launch: - /HappyPong.exe: + "/HappyPong.exe": - when: - os: windows store: steam @@ -241699,7 +242421,7 @@ Happy Quest: installDir: Happy Quest: {} launch: - /HappyQuest.exe: + "/HappyQuest.exe": - when: - os: windows store: steam @@ -241709,20 +242431,20 @@ Happy Room: installDir: Happy Room: {} launch: - /Happy Room.app: + "/Happy Room.app": - when: - os: mac store: steam - /Happy Room.exe: + "/Happy Room.exe": - when: - os: windows store: steam - /Happy Room.x86: + "/Happy Room.x86": - when: - bit: 32 os: linux store: steam - /Happy Room.x86_64: + "/Happy Room.x86_64": - when: - bit: 64 os: linux @@ -241733,7 +242455,7 @@ Happy STG: installDir: Happy STG: {} launch: - /STG.exe: + "/STG.exe": - when: - os: windows store: steam @@ -241749,15 +242471,15 @@ Happy Stealing with Kirisame Marisa: installDir: Happy Stealing with Kirisame Marisa: {} launch: - /StealingWIthMarisa.exe: + "/StealingWIthMarisa.exe": - when: - os: windows store: steam steam: id: 880490 -'Happy Tree Friends: False Alarm': +"Happy Tree Friends: False Alarm": files: - /config.cfg: + "/config.cfg": tags: - config when: @@ -241765,7 +242487,7 @@ Happy Stealing with Kirisame Marisa: installDir: Happy Tree Friends False Alarm: {} launch: - /launcher.exe: + "/launcher.exe": - when: - store: steam steam: @@ -241774,7 +242496,7 @@ Happy Vampire Girl: installDir: Happy Vampire Girl: {} launch: - /Happy Vampire Girl.exe: + "/Happy Vampire Girl.exe": - when: - os: windows store: steam @@ -241784,7 +242506,7 @@ Happy Wars: installDir: HappyWars: {} launch: - /Launcher.exe: + "/Launcher.exe": - when: - bit: 32 os: windows @@ -241795,11 +242517,11 @@ Happy Words: installDir: HappyWords: {} launch: - /HappyWords.app: + "/HappyWords.app": - when: - os: mac store: steam - /HappyWords.exe: + "/HappyWords.exe": - when: - os: windows store: steam @@ -241809,7 +242531,7 @@ Happy World: installDir: Happy World: {} launch: - /ClayPlay.exe: + "/ClayPlay.exe": - when: - bit: 64 os: windows @@ -241823,20 +242545,20 @@ Happy toys: installDir: Happy toys: {} launch: - /Happy toys.exe: + "/Happy toys.exe": - arguments: b when: - os: windows store: steam steam: id: 977640 -Happy's Humble Burger Farm: +"Happy's Humble Burger Farm": gog: id: 1488706732 installDir: - Happy's Humble Burger Farm: {} + "Happy's Humble Burger Farm": {} launch: - /Happy's Humble Burger Farm.exe: + "/Happy's Humble Burger Farm.exe": - when: - store: steam steam: @@ -241845,7 +242567,7 @@ HappyBlueBear: installDir: happy blue bear: {} launch: - /happybluebear.exe: + "/happybluebear.exe": - when: - os: windows store: steam @@ -241855,26 +242577,26 @@ HappyFishing: installDir: HappyFishing: {} launch: - /bin/win32/happyfishing.exe: - - arguments: '-LydGameStudio' + "/bin/win32/happyfishing.exe": + - arguments: "-LydGameStudio" when: - os: windows store: steam - workingDir: /bin/win32 + workingDir: "/bin/win32" steam: id: 930150 Haprokon: installDir: Haprokon: {} launch: - /Haprokon.exe: + "/Haprokon.exe": - when: - store: steam steam: id: 1032770 Haque: files: - /Haque1_0_0_0/gamdat: + "/Haque1_0_0_0/gamdat": tags: - config - save @@ -241883,15 +242605,15 @@ Haque: installDir: Haque: {} launch: - /Haque.app: + "/Haque.app": - when: - os: mac store: steam - /Haque1-0-0-0.exe: + "/Haque1-0-0-0.exe": - when: - os: windows store: steam - /Haque1-0-0-0/runner: + "/Haque1-0-0-0/runner": - when: - os: linux store: steam @@ -241901,15 +242623,15 @@ Harakatsu 2: installDir: Harakatsu 2: {} launch: - /harakatsu2.exe: + "/harakatsu2.exe": - when: - os: windows store: steam steam: id: 1155930 -'Harald: A Game of Influence': +"Harald: A Game of Influence": files: - /3dduo/Harald: + "/3dduo/Harald": tags: - save when: @@ -241917,11 +242639,11 @@ Harakatsu 2: installDir: Harald: {} launch: - /harald.app/Contents/MacOS/HARALD 1.0: + "/harald.app/Contents/MacOS/HARALD 1.0": - when: - os: mac store: steam - /harald.exe: + "/harald.exe": - when: - os: windows store: steam @@ -241935,7 +242657,7 @@ Haramatia: installDir: Haramatia: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -241945,15 +242667,15 @@ Harambe Kong: installDir: Harambe Kong: {} launch: - /Harambe Kong.app: + "/Harambe Kong.app": - when: - os: mac store: steam - /linux_32.x86: + "/linux_32.x86": - when: - os: linux store: steam - /win_32.exe: + "/win_32.exe": - when: - os: windows store: steam @@ -241961,22 +242683,22 @@ Harambe Kong: id: 747640 Harbinger: files: - /Config.cfg: + "/Config.cfg": tags: - config when: - os: windows - /Harbinger.ini: + "/Harbinger.ini": tags: - config when: - os: windows - /HarbingerCfg.exe: + "/HarbingerCfg.exe": tags: - config when: - os: windows - /save: + "/save": tags: - save when: @@ -241987,14 +242709,14 @@ Hard Ancient Life: Hard Core Puzzle: steam: id: 1013730 -'Hard Era: The Fantasy Defence': +"Hard Era: The Fantasy Defence": steam: id: 692260 Hard Helmets: installDir: HardHelmets: {} launch: - /HardHelmets.exe: + "/HardHelmets.exe": - when: - os: windows store: steam @@ -242004,12 +242726,12 @@ Hard Lander: installDir: Hard Lander: {} launch: - /HardLander.exe: + "/HardLander.exe": - when: - bit: 64 os: windows store: steam - /mac_content.app: + "/mac_content.app": - when: - os: mac store: steam @@ -242019,7 +242741,7 @@ Hard Light Vector: installDir: Hard Light Vector: {} launch: - /HardLightVector.exe: + "/HardLightVector.exe": - when: - os: windows store: steam @@ -242027,7 +242749,7 @@ Hard Light Vector: id: 1034740 Hard Love - Darkest Desire: files: - /userdata//1135680: + "/userdata//1135680": tags: - save when: @@ -242036,8 +242758,8 @@ Hard Love - Darkest Desire: installDir: Hard Love - Darkest Desire: {} launch: - /Game.exe: - - arguments: '--in-process-gpu' + "/Game.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam @@ -242053,7 +242775,7 @@ Hard Minus Classic Redux: installDir: HardMinus2k: {} launch: - /hm2k1_32x.exe: + "/hm2k1_32x.exe": - when: - os: windows store: steam @@ -242063,19 +242785,19 @@ Hard Place: installDir: Hard Place: {} launch: - /HardPlace.exe: + "/HardPlace.exe": - when: - store: steam steam: id: 763520 Hard Reset: files: - /Hard Reset Extended/profiles/: + "/Hard Reset Extended/profiles/": tags: - save when: - os: windows - /Hard Reset Extended/profiles//config.cfg: + "/Hard Reset Extended/profiles//config.cfg": tags: - config when: @@ -242083,19 +242805,19 @@ Hard Reset: installDir: HardReset: {} launch: - /hardreset.exe: + "/hardreset.exe": - when: - store: steam steam: id: 98400 Hard Reset Redux: files: - /Hard Reset Redux/profiles/: + "/Hard Reset Redux/profiles/": tags: - save when: - os: windows - /Hard Reset Redux/profiles//config.cfg: + "/Hard Reset Redux/profiles//config.cfg": tags: - config when: @@ -242105,7 +242827,7 @@ Hard Reset Redux: installDir: Hard Reset Redux: {} launch: - /launcher.exe: + "/launcher.exe": - when: - os: windows store: steam @@ -242124,11 +242846,11 @@ Hard Time 2D: installDir: Hard Time: {} launch: - /Hard Time.exe: + "/Hard Time.exe": - when: - os: windows store: steam - /HardTime.app: + "/HardTime.app": - when: - os: mac store: steam @@ -242138,15 +242860,15 @@ Hard Times: installDir: Hard Times: {} launch: - /HardTimes.app/Contents/MacOS/HardTimes: + "/HardTimes.app/Contents/MacOS/HardTimes": - when: - os: mac store: steam - /HardTimes.exe: + "/HardTimes.exe": - when: - os: windows store: steam - /HardTimes.x86: + "/HardTimes.x86": - when: - os: linux store: steam @@ -242154,24 +242876,24 @@ Hard Times: id: 907410 Hard Truck: files: - /*.pl: + "/*.pl": tags: - save when: - os: windows - /truck.ini: + "/truck.ini": tags: - config when: - os: windows Hard Truck 2: files: - /*.pl1: + "/*.pl1": tags: - save when: - os: windows - /truck.ini: + "/truck.ini": tags: - config when: @@ -242180,12 +242902,12 @@ Hard Truck 2: id: 1731168163 Hard Truck Apocalypse: files: - /data/config.cfg: + "/data/config.cfg": tags: - config when: - os: windows - /data/profiles: + "/data/profiles": tags: - save when: @@ -242193,44 +242915,44 @@ Hard Truck Apocalypse: installDir: Hard Truck Apocalypse: {} launch: - /hta.exe: + "/hta.exe": - when: - store: steam steam: id: 285500 -'Hard Truck Apocalypse: Arcade': +"Hard Truck Apocalypse: Arcade": installDir: HARD TRUCK APOCALYPSE ARCADE: {} launch: - /emarcade.exe: + "/emarcade.exe": - when: - store: steam steam: id: 286830 -'Hard Truck Apocalypse: Rise of Clans': +"Hard Truck Apocalypse: Rise of Clans": installDir: HARD TRUCK APOCALYPSE RISE OF CLANS: {} launch: - /Meridian113.exe: + "/Meridian113.exe": - when: - store: steam steam: id: 286810 Hard Truck Tycoon: files: - /Saves: + "/Saves": tags: - save when: - os: windows -'Hard Truck: 18 Wheels of Steel': +"Hard Truck: 18 Wheels of Steel": files: - /game/usr/config.cfg: + "/game/usr/config.cfg": tags: - config when: - os: windows - /game/usr/save: + "/game/usr/save": tags: - save when: @@ -242240,7 +242962,7 @@ Hard Truck Tycoon: installDir: 18 Wheels of Steel Hard Truck: {} launch: - /Hard Truck 18 Wheels of Steel.exe: + "/Hard Truck 18 Wheels of Steel.exe": - when: - store: steam steam: @@ -242249,7 +242971,7 @@ Hard Way to Heaven: installDir: Hard Way To Heaven: {} launch: - /HardWayToHeaven.exe: + "/HardWayToHeaven.exe": - when: - os: windows store: steam @@ -242257,32 +242979,32 @@ Hard Way to Heaven: id: 836120 Hard West: files: - /Documents/HardWest/: + "/Documents/HardWest/": tags: - save when: - os: linux - /Documents/HardWest//keys.ini: + "/Documents/HardWest//keys.ini": tags: - config when: - os: linux - /Documents/HardWest//options.ini: + "/Documents/HardWest//options.ini": tags: - config when: - os: linux - /HardWest/: + "/HardWest/": tags: - save when: - os: windows - /HardWest//keys.ini: + "/HardWest//keys.ini": tags: - config when: - os: windows - /HardWest//options.ini: + "/HardWest//options.ini": tags: - config when: @@ -242292,20 +243014,20 @@ Hard West: installDir: HardWest: {} launch: - /HardWest.app: + "/HardWest.app": - when: - os: mac store: steam - /HardWest.exe: + "/HardWest.exe": - when: - os: windows store: steam - /HardWest.x86: + "/HardWest.x86": - when: - bit: 32 os: linux store: steam - /HardWest.x86_64: + "/HardWest.x86_64": - when: - bit: 64 os: linux @@ -242314,12 +243036,12 @@ Hard West: id: 307670 Hard West 2: files: - /AppData/LocalLow/Ice Code Games/HardWest2/GameSettings: + "/AppData/LocalLow/Ice Code Games/HardWest2/GameSettings": tags: - config when: - os: windows - /AppData/LocalLow/Ice Code Games/HardWest2/Saves: + "/AppData/LocalLow/Ice Code Games/HardWest2/Saves": tags: - save when: @@ -242329,7 +243051,7 @@ Hard West 2: installDir: HardWest2: {} launch: - /HardWest2.exe: + "/HardWest2.exe": - when: - bit: 64 os: windows @@ -242344,15 +243066,15 @@ Hard Work: installDir: Hard Work: {} launch: - /Hard Work.app: + "/Hard Work.app": - when: - os: mac store: steam - /Hard Work.exe: + "/Hard Work.exe": - when: - os: windows store: steam - /Hard Work.x86_64: + "/Hard Work.x86_64": - when: - os: linux store: steam @@ -242362,7 +243084,7 @@ Hard to Be a God: installDir: Hard to Be a God: {} launch: - /AWE.exe: + "/AWE.exe": - when: - store: steam steam: @@ -242383,11 +243105,11 @@ Hardcore Maze Cube - Puzzle Survival Game: installDir: Hardcore Maze Cube: {} launch: - /Hardcore_Maze_Cube.app/Contents/MacOS/SMC: + "/Hardcore_Maze_Cube.app/Contents/MacOS/SMC": - when: - os: mac store: steam - /SMC.exe: + "/SMC.exe": - when: - os: windows store: steam @@ -242395,7 +243117,7 @@ Hardcore Maze Cube - Puzzle Survival Game: id: 1153980 Hardcore Mecha: files: - /AppData/LocalLow/RocketPunch Games/HARDCORE MECHA: + "/AppData/LocalLow/RocketPunch Games/HARDCORE MECHA": tags: - save when: @@ -242403,7 +243125,7 @@ Hardcore Mecha: installDir: HARDCORE MECHA: {} launch: - /CHC.exe: + "/CHC.exe": - when: - os: windows store: steam @@ -242413,7 +243135,7 @@ Hardcore Parkour: installDir: Hardcore Parkour: {} launch: - /Parkour.exe: + "/Parkour.exe": - when: - bit: 64 os: windows @@ -242427,7 +243149,7 @@ Hardcore Weapon Challenge - FPS Action: installDir: Hardcore Weapon Challenge: {} launch: - /HardcoreWeaponChallenge.exe: + "/HardcoreWeaponChallenge.exe": - when: - store: steam steam: @@ -242436,7 +243158,7 @@ Hardcore ZBoy: installDir: Hardcore ZBoy: {} launch: - /Hardcore ZBoy.exe: + "/Hardcore ZBoy.exe": - when: - os: windows store: steam @@ -242446,7 +243168,7 @@ Hardland: installDir: Hardland: {} launch: - /Hardland.exe: + "/Hardland.exe": - when: - os: windows store: steam @@ -242455,20 +243177,20 @@ Hardland: Hardnoid: steam: id: 574850 -'Hardspace: Shipbreaker': +"Hardspace: Shipbreaker": files: - /content: + "/content": tags: - config when: - os: windows store: microsoft - /AppData/LocalLow/Blackbird Interactive/Hardspace_ Shipbreaker/Saves: + "/AppData/LocalLow/Blackbird Interactive/Hardspace_ Shipbreaker/Saves": tags: - save when: - os: windows - /Packages/FocusHomeInteractiveSA.HardspaceShipbreaker-PCVers_4hny5m903y3g0/SystemAppData/wgs: + "/Packages/FocusHomeInteractiveSA.HardspaceShipbreaker-PCVers_4hny5m903y3g0/SystemAppData/wgs": tags: - save when: @@ -242478,13 +243200,13 @@ Hardnoid: id: 2057574746 id: gogExtra: - - 1363540102 - 1289361058 + - 1363540102 - 1982750767 installDir: Hardspace Shipbreaker: {} launch: - /Shipbreaker.exe: + "/Shipbreaker.exe": - when: - bit: 64 os: windows @@ -242493,7 +243215,7 @@ Hardnoid: id: 1161580 Hardwar: files: - /Savegames/*.sav: + "/Savegames/*.sav": tags: - save when: @@ -242501,7 +243223,7 @@ Hardwar: installDir: Hardwar: {} launch: - /Hardman.exe: + "/Hardman.exe": - when: - store: steam registry: @@ -242514,7 +243236,7 @@ Hardware Engineering: installDir: Hardware Engineering: {} launch: - /HWE Splashscreen.exe: + "/HWE Splashscreen.exe": - when: - os: windows store: steam @@ -242522,7 +243244,7 @@ Hardware Engineering: id: 525610 Hardware Engineers: files: - /Save: + "/Save": tags: - save when: @@ -242530,7 +243252,7 @@ Hardware Engineers: installDir: Hardware Engineers: {} launch: - /Hardware Engineers.exe: + "/Hardware Engineers.exe": - when: - store: steam steam: @@ -242539,11 +243261,11 @@ Hardway Party: installDir: Hardway: {} launch: - /HardwayParty.app: + "/HardwayParty.app": - when: - os: mac store: steam - /HardwayParty.exe: + "/HardwayParty.exe": - when: - os: windows store: steam @@ -242556,7 +243278,7 @@ Hare: installDir: Hare: {} launch: - /Hare.exe: + "/Hare.exe": - when: - os: windows store: steam @@ -242564,13 +243286,13 @@ Hare: id: 681290 Hare In The Hat: files: - /Documents/HIH/settings.bin (Main game): + "/Documents/HIH/settings.bin (Main game)": tags: - config - save when: - os: windows - /Documents/HIH2/settings.bin (The Abyss DLC): + "/Documents/HIH2/settings.bin (The Abyss DLC)": tags: - config - save @@ -242579,23 +243301,23 @@ Hare In The Hat: installDir: Hare In The Hat: {} launch: - /HIH.sh: + "/HIH.sh": - when: - os: linux store: steam - /HIHW7.exe: + "/HIHW7.exe": - when: - os: windows store: steam - /Hare In The Hat.app: + "/Hare In The Hat.app": - when: - os: mac store: steam steam: id: 359810 -'Harem Girl: Alicia': +"Harem Girl: Alicia": files: - /game/saves: + "/game/saves": tags: - save when: @@ -242603,15 +243325,15 @@ Hare In The Hat: installDir: Harem Girl Alicia: {} launch: - /PuzzleGirlsAlicia.exe: + "/PuzzleGirlsAlicia.exe": - when: - os: windows store: steam steam: id: 1005520 -'Harem Girl: Nikki': +"Harem Girl: Nikki": files: - /game/saves: + "/game/saves": tags: - save when: @@ -242619,7 +243341,7 @@ Hare In The Hat: installDir: Harem Girl Nikki: {} launch: - /HaremGirlNikki.exe: + "/HaremGirlNikki.exe": - when: - os: windows store: steam @@ -242628,14 +243350,14 @@ Hare In The Hat: Harem Wars: steam: id: 657250 -'Harley-Davidson: Race to the Rally': +"Harley-Davidson: Race to the Rally": files: - /Harley/Cfg/console.cfg: + "/Harley/Cfg/console.cfg": tags: - config when: - os: windows - /Harley-Davidson_ Race to the Rally Saves: + "/Harley-Davidson_ Race to the Rally Saves": tags: - save when: @@ -242644,11 +243366,11 @@ Harlow: installDir: Harlow: {} launch: - /Harlow/Harlow.app: + "/Harlow/Harlow.app": - when: - os: mac store: steam - /Harlow/Harlow.exe: + "/Harlow/Harlow.exe": - when: - bit: 64 os: windows @@ -242660,7 +243382,7 @@ Harmless Skeleton: id: 795500 Harmonia: files: - /SAVEDATA: + "/SAVEDATA": tags: - save when: @@ -242668,7 +243390,7 @@ Harmonia: installDir: Harmonia: {} launch: - /SiglusEngine_SteamEN.exe: + "/SiglusEngine_SteamEN.exe": - when: - os: windows store: steam @@ -242678,7 +243400,7 @@ Harmonium: installDir: Harmonium: {} launch: - /Harmonium.exe: + "/Harmonium.exe": - when: - store: steam steam: @@ -242687,14 +243409,14 @@ Harmony of the bravest: installDir: Harmony of the bravest: {} launch: - /Game.exe: - - arguments: '--in-process-gpu' + "/Game.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam steam: id: 865750 -'Harmony: The Fall of Reverie': +"Harmony: The Fall of Reverie": files: LocalAppData/HMY/Saved/Config/Windows: tags: @@ -242709,7 +243431,7 @@ HarmonyTD: installDir: HarmonyTD: {} launch: - /TowerDefense.exe: + "/TowerDefense.exe": - when: - os: windows store: steam @@ -242719,7 +243441,7 @@ Harold: installDir: Harold: {} launch: - /Harold.exe: + "/Harold.exe": - when: - os: windows store: steam @@ -242732,7 +243454,7 @@ Harpoon Cat: installDir: Harpoon Cat: {} launch: - /HarpoonCat.exe: + "/HarpoonCat.exe": - when: - os: windows store: steam @@ -242744,13 +243466,13 @@ Harrier Jump Jet: installDir: Harrier Jump Jet: {} launch: - /DOSBox/dosbox.app/Contents/MacOS/DOSBox: - - arguments: '-conf dosbox.conf -conf osx.conf -noconsole' + "/DOSBox/dosbox.app/Contents/MacOS/DOSBox": + - arguments: "-conf dosbox.conf -conf osx.conf -noconsole" when: - os: mac store: steam - /dosbox/dosbox.exe: - - arguments: '-conf dosbox.conf -conf win.conf -noconsole' + "/dosbox/dosbox.exe": + - arguments: "-conf dosbox.conf -conf win.conf -noconsole" when: - os: windows store: steam @@ -242758,50 +243480,50 @@ Harrier Jump Jet: id: 1704620 Harry Potter and the Chamber of Secrets: files: - /Harry Potter II: + "/Harry Potter II": tags: - config when: - os: windows - /Harry Potter II/Save: + "/Harry Potter II/Save": tags: - save when: - os: windows Harry Potter and the Deathly Hallows Part 1: files: - /Electronic Arts/Harry Potter and the Deathly Hallows (TM) – Part 1: + "/Electronic Arts/Harry Potter and the Deathly Hallows (TM) – Part 1": tags: - save when: - os: windows - /Electronic Arts/Harry Potter and the Deathly Hallows (TM) – Part 1/config.txt: + "/Electronic Arts/Harry Potter and the Deathly Hallows (TM) – Part 1/config.txt": tags: - config when: - os: windows Harry Potter and the Deathly Hallows Part 2: files: - /Electronic Arts/Harry Potter and the Deathly Hallows (TM) – Part 2: + "/Electronic Arts/Harry Potter and the Deathly Hallows (TM) – Part 2": tags: - save when: - os: windows - /Electronic Arts/Harry Potter and the Deathly Hallows (TM) – Part 2/config.txt: + "/Electronic Arts/Harry Potter and the Deathly Hallows (TM) – Part 2/config.txt": tags: - config when: - os: windows Harry Potter and the Goblet of Fire: files: - /Electronic Arts/Harry Potter and the Goblet of Fire: + "/Electronic Arts/Harry Potter and the Goblet of Fire": tags: - save when: - os: windows Harry Potter and the Half-Blood Prince: files: - /Electronic Arts/Harry Potter and the Half Blood Prince/HPHBP0: + "/Electronic Arts/Harry Potter and the Half Blood Prince/HPHBP0": tags: - save when: @@ -242812,7 +243534,7 @@ Harry Potter and the Half-Blood Prince: - config Harry Potter and the Order of the Phoenix: files: - /Electronic Arts/Harry Potter and the Order of the Phoenix/HPOOTP: + "/Electronic Arts/Harry Potter and the Order of the Phoenix/HPOOTP": tags: - save when: @@ -242821,46 +243543,46 @@ Harry Potter and the Order of the Phoenix: HKEY_CURRENT_USER/Software/Electronic Arts/Harry Potter and the Order of the Phoenix: tags: - config -Harry Potter and the Philosopher's Stone: +"Harry Potter and the Philosopher's Stone": files: - /Harry Potter: + "/Harry Potter": tags: - config when: - os: windows - /Harry Potter/Save: + "/Harry Potter/Save": tags: - save when: - os: windows Harry Potter and the Prisoner of Azkaban: files: - /Harry Potter™ and the Prisoner of Azkaban: + "/Harry Potter™ and the Prisoner of Azkaban": tags: - config when: - os: windows - /Harry Potter™ and the Prisoner of Azkaban/Save: + "/Harry Potter™ and the Prisoner of Azkaban/Save": tags: - save when: - os: windows -'Harry Potter: Quidditch World Cup': +"Harry Potter: Quidditch World Cup": files: - /EA Games Saves/Harry Potter - Quidditch WC: + "/EA Games Saves/Harry Potter - Quidditch WC": tags: - config - save when: - os: windows -Harry's Burgers: +"Harry's Burgers": steam: id: 753020 Harsh: installDir: Harsh: {} launch: - /Harsh.exe: + "/Harsh.exe": - when: - bit: 64 os: windows @@ -242871,7 +243593,7 @@ Hartacon Tactics: installDir: Hartacon Tactics: {} launch: - /Hartacon Tactics.exe: + "/Hartacon Tactics.exe": - when: - os: windows store: steam @@ -242881,7 +243603,7 @@ Harts: installDir: Harts: {} launch: - /Harts.exe: + "/Harts.exe": - when: - bit: 64 os: windows @@ -242894,12 +243616,12 @@ Harts: id: 769360 Haru to Shura: files: - /option.ini: + "/option.ini": tags: - config when: - os: windows - /save-c: + "/save-c": tags: - save when: @@ -242907,15 +243629,15 @@ Haru to Shura: installDir: 春と修羅: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam steam: id: 1352910 -'Harvest Days: My Dream Farm': +"Harvest Days: My Dream Farm": files: - /Harvest Days_Data/Resources/save: + "/Harvest Days_Data/Resources/save": tags: - save when: @@ -242925,7 +243647,7 @@ Haru to Shura: installDir: Harvest Days: {} launch: - /Harvest Days.exe: + "/Harvest Days.exe": - when: - os: windows store: steam @@ -242935,62 +243657,62 @@ Harvest Life: installDir: Harvest Life: {} launch: - /Harvest.app: + "/Harvest.app": - when: - os: mac store: steam - /Harvest.exe: + "/Harvest.exe": - when: - os: windows store: steam - /Harvest.x86: + "/Harvest.x86": - when: - bit: 32 os: linux store: steam - /Harvest.x86_64: + "/Harvest.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 649790 -'Harvest Moon: Light of Hope': +"Harvest Moon: Light of Hope": installDir: Harvest Moon: {} launch: - /Harvest Moon Light of Hope.exe: + "/Harvest Moon Light of Hope.exe": - when: - os: windows store: steam steam: id: 585900 -'Harvest Moon: Mad Dash': +"Harvest Moon: Mad Dash": installDir: Harvest Moon Mad Dash: {} launch: - /HMDash.exe: + "/HMDash.exe": - when: - bit: 64 os: windows store: steam steam: id: 1048020 -'Harvest Moon: One World': +"Harvest Moon: One World": installDir: Harvest Moon One World: {} launch: - /Harvest Moon One World.exe: + "/Harvest Moon One World.exe": - when: - os: windows store: steam steam: id: 1246870 -'Harvest Moon: The Winds of Anthos': +"Harvest Moon: The Winds of Anthos": installDir: Harvest Moon The Winds of Anthos: {} launch: - /Harvest Moon The Winds of Anthos.exe: + "/Harvest Moon The Winds of Anthos.exe": - when: - store: steam steam: @@ -242999,7 +243721,7 @@ Harvest Seasons: installDir: Harvest Seasons: {} launch: - /Harvest Seasons.exe: + "/Harvest Seasons.exe": - when: - os: windows store: steam @@ -243010,19 +243732,19 @@ Harvest Simulator VR: Harvest Simulator VR: {} steam: id: 612030 -'Harvest: Massive Encounter': +"Harvest: Massive Encounter": installDir: Harvest Massive Encounter: {} launch: - /Harvest Steam.app: + "/Harvest Steam.app": - when: - os: mac store: steam - /Harvest.exe: + "/Harvest.exe": - when: - os: windows store: steam - /run_harvest: + "/run_harvest": - when: - os: linux store: steam @@ -243032,7 +243754,7 @@ Harvested: installDir: Harvested: {} launch: - /Harvested.exe: + "/Harvested.exe": - when: - os: windows store: steam @@ -243040,12 +243762,12 @@ Harvested: id: 893420 Harvestella: files: - /My Games/HARVESTELLA/Steam/: + "/My Games/HARVESTELLA/Steam/": tags: - save when: - os: windows - /Harvestella/Saved/Config/WindowsNoEditor: + "/Harvestella/Saved/Config/WindowsNoEditor": tags: - config when: @@ -243053,7 +243775,7 @@ Harvestella: installDir: HARVESTELLA: {} launch: - /Harvestella.exe: + "/Harvestella.exe": - when: - os: windows store: steam @@ -243061,17 +243783,17 @@ Harvestella: id: 1816300 Harvester: files: - /CONFIG.INI: + "/CONFIG.INI": tags: - config when: - os: dos - /HARVEST: + "/HARVEST": tags: - save when: - os: windows - /HARVEST/CONFIG.INI: + "/HARVEST/CONFIG.INI": tags: - config when: @@ -243081,58 +243803,58 @@ Harvester: installDir: Harvester: {} launch: - /dosbox_linux/daum/launch_harvester_game_daum.sh: + "/dosbox_linux/daum/launch_harvester_game_daum.sh": - when: - os: linux store: steam - workingDir: /dosbox_linux/daum - /dosbox_linux/launch_harvester_config.sh: + workingDir: "/dosbox_linux/daum" + "/dosbox_linux/launch_harvester_config.sh": - when: - os: linux store: steam - workingDir: /dosbox_linux - /dosbox_linux/launch_harvester_game.sh: + workingDir: "/dosbox_linux" + "/dosbox_linux/launch_harvester_game.sh": - when: - os: linux store: steam - workingDir: /dosbox_linux - /dosbox_windows/daum/dosbox.exe: - - arguments: '-conf dosbox_harvester.conf -conf dosbox_harvester_launch_windows.conf -noconsole' + workingDir: "/dosbox_linux" + "/dosbox_windows/daum/dosbox.exe": + - arguments: "-conf dosbox_harvester.conf -conf dosbox_harvester_launch_windows.conf -noconsole" when: - os: windows store: steam - workingDir: /dosbox_windows/daum - /dosbox_windows/dosbox.exe: - - arguments: '-conf dosbox_harvester.conf -conf dosbox_harvester_launch_windows.conf -noconsole' + workingDir: "/dosbox_windows/daum" + "/dosbox_windows/dosbox.exe": + - arguments: "-conf dosbox_harvester.conf -conf dosbox_harvester_launch_windows.conf -noconsole" when: - os: windows store: steam - workingDir: /dosbox_windows - - arguments: '-conf dosbox_harvester.conf -conf dosbox_harvester_config_windows.conf -noconsole' + workingDir: "/dosbox_windows" + - arguments: "-conf dosbox_harvester.conf -conf dosbox_harvester_config_windows.conf -noconsole" when: - os: windows store: steam - workingDir: /dosbox_windows + workingDir: "/dosbox_windows" steam: id: 287020 -'Harvester of Dreams: Episode 1': +"Harvester of Dreams: Episode 1": installDir: Harvester of Dreams EP1: {} launch: - /HoD1.app: + "/HoD1.app": - when: - os: mac store: steam - /HoD1.exe: + "/HoD1.exe": - when: - os: windows store: steam - /HoD1.x86: + "/HoD1.x86": - when: - bit: 32 os: linux store: steam - /HoD1.x86_64: + "/HoD1.x86_64": - when: - bit: 64 os: linux @@ -243141,12 +243863,12 @@ Harvester: id: 772060 Has-Been Heroes: files: - /userdata//492290/remote: + "/userdata//492290/remote": tags: - save when: - store: steam - /HasBeenHeroes/options.txt: + "/HasBeenHeroes/options.txt": tags: - config when: @@ -243154,7 +243876,7 @@ Has-Been Heroes: installDir: Has-Been Heroes: {} launch: - /hasbeenheroes_64bit.exe: + "/hasbeenheroes_64bit.exe": - when: - os: windows store: steam @@ -243164,7 +243886,7 @@ Hasfax: installDir: Hasfax: {} launch: - /Hasfax.exe: + "/Hasfax.exe": - when: - bit: 64 os: windows @@ -243178,7 +243900,7 @@ Hashihime of the Old Book Town: installDir: Hashihime of the Old Book Town: {} launch: - /hashihime.exe: + "/hashihime.exe": - when: - store: steam steam: @@ -243187,7 +243909,7 @@ Hashtag Dungeon: installDir: Hashtag Dungeon: {} launch: - /HashtagDungeon.exe: + "/HashtagDungeon.exe": - when: - os: windows store: steam @@ -243197,11 +243919,11 @@ HassleHeart: installDir: HassleHeart: {} launch: - /HassleHeart.app: + "/HassleHeart.app": - when: - os: mac store: steam - /HassleHeart.exe: + "/HassleHeart.exe": - when: - os: windows store: steam @@ -243211,11 +243933,11 @@ Haste Heist: installDir: Haste Heist: {} launch: - /HasteHeist.app: + "/HasteHeist.app": - when: - os: mac store: steam - /HasteHeist.exe: + "/HasteHeist.exe": - when: - os: windows store: steam @@ -243231,21 +243953,24 @@ Hat Hunters: installDir: Hat Hunters: {} launch: - /HatHunters.app/Contents/MacOS/HatHunters: + "/HatHunters.app/Contents/MacOS/HatHunters": - when: - os: mac store: steam - /HatHunters.exe: + "/HatHunters.exe": - when: - bit: 32 os: windows store: steam - /HatHunters.x86: + - bit: 64 + os: windows + store: steam + "/HatHunters.x86": - when: - bit: 32 os: linux store: steam - /HatHunters.x86_64: + "/HatHunters.x86_64": - when: - bit: 64 os: linux @@ -243261,15 +243986,15 @@ Hatch: installDir: HATCH: {} launch: - /Contents/MacOS/HatchMac: + "/Contents/MacOS/HatchMac": - when: - os: mac store: steam - /Hatch.exe: + "/Hatch.exe": - when: - os: windows store: steam - /HatchLinux.x86_64: + "/HatchLinux.x86_64": - when: - os: linux store: steam @@ -243279,15 +244004,15 @@ Hatch and Slay: installDir: Hatch and Slay: {} launch: - /HatchAndSlay.app/Contents/MacOS/HatchAndSlay: + "/HatchAndSlay.app/Contents/MacOS/HatchAndSlay": - when: - os: mac store: steam - /HatchAndSlay.exe: + "/HatchAndSlay.exe": - when: - os: windows store: steam - /HatchAndSlay.x86: + "/HatchAndSlay.x86": - when: - os: linux store: steam @@ -243305,8 +244030,8 @@ Hate Free Heroes: installDir: Hate Free Heroes: {} launch: - /nw.exe: - - arguments: '--in-process-gpu' + "/nw.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam @@ -243316,42 +244041,42 @@ Hate Free Heroes Online: installDir: Agents of Aggro City Online: {} launch: - /Agents_of_Aggro_City.exe: + "/Agents_of_Aggro_City.exe": - when: - store: steam - /nw.exe: + "/nw.exe": - when: - store: steam steam: id: 658420 Hate Plus: files: - /.renpy/Analogue/5-*.save: + "/.renpy/Analogue/5-*.save": tags: - save when: - os: linux - /.renpy/Analogue/persistent: + "/.renpy/Analogue/persistent": tags: - config when: - os: linux - /Library/RenPy/Analogue/5-*.save: + "/Library/RenPy/Analogue/5-*.save": tags: - save when: - os: mac - /Library/RenPy/Analogue/persistent: + "/Library/RenPy/Analogue/persistent": tags: - config when: - os: mac - /RenPy/Analogue/5-*.save: + "/RenPy/Analogue/5-*.save": tags: - save when: - os: windows - /RenPy/Analogue/persistent: + "/RenPy/Analogue/persistent": tags: - config when: @@ -243359,32 +244084,32 @@ Hate Plus: installDir: Hate Plus: {} launch: - /Hate Plus.app: + "/Hate Plus.app": - when: - os: mac store: steam - /Hate Plus.exe: + "/Hate Plus.exe": - when: - os: windows store: steam - /HatePlus.sh: + "/HatePlus.sh": - when: - os: linux store: steam steam: id: 239700 -'Haters, Kill Them All!': +"Haters, Kill Them All!": installDir: - 'Haters, kill them all!': {} + "Haters, kill them all!": {} launch: - /Haters.exe: + "/Haters.exe": - when: - store: steam steam: id: 801780 Hatfall: files: - /Hatfall: + "/Hatfall": tags: - config - save @@ -243393,7 +244118,7 @@ Hatfall: installDir: Hatfall: {} launch: - /hatfall.exe: + "/hatfall.exe": - when: - os: windows store: steam @@ -243403,7 +244128,7 @@ Hatland Adventures: installDir: Hatland Adventures: {} launch: - /Hatland Adventures.exe: + "/Hatland Adventures.exe": - when: - os: windows store: steam @@ -243411,7 +244136,7 @@ Hatland Adventures: id: 347930 Hatoful Boyfriend: files: - /AppData/LocalLow/Mediatonic/HatofulBoyfriend: + "/AppData/LocalLow/Mediatonic/HatofulBoyfriend": tags: - config - save @@ -243422,29 +244147,29 @@ Hatoful Boyfriend: installDir: Hatoful Boyfriend: {} launch: - /hatoful.app: + "/hatoful.app": - when: - os: mac store: steam - /hatoful.exe: + "/hatoful.exe": - when: - os: windows store: steam - /hatoful.x86: + "/hatoful.x86": - when: - bit: 32 os: linux store: steam - /hatoful.x86_64: + "/hatoful.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 310080 -'Hatoful Boyfriend: Holiday Star': +"Hatoful Boyfriend: Holiday Star": files: - /Hatoful Boyfriend Holiday Star/HB2_Data/SavedGames/HB2: + "/Hatoful Boyfriend Holiday Star/HB2_Data/SavedGames/HB2": tags: - save when: @@ -243457,20 +244182,20 @@ Hatoful Boyfriend: installDir: Hatoful Boyfriend Holiday Star: {} launch: - /HB2.app: + "/HB2.app": - when: - os: mac store: steam - /HB2.exe: + "/HB2.exe": - when: - os: windows store: steam - /HB2.x86_64: + "/HB2.x86_64": - when: - os: linux store: steam registry: - 'HKEY_CURRENT_USER/SOFTWARE/Mediatonic/Hatoful Boyfriend: Holiday Star': + "HKEY_CURRENT_USER/SOFTWARE/Mediatonic/Hatoful Boyfriend: Holiday Star": tags: - config steam: @@ -243479,20 +244204,20 @@ Hatoful Kareshi: installDir: Hatoful Boyfriend: {} launch: - /hatoful.app: + "/hatoful.app": - when: - os: mac store: steam - /hatoful.exe: + "/hatoful.exe": - when: - os: windows store: steam - /hatoful.x86: + "/hatoful.x86": - when: - bit: 32 os: linux store: steam - /hatoful.x86_64: + "/hatoful.x86_64": - when: - bit: 64 os: linux @@ -243501,12 +244226,12 @@ Hatoful Kareshi: id: 310080 Hatred: files: - /Hatred/Saved/Config/WindowsNoEditor: + "/Hatred/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /Hatred/Saved/SaveGames: + "/Hatred/Saved/SaveGames": tags: - save when: @@ -243514,11 +244239,11 @@ Hatred: installDir: Hatred: {} launch: - /Hatred/Binaries/Linux/Hatred-Linux-Shipping: + "/Hatred/Binaries/Linux/Hatred-Linux-Shipping": - when: - os: linux store: steam - /Hatred/Binaries/Win64/Hatred-Win64-Shipping.exe: + "/Hatred/Binaries/Win64/Hatred-Win64-Shipping.exe": - when: - os: windows store: steam @@ -243526,7 +244251,7 @@ Hatred: id: 341940 Hatsune Miku Logic Paint S: files: - /Save/SaveData.bin: + "/Save/SaveData.bin": tags: - save when: @@ -243534,7 +244259,7 @@ Hatsune Miku Logic Paint S: installDir: Hatsune Miku Logic Paint S: {} launch: - /HatsuneMikuLogicPaintS.exe: + "/HatsuneMikuLogicPaintS.exe": - when: - os: windows store: steam @@ -243542,7 +244267,7 @@ Hatsune Miku Logic Paint S: id: 2089350 Hatsune Miku VR: files: - /save/savedata.dat: + "/save/savedata.dat": tags: - save when: @@ -243555,9 +244280,9 @@ Hatsune Miku VR: - config steam: id: 707300 -'Hatsune Miku: Project DIVA Mega Mix+': +"Hatsune Miku: Project DIVA Mega Mix+": files: - /SEGA/Project DIVA MEGA39's/Steam//*.dat: + "/SEGA/Project DIVA MEGA39's/Steam//*.dat": tags: - save when: @@ -243565,7 +244290,7 @@ Hatsune Miku VR: installDir: Hatsune Miku Project DIVA Mega Mix Plus: {} launch: - /DivaMegaMix.exe: + "/DivaMegaMix.exe": - when: - os: windows store: steam @@ -243575,10 +244300,10 @@ Haul Asteroid: installDir: Haul Asteroid: {} launch: - /HaulAsteroid.app: + "/HaulAsteroid.app": - when: - store: steam - /HaulAsteroid.exe: + "/HaulAsteroid.exe": - when: - os: windows store: steam @@ -243588,11 +244313,11 @@ Hauling Away: installDir: Hauling Away: {} launch: - /Haulingaway-32.exe: + "/Haulingaway-32.exe": - when: - bit: 32 store: steam - /Haulingaway.exe: + "/Haulingaway.exe": - when: - bit: 64 store: steam @@ -243605,21 +244330,21 @@ Hauma: gogExtra: - 1987778858 steamExtra: - - 2430300 - 1544870 - 1544880 + - 2430300 installDir: Hauma: {} launch: - /hauma.exe: + "/hauma.exe": - when: - os: windows store: steam steam: id: 1443470 -'Haunt the House: Terrortown': +"Haunt the House: Terrortown": files: - /air.com.sfbgames.HauntTheHouseTerrortown/Local Store: + "/air.com.sfbgames.HauntTheHouseTerrortown/Local Store": tags: - save when: @@ -243629,11 +244354,11 @@ Hauma: installDir: Haunt the House Terrortown: {} launch: - /HauntTheHouseTerrortown.app: + "/HauntTheHouseTerrortown.app": - when: - os: mac store: steam - /HauntTheHouseTerrortown.exe: + "/HauntTheHouseTerrortown.exe": - when: - os: windows store: steam @@ -243641,12 +244366,12 @@ Hauma: id: 270630 Haunted: files: - /Haunted/save: + "/Haunted/save": tags: - save when: - os: windows - /Haunted/settings-user.ini: + "/Haunted/settings-user.ini": tags: - config when: @@ -243654,18 +244379,18 @@ Haunted: installDir: Haunted: {} launch: - /bin/release_optimized/Haunted.exe: + "/bin/release_optimized/Haunted.exe": - when: - os: windows store: steam - workingDir: /bin/release_optimized + workingDir: "/bin/release_optimized" steam: id: 260550 Haunted Dream House: installDir: Hunted Dream House: {} launch: - /HuntedDreamHouse/HDH.exe: + "/HuntedDreamHouse/HDH.exe": - when: - os: windows store: steam @@ -243675,37 +244400,37 @@ Haunted Gas Station: installDir: Haunted Gas Station: {} launch: - /Haunted Gas Station.exe: + "/Haunted Gas Station.exe": - when: - os: windows store: steam steam: id: 1164390 -'Haunted Halls: Fears from Childhood': +"Haunted Halls: Fears from Childhood": installDir: - Haunted Halls Fears from Childhood Collector's Edition: {} + "Haunted Halls Fears from Childhood Collector's Edition": {} launch: - /Haunted_Halls_Fears_from_Childhood.exe: + "/Haunted_Halls_Fears_from_Childhood.exe": - when: - os: windows store: steam steam: id: 796100 -'Haunted Halls: Green Hills Sanitarium': +"Haunted Halls: Green Hills Sanitarium": installDir: - Haunted Halls Green Hills Sanitarium Collector's Edition: {} + "Haunted Halls Green Hills Sanitarium Collector's Edition": {} launch: - /Haunted Halls - Green Hills Sanitarium CE.exe: + "/Haunted Halls - Green Hills Sanitarium CE.exe": - when: - os: windows store: steam steam: id: 647080 -'Haunted Halls: Revenge of Doctor Blackmore': +"Haunted Halls: Revenge of Doctor Blackmore": installDir: - Haunted Halls Revenge of Doctor Blackmore Collector's Edition: {} + "Haunted Halls Revenge of Doctor Blackmore Collector's Edition": {} launch: - /HH3_RevengeofDoctorBlackmore_CE.exe: + "/HH3_RevengeofDoctorBlackmore_CE.exe": - when: - os: windows store: steam @@ -243715,66 +244440,66 @@ Haunted Hotel: installDir: Haunted Hotel: {} launch: - /Haunted Hotel.exe: + "/Haunted Hotel.exe": - when: - store: steam steam: id: 533030 -'Haunted Hotel II: Believe the Lies': +"Haunted Hotel II: Believe the Lies": installDir: Haunted Hotel II Believe the Lies: {} launch: - /HauntedHotel2.exe: + "/HauntedHotel2.exe": - when: - os: windows store: steam steam: id: 631270 -'Haunted Hotel: Charles Dexter Ward': +"Haunted Hotel: Charles Dexter Ward": installDir: - Haunted Hotel Charles Dexter Ward Collector's Edition: {} + "Haunted Hotel Charles Dexter Ward Collector's Edition": {} launch: - /HauntedHotel_CharlesDexterWardCE.exe: + "/HauntedHotel_CharlesDexterWardCE.exe": - when: - os: windows store: steam steam: id: 866740 -'Haunted Hotel: Eclipse': +"Haunted Hotel: Eclipse": installDir: - Haunted Hotel Eclipse Collector's Edition: {} + "Haunted Hotel Eclipse Collector's Edition": {} launch: - /HauntedHotel_EclipseCE.exe: + "/HauntedHotel_EclipseCE.exe": - when: - os: windows store: steam steam: id: 995900 -'Haunted Hotel: Lonely Dream': +"Haunted Hotel: Lonely Dream": installDir: Haunted Hotel Lonely Dream: {} launch: - /Haunted Hotel Lonely Dream.exe: + "/Haunted Hotel Lonely Dream.exe": - when: - os: windows store: steam steam: id: 786040 -'Haunted Hotel: Room 18': +"Haunted Hotel: Room 18": installDir: - Haunted Hotel Room 18 Collector's Edition: {} + "Haunted Hotel Room 18 Collector's Edition": {} launch: - /HauntedHotel_Room18_CE.exe: + "/HauntedHotel_Room18_CE.exe": - when: - os: windows store: steam steam: id: 1182670 -'Haunted Hotel: Stay in the Light': +"Haunted Hotel: Stay in the Light": installDir: Haunted Hotel SITL: {} launch: - /Haunted Hotel - SITL.exe: + "/Haunted Hotel - SITL.exe": - when: - os: windows store: steam @@ -243784,14 +244509,14 @@ Haunted House: installDir: Haunted House: {} launch: - /Launcher.exe: + "/Launcher.exe": - when: - store: steam steam: id: 9960 Haunted House (2023): files: - /AppData/LocalLow/Atari/Haunted House: + "/AppData/LocalLow/Atari/Haunted House": tags: - save when: @@ -243799,7 +244524,7 @@ Haunted House (2023): installDir: Haunted House: {} launch: - /Haunted House.exe: + "/Haunted House.exe": - when: - os: windows store: steam @@ -243808,114 +244533,114 @@ Haunted House (2023): Haunted House Renovator: steam: id: 1917850 -'Haunted House: Cryptic Graves': +"Haunted House: Cryptic Graves": installDir: Haunted House: {} launch: - /HauntedHouseGame/Binaries/Win32/HauntedHouseGame-Win32-Shipping.exe: + "/HauntedHouseGame/Binaries/Win32/HauntedHouseGame-Win32-Shipping.exe": - when: - os: windows store: steam steam: id: 314850 -'Haunted Jail: Alcatas': +"Haunted Jail: Alcatas": installDir: Haunted Jail Alcatas: {} launch: - /HauntedJailAlcatas: + "/HauntedJailAlcatas": - when: - os: linux store: steam - /HauntedJailAlcatas.exe: + "/HauntedJailAlcatas.exe": - when: - os: windows store: steam steam: id: 1056650 -'Haunted Legends: The Bronze Horseman': +"Haunted Legends: The Bronze Horseman": installDir: - Haunted Legends The Bronze Horseman Collector's Edition: {} + "Haunted Legends The Bronze Horseman Collector's Edition": {} launch: - /Haunted_Legends_The_Bronze_Horseman.exe: + "/Haunted_Legends_The_Bronze_Horseman.exe": - when: - os: windows store: steam steam: id: 623460 -'Haunted Legends: The Dark Wishes': +"Haunted Legends: The Dark Wishes": installDir: - Haunted Legends The Dark Wishes Collector's Edition: {} + "Haunted Legends The Dark Wishes Collector's Edition": {} launch: - /HauntedLegends_TheDarkWishes_CE.exe: + "/HauntedLegends_TheDarkWishes_CE.exe": - when: - os: windows store: steam steam: id: 971100 -'Haunted Legends: The Queen of Spades': +"Haunted Legends: The Queen of Spades": installDir: - Haunted Legends The Queen of Spades Collector's Edition: {} + "Haunted Legends The Queen of Spades Collector's Edition": {} launch: - /Haunted Legends The Queen of Spades.exe: + "/Haunted Legends The Queen of Spades.exe": - when: - store: steam steam: id: 533090 -'Haunted Legends: The Scars of Lamia': +"Haunted Legends: The Scars of Lamia": installDir: - Haunted Legends The Scars of Lamia Collector's Edition: {} + "Haunted Legends The Scars of Lamia Collector's Edition": {} launch: - /HauntedLegends_TheScarsOfLamia_CE.exe: + "/HauntedLegends_TheScarsOfLamia_CE.exe": - when: - os: windows store: steam steam: id: 1142290 -'Haunted Legends: The Stone Guest': +"Haunted Legends: The Stone Guest": installDir: - Haunted Legends The Curse of Vox Collector's Edition: {} + "Haunted Legends The Curse of Vox Collector's Edition": {} launch: - /HauntedLegends_StoneGuest_CE.exe: + "/HauntedLegends_StoneGuest_CE.exe": - when: - os: windows store: steam steam: id: 838760 -'Haunted Legends: The Undertaker': +"Haunted Legends: The Undertaker": installDir: - Haunted Legends The Undertaker Collector's Edition: {} + "Haunted Legends The Undertaker Collector's Edition": {} launch: - /HauntedLegends_TheUndertakerCE.exe: + "/HauntedLegends_TheUndertakerCE.exe": - when: - os: windows store: steam steam: id: 770920 -'Haunted Manor: Lord of Mirrors': +"Haunted Manor: Lord of Mirrors": installDir: - Haunted Manor Lord of Mirrors Collector's Edition: {} + "Haunted Manor Lord of Mirrors Collector's Edition": {} launch: - /Haunted Manor - Lord of Mirrors CE.exe: + "/Haunted Manor - Lord of Mirrors CE.exe": - when: - os: windows store: steam steam: id: 614380 -'Haunted Manor: Painted Beauties': +"Haunted Manor: Painted Beauties": installDir: - Haunted Manor Painted Beauties Collector's Edition: {} + "Haunted Manor Painted Beauties Collector's Edition": {} launch: - /HauntedManor_PaintedBeautiesCE.exe: + "/HauntedManor_PaintedBeautiesCE.exe": - when: - os: windows store: steam steam: id: 826390 -'Haunted Manor: Queen of Death': +"Haunted Manor: Queen of Death": installDir: - Haunted Manor Queen of Death Collector's Edition: {} + "Haunted Manor Queen of Death Collector's Edition": {} launch: - /HauntedManor_QueenofDeathCE.exe: + "/HauntedManor_QueenofDeathCE.exe": - when: - os: windows store: steam @@ -243925,25 +244650,25 @@ Haunted Memories: installDir: HauntedMemories: {} launch: - /HM.app: + "/HM.app": - when: - os: mac store: steam - /HM.x86: + "/HM.x86": - when: - os: linux store: steam - /hm.exe: + "/hm.exe": - when: - os: windows store: steam steam: id: 241640 -'Haunted Past: Realm of Ghosts': +"Haunted Past: Realm of Ghosts": installDir: Haunted Past Realm of Ghosts: {} launch: - /HP-RealmofGhosts.exe: + "/HP-RealmofGhosts.exe": - when: - store: steam steam: @@ -243951,51 +244676,51 @@ Haunted Memories: Haunted Showers: steam: id: 907630 -'Haunted Train: Frozen in Time': +"Haunted Train: Frozen in Time": installDir: - Haunted Train Frozen in Time Collector's Edition: {} + "Haunted Train Frozen in Time Collector's Edition": {} launch: - /HauntedTrain_FrozenInTime_CE.exe: + "/HauntedTrain_FrozenInTime_CE.exe": - when: - os: windows store: steam steam: id: 758650 -'Haunted Train: Spirits of Charon': +"Haunted Train: Spirits of Charon": installDir: - Haunted Train Spirits of Charon Collector's Edition: {} + "Haunted Train Spirits of Charon Collector's Edition": {} launch: - /HauntedTrain_SpiritsOfCharonCE.exe: + "/HauntedTrain_SpiritsOfCharonCE.exe": - when: - os: windows store: steam steam: id: 631240 -'Haunted: Halloween ''85': +"Haunted: Halloween '85": installDir: - HAUNTED Halloween '85: {} + "HAUNTED Halloween '85": {} launch: - /Haunted85.exe: + "/Haunted85.exe": - when: - os: windows store: steam steam: id: 538220 -'Haunted: Halloween ''86 - The Curse of Possum Hollow': +"Haunted: Halloween '86 - The Curse of Possum Hollow": installDir: - HAUNTED Halloween '86: {} + "HAUNTED Halloween '86": {} launch: - /halloween'86.exe: + "/halloween'86.exe": - when: - os: windows store: steam steam: id: 607490 -'Haunted: Poppy''s Nightmare': +"Haunted: Poppy's Nightmare": installDir: - Haunted Poppy's Nightmare: {} + "Haunted Poppy's Nightmare": {} launch: - /Haunted.exe: + "/Haunted.exe": - when: - bit: 64 os: windows @@ -244011,7 +244736,7 @@ Hauntsters: installDir: Hauntsters: {} launch: - /Hauntsters.exe: + "/Hauntsters.exe": - when: - os: windows store: steam @@ -244022,7 +244747,7 @@ Have A Sticker: id: 841860 Have a Nice Death: files: - /AppData/LocalLow/MagicDesignStudio/HaveANiceDeath: + "/AppData/LocalLow/MagicDesignStudio/HaveANiceDeath": tags: - save when: @@ -244030,7 +244755,7 @@ Have a Nice Death: installDir: Have A Nice Death: {} launch: - /HaveaNiceDeath.exe: + "/HaveaNiceDeath.exe": - when: - os: windows store: steam @@ -244038,17 +244763,17 @@ Have a Nice Death: id: 1740720 Haven: files: - /AppData/LocalLow/TheGameBakers/Haven: + "/AppData/LocalLow/TheGameBakers/Haven": tags: - save when: - os: windows - /AppData/LocalLow/TheGameBakers/Haven/Settings.json: + "/AppData/LocalLow/TheGameBakers/Haven/Settings.json": tags: - config when: - os: windows - /Packages/TheGameBakers.Haven_58gfg5kme4t12/SystemAppData/wgs: + "/Packages/TheGameBakers.Haven_58gfg5kme4t12/SystemAppData/wgs": tags: - save when: @@ -244059,7 +244784,7 @@ Haven: installDir: Haven: {} launch: - /Haven.exe: + "/Haven.exe": - when: - os: windows store: steam @@ -244071,7 +244796,7 @@ Haven: id: 983970 Haven Moon: files: - /unity3d/FrancoisRoussel/HavenMoon/prefs: + "/unity3d/FrancoisRoussel/HavenMoon/prefs": tags: - config - save @@ -244080,15 +244805,15 @@ Haven Moon: installDir: Haven Moon: {} launch: - /HavenMoon.app/Contents/MacOS/HavenMoon: + "/HavenMoon.app/Contents/MacOS/HavenMoon": - when: - os: mac store: steam - /HavenMoon.exe: + "/HavenMoon.exe": - when: - os: windows store: steam - /HavenMoon.x86_64: + "/HavenMoon.x86_64": - when: - os: linux store: steam @@ -244101,12 +244826,12 @@ Haven Moon: id: 493720 Haven Park: files: - /AppData/LocalLow/BubbleStudio/HavenPark/game.save: + "/AppData/LocalLow/BubbleStudio/HavenPark/game.save": tags: - save when: - os: windows - /unity3d/BubbleStudio/HavenPark/game.save: + "/unity3d/BubbleStudio/HavenPark/game.save": tags: - save when: @@ -244116,19 +244841,19 @@ Haven Park: installDir: Haven Park: {} launch: - /HavenPark.app/Contents/MacOS/HavenPark: + "/HavenPark.app/Contents/MacOS/HavenPark": - when: - os: mac store: steam - /HavenPark.exe: + "/HavenPark.exe": - when: - os: windows store: steam - /HavenPark.x86_64: + "/HavenPark.x86_64": - when: - os: linux store: steam - - arguments: '-force-vulkan' + - arguments: "-force-vulkan" when: - os: linux store: steam @@ -244147,16 +244872,16 @@ Havocado: installDir: Havocado: {} launch: - /Havocado.app/Contents/MacOS/Havocado: + "/Havocado.app/Contents/MacOS/Havocado": - when: - os: mac store: steam - /Havocado.exe: + "/Havocado.exe": - when: - bit: 64 os: windows store: steam - /Havocado.x86_64: + "/Havocado.x86_64": - when: - bit: 64 os: linux @@ -244165,7 +244890,7 @@ Havocado: id: 995050 Hawken: files: - /My Games/Hawken/HawkenGame/Config: + "/My Games/Hawken/HawkenGame/Config": tags: - config when: @@ -244173,12 +244898,12 @@ Hawken: installDir: Hawken: {} launch: - /Binaries/Win64/HawkenGame-Win64-Shipping.exe: + "/Binaries/Win64/HawkenGame-Win64-Shipping.exe": - when: - bit: 64 os: windows store: steam - workingDir: /Binaries/Win64 + workingDir: "/Binaries/Win64" steam: id: 271290 Hawken Reborn: @@ -244190,7 +244915,7 @@ Hawks Tactical: installDir: Hawks Tactical: {} launch: - /Hawks Tactical.exe: + "/Hawks Tactical.exe": - when: - os: windows store: steam @@ -244200,7 +244925,7 @@ Haxity: installDir: Haxity: {} launch: - /Haxity.exe: + "/Haxity.exe": - when: - os: windows store: steam @@ -244210,7 +244935,7 @@ Haxor: installDir: Haxor: {} launch: - /LauncherNNG.exe: + "/LauncherNNG.exe": - when: - os: windows store: steam @@ -244218,17 +244943,17 @@ Haxor: id: 746000 Haydee: files: - /Profile//Saves: + "/Profile//Saves": tags: - save when: - os: windows - /Save: + "/Save": tags: - save when: - os: windows - /System/*.cfg: + "/System/*.cfg": tags: - config when: @@ -244236,7 +244961,7 @@ Haydee: installDir: Haydee: {} launch: - /launcher.exe: + "/launcher.exe": - when: - os: windows store: steam @@ -244244,17 +244969,17 @@ Haydee: id: 530890 Haydee 2: files: - /Saves: + "/Saves": tags: - save when: - os: windows - /System/Edith.cfg: + "/System/Edith.cfg": tags: - config when: - os: windows - /System/Settings.cfg: + "/System/Settings.cfg": tags: - config when: @@ -244262,8 +244987,8 @@ Haydee 2: installDir: Haydee 2: {} launch: - /SteamGame.exe: - - arguments: '-game' + "/SteamGame.exe": + - arguments: "-game" when: - bit: 64 os: windows @@ -244274,7 +244999,7 @@ Hayfever: installDir: Hayfever: {} launch: - /Hayfever.exe: + "/Hayfever.exe": - when: - os: windows store: steam @@ -244289,7 +245014,7 @@ Haywire on Fuel Station Zeta: installDir: Haywire on Fuel Station Zeta: {} launch: - /Haywire.exe: + "/Haywire.exe": - when: - os: windows store: steam @@ -244299,10 +245024,10 @@ Hazard Ops: installDir: Hazard Ops: {} launch: - /UnrealEngine3/Binaries/Win32/InfernumLogin.exe: + "/UnrealEngine3/Binaries/Win32/InfernumLogin.exe": - when: - store: steam - workingDir: /UnrealEngine3/Binaries/Win32 + workingDir: "/UnrealEngine3/Binaries/Win32" steam: id: 319150 Hazardous Space: @@ -244312,7 +245037,7 @@ Hazel Sky: installDir: Hazel Sky: {} launch: - /Icarus.exe: + "/Icarus.exe": - when: - os: windows store: steam @@ -244321,11 +245046,11 @@ Hazel Sky: Hazelnut Bastille: steam: id: 968710 -'Hazen: The Dark Whispers': +"Hazen: The Dark Whispers": installDir: Hazen The Dark Whispers: {} launch: - /bin/Hazen.exe: + "/bin/Hazen.exe": - when: - store: steam steam: @@ -244334,11 +245059,11 @@ Hazmat Hijinks: installDir: Hazmat Hijinks: {} launch: - /Hazmat Hijinks.app: + "/Hazmat Hijinks.app": - when: - os: mac store: steam - /Hazmat Hijinks.exe: + "/Hazmat Hijinks.exe": - when: - bit: 64 os: windows @@ -244349,8 +245074,8 @@ Hazumi and the Pregnation: installDir: Hazumi and the Pregnation: {} launch: - /PPLSS/Game.exe: - - arguments: '--in-process-gpu' + "/PPLSS/Game.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam @@ -244360,7 +245085,7 @@ He Will Shoot: installDir: He Will Shoot: {} launch: - /HeWillShoot.exe: + "/HeWillShoot.exe": - when: - os: windows store: steam @@ -244370,17 +245095,17 @@ Head Goal: installDir: Head Goal: {} launch: - /HeadGoal.app: + "/HeadGoal.app": - when: - os: mac store: steam - /HeadGoal.exe: + "/HeadGoal.exe": - when: - os: windows store: steam steam: id: 687850 -'Head It!: VR Soccer Heading Game': +"Head It!: VR Soccer Heading Game": installDir: Head It!: {} steam: @@ -244389,7 +245114,7 @@ Head Shot: installDir: Head Shot: {} launch: - /HeadShot.exe: + "/HeadShot.exe": - when: - bit: 64 os: windows @@ -244402,7 +245127,7 @@ Head over Heels: installDir: Head Over Heels: {} launch: - /HoH.exe: + "/HoH.exe": - when: - os: windows store: steam @@ -244423,7 +245148,7 @@ Headache: id: 796470 Headcrab Frenzy!: files: - /headcrab frenzy/hcfrenzy/valve: + "/headcrab frenzy/hcfrenzy/valve": tags: - config when: @@ -244431,24 +245156,24 @@ Headcrab Frenzy!: installDir: headcrab frenzy: {} launch: - /launcher: + "/launcher": - when: - os: linux store: steam - /launcher.exe: + "/launcher.exe": - when: - os: windows store: steam steam: id: 354900 -'Header Goal VR: Being Axel Rix': +"Header Goal VR: Being Axel Rix": installDir: Header Goal VR: {} steam: id: 532120 Headlander: files: - /Doublefine/Headlander: + "/Doublefine/Headlander": tags: - config - save @@ -244459,11 +245184,11 @@ Headlander: installDir: Headlander: {} launch: - /Headlander.app/Contents/MacOS/Headlander: + "/Headlander.app/Contents/MacOS/Headlander": - when: - os: mac store: steam - /Headlander.exe: + "/Headlander.exe": - when: - os: windows store: steam @@ -244473,23 +245198,23 @@ Headliner: installDir: HEADLINER: {} launch: - /HEADLINER: + "/HEADLINER": - when: - os: linux store: steam - /HEADLINER.app: + "/HEADLINER.app": - when: - os: mac store: steam - /HEADLINER.exe: + "/HEADLINER.exe": - when: - os: windows store: steam steam: id: 680980 -'Headliner: NoviNews': +"Headliner: NoviNews": files: - /AppData/LocalLow/Unbound Creations/Headliner_ NoviNews/saves: + "/AppData/LocalLow/Unbound Creations/Headliner_ NoviNews/saves": tags: - save when: @@ -244497,20 +245222,20 @@ Headliner: installDir: Headliner NoviNews: {} launch: - /HeadlinerNoviNews.app: + "/HeadlinerNoviNews.app": - when: - os: mac store: steam - /HeadlinerNoviNews.exe: + "/HeadlinerNoviNews.exe": - when: - os: windows store: steam - /HeadlinerNoviNews.x86: + "/HeadlinerNoviNews.x86": - when: - bit: 32 os: linux store: steam - /HeadlinerNoviNews.x86_64: + "/HeadlinerNoviNews.x86_64": - when: - bit: 64 os: linux @@ -244526,11 +245251,11 @@ Heads Run: installDir: HeadsRun: {} launch: - /HeadsRun.app/Contents/MacOS/Mac_Runner: + "/HeadsRun.app/Contents/MacOS/Mac_Runner": - when: - os: mac store: steam - /HeadsRun.exe: + "/HeadsRun.exe": - when: - os: windows store: steam @@ -244543,12 +245268,12 @@ Headshot VR: id: 903710 Headsnatchers: files: - /Headsnatchers/Saved/Config/WindowsNoEditor/Engine.ini: + "/Headsnatchers/Saved/Config/WindowsNoEditor/Engine.ini": tags: - config when: - os: windows - /Headsnatchers/Saved/SaveGames: + "/Headsnatchers/Saved/SaveGames": tags: - save when: @@ -244556,7 +245281,7 @@ Headsnatchers: installDir: HeadSnatchers: {} launch: - /Headsnatchers.exe: + "/Headsnatchers.exe": - when: - store: steam steam: @@ -244565,7 +245290,7 @@ Headspun: installDir: Headspun: {} launch: - /Headspun.exe: + "/Headspun.exe": - when: - os: windows store: steam @@ -244573,7 +245298,7 @@ Headspun: id: 808770 Heal: files: - /heal/savedatapc.ini: + "/heal/savedatapc.ini": tags: - config - save @@ -244582,7 +245307,7 @@ Heal: installDir: Heal: {} launch: - /heal.exe: + "/heal.exe": - when: - os: windows store: steam @@ -244592,7 +245317,7 @@ Heal & Hurt: installDir: Heal & Hurt: {} launch: - /Heal & Hurt.exe: + "/Heal & Hurt.exe": - when: - store: steam steam: @@ -244604,11 +245329,11 @@ Heal Them All: installDir: Heal Them All: {} launch: - /healthemall.app/Contents/MacOS/healthemall: + "/healthemall.app/Contents/MacOS/healthemall": - when: - os: mac store: steam - /healthemall.exe: + "/healthemall.exe": - when: - bit: 32 os: windows @@ -244619,17 +245344,17 @@ Healer Simulator: installDir: Healer Simulator: {} launch: - /HealerSimulator.exe: + "/HealerSimulator.exe": - when: - os: windows store: steam steam: id: 801340 -Healer's Quest: +"Healer's Quest": installDir: - Healer's Quest: {} + "Healer's Quest": {} launch: - /nw.exe: + "/nw.exe": - when: - bit: 32 os: windows @@ -244645,7 +245370,7 @@ Hearing: installDir: Hearing: {} launch: - /Hearing.exe: + "/Hearing.exe": - when: - os: windows store: steam @@ -244655,15 +245380,15 @@ Heart Chain Kitty: installDir: Heart Chain Kitty: {} launch: - /kitty.app/Contents/MacOS/kitty: + "/kitty.app/Contents/MacOS/kitty": - when: - os: mac store: steam - /kitty.exe: + "/kitty.exe": - when: - os: windows store: steam - /kitty.x86: + "/kitty.x86": - when: - os: linux store: steam @@ -244671,7 +245396,7 @@ Heart Chain Kitty: id: 933210 Heart Star: files: - /Stencyl/Heart Star: + "/Stencyl/Heart Star": tags: - config - save @@ -244680,11 +245405,11 @@ Heart Star: installDir: Heart Star: {} launch: - /Heart Star.app: + "/Heart Star.app": - when: - os: mac store: steam - /Heart Star.exe: + "/Heart Star.exe": - when: - os: windows store: steam @@ -244694,19 +245419,19 @@ Heart and Axe: installDir: HeartandAxe: {} launch: - /HeartandAxe.exe: + "/HeartandAxe.exe": - when: - store: steam steam: id: 1014840 Heart and Seoul: files: - /Heart_and_Seoul_tyrano_data.sav: + "/Heart_and_Seoul_tyrano_data.sav": tags: - save when: - os: windows - /data/system/Config.tjs: + "/data/system/Config.tjs": tags: - config when: @@ -244714,16 +245439,16 @@ Heart and Seoul: installDir: Heart and Seoul: {} launch: - /nw: + "/nw": - when: - os: linux store: steam - /nw.exe: - - arguments: '--in-process-gpu' + "/nw.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam - /nwjs.app: + "/nwjs.app": - when: - os: mac store: steam @@ -244733,7 +245458,7 @@ Heart in the Dark: installDir: Heart in the Dark: {} launch: - /Heart_in_the_Dark.exe: + "/Heart_in_the_Dark.exe": - when: - os: windows store: steam @@ -244746,11 +245471,11 @@ Heart of Crown: installDir: Heart of Crown: {} launch: - /Crownpc.exe: + "/Crownpc.exe": - when: - os: windows store: steam - /HocSupplyMaker.exe: + "/HocSupplyMaker.exe": - when: - os: windows store: steam @@ -244758,7 +245483,7 @@ Heart of Crown: id: 476420 Heart of Darkness: files: - /SETUP.CFG: + "/SETUP.CFG": tags: - config - save @@ -244768,7 +245493,7 @@ Heart of Dixie: installDir: Heart of Dixie: {} launch: - /Heart of Dixie GOTY Hyper Combo Edition/Game.exe: + "/Heart of Dixie GOTY Hyper Combo Edition/Game.exe": - when: - store: steam steam: @@ -244777,23 +245502,23 @@ Heart of Ember CH1: installDir: HeartOfEmber01.1_Data: {} launch: - /HeartOfEmber01.1.exe: + "/HeartOfEmber01.1.exe": - when: - os: windows store: steam steam: id: 382320 -'Heart of Moon : The Mask of Seasons': +"Heart of Moon : The Mask of Seasons": installDir: Heart of Moon: {} launch: - /HeartOfMoon.exe: + "/HeartOfMoon.exe": - when: - os: windows store: steam steam: id: 976960 -'Heart of the Emberstone: Coliseum': +"Heart of the Emberstone: Coliseum": installDir: Heart of the Emberstone - Coliseum: {} steam: @@ -244802,15 +245527,15 @@ Heart of the House: installDir: Heart of the House: {} launch: - /Heart of the House.app/Contents/MacOS/Heart of the House: + "/Heart of the House.app/Contents/MacOS/Heart of the House": - when: - os: mac store: steam - /HeartOfTheHouse: + "/HeartOfTheHouse": - when: - os: linux store: steam - /HeartOfTheHouse.exe: + "/HeartOfTheHouse.exe": - when: - os: windows store: steam @@ -244818,13 +245543,13 @@ Heart of the House: id: 742150 Heart of the Woods: files: - /game/game/saves: + "/game/game/saves": tags: - config - save when: - os: linux - /.renpy/hotw-02152019: + "/.renpy/hotw-02152019": tags: - config - save @@ -244835,15 +245560,15 @@ Heart of the Woods: installDir: Heart of the Woods: {} launch: - /HeartoftheWoods.app: + "/HeartoftheWoods.app": - when: - os: mac store: steam - /HeartoftheWoods.exe: + "/HeartoftheWoods.exe": - when: - os: windows store: steam - /HeartoftheWoods.sh: + "/HeartoftheWoods.sh": - when: - os: linux store: steam @@ -244853,65 +245578,71 @@ Heart&Slash: installDir: HeartnSlash: {} launch: - /HeartnSlash.app: + "/HeartnSlash.app": - when: - os: mac store: steam - /HeartnSlash.exe: + "/HeartnSlash.exe": - when: - bit: 32 os: windows store: steam - /HeartnSlash64.exe: + "/HeartnSlash64.exe": - when: - bit: 64 os: windows store: steam - /heartnslash: + "/heartnslash": - when: - os: linux store: steam steam: id: 326840 -Heart'n Block: +"Heart'n Block": installDir: - Heart'n Block: {} + "Heart'n Block": {} launch: - /nw: + "/nw": - when: - bit: 32 os: linux store: steam - /nw.exe: + - bit: 64 + os: linux + store: steam + "/nw.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam steam: id: 869630 -'Heart''s Medicine: Hospital Heat': +"Heart's Medicine: Hospital Heat": installDir: - Heart's Medicine - Hospital Heat: {} + "Heart's Medicine - Hospital Heat": {} launch: - /hm3.app/Contents/MacOS/hm3: + "/hm3.app/Contents/MacOS/hm3": - when: - os: mac store: steam - /hm3.exe: + "/hm3.exe": - when: - os: windows store: steam steam: id: 605990 -'Heart''s Medicine: Time to Heal': +"Heart's Medicine: Time to Heal": installDir: Hearts Medicine - Time to Heal: {} launch: - /hm2.app/Contents/MacOS/hm2: + "/hm2.app/Contents/MacOS/hm2": - when: - os: mac store: steam - /hm2.exe: + "/hm2.exe": - when: - os: windows store: steam @@ -244924,40 +245655,40 @@ Heart. Papers. Border.: installDir: HeartPapersBorder: {} launch: - /hpb.app: + "/hpb.app": - when: - os: mac store: steam - /hpb.x86_64: + "/hpb.x86_64": - when: - bit: 64 os: linux store: steam - /hpb64.exe: + "/hpb64.exe": - when: - bit: 64 os: windows store: steam steam: id: 604110 -'HeartZ: Co-Hope Puzzles': +"HeartZ: Co-Hope Puzzles": installDir: HeartZ: {} launch: - /HeartZ.app: + "/HeartZ.app": - when: - os: mac store: steam - /HeartZ.exe: + "/HeartZ.exe": - when: - os: windows store: steam - /HeartZ.x86: + "/HeartZ.x86": - when: - bit: 32 os: linux store: steam - /HeartZ.x86_64: + "/HeartZ.x86_64": - when: - bit: 64 os: linux @@ -244968,18 +245699,18 @@ Heartbeat: installDir: HEARTBEAT: {} launch: - /Game.app: - - arguments: '--in-process-gpu' + "/Game.app": + - arguments: "--in-process-gpu" when: - os: mac store: steam - /nw: - - arguments: '--in-process-gpu --user-data-dir=heartbeat/' + "/nw": + - arguments: "--in-process-gpu --user-data-dir=heartbeat/" when: - os: linux store: steam - /nw.exe: - - arguments: '--in-process-gpu --user-data-dir=heartbeat/' + "/nw.exe": + - arguments: "--in-process-gpu --user-data-dir=heartbeat/" when: - os: windows store: steam @@ -244989,25 +245720,25 @@ Heartbound: installDir: Heartbound: {} launch: - /Heartbound.exe: + "/Heartbound.exe": - when: - os: windows store: steam - /run.sh: + "/run.sh": - when: - os: linux store: steam steam: id: 567380 -'Heartbreak High: A Break-Up Simulator': +"Heartbreak High: A Break-Up Simulator": installDir: HeartbreakHigh: {} launch: - /HeartbreakHigh.exe: + "/HeartbreakHigh.exe": - when: - os: windows store: steam - /heartbreakhigh.app: + "/heartbreakhigh.app": - when: - os: mac store: steam @@ -245015,12 +245746,12 @@ Heartbound: id: 836350 Hearthlands: files: - /config.txt: + "/config.txt": tags: - config when: - os: windows - /saves: + "/saves": tags: - save when: @@ -245030,15 +245761,15 @@ Hearthlands: installDir: Hearthlands: {} launch: - /Hearthlands.app: + "/Hearthlands.app": - when: - os: mac store: steam - /Hearthlands.exe: + "/Hearthlands.exe": - when: - os: windows store: steam - /hearthlands.sh: + "/hearthlands.sh": - when: - os: linux store: steam @@ -245046,19 +245777,19 @@ Hearthlands: id: 336300 Hearthstone: files: - /Applications/Hearthstone/client.config: + "/Applications/Hearthstone/client.config": tags: - config when: - os: mac - /Blizzard/Hearthstone/options.txt: + "/Blizzard/Hearthstone/options.txt": tags: - config when: - os: windows Heartlight: files: - /config.dta: + "/config.dta": tags: - config when: @@ -245067,7 +245798,7 @@ Heartomics: installDir: Heartomics: {} launch: - /heartomics.exe: + "/heartomics.exe": - when: - os: windows store: steam @@ -245077,32 +245808,32 @@ Heartomics 2: installDir: Heartomics 2: {} launch: - /heartomics.exe: + "/heartomics.exe": - when: - os: windows store: steam steam: id: 455970 -'Heartomics: Lost Count': +"Heartomics: Lost Count": installDir: Heartomics Lost Count - Visual Novel Danmaku: {} launch: - /Lost Count.exe: + "/Lost Count.exe": - when: - os: windows store: steam - /lost_count: + "/lost_count": - when: - bit: 64 os: linux store: steam steam: id: 502300 -'Heartomics: Valkyries': +"Heartomics: Valkyries": installDir: Heartomics Valkyries: {} launch: - /Valkyries.exe: + "/Valkyries.exe": - when: - os: windows store: steam @@ -245112,7 +245843,7 @@ Hearts of Chaos: installDir: Hearts of Chaos: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: @@ -245122,7 +245853,7 @@ Hearts of Iron: id: 1423477291 Hearts of Iron II: files: - /scenarios/save games: + "/scenarios/save games": tags: - save when: @@ -245132,22 +245863,22 @@ Hearts of Iron II: installDir: Hearts of Iron 2 Complete Pack: {} launch: - /hoi2.bat: + "/hoi2.bat": - when: - store: steam - /hoi2.exe: + "/hoi2.exe": - when: - store: steam steam: id: 22130 Hearts of Iron III: files: - /save games: + "/save games": tags: - save when: - os: windows - /settings.txt: + "/settings.txt": tags: - config when: @@ -245157,11 +245888,11 @@ Hearts of Iron III: installDir: Hearts of Iron 3: {} launch: - /Hearts of Iron 3.app: + "/Hearts of Iron 3.app": - when: - os: mac store: steam - /hoi3.exe: + "/hoi3.exe": - when: - os: windows store: steam @@ -245169,32 +245900,32 @@ Hearts of Iron III: id: 25890 Hearts of Iron IV: files: - /Paradox Interactive/Hearts of Iron IV: + "/Paradox Interactive/Hearts of Iron IV": tags: - config when: - os: mac - /Paradox Interactive/Hearts of Iron IV/save games: + "/Paradox Interactive/Hearts of Iron IV/save games": tags: - save when: - os: mac - /Paradox Interactive/Hearts of Iron IV: + "/Paradox Interactive/Hearts of Iron IV": tags: - config when: - os: windows - /Paradox Interactive/Hearts of Iron IV/save games: + "/Paradox Interactive/Hearts of Iron IV/save games": tags: - save when: - os: windows - /Paradox Interactive/Hearts of Iron IV: + "/Paradox Interactive/Hearts of Iron IV": tags: - config when: - os: linux - /Paradox Interactive/Hearts of Iron IV/save games: + "/Paradox Interactive/Hearts of Iron IV/save games": tags: - save when: @@ -245202,13 +245933,16 @@ Hearts of Iron IV: installDir: Hearts of Iron IV: {} launch: - /dowser: - - arguments: '-- ' + "/dowser": + - arguments: "-- " when: - os: mac store: steam - /dowser.exe: - - arguments: '-- ' + - bit: 64 + os: linux + store: steam + "/dowser.exe": + - arguments: "-- " when: - bit: 64 os: windows @@ -245224,8 +245958,8 @@ Heat Guardian: installDir: Heat Guardian: {} launch: - /Heat Guardian.exe: - - arguments: '-limit-fps=60' + "/Heat Guardian.exe": + - arguments: "-limit-fps=60" when: - bit: 64 os: windows @@ -245234,17 +245968,17 @@ Heat Guardian: id: 595260 Heat Signature: files: - /Heat_Signature/Galaxy *: + "/Heat_Signature/Galaxy *": tags: - save when: - os: windows - /Heat_Signature/Options.txt: + "/Heat_Signature/Options.txt": tags: - config when: - os: windows - /Heat_Signature/Progress.dat: + "/Heat_Signature/Progress.dat": tags: - save when: @@ -245252,7 +245986,7 @@ Heat Signature: installDir: Heat Signature: {} launch: - /Heat_Signature.exe: + "/Heat_Signature.exe": - when: - os: windows store: steam @@ -245260,13 +245994,13 @@ Heat Signature: id: 268130 Heathen - The sons of the law: files: - /steamapps/common/Heathen Game/system.cfg: + "/steamapps/common/Heathen Game/system.cfg": tags: - config when: - os: windows store: steam - /steamapps/common/Heathen Game/user/savegames: + "/steamapps/common/Heathen Game/user/savegames": tags: - save when: @@ -245275,30 +246009,30 @@ Heathen - The sons of the law: installDir: Heathen Game: {} launch: - /bin/win_x64_release/Heathen.exe: + "/bin/win_x64_release/Heathen.exe": - when: - bit: 64 os: windows store: steam steam: id: 611230 -Heathen Engineering's Terran: +"Heathen Engineering's Terran": installDir: - Heathen Engineering's Terran: {} + "Heathen Engineering's Terran": {} launch: - /HETerran.app: + "/HETerran.app": - when: - os: mac store: steam - /HETerran.exe: + "/HETerran.exe": - when: - os: windows store: steam - - arguments: '-force-d3d11' + - arguments: "-force-d3d11" when: - os: windows store: steam - /HETerran.x86: + "/HETerran.x86": - when: - os: linux store: steam @@ -245306,7 +246040,7 @@ Heathen Engineering's Terran: id: 427970 Heave Ho: files: - /AppData/LocalLow/Le Cartel Studio/HeaveHo/Save/HeaveHo*.save: + "/AppData/LocalLow/Le Cartel Studio/HeaveHo/Save/HeaveHo*.save": tags: - save when: @@ -245316,11 +246050,11 @@ Heave Ho: installDir: Heave Ho: {} launch: - /Heave Ho.app/Contents/MacOS/Heave Ho: + "/Heave Ho.app/Contents/MacOS/Heave Ho": - when: - os: mac store: steam - /HeaveHo.exe: + "/HeaveHo.exe": - when: - os: windows store: steam @@ -245334,7 +246068,7 @@ Heaven & Hell: installDir: Heaven & Hell: {} launch: - /HeavenHell.exe: + "/HeavenHell.exe": - when: - os: windows store: steam @@ -245344,7 +246078,7 @@ Heaven & Hell 2: installDir: HeavenAndHell2: {} launch: - /HeavenHell2.exe: + "/HeavenHell2.exe": - when: - os: windows store: steam @@ -245354,11 +246088,11 @@ Heaven And Earth: installDir: Heaven And Earth (Demo): {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam - /game.exe: + "/game.exe": - when: - os: mac store: steam @@ -245368,7 +246102,7 @@ Heaven Burns Red: installDir: HeavenBurnsRed: {} launch: - /HeavenBurnsRed.exe: + "/HeavenBurnsRed.exe": - when: - bit: 64 os: windows @@ -245383,7 +246117,7 @@ Heaven Dust: installDir: Heaven Dust: {} launch: - /HeavenDust.exe: + "/HeavenDust.exe": - when: - os: windows store: steam @@ -245393,7 +246127,7 @@ Heaven Dust 2: installDir: Heaven Dust 2: {} launch: - /HeavenDust2.exe: + "/HeavenDust2.exe": - when: - os: windows store: steam @@ -245403,15 +246137,15 @@ Heaven Forest - VR MMO: installDir: Heaven Forest - VR MMO: {} launch: - /HeavenForest.app: + "/HeavenForest.app": - when: - os: mac store: steam - /HeavenForest.exe: + "/HeavenForest.exe": - when: - os: windows store: steam - /HeavenForest.x86_64: + "/HeavenForest.x86_64": - when: - os: linux store: steam @@ -245421,15 +246155,15 @@ Heaven Forest Nights: installDir: Heaven Forest NIGHTS: {} launch: - /HeavenForestNights.app: + "/HeavenForestNights.app": - when: - os: mac store: steam - /HeavenForestNights.exe: + "/HeavenForestNights.exe": - when: - os: windows store: steam - /HeavenForestNights.x86_64: + "/HeavenForestNights.x86_64": - when: - os: linux store: steam @@ -245439,15 +246173,15 @@ Heaven Island - VR MMO: installDir: ParadiseIsland: {} launch: - /ParadiseIsland.app: + "/ParadiseIsland.app": - when: - os: mac store: steam - /ParadiseIsland.exe: + "/ParadiseIsland.exe": - when: - os: windows store: steam - /ParadiseIsland.x86_64: + "/ParadiseIsland.x86_64": - when: - os: linux store: steam @@ -245460,7 +246194,7 @@ Heaven Island Life: id: 422100 Heaven Will Be Mine: files: - /AppData/LocalLow/PillowFightIo/HeavenWillBeMine: + "/AppData/LocalLow/PillowFightIo/HeavenWillBeMine": tags: - save when: @@ -245468,49 +246202,49 @@ Heaven Will Be Mine: installDir: Heaven Will Be Mine: {} launch: - /HeavenWillBeMine.app/Contents/MacOS/HeavenWillBeMine: + "/HeavenWillBeMine.app/Contents/MacOS/HeavenWillBeMine": - when: - os: mac store: steam - /HeavenWillBeMine.exe: + "/HeavenWillBeMine.exe": - when: - bit: 64 os: windows store: steam - /HeavenWillBeMine.x86_64: + "/HeavenWillBeMine.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 836450 -Heaven's Grave: +"Heaven's Grave": installDir: - Heaven's Grave: {} + "Heaven's Grave": {} launch: - /Heaven's_Grave.exe: + "/Heaven's_Grave.exe": - when: - os: windows store: steam steam: id: 1132110 -Heaven's Hope - Special Edition: +"Heaven's Hope - Special Edition": installDir: - Heaven's Hope: {} + "Heaven's Hope": {} launch: - /Heavens Hope: + "/Heavens Hope": - when: - os: mac store: steam - /Heavens Hope.exe: + "/Heavens Hope.exe": - when: - os: windows store: steam steam: id: 404510 -Heaven's Vault: +"Heaven's Vault": files: - /AppData/LocalLow/Inkle Ltd/Heaven's Vault: + "/AppData/LocalLow/Inkle Ltd/Heaven's Vault": tags: - save when: @@ -245518,23 +246252,23 @@ Heaven's Vault: gog: id: 1117322977 installDir: - Heaven's Vault: {} + "Heaven's Vault": {} launch: - /Heaven's Vault.exe: + "/Heaven's Vault.exe": - when: - os: windows store: steam registry: - HKEY_CURRENT_USER/Software/Inkle Ltd/Heaven's Vault: + "HKEY_CURRENT_USER/Software/Inkle Ltd/Heaven's Vault": tags: - config steam: id: 774201 -Heaven's Voice Feast of Famine: +"Heaven's Voice Feast of Famine": installDir: - Heaven's Voice Feast of Famine: {} + "Heaven's Voice Feast of Famine": {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -245545,7 +246279,7 @@ Heavenly Battle: id: 491730 Heavenly Bodies: files: - /AppData/LocalLow/2pt Interactive/Heavenly Bodies/savedata/*.dat: + "/AppData/LocalLow/2pt Interactive/Heavenly Bodies/savedata/*.dat": tags: - save when: @@ -245553,11 +246287,11 @@ Heavenly Bodies: installDir: Heavenly Bodies: {} launch: - /Heavenly Bodies.app/Contents/MacOS/Heavenly Bodies: + "/Heavenly Bodies.app/Contents/MacOS/Heavenly Bodies": - when: - os: mac store: steam - /Heavenly Bodies.exe: + "/Heavenly Bodies.exe": - when: - os: windows store: steam @@ -245577,7 +246311,7 @@ Heavenstrike Rivals: installDir: Heavenstrike Rivals: {} launch: - /HeavenStrikeRivals.exe: + "/HeavenStrikeRivals.exe": - when: - os: windows store: steam @@ -245587,11 +246321,14 @@ Heavily Armed: installDir: Heavily Armed: {} launch: - /HA.exe: + "/HA.exe": - when: - bit: 32 os: windows store: steam + - bit: 64 + os: windows + store: steam steam: id: 554770 Heavy Barrel (Retro Classix): @@ -245600,7 +246337,7 @@ Heavy Barrel (Retro Classix): installDir: Retro Classix Heavy Barrel: {} launch: - /Retro Classix Heavy Barrel.exe: + "/Retro Classix Heavy Barrel.exe": - when: - os: windows store: steam @@ -245610,7 +246347,7 @@ Heavy Blade: installDir: HeavyBlade: {} launch: - /HeavyBlade.exe: + "/HeavyBlade.exe": - when: - os: windows store: steam @@ -245620,7 +246357,7 @@ Heavy Bleakness: installDir: Heavy Bleakness: {} launch: - /Heavy Bleakness.exe: + "/Heavy Bleakness.exe": - when: - os: windows store: steam @@ -245628,7 +246365,7 @@ Heavy Bleakness: id: 614810 Heavy Bullets: files: - /.config/unity3d/TerriVellmann/HEAVY BULLETS: + "/.config/unity3d/TerriVellmann/HEAVY BULLETS": tags: - config - save @@ -245637,20 +246374,20 @@ Heavy Bullets: installDir: Heavy Bullets: {} launch: - /HEAVY_BULLETS.app: + "/HEAVY_BULLETS.app": - when: - os: mac store: steam - /HEAVY_BULLETS.exe: + "/HEAVY_BULLETS.exe": - when: - os: windows store: steam - /HEAVY_BULLETS.x86: + "/HEAVY_BULLETS.x86": - when: - bit: 32 os: linux store: steam - /HEAVY_BULLETS.x86_64: + "/HEAVY_BULLETS.x86_64": - when: - bit: 64 os: linux @@ -245666,11 +246403,11 @@ Heavy Burger: installDir: Heavy Burger: {} launch: - /HeavyBurger.app/Contents/MacOS/HeavyBurger: + "/HeavyBurger.app/Contents/MacOS/HeavyBurger": - when: - os: mac store: steam - /HeavyBurger.exe: + "/HeavyBurger.exe": - when: - os: windows store: steam @@ -245680,7 +246417,7 @@ Heavy Destinies: installDir: HeavyDestinies: {} launch: - /HeavyDestinies.exe: + "/HeavyDestinies.exe": - when: - os: windows store: steam @@ -245690,30 +246427,30 @@ Heavy Dreams: installDir: Heavy Dreams: {} launch: - /Heavy Dreams.exe: + "/Heavy Dreams.exe": - when: - os: windows store: steam steam: id: 917240 -'Heavy Fire: Afghanistan': +"Heavy Fire: Afghanistan": installDir: HeavyFireAfghanistan: {} launch: - /HF_Starter.exe: + "/HF_Starter.exe": - when: - os: windows store: steam steam: id: 305980 -'Heavy Fire: Red Shadow': +"Heavy Fire: Red Shadow": steam: id: 664840 -'Heavy Fire: Shattered Spear': +"Heavy Fire: Shattered Spear": installDir: Heavy Fire Shattered Spear: {} launch: - /launcher.exe: + "/launcher.exe": - when: - os: windows store: steam @@ -245723,11 +246460,11 @@ Heavy Gear Assault: installDir: Heavy Gear Assault: {} launch: - /HGGame/Binaries/Linux/HGGame: + "/HGGame/Binaries/Linux/HGGame": - when: - os: linux store: steam - /HGGame/Binaries/Win64/HGGame.exe: + "/HGGame/Binaries/Win64/HGGame.exe": - when: - bit: 64 os: windows @@ -245743,7 +246480,7 @@ Heavy Memories: installDir: Heavy Memories: {} launch: - /heavy_memories.exe: + "/heavy_memories.exe": - when: - os: windows store: steam @@ -245753,7 +246490,7 @@ Heavy Metal Babes: installDir: HMB: {} launch: - /Heavy Metal Babes.exe: + "/Heavy Metal Babes.exe": - when: - os: windows store: steam @@ -245761,7 +246498,7 @@ Heavy Metal Babes: id: 1386950 Heavy Metal Machines: files: - /steamapps/common/Heavy Metal Machines: + "/steamapps/common/Heavy Metal Machines": tags: - config when: @@ -245770,59 +246507,60 @@ Heavy Metal Machines: installDir: Heavy Metal Machines: {} launch: - /WDLauncherSO.exe: - - arguments: '--crashHandler=Legacy' + "/WDLauncherSO.exe": + - arguments: "--crashHandler=Legacy" when: - bit: 64 os: windows store: steam steam: id: 331360 -'Heavy Metal: F.A.K.K. 2': +"Heavy Metal: F.A.K.K. 2": files: - /fakk: + "/fakk": tags: - config when: - os: windows - /fakk/save: + "/fakk/save": tags: - save when: - os: windows - /.loki/fakk2/fakk: + "/.loki/fakk2/fakk": tags: - config when: - os: linux - /.loki/fakk2/fakk/save: + "/.loki/fakk2/fakk/save": tags: - save when: - os: linux Heavy Rain: files: - /user_setting.ini: + "/user_setting.ini": tags: - config when: - os: windows - /Saved Games/HeavyRain: + "/Saved Games/HeavyRain": tags: - save when: - - store: steam - /Saved Games/HeavyRainNS: + - os: windows + store: steam + "/Saved Games/HeavyRainNS": tags: - save when: - - store: epic + - os: windows gog: id: 2055511884 installDir: HEAVY RAIN: {} launch: - /HeavyRain.exe: + "/HeavyRain.exe": - when: - bit: 64 os: windows @@ -245833,14 +246571,14 @@ Heavy Recoil: installDir: Heavy Recoil: {} launch: - /heavy_recoil.exe: + "/heavy_recoil.exe": - when: - store: steam steam: id: 933030 Heavy Weapon: files: - /userdata: + "/userdata": tags: - save when: @@ -245848,7 +246586,7 @@ Heavy Weapon: installDir: Heavy Weapon Deluxe: {} launch: - /Heavy Weapon Deluxe.exe: + "/Heavy Weapon Deluxe.exe": - when: - store: steam steam: @@ -245857,7 +246595,7 @@ Heavy load: installDir: Heavy load: {} launch: - /HEAVY LOAD.exe: + "/HEAVY LOAD.exe": - when: - store: steam steam: @@ -245866,7 +246604,7 @@ Heavyweight Transport Simulator 3: installDir: Heavyweight Transport Simulator 3: {} launch: - /heavy_weight_3_win_multi.exe: + "/heavy_weight_3_win_multi.exe": - when: - os: windows store: steam @@ -245876,7 +246614,7 @@ HecatoncheirStory: installDir: HecatoncheirStory: {} launch: - /HecatoncheirStory.exe: + "/HecatoncheirStory.exe": - when: - store: steam steam: @@ -245885,7 +246623,7 @@ Heckabomb: installDir: Heckabomb: {} launch: - /Heckabomb.exe: + "/Heckabomb.exe": - when: - os: windows store: steam @@ -245895,7 +246633,7 @@ Heckpoint: installDir: Heckpoint: {} launch: - /Heckpoint.exe: + "/Heckpoint.exe": - when: - os: windows store: steam @@ -245905,7 +246643,7 @@ Hectic: installDir: Hectic: {} launch: - /Hectic Void.exe: + "/Hectic Void.exe": - when: - os: windows store: steam @@ -245915,41 +246653,41 @@ Hectic Highways: installDir: Hectic Highways: {} launch: - /HecticHighways/HecticHighways.exe: + "/HecticHighways/HecticHighways.exe": - when: - bit: 64 os: windows store: steam steam: id: 1006430 -'Hector: Badge of Carnage!': +"Hector: Badge of Carnage!": files: - /Documents/Telltale Games/Hector Ep 2/prefs.prop: + "/Documents/Telltale Games/Hector Ep 2/prefs.prop": tags: - config when: - os: windows - /Documents/Telltale Games/Hector Ep 2/save*.save: + "/Documents/Telltale Games/Hector Ep 2/save*.save": tags: - save when: - os: windows - /Documents/Telltale Games/Hector Ep 3/prefs.prop: + "/Documents/Telltale Games/Hector Ep 3/prefs.prop": tags: - config when: - os: windows - /Documents/Telltale Games/Hector Ep 3/save*.save: + "/Documents/Telltale Games/Hector Ep 3/save*.save": tags: - save when: - os: windows - /Documents/Telltale Games/Hector Episode 1/prefs.prop: + "/Documents/Telltale Games/Hector Episode 1/prefs.prop": tags: - config when: - os: windows - /Documents/Telltale Games/Hector Episode 1/save*.save: + "/Documents/Telltale Games/Hector Episode 1/save*.save": tags: - save when: @@ -245963,11 +246701,11 @@ Hectic Highways: installDir: Hector Episode 1: {} launch: - /Hector101.app: + "/Hector101.app": - when: - os: mac store: steam - /Hector101.exe: + "/Hector101.exe": - when: - os: windows store: steam @@ -245975,7 +246713,7 @@ Hectic Highways: id: 94600 Hedgewars: files: - /.hedgewars: + "/.hedgewars": tags: - config when: @@ -245983,11 +246721,11 @@ Hedgewars: installDir: Hedgewars: {} launch: - /hedgewars.exe: + "/hedgewars.exe": - when: - os: windows store: steam - /usr/lib/hedgewars/bin/hedgewars: + "/usr/lib/hedgewars/bin/hedgewars": - when: - os: linux store: steam @@ -245995,17 +246733,17 @@ Hedgewars: id: 2223810 Hedon: files: - /gzdoom-.ini: + "/gzdoom-.ini": tags: - config when: - os: windows - /hedon-.ini: + "/hedon-.ini": tags: - config when: - os: windows - /save*.zds: + "/save*.zds": tags: - save when: @@ -246015,19 +246753,19 @@ Hedon: installDir: Hedon Bloodrite: {} launch: - /Launch Hedon: + "/Launch Hedon": - when: - bit: 64 os: linux store: steam - /hedon.exe: + "/hedon.exe": - when: - bit: 64 os: windows store: steam steam: id: 1072150 -'Heebie Jeebies: The Roller Coaster': +"Heebie Jeebies: The Roller Coaster": installDir: Heebie Jeebies The Roller Coaster: {} steam: @@ -246035,30 +246773,30 @@ Hedon: Heeey! Park-Boy!: steam: id: 1864750 -'Hegemony Gold: Wars of Ancient Greece': +"Hegemony Gold: Wars of Ancient Greece": gog: id: 1955494582 installDir: Hegemony Gold: {} launch: - /Launcher.exe: + "/Launcher.exe": - when: - store: steam steam: id: 202690 -'Hegemony III: Clash of the Ancients': +"Hegemony III: Clash of the Ancients": files: - /controls.xml: + "/controls.xml": tags: - config when: - os: windows - /Saved Games/Hegemony III: + "/Saved Games/Hegemony III": tags: - save when: - os: windows - /Longbow Digital Arts/Hegemony III/Settings.xml: + "/Longbow Digital Arts/Hegemony III/Settings.xml": tags: - config when: @@ -246073,39 +246811,39 @@ Heeey! Park-Boy!: installDir: Hegemony III: {} launch: - /Hegemony III Launcher.exe: + "/Hegemony III Launcher.exe": - when: - store: steam - /launch32.bat: + "/launch32.bat": - when: - store: steam steam: id: 308173 -'Hegemony Rome: The Rise of Caesar': +"Hegemony Rome: The Rise of Caesar": installDir: Hegemony Rome: {} launch: - /Hegemony Rome Launcher.exe: + "/Hegemony Rome Launcher.exe": - when: - os: windows store: steam steam: id: 227060 -Hegis' Grasp: +"Hegis' Grasp": installDir: Hegis Grasp: {} launch: - /hegis-grasp.x86_64: + "/hegis-grasp.x86_64": - when: - bit: 64 os: linux store: steam - /hegis_grasp.exe: + "/hegis_grasp.exe": - when: - bit: 64 os: windows store: steam - /mac_content.app: + "/mac_content.app": - when: - os: mac store: steam @@ -246115,11 +246853,11 @@ Hei: installDir: Hei: {} launch: - /Hei.app/Contents/MacOS/HeiMac: + "/Hei.app/Contents/MacOS/HeiMac": - when: - os: mac store: steam - /Hei.exe: + "/Hei.exe": - when: - os: windows store: steam @@ -246129,7 +246867,7 @@ Heiankyo Alien: installDir: HeiankyoAlien: {} launch: - /HeiankyoAlien3671.exe: + "/HeiankyoAlien3671.exe": - when: - store: steam steam: @@ -246138,38 +246876,38 @@ Heidentum: installDir: Heidentum: {} launch: - /Heidentum.app: + "/Heidentum.app": - when: - os: mac store: steam - /Heidentum.exe: + "/Heidentum.exe": - when: - os: windows store: steam - /Heidentum.x86_64: + "/Heidentum.x86_64": - when: - os: linux store: steam steam: id: 1052010 -'Heileen 2: The Hands of Fate': +"Heileen 2: The Hands of Fate": files: - /game/saves/*.save: + "/game/saves/*.save": tags: - save when: - os: windows - /game/saves/persistent: + "/game/saves/persistent": tags: - config when: - os: windows - /RenPy/Heileen-2.0/*.save: + "/RenPy/Heileen-2.0/*.save": tags: - save when: - os: windows - /RenPy/Heileen-2.0/persistent: + "/RenPy/Heileen-2.0/persistent": tags: - config when: @@ -246177,56 +246915,56 @@ Heidentum: installDir: Heileen 2 The Hands Of Fate: {} launch: - /Heileen2.app: + "/Heileen2.app": - when: - os: mac store: steam - /Heileen2.exe: + "/Heileen2.exe": - when: - os: windows store: steam - /Heileen2.sh: + "/Heileen2.sh": - when: - os: linux store: steam steam: id: 305480 -'Heileen 3: New Horizons': +"Heileen 3: New Horizons": installDir: Heileen 3 New Horizons: {} launch: - /Heileen3.app: + "/Heileen3.app": - when: - os: mac store: steam - /Heileen3.exe: + "/Heileen3.exe": - when: - os: windows store: steam - /Heileen3.sh: + "/Heileen3.sh": - when: - os: linux store: steam steam: id: 305490 -'Heileen: Sail Away': +"Heileen: Sail Away": files: - /game/saves/*.save: + "/game/saves/*.save": tags: - save when: - os: windows - /game/saves/persistent: + "/game/saves/persistent": tags: - config when: - os: windows - /RenPy/Heileen-1.0/*.save: + "/RenPy/Heileen-1.0/*.save": tags: - save when: - os: windows - /RenPy/Heileen-1.0/persistent: + "/RenPy/Heileen-1.0/persistent": tags: - config when: @@ -246234,15 +246972,15 @@ Heidentum: installDir: Heileen1: {} launch: - /Heileen.app: + "/Heileen.app": - when: - os: mac store: steam - /Heileen.exe: + "/Heileen.exe": - when: - os: windows store: steam - /Heileen.sh: + "/Heileen.sh": - when: - os: linux store: steam @@ -246255,15 +246993,15 @@ Heirs And Graces: installDir: Heirs And Graces: {} launch: - /HeirsAndGraces.app: + "/HeirsAndGraces.app": - when: - os: mac store: steam - /HeirsAndGraces.exe: + "/HeirsAndGraces.exe": - when: - os: windows store: steam - /HeirsAndGraces.sh: + "/HeirsAndGraces.sh": - when: - os: linux store: steam @@ -246273,11 +247011,11 @@ Hektor: installDir: Hektor: {} launch: - /HektorOSX.app/Contents/MacOS/HektorOSX: + "/HektorOSX.app/Contents/MacOS/HektorOSX": - when: - os: mac store: steam - /HektorWin.exe: + "/HektorWin.exe": - when: - os: windows store: steam @@ -246287,27 +247025,27 @@ Heldric - The legend of the shoemaker: installDir: Heldric: {} launch: - /heldric.exe: + "/heldric.exe": - when: - os: windows store: steam - /heldric.x86: + "/heldric.x86": - when: - bit: 32 os: linux store: steam - /heldric.x86_64: + "/heldric.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 293420 -Helen's Mysterious Castle: +"Helen's Mysterious Castle": installDir: - Helen's Mysterious Castle: {} + "Helen's Mysterious Castle": {} launch: - /helen/start.exe: + "/helen/start.exe": - when: - os: windows store: steam @@ -246317,7 +247055,7 @@ Helena The 3rd: installDir: Helena The 3rd: {} launch: - /Helena.exe: + "/Helena.exe": - when: - os: windows store: steam @@ -246328,7 +247066,7 @@ Helhats: id: 740580 Helheim: files: - /SaveData/Save.json: + "/SaveData/Save.json": tags: - save when: @@ -246336,7 +247074,7 @@ Helheim: installDir: Helheim: {} launch: - /Helheim/Helheim.exe: + "/Helheim/Helheim.exe": - when: - bit: 64 os: windows @@ -246363,20 +247101,20 @@ Helheim Hassle: installDir: Helheim Hassle: {} launch: - /Helheim Hassle.app/Contents/MacOS/Helheim Hassle: + "/Helheim Hassle.app/Contents/MacOS/Helheim Hassle": - when: - os: mac store: steam - /Helheim Hassle.exe: + "/Helheim Hassle.exe": - when: - os: windows store: steam - /Helheim Hassle.x86: + "/Helheim Hassle.x86": - when: - bit: 32 os: linux store: steam - /Helheim Hassle.x86_64: + "/Helheim Hassle.x86_64": - when: - bit: 64 os: linux @@ -246392,7 +247130,7 @@ Heli Commando 2017: installDir: HELI-COMMANDO2017: {} launch: - /HELI-COMMANDO2017/Heli-Commando2017.exe: + "/HELI-COMMANDO2017/Heli-Commando2017.exe": - when: - os: windows store: steam @@ -246402,26 +247140,26 @@ Heli Heroes: installDir: Heli Heroes: {} launch: - /HeliHeroes.exe: + "/HeliHeroes.exe": - when: - os: windows store: steam - /RunGame: + "/RunGame": - when: - bit: 64 os: linux store: steam - /RunSetup: + "/RunSetup": - when: - bit: 64 os: linux store: steam - /RunWinecfg: + "/RunWinecfg": - when: - bit: 64 os: linux store: steam - /Setup.exe: + "/Setup.exe": - when: - os: windows store: steam @@ -246431,19 +247169,19 @@ Heliborne: installDir: Heliborne: {} launch: - /heliborne-launcher: + "/heliborne-launcher": - when: - os: linux store: steam - /heliborne-launcher.app: + "/heliborne-launcher.app": - when: - os: mac store: steam - /heliborne-launcher.exe: + "/heliborne-launcher.exe": - when: - os: windows store: steam - /heliborne.exe: + "/heliborne.exe": - when: - bit: 32 os: windows @@ -246454,28 +247192,28 @@ Heliborne: - config steam: id: 433530 -'Helicopter 2015: Natural Disasters': +"Helicopter 2015: Natural Disasters": steam: id: 350540 Helicopter Flight Simulator: installDir: Helicopter Flight Simulator: {} launch: - /Helicopter Flight Simulator.app/Contents/MacOS/Helicopter Flight Simulator: + "/Helicopter Flight Simulator.app/Contents/MacOS/Helicopter Flight Simulator": - when: - os: mac store: steam - /Helicopter Flight Simulator.exe: + "/Helicopter Flight Simulator.exe": - when: - os: windows store: steam steam: id: 850950 -'Helicopter Simulator 2014: Search and Rescue': +"Helicopter Simulator 2014: Search and Rescue": installDir: Helicopter Simulator 2014 - SAR: {} launch: - /HSSAR.exe: + "/HSSAR.exe": - when: - os: windows store: steam @@ -246485,7 +247223,7 @@ Helidefence: installDir: Helidefence: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -246495,20 +247233,20 @@ Heliophobia: installDir: Heliophobia: {} launch: - /Heliophobia.app: + "/Heliophobia.app": - when: - os: mac store: steam - /Heliophobia.exe: + "/Heliophobia.exe": - when: - os: windows store: steam - /Heliophobia.x86: + "/Heliophobia.x86": - when: - bit: 32 os: linux store: steam - /Heliophobia.x86_64: + "/Heliophobia.x86_64": - when: - bit: 64 os: linux @@ -246524,8 +247262,8 @@ Helium: installDir: Helium: {} launch: - /Helium.exe: - - arguments: '-popupwindow' + "/Helium.exe": + - arguments: "-popupwindow" when: - os: windows store: steam @@ -246533,22 +247271,22 @@ Helium: id: 433900 Helium Rain: files: - /.config/Epic/HeliumRain/Saved/Config/LinuxNoEditor: + "/.config/Epic/HeliumRain/Saved/Config/LinuxNoEditor": tags: - config when: - os: linux - /.config/Epic/HeliumRain/Saved/SaveGames: + "/.config/Epic/HeliumRain/Saved/SaveGames": tags: - save when: - os: linux - /HeliumRain/Saved/Config/WindowsNoEditor: + "/HeliumRain/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /HeliumRain/Saved/SaveGames: + "/HeliumRain/Saved/SaveGames": tags: - save when: @@ -246558,12 +247296,12 @@ Helium Rain: installDir: HeliumRain: {} launch: - /HeliumRain.sh: + "/HeliumRain.sh": - when: - bit: 64 os: linux store: steam - /HeliumRainLauncher.exe: + "/HeliumRainLauncher.exe": - when: - bit: 64 os: windows @@ -246585,7 +247323,7 @@ Hell: installDir: Hell: {} launch: - /autorun.exe: + "/autorun.exe": - when: - os: windows store: steam @@ -246593,7 +247331,7 @@ Hell: id: 312420 Hell Architect: files: - /AppData/LocalLow/Woodland Games/HellArchitect: + "/AppData/LocalLow/Woodland Games/HellArchitect": tags: - config - save @@ -246604,11 +247342,11 @@ Hell Architect: installDir: Hell Architect: {} launch: - /HellArchitect.app: + "/HellArchitect.app": - when: - os: mac store: steam - /HellArchitect.exe: + "/HellArchitect.exe": - when: - os: windows store: steam @@ -246625,24 +247363,24 @@ Hell Division: installDir: Hell Division: {} launch: - /HellDivision.exe: + "/HellDivision.exe": - when: - bit: 64 os: windows store: steam steam: id: 2004360 -'Hell Empire: Sinners Flow': +"Hell Empire: Sinners Flow": steam: id: 1037980 Hell Girls: files: - /AppData/LocalLow/DefaultCompany/HGame/Save: + "/AppData/LocalLow/DefaultCompany/HGame/Save": tags: - save when: - os: windows - /AppData/LocalLow/DefaultCompany/HGame/Setting: + "/AppData/LocalLow/DefaultCompany/HGame/Setting": tags: - config when: @@ -246650,11 +247388,11 @@ Hell Girls: installDir: Hell Girls: {} launch: - /game.app: + "/game.app": - when: - os: mac store: steam - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -246664,7 +247402,7 @@ Hell Hole: installDir: Hell Hole: {} launch: - /HellHole.exe: + "/HellHole.exe": - when: - os: windows store: steam @@ -246674,7 +247412,7 @@ Hell Hunt: installDir: Dread Templar: {} launch: - /DreadTemplar.exe: + "/DreadTemplar.exe": - when: - store: steam steam: @@ -246683,7 +247421,7 @@ Hell Knights: installDir: Hell Knights: {} launch: - /HellKnights.exe: + "/HellKnights.exe": - when: - bit: 64 os: windows @@ -246692,7 +247430,7 @@ Hell Knights: id: 891110 Hell Let Loose: files: - /HLL/Saved/Config/WindowsNoEditor: + "/HLL/Saved/Config/WindowsNoEditor": tags: - config when: @@ -246700,7 +247438,7 @@ Hell Let Loose: installDir: Hell Let Loose: {} launch: - /Launch_HLL.exe: + "/Launch_HLL.exe": - when: - bit: 64 os: windows @@ -246709,12 +247447,12 @@ Hell Let Loose: id: 686810 Hell Pie: files: - /HellPie/Saved/Config: + "/HellPie/Saved/Config": tags: - config when: - os: windows - /HellPie/Saved/SavedGames: + "/HellPie/Saved/SavedGames": tags: - save when: @@ -246735,7 +247473,7 @@ Hell Shooter: installDir: Hell Shooter: {} launch: - /HellShooter.exe: + "/HellShooter.exe": - when: - os: windows store: steam @@ -246745,7 +247483,7 @@ Hell Space: installDir: Hell Space: {} launch: - /HellSpace.exe: + "/HellSpace.exe": - when: - os: windows store: steam @@ -246758,7 +247496,7 @@ Hell Warders: installDir: Hell Warders: {} launch: - /HellWarders.exe: + "/HellWarders.exe": - when: - bit: 64 os: windows @@ -246769,7 +247507,7 @@ Hell Wedding 夜嫁: installDir: Hell Wedding: {} launch: - /HellWedding.exe: + "/HellWedding.exe": - when: - os: windows store: steam @@ -246777,12 +247515,12 @@ Hell Wedding 夜嫁: id: 934580 Hell Yeah! Wrath of the Dead Rabbit: files: - /userdata//205230/remote/saves: + "/userdata//205230/remote/saves": tags: - save when: - store: steam - /SavedGames/HELLYEAH: + "/SavedGames/HELLYEAH": tags: - config when: @@ -246790,7 +247528,7 @@ Hell Yeah! Wrath of the Dead Rabbit: installDir: Hell Yeah: {} launch: - /HELLYEAH.exe: + "/HELLYEAH.exe": - when: - os: windows store: steam @@ -246806,12 +247544,12 @@ Hell is Other Demons: - save when: - os: mac - /Saves/Options: + "/Saves/Options": tags: - config when: - os: windows - /Saves/Save*: + "/Saves/Save*": tags: - save when: @@ -246819,15 +247557,15 @@ Hell is Other Demons: installDir: Hell is other demons: {} launch: - /demons.app/Contents/MacOS/Hell is Other Demons: + "/demons.app/Contents/MacOS/Hell is Other Demons": - when: - os: mac store: steam - /demons.exe: + "/demons.exe": - when: - os: windows store: steam - /demons.x86: + "/demons.x86": - when: - os: linux store: steam @@ -246841,34 +247579,34 @@ Hell is Others: installDir: Hell is Others: {} launch: - /HellIsOthers_launcher.exe: + "/HellIsOthers_launcher.exe": - when: - bit: 64 os: windows store: steam steam: id: 964440 -'Hell of Men : Blood Brothers': +"Hell of Men : Blood Brothers": installDir: Hell of Men Blood Brothers: {} launch: - /HoMBB.exe: + "/HoMBB.exe": - when: - os: windows store: steam steam: id: 1123500 -Hell's Little Story: +"Hell's Little Story": steam: id: 586530 -Hell's Little Story 2: +"Hell's Little Story 2": steam: id: 928620 -Hell's Pharma: +"Hell's Pharma": installDir: - Hell's Pharma: {} + "Hell's Pharma": {} launch: - /Hell's Pharma.exe: + "/Hell's Pharma.exe": - when: - os: windows store: steam @@ -246881,12 +247619,12 @@ HellCat: installDir: HellCat: {} launch: - /HellCat: + "/HellCat": - when: - bit: 64 os: linux store: steam - /HellCat.exe: + "/HellCat.exe": - when: - os: windows store: steam @@ -246896,7 +247634,7 @@ HellCrunch: installDir: HellCrunch: {} launch: - /HellCrunch.exe: + "/HellCrunch.exe": - when: - os: windows store: steam @@ -246909,25 +247647,25 @@ HellMaze: installDir: HellMaze: {} launch: - /HellMaze.app/Contents/MacOS/HellMaze: + "/HellMaze.app/Contents/MacOS/HellMaze": - when: - os: mac store: steam - /HellMaze.exe: + "/HellMaze.exe": - when: - os: windows store: steam - /HellMaze.x86: + "/HellMaze.x86": - when: - os: linux store: steam steam: id: 882260 -'HellScape: Two Brothers': +"HellScape: Two Brothers": installDir: HellScape Two Brothers: {} launch: - /HellScape - TwoBrothers.exe: + "/HellScape - TwoBrothers.exe": - when: - os: windows store: steam @@ -246937,7 +247675,7 @@ HellSign: installDir: HellSign: {} launch: - /HellSign.exe: + "/HellSign.exe": - when: - os: windows store: steam @@ -246947,7 +247685,7 @@ HellStar Squadron: installDir: HellStar Squadron: {} launch: - /HellStarSquadron.exe: + "/HellStarSquadron.exe": - when: - os: windows store: steam @@ -246957,7 +247695,7 @@ Hellbanger: installDir: Hellbanger: {} launch: - /Hellbanger.exe: + "/Hellbanger.exe": - when: - os: windows store: steam @@ -246965,35 +247703,35 @@ Hellbanger: id: 944720 Hellbender: files: - /data/*.hel: + "/data/*.hel": tags: - save when: - os: windows - /system/HELLBEND.INI: + "/system/HELLBEND.INI": tags: - config when: - os: windows -'Hellblade: Senua''s Sacrifice': +"Hellblade: Senua's Sacrifice": files: - /HellbladeGame/Saved/Config/WindowsNoEditor: + "/HellbladeGame/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /HellbladeGame/Saved/SaveGames: + "/HellbladeGame/Saved/SaveGames": tags: - save when: - os: windows - /Packages/NinjaTheoryLtd.HellbladeSenuasSacrifice_nkbnxvch6z38g/LocalState/HellbladeGame/Saved/Config/UWP: + "/Packages/NinjaTheoryLtd.HellbladeSenuasSacrifice_nkbnxvch6z38g/LocalState/HellbladeGame/Saved/Config/UWP": tags: - config when: - os: windows store: microsoft - /Packages/NinjaTheoryLtd.HellbladeSenuasSacrifice_nkbnxvch6z38g/SystemAppData/wgs: + "/Packages/NinjaTheoryLtd.HellbladeSenuasSacrifice_nkbnxvch6z38g/SystemAppData/wgs": tags: - save when: @@ -247004,24 +247742,24 @@ Hellbender: installDir: Hellblade: {} launch: - /HellbladeGame.exe: + "/HellbladeGame.exe": - when: - os: windows store: steam - /HellbladeGame/Binaries/Win64/HellbladeGame-Win64-Shipping.exe: + "/HellbladeGame/Binaries/Win64/HellbladeGame-Win64-Shipping.exe": - when: - os: windows store: steam steam: id: 414340 -'Hellblade: Senua''s Sacrifice VR Edition': +"Hellblade: Senua's Sacrifice VR Edition": files: - /HellbladeGame/Saved/Config_VR/WindowsNoEditor: + "/HellbladeGame/Saved/Config_VR/WindowsNoEditor": tags: - config when: - os: windows - /HellbladeGame/Saved/SaveGames_VR: + "/HellbladeGame/Saved/SaveGames_VR": tags: - save when: @@ -247029,17 +247767,17 @@ Hellbender: gog: id: 1923443149 installDir: - Hellblade Senua's Sacrifice - VR: {} + "Hellblade Senua's Sacrifice - VR": {} steam: id: 747350 Hellbound: files: - /Hellbound/Saved/Config/WindowsNoEditor: + "/Hellbound/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /Hellbound/Saved/SaveGames: + "/Hellbound/Saved/SaveGames": tags: - save when: @@ -247050,45 +247788,45 @@ Hellbound: installDir: Hellbound: {} launch: - /Hellbound.exe: - - arguments: '-language=en' + "/Hellbound.exe": + - arguments: "-language=en" when: - os: windows store: steam steam: id: 753590 -'Hellbound: Survival Mode': +"Hellbound: Survival Mode": installDir: Hellbound Survival Mode: {} steam: id: 802200 -'Hellboy: Web of Wyrd': +"Hellboy: Web of Wyrd": steam: id: 2160480 Hellbreaker: installDir: Hellbreaker: {} launch: - /Editor/LevelEditor.exe: + "/Editor/LevelEditor.exe": - when: - os: windows store: steam - workingDir: /Editor - /Game/Hellbreaker.exe: + workingDir: "/Editor" + "/Game/Hellbreaker.exe": - when: - os: windows store: steam - workingDir: /Game + workingDir: "/Game" steam: id: 793620 Helldivers: files: - /Arrowhead/Helldivers: + "/Arrowhead/Helldivers": tags: - config when: - os: windows - /Arrowhead/Helldivers/saves: + "/Arrowhead/Helldivers/saves": tags: - save when: @@ -247096,14 +247834,14 @@ Helldivers: installDir: Helldivers: {} launch: - /binaries/x64/helldivers.exe: - - arguments: '-bundle-dir contents -ini settings' + "/binaries/x64/helldivers.exe": + - arguments: "-bundle-dir contents -ini settings" when: - bit: 64 os: windows store: steam - /binaries/x86/helldivers.exe: - - arguments: '-bundle-dir contents -ini settings' + "/binaries/x86/helldivers.exe": + - arguments: "-bundle-dir contents -ini settings" when: - bit: 32 os: windows @@ -247115,12 +247853,12 @@ Helldivers 2: id: 553850 Helldorado: files: - /data/configuration/game: + "/data/configuration/game": tags: - config when: - os: windows - /Helldorado/Savegame: + "/Helldorado/Savegame": tags: - save when: @@ -247130,7 +247868,7 @@ Helldorado: installDir: Helldorado: {} launch: - /Helldorado.exe: + "/Helldorado.exe": - when: - store: steam steam: @@ -247139,11 +247877,11 @@ Hellenica: installDir: Hellenica: {} launch: - /Hellenica.app: + "/Hellenica.app": - when: - os: mac store: steam - /Hellenica.exe: + "/Hellenica.exe": - when: - os: windows store: steam @@ -247153,15 +247891,15 @@ Hellfire: installDir: Hellfire: {} launch: - /Hellfire.app: + "/Hellfire.app": - when: - os: mac store: steam - /Hellfire.exe: + "/Hellfire.exe": - when: - os: windows store: steam - /Hellfire.x64: + "/Hellfire.x64": - when: - os: linux store: steam @@ -247175,33 +247913,33 @@ Hellfo: id: 1164800 Hellforces: files: - /SAVES: + "/SAVES": tags: - save when: - os: windows - /SAVES/config.cfg: + "/SAVES/config.cfg": tags: - config when: - os: windows -'Hellfront: Honeymoon': +"Hellfront: Honeymoon": installDir: HELLFRONT HONEYMOON: {} launch: - /HELLFRONT.exe: + "/HELLFRONT.exe": - when: - store: steam steam: id: 824460 -'Hellgate: London': +"Hellgate: London": files: - /My Games/Hellgate/Save: + "/My Games/Hellgate/Save": tags: - save when: - os: windows - /My Games/Hellgate/Settings: + "/My Games/Hellgate/Settings": tags: - config when: @@ -247209,7 +247947,7 @@ Hellforces: installDir: HELLGATE_London: {} launch: - /Hellgate.exe: + "/Hellgate.exe": - when: - os: windows store: steam @@ -247219,20 +247957,20 @@ Hellink: installDir: Hellink: {} launch: - /Hellink.app: + "/Hellink.app": - when: - os: mac store: steam - /Hellink.exe: + "/Hellink.exe": - when: - os: windows store: steam - /Hellink.x86: + "/Hellink.x86": - when: - bit: 32 os: linux store: steam - /Hellink.x86_64: + "/Hellink.x86_64": - when: - bit: 64 os: linux @@ -247241,12 +247979,12 @@ Hellink: id: 1020520 Hellion: files: - /HELLION_Data/HELLION_SP: + "/HELLION_Data/HELLION_SP": tags: - save when: - os: windows - /AppData/LocalLow/ZeroGravity/HELLION/Settings.json: + "/AppData/LocalLow/ZeroGravity/HELLION/Settings.json": tags: - config when: @@ -247254,7 +247992,7 @@ Hellion: installDir: HELLION: {} launch: - /Hellion.exe: + "/Hellion.exe": - when: - os: windows store: steam @@ -247270,50 +248008,50 @@ Hellish Quart: installDir: Hellish Quart: {} launch: - /Hellish Quart.exe: + "/Hellish Quart.exe": - when: - bit: 64 os: windows store: steam steam: id: 1000360 -'Hellmut: The Badass from Hell': +"Hellmut: The Badass from Hell": gog: id: 1991525900 installDir: Hellmut: {} launch: - /hellmut.exe: + "/hellmut.exe": - when: - bit: 64 os: windows store: steam steam: id: 705620 -'Hello Charlotte: Childhood''s End': +"Hello Charlotte: Childhood's End": installDir: HC3: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: id: 760890 -'Hello Charlotte: Requiem Aeternam Deo': +"Hello Charlotte: Requiem Aeternam Deo": installDir: Hello Charlotte: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam steam: id: 557630 -'Hello Emoji: Drawing to Solve Puzzles': +"Hello Emoji: Drawing to Solve Puzzles": installDir: Hello Emoji Drawing to Solve Puzzles: {} launch: - /HelloEmoji.exe: + "/HelloEmoji.exe": - when: - bit: 64 os: windows @@ -247322,7 +248060,7 @@ Hellish Quart: id: 1009030 Hello From Indiana: files: - /HellofromIndiana: + "/HellofromIndiana": tags: - save when: @@ -247333,7 +248071,7 @@ Hello Kitty and Sanrio Friends Racing: installDir: Hello Kitty and Sanrio Friends Racing: {} launch: - /Hello Kitty And Sanrio Friends Racing.exe: + "/Hello Kitty And Sanrio Friends Racing.exe": - when: - os: windows store: steam @@ -247343,7 +248081,7 @@ Hello Lady!: installDir: hello_lady: {} launch: - /hello.exe: + "/hello.exe": - when: - store: steam steam: @@ -247352,29 +248090,29 @@ Hello Lady! -New Division-: installDir: hello_lady_nd: {} launch: - /hello_nd.exe: + "/hello_nd.exe": - when: - store: steam steam: id: 1025070 Hello Neighbor: files: - /HelloNeighbor/Config: + "/HelloNeighbor/Config": tags: - config when: - os: windows - /HelloNeighbor/Saved/Config/WindowsNoEditor: + "/HelloNeighbor/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /HelloNeighbor/Saved/SaveGames: + "/HelloNeighbor/Saved/SaveGames": tags: - save when: - os: windows - /Packages/tinyBuildGames.770145A14A21_3sz1pp2ynv2xe/LocalState/HelloNeighbor/Saved/Config/UWP: + "/Packages/tinyBuildGames.770145A14A21_3sz1pp2ynv2xe/LocalState/HelloNeighbor/Saved/Config/UWP": tags: - config when: @@ -247385,7 +248123,7 @@ Hello Neighbor: installDir: Hello Neighbor: {} launch: - /HelloNeighbor.exe: + "/HelloNeighbor.exe": - when: - os: windows store: steam @@ -247393,12 +248131,12 @@ Hello Neighbor: id: 521890 Hello Neighbor 2: files: - /HelloNeighbor2/Saved/Config/WindowsNoEditor: + "/HelloNeighbor2/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /HelloNeighbor2/Saved/SaveGames: + "/HelloNeighbor2/Saved/SaveGames": tags: - save when: @@ -247406,7 +248144,7 @@ Hello Neighbor 2: installDir: Hello Neighbor 2 Beta: {} launch: - /HelloNeighbor2.exe: + "/HelloNeighbor2.exe": - when: - os: windows store: steam @@ -247416,7 +248154,7 @@ Hello Neighbor Alpha 1: installDir: Hello Neighbor Alpha 1: {} launch: - /HelloNeighborReborn.exe: + "/HelloNeighborReborn.exe": - when: - os: windows store: steam @@ -247426,7 +248164,7 @@ Hello Neighbor Alpha 2: installDir: Hello Neighbor Alpha 2: {} launch: - /HelloNeighborReborn.exe: + "/HelloNeighborReborn.exe": - when: - os: windows store: steam @@ -247436,7 +248174,7 @@ Hello Neighbor Alpha 3: installDir: Hello Neighbor Alpha 3: {} launch: - /HelloNeighborReborn.exe: + "/HelloNeighborReborn.exe": - when: - os: windows store: steam @@ -247446,7 +248184,7 @@ Hello Neighbor Alpha 4: installDir: Hello Neighbor Alpha 4: {} launch: - /HelloNeighborReborn.exe: + "/HelloNeighborReborn.exe": - when: - os: windows store: steam @@ -247456,20 +248194,20 @@ Hello Neighbor Pre-Alpha: installDir: Hello Neighbor Pre-Alpha: {} launch: - /HelloNeighbour.exe: + "/HelloNeighbour.exe": - when: - os: windows store: steam steam: id: 1092700 -'Hello Neighbor: Hide and Seek': +"Hello Neighbor: Hide and Seek": files: - /HelloNeighbor/Saved/Config: + "/HelloNeighbor/Saved/Config": tags: - config when: - os: windows - /HelloNeighbor/Saved/SaveGames: + "/HelloNeighbor/Saved/SaveGames": tags: - save when: @@ -247477,7 +248215,7 @@ Hello Neighbor Pre-Alpha: installDir: Hello Neighbor Hide and Seek: {} launch: - /HideAndSeek.exe: + "/HideAndSeek.exe": - when: - os: windows store: steam @@ -247487,8 +248225,11 @@ Hello Pollution!: installDir: Hello Pollution!: {} launch: - /hp.exe: + "/hp.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam @@ -247499,20 +248240,20 @@ Hello inc VR: Hello inc VR: {} steam: id: 616050 -'Hello, Goodbye': +"Hello, Goodbye": installDir: Hellogoodbye: {} launch: - /HGB.exe: + "/HGB.exe": - when: - store: steam steam: id: 1009460 -'Hello, World.': +"Hello, World.": installDir: Hello World: {} launch: - '/Hello, World.exe': + "/Hello, World.exe": - when: - os: windows store: steam @@ -247523,22 +248264,22 @@ Hellphobia: id: 575000 Hellpoint: files: - /AppData/LocalLow/Cradle Games/Hellpoint: + "/AppData/LocalLow/Cradle Games/Hellpoint": tags: - save when: - os: windows - /AppData/LocalLow/Cradle Games/Hellpoint/hellpoint.cfg: + "/AppData/LocalLow/Cradle Games/Hellpoint/hellpoint.cfg": tags: - config when: - os: windows - /unity3d/Cradle Games/Hellpoint: + "/unity3d/Cradle Games/Hellpoint": tags: - save when: - os: linux - /unity3d/Cradle Games/Hellpoint/hellpoint.cfg: + "/unity3d/Cradle Games/Hellpoint/hellpoint.cfg": tags: - config when: @@ -247548,15 +248289,15 @@ Hellpoint: installDir: Hellpoint: {} launch: - /Hellpoint.app: + "/Hellpoint.app": - when: - os: mac store: steam - /Hellpoint.exe: + "/Hellpoint.exe": - when: - os: windows store: steam - /Hellpoint.x86_64: + "/Hellpoint.x86_64": - when: - os: linux store: steam @@ -247569,7 +248310,7 @@ Hellsinker.: installDir: Hellsinker: {} launch: - /hs_dx9build.exe: + "/hs_dx9build.exe": - when: - store: steam steam: @@ -247580,7 +248321,7 @@ Hellslave: installDir: Hellslave: {} launch: - /HellSlave.exe: + "/HellSlave.exe": - when: - os: windows store: steam @@ -247589,7 +248330,7 @@ Hellslave: Hellslinger: steam: id: 2140540 -'Hellsplit: Arena': +"Hellsplit: Arena": installDir: Hellsplit Arena: {} steam: @@ -247598,15 +248339,15 @@ Helltaker: installDir: Helltaker: {} launch: - /Helltaker.exe: + "/Helltaker.exe": - when: - os: windows store: steam - /helltaker_lnx.x86_64: + "/helltaker_lnx.x86_64": - when: - os: linux store: steam - /helltaker_osx.app/Contents/MacOS/Helltaker: + "/helltaker_osx.app/Contents/MacOS/Helltaker": - when: - os: mac store: steam @@ -247621,14 +248362,14 @@ Helltower: installDir: Helltower: {} launch: - /Helltower.exe: + "/Helltower.exe": - when: - store: steam steam: id: 1046070 Helltown: files: - /Local/HellTown/Saved/SaveGames: + "/Local/HellTown/Saved/SaveGames": tags: - save when: @@ -247636,7 +248377,7 @@ Helltown: installDir: Helltown: {} launch: - /HellTown.exe: + "/HellTown.exe": - when: - os: windows store: steam @@ -247649,11 +248390,11 @@ Helm Realm: installDir: Helm Realm: {} launch: - /build/Helm Realm.exe: + "/build/Helm Realm.exe": - when: - os: windows store: steam - /linux_build/LinuxBuild.x86_64: + "/linux_build/LinuxBuild.x86_64": - when: - os: linux store: steam @@ -247663,11 +248404,11 @@ Helmet Heroes: installDir: Helmet Heroes: {} launch: - /Helmet Heroes.exe: + "/Helmet Heroes.exe": - when: - os: windows store: steam - /HelmetHeroes.app/Contents/MacOS/Helmet Heroes: + "/HelmetHeroes.app/Contents/MacOS/Helmet Heroes": - when: - os: mac store: steam @@ -247677,7 +248418,7 @@ Help: installDir: Help: {} launch: - /Help.exe: + "/Help.exe": - when: - store: steam steam: @@ -247686,7 +248427,7 @@ Help - The Game: installDir: War Child Hub: {} launch: - /WarChildHub.exe: + "/WarChildHub.exe": - when: - os: windows store: steam @@ -247696,30 +248437,30 @@ Help Me Doctor: installDir: Help Me Doctor: {} launch: - /HMD.exe: + "/HMD.exe": - when: - bit: 64 os: windows store: steam - /HMD.x86: + "/HMD.x86": - when: - os: linux store: steam - /HMDMacBuild.app: + "/HMDMacBuild.app": - when: - os: mac store: steam steam: id: 538560 -Help Me Escape! The Puzzle Maker's Office: +"Help Me Escape! The Puzzle Maker's Office": installDir: Help Me Escape: {} launch: - /HelpMeEscape.app: + "/HelpMeEscape.app": - when: - os: mac store: steam - /HelpMeEscape.exe: + "/HelpMeEscape.exe": - when: - os: windows store: steam @@ -247729,7 +248470,7 @@ Help The Minotaur: installDir: Help The Minotaur: {} launch: - /HelpTheMinotaur.exe: + "/HelpTheMinotaur.exe": - when: - bit: 64 os: windows @@ -247741,17 +248482,17 @@ Help Wanted - a game by Jack SIlver: id: 1035240 Help Will Come Tomorrow: files: - /.config/unity3d/Arclight Creations/Help Will Come Tomorrow/Data: + "/.config/unity3d/Arclight Creations/Help Will Come Tomorrow/Data": tags: - save when: - os: linux - /AppData/LocalLow/Arclight Creations/Help Will Come Tomorrow/Data: + "/AppData/LocalLow/Arclight Creations/Help Will Come Tomorrow/Data": tags: - save when: - os: windows - /AppData/LocalLow/Arclight Creations/Help Will Come Tomorrow/Data/config.json: + "/AppData/LocalLow/Arclight Creations/Help Will Come Tomorrow/Data/config.json": tags: - config when: @@ -247761,11 +248502,11 @@ Help Will Come Tomorrow: installDir: Help Will Come Tomorrow: {} launch: - /Help Will Come Tomorrow.exe: + "/Help Will Come Tomorrow.exe": - when: - os: windows store: steam - /Help Will Come Tomorrow.x86_64: + "/Help Will Come Tomorrow.x86_64": - when: - os: linux store: steam @@ -247775,7 +248516,7 @@ Help! I am REALLY horny!: installDir: Help! I am REALLY horny!: {} launch: - '/${Help! I am REALLY horny!}.exe': + "/${Help! I am REALLY horny!}.exe": - when: - os: windows store: steam @@ -247785,11 +248526,11 @@ HelpTheAlien: installDir: HelpTheAlien: {} launch: - /HelpTheAlien.exe: + "/HelpTheAlien.exe": - when: - os: windows store: steam - /alien.app: + "/alien.app": - when: - os: mac store: steam @@ -247799,11 +248540,11 @@ Helping Hand: installDir: Helping Hand: {} launch: - /Helping Hand.app: + "/Helping Hand.app": - when: - os: mac store: steam - /Helping Hand.exe: + "/Helping Hand.exe": - when: - os: windows store: steam @@ -247813,7 +248554,7 @@ Helpless Zombies: installDir: HELPLESS ZOMBIES: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -247823,12 +248564,12 @@ Helvetii: installDir: Helvetii: {} launch: - /Helvetii.exe: + "/Helvetii.exe": - when: - bit: 64 os: windows store: steam - /Helvetii.x86_64: + "/Helvetii.x86_64": - when: - bit: 64 os: linux @@ -247840,7 +248581,7 @@ HenTris: id: 880260 Henchman Story: files: - /game/saves: + "/game/saves": tags: - save when: @@ -247848,39 +248589,39 @@ Henchman Story: installDir: Henchman Story: {} launch: - /Henchman Story-32.exe: + "/Henchman Story-32.exe": - when: - bit: 32 os: windows store: steam - /Henchman Story.app/Contents/MacOS/Henchman Story: + "/Henchman Story.app/Contents/MacOS/Henchman Story": - when: - os: mac store: steam - /Henchman Story.exe: + "/Henchman Story.exe": - when: - os: windows store: steam - /Henchman Story.sh: + "/Henchman Story.sh": - when: - os: linux store: steam steam: id: 1449510 -Henri's Secret: +"Henri's Secret": installDir: - Henri's Secret: {} + "Henri's Secret": {} steam: id: 753270 Henry Mosse and the Wormhole Conspiracy: installDir: Henry Mosse and the Wormhole Conspiracy: {} launch: - /HMatWC.app/Contents/MacOS/HMatWC: + "/HMatWC.app/Contents/MacOS/HMatWC": - when: - os: mac store: steam - /HMatWC.exe: + "/HMatWC.exe": - when: - os: windows store: steam @@ -247895,7 +248636,7 @@ Henshinko!: installDir: Henshinko!: {} launch: - /Henshinko!.exe: + "/Henshinko!.exe": - when: - os: windows store: steam @@ -247911,7 +248652,7 @@ Hentai - Color by Number: installDir: Hentai - Color by Number: {} launch: - /Hentai - Color by Number.exe: + "/Hentai - Color by Number.exe": - when: - os: windows store: steam @@ -247921,7 +248662,7 @@ Hentai 2+2=4: installDir: Hentai 2+2=4: {} launch: - /Hentai Mathematics.exe: + "/Hentai Mathematics.exe": - when: - os: windows store: steam @@ -247934,16 +248675,16 @@ Hentai 3018: installDir: Hentai 3018: {} launch: - /Hentai.exe: + "/Hentai.exe": - when: - store: steam steam: id: 860910 -'Hentai : Shoot Them': +"Hentai : Shoot Them": installDir: Shoothem: {} launch: - /Shoothem.exe: + "/Shoothem.exe": - when: - store: steam steam: @@ -247952,7 +248693,7 @@ Hentai Aim Trainer: installDir: Hentai Aim Trainer: {} launch: - /Hentai Aim Trainer.exe: + "/Hentai Aim Trainer.exe": - when: - os: windows store: steam @@ -247962,26 +248703,26 @@ Hentai And Your Life: installDir: Anime And You Life: {} launch: - /Anime And Your Life.app: + "/Anime And Your Life.app": - when: - os: mac store: steam - /Anime And Your Life.exe: + "/Anime And Your Life.exe": - when: - os: windows store: steam - /Anime And Your Life.x86: + "/Anime And Your Life.x86": - when: - os: linux store: steam steam: id: 973240 -'Hentai Arcade: Lustful Girls': +"Hentai Arcade: Lustful Girls": steam: id: 967470 Hentai Asmodeus: files: - 'Steam/steamapps/common/Hentai Asmodeus/Hentai Asmodeus_Data/[random number]': + "Steam/steamapps/common/Hentai Asmodeus/Hentai Asmodeus_Data/[random number]": tags: - save when: @@ -247989,7 +248730,7 @@ Hentai Asmodeus: installDir: Hentai Asmodeus: {} launch: - /Hentai Asmodeus.exe: + "/Hentai Asmodeus.exe": - when: - store: steam steam: @@ -247998,7 +248739,7 @@ Hentai Babes - In Public: installDir: Hentai Babes - In Public: {} launch: - /Hentai Babes - In Public.exe: + "/Hentai Babes - In Public.exe": - when: - store: steam steam: @@ -248007,7 +248748,7 @@ Hentai Babes - Sport Lovers: installDir: Hentai Babes - Sport Lovers: {} launch: - /Hentai Babes - Sport Lovers.exe: + "/Hentai Babes - Sport Lovers.exe": - when: - os: windows store: steam @@ -248020,7 +248761,7 @@ Hentai Best Girls: installDir: Hentai Best Girls: {} launch: - /Hentai Best Girls.exe: + "/Hentai Best Girls.exe": - when: - store: steam steam: @@ -248029,7 +248770,7 @@ Hentai Breaker: installDir: Hentai Breaker: {} launch: - /BlockBreaker.exe: + "/BlockBreaker.exe": - when: - os: windows store: steam @@ -248039,7 +248780,7 @@ Hentai Case Opening: installDir: Hentai Case Opening: {} launch: - /Hentai Case Opening.exe: + "/Hentai Case Opening.exe": - when: - store: steam steam: @@ -248054,11 +248795,11 @@ Hentai ChessKnight: installDir: Hentai Chess Knight: {} launch: - /hck.app: + "/hck.app": - when: - os: mac store: steam - /hentaichessknight.exe: + "/hentaichessknight.exe": - when: - os: windows store: steam @@ -248068,7 +248809,7 @@ Hentai City: installDir: Hentai City Content: {} launch: - /Hentai City.exe: + "/Hentai City.exe": - when: - os: windows store: steam @@ -248081,7 +248822,7 @@ Hentai Cosplay Elf: installDir: Hentai Cosplay Elf: {} launch: - /Hentai Cosplay Elf.exe: + "/Hentai Cosplay Elf.exe": - when: - store: steam steam: @@ -248090,7 +248831,7 @@ Hentai Cosplay USSR: installDir: Hentai Cosplay USSR: {} launch: - /Hentai Cosplay USSR.exe: + "/Hentai Cosplay USSR.exe": - when: - store: steam steam: @@ -248099,7 +248840,7 @@ Hentai Crazy Girls: installDir: Hentai Crazy Girls: {} launch: - /Hentai Crazy Girls.exe: + "/Hentai Crazy Girls.exe": - when: - store: steam steam: @@ -248108,7 +248849,7 @@ Hentai Crush: installDir: Hentai Crush: {} launch: - /Hentai Crush.exe: + "/Hentai Crush.exe": - when: - os: windows store: steam @@ -248121,15 +248862,15 @@ Hentai Defense: installDir: Hentai Defense: {} launch: - /HentaiDefense.app/Contents/MacOS/HentaiDefense: + "/HentaiDefense.app/Contents/MacOS/HentaiDefense": - when: - os: mac store: steam - /HentaiDefense.exe: + "/HentaiDefense.exe": - when: - os: windows store: steam - /HentaiDefense.x86: + "/HentaiDefense.x86": - when: - os: linux store: steam @@ -248139,7 +248880,7 @@ Hentai Demon: installDir: Hentai Demon: {} launch: - /Hentai Demon.exe: + "/Hentai Demon.exe": - when: - os: windows store: steam @@ -248149,7 +248890,7 @@ Hentai Dojo: installDir: Hentai Dojo: {} launch: - /Hentai Dojo.exe: + "/Hentai Dojo.exe": - when: - store: steam steam: @@ -248158,21 +248899,21 @@ Hentai Dreams: installDir: Hentai Dreams: {} launch: - /Hentai Dreams.exe: + "/Hentai Dreams.exe": - when: - os: windows store: steam steam: id: 974320 -'Hentai Endless: NetWalk': +"Hentai Endless: NetWalk": installDir: Hentai NetWalk: {} launch: - /Hentai NetWalk.exe: + "/Hentai NetWalk.exe": - when: - os: windows store: steam - /hnw.app: + "/hnw.app": - when: - os: mac store: steam @@ -248185,7 +248926,7 @@ Hentai Eroshojo: installDir: Hentai Eroshojo: {} launch: - /Hentai Eroshojo.exe: + "/Hentai Eroshojo.exe": - when: - os: windows store: steam @@ -248195,7 +248936,7 @@ Hentai Exotica vol.2: installDir: Hentai exotica 2: {} launch: - /nw.exe: + "/nw.exe": - when: - store: steam steam: @@ -248204,7 +248945,7 @@ Hentai Fetish Tycoon: installDir: Hentai Fetish Tycoon: {} launch: - /Hentai Fetish Tycoon.exe: + "/Hentai Fetish Tycoon.exe": - when: - os: windows store: steam @@ -248214,7 +248955,7 @@ Hentai Fight Club: installDir: Hentai Fight Club: {} launch: - /HentaiFightClub.exe: + "/HentaiFightClub.exe": - when: - os: windows store: steam @@ -248224,14 +248965,14 @@ Hentai Forest: installDir: Hentai Forest: {} launch: - /Hentai Forest.exe: + "/Hentai Forest.exe": - when: - store: steam steam: id: 946550 Hentai Girl: files: - /HentaiGirl_Data/Save: + "/HentaiGirl_Data/Save": tags: - save when: @@ -248239,11 +248980,11 @@ Hentai Girl: installDir: HentaiGirl: {} launch: - /HentaiGirl.app: + "/HentaiGirl.app": - when: - os: mac store: steam - /HentaiGirl.exe: + "/HentaiGirl.exe": - when: - os: windows store: steam @@ -248253,11 +248994,11 @@ Hentai Girl Betty: installDir: HentaiGirlHime: {} launch: - /HentaiGirlHime.app: + "/HentaiGirlHime.app": - when: - os: mac store: steam - /HentaiGirlHime.exe: + "/HentaiGirlHime.exe": - when: - os: windows store: steam @@ -248267,7 +249008,7 @@ Hentai Girl Division: installDir: Hentai Girl Division: {} launch: - /Hentai Girl Division.exe: + "/Hentai Girl Division.exe": - when: - os: windows store: steam @@ -248275,7 +249016,7 @@ Hentai Girl Division: id: 1113680 Hentai Girl Fantasy: files: - /HentaiGirl_Data/Save: + "/HentaiGirl_Data/Save": tags: - save when: @@ -248283,11 +249024,11 @@ Hentai Girl Fantasy: installDir: HentaiGirlFantasy: {} launch: - /HentaiGirlFantasy.app: + "/HentaiGirlFantasy.app": - when: - os: mac store: steam - /HentaiGirlFantasy.exe: + "/HentaiGirlFantasy.exe": - when: - os: windows store: steam @@ -248295,7 +249036,7 @@ Hentai Girl Fantasy: id: 1146950 Hentai Girl Karen: files: - /HentaiGirlKaren_Data/Save: + "/HentaiGirlKaren_Data/Save": tags: - save when: @@ -248303,11 +249044,11 @@ Hentai Girl Karen: installDir: HentaiGirlKaren: {} launch: - /HentaiGirlKaren.app: + "/HentaiGirlKaren.app": - when: - os: mac store: steam - /HentaiGirlKaren.exe: + "/HentaiGirlKaren.exe": - when: - os: windows store: steam @@ -248315,7 +249056,7 @@ Hentai Girl Karen: id: 1004240 Hentai Girl Linda: files: - /HentaiGirlLinda_Data/Save: + "/HentaiGirlLinda_Data/Save": tags: - save when: @@ -248323,11 +249064,11 @@ Hentai Girl Linda: installDir: HentaiGirlLinda: {} launch: - /HentaiGirlLinda.app: + "/HentaiGirlLinda.app": - when: - os: mac store: steam - /HentaiGirlLinda.exe: + "/HentaiGirlLinda.exe": - when: - os: windows store: steam @@ -248337,11 +249078,11 @@ Hentai Girl Puzzle SCI-FI: installDir: HENTAI GIRL PUZZLE SCI-FI: {} launch: - /Hentai Girl Puzzle SCI-FI.app/Contents/MacOS/Hentai Girl Puzzle SCI-FI: + "/Hentai Girl Puzzle SCI-FI.app/Contents/MacOS/Hentai Girl Puzzle SCI-FI": - when: - os: mac store: steam - /Hentai Girl Puzzle SCI-FI.exe: + "/Hentai Girl Puzzle SCI-FI.exe": - when: - os: windows store: steam @@ -248351,7 +249092,7 @@ Hentai Girl Sets: installDir: Hentai Girl Sets: {} launch: - /Hentai Girl Sets.exe: + "/Hentai Girl Sets.exe": - when: - os: windows store: steam @@ -248361,8 +249102,8 @@ Hentai Girl Slide Puzzle: installDir: Hentai Girl Slide Puzzle: {} launch: - /Hentai Girl Slide Puzzle.exe: - - arguments: '--in-process-gpu' + "/Hentai Girl Slide Puzzle.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam @@ -248372,7 +249113,7 @@ Hentai Girl in Space: installDir: Hentai Girl in Space: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -248382,7 +249123,7 @@ Hentai Girlfriend Simulator: installDir: Hentai Girlfriend Simulator: {} launch: - /Hentai Girlfriend Simulator.exe: + "/Hentai Girlfriend Simulator.exe": - when: - store: steam steam: @@ -248397,7 +249138,7 @@ Hentai Halloween: installDir: Hentai Halloween: {} launch: - /Hentai Halloween.exe: + "/Hentai Halloween.exe": - when: - store: steam steam: @@ -248406,11 +249147,11 @@ Hentai Hexa Mosaic: installDir: Hentai Hexa Mosaic: {} launch: - /nw: + "/nw": - when: - os: linux store: steam - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -248420,7 +249161,7 @@ Hentai Honeys Jigsaw: installDir: Hentai Honeys Jigsaw: {} launch: - /HentaiHoneysJigsaw.exe: + "/HentaiHoneysJigsaw.exe": - when: - bit: 64 os: windows @@ -248431,7 +249172,7 @@ Hentai Honeys Slider: installDir: Hentai Honeys Slider: {} launch: - /HentaiHoneysSlider.exe: + "/HentaiHoneysSlider.exe": - when: - bit: 64 os: windows @@ -248445,7 +249186,7 @@ Hentai IQ Puzzle: installDir: Hentai IQ Puzzle: {} launch: - /Hentai IQ Puzzl.exe: + "/Hentai IQ Puzzl.exe": - when: - os: windows store: steam @@ -248458,15 +249199,15 @@ Hentai Jigsaw Puzzle: installDir: Hentai Jigsaw Puzzle: {} launch: - /Hentai Jigsaw Puzzle.app: + "/Hentai Jigsaw Puzzle.app": - when: - os: mac store: steam - /Hentai Jigsaw Puzzle.exe: + "/Hentai Jigsaw Puzzle.exe": - when: - os: windows store: steam - /Hentai Jigsaw Puzzle.x86: + "/Hentai Jigsaw Puzzle.x86": - when: - os: linux store: steam @@ -248476,15 +249217,15 @@ Hentai Jigsaw Puzzle 2: installDir: Hentai Jigsaw Puzzle 2: {} launch: - /Hentai Jigsaw Puzzle 2.app: + "/Hentai Jigsaw Puzzle 2.app": - when: - os: mac store: steam - /Hentai Jigsaw Puzzle 2.exe: + "/Hentai Jigsaw Puzzle 2.exe": - when: - os: windows store: steam - /Hentai Jigsaw Puzzle 2.x86_64: + "/Hentai Jigsaw Puzzle 2.x86_64": - when: - os: linux store: steam @@ -248494,7 +249235,7 @@ Hentai Killer: installDir: Hentai Killer: {} launch: - /Hentai Killer.exe: + "/Hentai Killer.exe": - when: - store: steam steam: @@ -248503,7 +249244,7 @@ Hentai Lady: installDir: Hentai Lady: {} launch: - /Hentai Lady.exe: + "/Hentai Lady.exe": - when: - store: steam steam: @@ -248515,8 +249256,11 @@ Hentai Like a Boss: installDir: Hentai Like a Boss: {} launch: - /nw.exe: + "/nw.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam @@ -248526,7 +249270,7 @@ Hentai Like a Boss 2: installDir: Hentai Like a Boss 2: {} launch: - /Hentai Like a Boss 2.exe: + "/Hentai Like a Boss 2.exe": - when: - store: steam steam: @@ -248534,14 +249278,14 @@ Hentai Like a Boss 2: Hentai Loli vs Pedobear: steam: id: 967920 -Hentai Lover's Train: +"Hentai Lover's Train": steam: id: 1160910 Hentai Match Fantasy Stories: installDir: Hentai Match Fantasy Stories: {} launch: - /Hentai Match Fantasy Stories.exe: + "/Hentai Match Fantasy Stories.exe": - when: - store: steam steam: @@ -248550,11 +249294,11 @@ Hentai MatchUp: installDir: Hentai MatchUp: {} launch: - /Hentai MatchUp.exe: + "/Hentai MatchUp.exe": - when: - os: windows store: steam - /hmu.app: + "/hmu.app": - when: - os: mac store: steam @@ -248564,7 +249308,7 @@ Hentai Memorama: installDir: Hentai Memorama: {} launch: - /Hentai Memorama.exe: + "/Hentai Memorama.exe": - when: - os: windows store: steam @@ -248574,7 +249318,7 @@ Hentai Memory: installDir: Hentai Memory: {} launch: - /Hentai Memory.exe: + "/Hentai Memory.exe": - when: - os: windows store: steam @@ -248587,7 +249331,7 @@ Hentai Milf Quiz: installDir: Hentai Milf Quiz: {} launch: - /Hentai Milf Quiz.exe: + "/Hentai Milf Quiz.exe": - when: - store: steam steam: @@ -248596,7 +249340,7 @@ Hentai Mizugi: installDir: Hentai Mizugi: {} launch: - /Hentai Mizugi.exe: + "/Hentai Mizugi.exe": - when: - os: windows store: steam @@ -248604,7 +249348,7 @@ Hentai Mizugi: id: 1148940 Hentai Mosaique Fix-IT Shoppe: files: - /AppData/LocalLow/LilHentaiGames/Hentai Mosaique Fix IT Shoppe: + "/AppData/LocalLow/LilHentaiGames/Hentai Mosaique Fix IT Shoppe": tags: - save when: @@ -248612,11 +249356,11 @@ Hentai Mosaique Fix-IT Shoppe: installDir: Hentai Mosaique Fix-IT Shoppe: {} launch: - /Hentai Mosaique Fix IT Shoppe.exe: + "/Hentai Mosaique Fix IT Shoppe.exe": - when: - os: windows store: steam - /Hentai Mosaique Fix IT Shoppe.x86_64: + "/Hentai Mosaique Fix IT Shoppe.x86_64": - when: - os: linux store: steam @@ -248626,11 +249370,11 @@ Hentai Mosaique Neko Waifus: installDir: Hentai Mosaique Neko Waifus: {} launch: - /Hentai Mosaique Neko Waifus.exe: + "/Hentai Mosaique Neko Waifus.exe": - when: - os: windows store: steam - /Hentai Mosaique Neko Waifus.x86_64: + "/Hentai Mosaique Neko Waifus.x86_64": - when: - os: linux store: steam @@ -248640,11 +249384,11 @@ Hentai Mosaique Puzzle: installDir: Hentai Mosaique Puzzle: {} launch: - /Hentai Mosaique Puzzle.exe: + "/Hentai Mosaique Puzzle.exe": - when: - os: windows store: steam - /Hentai Mosaique Puzzle.x86_64: + "/Hentai Mosaique Puzzle.x86_64": - when: - os: linux store: steam @@ -248654,11 +249398,11 @@ Hentai Mosaique Vip Room: installDir: Hentai Mosaique Vip Room: {} launch: - /Hentai Mosaique Vip Room.exe: + "/Hentai Mosaique Vip Room.exe": - when: - os: windows store: steam - /Hentai Mosaique Vip Room.x86_64: + "/Hentai Mosaique Vip Room.x86_64": - when: - os: linux store: steam @@ -248671,7 +249415,7 @@ Hentai Neighbors: installDir: Hentai Neighbors: {} launch: - /Hentai Neighbors.exe: + "/Hentai Neighbors.exe": - when: - os: windows store: steam @@ -248681,11 +249425,11 @@ Hentai Nekogirl: installDir: Hentai Nekogirl: {} launch: - /Hentai Nekogirl.app: + "/Hentai Nekogirl.app": - when: - os: mac store: steam - /Hentai Nekogirl.exe: + "/Hentai Nekogirl.exe": - when: - os: windows store: steam @@ -248695,7 +249439,7 @@ Hentai Octoq Puzzle: installDir: Hentai Octoq Puzzle: {} launch: - /hentaiOctoqPuzzle.exe: + "/hentaiOctoqPuzzle.exe": - when: - os: windows store: steam @@ -248705,11 +249449,11 @@ Hentai Pansuto: installDir: Hentai Pansuto: {} launch: - /Hentai Pansuto.app: + "/Hentai Pansuto.app": - when: - os: mac store: steam - /Hentai Pansuto.exe: + "/Hentai Pansuto.exe": - when: - os: windows store: steam @@ -248719,11 +249463,11 @@ Hentai Pazu: installDir: Hentai Pazu: {} launch: - /Hentai Pazu.app: + "/Hentai Pazu.app": - when: - os: mac store: steam - /Hentai Pazu.exe: + "/Hentai Pazu.exe": - when: - os: windows store: steam @@ -248733,7 +249477,7 @@ Hentai Picross: installDir: Picross Love: {} launch: - /Picross Love.exe: + "/Picross Love.exe": - when: - os: windows store: steam @@ -248743,7 +249487,7 @@ Hentai Pix: installDir: Hentai Pix: {} launch: - /Hentai Pix.exe: + "/Hentai Pix.exe": - arguments: b when: - os: windows @@ -248754,7 +249498,7 @@ Hentai Plus Girl: installDir: Hentai Plus Girl: {} launch: - /Hentai Plus Girl.exe: + "/Hentai Plus Girl.exe": - when: - os: windows store: steam @@ -248764,7 +249508,7 @@ Hentai Pussy: installDir: Hentai Pussy: {} launch: - /PUSSY.exe: + "/PUSSY.exe": - when: - store: steam steam: @@ -248776,7 +249520,7 @@ Hentai Puzzle Classic: installDir: Hentai Puzzle Classic: {} launch: - /Hentai Puzzle Classic.exe: + "/Hentai Puzzle Classic.exe": - when: - os: windows store: steam @@ -248789,7 +249533,7 @@ Hentai Puzzle X: installDir: Hentai Puzzle X: {} launch: - /Hentai Puzzle X.exe: + "/Hentai Puzzle X.exe": - when: - os: windows store: steam @@ -248799,7 +249543,7 @@ Hentai Puzzles: installDir: Hentai PuZZles: {} launch: - /HentaiPuZZles.exe: + "/HentaiPuZZles.exe": - when: - bit: 64 os: windows @@ -248810,7 +249554,7 @@ Hentai Quilm: installDir: Hentai Quilm: {} launch: - /HentaiQuilm.exe: + "/HentaiQuilm.exe": - when: - store: steam steam: @@ -248819,11 +249563,11 @@ Hentai Sakyubus: installDir: Hentai Sakyubus: {} launch: - /Hentai Sakyubus.app: + "/Hentai Sakyubus.app": - when: - os: mac store: steam - /Hentai Sakyubus.exe: + "/Hentai Sakyubus.exe": - when: - os: windows store: steam @@ -248833,7 +249577,7 @@ Hentai Secrets: installDir: Hentai Secrets: {} launch: - /Hentai Secrets.exe: + "/Hentai Secrets.exe": - when: - os: windows store: steam @@ -248846,21 +249590,21 @@ Hentai Shiri: installDir: Hentai Shiri: {} launch: - /Hentai Shiri.app: + "/Hentai Shiri.app": - when: - os: mac store: steam - /Hentai Shiri.exe: + "/Hentai Shiri.exe": - when: - os: windows store: steam steam: id: 1166320 -'Hentai Shooter 2: World Tour': +"Hentai Shooter 2: World Tour": installDir: Hentai Shooter 2 World Tour: {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: @@ -248869,16 +249613,16 @@ Hentai Shooter 3D: installDir: Hentai Shooter 3D: {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: id: 914690 -'Hentai Shooter 3D: Christmas Party': +"Hentai Shooter 3D: Christmas Party": installDir: Hentai Shooter 3D Christmas Party: {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: @@ -248893,7 +249637,7 @@ Hentai Space: installDir: Hentai Space: {} launch: - /Hentai Space.exe: + "/Hentai Space.exe": - when: - store: steam steam: @@ -248914,7 +249658,7 @@ Hentai Strawberry: installDir: Hentai Strawberry: {} launch: - /Hentai Strawberry.exe: + "/Hentai Strawberry.exe": - when: - os: windows store: steam @@ -248927,15 +249671,15 @@ Hentai Strip Shot: installDir: Hentai Strip Shot: {} launch: - /Hentai Strip Shot.app: + "/Hentai Strip Shot.app": - when: - os: mac store: steam - /Hentai Strip Shot.exe: + "/Hentai Strip Shot.exe": - when: - os: windows store: steam - /Hentai Strip Shot.x86: + "/Hentai Strip Shot.x86": - when: - os: linux store: steam @@ -248945,11 +249689,11 @@ Hentai Sudoku: installDir: Hentai Sudoku: {} launch: - /Hentai Sudoku.exe: + "/Hentai Sudoku.exe": - when: - os: windows store: steam - /hsd.app: + "/hsd.app": - when: - os: mac store: steam @@ -248959,7 +249703,7 @@ Hentai Summer: installDir: Hentai Summer: {} launch: - /Hentai Summer.exe: + "/Hentai Summer.exe": - when: - os: windows store: steam @@ -248969,7 +249713,7 @@ Hentai Super Girl: installDir: HENTAI SUPER GIRL: {} launch: - /HENTAI SUPER GIRL.exe: + "/HENTAI SUPER GIRL.exe": - when: - store: steam steam: @@ -248978,7 +249722,7 @@ Hentai Survive Island: installDir: Hentai Survive Island: {} launch: - /Hentai Survive Island.exe: + "/Hentai Survive Island.exe": - when: - store: steam steam: @@ -248990,7 +249734,7 @@ Hentai Temple: installDir: Hentai Temple: {} launch: - /Hentai Temple.exe: + "/Hentai Temple.exe": - when: - store: steam steam: @@ -248999,11 +249743,11 @@ Hentai Tights: installDir: Hentai Tights: {} launch: - /Hentai Tights.app: + "/Hentai Tights.app": - when: - os: mac store: steam - /Hentai Tights.exe: + "/Hentai Tights.exe": - when: - os: windows store: steam @@ -249015,14 +249759,14 @@ Hentai Time: Hentai University: steam: id: 909000 -'Hentai University 2: Biology course': +"Hentai University 2: Biology course": steam: id: 981800 Hentai Vs Furries: installDir: Hentai Vs Furries: {} launch: - /HentaiVsFurries.exe: + "/HentaiVsFurries.exe": - when: - store: steam steam: @@ -249031,7 +249775,7 @@ Hentai Waifu: installDir: Hentai Waifu: {} launch: - /Hentai Waifu.exe: + "/Hentai Waifu.exe": - when: - os: windows store: steam @@ -249041,7 +249785,7 @@ Hentai Waifu II: installDir: Hentai Waifu II: {} launch: - /Hentai Waifu II.exe: + "/Hentai Waifu II.exe": - when: - store: steam steam: @@ -249050,8 +249794,11 @@ Hentai Waifu Vol.1: installDir: Hentai Waifu: {} launch: - /nw.exe: + "/nw.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam @@ -249061,7 +249808,7 @@ Hentai Weed PuZZles: installDir: Hentai Weed PuZZles: {} launch: - /HWP.exe: + "/HWP.exe": - when: - bit: 64 os: windows @@ -249075,15 +249822,15 @@ Hentai Words: installDir: Hentai Words: {} launch: - /HentaiWords.app/Contents/MacOS/HentaiWords: + "/HentaiWords.app/Contents/MacOS/HentaiWords": - when: - os: mac store: steam - /HentaiWords.exe: + "/HentaiWords.exe": - when: - os: windows store: steam - /HentaiWords.x86: + "/HentaiWords.x86": - when: - os: linux store: steam @@ -249102,7 +249849,7 @@ Hentai Zodiac Puzzle 2: installDir: Hentai Zodiac Puzzle 2: {} launch: - /HentaiZodiacPuzzle2.exe: + "/HentaiZodiacPuzzle2.exe": - when: - os: windows store: steam @@ -249112,7 +249859,7 @@ Hentai balls v3: installDir: Hentai balls v3: {} launch: - /Eroge Balls v3.exe: + "/Eroge Balls v3.exe": - when: - store: steam steam: @@ -249122,11 +249869,11 @@ Hentai beautiful girls: Hentai beautiful girls: {} steam: id: 1002030 -'Hentai energy: Halloween': +"Hentai energy: Halloween": installDir: Hentai energy Halloween: {} launch: - /heh.exe: + "/heh.exe": - when: - os: windows store: steam @@ -249136,7 +249883,7 @@ Hentai no Hero: installDir: Hentai no Hero: {} launch: - /HnH.exe: + "/HnH.exe": - when: - os: windows store: steam @@ -249145,25 +249892,25 @@ Hentai no Hero: Hentai tentacle bicycle race: steam: id: 952880 -'Hentai: Memory leak': +"Hentai: Memory leak": installDir: Hentai Memory leak: {} launch: - /hml.exe: + "/hml.exe": - when: - os: windows store: steam steam: id: 1158320 -'Hentai: The Shell Game': +"Hentai: The Shell Game": installDir: Hentai The Shell Game: {} launch: - /Hentai The Shell Game.app: + "/Hentai The Shell Game.app": - when: - os: mac store: steam - /Hentai The Shell Game.exe: + "/Hentai The Shell Game.exe": - when: - os: windows store: steam @@ -249173,20 +249920,20 @@ HentaiMineSweeper: installDir: HentaiMineSweeper: {} launch: - /Hentai MineSweeper.exe: + "/Hentai MineSweeper.exe": - when: - os: windows store: steam - /hms.app: + "/hms.app": - when: - os: mac store: steam - /hms.x86: + "/hms.x86": - when: - bit: 32 os: linux store: steam - /hms.x86_64: + "/hms.x86_64": - when: - bit: 64 os: linux @@ -249197,7 +249944,7 @@ HentaiNYA: installDir: HentaiNYA: {} launch: - /HentaiNYA.exe: + "/HentaiNYA.exe": - when: - store: steam steam: @@ -249206,19 +249953,19 @@ HentaiTeachers: installDir: HentaiTeachers: {} launch: - /HentaiTeachers.exe: + "/HentaiTeachers.exe": - when: - store: steam steam: id: 1197210 -'Hentami: Vendetta': +"Hentami: Vendetta": steam: id: 651310 Hentball: installDir: Hentball: {} launch: - /HentBall.exe: + "/HentBall.exe": - when: - store: steam steam: @@ -249226,11 +249973,11 @@ Hentball: Her: steam: id: 889680 -'Her 2: I Want to See You Again': +"Her 2: I Want to See You Again": installDir: 她2 我还想再见到你 Her2 I Want To See You Again: {} launch: - /I Want To See You Again.exe: + "/I Want To See You Again.exe": - when: - os: windows store: steam @@ -249240,49 +249987,49 @@ Her Lie I Tried to Believe: installDir: Her Lie I Tried To Believe: {} launch: - /HerLieITriedToBelieve.app: + "/HerLieITriedToBelieve.app": - when: - os: mac store: steam - /HerLieITriedToBelieve.exe: + "/HerLieITriedToBelieve.exe": - when: - os: windows store: steam - /HerLieITriedToBelieve.sh: + "/HerLieITriedToBelieve.sh": - when: - os: linux store: steam steam: id: 806510 -Her Majesty's SPIFFING: +"Her Majesty's SPIFFING": installDir: - Her Majesty's SPIFFING: {} + "Her Majesty's SPIFFING": {} launch: - /hms.app: + "/hms.app": - when: - os: mac store: steam - /hms.exe: + "/hms.exe": - when: - bit: 32 os: windows store: steam - /hms.x86: + "/hms.x86": - when: - os: linux store: steam - /hms64.exe: + "/hms64.exe": - when: - bit: 64 os: windows store: steam steam: id: 488770 -Her Majesty's Ship: +"Her Majesty's Ship": installDir: - HisMajesty'sShip: {} + "HisMajesty'sShip": {} launch: - /HMS.exe: + "/HMS.exe": - when: - os: windows store: steam @@ -249290,14 +250037,13 @@ Her Majesty's Ship: id: 688660 Her Story: files: - /AppData/LocalLow/Sam Barlow/HerStory/SaveData.cjc: + "/AppData/LocalLow/Sam Barlow/HerStory/SaveData.cjc": tags: - save when: - os: windows - /Library/Application Support/unity.Sam Barlow.HerStory: + "/Library/Application Support/unity.Sam Barlow.HerStory": tags: - - config - save when: - os: mac @@ -249306,11 +250052,11 @@ Her Story: installDir: HER STORY: {} launch: - /Her Story.app: + "/Her Story.app": - when: - os: mac store: steam - /HerStory.exe: + "/HerStory.exe": - when: - os: windows store: steam @@ -249327,7 +250073,7 @@ Her 她: installDir: Her: {} launch: - /Her.exe: + "/Her.exe": - when: - os: windows store: steam @@ -249342,7 +250088,7 @@ Herakles and the Princess of Troy: installDir: Herakles and the Princess of Troy: {} launch: - /herakles.exe: + "/herakles.exe": - when: - os: windows store: steam @@ -249352,29 +250098,29 @@ Herald of the Depths: installDir: Herald of the Depths: {} launch: - /Herald of the Depths.exe: + "/Herald of the Depths.exe": - when: - os: windows store: steam steam: id: 1059310 -'Herald: An Interactive Period Drama': +"Herald: An Interactive Period Drama": gog: id: 1271998194 installDir: Herald: {} launch: - /Herald.app/Contents/MacOS/Herald: + "/Herald.app/Contents/MacOS/Herald": - when: - bit: 64 os: mac store: steam - /Herald.exe: + "/Herald.exe": - when: - bit: 64 os: windows store: steam - /Herald.x86_64: + "/Herald.x86_64": - when: - bit: 64 os: linux @@ -249385,7 +250131,7 @@ Herbalist Simulator: installDir: SymulatorZielarza: {} launch: - /SymulatorZielarza.exe: + "/SymulatorZielarza.exe": - when: - os: windows store: steam @@ -249395,7 +250141,7 @@ Herd is Coming: installDir: Herd is Coming: {} launch: - /herd.exe: + "/herd.exe": - when: - store: steam steam: @@ -249404,11 +250150,11 @@ Herding Dog: installDir: HerdingDog: {} launch: - /HerdingDog.app: + "/HerdingDog.app": - when: - os: mac store: steam - /HerdingDog.exe: + "/HerdingDog.exe": - when: - os: windows store: steam @@ -249426,11 +250172,11 @@ Here Be Dragons: installDir: HereBeDragons: {} launch: - /HereBeDragons.exe: + "/HereBeDragons.exe": - when: - os: windows store: steam - /hbd.app/Contents/MacOS/hbd: + "/hbd.app/Contents/MacOS/hbd": - when: - os: mac store: steam @@ -249440,11 +250186,11 @@ Here Come the Mystery Teens!: installDir: Mystery Teens: {} launch: - /Mystery Teens.app: + "/Mystery Teens.app": - when: - os: mac store: steam - /Mystery Teens.exe: + "/Mystery Teens.exe": - when: - os: windows store: steam @@ -249452,7 +250198,7 @@ Here Come the Mystery Teens!: id: 949650 Here Comes Niko!: files: - /AppData/LocalLow/Frog Vibes/Here Comes Niko!: + "/AppData/LocalLow/Frog Vibes/Here Comes Niko!": tags: - config - save @@ -249461,7 +250207,7 @@ Here Comes Niko!: installDir: Here Comes Niko: {} launch: - /Here Comes Niko!.exe: + "/Here Comes Niko!.exe": - when: - store: steam steam: @@ -249470,7 +250216,7 @@ Here Nya: installDir: Here Nya: {} launch: - /Here Nya.exe: + "/Here Nya.exe": - when: - os: windows store: steam @@ -249480,7 +250226,7 @@ Hereafter: installDir: Hereafter: {} launch: - /Hereafter Early Access.exe: + "/Hereafter Early Access.exe": - when: - os: windows store: steam @@ -249490,7 +250236,7 @@ Heresy: installDir: Heresy: {} launch: - /Heresy.exe: + "/Heresy.exe": - when: - os: windows store: steam @@ -249498,17 +250244,17 @@ Heresy: id: 416160 Heretic: files: - /base/*.CFG: + "/base/*.CFG": tags: - config when: - os: windows - /base/*.HSG: + "/base/*.HSG": tags: - save when: - os: windows - /base/*.conf: + "/base/*.conf": tags: - config when: @@ -249518,42 +250264,42 @@ Heretic: installDir: Heretic Shadow of the Serpent Riders: {} launch: - /base/dosbox.exe: - - arguments: base\\heretic.exe -conf base\\heretic.conf -fullscreen -exit + "/base/dosbox.exe": + - arguments: "base\\\\heretic.exe -conf base\\\\heretic.conf -fullscreen -exit" when: - store: steam steam: id: 2390 Heretic II: files: - /user: + "/user": tags: - config when: - os: windows - /user/save: + "/user/save": tags: - save when: - os: windows - /.loki/heretic2: + "/.loki/heretic2": tags: - config when: - os: linux - /.loki/heretic2/save: + "/.loki/heretic2/save": tags: - save when: - os: linux -'Heretic Kingdoms: The Inquisition': +"Heretic Kingdoms: The Inquisition": files: - /config.cfg: + "/config.cfg": tags: - config when: - os: windows - /save: + "/save": tags: - save when: @@ -249563,10 +250309,10 @@ Heretic II: installDir: Kult Heretic Kingdoms: {} launch: - /configure.exe: + "/configure.exe": - when: - store: steam - /kult.bat: + "/kult.bat": - when: - os: windows store: steam @@ -249576,7 +250322,7 @@ Heretic Operative: installDir: Heretic Operative: {} launch: - /Heretic Operative.exe: + "/Heretic Operative.exe": - when: - bit: 64 os: windows @@ -249587,7 +250333,7 @@ Herman 2: installDir: Herman 2: {} launch: - /Herman 2.exe: + "/Herman 2.exe": - when: - os: windows store: steam @@ -249597,28 +250343,28 @@ Hermea: installDir: Hermea: {} launch: - /WindowsNoEditor/Hermea.exe: + "/WindowsNoEditor/Hermea.exe": - when: - bit: 64 os: windows store: steam steam: id: 2023430 -'Hermes: Rescue Mission': +"Hermes: Rescue Mission": installDir: Hermes Rescue Mission: {} launch: - /Hermes_Rescue_Mission.exe: + "/Hermes_Rescue_Mission.exe": - when: - os: windows store: steam steam: id: 1195340 -'Hermes: War of the Gods': +"Hermes: War of the Gods": installDir: Hermes War of the Gods: {} launch: - /Hermes_WarOfTheGods_CE.exe: + "/Hermes_WarOfTheGods_CE.exe": - when: - os: windows store: steam @@ -249631,7 +250377,7 @@ Hermitage Strange Case Files: installDir: Hermitage Strange Case Files: {} launch: - /HermitageStrangeCaseFiles.exe: + "/HermitageStrangeCaseFiles.exe": - when: - os: windows store: steam @@ -249644,7 +250390,7 @@ Hero: installDir: Hero: {} launch: - /Hero Windows.exe: + "/Hero Windows.exe": - when: - os: windows store: steam @@ -249652,7 +250398,7 @@ Hero: id: 486020 Hero Academy: files: - /RobotEntertainment/HeroAcademy: + "/RobotEntertainment/HeroAcademy": tags: - config - save @@ -249661,15 +250407,15 @@ Hero Academy: installDir: Hero Academy: {} launch: - /Hero Academy.app: + "/Hero Academy.app": - when: - os: mac store: steam - /HeroAcademy.bin.x86: + "/HeroAcademy.bin.x86": - when: - os: linux store: steam - /HeroAcademy.exe: + "/HeroAcademy.exe": - when: - os: windows store: steam @@ -249679,11 +250425,11 @@ Hero Academy 2: installDir: Hero Academy 2: {} launch: - /HeroAcademy2.app/Contents/MacOS/HeroAcademy2: + "/HeroAcademy2.app/Contents/MacOS/HeroAcademy2": - when: - os: mac store: steam - /HeroAcademy2.exe: + "/HeroAcademy2.exe": - when: - bit: 64 os: windows @@ -249699,7 +250445,7 @@ Hero Battle: installDir: Hero battle: {} launch: - /FlameLauncher.exe: + "/FlameLauncher.exe": - when: - os: windows store: steam @@ -249709,15 +250455,15 @@ Hero Boy: installDir: Hero Boy: {} launch: - /Heroboy.app/Contents/MacOS/Heroboy: + "/Heroboy.app/Contents/MacOS/Heroboy": - when: - os: mac store: steam - /Heroboy.exe: + "/Heroboy.exe": - when: - os: windows store: steam - /HeroboyLinux.x86: + "/HeroboyLinux.x86": - when: - os: linux store: steam @@ -249725,7 +250471,7 @@ Hero Boy: id: 512370 Hero Core: files: - /herocore.sav: + "/herocore.sav": tags: - config - save @@ -249733,7 +250479,7 @@ Hero Core: - os: windows Hero Defense: files: - /AppData/LocalLow/Happy Tuesday/HauntedIsland: + "/AppData/LocalLow/Happy Tuesday/HauntedIsland": tags: - config - save @@ -249742,7 +250488,7 @@ Hero Defense: installDir: Hero Defense: {} launch: - /HauntedIsland.exe: + "/HauntedIsland.exe": - when: - os: windows store: steam @@ -249752,7 +250498,7 @@ Hero Dream of School: installDir: HeroDreamOfSchool: {} launch: - /HeroDreamOfSchool/HeroDreamOfSchool.exe: + "/HeroDreamOfSchool/HeroDreamOfSchool.exe": - when: - store: steam steam: @@ -249761,11 +250507,11 @@ Hero Express: installDir: Hero Express: {} launch: - /Hero Express.exe: + "/Hero Express.exe": - when: - os: windows store: steam - /HeroExpress.app: + "/HeroExpress.app": - when: - os: mac store: steam @@ -249775,36 +250521,36 @@ Hero Generations: installDir: HeroGenerations: {} launch: - /HeroGenerations.app: - - arguments: '-console' + "/HeroGenerations.app": + - arguments: "-console" when: - os: mac store: steam - /HeroGenerations.exe: - - arguments: '-console' + "/HeroGenerations.exe": + - arguments: "-console" when: - os: windows store: steam steam: id: 295590 -'Hero Generations: ReGen': +"Hero Generations: ReGen": installDir: Hero Generations ReGen: {} launch: - /HeroGenerations.app: + "/HeroGenerations.app": - when: - os: mac store: steam - /HeroGenerations.exe: + "/HeroGenerations.exe": - when: - os: windows store: steam - /HeroGenerations.x86: + "/HeroGenerations.x86": - when: - bit: 32 os: linux store: steam - /HeroGenerations.x86_64: + "/HeroGenerations.x86_64": - when: - bit: 64 os: linux @@ -249815,7 +250561,7 @@ Hero Go: installDir: Hero Go: {} launch: - /Launch.exe: + "/Launch.exe": - when: - os: windows store: steam @@ -249825,7 +250571,7 @@ Hero Hours Contract: installDir: Hero Hours Contract: {} launch: - /Hero Hours Contract.exe: + "/Hero Hours Contract.exe": - when: - os: windows store: steam @@ -249835,7 +250581,7 @@ Hero Hunters - Jurassic Shooting Sniper: installDir: Hero Hunters Shooting Sniper 3D: {} launch: - /HeroHunter.exe: + "/HeroHunter.exe": - when: - os: windows store: steam @@ -249845,11 +250591,11 @@ Hero Legends: installDir: Hero Legends: {} launch: - /Bin/run.bat: + "/Bin/run.bat": - when: - os: windows store: steam - workingDir: /Bin + workingDir: "/Bin" steam: id: 1112940 Hero Masters: @@ -249859,7 +250605,7 @@ Hero Must Die. Again: installDir: Hero must die again: {} launch: - /diana.exe: + "/diana.exe": - when: - store: steam steam: @@ -249868,7 +250614,7 @@ Hero Of The Forest: installDir: Hero Of The Forest: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -249878,36 +250624,36 @@ Hero Plus: installDir: HeroPlus: {} launch: - /Launcher.exe: + "/Launcher.exe": - arguments: STEAM when: - os: windows store: steam steam: id: 747920 -'Hero Quest: Tower Conflict': +"Hero Quest: Tower Conflict": installDir: Hero Quest Tower Conflict: {} launch: - /HeroQuestTowerConflict_MAC.app: + "/HeroQuestTowerConflict_MAC.app": - when: - os: mac store: steam - /HeroQuestTowerConflict_linux: + "/HeroQuestTowerConflict_linux": - when: - os: linux store: steam - /game.exe: + "/game.exe": - when: - os: windows store: steam steam: id: 453820 -'Hero Rush: Mad King': +"Hero Rush: Mad King": installDir: Hero Rush Mad King: {} launch: - /HR.exe: + "/HR.exe": - when: - os: windows store: steam @@ -249915,13 +250661,13 @@ Hero Plus: id: 702190 Hero Siege: files: - /userdata//269210/remote: + "/userdata//269210/remote": tags: - save when: - os: linux store: steam - /Hero_Siege: + "/Hero_Siege": tags: - save when: @@ -249929,23 +250675,23 @@ Hero Siege: installDir: HeroSiege: {} launch: - /linux/run.sh: + "/linux/run.sh": - when: - os: linux store: steam - workingDir: /linux - /mac/Hero_Siege.app: + workingDir: "/linux" + "/mac/Hero_Siege.app": - when: - os: mac store: steam - workingDir: /mac + workingDir: "/mac" steam: id: 269210 -'Hero Soul: I want to be a Hero!': +"Hero Soul: I want to be a Hero!": installDir: Hero Soul I Want to be a Hero!: {} launch: - /Hero_Soul_Game.exe: + "/Hero_Soul_Game.exe": - when: - os: windows store: steam @@ -249955,7 +250701,7 @@ Hero Staff: installDir: Hero Staff: {} launch: - /Hero Staff.exe: + "/Hero Staff.exe": - when: - os: windows store: steam @@ -249970,7 +250716,7 @@ Hero Village Simulator: installDir: Hero Village Simulator: {} launch: - /HeroVillageSimulator.exe: + "/HeroVillageSimulator.exe": - when: - os: windows store: steam @@ -249980,7 +250726,7 @@ Hero Zero: installDir: Hero Zero: {} launch: - /Hero Zero.exe: + "/Hero Zero.exe": - when: - os: windows store: steam @@ -249990,14 +250736,14 @@ Hero and Daughter+: installDir: Hero and Daughter: {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: id: 271970 Hero by Chance: files: - /HeroByChance_Data/Saves: + "/HeroByChance_Data/Saves": tags: - save when: @@ -250005,7 +250751,7 @@ Hero by Chance: installDir: Hero By Chance: {} launch: - /HeroByChance.exe: + "/HeroByChance.exe": - when: - os: windows store: steam @@ -250013,7 +250759,7 @@ Hero by Chance: id: 1433420 Hero of Many: files: - /AppData/LocalLow/TricksterArts/Hero of Many/lastCheckpoint.sav: + "/AppData/LocalLow/TricksterArts/Hero of Many/lastCheckpoint.sav": tags: - save when: @@ -250021,11 +250767,11 @@ Hero of Many: installDir: Hero of Many: {} launch: - /HoM.app: + "/HoM.app": - when: - os: mac store: steam - /HoM.exe: + "/HoM.exe": - when: - os: windows store: steam @@ -250039,7 +250785,7 @@ Hero of the Galactic Core: installDir: Hero of the Galactic Core: {} launch: - /Heroofthegalacticcore.exe: + "/Heroofthegalacticcore.exe": - when: - os: windows store: steam @@ -250047,7 +250793,7 @@ Hero of the Galactic Core: id: 659790 Hero of the Kingdom: files: - /userdata//259550/remote/save_steam.dat: + "/userdata//259550/remote/save_steam.dat": tags: - save when: @@ -250060,20 +250806,20 @@ Hero of the Kingdom: installDir: Hero of the Kingdom: {} launch: - /Hero of the Kingdom: + "/Hero of the Kingdom": - when: - os: linux store: steam - /Hero of the Kingdom 32bit.exe: + "/Hero of the Kingdom 32bit.exe": - when: - bit: 32 os: windows store: steam - /Hero of the Kingdom.app: + "/Hero of the Kingdom.app": - when: - os: mac store: steam - /Hero of the Kingdom.exe: + "/Hero of the Kingdom.exe": - when: - bit: 64 os: windows @@ -250082,27 +250828,27 @@ Hero of the Kingdom: id: 259550 Hero of the Kingdom II: files: - /userdata//346560: + "/userdata//346560": tags: - save when: - store: steam - /Lonely Troops/Hero of the Kingdom II: + "/Lonely Troops/Hero of the Kingdom II": tags: - config when: - os: windows - /Lonely Troops/Hero of the Kingdom II/Save.dat: + "/Lonely Troops/Hero of the Kingdom II/Save.dat": tags: - save when: - os: windows - /Lonely Troops/Hero of the Kingdom II: + "/Lonely Troops/Hero of the Kingdom II": tags: - config when: - os: linux - /Lonely Troops/Hero of the Kingdom II/Save.dat: + "/Lonely Troops/Hero of the Kingdom II/Save.dat": tags: - save when: @@ -250115,20 +250861,20 @@ Hero of the Kingdom II: installDir: Hero of the Kingdom II: {} launch: - /Hero of the Kingdom II: + "/Hero of the Kingdom II": - when: - os: linux store: steam - /Hero of the Kingdom II 32bit.exe: + "/Hero of the Kingdom II 32bit.exe": - when: - bit: 32 os: windows store: steam - /Hero of the Kingdom II.app: + "/Hero of the Kingdom II.app": - when: - os: mac store: steam - /Hero of the Kingdom II.exe: + "/Hero of the Kingdom II.exe": - when: - bit: 64 os: windows @@ -250137,7 +250883,7 @@ Hero of the Kingdom II: id: 346560 Hero of the Kingdom III: files: - /userdata//772430: + "/userdata//772430": tags: - save when: @@ -250150,27 +250896,27 @@ Hero of the Kingdom III: installDir: Hero of the Kingdom III: {} launch: - /Hero of the Kingdom III: + "/Hero of the Kingdom III": - when: - os: linux store: steam - /Hero of the Kingdom III 32bit.exe: + "/Hero of the Kingdom III 32bit.exe": - when: - bit: 32 os: windows store: steam - /Hero of the Kingdom III.app: + "/Hero of the Kingdom III.app": - when: - os: mac store: steam - /Hero of the Kingdom III.exe: + "/Hero of the Kingdom III.exe": - when: - bit: 64 os: windows store: steam steam: id: 772430 -'Hero of the Kingdom: The Lost Tales 1': +"Hero of the Kingdom: The Lost Tales 1": gog: id: 1567269698 id: @@ -250179,27 +250925,27 @@ Hero of the Kingdom III: installDir: Hero of the Kingdom The Lost Tales 1: {} launch: - /Hero of the Kingdom The Lost Tales 1: + "/Hero of the Kingdom The Lost Tales 1": - when: - os: linux store: steam - /Hero of the Kingdom The Lost Tales 1 32bit.exe: + "/Hero of the Kingdom The Lost Tales 1 32bit.exe": - when: - bit: 32 os: windows store: steam - /Hero of the Kingdom The Lost Tales 1.app: + "/Hero of the Kingdom The Lost Tales 1.app": - when: - os: mac store: steam - /Hero of the Kingdom The Lost Tales 1.exe: + "/Hero of the Kingdom The Lost Tales 1.exe": - when: - bit: 64 os: windows store: steam steam: id: 1249130 -'Hero of the Kingdom: The Lost Tales 2': +"Hero of the Kingdom: The Lost Tales 2": gog: id: 1573967124 id: @@ -250208,61 +250954,61 @@ Hero of the Kingdom III: installDir: Hero of the Kingdom The Lost Tales 2: {} launch: - /Hero of the Kingdom The Lost Tales 2: + "/Hero of the Kingdom The Lost Tales 2": - when: - os: linux store: steam - /Hero of the Kingdom The Lost Tales 2 32bit.exe: + "/Hero of the Kingdom The Lost Tales 2 32bit.exe": - when: - bit: 32 os: windows store: steam - /Hero of the Kingdom The Lost Tales 2.app: + "/Hero of the Kingdom The Lost Tales 2.app": - when: - os: mac store: steam - /Hero of the Kingdom The Lost Tales 2.exe: + "/Hero of the Kingdom The Lost Tales 2.exe": - when: - bit: 64 os: windows store: steam steam: id: 1784780 -'Hero or Villain: Genesis': +"Hero or Villain: Genesis": installDir: Hero or Villain Genesis: {} launch: - /Hero or Villain Genesis.app/Contents/MacOS/Hero or Villain Genesis: + "/Hero or Villain Genesis.app/Contents/MacOS/Hero or Villain Genesis": - when: - os: mac store: steam - /HeroOrVillainGenesis: + "/HeroOrVillainGenesis": - when: - os: linux store: steam - /HeroOrVillainGenesis.exe: + "/HeroOrVillainGenesis.exe": - when: - os: windows store: steam steam: id: 1133420 -Hero's Descent: +"Hero's Descent": installDir: - Hero's Descent: {} + "Hero's Descent": {} launch: - /herosdescent.app/Contents/MacOS/herosdescent: + "/herosdescent.app/Contents/MacOS/herosdescent": - when: - os: mac store: steam - /herosdescent.exe: + "/herosdescent.exe": - when: - os: windows store: steam steam: id: 726450 -Hero's Hour: +"Hero's Hour": files: - /Hero_s_Hour: + "/Hero_s_Hour": tags: - save when: @@ -250270,52 +251016,52 @@ Hero's Hour: gog: id: 1547269859 installDir: - Hero's Hour: {} + "Hero's Hour": {} launch: - /Hero's Hour.exe: + "/Hero's Hour.exe": - when: - store: steam steam: id: 1656780 -Hero's Song: +"Hero's Song": installDir: - Hero's Song: {} + "Hero's Song": {} launch: - /HerosSong.app: + "/HerosSong.app": - when: - bit: 64 os: mac store: steam - /HerosSong.exe: + "/HerosSong.exe": - when: - bit: 64 os: windows store: steam steam: id: 413110 -'Hero''s Story: Prologue': +"Hero's Story: Prologue": installDir: - Hero's Story: {} + "Hero's Story": {} launch: - /MansLife.exe: + "/MansLife.exe": - when: - os: windows store: steam steam: id: 649970 -'Hero-U: Rogue to Redemption': +"Hero-U: Rogue to Redemption": files: - /.config/unity3d/Transolar Games/Hero-U: + "/.config/unity3d/Transolar Games/Hero-U": tags: - save when: - os: linux - /AppData/LocalLow/Transolar Games/Hero-U: + "/AppData/LocalLow/Transolar Games/Hero-U": tags: - save when: - os: windows - /Library/Application Support/unity.Transolar Games.Hero-U: + "/Library/Application Support/unity.Transolar Games.Hero-U": tags: - save when: @@ -250325,24 +251071,24 @@ Hero's Song: installDir: Hero-U Rogue to Redemption: {} launch: - /Hero-U.app/Contents/MacOS/Hero-U: - - arguments: '-steam' + "/Hero-U.app/Contents/MacOS/Hero-U": + - arguments: "-steam" when: - os: mac store: steam - /Hero-U.exe: - - arguments: '-steam' + "/Hero-U.exe": + - arguments: "-steam" when: - os: windows store: steam - /Hero-U.x86: - - arguments: '-steam' + "/Hero-U.x86": + - arguments: "-steam" when: - bit: 32 os: linux store: steam - /Hero-U.x86_64: - - arguments: '-steam' + "/Hero-U.x86_64": + - arguments: "-steam" when: - bit: 64 os: linux @@ -250353,29 +251099,29 @@ Hero's Song: - config steam: id: 375440 -'Hero: Flood Rescue': +"Hero: Flood Rescue": steam: id: 1026720 HeroOfMetal-Episode01: installDir: HeroOfMetal_Episode01: {} launch: - /heroofmetal_episode01.exe: + "/heroofmetal_episode01.exe": - when: - os: windows store: steam steam: id: 1083270 -Herod's Lost Tomb: +"Herod's Lost Tomb": files: - 'C:/Program Files/City Interactive/National Geographic - Herod''s Lost Tomb/assets': + "C:/Program Files/City Interactive/National Geographic - Herod's Lost Tomb/assets": tags: - config when: - os: windows Heroes & Generals: files: - /AppData/LocalLow/Heroes and Generals: + "/AppData/LocalLow/Heroes and Generals": tags: - config when: @@ -250383,25 +251129,25 @@ Heroes & Generals: installDir: Heroes & Generals: {} launch: - /hngsteamlauncher.exe: + "/hngsteamlauncher.exe": - when: - os: windows store: steam steam: id: 227940 -'Heroes & Legends: Conquerors of Kolhar': +"Heroes & Legends: Conquerors of Kolhar": installDir: Heroes&Legends: {} launch: - /Heroes&Legends.exe: + "/Heroes&Legends.exe": - when: - os: windows store: steam - /HeroesAndLegends.app: + "/HeroesAndLegends.app": - when: - os: mac store: steam - /HeroesAndLegends.x86_64: + "/HeroesAndLegends.x86_64": - when: - os: linux store: steam @@ -250411,15 +251157,15 @@ Heroes Arena: installDir: Heroes Arena: {} launch: - /HeroesArena_linux.x86: + "/HeroesArena_linux.x86": - when: - os: linux store: steam - /HeroesArena_macOS.app: + "/HeroesArena_macOS.app": - when: - os: mac store: steam - /HeroesArena_windows.exe: + "/HeroesArena_windows.exe": - when: - os: windows store: steam @@ -250427,7 +251173,7 @@ Heroes Arena: id: 868470 Heroes Chronicles: files: - /GAMES: + "/GAMES": tags: - save when: @@ -250460,16 +251206,19 @@ Heroes Must Die: installDir: Heroes Must Die: {} launch: - /HMD Show.m4v: + "/HMD Show.m4v": - when: - store: steam - /HeroesMustDieMac.app/Contents/MacOS/HeroesMustDieMac: + "/HeroesMustDieMac.app/Contents/MacOS/HeroesMustDieMac": - when: - bit: 64 os: mac store: steam - /HeroesMustDieWin.exe: + "/HeroesMustDieWin.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam @@ -250479,28 +251228,28 @@ Heroes Never Die: installDir: Heroes Never Die: {} launch: - /HeroesNeverDie.exe: + "/HeroesNeverDie.exe": - when: - os: windows store: steam steam: id: 633970 -'Heroes Never Lose: Professor Puzzler''s Perplexing Ploy': +"Heroes Never Lose: Professor Puzzler's Perplexing Ploy": installDir: HNL-PPPP: {} launch: - /HNL-PPPP.app: - - arguments: '-online' + "/HNL-PPPP.app": + - arguments: "-online" when: - os: mac store: steam - /HNL-PPPP.exe: - - arguments: '-online' + "/HNL-PPPP.exe": + - arguments: "-online" when: - os: windows store: steam - /HNL-PPPP.x86: - - arguments: '-online' + "/HNL-PPPP.x86": + - arguments: "-online" when: - os: linux store: steam @@ -250510,75 +251259,75 @@ Heroes Of Avranche: installDir: Heroes Of Avranche: {} launch: - /HoA.exe: + "/HoA.exe": - when: - os: windows store: steam - /HoAv1.2L.x86_64: + "/HoAv1.2L.x86_64": - when: - os: linux store: steam steam: id: 1156550 -'Heroes Of Maidan 3: Crimean Battle': +"Heroes Of Maidan 3: Crimean Battle": installDir: Heroes Of Maidan 3: {} launch: - /Heroes Of Maidan 3.exe: + "/Heroes Of Maidan 3.exe": - when: - os: windows store: steam steam: id: 1179790 -'Heroes Rise: HeroFall': +"Heroes Rise: HeroFall": installDir: HeroesRiseHeroFall: {} launch: - /Heroes Rise HeroFall.app/Contents/MacOS/Heroes Rise HeroFall: + "/Heroes Rise HeroFall.app/Contents/MacOS/Heroes Rise HeroFall": - when: - os: mac store: steam - /HeroesRiseHeroFall: + "/HeroesRiseHeroFall": - when: - os: linux store: steam - /HeroesRiseHeroFall.exe: + "/HeroesRiseHeroFall.exe": - when: - os: windows store: steam steam: id: 312300 -'Heroes Rise: The Hero Project': +"Heroes Rise: The Hero Project": installDir: Heroes Rise The Hero Project: {} launch: - /Heroes Rise The Hero Project.app/Contents/MacOS/Heroes Rise The Hero Project: + "/Heroes Rise The Hero Project.app/Contents/MacOS/Heroes Rise The Hero Project": - when: - os: mac store: steam - /HeroesRiseTheHeroProject: + "/HeroesRiseTheHeroProject": - when: - os: linux store: steam - /HeroesRiseTheHeroProject.exe: + "/HeroesRiseTheHeroProject.exe": - when: - os: windows store: steam steam: id: 304290 -'Heroes Rise: The Prodigy': +"Heroes Rise: The Prodigy": installDir: HeroesRiseTheProdigy: {} launch: - /Heroes Rise The Prodigy.app/Contents/MacOS/Heroes Rise The Prodigy: + "/Heroes Rise The Prodigy.app/Contents/MacOS/Heroes Rise The Prodigy": - when: - os: mac store: steam - /HeroesRiseTheProdigy: + "/HeroesRiseTheProdigy": - when: - os: linux store: steam - /HeroesRiseTheProdigy.exe: + "/HeroesRiseTheProdigy.exe": - when: - os: windows store: steam @@ -250588,11 +251337,11 @@ Heroes Swipe Right: installDir: HeroesSwipeRight: {} launch: - /Mac/HeroesSwipeRight.app: + "/Mac/HeroesSwipeRight.app": - when: - os: mac store: steam - /Win/HeroesSwipeRight.exe: + "/Win/HeroesSwipeRight.exe": - when: - os: windows store: steam @@ -250602,11 +251351,11 @@ Heroes Tactics: installDir: Heroes Tactics: {} launch: - /Heroe Stactics.app/Contents/MacOS/Heroes Tactics: + "/Heroe Stactics.app/Contents/MacOS/Heroes Tactics": - when: - os: mac store: steam - /Heroes Tactics.exe: + "/Heroes Tactics.exe": - when: - os: windows store: steam @@ -250616,21 +251365,21 @@ Heroes Trials: installDir: HEROES TRIALS: {} launch: - /Heroes Trials.app/Contents/MacOS/Heroes Trials: + "/Heroes Trials.app/Contents/MacOS/Heroes Trials": - when: - os: mac store: steam - /Heroes Trials.exe: + "/Heroes Trials.exe": - when: - os: windows store: steam steam: id: 854670 -'Heroes from the Past: Joan of Arc': +"Heroes from the Past: Joan of Arc": installDir: Heroes from the Past Joan of Arc: {} launch: - /HeroesFromThePast_JoanOfArc.exe: + "/HeroesFromThePast_JoanOfArc.exe": - when: - store: steam steam: @@ -250639,7 +251388,7 @@ Heroes in Battlefield: installDir: Heroes in Battlefield: {} launch: - /JusticeSchool.exe: + "/JusticeSchool.exe": - when: - os: windows store: steam @@ -250649,7 +251398,7 @@ Heroes in the Sky-Origin: installDir: HISOrigin: {} launch: - /hisorigin.exe: + "/hisorigin.exe": - when: - os: windows store: steam @@ -250657,12 +251406,12 @@ Heroes in the Sky-Origin: id: 586100 Heroes of Annihilated Empires: files: - /Data/Save: + "/Data/Save": tags: - save when: - os: windows - /Data/settings.xml: + "/Data/settings.xml": tags: - config when: @@ -250672,7 +251421,7 @@ Heroes of Annihilated Empires: installDir: Heroes of Annihilated Empires: {} launch: - /engine.exe: + "/engine.exe": - when: - store: steam steam: @@ -250681,20 +251430,20 @@ Heroes of Arca: installDir: Heroes of Arca: {} launch: - /HoA.app: + "/HoA.app": - when: - os: mac store: steam - /HoA.exe: + "/HoA.exe": - when: - os: windows store: steam - /HoA.x86: + "/HoA.x86": - when: - bit: 32 os: linux store: steam - /HoA.x86_64: + "/HoA.x86_64": - when: - bit: 64 os: linux @@ -250705,7 +251454,7 @@ Heroes of Arzar: installDir: Heroes of Arzar: {} launch: - /gow.exe: + "/gow.exe": - when: - os: windows store: steam @@ -250715,7 +251464,7 @@ Heroes of Card War: installDir: HoCWar: {} launch: - /HoCWar.exe: + "/HoCWar.exe": - when: - os: windows store: steam @@ -250725,7 +251474,7 @@ Heroes of Civilizations: installDir: Heroes of Civilizations: {} launch: - /cardgame.exe: + "/cardgame.exe": - when: - os: windows store: steam @@ -250735,7 +251484,7 @@ Heroes of Dark Dungeon: installDir: Heroes of Dark Dungeon: {} launch: - /Heroes of Dark Dungeon alpha.exe: + "/Heroes of Dark Dungeon alpha.exe": - when: - bit: 64 os: windows @@ -250746,20 +251495,20 @@ Heroes of Delum: installDir: Heroes of Delum: {} launch: - /HeroesOfDelum.app/Contents/MacOS/HeroesOfDelum: + "/HeroesOfDelum.app/Contents/MacOS/HeroesOfDelum": - when: - os: mac store: steam - /HeroesOfDelum.exe: + "/HeroesOfDelum.exe": - when: - os: windows store: steam - /HeroesOfDelum.x86: + "/HeroesOfDelum.x86": - when: - bit: 32 os: linux store: steam - /HeroesOfDelum.x86_64: + "/HeroesOfDelum.x86_64": - when: - bit: 64 os: linux @@ -250770,21 +251519,21 @@ Heroes of Dire: installDir: HeroesOfDire: {} launch: - /HeroesOfDire.exe: + "/HeroesOfDire.exe": - when: - os: windows store: steam - /HeroesOfDire.x86: + "/HeroesOfDire.x86": - when: - bit: 32 os: linux store: steam - /HeroesOfDire.x86_64: + "/HeroesOfDire.x86_64": - when: - bit: 64 os: linux store: steam - /heroesofdire-osx-steam.app: + "/heroesofdire-osx-steam.app": - when: - os: mac store: steam @@ -250794,7 +251543,7 @@ Heroes of Fortunia: installDir: Heroes of Fortunia: {} launch: - /DungeonsAndHeroes.exe: + "/DungeonsAndHeroes.exe": - when: - os: windows store: steam @@ -250802,17 +251551,17 @@ Heroes of Fortunia: id: 963290 Heroes of Hammerwatch: files: - /HWR.cfg: + "/HWR.cfg": tags: - config when: - os: linux - /HWR.exe.cfg: + "/HWR.exe.cfg": tags: - config when: - os: windows - /saves: + "/saves": tags: - save when: @@ -250823,11 +251572,11 @@ Heroes of Hammerwatch: installDir: Heroes of Hammerwatch: {} launch: - /HWR: + "/HWR": - when: - os: linux store: steam - /HWR.exe: + "/HWR.exe": - when: - os: windows store: steam @@ -250837,49 +251586,49 @@ Heroes of Hammerwatch: store: steam steam: id: 677120 -'Heroes of Havoc: Idle Adventures': +"Heroes of Havoc: Idle Adventures": installDir: Heroes of Havoc: {} launch: - /havoc.app/Contents/MacOS/havoc: + "/havoc.app/Contents/MacOS/havoc": - when: - os: mac store: steam - /havoc.exe: + "/havoc.exe": - when: - os: windows store: steam steam: id: 251450 -'Heroes of Hellas 3: Athens': +"Heroes of Hellas 3: Athens": installDir: HeroesofHellas3Athens: {} launch: - /HeroesOfHellas3Athens.app: + "/HeroesOfHellas3Athens.app": - when: - os: mac store: steam - /hoh3.exe: + "/hoh3.exe": - when: - os: windows store: steam steam: id: 347590 -'Heroes of Hellas 4: Birth of Legend': +"Heroes of Hellas 4: Birth of Legend": installDir: HeroesOfHellas4: {} launch: - /HeroesOfHellas4_BirthOfLegend.exe: + "/HeroesOfHellas4_BirthOfLegend.exe": - when: - os: windows store: steam steam: id: 792160 -'Heroes of Hellas Origins: Part One': +"Heroes of Hellas Origins: Part One": installDir: Heroes of Hellas Origins Part One: {} launch: - /HeroesOfHellasOrigins_PartOne.exe: + "/HeroesOfHellasOrigins_PartOne.exe": - when: - os: windows store: steam @@ -250889,20 +251638,20 @@ Heroes of Hexaluga: installDir: Heroes of Hexaluga: {} launch: - /Heroes of Hexaluga.app/Contents/MacOS/Heroes of Hexaluga: + "/Heroes of Hexaluga.app/Contents/MacOS/Heroes of Hexaluga": - when: - os: mac store: steam - /Heroes of Hexaluga.exe: + "/Heroes of Hexaluga.exe": - when: - os: windows store: steam - /Heroes of Hexaluga.linux/Heroes of Hexaluga.x86: + "/Heroes of Hexaluga.linux/Heroes of Hexaluga.x86": - when: - bit: 32 os: linux store: steam - /Heroes of Hexaluga.linux/Heroes of Hexaluga.x86_64: + "/Heroes of Hexaluga.linux/Heroes of Hexaluga.x86_64": - when: - bit: 64 os: linux @@ -250913,11 +251662,11 @@ Heroes of Issachar: installDir: HOI: {} launch: - /Game.app: + "/Game.app": - when: - os: mac store: steam - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -250927,7 +251676,7 @@ Heroes of Legionwood: installDir: Heroes of Legionwood: {} launch: - /Launcher.exe: + "/Launcher.exe": - when: - os: windows store: steam @@ -250937,15 +251686,15 @@ Heroes of Loot: installDir: HeroesofLoot: {} launch: - /HeroesOfLoot: + "/HeroesOfLoot": - when: - os: linux store: steam - /HeroesOfLoot.app: + "/HeroesOfLoot.app": - when: - os: mac store: steam - /HeroesOfLoot.exe: + "/HeroesOfLoot.exe": - when: - os: windows store: steam @@ -250953,12 +251702,12 @@ Heroes of Loot: id: 359280 Heroes of Loot 2: files: - /.prefs/hol2: + "/.prefs/hol2": tags: - config when: - os: windows - /.prefs/hol2svg: + "/.prefs/hol2svg": tags: - save when: @@ -250966,15 +251715,15 @@ Heroes of Loot 2: installDir: Heroes of Loot 2: {} launch: - /heroesofloot2: + "/heroesofloot2": - when: - os: linux store: steam - /heroesofloot2.app: + "/heroesofloot2.app": - when: - os: mac store: steam - /heroesofloot2.exe: + "/heroesofloot2.exe": - when: - os: windows store: steam @@ -250984,7 +251733,7 @@ Heroes of Maidan 2: installDir: Heroes Of Maidan 2: {} launch: - /Heroes Of Maidan 2.exe: + "/Heroes Of Maidan 2.exe": - when: - os: windows store: steam @@ -250992,7 +251741,7 @@ Heroes of Maidan 2: id: 1010070 Heroes of Might and Magic II: files: - /GAMES: + "/GAMES": tags: - save when: @@ -251002,7 +251751,7 @@ Heroes of Might and Magic II: id: 1207658785 Heroes of Might and Magic III: files: - /Games: + "/Games": tags: - save when: @@ -251015,12 +251764,12 @@ Heroes of Might and Magic III: - config Heroes of Might and Magic III - HD Edition: files: - /Ubisoft/Heroes of Might & Magic III - HD Edition: + "/Ubisoft/Heroes of Might & Magic III - HD Edition": tags: - config when: - os: windows - /Ubisoft/Heroes of Might & Magic III - HD Edition/pref: + "/Ubisoft/Heroes of Might & Magic III - HD Edition/pref": tags: - save when: @@ -251028,14 +251777,14 @@ Heroes of Might and Magic III - HD Edition: installDir: Heroes of Might & Magic III - HD Edition: {} launch: - /HOMM3Launcher.exe: + "/HOMM3Launcher.exe": - when: - store: steam steam: id: 297000 Heroes of Might and Magic IV: files: - /games: + "/games": tags: - save when: @@ -251044,12 +251793,12 @@ Heroes of Might and Magic IV: id: 1207658915 Heroes of Might and Magic V: files: - /My Games/Heroes of Might and Magic V/Profiles/: + "/My Games/Heroes of Might and Magic V/Profiles/": tags: - config when: - os: windows - /My Games/Heroes of Might and Magic V/Profiles//Saves: + "/My Games/Heroes of Might and Magic V/Profiles//Saves": tags: - save when: @@ -251064,20 +251813,20 @@ Heroes of Might and Magic V: installDir: Heroes of Might and Magic 5: {} launch: - /bin/H5_Game.exe: + "/bin/H5_Game.exe": - when: - store: steam - workingDir: /bin + workingDir: "/bin" steam: id: 15170 -'Heroes of Might and Magic V: Tribes of the East': +"Heroes of Might and Magic V: Tribes of the East": files: - /My Games/Heroes of Might and Magic V - Tribes of the East/Profiles/: + "/My Games/Heroes of Might and Magic V - Tribes of the East/Profiles/": tags: - config when: - os: windows - /My Games/Heroes of Might and Magic V - Tribes of the East/Profiles//Saves: + "/My Games/Heroes of Might and Magic V - Tribes of the East/Profiles//Saves": tags: - save when: @@ -251087,21 +251836,21 @@ Heroes of Might and Magic V: installDir: Heroes of Might and Magic 5 Tribes of the East: {} launch: - /bin/H5_Game.exe: + "/bin/H5_Game.exe": - when: - store: steam - workingDir: /bin + workingDir: "/bin" steam: id: 15370 -'Heroes of Might and Magic: A Strategic Quest': +"Heroes of Might and Magic: A Strategic Quest": files: - /GAMES: + "/GAMES": tags: - save when: - os: dos - os: windows - /HEROES.CFG: + "/HEROES.CFG": tags: - config when: @@ -251113,15 +251862,15 @@ Heroes of Myth: installDir: Heroes of Myth: {} launch: - /Heroes of Myth.app/Contents/MacOS/Heroes of Myth: + "/Heroes of Myth.app/Contents/MacOS/Heroes of Myth": - when: - os: mac store: steam - /HeroesOfMyth: + "/HeroesOfMyth": - when: - os: linux store: steam - /HeroesOfMyth.exe: + "/HeroesOfMyth.exe": - when: - os: windows store: steam @@ -251131,7 +251880,7 @@ Heroes of Myths - Warriors of Gods: installDir: Heroes_of_Myths: {} launch: - /Heroes.exe: + "/Heroes.exe": - when: - os: windows store: steam @@ -251141,7 +251890,7 @@ Heroes of Normandie: installDir: Heroes of Normandie: {} launch: - /autorun.exe: + "/autorun.exe": - when: - os: windows store: steam @@ -251151,15 +251900,15 @@ Heroes of Paragon: installDir: Heroes of Paragon: {} launch: - /Phoenix.app: + "/Phoenix.app": - when: - os: mac store: steam - /Phoenix.exe: + "/Phoenix.exe": - when: - os: windows store: steam - /Phoenix.x86_64: + "/Phoenix.x86_64": - when: - os: linux store: steam @@ -251172,15 +251921,15 @@ Heroes of Scene: installDir: Heroes Of Scene: {} launch: - /HeroesOfScene.app: + "/HeroesOfScene.app": - when: - os: mac store: steam - /HeroesOfScene.exe: + "/HeroesOfScene.exe": - when: - os: windows store: steam - /HeroesOfScene.x86: + "/HeroesOfScene.x86": - when: - os: linux store: steam @@ -251190,7 +251939,7 @@ Heroes of Shadow Guard: installDir: Heroes of Shadow Guard: {} launch: - /HeroesOfShadowGuard.exe: + "/HeroesOfShadowGuard.exe": - when: - bit: 64 os: windows @@ -251201,7 +251950,7 @@ Heroes of Shaola: installDir: Heroes of Shaola: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -251211,7 +251960,7 @@ Heroes of SoulCraft: installDir: Heroes of SoulCraft: {} launch: - /SoulcraftArena.exe: + "/SoulcraftArena.exe": - when: - os: windows store: steam @@ -251221,15 +251970,15 @@ Heroes of Steel RPG: installDir: Heroes of Steel: {} launch: - /HeroesOfSteel.app/Contents/MacOS/HeroesOfSteel: + "/HeroesOfSteel.app/Contents/MacOS/HeroesOfSteel": - when: - os: mac store: steam - /HeroesOfSteel.win32.exe: + "/HeroesOfSteel.win32.exe": - when: - os: windows store: steam - /heroesofsteel: + "/heroesofsteel": - when: - os: linux store: steam @@ -251239,7 +251988,7 @@ Heroes of Umbra: installDir: Heroes of Umbra: {} launch: - /heroes-of-umbra.exe: + "/heroes-of-umbra.exe": - when: - bit: 64 os: windows @@ -251248,7 +251997,7 @@ Heroes of Umbra: id: 645380 Heroes of a Broken Land: files: - /Heroes of a Broken Land: + "/Heroes of a Broken Land": tags: - save when: @@ -251256,21 +252005,21 @@ Heroes of a Broken Land: installDir: Heroes of a Broken Land: {} launch: - /hobl.app: + "/hobl.app": - when: - os: mac store: steam - /hobl.exe: + "/hobl.exe": - when: - bit: 32 os: windows store: steam - /hobl.x86: + "/hobl.x86": - when: - bit: 32 os: linux store: steam - /hobl.x86_64: + "/hobl.x86_64": - when: - bit: 64 os: linux @@ -251285,7 +252034,7 @@ Heroes of a Broken Land 2: installDir: Heroes of a Broken Land 2: {} launch: - /hobl2.exe: + "/hobl2.exe": - when: - os: windows store: steam @@ -251294,11 +252043,11 @@ Heroes of a Broken Land 2: Heroes of elements: steam: id: 917120 -'Heroes of the Earth: inVasion': +"Heroes of the Earth: inVasion": installDir: Heroes of the Earth in Vasion: {} launch: - /Heroes_of_the_Earth-in_Vasion.exe: + "/Heroes_of_the_Earth-in_Vasion.exe": - when: - os: windows store: steam @@ -251306,17 +252055,17 @@ Heroes of elements: id: 1015120 Heroes of the Lance: files: - /HISCORES.DAT: + "/HISCORES.DAT": tags: - save when: - os: dos - /INSTALL.CFG: + "/INSTALL.CFG": tags: - config when: - os: dos - /SAVEGAME.DAT: + "/SAVEGAME.DAT": tags: - save when: @@ -251326,19 +252075,19 @@ Heroes of the Lance: installDir: Shadow Sorcerer: {} launch: - /Launcher/Launcher.exe: + "/Launcher/Launcher.exe": - when: - store: steam steam: id: 2344020 Heroes of the Monkey Tavern: files: - /AppData/LocalLow/Monkey Stories/Heroes of the Monkey Tavern/Save*: + "/AppData/LocalLow/Monkey Stories/Heroes of the Monkey Tavern/Save*": tags: - save when: - os: windows - /AppData/LocalLow/Monkey Stories/Heroes of the Monkey Tavern/Settings: + "/AppData/LocalLow/Monkey Stories/Heroes of the Monkey Tavern/Settings": tags: - config when: @@ -251348,16 +252097,16 @@ Heroes of the Monkey Tavern: installDir: Heroes of the Monkey Tavern: {} launch: - /Heroes.exe: + "/Heroes.exe": - when: - os: windows store: steam - /Heroes.x86: + "/Heroes.x86": - when: - bit: 32 os: linux store: steam - /Heroes.x86_64: + "/Heroes.x86_64": - when: - bit: 64 os: linux @@ -251375,11 +252124,11 @@ Heroes of the Offworld Arena: installDir: Heroes Of The Offworld Arena: {} launch: - /Heroes Of The Offworld Arena.app/Contents/MacOS/Heroes Of The Offworld Arena: + "/Heroes Of The Offworld Arena.app/Contents/MacOS/Heroes Of The Offworld Arena": - when: - os: mac store: steam - /Heroes Of The Offworld Arena.exe: + "/Heroes Of The Offworld Arena.exe": - when: - os: windows store: steam @@ -251392,12 +252141,12 @@ Heroes of the Seven Seas: id: 436400 Heroes of the Storm: files: - /Library/Application Support/Blizzard/Heroes of the Storm: + "/Library/Application Support/Blizzard/Heroes of the Storm": tags: - config when: - os: mac - /Heroes of the Storm: + "/Heroes of the Storm": tags: - config when: @@ -251406,13 +252155,13 @@ Heroes of the Three Kingdoms 8: installDir: Heroes of the Three Kingdoms 8: {} launch: - /SG8.exe: + "/SG8.exe": - when: - os: windows store: steam steam: id: 875210 -'Herogrinder: Tactical Combat Arenas': +"Herogrinder: Tactical Combat Arenas": steam: id: 1123590 Heroic Dungeon: @@ -251422,11 +252171,11 @@ Heroic Mercenaries: installDir: Heroic Mercenaries: {} launch: - /Heroic Mercenaries.exe: + "/Heroic Mercenaries.exe": - when: - os: windows store: steam - /Heroic Mercenaries.x86_64: + "/Heroic Mercenaries.x86_64": - when: - os: linux store: steam @@ -251434,7 +252183,7 @@ Heroic Mercenaries: id: 1126820 Heroine Anthem Zero: files: - /AppData/LocalLow/Winking: + "/AppData/LocalLow/Winking": tags: - save when: @@ -251442,23 +252191,23 @@ Heroine Anthem Zero: installDir: Heroine Anthem Zero: {} launch: - /HeroineAnthemZero.app: + "/HeroineAnthemZero.app": - when: - bit: 64 os: mac store: steam - /HeroineAnthemZero.exe: + "/HeroineAnthemZero.exe": - when: - bit: 64 os: windows store: steam steam: id: 537990 -'Heroine Anthem Zero 2: Scalescars Oath': +"Heroine Anthem Zero 2: Scalescars Oath": installDir: Heroine Anthem Zero - Episode 2: {} launch: - /HeroineAnthemZero2.exe: + "/HeroineAnthemZero2.exe": - when: - bit: 64 os: windows @@ -251469,29 +252218,29 @@ Heroine of the Sniper: installDir: Heroine of the Sniper: {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: id: 851950 -'Heroine''s Quest: The Herald of Ragnarok': +"Heroine's Quest: The Herald of Ragnarok": files: - /game/data/acsetup.cfg: + "/game/data/acsetup.cfg": tags: - config when: - os: linux - /Saved Games/Heroine's Quest 1.2: + "/Saved Games/Heroine's Quest 1.2": tags: - save when: - os: windows - /Saved Games/Heroine's Quest 1.2/acsetup.cfg: + "/Saved Games/Heroine's Quest 1.2/acsetup.cfg": tags: - config when: - os: windows - /ags/Heroine's Quest 1.2: + "/ags/Heroine's Quest 1.2": tags: - save when: @@ -251499,19 +252248,19 @@ Heroine of the Sniper: gog: id: 1237516203 installDir: - Heroine's Quest: {} + "Heroine's Quest": {} launch: - /Game.sh: - - arguments: '-windowed' + "/Game.sh": + - arguments: "-windowed" when: - os: linux store: steam - /Heroine's Quest.app: + "/Heroine's Quest.app": - when: - os: mac store: steam - /Heroine's Quest.exe: - - arguments: '-windowed' + "/Heroine's Quest.exe": + - arguments: "-windowed" when: - os: windows store: steam @@ -251521,7 +252270,7 @@ Heroish: installDir: HEROish: {} launch: - /HEROish.exe: + "/HEROish.exe": - when: - os: windows store: steam @@ -251529,19 +252278,20 @@ Heroish: id: 1876350 Heroland: files: - /GOG.com/Galaxy/Applications/52498012610291613/Storage/Shared/Files: + "/GOG.com/Galaxy/Applications/52498012610291613/Storage/Shared/Files": tags: - config - save when: - - store: gog + - os: windows + store: gog gog: id: 1545982617 installDir: Heroland: {} launch: - /HerolandLauncher.exe: - - arguments: '-screen-width 1280 -screen-height 720 -screen-fullscreen 0' + "/HerolandLauncher.exe": + - arguments: "-screen-width 1280 -screen-height 720 -screen-fullscreen 0" when: - os: windows store: steam @@ -251555,12 +252305,12 @@ Herolike: installDir: Herolike: {} launch: - /Herolike.exe: + "/Herolike.exe": - when: - bit: 64 os: windows store: steam - /Herolike_32.exe: + "/Herolike_32.exe": - when: - bit: 32 os: windows @@ -251571,29 +252321,29 @@ Hex: installDir: Hex: {} launch: - /hex.app: + "/hex.app": - when: - os: mac store: steam - /hex.exe: + "/hex.exe": - when: - os: windows store: steam steam: id: 727070 -'Hex Commander: Fantasy Heroes': +"Hex Commander: Fantasy Heroes": installDir: Hex Commander Fantasy Heroes: {} launch: - /HexHeroes.exe: + "/HexHeroes.exe": - when: - os: windows store: steam - /HexHeroes.x86_64: + "/HexHeroes.x86_64": - when: - os: linux store: steam - /HexHeroesOSX.app: + "/HexHeroesOSX.app": - when: - os: mac store: steam @@ -251608,15 +252358,15 @@ Hex Empire 3: installDir: HexEmpire3: {} launch: - /HexEmpire3.app: + "/HexEmpire3.app": - when: - os: mac store: steam - /HexEmpire3.exe: + "/HexEmpire3.exe": - when: - os: windows store: steam - /HexEmpire3.x86: + "/HexEmpire3.x86": - when: - os: linux store: steam @@ -251626,7 +252376,7 @@ Hex Gambit: installDir: HexGambit: {} launch: - /HexGambit.exe: + "/HexGambit.exe": - when: - bit: 64 os: windows @@ -251640,7 +252390,7 @@ Hex Phase: installDir: Hex Phase: {} launch: - /HexPhase.exe: + "/HexPhase.exe": - when: - os: windows store: steam @@ -251655,11 +252405,11 @@ Hex Two: installDir: Hex Two: {} launch: - /hex_two.app: + "/hex_two.app": - when: - os: mac store: steam - /hex_two.exe: + "/hex_two.exe": - when: - os: windows store: steam @@ -251669,25 +252419,25 @@ Hex-Up: installDir: Hex-Up: {} launch: - /Hex-Up/Hex-Up.exe: + "/Hex-Up/Hex-Up.exe": - when: - os: windows store: steam steam: id: 765610 -'Hex: Origins': +"Hex: Origins": installDir: Hex Origins: {} launch: - /Hex Origins.exe: + "/Hex Origins.exe": - when: - os: windows store: steam - /Hex Origins.x86: + "/Hex Origins.x86": - when: - os: linux store: steam - /hexorigins.app: + "/hexorigins.app": - when: - os: mac store: steam @@ -251697,7 +252447,7 @@ HexLab: installDir: HexLab: {} launch: - /HexLab.exe: + "/HexLab.exe": - when: - os: windows store: steam @@ -251707,11 +252457,11 @@ HexON (Minimol): installDir: HexON: {} launch: - /HexON.exe: + "/HexON.exe": - when: - os: windows store: steam - /HexON_Steam.app/Contents/MacOS/HexON: + "/HexON_Steam.app/Contents/MacOS/HexON": - when: - os: mac store: steam @@ -251721,7 +252471,7 @@ HexTrains: installDir: HexTrains: {} launch: - /HexTrains.exe: + "/HexTrains.exe": - when: - os: windows store: steam @@ -251731,15 +252481,15 @@ Hexa: installDir: Hexa: {} launch: - /Hexa.app: + "/Hexa.app": - when: - os: mac store: steam - /Hexa.exe: + "/Hexa.exe": - when: - os: windows store: steam - /Hexa.x86_64: + "/Hexa.x86_64": - when: - os: linux store: steam @@ -251755,11 +252505,11 @@ Hexa Path: installDir: Hexa Path: {} launch: - /Hexa Path.exe: + "/Hexa Path.exe": - when: - os: windows store: steam - /Hexa Path.x86_64: + "/Hexa Path.x86_64": - when: - os: linux store: steam @@ -251769,12 +252519,12 @@ Hexa Trains: installDir: HexaTrains: {} launch: - /Hexa.exe: + "/Hexa.exe": - when: - bit: 64 os: windows store: steam - /launch.sh: + "/launch.sh": - when: - bit: 64 os: linux @@ -251785,11 +252535,11 @@ Hexa Turn: installDir: Hexa Turn: {} launch: - /Hexa Turn.app: + "/Hexa Turn.app": - when: - os: mac store: steam - /Hexa Turn.exe: + "/Hexa Turn.exe": - when: - os: windows store: steam @@ -251799,7 +252549,7 @@ HexaMon: installDir: Hexamon: {} launch: - /HexaMon_Steam.exe: + "/HexaMon_Steam.exe": - when: - os: windows store: steam @@ -251812,12 +252562,12 @@ Hexadrift: installDir: Hexadrift: {} launch: - /Hexadrift.app: + "/Hexadrift.app": - when: - os: mac store: steam - /Hexadrift.exe: - - arguments: '-fullscreen' + "/Hexadrift.exe": + - arguments: "-fullscreen" when: - os: windows store: steam @@ -251830,7 +252580,7 @@ Hexagun: installDir: Hexagun: {} launch: - /Hexagun.exe: + "/Hexagun.exe": - when: - os: windows store: steam @@ -251840,74 +252590,74 @@ Hexahedral Pathfinder: installDir: Hexahedral Pathfinder: {} launch: - /Hexahedral Pathfinder.exe: + "/Hexahedral Pathfinder.exe": - when: - os: windows store: steam steam: id: 915360 -'Hexaluga: Dungeons and Hunting': +"Hexaluga: Dungeons and Hunting": installDir: Dungeons and Hunting: {} launch: - /Dungeons and Hunting.app/Contents/MacOS/Dungeons and Hunting: + "/Dungeons and Hunting.app/Contents/MacOS/Dungeons and Hunting": - when: - os: mac store: steam - /Dungeons and Hunting.exe: + "/Dungeons and Hunting.exe": - when: - os: windows store: steam - /Dungeons and Hunting.linux/Dungeons and Hunting.x86: + "/Dungeons and Hunting.linux/Dungeons and Hunting.x86": - when: - bit: 32 os: linux store: steam - /Dungeons and Hunting.linux/Dungeons and Hunting.x86_64: + "/Dungeons and Hunting.linux/Dungeons and Hunting.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 860670 -'Hexaluga: Weapon and Shield': +"Hexaluga: Weapon and Shield": installDir: Weapon of War Getting Over It with Weapon and Shield Extended: {} launch: - /Weapon of War.app/Contents/MacOS/Weapon of War: + "/Weapon of War.app/Contents/MacOS/Weapon of War": - when: - os: mac store: steam - /Weapon of War.exe: + "/Weapon of War.exe": - when: - os: windows store: steam - /Weapon of War.linux/Weapon of War.x86_64: + "/Weapon of War.linux/Weapon of War.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 845200 -'Hexaluga: Witch Hunter''s Travelling Castle': +"Hexaluga: Witch Hunter's Travelling Castle": installDir: - WHC The Game About Witch Hunter's Moving Castle You've Been So Long Waiting For: {} + "WHC The Game About Witch Hunter's Moving Castle You've Been So Long Waiting For": {} launch: - /WHC.app/Contents/MacOS/WHC: + "/WHC.app/Contents/MacOS/WHC": - when: - os: mac store: steam - /WHC.exe: + "/WHC.exe": - when: - bit: 32 os: windows store: steam - /WHC.linux/WHC.x86: + "/WHC.linux/WHC.x86": - when: - bit: 32 os: linux store: steam - /WHC.linux/WHC.x86_64: + "/WHC.linux/WHC.x86_64": - when: - bit: 64 os: linux @@ -251918,11 +252668,11 @@ Hexanome: installDir: Hexanome: {} launch: - /Hexanome.app: + "/Hexanome.app": - when: - os: mac store: steam - /Hexanome.exe: + "/Hexanome.exe": - when: - os: windows store: steam @@ -251932,22 +252682,22 @@ Hexaverse: installDir: Hexaverse: {} launch: - /client/Visual Client.exe: + "/client/Visual Client.exe": - when: - bit: 64 os: windows store: steam - workingDir: /client + workingDir: "/client" steam: id: 468350 Hexceed: files: - /AppData/LocalLow/ToastieLabs/hexceed/*.save: + "/AppData/LocalLow/ToastieLabs/hexceed/*.save": tags: - save when: - os: windows - /AppData/LocalLow/ToastieLabs/hexceed/main.save: + "/AppData/LocalLow/ToastieLabs/hexceed/main.save": tags: - config when: @@ -251955,15 +252705,15 @@ Hexceed: installDir: hexceed: {} launch: - /hexceed: + "/hexceed": - when: - os: linux store: steam - /hexceed.app: + "/hexceed.app": - when: - os: mac store: steam - /hexceed.exe: + "/hexceed.exe": - when: - os: windows store: steam @@ -251975,19 +252725,19 @@ Hexceed: id: 1463920 Hexcells: files: - /saves/options.txt: + "/saves/options.txt": tags: - config when: - os: windows - os: linux - /saves/slot*.save: + "/saves/slot*.save": tags: - save when: - os: windows - os: linux - /unity3d/Matthew Brown/Hexcells/prefs: + "/unity3d/Matthew Brown/Hexcells/prefs": tags: - config when: @@ -251995,20 +252745,20 @@ Hexcells: installDir: Hexcells: {} launch: - /Hexcells.app: + "/Hexcells.app": - when: - os: mac store: steam - /Hexcells.exe: + "/Hexcells.exe": - when: - os: windows store: steam - /Hexcells.x86: + "/Hexcells.x86": - when: - bit: 32 os: linux store: steam - /Hexcells.x86_64: + "/Hexcells.x86_64": - when: - bit: 64 os: linux @@ -252021,19 +252771,19 @@ Hexcells: id: 265890 Hexcells Infinite: files: - /saves/*.save: + "/saves/*.save": tags: - save when: - os: windows - os: linux - /saves/options.txt: + "/saves/options.txt": tags: - config when: - os: windows - os: linux - /unity3d/Matthew Brown/Hexcells Infinite/prefs: + "/unity3d/Matthew Brown/Hexcells Infinite/prefs": tags: - config when: @@ -252041,20 +252791,20 @@ Hexcells Infinite: installDir: Hexcells Infinite: {} launch: - /Hexcells Infinite.app: + "/Hexcells Infinite.app": - when: - os: mac store: steam - /Hexcells Infinite.exe: + "/Hexcells Infinite.exe": - when: - os: windows store: steam - /Hexcells Infinite.x86: + "/Hexcells Infinite.x86": - when: - bit: 32 os: linux store: steam - /Hexcells Infinite.x86_64: + "/Hexcells Infinite.x86_64": - when: - bit: 64 os: linux @@ -252067,19 +252817,19 @@ Hexcells Infinite: id: 304410 Hexcells Plus: files: - /saves/*.save: + "/saves/*.save": tags: - save when: - os: windows - os: linux - /saves/options.txt: + "/saves/options.txt": tags: - config when: - os: windows - os: linux - /unity3d/Matthew Brown/Hexcells Plus/prefs: + "/unity3d/Matthew Brown/Hexcells Plus/prefs": tags: - config when: @@ -252087,20 +252837,20 @@ Hexcells Plus: installDir: Hexcells Plus: {} launch: - /Hexcells Plus.app: + "/Hexcells Plus.app": - when: - os: mac store: steam - /Hexcells Plus.exe: + "/Hexcells Plus.exe": - when: - os: windows store: steam - /Hexcells Plus.x86: + "/Hexcells Plus.x86": - when: - bit: 32 os: linux store: steam - /Hexcells Plus.x86_64: + "/Hexcells Plus.x86_64": - when: - bit: 64 os: linux @@ -252118,7 +252868,7 @@ Hexed: installDir: Hexed: {} launch: - /Hexed.exe: + "/Hexed.exe": - when: - os: windows store: steam @@ -252128,7 +252878,7 @@ Hexelectric: installDir: Hexelectric: {} launch: - /Hexelectric.exe: + "/Hexelectric.exe": - when: - os: windows store: steam @@ -252138,7 +252888,7 @@ Hexen Hegemony: installDir: Hexen Hegemony: {} launch: - /Salemburg.exe: + "/Salemburg.exe": - when: - bit: 64 os: windows @@ -252147,12 +252897,12 @@ Hexen Hegemony: id: 940630 Hexen II: files: - /data1/*.cfg: + "/data1/*.cfg": tags: - config when: - os: windows - /data1/s*/*.*: + "/data1/s*/*.*": tags: - save when: @@ -252162,24 +252912,24 @@ Hexen II: installDir: Hexen 2: {} launch: - /glh2.exe: + "/glh2.exe": - when: - store: steam steam: id: 9060 -'Hexen: Beyond Heretic': +"Hexen: Beyond Heretic": files: - /base/*.CFG: + "/base/*.CFG": tags: - config when: - os: windows - /base/*.conf: + "/base/*.conf": tags: - config when: - os: windows - /base/HEXNDATA: + "/base/HEXNDATA": tags: - save when: @@ -252194,8 +252944,8 @@ Hexen II: installDir: Hexen: {} launch: - /base/dosbox.exe: - - arguments: base\\hexen.exe -conf base\\hexen.conf -fullscreen -exit + "/base/dosbox.exe": + - arguments: "base\\\\hexen.exe -conf base\\\\hexen.conf -fullscreen -exit" when: - store: steam steam: @@ -252212,11 +252962,11 @@ Hexlide: installDir: Hexlide: {} launch: - /Hexlide.exe: + "/Hexlide.exe": - when: - os: windows store: steam - /start-hexlide.sh: + "/start-hexlide.sh": - when: - bit: 64 os: linux @@ -252227,7 +252977,7 @@ Hexodius: installDir: Hexodius: {} launch: - /hexodius.exe: + "/hexodius.exe": - when: - os: windows store: steam @@ -252237,15 +252987,15 @@ Hexogin: installDir: Hexogin: {} launch: - /Hexogin.app/Contents/MacOS/Hexogin: + "/Hexogin.app/Contents/MacOS/Hexogin": - when: - os: mac store: steam - /Hexogin.exe: + "/Hexogin.exe": - when: - os: windows store: steam - /Hexogin.x86: + "/Hexogin.x86": - when: - os: linux store: steam @@ -252253,12 +253003,12 @@ Hexogin: id: 1149690 Hexologic: files: - /.config/unity3d/MythicOwl/Hexologic: + "/.config/unity3d/MythicOwl/Hexologic": tags: - config when: - os: linux - /userdata//785890/remote/game.sav: + "/userdata//785890/remote/game.sav": tags: - save when: @@ -252266,16 +253016,16 @@ Hexologic: installDir: Hexologic: {} launch: - /Hexologic.exe: + "/Hexologic.exe": - when: - os: windows store: steam - /Hexologic.x86: + "/Hexologic.x86": - when: - bit: 32 os: linux store: steam - /Hexologic.x86_64: + "/Hexologic.x86_64": - when: - bit: 64 os: linux @@ -252290,7 +253040,7 @@ Hexon: installDir: Hexon: {} launch: - /Hexon/Hexon.exe: + "/Hexon/Hexon.exe": - when: - os: windows store: steam @@ -252300,7 +253050,7 @@ Hexopods: installDir: Hexopods: {} launch: - /nw.exe: + "/nw.exe": - when: - bit: 64 os: windows @@ -252311,11 +253061,11 @@ Hexoscope: installDir: Hexoscope: {} launch: - /Hexoscope.exe: + "/Hexoscope.exe": - when: - os: windows store: steam - /HexoscopeMac.app: + "/HexoscopeMac.app": - when: - os: mac store: steam @@ -252323,7 +253073,7 @@ Hexoscope: id: 495780 Hexplore: files: - /SAVE: + "/SAVE": tags: - save when: @@ -252333,15 +253083,15 @@ Hexplore: installDir: Hexplore: {} launch: - /hexplore.exe: + "/hexplore.exe": - when: - os: windows store: steam steam: id: 1257900 -'Hextech Mayhem: A League of Legends Story': +"Hextech Mayhem: A League of Legends Story": files: - /Hextech Mayhem/HextechMayhem_Data/profile.jfg: + "/Hextech Mayhem/HextechMayhem_Data/profile.jfg": tags: - save when: @@ -252351,7 +253101,7 @@ Hexplore: installDir: HextechMayhem: {} launch: - /HextechMayhem.exe: + "/HextechMayhem.exe": - when: - os: windows store: steam @@ -252361,15 +253111,15 @@ Hexteria: installDir: Hexteria: {} launch: - /Hexteria.app/Contents/MacOS/Hexteria: + "/Hexteria.app/Contents/MacOS/Hexteria": - when: - os: mac store: steam - /Hexteria_Linux.x86_64: + "/Hexteria_Linux.x86_64": - when: - os: linux store: steam - /Hexteria_Windows.exe: + "/Hexteria_Windows.exe": - when: - os: windows store: steam @@ -252379,11 +253129,11 @@ Hexterio: installDir: Hexterio: {} launch: - /HexTiles.exe: + "/HexTiles.exe": - when: - os: windows store: steam - /hex_mac.app/Contents/MacOS/hex_mac: + "/hex_mac.app/Contents/MacOS/hex_mac": - when: - os: mac store: steam @@ -252393,15 +253143,15 @@ Hexters: installDir: Hexters: {} launch: - /hexters.app: + "/hexters.app": - when: - os: mac store: steam - /hexters.exe: + "/hexters.exe": - when: - os: windows store: steam - /hexters.x86_64: + "/hexters.x86_64": - when: - os: linux store: steam @@ -252411,7 +253161,7 @@ Hexus: installDir: Hexus: {} launch: - /Hexus.exe: + "/Hexus.exe": - when: - store: steam steam: @@ -252420,20 +253170,20 @@ Hexvade: installDir: Hexvade: {} launch: - /Hexvade.exe: + "/Hexvade.exe": - when: - os: windows store: steam steam: id: 754270 -'Hexx: Heresy of the Wizard': +"Hexx: Heresy of the Wizard": files: - /HEXX*.SAV: + "/HEXX*.SAV": tags: - save when: - os: dos - /HEXX.CFG: + "/HEXX.CFG": tags: - config when: @@ -252442,56 +253192,58 @@ Hexxon: installDir: Hexxon: {} launch: - /Contents/MacOS/Hexxon: + "/Contents/MacOS/Hexxon": - when: - os: mac store: steam - /Hexxon: + "/Hexxon": - when: - os: linux store: steam - /Hexxon.exe: + "/Hexxon.exe": - when: - os: windows store: steam steam: id: 779920 -'Hi-5: Create, Paint and Play': +"Hi-5: Create, Paint and Play": files: - /Hi5.ini: + "/Hi5.ini": tags: - config when: - os: windows Hi-Fi Rush: files: - /Saved Games/TangoGameworks/Hi-Fi RUSH (EGS)/Saved/Condig/WindowsNoEditor: + "/Saved Games/TangoGameworks/Hi-Fi RUSH (EGS)/Saved/Condig/WindowsNoEditor": tags: - config when: - - store: epic - /Saved Games/TangoGameworks/Hi-Fi RUSH (EGS)/Saved/SaveGames: + - os: windows + "/Saved Games/TangoGameworks/Hi-Fi RUSH (EGS)/Saved/SaveGames": tags: - save when: - - store: epic - /Saved Games/TangoGameworks/Hi-Fi RUSH (STEAM)/Saved/Config/WindowsNoEditor: + - os: windows + "/Saved Games/TangoGameworks/Hi-Fi RUSH (STEAM)/Saved/Config/WindowsNoEditor": tags: - config when: - - store: steam - /Saved Games/TangoGameworks/Hi-Fi RUSH (STEAM)/Saved/SaveGames: + - os: windows + store: steam + "/Saved Games/TangoGameworks/Hi-Fi RUSH (STEAM)/Saved/SaveGames": tags: - save when: - - store: steam - /Saved Games/TangoGameworks/Hi-Fi RUSH (Xbox)/Saved/Config/WinGDK: + - os: windows + store: steam + "/Saved Games/TangoGameworks/Hi-Fi RUSH (Xbox)/Saved/Config/WinGDK": tags: - config when: - os: windows store: microsoft - /Packages/BethesdaSoftworks.Hibiki_3275kfvn8vcwc/SystemAppData/wgs: + "/Packages/BethesdaSoftworks.Hibiki_3275kfvn8vcwc/SystemAppData/wgs": tags: - save when: @@ -252506,7 +253258,7 @@ Hi-Fi Rush: installDir: Hi-Fi RUSH: {} launch: - /Hi-Fi-RUSH.exe: + "/Hi-Fi-RUSH.exe": - when: - store: steam steam: @@ -252518,15 +253270,15 @@ Hibi Kake Iro no Kiseki: installDir: HIBIKAKEYIRONOKISEKI: {} launch: - /Game: + "/Game": - when: - os: linux store: steam - /Game.app/Contents/MacOS/nwjs: + "/Game.app/Contents/MacOS/nwjs": - when: - os: mac store: steam - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -252536,15 +253288,15 @@ Hibiscus Red: installDir: Hibiscus Red: {} launch: - /Hibiscus Red: + "/Hibiscus Red": - when: - os: linux store: steam - /Hibiscus Red.app/Contents/MacOS/Hibiscus Red: + "/Hibiscus Red.app/Contents/MacOS/Hibiscus Red": - when: - os: mac store: steam - /Hibiscus Red.exe: + "/Hibiscus Red.exe": - when: - os: windows store: steam @@ -252556,46 +253308,46 @@ Hidden & Dangerous: installDir: Hidden and Dangerous: {} launch: - /HD Deluxe/bin/hde.exe: + "/HD Deluxe/bin/hde.exe": - when: - os: windows store: steam - workingDir: /HD Deluxe - /HD Deluxe/bin/iconfig.exe: + workingDir: "/HD Deluxe" + "/HD Deluxe/bin/iconfig.exe": - when: - os: windows store: steam - workingDir: /HD Deluxe/bin - /HD FF/Setup.exe: + workingDir: "/HD Deluxe/bin" + "/HD FF/Setup.exe": - when: - os: windows store: steam - workingDir: /HD FF - /HD FF/h&d.exe: + workingDir: "/HD FF" + "/HD FF/h&d.exe": - when: - os: windows store: steam - workingDir: /HD FF - /HD/h&d.exe: + workingDir: "/HD FF" + "/HD/h&d.exe": - when: - os: windows store: steam - workingDir: /HD - /HD/setup.exe: + workingDir: "/HD" + "/HD/setup.exe": - when: - os: windows store: steam - workingDir: /HD + workingDir: "/HD" steam: id: 703310 Hidden & Dangerous 2: files: - /PlayersProfiles//*.sav: + "/PlayersProfiles//*.sav": tags: - save when: - os: windows - /PlayersProfiles//Options.bin: + "/PlayersProfiles//Options.bin": tags: - config when: @@ -252605,19 +253357,19 @@ Hidden & Dangerous 2: installDir: Hidden and Dangerous 2: {} launch: - /HD2_SabreSquadron.exe: + "/HD2_SabreSquadron.exe": - when: - os: windows store: steam - /ServerLauncher.exe: + "/ServerLauncher.exe": - when: - os: windows store: steam - /hd2.exe: + "/hd2.exe": - when: - os: windows store: steam - /setup.exe: + "/setup.exe": - when: - os: windows store: steam @@ -252629,7 +253381,7 @@ Hidden & Dangerous 2: id: 703320 Hidden & Dangerous Deluxe: files: - /Savegame: + "/Savegame": tags: - save when: @@ -252639,61 +253391,61 @@ Hidden & Dangerous Deluxe: installDir: Hidden and Dangerous: {} launch: - /HD Deluxe/bin/hde.exe: + "/HD Deluxe/bin/hde.exe": - when: - os: windows store: steam - workingDir: /HD Deluxe - /HD Deluxe/bin/iconfig.exe: + workingDir: "/HD Deluxe" + "/HD Deluxe/bin/iconfig.exe": - when: - os: windows store: steam - workingDir: /HD Deluxe/bin - /HD FF/Setup.exe: + workingDir: "/HD Deluxe/bin" + "/HD FF/Setup.exe": - when: - os: windows store: steam - workingDir: /HD FF - /HD FF/h&d.exe: + workingDir: "/HD FF" + "/HD FF/h&d.exe": - when: - os: windows store: steam - workingDir: /HD FF - /HD/h&d.exe: + workingDir: "/HD FF" + "/HD/h&d.exe": - when: - os: windows store: steam - workingDir: /HD - /HD/setup.exe: + workingDir: "/HD" + "/HD/setup.exe": - when: - os: windows store: steam - workingDir: /HD + workingDir: "/HD" registry: HKEY_LOCAL_MACHINE/SOFTWARE/WOW6432Node/Lonely Cat Games/Hidden and Dangerous Deluxe/Config: tags: - config steam: id: 703310 -'Hidden Animals : Photo Hunt. Seek and Find Game': +"Hidden Animals : Photo Hunt. Seek and Find Game": installDir: Hidden Animals Photo Hunt: {} launch: - /Photo Hunt.app: + "/Photo Hunt.app": - when: - os: mac store: steam - /Photo Hunt.exe: + "/Photo Hunt.exe": - when: - os: windows store: steam steam: id: 922700 -'Hidden Animals: English - Spanish': +"Hidden Animals: English - Spanish": installDir: Hidden Animals English - Spanish: {} launch: - /HiddenAnimalsEnglishSpanish.exe: + "/HiddenAnimalsEnglishSpanish.exe": - when: - os: windows store: steam @@ -252703,15 +253455,15 @@ Hidden Cubes: installDir: Hidden Cubes: {} launch: - /HiddenCubes: + "/HiddenCubes": - when: - os: linux store: steam - /HiddenCubes.app: + "/HiddenCubes.app": - when: - os: mac store: steam - /HiddenCubes.exe: + "/HiddenCubes.exe": - when: - os: windows store: steam @@ -252726,7 +253478,7 @@ Hidden Deep: installDir: Hidden Deep: {} launch: - /hdeep.exe: + "/hdeep.exe": - when: - os: windows store: steam @@ -252736,95 +253488,95 @@ Hidden Dimensions 3: installDir: Hidden Dimensions 3: {} launch: - /HD3.exe: + "/HD3.exe": - when: - os: windows store: steam steam: id: 531540 -'Hidden Dragon Legend: Shadow Trace': +"Hidden Dragon Legend: Shadow Trace": installDir: Hidden Dragon Legend: {} launch: - /HiddenDragonLegend.exe: + "/HiddenDragonLegend.exe": - when: - bit: 64 os: windows store: steam steam: id: 710130 -'Hidden Dragon: Legend': +"Hidden Dragon: Legend": installDir: Hidden Dragon: {} launch: - /HiddenDragonLegend.exe: + "/HiddenDragonLegend.exe": - when: - bit: 64 os: windows store: steam steam: id: 680390 -'Hidden Expedition: Amazon': +"Hidden Expedition: Amazon": installDir: Hidden Expedition Amazon: {} launch: - /Hidden Expedition Amazon.exe: + "/Hidden Expedition Amazon.exe": - when: - store: steam steam: id: 50920 -'Hidden Expedition: Dawn of Prosperity': +"Hidden Expedition: Dawn of Prosperity": installDir: - Hidden Expedition Dawn of Prosperity Collector's Edition: {} + "Hidden Expedition Dawn of Prosperity Collector's Edition": {} launch: - /HiddenExpedition_DawnofProsperity_CE.exe: + "/HiddenExpedition_DawnofProsperity_CE.exe": - when: - store: steam steam: id: 514730 -'Hidden Expedition: Everest': +"Hidden Expedition: Everest": installDir: Hidden Expedition Everest: {} launch: - /Hidden Expedition Everest.exe: + "/Hidden Expedition Everest.exe": - when: - store: steam steam: id: 50930 -'Hidden Expedition: The Crown of Solomon': +"Hidden Expedition: The Crown of Solomon": installDir: - Hidden Expedition The Crown of Solomon Collector's Edition: {} + "Hidden Expedition The Crown of Solomon Collector's Edition": {} launch: - /HiddenExpedition_TheCrownOfSolomonCE.exe: + "/HiddenExpedition_TheCrownOfSolomonCE.exe": - when: - store: steam steam: id: 465990 -'Hidden Expedition: The Fountain of Youth': +"Hidden Expedition: The Fountain of Youth": installDir: - Hidden Expedition The Fountain of Youth Collector's Edition: {} + "Hidden Expedition The Fountain of Youth Collector's Edition": {} launch: - /HiddenExpedition_FountainOfYouth_CE.exe: + "/HiddenExpedition_FountainOfYouth_CE.exe": - when: - os: windows store: steam steam: id: 723940 -'Hidden Expedition: The Pearl of Discord': +"Hidden Expedition: The Pearl of Discord": installDir: - Hidden Expedition The Pearl of Discord Collector's Edition: {} + "Hidden Expedition The Pearl of Discord Collector's Edition": {} launch: - /HiddenExpedition_ThePearlOfDiscord_CE.exe: + "/HiddenExpedition_ThePearlOfDiscord_CE.exe": - when: - os: windows store: steam steam: id: 610550 -'Hidden Expedition: Titanic': +"Hidden Expedition: Titanic": installDir: Hidden Expedition Titanic: {} launch: - /Hidden Expedition Titanic.exe: + "/Hidden Expedition Titanic.exe": - when: - store: steam steam: @@ -252833,7 +253585,7 @@ Hidden Fears (Moonlight Edition): installDir: Hidden Fears (Moonlight Edition): {} launch: - /HiddenFears.exe: + "/HiddenFears.exe": - when: - os: windows store: steam @@ -252841,13 +253593,13 @@ Hidden Fears (Moonlight Edition): id: 1122270 Hidden Folks: files: - /.config/unity3d/Adriaan de Jongh/Hidden Folks: + "/.config/unity3d/Adriaan de Jongh/Hidden Folks": tags: - config - save when: - os: linux - /AppData/LocalLow/Adriaan de Jongh/Hidden Folks: + "/AppData/LocalLow/Adriaan de Jongh/Hidden Folks": tags: - save when: @@ -252855,15 +253607,15 @@ Hidden Folks: installDir: HiddenFolks: {} launch: - /Hidden Folks.app: + "/Hidden Folks.app": - when: - os: mac store: steam - /Hidden Folks.exe: + "/Hidden Folks.exe": - when: - os: windows store: steam - /Hidden Folks.x86_64: + "/Hidden Folks.x86_64": - when: - os: linux store: steam @@ -252873,7 +253625,7 @@ Hidden Life: installDir: Hidden Life: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -252882,33 +253634,33 @@ Hidden Life: Hidden Magic: steam: id: 1013520 -'Hidden Mysteries: Civil War': +"Hidden Mysteries: Civil War": installDir: Hidden Mysteries Civil War: {} launch: - /CivilWar.exe: + "/CivilWar.exe": - when: - os: windows store: steam steam: id: 385390 -'Hidden Mysteries: Royal Family Secrets': +"Hidden Mysteries: Royal Family Secrets": installDir: Hidden Mysteries Royal Family Secrets: {} launch: - /HiddenMysteries_RoyalFamilySecrets.exe: + "/HiddenMysteries_RoyalFamilySecrets.exe": - when: - os: windows store: steam steam: id: 1023720 -'Hidden Mysteries: Titanic': +"Hidden Mysteries: Titanic": gog: id: 2042791644 installDir: Hidden Mysteries Titanic: {} launch: - /Titanic.exe: + "/Titanic.exe": - when: - os: windows store: steam @@ -252918,7 +253670,7 @@ Hidden Object - 12 in 1 bundle: installDir: Hidden Objects - 12 in 1 bundle: {} launch: - /menu.exe: + "/menu.exe": - when: - os: windows store: steam @@ -252928,7 +253680,7 @@ Hidden Object - Food: installDir: Hidden Object - Food: {} launch: - /Hidden Object - Food.exe: + "/Hidden Object - Food.exe": - when: - os: windows store: steam @@ -252938,7 +253690,7 @@ Hidden Object - Sweet Home: installDir: HiddenObjectSweetHome: {} launch: - /HiddenObject.exe: + "/HiddenObject.exe": - when: - bit: 64 os: windows @@ -252949,7 +253701,7 @@ Hidden Object - Tools: installDir: Hidden Object - Tools: {} launch: - /Hidden Object - Tools.exe: + "/Hidden Object - Tools.exe": - when: - os: windows store: steam @@ -252959,21 +253711,21 @@ Hidden Object 6-in-1 bundle: installDir: HiddenObject6-in-1bundle: {} launch: - /HiddenObject6in1.exe: + "/HiddenObject6in1.exe": - when: - os: windows store: steam steam: id: 448400 -'Hidden Object Adventure: Captain Nemo': +"Hidden Object Adventure: Captain Nemo": installDir: Captain Nemo: {} launch: - /Captain Nemo.app: + "/Captain Nemo.app": - when: - os: mac store: steam - /Captain Nemo.exe: + "/Captain Nemo.exe": - when: - os: windows store: steam @@ -252983,7 +253735,7 @@ Hidden Object Bundle 4 in 1: installDir: HiddenObject4in1: {} launch: - /HiddenObject4in1.exe: + "/HiddenObject4in1.exe": - when: - os: windows store: steam @@ -252993,31 +253745,31 @@ Hidden Object Bundle 5 in 1: installDir: HiddenObjectBundle5in1: {} launch: - /5in1Bundle.exe: + "/5in1Bundle.exe": - when: - os: windows store: steam steam: id: 346140 -'Hidden Object: Around the World in 80 Days': +"Hidden Object: Around the World in 80 Days": installDir: Around the World in 80 days: {} launch: - /Around The World in 80 Days.app: + "/Around The World in 80 Days.app": - when: - os: mac store: steam - /Around the world.exe: + "/Around the world.exe": - when: - os: windows store: steam steam: id: 736860 -'Hidden Object: Home Makeover': +"Hidden Object: Home Makeover": installDir: Hidden Object Home Makeover: {} launch: - /HomeMakeover.exe: + "/HomeMakeover.exe": - when: - os: windows store: steam @@ -253032,11 +253784,11 @@ Hidden Paws: installDir: Hidden Paws: {} launch: - /Contents/MacOS/Hidden Paws: + "/Contents/MacOS/Hidden Paws": - when: - os: mac store: steam - /Hidden Paws.exe: + "/Hidden Paws.exe": - when: - os: windows store: steam @@ -253046,7 +253798,7 @@ Hidden Paws Mystery: installDir: Hidden Paws Mystery: {} launch: - /Hidden Paws Mystery.exe: + "/Hidden Paws Mystery.exe": - when: - os: windows store: steam @@ -253056,26 +253808,26 @@ Hidden Protector: installDir: ROADTRIP: {} launch: - /Roadtrip.exe: + "/Roadtrip.exe": - when: - bit: 64 os: windows store: steam steam: id: 838190 -'Hidden Saga: Xamadeon Stone': +"Hidden Saga: Xamadeon Stone": installDir: Secret Saga: {} launch: - /SecretSaga.app: + "/SecretSaga.app": - when: - os: mac store: steam - /SecretSaga.exe: + "/SecretSaga.exe": - when: - os: windows store: steam - /SecretSaga.x86_64: + "/SecretSaga.x86_64": - when: - os: linux store: steam @@ -253085,7 +253837,7 @@ Hidden Star in Four Seasons: installDir: th16: {} launch: - /th16.exe: + "/th16.exe": - when: - os: windows store: steam @@ -253093,12 +253845,12 @@ Hidden Star in Four Seasons: id: 745880 Hidden Target: files: - /ar.cfg: + "/ar.cfg": tags: - config when: - os: windows - /save: + "/save": tags: - save when: @@ -253107,7 +253859,7 @@ Hidden World of Art 2: installDir: Hidden World of Art: {} launch: - /art2.exe: + "/art2.exe": - when: - os: windows store: steam @@ -253115,17 +253867,17 @@ Hidden World of Art 2: id: 1182200 Hidden in Plain Sight: files: - /Library/Application Support/HiddenInPlainSight: + "/Library/Application Support/HiddenInPlainSight": tags: - config when: - os: mac - /Saved Games/HiddenInPlainSight: + "/Saved Games/HiddenInPlainSight": tags: - config when: - os: windows - /HiddenInPlainSight: + "/HiddenInPlainSight": tags: - config when: @@ -253133,15 +253885,15 @@ Hidden in Plain Sight: installDir: HiddenInPlainSight: {} launch: - /Hidden in Plain Sight.app/Contents/MacOS/HiddenInPlainSight: + "/Hidden in Plain Sight.app/Contents/MacOS/HiddenInPlainSight": - when: - os: mac store: steam - /HiddenInPlainSight: + "/HiddenInPlainSight": - when: - os: linux store: steam - /HiddenInPlainSight.exe: + "/HiddenInPlainSight.exe": - when: - os: windows store: steam @@ -253149,7 +253901,7 @@ Hidden in Plain Sight: id: 303590 Hidden through Time: files: - /AppData/LocalLow/Crazy Monkey Studios/Hidden Through Time: + "/AppData/LocalLow/Crazy Monkey Studios/Hidden Through Time": tags: - save when: @@ -253168,26 +253920,26 @@ Hidden through Time: installDir: Hidden: {} launch: - /Hidden.app: + "/Hidden.app": - when: - os: mac store: steam - /Hidden.exe: + "/Hidden.exe": - when: - bit: 64 os: windows store: steam steam: id: 524910 -'Hidden: On the Trail of the Ancients': +"Hidden: On the Trail of the Ancients": files: - /steamapps/common/Hidden on the Trail of the Ancients/config.cfg: + "/steamapps/common/Hidden on the Trail of the Ancients/config.cfg": tags: - config when: - os: windows store: steam - /steamapps/common/Hidden on the Trail of the Ancients/savegames: + "/steamapps/common/Hidden on the Trail of the Ancients/savegames": tags: - save when: @@ -253196,7 +253948,7 @@ Hidden through Time: installDir: Hidden On the trail of the Ancients: {} launch: - /hidden.exe: + "/hidden.exe": - when: - os: windows store: steam @@ -253206,27 +253958,27 @@ Hide & Hold Out - H2o: installDir: h2o_game: {} launch: - /h2o.app: + "/h2o.app": - when: - os: mac store: steam - /h2o.x86: + "/h2o.x86": - when: - bit: 32 os: linux store: steam - /h2o.x86_64: + "/h2o.x86_64": - when: - bit: 64 os: linux store: steam - /launch_h2o.exe: + "/launch_h2o.exe": - when: - os: windows store: steam steam: id: 377140 -'Hide & Spook: The Haunted Alchemist': +"Hide & Spook: The Haunted Alchemist": installDir: HideAndSpook: {} steam: @@ -253243,45 +253995,45 @@ Hide and Go Boom: installDir: Hide and go boom: {} launch: - /HideAndGoBoom.app/Contents/MacOS/HideAndGoBoom: + "/HideAndGoBoom.app/Contents/MacOS/HideAndGoBoom": - when: - os: mac store: steam - /HideAndGoBoom.exe: + "/HideAndGoBoom.exe": - when: - bit: 64 os: windows store: steam - /HideAndGoBoom.sh: + "/HideAndGoBoom.sh": - when: - bit: 64 os: linux store: steam steam: id: 716040 -'Hide and Secret: The Lost World': +"Hide and Secret: The Lost World": installDir: HNS4-Lost-World: {} launch: - /HideAndSecret4.exe: + "/HideAndSecret4.exe": - when: - os: windows store: steam steam: id: 1184640 -'Hide and Secret: Treasure of the Ages': +"Hide and Secret: Treasure of the Ages": installDir: Hide and Secret Treasure of the Ages: {} launch: - /HideAndSecretTreasureOfTheAges.app: + "/HideAndSecretTreasureOfTheAges.app": - when: - os: mac store: steam - /HideAndSecretTreasureOfTheAges.exe: + "/HideAndSecretTreasureOfTheAges.exe": - when: - os: windows store: steam - /HideAndSecretTreasureOfTheAges.x86: + "/HideAndSecretTreasureOfTheAges.x86": - when: - os: linux store: steam @@ -253291,7 +254043,7 @@ Hide and Seek: installDir: hide-and-seek: {} launch: - /hns.exe: + "/hns.exe": - when: - bit: 64 os: windows @@ -253302,7 +254054,7 @@ Hide and Seek (2019): installDir: Hide and Seek: {} launch: - /HideAndSeek.exe: + "/HideAndSeek.exe": - when: - bit: 64 os: windows @@ -253314,12 +254066,12 @@ Hide and Seek (Jamong): id: 1188520 Hide and Shriek: files: - /HideandShriek/Saved/Config/WindowsNoEditor: + "/HideandShriek/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /HideandShriek/Saved/SaveGames: + "/HideandShriek/Saved/SaveGames": tags: - save when: @@ -253327,7 +254079,7 @@ Hide and Shriek: installDir: HideandShriek: {} launch: - /HideandShriek.exe: + "/HideandShriek.exe": - when: - bit: 64 os: windows @@ -253338,7 +254090,7 @@ Hide or Die: installDir: HideOrDie: {} launch: - /HideOrDie.exe: + "/HideOrDie.exe": - when: - os: windows store: steam @@ -253348,7 +254100,7 @@ Hide the Body: installDir: Hide The Body: {} launch: - /Hide The Body.exe: + "/Hide The Body.exe": - when: - os: windows store: steam @@ -253358,7 +254110,7 @@ Hide vs. Seek: installDir: Hide vs. Seek: {} launch: - /HideAndSeek.exe: + "/HideAndSeek.exe": - when: - os: windows store: steam @@ -253368,15 +254120,15 @@ Hiding Spot: installDir: Hiding Spot: {} launch: - /Hiding Spot.exe: + "/Hiding Spot.exe": - when: - os: windows store: steam - /HidingSpot.app: + "/HidingSpot.app": - when: - os: mac store: steam - /hidingspot.x86_64: + "/hidingspot.x86_64": - when: - os: linux store: steam @@ -253386,7 +254138,7 @@ Hieroglyphika: installDir: Hieroglyphika: {} launch: - /hieroglyphika.exe: + "/hieroglyphika.exe": - when: - os: windows store: steam @@ -253396,7 +254148,7 @@ High Cats: installDir: High Cats: {} launch: - /HighCats-Desktop.exe: + "/HighCats-Desktop.exe": - when: - os: windows store: steam @@ -253414,7 +254166,7 @@ High Fidelity: id: 390540 High Hell: files: - /AppData/LocalLow/TerriVellmann/HIGH HELL: + "/AppData/LocalLow/TerriVellmann/HIGH HELL": tags: - save when: @@ -253422,11 +254174,11 @@ High Hell: installDir: High Hell: {} launch: - /HIGHHELL.app: + "/HIGHHELL.app": - when: - os: mac store: steam - /HIGHHELL.exe: + "/HIGHHELL.exe": - when: - os: windows store: steam @@ -253448,7 +254200,7 @@ High Noon: id: 738230 High Noon Revolver: files: - /Highnoon_Revolver: + "/Highnoon_Revolver": tags: - save when: @@ -253456,11 +254208,11 @@ High Noon Revolver: installDir: High Noon Revolver: {} launch: - /High Noon Revolver.exe: + "/High Noon Revolver.exe": - when: - os: windows store: steam - /run.sh: + "/run.sh": - when: - os: linux store: steam @@ -253475,7 +254227,7 @@ High Octane Drift: installDir: High Octane Drift: {} launch: - /HighOctaneDrift.exe: + "/HighOctaneDrift.exe": - when: - os: windows store: steam @@ -253485,7 +254237,7 @@ High On Racing: installDir: High On Racing: {} launch: - /racer.exe: + "/racer.exe": - when: - os: windows store: steam @@ -253495,23 +254247,23 @@ High Profits: installDir: High Profits: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam - /game.x86: + "/game.x86": - when: - os: linux store: steam - /mactest.app/Contents/MacOS/mactest: + "/mactest.app/Contents/MacOS/mactest": - when: - os: mac store: steam steam: id: 545650 -'High School Musical 3: Senior Year Dance': +"High School Musical 3: Senior Year Dance": files: - /SaveGames: + "/SaveGames": tags: - save when: @@ -253519,7 +254271,7 @@ High Profits: installDir: High School Musical 3: {} launch: - /hsm.exe: + "/hsm.exe": - when: - store: steam steam: @@ -253528,11 +254280,11 @@ High School Otome: installDir: High School Otome: {} launch: - /nw-app.app: + "/nw-app.app": - when: - os: mac store: steam - /nw-app.exe: + "/nw-app.exe": - when: - os: windows store: steam @@ -253542,28 +254294,28 @@ High School Simulator: installDir: High School Simulator: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam - /mac.app: + "/mac.app": - when: - os: mac store: steam steam: id: 754620 -'High School: bisexual experience': +"High School: bisexual experience": steam: id: 909860 High Speed Trains: installDir: High Speed Trains: {} launch: - /High Speed Trains.app/Contents/MacOS/High Speed Trains: + "/High Speed Trains.app/Contents/MacOS/High Speed Trains": - when: - os: mac store: steam - /High Speed Trains.exe: + "/High Speed Trains.exe": - when: - os: windows store: steam @@ -253571,7 +254323,7 @@ High Speed Trains: id: 816660 High Strangeness: files: - /save: + "/save": tags: - save when: @@ -253579,20 +254331,20 @@ High Strangeness: installDir: High Strangeness: {} launch: - /HS.app: + "/HS.app": - when: - os: mac store: steam - /HS.exe: + "/HS.exe": - when: - os: windows store: steam - /HS.x86: + "/HS.x86": - when: - bit: 32 os: linux store: steam - /HS.x86_64: + "/HS.x86_64": - when: - bit: 64 os: linux @@ -253610,22 +254362,23 @@ High Templar VR: id: 588550 High on Life: files: - /Oregon/Saved/Config/WinGDK: + "/Oregon/Saved/Config/WinGDK": tags: - config when: - os: windows - /Oregon/Saved/Config/WindowsNoEditor: + "/Oregon/Saved/Config/WindowsNoEditor": tags: - config when: - - store: steam - /Oregon/Saved/SaveGames: + - os: windows + store: steam + "/Oregon/Saved/SaveGames": tags: - save when: - os: windows - /Packages/2637SquanchGamesInc.HighonLife_mh7dg3tfmz2cj/SystemAppData/wgs/: + "/Packages/2637SquanchGamesInc.HighonLife_mh7dg3tfmz2cj/SystemAppData/wgs/": tags: - save when: @@ -253634,49 +254387,49 @@ High on Life: installDir: HighOnLife: {} launch: - /Oregon.exe: + "/Oregon.exe": - when: - store: steam steam: id: 1583230 HighFleet: files: - /Config.ini: + "/Config.ini": tags: - config when: - os: windows - /Saves: + "/Saves": tags: - save when: - os: windows - /SavesSkirmish: + "/SavesSkirmish": tags: - save when: - os: windows - /Ships: + "/Ships": tags: - save when: - os: windows - /steamapps/common/HighFleet/Config.ini: + "/steamapps/common/HighFleet/Config.ini": tags: - config when: - store: steam - /steamapps/common/HighFleet/Saves: + "/steamapps/common/HighFleet/Saves": tags: - save when: - store: steam - /steamapps/common/HighFleet/SavesSkirmish: + "/steamapps/common/HighFleet/SavesSkirmish": tags: - save when: - store: steam - /steamapps/common/HighFleet/Ships: + "/steamapps/common/HighFleet/Ships": tags: - save when: @@ -253686,7 +254439,7 @@ HighFleet: installDir: HighFleet: {} launch: - /Highfleet.exe: + "/Highfleet.exe": - when: - os: windows store: steam @@ -253696,7 +254449,7 @@ Highball: installDir: Highball: {} launch: - /Highball.exe: + "/Highball.exe": - when: - os: windows store: steam @@ -253706,11 +254459,11 @@ Highborn: installDir: Highborn: {} launch: - /Highborn.app: + "/Highborn.app": - when: - os: mac store: steam - /Highborn.exe: + "/Highborn.exe": - when: - os: windows store: steam @@ -253720,7 +254473,7 @@ Higher Ground: installDir: HIGHER GROUND: {} launch: - /HigherGround.exe: + "/HigherGround.exe": - when: - bit: 64 os: windows @@ -253731,7 +254484,7 @@ Highland Warriors: installDir: Highland Warriors: {} launch: - /hw.exe: + "/hw.exe": - when: - os: windows store: steam @@ -253741,26 +254494,26 @@ Highlands: installDir: Highlands: {} launch: - /Highlands.exe: + "/Highlands.exe": - when: - bit: 32 os: windows store: steam steam: id: 359920 -'Highlands, Deep Waters': +"Highlands, Deep Waters": installDir: - 'Highlands, Deep Waters': {} + "Highlands, Deep Waters": {} launch: - /Highlands Deep Waters.app/Contents/MacOS/Highlands Deep Waters: + "/Highlands Deep Waters.app/Contents/MacOS/Highlands Deep Waters": - when: - os: mac store: steam - /HighlandsDeepWaters: + "/HighlandsDeepWaters": - when: - os: linux store: steam - /HighlandsDeepWaters.exe: + "/HighlandsDeepWaters.exe": - when: - os: windows store: steam @@ -253770,7 +254523,7 @@ Highlight: installDir: Highlight: {} launch: - /Highlight.exe: + "/Highlight.exe": - when: - store: steam steam: @@ -253779,7 +254532,7 @@ Highly Likely: installDir: Highly Likely: {} launch: - /Highly Likely.exe: + "/Highly Likely.exe": - when: - os: windows store: steam @@ -253787,12 +254540,12 @@ Highly Likely: id: 1122780 Highrise City: files: - /CityNext/Saved/Config/WindowsNoEditor: + "/CityNext/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /CityNext/Saved/SaveGames: + "/CityNext/Saved/SaveGames": tags: - save when: @@ -253807,18 +254560,18 @@ Highrise City: installDir: City Next: {} launch: - /HighriseCity.exe: + "/HighriseCity.exe": - when: - bit: 64 os: windows store: steam steam: id: 1489970 -'Highrise Heroes: Word Challenge': +"Highrise Heroes: Word Challenge": installDir: highriseheroes: {} launch: - /Highrise.exe: + "/Highrise.exe": - when: - store: steam steam: @@ -253829,7 +254582,7 @@ Highrisers: installDir: Highrisers: {} launch: - /Highrisers.exe: + "/Highrisers.exe": - when: - os: windows store: steam @@ -253839,7 +254592,7 @@ Highschool Girlfriend: installDir: Santa Girls: {} launch: - /SantaGirls.exe: + "/SantaGirls.exe": - when: - os: windows store: steam @@ -253847,17 +254600,17 @@ Highschool Girlfriend: id: 467710 Highschool Possession: files: - /game/saves: + "/game/saves": tags: - save when: - os: windows - /renpy/config.py: + "/renpy/config.py": tags: - config when: - os: windows - /renpy/hspossess: + "/renpy/hspossess": tags: - save when: @@ -253865,15 +254618,15 @@ Highschool Possession: installDir: Highschool Possession: {} launch: - /Highschool Possession.app: + "/Highschool Possession.app": - when: - os: mac store: steam - /Highschool Possession.exe: + "/Highschool Possession.exe": - when: - os: windows store: steam - /Highschool Possession.sh: + "/Highschool Possession.sh": - when: - os: linux store: steam @@ -253883,33 +254636,33 @@ Highschool Romance: installDir: Highschool Romance: {} launch: - /HSRomance.app: + "/HSRomance.app": - when: - os: mac store: steam - /HSRomance.exe: + "/HSRomance.exe": - when: - os: windows store: steam - /HSRomance.sh: + "/HSRomance.sh": - when: - os: linux store: steam steam: id: 398100 -'Highschool Romance: Magi Trials': +"Highschool Romance: Magi Trials": installDir: HSR Magi Trials: {} launch: - /MagiTrials.app: + "/MagiTrials.app": - when: - os: mac store: steam - /MagiTrials.exe: + "/MagiTrials.exe": - when: - os: windows store: steam - /MagiTrials.sh: + "/MagiTrials.sh": - when: - os: linux store: steam @@ -253919,7 +254672,7 @@ Highscore Hunter Hodgepodge: installDir: Highscore Hunter Hodgepodge: {} launch: - /HHH.exe: + "/HHH.exe": - when: - os: windows store: steam @@ -253929,7 +254682,7 @@ Highscore Processing Unit: installDir: Highscore Processing Unit: {} launch: - /HPU.exe: + "/HPU.exe": - when: - os: windows store: steam @@ -253937,28 +254690,28 @@ Highscore Processing Unit: id: 842760 Highway Blossoms: files: - /game/saves: + "/game/saves": tags: - save when: - os: windows - os: linux - /renpy/config.py: + "/renpy/config.py": tags: - config when: - os: windows - /.renpy/Highway Blossoms Remastered-15500000: + "/.renpy/Highway Blossoms Remastered-15500000": tags: - save when: - os: linux - /Library/RenPy/Highway Blossoms Remastered-15500000: + "/Library/RenPy/Highway Blossoms Remastered-15500000": tags: - save when: - os: mac - /RenPy/Highway Blossoms-1445311445: + "/RenPy/Highway Blossoms-1445311445": tags: - save when: @@ -253968,15 +254721,15 @@ Highway Blossoms: installDir: Highway Blossoms: {} launch: - /HighwayBlossoms.app: + "/HighwayBlossoms.app": - when: - os: mac store: steam - /HighwayBlossoms.exe: + "/HighwayBlossoms.exe": - when: - os: windows store: steam - /HighwayBlossoms.sh: + "/HighwayBlossoms.sh": - when: - os: linux store: steam @@ -253986,16 +254739,16 @@ Highway Game: installDir: Highway Game: {} launch: - /Highway Game.app: + "/Highway Game.app": - when: - os: mac store: steam - /Highway Game.exe: + "/Highway Game.exe": - when: - bit: 64 os: windows store: steam - /HighwayGame.x86_64: + "/HighwayGame.x86_64": - when: - bit: 64 os: linux @@ -254006,7 +254759,7 @@ Highway Junkie: installDir: Highway Junkie: {} launch: - /HighwayJunkie.exe: + "/HighwayJunkie.exe": - when: - os: windows store: steam @@ -254021,15 +254774,15 @@ Highway Wars: installDir: Highway Wars: {} launch: - /Highway Wars.app/Contents/MacOS/Highway Wars: + "/Highway Wars.app/Contents/MacOS/Highway Wars": - when: - os: mac store: steam - /HighwayWars: + "/HighwayWars": - when: - os: linux store: steam - /HighwayWars.exe: + "/HighwayWars.exe": - when: - os: windows store: steam @@ -254044,7 +254797,7 @@ Highway to the Moon: installDir: Highway to the Moon: {} launch: - /RunHighway.bat: + "/RunHighway.bat": - when: - os: windows store: steam @@ -254052,18 +254805,18 @@ Highway to the Moon: id: 488330 Higurashi When They Cry Hou - Ch.1 Onikakushi: files: - /.config/unity3d/MangaGamer/Higurashi When They Cry _ Ch_1 Onikakushi: + "/.config/unity3d/MangaGamer/Higurashi When They Cry _ Ch_1 Onikakushi": tags: - config - save when: - os: linux - /Library/Application Support/unity.MangaGamer.Higurashi When They Cry - Ch.1 Onikakushi: + "/Library/Application Support/unity.MangaGamer.Higurashi When They Cry - Ch.1 Onikakushi": tags: - save when: - os: mac - /Mangagamer/higurashi01: + "/Mangagamer/higurashi01": tags: - save when: @@ -254073,15 +254826,15 @@ Higurashi When They Cry Hou - Ch.1 Onikakushi: installDir: Higurashi When They Cry: {} launch: - /HigurashiEp01.app: + "/HigurashiEp01.app": - when: - os: mac store: steam - /HigurashiEp01.exe: + "/HigurashiEp01.exe": - when: - os: windows store: steam - /HigurashiEp01.x86: + "/HigurashiEp01.x86": - when: - os: linux store: steam @@ -254093,27 +254846,27 @@ Higurashi When They Cry Hou - Ch.1 Onikakushi: id: 310360 Higurashi When They Cry Hou - Ch.2 Watanagashi: files: - /.config/unity3d/MangaGamer/Higurashi When They Cry - Ch.2 Watanagashi: + "/.config/unity3d/MangaGamer/Higurashi When They Cry - Ch.2 Watanagashi": tags: - save when: - os: linux - /.config/unity3d/MangaGamer/Higurashi When They Cry _ Ch.2 Watanagashi: + "/.config/unity3d/MangaGamer/Higurashi When They Cry _ Ch.2 Watanagashi": tags: - save when: - os: linux - /.config/unity3d/MangaGamer/Higurashi When They Cry _ Ch_2 Watanagashi: + "/.config/unity3d/MangaGamer/Higurashi When They Cry _ Ch_2 Watanagashi": tags: - config when: - os: linux - /Library/Application Support/unity.MangaGamer.Higurashi When They Cry - Ch.2 Watanagashi: + "/Library/Application Support/unity.MangaGamer.Higurashi When They Cry - Ch.2 Watanagashi": tags: - save when: - os: mac - /Mangagamer/higurashi02: + "/Mangagamer/higurashi02": tags: - config - save @@ -254124,15 +254877,15 @@ Higurashi When They Cry Hou - Ch.2 Watanagashi: installDir: Higurashi 02 - Watanagashi: {} launch: - /HigurashiEp02.app: + "/HigurashiEp02.app": - when: - os: mac store: steam - /HigurashiEp02.exe: + "/HigurashiEp02.exe": - when: - os: windows store: steam - /HigurashiEp02.x86: + "/HigurashiEp02.x86": - when: - os: linux store: steam @@ -254140,13 +254893,13 @@ Higurashi When They Cry Hou - Ch.2 Watanagashi: id: 410890 Higurashi When They Cry Hou - Ch.3 Tatarigoroshi: files: - /.config/unity3d/MangaGamer/Higurashi When They Cry - Ch.3 Tatarigoroshi: + "/.config/unity3d/MangaGamer/Higurashi When They Cry - Ch.3 Tatarigoroshi": tags: - config - save when: - os: linux - /Mangagamer/higurashi03: + "/Mangagamer/higurashi03": tags: - config - save @@ -254157,20 +254910,20 @@ Higurashi When They Cry Hou - Ch.3 Tatarigoroshi: installDir: Higurashi 03 - Tatarigoroshi: {} launch: - /HigurashiEp03.app: + "/HigurashiEp03.app": - when: - os: mac store: steam - /HigurashiEp03.exe: + "/HigurashiEp03.exe": - when: - os: windows store: steam - /HigurashiEp03.x86: + "/HigurashiEp03.x86": - when: - bit: 32 os: linux store: steam - /HigurashiEp03.x86_64: + "/HigurashiEp03.x86_64": - when: - bit: 64 os: linux @@ -254179,13 +254932,13 @@ Higurashi When They Cry Hou - Ch.3 Tatarigoroshi: id: 472870 Higurashi When They Cry Hou - Ch.4 Himatsubushi: files: - /.config/unity3d/MangaGamer/Higurashi When They Cry - Ch.4 Himatsubushi: + "/.config/unity3d/MangaGamer/Higurashi When They Cry - Ch.4 Himatsubushi": tags: - config - save when: - os: linux - /Mangagamer/higurashi04: + "/Mangagamer/higurashi04": tags: - config - save @@ -254196,20 +254949,20 @@ Higurashi When They Cry Hou - Ch.4 Himatsubushi: installDir: Higurashi 04 - Himatsubushi: {} launch: - /HigurashiEp04.app: + "/HigurashiEp04.app": - when: - os: mac store: steam - /HigurashiEp04.exe: + "/HigurashiEp04.exe": - when: - os: windows store: steam - /HigurashiEp04.x86: + "/HigurashiEp04.x86": - when: - bit: 32 os: linux store: steam - /HigurashiEp04.x86_64: + "/HigurashiEp04.x86_64": - when: - bit: 64 os: linux @@ -254218,13 +254971,13 @@ Higurashi When They Cry Hou - Ch.4 Himatsubushi: id: 526490 Higurashi When They Cry Hou - Ch.5 Meakashi: files: - /.config/unity3d/MangaGamer/Higurashi When They Cry - Ch.5 Meakashi: + "/.config/unity3d/MangaGamer/Higurashi When They Cry - Ch.5 Meakashi": tags: - config - save when: - os: linux - /Mangagamer/higurashi05: + "/Mangagamer/higurashi05": tags: - config - save @@ -254235,20 +254988,20 @@ Higurashi When They Cry Hou - Ch.5 Meakashi: installDir: Higurashi When They Cry Hou - Ch. 5 Meakashi: {} launch: - /HigurashiEp05.app: + "/HigurashiEp05.app": - when: - os: mac store: steam - /HigurashiEp05.exe: + "/HigurashiEp05.exe": - when: - os: windows store: steam - /HigurashiEp05.x86: + "/HigurashiEp05.x86": - when: - bit: 32 os: linux store: steam - /HigurashiEp05.x86_64: + "/HigurashiEp05.x86_64": - when: - bit: 64 os: linux @@ -254257,13 +255010,13 @@ Higurashi When They Cry Hou - Ch.5 Meakashi: id: 577480 Higurashi When They Cry Hou - Ch.6 Tsumihoroboshi: files: - /.config/unity3d/MangaGamer/Higurashi When They Cry - Ch.6 Tsumihoroboshi: + "/.config/unity3d/MangaGamer/Higurashi When They Cry - Ch.6 Tsumihoroboshi": tags: - config - save when: - os: linux - /Mangagamer/higurashi06: + "/Mangagamer/higurashi06": tags: - config - save @@ -254274,20 +255027,20 @@ Higurashi When They Cry Hou - Ch.6 Tsumihoroboshi: installDir: Higurashi When They Cry Hou - Ch.6 Tsumihoroboshi: {} launch: - /HigurashiEp06.app: + "/HigurashiEp06.app": - when: - os: mac store: steam - /HigurashiEp06.exe: + "/HigurashiEp06.exe": - when: - os: windows store: steam - /HigurashiEp06.x86: + "/HigurashiEp06.x86": - when: - bit: 32 os: linux store: steam - /HigurashiEp06.x86_64: + "/HigurashiEp06.x86_64": - when: - bit: 64 os: linux @@ -254296,13 +255049,13 @@ Higurashi When They Cry Hou - Ch.6 Tsumihoroboshi: id: 668350 Higurashi When They Cry Hou - Ch.7 Minagoroshi: files: - /.config/unity3d/MangaGamer/Higurashi When They Cry - Ch.7 Minagoroshi: + "/.config/unity3d/MangaGamer/Higurashi When They Cry - Ch.7 Minagoroshi": tags: - config - save when: - os: linux - /Mangagamer/higurashi07: + "/Mangagamer/higurashi07": tags: - save when: @@ -254312,20 +255065,20 @@ Higurashi When They Cry Hou - Ch.7 Minagoroshi: installDir: Higurashi When They Cry Hou - Ch.7 Minagoroshi: {} launch: - /HigurashiEp07.app: + "/HigurashiEp07.app": - when: - os: mac store: steam - /HigurashiEp07.exe: + "/HigurashiEp07.exe": - when: - os: windows store: steam - /HigurashiEp07.x86: + "/HigurashiEp07.x86": - when: - bit: 32 os: linux store: steam - /HigurashiEp07.x86_64: + "/HigurashiEp07.x86_64": - when: - bit: 64 os: linux @@ -254338,13 +255091,13 @@ Higurashi When They Cry Hou - Ch.7 Minagoroshi: id: 1034940 Higurashi When They Cry Hou - Ch.8 Matsuribayashi: files: - /.config/unity3d/MangaGamer/Higurashi When They Cry - Ch.8 Matsuribayashi: + "/.config/unity3d/MangaGamer/Higurashi When They Cry - Ch.8 Matsuribayashi": tags: - config - save when: - os: linux - /Mangagamer/higurashi08: + "/Mangagamer/higurashi08": tags: - save when: @@ -254354,20 +255107,20 @@ Higurashi When They Cry Hou - Ch.8 Matsuribayashi: installDir: Higurashi When They Cry Hou - Ch.8 Matsuribayashi: {} launch: - /HigurashiEp08.app: + "/HigurashiEp08.app": - when: - os: mac store: steam - /HigurashiEp08.exe: + "/HigurashiEp08.exe": - when: - os: windows store: steam - /HigurashiEp08.x86: + "/HigurashiEp08.x86": - when: - bit: 32 os: linux store: steam - /HigurashiEp08.x86_64: + "/HigurashiEp08.x86_64": - when: - bit: 64 os: linux @@ -254384,15 +255137,15 @@ Higurashi When They Cry Hou - Rei: installDir: Higurashi When They Cry Hou - Rei: {} launch: - /HigurashiEp09.app: + "/HigurashiEp09.app": - when: - os: mac store: steam - /HigurashiEp09.exe: + "/HigurashiEp09.exe": - when: - os: windows store: steam - /HigurashiEp09.x86_64: + "/HigurashiEp09.x86_64": - when: - os: linux store: steam @@ -254400,7 +255153,7 @@ Higurashi When They Cry Hou - Rei: id: 1941110 Hiiro: files: - /hiiro_steam/hiirosave.txt: + "/hiiro_steam/hiirosave.txt": tags: - save when: @@ -254408,7 +255161,7 @@ Hiiro: installDir: Hiiro: {} launch: - /Hiiro.exe: + "/Hiiro.exe": - when: - os: windows store: steam @@ -254421,7 +255174,7 @@ Hikari! Clover Rescue: installDir: Hikari! Clover Rescue: {} launch: - /HikariCloverRescue.exe: + "/HikariCloverRescue.exe": - when: - os: windows store: steam @@ -254431,15 +255184,15 @@ Hikari! Love Potion: installDir: Hikari! Love Potion: {} launch: - /LovePotion.app: + "/LovePotion.app": - when: - os: mac store: steam - /LovePotion.exe: + "/LovePotion.exe": - when: - os: windows store: steam - /LovePotion.sh: + "/LovePotion.sh": - when: - os: linux store: steam @@ -254449,17 +255202,17 @@ Hikariblade RPG: installDir: Hikariblade RPG: {} launch: - /Hikariblade.exe: + "/Hikariblade.exe": - when: - os: windows store: steam steam: id: 800410 -Hikaru's Cube: +"Hikaru's Cube": installDir: HikarusCube: {} launch: - /windows_content/HikarusCube.exe: + "/windows_content/HikarusCube.exe": - when: - os: windows store: steam @@ -254469,7 +255222,7 @@ HikeJam: installDir: HikeJam: {} launch: - /HikeJam.exe: + "/HikeJam.exe": - when: - os: windows store: steam @@ -254479,7 +255232,7 @@ Hikikomori No Chuunibyou: installDir: Hikikomori No Chuunibyou: {} launch: - /Hikikomori No Chuunibyou.exe: + "/Hikikomori No Chuunibyou.exe": - when: - os: windows store: steam @@ -254489,7 +255242,7 @@ Hiking Simulator 2017: installDir: Hiking Simulator 2017: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -254499,7 +255252,7 @@ Hiking Simulator 2018: installDir: Hiking Simulator 2018: {} launch: - /HikinSim.exe: + "/HikinSim.exe": - when: - store: steam steam: @@ -254508,15 +255261,15 @@ Hilda Bewildered: installDir: Hilda Bewildered: {} launch: - /HildaBewildered-desktop.app: + "/HildaBewildered-desktop.app": - when: - os: mac store: steam - /HildaBewildered.exe: + "/HildaBewildered.exe": - when: - os: windows store: steam - /launch_Hilda.sh: + "/launch_Hilda.sh": - when: - bit: 64 os: linux @@ -254525,13 +255278,13 @@ Hilda Bewildered: id: 1071030 Hill Climb Racing: files: - /Packages/Fingersoft.HillClimbRacing_r6rtpscs7gwyg/Settings: + "/Packages/Fingersoft.HillClimbRacing_r6rtpscs7gwyg/Settings": tags: - config when: - os: windows store: microsoft - /Packages/Fingersoft.HillClimbRacing_r6rtpscs7gwyg/Settings/settings.dat: + "/Packages/Fingersoft.HillClimbRacing_r6rtpscs7gwyg/Settings/settings.dat": tags: - save when: @@ -254539,13 +255292,13 @@ Hill Climb Racing: store: microsoft Hill Climb Racing 2: files: - /Packages/Fingersoft.HillClimbRacing2_r6rtpscs7gwyg/LocalState: + "/Packages/Fingersoft.HillClimbRacing2_r6rtpscs7gwyg/LocalState": tags: - save when: - os: windows store: microsoft - /Packages/Fingersoft.HillClimbRacing2_r6rtpscs7gwyg/Settings: + "/Packages/Fingersoft.HillClimbRacing2_r6rtpscs7gwyg/Settings": tags: - config when: @@ -254555,15 +255308,15 @@ Hill Quest: installDir: Hill Quest: {} launch: - /HillQuest.app/Contents/MacOS/HillQuest: + "/HillQuest.app/Contents/MacOS/HillQuest": - when: - os: mac store: steam - /HillQuest.exe: + "/HillQuest.exe": - when: - os: windows store: steam - /HillQuest.x86_64: + "/HillQuest.x86_64": - when: - os: linux store: steam @@ -254573,7 +255326,7 @@ Hillbilly Apocalypse: installDir: Hillbilly Apocalypse: {} launch: - /HillbillyApocalypse.exe: + "/HillbillyApocalypse.exe": - when: - os: windows store: steam @@ -254583,7 +255336,7 @@ Hills of Glory 3D: installDir: Hills Of Glory 3D: {} launch: - /HOG3D.exe: + "/HOG3D.exe": - when: - os: windows store: steam @@ -254591,7 +255344,7 @@ Hills of Glory 3D: id: 317920 Hillsfar: files: - /*.HIL: + "/*.HIL": tags: - save when: @@ -254607,7 +255360,7 @@ Him and I: installDir: Him & I: {} launch: - /Him & I.exe: + "/Him & I.exe": - when: - bit: 64 os: windows @@ -254618,14 +255371,14 @@ Himawari - The Sunflower -: installDir: Himawari - The Sunflower -: {} launch: - /Himawari.exe: + "/Himawari.exe": - when: - store: steam steam: id: 554290 Himeko Sutori: files: - /RPGTacGame/Config: + "/RPGTacGame/Config": tags: - config when: @@ -254633,14 +255386,14 @@ Himeko Sutori: installDir: Himeko Sutori: {} launch: - /Binaries/Win32/RPGTacGame.exe: - - arguments: '?win32=true -user -forcecontrollerappid 669500' + "/Binaries/Win32/RPGTacGame.exe": + - arguments: "?win32=true -user -forcecontrollerappid 669500" when: - bit: 32 os: windows store: steam - /Binaries/Win64/RPGTacGame.exe: - - arguments: '-user -forcecontrollerappid 669500' + "/Binaries/Win64/RPGTacGame.exe": + - arguments: "-user -forcecontrollerappid 669500" when: - bit: 64 os: windows @@ -254654,15 +255407,15 @@ Himno: installDir: Himno: {} launch: - /Himno.app: + "/Himno.app": - when: - os: mac store: steam - /Himno.exe: + "/Himno.exe": - when: - os: windows store: steam - /Himno.x86_64: + "/Himno.x86_64": - when: - os: linux store: steam @@ -254672,19 +255425,19 @@ Himno: - config steam: id: 931690 -'Himno: The Silent Melody': +"Himno: The Silent Melody": installDir: Himno The Silent Melody: {} launch: - /Himno The Silent Melody.app: + "/Himno The Silent Melody.app": - when: - os: mac store: steam - /Himno The Silent Melody.exe: + "/Himno The Silent Melody.exe": - when: - os: windows store: steam - /Himno The Silent Melody.x86_64: + "/Himno The Silent Melody.x86_64": - when: - os: linux store: steam @@ -254697,11 +255450,11 @@ Hindsight 20/20: installDir: Hindsight 2020: {} launch: - /Hindsight 2020 - Wrath of the Raakshasa.exe: + "/Hindsight 2020 - Wrath of the Raakshasa.exe": - when: - os: windows store: steam - /Hindsight2020.app: + "/Hindsight2020.app": - when: - os: mac store: steam @@ -254711,7 +255464,7 @@ Hinedere Beat: installDir: Hinedere Beat: {} launch: - /Hinedere Beat.exe: + "/Hinedere Beat.exe": - when: - os: windows store: steam @@ -254721,16 +255474,16 @@ Hinterhalt: installDir: Hinterhalt: {} launch: - /Contents/MacOS/Hinterhalt (Mac64): + "/Contents/MacOS/Hinterhalt (Mac64)": - when: - os: mac store: steam - /Hinterhalt (Linux64).x86_64: + "/Hinterhalt (Linux64).x86_64": - when: - bit: 64 os: linux store: steam - /Hinterhalt (Win64).exe: + "/Hinterhalt (Win64).exe": - when: - bit: 64 os: windows @@ -254741,16 +255494,16 @@ Hinterhalt 2: installDir: Hinterhalt 2: {} launch: - /Contents/MacOS/Hinterhalt 2: + "/Contents/MacOS/Hinterhalt 2": - when: - os: mac store: steam - /Hinterhalt 2.exe: + "/Hinterhalt 2.exe": - when: - bit: 64 os: windows store: steam - /Hinterhalt 2.x86_64: + "/Hinterhalt 2.x86_64": - when: - bit: 64 os: linux @@ -254759,12 +255512,12 @@ Hinterhalt 2: id: 949210 Hinterland: files: - /Tilted Mill/Hinterland/client: + "/Tilted Mill/Hinterland/client": tags: - config when: - os: windows - /Tilted Mill/Hinterland/saves: + "/Tilted Mill/Hinterland/saves": tags: - save when: @@ -254772,7 +255525,7 @@ Hinterland: installDir: Hinterland: {} launch: - /Hinterland.exe: + "/Hinterland.exe": - when: - store: steam steam: @@ -254781,11 +255534,11 @@ HipWitch: installDir: HipWitch: {} launch: - /HipWitch.app: + "/HipWitch.app": - when: - os: mac store: steam - /HipWitch.exe: + "/HipWitch.exe": - when: - os: windows store: steam @@ -254795,7 +255548,7 @@ Hippo Sports: installDir: Hippo Sports: {} launch: - /Hippo.exe: + "/Hippo.exe": - when: - store: steam steam: @@ -254804,7 +255557,7 @@ Hippo eating banana: installDir: Hippo eating banana: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: @@ -254813,27 +255566,27 @@ Hippoboar Rancher: installDir: Hippoboar Rancher: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam steam: id: 1195090 -'Hippocampal: The White Sofa': +"Hippocampal: The White Sofa": installDir: Hippocampal The White Sofa: {} launch: - /Binaries/Win32/Hippocampal.exe: + "/Binaries/Win32/Hippocampal.exe": - when: - store: steam - workingDir: /Binaries/Win32 + workingDir: "/Binaries/Win32" steam: id: 300900 Hippocampus: installDir: Hippocampus: {} launch: - /Hippocampus.exe: + "/Hippocampus.exe": - when: - os: windows store: steam @@ -254843,7 +255596,7 @@ Hipster Attack: installDir: Hipster Attack: {} launch: - /Hipster Attack.exe: + "/Hipster Attack.exe": - when: - bit: 64 os: windows @@ -254854,7 +255607,7 @@ Hipster Cafe: installDir: Hipster Cafe: {} launch: - /Hipster Cafe.exe: + "/Hipster Cafe.exe": - when: - os: windows store: steam @@ -254864,15 +255617,15 @@ Hir Corruption: installDir: Hir Corruption: {} launch: - /HirCorruption/HirCorruption.app: + "/HirCorruption/HirCorruption.app": - when: - os: mac store: steam - /HirCorruption/HirCorruption.exe: + "/HirCorruption/HirCorruption.exe": - when: - os: windows store: steam - /HirCorruption/HirCorruption.sh: + "/HirCorruption/HirCorruption.sh": - when: - os: linux store: steam @@ -254882,20 +255635,20 @@ Hiragana Pixel Party: installDir: Hiragana Pixel Party: {} launch: - /Hiragana Pixel Party.exe: + "/Hiragana Pixel Party.exe": - when: - os: windows store: steam steam: id: 417310 -'Hired Guns: The Jagged Edge': +"Hired Guns: The Jagged Edge": files: - /profiles/: + "/profiles/": tags: - save when: - os: windows - /system.cfg: + "/system.cfg": tags: - config when: @@ -254903,17 +255656,17 @@ Hiragana Pixel Party: installDir: Hired Guns The Jagged Edge: {} launch: - /bin/game.exe: + "/bin/game.exe": - when: - store: steam - workingDir: /bin + workingDir: "/bin" steam: id: 33500 Hired Ops: installDir: Hired Ops: {} launch: - /hops.exe: + "/hops.exe": - when: - os: windows store: steam @@ -254929,28 +255682,28 @@ Hirilun: installDir: Hirilun: {} launch: - /Hirilun.exe: + "/Hirilun.exe": - when: - bit: 64 os: windows store: steam steam: id: 1407300 -Hiro's Forest Rumble: +"Hiro's Forest Rumble": installDir: - Hiro's Forest Rumble: {} + "Hiro's Forest Rumble": {} launch: - /Hiro's Forest Rumble PC/HirosForestRumble.exe: + "/Hiro's Forest Rumble PC/HirosForestRumble.exe": - when: - os: windows store: steam steam: id: 780430 -Hiro's Harvest Season: +"Hiro's Harvest Season": installDir: - Hiro's Harvest Season: {} + "Hiro's Harvest Season": {} launch: - /HirosHarvestSeason.exe: + "/HirosHarvestSeason.exe": - when: - os: windows store: steam @@ -254960,15 +255713,15 @@ His Chuunibyou Cannot Be Cured!: installDir: His Chunnibyou Cannot Be Cured: {} launch: - /His Chuunibyou Cannot Be Cured!.app: + "/His Chuunibyou Cannot Be Cured!.app": - when: - os: mac store: steam - /His Chuunibyou Cannot Be Cured!.exe: + "/His Chuunibyou Cannot Be Cured!.exe": - when: - os: windows store: steam - /His Chuunibyou Cannot Be Cured!.sh: + "/His Chuunibyou Cannot Be Cured!.sh": - when: - os: linux store: steam @@ -254978,7 +255731,7 @@ Hiscores! Gold: installDir: Hiscores! Gold: {} launch: - /HSG.exe: + "/HSG.exe": - when: - store: steam steam: @@ -254987,7 +255740,7 @@ Hist Maker: installDir: Hist Maker: {} launch: - /Hist Maker.exe: + "/Hist Maker.exe": - when: - os: windows store: steam @@ -255002,7 +255755,7 @@ History 2048: installDir: History2048 - 3D puzzle number game: {} launch: - /History2048.exe: + "/History2048.exe": - when: - os: windows store: steam @@ -255012,7 +255765,7 @@ History Racers 2: installDir: History Racers 2: {} launch: - /HistoryRacers2.exe: + "/HistoryRacers2.exe": - when: - os: windows store: steam @@ -255022,7 +255775,7 @@ History Warriors: installDir: History Warriors: {} launch: - /hwarriors.exe: + "/hwarriors.exe": - when: - os: windows store: steam @@ -255032,24 +255785,24 @@ History in Letters - The Eternal Alchemist: installDir: History in Letters - The Eternal Alchemist: {} launch: - /tea.app: + "/tea.app": - when: - os: mac store: steam - /tea.exe: + "/tea.exe": - when: - os: windows store: steam steam: id: 318680 -'Historyline: 1914-1918': +"Historyline: 1914-1918": gog: id: 1207661063 Hit Tank PRO: installDir: Hit Tank PRO: {} launch: - /Hit Tank PRO v1.3.1.exe: + "/Hit Tank PRO v1.3.1.exe": - when: - os: windows store: steam @@ -255069,7 +255822,7 @@ HitBox: installDir: HitBox: {} launch: - /HitBox.exe: + "/HitBox.exe": - when: - os: windows store: steam @@ -255079,7 +255832,7 @@ Hitchhiker: installDir: Hitchhiker: {} launch: - /Hitchhiker.exe: + "/Hitchhiker.exe": - when: - os: windows store: steam @@ -255087,12 +255840,12 @@ Hitchhiker: id: 1050620 Hitchhiker - A Mystery Game: files: - /AppData/LocalLow/Mad About Pandas/Hitchhiker - A Mystery Game/SaveGames: + "/AppData/LocalLow/Mad About Pandas/Hitchhiker - A Mystery Game/SaveGames": tags: - save when: - os: windows - /Library/Containers/Hitchhiker - A Mystery Game/Data/Library/Preferences/com.versusevil.HitchhHiker.plist: + "/Library/Containers/Hitchhiker - A Mystery Game/Data/Library/Preferences/com.versusevil.HitchhHiker.plist": tags: - save when: @@ -255102,7 +255855,7 @@ Hitchhiker - A Mystery Game: installDir: Hitchhiker: {} launch: - /Hitchhiker - A Mystery Game.exe: + "/Hitchhiker - A Mystery Game.exe": - when: - bit: 64 os: windows @@ -255111,17 +255864,17 @@ Hitchhiker - A Mystery Game: id: 1003120 Hitman: files: - /userdata//236870/remote: + "/userdata//236870/remote": tags: - save when: - store: steam - /Io Interactive/Epic//HITMAN: + "/Io Interactive/Epic//HITMAN": tags: - save when: - - store: epic - /feral-interactive/HITMAN: + - os: windows + "/feral-interactive/HITMAN": tags: - config when: @@ -255130,8 +255883,6 @@ Hitman: id: 1490827332 id: steamExtra: - - 649780 - - 664270 - 439870 - 439890 - 440930 @@ -255139,20 +255890,22 @@ Hitman: - 440961 - 440962 - 588660 + - 649780 + - 664270 - 725353 - 737780 installDir: Hitman™: {} launch: - /Hitman.app: + "/Hitman.app": - when: - os: mac store: steam - /HitmanPro.sh: + "/HitmanPro.sh": - when: - os: linux store: steam - /Launcher.exe: + "/Launcher.exe": - when: - os: windows store: steam @@ -255164,7 +255917,7 @@ Hitman: id: 236870 Hitman 2: files: - /userdata//863550/remote: + "/userdata//863550/remote": tags: - save when: @@ -255173,7 +255926,7 @@ Hitman 2: installDir: HITMAN2: {} launch: - /Launcher.exe: + "/Launcher.exe": - when: - os: windows store: steam @@ -255183,14 +255936,14 @@ Hitman 2: - config steam: id: 863550 -'Hitman 2: Silent Assassin': +"Hitman 2: Silent Assassin": files: - /Hitman2.ini: + "/Hitman2.ini": tags: - config when: - os: windows - /Save: + "/Save": tags: - save when: @@ -255200,32 +255953,32 @@ Hitman 2: installDir: Hitman 2 Silent Assassin: {} launch: - /config.exe: + "/config.exe": - when: - store: steam - /hitman2.exe: + "/hitman2.exe": - when: - store: steam steam: id: 6850 Hitman GO: files: - /.config/unity3d/Square Enix Ltd./Hitman GO: + "/.config/unity3d/Square Enix Ltd./Hitman GO": tags: - config when: - os: linux - /AppData/LocalLow/Square Enix Ltd_/Hitman GO: + "/AppData/LocalLow/Square Enix Ltd_/Hitman GO": tags: - save when: - os: windows - /userdata//427820/remote: + "/userdata//427820/remote": tags: - save when: - store: steam - /Packages/39C668CD.HitmanGO_r7bfsmp40f67j/LocalState: + "/Packages/39C668CD.HitmanGO_r7bfsmp40f67j/LocalState": tags: - save when: @@ -255234,21 +255987,24 @@ Hitman GO: installDir: Hitman GO: {} launch: - /HitmanGo.app: + "/HitmanGo.app": - when: - os: mac store: steam - /HitmanGo.exe: + "/HitmanGo.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam - /HitmanGo.x86: + "/HitmanGo.x86": - when: - bit: 32 os: linux store: steam - /HitmanGo.x86_64: + "/HitmanGo.x86_64": - when: - bit: 64 os: linux @@ -255261,17 +256017,17 @@ Hitman GO: id: 427820 Hitman World of Assassination: files: - /userdata//1659040/remote: + "/userdata//1659040/remote": tags: - save when: - store: steam - /IO Interactive/Epic//HITMAN3: + "/IO Interactive/Epic//HITMAN3": tags: - save when: - - store: epic - /Packages/IOInteractiveAS.PC-HITMAN3-BaseGame_6h0y724g59e1w/SystemAppData/wgs: + - os: windows + "/Packages/IOInteractiveAS.PC-HITMAN3-BaseGame_6h0y724g59e1w/SystemAppData/wgs": tags: - save when: @@ -255280,7 +256036,7 @@ Hitman World of Assassination: installDir: HITMAN 3: {} launch: - /Launcher.exe: + "/Launcher.exe": - when: - os: windows store: steam @@ -255290,38 +256046,39 @@ Hitman World of Assassination: - config steam: id: 1659040 -'Hitman: Absolution': +"Hitman: Absolution": files: - /Library/Application Support/Feral Interactive/Hitman Absolution/Preferences Data: + "/Library/Application Support/Feral Interactive/Hitman Absolution/Preferences Data": tags: - config when: - os: mac - /Library/Application Support/com.feralinteractive.hitmanabsolution: + "/Library/Application Support/com.feralinteractive.hitmanabsolution": tags: - save when: - os: mac - /userdata//205930/remote: + "/userdata//205930/remote": tags: - save when: - store: steam - /IO Interactive/HM5: + "/IO Interactive/HM5": tags: - save when: - - store: gog + - os: windows + store: gog gog: id: 1757179626 installDir: Hitman Absolution: {} launch: - /HMA.exe: + "/HMA.exe": - when: - os: windows store: steam - /Hitman Absolution.app: + "/Hitman Absolution.app": - when: - os: mac store: steam @@ -255331,14 +256088,14 @@ Hitman World of Assassination: - config steam: id: 203140 -'Hitman: Blood Money': +"Hitman: Blood Money": files: - /HitmanBloodMoney.ini: + "/HitmanBloodMoney.ini": tags: - config when: - os: windows - /Hitman Blood Money/Profiles: + "/Hitman Blood Money/Profiles": tags: - save when: @@ -255348,22 +256105,22 @@ Hitman World of Assassination: installDir: Hitman Blood Money: {} launch: - /HitmanBloodMoney.exe: + "/HitmanBloodMoney.exe": - when: - store: steam - /configure.exe: + "/configure.exe": - when: - store: steam steam: id: 6860 -'Hitman: Codename 47': +"Hitman: Codename 47": files: - /Hitman.cfg: + "/Hitman.cfg": tags: - config when: - os: windows - /Hitman.sav: + "/Hitman.sav": tags: - save when: @@ -255373,22 +256130,22 @@ Hitman World of Assassination: installDir: Hitman Codename 47: {} launch: - /Hitman.Exe: + "/Hitman.Exe": - when: - store: steam - /setup.exe: + "/setup.exe": - when: - store: steam steam: id: 6900 -'Hitman: Contracts': +"Hitman: Contracts": files: - /HitmanContracts.ini: + "/HitmanContracts.ini": tags: - config when: - os: windows - /Save: + "/Save": tags: - save when: @@ -255398,14 +256155,14 @@ Hitman World of Assassination: installDir: Hitman Contracts: {} launch: - /HitmanContracts.exe: + "/HitmanContracts.exe": - when: - store: steam steam: id: 247430 -'Hitman: Sniper Challenge': +"Hitman: Sniper Challenge": files: - /userdata//205930/remote: + "/userdata//205930/remote": tags: - save when: @@ -255414,11 +256171,11 @@ Hitman World of Assassination: installDir: Hitman Sniper Challenge: {} launch: - /Hitman Sniper Challenge.app: + "/Hitman Sniper Challenge.app": - when: - os: mac store: steam - /hmsc.exe: + "/hmsc.exe": - when: - os: windows store: steam @@ -255426,7 +256183,7 @@ Hitman World of Assassination: id: 205930 Hitogata Happa: files: - /userdata//92210/remote: + "/userdata//92210/remote": tags: - save when: @@ -255434,7 +256191,7 @@ Hitogata Happa: installDir: Hitogata Happa: {} launch: - /happa64.exe: + "/happa64.exe": - when: - store: steam steam: @@ -255446,7 +256203,7 @@ Hitotsu no Mori: installDir: HITOTSU NO MORI: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -255456,15 +256213,15 @@ Hive: installDir: Hive: {} launch: - /Hive: + "/Hive": - when: - os: linux store: steam - /Hive.app: + "/Hive.app": - when: - os: mac store: steam - /Hive.exe: + "/Hive.exe": - when: - os: windows store: steam @@ -255472,22 +256229,22 @@ Hive: id: 251210 Hive Jump: files: - /AppData/LocalLow/Graphite Lab/Hive Jump: + "/AppData/LocalLow/Graphite Lab/Hive Jump": tags: - config when: - os: windows - /AppData/LocalLow/Graphite Lab/Hive Jump/Profiles: + "/AppData/LocalLow/Graphite Lab/Hive Jump/Profiles": tags: - save when: - os: windows - /unity3d/Graphite Lab/Hive Jump: + "/unity3d/Graphite Lab/Hive Jump": tags: - config when: - os: linux - /unity3d/Graphite Lab/Hive Jump/Profiles: + "/unity3d/Graphite Lab/Hive Jump/Profiles": tags: - save when: @@ -255495,15 +256252,15 @@ Hive Jump: installDir: Hive Jump: {} launch: - /HiveJump.app: + "/HiveJump.app": - when: - os: mac store: steam - /HiveJump.exe: + "/HiveJump.exe": - when: - os: windows store: steam - /HiveJump.x86: + "/HiveJump.x86": - when: - os: linux store: steam @@ -255514,32 +256271,32 @@ Hive Quest: id: 843280 Hive Time: files: - /Library/Application Support/hivetime/config.cfg: + "/Library/Application Support/hivetime/config.cfg": tags: - config when: - os: mac - /Library/Application Support/hivetime/saves/*.save: + "/Library/Application Support/hivetime/saves/*.save": tags: - save when: - os: mac - /hivetime/config.cfg: + "/hivetime/config.cfg": tags: - config when: - os: windows - /hivetime/saves/*.save: + "/hivetime/saves/*.save": tags: - save when: - os: windows - /hivetime/config.cfg: + "/hivetime/config.cfg": tags: - config when: - os: linux - /hivetime/saves/*.save: + "/hivetime/saves/*.save": tags: - save when: @@ -255550,48 +256307,48 @@ Hiveswap Friendsim: installDir: Hiveswap Friendsim: {} launch: - /hs-friendsim.app: + "/hs-friendsim.app": - when: - os: mac store: steam - /hs-friendsim.exe: + "/hs-friendsim.exe": - when: - os: windows store: steam - /hs-friendsim.sh: + "/hs-friendsim.sh": - when: - os: linux store: steam steam: id: 833040 -'Hiveswap: Act 1': +"Hiveswap: Act 1": files: - /.config/unity3d/What Pumpkin/Hiveswap Episode 1/Saves: + "/.config/unity3d/What Pumpkin/Hiveswap Episode 1/Saves": tags: - save when: - os: linux - /.config/unity3d/What Pumpkin/Hiveswap Episode 1/config.json: + "/.config/unity3d/What Pumpkin/Hiveswap Episode 1/config.json": tags: - config when: - os: linux - /AppData/LocalLow/What Pumpkin/Hiveswap Episode 1/Saves: + "/AppData/LocalLow/What Pumpkin/Hiveswap Episode 1/Saves": tags: - save when: - os: windows - /AppData/LocalLow/What Pumpkin/Hiveswap Episode 1/config.json: + "/AppData/LocalLow/What Pumpkin/Hiveswap Episode 1/config.json": tags: - config when: - os: windows - /Library/Application Support/What Pumpkin/Hiveswap Episode 1/Saves: + "/Library/Application Support/What Pumpkin/Hiveswap Episode 1/Saves": tags: - save when: - os: mac - /Library/Application Support/What Pumpkin/Hiveswap Episode 1/config.json: + "/Library/Application Support/What Pumpkin/Hiveswap Episode 1/config.json": tags: - config when: @@ -255601,34 +256358,34 @@ Hiveswap Friendsim: installDir: HIVESWAP ACT 1: {} launch: - /Hiveswap-Act1.app/Contents/MacOS/Hiveswap-Act1: + "/Hiveswap-Act1.app/Contents/MacOS/Hiveswap-Act1": - when: - os: mac store: steam - /Hiveswap-Act1.exe: + "/Hiveswap-Act1.exe": - when: - os: windows store: steam - /Linux-Public_Steam/Hiveswap-Act1.x86: + "/Linux-Public_Steam/Hiveswap-Act1.x86": - when: - bit: 32 os: linux store: steam - /Linux-Public_Steam/Hiveswap-Act1.x86_64: + "/Linux-Public_Steam/Hiveswap-Act1.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 623940 -'Hiveswap: Act 2': +"Hiveswap: Act 2": files: - /AppData/LocalLow/What Pumpkin/Hiveswap Episode 2/Options.json: + "/AppData/LocalLow/What Pumpkin/Hiveswap Episode 2/Options.json": tags: - config when: - os: windows - /AppData/LocalLow/What Pumpkin/Hiveswap Episode 2/Saves: + "/AppData/LocalLow/What Pumpkin/Hiveswap Episode 2/Saves": tags: - save when: @@ -255638,15 +256395,15 @@ Hiveswap Friendsim: installDir: HIVESWAP Act 2: {} launch: - /Hiveswap-Act2.app/Contents/MacOS/Hiveswap Episode 2: + "/Hiveswap-Act2.app/Contents/MacOS/Hiveswap Episode 2": - when: - os: mac store: steam - /Hiveswap-Act2.exe: + "/Hiveswap-Act2.exe": - when: - os: windows store: steam - /Hiveswap-Act2.x86_64: + "/Hiveswap-Act2.x86_64": - when: - bit: 64 os: linux @@ -255657,29 +256414,29 @@ Hiveswap Friendsim: - config steam: id: 1181840 -'Ho Tu Lo Shu: The Books of Dragon': +"Ho Tu Lo Shu: The Books of Dragon": installDir: 河洛群俠傳 (Ho Tu Lo Shu : The Books of Dragon): {} launch: - /J2.exe: + "/J2.exe": - when: - os: windows store: steam steam: id: 952860 -'HoD: A pirate adventure': +"HoD: A pirate adventure": installDir: On open seas: {} launch: - /OnOpenSeas.app: + "/OnOpenSeas.app": - when: - os: mac store: steam - /OnOpenSeas.exe: + "/OnOpenSeas.exe": - when: - os: windows store: steam - /OnOpenSeas.x86_64: + "/OnOpenSeas.x86_64": - when: - os: linux store: steam @@ -255689,15 +256446,15 @@ HoPiKo: installDir: HoPiKo: {} launch: - /HoPiKo.app: + "/HoPiKo.app": - when: - os: mac store: steam - /HoPiKo.exe: + "/HoPiKo.exe": - when: - os: windows store: steam - /HoPiKo.x86: + "/HoPiKo.x86": - when: - os: linux store: steam @@ -255710,12 +256467,12 @@ HoVRboard: id: 1081120 Hoa: files: - /AppData/LocalLow/PMStudioGoG/Hoa/SaveData/Slot0.savegame: + "/AppData/LocalLow/PMStudioGoG/Hoa/SaveData/Slot0.savegame": tags: - save when: - os: windows - /AppData/LocalLow/PMStudioGoG/Hoa/saveData.txt: + "/AppData/LocalLow/PMStudioGoG/Hoa/saveData.txt": tags: - save when: @@ -255725,11 +256482,11 @@ Hoa: installDir: Hoa: {} launch: - /Hoa.app/Contents/MacOS/Hoa: + "/Hoa.app/Contents/MacOS/Hoa": - when: - os: mac store: steam - /Hoa.exe: + "/Hoa.exe": - when: - os: windows store: steam @@ -255741,17 +256498,17 @@ Hoa: id: 1484900 Hoard: files: - /OptionData.txt: + "/OptionData.txt": tags: - config when: - os: windows - /userdata//63000: + "/userdata//63000": tags: - save when: - store: steam - /BigSandwichGames/Hoard: + "/BigSandwichGames/Hoard": tags: - config - save @@ -255760,29 +256517,29 @@ Hoard: installDir: Hoard: {} launch: - /HoardSteam.app: + "/HoardSteam.app": - when: - os: mac store: steam - workingDir: /win32 - /win32/Reuben.exe: - - arguments: '- Launch' + workingDir: "/win32" + "/win32/Reuben.exe": + - arguments: "- Launch" when: - os: windows store: steam - workingDir: /win32 - /x86/Reuben.bin.x86: + workingDir: "/win32" + "/x86/Reuben.bin.x86": - when: - os: linux store: steam - workingDir: /x86 + workingDir: "/x86" steam: id: 63000 Hoarding Simulator: installDir: HoardingSimulator: {} launch: - /HoardingSimulator.exe: + "/HoardingSimulator.exe": - when: - bit: 64 os: windows @@ -255791,12 +256548,12 @@ Hoarding Simulator: id: 1190980 Hob: files: - /My Games/Runic Games/Hob: + "/My Games/Runic Games/Hob": tags: - config when: - os: windows - /My Games/Runic Games/Hob/SAVES: + "/My Games/Runic Games/Hob/SAVES": tags: - save when: @@ -255806,7 +256563,7 @@ Hob: installDir: Hob: {} launch: - /HobLauncher.exe: + "/HobLauncher.exe": - arguments: skip_file_check when: - os: windows @@ -255818,14 +256575,14 @@ Hobo Living VR: Hobo Living VR: {} steam: id: 1058490 -'Hobo: Tough Life': +"Hobo: Tough Life": files: - /HoboRPG_Data/Config: + "/HoboRPG_Data/Config": tags: - config when: - os: windows - /HoboRPG_Data/Save: + "/HoboRPG_Data/Save": tags: - save when: @@ -255833,12 +256590,12 @@ Hobo Living VR: installDir: Hobo Tough Life: {} launch: - /HoboRPG.exe: + "/HoboRPG.exe": - when: - bit: 64 os: windows store: steam - /HoboRPG.x86_64: + "/HoboRPG.x86_64": - when: - bit: 64 os: linux @@ -255849,7 +256606,7 @@ Hobs: installDir: HOBS: {} launch: - /hobs.exe: + "/hobs.exe": - when: - store: steam registry: @@ -255862,7 +256619,7 @@ Hockey Camp - Goaltender: installDir: Hockey Camp - Goaltender: {} launch: - /HockeyCampGoaltender.exe: + "/HockeyCampGoaltender.exe": - when: - store: steam steam: @@ -255871,7 +256628,7 @@ Hockey Manager 2020: installDir: Hockey Manager 2020: {} launch: - /EHM_2020.exe: + "/EHM_2020.exe": - when: - os: windows store: steam @@ -255890,25 +256647,25 @@ Hockey Space: installDir: HOCKEY_SPACE: {} launch: - /hockey_space.exe: + "/hockey_space.exe": - when: - bit: 64 os: windows store: steam - /hockey_space.x86_64: + "/hockey_space.x86_64": - when: - os: linux store: steam steam: id: 655640 -'Hockey: Strategy of Success': +"Hockey: Strategy of Success": steam: id: 1036310 Hockeysplit: installDir: VNHL2022: {} launch: - /VNHL 2022.exe: + "/VNHL 2022.exe": - when: - os: windows store: steam @@ -255918,11 +256675,11 @@ Hoco Poco: installDir: Hoco Poco: {} launch: - /HocoPoco.app: + "/HocoPoco.app": - when: - os: mac store: steam - /HocoPoco.exe: + "/HocoPoco.exe": - when: - os: windows store: steam @@ -255930,7 +256687,7 @@ Hoco Poco: id: 1135110 Hocus: files: - /com.gamebrain.hocus/Local Store/#SharedObjects/hocus.swf: + "/com.gamebrain.hocus/Local Store/#SharedObjects/hocus.swf": tags: - config - save @@ -255939,11 +256696,11 @@ Hocus: installDir: hocus: {} launch: - /hocus.app: + "/hocus.app": - when: - os: mac store: steam - /hocus.exe: + "/hocus.exe": - when: - os: windows store: steam @@ -255953,11 +256710,11 @@ Hocus 2: installDir: hocus 2: {} launch: - /hocus2.app: + "/hocus2.app": - when: - os: mac store: steam - /hocus2.exe: + "/hocus2.exe": - when: - os: windows store: steam @@ -255965,7 +256722,7 @@ Hocus 2: id: 1460610 Hocus Pocus: files: - /HOCUS.SAV: + "/HOCUS.SAV": tags: - save when: @@ -255975,43 +256732,43 @@ Hocus Pocus: installDir: Hocus Pocus: {} launch: - /Dosbox/dosbox: - - arguments: '-conf \"..\\HOCUS.conf\" -noconsole -c' + "/Dosbox/dosbox": + - arguments: "-conf \\\"..\\\\HOCUS.conf\\\" -noconsole -c" when: - os: linux store: steam - workingDir: /Dosbox - /Hocus Pocus.app: + workingDir: "/Dosbox" + "/Hocus Pocus.app": - when: - os: mac store: steam - /Hocus Pocus/dosbox/dosbox.exe: - - arguments: '-conf \"..\\HOCUS.conf\" -noconsole -c' + "/Hocus Pocus/dosbox/dosbox.exe": + - arguments: "-conf \\\"..\\\\HOCUS.conf\\\" -noconsole -c" when: - os: windows store: steam - workingDir: /Hocus Pocus/dosbox + workingDir: "/Hocus Pocus/dosbox" steam: id: 358290 Hocus Potions: installDir: Hocus Potions: {} launch: - /Contents/MacOS/Hocus Potions: + "/Contents/MacOS/Hocus Potions": - when: - os: mac store: steam - /Hocus Potions.exe: + "/Hocus Potions.exe": - when: - os: windows store: steam steam: id: 1059320 -'Hodl: The God of Crypto': +"Hodl: The God of Crypto": installDir: Hodl The God of Crypto: {} launch: - /hodl_20170908.exe: + "/hodl_20170908.exe": - when: - os: windows store: steam @@ -256021,7 +256778,7 @@ Hog Hunter 2021: installDir: Hog Hunter 2021: {} launch: - /BuildStuff/HogHunter2021.exe: + "/BuildStuff/HogHunter2021.exe": - when: - os: windows store: steam @@ -256031,7 +256788,7 @@ Hoggy 2: installDir: Hoggy 2: {} launch: - /Hoggy2.exe: + "/Hoggy2.exe": - when: - os: windows store: steam @@ -256043,7 +256800,7 @@ Hogs of War: installDir: HogsofWar: {} launch: - /HOWMenu.exe: + "/HOWMenu.exe": - when: - os: windows store: steam @@ -256051,22 +256808,22 @@ Hogs of War: id: 389900 Hogwarts Legacy: files: - /Hogwarts Legacy/Saved/Config/WindowsNoEditor: + "/Hogwarts Legacy/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /Hogwarts Legacy/Saved/SaveGames/: + "/Hogwarts Legacy/Saved/SaveGames/": tags: - save when: - os: windows - /Hogwarts/Saved/Config/WindowNoEditor: + "/Hogwarts/Saved/Config/WindowNoEditor": tags: - config when: - os: windows - /Hogwarts/Saved/SaveGames/: + "/Hogwarts/Saved/SaveGames/": tags: - save when: @@ -256074,19 +256831,19 @@ Hogwarts Legacy: installDir: Hogwarts Legacy: {} launch: - /HogwartsLegacy.exe: - - arguments: '-SaveToUserDir -UserDir=\"Hogwarts Legacy\"' + "/HogwartsLegacy.exe": + - arguments: "-SaveToUserDir -UserDir=\\\"Hogwarts Legacy\\\"" when: - bit: 64 os: windows store: steam steam: id: 990080 -'Hokan: Monster Slayer': +"Hokan: Monster Slayer": installDir: Hokan Monster Slayer: {} launch: - /Hokan.exe: + "/Hokan.exe": - when: - os: windows store: steam @@ -256094,12 +256851,12 @@ Hogwarts Legacy: id: 856770 Hokko Life: files: - /Wonderscope/Hokko Life/SaveData: + "/Wonderscope/Hokko Life/SaveData": tags: - save when: - os: windows - /Wonderscope/Hokko Life/SaveData/sys.hks: + "/Wonderscope/Hokko Life/SaveData/sys.hks": tags: - config when: @@ -256107,7 +256864,7 @@ Hokko Life: installDir: Hokko Life: {} launch: - /Hokko Life.exe: + "/Hokko Life.exe": - when: - os: windows store: steam @@ -256122,7 +256879,7 @@ Hold Out: installDir: Hold Out: {} launch: - /Final_Mansion.exe: + "/Final_Mansion.exe": - when: - os: windows store: steam @@ -256137,7 +256894,7 @@ Hold Your Own: installDir: Hold Your Own: {} launch: - /Game.exe: + "/Game.exe": - when: - bit: 64 os: windows @@ -256153,21 +256910,21 @@ Hold the Fort: installDir: Hold The Fort: {} launch: - /HTF.exe: + "/HTF.exe": - when: - os: windows store: steam steam: id: 1037760 -'Hold the Line: The American Revolution': +"Hold the Line: The American Revolution": installDir: Hold the Line The American Revolution: {} launch: - /HoldTheLine.app: + "/HoldTheLine.app": - when: - os: mac store: steam - /HoldTheLine.exe: + "/HoldTheLine.exe": - when: - os: windows store: steam @@ -256177,15 +256934,15 @@ Hold your Houses: installDir: Holdyourhouses: {} launch: - /Holdyourhouses.exe: + "/Holdyourhouses.exe": - when: - os: windows store: steam steam: id: 586790 -'Holdfast: Nations At War': +"Holdfast: Nations At War": files: - /AppData/LocalLow/Anvil Game Studio/Holdfast NaW: + "/AppData/LocalLow/Anvil Game Studio/Holdfast NaW": tags: - config when: @@ -256193,7 +256950,7 @@ Hold your Houses: installDir: Holdfast Nations At War: {} launch: - /Holdfast NaW.exe: + "/Holdfast NaW.exe": - when: - os: windows store: steam @@ -256203,7 +256960,7 @@ Hole in the Clouds: installDir: Hole in the Clouds: {} launch: - /Hole in the Clouds.exe: + "/Hole in the Clouds.exe": - when: - os: windows store: steam @@ -256213,11 +256970,11 @@ Holiday Bonus GOLD: installDir: Holiday Bonus GOLD: {} launch: - /HolidayBonusGOLD.app: + "/HolidayBonusGOLD.app": - when: - os: mac store: steam - /HolidayBonusGOLD.exe: + "/HolidayBonusGOLD.exe": - when: - os: windows store: steam @@ -256227,25 +256984,25 @@ Holiday Escape: installDir: Holiday Escape: {} launch: - /Holiday Escape.exe: + "/Holiday Escape.exe": - when: - os: windows store: steam steam: id: 911050 -'Holiday Simulator: Wacky Sleigh Ride': +"Holiday Simulator: Wacky Sleigh Ride": installDir: Holiday Simulator Wacky Sleigh Ride: {} steam: id: 571180 Hollow: files: - /Hollow/Saved/Config/WindowsNoEditor: + "/Hollow/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /Hollow/Saved/SaveGames: + "/Hollow/Saved/SaveGames": tags: - save when: @@ -256253,7 +257010,7 @@ Hollow: installDir: Hollow: {} launch: - /Hollow.exe: + "/Hollow.exe": - when: - os: windows store: steam @@ -256263,7 +257020,7 @@ Hollow 2: installDir: Hollow 2: {} launch: - /Hollow2.exe: + "/Hollow2.exe": - when: - store: steam steam: @@ -256278,7 +257035,7 @@ Hollow Halls: installDir: Hollow Halls: {} launch: - /Hollow Halls.exe: + "/Hollow Halls.exe": - when: - os: windows store: steam @@ -256288,15 +257045,15 @@ Hollow Head: installDir: Hollow Head: {} launch: - /Contents/MacOS/HollowHeadDC: + "/Contents/MacOS/HollowHeadDC": - when: - os: mac store: steam - /HolloHeadDCLinux.x86_64: + "/HolloHeadDCLinux.x86_64": - when: - os: linux store: steam - /HollowHead.exe: + "/HollowHead.exe": - when: - os: windows store: steam @@ -256306,7 +257063,7 @@ Hollow Island: installDir: Hollow Island: {} launch: - /Hollow_Island.exe: + "/Hollow_Island.exe": - when: - os: windows store: steam @@ -256314,49 +257071,49 @@ Hollow Island: id: 1185820 Hollow Knight: files: - /hollow_knight_Data/Config.ini: + "/hollow_knight_Data/Config.ini": tags: - config when: - os: windows - /AppData/LocalLow/Team Cherry/Hollow Knight: + "/AppData/LocalLow/Team Cherry/Hollow Knight": tags: - save when: - os: windows store: microsoft - /AppData/LocalLow/Team Cherry/Hollow Knight/*.bak: + "/AppData/LocalLow/Team Cherry/Hollow Knight/*.bak": tags: - save when: - os: windows - /AppData/LocalLow/Team Cherry/Hollow Knight/*.dat: + "/AppData/LocalLow/Team Cherry/Hollow Knight/*.dat": tags: - save when: - os: windows - /Library/Application Support/unity.Team Cherry.Hollow Knight: + "/Library/Application Support/unity.Team Cherry.Hollow Knight": tags: - save when: - os: mac - /Library/Preferences/unity.Team Cherry.Hollow Knight.plist: + "/Library/Preferences/unity.Team Cherry.Hollow Knight.plist": tags: - config when: - os: mac - /Packages/TeamCherry.HollowKnightPC_y4jvztpgccj42: + "/Packages/TeamCherry.HollowKnightPC_y4jvztpgccj42": tags: - config when: - os: windows store: microsoft - /unity3d/Team Cherry/Hollow Knight/*.dat: + "/unity3d/Team Cherry/Hollow Knight/*.dat": tags: - save when: - os: linux - /unity3d/Team Cherry/Hollow Knight/prefs: + "/unity3d/Team Cherry/Hollow Knight/prefs": tags: - config when: @@ -256373,15 +257130,15 @@ Hollow Knight: installDir: Hollow Knight: {} launch: - /hollow_knight.app: + "/hollow_knight.app": - when: - os: mac store: steam - /hollow_knight.exe: + "/hollow_knight.exe": - when: - os: windows store: steam - /hollow_knight.x86_64: + "/hollow_knight.x86_64": - when: - os: linux store: steam @@ -256391,7 +257148,7 @@ Hollow Knight: - config steam: id: 367520 -'Hollow Knight: Silksong': +"Hollow Knight: Silksong": gog: id: 1558393671 steam: @@ -256400,7 +257157,7 @@ Hollow Steps: installDir: Hollow Steps: {} launch: - /HollowSteps.exe: + "/HollowSteps.exe": - when: - bit: 64 os: windows @@ -256411,17 +257168,17 @@ Hollow Throne: installDir: Hollow Throne: {} launch: - /ht.exe: + "/ht.exe": - when: - os: windows store: steam steam: id: 750790 -Hollow's Land: +"Hollow's Land": installDir: content: {} launch: - /Hollow's Land.exe: + "/Hollow's Land.exe": - when: - os: windows store: steam @@ -256432,12 +257189,12 @@ Hollowbody: id: 2123640 Hollowed: files: - /ProjectPolish/Saved/Config/WindowsNoEditor: + "/ProjectPolish/Saved/Config/WindowsNoEditor": tags: - save when: - os: windows - /ProjectPolish/Saved/SaveGames: + "/ProjectPolish/Saved/SaveGames": tags: - config when: @@ -256445,35 +257202,35 @@ Hollowed: installDir: Hollowed: {} launch: - /Hollowed.exe: + "/Hollowed.exe": - when: - bit: 64 os: windows store: steam steam: id: 669630 -Hollowhead's VR Time Machine: +"Hollowhead's VR Time Machine": steam: id: 1121160 Hollywood Visionary: installDir: HollywoodVisionary: {} launch: - /Hollywood Visionary.app/Contents/MacOS/Hollywood Visionary: + "/Hollywood Visionary.app/Contents/MacOS/Hollywood Visionary": - when: - os: mac store: steam - /HollywoodVisionary: + "/HollywoodVisionary": - when: - os: linux store: steam - /HollywoodVisionary.exe: + "/HollywoodVisionary.exe": - when: - os: windows store: steam steam: id: 365210 -'Holo Impact: Prologue': +"Holo Impact: Prologue": installDir: Holo Impact Prologue: {} steam: @@ -256482,7 +257239,7 @@ Holo Views: installDir: 咚啪: {} launch: - /HoloViews/DongPaSteam.exe: + "/HoloViews/DongPaSteam.exe": - when: - bit: 64 os: windows @@ -256493,7 +257250,7 @@ Holo-Graham: installDir: Holo-Graham: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -256506,7 +257263,7 @@ HoloBall: id: 457320 HoloCure - Save the Fans!: files: - /HoloCure: + "/HoloCure": tags: - config - save @@ -256515,7 +257272,7 @@ HoloCure - Save the Fans!: installDir: HoloCure: {} launch: - /HoloCure.exe: + "/HoloCure.exe": - when: - store: steam steam: @@ -256532,36 +257289,36 @@ HoloSprint: installDir: HoloSprint: {} launch: - /HoloSprint_MacOS.app: + "/HoloSprint_MacOS.app": - when: - os: mac store: steam - /HoloSprint_Windows.exe: + "/HoloSprint_Windows.exe": - when: - bit: 64 os: windows store: steam steam: id: 1119670 -'Holobunnies: Pause Café': +"Holobunnies: Pause Café": installDir: HolobunniesPC: {} launch: - /Holobunnies.app: + "/Holobunnies.app": - when: - os: mac store: steam - /Holobunnies.exe: + "/Holobunnies.exe": - when: - os: windows store: steam - /Holobunnies.sh: + "/Holobunnies.sh": - when: - os: linux store: steam steam: id: 497710 -'Holobunnies: The Bittersweet Adventure': +"Holobunnies: The Bittersweet Adventure": steam: id: 369840 Holoception: @@ -256583,7 +257340,7 @@ Holodrive: installDir: Holodrive: {} launch: - /holodrive.exe: + "/holodrive.exe": - when: - os: windows store: steam @@ -256593,16 +257350,16 @@ Hologram: installDir: Hologram: {} launch: - /HOLOGRAM.exe: + "/HOLOGRAM.exe": - when: - store: steam steam: id: 1848870 -'Hololive Error: Complete Edition': +"Hololive Error: Complete Edition": installDir: hololive ERROR the Game: {} launch: - /hololive ERROR.exe: + "/hololive ERROR.exe": - when: - store: steam steam: @@ -256613,8 +257370,8 @@ Holomento: installDir: Holomento: {} launch: - /Holomento.exe: - - arguments: '-windowed' + "/Holomento.exe": + - arguments: "-windowed" when: - os: windows store: steam @@ -256624,7 +257381,7 @@ Holonglide: installDir: HOLONGLIDE: {} launch: - /HOLONGLIDE.exe: + "/HOLONGLIDE.exe": - when: - os: windows store: steam @@ -256635,7 +257392,7 @@ Holopoint: Holopoint: {} steam: id: 457960 -'Holopoint: Chronicle': +"Holopoint: Chronicle": installDir: Holopoint_Chronicle: {} steam: @@ -256650,28 +257407,28 @@ Holy Avatar vs. Maidens of the Dead: installDir: Holy Avatar vs Maidens of the Dead: {} launch: - /x86_installer/HolyAvatarVS.exe: + "/x86_installer/HolyAvatarVS.exe": - when: - os: windows store: steam - workingDir: /x86_installer - /x86_installer/HolyAvatarVSAdmin.exe: + workingDir: "/x86_installer" + "/x86_installer/HolyAvatarVSAdmin.exe": - when: - os: windows store: steam - workingDir: /x86_installer - /x86_installer/Maidens of the dead.pdf: + workingDir: "/x86_installer" + "/x86_installer/Maidens of the dead.pdf": - when: - os: windows store: steam - workingDir: /x86_installer + workingDir: "/x86_installer" steam: id: 261720 Holy Avenger: installDir: Holy Avenger: {} launch: - /HolyAvenger.exe: + "/HolyAvenger.exe": - arguments: ~windowed when: - os: windows @@ -256682,14 +257439,14 @@ Holy Knight Luviria: installDir: Holy Knight Luviria: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: id: 1156730 Holy Potatoes! A Spy Story?!: files: - /Library/Application Support/Daedalic Entertainment GmbH/HPSPY/Saves: + "/Library/Application Support/Daedalic Entertainment GmbH/HPSPY/Saves": tags: - save when: @@ -256699,20 +257456,20 @@ Holy Potatoes! A Spy Story?!: installDir: Holy Potatoes! A Spy Story!: {} launch: - /HPSPY.app: + "/HPSPY.app": - when: - os: mac store: steam - /HPSPY.exe: + "/HPSPY.exe": - when: - os: windows store: steam - /HPSPY.x86: + "/HPSPY.x86": - when: - bit: 32 os: linux store: steam - /HPSPY.x86_64: + "/HPSPY.x86_64": - when: - bit: 64 os: linux @@ -256731,18 +257488,18 @@ Holy Potatoes! A Weapon Shop?!: - config when: - os: mac - /Documents/SavedGames/WS_*.txt: + "/Documents/SavedGames/WS_*.txt": tags: - save when: - os: mac - os: linux - /SavedGames/WS_*.txt: + "/SavedGames/WS_*.txt": tags: - save when: - os: windows - /SavedGames/uploadData: + "/SavedGames/uploadData": tags: - save when: @@ -256752,20 +257509,20 @@ Holy Potatoes! A Weapon Shop?!: installDir: Holy Potatoes! A Weapon Shop!: {} launch: - /HPAWS.app: + "/HPAWS.app": - when: - os: mac store: steam - /HPAWS.exe: + "/HPAWS.exe": - when: - os: windows store: steam - /HPAWS.x86: + "/HPAWS.x86": - when: - bit: 32 os: linux store: steam - /HPAWS.x86_64: + "/HPAWS.x86_64": - when: - bit: 64 os: linux @@ -256776,26 +257533,26 @@ Holy Potatoes! A Weapon Shop?!: - config steam: id: 363600 -Holy Potatoes! We're in Space?!: +"Holy Potatoes! We're in Space?!": gog: id: 1707144504 installDir: - Holy Potatoes! We're in Space!: {} + "Holy Potatoes! We're in Space!": {} launch: - /HPWIS.app: + "/HPWIS.app": - when: - os: mac store: steam - /HPWIS.exe: + "/HPWIS.exe": - when: - os: windows store: steam - /HPWIS.x86: + "/HPWIS.x86 ": - when: - bit: 32 os: linux store: steam - /HPWIS.x86_64: + "/HPWIS.x86_64": - when: - bit: 64 os: linux @@ -256810,20 +257567,20 @@ Holy Potatoes! What the Hell?!: installDir: Holy Potatoes! What the Hell!: {} launch: - /HPWTH.app: + "/HPWTH.app": - when: - os: mac store: steam - /HPWTH.exe: + "/HPWTH.exe": - when: - os: windows store: steam - /HPWTH.x86: + "/HPWTH.x86": - when: - bit: 32 os: linux store: steam - /HPWTH.x86_64: + "/HPWTH.x86_64": - when: - bit: 64 os: linux @@ -256834,7 +257591,7 @@ Holy Road: installDir: Holy Road: {} launch: - /Holy Road.exe: + "/Holy Road.exe": - when: - os: windows store: steam @@ -256847,7 +257604,7 @@ Holy Towers: installDir: Holy TD Epic tower defence: {} launch: - /HolyTD.exe: + "/HolyTD.exe": - when: - os: windows store: steam @@ -256856,19 +257613,19 @@ Holy Towers: Holy Warrior: steam: id: 382230 -'Holyday City: Reloaded': +"Holyday City: Reloaded": installDir: Holyday City Reloaded: {} launch: - /Holyday City Reloaded.app: + "/Holyday City Reloaded.app": - when: - os: mac store: steam - /Holyday City Reloaded.exe: + "/Holyday City Reloaded.exe": - when: - os: windows store: steam - /Holyday City Reloaded.x86_64: + "/Holyday City Reloaded.x86_64": - when: - os: linux store: steam @@ -256876,7 +257633,7 @@ Holy Warrior: id: 728730 Home (2012): files: - /Home_v15x: + "/Home_v15x": tags: - save when: @@ -256884,11 +257641,11 @@ Home (2012): installDir: Home: {} launch: - /home-mac-eng.app: + "/home-mac-eng.app": - when: - os: mac store: steam - /home-win-eng.exe: + "/home-win-eng.exe": - when: - os: windows store: steam @@ -256898,11 +257655,11 @@ Home (2019): installDir: HOME: {} launch: - /HOME.app/Contents/MacOS/HOME: + "/HOME.app/Contents/MacOS/HOME": - when: - os: mac store: steam - /HOME.exe: + "/HOME.exe": - when: - os: windows store: steam @@ -256918,7 +257675,7 @@ Home Alone Girlfriend: id: 733290 Home Behind: files: - /HomeBehind_Data/Save.dat: + "/HomeBehind_Data/Save.dat": tags: - save when: @@ -256926,20 +257683,20 @@ Home Behind: installDir: HomeBehind: {} launch: - /HomeBehind.app: + "/HomeBehind.app": - when: - os: mac store: steam - /HomeBehind.exe: + "/HomeBehind.exe": - when: - os: windows store: steam - /HomeBehind.x86: + "/HomeBehind.x86": - when: - bit: 32 os: linux store: steam - /HomeBehind.x86_64: + "/HomeBehind.x86_64": - when: - bit: 64 os: linux @@ -256954,11 +257711,11 @@ Home Darkness - Escape: installDir: Home Darkness - Escape: {} launch: - /Home darkness - Escape.app/Contents/MacOS/Flash Player: + "/Home darkness - Escape.app/Contents/MacOS/Flash Player": - when: - os: mac store: steam - /win32/Home darkness - Escape.exe: + "/win32/Home darkness - Escape.exe": - when: - os: windows store: steam @@ -256968,7 +257725,7 @@ Home Deco Puzzles: installDir: Home Deco Puzzles: {} launch: - /Home Deco Puzzles.exe: + "/Home Deco Puzzles.exe": - when: - store: steam steam: @@ -256977,23 +257734,23 @@ Home Design 3D: installDir: Home Design 3D: {} launch: - /Home Design 3D.app: + "/Home Design 3D.app": - when: - os: mac store: steam steam: id: 420000 -'Home Improvisation: Furniture Sandbox': +"Home Improvisation: Furniture Sandbox": installDir: Home Improvisation: {} launch: - /homeimprov.app: - - arguments: '-vrmode None' + "/homeimprov.app": + - arguments: "-vrmode None" when: - os: mac store: steam - /homeimprov.x86: - - arguments: '-vrmode None' + "/homeimprov.x86": + - arguments: "-vrmode None" when: - os: linux store: steam @@ -257003,7 +257760,7 @@ Home Land: installDir: HOME: {} launch: - /Home.exe: + "/Home.exe": - when: - store: steam steam: @@ -257017,10 +257774,10 @@ Home Run Solitaire: installDir: Home Run Solitaire: {} launch: - /game.exe: + "/game.exe": - when: - store: steam - /v1.0.2/HomeRunSolitaire.exe: + "/v1.0.2/HomeRunSolitaire.exe": - when: - os: windows store: steam @@ -257030,7 +257787,7 @@ Home Security: installDir: Home Security: {} launch: - /Home Security/Home_Security.exe: + "/Home Security/Home_Security.exe": - when: - bit: 64 os: windows @@ -257039,7 +257796,7 @@ Home Security: id: 926370 Home Sheep Home 2: files: - /HomeSheepHome2/Local Store: + "/HomeSheepHome2/Local Store": tags: - config - save @@ -257048,7 +257805,7 @@ Home Sheep Home 2: installDir: HSH Farmageddon: {} launch: - /Home Sheep Home Farmageddon Party Edition.exe: + "/Home Sheep Home Farmageddon Party Edition.exe": - when: - os: windows store: steam @@ -257056,12 +257813,12 @@ Home Sheep Home 2: id: 259810 Home Sweet Home: files: - /HomeSweetHome/Saved/Config/WindowsNoEditor: + "/HomeSweetHome/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /HomeSweetHome/Saved/SaveGames: + "/HomeSweetHome/Saved/SaveGames": tags: - save when: @@ -257069,7 +257826,7 @@ Home Sweet Home: installDir: Home Sweet Home: {} launch: - /HomeSweetHome.exe: + "/HomeSweetHome.exe": - when: - os: windows store: steam @@ -257079,7 +257836,7 @@ Home Sweet Home Episode 2: installDir: Home Sweet Home EP2: {} launch: - /HomeSweetHome2.exe: + "/HomeSweetHome2.exe": - when: - os: windows store: steam @@ -257094,7 +257851,7 @@ Home Wars: installDir: Home Wars: {} launch: - /Home Wars.exe: + "/Home Wars.exe": - when: - os: windows store: steam @@ -257104,22 +257861,22 @@ Home is Where One Starts...: installDir: Home is Where One Starts: {} launch: - /HomeStarts.exe: + "/HomeStarts.exe": - when: - os: windows store: steam - /HomeStarts_Linux.x86_64: + "/HomeStarts_Linux.x86_64": - when: - bit: 64 os: linux store: steam - /HomeStarts_Mac.app: + "/HomeStarts_Mac.app": - when: - os: mac store: steam steam: id: 355970 -'Home: A VR Spacewalk': +"Home: A VR Spacewalk": installDir: Home - A VR Spacewalk: {} steam: @@ -257131,7 +257888,7 @@ HomeWork Is Crazy: installDir: HomeWorkIsCrazy: {} launch: - /Mathematical.exe: + "/Mathematical.exe": - when: - os: windows store: steam @@ -257144,7 +257901,7 @@ Homebound: id: 497440 Homebrew - Patent Unknown: files: - /AppData/LocalLow/CopyBugPaste/Homebrew14/userData: + "/AppData/LocalLow/CopyBugPaste/Homebrew14/userData": tags: - save when: @@ -257152,7 +257909,7 @@ Homebrew - Patent Unknown: installDir: Homebrew - Patent Unknown: {} launch: - /HB.exe: + "/HB.exe": - when: - bit: 64 os: windows @@ -257161,13 +257918,13 @@ Homebrew - Patent Unknown: id: 325420 Homefront: files: - /userdata//55100/remote: + "/userdata//55100/remote": tags: - save when: - os: windows store: steam - /My Games/HOMEFRONT/GCGame/Config: + "/My Games/HOMEFRONT/GCGame/Config": tags: - config when: @@ -257178,20 +257935,20 @@ Homefront: installDir: HOMEFRONT: {} launch: - /Binaries/HOMEFRONT.exe: - - arguments: '-seekfreeloading' + "/Binaries/HOMEFRONT.exe": + - arguments: "-seekfreeloading" when: - store: steam steam: id: 55100 -'Homefront: The Revolution': +"Homefront: The Revolution": files: - /Saved Games/homefront2: + "/Saved Games/homefront2": tags: - config when: - os: windows - /Saved Games/homefront2/SaveGames: + "/Saved Games/homefront2/SaveGames": tags: - save when: @@ -257199,11 +257956,11 @@ Homefront: installDir: Homefront_The_Revolution: {} launch: - /Bin64/Homefront2_Release.exe: + "/Bin64/Homefront2_Release.exe": - when: - os: windows store: steam - /run_hf2: + "/run_hf2": - when: - os: linux store: steam @@ -257213,7 +257970,7 @@ Homeless Simulator: installDir: Homeless Simulator: {} launch: - /HomelessSimulator.exe: + "/HomelessSimulator.exe": - when: - os: windows store: steam @@ -257223,7 +257980,7 @@ Homeless Simulator 2: installDir: Homeless Simulator 2: {} launch: - /HomelessSimulator2.exe: + "/HomelessSimulator2.exe": - when: - os: windows store: steam @@ -257233,22 +257990,22 @@ Homelesshood: installDir: homelesshood: {} launch: - /Homelesshood.app/Contents/MacOS/Homelesshood: + "/Homelesshood.app/Contents/MacOS/Homelesshood": - when: - os: mac store: steam - /homelesshood.exe: + "/homelesshood.exe": - when: - os: windows store: steam steam: id: 685870 -Homer's Odyssey: +"Homer's Odyssey": steam: id: 1165660 Homesick: files: - /Binaries/Win32/homesicksave: + "/Binaries/Win32/homesicksave": tags: - save when: @@ -257256,12 +258013,12 @@ Homesick: installDir: Homesick: {} launch: - /Binaries/Win32/UDK.exe: + "/Binaries/Win32/UDK.exe": - when: - os: windows store: steam - workingDir: /Binaries/Win32 - /Homesick.app: + workingDir: "/Binaries/Win32" + "/Homesick.app": - when: - os: mac store: steam @@ -257276,7 +258033,7 @@ Homestead: installDir: Homestead: {} launch: - /Homestead.exe: + "/Homestead.exe": - when: - os: windows store: steam @@ -257286,7 +258043,7 @@ Homestead Arcana: installDir: Homestead Arcana: {} launch: - /Homestead Arcana.exe: + "/Homestead Arcana.exe": - when: - os: windows store: steam @@ -257302,7 +258059,7 @@ Homeward Duck: id: 1065110 Homeworld: files: - /SavedGames: + "/SavedGames": tags: - save when: @@ -257315,12 +258072,12 @@ Homeworld: installDir: Homeworld: {} launch: - /HWLauncher/Launcher.exe: + "/HWLauncher/Launcher.exe": - when: - os: windows store: steam - workingDir: /HWLauncher - /HomeworldRemastered.app: + workingDir: "/HWLauncher" + "/HomeworldRemastered.app": - when: - os: mac store: steam @@ -257332,7 +258089,7 @@ Homeworld: id: 244160 Homeworld 2: files: - /Bin/Profiles: + "/Bin/Profiles": tags: - save when: @@ -257345,12 +258102,12 @@ Homeworld 2: installDir: Homeworld: {} launch: - /HWLauncher/Launcher.exe: + "/HWLauncher/Launcher.exe": - when: - os: windows store: steam - workingDir: /HWLauncher - /HomeworldRemastered.app: + workingDir: "/HWLauncher" + "/HomeworldRemastered.app": - when: - os: mac store: steam @@ -257358,7 +258115,7 @@ Homeworld 2: id: 244160 Homeworld 2 Remastered Edition: files: - /HomeworldRM/Bin/Profiles/Profile1: + "/HomeworldRM/Bin/Profiles/Profile1": tags: - config when: @@ -257371,12 +258128,12 @@ Homeworld 2 Remastered Edition: installDir: Homeworld: {} launch: - /HWLauncher/Launcher.exe: + "/HWLauncher/Launcher.exe": - when: - os: windows store: steam - workingDir: /HWLauncher - /HomeworldRemastered.app: + workingDir: "/HWLauncher" + "/HomeworldRemastered.app": - when: - os: mac store: steam @@ -257389,7 +258146,7 @@ Homeworld Defense: installDir: Homeworld Defense: {} launch: - /Space_TD.exe: + "/Space_TD.exe": - when: - os: windows store: steam @@ -257397,12 +258154,12 @@ Homeworld Defense: id: 787100 Homeworld Remastered Edition: files: - /HomeworldRM/Bin/Profiles/Profile1: + "/HomeworldRM/Bin/Profiles/Profile1": tags: - config when: - os: windows - /HomeworldRM/Bin/Profiles/Profile1/Campaign: + "/HomeworldRM/Bin/Profiles/Profile1/Campaign": tags: - save when: @@ -257415,20 +258172,20 @@ Homeworld Remastered Edition: installDir: Homeworld: {} launch: - /HWLauncher/Launcher.exe: + "/HWLauncher/Launcher.exe": - when: - os: windows store: steam - workingDir: /HWLauncher - /HomeworldRemastered.app: + workingDir: "/HWLauncher" + "/HomeworldRemastered.app": - when: - os: mac store: steam steam: id: 244160 -'Homeworld: Cataclysm': +"Homeworld: Cataclysm": files: - /SavedGames: + "/SavedGames": tags: - save when: @@ -257439,24 +258196,24 @@ Homeworld Remastered Edition: HKEY_LOCAL_MACHINE/SOFTWARE/WOW6432Node/Sierra On-Line/Cataclysm: tags: - config -'Homeworld: Deserts of Kharak': +"Homeworld: Deserts of Kharak": files: - /Win32/out/cloud: + "/Win32/out/cloud": tags: - save when: - os: windows - /Win32/settings.json: + "/Win32/settings.json": tags: - config when: - os: windows - /Win64/out/cloud: + "/Win64/out/cloud": tags: - save when: - os: windows - /Win64/settings.json: + "/Win64/settings.json": tags: - config when: @@ -257477,18 +258234,18 @@ Homeworld Remastered Edition: installDir: Deserts of Kharak: {} launch: - /DesertsOfKharak.app/Contents/MacOS/DesertsOfKharak: + "/DesertsOfKharak.app/Contents/MacOS/DesertsOfKharak": - when: - os: mac store: steam - /DesertsOfKharak32.exe: - - arguments: '--steam' + "/DesertsOfKharak32.exe": + - arguments: "--steam" when: - bit: 32 os: windows store: steam - /DesertsOfKharak64.exe: - - arguments: '--steam' + "/DesertsOfKharak64.exe": + - arguments: "--steam" when: - bit: 64 os: windows @@ -257501,7 +258258,7 @@ Homicidal All-Stars: installDir: Showgunners: {} launch: - /Showgunners.exe: + "/Showgunners.exe": - when: - store: steam steam: @@ -257510,7 +258267,7 @@ Homicide: installDir: homicide: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -257520,7 +258277,7 @@ Homing Shapes: installDir: Homing Shapes: {} launch: - /Homing Shapes.exe: + "/Homing Shapes.exe": - when: - os: windows store: steam @@ -257530,7 +258287,7 @@ Homo Flimsy: installDir: Homo Flimsy: {} launch: - /ElliottsGame.exe: + "/ElliottsGame.exe": - when: - bit: 64 os: windows @@ -257540,19 +258297,19 @@ Homo Flimsy: Honey Comb Home: steam: id: 1020810 -'Honey Rose: Underdog Fighter Extraordinaire': +"Honey Rose: Underdog Fighter Extraordinaire": installDir: Honey Rose Underdog Fighter Extraordinaire: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam steam: id: 523680 -'Honey, I Joined a Cult': +"Honey, I Joined a Cult": files: - /Honey_I_Joined_A_Cult: + "/Honey_I_Joined_A_Cult": tags: - save when: @@ -257562,9 +258319,9 @@ Honey Comb Home: - 2192040 - 2192050 installDir: - 'Honey, I Joined a Cult': {} + "Honey, I Joined a Cult": {} launch: - '/Honey, I Joined a Cult.exe': + "/Honey, I Joined a Cult.exe": - when: - os: windows store: steam @@ -257574,7 +258331,7 @@ Honeycomb Clash: installDir: Honeycomb Clash: {} launch: - /Honeycomb Clash.exe: + "/Honeycomb Clash.exe": - when: - os: windows store: steam @@ -257590,7 +258347,7 @@ Honkai Impact 3rd: installDir: HonkaiImpact3rd: {} launch: - /BH3.exe: + "/BH3.exe": - when: - bit: 64 os: windows @@ -257601,21 +258358,21 @@ Honkai Impact 3rd: - config steam: id: 1671200 -'Honkai: Star Rail': +"Honkai: Star Rail": registry: HKEY_CURRENT_USER/Software/Cognosphere/Star Rail: tags: - config - save -'Honor Cry: Aftermath': +"Honor Cry: Aftermath": installDir: Honor Cry Aftermath: {} launch: - /Game.app: + "/Game.app": - when: - os: mac store: steam - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -257625,20 +258382,20 @@ Hoo-Boy: installDir: Hoo-Boy: {} launch: - /Hoo-Boy.exe: + "/Hoo-Boy.exe": - when: - os: windows store: steam - /Hoo-Boy.x86_64: + "/Hoo-Boy.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 707870 -'Hood: Outlaws & Legends': +"Hood: Outlaws & Legends": files: - /Hood/Saved/Config/WindowsNoEditor: + "/Hood/Saved/Config/WindowsNoEditor": tags: - config when: @@ -257646,8 +258403,8 @@ Hoo-Boy: installDir: Hood: {} launch: - /Launch_Hood.exe: - - arguments: ' -online -NoDebugExecBindings -EAC -tier=live' + "/Launch_Hood.exe": + - arguments: " -online -NoDebugExecBindings -EAC -tier=live" when: - bit: 64 os: windows @@ -257658,7 +258415,7 @@ Hoodo: installDir: Hoodo: {} launch: - /Arch.exe: + "/Arch.exe": - when: - bit: 64 os: windows @@ -257667,22 +258424,22 @@ Hoodo: id: 1120900 Hook (2015): files: - /AppData/LocalLow/RainbowTrain/Hook//saveData.txt: + "/AppData/LocalLow/RainbowTrain/Hook//saveData.txt": tags: - save when: - os: windows - /Library/Application Support/RainbowTrain/Hook//saveData.txt: + "/Library/Application Support/RainbowTrain/Hook//saveData.txt": tags: - save when: - os: mac - /unity3d/RainbowTrain/Hook//saveData.txt: + "/unity3d/RainbowTrain/Hook//saveData.txt": tags: - save when: - os: linux - /unity3d/RainbowTrain/Hook/prefs: + "/unity3d/RainbowTrain/Hook/prefs": tags: - config when: @@ -257690,15 +258447,15 @@ Hook (2015): installDir: Hook: {} launch: - /Hook.exe: + "/Hook.exe": - when: - os: windows store: steam - /hook.app: + "/hook.app": - when: - os: mac store: steam - /hook.x86_64: + "/hook.x86_64": - when: - bit: 64 os: linux @@ -257711,22 +258468,22 @@ Hook (2015): id: 367580 Hook 2: files: - /AppData/LocalLow/Rainbow Train/Hook 2/: + "/AppData/LocalLow/Rainbow Train/Hook 2/": tags: - save when: - os: windows - /Library/Application Support/Rainbow Train/Hook 2/: + "/Library/Application Support/Rainbow Train/Hook 2/": tags: - save when: - os: mac - /unity3d/Rainbow Train/Hook 2/: + "/unity3d/Rainbow Train/Hook 2/": tags: - save when: - os: linux - /unity3d/Rainbow Train/Hook 2/prefs: + "/unity3d/Rainbow Train/Hook 2/prefs": tags: - config when: @@ -257734,15 +258491,15 @@ Hook 2: installDir: Hook 2: {} launch: - /Hook 2.exe: + "/Hook 2.exe": - when: - os: windows store: steam - /Hook2.app: + "/Hook2.app": - when: - os: mac store: steam - /Hook2.x86_64: + "/Hook2.x86_64": - when: - bit: 64 os: linux @@ -257755,12 +258512,12 @@ Hook 2: id: 1871310 Hookbots: files: - /AppData/LocalLow/Tree Interactive/Hookbots: + "/AppData/LocalLow/Tree Interactive/Hookbots": tags: - save when: - os: windows - /AppData/LocalLow/Tree Interactive/Hookbots/Preferences.hkb: + "/AppData/LocalLow/Tree Interactive/Hookbots/Preferences.hkb": tags: - config when: @@ -257768,11 +258525,11 @@ Hookbots: installDir: Hookbots: {} launch: - /Hookbots.app: + "/Hookbots.app": - when: - os: mac store: steam - /Hookbots.exe: + "/Hookbots.exe": - when: - os: windows store: steam @@ -257782,11 +258539,11 @@ Hookbots: - config steam: id: 668650 -'Hooked on You: A Dead by Daylight Dating Sim': +"Hooked on You: A Dead by Daylight Dating Sim": installDir: Hooked on You: {} launch: - /Hooked on You.exe: + "/Hooked on You.exe": - when: - os: windows store: steam @@ -257796,7 +258553,7 @@ Hooklings: installDir: Hooklings: {} launch: - /Hooklings.exe: + "/Hooklings.exe": - when: - os: windows store: steam @@ -257806,7 +258563,7 @@ Hooks And Shotguns: installDir: H&S: {} launch: - /rope.exe: + "/rope.exe": - when: - os: windows store: steam @@ -257816,11 +258573,11 @@ Hookshot: installDir: Hookshot: {} launch: - /Hookshot.exe: + "/Hookshot.exe": - when: - os: windows store: steam - /Hookshot.x86_64: + "/Hookshot.x86_64": - when: - os: linux store: steam @@ -257833,38 +258590,38 @@ Hooligan Vasja: installDir: Hooligan Vasja: {} launch: - /vasja.exe: + "/vasja.exe": - when: - os: windows store: steam steam: id: 515910 -'Hooligan Vasja 2: Journey Through Time': +"Hooligan Vasja 2: Journey Through Time": steam: id: 806800 -'Hooligan Vasja: Christmas': +"Hooligan Vasja: Christmas": installDir: Hooligan Vasja Christmas: {} launch: - /vasja-christmas.exe: + "/vasja-christmas.exe": - when: - os: windows store: steam steam: id: 667360 -'Hooligan Vasja: Halloween': +"Hooligan Vasja: Halloween": installDir: Hooligan Vasja Halloween: {} launch: - /vasja-halloween.exe: + "/vasja-halloween.exe": - when: - os: windows store: steam steam: id: 655460 -'Hooligans: Storm Over Europe': +"Hooligans: Storm Over Europe": files: - /save: + "/save": tags: - save when: @@ -257913,37 +258670,37 @@ HopSquash!: installDir: HopSquash: {} launch: - /HopSquash: + "/HopSquash": - when: - bit: 64 os: linux store: steam - /HopSquash.app: + "/HopSquash.app": - when: - os: mac store: steam - /HopSquash.exe: + "/HopSquash.exe": - when: - os: windows store: steam - /HopSquash_Legacy.app: + "/HopSquash_Legacy.app": - when: - os: mac store: steam - /Unity/HopSquash.exe: + "/Unity/HopSquash.exe": - when: - os: windows store: steam - workingDir: /Unity - /Unity/HopSquash.x86_64: + workingDir: "/Unity" + "/Unity/HopSquash.x86_64": - when: - bit: 64 os: linux store: steam - workingDir: /Unity + workingDir: "/Unity" steam: id: 1012450 -'Hopalong: The Badlands': +"Hopalong: The Badlands": installDir: HopalongBadlands: {} steam: @@ -257952,7 +258709,7 @@ Hope: installDir: Hope: {} launch: - /Hope.exe: + "/Hope.exe": - when: - os: windows store: steam @@ -257962,8 +258719,8 @@ Hope For Village: installDir: Hope For Village: {} launch: - /Hope for Village.exe: - - arguments: '--in-process-gpu' + "/Hope for Village.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam @@ -257971,12 +258728,12 @@ Hope For Village: id: 1005630 Hope Lake: files: - /MysteryTag/HopeLake/*.save: + "/MysteryTag/HopeLake/*.save": tags: - save when: - os: windows - /MysteryTag/HopeLake/game.conf: + "/MysteryTag/HopeLake/game.conf": tags: - config when: @@ -257984,7 +258741,7 @@ Hope Lake: installDir: Hope Lake: {} launch: - /HopeLake.exe: + "/HopeLake.exe": - when: - os: windows store: steam @@ -257998,8 +258755,8 @@ Hope for City: installDir: Hope for City: {} launch: - /Hope for City.exe: - - arguments: '--in-process-gpu' + "/Hope for City.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam @@ -258012,7 +258769,7 @@ Hope in Hell: installDir: Hope in Hell: {} launch: - /HopeInHell.exe: + "/HopeInHell.exe": - when: - os: windows store: steam @@ -258022,7 +258779,7 @@ Hope is in 23: installDir: Hope23: {} launch: - /ProjectBlaze.exe: + "/ProjectBlaze.exe": - when: - bit: 64 os: windows @@ -258033,29 +258790,29 @@ Hope of Humanity: installDir: Hopeofhumanity: {} launch: - /nw: + "/nw": - when: - os: linux store: steam - /nw.exe: + "/nw.exe": - when: - os: windows store: steam steam: id: 868710 -Hope's Farm: +"Hope's Farm": installDir: - Hope's Farm: {} + "Hope's Farm": {} launch: - /Hopes Farm.app: + "/Hopes Farm.app": - when: - os: mac store: steam - /Hopes Farm.exe: + "/Hopes Farm.exe": - when: - os: windows store: steam - /Hopes Farm.x86_64: + "/Hopes Farm.x86_64": - when: - os: linux store: steam @@ -258065,7 +258822,7 @@ Hope; or How We Survived: installDir: Hope; or How We Survived: {} launch: - /Hope HWSTA master file.exe: + "/Hope HWSTA master file.exe": - when: - os: windows store: steam @@ -258075,7 +258832,7 @@ HopeLine: installDir: HopeLine: {} launch: - /hopeline.exe: + "/hopeline.exe": - when: - os: windows store: steam @@ -258083,7 +258840,7 @@ HopeLine: id: 886520 Hopkins FBI: files: - /SAVE: + "/SAVE": tags: - save when: @@ -258095,11 +258852,11 @@ Hoppa: installDir: Hoppa: {} launch: - /hoppa_mac.app: + "/hoppa_mac.app": - when: - os: mac store: steam - /hoppa_windows/hoppa.exe: + "/hoppa_windows/hoppa.exe": - when: - os: windows store: steam @@ -258109,27 +258866,27 @@ Hopper Rabbit: installDir: HR: {} launch: - /HR.exe: + "/HR.exe": - when: - os: windows store: steam - /HR_HACKER.exe: + "/HR_HACKER.exe": - when: - os: windows store: steam - /HR_TPS.exe: + "/HR_TPS.exe": - when: - os: windows store: steam - /HR_TPS_HACKER.exe: + "/HR_TPS_HACKER.exe": - when: - os: windows store: steam - /HR_TPS_XMAS.exe: + "/HR_TPS_XMAS.exe": - when: - os: windows store: steam - /HR_XMAS.exe: + "/HR_XMAS.exe": - when: - os: windows store: steam @@ -258139,21 +258896,21 @@ Hopscotch: installDir: Hopscotch: {} launch: - /hopscotch.app/Contents/MacOS/hopscotch: + "/hopscotch.app/Contents/MacOS/hopscotch": - when: - os: mac store: steam - /hopscotch.exe: + "/hopscotch.exe": - when: - os: windows store: steam steam: id: 710310 -'HorD: High or Die': +"HorD: High or Die": installDir: HorD High or Die: {} launch: - /HorD.exe: + "/HorD.exe": - when: - bit: 64 os: windows @@ -258162,22 +258919,22 @@ Hopscotch: id: 777360 Horace: files: - /AppData/LocalLow/505 Games/Horace: + "/AppData/LocalLow/505 Games/Horace": tags: - save when: - os: windows - /AppData/LocalLow/505 Games/Horace/Options: + "/AppData/LocalLow/505 Games/Horace/Options": tags: - config when: - os: windows - /userdata//629090/remote: + "/userdata//629090/remote": tags: - save when: - store: steam - /userdata//629090/remote/Options: + "/userdata//629090/remote/Options": tags: - config when: @@ -258187,7 +258944,7 @@ Horace: installDir: Horace: {} launch: - /Horace/Horace.exe: + "/Horace/Horace.exe": - when: - os: windows store: steam @@ -258197,11 +258954,11 @@ Horace: - config steam: id: 629090 -'Horace: First Trip': +"Horace: First Trip": installDir: - ' Первых Поход': {} + " Первых Поход": {} launch: - /Horace First Trip.exe: + "/Horace First Trip.exe": - when: - os: windows store: steam @@ -258211,7 +258968,7 @@ Horde Attack: installDir: HORDE ATTACK: {} launch: - /Horde attack.exe: + "/Horde attack.exe": - when: - os: windows store: steam @@ -258221,18 +258978,18 @@ Horde of Plenty: installDir: Horde Of Plenty: {} launch: - /Horde Of Plenty.exe: + "/Horde Of Plenty.exe": - when: - bit: 64 os: windows store: steam steam: id: 761300 -'Horde: Zombie Outbreak': +"Horde: Zombie Outbreak": installDir: HordeZombieOutbreak: {} launch: - /Horde.exe: + "/Horde.exe": - when: - os: windows store: steam @@ -258244,7 +259001,7 @@ HordeCore: installDir: HordeCore: {} launch: - /HordeCore! Launcher.exe: + "/HordeCore! Launcher.exe": - when: - os: windows store: steam @@ -258259,7 +259016,7 @@ Hordelicious: installDir: Hordelicious: {} launch: - /Hordelicious.exe: + "/Hordelicious.exe": - when: - os: windows store: steam @@ -258269,7 +259026,7 @@ Hordiaz: installDir: Hordiaz: {} launch: - /Hordiaz.exe: + "/Hordiaz.exe": - when: - os: windows store: steam @@ -258279,7 +259036,7 @@ Horgihugh: installDir: HORGIHUGH: {} launch: - /HORGIHUGH.exe: + "/HORGIHUGH.exe": - when: - os: windows store: steam @@ -258287,12 +259044,12 @@ Horgihugh: id: 1046980 Horizon: files: - /Horizon Game/Horizon.ini: + "/Horizon Game/Horizon.ini": tags: - config when: - os: windows - /Horizon Game/Saves: + "/Horizon Game/Saves": tags: - save when: @@ -258300,7 +259057,7 @@ Horizon: installDir: Horizon: {} launch: - /launcher.exe: + "/launcher.exe": - when: - os: windows store: steam @@ -258313,24 +259070,24 @@ Horizon Beyond: id: 1122960 Horizon Chase 2: files: - /HorizonChase2/Saved/Config/WindowsNoEditor: + "/HorizonChase2/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /HorizonChase2/Saved/SaveGames: + "/HorizonChase2/Saved/SaveGames": tags: - save when: - os: windows Horizon Chase Turbo: files: - /.local/share/Steam/steamapps/common/Horizon Chase/Aquiris/HorizonChaseTurbo: + "/.local/share/Steam/steamapps/common/Horizon Chase/Aquiris/HorizonChaseTurbo": tags: - save when: - os: linux - /AppData/LocalLow/Aquiris/HorizonChaseTurbo: + "/AppData/LocalLow/Aquiris/HorizonChaseTurbo": tags: - save when: @@ -258338,20 +259095,20 @@ Horizon Chase Turbo: installDir: Horizon Chase: {} launch: - /HorizonChase.app: + "/HorizonChase.app": - when: - os: mac store: steam - /HorizonChase.exe: + "/HorizonChase.exe": - when: - os: windows store: steam - /HorizonChase.x86: + "/HorizonChase.x86": - when: - bit: 32 os: linux store: steam - /HorizonChase.x86_64: + "/HorizonChase.x86_64": - when: - bit: 64 os: linux @@ -258369,24 +259126,24 @@ Horizon Shift: installDir: Horizon Shift: {} launch: - /Horizon Shift.exe: + "/Horizon Shift.exe": - when: - store: steam - /speedlauncher.exe: + "/speedlauncher.exe": - when: - os: windows store: steam steam: id: 326120 -Horizon Shift '81: +"Horizon Shift '81": installDir: - Horizon Shift '81: {} + "Horizon Shift '81": {} launch: - /HorizonShift81.exe: + "/HorizonShift81.exe": - when: - os: windows store: steam - /Mac.app: + "/Mac.app": - when: - os: mac store: steam @@ -258402,12 +259159,12 @@ Horizon Vanguard: id: 598740 Horizon Zero Dawn: files: - /Horizon Zero Dawn/Saved Game: + "/Horizon Zero Dawn/Saved Game": tags: - save when: - os: windows - /Horizon Zero Dawn/Saved Game/profile: + "/Horizon Zero Dawn/Saved Game/profile": tags: - config when: @@ -258417,7 +259174,7 @@ Horizon Zero Dawn: installDir: Horizon Zero Dawn: {} launch: - /HorizonZeroDawn.exe: + "/HorizonZeroDawn.exe": - when: - bit: 64 os: windows @@ -258433,8 +259190,8 @@ Horns of Fear: installDir: Horns of Fear: {} launch: - /game.exe: - - arguments: '--in-process-gpu' + "/game.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam @@ -258444,7 +259201,7 @@ Horny Fighter: installDir: Horny Fighter: {} launch: - /skeletoncombat.exe: + "/skeletoncombat.exe": - when: - bit: 64 os: windows @@ -258455,7 +259212,7 @@ Horny Girl: installDir: Horny Girl: {} launch: - /Horny Girl.exe: + "/Horny Girl.exe": - when: - os: windows store: steam @@ -258465,12 +259222,15 @@ Horresco Referens: installDir: Horresco Referens: {} launch: - /Horresco Referens.app/Contents/MacOS/Horresco Referens: + "/Horresco Referens.app/Contents/MacOS/Horresco Referens": - when: - os: mac store: steam - /Horresco Referens/Horresco Referens.exe: + "/Horresco Referens/Horresco Referens.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam @@ -258480,7 +259240,7 @@ Horror Fish Simulator: installDir: Horror Fish Simulator: {} launch: - /HorrorFisher.exe: + "/HorrorFisher.exe": - when: - bit: 64 os: windows @@ -258491,7 +259251,7 @@ Horror Girl Puzzle: installDir: Horror Girl Puzzle: {} launch: - /Horror_Girl_Puzzle.exe: + "/Horror_Girl_Puzzle.exe": - when: - os: windows store: steam @@ -258501,7 +259261,7 @@ Horror Hospital: installDir: Horror Hospital: {} launch: - /Horror Hospital.exe: + "/Horror Hospital.exe": - when: - os: windows store: steam @@ -258511,7 +259271,7 @@ Horror Hunt: installDir: Horror Hunt: {} launch: - /HorrorHunt.exe: + "/HorrorHunt.exe": - when: - store: steam steam: @@ -258520,7 +259280,7 @@ Horror Legends: installDir: Horror Legends: {} launch: - /Horror Legends.exe: + "/Horror Legends.exe": - when: - os: windows store: steam @@ -258544,29 +259304,29 @@ Horror Stories: installDir: HorrorStories: {} launch: - /HorrorStories.exe: + "/HorrorStories.exe": - when: - store: steam steam: id: 1028820 -'Horror Story: Hallowseed': +"Horror Story: Hallowseed": gog: id: 1527686190 installDir: Horror Story - Hallowseed: {} launch: - /HorrorStory.exe: + "/HorrorStory.exe": - when: - bit: 64 os: windows store: steam steam: id: 1151250 -'Horror Tales: The Wine': +"Horror Tales: The Wine": installDir: HORROR TALES The Wine: {} launch: - /Horror_Tales_The_Wine/HorrorWine.exe: + "/Horror_Tales_The_Wine/HorrorWine.exe": - when: - store: steam steam: @@ -258580,7 +259340,7 @@ Horror in the Asylum: installDir: Horror in the Asylum: {} launch: - /HorrorIntheAsylum_release.exe: + "/HorrorIntheAsylum_release.exe": - when: - bit: 64 os: windows @@ -258594,7 +259354,7 @@ HorrorVale: installDir: HorrorVale: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -258602,7 +259362,7 @@ HorrorVale: id: 1114650 Horse Club Adventures: files: - /AppData/LocalLow/Wild River Games/Horse Club: + "/AppData/LocalLow/Wild River Games/Horse Club": tags: - config when: @@ -258610,7 +259370,7 @@ Horse Club Adventures: installDir: Horse Club Adventures: {} launch: - /Horse Club.exe: + "/Horse Club.exe": - when: - os: windows store: steam @@ -258621,11 +259381,11 @@ Horse Club Adventures: - save steam: id: 1518820 -'Horse Club Adventures 2: Hazelwood Stories': +"Horse Club Adventures 2: Hazelwood Stories": installDir: Horse Club Adventures 2 Hazelwood Stories: {} launch: - /Horse Club Adventures 2.exe: + "/Horse Club Adventures 2.exe": - when: - os: windows store: steam @@ -258635,7 +259395,7 @@ Horse Farm: installDir: HorseFarm: {} launch: - /HorseFarm.exe: + "/HorseFarm.exe": - when: - os: windows store: steam @@ -258645,7 +259405,7 @@ Horse Paradise - My Dream Ranch: installDir: Horse Paradise - My Dream Ranch: {} launch: - /Horse Paradise.exe: + "/Horse Paradise.exe": - when: - os: windows store: steam @@ -258655,7 +259415,7 @@ Horse Racing 2016: installDir: Horse Racing 2016: {} launch: - /Horse Racing 2016.exe: + "/Horse Racing 2016.exe": - when: - os: windows store: steam @@ -258665,8 +259425,8 @@ Horse Riding Deluxe: installDir: Horse Riding Deluxe: {} launch: - /HorseRidingDeluxe.exe: - - arguments: '-nohmd' + "/HorseRidingDeluxe.exe": + - arguments: "-nohmd" when: - bit: 64 os: windows @@ -258677,17 +259437,17 @@ Horse Riding Tales: installDir: Horse Riding Tales: {} launch: - /horseridingtales.exe: + "/horseridingtales.exe": - when: - os: windows store: steam steam: id: 1048830 -'Horse Tales: Emerald Valley Ranch': +"Horse Tales: Emerald Valley Ranch": installDir: Stable Girl: {} launch: - /StableGirl.exe: + "/StableGirl.exe": - when: - bit: 64 os: windows @@ -258698,21 +259458,21 @@ Horse World: installDir: Horse World: {} launch: - /steam_mac.app: + "/steam_mac.app": - when: - os: mac store: steam - /steam_win.exe: + "/steam_win.exe": - when: - os: windows store: steam steam: id: 806830 -Hoshi's Elektronauts: +"Hoshi's Elektronauts": installDir: Elektronauts: {} launch: - /Elektronauts.exe: + "/Elektronauts.exe": - when: - os: windows store: steam @@ -258722,7 +259482,7 @@ Hoshizora no Memoria -Eternal Heart-: installDir: Hoshizora no Memoria -Wish upon a Shooting Star-: {} launch: - /Memoria.exe: + "/Memoria.exe": - when: - os: windows store: steam @@ -258732,7 +259492,7 @@ Hospital 9: installDir: Hospital 9: {} launch: - /Hospital 9.exe: + "/Hospital 9.exe": - when: - os: windows store: steam @@ -258742,11 +259502,11 @@ Hospital Manager: installDir: Hospital Manager: {} launch: - /Hospital Manager.app: + "/Hospital Manager.app": - when: - os: mac store: steam - /Hospital Manager.exe: + "/Hospital Manager.exe": - when: - os: windows store: steam @@ -258754,7 +259514,7 @@ Hospital Manager: id: 348290 Hospital Tycoon: files: - /HospitalTycoon: + "/HospitalTycoon": tags: - config - save @@ -258763,14 +259523,14 @@ Hospital Tycoon: installDir: Hospital Tycoon: {} launch: - /HospitalTycoon.exe: + "/HospitalTycoon.exe": - when: - store: steam steam: id: 11590 Hospitalize: files: - /AppData/LocalLow/Illeris AS/Hospitalize: + "/AppData/LocalLow/Illeris AS/Hospitalize": tags: - save when: @@ -258778,11 +259538,11 @@ Hospitalize: installDir: Hospitalize: {} launch: - /Hospitalize.exe: + "/Hospitalize.exe": - when: - os: windows store: steam - - arguments: '-force-d3d9' + - arguments: "-force-d3d9" when: - store: steam steam: @@ -258792,11 +259552,11 @@ Host: HOST: {} steam: id: 828240 -'Hostage: Rescue Mission': +"Hostage: Rescue Mission": installDir: Hostages: {} launch: - /dosbox.exe: + "/dosbox.exe": - when: - os: windows store: steam @@ -258806,15 +259566,15 @@ Hostil: installDir: Hostil: {} launch: - /Hostil.app: + "/Hostil.app": - when: - os: mac store: steam - /Hostil.exe: + "/Hostil.exe": - when: - os: windows store: steam - /Hostil.x86: + "/Hostil.x86": - when: - os: linux store: steam @@ -258824,7 +259584,7 @@ Hostile Dimension: installDir: Hostile Dimension: {} launch: - /Hostile Dimension.exe: + "/Hostile Dimension.exe": - when: - store: steam steam: @@ -258833,20 +259593,20 @@ Hostile User Interface: installDir: Hostile User Interface: {} launch: - /HUI.exe: + "/HUI.exe": - when: - os: windows store: steam steam: id: 984540 -'Hostile Waters: Antaeus Rising': +"Hostile Waters: Antaeus Rising": files: - /SavedGames: + "/SavedGames": tags: - save when: - os: windows - /SavedGames/Opt.dat: + "/SavedGames/Opt.dat": tags: - config when: @@ -258856,7 +259616,7 @@ Hostile User Interface: installDir: Hostile Waters Antaeus Rising: {} launch: - /HostileSetup.exe: + "/HostileSetup.exe": - when: - os: windows store: steam @@ -258868,7 +259628,7 @@ Hostile User Interface: id: 267980 Hot & Steamy Knights: files: - /.renpy/HotSteamyKnights-1559852979: + "/.renpy/HotSteamyKnights-1559852979": tags: - save when: @@ -258876,15 +259636,15 @@ Hot & Steamy Knights: installDir: HotSteamyKnights: {} launch: - /HotSteamyKnights.app: + "/HotSteamyKnights.app": - when: - os: mac store: steam - /HotSteamyKnights.exe: + "/HotSteamyKnights.exe": - when: - os: windows store: steam - /HotSteamyKnights.sh: + "/HotSteamyKnights.sh": - when: - os: linux store: steam @@ -258896,11 +259656,11 @@ Hot Brass: installDir: Hot Brass: {} launch: - /Hot Brass.app: + "/Hot Brass.app": - when: - os: mac store: steam - /Hot Brass.exe: + "/Hot Brass.exe": - when: - bit: 64 os: windows @@ -258911,14 +259671,14 @@ Hot Dish: installDir: Hot Dish: {} launch: - /hotdish.exe: + "/hotdish.exe": - when: - store: steam steam: id: 12570 -'Hot Dogs, Horseshoes & Hand Grenades': +"Hot Dogs, Horseshoes & Hand Grenades": files: - /AppData/LocalLow/RUST LTD/Hot Dogs Horseshoes and Hand Grenades/*.txt: + "/AppData/LocalLow/RUST LTD/Hot Dogs Horseshoes and Hand Grenades/*.txt": tags: - config - save @@ -258940,20 +259700,20 @@ Hot Guns: installDir: Hot Guns: {} launch: - /HotGuns.app: + "/HotGuns.app": - when: - os: mac store: steam - /HotGuns.exe: + "/HotGuns.exe": - when: - os: windows store: steam - /HotGuns.x86: + "/HotGuns.x86": - when: - bit: 32 os: linux store: steam - /HotGuns.x86_64: + "/HotGuns.x86_64": - when: - bit: 64 os: linux @@ -258964,18 +259724,18 @@ Hot Lava: installDir: Hot Lava: {} launch: - /archive/build/hotlava.exe: + "/archive/build/hotlava.exe": - when: - os: windows store: steam - workingDir: /archive/build + workingDir: "/archive/build" steam: id: 382560 Hot Mars 69: installDir: Hot Mars 69: {} launch: - /Hot Mars 69.exe: + "/Hot Mars 69.exe": - when: - os: windows store: steam @@ -258985,7 +259745,7 @@ Hot Pinball Thrills: installDir: Hot Pinball Thrills: {} launch: - /HotPinballThrills.exe: + "/HotPinballThrills.exe": - when: - store: steam steam: @@ -258994,20 +259754,20 @@ Hot Pink: installDir: HOT PINK: {} launch: - /HOT PINK.app: + "/HOT PINK.app": - when: - os: mac store: steam - /HOT PINK.exe: + "/HOT PINK.exe": - when: - os: windows store: steam - /HOT PINK.x86: + "/HOT PINK.x86": - when: - bit: 32 os: linux store: steam - /HOT PINK.x86_64: + "/HOT PINK.x86_64": - when: - bit: 64 os: linux @@ -259018,11 +259778,11 @@ Hot Plates: installDir: Hot Plates: {} launch: - /HotPlates.app: + "/HotPlates.app": - when: - os: mac store: steam - /HotPlates.exe: + "/HotPlates.exe": - when: - os: windows store: steam @@ -259032,7 +259792,7 @@ Hot Pool: installDir: Hot Pool: {} launch: - /windows/Hot Pool.exe: + "/windows/Hot Pool.exe": - when: - os: windows store: steam @@ -259047,7 +259807,7 @@ Hot Shot Burn: installDir: Hot Shot Burn: {} launch: - /HotShotBurn.exe: + "/HotShotBurn.exe": - when: - bit: 64 os: windows @@ -259059,7 +259819,7 @@ Hot Squat: Hot Squat: {} steam: id: 553590 -'Hot Squat 2: New Glory': +"Hot Squat 2: New Glory": installDir: Hot Squat 2 New Glory: {} steam: @@ -259068,40 +259828,40 @@ Hot Takes: installDir: Hot Takes: {} launch: - /HotTakes/HotTakes.app: + "/HotTakes/HotTakes.app": - when: - os: mac store: steam - /HotTakes/HotTakes.exe: + "/HotTakes/HotTakes.exe": - when: - os: windows store: steam - /HotTakes/HotTakes.sh: + "/HotTakes/HotTakes.sh": - when: - os: linux store: steam steam: id: 1148630 -'Hot Tin Roof: The Cat That Wore a Fedora': +"Hot Tin Roof: The Cat That Wore a Fedora": gog: id: 1424442317 installDir: Hot Tin Roof: {} launch: - /HotTinRoof.app: + "/HotTinRoof.app": - when: - os: mac store: steam - /HotTinRoof.exe: + "/HotTinRoof.exe": - when: - os: windows store: steam - /HotTinRoof.x86: + "/HotTinRoof.x86": - when: - bit: 32 os: linux store: steam - /HotTinRoof.x86_64: + "/HotTinRoof.x86_64": - when: - bit: 64 os: linux @@ -259117,12 +259877,12 @@ Hot Takes: id: 253390 Hot Wheels Unleashed: files: - /hotwheels/Saved/Config/WindowsNoEditor: + "/hotwheels/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /hotwheels/Saved/SaveGames: + "/hotwheels/Saved/SaveGames": tags: - save when: @@ -259130,19 +259890,19 @@ Hot Wheels Unleashed: installDir: HOT WHEELS UNLEASHED: {} launch: - /hotwheels.exe: + "/hotwheels.exe": - when: - store: steam steam: id: 1271700 -'Hot Wheels Unleashed 2: Turbocharged': +"Hot Wheels Unleashed 2: Turbocharged": files: - /hotwheels2/Saved/Config/WindowsNoEditor: + "/hotwheels2/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /hotwheels2/Saved/SaveGames: + "/hotwheels2/Saved/SaveGames": tags: - save when: @@ -259151,35 +259911,35 @@ Hot Wheels Unleashed: id: 2051120 Hot Wheels Velocity X: files: - /VelocityX Saved Games: + "/VelocityX Saved Games": tags: - save when: - os: windows Hot Wheels World Race: files: - /Config.cfg: + "/Config.cfg": tags: - config when: - os: windows - /saves: + "/saves": tags: - save when: - os: windows -Hot Wheels World's Best Driver: +"Hot Wheels World's Best Driver": installDir: Hot Wheels WBD: {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: id: 236530 -'Hot Wheels: Beat That!': +"Hot Wheels: Beat That!": files: - /Hot Wheels: + "/Hot Wheels": tags: - save when: @@ -259188,26 +259948,26 @@ Hot Wheels World's Best Driver: HKEY_LOCAL_MACHINE/SOFTWARE/Wow6432Node/Activision Value/Hot Wheels: tags: - config -'Hot Wheels: Stunt Track Challenge': +"Hot Wheels: Stunt Track Challenge": files: - 'C:/Users/Public/Documents/HWSTC/PROFILES.SAV': + "C:/Users/Public/Documents/HWSTC/PROFILES.SAV": tags: - save when: - os: windows -'Hot Wheels: Williams F1 - Team Racer': +"Hot Wheels: Williams F1 - Team Racer": files: - /config.ini: + "/config.ini": tags: - config when: - os: windows - /miscFile/CareerData: + "/miscFile/CareerData": tags: - save when: - os: windows - /miscFile/CareerData/Options.sav: + "/miscFile/CareerData/Options.sav": tags: - config when: @@ -259219,7 +259979,7 @@ Hot and Lovely: installDir: HotAndLovely: {} launch: - /HotAndLovely.exe: + "/HotAndLovely.exe": - when: - os: windows store: steam @@ -259229,7 +259989,7 @@ HotFloor: installDir: HotFloor: {} launch: - /HotFloor.exe: + "/HotFloor.exe": - when: - os: windows store: steam @@ -259239,7 +259999,7 @@ HotHead: installDir: HotHead: {} launch: - /HotHead.exe: + "/HotHead.exe": - when: - os: windows store: steam @@ -259248,20 +260008,20 @@ HotHead: HotLead: steam: id: 416170 -'HotPuzzle:Grils': +"HotPuzzle:Grils": installDir: HotPuzzleGrils: {} launch: - /Hotpuzzlegirls.exe: + "/Hotpuzzlegirls.exe": - when: - store: steam steam: id: 938890 -'HotPuzzle:Video': +"HotPuzzle:Video": installDir: Hotpuzzlevideo: {} launch: - /Hotpuzzlevideo.exe: + "/Hotpuzzlevideo.exe": - when: - store: steam steam: @@ -259270,28 +260030,28 @@ Hotaru: installDir: Hotaru: {} launch: - /Hotaru.exe: + "/Hotaru.exe": - when: - os: windows store: steam steam: id: 1204780 -'Hotaru no Nikki: The Firefly Diary': +"Hotaru no Nikki: The Firefly Diary": files: - /data/save/savedata.sav: + "/data/save/savedata.sav": tags: - save when: - os: windows - /settings.ini: + "/settings.ini": tags: - config when: - os: windows installDir: - htoL#NiQ The Firefly Diary: {} + "htoL#NiQ The Firefly Diary": {} launch: - /Hotaru.exe: + "/Hotaru.exe": - when: - os: windows store: steam @@ -259301,7 +260061,7 @@ Hotdog Man: installDir: Hotdog Man: {} launch: - /Hotdog Man.exe: + "/Hotdog Man.exe": - when: - os: windows store: steam @@ -259314,11 +260074,11 @@ Hotel Anatolia: installDir: Hotel Anatolia: {} launch: - /Anadolu Oteli/Game.exe: + "/Anadolu Oteli/Game.exe": - when: - os: windows store: steam - /Hotel Anatolia/Game.exe: + "/Hotel Anatolia/Game.exe": - when: - os: windows store: steam @@ -259328,7 +260088,7 @@ Hotel Blind: installDir: Hotel Blind: {} launch: - /Blindhotel.exe: + "/Blindhotel.exe": - when: - bit: 64 os: windows @@ -259337,7 +260097,7 @@ Hotel Blind: id: 457690 Hotel Collectors Edition: files: - /Saved Games/Cateia Games/Hotel: + "/Saved Games/Cateia Games/Hotel": tags: - save when: @@ -259345,11 +260105,11 @@ Hotel Collectors Edition: installDir: Hotel Collectors Edition: {} launch: - /Hotel - Collector's Edition.app/Contents/MacOS/Hotel: + "/Hotel - Collector's Edition.app/Contents/MacOS/Hotel": - when: - os: mac store: steam - /Hotel.exe: + "/Hotel.exe": - when: - os: windows store: steam @@ -259359,11 +260119,11 @@ Hotel Dash Suite Success: installDir: Hotel Dash: {} launch: - /Hotel Dash - Suite Success.app: + "/Hotel Dash - Suite Success.app": - when: - os: mac store: steam - /HotelDash.exe: + "/HotelDash.exe": - when: - os: windows store: steam @@ -259373,21 +260133,21 @@ Hotel Dracula: installDir: Hotel Dracula: {} launch: - /dracula.exe: + "/dracula.exe": - when: - os: windows store: steam steam: id: 711770 -Hotel Ever After - Ella's Wish: +"Hotel Ever After - Ella's Wish": installDir: - Hotel Ever After - Ella's Wish: {} + "Hotel Ever After - Ella's Wish": {} launch: - /OSX desktop.app/Contents/MacOS/OSX desktop: + "/OSX desktop.app/Contents/MacOS/OSX desktop": - when: - os: mac store: steam - /hea_win_02.07.exe: + "/hea_win_02.07.exe": - when: - bit: 64 os: windows @@ -259400,7 +260160,7 @@ Hotel Giant: installDir: Hotel Giant: {} launch: - /hotel.exe: + "/hotel.exe": - when: - store: steam steam: @@ -259411,7 +260171,7 @@ Hotel Giant 2: installDir: Hotel Giant 2: {} launch: - /HG2.exe: + "/HG2.exe": - when: - store: steam steam: @@ -259422,27 +260182,27 @@ Hotel Magnate: installDir: Hotel Magnate: {} launch: - /Hotel Magnate.exe: + "/Hotel Magnate.exe": - when: - os: windows store: steam - /Hotel Magnate.x86_64: + "/Hotel Magnate.x86_64": - when: - os: linux store: steam steam: id: 832360 -'Hotel Mogul: Las Vegas': +"Hotel Mogul: Las Vegas": installDir: Hotel Mogul Las Vegas: {} launch: - /HM.exe: + "/HM.exe": - when: - os: windows store: steam steam: id: 1061850 -Hotel R'n'R: +"Hotel R'n'R": installDir: Hotel_RnR: {} steam: @@ -259451,7 +260211,7 @@ Hotel Remorse: installDir: Hotel Remorse: {} launch: - /HotelRemorse.exe: + "/HotelRemorse.exe": - when: - os: windows store: steam @@ -259459,12 +260219,12 @@ Hotel Remorse: id: 898160 Hotel Renovator: files: - /Hotel_Renovator/Saved: + "/Hotel_Renovator/Saved": tags: - save when: - os: windows - /Hotel_Renovator/Saved/Config/WindowsNoEditor: + "/Hotel_Renovator/Saved/Config/WindowsNoEditor": tags: - config when: @@ -259472,7 +260232,7 @@ Hotel Renovator: installDir: Hotel Renovator: {} launch: - /Hotel_Renovator.exe: + "/Hotel_Renovator.exe": - when: - store: steam steam: @@ -259481,11 +260241,11 @@ Hotel Sowls: installDir: Hotel Sowls: {} launch: - /Hotel Sowls.exe: + "/Hotel Sowls.exe": - when: - os: windows store: steam - /HotelSowls.app: + "/HotelSowls.app": - when: - os: mac store: steam @@ -259495,17 +260255,17 @@ Hotel Spring: installDir: Hotel Spring: {} launch: - /Hotel Spring.exe: + "/Hotel Spring.exe": - when: - os: windows store: steam steam: id: 818990 -'Hotel Transylvania 3: Monsters Overboard': +"Hotel Transylvania 3: Monsters Overboard": installDir: Hotel Transylvania 3 Monsters Overboard: {} launch: - /HotelTransylvania3.exe: + "/HotelTransylvania3.exe": - when: - bit: 64 os: windows @@ -259517,11 +260277,11 @@ Hotel Transylvania Popstic: Hotel Transylvania Popstic: {} steam: id: 884370 -'Hotel Transylvania: Scary Tale Adventures': +"Hotel Transylvania: Scary Tale Adventures": installDir: Hotel Transylvania 4: {} launch: - /Hotel Transylvania 4.exe: + "/Hotel Transylvania 4.exe": - when: - store: steam registry: @@ -259532,7 +260292,7 @@ Hotel Transylvania Popstic: id: 1433500 Hotel Tutwin: files: - /*.sav: + "/*.sav": tags: - save when: @@ -259540,11 +260300,11 @@ Hotel Tutwin: installDir: Hotel Tutwin: {} launch: - /Hotel Tutwin.app/Contents/MacOS/nwjs: + "/Hotel Tutwin.app/Contents/MacOS/nwjs": - when: - os: mac store: steam - /Hotel Tutwin.exe: + "/Hotel Tutwin.exe": - when: - os: windows store: steam @@ -259554,11 +260314,11 @@ Hotlap Heroes: installDir: Hotlap Heroes: {} launch: - /HotlapHeroes.app: + "/HotlapHeroes.app": - when: - os: mac store: steam - /HotlapHeroes.exe: + "/HotlapHeroes.exe": - when: - os: windows store: steam @@ -259566,32 +260326,32 @@ Hotlap Heroes: id: 676960 Hotline Miami: files: - /Library/Application Support/Hotline Miami/SaveData.sav: + "/Library/Application Support/Hotline Miami/SaveData.sav": tags: - save when: - os: mac - /Library/Application Support/Hotline Miami/hotline.cfg: + "/Library/Application Support/Hotline Miami/hotline.cfg": tags: - config when: - os: mac - /My Games/HotlineMiami/SaveData.sav: + "/My Games/HotlineMiami/SaveData.sav": tags: - save when: - os: windows - /My Games/HotlineMiami/hotline.cfg: + "/My Games/HotlineMiami/hotline.cfg": tags: - config when: - os: windows - /HotlineMiami/SaveData.sav: + "/HotlineMiami/SaveData.sav": tags: - save when: - os: linux - /HotlineMiami/hotline.cfg: + "/HotlineMiami/hotline.cfg": tags: - config when: @@ -259601,48 +260361,48 @@ Hotline Miami: installDir: hotline_miami: {} launch: - /Hotline Miami.app/Contents/MacOS/YoYo70: + "/Hotline Miami.app/Contents/MacOS/YoYo70": - when: - os: mac store: steam - /HotlineMiami.exe: + "/HotlineMiami.exe": - when: - os: windows store: steam - /hotline_launcher: + "/hotline_launcher": - when: - os: linux store: steam steam: id: 219150 -'Hotline Miami 2: Wrong Number': +"Hotline Miami 2: Wrong Number": files: - /Library/Application Support/HotlineMiami2: + "/Library/Application Support/HotlineMiami2": tags: - config when: - os: mac - /Library/Application Support/HotlineMiami2/savedata.vfs: + "/Library/Application Support/HotlineMiami2/savedata.vfs": tags: - save when: - os: mac - /My Games/HotlineMiami2: + "/My Games/HotlineMiami2": tags: - config when: - os: windows - /My Games/HotlineMiami2/savedata.vfs: + "/My Games/HotlineMiami2/savedata.vfs": tags: - save when: - os: windows - /HotlineMiami2: + "/HotlineMiami2": tags: - config when: - os: linux - /HotlineMiami2/savedata.vfs: + "/HotlineMiami2/savedata.vfs": tags: - save when: @@ -259655,25 +260415,25 @@ Hotline Miami: - 1424773656 - 1424856371 steamExtra: - - 355890 - 341190 + - 355890 installDir: Hotline Miami 2: {} launch: - /HotlineMiami2: + "/HotlineMiami2": - when: - bit: 64 os: linux store: steam - /HotlineMiami2.app/Contents/MacOS/HotlineMiami2: + "/HotlineMiami2.app/Contents/MacOS/HotlineMiami2": - when: - os: mac store: steam - /HotlineMiami2.exe: + "/HotlineMiami2.exe": - when: - os: windows store: steam - /HotlineMiami2_32: + "/HotlineMiami2_32": - when: - bit: 32 os: linux @@ -259682,12 +260442,12 @@ Hotline Miami: id: 274170 Hotshot Racing: files: - /Sumo Digital Ltd//Summit/Config: + "/Sumo Digital Ltd//Summit/Config": tags: - config when: - os: windows - /Sumo Digital Ltd//Summit/Profiles: + "/Sumo Digital Ltd//Summit/Profiles": tags: - save when: @@ -259695,7 +260455,7 @@ Hotshot Racing: installDir: Hotshot Racing: {} launch: - /HotshotRacing.exe: + "/HotshotRacing.exe": - when: - os: windows store: steam @@ -259705,25 +260465,25 @@ Houdini Redux: installDir: Houdini Redux: {} launch: - /Houdini.app: + "/Houdini.app": - when: - os: mac store: steam - /Houdini.exe: + "/Houdini.exe": - when: - os: windows store: steam steam: id: 1086900 -Houdini's Castle: +"Houdini's Castle": installDir: - Houdini's Castle!!: {} + "Houdini's Castle!!": {} launch: - /Houdini.app: + "/Houdini.app": - when: - os: mac store: steam - /Houdini.exe: + "/Houdini.exe": - when: - os: windows store: steam @@ -259731,7 +260491,7 @@ Houdini's Castle: id: 972420 Hound: files: - /steamapps/common/HOUND: + "/steamapps/common/HOUND": tags: - config - save @@ -259741,17 +260501,17 @@ Hound: installDir: HOUND: {} launch: - /houndlauncher.exe: + "/houndlauncher.exe": - when: - os: windows store: steam steam: id: 562800 -'Hounds: The Last Hope': +"Hounds: The Last Hope": installDir: Hounds The Last Hope: {} launch: - /HoundsApp.exe: + "/HoundsApp.exe": - arguments: +Authkey 1 when: - os: windows @@ -259760,7 +260520,7 @@ Hound: id: 366160 Hour of Victory: files: - /Hour of Victory/HOVGame/Config: + "/Hour of Victory/HOVGame/Config": tags: - config - save @@ -259770,7 +260530,7 @@ Hour of the Snake: installDir: Hour of the Snake: {} launch: - /Hour_of_the_Snake.exe: + "/Hour_of_the_Snake.exe": - when: - os: windows store: steam @@ -259780,30 +260540,30 @@ Hourglass: installDir: Hourglass: {} launch: - /Hourglass.exe: + "/Hourglass.exe": - when: - os: windows store: steam steam: id: 1212410 -'House Dating VR: Cute Korean Girl, Sehyun': +"House Dating VR: Cute Korean Girl, Sehyun": installDir: House Dating VR: {} steam: id: 696470 House Flipper: files: - /AppData/LocalLow/Empyrean/House Flipper Game/Profiles: + "/AppData/LocalLow/Empyrean/House Flipper Game/Profiles": tags: - save when: - os: windows - /AppData/LocalLow/Empyrean/House Flipper Game/Profiles.backup: + "/AppData/LocalLow/Empyrean/House Flipper Game/Profiles.backup": tags: - save when: - os: windows - /Library/Application Support/Empyrean/House Flipper Game/Saves: + "/Library/Application Support/Empyrean/House Flipper Game/Saves": tags: - save when: @@ -259812,10 +260572,10 @@ House Flipper: id: 1140907376 id: gogExtra: + - 1612076301 - 1689378242 - 1833342145 - 2127424889 - - 1612076301 steamExtra: - 825570 - 942290 @@ -259827,11 +260587,11 @@ House Flipper: installDir: House Flipper: {} launch: - /HouseFlipper.app: + "/HouseFlipper.app": - when: - os: mac store: steam - /HouseFlipper.exe: + "/HouseFlipper.exe": - when: - bit: 64 os: windows @@ -259850,7 +260610,7 @@ House Flipper City: id: 1163350 House Flipper VR: files: - /AppData/LocalLow/Frozen District/HouseFlipper VR: + "/AppData/LocalLow/Frozen District/HouseFlipper VR": tags: - save when: @@ -259872,11 +260632,11 @@ House Number 666: installDir: House Number 666: {} launch: - /HouseNumber666: + "/HouseNumber666": - when: - os: linux store: steam - /HouseNumber666.exe: + "/HouseNumber666.exe": - when: - os: windows store: steam @@ -259890,7 +260650,7 @@ House Of Plague 0: id: 882380 House Party: files: - /AppData/LocalLow/Eek/House Party/Saves: + "/AppData/LocalLow/Eek/House Party/Saves": tags: - save when: @@ -259900,53 +260660,53 @@ House Party: installDir: House Party: {} launch: - /HouseParty.exe: + "/HouseParty.exe": - when: - os: windows store: steam steam: id: 611790 -'House of 1000 Doors: Evil Inside': +"House of 1000 Doors: Evil Inside": installDir: House of 1000 Doors Evil Inside: {} launch: - /Houseof1000Doors_EvilInside_CE.exe: + "/Houseof1000Doors_EvilInside_CE.exe": - when: - os: windows store: steam steam: id: 1038620 -'House of 1000 Doors: Family Secrets': +"House of 1000 Doors: Family Secrets": installDir: - 'House of 1,000 Doors - Family Secrets': {} + "House of 1,000 Doors - Family Secrets": {} launch: - /House of 1000 Doors.app: + "/House of 1000 Doors.app": - when: - os: mac store: steam - /HouseOf1000Doors_FamilySecretsCE.exe: + "/HouseOf1000Doors_FamilySecretsCE.exe": - when: - os: windows store: steam steam: id: 286500 -'House of 1000 Doors: Serpent Flame': +"House of 1000 Doors: Serpent Flame": installDir: House of 1000 Doors Serpent Flame: {} launch: - '/House of 1,000 Doors Serpent Flame Collector''s Edition.app/Contents/MacOS/HouseOfThousandDoors3CE-Partners-Full-En': + "/House of 1,000 Doors Serpent Flame Collector's Edition.app/Contents/MacOS/HouseOfThousandDoors3CE-Partners-Full-En": - when: - os: mac store: steam - /HouseOf1000Doors_SerpentFlame_CE.exe: + "/HouseOf1000Doors_SerpentFlame_CE.exe": - when: - os: windows store: steam steam: id: 1090390 -'House of 1000 Doors: The Palm of Zoroaster': +"House of 1000 Doors: The Palm of Zoroaster": files: - /Roaming/AlawarEntertainment/Houseof1000Doors_ThePalmOfZoroasterCE: + "/Roaming/AlawarEntertainment/Houseof1000Doors_ThePalmOfZoroasterCE": tags: - config - save @@ -259955,7 +260715,7 @@ House Party: installDir: House of 1000 Doors The Palm of Zoroaster: {} launch: - /HouseOf1000Doors_ThePalmOfZoroasterCE.exe: + "/HouseOf1000Doors_ThePalmOfZoroasterCE.exe": - when: - os: windows store: steam @@ -259968,12 +260728,12 @@ House of Alice: id: 500920 House of Ashes: files: - /HouseOfAshes/Saved/Config/WindowsNoEditor: + "/HouseOfAshes/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /HouseOfAshes/Saved/SaveGames: + "/HouseOfAshes/Saved/SaveGames": tags: - save when: @@ -259981,8 +260741,8 @@ House of Ashes: installDir: The Dark Pictures Anthology - House of Ashes: {} launch: - /HouseOfAshes.exe: - - arguments: '-dx11' + "/HouseOfAshes.exe": + - arguments: "-dx11" when: - bit: 64 os: windows @@ -259993,11 +260753,11 @@ House of Caravan: installDir: House of Caravan: {} launch: - /hoc.app: + "/hoc.app": - when: - os: mac store: steam - /hoc.exe: + "/hoc.exe": - when: - os: windows store: steam @@ -260012,15 +260772,15 @@ House of Detention: installDir: House of Detention: {} launch: - /Contents/MacOS/House of Detention: + "/Contents/MacOS/House of Detention": - when: - os: mac store: steam - /House of Detention Linux.x86_64: + "/House of Detention Linux.x86_64": - when: - os: linux store: steam - /House of Detention.exe: + "/House of Detention.exe": - when: - os: windows store: steam @@ -260030,7 +260790,7 @@ House of Evil: installDir: House of Evil: {} launch: - /MyProject: + "/MyProject": - when: - bit: 64 os: windows @@ -260041,7 +260801,7 @@ House of Evil 2: installDir: House of Evil 2: {} launch: - /House of Evil 2.exe: + "/House of Evil 2.exe": - when: - bit: 64 os: windows @@ -260052,20 +260812,20 @@ House of Hell: installDir: House of Hell: {} launch: - /House of Hell.app: + "/House of Hell.app": - when: - os: mac store: steam - /House of Hell.exe: + "/House of Hell.exe": - when: - os: windows store: steam - /House of Hell.x86: + "/House of Hell.x86": - when: - bit: 32 os: linux store: steam - /House of Hell.x86_64: + "/House of Hell.x86_64": - when: - bit: 64 os: linux @@ -260076,19 +260836,19 @@ House of Nightmares B-Movie Edition: installDir: House of Nightmares B-Movie Edition: {} launch: - /Binaries/Win32/House of Nightmares.exe: + "/Binaries/Win32/House of Nightmares.exe": - when: - bit: 32 os: windows store: steam - workingDir: /Binaries/Win32 + workingDir: "/Binaries/Win32" steam: id: 365290 House of Sin: installDir: House of Sin: {} launch: - /HouseofSinSteam.exe: + "/HouseofSinSteam.exe": - when: - os: windows store: steam @@ -260098,7 +260858,7 @@ House of Snark 6-in-1 Bundle: installDir: HouseofSnark6-in-1Bundle: {} launch: - /HouseOfSnark6in1.exe: + "/HouseOfSnark6in1.exe": - when: - os: windows store: steam @@ -260106,7 +260866,7 @@ House of Snark 6-in-1 Bundle: id: 486810 House of Velez Part 1: files: - /HouseofVelez_Pt1/User Data/Default: + "/HouseofVelez_Pt1/User Data/Default": tags: - save when: @@ -260114,7 +260874,7 @@ House of Velez Part 1: installDir: House of Velez part 1: {} launch: - /House of Velez_Part 1.exe: + "/House of Velez_Part 1.exe": - when: - os: windows store: steam @@ -260124,11 +260884,11 @@ House of the Dying Sun: installDir: DyingSun: {} launch: - /dyingsun.exe: + "/dyingsun.exe": - when: - os: windows store: steam - - arguments: '-force-d3d9' + - arguments: "-force-d3d9" when: - os: windows store: steam @@ -260144,25 +260904,25 @@ Housekeeping VR: Housekeeping VR: {} steam: id: 556520 -'Houston, We Have Spinach!': +"Houston, We Have Spinach!": installDir: - 'Houston, We Have Spinach!': {} + "Houston, We Have Spinach!": {} launch: - /HWHS.exe: + "/HWHS.exe": - when: - os: windows store: steam - /HWHS_app.app: + "/HWHS_app.app": - when: - os: mac store: steam steam: id: 734870 -'Houston, We Have a Problem': +"Houston, We Have a Problem": installDir: - 'Houston, we have a problem': {} + "Houston, we have a problem": {} launch: - /Houston.exe: + "/Houston.exe": - when: - os: windows store: steam @@ -260172,7 +260932,7 @@ Hoven the Sages Spinel: installDir: Hoven the Sages Spinel: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -260180,12 +260940,12 @@ Hoven the Sages Spinel: id: 398960 Hover (2017): files: - /userdata//280180/remote: + "/userdata//280180/remote": tags: - save when: - store: steam - /My Games/Hover: + "/My Games/Hover": tags: - save when: @@ -260193,15 +260953,15 @@ Hover (2017): installDir: Hover: {} launch: - /Hover.app: + "/Hover.app": - when: - os: mac store: steam - /hover.exe: + "/hover.exe": - when: - os: windows store: steam - /hover.x86: + "/hover.x86": - when: - os: linux store: steam @@ -260215,11 +260975,11 @@ Hover 2030: installDir: Hover 2030: {} launch: - /hover2030.app: + "/hover2030.app": - when: - os: mac store: steam - /hover2030.exe: + "/hover2030.exe": - when: - os: windows store: steam @@ -260227,7 +260987,7 @@ Hover 2030: id: 488580 Hover Ace: files: - /base: + "/base": tags: - config when: @@ -260238,7 +260998,7 @@ Hover Attack: installDir: Hover Attack: {} launch: - /HoverAttack.exe: + "/HoverAttack.exe": - when: - store: steam steam: @@ -260248,11 +261008,11 @@ Hover Bots VR: Hover Bots VR: {} steam: id: 672670 -'Hover Cubes: Arena': +"Hover Cubes: Arena": installDir: Hover Cubes Arena: {} launch: - /HCXLauncher.exe: + "/HCXLauncher.exe": - when: - os: windows store: steam @@ -260262,15 +261022,15 @@ Hover Havoc: installDir: Hover Havoc: {} launch: - /HoverHavoc.app/Contents/MacOS/HoverHavoc: + "/HoverHavoc.app/Contents/MacOS/HoverHavoc": - when: - os: mac store: steam - /HoverHavoc.exe: + "/HoverHavoc.exe": - when: - os: windows store: steam - /HoverHavoc.x86_64: + "/HoverHavoc.x86_64": - when: - bit: 64 os: linux @@ -260281,7 +261041,7 @@ Hover Hazard: installDir: Hover Hazard: {} launch: - /hover_hazard.exe: + "/hover_hazard.exe": - when: - os: windows store: steam @@ -260304,7 +261064,7 @@ Hover Tank Arena: installDir: Hover Tank Arena: {} launch: - /HoverTankArena.exe: + "/HoverTankArena.exe": - when: - bit: 64 os: windows @@ -260315,7 +261075,7 @@ Hover X Souls: installDir: HoverSouls: {} launch: - /HoverXSouls.exe: + "/HoverXSouls.exe": - when: - bit: 64 os: windows @@ -260336,7 +261096,7 @@ Hoverboy: installDir: Hoverboy 1.0: {} launch: - /Hoverboy (game).exe: + "/Hoverboy (game).exe": - when: - bit: 64 os: windows @@ -260347,7 +261107,7 @@ Hovercraft Drive: installDir: Hovercraft Drive: {} launch: - /hovercraft_drive.exe: + "/hovercraft_drive.exe": - when: - store: steam steam: @@ -260356,7 +261116,7 @@ Hoverloop: installDir: Hoverloop: {} launch: - /Hoverloop.exe: + "/Hoverloop.exe": - when: - os: windows store: steam @@ -260369,7 +261129,7 @@ Hovership Havoc: installDir: Hovership Havoc: {} launch: - /Hovership Havoc.exe: + "/Hovership Havoc.exe": - when: - os: windows store: steam @@ -260379,7 +261139,7 @@ How About Spikes: installDir: How About Spikes: {} launch: - /HowAboutSpikes.exe: + "/HowAboutSpikes.exe": - when: - os: windows store: steam @@ -260389,7 +261149,7 @@ How I Escaped Futa Prison: installDir: How I Escaped Futa Prison: {} launch: - /futa-prison.exe: + "/futa-prison.exe": - when: - bit: 64 os: windows @@ -260403,15 +261163,15 @@ How Stories Die: installDir: How Stories Die: {} launch: - /HowStoriesDie.app: + "/HowStoriesDie.app": - when: - os: mac store: steam - /HowStoriesDie.exe: + "/HowStoriesDie.exe": - when: - os: windows store: steam - /HowStoriesDie.sh: + "/HowStoriesDie.sh": - when: - os: linux store: steam @@ -260421,7 +261181,7 @@ How To Be A Real Dude: installDir: How To Be A Real Dude: {} launch: - /HowToBeARealDude.exe: + "/HowToBeARealDude.exe": - when: - os: windows store: steam @@ -260431,11 +261191,11 @@ How To Date A Magical Girl!: installDir: How To Date A Magical Girl!: {} launch: - /HowToDateAMagicalGirl.app: + "/HowToDateAMagicalGirl.app": - when: - os: mac store: steam - /HowToDateAMagicalGirl.exe: + "/HowToDateAMagicalGirl.exe": - when: - os: windows store: steam @@ -260445,11 +261205,11 @@ How To Hack In?: installDir: How To Hack In: {} launch: - /How To Hack In.exe: + "/How To Hack In.exe": - when: - os: windows store: steam - /howtohackin.x86_64: + "/howtohackin.x86_64": - when: - os: linux store: steam @@ -260459,11 +261219,11 @@ How To Make Your Grandpa Happy: installDir: How To Make Your Grandpa Happy: {} launch: - /How to Make Your Grandpa Happy.app: + "/How to Make Your Grandpa Happy.app": - when: - os: mac store: steam - /How to Make Your Grandpa Happy.exe: + "/How to Make Your Grandpa Happy.exe": - when: - os: windows store: steam @@ -260473,15 +261233,15 @@ How We Got Here: installDir: How We Got Here: {} launch: - /howwegothere.app/Contents/MacOS/nwjs: + "/howwegothere.app/Contents/MacOS/nwjs": - when: - os: mac store: steam - /nw: + "/nw": - when: - os: linux store: steam - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -260491,32 +261251,32 @@ How do you Do It?: installDir: how do you Do It: {} launch: - /how do you Do It.app: + "/how do you Do It.app": - when: - os: mac store: steam - /how_do_you_Do_It/how do you Do It.exe: + "/how_do_you_Do_It/how do you Do It.exe": - when: - os: windows store: steam steam: id: 353360 -'How do you like it, Elon Musk?': +"How do you like it, Elon Musk?": installDir: HDYLIEM: {} launch: - /HDYLIEM.exe: + "/HDYLIEM.exe": - when: - bit: 64 os: windows store: steam steam: id: 890520 -'How to Become a Ninja: Part 1': +"How to Become a Ninja: Part 1": installDir: How to Become a Ninja Part 1: {} launch: - /How to Become a Ninja1.exe: + "/How to Become a Ninja1.exe": - when: - bit: 64 os: windows @@ -260527,14 +261287,14 @@ How to Build a Magnificent Kingdom: installDir: How to Build a Magnificent Kingdom: {} launch: - /subako.exe: + "/subako.exe": - when: - store: steam steam: id: 1198850 How to Cope with Boredom and Loneliness: files: - /AppData/LocalLow/PointBleepStudios/Point Bleep TV/HTC/Settings/Settings.txt: + "/AppData/LocalLow/PointBleepStudios/Point Bleep TV/HTC/Settings/Settings.txt": tags: - config when: @@ -260542,11 +261302,11 @@ How to Cope with Boredom and Loneliness: installDir: How To Cope With Boredom and Loneliness: {} launch: - /HTC.exe: + "/HTC.exe": - when: - os: windows store: steam - /HTC.x86: + "/HTC.x86": - when: - os: linux store: steam @@ -260560,11 +261320,11 @@ How to Fool a Liar King: installDir: How to Fool a Liar King: {} launch: - /USODAMA.app: + "/USODAMA.app": - when: - os: mac store: steam - /USODAMA.exe: + "/USODAMA.exe": - when: - os: windows store: steam @@ -260577,7 +261337,7 @@ How to Meat People: installDir: How To Meat People: {} launch: - /HowToMeatPeople.exe: + "/HowToMeatPeople.exe": - when: - os: windows store: steam @@ -260585,13 +261345,13 @@ How to Meat People: id: 735700 How to Raise a Wolf Girl: files: - /userdata//1106940/remote: + "/userdata//1106940/remote": tags: - config when: - os: windows store: steam - /SWEET&TEA/kemomusu: + "/SWEET&TEA/kemomusu": tags: - config when: @@ -260599,7 +261359,7 @@ How to Raise a Wolf Girl: installDir: How to Raise a Wolf Girl: {} launch: - /kemomusu.exe: + "/kemomusu.exe": - when: - store: steam steam: @@ -260608,11 +261368,11 @@ How to Shoot a Criminal: installDir: How to shoot a criminal: {} launch: - /Htsac.app: + "/Htsac.app": - when: - os: mac store: steam - /Htsac.exe: + "/Htsac.exe": - when: - os: windows store: steam @@ -260622,11 +261382,11 @@ How to Sing to Open Your Heart: installDir: How to Sing to Open Your Heart: {} launch: - /KOKOUTA.app: + "/KOKOUTA.app": - when: - os: mac store: steam - /KOKOUTA.exe: + "/KOKOUTA.exe": - when: - os: windows store: steam @@ -260634,7 +261394,7 @@ How to Sing to Open Your Heart: id: 924780 How to Survive: files: - /userdata//250400/remote: + "/userdata//250400/remote": tags: - save when: @@ -260642,10 +261402,10 @@ How to Survive: installDir: How to Survive: {} launch: - /Detect.exe: + "/Detect.exe": - when: - store: steam - /HowToSurvive.exe: + "/HowToSurvive.exe": - when: - store: steam steam: @@ -260654,15 +261414,15 @@ How to Survive 2: installDir: How to Survive 2: {} launch: - /Exe/HowToSurvive2.exe: + "/Exe/HowToSurvive2.exe": - when: - store: steam - workingDir: /Exe + workingDir: "/Exe" steam: id: 360170 -'How to Survive: Third Person Standalone': +"How to Survive: Third Person Standalone": files: - /userdata//360150/remote: + "/userdata//360150/remote": tags: - save when: @@ -260671,10 +261431,10 @@ How to Survive 2: installDir: How To Survive Third Person: {} launch: - /Detect.exe: + "/Detect.exe": - when: - store: steam - /HowToSurvive.exe: + "/HowToSurvive.exe": - when: - store: steam steam: @@ -260683,11 +261443,11 @@ How to Take Off Your Mask: installDir: How to Take Off Your Mask: {} launch: - /Anahazu.app: + "/Anahazu.app": - when: - os: mac store: steam - /Anahazu.exe: + "/Anahazu.exe": - when: - os: windows store: steam @@ -260697,7 +261457,7 @@ How to be Best Russian Game Developer: installDir: How to be Best Russian Publisher: {} launch: - /BRGD.exe: + "/BRGD.exe": - when: - store: steam steam: @@ -260706,16 +261466,16 @@ Howard Phillips Lovecar: installDir: Howard Phillips Lovecar: {} launch: - /Contents/MacOS/HPLovecar: + "/Contents/MacOS/HPLovecar": - when: - os: mac store: steam - workingDir: /Contents/MacOS - /HPLovecar: + workingDir: "/Contents/MacOS" + "/HPLovecar": - when: - os: linux store: steam - /HPLovecar.exe: + "/HPLovecar.exe": - when: - os: windows store: steam @@ -260727,15 +261487,15 @@ Howdy! The Western Game: Howl: steam: id: 513640 -'Howlville: The Dark Past': +"Howlville: The Dark Past": files: - /AppData/LocalLow/N-Tri Studio/Howlville: The Dark Past: + "/AppData/LocalLow/N-Tri Studio/Howlville: The Dark Past": tags: - config - save when: - os: windows - /unity3d/N-Tri Studio/Howlville: The Dark Past: + "/unity3d/N-Tri Studio/Howlville: The Dark Past": tags: - config - save @@ -260744,15 +261504,15 @@ Howl: installDir: Howlville The Dark Past: {} launch: - /Game.app: + "/Game.app": - when: - os: mac store: steam - /Game.exe: + "/Game.exe": - when: - os: windows store: steam - /Game.x86: + "/Game.x86": - when: - os: linux store: steam @@ -260762,7 +261522,7 @@ Hoyeonjigi: installDir: Hoyeonjigi: {} launch: - /Hoyeonjigi.exe: + "/Hoyeonjigi.exe": - when: - os: windows store: steam @@ -260770,7 +261530,7 @@ Hoyeonjigi: id: 952920 Hoyle Battling Ships and War: files: - /user*: + "/user*": tags: - save when: @@ -260779,11 +261539,11 @@ Hoyle Official Card Games: installDir: Hoyle Official Card Games Collection: {} launch: - /ClassicGamePack.exe: + "/ClassicGamePack.exe": - when: - os: windows store: steam - /Hoyle Card Games.app: + "/Hoyle Card Games.app": - when: - os: mac store: steam @@ -260793,11 +261553,11 @@ Hoyle Official Casino Games: installDir: Hoyle Official Casino Games: {} launch: - /Hoyle Official Casino Games.app: + "/Hoyle Official Casino Games.app": - when: - os: mac store: steam - /HoyleCasinoGames.exe: + "/HoyleCasinoGames.exe": - when: - os: windows store: steam @@ -260805,7 +261565,7 @@ Hoyle Official Casino Games: id: 532950 Hrot: files: - /HROT: + "/HROT": tags: - config - save @@ -260821,46 +261581,46 @@ Hrot: installDir: HROT: {} launch: - /HROT.exe: + "/HROT.exe": - when: - store: steam steam: id: 824600 -'Hube: Seeker of Achievements': +"Hube: Seeker of Achievements": installDir: HUBE Seeker of Achievements: {} launch: - /HUBE Seeker of Achievements.exe: + "/HUBE Seeker of Achievements.exe": - when: - os: windows store: steam steam: id: 857010 -'Hubert''s Island Adventure: Mouse o'' War': +"Hubert's Island Adventure: Mouse o' War": installDir: - Hubert's Island Adventure Mouse o' War: {} + "Hubert's Island Adventure Mouse o' War": {} launch: - /game-Linux-x86: + "/game-Linux-x86": - when: - bit: 32 os: linux store: steam - /game-Linux-x86_64: + "/game-Linux-x86_64": - when: - bit: 64 os: linux store: steam - /game-OSX-x86_64: + "/game-OSX-x86_64": - when: - bit: 64 os: mac store: steam - /game-Windows-x86.exe: + "/game-Windows-x86.exe": - when: - bit: 32 os: windows store: steam - /game-Windows-x86_64.exe: + "/game-Windows-x86_64.exe": - when: - bit: 64 os: windows @@ -260871,25 +261631,28 @@ Huckleberry Falls: installDir: Huckleberry Falls: {} launch: - /hf.app/Contents/MacOS/hf: + "/hf.app/Contents/MacOS/hf": - when: - os: mac store: steam - /hf.exe: + "/hf.exe": - when: - bit: 32 os: windows store: steam + - bit: 64 + os: windows + store: steam steam: id: 576290 Hue: files: - /userdata//383270/remote/cloudsave.bin: + "/userdata//383270/remote/cloudsave.bin": tags: - save when: - store: steam - /unity3d/Fiddlesticks/Hue/prefs: + "/unity3d/Fiddlesticks/Hue/prefs": tags: - config - save @@ -260901,20 +261664,20 @@ Hue: installDir: Hue: {} launch: - /Hue.app/Contents/MacOS/Hue: + "/Hue.app/Contents/MacOS/Hue": - when: - os: mac store: steam - /Hue.exe: + "/Hue.exe": - when: - os: windows store: steam - /Hue.x86: + "/Hue.x86": - when: - bit: 32 os: linux store: steam - /Hue.x86_64: + "/Hue.x86_64": - when: - bit: 64 os: linux @@ -260930,7 +261693,7 @@ Hue Defense: installDir: Hue Defense: {} launch: - /hd.exe: + "/hd.exe": - when: - os: windows store: steam @@ -260940,20 +261703,20 @@ HueBots: installDir: HueBots: {} launch: - /HueBots.app: + "/HueBots.app": - when: - os: mac store: steam - /HueBots.exe: + "/HueBots.exe": - when: - os: windows store: steam - /HueBots.x86: + "/HueBots.x86": - when: - bit: 32 os: linux store: steam - /HueBots.x86_64: + "/HueBots.x86_64": - when: - bit: 64 os: linux @@ -260964,7 +261727,7 @@ Huedango: installDir: Huedango: {} launch: - /Huedango.exe: + "/Huedango.exe": - when: - os: windows store: steam @@ -260974,7 +261737,7 @@ Huenison: installDir: Huenison: {} launch: - /Huenison.exe: + "/Huenison.exe": - when: - os: windows store: steam @@ -260984,7 +261747,7 @@ Hueor: installDir: Hueor: {} launch: - /Color Clash.exe: + "/Color Clash.exe": - when: - store: steam steam: @@ -260993,7 +261756,7 @@ Huge Bang Bang: installDir: Huge Bang Bang: {} launch: - /HugeBangBang.exe: + "/HugeBangBang.exe": - when: - bit: 64 os: windows @@ -261009,33 +261772,33 @@ Huge Enemy - Worldbreakers: installDir: HugeEnemy: {} launch: - /HugeEnemy.app: + "/HugeEnemy.app": - when: - os: mac store: steam - /HugeEnemy.exe: + "/HugeEnemy.exe": - when: - os: windows store: steam - /HugeEnemy.x86: + "/HugeEnemy.x86": - when: - bit: 32 os: linux store: steam - /HugeEnemy.x86_64: + "/HugeEnemy.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 857900 -'Hugo II: Whodunit?': +"Hugo II: Whodunit?": gog: id: 1207665313 -'Hugo III: Jungle of Doom!': +"Hugo III: Jungle of Doom!": gog: id: 1207665313 -Hugo's House of Horrors: +"Hugo's House of Horrors": gog: id: 1207665313 Hulala Baby: @@ -261045,7 +261808,7 @@ Hulì The Mage: installDir: Huli The Mage: {} launch: - /Huli.exe: + "/Huli.exe": - arguments: Huli the Mage when: - bit: 64 @@ -261057,7 +261820,7 @@ Hum Drum Experiences: installDir: Hum Drum Experiences: {} launch: - /Experience.exe: + "/Experience.exe": - when: - os: windows store: steam @@ -261067,33 +261830,33 @@ Human Apocalypse - Reverse Horror Zombie Indie RPG Adventure: installDir: Human Apocalypse: {} launch: - /Human Apocalypse: + "/Human Apocalypse": - when: - os: linux store: steam - /Human Apocalypse.exe: + "/Human Apocalypse.exe": - when: - os: windows store: steam - /humanapocalypse.app/Contents/MacOS/humanapocalypse: + "/humanapocalypse.app/Contents/MacOS/humanapocalypse": - when: - os: mac store: steam steam: id: 1661900 -'Human Apocalypse: Prologue': +"Human Apocalypse: Prologue": installDir: Human Apocalypse Prologue: {} launch: - /Human Apocalypse Prologue: + "/Human Apocalypse Prologue": - when: - os: linux store: steam - /Human Apocalypse Prologue.exe: + "/Human Apocalypse Prologue.exe": - when: - os: windows store: steam - /humanapocalypse.app/Contents/MacOS/humanapocalypseprologue: + "/humanapocalypse.app/Contents/MacOS/humanapocalypseprologue": - when: - os: mac store: steam @@ -261108,7 +261871,7 @@ Human Extinction Simulator: installDir: Human Extinction Simulator: {} launch: - /hes.exe: + "/hes.exe": - when: - os: windows store: steam @@ -261118,57 +261881,57 @@ Human Factory: installDir: Human Factory: {} launch: - /Human Factory.app: + "/Human Factory.app": - when: - os: mac store: steam - /Human Factory.exe: + "/Human Factory.exe": - when: - os: windows store: steam - /Human Factory.x86_64: + "/Human Factory.x86_64": - when: - os: linux store: steam steam: id: 1160040 -'Human Pinball : Iceage': +"Human Pinball : Iceage": installDir: Human Pinball Iceage: {} launch: - /Human Pinball Ice Age.exe: + "/Human Pinball Ice Age.exe": - when: - store: steam steam: id: 1044300 Human Resource Machine: files: - /Library/Application Support/Human Resource Machine/profiles.bin: + "/Library/Application Support/Human Resource Machine/profiles.bin": tags: - save when: - os: mac - /Library/Application Support/Human Resource Machine/settings.txt: + "/Library/Application Support/Human Resource Machine/settings.txt": tags: - config when: - os: mac - /Human Resource Machine/profiles.bin: + "/Human Resource Machine/profiles.bin": tags: - save when: - os: windows - /Human Resource Machine/settings.txt: + "/Human Resource Machine/settings.txt": tags: - config when: - os: windows - /Tomorrow Corporation/Human Resource Machine/profiles.bin: + "/Tomorrow Corporation/Human Resource Machine/profiles.bin": tags: - save when: - os: linux - /Tomorrow Corporation/Human Resource Machine/settings.txt: + "/Tomorrow Corporation/Human Resource Machine/settings.txt": tags: - config when: @@ -261178,20 +261941,20 @@ Human Resource Machine: installDir: Human Resource Machine: {} launch: - /Human Resource Machine.app/Contents/MacOS/Human Resource Machine: + "/Human Resource Machine.app/Contents/MacOS/Human Resource Machine": - when: - os: mac store: steam - /Human Resource Machine.exe: + "/Human Resource Machine.exe": - when: - os: windows store: steam - /HumanResourceMachine.bin.x86: + "/HumanResourceMachine.bin.x86": - when: - bit: 32 os: linux store: steam - /HumanResourceMachine.bin.x86_64: + "/HumanResourceMachine.bin.x86_64": - when: - bit: 64 os: linux @@ -261202,11 +261965,11 @@ Human Rights: installDir: Human Rights: {} launch: - /Human_Rights.app: + "/Human_Rights.app": - when: - os: mac store: steam - /Human_Rights.exe: + "/Human_Rights.exe": - when: - os: windows store: steam @@ -261216,7 +261979,7 @@ Human Rocket Person: installDir: Human Rocket Person: {} launch: - /HRP.exe: + "/HRP.exe": - when: - os: windows store: steam @@ -261231,13 +261994,13 @@ Human Simulator: installDir: Human Simulator: {} launch: - /Human Simulator.exe: + "/Human Simulator.exe": - when: - os: windows store: steam steam: id: 1175060 -'Human, We Have a Problem': +"Human, We Have a Problem": installDir: HumanWeHaveAProblem: {} steam: @@ -261246,20 +262009,20 @@ Human-powered Spacecraft: installDir: Human-powered spacecraft: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam steam: id: 699180 -'Human: Fall Flat': +"Human: Fall Flat": files: - /.config/unity3d/NoBrakesGames/Human/prefs: + "/.config/unity3d/NoBrakesGames/Human/prefs": tags: - config when: - os: linux - /Packages/CurveDigital.HumanFallFlat_1ezqdnbhnc70m/SystemAppData/wgs: + "/Packages/CurveDigital.HumanFallFlat_1ezqdnbhnc70m/SystemAppData/wgs": tags: - config - save @@ -261271,19 +262034,19 @@ Human-powered Spacecraft: installDir: Human Fall Flat: {} launch: - /Human.app: + "/Human.app": - when: - os: mac store: steam - /Human.exe: + "/Human.exe": - when: - os: windows store: steam - /Human.x86: + "/Human.x86": - when: - os: linux store: steam - /Human.x86_64: + "/Human.x86_64": - when: - bit: 64 os: linux @@ -261295,19 +262058,19 @@ Human-powered Spacecraft: - save steam: id: 477160 -'Human: Fall Flat 2': +"Human: Fall Flat 2": steam: id: 1388550 -'HumanKind: The Awakening': +"HumanKind: The Awakening": installDir: HumanKind: {} launch: - /mac_content/humankind.app: + "/mac_content/humankind.app": - when: - bit: 64 os: mac store: steam - /windows_content/humankind.exe: + "/windows_content/humankind.exe": - when: - os: windows store: steam @@ -261319,7 +262082,7 @@ Human-powered Spacecraft: id: 687280 Humanity: files: - /AppData/LocalLow/tha ltd/HUMANITY/: + "/AppData/LocalLow/tha ltd/HUMANITY/": tags: - save when: @@ -261327,7 +262090,7 @@ Humanity: installDir: Humanity: {} launch: - /HUMANITY.exe: + "/HUMANITY.exe": - when: - bit: 64 os: windows @@ -261338,7 +262101,7 @@ Humanity Asset: installDir: Humanity Asset: {} launch: - /HumanityAsset.exe: + "/HumanityAsset.exe": - when: - os: windows store: steam @@ -261348,7 +262111,7 @@ Humanity Lost: installDir: Humanity: {} launch: - /Humanity.exe: + "/Humanity.exe": - when: - bit: 64 os: windows @@ -261359,21 +262122,21 @@ Humanity Must Perish: installDir: Humanity Must Perish: {} launch: - /HumanityMustPerish-32.exe: + "/HumanityMustPerish-32.exe": - when: - bit: 32 os: windows store: steam - /HumanityMustPerish.app: + "/HumanityMustPerish.app": - when: - os: mac store: steam - /HumanityMustPerish.exe: + "/HumanityMustPerish.exe": - when: - bit: 64 os: windows store: steam - /HumanityMustPerish.sh: + "/HumanityMustPerish.sh": - when: - os: linux store: steam @@ -261381,7 +262144,7 @@ Humanity Must Perish: id: 657050 Humankind: files: - /Humankind/Save Files: + "/Humankind/Save Files": tags: - save when: @@ -261392,7 +262155,6 @@ Humankind: - 1633651 - 1704220 - 1819400 - - 1838710 - 1819410 - 1833990 - 1838710 @@ -261401,13 +262163,13 @@ Humankind: installDir: Humankind: {} launch: - /Humankind.app: - - arguments: '-single-instance' + "/Humankind.app": + - arguments: "-single-instance" when: - os: mac store: steam - /Humankind.exe: - - arguments: '-single-instance' + "/Humankind.exe": + - arguments: "-single-instance" when: - bit: 64 os: windows @@ -261419,14 +262181,14 @@ Humans 101: Humans101: {} steam: id: 1080310 -'Humans 2: The Jurassic Levels': +"Humans 2: The Jurassic Levels": gog: id: 1391062119 installDir: The Humans Collection Bundle: {} steam: id: 719320 -'Humans III: Evolution - Lost in Time': +"Humans III: Evolution - Lost in Time": gog: id: 1275264927 installDir: @@ -261435,22 +262197,24 @@ Humans 101: id: 719320 Humans Must Answer: files: - /Humans Must Answer Steam/Data/Save.txt: - tags: - - save - when: - - store: steam - /Humans Must Answer Steam/Data/Settings.txt: - tags: - - config - when: - - store: steam - /Humans Must Answer/Data/Save.txt: + "/Humans Must Answer Steam/Data/Save.txt": tags: - save when: - os: windows - /Humans Must Answer/Data/Settings.txt: + store: steam + "/Humans Must Answer Steam/Data/Settings.txt": + tags: + - config + when: + - os: windows + store: steam + "/Humans Must Answer/Data/Save.txt": + tags: + - save + when: + - os: windows + "/Humans Must Answer/Data/Settings.txt": tags: - config when: @@ -261460,7 +262224,7 @@ Humans Must Answer: installDir: HumansMustAnswer: {} launch: - /Humans Must Answer.exe: + "/Humans Must Answer.exe": - when: - os: windows store: steam @@ -261475,7 +262239,7 @@ Humble Abode: installDir: Humble Abode: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -261490,7 +262254,7 @@ Humble Rumble: installDir: Humble Rumble: {} launch: - /Humble Rumble.exe: + "/Humble Rumble.exe": - when: - store: steam steam: @@ -261499,7 +262263,7 @@ Hummingz - Retro Arcade Action Revised: installDir: Hummingz: {} launch: - /Hummingz.exe: + "/Hummingz.exe": - when: - os: windows store: steam @@ -261507,7 +262271,7 @@ Hummingz - Retro Arcade Action Revised: id: 809040 Humvee Assault: files: - /data/options_custom.dat: + "/data/options_custom.dat": tags: - config when: @@ -261516,23 +262280,23 @@ Hunahpu Quest. Mechanoid: installDir: Hunahpu Quest. Mechanoid: {} launch: - /HunahpuQuest_Mechanoid.exe: + "/HunahpuQuest_Mechanoid.exe": - when: - os: windows store: steam steam: id: 773010 -'Hunahpu: Way of the Warrior': +"Hunahpu: Way of the Warrior": steam: id: 595480 Hundred Days - Winemaking Simulator: files: - /AppData/LocalLow/Broken Arms Games Srls/Hundred Days - Winemaking Simulator/Saves: + "/AppData/LocalLow/Broken Arms Games Srls/Hundred Days - Winemaking Simulator/Saves": tags: - save when: - os: windows - /AppData/LocalLow/Broken Arms Games Srls/Hundred Days - Winemaking Simulator/Settings/settings.json: + "/AppData/LocalLow/Broken Arms Games Srls/Hundred Days - Winemaking Simulator/Settings/settings.json": tags: - config when: @@ -261542,11 +262306,11 @@ Hundred Days - Winemaking Simulator: installDir: Hundred Days: {} launch: - /Hundred Days - Winemaking Simulator.exe: + "/Hundred Days - Winemaking Simulator.exe": - when: - os: windows store: steam - /HundredDays.app: + "/HundredDays.app": - when: - os: mac store: steam @@ -261560,7 +262324,7 @@ Hunger: installDir: HUNGER: {} launch: - /hungergame.exe: + "/hungergame.exe": - when: - os: windows store: steam @@ -261570,11 +262334,11 @@ Hunger Apartment: installDir: Hunger Aparment: {} launch: - /Hunger Apartment.app/Contents/MacOS/Hunger Apartment: + "/Hunger Apartment.app/Contents/MacOS/Hunger Apartment": - when: - os: mac store: steam - /Hunger Apartment.exe: + "/Hunger Apartment.exe": - when: - os: windows store: steam @@ -261584,15 +262348,15 @@ Hunger Dungeon: installDir: HungerDungeon: {} launch: - /HungerDungeon.app/Contents/MacOS/HungerDungeon: + "/HungerDungeon.app/Contents/MacOS/HungerDungeon": - when: - os: mac store: steam - /HungerDungeon.exe: + "/HungerDungeon.exe": - when: - os: windows store: steam - /HungerDungeon.x86: + "/HungerDungeon.x86": - when: - os: linux store: steam @@ -261602,7 +262366,7 @@ Hunger Tower: installDir: Hunger Tower: {} launch: - /HungerTower_PC.exe: + "/HungerTower_PC.exe": - when: - store: steam steam: @@ -261611,7 +262375,7 @@ Hungry Fish Evolution: installDir: Hungry Games Evolution: {} launch: - /Hungry Fish.exe: + "/Hungry Fish.exe": - when: - os: windows store: steam @@ -261621,11 +262385,11 @@ Hungry Flame: installDir: Hungry Flame: {} launch: - /Hungry Flame.app: + "/Hungry Flame.app": - when: - os: mac store: steam - /Hungry Flame.exe: + "/Hungry Flame.exe": - when: - os: windows store: steam @@ -261635,11 +262399,11 @@ Hungry Kitty Donuts Mania: installDir: Hungry Kitty Donuts Mania: {} launch: - /HungryKittyDonutsMania.app: + "/HungryKittyDonutsMania.app": - when: - os: mac store: steam - /HungryKittyDonutsMania.exe: + "/HungryKittyDonutsMania.exe": - when: - os: windows store: steam @@ -261649,11 +262413,11 @@ Hungry Piggy Vs. Chicken: installDir: Hungry Piggy vs Chicken: {} launch: - /HungryPiggyVsChicken.app: + "/HungryPiggyVsChicken.app": - when: - os: mac store: steam - /HungryPiggyVsChicken.exe: + "/HungryPiggyVsChicken.exe": - when: - os: windows store: steam @@ -261666,19 +262430,19 @@ Hungry Shadows: installDir: Hungry Shadows: {} launch: - /Hungry Shadows.exe: + "/Hungry Shadows.exe": - when: - store: steam steam: id: 905790 HunieCam Studio: files: - /.config/unity3d/HuniePot/HunieCam Studio: + "/.config/unity3d/HuniePot/HunieCam Studio": tags: - save when: - os: linux - /AppData/LocalLow/HuniePot/HunieCam Studio: + "/AppData/LocalLow/HuniePot/HunieCam Studio": tags: - save when: @@ -261688,20 +262452,20 @@ HunieCam Studio: installDir: HunieCam Studio: {} launch: - /HunieCamStudio.app: + "/HunieCamStudio.app": - when: - os: mac store: steam - /HunieCamStudio.exe: + "/HunieCamStudio.exe": - when: - os: windows store: steam - /HunieCamStudio.x86: + "/HunieCamStudio.x86": - when: - bit: 32 os: linux store: steam - /HunieCamStudio.x86_64: + "/HunieCamStudio.x86_64": - when: - bit: 64 os: linux @@ -261714,27 +262478,27 @@ HunieCam Studio: id: 426000 HuniePop: files: - /.config/unity3d/HuniePot/HuniePop/*.game: + "/.config/unity3d/HuniePot/HuniePop/*.game": tags: - save when: - os: linux - /.config/unity3d/HuniePot/HuniePop/prefs: + "/.config/unity3d/HuniePot/HuniePop/prefs": tags: - config when: - os: linux - /AppData/LocalLow/HuniePot/HuniePop: + "/AppData/LocalLow/HuniePot/HuniePop": tags: - save when: - os: windows - /Library/Caches/unity.HuniePot.HuniePop: + "/Library/Caches/unity.HuniePot.HuniePop": tags: - save when: - os: mac - /Library/Preferences/unity.HuniePot.HuniePop.plist: + "/Library/Preferences/unity.HuniePot.HuniePop.plist": tags: - config when: @@ -261744,22 +262508,28 @@ HuniePop: installDir: HuniePop: {} launch: - /HuniePop.app: + "/HuniePop.app": - when: - bit: 32 os: mac store: steam - /HuniePop.exe: + - bit: 64 + os: mac + store: steam + "/HuniePop.exe": - when: - bit: 32 os: windows store: steam - /HuniePop.x86: + - bit: 64 + os: windows + store: steam + "/HuniePop.x86": - when: - bit: 32 os: linux store: steam - /HuniePop.x86_64: + "/HuniePop.x86_64": - when: - bit: 64 os: linux @@ -261770,14 +262540,14 @@ HuniePop: - config steam: id: 339800 -'HuniePop 2: Double Date': +"HuniePop 2: Double Date": files: - /AppData/LocalLow/HuniePot/HuniePop 2 - Double Date: + "/AppData/LocalLow/HuniePot/HuniePop 2 - Double Date": tags: - save when: - os: windows - /Library/Application Support/com.HuniePot.HuniePop2-DoubleDate: + "/Library/Application Support/com.HuniePot.HuniePop2-DoubleDate": tags: - save when: @@ -261787,26 +262557,29 @@ HuniePop: installDir: HuniePop 2 - Double Date: {} launch: - /HuniePop 2 - Double Date.app: + "/HuniePop 2 - Double Date.app": - when: - os: mac store: steam - /HuniePop 2 - Double Date.exe: + "/HuniePop 2 - Double Date.exe": - when: - bit: 32 os: windows store: steam + - bit: 64 + os: windows + store: steam registry: HKEY_CURRENT_USER/Software/HuniePot/HuniePop 2 - Double Date: tags: - config steam: id: 930210 -Hunt 'n Sneak: +"Hunt 'n Sneak": installDir: HuntnSneak: {} launch: - /Hunt 'n Sneak.exe: + "/Hunt 'n Sneak.exe": - when: - os: windows store: steam @@ -261814,12 +262587,12 @@ Hunt 'n Sneak: id: 689610 Hunt Down the Freeman: files: - /hdtf/SAVE: + "/hdtf/SAVE": tags: - save when: - os: windows - /hdtf/cfg: + "/hdtf/cfg": tags: - config when: @@ -261827,8 +262600,8 @@ Hunt Down the Freeman: installDir: Hunt Down The Freeman: {} launch: - /hdtf.exe: - - arguments: '-game hdtf' + "/hdtf.exe": + - arguments: "-game hdtf" when: - os: windows store: steam @@ -261838,7 +262611,7 @@ Hunt For Gods: installDir: Hunt For Gods: {} launch: - /HuntForGods.exe: + "/HuntForGods.exe": - when: - bit: 64 os: windows @@ -261849,7 +262622,7 @@ Hunt With Friends: installDir: HuntWithFriends: {} launch: - /HuntWithFriends.exe: + "/HuntWithFriends.exe": - when: - bit: 64 os: windows @@ -261858,7 +262631,7 @@ Hunt With Friends: id: 843830 Hunt and Snare: files: - /AppData/LocalLow/Ruffleneck/Hunt and Snare: + "/AppData/LocalLow/Ruffleneck/Hunt and Snare": tags: - save when: @@ -261866,61 +262639,61 @@ Hunt and Snare: installDir: Hunt and Snare: {} launch: - /ruffleneck.app/Contents/MacOS/ruffleneck: - - arguments: '-steam -noburst' + "/ruffleneck.app/Contents/MacOS/ruffleneck": + - arguments: "-steam -noburst" when: - os: mac store: steam - - arguments: '-steam -censored -noburst' + - arguments: "-steam -censored -noburst" when: - os: mac store: steam - - arguments: '-steam' + - arguments: "-steam" when: - os: mac store: steam - - arguments: '-steam -censored' + - arguments: "-steam -censored" when: - os: mac store: steam - /ruffleneck.exe: - - arguments: '-steam' + "/ruffleneck.exe": + - arguments: "-steam" when: - bit: 64 os: windows store: steam - - arguments: '-steam -censored' + - arguments: "-steam -censored" when: - bit: 64 os: windows store: steam - - arguments: '-steam -noburst' + - arguments: "-steam -noburst" when: - bit: 64 os: windows store: steam - - arguments: '-steam -censored -noburst' + - arguments: "-steam -censored -noburst" when: - bit: 64 os: windows store: steam - /ruffleneck.x64: - - arguments: '-steam' + "/ruffleneck.x64": + - arguments: "-steam" when: - bit: 64 os: linux store: steam - - arguments: '-steam -censored' + - arguments: "-steam -censored" when: - bit: 64 os: linux store: steam - - arguments: '-steam -noburst' + - arguments: "-steam -noburst" when: - bit: 64 os: linux store: steam - - arguments: '-steam -censored -noburst' + - arguments: "-steam -censored -noburst" when: - bit: 64 os: linux @@ -261931,7 +262704,7 @@ Hunt for Junk: installDir: Hunt for Junk: {} launch: - /Hunt For Junk.exe: + "/Hunt For Junk.exe": - when: - os: windows store: steam @@ -261942,37 +262715,31 @@ Hunt the Thailand Hidden: Hunt the Thailand Hidden: {} steam: id: 1092270 -'Hunt: Showdown': - files: - /user/profiles/default>: - tags: - - config - when: - - os: windows +"Hunt: Showdown": id: steamExtra: - - 1180491 - - 1180490 - - 1255001 - - 1397381 - - 1397380 - - 1166472 - - 1166470 - - 1304601 - - 1225140 + - 770720 - 1143840 + - 1166470 - 1166471 + - 1166472 + - 1180490 + - 1180491 - 1191490 + - 1225140 - 1228530 - 1234950 - 1255000 + - 1255001 - 1304600 + - 1304601 - 1374340 - - 770720 + - 1397380 + - 1397381 installDir: Hunt Showdown: {} launch: - /hunt.exe: + "/hunt.exe": - arguments: +online_account_client_settings live +online_websvc_skip_tls_cert_validation 1 when: - bit: 64 @@ -261980,24 +262747,24 @@ Hunt the Thailand Hidden: store: steam steam: id: 594650 -'Hunt: The Unknown Quarry': +"Hunt: The Unknown Quarry": installDir: Hunt The Unknown Quarry: {} launch: - /hunt.app: + "/hunt.app": - when: - os: mac store: steam - /hunt.exe: + "/hunt.exe": - when: - os: windows store: steam - /hunt.x86: + "/hunt.x86": - when: - bit: 32 os: linux store: steam - /hunt.x86_64: + "/hunt.x86_64": - when: - bit: 64 os: linux @@ -262010,13 +262777,13 @@ Hunt the Thailand Hidden: id: 528450 Huntdown: files: - /AppData/LocalLow/Coffee Stain Publishing/Huntdown: + "/AppData/LocalLow/Coffee Stain Publishing/Huntdown": tags: - config - save when: - os: windows - /unity3d/Coffee Stain Publishing/Huntdown: + "/unity3d/Coffee Stain Publishing/Huntdown": tags: - config - save @@ -262027,16 +262794,19 @@ Huntdown: installDir: Huntdown: {} launch: - /Huntdown.app/Contents/MacOS/Huntdown: + "/Huntdown.app/Contents/MacOS/Huntdown": - when: - os: mac store: steam - /Huntdown.exe: + "/Huntdown.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam - /Huntdown.x86_64: + "/Huntdown.x86_64": - when: - bit: 64 os: linux @@ -262046,24 +262816,24 @@ Huntdown: Hunted Gods: steam: id: 663970 -'Hunted: One Step Too Far': +"Hunted: One Step Too Far": installDir: Hunted One Step Too Far: {} launch: - /hunted one step too far.exe: + "/hunted one step too far.exe": - when: - os: windows store: steam steam: id: 521450 -'Hunted: The Demon''s Forge': +"Hunted: The Demon's Forge": files: - /My Games/Hunted/DFGame/Config: + "/My Games/Hunted/DFGame/Config": tags: - config when: - os: windows - /My Games/Hunted/DFgame/SaveData: + "/My Games/Hunted/DFgame/SaveData": tags: - save when: @@ -262071,7 +262841,7 @@ Hunted Gods: installDir: Hunted: {} launch: - /BINARIES/WIN32/hunted.exe: + "/BINARIES/WIN32/hunted.exe": - when: - store: steam steam: @@ -262080,7 +262850,7 @@ Hunter: installDir: Hunter: {} launch: - /Hunter.exe: + "/Hunter.exe": - when: - store: steam steam: @@ -262089,7 +262859,7 @@ Hunter Brick Ball: installDir: HUNTER BRICK BALL: {} launch: - /Hunter brick ball.exe: + "/Hunter brick ball.exe": - when: - os: windows store: steam @@ -262099,15 +262869,15 @@ Hunter Gatherer: installDir: Hunter Gatherer: {} launch: - /game.app: + "/game.app": - when: - os: mac store: steam - /game.exe: + "/game.exe": - when: - os: windows store: steam - /game.x86_64: + "/game.x86_64": - when: - os: linux store: steam @@ -262117,7 +262887,7 @@ Hunter Story: installDir: Hunter Story: {} launch: - /gameS.exe: + "/gameS.exe": - when: - os: windows store: steam @@ -262127,53 +262897,53 @@ Hunter of Antiques: installDir: Hunter of antiques: {} launch: - /Launcher/Hunter of antiques Launcher.exe: + "/Launcher/Hunter of antiques Launcher.exe": - when: - os: windows store: steam - workingDir: /Launcher + workingDir: "/Launcher" steam: id: 745060 -'Hunter''s Arena: Legends': +"Hunter's Arena: Legends": installDir: - Hunter's Arena Legends: {} + "Hunter's Arena Legends": {} launch: - /WindowsNoEditor/HuntersArena.exe: + "/WindowsNoEditor/HuntersArena.exe": - when: - bit: 64 os: windows store: steam steam: id: 1061100 -Hunter's Legacy: +"Hunter's Legacy": installDir: - Hunter's Legacy: {} + "Hunter's Legacy": {} launch: - /Hunter's Legacy.app: + "/Hunter's Legacy.app": - when: - os: mac store: steam - /Hunter's Legacy.exe: + "/Hunter's Legacy.exe": - when: - os: windows store: steam steam: id: 479110 -Hunter's Soul: +"Hunter's Soul": installDir: Hunterssoul: {} launch: - /Hunterssoul.exe: + "/Hunterssoul.exe": - when: - os: windows store: steam steam: id: 1158230 -'Hunter''s Trial: The fight never ends': +"Hunter's Trial: The fight never ends": installDir: - Hunter's Trial: {} + "Hunter's Trial": {} launch: - /HuntersTrial.exe: + "/HuntersTrial.exe": - when: - store: steam steam: @@ -262182,7 +262952,7 @@ Hunters Life: installDir: Hunters: {} launch: - /PCGWork.exe: + "/PCGWork.exe": - when: - os: windows store: steam @@ -262192,11 +262962,11 @@ Hunters of the Dead: installDir: Hunters Of The Dead: {} launch: - /Hunters of the Dead.app: + "/Hunters of the Dead.app": - when: - os: mac store: steam - /Hunters of the Dead.exe: + "/Hunters of the Dead.exe": - when: - os: windows store: steam @@ -262206,7 +262976,7 @@ Hunting Simulator: installDir: Hunting Simulator: {} launch: - /Hunter.exe: + "/Hunter.exe": - when: - os: windows store: steam @@ -262221,7 +262991,7 @@ Hunting Unlimited: installDir: Hunting Unlimited 1: {} launch: - /hu.exe: + "/hu.exe": - when: - store: steam steam: @@ -262230,7 +263000,7 @@ Hunting Unlimited 2: installDir: Hunting Unlimited 2: {} launch: - /hu2.exe: + "/hu2.exe": - when: - store: steam steam: @@ -262239,7 +263009,7 @@ Hunting Unlimited 2008: installDir: Hunting Unlimited 2008: {} launch: - /hu2008.exe: + "/hu2008.exe": - when: - store: steam steam: @@ -262248,7 +263018,7 @@ Hunting Unlimited 2009: installDir: Hunting Unlimited 2009: {} launch: - /hu2009.exe: + "/hu2009.exe": - when: - os: windows store: steam @@ -262256,12 +263026,12 @@ Hunting Unlimited 2009: id: 545940 Hunting Unlimited 2010: files: - /Hunting Unlimited 2010/config.cfg: + "/Hunting Unlimited 2010/config.cfg": tags: - config when: - os: windows - /Hunting Unlimited 2010/saves: + "/Hunting Unlimited 2010/saves": tags: - save when: @@ -262269,7 +263039,7 @@ Hunting Unlimited 2010: installDir: Hunting Unlimited 2010: {} launch: - /hu2010.exe: + "/hu2010.exe": - when: - store: steam steam: @@ -262278,7 +263048,7 @@ Hunting Unlimited 2011: installDir: Hunting Unlimited 2011: {} launch: - /HU2011.exe: + "/HU2011.exe": - when: - os: windows store: steam @@ -262288,7 +263058,7 @@ Hunting Unlimited 3: installDir: Hunting Unlimited 3: {} launch: - /hu3.exe: + "/hu3.exe": - when: - store: steam steam: @@ -262297,7 +263067,7 @@ Hunting Unlimited 4: installDir: Hunting Unlimited 4: {} launch: - /hu4.exe: + "/hu4.exe": - when: - os: windows store: steam @@ -262314,15 +263084,15 @@ Hunting in Ancient Asia: Hunting on Myths: steam: id: 801080 -'Huntsman: The Orphanage': +"Huntsman: The Orphanage": installDir: Huntsman The Orphanage: {} launch: - /H-TO.app: + "/H-TO.app": - when: - os: mac store: steam - /H-TO.exe: + "/H-TO.exe": - when: - os: windows store: steam @@ -262337,7 +263107,7 @@ Hurricane: installDir: Hurricane: {} launch: - /Hurricane.exe: + "/Hurricane.exe": - when: - bit: 64 os: windows @@ -262351,7 +263121,7 @@ Hurricane chase(飓风追击): installDir: Hurricane chase: {} launch: - /Hurricane chase.exe: + "/Hurricane chase.exe": - when: - os: windows store: steam @@ -262361,28 +263131,28 @@ Hurtworld: installDir: Hurtworld: {} launch: - /Hurtworld.exe: + "/Hurtworld.exe": - when: - bit: 32 os: windows store: steam - /experimental/Hurtworld.app: + "/experimental/Hurtworld.app": - when: - os: mac store: steam - workingDir: /experimental - /experimental/Hurtworld.x86_64: + workingDir: "/experimental" + "/experimental/Hurtworld.x86_64": - when: - bit: 64 os: linux store: steam - workingDir: /experimental - /experimental/hurtworld.exe: + workingDir: "/experimental" + "/experimental/hurtworld.exe": - when: - bit: 64 os: windows store: steam - workingDir: /experimental + workingDir: "/experimental" registry: HKEY_CURRENT_USER/Software/Bankroll Studios/Hurtworld: tags: @@ -262393,7 +263163,7 @@ Hush: installDir: HUSH: {} launch: - /hush.exe: + "/hush.exe": - when: - os: windows store: steam @@ -262403,35 +263173,38 @@ Hush Hush - Unlimited Survival Horror: installDir: HushHush: {} launch: - /HushHush.app/Contents/MacOS/hushhush: + "/HushHush.app/Contents/MacOS/hushhush": - when: - os: mac store: steam - /hushhush.exe: + "/hushhush.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam - /hushhush.x86: + "/hushhush.x86": - when: - bit: 32 os: linux store: steam - /hushhush.x86_64: + "/hushhush.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 449500 -'Hush: In Search Of Dominic Ward': +"Hush: In Search Of Dominic Ward": steam: id: 947560 Husk: installDir: Husk: {} launch: - /Husk/Binaries/Win64/Husk-Win64-Shipping.exe: + "/Husk/Binaries/Win64/Husk-Win64-Shipping.exe": - when: - os: windows store: steam @@ -262439,7 +263212,7 @@ Husk: id: 553960 Hustle Cat: files: - /com.datenighto.game.hustlecat: + "/com.datenighto.game.hustlecat": tags: - save when: @@ -262447,11 +263220,11 @@ Hustle Cat: installDir: Hustle Cat: {} launch: - /Hustle Cat.app/Contents/MacOS/nwjs: + "/Hustle Cat.app/Contents/MacOS/nwjs": - when: - os: mac store: steam - /Hustle Cat.exe: + "/Hustle Cat.exe": - when: - os: windows store: steam @@ -262461,11 +263234,11 @@ Huts: installDir: huts: {} launch: - /huts.app: + "/huts.app": - when: - os: mac store: steam - /huts.exe: + "/huts.exe": - when: - os: windows store: steam @@ -262475,7 +263248,7 @@ Huusuienbu - Chapter Spring and Summer: installDir: Huusuienbu - Chapter Spring and Summer: {} launch: - /Huusuienbu.exe: + "/Huusuienbu.exe": - when: - os: windows store: steam @@ -262488,8 +263261,8 @@ Hyacinthus: installDir: Hyacinthus: {} launch: - /Game.exe: - - arguments: '-window' + "/Game.exe": + - arguments: "-window" when: - os: windows store: steam @@ -262499,7 +263272,7 @@ Hyakki Castle: installDir: HYAKKI CASTLE: {} launch: - /dg.exe: + "/dg.exe": - when: - os: windows store: steam @@ -262509,7 +263282,7 @@ Hybrid Animals: installDir: Hybrid Animals: {} launch: - /HybridAnimals.exe: + "/HybridAnimals.exe": - when: - os: windows store: steam @@ -262517,7 +263290,7 @@ Hybrid Animals: id: 448240 Hybrid Wars: files: - /AppData/LocalLow/Extreme Developers/Hybrid Wars/Saves: + "/AppData/LocalLow/Extreme Developers/Hybrid Wars/Saves": tags: - config when: @@ -262527,23 +263300,23 @@ Hybrid Wars: id: gogExtra: - 1255274701 + - 1497274354 - 1518019165 - 1875040144 - - 1497274354 - 1898713863 installDir: Hybrid Wars: {} launch: - /HW.app: + "/HW.app": - when: - bit: 64 os: mac store: steam - /HW.exe: + "/HW.exe": - when: - os: windows store: steam - /HW.x86_64: + "/HW.x86_64": - when: - os: linux store: steam @@ -262551,12 +263324,12 @@ Hybrid Wars: id: 411540 Hydorah: files: - /Hydorah/key_config.ini: + "/Hydorah/key_config.ini": tags: - config when: - os: windows - /Hydorah/savegame: + "/Hydorah/savegame": tags: - save when: @@ -262565,15 +263338,15 @@ Hydra Slayer: installDir: Hydra Slayer: {} launch: - /exec/hydra.sh: + "/exec/hydra.sh": - when: - os: mac store: steam - /hydra: + "/hydra": - when: - os: linux store: steam - /hydra.exe: + "/hydra.exe": - when: - os: windows store: steam @@ -262583,7 +263356,7 @@ Hydraulic Empire: installDir: Hydraulic Empire: {} launch: - /Hydraulic Empire.exe: + "/Hydraulic Empire.exe": - when: - os: windows store: steam @@ -262591,7 +263364,7 @@ Hydraulic Empire: id: 381220 Hydro Thunder Hurricane: files: - /Packages/Microsoft.Studios.HydroThunderHurricane_8wekyb3d8bbwe/LocalState: + "/Packages/Microsoft.Studios.HydroThunderHurricane_8wekyb3d8bbwe/LocalState": tags: - config - save @@ -262602,7 +263375,7 @@ Hydroactive: installDir: Hydroactive: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -262610,12 +263383,12 @@ Hydroactive: id: 741930 Hydroneer: files: - /Mining/Saved/Config/WindowsNoEditor: + "/Mining/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /Mining/Saved/SaveGames: + "/Mining/Saved/SaveGames": tags: - save when: @@ -262623,20 +263396,20 @@ Hydroneer: installDir: Hydroneer: {} launch: - /Mining.exe: + "/Mining.exe": - when: - os: windows store: steam steam: id: 1106840 -'Hydrophobia: Prophecy': +"Hydrophobia: Prophecy": files: - /ded.ini: + "/ded.ini": tags: - config when: - os: windows - /userdata//92000/remote: + "/userdata//92000/remote": tags: - config - save @@ -262646,7 +263419,7 @@ Hydroneer: installDir: Hydrophobia: {} launch: - /HydroPC.exe: + "/HydroPC.exe": - when: - store: steam registry: @@ -262655,10 +263428,10 @@ Hydroneer: - config steam: id: 92000 -'Hyena: Dogs of War': +"Hyena: Dogs of War": steam: id: 1068830 -'Hykee - Episode 1: Underwater': +"Hykee - Episode 1: Underwater": installDir: Hykee - Episode 1 Underwater: {} steam: @@ -262667,7 +263440,7 @@ Hylics: installDir: Hylics: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -262677,11 +263450,11 @@ Hylics 2: installDir: Hylics 2: {} launch: - /Hylics2_Mac.app: + "/Hylics2_Mac.app": - when: - os: mac store: steam - /Hylics2_Windows.exe: + "/Hylics2_Windows.exe": - when: - os: windows store: steam @@ -262691,21 +263464,21 @@ Hypatia: installDir: Hypatia: {} launch: - /hypatia.sh: + "/hypatia.sh": - arguments: OSS=Steam when: - os: linux store: steam steam: id: 401970 -'Hype: The Time Quest': +"Hype: The Time Quest": files: - /Gamedata/SaveGame: + "/Gamedata/SaveGame": tags: - save when: - os: windows - /UbiSoft/ubi.ini: + "/UbiSoft/ubi.ini": tags: - config when: @@ -262717,7 +263490,7 @@ Hyper Bit Chasm: installDir: Hyper Bit Chasm: {} launch: - /Hyper Bit Chasm.exe: + "/Hyper Bit Chasm.exe": - when: - os: windows store: steam @@ -262727,10 +263500,10 @@ Hyper Bounce Blast: installDir: Hyper Bounce Blast: {} launch: - /HBBLauncher.exe: + "/HBBLauncher.exe": - when: - store: steam - /SpeedLauncher.exe: + "/SpeedLauncher.exe": - when: - os: windows store: steam @@ -262745,15 +263518,15 @@ Hyper Box: installDir: Hyper Box: {} launch: - /linux32/hyperbox: + "/linux32/hyperbox": - when: - os: linux store: steam - /osx32/hyperbox.app: + "/osx32/hyperbox.app": - when: - os: mac store: steam - /win32/hyperbox.exe: + "/win32/hyperbox.exe": - when: - os: windows store: steam @@ -262763,19 +263536,19 @@ Hyper Color Ball: installDir: Hyper color ball: {} launch: - /HCB.exe: + "/HCB.exe": - when: - store: steam steam: id: 515470 Hyper Fighters: files: - /HyperFighters/Config.cfg: + "/HyperFighters/Config.cfg": tags: - config when: - os: windows - /HyperFighters/Luadata.lua: + "/HyperFighters/Luadata.lua": tags: - save when: @@ -262783,7 +263556,7 @@ Hyper Fighters: installDir: Hyper Fighters: {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: @@ -262792,7 +263565,7 @@ Hyper Flight: installDir: Hyper Flight: {} launch: - /Deploy/HyperFlight.exe: + "/Deploy/HyperFlight.exe": - when: - os: windows store: steam @@ -262802,8 +263575,8 @@ Hyper Galactica: installDir: Hyper Galactica: {} launch: - /jre1.8.0.171/bin/java.exe: - - arguments: '-jar hg.jar' + "/jre1.8.0.171/bin/java.exe": + - arguments: "-jar hg.jar" when: - bit: 64 os: windows @@ -262814,7 +263587,7 @@ Hyper Gods: installDir: Hyper Gods: {} launch: - /Hyper Gods/hgods.exe: + "/Hyper Gods/hgods.exe": - when: - os: windows store: steam @@ -262824,7 +263597,7 @@ Hyper Jam: installDir: Hyper Jam: {} launch: - /HyperJam/Binaries/Win64/HyperJamSteam.exe: + "/HyperJam/Binaries/Win64/HyperJamSteam.exe": - when: - bit: 64 os: windows @@ -262835,33 +263608,33 @@ Hyper Knights: installDir: Hyper Knights: {} launch: - /HyperKnights.app: + "/HyperKnights.app": - when: - os: mac store: steam - /HyperKnights.exe: + "/HyperKnights.exe": - when: - os: windows store: steam - /HyperKnights.x86: + "/HyperKnights.x86": - when: - os: linux store: steam steam: id: 597150 -'Hyper Knights: Battles': +"Hyper Knights: Battles": installDir: Hyper Knights Battles: {} launch: - /HyperKnightsBattles.app: + "/HyperKnightsBattles.app": - when: - os: mac store: steam - /HyperKnightsBattles.exe: + "/HyperKnightsBattles.exe": - when: - os: windows store: steam - /HyperKnightsBattles.x86: + "/HyperKnightsBattles.x86": - when: - os: linux store: steam @@ -262869,24 +263642,24 @@ Hyper Knights: id: 747310 Hyper Light Drifter: files: - /.config/HyperLightDrifter: + "/.config/HyperLightDrifter": tags: - config - save when: - os: linux - /Library/Application Support/com.HeartMachine.HyperLightDrifter: + "/Library/Application Support/com.HeartMachine.HyperLightDrifter": tags: - config - save when: - os: mac - /HyperLightDrifter: + "/HyperLightDrifter": tags: - save when: - os: windows - /HyperLightDrifter/GamePrefs.dat: + "/HyperLightDrifter/GamePrefs.dat": tags: - config when: @@ -262896,15 +263669,15 @@ Hyper Light Drifter: installDir: HyperLightDrifter: {} launch: - /HyperLightDrifter.app: + "/HyperLightDrifter.app": - when: - os: mac store: steam - /HyperLightDrifter.exe: + "/HyperLightDrifter.exe": - when: - os: windows store: steam - /run.sh: + "/run.sh": - when: - os: linux store: steam @@ -262914,21 +263687,21 @@ Hyper Mum Ft Adult Gaming: installDir: Hyper Mum Ft Adult Gaming: {} launch: - /Hyper Mum Ft Adult Gaming.exe: + "/Hyper Mum Ft Adult Gaming.exe": - when: - store: steam steam: id: 1033910 Hyper Princess Pitch: files: - /pitchsave.sav: + "/pitchsave.sav": tags: - config when: - os: windows Hyper Scape: files: - /My Games/Hyperscape//GameSettings.ini: + "/My Games/Hyperscape//GameSettings.ini": tags: - config when: @@ -262937,7 +263710,7 @@ Hyper Scuffle: installDir: Hyper Scuffle: {} launch: - /Hyper Scuffle.exe: + "/Hyper Scuffle.exe": - when: - os: windows store: steam @@ -262947,15 +263720,15 @@ Hyper Sentinel: installDir: Hyper Sentinel: {} launch: - /HyperSentinel.app/Contents/MacOS/HyperSentinel: + "/HyperSentinel.app/Contents/MacOS/HyperSentinel": - when: - os: mac store: steam - /HyperSentinel.exe: + "/HyperSentinel.exe": - when: - os: windows store: steam - /HyperSentinel.x86_64: + "/HyperSentinel.x86_64": - when: - os: linux store: steam @@ -262965,7 +263738,7 @@ Hyper Simox 3000: installDir: Hyper Simon X: {} launch: - /Hyper Simon X.exe: + "/Hyper Simon X.exe": - when: - store: steam steam: @@ -262977,7 +263750,7 @@ Hyper Storm: installDir: HyperStorm: {} launch: - /HyperStorm.exe: + "/HyperStorm.exe": - when: - os: windows store: steam @@ -262987,11 +263760,11 @@ Hyper Train Corporation: installDir: Hyper Train Corporation: {} launch: - /Hyper Train Corporation.app/Contents/MacOS/Hyper Train Corporation: + "/Hyper Train Corporation.app/Contents/MacOS/Hyper Train Corporation": - when: - os: mac store: steam - /Hyper Train Corporation.exe: + "/Hyper Train Corporation.exe": - when: - os: windows store: steam @@ -263001,8 +263774,8 @@ Hyper Universe: installDir: HyperUniverse: {} launch: - /nxsteam/nxsteam.exe: - - arguments: ./nxsteam/src/ + "/nxsteam/nxsteam.exe": + - arguments: "./nxsteam/src/" when: - os: windows store: steam @@ -263012,7 +263785,7 @@ Hyper Void: installDir: Hyper Void: {} launch: - /HyperVoid.exe: + "/HyperVoid.exe": - when: - os: windows store: steam @@ -263022,7 +263795,7 @@ Hyper-Casual Hentai: installDir: Hyper-Casual Hentai: {} launch: - /Hyper-Casual Hentai.exe: + "/Hyper-Casual Hentai.exe": - when: - os: windows store: steam @@ -263032,11 +263805,11 @@ HyperBowl: installDir: HyperBowl: {} launch: - /HyperBowl.app/Contents/MacOS/steamosx: + "/HyperBowl.app/Contents/MacOS/steamosx": - when: - os: mac store: steam - /HyperBowl/steamwin.exe: + "/HyperBowl/steamwin.exe": - when: - os: windows store: steam @@ -263046,7 +263819,7 @@ HyperBrawl: installDir: HyperBrawl Tournament: {} launch: - /HyperBrawl Tournament.exe: + "/HyperBrawl Tournament.exe": - when: - os: windows store: steam @@ -263057,7 +263830,7 @@ HyperCore: id: 1112390 HyperDot: files: - /Packages/GLITCHCREATIVE.97111304EFEB_x0vgmsp546ak2/SystemAppData/wgs/: + "/Packages/GLITCHCREATIVE.97111304EFEB_x0vgmsp546ak2/SystemAppData/wgs/": tags: - save when: @@ -263066,15 +263839,15 @@ HyperDot: installDir: HyperDot: {} launch: - /HyperDot.app: + "/HyperDot.app": - when: - os: mac store: steam - /HyperDot.exe: + "/HyperDot.exe": - when: - os: windows store: steam - /HyperDot.x86_64: + "/HyperDot.x86_64": - when: - os: linux store: steam @@ -263084,12 +263857,12 @@ HyperFighter Boost Mode ON: installDir: Hyper Fighter Boost Mode ON: {} launch: - /HyperFighter.exe: + "/HyperFighter.exe": - when: - bit: 64 os: windows store: steam - /HyperFighterx86.exe: + "/HyperFighterx86.exe": - when: - bit: 32 os: windows @@ -263102,18 +263875,18 @@ HyperParasite: installDir: HyperParasite: {} launch: - /HyperParasite.exe: + "/HyperParasite.exe": - when: - bit: 64 os: windows store: steam steam: id: 838110 -'HyperQ: The 4Dimensional Roguelike': +"HyperQ: The 4Dimensional Roguelike": installDir: HyperQ The 4Dimensional Roguelike: {} launch: - /HyperQ.exe: + "/HyperQ.exe": - when: - os: windows store: steam @@ -263121,12 +263894,12 @@ HyperParasite: id: 1045730 HyperRogue: files: - /hyperrogue.ini: + "/hyperrogue.ini": tags: - config when: - os: linux - /hyperrogue.log: + "/hyperrogue.log": tags: - save when: @@ -263134,20 +263907,20 @@ HyperRogue: installDir: HyperRogue: {} launch: - /hyper: + "/hyper": - when: - os: mac store: steam - /hyper.exe: + "/hyper.exe": - when: - os: windows store: steam - /hyper32: + "/hyper32": - when: - bit: 32 os: linux store: steam - /hyper64: + "/hyper64": - when: - bit: 64 os: linux @@ -263158,22 +263931,22 @@ HyperZen Training: installDir: HyperZen Training: {} launch: - /hyperzen-training-linux32: + "/hyperzen-training-linux32": - when: - bit: 32 os: linux store: steam - /hyperzen-training-linux64: + "/hyperzen-training-linux64": - when: - bit: 64 os: linux store: steam - /hyperzen-training-win32.exe: + "/hyperzen-training-win32.exe": - when: - bit: 32 os: windows store: steam - /hyperzen-training-win64.exe: + "/hyperzen-training-win64.exe": - when: - bit: 64 os: windows @@ -263189,7 +263962,7 @@ Hyperbolic Ignition: installDir: Hyperbolic Ignition: {} launch: - /HyperbolicIgnition.exe: + "/HyperbolicIgnition.exe": - when: - os: windows store: steam @@ -263197,17 +263970,17 @@ Hyperbolic Ignition: id: 778120 Hyperbolica: files: - /AppData/LocalLow/CodeParade/Hyperbolica: + "/AppData/LocalLow/CodeParade/Hyperbolica": tags: - save when: - os: windows - /unity3d/CodeParade/Hyperbolica: + "/unity3d/CodeParade/Hyperbolica": tags: - save when: - os: linux - /unity3d/CodeParade/Hyperbolica/perfs: + "/unity3d/CodeParade/Hyperbolica/perfs": tags: - config when: @@ -263215,16 +263988,16 @@ Hyperbolica: installDir: Hyperbolica: {} launch: - /Hyperbolica.app: + "/Hyperbolica.app": - when: - os: mac store: steam - /Hyperbolica.exe: + "/Hyperbolica.exe": - when: - bit: 64 os: windows store: steam - /Hyperbolica.x86_64: + "/Hyperbolica.x86_64": - when: - bit: 64 os: linux @@ -263239,11 +264012,11 @@ Hyperborea: installDir: Hyperborea: {} launch: - /Game.app: + "/Game.app": - when: - os: mac store: steam - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -263253,20 +264026,20 @@ Hyperborean Charter: installDir: Hyperborean Charter: {} launch: - /Expedition.exe: + "/Expedition.exe": - when: - os: windows store: steam steam: id: 987990 -'Hypercharge: Unboxed': +"Hypercharge: Unboxed": files: - /Unboxed/Saved: + "/Unboxed/Saved": tags: - save when: - os: windows - /Unboxed/Saved/Config/WindowsNoEditor: + "/Unboxed/Saved/Config/WindowsNoEditor": tags: - config when: @@ -263274,20 +264047,20 @@ Hyperborean Charter: installDir: HYPERCHARGE Unboxed: {} launch: - /Unboxed.exe: - - arguments: '-nohmd' + "/Unboxed.exe": + - arguments: "-nohmd" when: - os: windows store: steam - /Unboxed.sh: + "/Unboxed.sh": - when: - os: linux store: steam steam: id: 523660 -'Hyperdevotion Noire: Goddess Black Heart': +"Hyperdevotion Noire: Goddess Black Heart": files: - /Idea Factory/Hyperdevotion Noire GBH: + "/Idea Factory/Hyperdevotion Noire GBH": tags: - config - save @@ -263296,19 +264069,19 @@ Hyperborean Charter: installDir: Hyperdevotion Noire: {} launch: - /Noire.exe: + "/Noire.exe": - when: - store: steam steam: id: 415480 Hyperdimension Neptunia Re;Birth 1: files: - '/My Games/Idea Factory International, Inc/Hyperdimension Neptunia Re;Birth1': + "/My Games/Idea Factory International, Inc/Hyperdimension Neptunia Re;Birth1": tags: - save when: - os: windows - '/My Games/Idea Factory International, Inc/Hyperdimension Neptunia Re;Birth1/Neptune.ini': + "/My Games/Idea Factory International, Inc/Hyperdimension Neptunia Re;Birth1/Neptune.ini": tags: - config when: @@ -263318,25 +264091,25 @@ Hyperdimension Neptunia Re;Birth 1: installDir: Neptunia Rebirth1: {} launch: - /NeptuniaReBirth1.exe: + "/NeptuniaReBirth1.exe": - when: - os: windows store: steam steam: id: 282900 -'Hyperdimension Neptunia Re;Birth 2: Sisters Generation': +"Hyperdimension Neptunia Re;Birth 2: Sisters Generation": files: - /Neptune2.ini: + "/Neptune2.ini": tags: - config when: - os: windows - /userdata//351710: + "/userdata//351710": tags: - config when: - store: steam - /userdata//351710/remote: + "/userdata//351710/remote": tags: - save when: @@ -263346,20 +264119,20 @@ Hyperdimension Neptunia Re;Birth 1: installDir: Neptunia Rebirth2: {} launch: - /NeptuniaReBirth2.exe: + "/NeptuniaReBirth2.exe": - when: - os: windows store: steam steam: id: 351710 -'Hyperdimension Neptunia Re;Birth 3: V Generation': +"Hyperdimension Neptunia Re;Birth 3: V Generation": files: - /userdata//353270/remote: + "/userdata//353270/remote": tags: - save when: - store: steam - /userdata//353270/remote/neptune3.ini: + "/userdata//353270/remote/neptune3.ini": tags: - config when: @@ -263374,15 +264147,15 @@ Hyperdimension Neptunia Re;Birth 1: installDir: Hyperdimension Neptunia Re;Birth3: {} launch: - /NeptuniaReBirth3.exe: + "/NeptuniaReBirth3.exe": - when: - os: windows store: steam steam: id: 353270 -'Hyperdimension Neptunia U: Action Unleashed': +"Hyperdimension Neptunia U: Action Unleashed": files: - /savedata: + "/savedata": tags: - save when: @@ -263392,7 +264165,7 @@ Hyperdimension Neptunia Re;Birth 1: installDir: Neptunia U: {} launch: - /Neptunia.exe: + "/Neptunia.exe": - when: - os: windows store: steam @@ -263402,20 +264175,20 @@ Hyperdrive Massacre: installDir: Hyperdrive Massacre: {} launch: - /HDM.app/Contents/MacOS/HDM: + "/HDM.app/Contents/MacOS/HDM": - when: - os: mac store: steam - /HDM.exe: + "/HDM.exe": - when: - os: windows store: steam - /HDM.x86: + "/HDM.x86": - when: - bit: 32 os: linux store: steam - /HDM.x86_64: + "/HDM.x86_64": - when: - bit: 64 os: linux @@ -263429,16 +264202,16 @@ Hypergate: installDir: Hypergate: {} launch: - /bin/hypergate: + "/bin/hypergate": - when: - os: linux store: steam - workingDir: /bin - /bin/hypergate.exe: + workingDir: "/bin" + "/bin/hypergate.exe": - when: - os: windows store: steam - workingDir: /bin + workingDir: "/bin" steam: id: 809530 Hypergun: @@ -263447,7 +264220,7 @@ Hypergun: installDir: HYPERGUN: {} launch: - /Hypergun.exe: + "/Hypergun.exe": - when: - store: steam steam: @@ -263461,22 +264234,22 @@ Hypersensitive Bob: installDir: Hypersensitive Bob: {} launch: - /HypersensitiveBob.app: + "/HypersensitiveBob.app": - when: - os: mac store: steam - /HypersensitiveBob.exe: + "/HypersensitiveBob.exe": - when: - os: windows store: steam - /HypersensitiveBob.x86: - - arguments: '-force-opengl' + "/HypersensitiveBob.x86": + - arguments: "-force-opengl" when: - bit: 32 os: linux store: steam - /HypersensitiveBob.x86_64: - - arguments: '-force-opengl' + "/HypersensitiveBob.x86_64": + - arguments: "-force-opengl" when: - bit: 64 os: linux @@ -263487,7 +264260,7 @@ Hypership Out of Control: installDir: Hypership: {} launch: - /Hypership.exe: + "/Hypership.exe": - when: - os: windows store: steam @@ -263497,7 +264270,7 @@ Hypership Out of Control 2: installDir: Hypership2: {} launch: - /HyperShip2.exe: + "/HyperShip2.exe": - when: - os: windows store: steam @@ -263507,7 +264280,7 @@ Hypersonic Speed Girl: installDir: Hypersonic Speed Girl 超速少女: {} launch: - /bn07.exe: + "/bn07.exe": - when: - store: steam steam: @@ -263516,20 +264289,20 @@ Hyperspace Delivery Service: installDir: Hyperspace Delivery Service: {} launch: - /Hyperspace Delivery Service.exe: + "/Hyperspace Delivery Service.exe": - when: - os: windows store: steam - /HyperspaceDeliveryService.app: + "/HyperspaceDeliveryService.app": - when: - os: mac store: steam - /HyperspaceDeliveryService.x86: + "/HyperspaceDeliveryService.x86": - when: - bit: 32 os: linux store: steam - /HyperspaceDeliveryService.x86_64: + "/HyperspaceDeliveryService.x86_64": - when: - bit: 64 os: linux @@ -263540,21 +264313,21 @@ Hyperspace Dogfights: installDir: Hyperspace Dogfights: {} launch: - /Hyperspace Dogfights: + "/Hyperspace Dogfights": - when: - os: linux store: steam - /Hyperspace Dogfights.exe: + "/Hyperspace Dogfights.exe": - when: - os: windows store: steam steam: id: 842170 -'Hyperspace Invaders II: Pixel Edition': +"Hyperspace Invaders II: Pixel Edition": installDir: HIIIPE: {} launch: - /HIII.exe: + "/HIII.exe": - when: - os: windows store: steam @@ -263564,15 +264337,15 @@ Hyperspace Pinball: installDir: Hyperspace Pinball: {} launch: - /hp.app: + "/hp.app": - when: - os: mac store: steam - /hp.exe: + "/hp.exe": - when: - os: windows store: steam - /hp.x86: + "/hp.x86": - when: - os: linux store: steam @@ -263584,32 +264357,32 @@ Hyperspeed: installDir: Hyperspeed: {} launch: - /Hyperspeed.app: + "/Hyperspeed.app": - when: - os: mac store: steam - /dosbox_linux/daum/launch_hyperspeed_game_daum.sh: + "/dosbox_linux/daum/launch_hyperspeed_game_daum.sh": - when: - os: linux store: steam - workingDir: /dosbox_linux/daum - /dosbox_linux/launch_hyperspeed_game.sh: + workingDir: "/dosbox_linux/daum" + "/dosbox_linux/launch_hyperspeed_game.sh": - when: - os: linux store: steam - workingDir: /dosbox_linux - /dosbox_windows/daum/dosbox.exe: - - arguments: '-conf dosbox_hyperspeed.conf -conf dosbox_hyperspeed_launch_windows.conf -noconsole' + workingDir: "/dosbox_linux" + "/dosbox_windows/daum/dosbox.exe": + - arguments: "-conf dosbox_hyperspeed.conf -conf dosbox_hyperspeed_launch_windows.conf -noconsole" when: - os: windows store: steam - workingDir: /dosbox_windows/daum - /dosbox_windows/dosbox.exe: - - arguments: '-conf dosbox_hyperspeed.conf -conf dosbox_hyperspeed_launch_windows.conf -noconsole' + workingDir: "/dosbox_windows/daum" + "/dosbox_windows/dosbox.exe": + - arguments: "-conf dosbox_hyperspeed.conf -conf dosbox_hyperspeed_launch_windows.conf -noconsole" when: - os: windows store: steam - workingDir: /dosbox_windows + workingDir: "/dosbox_windows" steam: id: 347260 Hyperspeed Fragfest: @@ -263622,7 +264395,7 @@ Hypertrain: installDir: Hypertrain: {} launch: - /hypertrain.exe: + "/hypertrain.exe": - when: - bit: 64 os: windows @@ -263633,23 +264406,23 @@ Hyperun: installDir: Hyperun: {} launch: - /Drift.app: + "/Drift.app": - when: - bit: 64 os: mac store: steam - /Drift.exe: + "/Drift.exe": - when: - bit: 64 os: windows store: steam steam: id: 565390 -'Hyperventila: The Game': +"Hyperventila: The Game": installDir: Hyperventila: {} launch: - /hyperventila.exe: + "/hyperventila.exe": - when: - os: windows store: steam @@ -263657,12 +264430,12 @@ Hyperun: id: 1153570 Hyperviolent: files: - /HV_0_00_012: + "/HV_0_00_012": tags: - save when: - os: windows - /HV_0_00_012/Settings.ini: + "/HV_0_00_012/Settings.ini": tags: - config when: @@ -263675,7 +264448,7 @@ Hyperviolent: installDir: HYPERVIOLENT: {} launch: - /HYPERVIOLENT.exe: + "/HYPERVIOLENT.exe": - when: - os: windows store: steam @@ -263688,11 +264461,11 @@ Hyphen: installDir: Hyphen: {} launch: - /Hyphen: + "/Hyphen": - when: - os: linux store: steam - /Hyphen.exe: + "/Hyphen.exe": - when: - os: windows store: steam @@ -263702,11 +264475,11 @@ Hypnocult: installDir: Hypnocult: {} launch: - /hypnocult.app/Contents/MacOS/hypnocult: + "/hypnocult.app/Contents/MacOS/hypnocult": - when: - os: mac store: steam - /hypnocult.exe: + "/hypnocult.exe": - when: - os: windows store: steam @@ -263716,7 +264489,7 @@ Hypnorain: installDir: Hypnorain: {} launch: - /Hypnorain.exe: + "/Hypnorain.exe": - when: - os: windows store: steam @@ -263726,7 +264499,7 @@ Hypnosis: installDir: Hypnosis: {} launch: - /Hypnosis.exe: + "/Hypnosis.exe": - when: - os: windows store: steam @@ -263734,13 +264507,13 @@ Hypnosis: id: 343430 Hypnospace Outlaw: files: - /Tendershoot/HypnOS: + "/Tendershoot/HypnOS": tags: - save when: - os: windows - os: linux - /Tendershoot/HypnOS/GlobalSettings.sav: + "/Tendershoot/HypnOS/GlobalSettings.sav": tags: - config when: @@ -263751,17 +264524,23 @@ Hypnospace Outlaw: installDir: Hypnospace Outlaw: {} launch: - /HypnOS: + "/HypnOS": - when: - bit: 32 os: linux store: steam - /HypnOS.app: + - bit: 64 + os: linux + store: steam + "/HypnOS.app": - when: - os: mac store: steam - /HypnOS.exe: + "/HypnOS.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam @@ -263771,15 +264550,15 @@ Hyposphere: installDir: Hyposphere: {} launch: - /Engine/Binaries/Linux/UE4Game-Linux-Shipping: + "/Engine/Binaries/Linux/UE4Game-Linux-Shipping": - when: - os: linux store: steam - /Hyposphere.app: + "/Hyposphere.app": - when: - os: mac store: steam - /HyposphereOne.exe: + "/HyposphereOne.exe": - when: - os: windows store: steam @@ -263789,15 +264568,15 @@ Hypoxia: installDir: Memorial Park: {} launch: - /Memorial Park of Hypoxia.exe: + "/Memorial Park of Hypoxia.exe": - when: - os: windows store: steam - /_Linux/Memorial Park of Hypoxia.x86_64: + "/_Linux/Memorial Park of Hypoxia.x86_64": - when: - os: linux store: steam - /_Macc.app/Contents/MacOS/Memorial Park of Hypoxia: + "/_Macc.app/Contents/MacOS/Memorial Park of Hypoxia": - when: - os: mac store: steam @@ -263807,20 +264586,20 @@ Hypt: installDir: Hypt: {} launch: - /Hypt.app/Contents/MacOS/Hypt: + "/Hypt.app/Contents/MacOS/Hypt": - when: - os: mac store: steam - /Hypt.exe: + "/Hypt.exe": - when: - os: windows store: steam - /Hypt.x86: + "/Hypt.x86": - when: - bit: 32 os: linux store: steam - /Hypt.x86_64: + "/Hypt.x86_64": - when: - bit: 64 os: linux @@ -263831,26 +264610,26 @@ Hyspherical 2: installDir: Hyspherical 2: {} launch: - /game.app/Contents/MacOS/game: + "/game.app/Contents/MacOS/game": - when: - os: mac store: steam - /game.exe: + "/game.exe": - when: - bit: 64 os: windows store: steam - /game.x86: + "/game.x86": - when: - bit: 32 os: linux store: steam - /game.x86_64: + "/game.x86_64": - when: - bit: 64 os: linux store: steam - /game_x86.exe: + "/game_x86.exe": - when: - bit: 32 os: windows @@ -263861,18 +264640,18 @@ Hyss: installDir: Hyss: {} launch: - /Hyss.exe: + "/Hyss.exe": - when: - bit: 64 os: windows store: steam steam: id: 982540 -I (Don't) Hate Hentai Puzzles: +"I (Don't) Hate Hentai Puzzles": installDir: - I (DON'T) HATE HENTAI PUZZLES: {} + "I (DON'T) HATE HENTAI PUZZLES": {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -263883,17 +264662,17 @@ I AM.exe: id: 701410 I Am Alive: files: - /src/System/UserSettings.ini: + "/src/System/UserSettings.ini": tags: - config when: - os: windows - /IAmAlive/Save: + "/IAmAlive/Save": tags: - save when: - os: windows - /IAmAlive/Save/IAA_Profile/profile.sav: + "/IAmAlive/Save/IAA_Profile/profile.sav": tags: - config when: @@ -263901,16 +264680,16 @@ I Am Alive: installDir: I am Alive: {} launch: - /src/SYSTEM/iamalive_game.exe: - - arguments: '-console' + "/src/SYSTEM/iamalive_game.exe": + - arguments: "-console" when: - store: steam - workingDir: /src/SYSTEM + workingDir: "/src/SYSTEM" steam: id: 214250 I Am Bread: files: - /userdata//327890/remote/save.dat: + "/userdata//327890/remote/save.dat": tags: - save when: @@ -263918,27 +264697,27 @@ I Am Bread: installDir: iambread: {} launch: - /iambread.app: + "/iambread.app": - when: - os: mac store: steam - - arguments: '-safemode' + - arguments: "-safemode" when: - os: mac store: steam - /iambread.exe: + "/iambread.exe": - when: - os: windows store: steam - - arguments: '-force-d3d9' + - arguments: "-force-d3d9" when: - os: windows store: steam - - arguments: '-force-opengl' + - arguments: "-force-opengl" when: - os: windows store: steam - - arguments: '-safemode' + - arguments: "-safemode" when: - os: windows store: steam @@ -263952,7 +264731,7 @@ I Am Caligula: installDir: I Am Caligula: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -263962,19 +264741,19 @@ I Am Data: installDir: Grid Wars: {} launch: - /GridWars.exe: + "/GridWars.exe": - when: - store: steam steam: id: 1133540 I Am Dead: files: - /IAD/Saved/Config/WindowsNoEditor: + "/IAD/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /IAD/Saved/SaveGames: + "/IAD/Saved/SaveGames": tags: - save when: @@ -263982,11 +264761,11 @@ I Am Dead: installDir: I Am Dead: {} launch: - /IAmDeadMac/IAD.app: + "/IAmDeadMac/IAD.app": - when: - os: mac store: steam - /IAmDeadPC/IAD.exe: + "/IAmDeadPC/IAD.exe": - when: - os: windows store: steam @@ -263994,7 +264773,7 @@ I Am Dead: id: 951750 I Am Fish: files: - Low/Bossa Studios/IAmFish/SaveData: + "Low/Bossa Studios/IAmFish/SaveData": tags: - save when: @@ -264002,7 +264781,7 @@ I Am Fish: installDir: IAmFish: {} launch: - /IAmFish.exe: + "/IAmFish.exe": - when: - os: windows store: steam @@ -264012,7 +264791,7 @@ I Am Gooey: installDir: I Am Gooey: {} launch: - /iag.exe: + "/iag.exe": - when: - store: steam steam: @@ -264020,14 +264799,14 @@ I Am Gooey: I Am Jesus Christ: steam: id: 1198970 -'I Am Jesus Christ: Prologue': +"I Am Jesus Christ: Prologue": files: - /Level1/Saved/Config/Windows: + "/Level1/Saved/Config/Windows": tags: - config when: - os: windows - /Level1/Saved/SaveGames: + "/Level1/Saved/SaveGames": tags: - save when: @@ -264035,23 +264814,23 @@ I Am Jesus Christ: installDir: I Am Jesus Christ Prologue: {} launch: - /Level1.exe: + "/Level1.exe": - when: - os: windows store: steam steam: id: 1509650 -'I Am Not a Monster: First Contact': +"I Am Not a Monster: First Contact": gog: id: 1546940267 installDir: ImNotaMonster: {} launch: - /ImNotAMonster.app: + "/ImNotAMonster.app": - when: - os: mac store: steam - /ImNotAMonster.exe: + "/ImNotAMonster.exe": - when: - os: windows store: steam @@ -264065,7 +264844,7 @@ I Am Overburdened: installDir: Overburdened: {} launch: - /OverburdenedSteam.exe: + "/OverburdenedSteam.exe": - when: - os: windows store: steam @@ -264073,12 +264852,12 @@ I Am Overburdened: id: 690560 I Am Setsuna: files: - /userdata//441830: + "/userdata//441830": tags: - save when: - store: steam - /My Games/Setsuna: + "/My Games/Setsuna": tags: - config when: @@ -264086,7 +264865,7 @@ I Am Setsuna: installDir: SETSUNA: {} launch: - /SETSUNA.exe: + "/SETSUNA.exe": - when: - os: windows store: steam @@ -264096,11 +264875,11 @@ I Am Vegend - Zombiegeddon: installDir: I Am Vegend: {} launch: - /IAmVegend.app/Contents/MacOS/I Am Vegend: + "/IAmVegend.app/Contents/MacOS/I Am Vegend": - when: - os: mac store: steam - /IAmVegend.exe: + "/IAmVegend.exe": - when: - os: windows store: steam @@ -264110,7 +264889,7 @@ I Am Your President: installDir: I Am Your President: {} launch: - /I Am Your President.exe: + "/I Am Your President.exe": - when: - os: windows store: steam @@ -264120,15 +264899,15 @@ I Am the Hero: installDir: I Am The Hero: {} launch: - /I_Am_The_Hero.app: + "/I_Am_The_Hero.app": - when: - os: mac store: steam - /I_Am_The_Hero.exe: + "/I_Am_The_Hero.exe": - when: - os: windows store: steam - /I_Am_The_Hero.x86: + "/I_Am_The_Hero.x86": - when: - os: linux store: steam @@ -264141,19 +264920,19 @@ I Can See the Future: installDir: I Can See the Future: {} launch: - /I CAN SEE THE FUTURE.exe: + "/I CAN SEE THE FUTURE.exe": - when: - store: steam steam: id: 708920 -I Can't Believe It's Not Gambling: +"I Can't Believe It's Not Gambling": files: - /.config/unity3d/MutantEntertainmentStudios/5.6ICBING/gameSave: + "/.config/unity3d/MutantEntertainmentStudios/5.6ICBING/gameSave": tags: - save when: - os: linux - /.config/unity3d/MutantEntertainmentStudios/5.6ICBING/prefs: + "/.config/unity3d/MutantEntertainmentStudios/5.6ICBING/prefs": tags: - config when: @@ -264161,46 +264940,48 @@ I Can't Believe It's Not Gambling: installDir: Gyroplosion: {} launch: - /ItReallyIsGambling.exe: + "/ItReallyIsGambling.exe": - when: - bit: 32 os: windows store: steam - /itreallyisgambling.x86: + "/itreallyisgambling.x86": - when: - bit: 32 os: linux store: steam - /itreallyisgambling.x86_64: + "/itreallyisgambling.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 733990 -I Can't Believe It's Not Gambling 2(K): +"I Can't Believe It's Not Gambling 2(K)": installDir: - I Can't Believe It's Not Gambling 2K GOTY Edition: {} + "I Can't Believe It's Not Gambling 2K GOTY Edition": {} launch: - /ICBING2k.exe: + "/ICBING2k.exe": - when: - os: windows store: steam - /ICBING2k.x86_64: + "/ICBING2k.x86_64": - when: - os: linux store: steam steam: id: 1157790 -'I Can''t Escape: Darkness': +"I Can't Escape: Darkness": installDir: - I Can't Escape Darkness: {} + "I Can't Escape Darkness": {} launch: - /ICEDarkness: + "/ICEDarkness": - when: + - os: mac + store: steam - os: linux store: steam - /ICEDarkness.exe: + "/ICEDarkness.exe": - when: - os: windows store: steam @@ -264208,7 +264989,7 @@ I Can't Believe It's Not Gambling 2(K): id: 346090 I Expect You to Die: files: - /AppData/LocalLow/Schell Games/IEYTD: + "/AppData/LocalLow/Schell Games/IEYTD": tags: - save when: @@ -264223,7 +265004,7 @@ I Expect You to Die: id: 587430 I Expect You to Die 2: files: - /appdata/locallow/Schell Games/I Expect You To Die 2: + "/appdata/locallow/Schell Games/I Expect You To Die 2": tags: - save when: @@ -264234,7 +265015,7 @@ I Expect You to Die 2: id: 1499120 I Fell from Grace: files: - /AppData/LocalLow/Deep Taiga/IFFG: + "/AppData/LocalLow/Deep Taiga/IFFG": tags: - save when: @@ -264242,7 +265023,7 @@ I Fell from Grace: installDir: IFFG: {} launch: - /IFFG.exe: + "/IFFG.exe": - when: - os: windows store: steam @@ -264256,20 +265037,20 @@ I Get This Call Every Day: installDir: IGTCED: {} launch: - /IGTCED.exe: + "/IGTCED.exe": - when: - os: windows store: steam steam: id: 291090 -'I Hate Heroes: Rocket Man': +"I Hate Heroes: Rocket Man": installDir: I Hate Heroes Rocket Man: {} steam: id: 791050 I Hate Running Backwards: files: - /AppData/LocalLow/Binx Interactive/I Hate Running Backwards: + "/AppData/LocalLow/Binx Interactive/I Hate Running Backwards": tags: - save when: @@ -264277,12 +265058,12 @@ I Hate Running Backwards: installDir: I Hate Running Backwards: {} launch: - /I Hate Running Backwards.exe: + "/I Hate Running Backwards.exe": - when: - bit: 64 os: windows store: steam - /I Hate Running Backwards.x86_64: + "/I Hate Running Backwards.x86_64": - when: - bit: 64 os: linux @@ -264301,28 +265082,28 @@ I Hate Santa: I Have Lived: steam: id: 1200700 -'I Have Low Stats But My Class Is ''Leader'', So I Recruited Everyone I Know To Fight The Dark Lord': +"I Have Low Stats But My Class Is 'Leader', So I Recruited Everyone I Know To Fight The Dark Lord": installDir: - 'I Have Low Stats But My Class Is Leader, So I Recruited Everyone I Know To Fight The Dark Lord': {} + "I Have Low Stats But My Class Is Leader, So I Recruited Everyone I Know To Fight The Dark Lord": {} launch: - /Game.app: + "/Game.app": - when: - os: mac store: steam - /Game.exe: + "/Game.exe": - when: - os: windows store: steam steam: id: 1176040 -'I Have No Mouth, and I Must Scream': +"I Have No Mouth, and I Must Scream": files: - /SCREAM: + "/SCREAM": tags: - config when: - os: windows - /SCREAM/Scream.sav: + "/SCREAM/Scream.sav": tags: - save when: @@ -264332,63 +265113,63 @@ I Have Lived: installDir: IHNMAIMS: {} launch: - /ScummVM_Linux/launch_ihnmaims_opengl.sh: + "/ScummVM_Linux/launch_ihnmaims_opengl.sh": - when: - os: linux store: steam - workingDir: /ScummVM_Linux - /ScummVM_Linux/launch_ihnmaims_safe.sh: + workingDir: "/ScummVM_Linux" + "/ScummVM_Linux/launch_ihnmaims_safe.sh": - when: - os: linux store: steam - workingDir: /ScummVM_Linux - /ScummVM_Mac/ScummVM.app/Contents/MacOS/scummvm: - - arguments: '-c scummvm-ihnmaims-opengl.ini ihnm' + workingDir: "/ScummVM_Linux" + "/ScummVM_Mac/ScummVM.app/Contents/MacOS/scummvm": + - arguments: "-c scummvm-ihnmaims-opengl.ini ihnm" when: - os: mac store: steam - workingDir: /ScummVM_Mac - - arguments: '-c scummvm-ihnmaims-safe.ini ihnm' + workingDir: "/ScummVM_Mac" + - arguments: "-c scummvm-ihnmaims-safe.ini ihnm" when: - os: mac store: steam - workingDir: /ScummVM_Mac - /ScummVM_Windows/scummvm.exe: - - arguments: '--no-console -c \"scummvm-ihnmaims-opengl.ini\" ihnm' + workingDir: "/ScummVM_Mac" + "/ScummVM_Windows/scummvm.exe": + - arguments: "--no-console -c \\\"scummvm-ihnmaims-opengl.ini\\\" ihnm" when: - os: windows store: steam - workingDir: /ScummVM_Windows - - arguments: '--no-console -c \"scummvm-ihnmaims-safe.ini\" ihnm' + workingDir: "/ScummVM_Windows" + - arguments: "--no-console -c \\\"scummvm-ihnmaims-safe.ini\\\" ihnm" when: - os: windows store: steam - workingDir: /ScummVM_Windows + workingDir: "/ScummVM_Windows" steam: id: 245390 I Know Everything: installDir: I_Know_Everything: {} launch: - /ike.app/Contents/MacOS/ike: - - arguments: 'res://main.tscn' + "/ike.app/Contents/MacOS/ike": + - arguments: "res://main.tscn" when: - os: mac store: steam - workingDir: /ike.app/Contents/Resources - /ike.exe: - - arguments: 'res://main.tscn' + workingDir: "/ike.app/Contents/Resources" + "/ike.exe": + - arguments: "res://main.tscn" when: - os: windows store: steam - /ike.x86: - - arguments: 'res://main.tscn' + "/ike.x86": + - arguments: "res://main.tscn" when: - bit: 32 os: linux store: steam - /ike.x86_64: - - arguments: 'res://main.tscn' + "/ike.x86_64": + - arguments: "res://main.tscn" when: - bit: 64 os: linux @@ -264399,7 +265180,7 @@ I Know a Tale: installDir: I Know a Tale: {} launch: - /IKnowATale.exe: + "/IKnowATale.exe": - when: - os: windows store: steam @@ -264409,7 +265190,7 @@ I LIKE THE FLOWERS: installDir: I LIKE THE FLOWERS: {} launch: - /flower.exe: + "/flower.exe": - when: - store: steam steam: @@ -264417,9 +265198,9 @@ I LIKE THE FLOWERS: I Love My Brother: steam: id: 769210 -'I Love You, Colonel Sanders!': +"I Love You, Colonel Sanders!": files: - /ILYCS_Data/StreamingAssets/saves: + "/ILYCS_Data/StreamingAssets/saves": tags: - save when: @@ -264427,11 +265208,11 @@ I Love My Brother: installDir: ILYCS: {} launch: - /ILYCS.app/Contents/MacOS/ILYCS: + "/ILYCS.app/Contents/MacOS/ILYCS": - when: - os: mac store: steam - /ILYCS.exe: + "/ILYCS.exe": - when: - os: windows store: steam @@ -264441,11 +265222,11 @@ I May Die!: installDir: I was rebuilt: {} launch: - /I was rebuilt.exe: + "/I was rebuilt.exe": - when: - os: windows store: steam - /I_was_rebuilt: + "/I_was_rebuilt": - when: - os: linux store: steam @@ -264455,7 +265236,7 @@ I Misteri di Maggia: installDir: I Misteri di Maggia: {} launch: - /Maggia.exe: + "/Maggia.exe": - when: - os: windows store: steam @@ -264470,7 +265251,7 @@ I See You: installDir: I_see_you: {} launch: - /I_see_you.exe: + "/I_see_you.exe": - when: - os: windows store: steam @@ -264483,11 +265264,11 @@ I Shall Remain: installDir: IShallRemain: {} launch: - /System/IShallRemain.exe: + "/System/IShallRemain.exe": - when: - os: windows store: steam - workingDir: /System + workingDir: "/System" steam: id: 293460 I Support Breast Cancer Research: @@ -264497,7 +265278,7 @@ I Walk Among Zombies Vol. 1: installDir: I Walk Among Zombies: {} launch: - /zombie.exe: + "/zombie.exe": - when: - os: windows store: steam @@ -264507,7 +265288,7 @@ I Walk Among Zombies Vol. 2: installDir: I Walk Among Zombies Vol. 2: {} launch: - /zombie2.exe: + "/zombie2.exe": - when: - store: steam steam: @@ -264519,7 +265300,7 @@ I Wanna Be the Cat: installDir: I wanna be The Cat: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -264529,7 +265310,7 @@ I Wanna Brother: installDir: I Wanna Brother: {} launch: - /I Wanna Brother.exe: + "/I Wanna Brother.exe": - when: - os: windows store: steam @@ -264537,12 +265318,12 @@ I Wanna Brother: id: 1111270 I Wanna Maker: files: - /IWM: + "/IWM": tags: - config when: - os: windows - /IWM/config.ini: + "/IWM/config.ini": tags: - config when: @@ -264550,7 +265331,7 @@ I Wanna Maker: installDir: I Wanna Maker: {} launch: - /I Wanna Maker.exe: + "/I Wanna Maker.exe": - when: - os: windows store: steam @@ -264563,7 +265344,7 @@ I Want To Be Human: installDir: I WANT TO BE HUMAN: {} launch: - /IWTBH.exe: + "/IWTBH.exe": - when: - store: steam steam: @@ -264572,7 +265353,7 @@ I Want Toilet!!!!!!: installDir: I Want Toilet!!!!!!: {} launch: - /IWT.exe: + "/IWT.exe": - when: - bit: 64 os: windows @@ -264581,7 +265362,7 @@ I Want Toilet!!!!!!: id: 654840 I Was a Teenage Exocolonist: files: - /Exocolonist: + "/Exocolonist": tags: - save when: @@ -264595,15 +265376,15 @@ I Was a Teenage Exocolonist: installDir: Exocolonist: {} launch: - /Exocolonist.app/Contents/MacOS/Exocolonist: + "/Exocolonist.app/Contents/MacOS/Exocolonist": - when: - os: mac store: steam - /Exocolonist.exe: + "/Exocolonist.exe": - when: - os: windows store: steam - /Exocolonist.x86_64: + "/Exocolonist.x86_64": - when: - os: linux store: steam @@ -264613,7 +265394,7 @@ I Will Be Your Eyes: installDir: I Will Be Your Eyes: {} launch: - /iwbye.exe: + "/iwbye.exe": - when: - os: windows store: steam @@ -264623,31 +265404,33 @@ I Will Escape: installDir: I Will Escape: {} launch: - /IWillEscape_launcher.exe: + "/IWillEscape_launcher.exe": - when: - os: windows store: steam - /IwillEscapeLauncher.sh: + "/IwillEscapeLauncher.sh": - when: - os: mac store: steam - /LaunchConfig: + "/LaunchConfig": - when: - os: mac store: steam - /LinuxSteamLauncher: + "/LinuxSteamLauncher": - when: - os: linux store: steam - /configurator.jar: + "/configurator.jar": - when: - os: windows store: steam + - os: linux + store: steam steam: id: 324240 -'I am Weapon: Revival': +"I am Weapon: Revival": files: - /AppData/Krealit/IAmWeaponRevival: + "/AppData/Krealit/IAmWeaponRevival": tags: - config - save @@ -264656,11 +265439,11 @@ I Will Escape: installDir: I am weapon Revival: {} launch: - /IAmWeaponRevival.app: + "/IAmWeaponRevival.app": - when: - os: mac store: steam - /IAmWeaponRevival.exe: + "/IAmWeaponRevival.exe": - when: - os: windows store: steam @@ -264671,7 +265454,7 @@ I am Your Principal: id: 1176330 I am an Air Traffic Controller 4: files: - /TechnoBrain/ATC4: + "/TechnoBrain/ATC4": tags: - save when: @@ -264679,8 +265462,8 @@ I am an Air Traffic Controller 4: installDir: ATC4_g: {} launch: - /AXA.exe: - - arguments: TITLE\\ATC4TITLE.axa + "/AXA.exe": + - arguments: "TITLE\\\\ATC4TITLE.axa" when: - os: windows store: steam @@ -264690,7 +265473,7 @@ I and Me: installDir: I and Me: {} launch: - /I and Me.exe: + "/I and Me.exe": - when: - os: windows store: steam @@ -264698,12 +265481,12 @@ I and Me: id: 399600 I commissioned some bees: files: - /ICommissionedSomeBees: + "/ICommissionedSomeBees": tags: - config when: - os: windows - /ICommissionedSomeBees/Progress: + "/ICommissionedSomeBees/Progress": tags: - save when: @@ -264711,7 +265494,7 @@ I commissioned some bees: installDir: ICommissionedSomeBees: {} launch: - /ICommissionedSomeBees.exe: + "/ICommissionedSomeBees.exe": - when: - os: windows store: steam @@ -264719,12 +265502,12 @@ I commissioned some bees: id: 1996420 I commissioned some bees 0: files: - /ICommissionedSomeBees0: + "/ICommissionedSomeBees0": tags: - config when: - os: windows - /ICommissionedSomeBees0/Progress: + "/ICommissionedSomeBees0/Progress": tags: - save when: @@ -264732,7 +265515,7 @@ I commissioned some bees 0: installDir: ICommissionedSomeBees0: {} launch: - /ICommissionedSomeBees0.exe: + "/ICommissionedSomeBees0.exe": - when: - os: windows store: steam @@ -264740,12 +265523,12 @@ I commissioned some bees 0: id: 2250060 I commissioned some bees 2: files: - /ICommissionedSomeBees2: + "/ICommissionedSomeBees2": tags: - config when: - os: windows - /ICommissionedSomeBees2/Progress: + "/ICommissionedSomeBees2/Progress": tags: - save when: @@ -264753,7 +265536,7 @@ I commissioned some bees 2: installDir: ICommissionedSomeBees2: {} launch: - /ICommissionedSomeBees2.exe: + "/ICommissionedSomeBees2.exe": - when: - os: windows store: steam @@ -264761,12 +265544,12 @@ I commissioned some bees 2: id: 2027000 I commissioned some bees 3: files: - /ICommissionedSomeBees3: + "/ICommissionedSomeBees3": tags: - config when: - os: windows - /ICommissionedSomeBees3/Progress: + "/ICommissionedSomeBees3/Progress": tags: - save when: @@ -264774,7 +265557,7 @@ I commissioned some bees 3: installDir: I commissioned some bees 3: {} launch: - /ICommissionedSomeBees3.exe: + "/ICommissionedSomeBees3.exe": - when: - os: windows store: steam @@ -264782,12 +265565,12 @@ I commissioned some bees 3: id: 2069110 I commissioned some bees 4: files: - /ICommissionedSomeBees4: + "/ICommissionedSomeBees4": tags: - config when: - os: windows - /ICommissionedSomeBees4/Progress: + "/ICommissionedSomeBees4/Progress": tags: - save when: @@ -264795,7 +265578,7 @@ I commissioned some bees 4: installDir: ICommissionedSomeBees4: {} launch: - /ICommissionedSomeBees4.exe: + "/ICommissionedSomeBees4.exe": - when: - os: windows store: steam @@ -264803,12 +265586,12 @@ I commissioned some bees 4: id: 2086180 I commissioned some bees 5: files: - /ICommissionedSomeBees5: + "/ICommissionedSomeBees5": tags: - config when: - os: windows - /ICommissionedSomeBees5/Progress: + "/ICommissionedSomeBees5/Progress": tags: - save when: @@ -264816,7 +265599,7 @@ I commissioned some bees 5: installDir: ICommissionedSomeBees5: {} launch: - /ICommissionedSomeBees5.exe: + "/ICommissionedSomeBees5.exe": - when: - os: windows store: steam @@ -264824,12 +265607,12 @@ I commissioned some bees 5: id: 2087470 I commissioned some bees 6: files: - /ICommissionedSomeBees6: + "/ICommissionedSomeBees6": tags: - config when: - os: windows - /ICommissionedSomeBees6/Progress: + "/ICommissionedSomeBees6/Progress": tags: - save when: @@ -264837,7 +265620,7 @@ I commissioned some bees 6: installDir: ICommissionedSomeBees6: {} launch: - /ICommissionedSomeBees6.exe: + "/ICommissionedSomeBees6.exe": - when: - os: windows store: steam @@ -264845,12 +265628,12 @@ I commissioned some bees 6: id: 2087480 I commissioned some bees 7: files: - /ICommissionedSomeBees7: + "/ICommissionedSomeBees7": tags: - config when: - os: windows - /ICommissionedSomeBees7/Progress: + "/ICommissionedSomeBees7/Progress": tags: - save when: @@ -264858,7 +265641,7 @@ I commissioned some bees 7: installDir: ICommissionedSomeBees7: {} launch: - /ICommissionedSomeBees7.exe: + "/ICommissionedSomeBees7.exe": - when: - os: windows store: steam @@ -264871,7 +265654,7 @@ I got a cat maid: installDir: I got a cat maid: {} launch: - /I got a cat maid.exe: + "/I got a cat maid.exe": - when: - os: windows store: steam @@ -264881,7 +265664,7 @@ I hate this game: installDir: I hate this game: {} launch: - /I hate this game.exe: + "/I hate this game.exe": - when: - os: windows store: steam @@ -264891,21 +265674,21 @@ I love the money: installDir: I love the money: {} launch: - /I love the money.app: + "/I love the money.app": - when: - os: mac store: steam - /I love the money.exe: + "/I love the money.exe": - when: - os: windows store: steam steam: id: 947270 -'I must kill...: Fresh Meat': +"I must kill...: Fresh Meat": installDir: I must kill... Fresh Meat: {} launch: - /freshmeat.exe: + "/freshmeat.exe": - when: - os: windows store: steam @@ -264920,7 +265703,7 @@ I saw IT: installDir: I saw IT: {} launch: - /ISAW_IT.exe: + "/ISAW_IT.exe": - when: - os: windows store: steam @@ -264930,15 +265713,15 @@ I was here: installDir: I was here: {} launch: - /I Was Here(Mac).app/Contents/MacOS/I Was Here(Mac): + "/I Was Here(Mac).app/Contents/MacOS/I Was Here(Mac)": - when: - os: mac store: steam - /I Was Here.exe: + "/I Was Here.exe": - when: - os: windows store: steam - /I Was Here.x86_64: + "/I Was Here.x86_64": - when: - os: linux store: steam @@ -264946,12 +265729,12 @@ I was here: id: 707960 I will eat you: files: - /ServerProject/Saved/Config/WindowsNoEditor: + "/ServerProject/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /ServerProject/Saved/SaveGames: + "/ServerProject/Saved/SaveGames": tags: - save when: @@ -264959,7 +265742,7 @@ I will eat you: installDir: Iwilleatyou: {} launch: - /ServerProject.exe: + "/ServerProject.exe": - when: - bit: 64 os: windows @@ -264969,55 +265752,55 @@ I will eat you: I ♥ You!: steam: id: 920810 -I'm Awesome: +"I'm Awesome": installDir: - I'm Awesome: {} + "I'm Awesome": {} launch: - /I'mAwesome.exe: + "/I'mAwesome.exe": - when: - os: windows store: steam - /ImAwesome.app/Contents/MacOS/ImAwesome: + "/ImAwesome.app/Contents/MacOS/ImAwesome": - when: - os: mac store: steam steam: id: 615490 -I'm Calling The Cops!: +"I'm Calling The Cops!": installDir: - I'm Calling The Cops!: {} + "I'm Calling The Cops!": {} launch: - /Build/I'm Calling the Cops!.exe: + "/Build/I'm Calling the Cops!.exe": - when: - bit: 64 os: windows store: steam steam: id: 1225940 -I'm Hungry: +"I'm Hungry": installDir: - I'm Hungry: {} + "I'm Hungry": {} steam: id: 1037970 -I'm Lost: +"I'm Lost": installDir: - I'm Lost: {} + "I'm Lost": {} launch: - /fo/Dreaming.exe: + "/fo/Dreaming.exe": - when: - bit: 64 os: windows store: steam steam: id: 737530 -I'm Not Alone: +"I'm Not Alone": files: - /*.cfg: + "/*.cfg": tags: - config when: - os: windows - /*.txt: + "/*.txt": tags: - config when: @@ -265025,131 +265808,131 @@ I'm Not Alone: installDir: Im not Alone: {} launch: - /INA.exe: + "/INA.exe": - when: - store: steam steam: id: 50800 -I'm Still Here (Cozy Pitch): +"I'm Still Here (Cozy Pitch)": steam: id: 1017760 -I'm Titanium: +"I'm Titanium": installDir: - I'm Titanium: {} + "I'm Titanium": {} launch: - /ImTitanium.exe: + "/ImTitanium.exe": - when: - bit: 64 os: windows store: steam steam: id: 597990 -I'm Turkey: +"I'm Turkey": steam: id: 995740 -I'm an adventurer: +"I'm an adventurer": installDir: - I'm an Adventurer: {} + "I'm an Adventurer": {} launch: - /I'mAdventurer.exe: + "/I'mAdventurer.exe": - when: - os: windows store: steam steam: id: 953700 -I'm from area 51: +"I'm from area 51": installDir: - I'm from zone 51: {} + "I'm from zone 51": {} launch: - /I'm from zone 51.exe: + "/I'm from zone 51.exe": - when: - os: windows store: steam steam: id: 1126550 -I'm looking for 3024 people: +"I'm looking for 3024 people": installDir: - I'm looking for 3024 people: {} + "I'm looking for 3024 people": {} launch: - /I'm looking for 3024 people.exe: + "/I'm looking for 3024 people.exe": - when: - bit: 64 os: windows store: steam steam: id: 1946010 -I'm on Observation Duty: +"I'm on Observation Duty": installDir: - I'm on Observation Duty: {} + "I'm on Observation Duty": {} steam: id: 1046820 -'I''m on Observation Duty 2: Timothy''s Revenge': +"I'm on Observation Duty 2: Timothy's Revenge": installDir: - I'm on Observation Duty 2 Timothy's Revenge: {} + "I'm on Observation Duty 2 Timothy's Revenge": {} launch: - /I'm on Observation Duty 2 Timothy's Revenge.app: + "/I'm on Observation Duty 2 Timothy's Revenge.app": - when: - os: mac store: steam - /I'm on Observation Duty 2 Timothy's Revenge.exe: + "/I'm on Observation Duty 2 Timothy's Revenge.exe": - when: - os: windows store: steam - /I'm on Observation Duty 2 Timothy's Revenge.x86_64: + "/I'm on Observation Duty 2 Timothy's Revenge.x86_64": - when: - os: linux store: steam steam: id: 1257810 -I'm on Observation Duty 3: +"I'm on Observation Duty 3": installDir: - I'm on Observation Duty 3: {} + "I'm on Observation Duty 3": {} launch: - /I'm on Observation Duty 3.app: + "/I'm on Observation Duty 3.app": - when: - os: mac store: steam - /I'm on Observation Duty 3.exe: + "/I'm on Observation Duty 3.exe": - when: - os: windows store: steam - /I'm on Observation Duty 3.x86_64: + "/I'm on Observation Duty 3.x86_64": - when: - os: linux store: steam steam: id: 1458560 -I'm the Koala: +"I'm the Koala": installDir: - I'm the Koala: {} + "I'm the Koala": {} launch: - /I'm the Koala.exe: + "/I'm the Koala.exe": - when: - os: windows store: steam steam: id: 966450 -'I, Cyborg': +"I, Cyborg": installDir: - 'I, Cyborg': {} + "I, Cyborg": {} launch: - /I Cyborg.app/Contents/MacOS/I Cyborg: + "/I Cyborg.app/Contents/MacOS/I Cyborg": - when: - os: mac store: steam - /ICyborg: + "/ICyborg": - when: - os: linux store: steam - /ICyborg.exe: + "/ICyborg.exe": - when: - os: windows store: steam steam: id: 868780 -'I, Dracula: Genesis': +"I, Dracula: Genesis": files: - /IDraculaGenesis: + "/IDraculaGenesis": tags: - config when: @@ -265157,35 +265940,35 @@ I'm the Koala: installDir: IDraculaGenesis: {} launch: - /idracula_beta.exe: + "/idracula_beta.exe": - when: - store: steam steam: id: 1175360 -'I, Gladiator': +"I, Gladiator": installDir: - 'I, Gladiator': {} + "I, Gladiator": {} launch: - /IGladiator.exe: + "/IGladiator.exe": - when: - store: steam steam: id: 339700 -'I, Hope': +"I, Hope": installDir: IHope: {} launch: - /I_Hope.exe: + "/I_Hope.exe": - when: - os: windows store: steam steam: id: 448960 -'I, Zombie': +"I, Zombie": installDir: - 'I, Zombie': {} + "I, Zombie": {} launch: - '/I, Zombie.exe': + "/I, Zombie.exe": - when: - os: windows store: steam @@ -265195,49 +265978,49 @@ I-Fluid: installDir: I-Fluid: {} launch: - /I-Fluid.exe: + "/I-Fluid.exe": - when: - store: steam steam: id: 23200 I-Ninja: files: - /Configuration/options.dat: + "/Configuration/options.dat": tags: - config when: - os: windows - /Saved Games: + "/Saved Games": tags: - save when: - os: windows -'I.Cartel: Life of a Criminal': +"I.Cartel: Life of a Criminal": steam: id: 1041250 I.F.O: installDir: I.F.O: {} launch: - /IFO.app: + "/IFO.app": - when: - bit: 64 os: mac store: steam - /IFO.exe: + "/IFO.exe": - when: - os: windows store: steam steam: id: 661820 -'I.G.I.-2: Covert Strike': +"I.G.I.-2: Covert Strike": files: - /config.qvm: + "/config.qvm": tags: - config when: - os: windows - /pc/savegames: + "/pc/savegames": tags: - save when: @@ -265248,7 +266031,7 @@ IACTURA: installDir: IACTURA: {} launch: - /Iactura.exe: + "/Iactura.exe": - when: - os: windows store: steam @@ -265258,15 +266041,15 @@ IBomber Attack: installDir: iBomber Attack: {} launch: - /iBomber Attack.app/Contents/MacOS/iBomber Attack: + "/iBomber Attack.app/Contents/MacOS/iBomber Attack": - when: - os: mac store: steam - /iBomberAttack: + "/iBomberAttack": - when: - os: linux store: steam - /iBomberAttack.exe: + "/iBomberAttack.exe": - when: - os: windows store: steam @@ -265274,7 +266057,7 @@ IBomber Attack: id: 218660 IBomber Defense: files: - /userdata//104000/remote/gamesave.dat: + "/userdata//104000/remote/gamesave.dat": tags: - config - save @@ -265283,11 +266066,11 @@ IBomber Defense: installDir: ibomber defense: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam - /iBomber Defense.app: + "/iBomber Defense.app": - when: - os: mac store: steam @@ -265297,15 +266080,15 @@ IBomber Defense Pacific: installDir: ibomber defense pacific: {} launch: - /iBomber Defense Pacific.app: + "/iBomber Defense Pacific.app": - when: - os: mac store: steam - /iBomberDefensePacific: + "/iBomberDefensePacific": - when: - os: linux store: steam - /iBomberDefensePacific.exe: + "/iBomberDefensePacific.exe": - when: - os: windows store: steam @@ -265313,7 +266096,7 @@ IBomber Defense Pacific: id: 206690 ICARUS.1: files: - /ICARUS.1_Data/*.txt: + "/ICARUS.1_Data/*.txt": tags: - config - save @@ -265322,11 +266105,11 @@ ICARUS.1: installDir: ICARUS1: {} launch: - /ICARUS.1.app/Contents/MacOS/ICARUS.1: + "/ICARUS.1.app/Contents/MacOS/ICARUS.1": - when: - os: mac store: steam - /ICARUS.1.exe: + "/ICARUS.1.exe": - when: - os: windows store: steam @@ -265338,7 +266121,7 @@ ICBM: installDir: ICBM: {} launch: - /Launcher.exe: + "/Launcher.exe": - when: - store: steam steam: @@ -265347,33 +266130,33 @@ ICE AGENT: installDir: ICE: {} launch: - /ICE.app/Contents/MacOS/ICE: + "/ICE.app/Contents/MacOS/ICE": - when: - os: mac store: steam - /ICE.exe: + "/ICE.exe": - when: - os: windows store: steam - /ICE.x86: + "/ICE.x86": - when: - os: linux store: steam steam: id: 914130 -'ICEBOX: Speedgunner': +"ICEBOX: Speedgunner": installDir: ICEBOX: {} launch: - /Icebox.app: + "/Icebox.app": - when: - os: mac store: steam - /Icebox.exe: + "/Icebox.exe": - when: - os: windows store: steam - /Icebox.x86: + "/Icebox.x86": - when: - os: linux store: steam @@ -265381,12 +266164,12 @@ ICE AGENT: id: 577150 ICEY: files: - '/Library/Preferences/unity.Shanghai FantaBlade Network Technology Co., Ltd..ICEY.plist': + "/Library/Preferences/unity.Shanghai FantaBlade Network Technology Co., Ltd..ICEY.plist": tags: - config when: - os: mac - /userdata//553640/remote/save_data.bin: + "/userdata//553640/remote/save_data.bin": tags: - save when: @@ -265395,7 +266178,7 @@ ICEY: installDir: ICEY: {} registry: - 'HKEY_CURRENT_USER/SOFTWARE/Shanghai FantaBlade Network Technology Co., Ltd./ICEY/GameSettings_h970242990': + "HKEY_CURRENT_USER/SOFTWARE/Shanghai FantaBlade Network Technology Co., Ltd./ICEY/GameSettings_h970242990": tags: - config steam: @@ -265404,19 +266187,19 @@ ICY: installDir: ICY: {} launch: - /Icy.exe: + "/Icy.exe": - when: - os: windows store: steam - /Icy_Mac.app: + "/Icy_Mac.app": - when: - os: mac store: steam steam: id: 375400 -'ICY: Frostbite Edition': +"ICY: Frostbite Edition": files: - /Inner Void Interactive/ICY_ Frostbite Edition: + "/Inner Void Interactive/ICY_ Frostbite Edition": tags: - save when: @@ -265424,18 +266207,18 @@ ICY: installDir: ICY Frostbite Edition: {} launch: - /IcyFrostbite.app/Contents/MacOS/IcyFrostbite: - - arguments: '-steam' + "/IcyFrostbite.app/Contents/MacOS/IcyFrostbite": + - arguments: "-steam" when: - os: mac store: steam - /IcyFrostbite.exe: - - arguments: '-steam' + "/IcyFrostbite.exe": + - arguments: "-steam" when: - os: windows store: steam - /IcyFrostbite.x86: - - arguments: '-steam' + "/IcyFrostbite.x86": + - arguments: "-steam" when: - os: linux store: steam @@ -265445,7 +266228,7 @@ ICan: installDir: Ican: {} launch: - /I_can.exe: + "/I_can.exe": - when: - os: windows store: steam @@ -265453,12 +266236,12 @@ ICan: id: 925810 ID-EGO: files: - /ID-EGO/Saved/Config/WindowsNoEditor: + "/ID-EGO/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /ID-EGO/Saved/SaveGames: + "/ID-EGO/Saved/SaveGames": tags: - save when: @@ -265466,7 +266249,7 @@ ID-EGO: installDir: ID-EGO: {} launch: - /ID-EGO.exe: + "/ID-EGO.exe": - when: - bit: 64 os: windows @@ -265477,29 +266260,29 @@ IFactor: installDir: iFactor: {} launch: - /iFactor.app: + "/iFactor.app": - when: - os: mac store: steam - /iFactor.exe: + "/iFactor.exe": - when: - os: windows store: steam - /iFactor.x86_64: + "/iFactor.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 553570 -'IGI: Origins': +"IGI: Origins": steam: id: 1186430 IGOR MAKS The Meme Lord: installDir: IGOR MAKS The Meme Lord: {} launch: - /imtml.exe: + "/imtml.exe": - when: - os: windows store: steam @@ -265509,11 +266292,11 @@ IGT Slots Paradise Garden: installDir: IGT Slots Paradise Garden: {} launch: - /IGT Slots Paradise Garden.app: + "/IGT Slots Paradise Garden.app": - when: - os: mac store: steam - /Launcher.exe: + "/Launcher.exe": - when: - os: windows store: steam @@ -265523,7 +266306,7 @@ IGrow Game: installDir: iGrow Game: {} launch: - /iGrowGame.exe: + "/iGrowGame.exe": - when: - os: windows store: steam @@ -265533,7 +266316,7 @@ IHF Handball Challenge 12: installDir: Ihf Handball Challenge 12: {} launch: - /IHF_HC12.exe: + "/IHF_HC12.exe": - when: - os: windows store: steam @@ -265543,7 +266326,7 @@ IHF Handball Challenge 14: installDir: IHF Handball Challenge 14: {} launch: - /HC14.exe: + "/HC14.exe": - when: - os: windows store: steam @@ -265553,7 +266336,7 @@ IHUGU: installDir: iHUGU: {} launch: - /iHUGU.exe: + "/iHUGU.exe": - when: - bit: 32 os: windows @@ -265564,20 +266347,20 @@ IIN: installDir: IIN: {} launch: - /IIN.app/Contents/MacOS/IIN: + "/IIN.app/Contents/MacOS/IIN": - when: - os: mac store: steam - /IIN.exe: + "/IIN.exe": - when: - os: windows store: steam - /IIN.x86: + "/IIN.x86": - when: - bit: 32 os: linux store: steam - /IIN.x86_64: + "/IIN.x86_64": - when: - os: linux store: steam @@ -265587,11 +266370,11 @@ IIslands of War: installDir: IIslands of War: {} launch: - /IIslandsOfWar.app: + "/IIslandsOfWar.app": - when: - os: mac store: steam - /IIslandsOfWar.exe: + "/IIslandsOfWar.exe": - when: - os: windows store: steam @@ -265611,38 +266394,38 @@ IKO 39: installDir: IKO39: {} launch: - /IKO39.exe: + "/IKO39.exe": - when: - bit: 64 os: windows store: steam steam: id: 1174270 -'IL DIVINO: Michelangelo''s Sistine Ceiling in VR': +"IL DIVINO: Michelangelo's Sistine Ceiling in VR": installDir: SistineVR: {} steam: id: 1165850 IL-2 Sturmovik: files: - /Users: + "/Users": tags: - save when: - os: windows - /conf.ini: + "/conf.ini": tags: - config when: - os: windows -'IL-2 Sturmovik: 1946': +"IL-2 Sturmovik: 1946": files: - /USER/: + "/USER/": tags: - save when: - os: windows - /conf.ini: + "/conf.ini": tags: - config when: @@ -265652,41 +266435,41 @@ IL-2 Sturmovik: installDir: IL 2 Sturmovik 1946: {} launch: - /il2fb.exe: + "/il2fb.exe": - when: - store: steam steam: id: 15320 -'IL-2 Sturmovik: Battle of Stalingrad': +"IL-2 Sturmovik: Battle of Stalingrad": installDir: IL-2 Sturmovik Battle of Stalingrad: {} launch: - /bin/game/Il-2.exe: + "/bin/game/Il-2.exe": - arguments: or_enable=0 when: - bit: 64 os: windows store: steam - workingDir: /bin/game + workingDir: "/bin/game" steam: id: 307960 -'IL-2 Sturmovik: Cliffs of Dover': +"IL-2 Sturmovik: Cliffs of Dover": installDir: IL-2 Sturmovik Cliffs of Dover: {} launch: - /Launcher.exe: + "/Launcher.exe": - when: - store: steam steam: id: 63950 -'IL-2 Sturmovik: Cliffs of Dover Blitz Edition': +"IL-2 Sturmovik: Cliffs of Dover Blitz Edition": id: steamExtra: - 1049440 installDir: IL-2 Sturmovik Cliffs of Dover Blitz: {} launch: - /Launcher64.exe: + "/Launcher64.exe": - when: - bit: 64 os: windows @@ -265708,7 +266491,7 @@ IMAZE.EXE: installDir: IMAZE.EXE: {} launch: - /IMAZE.exe: + "/IMAZE.exe": - when: - os: windows store: steam @@ -265718,7 +266501,7 @@ IMAZE.EXE 2: installDir: IMAZE.EXE 2: {} launch: - /IMAZE 2.exe: + "/IMAZE 2.exe": - when: - os: windows store: steam @@ -265728,7 +266511,7 @@ IMM Defense: installDir: IMM_Defense: {} launch: - /IMMDefense.exe: + "/IMMDefense.exe": - when: - os: windows store: steam @@ -265738,7 +266521,7 @@ IMM Defense 2: installDir: IMM Defense 2: {} launch: - /IMMDefense_2.exe: + "/IMMDefense_2.exe": - when: - os: windows store: steam @@ -265748,16 +266531,16 @@ IMMURE: installDir: IMMURE: {} launch: - /IMMURE: - - arguments: '-screen-fullscreen 0' + "/IMMURE": + - arguments: "-screen-fullscreen 0" when: - os: linux store: steam - /IMMURE.app: + "/IMMURE.app": - when: - os: mac store: steam - /IMMURE.exe: + "/IMMURE.exe": - when: - os: windows store: steam @@ -265769,7 +266552,7 @@ IMSCARED: installDir: Imscared: {} launch: - /IMSCARED.exe: + "/IMSCARED.exe": - when: - os: windows store: steam @@ -265779,7 +266562,7 @@ IMemory: installDir: iMemory: {} launch: - /iMemory.exe: + "/iMemory.exe": - when: - store: steam steam: @@ -265788,8 +266571,8 @@ IN GAME: installDir: IN GAME: {} launch: - /NewGameandSoftware.exe: - - arguments: '-windowed' + "/NewGameandSoftware.exe": + - arguments: "-windowed" when: - os: windows store: steam @@ -265799,15 +266582,15 @@ IN-VERT: installDir: IN-VERT: {} launch: - /Classic/IN-VERT.exe: + "/Classic/IN-VERT.exe": - when: - os: windows store: steam - /INVERT.exe: + "/INVERT.exe": - when: - os: windows store: steam - /runner: + "/runner": - when: - os: linux store: steam @@ -265817,19 +266600,19 @@ INFECTIS: installDir: INFECTIS: {} launch: - /INFECTIS.exe: + "/INFECTIS.exe": - when: - store: steam steam: id: 1145820 INFRA: files: - /infra/SAVE: + "/infra/SAVE": tags: - save when: - os: windows - /infra/cfg: + "/infra/cfg": tags: - config when: @@ -265837,11 +266620,11 @@ INFRA: installDir: infra: {} launch: - /infra.exe: + "/infra.exe": - when: - os: windows store: steam - /infra.sh: + "/infra.sh": - when: - os: mac store: steam @@ -265851,7 +266634,7 @@ INIT.: installDir: INIT: {} launch: - /INIT.exe: + "/INIT.exe": - when: - os: windows store: steam @@ -265859,17 +266642,17 @@ INIT.: id: 348980 INK: files: - /Library/Application Support/com.yoyogames.macyoyorunner/DontModifyThis.ini: + "/Library/Application Support/com.yoyogames.macyoyorunner/DontModifyThis.ini": tags: - save when: - os: mac - /INK/DontModifyThis.ini: + "/INK/DontModifyThis.ini": tags: - save when: - os: windows - /INK/DontModifyThis.ini: + "/INK/DontModifyThis.ini": tags: - save when: @@ -265877,15 +266660,15 @@ INK: installDir: INK: {} launch: - /INK.app: + "/INK.app": - when: - os: mac store: steam - /INK.exe: + "/INK.exe": - when: - os: windows store: steam - /run.sh: + "/run.sh": - when: - os: linux store: steam @@ -265898,11 +266681,11 @@ INSPACE 2980: installDir: INSPACE 2980: {} launch: - /inspace2980.app/Contents/MacOS/nwjs: + "/inspace2980.app/Contents/MacOS/nwjs": - when: - os: mac store: steam - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -265917,7 +266700,7 @@ INVESTMENT HERO: installDir: INVESTMENT HERO: {} launch: - /Investment Hero.exe: + "/Investment Hero.exe": - when: - os: windows store: steam @@ -265930,7 +266713,7 @@ INZIPID: installDir: TRIM: {} launch: - /TRIM.exe: + "/TRIM.exe": - when: - store: steam steam: @@ -265939,15 +266722,15 @@ IO: installDir: iO: {} launch: - /iO_Linux_Full.x86: + "/iO_Linux_Full.x86": - when: - os: linux store: steam - /iO_Mac_Full.app: + "/iO_Mac_Full.app": - when: - os: mac store: steam - /iO_PC_Full.exe: + "/iO_PC_Full.exe": - when: - os: windows store: steam @@ -265965,8 +266748,8 @@ IOSoccer: installDir: IOSoccer: {} launch: - /iosoccer.exe: - - arguments: '-game iosoccer' + "/iosoccer.exe": + - arguments: "-game iosoccer" when: - os: windows store: steam @@ -265976,7 +266759,7 @@ IOX: installDir: IOX: {} launch: - /IOX.exe: + "/IOX.exe": - when: - bit: 64 os: windows @@ -265990,7 +266773,7 @@ IREC: installDir: iREC: {} launch: - /iREC.exe: + "/iREC.exe": - when: - os: windows store: steam @@ -266008,7 +266791,7 @@ IRON REBELLION: id: 1192900 IRacing: files: - /iRacing: + "/iRacing": tags: - config - save @@ -266022,7 +266805,7 @@ IS -Infinite Stratos- Versus Colors: installDir: IS Infinite Stratos Versus Colors: {} launch: - /IsVersusColors.exe: + "/IsVersusColors.exe": - when: - os: windows store: steam @@ -266030,12 +266813,12 @@ IS -Infinite Stratos- Versus Colors: id: 1124710 IS Defense: files: - /IS Defense/Saved/Config/WindowsNoEditor: + "/IS Defense/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /IS Defense/Saved/SaveGames: + "/IS Defense/Saved/SaveGames": tags: - save when: @@ -266046,12 +266829,12 @@ IS Defense: installDir: IS Defense: {} launch: - /ISDefense/Binaries/Linux/ISDefense-Linux-Shipping: + "/ISDefense/Binaries/Linux/ISDefense-Linux-Shipping": - when: - bit: 64 os: linux store: steam - /ISDefense/Binaries/Win64/ISDefense-Win64-Shipping.exe: + "/ISDefense/Binaries/Win64/ISDefense-Win64-Shipping.exe": - when: - os: windows store: steam @@ -266067,7 +266850,7 @@ ISLA test: installDir: ISLA test: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -266077,7 +266860,7 @@ IScream: installDir: IScream: {} launch: - /IScream.exe: + "/IScream.exe": - when: - os: windows store: steam @@ -266087,23 +266870,22 @@ IStorm: installDir: iStorm: {} launch: - /Binaries/Win32/Client.exe: - - arguments: >- - -ini:UDKUI:UTGame.GFxUDKFrontEnd.OutSideVersion=0,UTGame.HX_LoginGUI.LoginType=3,-ini:UDKEngine:URL.GameName=iStorm,Engine.Engine.Language=INT,OnlineSubsystemSteamworks.OnlineSubsystemSteamworks.bEnableSteam=true + "/Binaries/Win32/Client.exe": + - arguments: "-ini:UDKUI:UTGame.GFxUDKFrontEnd.OutSideVersion=0,UTGame.HX_LoginGUI.LoginType=3,-ini:UDKEngine:URL.GameName=iStorm,Engine.Engine.Language=INT,OnlineSubsystemSteamworks.OnlineSubsystemSteamworks.bEnableSteam=true" when: - os: windows store: steam steam: id: 610940 -'IWO: Bloodbath in the Bonins': +"IWO: Bloodbath in the Bonins": installDir: IWO: {} launch: - /IWO.app: + "/IWO.app": - when: - os: mac store: steam - /IWO.exe: + "/IWO.exe": - when: - os: windows store: steam @@ -266111,12 +266893,12 @@ IStorm: id: 462070 IXION: files: - /AppData/LocalLow/BulwarkStudios/Ixion/Saves: + "/AppData/LocalLow/BulwarkStudios/Ixion/Saves": tags: - save when: - os: windows - /AppData/LocalLow/BulwarkStudios/Ixion/Settings/Settings.save: + "/AppData/LocalLow/BulwarkStudios/Ixion/Settings/Settings.save": tags: - config when: @@ -266124,7 +266906,7 @@ IXION: installDir: IXION: {} launch: - /Ixion.exe: + "/Ixion.exe": - when: - store: steam steam: @@ -266133,17 +266915,17 @@ IZBOT: installDir: iZBOT: {} launch: - /iZBOT.exe: + "/iZBOT.exe": - when: - os: windows store: steam steam: id: 388970 -Ian's Eyes: +"Ian's Eyes": installDir: Ians Eyes: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -266155,12 +266937,12 @@ Ian's Eyes: id: 452340 Ib (2022): files: - /www/save/*.rpgsave: + "/www/save/*.rpgsave": tags: - save when: - os: windows - /www/save/config.rpgsave: + "/www/save/config.rpgsave": tags: - config when: @@ -266168,8 +266950,8 @@ Ib (2022): installDir: Ib: {} launch: - /Game.exe: - - arguments: '--in-process-gpu' + "/Game.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam @@ -266177,14 +266959,14 @@ Ib (2022): id: 1901370 Ibb & obb: files: - /usersettings.cfg: + "/usersettings.cfg": tags: - config when: - os: windows - os: mac - os: linux - /userdata//95400/remote: + "/userdata//95400/remote": tags: - save when: @@ -266192,15 +266974,15 @@ Ibb & obb: installDir: ibbandobb: {} launch: - /ibbobb.app: + "/ibbobb.app": - when: - os: mac store: steam - /ibbobb.bat: + "/ibbobb.bat": - when: - os: windows store: steam - /ibbobb.elf: + "/ibbobb.elf": - when: - os: linux store: steam @@ -266208,12 +266990,12 @@ Ibb & obb: id: 95400 Icarus: files: - /Icarus/Saved/Config/WindowsNoEditor: + "/Icarus/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /Icarus/Saved/PlayerData: + "/Icarus/Saved/PlayerData": tags: - save when: @@ -266230,7 +267012,7 @@ Icarus Online: installDir: Icarus Online: {} launch: - /microlauncher/icarus-101xp-micro-launcher.exe: + "/microlauncher/icarus-101xp-micro-launcher.exe": - when: - os: windows store: steam @@ -266245,37 +267027,37 @@ Icarus Starship Command Simulator: installDir: Icarus Starship Command Simulator: {} launch: - /ICARUS.exe: + "/ICARUS.exe": - when: - os: windows store: steam steam: id: 620170 -'Icarus-X: Tides of Fire': +"Icarus-X: Tides of Fire": installDir: Icarus-X Tides of Fire: {} launch: - /Icarus-X-ToF.exe: + "/Icarus-X-ToF.exe": - when: - os: windows store: steam steam: id: 375000 -'Ice Age 2: The Meltdown': +"Ice Age 2: The Meltdown": files: - /Ice Age 2: + "/Ice Age 2": tags: - save when: - os: windows - /Ice Age 2/Ice Age 2.Ini: + "/Ice Age 2/Ice Age 2.Ini": tags: - config when: - os: windows -'Ice Age: Continental Drift - Arctic Games': +"Ice Age: Continental Drift - Arctic Games": files: - /Activision/IceAge4: + "/Activision/IceAge4": tags: - save when: @@ -266283,21 +267065,21 @@ Icarus Starship Command Simulator: installDir: Ice Age 4: {} launch: - /IceAge4.exe: + "/IceAge4.exe": - when: - store: steam steam: id: 224360 -'Ice Age: Dawn of the Dinosaurs': +"Ice Age: Dawn of the Dinosaurs": files: - /Activision/IceAge3: + "/Activision/IceAge3": tags: - save when: - os: windows -'Ice Age: Scrat''s Nutty Adventure': +"Ice Age: Scrat's Nutty Adventure": files: - HKEY_USERS/S-1-5-21-..../Software/Outright Games Ltd/Ice Age Scrat's Nutty Adventure: + "HKEY_USERS/S-1-5-21-..../Software/Outright Games Ltd/Ice Age Scrat's Nutty Adventure": tags: - save when: @@ -266305,12 +267087,12 @@ Icarus Starship Command Simulator: installDir: Ice Age Scrat: {} launch: - /IceAge.exe: + "/IceAge.exe": - when: - os: windows store: steam registry: - HKEY_CURRENT_USER/Software/Outright Games Ltd/Ice Age Scrat's Nutty Adventure: + "HKEY_CURRENT_USER/Software/Outright Games Ltd/Ice Age Scrat's Nutty Adventure": tags: - config steam: @@ -266319,11 +267101,11 @@ Ice Caves of Europa: installDir: Ice Caves of Europa: {} launch: - /Ice Caves of Europa.app: + "/Ice Caves of Europa.app": - when: - os: mac store: steam - /Ice_Caves_Of_Europa.exe: + "/Ice_Caves_Of_Europa.exe": - when: - os: windows store: steam @@ -266333,7 +267115,7 @@ Ice Cream Factory: installDir: Ice Cream Factory: {} launch: - /Ice Cream Factory/Ice Cream Factory.exe: + "/Ice Cream Factory/Ice Cream Factory.exe": - when: - os: windows store: steam @@ -266343,7 +267125,7 @@ Ice Cream Fantasy: installDir: Ice Cream Fantasy: {} launch: - /Puzzle.exe: + "/Puzzle.exe": - when: - store: steam steam: @@ -266352,11 +267134,11 @@ Ice Cream Surfer: installDir: Ice Cream Surfer: {} launch: - /IceCreamSurfer.app/Contents/MacOS/IceCreamSurfer: + "/IceCreamSurfer.app/Contents/MacOS/IceCreamSurfer": - when: - os: mac store: steam - /IceCreamSurfer.exe: + "/IceCreamSurfer.exe": - when: - os: windows store: steam @@ -266364,7 +267146,7 @@ Ice Cream Surfer: id: 361560 Ice Cream Tycoon: files: - /ICTDATA/config.ini: + "/ICTDATA/config.ini": tags: - config when: @@ -266373,7 +267155,7 @@ Ice Demon: installDir: Ice Demon: {} launch: - /IceDemon2b.exe: + "/IceDemon2b.exe": - when: - os: windows store: steam @@ -266383,15 +267165,15 @@ Ice Lakes: installDir: IceLakes: {} launch: - /IceLakes.app: + "/IceLakes.app": - when: - os: mac store: steam - /IceLakes.exe: + "/IceLakes.exe": - when: - os: windows store: steam - /IceLakes.x86: + "/IceLakes.x86": - when: - os: linux store: steam @@ -266401,7 +267183,7 @@ Ice Maze: installDir: Ice Maze: {} launch: - /Ice Maze.exe: + "/Ice Maze.exe": - when: - store: steam steam: @@ -266410,7 +267192,7 @@ Ice and Fire of Maiden: installDir: Ice and Fire of Maiden: {} launch: - /IceAndFireOfMaiden.exe: + "/IceAndFireOfMaiden.exe": - when: - os: windows store: steam @@ -266420,15 +267202,15 @@ Icebound: installDir: Icebound: {} launch: - /Icebound.app: + "/Icebound.app": - when: - os: mac store: steam - /Icebound.exe: + "/Icebound.exe": - when: - os: windows store: steam - /Icebound.sh: + "/Icebound.sh": - when: - os: linux store: steam @@ -266438,7 +267220,7 @@ Iced: installDir: ICED: {} launch: - /ICED.exe: + "/ICED.exe": - when: - os: windows store: steam @@ -266453,17 +267235,17 @@ Iceroyds!: installDir: iceroyds: {} launch: - /iceroyds-linux-x86: + "/iceroyds-linux-x86": - when: - bit: 32 os: linux store: steam - /iceroyds-linux-x86_64: + "/iceroyds-linux-x86_64": - when: - bit: 64 os: linux store: steam - /iceroyds.exe: + "/iceroyds.exe": - when: - os: windows store: steam @@ -266476,17 +267258,17 @@ Icesolation: id: 623820 Icewind Dale: files: - /Keymap.ini: + "/Keymap.ini": tags: - config when: - os: windows - /icewind.ini: + "/icewind.ini": tags: - config when: - os: windows - /mpsave: + "/mpsave": tags: - save when: @@ -266498,56 +267280,56 @@ Icewind Dale: - 1207666683 Icewind Dale II: files: - /Keymap.ini: + "/Keymap.ini": tags: - config when: - os: windows - /icewind2.ini: + "/icewind2.ini": tags: - config when: - os: windows - /mpsave: + "/mpsave": tags: - save when: - os: windows gog: id: 1207658891 -'Icewind Dale: Enhanced Edition': +"Icewind Dale: Enhanced Edition": files: - /Documents/Icewind Dale - Enhanced Edition/Baldur.ini: + "/Documents/Icewind Dale - Enhanced Edition/Baldur.ini": tags: - config when: - os: mac - /Documents/Icewind Dale - Enhanced Edition/save: + "/Documents/Icewind Dale - Enhanced Edition/save": tags: - save when: - os: mac - /Icewind Dale - Enhanced Edition/Baldur.ini: + "/Icewind Dale - Enhanced Edition/Baldur.ini": tags: - config when: - os: windows - /Icewind Dale - Enhanced Edition/Baldur.lua: + "/Icewind Dale - Enhanced Edition/Baldur.lua": tags: - config when: - os: windows - /Icewind Dale - Enhanced Edition/save: + "/Icewind Dale - Enhanced Edition/save": tags: - save when: - os: windows - /Icewind Dale - Enhanced Edition/Baldur.ini: + "/Icewind Dale - Enhanced Edition/Baldur.ini": tags: - config when: - os: linux - /Icewind Dale - Enhanced Edition/save: + "/Icewind Dale - Enhanced Edition/save": tags: - save when: @@ -266560,15 +267342,15 @@ Icewind Dale II: installDir: Icewind Dale Enhanced Edition: {} launch: - /IcewindDale: + "/IcewindDale": - when: - os: linux store: steam - /IcewindDale.app: + "/IcewindDale.app": - when: - os: mac store: steam - /icewind.exe: + "/icewind.exe": - when: - os: windows store: steam @@ -266576,12 +267358,12 @@ Icewind Dale II: id: 321800 Ichi: files: - /userdata//300300/remote/IchiSteam.txt: + "/userdata//300300/remote/IchiSteam.txt": tags: - save when: - store: steam - /unity3d/Stolen Couch Games/Ichi: + "/unity3d/Stolen Couch Games/Ichi": tags: - config when: @@ -266589,15 +267371,15 @@ Ichi: installDir: Ichi: {} launch: - /Ichi.app: + "/Ichi.app": - when: - os: mac store: steam - /Ichi.exe: + "/Ichi.exe": - when: - os: windows store: steam - /Ichi.x86: + "/Ichi.x86": - when: - os: linux store: steam @@ -266611,12 +267393,12 @@ Ichor: installDir: Ichor: {} launch: - /Ichor.app/Contents/MacOS/Ichor: + "/Ichor.app/Contents/MacOS/Ichor": - when: - os: mac store: steam - workingDir: /Ichor.app/Contents/Resources - /Ichor.exe: + workingDir: "/Ichor.app/Contents/Resources" + "/Ichor.exe": - when: - os: windows store: steam @@ -266626,11 +267408,11 @@ Icity - a Flight Sim ... and a City Builder: installDir: Icity: {} launch: - /Icity eab_July.app: + "/Icity eab_July.app": - when: - os: mac store: steam - /Icity eab_July_win.exe: + "/Icity eab_July_win.exe": - when: - os: windows store: steam @@ -266640,32 +267422,32 @@ Icky: installDir: Icky: {} launch: - /icky.exe: + "/icky.exe": - when: - store: steam steam: id: 791160 Iconoclasts: files: - /Contents/Resources/Data: + "/Contents/Resources/Data": tags: - config - save when: - os: mac - /data/point: + "/data/point": tags: - save when: - os: windows - os: linux - /data/save*: + "/data/save*": tags: - save when: - os: windows - os: linux - /data/settings: + "/data/settings": tags: - config when: @@ -266676,34 +267458,34 @@ Iconoclasts: installDir: Iconoclasts: {} launch: - /Iconoclasts.app/Contents/MacOS/Chowdren: + "/Iconoclasts.app/Contents/MacOS/Chowdren": - when: - os: mac store: steam - /Iconoclasts.exe: + "/Iconoclasts.exe": - when: - os: windows store: steam - /run.sh: + "/run.sh": - when: - os: linux store: steam steam: id: 393520 -'Icons: Combat Arena': +"Icons: Combat Arena": installDir: Icons Combat Arena: {} launch: - /Icons.exe: + "/Icons.exe": - when: - bit: 64 os: windows store: steam steam: id: 684200 -'Icycle: On Thin Ice': +"Icycle: On Thin Ice": files: - /Icycle On Thin Ice/User Data/Default/Local Storage: + "/Icycle On Thin Ice/User Data/Default/Local Storage": tags: - save when: @@ -266711,11 +267493,11 @@ Iconoclasts: installDir: Icycle On Thin Ice: {} launch: - /Icycle On Thin Ice.app: + "/Icycle On Thin Ice.app": - when: - os: mac store: steam - /Icycle On Thin Ice.exe: + "/Icycle On Thin Ice.exe": - when: - bit: 64 os: windows @@ -266726,7 +267508,7 @@ Identity: installDir: Identity Town Square: {} launch: - /IdentityGame.exe: + "/IdentityGame.exe": - when: - os: windows store: steam @@ -266736,7 +267518,7 @@ Identity Sector: installDir: Identity Sector: {} launch: - /Identity Sector.exe: + "/Identity Sector.exe": - when: - os: windows store: steam @@ -266748,7 +267530,7 @@ Ideology in Friction: installDir: Ideology in Friction: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -266758,16 +267540,16 @@ Idioctopus: installDir: Idioctopus: {} launch: - /Idioctopus: + "/Idioctopus": - when: - os: linux store: steam - /Idioctopus.app/Contents/MacOS/Idioctopus: + "/Idioctopus.app/Contents/MacOS/Idioctopus": - when: - bit: 64 os: mac store: steam - /Idioctopus.exe: + "/Idioctopus.exe": - when: - os: windows store: steam @@ -266780,7 +267562,7 @@ Idle Adventure: installDir: Idle Adventure: {} launch: - /IdleAdventureApp.exe: + "/IdleAdventureApp.exe": - when: - os: windows store: steam @@ -266790,7 +267572,7 @@ Idle Baker Boss: installDir: IdleBakerBoss: {} launch: - /Idle Baker Boss.exe: + "/Idle Baker Boss.exe": - when: - os: windows store: steam @@ -266800,7 +267582,7 @@ Idle Bouncer: installDir: Idle Bouncer: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -266808,7 +267590,7 @@ Idle Bouncer: id: 697610 Idle Champions of the Forgotten Realms: files: - /AppData/LocalLow/Codename Entertainment/Idle Champions/localSettings.json: + "/AppData/LocalLow/Codename Entertainment/Idle Champions/localSettings.json": tags: - config when: @@ -266821,11 +267603,11 @@ Idle Champions of the Forgotten Realms: installDir: IdleChampions: {} launch: - /IdleDragons.exe: + "/IdleDragons.exe": - when: - os: windows store: steam - /IdleDragonsMac.app/Contents/MacOS/Idle Champions: + "/IdleDragonsMac.app/Contents/MacOS/Idle Champions": - when: - os: mac store: steam @@ -266835,7 +267617,7 @@ Idle Chess Story: installDir: Idle Chess Story: {} launch: - /Idle Chess Story.exe: + "/Idle Chess Story.exe": - when: - bit: 64 os: windows @@ -266846,15 +267628,15 @@ Idle Civilization: installDir: Idle Civilization: {} launch: - /IdleCivilization.app: + "/IdleCivilization.app": - when: - os: mac store: steam - /IdleCivilization.exe: + "/IdleCivilization.exe": - when: - os: windows store: steam - /IdleCivilization.x86: + "/IdleCivilization.x86": - when: - os: linux store: steam @@ -266864,15 +267646,15 @@ Idle Cooking Emperor: installDir: ICE: {} launch: - /ICE.app: + "/ICE.app": - when: - os: mac store: steam - /ICE.x86: + "/ICE.x86": - when: - os: linux store: steam - /IdleCookingEmperor.exe: + "/IdleCookingEmperor.exe": - when: - os: windows store: steam @@ -266882,7 +267664,7 @@ Idle Dungeons: installDir: Idle Dungeons: {} launch: - /Idle Dungeons.exe: + "/Idle Dungeons.exe": - when: - store: steam steam: @@ -266891,7 +267673,7 @@ Idle Earth: installDir: Idle Earth: {} launch: - /Idle Earth.exe: + "/Idle Earth.exe": - when: - store: steam steam: @@ -266900,15 +267682,15 @@ Idle Evolution: installDir: Idle Evolution: {} launch: - /IdleEvolution.exe: + "/IdleEvolution.exe": - when: - os: windows store: steam - /idleevolution.app: + "/idleevolution.app": - when: - os: mac store: steam - /nw: + "/nw": - when: - os: linux store: steam @@ -266918,11 +267700,11 @@ Idle Guardians: installDir: Idle Guardians: {} launch: - /MacOS/idleguardians_mac: + "/MacOS/idleguardians_mac": - when: - os: mac store: steam - /idleguardians_win_64.exe: + "/idleguardians_win_64.exe": - when: - os: windows store: steam @@ -266932,15 +267714,15 @@ Idle Heist: installDir: Idle Heist: {} launch: - /Idle Heist.exe: + "/Idle Heist.exe": - when: - os: windows store: steam - /IdleHeist.app: + "/IdleHeist.app": - when: - os: mac store: steam - /IdleHeist.x86_64: + "/IdleHeist.x86_64": - when: - os: linux store: steam @@ -266950,11 +267732,11 @@ Idle Hero World: installDir: Idle Big Devil: {} launch: - /DMW.app/Contents/MacOS/IBD: + "/DMW.app/Contents/MacOS/IBD": - when: - os: mac store: steam - /DMW.exe: + "/DMW.exe": - when: - os: windows store: steam @@ -266964,11 +267746,11 @@ Idle Hunter: installDir: Idle Hunter: {} launch: - /Idle Hunter.exe: + "/Idle Hunter.exe": - when: - os: windows store: steam - /Idle Hunter.x86: + "/Idle Hunter.x86": - when: - os: linux store: steam @@ -266978,7 +267760,7 @@ Idle Kingdom Builder: installDir: Idle Kingdom Builder: {} launch: - /Idle Kingdom Builder.exe: + "/Idle Kingdom Builder.exe": - when: - os: windows store: steam @@ -266988,21 +267770,21 @@ Idle Portal Guardian: installDir: Idle Portal Guardian: {} launch: - /Idle Portal Guardian.exe: + "/Idle Portal Guardian.exe": - when: - os: windows store: steam steam: id: 1061650 -'Idle Racing GO: Clicker Tycoon': +"Idle Racing GO: Clicker Tycoon": installDir: Idle Racing GO: {} launch: - /Idle Racing GO.app: + "/Idle Racing GO.app": - when: - os: mac store: steam - /Idle Racing GO.exe: + "/Idle Racing GO.exe": - when: - bit: 64 os: windows @@ -267011,17 +267793,17 @@ Idle Portal Guardian: id: 851110 Idle Research: files: - /Library/Application Support/CryptoGrounds/Idle Research/saves: + "/Library/Application Support/CryptoGrounds/Idle Research/saves": tags: - save when: - os: mac - /LocalLow/CryptoGrounds/Idle Research/saves: + "/LocalLow/CryptoGrounds/Idle Research/saves": tags: - save when: - os: windows - /unity3d/CryptoGrounds/Idle Research/saves: + "/unity3d/CryptoGrounds/Idle Research/saves": tags: - save when: @@ -267029,16 +267811,16 @@ Idle Research: installDir: Idle Research: {} launch: - /Idle Research.exe: + "/Idle Research.exe": - when: - bit: 64 os: windows store: steam - /Idle Research.x86_64: + "/Idle Research.x86_64": - when: - os: linux store: steam - /Idle Research/Idle Research.app: + "/Idle Research/Idle Research.app": - when: - os: mac store: steam @@ -267048,12 +267830,14 @@ Idle Space: installDir: Idle Space: {} launch: - /Idle Space.exe: + "/Idle Space.exe": - when: - os: windows store: steam - /start: + "/start": - when: + - os: mac + store: steam - os: linux store: steam steam: @@ -267062,7 +267846,7 @@ Idle Space Raider: installDir: Idle Space Raider: {} launch: - /isr.exe: + "/isr.exe": - when: - os: windows store: steam @@ -267070,7 +267854,7 @@ Idle Space Raider: id: 933540 Idle Wizard: files: - /userdata//992070/remote/save: + "/userdata//992070/remote/save": tags: - save when: @@ -267079,15 +267863,15 @@ Idle Wizard: installDir: Idle Wizard: {} launch: - /IdleWizard.app: + "/IdleWizard.app": - when: - os: mac store: steam - /IdleWizard.exe: + "/IdleWizard.exe": - when: - os: windows store: steam - /IdleWizard.x86_64: + "/IdleWizard.x86_64": - when: - os: linux store: steam @@ -267101,15 +267885,15 @@ IdleBeer: installDir: idleBeer: {} launch: - /idleBeer.app: + "/idleBeer.app": - when: - os: mac store: steam - /idleBeer.exe: + "/idleBeer.exe": - when: - os: windows store: steam - /idleBeer_linux.x86: + "/idleBeer_linux.x86": - when: - os: linux store: steam @@ -267119,7 +267903,7 @@ IdleOn - The Idle MMO: installDir: Legends of Idleon: {} launch: - /LegendsOfIdleon.exe: + "/LegendsOfIdleon.exe": - when: - os: windows store: steam @@ -267127,17 +267911,17 @@ IdleOn - The Idle MMO: id: 1476970 Idling to Rule the Gods: files: - /Idling to Rule the Gods_Data/Saves/ManualSave.txt: + "/Idling to Rule the Gods_Data/Saves/ManualSave.txt": tags: - save when: - os: windows - /Idling to Rule the Gods_Data/Saves/ManualSave_*.txt: + "/Idling to Rule the Gods_Data/Saves/ManualSave_*.txt": tags: - save when: - os: windows - /AppData/LocalLow/Shugasu/Idling to Rule the Gods/ItRtG_Steam_/AutoSave.txt: + "/AppData/LocalLow/Shugasu/Idling to Rule the Gods/ItRtG_Steam_/AutoSave.txt": tags: - save when: @@ -267145,15 +267929,15 @@ Idling to Rule the Gods: installDir: Idling to Rule the Gods: {} launch: - /Idling to Rule the Gods.exe: + "/Idling to Rule the Gods.exe": - when: - os: windows store: steam - /itrtg.app: + "/itrtg.app": - when: - os: mac store: steam - /itrtg.x86_64: + "/itrtg.x86_64": - when: - os: linux store: steam @@ -267167,20 +267951,20 @@ Idol Hands: installDir: Idol Hands: {} launch: - /IdolHands.app/Contents/MacOS/IdolHands: + "/IdolHands.app/Contents/MacOS/IdolHands": - when: - os: mac store: steam - /IdolHands.exe: + "/IdolHands.exe": - when: - os: windows store: steam - /IdolHands.x86: + "/IdolHands.x86": - when: - bit: 32 os: linux store: steam - /IdolHands.x86_64: + "/IdolHands.x86_64": - when: - bit: 64 os: linux @@ -267189,12 +267973,12 @@ Idol Hands: id: 345750 Idol Magical Girl Chiru Chiru Michiru Part 1: files: - /Frontwing/Idol Magical Girl Chiru Chiru Michiru (Part 1)/*.dat: + "/Frontwing/Idol Magical Girl Chiru Chiru Michiru (Part 1)/*.dat": tags: - save when: - os: windows - /Frontwing/Idol Magical Girl Chiru Chiru Michiru (Part 1)/setup.xml: + "/Frontwing/Idol Magical Girl Chiru Chiru Michiru (Part 1)/setup.xml": tags: - config when: @@ -267205,7 +267989,7 @@ Idol Magical Girl Chiru Chiru Michiru Part 1: installDir: Idol Magical Girl Chiruchiru Michiru Part 1: {} launch: - /MichiruPt1Launcher.exe: + "/MichiruPt1Launcher.exe": - when: - os: windows store: steam @@ -267213,12 +267997,12 @@ Idol Magical Girl Chiru Chiru Michiru Part 1: id: 377710 Idol Magical Girl Chiru Chiru Michiru Part 2: files: - /Frontwing/Idol Magical Girl Chiru Chiru Michiru (Part 2)/*.dat: + "/Frontwing/Idol Magical Girl Chiru Chiru Michiru (Part 2)/*.dat": tags: - save when: - os: windows - /Frontwing/Idol Magical Girl Chiru Chiru Michiru (Part 2)/setup.xml: + "/Frontwing/Idol Magical Girl Chiru Chiru Michiru (Part 2)/setup.xml": tags: - config when: @@ -267226,7 +268010,7 @@ Idol Magical Girl Chiru Chiru Michiru Part 2: installDir: Idol Magical Girl Chiruchiru Michiru Part 2: {} launch: - /MichiruPt2Launcher.exe: + "/MichiruPt2Launcher.exe": - when: - os: windows store: steam @@ -267234,19 +268018,19 @@ Idol Magical Girl Chiru Chiru Michiru Part 2: id: 377720 Idol Manager: files: - /AppData/LocalLow/Glitch Pitch/Idol Manager/data: + "/AppData/LocalLow/Glitch Pitch/Idol Manager/data": tags: - config - save when: - os: windows - /Library/Application Support/Glitch Pitch/Idol Manager/data: + "/Library/Application Support/Glitch Pitch/Idol Manager/data": tags: - config - save when: - os: mac - /unity3d/Glitch Pitch/Idol Manager/data: + "/unity3d/Glitch Pitch/Idol Manager/data": tags: - config - save @@ -267255,21 +268039,21 @@ Idol Manager: installDir: Idol Manager: {} launch: - /IM.exe: + "/IM.exe": - when: - bit: 64 os: windows store: steam - /Idol Manager.app/Contents/MacOS/Idol Manager: + "/Idol Manager.app/Contents/MacOS/Idol Manager": - when: - os: mac store: steam - /Idol Manager.exe: + "/Idol Manager.exe": - when: - bit: 32 os: windows store: steam - /IdolManager.x86_64: + "/IdolManager.x86_64": - when: - os: linux store: steam @@ -267282,7 +268066,7 @@ Idol Quest VR: id: 776140 Idol Showdown: files: - /AppData/LocalLow/BestoGameStudios/Idol Showdown/Saves: + "/AppData/LocalLow/BestoGameStudios/Idol Showdown/Saves": tags: - config - save @@ -267291,7 +268075,7 @@ Idol Showdown: installDir: Idol Showdown: {} launch: - /Idol Showdown.exe: + "/Idol Showdown.exe": - when: - os: windows store: steam @@ -267304,14 +268088,14 @@ Idunn Guardians: installDir: Idunn Gurdians: {} launch: - /IDUNN GUARDIANS.exe: + "/IDUNN GUARDIANS.exe": - when: - store: steam steam: id: 1071760 Iesabel: files: - /Iesabel_Data/Save: + "/Iesabel_Data/Save": tags: - save when: @@ -267319,15 +268103,15 @@ Iesabel: installDir: Iesabel: {} launch: - /Iesabel.app: + "/Iesabel.app": - when: - os: mac store: steam - /Iesabel.exe: + "/Iesabel.exe": - when: - os: windows store: steam - /Iesabel.x86: + "/Iesabel.x86": - when: - os: linux store: steam @@ -267335,7 +268119,7 @@ Iesabel: id: 248710 If Found...: files: - /AppData/LocalLow/dreamfeel/iffound: + "/AppData/LocalLow/dreamfeel/iffound": tags: - save when: @@ -267343,11 +268127,11 @@ If Found...: installDir: If Found: {} launch: - /iffound.app/Contents/MacOS/iffound: + "/iffound.app/Contents/MacOS/iffound": - when: - os: mac store: steam - /iffound.exe: + "/iffound.exe": - when: - os: windows store: steam @@ -267361,11 +268145,11 @@ If I am AI假如我是人工智能: installDir: IfIamAI: {} launch: - /iamai.app: + "/iamai.app": - when: - os: mac store: steam - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -267373,7 +268157,7 @@ If I am AI假如我是人工智能: id: 933940 If My Heart Had Wings: files: - /Saved Games/MoeNovel/IF MY HEART HAD WINGS: + "/Saved Games/MoeNovel/IF MY HEART HAD WINGS": tags: - save when: @@ -267381,7 +268165,7 @@ If My Heart Had Wings: installDir: If My Heart Had Wings: {} launch: - /AdvHD.exe: + "/AdvHD.exe": - when: - os: windows store: steam @@ -267395,7 +268179,7 @@ If My Heart Had Wings -Flight Diary-: installDir: IF MY HEART HAD WINGS FLIGHT DIARY: {} launch: - /AdvHD.exe: + "/AdvHD.exe": - when: - os: windows store: steam @@ -267409,35 +268193,35 @@ If Only...: If You Know What I Mean: steam: id: 767610 -'If on a Winter''s Night, Four Travelers': +"If on a Winter's Night, Four Travelers": files: - /Saved Games/If On A Winter's Night Four Travelers/acsetup.cfg: + "/Saved Games/If On A Winter's Night Four Travelers/acsetup.cfg": tags: - config when: - os: windows - /Saved Games/If On A Winter's Night Four Travelers/agssave.*: + "/Saved Games/If On A Winter's Night Four Travelers/agssave.*": tags: - save when: - os: windows - /Saved Games/If On A Winter's Night Four Travelers/playersettings.dat: + "/Saved Games/If On A Winter's Night Four Travelers/playersettings.dat": tags: - config when: - os: windows installDir: - If On A Winter's Night Four Travelers: {} + "If On A Winter's Night Four Travelers": {} launch: - /ioawn4t: + "/ioawn4t": - when: - os: linux store: steam - /ioawn4t.exe: + "/ioawn4t.exe": - when: - os: windows store: steam - /troubleshooting.pdf: + "/troubleshooting.pdf": - when: - store: steam steam: @@ -267446,12 +268230,12 @@ Iffy Institute: installDir: Iffy Institute: {} launch: - /32 Bit/Iffy Institute.exe: + "/32 Bit/Iffy Institute.exe": - when: - bit: 32 os: windows store: steam - /64 Bit/Iffy Institute.exe: + "/64 Bit/Iffy Institute.exe": - when: - bit: 64 os: windows @@ -267472,30 +268256,30 @@ Iggle Pop!: installDir: Iggle Pop Deluxe: {} launch: - /IgglePop.exe: + "/IgglePop.exe": - when: - store: steam steam: id: 3420 -Iggy's Egg Adventure: +"Iggy's Egg Adventure": installDir: - Iggy's Egg Adventure: {} + "Iggy's Egg Adventure": {} launch: - /Binaries/Win32/IEA.exe: + "/Binaries/Win32/IEA.exe": - when: - os: windows store: steam - /UDKGame.app: + "/UDKGame.app": - when: - os: mac store: steam steam: id: 366040 -Iggy's Zombie A-Pug-Alypse: +"Iggy's Zombie A-Pug-Alypse": installDir: - Iggy's Zombie A-Pug-Alypse: {} + "Iggy's Zombie A-Pug-Alypse": {} launch: - /Iggy.exe: + "/Iggy.exe": - when: - os: windows store: steam @@ -267508,15 +268292,15 @@ Ignis Avis Venatio: installDir: Ignis Avis Venatio: {} launch: - /IAV.app: + "/IAV.app": - when: - os: mac store: steam - /IAV.exe: + "/IAV.exe": - when: - os: windows store: steam - /Ignis_Avis_Venatio-1.0-linux/IAV.sh: + "/Ignis_Avis_Venatio-1.0-linux/IAV.sh": - when: - os: linux store: steam @@ -267526,26 +268310,26 @@ Ignite: installDir: Ignite: {} launch: - /Ignite.exe: + "/Ignite.exe": - when: - store: steam steam: id: 45410 -'Ignited Steel: Mech Tactics': +"Ignited Steel: Mech Tactics": installDir: IgnitedSteel: {} launch: - /IgnitedSteel.exe: + "/IgnitedSteel.exe": - when: - os: windows store: steam steam: id: 1550740 -'Ignited Steel: Prologue': +"Ignited Steel: Prologue": installDir: Ignited Steel Prologue: {} launch: - /IgnitedSteel.exe: + "/IgnitedSteel.exe": - when: - os: windows store: steam @@ -267557,18 +268341,18 @@ Ignition: installDir: Ignition: {} launch: - /DOSBox/dosbox.app/Contents/MacOS/DOSBox: - - arguments: '-conf \"config/dosbox_ignition.conf\" -conf \"config/dosbox_igni_single.conf\" -noconsole' + "/DOSBox/dosbox.app/Contents/MacOS/DOSBox": + - arguments: "-conf \\\"config/dosbox_ignition.conf\\\" -conf \\\"config/dosbox_igni_single.conf\\\" -noconsole" when: - os: mac store: steam - /DOSBox/dosbox.exe: - - arguments: '-conf \"config/dosbox_ignition.conf\" -conf \"config/dosbox_igni_single.conf\" -noconsole' + "/DOSBox/dosbox.exe": + - arguments: "-conf \\\"config/dosbox_ignition.conf\\\" -conf \\\"config/dosbox_igni_single.conf\\\" -noconsole" when: - os: windows store: steam - /dosbox/dosbox: - - arguments: '-conf \"config/dosbox_ignition.conf\" -conf \"config/dosbox_igni_single.conf\" -noconsole' + "/dosbox/dosbox": + - arguments: "-conf \\\"config/dosbox_ignition.conf\\\" -conf \\\"config/dosbox_igni_single.conf\\\" -noconsole" when: - os: linux store: steam @@ -267578,7 +268362,7 @@ Igo Meijin: installDir: sgo-meijin: {} launch: - /sgo-meijinst.exe: + "/sgo-meijinst.exe": - when: - os: windows store: steam @@ -267588,7 +268372,7 @@ Ikao The Lost Souls: installDir: Ikao The lost souls: {} launch: - /IKAO The lost souls.exe: + "/IKAO The lost souls.exe": - when: - os: windows store: steam @@ -267601,12 +268385,12 @@ Ikaros: id: 669440 Ikaruga: files: - /boot.txt: + "/boot.txt": tags: - config when: - os: windows - /save: + "/save": tags: - save when: @@ -267614,17 +268398,17 @@ Ikaruga: installDir: Ikaruga: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam steam: id: 253750 -'Ikeda : The Scrap Hunter E.P.': +"Ikeda : The Scrap Hunter E.P.": installDir: Ikeda_TheScrapHunter: {} launch: - /Ikeda - Scrap Hunter E.P..exe: + "/Ikeda - Scrap Hunter E.P..exe": - when: - os: windows store: steam @@ -267632,43 +268416,43 @@ Ikaruga: id: 1052380 Ikenfell: files: - /Library/Application Support/ikenfell/autosave: + "/Library/Application Support/ikenfell/autosave": tags: - save when: - os: mac - /Library/Application Support/ikenfell/save*: + "/Library/Application Support/ikenfell/save*": tags: - save when: - os: mac - /Library/Application Support/ikenfell/settings: + "/Library/Application Support/ikenfell/settings": tags: - config when: - os: mac - /ikenfell/autosave: + "/ikenfell/autosave": tags: - save when: - os: windows - /ikenfell/save*: + "/ikenfell/save*": tags: - save when: - os: windows - /ikenfell/settings: + "/ikenfell/settings": tags: - config when: - os: windows - /Packages/HumbleBundle.IkenfellWin10_q2mcdwmzx4qja/LocalCache/Roaming/ikenfell/autosave: + "/Packages/HumbleBundle.IkenfellWin10_q2mcdwmzx4qja/LocalCache/Roaming/ikenfell/autosave": tags: - save when: - os: windows store: microsoft - /Packages/HumbleBundle.IkenfellWin10_q2mcdwmzx4qja/LocalCache/Roaming/ikenfell/settings: + "/Packages/HumbleBundle.IkenfellWin10_q2mcdwmzx4qja/LocalCache/Roaming/ikenfell/settings": tags: - config when: @@ -267679,11 +268463,11 @@ Ikenfell: installDir: Ikenfell: {} launch: - /Ikenfell.app/Contents/MacOS/Ikenfell: + "/Ikenfell.app/Contents/MacOS/Ikenfell": - when: - os: mac store: steam - /IkenfellWin.exe: + "/IkenfellWin.exe": - when: - os: windows store: steam @@ -267693,7 +268477,7 @@ Ikenie: installDir: ikenie: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -267703,7 +268487,7 @@ Il Sole e la Luna: installDir: Il Sole e la Luna: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -267713,7 +268497,7 @@ Il Sole e la Luna 2: installDir: Il Sole e la Luna 2: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -267723,7 +268507,7 @@ Ilamentia: installDir: Ilamentia: {} launch: - /Ilamentia.exe: + "/Ilamentia.exe": - when: - os: windows store: steam @@ -267733,11 +268517,11 @@ Ilhumia: installDir: Ilhumia: {} launch: - /Ilhumia.app/Contents/MacOS/Ilhumia: + "/Ilhumia.app/Contents/MacOS/Ilhumia": - when: - os: mac store: steam - /Ilhumia.exe: + "/Ilhumia.exe": - when: - os: windows store: steam @@ -267747,7 +268531,7 @@ Illie: installDir: illiegame: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -267757,15 +268541,15 @@ Illuminascii: installDir: Illuminascii: {} launch: - /illuminascii.app: + "/illuminascii.app": - when: - os: mac store: steam - /illuminascii.exe: + "/illuminascii.exe": - when: - os: windows store: steam - /illuminasciiL.x86: + "/illuminasciiL.x86": - when: - os: linux store: steam @@ -267775,11 +268559,11 @@ Illumine: installDir: illumine: {} launch: - /ILLUMINE.exe: + "/ILLUMINE.exe": - when: - os: windows store: steam - /runner: + "/runner": - when: - os: linux store: steam @@ -267789,25 +268573,25 @@ Illusion: installDir: I L L U S I O N: {} launch: - /RPG_RT.exe: + "/RPG_RT.exe": - when: - os: windows store: steam steam: id: 843170 -Illusion of L'Phalcia: +"Illusion of L'Phalcia": installDir: - Illusion of L'Phalcia: {} + "Illusion of L'Phalcia": {} launch: - /Lphalcia.exe: + "/Lphalcia.exe": - when: - os: windows store: steam steam: id: 1076100 -'Illusion: A Tale of the Mind': +"Illusion: A Tale of the Mind": files: - /AppData/LocalLow/frimastudio/Illusion: + "/AppData/LocalLow/frimastudio/Illusion": tags: - save when: @@ -267815,7 +268599,7 @@ Illusion of L'Phalcia: installDir: Illusion: {} launch: - /illusion.exe: + "/illusion.exe": - when: - bit: 64 os: windows @@ -267830,22 +268614,22 @@ Illusoria: installDir: Illusoria: {} launch: - /Illusoria.exe: + "/Illusoria.exe": - when: - bit: 64 os: windows store: steam steam: id: 614140 -'Illville: Return instructions': +"Illville: Return instructions": installDir: Illville Return instructions: {} launch: - /ReturnInstructions.app: + "/ReturnInstructions.app": - when: - os: mac store: steam - /ReturnInstructions.exe: + "/ReturnInstructions.exe": - when: - bit: 64 os: windows @@ -267856,8 +268640,8 @@ Illyriad - 4x Grand Strategy MMO: installDir: Illyriad - Grand Strategy MMO: {} launch: - /illyriad.exe: - - arguments: ' --in-process-gpu' + "/illyriad.exe": + - arguments: " --in-process-gpu" when: - bit: 64 os: windows @@ -267866,13 +268650,13 @@ Illyriad - 4x Grand Strategy MMO: id: 559310 Ilomilo: files: - /Packages/Microsoft.Ilomilo_8wekyb3d8bbwe/LocalState: + "/Packages/Microsoft.Ilomilo_8wekyb3d8bbwe/LocalState": tags: - save when: - os: windows store: microsoft - /Packages/Microsoft.Ilomilo_8wekyb3d8bbwe/Settings: + "/Packages/Microsoft.Ilomilo_8wekyb3d8bbwe/Settings": tags: - config when: @@ -267885,7 +268669,7 @@ Image of Perfection: installDir: Image of Perfection: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -267895,7 +268679,7 @@ ImageStriker: installDir: ImageStriker: {} launch: - /ImageStrikerS.exe: + "/ImageStrikerS.exe": - when: - os: windows store: steam @@ -267905,7 +268689,7 @@ Imaginarium: installDir: Imaginarium: {} launch: - /Imaginarium.exe: + "/Imaginarium.exe": - when: - bit: 64 os: windows @@ -267916,8 +268700,8 @@ Imagination - Online Board game: installDir: Imagination: {} launch: - /Imagination.exe: - - arguments: '-logFile output_log.txt' + "/Imagination.exe": + - arguments: "-logFile output_log.txt" when: - os: windows store: steam @@ -267927,7 +268711,7 @@ Imaginator: installDir: Imaginator: {} launch: - /Imaginator.exe: + "/Imaginator.exe": - when: - bit: 64 os: windows @@ -267936,7 +268720,7 @@ Imaginator: id: 1157350 Imagine Earth: files: - /ImagineEarth: + "/ImagineEarth": tags: - config - save @@ -267947,7 +268731,7 @@ Imagine Earth: installDir: ImagineEarth: {} launch: - /ImagineEarth.exe: + "/ImagineEarth.exe": - when: - os: windows store: steam @@ -267957,15 +268741,15 @@ Imagine Me: installDir: Imagine Me: {} launch: - /AA.app: + "/AA.app": - when: - os: mac store: steam - /AA.exe: + "/AA.exe": - when: - os: windows store: steam - /AA.x86: + "/AA.x86": - when: - os: linux store: steam @@ -267973,12 +268757,12 @@ Imagine Me: id: 265670 Imbroglio: files: - /Rostislav Pogosian/Imbroglio/save: + "/Rostislav Pogosian/Imbroglio/save": tags: - save when: - os: windows - /Rostislav Pogosian/Imbroglio/settings.ini: + "/Rostislav Pogosian/Imbroglio/settings.ini": tags: - config when: @@ -267986,36 +268770,36 @@ Imbroglio: installDir: Imbroglio: {} launch: - /bin/Game.exe: - - arguments: '-w' + "/bin/Game.exe": + - arguments: "-w" when: - bit: 64 os: windows store: steam - workingDir: /bin - /bin/Game_no_sse.exe: + workingDir: "/bin" + "/bin/Game_no_sse.exe": - when: - bit: 64 os: windows store: steam - workingDir: /bin + workingDir: "/bin" steam: id: 1175420 -'Imhotep, Pyramid Builder': +"Imhotep, Pyramid Builder": installDir: Imhotep: {} launch: - /CrowdSimDesktop.app/Contents/MacOS/CrowdSimDesktop: + "/CrowdSimDesktop.app/Contents/MacOS/CrowdSimDesktop": - when: - bit: 64 os: mac store: steam - /Imhotep: + "/Imhotep": - when: - bit: 64 os: linux store: steam - /Imhotep.exe: + "/Imhotep.exe": - when: - bit: 64 os: windows @@ -268026,7 +268810,7 @@ Immanence: installDir: Immanence: {} launch: - /Immanence.exe: + "/Immanence.exe": - when: - os: windows store: steam @@ -268041,7 +268825,7 @@ Immersion: installDir: Immersion: {} launch: - /Immersion.exe: + "/Immersion.exe": - when: - os: windows store: steam @@ -268051,8 +268835,8 @@ Immersion Chess: installDir: Immersion Chess: {} launch: - /ImmersionChess.exe: - - arguments: '-novr' + "/ImmersionChess.exe": + - arguments: "-novr" when: - bit: 64 os: windows @@ -268063,7 +268847,7 @@ Immersive Poetry: installDir: Immersive Poetry: {} launch: - /WindowsNoEditor/ImmersivePoetry/Binaries/Win64/ImmersivePoetry-Win64-Shipping.exe: + "/WindowsNoEditor/ImmersivePoetry/Binaries/Win64/ImmersivePoetry-Win64-Shipping.exe": - when: - bit: 64 os: windows @@ -268074,18 +268858,18 @@ Immortal: installDir: Immortal: {} launch: - /Immortal/Immortal.exe: - - arguments: '-windowed' + "/Immortal/Immortal.exe": + - arguments: "-windowed" when: - os: windows store: steam steam: id: 1105970 -'Immortal Darkness: Curse of The Pale King': +"Immortal Darkness: Curse of The Pale King": installDir: Immortal Darkness Curse of The Pale King: {} launch: - /Immortal_Darkness.exe: + "/Immortal_Darkness.exe": - when: - os: windows store: steam @@ -268095,7 +268879,7 @@ Immortal Defense: installDir: ImmortalDefense: {} launch: - /idefense.exe: + "/idefense.exe": - when: - store: steam steam: @@ -268107,8 +268891,11 @@ Immortal Empire: installDir: Immortal Empire: {} launch: - /Immortal Empire.exe: + "/Immortal Empire.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam @@ -268118,7 +268905,7 @@ Immortal Girl: installDir: Immortal Girl: {} launch: - /Immortal Girl/Immortal Girl.exe: + "/Immortal Girl/Immortal Girl.exe": - when: - bit: 64 os: windows @@ -268129,15 +268916,15 @@ Immortal Heroes: installDir: Immortal Heroes: {} launch: - /Immortal Heroes.app: + "/Immortal Heroes.app": - when: - os: mac store: steam - /Immortal Heroes.exe: + "/Immortal Heroes.exe": - when: - os: windows store: steam - /Immortal Heroes.sh: + "/Immortal Heroes.sh": - when: - os: linux store: steam @@ -268145,12 +268932,12 @@ Immortal Heroes: id: 741450 Immortal Planet: files: - /Immortal_Planet: + "/Immortal_Planet": tags: - save when: - os: windows - /Immortal_Planet/settings.ini: + "/Immortal_Planet/settings.ini": tags: - config when: @@ -268160,7 +268947,7 @@ Immortal Planet: installDir: Immortal Planet: {} launch: - /Immortal Planet.exe: + "/Immortal Planet.exe": - when: - os: windows store: steam @@ -268170,20 +268957,20 @@ Immortal Quest: installDir: Immortal Quest: {} launch: - /ImmortalQuest_32_bit_os_V_1_steam_all.exe: + "/ImmortalQuest_32_bit_os_V_1_steam_all.exe": - when: - os: windows store: steam steam: id: 885890 -'Immortal Realms: Vampire Wars': +"Immortal Realms: Vampire Wars": files: - /AppData/LocalLow/Palindrome Interactive/Immortal Realms: + "/AppData/LocalLow/Palindrome Interactive/Immortal Realms": tags: - save when: - os: windows - /AppData/LocalLow/Palindrome Interactive/Immortal Realms/GameSettings.dat: + "/AppData/LocalLow/Palindrome Interactive/Immortal Realms/GameSettings.dat": tags: - config when: @@ -268193,8 +268980,8 @@ Immortal Quest: installDir: Immortal Realms: {} launch: - /Immortal Realms.exe: - - arguments: '-batchmode' + "/Immortal Realms.exe": + - arguments: "-batchmode" when: - store: steam registry: @@ -268205,18 +268992,18 @@ Immortal Quest: id: 1024480 Immortal Redneck: files: - /AppData/LocalLow/CremaGames/Immortal Redneck: + "/AppData/LocalLow/CremaGames/Immortal Redneck": tags: - config - save when: - os: windows - /unity3d/CremaGames/Immortal Redneck: + "/unity3d/CremaGames/Immortal Redneck": tags: - save when: - os: linux - /unity3d/CremaGames/Immortal Redneck/prefs: + "/unity3d/CremaGames/Immortal Redneck/prefs": tags: - config when: @@ -268226,18 +269013,18 @@ Immortal Redneck: installDir: Immortal Redneck: {} launch: - /ImmortalRedneck.app: - - arguments: '-nolog -multidisplay' + "/ImmortalRedneck.app": + - arguments: "-nolog -multidisplay" when: - os: mac store: steam - /ImmortalRedneck.exe: - - arguments: '-nolog -multidisplay' + "/ImmortalRedneck.exe": + - arguments: "-nolog -multidisplay" when: - os: windows store: steam - /ImmortalRedneck.x64: - - arguments: '-nolog -multidisplay' + "/ImmortalRedneck.x64": + - arguments: "-nolog -multidisplay" when: - os: linux store: steam @@ -268246,14 +269033,14 @@ Immortal Redneck: Immortal Truth: steam: id: 459200 -'Immortal: Unchained': +"Immortal: Unchained": files: - /userdata//369440/remote: + "/userdata//369440/remote": tags: - save when: - store: steam - /Toadman Interactive/Immortal Unchained: + "/Toadman Interactive/Immortal Unchained": tags: - config when: @@ -268261,19 +269048,19 @@ Immortal Truth: installDir: immortal: {} launch: - /immortal.exe: + "/immortal.exe": - when: - store: steam steam: id: 369440 Immortality: files: - /AppData/LocalLow/Half Mermaid Productions/Immortality//*.abr: + "/AppData/LocalLow/Half Mermaid Productions/Immortality//*.abr": tags: - save when: - os: windows - /Packages/HalfMermaid.Immortality_f2qdgtd4xgea8/SystemAppData/wgs: + "/Packages/HalfMermaid.Immortality_f2qdgtd4xgea8/SystemAppData/wgs": tags: - save when: @@ -268284,11 +269071,11 @@ Immortality: installDir: IMMORTALITY: {} launch: - /Immortality.app: + "/Immortality.app": - when: - os: mac store: steam - /Immortality.exe: + "/Immortality.exe": - when: - os: windows store: steam @@ -268298,7 +269085,7 @@ Immortals: installDir: Immortals: {} launch: - /Immortals.exe: + "/Immortals.exe": - when: - os: windows store: steam @@ -268306,18 +269093,18 @@ Immortals: id: 883270 Immortals Fenyx Rising: files: - /savegames//5405: + "/savegames//5405": tags: - save when: - os: windows store: uplay - /savegames//62326: + "/savegames//62326": tags: - save when: - - store: uplay - /Immortals Fenyx Rising: + - store: steam + "/Immortals Fenyx Rising": tags: - config when: @@ -268325,25 +269112,25 @@ Immortals Fenyx Rising: installDir: Immortals Fenyx Rising: {} launch: - /ImmortalsFenyxRising.exe: - - arguments: '-uplay_steam_mode' + "/ImmortalsFenyxRising.exe": + - arguments: "-uplay_steam_mode" when: - store: steam steam: id: 2221920 Immortals of Aveum: files: - /P3/Saved/Config/Windows: + "/P3/Saved/Config/Windows": tags: - config when: - os: windows - /P3/Saved/SaveGames: + "/P3/Saved/SaveGames": tags: - config when: - os: windows - /P3/Saved/SaveGames/: + "/P3/Saved/SaveGames/": tags: - save when: @@ -268351,7 +269138,7 @@ Immortals of Aveum: installDir: ImmortalsOfAveum: {} launch: - /x64/Windows/ImmortalsOfAveum.exe: + "/x64/Windows/ImmortalsOfAveum.exe": - when: - bit: 64 os: windows @@ -268362,13 +269149,13 @@ Immune - True Survival: installDir: Immune: {} launch: - /Immune.app/Contents/MacOS/Immune: - - arguments: '-steam' + "/Immune.app/Contents/MacOS/Immune": + - arguments: "-steam" when: - os: mac store: steam - /Immune.exe: - - arguments: '-steam' + "/Immune.exe": + - arguments: "-steam" when: - os: windows store: steam @@ -268378,7 +269165,7 @@ Immunity: installDir: Immunity: {} launch: - /Immunity.exe: + "/Immunity.exe": - when: - store: steam steam: @@ -268389,7 +269176,7 @@ Imp of the Sun: installDir: Imp of the Sun: {} launch: - /IotS.exe: + "/IotS.exe": - when: - bit: 64 os: windows @@ -268398,7 +269185,7 @@ Imp of the Sun: id: 1535780 Impact Point: files: - /userdata//1680550: + "/userdata//1680550": tags: - save when: @@ -268406,24 +269193,24 @@ Impact Point: installDir: Impact Point: {} launch: - /Impact Point.exe: + "/Impact Point.exe": - when: - store: steam steam: id: 1680550 Impact Winter: files: - /AppData/LocalLow/Mojo Bones Ltd/ImpactWinter: + "/AppData/LocalLow/Mojo Bones Ltd/ImpactWinter": tags: - save when: - os: windows - /AppData/LocalLow/Mojo Bones Ltd/ImpactWinter/iw_settings.dat: + "/AppData/LocalLow/Mojo Bones Ltd/ImpactWinter/iw_settings.dat": tags: - config when: - os: windows - /userdata//468000/remote: + "/userdata//468000/remote": tags: - save when: @@ -268431,7 +269218,7 @@ Impact Winter: installDir: ImpactWinter: {} launch: - /ImpactWinter.exe: + "/ImpactWinter.exe": - when: - os: windows store: steam @@ -268445,7 +269232,7 @@ Impale: installDir: Impale: {} launch: - /impale.exe: + "/impale.exe": - when: - os: windows store: steam @@ -268455,7 +269242,7 @@ Impale Your Friends!: installDir: IMPALE YOUR FRIENDS!: {} launch: - /ImpaleYourFriends.exe: + "/ImpaleYourFriends.exe": - when: - os: windows store: steam @@ -268471,26 +269258,26 @@ Impaler: installDir: Impaler: {} launch: - /Impaler.exe: + "/Impaler.exe": - when: - bit: 64 os: windows store: steam steam: id: 1573090 -'Imperator: Rome': +"Imperator: Rome": files: - /userdata//859580/remote/save games: + "/userdata//859580/remote/save games": tags: - save when: - store: steam - /Paradox Interactive/Imperator/pdx_settings.txt: + "/Paradox Interactive/Imperator/pdx_settings.txt": tags: - config when: - os: windows - /Paradox Interactive/Imperator/save games: + "/Paradox Interactive/Imperator/save games": tags: - save when: @@ -268505,7 +269292,7 @@ Imperatum: installDir: IMPERATUM - A Sci-fi Diablo-like ARPG: {} launch: - /Imperatum.exe: + "/Imperatum.exe": - when: - os: windows store: steam @@ -268515,7 +269302,7 @@ Imperi: installDir: Imperi: {} launch: - /imperi.exe: + "/imperi.exe": - when: - os: windows store: steam @@ -268525,7 +269312,7 @@ Imperi II: installDir: Imperi II: {} launch: - /imperi2.exe: + "/imperi2.exe": - when: - os: windows store: steam @@ -268535,7 +269322,7 @@ Imperia Online: installDir: Imperia Online: {} launch: - /ImperiaOnline.exe: + "/ImperiaOnline.exe": - when: - os: windows store: steam @@ -268543,7 +269330,7 @@ Imperia Online: id: 424780 Imperial Glory: files: - /config.sb: + "/config.sb": tags: - config when: @@ -268553,7 +269340,7 @@ Imperial Glory: installDir: Imperial Glory: {} launch: - /ImperialGlory.exe: + "/ImperialGlory.exe": - when: - os: windows store: steam @@ -268562,32 +269349,32 @@ Imperial Glory: Imperialism: gog: id: 1207659139 -'Imperialism II: The Age of Exploration': +"Imperialism II: The Age of Exploration": gog: id: 1207659153 -'Imperialism: Fate of India': +"Imperialism: Fate of India": installDir: Fate Of India: {} launch: - /Imperialism - Fate of India.app/Contents/MacOS/Imperialism - Fate of India: + "/Imperialism - Fate of India.app/Contents/MacOS/Imperialism - Fate of India": - when: - os: mac store: steam - /Imperialism - Fate of India.exe: + "/Imperialism - Fate of India.exe": - when: - os: windows store: steam steam: id: 885110 -'Imperialism: The Dark Continent': +"Imperialism: The Dark Continent": installDir: Imperialism - The Dark Continent: {} launch: - /Imperialism - The Dark Continent.app/Contents/MacOS/Imperialism - The Dark Continent: + "/Imperialism - The Dark Continent.app/Contents/MacOS/Imperialism - The Dark Continent": - when: - os: mac store: steam - /Imperialism - The Dark Continent.exe: + "/Imperialism - The Dark Continent.exe": - when: - os: windows store: steam @@ -268597,11 +269384,11 @@ Imperil: installDir: Imperil: {} launch: - /Imperil.app/contents/MacOS/nwjs: + "/Imperil.app/contents/MacOS/nwjs": - when: - os: mac store: steam - /Imperil.exe: + "/Imperil.exe": - when: - os: windows store: steam @@ -268613,22 +269400,22 @@ Imperium Galactica (1997): installDir: Imperium Galactica: {} launch: - /DOSBOX/DOSBox.exe: - - arguments: '-conf dosbox_ig.conf -conf dosbox_ig_single.conf -noconsole -c exit' + "/DOSBOX/DOSBox.exe": + - arguments: "-conf dosbox_ig.conf -conf dosbox_ig_single.conf -noconsole -c exit" when: - os: windows store: steam - workingDir: /DOSBOX - - arguments: '-conf dosbox_ig.conf -conf dosbox_ig_settings.conf -noconsole -c exit' + workingDir: "/DOSBOX" + - arguments: "-conf dosbox_ig.conf -conf dosbox_ig_settings.conf -noconsole -c exit" when: - os: windows store: steam - workingDir: /DOSBOX + workingDir: "/DOSBOX" steam: id: 573790 -'Imperium Galactica II: Alliances': +"Imperium Galactica II: Alliances": files: - /Saves: + "/Saves": tags: - save when: @@ -268638,15 +269425,15 @@ Imperium Galactica (1997): installDir: Imperium Galactica II: {} launch: - /Imperium Galactica II.app/Contents/MacOS/Imperium Galactica II: + "/Imperium Galactica II.app/Contents/MacOS/Imperium Galactica II": - when: - os: mac store: steam - /ig2: + "/ig2": - when: - os: linux store: steam - /ig2.exe: + "/ig2.exe": - when: - os: windows store: steam @@ -268661,19 +269448,19 @@ Imperium Romanum (2008): installDir: Imperium Romanum: {} launch: - /Imperium Romanum.exe: + "/Imperium Romanum.exe": - when: - store: steam steam: id: 23400 -'Imperiums: Greek Wars': +"Imperiums: Greek Wars": files: - /Data/Game/user.config: + "/Data/Game/user.config": tags: - config when: - os: windows - /Data/Saves: + "/Data/Saves": tags: - save when: @@ -268681,16 +269468,16 @@ Imperium Romanum (2008): installDir: Imperiums Greek Wars: {} launch: - /Launcher.exe: + "/Launcher.exe": - when: - store: steam steam: id: 1183470 -'Imperivm: Great Battles of Rome HD Edition': +"Imperivm: Great Battles of Rome HD Edition": installDir: Imperivm - Great Battles of Rome HD: {} launch: - /gbr.exe: + "/gbr.exe": - when: - os: windows store: steam @@ -268700,7 +269487,7 @@ Impire: installDir: Impire: {} launch: - /Impire.exe: + "/Impire.exe": - when: - store: steam steam: @@ -268709,7 +269496,7 @@ Impixable: installDir: Impixable: {} launch: - /Impixable.exe: + "/Impixable.exe": - when: - os: windows store: steam @@ -268719,7 +269506,7 @@ Implements of Hell: installDir: Implements of Hell: {} launch: - /ImplementsOfHell.exe: + "/ImplementsOfHell.exe": - when: - os: windows store: steam @@ -268731,7 +269518,7 @@ Impossamole: installDir: Impossamole: {} launch: - /impossamole.exe: + "/impossamole.exe": - when: - os: windows store: steam @@ -268741,15 +269528,15 @@ Impossiball: installDir: Impossiball: {} launch: - /Impossiball.app: + "/Impossiball.app": - when: - os: mac store: steam - /Impossiball.exe: + "/Impossiball.exe": - when: - os: windows store: steam - /Impossiball.x86: + "/Impossiball.x86": - when: - os: linux store: steam @@ -268759,15 +269546,15 @@ Impossiball - Gamers Challenge: installDir: Impossiball: {} launch: - /Impossiball.app: + "/Impossiball.app": - when: - os: mac store: steam - /Impossiball.exe: + "/Impossiball.exe": - when: - os: windows store: steam - /Impossiball.x86_64: + "/Impossiball.x86_64": - when: - os: linux store: steam @@ -268775,7 +269562,7 @@ Impossiball - Gamers Challenge: id: 1181160 Impossible Creatures: files: - /Profiles: + "/Profiles": tags: - config - save @@ -268786,31 +269573,31 @@ Impossible Creatures: installDir: Impossible Creatures: {} launch: - /IC.exe: + "/IC.exe": - when: - os: windows store: steam - - arguments: '-modname Insect' + - arguments: "-modname Insect" when: - os: windows store: steam - - arguments: '-window' + - arguments: "-window" when: - os: windows store: steam - /ICConfig.exe: + "/ICConfig.exe": - when: - os: windows store: steam - /MissionEditor.exe: + "/MissionEditor.exe": - when: - os: windows store: steam - /WorkshopTool/ICWorkshopTool.exe: + "/WorkshopTool/ICWorkshopTool.exe": - when: - os: windows store: steam - /WorkshopTool/IC_Wokshop_Manual_v1.0.pdf: + "/WorkshopTool/IC_Wokshop_Manual_v1.0.pdf": - when: - os: windows store: steam @@ -268820,11 +269607,11 @@ Impossible Fighter Frog: installDir: IMPOSSIBLE FIGHTER FROG: {} launch: - /IMPOSSIBLE FIGHTER FROG.app: + "/IMPOSSIBLE FIGHTER FROG.app": - when: - os: mac store: steam - /IMPOSSIBLE FIGHTER FROG.exe: + "/IMPOSSIBLE FIGHTER FROG.exe": - when: - os: windows store: steam @@ -268837,7 +269624,7 @@ Impossible Jumpy Quest: installDir: Impossible Jumpy Quest: {} launch: - /ImpossibleJumpyQuest.exe: + "/ImpossibleJumpyQuest.exe": - when: - os: windows store: steam @@ -268847,7 +269634,7 @@ Impossible Quest: installDir: Impossible Quest: {} launch: - /Impossible Quest.exe: + "/Impossible Quest.exe": - when: - os: windows store: steam @@ -268857,7 +269644,7 @@ Impossible Runner: installDir: Impossible Runner: {} launch: - /Impossible Runner.exe: + "/Impossible Runner.exe": - when: - os: windows store: steam @@ -268867,7 +269654,7 @@ Impossible Soaring: installDir: Impossible Soaring: {} launch: - /ImpossibleSoaring.exe: + "/ImpossibleSoaring.exe": - when: - store: steam steam: @@ -268876,7 +269663,7 @@ Impossible Spell Card: installDir: th143: {} launch: - /th143.exe: + "/th143.exe": - when: - os: windows store: steam @@ -268891,7 +269678,7 @@ Impossibox: installDir: Impossibox: {} launch: - /Impossibox.exe: + "/Impossibox.exe": - when: - os: windows store: steam @@ -268899,19 +269686,19 @@ Impossibox: id: 756200 Impostor Factory: files: - /Library/Application Support/freebirdgames/impostorfactory: + "/Library/Application Support/freebirdgames/impostorfactory": tags: - config - save when: - os: mac - /freebirdgames/impostorfactory: + "/freebirdgames/impostorfactory": tags: - config - save when: - os: windows - /freebirdgames/impostorfactory: + "/freebirdgames/impostorfactory": tags: - config - save @@ -268922,29 +269709,29 @@ Impostor Factory: installDir: Impostor Factory: {} launch: - /Impostor Factory/ImpostorFactory.app/Contents/MacOS/steamshim_parent: - - arguments: Impostor\\ Factory/ImpostorFactory.app/Contents/MacOS/mkxp + "/Impostor Factory/ImpostorFactory.app/Contents/MacOS/steamshim_parent": + - arguments: "Impostor\\\\ Factory/ImpostorFactory.app/Contents/MacOS/mkxp" when: - os: mac store: steam - /Impostor Factory/steamshim/parent.amd64: - - arguments: ./ImpostorFactory.x86_64 + "/Impostor Factory/steamshim/parent.amd64": + - arguments: "./ImpostorFactory.x86_64" when: - bit: 64 os: linux store: steam - workingDir: /Impostor Factory - /Impostor Factory/steamshim_parent.exe: + workingDir: "/Impostor Factory" + "/Impostor Factory/steamshim_parent.exe": - when: - os: windows store: steam - workingDir: /Impostor Factory - /Impostor Factory/steamshim_parent64.exe: + workingDir: "/Impostor Factory" + "/Impostor Factory/steamshim_parent64.exe": - when: - bit: 64 os: windows store: steam - workingDir: /Impostor Factory + workingDir: "/Impostor Factory" steam: id: 1182620 Impostor syndrome: @@ -268954,7 +269741,7 @@ Impresja: installDir: Impresja: {} launch: - /Impresja.exe: + "/Impresja.exe": - when: - os: windows store: steam @@ -268964,7 +269751,7 @@ Impressions: installDir: Impressions: {} launch: - /Impressions.exe: + "/Impressions.exe": - when: - os: windows store: steam @@ -268974,20 +269761,20 @@ Imprint-X: installDir: imprint-X: {} launch: - /imprint-X.app: + "/imprint-X.app": - when: - os: mac store: steam - /imprint-X.exe: + "/imprint-X.exe": - when: - os: windows store: steam - /imprint-X.x86: + "/imprint-X.x86": - when: - bit: 32 os: linux store: steam - /imprint-X.x86_64: + "/imprint-X.x86_64": - when: - bit: 64 os: linux @@ -268998,11 +269785,11 @@ Imprisoned Light: installDir: Imprisoned Light: {} launch: - /ImprisonedLight.app/Contents/MacOS/ImprisonedLight: + "/ImprisonedLight.app/Contents/MacOS/ImprisonedLight": - when: - os: mac store: steam - /ImprisonedLight.exe: + "/ImprisonedLight.exe": - when: - os: windows store: steam @@ -269012,7 +269799,7 @@ Imprisoned Queen: installDir: Imprisoned Queen: {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: @@ -269021,20 +269808,20 @@ Impulse Revolution: installDir: Impulse Revolution: {} launch: - /Impulse Revolution.app: + "/Impulse Revolution.app": - when: - os: mac store: steam - /Impulse Revolution.exe: + "/Impulse Revolution.exe": - when: - os: windows store: steam - /Impulse Revolution.x86: + "/Impulse Revolution.x86": - when: - bit: 32 os: linux store: steam - /Impulse Revolution.x86_64: + "/Impulse Revolution.x86_64": - when: - bit: 64 os: linux @@ -269045,12 +269832,12 @@ Impulse of War: installDir: Impulse of War: {} launch: - /iofw.exe: + "/iofw.exe": - when: - bit: 32 os: windows store: steam - /iow.exe: + "/iow.exe": - when: - bit: 64 os: windows @@ -269061,24 +269848,24 @@ Impulse!: installDir: Impulse!: {} launch: - /nw.exe: - - arguments: '--in-process-gpu' + "/nw.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam steam: id: 436300 -'Impulse: Space Combat': +"Impulse: Space Combat": steam: id: 622230 Impulsion: files: - /Impulsion/Saved/Config/WindowsNoEditor: + "/Impulsion/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /Impulsion/Saved/SaveGames: + "/Impulsion/Saved/SaveGames": tags: - save when: @@ -269086,7 +269873,7 @@ Impulsion: installDir: Impulsion: {} launch: - /Impulsion.exe: + "/Impulsion.exe": - when: - bit: 64 os: windows @@ -269097,7 +269884,7 @@ Impulsow: installDir: Impulsow: {} launch: - /Impulsow.exe: + "/Impulsow.exe": - when: - store: steam steam: @@ -269109,7 +269896,7 @@ In - Sight: id: 1161110 In Between: files: - /userdata//388420/remote: + "/userdata//388420/remote": tags: - save when: @@ -269117,15 +269904,15 @@ In Between: installDir: In Between: {} launch: - /In Between.app: + "/In Between.app": - when: - os: mac store: steam - /In Between.exe: + "/In Between.exe": - when: - os: windows store: steam - /In Between.x86: + "/In Between.x86": - when: - os: linux store: steam @@ -269137,7 +269924,7 @@ In Between: id: 388420 In Between Games: files: - /MMFApplications/InBetweenGamesSave: + "/MMFApplications/InBetweenGamesSave": tags: - save when: @@ -269145,7 +269932,7 @@ In Between Games: installDir: In Between Games: {} launch: - /ibg.exe: + "/ibg.exe": - when: - os: windows store: steam @@ -269154,19 +269941,19 @@ In Between Games: In Blood: steam: id: 1116750 -'In Case of Emergency, Release Raptor': +"In Case of Emergency, Release Raptor": installDir: - 'In Case of Emergency, Release Raptor': {} + "In Case of Emergency, Release Raptor": {} launch: - /ReleaseRaptor.app: + "/ReleaseRaptor.app": - when: - os: mac store: steam - /ReleaseRaptor.exe: + "/ReleaseRaptor.exe": - when: - os: windows store: steam - /ReleaseRaptorLinux.x86_64: + "/ReleaseRaptorLinux.x86_64": - when: - bit: 64 os: linux @@ -269175,12 +269962,12 @@ In Blood: id: 471770 In Celebration of Violence: files: - /AppData/LocalLow/Julian Edison/In Celebration of Violence: + "/AppData/LocalLow/Julian Edison/In Celebration of Violence": tags: - save when: - os: windows - /Library/Application Support/unity.Julian Edison.In Celebration of Violence: + "/Library/Application Support/unity.Julian Edison.In Celebration of Violence": tags: - save when: @@ -269188,21 +269975,21 @@ In Celebration of Violence: installDir: In Celebration of Violence: {} launch: - /InCelebrationOfViolence.app/Contents/MacOS/InCelebrationOfViolence: + "/InCelebrationOfViolence.app/Contents/MacOS/InCelebrationOfViolence": - when: - os: mac store: steam - /InCelebrationOfViolence.exe: + "/InCelebrationOfViolence.exe": - when: - bit: 32 os: windows store: steam - /InCelebrationOfViolence64.exe: + "/InCelebrationOfViolence64.exe": - when: - bit: 64 os: windows store: steam - /InCelebrationOfViolence_Linux.x86_64: + "/InCelebrationOfViolence_Linux.x86_64": - when: - os: linux store: steam @@ -269210,7 +269997,7 @@ In Celebration of Violence: id: 509570 In Cold Blood: files: - /GOG Games/In Cold Blood/engine/linc/saves: + "/GOG Games/In Cold Blood/engine/linc/saves": tags: - save when: @@ -269221,7 +270008,7 @@ In Darkness: installDir: In Darkness: {} launch: - /InDarkness.exe: + "/InDarkness.exe": - when: - bit: 64 os: windows @@ -269237,7 +270024,7 @@ In Defense of Aliens: installDir: Alien911: {} launch: - /Alien911.exe: + "/Alien911.exe": - when: - os: windows store: steam @@ -269247,11 +270034,11 @@ In Dungeon: installDir: In Dungeon: {} launch: - /In Dungeon.exe: + "/In Dungeon.exe": - when: - os: windows store: steam - /runner: + "/runner": - when: - os: linux store: steam @@ -269264,20 +270051,20 @@ In Exilium: installDir: In Exilium: {} launch: - /In Exilium.app: + "/In Exilium.app": - when: - os: mac store: steam - /In Exilium.exe: + "/In Exilium.exe": - when: - os: windows store: steam - /In_Exilium_Linux.x86: + "/In_Exilium_Linux.x86": - when: - bit: 32 os: linux store: steam - /In_Exilium_Linux.x86_64: + "/In_Exilium_Linux.x86_64": - when: - bit: 64 os: linux @@ -269288,7 +270075,7 @@ In Extremis (2016): installDir: In Extremis: {} launch: - /inExtremis.exe: + "/inExtremis.exe": - when: - os: windows store: steam @@ -269298,25 +270085,25 @@ In Fear I Trust: installDir: In Fear I Trust: {} launch: - /Binaries/Win32/IfitGame-Win32-Shipping.exe: + "/Binaries/Win32/IfitGame-Win32-Shipping.exe": - when: - os: windows store: steam steam: id: 522690 -'In Game Adventure: Legend of Monsters': +"In Game Adventure: Legend of Monsters": installDir: In Game Adventure Legend Of Monsters: {} launch: - /In Game Adventure Legend of Monsters.exe: + "/In Game Adventure Legend of Monsters.exe": - when: - os: windows store: steam - /In Game Adventure Legend of Monsters.x86: + "/In Game Adventure Legend of Monsters.x86": - when: - os: linux store: steam - /In Game Adventure.app: + "/In Game Adventure.app": - when: - os: mac store: steam @@ -269329,7 +270116,7 @@ In League: id: 756290 In Memoriam: files: - /In_Memoriam_Save_Files: + "/In_Memoriam_Save_Files": tags: - save when: @@ -269343,7 +270130,7 @@ In Memory of Titan: installDir: In memory of TITAN: {} launch: - /In memory of TITAN.exe: + "/In memory of TITAN.exe": - when: - bit: 64 os: windows @@ -269354,7 +270141,7 @@ In My Mind: installDir: in My Mind: {} launch: - /in_My_MIND.exe: + "/in_My_MIND.exe": - when: - os: windows store: steam @@ -269367,7 +270154,7 @@ In Orbit: id: 1001550 In Other Waters: files: - /AppData/LocalLow/Jump Over the Age/In Other Waters/save*.data: + "/AppData/LocalLow/Jump Over the Age/In Other Waters/save*.data": tags: - save when: @@ -269377,11 +270164,11 @@ In Other Waters: installDir: In Other Waters: {} launch: - /In Other Waters.app/Contents/MacOS/In Other Waters: + "/In Other Waters.app/Contents/MacOS/In Other Waters": - when: - os: mac store: steam - /In Other Waters.exe: + "/In Other Waters.exe": - when: - os: windows store: steam @@ -269395,7 +270182,7 @@ In Passing: installDir: In Passing: {} launch: - /WindowsNoEditor/Unbelievable.exe: + "/WindowsNoEditor/Unbelievable.exe": - when: - os: windows store: steam @@ -269405,7 +270192,7 @@ In Retrospect: installDir: In Retrospect: {} launch: - /in-retrospect.exe: + "/in-retrospect.exe": - when: - os: windows store: steam @@ -269415,7 +270202,7 @@ In Search of a Home: installDir: In Search of a Home: {} launch: - /InSearch.exe: + "/InSearch.exe": - when: - bit: 64 os: windows @@ -269426,12 +270213,12 @@ In Silence: installDir: In Silence: {} launch: - /In Silence.exe: + "/In Silence.exe": - arguments: +connect_lobby <64-bit lobby Steam ID> when: - os: windows store: steam - /InSilenceBuild.app: + "/InSilenceBuild.app": - when: - os: mac store: steam @@ -269443,12 +270230,12 @@ In Silence: id: 1361000 In Sound Mind: files: - /AppData/LocalLow/We Create Stuff/In Sound Mind: + "/AppData/LocalLow/We Create Stuff/In Sound Mind": tags: - save when: - os: windows - /AppData/LocalLow/We Create Stuff/In Sound Mind/Settings.ism: + "/AppData/LocalLow/We Create Stuff/In Sound Mind/Settings.ism": tags: - config when: @@ -269458,7 +270245,7 @@ In Sound Mind: installDir: InSoundMind: {} launch: - /In Sound Mind.exe: + "/In Sound Mind.exe": - when: - os: windows store: steam @@ -269472,7 +270259,7 @@ In Space: installDir: in Space: {} launch: - /in Space.exe: + "/in Space.exe": - when: - os: windows store: steam @@ -269482,22 +270269,22 @@ In Space We Brawl: installDir: In Space We Brawl: {} launch: - /InSpaceWeBrawl_osx32_steam.app: + "/InSpaceWeBrawl_osx32_steam.app": - when: - bit: 32 os: mac store: steam - /InSpaceWeBrawl_osx64.app: + "/InSpaceWeBrawl_osx64.app": - when: - bit: 64 os: mac store: steam - /InSpaceWeBrawl_x64_steam.exe: + "/InSpaceWeBrawl_x64_steam.exe": - when: - bit: 64 os: windows store: steam - /InSpaceWeBrawl_x86_steam.exe: + "/InSpaceWeBrawl_x86_steam.exe": - when: - bit: 32 os: windows @@ -269508,7 +270295,7 @@ In The Bag: installDir: In The Bag: {} launch: - /InTheBag.exe: + "/InTheBag.exe": - when: - os: windows store: steam @@ -269521,7 +270308,7 @@ In The Dark: installDir: In The Dark: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -269531,7 +270318,7 @@ In The Dark (2018): installDir: In The Dark: {} launch: - /inthedark.exe: + "/inthedark.exe": - when: - os: windows store: steam @@ -269541,7 +270328,7 @@ In The Ember: installDir: InTheEmber: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -269554,7 +270341,7 @@ In The Long Run The Game: installDir: In The Long Run: {} launch: - /InTheLongRun_TheGame.exe: + "/InTheLongRun_TheGame.exe": - when: - bit: 64 os: windows @@ -269563,7 +270350,7 @@ In The Long Run The Game: id: 788870 In Verbis Virtus: files: - /Binaries/Win32/UserCode/Saves: + "/Binaries/Win32/UserCode/Saves": tags: - save when: @@ -269576,16 +270363,16 @@ In Verbis Virtus: installDir: In Verbis Virtus: {} launch: - /Binaries/Win32/IVV.exe: - - arguments: '-seekfreeloading' + "/Binaries/Win32/IVV.exe": + - arguments: "-seekfreeloading" when: - os: windows store: steam - - arguments: '-seekfreeloading -windowed resx=800 resy=600' + - arguments: "-seekfreeloading -windowed resx=800 resy=600" when: - os: windows store: steam - /InVerbisVirtus.app/Contents/Resources/drive_c/Program Files/In Verbis Virtus/Binaries/Win32/UserCode/sutilsmo: + "/InVerbisVirtus.app/Contents/Resources/drive_c/Program Files/In Verbis Virtus/Binaries/Win32/UserCode/sutilsmo": - when: - os: mac store: steam @@ -269595,7 +270382,7 @@ In Vitra: installDir: In Vitra: {} launch: - /sgb_rpgplayer.exe: + "/sgb_rpgplayer.exe": - when: - os: windows store: steam @@ -269610,7 +270397,7 @@ In Your Realm: installDir: In Your Realm: {} launch: - /InYourRealm.exe: + "/InYourRealm.exe": - when: - os: windows store: steam @@ -269623,17 +270410,17 @@ In the Darkness of the Sea: installDir: In the Darkness of the Sea: {} launch: - /InTheDarknessoftheSea.exe: + "/InTheDarknessoftheSea.exe": - when: - os: windows store: steam steam: id: 587840 -In the Dead of Night - Urszula's Revenge: +"In the Dead of Night - Urszula's Revenge": installDir: - In The Dead Of Night - Urszula's Revenge: {} + "In The Dead Of Night - Urszula's Revenge": {} launch: - /InTheDeadOfNight.exe: + "/InTheDeadOfNight.exe": - when: - store: steam steam: @@ -269647,11 +270434,11 @@ In the Name of Sin: installDir: In the name of sin: {} launch: - /Inthenameofsin.exe: + "/Inthenameofsin.exe": - when: - os: windows store: steam - /Running.app: + "/Running.app": - when: - os: mac store: steam @@ -269661,15 +270448,15 @@ In the Pause Between the Ringing: installDir: In the Pause Between the Ringing: {} launch: - /Ringing.app: + "/Ringing.app": - when: - os: mac store: steam - /Ringing.exe: + "/Ringing.exe": - when: - os: windows store: steam - /Ringing.x86: + "/Ringing.x86": - when: - os: linux store: steam @@ -269679,7 +270466,7 @@ In the Raven Shadow - Ve stínu havrana: installDir: Raven: {} launch: - /raven.exe: + "/raven.exe": - when: - os: windows store: steam @@ -269689,15 +270476,15 @@ In the Service of Mrs. Claus: installDir: In the Service of Mrs Claus: {} launch: - /In the Service of Mrs Claus.app/Contents/MacOS/In the Service of Mrs Claus: + "/In the Service of Mrs Claus.app/Contents/MacOS/In the Service of Mrs Claus": - when: - os: mac store: steam - /InTheServiceOfMrsClaus: + "/InTheServiceOfMrsClaus": - when: - os: linux store: steam - /InTheServiceOfMrsClaus.exe: + "/InTheServiceOfMrsClaus.exe": - when: - os: windows store: steam @@ -269707,7 +270494,7 @@ In the Shadow of the Truth: installDir: In The Shadow Of The Truth: {} launch: - /in the Shadow of the Truth.exe: + "/in the Shadow of the Truth.exe": - when: - os: windows store: steam @@ -269715,12 +270502,12 @@ In the Shadow of the Truth: id: 498680 In the Shadows: files: - /InTheShadows: + "/InTheShadows": tags: - config when: - os: windows - /InTheShadows/savefiles: + "/InTheShadows/savefiles": tags: - save when: @@ -269730,17 +270517,17 @@ In the Shadows: installDir: In The Shadows: {} launch: - /ITS: + "/ITS": - when: - bit: 64 os: linux store: steam - /ITS.app/Contents/MacOS/ITS: + "/ITS.app/Contents/MacOS/ITS": - when: - bit: 64 os: mac store: steam - /ITS.exe: + "/ITS.exe": - when: - bit: 64 os: windows @@ -269751,11 +270538,11 @@ In the Shadows: - config steam: id: 470580 -'In the Thrall of Darkness: The Gift of Dreams': +"In the Thrall of Darkness: The Gift of Dreams": installDir: In the thrall of darkness The gift of dreams: {} launch: - /In the thrall of darkness.exe: + "/In the thrall of darkness.exe": - when: - os: windows store: steam @@ -269764,22 +270551,22 @@ In the Shadows: In the Valley of Gods: steam: id: 687440 -'In the Village of Grandfather: Summer,Sun,Heat.': +"In the Village of Grandfather: Summer,Sun,Heat.": installDir: Gamer: {} launch: - /win64/VG.exe: + "/win64/VG.exe": - when: - os: windows store: steam steam: id: 690500 -'In the World End, You and Me the Forget''s Legend': +"In the World End, You and Me the Forget's Legend": installDir: Nilgamer: {} launch: - /The_Forgets_Legend/Nilgamer.exe: - - arguments: '--in-process-gpu' + "/The_Forgets_Legend/Nilgamer.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam @@ -269789,11 +270576,11 @@ In the beginning: installDir: In the beginning: {} launch: - /In the beginning.app/Contents/MacOS/In the beginning: + "/In the beginning.app/Contents/MacOS/In the beginning": - when: - os: mac store: steam - /In the beginning.exe: + "/In the beginning.exe": - when: - os: windows store: steam @@ -269803,7 +270590,7 @@ In your Shadow: installDir: iys: {} launch: - /inyourshadow.exe: + "/inyourshadow.exe": - when: - os: windows store: steam @@ -269813,7 +270600,7 @@ In.My.Mind: installDir: InMyMind: {} launch: - /InMyMind.exe: + "/InMyMind.exe": - when: - os: windows store: steam @@ -269823,21 +270610,21 @@ InCell VR: installDir: InCell: {} launch: - /InCell.app: + "/InCell.app": - when: - os: mac store: steam - /InCell.exe: - - arguments: '-vrmode None' + "/InCell.exe": + - arguments: "-vrmode None" when: - os: windows store: steam - /InCell.x86: + "/InCell.x86": - when: - bit: 32 os: linux store: steam - /InCell.x86_64: + "/InCell.x86_64": - when: - bit: 64 os: linux @@ -269846,12 +270633,12 @@ InCell VR: id: 396030 InFlux: files: - /Binaries/UDKGame/Config: + "/Binaries/UDKGame/Config": tags: - config when: - os: windows - /Binaries/Win32/SaveInfo.bin: + "/Binaries/Win32/SaveInfo.bin": tags: - save when: @@ -269861,16 +270648,16 @@ InFlux: installDir: InFlux: {} launch: - /Binaries/Win32/UDK.exe: + "/Binaries/Win32/UDK.exe": - when: - os: windows store: steam - workingDir: /Binaries - /InFlux.app: + workingDir: "/Binaries" + "/InFlux.app": - when: - os: mac store: steam - workingDir: /InFlux.app + workingDir: "/InFlux.app" steam: id: 246980 InFlux Redux: @@ -269880,7 +270667,7 @@ InGame.exe: installDir: ingame: {} launch: - /InGameExe.exe: + "/InGameExe.exe": - when: - os: windows store: steam @@ -269890,21 +270677,21 @@ InMind 2 VR: installDir: InMind 2: {} launch: - /InMind 2.app: + "/InMind 2.app": - when: - os: mac store: steam - /InMind 2.exe: - - arguments: '-vrmode None' + "/InMind 2.exe": + - arguments: "-vrmode None" when: - os: windows store: steam - /InMind 2.x86: + "/InMind 2.x86": - when: - bit: 32 os: linux store: steam - /InMind 2.x86_64: + "/InMind 2.x86_64": - when: - bit: 64 os: linux @@ -269915,21 +270702,21 @@ InMind VR: installDir: InMind: {} launch: - /InMind.app: + "/InMind.app": - when: - os: mac store: steam - /InMind.exe: - - arguments: '-vrmode None' + "/InMind.exe": + - arguments: "-vrmode None" when: - os: windows store: steam - /InMind.x86: + "/InMind.x86": - when: - bit: 32 os: linux store: steam - /InMind.x86_64: + "/InMind.x86_64": - when: - bit: 64 os: linux @@ -269942,7 +270729,7 @@ InMind VR: id: 343740 InMomentum: files: - /inMomentum/Engine/Config: + "/inMomentum/Engine/Config": tags: - config when: @@ -269950,14 +270737,14 @@ InMomentum: installDir: inMomentum: {} launch: - /Binaries/Win32/IMGame.exe: + "/Binaries/Win32/IMGame.exe": - when: - store: steam steam: id: 110400 InSynch: files: - /profile.zob: + "/profile.zob": tags: - save when: @@ -269965,15 +270752,15 @@ InSynch: installDir: inSynch: {} launch: - /inSynch.exe: + "/inSynch.exe": - when: - os: windows store: steam - /inSynch.sh: + "/inSynch.sh": - when: - os: linux store: steam - /inSynchSteam.app/Contents/MacOS/inSynchSteam: + "/inSynchSteam.app/Contents/MacOS/inSynchSteam": - when: - os: mac store: steam @@ -269988,14 +270775,14 @@ Inaccessible World: installDir: Inaccessible world: {} launch: - /inaccessibleWorld.exe: + "/inaccessibleWorld.exe": - when: - store: steam steam: id: 798560 Inago Rage: files: - /prefs.dat: + "/prefs.dat": tags: - config when: @@ -270003,11 +270790,11 @@ Inago Rage: installDir: Drunken Robot Pornography: {} launch: - /DRP.exe: + "/DRP.exe": - when: - os: windows store: steam - /DRP.x86: + "/DRP.x86": - when: - os: linux store: steam @@ -270019,7 +270806,7 @@ Inbento: installDir: inbento: {} launch: - /inbento.exe: + "/inbento.exe": - when: - os: windows store: steam @@ -270027,12 +270814,12 @@ Inbento: id: 1567440 Inbetween Land: files: - /Inbetween Land: + "/Inbetween Land": tags: - save when: - os: windows - /Inbetween Land/users.xml: + "/Inbetween Land/users.xml": tags: - config when: @@ -270040,7 +270827,7 @@ Inbetween Land: installDir: Inbetween Land: {} launch: - /InbetweenLand.exe: + "/InbetweenLand.exe": - when: - os: windows store: steam @@ -270058,7 +270845,7 @@ Inbound UFO: installDir: Inbound UFO: {} launch: - /Inbound UFO.exe: + "/Inbound UFO.exe": - when: - bit: 64 os: windows @@ -270069,15 +270856,15 @@ Inca Blocks: installDir: Inca Blocks: {} launch: - /Inca Blocks.app/Contents/MacOS/Inca Blocks: + "/Inca Blocks.app/Contents/MacOS/Inca Blocks": - when: - os: mac store: steam - /Inca Blocks.exe: + "/Inca Blocks.exe": - when: - os: windows store: steam - /Inca Blocks.x86: + "/Inca Blocks.x86": - when: - os: linux store: steam @@ -270087,15 +270874,15 @@ Inca Marbles: installDir: Inca Marbles: {} launch: - /Inca Marbles.app/Contents/MacOS/Inca Marbles: + "/Inca Marbles.app/Contents/MacOS/Inca Marbles": - when: - os: mac store: steam - /Inca Marbles.exe: + "/Inca Marbles.exe": - when: - os: windows store: steam - /Inca Marbles.x86: + "/Inca Marbles.x86": - when: - os: linux store: steam @@ -270105,13 +270892,13 @@ Incandescent: installDir: Incandescent: {} launch: - /Incandecsent.exe: + "/Incandecsent.exe": - when: - store: steam - - arguments: '-german' + - arguments: "-german" when: - store: steam - - arguments: '-russian' + - arguments: "-russian" when: - store: steam steam: @@ -270120,20 +270907,20 @@ Incandescent 2: installDir: Incandescent 2: {} launch: - /Incandescent 2.exe: + "/Incandescent 2.exe": - when: - os: windows store: steam steam: id: 889790 -'Incarna: Broken': +"Incarna: Broken": steam: id: 747480 Incel Clicker: installDir: Incel Clicker: {} launch: - /Incel_Clicker.exe: + "/Incel_Clicker.exe": - when: - store: steam steam: @@ -270142,7 +270929,7 @@ Inch by Inch: installDir: Inch by Inch: {} launch: - /Inch By Inch.exe: + "/Inch By Inch.exe": - when: - os: windows store: steam @@ -270152,11 +270939,11 @@ Incident Commander: installDir: Incident Commander: {} launch: - /Incident Commander.app/Contents/MacOS/Incident Commander: + "/Incident Commander.app/Contents/MacOS/Incident Commander": - when: - os: mac store: steam - /Incident Commander.exe: + "/Incident Commander.exe": - when: - os: windows store: steam @@ -270166,7 +270953,7 @@ Incision: installDir: INCISION: {} launch: - /INCISION.exe: + "/INCISION.exe": - when: - os: windows store: steam @@ -270174,7 +270961,7 @@ Incision: id: 1734680 Incitement 3: files: - /Game.ini: + "/Game.ini": tags: - config - save @@ -270183,7 +270970,7 @@ Incitement 3: installDir: Incitement 3: {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: @@ -270192,7 +270979,7 @@ Inclement: installDir: Inclement: {} launch: - /Inclement.exe: + "/Inclement.exe": - when: - os: windows store: steam @@ -270202,7 +270989,7 @@ Incline: installDir: Incline: {} launch: - /Incline.exe: + "/Incline.exe": - when: - os: windows store: steam @@ -270212,7 +270999,7 @@ Incognito: installDir: Incognito: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -270220,12 +271007,12 @@ Incognito: id: 348530 Incoming: files: - /save: + "/save": tags: - save when: - os: windows - /save/incoming.cfg: + "/save/incoming.cfg": tags: - config when: @@ -270238,21 +271025,21 @@ Incoming: installDir: Incoming + Incoming Forces: {} launch: - /Incoming Forces/forces.exe: + "/Incoming Forces/forces.exe": - when: - store: steam - workingDir: /Incoming Forces - /Incoming/incoming.exe: + workingDir: "/Incoming Forces" + "/Incoming/incoming.exe": - when: - store: steam - workingDir: /Incoming + workingDir: "/Incoming" steam: id: 283390 Incoming Evil: installDir: Incoming Evil: {} launch: - /IncomingEvil.exe: + "/IncomingEvil.exe": - when: - bit: 64 os: windows @@ -270268,14 +271055,14 @@ Incoming Forces: installDir: Incoming + Incoming Forces: {} launch: - /Incoming Forces/forces.exe: + "/Incoming Forces/forces.exe": - when: - store: steam - workingDir: /Incoming Forces - /Incoming/incoming.exe: + workingDir: "/Incoming Forces" + "/Incoming/incoming.exe": - when: - store: steam - workingDir: /Incoming + workingDir: "/Incoming" registry: HKEY_CURRENT_USER/Software/Rage/Incoming Forces: tags: @@ -270287,7 +271074,7 @@ Incompetent Alchemist: installDir: alchemist_Release.win32: {} launch: - /Incompetent Alchemist.exe: + "/Incompetent Alchemist.exe": - when: - store: steam steam: @@ -270296,15 +271083,15 @@ Incorp Inc: installDir: Incorp Inc: {} launch: - /Incorp_inc.app: + "/Incorp_inc.app": - when: - os: mac store: steam - /Incorp_inc.exe: + "/Incorp_inc.exe": - when: - os: windows store: steam - /Incorp_inc.x86_64: + "/Incorp_inc.x86_64": - when: - os: linux store: steam @@ -270312,7 +271099,7 @@ Incorp Inc: id: 567200 IncrediBubble: files: - /bubbles0.bub and curprog.dat: + "/bubbles0.bub and curprog.dat": tags: - config when: @@ -270321,97 +271108,97 @@ IncrediMarble: installDir: IncrediMarble: {} launch: - /IncrediMarble.exe: + "/IncrediMarble.exe": - when: - os: windows store: steam - /IncrediMarble.x86_64: + "/IncrediMarble.x86_64": - when: - os: linux store: steam - /IncrediMarbleMac.app/Contents/MacOS/IncrediMarble: + "/IncrediMarbleMac.app/Contents/MacOS/IncrediMarble": - when: - os: mac store: steam steam: id: 1488100 -'Incredible Dracula 3: Family Secret': +"Incredible Dracula 3: Family Secret": installDir: Incredible Dracula 3 Family Secret: {} launch: - /IncredibleDraculaIII_Family_Secret_CE.exe: + "/IncredibleDraculaIII_Family_Secret_CE.exe": - when: - os: windows store: steam - /Incredible_Dracula_III_Family_Secret_Collector's_Edition.app/Contents/MacOS/Incredible_Dracula_III_Family_Secret_Collector's_Edition: + "/Incredible_Dracula_III_Family_Secret_Collector's_Edition.app/Contents/MacOS/Incredible_Dracula_III_Family_Secret_Collector's_Edition": - when: - os: mac store: steam steam: id: 1087940 -'Incredible Dracula 4: Games of Gods': +"Incredible Dracula 4: Games of Gods": installDir: Incredible Dracula 4 Games Of Gods: {} launch: - /IncredibleDraculaIV_GamesOfGods_CE.exe: + "/IncredibleDraculaIV_GamesOfGods_CE.exe": - when: - os: windows store: steam - /Incredible_Dracula_IV_Games_Of_Gods_Collector's_Edition.app/Contents/MacOS/Incredible_Dracula_IV_Games_Of_Gods_Collector's_Edition: + "/Incredible_Dracula_IV_Games_Of_Gods_Collector's_Edition.app/Contents/MacOS/Incredible_Dracula_IV_Games_Of_Gods_Collector's_Edition": - when: - os: mac store: steam steam: id: 1092510 -'Incredible Dracula II: The Last Call': +"Incredible Dracula II: The Last Call": installDir: - Incredible Dracula II The Last Call Collector's Edition: {} + "Incredible Dracula II The Last Call Collector's Edition": {} launch: - /Incredible_Dracula_The_Last_Call_CE.exe: + "/Incredible_Dracula_The_Last_Call_CE.exe": - when: - os: windows store: steam steam: id: 572580 -'Incredible Dracula: Chasing Love': +"Incredible Dracula: Chasing Love": installDir: IncredibleDraculaCE: {} launch: - /Incredible Dracula. Chasing Love CE.exe: + "/Incredible Dracula. Chasing Love CE.exe": - when: - os: windows store: steam - /Incredible Dracula_Chasing Love Collector's Edition Steam.app: + "/Incredible Dracula_Chasing Love Collector's Edition Steam.app": - when: - os: mac store: steam steam: id: 435040 -'Incredible Dracula: The Ice Kingdom': +"Incredible Dracula: The Ice Kingdom": installDir: Incredible Dracula The Ice Kingdom: {} launch: - /Incredible_Dracula_The_Ice_Kingdom.exe: + "/Incredible_Dracula_The_Ice_Kingdom.exe": - when: - os: windows store: steam steam: id: 1175170 -'Incredible Dracula: Vargosi Returns': +"Incredible Dracula: Vargosi Returns": installDir: Incredible Dracula Vargosi Returns: {} launch: - /Incredible_Dracula_Vargosi_Returns.exe: + "/Incredible_Dracula_Vargosi_Returns.exe": - when: - os: windows store: steam steam: id: 1175150 -'Incredible Dracula: Witches'' Curse': +"Incredible Dracula: Witches' Curse": installDir: - Incredible Dracula Witches' Curse: {} + "Incredible Dracula Witches' Curse": {} launch: - /Incredible_Dracula_Witches_Curse.exe: + "/Incredible_Dracula_Witches_Curse.exe": - when: - os: windows store: steam @@ -270421,7 +271208,7 @@ Incredible Mandy: installDir: Incredible Mandy: {} launch: - /IncredibleMandy.exe: + "/IncredibleMandy.exe": - when: - os: windows store: steam @@ -270429,17 +271216,17 @@ Incredible Mandy: id: 857950 Incredipede: files: - /com.northwayGames.Incredipede/Local Store/#SharedObjects/*.sol: + "/com.northwayGames.Incredipede/Local Store/#SharedObjects/*.sol": tags: - save when: - os: windows - /com.northwayGames.Incredipede/Local Store/#SharedObjects/Incredipede_graphics.sol: + "/com.northwayGames.Incredipede/Local Store/#SharedObjects/Incredipede_graphics.sol": tags: - config when: - os: windows - /com.northwayGames.Incredipede/Local Store/#SharedObjects/Incredipede_user.sol: + "/com.northwayGames.Incredipede/Local Store/#SharedObjects/Incredipede_user.sol": tags: - config when: @@ -270449,11 +271236,11 @@ Incredipede: installDir: Incredipede: {} launch: - /Incredipede.app/Contents/MacOS/Incredipede: + "/Incredipede.app/Contents/MacOS/Incredipede": - when: - os: mac store: steam - /Incredipede.exe: + "/Incredipede.exe": - when: - os: windows store: steam @@ -270463,11 +271250,11 @@ Incremental Epic Hero: installDir: Incremental Epic Hero: {} launch: - /Debug.app: + "/Debug.app": - when: - os: mac store: steam - /IEH.exe: + "/IEH.exe": - when: - os: windows store: steam @@ -270475,12 +271262,12 @@ Incremental Epic Hero: id: 1530340 Incremental Epic Hero 2: files: - /Library/Application Support/HapiwakuProject/Incremental Epic Hero 2: + "/Library/Application Support/HapiwakuProject/Incremental Epic Hero 2": tags: - save when: - os: mac - /LocalLow/HapiwakuProject/Incremental Epic Hero 2: + "/LocalLow/HapiwakuProject/Incremental Epic Hero 2": tags: - save when: @@ -270488,29 +271275,29 @@ Incremental Epic Hero 2: installDir: Incremental Epic Hero 2: {} launch: - /Incremental Epic Hero 2.app: + "/Incremental Epic Hero 2.app": - when: - os: mac store: steam - /Incremental Epic Hero 2.exe: + "/Incremental Epic Hero 2.exe": - when: - os: windows store: steam steam: id: 1690710 -'Incubation: Time Is Running Out': +"Incubation: Time Is Running Out": files: - /DATA: + "/DATA": tags: - config when: - os: windows - /Work/Saves: + "/Work/Saves": tags: - save when: - os: windows - /Work/Saves2: + "/Work/Saves2": tags: - save when: @@ -270521,7 +271308,7 @@ Incubo: installDir: Incubo: {} launch: - /INCUBO.exe: + "/INCUBO.exe": - when: - os: windows store: steam @@ -270531,7 +271318,7 @@ Incursion The Thing: installDir: Incursion The Thing: {} launch: - /Incursion The Thing.exe: + "/Incursion The Thing.exe": - when: - os: windows store: steam @@ -270541,8 +271328,8 @@ Indecent Details - Find the Difference: installDir: Indecent Details - Find the Difference: {} launch: - /Game.exe: - - arguments: '--in-process-gpu' + "/Game.exe": + - arguments: "--in-process-gpu" when: - store: steam steam: @@ -270551,7 +271338,7 @@ Indecision.: installDir: Indecision: {} launch: - /Indecision.exe: + "/Indecision.exe": - when: - os: windows store: steam @@ -270568,23 +271355,23 @@ Independence War: installDir: Independence War Deluxe: {} launch: - /Defiance/IWDE_start.exe: + "/Defiance/IWDE_start.exe": - when: - store: steam - /IWar.exe: + "/IWar.exe": - when: - os: windows store: steam steam: id: 330590 -'Independence War 2: Edge of Chaos': +"Independence War 2: Edge of Chaos": files: - /flux.ini: + "/flux.ini": tags: - config when: - os: windows - /saves: + "/saves": tags: - save when: @@ -270594,8 +271381,8 @@ Independence War: installDir: Independence War 2 - Edge of Chaos: {} launch: - /bin/release/loader.exe: - - arguments: '-ac iwar2.icGame -dl 3' + "/bin/release/loader.exe": + - arguments: "-ac iwar2.icGame -dl 3" when: - store: steam steam: @@ -270604,7 +271391,7 @@ India Garden: installDir: India Garden: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: @@ -270613,21 +271400,21 @@ Indian Legends Solitaire: installDir: Indian Legends Solitaire: {} launch: - /india_solitaire.exe: + "/india_solitaire.exe": - when: - os: windows store: steam steam: id: 1119560 -'Indian Mutiny: Little Sepoy': +"Indian Mutiny: Little Sepoy": installDir: Indian Mutiny - Little Sepoy: {} launch: - /Indian Mutiny - Little Sepoy.app/Contents/MacOS/Indian Mutiny - Little Sepoy: + "/Indian Mutiny - Little Sepoy.app/Contents/MacOS/Indian Mutiny - Little Sepoy": - when: - os: mac store: steam - /Indian Mutiny - Little Sepoy.exe: + "/Indian Mutiny - Little Sepoy.exe": - when: - os: windows store: steam @@ -270637,20 +271424,20 @@ Indian Summer: installDir: Indian Summer: {} launch: - /ins.app: + "/ins.app": - when: - os: mac store: steam - /ins.exe: + "/ins.exe": - when: - os: windows store: steam - /ins.x86: + "/ins.x86": - when: - bit: 32 os: linux store: steam - /ins.x86_64: + "/ins.x86_64": - when: - bit: 64 os: linux @@ -270661,7 +271448,7 @@ Indiana Boy Steam Edition: installDir: Indiana Boy Steam Edition: {} launch: - /indianaboy.exe: + "/indianaboy.exe": - when: - os: windows store: steam @@ -270669,24 +271456,24 @@ Indiana Boy Steam Edition: id: 990950 Indiana Jack: files: - /data: + "/data": tags: - config when: - os: windows - /data/save: + "/data/save": tags: - save when: - os: windows -Indiana Jones and the Emperor's Tomb: +"Indiana Jones and the Emperor's Tomb": files: - /GameData/indy: + "/GameData/indy": tags: - config when: - os: windows - /GameData/indy/saves: + "/GameData/indy/saves": tags: - save when: @@ -270696,15 +271483,15 @@ Indiana Jones and the Emperor's Tomb: installDir: Indiana Jones and the Emperors Tomb: {} launch: - /GameData/bin/indy.exe: + "/GameData/bin/indy.exe": - when: - store: steam - workingDir: /GameData/bin + workingDir: "/GameData/bin" steam: id: 560430 Indiana Jones and the Fate of Atlantis: files: - /LucasArts/Indiana Jones and the Fate of Atlantis: + "/LucasArts/Indiana Jones and the Fate of Atlantis": tags: - save when: @@ -270714,11 +271501,11 @@ Indiana Jones and the Fate of Atlantis: installDir: Indiana Jones and the Fate of Atlantis: {} launch: - /Indiana Jones and the Fate of Atlantis.exe: + "/Indiana Jones and the Fate of Atlantis.exe": - when: - os: windows store: steam - /The Fate of Atlantis.app: + "/The Fate of Atlantis.app": - when: - os: mac store: steam @@ -270726,7 +271513,7 @@ Indiana Jones and the Fate of Atlantis: id: 6010 Indiana Jones and the Infernal Machine: files: - /SaveGames: + "/SaveGames": tags: - save when: @@ -270736,7 +271523,7 @@ Indiana Jones and the Infernal Machine: installDir: Indiana Jones and the Infernal Machine: {} launch: - /Jones3D.exe: + "/Jones3D.exe": - when: - os: windows store: steam @@ -270746,17 +271533,17 @@ Indiana Jones and the Infernal Machine: - config steam: id: 904540 -'Indiana Jones and the Last Crusade: The Graphic Adventure': +"Indiana Jones and the Last Crusade: The Graphic Adventure": gog: id: 1440410803 installDir: Indiana Jones and the Last Crusade: {} launch: - /Indiana Jones and the Last Crusade.exe: + "/Indiana Jones and the Last Crusade.exe": - when: - os: windows store: steam - /The Last Crusade.app: + "/The Last Crusade.app": - when: - os: mac store: steam @@ -270766,11 +271553,11 @@ Indie Assault: installDir: Indie Assault: {} launch: - /IndieAssault.exe: + "/IndieAssault.exe": - when: - os: windows store: steam - /IndieAssault_8_22_15.app: + "/IndieAssault_8_22_15.app": - when: - os: mac store: steam @@ -270780,11 +271567,11 @@ Indie Dream: installDir: Indie Dream: {} launch: - /Indie Dream Indie Dev.exe: + "/Indie Dream Indie Dev.exe": - when: - os: windows store: steam - /Mac_20190720.app: + "/Mac_20190720.app": - when: - os: mac store: steam @@ -270794,7 +271581,7 @@ Indie Game Battle: installDir: Indie Game Battle: {} launch: - /Indie Game Battle.exe: + "/Indie Game Battle.exe": - when: - os: windows store: steam @@ -270804,11 +271591,11 @@ Indie Game Sim: installDir: Indie Game Sim: {} launch: - /igs.app: + "/igs.app": - when: - os: mac store: steam - /igs.exe: + "/igs.exe": - when: - os: windows store: steam @@ -270818,7 +271605,7 @@ Indie Pogo: installDir: Indie Pogo: {} launch: - /IndiePogo.exe: + "/IndiePogo.exe": - when: - os: windows store: steam @@ -270828,7 +271615,7 @@ Indiecalypse: installDir: indiecalypse: {} launch: - /Indiecalypse.exe: + "/Indiecalypse.exe": - when: - os: windows store: steam @@ -270838,11 +271625,11 @@ Individual Investor Tycoon: installDir: Individual Investor Tycoon: {} launch: - /Individual-Investor-Tycoon.app/Contents/MacOS/Individual-Investor-Tycoon: + "/Individual-Investor-Tycoon.app/Contents/MacOS/Individual-Investor-Tycoon": - when: - os: mac store: steam - /Individual-Investor-Tycoon.exe: + "/Individual-Investor-Tycoon.exe": - when: - os: windows store: steam @@ -270850,13 +271637,13 @@ Individual Investor Tycoon: id: 796460 Indivisible: files: - /userdata//421170/remote: + "/userdata//421170/remote": tags: - config - save when: - store: steam - /Indivisible/Save Data: + "/Indivisible/Save Data": tags: - config - save @@ -270868,15 +271655,15 @@ Indivisible: installDir: Indivisible: {} launch: - /Indivisible.app: + "/Indivisible.app": - when: - os: mac store: steam - /Indivisible.exe: + "/Indivisible.exe": - when: - os: windows store: steam - /Indivisible.x86_64-pc-linux-gnu: + "/Indivisible.x86_64-pc-linux-gnu": - when: - bit: 64 os: linux @@ -270894,15 +271681,15 @@ Indoorlands: installDir: Indoorlands: {} launch: - /Indoorlands.app: + "/Indoorlands.app": - when: - os: mac store: steam - /Indoorlands.exe: + "/Indoorlands.exe": - when: - os: windows store: steam - /Indoorlands.x86_64: + "/Indoorlands.x86_64": - when: - os: linux store: steam @@ -270912,16 +271699,16 @@ Induction: installDir: Induction: {} launch: - /Induction: + "/Induction": - when: - bit: 64 os: linux store: steam - /Induction.app: + "/Induction.app": - when: - os: mac store: steam - /Induction.exe: + "/Induction.exe": - when: - os: windows store: steam @@ -270934,17 +271721,17 @@ Induction: id: 381890 Industria: files: - /Industria/Saved/Config/WindowsNoEditor: + "/Industria/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /Industria/Saved/SaveGames: + "/Industria/Saved/SaveGames": tags: - save when: - os: windows - /Industria/Saved/SaveGames/Save_UserSettings*.sav: + "/Industria/Saved/SaveGames/Save_UserSettings*.sav": tags: - config when: @@ -270954,7 +271741,7 @@ Industria: installDir: Industria: {} launch: - /Industria.exe: + "/Industria.exe": - when: - bit: 64 os: windows @@ -270968,16 +271755,16 @@ Industrial Petting: installDir: Industrial Petting: {} launch: - /industrial-petting.app/Contents/MacOS/industrial-petting: + "/industrial-petting.app/Contents/MacOS/industrial-petting": - when: - os: mac store: steam - /industrial-petting.exe: + "/industrial-petting.exe": - when: - bit: 64 os: windows store: steam - /industrial-petting.x86: + "/industrial-petting.x86": - when: - os: linux store: steam @@ -270990,12 +271777,12 @@ IndustrialVR - Hoover Dam: id: 768770 Industries of Titan: files: - /*.met: + "/*.met": tags: - save when: - os: windows - /*.sav: + "/*.sav": tags: - save when: @@ -271003,7 +271790,7 @@ Industries of Titan: installDir: Industries of Titan: {} launch: - /Titan.exe: + "/Titan.exe": - when: - bit: 64 os: windows @@ -271014,25 +271801,25 @@ Industriworks: installDir: Industriworks: {} launch: - /bin/linux64/industriworks: + "/bin/linux64/industriworks": - when: - bit: 64 os: linux store: steam - workingDir: /bin/linux64 - /bin/win64/industriworks.exe: + workingDir: "/bin/linux64" + "/bin/win64/industriworks.exe": - when: - bit: 64 os: windows store: steam - workingDir: /bin/win64 + workingDir: "/bin/win64" steam: id: 1143340 Industry Empire: installDir: Industry Empire: {} launch: - /IndustryEmpire.exe: + "/IndustryEmpire.exe": - when: - os: windows store: steam @@ -271044,19 +271831,19 @@ Industry Giant: installDir: Industry Giant: {} launch: - /giant.exe: + "/giant.exe": - when: - store: steam steam: id: 521090 Industry Giant 2: files: - /ig2_player.cfg: + "/ig2_player.cfg": tags: - config when: - os: windows - /save: + "/save": tags: - save when: @@ -271069,20 +271856,20 @@ Industry Giant 2: installDir: Industry Giant 2: {} launch: - /ig2_AddOn.exe: + "/ig2_AddOn.exe": - when: - store: steam steam: id: 271360 -'Industry Manager: Future Technologies': +"Industry Manager: Future Technologies": installDir: Industry Manager: {} launch: - /IndustryManager.app: + "/IndustryManager.app": - when: - os: mac store: steam - /IndustryManager.exe: + "/IndustryManager.exe": - when: - os: windows store: steam @@ -271092,7 +271879,7 @@ Industry Transporters: installDir: Industry Transporters: {} launch: - /Industry Transporters.exe: + "/Industry Transporters.exe": - when: - bit: 64 os: windows @@ -271106,7 +271893,7 @@ Indygo: installDir: Indygo: {} launch: - /Indygo.exe: + "/Indygo.exe": - when: - os: windows store: steam @@ -271116,7 +271903,7 @@ Inertia: installDir: Inertia: {} launch: - /Inertia.exe: + "/Inertia.exe": - when: - bit: 64 os: windows @@ -271127,7 +271914,7 @@ Inertial Drift: installDir: Inertial Drift: {} launch: - /InertialDrift.exe: + "/InertialDrift.exe": - when: - store: steam steam: @@ -271136,17 +271923,19 @@ Inescapable: installDir: Inescapable: {} launch: - /inescapable: + "/inescapable": - when: + - os: mac + store: steam - os: linux store: steam - /inescapable.exe: + "/inescapable.exe": - when: - os: windows store: steam steam: id: 295610 -'Inescapable VR: Underground': +"Inescapable VR: Underground": installDir: Inescapable VR Underground: {} steam: @@ -271155,7 +271944,7 @@ Inevitability: installDir: Inevitability: {} launch: - /Inevitability.exe: + "/Inevitability.exe": - when: - os: windows store: steam @@ -271173,24 +271962,24 @@ Inexistence: installDir: Inexistence: {} launch: - /Inexistence.exe: + "/Inexistence.exe": - when: - store: steam steam: id: 444720 -'Inexplicable Geeks: Dawn of Just Us': +"Inexplicable Geeks: Dawn of Just Us": installDir: Inexplicable Geeks DOJU: {} launch: - /GEEKSDOJU.app/Contents/MacOS/GEEKSDOJU: + "/GEEKSDOJU.app/Contents/MacOS/GEEKSDOJU": - when: - os: mac store: steam - /GEEKSDOJU.exe: + "/GEEKSDOJU.exe": - when: - os: windows store: steam - /GEEKSDOJU.sh: + "/GEEKSDOJU.sh": - when: - os: linux store: steam @@ -271203,11 +271992,11 @@ Infect and Destroy: installDir: Virus 14: {} launch: - /Infect and Destroy.exe: + "/Infect and Destroy.exe": - when: - os: windows store: steam - /Infect and Destroy.x86: + "/Infect and Destroy.x86": - when: - os: linux store: steam @@ -271217,7 +272006,7 @@ Infected Battlegrounds: installDir: Infected Battlegrounds: {} launch: - /Infected Battlegrounds.exe: + "/Infected Battlegrounds.exe": - when: - bit: 64 os: windows @@ -271226,7 +272015,7 @@ Infected Battlegrounds: id: 843730 Infected Shelter: files: - /DarkBlueGames/InfectedShelter/*.dbg: + "/DarkBlueGames/InfectedShelter/*.dbg": tags: - save when: @@ -271234,25 +272023,25 @@ Infected Shelter: installDir: Infected Shelter: {} launch: - /InfectedShelter.exe: + "/InfectedShelter.exe": - when: - bit: 64 os: windows store: steam steam: id: 926390 -'Infected: The Twin Vaccine': +"Infected: The Twin Vaccine": installDir: Infected_TheTwinVaccineCE: {} launch: - /InfectedTTV.exe: + "/InfectedTTV.exe": - when: - store: steam - /InfectedTTVCE.exe: + "/InfectedTTVCE.exe": - when: - store: steam registry: - HKEY_CURRENT_USER/Software/Gogii/Infected - The Twin Vaccine - Collector's Edition: + "HKEY_CURRENT_USER/Software/Gogii/Infected - The Twin Vaccine - Collector's Edition": tags: - config steam: @@ -271261,7 +272050,7 @@ Infection: installDir: Infection: {} launch: - /Infection.exe: + "/Infection.exe": - when: - bit: 64 os: windows @@ -271275,21 +272064,21 @@ Infection Rate: installDir: Infection Rate: {} launch: - /infection_rate.exe: + "/infection_rate.exe": - when: - os: windows store: steam steam: id: 689030 -'Infection: Humanity''s Last Gasp': +"Infection: Humanity's Last Gasp": installDir: - Infection Humanity's Last Gasp: {} + "Infection Humanity's Last Gasp": {} launch: - /Infection.app: + "/Infection.app": - when: - os: mac store: steam - /Infection.exe: + "/Infection.exe": - when: - os: windows store: steam @@ -271299,15 +272088,15 @@ Infecto: installDir: Infecto: {} launch: - /Infecto.exe: + "/Infecto.exe": - when: - os: windows store: steam steam: id: 815800 -'Infectonator 3: Apocalypse': +"Infectonator 3: Apocalypse": files: - /AppData/LocalLow/Toge Productions/Infectonator Apocalypse/Data: + "/AppData/LocalLow/Toge Productions/Infectonator Apocalypse/Data": tags: - config - save @@ -271318,29 +272107,29 @@ Infecto: installDir: Infectonator-3-Apocalypse: {} launch: - /Infectonator3.app: + "/Infectonator3.app": - when: - os: mac store: steam - /Infectonator3.exe: + "/Infectonator3.exe": - when: - os: windows store: steam steam: id: 666570 -'Infectonator: Survivors': +"Infectonator: Survivors": installDir: Infectonator Survivors: {} launch: - /Survivors: + "/Survivors": - when: - os: linux store: steam - /Survivors.app: + "/Survivors.app": - when: - os: mac store: steam - /Survivors.exe: + "/Survivors.exe": - when: - os: windows store: steam @@ -271350,11 +272139,11 @@ Infektor: installDir: Infektor: {} launch: - /Infektor.app/Contents/MacOS/Infektor: + "/Infektor.app/Contents/MacOS/Infektor": - when: - os: mac store: steam - /infektor.exe: + "/infektor.exe": - when: - os: windows store: steam @@ -271364,7 +272153,7 @@ Inferna: installDir: Inferna: {} launch: - /Inferna.exe: + "/Inferna.exe": - when: - bit: 64 os: windows @@ -271373,12 +272162,12 @@ Inferna: id: 1191330 Infernal: files: - /game: + "/game": tags: - save when: - os: windows - /game/standard_game.feel: + "/game/standard_game.feel": tags: - config when: @@ -271386,21 +272175,21 @@ Infernal: installDir: Infernal: {} launch: - /game/game.exe: + "/game/game.exe": - when: - store: steam - workingDir: /game + workingDir: "/game" steam: id: 7060 Infernal Racket: installDir: Infernal Racket: {} launch: - /infernalracket.app: + "/infernalracket.app": - when: - os: mac store: steam - /nw.exe: + "/nw.exe": - when: - bit: 64 os: windows @@ -271411,18 +272200,18 @@ Infernales: installDir: Infernales: {} launch: - /Infernales.exe: + "/Infernales.exe": - when: - bit: 64 os: windows store: steam steam: id: 705060 -'Infernales: Circles of Hell': +"Infernales: Circles of Hell": installDir: Infernales Circles of Hell: {} launch: - /InfernalesCOF.exe: + "/InfernalesCOF.exe": - when: - bit: 64 os: windows @@ -271431,7 +272220,7 @@ Infernales: id: 809490 Infernax: files: - /AppData/LocalLow/Berzerk Studio/Infernax: + "/AppData/LocalLow/Berzerk Studio/Infernax": tags: - config - save @@ -271440,7 +272229,7 @@ Infernax: installDir: Infernax: {} launch: - /Infernax.exe: + "/Infernax.exe": - when: - os: windows store: steam @@ -271450,7 +272239,7 @@ Infernium: installDir: INFERNIUM: {} launch: - /Infernium/Game/INFERNIUM.exe: + "/Infernium/Game/INFERNIUM.exe": - when: - os: windows store: steam @@ -271465,16 +272254,16 @@ Inferno - Beyond the 7th Circle: installDir: Inferno - Beyond the 7th Circle: {} launch: - /Inferno - Beyond the 7th Circle: + "/Inferno - Beyond the 7th Circle": - when: - bit: 64 os: linux store: steam - /Inferno - Beyond the 7th Circle.app/Contents/MacOS/nwjs: + "/Inferno - Beyond the 7th Circle.app/Contents/MacOS/nwjs": - when: - os: mac store: steam - /Inferno - Beyond the 7th Circle.exe: + "/Inferno - Beyond the 7th Circle.exe": - when: - bit: 64 os: windows @@ -271485,7 +272274,7 @@ Inferno 2: installDir: Inferno 2: {} launch: - /inferno2_steam.exe: + "/inferno2_steam.exe": - when: - os: windows store: steam @@ -271495,7 +272284,7 @@ Inferno Climber: installDir: InfernoClimber: {} launch: - /ARPG.exe: + "/ARPG.exe": - when: - os: windows store: steam @@ -271505,14 +272294,14 @@ Inferno Puzzle: installDir: Inferno: {} launch: - /MATCH3.exe: + "/MATCH3.exe": - when: - bit: 32 os: windows store: steam steam: id: 654980 -'Inferno: Deathfield': +"Inferno: Deathfield": installDir: INFERNO Deathfield: {} steam: @@ -271521,8 +272310,8 @@ Infernum: installDir: Infernum: {} launch: - /WindowsNoEditor/INFERNUM.exe: - - arguments: '-fullscreen' + "/WindowsNoEditor/INFERNUM.exe": + - arguments: "-fullscreen" when: - os: windows store: steam @@ -271533,12 +272322,12 @@ Infestation (2000): HKEY_CURRENT_USER/Software/Frontier Developments Ltd/Infestation: tags: - config -'Infestation: Germany': +"Infestation: Germany": steam: id: 918860 -'Infestation: Survivor Stories Classic': +"Infestation: Survivor Stories Classic": files: - /Arktos/WarZ: + "/Arktos/WarZ": tags: - config when: @@ -271546,14 +272335,14 @@ Infestation (2000): installDir: The War Z: {} launch: - /InfestationLauncher.exe: - - arguments: '-steam -fupd' + "/InfestationLauncher.exe": + - arguments: "-steam -fupd" when: - os: windows store: steam steam: id: 226700 -'Infestation: The New Z': +"Infestation: The New Z": installDir: NewZ: {} steam: @@ -271562,7 +272351,7 @@ Infested Inside Multiplayer Online: installDir: Infested Inside Multiplayer Arena: {} launch: - /Infested_Inside_Multiplayer_Online_alpha_220.exe: + "/Infested_Inside_Multiplayer_Online_alpha_220.exe": - when: - os: windows store: steam @@ -271572,24 +272361,24 @@ Infested Nation: installDir: Infested Nation: {} launch: - /Infested Nation.exe: + "/Infested Nation.exe": - when: - store: steam steam: id: 669360 Infested Planet: files: - /userdata//204530: + "/userdata//204530": tags: - save when: - store: steam - /Rocket Bear Games/Infested Planet/pref.xml: + "/Rocket Bear Games/Infested Planet/pref.xml": tags: - config when: - os: windows - /Rocket Bear Games/Infested Planet/profile*.xml: + "/Rocket Bear Games/Infested Planet/profile*.xml": tags: - save when: @@ -271599,11 +272388,11 @@ Infested Planet: installDir: Infested Planet: {} launch: - /InfestedPlanet.app: + "/InfestedPlanet.app": - when: - os: mac store: steam - /InfestedPlanet.exe: + "/InfestedPlanet.exe": - when: - os: windows store: steam @@ -271613,24 +272402,27 @@ Infferno: installDir: Infferno: {} launch: - /Infferno.exe: + "/Infferno.exe": - when: - bit: 32 os: windows store: steam - workingDir: /Infferno_Data - /Infferno.x86: + - bit: 64 + os: windows + store: steam + workingDir: "/Infferno_Data" + "/Infferno.x86": - when: - bit: 32 os: linux store: steam - workingDir: /Infferno_Data - /Infferno.x86_64: + workingDir: "/Infferno_Data" + "/Infferno.x86_64": - when: - bit: 64 os: linux store: steam - workingDir: /Infferno_Data + workingDir: "/Infferno_Data" steam: id: 1211730 Infiltoon: @@ -271645,8 +272437,8 @@ Infiltrator: installDir: Infiltrator: {} launch: - /dosbox_windows/dosbox.exe: - - arguments: \"INF.EXE\" -conf \"dosbox_infiltrator.conf\" -noconsole -exit + "/dosbox_windows/dosbox.exe": + - arguments: "\\\"INF.EXE\\\" -conf \\\"dosbox_infiltrator.conf\\\" -noconsole -exit" when: - os: windows store: steam @@ -271658,8 +272450,8 @@ Infiltrator II: installDir: InfiltratorII: {} launch: - /dosbox_windows/dosbox.exe: - - arguments: \"INF.EXE\" -conf \"dosbox_infiltrator2.conf\" -noconsole -exit + "/dosbox_windows/dosbox.exe": + - arguments: "\\\"INF.EXE\\\" -conf \\\"dosbox_infiltrator2.conf\\\" -noconsole -exit" when: - os: windows store: steam @@ -271669,16 +272461,16 @@ Infiltria: installDir: INFILTRIA: {} launch: - /INFILTRIA.exe: + "/INFILTRIA.exe": - when: - os: windows store: steam - /INFILTRIA_linux.x86: + "/INFILTRIA_linux.x86": - when: - bit: 32 os: linux store: steam - /INFILTRIA_linux.x86_64: + "/INFILTRIA_linux.x86_64": - when: - bit: 64 os: linux @@ -271689,11 +272481,11 @@ Infini: installDir: Infini: {} launch: - /Infini: + "/Infini": - when: - os: linux store: steam - /Infini.exe: + "/Infini.exe": - when: - os: windows store: steam @@ -271706,36 +272498,42 @@ InfiniPicross: installDir: InfiniPicross: {} launch: - /InfiniPicross: + "/InfiniPicross": - when: - bit: 32 os: linux store: steam - /InfiniPicross.app: + - bit: 64 + os: linux + store: steam + "/InfiniPicross.app": - when: - os: mac store: steam - /InfiniPicross.exe: + "/InfiniPicross.exe": - when: - bit: 32 os: windows store: steam + - bit: 64 + os: windows + store: steam steam: id: 583490 InfiniPicross 2.0: installDir: InfiniPicross 2.0: {} launch: - /InfiniPicross2: + "/InfiniPicross2": - when: - bit: 64 os: linux store: steam - /InfiniPicross2.app: + "/InfiniPicross2.app": - when: - os: mac store: steam - /InfiniPicross2.exe: + "/InfiniPicross2.exe": - when: - bit: 64 os: windows @@ -271744,17 +272542,17 @@ InfiniPicross 2.0: id: 875110 Infinifactory: files: - /.local/share/Infinifactory//save.dat: + "/.local/share/Infinifactory//save.dat": tags: - save when: - os: linux - /Library/Application Support/Infinifactory/save.dat: + "/Library/Application Support/Infinifactory/save.dat": tags: - save when: - os: mac - /My Games/Infinifactory/: + "/My Games/Infinifactory/": tags: - save when: @@ -271764,20 +272562,20 @@ Infinifactory: installDir: Infinifactory: {} launch: - /Infinifactory.app: + "/Infinifactory.app": - when: - os: mac store: steam - /infinifactory.exe: + "/infinifactory.exe": - when: - os: windows store: steam - /infinifactory.x86: + "/infinifactory.x86": - when: - bit: 32 os: linux store: steam - /infinifactory.x86_64: + "/infinifactory.x86_64": - when: - bit: 64 os: linux @@ -271792,11 +272590,11 @@ InfinitasDM: installDir: InfinitasDM: {} launch: - /InfinitasDM.app/Contents/MacOS/InfinitasDM: + "/InfinitasDM.app/Contents/MacOS/InfinitasDM": - when: - os: mac store: steam - /InfinitasDM.exe: + "/InfinitasDM.exe": - when: - os: windows store: steam @@ -271804,7 +272602,7 @@ InfinitasDM: id: 555180 Infinite Adventures: files: - /LocalLow/Stormseeker Games LLC/Infinite Adventures/savedata.dat: + "/LocalLow/Stormseeker Games LLC/Infinite Adventures/savedata.dat": tags: - save when: @@ -271812,15 +272610,19 @@ Infinite Adventures: installDir: Infinite Adventures: {} launch: - /Infinite Adventures.exe: + "/Infinite Adventures.exe": - when: - os: windows store: steam + - os: mac + store: steam + - os: linux + store: steam steam: id: 607820 Infinite Air with Mark McMorris: files: - /AppData/LocalLow/HB Studios Multimedia Ltd_/Mark McMorris Infinite Air/Common/Profile*.data: + "/AppData/LocalLow/HB Studios Multimedia Ltd_/Mark McMorris Infinite Air/Common/Profile*.data": tags: - save when: @@ -271828,10 +272630,10 @@ Infinite Air with Mark McMorris: installDir: Mark McMorris Infinite Air: {} launch: - /snowboarding.exe: + "/snowboarding.exe": - when: - store: steam - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" when: - store: steam steam: @@ -271845,12 +272647,12 @@ Infinite Children: installDir: Infinite Children: {} launch: - /Infinite_Children.exe: + "/Infinite_Children.exe": - when: - bit: 64 os: windows store: steam - /Infinite_Children_OSX.app: + "/Infinite_Children_OSX.app": - when: - os: mac store: steam @@ -271860,7 +272662,7 @@ Infinite Chili Sauce 无尽的辣酱: installDir: Infinite Chili Sauce: {} launch: - /Infinite Chili Sauce.exe: + "/Infinite Chili Sauce.exe": - when: - os: windows store: steam @@ -271870,7 +272672,7 @@ Infinite Desolation: installDir: rougeshift: {} launch: - /Rogue Shift.exe: + "/Rogue Shift.exe": - when: - bit: 64 os: windows @@ -271881,15 +272683,15 @@ Infinite Game Works Episode 0: installDir: Infinite Game Works Episode 0: {} launch: - /Infinite Game Works.app: + "/Infinite Game Works.app": - when: - os: mac store: steam - /Infinite Game Works.exe: + "/Infinite Game Works.exe": - when: - os: windows store: steam - /Infinite Game Works.sh: + "/Infinite Game Works.sh": - when: - os: linux store: steam @@ -271899,15 +272701,15 @@ Infinite Game Works Episode 1: installDir: Infinite Game Works Episode 1: {} launch: - /Infinite Game Works Ep1.app: + "/Infinite Game Works Ep1.app": - when: - os: mac store: steam - /Infinite Game Works Ep1.exe: + "/Infinite Game Works Ep1.exe": - when: - os: windows store: steam - /Infinite Game Works Ep1.sh: + "/Infinite Game Works Ep1.sh": - when: - os: linux store: steam @@ -271917,7 +272719,7 @@ Infinite Gateway: installDir: Infinite Gateway: {} launch: - /RunnerS1.exe: + "/RunnerS1.exe": - when: - os: windows store: steam @@ -271927,7 +272729,7 @@ Infinite Gravity: installDir: Infinite Gravity: {} launch: - /Marvel.exe: + "/Marvel.exe": - when: - os: windows store: steam @@ -271937,7 +272739,7 @@ Infinite Guitars: installDir: Infinite Guitars: {} launch: - /Infinite Guitars.exe: + "/Infinite Guitars.exe": - when: - os: windows store: steam @@ -271950,7 +272752,7 @@ Infinite Minigolf: installDir: Infinite Minigolf: {} launch: - /InfiniteMinigolf.exe: + "/InfiniteMinigolf.exe": - when: - os: windows store: steam @@ -271966,11 +272768,11 @@ Infinite Scuba: installDir: Infinite Scuba: {} launch: - /InfiniteScuba.app: + "/InfiniteScuba.app": - when: - os: mac store: steam - /InfiniteScuba.exe: + "/InfiniteScuba.exe": - when: - os: windows store: steam @@ -271980,7 +272782,7 @@ Infinite Shooter: installDir: Infinite Shooter: {} launch: - /Infinite Shooter.exe: + "/Infinite Shooter.exe": - when: - os: windows store: steam @@ -271990,31 +272792,31 @@ Infinite Skyline: installDir: InfiniteSkyline: {} launch: - /Infinite Skyline.exe: + "/Infinite Skyline.exe": - when: - os: windows store: steam steam: id: 673140 -'Infinite Skyline: Superflight': +"Infinite Skyline: Superflight": installDir: Infinite Skyline Superflight: {} launch: - /Infinite Skyline.exe: + "/Infinite Skyline.exe": - when: - store: steam steam: id: 1111420 -'Infinite Space III: Sea of Stars': +"Infinite Space III: Sea of Stars": installDir: SeaOfStars: {} launch: - /InfiniteSpaceIII.app: + "/InfiniteSpaceIII.app": - when: - bit: 64 os: mac store: steam - /seaofstars.exe: + "/seaofstars.exe": - when: - os: windows store: steam @@ -272024,7 +272826,7 @@ Infinite Sparkles: installDir: Infinite Sparkles: {} launch: - /Infinite Sparkles.exe: + "/Infinite Sparkles.exe": - when: - os: windows store: steam @@ -272034,8 +272836,8 @@ Infinite Sunshine Dust: installDir: Infinite Sunshine Dust: {} launch: - /Infinite Sunshine Dust.exe: - - arguments: '--in-process-gpu' + "/Infinite Sunshine Dust.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam @@ -272045,7 +272847,7 @@ Infinite Survival: installDir: Infinite Survival: {} launch: - /Infinite Survival.exe: + "/Infinite Survival.exe": - when: - os: windows store: steam @@ -272060,7 +272862,7 @@ Infinite Vector: installDir: Infinite Vector: {} launch: - /InfiniteVector.exe: + "/InfiniteVector.exe": - when: - store: steam steam: @@ -272069,7 +272871,7 @@ Infinite World: installDir: Infinite World 1.0: {} launch: - /IW.exe: + "/IW.exe": - when: - os: windows store: steam @@ -272095,14 +272897,14 @@ Infinitely up 4: Infinitely up 5: steam: id: 1084170 -'Infinitely up: Turn the Figure': +"Infinitely up: Turn the Figure": steam: id: 1101690 Infinitesimal Point: installDir: Infinitesimal Point: {} launch: - /InfinitesimalPoint.exe: + "/InfinitesimalPoint.exe": - when: - os: windows store: steam @@ -272116,19 +272918,19 @@ Infiniti VR: INFINITI_VR: {} steam: id: 612790 -'Infinitrap : Rehamstered': +"Infinitrap : Rehamstered": installDir: Infinitrap Rehamstered Edition: {} launch: - /Launcher: + "/Launcher": - when: - os: linux store: steam - /Launcher.app: + "/Launcher.app": - when: - os: mac store: steam - /Launcher.exe: + "/Launcher.exe": - when: - os: windows store: steam @@ -272138,18 +272940,18 @@ Infinitum: installDir: Infinitum: {} launch: - /Infinitum.exe: + "/Infinitum.exe": - when: - bit: 64 os: windows store: steam steam: id: 555670 -Infinity: +"Infinity": installDir: - Infinity: {} + "Infinity": {} launch: - /Infinity.exe: + "/Infinity.exe": - when: - bit: 64 os: windows @@ -272165,7 +272967,7 @@ Infinity Attackers: installDir: Infinity Attackers: {} launch: - /Infinity Attackers.exe: + "/Infinity Attackers.exe": - when: - os: windows store: steam @@ -272175,11 +272977,11 @@ Infinity Challenge: installDir: INFINITY CHALLENGE: {} launch: - /InfinityChallenge_MacOS.app: + "/InfinityChallenge_MacOS.app": - when: - os: mac store: steam - /InfinityChallenge_Win.exe: + "/InfinityChallenge_Win.exe": - when: - os: windows store: steam @@ -272187,17 +272989,17 @@ Infinity Challenge: id: 819660 Infinity Danger: files: - /IsolatedStorage/*/*/Url.*/Url.*/Files/Awards/.xml: + "/IsolatedStorage/*/*/Url.*/Url.*/Files/Awards/.xml": tags: - save when: - os: windows - /IsolatedStorage/*/*/Url.*/Url.*/Files/Stats/.xml: + "/IsolatedStorage/*/*/Url.*/Url.*/Files/Stats/.xml": tags: - save when: - os: windows - /IsolatedStorage/*/*/Url.*/Url.*/Files/config.xml: + "/IsolatedStorage/*/*/Url.*/Url.*/Files/config.xml": tags: - config when: @@ -272211,15 +273013,15 @@ Infinity Escape: installDir: Infinity Escape: {} launch: - /InfinityEscape.app/Contents/MacOS/InfinityEscape: + "/InfinityEscape.app/Contents/MacOS/InfinityEscape": - when: - os: mac store: steam - /InfinityEscape_Linux/InfinityEscape.x86: + "/InfinityEscape_Linux/InfinityEscape.x86": - when: - os: linux store: steam - /win32/InfinityEscape.exe: + "/win32/InfinityEscape.exe": - when: - os: windows store: steam @@ -272238,7 +273040,7 @@ Infinity Racer XD: id: 1189880 Infinity Runner: files: - /AppData/LocalLow/Wales Interactive/Infinity Runner: + "/AppData/LocalLow/Wales Interactive/Infinity Runner": tags: - config when: @@ -272246,15 +273048,15 @@ Infinity Runner: installDir: Infinity Runner: {} launch: - /Infinity Runner.app: + "/Infinity Runner.app": - when: - os: mac store: steam - /Infinity Runner.exe: + "/Infinity Runner.exe": - when: - os: windows store: steam - /Infinity Runner.x86: + "/Infinity Runner.x86": - when: - os: linux store: steam @@ -272268,20 +273070,20 @@ Infinity Saga: installDir: Infinity Saga: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam steam: id: 448750 -'Infinity Strash: Dragon Quest The Adventure of Dai': +"Infinity Strash: Dragon Quest The Adventure of Dai": files: - /My Games/IS-DQDai/Steam/: + "/My Games/IS-DQDai/Steam/": tags: - save when: - os: windows - /strash/Saved/Config/WindowsClient: + "/strash/Saved/Config/WindowsClient": tags: - config when: @@ -272292,15 +273094,15 @@ Infinity Trip: installDir: Infinity Trip: {} launch: - /InfinityTrip.Linux/InfinityTrip.x86: + "/InfinityTrip.Linux/InfinityTrip.x86": - when: - os: linux store: steam - /InfinityTrip.app/Contents/MacOS/InfinityTrip: + "/InfinityTrip.app/Contents/MacOS/InfinityTrip": - when: - os: mac store: steam - /win32/InfinityTrip.exe: + "/win32/InfinityTrip.exe": - when: - os: windows store: steam @@ -272312,15 +273114,15 @@ Infinity Wars: Infinity Wars 2: steam: id: 1206440 -'Infinity Wars: Animated Trading Card Game': +"Infinity Wars: Animated Trading Card Game": installDir: InfinityWars: {} launch: - /Infinity Wars TCG.app: + "/Infinity Wars TCG.app": - when: - os: mac store: steam - /InfinityHeroes Windows desktop 64-bit.exe: + "/InfinityHeroes Windows desktop 64-bit.exe": - when: - os: windows store: steam @@ -272330,23 +273132,23 @@ Infinity Wings - Scout & Grunt: installDir: Infinity Wings - Scout & Grunt: {} launch: - /infinityWings.app/Contents/MacOS/infinityWings: + "/infinityWings.app/Contents/MacOS/infinityWings": - when: - os: mac store: steam - /linux32/infinityWings.x86: + "/linux32/infinityWings.x86": - when: - os: linux store: steam - /win32/infinityWings.exe: + "/win32/infinityWings.exe": - when: - os: windows store: steam steam: id: 448790 -'Infinity: Battlescape': +"Infinity: Battlescape": files: - /I-Novae Studios/Infinity Battlescape: + "/I-Novae Studios/Infinity Battlescape": tags: - config when: @@ -272357,7 +273159,7 @@ Infinity Wings - Scout & Grunt: id: 1079620 InfinityVR: installDir: - Infinity: {} + "Infinity": {} steam: id: 1055020 Infinium Strike: @@ -272366,15 +273168,15 @@ Infinium Strike: installDir: Infinium Strike: {} launch: - /INFINIUM_STRIKE.exe: + "/INFINIUM_STRIKE.exe": - when: - os: windows store: steam - /InfiniumStrike.x86: + "/InfiniumStrike.x86": - when: - os: linux store: steam - /InfiniumStrikeMac.app: + "/InfiniumStrikeMac.app": - when: - os: mac store: steam @@ -272384,7 +273186,7 @@ Infinos Gaiden: installDir: Infinos Gaiden: {} launch: - /infinos_gaiden.EXE: + "/infinos_gaiden.EXE": - when: - os: windows store: steam @@ -272394,11 +273196,11 @@ Inflatality: installDir: Inflatality: {} launch: - /Inflatality.app: + "/Inflatality.app": - when: - os: mac store: steam - /Inflatality.exe: + "/Inflatality.exe": - when: - os: windows store: steam @@ -272406,12 +273208,12 @@ Inflatality: id: 653080 Infliction: files: - /Infliction/Saved/Config/WindowsNoEditor: + "/Infliction/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /Infliction/Saved/SaveGames: + "/Infliction/Saved/SaveGames": tags: - save when: @@ -272421,7 +273223,7 @@ Infliction: installDir: Infliction: {} launch: - /Infliction.exe: + "/Infliction.exe": - when: - os: windows store: steam @@ -272431,7 +273233,7 @@ Influence: installDir: influence: {} launch: - /influence.exe: + "/influence.exe": - when: - os: windows store: steam @@ -272441,15 +273243,15 @@ Influent: installDir: Influent: {} launch: - /Influent.app: + "/Influent.app": - when: - os: mac store: steam - /Influent.exe: + "/Influent.exe": - when: - os: windows store: steam - /Influent.x86: + "/Influent.x86": - when: - os: linux store: steam @@ -272464,7 +273266,7 @@ Infommi: installDir: Infommi: {} launch: - /Infommi_V1.0/Infommi.exe: + "/Infommi_V1.0/Infommi.exe": - when: - os: windows store: steam @@ -272472,9 +273274,9 @@ Infommi: id: 916910 Informal Detective: installDir: - ' Informal Detective': {} + " Informal Detective": {} launch: - /I.D.exe: + "/I.D.exe": - when: - os: windows store: steam @@ -272482,12 +273284,12 @@ Informal Detective: id: 1068860 InfraSpace: files: - /AppData/LocalLow/Dionic Software/InfraSpace/gameSettings.json: + "/AppData/LocalLow/Dionic Software/InfraSpace/gameSettings.json": tags: - config when: - os: windows - /AppData/LocalLow/Dionic Software/InfraSpace/saves: + "/AppData/LocalLow/Dionic Software/InfraSpace/saves": tags: - save when: @@ -272497,7 +273299,7 @@ InfraSpace: installDir: InfraSpace: {} launch: - /InfraSpace.exe: + "/InfraSpace.exe": - when: - store: steam registry: @@ -272510,14 +273312,14 @@ Inglorious Pirate: installDir: Inglorious Pirate: {} launch: - /Inglorious pirate.exe: + "/Inglorious pirate.exe": - when: - store: steam steam: id: 1219450 Ingnomia: files: - /Documents/My Games/Ingnomia/save: + "/Documents/My Games/Ingnomia/save": tags: - save when: @@ -272525,31 +273327,31 @@ Ingnomia: installDir: Ingnomia: {} launch: - /Ingnomia.exe: + "/Ingnomia.exe": - when: - bit: 64 os: windows store: steam steam: id: 709240 -'Inherit the Earth: Quest for the Orb': +"Inherit the Earth: Quest for the Orb": files: - /.itelinux/ITE.SAV: + "/.itelinux/ITE.SAV": tags: - save when: - os: linux - /.itelinux/ite.prf: + "/.itelinux/ite.prf": tags: - config when: - os: linux - /Wyrmkeep/Inherit the Earth Data/ITE.SAV: + "/Wyrmkeep/Inherit the Earth Data/ITE.SAV": tags: - save when: - os: windows - /Wyrmkeep/Inherit the Earth Data/ite.prf: + "/Wyrmkeep/Inherit the Earth Data/ite.prf": tags: - config when: @@ -272559,15 +273361,15 @@ Ingnomia: installDir: Inherit the Earth: {} launch: - /ITEWin.exe: + "/ITEWin.exe": - when: - os: windows store: steam - /Inherit the Earth.app: + "/Inherit the Earth.app": - when: - os: mac store: steam - /itegame.bin: + "/itegame.bin": - when: - os: linux store: steam @@ -272577,7 +273379,7 @@ Inhuman: installDir: INHUMAN: {} launch: - /REAL_PROJECT.exe: + "/REAL_PROJECT.exe": - when: - bit: 64 os: windows @@ -272589,35 +273391,35 @@ Inhumanus: Inhumanus: {} steam: id: 767970 -'Initia: Elemental Arena': +"Initia: Elemental Arena": installDir: Initia Elemental Arena: {} launch: - /InitiaElementalArena.exe: + "/InitiaElementalArena.exe": - when: - os: windows store: steam steam: id: 463920 -'Initial 2 : New Stage': +"Initial 2 : New Stage": installDir: Initial 2 New Stage: {} launch: - /Initial2.exe: + "/Initial2.exe": - when: - bit: 64 os: windows store: steam steam: id: 904310 -'Initial D: Mountain Vengeance': +"Initial D: Mountain Vengeance": files: - /Saves: + "/Saves": tags: - save when: - os: windows - /cfg: + "/cfg": tags: - config when: @@ -272626,20 +273428,20 @@ Initiation: installDir: Initiation: {} launch: - /Initiation.exe: + "/Initiation.exe": - when: - os: windows store: steam steam: id: 748050 -'Initiative: Red Dawn': +"Initiative: Red Dawn": steam: id: 668000 -'Injection π23 ''No Name, No Number''': +"Injection π23 'No Name, No Number'": installDir: - 'Injection π23 ''No Name, No Number''': {} + "Injection π23 'No Name, No Number'": {} launch: - /InjectionPi23 NNNN (PC-STEAM)/InjectionPi23 NNNN (PC-STEAM).exe: + "/InjectionPi23 NNNN (PC-STEAM)/InjectionPi23 NNNN (PC-STEAM).exe": - when: - bit: 64 os: windows @@ -272651,12 +273453,12 @@ Injured by Space: id: 804940 Injustice 2: files: - /userdata//627270/remote: + "/userdata//627270/remote": tags: - save when: - store: steam - /Injustice2/UserSettings.ini: + "/Injustice2/UserSettings.ini": tags: - config when: @@ -272664,22 +273466,22 @@ Injustice 2: installDir: Injustice2: {} launch: - /Binaries/Retail/Injustice2.exe: + "/Binaries/Retail/Injustice2.exe": - when: - bit: 64 os: windows store: steam steam: id: 627270 -'Injustice: Gods Among Us': +"Injustice: Gods Among Us": files: - /userdata//242700/remote/user: + "/userdata//242700/remote/user": tags: - save when: - os: windows store: steam - /Injustice: + "/Injustice": tags: - config when: @@ -272687,21 +273489,21 @@ Injustice 2: installDir: InjusticeGodsAmongUs_UltimateEdition: {} launch: - /DiscContentPCG/Injustice.exe: + "/DiscContentPCG/Injustice.exe": - when: - store: steam - workingDir: /DiscContentPCG - /DiscContentPCG/InjusticeLauncher.exe: + workingDir: "/DiscContentPCG" + "/DiscContentPCG/InjusticeLauncher.exe": - when: - store: steam - workingDir: /DiscContentPCG + workingDir: "/DiscContentPCG" steam: id: 242700 Ink Cipher: installDir: Ink Cipher: {} launch: - /InkCipher.exe: + "/InkCipher.exe": - when: - os: windows store: steam @@ -272714,7 +273516,7 @@ Ink Plane: installDir: Ink Plane: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -272724,7 +273526,7 @@ InkSplosion: installDir: InkSplosion: {} launch: - /InkSplosion.exe: + "/InkSplosion.exe": - when: - os: windows store: steam @@ -272732,7 +273534,7 @@ InkSplosion: id: 827450 Inked: files: - /AppData/LocalLow/Somnium Games/Inked/savedGames.gd: + "/AppData/LocalLow/Somnium Games/Inked/savedGames.gd": tags: - save when: @@ -272742,11 +273544,11 @@ Inked: installDir: Inked: {} launch: - /Inked.app/Contents/MacOS/Inked: + "/Inked.app/Contents/MacOS/Inked": - when: - os: mac store: steam - /Inked.exe: + "/Inked.exe": - when: - os: windows store: steam @@ -272760,15 +273562,15 @@ Inklings: installDir: Inklings: {} launch: - /Inklings: + "/Inklings": - when: - os: linux store: steam - /Inklings.app: + "/Inklings.app": - when: - os: mac store: steam - /Inklings.exe: + "/Inklings.exe": - when: - os: windows store: steam @@ -272780,13 +273582,13 @@ Inkulinati: installDir: Inkulinati: {} launch: - /Inkulinati.app: - - arguments: '-nolog' + "/Inkulinati.app": + - arguments: "-nolog" when: - os: mac store: steam - /Inkulinati.exe: - - arguments: '-nolog' + "/Inkulinati.exe": + - arguments: "-nolog" when: - os: windows store: steam @@ -272796,7 +273598,7 @@ Inlight: installDir: Towaga Among Shadows: {} launch: - /Towaga Among Shadows.exe: + "/Towaga Among Shadows.exe": - when: - os: windows store: steam @@ -272806,20 +273608,20 @@ Inline: installDir: Inline: {} launch: - /Inline.app: + "/Inline.app": - when: - os: mac store: steam - /Inline.exe: + "/Inline.exe": - when: - os: windows store: steam - /Inline.x86: + "/Inline.x86": - when: - bit: 32 os: linux store: steam - /Inline.x86_64: + "/Inline.x86_64": - when: - bit: 64 os: linux @@ -272830,7 +273632,7 @@ Inmates: installDir: Inmates: {} launch: - /Inmates.exe: + "/Inmates.exe": - when: - bit: 64 os: windows @@ -272839,7 +273641,7 @@ Inmates: id: 634120 Inmost: files: - /AppData/LocalLow/HiddenLayerGames/INMOST: + "/AppData/LocalLow/HiddenLayerGames/INMOST": tags: - save when: @@ -272849,11 +273651,11 @@ Inmost: installDir: Inmost: {} launch: - /INMOST.exe: + "/INMOST.exe": - when: - os: windows store: steam - /inmost.app: + "/inmost.app": - when: - os: mac store: steam @@ -272863,11 +273665,11 @@ Inmost: - config steam: id: 938560 -'Inn: the Countryside': +"Inn: the Countryside": installDir: Inn the Countryside: {} launch: - /InnTheCountryside.exe: + "/InnTheCountryside.exe": - when: - os: windows store: steam @@ -272877,15 +273679,15 @@ Inner: installDir: Inner: {} launch: - /INNER.x86_64: + "/INNER.x86_64": - when: - os: linux store: steam - /Inner.exe: + "/Inner.exe": - when: - os: windows store: steam - /Inner.x86_64: + "/Inner.x86_64": - when: - os: linux store: steam @@ -272893,12 +273695,12 @@ Inner: id: 1133210 Inner Chains: files: - /InnerChains/Saved/Config/WindowsNoEditor: + "/InnerChains/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /InnerChains/Saved/SaveGames: + "/InnerChains/Saved/SaveGames": tags: - save when: @@ -272908,7 +273710,7 @@ Inner Chains: installDir: Inner Chains: {} launch: - /InnerChains.exe: + "/InnerChains.exe": - when: - os: windows store: steam @@ -272918,20 +273720,20 @@ Inner Mazes - Souls Guides: installDir: Inner Mazes - Souls Guides: {} launch: - /SoulsGuides.app/Contents/MacOS/SoulsGuides: + "/SoulsGuides.app/Contents/MacOS/SoulsGuides": - when: - os: mac store: steam - /SoulsGuides.exe: + "/SoulsGuides.exe": - when: - os: windows store: steam - /SoulsGuides.x86: + "/SoulsGuides.x86": - when: - bit: 32 os: linux store: steam - /SoulsGuides.x86_64: + "/SoulsGuides.x86_64": - when: - bit: 64 os: linux @@ -272943,7 +273745,7 @@ Inner Riddle: id: 818090 Inner Voices: files: - /Purgatory_4_14/Saved: + "/Purgatory_4_14/Saved": tags: - config - save @@ -272952,7 +273754,7 @@ Inner Voices: installDir: InnerVoices: {} launch: - /LauncherNNG.exe: + "/LauncherNNG.exe": - when: - bit: 64 os: windows @@ -272961,12 +273763,12 @@ Inner Voices: id: 559130 Inner Worlds: files: - /*.SAV: + "/*.SAV": tags: - save when: - os: dos - /IW.CFG: + "/IW.CFG": tags: - config when: @@ -272975,7 +273777,7 @@ Inner silence: installDir: Inner silence: {} launch: - /Inner silence.exe: + "/Inner silence.exe": - when: - os: windows store: steam @@ -272985,7 +273787,7 @@ InnerCube: installDir: InnerCube: {} launch: - /InnerCube.exe: + "/InnerCube.exe": - when: - os: windows store: steam @@ -272993,17 +273795,17 @@ InnerCube: id: 344270 InnerSpace: files: - /.config/unity3d/PolyKnight Games/InnerSpace: + "/.config/unity3d/PolyKnight Games/InnerSpace": tags: - save when: - os: linux - /AppData/LocalLow/PolyKnight Games/InnerSpace/: + "/AppData/LocalLow/PolyKnight Games/InnerSpace/": tags: - save when: - os: windows - /Library/Application Support/unity.PolyKnight Games.InnerSpace: + "/Library/Application Support/unity.PolyKnight Games.InnerSpace": tags: - save when: @@ -273011,16 +273813,16 @@ InnerSpace: installDir: InnerSpace: {} launch: - /InnerSpace.app: + "/InnerSpace.app": - when: - bit: 64 os: mac store: steam - /InnerSpace.exe: + "/InnerSpace.exe": - when: - os: windows store: steam - /InnerSpace.x86_64: + "/InnerSpace.x86_64": - when: - bit: 64 os: linux @@ -273035,17 +273837,17 @@ Innocence Or Money - Prelude: installDir: Innocence Or Money - Prelude: {} launch: - /InnocenceOrMoney-32.exe: + "/InnocenceOrMoney-32.exe": - when: - bit: 32 os: windows store: steam - /InnocenceOrMoney.exe: + "/InnocenceOrMoney.exe": - when: - bit: 64 os: windows store: steam - /InnocenceOrMoney.sh: + "/InnocenceOrMoney.sh": - when: - os: linux store: steam @@ -273055,17 +273857,17 @@ Innocence Or Money - V 0.0.3: installDir: Innocence Or Money - V 0.0.3: {} launch: - /InnocenceOrMoney-32.exe: + "/InnocenceOrMoney-32.exe": - when: - bit: 32 os: windows store: steam - /InnocenceOrMoney.exe: + "/InnocenceOrMoney.exe": - when: - bit: 64 os: windows store: steam - /InnocenceOrMoney.sh: + "/InnocenceOrMoney.sh": - when: - os: linux store: steam @@ -273076,12 +273878,12 @@ Innocent: Innocent: {} steam: id: 790570 -'Innocent Forest 2: The Bed in the Sky': +"Innocent Forest 2: The Bed in the Sky": installDir: Innocent Forest 2 The Bed in the Sky: {} steam: id: 929180 -'Innocent Forest: The Bird of Light': +"Innocent Forest: The Bird of Light": installDir: Innocent Forest The Bird of Light: {} steam: @@ -273090,31 +273892,33 @@ Innoquous 5: installDir: Innoquous 5: {} launch: - /Innoquous New.exe: + "/Innoquous New.exe": - when: - os: windows store: steam - /game.exe: + "/game.exe": - when: - os: mac store: steam + - os: linux + store: steam steam: id: 453830 Ino: installDir: Ino: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam steam: id: 398140 -Inori's House: +"Inori's House": installDir: - Inori's House: {} + "Inori's House": {} launch: - /InorisHouse.exe: + "/InorisHouse.exe": - when: - os: windows store: steam @@ -273122,12 +273926,12 @@ Inori's House: id: 1073370 Inquisitor: files: - /Inquisitor_SaveGames: + "/Inquisitor_SaveGames": tags: - save when: - os: windows - /Inquisitor_SaveGames/d3dparams.ini: + "/Inquisitor_SaveGames/d3dparams.ini": tags: - config when: @@ -273137,28 +273941,28 @@ Inquisitor: installDir: Inquisitor: {} launch: - /Game/Inquisitor.exe: + "/Game/Inquisitor.exe": - when: - store: steam - workingDir: /Game + workingDir: "/Game" steam: id: 241620 -'Inquisitor: The Hammer of Witches': +"Inquisitor: The Hammer of Witches": steam: id: 1066740 InsanZ - Retro Survival Horror: installDir: InsanZ - Retro Survival Horror: {} launch: - /DLC/Insanz - DR. TEST HOME.exe: + "/DLC/Insanz - DR. TEST HOME.exe": - when: - os: windows store: steam - /DLC/Insanz - KiLL The Engine.exe: + "/DLC/Insanz - KiLL The Engine.exe": - when: - os: windows store: steam - /InsanZ.exe: + "/InsanZ.exe": - when: - os: windows store: steam @@ -273166,17 +273970,17 @@ InsanZ - Retro Survival Horror: id: 367040 Insane: files: - /Data/*.ctl: + "/Data/*.ctl": tags: - config when: - os: windows - /Data/Replays: + "/Data/Replays": tags: - save when: - os: windows - /Player*.chp: + "/Player*.chp": tags: - save when: @@ -273191,11 +273995,11 @@ Insane (2016): installDir: Insane: {} launch: - /Insane.app: + "/Insane.app": - when: - os: mac store: steam - /Insane.exe: + "/Insane.exe": - when: - os: windows store: steam @@ -273203,12 +274007,12 @@ Insane (2016): id: 452930 Insane 2: files: - /userdata//35320/remote: + "/userdata//35320/remote": tags: - save when: - store: steam - /My Games/insane2: + "/My Games/insane2": tags: - config when: @@ -273216,39 +274020,39 @@ Insane 2: installDir: Insane2: {} launch: - /i2.exe: + "/i2.exe": - when: - store: steam steam: id: 35320 -'Insane Cold: Back to the Ice Age': +"Insane Cold: Back to the Ice Age": installDir: Insane Cold Back to the Ice Age: {} launch: - /InsaneCold.exe: + "/InsaneCold.exe": - when: - store: steam steam: id: 764010 -'Insane Decay of Mind: The Labyrinth': +"Insane Decay of Mind: The Labyrinth": installDir: Insane Decay of Mind: {} launch: - /IDM.exe: + "/IDM.exe": - when: - os: windows store: steam steam: id: 450060 -'Insane Insects: The Inception': +"Insane Insects: The Inception": installDir: Insane Insects The Inception: {} launch: - /UDK-2014-08/Binaries/Win32/UDK.exe: + "/UDK-2014-08/Binaries/Win32/UDK.exe": - arguments: IITI_TheGame_MainMenu.udk?game=IITI_TheGame.IITI_TheGame when: - store: steam - workingDir: /UDK-2014-08/Binaries/Win32 + workingDir: "/UDK-2014-08/Binaries/Win32" steam: id: 443070 Insane Road: @@ -273258,11 +274062,11 @@ Insane Robots: installDir: Insane Robots: {} launch: - /Insane Robots.app: + "/Insane Robots.app": - when: - os: mac store: steam - /Insane Robots.exe: + "/Insane Robots.exe": - when: - os: windows store: steam @@ -273272,7 +274076,7 @@ Insane West: installDir: INSANE WEST: {} launch: - /MYWT.exe: + "/MYWT.exe": - when: - os: windows store: steam @@ -273280,12 +274084,12 @@ Insane West: id: 1063820 Insanely Twisted Shadow Planet: files: - /Insanely Twisted Shadow Planet: + "/Insanely Twisted Shadow Planet": tags: - save when: - os: windows - /Fuelcell/Insanely Twisted Shadow Planet: + "/Fuelcell/Insanely Twisted Shadow Planet": tags: - config - save @@ -273294,15 +274098,15 @@ Insanely Twisted Shadow Planet: installDir: Insanely Twisted Shadow Planet: {} launch: - /FCEngine.exe: + "/FCEngine.exe": - when: - os: windows store: steam - /ITSP.app: + "/ITSP.app": - when: - os: mac store: steam - /fcengine-bin32: + "/fcengine-bin32": - when: - os: linux store: steam @@ -273310,7 +274114,7 @@ Insanely Twisted Shadow Planet: id: 205730 Insaniquarium: files: - /Steam/Insaniquarium/userdata: + "/Steam/Insaniquarium/userdata": tags: - save when: @@ -273318,7 +274122,7 @@ Insaniquarium: installDir: Insaniquarium Deluxe: {} launch: - /Insaniquarium.exe: + "/Insaniquarium.exe": - when: - store: steam steam: @@ -273327,26 +274131,26 @@ Insanity Clicker: installDir: Insanity Clicker: {} launch: - /Insanity Clicker.exe: + "/Insanity Clicker.exe": - when: - os: windows store: steam - /InsanityClicker.app: + "/InsanityClicker.app": - when: - os: mac store: steam steam: id: 393530 -'Insanity VR: Last Score': +"Insanity VR: Last Score": installDir: Insanity VR Last Score: {} steam: id: 686340 -Insanity's Blade: +"Insanity's Blade": installDir: Insanitys Blade: {} launch: - /IBLaunch.exe: + "/IBLaunch.exe": - when: - os: windows store: steam @@ -273356,11 +274160,11 @@ Insanus Express: installDir: Insanus Express: {} launch: - /InsanusExpress.app: + "/InsanusExpress.app": - when: - os: mac store: steam - /InsanusExpress.exe: + "/InsanusExpress.exe": - when: - os: windows store: steam @@ -273371,7 +274175,7 @@ Insatia: id: 563530 Inscryption: files: - /SaveFile.gwsave: + "/SaveFile.gwsave": tags: - save when: @@ -273385,7 +274189,7 @@ Inscryption: installDir: Inscryption: {} launch: - /Inscryption.exe: + "/Inscryption.exe": - when: - os: windows store: steam @@ -273400,7 +274204,7 @@ Insect Simulator: installDir: Insect Simulator: {} launch: - /WindowsNoEditor/InsectSim.exe: + "/WindowsNoEditor/InsectSim.exe": - when: - os: windows store: steam @@ -273410,11 +274214,11 @@ Insecters War: installDir: Insecters War: {} launch: - /InsectersWar.app: + "/InsectersWar.app": - when: - os: mac store: steam - /InsectersWar.exe: + "/InsectersWar.exe": - when: - os: windows store: steam @@ -273422,7 +274226,7 @@ Insecters War: id: 335950 Insecticide: files: - /profiles: + "/profiles": tags: - save when: @@ -273430,7 +274234,7 @@ Insecticide: installDir: Insecticide Part 1: {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: @@ -273439,17 +274243,17 @@ Insectipede: installDir: Insectipede: {} launch: - /Insectipede.exe: + "/Insectipede.exe": - when: - os: windows store: steam steam: id: 1097650 -'Insectophobia: Episode 1': +"Insectophobia: Episode 1": installDir: Insectophobia Episode 1: {} launch: - /insect.exe: + "/insect.exe": - when: - os: windows store: steam @@ -273465,38 +274269,38 @@ Insert Paper: installDir: Insert Paper: {} launch: - /InsertPaper.exe: + "/InsertPaper.exe": - when: - store: steam steam: id: 661490 Inside: files: - /INSIDE_Data/Game2.sav: + "/INSIDE_Data/Game2.sav": tags: - save when: - os: windows - /userdata//304430/remote: + "/userdata//304430/remote": tags: - save when: - store: steam - /Playdead/Inside/Game2.sav: + "/Playdead/Inside/Game2.sav": tags: - save when: - - store: epic + - os: windows gog: id: 1916896012 installDir: INSIDE: {} launch: - /INSIDE.app: + "/INSIDE.app": - when: - os: mac store: steam - /INSIDE.exe: + "/INSIDE.exe": - when: - os: windows store: steam @@ -273513,7 +274317,7 @@ Inside Grass: installDir: Inside Grass: {} launch: - /Inside Grass.exe: + "/Inside Grass.exe": - when: - os: windows store: steam @@ -273521,7 +274325,7 @@ Inside Grass: id: 943040 Inside Jennifer: files: - /RenPy/InsideJennifer-1614086089: + "/RenPy/InsideJennifer-1614086089": tags: - save when: @@ -273531,14 +274335,14 @@ Inside Jennifer: installDir: Inside Jennifer - Season 1: {} launch: - /InsideJennifer.app: + "/InsideJennifer.app": - when: - os: mac store: steam - /InsideJennifer.exe: + "/InsideJennifer.exe": - when: - store: steam - /InsideJennifer.sh: + "/InsideJennifer.sh": - when: - os: linux store: steam @@ -273548,7 +274352,7 @@ Inside Me: installDir: Inside Me: {} launch: - /InsideMe.exe: + "/InsideMe.exe": - when: - os: windows store: steam @@ -273556,12 +274360,12 @@ Inside Me: id: 404860 Inside My Radio: files: - /SeavenStudio/InsideMyRadio: + "/SeavenStudio/InsideMyRadio": tags: - config when: - os: windows - /SeavenStudio/InsideMyRadio/Default: + "/SeavenStudio/InsideMyRadio/Default": tags: - save when: @@ -273569,11 +274373,11 @@ Inside My Radio: installDir: Inside My Radio: {} launch: - /InsideMyRadio.exe: + "/InsideMyRadio.exe": - when: - os: windows store: steam - /LaunchConfig.exe: + "/LaunchConfig.exe": - when: - store: steam steam: @@ -273582,7 +274386,7 @@ Inside The Code: installDir: Inside The Code: {} launch: - /Inside the Code.exe: + "/Inside the Code.exe": - when: - os: windows store: steam @@ -273597,7 +274401,7 @@ Inside The Gear: installDir: Inside The Gear: {} launch: - /InsideTheGear1.01.exe: + "/InsideTheGear1.01.exe": - when: - store: steam steam: @@ -273611,11 +274415,11 @@ Inside a Star-filled Sky: installDir: InsideAStarFilledSky: {} launch: - /StarFilledSky.app: + "/StarFilledSky.app": - when: - os: mac store: steam - /resSetter.exe: + "/resSetter.exe": - when: - os: windows store: steam @@ -273625,7 +274429,7 @@ Inside path: installDir: inside path: {} launch: - /insidepath.exe: + "/insidepath.exe": - when: - os: windows store: steam @@ -273635,17 +274439,17 @@ Inside the Backrooms: installDir: Inside The Backrooms: {} launch: - /Inside the Backrooms.exe: + "/Inside the Backrooms.exe": - when: - os: windows store: steam steam: id: 1987080 -'Inside: Before Birth': +"Inside: Before Birth": installDir: Inside Before Birth: {} launch: - /INSIDE.exe: + "/INSIDE.exe": - when: - os: windows store: steam @@ -273655,21 +274459,24 @@ Insidia: installDir: Insidia: {} launch: - /Insidia.app: + "/Insidia.app": - when: - os: mac store: steam - /Insidia.exe: + "/Insidia.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam - /Insidia.x86: + "/Insidia.x86": - when: - bit: 32 os: linux store: steam - /Insidia.x86_64: + "/Insidia.x86_64": - when: - bit: 64 os: linux @@ -273680,21 +274487,21 @@ Insignificant: installDir: Insignificant: {} launch: - /Insignificant_Linux.x86: + "/Insignificant_Linux.x86": - when: - bit: 32 os: linux store: steam - /Insignificant_Linux.x86_64: + "/Insignificant_Linux.x86_64": - when: - bit: 64 os: linux store: steam - /Insignificant_Windows.exe: + "/Insignificant_Windows.exe": - when: - os: windows store: steam - /Insignificant_macOS.app: + "/Insignificant_macOS.app": - when: - os: mac store: steam @@ -273702,12 +274509,12 @@ Insignificant: id: 467440 Insincere: files: - /Files/Gamesaves: + "/Files/Gamesaves": tags: - save when: - os: windows - /setup.ini: + "/setup.ini": tags: - config when: @@ -273715,19 +274522,19 @@ Insincere: installDir: Insincere: {} launch: - /Insincere v1.exe: + "/Insincere v1.exe": - when: - store: steam steam: id: 467000 -'Insomnia: The Ark': +"Insomnia: The Ark": files: - /Insomnia_v2/Saved/Config/WindowsNoEditor: + "/Insomnia_v2/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /Insomnia_v2/Saved/SaveGames: + "/Insomnia_v2/Saved/SaveGames": tags: - save when: @@ -273744,7 +274551,7 @@ Insomnis: installDir: Insomnis: {} launch: - /UE4Insomnis.exe: + "/UE4Insomnis.exe": - when: - bit: 64 os: windows @@ -273755,17 +274562,17 @@ Inspector - 生化战警: installDir: content: {} launch: - /Inspector.exe: + "/Inspector.exe": - when: - os: windows store: steam steam: id: 1153710 -'Inspector Gadget: Mad Time Party': +"Inspector Gadget: Mad Time Party": installDir: Inspector Gadget - Mad Time Party: {} launch: - /Inspector_Gadget_MAD_Time_Party.exe: + "/Inspector_Gadget_MAD_Time_Party.exe": - when: - os: windows store: steam @@ -273773,7 +274580,7 @@ Inspector - 生化战警: id: 2409500 Inspector Waffles: files: - /AppData/LocalLow/Goloso Games/Inspector Waffles: + "/AppData/LocalLow/Goloso Games/Inspector Waffles": tags: - save when: @@ -273783,7 +274590,7 @@ Inspector Waffles: installDir: Inspector Waffles: {} launch: - /Inspector Waffles.exe: + "/Inspector Waffles.exe": - when: - os: windows store: steam @@ -273801,7 +274608,7 @@ Instant Death: installDir: Instant Death: {} launch: - /Instant Death.exe: + "/Instant Death.exe": - when: - bit: 64 os: windows @@ -273810,12 +274617,12 @@ Instant Death: id: 779360 Instant Dungeon!: files: - /Instant Dungeon/save.dat: + "/Instant Dungeon/save.dat": tags: - save when: - os: windows - /Instant Dungeon/video.conf: + "/Instant Dungeon/video.conf": tags: - config when: @@ -273823,7 +274630,7 @@ Instant Dungeon!: installDir: Instant Dungeon!: {} launch: - /bin/instantdungeon.exe: + "/bin/instantdungeon.exe": - when: - os: windows store: steam @@ -273831,12 +274638,12 @@ Instant Dungeon!: id: 326720 Instinct: files: - /user_data/config_engine: + "/user_data/config_engine": tags: - config when: - os: windows - /user_data/savegames: + "/user_data/savegames": tags: - save when: @@ -273845,15 +274652,15 @@ Instinct (2018): installDir: Instinct: {} launch: - /Instinct.app: + "/Instinct.app": - when: - os: mac store: steam - /Instinct.exe: + "/Instinct.exe": - when: - os: windows store: steam - /Instinct.sh: + "/Instinct.sh": - when: - os: linux store: steam @@ -273863,17 +274670,17 @@ Instinct Rush: installDir: Instinct Rush: {} launch: - /Instinct Rush.exe: + "/Instinct Rush.exe": - when: - os: windows store: steam - /InstinctRush.app/Contents/MacOS/InstinctRush: + "/InstinctRush.app/Contents/MacOS/InstinctRush": - when: - os: mac store: steam steam: id: 1056070 -'Instinct: Survival': +"Instinct: Survival": steam: id: 1064790 Instinction: @@ -273883,7 +274690,7 @@ Instruments of Destruction: installDir: Instruments of Destruction: {} launch: - /Instruments.exe: + "/Instruments.exe": - when: - bit: 64 os: windows @@ -273894,8 +274701,8 @@ Insurgence - Chains of Renegade: installDir: Insurgence RPG: {} launch: - /Game.exe: - - arguments: '--in-process-gpu' + "/Game.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam @@ -273905,8 +274712,8 @@ Insurgence - Second Assault: installDir: Insurgence - Second Assault: {} launch: - /Game.exe: - - arguments: '--in-process-gpu' + "/Game.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam @@ -273914,7 +274721,7 @@ Insurgence - Second Assault: id: 1081100 Insurgency: files: - /insurgency/cfg: + "/insurgency/cfg": tags: - config when: @@ -273922,55 +274729,57 @@ Insurgency: installDir: insurgency2: {} launch: - /insurgency.sh: - - arguments: '-console' + "/insurgency.sh": + - arguments: "-console" when: - os: mac store: steam - /insurgency_BE.exe: - - arguments: '-console -crashinprocess' + - os: linux + store: steam + "/insurgency_BE.exe": + - arguments: "-console -crashinprocess" when: - os: windows store: steam - workingDir: /bin + workingDir: "/bin" steam: id: 222880 -'Insurgency: Modern Infantry Combat': +"Insurgency: Modern Infantry Combat": installDir: Source SDK Base: {} launch: - /hl2.exe: - - arguments: '-game insurgency -steam' + "/hl2.exe": + - arguments: "-game insurgency -steam" when: - store: steam steam: id: 17700 -'Insurgency: Sandstorm': +"Insurgency: Sandstorm": files: - /Insurgency/Saved/Config/WindowsClient: + "/Insurgency/Saved/Config/WindowsClient": tags: - config when: - os: windows - /Insurgency/Saved/SaveGames/Profile: + "/Insurgency/Saved/SaveGames/Profile": tags: - save when: - os: windows id: steamExtra: - - 1409142 - - 1409141 - - 1409143 - - 1409140 - 1308180 - 1308181 - 1308182 - 1308183 + - 1409140 + - 1409141 + - 1409142 + - 1409143 installDir: sandstorm: {} launch: - /InsurgencyEAC.exe: + "/InsurgencyEAC.exe": - when: - bit: 64 os: windows @@ -273979,7 +274788,7 @@ Insurgency: id: 581320 Insurmountable: files: - /AppData/LocalLow/Daedalic Entertainment GmbH/Insurmountable: + "/AppData/LocalLow/Daedalic Entertainment GmbH/Insurmountable": tags: - save when: @@ -273989,7 +274798,7 @@ Insurmountable: installDir: Insurmountable: {} launch: - /Insurmountable.exe: + "/Insurmountable.exe": - when: - bit: 64 os: windows @@ -273998,7 +274807,7 @@ Insurmountable: id: 1385100 Intake: files: - /userdata//237760: + "/userdata//237760": tags: - save when: @@ -274006,16 +274815,16 @@ Intake: installDir: Intake: {} launch: - /Intake.app: + "/Intake.app": - when: - os: mac store: steam - /Intake.exe: + "/Intake.exe": - when: - os: windows store: steam registry: - 'HKEY_CURRENT_USER/Software/Cipher Prime Studios, Inc./Intake': + "HKEY_CURRENT_USER/Software/Cipher Prime Studios, Inc./Intake": tags: - config steam: @@ -274024,7 +274833,7 @@ Integrity: installDir: Epic Royal: {} launch: - /EpicRoyal1.exe: + "/EpicRoyal1.exe": - when: - bit: 64 os: windows @@ -274040,80 +274849,80 @@ Intelligence Trader: installDir: Intelligence Trader: {} launch: - /Intelligence Trader.app/Contents/MacOS/Intelligence Trader: + "/Intelligence Trader.app/Contents/MacOS/Intelligence Trader": - when: - os: mac store: steam - /Intelligence Trader.exe: + "/Intelligence Trader.exe": - when: - os: windows store: steam steam: id: 885100 -'Intelligence: Anime Girls': +"Intelligence: Anime Girls": installDir: Intelligence Anime girls: {} steam: id: 862880 -'Intelligence: Cats': +"Intelligence: Cats": installDir: Intelligence Cats: {} launch: - /Intelligence Cats.exe: + "/Intelligence Cats.exe": - when: - os: windows store: steam steam: id: 911270 -'Intelligence: Dinosaurs': +"Intelligence: Dinosaurs": installDir: Intelligence - Dinosaurs: {} launch: - /Intelligence Dinosaurs.exe: + "/Intelligence Dinosaurs.exe": - when: - os: windows store: steam steam: id: 835680 -'Intelligence: Dogs': +"Intelligence: Dogs": installDir: Intelligence Dogs: {} launch: - /Intelligence Dogs.exe: + "/Intelligence Dogs.exe": - when: - os: windows store: steam steam: id: 932350 -'Intelligence: Underwater Kingdom': +"Intelligence: Underwater Kingdom": installDir: Intelligence Underwater Kingdom: {} launch: - /Intelligence Underwater Kingdom.exe: + "/Intelligence Underwater Kingdom.exe": - when: - os: windows store: steam steam: id: 957930 -'Intelligent Design: An Evolutionary Sandbox': +"Intelligent Design: An Evolutionary Sandbox": installDir: Intelligent Design An Evolutionary Sandbox: {} launch: - /IntelligentDesignMac.app/Contents/MacOS/IntelligentDesignMac: + "/IntelligentDesignMac.app/Contents/MacOS/IntelligentDesignMac": - when: - os: mac store: steam - /intelligentDesign.x86: + "/intelligentDesign.x86": - when: - bit: 32 os: linux store: steam - /intelligentDesign.x86_64: + "/intelligentDesign.x86_64": - when: - bit: 64 os: linux store: steam - /intelligentdesign.exe: + "/intelligentdesign.exe": - when: - os: windows store: steam @@ -274123,7 +274932,7 @@ Intensive Exposure: installDir: Intensive Exposure: {} launch: - /IntensiveExposure.exe: + "/IntensiveExposure.exe": - when: - os: windows store: steam @@ -274133,20 +274942,20 @@ InterLogic: installDir: interLOGIC: {} launch: - /interLOGIC.app: + "/interLOGIC.app": - when: - os: mac store: steam - /interLOGIC.exe: + "/interLOGIC.exe": - when: - os: windows store: steam - /interLOGIC.x86: + "/interLOGIC.x86": - when: - bit: 32 os: linux store: steam - /interLOGIC.x86_64: + "/interLOGIC.x86_64": - when: - bit: 64 os: linux @@ -274157,15 +274966,15 @@ InterSection: installDir: InterSection: {} launch: - /InterSection.app: + "/InterSection.app": - when: - os: mac store: steam - /InterSection.exe: + "/InterSection.exe": - when: - os: windows store: steam - /InterSection.x86: + "/InterSection.x86": - when: - os: linux store: steam @@ -274175,31 +274984,31 @@ Interactive Horror Stories: installDir: Interactive Horror Stories: {} launch: - /Interactive Horror Stories.app: + "/Interactive Horror Stories.app": - when: - os: mac store: steam - /Interactive Horror Stories.exe: + "/Interactive Horror Stories.exe": - when: - os: windows store: steam - /InteractiveHorrorStories.x86: + "/InteractiveHorrorStories.x86": - when: - bit: 32 os: linux store: steam - /InteractiveHorrorStories.x86_64: + "/InteractiveHorrorStories.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 1169490 -'Interactivity: The Interactive Experience': +"Interactivity: The Interactive Experience": installDir: Interactivity The Interactive Experience: {} launch: - /Interactivity_v2.exe: + "/Interactivity_v2.exe": - when: - os: windows store: steam @@ -274209,15 +275018,15 @@ Interfectorem: installDir: Interfectorem: {} launch: - /interfectorem.app: + "/interfectorem.app": - when: - os: mac store: steam - /interfectorem.exe: + "/interfectorem.exe": - when: - os: windows store: steam - /interfectorem.x86: + "/interfectorem.x86": - when: - os: linux store: steam @@ -274227,20 +275036,20 @@ Intergalactic Bubbles: installDir: Intergalactic Bubbles: {} launch: - /Intergalactic Bubbles.app: + "/Intergalactic Bubbles.app": - when: - os: mac store: steam - /Intergalactic Bubbles.exe: + "/Intergalactic Bubbles.exe": - when: - os: windows store: steam - /Intergalactic Bubbles.x86: + "/Intergalactic Bubbles.x86": - when: - bit: 32 os: linux store: steam - /Intergalactic Bubbles.x86_64: + "/Intergalactic Bubbles.x86_64": - when: - bit: 64 os: linux @@ -274251,7 +275060,7 @@ Intergalactic Fishing: installDir: Intergalactic Fishing: {} launch: - /Intergalactic Fishing.exe: + "/Intergalactic Fishing.exe": - when: - os: windows store: steam @@ -274261,26 +275070,26 @@ Intergalactic Road Warriors: installDir: Intergalactic Road Warriors: {} launch: - /IntergalacticRoadWarriors.app: + "/IntergalacticRoadWarriors.app": - when: - os: mac store: steam - /IntergalacticRoadWarriors.exe: + "/IntergalacticRoadWarriors.exe": - when: - os: windows store: steam - /IntergalacticRoadWarriors.x86: + "/IntergalacticRoadWarriors.x86": - when: - os: linux store: steam steam: id: 435210 -'Intergalactic Traveler: The Omega Sector': +"Intergalactic Traveler: The Omega Sector": installDir: Intergalactic traveler The Omega Sector: {} launch: - /Game.exe: - - arguments: '--in-process-gpu' + "/Game.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam @@ -274295,15 +275104,15 @@ Interloper: installDir: Interloper Game: {} launch: - /Interloper: + "/Interloper": - when: - os: linux store: steam - /Interloper.app: + "/Interloper.app": - when: - os: mac store: steam - /Interloper.exe: + "/Interloper.exe": - when: - os: windows store: steam @@ -274313,7 +275122,7 @@ Interlude: installDir: Interlude: {} launch: - /Interlude.exe: + "/Interlude.exe": - when: - os: windows store: steam @@ -274328,15 +275137,15 @@ Internal Storm: installDir: Internal Storm: {} launch: - /Internal Storm.app: + "/Internal Storm.app": - when: - os: mac store: steam - /Internal Storm.exe: + "/Internal Storm.exe": - when: - os: windows store: steam - /Internal Storm.x86_64: + "/Internal Storm.x86_64": - when: - os: linux store: steam @@ -274346,11 +275155,11 @@ International Affairs: installDir: International Affairs: {} launch: - /International_Affairs_Gold.app: + "/International_Affairs_Gold.app": - when: - os: mac store: steam - /International_Affairs_Gold.exe: + "/International_Affairs_Gold.exe": - when: - os: windows store: steam @@ -274360,7 +275169,7 @@ International Basketball Manager: installDir: International Basketball Manager: {} launch: - /ibm.exe: + "/ibm.exe": - when: - os: windows store: steam @@ -274368,19 +275177,19 @@ International Basketball Manager: id: 854890 International Rally Championship: files: - /savedata: + "/savedata": tags: - save when: - os: windows - /var: + "/var": tags: - config when: - os: windows International Snooker: files: - /IS2012: + "/IS2012": tags: - save when: @@ -274388,7 +275197,7 @@ International Snooker: installDir: International Snooker: {} launch: - /IS2012.exe: + "/IS2012.exe": - when: - store: steam steam: @@ -274400,7 +275209,7 @@ International Space Station Tour VR: id: 797200 Internet Cafe Simulator: files: - /AppData/LocalLow/Cheesecake Dev/Internet Cafe Simulator: + "/AppData/LocalLow/Cheesecake Dev/Internet Cafe Simulator": tags: - save when: @@ -274408,7 +275217,7 @@ Internet Cafe Simulator: installDir: Internet Cafe Simulator: {} launch: - /windows_content/Internet Cafe Simulator.exe: + "/windows_content/Internet Cafe Simulator.exe": - when: - store: steam steam: @@ -274417,7 +275226,7 @@ Internet Simulator: installDir: Internet Simulator: {} launch: - /Internet Simulator.exe: + "/Internet Simulator.exe": - when: - bit: 64 os: windows @@ -274426,22 +275235,22 @@ Internet Simulator: id: 758050 Interplanetary: files: - /.TJR/Interplanetary/save: + "/.TJR/Interplanetary/save": tags: - save when: - os: linux - /.TJR/Interplanetary/settings/gamesetting.cfg: + "/.TJR/Interplanetary/settings/gamesetting.cfg": tags: - config when: - os: linux - /TJR/Interplanetary/save: + "/TJR/Interplanetary/save": tags: - save when: - os: windows - /TJR/Interplanetary/settings/gamesetting.cfg: + "/TJR/Interplanetary/settings/gamesetting.cfg": tags: - config when: @@ -274449,15 +275258,15 @@ Interplanetary: installDir: Interplanetary: {} launch: - /Interplanetary.app: + "/Interplanetary.app": - when: - os: mac store: steam - /Interplanetary.exe: + "/Interplanetary.exe": - when: - os: windows store: steam - /Interplanetary.x86: + "/Interplanetary.x86": - when: - os: linux store: steam @@ -274468,21 +275277,21 @@ Interplanetary Hunter: Interplanetary Hunter: {} steam: id: 677780 -'Interplanetary: Enhanced Edition': +"Interplanetary: Enhanced Edition": installDir: Interplanetary Enhanced Edition: {} launch: - /Interplanetary.app: + "/Interplanetary.app": - when: - bit: 64 os: mac store: steam - /Interplanetary.exe: + "/Interplanetary.exe": - when: - bit: 64 os: windows store: steam - /Interplanetary.x86_64: + "/Interplanetary.x86_64": - when: - bit: 64 os: linux @@ -274493,20 +275302,20 @@ Interplay Solitaire: installDir: Interplay Solitaire: {} launch: - /InterplaySolitaire.app/Contents/MacOS/InterplaySolitaire: + "/InterplaySolitaire.app/Contents/MacOS/InterplaySolitaire": - when: - os: mac store: steam - /InterplaySolitaire.exe: + "/InterplaySolitaire.exe": - when: - os: windows store: steam - /InterplaySolitaire.x86: + "/InterplaySolitaire.x86": - when: - bit: 32 os: linux store: steam - /InterplaySolitaire.x86_64: + "/InterplaySolitaire.x86_64": - when: - bit: 64 os: linux @@ -274517,25 +275326,25 @@ Interregnum-Alpha: installDir: Interregnum: {} launch: - /Interregnum.exe: + "/Interregnum.exe": - when: - os: windows store: steam steam: id: 1103690 -'Interrogation: You Will Be Deceived': +"Interrogation: You Will Be Deceived": files: - /Interrogation/config: + "/Interrogation/config": tags: - config when: - os: windows - /Interrogation/save: + "/Interrogation/save": tags: - save when: - os: windows - /Interrogation/save_globals: + "/Interrogation/save_globals": tags: - save when: @@ -274545,15 +275354,15 @@ Interregnum-Alpha: installDir: Interrogation: {} launch: - /Interrogation.app/Contents/MacOS/Interrogation: + "/Interrogation.app/Contents/MacOS/Interrogation": - when: - os: mac store: steam - /Interrogation.exe: + "/Interrogation.exe": - when: - os: windows store: steam - /Interrogation.x86_64: + "/Interrogation.x86_64": - when: - bit: 64 os: linux @@ -274562,7 +275371,7 @@ Interregnum-Alpha: id: 1016770 Intershelter: files: - /AppData/LocalLow/Skies Technologies: + "/AppData/LocalLow/Skies Technologies": tags: - config when: @@ -274570,7 +275379,7 @@ Intershelter: installDir: INTERSHELTER: {} launch: - /INTERSHELTER_LAUNCHER.exe: + "/INTERSHELTER_LAUNCHER.exe": - when: - os: windows store: steam @@ -274580,20 +275389,20 @@ Intersolar Overdrive: installDir: Intersolar Overdrive: {} launch: - /InterSolarOverdrive.exe: + "/InterSolarOverdrive.exe": - when: - os: windows store: steam steam: id: 963510 -Interstate '76: +"Interstate '76": files: - /*.cmp: + "/*.cmp": tags: - save when: - os: windows - /savegame.dir: + "/savegame.dir": tags: - save when: @@ -274603,35 +275412,41 @@ Interstate '76: id: gogExtra: - 1207658836 -Interstate '82: +"Interstate '82": gog: id: 1207659076 Interstellar Invaders: installDir: Interstellar Invaders: {} launch: - /interstellarinvaders.app: + "/interstellarinvaders.app": - when: - bit: 64 os: mac store: steam - /nw: + "/nw": - when: - bit: 32 os: linux store: steam - /nw.exe: + - bit: 64 + os: linux + store: steam + "/nw.exe": - when: - bit: 32 os: windows store: steam + - bit: 64 + os: windows + store: steam steam: id: 680190 Interstellar Logistics Inc: installDir: Interstellar Logistics Inc: {} launch: - /Interstellar Logistics Inc.exe: + "/Interstellar Logistics Inc.exe": - when: - bit: 64 os: windows @@ -274640,12 +275455,12 @@ Interstellar Logistics Inc: id: 502150 Interstellar Marines: files: - /SavedStats.sav: + "/SavedStats.sav": tags: - save when: - store: steam - /.config/unity3d/Zero Point Software/Interstellar Marines: + "/.config/unity3d/Zero Point Software/Interstellar Marines": tags: - config when: @@ -274653,23 +275468,23 @@ Interstellar Marines: installDir: Interstellar Marines: {} launch: - /Interstellar Marines.app: + "/Interstellar Marines.app": - arguments: masterserver=68.183.59.221 ecschatserver=68.183.59.221 when: - os: mac store: steam - /InterstellarMarines.exe: + "/InterstellarMarines.exe": - arguments: masterserver=68.183.59.221 ecschatserver=68.183.59.221 when: - os: windows store: steam - /InterstellarMarines.x64: + "/InterstellarMarines.x64": - arguments: masterserver=68.183.59.221 ecschatserver=68.183.59.221 when: - bit: 64 os: linux store: steam - /InterstellarMarines.x86: + "/InterstellarMarines.x86": - arguments: masterserver=68.183.59.221 ecschatserver=68.183.59.221 when: - bit: 32 @@ -274685,7 +275500,7 @@ Interstellar Prime: installDir: INTERSTELLAR PRIME: {} launch: - /INTERSTELLAR PRIME.exe: + "/INTERSTELLAR PRIME.exe": - when: - os: windows store: steam @@ -274695,8 +275510,8 @@ Interstellar Rift: installDir: Interstellar Rift: {} launch: - /Build/IRLauncher.exe: - - arguments: '-splashscreen' + "/Build/IRLauncher.exe": + - arguments: "-splashscreen" when: - os: windows store: steam @@ -274706,27 +275521,27 @@ Interstellar Rogue: installDir: INTERSTELLAR ROGUE: {} launch: - /INTERSTELLAR ROGUE 1.exe: + "/INTERSTELLAR ROGUE 1.exe": - when: - store: steam - /INTERSTELLAR ROGUE 2.exe: + "/INTERSTELLAR ROGUE 2.exe": - when: - store: steam - /INTERSTELLAR ROGUE 3.exe: + "/INTERSTELLAR ROGUE 3.exe": - when: - store: steam - /INTERSTELLAR ROGUE L.exe: + "/INTERSTELLAR ROGUE L.exe": - when: - store: steam - /INTERSTELLAR ROGUE.exe: + "/INTERSTELLAR ROGUE.exe": - when: - os: windows store: steam steam: id: 1094050 -'Interstellar Space: Genesis': +"Interstellar Space: Genesis": files: - /AppData/LocalLow/Praxis Games/ISG: + "/AppData/LocalLow/Praxis Games/ISG": tags: - save when: @@ -274736,16 +275551,16 @@ Interstellar Rogue: installDir: Interstellar Space Genesis: {} launch: - /Contents/MacOS/1.0.7 mac: + "/Contents/MacOS/1.0.7 mac": - when: - os: mac store: steam - /isg.exe: + "/isg.exe": - when: - bit: 64 os: windows store: steam - /isg.x86_64: + "/isg.x86_64": - when: - bit: 64 os: linux @@ -274760,32 +275575,32 @@ Interstellar Transport Company: installDir: Interstellar Transport Company: {} launch: - /Interstellar_Transport_Company_lin32.x86: + "/Interstellar_Transport_Company_lin32.x86": - when: - bit: 32 os: linux store: steam - /Interstellar_Transport_Company_lin64.x86_64: + "/Interstellar_Transport_Company_lin64.x86_64": - when: - bit: 64 os: linux store: steam - /Interstellar_Transport_Company_mac32.app: + "/Interstellar_Transport_Company_mac32.app": - when: - bit: 32 os: mac store: steam - /Interstellar_Transport_Company_mac64.app: + "/Interstellar_Transport_Company_mac64.app": - when: - bit: 64 os: mac store: steam - /Interstellar_Transport_Company_win32.exe: + "/Interstellar_Transport_Company_win32.exe": - when: - bit: 32 os: windows store: steam - /Interstellar_Transport_Company_win64.exe: + "/Interstellar_Transport_Company_win64.exe": - when: - bit: 64 os: windows @@ -274798,15 +275613,15 @@ Interstellaria: installDir: Interstellaria: {} launch: - /Interstellaria.app: + "/Interstellaria.app": - when: - os: mac store: steam - /Interstellaria.exe: + "/Interstellaria.exe": - when: - os: windows store: steam - /Interstellaria.x86: + "/Interstellaria.x86": - when: - os: linux store: steam @@ -274824,12 +275639,12 @@ Into Blue Valley: installDir: Into Blue Valley: {} launch: - /IntoBlueValley_32bit.exe: + "/IntoBlueValley_32bit.exe": - when: - bit: 32 os: windows store: steam - /IntoBlueValley_64bit.exe: + "/IntoBlueValley_64bit.exe": - when: - bit: 64 os: windows @@ -274840,15 +275655,15 @@ Into Oblivion: installDir: Into Oblivion: {} launch: - /Into Oblivion.app: + "/Into Oblivion.app": - when: - os: mac store: steam - /into.exe: + "/into.exe": - when: - os: windows store: steam - /into.x86_64: + "/into.x86_64": - when: - os: linux store: steam @@ -274861,7 +275676,7 @@ Into The Valley: installDir: Into The Valley: {} launch: - /ITV200311.exe: + "/ITV200311.exe": - when: - os: windows store: steam @@ -274871,11 +275686,11 @@ Into the Belly of the Beast: installDir: Into the Belly of the Beast: {} launch: - /ITBOTB.app/Contents/MacOS/ITBOTB: + "/ITBOTB.app/Contents/MacOS/ITBOTB": - when: - os: mac store: steam - /ITBOTB.exe: + "/ITBOTB.exe": - when: - os: windows store: steam @@ -274883,24 +275698,24 @@ Into the Belly of the Beast: id: 428930 Into the Breach: files: - /Library/Application Support/IntoTheBreach: + "/Library/Application Support/IntoTheBreach": tags: - config - save when: - os: mac - /My Games/Into The Breach: + "/My Games/Into The Breach": tags: - config - save when: - os: windows - /IntoTheBreach: + "/IntoTheBreach": tags: - save when: - os: linux - /IntoTheBreach/settings.lua: + "/IntoTheBreach/settings.lua": tags: - config when: @@ -274910,16 +275725,16 @@ Into the Breach: installDir: Into the Breach: {} launch: - /Breach: + "/Breach": - when: - bit: 64 os: linux store: steam - /Breach.exe: + "/Breach.exe": - when: - os: windows store: steam - /Into the Breach.app: + "/Into the Breach.app": - when: - os: mac store: steam @@ -274929,34 +275744,34 @@ Into the Core: installDir: Into The Core: {} launch: - /IntoTheCore_win32_1.0.exe: + "/IntoTheCore_win32_1.0.exe": - when: - bit: 32 os: windows store: steam - /IntoTheCore_win64_1.0.exe: + "/IntoTheCore_win64_1.0.exe": - when: - bit: 64 os: windows store: steam steam: id: 1081160 -'Into the Dark: Ultimate Trash Edition': +"Into the Dark: Ultimate Trash Edition": installDir: Into the Dark: {} launch: - /into-the-dark/ITD_Launcher.exe: + "/into-the-dark/ITD_Launcher.exe": - when: - os: windows store: steam - workingDir: /into-the-dark + workingDir: "/into-the-dark" steam: id: 266050 Into the Flames: installDir: Into The Flames: {} launch: - /Project_Flames.exe: + "/Project_Flames.exe": - when: - os: windows store: steam @@ -274966,7 +275781,7 @@ Into the Fray: installDir: Into the Fray: {} launch: - /IntoTheFray.exe: + "/IntoTheFray.exe": - when: - os: windows store: steam @@ -274976,21 +275791,21 @@ Into the Gloom: installDir: Into The Gloom: {} launch: - /IntoTheGloom.exe: + "/IntoTheGloom.exe": - when: - os: windows store: steam - /IntoTheGloomSSE.exe: + "/IntoTheGloomSSE.exe": - when: - os: windows store: steam - /IntoTheGloomSSE11.exe: + "/IntoTheGloomSSE11.exe": - when: - os: windows store: steam steam: id: 342350 -'Into the Ice: Nazis of Neuschwabenland': +"Into the Ice: Nazis of Neuschwabenland": steam: id: 608610 Into the Maze: @@ -275002,7 +275817,7 @@ Into the Pit: installDir: Into the Pit: {} launch: - /Into The Pit.exe: + "/Into The Pit.exe": - when: - os: windows store: steam @@ -275030,7 +275845,7 @@ Into the Stars: installDir: Into the Stars: {} launch: - /Nebraska.exe: + "/Nebraska.exe": - when: - bit: 64 os: windows @@ -275041,12 +275856,12 @@ Into the Unknown: installDir: Into The Unknown: {} launch: - /Into The Unknown.app/Contents/MacOS/Into The Unknown: + "/Into The Unknown.app/Contents/MacOS/Into The Unknown": - when: - os: mac store: steam - /Into The Unknown.exe: - - arguments: '-windowed' + "/Into The Unknown.exe": + - arguments: "-windowed" when: - os: windows store: steam @@ -275056,20 +275871,20 @@ Into the Void (2015): installDir: Into the Void: {} launch: - /IntoTheVoid.app/Contents/MacOS/IntoTheVoid: + "/IntoTheVoid.app/Contents/MacOS/IntoTheVoid": - when: - os: mac store: steam - /IntoTheVoid.exe: + "/IntoTheVoid.exe": - when: - os: windows store: steam - /IntoTheVoid.x86: + "/IntoTheVoid.x86": - when: - bit: 32 os: linux store: steam - /IntoTheVoid.x86_64: + "/IntoTheVoid.x86_64": - when: - bit: 64 os: linux @@ -275080,7 +275895,7 @@ Into the War: installDir: Into The War: {} launch: - /IntoTheWar.exe: + "/IntoTheWar.exe": - when: - os: windows store: steam @@ -275088,12 +275903,12 @@ Into the War: id: 346370 Intralism: files: - /Editor/*.*: + "/Editor/*.*": tags: - save when: - os: windows - /Save/*.save: + "/Save/*.save": tags: - save when: @@ -275101,16 +275916,16 @@ Intralism: installDir: Intralism: {} launch: - /Intralism.app: + "/Intralism.app": - when: - os: mac store: steam - /Intralism.exe: + "/Intralism.exe": - when: - os: windows store: steam - /Intralism.x86_64: - - arguments: '-force-opengl' + "/Intralism.x86_64": + - arguments: "-force-opengl" when: - os: linux store: steam @@ -275118,12 +275933,12 @@ Intralism: id: 513510 Intravenous: files: - /intravenous: + "/intravenous": tags: - config when: - os: windows - /intravenous/savegames: + "/intravenous/savegames": tags: - save when: @@ -275133,7 +275948,7 @@ Intravenous: installDir: Intravenous: {} launch: - /intravenous.exe: + "/intravenous.exe": - when: - os: windows store: steam @@ -275143,7 +275958,7 @@ Intro Maker: installDir: Intro Maker: {} launch: - /Intro Maker.exe: + "/Intro Maker.exe": - when: - bit: 64 os: windows @@ -275154,25 +275969,25 @@ Introvert Quest: installDir: Introvert Quest: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam steam: id: 562640 -'Introvert: A Teenager Simulator': +"Introvert: A Teenager Simulator": installDir: Introvert A Teenager Simulator: {} launch: - /introvertateenagersimulator.app/Contents/MacOS/nwjs: + "/introvertateenagersimulator.app/Contents/MacOS/nwjs": - when: - os: mac store: steam - /nw: + "/nw": - when: - os: linux store: steam - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -275182,7 +275997,7 @@ Intrude: installDir: Intrude: {} launch: - /Intrude.exe: + "/Intrude.exe": - when: - os: windows store: steam @@ -275190,7 +276005,7 @@ Intrude: id: 495720 Intruder: files: - /AppData/LocalLow/SuperbossGames_com/Intruder: + "/AppData/LocalLow/SuperbossGames_com/Intruder": tags: - config when: @@ -275198,11 +276013,11 @@ Intruder: installDir: Intruder: {} launch: - /Intruder.app: + "/Intruder.app": - when: - os: mac store: steam - /IntruderLauncher.exe: + "/IntruderLauncher.exe": - when: - bit: 64 os: windows @@ -275213,30 +276028,30 @@ Intruder - War Areas: installDir: INTRUDER - WAR AREAS: {} launch: - /INTRUDER - WAR AREAS.exe: + "/INTRUDER - WAR AREAS.exe": - when: - os: windows store: steam steam: id: 556680 -'Intruder Alert: Ixian Operations': +"Intruder Alert: Ixian Operations": installDir: intruderalert_ixianoperations: {} launch: - /IntruderAlert.exe: + "/IntruderAlert.exe": - when: - os: windows store: steam steam: id: 458970 -'Intruders: Hide and Seek': +"Intruders: Hide and Seek": files: - /Daedalic Entertainment GmbH/Intruders/Saved/Config/WindowsNoEditor: + "/Daedalic Entertainment GmbH/Intruders/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /Daedalic Entertainment GmbH/Intruders/Saved/SaveGames: + "/Daedalic Entertainment GmbH/Intruders/Saved/SaveGames": tags: - save when: @@ -275244,7 +276059,7 @@ Intruder - War Areas: installDir: Intruders Hide and Seek: {} launch: - /Intruders.exe: + "/Intruders.exe": - when: - bit: 64 os: windows @@ -275253,12 +276068,12 @@ Intruder - War Areas: id: 1045840 Intrusion 2: files: - /intrusion2: + "/intrusion2": tags: - save when: - os: linux - /userdata//214970/remote: + "/userdata//214970/remote": tags: - save when: @@ -275266,11 +276081,11 @@ Intrusion 2: installDir: Intrusion 2: {} launch: - /intrusion2: + "/intrusion2": - when: - os: linux store: steam - /intrusion2.exe: + "/intrusion2.exe": - when: - os: windows store: steam @@ -275280,24 +276095,24 @@ Intrusion Protocol: installDir: Intrusion Protocol: {} launch: - /IP_Linux: + "/IP_Linux": - when: - os: linux store: steam - /Intrusion Protocol.exe: + "/Intrusion Protocol.exe": - when: - os: windows store: steam steam: id: 659040 -'Inua: A Story in Ice and Time': +"Inua: A Story in Ice and Time": files: - /AppData/LocalLow/ARTE France Apps/Inua/SaveFile.json: + "/AppData/LocalLow/ARTE France Apps/Inua/SaveFile.json": tags: - save when: - os: windows - /AppData/LocalLow/ARTE France Apps/Inua/Settings.json: + "/AppData/LocalLow/ARTE France Apps/Inua/Settings.json": tags: - config when: @@ -275307,30 +276122,30 @@ Intrusion Protocol: installDir: Inua: {} launch: - /Inua.app: + "/Inua.app": - when: - os: mac store: steam - /Inua.exe: + "/Inua.exe": - when: - bit: 64 os: windows store: steam steam: id: 1479890 -'Inugami: Doggy Dojo!': +"Inugami: Doggy Dojo!": installDir: InugamiDoggyDojo: {} launch: - /Inugami.app: + "/Inugami.app": - when: - os: mac store: steam - /Inugami.exe: + "/Inugami.exe": - when: - os: windows store: steam - /Inugami.sh: + "/Inugami.sh": - when: - os: linux store: steam @@ -275340,7 +276155,7 @@ Invaded: installDir: Invaded: {} launch: - /WindowsNoEditor/Invaded.exe: + "/WindowsNoEditor/Invaded.exe": - when: - os: windows store: steam @@ -275350,15 +276165,15 @@ Invaders from Dimension X: installDir: Invaders from Dimension X: {} launch: - /Contents/MacOS/Invaders.app: + "/Contents/MacOS/Invaders.app": - when: - os: mac store: steam - /Invaders: + "/Invaders": - when: - os: linux store: steam - /Invaders.exe: + "/Invaders.exe": - when: - os: windows store: steam @@ -275373,7 +276188,7 @@ Invaders! From Outer Space: installDir: Invaders From Outer Space: {} launch: - /invaders.exe: + "/invaders.exe": - when: - os: windows store: steam @@ -275383,7 +276198,7 @@ Invasher: installDir: Invasher: {} launch: - /Invasher.exe: + "/Invasher.exe": - when: - os: windows store: steam @@ -275396,7 +276211,7 @@ Invasion (2017): installDir: invasion: {} launch: - /invasion1.exe: + "/invasion1.exe": - when: - store: steam steam: @@ -275405,39 +276220,39 @@ Invasion (2019): installDir: INV: {} launch: - /INV.exe: + "/INV.exe": - when: - os: windows store: steam - /INV2.exe: + "/INV2.exe": - when: - os: windows store: steam - /INV3.exe: + "/INV3.exe": - when: - os: windows store: steam - /INV4.exe: + "/INV4.exe": - when: - os: windows store: steam - /INV5.exe: + "/INV5.exe": - when: - os: windows store: steam - /INV6.exe: + "/INV6.exe": - when: - os: windows store: steam - /INV7.exe: + "/INV7.exe": - when: - os: windows store: steam - /INVCS.exe: + "/INVCS.exe": - when: - os: windows store: steam - /INV_TPS.exe: + "/INV_TPS.exe": - when: - os: windows store: steam @@ -275447,7 +276262,7 @@ Invasion 2037: installDir: Invasion 2037: {} launch: - /Invasion2037.exe: + "/Invasion2037.exe": - when: - os: windows store: steam @@ -275457,7 +276272,7 @@ Invasion Machine: installDir: InvasionMachine: {} launch: - /Invasion Machine.exe: + "/Invasion Machine.exe": - when: - os: windows store: steam @@ -275467,17 +276282,17 @@ Invasion Zero: installDir: Invasion Zero: {} launch: - /Invasion Zero.exe: + "/Invasion Zero.exe": - when: - bit: 64 os: windows store: steam - /Invasion Zero.x86_64: + "/Invasion Zero.x86_64": - when: - bit: 64 os: linux store: steam - /MacOS.app/Contents/MacOS/Invasion Zero: + "/MacOS.app/Contents/MacOS/Invasion Zero": - when: - os: mac store: steam @@ -275490,17 +276305,17 @@ Invasion of the Box People: installDir: IOTBP: {} launch: - /IOTBP.exe: + "/IOTBP.exe": - when: - os: windows store: steam steam: id: 867760 -'Invasion: Brain Craving': +"Invasion: Brain Craving": installDir: Invasion Brain Craving: {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: @@ -275515,15 +276330,15 @@ Inventioneers: installDir: Inventioneers: {} launch: - /Inventioneers.app: + "/Inventioneers.app": - when: - os: mac store: steam - /Inventioneers.exe: + "/Inventioneers.exe": - when: - os: windows store: steam - /Inventioneers.x86: + "/Inventioneers.x86": - when: - os: linux store: steam @@ -275531,12 +276346,12 @@ Inventioneers: id: 395580 Inversion: files: - /Inversion Saves/game_local.cfg: + "/Inversion Saves/game_local.cfg": tags: - config when: - os: windows - /Inversion Saves/user.dat: + "/Inversion Saves/user.dat": tags: - save when: @@ -275544,22 +276359,22 @@ Inversion: installDir: Inversion: {} launch: - /bin/Inversion.exe: + "/bin/Inversion.exe": - when: - os: windows store: steam - workingDir: /bin + workingDir: "/bin" steam: id: 212410 Inversus: files: - /userdata//432980/remote/Save.rj_save: + "/userdata//432980/remote/Save.rj_save": tags: - save when: - os: windows store: steam - /RJ/Inversus/ApplicationPrefs_Game.txt: + "/RJ/Inversus/ApplicationPrefs_Game.txt": tags: - config when: @@ -275571,24 +276386,24 @@ Inversus: Inverted: steam: id: 496870 -'Investi-Gator: The Case of the Big Crime': +"Investi-Gator: The Case of the Big Crime": installDir: Investi-Gator: {} launch: - /big crime.exe: + "/big crime.exe": - when: - os: windows store: steam steam: id: 1043690 -'Investigation Forces: Operation Zero': +"Investigation Forces: Operation Zero": steam: id: 1172040 Investigator: installDir: Investigator: {} launch: - /Bin64/Investigator.exe: + "/Bin64/Investigator.exe": - when: - bit: 64 os: windows @@ -275599,32 +276414,32 @@ Invicta Beam: installDir: Invicta Beam: {} launch: - /Invicta Beam.exe: + "/Invicta Beam.exe": - when: - os: windows store: steam steam: id: 611690 -'Invictus: In the Shadow of Olympus': +"Invictus: In the Shadow of Olympus": gog: id: 1207658655 installDir: Invictus In the Shadow of Olympus: {} launch: - /Invictus.exe: + "/Invictus.exe": - when: - os: windows store: steam steam: id: 692660 -'Invincible Presents: Atom Eve': +"Invincible Presents: Atom Eve": steam: id: 2060870 Invisible: installDir: INVISIBLE: {} launch: - /invisible.exe: + "/invisible.exe": - when: - os: windows store: steam @@ -275634,16 +276449,16 @@ Invisible Apartment: installDir: Invisible Apartment: {} launch: - /ia.app/Contents/MacOS/ia: + "/ia.app/Contents/MacOS/ia": - when: - bit: 64 os: mac store: steam - /ia.exe: + "/ia.exe": - when: - os: windows store: steam - /ia.sh: + "/ia.sh": - when: - bit: 64 os: linux @@ -275654,15 +276469,15 @@ Invisible Apartment 2: installDir: Invisible Apartment 2: {} launch: - /ia2.app/Contents/MacOS/ia2: + "/ia2.app/Contents/MacOS/ia2": - when: - os: mac store: steam - /ia2.exe: + "/ia2.exe": - when: - os: windows store: steam - /ia2.sh: + "/ia2.sh": - when: - bit: 64 os: linux @@ -275673,15 +276488,15 @@ Invisible Apartment Zero: installDir: Invisible Apartment Zero: {} launch: - /ia0.app/Contents/MacOS/ia0: + "/ia0.app/Contents/MacOS/ia0": - when: - os: mac store: steam - /ia0.exe: + "/ia0.exe": - when: - os: windows store: steam - /ia0.sh: + "/ia0.sh": - when: - bit: 64 os: linux @@ -275692,11 +276507,11 @@ Invisible Fist: installDir: Invisible Fist: {} launch: - /Invisible Fist.exe: + "/Invisible Fist.exe": - when: - os: windows store: steam - /InvisibleFist.app/Contents/MacOS/mac: + "/InvisibleFist.app/Contents/MacOS/mac": - when: - os: mac store: steam @@ -275706,50 +276521,50 @@ Invisible Mind: installDir: InvisibleMind: {} launch: - /InvisibleMind.exe: + "/InvisibleMind.exe": - when: - os: windows store: steam steam: id: 502090 -'Invisible Wings: Chapter One': +"Invisible Wings: Chapter One": installDir: Invisible Wings Chapter One: {} launch: - /Invisible Wings.exe: + "/Invisible Wings.exe": - when: - os: windows store: steam steam: id: 1419380 -'Invisible, Inc.': +"Invisible, Inc.": files: - /.local/share/Klei/InvisibleInc/saves: + "/.local/share/Klei/InvisibleInc/saves": tags: - save when: - os: linux - /.local/share/Klei/InvisibleInc/settings: + "/.local/share/Klei/InvisibleInc/settings": tags: - config when: - os: linux - /Documents/Klei/InvisibleInc/saves: + "/Documents/Klei/InvisibleInc/saves": tags: - save when: - os: mac - /Documents/Klei/InvisibleInc/settings: + "/Documents/Klei/InvisibleInc/settings": tags: - config when: - os: mac - /Klei/InvisibleInc/saves: + "/Klei/InvisibleInc/saves": tags: - save when: - os: windows - /Klei/InvisibleInc/settings: + "/Klei/InvisibleInc/settings": tags: - config when: @@ -275759,15 +276574,15 @@ Invisible Mind: installDir: InvisibleInc: {} launch: - /InvisibleInc.app: + "/InvisibleInc.app": - when: - os: mac store: steam - /invisibleinc.exe: + "/invisibleinc.exe": - when: - os: windows store: steam - /run-linux.sh: + "/run-linux.sh": - when: - os: linux store: steam @@ -275777,7 +276592,7 @@ Invisibox: installDir: Invisibox: {} launch: - /Invisibox.exe: + "/Invisibox.exe": - when: - store: steam steam: @@ -275786,16 +276601,16 @@ Invisigun Reloaded: installDir: Invisigun Reloaded: {} launch: - /Invisigun.app: + "/Invisigun.app": - when: - os: mac store: steam - /Invisigun.exe: + "/Invisigun.exe": - when: - bit: 64 os: windows store: steam - /Invisigun.x86_64: + "/Invisigun.x86_64": - when: - bit: 64 os: linux @@ -275804,12 +276619,12 @@ Invisigun Reloaded: id: 375750 Invitation: files: - /INVITATION_Data/Data/GameConfig.cfg: + "/INVITATION_Data/Data/GameConfig.cfg": tags: - config when: - os: windows - /INVITATION_Data/Data/SavedGame: + "/INVITATION_Data/Data/SavedGame": tags: - save when: @@ -275817,7 +276632,7 @@ Invitation: installDir: INVITATION: {} launch: - /INVITATION.exe: + "/INVITATION.exe": - when: - bit: 64 os: windows @@ -275831,7 +276646,7 @@ Inzo: installDir: Inzo: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -275841,30 +276656,30 @@ Ion Assault: installDir: Ion Assault: {} launch: - /IonAssault.exe: + "/IonAssault.exe": - when: - store: steam steam: id: 41730 Ion Fury: files: - /.config/fury: + "/.config/fury": tags: - config - save when: - os: linux - /Ion Fury: + "/Ion Fury": tags: - save when: - os: windows - /Ion Fury/fury.cfg: + "/Ion Fury/fury.cfg": tags: - config when: - os: windows - /Ion Fury/settings.cfg: + "/Ion Fury/settings.cfg": tags: - config when: @@ -275873,9 +276688,9 @@ Ion Fury: id: 2130382962 id: gogExtra: + - 1496956756 - 1740836875 - 1752977759 - - 1496956756 steamExtra: - 1588720 installDir: @@ -275886,17 +276701,17 @@ IonAXXIA: installDir: ionAXXIA: {} launch: - /ionAXXIA.exe: + "/ionAXXIA.exe": - when: - os: windows store: steam steam: id: 681900 -'Ionball 2: Ionstorm': +"Ionball 2: Ionstorm": installDir: Ionball 2 Ionstorm: {} launch: - /IonStorm_v1.1.exe: + "/IonStorm_v1.1.exe": - when: - store: steam steam: @@ -275905,38 +276720,38 @@ Ionball 3: installDir: Ionball 3: {} launch: - /Ionball3.exe: + "/Ionball3.exe": - when: - os: windows store: steam steam: id: 726300 -'Ira Act 1: Pilgrimage': +"Ira Act 1: Pilgrimage": steam: id: 438120 Iragon 18: files: - /IragonProject/Saved/SaveGames/*.sav: + "/IragonProject/Saved/SaveGames/*.sav": tags: - save when: - os: windows steam: id: 1097480 -'Iratus: Lord of the Dead': +"Iratus: Lord of the Dead": files: - /.config/unity3d/Unfrozen/Iratus: + "/.config/unity3d/Unfrozen/Iratus": tags: - config - save when: - os: linux - /AppData/LocalLow/Unfrozen/Iratus: + "/AppData/LocalLow/Unfrozen/Iratus": tags: - save when: - os: windows - /AppData/LocalLow/Unfrozen/Iratus/settings: + "/AppData/LocalLow/Unfrozen/Iratus/settings": tags: - config when: @@ -275946,15 +276761,17 @@ Iragon 18: installDir: Iratus Lord of the Dead: {} launch: - /Iratus.app: + "/Iratus.app": - when: - os: mac store: steam - /Iratus.exe: - - arguments: '-logFile iratus.log' + "/Iratus.exe": + - arguments: "-logFile iratus.log" when: - os: windows store: steam + - os: linux + store: steam registry: HKEY_CURRENT_USER/Software/Unfrozen/Iratus: tags: @@ -275965,7 +276782,7 @@ Iridescence: installDir: Iridescence: {} launch: - /iridescence_169.exe: + "/iridescence_169.exe": - when: - os: windows store: steam @@ -275975,7 +276792,7 @@ Iridion 3D: installDir: Iridion3D: {} launch: - /Iridion3d.exe: + "/Iridion3d.exe": - when: - store: steam steam: @@ -275984,14 +276801,14 @@ Iridion II: installDir: Iridion II: {} launch: - /IridionII.exe: + "/IridionII.exe": - when: - store: steam steam: id: 1132230 Iris and the Giant: files: - /AppData/LocalLow/GoblinzStudio/Iris and the Giant/Saves: + "/AppData/LocalLow/GoblinzStudio/Iris and the Giant/Saves": tags: - save when: @@ -276001,15 +276818,15 @@ Iris and the Giant: installDir: Iris and the giant: {} launch: - /Iris and the Giant.app: + "/Iris and the Giant.app": - when: - os: mac store: steam - /Iris and the Giant.exe: + "/Iris and the Giant.exe": - when: - os: windows store: steam - /Iris and the Giant.x86_64: + "/Iris and the Giant.x86_64": - when: - os: linux store: steam @@ -276020,12 +276837,12 @@ Iris in Fantasy: id: 1114280 Iris.Fall: files: - /AppData/LocalLow/NEXT/IrisFall: + "/AppData/LocalLow/NEXT/IrisFall": tags: - save when: - os: windows - /AppData/LocalLow/NEXT/IrisFall/gameoption.esd: + "/AppData/LocalLow/NEXT/IrisFall/gameoption.esd": tags: - config when: @@ -276033,7 +276850,7 @@ Iris.Fall: installDir: Iris.Fall: {} launch: - /IrisFall.exe: + "/IrisFall.exe": - when: - os: windows store: steam @@ -276050,16 +276867,16 @@ Iro Hero: installDir: IRO HERO: {} launch: - /IRO HERO.app: + "/IRO HERO.app": - when: - os: mac store: steam - /IRO HERO.exe: + "/IRO HERO.exe": - when: - bit: 64 os: windows store: steam - /IRO HERO.x86_64: + "/IRO HERO.x86_64": - when: - bit: 64 os: linux @@ -276070,7 +276887,7 @@ Iron Armada: installDir: Iron Armada: {} launch: - /IronArmada.exe: + "/IronArmada.exe": - when: - store: steam steam: @@ -276080,17 +276897,17 @@ Iron Ascension: id: 918200 Iron Assault: files: - /IRON.CFG: + "/IRON.CFG": tags: - config when: - os: dos - /MODEM.CFG: + "/MODEM.CFG": tags: - config when: - os: dos - /SAVED_*: + "/SAVED_*": tags: - save when: @@ -276099,7 +276916,7 @@ Iron Blade: installDir: Iron Blade: {} launch: - /IronBlade.exe: + "/IronBlade.exe": - when: - store: steam steam: @@ -276111,7 +276928,7 @@ Iron Blood VR: id: 1162900 Iron Brigade: files: - /Doublefine/IronBrigade: + "/Doublefine/IronBrigade": tags: - config - save @@ -276120,24 +276937,24 @@ Iron Brigade: installDir: ironbrigade: {} launch: - /IronBrigade.exe: + "/IronBrigade.exe": - when: - store: steam - - arguments: '-ssaa2x' + - arguments: "-ssaa2x" when: - store: steam - - arguments: '-ssaa4x' + - arguments: "-ssaa4x" when: - store: steam steam: id: 115120 -'Iron Commando: Koutetsu no Senshi': +"Iron Commando: Koutetsu no Senshi": gog: id: 1207185483 installDir: Iron Commando: {} launch: - /iron commando.exe: + "/iron commando.exe": - when: - os: windows store: steam @@ -276150,12 +276967,12 @@ Iron Crypticle: id: 548680 Iron Danger: files: - /AppData/LocalLow/ActionSquad/IronDanger/IronDangerSettings.json: + "/AppData/LocalLow/ActionSquad/IronDanger/IronDangerSettings.json": tags: - config when: - os: windows - /AppData/LocalLow/ActionSquad/IronDanger/Saves: + "/AppData/LocalLow/ActionSquad/IronDanger/Saves": tags: - save when: @@ -276165,7 +276982,7 @@ Iron Danger: installDir: Iron Danger: {} launch: - /IronDanger.exe: + "/IronDanger.exe": - when: - bit: 64 os: windows @@ -276183,7 +277000,7 @@ Iron Fish: installDir: Iron Fish: {} launch: - /IronFish.exe: + "/IronFish.exe": - when: - bit: 64 os: windows @@ -276194,24 +277011,24 @@ Iron Fisticle: installDir: Iron Fisticle: {} launch: - /IronFisticle.exe: + "/IronFisticle.exe": - when: - os: windows store: steam steam: id: 306700 -'Iron Front: Digital War Edition': +"Iron Front: Digital War Edition": installDir: IronFront: {} launch: - /ironfront.exe: + "/ironfront.exe": - when: - store: steam steam: id: 91330 -'Iron Grip: Warlord': +"Iron Grip: Warlord": files: - /base/config.cfg: + "/base/config.cfg": tags: - config when: @@ -276219,7 +277036,7 @@ Iron Fisticle: installDir: Iron Grip Warlord: {} launch: - /igwarlord.exe: + "/igwarlord.exe": - when: - store: steam steam: @@ -276231,36 +277048,37 @@ Iron Ground: id: 853120 Iron Harvest: files: - /AppData/LocalLow/KingArt/Iron Harvest/*.sav: + "/AppData/LocalLow/KingArt/Iron Harvest/*.sav": tags: - save when: - os: windows - /userdata//826630/remote: + "/userdata//826630/remote": tags: - config - save when: - store: steam - /GOG.com/Galaxy/Applications/49637353028337449/Storage/Shared/Files: + "/GOG.com/Galaxy/Applications/49637353028337449/Storage/Shared/Files": tags: - save when: - - store: gog + - os: windows + store: gog gog: id: 2085637343 id: gogExtra: - - 1259846265 - 1249219203 - - 1447934868 + - 1259846265 - 1340696977 + - 1447934868 - 1755099353 steamExtra: - - 1628070 - - 1341703 - 1341701 - 1341702 + - 1341703 + - 1628070 installDir: Iron Harvest: {} registry: @@ -276273,11 +277091,11 @@ Iron Heart: installDir: Iron Heart: {} launch: - /Iron Heart.app: + "/Iron Heart.app": - when: - os: mac store: steam - /Iron Heart.exe: + "/Iron Heart.exe": - when: - os: windows store: steam @@ -276293,11 +277111,11 @@ Iron Ladies 2048: installDir: Iron Ladies 2048: {} launch: - /Iron Ladies 2048.app/Contents/MacOS/Iron Ladies 2048: + "/Iron Ladies 2048.app/Contents/MacOS/Iron Ladies 2048": - when: - os: mac store: steam - /Iron Ladies 2048.exe: + "/Iron Ladies 2048.exe": - when: - os: windows store: steam @@ -276307,7 +277125,7 @@ Iron League: installDir: Iron League: {} launch: - /IronLeague.exe: + "/IronLeague.exe": - when: - os: windows store: steam @@ -276317,7 +277135,7 @@ Iron Lung: installDir: Iron Lung: {} launch: - /Iron Lung.exe: + "/Iron Lung.exe": - when: - store: steam steam: @@ -276326,11 +277144,11 @@ Iron Madness: installDir: IronMadness: {} launch: - /iron_Madness.app/Contents/MacOS/iron_Madness: + "/iron_Madness.app/Contents/MacOS/iron_Madness": - when: - os: mac store: steam - /iron_Madness.exe: + "/iron_Madness.exe": - when: - os: windows store: steam @@ -276338,12 +277156,12 @@ Iron Madness: id: 442220 Iron Man: files: - /engine.ini: + "/engine.ini": tags: - config when: - os: windows - /Sega/Iron Man: + "/Sega/Iron Man": tags: - save when: @@ -276351,14 +277169,14 @@ Iron Man: installDir: Iron Man: {} launch: - /gamelauncher.exe: + "/gamelauncher.exe": - when: - store: steam steam: id: 10490 Iron Marines: files: - 'C:/Users/[Your Username]/AppData/LocalLow/Ironhide Game Studio/Iron Marines/[A string of numbers]': + "C:/Users/[Your Username]/AppData/LocalLow/Ironhide Game Studio/Iron Marines/[A string of numbers]": tags: - save when: @@ -276368,16 +277186,19 @@ Iron Marines: installDir: Iron Marines: {} launch: - /ironmarines.app: + "/ironmarines.app": - when: - os: mac store: steam - /ironmarines.exe: + "/ironmarines.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam - /ironmarines.x86: + "/ironmarines.x86": - when: - os: linux store: steam @@ -276390,7 +277211,7 @@ Iron Roses: installDir: Iron Roses: {} launch: - /IronRoses.exe: + "/IronRoses.exe": - when: - store: steam steam: @@ -276399,29 +277220,29 @@ Iron Sea Defenders: installDir: Iron Sea Defenders: {} launch: - /TD.exe: + "/TD.exe": - when: - os: windows store: steam steam: id: 431750 -'Iron Sky: Invasion': +"Iron Sky: Invasion": installDir: Iron Sky Invasion: {} launch: - /ISI_DX11.exe: + "/ISI_DX11.exe": - when: - os: windows store: steam - /ISI_DX9.exe: + "/ISI_DX9.exe": - when: - os: windows store: steam - /IronSky.app: + "/IronSky.app": - when: - os: mac store: steam - /RunGame: + "/RunGame": - when: - os: linux store: steam @@ -276431,15 +277252,15 @@ Iron Snout: installDir: Iron Snout: {} launch: - /Iron Snout.app: + "/Iron Snout.app": - when: - os: mac store: steam - /IronSnout.exe: + "/IronSnout.exe": - when: - os: windows store: steam - /run.sh: + "/run.sh": - when: - os: linux store: steam @@ -276449,21 +277270,21 @@ Iron Soul: installDir: BluBeeGames: {} launch: - /Binaries/Win32/IronSoul.exe: + "/Binaries/Win32/IronSoul.exe": - when: - os: windows store: steam - workingDir: /Binaries/Win32 + workingDir: "/Binaries/Win32" steam: id: 262080 Iron Storm: files: - /save: + "/save": tags: - save when: - os: windows - /settings/user.cfg: + "/settings/user.cfg": tags: - config when: @@ -276473,7 +277294,7 @@ Iron Storm: installDir: Iron Storm: {} launch: - /IronStorm.exe: + "/IronStorm.exe": - when: - os: windows store: steam @@ -276483,7 +277304,7 @@ Iron Sun: installDir: Iron Sun: {} launch: - /Iron Sun.exe: + "/Iron Sun.exe": - when: - bit: 64 os: windows @@ -276492,12 +277313,12 @@ Iron Sun: id: 1164020 Iron Tides: files: - /AppData/LocalLow/Crash Wave Games/Iron Tides: + "/AppData/LocalLow/Crash Wave Games/Iron Tides": tags: - config when: - os: windows - /AppData/LocalLow/Crash Wave Games/Iron Tides/*.txt: + "/AppData/LocalLow/Crash Wave Games/Iron Tides/*.txt": tags: - save when: @@ -276505,35 +277326,35 @@ Iron Tides: installDir: Iron Tides: {} launch: - /irontides.app: + "/irontides.app": - when: - os: mac store: steam - /irontides.exe: + "/irontides.exe": - when: - os: windows store: steam - /irontides.x86_64: + "/irontides.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 609410 -'Iron Warriors: T-72 Tank Command': +"Iron Warriors: T-72 Tank Command": installDir: Iron Warriors: {} launch: - /Docs/IW Manual.pdf: + "/Docs/IW Manual.pdf": - when: - store: steam - /Iron Warrior Quick Start.pdf: + "/Iron Warrior Quick Start.pdf": - when: - store: steam - /builded.bat: + "/builded.bat": - when: - store: steam - /start.bat: + "/start.bat": - when: - store: steam steam: @@ -276542,8 +277363,8 @@ Iron Wings: installDir: IronWings: {} launch: - /fly3d.exe: - - arguments: '-forcecontrollerappid <562340>' + "/fly3d.exe": + - arguments: "-forcecontrollerappid <562340>" when: - os: windows store: steam @@ -276553,7 +277374,7 @@ IronBorn: installDir: IronBorn: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: @@ -276565,8 +277386,8 @@ IronWolf VR: installDir: IronWolf: {} launch: - /IW.exe: - - arguments: '-fp 1' + "/IW.exe": + - arguments: "-fp 1" when: - bit: 64 os: windows @@ -276577,11 +277398,11 @@ Ironbound: installDir: Ironbound: {} launch: - /Ironbound.app/Contents/MacOS/Ironbound: + "/Ironbound.app/Contents/MacOS/Ironbound": - when: - os: mac store: steam - /ironbound.exe: + "/ironbound.exe": - when: - os: windows store: steam @@ -276589,17 +277410,17 @@ Ironbound: id: 643980 Ironcast: files: - /.config/unity3d/Dreadbit/Ironcast: + "/.config/unity3d/Dreadbit/Ironcast": tags: - config when: - os: linux - /Documents/.config/unity3d/Ironcast/: + "/Documents/.config/unity3d/Ironcast/": tags: - save when: - os: linux - /Ironcast/: + "/Ironcast/": tags: - save when: @@ -276612,15 +277433,15 @@ Ironcast: installDir: Ironcast: {} launch: - /Ironcast.app: + "/Ironcast.app": - when: - os: mac store: steam - /Ironcast.exe: + "/Ironcast.exe": - when: - os: windows store: steam - /Ironcast.x86: + "/Ironcast.x86": - when: - os: linux store: steam @@ -276632,7 +277453,7 @@ Ironcast: id: 327670 Ironclad: files: - /SNK/ironclad: + "/SNK/ironclad": tags: - config when: @@ -276641,32 +277462,32 @@ Ironclad: id: 1295076499 Ironclad Tactics: files: - /.ironcladtactics: + "/.ironcladtactics": tags: - config when: - os: linux - /.ironcladtactics/profile: + "/.ironcladtactics/profile": tags: - save when: - os: linux - /Library/Application Support/Ironclad Tactics: + "/Library/Application Support/Ironclad Tactics": tags: - config when: - os: mac - /Library/Application Support/Ironclad Tactics/profile: + "/Library/Application Support/Ironclad Tactics/profile": tags: - save when: - os: mac - /My Games/Ironclad Tactics: + "/My Games/Ironclad Tactics": tags: - config when: - os: windows - /My Games/Ironclad Tactics/profile: + "/My Games/Ironclad Tactics/profile": tags: - save when: @@ -276676,112 +277497,112 @@ Ironclad Tactics: installDir: Ironclad Tactics: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam - /Ironclad Tactics.app: + "/Ironclad Tactics.app": - when: - os: mac store: steam - /ironcladtactics.sh: + "/ironcladtactics.sh": - when: - os: linux store: steam steam: id: 226960 -'Ironclads 2: American Civil War': +"Ironclads 2: American Civil War": installDir: Ironclads 2 American Civil War: {} launch: - /Ironclads_American_Civil_War_2.exe: + "/Ironclads_American_Civil_War_2.exe": - when: - os: windows store: steam steam: id: 414260 -'Ironclads 2: Boshin War': +"Ironclads 2: Boshin War": installDir: Ironclads 2 Boshin War: {} launch: - /Ironclads2_Boshin_War.exe: + "/Ironclads2_Boshin_War.exe": - when: - store: steam steam: id: 602860 -'Ironclads 2: Caroline Islands War 1885': +"Ironclads 2: Caroline Islands War 1885": installDir: Ironclads 2 Caroline Islands War 1885: {} launch: - /Ironclads2_Caroline_Islands_War.exe: + "/Ironclads2_Caroline_Islands_War.exe": - when: - store: steam steam: id: 647840 -'Ironclads 2: War of the Pacific': +"Ironclads 2: War of the Pacific": installDir: Ironclads 2 War of the Pacific: {} launch: - /Ironclads 2 WoP.exe: + "/Ironclads 2 WoP.exe": - when: - store: steam steam: id: 549400 -'Ironclads: American Civil War': +"Ironclads: American Civil War": installDir: Ironclads American Civil War: {} launch: - /Ironclads.exe: - - arguments: '-Launch' + "/Ironclads.exe": + - arguments: "-Launch" when: - store: steam steam: id: 46700 -'Ironclads: Anglo Russian War 1866': +"Ironclads: Anglo Russian War 1866": installDir: Ironclads Anglo Russian War 1866: {} launch: - /Config.exe: + "/Config.exe": - when: - store: steam - /Ironclads_Anglo_Russian_War.exe: - - arguments: '-Launch' + "/Ironclads_Anglo_Russian_War.exe": + - arguments: "-Launch" when: - store: steam steam: id: 46830 -'Ironclads: Chincha Islands War 1866': +"Ironclads: Chincha Islands War 1866": installDir: Ironclads Chincha Islands War 1866: {} launch: - /Config.exe: + "/Config.exe": - when: - store: steam - /Ironclads_Chincha_Islands_War.exe: - - arguments: '-Launch' + "/Ironclads_Chincha_Islands_War.exe": + - arguments: "-Launch" when: - store: steam steam: id: 46840 -'Ironclads: High Seas': +"Ironclads: High Seas": installDir: Ironclads High Seas: {} launch: - /Ironclads_High_Seas.exe: - - arguments: '-Launch' + "/Ironclads_High_Seas.exe": + - arguments: "-Launch" when: - store: steam steam: id: 46710 -'Ironclads: Schleswig War 1864': +"Ironclads: Schleswig War 1864": installDir: Ironclads Schleswig War 1864: {} launch: - /Config.exe: + "/Config.exe": - when: - store: steam - /Ironclads_Schleswig_War.exe: - - arguments: '-Launch' + "/Ironclads_Schleswig_War.exe": + - arguments: "-Launch" when: - store: steam steam: @@ -276790,7 +277611,7 @@ Ironguard: installDir: Ironguard: {} launch: - /Ironguard.exe: + "/Ironguard.exe": - when: - os: windows store: steam @@ -276800,21 +277621,24 @@ Ironkraft - Road to Hell: installDir: Ironkraft - Road to Hell: {} launch: - /IronKraft - RoadToHell.app/Contents/MacOS/IronKraft - RoadToHell: + "/IronKraft - RoadToHell.app/Contents/MacOS/IronKraft - RoadToHell": - when: - os: mac store: steam - /IronKraft - RoadToHell.exe: + "/IronKraft - RoadToHell.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam - /IronKraft - RoadToHell.x86: + "/IronKraft - RoadToHell.x86": - when: - bit: 32 os: linux store: steam - /IronKraft - RoadToHell.x86_64: + "/IronKraft - RoadToHell.x86_64": - when: - bit: 64 os: linux @@ -276826,7 +277650,7 @@ Ironlaw: id: 1042350 Ironsight: files: - /ini/ironsight_local.ini: + "/ini/ironsight_local.ini": tags: - config when: @@ -276837,7 +277661,7 @@ Ironsight: installDir: Ironsight_wpg: {} launch: - /launcher.exe: + "/launcher.exe": - arguments: ip=ironsight-ch1.koreacentral.cloudapp.azure.com port=28000 use_steam=1 when: - os: windows @@ -276848,7 +277672,7 @@ Ironsight (Pre-OBT ver.): installDir: Ironsight_wpg: {} launch: - /launcher.exe: + "/launcher.exe": - arguments: ip=ironsight-ch1.koreacentral.cloudapp.azure.com port=28000 use_steam=1 when: - os: windows @@ -276859,22 +277683,22 @@ Ironsmith Medieval Simulator: installDir: IronsmithMS: {} launch: - /IronSmith.exe: - - arguments: 'cmd /c \"set OPENSSL_ia32cap=:~0x20000000 && %command%\"' + "/IronSmith.exe": + - arguments: "cmd /c \\\"set OPENSSL_ia32cap=:~0x20000000 && %command%\\\"" when: - bit: 64 os: windows store: steam steam: id: 978700 -'Irony Curtain: From Matryoshka with Love': +"Irony Curtain: From Matryoshka with Love": files: - /.steam/steam/userdata/93126581/866190/remote/profile/save/game: + "/.steam/steam/userdata/93126581/866190/remote/profile/save/game": tags: - save when: - os: linux - /Artifex Mundi/Irony Curtain/save/game: + "/Artifex Mundi/Irony Curtain/save/game": tags: - save when: @@ -276884,20 +277708,20 @@ Ironsmith Medieval Simulator: installDir: Irony Curtain: {} launch: - /IronyCurtain.app/Contents/MacOS/IronyCurtain: + "/IronyCurtain.app/Contents/MacOS/IronyCurtain": - when: - os: mac store: steam - /IronyCurtain.exe: + "/IronyCurtain.exe": - when: - os: windows store: steam - /IronyCurtain_amd64: + "/IronyCurtain_amd64": - when: - bit: 64 os: linux store: steam - /IronyCurtain_i386: + "/IronyCurtain_i386": - when: - bit: 32 os: linux @@ -276908,7 +277732,7 @@ Irony of Nightmare: installDir: Irony Of Nightmare: {} launch: - /IronyOfNightmare.exe: + "/IronyOfNightmare.exe": - when: - bit: 64 os: windows @@ -276918,7 +277742,7 @@ Irony of Nightmare: Irrational Exuberance: steam: id: 443790 -'Irrational Exuberance: Prologue': +"Irrational Exuberance: Prologue": installDir: Irrational Exuberance: {} steam: @@ -276932,7 +277756,7 @@ Is It Wrong to Try to Pick Up Girls in a Dungeon? Infinite Combate: installDir: Is It Wrong to Try to Pick Up Girls in a Dungeon Infinite Combate: {} launch: - /danmachi.exe: + "/danmachi.exe": - when: - store: steam steam: @@ -276941,7 +277765,7 @@ Is the President a Traitor?: installDir: Is the President a Traitor: {} launch: - /PresidentT.exe: + "/PresidentT.exe": - when: - bit: 64 os: windows @@ -276952,11 +277776,11 @@ Isaac the Adventurer: installDir: Isaac the Adventurer: {} launch: - /Isaac The Adventurer.exe: + "/Isaac The Adventurer.exe": - when: - os: windows store: steam - /isaac-the-adventurer.app: + "/isaac-the-adventurer.app": - when: - os: mac store: steam @@ -276966,20 +277790,20 @@ Isbarah: installDir: Isbarah: {} launch: - /isbarah.app: + "/isbarah.app": - when: - os: mac store: steam - /isbarah.exe: + "/isbarah.exe": - when: - os: windows store: steam - /isbarah.x86: + "/isbarah.x86": - when: - bit: 32 os: linux store: steam - /isbarah.x86_64: + "/isbarah.x86_64": - when: - bit: 64 os: linux @@ -276988,7 +277812,7 @@ Isbarah: id: 333510 Isekai Frontline: files: - /AppData/LocalLow/Studio Ginkgo/ISEKAI FRONTLINE: + "/AppData/LocalLow/Studio Ginkgo/ISEKAI FRONTLINE": tags: - save when: @@ -276996,19 +277820,19 @@ Isekai Frontline: installDir: ISEKAI FRONT LINE: {} launch: - /ISEKAI FRONTLINE.exe: + "/ISEKAI FRONTLINE.exe": - when: - store: steam steam: id: 1924140 Isekai Quest: files: - /AppData/LocalLow/Studio Ginkgo/ISEKAI QUEST/*.sav: + "/AppData/LocalLow/Studio Ginkgo/ISEKAI QUEST/*.sav": tags: - save when: - os: windows - /AppData/LocalLow/Studio Ginkgo/ISEKAI QUEST/config: + "/AppData/LocalLow/Studio Ginkgo/ISEKAI QUEST/config": tags: - config when: @@ -277016,11 +277840,11 @@ Isekai Quest: installDir: ISEKAI QUEST: {} launch: - /ISEKAI QUEST.app: + "/ISEKAI QUEST.app": - when: - os: mac store: steam - /ISEKAI QUEST.exe: + "/ISEKAI QUEST.exe": - when: - os: windows store: steam @@ -277030,14 +277854,14 @@ Isekai Quest: - config steam: id: 1268110 -'Ishar 2: Messengers of Doom': +"Ishar 2: Messengers of Doom": files: - /*.SAV: + "/*.SAV": tags: - save when: - os: dos - /START.STP: + "/START.STP": tags: - config when: @@ -277047,28 +277871,28 @@ Isekai Quest: id: gogExtra: - 1207658685 -'Ishar 3: The Seven Gates of Infinity': +"Ishar 3: The Seven Gates of Infinity": files: - /*.SAV: + "/*.SAV": tags: - save when: - os: dos - /START.STP: + "/START.STP": tags: - config when: - os: dos gog: id: 1207662363 -'Ishar: Legend of the Fortress': +"Ishar: Legend of the Fortress": files: - /*.SAV: + "/*.SAV": tags: - save when: - os: dos - /START.STP: + "/START.STP": tags: - config when: @@ -277082,7 +277906,7 @@ Ishin no Arashi: installDir: Ishin1: {} launch: - /Ishin1_Launcher.exe: + "/Ishin1_Launcher.exe": - when: - os: windows store: steam @@ -277092,7 +277916,7 @@ Ishmael: installDir: Ishmael: {} launch: - /ishmael.exe: + "/ishmael.exe": - when: - os: windows store: steam @@ -277102,7 +277926,7 @@ Island: installDir: ISLAND: {} launch: - /ISLAND.exe: + "/ISLAND.exe": - when: - os: windows store: steam @@ -277112,7 +277936,7 @@ Island 1979: installDir: Island 1979: {} launch: - /Island1979.exe: + "/Island1979.exe": - when: - os: windows store: steam @@ -277127,7 +277951,7 @@ Island 404: installDir: ISLAND 404: {} launch: - /nw.exe: + "/nw.exe": - when: - bit: 64 os: windows @@ -277138,7 +277962,7 @@ Island Build Masters: installDir: Island Build Masters: {} launch: - /IslandBuildMasters.exe: + "/IslandBuildMasters.exe": - when: - bit: 64 os: windows @@ -277149,7 +277973,7 @@ Island Dash: installDir: IslandDash: {} launch: - /IslandDash.exe: + "/IslandDash.exe": - when: - os: windows store: steam @@ -277159,23 +277983,23 @@ Island Defense: installDir: IslandDefense: {} launch: - /bin/IslandDefense_steam.exe: + "/bin/IslandDefense_steam.exe": - when: - os: windows store: steam - workingDir: /bin + workingDir: "/bin" steam: id: 375850 Island Flight Simulator: installDir: Holiday Island Simulator: {} launch: - /IFS.app/Contents/MacOS/X: + "/IFS.app/Contents/MacOS/X": - when: - os: mac store: steam - workingDir: /IFS.app/Contents/MacOS - /IslandFlightSimulator.exe: + workingDir: "/IFS.app/Contents/MacOS" + "/IslandFlightSimulator.exe": - when: - os: windows store: steam @@ -277190,15 +278014,15 @@ Island Invasion: installDir: Island Invasion: {} launch: - /Island Invasion.app: + "/Island Invasion.app": - when: - os: mac store: steam - /Island Invasion.exe: + "/Island Invasion.exe": - when: - os: windows store: steam - /Island Invasion.x86: + "/Island Invasion.x86": - when: - os: linux store: steam @@ -277208,7 +278032,7 @@ Island Marauder: installDir: IslandMarauder_exe: {} launch: - /MArauder.exe: + "/MArauder.exe": - when: - os: windows store: steam @@ -277218,11 +278042,11 @@ Island Maze: installDir: Island Maze: {} launch: - /Island Maze.app: + "/Island Maze.app": - when: - os: mac store: steam - /Island Maze.exe: + "/Island Maze.exe": - when: - os: windows store: steam @@ -277232,17 +278056,17 @@ Island Racer: installDir: Island Racer: {} launch: - /Island Racer.app/Contents/MacOS/Island Racer: + "/Island Racer.app/Contents/MacOS/Island Racer": - when: - bit: 64 os: mac store: steam - /Island Racer.exe: + "/Island Racer.exe": - when: - bit: 64 os: windows store: steam - /Island Racer.x86_64: + "/Island Racer.x86_64": - when: - bit: 64 os: linux @@ -277253,15 +278077,15 @@ Island SAGA: installDir: Island Saga: {} launch: - /Game.app: + "/Game.app": - when: - os: mac store: steam - /nw: + "/nw": - when: - os: linux store: steam - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -277269,7 +278093,7 @@ Island SAGA: id: 1150730 Island Saver: files: - /NatWest/Island Saver by NatWest/Game: + "/NatWest/Island Saver by NatWest/Game": tags: - save when: @@ -277277,7 +278101,7 @@ Island Saver: installDir: Island Saver: {} launch: - /moneybox.exe: + "/moneybox.exe": - when: - os: windows store: steam @@ -277287,7 +278111,7 @@ Island Simulator 2016: installDir: Island Simulator 2016: {} launch: - /Island Simulator 2016.exe: + "/Island Simulator 2016.exe": - when: - os: windows store: steam @@ -277305,7 +278129,7 @@ Island Town Zombie Paradise: installDir: Island Town v2.0: {} launch: - /Island Town v2.2.exe: + "/Island Town v2.2.exe": - when: - bit: 64 os: windows @@ -277316,7 +278140,7 @@ Island Tribe: installDir: Island Tribe: {} launch: - /islands.exe: + "/islands.exe": - when: - store: steam steam: @@ -277325,7 +278149,7 @@ Island Tribe 3: installDir: Island Tribe 3: {} launch: - /island3.exe: + "/island3.exe": - when: - store: steam steam: @@ -277334,7 +278158,7 @@ Island Tribe 4: installDir: Island Tribe 4: {} launch: - /island4.exe: + "/island4.exe": - when: - store: steam steam: @@ -277343,19 +278167,19 @@ Island Tribe 5: installDir: Island Tribe 5: {} launch: - /island5.exe: + "/island5.exe": - when: - store: steam steam: id: 573750 Island Xtreme Stunts: files: - /LEGO Interactive/Island Xtreme Stunts: + "/LEGO Interactive/Island Xtreme Stunts": tags: - save when: - os: windows - /LEGO Interactive/Island Xtreme Stunts/LIXS.cfg: + "/LEGO Interactive/Island Xtreme Stunts/LIXS.cfg": tags: - config when: @@ -277367,26 +278191,26 @@ Island of Virgins: installDir: PUSSY: {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: id: 981300 Islanders: files: - /.config/unity3d/Grizzly Games/ISLANDERS: + "/.config/unity3d/Grizzly Games/ISLANDERS": tags: - config - save when: - os: linux - /AppData/LocalLow/Grizzly Games/ISLANDERS: + "/AppData/LocalLow/Grizzly Games/ISLANDERS": tags: - config - save when: - os: windows - /Library/Application Support/Grizzly Games/ISLANDERS: + "/Library/Application Support/Grizzly Games/ISLANDERS": tags: - config - save @@ -277397,29 +278221,29 @@ Islanders: installDir: Islanders: {} launch: - /ISLANDERS.app/Contents/MacOS/ISLANDERS: + "/ISLANDERS.app/Contents/MacOS/ISLANDERS": - when: - os: mac store: steam - /ISLANDERS.exe: + "/ISLANDERS.exe": - when: - os: windows store: steam - /ISLANDERS.x86: + "/ISLANDERS.x86": - when: - bit: 32 os: linux store: steam - /ISLANDERS.x86_64: + "/ISLANDERS.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 1046030 -'Islands of Nyne: Battle Royale': +"Islands of Nyne: Battle Royale": files: - /IONBranch/Saved/Config/WindowsClient: + "/IONBranch/Saved/Config/WindowsClient": tags: - config when: @@ -277427,27 +278251,27 @@ Islanders: installDir: Islands of Nyne Battle Royale: {} launch: - /IONBranch/Binaries/Win64/IONBranch.exe: + "/IONBranch/Binaries/Win64/IONBranch.exe": - when: - bit: 64 os: windows store: steam steam: id: 728540 -'Islands: Non-Places': +"Islands: Non-Places": installDir: ISLANDS_NonPlaces: {} launch: - /Islands_Linux.x86_64: + "/Islands_Linux.x86_64": - when: - bit: 64 os: linux store: steam - /Islands_Mac.app: + "/Islands_Mac.app": - when: - os: mac store: steam - /Islands_Win.exe: + "/Islands_Win.exe": - when: - os: windows store: steam @@ -277468,20 +278292,20 @@ Isle of Skye: installDir: Isle of Skye: {} launch: - /ixs.app: + "/ixs.app": - when: - os: mac store: steam - /ixs.exe: + "/ixs.exe": - when: - os: windows store: steam - /ixs.x86: + "/ixs.x86": - when: - bit: 32 os: linux store: steam - /ixs.x86_64: + "/ixs.x86_64": - when: - bit: 64 os: linux @@ -277490,7 +278314,7 @@ Isle of Skye: id: 873980 Isles of Adalar: files: - /AppData/LocalLow/PeakwaySoftware/IslesOfAdalar/save: + "/AppData/LocalLow/PeakwaySoftware/IslesOfAdalar/save": tags: - save when: @@ -277498,7 +278322,7 @@ Isles of Adalar: installDir: Isles of Adalar: {} launch: - /IslesOfAdalar.exe: + "/IslesOfAdalar.exe": - when: - bit: 64 os: windows @@ -277509,12 +278333,12 @@ Islet Online: installDir: Islet Online: {} launch: - /IsletClient_release(x64).exe: + "/IsletClient_release(x64).exe": - when: - bit: 64 os: windows store: steam - /IsletClient_release.exe: + "/IsletClient_release.exe": - when: - bit: 32 os: windows @@ -277523,7 +278347,7 @@ Islet Online: id: 428180 Islets: files: - /Islets: + "/Islets": tags: - save when: @@ -277533,7 +278357,7 @@ Islets: installDir: Islets: {} launch: - /Islets.exe: + "/Islets.exe": - when: - os: windows store: steam @@ -277543,11 +278367,11 @@ Iso-Sphere: installDir: Iso-Sphere: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam - /iso-sphere.app: + "/iso-sphere.app": - when: - os: mac store: steam @@ -277557,36 +278381,39 @@ IsoBoom: installDir: IsoBoom: {} launch: - /isoBoom.exe: + "/isoBoom.exe": - when: - bit: 32 os: windows store: steam + - bit: 64 + os: windows + store: steam steam: id: 664140 Isoland: installDir: Isoland: {} launch: - /Isoland.app: + "/Isoland.app": - when: - os: mac store: steam - /Isoland.exe: + "/Isoland.exe": - when: - os: windows store: steam steam: id: 831570 -'Isoland 2: Ashes of Time': +"Isoland 2: Ashes of Time": installDir: Isoland2: {} launch: - /Isoland2.app: + "/Isoland2.app": - when: - os: mac store: steam - /Isoland2.exe: + "/Isoland2.exe": - when: - os: windows store: steam @@ -277596,7 +278423,7 @@ Isolated: installDir: Isolated: {} launch: - /Isolated.exe: + "/Isolated.exe": - when: - os: windows store: steam @@ -277606,7 +278433,7 @@ Isolated Island: installDir: Isolated Island: {} launch: - /IsolatedIsland.exe: + "/IsolatedIsland.exe": - when: - bit: 64 os: windows @@ -277617,7 +278444,7 @@ Isolation: installDir: Isolation: {} launch: - /Isolation.exe: + "/Isolation.exe": - when: - bit: 64 os: windows @@ -277628,7 +278455,7 @@ Isomer: installDir: Isomer: {} launch: - /AppLauncher.exe: + "/AppLauncher.exe": - when: - store: steam steam: @@ -277637,15 +278464,15 @@ Isomorph: installDir: Isomorph: {} launch: - /Isomorph.app/Contents/MacOS/Isomorph: + "/Isomorph.app/Contents/MacOS/Isomorph": - when: - os: mac store: steam - /Isomorph.exe: + "/Isomorph.exe": - when: - os: windows store: steam - /Isomorph.x86: + "/Isomorph.x86": - when: - os: linux store: steam @@ -277655,17 +278482,17 @@ Isonzo: installDir: Isonzo: {} launch: - /Isonzo/Isonzo: - - arguments: '-force-vulkan' + "/Isonzo/Isonzo": + - arguments: "-force-vulkan" when: - bit: 64 os: linux store: steam - /Isonzo/Isonzo.app/Contents/MacOS/Isonzo: + "/Isonzo/Isonzo.app/Contents/MacOS/Isonzo": - when: - os: mac store: steam - /Isonzo/Isonzo.exe: + "/Isonzo/Isonzo.exe": - arguments: isonzo when: - bit: 64 @@ -277677,11 +278504,11 @@ Isotiles: installDir: Isotiles: {} launch: - /Isotiles.app: + "/Isotiles.app": - when: - os: mac store: steam - /Isotiles.exe: + "/Isotiles.exe": - when: - os: windows store: steam @@ -277691,11 +278518,11 @@ Isotiles 2: installDir: Isotiles 2: {} launch: - /Isotiles 2.app: + "/Isotiles 2.app": - when: - os: mac store: steam - /Isotiles 2.exe: + "/Isotiles 2.exe": - when: - os: windows store: steam @@ -277704,25 +278531,25 @@ Isotiles 2: Isotower: steam: id: 801370 -'Istanbul: Digital Edition': +"Istanbul: Digital Edition": installDir: Istanbul Digital Edition: {} launch: - /Istanbul.app/Contents/MacOS/Istanbul: + "/Istanbul.app/Contents/MacOS/Istanbul": - when: - os: mac store: steam - /Istanbul.x86: + "/Istanbul.x86": - when: - bit: 32 os: linux store: steam - /Istanbul.x86_64: + "/Istanbul.x86_64": - when: - bit: 64 os: linux store: steam - /Istanbul/Istanbul.exe: + "/Istanbul/Istanbul.exe": - when: - os: windows store: steam @@ -277732,19 +278559,19 @@ Istrolid: installDir: Istrolid: {} launch: - /Istrolid.app/Contents/MacOS/Electron: + "/Istrolid.app/Contents/MacOS/Electron": - when: - os: mac store: steam - /istrolid: + "/istrolid": - when: - os: linux store: steam - /istrolid.exe: + "/istrolid.exe": - when: - os: windows store: steam - /istrolid.sh: + "/istrolid.sh": - when: - os: linux store: steam @@ -277754,7 +278581,7 @@ Isyium: installDir: Isyium: {} launch: - /isyium.exe: + "/isyium.exe": - when: - os: windows store: steam @@ -277762,12 +278589,12 @@ Isyium: id: 555080 It Came from Space and Ate Our Brains: files: - /AppData/LocalLow/Triangle Studios/It Came From Space And Ate Our Brains: + "/AppData/LocalLow/Triangle Studios/It Came From Space And Ate Our Brains": tags: - save when: - os: windows - /AppData/LocalLow/Triangle Studios/It Came From Space And Ate Our Brains/settings.std: + "/AppData/LocalLow/Triangle Studios/It Came From Space And Ate Our Brains/settings.std": tags: - config when: @@ -277775,21 +278602,21 @@ It Came from Space and Ate Our Brains: installDir: FromSpace: {} launch: - /FromSpace.app: + "/FromSpace.app": - when: - os: mac store: steam - workingDir: /FromSpace - /FromSpace.exe: + workingDir: "/FromSpace" + "/FromSpace.exe": - when: - os: windows store: steam - /FromSpace.x86: + "/FromSpace.x86": - when: - bit: 32 os: linux store: steam - /FromSpace.x86_64: + "/FromSpace.x86_64": - when: - bit: 64 os: linux @@ -277804,15 +278631,15 @@ It Comes Around - A Kinetic Novel: installDir: It Comes Around - A Kinetic Novel: {} launch: - /ItComesAround.app: + "/ItComesAround.app": - when: - os: mac store: steam - /ItComesAround.exe: + "/ItComesAround.exe": - when: - os: windows store: steam - /ItComesAround.sh: + "/ItComesAround.sh": - when: - os: linux store: steam @@ -277827,7 +278654,7 @@ It Follows You: installDir: It follows you: {} launch: - /It follows you.exe: + "/It follows you.exe": - when: - os: windows store: steam @@ -277835,17 +278662,17 @@ It Follows You: id: 1841780 It Lurks Below: files: - /Graybeard Games/It Lurks Below: + "/Graybeard Games/It Lurks Below": tags: - save when: - os: windows - /Graybeard Games/It Lurks Below/ilb_config: + "/Graybeard Games/It Lurks Below/ilb_config": tags: - config when: - os: windows - /Packages/GraybeardGames.ItLurksBelow_k6kpj6y7fp0ht/LocalState/Graybeard Games/It Lurks Below: + "/Packages/GraybeardGames.ItLurksBelow_k6kpj6y7fp0ht/LocalState/Graybeard Games/It Lurks Below": tags: - save when: @@ -277856,7 +278683,7 @@ It Lurks Below: installDir: It Lurks Below: {} launch: - /ILB.exe: + "/ILB.exe": - when: - os: windows store: steam @@ -277866,7 +278693,7 @@ It Lurks in the Woods: installDir: It Lurks in the Woods: {} launch: - /ElleRodeDanslBois.exe: + "/ElleRodeDanslBois.exe": - when: - os: windows store: steam @@ -277876,8 +278703,8 @@ It Moves: installDir: It Moves: {} launch: - /Game.exe: - - arguments: '--in-process-gpu' + "/Game.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam @@ -277887,7 +278714,7 @@ It Pays To Be A Winner: installDir: It Pays To Be A Winner: {} launch: - /IPTBAW.exe: + "/IPTBAW.exe": - when: - os: windows store: steam @@ -277897,7 +278724,7 @@ It Runs Red: installDir: It Runs Red: {} launch: - /ItRunsRed.exe: + "/ItRunsRed.exe": - when: - os: windows store: steam @@ -277907,7 +278734,7 @@ It Stares Back: installDir: It Stares Back: {} launch: - /It Stares Back.exe: + "/It Stares Back.exe": - when: - os: windows store: steam @@ -277915,17 +278742,17 @@ It Stares Back: id: 1094250 It Takes Two: files: - /ItTakesTwo/*.Nuts: + "/ItTakesTwo/*.Nuts": tags: - config when: - os: windows - /ItTakesTwo/SaveData.Nuts: + "/ItTakesTwo/SaveData.Nuts": tags: - save when: - os: windows - /ItTakesTwo/Saved/Config/WindowsNoEditor: + "/ItTakesTwo/Saved/Config/WindowsNoEditor": tags: - config when: @@ -277938,7 +278765,7 @@ It Will Find You: installDir: It Will Find You: {} launch: - /It Will Find You.exe: + "/It Will Find You.exe": - when: - bit: 64 os: windows @@ -277949,220 +278776,220 @@ It comes from hell: installDir: It comes from hell: {} launch: - /It_comes_from_hell.exe: + "/It_comes_from_hell.exe": - when: - os: windows store: steam steam: id: 1032420 -It's A Racing Game: +"It's A Racing Game": installDir: - It's A Racing Game: {} + "It's A Racing Game": {} launch: - /IARG.exe: + "/IARG.exe": - when: - os: windows store: steam steam: id: 811690 -It's About The Journey: +"It's About The Journey": steam: id: 1043590 -It's Chicken!: +"It's Chicken!": steam: id: 796890 -It's Dark: +"It's Dark": installDir: - It's Dark: {} + "It's Dark": {} launch: - /It'sDark/Its Dark.exe: + "/It'sDark/Its Dark.exe": - when: - os: windows store: steam steam: id: 1994220 -It's Fun To Break Things: +"It's Fun To Break Things": installDir: - It's Fun To Break Things: {} + "It's Fun To Break Things": {} steam: id: 1027660 -It's Killing Time: +"It's Killing Time": installDir: - It's Killing Time: {} + "It's Killing Time": {} launch: - /It's Killing Time.app/Contents/MacOS/It's Killing Time: + "/It's Killing Time.app/Contents/MacOS/It's Killing Time": - when: - os: mac store: steam - /ItsKillingTime: + "/ItsKillingTime": - when: - os: linux store: steam - /ItsKillingTime.exe: + "/ItsKillingTime.exe": - when: - os: windows store: steam steam: id: 461650 -It's Not A Moon: +"It's Not A Moon": installDir: - It's Not A Moon: {} + "It's Not A Moon": {} launch: - /NotAMoon.exe: + "/NotAMoon.exe": - when: - os: windows store: steam steam: id: 968920 -It's Possible: +"It's Possible": installDir: - '[it''s possible] Classic': {} + "[it's possible] Classic": {} launch: - '/[it''s possible] Classic.exe': + "/[it's possible] Classic.exe": - when: - os: windows store: steam steam: id: 968170 -It's Quiz Time: +"It's Quiz Time": installDir: - It's Quiz Time: {} + "It's Quiz Time": {} launch: - /IQT.exe: + "/IQT.exe": - when: - store: steam steam: id: 648780 -It's Raining Fists and Metal: +"It's Raining Fists and Metal": installDir: - It's Raining Fists and Metal: {} + "It's Raining Fists and Metal": {} launch: - /It's Raining Fists and Metal.exe: + "/It's Raining Fists and Metal.exe": - when: - os: windows store: steam - /ItsRainingFistsAndMetal.app/Contents/MacOS/ItsRainingFistsAndMetal: + "/ItsRainingFistsAndMetal.app/Contents/MacOS/ItsRainingFistsAndMetal": - when: - os: mac store: steam - /ItsRainingFistsAndMetal.x86_64: + "/ItsRainingFistsAndMetal.x86_64": - when: - os: linux store: steam steam: id: 1080240 -It's Spring Again: +"It's Spring Again": installDir: - It's Spring Again: {} + "It's Spring Again": {} launch: - /Spring.app: + "/Spring.app": - when: - os: mac store: steam - /Spring.exe: + "/Spring.exe": - when: - os: windows store: steam - /Spring.x86: + "/Spring.x86": - when: - bit: 32 os: linux store: steam - /Spring.x86_64: + "/Spring.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 434210 -It's Too Rainy Day: +"It's Too Rainy Day": steam: id: 1042470 -It's Village: +"It's Village": steam: id: 656270 -'It''s You: A Breakup Story': +"It's You: A Breakup Story": installDir: itsyoubreakup: {} launch: - /ItsYou.app/Contents/MacOS/ItsYou: + "/ItsYou.app/Contents/MacOS/ItsYou": - when: - os: mac store: steam - /ItsYou.exe: + "/ItsYou.exe": - when: - bit: 64 os: windows store: steam - /ItsYou.x86_64: + "/ItsYou.x86_64": - when: - os: linux store: steam steam: id: 878020 -It's a Long Way To the Top (If You Wanna Be a CEO): +"It's a Long Way To the Top (If You Wanna Be a CEO)": installDir: - It's a Long Way To the Top (If You Wanna Be a CEO): {} + "It's a Long Way To the Top (If You Wanna Be a CEO)": {} launch: - /longway.app: + "/longway.app": - when: - os: mac store: steam - /longway.exe: + "/longway.exe": - when: - os: windows store: steam - /longway.x86_64: + "/longway.x86_64": - when: - os: linux store: steam steam: id: 1017650 -It's a Trap: +"It's a Trap": installDir: - It's a Trap: {} + "It's a Trap": {} steam: id: 912420 -It's a Wipe!: +"It's a Wipe!": installDir: - It's A Wipe!: {} + "It's A Wipe!": {} launch: - /IAWgame.exe: + "/IAWgame.exe": - when: - os: windows store: steam steam: id: 330620 -It's a Wrap!: +"It's a Wrap!": gog: id: 1304241745 installDir: - It's a wrap!: {} + "It's a wrap!": {} launch: - /Itsawrap.exe: + "/Itsawrap.exe": - when: - store: steam steam: id: 1684270 -It's always monday: +"It's always monday": installDir: - it's always monday: {} + "it's always monday": {} launch: - /it's always monday.exe: + "/it's always monday.exe": - when: - os: windows store: steam steam: id: 558660 -It's time to get out from the solar system: +"It's time to get out from the solar system": installDir: ITTGOFTSS: {} launch: - /ITTGOFTSS.exe: + "/ITTGOFTSS.exe": - when: - os: windows store: steam - /ITTGOFTSS_LINUX.x86_64: + "/ITTGOFTSS_LINUX.x86_64": - when: - os: linux store: steam @@ -278172,7 +278999,7 @@ ItazuraVR: installDir: ItazuraVR: {} launch: - /ItazuraVR.exe: + "/ItazuraVR.exe": - when: - bit: 64 os: windows @@ -278183,7 +279010,7 @@ ItazuraVR Safe for Work: installDir: ItazuraVR Safe for Work: {} launch: - /ItazuraVR_SafeforWork.exe: + "/ItazuraVR_SafeforWork.exe": - when: - bit: 64 os: windows @@ -278194,11 +279021,11 @@ Iterform: installDir: iterform: {} launch: - /iterform: + "/iterform": - when: - os: linux store: steam - /iterform.exe: + "/iterform.exe": - when: - os: windows store: steam @@ -278209,12 +279036,12 @@ Itineris: id: 582580 Itorah: files: - /AppData/LocalLow/Grimbart Tales/Itorah/Itorah/gamestates: + "/AppData/LocalLow/Grimbart Tales/Itorah/Itorah/gamestates": tags: - save when: - os: windows - /AppData/LocalLow/Grimbart Tales/Itorah/Itorah/options.sav: + "/AppData/LocalLow/Grimbart Tales/Itorah/Itorah/options.sav": tags: - config when: @@ -278225,11 +279052,11 @@ Itorah: Itorah: {} steam: id: 1132910 -'Its Simple, SHOOT': +"Its Simple, SHOOT": installDir: ItsSimpleSHOOT: {} launch: - '/Its Simple, SHOOT.exe': + "/Its Simple, SHOOT.exe": - when: - os: windows store: steam @@ -278242,7 +279069,7 @@ Itsy Blitzy: installDir: Itsy Blitzy: {} launch: - /ItsyBlitzy.exe: + "/ItsyBlitzy.exe": - when: - os: windows store: steam @@ -278250,7 +279077,7 @@ Itsy Blitzy: id: 858320 Itta: files: - /ITTA_WORKBUILD_FINAL: + "/ITTA_WORKBUILD_FINAL": tags: - save when: @@ -278263,17 +279090,17 @@ Itta: id: 775580 Ittle Dew: files: - /.config/unity3d/Ludosity/IttleDew: + "/.config/unity3d/Ludosity/IttleDew": tags: - config when: - os: linux - /AppData/LocalLow/Ludosity/IttleDew/IttleDew: + "/AppData/LocalLow/Ludosity/IttleDew/IttleDew": tags: - save when: - os: windows - /userdata//241320/remote: + "/userdata//241320/remote": tags: - save when: @@ -278283,15 +279110,15 @@ Ittle Dew: installDir: Ittle Dew: {} launch: - /IttleDew.app: + "/IttleDew.app": - when: - os: mac store: steam - /IttleDew.x86: + "/IttleDew.x86": - when: - os: linux store: steam - /dew.exe: + "/dew.exe": - when: - os: windows store: steam @@ -278303,7 +279130,7 @@ Ittle Dew: id: 241320 Ittle Dew 2: files: - /.config/unity3d/Ludosity/Ittle Dew 2: + "/.config/unity3d/Ludosity/Ittle Dew 2": tags: - config when: @@ -278311,20 +279138,20 @@ Ittle Dew 2: installDir: Ittle Dew 2: {} launch: - /ID2.app: + "/ID2.app": - when: - os: mac store: steam - /ID2.exe: + "/ID2.exe": - when: - os: windows store: steam - /ID2.x86: + "/ID2.x86": - when: - bit: 32 os: linux store: steam - /ID2.x86_64: + "/ID2.x86_64": - when: - bit: 64 os: linux @@ -278335,7 +279162,7 @@ ItzaBitza: installDir: ItzaBitza: {} launch: - /ItzaBitza.exe: + "/ItzaBitza.exe": - when: - store: steam steam: @@ -278344,16 +279171,16 @@ ItzaZoo: installDir: ItzaZoo: {} launch: - /ItzaZoo.exe: + "/ItzaZoo.exe": - when: - store: steam steam: id: 40210 -'Iubes:2': +"Iubes:2": installDir: iubes2: {} launch: - /IUBES2.exe: + "/IUBES2.exe": - when: - os: windows store: steam @@ -278366,15 +279193,15 @@ Ivanoile ~ Christalixeur Corruption: installDir: Ivanoile Corruption Christalixeur: {} launch: - /IvanoilChristalixeur/IvanoilChristalixeur.app: + "/IvanoilChristalixeur/IvanoilChristalixeur.app": - when: - os: mac store: steam - /IvanoilChristalixeur/IvanoilChristalixeur.exe: + "/IvanoilChristalixeur/IvanoilChristalixeur.exe": - when: - os: windows store: steam - /IvanoilChristalixeur/IvanoilChristalixeur.sh: + "/IvanoilChristalixeur/IvanoilChristalixeur.sh": - when: - os: linux store: steam @@ -278382,7 +279209,7 @@ Ivanoile ~ Christalixeur Corruption: id: 1077330 Iwaihime: files: - /DMM_GAMES/Iwaihime/VER_100/savedata.bin: + "/DMM_GAMES/Iwaihime/VER_100/savedata.bin": tags: - config - save @@ -278391,7 +279218,7 @@ Iwaihime: installDir: Iwaihime: {} launch: - /iw.exe: + "/iw.exe": - when: - store: steam steam: @@ -278400,30 +279227,32 @@ IxSHE Tell: installDir: IxSHE Tell: {} launch: - /IXSHE.exe: + "/IXSHE.exe": - when: - store: steam steam: id: 1340120 -Izanami's Dream Battle: +"Izanami's Dream Battle": installDir: - Izanami's Dream Battle: {} + "Izanami's Dream Battle": {} launch: - /readstory.sh: + "/readstory.sh": - when: - os: linux store: steam - /story.pdf: + "/story.pdf": - when: - os: windows store: steam + - os: mac + store: steam steam: id: 547730 Izeriya: installDir: Izeriya: {} launch: - /Izeriya.exe: + "/Izeriya.exe": - when: - os: windows store: steam @@ -278433,7 +279262,7 @@ I・S・U: installDir: ISU: {} launch: - /ISU.exe: + "/ISU.exe": - when: - os: windows store: steam @@ -278446,7 +279275,7 @@ J-Girl: installDir: J-Girl: {} launch: - /J-Girl_Win/J-Girl.exe: + "/J-Girl_Win/J-Girl.exe": - when: - os: windows store: steam @@ -278456,8 +279285,8 @@ J.A.W.S: installDir: J.A.W.S: {} launch: - /Survival.exe: - - arguments: '-fullscreen' + "/Survival.exe": + - arguments: "-fullscreen" when: - bit: 64 os: windows @@ -278466,32 +279295,32 @@ J.A.W.S: id: 753610 J.U.L.I.A. Among the Stars: files: - /Library/Application Support/JULIAAtS*R*: + "/Library/Application Support/JULIAAtS*R*": tags: - save when: - os: mac - /Library/Application Support/JULIAAtS*R*/settings.xml: + "/Library/Application Support/JULIAAtS*R*/settings.xml": tags: - config when: - os: mac - /JULIAAtS*R*: + "/JULIAAtS*R*": tags: - save when: - os: windows - /JULIAAtS*R*/settings.xml: + "/JULIAAtS*R*/settings.xml": tags: - config when: - os: windows - /JULIAAtS*R*: + "/JULIAAtS*R*": tags: - save when: - os: linux - /JULIAAtS*R*/settings.xml: + "/JULIAAtS*R*/settings.xml": tags: - config when: @@ -278501,30 +279330,30 @@ J.U.L.I.A. Among the Stars: installDir: JULIA-Among the Stars: {} launch: - /JULIA-ATS.app/Contents/MacOS/JULIA-ATS: - - arguments: '-ignore _sd' + "/JULIA-ATS.app/Contents/MacOS/JULIA-ATS": + - arguments: "-ignore _sd" when: - os: mac store: steam - - arguments: '-ignore _hd' + - arguments: "-ignore _hd" when: - os: mac store: steam - /Launcher.exe: + "/Launcher.exe": - when: - os: windows store: steam - /rungame_hd.sh: + "/rungame_hd.sh": - when: - os: linux store: steam steam: id: 257690 -'J.U.R: Japan Underground Racing': +"J.U.R: Japan Underground Racing": installDir: J.U.R Windows: {} launch: - /JUR.exe: + "/JUR.exe": - when: - os: windows store: steam @@ -278539,28 +279368,28 @@ JAGD LANZER: installDir: JAGD LANZER: {} launch: - /game.exe: + "/game.exe": - when: - store: steam - /manual-jap.pdf: + "/manual-jap.pdf": - when: - store: steam steam: id: 1175590 -'JASEM: Just Another Shooter with Electronic Music': +"JASEM: Just Another Shooter with Electronic Music": installDir: JASEM Just Another Shooter with Electronic Music: {} launch: - /JASEM.app: + "/JASEM.app": - when: - os: mac store: steam - /JASEM.exe: + "/JASEM.exe": - when: - bit: 64 os: windows store: steam - /JASEM.x86_64: + "/JASEM.x86_64": - when: - bit: 64 os: linux @@ -278571,23 +279400,25 @@ JBMod: installDir: JBMod: {} launch: - /hl2.sh: - - arguments: '-steam -game jbmod' + "/hl2.sh": + - arguments: "-steam -game jbmod" when: + - os: mac + store: steam - os: linux store: steam - /jbmod.exe: - - arguments: '-steam -game jbmod' + "/jbmod.exe": + - arguments: "-steam -game jbmod" when: - os: windows store: steam steam: id: 2158860 -'JCB Pioneer: Mars': +"JCB Pioneer: Mars": installDir: JCB Pioneer Mars: {} launch: - /mars_launcher.exe: + "/mars_launcher.exe": - when: - store: steam steam: @@ -278596,7 +279427,7 @@ JDM Tuner Racing: installDir: JDM Tuner Racing: {} launch: - /JDM.exe: + "/JDM.exe": - when: - os: windows store: steam @@ -278606,7 +279437,7 @@ JEF: installDir: JEF: {} launch: - /JEF.exe: + "/JEF.exe": - when: - os: windows store: steam @@ -278616,15 +279447,15 @@ JERRY JOBHOPPER: installDir: JERRY JOBHOPPER: {} launch: - /JerryJobhopper.app: + "/JerryJobhopper.app": - when: - os: mac store: steam - /JerryJobhopper.exe: + "/JerryJobhopper.exe": - when: - os: windows store: steam - /JerryJobhopper.x86_64: + "/JerryJobhopper.x86_64": - when: - os: linux store: steam @@ -278634,11 +279465,11 @@ JETBOY: installDir: JETBOY: {} launch: - /JETBOY.app: + "/JETBOY.app": - when: - os: mac store: steam - /JETBOY/JETBOY.exe: + "/JETBOY/JETBOY.exe": - when: - os: windows store: steam @@ -278648,15 +279479,15 @@ JETBROS: installDir: JETBROS: {} launch: - /JETBROS.app: + "/JETBROS.app": - when: - os: mac store: steam - /JETBROS.exe: + "/JETBROS.exe": - when: - os: windows store: steam - /JETBROS.sh: + "/JETBROS.sh": - when: - os: linux store: steam @@ -278666,12 +279497,15 @@ JJBoom: installDir: JJBoom: {} launch: - /JJBoom.app/Contents/MacOS/JJBoom: + "/JJBoom.app/Contents/MacOS/JJBoom": - when: - os: mac store: steam - /JJBoom.exe: + "/JJBoom.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam @@ -278681,17 +279515,17 @@ JOBU-KI: installDir: JOBU-KI: {} launch: - /JOBU-KI.exe: + "/JOBU-KI.exe": - when: - os: windows store: steam steam: id: 993290 -'JOLT: Super Robot Racer': +"JOLT: Super Robot Racer": installDir: Jolt: {} launch: - /Jolt.exe: + "/Jolt.exe": - when: - os: windows store: steam @@ -278701,7 +279535,7 @@ JORRY: installDir: JORRY: {} launch: - /JORRY.exe: + "/JORRY.exe": - when: - os: windows store: steam @@ -278711,7 +279545,7 @@ JOY You-I-He 蘭花園: installDir: JOY You-I-He: {} launch: - /JOY You-I-He.exe: + "/JOY You-I-He.exe": - when: - bit: 64 os: windows @@ -278722,53 +279556,53 @@ JOYDOOR: installDir: steamworks: {} launch: - /JOYDOOR.exe: + "/JOYDOOR.exe": - when: - os: windows store: steam steam: id: 917800 -'JQ: Beautiful Japan': +"JQ: Beautiful Japan": installDir: JQ Beautiful Japan: {} launch: - /JQBeautifulJapan.exe: + "/JQBeautifulJapan.exe": - when: - store: steam steam: id: 918070 -'JQ: Chemistry': +"JQ: Chemistry": installDir: JQ chemistry: {} launch: - /JQchemistry.exe: + "/JQchemistry.exe": - when: - store: steam steam: id: 826010 -'JQ: Cosmos': +"JQ: Cosmos": installDir: JQ cosmos: {} launch: - /JQCosmos.exe: + "/JQCosmos.exe": - when: - store: steam steam: id: 1054650 -'JQ: Countries': +"JQ: Countries": installDir: JQ countries: {} launch: - /JQcountries.exe: + "/JQcountries.exe": - when: - store: steam steam: id: 796360 -'JQ: Dogs & Cats': +"JQ: Dogs & Cats": installDir: JQ dogs & cats: {} launch: - /JQ dogs & cats.exe: + "/JQ dogs & cats.exe": - when: - store: steam steam: @@ -278777,11 +279611,11 @@ JU: installDir: JU: {} launch: - /0.97.app: + "/0.97.app": - when: - os: mac store: steam - /0.97.exe: + "/0.97.exe": - when: - os: windows store: steam @@ -278790,11 +279624,11 @@ JU: JUDA: steam: id: 1119910 -JUMP AND RUN - DON'T FALL: +"JUMP AND RUN - DON'T FALL": installDir: - JUMP AND RUN - DON'T FALL: {} + "JUMP AND RUN - DON'T FALL": {} launch: - /JumpAndRunDontFall.exe: + "/JumpAndRunDontFall.exe": - when: - os: windows store: steam @@ -278804,7 +279638,7 @@ JUMP UP: installDir: JUMP UP: {} launch: - /JUMP_UP.exe: + "/JUMP_UP.exe": - when: - os: windows store: steam @@ -278814,15 +279648,15 @@ JUMPGRID: installDir: Jumpgrid: {} launch: - /Jumpgrid.app/Contents/MacOS/amulet: + "/Jumpgrid.app/Contents/MacOS/amulet": - when: - os: mac store: steam - /jumpgrid: + "/jumpgrid": - when: - os: linux store: steam - /jumpgrid.exe: + "/jumpgrid.exe": - when: - os: windows store: steam @@ -278832,7 +279666,7 @@ JUST DASH: installDir: JUST DUSH: {} launch: - /JUSTDASH.exe: + "/JUSTDASH.exe": - when: - bit: 64 os: windows @@ -278843,14 +279677,14 @@ JUST a Game: installDir: JUSTaGAME: {} launch: - /JustaGame.exe: + "/JustaGame.exe": - when: - store: steam steam: id: 891090 -'Jabroni Brawl: Episode 3': +"Jabroni Brawl: Episode 3": files: - /steamapps/common/Jabroni Brawl Episode 3/jbep3/cfg: + "/steamapps/common/Jabroni Brawl Episode 3/jbep3/cfg": tags: - config when: @@ -278859,13 +279693,13 @@ JUST a Game: installDir: Jabroni Brawl Episode 3: {} launch: - /bin/win32/jbep3.exe: - - arguments: '-game jbep3 -steam' + "/bin/win32/jbep3.exe": + - arguments: "-game jbep3 -steam" when: - os: windows store: steam - /launcher.sh: - - arguments: '-game jbep3 -steam' + "/launcher.sh": + - arguments: "-game jbep3 -steam" when: - os: linux store: steam @@ -278878,7 +279712,7 @@ Jack & the creepy Castle: installDir: Jack & the creepy Castle: {} launch: - /creepy_castle_3d.exe: + "/creepy_castle_3d.exe": - when: - os: windows store: steam @@ -278888,7 +279722,7 @@ Jack Axe: installDir: Jack Axe: {} launch: - /JackAxe.exe: + "/JackAxe.exe": - when: - os: windows store: steam @@ -278898,11 +279732,11 @@ Jack B. Nimble: installDir: Jack B. Nimble: {} launch: - /jackb.nimble.app/Contents/MacOS/nwjs: + "/jackb.nimble.app/Contents/MacOS/nwjs": - when: - os: mac store: steam - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -278912,7 +279746,7 @@ Jack In Town: installDir: Jack In Town: {} launch: - /JackInTown.exe: + "/JackInTown.exe": - when: - bit: 64 os: windows @@ -278923,15 +279757,15 @@ Jack Is Missing: installDir: Jack Is Missing: {} launch: - /Jack Is Missing.app/Contents/MacOS/Jack Is Missing: + "/Jack Is Missing.app/Contents/MacOS/Jack Is Missing": - when: - os: mac store: steam - /Jack Is Missing.exe: + "/Jack Is Missing.exe": - when: - os: windows store: steam - /Jack Is Missing.x86: + "/Jack Is Missing.x86": - when: - os: linux store: steam @@ -278939,12 +279773,12 @@ Jack Is Missing: id: 921500 Jack Keane: files: - /Jack Keane/save: + "/Jack Keane/save": tags: - save when: - os: windows - /Jack Keane/settings.ini: + "/Jack Keane/settings.ini": tags: - config when: @@ -278954,20 +279788,20 @@ Jack Keane: installDir: Jack Keane: {} launch: - /bin/release/jackkeane.exe: + "/bin/release/jackkeane.exe": - when: - store: steam - workingDir: /bin/release + workingDir: "/bin/release" steam: id: 12340 -'Jack Keane 2: The Fire Within': +"Jack Keane 2: The Fire Within": files: - /Jack Keane and the Fire Within/save: + "/Jack Keane and the Fire Within/save": tags: - save when: - os: windows - /Jack Keane and the Fire Within/settings.ini: + "/Jack Keane and the Fire Within/settings.ini": tags: - config when: @@ -278977,7 +279811,7 @@ Jack Keane: installDir: Jack Keane 2: {} launch: - /JackKeane2.exe: + "/JackKeane2.exe": - when: - os: windows store: steam @@ -278985,13 +279819,13 @@ Jack Keane: id: 236970 Jack Lumber: files: - /.config/unity3d/Owlchemy Labs/Jack Lumber: + "/.config/unity3d/Owlchemy Labs/Jack Lumber": tags: - config - save when: - os: linux - /Library/Preferences/unity.Owlchemy Labs.Jack Lumber.plist: + "/Library/Preferences/unity.Owlchemy Labs.Jack Lumber.plist": tags: - config - save @@ -279000,27 +279834,27 @@ Jack Lumber: installDir: jack_lumber: {} launch: - /JackLumber.app: + "/JackLumber.app": - when: - os: mac store: steam - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" when: - os: mac store: steam - /JackLumber.exe: + "/JackLumber.exe": - when: - os: windows store: steam - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" when: - os: windows store: steam - /startgame.sh: + "/startgame.sh": - when: - os: linux store: steam - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" when: - os: linux store: steam @@ -279033,17 +279867,17 @@ Jack Lumber: id: 220900 Jack Move: files: - /AppData/LocalLow/SoRomantic/Jack Move/SaveFiles/autosave.jams: + "/AppData/LocalLow/SoRomantic/Jack Move/SaveFiles/autosave.jams": tags: - save when: - os: windows - /AppData/LocalLow/SoRomantic/Jack Move/SaveFiles/options.jams: + "/AppData/LocalLow/SoRomantic/Jack Move/SaveFiles/options.jams": tags: - config when: - os: windows - /AppData/LocalLow/SoRomantic/Jack Move/SaveFiles/savefile_*.jams: + "/AppData/LocalLow/SoRomantic/Jack Move/SaveFiles/savefile_*.jams": tags: - save when: @@ -279059,11 +279893,11 @@ Jack Move: installDir: Jack Move: {} launch: - /jack_move_OSX.app: + "/jack_move_OSX.app": - when: - os: mac store: steam - /jack_move_Win.exe: + "/jack_move_Win.exe": - when: - bit: 64 os: windows @@ -279074,24 +279908,24 @@ Jack Move: - config steam: id: 1099640 -Jack N' Jill DX: +"Jack N' Jill DX": installDir: - Jack N' Jill DX: {} + "Jack N' Jill DX": {} steam: id: 873560 Jack Nicklaus Perfect Golf: installDir: Perfect Golf: {} launch: - /Perfect Golf.app: + "/Perfect Golf.app": - when: - os: mac store: steam - /Perfect Golf.exe: + "/Perfect Golf.exe": - when: - os: windows store: steam - /Perfect Golf.x86: + "/Perfect Golf.x86": - when: - os: linux store: steam @@ -279099,7 +279933,7 @@ Jack Nicklaus Perfect Golf: id: 288140 Jack Orlando: files: - /Savegame: + "/Savegame": tags: - save when: @@ -279110,15 +279944,15 @@ Jack Orlando: installDir: Jack Orlando: {} launch: - /Jack Orlando Director's Cut.app: + "/Jack Orlando Director's Cut.app": - when: - os: mac store: steam - /JackStart.exe: + "/JackStart.exe": - when: - os: windows store: steam - /RunGame: + "/RunGame": - when: - os: linux store: steam @@ -279133,11 +279967,11 @@ Jack Spriggan: JackSpriggan: {} steam: id: 620660 -'Jack and Sara: Educational Game': +"Jack and Sara: Educational Game": installDir: JackAndSara: {} launch: - /JackAndSara.exe: + "/JackAndSara.exe": - when: - os: windows store: steam @@ -279147,8 +279981,8 @@ Jack the Barbarian: installDir: Jack the Barbarian: {} launch: - /Jack the Barbarian.exe: - - arguments: '--in-process-gpu' + "/Jack the Barbarian.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam @@ -279158,27 +279992,27 @@ Jack troubles: installDir: Jack troubles: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam steam: id: 1205020 -Jack's Game: +"Jack's Game": steam: id: 670790 -Jack's Gang: +"Jack's Gang": steam: id: 607270 Jack-In-A-Castle: installDir: Jack-In-A-Castle: {} launch: - /JackInACastle_2.0.exe: + "/JackInACastle_2.0.exe": - when: - os: windows store: steam - /JackInACastle_2.0.sh: + "/JackInACastle_2.0.sh": - when: - os: linux store: steam @@ -279188,7 +280022,7 @@ Jack-O-Lantern Covers of Darkness: installDir: Jack-O-Lantern Covers of Darkness: {} launch: - /JOL-Cover Of Darkness.exe: + "/JOL-Cover Of Darkness.exe": - when: - store: steam steam: @@ -279196,15 +280030,15 @@ Jack-O-Lantern Covers of Darkness: JackHammer: steam: id: 630040 -'JackQuest: The Tale of The Sword': +"JackQuest: The Tale of The Sword": installDir: JackQuest: {} launch: - /JackQuest.app/Contents/MacOS/Mac_Runner: + "/JackQuest.app/Contents/MacOS/Mac_Runner": - when: - os: mac store: steam - /JackQuest.exe: + "/JackQuest.exe": - when: - os: windows store: steam @@ -279217,17 +280051,17 @@ Jackpot Poker by PokerStars: installDir: Jackpot Poker by PokerStars: {} launch: - /JackpotPoker.exe: + "/JackpotPoker.exe": - when: - os: windows store: steam steam: id: 455020 -'Jacktus Green: The Fluffy, the Spiky and the Spicy': +"Jacktus Green: The Fluffy, the Spiky and the Spicy": installDir: Jacktus Green: {} launch: - /Jacktus Green.exe: + "/Jacktus Green.exe": - when: - bit: 64 os: windows @@ -279238,40 +280072,40 @@ Jacob: installDir: Jacob: {} launch: - /Jacob.exe: + "/Jacob.exe": - when: - os: windows store: steam steam: id: 449780 -'Jacob Jones and the Bigfoot Mystery: Episode 1': +"Jacob Jones and the Bigfoot Mystery: Episode 1": installDir: JacobJonesAndTheBigFootMysteryEpisode1: {} launch: - /Binaries/Win32/JacobJonesGame.exe: + "/Binaries/Win32/JacobJonesGame.exe": - when: - os: windows store: steam steam: id: 264400 -'Jacob Jones and the Bigfoot Mystery: Episode 2': +"Jacob Jones and the Bigfoot Mystery: Episode 2": installDir: JacobJonesAndTheBigfootMysteryEpisode2: {} launch: - /Binaries/Win32/JacobJonesEpisode2Game.exe: + "/Binaries/Win32/JacobJonesEpisode2Game.exe": - when: - os: windows store: steam steam: id: 308180 -'Jade Empire: Special Edition': +"Jade Empire: Special Edition": files: - /JadeEmpire.ini: + "/JadeEmpire.ini": tags: - config when: - os: windows - /Save: + "/Save": tags: - save when: @@ -279281,65 +280115,65 @@ Jacob: installDir: Jade Empire: {} launch: - /JadeEmpireConfig.exe: + "/JadeEmpireConfig.exe": - when: - store: steam - /JadeEmpireLauncher.exe: + "/JadeEmpireLauncher.exe": - when: - store: steam steam: id: 7110 -Jade's Ascension: +"Jade's Ascension": installDir: JadesAscension: {} launch: - /JadesAscension.exe: + "/JadesAscension.exe": - when: - os: windows store: steam steam: id: 1119680 -Jade's Dungeon Descent: +"Jade's Dungeon Descent": installDir: - Jade's Dungeon Descent: {} + "Jade's Dungeon Descent": {} launch: - /TempleAdventure.exe: + "/TempleAdventure.exe": - when: - os: windows store: steam steam: id: 864600 -Jade's Journey: +"Jade's Journey": installDir: - Jade's Journey: {} + "Jade's Journey": {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: id: 552580 -Jade's Journey 2: +"Jade's Journey 2": installDir: - Jade's Journey 2: {} + "Jade's Journey 2": {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: id: 607030 Jagged Alliance: files: - /*.SAV: + "/*.SAV": tags: - save when: - os: dos - /Jagged Alliance Gold/Jagged Alliance/Installed/JAGGED/*.SAV: + "/Jagged Alliance Gold/Jagged Alliance/Installed/JAGGED/*.SAV": tags: - save when: - store: steam - /SOUND.CFG: + "/SOUND.CFG": tags: - config when: @@ -279349,34 +280183,38 @@ Jagged Alliance: installDir: Jagged Alliance Gold: {} launch: - /Jagged Alliance Deadly Games/run.bat: + "/Jagged Alliance Deadly Games/run.bat": - when: - os: windows store: steam - workingDir: /Jagged Alliance Deadly Games - /Jagged Alliance Deadly Games/run.sh: + workingDir: "/Jagged Alliance Deadly Games" + "/Jagged Alliance Deadly Games/run.sh": - when: + - os: mac + store: steam - os: linux store: steam - /Jagged Alliance/run.bat: + "/Jagged Alliance/run.bat": - when: - os: windows store: steam - workingDir: /Jagged Alliance - /Jagged Alliance/run.sh: + workingDir: "/Jagged Alliance" + "/Jagged Alliance/run.sh": - when: + - os: mac + store: steam - os: linux store: steam steam: id: 283270 Jagged Alliance 2: files: - /Ja2.set: + "/Ja2.set": tags: - config when: - os: windows - /SavedGames: + "/SavedGames": tags: - save when: @@ -279391,14 +280229,14 @@ Jagged Alliance 2: - 545210 steam: id: 1620 -'Jagged Alliance 2: Unfinished Business': +"Jagged Alliance 2: Unfinished Business": files: - /Ja2.set: + "/Ja2.set": tags: - config when: - os: windows - /SavedGames: + "/SavedGames": tags: - save when: @@ -279411,19 +280249,19 @@ Jagged Alliance 2: installDir: Jagged Alliance 2 Gold Unfinished Business: {} launch: - /ja2ub.exe: + "/ja2ub.exe": - when: - store: steam steam: id: 12380 -'Jagged Alliance 2: Wildfire': +"Jagged Alliance 2: Wildfire": files: - /SavedGames: + "/SavedGames": tags: - save when: - os: windows - /WF6.set: + "/WF6.set": tags: - config when: @@ -279432,26 +280270,26 @@ Jagged Alliance 2: id: 1207658743 id: gogExtra: - - 1972971639 - - 1744970334 - 1452824319 + - 1744970334 + - 1972971639 - 2041310597 steamExtra: + - 2482680 - 2482740 - 2513910 - - 2482680 installDir: ja2_wildfire: {} launch: - /Jagged Alliance Wildfire.app: + "/Jagged Alliance Wildfire.app": - when: - os: mac store: steam - /RunGame: + "/RunGame": - when: - os: linux store: steam - /RunGame.bat: + "/RunGame.bat": - when: - os: windows store: steam @@ -279459,12 +280297,12 @@ Jagged Alliance 2: id: 215930 Jagged Alliance 3: files: - /Saved Games/Jagged Alliance 3//*.sav: + "/Saved Games/Jagged Alliance 3//*.sav": tags: - save when: - os: windows - /Roaming/Jagged Alliance 3/LocalStorage.lua: + "/Roaming/Jagged Alliance 3/LocalStorage.lua": tags: - config when: @@ -279479,7 +280317,7 @@ Jagged Alliance 3: installDir: Jagged Alliance 3: {} launch: - /JA3.exe: + "/JA3.exe": - when: - os: windows store: steam @@ -279487,7 +280325,7 @@ Jagged Alliance 3: id: 1084160 Jagged Alliance Flashback: files: - /Full Control/Jagged Alliance Flashback: + "/Full Control/Jagged Alliance Flashback": tags: - save when: @@ -279495,15 +280333,15 @@ Jagged Alliance Flashback: installDir: Jagged Alliance Flashback: {} launch: - /game.app: + "/game.app": - when: - os: mac store: steam - /game.exe: + "/game.exe": - when: - os: windows store: steam - /game.x86: + "/game.x86": - when: - os: linux store: steam @@ -279520,23 +280358,23 @@ Jagged Alliance Online: installDir: Jagged Alliance Online Reloaded: {} launch: - /JAO.app: + "/JAO.app": - when: - os: mac store: steam - /JAO.exe: + "/JAO.exe": - when: - os: windows store: steam - /JAO.x86: + "/JAO.x86": - when: - os: linux store: steam steam: id: 339640 -'Jagged Alliance: Back in Action': +"Jagged Alliance: Back in Action": files: - 'C:/Users/Public/Documents/Jagged Alliance - Back in Action': + "C:/Users/Public/Documents/Jagged Alliance - Back in Action": tags: - save when: @@ -279544,44 +280382,44 @@ Jagged Alliance Online: installDir: JABIA: {} launch: - /JABIA.app: + "/JABIA.app": - when: - bit: 64 os: mac store: steam - /JabiaLinux.x86_64: + "/JabiaLinux.x86_64": - when: - bit: 64 os: linux store: steam - /JaggedAllianceBIA.exe: + "/JaggedAllianceBIA.exe": - when: - os: windows store: steam steam: id: 57740 -'Jagged Alliance: Crossfire': +"Jagged Alliance: Crossfire": installDir: Jagged Alliance Crossfire: {} launch: - /JaggedAllianceCF.exe: + "/JaggedAllianceCF.exe": - when: - store: steam steam: id: 205810 -'Jagged Alliance: Deadly Games': +"Jagged Alliance: Deadly Games": files: - /*.SAV: + "/*.SAV": tags: - save when: - os: dos - /DG.CFG: + "/DG.CFG": tags: - config when: - os: dos - /SOUND.CFG: + "/SOUND.CFG": tags: - config when: @@ -279591,34 +280429,38 @@ Jagged Alliance Online: installDir: Jagged Alliance Gold: {} launch: - /Jagged Alliance Deadly Games/run.bat: + "/Jagged Alliance Deadly Games/run.bat": - when: - os: windows store: steam - workingDir: /Jagged Alliance Deadly Games - /Jagged Alliance Deadly Games/run.sh: + workingDir: "/Jagged Alliance Deadly Games" + "/Jagged Alliance Deadly Games/run.sh": - when: + - os: mac + store: steam - os: linux store: steam - /Jagged Alliance/run.bat: + "/Jagged Alliance/run.bat": - when: - os: windows store: steam - workingDir: /Jagged Alliance - /Jagged Alliance/run.sh: + workingDir: "/Jagged Alliance" + "/Jagged Alliance/run.sh": - when: + - os: mac + store: steam - os: linux store: steam steam: id: 283270 -'Jagged Alliance: Rage!': +"Jagged Alliance: Rage!": files: - /Jagged Alliance Rage: + "/Jagged Alliance Rage": tags: - save when: - os: windows - /Jagged Alliance Rage/Settings.json: + "/Jagged Alliance Rage/Settings.json": tags: - config when: @@ -279628,7 +280470,7 @@ Jagged Alliance Online: installDir: Jagged Alliance Rage: {} launch: - /JAN.exe: + "/JAN.exe": - when: - os: windows store: steam @@ -279651,7 +280493,7 @@ Jailbreak Simulator: installDir: Jailbreak Simulator: {} launch: - /Jailbreak.exe: + "/Jailbreak.exe": - when: - os: windows store: steam @@ -279659,44 +280501,44 @@ Jailbreak Simulator: id: 1131940 Jak II: files: - /OpenGOAL/jak2/saves/: + "/OpenGOAL/jak2/saves/": tags: - save when: - os: windows - /OpenGOAL/jak2/settings: + "/OpenGOAL/jak2/settings": tags: - config when: - os: windows - /OpenGOAL/jak2/saves/: + "/OpenGOAL/jak2/saves/": tags: - save when: - os: linux - /OpenGOAL/jak2/settings: + "/OpenGOAL/jak2/settings": tags: - config when: - os: linux -'Jak and Daxter: The Precursor Legacy': +"Jak and Daxter: The Precursor Legacy": files: - /OpenGOAL/jak1/saves/: + "/OpenGOAL/jak1/saves/": tags: - save when: - os: windows - /OpenGOAL/jak1/settings: + "/OpenGOAL/jak1/settings": tags: - config when: - os: windows - /OpenGOAL/jak1/saves/: + "/OpenGOAL/jak1/saves/": tags: - save when: - os: linux - /OpenGOAL/jak1/settings: + "/OpenGOAL/jak1/settings": tags: - config when: @@ -279706,19 +280548,19 @@ Jake and the Giant: Jake and the Giant: {} steam: id: 940240 -Jake's Love Story: +"Jake's Love Story": installDir: JakesLoveStory: {} launch: - /JLS.app: + "/JLS.app": - when: - os: mac store: steam - /JLS.exe: + "/JLS.exe": - when: - os: windows store: steam - /JLS.sh: + "/JLS.sh": - when: - os: linux store: steam @@ -279726,7 +280568,7 @@ Jake's Love Story: id: 699080 Jalopy: files: - /AppData/LocalLow/MinskWorks/Jalopy: + "/AppData/LocalLow/MinskWorks/Jalopy": tags: - save when: @@ -279736,7 +280578,7 @@ Jalopy: installDir: Jalopy: {} launch: - /Jalopy.exe: + "/Jalopy.exe": - when: - os: windows store: steam @@ -279765,7 +280607,7 @@ JamG: installDir: JamG: {} launch: - /JamG.exe: + "/JamG.exe": - when: - os: windows store: steam @@ -279775,23 +280617,23 @@ Jambo: installDir: Jambo: {} launch: - /Jambo.exe: + "/Jambo.exe": - when: - os: windows store: steam steam: id: 777860 -Jambo's Adventure: +"Jambo's Adventure": steam: id: 1026190 -'James Bond 007: Blood Stone': +"James Bond 007: Blood Stone": files: - /bizarre creations/blood stone/profiles: + "/bizarre creations/blood stone/profiles": tags: - save when: - os: windows - /bizarre creations/blood stone/settings.xml: + "/bizarre creations/blood stone/settings.xml": tags: - config when: @@ -279799,31 +280641,31 @@ Jambo's Adventure: installDir: 007 Blood Stone: {} launch: - /bond.exe: + "/bond.exe": - when: - store: steam steam: id: 42730 -'James Bond 007: Nightfire': +"James Bond 007: Nightfire": files: - /Gearbox Software/Nightfire/bond/SAVE: + "/Gearbox Software/Nightfire/bond/SAVE": tags: - save when: - os: windows - /Gearbox Software/Nightfire/bond/config.cfg: + "/Gearbox Software/Nightfire/bond/config.cfg": tags: - config when: - os: windows -'James Cameron''s Avatar: The Game': +"James Cameron's Avatar: The Game": files: - /My Games/AVATAR/GamerProfile.xml: + "/My Games/AVATAR/GamerProfile.xml": tags: - config when: - os: windows - /My Games/AVATAR/Saved Games/*.sav: + "/My Games/AVATAR/Saved Games/*.sav": tags: - save when: @@ -279831,7 +280673,7 @@ Jambo's Adventure: installDir: James Cameron Avatar: {} launch: - /bin/Avatar.exe: + "/bin/Avatar.exe": - when: - store: steam steam: @@ -279840,14 +280682,14 @@ James Town Courier Frog MD: installDir: James Town Courier Frog MD: {} launch: - /James Town Courier Frog MD.exe: + "/James Town Courier Frog MD.exe": - when: - store: steam steam: id: 1204760 Jamestown+: files: - /Saved Games/JamestownPlus: + "/Saved Games/JamestownPlus": tags: - save when: @@ -279855,21 +280697,21 @@ Jamestown+: installDir: Jamestown+: {} launch: - /JamestownPlus.exe: + "/JamestownPlus.exe": - when: - os: windows store: steam steam: id: 377950 -'Jamestown: Legend of the Lost Colony': +"Jamestown: Legend of the Lost Colony": files: - /.jamestown: + "/.jamestown": tags: - config - save when: - os: linux - /Saved Games/Jamestown: + "/Saved Games/Jamestown": tags: - save when: @@ -279877,24 +280719,24 @@ Jamestown+: installDir: Jamestown: {} launch: - /Jamestown.app: + "/Jamestown.app": - when: - os: mac store: steam - /Jamestown.exe: + "/Jamestown.exe": - when: - os: windows store: steam steam: id: 94200 -Jamie's Dream: +"Jamie's Dream": steam: id: 708020 Jammerball: installDir: Jammerball: {} launch: - /Jammerball.exe: + "/Jammerball.exe": - when: - bit: 32 os: windows @@ -279908,35 +280750,35 @@ Jamsouls: installDir: Jamsouls: {} launch: - /Jamsouls.exe: + "/Jamsouls.exe": - when: - os: windows store: steam steam: id: 314460 -'Jane Angel: Templar Mystery': +"Jane Angel: Templar Mystery": installDir: Jane Angel Templar Mystery: {} launch: - /Jane Angel - Templar Mystery.exe: + "/Jane Angel - Templar Mystery.exe": - when: - store: steam steam: id: 323270 -Jane Austen's 8-bit Adventure: +"Jane Austen's 8-bit Adventure": installDir: - Jane Austen's 8-bit Adventure: {} + "Jane Austen's 8-bit Adventure": {} launch: - /Jane.app: + "/Jane.app": - when: - os: mac store: steam - /jane: + "/jane": - when: - bit: 64 os: linux store: steam - /jane.exe: + "/jane.exe": - when: - bit: 64 os: windows @@ -279947,59 +280789,59 @@ Jane Westlake Adventures - The Mystery Train: installDir: Jane Westlake Adventures - The Mystery Train: {} launch: - /Jane Westlake Adventures - The Mystery Train.exe: + "/Jane Westlake Adventures - The Mystery Train.exe": - when: - os: windows store: steam - /Jane Westlake Adventures - The Mystery Train.x86_64: + "/Jane Westlake Adventures - The Mystery Train.x86_64": - when: - os: linux store: steam - /build-macos.app: + "/build-macos.app": - when: - os: mac store: steam steam: id: 1158430 -Jane's Advanced Strike Fighters: +"Jane's Advanced Strike Fighters": installDir: Janes Advanced Strike Fighters: {} launch: - /GameLauncher.exe: + "/GameLauncher.exe": - when: - store: steam steam: id: 207790 -Jane's F-15: +"Jane's F-15": registry: - HKEY_LOCAL_MACHINE/SOFTWARE/WOW6432Node/Jane's Combat Simulations/F15/Config: + "HKEY_LOCAL_MACHINE/SOFTWARE/WOW6432Node/Jane's Combat Simulations/F15/Config": tags: - config -Jane's Fighters Anthology: +"Jane's Fighters Anthology": files: - /PltXXX.p: + "/PltXXX.p": tags: - save when: - os: windows -Jane's Fleet Command: +"Jane's Fleet Command": files: - /*.log: + "/*.log": tags: - save when: - os: windows - /Fleet Command.ini: + "/Fleet Command.ini": tags: - config when: - os: windows - /scenario/*.svc: + "/scenario/*.svc": tags: - save when: - os: windows - /scenario/*.svs: + "/scenario/*.svs": tags: - save when: @@ -280007,33 +280849,33 @@ Jane's Fleet Command: installDir: Fleet Command: {} launch: - /SteamRun.exe: + "/SteamRun.exe": - when: - store: steam steam: id: 2910 -Jane's Realty: +"Jane's Realty": installDir: - Jane's Realty: {} + "Jane's Realty": {} launch: - /JanesRealty.exe: + "/JanesRealty.exe": - when: - store: steam steam: id: 412440 -Jane's USAF: +"Jane's USAF": files: - /Pilots: + "/Pilots": tags: - save when: - os: windows - /Pilots/*.ini: + "/Pilots/*.ini": tags: - config when: - os: windows - /Pilots/Master/Player.ini: + "/Pilots/Master/Player.ini": tags: - config when: @@ -280047,7 +280889,7 @@ Janitor Bleeds: installDir: JANITOR BLEEDS: {} launch: - /JANITOR BLEEDS.exe: + "/JANITOR BLEEDS.exe": - when: - os: windows store: steam @@ -280057,11 +280899,11 @@ Janken Cards: installDir: Janken Cards: {} launch: - /JankenCards.app: + "/JankenCards.app": - when: - os: mac store: steam - /JankenCards.exe: + "/JankenCards.exe": - when: - os: windows store: steam @@ -280071,11 +280913,11 @@ Janky Tanks: installDir: Janky Tanks: {} launch: - /janky-tanks.app: + "/janky-tanks.app": - when: - os: mac store: steam - /janky-tanks.exe: + "/janky-tanks.exe": - when: - os: windows store: steam @@ -280083,17 +280925,17 @@ Janky Tanks: id: 344220 Janosik: files: - /Janosik1ver1.6/User Data/Default: + "/Janosik1ver1.6/User Data/Default": tags: - config when: - os: windows - /Janosik1ver1.6/User Data/Default/IndexedDB: + "/Janosik1ver1.6/User Data/Default/IndexedDB": tags: - save when: - os: windows - /Janosik1ver1.6/User Data/Default/Session Storage: + "/Janosik1ver1.6/User Data/Default/Session Storage": tags: - save when: @@ -280103,15 +280945,15 @@ Janosik: installDir: Janosik: {} launch: - /Janosik 1 ver1.6: + "/Janosik 1 ver1.6": - when: - os: linux store: steam - /Janosik 1 ver1.6.app: + "/Janosik 1 ver1.6.app": - when: - os: mac store: steam - /Janosik 1 ver1.6.exe: + "/Janosik 1 ver1.6.exe": - when: - os: windows store: steam @@ -280126,8 +280968,8 @@ Janus VR: installDir: Janus VR: {} launch: - /janusvr.exe: - - arguments: '-render 2d' + "/janusvr.exe": + - arguments: "-render 2d" when: - bit: 64 os: windows @@ -280137,11 +280979,11 @@ Janus VR: Japan Girls: steam: id: 1303110 -'Japanese Rail Sim: Journey to Kyoto': +"Japanese Rail Sim: Journey to Kyoto": installDir: Japanese Rail Sim Journey to Kyoto: {} launch: - /Japanese Rail Sim Journey to Kyoto.exe: + "/Japanese Rail Sim Journey to Kyoto.exe": - when: - os: windows store: steam @@ -280149,7 +280991,7 @@ Japan Girls: id: 1761290 Japanese School Life: files: - /CODEJP/SEKAIPROJECT/JAPANESE SCHOOL LIFE: + "/CODEJP/SEKAIPROJECT/JAPANESE SCHOOL LIFE": tags: - save when: @@ -280157,7 +280999,7 @@ Japanese School Life: installDir: Japanese School Life Trial: {} launch: - /JAPANESE SCHOOL LIFE.exe: + "/JAPANESE SCHOOL LIFE.exe": - when: - os: windows store: steam @@ -280165,22 +281007,22 @@ Japanese School Life: id: 555640 Japanese Women - Animated Jigsaws: files: - /AppData/LocalLow/jp_co_bottlecube/Japanese Women - Animated Jigsaws/Achievements.json: + "/AppData/LocalLow/jp_co_bottlecube/Japanese Women - Animated Jigsaws/Achievements.json": tags: - save when: - os: windows - /AppData/LocalLow/jp_co_bottlecube/Japanese Women - Animated Jigsaws/OpenStatus.json: + "/AppData/LocalLow/jp_co_bottlecube/Japanese Women - Animated Jigsaws/OpenStatus.json": tags: - save when: - os: windows - /AppData/LocalLow/jp_co_bottlecube/Japanese Women - Animated Jigsaws/PuzzleRecords.json: + "/AppData/LocalLow/jp_co_bottlecube/Japanese Women - Animated Jigsaws/PuzzleRecords.json": tags: - save when: - os: windows - /AppData/LocalLow/jp_co_bottlecube/Japanese Women - Animated Jigsaws/Settings.json: + "/AppData/LocalLow/jp_co_bottlecube/Japanese Women - Animated Jigsaws/Settings.json": tags: - config when: @@ -280188,11 +281030,11 @@ Japanese Women - Animated Jigsaws: installDir: Japanese Women - Animated Jigsaws: {} launch: - /Japanese_Women_Animated_Jigsaws.app: + "/Japanese_Women_Animated_Jigsaws.app": - when: - os: mac store: steam - /Japanese_Women_Animated_Jigsaws.exe: + "/Japanese_Women_Animated_Jigsaws.exe": - when: - os: windows store: steam @@ -280206,15 +281048,15 @@ Japocaliptyca/ Япокалиптика: installDir: Japocaliptyca: {} launch: - /Japacaliptyca.app: + "/Japacaliptyca.app": - when: - os: mac store: steam - /Japacaliptyca.exe: + "/Japacaliptyca.exe": - when: - os: windows store: steam - /Japacaliptyca.sh: + "/Japacaliptyca.sh": - when: - os: linux store: steam @@ -280224,7 +281066,7 @@ Jaques Roque: installDir: Jaques Roque: {} launch: - /Jaques Roque.exe: + "/Jaques Roque.exe": - when: - os: windows store: steam @@ -280234,7 +281076,7 @@ Jar Battlers: installDir: Jar Battlers: {} launch: - /JarBattlers.exe: + "/JarBattlers.exe": - when: - store: steam steam: @@ -280243,7 +281085,7 @@ Jar Sam: installDir: Jar Sam: {} launch: - /game.exe: + "/game.exe": - when: - bit: 64 os: windows @@ -280252,24 +281094,24 @@ Jar Sam: id: 921850 Jardinains!: files: - /DATA: + "/DATA": tags: - config when: - os: windows - /DATA/SAVE: + "/DATA/SAVE": tags: - save when: - os: windows Jardinains! 2: files: - /data: + "/data": tags: - config when: - os: windows - /data/players: + "/data/players": tags: - save when: @@ -280283,34 +281125,34 @@ Jars: installDir: JARS: {} launch: - /Jars.app/Contents/MacOS/Jars: + "/Jars.app/Contents/MacOS/Jars": - when: - os: mac store: steam - /Jars.exe: + "/Jars.exe": - when: - os: windows store: steam - /Jars.x86_64: + "/Jars.x86_64": - when: - os: linux store: steam steam: id: 1590750 -Jasper's Journeys: +"Jasper's Journeys": files: - /.lexaloffle/Jasper's Journeys: + "/.lexaloffle/Jasper's Journeys": tags: - config - save when: - os: linux - /Jasper's Journeys: + "/Jasper's Journeys": tags: - save when: - os: windows - /Jasper's Journeys/config.txt: + "/Jasper's Journeys/config.txt": tags: - config when: @@ -280319,7 +281161,7 @@ Javva Juice: installDir: Javva Juice: {} launch: - /JavvaJuice.exe: + "/JavvaJuice.exe": - when: - os: windows store: steam @@ -280327,14 +281169,14 @@ Javva Juice: id: 524940 Jawns: files: - /Jawns: + "/Jawns": tags: - config when: - os: windows Jaws Unleashed: files: - /pcrt.ini: + "/pcrt.ini": tags: - config when: @@ -280348,29 +281190,29 @@ Jaxon The Thief: installDir: Jaxon The Thief: {} launch: - /JaxonTheThief: + "/JaxonTheThief": - when: - os: linux store: steam - /JaxonTheThief.exe: + "/JaxonTheThief.exe": - when: - os: windows store: steam steam: id: 1113650 -'Jay Fighter: Remastered': +"Jay Fighter: Remastered": installDir: Jay Fighter Remastered: {} launch: - /JFR.app: + "/JFR.app": - when: - os: mac store: steam - /JFR.exe: + "/JFR.exe": - when: - os: windows store: steam - /JFR.x86_64: + "/JFR.x86_64": - when: - bit: 64 os: linux @@ -280381,18 +281223,18 @@ Jay Walker: installDir: Jay Walker: {} launch: - /jWalker.exe: + "/jWalker.exe": - when: - store: steam steam: id: 937320 -'Jay and Silent Bob: Mall Brawl': +"Jay and Silent Bob: Mall Brawl": gog: id: 2032359334 installDir: Jay and Silent Bob Mall Brawl: {} launch: - /Jay and Silent Bob Mall Brawl.exe: + "/Jay and Silent Bob Mall Brawl.exe": - when: - bit: 64 os: windows @@ -280403,15 +281245,15 @@ Jazz Age: installDir: Jazz Age: {} launch: - /Jazz Age.app/Contents/MacOS/Jazz Age: + "/Jazz Age.app/Contents/MacOS/Jazz Age": - when: - os: mac store: steam - /JazzAge: + "/JazzAge": - when: - os: linux store: steam - /JazzAge.exe: + "/JazzAge.exe": - when: - os: windows store: steam @@ -280419,17 +281261,17 @@ Jazz Age: id: 1183280 Jazz Jackrabbit: files: - /CONFIG.000: + "/CONFIG.000": tags: - config when: - os: dos - /SAVE.*: + "/SAVE.*": tags: - save when: - os: dos - /SOUNDCRD.INF: + "/SOUNDCRD.INF": tags: - config when: @@ -280438,23 +281280,23 @@ Jazz Jackrabbit: id: 1808582759 Jazz Jackrabbit 2: files: - /JAZZ2.CFG: + "/JAZZ2.CFG": tags: - config when: - os: windows - /SAVEGAME.***: + "/SAVEGAME.***": tags: - save when: - os: windows gog: id: 1917711239 -'Jazz Lightning : Castle Dungeons': +"Jazz Lightning : Castle Dungeons": installDir: Jazz Lightning: {} launch: - /Jazz Lightning Castle Dungeons.exe: + "/Jazz Lightning Castle Dungeons.exe": - when: - os: windows store: steam @@ -280462,27 +281304,27 @@ Jazz Jackrabbit 2: id: 1179570 Jazzpunk: files: - /.config/unity3d/Necrophone Games/Jazzpunk: + "/.config/unity3d/Necrophone Games/Jazzpunk": tags: - save when: - os: linux - /.config/unity3d/Necrophone Games/Jazzpunk/prefs: + "/.config/unity3d/Necrophone Games/Jazzpunk/prefs": tags: - config when: - os: linux - /AppData/LocalLow/Necrophone Games/Jazzpunk: + "/AppData/LocalLow/Necrophone Games/Jazzpunk": tags: - save when: - os: windows - /Library/Caches/unity.Necrophone Games.Jazzpunk: + "/Library/Caches/unity.Necrophone Games.Jazzpunk": tags: - save when: - os: mac - /Library/Preferences/unity.Necrophone Games.Jazzpunk.plist: + "/Library/Preferences/unity.Necrophone Games.Jazzpunk.plist": tags: - config when: @@ -280492,15 +281334,15 @@ Jazzpunk: installDir: Jazzpunk: {} launch: - /linux/Jazzpunk.x86: + "/linux/Jazzpunk.x86": - when: - os: linux store: steam - /mac/Jazzpunk.app: + "/mac/Jazzpunk.app": - when: - os: mac store: steam - /windows/Jazzpunk.exe: + "/windows/Jazzpunk.exe": - when: - os: windows store: steam @@ -280519,7 +281361,7 @@ Jected - Rivals: installDir: Stuntfest: {} launch: - /JectedRivals/JectedRivals.exe: + "/JectedRivals/JectedRivals.exe": - when: - bit: 64 os: windows @@ -280531,23 +281373,23 @@ Jeeboman: Jeeboman: {} steam: id: 392680 -Jeff Wayne's The War of the Worlds: +"Jeff Wayne's The War of the Worlds": files: - /SaveGame: + "/SaveGame": tags: - save when: - os: windows registry: - HKEY_LOCAL_MACHINE/SOFTWARE/Rage/Jeff Wayne's 'The War Of The Worlds'/1.00.000: + "HKEY_LOCAL_MACHINE/SOFTWARE/Rage/Jeff Wayne's 'The War Of The Worlds'/1.00.000": tags: - config Jeklynn Heights: installDir: Jeklynn Heights: {} launch: - /Binaries/Win32/UDK.exe: - - arguments: '-seekfreeloadingpc' + "/Binaries/Win32/UDK.exe": + - arguments: "-seekfreeloadingpc" when: - bit: 32 os: windows @@ -280558,7 +281400,7 @@ Jelly Blocks: installDir: Jelly Blocks: {} launch: - /JellyBlocks.exe: + "/JellyBlocks.exe": - when: - bit: 64 os: windows @@ -280569,7 +281411,7 @@ Jelly Bomber: installDir: Jelly Bomber: {} launch: - /Jelly Bomber.exe: + "/Jelly Bomber.exe": - when: - os: windows store: steam @@ -280579,7 +281421,7 @@ Jelly Escape: installDir: Jelly Escape: {} launch: - /jellyEscape.exe: + "/jellyEscape.exe": - when: - os: windows store: steam @@ -280589,15 +281431,15 @@ Jelly Killer: installDir: Jelly Killer: {} launch: - /Jelly Killer.app: + "/Jelly Killer.app": - when: - os: mac store: steam - /Jelly Killer.exe: + "/Jelly Killer.exe": - when: - os: windows store: steam - /run.sh: + "/run.sh": - when: - os: linux store: steam @@ -280607,11 +281449,11 @@ Jelly Wants More: installDir: Jelly Wants More: {} launch: - /Jelly Wants More.app/Contents/MacOS/Jelly Wants More: + "/Jelly Wants More.app/Contents/MacOS/Jelly Wants More": - when: - os: mac store: steam - /Jelly Wants More.exe: + "/Jelly Wants More.exe": - when: - os: windows store: steam @@ -280621,7 +281463,7 @@ Jelly Wrestle: installDir: Jelly Wrestle: {} launch: - /Jelly Wrestle.exe: + "/Jelly Wrestle.exe": - when: - os: windows store: steam @@ -280631,12 +281473,12 @@ Jelly in the sky: installDir: Jelly in the Sky: {} launch: - /JellyInTheSky.exe: + "/JellyInTheSky.exe": - when: - bit: 64 os: windows store: steam - /JellyInTheSky32.exe: + "/JellyInTheSky32.exe": - when: - bit: 32 os: windows @@ -280645,7 +281487,7 @@ Jelly in the sky: id: 593530 JellyCar Worlds: files: - /AppData/LocalLow/Walaber/Jellycar Worlds: + "/AppData/LocalLow/Walaber/Jellycar Worlds": tags: - config - save @@ -280654,12 +281496,12 @@ JellyCar Worlds: installDir: JellyCar Worlds: {} launch: - /linux/JellyCar Worlds.x86_64: + "/linux/JellyCar Worlds.x86_64": - when: - bit: 64 os: linux store: steam - /windows/JellyCar Worlds.exe: + "/windows/JellyCar Worlds.exe": - when: - bit: 64 os: windows @@ -280673,12 +281515,12 @@ Jellyfish: installDir: Jellyfish: {} launch: - /Jellyfish.app/Contents/MacOS/Jellyfish: + "/Jellyfish.app/Contents/MacOS/Jellyfish": - when: - os: mac store: steam - /Jellyfish.exe: - - arguments: '-windowed' + "/Jellyfish.exe": + - arguments: "-windowed" when: - os: windows store: steam @@ -280688,7 +281530,7 @@ Jellyfish Season: installDir: Jellyfish Season: {} launch: - /JellyfishSeason.exe: + "/JellyfishSeason.exe": - when: - os: windows store: steam @@ -280698,7 +281540,7 @@ Jellyfish the Ghost: installDir: JellyfishTheGhost: {} launch: - /JellyfishTheGhost/JellyfishTheGhost.exe: + "/JellyfishTheGhost/JellyfishTheGhost.exe": - when: - os: windows store: steam @@ -280712,27 +281554,27 @@ Jengo: id: 671430 Jenny LeClue - Detectivu: files: - /AppData/LocalLow/Mografi/Jenny LeClue/*.jlc: + "/AppData/LocalLow/Mografi/Jenny LeClue/*.jlc": tags: - save when: - os: windows - /Library/Application Support/Mografi/Jenny LeClue/*.jlc: + "/Library/Application Support/Mografi/Jenny LeClue/*.jlc": tags: - save when: - os: mac - /Library/Containers/Jenny LeClue/Data/Library/Application Support/com.mografi.jlcdmac: + "/Library/Containers/Jenny LeClue/Data/Library/Application Support/com.mografi.jlcdmac": tags: - save when: - os: mac - /unity3d/Mografi/Jenny LeClue/*.jlc: + "/unity3d/Mografi/Jenny LeClue/*.jlc": tags: - save when: - os: linux - /unity3d/Mografi/Jenny LeClue/prefs: + "/unity3d/Mografi/Jenny LeClue/prefs": tags: - config when: @@ -280742,21 +281584,21 @@ Jenny LeClue - Detectivu: installDir: Jenny LeClue - Detectivu: {} launch: - /Jenny LeClue - Detectivu.app: + "/Jenny LeClue - Detectivu.app": - when: - os: mac store: steam - /Jenny LeClue - Detectivu/Jenny LeClue - Detectivu.x86: + "/Jenny LeClue - Detectivu/Jenny LeClue - Detectivu.x86": - when: - bit: 32 os: linux store: steam - /Jenny LeClue - Detectivu/Jenny LeClue - Detectivu.x86_64: + "/Jenny LeClue - Detectivu/Jenny LeClue - Detectivu.x86_64": - when: - bit: 64 os: linux store: steam - /Jenny LeClue - Detectivu/Jenny LeClue.exe: + "/Jenny LeClue - Detectivu/Jenny LeClue.exe": - when: - os: windows store: steam @@ -280770,7 +281612,7 @@ Jera: installDir: Jera: {} launch: - /Jera.exe: + "/Jera.exe": - when: - store: steam steam: @@ -280779,28 +281621,28 @@ JermaSlots: installDir: JermaSlots: {} launch: - /JermaSlots.exe: + "/JermaSlots.exe": - when: - os: windows store: steam steam: id: 1032520 -Jerry Rice & Nitus' Dog Football: +"Jerry Rice & Nitus' Dog Football": installDir: Jerry Rice Nitus Dog Football: {} launch: - /bin/Dog Football.exe: + "/bin/Dog Football.exe": - when: - os: windows store: steam - workingDir: /bin + workingDir: "/bin" steam: id: 438660 Jerry and the Mystery Loot Box: installDir: Jerry and the mystery loot box: {} launch: - /Jerry and the mystery loot box.exe: + "/Jerry and the mystery loot box.exe": - when: - os: windows store: steam @@ -280808,12 +281650,12 @@ Jerry and the Mystery Loot Box: id: 782700 Jersey Devil: files: - /bin/SAVEGAME.DAT: + "/bin/SAVEGAME.DAT": tags: - save when: - os: windows - /bin/config.pc: + "/bin/config.pc": tags: - config when: @@ -280822,11 +281664,11 @@ Jesters Poker: installDir: Jesters Poker: {} launch: - /Jesters Poker.app/Contents/MacOS/content: + "/Jesters Poker.app/Contents/MacOS/content": - when: - os: mac store: steam - /Jesters Poker.exe: + "/Jesters Poker.exe": - when: - os: windows store: steam @@ -280836,7 +281678,7 @@ Jesus Christ RPG Trilogy: installDir: Jesus Christ RPG: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -280849,7 +281691,7 @@ Jet Ant: installDir: Jet Ant: {} launch: - /Jet Ant.exe: + "/Jet Ant.exe": - when: - os: windows store: steam @@ -280859,7 +281701,7 @@ Jet Buster: installDir: Jet Buster: {} launch: - /Jet_Buster.exe: + "/Jet_Buster.exe": - when: - store: steam steam: @@ -280868,7 +281710,7 @@ Jet Car Stunts: installDir: JetCarStunts: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -280878,7 +281720,7 @@ Jet Gunner: installDir: Jet Force: {} launch: - /jetgunner.exe: + "/jetgunner.exe": - when: - os: windows store: steam @@ -280888,11 +281730,11 @@ Jet Hero: installDir: JET HERO: {} launch: - /JetHero.exe: + "/JetHero.exe": - when: - os: windows store: steam - /JetHeroMac.app: + "/JetHeroMac.app": - when: - os: mac store: steam @@ -280905,7 +281747,7 @@ Jet Island: id: 587220 Jet Kave Adventure: files: - /AppData/LocalLow/7Levels/Jet Kave Adventure: + "/AppData/LocalLow/7Levels/Jet Kave Adventure": tags: - save when: @@ -280915,7 +281757,7 @@ Jet Kave Adventure: installDir: Jet Kave Adventure: {} launch: - /JetKaveAdventure.exe: + "/JetKaveAdventure.exe": - when: - os: windows store: steam @@ -280927,7 +281769,7 @@ Jet Lancer: installDir: JetLancer: {} launch: - /JetLancer.app/Contents/MacOS/JetLancer: + "/JetLancer.app/Contents/MacOS/JetLancer": - when: - os: mac store: steam @@ -280937,20 +281779,20 @@ Jet Racing Extreme: installDir: JReX: {} launch: - /jrex.app/Contents/MacOS/jrex: + "/jrex.app/Contents/MacOS/jrex": - when: - os: mac store: steam - /jrex.exe: + "/jrex.exe": - when: - os: windows store: steam - /jrex.x86: + "/jrex.x86": - when: - bit: 32 os: linux store: steam - /jrex.x86_64: + "/jrex.x86_64": - when: - bit: 64 os: linux @@ -280965,7 +281807,7 @@ Jet Set Knights: installDir: Jet Set Knights: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -280973,13 +281815,13 @@ Jet Set Knights: id: 405550 Jet Set Radio: files: - /userdata//205950/local: + "/userdata//205950/local": tags: - config when: - os: windows store: steam - /userdata//205950/remote: + "/userdata//205950/remote": tags: - save when: @@ -280988,7 +281830,7 @@ Jet Set Radio: installDir: Jet Set Radio: {} launch: - /jsrsetup.exe: + "/jsrsetup.exe": - when: - os: windows store: steam @@ -280998,7 +281840,7 @@ Jet-Story 2018: installDir: Jet-Story 2018: {} launch: - /JetStory.exe: + "/JetStory.exe": - when: - os: windows store: steam @@ -281008,7 +281850,7 @@ JetBall Arena: installDir: JetBall Arena: {} launch: - /jetBallArena.exe: + "/jetBallArena.exe": - when: - os: windows store: steam @@ -281016,9 +281858,9 @@ JetBall Arena: id: 1008890 JetFly: installDir: - The Dark Age I Zordon's Empire: {} + "The Dark Age I Zordon's Empire": {} launch: - /2ndFinal ND.exe: + "/2ndFinal ND.exe": - arguments: Launch Game when: - os: windows @@ -281029,7 +281871,7 @@ JetX: installDir: JetX: {} launch: - /JetX/Binaries/Win64/JetX.exe: + "/JetX/Binaries/Win64/JetX.exe": - when: - bit: 64 os: windows @@ -281040,7 +281882,7 @@ JetX Space Edition: installDir: JetX Space Edition: {} launch: - /JetX/Binaries/Win64/JetX.exe: + "/JetX/Binaries/Win64/JetX.exe": - when: - bit: 64 os: windows @@ -281051,15 +281893,15 @@ Jetball: installDir: Jetball: {} launch: - /Jetball.app: + "/Jetball.app": - when: - os: mac store: steam - /Jetball.exe: + "/Jetball.exe": - when: - os: windows store: steam - /Jetball.sh: + "/Jetball.sh": - when: - os: linux store: steam @@ -281069,16 +281911,16 @@ Jetboard Joust: installDir: JetboardJoust: {} launch: - /JetboardJoust: + "/JetboardJoust": - when: - bit: 64 os: linux store: steam - /JetboardJoust.Steam.MacOS.app: + "/JetboardJoust.Steam.MacOS.app": - when: - os: mac store: steam - /JetboardJoust.exe: + "/JetboardJoust.exe": - when: - os: windows store: steam @@ -281088,7 +281930,7 @@ Jetlad: installDir: Jetlad: {} launch: - /Jetlad.exe: + "/Jetlad.exe": - when: - os: windows store: steam @@ -281098,7 +281940,7 @@ JetmanGo: installDir: JetmanGo: {} launch: - /JetmanGo.exe: + "/JetmanGo.exe": - arguments: Sanctuary_Start?listen -FeatureLevelES31 when: - os: windows @@ -281107,12 +281949,12 @@ JetmanGo: id: 665120 Jetpack: files: - /JETPACK.CFG: + "/JETPACK.CFG": tags: - config when: - os: dos - /SAVEGAME.DAT: + "/SAVEGAME.DAT": tags: - save when: @@ -281121,7 +281963,7 @@ Jetpack Dog: installDir: Jetpack Dog: {} launch: - /Jetpack.exe: + "/Jetpack.exe": - when: - store: steam steam: @@ -281130,20 +281972,20 @@ Jetpack Porter: installDir: JETPACK PORTER: {} launch: - /JetpackPorter.exe: + "/JetpackPorter.exe": - when: - os: windows store: steam steam: id: 558020 -Jets'n'Guns: +"Jets'n'Guns": files: - /JnGGold/Game.ini: + "/JnGGold/Game.ini": tags: - config when: - os: windows - /JnGGold/saves: + "/JnGGold/saves": tags: - save when: @@ -281151,37 +281993,37 @@ Jets'n'Guns: installDir: JnG Gold: {} launch: - /Jets'n'Guns Gold.app: + "/Jets'n'Guns Gold.app": - when: - os: mac store: steam - /jng_gold: + "/jng_gold": - when: - os: linux store: steam - /jng_gold.exe: + "/jng_gold.exe": - when: - bit: 32 os: windows store: steam steam: id: 262260 -Jets'n'Guns 2: +"Jets'n'Guns 2": files: - /jng2: + "/jng2": tags: - save when: - os: windows - /jng2/game.ini: + "/jng2/game.ini": tags: - config when: - os: windows installDir: - Jets'n'Guns 2: {} + "Jets'n'Guns 2": {} launch: - /JnG2.exe: + "/JnG2.exe": - when: - os: windows store: steam @@ -281191,25 +282033,25 @@ Jetstream: installDir: Jetstream: {} launch: - /Jetstream.app: + "/Jetstream.app": - when: - os: mac store: steam - /Jetstream.exe: + "/Jetstream.exe": - when: - bit: 64 os: windows store: steam - /Jetstream.sh: + "/Jetstream.sh": - when: - bit: 64 os: linux store: steam steam: id: 738860 -'Jett: The Far Shore': +"Jett: The Far Shore": files: - /AppData/LocalLow/Superbrothers and Pine Scented/JETT_ The Far Shore: + "/AppData/LocalLow/Superbrothers and Pine Scented/JETT_ The Far Shore": tags: - config - save @@ -281218,15 +282060,15 @@ Jetstream: installDir: JETT The Far Shore: {} launch: - /JETT The Far Shore.exe: + "/JETT The Far Shore.exe": - when: - os: windows store: steam steam: id: 1761600 -'Jettomero: Hero of the Universe': +"Jettomero: Hero of the Universe": files: - /userdata//676480/remote: + "/userdata//676480/remote": tags: - save when: @@ -281237,20 +282079,20 @@ Jetstream: installDir: Jettomero: {} launch: - /Jettomero.app: + "/Jettomero.app": - when: - os: mac store: steam - /Jettomero.exe: + "/Jettomero.exe": - when: - os: windows store: steam - /Jettomero.x86: + "/Jettomero.x86": - when: - bit: 32 os: linux store: steam - /Jettomero.x86_64: + "/Jettomero.x86_64": - when: - bit: 64 os: linux @@ -281261,21 +282103,21 @@ Jewel Bits: installDir: Jewel bits: {} launch: - /jewelbits.app/Contents/MacOS/jewelbits: + "/jewelbits.app/Contents/MacOS/jewelbits": - when: - os: mac store: steam - /jewelbits.exe: + "/jewelbits.exe": - when: - os: windows store: steam steam: id: 414140 -Jewel Match Atlantis Solitaire - Collector's Edition: +"Jewel Match Atlantis Solitaire - Collector's Edition": installDir: - Jewel Match Atlantis Solitaire - Collector's Edition: {} + "Jewel Match Atlantis Solitaire - Collector's Edition": {} launch: - /JewelMatchSolitaireAtlantis.exe: + "/JewelMatchSolitaireAtlantis.exe": - when: - os: windows store: steam @@ -281283,7 +282125,7 @@ Jewel Match Atlantis Solitaire - Collector's Edition: id: 1126470 Jewel Match Solitaire: files: - /JewelMatchSolitaireWinterSteam: + "/JewelMatchSolitaireWinterSteam": tags: - save when: @@ -281291,7 +282133,7 @@ Jewel Match Solitaire: installDir: Jewel Match Solitaire: {} launch: - /JewelMatchSolitaire.exe: + "/JewelMatchSolitaire.exe": - when: - os: windows store: steam @@ -281299,19 +282141,19 @@ Jewel Match Solitaire: id: 886070 Jewel Match Solitaire 2: installDir: - Jewel Match Solitaire 2 Collector's Edition: {} + "Jewel Match Solitaire 2 Collector's Edition": {} launch: - /Jewel Match Solitaire 2.exe: + "/Jewel Match Solitaire 2.exe": - when: - os: windows store: steam steam: id: 1035770 -Jewel Match Solitaire L'Amour: +"Jewel Match Solitaire L'Amour": installDir: - Jewel Match Solitaire L'Amour: {} + "Jewel Match Solitaire L'Amour": {} launch: - /Jewel Match Solitaire LAmour.exe: + "/Jewel Match Solitaire LAmour.exe": - when: - os: windows store: steam @@ -281321,7 +282163,7 @@ Jewel Match Solitaire Winterscapes: installDir: Jewel Match Solitaire Winterscapes: {} launch: - /JewelMatchSolitaireWinterscapes.exe: + "/JewelMatchSolitaireWinterscapes.exe": - when: - os: windows store: steam @@ -281331,7 +282173,7 @@ Jewel Match Twilight Solitaire: installDir: Jewel Match Twilight Solitaire: {} launch: - /JewelMatchTwilightSolitaire.exe: + "/JewelMatchTwilightSolitaire.exe": - when: - os: windows store: steam @@ -281341,7 +282183,7 @@ Jewel Puzzle Click: installDir: Jewel Puzzle Click: {} launch: - /JewelPuzzleClick.exe: + "/JewelPuzzleClick.exe": - when: - os: windows store: steam @@ -281351,7 +282193,7 @@ Jewel Quest: installDir: Jewel Quest: {} launch: - /JewelQuest.exe: + "/JewelQuest.exe": - when: - store: steam steam: @@ -281360,7 +282202,7 @@ Jewel Quest II: installDir: Jewel Quest 2: {} launch: - /JewelQuest2.exe: + "/JewelQuest2.exe": - when: - store: steam steam: @@ -281369,29 +282211,29 @@ Jewel Quest III: installDir: Jewel Quest 3: {} launch: - /JewelQuest3.exe: + "/JewelQuest3.exe": - when: - store: steam steam: id: 37980 -'Jewel Quest Mysteries: Curse of the Emerald Tear': +"Jewel Quest Mysteries: Curse of the Emerald Tear": installDir: Jewel Quest Mysteries: {} launch: - /EmeraldTear.exe: + "/EmeraldTear.exe": - when: - store: steam steam: id: 37990 Jewel Quest Seven Seas: installDir: - Jewel Quest Seven Seas Collector's Edition: {} + "Jewel Quest Seven Seas Collector's Edition": {} launch: - /jewelquest_sevenseas.exe: + "/jewelquest_sevenseas.exe": - when: - os: windows store: steam - /jq7_steam.app: + "/jq7_steam.app": - when: - os: mac store: steam @@ -281401,7 +282243,7 @@ Jewel Tree: installDir: Jewel Tree: {} launch: - /JewelTree.exe: + "/JewelTree.exe": - when: - store: steam steam: @@ -281410,7 +282252,7 @@ Jewel Venture: installDir: Jewel Venture: {} launch: - /Jewel Venture.exe: + "/Jewel Venture.exe": - when: - store: steam steam: @@ -281419,7 +282261,7 @@ Jewel of WonderLand: installDir: Jewel of WonderLand: {} launch: - /Jewel of WonderLand.exe: + "/Jewel of WonderLand.exe": - when: - os: windows store: steam @@ -281429,25 +282271,25 @@ Jewels of the Mysterious Woodland: installDir: Jewels of the Mysterious Woodland: {} launch: - /Jewels of the Mysterious Woodland.exe: + "/Jewels of the Mysterious Woodland.exe": - when: - os: windows store: steam steam: id: 685370 -Jey's Empire: +"Jey's Empire": installDir: - J.Edgar Hoover's FBI: {} + "J.Edgar Hoover's FBI": {} launch: - /Jey's Empire.exe: + "/Jey's Empire.exe": - when: - os: windows store: steam - /JeysEmpire.app: + "/JeysEmpire.app": - when: - os: mac store: steam - /JeysEmpire.x86_64: + "/JeysEmpire.x86_64": - when: - os: linux store: steam @@ -281470,18 +282312,18 @@ Jidousha Shakai: installDir: Jidousha Shakai: {} launch: - /jshakai.exe: + "/jshakai.exe": - when: - bit: 64 os: windows store: steam steam: id: 611800 -'Jigoku Kisetsukan: Sense of the Seasons': +"Jigoku Kisetsukan: Sense of the Seasons": installDir: Jigoku Kisetsukan: {} launch: - /Jigoku_Kisetsukan.exe: + "/Jigoku_Kisetsukan.exe": - when: - os: windows store: steam @@ -281496,11 +282338,11 @@ Jigsaw Masterpieces: installDir: Jigsaw Masterpieces: {} launch: - /JigsawMasterpieces.app: + "/JigsawMasterpieces.app": - when: - os: mac store: steam - /JigsawMasterpieces.exe: + "/JigsawMasterpieces.exe": - when: - os: windows store: steam @@ -281510,7 +282352,7 @@ Jigsaw Novel - Futanari Nurse: installDir: Jigsaw Novel - Futanari Nurse: {} launch: - /Jigsaw Novel - Futanari Nurse.exe: + "/Jigsaw Novel - Futanari Nurse.exe": - when: - os: windows store: steam @@ -281520,7 +282362,7 @@ Jigsaw Puzzle - Futanari Roomate: installDir: Jigsaw Puzzle - Futanari Roomate: {} launch: - /Jigsaw Puzzle - Futanari Roomate.exe: + "/Jigsaw Puzzle - Futanari Roomate.exe": - when: - os: windows store: steam @@ -281530,7 +282372,7 @@ Jigsaw Puzzle - Pro Edition: installDir: Jigsaw Puzzle - Pro Edition: {} launch: - /Jigsaw Puzzle - Pro Edition.exe: + "/Jigsaw Puzzle - Pro Edition.exe": - when: - os: windows store: steam @@ -281557,15 +282399,15 @@ Jigsaw puzzle - Evolution: installDir: Jigsaw puzzle - Evolution: {} launch: - /Jigsaw Puzzle - Evolution.exe: + "/Jigsaw Puzzle - Evolution.exe": - when: - os: windows store: steam - /Jigsaw Puzzle - Evolution.x86_64: + "/Jigsaw Puzzle - Evolution.x86_64": - when: - os: linux store: steam - /MacPro.app: + "/MacPro.app": - when: - os: mac store: steam @@ -281575,7 +282417,7 @@ JigsawMania: installDir: JigsawMania: {} launch: - /JigsawMania.exe: + "/JigsawMania.exe": - when: - os: windows store: steam @@ -281584,10 +282426,10 @@ JigsawMania: Jill of the Jungle: gog: id: 1129701343 -'Jill of the Jungle: Jill Goes Underground': +"Jill of the Jungle: Jill Goes Underground": gog: id: 1129701343 -'Jill of the Jungle: Jill Saves the Prince': +"Jill of the Jungle: Jill Saves the Prince": gog: id: 1129701343 Jim Bourke Airshow Trainer: @@ -281597,43 +282439,43 @@ Jim Is Moving Out!: installDir: Jim is Moving Out!: {} launch: - /JIMO.exe: + "/JIMO.exe": - when: - bit: 64 os: windows store: steam steam: id: 643940 -'Jim Power: The Lost Dimension': +"Jim Power: The Lost Dimension": gog: id: 1480170019 installDir: Jim Power Lost Dimension: {} launch: - /DOSBox.app/Contents/MacOS/dosbox: - - arguments: '-conf JimPower.conf -noconsole -c' + "/DOSBox.app/Contents/MacOS/dosbox": + - arguments: "-conf JimPower.conf -noconsole -c" when: - os: mac store: steam - /DOSBox.exe: - - arguments: '-conf JimPower.conf -noconsole -c' + "/DOSBox.exe": + - arguments: "-conf JimPower.conf -noconsole -c" when: - os: windows store: steam - /dosbox: - - arguments: '-conf JimPower.conf -noconsole -c' + "/dosbox": + - arguments: "-conf JimPower.conf -noconsole -c" when: - os: linux store: steam - /nes_jim_power/jim power.exe: + "/nes_jim_power/jim power.exe": - when: - os: windows store: steam - /smd_jim_power/jim power.exe: + "/smd_jim_power/jim power.exe": - when: - os: windows store: steam - /snes_jim_power/jim power.exe: + "/snes_jim_power/jim power.exe": - when: - os: windows store: steam @@ -281642,16 +282484,16 @@ Jim Is Moving Out!: Jimmy Kamikaze: steam: id: 918370 -'Jimmy Neutron: Boy Genius': +"Jimmy Neutron: Boy Genius": files: - /JimmyGameX.tsk: + "/JimmyGameX.tsk": tags: - save when: - os: windows Jimmy and the Pulsating Mass: files: - /*.rvdata2: + "/*.rvdata2": tags: - save when: @@ -281659,11 +282501,11 @@ Jimmy and the Pulsating Mass: installDir: Jimmy and the Pulsating Mass: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam - /Jimmy and the Pulsating Mass.app: + "/Jimmy and the Pulsating Mass.app": - when: - os: mac store: steam @@ -281673,7 +282515,7 @@ Jin Lin Love Story: installDir: JIN LIN LOVE STORY P: {} launch: - /JLLS.exe: + "/JLLS.exe": - when: - os: windows store: steam @@ -281683,7 +282525,7 @@ Jinga Online: installDir: Jinga Online: {} launch: - /Jinga Online.exe: + "/Jinga Online.exe": - when: - store: steam steam: @@ -281692,7 +282534,7 @@ Jingle: installDir: Jingle: {} launch: - /Jingle.exe: + "/Jingle.exe": - when: - os: windows store: steam @@ -281705,17 +282547,17 @@ Jinxed: id: 1063850 Jisei: files: - /RenPy/jisei/*.save: + "/RenPy/jisei/*.save": tags: - save when: - os: windows - /renpy/jiseinew-1459530778/*.save: + "/renpy/jiseinew-1459530778/*.save": tags: - save when: - os: windows - /renpy/jiseinew-1459530778/persistent: + "/renpy/jiseinew-1459530778/persistent": tags: - config when: @@ -281723,37 +282565,37 @@ Jisei: installDir: Jisei: {} launch: - /jisei.app: + "/jisei.app": - when: - os: mac store: steam - /jisei.exe: + "/jisei.exe": - when: - os: windows store: steam - /jisei.sh: + "/jisei.sh": - when: - os: linux store: steam steam: id: 754460 -'JoJo''s Bizarre Adventure: All Star Battle R': +"JoJo's Bizarre Adventure: All Star Battle R": files: - /config.ini: + "/config.ini": tags: - config when: - os: windows - /userdata//1372110/remote: + "/userdata//1372110/remote": tags: - save when: - os: windows store: steam installDir: - JoJo's Bizarre Adventure All-Star Battle R: {} + "JoJo's Bizarre Adventure All-Star Battle R": {} launch: - /start_protected_game.exe: + "/start_protected_game.exe": - when: - store: steam steam: @@ -281762,7 +282604,7 @@ Joan Jade and the Gates of Xibalba: installDir: Joan Jade and the Gates of Xibalba: {} launch: - /JoanJade.exe: + "/JoanJade.exe": - when: - os: windows store: steam @@ -281771,18 +282613,18 @@ Joan Jade and the Gates of Xibalba: Joan of Arc:The Beginning: steam: id: 1212580 -Joana's Life: +"Joana's Life": installDir: - Joana's Life: {} + "Joana's Life": {} launch: - /JohanasLife.exe: + "/JohanasLife.exe": - when: - store: steam steam: id: 513740 Job Simulator: files: - /AppData/LocalLow/Owlchemy Labs/Job Simulator/User: + "/AppData/LocalLow/Owlchemy Labs/Job Simulator/User": tags: - save when: @@ -281799,15 +282641,15 @@ Job the Leprechaun: installDir: Job the Leprechaun: {} launch: - /Job the Leprechaun.exe: + "/Job the Leprechaun.exe": - when: - os: windows store: steam - /Job_the_Leprechaun_STEAM: + "/Job_the_Leprechaun_STEAM": - when: - os: linux store: steam - /Job_the_Leprechaun_STEAM.app: + "/Job_the_Leprechaun_STEAM.app": - when: - os: mac store: steam @@ -281817,7 +282659,7 @@ Jobous the Alien R: installDir: Jobous the alien R: {} launch: - /Jobous the alien R.exe: + "/Jobous the alien R.exe": - when: - os: windows store: steam @@ -281827,7 +282669,7 @@ Jockey Rush: installDir: Jockey Rush: {} launch: - /jr.exe: + "/jr.exe": - when: - os: windows store: steam @@ -281839,19 +282681,19 @@ Joe & Mac Returns: installDir: Retro Classix Joe and Mac Returns: {} launch: - /Retro Classix Joe and Mac Returns.exe: + "/Retro Classix Joe and Mac Returns.exe": - when: - os: windows store: steam steam: id: 1627150 -'Joe & Mac: Caveman Ninja (Retro Classix)': +"Joe & Mac: Caveman Ninja (Retro Classix)": gog: id: 1715681064 installDir: Retro Classix Joe & Mac - Caveman Ninja: {} launch: - /Retro Classix Joe and Mac.exe: + "/Retro Classix Joe and Mac.exe": - when: - os: windows store: steam @@ -281861,7 +282703,7 @@ Joe Blunt - Up In Smoke: installDir: Joe Blunt Up In Smoke: {} launch: - /Joe Blunt Up In Smoke.exe: + "/Joe Blunt Up In Smoke.exe": - when: - os: windows store: steam @@ -281869,7 +282711,7 @@ Joe Blunt - Up In Smoke: id: 1146000 Joe Danger: files: - /GameData/SaveGamesJD1/: + "/GameData/SaveGamesJD1/": tags: - save when: @@ -281877,38 +282719,38 @@ Joe Danger: installDir: Joe Danger: {} launch: - /BIN/JD1Launcher: + "/BIN/JD1Launcher": - when: - os: linux store: steam - workingDir: /BIN - /Joe Danger.app: + workingDir: "/BIN" + "/Joe Danger.app": - when: - os: mac store: steam - workingDir: /../../MacOS - /bin/JD1Launcher.exe: + workingDir: "/../../MacOS" + "/bin/JD1Launcher.exe": - when: - os: windows store: steam - workingDir: /bin + workingDir: "/bin" steam: id: 229890 -'Joe Danger 2: The Movie': +"Joe Danger 2: The Movie": files: - /GAMEDATA/SAVEGAMESJD2/: + "/GAMEDATA/SAVEGAMESJD2/": tags: - save when: - os: windows - os: linux - /GAMEDATA/SETTINGS.BIN: + "/GAMEDATA/SETTINGS.BIN": tags: - config when: - os: windows - os: linux - /userdata//242110/remote: + "/userdata//242110/remote": tags: - save when: @@ -281916,32 +282758,32 @@ Joe Danger: installDir: Joe Danger 2 The Movie: {} launch: - /BIN/JD2Launcher: + "/BIN/JD2Launcher": - when: - os: linux store: steam - workingDir: /BIN - /Joe Danger 2 The Movie.app: + workingDir: "/BIN" + "/Joe Danger 2 The Movie.app": - when: - os: mac store: steam - workingDir: /../../MacOS - /bin/JD2Launcher.exe: + workingDir: "/../../MacOS" + "/bin/JD2Launcher.exe": - when: - os: windows store: steam - workingDir: /bin + workingDir: "/bin" steam: id: 242110 -Joe Dever's Lone Wolf HD Remastered: +"Joe Dever's Lone Wolf HD Remastered": installDir: Joe Dever’s Lone Wolf: {} launch: - /lonewolf.app: + "/lonewolf.app": - when: - os: mac store: steam - /lonewolf.exe: + "/lonewolf.exe": - when: - os: windows store: steam @@ -281951,7 +282793,7 @@ Joe Jump Impossible Quest: installDir: Joe Jump: {} launch: - /Joe Jump.exe: + "/Joe Jump.exe": - when: - os: windows store: steam @@ -281959,7 +282801,7 @@ Joe Jump Impossible Quest: id: 1020430 Joe Wander and the Enigmatic Adventures: files: - /Joe Wander_Data/Save: + "/Joe Wander_Data/Save": tags: - save when: @@ -281967,51 +282809,51 @@ Joe Wander and the Enigmatic Adventures: installDir: Joe Wander: {} launch: - /Joe Wander.exe: + "/Joe Wander.exe": - when: - bit: 64 os: windows store: steam steam: id: 2063310 -Joe's Diner: +"Joe's Diner": installDir: - Joe's Diner: {} + "Joe's Diner": {} launch: - /JoesDiner.app: + "/JoesDiner.app": - when: - os: mac store: steam - /JoesDiner.exe: + "/JoesDiner.exe": - when: - os: windows store: steam - /JoesDiner.x86: + "/JoesDiner.x86": - when: - os: linux store: steam steam: id: 346040 -Joe's Wrath: +"Joe's Wrath": installDir: - Joe's Wrath: {} + "Joe's Wrath": {} launch: - /Joe's Wrath.exe: + "/Joe's Wrath.exe": - when: - os: windows store: steam - /JoesWrathMacOS.app: + "/JoesWrathMacOS.app": - when: - os: mac store: steam steam: id: 956280 -Joel Mayer's Purgatory: +"Joel Mayer's Purgatory": steam: id: 1137480 Joggernauts: files: - /AppData/LocalLow/Space Mace/Joggernauts: + "/AppData/LocalLow/Space Mace/Joggernauts": tags: - save when: @@ -282019,11 +282861,11 @@ Joggernauts: installDir: Joggernauts: {} launch: - /joggernauts.app: + "/joggernauts.app": - when: - os: mac store: steam - /joggernauts.exe: + "/joggernauts.exe": - when: - bit: 64 os: windows @@ -282034,48 +282876,48 @@ Joggernauts: - config steam: id: 747620 -'John Black: Memories': +"John Black: Memories": installDir: John Black Memories: {} launch: - /John Black Memories.exe: + "/John Black Memories.exe": - when: - os: windows store: steam steam: id: 915380 -'John Deere: American Builder Deluxe': +"John Deere: American Builder Deluxe": files: - /Data/Games/*.xml: + "/Data/Games/*.xml": tags: - save when: - os: windows - /Game.cfg: + "/Game.cfg": tags: - config when: - os: windows -'John Deere: American Farmer Deluxe': +"John Deere: American Farmer Deluxe": files: - /Data/Games/*.xml: + "/Data/Games/*.xml": tags: - save when: - os: windows - /JohnDeere.cfg: + "/JohnDeere.cfg": tags: - config when: - os: windows -'John Deere: Drive Green': +"John Deere: Drive Green": files: - /Drive Green/Profile01/Profile01.sav: + "/Drive Green/Profile01/Profile01.sav": tags: - save when: - os: windows - /Drive Green/config.cfg: + "/Drive Green/config.cfg": tags: - config when: @@ -282083,7 +282925,7 @@ Joggernauts: installDir: John Deere Drive Green: {} launch: - /DriveGreen1.exe: + "/DriveGreen1.exe": - when: - store: steam steam: @@ -282092,13 +282934,13 @@ John Dungeon: installDir: John Dungeon: {} launch: - /johndungeon.exe: + "/johndungeon.exe": - when: - os: windows store: steam steam: id: 766970 -'John Lazarus - Episode 1: Dead Man''s Origin': +"John Lazarus - Episode 1: Dead Man's Origin": installDir: John Lazarus - Episode 1: {} steam: @@ -282108,7 +282950,7 @@ John Mambo: id: 849280 John Wick Chronicles: files: - /wick/Saved: + "/wick/Saved": tags: - save when: @@ -282119,12 +282961,12 @@ John Wick Chronicles: id: 382360 John Wick Hex: files: - /AppData/LocalLow/Bithell Games/John Wick Hex: + "/AppData/LocalLow/Bithell Games/John Wick Hex": tags: - save when: - os: windows - /AppData/LocalLow/Bithell Games/John Wick Hex/settings.sav: + "/AppData/LocalLow/Bithell Games/John Wick Hex/settings.sav": tags: - config when: @@ -282132,12 +282974,12 @@ John Wick Hex: installDir: John Wick Hex: {} launch: - /John Wick Hex.exe: + "/John Wick Hex.exe": - when: - bit: 64 os: windows store: steam - /JohnWickHex.app/Contents/MacOS/JohnWickHex: + "/JohnWickHex.app/Contents/MacOS/JohnWickHex": - when: - os: mac store: steam @@ -282147,26 +282989,26 @@ John Wick Hex: - config steam: id: 1405790 -John's Wizard Dungeon: +"John's Wizard Dungeon": installDir: - John's Wizard Tower: {} + "John's Wizard Tower": {} steam: id: 1093750 -'John, The Zombie': +"John, The Zombie": installDir: - 'John, The Zombie': {} + "John, The Zombie": {} launch: - /john the zombie.exe: + "/john the zombie.exe": - when: - os: windows store: steam steam: id: 741500 -'John:Condemned': +"John:Condemned": installDir: JohnCondemned: {} launch: - /JohnCondemned.exe: + "/JohnCondemned.exe": - when: - bit: 64 os: windows @@ -282176,11 +283018,11 @@ John's Wizard Dungeon: Johnny Bung: steam: id: 854340 -'Johnny Graves: The Unchosen One': +"Johnny Graves: The Unchosen One": installDir: Johnny Graves—The Unchosen One: {} launch: - /Johnny Graves The Unchosen One.exe: + "/Johnny Graves The Unchosen One.exe": - when: - os: windows store: steam @@ -282190,24 +283032,24 @@ Johns.game: installDir: johnsgame: {} launch: - /johnsgame.exe: + "/johnsgame.exe": - when: - os: windows store: steam steam: id: 597240 -'Joint Operations: Typhoon Rising': +"Joint Operations: Typhoon Rising": installDir: Joint Operations Combined Arms: {} launch: - /runme.exe: + "/runme.exe": - when: - store: steam steam: id: 32770 Joint Task Force: files: - /Profiles/: + "/Profiles/": tags: - save when: @@ -282215,10 +283057,10 @@ Joint Task Force: installDir: Joint Task Force: {} launch: - /jtf.exe: + "/jtf.exe": - when: - store: steam - /workshop.exe: + "/workshop.exe": - when: - store: steam steam: @@ -282227,21 +283069,21 @@ Jolly Battle: installDir: Jolly Battle: {} launch: - /Jb.app: + "/Jb.app": - when: - os: mac store: steam - /Jb.x86: + "/Jb.x86": - when: - bit: 32 os: linux store: steam - /Jb.x86_64: + "/Jb.x86_64": - when: - bit: 64 os: linux store: steam - /jb.exe: + "/jb.exe": - when: - os: windows store: steam @@ -282252,7 +283094,7 @@ Jolly Riot: id: 882870 Jolly Rover: files: - /Brawsome/rover: + "/Brawsome/rover": tags: - config - save @@ -282261,11 +283103,11 @@ Jolly Rover: installDir: JollyRover: {} launch: - /JollyRover.app: + "/JollyRover.app": - when: - os: mac store: steam - /jolly_rover.exe: + "/jolly_rover.exe": - when: - os: windows store: steam @@ -282275,70 +283117,70 @@ Jomp the Jumper: installDir: Jomp The Jumper: {} launch: - /Jomp The Jumper.exe: + "/Jomp The Jumper.exe": - when: - os: windows store: steam - /Jomp The Jumper.x86_64: + "/Jomp The Jumper.x86_64": - when: - os: linux store: steam steam: id: 1113210 -Jon Shafer's At the Gates: +"Jon Shafer's At the Gates": files: - /Saved Games: + "/Saved Games": tags: - save when: - os: windows - /Settings: + "/Settings": tags: - config when: - os: windows - /Library/Application Support/AtTheGates/Saved Games: + "/Library/Application Support/AtTheGates/Saved Games": tags: - save when: - os: mac - /Library/Application Support/AtTheGates/Settings: + "/Library/Application Support/AtTheGates/Settings": tags: - config when: - os: mac - /AtTheGates/Saved Games: + "/AtTheGates/Saved Games": tags: - save when: - os: linux - /AtTheGates/Settings: + "/AtTheGates/Settings": tags: - config when: - os: linux installDir: - Jon Shafer's At the Gates: {} + "Jon Shafer's At the Gates": {} launch: - /At The Gates.exe: + "/At The Gates.exe": - when: - os: windows store: steam - /At the Gates.app/Contents/MacOS/AtTheGates: + "/At the Gates.app/Contents/MacOS/AtTheGates": - when: - os: mac store: steam - /AtTheGates: + "/AtTheGates": - when: - os: linux store: steam steam: id: 241000 -Jonah's Path: +"Jonah's Path": installDir: JonahsPath: {} launch: - /JonahsPath_VIVE.exe: + "/JonahsPath_VIVE.exe": - when: - bit: 64 os: windows @@ -282349,11 +283191,11 @@ Jones on Fire: installDir: Jones On Fire: {} launch: - /JonesOnFire.app: + "/JonesOnFire.app": - when: - os: mac store: steam - /JonesOnFire.exe: + "/JonesOnFire.exe": - when: - os: windows store: steam @@ -282368,7 +283210,7 @@ Jorji and Impossible Forest: installDir: Jorji and Impossible Forest: {} launch: - /jorji.exe: + "/jorji.exe": - when: - os: windows store: steam @@ -282378,11 +283220,11 @@ Jormungandr: installDir: Jormungandr: {} launch: - /Jormungandr.exe: + "/Jormungandr.exe": - when: - os: windows store: steam - /Jormungandr.x86_64: + "/Jormungandr.x86_64": - when: - os: linux store: steam @@ -282392,76 +283234,76 @@ Joshua and the Battle of Jericho: installDir: Spiritual Warfare & Wisdom Tree Collection: {} launch: - /DOSBox.app/Contents/MacOS/DOSBox: - - arguments: '-conf ../Conf/spirit.cfg -noconsole' + "/DOSBox.app/Contents/MacOS/DOSBox": + - arguments: "-conf ../Conf/spirit.cfg -noconsole" when: - os: mac store: steam - workingDir: /DOS - - arguments: '-conf ../Conf/bibleunix.cfg -noconsole' + workingDir: "/DOS" + - arguments: "-conf ../Conf/bibleunix.cfg -noconsole" when: - os: mac store: steam - workingDir: /DOS - - arguments: '-conf ../Conf/exodus.cfg -noconsole' + workingDir: "/DOS" + - arguments: "-conf ../Conf/exodus.cfg -noconsole" when: - os: mac store: steam - workingDir: /DOS - - arguments: '-conf ../Conf/joshua.cfg -noconsole' + workingDir: "/DOS" + - arguments: "-conf ../Conf/joshua.cfg -noconsole" when: - os: mac store: steam - workingDir: /DOS - /dosbox: - - arguments: '-conf ../Conf/spirit.cfg -noconsole' + workingDir: "/DOS" + "/dosbox": + - arguments: "-conf ../Conf/spirit.cfg -noconsole" when: - os: linux store: steam - workingDir: /DOS - - arguments: '-conf ../Conf/bibleunix.cfg -noconsole' + workingDir: "/DOS" + - arguments: "-conf ../Conf/bibleunix.cfg -noconsole" when: - os: linux store: steam - workingDir: /DOS - - arguments: '-conf ../Conf/exodus.cfg -noconsole' + workingDir: "/DOS" + - arguments: "-conf ../Conf/exodus.cfg -noconsole" when: - os: linux store: steam - workingDir: /DOS - - arguments: '-conf ../Conf/joshua.cfg -noconsole' + workingDir: "/DOS" + - arguments: "-conf ../Conf/joshua.cfg -noconsole" when: - os: linux store: steam - workingDir: /DOS - /dosbox.exe: - - arguments: '-conf ../Conf/spirit.cfg -noconsole' + workingDir: "/DOS" + "/dosbox.exe": + - arguments: "-conf ../Conf/spirit.cfg -noconsole" when: - os: windows store: steam - workingDir: /DOS - - arguments: '-conf ../Conf/bible.cfg -noconsole' + workingDir: "/DOS" + - arguments: "-conf ../Conf/bible.cfg -noconsole" when: - os: windows store: steam - workingDir: /DOS - - arguments: '-conf ../Conf/exodus.cfg -noconsole' + workingDir: "/DOS" + - arguments: "-conf ../Conf/exodus.cfg -noconsole" when: - os: windows store: steam - workingDir: /DOS - - arguments: '-conf ../Conf/joshua.cfg -noconsole' + workingDir: "/DOS" + - arguments: "-conf ../Conf/joshua.cfg -noconsole" when: - os: windows store: steam - workingDir: /DOS + workingDir: "/DOS" steam: id: 624550 -Josie's Tank: +"Josie's Tank": installDir: - Josie's Tank: {} + "Josie's Tank": {} launch: - /Josie's Tank.exe: + "/Josie's Tank.exe": - when: - os: windows store: steam @@ -282469,13 +283311,13 @@ Josie's Tank: id: 1149830 Jotun: files: - /.config/unity3d/Thunder Lotus Games/Jotun: + "/.config/unity3d/Thunder Lotus Games/Jotun": tags: - config - save when: - os: linux - /AppData/LocalLow/Thunder Lotus Games/Jotun: + "/AppData/LocalLow/Thunder Lotus Games/Jotun": tags: - save when: @@ -282488,19 +283330,19 @@ Jotun: installDir: Jotun: {} launch: - /Jotun.app: + "/Jotun.app": - when: - os: mac store: steam - /Jotun.exe: + "/Jotun.exe": - when: - os: windows store: steam - - arguments: '-force-d3d9' + - arguments: "-force-d3d9" when: - os: windows store: steam - /Jotun.x86: + "/Jotun.x86": - when: - os: linux store: steam @@ -282514,11 +283356,11 @@ Joumee the Hedgehog: installDir: Joumee: {} launch: - /Joumee.app/Contents/MacOS/Joumee: + "/Joumee.app/Contents/MacOS/Joumee": - when: - os: mac store: steam - /Joumee.exe: + "/Joumee.exe": - when: - os: windows store: steam @@ -282528,15 +283370,15 @@ Journal: installDir: Journal: {} launch: - /Journal: + "/Journal": - when: - os: linux store: steam - /journal.app: + "/journal.app": - when: - os: mac store: steam - /journal.exe: + "/journal.exe": - when: - os: windows store: steam @@ -282545,25 +283387,26 @@ Journal: Journalism class: steam: id: 915740 -'Journalism class: PART 2': +"Journalism class: PART 2": steam: id: 928250 Journey: files: - /Annapurna Interactive/Journey/Steam/Journey.cfg: + "/Annapurna Interactive/Journey/Steam/Journey.cfg": tags: - config when: - os: windows - /Annapurna Interactive/Journey/Steam/SAVE.BIN: + "/Annapurna Interactive/Journey/Steam/SAVE.BIN": tags: - save when: - - store: steam + - os: windows + store: steam installDir: Journey: {} launch: - /Journey.exe: + "/Journey.exe": - when: - os: windows store: steam @@ -282578,7 +283421,7 @@ Journey Through Memories: installDir: Journey Through Memories: {} launch: - /BuildVer1.exe: + "/BuildVer1.exe": - when: - os: windows store: steam @@ -282588,11 +283431,11 @@ Journey of Greed: installDir: Journey of Greed: {} launch: - /Journey of Greed.exe: + "/Journey of Greed.exe": - when: - os: windows store: steam - /JourneyOfGreed.app/Contents/MacOS/Journey of Greed: + "/JourneyOfGreed.app/Contents/MacOS/Journey of Greed": - when: - os: mac store: steam @@ -282602,11 +283445,11 @@ Journey of Haha: installDir: Journey of Haha: {} launch: - /Journey of Haha.exe: + "/Journey of Haha.exe": - when: - os: windows store: steam - /joh.app: + "/joh.app": - when: - os: mac store: steam @@ -282616,7 +283459,7 @@ Journey of Johann: installDir: Journey Of Johann: {} launch: - /Journey_of_Johann.exe: + "/Journey_of_Johann.exe": - when: - os: windows store: steam @@ -282626,29 +283469,29 @@ Journey of Life: installDir: Journey of Life: {} launch: - /JourneyOfLife.exe: + "/JourneyOfLife.exe": - when: - store: steam steam: id: 794490 Journey of a Roach: files: - /.config/unity3d/Koboldgames/Journey of a Roach: + "/.config/unity3d/Koboldgames/Journey of a Roach": tags: - config when: - os: linux - /Library/Application Support/Daedalic Entertainment/Journey of a Roach/Savegames: + "/Library/Application Support/Daedalic Entertainment/Journey of a Roach/Savegames": tags: - save when: - os: mac - /Daedalic Entertainment/Journey of a Roach/Savegames: + "/Daedalic Entertainment/Journey of a Roach/Savegames": tags: - save when: - os: windows - /Daedalic Entertainment/Journey of a Roach/Savegames: + "/Daedalic Entertainment/Journey of a Roach/Savegames": tags: - save when: @@ -282658,36 +283501,36 @@ Journey of a Roach: installDir: Journey of a Roach: {} launch: - /JoaR.app: + "/JoaR.app": - when: - os: mac store: steam - /JoaR.exe: + "/JoaR.exe": - when: - os: windows store: steam - /JoaR.x86: + "/JoaR.x86": - when: - os: linux store: steam - /JoaR.x86_64: + "/JoaR.x86_64": - when: - bit: 64 os: linux store: steam - /JoaR_config.app: + "/JoaR_config.app": - when: - os: mac store: steam - /JoaR_config.exe: + "/JoaR_config.exe": - when: - os: windows store: steam - /JoaR_config.x86: + "/JoaR_config.x86": - when: - os: linux store: steam - /JoaR_config.x86_64: + "/JoaR_config.x86_64": - when: - bit: 64 os: linux @@ -282702,7 +283545,7 @@ Journey of the Fox: installDir: JourneyoftheFox: {} launch: - /JourneyoftheFox: + "/JourneyoftheFox": - when: - os: windows store: steam @@ -282712,7 +283555,7 @@ Journey of the King: installDir: Journey of the King: {} launch: - /JotK.exe: + "/JotK.exe": - when: - os: windows store: steam @@ -282725,7 +283568,7 @@ Journey of the Sword: installDir: Journey of the Sword: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: @@ -282739,7 +283582,7 @@ Journey to Luonto: installDir: Journey to Luonto: {} launch: - /Journey to Luonto.exe: + "/Journey to Luonto.exe": - when: - store: steam steam: @@ -282748,7 +283591,7 @@ Journey to New Atlantis: installDir: Journey to New Atlantis: {} launch: - /Journey.exe: + "/Journey.exe": - when: - bit: 64 os: windows @@ -282759,15 +283602,15 @@ Journey to Valhalla: installDir: Journey To Valhalla: {} launch: - /JourneyToValhalla.app/Contents/MacOS/JourneyToValhalla: + "/JourneyToValhalla.app/Contents/MacOS/JourneyToValhalla": - when: - os: mac store: steam - /JourneyToValhalla.exe: + "/JourneyToValhalla.exe": - when: - os: windows store: steam - /JourneyToValhalla.x86: + "/JourneyToValhalla.x86": - when: - os: linux store: steam @@ -282775,17 +283618,17 @@ Journey to Valhalla: id: 851240 Journey to the Center of Hawkthorne: files: - /hawkthorne_release/controls-1.json: + "/hawkthorne_release/controls-1.json": tags: - config when: - os: windows - /hawkthorne_release/gamesaves-*.json: + "/hawkthorne_release/gamesaves-*.json": tags: - save when: - os: windows - /hawkthorne_release/options-2.json: + "/hawkthorne_release/options-2.json": tags: - config when: @@ -282796,7 +283639,7 @@ Journey to the Center of the Earth: installDir: Journey to the Center of the Earth: {} launch: - /JourneyToTheCenterOfTheEarth.exe: + "/JourneyToTheCenterOfTheEarth.exe": - when: - os: windows store: steam @@ -282806,15 +283649,15 @@ Journey to the Center of the Earth (2014): installDir: Journey To The Center Of The Earth: {} launch: - /journey to the center of the earth.app: + "/journey to the center of the earth.app": - when: - os: mac store: steam - /journey to the center of the earth.exe: + "/journey to the center of the earth.exe": - when: - os: windows store: steam - /journey to the center of the earth.x86: + "/journey to the center of the earth.x86": - when: - os: linux store: steam @@ -282822,12 +283665,12 @@ Journey to the Center of the Earth (2014): id: 382120 Journey to the Savage Planet: files: - /Towers/Saved/Config/WindowsNoEditor: + "/Towers/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /Towers/Saved/SaveGames/: + "/Towers/Saved/SaveGames/": tags: - save when: @@ -282837,22 +283680,22 @@ Journey to the Savage Planet: installDir: Journey to the Savage Planet: {} launch: - /Towers.exe: + "/Towers.exe": - when: - os: windows store: steam steam: id: 973810 -'Journey: Benjamin''s Adventures': +"Journey: Benjamin's Adventures": installDir: - Journey Benjamin's Adventures: {} + "Journey Benjamin's Adventures": {} steam: id: 584040 JoustMania: installDir: JoustMania: {} launch: - /piparty.exe: + "/piparty.exe": - when: - bit: 64 os: windows @@ -282863,15 +283706,15 @@ Joy Climb: installDir: JoyClimb: {} launch: - /Contents/MacOS/JoyClimbMacOS_X: + "/Contents/MacOS/JoyClimbMacOS_X": - when: - os: mac store: steam - /JoyClimb.exe: + "/JoyClimb.exe": - when: - os: windows store: steam - /JoyClimb.x86_64: + "/JoyClimb.x86_64": - when: - os: linux store: steam @@ -282881,21 +283724,21 @@ Joy Pony: installDir: Joy Pony: {} launch: - /JoyPony.app/Contents/MacOS/JoyPony: + "/JoyPony.app/Contents/MacOS/JoyPony": - when: - os: mac store: steam - /JoyPony.exe: + "/JoyPony.exe": - when: - os: windows store: steam steam: id: 685950 -'Joyfess: Martin''s Secret Recipe': +"Joyfess: Martin's Secret Recipe": installDir: Joyfess I: {} launch: - /Joyfess I.exe: + "/Joyfess I.exe": - when: - os: windows store: steam @@ -282905,7 +283748,7 @@ Joyo Kanji Quiz: installDir: Joyo Kanji Quiz: {} launch: - /kanji.exe: + "/kanji.exe": - when: - os: windows store: steam @@ -282918,7 +283761,7 @@ JuVentures: installDir: JuVentures: {} launch: - /JuVentures.exe: + "/JuVentures.exe": - when: - os: windows store: steam @@ -282928,7 +283771,7 @@ Juan v Juan: installDir: JuanvJuan: {} launch: - /JuanvJuan.exe: + "/JuanvJuan.exe": - when: - os: windows store: steam @@ -282938,7 +283781,7 @@ Juanito Arcade Mayhem: installDir: Juanito Arcade Mayhem: {} launch: - /Juanito Arcade Mayhem.exe: + "/Juanito Arcade Mayhem.exe": - when: - store: steam steam: @@ -282947,7 +283790,7 @@ Jubilee: installDir: Jubilee: {} launch: - /Jubilee.exe: + "/Jubilee.exe": - when: - store: steam steam: @@ -282961,7 +283804,7 @@ Judas: installDir: Judas: {} launch: - /Judas.exe: + "/Judas.exe": - when: - bit: 64 os: windows @@ -282973,12 +283816,12 @@ Judas (2023): id: 388860 Judge Dredd: files: - /DAT2/HISCORE.DAT: + "/DAT2/HISCORE.DAT": tags: - save when: - os: dos - /DAT2/SLOT*.DAT: + "/DAT2/SLOT*.DAT": tags: - save when: @@ -282986,47 +283829,45 @@ Judge Dredd: installDir: Judge Dredd: {} launch: - /dosbox_linux/launch_judgedredd_game.sh: + "/dosbox_linux/launch_judgedredd_game.sh": - when: - os: linux store: steam - /dosbox_windows/dosbox.exe: - - arguments: >- - -exit -noconsole -conf \"dosbox_dredd.conf\" ^ -c \"mount e '..\\Judge Dredd'\" ^ -c \"e:\" ^ -c \"imgmount d - dredd.cue -t cdrom\" ^ -c \"cd ACCLAIM\\DREDD\" ^ -c \"law.exe -noconsole\" ^ -c \"exit\" + "/dosbox_windows/dosbox.exe": + - arguments: "-exit -noconsole -conf \\\"dosbox_dredd.conf\\\" ^ -c \\\"mount e '..\\\\Judge Dredd'\\\" ^ -c \\\"e:\\\" ^ -c \\\"imgmount d dredd.cue -t cdrom\\\" ^ -c \\\"cd ACCLAIM\\\\DREDD\\\" ^ -c \\\"law.exe -noconsole\\\" ^ -c \\\"exit\\\"" when: - os: windows store: steam steam: id: 690250 -'Judge Dredd: Countdown Sector 106': +"Judge Dredd: Countdown Sector 106": installDir: Judge Dredd: {} launch: - /Judge Dredd Countdown Sec 106.app: + "/Judge Dredd Countdown Sec 106.app": - when: - bit: 64 os: mac store: steam - /Judge Dredd Countdown Sec 106.exe: + "/Judge Dredd Countdown Sec 106.exe": - when: - os: windows store: steam - /Judge Dredd Countdown Sec 106.x86: + "/Judge Dredd Countdown Sec 106.x86": - when: - bit: 32 os: linux store: steam - /Judge Dredd Countdown Sec 106.x86_64: + "/Judge Dredd Countdown Sec 106.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 352080 -'Judge Dredd: Dredd vs. Death': +"Judge Dredd: Dredd vs. Death": files: - /save/save.dsg: + "/save/save.dsg": tags: - config - save @@ -283037,16 +283878,16 @@ Judge Dredd: installDir: DreddVsDeath: {} launch: - /Dredd.exe: + "/Dredd.exe": - when: - store: steam steam: id: 3710 -'Judged: A Court Simulator': +"Judged: A Court Simulator": installDir: Judged A Court Simulator: {} launch: - /Judged.exe: + "/Judged.exe": - when: - os: windows store: steam @@ -283056,30 +283897,30 @@ Judgement: installDir: Judgement: {} launch: - /Judgement.exe: + "/Judgement.exe": - when: - os: windows store: steam steam: id: 383780 -'Judgement Silversword: Resurrection': +"Judgement Silversword: Resurrection": files: - /Qute/JudgementSilversword/JSS2.SAV: + "/Qute/JudgementSilversword/JSS2.SAV": tags: - save when: - os: windows - /Qute/JudgementSilversword/cardinal.sav: + "/Qute/JudgementSilversword/cardinal.sav": tags: - save when: - os: windows - /Qute/JudgementSilversword/display_setting.ini: + "/Qute/JudgementSilversword/display_setting.ini": tags: - config when: - os: windows - /Qute/JudgementSilversword/preference.dat: + "/Qute/JudgementSilversword/preference.dat": tags: - config when: @@ -283087,7 +283928,7 @@ Judgement: installDir: JUDGEMENT SILVERSWORD -Resurrection-: {} launch: - /JSSResurrection.exe: + "/JSSResurrection.exe": - when: - os: windows store: steam @@ -283095,12 +283936,12 @@ Judgement: id: 278510 Judgment: files: - /Sega/Judgment/Steam: + "/Sega/Judgment/Steam": tags: - config when: - os: windows - /Sega/Judgment/Steam/: + "/Sega/Judgment/Steam/": tags: - save when: @@ -283109,13 +283950,13 @@ Judgment: Judgment: {} steam: id: 2058180 -'Judgment: Apocalypse Survival Simulation': +"Judgment: Apocalypse Survival Simulation": gog: id: 1341338919 installDir: Judgment: {} launch: - /judgment.exe: + "/judgment.exe": - when: - os: windows store: steam @@ -283125,7 +283966,7 @@ Juggernauts: installDir: Juggernauts: {} launch: - /Juggernauts.exe: + "/Juggernauts.exe": - when: - bit: 64 os: windows @@ -283136,7 +283977,7 @@ Juggly: installDir: Juggly: {} launch: - /Juggly.exe: + "/Juggly.exe": - when: - bit: 64 os: windows @@ -283150,7 +283991,7 @@ Juice Girl: installDir: Juice Girl: {} launch: - /JuiceGirl.exe: + "/JuiceGirl.exe": - when: - bit: 64 os: windows @@ -283159,19 +284000,19 @@ Juice Girl: id: 775760 Juiced: files: - /THQ/Juiced/SAVE: + "/THQ/Juiced/SAVE": tags: - save when: - os: windows -'Juiced 2: Hot Import Nights': +"Juiced 2: Hot Import Nights": files: - /THQ/Juiced2/Save: + "/THQ/Juiced2/Save": tags: - save when: - os: windows - /My Games/Juiced2_HIN: + "/My Games/Juiced2_HIN": tags: - save when: @@ -283179,7 +284020,7 @@ Juiced: installDir: Juiced 2 Hot Import Nights: {} launch: - /j2launcher.exe: + "/j2launcher.exe": - when: - store: steam steam: @@ -283188,7 +284029,7 @@ Juicy Army: installDir: Juicy Army Demo: {} launch: - /Juicy Army Demo.exe: + "/Juicy Army Demo.exe": - when: - os: windows store: steam @@ -283201,11 +284042,11 @@ Juicy Realm: installDir: Juicy Realm: {} launch: - /JuicyRealm.app/Contents/MacOS/JuicyRealm: + "/JuicyRealm.app/Contents/MacOS/JuicyRealm": - when: - os: mac store: steam - /JuicyRealm.exe: + "/JuicyRealm.exe": - when: - bit: 64 os: windows @@ -283214,12 +284055,12 @@ Juicy Realm: id: 732370 Juju: files: - /My Games/JUJU/B1Game/Config: + "/My Games/JUJU/B1Game/Config": tags: - config when: - os: windows - /My Games/JUJU/B1Game/SaveData: + "/My Games/JUJU/B1Game/SaveData": tags: - save when: @@ -283227,25 +284068,25 @@ Juju: installDir: JUJU: {} launch: - /Binaries/Win32/PCLauncher.exe: + "/Binaries/Win32/PCLauncher.exe": - when: - os: windows store: steam - workingDir: /Binaries/Win32 + workingDir: "/Binaries/Win32" steam: id: 300840 -'Jujutsu Kaisen: Cursed Clash': +"Jujutsu Kaisen: Cursed Clash": steam: id: 1877020 Juke: installDir: Juke: {} launch: - /juke.app/Contents/MacOS/juke: + "/juke.app/Contents/MacOS/juke": - when: - os: mac store: steam - /juke.exe: + "/juke.exe": - when: - os: windows store: steam @@ -283258,25 +284099,25 @@ Juliantli: installDir: Juliantli: {} launch: - /JuliantliLinux.x86: + "/JuliantliLinux.x86": - when: - os: linux store: steam - /JuliantliOSX.app: + "/JuliantliOSX.app": - when: - os: mac store: steam - /JuliantliWindows.exe: + "/JuliantliWindows.exe": - when: - os: windows store: steam steam: id: 898260 -Julie's Sweets: +"Julie's Sweets": installDir: - Julie's Sweets: {} + "Julie's Sweets": {} launch: - /Julie.exe: + "/Julie.exe": - when: - os: windows store: steam @@ -283286,33 +284127,33 @@ July the Lost Child: installDir: July the Lost Child: {} launch: - /July the Lost Child.exe: + "/July the Lost Child.exe": - when: - os: windows store: steam steam: id: 932270 -'Jumanji: The VR Adventure': +"Jumanji: The VR Adventure": installDir: Jumanji The VR Adventure: {} steam: id: 780590 -'Jumanji: The Video Game': +"Jumanji: The Video Game": installDir: Jumanji: {} launch: - /Echo.exe: + "/Echo.exe": - when: - bit: 64 os: windows store: steam steam: id: 896950 -'Jumanji: Wild Adventures': +"Jumanji: Wild Adventures": installDir: Jumanji2: {} launch: - /Jumanji 2.exe: + "/Jumanji 2.exe": - when: - store: steam steam: @@ -283327,7 +284168,7 @@ Jump & Shoot: id: 994400 Jump Boxer: files: - /JumpBoxer/saves: + "/JumpBoxer/saves": tags: - save when: @@ -283335,7 +284176,7 @@ Jump Boxer: installDir: iaidoka_interlude: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -283345,7 +284186,7 @@ Jump Boy: installDir: JumpBoy: {} launch: - /JumpBoy.exe: + "/JumpBoy.exe": - when: - bit: 64 os: windows @@ -283356,20 +284197,20 @@ Jump Doper (Cozy Pitch): installDir: Jump Doper: {} launch: - /JumpDoper.app: + "/JumpDoper.app": - when: - os: mac store: steam - /JumpDoper.exe: + "/JumpDoper.exe": - when: - os: windows store: steam - /JumpDoper.x86: + "/JumpDoper.x86": - when: - bit: 32 os: linux store: steam - /JumpDoper.x86_64: + "/JumpDoper.x86_64": - when: - bit: 64 os: linux @@ -283378,13 +284219,13 @@ Jump Doper (Cozy Pitch): id: 1017750 Jump Force: files: - /userdata//816020/remote: + "/userdata//816020/remote": tags: - save when: - os: windows store: steam - /JUMP_FORCE/Saved/Config/WindowsNoEditor: + "/JUMP_FORCE/Saved/Config/WindowsNoEditor": tags: - config when: @@ -283392,7 +284233,7 @@ Jump Force: installDir: JUMP FORCE: {} launch: - /JUMP_FORCE.exe: + "/JUMP_FORCE.exe": - when: - bit: 64 os: windows @@ -283401,13 +284242,13 @@ Jump Force: id: 816020 Jump Gunners: files: - /AppData/LocalLow/NerdRage Studios/Jump Gunners: + "/AppData/LocalLow/NerdRage Studios/Jump Gunners": tags: - config - save when: - os: windows - /NerdRage Studios/Jump Gunners: + "/NerdRage Studios/Jump Gunners": tags: - config - save @@ -283416,15 +284257,15 @@ Jump Gunners: installDir: Jump Gunners: {} launch: - /JumpGunners.app: + "/JumpGunners.app": - when: - os: mac store: steam - /JumpGunners.exe: + "/JumpGunners.exe": - when: - os: windows store: steam - /JumpGunners.x86: + "/JumpGunners.x86": - when: - os: linux store: steam @@ -283434,11 +284275,11 @@ Jump Jumpz: installDir: JumpJumpz: {} launch: - /JumpJumpz.app: + "/JumpJumpz.app": - when: - os: mac store: steam - /JumpJumpz.exe: + "/JumpJumpz.exe": - when: - os: windows store: steam @@ -283450,7 +284291,7 @@ Jump King: installDir: Jump King: {} launch: - /JumpKing.exe: + "/JumpKing.exe": - when: - os: windows store: steam @@ -283463,7 +284304,7 @@ Jump Off The Bridge: installDir: Jump Off The Bridge: {} launch: - /Jump Off The Bridge.exe: + "/Jump Off The Bridge.exe": - when: - os: windows store: steam @@ -283473,7 +284314,7 @@ Jump Stars: installDir: Jump Stars: {} launch: - /JumpStars.exe: + "/JumpStars.exe": - when: - bit: 64 os: windows @@ -283487,11 +284328,11 @@ Jump Tanks: installDir: JumpTanks: {} launch: - /JumpTanks.app: + "/JumpTanks.app": - when: - os: mac store: steam - /JumpTanks.x86: + "/JumpTanks.x86": - when: - os: linux store: steam @@ -283501,7 +284342,7 @@ Jump to Die!!: installDir: Jump To Die: {} launch: - /JumpToDie.exe: + "/JumpToDie.exe": - when: - os: windows store: steam @@ -283514,7 +284355,7 @@ Jump with Friends: installDir: Jump with Friends: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -283525,15 +284366,15 @@ Jump! Jump! Jump!: Jump! Jump! Jump!: {} steam: id: 761100 -'Jump, Step, Step': +"Jump, Step, Step": installDir: - 'Jump, Step, Step': {} + "Jump, Step, Step": {} launch: - /Pro/Binaries/Win32/Pro-Win32-Shipping.exe: + "/Pro/Binaries/Win32/Pro-Win32-Shipping.exe": - when: - bit: 32 store: steam - /Pro/Binaries/Win64/Pro-Win64-Shipping.exe: + "/Pro/Binaries/Win64/Pro-Win64-Shipping.exe": - when: - bit: 64 store: steam @@ -283546,7 +284387,7 @@ JumpBall 2: installDir: JumpBall 2: {} launch: - /JumpBall 2(win32)/JumpBall 2.exe: + "/JumpBall 2(win32)/JumpBall 2.exe": - when: - os: windows store: steam @@ -283556,26 +284397,26 @@ JumpFist: installDir: JumpFist: {} launch: - /JumpFist.app: + "/JumpFist.app": - when: - os: mac store: steam - /JumpFist.exe: + "/JumpFist.exe": - when: - os: windows store: steam steam: id: 707470 -'JumpHead: Battle4Fun!': +"JumpHead: Battle4Fun!": installDir: JumpHead_Battle4Fun: {} launch: - /JumpHead_Battle4Fun_x86(32).exe: + "/JumpHead_Battle4Fun_x86(32).exe": - when: - bit: 32 os: windows store: steam - /JumpHead_Battle4Fun_x86(64).exe: + "/JumpHead_Battle4Fun_x86(64).exe": - when: - bit: 64 os: windows @@ -283584,7 +284425,7 @@ JumpFist: id: 402080 JumpJet Rex: files: - /AppData/LocalLow/TreeFortress Games/JumpJetRex/saves.dat: + "/AppData/LocalLow/TreeFortress Games/JumpJetRex/saves.dat": tags: - save when: @@ -283592,20 +284433,20 @@ JumpJet Rex: installDir: JumpJetRex: {} launch: - /JumpJetRex.app/Contents/MacOS/JumpJetRex: + "/JumpJetRex.app/Contents/MacOS/JumpJetRex": - when: - os: mac store: steam - /JumpJetRex.exe: + "/JumpJetRex.exe": - when: - os: windows store: steam - /JumpJetRex.x86: + "/JumpJetRex.x86": - when: - bit: 32 os: linux store: steam - /JumpJetRex.x86_64: + "/JumpJetRex.x86_64": - when: - bit: 64 os: linux @@ -283623,12 +284464,12 @@ JumpSky: installDir: JumpSky: {} launch: - /JumpSky.app: + "/JumpSky.app": - when: - os: mac store: steam - /JumpSky.exe: - - arguments: '-windowed' + "/JumpSky.exe": + - arguments: "-windowed" when: - os: windows store: steam @@ -283638,7 +284479,7 @@ JumpStream: installDir: JumpStream: {} launch: - /JumpStream.exe: + "/JumpStream.exe": - when: - store: steam steam: @@ -283649,17 +284490,20 @@ Jumpala: installDir: Jumpala: {} launch: - /Jumpala: + "/Jumpala": - when: - bit: 64 os: linux store: steam - /Jumpala.app/Contents/MacOS/nwjs: + "/Jumpala.app/Contents/MacOS/nwjs": - when: - os: mac store: steam - /Jumpala.exe: + "/Jumpala.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam @@ -283669,30 +284513,35 @@ Jumpdrive: installDir: JumpDrive: {} launch: - /jumpdrive.exe: + "/jumpdrive.exe": - when: - os: windows store: steam - /jumpdrive_launcher: + "/jumpdrive_launcher": - when: + - os: mac + store: steam - bit: 32 os: linux store: steam + - bit: 64 + os: linux + store: steam steam: id: 291250 Jumper Jape: installDir: Jumper Jape: {} launch: - /JumperJape.app/Contents/MacOS/JumperJape: + "/JumperJape.app/Contents/MacOS/JumperJape": - when: - os: mac store: steam - /JumperJape.exe: + "/JumperJape.exe": - when: - os: windows store: steam - /JumperJape.x86_64: + "/JumperJape.x86_64": - when: - os: linux store: steam @@ -283702,7 +284551,7 @@ Jumper Magic: installDir: Jumper Magic: {} launch: - /JumperMagic.exe: + "/JumperMagic.exe": - when: - bit: 64 os: windows @@ -283713,17 +284562,17 @@ Jumper Tree: installDir: Jumper Tree: {} launch: - /JT Remastered.exe: + "/JT Remastered.exe": - when: - os: windows store: steam steam: id: 983650 -'Jumper: Speedrun': +"Jumper: Speedrun": installDir: JUMPER SPEEDRUN: {} launch: - /JumperLauncher.exe: + "/JumperLauncher.exe": - when: - os: windows store: steam @@ -283733,35 +284582,35 @@ Jumphobia Classic: installDir: Jumphobia Classic: {} launch: - /Jumphobia Classic.app/Contents/MacOS/Jumphobia Classic: + "/Jumphobia Classic.app/Contents/MacOS/Jumphobia Classic": - when: - os: mac store: steam - /Jumphobia Classic.exe: + "/Jumphobia Classic.exe": - when: - os: windows store: steam steam: id: 703200 -'Jumphobia: Homeward Bound': +"Jumphobia: Homeward Bound": installDir: Jumphobia Homeward Bound: {} launch: - /Jumphobia Homeward Bound.app/Contents/MacOS/Jumphobia Homeward Bound: + "/Jumphobia Homeward Bound.app/Contents/MacOS/Jumphobia Homeward Bound": - when: - os: mac store: steam - /Jumphobia Homeward Bound.exe: + "/Jumphobia Homeward Bound.exe": - when: - os: windows store: steam steam: id: 1781380 -'Jumping Man: Forest': +"Jumping Man: Forest": installDir: Jumping Man: {} launch: - /Jumping Man.exe: + "/Jumping Man.exe": - when: - os: windows store: steam @@ -283771,7 +284620,7 @@ Jumping Over It With Kang KiYun: installDir: Jumping Over It With Kang KiYun: {} launch: - /Jumping Over It With Kang KiYun.exe: + "/Jumping Over It With Kang KiYun.exe": - when: - os: windows store: steam @@ -283787,15 +284636,15 @@ Jumpix Jump: installDir: Jumpix Jump: {} launch: - /JumpixJump.app/Contents/MacOS/JumpixJump: + "/JumpixJump.app/Contents/MacOS/JumpixJump": - when: - os: mac store: steam - /JumpixJump.exe: + "/JumpixJump.exe": - when: - os: windows store: steam - /JumpixJump.x86: + "/JumpixJump.x86": - when: - os: linux store: steam @@ -283805,7 +284654,7 @@ Jumplord: installDir: Jumplord: {} launch: - /Jumplord.exe: + "/Jumplord.exe": - when: - os: windows store: steam @@ -283818,7 +284667,7 @@ Jumpman: id: 1462970 Jumpman Lives!: files: - /JMLIVES!.HIS: + "/JMLIVES!.HIS": tags: - save when: @@ -283830,7 +284679,7 @@ JumpoPitec: installDir: Jumpopitec: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -283840,7 +284689,7 @@ Jumponaut: installDir: Jumponaut: {} launch: - /Jumponaut.exe: + "/Jumponaut.exe": - when: - os: windows store: steam @@ -283850,15 +284699,15 @@ Jumps: installDir: Jumps: {} launch: - /Jumps.app/Contents/MacOS/Jumps: + "/Jumps.app/Contents/MacOS/Jumps": - when: - os: mac store: steam - /Jumps.exe: + "/Jumps.exe": - when: - os: windows store: steam - /Jumps.x86_64: + "/Jumps.x86_64": - when: - os: linux store: steam @@ -283886,7 +284735,7 @@ Jungle Guardians: installDir: Jungle Guardians: {} launch: - /Jungle Guardians.exe: + "/Jungle Guardians.exe": - when: - bit: 64 os: windows @@ -283903,7 +284752,7 @@ Jungle Juggle: installDir: Jungle Juggle: {} launch: - /Jungle_Juggle.exe: + "/Jungle_Juggle.exe": - when: - os: windows store: steam @@ -283913,7 +284762,7 @@ Jungle Z: installDir: Jungle Z: {} launch: - /JungleZ.exe: + "/JungleZ.exe": - when: - os: windows store: steam @@ -283923,7 +284772,7 @@ JungleShoot: installDir: JungleShoot: {} launch: - /1jungleshoot.exe: + "/1jungleshoot.exe": - when: - store: steam steam: @@ -283932,7 +284781,7 @@ Junglex: installDir: Junglex: {} launch: - /Junglex.exe: + "/Junglex.exe": - when: - store: steam steam: @@ -283941,38 +284790,38 @@ Juniper Theory: installDir: Juniper Theory: {} launch: - /junipertheory.exe: - - arguments: '-screen-fullscreen 1' + "/junipertheory.exe": + - arguments: "-screen-fullscreen 1" when: - bit: 64 os: windows store: steam steam: id: 564140 -Juniper's Knot: +"Juniper's Knot": files: - /renpy/config.py: + "/renpy/config.py": tags: - config when: - os: windows - /renpy/dischan_JunipersKnot: + "/renpy/dischan_JunipersKnot": tags: - save when: - os: windows installDir: - Juniper's Knot: {} + "Juniper's Knot": {} launch: - /Junipers Knot.app/Contents/MacOS/Junipers Knot: + "/Junipers Knot.app/Contents/MacOS/Junipers Knot": - when: - os: mac store: steam - /Junipers Knot.exe: + "/Junipers Knot.exe": - when: - os: windows store: steam - /Junipers Knot.sh: + "/Junipers Knot.sh": - when: - os: linux store: steam @@ -283985,21 +284834,21 @@ Junk Jack: installDir: Junk Jack: {} launch: - /Junk Jack.app/Contents/MacOS/Junk Jack: + "/Junk Jack.app/Contents/MacOS/Junk Jack": - when: - os: mac store: steam - /bin/junkjack: + "/bin/junkjack": - when: - bit: 64 os: linux store: steam - /bin/x64/junkjack.exe: + "/bin/x64/junkjack.exe": - when: - bit: 64 os: windows store: steam - /bin/x86/junkjack.exe: + "/bin/x86/junkjack.exe": - when: - bit: 32 os: windows @@ -284010,12 +284859,12 @@ Junk on Wheels: installDir: Junk on Wheels: {} launch: - /JoW: + "/JoW": - when: - bit: 64 os: linux store: steam - /JoW.app/Contents/MacOS/JoW: + "/JoW.app/Contents/MacOS/JoW": - when: - os: mac store: steam @@ -284025,7 +284874,7 @@ JunkerBot: installDir: JunkerBot: {} launch: - /JunkerBot.exe: + "/JunkerBot.exe": - when: - os: windows store: steam @@ -284035,7 +284884,7 @@ Junkyard Simulator: installDir: Junkyard Simulator: {} launch: - /JunkYard.exe: + "/JunkYard.exe": - when: - os: windows store: steam @@ -284046,29 +284895,29 @@ Junkyard Wizard: Junkyard Wizard: {} steam: id: 931940 -Juno's Darkest Hour: +"Juno's Darkest Hour": installDir: - Juno's Darkest Hour: {} + "Juno's Darkest Hour": {} launch: - /Juno.exe: + "/Juno.exe": - when: - os: windows store: steam steam: id: 516120 -'Juno: New Origins': +"Juno: New Origins": files: - /AppData/LocalLow/Jundroo/SimpleRockets 2: + "/AppData/LocalLow/Jundroo/SimpleRockets 2": tags: - save when: - os: windows - /AppData/LocalLow/Jundroo/SimpleRockets 2/ControlInputData.xml: + "/AppData/LocalLow/Jundroo/SimpleRockets 2/ControlInputData.xml": tags: - config when: - os: windows - /AppData/LocalLow/Jundroo/SimpleRockets 2/Settings.xml: + "/AppData/LocalLow/Jundroo/SimpleRockets 2/Settings.xml": tags: - config when: @@ -284076,11 +284925,11 @@ Juno's Darkest Hour: installDir: SimpleRockets2: {} launch: - /SimpleRockets2.app/Contents/MacOS/SimpleRockets 2: + "/SimpleRockets2.app/Contents/MacOS/SimpleRockets 2": - when: - os: mac store: steam - /SimpleRockets2.exe: + "/SimpleRockets2.exe": - when: - bit: 64 os: windows @@ -284093,18 +284942,18 @@ Juno's Darkest Hour: id: 870200 Jupiter Hell: files: - /configuration.lua: + "/configuration.lua": tags: - config when: - os: windows - os: linux - /save: + "/save": tags: - save when: - os: linux - /save*: + "/save*": tags: - save when: @@ -284114,7 +284963,7 @@ Jupiter Hell: installDir: Jupiter Hell: {} launch: - /JupiterHell.app/Contents/MacOS/jhapp: + "/JupiterHell.app/Contents/MacOS/jhapp": - when: - os: mac store: steam @@ -284129,54 +284978,54 @@ Jurassic City Walk: installDir: Jurassic City Walk: {} launch: - /Jurassic City Walk.app/Contents/MacOS/Jurassic City Walk: + "/Jurassic City Walk.app/Contents/MacOS/Jurassic City Walk": - when: - os: mac store: steam - /Jurassic City Walk.exe: + "/Jurassic City Walk.exe": - when: - os: windows store: steam steam: id: 831520 -'Jurassic Island: The Dinosaur Zoo': +"Jurassic Island: The Dinosaur Zoo": installDir: Jurassic Island The Dinosaur Zoo: {} launch: - /Jurassic Island The Dinosaur Zoo.app: + "/Jurassic Island The Dinosaur Zoo.app": - when: - os: mac store: steam - /Jurassic_Island_Steam_2_0.exe: + "/Jurassic_Island_Steam_2_0.exe": - when: - os: windows store: steam steam: id: 378420 -'Jurassic Park: The Game': +"Jurassic Park: The Game": files: - /Library/Application Support/Telltale Games: + "/Library/Application Support/Telltale Games": tags: - config when: - os: mac - /Library/Application Support/Telltale Games/JurassicPark100: + "/Library/Application Support/Telltale Games/JurassicPark100": tags: - save when: - os: mac - /Telltale Games/Jurassic Park The Game: + "/Telltale Games/Jurassic Park The Game": tags: - config - save when: - os: windows - /telltale games/JurassicPark: + "/telltale games/JurassicPark": tags: - config when: - os: windows - /telltale games/JurassicPark/prefs.prop: + "/telltale games/JurassicPark/prefs.prop": tags: - save when: @@ -284184,17 +285033,17 @@ Jurassic City Walk: installDir: JurassicPark: {} launch: - /JurassicPark100.app: + "/JurassicPark100.app": - when: - os: mac store: steam - /JurassicPark100.exe: + "/JurassicPark100.exe": - when: - os: windows store: steam steam: id: 201830 -'Jurassic Park: Trespasser': +"Jurassic Park: Trespasser": registry: HKEY_CURRENT_USER/Software/DreamWorks Interactive/Trespasser: tags: @@ -284203,11 +285052,11 @@ Jurassic Safari Hunt: installDir: Dinosaur Safari: {} launch: - /Jurassic Safari Hunt.app/Contents/MacOS/Jurassic Safari Hunt: + "/Jurassic Safari Hunt.app/Contents/MacOS/Jurassic Safari Hunt": - when: - os: mac store: steam - /Jurassic Safari Hunt.exe: + "/Jurassic Safari Hunt.exe": - when: - os: windows store: steam @@ -284217,19 +285066,19 @@ Jurassic Survival: installDir: Jurassic Survival: {} launch: - /Jurassic Survival.exe: + "/Jurassic Survival.exe": - when: - store: steam steam: id: 498280 Jurassic World Evolution: files: - /Saved Games/Frontier Developments/Jurassic World Evolution: + "/Saved Games/Frontier Developments/Jurassic World Evolution": tags: - save when: - os: windows - /Frontier Developments/Jurassic World Evolution/Config_Local: + "/Frontier Developments/Jurassic World Evolution/Config_Local": tags: - config when: @@ -284237,7 +285086,7 @@ Jurassic World Evolution: installDir: Jurassic World Evolution: {} launch: - /JWE.exe: + "/JWE.exe": - when: - bit: 64 os: windows @@ -284246,12 +285095,12 @@ Jurassic World Evolution: id: 648350 Jurassic World Evolution 2: files: - /Saved Games/Frontier Developments/Jurassic World Evolution 2: + "/Saved Games/Frontier Developments/Jurassic World Evolution 2": tags: - save when: - os: windows - /Frontier Developments/Jurassic World Evolution 2/Config_Local: + "/Frontier Developments/Jurassic World Evolution 2/Config_Local": tags: - config when: @@ -284266,7 +285115,7 @@ Jurassic World Evolution 2: installDir: Jurassic World Evolution 2: {} launch: - /JWE2.exe: + "/JWE2.exe": - when: - bit: 64 os: windows @@ -284277,16 +285126,19 @@ Juro Janosik: installDir: Juro Janosik: {} launch: - /Juro Janosik Linux.x86_64: + "/Juro Janosik Linux.x86_64": - when: - os: linux store: steam - /Juro Janosik.exe: + "/Juro Janosik.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam - /Juro Mac Build.app/Contents/MacOS/Juro Mac Build: + "/Juro Mac Build.app/Contents/MacOS/Juro Mac Build": - when: - os: mac store: steam @@ -284294,12 +285146,12 @@ Juro Janosik: id: 978630 Jusant: files: - /ASC/Saved/Config/Windows: + "/ASC/Saved/Config/Windows": tags: - config when: - os: windows - /ASC/Saved/SaveGames/FullGame: + "/ASC/Saved/SaveGames/FullGame": tags: - save when: @@ -284310,7 +285162,7 @@ Just A Dream: installDir: Just A Dream: {} launch: - /Just A Dream.exe: + "/Just A Dream.exe": - when: - os: windows store: steam @@ -284320,7 +285172,7 @@ Just Alone: installDir: Just Alone: {} launch: - /Launcher.exe: + "/Launcher.exe": - when: - os: windows store: steam @@ -284330,11 +285182,11 @@ Just Another Memory: installDir: Just Another Memory: {} launch: - /Just Another Memory MAC.app: + "/Just Another Memory MAC.app": - when: - os: mac store: steam - /Just Another Memory.exe: + "/Just Another Memory.exe": - when: - os: windows store: steam @@ -284345,11 +285197,11 @@ Just Bat: JUST BAT (VR CRICKET): {} steam: id: 525950 -'Just Beat Em Up : World of Fury': +"Just Beat Em Up : World of Fury": installDir: Just Beat Em Up World of Fury: {} launch: - /JBEU.exe: + "/JBEU.exe": - when: - os: windows store: steam @@ -284362,20 +285214,20 @@ Just Bones: installDir: Just Bones: {} launch: - /justbones.app: + "/justbones.app": - when: - os: mac store: steam - /justbones.exe: + "/justbones.exe": - when: - os: windows store: steam - /justbones.x86: + "/justbones.x86": - when: - bit: 32 os: linux store: steam - /justbones.x86_64: + "/justbones.x86_64": - when: - bit: 64 os: linux @@ -284384,7 +285236,7 @@ Just Bones: id: 470030 Just Cause: files: - /JustCause/Saves/JCSaves: + "/JustCause/Saves/JCSaves": tags: - save when: @@ -284394,22 +285246,22 @@ Just Cause: installDir: Just Cause: {} launch: - /JCSetup.exe: + "/JCSetup.exe": - when: - store: steam - /JustCause.exe: + "/JustCause.exe": - when: - store: steam steam: id: 6880 Just Cause 2: files: - /userdata//8190: + "/userdata//8190": tags: - save when: - store: steam - /Square Enix/Just Cause 2/Saves/JC2Settings: + "/Square Enix/Just Cause 2/Saves/JC2Settings": tags: - config when: @@ -284422,19 +285274,19 @@ Just Cause 2: installDir: Just Cause 2: {} launch: - /JustCause2.exe: + "/JustCause2.exe": - when: - store: steam steam: id: 8190 Just Cause 3: files: - /Square Enix/Just Cause 3/Saves/0: + "/Square Enix/Just Cause 3/Saves/0": tags: - config when: - os: windows - /Square Enix/Just Cause 3/Saves/: + "/Square Enix/Just Cause 3/Saves/": tags: - save when: @@ -284445,7 +285297,7 @@ Just Cause 3: installDir: Just Cause 3: {} launch: - /JustCause3.exe: + "/JustCause3.exe": - when: - os: windows store: steam @@ -284453,24 +285305,24 @@ Just Cause 3: id: 225540 Just Cause 4: files: - /userdata//517630/remote: + "/userdata//517630/remote": tags: - save when: - os: windows store: steam - /userdata//517630/remote/local_settings.json: + "/userdata//517630/remote/local_settings.json": tags: - config when: - os: windows store: steam - /Epic Games/Square Enix/Just Cause 4: + "/Epic Games/Square Enix/Just Cause 4": tags: - save when: - os: windows - /Square Enix/Just Cause 4/LocalData/startup_settings.json: + "/Square Enix/Just Cause 4/LocalData/startup_settings.json": tags: - config when: @@ -284478,7 +285330,7 @@ Just Cause 4: installDir: Just Cause 4: {} launch: - /JustCause4.exe: + "/JustCause4.exe": - when: - os: windows store: steam @@ -284488,7 +285340,7 @@ Just Chatting: installDir: Just Chatting: {} launch: - /JustChatting.exe: + "/JustChatting.exe": - when: - os: windows store: steam @@ -284498,8 +285350,8 @@ Just Dance 2017: installDir: Just Dance 2017: {} launch: - /JD2017.exe: - - arguments: '-uplay_steam_mode' + "/JD2017.exe": + - arguments: "-uplay_steam_mode" when: - os: windows store: steam @@ -284509,7 +285361,7 @@ Just Death: installDir: JustDeath: {} launch: - /JustDeath.exe: + "/JustDeath.exe": - when: - os: windows store: steam @@ -284517,12 +285369,12 @@ Just Death: id: 336210 Just Deserts: files: - /renpy/JustDeserts/*.save: + "/renpy/JustDeserts/*.save": tags: - save when: - os: windows - /renpy/JustDeserts/persistent: + "/renpy/JustDeserts/persistent": tags: - config when: @@ -284532,21 +285384,21 @@ Just Deserts: installDir: Just Deserts: {} launch: - /JustDeserts-32.exe: + "/JustDeserts-32.exe": - when: - bit: 32 os: windows store: steam - /JustDeserts.app/Contents/MacOS/JustDeserts: + "/JustDeserts.app/Contents/MacOS/JustDeserts": - when: - os: mac store: steam - /JustDeserts.exe: + "/JustDeserts.exe": - when: - bit: 64 os: windows store: steam - /JustDeserts.sh: + "/JustDeserts.sh": - when: - os: linux store: steam @@ -284554,12 +285406,12 @@ Just Deserts: id: 488660 Just Die Already: files: - /JDGame/Saved/Config/WindowsNoEditor: + "/JDGame/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /JDGame/Saved/SaveGames: + "/JDGame/Saved/SaveGames": tags: - save when: @@ -284567,7 +285419,7 @@ Just Die Already: installDir: Just Die Already: {} launch: - /JDGame.exe: + "/JDGame.exe": - when: - bit: 64 os: windows @@ -284578,7 +285430,7 @@ Just Die Neon: installDir: Jack and the cat: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -284588,7 +285440,7 @@ Just Drift It !: installDir: Just Drift It: {} launch: - /Just Drift It.exe: + "/Just Drift It.exe": - when: - os: windows store: steam @@ -284598,11 +285450,11 @@ Just Fishing: installDir: Just Fishing: {} launch: - /Game.app/Contents/MacOS/JustFishing: + "/Game.app/Contents/MacOS/JustFishing": - when: - os: mac store: steam - /JustFishing.exe: + "/JustFishing.exe": - when: - os: windows store: steam @@ -284612,7 +285464,7 @@ Just Flip - a physics game by Jeff Weber: installDir: That Flipping Mountain: {} launch: - /That Flipping Mountain.exe: + "/That Flipping Mountain.exe": - when: - os: windows store: steam @@ -284622,7 +285474,7 @@ Just Get Through: installDir: Just Get Through: {} launch: - /JustGetThrough.exe: + "/JustGetThrough.exe": - when: - os: windows store: steam @@ -284632,7 +285484,7 @@ Just Hero: installDir: Just Hero: {} launch: - /JustHero.exe: + "/JustHero.exe": - when: - os: windows store: steam @@ -284642,7 +285494,7 @@ Just Ignore Them: installDir: Just Ignore Them: {} launch: - /winsetup.exe: + "/winsetup.exe": - when: - os: windows store: steam @@ -284657,7 +285509,7 @@ Just Jump: installDir: WASD: {} launch: - /just jump.exe: + "/just jump.exe": - when: - os: windows store: steam @@ -284665,7 +285517,7 @@ Just Jump: id: 749880 Just King: files: - /AppData/LocalLow/Vish Game Studio/King/Saves: + "/AppData/LocalLow/Vish Game Studio/King/Saves": tags: - save when: @@ -284673,7 +285525,7 @@ Just King: installDir: Just King: {} launch: - /King.exe: + "/King.exe": - when: - os: windows store: steam @@ -284683,7 +285535,7 @@ Just N: installDir: Just N: {} launch: - /Just N.exe: + "/Just N.exe": - when: - store: steam steam: @@ -284692,7 +285544,7 @@ Just One Color: installDir: Just One Color: {} launch: - /Just One Color.exe: + "/Just One Color.exe": - when: - os: windows store: steam @@ -284702,11 +285554,11 @@ Just One Line: installDir: Just One Line: {} launch: - /Just One Line: + "/Just One Line": - when: - os: linux store: steam - /Just One Line.exe: + "/Just One Line.exe": - when: - os: windows store: steam @@ -284716,7 +285568,7 @@ Just Random Squares: installDir: Just Random Squares: {} launch: - /JustRandomSquares.exe: + "/JustRandomSquares.exe": - when: - bit: 64 os: windows @@ -284727,7 +285579,7 @@ Just Ride: installDir: Just Ride: {} launch: - /JustRide.exe: + "/JustRide.exe": - when: - os: windows store: steam @@ -284737,7 +285589,7 @@ Just Roll With It: installDir: Just Roll With It: {} launch: - /PUZZ BALL.exe: + "/PUZZ BALL.exe": - when: - os: windows store: steam @@ -284745,7 +285597,7 @@ Just Roll With It: id: 981710 Just Shapes & Beats: files: - /userdata//531510/remote/JSBSave_SaveData: + "/userdata//531510/remote/JSBSave_SaveData": tags: - save when: @@ -284753,15 +285605,15 @@ Just Shapes & Beats: installDir: Just Shapes & Beats: {} launch: - /JSB.app/Contents/MacOS/JSB: + "/JSB.app/Contents/MacOS/JSB": - when: - os: mac store: steam - /JSB.exe: + "/JSB.exe": - when: - os: windows store: steam - /JSB.x86_64: + "/JSB.x86_64": - when: - os: linux store: steam @@ -284775,21 +285627,21 @@ Just Ski: installDir: Just Ski: {} launch: - /JustSki.app: + "/JustSki.app": - when: - os: mac store: steam - /JustSki.exe: + "/JustSki.exe": - when: - os: windows store: steam steam: id: 740230 -'Just Sleep - Meditate, Focus, Relax': +"Just Sleep - Meditate, Focus, Relax": installDir: - 'Just Sleep - Meditate, Focus, Relax': {} + "Just Sleep - Meditate, Focus, Relax": {} launch: - /Just Sleep.exe: + "/Just Sleep.exe": - when: - os: windows store: steam @@ -284799,7 +285651,7 @@ Just Spin: installDir: Just Spin: {} launch: - /Just Spin.exe: + "/Just Spin.exe": - when: - os: windows store: steam @@ -284809,10 +285661,8 @@ Just Survive: installDir: Just Survive: {} launch: - /LaunchPad.exe: - - arguments: >- - Updates:enable=0 Updates:PatchSelf=1 campaignID=1065726 promoID=155 launchPoint=steam - launchArgs=STEAM_ENABLED=1 + "/LaunchPad.exe": + - arguments: "Updates:enable=0 Updates:PatchSelf=1 campaignID=1065726 promoID=155 launchPoint=steam launchArgs=STEAM_ENABLED=1" when: - bit: 64 os: windows @@ -284831,7 +285681,7 @@ Just a Cleric: installDir: Just a Cleric: {} launch: - /JAC.exe: + "/JAC.exe": - when: - os: windows store: steam @@ -284841,7 +285691,7 @@ Just a Humble Swordsmith: installDir: Just A Humble Swordsmith: {} launch: - /Just a Humble Swordsmith.exe: + "/Just a Humble Swordsmith.exe": - when: - store: steam steam: @@ -284850,21 +285700,21 @@ Just a Jumping Square: installDir: Just a Jumping Square: {} launch: - /JaJS.exe: + "/JaJS.exe": - when: - os: windows store: steam - /JaJS.sh: + "/JaJS.sh": - when: - os: linux store: steam steam: id: 800520 -'Just, Bearly': +"Just, Bearly": installDir: - 'Just, Bearly': {} + "Just, Bearly": {} launch: - /justbearlyv3.exe: + "/justbearlyv3.exe": - when: - os: windows store: steam @@ -284884,7 +285734,7 @@ Justice Legion: installDir: JUSTICE LEGION: {} launch: - /jl.exe: + "/jl.exe": - when: - store: steam steam: @@ -284892,14 +285742,15 @@ Justice Legion: Justice Strikes: steam: id: 1206020 -'Justice Sucks: Tactical Vacuum Action': +"Justice Sucks: Tactical Vacuum Action": files: - /AppData/LocalLow/Samurai Punk/JUSTICE SUCKS/Steam//SaveGame.dat: + "/AppData/LocalLow/Samurai Punk/JUSTICE SUCKS/Steam//SaveGame.dat": tags: - save when: - - store: steam - /userdata//856890/remote/SaveGame.dat: + - os: windows + store: steam + "/userdata//856890/remote/SaveGame.dat": tags: - save when: @@ -284909,7 +285760,7 @@ Justice Strikes: installDir: Justice Sucks: {} launch: - /JUSTICE SUCKS.exe: + "/JUSTICE SUCKS.exe": - when: - os: windows store: steam @@ -284917,7 +285768,7 @@ Justice Strikes: id: 856890 Justin Wack and the Big Time Hack: files: - /AppData/LocalLow/Warm Kitten/Justin Wack and the Big Time Hack: + "/AppData/LocalLow/Warm Kitten/Justin Wack and the Big Time Hack": tags: - save when: @@ -284927,15 +285778,15 @@ Justin Wack and the Big Time Hack: installDir: Justin Wack and the Big Time Hack: {} launch: - /Justin Wack and the Big Time Hack.app/Contents/MacOS/Justin Wack and the Big Time Hack: + "/Justin Wack and the Big Time Hack.app/Contents/MacOS/Justin Wack and the Big Time Hack": - when: - os: mac store: steam - /Justin Wack and the Big Time Hack.exe: + "/Justin Wack and the Big Time Hack.exe": - when: - os: windows store: steam - /Justin Wack and the Big Time Hack.x86_64: + "/Justin Wack and the Big Time Hack.x86_64": - when: - os: linux store: steam @@ -284945,11 +285796,11 @@ Jut: installDir: jut: {} launch: - /jut.app: + "/jut.app": - when: - os: mac store: steam - /jut.exe: + "/jut.exe": - when: - os: windows store: steam @@ -284962,11 +285813,11 @@ Jwing - the next puzzle game: installDir: jwing - the next puzzle game: {} launch: - /jwing.app/Contents/MacOS/jwing: + "/jwing.app/Contents/MacOS/jwing": - when: - os: mac store: steam - /jwing.exe: + "/jwing.exe": - when: - os: windows store: steam @@ -284974,12 +285825,12 @@ Jwing - the next puzzle game: id: 1081990 Jydge: files: - /Library/Application Support/10tons/JYDGE/profiles: + "/Library/Application Support/10tons/JYDGE/profiles": tags: - save when: - os: mac - /10tons/JYDGE/profiles: + "/10tons/JYDGE/profiles": tags: - save when: @@ -284989,15 +285840,15 @@ Jydge: installDir: JYDGE: {} launch: - /JYDGE: + "/JYDGE": - when: - os: linux store: steam - /JYDGE.app: + "/JYDGE.app": - when: - os: mac store: steam - /JYDGE.exe: + "/JYDGE.exe": - when: - os: windows store: steam @@ -285007,20 +285858,20 @@ K Station: installDir: KStation: {} launch: - /KStation.exe: + "/KStation.exe": - when: - os: windows store: steam steam: id: 471720 -K'Nossos: +"K'Nossos": steam: id: 696770 K-Point Ski Jumping: installDir: K-Point Ski Jumping: {} launch: - /K-Point Ski Jumping.exe: + "/K-Point Ski Jumping.exe": - when: - bit: 64 os: windows @@ -285033,9 +285884,9 @@ K-Rolik: K-pop VR: steam: id: 744020 -'K. Hawk: Survival Instinct': +"K. Hawk: Survival Instinct": files: - /savegame: + "/savegame": tags: - save when: @@ -285049,7 +285900,7 @@ K37-D: installDir: K37-D: {} launch: - /K37-D.exe: + "/K37-D.exe": - when: - os: windows store: steam @@ -285059,7 +285910,7 @@ KAJA:追光者与秘境制造: installDir: KAJA 追光者与秘境制造: {} launch: - /KAJA 追光者与秘境制造.exe: + "/KAJA 追光者与秘境制造.exe": - when: - os: windows store: steam @@ -285067,12 +285918,12 @@ KAJA:追光者与秘境制造: id: 1179530 KAKUDO: files: - /KAKUDO/Saved: + "/KAKUDO/Saved": tags: - save when: - os: windows - /KAKUDO/Saved/Config: + "/KAKUDO/Saved/Config": tags: - config when: @@ -285081,14 +285932,14 @@ KAKUDO: KAKUDO: {} steam: id: 2063510 -KAMASUTRA \ 爱经: +"KAMASUTRA \\ 爱经": steam: id: 965160 KANNA: installDir: KANNA: {} launch: - /Kanna.exe: + "/Kanna.exe": - when: - store: steam steam: @@ -285100,21 +285951,21 @@ KByte: installDir: KByte: {} launch: - /KByte.exe: + "/KByte.exe": - when: - os: windows store: steam - /KByte.x86: + "/KByte.x86": - when: - bit: 32 os: linux store: steam - /KByte.x86_64: + "/KByte.x86_64": - when: - bit: 64 os: linux store: steam - /Kbyte.app: + "/Kbyte.app": - when: - os: mac store: steam @@ -285124,11 +285975,11 @@ KEEK: installDir: KEEK: {} launch: - /KEEK.exe: + "/KEEK.exe": - when: - os: windows store: steam - /MacOS.app: + "/MacOS.app": - when: - os: mac store: steam @@ -285138,7 +285989,7 @@ KEIKA - A Puzzle Adventure: installDir: KEIKA - A Puzzle Adventure: {} launch: - /KEIKA - A Puzzle Adventure.exe: + "/KEIKA - A Puzzle Adventure.exe": - when: - os: windows store: steam @@ -285148,12 +285999,12 @@ KEL Reaper of Entropy: installDir: KEL Reaper of Entropy: {} launch: - /Binaries/Win32/UDK.exe: - - arguments: '-fullscreen' + "/Binaries/Win32/UDK.exe": + - arguments: "-fullscreen" when: - os: windows store: steam - workingDir: /Binaries/Win32 + workingDir: "/Binaries/Win32" steam: id: 317950 KENDAMVR - Virtual Reality Kendama: @@ -285170,7 +286021,7 @@ KENGOHAZARD2: installDir: QuietMansion2: {} launch: - /QuietMansion2.exe: + "/QuietMansion2.exe": - when: - store: steam steam: @@ -285179,7 +286030,7 @@ KEO: installDir: KEO: {} launch: - /KEO.exe: + "/KEO.exe": - when: - os: windows store: steam @@ -285189,7 +286040,7 @@ KILL: installDir: ROCK: {} launch: - /ROCK.exe: + "/ROCK.exe": - when: - os: windows store: steam @@ -285202,8 +286053,8 @@ KIN: installDir: KIN: {} launch: - /KIN.exe: - - arguments: '-vrmode none' + "/KIN.exe": + - arguments: "-vrmode none" when: - bit: 64 os: windows @@ -285214,15 +286065,15 @@ KLAC: installDir: KLAC: {} launch: - /KLAC: + "/KLAC": - when: - os: linux store: steam - /KLAC.app/Contents/MacOS/KLAC: + "/KLAC.app/Contents/MacOS/KLAC": - when: - os: mac store: steam - /KLAC.exe: + "/KLAC.exe": - when: - os: windows store: steam @@ -285230,7 +286081,7 @@ KLAC: id: 1102030 KO Mech: files: - /AppData/LocalLow/DefaultCompany/KO MECH: + "/AppData/LocalLow/DefaultCompany/KO MECH": tags: - config - save @@ -285239,50 +286090,50 @@ KO Mech: installDir: KOMech: {} launch: - /KO Mech.exe: + "/KO Mech.exe": - when: - os: windows store: steam - /KOLin.x86: + "/KOLin.x86": - when: - bit: 32 os: linux store: steam - /KOLin.x86_64: + "/KOLin.x86_64": - when: - bit: 64 os: linux store: steam - /KOMAC.app/Contents/MacOS/KOMAC: + "/KOMAC.app/Contents/MacOS/KOMAC": - when: - os: mac store: steam steam: id: 862770 -'KOBOLD: Chapter I': +"KOBOLD: Chapter I": installDir: KOB_Steam_352: {} steam: id: 972740 -KONOSUBA - God's Blessing on this Wonderful World! Love For These Clothes Of Desire!: +"KONOSUBA - God's Blessing on this Wonderful World! Love For These Clothes Of Desire!": steam: id: 2349140 KRUM - Edge of Darkness: installDir: KRUM - Edge Of Darkness: {} launch: - /system/Krum - Edge Of Darkness.exe: + "/system/Krum - Edge Of Darkness.exe": - when: - os: windows store: steam - workingDir: /system + workingDir: "/system" steam: id: 420210 KUMACURE: installDir: KUMACURE: {} launch: - /player.exe: + "/player.exe": - when: - store: steam steam: @@ -285291,7 +286142,7 @@ KUMO The Little Robot: installDir: KUMO The Little Robot: {} launch: - /KUMO-The-Little-Robot.exe: + "/KUMO-The-Little-Robot.exe": - when: - os: windows store: steam @@ -285301,7 +286152,7 @@ KUR: installDir: KUR: {} launch: - /Kur.exe: + "/Kur.exe": - when: - os: windows store: steam @@ -285311,16 +286162,16 @@ KWAAN: installDir: KWAAN: {} launch: - /Kwaan.app: + "/Kwaan.app": - when: - os: mac store: steam - /Kwaan.exe: + "/Kwaan.exe": - when: - os: windows store: steam - /Kwaan.x86_64: - - arguments: '-force-opengl' + "/Kwaan.x86_64": + - arguments: "-force-opengl" when: - os: linux store: steam @@ -285330,15 +286181,15 @@ Ka Mate: installDir: KA MATE: {} launch: - /kamate.exe: + "/kamate.exe": - when: - os: windows store: steam steam: id: 636490 -'Kaan: Barbarian''s Blade': +"Kaan: Barbarian's Blade": files: - /general.cfg: + "/general.cfg": tags: - config when: @@ -285346,11 +286197,11 @@ Ka Mate: Kabitis: steam: id: 475220 -'Kabitis 2: Fire Sword': +"Kabitis 2: Fire Sword": installDir: Kabitis 2: {} launch: - /Kabitis 2 Fire Sword/Kabitis 2 Fire Sword.exe: + "/Kabitis 2 Fire Sword/Kabitis 2 Fire Sword.exe": - when: - store: steam steam: @@ -285359,7 +286210,7 @@ Kaboom Monsters: installDir: Kaboom Monsters: {} launch: - /KaboomMonsters.exe: + "/KaboomMonsters.exe": - when: - os: windows store: steam @@ -285367,12 +286218,12 @@ Kaboom Monsters: id: 461490 Kabounce: files: - /KABOUNCE/Saved/Config/WindowsNoEditor: + "/KABOUNCE/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /KABOUNCE/Saved/SaveGames: + "/KABOUNCE/Saved/SaveGames": tags: - save when: @@ -285380,7 +286231,7 @@ Kabounce: installDir: KABOUNCE: {} launch: - /KABOUNCE.exe: + "/KABOUNCE.exe": - when: - os: windows store: steam @@ -285388,12 +286239,12 @@ Kabounce: id: 431930 Kabus 22: files: - /kayitxx.sav: + "/kayitxx.sav": tags: - save when: - os: windows - /options.k22: + "/options.k22": tags: - config when: @@ -285402,11 +286253,11 @@ Kach: installDir: Kach: {} launch: - /Kach.app/Contents/MacOS/Kach: + "/Kach.app/Contents/MacOS/Kach": - when: - os: mac store: steam - /Kach.exe: + "/Kach.exe": - when: - os: windows store: steam @@ -285416,11 +286267,11 @@ Kadath: installDir: Kadath: {} launch: - /KadathEp0.app: + "/KadathEp0.app": - when: - os: mac store: steam - /KadathEp0.exe: + "/KadathEp0.exe": - when: - bit: 64 os: windows @@ -285429,7 +286280,7 @@ Kadath: id: 995490 Kaede the Eliminator: files: - /AppData/LocalLow/Moyashi Tec lab: + "/AppData/LocalLow/Moyashi Tec lab": tags: - save when: @@ -285437,7 +286288,7 @@ Kaede the Eliminator: installDir: Kaede the Eliminator Eliminator: {} launch: - /Eliminator ver 1.2.exe: + "/Eliminator ver 1.2.exe": - when: - os: windows store: steam @@ -285447,21 +286298,21 @@ Kaet Must Die!: installDir: Kaet Must Die!: {} launch: - /KaetMustDie.exe: + "/KaetMustDie.exe": - when: - bit: 64 os: windows store: steam steam: id: 691650 -'Kageroh: Shadow Corridor': +"Kageroh: Shadow Corridor": files: - /Kageroh/Saved/Config/WindowsNoEditor: + "/Kageroh/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /Kageroh/Saved/SaveGames: + "/Kageroh/Saved/SaveGames": tags: - save when: @@ -285469,7 +286320,7 @@ Kaet Must Die!: installDir: ShadowCorridor: {} launch: - /ShadowCorridor.exe: + "/ShadowCorridor.exe": - when: - os: windows store: steam @@ -285479,59 +286330,59 @@ Kagura Douchuuki: installDir: KaguraDouchuuki: {} launch: - /s_kagura_r.exe: + "/s_kagura_r.exe": - when: - os: windows store: steam steam: id: 378790 -'Kaguya-sama: Love Is War': +"Kaguya-sama: Love Is War": steam: id: 1640660 Kai Entity: installDir: Kai Entity: {} launch: - /KaiEntity.exe: + "/KaiEntity.exe": - when: - os: windows store: steam steam: id: 931620 -Kai Yuen's Overlapped Universe: +"Kai Yuen's Overlapped Universe": installDir: - Kai Yuen's Overlapped Universe: {} + "Kai Yuen's Overlapped Universe": {} launch: - /ou_full.exe: + "/ou_full.exe": - when: - os: windows store: steam steam: id: 796980 -'Kaidi, armed with a cat': +"Kaidi, armed with a cat": installDir: - 'Kaidi,armed with a cat': {} + "Kaidi,armed with a cat": {} launch: - /Kaidi.exe: + "/Kaidi.exe": - when: - bit: 64 os: windows store: steam steam: id: 996550 -'Kaiju Big Battel: Fighto Fantasy': +"Kaiju Big Battel: Fighto Fantasy": installDir: Kaiju Big Battel Fighto Fantasy: {} launch: - /kaiju: + "/kaiju": - when: - os: linux store: steam - /kaiju.app: + "/kaiju.app": - when: - os: mac store: steam - /kaiju.exe: + "/kaiju.exe": - when: - os: windows store: steam @@ -285541,7 +286392,7 @@ Kaiju Kite Attack: installDir: Kaiju Kite Attack: {} launch: - /Kaiju Kite Attack OfficialWinUpdate3.exe: + "/Kaiju Kite Attack OfficialWinUpdate3.exe": - when: - os: windows store: steam @@ -285551,15 +286402,15 @@ Kaiju Panic: installDir: KaijuPanic: {} launch: - /KaijuPanic.app: + "/KaijuPanic.app": - when: - os: mac store: steam - /KaijuPanic.exe: + "/KaijuPanic.exe": - when: - os: windows store: steam - /KaijuPanic.x86: + "/KaijuPanic.x86": - when: - os: linux store: steam @@ -285567,19 +286418,20 @@ Kaiju Panic: id: 352760 Kaiju Wars: files: - /LocalLow/Foolish Mortals/Kaiju Wars/Campaigns: + "/LocalLow/Foolish Mortals/Kaiju Wars/Campaigns": tags: - save when: - - store: steam + - os: windows + store: steam installDir: Kaiju Wars: {} launch: - /KaijuWars.app: + "/KaijuWars.app": - when: - os: mac store: steam - /KaijuWars.x64: + "/KaijuWars.x64": - when: - bit: 64 os: linux @@ -285592,7 +286444,7 @@ Kaiju Wars: id: 1508400 Kaiju-A-GoGo: files: - /Kaiju-A-GoGo: + "/Kaiju-A-GoGo": tags: - save when: @@ -285600,20 +286452,20 @@ Kaiju-A-GoGo: installDir: Kaiju-A-GoGo: {} launch: - /kaiju.exe: + "/kaiju.exe": - when: - store: steam steam: id: 333210 Kairo: files: - /.config/unity3d/Locked Door Puzzle/Kairo: + "/.config/unity3d/Locked Door Puzzle/Kairo": tags: - config - save when: - os: linux - /userdata//233230/remote/kairo.sav: + "/userdata//233230/remote/kairo.sav": tags: - save when: @@ -285621,15 +286473,15 @@ Kairo: installDir: Kairo: {} launch: - /Kairo: + "/Kairo": - when: - os: linux store: steam - /kairo.app: + "/kairo.app": - when: - os: mac store: steam - /kairo.exe: + "/kairo.exe": - when: - os: windows store: steam @@ -285646,40 +286498,40 @@ Kaisuo: id: 1045590 Kajko i Kokosz: files: - /*.sav: + "/*.sav": tags: - save when: - os: dos gog: id: 1720224179 -'Kajko i Kokosz: Cudowny Lek': +"Kajko i Kokosz: Cudowny Lek": files: - /ar.cfg: + "/ar.cfg": tags: - config when: - os: windows - /save: + "/save": tags: - save when: - os: windows -'Kajko i Kokosz: Szkoła Latania': +"Kajko i Kokosz: Szkoła Latania": files: - /ar.cfg: + "/ar.cfg": tags: - config when: - os: windows - /save: + "/save": tags: - save when: - os: windows -'Kajko i Kokosz: Twierdza Czarnoksiężnika': +"Kajko i Kokosz: Twierdza Czarnoksiężnika": files: - /saves: + "/saves": tags: - save when: @@ -285688,7 +286540,7 @@ Kakatte Koi Yo!: installDir: Kakatte Koi Yo!: {} launch: - /Kakatte Koi Yo.exe: + "/Kakatte Koi Yo.exe": - when: - os: windows store: steam @@ -285698,7 +286550,7 @@ Kaku Ancient Seal / 卡库远古封印: installDir: Kaku Ancient Seal: {} launch: - /KakuAncientSeal/Binaries/Win64/KakuAncientSeal_protected.exe: + "/KakuAncientSeal/Binaries/Win64/KakuAncientSeal_protected.exe": - when: - bit: 64 os: windows @@ -285709,7 +286561,7 @@ Kakuro: installDir: Kakuro: {} launch: - /Kakuro.exe: + "/Kakuro.exe": - when: - os: windows store: steam @@ -285719,7 +286571,7 @@ Kakusankibou: installDir: kakusankibou: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -285734,7 +286586,7 @@ Kalaban: installDir: Kalaban: {} launch: - /Kalaban.exe: + "/Kalaban.exe": - when: - os: windows store: steam @@ -285744,7 +286596,7 @@ Kaleido Chaos: installDir: Kaleido Chaos: {} launch: - /Kaleido Chaos.exe: + "/Kaleido Chaos.exe": - when: - os: windows store: steam @@ -285754,11 +286606,11 @@ Kaleido Stella: installDir: KALEIDO STELLA: {} launch: - /english/KaleidoStella.exe: + "/english/KaleidoStella.exe": - when: - os: windows store: steam - /japanese/KaleidoStella.exe: + "/japanese/KaleidoStella.exe": - when: - os: windows store: steam @@ -285768,7 +286620,7 @@ Kalimba: installDir: Kalimba: {} launch: - /Kalimba.exe: + "/Kalimba.exe": - when: - os: windows store: steam @@ -285778,17 +286630,17 @@ Kalonline: installDir: Kalonline: {} launch: - /KalOnline.exe: + "/KalOnline.exe": - when: - os: windows store: steam steam: id: 475100 -'Kalzor: 2000': +"Kalzor: 2000": installDir: Kalzor: {} launch: - /Kalzor.exe: + "/Kalzor.exe": - when: - os: windows store: steam @@ -285798,7 +286650,7 @@ Kama Bullet Heritage: installDir: Kama Bullet Heritage: {} launch: - /Kama Bullet Heritage.exe: + "/Kama Bullet Heritage.exe": - when: - os: windows store: steam @@ -285808,17 +286660,17 @@ Kama Bullet Heritage 2: installDir: Kama Bullet Heritage 2: {} launch: - /Kama Bullet Heritage 2.exe: + "/Kama Bullet Heritage 2.exe": - when: - os: windows store: steam steam: id: 839890 -'Kamasutra Connect : Sexy Hentai Girls': +"Kamasutra Connect : Sexy Hentai Girls": installDir: kamasutraConnectHentaiGirls: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -285828,7 +286680,7 @@ Kamboja: installDir: Kamboja: {} launch: - /Kamboja.exe: + "/Kamboja.exe": - when: - os: windows store: steam @@ -285838,11 +286690,11 @@ Kamer: installDir: kamer: {} launch: - /kamer.app: + "/kamer.app": - when: - os: mac store: steam - /kamer.exe: + "/kamer.exe": - when: - os: windows store: steam @@ -285850,7 +286702,7 @@ Kamer: id: 1135130 Kami: files: - /com.stateofplaygames.steam.kami/Local Store: + "/com.stateofplaygames.steam.kami/Local Store": tags: - config - save @@ -285859,11 +286711,11 @@ Kami: installDir: KAMI: {} launch: - /KAMI.app/Contents/MacOS/KAMI: + "/KAMI.app/Contents/MacOS/KAMI": - when: - os: mac store: steam - /KAMI.exe: + "/KAMI.exe": - when: - os: windows store: steam @@ -285873,7 +286725,7 @@ Kamikaze Cube: installDir: Kamikaze Cube: {} launch: - /Kamikaze Cube.exe: + "/Kamikaze Cube.exe": - when: - os: windows store: steam @@ -285883,7 +286735,7 @@ Kamikaze Cube 2: installDir: Kamikaze Cube 2: {} launch: - /Kamikaze Cube 2.exe: + "/Kamikaze Cube 2.exe": - when: - os: windows store: steam @@ -285895,7 +286747,7 @@ Kamikaze Kommittee Ouka 2: installDir: Kamikaze Kommittee Ouka 2: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: @@ -285904,7 +286756,7 @@ Kamikaze Veggies: installDir: Kamikaze Veggies: {} launch: - /Kamikaze Veggies.exe: + "/Kamikaze Veggies.exe": - when: - os: windows store: steam @@ -285919,7 +286771,7 @@ Kamiko: installDir: KAMIKO: {} launch: - /Kamiko.exe: + "/Kamiko.exe": - when: - os: windows store: steam @@ -285934,25 +286786,25 @@ Kamio Recoil: installDir: Kamio Recoil: {} launch: - /KamioRecoil.exe: + "/KamioRecoil.exe": - when: - os: windows store: steam steam: id: 557420 -'Kamiwaza: Way of the Thief': +"Kamiwaza: Way of the Thief": files: - /Saved Games/Kamiwaza/KAMIWAZA_GAME_DATA_##.sav: + "/Saved Games/Kamiwaza/KAMIWAZA_GAME_DATA_##.sav": tags: - save when: - os: windows - /Saved Games/Kamiwaza/KAMIWAZA_SYSTEM_DATA.sav: + "/Saved Games/Kamiwaza/KAMIWAZA_SYSTEM_DATA.sav": tags: - save when: - os: windows - /Kamiwaza/Saved/Config/WindowsNoEditor: + "/Kamiwaza/Saved/Config/WindowsNoEditor": tags: - config when: @@ -285960,18 +286812,18 @@ Kamio Recoil: installDir: Kamiwaza Way of the Thief: {} launch: - /Kamiwaza/Binaries/Win64/Kamiwaza.exe: + "/Kamiwaza/Binaries/Win64/Kamiwaza.exe": - when: - bit: 64 os: windows store: steam steam: id: 1924810 -'Kamodo Steve: Janitor on Fire!': +"Kamodo Steve: Janitor on Fire!": installDir: Kamodo Steve! Janitor on Fire!: {} launch: - /ksjof.exe: + "/ksjof.exe": - when: - os: windows store: steam @@ -285979,12 +286831,12 @@ Kamio Recoil: id: 1181970 Kamui: files: - /savedata.sav: + "/savedata.sav": tags: - save when: - os: windows - /setupkamui.cfg: + "/setupkamui.cfg": tags: - config when: @@ -285992,7 +286844,7 @@ Kamui: installDir: Kamui: {} launch: - /Kamui.exe: + "/Kamui.exe": - when: - store: steam steam: @@ -286001,7 +286853,7 @@ Kana Quest: installDir: Kana Quest: {} launch: - /KanaQuest.exe: + "/KanaQuest.exe": - when: - bit: 64 os: windows @@ -286010,12 +286862,7 @@ Kana Quest: id: 725850 Kandagawa Jet Girls: files: - /SavesDir//save_file*.kjg: - tags: - - save - when: - - os: windows - /SavesDir/setting.ini: + "/SavesDir/setting.ini": tags: - config when: @@ -286023,20 +286870,20 @@ Kandagawa Jet Girls: installDir: Kandagawa Jet Girls: {} launch: - /Kandagawa Jet Girls.exe: + "/Kandagawa Jet Girls.exe": - when: - os: windows store: steam steam: id: 1233800 -'Kane & Lynch 2: Dog Days': +"Kane & Lynch 2: Dog Days": files: - /Square Enix/Kane & Lynch 2 - Dog Days: + "/Square Enix/Kane & Lynch 2 - Dog Days": tags: - save when: - os: windows - //28000: + "//28000": tags: - save when: @@ -286046,26 +286893,26 @@ Kandagawa Jet Girls: installDir: Kane & Lynch 2 - Dog Days: {} launch: - /KL2.exe: + "/KL2.exe": - when: - store: steam - - arguments: '-setup' + - arguments: "-setup" when: - store: steam registry: - 'HKEY_CURRENT_USER/Software/IO Interactive/Kane & Lynch 2: Dog Days': + "HKEY_CURRENT_USER/Software/IO Interactive/Kane & Lynch 2: Dog Days": tags: - config steam: id: 28000 -'Kane & Lynch: Dead Men': +"Kane & Lynch: Dead Men": files: - /kaneandlynch/0.kls: + "/kaneandlynch/0.kls": tags: - save when: - os: windows - /kaneandlynch/main.ini: + "/kaneandlynch/main.ini": tags: - config when: @@ -286075,7 +286922,7 @@ Kandagawa Jet Girls: installDir: Kane and Lynch Dead Men: {} launch: - /launcher.exe: + "/launcher.exe": - when: - store: steam steam: @@ -286084,7 +286931,7 @@ Kanji Training Game: installDir: Kanji Training Game: {} launch: - /KanjiTrainingGame.exe: + "/KanjiTrainingGame.exe": - when: - os: windows store: steam @@ -286094,11 +286941,11 @@ Kanji in Motion: installDir: Kanji in Motion: {} launch: - /kim.app: + "/kim.app": - when: - os: mac store: steam - /kim.exe: + "/kim.exe": - when: - os: windows store: steam @@ -286108,19 +286955,19 @@ Kanojo x Switch: installDir: Kanojo x Switch: {} launch: - /Kanojo x Switch.exe: + "/Kanojo x Switch.exe": - when: - store: steam steam: id: 1208850 Kansei: files: - /renpy/kannew-1482468000/*.save: + "/renpy/kannew-1482468000/*.save": tags: - save when: - os: windows - /renpy/kannew-1482468000/persistent: + "/renpy/kannew-1482468000/persistent": tags: - config when: @@ -286128,15 +286975,15 @@ Kansei: installDir: Kansei: {} launch: - /kansei.app: + "/kansei.app": - when: - os: mac store: steam - /kansei.exe: + "/kansei.exe": - when: - os: windows store: steam - /kansei.sh: + "/kansei.sh": - when: - os: linux store: steam @@ -286144,12 +286991,12 @@ Kansei: id: 771340 Kao the Kangaroo: files: - /kao*.sav: + "/kao*.sav": tags: - save when: - os: windows - /kao.ini: + "/kao.ini": tags: - config when: @@ -286159,93 +287006,97 @@ Kao the Kangaroo: installDir: Kao the Kangaroo (2000 re-release): {} launch: - /kao.exe: + "/kao.exe": - when: - store: steam steam: id: 2360020 Kao the Kangaroo (2022): files: - /Kao/Saved/Config/WindowsNoEditor: + "/Kao/Saved/Config/WindowsNoEditor": tags: - config when: - - store: steam - /Kao/Saved/SaveGames: + - os: windows + store: steam + "/Kao/Saved/SaveGames": tags: - save when: - - store: steam - /KaoDRMFree/Saved/Config/WindowsNoEditor: + - os: windows + store: steam + "/KaoDRMFree/Saved/Config/WindowsNoEditor": tags: - config when: - - store: epic - /KaoDRMFree/Saved/SaveGames: + - os: windows + "/KaoDRMFree/Saved/SaveGames": tags: - save when: - - store: epic - /KaoGOG/Saved/Config/WindowsNoEditor: + - os: windows + "/KaoGOG/Saved/Config/WindowsNoEditor": tags: - config when: - - store: gog - /KaoGOG/Saved/SaveGames: + - os: windows + store: gog + "/KaoGOG/Saved/SaveGames": tags: - save when: - - store: gog + - os: windows + store: gog gog: id: 1074396890 id: gogExtra: - 1104519912 + - 1153242124 + - 1458958727 - 1560571383 - 1631904812 - 1669230617 - - 2074692331 - 2000108514 - - 1153242124 - - 1458958727 + - 2074692331 steamExtra: - 2052960 - 2052961 + - 2052962 - 2052963 - 2155050 - - 2052962 - 2249670 installDir: Kao the Kangaroo: {} launch: - /Kao the Kangaroo.exe: + "/Kao the Kangaroo.exe": - when: - store: steam steam: id: 1370140 -'Kao the Kangaroo: Round 2': +"Kao the Kangaroo: Round 2": files: - /media/*.ini: + "/media/*.ini": tags: - config when: - os: windows - /media/Kao2.SG: + "/media/Kao2.SG": tags: - save when: - os: windows - /userdata//1048540/remote: + "/userdata//1048540/remote": tags: - save when: - store: steam - /Kao - Round 2: + "/Kao - Round 2": tags: - save when: - os: windows - /Kao - Round 2/*.ini: + "/Kao - Round 2/*.ini": tags: - config when: @@ -286255,25 +287106,19 @@ Kao the Kangaroo (2022): installDir: Kao the Kangaroo Round 2: {} launch: - /kao2.exe: + "/kao2.exe": - when: - os: windows store: steam steam: id: 1048540 -'Kao: Mystery of Volcano': - files: - /media/KAO2SG*: - tags: - - save - when: - - os: windows +"Kao: Mystery of Volcano": gog: id: 1748253806 installDir: Kao the Kangaroo Mystery of the Volcano: {} launch: - /kao_tw.exe: + "/kao_tw.exe": - when: - store: steam steam: @@ -286282,11 +287127,11 @@ Kaori After Story: installDir: Kaori After Story: {} launch: - /Kaori After Story.app: + "/Kaori After Story.app": - when: - os: mac store: steam - /Kaori After Story.exe: + "/Kaori After Story.exe": - when: - os: windows store: steam @@ -286296,12 +287141,12 @@ Kaos: installDir: Kaos: {} launch: - /WindowsNoEditor/Kaos32.exe: + "/WindowsNoEditor/Kaos32.exe": - when: - bit: 32 os: windows store: steam - /WindowsNoEditor/Kaos64.exe: + "/WindowsNoEditor/Kaos64.exe": - when: - bit: 64 os: windows @@ -286314,13 +287159,13 @@ Kapia: installDir: Kapia: {} launch: - /kapia.exe: + "/kapia.exe": - when: - os: windows store: steam steam: id: 1351140 -'Kapital: Sparks of Revolution': +"Kapital: Sparks of Revolution": gog: id: 1260865506 id: @@ -286329,15 +287174,15 @@ Kapia: installDir: Kapital Sparks of Revolution: {} launch: - /Contents/MacOS/Kapital: + "/Contents/MacOS/Kapital": - when: - os: mac store: steam - /Kapital.exe: + "/Kapital.exe": - when: - os: windows store: steam - /Kapital.x86_64: + "/Kapital.x86_64": - when: - os: linux store: steam @@ -286347,31 +287192,31 @@ Kapsul Infinite: installDir: Kapsul Infinite: {} launch: - /kapsul_infinite.exe: + "/kapsul_infinite.exe": - when: - store: steam steam: id: 518680 -'Kaptain Brawe: A Brawe New World': +"Kaptain Brawe: A Brawe New World": files: - /userData: + "/userData": tags: - save when: - os: windows - os: linux - /userData/*.cfg: + "/userData/*.cfg": tags: - config when: - os: windows - os: linux - /Library/Application Support/Kaptain Brawe: + "/Library/Application Support/Kaptain Brawe": tags: - save when: - os: mac - /Cateia Games/Kaptain Brawe/: + "/Cateia Games/Kaptain Brawe/": tags: - config - save @@ -286383,12 +287228,12 @@ Kapsul Infinite: installDir: Kaptain Brawe: {} launch: - /Kaptain Brawe.app/Contents/MacOS/Kaptain Brawe: + "/Kaptain Brawe.app/Contents/MacOS/Kaptain Brawe": - when: - os: mac store: steam - workingDir: /Kaptain Brawe.app/Contents/MacOS - /brawe.exe: + workingDir: "/Kaptain Brawe.app/Contents/MacOS" + "/brawe.exe": - when: - os: windows store: steam @@ -286398,7 +287243,7 @@ Kaptein Sabeltann: installDir: Captain Sabertooth & the Magic Diamond: {} launch: - /KapteinSabeltann.exe: + "/KapteinSabeltann.exe": - when: - os: windows store: steam @@ -286406,7 +287251,7 @@ Kaptein Sabeltann: id: 1383970 Kara no Shojo: files: - /savedata/*.*: + "/savedata/*.*": tags: - save when: @@ -286414,16 +287259,16 @@ Kara no Shojo: installDir: Kara no Shojo: {} launch: - /karanoshojo.exe: + "/karanoshojo.exe": - when: - store: steam steam: id: 965810 -Kara's Darkness Chapter One: +"Kara's Darkness Chapter One": installDir: KarasDarkness: {} launch: - /KarasDarknessCopy.exe: + "/KarasDarknessCopy.exe": - when: - store: steam steam: @@ -286432,7 +287277,7 @@ Karagon: installDir: Karagon: {} launch: - /NewKaragon.exe: + "/NewKaragon.exe": - when: - os: windows store: steam @@ -286440,7 +287285,7 @@ Karagon: id: 1818610 Karakara: files: - /calme/sekaiproject/KARAKARA: + "/calme/sekaiproject/KARAKARA": tags: - config - save @@ -286449,7 +287294,7 @@ Karakara: installDir: KARAKARA: {} launch: - /KARAKARA.exe: + "/KARAKARA.exe": - when: - os: windows store: steam @@ -286457,7 +287302,7 @@ Karakara: id: 487430 Karakara 2: files: - /savedata: + "/savedata": tags: - config - save @@ -286466,7 +287311,7 @@ Karakara 2: installDir: KARAKARA2: {} launch: - /KARAKARA2.exe: + "/KARAKARA2.exe": - when: - store: steam steam: @@ -286474,9 +287319,9 @@ Karakara 2: Karar X: steam: id: 1146220 -'Karaski: What Goes Up...': +"Karaski: What Goes Up...": files: - /config.cfg: + "/config.cfg": tags: - config when: @@ -286484,11 +287329,11 @@ Karar X: installDir: Karaski What Goes Up: {} launch: - /Karaski.exe: + "/Karaski.exe": - when: - store: steam registry: - 'HKEY_CURRENT_USER/Software/Unbound Creations LLC/Karaski: What Goes Up...': + "HKEY_CURRENT_USER/Software/Unbound Creations LLC/Karaski: What Goes Up...": tags: - config steam: @@ -286497,15 +287342,15 @@ Karate Cat: installDir: Karate Cat: {} launch: - /KoteKarate.app/Contents/MacOS/KoteKarate: + "/KoteKarate.app/Contents/MacOS/KoteKarate": - when: - os: mac store: steam - /KoteKarate.exe: + "/KoteKarate.exe": - when: - os: windows store: steam - /KoteKarate.sh: + "/KoteKarate.sh": - when: - os: linux store: steam @@ -286515,7 +287360,7 @@ Karate Krab: installDir: Karate Krab: {} launch: - /KarateKrab.exe: + "/KarateKrab.exe": - when: - os: windows store: steam @@ -286525,7 +287370,7 @@ Karate Master 2 Knock Down Blow: installDir: Karate Master 2 Knock Down Blow: {} launch: - /Karate Master 2 KDB.exe: + "/Karate Master 2 KDB.exe": - when: - os: windows store: steam @@ -286533,12 +287378,12 @@ Karate Master 2 Knock Down Blow: id: 347670 Karateka (2012): files: - /My Games/Karateka/LiquidGame/Config: + "/My Games/Karateka/LiquidGame/Config": tags: - config when: - os: windows - /My Games/Karateka/LiquidGame/GameSaves: + "/My Games/Karateka/LiquidGame/GameSaves": tags: - save when: @@ -286546,10 +287391,10 @@ Karateka (2012): installDir: Karateka: {} launch: - /Binaries/karateka.exe: + "/Binaries/karateka.exe": - when: - store: steam - workingDir: /binaries + workingDir: "/binaries" steam: id: 217270 Kardboard Kings: @@ -286558,7 +287403,7 @@ Kardboard Kings: installDir: Kardboard Kings: {} launch: - /Kardboard Kings/Kardboard Kings.exe: + "/Kardboard Kings/Kardboard Kings.exe": - when: - bit: 64 os: windows @@ -286569,7 +287414,7 @@ Kards: installDir: KARDS: {} launch: - /kards.exe: + "/kards.exe": - when: - bit: 64 os: windows @@ -286580,28 +287425,28 @@ Kare wa Kanojo: installDir: Kare wa Kanojo: {} launch: - /kwk.app: + "/kwk.app": - when: - os: mac store: steam - /kwk.exe: + "/kwk.exe": - when: - os: windows store: steam - /kwk.sh: + "/kwk.sh": - when: - os: linux store: steam steam: id: 1024790 -Karkoth's Keep: +"Karkoth's Keep": files: - /*.DAT: + "/*.DAT": tags: - save when: - os: dos - /KEEPFIG.DAT: + "/KEEPFIG.DAT": tags: - config when: @@ -286610,15 +287455,15 @@ Karl BOOM: installDir: KarlBoom: {} launch: - /Mayster-Mac-Shipping.app: + "/Mayster-Mac-Shipping.app": - when: - os: mac store: steam - /Mayster.exe: + "/Mayster.exe": - when: - os: windows store: steam - /Mayster.sh: + "/Mayster.sh": - when: - os: linux store: steam @@ -286628,7 +287473,7 @@ Karloman and His Iced Muffins: installDir: Karloman: {} launch: - /Karloman.exe: + "/Karloman.exe": - when: - os: windows store: steam @@ -286641,11 +287486,11 @@ Karma: installDir: Karma: {} launch: - /Karma.exe: + "/Karma.exe": - when: - os: windows store: steam - /Karma.x86: + "/Karma.x86": - when: - os: linux store: steam @@ -286658,7 +287503,7 @@ Karma Miwa: installDir: Karma Miwa: {} launch: - /karmamiwa.exe: + "/karmamiwa.exe": - when: - os: windows store: steam @@ -286668,26 +287513,26 @@ Karma. Incarnation 1: installDir: Karma. Incarnation 1: {} launch: - /game.app: + "/game.app": - when: - os: mac store: steam - /game/game.exe: + "/game/game.exe": - when: - os: windows store: steam steam: id: 394700 -'Karmaflow: The Rock Opera Videogame - Act I & Act II': +"Karmaflow: The Rock Opera Videogame - Act I & Act II": installDir: Karmaflow The Rock Opera Videogame: {} launch: - /Binaries/Win32/KFGame.exe: + "/Binaries/Win32/KFGame.exe": - when: - bit: 32 os: windows store: steam - /Binaries/Win64/KFGame.exe: + "/Binaries/Win64/KFGame.exe": - when: - bit: 64 os: windows @@ -286696,7 +287541,7 @@ Karma. Incarnation 1: id: 317940 Karmasutra: files: - /.renpy/Karmasutra-##########: + "/.renpy/Karmasutra-##########": tags: - save when: @@ -286704,15 +287549,15 @@ Karmasutra: installDir: Karmasutra: {} launch: - /Karmasutra.app: + "/Karmasutra.app": - when: - os: mac store: steam - /Karmasutra.exe: + "/Karmasutra.exe": - when: - os: windows store: steam - /Karmasutra.sh: + "/Karmasutra.sh": - when: - os: linux store: steam @@ -286720,12 +287565,12 @@ Karmasutra: id: 677730 Karnage Chronicles: files: - /KarnageVR/Saved/Config/WindowsNoEditor: + "/KarnageVR/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /KarnageVR/Saved/SaveGames: + "/KarnageVR/Saved/SaveGames": tags: - save when: @@ -286738,7 +287583,7 @@ Karos: installDir: Karos: {} launch: - /launchpoint.exe: + "/launchpoint.exe": - when: - os: windows store: steam @@ -286748,7 +287593,7 @@ Karos Returns: installDir: Karos Returns: {} launch: - /RFstl.exe: + "/RFstl.exe": - when: - os: windows store: steam @@ -286758,23 +287603,23 @@ Karradash - The Lost Dungeons: installDir: Karradash - The Lost Dungeons: {} launch: - /karradash_tld.exe: + "/karradash_tld.exe": - when: - os: windows store: steam steam: id: 682020 -Karryn's Prison: +"Karryn's Prison": installDir: - Karryn's Prison: {} + "Karryn's Prison": {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam steam: id: 1619750 -'Kart Chaser: The Boost VR': +"Kart Chaser: The Boost VR": installDir: KART CHASER THE BOOST VR: {} steam: @@ -286783,7 +287628,7 @@ Kart Racing Pro: installDir: Kart Racing Pro: {} launch: - /kart.exe: + "/kart.exe": - when: - os: windows store: steam @@ -286793,11 +287638,11 @@ Kart kids: installDir: Sokpop S04 Kart kids: {} launch: - /kartkids_mac.app: + "/kartkids_mac.app": - when: - os: mac store: steam - /kartkids_windows/kartkids_windows.exe: + "/kartkids_windows/kartkids_windows.exe": - when: - os: windows store: steam @@ -286807,7 +287652,7 @@ KartKraft: installDir: KartKraft: {} launch: - /project_k.exe: + "/project_k.exe": - arguments: hmd=None when: - bit: 64 @@ -286815,12 +287660,12 @@ KartKraft: store: steam steam: id: 406350 -'KartRider: Drift': +"KartRider: Drift": installDir: KartRider Drift: {} launch: - /KartDrift.exe: - - arguments: '-steam' + "/KartDrift.exe": + - arguments: "-steam" when: - bit: 64 os: windows @@ -286836,7 +287681,7 @@ Kartofelka: installDir: KARTOFELKA: {} launch: - /kartofelka.exe: + "/kartofelka.exe": - when: - os: windows store: steam @@ -286846,7 +287691,7 @@ Kartong - Death by Cardboard!: installDir: Kartong: {} launch: - /Kartong_Project.exe: + "/Kartong_Project.exe": - when: - bit: 64 os: windows @@ -286857,7 +287702,7 @@ Kastle Krush: installDir: Kastle Krush: {} launch: - /KastleKrush.exe: + "/KastleKrush.exe": - when: - os: windows store: steam @@ -286865,17 +287710,17 @@ Kastle Krush: id: 1145590 Katamari Damacy Reroll: files: - /BANDAI NAMCO Entertainment/kataramidamacy/Saved/SaveGames/: + "/BANDAI NAMCO Entertainment/kataramidamacy/Saved/SaveGames/": tags: - save when: - os: windows - /BANDAI NAMCO Entertainment/kataramidamacy/Saved/SaveTemporary//Setting: + "/BANDAI NAMCO Entertainment/kataramidamacy/Saved/SaveTemporary//Setting": tags: - config when: - os: windows - /Packages/NAMCOBANDAIGamesInc.KatamariDamacyRerollWindows_gdy2aq6ez762w/SystemAppData: + "/Packages/NAMCOBANDAIGamesInc.KatamariDamacyRerollWindows_gdy2aq6ez762w/SystemAppData": tags: - save when: @@ -286884,7 +287729,7 @@ Katamari Damacy Reroll: installDir: Katamari Damacy REROLL: {} launch: - /katamari.exe: + "/katamari.exe": - when: - store: steam registry: @@ -286893,11 +287738,11 @@ Katamari Damacy Reroll: - config steam: id: 848350 -'Katana Kami: A Way of the Samurai Story': +"Katana Kami: A Way of the Samurai Story": installDir: RD: {} launch: - /KatanaKami.exe: + "/KatanaKami.exe": - when: - bit: 64 os: windows @@ -286908,7 +287753,7 @@ Katana Kata: installDir: Katana Kata: {} launch: - /KatanaKata.exe: + "/KatanaKata.exe": - when: - bit: 64 os: windows @@ -286919,7 +287764,7 @@ Katana Soul: installDir: Katana Soul: {} launch: - /Katana Soul.exe: + "/Katana Soul.exe": - when: - os: windows store: steam @@ -286932,13 +287777,13 @@ Katana X: id: 615910 Katana Zero: files: - /Katana_ZERO: + "/Katana_ZERO": tags: - config - save when: - os: windows - /Packages/DevolverDigital.KatanaZero_6kzv4j18v0c96/LocalCache/Local/Katana_ZERO: + "/Packages/DevolverDigital.KatanaZero_6kzv4j18v0c96/LocalCache/Local/Katana_ZERO": tags: - save when: @@ -286949,11 +287794,11 @@ Katana Zero: installDir: Katana ZERO: {} launch: - /Katana ZERO.exe: + "/Katana ZERO.exe": - when: - os: windows store: steam - /Katana_ZERO.app/Contents/MacOS/Katana_ZERO: + "/Katana_ZERO.app/Contents/MacOS/Katana_ZERO": - when: - os: mac store: steam @@ -286961,45 +287806,45 @@ Katana Zero: id: 460950 Katawa Shoujo: files: - /.renpy/katawashoujo_actual: + "/.renpy/katawashoujo_actual": tags: - save when: - os: linux - /Library/RenPy/katawashoujo_actual: + "/Library/RenPy/katawashoujo_actual": tags: - save when: - os: mac - /Renpy/katawashoujo_actual/*.save: + "/Renpy/katawashoujo_actual/*.save": tags: - save when: - os: windows - /Renpy/katawashoujo_actual/persistent: + "/Renpy/katawashoujo_actual/persistent": tags: - config when: - os: windows - /Renpy/katawashoujo_actual_*/persistent: + "/Renpy/katawashoujo_actual_*/persistent": tags: - config when: - os: windows -Kate's Test: +"Kate's Test": installDir: - Kate's Test: {} + "Kate's Test": {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: id: 790260 -'Kate: Collateral Damage': +"Kate: Collateral Damage": installDir: Kate: {} launch: - /Kate.exe: + "/Kate.exe": - when: - os: windows store: steam @@ -287009,7 +287854,7 @@ Katharsis: installDir: Katharsis: {} launch: - /Katharsis.exe: + "/Katharsis.exe": - when: - os: windows store: steam @@ -287017,22 +287862,22 @@ Katharsis: id: 675730 Kathy Rain: files: - /acsetup.cfg: + "/acsetup.cfg": tags: - config when: - os: windows - /agssave.*: + "/agssave.*": tags: - save when: - os: windows - /Applications/Kathy Rain/KathyRain.app/Contents/Resources: + "/Applications/Kathy Rain/KathyRain.app/Contents/Resources": tags: - save when: - os: mac - /Applications/Kathy Rain/KathyRain.app/Contents/Resources/acsetup.cfg: + "/Applications/Kathy Rain/KathyRain.app/Contents/Resources/acsetup.cfg": tags: - config when: @@ -287042,29 +287887,29 @@ Kathy Rain: installDir: Kathy Rain: {} launch: - /KathyRain.app: + "/KathyRain.app": - when: - os: mac store: steam - /kathyrain.exe: + "/kathyrain.exe": - when: - os: windows store: steam steam: id: 370910 -'Kathy Rain: Director''s Cut': +"Kathy Rain: Director's Cut": files: - /AppData/LocalLow/Clifftop Games/Kathy Rain_ Director's Cut: + "/AppData/LocalLow/Clifftop Games/Kathy Rain_ Director's Cut": tags: - save when: - os: windows - /unity3d/Clifftop Games/Kathy Rain_ Director's Cut: + "/unity3d/Clifftop Games/Kathy Rain_ Director's Cut": tags: - save when: - os: linux - /unity3d/Clifftop Games/Kathy Rain_ Director's Cut/prefs: + "/unity3d/Clifftop Games/Kathy Rain_ Director's Cut/prefs": tags: - config when: @@ -287074,22 +287919,22 @@ Kathy Rain: installDir: Kathy Rain Directors Cut: {} launch: - /KathyRainDirectorsCut.app: + "/KathyRainDirectorsCut.app": - when: - os: mac store: steam - /KathyRainDirectorsCut.exe: + "/KathyRainDirectorsCut.exe": - when: - bit: 64 os: windows store: steam - /KathyRainDirectorsCut.x64: + "/KathyRainDirectorsCut.x64": - when: - bit: 64 os: linux store: steam registry: - 'HKEY_CURRENT_USER/Software/Clifftop Games/Kathy Rain: Director''s Cut': + "HKEY_CURRENT_USER/Software/Clifftop Games/Kathy Rain: Director's Cut": tags: - config steam: @@ -287098,11 +287943,11 @@ Katie: installDir: Katie: {} launch: - /Katie.app: + "/Katie.app": - when: - os: mac store: steam - /Katie.exe: + "/Katie.exe": - when: - os: windows store: steam @@ -287112,21 +287957,21 @@ Katto: installDir: Katto: {} launch: - /Katto.exe: + "/Katto.exe": - when: - os: windows store: steam steam: id: 869010 -'Katy & Bob: Cake Café': +"Katy & Bob: Cake Café": installDir: Katy & Bob Cake Café: {} launch: - /Katy And Bob Cake Cafe.app: + "/Katy And Bob Cake Cafe.app": - when: - os: mac store: steam - /Katy And Bob Cake Cafe.exe: + "/Katy And Bob Cake Cafe.exe": - when: - os: windows store: steam @@ -287136,17 +287981,17 @@ Katy and Bob Way Back Home: installDir: Katy and Bob Way Back Home: {} launch: - /kb_way_back_home.exe: + "/kb_way_back_home.exe": - when: - os: windows store: steam steam: id: 575890 -'Katy and Bob: Safari Cafe': +"Katy and Bob: Safari Cafe": installDir: Katy and Bob Safari Cafe: {} launch: - /Katy & Bob 2.exe: + "/Katy & Bob 2.exe": - when: - store: steam steam: @@ -287158,7 +288003,7 @@ Kautic: installDir: Kautic: {} launch: - /Kautic.exe: + "/Kautic.exe": - when: - os: windows store: steam @@ -287168,11 +288013,11 @@ Kawaii Deathu Desu: installDir: Kawaii Deathu Desu: {} launch: - /osx_content/KDD-MACOS.app: + "/osx_content/KDD-MACOS.app": - when: - os: mac store: steam - /windows_content/kdd.exe: + "/windows_content/kdd.exe": - when: - os: windows store: steam @@ -287182,7 +288027,7 @@ Kawaii Girls Puzzle: installDir: Kawaii girls puzzle: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -287192,11 +288037,11 @@ Kawaii Neko Girls: installDir: Kawaii Neko Girls: {} launch: - /KNG.app: + "/KNG.app": - when: - os: mac store: steam - /Kawaii Neko Girls.exe: + "/Kawaii Neko Girls.exe": - when: - os: windows store: steam @@ -287206,7 +288051,7 @@ Kawaii Rainbow Portal: installDir: Kawaii Rainbow Portal: {} launch: - /Kawaii.exe: + "/Kawaii.exe": - when: - store: steam steam: @@ -287215,7 +288060,7 @@ Kawanakajima no Kassen: installDir: Kawanakajima: {} launch: - /Kawanakajima_Launcher.exe: + "/Kawanakajima_Launcher.exe": - when: - os: windows store: steam @@ -287231,16 +288076,16 @@ Kaz Ball: installDir: Kaz Ball: {} launch: - /Kaz Ball.exe: + "/Kaz Ball.exe": - when: - os: windows store: steam - /Kaz Ball.x86: + "/Kaz Ball.x86": - when: - bit: 32 os: linux store: steam - /Kaz Ball.x86_64: + "/Kaz Ball.x86_64": - when: - bit: 64 os: linux @@ -287251,7 +288096,7 @@ Kaze and the Wild Masks: installDir: Kaze and the Wild Masks: {} launch: - /Kaze and the Wild Masks.exe: + "/Kaze and the Wild Masks.exe": - when: - os: windows store: steam @@ -287261,17 +288106,17 @@ Ke-Tsu-No-Ana: installDir: Ke-Tsu-No-Ana: {} launch: - /ke_tsu_no_ana.exe: + "/ke_tsu_no_ana.exe": - when: - os: windows store: steam steam: id: 472830 -'Keatz: The Lonely Bird': +"Keatz: The Lonely Bird": installDir: Keatz The Lonely Bird: {} launch: - /KeatzTheLonelyBird.exe: + "/KeatzTheLonelyBird.exe": - when: - os: windows store: steam @@ -287281,21 +288126,21 @@ Kebab It Up!: installDir: Kebab it Up!: {} launch: - /kebab.exe: + "/kebab.exe": - when: - os: windows store: steam - /kebab.x86_64: + "/kebab.x86_64": - when: - os: linux store: steam steam: id: 745400 -Kedemara - The Orphan's Ballad (Ch.1 & 2): +"Kedemara - The Orphan's Ballad (Ch.1 & 2)": installDir: - Kedemara - The Orphan's Ballad: {} + "Kedemara - The Orphan's Ballad": {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -287305,11 +288150,11 @@ Keebles: installDir: Keebles: {} launch: - /Keebles.app: + "/Keebles.app": - when: - os: mac store: steam - /Keebles.exe: + "/Keebles.exe": - when: - os: windows store: steam @@ -287319,11 +288164,11 @@ Keen: installDir: Keen: {} launch: - /Keen.app: + "/Keen.app": - when: - os: mac store: steam - /Keen.exe: + "/Keen.exe": - when: - os: windows store: steam @@ -287339,30 +288184,30 @@ Keep Defending: Keep Defending: {} steam: id: 527720 -'Keep It Cool, Man': +"Keep It Cool, Man": files: - /.local/share/KICM: + "/.local/share/KICM": tags: - save when: - os: linux - /KICM: + "/KICM": tags: - save when: - os: windows installDir: - 'Keep it Cool, Man': {} + "Keep it Cool, Man": {} launch: - '/Contents/MacOS/Keep it Cool, Man': + "/Contents/MacOS/Keep it Cool, Man": - when: - os: mac store: steam - '/Keep it Cool, Man.exe': + "/Keep it Cool, Man.exe": - when: - os: windows store: steam - '/Keep it Cool, Man.x86_64': + "/Keep it Cool, Man.x86_64": - when: - os: linux store: steam @@ -287372,7 +288217,7 @@ Keep It Safe 2: installDir: Keep It Safe 2: {} launch: - /KeepItSafe2PC.exe: + "/KeepItSafe2PC.exe": - when: - os: windows store: steam @@ -287382,15 +288227,15 @@ Keep Rollin!: installDir: Keep Rollin: {} launch: - /Keep Rollin.app/Contents/MacOS/Keep Rollin: + "/Keep Rollin.app/Contents/MacOS/Keep Rollin": - when: - os: mac store: steam - /Keep Rollin.exe: + "/Keep Rollin.exe": - when: - os: windows store: steam - /Keep Rollin.x86: + "/Keep Rollin.x86": - when: - os: linux store: steam @@ -287400,26 +288245,28 @@ Keep Running: installDir: Keep Running: {} launch: - /KeepRunning_RunToTheCure.exe: + "/KeepRunning_RunToTheCure.exe": - when: - os: windows store: steam + - os: mac + store: steam steam: id: 869580 Keep Talking and Nobody Explodes: files: - /.config/unity3d/Steel Crate Games/Keep Talking and Nobody Explodes: + "/.config/unity3d/Steel Crate Games/Keep Talking and Nobody Explodes": tags: - save when: - os: linux - /AppData/LocalLow/Steel Crate Games/Keep Talking and Nobody Explodes: + "/AppData/LocalLow/Steel Crate Games/Keep Talking and Nobody Explodes": tags: - config - save when: - os: windows - /Library/Application Support/com.keeptalkinggame: + "/Library/Application Support/com.keeptalkinggame": tags: - save when: @@ -287427,22 +288274,22 @@ Keep Talking and Nobody Explodes: installDir: Keep Talking and Nobody Explodes: {} launch: - /Keep Talking and Nobody Explodes.app: - - arguments: '-force-glcore' + "/Keep Talking and Nobody Explodes.app": + - arguments: "-force-glcore" when: - os: mac store: steam - /ktane.exe: - - arguments: '-vrmode none' + "/ktane.exe": + - arguments: "-vrmode none" when: - os: windows store: steam - /ktane.x86: + "/ktane.x86": - when: - bit: 32 os: linux store: steam - /ktane.x86_64: + "/ktane.x86_64": - when: - bit: 64 os: linux @@ -287454,9 +288301,9 @@ Keep Watching VR: Keep Watching: {} steam: id: 552630 -'Keep in Mind: Remastered': +"Keep in Mind: Remastered": files: - /AppData/LocalLow/Akupara Games/Keep In Mind/Settings.json: + "/AppData/LocalLow/Akupara Games/Keep In Mind/Settings.json": tags: - config when: @@ -287466,11 +288313,11 @@ Keep Watching VR: installDir: Keep In Mind: {} launch: - /KeepInMind.app: + "/KeepInMind.app": - when: - os: mac store: steam - /KeepInMind.exe: + "/KeepInMind.exe": - when: - os: windows store: steam @@ -287489,7 +288336,7 @@ Keeper 2119: installDir: Keeper 2119: {} launch: - /TheKeeperPrototypeUnity.exe: + "/TheKeeperPrototypeUnity.exe": - when: - os: windows store: steam @@ -287499,21 +288346,21 @@ Keeper of the Sun and Moon: installDir: Keeper of the Sun and Moon: {} launch: - /Keeper of the Sun and Moon.app/Contents/MacOS/Keeper of the Sun and Moon: + "/Keeper of the Sun and Moon.app/Contents/MacOS/Keeper of the Sun and Moon": - when: - os: mac store: steam - /KeeperOfTheSunAndMoon: + "/KeeperOfTheSunAndMoon": - when: - os: linux store: steam - /KeeperOfTheSunAndMoon.exe: + "/KeeperOfTheSunAndMoon.exe": - when: - os: windows store: steam steam: id: 1097670 -'Keeper: The Hunter of Insect': +"Keeper: The Hunter of Insect": installDir: keeper_the hunter of insect: {} steam: @@ -287522,19 +288369,19 @@ KeeperRL: installDir: KeeperRL: {} launch: - /keeper.exe: + "/keeper.exe": - when: - os: windows store: steam - - arguments: '--restore_settings' + - arguments: "--restore_settings" when: - os: windows store: steam - /keeper_linux.sh: + "/keeper_linux.sh": - when: - os: linux store: steam - /keeper_mac.command: + "/keeper_mac.command": - when: - os: mac store: steam @@ -287544,15 +288391,15 @@ Keepers Dungeon: installDir: Keepers Dungeon: {} launch: - /DepperLinux.x86_64: + "/DepperLinux.x86_64": - when: - os: linux store: steam - /Keeper.app/Contents/MacOS/DepperMac: + "/Keeper.app/Contents/MacOS/DepperMac": - when: - os: mac store: steam - /Keepers Dungeon.exe: + "/Keepers Dungeon.exe": - when: - os: windows store: steam @@ -287562,19 +288409,19 @@ Keeplanet: installDir: Keeplanet: {} launch: - /keeplanet.exe: + "/keeplanet.exe": - when: - store: steam steam: id: 703120 Keepsake: files: - /res/config: + "/res/config": tags: - config when: - os: windows - /res/save: + "/res/save": tags: - save when: @@ -287582,11 +288429,11 @@ Keepsake: installDir: Keepsake: {} launch: - /Keepsake.exe: + "/Keepsake.exe": - when: - os: windows store: steam - /keepsake.app: + "/keepsake.app": - when: - os: mac store: steam @@ -287596,11 +288443,11 @@ Keiko Everlasting: installDir: Keiko Everlasting: {} launch: - /KE.app: + "/KE.app": - when: - os: mac store: steam - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -287609,34 +288456,34 @@ Keiko Everlasting: Kek Story: steam: id: 575730 -'Kekistan: This is War': +"Kekistan: This is War": steam: id: 734140 Kelipot / 形骸骑士: installDir: Kelipot: {} launch: - /Kelipot.exe: + "/Kelipot.exe": - when: - os: windows store: steam steam: id: 1090440 -Kelly Slater's Pro Surfer: +"Kelly Slater's Pro Surfer": files: - /Game/config.cfg: + "/Game/config.cfg": tags: - config when: - os: windows - /Game/savegame: + "/Game/savegame": tags: - save when: - os: windows Kelvin and the Infamous Machine: files: - /.prefs/iMachine: + "/.prefs/iMachine": tags: - config - save @@ -287646,15 +288493,15 @@ Kelvin and the Infamous Machine: installDir: Kelvin and the Infamous Machine: {} launch: - /Infamous Machine.app/Contents/MacOS/JavaApplicationStub: + "/Infamous Machine.app/Contents/MacOS/JavaApplicationStub": - when: - os: mac store: steam - /InfamousMachine.exe: + "/InfamousMachine.exe": - when: - os: windows store: steam - /InfamousMachine.sh: + "/InfamousMachine.sh": - when: - os: linux store: steam @@ -287664,40 +288511,40 @@ Kemonomichi-White Moment-: installDir: Kemonomichi-White Moment-: {} launch: - /kemonomichi_white_engsub/game/kemonomichi_white_engsub.exe: + "/kemonomichi_white_engsub/game/kemonomichi_white_engsub.exe": - when: - os: windows store: steam steam: id: 843760 -Ken Follett's The Pillars of the Earth: +"Ken Follett's The Pillars of the Earth": files: - /Library/Application Support/Daedalic Entertainment GmbH/The Pillars of the Earth: + "/Library/Application Support/Daedalic Entertainment GmbH/The Pillars of the Earth": tags: - config when: - os: mac - /Library/Application Support/Daedalic Entertainment GmbH/The Pillars of the Earth/Savegames: + "/Library/Application Support/Daedalic Entertainment GmbH/The Pillars of the Earth/Savegames": tags: - save when: - os: mac - /Daedalic Entertainment GmbH/The Pillars of the Earth: + "/Daedalic Entertainment GmbH/The Pillars of the Earth": tags: - config when: - os: windows - /Daedalic Entertainment GmbH/The Pillars of the Earth/Savegames: + "/Daedalic Entertainment GmbH/The Pillars of the Earth/Savegames": tags: - save when: - os: windows - /Daedalic Entertainment GmbH/The Pillars of the Earth: + "/Daedalic Entertainment GmbH/The Pillars of the Earth": tags: - config when: - os: linux - /Daedalic Entertainment GmbH/The Pillars of the Earth/Savegames: + "/Daedalic Entertainment GmbH/The Pillars of the Earth/Savegames": tags: - save when: @@ -287712,16 +288559,16 @@ Ken Follett's The Pillars of the Earth: installDir: The Pillars of the Earth: {} launch: - /The Pillars of the Earth.app: + "/The Pillars of the Earth.app": - when: - bit: 64 os: mac store: steam - /pillars.exe: + "/pillars.exe": - when: - os: windows store: steam - /start: + "/start": - when: - bit: 64 os: linux @@ -287732,19 +288579,19 @@ Ken ga Kimi: installDir: 剑为君舞: {} launch: - /Launcher.exe: + "/Launcher.exe": - when: - store: steam steam: id: 1162650 -'Kena: Bridge of Spirits': +"Kena: Bridge of Spirits": files: - /Kena/Saved/Config/WindowsNoEditor: + "/Kena/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /Kena/Saved/SaveGames: + "/Kena/Saved/SaveGames": tags: - save when: @@ -287752,7 +288599,7 @@ Ken ga Kimi: installDir: Kena Bridge of Spirits: {} launch: - /Kena.exe: + "/Kena.exe": - when: - os: windows store: steam @@ -287760,7 +288607,7 @@ Ken ga Kimi: id: 1954200 Kenshi: files: - /Kenshi/save: + "/Kenshi/save": tags: - save when: @@ -287770,12 +288617,12 @@ Kenshi: installDir: Kenshi: {} launch: - /kenshi_x32.exe: + "/kenshi_x32.exe": - when: - bit: 32 os: windows store: steam - /kenshi_x64.exe: + "/kenshi_x64.exe": - when: - bit: 64 os: windows @@ -287786,15 +288633,15 @@ Kenshō: installDir: Kensho: {} launch: - /Kensho: + "/Kensho": - when: - os: linux store: steam - /Kensho.app/Contents/MacOS/Kensho: + "/Kensho.app/Contents/MacOS/Kensho": - when: - os: mac store: steam - /Kensho.exe: + "/Kensho.exe": - when: - os: windows store: steam @@ -287804,15 +288651,15 @@ Kentucky Dash: installDir: Kentucky Dash: {} launch: - /Kentucky Dash.app: + "/Kentucky Dash.app": - when: - os: mac store: steam - /Kentucky Dash.exe: + "/Kentucky Dash.exe": - when: - os: windows store: steam - /Kentucky Dash.x86_64: + "/Kentucky Dash.x86_64": - when: - os: linux store: steam @@ -287820,48 +288667,48 @@ Kentucky Dash: id: 730780 Kentucky Route Zero: files: - /KentuckyRouteZero: + "/KentuckyRouteZero": tags: - config - save when: - store: gog - /AppData/LocalLow/CardboardComputer/KentuckyRouteZero: + "/AppData/LocalLow/CardboardComputer/KentuckyRouteZero": tags: - config - save when: - os: windows - /Documents/KentuckyRouteZero: + "/Documents/KentuckyRouteZero": tags: - config - save when: - - os: linux - os: mac + - os: linux gog: id: 1207660653 installDir: KentuckyRouteZero: {} launch: - /KentuckyRouteZero.app: + "/KentuckyRouteZero.app": - when: - os: mac store: steam - /KentuckyRouteZero.exe: + "/KentuckyRouteZero.exe": - when: - os: windows store: steam - - arguments: '-force-opengl' + - arguments: "-force-opengl" when: - os: windows store: steam - /KentuckyRouteZero.x86: + "/KentuckyRouteZero.x86": - when: - bit: 32 os: linux store: steam - /KentuckyRouteZero.x86_64: + "/KentuckyRouteZero.x86_64": - when: - bit: 64 os: linux @@ -287872,11 +288719,11 @@ Kentucky Route Zero: - config steam: id: 231200 -'Keplerth: Another World': +"Keplerth: Another World": installDir: KEPLERTH: {} launch: - /Keplerth.exe: + "/Keplerth.exe": - when: - os: windows store: steam @@ -287884,19 +288731,19 @@ Kentucky Route Zero: id: 747200 Kerbal Space Program: files: - /saves: + "/saves": tags: - save when: - os: windows - os: mac - os: linux - /settings.cfg: + "/settings.cfg": tags: - config when: - os: windows - /.config/unity3d/Squad/Kerbal Space Program: + "/.config/unity3d/Squad/Kerbal Space Program": tags: - config when: @@ -287911,15 +288758,15 @@ Kerbal Space Program: installDir: Kerbal Space Program: {} launch: - /KSP.app: + "/KSP.app": - when: - os: mac store: steam - /KSP.x86_64: + "/KSP.x86_64": - when: - os: linux store: steam - /KSP_x64.exe: + "/KSP_x64.exe": - when: - bit: 64 os: windows @@ -287928,12 +288775,12 @@ Kerbal Space Program: id: 220200 Kerbal Space Program 2: files: - /AppData/LocalLow/Intercept Games/Kerbal Space Program 2/Global: + "/AppData/LocalLow/Intercept Games/Kerbal Space Program 2/Global": tags: - config when: - os: windows - /AppData/LocalLow/Intercept Games/Kerbal Space Program 2/Saves: + "/AppData/LocalLow/Intercept Games/Kerbal Space Program 2/Saves": tags: - save when: @@ -287941,18 +288788,18 @@ Kerbal Space Program 2: installDir: Kerbal Space Program 2: {} launch: - /PDLauncher/LauncherPatcher.exe: + "/PDLauncher/LauncherPatcher.exe": - when: - os: windows store: steam - workingDir: /PDLauncher + workingDir: "/PDLauncher" steam: id: 954850 Kerfuffight: installDir: Kerfuffight: {} launch: - /Kerfuffight.exe: + "/Kerfuffight.exe": - when: - bit: 64 os: windows @@ -287961,7 +288808,7 @@ Kerfuffight: id: 1084090 Kero Blaster: files: - /rsc_k/profile: + "/rsc_k/profile": tags: - config - save @@ -287975,7 +288822,7 @@ Kero Blaster: installDir: Kero Blaster: {} launch: - /KeroBlaster.exe: + "/KeroBlaster.exe": - when: - os: windows store: steam @@ -287990,7 +288837,7 @@ KeyBoard Guitar Master: installDir: Keyboard Guitar Master: {} launch: - /KeyboardGuitarMaster.exe: + "/KeyboardGuitarMaster.exe": - when: - os: windows store: steam @@ -287998,7 +288845,7 @@ KeyBoard Guitar Master: id: 831260 KeyWe: files: - /AppData/LocalLow/Stonewheat _ Sons/KeyWe: + "/AppData/LocalLow/Stonewheat _ Sons/KeyWe": tags: - config - save @@ -288012,7 +288859,7 @@ KeyWe: installDir: KeyWe: {} launch: - /KeyWe.exe: + "/KeyWe.exe": - when: - store: steam steam: @@ -288021,7 +288868,7 @@ Keyboard Killer: installDir: Keyboard Killer: {} launch: - /Keyboard Killer.exe: + "/Keyboard Killer.exe": - when: - os: windows store: steam @@ -288029,7 +288876,7 @@ Keyboard Killer: id: 613250 Keyboard Killers: files: - /Keyboard_Killers/Saved/SaveGames/*.sav: + "/Keyboard_Killers/Saved/SaveGames/*.sav": tags: - config - save @@ -288038,7 +288885,7 @@ Keyboard Killers: installDir: Keyboard Killers: {} launch: - /Keyboard_Killers.exe: + "/Keyboard_Killers.exe": - when: - os: windows store: steam @@ -288051,7 +288898,7 @@ Keyboard Warrior: installDir: Keyboard Warrior: {} launch: - /Keyboard Warrior.exe: + "/Keyboard Warrior.exe": - when: - os: windows store: steam @@ -288061,113 +288908,113 @@ Keyg: installDir: keyg: {} launch: - /keyg: + "/keyg": - when: - os: linux store: steam - /keyg.app/Contents/MacOS/keyg: + "/keyg.app/Contents/MacOS/keyg": - when: - os: mac store: steam - /keyg.exe: + "/keyg.exe": - when: - os: windows store: steam steam: id: 922550 -'Keyhole Spy: Fantasy Passion': +"Keyhole Spy: Fantasy Passion": installDir: Keyhole Spy Fantasy Passion: {} launch: - /Keyhole Spy Fantasy Passion.app/Contents/MacOS/Keyhole Spy Fantasy Passion: + "/Keyhole Spy Fantasy Passion.app/Contents/MacOS/Keyhole Spy Fantasy Passion": - when: - os: mac store: steam - /Keyhole Spy Fantasy Passion.exe: + "/Keyhole Spy Fantasy Passion.exe": - when: - os: windows store: steam steam: id: 948720 -'Keyhole Spy: Frozen Hotties': +"Keyhole Spy: Frozen Hotties": installDir: Keyhole Spy Frozen Hotties: {} launch: - /Keyhole Spy Frozen Hotties.app/Contents/MacOS/Keyhole Spy Frozen Hotties: + "/Keyhole Spy Frozen Hotties.app/Contents/MacOS/Keyhole Spy Frozen Hotties": - when: - os: mac store: steam - /Keyhole Spy Frozen Hotties.exe: + "/Keyhole Spy Frozen Hotties.exe": - when: - os: windows store: steam steam: id: 965060 -'Keyhole Spy: Hot Nurses': +"Keyhole Spy: Hot Nurses": installDir: Keyhole Spy Hot Nurses: {} launch: - /Keyhole Spy Hot Nurses.app/Contents/MacOS/Keyhole Spy Hot Nurses: + "/Keyhole Spy Hot Nurses.app/Contents/MacOS/Keyhole Spy Hot Nurses": - when: - os: mac store: steam - /Keyhole Spy Hot Nurses.exe: + "/Keyhole Spy Hot Nurses.exe": - when: - os: windows store: steam steam: id: 935500 -'Keyhole Spy: Lots of Girls': +"Keyhole Spy: Lots of Girls": installDir: Keyhole Spy Lots of Girls: {} launch: - /Keyhole Spy Lots of Girls.app/Contents/MacOS/Keyhole Spy Lots of Girls: + "/Keyhole Spy Lots of Girls.app/Contents/MacOS/Keyhole Spy Lots of Girls": - when: - os: mac store: steam - /Keyhole Spy Lots of Girls.exe: + "/Keyhole Spy Lots of Girls.exe": - when: - os: windows store: steam steam: id: 948730 -'Keyhole Spy: Naughty Witches': +"Keyhole Spy: Naughty Witches": installDir: Keyhole Spy Naughty Witches: {} launch: - /Keyhole Spy Naughty Witches.app/Contents/MacOS/Keyhole Spy Naughty Witches: + "/Keyhole Spy Naughty Witches.app/Contents/MacOS/Keyhole Spy Naughty Witches": - when: - os: mac store: steam - /Keyhole Spy Naughty Witches.exe: + "/Keyhole Spy Naughty Witches.exe": - when: - os: windows store: steam steam: id: 948710 -'Keyhole Spy: Student Girls': +"Keyhole Spy: Student Girls": installDir: Keyhole Spy Student Girls: {} launch: - /Keyhole Spy Student Girls.app/Contents/MacOS/Keyhole Spy Student Girls: + "/Keyhole Spy Student Girls.app/Contents/MacOS/Keyhole Spy Student Girls": - when: - os: mac store: steam - /Keyhole Spy Student Girls.exe: + "/Keyhole Spy Student Girls.exe": - when: - os: windows store: steam steam: id: 906000 -'Keyhole Spy: Teachers': +"Keyhole Spy: Teachers": installDir: Keyhole Spy Teachers: {} launch: - /Keyhole Spy Teachers.app/Contents/MacOS/Keyhole Spy Teachers: + "/Keyhole Spy Teachers.app/Contents/MacOS/Keyhole Spy Teachers": - when: - os: mac store: steam - /Keyhole Spy Teachers.exe: + "/Keyhole Spy Teachers.exe": - when: - os: windows store: steam @@ -288177,7 +289024,7 @@ Keys: installDir: Keys: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -288187,7 +289034,7 @@ Keyscaper: installDir: Keyscaper: {} launch: - /Keyscaper.exe: + "/Keyscaper.exe": - when: - bit: 64 os: windows @@ -288198,7 +289045,7 @@ Keystones: installDir: Keystones: {} launch: - /Keystones.exe: + "/Keystones.exe": - when: - os: windows store: steam @@ -288208,11 +289055,11 @@ Khaba: installDir: Khaba: {} launch: - /Khaba.app: + "/Khaba.app": - when: - os: mac store: steam - /Khaba.exe: + "/Khaba.exe": - when: - os: windows store: steam @@ -288222,25 +289069,25 @@ Khan VS Kahn: installDir: Khan VS Kahn: {} launch: - /kvk.app: + "/kvk.app": - when: - os: mac store: steam - /kvk.exe: + "/kvk.exe": - when: - os: windows store: steam - /kvk.x86_64: + "/kvk.x86_64": - when: - os: linux store: steam steam: id: 1020330 -'Khan: Absolute Power': +"Khan: Absolute Power": installDir: Khan Absolute Power: {} launch: - /khanlauncher.exe: + "/khanlauncher.exe": - when: - os: windows store: steam @@ -288250,21 +289097,21 @@ Khaos Wind: installDir: Khaos Wind: {} launch: - /KhaosWind.exe: + "/KhaosWind.exe": - when: - os: windows store: steam steam: id: 970760 -Kharon's Crypt - Even Death May Die: +"Kharon's Crypt - Even Death May Die": installDir: Kharons_Crypt_Even_Death_May_Die: {} launch: - /KharonsCrypt_Even_Death_May_Die: + "/KharonsCrypt_Even_Death_May_Die": - when: - os: linux store: steam - /KharonsCrypt_Even_Death_May_Die.exe: + "/KharonsCrypt_Even_Death_May_Die.exe": - when: - os: windows store: steam @@ -288274,28 +289121,28 @@ Khet 2.0: installDir: Khet 2.0: {} launch: - /Khet: + "/Khet": - when: - os: linux store: steam - /Khet.app: + "/Khet.app": - when: - os: mac store: steam - /Khet.exe: + "/Khet.exe": - when: - os: windows store: steam steam: id: 312720 -'Khimera: Destroy All Monster Girls': +"Khimera: Destroy All Monster Girls": files: - /khimera/chimControls.cfg: + "/khimera/chimControls.cfg": tags: - config when: - os: windows - /khimera/chimera.dat: + "/khimera/chimera.dat": tags: - save when: @@ -288303,7 +289150,7 @@ Khet 2.0: installDir: Khimera Destroy All Monster Girls: {} launch: - /khimera1.exe: + "/khimera1.exe": - when: - os: windows store: steam @@ -288311,12 +289158,12 @@ Khet 2.0: id: 467380 Kholat: files: - /Kholat/Saved/Config/WindowsNoEditor: + "/Kholat/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /Kholat/Saved/SaveGames: + "/Kholat/Saved/SaveGames": tags: - save when: @@ -288326,12 +289173,12 @@ Kholat: installDir: KHOLAT: {} launch: - /Kholat.app: + "/Kholat.app": - when: - bit: 64 os: mac store: steam - /Kholat.exe: + "/Kholat.exe": - when: - os: windows store: steam @@ -288341,41 +289188,41 @@ Khospis: installDir: Khospis: {} launch: - /Khospis.app/Contents/MacOS/Khospis Macs 1.5: + "/Khospis.app/Contents/MacOS/Khospis Macs 1.5": - when: - os: mac store: steam - /Khospis.exe: + "/Khospis.exe": - when: - os: windows store: steam - /Khospis.x86: + "/Khospis.x86": - when: - bit: 32 os: linux store: steam - /Khospis.x86_64: + "/Khospis.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 922220 -Khufu's Delivery Service: +"Khufu's Delivery Service": installDir: - Khufu's Delivery Service: {} + "Khufu's Delivery Service": {} launch: - /Khufu's Delivery Service.exe: + "/Khufu's Delivery Service.exe": - when: - os: windows store: steam steam: id: 652310 -KiKi's adventure: +"KiKi's adventure": installDir: - KiKi'sAdventure: {} + "KiKi'sAdventure": {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: @@ -288384,7 +289231,7 @@ KiKiMiMi: installDir: KiKiMiMi: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -288394,7 +289241,7 @@ KiKiMiMi2: installDir: KiKiMiMi2 听能力搜查官2: {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: @@ -288403,7 +289250,7 @@ Kiai Resonance: installDir: Kiai Resonance: {} launch: - /Kiai Resonance.exe: + "/Kiai Resonance.exe": - when: - os: windows store: steam @@ -288413,15 +289260,15 @@ Kick Ass Commandos: installDir: Kick Ass Commandos: {} launch: - /KickAssCommandos.app: + "/KickAssCommandos.app": - when: - os: mac store: steam - /KickAssCommandos.exe: + "/KickAssCommandos.exe": - when: - os: windows store: steam - /KickAssCommandos.x86: + "/KickAssCommandos.x86": - when: - os: linux store: steam @@ -288434,20 +289281,20 @@ Kick Of Dungeon: installDir: win: {} launch: - /KickOfDungeon.exe: + "/KickOfDungeon.exe": - when: - os: windows store: steam steam: id: 1206550 -'Kick Speed: Global Operations': +"Kick Speed: Global Operations": steam: id: 628340 Kick The Anime Simulator: installDir: Kick The Anime Simulator: {} launch: - /Kick The Anime Simulator.exe: + "/Kick The Anime Simulator.exe": - when: - store: steam steam: @@ -288456,7 +289303,7 @@ Kick The Puppet: installDir: Kick The Puppet: {} launch: - /Kick The Puppet.exe: + "/Kick The Puppet.exe": - when: - store: steam steam: @@ -288465,7 +289312,7 @@ Kick Them Out!!!: installDir: Kick Them Out!!!: {} launch: - /Kick Them Out!!!.exe: + "/Kick Them Out!!!.exe": - when: - os: windows store: steam @@ -288473,12 +289320,12 @@ Kick Them Out!!!: id: 873280 Kick-Ass 2: files: - /Kick-Ass 2/SavedGame: + "/Kick-Ass 2/SavedGame": tags: - config when: - os: windows - /Kick-Ass 2/config: + "/Kick-Ass 2/config": tags: - config when: @@ -288486,8 +289333,8 @@ Kick-Ass 2: installDir: Kick-Ass 2: {} launch: - /Launcher.exe: - - arguments: '-s' + "/Launcher.exe": + - arguments: "-s" when: - os: windows store: steam @@ -288498,7 +289345,7 @@ Kick-Ass 2: id: 304170 KickBeat: files: - /userdata//255370: + "/userdata//255370": tags: - save when: @@ -288507,7 +289354,7 @@ KickBeat: installDir: KickBeat: {} launch: - /KickBeat.exe: + "/KickBeat.exe": - when: - store: steam steam: @@ -288520,7 +289367,7 @@ Kicker VR: kicker: {} steam: id: 866040 -'Kicking Kittens: Putin Saves the World': +"Kicking Kittens: Putin Saves the World": steam: id: 783600 Kickochet: @@ -288530,17 +289377,17 @@ Kickoff Legends: installDir: Kickoff Legends: {} launch: - /KickoffLegends: + "/KickoffLegends": - when: - bit: 64 os: linux store: steam - /KickoffLegends.app: + "/KickoffLegends.app": - when: - bit: 64 os: mac store: steam - /KickoffLegends.exe: + "/KickoffLegends.exe": - when: - bit: 64 os: windows @@ -288551,7 +289398,7 @@ Kickshot: installDir: Kickshot: {} launch: - /Kickshot.exe: + "/Kickshot.exe": - when: - os: windows store: steam @@ -288559,21 +289406,21 @@ Kickshot: id: 842500 Kid A Mnesia Exhibition: files: - /KidAMnesia/Saved/Config/WindowsNoEditor: + "/KidAMnesia/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /KidAMnesia/Saved/SaveGames: + "/KidAMnesia/Saved/SaveGames": tags: - save when: - os: windows -'Kid Baby: Starchild': +"Kid Baby: Starchild": installDir: Kid Baby Starchild: {} launch: - /Runtime.exe: + "/Runtime.exe": - when: - bit: 64 os: windows @@ -288582,44 +289429,44 @@ Kid A Mnesia Exhibition: id: 559630 Kid Chameleon: files: - /SEGA Genesis Classics/0019: + "/SEGA Genesis Classics/0019": tags: - save when: - os: windows - /SEGA Genesis Classics/setup.dat: + "/SEGA Genesis Classics/setup.dat": tags: - config when: - os: windows - /SEGA Mega Drive Classics/0019: + "/SEGA Mega Drive Classics/0019": tags: - save when: - os: windows - /SEGA Mega Drive Classics/setup.dat: + "/SEGA Mega Drive Classics/setup.dat": tags: - config when: - os: windows steam: id: 34311 -Kid's Safety With George Blessure: +"Kid's Safety With George Blessure": steam: id: 1117770 Kidnapped: installDir: Kidnapped: {} launch: - /Kidnapped.app: + "/Kidnapped.app": - when: - os: mac store: steam - /Kidnapped.exe: + "/Kidnapped.exe": - when: - os: windows store: steam - /Kidnapped.x86: + "/Kidnapped.x86": - when: - os: linux store: steam @@ -288629,15 +289476,15 @@ Kids: installDir: KIDS: {} launch: - /Kids: + "/Kids": - when: - os: linux store: steam - /Kids.app/Contents/MacOS/Kids: + "/Kids.app/Contents/MacOS/Kids": - when: - os: mac store: steam - /Kids.exe: + "/Kids.exe": - when: - os: windows store: steam @@ -288647,21 +289494,21 @@ Kids Learn: installDir: Kids Learn: {} launch: - /kidslearn.exe: + "/kidslearn.exe": - when: - os: windows store: steam steam: id: 890210 -'Kids of Hellas: Back to Olympus': +"Kids of Hellas: Back to Olympus": installDir: Kids of Hellas Back to Olympus: {} launch: - /KidsOfHellas_CE.app: + "/KidsOfHellas_CE.app": - when: - os: mac store: steam - /KidsOfHellas_CE.exe: + "/KidsOfHellas_CE.exe": - when: - os: windows store: steam @@ -288671,11 +289518,11 @@ Kidz: installDir: Kidz: {} launch: - /kidz.app: + "/kidz.app": - when: - os: mac store: steam - /kidz.exe: + "/kidz.exe": - when: - os: windows store: steam @@ -288685,18 +289532,18 @@ Kiitsu: installDir: Kiitsu: {} launch: - /SwitchProject.exe: + "/SwitchProject.exe": - when: - bit: 64 os: windows store: steam steam: id: 686270 -'Kika & Daigo: A Curious Tale': +"Kika & Daigo: A Curious Tale": installDir: Kika & Daigo A Curious Tale: {} launch: - /Kika & Daigo A Curious Tale.exe: + "/Kika & Daigo A Curious Tale.exe": - when: - os: windows store: steam @@ -288706,31 +289553,31 @@ Kilcount: installDir: Kilcount: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam steam: id: 870800 -Kili's treasure: +"Kili's treasure": installDir: KiliTreasureHunt: {} launch: - /KiliTreasureHunt.app/Contents/MacOS/KiliTreasureHunt: + "/KiliTreasureHunt.app/Contents/MacOS/KiliTreasureHunt": - when: - os: mac store: steam - /KiliTreasureHunt/KiliTreasureHunt.exe: + "/KiliTreasureHunt/KiliTreasureHunt.exe": - when: - os: windows store: steam steam: id: 1219020 -Kill 'Em All: +"Kill 'Em All": installDir: - Kill 'Em All: {} + "Kill 'Em All": {} launch: - /Kill 'Em All.exe: + "/Kill 'Em All.exe": - when: - bit: 64 os: windows @@ -288741,7 +289588,7 @@ Kill All Zombies: installDir: killallzombies: {} launch: - /zombies.exe: + "/zombies.exe": - when: - bit: 64 os: windows @@ -288752,28 +289599,28 @@ Kill Fun Yeah: installDir: KillFunYeah: {} launch: - /KFY.app/Contents/Resources/KFY_Client: + "/KFY.app/Contents/Resources/KFY_Client": - when: - os: mac store: steam - - arguments: '--editor' + - arguments: "--editor" when: - os: mac store: steam - /KFY_Client.exe: + "/KFY_Client.exe": - when: - os: windows store: steam - - arguments: '--editor' + - arguments: "--editor" when: - os: windows store: steam - /runClient.sh: + "/runClient.sh": - when: - bit: 64 os: linux store: steam - /runEditor.sh: + "/runEditor.sh": - when: - bit: 64 os: linux @@ -288784,7 +289631,7 @@ Kill Him! Online Wars: installDir: KillHim: {} launch: - /KillHim.exe: + "/KillHim.exe": - when: - os: windows store: steam @@ -288792,22 +289639,22 @@ Kill Him! Online Wars: id: 817250 Kill It with Fire: files: - /Kani/Saved/Config/WindowsNoEditor: + "/Kani/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /Kani/Saved/SaveGames/*Settings_KIWF_*.sav: + "/Kani/Saved/SaveGames/*Settings_KIWF_*.sav": tags: - config when: - os: windows - /Kani/Saved/SaveGames/DefaultSlot_KIWF_*.sav: + "/Kani/Saved/SaveGames/DefaultSlot_KIWF_*.sav": tags: - save when: - os: windows - /Packages/tinyBuildGames.KillItWithFire_3sz1pp2ynv2xe/SystemAppData/wgs: + "/Packages/tinyBuildGames.KillItWithFire_3sz1pp2ynv2xe/SystemAppData/wgs": tags: - save when: @@ -288819,7 +289666,7 @@ Kill It with Fire: installDir: Kill It With Fire: {} launch: - /Kani.exe: + "/Kani.exe": - when: - bit: 64 os: windows @@ -288828,7 +289675,7 @@ Kill It with Fire: id: 1179210 Kill Switch: files: - /Saves: + "/Saves": tags: - save when: @@ -288837,7 +289684,7 @@ Kill The Monster: installDir: Kill The Monster: {} launch: - /KTM.exe: + "/KTM.exe": - when: - os: windows store: steam @@ -288855,7 +289702,7 @@ Kill The Santa: installDir: Kill The Santa: {} launch: - /Kill The Santa/Kill The Santa.exe: + "/Kill The Santa/Kill The Santa.exe": - when: - os: windows store: steam @@ -288865,7 +289712,7 @@ Kill Tiger: installDir: KillTigerExe: {} launch: - /KillTiger.exe: + "/KillTiger.exe": - when: - os: windows store: steam @@ -288876,7 +289723,7 @@ Kill jump monster: id: 1027290 Kill la Kill -IF: files: - /KILLlaKILL_IF: + "/KILLlaKILL_IF": tags: - config - save @@ -288885,7 +289732,7 @@ Kill la Kill -IF: installDir: KILL la KILL -IF: {} launch: - /KILLlaKILL_IF.exe: + "/KILLlaKILL_IF.exe": - when: - os: windows store: steam @@ -288893,7 +289740,7 @@ Kill la Kill -IF: id: 922500 Kill or Love: files: - /game/saves/*.save: + "/game/saves/*.save": tags: - save when: @@ -288901,15 +289748,15 @@ Kill or Love: installDir: Kill or Love: {} launch: - /KillorLove.app/Contents/MacOS/KillorLove: + "/KillorLove.app/Contents/MacOS/KillorLove": - when: - os: mac store: steam - /KillorLove.exe: + "/KillorLove.exe": - when: - os: windows store: steam - /KillorLove.sh: + "/KillorLove.sh": - when: - os: linux store: steam @@ -288919,15 +289766,15 @@ Kill the Bad Guy: installDir: Kill The Bad Guy: {} launch: - /KillTheBadGuy.app: + "/KillTheBadGuy.app": - when: - os: mac store: steam - /KillTheBadGuy.exe: + "/KillTheBadGuy.exe": - when: - os: windows store: steam - /KillTheBadGuy_x86.sh: + "/KillTheBadGuy_x86.sh": - when: - os: linux store: steam @@ -288937,7 +289784,7 @@ Kill the Dictator: installDir: Kill the Dictator: {} launch: - /KillTheDictator.exe: + "/KillTheDictator.exe": - when: - os: windows store: steam @@ -288946,7 +289793,7 @@ Kill the Dictator: Kill the Emoji: steam: id: 698720 -'Kill the Emoji: The Remake': +"Kill the Emoji: The Remake": steam: id: 1189930 Kill the Hentai: @@ -288956,11 +289803,11 @@ Kill the Superweapon: installDir: Kill the Superweapon: {} launch: - /KillTheSuperWeaponMac.app: + "/KillTheSuperWeaponMac.app": - when: - os: mac store: steam - /KillTheSuperweapon.exe: + "/KillTheSuperweapon.exe": - when: - os: windows store: steam @@ -288970,7 +289817,7 @@ Kill to Collect: installDir: Kill to Collect: {} launch: - /ktc.exe: + "/ktc.exe": - when: - bit: 64 os: windows @@ -288981,11 +289828,11 @@ KillStreak.tv: installDir: KillStreak.tv: {} launch: - /KillStreak.tv.app: + "/KillStreak.tv.app": - when: - os: mac store: steam - /KillStreak.tv.exe: + "/KillStreak.tv.exe": - when: - os: windows store: steam @@ -288999,7 +289846,7 @@ Killbot: installDir: Killbot: {} launch: - /build.exe: + "/build.exe": - when: - os: windows store: steam @@ -289009,11 +289856,11 @@ Killbox: installDir: killbox: {} launch: - /killbox.app/Contents/MacOS/killbox: + "/killbox.app/Contents/MacOS/killbox": - when: - os: mac store: steam - /killbox.exe: + "/killbox.exe": - when: - os: windows store: steam @@ -289032,11 +289879,11 @@ Killer Chambers: installDir: KillerChambers: {} launch: - /KillerChambers.exe: + "/KillerChambers.exe": - when: - os: windows store: steam - /Killerchambers.x86_64: + "/Killerchambers.x86_64": - when: - os: linux store: steam @@ -289046,7 +289893,7 @@ Killer Clowns: installDir: Killer Clowns: {} launch: - /Killer Clowns.exe: + "/Killer Clowns.exe": - when: - os: windows store: steam @@ -289056,7 +289903,7 @@ Killer Elite - Time to Die: installDir: Killer Elite – Time to Die: {} launch: - /KillerEliteTimeToDie.exe: + "/KillerEliteTimeToDie.exe": - when: - os: windows store: steam @@ -289066,15 +289913,15 @@ Killer Gin: installDir: Killer Gin: {} launch: - /Game.app: + "/Game.app": - when: - os: mac store: steam - /Game.exe: + "/Game.exe": - when: - os: windows store: steam - /nw: + "/nw": - when: - os: linux store: steam @@ -289082,13 +289929,13 @@ Killer Gin: id: 1164480 Killer Instinct: files: - /Packages/Microsoft.KillerInstinct-Win10_8wekyb3d8bbwe/Settings: + "/Packages/Microsoft.KillerInstinct-Win10_8wekyb3d8bbwe/Settings": tags: - config when: - os: windows store: microsoft - /Packages/Microsoft.KillerInstinct-Win10_8wekyb3d8bbwe/SystemAppData/wgs: + "/Packages/Microsoft.KillerInstinct-Win10_8wekyb3d8bbwe/SystemAppData/wgs": tags: - save when: @@ -289097,7 +289944,7 @@ Killer Instinct: installDir: Killer Instinct: {} launch: - /KillerInstinctX64_r.exe: + "/KillerInstinctX64_r.exe": - when: - bit: 64 os: windows @@ -289106,17 +289953,17 @@ Killer Instinct: id: 577940 Killer Is Dead: files: - /KidGame/Config: + "/KidGame/Config": tags: - config when: - os: windows - /KidGame/SaveData/KID.sav: + "/KidGame/SaveData/KID.sav": tags: - save when: - os: windows - /userdata//261110/remote/profile.bin: + "/userdata//261110/remote/profile.bin": tags: - save when: @@ -289126,15 +289973,15 @@ Killer Is Dead: installDir: KillerIsDead: {} launch: - /Binaries/Win32/KidGame.exe: - - arguments: '-debug_steamapi' + "/Binaries/Win32/KidGame.exe": + - arguments: "-debug_steamapi" when: - bit: 32 os: windows store: steam steam: id: 261110 -'Killer Klowns from Outer Space: The Game': +"Killer Klowns from Outer Space: The Game": steam: id: 1556100 Killer Klownz: @@ -289146,11 +289993,11 @@ Killer Queen Black: installDir: Killer Queen Black: {} launch: - /Killer Queen Black.app: + "/Killer Queen Black.app": - when: - os: mac store: steam - /Killer Queen Black.exe: + "/Killer Queen Black.exe": - when: - os: windows store: steam @@ -289158,7 +290005,7 @@ Killer Queen Black: id: 663670 Killer7: files: - /Saved Games/killer7: + "/Saved Games/killer7": tags: - config - save @@ -289167,7 +290014,7 @@ Killer7: installDir: killer7: {} launch: - /Killer7Win.exe: + "/Killer7Win.exe": - when: - os: windows store: steam @@ -289177,7 +290024,7 @@ Killers and Thieves: installDir: Killers and Thieves: {} launch: - /Killersandthieves.exe: + "/Killersandthieves.exe": - when: - os: windows store: steam @@ -289187,7 +290034,7 @@ Killfest: installDir: Killfest: {} launch: - /Killfest.exe: + "/Killfest.exe": - when: - os: windows store: steam @@ -289195,17 +290042,17 @@ Killfest: id: 2127300 Killing Floor: files: - /System/*.ini: + "/System/*.ini": tags: - config when: - os: windows - /.killingfloor: + "/.killingfloor": tags: - config when: - os: linux - /Library/Application Support/Killing Floor: + "/Library/Application Support/Killing Floor": tags: - config when: @@ -289213,31 +290060,31 @@ Killing Floor: installDir: KillingFloor: {} launch: - /Killing Floor.App: + "/Killing Floor.App": - when: - os: mac store: steam - /System/KillingFloor.exe: + "/System/KillingFloor.exe": - when: - os: windows store: steam - /System/killingfloor-bin: + "/System/killingfloor-bin": - when: - os: linux store: steam - workingDir: /System + workingDir: "/System" steam: id: 1250 Killing Floor - Toy Master: installDir: KillingFloor: {} launch: - /System/modstart.sh: + "/System/modstart.sh": - when: - os: linux store: steam - workingDir: /System - /modstart.sh: + workingDir: "/System" + "/modstart.sh": - when: - os: mac store: steam @@ -289245,7 +290092,7 @@ Killing Floor - Toy Master: id: 326960 Killing Floor 2: files: - /My Games/KillingFloor2/KFGame/Config: + "/My Games/KillingFloor2/KFGame/Config": tags: - config when: @@ -289253,21 +290100,21 @@ Killing Floor 2: installDir: killingfloor2: {} launch: - /Binaries/Win64/KFGame.exe: + "/Binaries/Win64/KFGame.exe": - when: - bit: 64 os: windows store: steam steam: id: 232090 -'Killing Floor: Incursion': +"Killing Floor: Incursion": files: - /Incursion/Saved/Config/WindowsNoEditor/*.ini: + "/Incursion/Saved/Config/WindowsNoEditor/*.ini": tags: - config when: - os: windows - /Incursion/Saved/SaveGames/*.sav: + "/Incursion/Saved/SaveGames/*.sav": tags: - save when: @@ -289280,7 +290127,7 @@ Killing Random Dudes Online: installDir: Killing random dudes online: {} launch: - /KILLING RANDOM DUDES ONLINE.exe: + "/KILLING RANDOM DUDES ONLINE.exe": - when: - os: windows store: steam @@ -289290,8 +290137,11 @@ Killing Room: installDir: Killing Room: {} launch: - /KillingRoom.exe: + "/KillingRoom.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam @@ -289299,12 +290149,12 @@ Killing Room: id: 407560 Killing Time: files: - /KillTime.cfg: + "/KillTime.cfg": tags: - config when: - os: windows - /Savegame.*: + "/Savegame.*": tags: - save when: @@ -289314,7 +290164,7 @@ Killing Time: installDir: Killing Time: {} launch: - /KILLTIME.EXE: + "/KILLTIME.EXE": - when: - os: windows store: steam @@ -289324,28 +290174,34 @@ Killing Time (2017): installDir: Killing Time: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam steam: id: 686190 -'Killing Time at Lightspeed: Enhanced Edition': +"Killing Time at Lightspeed: Enhanced Edition": installDir: Killing Time at Lightspeed: {} launch: - /nw: + "/nw": - when: - bit: 32 os: linux store: steam - /nw.app: + - bit: 64 + os: linux + store: steam + "/nw.app": - when: - bit: 64 os: mac store: steam - /nw.exe: + "/nw.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam @@ -289355,7 +290211,7 @@ Killing Trials: installDir: Killing Trials: {} launch: - /DumpInk.exe: + "/DumpInk.exe": - when: - store: steam steam: @@ -289369,7 +290225,7 @@ Killjoy Hunter Yuuko: installDir: Killjoy Hunter Yuuko: {} launch: - /ef_action.exe: + "/ef_action.exe": - when: - store: steam steam: @@ -289378,8 +290234,8 @@ Killsquad: installDir: KillSquad: {} launch: - /Game.exe: - - arguments: '-nohmd' + "/Game.exe": + - arguments: "-nohmd" when: - bit: 64 os: windows @@ -289395,15 +290251,15 @@ Kim: installDir: Kim: {} launch: - /Kim.app: + "/Kim.app": - when: - os: mac store: steam - /Kim.exe: + "/Kim.exe": - when: - os: windows store: steam - /Kim.x86: + "/Kim.x86": - when: - os: linux store: steam @@ -289413,23 +290269,23 @@ Kim Jong-Boom: installDir: Kim Jong-Boom: {} launch: - /Kimchenboom.app: + "/Kimchenboom.app": - when: - os: mac store: steam - /Kimchenboom.exe: + "/Kimchenboom.exe": - when: - os: windows store: steam - /Kimchenboom.sh: + "/Kimchenboom.sh": - when: - os: linux store: steam steam: id: 711070 -'Kim Possible: Legend of the Monkey''s Eye': +"Kim Possible: Legend of the Monkey's Eye": files: - /Config.ini: + "/Config.ini": tags: - config when: @@ -289438,7 +290294,7 @@ Kim Shooter: installDir: Kim Shooter: {} launch: - /KimShooter.exe: + "/KimShooter.exe": - when: - os: windows store: steam @@ -289453,7 +290309,7 @@ Kimagure Temptation: installDir: Kimagure Temptation: {} launch: - /kimaten.exe: + "/kimaten.exe": - when: - os: windows store: steam @@ -289463,7 +290319,7 @@ Kimmie Jong On Nukes the World: installDir: Kimmie Jong On Nukes the World: {} launch: - /Kimmie Jong On Nukes the World.exe: + "/Kimmie Jong On Nukes the World.exe": - when: - os: windows store: steam @@ -289473,27 +290329,27 @@ Kimmy: installDir: Kimmy: {} launch: - /Kimmy.app: + "/Kimmy.app": - when: - os: mac store: steam - /Kimmy.exe: + "/Kimmy.exe": - when: - os: windows store: steam steam: id: 600660 -'Kimulator 2: Brother of Time': +"Kimulator 2: Brother of Time": steam: id: 657900 -'Kimulator: Fight for Your Destiny': +"Kimulator: Fight for Your Destiny": steam: id: 475430 Kinacoustic: installDir: Kinacoustic: {} launch: - /Kinacoustic.exe: + "/Kinacoustic.exe": - when: - os: windows store: steam @@ -289503,24 +290359,24 @@ Kinaman vs Gray Elephant: installDir: Kinaman vs Gray Elephant: {} launch: - /Kinaman vs Gray Elephant.exe: + "/Kinaman vs Gray Elephant.exe": - when: - store: steam steam: id: 845480 Kind Words: files: - /AppData/LocalLow/Popcannibal/Kind Words/kindwords.json: + "/AppData/LocalLow/Popcannibal/Kind Words/kindwords.json": tags: - save when: - os: windows - /unity3d/Popcannibal/Kind Words: + "/unity3d/Popcannibal/Kind Words": tags: - config when: - os: linux - /unity3d/Popcannibal/Kind Words/kindwords.json: + "/unity3d/Popcannibal/Kind Words/kindwords.json": tags: - save when: @@ -289528,16 +290384,16 @@ Kind Words: installDir: Kind Words: {} launch: - /Kind Words.app/Contents/MacOS/Kind Words: + "/Kind Words.app/Contents/MacOS/Kind Words": - when: - os: mac store: steam - /Kind Words.exe: + "/Kind Words.exe": - when: - bit: 64 os: windows store: steam - /Kind Words.x86_64: + "/Kind Words.x86_64": - when: - bit: 64 os: linux @@ -289550,12 +290406,12 @@ Kind Words: id: 1070710 Kindergarten: files: - /.config/unity3d/SmashGames/Kindergarten: + "/.config/unity3d/SmashGames/Kindergarten": tags: - config when: - os: linux - /AppData/LocalLow/SmashGames/Kindergarten/*.sav: + "/AppData/LocalLow/SmashGames/Kindergarten/*.sav": tags: - save when: @@ -289563,15 +290419,15 @@ Kindergarten: installDir: Kindergarten: {} launch: - /Kindergarten.exe: + "/Kindergarten.exe": - when: - os: windows store: steam - /Kindergarten.x86: + "/Kindergarten.x86": - when: - os: linux store: steam - /MacBuild.app: + "/MacBuild.app": - when: - os: mac store: steam @@ -289586,15 +290442,15 @@ Kindergarten 2: installDir: Kindergarten 2: {} launch: - /Kindergarten2.app: + "/Kindergarten2.app": - when: - os: mac store: steam - /Kindergarten2.exe: + "/Kindergarten2.exe": - when: - os: windows store: steam - /Kindergarten2.x86_64: + "/Kindergarten2.x86_64": - when: - os: linux store: steam @@ -289611,7 +290467,7 @@ Kindled Cavern: id: 578660 Kindred Spirits on the Roof: files: - /.mangagamer/Kindred Spirits Full Chorus: + "/.mangagamer/Kindred Spirits Full Chorus": tags: - save when: @@ -289621,15 +290477,15 @@ Kindred Spirits on the Roof: installDir: Kindred Spirits on the Roof: {} launch: - /KindredSpirits.app: + "/KindredSpirits.app": - when: - os: mac store: steam - /KindredSpirits.exe: + "/KindredSpirits.exe": - when: - os: windows store: steam - /KindredSpirits.sh: + "/KindredSpirits.sh": - when: - os: linux store: steam @@ -289639,7 +290495,7 @@ Kine: installDir: Kine: {} launch: - /Kine.exe: + "/Kine.exe": - when: - store: steam steam: @@ -289653,40 +290509,40 @@ Kinetic Void: installDir: Kinetic Void: {} launch: - /Kinetic Void.app: + "/Kinetic Void.app": - when: - os: mac store: steam - /Kinetic Void.exe: + "/Kinetic Void.exe": - when: - os: windows store: steam - /Kinetic Void.x86: + "/Kinetic Void.x86": - when: - bit: 32 os: linux store: steam - /Kinetic Void.x86_64: + "/Kinetic Void.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 227160 -'King Arthur II: The Role-Playing Wargame': +"King Arthur II: The Role-Playing Wargame": gog: id: 1442577441 installDir: KingArthurII: {} launch: - /KingArthurII.exe: + "/KingArthurII.exe": - when: - store: steam steam: id: 24480 -King Arthur's Gold: +"King Arthur's Gold": files: - /*.cfg: + "/*.cfg": tags: - config when: @@ -289694,63 +290550,63 @@ King Arthur's Gold: gog: id: 1420648480 installDir: - King Arthur's Gold: {} + "King Arthur's Gold": {} launch: - /KAG.app/Contents/MacOS/KAG: + "/KAG.app/Contents/MacOS/KAG": - arguments: steam noautoupdate when: - os: mac store: steam - /KAG.exe: + "/KAG.exe": - arguments: steam noautoupdate noconsole when: - os: windows store: steam - /rungame.sh: + "/rungame.sh": - arguments: steam noautoupdate when: - os: linux store: steam steam: id: 219830 -'King Arthur: Fallen Champions': +"King Arthur: Fallen Champions": gog: id: 1444731945 installDir: King Arthur - Fallen Champions: {} launch: - /Launcher.exe: + "/Launcher.exe": - when: - store: steam steam: id: 24460 -'King Arthur: Knight''s Tale': +"King Arthur: Knight's Tale": files: - /NeocoreGames/KA_KT/Users//Save: + "/NeocoreGames/KA_KT/Users//Save": tags: - save when: - os: windows installDir: - King Arthur Knight's Tale: {} + "King Arthur Knight's Tale": {} launch: - /KA_KT.exe: + "/KA_KT.exe": - when: - bit: 64 os: windows store: steam steam: id: 1157390 -'King Arthur: The Role-Playing Wargame': +"King Arthur: The Role-Playing Wargame": gog: id: 1444731636 installDir: King Arthur - The Role-playing Wargame: {} launch: - /KingArthur.exe: + "/KingArthur.exe": - when: - store: steam - /KingArthurMulti.exe: + "/KingArthurMulti.exe": - when: - store: steam steam: @@ -289759,7 +290615,7 @@ King Battle: installDir: King Battle: {} launch: - /wzzy.exe: + "/wzzy.exe": - when: - os: windows store: steam @@ -289769,19 +290625,19 @@ King Erik: installDir: King Erik: {} launch: - /Contents/MacOS/KingErik_Mac: - - arguments: '-steam' + "/Contents/MacOS/KingErik_Mac": + - arguments: "-steam" when: - os: mac store: steam - /King Erik.exe: - - arguments: '-steam' + "/King Erik.exe": + - arguments: "-steam" when: - bit: 64 os: windows store: steam - /KingErik_Linux.x86_64: - - arguments: '-steam' + "/KingErik_Linux.x86_64": + - arguments: "-steam" when: - bit: 64 os: linux @@ -289792,7 +290648,7 @@ King Exit: installDir: King Exit: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -289807,20 +290663,20 @@ King Lucas: installDir: King Lucas: {} launch: - /KingLucas.app/Contents/MacOS/KingLucas: + "/KingLucas.app/Contents/MacOS/KingLucas": - when: - os: mac store: steam - /KingLucas.exe: + "/KingLucas.exe": - when: - os: windows store: steam - /KingLucas.x86: + "/KingLucas.x86": - when: - bit: 32 os: linux store: steam - /KingLucas.x86_64: + "/KingLucas.x86_64": - when: - bit: 64 os: linux @@ -289831,7 +290687,7 @@ King Machine: installDir: King Machine: {} launch: - /kingmachine.exe: + "/kingmachine.exe": - when: - os: windows store: steam @@ -289841,15 +290697,15 @@ King Oddball: installDir: King Oddball: {} launch: - /KingOddball: + "/KingOddball": - when: - os: linux store: steam - /KingOddball.app: + "/KingOddball.app": - when: - os: mac store: steam - /KingOddball.exe: + "/KingOddball.exe": - when: - os: windows store: steam @@ -289858,12 +290714,12 @@ King Oddball: King Of Firearms: steam: id: 1171290 -'King Of Gods: Angel The Awakening Of A Demon': +"King Of Gods: Angel The Awakening Of A Demon": installDir: King Of Gods Angel The Awakening Of A Demon: {} launch: - /nw.exe: - - arguments: '--in-process-gpu' + "/nw.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam @@ -289873,21 +290729,21 @@ King Rabbit: installDir: King Rabbit: {} launch: - /King Rabbit.app: + "/King Rabbit.app": - when: - os: mac store: steam - /King Rabbit.exe: + "/King Rabbit.exe": - when: - os: windows store: steam steam: id: 852340 -King Randall's Party: +"King Randall's Party": installDir: - King Randall's Party: {} + "King Randall's Party": {} launch: - /KingRandallsParty.exe: + "/KingRandallsParty.exe": - when: - os: windows store: steam @@ -289900,7 +290756,7 @@ King and Assassins: installDir: King and Assassins: {} launch: - /KingAndAssassins.exe: + "/KingAndAssassins.exe": - when: - os: windows store: steam @@ -289910,18 +290766,18 @@ King of Bali: installDir: King Of Bali: {} launch: - /nw.exe: - - arguments: '--in-process-gpu' + "/nw.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam - /nwjs.app: + "/nwjs.app": - when: - os: mac store: steam steam: id: 678190 -'King of Booze: Drinking Game': +"King of Booze: Drinking Game": installDir: King of Booze: {} steam: @@ -289930,7 +290786,7 @@ King of Crabs: installDir: King of Crabs: {} launch: - /King of Crabs.exe: + "/King of Crabs.exe": - when: - os: windows store: steam @@ -289940,7 +290796,7 @@ King of Crowns Chess Online: installDir: King of Crowns Chess Online: {} launch: - /kingofcrownschess.exe: + "/kingofcrownschess.exe": - when: - os: windows store: steam @@ -289950,7 +290806,7 @@ King of Dirt: installDir: King Of Dirt: {} launch: - /KingOfDirt.exe: + "/KingOfDirt.exe": - when: - os: windows store: steam @@ -289960,7 +290816,7 @@ King of Dragon Balls: installDir: King of Dragon Balls: {} launch: - /King of Dragon Balls.exe: + "/King of Dragon Balls.exe": - when: - store: steam steam: @@ -289978,11 +290834,11 @@ King of Dragon Pass (2015): installDir: King of Dragon Pass: {} launch: - /King of Dragon Pass.app: + "/King of Dragon Pass.app": - when: - os: mac store: steam - /King of Dragon Pass.exe: + "/King of Dragon Pass.exe": - when: - os: windows store: steam @@ -289995,12 +290851,12 @@ King of Halloween: installDir: King of Halloween: {} launch: - /nw.exe: - - arguments: '--in-process-gpu' + "/nw.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam - /nwjs.app: + "/nwjs.app": - when: - os: mac store: steam @@ -290010,8 +290866,8 @@ King of Kinks: installDir: King of Kinks: {} launch: - /KingOfKinks.exe: - - arguments: '-screen-width 454 -screen-height 804 -screen-fullscreen 0' + "/KingOfKinks.exe": + - arguments: "-screen-width 454 -screen-height 804 -screen-fullscreen 0" when: - os: windows store: steam @@ -290021,12 +290877,12 @@ King of Mazes: installDir: King of Mazes: {} launch: - /nw.exe: - - arguments: '--in-process-gpu' + "/nw.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam - /nwjs.app: + "/nwjs.app": - when: - os: mac store: steam @@ -290039,12 +290895,12 @@ King of Phoenix: installDir: King of Phoenix: {} launch: - /nw.exe: - - arguments: '--in-process-gpu' + "/nw.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam - /nwjs.app: + "/nwjs.app": - when: - os: mac store: steam @@ -290054,12 +290910,12 @@ King of Queendoms: installDir: King of Queendoms: {} launch: - /nw.exe: - - arguments: '--in-process-gpu' + "/nw.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam - /nwjs.app: + "/nwjs.app": - when: - os: mac store: steam @@ -290067,12 +290923,12 @@ King of Queendoms: id: 957410 King of Retail: files: - /KingOfRetail/Saved/Config/WindowsNoEditor: + "/KingOfRetail/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /KingOfRetail/Saved/SaveGame: + "/KingOfRetail/Saved/SaveGame": tags: - save when: @@ -290082,11 +290938,11 @@ King of Retail: installDir: King of Retail: {} launch: - /KingOfRetail.app: + "/KingOfRetail.app": - when: - os: mac store: steam - /KingOfRetail.exe: + "/KingOfRetail.exe": - when: - os: windows store: steam @@ -290094,12 +290950,12 @@ King of Retail: id: 968250 King of Seas: files: - /3DClouds/KOS/Saved/Config/WindowsNoEditor: + "/3DClouds/KOS/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /3DClouds/KOS/Saved/SaveGames: + "/3DClouds/KOS/Saved/SaveGames": tags: - save when: @@ -290112,7 +290968,7 @@ King of Seas: installDir: King of Seas: {} launch: - /KOS.exe: + "/KOS.exe": - when: - os: windows store: steam @@ -290127,12 +290983,12 @@ King of Texas: installDir: King of Texas: {} launch: - /nw.exe: - - arguments: '--in-process-gpu' + "/nw.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam - /nwjs.app: + "/nwjs.app": - when: - os: mac store: steam @@ -290143,11 +290999,11 @@ King of my Castle VR: King of my Castle VR: {} steam: id: 911210 -'King of the Couch: Zoovival': +"King of the Couch: Zoovival": installDir: King of the Couch Zoovival: {} launch: - /King_of_the_Couch_Zoovival.exe: + "/King_of_the_Couch_Zoovival.exe": - when: - os: windows store: steam @@ -290157,7 +291013,7 @@ King of the Cul-De-Sac: installDir: King of the Cul-de-sac: {} launch: - /KingoftheCulDeSac-1.7-market/KingoftheCulDeSac.exe: + "/KingoftheCulDeSac-1.7-market/KingoftheCulDeSac.exe": - when: - os: windows store: steam @@ -290167,25 +291023,25 @@ King of the Dead: installDir: King of the Dead: {} launch: - /king.exe: + "/king.exe": - when: - os: windows store: steam steam: id: 897950 -'King of the Dwarves: Underground City Builder': +"King of the Dwarves: Underground City Builder": installDir: King under the Mountain: {} launch: - /Contents/MacOS/King under the Mountain: + "/Contents/MacOS/King under the Mountain": - when: - os: mac store: steam - /King under the Mountain: + "/King under the Mountain": - when: - os: linux store: steam - /King under the Mountain.exe: + "/King under the Mountain.exe": - when: - os: windows store: steam @@ -290195,7 +291051,7 @@ King of the Eggs: installDir: King of the Eggs: {} launch: - /KOTE.exe: + "/KOTE.exe": - when: - os: windows store: steam @@ -290205,11 +291061,11 @@ King of the Hat: installDir: King of the Hat: {} launch: - /KingOfTheHat.app/Contents/MacOS/KingOfTheHat: + "/KingOfTheHat.app/Contents/MacOS/KingOfTheHat": - when: - os: mac store: steam - /KingOfTheHat.exe: + "/KingOfTheHat.exe": - when: - os: windows store: steam @@ -290221,7 +291077,7 @@ King of the Hat: id: 837350 King of the Monsters: files: - /SNK/kotm: + "/SNK/kotm": tags: - save when: @@ -290232,11 +291088,11 @@ King of the Sandcastle: installDir: King of the Sandcastle: {} launch: - /KingOfTheSandCastle.app: + "/KingOfTheSandCastle.app": - when: - os: mac store: steam - /KingOfTheSandCastle.exe: + "/KingOfTheSandCastle.exe": - when: - os: windows store: steam @@ -290246,7 +291102,7 @@ King of the World: installDir: King of the World: {} launch: - /King Of The World.exe: + "/King Of The World.exe": - when: - os: windows store: steam @@ -290256,7 +291112,7 @@ King or Pawn: installDir: Puzzle: {} launch: - /puzzle.exe: + "/puzzle.exe": - when: - store: steam steam: @@ -290265,14 +291121,14 @@ King rocket: installDir: King rocket: {} launch: - /King rocket.exe: + "/King rocket.exe": - when: - store: steam steam: id: 1183600 -King's Bounty II: +"King's Bounty II": files: - /KingsBounty2/Saved/SaveGames: + "/KingsBounty2/Saved/SaveGames": tags: - save when: @@ -290287,23 +291143,23 @@ King's Bounty II: - 1846949639 - 1847323141 installDir: - King's Bounty II: {} + "King's Bounty II": {} launch: - /KingsBounty2/Binaries/Win64/KingsBounty2.exe: + "/KingsBounty2/Binaries/Win64/KingsBounty2.exe": - when: - bit: 64 os: windows store: steam steam: id: 1135300 -'King''s Bounty: Armored Princess': +"King's Bounty: Armored Princess": files: - /My Games/Kings Bounty Princess: + "/My Games/Kings Bounty Princess": tags: - save when: - os: windows - /My Games/Kings Bounty Princess/game.ini: + "/My Games/Kings Bounty Princess/game.ini": tags: - config when: @@ -290313,24 +291169,24 @@ King's Bounty II: installDir: Kings Bounty Armored Princess: {} launch: - /King's Bounty - Armored Princess.app/Contents/MacOS/PrincessLauncher.sh: + "/King's Bounty - Armored Princess.app/Contents/MacOS/PrincessLauncher.sh": - when: - os: mac store: steam - /kb.exe: + "/kb.exe": - when: - os: windows store: steam steam: id: 3170 -'King''s Bounty: Crossworlds': +"King's Bounty: Crossworlds": files: - /My Games/Kings Bounty Crossworlds/$save: + "/My Games/Kings Bounty Crossworlds/$save": tags: - save when: - os: windows - /My Games/Kings Bounty Crossworlds/game.ini: + "/My Games/Kings Bounty Crossworlds/game.ini": tags: - config when: @@ -290340,20 +291196,20 @@ King's Bounty II: installDir: Kings Bounty Crossworlds: {} launch: - /kb.exe: + "/kb.exe": - when: - os: windows store: steam steam: id: 63910 -'King''s Bounty: Dark Side': +"King's Bounty: Dark Side": files: - /My Games/Kings Bounty The Dark Side/$save/base/darkside/: + "/My Games/Kings Bounty The Dark Side/$save/base/darkside/": tags: - save when: - os: windows - /My Games/Kings Bounty The Dark Side/config.ini: + "/My Games/Kings Bounty The Dark Side/config.ini": tags: - config when: @@ -290367,17 +291223,17 @@ King's Bounty II: installDir: Darkside: {} launch: - /KBDarkside.exe: + "/KBDarkside.exe": - when: - os: windows store: steam - /kingsbounty.app: + "/kingsbounty.app": - when: - os: mac store: steam steam: id: 289520 -'King''s Bounty: Legions': +"King's Bounty: Legions": id: steamExtra: - 261210 @@ -290388,25 +291244,25 @@ King's Bounty II: installDir: Kings Bounty Legions: {} launch: - /KingsBounty.app: + "/KingsBounty.app": - when: - os: mac store: steam - /KingsBounty.exe: + "/KingsBounty.exe": - when: - os: windows store: steam steam: id: 235400 -'King''s Bounty: The Legend': +"King's Bounty: The Legend": files: - /Library/Application Support/King' s Bounty - The Legend: + "/Library/Application Support/King' s Bounty - The Legend": tags: - config - save when: - os: mac - /My Games/Kings Bounty: + "/My Games/Kings Bounty": tags: - config - save @@ -290415,23 +291271,23 @@ King's Bounty II: gog: id: 1207658867 installDir: - King's Bounty - The Legend: {} + "King's Bounty - The Legend": {} launch: - /King' s Bounty - The Legend.app/Contents/MacOS/LegendLauncher.sh: + "/King' s Bounty - The Legend.app/Contents/MacOS/LegendLauncher.sh": - when: - os: mac store: steam - /kb.exe: + "/kb.exe": - when: - os: windows store: steam - /save_fixer.exe: + "/save_fixer.exe": - when: - os: windows store: steam steam: id: 25900 -'King''s Bounty: Warriors of the North': +"King's Bounty: Warriors of the North": gog: id: 1207667083 id: @@ -290439,27 +291295,27 @@ King's Bounty II: - 1207667093 - 1207667153 installDir: - King's Bounty - Warriors of the North: {} + "King's Bounty - Warriors of the North": {} launch: - /KBWotN.exe: + "/KBWotN.exe": - when: - os: windows store: steam - /King's Bounty - Warriors of the North.app: + "/King's Bounty - Warriors of the North.app": - when: - os: mac store: steam steam: id: 203350 -King's Guard TD: +"King's Guard TD": installDir: - King's Guard TD: {} + "King's Guard TD": {} launch: - /KingsGuardTD.app: + "/KingsGuardTD.app": - when: - os: mac store: steam - /KingsGuardTD.exe: + "/KingsGuardTD.exe": - when: - os: windows store: steam @@ -290469,9 +291325,9 @@ King's Guard TD: - save steam: id: 466730 -'King''s Heir: Rise to the Throne': +"King's Heir: Rise to the Throne": files: - /userdata//834390/remote/profile: + "/userdata//834390/remote/profile": tags: - config - save @@ -290481,63 +291337,63 @@ King's Guard TD: installDir: Kingmaker: {} launch: - /Kingmaker1.exe: + "/Kingmaker1.exe": - when: - os: windows store: steam - /Kingmaker1_amd64: + "/Kingmaker1_amd64": - when: - bit: 64 os: linux store: steam - /Kingmaker1_i386: + "/Kingmaker1_i386": - when: - bit: 32 os: linux store: steam - /mac_steam.app/Contents/MacOS/mac_steam: + "/mac_steam.app/Contents/MacOS/mac_steam": - when: - os: mac store: steam steam: id: 834390 -King's Lair: +"King's Lair": steam: id: 1019090 -King's League II: +"King's League II": installDir: - King's League II: {} + "King's League II": {} launch: - /Kings League II/Kings League II.exe: + "/Kings League II/Kings League II.exe": - when: - os: windows store: steam steam: id: 996080 -King's Quest (2015): +"King's Quest (2015)": files: - /Binaries/Win/KQSave: + "/Binaries/Win/KQSave": tags: - save when: - os: windows - /My Games/UnrealEngine3/GrahamsGame/Config: + "/My Games/UnrealEngine3/GrahamsGame/Config": tags: - config when: - os: windows installDir: - King's Quest: {} + "King's Quest": {} launch: - /Binaries/Win/KingsQuest.exe: + "/Binaries/Win/KingsQuest.exe": - when: - os: windows store: steam steam: id: 345390 -'King''s Quest II: Romancing the Throne': +"King's Quest II: Romancing the Throne": files: - /KQ2SG.*: + "/KQ2SG.*": tags: - save when: @@ -290546,22 +291402,22 @@ King's Quest (2015): gog: id: 1207661113 installDir: - King's Quest Collection: {} + "King's Quest Collection": {} launch: - /2016_KingsQuestCollection/SierraLauncher.exe: + "/2016_KingsQuestCollection/SierraLauncher.exe": - when: - store: steam - workingDir: /2016_KingsQuestCollection + workingDir: "/2016_KingsQuestCollection" steam: id: 10100 -'King''s Quest III: To Heir Is Human': +"King's Quest III: To Heir Is Human": files: - /KQ3SG.*: + "/KQ3SG.*": tags: - save when: - os: windows - /RESOURCE.CFG: + "/RESOURCE.CFG": tags: - config when: @@ -290569,17 +291425,17 @@ King's Quest (2015): gog: id: 1207661133 installDir: - King's Quest Collection: {} + "King's Quest Collection": {} launch: - /2016_KingsQuestCollection/SierraLauncher.exe: + "/2016_KingsQuestCollection/SierraLauncher.exe": - when: - store: steam - workingDir: /2016_KingsQuestCollection + workingDir: "/2016_KingsQuestCollection" steam: id: 10100 -'King''s Quest IV: The Perils of Rosella': +"King's Quest IV: The Perils of Rosella": files: - /KQ4SG.***: + "/KQ4SG.***": tags: - save when: @@ -290587,17 +291443,17 @@ King's Quest (2015): gog: id: 1207661153 installDir: - King's Quest Collection: {} + "King's Quest Collection": {} launch: - /2016_KingsQuestCollection/SierraLauncher.exe: + "/2016_KingsQuestCollection/SierraLauncher.exe": - when: - store: steam - workingDir: /2016_KingsQuestCollection + workingDir: "/2016_KingsQuestCollection" steam: id: 10100 -'King''s Quest V: Absence Makes the Heart Go Yonder!': +"King's Quest V: Absence Makes the Heart Go Yonder!": files: - /KQ5SG.***: + "/KQ5SG.***": tags: - save when: @@ -290605,17 +291461,17 @@ King's Quest (2015): gog: id: 1207661163 installDir: - King's Quest Collection: {} + "King's Quest Collection": {} launch: - /2016_KingsQuestCollection/SierraLauncher.exe: + "/2016_KingsQuestCollection/SierraLauncher.exe": - when: - store: steam - workingDir: /2016_KingsQuestCollection + workingDir: "/2016_KingsQuestCollection" steam: id: 10100 -'King''s Quest VI: Heir Today, Gone Tomorrow': +"King's Quest VI: Heir Today, Gone Tomorrow": files: - /KQ6SG.***: + "/KQ6SG.***": tags: - save when: @@ -290623,17 +291479,17 @@ King's Quest (2015): gog: id: 1207661173 installDir: - King's Quest Collection: {} + "King's Quest Collection": {} launch: - /2016_KingsQuestCollection/SierraLauncher.exe: + "/2016_KingsQuestCollection/SierraLauncher.exe": - when: - store: steam - workingDir: /2016_KingsQuestCollection + workingDir: "/2016_KingsQuestCollection" steam: id: 10100 -'King''s Quest VII: The Princeless Bride': +"King's Quest VII: The Princeless Bride": files: - /KQ7CDSG.***: + "/KQ7CDSG.***": tags: - save when: @@ -290641,37 +291497,37 @@ King's Quest (2015): gog: id: 1207661043 installDir: - King's Quest Collection: {} + "King's Quest Collection": {} launch: - /2016_KingsQuestCollection/SierraLauncher.exe: + "/2016_KingsQuestCollection/SierraLauncher.exe": - when: - store: steam - workingDir: /2016_KingsQuestCollection + workingDir: "/2016_KingsQuestCollection" steam: id: 10100 -'King''s Quest: Mask of Eternity': +"King's Quest: Mask of Eternity": files: - /Options.cs: + "/Options.cs": tags: - config when: - os: windows - /save: + "/save": tags: - save when: - os: windows gog: id: 1207661053 -'King''s Quest: Quest for the Crown': +"King's Quest: Quest for the Crown": files: - /KQ1SG.*: + "/KQ1SG.*": tags: - save when: - os: dos - os: windows - /RESOURCE.CFG: + "/RESOURCE.CFG": tags: - config when: @@ -290679,22 +291535,22 @@ King's Quest (2015): gog: id: 1207661083 installDir: - King's Quest Collection: {} + "King's Quest Collection": {} launch: - /2016_KingsQuestCollection/SierraLauncher.exe: + "/2016_KingsQuestCollection/SierraLauncher.exe": - when: - store: steam - workingDir: /2016_KingsQuestCollection + workingDir: "/2016_KingsQuestCollection" steam: id: 10100 -'King''s Table: The Legend of Ragnarok': +"King's Table: The Legend of Ragnarok": files: - /*.RAG: + "/*.RAG": tags: - save when: - os: dos - /RAGNAROK.CFG: + "/RAGNAROK.CFG": tags: - config when: @@ -290702,33 +291558,33 @@ King's Quest (2015): gog: id: 1420731114 installDir: - King's Table - The Legend of Ragnarok: {} + "King's Table - The Legend of Ragnarok": {} launch: - /DOSBox.app/Contents/MacOS/DOSBox: - - arguments: '-conf ../Conf/kingstable.cfg -noconsole' + "/DOSBox.app/Contents/MacOS/DOSBox": + - arguments: "-conf ../Conf/kingstable.cfg -noconsole" when: - os: mac store: steam - workingDir: /DOS - /dosbox: - - arguments: '-conf ../Conf/kingstable.cfg -noconsole' + workingDir: "/DOS" + "/dosbox": + - arguments: "-conf ../Conf/kingstable.cfg -noconsole" when: - os: linux store: steam - workingDir: /DOS - /dosbox.exe: - - arguments: '-conf ../Conf/kingstable.cfg -noconsole' + workingDir: "/DOS" + "/dosbox.exe": + - arguments: "-conf ../Conf/kingstable.cfg -noconsole" when: - os: windows store: steam - workingDir: /DOS + workingDir: "/DOS" steam: id: 719310 King-Dom: installDir: King-Dom: {} launch: - /King-Dom.exe: + "/King-Dom.exe": - when: - bit: 64 os: windows @@ -290739,11 +291595,11 @@ KingAndSlaves: installDir: KingAndSlaves: {} launch: - /KingAndSlaves.exe: + "/KingAndSlaves.exe": - when: - os: windows store: steam - /kings.app/Contents/MacOS/kings: + "/kings.app/Contents/MacOS/kings": - when: - os: mac store: steam @@ -290753,7 +291609,7 @@ KingSim: installDir: KingSim: {} launch: - /KingSim.exe: + "/KingSim.exe": - when: - os: windows store: steam @@ -290768,25 +291624,25 @@ Kingdom Clicker: installDir: Kingdom Clicker: {} launch: - /Kingdom Clicker.exe: + "/Kingdom Clicker.exe": - when: - os: windows store: steam steam: id: 816060 -'Kingdom Come: Deliverance': +"Kingdom Come: Deliverance": files: - /user.cfg: + "/user.cfg": tags: - config when: - os: windows - /Saved Games/kingdomcome/profiles/default/*.xml: + "/Saved Games/kingdomcome/profiles/default/*.xml": tags: - config when: - os: windows - /Saved Games/kingdomcome/saves: + "/Saved Games/kingdomcome/saves": tags: - save when: @@ -290796,7 +291652,7 @@ Kingdom Clicker: installDir: KingdomComeDeliverance: {} launch: - /Bin/Win64/KingdomCome.exe: + "/Bin/Win64/KingdomCome.exe": - when: - bit: 64 os: windows @@ -290807,15 +291663,15 @@ Kingdom Defense: installDir: Kingdom Defense: {} launch: - /Kingdom Defense.app: + "/Kingdom Defense.app": - when: - os: mac store: steam - /Kingdom Defense.exe: + "/Kingdom Defense.exe": - when: - os: windows store: steam - /Kingdom Defense.x86: + "/Kingdom Defense.x86": - when: - os: linux store: steam @@ -290825,7 +291681,7 @@ Kingdom Elemental: installDir: Kingdom Elemental: {} launch: - /kingdom elemental.exe: + "/kingdom elemental.exe": - when: - bit: 32 os: windows @@ -290834,40 +291690,40 @@ Kingdom Elemental: id: 285350 Kingdom Hearts HD 1.5 + 2.5 ReMIX: files: - /KINGDOM HEARTS HD 1.5+2.5 ReMIX/Epic Games Store/: + "/KINGDOM HEARTS HD 1.5+2.5 ReMIX/Epic Games Store/": tags: - config - save when: - - store: epic + - os: windows Kingdom Hearts HD 2.8 Final Chapter Prologue: files: - /Documents/KINGDOM HEARTS HD 2.8 Final Chapter Prologue/Epic Games Store/: + "/Documents/KINGDOM HEARTS HD 2.8 Final Chapter Prologue/Epic Games Store/": tags: - config - save when: - - store: epic + - os: windows Kingdom Hearts III: files: - /Documents/KINGDOM HEARTS III/Epic Games Store//Config: + "/Documents/KINGDOM HEARTS III/Epic Games Store//Config": tags: - config when: - os: windows - /Documents/KINGDOM HEARTS III/Epic Games Store//SaveGames: + "/Documents/KINGDOM HEARTS III/Epic Games Store//SaveGames": tags: - save when: - os: windows Kingdom Hearts Melody of Memory: files: - /Documents/KINGDOM HEARTS Melody of Memory/Epic Games Store/: + "/Documents/KINGDOM HEARTS Melody of Memory/Epic Games Store/": tags: - config - save when: - - store: epic + - os: windows Kingdom Heroes 2: steam: id: 1079150 @@ -290875,7 +291731,7 @@ Kingdom Of Rhea: installDir: Kingdom Of Rhea: {} launch: - /NewKoR.exe: + "/NewKoR.exe": - when: - bit: 64 os: windows @@ -290884,28 +291740,28 @@ Kingdom Of Rhea: id: 1033700 Kingdom Rush: files: - /slot*.data: + "/slot*.data": tags: - save when: - os: mac - os: linux - /kingdom_rush/settings.lua: + "/kingdom_rush/settings.lua": tags: - config when: - os: windows - /kingdom_rush/slot_*.lua: + "/kingdom_rush/slot_*.lua": tags: - save when: - os: windows - /kingdom_rush/settings.lua: + "/kingdom_rush/settings.lua": tags: - config when: - os: linux - /kingdom_rush/slot_*.lua: + "/kingdom_rush/slot_*.lua": tags: - save when: @@ -290915,39 +291771,39 @@ Kingdom Rush: installDir: Kingdom Rush: {} launch: - /Kingdom Rush.app/Contents/MacOS/love: + "/Kingdom Rush.app/Contents/MacOS/love": - when: - os: mac store: steam - /Kingdom Rush.exe: + "/Kingdom Rush.exe": - when: - os: windows store: steam - /run.sh: + "/run.sh": - when: - os: linux store: steam steam: id: 246420 -'Kingdom Rush: Frontiers': +"Kingdom Rush: Frontiers": files: - /Library/Containers/com.ironhidegames.kingdomrushfrontiers-mac/Data/Library/Application Support/kingdom_rush_frontiers: + "/Library/Containers/com.ironhidegames.kingdomrushfrontiers-mac/Data/Library/Application Support/kingdom_rush_frontiers": tags: - save when: - os: mac - /kingdom_rush_frontiers: + "/kingdom_rush_frontiers": tags: - config - save when: - os: windows - /kingdom_rush_frontiers/settings.lua: + "/kingdom_rush_frontiers/settings.lua": tags: - config when: - os: linux - /kingdom_rush_frontiers/slot_*.lua: + "/kingdom_rush_frontiers/slot_*.lua": tags: - save when: @@ -290957,23 +291813,23 @@ Kingdom Rush: installDir: Kingdom Rush Frontiers: {} launch: - /Kingdom Rush Frontiers.app/Contents/MacOS/love: + "/Kingdom Rush Frontiers.app/Contents/MacOS/love": - when: - os: mac store: steam - /Kingdom Rush Frontiers.exe: + "/Kingdom Rush Frontiers.exe": - when: - os: windows store: steam - /krf-love: + "/krf-love": - when: - os: linux store: steam steam: id: 458710 -'Kingdom Rush: Origins': +"Kingdom Rush: Origins": files: - /kingdom_rush_origins/slot_*.lua: + "/kingdom_rush_origins/slot_*.lua": tags: - save when: @@ -290983,23 +291839,23 @@ Kingdom Rush: installDir: Kingdom Rush Origins: {} launch: - /Kingdom Rush Origins.app/Contents/MacOS/love: + "/Kingdom Rush Origins.app/Contents/MacOS/love": - when: - os: mac store: steam - /Kingdom Rush Origins.exe: + "/Kingdom Rush Origins.exe": - when: - os: windows store: steam - /run.sh: + "/run.sh": - when: - os: linux store: steam steam: id: 816340 -'Kingdom Rush: Vengeance': +"Kingdom Rush: Vengeance": files: - /Kingdom Rush Vengeance: + "/Kingdom Rush Vengeance": tags: - config - save @@ -291010,11 +291866,11 @@ Kingdom Rush: installDir: Kingdom Rush Vengeance: {} launch: - /Kingdom Rush Vengeance.app/Contents/MacOS/Kingdom Rush Vengeance: + "/Kingdom Rush Vengeance.app/Contents/MacOS/Kingdom Rush Vengeance": - when: - os: mac store: steam - /Kingdom Rush Vengeance.exe: + "/Kingdom Rush Vengeance.exe": - when: - os: windows store: steam @@ -291027,12 +291883,12 @@ Kingdom Tales: installDir: Kingdom Tales: {} launch: - /Kingdom Tales.app/Contents/MacOS/Kingdom Tales: + "/Kingdom Tales.app/Contents/MacOS/Kingdom Tales": - when: - os: mac store: steam - workingDir: /Kingdom Tales.app/Contents/MacOS - /ktales.exe: + workingDir: "/Kingdom Tales.app/Contents/MacOS" + "/ktales.exe": - when: - os: windows store: steam @@ -291042,12 +291898,12 @@ Kingdom Tales 2: installDir: Kingdom Tales 2: {} launch: - /Kingdom Tales 2.app/Contents/MacOS/Kingdom Tales 2: + "/Kingdom Tales 2.app/Contents/MacOS/Kingdom Tales 2": - when: - os: mac store: steam - workingDir: /Kingdom Tales 2.app/Contents/MacOS - /ktales2.exe: + workingDir: "/Kingdom Tales 2.app/Contents/MacOS" + "/ktales2.exe": - when: - os: windows store: steam @@ -291057,25 +291913,25 @@ Kingdom Under Fire 2: installDir: Kingdom Under Fire 2: {} launch: - /KUF2SteamLauncher.exe: - - arguments: '#login.kuf2.gameforge.com#25002#gf#steam#b' + "/KUF2SteamLauncher.exe": + - arguments: "#login.kuf2.gameforge.com#25002#gf#steam#b" when: - store: steam steam: id: 1132210 -'Kingdom Under Fire: A War of Heroes': +"Kingdom Under Fire: A War of Heroes": installDir: Kingdom Under Fire War of Heroes: {} launch: - /KingdomUnderFire.exe: + "/KingdomUnderFire.exe": - when: - os: windows store: steam steam: id: 2183600 -'Kingdom Under Fire: Heroes': +"Kingdom Under Fire: Heroes": files: - /KUF2 Heroes: + "/KUF2 Heroes": tags: - config - save @@ -291091,15 +291947,15 @@ Kingdom Under Fire 2: installDir: KUF Heroes: {} launch: - /HeroesLauncher.exe: + "/HeroesLauncher.exe": - when: - os: windows store: steam steam: id: 1315200 -'Kingdom Under Fire: The Crusaders': +"Kingdom Under Fire: The Crusaders": files: - /KUF2 Crusader: + "/KUF2 Crusader": tags: - config - save @@ -291110,7 +291966,7 @@ Kingdom Under Fire 2: installDir: KUF Crusader: {} launch: - /Kuf2Main.exe: + "/Kuf2Main.exe": - when: - store: steam steam: @@ -291119,7 +291975,7 @@ Kingdom Warrior: installDir: Kingdom Warrior: {} launch: - /gamebox.exe: + "/gamebox.exe": - when: - os: windows store: steam @@ -291129,24 +291985,24 @@ Kingdom Wars: installDir: Dawn of Fantasy: {} launch: - /Dof.exe: - - arguments: '-dev86' + "/Dof.exe": + - arguments: "-dev86" when: - os: windows store: steam - /Editor.exe: + "/Editor.exe": - when: - os: windows store: steam - /dof_options.exe: + "/dof_options.exe": - when: - os: windows store: steam steam: id: 227180 -'Kingdom Wars 2: Battles': +"Kingdom Wars 2: Battles": files: - /kt: + "/kt": tags: - config - save @@ -291155,27 +292011,27 @@ Kingdom Wars: installDir: KW2 Battles: {} launch: - /Editor.exe: + "/Editor.exe": - when: - os: windows store: steam - /kw2b.exe: - - arguments: '-dev86' + "/kw2b.exe": + - arguments: "-dev86" when: - os: windows store: steam - /options.exe: + "/options.exe": - when: - os: windows store: steam steam: id: 253190 -'Kingdom Wars 2: Definitive Edition': +"Kingdom Wars 2: Definitive Edition": installDir: Kingdom Wars 2 Definitive Edition: {} launch: - /kw2de.exe: - - arguments: '-dev86' + "/kw2de.exe": + - arguments: "-dev86" when: - os: windows store: steam @@ -291189,8 +292045,8 @@ Kingdom Wars 4: installDir: Kingdom Wars 4: {} launch: - /PKW.exe: - - arguments: '-dev86' + "/PKW.exe": + - arguments: "-dev86" when: - os: windows store: steam @@ -291201,15 +292057,15 @@ Kingdom Watcher: Kingdom Watcher: {} steam: id: 680970 -'Kingdom of Aurelia: Mystery of the Poisoned Dagger': +"Kingdom of Aurelia: Mystery of the Poisoned Dagger": installDir: Kingdom of Aurelia Mystery of the Poisoned Dagger: {} launch: - /Kingdom_of_Aurelia.app: + "/Kingdom_of_Aurelia.app": - when: - os: mac store: steam - /Kingdom_of_Aurelia_PE.exe: + "/Kingdom_of_Aurelia_PE.exe": - when: - os: windows store: steam @@ -291220,7 +292076,7 @@ Kingdom of Blades: Kingdom of Blades: {} steam: id: 769580 -'Kingdom of Keogth: the Arena': +"Kingdom of Keogth: the Arena": steam: id: 1171540 Kingdom of Lies: @@ -291230,12 +292086,12 @@ Kingdom of Loot: installDir: KINGDOM_OF_LOOT: {} launch: - /KOL: - - arguments: '-music -window -steam' + "/KOL": + - arguments: "-music -window -steam" when: - os: linux store: steam - /KOL.exe: + "/KOL.exe": - when: - os: windows store: steam @@ -291248,7 +292104,7 @@ Kingdom of the Dead: installDir: KINGDOM of the DEAD: {} launch: - /KINGDOM of the DEAD.exe: + "/KINGDOM of the DEAD.exe": - when: - os: windows store: steam @@ -291258,8 +292114,11 @@ Kingdom of the Dragon: installDir: Kingdom of the Dragon: {} launch: - /Kingdom of the Dragon.exe: + "/Kingdom of the Dragon.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam @@ -291269,25 +292128,25 @@ Kingdom-Heroes: installDir: Kingdom-Heroes: {} launch: - /Kingdom-Heroes.exe: + "/Kingdom-Heroes.exe": - when: - os: windows store: steam steam: id: 1013000 -'Kingdom: Classic': +"Kingdom: Classic": files: - /AppData/LocalLow/noio/Kingdom/storage_v26_AUTO.dat: + "/AppData/LocalLow/noio/Kingdom/storage_v26_AUTO.dat": tags: - save when: - os: windows - /unity3d/noio/Kingdom/prefs: + "/unity3d/noio/Kingdom/prefs": tags: - config when: - os: linux - /unity3d/noio/Kingdom/storage_v26_AUTO.dat: + "/unity3d/noio/Kingdom/storage_v26_AUTO.dat": tags: - save when: @@ -291297,15 +292156,15 @@ Kingdom-Heroes: installDir: Kingdom: {} launch: - /Kingdom.app: + "/Kingdom.app": - when: - os: mac store: steam - /Kingdom.exe: + "/Kingdom.exe": - when: - os: windows store: steam - /Kingdom.x86: + "/Kingdom.x86": - when: - os: linux store: steam @@ -291315,9 +292174,9 @@ Kingdom-Heroes: - config steam: id: 368230 -'Kingdom: Eighties': +"Kingdom: Eighties": files: - /AppData/LocalLow/RawFury/Kingdom Eighties: + "/AppData/LocalLow/RawFury/Kingdom Eighties": tags: - config when: @@ -291325,44 +292184,44 @@ Kingdom-Heroes: installDir: Kingdom 80s: {} launch: - /Kingdom80s.app: + "/Kingdom80s.app": - when: - os: mac store: steam - /Kingdom80s.exe: + "/Kingdom80s.exe": - when: - os: windows store: steam - /Kingdom80s.x86: - - arguments: '-screen-fullscreen 1 -screen-width 1920 -screen-height 1080' + "/Kingdom80s.x86": + - arguments: "-screen-fullscreen 1 -screen-width 1920 -screen-height 1080" when: - os: linux store: steam steam: id: 1956040 -'Kingdom: New Lands': +"Kingdom: New Lands": files: - /AppData/LocalLow/noio/Kingdom/preferences: + "/AppData/LocalLow/noio/Kingdom/preferences": tags: - config when: - os: windows - /AppData/LocalLow/noio/Kingdom/storage_v34_AUTO.dat: + "/AppData/LocalLow/noio/Kingdom/storage_v34_AUTO.dat": tags: - save when: - os: windows - /Library/Application Support/nl.noio.kingdom-new-lands/storage_v34_AUTO.dat: + "/Library/Application Support/nl.noio.kingdom-new-lands/storage_v34_AUTO.dat": tags: - save when: - os: mac - /unity3d/noio/Kingdom/preferences: + "/unity3d/noio/Kingdom/preferences": tags: - config when: - os: linux - /unity3d/noio/Kingdom/storage_v34_AUTO.dat: + "/unity3d/noio/Kingdom/storage_v34_AUTO.dat": tags: - save when: @@ -291372,57 +292231,57 @@ Kingdom-Heroes: installDir: Kingdom New Lands: {} launch: - /Kingdom.app: + "/Kingdom.app": - when: - os: mac store: steam - /Kingdom.exe: + "/Kingdom.exe": - when: - os: windows store: steam - /Kingdom.x86: + "/Kingdom.x86": - when: - bit: 32 os: linux store: steam - /Kingdom.x86_64: + "/Kingdom.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 496300 -'Kingdom: The Far Reaches': +"Kingdom: The Far Reaches": gog: id: 1207658675 installDir: Kingdom The Far Reaches: {} launch: - /DOSBox/dosbox.app/Contents/MacOS/DOSBox: - - arguments: '-conf \"./config/dosboxKingdom.conf\" -conf \"./config/dosboxKingdom_single.conf\" -noconsole' + "/DOSBox/dosbox.app/Contents/MacOS/DOSBox": + - arguments: "-conf \\\"./config/dosboxKingdom.conf\\\" -conf \\\"./config/dosboxKingdom_single.conf\\\" -noconsole" when: - os: mac store: steam - /Launch Kingdom.bat: + "/Launch Kingdom.bat": - when: - os: windows store: steam - /dosbox/dosbox: - - arguments: '-conf \"./config/dosboxKingdom.conf\" -conf \"./config/dosboxKingdom_single.conf\" -noconsole' + "/dosbox/dosbox": + - arguments: "-conf \\\"./config/dosboxKingdom.conf\\\" -conf \\\"./config/dosboxKingdom_single.conf\\\" -noconsole" when: - os: linux store: steam steam: id: 700880 -'Kingdom: Two Crowns': +"Kingdom: Two Crowns": files: - /AppData/LocalLow/noio/KingdomTwoCrowns/Release: + "/AppData/LocalLow/noio/KingdomTwoCrowns/Release": tags: - config - save when: - os: windows - /unity3d/noio/KingdomTwoCrowns/Release: + "/unity3d/noio/KingdomTwoCrowns/Release": tags: - config - save @@ -291433,16 +292292,16 @@ Kingdom-Heroes: installDir: Kingdom Two Crowns: {} launch: - /KingdomTwoCrowns.app: + "/KingdomTwoCrowns.app": - when: - os: mac store: steam - /KingdomTwoCrowns.exe: + "/KingdomTwoCrowns.exe": - when: - os: windows store: steam - /KingdomTwoCrowns.x86: - - arguments: '-screen-fullscreen 1 -screen-width 1920 -screen-height 1080' + "/KingdomTwoCrowns.x86": + - arguments: "-screen-fullscreen 1 -screen-width 1920 -screen-height 1080" when: - os: linux store: steam @@ -291452,7 +292311,7 @@ Kingdoms: installDir: Kingdoms: {} launch: - /Kingdoms.exe: + "/Kingdoms.exe": - when: - os: windows store: steam @@ -291462,11 +292321,11 @@ Kingdoms CCG: installDir: Kingdoms CCG: {} launch: - /KingdomsCCG.app: + "/KingdomsCCG.app": - when: - os: mac store: steam - /kingdomssteam.exe: + "/kingdomssteam.exe": - when: - os: windows store: steam @@ -291476,16 +292335,16 @@ Kingdoms Of Marazia: installDir: Kingdoms-Of-Marazia: {} launch: - /Kingdoms-Client-Mac.app: + "/Kingdoms-Client-Mac.app": - when: - os: mac store: steam - /Kingdoms-Client.x86_64: + "/Kingdoms-Client.x86_64": - when: - bit: 64 os: linux store: steam - /Kingdoms-Of-Marazia.exe: + "/Kingdoms-Of-Marazia.exe": - when: - bit: 64 os: windows @@ -291496,7 +292355,7 @@ Kingdoms Reborn: installDir: Kingdoms Reborn: {} launch: - /KingdomsReborn.exe: + "/KingdomsReborn.exe": - when: - bit: 64 os: windows @@ -291507,7 +292366,7 @@ Kingdoms Rise: installDir: KingdomsRise: {} launch: - /KR.exe: + "/KR.exe": - when: - os: windows store: steam @@ -291515,37 +292374,37 @@ Kingdoms Rise: id: 248630 Kingdoms and Castles: files: - /AppData/LocalLow/LionShield/Kingdoms and Castles/Saves: + "/AppData/LocalLow/LionShield/Kingdoms and Castles/Saves": tags: - save when: - os: windows - /AppData/LocalLow/LionShield/Kingdoms and Castles/settings: + "/AppData/LocalLow/LionShield/Kingdoms and Castles/settings": tags: - config when: - os: windows - /Library/Application Support/unity.LionShield.Kingdoms and Castles/Saves: + "/Library/Application Support/unity.LionShield.Kingdoms and Castles/Saves": tags: - save when: - os: mac - /Library/Application Support/unity.LionShield.Kingdoms and Castles/settings: + "/Library/Application Support/unity.LionShield.Kingdoms and Castles/settings": tags: - config when: - os: mac - /unity3d/LionShield/Kingdoms and Castles/Saves: + "/unity3d/LionShield/Kingdoms and Castles/Saves": tags: - save when: - os: linux - /unity3d/LionShield/Kingdoms and Castles/prefs: + "/unity3d/LionShield/Kingdoms and Castles/prefs": tags: - config when: - os: linux - /unity3d/LionShield/Kingdoms and Castles/settings: + "/unity3d/LionShield/Kingdoms and Castles/settings": tags: - config when: @@ -291558,33 +292417,33 @@ Kingdoms and Castles: installDir: Kingdoms and Castles: {} launch: - /Kingdoms and Castles.app: + "/Kingdoms and Castles.app": - when: - os: mac store: steam - /KingdomsAndCastles.exe: + "/KingdomsAndCastles.exe": - when: - os: windows store: steam - /KingdomsAndCastles.x86_64: + "/KingdomsAndCastles.x86_64": - when: - os: linux store: steam steam: id: 569480 -'Kingdoms of Amalur: Re-Reckoning': +"Kingdoms of Amalur: Re-Reckoning": files: - /AppData/LocalLow/THQNOnline/Kingdoms of Amalur Re-Reckoning/autocloud/save: + "/AppData/LocalLow/THQNOnline/Kingdoms of Amalur Re-Reckoning/autocloud/save": tags: - save when: - os: windows - /userdata//1041720/remote: + "/userdata//1041720/remote": tags: - save when: - store: steam - /kaiko/koa: + "/kaiko/koa": tags: - config when: @@ -291594,25 +292453,25 @@ Kingdoms and Castles: installDir: Kingdoms of Amalur Re-Reckoning: {} launch: - /koa.exe: + "/koa.exe": - when: - os: windows store: steam steam: id: 1041720 -'Kingdoms of Amalur: Reckoning': +"Kingdoms of Amalur: Reckoning": files: - /userdata//102500/remote: + "/userdata//102500/remote": tags: - save when: - store: steam - /My Games/Reckoning: + "/My Games/Reckoning": tags: - save when: - os: windows - /My Games/Reckoning/personal.ini: + "/My Games/Reckoning/personal.ini": tags: - config when: @@ -291620,7 +292479,7 @@ Kingdoms and Castles: installDir: KOAReckoning: {} launch: - /Reckoning.exe: + "/Reckoning.exe": - when: - store: steam steam: @@ -291629,19 +292488,19 @@ Kingpin Royale: installDir: Kingpin Royale: {} launch: - /KingpinRoyale.exe: + "/KingpinRoyale.exe": - when: - store: steam steam: id: 921420 -'Kingpin: Life of Crime': +"Kingpin: Life of Crime": files: - /main/config.cfg: + "/main/config.cfg": tags: - config when: - os: windows - /main/save: + "/main/save": tags: - save when: @@ -291651,12 +292510,12 @@ Kingpin Royale: installDir: Kingpin: {} launch: - /Kingpin.exe: + "/Kingpin.exe": - when: - store: steam steam: id: 38430 -'Kingpin: Reloaded': +"Kingpin: Reloaded": gog: id: 1645376357 steam: @@ -291668,7 +292527,7 @@ Kings (2018): installDir: Kings: {} launch: - /Kings.exe: + "/Kings.exe": - when: - store: steam steam: @@ -291677,7 +292536,7 @@ Kings Of Wings: installDir: Kings Of Wings: {} launch: - /KingsOfWings.exe: + "/KingsOfWings.exe": - when: - os: windows store: steam @@ -291690,7 +292549,7 @@ Kings and Heroes: installDir: KingsandHeroes: {} launch: - /Archon/Binaries/Win64/ArchonClient-Win64-Shipping.exe: + "/Archon/Binaries/Win64/ArchonClient-Win64-Shipping.exe": - when: - bit: 64 os: windows @@ -291701,12 +292560,12 @@ Kings of Israel: installDir: Kings of Israel: {} launch: - /nw.app: + "/nw.app": - when: - bit: 64 os: mac store: steam - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -291716,20 +292575,20 @@ Kings of Kung Fu: installDir: Kings of Kung Fu: {} launch: - /kok.app/Contents/MacOS/kok: + "/kok.app/Contents/MacOS/kok": - when: - os: mac store: steam - /kok.exe: + "/kok.exe": - when: - os: windows store: steam - /kok.x86: + "/kok.x86": - when: - bit: 32 os: linux store: steam - /kok.x86_64: + "/kok.x86_64": - when: - bit: 64 os: linux @@ -291740,26 +292599,29 @@ Kings of Kung Fu: - config steam: id: 316930 -'Kings of Lorn: The Fall of Ebris': +"Kings of Lorn: The Fall of Ebris": installDir: Lorn: {} launch: - /KINGSOFLORN.exe: + "/KINGSOFLORN.exe": - when: - bit: 64 os: windows store: steam steam: id: 605140 -Kings' Cross: +"Kings' Cross": installDir: KingsCross: {} launch: - /steam.exe: + "/steam.exe": - when: - bit: 32 os: windows store: steam + - bit: 64 + os: windows + store: steam steam: id: 981900 Kingshunt: @@ -291777,12 +292639,12 @@ Kingspray Graffiti Simulator: id: 471660 Kingsway: files: - /Kingsway/profile.pr: + "/Kingsway/profile.pr": tags: - save when: - os: windows - /Kingsway/settings.dat: + "/Kingsway/settings.dat": tags: - config when: @@ -291792,7 +292654,7 @@ Kingsway: installDir: Kingsway: {} launch: - /Kingsway.exe: + "/Kingsway.exe": - when: - store: steam steam: @@ -291801,25 +292663,25 @@ Kink: installDir: Kink: {} launch: - /Kink.app/Contents/MacOS/Kink: + "/Kink.app/Contents/MacOS/Kink": - when: - os: mac store: steam - /Kink.exe: + "/Kink.exe": - when: - bit: 64 os: windows store: steam - /Kink.x86_64: + "/Kink.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 736050 -'Kinkoi: Golden Loveriche': +"Kinkoi: Golden Loveriche": files: - /SaveData/*.dat: + "/SaveData/*.dat": tags: - save when: @@ -291827,14 +292689,14 @@ Kink: installDir: Kinkoi: {} launch: - /Kinkoi.exe: + "/Kinkoi.exe": - when: - store: steam steam: id: 1277940 -'Kinkoi: Golden Time': +"Kinkoi: Golden Time": files: - /userdata//1985260/remote: + "/userdata//1985260/remote": tags: - save when: @@ -291842,7 +292704,7 @@ Kink: installDir: Kinkoi Golden Time: {} launch: - /kinkoi_gt.exe: + "/kinkoi_gt.exe": - when: - store: steam steam: @@ -291851,7 +292713,7 @@ Kinkshamed: installDir: KinkShamed: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -291861,20 +292723,20 @@ Kinky Fight Club: installDir: Kinky Fight Club: {} launch: - /Kinky Fight Club.exe: + "/Kinky Fight Club.exe": - when: - store: steam steam: id: 1237530 -Kio's Adventure: +"Kio's Adventure": installDir: - Kio's Adventure: {} + "Kio's Adventure": {} launch: - /game.app/Contents/MacOS/game: + "/game.app/Contents/MacOS/game": - when: - os: mac store: steam - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -291885,39 +292747,39 @@ Kira: Kira: {} steam: id: 607860 -Kira's Contract: +"Kira's Contract": installDir: - Kira's Contract: {} + "Kira's Contract": {} launch: - /nw.exe: - - arguments: '--in-process-gpu' + "/nw.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam steam: id: 1173500 -'Kirakira Stars Idol Project: Ai': +"Kirakira Stars Idol Project: Ai": gog: id: 1738947233 installDir: kirakira_stars_idol_project_AI: {} launch: - /kirakira_stars_idol_project_AI.exe: + "/kirakira_stars_idol_project_AI.exe": - when: - os: windows store: steam steam: id: 1202770 -Kirchhoff's Revenge: +"Kirchhoff's Revenge": installDir: KirchhoffsRevenge: {} launch: - /Kirchhoff.exe: + "/Kirchhoff.exe": - when: - bit: 64 os: windows store: steam - /KirchhoffsRevenge.app: + "/KirchhoffsRevenge.app": - when: - os: mac store: steam @@ -291931,7 +292793,7 @@ Kisaragi no Hougyoku: installDir: Kisaragi no Hougyoku: {} launch: - /Kisaragi_no_Hougyoku.exe: + "/Kisaragi_no_Hougyoku.exe": - when: - os: windows store: steam @@ -291941,12 +292803,12 @@ Kismet: installDir: Kismet: {} launch: - /2D/kismetVr.exe: + "/2D/kismetVr.exe": - when: - bit: 64 os: windows store: steam - workingDir: /2D + workingDir: "/2D" steam: id: 463290 Kiss or Kill VR: @@ -291954,9 +292816,9 @@ Kiss or Kill VR: VR Trivia Battle: {} steam: id: 670830 -'Kiss: Psycho Circus: The Nightmare Child': +"Kiss: Psycho Circus: The Nightmare Child": files: - /Save: + "/Save": tags: - save when: @@ -291965,7 +292827,7 @@ Kissing Simulator: installDir: Kissing Simulator: {} launch: - /Launcher.exe: + "/Launcher.exe": - when: - bit: 64 os: windows @@ -291974,7 +292836,7 @@ Kissing Simulator: id: 1091210 Kitaria Fables: files: - /AppData/LocalLow/Twin Hearts Games/Kitaria Fables: + "/AppData/LocalLow/Twin Hearts Games/Kitaria Fables": tags: - save when: @@ -291984,7 +292846,7 @@ Kitaria Fables: installDir: Kitaria Fables: {} launch: - /Kitaria Fables.exe: + "/Kitaria Fables.exe": - when: - os: windows store: steam @@ -291994,7 +292856,7 @@ Kitchen Simulator 2: installDir: Kitchen Simulator 2: {} launch: - /kitchen simulator 2 32/kitchensim2 32bit.exe: + "/kitchen simulator 2 32/kitchensim2 32bit.exe": - when: - os: windows store: steam @@ -292004,7 +292866,7 @@ Kitchen Simulator 2015: installDir: Kitchen Simulator 2015: {} launch: - /Kitchen_Simulator.exe: + "/Kitchen_Simulator.exe": - when: - os: windows store: steam @@ -292014,7 +292876,7 @@ Kite: installDir: Kite: {} launch: - /Kite.exe: + "/Kite.exe": - when: - os: windows store: steam @@ -292024,19 +292886,19 @@ Kith - Tales from the Fractured Plateaus: installDir: Kith - Tales from the Fractured Plateaus: {} launch: - /kith.exe: + "/kith.exe": - when: - os: windows store: steam - /run.sh: + "/run.sh": - when: - os: linux store: steam steam: id: 596710 -'Kitrinos: Inside the Cube': +"Kitrinos: Inside the Cube": files: - /YAZ3.txt: + "/YAZ3.txt": tags: - config - save @@ -292045,7 +292907,7 @@ Kith - Tales from the Fractured Plateaus: installDir: Kitrinos: {} launch: - /Kitrinos.exe: + "/Kitrinos.exe": - when: - os: windows store: steam @@ -292055,7 +292917,7 @@ Kitsune Kitchen: installDir: Kitsune Kitchen: {} launch: - /KitchenKitsunes.exe: + "/KitchenKitsunes.exe": - when: - os: windows store: steam @@ -292065,15 +292927,15 @@ Kitten Adventures in City Park: installDir: Kitten adventures in city park: {} launch: - /cat-game.app: + "/cat-game.app": - when: - os: mac store: steam - /cat-game.exe: + "/cat-game.exe": - when: - os: windows store: steam - /cat-game.sh: + "/cat-game.sh": - when: - os: linux store: steam @@ -292088,11 +292950,11 @@ Kitten Life Simulator: installDir: Kitten Life Simulator: {} launch: - /Kitten Life Simulator.app/Contents/MacOS/Kitten Life Simulator: + "/Kitten Life Simulator.app/Contents/MacOS/Kitten Life Simulator": - when: - os: mac store: steam - /Kitten Life Simulator.exe: + "/Kitten Life Simulator.exe": - when: - os: windows store: steam @@ -292102,17 +292964,17 @@ Kitten Lost Her Box: installDir: TinyCat: {} launch: - /TinyCat.app: + "/TinyCat.app": - when: - os: mac store: steam - /TinyCat.bin.x86_64: - - arguments: 'gldevice:Vulkan' + "/TinyCat.bin.x86_64": + - arguments: "gldevice:Vulkan" when: - bit: 64 os: linux store: steam - /TinyCat.exe: + "/TinyCat.exe": - arguments: steam when: - os: windows @@ -292123,7 +292985,7 @@ Kitten Love Emulator: installDir: Kitten Love Emulator: {} launch: - /I_HT_CATS.exe: + "/I_HT_CATS.exe": - when: - os: windows store: steam @@ -292133,7 +292995,7 @@ Kitten Madness: installDir: Kitten Madness: {} launch: - /KittenMadness.exe: + "/KittenMadness.exe": - when: - bit: 64 os: windows @@ -292144,7 +293006,7 @@ Kitten Rampage: installDir: Kitten Rampage: {} launch: - /Kitten Rampage.exe: + "/Kitten Rampage.exe": - when: - os: windows store: steam @@ -292154,11 +293016,11 @@ Kitten Squad: installDir: Kitten Squad: {} launch: - /KittenSquad.app/Contents/MacOS/KittenSquad: + "/KittenSquad.app/Contents/MacOS/KittenSquad": - when: - os: mac store: steam - /KittenSquad.exe: + "/KittenSquad.exe": - when: - os: windows store: steam @@ -292167,39 +293029,39 @@ Kitten Squad: Kitten Super Adventure: steam: id: 347530 -'Kitten and food: adventure park': +"Kitten and food: adventure park": installDir: Kitten and food adventure park: {} launch: - /Cats and food.exe: + "/Cats and food.exe": - when: - store: steam steam: id: 913150 -Kitten'd: +"Kitten'd": installDir: Kittend: {} launch: - /KIT.exe: + "/KIT.exe": - arguments: KittendSteam when: - os: windows store: steam steam: id: 842140 -Kitty Cat's Drag Race: +"Kitty Cat's Drag Race": steam: id: 944620 -'Kitty Cat: Jigsaw Puzzles': +"Kitty Cat: Jigsaw Puzzles": installDir: Kitty Cat Jigsaw Puzzles: {} launch: - /KittyCatJigsawPuzzles.exe: + "/KittyCatJigsawPuzzles.exe": - when: - os: windows store: steam registry: - 'HKEY_CURRENT_USER/SOFTWARE/EnsenaSoft, S.A. de C.V./Kitty Cat Jigsaw Puzzles': + "HKEY_CURRENT_USER/SOFTWARE/EnsenaSoft, S.A. de C.V./Kitty Cat Jigsaw Puzzles": tags: - config - save @@ -292213,20 +293075,20 @@ Kitty Hawk: Kitty Hawk: {} steam: id: 640250 -'Kitty Kitty Boing Boing: The Happy Adventure in Puzzle Garden!': +"Kitty Kitty Boing Boing: The Happy Adventure in Puzzle Garden!": installDir: KittyKittyBoingBoing: {} launch: - /kittykittyboingboing.app/Contents/MacOS/nwjs: + "/kittykittyboingboing.app/Contents/MacOS/nwjs": - when: - bit: 64 os: mac store: steam - /nw: + "/nw": - when: - os: linux store: steam - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -292239,7 +293101,7 @@ Kitty Nigiri: id: 647950 Kitty Play: files: - /kitty_play/profiles/3015416002: + "/kitty_play/profiles/3015416002": tags: - config - save @@ -292248,41 +293110,47 @@ Kitty Play: installDir: Kitty Play: {} launch: - /bin/Game.exe: + "/bin/Game.exe": - when: - os: windows store: steam steam: id: 823800 -Kitty Powers' Love Life: +"Kitty Powers' Love Life": gog: id: 1219491421 installDir: Kitty Powers Love Life: {} launch: - /lovelife.app/Contents/MacOS/lovelife: + "/lovelife.app/Contents/MacOS/lovelife": - when: - os: mac store: steam - /lovelife.exe: + "/lovelife.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam steam: id: 416870 -Kitty Powers' Matchmaker: +"Kitty Powers' Matchmaker": gog: id: 1367716005 installDir: Kitty Powers Matchmaker: {} launch: - /matchmaker.app/Contents/MacOS/matchmaker: + "/matchmaker.app/Contents/MacOS/matchmaker": - when: - os: mac store: steam - /matchmaker.exe: + "/matchmaker.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam @@ -292305,18 +293173,18 @@ Kittypocalypse - Ungoggled: installDir: Kittypocalypse - PC Edition: {} launch: - /Kittypocalypse.exe: + "/Kittypocalypse.exe": - when: - bit: 64 os: windows store: steam steam: id: 529410 -'Kivi, Toilet and Shotgun': +"Kivi, Toilet and Shotgun": installDir: - 'Kivi, Toilet and Shotgun': {} + "Kivi, Toilet and Shotgun": {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: @@ -292331,12 +293199,12 @@ Klabi: id: 461140 Klang: files: - /Klang/Save: + "/Klang/Save": tags: - save when: - os: windows - /Klang: + "/Klang": tags: - config when: @@ -292344,7 +293212,7 @@ Klang: installDir: Klang: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -292354,11 +293222,11 @@ Klaus: installDir: KLAUS: {} launch: - /KLAUS.app/Contents/MacOS/KLAUS: + "/KLAUS.app/Contents/MacOS/KLAUS": - when: - os: mac store: steam - /KLAUS.exe: + "/KLAUS.exe": - when: - os: windows store: steam @@ -292368,7 +293236,7 @@ Klepto: installDir: Klepto: {} launch: - /Klepto.exe: + "/Klepto.exe": - when: - os: windows store: steam @@ -292378,15 +293246,15 @@ Klocki: installDir: klocki: {} launch: - /klocki.app: + "/klocki.app": - when: - os: mac store: steam - /klocki.exe: + "/klocki.exe": - when: - os: windows store: steam - /klocki.x86_64: + "/klocki.x86_64": - when: - bit: 64 os: linux @@ -292402,7 +293270,7 @@ Klondike & Girls: installDir: Klondike & Girls: {} launch: - /Klondike & Girls.exe: + "/Klondike & Girls.exe": - when: - os: windows store: steam @@ -292412,7 +293280,7 @@ Klondike Solitaire Kings: installDir: Klondike Solitaire Kings: {} launch: - /Klondike Solitaire Kings.exe: + "/Klondike Solitaire Kings.exe": - when: - os: windows store: steam @@ -292420,12 +293288,12 @@ Klondike Solitaire Kings: id: 690670 Klonoa Phantasy Reverie Series: files: - /Bandai Namco Entertainment/KLONOAArtbook/Saved/SaveGames/: + "/Bandai Namco Entertainment/KLONOAArtbook/Saved/SaveGames/": tags: - config when: - os: windows - /Bandai Namco Entertainment/KLONOAencore/Saved/SaveGames/: + "/Bandai Namco Entertainment/KLONOAencore/Saved/SaveGames/": tags: - config - save @@ -292439,7 +293307,7 @@ Klotzen! Panzer Battles: installDir: Klotzen! Panzer Battles: {} launch: - /KlotzenPanzerBattles.exe: + "/KlotzenPanzerBattles.exe": - when: - os: windows store: steam @@ -292449,11 +293317,11 @@ Klym: installDir: Sokpop SO6 Klym: {} launch: - /klym_mac.app: + "/klym_mac.app": - when: - os: mac store: steam - /klym_windows.exe: + "/klym_windows.exe": - when: - os: windows store: steam @@ -292466,7 +293334,7 @@ Knack!: installDir: KNACK: {} launch: - /KNACK.exe: + "/KNACK.exe": - when: - os: windows store: steam @@ -292474,7 +293342,7 @@ Knack!: id: 802810 Knee Deep: files: - /AppData/LocalLow/Prologue Games/Knee Deep: + "/AppData/LocalLow/Prologue Games/Knee Deep": tags: - save when: @@ -292482,20 +293350,20 @@ Knee Deep: installDir: Knee Deep: {} launch: - /Knee Deep.app: + "/Knee Deep.app": - when: - os: mac store: steam - /Knee Deep.exe: + "/Knee Deep.exe": - when: - os: windows store: steam - /Knee Deep.x86: + "/Knee Deep.x86": - when: - bit: 32 os: linux store: steam - /Knee Deep.x86_64: + "/Knee Deep.x86_64": - when: - bit: 64 os: linux @@ -292518,7 +293386,7 @@ Knife Flipping: installDir: Knife Flipping: {} launch: - /Knife Flipping.exe: + "/Knife Flipping.exe": - when: - store: steam steam: @@ -292527,7 +293395,7 @@ Knife Hit Dash: installDir: Knife Hit Dash: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -292537,16 +293405,16 @@ Knife Only: installDir: Knife Only: {} launch: - /knifeonly.app: + "/knifeonly.app": - when: - os: mac store: steam - /knifeonly.exe: + "/knifeonly.exe": - when: - bit: 64 os: windows store: steam - /knifeonly.x86_64: + "/knifeonly.x86_64": - when: - bit: 64 os: linux @@ -292557,15 +293425,15 @@ Knife Sisters: installDir: Knife Sisters: {} launch: - /Knife Sisters.exe: + "/Knife Sisters.exe": - when: - os: windows store: steam - /KnifeSisters.app/Contents/MacOS/KnifeSisters: + "/KnifeSisters.app/Contents/MacOS/KnifeSisters": - when: - os: mac store: steam - /KnifeSisters.x86_64: + "/KnifeSisters.x86_64": - when: - os: linux store: steam @@ -292580,7 +293448,7 @@ KnifeBoy: installDir: KnifeBoy: {} launch: - /KnifeBoy.exe: + "/KnifeBoy.exe": - when: - os: windows store: steam @@ -292590,7 +293458,7 @@ Knight & Damsel: installDir: KnightDamsel: {} launch: - /KnightAndDamsel.Windows.exe: + "/KnightAndDamsel.Windows.exe": - when: - os: windows store: steam @@ -292600,7 +293468,7 @@ Knight Adventure: installDir: Knight Adventure: {} launch: - /KnightAdventure.exe: + "/KnightAdventure.exe": - when: - os: windows store: steam @@ -292608,12 +293476,12 @@ Knight Adventure: id: 409420 Knight Bewitched: files: - /My Games/Knight Bewitched ED - save: + "/My Games/Knight Bewitched ED - save": tags: - save when: - os: windows - /My Games/Knight Bewitched ED - save/config.rmmzsave: + "/My Games/Knight Bewitched ED - save/config.rmmzsave": tags: - config when: @@ -292621,16 +293489,16 @@ Knight Bewitched: installDir: Knight Bewitched: {} launch: - /Knight Bewitched Enhanced Edition/game.exe: - - arguments: '--in-process-gpu' + "/Knight Bewitched Enhanced Edition/game.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam - /game.app: + "/game.app": - when: - os: mac store: steam - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -292640,7 +293508,7 @@ Knight Dice: installDir: Knight Dice: {} launch: - /KnightDice.exe: + "/KnightDice.exe": - when: - os: windows store: steam @@ -292650,7 +293518,7 @@ Knight Eternal: installDir: Knight Eternal: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -292660,7 +293528,7 @@ Knight Fighter: installDir: Knight Fighter: {} launch: - /KnightFighter.exe: + "/KnightFighter.exe": - when: - os: windows store: steam @@ -292670,7 +293538,7 @@ Knight King Assassin: installDir: Knight King Assassin: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -292680,23 +293548,23 @@ Knight Online: installDir: Knight Online: {} launch: - /launcher.exe: - - arguments: '-login %u %p -applaunch %id %c' + "/launcher.exe": + - arguments: "-login %u %p -applaunch %id %c" when: - store: steam steam: id: 389430 -'Knight Rider: The Game': +"Knight Rider: The Game": files: - /Data/Common/savegame.usr: + "/Data/Common/savegame.usr": tags: - config - save when: - os: windows -'Knight Rider: The Game 2': +"Knight Rider: The Game 2": files: - /data/common/savegame.usr: + "/data/common/savegame.usr": tags: - save when: @@ -292708,7 +293576,7 @@ Knight Solitaire: installDir: Knight Solitaire: {} launch: - /Knight Solitaire.exe: + "/Knight Solitaire.exe": - when: - os: windows store: steam @@ -292718,20 +293586,20 @@ Knight Squad: installDir: KnightSquad: {} launch: - /KnightSquad.app: + "/KnightSquad.app": - when: - os: mac store: steam - /KnightSquad.exe: + "/KnightSquad.exe": - when: - os: windows store: steam - /KnightSquad.x86: + "/KnightSquad.x86": - when: - bit: 32 os: linux store: steam - /KnightSquad.x86_64: + "/KnightSquad.x86_64": - when: - bit: 64 os: linux @@ -292742,7 +293610,7 @@ Knight Squad 2: installDir: Knight Squad 2: {} launch: - /KnightSquad2.exe: + "/KnightSquad2.exe": - when: - bit: 64 os: windows @@ -292753,11 +293621,11 @@ Knight Swap: installDir: Knight Swap: {} launch: - /Knight_Swap.exe: + "/Knight_Swap.exe": - when: - os: windows store: steam - /Knight_Swap_Steam.app/Contents/MacOS/Knight_Swap_Steam: + "/Knight_Swap_Steam.app/Contents/MacOS/Knight_Swap_Steam": - when: - os: mac store: steam @@ -292767,11 +293635,11 @@ Knight Swap 2: installDir: Knight Swap 2: {} launch: - /Knight_Swap_2.exe: + "/Knight_Swap_2.exe": - when: - os: windows store: steam - /Knight_Swap_2_Steam.app/Contents/MacOS/Knight Swap 2: + "/Knight_Swap_2_Steam.app/Contents/MacOS/Knight Swap 2": - when: - os: mac store: steam @@ -292781,11 +293649,11 @@ Knight Terrors: installDir: Knight Terrors: {} launch: - /Knight Terrors.app: + "/Knight Terrors.app": - when: - os: mac store: steam - /Knight Terrors.exe: + "/Knight Terrors.exe": - when: - os: windows store: steam @@ -292795,7 +293663,7 @@ Knight of the Hamsters: installDir: Knight of the Hamsters: {} launch: - /KOTH.exe: + "/KOTH.exe": - when: - os: windows store: steam @@ -292805,7 +293673,7 @@ KnightOut: installDir: KnightOut: {} launch: - /KnightOut.exe: + "/KnightOut.exe": - when: - os: windows store: steam @@ -292813,7 +293681,7 @@ KnightOut: id: 700360 KnightShift: files: - /Players: + "/Players": tags: - save when: @@ -292823,20 +293691,20 @@ KnightShift: installDir: KnightShift: {} launch: - /KnightShift.app: + "/KnightShift.app": - when: - os: mac store: steam - /KnightShift.exe: + "/KnightShift.exe": - when: - os: windows store: steam - /RunConfig: + "/RunConfig": - when: - bit: 64 os: linux store: steam - /RunGame: + "/RunGame": - when: - bit: 64 os: linux @@ -292854,47 +293722,47 @@ Knightfall: installDir: Knightfall: {} launch: - /Knightfall.app/Contents/MacOS/Knightfall: + "/Knightfall.app/Contents/MacOS/Knightfall": - when: - os: mac store: steam - /Knightfall.exe: + "/Knightfall.exe": - when: - os: windows store: steam - /Knightfall.x86_64: + "/Knightfall.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 625000 -'Knightfall: A Daring Journey': +"Knightfall: A Daring Journey": installDir: Knightfall: {} launch: - /Knightfall.exe: + "/Knightfall.exe": - when: - store: steam steam: id: 1911390 -'Knightfall: Rivals': +"Knightfall: Rivals": installDir: Knightfall Rivals: {} launch: - /Knightfall_Rivals.app: + "/Knightfall_Rivals.app": - when: - os: mac store: steam - /Knightfall_Rivals.exe: + "/Knightfall_Rivals.exe": - when: - os: windows store: steam steam: id: 587460 -Knightin'+: +"Knightin'+": files: - /Knightin/User Data/Default/IndexedDB/chrome-extension_hjnbfbfljdniledkaamgmdnjfdijmofi_0.indexeddb.leveldb/000003.log: + "/Knightin/User Data/Default/IndexedDB/chrome-extension_hjnbfbfljdniledkaamgmdnjfdijmofi_0.indexeddb.leveldb/000003.log": tags: - save when: @@ -292902,17 +293770,17 @@ Knightin'+: gog: id: 1841559796 installDir: - Knightin'+: {} + "Knightin'+": {} launch: - /knightin'+.app/Contents/MacOS/nwjs: + "/knightin'+.app/Contents/MacOS/nwjs": - when: - os: mac store: steam - /knightin.sh: + "/knightin.sh": - when: - os: linux store: steam - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -292923,7 +293791,7 @@ Knightmare Lands: id: 798300 Knightmare Tower: files: - /userdata//298400/remote: + "/userdata//298400/remote": tags: - save when: @@ -292931,15 +293799,15 @@ Knightmare Tower: installDir: KnightmareTower: {} launch: - /Knightmare Tower.app: + "/Knightmare Tower.app": - when: - os: mac store: steam - /Knightmare Tower.exe: + "/Knightmare Tower.exe": - when: - os: windows store: steam - /Knightmare Tower.x86: + "/Knightmare Tower.x86": - when: - os: linux store: steam @@ -292947,12 +293815,12 @@ Knightmare Tower: id: 298400 Knights: files: - /AppData/LocalLow/Arzola's/KNIGHTS/*.dat: + "/AppData/LocalLow/Arzola's/KNIGHTS/*.dat": tags: - save when: - os: windows - /AppData/LocalLow/Arzola's/KNIGHTS/*.xml: + "/AppData/LocalLow/Arzola's/KNIGHTS/*.xml": tags: - save when: @@ -292960,20 +293828,20 @@ Knights: installDir: KNIGHTS: {} launch: - /KNIGHTS.app/Contents/MacOS/KNIGHTS: + "/KNIGHTS.app/Contents/MacOS/KNIGHTS": - when: - os: mac store: steam - /KNIGHTS.exe: + "/KNIGHTS.exe": - when: - os: windows store: steam - /KNIGHTS.x86: + "/KNIGHTS.x86": - when: - bit: 32 os: linux store: steam - /KNIGHTS.x86_64: + "/KNIGHTS.x86_64": - when: - bit: 64 os: linux @@ -292984,15 +293852,15 @@ Knights Hunt: installDir: Knights Hunt: {} launch: - /KnightsHunt.app/Contents/MacOS/KnightsHunt: + "/KnightsHunt.app/Contents/MacOS/KnightsHunt": - when: - os: mac store: steam - /KnightsHunt.exe: + "/KnightsHunt.exe": - when: - os: windows store: steam - /KnightsHunt.x86: + "/KnightsHunt.x86": - when: - os: linux store: steam @@ -293005,16 +293873,16 @@ Knights Rubbish: installDir: Knights Rubbish: {} launch: - /Knights Rubbish.app/Contents/MacOS/Knights Rubbish: + "/Knights Rubbish.app/Contents/MacOS/Knights Rubbish": - when: - os: mac store: steam - /Knights Rubbish.exe: + "/Knights Rubbish.exe": - when: - bit: 64 os: windows store: steam - /run.sh: + "/run.sh": - when: - bit: 64 os: linux @@ -293023,7 +293891,7 @@ Knights Rubbish: id: 980440 Knights and Bikes: files: - /AppData/LocalLow/Foam Sword/Knights and Bikes: + "/AppData/LocalLow/Foam Sword/Knights and Bikes": tags: - save when: @@ -293033,15 +293901,15 @@ Knights and Bikes: installDir: Knights and Bikes: {} launch: - /Knights and Bikes.app: + "/Knights and Bikes.app": - when: - os: mac store: steam - /Knights and Bikes.exe: + "/Knights and Bikes.exe": - when: - os: windows store: steam - /Knights and Bikes.x86_64: + "/Knights and Bikes.x86_64": - when: - os: linux store: steam @@ -293049,27 +293917,27 @@ Knights and Bikes: id: 592480 Knights and Merchants: files: - /Game/KAM/data/save: + "/Game/KAM/data/save": tags: - save when: - os: linux - /Game/KAM/setup.cfg: + "/Game/KAM/setup.cfg": tags: - config when: - os: linux - /data/save: + "/data/save": tags: - save when: - os: windows - /setup.cfg: + "/setup.cfg": tags: - config when: - os: windows - /Library/Containers/com.rune-soft.knightsandmerchants/Data/Library/Application Support/com.rune-soft.knightsandmerchants: + "/Library/Containers/com.rune-soft.knightsandmerchants/Data/Library/Application Support/com.rune-soft.knightsandmerchants": tags: - save when: @@ -293084,24 +293952,24 @@ Knights and Merchants: installDir: Knights and Merchants Historical Version: {} launch: - /KM_TPR.exe: + "/KM_TPR.exe": - when: - os: windows store: steam - /Knights and Merchants.app: + "/Knights and Merchants.app": - when: - os: mac store: steam - /hd/Knights_and_Merchants_steam.exe: + "/hd/Knights_and_Merchants_steam.exe": - when: - os: windows store: steam - workingDir: /hd + workingDir: "/hd" steam: id: 253900 Knights of Galiveth: files: - /Knights_of_Galiveth___Final_Cut/settings.ini: + "/Knights_of_Galiveth___Final_Cut/settings.ini": tags: - config when: @@ -293109,7 +293977,7 @@ Knights of Galiveth: installDir: Knights of Galiveth: {} launch: - /Knights of Galiveth.exe: + "/Knights of Galiveth.exe": - when: - os: windows store: steam @@ -293119,19 +293987,19 @@ Knights of Hearts: installDir: The Ritual: {} launch: - /KoH.exe: + "/KoH.exe": - when: - store: steam steam: id: 778830 Knights of Honor: files: - /Black Sea Studios/Knights of Honor: + "/Black Sea Studios/Knights of Honor": tags: - config when: - os: windows - /Black Sea Studios/Knights of Honor/save: + "/Black Sea Studios/Knights of Honor/save": tags: - save when: @@ -293141,19 +294009,19 @@ Knights of Honor: installDir: Knights of Honor: {} launch: - /KoH.exe: + "/KoH.exe": - when: - store: steam steam: id: 25830 -'Knights of Honor II: Sovereign': +"Knights of Honor II: Sovereign": files: - /AppData/LocalLow/BlackSeaGames/Sovereign: + "/AppData/LocalLow/BlackSeaGames/Sovereign": tags: - config when: - os: windows - /AppData/LocalLow/BlackSeaGames/Sovereign/Saves: + "/AppData/LocalLow/BlackSeaGames/Sovereign/Saves": tags: - save when: @@ -293163,7 +294031,7 @@ Knights of Honor: installDir: Knights of Honor II: {} launch: - /Sovereign.exe: + "/Sovereign.exe": - when: - bit: 64 os: windows @@ -293172,26 +294040,26 @@ Knights of Honor: id: 736820 Knights of Legend: files: - /CHARDATA: + "/CHARDATA": tags: - save when: - os: dos - /CHARPICS: + "/CHARPICS": tags: - save when: - os: dos - /SHLDPICS: + "/SHLDPICS": tags: - save when: - os: dos -'Knights of Light: The Prologue': +"Knights of Light: The Prologue": installDir: Kol_Prologue: {} launch: - /Kol_Prologue.exe: + "/Kol_Prologue.exe": - when: - os: windows store: steam @@ -293203,14 +294071,14 @@ Knights of Messiah: installDir: Knights of Messiah: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: id: 1132690 Knights of Pen and Paper +1 Edition: files: - /knightspp_Data/data.kopp: + "/knightspp_Data/data.kopp": tags: - save when: @@ -293221,15 +294089,15 @@ Knights of Pen and Paper +1 Edition: installDir: Knights of Pen and Paper: {} launch: - /knightspp.app: + "/knightspp.app": - when: - os: mac store: steam - /knightspp.exe: + "/knightspp.exe": - when: - os: windows store: steam - /knightspp.x86: + "/knightspp.x86": - when: - os: linux store: steam @@ -293237,13 +294105,13 @@ Knights of Pen and Paper +1 Edition: id: 231740 Knights of Pen and Paper 2: files: - /.config/unity3d/Kyy Games/Knights of Pen and Paper 2: + "/.config/unity3d/Kyy Games/Knights of Pen and Paper 2": tags: - config - save when: - os: linux - /AppData/LocalLow/Kyy Games/Knights of Pen and Paper 2/*.sav: + "/AppData/LocalLow/Kyy Games/Knights of Pen and Paper 2/*.sav": tags: - save when: @@ -293254,23 +294122,23 @@ Knights of Pen and Paper 2: installDir: Knights of Pen and Paper 2: {} launch: - /kopp2.app: + "/kopp2.app": - when: - os: mac store: steam - /kopp2.exe: + "/kopp2.exe": - when: - os: windows store: steam - /kopp2.x86: + "/kopp2.x86": - when: - os: linux store: steam steam: id: 310060 -'Knights of Pen and Paper 2: Free Edition': +"Knights of Pen and Paper 2: Free Edition": files: - /AppData/LocalLow/Kyy Games/Knights of Pen and Paper 2 F2P: + "/AppData/LocalLow/Kyy Games/Knights of Pen and Paper 2 F2P": tags: - save when: @@ -293278,7 +294146,7 @@ Knights of Pen and Paper 2: installDir: Project V for Victory: {} launch: - /kopp2.exe: + "/kopp2.exe": - when: - os: windows store: steam @@ -293292,15 +294160,15 @@ Knights of Tartarus: installDir: Knights of Tartarus: {} launch: - /Knights of Tartarus.app: + "/Knights of Tartarus.app": - when: - os: mac store: steam - /Knights of Tartarus.exe: + "/Knights of Tartarus.exe": - when: - os: windows store: steam - /Knights of Tartarus.x86: + "/Knights of Tartarus.x86": - when: - os: linux store: steam @@ -293310,11 +294178,11 @@ Knights of the Card Table: installDir: Knights of the Card Table: {} launch: - /KotCT.app/Contents/MacOS/KotCT: + "/KotCT.app/Contents/MacOS/KotCT": - when: - os: mac store: steam - /kotct.exe: + "/kotct.exe": - when: - os: windows store: steam @@ -293326,7 +294194,7 @@ Knights of the Chalice: installDir: Knights of the Chalice: {} launch: - /KOTC.exe: + "/KOTC.exe": - when: - os: windows store: steam @@ -293338,11 +294206,11 @@ Knights of the Chalice 2: installDir: Knights of the Chalice 2: {} launch: - /Knights of the Chalice 2.app: + "/Knights of the Chalice 2.app": - when: - os: mac store: steam - /KotC2.exe: + "/KotC2.exe": - when: - os: windows store: steam @@ -293362,55 +294230,55 @@ Knights of the Sky: installDir: Knights of the Sky: {} launch: - /dosbox_linux/daum/launch_kots_game_daum.sh: + "/dosbox_linux/daum/launch_kots_game_daum.sh": - when: - os: linux store: steam - workingDir: /dosbox_linux/daum - /dosbox_linux/launch_kots_game.sh: + workingDir: "/dosbox_linux/daum" + "/dosbox_linux/launch_kots_game.sh": - when: - os: linux store: steam - workingDir: /dosbox_linux - /dosbox_windows/daum/dosbox.exe: - - arguments: '-conf dosbox_kots.conf -conf dosbox_kots_launch_windows.conf -noconsole' + workingDir: "/dosbox_linux" + "/dosbox_windows/daum/dosbox.exe": + - arguments: "-conf dosbox_kots.conf -conf dosbox_kots_launch_windows.conf -noconsole" when: - os: windows store: steam - workingDir: /dosbox_windows/daum - /dosbox_windows/dosbox.exe: - - arguments: '-conf dosbox_kots.conf -conf dosbox_kots_launch_windows.conf -noconsole' + workingDir: "/dosbox_windows/daum" + "/dosbox_windows/dosbox.exe": + - arguments: "-conf dosbox_kots.conf -conf dosbox_kots_launch_windows.conf -noconsole" when: - os: windows store: steam - workingDir: /dosbox_windows + workingDir: "/dosbox_windows" steam: id: 347270 Knights of the Temple II: files: - /KOTT2.set: + "/KOTT2.set": tags: - config when: - os: windows - /Saves: + "/Saves": tags: - save when: - os: windows -'Knights of the Temple: Infernal Crusade': +"Knights of the Temple: Infernal Crusade": files: - /Environment.cfg: + "/Environment.cfg": tags: - config when: - os: windows - /Options.cfg: + "/Options.cfg": tags: - config when: - os: windows - /Sbz1/Save/(Name of User)/*.xrg: + "/Sbz1/Save/(Name of User)/*.xrg": tags: - save when: @@ -293418,7 +294286,7 @@ Knights of the Temple II: installDir: Knights of the Temple - Infernal Crusade: {} launch: - /Templar.exe: + "/Templar.exe": - when: - os: windows store: steam @@ -293428,16 +294296,16 @@ Knighty Night: installDir: Knighty Night: {} launch: - /Knighty Night.exe: + "/Knighty Night.exe": - when: - os: windows store: steam - /Knighty Night.x86: + "/Knighty Night.x86": - when: - bit: 32 os: linux store: steam - /Knighty Night.x86_64: + "/Knighty Night.x86_64": - when: - bit: 64 os: linux @@ -293446,7 +294314,7 @@ Knighty Night: id: 1087480 Knock Harder: files: - /Knock_Harder: + "/Knock_Harder": tags: - config - save @@ -293455,14 +294323,14 @@ Knock Harder: installDir: Knock Harder KH: {} launch: - /Knock Harder.exe: + "/Knock Harder.exe": - when: - store: steam steam: id: 1216490 Knock-Knock: files: - /knock.cfg: + "/knock.cfg": tags: - config when: @@ -293472,19 +294340,19 @@ Knock-Knock: installDir: Knock-knock: {} launch: - /knock.app: + "/knock.app": - when: - os: mac store: steam - /knock.cfg.exe: + "/knock.cfg.exe": - when: - os: windows store: steam - /knock.exe: + "/knock.exe": - when: - os: windows store: steam - /knock.x86: + "/knock.x86": - when: - os: linux store: steam @@ -293498,7 +294366,7 @@ Knockdown the Ball: installDir: Knockdown the Ball: {} launch: - /KTB.exe: + "/KTB.exe": - when: - os: windows store: steam @@ -293514,12 +294382,12 @@ Knockout Bowling VR: id: 1184190 Knockout City: files: - /KnockoutCity/save/local.save: + "/KnockoutCity/save/local.save": tags: - save when: - os: windows - /KnockoutCity/window-layout.json: + "/KnockoutCity/window-layout.json": tags: - config when: @@ -293527,7 +294395,7 @@ Knockout City: installDir: Knockout City: {} launch: - /Launch_Game.exe: + "/Launch_Game.exe": - when: - store: steam steam: @@ -293541,7 +294409,7 @@ Knockout Party: installDir: Knockout Party: {} launch: - /KnockOutParty.exe: + "/KnockOutParty.exe": - when: - os: windows store: steam @@ -293549,13 +294417,13 @@ Knockout Party: id: 1162050 Knocky Balls: files: - /Osgoode_Media/KnockyBalls.exe_Url_dpk4tstvsye4bbmo33tfkpcacsfwicu2/1.0.0.0/user.config: + "/Osgoode_Media/KnockyBalls.exe_Url_dpk4tstvsye4bbmo33tfkpcacsfwicu2/1.0.0.0/user.config": tags: - config - save when: - os: windows - /Packages/16591Monstrous.KnockyBalls_skedv6py88bbr/Settings/settings.dat: + "/Packages/16591Monstrous.KnockyBalls_skedv6py88bbr/Settings/settings.dat": tags: - config - save @@ -293566,7 +294434,7 @@ Knossos: installDir: Knossos: {} launch: - /Knossos.exe: + "/Knossos.exe": - when: - bit: 64 os: windows @@ -293577,7 +294445,7 @@ Knot: installDir: Knot: {} launch: - /Knot.exe: + "/Knot.exe": - when: - os: windows store: steam @@ -293589,7 +294457,7 @@ Know by Heart...: installDir: Remember: {} launch: - /KnowByHeart.exe: + "/KnowByHeart.exe": - when: - os: windows store: steam @@ -293600,20 +294468,20 @@ Knuckle Sandwich: id: 1012570 Knytt Stories: files: - /Saves: + "/Saves": tags: - save when: - os: windows Knytt Underground: files: - /.Nifflas/Knytt Underground: + "/.Nifflas/Knytt Underground": tags: - config - save when: - os: linux - /Nifflas: + "/Nifflas": tags: - save when: @@ -293621,15 +294489,15 @@ Knytt Underground: installDir: Knytt Underground: {} launch: - /Knytt Underground.app: + "/Knytt Underground.app": - when: - os: mac store: steam - /Knytt Underground.exe: + "/Knytt Underground.exe": - when: - os: windows store: steam - /run.sh: + "/run.sh": - when: - os: linux store: steam @@ -293637,12 +294505,12 @@ Knytt Underground: id: 248190 Koa and the Five Pirates of Mara: files: - /KoaProject/Saved/Config/WindowsNoEditor: + "/KoaProject/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /KoaProject/Saved/SaveGames: + "/KoaProject/Saved/SaveGames": tags: - save when: @@ -293653,7 +294521,7 @@ Koa and the Five Pirates of Mara: installDir: KoaFivePirates: {} launch: - /Koa.exe: + "/Koa.exe": - when: - os: windows store: steam @@ -293663,7 +294531,7 @@ Koala Kids: installDir: Koala Kids: {} launch: - /KoalaKids.exe: + "/KoalaKids.exe": - when: - os: windows store: steam @@ -293673,19 +294541,19 @@ Kobold Slayer: installDir: Kobold Slayer: {} launch: - /Dungeon3D/Game.app/Contents/MacOS/nwjs: - - arguments: '--in-process-gpu' + "/Dungeon3D/Game.app/Contents/MacOS/nwjs": + - arguments: "--in-process-gpu" when: - os: mac store: steam - /Dungeon3D/Game.exe: - - arguments: '--in-process-gpu' + "/Dungeon3D/Game.exe": + - arguments: "--in-process-gpu" when: - bit: 64 os: windows store: steam - /Dungeon3D/nw: - - arguments: '--in-process-gpu' + "/Dungeon3D/nw": + - arguments: "--in-process-gpu" when: - os: linux store: steam @@ -293693,12 +294561,12 @@ Kobold Slayer: id: 973040 KoboldKare: files: - /AppData/LocalLow/Naelstrof/KoboldKare: + "/AppData/LocalLow/Naelstrof/KoboldKare": tags: - config when: - os: windows - /AppData/LocalLow/Naelstrof/KoboldKare/saves: + "/AppData/LocalLow/Naelstrof/KoboldKare/saves": tags: - save when: @@ -293706,15 +294574,15 @@ KoboldKare: installDir: KoboldKare: {} launch: - /KoboldKare: + "/KoboldKare": - when: - os: linux store: steam - /KoboldKare.app: + "/KoboldKare.app": - when: - os: mac store: steam - /KoboldKare.exe: + "/KoboldKare.exe": - when: - os: windows store: steam @@ -293724,16 +294592,16 @@ Koboomballs: installDir: Koboomballs: {} launch: - /Koboomballs.exe: + "/Koboomballs.exe": - when: - os: windows store: steam - /Koboomballs.x86: + "/Koboomballs.x86": - when: - bit: 32 os: linux store: steam - /Koboomballs.x86_64: + "/Koboomballs.x86_64": - when: - bit: 64 os: linux @@ -293742,7 +294610,7 @@ Koboomballs: id: 983040 Kodu Game Lab: files: - /Documents/SavedGames/Boku/Player1: + "/Documents/SavedGames/Boku/Player1": tags: - save when: @@ -293754,7 +294622,7 @@ Koewotayorinia: installDir: koewotayorini: {} launch: - /nw.exe: + "/nw.exe": - arguments: www when: - os: windows @@ -293765,14 +294633,14 @@ Koewotayorinia SP: installDir: koewotayorinisp: {} launch: - /nw.exe: + "/nw.exe": - arguments: www when: - os: windows store: steam steam: id: 777200 -'Kofi Quest: Alpha MOD': +"Kofi Quest: Alpha MOD": installDir: Kofi Quest Alpha MOD: {} steam: @@ -293781,7 +294649,7 @@ Kogarashi: installDir: Kogarashi: {} launch: - /Kogarashi.exe: + "/Kogarashi.exe": - when: - store: steam steam: @@ -293790,43 +294658,43 @@ Kogent Defender: installDir: Kogent Defender: {} launch: - /KogentDefender.app: + "/KogentDefender.app": - when: - os: mac store: steam - /KogentDefender.exe: + "/KogentDefender.exe": - when: - os: windows store: steam - /KogentDefender.x86_64: + "/KogentDefender.x86_64": - when: - os: linux store: steam steam: id: 860360 -'Kohan II: Kings of War': +"Kohan II: Kings of War": installDir: Kohan II: {} launch: - /k2.exe: + "/k2.exe": - when: - store: steam steam: id: 97130 -'Kohan: Ahriman''s Gift': +"Kohan: Ahriman's Gift": installDir: Kohan Ahrimans Gift: {} launch: - /Kohan_AG.exe: + "/Kohan_AG.exe": - when: - store: steam steam: id: 97120 -'Kohan: Immortal Sovereigns': +"Kohan: Immortal Sovereigns": installDir: Kohan Immortal Sovereigns: {} launch: - /Kohan.exe: + "/Kohan.exe": - when: - store: steam steam: @@ -293835,7 +294703,7 @@ Koi: installDir: Koi: {} launch: - /Koi.exe: + "/Koi.exe": - when: - os: windows store: steam @@ -293845,7 +294713,7 @@ Koi Musubi: installDir: Koi Musubi: {} launch: - /Koimusubi.exe: + "/Koimusubi.exe": - when: - os: windows store: steam @@ -293855,7 +294723,7 @@ Koi Solitaire: installDir: Koi Solitaire: {} launch: - /KoiSolitaire.exe: + "/KoiSolitaire.exe": - when: - store: steam steam: @@ -293864,11 +294732,11 @@ Koi Unleashed: installDir: Koi Unleashed: {} launch: - /Koi Unleashed.exe: + "/Koi Unleashed.exe": - when: - os: windows store: steam - /Koi_Unleashed: + "/Koi_Unleashed": - when: - os: linux store: steam @@ -293876,13 +294744,13 @@ Koi Unleashed: id: 1128310 Koi-Koi Japan: installDir: - 'Koi-Koi Japan [Hanafuda playing cards]': {} + "Koi-Koi Japan [Hanafuda playing cards]": {} launch: - /KoiKoiJapan.app: + "/KoiKoiJapan.app": - when: - os: mac store: steam - /KoiKoiJapan.exe: + "/KoiKoiJapan.exe": - when: - os: windows store: steam @@ -293892,11 +294760,11 @@ Koihime Enbu: installDir: Koihime Enbu: {} launch: - /AsignDInput.exe: + "/AsignDInput.exe": - when: - os: windows store: steam - /koihime_enbu.exe: + "/koihime_enbu.exe": - when: - store: steam steam: @@ -293905,23 +294773,23 @@ Koihime Enbu RyoRaiRai: installDir: Koihime Enbu RyoRaiRai: {} launch: - /AsignDInput.exe: + "/AsignDInput.exe": - when: - os: windows store: steam - /KoihimeEnbu_steam.exe: + "/KoihimeEnbu_steam.exe": - when: - store: steam steam: id: 795510 Koikatsu Party: files: - /Koikatsu Party/UserData/save: + "/Koikatsu Party/UserData/save": tags: - save when: - os: windows - /UserData/config: + "/UserData/config": tags: - config when: @@ -293929,7 +294797,7 @@ Koikatsu Party: installDir: Koikatsu Party: {} launch: - /Initial Settings.exe: + "/Initial Settings.exe": - when: - bit: 64 os: windows @@ -293940,11 +294808,11 @@ Koikoi: installDir: Koikoi: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam - /Koikoi.app: + "/Koikoi.app": - when: - os: mac store: steam @@ -293957,7 +294825,7 @@ Koishi Navigation Desktop Youkai: installDir: Koishi Navigation Desktop Youkai: {} launch: - /KoishiNavigationDesktopYoukai.exe: + "/KoishiNavigationDesktopYoukai.exe": - when: - store: steam steam: @@ -293969,7 +294837,7 @@ Kokoda VR: id: 739960 Kokomando: files: - /data/save: + "/data/save": tags: - save when: @@ -293978,15 +294846,15 @@ Kokorogawari: installDir: Kokorogawari: {} launch: - /Kokorogawari-v1.0.app: + "/Kokorogawari-v1.0.app": - when: - os: mac store: steam - /Kokorogawari-v1.0.exe: + "/Kokorogawari-v1.0.exe": - when: - os: windows store: steam - /Kokorogawari-v1.0.sh: + "/Kokorogawari-v1.0.sh": - when: - os: linux store: steam @@ -293996,7 +294864,7 @@ Kokurase - Episode 1: installDir: Kokurase: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: @@ -294014,11 +294882,11 @@ Koliseum Soccer VR: Koliseum Soccer VR: {} steam: id: 921960 -'Kolkhoz: The Red Wedge': +"Kolkhoz: The Red Wedge": installDir: Kolkhoz The Red Wedge: {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: @@ -294030,7 +294898,7 @@ Kolobok: installDir: KOLOBOK: {} launch: - /2D Kolobok.exe: + "/2D Kolobok.exe": - when: - os: windows store: steam @@ -294038,12 +294906,12 @@ Kolobok: id: 757170 Koloro: files: - /Saves//GameProgress.dat: + "/Saves//GameProgress.dat": tags: - save when: - os: windows - /Saves//Options.dat: + "/Saves//Options.dat": tags: - config when: @@ -294051,21 +294919,24 @@ Koloro: installDir: Koloro: {} launch: - /Koloro.app: + "/Koloro.app": - when: - os: mac store: steam - /Koloro.exe: + "/Koloro.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam - /Koloro.x86: + "/Koloro.x86": - when: - bit: 32 os: linux store: steam - /Koloro.x86_64: + "/Koloro.x86_64": - when: - bit: 64 os: linux @@ -294080,11 +294951,11 @@ Kolumno: installDir: Kolumno: {} launch: - /Kolumno.exe: + "/Kolumno.exe": - when: - os: windows store: steam - /kolumno.app/Contents/MacOS/kolumno: + "/kolumno.app/Contents/MacOS/kolumno": - when: - os: mac store: steam @@ -294094,11 +294965,11 @@ Kombine: installDir: Kombine: {} launch: - /Kombine.app: + "/Kombine.app": - when: - os: mac store: steam - /Kombine.exe: + "/Kombine.exe": - when: - os: windows store: steam @@ -294108,15 +294979,15 @@ Kombinera: installDir: Kombinera: {} launch: - /Kombinera.exe: + "/Kombinera.exe": - when: - os: windows store: steam - /Kombinera.x86_64: + "/Kombinera.x86_64": - when: - os: linux store: steam - /kombinera.app: + "/kombinera.app": - when: - os: mac store: steam @@ -294126,7 +294997,7 @@ Kommersant: installDir: KOMMERSANT: {} launch: - /kom.exe: + "/kom.exe": - when: - store: steam steam: @@ -294135,11 +295006,11 @@ Kommissar: installDir: Kommissar: {} launch: - /Kommissar.app/Contents/MacOS/Kommissar: + "/Kommissar.app/Contents/MacOS/Kommissar": - when: - os: mac store: steam - /Kommissar.exe: + "/Kommissar.exe": - when: - os: windows store: steam @@ -294147,22 +295018,22 @@ Kommissar: id: 540180 Kona: files: - /AppData/LocalLow/Parabole/Kona/Save: + "/AppData/LocalLow/Parabole/Kona/Save": tags: - save when: - os: windows - /Library/Application Support/unity.Parabole.Kona/Save: + "/Library/Application Support/unity.Parabole.Kona/Save": tags: - save when: - os: mac - /unity3d/Parabole/Kona/Save: + "/unity3d/Parabole/Kona/Save": tags: - save when: - os: linux - /unity3d/Parabole/Kona/prefs: + "/unity3d/Parabole/Kona/prefs": tags: - config when: @@ -294172,20 +295043,20 @@ Kona: installDir: Kona: {} launch: - /Kona.app: + "/Kona.app": - when: - os: mac store: steam - - arguments: '-force-opengl' + - arguments: "-force-opengl" when: - bit: 64 os: mac store: steam - /Kona.exe: + "/Kona.exe": - when: - os: windows store: steam - /Kona.x86_64: + "/Kona.x86_64": - when: - os: linux store: steam @@ -294195,37 +295066,37 @@ Kona: - config steam: id: 365160 -'Kona II: Brume': +"Kona II: Brume": files: - /AppData/LocalLow/Parabole/Kona 2/: + "/AppData/LocalLow/Parabole/Kona 2/": tags: - save when: - os: windows - /unity3d/Parabole/Kona 2: + "/unity3d/Parabole/Kona 2": tags: - config when: - os: linux - /unity3d/Parabole/Kona 2/: + "/unity3d/Parabole/Kona 2/": tags: - save when: - os: linux steam: id: 1229020 -'Konami Collector''s Series: Castlevania & Contra': +"Konami Collector's Series: Castlevania & Contra": files: - /*.qxf: + "/*.qxf": tags: - save when: - os: windows gog: id: 1862798366 -'KonoSuba: Fukkatsu no Beldia': +"KonoSuba: Fukkatsu no Beldia": files: - /data/config: + "/data/config": tags: - config - save @@ -294240,7 +295111,7 @@ Konrad the Rocket: installDir: Konrad the Rocket: {} launch: - /KonradTheRocket.exe: + "/KonradTheRocket.exe": - when: - os: windows store: steam @@ -294250,24 +295121,24 @@ Kontrakt: installDir: Kontrakt: {} launch: - /Kontrakt: + "/Kontrakt": - when: - os: linux store: steam - /Kontrakt.exe: + "/Kontrakt.exe": - when: - os: windows store: steam steam: id: 924370 -'Konung 2: Blood of Titans': +"Konung 2: Blood of Titans": files: - /KONUNG2.CFG: + "/KONUNG2.CFG": tags: - config when: - os: windows - /KONUNG2.SA*: + "/KONUNG2.SA*": tags: - save when: @@ -294277,15 +295148,15 @@ Kontrakt: installDir: Konung2: {} launch: - /Konung2.exe: + "/Konung2.exe": - when: - os: windows store: steam steam: id: 289360 -'Konung III: Ties of the Dynasty': +"Konung III: Ties of the Dynasty": files: - /My Games/Konung3: + "/My Games/Konung3": tags: - save when: @@ -294295,40 +295166,40 @@ Kontrakt: installDir: Konung3: {} launch: - /Konung3.exe: + "/Konung3.exe": - when: - os: windows store: steam steam: id: 289380 -'Konung: Legends of the North': +"Konung: Legends of the North": files: - /CLANS.CFG: + "/CLANS.CFG": tags: - config when: - os: windows - /HISCORES.DAT: + "/HISCORES.DAT": tags: - save when: - os: windows - /KONUNG.CFG: + "/KONUNG.CFG": tags: - config when: - os: windows - /KONUNG.SA*: + "/KONUNG.SA*": tags: - save when: - os: windows - /LAN.CFG: + "/LAN.CFG": tags: - config when: - os: windows - /SAVITEMS.DAT: + "/SAVITEMS.DAT": tags: - save when: @@ -294339,15 +295210,15 @@ Koo & Yuu: installDir: Koo & Yuu: {} launch: - /Contents/MacOS/macos_content: + "/Contents/MacOS/macos_content": - when: - os: mac store: steam - /Koo & Yuu.exe: + "/Koo & Yuu.exe": - when: - os: windows store: steam - /Koo & Yuu.x86_64: + "/Koo & Yuu.x86_64": - when: - os: linux store: steam @@ -294357,16 +295228,16 @@ Kopanito All-Stars Soccer: installDir: Kopanito All-Stars Soccer: {} launch: - /kopanito.app: + "/kopanito.app": - when: - os: mac store: steam - /kopanito.exe: - - arguments: ' --in-process-gpu --disable-direct-composition' + "/kopanito.exe": + - arguments: " --in-process-gpu --disable-direct-composition" when: - os: windows store: steam - /kopanito.sh: + "/kopanito.sh": - when: - os: linux store: steam @@ -294377,7 +295248,7 @@ Korablik: id: 562760 Koral: files: - /Koral/Saved/SaveGames: + "/Koral/Saved/SaveGames": tags: - save when: @@ -294385,44 +295256,44 @@ Koral: installDir: Koral: {} launch: - /Koral/Koral-Game-Launcher.exe: + "/Koral/Koral-Game-Launcher.exe": - when: - store: steam steam: id: 896750 -'Korean Scary Folk Tales VR: The Forbidden Book': +"Korean Scary Folk Tales VR: The Forbidden Book": installDir: Korean Scary Folk Tales VR The Forbidden Book: {} steam: id: 872530 -'Korona:Nemesis': +"Korona:Nemesis": installDir: KoronaNemesis: {} launch: - /KoronaNemesis/KoronaNemesis.exe: + "/KoronaNemesis/KoronaNemesis.exe": - when: - os: windows store: steam steam: id: 1019740 -Koropokkur in Love ~A Little Fairy's Tale~: +"Koropokkur in Love ~A Little Fairy's Tale~": installDir: Koropokkur in Love ~A Little Fairy’s Tale~: {} launch: - /Koropokkur in Love ~A Little Fairy's Tale~.exe: + "/Koropokkur in Love ~A Little Fairy's Tale~.exe": - when: - os: windows store: steam - /Koropokkur.app: + "/Koropokkur.app": - when: - os: mac store: steam - /Koropokkur.x86: + "/Koropokkur.x86": - when: - bit: 32 os: linux store: steam - /Koropokkur.x86_64: + "/Koropokkur.x86_64": - when: - bit: 64 os: linux @@ -294433,7 +295304,7 @@ Korvae in space: installDir: KorvaeInSpace: {} launch: - /PlatformerTest.exe: + "/PlatformerTest.exe": - when: - os: windows store: steam @@ -294443,8 +295314,8 @@ Korvux: installDir: Korvux: {} launch: - /Korvux.exe: - - arguments: '--in-process-gpu' + "/Korvux.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam @@ -294454,15 +295325,15 @@ Korwin The Game: installDir: Korwin The Game: {} launch: - /Korwin.app: + "/Korwin.app": - when: - os: mac store: steam - /Korwin.exe: + "/Korwin.exe": - when: - os: windows store: steam - /Korwin.x86: + "/Korwin.x86": - when: - os: linux store: steam @@ -294470,7 +295341,7 @@ Korwin The Game: id: 375030 Kosmokrats: files: - /AppData/LocalLow/Pixel Delusion/Kosmokrats: + "/AppData/LocalLow/Pixel Delusion/Kosmokrats": tags: - save when: @@ -294480,7 +295351,7 @@ Kosmokrats: installDir: Kosmokrats: {} launch: - /Kosmokrats.exe: + "/Kosmokrats.exe": - when: - os: windows store: steam @@ -294488,14 +295359,14 @@ Kosmokrats: id: 1204410 Kosmonaut: files: - /HISCORES.SKY: + "/HISCORES.SKY": tags: - save when: - os: dos Kosta Projekt: files: - /ZapisGry.KostaProjekt: + "/ZapisGry.KostaProjekt": tags: - save when: @@ -294503,7 +295374,7 @@ Kosta Projekt: installDir: Kosta Projekt: {} launch: - /KostaProjekt.exe: + "/KostaProjekt.exe": - when: - os: windows store: steam @@ -294513,39 +295384,39 @@ Koth: installDir: KOTH: {} launch: - /koth.exe: - - arguments: '-novr' + "/koth.exe": + - arguments: "-novr" when: - os: windows store: steam steam: id: 493110 -'Kotodama: The 7 Mysteries of Fujisawa': +"Kotodama: The 7 Mysteries of Fujisawa": installDir: Kotodama: {} launch: - /Kotodama The 7 Mysteries of Fujisawa.exe: + "/Kotodama The 7 Mysteries of Fujisawa.exe": - when: - bit: 64 os: windows store: steam steam: id: 997060 -'Koumajou Remilia: Scarlet Symphony': +"Koumajou Remilia: Scarlet Symphony": installDir: Koumajou Remilia Scarlet Symphony: {} launch: - /Koumajou Remilia.exe: + "/Koumajou Remilia.exe": - when: - os: windows store: steam steam: id: 1229880 -KovaaK's FPS Aim Trainer: +"KovaaK's FPS Aim Trainer": installDir: FPSAimTrainer: {} launch: - /FPSAimTrainer.exe: + "/FPSAimTrainer.exe": - when: - bit: 64 os: windows @@ -294554,12 +295425,12 @@ KovaaK's FPS Aim Trainer: id: 824270 Kowloon High-School Chronicle: files: - /KowloonSaveData: + "/KowloonSaveData": tags: - save when: - os: windows - /UserConfigFile.ini: + "/UserConfigFile.ini": tags: - config when: @@ -294567,7 +295438,7 @@ Kowloon High-School Chronicle: installDir: Kowloon: {} launch: - /SteamLauncher.exe: + "/SteamLauncher.exe": - when: - store: steam registry: @@ -294580,17 +295451,17 @@ Koya Rift: installDir: Koya Rift: {} launch: - /Koya Rift.exe: + "/Koya Rift.exe": - when: - os: windows store: steam steam: id: 328990 -Kozue's Strange Journey: +"Kozue's Strange Journey": installDir: - Kozue's Strange Journey: {} + "Kozue's Strange Journey": {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: @@ -294599,7 +295470,7 @@ KrAsAvA Shot: installDir: krAsAvA Shot: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -294609,7 +295480,7 @@ Kra-Ken: installDir: Kra-Ken: {} launch: - /Tenshin.exe: + "/Tenshin.exe": - when: - bit: 64 os: windows @@ -294620,7 +295491,7 @@ Krai Mira: installDir: Krai Mira: {} launch: - /KraiMira.exe: + "/KraiMira.exe": - when: - os: windows store: steam @@ -294633,17 +295504,17 @@ Kraken: id: 729190 Kraken Academy!!: files: - /.config/unity3d/Happy Broccoli Games/Kraken Academy: + "/.config/unity3d/Happy Broccoli Games/Kraken Academy": tags: - save when: - os: linux - /AppData/LocalLow/Happy Broccoli Games/Kraken Academy: + "/AppData/LocalLow/Happy Broccoli Games/Kraken Academy": tags: - save when: - os: windows - /Library/Application Support/unity.Happy Broccoli Games.Kraken Academy: + "/Library/Application Support/unity.Happy Broccoli Games.Kraken Academy": tags: - save when: @@ -294656,31 +295527,31 @@ Kraken Academy!!: installDir: Kraken Academy: {} launch: - /Kraken Academy: + "/Kraken Academy": - when: - bit: 64 os: linux store: steam - /Kraken Academy.app/Contents/MacOS/Kraken Academy: + "/Kraken Academy.app/Contents/MacOS/Kraken Academy": - when: - os: mac store: steam - /Kraken Academy.exe: + "/Kraken Academy.exe": - when: - bit: 64 os: windows store: steam steam: id: 1158220 -Kraken's curse: +"Kraken's curse": installDir: krakenscurse: {} launch: - /krakenscurse.app: + "/krakenscurse.app": - when: - os: mac store: steam - /krakenscurse.exe: + "/krakenscurse.exe": - when: - os: windows store: steam @@ -294693,7 +295564,7 @@ Krampus Quest: installDir: Krampus Quest: {} launch: - /KrampusQuest.exe: + "/KrampusQuest.exe": - when: - os: windows store: steam @@ -294703,7 +295574,7 @@ Krampus is Home: installDir: Krampus is Home: {} launch: - /Krampus is Home.exe: + "/Krampus is Home.exe": - when: - os: windows store: steam @@ -294711,12 +295582,12 @@ Krampus is Home: id: 839420 Krater: files: - /userdata//42170: + "/userdata//42170": tags: - save when: - store: steam - /FatShark/Krater/user_settings.config: + "/FatShark/Krater/user_settings.config": tags: - config when: @@ -294724,11 +295595,11 @@ Krater: installDir: Krater: {} launch: - /Krater.app/Contents/MacOS/Krater.sh: + "/Krater.app/Contents/MacOS/Krater.sh": - when: - os: mac store: steam - /run_game.exe: + "/run_game.exe": - arguments: krater.exe -bundle-dir data -data-dir data when: - os: windows @@ -294739,22 +295610,22 @@ Krautscape: installDir: Krautscape: {} launch: - /Krautscape.app/Contents/MacOS/Krautscape: + "/Krautscape.app/Contents/MacOS/Krautscape": - when: - os: mac store: steam - /Krautscape.exe: + "/Krautscape.exe": - when: - os: windows store: steam - /Krautscape.x86: - - arguments: '-force-opengl' + "/Krautscape.x86": + - arguments: "-force-opengl" when: - bit: 32 os: linux store: steam - /Krautscape.x86_64: - - arguments: '-force-opengl' + "/Krautscape.x86_64": + - arguments: "-force-opengl" when: - bit: 64 os: linux @@ -294769,28 +295640,28 @@ Kraven Manor: installDir: Kraven Manor: {} launch: - /Binaries/Win32/KravenManor.exe: - - arguments: '-seekfreeloading' + "/Binaries/Win32/KravenManor.exe": + - arguments: "-seekfreeloading" when: - os: windows store: steam steam: id: 296630 -'Kreed: Battle for Savitar': +"Kreed: Battle for Savitar": files: - /config.ini: + "/config.ini": tags: - config when: - os: windows - /saves: + "/saves": tags: - save when: - os: windows Kreedz Climbing: files: - /kz/cfg: + "/kz/cfg": tags: - config when: @@ -294798,29 +295669,29 @@ Kreedz Climbing: installDir: KreedzClimbing: {} launch: - /hl2.exe: - - arguments: '-game kz -steam +mat_dxlevel 95 +con_enable 1' + "/hl2.exe": + - arguments: "-game kz -steam +mat_dxlevel 95 +con_enable 1" when: - store: steam - - arguments: '-game kz -steam -sw -noborder +mat_dxlevel 95 +con_enable 1 ' + - arguments: "-game kz -steam -sw -noborder +mat_dxlevel 95 +con_enable 1 " when: - store: steam - - arguments: '-game kz -steam +con_enable 1 +mat_dxlevel 80' + - arguments: "-game kz -steam +con_enable 1 +mat_dxlevel 80" when: - store: steam - - arguments: '-game kz -steam -sw -noborder +con_enable 1 +mat_dxlevel 80' + - arguments: "-game kz -steam -sw -noborder +con_enable 1 +mat_dxlevel 80" when: - store: steam - - arguments: '-game ModDemoViewer/KreedzClimbing -steam -toconsole +con_enable 1' + - arguments: "-game ModDemoViewer/KreedzClimbing -steam -toconsole +con_enable 1" when: - store: steam - - arguments: '-game ModDemoViewer/KreedzClimbing -steam -toconsole -sw -noborder +con_enable 1' + - arguments: "-game ModDemoViewer/KreedzClimbing -steam -toconsole -sw -noborder +con_enable 1" when: - store: steam - - arguments: '-game kz -steam -tools -nop4' + - arguments: "-game kz -steam -tools -nop4" when: - store: steam - - arguments: '-game kz -steam -tools -nop4 -sw -noborder' + - arguments: "-game kz -steam -tools -nop4 -sw -noborder" when: - store: steam steam: @@ -294829,7 +295700,7 @@ KreisReise: installDir: KreisReise: {} launch: - /Kreisreise.exe: + "/Kreisreise.exe": - when: - store: steam steam: @@ -294839,14 +295710,14 @@ Krieg: Krieg: {} steam: id: 655620 -'Krim: The Music Bot': +"Krim: The Music Bot": steam: id: 863750 Krinkle Krusher: installDir: Krinkle Krusher: {} launch: - /kk.exe: + "/kk.exe": - when: - os: windows store: steam @@ -294856,8 +295727,8 @@ Kritika Online: installDir: Kritika: {} launch: - /KritikaPatcher.exe: - - arguments: '-channelType:ST' + "/KritikaPatcher.exe": + - arguments: "-channelType:ST" when: - os: windows store: steam @@ -294868,12 +295739,12 @@ Krog Wars: id: 457940 Kromaia: files: - /Configuration/Options/*.xml: + "/Configuration/Options/*.xml": tags: - config when: - os: windows - /XML/Backups/*.xml: + "/XML/Backups/*.xml": tags: - save when: @@ -294883,19 +295754,19 @@ Kromaia: installDir: Kromaia: {} launch: - /exe/kromaia.exe: + "/exe/kromaia.exe": - when: - bit: 32 os: windows store: steam - workingDir: /exe + workingDir: "/exe" steam: id: 285980 Kronos: installDir: Kronos: {} launch: - /Kronos.exe: + "/Kronos.exe": - when: - os: windows store: steam @@ -294905,13 +295776,13 @@ Krosmaga: installDir: KROSMAGA: {} launch: - '/Ankama Launcher [steam].app': - - arguments: '-steam:609940' + "/Ankama Launcher [steam].app": + - arguments: "-steam:609940" when: - os: mac store: steam - '/Ankama Launcher [steam].exe': - - arguments: '-steam:609940' + "/Ankama Launcher [steam].exe": + - arguments: "-steam:609940" when: - os: windows store: steam @@ -294921,17 +295792,20 @@ Krosmaster Arena: installDir: Krosmaster 3D: {} launch: - /Updater Krosmaster 3D.app/Contents/MacOS/transition: + "/Updater Krosmaster 3D.app/Contents/MacOS/transition": - when: - bit: 64 os: mac store: steam - /transition/transition: + "/transition/transition": - when: + - bit: 32 + os: linux + store: steam - bit: 64 os: linux store: steam - /transition/transition.exe: + "/transition/transition.exe": - when: - os: windows store: steam @@ -294942,7 +295816,7 @@ Krotruvink: id: 701670 Krunch: files: - /userdata//280500/remote: + "/userdata//280500/remote": tags: - save when: @@ -294950,11 +295824,11 @@ Krunch: installDir: KRUNCH: {} launch: - /KRUNCH.exe: + "/KRUNCH.exe": - when: - os: windows store: steam - /Krunch.app: + "/Krunch.app": - when: - os: mac store: steam @@ -294964,26 +295838,26 @@ Krunker: installDir: Krunker: {} launch: - /Official Krunker.io Client.app: - - arguments: '--steam' + "/Official Krunker.io Client.app": + - arguments: "--steam" when: - os: mac store: steam - /Official Krunker.io Client.exe: - - arguments: '--steam' + "/Official Krunker.io Client.exe": + - arguments: "--steam" when: - os: windows store: steam steam: id: 1408720 -'Krush Kill ''N Destroy 2: Krossfire': +"Krush Kill 'N Destroy 2: Krossfire": files: - /Options.cfg: + "/Options.cfg": tags: - config when: - os: windows - /Savegame: + "/Savegame": tags: - save when: @@ -294993,15 +295867,15 @@ Krunker: installDir: Krush Kill ‘N Destroy 2 Krossfire: {} launch: - /KKND2.exe: + "/KKND2.exe": - when: - os: windows store: steam steam: id: 1292180 -Krush Kill 'N Destroy Xtreme: +"Krush Kill 'N Destroy Xtreme": files: - /game*.sav: + "/game*.sav": tags: - save when: @@ -295009,9 +295883,9 @@ Krush Kill 'N Destroy Xtreme: gog: id: 1207659107 installDir: - Krush Kill 'N Destroy Xtreme: {} + "Krush Kill 'N Destroy Xtreme": {} launch: - /KKNDgame.exe: + "/KKNDgame.exe": - when: - os: windows store: steam @@ -295021,8 +295895,8 @@ KryptCrawler: installDir: KryptCrawler: {} launch: - /KryptCrawler.exe: - - arguments: '-mode standalone' + "/KryptCrawler.exe": + - arguments: "-mode standalone" when: - os: windows store: steam @@ -295032,34 +295906,34 @@ Krystal the Adventurer: installDir: KrystalAdventurer: {} launch: - /ProjFox.exe: + "/ProjFox.exe": - when: - os: windows store: steam steam: id: 848770 -'Krystopia: A Puzzle Journey': +"Krystopia: A Puzzle Journey": installDir: Krystopia A Puzzle Journey: {} launch: - /Krystopia.exe: + "/Krystopia.exe": - when: - store: steam steam: id: 1172170 -'Ku: Shroud of the Morrigan': +"Ku: Shroud of the Morrigan": installDir: KuEp1: {} launch: - /kuSOTM.app: + "/kuSOTM.app": - when: - os: mac store: steam - /kuSOTM.exe: + "/kuSOTM.exe": - when: - os: windows store: steam - /kuSOTMLinux: + "/kuSOTMLinux": - when: - os: linux store: steam @@ -295069,7 +295943,7 @@ Kubblammo: installDir: Viking Trickshot: {} launch: - /Viking Trickshot/Viking Trickshot.exe: + "/Viking Trickshot/Viking Trickshot.exe": - when: - os: windows store: steam @@ -295079,7 +295953,7 @@ Kubble: installDir: Kubble: {} launch: - /bubble3D.exe: + "/bubble3D.exe": - when: - os: windows store: steam @@ -295089,7 +295963,7 @@ Kubble Star: installDir: Kubble Star: {} launch: - /kubble_star.exe: + "/kubble_star.exe": - when: - os: windows store: steam @@ -295097,7 +295971,7 @@ Kubble Star: id: 1212290 Kubifaktorium: files: - /unity3d/MirkoStudio/Kubifaktorium: + "/unity3d/MirkoStudio/Kubifaktorium": tags: - config - save @@ -295106,16 +295980,16 @@ Kubifaktorium: installDir: Kubifaktorium: {} launch: - /Kubifaktorium-Linux: + "/Kubifaktorium-Linux": - when: - bit: 64 os: linux store: steam - /Kubifaktorium-Mac.app: + "/Kubifaktorium-Mac.app": - when: - os: mac store: steam - /Kubifaktorium-Windows64.exe: + "/Kubifaktorium-Windows64.exe": - when: - bit: 64 os: windows @@ -295126,16 +296000,16 @@ Kubix: installDir: Kubix: {} launch: - /Kubix.app/Contents/MacOS/Kubix: + "/Kubix.app/Contents/MacOS/Kubix": - when: - os: mac store: steam - /Kubix.exe: + "/Kubix.exe": - when: - bit: 64 os: windows store: steam - /Kubix.x86_64: + "/Kubix.x86_64": - when: - bit: 64 os: linux @@ -295146,7 +296020,7 @@ Kuboom: installDir: Kuboom: {} launch: - /build.exe: + "/build.exe": - when: - os: windows store: steam @@ -295161,7 +296035,7 @@ Kuchisake Onna - 口裂け女: installDir: Kuchisake Onna - 口裂け女: {} launch: - /Kuchisake-Onna.exe: + "/Kuchisake-Onna.exe": - when: - store: steam steam: @@ -295170,17 +296044,17 @@ Kukoo Kitchen: installDir: Kukoo Kitchen: {} launch: - /Main.exe: + "/Main.exe": - when: - os: windows store: steam steam: id: 976870 -'Kukoos: Lost Pets': +"Kukoos: Lost Pets": installDir: Kukoos Lost Pets: {} launch: - /KM.exe: + "/KM.exe": - when: - bit: 64 os: windows @@ -295191,31 +296065,31 @@ Kukui: installDir: Kukui: {} launch: - /Kukui.exe: + "/Kukui.exe": - when: - os: windows store: steam steam: id: 680040 -'Kult of Ktulu: Olympic': +"Kult of Ktulu: Olympic": installDir: Kult of Ktulu Olympic: {} launch: - /kokolympic.app: + "/kokolympic.app": - when: - os: mac store: steam - /kokolympic.exe: + "/kokolympic.exe": - when: - os: windows store: steam steam: id: 586230 -'Kult: The Temple of Flying Saucers': +"Kult: The Temple of Flying Saucers": installDir: Chamber of the Sci-Mutant Priestess: {} launch: - /dosbox.exe: + "/dosbox.exe": - when: - os: windows store: steam @@ -295227,15 +296101,15 @@ Kulzas Tomb: Kumo: steam: id: 1121880 -'Kumoon: Ballistic Physics Puzzle': +"Kumoon: Ballistic Physics Puzzle": installDir: Kumoon: {} launch: - /Kumoon.app: + "/Kumoon.app": - when: - os: mac store: steam - /Kumoon.exe: + "/Kumoon.exe": - when: - os: windows store: steam @@ -295250,7 +296124,7 @@ Kunai: installDir: KUNAI: {} launch: - /KUNAI.exe: + "/KUNAI.exe": - when: - os: windows store: steam @@ -295267,7 +296141,7 @@ Kung Fu Grand King: installDir: Kung Fu Grand King: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: @@ -295276,7 +296150,7 @@ Kung Fu Jesus: installDir: Kung Fu Jesus: {} launch: - /Kung Fu Jesus and the Search for Celestial Gold.exe: + "/Kung Fu Jesus and the Search for Celestial Gold.exe": - when: - bit: 64 os: windows @@ -295285,12 +296159,12 @@ Kung Fu Jesus: id: 1140790 Kung Fu Panda: files: - /Activision/Kung Fu Panda/Saved Games/GLOBAL.DAT: + "/Activision/Kung Fu Panda/Saved Games/GLOBAL.DAT": tags: - config when: - os: windows - /Activision/Kung Fu Panda/Saved Games/SLOT0: + "/Activision/Kung Fu Panda/Saved Games/SLOT0": tags: - save when: @@ -295299,11 +296173,11 @@ Kung Fu Panda: HKEY_CURRENT_USER/SOFTWARE/Activision/Kung Fu Panda/Settings: tags: - config -'Kung Fu Panda: Showdown of Legendary Legends': +"Kung Fu Panda: Showdown of Legendary Legends": installDir: Kung Fu Panda Showdown of Legendary Legends: {} launch: - /KFP.exe: + "/KFP.exe": - when: - os: windows store: steam @@ -295314,14 +296188,14 @@ Kung Fu Ping Pong: Kung Fu Ping Pong: {} steam: id: 568240 -'Kung Fu Strike: The Warrior''s Rise': +"Kung Fu Strike: The Warrior's Rise": files: - /Config.exe: + "/Config.exe": tags: - config when: - os: windows - /Content/data/Config.XNA.xml: + "/Content/data/Config.XNA.xml": tags: - config when: @@ -295329,19 +296203,19 @@ Kung Fu Ping Pong: installDir: KungFuStrike: {} launch: - /KungFuStrike.exe: + "/KungFuStrike.exe": - when: - store: steam steam: id: 212030 -'Kung Fury: Street Rage': +"Kung Fury: Street Rage": files: - /.config/unity3d/Hello There/Kung Fury: + "/.config/unity3d/Hello There/Kung Fury": tags: - save when: - os: linux - /AppData/LocalLow/Hello There/Kung Fury/UserData: + "/AppData/LocalLow/Hello There/Kung Fury/UserData": tags: - save when: @@ -295349,20 +296223,20 @@ Kung Fu Ping Pong: installDir: Kung Fury Street Rage: {} launch: - /KungFury.app: + "/KungFury.app": - when: - os: mac store: steam - /KungFury.exe: + "/KungFury.exe": - when: - os: windows store: steam - /KungFury.x86: + "/KungFury.x86": - when: - bit: 32 os: linux store: steam - /KungFury.x86_64: + "/KungFury.x86_64": - when: - bit: 64 os: linux @@ -295377,11 +296251,11 @@ KungFu Kickball: installDir: KungFu Kickball: {} launch: - /KungFuKickball.app: + "/KungFuKickball.app": - when: - os: mac store: steam - /KungFuKickball.exe: + "/KungFuKickball.exe": - when: - os: windows store: steam @@ -295396,11 +296270,11 @@ Kungfu Beggar: installDir: Kungfu Beggar: {} launch: - /kungfu.app/Contents/MacOS/kungfu: + "/kungfu.app/Contents/MacOS/kungfu": - when: - os: mac store: steam - /kungfu.exe: + "/kungfu.exe": - when: - os: windows store: steam @@ -295413,7 +296287,7 @@ KuniTure: installDir: KuniTure: {} launch: - /KuniTure.exe: + "/KuniTure.exe": - when: - os: windows store: steam @@ -295428,7 +296302,7 @@ Kunoichi: installDir: Kunoichi: {} launch: - /Kunoichi_NEW.exe: + "/Kunoichi_NEW.exe": - when: - os: windows store: steam @@ -295438,7 +296312,7 @@ Kunoichi Botan: installDir: Kunoichi Botan: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: @@ -295447,7 +296321,7 @@ Kunoichi Ninja: installDir: Kunoichi Ninja: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -295457,7 +296331,7 @@ Kunoichi Rush: installDir: Kunoichi Rush: {} launch: - /Kunoichi_S.exe: + "/Kunoichi_S.exe": - when: - os: windows store: steam @@ -295467,7 +296341,7 @@ Kuraburo Kai: installDir: Kuraburo Kai: {} launch: - /KUraburo_Kai.exe: + "/KUraburo_Kai.exe": - when: - os: windows store: steam @@ -295477,23 +296351,23 @@ Kuro Survival: installDir: Kuro survival: {} launch: - /KuroSurvival.exe: + "/KuroSurvival.exe": - when: - os: windows store: steam - /kuro_survival.app: + "/kuro_survival.app": - when: - os: mac store: steam steam: id: 632200 -Kurokami-sama's Feast: +"Kurokami-sama's Feast": gog: id: 1268238535 installDir: Kurokamisama: {} launch: - /Kurokamisama.exe: + "/Kurokamisama.exe": - when: - store: steam steam: @@ -295502,7 +296376,7 @@ Kuros: installDir: Kuros: {} launch: - /Kuros.exe: + "/Kuros.exe": - when: - store: steam steam: @@ -295511,11 +296385,11 @@ Kurr Snaga: installDir: Kurr Snaga: {} launch: - /Mac/KurrSnaga.app/Contents/MacOS/KurrSnaga: + "/Mac/KurrSnaga.app/Contents/MacOS/KurrSnaga": - when: - os: mac store: steam - /Win/KurrSnaga.exe: + "/Win/KurrSnaga.exe": - when: - os: windows store: steam @@ -295525,15 +296399,15 @@ Kursk: installDir: KURSK: {} launch: - /Kursk-SteamVersion.app/Contents/MacOS/Kursk-SteamVersion: + "/Kursk-SteamVersion.app/Contents/MacOS/Kursk-SteamVersion": - when: - os: mac store: steam - /Kursk-SteamVersion.exe: + "/Kursk-SteamVersion.exe": - when: - os: windows store: steam - /Kursk-SteamVersion.x86_64: + "/Kursk-SteamVersion.x86_64": - when: - os: linux store: steam @@ -295543,11 +296417,11 @@ Kursk - Battle at Prochorovka: installDir: Kursk - Battle at Prochorovka: {} launch: - /Contents/MacOS/Kursk.app: + "/Contents/MacOS/Kursk.app": - when: - os: mac store: steam - /autorun.exe: + "/autorun.exe": - when: - os: windows store: steam @@ -295555,7 +296429,7 @@ Kursk - Battle at Prochorovka: id: 605200 KurtzPel: files: - /TheChase/Saved: + "/TheChase/Saved": tags: - config when: @@ -295566,17 +296440,17 @@ KurtzPel: id: 844870 Kuso: files: - '/keyConfig.cfg, /2pkeyConfig.cfg': + "/keyConfig.cfg, /2pkeyConfig.cfg": tags: - config when: - os: windows - /kuso/config.cfg: + "/kuso/config.cfg": tags: - config when: - os: windows - /kuso/kuso.sav: + "/kuso/kuso.sav": tags: - save when: @@ -295584,25 +296458,25 @@ Kuso: installDir: kuso: {} launch: - /KUSO.exe: + "/KUSO.exe": - when: - os: windows store: steam - /kuso: + "/kuso": - when: - os: linux store: steam - /kuso.app: + "/kuso.app": - when: - os: mac store: steam steam: id: 578930 -'Kuukiyomi: Consider It': +"Kuukiyomi: Consider It": installDir: kuukiyomi: {} launch: - /kuukiyomi.exe: + "/kuukiyomi.exe": - when: - os: windows store: steam @@ -295610,7 +296484,7 @@ Kuso: id: 1221540 Kwaidan ~Azuma manor story~: files: - /AppData/LocalLow/gudouan/Kwaidan_Steam: + "/AppData/LocalLow/gudouan/Kwaidan_Steam": tags: - save when: @@ -295618,7 +296492,7 @@ Kwaidan ~Azuma manor story~: installDir: Kwaidan: {} launch: - /Kwaidan.exe: + "/Kwaidan.exe": - when: - os: windows store: steam @@ -295627,12 +296501,12 @@ Kwaidan ~Azuma manor story~: Kyber Knights: steam: id: 1137390 -Kygo 'Carry Me' VR Experience: +"Kygo 'Carry Me' VR Experience": installDir: - Kygo 'Carry Me' VR Experience: {} + "Kygo 'Carry Me' VR Experience": {} steam: id: 577440 -'Kyiv: From Dusk till Dawn': +"Kyiv: From Dusk till Dawn": installDir: KyivLenovoExplorer: {} steam: @@ -295641,7 +296515,7 @@ Kyklos Code: installDir: Kyklos Code: {} launch: - /kykloscode.exe: + "/kykloscode.exe": - when: - os: windows store: steam @@ -295651,15 +296525,15 @@ Kyle Is Famous: installDir: Kyle is Famous: {} launch: - /Kyle is Famous Linux/Kyle is Famous.x86_64: + "/Kyle is Famous Linux/Kyle is Famous.x86_64": - when: - os: linux store: steam - /Kyle is Famous Mac/Kyle is Famous Mac.app: + "/Kyle is Famous Mac/Kyle is Famous Mac.app": - when: - os: mac store: steam - /Kyle is Famous/Kyle is Famous.exe: + "/Kyle is Famous/Kyle is Famous.exe": - when: - os: windows store: steam @@ -295669,7 +296543,7 @@ Kyle Simulator: installDir: Kyle Simulator: {} launch: - /Kyle Simulator.exe: + "/Kyle Simulator.exe": - when: - bit: 64 os: windows @@ -295678,7 +296552,7 @@ Kyle Simulator: id: 1104220 Kyn: files: - /AppData/LocalLow/Tangrin Entertainment/Kyn/Saves: + "/AppData/LocalLow/Tangrin Entertainment/Kyn/Saves": tags: - save when: @@ -295688,7 +296562,7 @@ Kyn: installDir: Kyn: {} launch: - /Kyn.exe: + "/Kyn.exe": - when: - os: windows store: steam @@ -295696,12 +296570,12 @@ Kyn: id: 314560 Kynseed: files: - /Config.ini: + "/Config.ini": tags: - config when: - os: windows - /Saves: + "/Saves": tags: - save when: @@ -295711,7 +296585,7 @@ Kynseed: installDir: Kynseed: {} launch: - /Kynseed.exe: + "/Kynseed.exe": - when: - os: windows store: steam @@ -295719,7 +296593,7 @@ Kynseed: id: 758870 Kyoto Colorful Days: files: - /SaveData.pac: + "/SaveData.pac": tags: - save when: @@ -295727,7 +296601,7 @@ Kyoto Colorful Days: installDir: Kyoto Colorful Days: {} launch: - /KCD.exe: + "/KCD.exe": - when: - os: windows store: steam @@ -295737,16 +296611,16 @@ Kyoto Tanoji Quest: installDir: KYOTO TANOJI QUEST: {} launch: - /KyotoTanojiQuest.exe: + "/KyotoTanojiQuest.exe": - when: - store: steam steam: id: 558680 -Kyurinaga's Revenge: +"Kyurinaga's Revenge": installDir: KyurinagasRevenge: {} launch: - /KR.exe: + "/KR.exe": - when: - store: steam steam: @@ -295755,7 +296629,7 @@ KóterGame: installDir: KoterGame: {} launch: - /KoterLauncher.exe: + "/KoterLauncher.exe": - when: - store: steam steam: @@ -295764,7 +296638,7 @@ Kōmori Fruit Rush: installDir: Kōmori Fruit Rush: {} launch: - /Komori Fruit Rush.exe: + "/Komori Fruit Rush.exe": - when: - os: windows store: steam @@ -295775,7 +296649,7 @@ L U N E: L U N E: {} steam: id: 485880 -L'Abbaye des Morts: +"L'Abbaye des Morts": files: No configuration files.: tags: @@ -295787,12 +296661,12 @@ L'Abbaye des Morts: - save when: - os: windows -L'Cestrue Seyuntres: +"L'Cestrue Seyuntres": installDir: - L'Cestrue Seyuntres: {} + "L'Cestrue Seyuntres": {} launch: - /Game.exe: - - arguments: '--in-process-gpu' + "/Game.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam @@ -295802,7 +296676,7 @@ L-Way: installDir: L_Way: {} launch: - /L_Way/L-Way.exe: + "/L_Way/L-Way.exe": - when: - os: windows store: steam @@ -295810,12 +296684,12 @@ L-Way: id: 894750 L.A. Noire: files: - /Rockstar Games/L.A. Noire: + "/Rockstar Games/L.A. Noire": tags: - config when: - os: windows - /Rockstar Games/L.A. Noire/Profiles//L.A.Noire: + "/Rockstar Games/L.A. Noire/Profiles//L.A.Noire": tags: - save when: @@ -295823,31 +296697,31 @@ L.A. Noire: installDir: L.A.Noire: {} launch: - /PlayLAN.exe: + "/PlayLAN.exe": - when: - store: steam steam: id: 110800 -'L.A. Noire: The VR Case Files': +"L.A. Noire: The VR Case Files": installDir: L.A. Noire VR: {} steam: id: 722230 L.A. Rush: files: - /global.dat: + "/global.dat": tags: - config when: - os: windows - /save.dat: + "/save.dat": tags: - save when: - os: windows L.A. Street Racing: files: - /Save: + "/Save": tags: - save when: @@ -295856,11 +296730,11 @@ L.S.S: installDir: L.S.S: {} launch: - /L.S.S.dmg: + "/L.S.S.dmg": - when: - os: mac store: steam - /L.S.S_windows_1.7b.exe: + "/L.S.S_windows_1.7b.exe": - when: - os: windows store: steam @@ -295870,7 +296744,7 @@ L.S.S II: installDir: L.S.S II: {} launch: - /L.S.S II.exe: + "/L.S.S II.exe": - when: - os: windows store: steam @@ -295880,15 +296754,15 @@ LA Cops: installDir: LA Cops: {} launch: - /lacops.app: + "/lacops.app": - when: - os: mac store: steam - /lacops.exe: + "/lacops.exe": - when: - os: windows store: steam - /lacops.x86: + "/lacops.x86": - when: - os: linux store: steam @@ -295906,15 +296780,15 @@ LAB Defence: installDir: LAB Defence: {} launch: - /LAB Defence.app/Contents/MacOS/LAB Defence: + "/LAB Defence.app/Contents/MacOS/LAB Defence": - when: - os: mac store: steam - /LAB Defence.exe: + "/LAB Defence.exe": - when: - os: windows store: steam - /LAB Defence.x86_64: + "/LAB Defence.x86_64": - when: - os: linux store: steam @@ -295924,7 +296798,7 @@ LAB2-UndeR GrounD-: installDir: LAB2-UndeR GrounD-: {} launch: - /LAB2UG.exe: + "/LAB2UG.exe": - when: - os: windows store: steam @@ -295934,7 +296808,7 @@ LAMO: installDir: LAMO: {} launch: - /LAMO Game.exe: + "/LAMO Game.exe": - when: - bit: 64 os: windows @@ -295945,7 +296819,7 @@ LAMUNATION! -international-: installDir: LAMUNATION! -international-: {} launch: - /LAMUNATION.exe: + "/LAMUNATION.exe": - when: - os: windows store: steam @@ -295955,15 +296829,15 @@ LASTFIGHT: installDir: LASTFIGHT: {} launch: - /LASTFIGHT.app: + "/LASTFIGHT.app": - when: - os: mac store: steam - /LASTFIGHT.exe: + "/LASTFIGHT.exe": - when: - os: windows store: steam - /LASTFIGHT.x86_64: + "/LASTFIGHT.x86_64": - when: - os: linux store: steam @@ -295972,11 +296846,11 @@ LASTFIGHT: LAZR - A Clothformer: steam: id: 1181040 -'LCD Sports: American Football': +"LCD Sports: American Football": installDir: LCD Sports American Football: {} launch: - /setup.exe: + "/setup.exe": - when: - os: windows store: steam @@ -295986,22 +296860,22 @@ LEAP: installDir: ProjectY: {} launch: - /EasyAntiCheat/Install.bat: + "/EasyAntiCheat/Install.bat": - when: - store: steam - workingDir: /EasyAntiCheat - /EasyAntiCheat/Uninstall.bat: + workingDir: "/EasyAntiCheat" + "/EasyAntiCheat/Uninstall.bat": - when: - store: steam - workingDir: /EasyAntiCheat + workingDir: "/EasyAntiCheat" steam: id: 906930 -'LETHE: Broken memories': +"LETHE: Broken memories": steam: id: 1139190 LEWDAPOCALYPSE: files: - /userdata//1271710/remote/saveFile: + "/userdata//1271710/remote/saveFile": tags: - save when: @@ -296009,7 +296883,7 @@ LEWDAPOCALYPSE: store: steam - os: linux store: steam - /unity3d/KG_AM/Lewdapocalypse/prefs: + "/unity3d/KG_AM/Lewdapocalypse/prefs": tags: - config - save @@ -296018,20 +296892,20 @@ LEWDAPOCALYPSE: installDir: LEWDAPOCALYPSE: {} launch: - /LEWDAPOCALIPSE Linux/Lewdapocalypse.x86_64: + "/LEWDAPOCALIPSE Linux/Lewdapocalypse.x86_64": - when: - os: linux store: steam - /LEWDAPOCALYPSE Mac.app: + "/LEWDAPOCALYPSE Mac.app": - when: - os: mac store: steam - /Lewdapocalypse/Lewdapocalypse.exe: + "/Lewdapocalypse/Lewdapocalypse.exe": - when: - bit: 64 os: windows store: steam - /Lewdapocalypse_x86/Lewdapocalypse.exe: + "/Lewdapocalypse_x86/Lewdapocalypse.exe": - when: - bit: 32 os: windows @@ -296049,25 +296923,25 @@ LGBT Battlegrounds: LGBTQ+ TEST: steam: id: 1121110 -'LIT: Lux in Tenebris': +"LIT: Lux in Tenebris": installDir: LIT Bend the Light: {} launch: - /LIT Build Linux.x86_64: + "/LIT Build Linux.x86_64": - when: - os: linux store: steam - /LIT Build.app: + "/LIT Build.app": - when: - os: mac store: steam - /LIT.exe: + "/LIT.exe": - when: - os: windows store: steam steam: id: 1190160 -'LIZ: Before the Plague': +"LIZ: Before the Plague": installDir: Liz Before the Plague: {} steam: @@ -296079,21 +296953,21 @@ LO-OP: installDir: LO-OP: {} launch: - /loop.exe: + "/loop.exe": - when: - os: windows store: steam - /loop.x86: + "/loop.x86": - when: - os: linux store: steam steam: id: 878640 -'LOA: Me and Angel': +"LOA: Me and Angel": installDir: LOA Me And Angel: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -296103,22 +296977,22 @@ LOCO Railroad: installDir: LOCO: {} launch: - /LOCO.app/Contents/MacOS/LOCO: + "/LOCO.app/Contents/MacOS/LOCO": - when: - os: mac store: steam - /LOCO.exe: + "/LOCO.exe": - when: - bit: 64 os: windows store: steam steam: id: 1091240 -'LOGA: Unexpected Adventure': +"LOGA: Unexpected Adventure": installDir: LOGA Unexpected Adventure: {} launch: - /VARIABLES_TEST.exe: + "/VARIABLES_TEST.exe": - when: - bit: 64 os: windows @@ -296129,7 +297003,7 @@ LOGistICAL: installDir: LOGistICAL: {} launch: - /LogisticalApp.exe: + "/LogisticalApp.exe": - when: - os: windows store: steam @@ -296139,202 +297013,202 @@ LOGistICAL 2: installDir: LOGistICAL2: {} launch: - /LogisticalApp.exe: + "/LogisticalApp.exe": - when: - os: windows store: steam steam: id: 954270 -'LOGistICAL 2: Belgium': +"LOGistICAL 2: Belgium": installDir: LOGistICAL2Belgium: {} launch: - /LogisticalApp.exe: + "/LogisticalApp.exe": - when: - os: windows store: steam steam: id: 938070 -'LOGistICAL 2: France': +"LOGistICAL 2: France": installDir: LOGistICAL2France: {} launch: - /LogisticalApp.exe: + "/LogisticalApp.exe": - when: - os: windows store: steam steam: id: 1065890 -'LOGistICAL 2: Indonesia': +"LOGistICAL 2: Indonesia": steam: id: 1101380 -'LOGistICAL 2: USA - Nevada': +"LOGistICAL 2: USA - Nevada": installDir: LOGistICAL2Nevada: {} launch: - /LogisticalApp.exe: + "/LogisticalApp.exe": - when: - os: windows store: steam steam: id: 1026560 -'LOGistICAL 2: Vampires': +"LOGistICAL 2: Vampires": steam: id: 1057190 -'LOGistICAL: ABC Islands': +"LOGistICAL: ABC Islands": installDir: LOGistICAL ABC Islands: {} launch: - /LogisticalApp.exe: + "/LogisticalApp.exe": - when: - os: windows store: steam steam: id: 851650 -'LOGistICAL: Brazil': +"LOGistICAL: Brazil": installDir: LOGistICAL Brazil: {} launch: - /LogisticalApp.exe: + "/LogisticalApp.exe": - when: - os: windows store: steam steam: id: 733540 -'LOGistICAL: British Isles': +"LOGistICAL: British Isles": installDir: LOGistICAL - United Kingdom: {} launch: - /LogisticalApp.exe: + "/LogisticalApp.exe": - when: - store: steam steam: id: 684940 -'LOGistICAL: Caribbean': +"LOGistICAL: Caribbean": installDir: LOGistICAL Caribbean Islands: {} launch: - /LogisticalApp.exe: + "/LogisticalApp.exe": - when: - os: windows store: steam steam: id: 853850 -'LOGistICAL: Chile': +"LOGistICAL: Chile": installDir: LOGistICAL Chile: {} launch: - /LogisticalApp.exe: + "/LogisticalApp.exe": - when: - os: windows store: steam steam: id: 706390 -'LOGistICAL: Earth': +"LOGistICAL: Earth": installDir: LOGistICAL-Earth: {} launch: - /LogisticalApp.exe: + "/LogisticalApp.exe": - when: - bit: 64 os: windows store: steam steam: id: 672150 -'LOGistICAL: Italy': +"LOGistICAL: Italy": installDir: LOGistICAL Italy: {} launch: - /LogisticalApp.exe: + "/LogisticalApp.exe": - when: - os: windows store: steam steam: id: 693650 -'LOGistICAL: Japan': +"LOGistICAL: Japan": installDir: LOGistICAL Japan: {} launch: - /LogisticalApp.exe: + "/LogisticalApp.exe": - when: - os: windows store: steam steam: id: 718490 -'LOGistICAL: Norway': +"LOGistICAL: Norway": installDir: LOGistICAL Norway: {} launch: - /LogisticalApp.exe: + "/LogisticalApp.exe": - when: - os: windows store: steam steam: id: 706380 -'LOGistICAL: Russia': +"LOGistICAL: Russia": installDir: LOGistICAL Russia: {} launch: - /LogisticalApp.exe: + "/LogisticalApp.exe": - when: - os: windows store: steam steam: id: 733500 -'LOGistICAL: South Africa': +"LOGistICAL: South Africa": installDir: LOGistICAL South Africa: {} launch: - /LogisticalApp.exe: + "/LogisticalApp.exe": - when: - os: windows store: steam steam: id: 733530 -'LOGistICAL: Switzerland': +"LOGistICAL: Switzerland": installDir: LOGistICAL Switzerland: {} launch: - /LogisticalApp.exe: + "/LogisticalApp.exe": - when: - os: windows store: steam steam: id: 733520 -'LOGistICAL: USA - Florida': +"LOGistICAL: USA - Florida": installDir: LOGistICAL USA - Florida: {} launch: - /LogisticalApp.exe: + "/LogisticalApp.exe": - when: - store: steam steam: id: 689340 -'LOGistICAL: USA - New York': +"LOGistICAL: USA - New York": installDir: LOGistICAL USA - New York: {} launch: - /LogisticalApp.exe: + "/LogisticalApp.exe": - when: - os: windows store: steam steam: id: 721380 -'LOGistICAL: USA - Oregon': +"LOGistICAL: USA - Oregon": installDir: LOGistICAL USA - Oregon: {} launch: - /LogisticalApp.exe: + "/LogisticalApp.exe": - when: - os: windows store: steam steam: id: 706370 -'LOGistICAL: USA - Wisconsin': +"LOGistICAL: USA - Wisconsin": installDir: LOGistICAL USA - Wisconsin: {} launch: - /LogisticalApp.exe: + "/LogisticalApp.exe": - when: - os: windows store: steam @@ -296347,7 +297221,7 @@ LOLLIPOP!: installDir: LOLLIPOP!: {} launch: - /LOLLIPOP!/LOLLIPOP!.exe: + "/LOLLIPOP!/LOLLIPOP!.exe": - when: - store: steam registry: @@ -296356,19 +297230,19 @@ LOLLIPOP!: - save steam: id: 1515230 -'LOOP: A Tranquil Puzzle Game': +"LOOP: A Tranquil Puzzle Game": installDir: LOOP: {} launch: - /LOOP.app: + "/LOOP.app": - when: - os: mac store: steam - /LOOP.exe: + "/LOOP.exe": - when: - os: windows store: steam - /LOOP.x86: + "/LOOP.x86": - when: - os: linux store: steam @@ -296382,7 +297256,7 @@ LOR - League of Runners: installDir: LOR - League of Runners: {} launch: - /LOR.exe: + "/LOR.exe": - when: - os: windows store: steam @@ -296393,30 +297267,30 @@ LOST CAVE: LOSTCAVE: {} steam: id: 946340 -'LOST:SMILE memories + promises': +"LOST:SMILE memories + promises": installDir: lostsmile: {} launch: - /LOSTSMILE.exe: + "/LOSTSMILE.exe": - when: - os: windows store: steam steam: id: 1102410 -'LOTUS Minigames: Berlin Traffic': +"LOTUS Minigames: Berlin Traffic": installDir: Berlin Traffic: {} launch: - /BerlinTraffic.exe: + "/BerlinTraffic.exe": - when: - store: steam steam: id: 1056140 -'LOTUS Minigames: United Nations': +"LOTUS Minigames: United Nations": installDir: United Nations: {} launch: - /UnitedNations.exe: + "/UnitedNations.exe": - when: - store: steam steam: @@ -296425,7 +297299,7 @@ LOTUS-Simulator: installDir: LOTUS-Simulator: {} launch: - /LOTUS.exe: + "/LOTUS.exe": - when: - os: windows store: steam @@ -296435,7 +297309,7 @@ LOVE³ -Love Cube-: installDir: LOVE CUBE: {} launch: - /lovecube.exe: + "/lovecube.exe": - when: - os: windows store: steam @@ -296444,24 +297318,24 @@ LOVE³ -Love Cube-: LOW-FI: steam: id: 395830 -'LQVE: Lion Quest Versus Expanded': +"LQVE: Lion Quest Versus Expanded": installDir: Lion Quest Versus Expanded: {} launch: - /LQVE.app: + "/LQVE.app": - when: - os: mac store: steam - /LQVE.exe: + "/LQVE.exe": - when: - os: windows store: steam - /LQVE.x86: + "/LQVE.x86": - when: - bit: 32 os: linux store: steam - /LQVE.x86_64: + "/LQVE.x86_64": - when: - bit: 64 os: linux @@ -296472,7 +297346,7 @@ LSD: installDir: LSD: {} launch: - /LSD.exe: + "/LSD.exe": - when: - store: steam steam: @@ -296483,11 +297357,11 @@ LSDriver: LSDriver 2: steam: id: 655130 -'LURE: FREE': +"LURE: FREE": installDir: LURE FREE: {} launch: - /LureFree.exe: + "/LureFree.exe": - when: - bit: 64 os: windows @@ -296498,7 +297372,7 @@ LUXAR: installDir: Luxar: {} launch: - /LUXAR.exe: + "/LUXAR.exe": - when: - os: windows store: steam @@ -296508,7 +297382,7 @@ LVN Fake News: installDir: LVN Fake News: {} launch: - /nw.exe: + "/nw.exe": - when: - bit: 64 os: windows @@ -296519,7 +297393,7 @@ LYSER: installDir: LYSER: {} launch: - /LYSER/Binaries/Win64/LYSER-Win64-Shipping.exe: + "/LYSER/Binaries/Win64/LYSER-Win64-Shipping.exe": - when: - bit: 64 os: windows @@ -296530,17 +297404,17 @@ La Aventura De Axel: installDir: La Aventura De Axel: {} launch: - /La aventura de axel.exe: + "/La aventura de axel.exe": - when: - os: windows store: steam steam: id: 720640 -'La Forêt de Pago: La Vengeance du Dragon': +"La Forêt de Pago: La Vengeance du Dragon": installDir: LA FORET DE PAGO LA VENGEANCE DU DRAGON: {} launch: - /LAFORETDEPAGO.exe: + "/LAFORETDEPAGO.exe": - when: - os: windows store: steam @@ -296550,7 +297424,7 @@ La Fuga: installDir: La Fuga: {} launch: - /La Fuga.exe: + "/La Fuga.exe": - when: - os: windows store: steam @@ -296560,7 +297434,7 @@ La Historia De: installDir: La Historia De: {} launch: - /LaHistoriaDe.exe: + "/LaHistoriaDe.exe": - when: - bit: 64 os: windows @@ -296575,11 +297449,11 @@ La Introducción: La Memoire: steam: id: 1136760 -'La Pucelle: Ragnarok': +"La Pucelle: Ragnarok": installDir: La Pucelle Ragnarok: {} launch: - /LaPucelle_en.exe: + "/LaPucelle_en.exe": - when: - os: windows store: steam @@ -296589,7 +297463,7 @@ La Rana: installDir: La Rana: {} launch: - /La_Rana.exe: + "/La_Rana.exe": - when: - bit: 64 os: windows @@ -296600,7 +297474,7 @@ La Tale: installDir: La Tale: {} launch: - /ogpsteam.exe: + "/ogpsteam.exe": - when: - os: windows store: steam @@ -296610,7 +297484,7 @@ La Tale - Evolved: installDir: LaTale: {} launch: - /LaTaleLauncher.exe: + "/LaTaleLauncher.exe": - when: - os: windows store: steam @@ -296618,28 +297492,28 @@ La Tale - Evolved: id: 721030 La-Mulana: files: - /Library/Application Support/nigoro/la-mulana: + "/Library/Application Support/nigoro/la-mulana": tags: - config - save when: - os: mac - /NIGORO/La-Mulana: + "/NIGORO/La-Mulana": tags: - config when: - os: windows - /NIGORO/La-Mulana/saves: + "/NIGORO/La-Mulana/saves": tags: - save when: - os: windows - /nigoro/la-mulana/config.ini: + "/nigoro/la-mulana/config.ini": tags: - config when: - os: linux - /nigoro/la-mulana/save: + "/nigoro/la-mulana/save": tags: - save when: @@ -296649,19 +297523,19 @@ La-Mulana: installDir: La-Mulana: {} launch: - /LaMulana.app: + "/LaMulana.app": - when: - os: mac store: steam - /LaMulana.bin.x86: + "/LaMulana.bin.x86": - when: - os: linux store: steam - /LamulanaWin.exe: + "/LamulanaWin.exe": - when: - os: windows store: steam - /RunGameNoSteamRT.sh: + "/RunGameNoSteamRT.sh": - when: - os: linux store: steam @@ -296669,24 +297543,24 @@ La-Mulana: id: 230700 La-Mulana (2006): files: - /lamulana.ini: + "/lamulana.ini": tags: - config when: - os: windows - /lamulana.sa#: + "/lamulana.sa#": tags: - save when: - os: windows La-Mulana 2: files: - /AppData/LocalLow/NIGORO/LaMulana2/Config: + "/AppData/LocalLow/NIGORO/LaMulana2/Config": tags: - config when: - os: windows - /AppData/LocalLow/NIGORO/LaMulana2/Save: + "/AppData/LocalLow/NIGORO/LaMulana2/Save": tags: - save when: @@ -296700,11 +297574,11 @@ La-Mulana 2: installDir: La-Mulana 2: {} launch: - /LaMulana2.app: + "/LaMulana2.app": - when: - os: mac store: steam - /LaMulana2.exe: + "/LaMulana2.exe": - when: - os: windows store: steam @@ -296715,25 +297589,25 @@ Lab 03 Yrinth: Lab 03 Yrinth: {} steam: id: 742010 -'Lab 7: Cold Nights': +"Lab 7: Cold Nights": installDir: Lab 7 Cold Night: {} launch: - /ColdNight.exe: + "/ColdNight.exe": - when: - os: windows store: steam steam: id: 1173310 -'Lab Runner: X': +"Lab Runner: X": installDir: Lab Runner X: {} launch: - /Lab Runner X.exe: + "/Lab Runner X.exe": - when: - os: windows store: steam - /LabRunnerX.app: + "/LabRunnerX.app": - when: - os: mac store: steam @@ -296743,7 +297617,7 @@ Lab.Gen.: installDir: LabGen: {} launch: - /LabGen/Binaries/Win64/LabGen-Win64-Shipping.exe: + "/LabGen/Binaries/Win64/LabGen-Win64-Shipping.exe": - when: - bit: 64 os: windows @@ -296757,7 +297631,7 @@ Labirint: installDir: Labirint: {} launch: - /Labirint.exe: + "/Labirint.exe": - when: - os: windows store: steam @@ -296767,7 +297641,7 @@ Labirinto: installDir: Labirinto: {} launch: - /labirinto.exe: + "/labirinto.exe": - when: - os: windows store: steam @@ -296777,7 +297651,7 @@ Labirinto 2: installDir: Labirinto 2: {} launch: - /labirinto2.exe: + "/labirinto2.exe": - when: - store: steam steam: @@ -296789,21 +297663,21 @@ Labyrinth: installDir: Labyrinth: {} launch: - /labyrinth.app: + "/labyrinth.app": - when: - os: mac store: steam - /labyrinth.exe: + "/labyrinth.exe": - when: - os: windows store: steam steam: id: 412310 -'Labyrinth City: Pierre the Maze Detective': +"Labyrinth City: Pierre the Maze Detective": installDir: Labyrinth City: {} launch: - /labyrinthCity.exe: + "/labyrinthCity.exe": - when: - bit: 64 os: windows @@ -296819,7 +297693,7 @@ Labyrinth Escape: installDir: Labyrinthshooter: {} launch: - /Labyrinthshooter.exe: + "/Labyrinthshooter.exe": - when: - bit: 64 os: windows @@ -296830,7 +297704,7 @@ Labyrinth Simulator: installDir: Labyrinth Simulator: {} launch: - /labyrinth.exe: + "/labyrinth.exe": - when: - os: windows store: steam @@ -296839,19 +297713,19 @@ Labyrinth Simulator: Labyrinth of AO: steam: id: 789270 -'Labyrinth of Galleria: The Moon Society': +"Labyrinth of Galleria: The Moon Society": files: - '/Nippon Ichi Software, Inc/Labyrinth of Galleria//Setting.ini': + "/Nippon Ichi Software, Inc/Labyrinth of Galleria//Setting.ini": tags: - config when: - os: windows - '/Nippon Ichi Software, Inc/Labyrinth of Galleria//config': + "/Nippon Ichi Software, Inc/Labyrinth of Galleria//config": tags: - config when: - os: windows - '/Nippon Ichi Software, Inc/Labyrinth of Galleria//data.*': + "/Nippon Ichi Software, Inc/Labyrinth of Galleria//data.*": tags: - save when: @@ -296859,16 +297733,16 @@ Labyrinth of AO: installDir: Labyrinth of Galleria The Moon Society: {} launch: - /LabyrinthOfGalleria.exe: + "/LabyrinthOfGalleria.exe": - when: - bit: 64 os: windows store: steam steam: id: 1998340 -'Labyrinth of Refrain: Coven of Dusk': +"Labyrinth of Refrain: Coven of Dusk": files: - /savedata: + "/savedata": tags: - config - save @@ -296877,7 +297751,7 @@ Labyrinth of AO: installDir: Labyrinth of Refrain Coven of Dusk: {} launch: - /refrain.exe: + "/refrain.exe": - when: - bit: 32 os: windows @@ -296888,7 +297762,7 @@ Labyrinth of the Witch: installDir: LabyrinthOfTheWitch: {} launch: - /LabyrinthOfTheWitch.exe: + "/LabyrinthOfTheWitch.exe": - when: - bit: 64 os: windows @@ -296899,11 +297773,11 @@ Labyrinthian: installDir: Labyrinthian: {} launch: - /Lab_OG.exe: + "/Lab_OG.exe": - when: - os: windows store: steam - /Labyrinthian_x32.exe: + "/Labyrinthian_x32.exe": - when: - os: windows store: steam @@ -296911,12 +297785,12 @@ Labyrinthian: id: 699410 Labyrinthine Dreams: files: - /AutoSave.rvdata2: + "/AutoSave.rvdata2": tags: - save when: - os: windows - /Game.ini: + "/Game.ini": tags: - config when: @@ -296924,7 +297798,7 @@ Labyrinthine Dreams: installDir: Labyrinthine Dreams: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: @@ -296933,45 +297807,45 @@ Labyrinths of Atlantis: installDir: Labyrinths of Atlantis: {} launch: - /Labyrinths of Atlantis.exe: + "/Labyrinths of Atlantis.exe": - when: - store: steam steam: id: 823770 -'Labyrinths of the World: Fool''s Gold': +"Labyrinths of the World: Fool's Gold": installDir: - Labyrinths of the World Fools Gold Collector's Edition: {} + "Labyrinths of the World Fools Gold Collector's Edition": {} launch: - /LabyrinthsOfTheWorld_Fool'sGold_CE.exe: + "/LabyrinthsOfTheWorld_Fool'sGold_CE.exe": - when: - os: windows store: steam steam: id: 1134040 -'Labyrinths of the World: Forbidden Muse': +"Labyrinths of the World: Forbidden Muse": installDir: - Labyrinths of the World Forbidden Muse Collector's Edition: {} + "Labyrinths of the World Forbidden Muse Collector's Edition": {} launch: - /LabyrinthsOfTheWorld_ForbiddenMuse_CE.exe: + "/LabyrinthsOfTheWorld_ForbiddenMuse_CE.exe": - when: - os: windows store: steam steam: id: 695980 -'Labyrinths of the World: Shattered Soul': +"Labyrinths of the World: Shattered Soul": installDir: - Labyrinths of the World Shattered Soul Collector's Edition: {} + "Labyrinths of the World Shattered Soul Collector's Edition": {} launch: - /LabyrinthsOfTheWorld_ShatteredSoul_CE.exe: + "/LabyrinthsOfTheWorld_ShatteredSoul_CE.exe": - when: - store: steam steam: id: 551150 -'Labyrinths of the World: The Wild Side': +"Labyrinths of the World: The Wild Side": installDir: - Labyrinths of the World The Wild Side Collector's Edition: {} + "Labyrinths of the World The Wild Side Collector's Edition": {} launch: - /LabyrinthsOfTheWorld_TheWildSide_CE.exe: + "/LabyrinthsOfTheWorld_TheWildSide_CE.exe": - when: - os: windows store: steam @@ -296981,7 +297855,7 @@ Labyronia: installDir: Labyronia: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -296991,7 +297865,7 @@ Labyronia 2: installDir: Labyronia RPG 2: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -297001,7 +297875,7 @@ Labyronia Elements: installDir: Labyronia_Elements: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -297009,12 +297883,12 @@ Labyronia Elements: id: 750770 Lacuna: files: - /AppData/LocalLow/DigiTales Interactive/Lacuna/saves: + "/AppData/LocalLow/DigiTales Interactive/Lacuna/saves": tags: - save when: - os: windows - /AppData/LocalLow/DigiTales Interactive/Lacuna/saves/*/settings.xml: + "/AppData/LocalLow/DigiTales Interactive/Lacuna/saves/*/settings.xml": tags: - config when: @@ -297029,7 +297903,7 @@ Lacuna: installDir: Lacuna: {} launch: - /Lacuna.exe: + "/Lacuna.exe": - when: - bit: 64 os: windows @@ -297044,11 +297918,11 @@ Lacuna Passage: installDir: LacunaPassage: {} launch: - /Lacuna Passage.exe: + "/Lacuna Passage.exe": - when: - os: windows store: steam - /LacunaPassage.app/Contents/MacOS/LacunaPassage: + "/LacunaPassage.app/Contents/MacOS/LacunaPassage": - when: - os: mac store: steam @@ -297058,11 +297932,11 @@ Ladderhead: installDir: Ladderhead: {} launch: - /Ladderhead.app/Contents/MacOS/Ladderhead: + "/Ladderhead.app/Contents/MacOS/Ladderhead": - when: - os: mac store: steam - /Ladderhead.exe: + "/Ladderhead.exe": - when: - os: windows store: steam @@ -297072,7 +297946,7 @@ Ladies: installDir: Ladies: {} launch: - /Ladies.exe: + "/Ladies.exe": - when: - store: steam steam: @@ -297081,8 +297955,8 @@ Ladies Orders: installDir: Ladies Orders: {} launch: - /nw.exe: - - arguments: '--in-process-gpu' + "/nw.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam @@ -297092,7 +297966,7 @@ Ladra: installDir: Ladra: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -297102,22 +297976,22 @@ Lady and Blade: installDir: Lady and Blade: {} launch: - /LadynBlade.exe: + "/LadynBlade.exe": - when: - bit: 64 os: windows store: steam steam: id: 1131330 -Lady's Hentai Mosaic: +"Lady's Hentai Mosaic": installDir: - Lady's Hentai Mosaic: {} + "Lady's Hentai Mosaic": {} launch: - /nw: + "/nw": - when: - os: linux store: steam - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -297127,11 +298001,11 @@ Ladybird Reflect: installDir: Ladybird Reflect: {} launch: - /Ladybird_Reflect: + "/Ladybird_Reflect": - when: - os: linux store: steam - /Ladybird_Reflect.exe: + "/Ladybird_Reflect.exe": - when: - os: windows store: steam @@ -297141,15 +298015,15 @@ Ladybug Quest: installDir: Ladybug Quest: {} launch: - /LadybugQuest.app: + "/LadybugQuest.app": - when: - os: mac store: steam - /LadybugQuest.exe: + "/LadybugQuest.exe": - when: - os: windows store: steam - /LadybugQuest.run: + "/LadybugQuest.run": - when: - os: linux store: steam @@ -297159,28 +298033,28 @@ Ladykiller in a Bind: installDir: Ladykiller in a Bind: {} launch: - /Ladykiller in a Bind.app: + "/Ladykiller in a Bind.app": - when: - os: mac store: steam - /Ladykiller in a Bind.exe: + "/Ladykiller in a Bind.exe": - when: - os: windows store: steam - /Ladykiller in a Bind.sh: + "/Ladykiller in a Bind.sh": - when: - os: linux store: steam steam: id: 560000 -'Lagaf'': Les Aventures de Moktar - Vol 1: La Zoubida': +"Lagaf': Les Aventures de Moktar - Vol 1: La Zoubida": gog: id: 1828289583 -'Lagoon Lounge : The Poisonous Fountain': +"Lagoon Lounge : The Poisonous Fountain": installDir: Lagoon Lounge: {} launch: - /LagoonLounge.exe: + "/LagoonLounge.exe": - when: - os: windows store: steam @@ -297200,7 +298074,7 @@ Laika 2.0: installDir: Laika 2.0: {} launch: - /laika.exe: + "/laika.exe": - when: - os: windows store: steam @@ -297211,22 +298085,22 @@ Lair Land Story: id: 1054170 Lair of the Clockwork God: files: - /AppData/LocalLow/Size Five Games/LotCG/OptionsData.txt: + "/AppData/LocalLow/Size Five Games/LotCG/OptionsData.txt": tags: - config when: - os: windows - /AppData/LocalLow/Size Five Games/LotCG/SizeFive_Framework_*.txt: + "/AppData/LocalLow/Size Five Games/LotCG/SizeFive_Framework_*.txt": tags: - save when: - os: windows - /unity3d/Size Five Games/LotCG/OptionsData.txt: + "/unity3d/Size Five Games/LotCG/OptionsData.txt": tags: - config when: - os: linux - /unity3d/Size Five Games/LotCG/SizeFive_Framework_*.txt: + "/unity3d/Size Five Games/LotCG/SizeFive_Framework_*.txt": tags: - save when: @@ -297236,15 +298110,15 @@ Lair of the Clockwork God: installDir: Lair of the Clockwork God: {} launch: - /LotCG.exe: + "/LotCG.exe": - when: - os: windows store: steam - /LotCG.x86: + "/LotCG.x86": - when: - os: linux store: steam - /LotCG_Mac.app: + "/LotCG_Mac.app": - when: - os: mac store: steam @@ -297261,7 +298135,7 @@ Lair of the Titans: id: 796800 Lake: files: - /AppData/LocalLow/Gamious/Lake/lake/saves: + "/AppData/LocalLow/Gamious/Lake/lake/saves": tags: - save when: @@ -297269,14 +298143,14 @@ Lake: installDir: Lake: {} launch: - /Lake.exe: + "/Lake.exe": - when: - store: steam steam: id: 1118240 Lake Ridden: files: - /AppData/LocalLow/Midnight Hub/Lake Ridden: + "/AppData/LocalLow/Midnight Hub/Lake Ridden": tags: - save when: @@ -297286,7 +298160,7 @@ Lake Ridden: installDir: Lake Ridden: {} launch: - /LakeRidden.exe: + "/LakeRidden.exe": - when: - bit: 64 os: windows @@ -297299,22 +298173,22 @@ Lake Ridden: id: 696530 Lake of Voices: files: - /game/saves/*.save: + "/game/saves/*.save": tags: - save when: - os: windows - /game/saves/persistent: + "/game/saves/persistent": tags: - config when: - os: windows - /renpy/LakeOfVoices-1510419112/*.save: + "/renpy/LakeOfVoices-1510419112/*.save": tags: - save when: - os: windows - /renpy/LakeOfVoices-1510419112/persistent: + "/renpy/LakeOfVoices-1510419112/persistent": tags: - config when: @@ -297322,11 +298196,11 @@ Lake of Voices: installDir: Lake of Voices: {} launch: - /Lake-of-Voices.app: + "/Lake-of-Voices.app": - when: - os: mac store: steam - /Lake-of-Voices.exe: + "/Lake-of-Voices.exe": - when: - os: windows store: steam @@ -297336,11 +298210,11 @@ Lakeview Cabin Collection: installDir: Lakeview Cabin Collection: {} launch: - /Lakeview Cabin Collection.exe: + "/Lakeview Cabin Collection.exe": - when: - os: windows store: steam - /LakeviewCabinCollection.app: + "/LakeviewCabinCollection.app": - when: - os: mac store: steam @@ -297355,11 +298229,11 @@ Lakeview Valley: installDir: Lakeview Valley - murder RPG: {} launch: - /Lakeview Valley.app: + "/Lakeview Valley.app": - when: - os: mac store: steam - /Lakeview Valley.exe: + "/Lakeview Valley.exe": - when: - os: windows store: steam @@ -297372,8 +298246,8 @@ Lambda Wars: installDir: Lambda Wars: {} launch: - /lambdawars.exe: - - arguments: '-game lambdawars' + "/lambdawars.exe": + - arguments: "-game lambdawars" when: - os: windows store: steam @@ -297383,7 +298257,7 @@ Lambs on the Road: installDir: Lambs on the Road: {} launch: - /Lambs on the road.exe: + "/Lambs on the road.exe": - when: - os: windows store: steam @@ -297396,7 +298270,7 @@ Lament: installDir: Lament: {} launch: - /Lament.exe: + "/Lament.exe": - when: - os: windows store: steam @@ -297406,12 +298280,12 @@ Lamentum: installDir: Lamentum: {} launch: - /Lamentum.exe: + "/Lamentum.exe": - when: - bit: 64 os: windows store: steam - /Lamentum_Linux.x86_64: + "/Lamentum_Linux.x86_64": - when: - bit: 64 os: linux @@ -297422,21 +298296,21 @@ Lamia Must Die: installDir: Lamia Must Die: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam steam: id: 385260 -Lamia's Game Room: +"Lamia's Game Room": installDir: - Lamia's Game Room: {} + "Lamia's Game Room": {} launch: - /Lamia.app/Contents/MacOS/Lamia: + "/Lamia.app/Contents/MacOS/Lamia": - when: - os: mac store: steam - /Lamia.exe: + "/Lamia.exe": - when: - os: windows store: steam @@ -297446,7 +298320,7 @@ Lamm: installDir: Lamm: {} launch: - /Lamm.exe: + "/Lamm.exe": - when: - os: windows store: steam @@ -297461,7 +298335,7 @@ Lamp Man Down: installDir: Closing Lamp: {} launch: - /MyProject/Binaries/Win64/MyProject-Win64-Shipping.exe: + "/MyProject/Binaries/Win64/MyProject-Win64-Shipping.exe": - when: - bit: 64 os: windows @@ -297470,23 +298344,23 @@ Lamp Man Down: id: 934590 Lamplight City: files: - /acsetup.cfg: + "/acsetup.cfg": tags: - config when: - os: linux - /Saved Games/Lamplight City: + "/Saved Games/Lamplight City": tags: - config - save when: - os: windows - /ags/Lamplight City: + "/ags/Lamplight City": tags: - save when: - os: linux - /ags/Lamplight City/acsetup.cfg: + "/ags/Lamplight City/acsetup.cfg": tags: - config when: @@ -297496,15 +298370,15 @@ Lamplight City: installDir: Lamplight City: {} launch: - /Lamplight City.app: + "/Lamplight City.app": - when: - os: mac store: steam - /Lamplight City.exe: + "/Lamplight City.exe": - when: - os: windows store: steam - /LamplightCity: + "/LamplightCity": - when: - os: linux store: steam @@ -297514,7 +298388,7 @@ Lamplight Station: installDir: Lamplight Station: {} launch: - /Sandbox.exe: + "/Sandbox.exe": - when: - os: windows store: steam @@ -297527,41 +298401,41 @@ Lance A Lot: installDir: Lance A Lot: {} launch: - /lancealot.exe: + "/lancealot.exe": - when: - os: windows store: steam steam: id: 495900 -'Lance A Lot: Enhanced Edition': +"Lance A Lot: Enhanced Edition": installDir: Lance A Lot Enhanced Edition: {} launch: - /LanceALot.app: + "/LanceALot.app": - when: - os: mac store: steam - /lancealot.exe: + "/lancealot.exe": - when: - os: windows store: steam - /lancealot.x86: + "/lancealot.x86": - when: - bit: 32 os: linux store: steam - /lancealot.x86_64: + "/lancealot.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 684530 -'Lancelot''s Hangover : The Quest for the Holy Booze': +"Lancelot's Hangover : The Quest for the Holy Booze": installDir: - Lancelot's Hangover: {} + "Lancelot's Hangover": {} launch: - /Lancelot.exe: + "/Lancelot.exe": - when: - os: windows store: steam @@ -297571,7 +298445,7 @@ Land Doctrine: installDir: Land Doctrine: {} launch: - /autorun.exe: + "/autorun.exe": - when: - os: windows store: steam @@ -297581,11 +298455,11 @@ Land It!: installDir: LandIt: {} launch: - /LandIt.app/Contents/MacOS/LandIt: + "/LandIt.app/Contents/MacOS/LandIt": - when: - os: mac store: steam - /LandIt.exe: + "/LandIt.exe": - when: - os: windows store: steam @@ -297595,7 +298469,7 @@ Land Of The Void: installDir: Land Of The Void: {} launch: - /LOV_LA.exe: + "/LOV_LA.exe": - when: - os: windows store: steam @@ -297605,7 +298479,7 @@ Land War: installDir: Land War: {} launch: - /Land War.exe: + "/Land War.exe": - when: - os: windows store: steam @@ -297615,15 +298489,15 @@ Land it Rocket: installDir: Land it Rocket: {} launch: - /Land_it_Rocket: + "/Land_it_Rocket": - when: - os: linux store: steam - /Land_it_Rocket.app: + "/Land_it_Rocket.app": - when: - os: mac store: steam - /Land_it_Rocket.exe: + "/Land_it_Rocket.exe": - when: - os: windows store: steam @@ -297632,14 +298506,14 @@ Land it Rocket: Land of Arxox: steam: id: 683370 -'Land of Chaos Online II: Revolution': +"Land of Chaos Online II: Revolution": steam: id: 981870 Land of Dread: installDir: Land of Dread: {} launch: - /Land of Dread.exe: + "/Land of Dread.exe": - when: - store: steam steam: @@ -297648,47 +298522,47 @@ Land of Ngoto: installDir: Land of Ngoto: {} launch: - /Land_of_Ngoto.exe: + "/Land_of_Ngoto.exe": - when: - os: windows store: steam steam: id: 1186510 -'Land of Puzzles: Battles': +"Land of Puzzles: Battles": installDir: Land of Puzzles Battles: {} launch: - /Land of Puzzles Battles.exe: + "/Land of Puzzles Battles.exe": - when: - os: windows store: steam steam: id: 931360 -'Land of Puzzles: Castles': +"Land of Puzzles: Castles": installDir: Land of Puzzles Castles: {} launch: - /Land of Puzzles Castles.exe: + "/Land of Puzzles Castles.exe": - when: - os: windows store: steam steam: id: 914220 -'Land of Puzzles: Elven Princess': +"Land of Puzzles: Elven Princess": installDir: Land of Puzzles Elven Princess: {} launch: - /Land of Puzzles Elven Princess.exe: + "/Land of Puzzles Elven Princess.exe": - when: - os: windows store: steam steam: id: 938000 -'Land of Puzzles: Knights': +"Land of Puzzles: Knights": installDir: Land of Puzzles Knights: {} launch: - /Land of Puzzles Knights.exe: + "/Land of Puzzles Knights.exe": - when: - os: windows store: steam @@ -297698,7 +298572,7 @@ Land of War - The Beginning: installDir: Land of War - The Beginning: {} launch: - /Land_of_War.exe: + "/Land_of_War.exe": - when: - store: steam steam: @@ -297707,21 +298581,21 @@ Land of an Endless Journey: installDir: Land of an Endless Journey: {} launch: - /LandJourney.exe: + "/LandJourney.exe": - when: - bit: 64 os: windows store: steam steam: id: 931430 -'Land of the Dead: Road to Fiddler''s Green': +"Land of the Dead: Road to Fiddler's Green": files: - /Saves: + "/Saves": tags: - save when: - os: windows - /System: + "/System": tags: - config when: @@ -297732,19 +298606,19 @@ Land of the Vikings: installDir: Land of the Vikings: {} launch: - /VikingOyunu.exe: + "/VikingOyunu.exe": - when: - store: steam steam: id: 1981570 LandTraveller: files: - /.local/share/landt/linux: + "/.local/share/landt/linux": tags: - save when: - os: linux - /rpg20xx: + "/rpg20xx": tags: - save when: @@ -297752,15 +298626,15 @@ LandTraveller: installDir: LandTraveller: {} launch: - /landt-osx.sh: + "/landt-osx.sh": - when: - os: mac store: steam - /landt.exe: + "/landt.exe": - when: - os: windows store: steam - /landt.sh: + "/landt.sh": - when: - os: linux store: steam @@ -297778,21 +298652,21 @@ Landflix Odyssey: installDir: Landflix Odyssey: {} launch: - /Landflix Odyssey.app: + "/Landflix Odyssey.app": - when: - os: mac store: steam - /Landflix Odyssey.exe: + "/Landflix Odyssey.exe": - when: - os: windows store: steam steam: id: 794850 -'Landinar: Into the Void': +"Landinar: Into the Void": installDir: Landinar Into the Void: {} launch: - /Landinar.exe: + "/Landinar.exe": - when: - bit: 64 os: windows @@ -297803,7 +298677,7 @@ Landless: installDir: Landless_Data: {} launch: - /Landless.exe: + "/Landless.exe": - when: - bit: 64 os: windows @@ -297814,7 +298688,7 @@ Landlord Girls: installDir: Landlord Girls: {} launch: - /Landlord Girls.exe: + "/Landlord Girls.exe": - when: - os: windows store: steam @@ -297824,17 +298698,17 @@ Landlord Simulator: installDir: Landlord Simulator: {} launch: - /Landlord Simulator.exe: + "/Landlord Simulator.exe": - when: - os: windows store: steam steam: id: 803310 -Landlord's Super: +"Landlord's Super": installDir: - Landlord's Super: {} + "Landlord's Super": {} launch: - /LandlordsSuper.exe: + "/LandlordsSuper.exe": - when: - os: windows store: steam @@ -297844,10 +298718,8 @@ Landmark: installDir: Landmark: {} launch: - /LaunchPad.exe: - - arguments: >- - Updates:enable=0 Updates:PatchSelf=1 campaignID=1064454 promoID=151 launchPoint=steam - launchArgs=STEAM_ENABLED=1 + "/LaunchPad.exe": + - arguments: "Updates:enable=0 Updates:PatchSelf=1 campaignID=1064454 promoID=151 launchPoint=steam launchArgs=STEAM_ENABLED=1" when: - bit: 64 os: windows @@ -297858,7 +298730,7 @@ Landmine Larry: installDir: Landmine Larry: {} launch: - /Landmine Larry.exe: + "/Landmine Larry.exe": - when: - os: windows store: steam @@ -297868,16 +298740,16 @@ Landnama: installDir: Landnama: {} launch: - /Landnama.app: + "/Landnama.app": - when: - os: mac store: steam - /Landnama.exe: + "/Landnama.exe": - when: - bit: 64 os: windows store: steam - /Landnama.x86_64: + "/Landnama.x86_64": - when: - bit: 64 os: linux @@ -297888,22 +298760,22 @@ Landon: installDir: Landon: {} launch: - /Landon.app/Contents/MacOS/Mac_Runner: + "/Landon.app/Contents/MacOS/Mac_Runner": - when: - bit: 64 os: mac store: steam - /Landon.exe: + "/Landon.exe": - when: - os: windows store: steam steam: id: 699470 -'Lands Of Peace: Legends - Chapter 1': +"Lands Of Peace: Legends - Chapter 1": installDir: Lands Of Peace: {} launch: - /LandsOfPeaceLegends.exe: + "/LandsOfPeaceLegends.exe": - when: - os: windows store: steam @@ -297916,7 +298788,7 @@ Lands of Hope Redemption: installDir: Lands of Hope Redemption: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -297924,21 +298796,21 @@ Lands of Hope Redemption: id: 403490 Lands of Lore III: files: - /SAVEGAME: + "/SAVEGAME": tags: - save when: - os: windows - /options.ini: + "/options.ini": tags: - config when: - os: windows gog: id: 1207659094 -'Lands of Lore: Guardians of Destiny': +"Lands of Lore: Guardians of Destiny": files: - /SAVEGAME: + "/SAVEGAME": tags: - save when: @@ -297948,9 +298820,9 @@ Lands of Lore III: id: gogExtra: - 1207658980 -'Lands of Lore: The Throne of Chaos': +"Lands of Lore: The Throne of Chaos": files: - /_SAVE***.DAT: + "/_SAVE***.DAT": tags: - save when: @@ -297960,11 +298832,11 @@ Lands of Lore III: id: gogExtra: - 1207658980 -'Lands of Pharaoh: Episode 1': +"Lands of Pharaoh: Episode 1": installDir: Lands of Pharaoh: {} launch: - /LandsofPharaoh.exe: + "/LandsofPharaoh.exe": - when: - os: windows store: steam @@ -297974,29 +298846,29 @@ Lands of the Lost: installDir: Lands Of The Lost: {} launch: - /LandsOfTheLost.exe: + "/LandsOfTheLost.exe": - when: - store: steam steam: id: 868600 -'Landstalker: The Treasures of King Nole': +"Landstalker: The Treasures of King Nole": files: - /SEGA Genesis Classics/0036: + "/SEGA Genesis Classics/0036": tags: - save when: - os: windows - /SEGA Genesis Classics/setup.dat: + "/SEGA Genesis Classics/setup.dat": tags: - config when: - os: windows - /SEGA Mega Drive Classics/0036: + "/SEGA Mega Drive Classics/0036": tags: - save when: - os: windows - /SEGA Mega Drive Classics/setup.dat: + "/SEGA Mega Drive Classics/setup.dat": tags: - config when: @@ -298010,15 +298882,15 @@ Langoth: installDir: Langoth: {} launch: - /Langoth.app: + "/Langoth.app": - when: - os: mac store: steam - /Langoth.exe: + "/Langoth.exe": - when: - os: windows store: steam - /Langoth.sh: + "/Langoth.sh": - when: - os: linux store: steam @@ -298026,7 +298898,7 @@ Langoth: id: 581100 Langrisser I & II: files: - /Saved Games/Langrisser I & II: + "/Saved Games/Langrisser I & II": tags: - save when: @@ -298034,7 +298906,7 @@ Langrisser I & II: installDir: Langrisser I & II: {} launch: - /Langrisser I & II.exe: + "/Langrisser I & II.exe": - when: - os: windows store: steam @@ -298044,16 +298916,16 @@ Language Worm: installDir: Language Worm: {} launch: - /language-worm: + "/language-worm": - when: - bit: 64 os: linux store: steam - /language-worm.app/Contents/MacOS/language-worm: + "/language-worm.app/Contents/MacOS/language-worm": - when: - os: mac store: steam - /language-worm.exe: + "/language-worm.exe": - when: - bit: 64 os: windows @@ -298064,7 +298936,7 @@ Lannath: installDir: Lannath: {} launch: - /Lannath.exe: + "/Lannath.exe": - when: - os: windows store: steam @@ -298074,7 +298946,7 @@ Lantern: installDir: Lantern: {} launch: - /Lantern.exe: + "/Lantern.exe": - when: - os: windows store: steam @@ -298084,7 +298956,7 @@ Lantern Forge: installDir: Lantern Forge: {} launch: - /LanternForge.exe: + "/LanternForge.exe": - when: - os: windows store: steam @@ -298094,11 +298966,11 @@ Lantern of Worlds: installDir: Lantern of Worlds: {} launch: - /Game.app: + "/Game.app": - when: - os: mac store: steam - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -298108,25 +298980,25 @@ Lantern of Worlds - The First Quest: installDir: Lantern of Worlds - The First Quest: {} launch: - /Game.app: + "/Game.app": - when: - os: mac store: steam - /Game.exe: + "/Game.exe": - when: - os: windows store: steam steam: id: 952910 -'Lantern of Worlds: The Story of Layla': +"Lantern of Worlds: The Story of Layla": installDir: Lantern of Worlds - The Story of Layla: {} launch: - /Game.app: + "/Game.app": - when: - os: mac store: steam - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -298136,15 +299008,15 @@ Lanternium: installDir: Lanternium: {} launch: - /Lanternium.app: + "/Lanternium.app": - when: - os: mac store: steam - /Lanternium.exe: + "/Lanternium.exe": - when: - os: windows store: steam - /Lanternium.x86_64: + "/Lanternium.x86_64": - when: - os: linux store: steam @@ -298154,7 +299026,7 @@ Lanterns: installDir: Lanterns: {} launch: - /Lanterns.exe: + "/Lanterns.exe": - when: - os: windows store: steam @@ -298164,7 +299036,7 @@ Lapin: installDir: Lapin: {} launch: - /LAPIN.exe: + "/LAPIN.exe": - when: - bit: 64 os: windows @@ -298175,8 +299047,8 @@ Laplace:拉普拉斯的神子: installDir: Laplace:拉普拉斯的神子: {} launch: - /Launcher.exe: - - arguments: '-steam' + "/Launcher.exe": + - arguments: "-steam" when: - os: windows store: steam @@ -298186,11 +299058,11 @@ Lapland Solitaire: installDir: Lapland Solitaire: {} launch: - /LaplandSolitaire.app: + "/LaplandSolitaire.app": - when: - os: mac store: steam - /LaplandSolitaire.exe: + "/LaplandSolitaire.exe": - when: - os: windows store: steam @@ -298206,7 +299078,7 @@ Lapya: installDir: Lapya: {} launch: - /Lapya.exe: + "/Lapya.exe": - when: - bit: 64 os: windows @@ -298215,23 +299087,23 @@ Lapya: id: 1071080 Lara Croft GO: files: - /.config/unity3d/Square Enix Ltd_/Lara Croft GO: + "/.config/unity3d/Square Enix Ltd_/Lara Croft GO": tags: - config - save when: - os: linux - /AppData/LocalLow/Square Enix Ltd_/Lara Croft GO: + "/AppData/LocalLow/Square Enix Ltd_/Lara Croft GO": tags: - save when: - os: windows - /userdata//540840: + "/userdata//540840": tags: - save when: - store: steam - /Packages/39C668CD.LaraCroftGO_r7bfsmp40f67j/LocalState: + "/Packages/39C668CD.LaraCroftGO_r7bfsmp40f67j/LocalState": tags: - config - save @@ -298241,21 +299113,24 @@ Lara Croft GO: installDir: Lara Croft GO: {} launch: - /Lara Croft GO.app: + "/Lara Croft GO.app": - when: - os: mac store: steam - /Lara Croft GO.exe: + "/Lara Croft GO.exe": - when: - bit: 32 os: windows store: steam - /Lara Croft GO.x86: + - bit: 64 + os: windows + store: steam + "/Lara Croft GO.x86": - when: - bit: 32 os: linux store: steam - /Lara Croft GO.x86_64: + "/Lara Croft GO.x86_64": - when: - bit: 64 os: linux @@ -298268,7 +299143,7 @@ Lara Croft GO: id: 540840 Lara Croft and the Guardian of Light: files: - /userdata//35150: + "/userdata//35150": tags: - save when: @@ -298277,21 +299152,21 @@ Lara Croft and the Guardian of Light: installDir: Lara Croft and the Guardian of Light: {} launch: - /lcgol.exe: + "/lcgol.exe": - when: - store: steam - - arguments: '-setup' + - arguments: "-setup" when: - store: steam registry: - 'HKEY_CURRENT_USER/Software/Crystal Dynamics/Lara Croft: GoL': + "HKEY_CURRENT_USER/Software/Crystal Dynamics/Lara Croft: GoL": tags: - config steam: id: 35130 Lara Croft and the Temple of Osiris: files: - /userdata//289690/remote/*.dat: + "/userdata//289690/remote/*.dat": tags: - save when: @@ -298306,11 +299181,11 @@ Lara Croft and the Temple of Osiris: installDir: Lara Croft and the Temple of Osiris: {} launch: - /LC2.exe: + "/LC2.exe": - when: - os: windows store: steam - /Lara Croft and the Temple of Osiris.app: + "/Lara Croft and the Temple of Osiris.app": - when: - os: mac store: steam @@ -298324,20 +299199,20 @@ Laraan: installDir: Laraan: {} launch: - /Laraan.app: + "/Laraan.app": - when: - os: mac store: steam - /Laraan.exe: + "/Laraan.exe": - when: - os: windows store: steam - /Laraan.x86: + "/Laraan.x86": - when: - bit: 32 os: linux store: steam - /Laraan.x86_64: + "/Laraan.x86_64": - when: - bit: 64 os: linux @@ -298348,7 +299223,7 @@ Laranga: installDir: Laranga: {} launch: - /Laranga.exe: + "/Laranga.exe": - when: - bit: 64 os: windows @@ -298359,7 +299234,7 @@ Larkin Building by Frank Lloyd Wright: installDir: Larkin building by Frank Lloyd Wright: {} launch: - /larkinbuilding.exe: + "/larkinbuilding.exe": - when: - bit: 64 os: windows @@ -298370,7 +299245,7 @@ Laruaville 7: installDir: Laruaville 7: {} launch: - /Laruaville7.exe: + "/Laruaville7.exe": - when: - os: windows store: steam @@ -298382,7 +299257,7 @@ Larva Mortus: installDir: Larva Mortus: {} launch: - /larvamortus.exe: + "/larvamortus.exe": - when: - store: steam steam: @@ -298394,7 +299269,7 @@ Laser Ball: installDir: Laser Ball: {} launch: - /Laser Ball.exe: + "/Laser Ball.exe": - when: - os: windows store: steam @@ -298404,11 +299279,11 @@ Laser Disco Defenders: installDir: Laser Disco Defenders: {} launch: - /Laser Disco Defenders.app: + "/Laser Disco Defenders.app": - when: - os: mac store: steam - /Laser Disco Defenders.exe: + "/Laser Disco Defenders.exe": - when: - os: windows store: steam @@ -298421,7 +299296,7 @@ Laser Lasso BALL: installDir: Laser Lasso BALL: {} launch: - /LaserLassoBALL.exe: + "/LaserLassoBALL.exe": - when: - os: windows store: steam @@ -298431,7 +299306,7 @@ Laser League: installDir: Laser League: {} launch: - /LaserLeague.exe: + "/LaserLeague.exe": - when: - bit: 64 os: windows @@ -298442,11 +299317,11 @@ Laser Maze: installDir: LaserMaze: {} launch: - '/${lasermaze}.exe': + "/${lasermaze}.exe": - when: - os: windows store: steam - /LaserMaze.app: + "/LaserMaze.app": - when: - os: mac store: steam @@ -298456,7 +299331,7 @@ Laser Paddles: installDir: LaserPaddles: {} launch: - /LaserPaddles.exe: + "/LaserPaddles.exe": - when: - os: windows store: steam @@ -298466,11 +299341,11 @@ Laser Party: installDir: Laser Party: {} launch: - /LaserParty.app/Contents/MacOS/LaserParty: + "/LaserParty.app/Contents/MacOS/LaserParty": - when: - os: mac store: steam - /LaserParty.exe: + "/LaserParty.exe": - when: - os: windows store: steam @@ -298479,21 +299354,21 @@ Laser Party: Laser Puzzle in VR: steam: id: 813680 -'Laser Squad: Nemesis': +"Laser Squad: Nemesis": files: - /Configs: + "/Configs": tags: - config when: - os: windows -'Laser Stallion Disco Junkie: One Hit': +"Laser Stallion Disco Junkie: One Hit": steam: id: 1002550 Laser Strikers: installDir: LASER STRIKERS: {} launch: - /strikers.exe: + "/strikers.exe": - when: - os: windows store: steam @@ -298506,7 +299381,7 @@ Laser Z: id: 1179430 LaserCat: files: - /SavedGames/LaserCat/LaserCatSave/AllPlayers/LaserCatSave.txt: + "/SavedGames/LaserCat/LaserCatSave/AllPlayers/LaserCatSave.txt": tags: - save when: @@ -298514,7 +299389,7 @@ LaserCat: installDir: LaserCat: {} launch: - /LaserCat.exe: + "/LaserCat.exe": - when: - os: windows store: steam @@ -298527,7 +299402,7 @@ Laserium: installDir: Laserium: {} launch: - /Laserium.exe: + "/Laserium.exe": - when: - os: windows store: steam @@ -298537,11 +299412,11 @@ Laserlife: installDir: Laserlife: {} launch: - /Laserlife.app/Contents/MacOS/Laserlife: + "/Laserlife.app/Contents/MacOS/Laserlife": - when: - os: mac store: steam - /laserlife.exe: + "/laserlife.exe": - when: - os: windows store: steam @@ -298553,37 +299428,37 @@ Laseronium: Laseronium 2: steam: id: 697200 -'Laseronium: Over The Line': +"Laseronium: Over The Line": steam: id: 670520 -'Laseronium: The Beam Focus': +"Laseronium: The Beam Focus": steam: id: 697230 -'Laseronium: The Line': +"Laseronium: The Line": steam: id: 670380 -'Laseronium: The Reflexion': +"Laseronium: The Reflexion": steam: id: 697220 Laservasion: installDir: Laservasion: {} launch: - /Laservasion.app/Contents/MacOS/Laservasion: + "/Laservasion.app/Contents/MacOS/Laservasion": - when: - os: mac store: steam - /Laservasion.exe: + "/Laservasion.exe": - when: - bit: 64 os: windows store: steam - /Laservasion/Laservasion.exe: + "/Laservasion/Laservasion.exe": - when: - bit: 64 os: windows store: steam - /Laservasion/Laservasion.x86_64: + "/Laservasion/Laservasion.x86_64": - when: - bit: 64 os: linux @@ -298594,44 +299469,44 @@ Last Alive: installDir: Last Alive: {} launch: - /Last Alive.app/Contents/MacOS/Last Alive: + "/Last Alive.app/Contents/MacOS/Last Alive": - when: - os: mac store: steam - /Last Alive.exe: + "/Last Alive.exe": - when: - os: windows store: steam steam: id: 875360 -'Last Anime Boy 2: Hentai Zombie Hell': +"Last Anime Boy 2: Hentai Zombie Hell": installDir: Last Anime Boy 2 Hentai Zombie Hell: {} launch: - /lab2.exe: + "/lab2.exe": - when: - os: windows store: steam steam: id: 821780 -'Last Anime Boy: Saving Loli': +"Last Anime Boy: Saving Loli": installDir: Last Anime boy Saving loli: {} launch: - /LAB.exe: + "/LAB.exe": - when: - store: steam steam: id: 750210 -'Last Berserker: Endless War': +"Last Berserker: Endless War": installDir: Last Berserker™ Endless War: {} launch: - /Last_mac/berserker.app: + "/Last_mac/berserker.app": - when: - os: mac store: steam - /Lastberserker_windows/BerserkerWindows.exe: + "/Lastberserker_windows/BerserkerWindows.exe": - when: - os: windows store: steam @@ -298644,38 +299519,38 @@ Last Byte Standing: id: 880330 Last Call BBS: files: - /.local/share/Last Call BBS/: + "/.local/share/Last Call BBS/": tags: - save when: - os: linux - /.local/share/Last Call BBS//config.cfg: + "/.local/share/Last Call BBS//config.cfg": tags: - config when: - os: linux - /Library/Application Support/Last Call BBS/: + "/Library/Application Support/Last Call BBS/": tags: - save when: - os: mac - /My Games/Last Call BBS/: + "/My Games/Last Call BBS/": tags: - save when: - os: windows - /My Games/Last Call BBS//config.cfg: + "/My Games/Last Call BBS//config.cfg": tags: - config when: - os: windows - /My Games/Last Call BBS/XboxLiveUser/config.cfg: + "/My Games/Last Call BBS/XboxLiveUser/config.cfg": tags: - config when: - os: windows store: microsoft - /Packages/58020AllianceMetaversalSt.LastCallBBS_j78hpz8e66gfw/SystemAppData/xgs//all/save.dat: + "/Packages/58020AllianceMetaversalSt.LastCallBBS_j78hpz8e66gfw/SystemAppData/xgs//all/save.dat": tags: - save when: @@ -298686,15 +299561,15 @@ Last Call BBS: installDir: Last Call BBS: {} launch: - /Last Call BBS.app/Contents/MacOS/LastCallBBS: + "/Last Call BBS.app/Contents/MacOS/LastCallBBS": - when: - os: mac store: steam - /Last Call BBS.exe: + "/Last Call BBS.exe": - when: - os: windows store: steam - /LastCallBBS: + "/LastCallBBS": - when: - os: linux store: steam @@ -298712,7 +299587,7 @@ Last Day of Fear: id: 767050 Last Day of June: files: - /AppData/LocalLow/Ovosonico/Last Day of June: + "/AppData/LocalLow/Ovosonico/Last Day of June": tags: - save when: @@ -298722,7 +299597,7 @@ Last Day of June: installDir: june: {} launch: - /LastDayOfJune.exe: + "/LastDayOfJune.exe": - when: - os: windows store: steam @@ -298736,11 +299611,11 @@ Last Day of Rome: installDir: Last Day of Rome: {} launch: - /LastDayOfRome.app: + "/LastDayOfRome.app": - when: - os: mac store: steam - /LastDayOfRome.exe: + "/LastDayOfRome.exe": - when: - os: windows store: steam @@ -298750,11 +299625,11 @@ Last Days: installDir: LastDaysSteam: {} launch: - /LastDays.app: + "/LastDays.app": - when: - os: mac store: steam - /LastDays.exe: + "/LastDays.exe": - when: - os: windows store: steam @@ -298764,7 +299639,7 @@ Last Days Motel: installDir: Last Days Motel: {} launch: - /Last Days Motel.exe: + "/Last Days Motel.exe": - when: - bit: 64 os: windows @@ -298773,12 +299648,12 @@ Last Days Motel: id: 1009040 Last Days of Lazarus: files: - /SingurInCeasulMortii/Saved/Config/WindowsNoEditor: + "/SingurInCeasulMortii/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /SingurInCeasulMortii/Saved/SaveGames: + "/SingurInCeasulMortii/Saved/SaveGames": tags: - save when: @@ -298786,7 +299661,7 @@ Last Days of Lazarus: installDir: Last Days of Lazarus: {} launch: - /SingurInCeasulMortii.exe: + "/SingurInCeasulMortii.exe": - when: - bit: 64 os: windows @@ -298797,7 +299672,7 @@ Last Days of Old Earth: installDir: Last Days of Old Earth: {} launch: - /autorun.exe: + "/autorun.exe": - when: - os: windows store: steam @@ -298805,7 +299680,7 @@ Last Days of Old Earth: id: 376450 Last Days of Spring: files: - /data/system/Config.tjs: + "/data/system/Config.tjs": tags: - config when: @@ -298813,11 +299688,11 @@ Last Days of Spring: installDir: Last Days of Spring Visual Novel: {} launch: - /Last Days of Spring.app: + "/Last Days of Spring.app": - when: - os: mac store: steam - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -298825,12 +299700,12 @@ Last Days of Spring: id: 407680 Last Days of Spring 2: files: - /LastDaysofSpring2_tyrano_data.sav: + "/LastDaysofSpring2_tyrano_data.sav": tags: - save when: - os: windows - /data/system/Config.tjs: + "/data/system/Config.tjs": tags: - config when: @@ -298838,12 +299713,12 @@ Last Days of Spring 2: installDir: Last Days of Spring 2: {} launch: - /nw.exe: - - arguments: '--in-process-gpu' + "/nw.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam - /nwjs.app: + "/nwjs.app": - when: - os: mac store: steam @@ -298853,7 +299728,7 @@ Last Days of Tascaria: installDir: Last Days Of Tascaria: {} launch: - /LastDaysOfTascaria.exe: + "/LastDaysOfTascaria.exe": - when: - os: windows store: steam @@ -298864,12 +299739,12 @@ Last Defense: id: 740100 Last Dream: files: - /Game.ini: + "/Game.ini": tags: - config when: - os: windows - /Save*.rvdata: + "/Save*.rvdata": tags: - save when: @@ -298877,56 +299752,56 @@ Last Dream: installDir: Last Dream: {} launch: - /LastDream.app: + "/LastDream.app": - when: - os: mac store: steam - /LastDream.bin.i686: + "/LastDream.bin.i686": - when: - bit: 32 os: linux store: steam - /LastDream.bin.x86_64: + "/LastDream.bin.x86_64": - when: - bit: 64 os: linux store: steam - /LastDream_32.exe: + "/LastDream_32.exe": - when: - bit: 32 os: windows store: steam - /LastDream_64.exe: + "/LastDream_64.exe": - when: - bit: 64 os: windows store: steam steam: id: 266230 -'Last Dream: World Unknown': +"Last Dream: World Unknown": installDir: Last Dream - World Unknown: {} launch: - /LastDreamWorldUnknown.app: + "/LastDreamWorldUnknown.app": - when: - os: mac store: steam - /LastDream_WorldUnknown.bin.i686: + "/LastDream_WorldUnknown.bin.i686": - when: - bit: 32 os: linux store: steam - /LastDream_WorldUnknown.bin.x86_64: + "/LastDream_WorldUnknown.bin.x86_64": - when: - bit: 64 os: linux store: steam - /LastDream_WorldUnknown_32.exe: + "/LastDream_WorldUnknown_32.exe": - when: - bit: 32 os: windows store: steam - /LastDream_WorldUnknown_64.exe: + "/LastDream_WorldUnknown_64.exe": - when: - bit: 64 os: windows @@ -298937,11 +299812,11 @@ Last Encounter: installDir: Last Encounter: {} launch: - /Last Encounter.exe: + "/Last Encounter.exe": - when: - os: windows store: steam - /LastEncounter.app/Contents/MacOS/LastEncounter: + "/LastEncounter.app/Contents/MacOS/LastEncounter": - when: - os: mac store: steam @@ -298949,12 +299824,12 @@ Last Encounter: id: 719800 Last Epoch: files: - /.config/unity3d/Eleventh Hour Games/Last Epoch/Saves: + "/.config/unity3d/Eleventh Hour Games/Last Epoch/Saves": tags: - save when: - os: linux - 'C:/Users/USER_NAME/AppData/LocalLow/Eleventh Hour Games/Last Epoch/Saves': + "C:/Users/USER_NAME/AppData/LocalLow/Eleventh Hour Games/Last Epoch/Saves": tags: - save when: @@ -298962,19 +299837,19 @@ Last Epoch: installDir: Last Epoch: {} launch: - /Last Epoch.app: - - arguments: '-steam' + "/Last Epoch.app": + - arguments: "-steam" when: - os: mac store: steam - /Last Epoch.exe: - - arguments: '-steam' + "/Last Epoch.exe": + - arguments: "-steam" when: - bit: 64 os: windows store: steam - /Last Epoch.x86_64: - - arguments: '-steam' + "/Last Epoch.x86_64": + - arguments: "-steam" when: - bit: 64 os: linux @@ -298983,7 +299858,7 @@ Last Epoch: id: 899770 Last Evil: files: - /AppData/LocalLow/Flametorch/LastEvil: + "/AppData/LocalLow/Flametorch/LastEvil": tags: - save when: @@ -298991,7 +299866,7 @@ Last Evil: installDir: LastEvil: {} launch: - /LastEvil.exe: + "/LastEvil.exe": - when: - os: windows store: steam @@ -299008,27 +299883,27 @@ Last Half of Darkness - Society of the Serpent Moon: installDir: Last Half of Darkness - Society of the Serpent Moon: {} launch: - /StartMenu.exe: + "/StartMenu.exe": - when: - os: windows store: steam steam: id: 384910 -'Last Half of Darkness: Shadows of the Servants': +"Last Half of Darkness: Shadows of the Servants": installDir: Last Half of Darkness - Society of the Serpent Moon: {} launch: - /StartMenu.exe: + "/StartMenu.exe": - when: - os: windows store: steam steam: id: 384910 -'Last Half of Darkness: Society of the Serpent Moon': +"Last Half of Darkness: Society of the Serpent Moon": installDir: Last Half of Darkness - Society of the Serpent Moon: {} launch: - /StartMenu.exe: + "/StartMenu.exe": - when: - os: windows store: steam @@ -299038,7 +299913,7 @@ Last Heroes: installDir: Last Heroes: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -299048,7 +299923,7 @@ Last Heroes 2: installDir: Last Heroes 2: {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: @@ -299057,7 +299932,7 @@ Last Heroes 3: installDir: Last Heroes 3: {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: @@ -299066,7 +299941,7 @@ Last Heroes 4: installDir: Last Heroes 4: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: @@ -299075,7 +299950,7 @@ Last Hope: installDir: Last Hope: {} launch: - /Last Hope.exe: + "/Last Hope.exe": - when: - os: windows store: steam @@ -299085,7 +299960,7 @@ Last Hope - Tower Defense: installDir: Last Hope - Tower Defense: {} launch: - /LastHopeTD.exe: + "/LastHopeTD.exe": - when: - os: windows store: steam @@ -299105,11 +299980,11 @@ Last Horizon: installDir: Last Horizon: {} launch: - /Last Horizon.app: + "/Last Horizon.app": - when: - os: mac store: steam - /LastHorizon.exe: + "/LastHorizon.exe": - when: - os: windows store: steam @@ -299119,7 +299994,7 @@ Last Hours of Jack: installDir: LHOJ: {} launch: - /LHOJ.exe: + "/LHOJ.exe": - when: - os: windows store: steam @@ -299129,11 +300004,11 @@ Last Inua: installDir: Last Inua: {} launch: - /LastInua_osx.app/Contents/MacOS/Last Inua: + "/LastInua_osx.app/Contents/MacOS/Last Inua": - when: - os: mac store: steam - /LastInua_x86.exe: + "/LastInua_x86.exe": - when: - os: windows store: steam @@ -299145,14 +300020,14 @@ Last Joy: Last Kings: steam: id: 1155780 -'Last Knight: Rogue Rider Edition': +"Last Knight: Rogue Rider Edition": files: - /My Games/Last Knight/Save/*.bin: + "/My Games/Last Knight/Save/*.bin": tags: - save when: - os: windows - /My Games/Last Knight/Save/System/*.bin: + "/My Games/Last Knight/Save/System/*.bin": tags: - config when: @@ -299160,12 +300035,12 @@ Last Kings: installDir: Last Knight: {} launch: - /Binaries/Win32/LastKnight.exe: + "/Binaries/Win32/LastKnight.exe": - when: - bit: 32 os: windows store: steam - /LastKnight.app: + "/LastKnight.app": - when: - os: mac store: steam @@ -299176,11 +300051,11 @@ Last Labyrinth: LastLabyrinth: {} steam: id: 979400 -'Last Line VR: A Zombie Defense Game': +"Last Line VR: A Zombie Defense Game": installDir: LastLineVR: {} launch: - /LastLineVR.exe: + "/LastLineVR.exe": - when: - bit: 64 os: windows @@ -299197,7 +300072,7 @@ Last Man Sitting: id: 774291 Last Man Standing: files: - /FreeReign/LMS/gameSettings.ini: + "/FreeReign/LMS/gameSettings.ini": tags: - config when: @@ -299205,8 +300080,8 @@ Last Man Standing: installDir: LMS: {} launch: - /Launcher.exe: - - arguments: '-steam -lms' + "/Launcher.exe": + - arguments: "-steam -lms" when: - os: windows store: steam @@ -299219,7 +300094,7 @@ Last Neighbor: installDir: Last Neighbor: {} launch: - /LastNeighbor.exe: + "/LastNeighbor.exe": - when: - os: windows store: steam @@ -299227,7 +300102,7 @@ Last Neighbor: id: 1184570 Last Oasis: files: - /Mist/Saved/Config/WindowsClient: + "/Mist/Saved/Config/WindowsClient": tags: - config when: @@ -299235,7 +300110,7 @@ Last Oasis: installDir: Last Oasis: {} launch: - /OasisLauncher.exe: + "/OasisLauncher.exe": - when: - bit: 64 os: windows @@ -299249,7 +300124,7 @@ Last Regiment: installDir: Last Regiment: {} launch: - /LastRegiment.exe: + "/LastRegiment.exe": - when: - os: windows store: steam @@ -299259,7 +300134,7 @@ Last Resort Island: installDir: Last Island Resort: {} launch: - /Last Resort Island.exe: + "/Last Resort Island.exe": - when: - os: windows store: steam @@ -299267,7 +300142,7 @@ Last Resort Island: id: 820910 Last Rites: files: - /LASTRITE.CFG: + "/LASTRITE.CFG": tags: - config when: @@ -299277,7 +300152,7 @@ Last Rites: installDir: Last Rites: {} launch: - /dosbox.exe: + "/dosbox.exe": - when: - os: windows store: steam @@ -299287,16 +300162,16 @@ Last Salvo: installDir: Last Salvo: {} launch: - /LastSalvo.exe: + "/LastSalvo.exe": - when: - os: windows store: steam - /LastSalvo32.run: + "/LastSalvo32.run": - when: - bit: 32 os: linux store: steam - /LastSalvo64.run: + "/LastSalvo64.run": - when: - bit: 64 os: linux @@ -299307,7 +300182,7 @@ Last Shark Standing: installDir: Last Shark Standing: {} launch: - /Last Shark Standing.exe: + "/Last Shark Standing.exe": - when: - os: windows store: steam @@ -299317,7 +300192,7 @@ Last Soldier: installDir: Last Soldier: {} launch: - /Last Soldier.exe: + "/Last Soldier.exe": - when: - os: windows store: steam @@ -299326,22 +300201,22 @@ Last Soldier: Last Stand: steam: id: 566830 -'Last Stand: Reborn': +"Last Stand: Reborn": steam: id: 899230 Last Stanza: installDir: Last Stanza: {} launch: - /LastStanza.app/Contents/MacOS/LastStanza: + "/LastStanza.app/Contents/MacOS/LastStanza": - when: - os: mac store: steam - /LastStanza.exe: + "/LastStanza.exe": - when: - os: windows store: steam - /LastStanza.sh: + "/LastStanza.sh": - when: - os: linux store: steam @@ -299351,15 +300226,15 @@ Last Stitch Goodnight: installDir: Last Stitch Goodnight: {} launch: - /LastStitchGoodnightLin1B3.x86: + "/LastStitchGoodnightLin1B3.x86": - when: - os: linux store: steam - /LastStitchGoodnightV10B3.app: + "/LastStitchGoodnightV10B3.app": - when: - os: mac store: steam - /LastStitchGoodnightV10B3.exe: + "/LastStitchGoodnightV10B3.exe": - when: - os: windows store: steam @@ -299369,7 +300244,7 @@ Last Stonelord: installDir: Last Stonelord: {} launch: - /LastStonelord.exe: + "/LastStonelord.exe": - when: - os: windows store: steam @@ -299379,7 +300254,7 @@ Last Stop: installDir: Last Stop: {} launch: - /Last Stop.exe: + "/Last Stop.exe": - when: - os: windows store: steam @@ -299393,7 +300268,7 @@ Last Summer: installDir: LastSummer: {} launch: - /LastSummer.exe: + "/LastSummer.exe": - when: - os: windows store: steam @@ -299407,7 +300282,7 @@ Last Tale: id: 608560 Last Tide: files: - /DR/Saved/Config/WindowsNoEditor: + "/DR/Saved/Config/WindowsNoEditor": tags: - config when: @@ -299415,20 +300290,20 @@ Last Tide: installDir: Last Tide: {} launch: - /WindowsNoEditor/DR.exe: + "/WindowsNoEditor/DR.exe": - arguments: MainMenu_Proto -game -ENV=LIVE when: - bit: 64 os: windows store: steam - workingDir: /WindowsNoEditor + workingDir: "/WindowsNoEditor" steam: id: 858590 Last Toon Standing: installDir: Last Toon Standing: {} launch: - /ltsa3p0.exe: + "/ltsa3p0.exe": - when: - os: windows store: steam @@ -299443,7 +300318,7 @@ Last War 2044: installDir: LAST WAR 2044: {} launch: - /Lastwar2044.exe: + "/Lastwar2044.exe": - when: - os: windows store: steam @@ -299453,7 +300328,7 @@ Last Warrior: installDir: LastWarrior: {} launch: - /LastWarrior.exe: + "/LastWarrior.exe": - when: - os: windows store: steam @@ -299463,7 +300338,7 @@ Last Week: installDir: Last Week: {} launch: - /LastWeek.exe: + "/LastWeek.exe": - when: - os: windows store: steam @@ -299473,16 +300348,16 @@ Last Will: installDir: Last Will: {} launch: - /LastWill.app: + "/LastWill.app": - when: - bit: 64 os: mac store: steam - /lastwill.exe: + "/lastwill.exe": - when: - os: windows store: steam - /lastwill.x86_64: + "/lastwill.x86_64": - when: - os: linux store: steam @@ -299495,12 +300370,15 @@ Last Wood: installDir: Last Wood: {} launch: - /LastWood.app/Contents/MacOS/LastWood: + "/LastWood.app/Contents/MacOS/LastWood": - when: - os: mac store: steam - /LastWood.exe: + "/LastWood.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam @@ -299510,23 +300388,23 @@ Last Word: installDir: Last Word: {} launch: - /LastWord.app/Contents/MacOS/steamshim_parent: + "/LastWord.app/Contents/MacOS/steamshim_parent": - arguments: LastWord.app/Contents/MacOS/mkxp when: - os: mac store: steam - /game.exe: + "/game.exe": - when: - os: windows store: steam - /steamshim/parent.amd64: - - arguments: ./LastWord.amd64 + "/steamshim/parent.amd64": + - arguments: "./LastWord.amd64" when: - bit: 64 os: linux store: steam - /steamshim/parent.x86: - - arguments: ./LastWord.x86 + "/steamshim/parent.x86": + - arguments: "./LastWord.x86" when: - bit: 32 os: linux @@ -299537,22 +300415,22 @@ Last Year: installDir: Last Year: {} launch: - /LastYear.exe: - - arguments: '-dx11' + "/LastYear.exe": + - arguments: "-dx11" when: - bit: 64 os: windows store: steam steam: id: 1195460 -'Last Year: The Nightmare': +"Last Year: The Nightmare": files: - /LastYear/Saved/Config/WindowsNoEditor: + "/LastYear/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /LastYear/Saved/SaveGames: + "/LastYear/Saved/SaveGames": tags: - save when: @@ -299560,8 +300438,8 @@ Last Year: installDir: Last Year The Nightmare: {} launch: - /LastYear.exe: - - arguments: '-NotInstalled' + "/LastYear.exe": + - arguments: "-NotInstalled" when: - bit: 64 os: windows @@ -299572,7 +300450,7 @@ Last in Orbit: installDir: Last in Orbit: {} launch: - /LastInOrbit.exe: + "/LastInOrbit.exe": - when: - os: windows store: steam @@ -299582,7 +300460,7 @@ Last warrior: installDir: Last warrior: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -299592,7 +300470,7 @@ LastShot: installDir: LastShot: {} launch: - /LastShot.exe: + "/LastShot.exe": - when: - store: steam steam: @@ -299601,15 +300479,15 @@ Latangerine Last Journey: installDir: Latangerine Last Journey: {} launch: - /LatangerineLastJourney/LatangerineLastJourney.app: + "/LatangerineLastJourney/LatangerineLastJourney.app": - when: - os: mac store: steam - /LatangerineLastJourney/LatangerineLastJourney.exe: + "/LatangerineLastJourney/LatangerineLastJourney.exe": - when: - os: windows store: steam - /LatangerineLastJourney/LatangerineLastJourney.sh: + "/LatangerineLastJourney/LatangerineLastJourney.sh": - when: - os: linux store: steam @@ -299619,7 +300497,7 @@ Late City Riders: installDir: Late City Riders: {} launch: - /LateCityRiders.exe: + "/LateCityRiders.exe": - when: - os: windows store: steam @@ -299632,17 +300510,17 @@ Late For Work: id: 623540 Late Shift: files: - /AppData/LocalLow/Wales Interactive/Late Shift/Unity: + "/AppData/LocalLow/Wales Interactive/Late Shift/Unity": tags: - save when: - os: windows - /userdata//584980/remote/GameData: + "/userdata//584980/remote/GameData": tags: - save when: - store: steam - /userdata//584980/remote/OptionsData: + "/userdata//584980/remote/OptionsData": tags: - config when: @@ -299652,11 +300530,11 @@ Late Shift: installDir: Late Shift: {} launch: - /LateShift.app: + "/LateShift.app": - when: - os: mac store: steam - /LateShift.exe: + "/LateShift.exe": - when: - os: windows store: steam @@ -299670,18 +300548,18 @@ Late at night: installDir: Late at night: {} launch: - /Late at night.exe: + "/Late at night.exe": - arguments: b when: - os: windows store: steam steam: id: 932160 -Late'O'Clock: +"Late'O'Clock": installDir: - Late'O'Clock: {} + "Late'O'Clock": {} launch: - /NailGun Studios - Late'O'Clock.exe: + "/NailGun Studios - Late'O'Clock.exe": - when: - os: windows store: steam @@ -299691,7 +300569,7 @@ Later: installDir: Later: {} launch: - /Later.exe: + "/Later.exe": - when: - os: windows store: steam @@ -299699,22 +300577,22 @@ Later: id: 1184720 Later Alligator: files: - /.config/unity3d/PillowFightIo/LaterAlligator/: + "/.config/unity3d/PillowFightIo/LaterAlligator/": tags: - save when: - os: linux - /.config/unity3d/PillowFightIo/LaterAlligator/Unity/local.897ca0d97e1d54df898dd45a8b6084f0/Analytics: + "/.config/unity3d/PillowFightIo/LaterAlligator/Unity/local.897ca0d97e1d54df898dd45a8b6084f0/Analytics": tags: - config when: - os: linux - /AppData/LocalLow/PillowFightIo/LaterAlligator/: + "/AppData/LocalLow/PillowFightIo/LaterAlligator/": tags: - save when: - os: windows - /AppData/LocalLow/PillowFightIo/LaterAlligator/Unity/local.897ca0d97e1d54df898dd45a8b6084f0/Analytics: + "/AppData/LocalLow/PillowFightIo/LaterAlligator/Unity/local.897ca0d97e1d54df898dd45a8b6084f0/Analytics": tags: - config when: @@ -299722,15 +300600,15 @@ Later Alligator: installDir: LaterAlligator: {} launch: - /LaterAlligator.app/Contents/MacOS/LaterAlligator: + "/LaterAlligator.app/Contents/MacOS/LaterAlligator": - when: - os: mac store: steam - /LaterAlligator.exe: + "/LaterAlligator.exe": - when: - os: windows store: steam - /LaterAlligator.x86_64: + "/LaterAlligator.x86_64": - when: - os: linux store: steam @@ -299742,11 +300620,11 @@ Later Daters: installDir: Later Daters: {} launch: - /Later Daters.exe: + "/Later Daters.exe": - when: - os: windows store: steam - /LaterDaters.app: + "/LaterDaters.app": - when: - os: mac store: steam @@ -299756,7 +300634,7 @@ Later On: installDir: Later On: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -299774,15 +300652,15 @@ Latte Stand Tycoon: installDir: Latte Stand Tycoon: {} launch: - /latteStand.app/Contents/MacOS/latteStand: + "/latteStand.app/Contents/MacOS/latteStand": - when: - os: mac store: steam - /latteStand.exe: + "/latteStand.exe": - when: - os: windows store: steam - /latteStand.x86: + "/latteStand.x86": - when: - os: linux store: steam @@ -299795,7 +300673,7 @@ Launch Party: installDir: Rockets are Super Hard: {} launch: - /Rockets are Super Hard.exe: + "/Rockets are Super Hard.exe": - when: - bit: 64 os: windows @@ -299805,19 +300683,19 @@ Launch Party: Launch Squad: steam: id: 523860 -Laura's Happy Adventures: +"Laura's Happy Adventures": files: - /Gamedata/SaveGame: + "/Gamedata/SaveGame": tags: - save when: - os: windows - /UbiSoft/ubi.ini: + "/UbiSoft/ubi.ini": tags: - config when: - os: windows -Lauren's visit: +"Lauren's visit": steam: id: 918040 Lava Pool: @@ -299827,7 +300705,7 @@ Lava Rolling Kid: installDir: Lava Rolling Kid: {} launch: - /LavaRollingKid.exe: + "/LavaRollingKid.exe": - when: - os: windows store: steam @@ -299837,15 +300715,15 @@ Lavapools: installDir: Lavapools: {} launch: - /Lavapools.app: + "/Lavapools.app": - when: - os: mac store: steam - /Lavapools.exe: + "/Lavapools.exe": - when: - os: windows store: steam - /Lavapools.x86_64: + "/Lavapools.x86_64": - when: - os: linux store: steam @@ -299856,17 +300734,17 @@ Lavender: Lavender: {} steam: id: 886710 -'Law & Order: Criminal Intent': +"Law & Order: Criminal Intent": files: - / ??? /lawandorder: + "/ ??? /lawandorder": tags: - config - save when: - os: windows -'Law & Order: Legacies': +"Law & Order: Legacies": files: - /telltale games/lawandorder: + "/telltale games/lawandorder": tags: - config - save @@ -299875,11 +300753,11 @@ Lavender: installDir: lawandorder: {} launch: - /LawAndOrder101.app: + "/LawAndOrder101.app": - when: - os: mac store: steam - /LawAndOrder101.exe: + "/LawAndOrder101.exe": - when: - os: windows store: steam @@ -299892,7 +300770,7 @@ Law Mower: installDir: Law Mower: {} launch: - /LawMower.exe: + "/LawMower.exe": - when: - os: windows store: steam @@ -299903,7 +300781,7 @@ Law of life: id: 1168540 LawBreakers: files: - /Lawbreakers/Saved: + "/Lawbreakers/Saved": tags: - config when: @@ -299911,7 +300789,7 @@ LawBreakers: installDir: LawBreakers: {} launch: - /ShooterGame/Binaries/Win64/LawBreakers.exe: + "/ShooterGame/Binaries/Win64/LawBreakers.exe": - when: - bit: 64 os: windows @@ -299922,7 +300800,7 @@ Lawless Lands: installDir: Lawless Lands: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -299932,14 +300810,14 @@ Lawless West: installDir: Lawless West: {} launch: - /Lawless West.exe: + "/Lawless West.exe": - when: - store: steam steam: id: 2108440 Lawn Mowing Simulator: files: - /AppData/LocalLow/Curve Digital/Lawn Mowing Simulator: + "/AppData/LocalLow/Curve Digital/Lawn Mowing Simulator": tags: - save when: @@ -299947,7 +300825,7 @@ Lawn Mowing Simulator: installDir: Lawn Mowing Simulator: {} launch: - /Lawn Mowing Simulator.exe: + "/Lawn Mowing Simulator.exe": - when: - bit: 64 os: windows @@ -299958,40 +300836,40 @@ Lawnmower Game: installDir: Lawnmowergame: {} launch: - /Lawnmowergame.exe: + "/Lawnmowergame.exe": - when: - bit: 64 os: windows store: steam steam: id: 658600 -'Lawnmower Game 2: Drifter': +"Lawnmower Game 2: Drifter": installDir: Lawnmower Game 2 Drifter: {} launch: - /LM2.exe: + "/LM2.exe": - when: - bit: 64 os: windows store: steam steam: id: 749550 -'Lawnmower Game 3: Horror': +"Lawnmower Game 3: Horror": installDir: Lawnmower Game 3 Horror: {} launch: - /LM3H.exe: + "/LM3H.exe": - when: - bit: 64 os: windows store: steam steam: id: 907620 -'Lawnmower Game 4: The Final Cut': +"Lawnmower Game 4: The Final Cut": installDir: Lawnmower Game 4 The Final Cut: {} launch: - /Lawnmower4.exe: + "/Lawnmower4.exe": - when: - bit: 64 os: windows @@ -300002,15 +300880,15 @@ Laws of Civilization: installDir: Lawgivers: {} launch: - /Lawgivers.app: + "/Lawgivers.app": - when: - os: mac store: steam - /Lawgivers.exe: + "/Lawgivers.exe": - when: - os: windows store: steam - /Lawgivers.x86: + "/Lawgivers.x86": - when: - os: linux store: steam @@ -300020,7 +300898,7 @@ Laws of Machine: installDir: Laws of Machine: {} launch: - /LawsOfMachine.exe: + "/LawsOfMachine.exe": - when: - os: windows store: steam @@ -300030,7 +300908,7 @@ Layer Section & Galactic Attack S-Tribute: installDir: Layer Section S-Tribute: {} launch: - /S-Tribute.exe: + "/S-Tribute.exe": - when: - os: windows store: steam @@ -300040,15 +300918,15 @@ Layers: installDir: Layers: {} launch: - /Layers.app: + "/Layers.app": - when: - os: mac store: steam - /Layers.exe: + "/Layers.exe": - when: - os: windows store: steam - /Layers.x86_64: + "/Layers.x86_64": - when: - os: linux store: steam @@ -300058,7 +300936,7 @@ Layers Of The Machine: installDir: Layers Of The Machine: {} launch: - /LOTM.exe: + "/LOTM.exe": - when: - bit: 64 os: windows @@ -300067,32 +300945,34 @@ Layers Of The Machine: id: 1098570 Layers of Fear: files: - /AppData/LocalLow/Bloober Team/Layers of Fear/0/cfg: + "/AppData/LocalLow/Bloober Team/Layers of Fear/0/cfg": tags: - config when: - os: windows - /AppData/LocalLow/Bloober Team/Layers of Fear/0/save*.dat: + "/AppData/LocalLow/Bloober Team/Layers of Fear/0/save*.dat": tags: - save when: - os: windows - /AppData/LocalLow/Bloober Team/Layers of Fear//cfg: + "/AppData/LocalLow/Bloober Team/Layers of Fear//cfg": tags: - config when: - - store: steam - /AppData/LocalLow/Bloober Team/Layers of Fear//save*.dat: + - os: windows + store: steam + "/AppData/LocalLow/Bloober Team/Layers of Fear//save*.dat": tags: - save when: - - store: steam - /Library/Containers/unity.Bloober-Team.Layers-of-Fear/Data/Library/Application Support/unity.Bloober Team.Layers of Fear/0: + - os: windows + store: steam + "/Library/Containers/unity.Bloober-Team.Layers-of-Fear/Data/Library/Application Support/unity.Bloober Team.Layers of Fear/0": tags: - save when: - os: mac - /unity3d/Bloober Team/Layers of Fear: + "/unity3d/Bloober Team/Layers of Fear": tags: - config - save @@ -300109,17 +300989,17 @@ Layers of Fear: installDir: Layers of Fear: {} launch: - /LOF: + "/LOF": - when: - bit: 64 os: linux store: steam - /LOF.app: + "/LOF.app": - when: - bit: 64 os: mac store: steam - /Layers Of Fear.exe: + "/Layers Of Fear.exe": - when: - os: windows store: steam @@ -300131,12 +301011,12 @@ Layers of Fear: id: 391720 Layers of Fear (2023): files: - /Local/Cron/Saved/Config/Windows: + "/Local/Cron/Saved/Config/Windows": tags: - config when: - os: windows - /Local/Cron/Saved/SaveGames/: + "/Local/Cron/Saved/SaveGames/": tags: - save when: @@ -300149,11 +301029,11 @@ Layers of Fear (2023): installDir: Layers of Fear: {} launch: - /LayersOfFear-Mac-Shipping.app: + "/LayersOfFear-Mac-Shipping.app": - when: - os: mac store: steam - /LayersOfFear.exe: + "/LayersOfFear.exe": - when: - bit: 64 os: windows @@ -300162,17 +301042,17 @@ Layers of Fear (2023): id: 1946700 Layers of Fear 2: files: - /LOF2/Saved/Config/WindowsNoEditor: + "/LOF2/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /LOF2/Saved/SaveGames/: + "/LOF2/Saved/SaveGames/": tags: - save when: - os: windows - /LOF2/Saved/SaveGames//PlayerProfile.sav: + "/LOF2/Saved/SaveGames//PlayerProfile.sav": tags: - config when: @@ -300182,7 +301062,7 @@ Layers of Fear 2: installDir: Layers of Fear 2: {} launch: - /LOF2.exe: + "/LOF2.exe": - when: - bit: 64 os: windows @@ -300198,11 +301078,11 @@ Lazaretto: installDir: Lazaretto: {} launch: - /Lazaretto.app: + "/Lazaretto.app": - when: - os: mac store: steam - /Lazaretto.exe: + "/Lazaretto.exe": - when: - os: windows store: steam @@ -300215,21 +301095,21 @@ Lazer Cops: installDir: Lazer Cops: {} launch: - /LazerCops.exe: + "/LazerCops.exe": - when: - os: windows store: steam - /LazerCops.x86: + "/LazerCops.x86": - when: - bit: 32 os: linux store: steam - /LazerCops.x86_64: + "/LazerCops.x86_64": - when: - bit: 64 os: linux store: steam - /LazerCops_Mac.app: + "/LazerCops_Mac.app": - when: - os: mac store: steam @@ -300240,11 +301120,11 @@ Lazerbait: Lazerbait: {} steam: id: 529150 -'Lazergoat: Invasion': +"Lazergoat: Invasion": installDir: Lazergoat Invasion: {} launch: - /LazergoatInvasion.exe: + "/LazergoatInvasion.exe": - when: - os: windows store: steam @@ -300254,67 +301134,67 @@ Lazors: installDir: Lazors: {} launch: - /Lazors: + "/Lazors": - when: - os: linux store: steam - /Lazors.app: + "/Lazors.app": - when: - os: mac store: steam - /Lazors.exe: + "/Lazors.exe": - when: - os: windows store: steam steam: id: 341290 -Lazy Devil's Game Life: +"Lazy Devil's Game Life": steam: id: 825410 Lazy Galaxy: installDir: LazyGalaxy: {} launch: - /LazyGalaxy.app: + "/LazyGalaxy.app": - when: - os: mac store: steam - /Lazy_Galaxy_Windows.exe: + "/Lazy_Galaxy_Windows.exe": - when: - os: windows store: steam - /x64/LazyGalaxy.x86_64: + "/x64/LazyGalaxy.x86_64": - when: - bit: 64 os: linux store: steam - workingDir: /x64 - /x86/LazyGalaxy.x86: + workingDir: "/x64" + "/x86/LazyGalaxy.x86": - when: - bit: 32 os: linux store: steam - workingDir: /x86 + workingDir: "/x86" steam: id: 724470 -'Lazy Galaxy: Rebel Story': +"Lazy Galaxy: Rebel Story": installDir: Rebel Story: {} launch: - /RebelStory.app: + "/RebelStory.app": - when: - os: mac store: steam - /RebelStory.exe: + "/RebelStory.exe": - when: - os: windows store: steam - /RebelStory.x86: + "/RebelStory.x86": - when: - bit: 32 os: linux store: steam - /RebelStory.x86_64: + "/RebelStory.x86_64": - when: - bit: 64 os: linux @@ -300323,29 +301203,29 @@ Lazy Galaxy: id: 533050 Le Fetiche Maya: files: - /P.DAT: + "/P.DAT": tags: - save when: - os: dos -'Le Havre: The Inland Port': +"Le Havre: The Inland Port": installDir: Le Havre The Inland Port: {} launch: - /lhb.app: + "/lhb.app": - when: - os: mac store: steam - /lhb.exe: + "/lhb.exe": - when: - os: windows store: steam - /lhb.x86: + "/lhb.x86": - when: - bit: 32 os: linux store: steam - /lhb.x86_64: + "/lhb.x86_64": - when: - bit: 64 os: linux @@ -300358,12 +301238,12 @@ Le Fetiche Maya: id: 511820 Le Mans 24 Hours: files: - /data/controls.cfg: + "/data/controls.cfg": tags: - config when: - os: windows - /save: + "/save": tags: - config - save @@ -300371,14 +301251,14 @@ Le Mans 24 Hours: - os: windows Le Maître des Âmes: files: - 'A:/*.JEU': + "A:/*.JEU": tags: - save when: - os: dos -'Lead and Gold: Gangs of the Wild West': +"Lead and Gold: Gangs of the Wild West": files: - /LAG/data/settings: + "/LAG/data/settings": tags: - config when: @@ -300386,7 +301266,7 @@ Le Maître des Âmes: installDir: Lead and Gold Gangs of the Wild West: {} launch: - /lag_win32_public_dev.exe: + "/lag_win32_public_dev.exe": - when: - store: steam steam: @@ -300395,7 +301275,7 @@ Leaf: installDir: Leaf: {} launch: - /Leaf/Leaf.exe: + "/Leaf/Leaf.exe": - when: - os: windows store: steam @@ -300405,8 +301285,8 @@ Leaflet Love Story: installDir: Leaflet Love Story: {} launch: - /leaflet.exe: - - arguments: '-fontcharset=DEFAULT_CHARSET' + "/leaflet.exe": + - arguments: "-fontcharset=DEFAULT_CHARSET" when: - os: windows store: steam @@ -300416,11 +301296,11 @@ League of Evil: installDir: League of Evil: {} launch: - /LeagueOfEvil.app/Contents/MacOS/LeagueOfEvil: + "/LeagueOfEvil.app/Contents/MacOS/LeagueOfEvil": - when: - os: mac store: steam - /LeagueOfEvil.exe: + "/LeagueOfEvil.exe": - when: - os: windows store: steam @@ -300430,11 +301310,11 @@ League of Gods: installDir: fsb: {} launch: - /fsb.app: + "/fsb.app": - when: - os: mac store: steam - /fsb.exe: + "/fsb.exe": - when: - os: windows store: steam @@ -300444,7 +301324,7 @@ League of Guessing: installDir: League Of Guessing: {} launch: - /LOG.exe: + "/LOG.exe": - when: - os: windows store: steam @@ -300452,7 +301332,7 @@ League of Guessing: id: 524900 League of Legends: files: - /Config: + "/Config": tags: - config when: @@ -300461,35 +301341,35 @@ League of Legends: installDir: League of Legends: {} launch: - /lol.launcher.exe: + "/lol.launcher.exe": - when: - store: steam steam: id: 20590 -'League of Light: Dark Omens': +"League of Light: Dark Omens": installDir: - League of Light Dark Omens Collector's Edition: {} + "League of Light Dark Omens Collector's Edition": {} launch: - /LeagueOfLightDarkOmensCE.exe: + "/LeagueOfLightDarkOmensCE.exe": - when: - store: steam steam: id: 533070 -'League of Light: Silent Mountain': +"League of Light: Silent Mountain": installDir: - League of Light Silent Mountain Collector's Edition: {} + "League of Light Silent Mountain Collector's Edition": {} launch: - /LeagueOfLight_SilentMountainCE.exe: + "/LeagueOfLight_SilentMountainCE.exe": - when: - os: windows store: steam steam: id: 758590 -'League of Light: Wicked Harvest': +"League of Light: Wicked Harvest": installDir: - League of Light Wicked Harvest Collector's Edition: {} + "League of Light Wicked Harvest Collector's Edition": {} launch: - /LeagueOfLight_WickedHarvestCE.exe: + "/LeagueOfLight_WickedHarvestCE.exe": - when: - os: windows store: steam @@ -300499,7 +301379,7 @@ League of Maidens: installDir: League of Maidens: {} launch: - /LOM.exe: + "/LOM.exe": - when: - bit: 64 os: windows @@ -300510,7 +301390,7 @@ League of Mermaids: installDir: League of Mermaids: {} launch: - /Game_Pearls2.exe: + "/Game_Pearls2.exe": - when: - os: windows store: steam @@ -300520,7 +301400,7 @@ League of Pirates: installDir: League of Pirates: {} launch: - /LeagueOfPirates.exe: + "/LeagueOfPirates.exe": - when: - store: steam steam: @@ -300529,7 +301409,7 @@ League of Pixels: installDir: League of Pixels: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -300538,13 +301418,13 @@ League of Pixels: League of Survivors: steam: id: 802410 -Leanna's Slice of Life: +"Leanna's Slice of Life": gog: id: 1850227359 installDir: - Leanna's Slice of Life: {} + "Leanna's Slice of Life": {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: @@ -300553,7 +301433,7 @@ Leap 2: installDir: LeapII: {} launch: - /LeapII.exe: + "/LeapII.exe": - when: - os: windows store: steam @@ -300563,7 +301443,7 @@ Leap Up no jutsu: installDir: LeapUp: {} launch: - /NinjaJump.exe: + "/NinjaJump.exe": - when: - os: windows store: steam @@ -300571,7 +301451,7 @@ Leap Up no jutsu: id: 560710 Leap of Fate: files: - /AppData/LocalLow/Clever-Plays/Leap of Fate: + "/AppData/LocalLow/Clever-Plays/Leap of Fate": tags: - save when: @@ -300579,7 +301459,7 @@ Leap of Fate: installDir: Leap of Fate: {} launch: - /LoF.exe: + "/LoF.exe": - when: - store: steam registry: @@ -300595,15 +301475,15 @@ Learn (Japanese) Kana The Fun Way!: installDir: Learn (Japanese) Kana The Fun Way!: {} launch: - /Learn Kana The Fun Way.app: + "/Learn Kana The Fun Way.app": - when: - os: mac store: steam - /LearnKanaTheFunWay.exe: + "/LearnKanaTheFunWay.exe": - when: - os: windows store: steam - /run.sh: + "/run.sh": - when: - os: linux store: steam @@ -300611,12 +301491,12 @@ Learn (Japanese) Kana The Fun Way!: id: 710970 Learn Japanese To Survive! Hiragana Battle: files: - /save: + "/save": tags: - save when: - os: windows - /save/config.rpgsave: + "/save/config.rpgsave": tags: - config when: @@ -300624,11 +301504,11 @@ Learn Japanese To Survive! Hiragana Battle: installDir: HiraganaBattle: {} launch: - /HiraganaBattle.app: + "/HiraganaBattle.app": - when: - os: mac store: steam - /Learn Japanese To Survive - Hiragana Battle.exe: + "/Learn Japanese To Survive - Hiragana Battle.exe": - when: - os: windows store: steam @@ -300636,7 +301516,7 @@ Learn Japanese To Survive! Hiragana Battle: id: 438270 Learn Japanese To Survive! Katakana War: files: - /www/save: + "/www/save": tags: - save when: @@ -300644,13 +301524,13 @@ Learn Japanese To Survive! Katakana War: installDir: Learn Japanese To Survive! Katakana War: {} launch: - /nw.exe: - - arguments: '--in-process-gpu' + "/nw.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam - /nwjs.app: - - arguments: '--in-process-gpu' + "/nwjs.app": + - arguments: "--in-process-gpu" when: - os: mac store: steam @@ -300660,13 +301540,13 @@ Learn Japanese to Survive! Kanji Combat: installDir: Learn Japanese To Survive! Kanji Combat: {} launch: - /KanjiCombat.app: - - arguments: '--in-process-gpu' + "/KanjiCombat.app": + - arguments: "--in-process-gpu" when: - os: mac store: steam - /KanjiCombat.exe: - - arguments: '--in-process-gpu' + "/KanjiCombat.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam @@ -300676,7 +301556,7 @@ Learn Spanish! Easy Vocabulary: installDir: Learn Spanish! Easy Vocabulary: {} launch: - /Vocabulary.exe: + "/Vocabulary.exe": - when: - os: windows store: steam @@ -300687,7 +301567,7 @@ Learn to Drive on Moto Wars: id: 873360 Learn to Fly 3: files: - /userdata//589870/remote: + "/userdata//589870/remote": tags: - config - save @@ -300697,7 +301577,7 @@ Learn to Fly 3: installDir: Learn to Fly 3: {} launch: - /Learn to Fly 3.exe: + "/Learn to Fly 3.exe": - when: - os: windows store: steam @@ -300705,13 +301585,13 @@ Learn to Fly 3: id: 589870 Learning Factory: files: - /Saves: + "/Saves": tags: - save when: - os: windows - os: linux - /Saves/GLOBAL_DATA: + "/Saves/GLOBAL_DATA": tags: - config when: @@ -300733,15 +301613,15 @@ Learning Factory: installDir: LearningFactory: {} launch: - /LearningFactory.app: + "/LearningFactory.app": - when: - os: mac store: steam - /LearningFactory.exe: + "/LearningFactory.exe": - when: - os: windows store: steam - /LearningFactory.x86_64: + "/LearningFactory.x86_64": - when: - os: linux store: steam @@ -300755,21 +301635,21 @@ Leashed Soul: installDir: Leashed_Soul: {} launch: - /LeashedSoul20170721.exe: + "/LeashedSoul20170721.exe": - when: - os: windows store: steam - /LeashedSoul_LinuxUniversal_20170608.x86: + "/LeashedSoul_LinuxUniversal_20170608.x86": - when: - bit: 32 os: linux store: steam - /LeashedSoul_LinuxUniversal_20170608.x86_64: + "/LeashedSoul_LinuxUniversal_20170608.x86_64": - when: - bit: 64 os: linux store: steam - /LeashedSoul_MacUniversal_20170608.app/Contents/MacOS/LeashedSoul_MacUniversal_20170608: + "/LeashedSoul_MacUniversal_20170608.app/Contents/MacOS/LeashedSoul_MacUniversal_20170608": - when: - os: mac store: steam @@ -300777,29 +301657,29 @@ Leashed Soul: id: 589850 Leather Goddesses of Phobos 2: files: - /*.SAV: + "/*.SAV": tags: - save when: - os: dos - /LGOP2.BAT: + "/LGOP2.BAT": tags: - config when: - os: dos -'Leave Me Alone: A Trip To Hell': +"Leave Me Alone: A Trip To Hell": installDir: Leave Me Alone: {} launch: - /LMA.app: + "/LMA.app": - when: - os: mac store: steam - /LMA.exe: + "/LMA.exe": - when: - os: windows store: steam - /LMA.x86: + "/LMA.x86": - when: - os: linux store: steam @@ -300817,11 +301697,11 @@ Leaves - The Journey: installDir: LEAVES - The Journey: {} launch: - /LEAVES_The_Journey.exe: + "/LEAVES_The_Journey.exe": - when: - os: windows store: steam - /LEAVES_The_Journey_MAC.app: + "/LEAVES_The_Journey_MAC.app": - when: - os: mac store: steam @@ -300831,11 +301711,11 @@ Leaves - The Return: installDir: LEAVES - The Return: {} launch: - /LEAVES_The_Return.exe: + "/LEAVES_The_Return.exe": - when: - os: windows store: steam - /LEAVES_The_Return_MAC.app: + "/LEAVES_The_Return_MAC.app": - when: - os: mac store: steam @@ -300843,17 +301723,17 @@ Leaves - The Return: id: 569810 Leaving Lyndow: files: - /AppData/LocalLow/Eastshade Studios/Leaving Lyndow/*.JSON: + "/AppData/LocalLow/Eastshade Studios/Leaving Lyndow/*.JSON": tags: - save when: - os: windows - /unity3d/Eastshade Studios/Leaving Lyndow/*.JSON: + "/unity3d/Eastshade Studios/Leaving Lyndow/*.JSON": tags: - save when: - os: linux - /unity3d/Eastshade Studios/Leaving Lyndow/prefs: + "/unity3d/Eastshade Studios/Leaving Lyndow/prefs": tags: - config when: @@ -300861,15 +301741,15 @@ Leaving Lyndow: installDir: Leaving Lyndow: {} launch: - /Leaving Lyndow.app: + "/Leaving Lyndow.app": - when: - os: mac store: steam - /Leaving Lyndow.exe: + "/Leaving Lyndow.exe": - when: - os: windows store: steam - /Leaving Lyndow.x86: + "/Leaving Lyndow.x86": - when: - os: linux store: steam @@ -300883,7 +301763,7 @@ Lectrovolt II: installDir: Lectrovolt II: {} launch: - /nw.exe: + "/nw.exe": - when: - bit: 64 os: windows @@ -300894,11 +301774,11 @@ Led It Rain: installDir: Led It Rain: {} launch: - /Led It Rain.exe: + "/Led It Rain.exe": - when: - os: windows store: steam - /Led It Rain_Linux.x86: + "/Led It Rain_Linux.x86": - when: - os: linux store: steam @@ -300913,44 +301793,44 @@ Leder Panzer: installDir: Leder Panzer: {} launch: - /Leder Panzer.exe: + "/Leder Panzer.exe": - when: - os: windows store: steam - /LederPanzer.x86: + "/LederPanzer.x86": - when: - bit: 32 os: linux store: steam - /LederPanzer.x86_64: + "/LederPanzer.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 837500 -Lee Carvallo's Putting Challenge: +"Lee Carvallo's Putting Challenge": registry: - HKEY_CURRENT_USER/Software/Aaron Demeter/Lee Carvallo's Putting Challenge: + "HKEY_CURRENT_USER/Software/Aaron Demeter/Lee Carvallo's Putting Challenge": tags: - config Lee inside TV: installDir: Lee inside TV: {} launch: - /LeeInsideTV.exe: + "/LeeInsideTV.exe": - when: - store: steam steam: id: 1170110 Left 4 Dead: files: - /left4dead/cfg/config.cfg: + "/left4dead/cfg/config.cfg": tags: - config when: - os: windows - /left4dead/cfg/video.txt: + "/left4dead/cfg/video.txt": tags: - config when: @@ -300958,12 +301838,12 @@ Left 4 Dead: installDir: left 4 dead: {} launch: - /hl2_osx: - - arguments: '-game left4dead' + "/hl2_osx": + - arguments: "-game left4dead" when: - os: mac store: steam - /left4dead.exe: + "/left4dead.exe": - when: - os: windows store: steam @@ -300971,12 +301851,12 @@ Left 4 Dead: id: 500 Left 4 Dead 2: files: - /left4dead2/cfg: + "/left4dead2/cfg": tags: - config when: - os: windows - /userdata//550/remote: + "/userdata//550/remote": tags: - save when: @@ -300990,13 +301870,15 @@ Left 4 Dead 2: installDir: Left 4 Dead 2: {} launch: - /hl2.sh: - - arguments: '-game left4dead2 -steam' + "/hl2.sh": + - arguments: "-game left4dead2 -steam" when: - os: mac store: steam - /left4dead2.exe: - - arguments: '-steam' + - os: linux + store: steam + "/left4dead2.exe": + - arguments: "-steam" when: - os: windows store: steam @@ -301004,13 +301886,13 @@ Left 4 Dead 2: id: 550 Left Alive: files: - /userdata//714370: + "/userdata//714370": tags: - save when: - os: windows store: steam - /My Games/LEFT ALIVE/Steam: + "/My Games/LEFT ALIVE/Steam": tags: - config when: @@ -301018,50 +301900,50 @@ Left Alive: installDir: LEFT ALIVE: {} launch: - /game/bin/win/LEFTALIVE.exe: - - arguments: '/nodownload /noShaderCache /noCollisionMerge /bootrom /steam ' + "/game/bin/win/LEFTALIVE.exe": + - arguments: "/nodownload /noShaderCache /noCollisionMerge /bootrom /steam " when: - os: windows store: steam - workingDir: /game/resource/original/asset + workingDir: "/game/resource/original/asset" steam: id: 714370 Left Alone: installDir: Left Alone: {} launch: - /Left Alone.exe: + "/Left Alone.exe": - when: - os: windows store: steam steam: id: 417750 -'Left Behind: Eternal Forces': +"Left Behind: Eternal Forces": files: - /Left Behind Games/Eternal Forces: + "/Left Behind Games/Eternal Forces": tags: - config when: - os: windows -'Left in the Dark: No One on Board': +"Left in the Dark: No One on Board": installDir: Left in the Dark No One on Board: {} launch: - /LeftInTheDark_NoOneOnBoard.exe: + "/LeftInTheDark_NoOneOnBoard.exe": - when: - os: windows store: steam - /LeftInTheDark_NoOneOnBoard_amd64: + "/LeftInTheDark_NoOneOnBoard_amd64": - when: - bit: 64 os: linux store: steam - /LeftInTheDark_NoOneOnBoard_i386: + "/LeftInTheDark_NoOneOnBoard_i386": - when: - bit: 32 os: linux store: steam - /mac_steam.app/Contents/MacOS/mac_steam: + "/mac_steam.app/Contents/MacOS/mac_steam": - when: - os: mac store: steam @@ -301071,8 +301953,11 @@ Left&Right: installDir: Left&Right: {} launch: - /nw.exe: + "/nw.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam @@ -301087,45 +301972,45 @@ LeftWay: installDir: LeftWay: {} launch: - /LeftWay.app: + "/LeftWay.app": - when: - os: mac store: steam - /leftway_linux32: + "/leftway_linux32": - when: - bit: 32 os: linux store: steam - /leftway_linux64: + "/leftway_linux64": - when: - bit: 64 os: linux store: steam - /leftway_windows.exe: + "/leftway_windows.exe": - when: - os: windows store: steam steam: id: 417400 -'Legacy of Dorn: Herald of Oblivion': +"Legacy of Dorn: Herald of Oblivion": installDir: - 'Warhammer 40,000 Herald of Oblivion': {} + "Warhammer 40,000 Herald of Oblivion": {} launch: - /Games Workshop - Herald of Oblivion.app: + "/Games Workshop - Herald of Oblivion.app": - when: - bit: 64 os: mac store: steam - /Games Workshop - Herald of Oblivion.exe: + "/Games Workshop - Herald of Oblivion.exe": - when: - os: windows store: steam - /Games Workshop - Herald of Oblivion.x86: + "/Games Workshop - Herald of Oblivion.x86": - when: - bit: 32 os: linux store: steam - /Games Workshop - Herald of Oblivion.x86_64: + "/Games Workshop - Herald of Oblivion.x86_64": - when: - bit: 64 os: linux @@ -301136,9 +302021,9 @@ LeftWay: - config steam: id: 389850 -'Legacy of Kain: Blood Omen 2': +"Legacy of Kain: Blood Omen 2": files: - /Blood Omen 2/Save *: + "/Blood Omen 2/Save *": tags: - save when: @@ -301148,7 +302033,7 @@ LeftWay: installDir: Blood Omen 2 Legacy of Kain: {} launch: - /bo2.exe: + "/bo2.exe": - when: - store: steam registry: @@ -301157,9 +302042,9 @@ LeftWay: - config steam: id: 242960 -'Legacy of Kain: Defiance': +"Legacy of Kain: Defiance": files: - /Legacy of Kain - Defiance: + "/Legacy of Kain - Defiance": tags: - config - save @@ -301170,18 +302055,18 @@ LeftWay: installDir: legacy_kain_defiance: {} launch: - /defiance.exe: + "/defiance.exe": - when: - store: steam registry: - 'HKEY_CURRENT_USER/Software/Crystal Dynamics/Legacy of Kain: Defiance/1.00.000': + "HKEY_CURRENT_USER/Software/Crystal Dynamics/Legacy of Kain: Defiance/1.00.000": tags: - config steam: id: 224300 -'Legacy of Kain: Soul Reaver': +"Legacy of Kain: Soul Reaver": files: - /savegame.her: + "/savegame.her": tags: - save when: @@ -301191,18 +302076,18 @@ LeftWay: installDir: Legacy of Kain Soul Reaver: {} launch: - /kain2.exe: + "/kain2.exe": - when: - store: steam registry: - 'HKEY_LOCAL_MACHINE/Software/Crystal Dynamics/Legacy of Kain: Soul Reaver/1.00.000': + "HKEY_LOCAL_MACHINE/Software/Crystal Dynamics/Legacy of Kain: Soul Reaver/1.00.000": tags: - config steam: id: 224920 -'Legacy of Kain: Soul Reaver 2': +"Legacy of Kain: Soul Reaver 2": files: - /Soul Reaver 2: + "/Soul Reaver 2": tags: - save when: @@ -301212,7 +302097,7 @@ LeftWay: installDir: Legacy of Kain Soul Reaver 2: {} launch: - /sr2.exe: + "/sr2.exe": - when: - store: steam registry: @@ -301225,7 +302110,7 @@ Legacy of Lina: installDir: Legacy of Lina: {} launch: - /nw.exe: + "/nw.exe": - when: - store: steam steam: @@ -301234,7 +302119,7 @@ Legacy of Lunatic Kingdom: installDir: th15: {} launch: - /th15.exe: + "/th15.exe": - when: - os: windows store: steam @@ -301247,25 +302132,25 @@ Legacy of the Elder Star: installDir: Legacy of the Elder Star: {} launch: - /Launcher.sh: + "/Launcher.sh": - when: - os: linux store: steam - /Legacy of the Elder Star.app/Contents/MacOS/Legacy of the Elder Star: + "/Legacy of the Elder Star.app/Contents/MacOS/Legacy of the Elder Star": - when: - os: mac store: steam - /Legacy of the Elder Star.exe: + "/Legacy of the Elder Star.exe": - when: - os: windows store: steam steam: id: 443250 -'Legacy: Witch Island 2': +"Legacy: Witch Island 2": installDir: Legacy - Witch Island 2: {} launch: - /Legacy. Witch Island 23.exe: + "/Legacy. Witch Island 23.exe": - when: - os: windows store: steam @@ -301275,21 +302160,21 @@ Legal Dungeon: installDir: LegalDungeon: {} launch: - /LegalDungeon.app: + "/LegalDungeon.app": - when: - os: mac store: steam - /LegalDungeon.exe: + "/LegalDungeon.exe": - when: - os: windows store: steam steam: id: 1013750 -'Legena: Union Tides': +"Legena: Union Tides": installDir: Legena Union Tides: {} launch: - /Legena - Union Tides.exe: + "/Legena - Union Tides.exe": - when: - os: windows store: steam @@ -301297,12 +302182,12 @@ Legal Dungeon: id: 401550 Legend: files: - /LEGEND0*.SAV: + "/LEGEND0*.SAV": tags: - save when: - os: dos - /legend.cfg: + "/legend.cfg": tags: - config when: @@ -301313,7 +302198,7 @@ Legend (1994): installDir: Legend: {} launch: - /legend.exe: + "/legend.exe": - when: - os: windows store: steam @@ -301325,7 +302210,7 @@ Legend Bowl: installDir: Legend Bowl: {} launch: - /legend-bowl.exe: + "/legend-bowl.exe": - when: - os: windows store: steam @@ -301335,7 +302220,7 @@ Legend Creatures(传奇生物): installDir: Legend monster: {} launch: - /win.exe: + "/win.exe": - when: - store: steam steam: @@ -301344,7 +302229,7 @@ Legend Knight: installDir: Legend Knight: {} launch: - /GodTest.exe: + "/GodTest.exe": - when: - os: windows store: steam @@ -301354,61 +302239,61 @@ Legend of Ares: installDir: Legend of Ares: {} launch: - /RFstl.exe: + "/RFstl.exe": - when: - os: windows store: steam steam: id: 536950 -'Legend of Assassin: Egypt': +"Legend of Assassin: Egypt": installDir: Legend of Assassin Egypt: {} launch: - /Legend Of Assassin - Egypt.x86: + "/Legend Of Assassin - Egypt.x86": - when: - os: linux store: steam - /Legend of Assassin - Egypt.app/Contents/MacOS/Legend of Assassin - Egypt: + "/Legend of Assassin - Egypt.app/Contents/MacOS/Legend of Assassin - Egypt": - when: - os: mac store: steam - /Legend of Assassin - Egypt.exe: + "/Legend of Assassin - Egypt.exe": - when: - os: windows store: steam steam: id: 918870 -'Legend of Assassin: Jungle': +"Legend of Assassin: Jungle": installDir: Legend of Assassin Jungle: {} launch: - /Legend of Assassin - Jungle.app/Contents/MacOS/Legend of Assassin - Jungle: + "/Legend of Assassin - Jungle.app/Contents/MacOS/Legend of Assassin - Jungle": - when: - os: mac store: steam - /Legend of Assassin - Jungle.exe: + "/Legend of Assassin - Jungle.exe": - when: - os: windows store: steam - /Legend of Assassin - Jungle.x86: + "/Legend of Assassin - Jungle.x86": - when: - os: linux store: steam steam: id: 929690 -'Legend of Assassin: Siberia': +"Legend of Assassin: Siberia": installDir: Legend of Assassin Siberia: {} launch: - /Legend of Assassin - Siberia.app/Contents/MacOS/Legend of Assassin - Siberia: + "/Legend of Assassin - Siberia.app/Contents/MacOS/Legend of Assassin - Siberia": - when: - os: mac store: steam - /Legend of Assassin - Siberia.exe: + "/Legend of Assassin - Siberia.exe": - when: - os: windows store: steam - /Legend of Assassin - Siberia.x86: + "/Legend of Assassin - Siberia.x86": - when: - os: linux store: steam @@ -301418,7 +302303,7 @@ Legend of Cenama: installDir: Legend of Cenama: {} launch: - /Legend of Cenama.exe: + "/Legend of Cenama.exe": - when: - os: windows store: steam @@ -301428,7 +302313,7 @@ Legend of Cina: installDir: Legend of Cina: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -301438,7 +302323,7 @@ Legend of Dragon Labyrinth: installDir: Legend of Dragon Labyrinth: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -301446,13 +302331,13 @@ Legend of Dragon Labyrinth: id: 883160 Legend of Dungeon: files: - /LegendofDungeon_Data/save.txt: + "/LegendofDungeon_Data/save.txt": tags: - save when: - os: windows - os: linux - /.config/unity3d/RobotLovesKitty/Legend of Dungeon/prefs: + "/.config/unity3d/RobotLovesKitty/Legend of Dungeon/prefs": tags: - config when: @@ -301460,20 +302345,20 @@ Legend of Dungeon: installDir: LegendofDungeon: {} launch: - /LegendofDungeon.app: + "/LegendofDungeon.app": - when: - os: mac store: steam - /LegendofDungeon.exe: + "/LegendofDungeon.exe": - when: - os: windows store: steam - /LegendofDungeon.x86: + "/LegendofDungeon.x86": - when: - os: linux store: steam - /LegendofDungeon_DirectToRift.exe: - - arguments: '-force-d3d11' + "/LegendofDungeon_DirectToRift.exe": + - arguments: "-force-d3d11" when: - os: windows store: steam @@ -301483,11 +302368,11 @@ Legend of Dungeon: - config steam: id: 238280 -'Legend of Dungeon: Masters': +"Legend of Dungeon: Masters": installDir: Legend of Dungeon Master: {} launch: - /LoDM.exe: + "/LoDM.exe": - when: - store: steam steam: @@ -301496,7 +302381,7 @@ Legend of Egypt - Pharaohs Garden: installDir: Legend of Egypt - Pharaohs Garden: {} launch: - /Legend of Egypt Pharaohs Garden_dx8sound_steam.exe: + "/Legend of Egypt Pharaohs Garden_dx8sound_steam.exe": - when: - os: windows store: steam @@ -301506,15 +302391,15 @@ Legend of Everything: installDir: Legend of Everything: {} launch: - /LegendofEverything.app: + "/LegendofEverything.app": - when: - os: mac store: steam - /LegendofEverything.exe: + "/LegendofEverything.exe": - when: - os: windows store: steam - /LegendofEverything.sh: + "/LegendofEverything.sh": - when: - os: linux store: steam @@ -301524,28 +302409,28 @@ Legend of Fae: installDir: Legend of Fae: {} launch: - /legend_of_fae.exe: + "/legend_of_fae.exe": - when: - store: steam steam: id: 109200 Legend of Faerghail: files: - /GAMES: + "/GAMES": tags: - save when: - os: dos - /ROST/ROST: + "/ROST/ROST": tags: - save when: - os: dos -'Legend of Fainn Dynasty: Battles of Beautiful Warlords': +"Legend of Fainn Dynasty: Battles of Beautiful Warlords": installDir: Legend of Fainn Dynasty ~Battles of Beautiful Warlords~: {} launch: - /faininbuden.exe: + "/faininbuden.exe": - when: - store: steam steam: @@ -301554,30 +302439,30 @@ Legend of Girl Friend And GDC: installDir: Legend of Girl Friend And GDC: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: id: 1030090 Legend of Grimrock: files: - /Library/Application Support/Almost Human/Legend of Grimrock: + "/Library/Application Support/Almost Human/Legend of Grimrock": tags: - config - save when: - os: mac - /Almost Human/Legend of Grimrock/*.sav: + "/Almost Human/Legend of Grimrock/*.sav": tags: - save when: - os: windows - /Almost Human/Legend of Grimrock/grimrock.cfg: + "/Almost Human/Legend of Grimrock/grimrock.cfg": tags: - config when: - os: windows - /Almost Human/Legend of Grimrock: + "/Almost Human/Legend of Grimrock": tags: - config - save @@ -301588,15 +302473,15 @@ Legend of Grimrock: installDir: Legend of Grimrock: {} launch: - /Grimrock.bin.x86: + "/Grimrock.bin.x86": - when: - os: linux store: steam - /Legend of Grimrock.app: + "/Legend of Grimrock.app": - when: - os: mac store: steam - /grimrock.exe: + "/grimrock.exe": - when: - os: windows store: steam @@ -301604,17 +302489,17 @@ Legend of Grimrock: id: 207170 Legend of Grimrock 2: files: - /Library/Application Support/Almost Human/Legend of Grimrock 2: + "/Library/Application Support/Almost Human/Legend of Grimrock 2": tags: - save when: - os: mac - /Almost Human/Legend of Grimrock 2/*.sav: + "/Almost Human/Legend of Grimrock 2/*.sav": tags: - save when: - os: windows - /Almost Human/Legend of Grimrock 2/grimrock.cfg: + "/Almost Human/Legend of Grimrock 2/grimrock.cfg": tags: - config when: @@ -301624,11 +302509,11 @@ Legend of Grimrock 2: installDir: Legend of Grimrock 2: {} launch: - /Legend of Grimrock 2.app: + "/Legend of Grimrock 2.app": - when: - os: mac store: steam - /grimrock2.exe: + "/grimrock2.exe": - when: - os: windows store: steam @@ -301638,7 +302523,7 @@ Legend of Hand: installDir: Legend of Hand: {} launch: - /Legend of Hand.exe: + "/Legend of Hand.exe": - when: - os: windows store: steam @@ -301646,7 +302531,7 @@ Legend of Hand: id: 595560 Legend of Himari: files: - /Legend_of_Himari: + "/Legend_of_Himari": tags: - save when: @@ -301654,11 +302539,11 @@ Legend of Himari: installDir: Legend of Himari: {} launch: - /Legacy/Legend of Himari.exe: + "/Legacy/Legend of Himari.exe": - when: - os: windows store: steam - /Legend of Himari.exe: + "/Legend of Himari.exe": - when: - os: windows store: steam @@ -301668,7 +302553,7 @@ Legend of Homebody: installDir: Legend of Homebody: {} launch: - /LoH.exe: + "/LoH.exe": - when: - os: windows store: steam @@ -301676,17 +302561,17 @@ Legend of Homebody: id: 744260 Legend of Kay Anniversary: files: - /Saved Games/legendofkay.exe: + "/Saved Games/legendofkay.exe": tags: - save when: - os: windows - /userdata//313810/remote/autocloud/save: + "/userdata//313810/remote/autocloud/save": tags: - save when: - store: steam - /kaiko/legendofkay/config.ini: + "/kaiko/legendofkay/config.ini": tags: - config when: @@ -301696,11 +302581,11 @@ Legend of Kay Anniversary: installDir: Legend of Kay Anniversary: {} launch: - /legendofkay.app/Contents/MacOS/legendofkay: + "/legendofkay.app/Contents/MacOS/legendofkay": - when: - os: mac store: steam - /legendofkay.exe: + "/legendofkay.exe": - when: - os: windows store: steam @@ -301708,22 +302593,22 @@ Legend of Kay Anniversary: id: 313810 Legend of Keepers: files: - /AppData/LocalLow/GoblinzStudio/LegendOfKeepers/legendofkeepers: + "/AppData/LocalLow/GoblinzStudio/LegendOfKeepers/legendofkeepers": tags: - save when: - os: windows - /Library/Application Support/GoblinzStudio/LegendOfKeepers/legendofkeepers: + "/Library/Application Support/GoblinzStudio/LegendOfKeepers/legendofkeepers": tags: - save when: - os: mac - /unity3d/GoblinzStudio/LegendOfKeepers/legendofkeepers: + "/unity3d/GoblinzStudio/LegendOfKeepers/legendofkeepers": tags: - save when: - os: linux - /unity3d/GoblinzStudio/LegendOfKeepers/legendofkeepers/settings.json: + "/unity3d/GoblinzStudio/LegendOfKeepers/legendofkeepers/settings.json": tags: - config when: @@ -301733,15 +302618,15 @@ Legend of Keepers: installDir: Legend of Keepers: {} launch: - /LegendOfKeepers.app: + "/LegendOfKeepers.app": - when: - os: mac store: steam - /LegendOfKeepers.exe: + "/LegendOfKeepers.exe": - when: - os: windows store: steam - /LegendOfKeepers.x86_64: + "/LegendOfKeepers.x86_64": - when: - os: linux store: steam @@ -301751,7 +302636,7 @@ Legend of Long Night: installDir: LegendofLongNight: {} launch: - /Legend of Long Night.exe: + "/Legend of Long Night.exe": - when: - os: windows store: steam @@ -301762,7 +302647,7 @@ Legend of Lusca: id: 1068330 Legend of Mana: files: - /My Games/Legend of Mana/Steam/: + "/My Games/Legend of Mana/Steam/": tags: - config - save @@ -301771,7 +302656,7 @@ Legend of Mana: installDir: Legend of Mana: {} launch: - /Legend of Mana.exe: + "/Legend of Mana.exe": - when: - bit: 64 os: windows @@ -301782,7 +302667,7 @@ Legend of Merchant: installDir: Legend of Merchant: {} launch: - /LoM.exe: + "/LoM.exe": - when: - os: windows store: steam @@ -301792,7 +302677,7 @@ Legend of Mercy: installDir: LOM神医魔导: {} launch: - /Launcher.exe: + "/Launcher.exe": - when: - os: windows store: steam @@ -301802,7 +302687,7 @@ Legend of Miro: installDir: Legend of Miro: {} launch: - /Legend of Miro.exe: + "/Legend of Miro.exe": - when: - os: windows store: steam @@ -301812,7 +302697,7 @@ Legend of Moros: installDir: Legend of Moros: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -301820,7 +302705,7 @@ Legend of Moros: id: 449770 Legend of Mysteria: files: - /*.rvdata2: + "/*.rvdata2": tags: - save when: @@ -301828,7 +302713,7 @@ Legend of Mysteria: installDir: Legend of Mysteria: {} launch: - /EQLauncher.exe: + "/EQLauncher.exe": - when: - store: steam steam: @@ -301837,15 +302722,15 @@ Legend of Numbers: installDir: LegendofNumbers: {} launch: - /lon.app: + "/lon.app": - when: - os: mac store: steam - /lon.exe: + "/lon.exe": - when: - os: windows store: steam - /lon.x86: + "/lon.x86": - when: - os: linux store: steam @@ -301855,8 +302740,8 @@ Legend of Traveller: installDir: Legend of Traveller: {} launch: - /RogueGame.exe: - - arguments: '-windowed' + "/RogueGame.exe": + - arguments: "-windowed" when: - bit: 64 os: windows @@ -301870,7 +302755,7 @@ Legend of the Assassin KAl: installDir: The legendary assassin KAL: {} launch: - /Legendary Assassin KAL.exe: + "/Legendary Assassin KAL.exe": - when: - store: steam steam: @@ -301879,11 +302764,11 @@ Legend of the Skyfish: installDir: Legend of the Skyfish: {} launch: - /Skyfish.app/Contents/MacOS/Skyfish: + "/Skyfish.app/Contents/MacOS/Skyfish": - when: - os: mac store: steam - /Skyfish.exe: + "/Skyfish.exe": - when: - os: windows store: steam @@ -301895,14 +302780,12 @@ Legend of the Sword: installDir: legendofthesword: {} launch: - /dosbox_windows/dosbox.exe: - - arguments: >- - .\\dosbox_windows\\dosbox -conf \"dosbox_legend_of_the_sword.conf\" -exit ^ -c \"mount c - ..\\legendofthesword\" ^ -c \"c:\" ^ -c \"Loadfix.com legend.exe E\" -noconsole -fullscreen -exit ^ + "/dosbox_windows/dosbox.exe": + - arguments: ".\\\\dosbox_windows\\\\dosbox -conf \\\"dosbox_legend_of_the_sword.conf\\\" -exit ^ -c \\\"mount c ..\\\\legendofthesword\\\" ^ -c \\\"c:\\\" ^ -c \\\"Loadfix.com legend.exe E\\\" -noconsole -fullscreen -exit ^" when: - os: windows store: steam - /runLegend.sh: + "/runLegend.sh": - when: - os: linux store: steam @@ -301912,14 +302795,14 @@ Legend of the Tetrarchs: installDir: Legend of the Tetrarchs: {} launch: - /Legend of the Tetrarchs.exe: + "/Legend of the Tetrarchs.exe": - when: - store: steam steam: id: 1040740 -'Legend: Hand of God': +"Legend: Hand of God": files: - /Legend - Hand of God: + "/Legend - Hand of God": tags: - config - save @@ -301928,22 +302811,22 @@ Legend of the Tetrarchs: installDir: Legend Hand of God: {} launch: - /legend.exe: + "/legend.exe": - when: - store: steam - /starter.exe: + "/starter.exe": - when: - store: steam steam: id: 12630 Legendary: files: - /My Games/Legendary/PandoraGame/Checkpoints: + "/My Games/Legendary/PandoraGame/Checkpoints": tags: - save when: - os: windows - /My Games/Legendary/PandoraGame/Config: + "/My Games/Legendary/PandoraGame/Config": tags: - config when: @@ -301951,32 +302834,32 @@ Legendary: installDir: Legendary: {} launch: - /binaries/Legendary.exe: + "/binaries/Legendary.exe": - when: - store: steam - workingDir: /binaries + workingDir: "/binaries" steam: id: 16730 Legendary Arcane: installDir: Legendary Arcane: {} launch: - /linux32/nw: + "/linux32/nw": - when: - bit: 32 os: linux store: steam - /linux64/nw: + "/linux64/nw": - when: - bit: 64 os: linux store: steam - /win32/nw.exe: + "/win32/nw.exe": - when: - bit: 32 os: windows store: steam - /win64/nw.exe: + "/win64/nw.exe": - when: - bit: 64 os: windows @@ -301987,17 +302870,17 @@ Legendary DXP: installDir: Legendary DXP: {} launch: - /Legendary.exe: + "/Legendary.exe": - when: - os: windows store: steam steam: id: 734020 -'Legendary Eleven: Epic Football': +"Legendary Eleven: Epic Football": installDir: Legendary Eleven: {} launch: - /LegendaryEleven.exe: + "/LegendaryEleven.exe": - when: - os: windows store: steam @@ -302011,7 +302894,7 @@ Legendary Gary: installDir: Legendary Gary: {} launch: - /TheGame.exe: + "/TheGame.exe": - when: - os: windows store: steam @@ -302021,7 +302904,7 @@ Legendary Heroes in the Three Kingdoms: installDir: sgyxlz: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -302036,7 +302919,7 @@ Legendary Mahjong: installDir: Legendary Mahjong: {} launch: - /Legendary Mahjong.exe: + "/Legendary Mahjong.exe": - when: - os: windows store: steam @@ -302046,11 +302929,11 @@ Legendary gun: installDir: Legendary gun: {} launch: - /play_CH.exe: + "/play_CH.exe": - when: - os: windows store: steam - /play_EN.exe: + "/play_EN.exe": - when: - os: windows store: steam @@ -302060,7 +302943,7 @@ Legends: installDir: Legends: {} launch: - /dosbox.exe: + "/dosbox.exe": - when: - os: windows store: steam @@ -302068,12 +302951,12 @@ Legends: id: 1134130 Legends of Aethereus: files: - /Settings.ini: + "/Settings.ini": tags: - config when: - os: windows - /AppData/LocalLow/Threegates/Legends of Aethereus: + "/AppData/LocalLow/Threegates/Legends of Aethereus": tags: - save when: @@ -302081,28 +302964,28 @@ Legends of Aethereus: installDir: LegendsOfAethereus: {} launch: - /LoA.exe: + "/LoA.exe": - when: - os: windows store: steam - /Loa.app: + "/Loa.app": - when: - os: mac store: steam - /Loa.x86: + "/Loa.x86": - when: - os: linux store: steam steam: id: 248410 -'Legends of Amberland: The Forgotten Crown': +"Legends of Amberland: The Forgotten Crown": files: - /Legends of Amberland/config.ini: + "/Legends of Amberland/config.ini": tags: - config when: - os: windows - /Legends of Amberland/save: + "/Legends of Amberland/save": tags: - save when: @@ -302112,7 +302995,7 @@ Legends of Aethereus: installDir: Legends of Amberland: {} launch: - /LegendsOfAmberland.exe: + "/LegendsOfAmberland.exe": - when: - os: windows store: steam @@ -302123,14 +303006,14 @@ Legends of Aria: Legends of Aria: {} steam: id: 594770 -'Legends of Atlantis: Exodus': +"Legends of Atlantis: Exodus": files: - /LegacyGames/Atlantis/config.vsc: + "/LegacyGames/Atlantis/config.vsc": tags: - config when: - os: windows - /LegacyGames/Atlantis/profile*.vsc: + "/LegacyGames/Atlantis/profile*.vsc": tags: - save when: @@ -302138,7 +303021,7 @@ Legends of Aria: installDir: Legends of Atlantis Exodus: {} launch: - /Game_Atlantis.exe: + "/Game_Atlantis.exe": - when: - os: windows store: steam @@ -302148,7 +303031,7 @@ Legends of Azulgar: installDir: Azulgar: {} launch: - /Azulgar.exe: + "/Azulgar.exe": - when: - os: windows store: steam @@ -302158,17 +303041,17 @@ Legends of Callasia: installDir: Legends of Callasia: {} launch: - /LegendsOfCallasia.app/Contents/MacOS/LegendsOfCallasia: + "/LegendsOfCallasia.app/Contents/MacOS/LegendsOfCallasia": - when: - os: mac store: steam - /LegendsOfCallasia.exe: + "/LegendsOfCallasia.exe": - when: - os: windows store: steam steam: id: 438920 -'Legends of Catalonia: The Land of Barcelona': +"Legends of Catalonia: The Land of Barcelona": installDir: Legends of Catalonia: {} steam: @@ -302177,17 +303060,17 @@ Legends of Dawn Reborn: installDir: Legends of Dawn Reborn: {} launch: - /system64/game_lod.exe: + "/system64/game_lod.exe": - when: - bit: 64 os: windows store: steam - workingDir: /system64 + workingDir: "/system64" steam: id: 403200 Legends of Eisenwald: files: - /Eisenwald/*.sav: + "/Eisenwald/*.sav": tags: - save when: @@ -302197,7 +303080,7 @@ Legends of Eisenwald: installDir: Eisenwald: {} launch: - /Eisenwald.exe: + "/Eisenwald.exe": - when: - os: windows store: steam @@ -302207,7 +303090,7 @@ Legends of Ellaria: installDir: Legends of Ellaria: {} launch: - /Legends of Ellaria.exe: + "/Legends of Ellaria.exe": - when: - bit: 64 os: windows @@ -302218,11 +303101,11 @@ Legends of Ethernal: installDir: Legends of Ethernal: {} launch: - /LegendsOfEthernal.app/Contents/MacOS/Legends of Ethernal: + "/LegendsOfEthernal.app/Contents/MacOS/Legends of Ethernal": - when: - os: mac store: steam - /LegendsOfEthernal.exe: + "/LegendsOfEthernal.exe": - when: - bit: 64 os: windows @@ -302233,17 +303116,17 @@ Legends of Iona RPG: installDir: Legends Of Iona RPG: {} launch: - /Legends of Iona.exe: + "/Legends of Iona.exe": - when: - os: windows store: steam steam: id: 668730 -'Legends of Iskaria: Days of Thieves': +"Legends of Iskaria: Days of Thieves": installDir: Legends of Iskaria: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -302253,11 +303136,11 @@ Legends of Kingdom Rush: installDir: Legends of Kingdom Rush: {} launch: - /legends.app: + "/legends.app": - when: - os: mac store: steam - /legends.exe: + "/legends.exe": - when: - os: windows store: steam @@ -302267,7 +303150,7 @@ Legends of Koyannis: installDir: Legends of Koyannis: {} launch: - /LegendsofKoyannis.exe: + "/LegendsofKoyannis.exe": - when: - os: windows store: steam @@ -302275,7 +303158,7 @@ Legends of Koyannis: id: 933590 Legends of Might and Magic: files: - /autoexec.cfg: + "/autoexec.cfg": tags: - config when: @@ -302284,14 +303167,14 @@ Legends of Might and Magic: HKEY_LOCAL_MACHINE/SOFTWARE/WOW6432Node/New World Computing/Legends of Might and Magic/1.0: tags: - config -'Legends of Murder II: Grey Haven': +"Legends of Murder II: Grey Haven": gog: id: 1757409730 installDir: Legends of Murder Collection: {} steam: id: 1749710 -'Legends of Murder: Volume 1 - Stonedale Castle': +"Legends of Murder: Volume 1 - Stonedale Castle": gog: id: 1757409730 installDir: @@ -302302,7 +303185,7 @@ Legends of Pegasus: installDir: Legends of Pegasus: {} launch: - /LoP.exe: + "/LoP.exe": - when: - store: steam steam: @@ -302311,40 +303194,40 @@ Legends of Persia: installDir: Legends of Persia: {} launch: - /bin/release/LoPLauncher.exe: + "/bin/release/LoPLauncher.exe": - when: - store: steam - workingDir: /bin/release - /bin/release/game.exe: + workingDir: "/bin/release" + "/bin/release/game.exe": - when: - store: steam - workingDir: /bin/release + workingDir: "/bin/release" steam: id: 301220 Legends of Pixelia: installDir: Legends of Pixelia: {} launch: - /Legends of Pixelia.app: + "/Legends of Pixelia.app": - when: - os: mac store: steam - /Legends of Pixelia.exe: + "/Legends of Pixelia.exe": - when: - bit: 64 os: windows store: steam - workingDir: /64bit + workingDir: "/64bit" - when: - bit: 32 os: windows store: steam - /Legends of Pixelia.x86: + "/Legends of Pixelia.x86": - when: - bit: 32 os: linux store: steam - /Legends of Pixelia.x86_64: + "/Legends of Pixelia.x86_64": - when: - bit: 64 os: linux @@ -302356,14 +303239,14 @@ Legends of Runeterra: HKEY_CURRENT_USER/Software/Riot Games/Legends of Runeterra: tags: - config -'Legends of Solitaire: Curse of the Dragons': +"Legends of Solitaire: Curse of the Dragons": files: - /The Revills Games/Legends of Solitaire 2 SE: + "/The Revills Games/Legends of Solitaire 2 SE": tags: - save when: - os: windows - /The Revills Games/Legends of Solitaire 2 SE/LoSCotD.ini: + "/The Revills Games/Legends of Solitaire 2 SE/LoSCotD.ini": tags: - config when: @@ -302371,25 +303254,25 @@ Legends of Runeterra: installDir: Legends of Solitaire Curse of the Dragons: {} launch: - /LoSCotD.exe: + "/LoSCotD.exe": - when: - os: windows store: steam steam: id: 399040 -'Legends of Talia: Arcadia': +"Legends of Talia: Arcadia": installDir: Legends of Talia Arcadia: {} launch: - /Arcadia.app: + "/Arcadia.app": - when: - os: mac store: steam - /Arcadia.exe: + "/Arcadia.exe": - when: - os: windows store: steam - /Arcadia.sh: + "/Arcadia.sh": - when: - os: linux store: steam @@ -302399,7 +303282,7 @@ Legends of Time: installDir: Legends of Time: {} launch: - /Legends of Time.exe: + "/Legends of Time.exe": - when: - os: windows store: steam @@ -302407,22 +303290,22 @@ Legends of Time: id: 514400 Legends of Valour: files: - /CHAR**.DAT: + "/CHAR**.DAT": tags: - save when: - os: dos - /LOV1_*.SAV: + "/LOV1_*.SAV": tags: - save when: - os: dos - /SNDDVR: + "/SNDDVR": tags: - config when: - os: dos - /_SAVE_0.LBM: + "/_SAVE_0.LBM": tags: - save when: @@ -302431,17 +303314,17 @@ Legends of the Universe - Cosmic Bounty: installDir: Legends of the Universe - Cosmic Bounty: {} launch: - /Legends of the Universe - Cosmic Bounty.exe: + "/Legends of the Universe - Cosmic Bounty.exe": - when: - os: windows store: steam steam: id: 698040 -'Legends of the Universe: StarCore': +"Legends of the Universe: StarCore": installDir: starcore: {} launch: - /Legends of the Universe - Starcore.exe: + "/Legends of the Universe - Starcore.exe": - when: - os: windows store: steam @@ -302451,7 +303334,7 @@ Legie: installDir: LEGIE: {} launch: - /legie.exe: + "/legie.exe": - when: - os: windows store: steam @@ -302459,12 +303342,12 @@ Legie: id: 426050 Legion: files: - /Save Games: + "/Save Games": tags: - save when: - os: windows - /data: + "/data": tags: - config when: @@ -302472,7 +303355,7 @@ Legion: installDir: Legion: {} launch: - /Launcher.exe: + "/Launcher.exe": - when: - store: steam steam: @@ -302481,7 +303364,7 @@ Legion 51: installDir: Legion 51: {} launch: - /Legion 51.exe: + "/Legion 51.exe": - when: - os: windows store: steam @@ -302491,11 +303374,11 @@ Legion TD 2: installDir: Legion TD 2: {} launch: - /Legion TD 2.app/Contents/MacOS/Legion TD 2: + "/Legion TD 2.app/Contents/MacOS/Legion TD 2": - when: - os: mac store: steam - /Legion TD 2.exe: + "/Legion TD 2.exe": - when: - os: windows store: steam @@ -302505,7 +303388,7 @@ Legion Tale: installDir: Legion Tale: {} launch: - /Legion Tale.exe: + "/Legion Tale.exe": - when: - os: windows store: steam @@ -302515,17 +303398,17 @@ Legion of Scorn: installDir: Legion of Scorn: {} launch: - /Legion of Scorn.exe: + "/Legion of Scorn.exe": - when: - os: windows store: steam steam: id: 1073710 -Legion's Crawl: +"Legion's Crawl": installDir: - Legion's Crawl: {} + "Legion's Crawl": {} launch: - /Legion's Crawl.exe: + "/Legion's Crawl.exe": - when: - os: windows store: steam @@ -302540,7 +303423,7 @@ Legions at War: installDir: Legions At War: {} launch: - /LAW.exe: + "/LAW.exe": - when: - os: windows store: steam @@ -302550,15 +303433,15 @@ Legions of Ashworld: installDir: Legions of Ashworld: {} launch: - /Legions of Ashworld: + "/Legions of Ashworld": - when: - os: linux store: steam - /Legions of Ashworld.app: + "/Legions of Ashworld.app": - when: - os: mac store: steam - /Legions of Ashworld.exe: + "/Legions of Ashworld.exe": - when: - os: windows store: steam @@ -302568,7 +303451,7 @@ Legions of Steel: installDir: Legions of Steel: {} launch: - /autorun.exe: + "/autorun.exe": - when: - store: steam steam: @@ -302577,44 +303460,44 @@ Legions of Tyrandel: installDir: Legions of Tyrandel: {} launch: - /LegionsOfTyrandel.exe: + "/LegionsOfTyrandel.exe": - when: - os: windows store: steam steam: id: 537020 -'Legions: Overdrive': +"Legions: Overdrive": files: - /legions/preferences: + "/legions/preferences": tags: - config when: - os: windows -'Legionwood 1: Tale of the Two Swords': +"Legionwood 1: Tale of the Two Swords": installDir: Legionwood: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam steam: id: 461820 -'Legionwood 2: Rise of the Eternal''s Realm - Director''s Cut': +"Legionwood 2: Rise of the Eternal's Realm - Director's Cut": files: - /Save*.rvdata2: + "/Save*.rvdata2": tags: - save when: - os: windows installDir: - Legionwood 2 - Rise of the Eternal's Realm: {} + "Legionwood 2 - Rise of the Eternal's Realm": {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam - /Legionwood 2.app: + "/Legionwood 2.app": - when: - os: mac store: steam @@ -302622,12 +303505,12 @@ Legions of Tyrandel: id: 290460 Lego 2K Drive: files: - /My Games/Artemis/Saved/Config/WindowsClient: + "/My Games/Artemis/Saved/Config/WindowsClient": tags: - config when: - os: windows - /My Games/Artemis/Saved/SaveGames: + "/My Games/Artemis/Saved/SaveGames": tags: - save when: @@ -302635,36 +303518,36 @@ Lego 2K Drive: installDir: LEGO2KDrive: {} launch: - /LEGO2KDrive.exe: + "/LEGO2KDrive.exe": - when: - store: steam steam: id: 1451810 Lego Alpha Team: files: - /Game.txt: + "/Game.txt": tags: - config when: - os: windows -'Lego Batman 2: DC Super Heroes': +"Lego Batman 2: DC Super Heroes": files: - /Library/Application Support/Feral Interactive/LEGO Batman 2: + "/Library/Application Support/Feral Interactive/LEGO Batman 2": tags: - config when: - os: mac - /Library/Application Support/Feral Interactive/LEGO Batman 2/SavedGames: + "/Library/Application Support/Feral Interactive/LEGO Batman 2/SavedGames": tags: - save when: - os: mac - /Warner Bros. Interactive Entertainment/LEGO Batman 2: + "/Warner Bros. Interactive Entertainment/LEGO Batman 2": tags: - config when: - os: windows - /Warner Bros. Interactive Entertainment/LEGO Batman 2/SavedGames: + "/Warner Bros. Interactive Entertainment/LEGO Batman 2/SavedGames": tags: - save when: @@ -302674,35 +303557,35 @@ Lego Alpha Team: installDir: LEGO Batman 2: {} launch: - /LEGOBatman2.exe: - - arguments: '' + "/LEGOBatman2.exe": + - arguments: "" when: - store: steam steam: id: 213330 -'Lego Batman 3: Beyond Gotham': +"Lego Batman 3: Beyond Gotham": files: - /Library/Application Support/Feral Interactive/LEGO Batman 3: + "/Library/Application Support/Feral Interactive/LEGO Batman 3": tags: - config when: - os: mac - /Library/Application Support/Feral Interactive/LEGO Batman 3/SaveData: + "/Library/Application Support/Feral Interactive/LEGO Batman 3/SaveData": tags: - save when: - os: mac - /userdata//313690/remote/savedgames: + "/userdata//313690/remote/savedgames": tags: - save when: - store: steam - /Warner Bros. Interactive Entertainment/LEGO Batman 3 Beyond Gotham: + "/Warner Bros. Interactive Entertainment/LEGO Batman 3 Beyond Gotham": tags: - config when: - os: windows - /Warner Bros. Interactive Entertainment/LEGO Batman 3 Beyond Gotham/SavedGames: + "/Warner Bros. Interactive Entertainment/LEGO Batman 3 Beyond Gotham/SavedGames": tags: - save when: @@ -302716,35 +303599,35 @@ Lego Alpha Team: installDir: LEGO Batman 3 Beyond Gotham: {} launch: - /LEGO Batman 3.app: + "/LEGO Batman 3.app": - when: - os: mac store: steam - /LEGOBatman3.exe: + "/LEGOBatman3.exe": - when: - bit: 32 os: windows store: steam steam: id: 313690 -'Lego Batman: The Videogame': +"Lego Batman: The Videogame": files: - /Library/Preferences/Feral Interactive/Lego Batman: + "/Library/Preferences/Feral Interactive/Lego Batman": tags: - config when: - os: mac - /Library/Preferences/Feral Interactive/Lego Batman/Saved Games: + "/Library/Preferences/Feral Interactive/Lego Batman/Saved Games": tags: - save when: - os: mac - /Warner Bros. Interactive Entertainment/LEGO Batman: + "/Warner Bros. Interactive Entertainment/LEGO Batman": tags: - config when: - os: windows - /Warner Bros. Interactive Entertainment/LEGO Batman/Saved Games: + "/Warner Bros. Interactive Entertainment/LEGO Batman/Saved Games": tags: - save when: @@ -302754,11 +303637,11 @@ Lego Alpha Team: installDir: Lego Batman: {} launch: - /LEGO Batman.app: + "/LEGO Batman.app": - when: - os: mac store: steam - /legobatman.exe: + "/legobatman.exe": - when: - os: windows store: steam @@ -302768,7 +303651,7 @@ Lego Brawls: installDir: LEGO® Brawls: {} launch: - /Brawls.exe: + "/Brawls.exe": - when: - os: windows store: steam @@ -302776,7 +303659,7 @@ Lego Brawls: id: 1731460 Lego Bricktales: files: - /AppData/LocalLow/ClockStone Software GmbH/LEGO Bricktales: + "/AppData/LocalLow/ClockStone Software GmbH/LEGO Bricktales": tags: - config - save @@ -302787,41 +303670,41 @@ Lego Bricktales: installDir: LEGO Bricktales: {} launch: - /LEGO_Bricktales.app: + "/LEGO_Bricktales.app": - when: - os: mac store: steam - /LEGO_Bricktales.exe: + "/LEGO_Bricktales.exe": - when: - bit: 64 os: windows store: steam - /LEGO_Bricktales.x86_64: + "/LEGO_Bricktales.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 1898290 -Lego Builder's Journey: +"Lego Builder's Journey": installDir: - LEGO Builder's Journey: {} + "LEGO Builder's Journey": {} launch: - /Builder's Journey.exe: + "/Builder's Journey.exe": - when: - os: windows store: steam - - arguments: '-force-d3d11' + - arguments: "-force-d3d11" when: - os: windows store: steam - /LW/Builder's Journey.exe: - - arguments: '-force-d3d11' + "/LW/Builder's Journey.exe": + - arguments: "-force-d3d11" when: - os: windows store: steam registry: - HKEY_CURRENT_USER/Software/LEGO System A/S/Builder's Journey: + "HKEY_CURRENT_USER/Software/LEGO System A/S/Builder's Journey": tags: - config - save @@ -302829,24 +303712,24 @@ Lego Builder's Journey: id: 1544360 Lego Chess: files: - /profiles: + "/profiles": tags: - save when: - os: windows - /profiles/prof1.lcp: + "/profiles/prof1.lcp": tags: - config when: - os: windows Lego City Undercover: files: - /userdata//578330/remote/savedgames: + "/userdata//578330/remote/savedgames": tags: - save when: - store: steam - /Warner Bros. Interactive Entertainment/LEGO City Undercover: + "/Warner Bros. Interactive Entertainment/LEGO City Undercover": tags: - config when: @@ -302854,43 +303737,43 @@ Lego City Undercover: installDir: LEGO City Undercover: {} launch: - /LEGOLCUR_DX11.exe: + "/LEGOLCUR_DX11.exe": - when: - bit: 64 os: windows store: steam steam: id: 578330 -'Lego Creator: Knights'' Kingdom': +"Lego Creator: Knights' Kingdom": files: - /Players: + "/Players": tags: - save when: - os: windows - /options.ocf: + "/options.ocf": tags: - config when: - os: windows Lego DC Super-Villains: files: - /Library/Application Support/Feral Interactive/LEGO DC Super-Villains: + "/Library/Application Support/Feral Interactive/LEGO DC Super-Villains": tags: - config when: - os: mac - /Library/Application Support/Feral Interactive/LEGO DC Super-Villains/SaveData/SAVEDGAMES: + "/Library/Application Support/Feral Interactive/LEGO DC Super-Villains/SaveData/SAVEDGAMES": tags: - save when: - os: mac - /Warner Bros. Interactive Entertainment/LEGO DC Super-villains/PCCONFIG.TXT: + "/Warner Bros. Interactive Entertainment/LEGO DC Super-villains/PCCONFIG.TXT": tags: - config when: - os: windows - /Warner Bros. Interactive Entertainment/LEGO DC Super-villains/SAVEDGAMES: + "/Warner Bros. Interactive Entertainment/LEGO DC Super-villains/SAVEDGAMES": tags: - save when: @@ -302911,35 +303794,35 @@ Lego DC Super-Villains: installDir: LEGO DC Super-Villains: {} launch: - /LEGO DC Super-Villains.app: + "/LEGO DC Super-Villains.app": - when: - os: mac store: steam - /LEGO DC Super-villains_DX11.exe: + "/LEGO DC Super-villains_DX11.exe": - when: - bit: 64 os: windows store: steam steam: id: 829110 -'Lego Harry Potter: Years 1-4': +"Lego Harry Potter: Years 1-4": files: - /Library/Preferences/Feral Interactive/LEGO Harry Potter: + "/Library/Preferences/Feral Interactive/LEGO Harry Potter": tags: - config when: - os: mac - /Library/Preferences/Feral Interactive/LEGO Harry Potter/SavedGames: + "/Library/Preferences/Feral Interactive/LEGO Harry Potter/SavedGames": tags: - save when: - os: mac - /WB Games/LEGO® Harry Potter™/SavedGames: + "/WB Games/LEGO® Harry Potter™/SavedGames": tags: - save when: - os: windows - /WB Games/LEGO® Harry Potter™/pcconfig.txt: + "/WB Games/LEGO® Harry Potter™/pcconfig.txt": tags: - config when: @@ -302949,29 +303832,29 @@ Lego DC Super-Villains: installDir: LEGO Harry Potter: {} launch: - /LEGOHarryPotter.exe: + "/LEGOHarryPotter.exe": - when: - store: steam steam: id: 21130 -'Lego Harry Potter: Years 5-7': +"Lego Harry Potter: Years 5-7": files: - /Library/Application Support/Feral Interactive/LEGO Harry Potter Years 5-7: + "/Library/Application Support/Feral Interactive/LEGO Harry Potter Years 5-7": tags: - config when: - os: mac - /Library/Application Support/Feral Interactive/LEGO Harry Potter Years 5-7/SavedGames: + "/Library/Application Support/Feral Interactive/LEGO Harry Potter Years 5-7/SavedGames": tags: - save when: - os: mac - /WB Games/LEGO Harry Potter 2: + "/WB Games/LEGO Harry Potter 2": tags: - config when: - os: windows - /WB Games/LEGO Harry Potter 2/SavedGames: + "/WB Games/LEGO Harry Potter 2/SavedGames": tags: - save when: @@ -302981,29 +303864,29 @@ Lego DC Super-Villains: installDir: LEGO Harry Potter Years 5-7: {} launch: - /harry2.exe: + "/harry2.exe": - when: - store: steam steam: id: 204120 -'Lego Indiana Jones 2: The Adventure Continues': +"Lego Indiana Jones 2: The Adventure Continues": files: - /Library/Application Support/Feral Interactive/LEGO Indiana Jones 2: + "/Library/Application Support/Feral Interactive/LEGO Indiana Jones 2": tags: - config when: - os: mac - /Library/Application Support/Feral Interactive/LEGO Indiana Jones 2/SavedGames: + "/Library/Application Support/Feral Interactive/LEGO Indiana Jones 2/SavedGames": tags: - save when: - os: mac - /LucasArts/LEGO® Indiana Jones™ 2/SavedGames: + "/LucasArts/LEGO® Indiana Jones™ 2/SavedGames": tags: - save when: - os: windows - /LucasArts/LEGO® Indiana Jones™ 2/pcconfig.txt: + "/LucasArts/LEGO® Indiana Jones™ 2/pcconfig.txt": tags: - config when: @@ -303013,29 +303896,29 @@ Lego DC Super-Villains: installDir: Lego Indiana Jones 2: {} launch: - /LEGOIndy2.exe: + "/LEGOIndy2.exe": - when: - store: steam steam: id: 32450 -'Lego Indiana Jones: The Original Adventures': +"Lego Indiana Jones: The Original Adventures": files: - /Library/Preferences/Lucasarts/LEGOIndianaJones: + "/Library/Preferences/Lucasarts/LEGOIndianaJones": tags: - config when: - os: mac - /Library/Preferences/Lucasarts/LEGOIndianaJones/SavedGames: + "/Library/Preferences/Lucasarts/LEGOIndianaJones/SavedGames": tags: - save when: - os: mac - /LucasArts/LEGOIndianaJones: + "/LucasArts/LEGOIndianaJones": tags: - config when: - os: windows - /LucasArts/LEGOIndianaJones/SavedGames: + "/LucasArts/LEGOIndianaJones/SavedGames": tags: - save when: @@ -303045,7 +303928,7 @@ Lego DC Super-Villains: installDir: LEGO Indiana Jones The Original Adventures: {} launch: - /LEGOIndy.exe: + "/LEGOIndy.exe": - when: - store: steam steam: @@ -303055,36 +303938,36 @@ Lego Island: HKEY_LOCAL_MACHINE/SOFTWARE/WOW6432Node/Mindscape/LEGO Island: tags: - config -'Lego Island 2: The Brickster''s Revenge': +"Lego Island 2: The Brickster's Revenge": files: - /_data/Save00.lgo: + "/_data/Save00.lgo": tags: - save when: - os: windows - /_data/Settings.set: + "/_data/Settings.set": tags: - config when: - os: windows Lego Jurassic World: files: - /Library/Application/ Support/Feral/ Interactive/LEGO/ Jurassic/ World: + "/Library/Application/ Support/Feral/ Interactive/LEGO/ Jurassic/ World": tags: - config when: - os: mac - /Library/Application/ Support/Feral/ Interactive/LEGO/ Jurassic/ World/SaveData: + "/Library/Application/ Support/Feral/ Interactive/LEGO/ Jurassic/ World/SaveData": tags: - save when: - os: mac - /userdata//352400: + "/userdata//352400": tags: - save when: - store: steam - /Warner Bros. Interactive Entertainment/LEGO Jurassic World/pcconfig.txt: + "/Warner Bros. Interactive Entertainment/LEGO Jurassic World/pcconfig.txt": tags: - config when: @@ -303092,12 +303975,12 @@ Lego Jurassic World: installDir: LEGO Jurassic World: {} launch: - /LEGO Jurassic World.app: + "/LEGO Jurassic World.app": - when: - bit: 64 os: mac store: steam - /LEGOJurassicWorld.exe: + "/LEGOJurassicWorld.exe": - when: - bit: 32 os: windows @@ -303106,40 +303989,40 @@ Lego Jurassic World: id: 352400 Lego Loco: files: - /Exe/LEGO.INI: + "/Exe/LEGO.INI": tags: - config when: - os: windows - /art-res: + "/art-res": tags: - save when: - os: windows - /art-res/EE.INI: + "/art-res/EE.INI": tags: - config when: - os: windows Lego Marvel Super Heroes: files: - /Library/Application Support/Feral Interactive/LEGO Marvel Super Heroes: + "/Library/Application Support/Feral Interactive/LEGO Marvel Super Heroes": tags: - config when: - os: mac - /Library/Application Support/Feral Interactive/LEGO Marvel Super Heroes/SaveData: + "/Library/Application Support/Feral Interactive/LEGO Marvel Super Heroes/SaveData": tags: - save when: - os: mac - /userdata//249130/remote/savedgames: + "/userdata//249130/remote/savedgames": tags: - save when: - os: windows store: steam - /Warner Bros. Interactive Entertainment/LEGO MARVEL Super Heroes: + "/Warner Bros. Interactive Entertainment/LEGO MARVEL Super Heroes": tags: - config when: @@ -303147,11 +304030,11 @@ Lego Marvel Super Heroes: installDir: LEGO Marvel Super Heroes: {} launch: - /LEGO Marvel Super Heroes.app: + "/LEGO Marvel Super Heroes.app": - when: - os: mac store: steam - /LEGOMarvel.exe: + "/LEGOMarvel.exe": - when: - os: windows store: steam @@ -303159,22 +304042,22 @@ Lego Marvel Super Heroes: id: 249130 Lego Marvel Super Heroes 2: files: - /Library/Application Support/Feral Interactive/LEGO Marvel Super Heroes 2: + "/Library/Application Support/Feral Interactive/LEGO Marvel Super Heroes 2": tags: - config when: - os: mac - /Library/Application Support/Feral Interactive/LEGO Marvel Super Heroes 2/SaveData: + "/Library/Application Support/Feral Interactive/LEGO Marvel Super Heroes 2/SaveData": tags: - save when: - os: mac - /Warner Bros. Interactive Entertainment/LEGO Marvel Super Heroes 2: + "/Warner Bros. Interactive Entertainment/LEGO Marvel Super Heroes 2": tags: - config when: - os: windows - /Warner Bros. Interactive Entertainment/LEGO Marvel Super Heroes 2/SAVEDGAMES: + "/Warner Bros. Interactive Entertainment/LEGO Marvel Super Heroes 2/SAVEDGAMES": tags: - save when: @@ -303182,77 +304065,77 @@ Lego Marvel Super Heroes 2: installDir: LEGO Marvel Super Heroes 2: {} launch: - /LEGO Marvel Super Heroes 2.app: + "/LEGO Marvel Super Heroes 2.app": - when: - os: mac store: steam - /LEGOMARVEL2_DX11.exe: + "/LEGOMARVEL2_DX11.exe": - when: - bit: 64 os: windows store: steam steam: id: 647830 -Lego Marvel's Avengers: +"Lego Marvel's Avengers": files: - /Library/Application Support/Feral Interactive/LEGO Marvel's Avengers: + "/Library/Application Support/Feral Interactive/LEGO Marvel's Avengers": tags: - config when: - os: mac - /Library/Application Support/Feral Interactive/LEGO Marvel's Avengers/SaveData: + "/Library/Application Support/Feral Interactive/LEGO Marvel's Avengers/SaveData": tags: - save when: - os: mac - /userdata//405310/remote/savedgames: + "/userdata//405310/remote/savedgames": tags: - save when: - os: windows store: steam - /Warner Bros. Interactive Entertainment/LEGO MARVEL's Avengers: + "/Warner Bros. Interactive Entertainment/LEGO MARVEL's Avengers": tags: - config when: - os: windows installDir: - LEGO Marvel's Avengers: {} + "LEGO Marvel's Avengers": {} launch: - /LEGO Marvels Avengers.app: + "/LEGO Marvels Avengers.app": - when: - bit: 64 os: mac store: steam - /LEGOMarvelAvengers.exe: + "/LEGOMarvelAvengers.exe": - when: - os: windows store: steam steam: id: 405310 -'Lego Pirates of the Caribbean: The Video Game': +"Lego Pirates of the Caribbean: The Video Game": files: - /Library/Application Support/DisneyInteractiveStudios/LEGOPirates: + "/Library/Application Support/DisneyInteractiveStudios/LEGOPirates": tags: - config when: - os: mac - /Library/Application Support/DisneyInteractiveStudios/LEGOPirates/SavedGames: + "/Library/Application Support/DisneyInteractiveStudios/LEGOPirates/SavedGames": tags: - save when: - os: mac - /userdata//311770: + "/userdata//311770": tags: - save when: - store: steam - /DisneyInteractiveStudios/LEGOPirates: + "/DisneyInteractiveStudios/LEGOPirates": tags: - config when: - os: windows - /DisneyInteractiveStudios/LEGOPirates/SavedGames: + "/DisneyInteractiveStudios/LEGOPirates/SavedGames": tags: - save when: @@ -303262,14 +304145,14 @@ Lego Marvel's Avengers: installDir: LEGO® Pirates of the Caribbean The Video Game: {} launch: - /LEGOPirates.exe: + "/LEGOPirates.exe": - when: - store: steam steam: id: 311770 Lego Racers: files: - /Save: + "/Save": tags: - config - save @@ -303277,7 +304160,7 @@ Lego Racers: - os: windows Lego Racers 2: files: - /games/LEGO Racers 2/Saved Games: + "/games/LEGO Racers 2/Saved Games": tags: - config - save @@ -303285,7 +304168,7 @@ Lego Racers 2: - os: windows Lego Rock Raiders: files: - /Data/Save: + "/Data/Save": tags: - save when: @@ -303294,32 +304177,32 @@ Lego Rock Raiders: HKEY_LOCAL_MACHINE/SOFTWARE/Lego Media/Games/Rock Raiders: tags: - config -'Lego Star Wars II: The Original Trilogy': +"Lego Star Wars II: The Original Trilogy": files: - /LucasArts/LEGO Star Wars II: + "/LucasArts/LEGO Star Wars II": tags: - config - save when: - os: windows -'Lego Star Wars III: The Clone Wars': +"Lego Star Wars III: The Clone Wars": files: - /Library/Application Support/Feral Interactive/LEGO Star Wars III - The Clone Wars: + "/Library/Application Support/Feral Interactive/LEGO Star Wars III - The Clone Wars": tags: - config when: - os: mac - /Library/Application Support/Feral Interactive/LEGO Star Wars III - The Clone Wars/SavedGames: + "/Library/Application Support/Feral Interactive/LEGO Star Wars III - The Clone Wars/SavedGames": tags: - save when: - os: mac - /Lucasarts/LEGOStarWarsIII: + "/Lucasarts/LEGOStarWarsIII": tags: - config when: - os: windows - /Lucasarts/LEGOStarWarsIII/SavedGames: + "/Lucasarts/LEGOStarWarsIII/SavedGames": tags: - save when: @@ -303329,39 +304212,39 @@ Lego Rock Raiders: installDir: Lego Star Wars III - The Clone Wars: {} launch: - /LEGOCloneWars.exe: + "/LEGOCloneWars.exe": - when: - store: steam steam: id: 32510 -'Lego Star Wars: The Complete Saga': +"Lego Star Wars: The Complete Saga": files: - /Library/Application Support/Feral Interactive/LEGO Star Wars Saga: + "/Library/Application Support/Feral Interactive/LEGO Star Wars Saga": tags: - config when: - os: mac - /Library/Application Support/Feral Interactive/LEGO Star Wars Saga/SaveData: + "/Library/Application Support/Feral Interactive/LEGO Star Wars Saga/SaveData": tags: - save when: - os: mac - /Library/Application Support/Feral Interactive/LEGO Star Wars Saga/VFS/User/AppData/Roaming/LucasArts/LEGO Star Wars - The Complete Saga/SavedGames: + "/Library/Application Support/Feral Interactive/LEGO Star Wars Saga/VFS/User/AppData/Roaming/LucasArts/LEGO Star Wars - The Complete Saga/SavedGames": tags: - save when: - os: mac - /Library/Preferences/com.feralinteractive.saga.plist: + "/Library/Preferences/com.feralinteractive.saga.plist": tags: - config when: - os: mac - /LucasArts/LEGO Star Wars - The Complete Saga: + "/LucasArts/LEGO Star Wars - The Complete Saga": tags: - config when: - os: windows - /LucasArts/LEGO Star Wars - The Complete Saga/SavedGames: + "/LucasArts/LEGO Star Wars - The Complete Saga/SavedGames": tags: - save when: @@ -303371,39 +304254,39 @@ Lego Rock Raiders: installDir: Lego Star Wars Saga: {} launch: - /LEGO Star Wars Saga.app: + "/LEGO Star Wars Saga.app": - when: - os: mac store: steam - /LEGOStarWarsSaga.exe: + "/LEGOStarWarsSaga.exe": - when: - os: windows store: steam steam: id: 32440 -'Lego Star Wars: The Force Awakens': +"Lego Star Wars: The Force Awakens": files: - /Library/Application Support/Feral Interactive/LEGO STAR WARS - TFA: + "/Library/Application Support/Feral Interactive/LEGO STAR WARS - TFA": tags: - config when: - os: mac - /Library/Application Support/Feral Interactive/LEGO STAR WARS - TFA/SaveData: + "/Library/Application Support/Feral Interactive/LEGO STAR WARS - TFA/SaveData": tags: - save when: - os: mac - /userdata//438640/remote/savedgames: + "/userdata//438640/remote/savedgames": tags: - save when: - store: steam - /Warner Bros. Interactive Entertainment/LEGO STAR WARS The Force Awakens/Mappings.dat: + "/Warner Bros. Interactive Entertainment/LEGO STAR WARS The Force Awakens/Mappings.dat": tags: - config when: - os: windows - /Warner Bros. Interactive Entertainment/LEGO STAR WARS The Force Awakens/PCCONFIG.TXT: + "/Warner Bros. Interactive Entertainment/LEGO STAR WARS The Force Awakens/PCCONFIG.TXT": tags: - config when: @@ -303411,30 +304294,30 @@ Lego Rock Raiders: installDir: LEGO STAR WARS The Force Awakens: {} launch: - /LEGO Star Wars The Force Awakens.app: + "/LEGO Star Wars The Force Awakens.app": - when: - os: mac store: steam - /LEGOSWTFA.exe: + "/LEGOSWTFA.exe": - when: - bit: 64 os: windows store: steam steam: id: 438640 -'Lego Star Wars: The Skywalker Saga': +"Lego Star Wars: The Skywalker Saga": files: - /Warner Bros. Interactive Entertainment/LEGO Star Wars - The Skywalker Saga/PCCONFIG.txt: + "/Warner Bros. Interactive Entertainment/LEGO Star Wars - The Skywalker Saga/PCCONFIG.txt": tags: - config when: - os: windows - /Warner Bros. Interactive Entertainment/LEGO Star Wars - The Skywalker Saga/SAVEDGAMES: + "/Warner Bros. Interactive Entertainment/LEGO Star Wars - The Skywalker Saga/SAVEDGAMES": tags: - save when: - os: windows - /Packages/WarnerBros.Interactive.LEGOStarWarsTheSkywalkerSag_ktmk1xygcecda/SystemAppData/wgs: + "/Packages/WarnerBros.Interactive.LEGOStarWarsTheSkywalkerSag_ktmk1xygcecda/SystemAppData/wgs": tags: - save when: @@ -303443,43 +304326,43 @@ Lego Rock Raiders: installDir: LEGO Star Wars - The Skywalker Saga: {} launch: - /LEGOSTARWARSSKYWALKERSAGA_DX11.exe: + "/LEGOSTARWARSSKYWALKERSAGA_DX11.exe": - when: - bit: 64 os: windows store: steam steam: id: 920210 -'Lego Star Wars: The Video Game': +"Lego Star Wars: The Video Game": files: - /SWLEGO.BIN: + "/SWLEGO.BIN": tags: - config when: - os: windows - /lsw_*: + "/lsw_*": tags: - save when: - os: windows Lego The Hobbit: files: - /Library/Application Support/Feral Interactive/LEGO The Hobbit: + "/Library/Application Support/Feral Interactive/LEGO The Hobbit": tags: - config when: - os: mac - /Library/Application Support/Feral Interactive/LEGO The Hobbit/SaveData: + "/Library/Application Support/Feral Interactive/LEGO The Hobbit/SaveData": tags: - save when: - os: mac - /userdata//285160/remote/savedgames: + "/userdata//285160/remote/savedgames": tags: - save when: - store: steam - /Warner Bros. Interactive Entertainment/LEGO The Hobbit/pcconfig.txt: + "/Warner Bros. Interactive Entertainment/LEGO The Hobbit/pcconfig.txt": tags: - config when: @@ -303487,11 +304370,11 @@ Lego The Hobbit: installDir: LEGO - The Hobbit: {} launch: - /LEGO The Hobbit.app: + "/LEGO The Hobbit.app": - when: - os: mac store: steam - /LEGOHobbit.exe: + "/LEGOHobbit.exe": - when: - bit: 32 os: windows @@ -303500,22 +304383,22 @@ Lego The Hobbit: id: 285160 Lego The Incredibles: files: - /Library/Application Support/Feral Interactive/LEGO The Incredibles: + "/Library/Application Support/Feral Interactive/LEGO The Incredibles": tags: - config when: - os: mac - /Library/Application Support/Feral Interactive/LEGO The Incredibles/SaveData/SAVEDGAMES: + "/Library/Application Support/Feral Interactive/LEGO The Incredibles/SaveData/SAVEDGAMES": tags: - save when: - os: mac - /Warner Bros. Interactive Entertainment/LEGO The Incredibles: + "/Warner Bros. Interactive Entertainment/LEGO The Incredibles": tags: - config when: - os: windows - /Warner Bros. Interactive Entertainment/LEGO The Incredibles/SAVEDGAMES: + "/Warner Bros. Interactive Entertainment/LEGO The Incredibles/SAVEDGAMES": tags: - save when: @@ -303523,16 +304406,16 @@ Lego The Incredibles: installDir: LEGO The Incredibles: {} launch: - /LEGO The Incredibles.app: + "/LEGO The Incredibles.app": - when: - os: mac store: steam - /LEGO The Incredibles.exe: + "/LEGO The Incredibles.exe": - when: - bit: 32 os: windows store: steam - /LEGO The Incredibles_DX11.exe: + "/LEGO The Incredibles_DX11.exe": - when: - bit: 64 os: windows @@ -303541,23 +304424,23 @@ Lego The Incredibles: id: 818320 Lego The Lord of the Rings: files: - /Library/Application Support/Feral Interactive/LEGO The Lord of the Rings: + "/Library/Application Support/Feral Interactive/LEGO The Lord of the Rings": tags: - config when: - os: mac - /Library/Application Support/Feral Interactive/LEGO The Lord of the Rings/SavedGames: + "/Library/Application Support/Feral Interactive/LEGO The Lord of the Rings/SavedGames": tags: - save when: - os: mac - /userdata//214510/remote/savedgames: + "/userdata//214510/remote/savedgames": tags: - save when: - os: windows store: steam - /Warner Bros. Interactive Entertainment/LEGO The Lord of the Rings: + "/Warner Bros. Interactive Entertainment/LEGO The Lord of the Rings": tags: - config when: @@ -303565,14 +304448,14 @@ Lego The Lord of the Rings: installDir: LEGO Lord of the Rings: {} launch: - /LEGOlotr.exe: + "/LEGOlotr.exe": - when: - store: steam steam: id: 214510 Lego Universe: files: - /LEGO Software/LEGO Universe: + "/LEGO Software/LEGO Universe": tags: - config - save @@ -303581,20 +304464,20 @@ Lego Universe: installDir: LEGO Universe: {} launch: - /patcher/LEGOUniverseLauncher.exe: + "/patcher/LEGOUniverseLauncher.exe": - when: - store: steam - workingDir: /patcher + workingDir: "/patcher" steam: id: 21140 Lego Worlds: files: - /Warner Bros. Interactive Entertainment/LEGOWorlds: + "/Warner Bros. Interactive Entertainment/LEGOWorlds": tags: - config when: - os: windows - /Warner Bros. Interactive Entertainment/LEGOWorlds/SavedGames: + "/Warner Bros. Interactive Entertainment/LEGOWorlds/SavedGames": tags: - save when: @@ -303602,7 +304485,7 @@ Lego Worlds: installDir: LEGO Worlds: {} launch: - /LEGO_Worlds.exe: + "/LEGO_Worlds.exe": - when: - os: windows store: steam @@ -303610,25 +304493,25 @@ Lego Worlds: id: 332310 Legoland: files: - /profiles: + "/profiles": tags: - config - save when: - os: windows -'Legrand Legacy: Tale of the Fatebounds': +"Legrand Legacy: Tale of the Fatebounds": gog: id: 1335936125 installDir: Legrand Legacy: {} launch: - /Legrand Legacy.exe: + "/Legrand Legacy.exe": - when: - os: windows store: steam steam: id: 556740 -Leilani's Island: +"Leilani's Island": steam: id: 664640 Leisure Suit Larry - Wet Dreams Dry Twice: @@ -303637,11 +304520,11 @@ Leisure Suit Larry - Wet Dreams Dry Twice: installDir: Leisure Suit Larry - Wet Dreams Dry Twice: {} launch: - /Leisure Suit Larry - Wet Dreams Dry Twice.app/Contents/MacOS/Leisure Suit Larry - Wet Dreams Dry Twice: + "/Leisure Suit Larry - Wet Dreams Dry Twice.app/Contents/MacOS/Leisure Suit Larry - Wet Dreams Dry Twice": - when: - os: mac store: steam - /Leisure Suit Larry - Wet Dreams Dry Twice.exe: + "/Leisure Suit Larry - Wet Dreams Dry Twice.exe": - when: - os: windows store: steam @@ -303654,15 +304537,15 @@ Leisure Suit Larry - Wet Dreams Dry Twice: - save steam: id: 1373430 -'Leisure Suit Larry 5: Passionate Patti Does a Little Undercover Work': +"Leisure Suit Larry 5: Passionate Patti Does a Little Undercover Work": files: - /LSL5SG.*: + "/LSL5SG.*": tags: - save when: - os: dos - os: windows - /RESOURCE.CFG: + "/RESOURCE.CFG": tags: - config when: @@ -303672,21 +304555,21 @@ Leisure Suit Larry - Wet Dreams Dry Twice: installDir: Larry Suit Larry 5 Passionate Patti Does a Little Undercover Work: {} launch: - /run.bat: + "/run.bat": - when: - os: windows store: steam steam: id: 765860 -'Leisure Suit Larry 6: Shape Up or Slip Out!': +"Leisure Suit Larry 6: Shape Up or Slip Out!": files: - /LSL6SG.*: + "/LSL6SG.*": tags: - save when: - os: dos - os: windows - /RESOURCE.CFG: + "/RESOURCE.CFG": tags: - config when: @@ -303696,7 +304579,7 @@ Leisure Suit Larry - Wet Dreams Dry Twice: installDir: Leisure Suit Larry 6 - Shape Up Or Slip Out: {} launch: - /run.bat: + "/run.bat": - when: - os: windows store: steam @@ -303704,13 +304587,13 @@ Leisure Suit Larry - Wet Dreams Dry Twice: id: 765910 Leisure Suit Larry Goes Looking for Love (in Several Wrong Places): files: - /LSL2SG.*: + "/LSL2SG.*": tags: - save when: - os: dos - os: windows - /RESOURCE.CFG: + "/RESOURCE.CFG": tags: - config when: @@ -303720,21 +304603,21 @@ Leisure Suit Larry Goes Looking for Love (in Several Wrong Places): installDir: Leisure Suit Larry 2 Looking For Love (In Several Wrong Places): {} launch: - /run.bat: + "/run.bat": - when: - os: windows store: steam steam: id: 765840 -'Leisure Suit Larry III: Passionate Patti in Pursuit of the Pulsating Pectorals': +"Leisure Suit Larry III: Passionate Patti in Pursuit of the Pulsating Pectorals": files: - /LSL3SG.*: + "/LSL3SG.*": tags: - save when: - os: dos - os: windows - /RESOURCE.CFG: + "/RESOURCE.CFG": tags: - config when: @@ -303744,7 +304627,7 @@ Leisure Suit Larry Goes Looking for Love (in Several Wrong Places): installDir: Leisure Suit Larry 3 Passionate Patti in Pursuit of the Pulsating Pectorals: {} launch: - /run.bat: + "/run.bat": - when: - os: windows store: steam @@ -303752,7 +304635,7 @@ Leisure Suit Larry Goes Looking for Love (in Several Wrong Places): id: 765850 Leisure Suit Larry in the Land of the Lounge Lizards: files: - /RESOURCE.CFG: + "/RESOURCE.CFG": tags: - config when: @@ -303762,27 +304645,27 @@ Leisure Suit Larry in the Land of the Lounge Lizards: installDir: Leisure Suit Larry 1 - In the Land of the Lounge Lizards: {} launch: - /run.bat: + "/run.bat": - when: - os: windows store: steam steam: id: 763970 -'Leisure Suit Larry in the Land of the Lounge Lizards: Reloaded': +"Leisure Suit Larry in the Land of the Lounge Lizards: Reloaded": files: - /.config/unity3d/N_Fusion Interactive/LSLR: + "/.config/unity3d/N_Fusion Interactive/LSLR": tags: - config - save when: - os: linux - /Library/Containers/com.replay.LeisureSuitLarry/Data/Library/com.replay.LeisureSuitLarry: + "/Library/Containers/com.replay.LeisureSuitLarry/Data/Library/com.replay.LeisureSuitLarry": tags: - config - save when: - os: mac - /N_Fusion Interactive/LSLR: + "/N_Fusion Interactive/LSLR": tags: - config - save @@ -303793,65 +304676,60 @@ Leisure Suit Larry in the Land of the Lounge Lizards: installDir: Leisure Suit Larry in the Land of the Lounge Lizards Reloaded: {} launch: - /Larry-Linux.x86: + "/Larry-Linux.x86": - when: - os: linux store: steam - /LarryReloaded.app: + "/LarryReloaded.app": - when: - os: mac store: steam - /LarryReloaded.exe: + "/LarryReloaded.exe": - when: - os: windows store: steam steam: id: 231910 -Leisure Suit Larry's Casino: +"Leisure Suit Larry's Casino": files: - /RESOURCE.CFG: + "/RESOURCE.CFG": tags: - config when: - os: dos -Leisure Suit Larry's Casino (1998): +"Leisure Suit Larry's Casino (1998)": files: - /LCASINO.INI: + "/LCASINO.INI": tags: - config - save when: - os: windows -'Leisure Suit Larry: Box Office Bust': +"Leisure Suit Larry: Box Office Bust": files: - /My Games/LeisureSuitLarry: + "/My Games/LeisureSuitLarry": tags: - save when: - os: windows - /My Games/LeisureSuitLarry/LUGame/Config/LUengine.ini: + "/My Games/LeisureSuitLarry/LUGame/Config/LUengine.ini": tags: - config when: - os: windows -'Leisure Suit Larry: Love for Sail!': +"Leisure Suit Larry: Love for Sail!": files: - /RESOURCE.CFG: + "/RESOURCE.CFG": tags: - config when: - os: dos - /RESOURCE.WIN: + "/RESOURCE.WIN": tags: - config when: - os: windows - /data/lsl7.*: - tags: - - save - when: - - store: gog - /Sierra/Leisure Suit Larry 7: + "/Sierra/Leisure Suit Larry 7": tags: - save when: @@ -303861,15 +304739,15 @@ Leisure Suit Larry's Casino (1998): installDir: Larry7: {} launch: - /run.bat: + "/run.bat": - when: - os: windows store: steam steam: id: 765890 -'Leisure Suit Larry: Magna Cum Laude': +"Leisure Suit Larry: Magna Cum Laude": files: - /SaveGames: + "/SaveGames": tags: - save when: @@ -303879,15 +304757,15 @@ Leisure Suit Larry's Casino (1998): installDir: Leisure Suit Larry - Magna Cum Laude Uncut and Uncensored: {} launch: - /Larry.exe: + "/Larry.exe": - when: - os: windows store: steam steam: id: 765900 -'Leisure Suit Larry: Wet Dreams Don''t Dry': +"Leisure Suit Larry: Wet Dreams Don't Dry": files: - /AppData/LocalLow/Assemble Entertainment/Leisure Suit Larry - Wet Dreams Don't Dry/savegames: + "/AppData/LocalLow/Assemble Entertainment/Leisure Suit Larry - Wet Dreams Don't Dry/savegames": tags: - save when: @@ -303901,27 +304779,27 @@ Leisure Suit Larry's Casino (1998): - 938590 - 975530 installDir: - Leisure Suit Larry - Wet Dreams Don't Dry: {} + "Leisure Suit Larry - Wet Dreams Don't Dry": {} launch: - /larry.app/Contents/MacOS/larry: + "/larry.app/Contents/MacOS/larry": - when: - os: mac store: steam - /larry.exe: + "/larry.exe": - when: - os: windows store: steam registry: - HKEY_CURRENT_USER/Software/Assemble Entertainment/Leisure Suit Larry - Wet Dreams Don't Dry: + "HKEY_CURRENT_USER/Software/Assemble Entertainment/Leisure Suit Larry - Wet Dreams Don't Dry": tags: - config steam: id: 765870 Leisure Town: installDir: - '1': {} + "1": {} launch: - /123.exe: + "/123.exe": - when: - os: windows store: steam @@ -303933,7 +304811,7 @@ Lelie Navigation!: installDir: Lelie Navigation!: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: @@ -303943,7 +304821,7 @@ Lem-Amaze!: id: 1194970 Leman: files: - '%ProgramFiles(x86)%/Steam/userdata/48766336/1661360/remote': + "%ProgramFiles(x86)%/Steam/userdata/48766336/1661360/remote": tags: - save when: @@ -303951,19 +304829,19 @@ Leman: installDir: The Book of the Game: {} launch: - /TBotG.exe: + "/TBotG.exe": - when: - store: steam steam: id: 1661360 Lemma: files: - /Lemma: + "/Lemma": tags: - config when: - os: windows - /Lemma/saves: + "/Lemma/saves": tags: - save when: @@ -303971,11 +304849,11 @@ Lemma: installDir: Lemma: {} launch: - /Lemma.exe: + "/Lemma.exe": - when: - os: windows store: steam - - arguments: '-vr' + - arguments: "-vr" when: - os: windows store: steam @@ -303983,33 +304861,35 @@ Lemma: id: 300340 Lemmings Revolution: files: - /SavedGame.dat: + "/SavedGame.dat": tags: - save when: - os: windows Lemnis Gate: files: - /LemnisGate/Saved/Config/WinGDK: + "/LemnisGate/Saved/Config/WinGDK": tags: - config when: - os: windows store: microsoft - /LemnisGate/Saved/Config/WindowsNoEditor: + "/LemnisGate/Saved/Config/WindowsNoEditor": tags: - config when: - - store: steam - /LemnisGate/Saved/SaveGames: + - os: windows + store: steam + "/LemnisGate/Saved/SaveGames": tags: - config when: - - store: steam + - os: windows + store: steam installDir: LemnisGate: {} launch: - /LemnisGate.exe: + "/LemnisGate.exe": - when: - bit: 64 os: windows @@ -304018,7 +304898,7 @@ Lemnis Gate: id: 950180 Lemon Cake: files: - /LemonCake/Saved/SaveGames: + "/LemonCake/Saved/SaveGames": tags: - save when: @@ -304026,7 +304906,7 @@ Lemon Cake: installDir: Lemon Cake: {} launch: - /LemonCake.exe: + "/LemonCake.exe": - when: - bit: 64 os: windows @@ -304037,7 +304917,7 @@ Lemons Must Die: installDir: Lemons Must Die: {} launch: - /JLemon.exe: + "/JLemon.exe": - when: - bit: 64 os: windows @@ -304052,20 +304932,20 @@ Lems: Lemuria: steam: id: 815090 -'Lemuria: Lost in Space': +"Lemuria: Lost in Space": installDir: Lemuria Lost in Space: {} launch: - /Lemuria.exe: + "/Lemuria.exe": - when: - store: steam steam: id: 563250 -'Lemuria: Lost in Space - VR Edition': +"Lemuria: Lost in Space - VR Edition": installDir: Lemuria Lost in Space VR: {} launch: - /Lemuria.exe: + "/Lemuria.exe": - when: - store: steam steam: @@ -304073,15 +304953,15 @@ Lemuria: Lemurzin: steam: id: 415490 -Len's Island: +"Len's Island": installDir: - Len's Island: {} + "Len's Island": {} launch: - /Len's Island.app: + "/Len's Island.app": - when: - os: mac store: steam - /Len's Island.exe: + "/Len's Island.exe": - when: - os: windows store: steam @@ -304091,26 +304971,26 @@ Lenin - The Lion: installDir: Lenin - The Lion: {} launch: - /Lenin - The Lion.exe: - - arguments: '--in-process-gpu' + "/Lenin - The Lion.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam steam: id: 839850 -Lenna's Inception: +"Lenna's Inception": files: - /.local/share/lennasinception: + "/.local/share/lennasinception": tags: - config when: - os: linux - /.local/share/lennasinception/saves: + "/.local/share/lennasinception/saves": tags: - save when: - os: linux - /LennasInception: + "/LennasInception": tags: - config - save @@ -304119,15 +304999,15 @@ Lenna's Inception: installDir: LennasInception: {} launch: - /LennasInception.app: + "/LennasInception.app": - when: - os: mac store: steam - /lennasinception: + "/lennasinception": - when: - os: linux store: steam - /lennasinception.exe: + "/lennasinception.exe": - when: - os: windows store: steam @@ -304136,47 +305016,47 @@ Lenna's Inception: Leo the Lion: gog: id: 1762800738 -Leo the Lion's Puzzles: +"Leo the Lion's Puzzles": files: - /LEO_AI.DLL: + "/LEO_AI.DLL": tags: - save when: - os: windows - /dxcfg.ini: + "/dxcfg.ini": tags: - config when: - os: windows gog: id: 1723618362 -Leo's Fortune: +"Leo's Fortune": installDir: Leo’s Fortune: {} launch: - /LeosFortune.app: + "/LeosFortune.app": - when: - os: mac store: steam - /Leos_fortune.exe: + "/Leos_fortune.exe": - when: - os: windows store: steam steam: id: 355630 -Leon's Crusade: +"Leon's Crusade": installDir: - Leon's crusade (La cruzada de León): {} + "Leon's crusade (La cruzada de León)": {} launch: - /lacruzadadeleón.app/Contents/MacOS/nwjs: + "/lacruzadadeleón.app/Contents/MacOS/nwjs": - when: - os: mac store: steam - /nw: + "/nw": - when: - os: linux store: steam - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -304186,21 +305066,21 @@ LeonWaan MineSweeper: installDir: LeonWaan MineSweeper: {} launch: - /LeonWaan MineSweeper.exe: + "/LeonWaan MineSweeper.exe": - when: - os: windows store: steam - /lms.app: + "/lms.app": - when: - os: mac store: steam steam: id: 1022650 -Leona's Tricky Adventures: +"Leona's Tricky Adventures": installDir: LeonasTrickyAdventures: {} launch: - /Leona_Starter.exe: + "/Leona_Starter.exe": - when: - os: windows store: steam @@ -304210,15 +305090,15 @@ Leons Identität: installDir: Leons Identität: {} launch: - /LeonsIdentitaet.app: + "/LeonsIdentitaet.app": - when: - os: mac store: steam - /LeonsIdentitaet.exe: + "/LeonsIdentitaet.exe": - when: - os: windows store: steam - /LinuxNoEditor/LeonsIdentitaet.sh: + "/LinuxNoEditor/LeonsIdentitaet.sh": - when: - bit: 64 os: linux @@ -304229,7 +305109,7 @@ Leopoldo Manquiseil: installDir: Leopoldo Manquiseil: {} launch: - /LeopoldoManquiseil.exe: + "/LeopoldoManquiseil.exe": - when: - os: windows store: steam @@ -304239,7 +305119,7 @@ Leowald: installDir: Leowald: {} launch: - /Leowald.exe: + "/Leowald.exe": - when: - bit: 64 os: windows @@ -304253,12 +305133,12 @@ Leprechaun Shadow: installDir: Leprechaun Shadow: {} launch: - /LeprechaunShadow.exe: + "/LeprechaunShadow.exe": - when: - bit: 64 os: windows store: steam - /LeprechaunShadow.x86_64: + "/LeprechaunShadow.x86_64": - when: - bit: 64 os: linux @@ -304268,19 +305148,19 @@ Leprechaun Shadow: Lepur: steam: id: 767600 -'Les 4 Alice: Lorange Journey': +"Les 4 Alice: Lorange Journey": installDir: Les 4 Alice Lorange Journey: {} launch: - /QuatreAliceJourney/QuatreAliceJourney.app: + "/QuatreAliceJourney/QuatreAliceJourney.app": - when: - os: mac store: steam - /QuatreAliceJourney/QuatreAliceJourney.exe: + "/QuatreAliceJourney/QuatreAliceJourney.exe": - when: - os: windows store: steam - /QuatreAliceJourney/QuatreAliceJourney.sh: + "/QuatreAliceJourney/QuatreAliceJourney.sh": - when: - os: linux store: steam @@ -304288,7 +305168,7 @@ Lepur: id: 904940 Les Fleursword: files: - /www/save: + "/www/save": tags: - save when: @@ -304296,20 +305176,20 @@ Les Fleursword: installDir: Les Fleursword: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam steam: id: 689650 -'Les Manley in: Lost in L.A.': +"Les Manley in: Lost in L.A.": files: - /*.SAV: + "/*.SAV": tags: - save when: - os: dos - /LES2.BAT: + "/LES2.BAT": tags: - config when: @@ -304320,14 +305200,14 @@ Les Fleursword: Les Manley in Lost in LA: {} steam: id: 1299730 -'Les Manley in: Search for the King': +"Les Manley in: Search for the King": files: - /*.SAV: + "/*.SAV": tags: - save when: - os: dos - /KING.BAT: + "/KING.BAT": tags: - config when: @@ -304338,21 +305218,21 @@ Les Fleursword: Les Manley in Search for the King: {} steam: id: 1299720 -'Les Misérables: Cosette''s Fate': +"Les Misérables: Cosette's Fate": installDir: - Les Misérables Cosette's Fate: {} + "Les Misérables Cosette's Fate": {} launch: - /LesMiserables.exe: + "/LesMiserables.exe": - when: - os: windows store: steam steam: id: 827120 -'Les Misérables: Jean Valjean': +"Les Misérables: Jean Valjean": installDir: Les Misérables Jean Valjean: {} launch: - /LesMiserables2.exe: + "/LesMiserables2.exe": - when: - os: windows store: steam @@ -304363,11 +305243,11 @@ Les Quatre Alices: Les Quatre Alices: {} steam: id: 669280 -'LesLove.Club: Jessica and Ashley': +"LesLove.Club: Jessica and Ashley": installDir: LesLove.Club Jessica and Ashley: {} launch: - /LL1.exe: + "/LL1.exe": - when: - os: windows store: steam @@ -304377,7 +305257,7 @@ Lesbian Breakout: installDir: Lesbian Breakout: {} launch: - /Lesbian Breakout.exe: + "/Lesbian Breakout.exe": - when: - os: windows store: steam @@ -304387,7 +305267,7 @@ Lesbian Voyeur Simulator: installDir: Lesbian Voyeur Simulator: {} launch: - /Lesbian Voyeur Simulator.exe: + "/Lesbian Voyeur Simulator.exe": - when: - os: windows store: steam @@ -304405,7 +305285,7 @@ Let It Die: installDir: LET IT DIE: {} launch: - /Binaries/Win64/BrgGame-Steam.exe: + "/Binaries/Win64/BrgGame-Steam.exe": - when: - os: windows store: steam @@ -304416,7 +305296,7 @@ Let It Happen: id: 1218510 Let Them Come: files: - /LetThemCome: + "/LetThemCome": tags: - config - save @@ -304425,11 +305305,11 @@ Let Them Come: installDir: Let Them Come: {} launch: - /LetThemCome.app: + "/LetThemCome.app": - when: - os: mac store: steam - /LetThemCome.exe: + "/LetThemCome.exe": - when: - os: windows store: steam @@ -304439,11 +305319,11 @@ Let There Be Life: installDir: Let There Be Life: {} launch: - /Let There Be Life.app: + "/Let There Be Life.app": - when: - os: mac store: steam - /Let There Be Life.exe: + "/Let There Be Life.exe": - when: - os: windows store: steam @@ -304453,371 +305333,371 @@ Let the Cat in: installDir: Let the Cat In: {} launch: - /ltci_mac.app: + "/ltci_mac.app": - when: - os: mac store: steam - /ltci_win.exe: + "/ltci_win.exe": - when: - os: windows store: steam steam: id: 369400 -Let's Be Architects: +"Let's Be Architects": steam: id: 784000 -Let's Bowl VR: +"Let's Bowl VR": installDir: LBVR: {} steam: id: 680950 -Let's Build a Zoo: +"Let's Build a Zoo": files: - /Config: + "/Config": tags: - config when: - os: windows - /Save: + "/Save": tags: - save when: - os: windows installDir: - Let's Build a Zoo: {} + "Let's Build a Zoo": {} launch: - /LetsBuildAZoo.exe: + "/LetsBuildAZoo.exe": - when: - os: windows store: steam steam: id: 1547890 -Let's Create! Pottery VR: +"Let's Create! Pottery VR": installDir: - Let's Create! Pottery VR: {} + "Let's Create! Pottery VR": {} steam: id: 992610 -Let's Draw: +"Let's Draw": installDir: - Let's Draw: {} + "Let's Draw": {} launch: - /Let's Draw.exe: + "/Let's Draw.exe": - when: - bit: 64 os: windows store: steam steam: id: 575490 -Let's Eat! Seaside Cafe: +"Let's Eat! Seaside Cafe": installDir: - Let's Eat! Seaside Cafe: {} + "Let's Eat! Seaside Cafe": {} launch: - /LetsEat!SeasideCafe.exe: + "/LetsEat!SeasideCafe.exe": - when: - store: steam steam: id: 444950 -Let's Explore the Airport (Junior Field Trips): +"Let's Explore the Airport (Junior Field Trips)": installDir: - Let's Explore The Airport with Buzzy: {} + "Let's Explore The Airport with Buzzy": {} launch: - /ScummVM_Linux/launch_leta_opengl.sh: + "/ScummVM_Linux/launch_leta_opengl.sh": - when: - os: linux store: steam - workingDir: /ScummVM_Linux - /ScummVM_Linux/launch_leta_safe.sh: + workingDir: "/ScummVM_Linux" + "/ScummVM_Linux/launch_leta_safe.sh": - when: - os: linux store: steam - workingDir: /ScummVM_Linux - /ScummVM_Mac/ScummVM.app/Contents/MacOS/scummvm: - - arguments: '-c \"scummvm-leta-opengl.ini\" airport-win' + workingDir: "/ScummVM_Linux" + "/ScummVM_Mac/ScummVM.app/Contents/MacOS/scummvm": + - arguments: "-c \\\"scummvm-leta-opengl.ini\\\" airport-win" when: - os: mac store: steam - workingDir: /ScummVM_Mac - - arguments: '-c \"scummvm-leta-safe.ini\" airport-win' + workingDir: "/ScummVM_Mac" + - arguments: "-c \\\"scummvm-leta-safe.ini\\\" airport-win" when: - os: mac store: steam - workingDir: /ScummVM_Mac - /ScummVM_Windows/scummvm.exe: - - arguments: '--no-console -c \"scummvm-leta-opengl.ini\" airport-win' + workingDir: "/ScummVM_Mac" + "/ScummVM_Windows/scummvm.exe": + - arguments: "--no-console -c \\\"scummvm-leta-opengl.ini\\\" airport-win" when: - os: windows store: steam - workingDir: /ScummVM_Windows - - arguments: '--no-console -c \"scummvm-leta-safe.ini\" airport-win' + workingDir: "/ScummVM_Windows" + - arguments: "--no-console -c \\\"scummvm-leta-safe.ini\\\" airport-win" when: - os: windows store: steam - workingDir: /ScummVM_Windows + workingDir: "/ScummVM_Windows" steam: id: 363050 -Let's Explore the Farm (Junior Field Trips): +"Let's Explore the Farm (Junior Field Trips)": installDir: - Let's Explore The Farm with Buzzy: {} + "Let's Explore The Farm with Buzzy": {} launch: - /ScummVM_Linux/launch_letf_opengl.sh: + "/ScummVM_Linux/launch_letf_opengl.sh": - when: - os: linux store: steam - workingDir: /ScummVM_Linux - /ScummVM_Linux/launch_letf_safe.sh: + workingDir: "/ScummVM_Linux" + "/ScummVM_Linux/launch_letf_safe.sh": - when: - os: linux store: steam - workingDir: /ScummVM_Linux - /ScummVM_Mac/ScummVM.app/Contents/MacOS/scummvm: - - arguments: '-c \"scummvm-letf-opengl.ini\" farm-win' + workingDir: "/ScummVM_Linux" + "/ScummVM_Mac/ScummVM.app/Contents/MacOS/scummvm": + - arguments: "-c \\\"scummvm-letf-opengl.ini\\\" farm-win" when: - os: mac store: steam - workingDir: /ScummVM_Mac - - arguments: '-c \"scummvm-letf-safe.ini\" farm-win' + workingDir: "/ScummVM_Mac" + - arguments: "-c \\\"scummvm-letf-safe.ini\\\" farm-win" when: - os: mac store: steam - workingDir: /ScummVM_Mac - /ScummVM_Windows/scummvm.exe: - - arguments: '--no-console -c \"scummvm-letf-opengl.ini\" farm-win' + workingDir: "/ScummVM_Mac" + "/ScummVM_Windows/scummvm.exe": + - arguments: "--no-console -c \\\"scummvm-letf-opengl.ini\\\" farm-win" when: - os: windows store: steam - workingDir: /ScummVM_Windows - - arguments: '--no-console -c \"scummvm-letf-safe.ini\" farm-win' + workingDir: "/ScummVM_Windows" + - arguments: "--no-console -c \\\"scummvm-letf-safe.ini\\\" farm-win" when: - os: windows store: steam - workingDir: /ScummVM_Windows + workingDir: "/ScummVM_Windows" steam: id: 363060 -Let's Explore the Jungle (Junior Field Trips): +"Let's Explore the Jungle (Junior Field Trips)": installDir: - Let's Explore The Jungle with Buzzy: {} + "Let's Explore The Jungle with Buzzy": {} launch: - /ScummVM_Linux/launch_letj_opengl.sh: + "/ScummVM_Linux/launch_letj_opengl.sh": - when: - os: linux store: steam - workingDir: /ScummVM_Linux - /ScummVM_Linux/launch_letj_safe.sh: + workingDir: "/ScummVM_Linux" + "/ScummVM_Linux/launch_letj_safe.sh": - when: - os: linux store: steam - workingDir: /ScummVM_Linux - /ScummVM_Mac/ScummVM.app/Contents/MacOS/scummvm: - - arguments: '-c \"scummvm-letj-opengl.ini\" jungle-win' + workingDir: "/ScummVM_Linux" + "/ScummVM_Mac/ScummVM.app/Contents/MacOS/scummvm": + - arguments: "-c \\\"scummvm-letj-opengl.ini\\\" jungle-win" when: - os: mac store: steam - workingDir: /ScummVM_Mac - - arguments: '-c \"scummvm-letj-safe.ini\" jungle-win' + workingDir: "/ScummVM_Mac" + - arguments: "-c \\\"scummvm-letj-safe.ini\\\" jungle-win" when: - os: mac store: steam - workingDir: /ScummVM_Mac - /ScummVM_Windows/scummvm.exe: - - arguments: '--no-console -c \"scummvm-letj-opengl.ini\" jungle-win' + workingDir: "/ScummVM_Mac" + "/ScummVM_Windows/scummvm.exe": + - arguments: "--no-console -c \\\"scummvm-letj-opengl.ini\\\" jungle-win" when: - os: windows store: steam - workingDir: /ScummVM_Windows - - arguments: '--no-console -c \"scummvm-letj-safe.ini\" jungle-win' + workingDir: "/ScummVM_Windows" + - arguments: "--no-console -c \\\"scummvm-letj-safe.ini\\\" jungle-win" when: - os: windows store: steam - workingDir: /ScummVM_Windows + workingDir: "/ScummVM_Windows" steam: id: 363070 -Let's Find a Way: +"Let's Find a Way": steam: id: 585800 -Let's Go Nuts!: +"Let's Go Nuts!": installDir: - Let's Go Nuts!: {} + "Let's Go Nuts!": {} launch: - /LetsGoNuts!.exe: + "/LetsGoNuts!.exe": - when: - os: windows store: steam steam: id: 848230 -Let's Go There And Wander Nowhere: +"Let's Go There And Wander Nowhere": installDir: - Let's Go There And Wander Nowhere: {} + "Let's Go There And Wander Nowhere": {} launch: - /LGTAWN.app: + "/LGTAWN.app": - when: - os: mac store: steam - /LGTAWN.exe: + "/LGTAWN.exe": - when: - os: windows store: steam - /LGTAWN.x86: + "/LGTAWN.x86": - when: - os: linux store: steam steam: id: 879410 -Let's Go! Skiing VR: +"Let's Go! Skiing VR": installDir: - Let's Go! Skiing: {} + "Let's Go! Skiing": {} steam: id: 1150310 -Let's Kill Zombies VR: +"Let's Kill Zombies VR": installDir: Lets Kill Zombies VR: {} steam: id: 789970 -Let's Learn Japanese! Hiragana: +"Let's Learn Japanese! Hiragana": installDir: - Let's Learn Japanese! Hiragana: {} + "Let's Learn Japanese! Hiragana": {} launch: - /Hiragana.exe: + "/Hiragana.exe": - when: - os: windows store: steam steam: id: 997720 -Let's Learn Japanese! Katakana: +"Let's Learn Japanese! Katakana": installDir: - Let's Learn Japanese! Katakana: {} + "Let's Learn Japanese! Katakana": {} launch: - /Katakana.exe: + "/Katakana.exe": - when: - os: windows store: steam steam: id: 1018900 -Let's Learn Japanese! Vocabulary: +"Let's Learn Japanese! Vocabulary": installDir: - Let's Learn Japanese! Vocabulary: {} + "Let's Learn Japanese! Vocabulary": {} launch: - /Vocabulary.exe: + "/Vocabulary.exe": - when: - os: windows store: steam steam: id: 1208030 -Let's Not Stay Friends: +"Let's Not Stay Friends": installDir: - Let`s not stay friends: {} + "Let`s not stay friends": {} launch: - /FRENZzone_NEW.app: + "/FRENZzone_NEW.app": - when: - os: mac store: steam - /FRENZzone_NEW.exe: + "/FRENZzone_NEW.exe": - when: - os: windows store: steam - /FRENZzone_NEW.sh: + "/FRENZzone_NEW.sh": - when: - os: linux store: steam steam: id: 739980 -Let's Play with Nanai!: +"Let's Play with Nanai!": installDir: - Let's Play with Nanai!: {} + "Let's Play with Nanai!": {} steam: id: 851350 -Let's Ride! Silver Buckle Stables: +"Let's Ride! Silver Buckle Stables": gog: id: 2067932503 installDir: - Let's Ride! Silver Buckle Stables: {} + "Let's Ride! Silver Buckle Stables": {} launch: - /LetsRide.exe: + "/LetsRide.exe": - when: - os: windows store: steam steam: id: 1587860 -Let's See What You Got: +"Let's See What You Got": installDir: LSWYG: {} launch: - /LetsSeeWhatYouGot.exe: + "/LetsSeeWhatYouGot.exe": - when: - os: windows store: steam - /LetsSeeWhatYouGot.x86_64: + "/LetsSeeWhatYouGot.x86_64": - when: - os: linux store: steam steam: id: 1126070 -Let's Sing: +"Let's Sing": installDir: - Let's Sing: {} + "Let's Sing": {} launch: - /LetsSing.exe: + "/LetsSing.exe": - when: - os: windows store: steam steam: id: 268260 -Let's Sing 2016: +"Let's Sing 2016": installDir: LS2016: {} launch: - /LetsSing2016.exe: + "/LetsSing2016.exe": - when: - os: windows store: steam steam: id: 397820 -Let's Sing 2019: +"Let's Sing 2019": installDir: - Let's Sing 2019: {} + "Let's Sing 2019": {} launch: - /Let's Sing 2019.exe: + "/Let's Sing 2019.exe": - when: - bit: 64 os: windows store: steam steam: id: 994310 -Let's Split Up: +"Let's Split Up": installDir: - Let's Split Up (A Visual Novel): {} + "Let's Split Up (A Visual Novel)": {} launch: - /Lets_Split_Up.exe: + "/Lets_Split_Up.exe": - when: - os: windows store: steam steam: id: 876290 -Let's Worm: +"Let's Worm": installDir: - Let's Worm: {} + "Let's Worm": {} launch: - /Let's Worm.exe: + "/Let's Worm.exe": - when: - os: windows store: steam steam: id: 1032140 -Let's Zig Zag: +"Let's Zig Zag": steam: id: 783900 -Let's make... sports: +"Let's make... sports": installDir: - Let's make sport: {} + "Let's make sport": {} launch: - /Fizra.app: + "/Fizra.app": - when: - os: mac store: steam - /Fizra.exe: + "/Fizra.exe": - when: - os: windows store: steam - /Fizra.sh: + "/Fizra.sh": - when: - os: linux store: steam @@ -304828,7 +305708,7 @@ Lethal Brutal Racing: id: 509240 Lethal Company: files: - /AppData/LocalLow/ZeekerssRBLX/Lethal Company: + "/AppData/LocalLow/ZeekerssRBLX/Lethal Company": tags: - save when: @@ -304836,7 +305716,7 @@ Lethal Company: installDir: Lethal Company: {} launch: - /Lethal Company.exe: + "/Lethal Company.exe": - when: - bit: 64 store: steam @@ -304848,17 +305728,17 @@ Lethal Company: id: 1966720 Lethal Crisis: files: - /save/save#: + "/save/save#": tags: - save when: - os: windows - /save/savesys: + "/save/savesys": tags: - save when: - os: windows - /user.cfg: + "/user.cfg": tags: - config when: @@ -304866,7 +305746,7 @@ Lethal Crisis: installDir: Lethal Crisis: {} launch: - /Lethal Crisis.exe: + "/Lethal Crisis.exe": - when: - os: windows store: steam @@ -304874,17 +305754,17 @@ Lethal Crisis: id: 2438190 Lethal Crisis ProtoSphere: files: - /save/save#: + "/save/save#": tags: - save when: - os: windows - /save/savesys: + "/save/savesys": tags: - save when: - os: windows - /user.cfg: + "/user.cfg": tags: - config when: @@ -304892,7 +305772,7 @@ Lethal Crisis ProtoSphere: installDir: Lethal Crisis PS: {} launch: - /Lethal Crisis PS.exe: + "/Lethal Crisis PS.exe": - when: - os: windows store: steam @@ -304902,29 +305782,29 @@ Lethal Laser: installDir: LethalLaser: {} launch: - /LethalLaser.app/Contents/MacOS/LethalLaser: + "/LethalLaser.app/Contents/MacOS/LethalLaser": - when: - os: mac store: steam - /LethalLaser.exe: + "/LethalLaser.exe": - when: - os: windows store: steam steam: id: 669390 -'Lethal Lawns: Competitive Mowing Bloodsport': +"Lethal Lawns: Competitive Mowing Bloodsport": installDir: Lethal Lawns: {} launch: - /LethalLawns.app/Contents/MacOS/Lethal Lawns: + "/LethalLawns.app/Contents/MacOS/Lethal Lawns": - when: - os: mac store: steam - /LethalLawns.exe: + "/LethalLawns.exe": - when: - os: windows store: steam - /LethalLawns.x86_64: + "/LethalLawns.x86_64": - when: - bit: 64 os: linux @@ -304933,7 +305813,7 @@ Lethal Laser: id: 821570 Lethal League: files: - /resources/config/lethal_settings.cfg: + "/resources/config/lethal_settings.cfg": tags: - config when: @@ -304941,15 +305821,15 @@ Lethal League: installDir: lethalleague: {} launch: - /LethalLeague: + "/LethalLeague": - when: - os: linux store: steam - /LethalLeague.app: + "/LethalLeague.app": - when: - os: mac store: steam - /lethalleague.exe: + "/lethalleague.exe": - when: - os: windows store: steam @@ -304957,12 +305837,12 @@ Lethal League: id: 261180 Lethal League Blaze: files: - /userdata//553310/remote/progress.sav: + "/userdata//553310/remote/progress.sav": tags: - save when: - store: steam - /Packages/TeamReptile.2582A0C5DCAB_e5dfpr1e2tmgw/SystemAppData/wgs: + "/Packages/TeamReptile.2582A0C5DCAB_e5dfpr1e2tmgw/SystemAppData/wgs": tags: - save when: @@ -304971,16 +305851,16 @@ Lethal League Blaze: installDir: LLBlaze: {} launch: - /LLBlaze.app: + "/LLBlaze.app": - when: - os: mac store: steam - /LLBlaze.exe: - - arguments: '-desyncinfo' + "/LLBlaze.exe": + - arguments: "-desyncinfo" when: - os: windows store: steam - /LLBlaze.x86_64: + "/LLBlaze.x86_64": - when: - bit: 64 os: linux @@ -304991,11 +305871,11 @@ Lethal League Blaze: - config steam: id: 553310 -'Lethal RPG: War': +"Lethal RPG: War": installDir: Lethal RPG War: {} launch: - /LRW.exe: + "/LRW.exe": - when: - os: windows store: steam @@ -305005,18 +305885,18 @@ Lethal Running: installDir: lethalrunning: {} launch: - /lethalrunning.exe: + "/lethalrunning.exe": - when: - bit: 64 os: windows store: steam steam: id: 645200 -'Lethal Running: Prologue': +"Lethal Running: Prologue": installDir: LethalRunningPrologue: {} launch: - /lethalrunning.exe: + "/lethalrunning.exe": - when: - bit: 64 os: windows @@ -305027,7 +305907,7 @@ Lethal Strike: installDir: LETHAL STRIKE: {} launch: - /LethalStrike.exe: + "/LethalStrike.exe": - when: - store: steam steam: @@ -305039,12 +305919,12 @@ Lethal VR: id: 532270 Lethe - Episode One: files: - /Saves/Lethe ep1: + "/Saves/Lethe ep1": tags: - save when: - os: windows - /UDKGame/Config: + "/UDKGame/Config": tags: - config when: @@ -305052,42 +305932,42 @@ Lethe - Episode One: installDir: Lethe - Episode One: {} launch: - /Binaries/Win32/UDK.exe: - - arguments: '-UseAllAvailableCores' + "/Binaries/Win32/UDK.exe": + - arguments: "-UseAllAvailableCores" when: - os: windows store: steam steam: id: 407780 -'Lethis: Daring Discoverers': +"Lethis: Daring Discoverers": installDir: Lethis - Daring Discoverers: {} launch: - /DaringDiscoverers.exe: + "/DaringDiscoverers.exe": - when: - os: windows store: steam steam: id: 580570 -'Lethis: Path of Progress': +"Lethis: Path of Progress": gog: id: 1456754427 installDir: Lethis - Path of Progress: {} launch: - /Lethis-Path_Of_Progress.exe: + "/Lethis-Path_Of_Progress.exe": - when: - os: windows store: steam steam: id: 359230 -Letina's Odyssey: +"Letina's Odyssey": gog: id: 1685075974 installDir: - Letina's Odyssey: {} + "Letina's Odyssey": {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: @@ -305096,20 +305976,20 @@ Lets Beats: installDir: Lets Beats: {} launch: - /LetsBeats.exe: + "/LetsBeats.exe": - when: - os: windows store: steam steam: id: 880610 -'Letter Quest: Grimm''s Journey': +"Letter Quest: Grimm's Journey": files: - /com.baconbanditgames.spellquest/Local Store/#SharedObjects/grimmwords_steam.swf/letter_quest_desktop_settings.sol: + "/com.baconbanditgames.spellquest/Local Store/#SharedObjects/grimmwords_steam.swf/letter_quest_desktop_settings.sol": tags: - config when: - os: windows - /com.baconbanditgames.spellquest/Local Store/letter_quest_gamesave: + "/com.baconbanditgames.spellquest/Local Store/letter_quest_gamesave": tags: - save when: @@ -305117,29 +305997,29 @@ Lets Beats: installDir: Letter Quest: {} launch: - /letterquest.app: + "/letterquest.app": - when: - os: mac store: steam - /letterquest.exe: + "/letterquest.exe": - when: - os: windows store: steam steam: id: 328730 -'Letter Quest: Grimm''s Journey Remastered': +"Letter Quest: Grimm's Journey Remastered": files: - '"~/.config/unity3d/Bacon Bandit Games/Letter Quest Remastered/letter_quest_remastered.lqr"': + "\"~/.config/unity3d/Bacon Bandit Games/Letter Quest Remastered/letter_quest_remastered.lqr\"": tags: - save when: - os: linux - '"~/Library/Application Support/unity.Bacon Bandit Games.Letter Quest Remastered/letter_quest_remastered.lqr"': + "\"~/Library/Application Support/unity.Bacon Bandit Games.Letter Quest Remastered/letter_quest_remastered.lqr\"": tags: - save when: - os: mac - /AppData/LocalLow/Bacon Bandit Games/Letter Quest Remastered/letter_quest_remastered.lqr: + "/AppData/LocalLow/Bacon Bandit Games/Letter Quest Remastered/letter_quest_remastered.lqr": tags: - save when: @@ -305147,20 +306027,20 @@ Lets Beats: installDir: Letter Quest Remastered: {} launch: - /letterquestremastered.app: + "/letterquestremastered.app": - when: - os: mac store: steam - /letterquestremastered.exe: + "/letterquestremastered.exe": - when: - os: windows store: steam - /letterquestremastered.x86: + "/letterquestremastered.x86": - when: - bit: 32 os: linux store: steam - /letterquestremastered.x86_64: + "/letterquestremastered.x86_64": - when: - bit: 64 os: linux @@ -305175,23 +306055,23 @@ Letter-Setter: installDir: LetterSetter: {} launch: - /LetterSetter.exe: + "/LetterSetter.exe": - when: - os: windows store: steam steam: id: 676320 -'Letters: A Written Adventure': +"Letters: A Written Adventure": gog: id: 1315552098 installDir: Letters - a written adventure: {} launch: - /Letters.app/Contents/MacOS/Letters: + "/Letters.app/Contents/MacOS/Letters": - when: - os: mac store: steam - /Letters.exe: + "/Letters.exe": - when: - os: windows store: steam @@ -305201,22 +306081,22 @@ Letzte Worte VR: installDir: Letzte Worte VR: {} launch: - /LetzteWorte.exe: + "/LetzteWorte.exe": - when: - bit: 64 os: windows store: steam steam: id: 932800 -'Levantera: Tale of The Winds': +"Levantera: Tale of The Winds": installDir: Levantera Tale of The Winds: {} launch: - /Levantera: + "/Levantera": - when: - os: linux store: steam - /levantera.exe: + "/levantera.exe": - when: - os: windows store: steam @@ -305224,7 +306104,7 @@ Letzte Worte VR: id: 506700 Level 22: files: - /SaveData.ngo: + "/SaveData.ngo": tags: - save when: @@ -305232,20 +306112,20 @@ Level 22: installDir: LEVEL 22: {} launch: - /LEVEL 22 Linux.x86: + "/LEVEL 22 Linux.x86": - when: - bit: 32 os: linux store: steam - /LEVEL 22.app: + "/LEVEL 22.app": - when: - os: mac store: steam - /LEVEL 22.exe: + "/LEVEL 22.exe": - when: - os: windows store: steam - /LEVEL 22.x86_64: + "/LEVEL 22.x86_64": - when: - bit: 64 os: linux @@ -305256,9 +306136,9 @@ Level 22: - config steam: id: 293300 -'Level 22: Gary''s Misadventures': +"Level 22: Gary's Misadventures": files: - /Moving Player/LEVEL 22: + "/Moving Player/LEVEL 22": tags: - save when: @@ -305268,11 +306148,11 @@ Level 22: installDir: Level22: {} launch: - /level22.app: + "/level22.app": - when: - os: mac store: steam - /level22.exe: + "/level22.exe": - when: - os: windows store: steam @@ -305286,7 +306166,7 @@ Level 99 Axe Rage: installDir: Level 99 Axe Rage: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -305296,7 +306176,7 @@ Level Up!: installDir: LEVEL_UP: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -305306,7 +306186,7 @@ Levelhead: installDir: Levelhead: {} launch: - /PlatformerBuilder.app/Contents/MacOS/PlatformerBuilder: + "/PlatformerBuilder.app/Contents/MacOS/PlatformerBuilder": - when: - os: mac store: steam @@ -305316,7 +306196,7 @@ Leveron Space: installDir: Leveron Space: {} launch: - /LeveronSpace.exe: + "/LeveronSpace.exe": - when: - os: windows store: steam @@ -305331,7 +306211,7 @@ Levi Chronicles: installDir: Levi Chronicles: {} launch: - /ProjectLeviticus.exe: + "/ProjectLeviticus.exe": - when: - os: windows store: steam @@ -305341,7 +306221,7 @@ Leviathan: installDir: Leviathan: {} launch: - /Leviathan.exe: + "/Leviathan.exe": - when: - os: windows store: steam @@ -305351,7 +306231,7 @@ Leviathan Starblade: installDir: Leviathan Starblade: {} launch: - /LevithanStarblade.exe: + "/LevithanStarblade.exe": - when: - os: windows store: steam @@ -305361,32 +306241,32 @@ Leviathan ~A Survival RPG~: installDir: Leviathan ~A Survival RPG~: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: id: 897440 -'Leviathan: The Cargo': +"Leviathan: The Cargo": installDir: LeviathanTheCargo: {} launch: - /cargo.app: + "/cargo.app": - when: - os: mac store: steam - /cargo.exe: + "/cargo.exe": - when: - os: windows store: steam - /cargo.x86: + "/cargo.x86": - when: - os: linux store: steam steam: id: 411130 -'Leviathan: The Last Day of the Decade': +"Leviathan: The Last Day of the Decade": files: - /AppData/LocalLow/Lostwood llc/The Last Day of the Decade: + "/AppData/LocalLow/Lostwood llc/The Last Day of the Decade": tags: - save when: @@ -305394,47 +306274,47 @@ Leviathan ~A Survival RPG~: installDir: Leviathan The Last Day of the Decade: {} launch: - /ldod.app: + "/ldod.app": - when: - os: mac store: steam - /ldod.exe: + "/ldod.exe": - when: - os: windows store: steam - /ldod.x86: + "/ldod.x86": - when: - os: linux store: steam steam: id: 328270 -'Leviathan: Warships': +"Leviathan: Warships": installDir: Leviathan Warships: {} launch: - /Leviathan.app: + "/Leviathan.app": - when: - os: mac store: steam - /Leviathan.exe: + "/Leviathan.exe": - when: - os: windows store: steam steam: id: 202270 -Lew Pulsipher's Doomstar: +"Lew Pulsipher's Doomstar": installDir: - Lew Pulsipher's Doomstar: {} + "Lew Pulsipher's Doomstar": {} launch: - /Doomstar.app: + "/Doomstar.app": - when: - os: mac store: steam - /Doomstar.exe: + "/Doomstar.exe": - when: - os: windows store: steam - /Doomstar.x86: + "/Doomstar.x86": - when: - os: linux store: steam @@ -305444,7 +306324,7 @@ Lex Mortis: installDir: Lex Mortis: {} launch: - /Bin32/LEXMORTIS.exe: + "/Bin32/LEXMORTIS.exe": - when: - os: windows store: steam @@ -305452,7 +306332,7 @@ Lex Mortis: id: 348450 Lexica: files: - /lexica.sav: + "/lexica.sav": tags: - save when: @@ -305460,7 +306340,7 @@ Lexica: installDir: Lexica: {} launch: - /Lexica.exe: + "/Lexica.exe": - when: - os: windows store: steam @@ -305470,7 +306350,7 @@ Lexie the Takeover: installDir: Lexie: {} launch: - /Lexie The Takeover.exe: + "/Lexie The Takeover.exe": - when: - os: windows store: steam @@ -305478,19 +306358,19 @@ Lexie the Takeover: id: 783400 Lexus ISF Track Time: files: - /Config.ini: + "/Config.ini": tags: - config when: - os: windows - /UserData//.plr: + "/UserData//.plr": tags: - save when: - os: windows Ley Lines: files: - /LeyLinesOfLegend/Saved/SaveGames: + "/LeyLinesOfLegend/Saved/SaveGames": tags: - save when: @@ -305498,7 +306378,7 @@ Ley Lines: installDir: Ley Lines: {} launch: - /LeyLinesOfLegend.exe: + "/LeyLinesOfLegend.exe": - when: - os: windows store: steam @@ -305508,7 +306388,7 @@ Leylines: installDir: Leylines: {} launch: - /Leylines.exe: + "/Leylines.exe": - when: - os: windows store: steam @@ -305518,49 +306398,49 @@ Lgnorant girl doll: installDir: Lgnorant girl doll: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: id: 1022640 LiEat: files: - /*/LiEat1/Game.ini: + "/*/LiEat1/Game.ini": tags: - config when: - store: steam - /*/LiEat1/Save: + "/*/LiEat1/Save": tags: - save when: - store: steam - /*/LiEat2/Game.ini: + "/*/LiEat2/Game.ini": tags: - config when: - store: steam - /*/LiEat2/Save: + "/*/LiEat2/Save": tags: - save when: - store: steam - /*/LiEat3/Game.ini: + "/*/LiEat3/Game.ini": tags: - config when: - store: steam - /*/LiEat3/Save: + "/*/LiEat3/Save": tags: - save when: - store: steam - /Game.ini: + "/Game.ini": tags: - config when: - os: windows - /Save/*.sav: + "/Save/*.sav": tags: - save when: @@ -305568,7 +306448,7 @@ LiEat: installDir: LiEat: {} launch: - /LiEat_Launcher.exe: + "/LiEat_Launcher.exe": - when: - os: windows store: steam @@ -305576,16 +306456,18 @@ LiEat: HKEY_CURRENT_USER/Software/Playism/LiEat_Launcher: tags: - config + when: + - store: steam steam: id: 373770 Liberated: files: - /AppData/LocalLow/Atomic Wolf/Liberated/savedGame.ppg: + "/AppData/LocalLow/Atomic Wolf/Liberated/savedGame.ppg": tags: - save when: - os: windows - /AppData/LocalLow/Atomic Wolf/Liberated/settings_v3.ppg: + "/AppData/LocalLow/Atomic Wolf/Liberated/settings_v3.ppg": tags: - config when: @@ -305595,7 +306477,7 @@ Liberated: installDir: Liberated: {} launch: - /Liberated.exe: + "/Liberated.exe": - when: - store: steam registry: @@ -305611,7 +306493,7 @@ Liberty Prime: installDir: Liberty Prime: {} launch: - /LibertyPrime.exe: + "/LibertyPrime.exe": - when: - bit: 64 os: windows @@ -305629,7 +306511,7 @@ Liberté: installDir: Liberte: {} launch: - /Liberte.exe: + "/Liberte.exe": - when: - os: windows store: steam @@ -305639,18 +306521,18 @@ Libra of the Vampire Princess: installDir: Libra of the Vampire Princess: {} launch: - /LIBRAeS.exe: + "/LIBRAeS.exe": - when: - bit: 32 os: windows store: steam steam: id: 604170 -'Libra of the Vampire Princess: Lycoris & Aoi in "The Promise" PLUS Iris in "Homeworld"': +"Libra of the Vampire Princess: Lycoris & Aoi in \"The Promise\" PLUS Iris in \"Homeworld\"": installDir: Libra of the Vampire Princess Beginnings: {} launch: - /LIBRAeSe.exe: + "/LIBRAeSe.exe": - when: - bit: 32 os: windows @@ -305661,22 +306543,22 @@ Library: installDir: LIBRARY: {} launch: - /LIBRARY.exe: - - arguments: '-windowed' + "/LIBRARY.exe": + - arguments: "-windowed" when: - os: windows store: steam - /LIBRARYlinux.x86: + "/LIBRARYlinux.x86": - when: - bit: 32 os: linux store: steam - /LIBRARYlinux.x86_64: + "/LIBRARYlinux.x86_64": - when: - bit: 64 os: linux store: steam - /LIBRARYmac.app/Contents/MacOS/LIBRARYmac: + "/LIBRARYmac.app/Contents/MacOS/LIBRARYmac": - when: - os: mac store: steam @@ -305684,7 +306566,7 @@ Library: id: 865270 Library of Ruina: files: - /AppData/LocalLow/Project Moon/LibraryOfRuina: + "/AppData/LocalLow/Project Moon/LibraryOfRuina": tags: - save when: @@ -305692,33 +306574,33 @@ Library of Ruina: installDir: Library Of Ruina: {} launch: - /LibraryOfRuina.exe: + "/LibraryOfRuina.exe": - when: - os: windows store: steam - - arguments: '-mod' + - arguments: "-mod" when: - os: windows store: steam - - arguments: '-invtool' + - arguments: "-invtool" when: - os: windows store: steam steam: id: 1256670 -'Lichdom: Battlemage': +"Lichdom: Battlemage": files: - /Saved Games/Lichdom Battlemage/Profiles: + "/Saved Games/Lichdom Battlemage/Profiles": tags: - save when: - os: windows - /Saved Games/Lichdom Battlemage/SaveGames: + "/Saved Games/Lichdom Battlemage/SaveGames": tags: - save when: - os: windows - /Saved Games/Lichdom Battlemage/game.cfg: + "/Saved Games/Lichdom Battlemage/game.cfg": tags: - config when: @@ -305728,12 +306610,12 @@ Library of Ruina: installDir: Lichdom Battlemage: {} launch: - /Bin32/LichdomBattlemage.exe: + "/Bin32/LichdomBattlemage.exe": - when: - bit: 32 os: windows store: steam - /Bin64/LichdomBattlemage.exe: + "/Bin64/LichdomBattlemage.exe": - when: - bit: 64 os: windows @@ -305746,15 +306628,15 @@ Lichtspeer: installDir: Lichtspeer Double Speer Edition: {} launch: - /Lichtspeer.app: + "/Lichtspeer.app": - when: - os: mac store: steam - /Lichtspeer.exe: + "/Lichtspeer.exe": - when: - os: windows store: steam - /Lichtspeer.x86: + "/Lichtspeer.x86": - when: - os: linux store: steam @@ -305764,11 +306646,11 @@ Lie In My Heart: installDir: Lie In My Heart: {} launch: - /Lieinmyheart.app: + "/Lieinmyheart.app": - when: - os: mac store: steam - /Lieinmyheart.exe: + "/Lieinmyheart.exe": - when: - os: windows store: steam @@ -305776,23 +306658,23 @@ Lie In My Heart: id: 1116490 Lies of P: files: - /LiesofP/Saved/Config/WindowsNoEditor: + "/LiesofP/Saved/Config/WindowsNoEditor": tags: - config when: - store: steam - /LiesofP/Saved/SaveGames/: + "/LiesofP/Saved/SaveGames/": tags: - save when: - store: steam - /LiesofP/Saved/Config/WinGDK: + "/LiesofP/Saved/Config/WinGDK": tags: - config when: - os: windows store: microsoft - /Packages/Neowiz.3616725F496B_r4z3116tdh636/SystemAppData/wgs/: + "/Packages/Neowiz.3616725F496B_r4z3116tdh636/SystemAppData/wgs/": tags: - save when: @@ -305801,7 +306683,7 @@ Lies of P: installDir: Lies of P: {} launch: - /LOP.exe: + "/LOP.exe": - when: - bit: 64 os: windows @@ -305812,7 +306694,7 @@ Lif: installDir: Lif: {} launch: - /Lif.exe: + "/Lif.exe": - when: - store: steam steam: @@ -305821,7 +306703,7 @@ Life After The Living: installDir: Life After The Living: {} launch: - /LATL.exe: + "/LATL.exe": - when: - bit: 64 os: windows @@ -305838,7 +306720,7 @@ Life Combinations: installDir: Life Combinations: {} launch: - /Life Combinations.exe: + "/Life Combinations.exe": - when: - store: steam steam: @@ -305847,7 +306729,7 @@ Life Forge ORPG: installDir: Life Forge ORPG: {} launch: - /Life Forge.exe: + "/Life Forge.exe": - when: - os: windows store: steam @@ -305857,7 +306739,7 @@ Life Game: installDir: Life Game: {} launch: - /LifeGame.exe: + "/LifeGame.exe": - when: - bit: 64 os: windows @@ -305867,24 +306749,24 @@ Life Game: Life Goals: steam: id: 838360 -'Life Goes On: Done to Death': +"Life Goes On: Done to Death": installDir: Life Goes On: {} launch: - /Life Goes On.app: + "/Life Goes On.app": - when: - os: mac store: steam - /Life Goes On.exe: + "/Life Goes On.exe": - when: - os: windows store: steam - /Life Goes On.x86: + "/Life Goes On.x86": - when: - bit: 32 os: linux store: steam - /Life Goes On.x86_64: + "/Life Goes On.x86_64": - when: - bit: 64 os: linux @@ -305895,34 +306777,34 @@ Life In Helsinki: installDir: Life In Helsinki: {} launch: - /Helsinki.exe: + "/Helsinki.exe": - when: - store: steam steam: id: 989750 Life Is Strange: files: - /Library/Application Support/Feral Interactive/Life Is Strange/VFS/Local/my games/Life Is Strange/Config: + "/Library/Application Support/Feral Interactive/Life Is Strange/VFS/Local/my games/Life Is Strange/Config": tags: - config when: - os: mac - /Library/Application Support/Feral Interactive/Life Is Strange/VFS/Local/my games/Life Is Strange/Saves: + "/Library/Application Support/Feral Interactive/Life Is Strange/VFS/Local/my games/Life Is Strange/Saves": tags: - save when: - os: mac - /My Games/Life Is Strange/LifeIsStrangeGame/Config: + "/My Games/Life Is Strange/LifeIsStrangeGame/Config": tags: - config when: - os: windows - /My Games/Life Is Strange/Saves: + "/My Games/Life Is Strange/Saves": tags: - save when: - os: windows - /feral-interactive/Life Is Strange/VFS/Local/My Games/Life Is Strange/Saves: + "/feral-interactive/Life Is Strange/VFS/Local/My Games/Life Is Strange/Saves": tags: - config - save @@ -305942,21 +306824,21 @@ Life Is Strange: installDir: Life Is Strange: {} launch: - /Binaries/Win32/LifeIsStrange.exe: + "/Binaries/Win32/LifeIsStrange.exe": - when: - os: windows store: steam - workingDir: /Binaries/Win32 - - arguments: '-ForceMinGraphics' + workingDir: "/Binaries/Win32" + - arguments: "-ForceMinGraphics" when: - os: windows store: steam - workingDir: /Binaries/Win32 - /Life Is Strange.app: + workingDir: "/Binaries/Win32" + "/Life Is Strange.app": - when: - os: mac store: steam - /LifeIsStrange.sh: + "/LifeIsStrange.sh": - when: - os: linux store: steam @@ -305964,27 +306846,27 @@ Life Is Strange: id: 319630 Life Is Strange 2: files: - /Library/Application Support/Feral Interactive/Life is Strange 2/SaveData: + "/Library/Application Support/Feral Interactive/Life is Strange 2/SaveData": tags: - save when: - os: mac - /Library/Application Support/Feral Interactive/Life is Strange 2/SaveData/Dotnod//LIS2/Saved/Config/WindowsNoEditor: + "/Library/Application Support/Feral Interactive/Life is Strange 2/SaveData/Dotnod//LIS2/Saved/Config/WindowsNoEditor": tags: - config when: - os: mac - /Dontnod//LIS2/Saved/Config/WindowsNoEditor: + "/Dontnod//LIS2/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /Dontnod//LIS2/Saved/SaveGames: + "/Dontnod//LIS2/Saved/SaveGames": tags: - save when: - os: windows - /feral-interactive/Life is Strange 2/SaveData/Dontnod//LIS2/Saved/SaveGames: + "/feral-interactive/Life is Strange 2/SaveData/Dontnod//LIS2/Saved/SaveGames": tags: - save when: @@ -305992,11 +306874,11 @@ Life Is Strange 2: installDir: Life is Strange 2: {} launch: - /Life is Strange 2.app: + "/Life is Strange 2.app": - when: - os: mac store: steam - /LifeIsStrange2.sh: + "/LifeIsStrange2.sh": - when: - bit: 64 os: linux @@ -306005,12 +306887,12 @@ Life Is Strange 2: id: 532210 Life Is Strange Remastered: files: - /LiS/Saved/Config/WindowsNoEditor: + "/LiS/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /LiS/Saved/SaveGames: + "/LiS/Saved/SaveGames": tags: - save when: @@ -306018,26 +306900,26 @@ Life Is Strange Remastered: installDir: LIS - Remastered: {} launch: - /LiS.exe: + "/LiS.exe": - when: - bit: 64 os: windows store: steam steam: id: 1265920 -'Life Is Strange: Before the Storm': +"Life Is Strange: Before the Storm": files: - /.config/unity3d/Feral Interactive/Life is Strange Before the Storm/Saves//SLOT_*/*.Save: + "/.config/unity3d/Feral Interactive/Life is Strange Before the Storm/Saves//SLOT_*/*.Save": tags: - save when: - os: linux - /AppData/LocalLow/Square Enix/Life is Strange_ Before the Storm/Saves//Preferences/PrefData.Save: + "/AppData/LocalLow/Square Enix/Life is Strange_ Before the Storm/Saves//Preferences/PrefData.Save": tags: - config when: - os: windows - /AppData/LocalLow/Square Enix/Life is Strange_ Before the Storm/Saves//SLOT_*/*.Save: + "/AppData/LocalLow/Square Enix/Life is Strange_ Before the Storm/Saves//SLOT_*/*.Save": tags: - save when: @@ -306047,32 +306929,32 @@ Life Is Strange Remastered: installDir: Life is Strange - Before the Storm: {} launch: - /Life is Strange - Before the Storm.exe: + "/Life is Strange - Before the Storm.exe": - when: - os: windows store: steam - /Life is Strange Before the Storm.app: + "/Life is Strange Before the Storm.app": - when: - os: mac store: steam - /launch.sh: + "/launch.sh": - when: - os: linux store: steam registry: - 'HKEY_CURRENT_USER/SOFTWARE/Square Enix/Life is Strange: Before the Storm': + "HKEY_CURRENT_USER/SOFTWARE/Square Enix/Life is Strange: Before the Storm": tags: - config steam: id: 554620 -'Life Is Strange: Before the Storm Remastered': +"Life Is Strange: Before the Storm Remastered": files: - /AppData/LocalLow/Square Enix/Life is Strange_ Before the Storm/RemasteredSaves///SLOT_*/*.Save: + "/AppData/LocalLow/Square Enix/Life is Strange_ Before the Storm/RemasteredSaves///SLOT_*/*.Save": tags: - save when: - os: windows - /AppData/LocalLow/Square Enix/Life is Strange_ Before the Storm/RemasteredSaves//Preferences/PrefData.Save: + "/AppData/LocalLow/Square Enix/Life is Strange_ Before the Storm/RemasteredSaves//Preferences/PrefData.Save": tags: - config when: @@ -306080,26 +306962,26 @@ Life Is Strange Remastered: installDir: LIS - Before the Storm Remastered: {} launch: - /Life is Strange - Before the Storm.exe: + "/Life is Strange - Before the Storm.exe": - when: - os: windows store: steam steam: id: 1265930 -'Life Is Strange: True Colors': +"Life Is Strange: True Colors": files: - /My Games/LifeIsStrange3/Steam/: + "/My Games/LifeIsStrange3/Steam/": tags: - save when: - os: windows - /Packages/39C668CD.ProjectSiren_r7bfsmp40f67j/SystemAppData/wgs: + "/Packages/39C668CD.ProjectSiren_r7bfsmp40f67j/SystemAppData/wgs": tags: - save when: - os: windows store: microsoft - /Siren/Saved/Config/WindowsNoEditor: + "/Siren/Saved/Config/WindowsNoEditor": tags: - config when: @@ -306107,7 +306989,7 @@ Life Is Strange Remastered: installDir: LifeIsStrange3: {} launch: - /LifeIsStrange3.exe: + "/LifeIsStrange3.exe": - when: - bit: 64 os: windows @@ -306118,11 +307000,11 @@ Life Lessons: installDir: Life Lessons: {} launch: - /Life Lessons.app: + "/Life Lessons.app": - when: - os: mac store: steam - /Life Lessons.exe: + "/Life Lessons.exe": - when: - os: windows store: steam @@ -306132,7 +307014,7 @@ Life Redemption: installDir: Life Redemption: {} launch: - /Life Redemption.exe: + "/Life Redemption.exe": - when: - store: steam steam: @@ -306141,7 +307023,7 @@ Life Simulator: installDir: 生活模拟器: {} launch: - /Life Simulator.exe: + "/Life Simulator.exe": - when: - os: windows store: steam @@ -306151,25 +307033,25 @@ Life Tastes Like Cardboard: installDir: Life Tastes Like Cardboard: {} launch: - /Life Tastes Like Cardboard v1_0.exe: + "/Life Tastes Like Cardboard v1_0.exe": - when: - os: windows store: steam steam: id: 1114090 -'Life and Debt: A Real Life Simulator': +"Life and Debt: A Real Life Simulator": installDir: Life and Debt A Real Life Simulator: {} launch: - /LifeAndDebt.app/Contents/MacOS/LifeAndDebt: + "/LifeAndDebt.app/Contents/MacOS/LifeAndDebt": - when: - os: mac store: steam - /LifeAndDebt.exe: + "/LifeAndDebt.exe": - when: - os: windows store: steam - /LifeAndDebt.x86_64: + "/LifeAndDebt.x86_64": - when: - bit: 64 os: linux @@ -306186,21 +307068,24 @@ Life in Bunker: installDir: Life in Bunker: {} launch: - /lib.app: + "/lib.app": - when: - os: mac store: steam - /lib.exe: + "/lib.exe": - when: - bit: 32 os: windows store: steam - /lib.x86: + - bit: 64 + os: windows + store: steam + "/lib.x86": - when: - bit: 32 os: linux store: steam - /lib.x86_64: + "/lib.x86_64": - when: - bit: 64 os: linux @@ -306211,38 +307096,38 @@ Life in the Dorms: installDir: Life in the Dorms: {} launch: - /DormStory.exe: + "/DormStory.exe": - when: - os: windows store: steam steam: id: 385850 -'Life is Feudal: Forest Village': +"Life is Feudal: Forest Village": installDir: Life is Feudal Forest Village: {} launch: - /ForestVillage.exe: + "/ForestVillage.exe": - when: - os: windows store: steam steam: id: 496460 -'Life is Feudal: MMO': +"Life is Feudal: MMO": installDir: Life is Feudal MMO: {} launch: - /launcher.exe: - - arguments: '-steam_auto_login' + "/launcher.exe": + - arguments: "-steam_auto_login" when: - os: windows store: steam steam: id: 700030 -'Life is Feudal: Your Own': +"Life is Feudal: Your Own": installDir: Life is Feudal Your Own: {} launch: - /yo_cm_client.exe: + "/yo_cm_client.exe": - when: - os: windows store: steam @@ -306252,21 +307137,21 @@ Life is Hard: installDir: Life is Hard: {} launch: - /LifeIsHard.exe: + "/LifeIsHard.exe": - when: - os: windows store: steam - /LifeIsHard.x86: + "/LifeIsHard.x86": - when: - bit: 32 os: linux store: steam - /LifeIsHard.x86_64: + "/LifeIsHard.x86_64": - when: - bit: 64 os: linux store: steam - /LifeIsHardMacOS.app: + "/LifeIsHardMacOS.app": - when: - os: mac store: steam @@ -306279,11 +307164,11 @@ Life is Pointless: installDir: Life is Pointless: {} launch: - /Life is Pointless Mac Build.app/Contents/MacOS/Life is Pointless Mac Build: + "/Life is Pointless Mac Build.app/Contents/MacOS/Life is Pointless Mac Build": - when: - os: mac store: steam - /Life is Pointless.exe: + "/Life is Pointless.exe": - when: - bit: 64 os: windows @@ -306292,12 +307177,12 @@ Life is Pointless: id: 1011130 Life of Delta: files: - /AppData/LocalLow/Daedalic Entertainment GmbH/LifeOfDelta/*.dat: + "/AppData/LocalLow/Daedalic Entertainment GmbH/LifeOfDelta/*.dat": tags: - save when: - os: windows - /Library/Application Support/Daedalic Entertainment GmbH/LifeOfDelta: + "/Library/Application Support/Daedalic Entertainment GmbH/LifeOfDelta": tags: - save when: @@ -306307,17 +307192,17 @@ Life of Delta: installDir: Life of Delta: {} launch: - /LifeOfDelta.app: + "/LifeOfDelta.app": - when: - os: mac store: steam - /LifeOfDelta.exe: + "/LifeOfDelta.exe": - when: - os: windows store: steam steam: id: 1376760 -'Life of Lon: Chapter 1': +"Life of Lon: Chapter 1": installDir: Life of Lon: {} steam: @@ -306329,7 +307214,7 @@ Life of a Capitalist: installDir: Life of a Capitalist: {} launch: - /lifeofacapitalist.exe: + "/lifeofacapitalist.exe": - when: - os: windows store: steam @@ -306342,15 +307227,15 @@ Life of a Mobster: installDir: Life of a Mobster: {} launch: - /Life of a Mobster.app/Contents/MacOS/Life of a Mobster: + "/Life of a Mobster.app/Contents/MacOS/Life of a Mobster": - when: - os: mac store: steam - /LifeOfAMobster: + "/LifeOfAMobster": - when: - os: linux store: steam - /LifeOfAMobster.exe: + "/LifeOfAMobster.exe": - when: - os: windows store: steam @@ -306360,15 +307245,15 @@ Life of a Wizard: installDir: Life of a Wizard: {} launch: - /Life of a Wizard.app/Contents/MacOS/Life of a Wizard: + "/Life of a Wizard.app/Contents/MacOS/Life of a Wizard": - when: - os: mac store: steam - /LifeOfAWizard: + "/LifeOfAWizard": - when: - os: linux store: steam - /LifeOfAWizard.exe: + "/LifeOfAWizard.exe": - when: - os: windows store: steam @@ -306378,7 +307263,7 @@ Life on Mars Remake: installDir: Life on Mars Remake: {} launch: - /lom.exe: + "/lom.exe": - when: - os: windows store: steam @@ -306388,28 +307273,28 @@ Life on the hook: installDir: Life on the hook: {} launch: - /Life_on_the_hook.exe: + "/Life_on_the_hook.exe": - when: - bit: 64 os: windows store: steam steam: id: 1148100 -'Life source: episode one': +"Life source: episode one": installDir: Life source: {} launch: - /Life source.exe: + "/Life source.exe": - when: - os: windows store: steam steam: id: 1050180 -Life's Playground: +"Life's Playground": installDir: - Life's Playground: {} + "Life's Playground": {} launch: - /lifeplay.exe: + "/lifeplay.exe": - when: - store: steam steam: @@ -306418,7 +307303,7 @@ LifeBase: installDir: LifeBase: {} launch: - /LifeBase v0.0.33.exe: + "/LifeBase v0.0.33.exe": - when: - os: windows store: steam @@ -306428,7 +307313,7 @@ LifeGameSimulator: installDir: LifeGameSimulator: {} launch: - /LifeGameSimulator.exe: + "/LifeGameSimulator.exe": - when: - os: windows store: steam @@ -306438,11 +307323,11 @@ LifeZ - Survival: installDir: LifeZ - Survival: {} launch: - /LifeZ.exe: + "/LifeZ.exe": - when: - os: windows store: steam - /LifeZ.x86: + "/LifeZ.x86": - when: - os: linux store: steam @@ -306452,7 +307337,7 @@ Lifeblood: installDir: Lifeblood: {} launch: - /Lifeblood/Binaries/Win64/Lifeblood-Win64-Shipping.exe: + "/Lifeblood/Binaries/Win64/Lifeblood-Win64-Shipping.exe": - when: - bit: 64 os: windows @@ -306461,7 +307346,7 @@ Lifeblood: id: 796340 Lifeforce Tenka: files: - /save/tenka.sav: + "/save/tenka.sav": tags: - save when: @@ -306474,7 +307359,7 @@ Lifeless: installDir: Lifeless: {} launch: - /Lifeless.exe: + "/Lifeless.exe": - when: - bit: 64 os: windows @@ -306483,7 +307368,7 @@ Lifeless: id: 419520 Lifeless Moon: files: - /AppData/LocalLow/Lifeless Worlds/Lifeless Moon: + "/AppData/LocalLow/Lifeless Worlds/Lifeless Moon": tags: - config - save @@ -306492,7 +307377,7 @@ Lifeless Moon: installDir: Lifeless Moon: {} launch: - /Lifeless Moon.exe: + "/Lifeless Moon.exe": - when: - os: windows store: steam @@ -306500,13 +307385,13 @@ Lifeless Moon: id: 1147330 Lifeless Planet: files: - /AppData/LocalLow/Stage 2 Studios/Lifeless Planet: + "/AppData/LocalLow/Stage 2 Studios/Lifeless Planet": tags: - config - save when: - os: windows - /unity3d/Stage 2 Studios/Lifeless Planet: + "/unity3d/Stage 2 Studios/Lifeless Planet": tags: - config - save @@ -306517,15 +307402,15 @@ Lifeless Planet: installDir: Lifeless Planet: {} launch: - /LifelessPlanet.app: + "/LifelessPlanet.app": - when: - os: mac store: steam - /LifelessPlanet.exe: + "/LifelessPlanet.exe": - when: - os: windows store: steam - /LifelessPlanet.x86_64: + "/LifelessPlanet.x86_64": - when: - bit: 64 os: linux @@ -306536,7 +307421,7 @@ Lifeless Vanguard: installDir: Lifeless Vanguard: {} launch: - /Lifeless Vanguard.exe: + "/Lifeless Vanguard.exe": - when: - store: steam steam: @@ -306545,11 +307430,11 @@ Lifeline: installDir: Lifeline: {} launch: - /LifelineSteam.app/Contents/MacOS/LifelineSteam: + "/LifelineSteam.app/Contents/MacOS/LifelineSteam": - when: - os: mac store: steam - /Lifeline_Steam.exe: + "/Lifeline_Steam.exe": - when: - os: windows store: steam @@ -306566,7 +307451,7 @@ Lifeslide: installDir: Lifeslide: {} launch: - /Lifeslide.exe: + "/Lifeslide.exe": - when: - os: windows store: steam @@ -306576,7 +307461,7 @@ Lifespan 5seconds: installDir: Lifespan 5seconds: {} launch: - /player.exe: + "/player.exe": - when: - store: steam steam: @@ -306585,7 +307470,7 @@ Lifestream - A Haunting Text Adventure: installDir: Lifestream: {} launch: - /Lifestream Steam.exe: + "/Lifestream Steam.exe": - when: - os: windows store: steam @@ -306598,7 +307483,7 @@ Lift It: installDir: Lift It: {} launch: - /Lift It.exe: + "/Lift It.exe": - when: - os: windows store: steam @@ -306613,15 +307498,15 @@ Light: installDir: Light: {} launch: - /Light.app: + "/Light.app": - when: - os: mac store: steam - /Light.exe: + "/Light.exe": - when: - os: windows store: steam - /Light.x86: + "/Light.x86": - when: - os: linux store: steam @@ -306631,7 +307516,7 @@ Light & Dark: installDir: Eyes in the Dark: {} launch: - /Eyes in the Dark.exe: + "/Eyes in the Dark.exe": - when: - bit: 64 os: windows @@ -306642,12 +307527,12 @@ Light (2018): installDir: Light: {} launch: - /LightWin32/Light32.exe: + "/LightWin32/Light32.exe": - when: - bit: 32 os: windows store: steam - /LightWin64/Light64.exe: + "/LightWin64/Light64.exe": - when: - bit: 64 os: windows @@ -306658,11 +307543,11 @@ Light Apprentice: installDir: Light Apprentice: {} launch: - /lapp_mac.app: + "/lapp_mac.app": - when: - os: mac store: steam - /lapp_pc.exe: + "/lapp_pc.exe": - when: - os: windows store: steam @@ -306672,7 +307557,7 @@ Light Bearers: installDir: Light Bearers: {} launch: - /LightBearers.exe: + "/LightBearers.exe": - when: - bit: 64 os: windows @@ -306683,11 +307568,11 @@ Light Borrower: installDir: Light Borrower: {} launch: - /LBLaunchBuild.exe: + "/LBLaunchBuild.exe": - when: - os: windows store: steam - /LBLaunchBuildMac.app: + "/LBLaunchBuildMac.app": - when: - os: mac store: steam @@ -306697,11 +307582,11 @@ Light Bound: installDir: Light Bound: {} launch: - /LightBound.app: + "/LightBound.app": - when: - os: mac store: steam - /LightBound.exe: + "/LightBound.exe": - when: - os: windows store: steam @@ -306709,22 +307594,22 @@ Light Bound: id: 335560 Light Crusader: files: - /SEGA Genesis Classics/0037: + "/SEGA Genesis Classics/0037": tags: - save when: - os: windows - /SEGA Genesis Classics/setup.dat: + "/SEGA Genesis Classics/setup.dat": tags: - config when: - os: windows - /SEGA Mega Drive Classics/0037: + "/SEGA Mega Drive Classics/0037": tags: - save when: - os: windows - /SEGA Mega Drive Classics/setup.dat: + "/SEGA Mega Drive Classics/setup.dat": tags: - config when: @@ -306738,15 +307623,15 @@ Light Fairytale Episode 1: installDir: Light Fairytale Episode 1: {} launch: - /light fairytale episode 1.exe: + "/light fairytale episode 1.exe": - when: - os: windows store: steam - /light_fairytale_episode_1.app/Contents/MacOS/light fairytale episode 1: + "/light_fairytale_episode_1.app/Contents/MacOS/light fairytale episode 1": - when: - os: mac store: steam - /light_fairytale_episode_1.x86_64: + "/light_fairytale_episode_1.x86_64": - when: - os: linux store: steam @@ -306756,15 +307641,15 @@ Light Fairytale Episode 2: installDir: Light Fairytale Episode 2: {} launch: - /Light Fairytale Episode 2.exe: + "/Light Fairytale Episode 2.exe": - when: - os: windows store: steam - /light_fairytale_episode_2.app/Contents/MacOS/Light Fairytale Episode 2: + "/light_fairytale_episode_2.app/Contents/MacOS/Light Fairytale Episode 2": - when: - os: mac store: steam - /light_fairytale_episode_2.x86_64: + "/light_fairytale_episode_2.x86_64": - when: - os: linux store: steam @@ -306772,7 +307657,7 @@ Light Fairytale Episode 2: id: 1199760 Light Fall: files: - /userdata//416830/remote: + "/userdata//416830/remote": tags: - config - save @@ -306782,11 +307667,11 @@ Light Fall: installDir: Light Fall: {} launch: - /LightFall.app: + "/LightFall.app": - when: - os: mac store: steam - /LightFall.exe: + "/LightFall.exe": - when: - os: windows store: steam @@ -306800,7 +307685,7 @@ Light Fantastik: installDir: Light Fantastik: {} launch: - /LightFantastik.exe: + "/LightFantastik.exe": - when: - store: steam steam: @@ -306814,11 +307699,11 @@ Light Gravity Cube (2019): Light House Puzzle: steam: id: 960380 -'Light Hunters: Battalion of Darkness': +"Light Hunters: Battalion of Darkness": installDir: Light Hunters Battalion of Darkness: {} launch: - /Light Hunters Battalion of Darkness.exe: + "/Light Hunters Battalion of Darkness.exe": - when: - os: windows store: steam @@ -306828,11 +307713,11 @@ Light It: installDir: Light It: {} launch: - /lightit.exe: + "/lightit.exe": - when: - os: windows store: steam - /lightit.sh: + "/lightit.sh": - when: - bit: 64 os: linux @@ -306844,14 +307729,14 @@ Light Of Gallery: id: 1017540 Light Repair Team 4: installDir: - 'Light Repair Team #4': {} + "Light Repair Team #4": {} steam: id: 444530 Light Rider: installDir: Light Rider: {} launch: - /Light_Rider.exe: + "/Light_Rider.exe": - when: - os: windows store: steam @@ -306866,7 +307751,7 @@ Light The Way: installDir: Light The Way: {} launch: - /LightTheWay.exe: + "/LightTheWay.exe": - when: - bit: 64 os: windows @@ -306877,8 +307762,8 @@ Light Tracer: installDir: Light Tracer: {} launch: - /LightTracer.exe: - - arguments: '-LTPS' + "/LightTracer.exe": + - arguments: "-LTPS" when: - os: windows store: steam @@ -306888,7 +307773,7 @@ Light Trail Rush: installDir: Light Trail Rush: {} launch: - /Light Trail Rush.exe: + "/Light Trail Rush.exe": - when: - os: windows store: steam @@ -306898,7 +307783,7 @@ Light Up the Holidays: installDir: Light Up the Holidays: {} launch: - /Light Up the Holidays.exe: + "/Light Up the Holidays.exe": - when: - os: windows store: steam @@ -306913,14 +307798,14 @@ Light in the Dark (D1ONE): installDir: Light in the dark: {} launch: - /ambient.exe: + "/ambient.exe": - when: - store: steam steam: id: 669600 Light of Altair: files: - /SaintXi/LightOfAltair: + "/SaintXi/LightOfAltair": tags: - config when: @@ -306928,7 +307813,7 @@ Light of Altair: installDir: Light of Altair: {} launch: - /Altair.exe: + "/Altair.exe": - when: - store: steam steam: @@ -306937,7 +307822,7 @@ Light of Mine: installDir: Light of Mine: {} launch: - /LightOfMine.exe: + "/LightOfMine.exe": - when: - bit: 64 os: windows @@ -306951,7 +307836,7 @@ Light of the Mountain: installDir: Light of the Mountain: {} launch: - /LightoftheMountainSteam/LightoftheMountain.exe: + "/LightoftheMountainSteam/LightoftheMountain.exe": - when: - os: windows store: steam @@ -306966,7 +307851,7 @@ LightTrack: installDir: LightTrack: {} launch: - /LightTrack.exe: + "/LightTrack.exe": - when: - os: windows store: steam @@ -306976,7 +307861,7 @@ LightWalk: installDir: LightWalk: {} launch: - /LightWalk.exe: + "/LightWalk.exe": - when: - os: windows store: steam @@ -306986,11 +307871,11 @@ Lightbender: installDir: Lightbender: {} launch: - /Lightbender.app: + "/Lightbender.app": - when: - os: mac store: steam - /Lightbender.exe: + "/Lightbender.exe": - when: - os: windows store: steam @@ -307008,11 +307893,11 @@ Lighter: installDir: Lighter: {} launch: - /Lighter.app/Contents/MacOS/Lighter: + "/Lighter.app/Contents/MacOS/Lighter": - when: - os: mac store: steam - /Lighter.exe: + "/Lighter.exe": - when: - os: windows store: steam @@ -307027,7 +307912,7 @@ Lightfield Hyper Edition: installDir: Lightfield: {} launch: - /Lightfield.exe: + "/Lightfield.exe": - when: - store: steam steam: @@ -307036,11 +307921,11 @@ Lightfish: installDir: LightFish: {} launch: - /LightFish.app: + "/LightFish.app": - when: - os: mac store: steam - /LightFish.exe: + "/LightFish.exe": - when: - os: windows store: steam @@ -307050,11 +307935,11 @@ Lightform: installDir: Lightform: {} launch: - /Lightform.app/Contents/MacOS/Lightform: + "/Lightform.app/Contents/MacOS/Lightform": - when: - os: mac store: steam - /Lightform.exe: + "/Lightform.exe": - when: - os: windows store: steam @@ -307064,32 +307949,32 @@ Lighthockey: installDir: Lighthockey: {} launch: - /Bin/Lighthockey.exe: + "/Bin/Lighthockey.exe": - when: - os: windows store: steam - workingDir: /Bin + workingDir: "/Bin" steam: id: 406300 Lighthouse of guiding flames: installDir: Lighthouse of guiding flames: {} launch: - /LighthouseGF.app: + "/LighthouseGF.app": - when: - os: mac store: steam - /LighthouseGF.exe: + "/LighthouseGF.exe": - when: - os: windows store: steam - /LighthouseGF.sh: + "/LighthouseGF.sh": - when: - os: linux store: steam steam: id: 1107060 -'Lighthouse: The Dark Being': +"Lighthouse: The Dark Being": gog: id: 1322165223 Lighting End VR: @@ -307099,7 +307984,7 @@ Lightman: installDir: Lightman: {} launch: - /LightMan.exe: + "/LightMan.exe": - when: - os: windows store: steam @@ -307109,14 +307994,14 @@ Lightmare Castle: installDir: Lightmare Castle: {} launch: - /Lightmare Castle.exe: + "/Lightmare Castle.exe": - when: - store: steam steam: id: 1026770 Lightmatter: files: - /AppData/LocalLow/Tunnel Vision Games/Lightmatter/Lightmatter_Data: + "/AppData/LocalLow/Tunnel Vision Games/Lightmatter/Lightmatter_Data": tags: - config - save @@ -307125,7 +308010,7 @@ Lightmatter: installDir: Lightmatter: {} launch: - /Lightmatter.exe: + "/Lightmatter.exe": - when: - os: windows store: steam @@ -307135,20 +308020,20 @@ Lightning Angel Litona Liliche 섬광천사 리토나 리리셰: installDir: MagicgirlVN: {} launch: - /Lightning Angel Litona Liliche.exe: + "/Lightning Angel Litona Liliche.exe": - when: - os: windows store: steam steam: id: 923900 -'Lightning Returns: Final Fantasy XIII': +"Lightning Returns: Final Fantasy XIII": files: - /userdata//345350/remote: + "/userdata//345350/remote": tags: - save when: - store: steam - /userdata//345350/remote/SquareEnix/LightningReturnsFinalFantasyXIII: + "/userdata//345350/remote/SquareEnix/LightningReturnsFinalFantasyXIII": tags: - config when: @@ -307156,7 +308041,7 @@ Lightning Angel Litona Liliche 섬광천사 리토나 리리셰: installDir: LIGHTNING RETURNS FINAL FANTASY XIII: {} launch: - /LRFF13.exe: + "/LRFF13.exe": - when: - os: windows store: steam @@ -307166,23 +308051,23 @@ Lightning War: installDir: LightningWar: {} launch: - /LightningWar.exe: + "/LightningWar.exe": - when: - bit: 64 os: windows store: steam steam: id: 788820 -'Lightning: D-Day': +"Lightning: D-Day": installDir: Lightning D-Day: {} launch: - /D-Day.app: + "/D-Day.app": - when: - bit: 64 os: mac store: steam - /D-Day.exe: + "/D-Day.exe": - when: - os: windows store: steam @@ -307192,7 +308077,7 @@ Lightrise: installDir: Lightrise™: {} launch: - /lightrise.exe: + "/lightrise.exe": - when: - bit: 64 os: windows @@ -307213,18 +308098,18 @@ Lights Out: installDir: Lights Out: {} launch: - /LightsOut.exe: + "/LightsOut.exe": - when: - os: windows store: steam steam: id: 948080 -'Lights, Camera, Reaction!': +"Lights, Camera, Reaction!": installDir: - 'Lights, Camera, Reaction!': {} + "Lights, Camera, Reaction!": {} launch: - /lcr.exe: - - arguments: '-multidisplay' + "/lcr.exe": + - arguments: "-multidisplay" when: - os: windows store: steam @@ -307234,11 +308119,11 @@ Lightseekers: installDir: Lightseekers: {} launch: - /Lightseekers.app: + "/Lightseekers.app": - when: - os: mac store: steam - /Lightseekers.exe: + "/Lightseekers.exe": - when: - bit: 64 os: windows @@ -307249,16 +308134,16 @@ Lightspeed Frontier: installDir: Lightspeed Frontier: {} launch: - /Lightspeed Frontier: + "/Lightspeed Frontier": - when: - bit: 64 os: linux store: steam - /Lightspeed Frontier.app: + "/Lightspeed Frontier.app": - when: - os: mac store: steam - /Lightspeed Frontier.exe: + "/Lightspeed Frontier.exe": - when: - bit: 64 os: windows @@ -307267,7 +308152,7 @@ Lightspeed Frontier: id: 548650 Lightstep Chronicles: files: - /AppData/LocalLow/Eipix Entertainment/Lightstep Chronicles: + "/AppData/LocalLow/Eipix Entertainment/Lightstep Chronicles": tags: - save when: @@ -307275,7 +308160,7 @@ Lightstep Chronicles: installDir: Lightstep Chronicles: {} launch: - /Lightstep Chronicles.exe: + "/Lightstep Chronicles.exe": - when: - os: windows store: steam @@ -307289,7 +308174,7 @@ Lightwire: installDir: Lightwire: {} launch: - /Lightwire.exe: + "/Lightwire.exe": - when: - os: windows store: steam @@ -307299,31 +308184,31 @@ Like Clay: installDir: Like Clay: {} launch: - /LikeClay.exe: + "/LikeClay.exe": - when: - os: windows store: steam steam: id: 604000 -'Like a Dragon Gaiden: The Man Who Erased His Name': +"Like a Dragon Gaiden: The Man Who Erased His Name": files: - /Sega/LikeADragonGaiden/Steam: + "/Sega/LikeADragonGaiden/Steam": tags: - config when: - os: windows - /Sega/LikeADragonGaiden/Steam/: + "/Sega/LikeADragonGaiden/Steam/": tags: - save when: - os: windows - /Sega/LikeADragonGaiden/WindowsStore: + "/Sega/LikeADragonGaiden/WindowsStore": tags: - config when: - os: windows store: microsoft - /Packages/SEGAofAmericaInc.l1b05f489e_s751p9cej88mt/SystemAppData/wgs/: + "/Packages/SEGAofAmericaInc.l1b05f489e_s751p9cej88mt/SystemAppData/wgs/": tags: - save when: @@ -307331,22 +308216,22 @@ Like Clay: store: microsoft steam: id: 2375550 -'Like a Dragon: Infinite Wealth': +"Like a Dragon: Infinite Wealth": steam: id: 2072450 -'Like a Dragon: Ishin!': +"Like a Dragon: Ishin!": files: - /SEGA/LikeADragonIshin/: + "/SEGA/LikeADragonIshin/": tags: - save when: - os: windows - /SEGA/LikeADragonIshin//system: + "/SEGA/LikeADragonIshin//system": tags: - config when: - os: windows - /LikeaDragonIshin/Saved/Config/WindowsNoEditor: + "/LikeaDragonIshin/Saved/Config/WindowsNoEditor": tags: - config when: @@ -307354,7 +308239,7 @@ Like Clay: installDir: LikeADragonIshin: {} launch: - /startup.exe: + "/startup.exe": - when: - bit: 64 os: windows @@ -307365,7 +308250,7 @@ Lil Big Invasion: installDir: Lil Big Invasion: {} launch: - /lbi.exe: + "/lbi.exe": - when: - os: windows store: steam @@ -307375,7 +308260,7 @@ Lil Gator Game: installDir: Lil Gator Game: {} launch: - /Lil Gator Game.exe: + "/Lil Gator Game.exe": - when: - bit: 64 os: windows @@ -307389,58 +308274,58 @@ Lil Tanks: installDir: Lil Tanks: {} launch: - /Lil Tanks.app: + "/Lil Tanks.app": - when: - os: mac store: steam - /lil_tanks.exe: + "/lil_tanks.exe": - when: - os: windows store: steam - /runner: + "/runner": - when: - os: linux store: steam steam: id: 495820 -Lil' Arena: +"Lil' Arena": installDir: - Tall Guy Productions - Lil' Arena: {} + "Tall Guy Productions - Lil' Arena": {} launch: - /Lil' Arena.exe: + "/Lil' Arena.exe": - when: - os: windows store: steam steam: id: 945610 -Lil' Blue Buddy: +"Lil' Blue Buddy": installDir: - Lil' Blue Buddy: {} + "Lil' Blue Buddy": {} launch: - /Lil_Blue_Buddy.exe: + "/Lil_Blue_Buddy.exe": - when: - os: windows store: steam - /Lil_Blue_Buddy.x86: + "/Lil_Blue_Buddy.x86": - when: - os: linux store: steam - /Lil_Blue_Buddy_Mac.app: + "/Lil_Blue_Buddy_Mac.app": - when: - os: mac store: steam steam: id: 658450 -Lil' Sherman: +"Lil' Sherman": installDir: - lil' Sherman: {} + "lil' Sherman": {} launch: - /lil' Sherman - Dabster Entertainment.exe: + "/lil' Sherman - Dabster Entertainment.exe": - when: - os: windows store: steam registry: - HKEY_CURRENT_USER/Software/Dabster Entertainment/lil' Sherman - Dabster Entertainment: + "HKEY_CURRENT_USER/Software/Dabster Entertainment/lil' Sherman - Dabster Entertainment": tags: - config steam: @@ -307449,11 +308334,11 @@ LilGunBois: installDir: lilGunBois: {} launch: - /lilGunBois-x86_64.AppImage: + "/lilGunBois-x86_64.AppImage": - when: - os: linux store: steam - /lilGunBois.exe: + "/lilGunBois.exe": - when: - os: windows store: steam @@ -307462,43 +308347,43 @@ LilGunBois: LilPizzaBois: steam: id: 878220 -Lila's Sky Ark: +"Lila's Sky Ark": gog: id: 1206627106 installDir: LilasSkyArk: {} launch: - /SkyArk.app/Contents/MacOS/SkyArk: + "/SkyArk.app/Contents/MacOS/SkyArk": - when: - os: mac store: steam - /SkyArk.exe: + "/SkyArk.exe": - when: - os: windows store: steam - /SkyArk.x86_64: + "/SkyArk.x86_64": - when: - os: linux store: steam steam: id: 1573390 -Lila's Tale and the Hidden Forest: +"Lila's Tale and the Hidden Forest": installDir: - Lila's Tale: {} + "Lila's Tale": {} launch: - /Lila's Tale and the Hidden Forest.exe: + "/Lila's Tale and the Hidden Forest.exe": - when: - store: steam steam: id: 1622040 -'Lili: Child of Geos': +"Lili: Child of Geos": files: - /My Games/UnrealEngine3-MazeGame/MazeGame/Cloud: + "/My Games/UnrealEngine3-MazeGame/MazeGame/Cloud": tags: - save when: - os: windows - /My Games/UnrealEngine3-MazeGame/MazeGame/Config: + "/My Games/UnrealEngine3-MazeGame/MazeGame/Config": tags: - config when: @@ -307506,18 +308391,18 @@ Lila's Tale and the Hidden Forest: installDir: LiliApp: {} launch: - /Binaries/Win32/MazeGame-Win32-Shipping.exe: + "/Binaries/Win32/MazeGame-Win32-Shipping.exe": - when: - os: windows store: steam - workingDir: /Binaries/Win32 + workingDir: "/Binaries/Win32" steam: id: 266490 Lilipalace: installDir: Lilipalace: {} launch: - /LiLipalace.exe: + "/LiLipalace.exe": - when: - os: windows store: steam @@ -307527,7 +308412,7 @@ Lilitales: installDir: Lilitales: {} launch: - /Lilitales.exe: + "/Lilitales.exe": - when: - store: steam steam: @@ -307536,15 +308421,15 @@ Lilith-M: installDir: Lilith-M: {} launch: - /Lilith-M.app/Contents/MacOS/Lilith-M: + "/Lilith-M.app/Contents/MacOS/Lilith-M": - when: - os: mac store: steam - /Lilith-M.x86_64: + "/Lilith-M.x86_64": - when: - os: linux store: steam - /Lilith-M/Lilith-M.exe: + "/Lilith-M/Lilith-M.exe": - when: - os: windows store: steam @@ -307554,7 +308439,7 @@ Lilly Knight and the Three Cities of Lust: installDir: Lilly Knight: {} launch: - /Lilly Knight.exe: + "/Lilly Knight.exe": - when: - os: windows store: steam @@ -307567,12 +308452,12 @@ Lilly Knight and the Three Cities of Lust: id: 1197770 Lilly Looking Through: files: - /Library/Application Support/com.GeetaGames.LillyLookingThrough/Local Store/thesave: + "/Library/Application Support/com.GeetaGames.LillyLookingThrough/Local Store/thesave": tags: - save when: - os: mac - /com.GeetaGames.LillyLookingThrough/Local Store/thesave: + "/com.GeetaGames.LillyLookingThrough/Local Store/thesave": tags: - save when: @@ -307582,24 +308467,24 @@ Lilly Looking Through: installDir: Lilly Looking Through: {} launch: - /LillyLookingThrough.app/Contents/MacOS/LillyLookingThrough: + "/LillyLookingThrough.app/Contents/MacOS/LillyLookingThrough": - when: - os: mac store: steam - /LillyLookingThrough.exe: + "/LillyLookingThrough.exe": - when: - os: windows store: steam steam: id: 250030 -'Lilly and Sasha: Curse of the Immortals': +"Lilly and Sasha: Curse of the Immortals": files: - /Lilly and Sasha/Curse of the Immortals/*.save: + "/Lilly and Sasha/Curse of the Immortals/*.save": tags: - save when: - os: windows - /Lilly and Sasha/Curse of the Immortals/Options.ini: + "/Lilly and Sasha/Curse of the Immortals/Options.ini": tags: - config when: @@ -307607,40 +308492,40 @@ Lilly Looking Through: installDir: Lilly and Sasha Curse of the Immortals: {} launch: - /Lilly and Sasha.exe: + "/Lilly and Sasha.exe": - when: - os: windows store: steam steam: id: 364270 -'Lilly and Sasha: Guardian Angels': +"Lilly and Sasha: Guardian Angels": installDir: Lilly and Sasha Guardian Angels: {} launch: - /GuardianAngels.exe: + "/GuardianAngels.exe": - when: - os: windows store: steam steam: id: 383520 -'Lilly and Sasha: Nexus of Souls': +"Lilly and Sasha: Nexus of Souls": installDir: Lilly and Sasha Nexus of Souls: {} launch: - /NexusOfSouls.exe: + "/NexusOfSouls.exe": - when: - os: windows store: steam steam: id: 370040 -'Lilo & Stitch: Trouble in Paradise': +"Lilo & Stitch: Trouble in Paradise": files: - /Application Data/Disney Interactive/Lilo & Stitch Trouble In Paradise/LSConfig.ini: + "/Application Data/Disney Interactive/Lilo & Stitch Trouble In Paradise/LSConfig.ini": tags: - config when: - os: windows - /Application Data/Disney Interactive/Lilo & Stitch Trouble In Paradise/savegame.sav: + "/Application Data/Disney Interactive/Lilo & Stitch Trouble In Paradise/savegame.sav": tags: - save when: @@ -307649,7 +308534,7 @@ Lilt: installDir: LILT: {} launch: - /Lilt.exe: + "/Lilt.exe": - when: - os: windows store: steam @@ -307659,7 +308544,7 @@ Lily: installDir: Lily: {} launch: - /Lily.exe: + "/Lily.exe": - when: - os: windows store: steam @@ -307672,15 +308557,15 @@ Lily of the Valley: installDir: Lily of the Valley: {} launch: - /Lily of the Valley.app: + "/Lily of the Valley.app": - when: - os: mac store: steam - /Lily of the Valley.exe: + "/Lily of the Valley.exe": - when: - os: windows store: steam - /Lily of the Valley.sh: + "/Lily of the Valley.sh": - when: - os: linux store: steam @@ -307690,57 +308575,57 @@ Lily 白き百合の乙女たち Lisblanc: installDir: lisblanc: {} launch: - /lisblanc.exe: + "/lisblanc.exe": - when: - os: windows store: steam steam: id: 771960 -Lily's Day Off: +"Lily's Day Off": installDir: - Lily's Day Off: {} + "Lily's Day Off": {} launch: - /Contents/MacOS/Lily's Day Off Mac 6: + "/Contents/MacOS/Lily's Day Off Mac 6": - when: - os: mac store: steam - /Lily's Day Off.exe: + "/Lily's Day Off.exe": - when: - os: windows store: steam - /Lily's Day Off.x86: + "/Lily's Day Off.x86": - when: - os: linux store: steam steam: id: 575650 -Lily's Handmaid: +"Lily's Handmaid": installDir: - Lily's Handmaid: {} + "Lily's Handmaid": {} launch: - /lilyshandmaid.exe: + "/lilyshandmaid.exe": - when: - os: windows store: steam - /lilyshandmaid.sh: + "/lilyshandmaid.sh": - when: - os: linux store: steam steam: id: 1136910 -Lily's Night Off: +"Lily's Night Off": installDir: - Lily's Night Off: {} + "Lily's Night Off": {} launch: - /Contents/MacOS/Lily's Night Off: + "/Contents/MacOS/Lily's Night Off": - when: - os: mac store: steam - /Lily's Night Off.exe: + "/Lily's Night Off.exe": - when: - os: windows store: steam - /Lily's Night Off.x86: + "/Lily's Night Off.x86": - when: - os: linux store: steam @@ -307752,7 +308637,7 @@ Lilycle Rainbow Stage!!!: installDir: Lilycle Rainbow Stage!!!: {} launch: - /LYRSADV.exe: + "/LYRSADV.exe": - when: - store: steam steam: @@ -307761,15 +308646,15 @@ Lily´s Epic Quest: installDir: Lily´s Epic Quest: {} launch: - /Lily's Epic Quest.exe: + "/Lily's Epic Quest.exe": - when: - os: windows store: steam - /Lily's Epic Quest_Libredia.app/Contents/MacOS/Lily's Epic Quest_Libredia: + "/Lily's Epic Quest_Libredia.app/Contents/MacOS/Lily's Epic Quest_Libredia": - when: - os: mac store: steam - workingDir: /Lily's Epic Quest_Libredia.app/Contents/MacOS + workingDir: "/Lily's Epic Quest_Libredia.app/Contents/MacOS" steam: id: 507270 Limberjack: @@ -307779,28 +308664,28 @@ Limberjack: id: 500660 Limbo: files: - /save_game/savegame.txt: + "/save_game/savegame.txt": tags: - save when: - os: windows - /settings.txt: + "/settings.txt": tags: - config when: - os: windows - /Library/Application Support/Limbo: + "/Library/Application Support/Limbo": tags: - config - save when: - os: mac - /userdata//48000/remote: + "/userdata//48000/remote": tags: - save when: - store: steam - /PlayDead/Limbo: + "/PlayDead/Limbo": tags: - config - save @@ -307811,15 +308696,15 @@ Limbo: installDir: Limbo: {} launch: - /Limbo.app: + "/Limbo.app": - when: - os: mac store: steam - /Limbo.exe: + "/Limbo.exe": - when: - os: windows store: steam - /limbo: + "/limbo": - when: - os: linux store: steam @@ -307836,7 +308721,7 @@ Liminal: installDir: Liminal: {} launch: - /SuspiciousGame.exe: + "/SuspiciousGame.exe": - when: - bit: 64 os: windows @@ -307847,7 +308732,7 @@ Limit of Defense: installDir: Limit of defense: {} launch: - /Limit Of Defense.exe: + "/Limit Of Defense.exe": - when: - os: windows store: steam @@ -307860,7 +308745,7 @@ Linch: installDir: Linch: {} launch: - /LINCH.exe: + "/LINCH.exe": - when: - bit: 64 os: windows @@ -307871,15 +308756,15 @@ Line / Dash: installDir: LineDash: {} launch: - /Line Dash.exe: + "/Line Dash.exe": - when: - os: windows store: steam - /Linux.x86: + "/Linux.x86": - when: - os: linux store: steam - /mac/Line Dash.app/Contents/MacOS/Line Dash: + "/mac/Line Dash.app/Contents/MacOS/Line Dash": - when: - os: mac store: steam @@ -307892,11 +308777,11 @@ Line Loops - Logic Puzzles: installDir: Line Loops - Logic Puzzles: {} launch: - /Line Loops.app/Contents/MacOS/Line Loops: + "/Line Loops.app/Contents/MacOS/Line Loops": - when: - os: mac store: steam - /Line Loops.exe: + "/Line Loops.exe": - when: - os: windows store: steam @@ -307906,7 +308791,7 @@ Line War: installDir: Line War: {} launch: - /LineWarClient.exe: + "/LineWarClient.exe": - when: - os: windows store: steam @@ -307916,11 +308801,11 @@ Line Way: installDir: LineWay: {} launch: - /LineWay.app: + "/LineWay.app": - when: - os: mac store: steam - /LineWay.exe: + "/LineWay.exe": - when: - os: windows store: steam @@ -307930,7 +308815,7 @@ Line of Defense Tactics - Tactical Advantage: installDir: Line Of Defense Tactics: {} launch: - /LODTactics.exe: + "/LODTactics.exe": - when: - os: windows store: steam @@ -307938,7 +308823,7 @@ Line of Defense Tactics - Tactical Advantage: id: 267220 Line of Sight: files: - /LSGame/Config: + "/LSGame/Config": tags: - config when: @@ -307946,19 +308831,19 @@ Line of Sight: installDir: Line of Sight: {} launch: - /Binaries/Win32/LSGame.exe: + "/Binaries/Win32/LSGame.exe": - when: - os: windows store: steam steam: id: 436520 -'Line of Sight: Vietnam': +"Line of Sight: Vietnam": gog: id: 1939711261 installDir: Line of Sight Vietnam: {} launch: - /Vietnam.exe: + "/Vietnam.exe": - when: - os: windows store: steam @@ -307969,26 +308854,26 @@ Linea VR: Linea VR: {} steam: id: 1144100 -'Linea, the Game': +"Linea, the Game": installDir: - 'Linea, the Game': {} + "Linea, the Game": {} launch: - /Linea.app: + "/Linea.app": - when: - os: mac store: steam - /Linea.exe: + "/Linea.exe": - when: - os: windows store: steam - /Linea.x86: - - arguments: '-force-opengl' + "/Linea.x86": + - arguments: "-force-opengl" when: - bit: 32 os: linux store: steam - /Linea.x86_64: - - arguments: '-force-opengl' + "/Linea.x86_64": + - arguments: "-force-opengl" when: - bit: 64 os: linux @@ -307999,7 +308884,7 @@ Lineage: installDir: Lineage: {} launch: - /TestApp.exe: + "/TestApp.exe": - when: - store: steam steam: @@ -308007,12 +308892,12 @@ Lineage: Lineage II: id: steamExtra: - - 29590 - 29530 + - 29590 installDir: Lineage II: {} launch: - /L2.exe: + "/L2.exe": - when: - os: windows store: steam @@ -308022,16 +308907,16 @@ Linear Chicken: installDir: LinearChicken: {} launch: - /Contents/MacOS/LinearChicken - Mac: + "/Contents/MacOS/LinearChicken - Mac": - when: - os: mac store: steam - /LinearChicken.exe: + "/LinearChicken.exe": - when: - bit: 64 os: windows store: steam - /LinearChicken.x86_64: + "/LinearChicken.x86_64": - when: - bit: 64 os: linux @@ -308042,15 +308927,15 @@ Linelight: installDir: Linelight: {} launch: - /Linelight.app: + "/Linelight.app": - when: - os: mac store: steam - /Linelight.exe: + "/Linelight.exe": - when: - os: windows store: steam - /Linelight.x86: + "/Linelight.x86": - when: - os: linux store: steam @@ -308063,7 +308948,7 @@ Linelight: id: 469790 Linelith: files: - /Godot/app_userdata/Linelith: + "/Godot/app_userdata/Linelith": tags: - save when: @@ -308071,15 +308956,15 @@ Linelith: installDir: Linelith: {} launch: - /Linelith linux.x86_64: + "/Linelith linux.x86_64": - when: - os: linux store: steam - /Linelith.app/Contents/MacOS/Linelith: + "/Linelith.app/Contents/MacOS/Linelith": - when: - os: mac store: steam - /Linelith.exe: + "/Linelith.exe": - when: - os: windows store: steam @@ -308097,11 +308982,11 @@ Lines (Gamious): installDir: Lines: {} launch: - /lines_106.exe: + "/lines_106.exe": - when: - os: windows store: steam - /run.sh: + "/run.sh": - when: - os: linux store: steam @@ -308109,7 +308994,7 @@ Lines (Gamious): id: 458540 Lines Free by Nestor Yavorskyy: files: - /userdata//725340/remote: + "/userdata//725340/remote": tags: - save when: @@ -308117,15 +309002,15 @@ Lines Free by Nestor Yavorskyy: installDir: Lines X Free: {} launch: - /Lines X Free.app: + "/Lines X Free.app": - when: - os: mac store: steam - /Lines X Free.exe: + "/Lines X Free.exe": - when: - os: windows store: steam - /Lines X Free.x86_64: + "/Lines X Free.x86_64": - when: - os: linux store: steam @@ -308142,15 +309027,15 @@ Lines Infinite: installDir: Lines Infinite: {} launch: - /Lines Infinite.app: + "/Lines Infinite.app": - when: - os: mac store: steam - /Lines Infinite.exe: + "/Lines Infinite.exe": - when: - os: windows store: steam - /Lines Infinite.x86_64: + "/Lines Infinite.x86_64": - when: - os: linux store: steam @@ -308167,15 +309052,15 @@ Lines X: installDir: Lines X: {} launch: - /Lines X.app: + "/Lines X.app": - when: - os: mac store: steam - /Lines X.exe: + "/Lines X.exe": - when: - os: windows store: steam - /Lines X.x86_64: + "/Lines X.x86_64": - when: - os: linux store: steam @@ -308192,15 +309077,15 @@ Lines X Free: installDir: Lines X Free: {} launch: - /Lines X Free.app: + "/Lines X Free.app": - when: - os: mac store: steam - /Lines X Free.exe: + "/Lines X Free.exe": - when: - os: windows store: steam - /Lines X Free.x86_64: + "/Lines X Free.x86_64": - when: - os: linux store: steam @@ -308210,18 +309095,18 @@ Ling: installDir: Ling: {} launch: - /WindowsNoEditor/Ling.exe: + "/WindowsNoEditor/Ling.exe": - when: - bit: 64 os: windows store: steam steam: id: 775800 -'Ling: A Road Alone': +"Ling: A Road Alone": installDir: Ling_A_Road_Alone: {} launch: - /WindowsNoEditor/Ling.exe: + "/WindowsNoEditor/Ling.exe": - when: - bit: 64 os: windows @@ -308235,7 +309120,7 @@ Lingering Fragrance: installDir: Lingering Fragrance: {} launch: - /LF.exe: + "/LF.exe": - when: - store: steam steam: @@ -308244,25 +309129,25 @@ Lingotopia: installDir: Lingotopia: {} launch: - /Lingotopia-Linux.x86_64: + "/Lingotopia-Linux.x86_64": - when: - os: linux store: steam - /Lingotopia-Mac.app: + "/Lingotopia-Mac.app": - when: - os: mac store: steam - /Lingotopia.exe: + "/Lingotopia.exe": - when: - os: windows store: steam steam: id: 860640 -'Lingua Fleur: Lily': +"Lingua Fleur: Lily": installDir: Lingua Fleur Lily: {} launch: - /Lingua Fleur_Lily.exe: + "/Lingua Fleur_Lily.exe": - when: - store: steam steam: @@ -308274,7 +309159,7 @@ Link: installDir: Link: {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: @@ -308283,7 +309168,7 @@ Link Twin: installDir: Link Twin: {} launch: - /LinkTwin.exe: + "/LinkTwin.exe": - when: - os: windows store: steam @@ -308296,25 +309181,25 @@ Link the animals: installDir: Link the animals: {} launch: - /Link The Animals.x86_64: + "/Link The Animals.x86_64": - when: - os: linux store: steam - /Link the animals.app: + "/Link the animals.app": - when: - os: mac store: steam - /Link the animals.exe: + "/Link the animals.exe": - when: - os: windows store: steam steam: id: 1082650 -'Link: The Unleashed Nexus': +"Link: The Unleashed Nexus": installDir: Link_TheUnleashedNexus: {} launch: - /Project_Link.exe: + "/Project_Link.exe": - when: - os: windows store: steam @@ -308327,7 +309212,7 @@ Linked: installDir: Linked: {} launch: - /Linked.exe: + "/Linked.exe": - when: - os: windows store: steam @@ -308337,7 +309222,7 @@ Linked Mask: installDir: Linked Mask: {} launch: - /LinkedMask.exe: + "/LinkedMask.exe": - when: - os: windows store: steam @@ -308347,7 +309232,7 @@ Linkrealms: installDir: Linkrealms: {} launch: - /PatchNews.exe: + "/PatchNews.exe": - when: - os: windows store: steam @@ -308356,17 +309241,17 @@ Linkrealms: Links 386 Pro: gog: id: 1937439756 -'Links LS: 1998 Edition': +"Links LS: 1998 Edition": gog: id: 1151948886 -'Links: The Challenge of Golf': +"Links: The Challenge of Golf": gog: id: 1664962437 Linx Battle Arena: installDir: LINX BATTLE ARENA: {} launch: - /LBA.exe: + "/LBA.exe": - when: - bit: 64 os: windows @@ -308377,22 +309262,22 @@ Lion Quest: installDir: Lion Quest: {} launch: - /Lion Quest.app: + "/Lion Quest.app": - when: - os: mac store: steam - /Lion Quest.exe: + "/Lion Quest.exe": - when: - os: windows store: steam - /Lion Quest.x86: - - arguments: '-force-opengl' + "/Lion Quest.x86": + - arguments: "-force-opengl" when: - bit: 32 os: linux store: steam - /Lion Quest.x86_64: - - arguments: '-force-opengl' + "/Lion Quest.x86_64": + - arguments: "-force-opengl" when: - bit: 64 os: linux @@ -308401,12 +309286,12 @@ Lion Quest: id: 370130 Lionessy Story: files: - /lionessy_story/game/saves: + "/lionessy_story/game/saves": tags: - save when: - os: windows - /renpy/config.py: + "/renpy/config.py": tags: - config when: @@ -308414,11 +309299,11 @@ Lionessy Story: installDir: Lionessy Story: {} launch: - /lionessy_story/lionessy_story.exe: + "/lionessy_story/lionessy_story.exe": - when: - os: windows store: steam - /lionessy_story/lionessy_story.sh: + "/lionessy_story/lionessy_story.sh": - when: - os: linux store: steam @@ -308428,14 +309313,14 @@ Lionheart: installDir: Lionheart: {} launch: - /Lionheart.exe: + "/Lionheart.exe": - when: - store: steam steam: id: 494160 -'Lionheart: Legacy of the Crusader': +"Lionheart: Legacy of the Crusader": files: - /Lionheart.CFG: + "/Lionheart.CFG": tags: - config when: @@ -308445,7 +309330,7 @@ Lionheart: installDir: Lionheart Legacy of the Crusader: {} launch: - /Lionheart.exe: + "/Lionheart.exe": - when: - os: windows store: steam @@ -308455,11 +309340,11 @@ Liquid Pinball: installDir: Liquid Pinball: {} launch: - /Liquid Pinball.app: + "/Liquid Pinball.app": - when: - os: mac store: steam - /Pinball.W7.exe: + "/Pinball.W7.exe": - when: - os: windows store: steam @@ -308474,15 +309359,15 @@ Liquid Sunshine: installDir: Liquid Sunshine: {} launch: - /Liquid Sunshine.app/Contents/MacOS/Liquid Sunshine: + "/Liquid Sunshine.app/Contents/MacOS/Liquid Sunshine": - when: - os: mac store: steam - /Liquid Sunshine.exe: + "/Liquid Sunshine.exe": - when: - os: windows store: steam - /Liquid Sunshine.x86_64: + "/Liquid Sunshine.x86_64": - when: - bit: 64 os: linux @@ -308493,32 +309378,32 @@ Liquidator: installDir: Liquidator: {} launch: - /Liquidator.exe: + "/Liquidator.exe": - when: - os: windows store: steam steam: id: 716890 -'Liquidator 2: Welcome to Hell': +"Liquidator 2: Welcome to Hell": files: - /My Games/Liquidator2/Default: + "/My Games/Liquidator2/Default": tags: - config when: - os: windows - /My Games/Liquidator2/Default/save: + "/My Games/Liquidator2/Default/save": tags: - save when: - os: windows Liquidators: files: - /Liquidatortest/Saved/Config/WindowsNoEditor: + "/Liquidatortest/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /Liquidatortest/Saved/SaveGames: + "/Liquidatortest/Saved/SaveGames": tags: - save when: @@ -308526,7 +309411,7 @@ Liquidators: installDir: Liquidators: {} launch: - /Liquidatortest.exe: + "/Liquidatortest.exe": - when: - bit: 64 os: windows @@ -308537,36 +309422,36 @@ Lisa and the Grimoire: installDir: Lisa and the Grimoire: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: id: 1342050 -Lisa's Memory - 丽莎的记忆: +"Lisa's Memory - 丽莎的记忆": installDir: - Lisa's Memory: {} + "Lisa's Memory": {} launch: - /LisasMemory.exe: + "/LisasMemory.exe": - when: - store: steam steam: id: 679490 -'Lisa: Definitive Edition': +"Lisa: Definitive Edition": files: - /AppData/LocalLow/Serenity Forge/LISA The Painful Definitive Edition/Savegame*.dat: + "/AppData/LocalLow/Serenity Forge/LISA The Painful Definitive Edition/Savegame*.dat": tags: - save when: - os: windows - /AppData/LocalLow/Serenity Forge/LISA The Painful Definitive Edition/UserSettings.dat: + "/AppData/LocalLow/Serenity Forge/LISA The Painful Definitive Edition/UserSettings.dat": tags: - config when: - os: windows id: steamExtra: - - 379310 - 336370 + - 379310 installDir: LISA: {} registry: @@ -308575,18 +309460,18 @@ Lisa's Memory - 丽莎的记忆: - config steam: id: 335670 -'Lisa: The First': +"Lisa: The First": files: - /*.lsd: + "/*.lsd": tags: - save when: - os: windows -'Lisa: The Painful': +"Lisa: The Painful": id: steamExtra: - - 379310 - 336370 + - 379310 installDir: LISA: {} steam: @@ -308595,7 +309480,7 @@ Lisssn: installDir: Lisssn: {} launch: - /Lisssn.exe: + "/Lisssn.exe": - when: - os: windows store: steam @@ -308605,7 +309490,7 @@ List of games that have Discord Rich Presence: installDir: Espresso Tycoon: {} launch: - /Espresso Tycoon.exe: + "/Espresso Tycoon.exe": - when: - store: steam steam: @@ -308614,15 +309499,15 @@ Listeria Wars: installDir: Listeria Wars: {} launch: - /Listeria Wars Mac.app/Contents/MacOS/Listeria Wars: + "/Listeria Wars Mac.app/Contents/MacOS/Listeria Wars": - when: - os: mac store: steam - /Listeria Wars.exe: + "/Listeria Wars.exe": - when: - os: windows store: steam - /Listeria Wars.x86_64: + "/Listeria Wars.x86_64": - when: - os: linux store: steam @@ -308632,7 +309517,7 @@ Lit: installDir: LIT: {} launch: - /LIT_PC.exe: + "/LIT_PC.exe": - when: - os: windows store: steam @@ -308642,7 +309527,7 @@ Lit the Torch: installDir: Lit the Torch: {} launch: - /Lit the Torch.exe: + "/Lit the Torch.exe": - when: - store: steam steam: @@ -308651,18 +309536,18 @@ Lithium Inmate 39 Relapsed Edition: installDir: Lithium Inmate 39 Relapsed Edition: {} launch: - /Lithium.exe: + "/Lithium.exe": - when: - bit: 64 os: windows store: steam steam: id: 1161510 -'Lithium: Inmate 39': +"Lithium: Inmate 39": installDir: Lithium Inmate 39: {} launch: - /Lithium.exe: + "/Lithium.exe": - when: - os: windows store: steam @@ -308674,8 +309559,8 @@ Litil Divil: installDir: Litil Divil: {} launch: - /dosbox.exe: - - arguments: '-conf dosboxLilDevil.conf' + "/dosbox.exe": + - arguments: "-conf dosboxLilDevil.conf" when: - store: steam steam: @@ -308684,7 +309569,7 @@ Little Adventurer II: installDir: ee: {} launch: - /Adventurer.exe: + "/Adventurer.exe": - when: - os: windows store: steam @@ -308694,7 +309579,7 @@ Little Adventurer III: installDir: ee: {} launch: - /Little adventurer III.exe: + "/Little adventurer III.exe": - when: - os: windows store: steam @@ -308710,12 +309595,12 @@ Little Awesome Dudes: id: 1133230 Little Big Adventure: files: - /LBA.cfg: + "/LBA.cfg": tags: - config when: - os: dos - /S****.LBA: + "/S****.LBA": tags: - save when: @@ -308723,17 +309608,17 @@ Little Big Adventure: gog: id: 1207658971 installDir: - Twinsen's Little Big Adventure Classic: {} + "Twinsen's Little Big Adventure Classic": {} steam: id: 397330 Little Big Adventure 2: files: - /LBA2.cfg: + "/LBA2.cfg": tags: - config when: - os: dos - /SAVE: + "/SAVE": tags: - save when: @@ -308743,20 +309628,20 @@ Little Big Adventure 2: installDir: Little Big Adventure 2: {} launch: - /DOSBOX/DOSBox.exe: - - arguments: '-conf LBA2.conf -noconsole' + "/DOSBOX/DOSBox.exe": + - arguments: "-conf LBA2.conf -noconsole" when: - store: steam steam: id: 398000 -'Little Big Adventure: Enhanced Edition': +"Little Big Adventure: Enhanced Edition": files: - /saves: + "/saves": tags: - save when: - os: windows - /LBA/UserDefault.xml: + "/LBA/UserDefault.xml": tags: - config when: @@ -308764,17 +309649,17 @@ Little Big Adventure 2: gog: id: 1207658971 installDir: - Twinsen's Little Big Adventure Classic: {} + "Twinsen's Little Big Adventure Classic": {} steam: id: 397330 Little Big Workshop: files: - /AppData/LocalLow/Mirage Game Studios/Little Big Workshop/lbw.settings: + "/AppData/LocalLow/Mirage Game Studios/Little Big Workshop/lbw.settings": tags: - config when: - os: windows - /AppData/LocalLow/Mirage Game Studios/Little Big Workshop/saves: + "/AppData/LocalLow/Mirage Game Studios/Little Big Workshop/saves": tags: - save when: @@ -308784,11 +309669,11 @@ Little Big Workshop: installDir: LittleBigWorkshop: {} launch: - /LittleBigWorkshop.app/Contents/MacOS/Little Big Workshop: + "/LittleBigWorkshop.app/Contents/MacOS/Little Big Workshop": - when: - os: mac store: steam - /LittleBigWorkshop.exe: + "/LittleBigWorkshop.exe": - when: - os: windows store: steam @@ -308800,7 +309685,7 @@ Little Big Workshop: id: 574720 Little Briar Rose: files: - 'C:/Program Files (x86)/Steam/userdata/steamid/555290/remote': + "C:/Program Files (x86)/Steam/userdata/steamid/555290/remote": tags: - save when: @@ -308808,20 +309693,20 @@ Little Briar Rose: installDir: Little Briar Rose: {} launch: - /lbr.app/Contents/MacOS/lbr: + "/lbr.app/Contents/MacOS/lbr": - when: - os: mac store: steam - /lbr.exe: + "/lbr.exe": - when: - os: windows store: steam - /lbr.x86: + "/lbr.x86": - when: - bit: 32 os: linux store: steam - /lbr.x86_64: + "/lbr.x86_64": - when: - bit: 64 os: linux @@ -308832,7 +309717,7 @@ Little Brother Jim: installDir: Little Brother Jim: {} launch: - /Jim.exe: + "/Jim.exe": - when: - bit: 64 os: windows @@ -308841,12 +309726,12 @@ Little Brother Jim: id: 1113970 Little Bug: files: - /AppData/LocalLow/bubbles/Little Bug/SaveData.es3: + "/AppData/LocalLow/bubbles/Little Bug/SaveData.es3": tags: - save when: - os: windows - /unity3d/bubbles/Little Bug/prefs: + "/unity3d/bubbles/Little Bug/prefs": tags: - config when: @@ -308856,15 +309741,15 @@ Little Bug: installDir: Little Bug: {} launch: - /Little Bug.app/Contents/MacOS/Little Bug: + "/Little Bug.app/Contents/MacOS/Little Bug": - when: - os: mac store: steam - /Little Bug.exe: + "/Little Bug.exe": - when: - os: windows store: steam - /Little Bug.x86: + "/Little Bug.x86": - when: - os: linux store: steam @@ -308872,12 +309757,12 @@ Little Bug: id: 822190 Little Busters!: files: - /userdata//635940/remote/config.dat: + "/userdata//635940/remote/config.dat": tags: - save when: - store: steam - /userdata//635940/remote/data*.*: + "/userdata//635940/remote/data*.*": tags: - save when: @@ -308885,7 +309770,7 @@ Little Busters!: installDir: Little Busters! English Edition: {} launch: - /LITBUS_WIN32.exe: + "/LITBUS_WIN32.exe": - when: - os: windows store: steam @@ -308895,15 +309780,15 @@ Little Cells: installDir: Little Cells: {} launch: - /Little Cells.app/Contents/MacOS/cell: + "/Little Cells.app/Contents/MacOS/cell": - when: - os: mac store: steam - /cell: + "/cell": - when: - os: linux store: steam - /cell.exe: + "/cell.exe": - when: - os: windows store: steam @@ -308913,11 +309798,11 @@ Little Comet: installDir: Little Comet: {} launch: - /Little Comet.app: + "/Little Comet.app": - when: - os: mac store: steam - /little-comet.exe: + "/little-comet.exe": - when: - os: windows store: steam @@ -308933,7 +309818,7 @@ Little Dragons Café: installDir: Little Dragons Café: {} launch: - /LDC.exe: + "/LDC.exe": - when: - bit: 64 os: windows @@ -308944,7 +309829,7 @@ Little Dungeon Stories: installDir: Little Dungeon Stories: {} launch: - /Little Dungeon Stories.exe: + "/Little Dungeon Stories.exe": - when: - os: windows store: steam @@ -308962,15 +309847,16 @@ Little Einar: id: 677710 Little Farm: files: - /Hot Lava Games/Little Farm/1.41/Data/profile0000.xml: + "/Hot Lava Games/Little Farm/1.41/Data/profile0000.xml": tags: - save when: - - store: steam + - os: windows + store: steam installDir: Little Farm: {} launch: - /LittleFarm.exe: + "/LittleFarm.exe": - when: - store: steam steam: @@ -308979,7 +309865,7 @@ Little Fight: installDir: Little fight: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -308989,11 +309875,11 @@ Little Gold Miner: installDir: Little Gold Miner: {} launch: - /LGM.exe: + "/LGM.exe": - when: - os: windows store: steam - /LGM.x86: + "/LGM.x86": - when: - os: linux store: steam @@ -309006,7 +309892,7 @@ Little Helper: installDir: LittleHelper: {} launch: - /littlehelper.exe: + "/littlehelper.exe": - when: - bit: 64 os: windows @@ -309017,7 +309903,7 @@ Little Hidden City: installDir: Little hidden city: {} launch: - /Little Hidden City.exe: + "/Little Hidden City.exe": - when: - os: windows store: steam @@ -309025,12 +309911,12 @@ Little Hidden City: id: 706490 Little Hope: files: - /LittleHope/Saved/Config/WindowsNoEditor: + "/LittleHope/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /LittleHope/Saved/SaveGames: + "/LittleHope/Saved/SaveGames": tags: - save when: @@ -309038,17 +309924,17 @@ Little Hope: installDir: The Dark Pictures Anthology - Little Hope: {} launch: - /LittleHope.exe: + "/LittleHope.exe": - when: - os: windows store: steam steam: id: 1194630 -'Little Imps: A Dungeon Builder': +"Little Imps: A Dungeon Builder": installDir: Little Imps: {} launch: - /LittleImps.exe: + "/LittleImps.exe": - when: - os: windows store: steam @@ -309056,37 +309942,37 @@ Little Hope: id: 883970 Little Inferno: files: - /Library/Application Support/Little Inferno/profiles.bin: + "/Library/Application Support/Little Inferno/profiles.bin": tags: - save when: - os: mac - /Library/Application Support/Little Inferno/settings.txt: + "/Library/Application Support/Little Inferno/settings.txt": tags: - config when: - os: mac - /Little Inferno/profiles.bin: + "/Little Inferno/profiles.bin": tags: - save when: - os: windows - /Little Inferno/settings.txt: + "/Little Inferno/settings.txt": tags: - config when: - os: windows - /Tomorrow Corporation/Little Inferno/settings.txt: + "/Tomorrow Corporation/Little Inferno/settings.txt": tags: - config when: - os: linux - /littleinferno/profiles.bin: + "/littleinferno/profiles.bin": tags: - save when: - os: linux - /littleinferno/settings.txt: + "/littleinferno/settings.txt": tags: - config when: @@ -309096,47 +309982,47 @@ Little Inferno: installDir: Little Inferno Beta: {} launch: - /Little Inferno.app/Contents/MacOS/Little Inferno: + "/Little Inferno.app/Contents/MacOS/Little Inferno": - when: - os: mac store: steam - /Little Inferno.exe: + "/Little Inferno.exe": - when: - os: windows store: steam - /LittleInferno.bin.x86: + "/LittleInferno.bin.x86": - when: - bit: 32 os: linux store: steam - /LittleInferno.bin.x86_64: + "/LittleInferno.bin.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 221260 -Little Jack's Adventures: +"Little Jack's Adventures": installDir: - Little Jack's Adventures: {} + "Little Jack's Adventures": {} launch: - /LittleJackAdventures_LINUX: + "/LittleJackAdventures_LINUX": - when: - os: linux store: steam - /LittleJackAdventures_MAC.app: + "/LittleJackAdventures_MAC.app": - when: - os: mac store: steam - /LittleJackAdventures_windows.exe: + "/LittleJackAdventures_windows.exe": - when: - os: windows store: steam steam: id: 571870 -Little King's Story: +"Little King's Story": files: - /save: + "/save": tags: - config - save @@ -309145,9 +310031,9 @@ Little King's Story: gog: id: 1460733072 installDir: - Little King's Story: {} + "Little King's Story": {} launch: - /RunGame.exe: + "/RunGame.exe": - when: - os: windows store: steam @@ -309157,15 +310043,19 @@ Little Kingdom 2: installDir: Little Kingdom 2: {} launch: - /Little Kingdom 2.exe: + "/Little Kingdom 2.exe": - when: - os: windows store: steam + - os: mac + store: steam + - os: linux + store: steam steam: id: 554590 Little Kite: files: - /AppData/LocalLow/Anate Studio/Little Kite: + "/AppData/LocalLow/Anate Studio/Little Kite": tags: - save when: @@ -309173,12 +310063,12 @@ Little Kite: installDir: Little Kite: {} launch: - /LittleKite.app/Contents/MacOS/LittleKite: + "/LittleKite.app/Contents/MacOS/LittleKite": - when: - bit: 64 os: mac store: steam - /LittleKite.exe: + "/LittleKite.exe": - when: - bit: 64 os: windows @@ -309192,11 +310082,11 @@ Little Lords of Twilight: installDir: Little Lords of Twilight: {} launch: - /llot_macosx.app: + "/llot_macosx.app": - when: - os: mac store: steam - /llot_win.exe: + "/llot_win.exe": - when: - os: windows store: steam @@ -309206,17 +310096,17 @@ Little Lost Robots: installDir: Little Lost Robots: {} launch: - /Little Lost Robots.exe: + "/Little Lost Robots.exe": - when: - os: windows store: steam steam: id: 1009590 -Little Marisa's Disaster Journey: +"Little Marisa's Disaster Journey": installDir: - Little Marisa's Disaster Journey: {} + "Little Marisa's Disaster Journey": {} launch: - /LMDJ.exe: + "/LMDJ.exe": - when: - store: steam steam: @@ -309228,7 +310118,7 @@ Little Memories: installDir: Little Memories: {} launch: - /littlememories.exe: + "/littlememories.exe": - when: - os: windows store: steam @@ -309236,7 +310126,7 @@ Little Memories: id: 941630 Little Misfortune: files: - /AppData/LocalLow/Killmonday Games/Little Misfortune/Little_Misfortune_*.save: + "/AppData/LocalLow/Killmonday Games/Little Misfortune/Little_Misfortune_*.save": tags: - save when: @@ -309246,15 +310136,15 @@ Little Misfortune: installDir: Little Misfortune: {} launch: - /Little Misfortune.app: + "/Little Misfortune.app": - when: - os: mac store: steam - /Little Misfortune.exe: + "/Little Misfortune.exe": - when: - os: windows store: steam - /Little Misfortune.x86_64: + "/Little Misfortune.x86_64": - when: - os: linux store: steam @@ -309268,25 +310158,25 @@ Little Miss Lonely: installDir: Little Miss Lonely: {} launch: - /Little Miss Lonely.exe: + "/Little Miss Lonely.exe": - when: - store: steam steam: id: 651820 -Little Mouse's Encyclopedia: +"Little Mouse's Encyclopedia": installDir: LittleMousesEncyclopedia: {} launch: - /LittleMousesEncyclopedia.app: + "/LittleMousesEncyclopedia.app": - when: - os: mac store: steam - /LittleMousesEncyclopedia.exe: + "/LittleMousesEncyclopedia.exe": - when: - os: windows store: steam - /LittleMousesEncyclopedia.x86: - - arguments: '-force-glcore42 -force-clamped' + "/LittleMousesEncyclopedia.x86": + - arguments: "-force-glcore42 -force-clamped" when: - os: linux store: steam @@ -309294,12 +310184,12 @@ Little Mouse's Encyclopedia: id: 424200 Little Nightmares: files: - /Atlas/Saved/Config/WindowsNoEditor: + "/Atlas/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /Atlas/Saved/SaveGames: + "/Atlas/Saved/SaveGames": tags: - save when: @@ -309308,13 +310198,13 @@ Little Nightmares: id: 1433377508 id: gogExtra: + - 1185734803 + - 1352220891 + - 1433377508 + - 1675156362 + - 1863057712 - 1866912153 - 1927525613 - - 1863057712 - - 1675156362 - - 1185734803 - - 1433377508 - - 1352220891 steamExtra: - 584090 - 584091 @@ -309329,7 +310219,7 @@ Little Nightmares: installDir: Little Nightmares: {} launch: - /Atlas/Binaries/Win64/LittleNightmares.exe: + "/Atlas/Binaries/Win64/LittleNightmares.exe": - when: - bit: 64 os: windows @@ -309338,12 +310228,12 @@ Little Nightmares: id: 424840 Little Nightmares II: files: - /Helios/Saved/Config/WindowsNoEditor: + "/Helios/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /Helios/Saved/SaveGames: + "/Helios/Saved/SaveGames": tags: - save when: @@ -309358,7 +310248,7 @@ Little Nightmares II: installDir: Little Nightmares II: {} launch: - /Helios/Binaries/Win64/Little Nightmares II.exe: + "/Helios/Binaries/Win64/Little Nightmares II.exe": - when: - bit: 64 os: windows @@ -309368,9 +310258,9 @@ Little Nightmares II: Little Nightmares III: steam: id: 1392860 -'Little Noah: Scion of Paradise': +"Little Noah: Scion of Paradise": files: - '/AppData/LocalLow/Cygames, Inc_/Little Noah_ Scion of Paradise/*.sav': + "/AppData/LocalLow/Cygames, Inc_/Little Noah_ Scion of Paradise/*.sav": tags: - save when: @@ -309378,13 +310268,13 @@ Little Nightmares III: installDir: LITTLE NOAH: {} launch: - /LittleNoah.exe: + "/LittleNoah.exe": - when: - bit: 64 os: windows store: steam registry: - 'HKEY_CURRENT_USER/Software/Cygames, Inc./Little Noah: Scion of Paradise': + "HKEY_CURRENT_USER/Software/Cygames, Inc./Little Noah: Scion of Paradise": tags: - config steam: @@ -309393,7 +310283,7 @@ Little One: installDir: Little One: {} launch: - /Little One.exe: + "/Little One.exe": - when: - os: windows store: steam @@ -309401,12 +310291,12 @@ Little One: id: 1071350 Little Orpheus: files: - /AppData/LocalLow/The Chinese Room/Little Orpheus: + "/AppData/LocalLow/The Chinese Room/Little Orpheus": tags: - config when: - os: windows - /AppData/LocalLow/The Chinese Room/Little Orpheus/profiles: + "/AppData/LocalLow/The Chinese Room/Little Orpheus/profiles": tags: - save when: @@ -309417,7 +310307,7 @@ Little Orpheus: installDir: Little Orpheus: {} launch: - /littleorpheus.exe: + "/littleorpheus.exe": - when: - bit: 64 os: windows @@ -309429,12 +310319,12 @@ Little People: id: 708480 Little Racers Street: files: - /userdata//262690/remote: + "/userdata//262690/remote": tags: - save when: - store: steam - /userdata//262690/remote/config.xml: + "/userdata//262690/remote/config.xml": tags: - config when: @@ -309442,15 +310332,15 @@ Little Racers Street: installDir: Little Racers STREET: {} launch: - /LittleRacersStreet: + "/LittleRacersStreet": - when: - os: linux store: steam - /LittleRacersStreet.app: + "/LittleRacersStreet.app": - when: - os: mac store: steam - /LittleRacersStreet.exe: + "/LittleRacersStreet.exe": - when: - os: windows store: steam @@ -309463,7 +310353,7 @@ Little Reaper: installDir: Little Reaper: {} launch: - /LittleReaper.exe: + "/LittleReaper.exe": - when: - os: windows store: steam @@ -309473,11 +310363,11 @@ Little Red Lie: installDir: Little Red Lie: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam - /OSX.app: + "/OSX.app": - when: - os: mac store: steam @@ -309493,7 +310383,7 @@ Little Savior / リトルセイバー: installDir: Little Savior: {} launch: - /LittleSavior.exe: + "/LittleSavior.exe": - when: - os: windows store: steam @@ -309506,11 +310396,11 @@ Little Smart Planet: installDir: Little Smart Planet: {} launch: - /lsp.app/Contents/MacOS/lsp: + "/lsp.app/Contents/MacOS/lsp": - when: - os: mac store: steam - /lsp.exe: + "/lsp.exe": - when: - os: windows store: steam @@ -309520,7 +310410,7 @@ Little Square Things: installDir: Little Square Things: {} launch: - /Little Square Things.exe: + "/Little Square Things.exe": - when: - os: windows store: steam @@ -309530,7 +310420,7 @@ Little Tennis: installDir: Little Tennis: {} launch: - /Little Tennis.exe: + "/Little Tennis.exe": - when: - os: windows store: steam @@ -309540,7 +310430,7 @@ Little Town Hero: installDir: Little Town Hero: {} launch: - /littleTownHero.exe: + "/littleTownHero.exe": - when: - bit: 64 os: windows @@ -309551,11 +310441,11 @@ Little Triangle: installDir: Little Triangle: {} launch: - /LittleTriangle.app: + "/LittleTriangle.app": - when: - os: mac store: steam - /LittleTriangle.exe: + "/LittleTriangle.exe": - when: - os: windows store: steam @@ -309565,20 +310455,20 @@ Little Walker: installDir: littlewalker: {} launch: - /littlewalker.exe: + "/littlewalker.exe": - when: - os: windows store: steam steam: id: 448500 -'Little Witch Academia: Chamber of Time': +"Little Witch Academia: Chamber of Time": files: - /LWA.cfg: + "/LWA.cfg": tags: - config when: - os: windows - /BANDAI NAMCO Entertainment/Little Witch Academia/14608/Save: + "/BANDAI NAMCO Entertainment/Little Witch Academia/14608/Save": tags: - save when: @@ -309586,13 +310476,13 @@ Little Walker: installDir: Little Witch Academia: {} launch: - /LWA.exe: + "/LWA.exe": - when: - os: windows store: steam steam: id: 710470 -'Little Witch Academia: VR Broom Racing': +"Little Witch Academia: VR Broom Racing": installDir: Little Witch Academia VR Broom Racing: {} steam: @@ -309601,7 +310491,7 @@ Little Witch Luana: installDir: Bruxinha Luana_win32: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -309609,7 +310499,7 @@ Little Witch Luana: id: 1180550 Little Witch Nobeta: files: - /LittleWitchNobeta_Data/Save: + "/LittleWitchNobeta_Data/Save": tags: - save when: @@ -309617,7 +310507,7 @@ Little Witch Nobeta: installDir: Little Witch Nobeta: {} launch: - /LittleWitchNobeta.exe: + "/LittleWitchNobeta.exe": - when: - os: windows store: steam @@ -309627,11 +310517,11 @@ Little Witch in the Woods: installDir: Little Witch in the Woods: {} launch: - /LWIW.app: + "/LWIW.app": - when: - os: mac store: steam - /LWIW.exe: + "/LWIW.exe": - when: - bit: 64 os: windows @@ -309642,7 +310532,7 @@ Little World Of Creatures: installDir: Little World Of Creatures: {} launch: - /Little World Of Creatures.exe: + "/Little World Of Creatures.exe": - when: - os: windows store: steam @@ -309654,11 +310544,11 @@ Little elf: LittleBigSoko: steam: id: 861480 -'Littlewitch Romanesque: Editio Regia': +"Littlewitch Romanesque: Editio Regia": installDir: Littlewitch Romanesque Editio Regia: {} launch: - /Littlewitch.exe: + "/Littlewitch.exe": - when: - os: windows store: steam @@ -309666,12 +310556,12 @@ LittleBigSoko: id: 349300 Littlewood: files: - /.config/unity3d/SmashGames/Littlewood: + "/.config/unity3d/SmashGames/Littlewood": tags: - config when: - os: linux - /AppData/LocalLow/SmashGames/Littlewood: + "/AppData/LocalLow/SmashGames/Littlewood": tags: - save when: @@ -309681,15 +310571,15 @@ Littlewood: installDir: Littlewood: {} launch: - /Littlewood.app/Contents/MacOS/Littlewood: + "/Littlewood.app/Contents/MacOS/Littlewood": - when: - os: mac store: steam - /Littlewood.exe: + "/Littlewood.exe": - when: - os: windows store: steam - /Littlewood.x86_64: + "/Littlewood.x86_64": - when: - os: linux store: steam @@ -309699,16 +310589,16 @@ Live: installDir: Live: {} launch: - /Live.app/Contents/MacOS/Live: + "/Live.app/Contents/MacOS/Live": - when: - os: mac store: steam - /Live.exe: + "/Live.exe": - when: - bit: 64 os: windows store: steam - /Live.x86_64: + "/Live.x86_64": - when: - bit: 64 os: linux @@ -309717,12 +310607,12 @@ Live: id: 696060 Live A Live: files: - /My Games/LIVEALIVE/Steam//SaveGames: + "/My Games/LIVEALIVE/Steam//SaveGames": tags: - save when: - os: windows - /My Games/LIVEALIVE/Steam/Config/WindowsNoEditor: + "/My Games/LIVEALIVE/Steam/Config/WindowsNoEditor": tags: - config when: @@ -309730,7 +310620,7 @@ Live A Live: installDir: LIVEALIVE: {} launch: - /LIVEALIVE.exe: + "/LIVEALIVE.exe": - when: - os: windows store: steam @@ -309743,7 +310633,7 @@ Live Desktop Beauty: installDir: Live Desktop Beauty: {} launch: - /Live Desktop Beauty.exe: + "/Live Desktop Beauty.exe": - when: - os: windows store: steam @@ -309758,15 +310648,15 @@ Live Mince: installDir: live Mince: {} launch: - /live Mince.app/Contents/MacOS/live Mince: + "/live Mince.app/Contents/MacOS/live Mince": - when: - os: mac store: steam - /live Mince.exe: + "/live Mince.exe": - when: - os: windows store: steam - /live Mince.x86: + "/live Mince.x86": - when: - os: linux store: steam @@ -309774,7 +310664,7 @@ Live Mince: id: 1009230 Live Wire!: files: - /LIVEWIRE.SAV: + "/LIVEWIRE.SAV": tags: - save when: @@ -309786,19 +310676,19 @@ Live checkpoint: installDir: Live checkpoint: {} launch: - /Live checkpoint.exe: + "/Live checkpoint.exe": - when: - store: steam steam: id: 1211800 Live for Speed: files: - /cfg.txt: + "/cfg.txt": tags: - config when: - os: windows - /interface_cfg.txt: + "/interface_cfg.txt": tags: - config when: @@ -309810,12 +310700,12 @@ Live the Guitar: id: 761220 Livelock: files: - /SaveGame: + "/SaveGame": tags: - save when: - os: windows - /VideoSettings.xml: + "/VideoSettings.xml": tags: - config when: @@ -309823,7 +310713,7 @@ Livelock: installDir: Livelock: {} launch: - /Livelock.exe: + "/Livelock.exe": - when: - store: steam steam: @@ -309832,56 +310722,59 @@ Lives so Sweet: installDir: Lives so Sweet: {} launch: - /LivesSoSweet.app: + "/LivesSoSweet.app": - when: - os: mac store: steam - /LivesSoSweet.exe: + "/LivesSoSweet.exe": - when: - os: windows store: steam - /LivesSoSweet.sh: + "/LivesSoSweet.sh": - when: - os: linux store: steam steam: id: 1165920 -'Liveza: Death of the Earth': +"Liveza: Death of the Earth": installDir: Liveza Death of the Earth: {} launch: - /Liveza-Death Of The Earth.exe: + "/Liveza-Death Of The Earth.exe": - when: - os: windows store: steam - /liveza.app: + "/liveza.app": - when: - os: mac store: steam - /nw: + "/nw": - when: - bit: 32 os: linux store: steam + - bit: 64 + os: linux + store: steam steam: id: 463100 Living Dark: steam: id: 565150 -'Living Legends: The Frozen Fear Collection': +"Living Legends: The Frozen Fear Collection": installDir: Living Legends 2 Pack: {} launch: - /LivingLegendsLauncher.exe: + "/LivingLegendsLauncher.exe": - when: - store: steam steam: id: 398620 -'Living Legends: Wrath of the Beast': +"Living Legends: Wrath of the Beast": installDir: - Living Legends Wrath of the Beast Collector's Edition: {} + "Living Legends Wrath of the Beast Collector's Edition": {} launch: - /LivingLegends_WrathOfTheBeast_CE.exe: + "/LivingLegends_WrathOfTheBeast_CE.exe": - when: - os: windows store: steam @@ -309899,15 +310792,15 @@ Living with a Scarecrow: installDir: Living with a Scarecrow: {} launch: - /arty-1.0-market/arty.app: + "/arty-1.0-market/arty.app": - when: - os: mac store: steam - /arty-1.0-market/arty.exe: + "/arty-1.0-market/arty.exe": - when: - os: windows store: steam - /arty-1.0-market/arty.sh: + "/arty-1.0-market/arty.sh": - when: - os: linux store: steam @@ -309917,26 +310810,26 @@ Liz ~The Tower and the Grimoire~: installDir: Liz ~The Tower and the Grimoire~: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: id: 1078330 Lizard: files: - /.local/share/lizardnes/lizard: + "/.local/share/lizardnes/lizard": tags: - config - save when: - os: linux - /Library/Application Support/lizardnes/lizard: + "/Library/Application Support/lizardnes/lizard": tags: - config - save when: - os: mac - /lizardnes/lizard: + "/lizardnes/lizard": tags: - config - save @@ -309945,21 +310838,21 @@ Lizard: installDir: Lizard: {} launch: - /lizard_steam.exe: + "/lizard_steam.exe": - when: - os: windows store: steam - /lizard_steam32: + "/lizard_steam32": - when: - bit: 32 os: linux store: steam - /lizard_steam64: + "/lizard_steam64": - when: - bit: 64 os: linux store: steam - /lizard_steam64.app/Contents/MacOS/lizard_steam64: + "/lizard_steam64.app/Contents/MacOS/lizard_steam64": - when: - os: mac store: steam @@ -309969,7 +310862,7 @@ Lizardquest-Alien waters: installDir: Lizardquest: {} launch: - /lizard.exe: + "/lizard.exe": - when: - os: windows store: steam @@ -309979,11 +310872,11 @@ Llama Villa: installDir: Llama Villa: {} launch: - /llama villa.app: + "/llama villa.app": - when: - os: mac store: steam - /llama villa.exe: + "/llama villa.exe": - when: - os: windows store: steam @@ -309993,7 +310886,7 @@ Loader: installDir: Loader: {} launch: - /Loader.exe: + "/Loader.exe": - when: - os: windows store: steam @@ -310002,9 +310895,9 @@ Loader: Loading: steam: id: 694970 -'Loading Human: Chapter 1': +"Loading Human: Chapter 1": files: - /LHChapterOne/Saved: + "/LHChapterOne/Saved": tags: - save when: @@ -310017,7 +310910,7 @@ Loading Screen Simulator: installDir: Loading Screen Simulator: {} launch: - /LSS.exe: + "/LSS.exe": - when: - os: windows store: steam @@ -310025,7 +310918,7 @@ Loading Screen Simulator: id: 652980 Loadout: files: - /EdgeOfReality/Loadout: + "/EdgeOfReality/Loadout": tags: - config when: @@ -310033,8 +310926,8 @@ Loadout: installDir: Loadout: {} launch: - /Loadout.exe: - - arguments: '' + "/Loadout.exe": + - arguments: "" when: - store: steam steam: @@ -310043,8 +310936,11 @@ Loathe the game: installDir: loathe the game: {} launch: - /nw.exe: + "/nw.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam @@ -310055,7 +310951,7 @@ Loathing Heart: id: 931170 Lobotomy Corporation: files: - /AppData/LocalLow/Project_Moon/Lobotomy: + "/AppData/LocalLow/Project_Moon/Lobotomy": tags: - save when: @@ -310063,7 +310959,7 @@ Lobotomy Corporation: installDir: LobotomyCorp: {} launch: - /LobotomyCorp.exe: + "/LobotomyCorp.exe": - when: - os: windows store: steam @@ -310073,7 +310969,7 @@ Lobster Empire: installDir: Lobster Empire: {} launch: - /Lobster Empire.exe: + "/Lobster Empire.exe": - when: - os: windows store: steam @@ -310086,20 +310982,20 @@ Loca-Love My Cute Roommate: installDir: Loca-Love My Cute Roommate: {} launch: - /localove1.exe: + "/localove1.exe": - when: - store: steam steam: id: 916060 -'Lock Her Up: The Trump Supremacy': +"Lock Her Up: The Trump Supremacy": installDir: Lock Her Up The Trump Supremacy: {} launch: - /LockHerUp.exe: + "/LockHerUp.exe": - when: - os: windows store: steam - /Mac.app: + "/Mac.app": - when: - os: mac store: steam @@ -310111,9 +311007,9 @@ Lock Parsing: Lock Parsing 2: steam: id: 797100 -Lock's Quest: +"Lock's Quest": files: - /unity3d/DigitalContinue/LocksQuest_Unity: + "/unity3d/DigitalContinue/LocksQuest_Unity": tags: - config - save @@ -310122,19 +311018,19 @@ Lock's Quest: gog: id: 1799540958 installDir: - Lock's Quest: {} + "Lock's Quest": {} launch: - /LocksQuest.app/Contents/MacOS/LocksQuest: + "/LocksQuest.app/Contents/MacOS/LocksQuest": - when: - os: mac store: steam - /LocksQuest.x86_64: + "/LocksQuest.x86_64": - when: - os: linux store: steam steam: id: 490080 -'Lockdown: Stand Alone': +"Lockdown: Stand Alone": installDir: Lockdown Stand Alone: {} steam: @@ -310146,7 +311042,7 @@ Locked Fears: installDir: Locked Fears: {} launch: - /LockedFears.exe: + "/LockedFears.exe": - when: - os: windows store: steam @@ -310159,12 +311055,12 @@ Locked In VR: id: 562320 Locked Up: files: - /Locked_Up/Saved/Config/WindowsNoEditor: + "/Locked_Up/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /Locked_Up/Saved/SaveGames: + "/Locked_Up/Saved/SaveGames": tags: - config - save @@ -310173,7 +311069,7 @@ Locked Up: installDir: Locked Up: {} launch: - /Locked_Up.exe: + "/Locked_Up.exe": - when: - bit: 64 os: windows @@ -310192,8 +311088,8 @@ Loco Parentis VR: installDir: Loco Parentis VR: {} launch: - /LocoParentis.exe: - - arguments: '-nohmd' + "/LocoParentis.exe": + - arguments: "-nohmd" when: - bit: 64 os: windows @@ -310204,7 +311100,7 @@ LocoCycle: installDir: Lococycle: {} launch: - /Launcher.exe: + "/Launcher.exe": - when: - os: windows store: steam @@ -310214,11 +311110,11 @@ LocoMotives: installDir: LocoMotives: {} launch: - /LocoMotives MAC Build.app: + "/LocoMotives MAC Build.app": - when: - os: mac store: steam - /LocoMotives.exe: + "/LocoMotives.exe": - when: - os: windows store: steam @@ -310228,11 +311124,11 @@ LocoSoccer: installDir: LowcoBall: {} launch: - /LowcoBall.exe: + "/LowcoBall.exe": - when: - os: windows store: steam - /LowcoBall.x86_64: + "/LowcoBall.x86_64": - when: - os: linux store: steam @@ -310242,7 +311138,7 @@ Locoland: installDir: Locoland: {} launch: - /Steam.exe: + "/Steam.exe": - when: - store: steam steam: @@ -310256,7 +311152,7 @@ Locomotion: installDir: Locomotion: {} launch: - /Locomotion.exe: + "/Locomotion.exe": - when: - os: windows store: steam @@ -310267,7 +311163,7 @@ Locus Solus: id: 496570 Lode Runner: files: - /LR.USR: + "/LR.USR": tags: - save when: @@ -310276,11 +311172,11 @@ Lode Runner Legacy: installDir: Lode Runner Legacy: {} launch: - /LodeRunner_Legacy.app: + "/LodeRunner_Legacy.app": - when: - os: mac store: steam - /LodeRunner_Legacy.exe: + "/LodeRunner_Legacy.exe": - when: - os: windows store: steam @@ -310293,7 +311189,7 @@ Lodestone - The crazy cave adventures of mad Stony Tony and his encounter with t id: 1129650 Lofi Ping Pong: files: - /AppData/Local/PingPong2/ef1100.cal: + "/AppData/Local/PingPong2/ef1100.cal": tags: - save when: @@ -310301,7 +311197,7 @@ Lofi Ping Pong: installDir: Lofi Ping Pong: {} launch: - /PingPong.exe: + "/PingPong.exe": - when: - os: windows store: steam @@ -310311,8 +311207,8 @@ Log 141: installDir: Log 141: {} launch: - /Log 141: - - arguments: '-fullscreen' + "/Log 141": + - arguments: "-fullscreen" when: - store: steam steam: @@ -310326,7 +311222,7 @@ Log Drive Runner: installDir: Log Drive Runner: {} launch: - /LogDriveRunner.exe: + "/LogDriveRunner.exe": - when: - os: windows store: steam @@ -310336,15 +311232,15 @@ Log Jammers: installDir: Log Jammers: {} launch: - /Jammers_10-30_Mac.app: + "/Jammers_10-30_Mac.app": - when: - os: mac store: steam - /Log Jammers.exe: + "/Log Jammers.exe": - when: - os: windows store: steam - /LogJammers.x86_64: + "/LogJammers.x86_64": - when: - os: linux store: steam @@ -310354,7 +311250,7 @@ Log The Game: installDir: LOG the game: {} launch: - /LOG the game.exe: + "/LOG the game.exe": - when: - os: windows store: steam @@ -310367,7 +311263,7 @@ LogiGun: installDir: LogiGun: {} launch: - /Logigun.exe: + "/Logigun.exe": - when: - os: windows store: steam @@ -310377,7 +311273,7 @@ Logiart Grimoire: installDir: LogiartGrimoire: {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: @@ -310386,7 +311282,7 @@ Logic Missile: installDir: Logic_Missile: {} launch: - /Logic_Missile.exe: + "/Logic_Missile.exe": - when: - os: windows store: steam @@ -310396,16 +311292,16 @@ Logic World: installDir: Logic World: {} launch: - /Logic_World: + "/Logic_World": - when: - bit: 64 os: linux store: steam - /Logic_World.app: + "/Logic_World.app": - when: - os: mac store: steam - /Logic_World.exe: + "/Logic_World.exe": - when: - bit: 64 os: windows @@ -310414,12 +311310,12 @@ Logic World: id: 1054340 LogicBots: files: - /Library/Application Support/unity.Incandescent Games.LogicBots/Saves: + "/Library/Application Support/unity.Incandescent Games.LogicBots/Saves": tags: - save when: - os: mac - /My Games/Incandescent Games/LogicBots: + "/My Games/Incandescent Games/LogicBots": tags: - save when: @@ -310427,20 +311323,20 @@ LogicBots: installDir: LogicBots: {} launch: - /LogicBots.app: + "/LogicBots.app": - when: - os: mac store: steam - /LogicBots.exe: + "/LogicBots.exe": - when: - os: windows store: steam - /LogicBots.x86: + "/LogicBots.x86": - when: - bit: 32 os: linux store: steam - /LogicBots.x86_64: + "/LogicBots.x86_64": - when: - bit: 64 os: linux @@ -310451,7 +311347,7 @@ Logical Now!: installDir: Logical Now!: {} launch: - /Logical Now!.exe: + "/Logical Now!.exe": - when: - bit: 64 os: windows @@ -310462,7 +311358,7 @@ Logicality: installDir: Logicality: {} launch: - /Logicality.exe: + "/Logicality.exe": - when: - bit: 64 os: windows @@ -310478,11 +311374,11 @@ Logistics Company: installDir: Logistics Company: {} launch: - /LogisticsSimulator.app: + "/LogisticsSimulator.app": - when: - os: mac store: steam - /logisim.exe: + "/logisim.exe": - when: - os: windows store: steam @@ -310492,7 +311388,7 @@ Logistics Expert: installDir: Logistic Expert: {} launch: - /Logistic Expert.exe: + "/Logistic Expert.exe": - when: - store: steam steam: @@ -310506,7 +311402,7 @@ Logos: installDir: Logos: {} launch: - /Logos.exe: + "/Logos.exe": - when: - os: windows store: steam @@ -310516,7 +311412,7 @@ Logout: installDir: Logout: {} launch: - /Logout.exe: + "/Logout.exe": - when: - bit: 64 os: windows @@ -310527,10 +311423,10 @@ Loki: installDir: Loki: {} launch: - /Autorun/Autorun.exe: + "/Autorun/Autorun.exe": - when: - store: steam - /Loki.exe: + "/Loki.exe": - when: - store: steam steam: @@ -310542,12 +311438,12 @@ LoliTower: id: 1160780 Lolly Joe: files: - /LollyJoe/Saved/Config/WindowsNoEditor: + "/LollyJoe/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /LollyJoe/Saved/SaveGames: + "/LollyJoe/Saved/SaveGames": tags: - save when: @@ -310555,16 +311451,16 @@ Lolly Joe: installDir: Lolly Joe: {} launch: - /LollyJoe.exe: + "/LollyJoe.exe": - when: - os: windows store: steam - /LollyJoe/Binaries/Linux/LollyJoe: + "/LollyJoe/Binaries/Linux/LollyJoe": - when: - bit: 64 os: linux store: steam - workingDir: /LollyJoe/Binaries/Linux + workingDir: "/LollyJoe/Binaries/Linux" steam: id: 436060 Lolly Pang VR: @@ -310578,7 +311474,7 @@ Lollypop: installDir: Lollypop: {} launch: - /Launcher/ConsoleLauncher.exe: + "/Launcher/ConsoleLauncher.exe": - when: - os: windows store: steam @@ -310588,7 +311484,7 @@ Lonath Online: installDir: Lonath Online: {} launch: - /Lonath Online.exe: + "/Lonath Online.exe": - when: - os: windows store: steam @@ -310598,7 +311494,7 @@ London 2012: installDir: London 2012: {} launch: - /london2012.exe: + "/london2012.exe": - when: - store: steam steam: @@ -310609,62 +311505,62 @@ London Detective Mysteria: installDir: Mysteria: {} launch: - /mysteria.exe: + "/mysteria.exe": - when: - store: steam steam: id: 627350 -'London Racer: Police Madness': +"London Racer: Police Madness": files: - /ABP.ini: + "/ABP.ini": tags: - config when: - os: windows - /SaveGame.dat: + "/SaveGame.dat": tags: - save when: - os: windows Lone Echo II: files: - /_local/saves: + "/_local/saves": tags: - save when: - os: windows - /rad/loneecho2: + "/rad/loneecho2": tags: - config when: - os: windows Lone Fungus: files: - /steamapps/common/Lone Fungus/counter*: + "/steamapps/common/Lone Fungus/counter*": tags: - save when: - os: windows store: steam - /steamapps/common/Lone Fungus/pins*: + "/steamapps/common/Lone Fungus/pins*": tags: - save when: - os: windows store: steam - /steamapps/common/Lone Fungus/s_data: + "/steamapps/common/Lone Fungus/s_data": tags: - save when: - os: windows store: steam - /steamapps/common/Lone Fungus/save*: + "/steamapps/common/Lone Fungus/save*": tags: - save when: - os: windows store: steam - /steamapps/common/Lone Fungus/settings.ini: + "/steamapps/common/Lone Fungus/settings.ini": tags: - config when: @@ -310673,7 +311569,7 @@ Lone Fungus: installDir: Lone Fungus: {} launch: - /Lone Fungus.exe: + "/Lone Fungus.exe": - when: - os: windows store: steam @@ -310683,7 +311579,7 @@ Lone Leader: installDir: Lone Leader: {} launch: - /loneleader.exe: + "/loneleader.exe": - when: - os: windows store: steam @@ -310696,17 +311592,17 @@ Lone Pirate VR: id: 644110 Lone Survivor: files: - /LoneSurvivor/META-INF/AIR: + "/LoneSurvivor/META-INF/AIR": tags: - config when: - os: windows - /.macromedia/Flash_Player/#SharedObjects///LoneSurvivor: + "/.macromedia/Flash_Player/#SharedObjects///LoneSurvivor": tags: - save when: - os: linux - /LoneSurvivor/Local Store/Lone Survivor Saved Game: + "/LoneSurvivor/Local Store/Lone Survivor Saved Game": tags: - save when: @@ -310716,11 +311612,11 @@ Lone Survivor: installDir: Lone Survivor: {} launch: - /LoneSurvivor.app: + "/LoneSurvivor.app": - when: - os: mac store: steam - /LoneSurvivor/LoneSurvivor.exe: + "/LoneSurvivor/LoneSurvivor.exe": - when: - os: windows store: steam @@ -310730,7 +311626,7 @@ Lone Vessel: installDir: Lone Vessel: {} launch: - /starter.vbs: + "/starter.vbs": - when: - bit: 64 os: windows @@ -310740,38 +311636,38 @@ Lone Vessel: Lone Warrior: steam: id: 633880 -'Lone Wolf: Horizon': +"Lone Wolf: Horizon": installDir: lonewolfhorizon: {} launch: - /lonewolfhorizon.app/Contents/MacOS/lonewolfhorizon: - - arguments: '-force-opengl' + "/lonewolfhorizon.app/Contents/MacOS/lonewolfhorizon": + - arguments: "-force-opengl" when: - os: mac store: steam - /lonewolfhorizon.exe: + "/lonewolfhorizon.exe": - when: - os: windows store: steam - /lonewolfhorizon.x86: - - arguments: '-force-opengl' + "/lonewolfhorizon.x86": + - arguments: "-force-opengl" when: - bit: 32 os: linux store: steam - /lonewolfhorizon.x86_64: - - arguments: '-force-opengl' + "/lonewolfhorizon.x86_64": + - arguments: "-force-opengl" when: - bit: 64 os: linux store: steam steam: id: 429020 -'Loneliness After: Chapter 1': +"Loneliness After: Chapter 1": installDir: LONELINESS AFTER - Chapter 1: {} launch: - /LonelinessAfter.exe: + "/LonelinessAfter.exe": - when: - os: windows store: steam @@ -310781,7 +311677,7 @@ Lonely: installDir: TimeTraveler: {} launch: - /TimeTraveler.exe: + "/TimeTraveler.exe": - when: - store: steam steam: @@ -310793,15 +311689,15 @@ Lonely Astronaut: installDir: LonelyAstronaut: {} launch: - /LonelyAstronaut: + "/LonelyAstronaut": - when: - os: linux store: steam - /LonelyAstronaut.app: + "/LonelyAstronaut.app": - when: - os: mac store: steam - /LonelyAstronaut.exe: + "/LonelyAstronaut.exe": - when: - os: windows store: steam @@ -310809,12 +311705,12 @@ Lonely Astronaut: id: 755830 Lonely Knight: files: - /NRStudio/Saved/Config/WindowsNoEditor: + "/NRStudio/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /NRStudio/Saved/SaveGames: + "/NRStudio/Saved/SaveGames": tags: - save when: @@ -310822,26 +311718,26 @@ Lonely Knight: installDir: WindowsNoEditor: {} launch: - /NRStudio.exe: + "/NRStudio.exe": - when: - bit: 64 os: windows store: steam steam: id: 1940370 -'Lonely Mountains: Downhill': +"Lonely Mountains: Downhill": files: - /AppData/LocalLow/Megagon Industries/Lonely Mountains_ Downhill/steamuser/data_.sav: + "/AppData/LocalLow/Megagon Industries/Lonely Mountains_ Downhill/steamuser/data_.sav": tags: - save when: - os: windows - /AppData/LocalLow/Megagon Industries/Lonely Mountains_ Downhill/steamuser/data_settings.sav: + "/AppData/LocalLow/Megagon Industries/Lonely Mountains_ Downhill/steamuser/data_settings.sav": tags: - config when: - os: windows - /Packages/Thunderful.LonelyMontainsDownhill_8j53pwgd019sy/SystemAppData: + "/Packages/Thunderful.LonelyMontainsDownhill_8j53pwgd019sy/SystemAppData": tags: - save when: @@ -310850,17 +311746,17 @@ Lonely Knight: installDir: Lonely Mountains - Downhill: {} launch: - /LMD_MacOS.app: + "/LMD_MacOS.app": - when: - os: mac store: steam - /LMD_Win_x64.exe: + "/LMD_Win_x64.exe": - when: - bit: 64 os: windows store: steam registry: - 'HKEY_CURRENT_USER/Software/Megagon Industries/Lonely Mountains: Downhill': + "HKEY_CURRENT_USER/Software/Megagon Industries/Lonely Mountains: Downhill": tags: - config steam: @@ -310869,7 +311765,7 @@ Lonely Skies: installDir: Lonely Skies: {} launch: - /LonelySkies.exe: + "/LonelySkies.exe": - when: - os: windows store: steam @@ -310879,11 +311775,11 @@ Lonely Trip: installDir: Lonely Trip: {} launch: - /Lonely Trip.app/Contents/MacOS/Lonely Trip: + "/Lonely Trip.app/Contents/MacOS/Lonely Trip": - when: - os: mac store: steam - /Lonely Trip.exe: + "/Lonely Trip.exe": - when: - os: windows store: steam @@ -310891,7 +311787,7 @@ Lonely Trip: id: 781490 Lonely Yuri: files: - /NightTimeSheep/LonelyYuri/savedata: + "/NightTimeSheep/LonelyYuri/savedata": tags: - save when: @@ -310899,7 +311795,7 @@ Lonely Yuri: installDir: Lonely Yuri: {} launch: - /LonelyYuri.exe: + "/LonelyYuri.exe": - when: - os: windows store: steam @@ -310909,7 +311805,7 @@ Lonely in the Winter: installDir: Lonely in the Winter: {} launch: - /Lonely in the Winter.exe: + "/Lonely in the Winter.exe": - when: - os: windows store: steam @@ -310927,7 +311823,7 @@ Lonepath: installDir: Lonepath: {} launch: - /Lonepath.exe: + "/Lonepath.exe": - when: - os: windows store: steam @@ -310939,7 +311835,7 @@ Lonesome Village: installDir: Lonesome Village: {} launch: - /Lonesome Village.exe: + "/Lonesome Village.exe": - when: - os: windows store: steam @@ -310949,7 +311845,7 @@ Long Arm of the Law: installDir: Long Arm of the Law: {} launch: - /LongArmOfTheLaw.exe: + "/LongArmOfTheLaw.exe": - when: - store: steam steam: @@ -310958,16 +311854,16 @@ Long Count: installDir: Long Count: {} launch: - /Long Count: + "/Long Count": - when: - bit: 64 os: linux store: steam - /Long Count.app/Contents/MacOS/Long Count: + "/Long Count.app/Contents/MacOS/Long Count": - when: - os: mac store: steam - /Long Count.exe: + "/Long Count.exe": - when: - bit: 64 os: windows @@ -310984,13 +311880,13 @@ Long Gone Days: installDir: Long Gone Days: {} launch: - /Long Gone Days.app: - - arguments: '--in-process-gpu' + "/Long Gone Days.app": + - arguments: "--in-process-gpu" when: - os: mac store: steam - /Long Gone Days.exe: - - arguments: '--in-process-gpu' + "/Long Gone Days.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam @@ -311000,11 +311896,11 @@ Long Live Santa!: installDir: Long Live Santa: {} launch: - /Long Live Santa.app/Contents/MacOS/Long Live Santa: + "/Long Live Santa.app/Contents/MacOS/Long Live Santa": - when: - os: mac store: steam - /Long Live Santa.exe: + "/Long Live Santa.exe": - when: - os: windows store: steam @@ -311012,22 +311908,22 @@ Long Live Santa!: id: 763410 Long Live the Queen: files: - /Library/RenPy/LongLiveTheQueen/*.save: + "/Library/RenPy/LongLiveTheQueen/*.save": tags: - save when: - os: mac - /Library/RenPy/LongLiveTheQueen/persistent: + "/Library/RenPy/LongLiveTheQueen/persistent": tags: - config when: - os: mac - /RenPy/LongLiveTheQueen/*.save: + "/RenPy/LongLiveTheQueen/*.save": tags: - save when: - os: windows - /RenPy/LongLiveTheQueen/persistent: + "/RenPy/LongLiveTheQueen/persistent": tags: - config when: @@ -311037,15 +311933,15 @@ Long Live the Queen: installDir: LongLiveTheQueen: {} launch: - /LongLiveTheQueen.app: + "/LongLiveTheQueen.app": - when: - os: mac store: steam - /LongLiveTheQueen.exe: + "/LongLiveTheQueen.exe": - when: - os: windows store: steam - /LongLiveTheQueen.sh: + "/LongLiveTheQueen.sh": - when: - os: linux store: steam @@ -311055,11 +311951,11 @@ Long Night: installDir: SteamBuild: {} launch: - /long_night.exe: + "/long_night.exe": - when: - os: windows store: steam - /long_night.x86_64: + "/long_night.x86_64": - when: - os: linux store: steam @@ -311069,7 +311965,7 @@ Long Road: installDir: Long Road: {} launch: - /Long Road.exe: + "/Long Road.exe": - when: - os: windows store: steam @@ -311079,7 +311975,7 @@ Long Z-Night: installDir: Long Z-Night: {} launch: - /Long_Z_Night_beta3: + "/Long_Z_Night_beta3": - when: - os: windows store: steam @@ -311089,7 +311985,7 @@ Long loot the King: installDir: Long loot the King: {} launch: - /Long loot the King.exe: + "/Long loot the King.exe": - when: - os: windows store: steam @@ -311101,11 +311997,11 @@ LongStory: installDir: LongStory: {} launch: - /LongStory.app: + "/LongStory.app": - when: - os: mac store: steam - /LongStory.exe: + "/LongStory.exe": - when: - os: windows store: steam @@ -311115,25 +312011,25 @@ Longboard Stunts and Tricks: installDir: Longboard Simulator: {} launch: - /Longboard Stunts and Tricks.app/Contents/MacOS/Longboard Stunts and Tricks: + "/Longboard Stunts and Tricks.app/Contents/MacOS/Longboard Stunts and Tricks": - when: - os: mac store: steam - /Longboard Stunts and Tricks.exe: + "/Longboard Stunts and Tricks.exe": - when: - os: windows store: steam steam: id: 838420 -'Longest Monday: Unveiling': +"Longest Monday: Unveiling": installDir: Longest Monday Unveiling: {} launch: - /Longest Monday Unveiling.app/Contents/MacOS/Longest Monday Unveiling: + "/Longest Monday Unveiling.app/Contents/MacOS/Longest Monday Unveiling": - when: - os: mac store: steam - /Longest Monday Unveiling.exe: + "/Longest Monday Unveiling.exe": - when: - os: windows store: steam @@ -311143,32 +312039,35 @@ Longshot Universe: installDir: Longshot: {} launch: - /longshot.app/Contents/MacOS/longshot: + "/longshot.app/Contents/MacOS/longshot": - when: - os: mac store: steam - /longshot.exe: + "/longshot.exe": - when: - bit: 32 os: windows store: steam - /longshot.x86: + - bit: 64 + os: windows + store: steam + "/longshot.x86": - when: - bit: 32 os: linux store: steam - /longshot.x86_64: + "/longshot.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 459770 -'Longsword: Tabletop Tactics': +"Longsword: Tabletop Tactics": installDir: Longsword: {} launch: - /Longsword.exe: + "/Longsword.exe": - when: - store: steam steam: @@ -311177,25 +312076,25 @@ Lonia Saga 2: installDir: Lonia Saga 2: {} launch: - /Lonia Saga 2.app: + "/Lonia Saga 2.app": - when: - os: mac store: steam - /Lonia Saga 2.exe: + "/Lonia Saga 2.exe": - when: - os: windows store: steam steam: id: 861080 -'LooK INside: Chapter 1': +"LooK INside: Chapter 1": installDir: looK INside: {} launch: - /looK INside.exe: + "/looK INside.exe": - when: - os: windows store: steam - /lookinside.app/Contents/MacOS/looK INside: + "/lookinside.app/Contents/MacOS/looK INside": - when: - os: mac store: steam @@ -311210,8 +312109,8 @@ Looking Back: installDir: Looking Back: {} launch: - /lookingback.exe: - - arguments: '--in-process-gpu' + "/lookingback.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam @@ -311219,7 +312118,7 @@ Looking Back: id: 1068680 Looking for Aliens: files: - /AlawarEntertainment/Yustas Game Studio/Looking For Aliens: + "/AlawarEntertainment/Yustas Game Studio/Looking For Aliens": tags: - save when: @@ -311229,7 +312128,7 @@ Looking for Aliens: installDir: Looking For Aliens: {} launch: - /Looking For Aliens.exe: + "/Looking For Aliens.exe": - when: - os: windows store: steam @@ -311239,7 +312138,7 @@ Looking for Heals: installDir: Looking for Heals: {} launch: - /Looking For Heals.exe: + "/Looking For Heals.exe": - when: - bit: 64 os: windows @@ -311251,7 +312150,7 @@ Looking for food: id: 943880 Loom: files: - /LucasArts/Loom: + "/LucasArts/Loom": tags: - save when: @@ -311261,11 +312160,11 @@ Loom: installDir: LOOM: {} launch: - /Loom.app: + "/Loom.app": - when: - os: mac store: steam - /Loom.exe: + "/Loom.exe": - when: - os: windows store: steam @@ -311275,12 +312174,12 @@ Looney Rally: installDir: Looney Rally: {} launch: - /Looney Rally.exe: - - arguments: '-screen-1' + "/Looney Rally.exe": + - arguments: "-screen-1" when: - os: windows store: steam - /LooneyRally.app/Contents/MacOS/MAC: + "/LooneyRally.app/Contents/MacOS/MAC": - when: - os: mac store: steam @@ -311288,28 +312187,28 @@ Looney Rally: id: 799270 Loop Hero: files: - /.config/Loop_hero: + "/.config/Loop_hero": tags: - config - save when: - os: linux - /Loop_Hero/loop_config: + "/Loop_Hero/loop_config": tags: - config when: - os: windows - /Loop_Hero/loop_save*: + "/Loop_Hero/loop_save*": tags: - save when: - os: windows - /Loop_hero//loop_config: + "/Loop_hero//loop_config": tags: - config when: - os: windows - /Loop_hero//loop_save*: + "/Loop_hero//loop_save*": tags: - save when: @@ -311319,15 +312218,15 @@ Loop Hero: installDir: Loop Hero: {} launch: - /Loop Hero.exe: + "/Loop Hero.exe": - when: - os: windows store: steam - /Loop_Hero.app: + "/Loop_Hero.app": - when: - os: mac store: steam - /run.sh: + "/run.sh": - when: - os: linux store: steam @@ -311340,11 +312239,11 @@ Looping Bravery: installDir: Looping Bravery: {} launch: - /Looping Bravery.app: + "/Looping Bravery.app": - when: - os: mac store: steam - /Looping Bravery.exe: + "/Looping Bravery.exe": - when: - os: windows store: steam @@ -311354,7 +312253,7 @@ Loopmancer: installDir: Loopmancer: {} launch: - /Loopmancer.exe: + "/Loopmancer.exe": - when: - bit: 64 os: windows @@ -311365,12 +312264,12 @@ Loops of Zen: installDir: Loops of Zen: {} launch: - /Loops of Zen.exe: + "/Loops of Zen.exe": - when: - bit: 64 os: windows store: steam - /LoopsofZen.app/Contents/MacOS/LoopsofZen: + "/LoopsofZen.app/Contents/MacOS/LoopsofZen": - when: - bit: 64 os: mac @@ -311382,12 +312281,12 @@ Loot Box Achievement Simulator: id: 877820 Loot Box Quest: files: - /AppData/LocalLow/Going Loud Studios/Loot Box Quest/save.json: + "/AppData/LocalLow/Going Loud Studios/Loot Box Quest/save.json": tags: - save when: - os: windows - /AppData/LocalLow/Going Loud Studios/Loot Box Quest/settings.json: + "/AppData/LocalLow/Going Loud Studios/Loot Box Quest/settings.json": tags: - config when: @@ -311395,7 +312294,7 @@ Loot Box Quest: installDir: Loot Box Quest: {} launch: - /lootquest.exe: + "/lootquest.exe": - when: - store: steam steam: @@ -311404,7 +312303,7 @@ Loot Box Simulator: installDir: Loot Box Simulator: {} launch: - /Loot Box Simulator.exe: + "/Loot Box Simulator.exe": - when: - os: windows store: steam @@ -311414,17 +312313,17 @@ Loot Box Simulator 20!8: installDir: Loot Box Simulator 20!8: {} launch: - /Loot Box Simulator 20!8.exe: + "/Loot Box Simulator 20!8.exe": - when: - os: windows store: steam steam: id: 786670 -'Loot Collection: Mahjong': +"Loot Collection: Mahjong": installDir: Loot Collection Mahjong: {} launch: - /Loot Collection Mahjong.exe: + "/Loot Collection Mahjong.exe": - when: - os: windows store: steam @@ -311434,7 +312333,7 @@ Loot Hero DX: installDir: Loot Hero DX: {} launch: - /Loot Hero DX.exe: + "/Loot Hero DX.exe": - when: - os: windows store: steam @@ -311444,11 +312343,11 @@ Loot Hound: installDir: Loot Hound: {} launch: - /Loot Hound.app/Contents/MacOS/Loot Hound: + "/Loot Hound.app/Contents/MacOS/Loot Hound": - when: - os: mac store: steam - /Loot Hound.exe: + "/Loot Hound.exe": - when: - os: windows store: steam @@ -311458,11 +312357,11 @@ Loot Hunter: installDir: Loot Hunter: {} launch: - /Loot Hunter.app: + "/Loot Hunter.app": - when: - os: mac store: steam - /loothunter.exe: + "/loothunter.exe": - when: - os: windows store: steam @@ -311470,12 +312369,12 @@ Loot Hunter: id: 341470 Loot Rascals: files: - /LootRascals: + "/LootRascals": tags: - save when: - os: windows - /LootRascals/*.json: + "/LootRascals/*.json": tags: - config when: @@ -311483,7 +312382,7 @@ Loot Rascals: installDir: lootrascals: {} launch: - /LootRascals.exe: + "/LootRascals.exe": - when: - os: windows store: steam @@ -311491,7 +312390,7 @@ Loot Rascals: id: 443880 Loot River: files: - /AppData/LocalLow/straka_studio/Loot River/Saves: + "/AppData/LocalLow/straka_studio/Loot River/Saves": tags: - save when: @@ -311499,7 +312398,7 @@ Loot River: installDir: LootRiver: {} launch: - /Loot River.exe: + "/Loot River.exe": - when: - os: windows store: steam @@ -311509,7 +312408,7 @@ Loot Run: installDir: Loot Run: {} launch: - /LootRun.exe: + "/LootRun.exe": - when: - os: windows store: steam @@ -311519,16 +312418,16 @@ Loot or Die: installDir: Loot or Die: {} launch: - /LootOrDie.exe: + "/LootOrDie.exe": - when: - store: steam steam: id: 523760 -Loot'N Shoot: +"Loot'N Shoot": installDir: LNS: {} launch: - /Loot'N Shoot.exe: + "/Loot'N Shoot.exe": - when: - bit: 64 os: windows @@ -311539,7 +312438,7 @@ Lootbox Lyfe: installDir: Lootbox Lyfe: {} launch: - /LBL.exe: + "/LBL.exe": - when: - os: windows store: steam @@ -311549,11 +312448,11 @@ Lootcraft: installDir: Lootcraft: {} launch: - /Lootcraft.app: + "/Lootcraft.app": - when: - os: mac store: steam - /Lootcraft.exe: + "/Lootcraft.exe": - when: - os: windows store: steam @@ -311563,7 +312462,7 @@ Looterkings: installDir: Looterkings: {} launch: - /Looterkings.exe: + "/Looterkings.exe": - when: - os: windows store: steam @@ -311573,7 +312472,7 @@ Lootfest: installDir: Lootfest: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -311583,7 +312482,7 @@ Lootfest Wars: installDir: Lootfest Wars: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -311601,7 +312500,7 @@ Loptice: installDir: Loptice: {} launch: - /Loptice.exe: + "/Loptice.exe": - when: - os: windows store: steam @@ -311616,7 +312515,7 @@ Lord Democrat Strikes Out!: installDir: Lord Democrat Strikes Out!: {} launch: - /Lord Democrat Strikes Out!.exe: + "/Lord Democrat Strikes Out!.exe": - when: - os: windows store: steam @@ -311626,20 +312525,20 @@ Lord Mayor: installDir: Lord Mayor: {} launch: - /LordMayor.app/Contents/MacOS/LordMayor: + "/LordMayor.app/Contents/MacOS/LordMayor": - when: - os: mac store: steam - /LordMayor.exe: + "/LordMayor.exe": - when: - os: windows store: steam - /LordMayor.x86: + "/LordMayor.x86": - when: - bit: 32 os: linux store: steam - /LordMayor.x86_64: + "/LordMayor.x86_64": - when: - bit: 64 os: linux @@ -311653,15 +312552,15 @@ Lord Winklebottom Investigates: installDir: Lord Winklebottom Investigates: {} launch: - /Lord Winklebottom Investigates.app: + "/Lord Winklebottom Investigates.app": - when: - os: mac store: steam - /Lord Winklebottom Investigates.exe: + "/Lord Winklebottom Investigates.exe": - when: - os: windows store: steam - /LordWinklebottom.x86_64: + "/LordWinklebottom.x86_64": - when: - os: linux store: steam @@ -311671,7 +312570,7 @@ Lord of Djinn: installDir: LordofDjinn: {} launch: - /LoD.exe: + "/LoD.exe": - when: - os: windows store: steam @@ -311681,12 +312580,12 @@ Lord of Dwarves: installDir: LordOfDwarves: {} launch: - /bin/lordofdwarves: + "/bin/lordofdwarves": - when: - bit: 64 os: linux store: steam - /bin/lordofdwarves.exe: + "/bin/lordofdwarves.exe": - when: - os: windows store: steam @@ -311696,7 +312595,7 @@ Lord of Rigel: installDir: Lord of Rigel: {} launch: - /LordofRigel.exe: + "/LordofRigel.exe": - when: - bit: 64 os: windows @@ -311710,27 +312609,27 @@ Lord of the Dark Castle: installDir: Lord of the Dark Castle: {} launch: - /Lord_of_the_Dark_Castle.exe: + "/Lord_of_the_Dark_Castle.exe": - when: - bit: 64 os: windows store: steam - /Lord_of_the_Dark_Castle_32bit.exe: + "/Lord_of_the_Dark_Castle_32bit.exe": - when: - bit: 32 os: windows store: steam - /run_linux.sh: + "/run_linux.sh": - when: - bit: 32 os: linux store: steam - /run_linux_x86_64.sh: + "/run_linux_x86_64.sh": - when: - bit: 64 os: linux store: steam - /run_mac.command: + "/run_mac.command": - when: - os: mac store: steam @@ -311740,7 +312639,7 @@ Lord of the Seal: installDir: Lord of the Seal: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -311750,13 +312649,13 @@ Lord of the click: installDir: Lord of the click: {} launch: - /Lord of the click.exe: + "/Lord of the click.exe": - when: - os: windows store: steam steam: id: 1044170 -'Lordian: Karma': +"Lordian: Karma": installDir: Lordian karma: {} steam: @@ -311765,7 +312664,7 @@ Lords Mobile: installDir: Lords Mobile: {} launch: - /Lords Mobile.exe: + "/Lords Mobile.exe": - when: - bit: 64 os: windows @@ -311774,7 +312673,7 @@ Lords Mobile: id: 1041320 Lords and Villeins: files: - /AppData/LocalLow/Honestly Games/Lords and Villeins/: + "/AppData/LocalLow/Honestly Games/Lords and Villeins/": tags: - save when: @@ -311784,35 +312683,35 @@ Lords and Villeins: installDir: Lords & Villeins: {} launch: - /Lords and Villeins.exe: + "/Lords and Villeins.exe": - when: - bit: 64 os: windows store: steam steam: id: 1287530 -'Lords of Doom: The Black God': +"Lords of Doom: The Black God": files: - /CMDDAT.LD1: + "/CMDDAT.LD1": tags: - config when: - os: dos - /SAVE_*.LD1: + "/SAVE_*.LD1": tags: - save when: - os: dos Lords of EverQuest: files: - /SavedGames: + "/SavedGames": tags: - save when: - os: windows Lords of Football: files: - /Geniaware/LoF/Settings/AudioVideo.xml: + "/Geniaware/LoF/Settings/AudioVideo.xml": tags: - config when: @@ -311820,10 +312719,10 @@ Lords of Football: installDir: Lords of Football: {} launch: - /dbeditor.exe: + "/dbeditor.exe": - when: - store: steam - /lof.exe: + "/lof.exe": - when: - store: steam steam: @@ -311832,19 +312731,19 @@ Lords of Kingdoms: installDir: Lords of Kingdoms: {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: id: 815260 Lords of Magic: files: - /savegame: + "/savegame": tags: - save when: - os: windows - /settings.cfg: + "/settings.cfg": tags: - config when: @@ -311854,21 +312753,21 @@ Lords of Magic: installDir: Lords of Magic Special Edition: {} launch: - /English/Launcher/LOMLauncher.exe: + "/English/Launcher/LOMLauncher.exe": - when: - store: steam - workingDir: /English + workingDir: "/English" steam: id: 404040 Lords of New York: installDir: Lords_of_New_York: {} launch: - /LordsOfNewYork.app: + "/LordsOfNewYork.app": - when: - os: mac store: steam - /LordsOfNewYork.exe: + "/LordsOfNewYork.exe": - when: - os: windows store: steam @@ -311878,20 +312777,20 @@ Lords of Strife: installDir: Lords of Strife: {} launch: - /Lords of Strife.app/Contents/MacOS/Lords of Strife: + "/Lords of Strife.app/Contents/MacOS/Lords of Strife": - when: - os: mac store: steam - /Lords of Strife.exe: + "/Lords of Strife.exe": - when: - os: windows store: steam - /Lords of Strife.x86: + "/Lords of Strife.x86": - when: - bit: 32 os: linux store: steam - /Lords of Strife.x86_64: + "/Lords of Strife.x86_64": - when: - bit: 64 os: linux @@ -311902,14 +312801,14 @@ Lords of War: installDir: WarsOfSeignior: {} launch: - /WarsOfSeignior.exe: + "/WarsOfSeignior.exe": - when: - store: steam steam: id: 668610 Lords of Waterdeep: files: - /AppData/LocalLow/Playdek/Waterdeep: + "/AppData/LocalLow/Playdek/Waterdeep": tags: - save when: @@ -311917,11 +312816,11 @@ Lords of Waterdeep: installDir: Waterdeep: {} launch: - /Waterdeep.app/Contents/MacOS/Waterdeep: + "/Waterdeep.app/Contents/MacOS/Waterdeep": - when: - os: mac store: steam - /Waterdeep.exe: + "/Waterdeep.exe": - when: - os: windows store: steam @@ -311933,24 +312832,24 @@ Lords of Waterdeep: id: 644390 Lords of Xulima: files: - /My Games/Lords of Xulima: + "/My Games/Lords of Xulima": tags: - config when: - os: mac - os: linux - /My Games/Lords of Xulima/Saves: + "/My Games/Lords of Xulima/Saves": tags: - save when: - os: mac - os: linux - /My Games/Lords of Xulima/Configuration.txt: + "/My Games/Lords of Xulima/Configuration.txt": tags: - config when: - os: windows - /My Games/Lords of Xulima/Saves: + "/My Games/Lords of Xulima/Saves": tags: - save when: @@ -311960,15 +312859,15 @@ Lords of Xulima: installDir: LordsOfXulima: {} launch: - /LinuxLauncher: + "/LinuxLauncher": - when: - os: linux store: steam - /LoX.exe: + "/LoX.exe": - when: - os: windows store: steam - /MacLoxApp.app: + "/MacLoxApp.app": - when: - os: mac store: steam @@ -311976,12 +312875,12 @@ Lords of Xulima: id: 296570 Lords of the Black Sun: files: - /basegame/savegames: + "/basegame/savegames": tags: - save when: - os: windows - /Arkavi Studios/Lords of the Black Sun: + "/Arkavi Studios/Lords of the Black Sun": tags: - config when: @@ -311989,7 +312888,7 @@ Lords of the Black Sun: installDir: Lords of the Black Sun: {} launch: - /Lords of the Black Sun.exe: + "/Lords of the Black Sun.exe": - when: - os: windows store: steam @@ -311997,26 +312896,27 @@ Lords of the Black Sun: id: 246940 Lords of the Fallen: files: - /userdata//265300/remote: + "/userdata//265300/remote": tags: - save when: - store: steam - /Lords of the Fallen: + "/Lords of the Fallen": tags: - config when: - os: windows - /GOG.com/Galaxy/Applications/51225745408380260/Storage/Shared/Files: + "/GOG.com/Galaxy/Applications/51225745408380260/Storage/Shared/Files": tags: - save when: - - store: gog - /LOTF2/Saved/SaveGames: + - os: windows + store: gog + "/LOTF2/Saved/SaveGames": tags: - save when: - - store: epic + - os: windows gog: id: 1778055342 id: @@ -312029,7 +312929,7 @@ Lords of the Fallen: installDir: Lords Of The Fallen: {} launch: - /bin/LordsOfTheFallen.exe: + "/bin/LordsOfTheFallen.exe": - when: - bit: 64 os: windows @@ -312038,12 +312938,12 @@ Lords of the Fallen: id: 265300 Lords of the Fallen (2023): files: - /LOTF2/Saved/Config: + "/LOTF2/Saved/Config": tags: - config when: - os: windows - /LOTF2/Saved/SaveGames: + "/LOTF2/Saved/SaveGames": tags: - save when: @@ -312054,7 +312954,7 @@ Lords of the Lockerroom: installDir: Lords Of The Lockerroom: {} launch: - /LoTLR.exe: + "/LoTLR.exe": - when: - os: windows store: steam @@ -312062,13 +312962,13 @@ Lords of the Lockerroom: id: 1068070 Lords of the Realm: files: - /*.SAV: + "/*.SAV": tags: - save when: - os: dos - os: windows - /LORDS.INF: + "/LORDS.INF": tags: - config when: @@ -312082,21 +312982,21 @@ Lords of the Realm: installDir: Lords of the Realm I: {} launch: - /English/DOSBOX/Launcher/LOTR1Launcher.exe: + "/English/DOSBOX/Launcher/LOTR1Launcher.exe": - when: - os: windows store: steam - workingDir: /English/DOSBOX/Launcher + workingDir: "/English/DOSBOX/Launcher" steam: id: 254920 Lords of the Realm II: files: - /*.SAV: + "/*.SAV": tags: - save when: - os: windows - /LORDS2.INF: + "/LORDS2.INF": tags: - config when: @@ -312109,20 +313009,20 @@ Lords of the Realm II: installDir: Lords of the Realm II: {} launch: - /English/Lords of the Realm II/Launcher/LOTR2Launcher.exe: + "/English/Lords of the Realm II/Launcher/LOTR2Launcher.exe": - when: - store: steam - workingDir: /English/Lords of the Realm II + workingDir: "/English/Lords of the Realm II" steam: id: 397350 Lords of the Realm III: files: - /*.dat: + "/*.dat": tags: - config when: - os: windows - /Nobles: + "/Nobles": tags: - save when: @@ -312132,7 +313032,7 @@ Lords of the Realm III: installDir: Lords of the Realm III: {} launch: - /Launcher/LOTR3Launcher.exe: + "/Launcher/LOTR3Launcher.exe": - when: - store: steam steam: @@ -312142,7 +313042,7 @@ Lore Finder: id: 981720 Lorelai: files: - /AppData/LocalLow/Harvester Games/Lorelai/Lorelai_*.save: + "/AppData/LocalLow/Harvester Games/Lorelai/Lorelai_*.save": tags: - save when: @@ -312152,7 +313052,7 @@ Lorelai: installDir: Lorelai: {} launch: - /Lorelai.exe: + "/Lorelai.exe": - when: - os: windows store: steam @@ -312164,17 +313064,17 @@ Lorelai: id: 593960 Loren The Amazon Princess: files: - /game/saves: + "/game/saves": tags: - save when: - os: windows - /renpy/config.py: + "/renpy/config.py": tags: - config when: - os: windows - /renpy/Loren_Amazon_Princess: + "/renpy/Loren_Amazon_Princess": tags: - save when: @@ -312182,15 +313082,15 @@ Loren The Amazon Princess: installDir: Loren Amazon Princess: {} launch: - /LorenRPG.app: + "/LorenRPG.app": - when: - os: mac store: steam - /LorenRPG.exe: + "/LorenRPG.exe": - when: - os: windows store: steam - /LorenRPG.sh: + "/LorenRPG.sh": - when: - os: linux store: steam @@ -312200,11 +313100,11 @@ Lorenzo il Magnifico: installDir: Lorenzo il Magnifico: {} launch: - /LiM.app: + "/LiM.app": - when: - os: mac store: steam - /LiM.exe: + "/LiM.exe": - when: - os: windows store: steam @@ -312212,12 +313112,12 @@ Lorenzo il Magnifico: id: 1034540 Loria: files: - /AppData/LocalLow/Loria/Loria: + "/AppData/LocalLow/Loria/Loria": tags: - save when: - os: windows - /AppData/LocalLow/Loria/Loria/GameSettings.json: + "/AppData/LocalLow/Loria/Loria/GameSettings.json": tags: - config when: @@ -312227,15 +313127,15 @@ Loria: installDir: Loria: {} launch: - /Loria/Loria.app: + "/Loria/Loria.app": - when: - os: mac store: steam - /Loria/Loria.exe: + "/Loria/Loria.exe": - when: - os: windows store: steam - /Loria/Loria.x86_64: + "/Loria/Loria.x86_64": - when: - bit: 64 os: linux @@ -312246,7 +313146,7 @@ Loria: - config steam: id: 946660 -Lorn's Lure: +"Lorn's Lure": files: Rubeki Games/LornsLure: tags: @@ -312263,7 +313163,7 @@ Lornsword Winter Chronicle: installDir: Lornsword Winter Chronicle: {} launch: - /Lornsword Winter Chronicle.exe: + "/Lornsword Winter Chronicle.exe": - when: - bit: 64 os: windows @@ -312274,7 +313174,7 @@ Loser Reborn: installDir: Loser Reborn: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -312284,14 +313184,14 @@ Lost: installDir: Lost: {} launch: - /Lost.exe: + "/Lost.exe": - when: - store: steam steam: id: 853580 Lost (2019): files: - /AppData/LocalLow/DSGame/Lost/*.sav: + "/AppData/LocalLow/DSGame/Lost/*.sav": tags: - save when: @@ -312299,7 +313199,7 @@ Lost (2019): installDir: Lost: {} launch: - /Lost.exe: + "/Lost.exe": - when: - os: windows store: steam @@ -312310,7 +313210,7 @@ Lost Action Hero: id: 1102730 Lost Ark: files: - /EFGame/Config: + "/EFGame/Config": tags: - config when: @@ -312318,8 +313218,8 @@ Lost Ark: installDir: Lost Ark: {} launch: - /Binaries/Win64/Launch_Game.exe: - - arguments: '-steam_login_pub' + "/Binaries/Win64/Launch_Game.exe": + - arguments: "-steam_login_pub" when: - bit: 64 os: windows @@ -312330,59 +313230,59 @@ Lost Artifacts: installDir: Lost Artifacts: {} launch: - /LostArtifacts.exe: + "/LostArtifacts.exe": - when: - os: windows store: steam steam: id: 708150 -'Lost Artifacts: Frozen Queen': +"Lost Artifacts: Frozen Queen": installDir: Lost Artifacts Frozen Queen: {} launch: - /Lost Artifacts Frozen Queen.exe: + "/Lost Artifacts Frozen Queen.exe": - when: - os: windows store: steam steam: id: 1113750 -'Lost Artifacts: Golden Island': +"Lost Artifacts: Golden Island": installDir: Lost Artifacts Golden Island: {} launch: - /Lost Artifacts Golden Island.app: + "/Lost Artifacts Golden Island.app": - when: - os: mac store: steam - /Lost Artifacts Golden Island.exe: + "/Lost Artifacts Golden Island.exe": - when: - os: windows store: steam steam: id: 873900 -'Lost Artifacts: Soulstone': +"Lost Artifacts: Soulstone": installDir: Lost Artifacts Soulstone: {} launch: - /Lost Artifacts Soulstone.app: + "/Lost Artifacts Soulstone.app": - when: - os: mac store: steam - /Lost Artifacts Soulstone.exe: + "/Lost Artifacts Soulstone.exe": - when: - os: windows store: steam steam: id: 874020 -'Lost Artifacts: Time Machine': +"Lost Artifacts: Time Machine": installDir: Lost Artifacts Time Machine: {} launch: - /Lost Artifacts Time Machine.app: + "/Lost Artifacts Time Machine.app": - when: - os: mac store: steam - /Lost Artifacts Time Machine.exe: + "/Lost Artifacts Time Machine.exe": - when: - os: windows store: steam @@ -312395,7 +313295,7 @@ Lost Borderline: installDir: Lost Borderline: {} launch: - /LostBorderline.exe: + "/LostBorderline.exe": - when: - os: windows store: steam @@ -312405,7 +313305,7 @@ Lost Bros: installDir: Lost Bros: {} launch: - /LostBros.exe: + "/LostBros.exe": - when: - os: windows store: steam @@ -312415,7 +313315,7 @@ Lost Brothers: installDir: Lost Brothers: {} launch: - /Lost Brothers.exe: + "/Lost Brothers.exe": - when: - os: windows store: steam @@ -312423,12 +313323,12 @@ Lost Brothers: id: 1202790 Lost Castle: files: - /Library/Preferences/unity.Hunter Studio.Lost Castle.plist: + "/Library/Preferences/unity.Hunter Studio.Lost Castle.plist": tags: - config when: - os: mac - /userdata//434650/remote: + "/userdata//434650/remote": tags: - save when: @@ -312436,11 +313336,11 @@ Lost Castle: installDir: Lost Castle: {} launch: - /Lost_Castle.app: + "/Lost_Castle.app": - when: - os: mac store: steam - /Lost_Castle.exe: + "/Lost_Castle.exe": - when: - os: windows store: steam @@ -312453,12 +313353,12 @@ Lost Castle: id: 434650 Lost Chronicles of Zerzura: files: - /LostChroniclesOfZerzura: + "/LostChroniclesOfZerzura": tags: - config when: - os: windows - /LostChroniclesOfZerzura/Savegames: + "/LostChroniclesOfZerzura/Savegames": tags: - save when: @@ -312466,7 +313366,7 @@ Lost Chronicles of Zerzura: installDir: Lost Chronicles of Zerzura: {} launch: - /Zerzura.exe: + "/Zerzura.exe": - when: - os: windows store: steam @@ -312476,15 +313376,15 @@ Lost Cities: installDir: Lost Cities: {} launch: - /LostCities: + "/LostCities": - when: - os: linux store: steam - /LostCities.app: + "/LostCities.app": - when: - os: mac store: steam - /LostCities.exe: + "/LostCities.exe": - when: - os: windows store: steam @@ -312494,7 +313394,7 @@ Lost City of Vampires: installDir: Lost City of Vampires: {} launch: - /LostCity.exe: + "/LostCity.exe": - when: - store: steam steam: @@ -312503,7 +313403,7 @@ Lost Civilization: installDir: Lost Civilization: {} launch: - /Lost Civilization.exe: + "/Lost Civilization.exe": - when: - os: windows store: steam @@ -312513,7 +313413,7 @@ Lost Connection: installDir: Lost Connection: {} launch: - /game.exe: + "/game.exe": - when: - bit: 64 os: windows @@ -312530,7 +313430,7 @@ Lost Cosmonaut: installDir: Lost Cosmonaut: {} launch: - /Lost Cosmonauts.exe: + "/Lost Cosmonauts.exe": - when: - os: windows store: steam @@ -312540,7 +313440,7 @@ Lost Cosmonauts ARG: installDir: Lost Cosmonauts ARG: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -312550,7 +313450,7 @@ Lost Crew: installDir: Lost Crew: {} launch: - /IntFict.exe: + "/IntFict.exe": - when: - os: windows store: steam @@ -312560,7 +313460,7 @@ Lost Daughter: installDir: Lost Daughter: {} launch: - /Lost Daughter.exe: + "/Lost Daughter.exe": - when: - bit: 64 os: windows @@ -312569,7 +313469,7 @@ Lost Daughter: id: 1008690 Lost Dimension: files: - /My Games/Ghostlight Ltd/Lost Dimension: + "/My Games/Ghostlight Ltd/Lost Dimension": tags: - save when: @@ -312577,14 +313477,14 @@ Lost Dimension: installDir: Lost Dimension: {} launch: - /LostDimension.exe: + "/LostDimension.exe": - when: - store: steam steam: id: 626600 Lost Eden: files: - /EDV2_***.SAV: + "/EDV2_***.SAV": tags: - save when: @@ -312594,17 +313494,17 @@ Lost Eden: installDir: Lost Eden: {} launch: - /DOSBox/dosbox.app/Contents/MacOS/DOSBox: - - arguments: '-conf \"config/dosbox_eden.conf\" -conf \"config/dosbox_eden_single.conf\" -noconsole' + "/DOSBox/dosbox.app/Contents/MacOS/DOSBox": + - arguments: "-conf \\\"config/dosbox_eden.conf\\\" -conf \\\"config/dosbox_eden_single.conf\\\" -noconsole" when: - os: mac store: steam - /Launch Lost Eden.bat: + "/Launch Lost Eden.bat": - when: - os: windows store: steam - /dosbox/dosbox: - - arguments: '-conf \"./config/dosbox_eden.conf\" -conf \"./config/dosbox_eden_single.conf\" -noconsole' + "/dosbox/dosbox": + - arguments: "-conf \\\"./config/dosbox_eden.conf\\\" -conf \\\"./config/dosbox_eden_single.conf\\\" -noconsole" when: - os: linux store: steam @@ -312614,7 +313514,7 @@ Lost Egg: installDir: LOST EGG: {} launch: - /LOST EGG.exe: + "/LOST EGG.exe": - when: - bit: 64 os: windows @@ -312623,12 +313523,12 @@ Lost Egg: id: 1098510 Lost Eidolons: files: - /AppData/LocalLow/Ocean Drive Studio/Lost Eidolons: + "/AppData/LocalLow/Ocean Drive Studio/Lost Eidolons": tags: - config when: - os: windows - /AppData/LocalLow/Ocean Drive Studio/Lost Eidolons/Saves: + "/AppData/LocalLow/Ocean Drive Studio/Lost Eidolons/Saves": tags: - save when: @@ -312638,8 +313538,8 @@ Lost Eidolons: installDir: Lost Eidolons: {} launch: - /LostEidolons.exe: - - arguments: '-pcplatform steam' + "/LostEidolons.exe": + - arguments: "-pcplatform steam" when: - os: windows store: steam @@ -312647,12 +313547,12 @@ Lost Eidolons: id: 1580520 Lost Ember: files: - /LostEmber/Saved/Config/WindowsNoEditor: + "/LostEmber/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /LostEmber/Saved/SaveGames: + "/LostEmber/Saved/SaveGames": tags: - save when: @@ -312662,7 +313562,7 @@ Lost Ember: installDir: Lost Ember: {} launch: - /LostEmber.exe: + "/LostEmber.exe": - when: - os: windows store: steam @@ -312672,7 +313572,7 @@ Lost Empire 2977: installDir: LE2977 game build: {} launch: - /LE2977/LostEmpire.exe: + "/LE2977/LostEmpire.exe": - when: - os: windows store: steam @@ -312682,7 +313582,7 @@ Lost Existence: installDir: Lost Existence: {} launch: - /LostExistence.exe: + "/LostExistence.exe": - when: - bit: 64 os: windows @@ -312693,12 +313593,12 @@ Lost Flame: installDir: Lost Flame: {} launch: - /LostFlame: + "/LostFlame": - when: - os: linux store: steam - /start.bat: - - arguments: '&& exit' + "/start.bat": + - arguments: "&& exit" when: - os: windows store: steam @@ -312708,25 +313608,25 @@ Lost Frontier: installDir: Lost Frontier: {} launch: - /Lost Frontier.app/Contents/MacOS/Lost Frontier: + "/Lost Frontier.app/Contents/MacOS/Lost Frontier": - when: - os: mac store: steam - /Lost Frontier.exe: + "/Lost Frontier.exe": - when: - os: windows store: steam steam: id: 928970 -Lost Girl's Diary: +"Lost Girl's Diary": installDir: - 'Lost girl`s [diary]': {} + "Lost girl`s [diary]": {} launch: - '/Lost girl`s [diary].app/Contents/MacOS/Lost girl`s [diary]': + "/Lost girl`s [diary].app/Contents/MacOS/Lost girl`s [diary]": - when: - os: mac store: steam - '/Lost girl`s [diary].exe': + "/Lost girl`s [diary].exe": - when: - os: windows store: steam @@ -312736,19 +313636,19 @@ Lost God: installDir: Lost God: {} launch: - /LostGod.app/Contents/MacOS/LostGod: + "/LostGod.app/Contents/MacOS/LostGod": - when: - os: mac store: steam - /LostGod.exe: + "/LostGod.exe": - when: - os: windows store: steam steam: id: 694930 -'Lost Grimoires 2: Shard of Mystery': +"Lost Grimoires 2: Shard of Mystery": files: - /userdata//574270/remote/profile: + "/userdata//574270/remote/profile": tags: - save when: @@ -312756,69 +313656,69 @@ Lost God: installDir: Lost Grimoires 2: {} launch: - /LostGrimoires2.exe: + "/LostGrimoires2.exe": - when: - os: windows store: steam - /LostGrimoires2_amd64: + "/LostGrimoires2_amd64": - when: - bit: 64 os: linux store: steam - /LostGrimoires2_i386: + "/LostGrimoires2_i386": - when: - bit: 32 os: linux store: steam - /mac_steam.app/Contents/MacOS/mac_steam: + "/mac_steam.app/Contents/MacOS/mac_steam": - when: - os: mac store: steam steam: id: 574270 -'Lost Grimoires 3: The Forgotten Well': +"Lost Grimoires 3: The Forgotten Well": installDir: Lost Grimoires 3 The Forgotten Well: {} launch: - /LostGrimoires3.exe: + "/LostGrimoires3.exe": - when: - os: windows store: steam - /LostGrimoires3_amd64: + "/LostGrimoires3_amd64": - when: - bit: 64 os: linux store: steam - /LostGrimoires3_i386: + "/LostGrimoires3_i386": - when: - bit: 32 os: linux store: steam - /mac_steam.app/Contents/MacOS/mac_steam: + "/mac_steam.app/Contents/MacOS/mac_steam": - when: - os: mac store: steam steam: id: 740090 -'Lost Grimoires: Stolen Kingdom': +"Lost Grimoires: Stolen Kingdom": installDir: Lost Grimoires: {} launch: - /LostGrimoires.exe: + "/LostGrimoires.exe": - when: - os: windows store: steam - /LostGrimoires_amd64: + "/LostGrimoires_amd64": - when: - bit: 64 os: linux store: steam - /LostGrimoires_i386: + "/LostGrimoires_i386": - when: - bit: 32 os: linux store: steam - /mac_steam.app/Contents/MacOS/mac_steam: + "/mac_steam.app/Contents/MacOS/mac_steam": - when: - os: mac store: steam @@ -312828,17 +313728,17 @@ Lost Home: installDir: Lost Home: {} launch: - /LostHomeS.exe: + "/LostHomeS.exe": - when: - os: windows store: steam steam: id: 728020 -'Lost Home : Battle Of Island': +"Lost Home : Battle Of Island": installDir: Lost Home Battle Of Island: {} launch: - /Lost HomeBattle of Island.exe: + "/Lost HomeBattle of Island.exe": - when: - os: windows store: steam @@ -312846,12 +313746,12 @@ Lost Home: id: 1165010 Lost Horizon: files: - /Lost Horizon/*.ini: + "/Lost Horizon/*.ini": tags: - config when: - os: windows - /Lost Horizon/*.sav: + "/Lost Horizon/*.sav": tags: - save when: @@ -312861,19 +313761,19 @@ Lost Horizon: installDir: Lost Horizon: {} launch: - /AutoStarter.exe: + "/AutoStarter.exe": - when: - store: steam steam: id: 40350 Lost Horizon 2: files: - /Lost_Horizon_2/Options.txt: + "/Lost_Horizon_2/Options.txt": tags: - config when: - os: windows - /Lost_Horizon_2/SaveGames/*.txt: + "/Lost_Horizon_2/SaveGames/*.txt": tags: - save when: @@ -312883,7 +313783,7 @@ Lost Horizon 2: installDir: Lost Horizon 2: {} launch: - /LostHorizon2.exe: + "/LostHorizon2.exe": - when: - os: windows store: steam @@ -312897,7 +313797,7 @@ Lost In Dungeon: installDir: Lost In Dungeon: {} launch: - /Lost_In_Dungeon.exe: + "/Lost_In_Dungeon.exe": - when: - os: windows store: steam @@ -312907,7 +313807,7 @@ Lost In Maze: installDir: Lost In Maze: {} launch: - /LostInMaze.exe: + "/LostInMaze.exe": - when: - store: steam steam: @@ -312916,7 +313816,7 @@ Lost In Sweets: installDir: Lost In Sweets: {} launch: - /LostInSweets.exe: + "/LostInSweets.exe": - when: - store: steam steam: @@ -312925,7 +313825,7 @@ Lost Items: installDir: Lost Items: {} launch: - /lostitems.exe: + "/lostitems.exe": - when: - os: windows store: steam @@ -312933,12 +313833,12 @@ Lost Items: id: 686870 Lost Judgment: files: - /Sega/LostJudgment/Steam: + "/Sega/LostJudgment/Steam": tags: - config when: - os: windows - /Sega/LostJudgment/Steam/: + "/Sega/LostJudgment/Steam/": tags: - save when: @@ -312950,11 +313850,11 @@ Lost Judgment: Lost Jumping Frog: steam: id: 733980 -Lost King's Lullaby: +"Lost King's Lullaby": installDir: - Lost King's Lullaby: {} + "Lost King's Lullaby": {} launch: - /Lost King's Lullaby.exe: + "/Lost King's Lullaby.exe": - when: - os: windows store: steam @@ -312964,33 +313864,33 @@ Lost Labyrinth Extended Version: installDir: Lost Labyrinth Extended Version: {} launch: - /laby: + "/laby": - when: - os: linux store: steam - /laby-extended.exe: + "/laby-extended.exe": - when: - os: windows store: steam steam: id: 420920 -'Lost Lands: A Hidden Object Adventure': +"Lost Lands: A Hidden Object Adventure": installDir: Lost Lands A Hidden Object Adventure: {} launch: - /Lost Lands A Hidden Object Adventure.app: + "/Lost Lands A Hidden Object Adventure.app": - when: - os: mac store: steam - /LostLandsF2P.exe: + "/LostLandsF2P.exe": - when: - os: windows store: steam steam: id: 392950 -'Lost Lands: Dark Overlord': +"Lost Lands: Dark Overlord": files: - /userdata//377450/remote: + "/userdata//377450/remote": tags: - save when: @@ -312999,33 +313899,33 @@ Lost Labyrinth Extended Version: installDir: Lost Lands Dark Overlord Collectors Edition: {} launch: - /Lost Lands Dark Overlord CE.app: + "/Lost Lands Dark Overlord CE.app": - when: - os: mac store: steam - /LostLands_DarkOverlord.exe: + "/LostLands_DarkOverlord.exe": - when: - os: windows store: steam steam: id: 377450 -'Lost Lands: Ice Spell': +"Lost Lands: Ice Spell": installDir: Lost Lands Ice Spell: {} launch: - /Lost Lands Ice Spell.app: + "/Lost Lands Ice Spell.app": - when: - os: mac store: steam - /LostLands_IceSpell.exe: + "/LostLands_IceSpell.exe": - when: - os: windows store: steam steam: id: 846690 -'Lost Lands: Mahjong': +"Lost Lands: Mahjong": files: - /AppData/LocalLow/Five-BN Games/Mahjong: + "/AppData/LocalLow/Five-BN Games/Mahjong": tags: - save when: @@ -313033,67 +313933,67 @@ Lost Labyrinth Extended Version: installDir: Lost Lands Mahjong: {} launch: - /Lost Lands Mahjong.app: + "/Lost Lands Mahjong.app": - when: - os: mac store: steam - /Mahjong.exe: + "/Mahjong.exe": - when: - os: windows store: steam steam: id: 435030 -'Lost Lands: Mistakes of the Past': +"Lost Lands: Mistakes of the Past": installDir: Lost Lands Mistakes of the Past: {} launch: - /Lost Lands Mistakes of the Past.app: + "/Lost Lands Mistakes of the Past.app": - when: - os: mac store: steam - /LostLands_MistakesOfThePast.exe: + "/LostLands_MistakesOfThePast.exe": - when: - os: windows store: steam steam: id: 986820 -'Lost Lands: The Four Horsemen': +"Lost Lands: The Four Horsemen": installDir: Lost Lands The Four Horsemen Collectors Edition: {} launch: - /Lost Lands 2 The Four Horsemen CE.app: + "/Lost Lands 2 The Four Horsemen CE.app": - when: - os: mac store: steam - /LostLands_TheFourHorsemen.exe: + "/LostLands_TheFourHorsemen.exe": - when: - os: windows store: steam steam: id: 372940 -'Lost Lands: The Golden Curse': +"Lost Lands: The Golden Curse": installDir: Lost Lands The Golden Curse: {} launch: - /Lost Lands 3 The Golden Curse CE.app: + "/Lost Lands 3 The Golden Curse CE.app": - when: - os: mac store: steam - /LostLands_TheGoldenCurse.exe: + "/LostLands_TheGoldenCurse.exe": - when: - os: windows store: steam steam: id: 433000 -'Lost Lands: The Wanderer': +"Lost Lands: The Wanderer": installDir: Lost Lands The Wanderer: {} launch: - /Lost Lands 4 The Wanderer CE.app: + "/Lost Lands 4 The Wanderer CE.app": - when: - os: mac store: steam - /LostLands_TheWanderer.exe: + "/LostLands_TheWanderer.exe": - when: - os: windows store: steam @@ -313103,28 +314003,28 @@ Lost Legend: installDir: Lost Legend: {} launch: - /Game.app: - - arguments: '--in-process-gpu' + "/Game.app": + - arguments: "--in-process-gpu" when: - os: mac store: steam - /Game.exe: - - arguments: '--in-process-gpu' + "/Game.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam steam: id: 864020 -'Lost Legends: The Pharaoh''s Tomb': +"Lost Legends: The Pharaoh's Tomb": installDir: - Lost Legends The Pharaoh's Tomb: {} + "Lost Legends The Pharaoh's Tomb": {} steam: id: 652830 -'Lost Legends: The Weeping Woman': +"Lost Legends: The Weeping Woman": installDir: Lost Legends The Weeping Woman: {} launch: - /LostLegends_TheWeepingWoman_CE.exe: + "/LostLegends_TheWeepingWoman_CE.exe": - when: - os: windows store: steam @@ -313134,7 +314034,7 @@ Lost Letters (of Seraphina): installDir: Lost Letters: {} launch: - /lostletters.exe: + "/lostletters.exe": - when: - bit: 64 os: windows @@ -313145,15 +314045,15 @@ Lost Marbles: installDir: LostMarbles: {} launch: - /LostMarbles.app: + "/LostMarbles.app": - when: - os: mac store: steam - /LostMarbles.exe: + "/LostMarbles.exe": - when: - os: windows store: steam - /LostMarbles.x86: + "/LostMarbles.x86": - when: - os: linux store: steam @@ -313163,7 +314063,7 @@ Lost Moon: installDir: LostMoon: {} launch: - /LostMoon.exe: + "/LostMoon.exe": - when: - bit: 32 os: windows @@ -313179,44 +314079,44 @@ Lost Orbit: installDir: Lost Orbit: {} launch: - /LOSTORBIT.app: + "/LOSTORBIT.app": - when: - os: mac store: steam - /LOSTORBIT.exe: + "/LOSTORBIT.exe": - when: - os: windows store: steam - /LOSTORBIT.x86: + "/LOSTORBIT.x86": - when: - bit: 32 os: linux store: steam - /LOSTORBIT.x86_64: + "/LOSTORBIT.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 282640 -'Lost Orbit: Terminal Velocity': +"Lost Orbit: Terminal Velocity": installDir: LOST ORBIT - Terminal Velocity: {} launch: - /LOST ORBIT - Terminal Velocity.exe: + "/LOST ORBIT - Terminal Velocity.exe": - when: - os: windows store: steam - /LostOrbit-TerminalVelocity.app/Contents/MacOS/LostOrbit-TerminalVelocity: + "/LostOrbit-TerminalVelocity.app/Contents/MacOS/LostOrbit-TerminalVelocity": - when: - os: mac store: steam - /LostOrbit_TerminalVelocity.x86: + "/LostOrbit_TerminalVelocity.x86": - when: - bit: 32 os: linux store: steam - /LostOrbit_TerminalVelocity.x86_64: + "/LostOrbit_TerminalVelocity.x86_64": - when: - bit: 64 os: linux @@ -313225,12 +314125,12 @@ Lost Orbit: id: 372320 Lost Planet 2: files: - /capcom/LOST PLANET 2//Lostplanet2.Lostplanet2Save-capcom: + "/capcom/LOST PLANET 2//Lostplanet2.Lostplanet2Save-capcom": tags: - save when: - os: windows - /capcom/LOST PLANET 2/config.ini: + "/capcom/LOST PLANET 2/config.ini": tags: - config when: @@ -313238,19 +314138,19 @@ Lost Planet 2: installDir: Lost Planet 2: {} launch: - /Launcher.exe: + "/Launcher.exe": - when: - store: steam steam: id: 45750 Lost Planet 3: files: - /My Games/LostPlanetGame/LostPlanetGame/Config: + "/My Games/LostPlanetGame/LostPlanetGame/Config": tags: - config when: - os: windows - /My Games/LostPlanetGame/LostPlanetGame/SaveData: + "/My Games/LostPlanetGame/LostPlanetGame/SaveData": tags: - save when: @@ -313258,20 +314158,20 @@ Lost Planet 3: installDir: Lost Planet 3: {} launch: - /Binaries/Win32/LP3Launcher.exe: + "/Binaries/Win32/LP3Launcher.exe": - when: - store: steam - workingDir: /Binaries/Win32 + workingDir: "/Binaries/Win32" steam: id: 226720 -'Lost Planet: Extreme Condition': +"Lost Planet: Extreme Condition": files: - /capcom/lostplanet/*.LostplanetSave-capcom: + "/capcom/lostplanet/*.LostplanetSave-capcom": tags: - save when: - os: windows - /capcom/lostplanet/config.ini: + "/capcom/lostplanet/config.ini": tags: - config when: @@ -313279,17 +314179,17 @@ Lost Planet 3: installDir: lost planet extreme condition: {} launch: - /LostPlanetDX10.exe: + "/LostPlanetDX10.exe": - when: - store: steam - /LostPlanetDX9.exe: + "/LostPlanetDX9.exe": - when: - store: steam steam: id: 6510 -'Lost Planet: Extreme Condition Colonies Edition': +"Lost Planet: Extreme Condition Colonies Edition": files: - /capcom/lostplanetcolonies: + "/capcom/lostplanetcolonies": tags: - config - save @@ -313298,7 +314198,7 @@ Lost Planet 3: installDir: Lost Planet Colonies: {} launch: - /LPCLauncher.exe: + "/LPCLauncher.exe": - when: - store: steam steam: @@ -313307,7 +314207,7 @@ Lost Region: installDir: Lost Region: {} launch: - /WindowsNoEditor/LostRegionLauncher.exe: + "/WindowsNoEditor/LostRegionLauncher.exe": - when: - bit: 64 os: windows @@ -313318,7 +314218,7 @@ Lost Roads: installDir: Lost Roads: {} launch: - /LostRoads.exe: + "/LostRoads.exe": - when: - os: windows store: steam @@ -313331,12 +314231,12 @@ Lost Route: id: 470280 Lost Ruins: files: - /Saves: + "/Saves": tags: - save when: - os: windows - /Settings/settings.xml: + "/Settings/settings.xml": tags: - config when: @@ -313346,15 +314246,15 @@ Lost Ruins: installDir: LostRuins: {} launch: - /LostRuins.app: + "/LostRuins.app": - when: - os: mac store: steam - /LostRuins.exe: + "/LostRuins.exe": - when: - os: windows store: steam - /LostRuins.x86_64: + "/LostRuins.x86_64": - when: - bit: 64 os: linux @@ -313370,7 +314270,7 @@ Lost Satellite: id: 791720 Lost Sea: files: - /AppData/LocalLow/eastasiasoft/lostsea: + "/AppData/LocalLow/eastasiasoft/lostsea": tags: - config - save @@ -313381,15 +314281,15 @@ Lost Sea: installDir: Lost Sea: {} launch: - /lostsea.app: + "/lostsea.app": - when: - os: mac store: steam - /lostsea.exe: + "/lostsea.exe": - when: - os: windows store: steam - /lostsea.x86: + "/lostsea.x86": - when: - os: linux store: steam @@ -313402,17 +314302,17 @@ Lost Shipwreck: installDir: Lost Shipwreck: {} launch: - /Lost Shipwreck.exe: + "/Lost Shipwreck.exe": - when: - os: windows store: steam steam: id: 696250 -'Lost Socks: Naughty Brothers': +"Lost Socks: Naughty Brothers": installDir: LS Naughty Brothers: {} launch: - /TheLostSocks.exe: + "/TheLostSocks.exe": - when: - os: windows store: steam @@ -313420,12 +314320,12 @@ Lost Shipwreck: id: 501480 Lost Sphear: files: - /userdata//525240/remote: + "/userdata//525240/remote": tags: - save when: - store: steam - /My Games/LOST SPHEAR/CONFIG.dat: + "/My Games/LOST SPHEAR/CONFIG.dat": tags: - config when: @@ -313433,7 +314333,7 @@ Lost Sphear: installDir: LOST SPHEAR: {} launch: - /LOST SPHEAR.exe: + "/LOST SPHEAR.exe": - when: - bit: 64 os: windows @@ -313447,7 +314347,7 @@ Lost Summoner Kitty: installDir: Lost Summoner Kitty: {} launch: - /LostSummonerKitty.exe: + "/LostSummonerKitty.exe": - when: - os: windows store: steam @@ -313457,7 +314357,7 @@ Lost Tales - The Castle Escape: installDir: Lost Tales - The Castle Escape: {} launch: - /lost tales - A castle escape.exe: + "/lost tales - A castle escape.exe": - when: - os: windows store: steam @@ -313467,36 +314367,36 @@ Lost Technology: installDir: Lost Technology: {} launch: - /LostTechnology.exe: + "/LostTechnology.exe": - when: - os: windows store: steam steam: id: 420520 -'Lost Viking: Kingdom of Women': +"Lost Viking: Kingdom of Women": steam: id: 1155850 Lost Wing: installDir: Lost Wing: {} launch: - /LostWing.app: + "/LostWing.app": - when: - os: mac store: steam - /LostWing.exe: + "/LostWing.exe": - when: - os: windows store: steam - /LostWing.x86_64: + "/LostWing.x86_64": - when: - os: linux store: steam steam: id: 556960 -'Lost Words: Beyond the Page': +"Lost Words: Beyond the Page": files: - /AppData/LocalLow/Fourth State/Lost Words: + "/AppData/LocalLow/Fourth State/Lost Words": tags: - save when: @@ -313506,7 +314406,7 @@ Lost Wing: installDir: Lost Words: {} launch: - /Lost Words.exe: + "/Lost Words.exe": - when: - bit: 64 os: windows @@ -313524,7 +314424,7 @@ Lost and Hound: installDir: Lost and Hound: {} launch: - /Lost and Hound.exe: + "/Lost and Hound.exe": - when: - os: windows store: steam @@ -313536,7 +314436,7 @@ Lost at Sea: installDir: Lost At Sea: {} launch: - /Lost_at_Sea.exe: + "/Lost_at_Sea.exe": - when: - os: windows store: steam @@ -313546,11 +314446,11 @@ Lost in 80s II: installDir: Lost In 80s II: {} launch: - /Lost In 80s II.app: + "/Lost In 80s II.app": - when: - os: mac store: steam - /Lost In 80s II.exe: + "/Lost In 80s II.exe": - when: - os: windows store: steam @@ -313561,7 +314461,7 @@ Lost in Bardo: id: 741730 Lost in Harmony: files: - /My Games/AutoSave/PlayerPrefs/save.dat: + "/My Games/AutoSave/PlayerPrefs/save.dat": tags: - save when: @@ -313569,7 +314469,7 @@ Lost in Harmony: installDir: Lost in Harmony: {} launch: - /LostInHarmony.exe: + "/LostInHarmony.exe": - when: - os: windows store: steam @@ -313583,8 +314483,11 @@ Lost in Nature: installDir: Lost in Nature: {} launch: - /Lost in Nature.exe: + "/Lost in Nature.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam @@ -313594,16 +314497,19 @@ Lost in Paradise: installDir: Lost in Paradise: {} launch: - /Lost in Paradise.app: + "/Lost in Paradise.app": - when: - os: mac store: steam - /Lost_in_Paradise: + "/Lost_in_Paradise": - when: - bit: 32 os: linux store: steam - /Lost_in_Paradise.exe: + - bit: 64 + os: linux + store: steam + "/Lost_in_Paradise.exe": - when: - os: windows store: steam @@ -313611,17 +314517,18 @@ Lost in Paradise: id: 381170 Lost in Play: files: - /AppData/LocalLow/Happyjuice/LostInPlay: + "/AppData/LocalLow/Happyjuice/LostInPlay": tags: - save when: - - store: steam - /Library/Application Support/com.happyjuice.lostinplay: + - os: windows + store: steam + "/Library/Application Support/com.happyjuice.lostinplay": tags: - save when: - os: mac - /Library/Preferences/com.happyjuice.lostinplay.plist: + "/Library/Preferences/com.happyjuice.lostinplay.plist": tags: - config when: @@ -313634,11 +314541,11 @@ Lost in Play: installDir: Lost in Play: {} launch: - /LIP.app: + "/LIP.app": - when: - os: mac store: steam - /LostInPlay/LostInPlay.exe: + "/LostInPlay/LostInPlay.exe": - when: - os: windows store: steam @@ -313647,6 +314554,8 @@ Lost in Play: tags: - config - save + when: + - store: gog steam: id: 1328840 Lost in Purple: @@ -313654,7 +314563,7 @@ Lost in Purple: id: 688600 Lost in Random: files: - /AppData/LocalLow/Zoink Games/Lost In Random: + "/AppData/LocalLow/Zoink Games/Lost In Random": tags: - config - save @@ -313668,15 +314577,15 @@ Lost in Random: - config steam: id: 1462570 -'Lost in Reefs: Antarctic': +"Lost in Reefs: Antarctic": installDir: Lost in Reefs Antarctic: {} launch: - /LostInReefs3.app/Contents/MacOS/LostInReefs3: + "/LostInReefs3.app/Contents/MacOS/LostInReefs3": - when: - os: mac store: steam - /LostInReefs3.exe: + "/LostInReefs3.exe": - when: - os: windows store: steam @@ -313686,13 +314595,13 @@ Lost in Secular Love: installDir: Lost in Secular Love: {} launch: - /CSH.exe: + "/CSH.exe": - when: - os: windows store: steam steam: id: 520850 -'Lost in Sky: Violent Seed': +"Lost in Sky: Violent Seed": steam: id: 763180 Lost in Space: @@ -313710,7 +314619,7 @@ Lost in Transit: installDir: Lost in Transit: {} launch: - /LostInTransit.exe: + "/LostInTransit.exe": - when: - os: windows store: steam @@ -313720,7 +314629,7 @@ Lost in Vivo: installDir: Lost in Vivo: {} launch: - /LIV.exe: + "/LIV.exe": - when: - os: windows store: steam @@ -313738,7 +314647,7 @@ Lost in a Forest: installDir: Lost in a Forest: {} launch: - /Lost in a Forest.exe: + "/Lost in a Forest.exe": - when: - os: windows store: steam @@ -313748,16 +314657,19 @@ Lost in the Dungeon: installDir: Lost in the Dungeon: {} launch: - /Lost in the Dungeon.app/Contents/MacOS/Lost in the Dungeon: + "/Lost in the Dungeon.app/Contents/MacOS/Lost in the Dungeon": - when: - os: mac store: steam - /Lost in the Dungeon.exe: + "/Lost in the Dungeon.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam - /Lost in the Dungeon.x86_64: + "/Lost in the Dungeon.x86_64": - when: - os: linux store: steam @@ -313767,15 +314679,15 @@ Lost in the Forest: installDir: Lost in the Forest: {} launch: - /lostintheforest.app: + "/lostintheforest.app": - when: - os: mac store: steam - /nw: + "/nw": - when: - os: linux store: steam - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -313786,7 +314698,7 @@ Lost in the Ocean VR: Lost in the Ocean VR: {} steam: id: 596640 -'Lost in the Rift: Reborn': +"Lost in the Rift: Reborn": installDir: Lost in the Rift - Reborn: {} steam: @@ -313795,7 +314707,7 @@ Lost in the Tomb: installDir: Lost in the tomb: {} launch: - /PaperKubik.exe: + "/PaperKubik.exe": - when: - os: windows store: steam @@ -313805,37 +314717,37 @@ Lost with Dinosaurs: installDir: Lost with Dinosaurs: {} launch: - /lostwithdinosaurs.app: + "/lostwithdinosaurs.app": - when: - os: mac store: steam - /nw: + "/nw": - when: - os: linux store: steam - /nw.exe: + "/nw.exe": - when: - os: windows store: steam steam: id: 702200 -'Lost: Via Domus': +"Lost: Via Domus": installDir: Lost Via Domus: {} launch: - /detection/Launcher.exe: + "/detection/Launcher.exe": - when: - store: steam steam: id: 15290 LostWinds: files: - /config.xml: + "/config.xml": tags: - config when: - os: windows - /Saved Games/Frontier Developments/LostWinds1/LW1: + "/Saved Games/Frontier Developments/LostWinds1/LW1": tags: - save when: @@ -313843,14 +314755,14 @@ LostWinds: installDir: LostWinds: {} launch: - /LW1.exe: + "/LW1.exe": - when: - store: steam steam: id: 447780 -'LostWinds 2: Winter of the Melodias': +"LostWinds 2: Winter of the Melodias": files: - /Saved Games/Frontier Developments/LostWinds2/LW2: + "/Saved Games/Frontier Developments/LostWinds2/LW2": tags: - save when: @@ -313858,16 +314770,16 @@ LostWinds: installDir: LostWinds 2 Winter of the Melodias: {} launch: - /LW2.exe: + "/LW2.exe": - when: - store: steam steam: id: 447800 -Lot'zAmonsters: +"Lot'zAmonsters": installDir: - Lot'zAmonsters: {} + "Lot'zAmonsters": {} launch: - /Lotzamonsters.exe: + "/Lotzamonsters.exe": - when: - os: windows store: steam @@ -313877,13 +314789,13 @@ Lotia: installDir: Lotia: {} launch: - /Lotia.app: - - arguments: '--in-process-gpu' + "/Lotia.app": + - arguments: "--in-process-gpu" when: - os: mac store: steam - /lotia.exe: - - arguments: '--in-process-gpu' + "/lotia.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam @@ -313893,7 +314805,7 @@ Lots of Balls: installDir: Lots of Balls: {} launch: - /Lots of Balls/Lots of Balls.exe: + "/Lots of Balls/Lots of Balls.exe": - when: - os: windows store: steam @@ -313901,12 +314813,12 @@ Lots of Balls: id: 780760 Lotus Challenge: files: - /data: + "/data": tags: - config when: - os: windows - /Lotus Challenge/SaveGame: + "/Lotus Challenge/SaveGame": tags: - save when: @@ -313915,11 +314827,11 @@ Loud on Planet X: installDir: LOUD on Planet X: {} launch: - /loud.app: + "/loud.app": - when: - os: mac store: steam - /loud.exe: + "/loud.exe": - when: - os: windows store: steam @@ -313929,11 +314841,11 @@ Loud or Quiet: installDir: Loud or Quiet: {} launch: - /LoudOrQuiet.app: + "/LoudOrQuiet.app": - when: - os: mac store: steam - /LoudOrQuiet.exe: + "/LoudOrQuiet.exe": - when: - os: windows store: steam @@ -313943,11 +314855,11 @@ Louie Cooks: installDir: Louie Cooks: {} launch: - /LouieCooks.exe: + "/LouieCooks.exe": - when: - os: windows store: steam - /LouieCooks.x86: + "/LouieCooks.x86": - when: - os: linux store: steam @@ -313955,7 +314867,7 @@ Louie Cooks: id: 398480 Love: files: - /LOVE_Console/config.cfg: + "/LOVE_Console/config.cfg": tags: - config when: @@ -313963,19 +314875,19 @@ Love: installDir: Love: {} launch: - /LOVE.app: + "/LOVE.app": - when: - os: mac store: steam - /Love: + "/Love": - when: - os: linux store: steam - /Love.exe: + "/Love.exe": - when: - os: windows store: steam - /LoveCustom: + "/LoveCustom": - when: - os: windows store: steam @@ -313985,7 +314897,7 @@ Love & Enchants: installDir: Love & Enchants: {} launch: - /LoveAndEnchants.exe: + "/LoveAndEnchants.exe": - when: - store: steam steam: @@ -313994,21 +314906,21 @@ Love 3: installDir: LOVE 3: {} launch: - /LOVE3: + "/LOVE3": - when: - os: linux store: steam - /LOVE3.exe: + "/LOVE3.exe": - when: - os: windows store: steam steam: id: 1604300 -'Love Alchemy: A Heart In Winter': +"Love Alchemy: A Heart In Winter": installDir: Love Alchemy A Heart In Winter: {} launch: - /LoveAlchemy_AHeartInWinter.exe: + "/LoveAlchemy_AHeartInWinter.exe": - when: - os: windows store: steam @@ -314018,15 +314930,15 @@ Love And Order: installDir: Love And Order: {} launch: - /LoveAndOrder.app: + "/LoveAndOrder.app": - when: - os: mac store: steam - /LoveAndOrder.exe: + "/LoveAndOrder.exe": - when: - os: windows store: steam - /LoveAndOrder.sh: + "/LoveAndOrder.sh": - when: - os: linux store: steam @@ -314036,29 +314948,29 @@ Love Bites: installDir: Love Bites: {} launch: - /Love Bites.app: + "/Love Bites.app": - when: - os: mac store: steam - /Love Bites.exe: + "/Love Bites.exe": - when: - os: windows store: steam - /Love Bites.sh: + "/Love Bites.sh": - when: - os: linux store: steam steam: id: 617970 -'Love Casino: Smoking Aces': +"Love Casino: Smoking Aces": installDir: Love Casino Smoking Aces: {} launch: - /Love Casino Smoking Aces.app/Contents/MacOS/Love Casino Smoking Aces: + "/Love Casino Smoking Aces.app/Contents/MacOS/Love Casino Smoking Aces": - when: - os: mac store: steam - /Love Casino Smoking Aces.exe: + "/Love Casino Smoking Aces.exe": - when: - os: windows store: steam @@ -314068,47 +314980,47 @@ Love Chan: installDir: Love Chan: {} launch: - /Love Chan.exe: + "/Love Chan.exe": - arguments: b when: - os: windows store: steam steam: id: 1148010 -'Love Chronicles: A Winter''s Spell': +"Love Chronicles: A Winter's Spell": installDir: - Love Chronicles A Winter's Spell Collector's Edition: {} + "Love Chronicles A Winter's Spell Collector's Edition": {} launch: - /LoveChronicles_AWintersSpellCE.exe: + "/LoveChronicles_AWintersSpellCE.exe": - when: - os: windows store: steam steam: id: 897000 -'Love Chronicles: Salvation': +"Love Chronicles: Salvation": installDir: - Love Chronicles Salvation Collector's Edition: {} + "Love Chronicles Salvation Collector's Edition": {} launch: - /LoveChronicles_Salvation_CE.exe: + "/LoveChronicles_Salvation_CE.exe": - when: - os: windows store: steam steam: id: 805030 -'Love Chronicles: The Spell': +"Love Chronicles: The Spell": installDir: - Love Chronicles The Spell Collector's Edition: {} + "Love Chronicles The Spell Collector's Edition": {} launch: - /Love Chronicles - The Spell.exe: + "/Love Chronicles - The Spell.exe": - when: - store: steam steam: id: 557720 -'Love Chronicles: The Sword and the Rose': +"Love Chronicles: The Sword and the Rose": installDir: Love Chronicles The Sword and the Rose Collectors Edition: {} launch: - /LoveChronicles_theSwordandtheRose.exe: + "/LoveChronicles_theSwordandtheRose.exe": - when: - os: windows store: steam @@ -314121,7 +315033,7 @@ Love Engine: id: 574170 Love Esquire: files: - /AppData/LocalLow/Yangyang Mobile/Love Esquire/State: + "/AppData/LocalLow/Yangyang Mobile/Love Esquire/State": tags: - save when: @@ -314129,15 +315041,15 @@ Love Esquire: installDir: Love Esquire: {} launch: - /Love Esquire.app: + "/Love Esquire.app": - when: - os: mac store: steam - /Love Esquire.exe: + "/Love Esquire.exe": - when: - os: windows store: steam - /Love Esquire.x86_64: + "/Love Esquire.x86_64": - when: - os: linux store: steam @@ -314147,7 +315059,7 @@ Love Fantasy: installDir: Love Fantasy: {} launch: - /Love Fantasy.exe: + "/Love Fantasy.exe": - when: - os: windows store: steam @@ -314156,20 +315068,20 @@ Love Fantasy: Love Games: steam: id: 911470 -'Love Hentai: Endgame': +"Love Hentai: Endgame": installDir: Love Hentai Endgame: {} launch: - /LHeg.exe: + "/LHeg.exe": - when: - store: steam steam: id: 1000550 -'Love Hentai: Sexy Body': +"Love Hentai: Sexy Body": installDir: Love Hentai Sexy Body: {} launch: - /lhsb.exe: + "/lhsb.exe": - when: - store: steam steam: @@ -314178,20 +315090,20 @@ Love In Drawing: installDir: Love In Drawing: {} launch: - /Love In Drawing.exe: + "/Love In Drawing.exe": - when: - store: steam steam: id: 981260 -'Love Is Blind: Mutants': +"Love Is Blind: Mutants": installDir: Love is Blind Mutants: {} launch: - /LoveisBlind_Alpha_0.0.2.app: + "/LoveisBlind_Alpha_0.0.2.app": - when: - os: mac store: steam - /game.exe: + "/game.exe": - when: - store: steam steam: @@ -314200,7 +315112,7 @@ Love Is In The Space: installDir: Love Is In The Space: {} launch: - /LoveIsInTheSpace.exe: + "/LoveIsInTheSpace.exe": - when: - os: windows store: steam @@ -314210,7 +315122,7 @@ Love Language Japanese: installDir: Love Language Japanese: {} launch: - /LoveLanguageJapanese.exe: + "/LoveLanguageJapanese.exe": - when: - os: windows store: steam @@ -314220,11 +315132,11 @@ Love Letter: installDir: Love Letter: {} launch: - /LoveLetter.app: + "/LoveLetter.app": - when: - os: mac store: steam - /LoveLetter_Release.exe: + "/LoveLetter_Release.exe": - when: - os: windows store: steam @@ -314237,7 +315149,7 @@ Love Letter: Love Me Forever: steam: id: 1192540 -'Love Mythos: Sanctuary Island': +"Love Mythos: Sanctuary Island": steam: id: 1048610 Love Obsession: @@ -314249,7 +315161,7 @@ Love Rhythm: installDir: Hentai Crush Love Rhythm: {} launch: - /LoveRhythm.exe: + "/LoveRhythm.exe": - when: - os: windows store: steam @@ -314259,15 +315171,15 @@ Love Ribbon: installDir: Love Ribbon: {} launch: - /Love_ribbon.app: + "/Love_ribbon.app": - when: - os: mac store: steam - /Love_ribbon.exe: + "/Love_ribbon.exe": - when: - os: windows store: steam - /Love_ribbon.sh: + "/Love_ribbon.sh": - when: - os: linux store: steam @@ -314285,16 +315197,16 @@ Love Simulation: installDir: LoveSim: {} launch: - /game.exe: - - arguments: '-fontcharset=DEFAULT_CHARSET' + "/game.exe": + - arguments: "-fontcharset=DEFAULT_CHARSET" when: - os: windows store: steam steam: id: 836480 -'Love Stories: Furry Shades of Gay': +"Love Stories: Furry Shades of Gay": files: - /Love Stories/Love Stories_Data/NaninovelData/Saves: + "/Love Stories/Love Stories_Data/NaninovelData/Saves": tags: - save when: @@ -314302,7 +315214,7 @@ Love Simulation: installDir: Love Stories Furry Shades of Gay: {} launch: - /Love Stories/Love Stories.exe: + "/Love Stories/Love Stories.exe": - when: - bit: 64 os: windows @@ -314317,52 +315229,52 @@ Love Story of Sparrow: installDir: LoveStoryOfSparrow: {} launch: - /GameLauncher.app/Contents/MacOS/GameLauncher: + "/GameLauncher.app/Contents/MacOS/GameLauncher": - when: - os: mac store: steam - /GameLauncher.exe: + "/GameLauncher.exe": - when: - bit: 64 os: windows store: steam steam: id: 926310 -'Love Story: Letters from the Past': +"Love Story: Letters from the Past": installDir: Love Story Letters from the Past: {} launch: - /Love Story.exe: + "/Love Story.exe": - when: - os: windows store: steam steam: id: 610110 -'Love Story: The Beach Cottage': +"Love Story: The Beach Cottage": installDir: Love Story The Beach Cottage: {} launch: - /LoveStory_TheBeachCottage.exe: + "/LoveStory_TheBeachCottage.exe": - when: - os: windows store: steam steam: id: 770880 -'Love Story: The Way Home': +"Love Story: The Way Home": installDir: Love Story The Way Home: {} launch: - /LoveStoryTheWayHome.exe: + "/LoveStoryTheWayHome.exe": - when: - os: windows store: steam steam: id: 866730 -'Love Sucks: Night One': +"Love Sucks: Night One": installDir: Love Sucks Night One: {} launch: - /LoveSucks.exe: + "/LoveSucks.exe": - when: - os: windows store: steam @@ -314370,22 +315282,22 @@ Love Story of Sparrow: id: 1577420 Love Thyself - A Horatio Story: files: - /game/saves/*.save: + "/game/saves/*.save": tags: - save when: - os: windows - /game/saves/persistent: + "/game/saves/persistent": tags: - config when: - os: windows - /renpy/LoveThyself/*.save: + "/renpy/LoveThyself/*.save": tags: - save when: - os: windows - /renpy/LoveThyself/persistent: + "/renpy/LoveThyself/persistent": tags: - config when: @@ -314393,21 +315305,21 @@ Love Thyself - A Horatio Story: installDir: LoveThyself: {} launch: - /LoveThyself.app: + "/LoveThyself.app": - when: - os: mac store: steam - /LoveThyself.exe: + "/LoveThyself.exe": - when: - os: windows store: steam steam: id: 949060 -'Love Vibe: Aria': +"Love Vibe: Aria": installDir: Love Vibe Aria: {} registry: - 'HKEY_CURRENT_USER/Software/Red Vibe Studio/Love Vibe: Aria': + "HKEY_CURRENT_USER/Software/Red Vibe Studio/Love Vibe: Aria": tags: - config - save @@ -314415,7 +315327,7 @@ Love Thyself - A Horatio Story: id: 884320 Love Wish: files: - /AppData/LocalLow/wangyibo/lovewishs/data: + "/AppData/LocalLow/wangyibo/lovewishs/data": tags: - save when: @@ -314423,7 +315335,7 @@ Love Wish: installDir: lovewish: {} launch: - /lovewish.exe: + "/lovewish.exe": - when: - os: windows store: steam @@ -314433,7 +315345,7 @@ Love all you have left: installDir: Love all you havel left: {} launch: - /LAYHL-V1.exe: + "/LAYHL-V1.exe": - when: - os: windows store: steam @@ -314443,15 +315355,15 @@ Love at Elevation: installDir: Love at Elevation: {} launch: - /Love at Elevation.app/Contents/MacOS/Love at Elevation: + "/Love at Elevation.app/Contents/MacOS/Love at Elevation": - when: - os: mac store: steam - /LoveAtElevation: + "/LoveAtElevation": - when: - os: linux store: steam - /LoveAtElevation.exe: + "/LoveAtElevation.exe": - when: - os: windows store: steam @@ -314461,15 +315373,15 @@ Love at First Sight: installDir: loveatfirstsight: {} launch: - /loveatfirstsight.app/Contents/MacOS/loveatfirstsight: + "/loveatfirstsight.app/Contents/MacOS/loveatfirstsight": - when: - os: mac store: steam - /loveatfirstsight.exe: + "/loveatfirstsight.exe": - when: - os: windows store: steam - /loveatfirstsight.sh: + "/loveatfirstsight.sh": - when: - os: linux store: steam @@ -314477,12 +315389,12 @@ Love at First Sight: id: 353330 Love in the Glen: files: - /LoveInTheGlen2_tyrano_data.sav: + "/LoveInTheGlen2_tyrano_data.sav": tags: - save when: - os: windows - /data/system/Config.tjs: + "/data/system/Config.tjs": tags: - config when: @@ -314490,16 +315402,16 @@ Love in the Glen: installDir: Love in the Glen: {} launch: - /nw: + "/nw": - when: - os: linux store: steam - /nw.exe: - - arguments: '--in-process-gpu' + "/nw.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam - /nwjs.app: + "/nwjs.app": - when: - os: mac store: steam @@ -314509,15 +315421,15 @@ Love in the Limelight: installDir: Love in the Limelight: {} launch: - /loveinthelimelight.app: + "/loveinthelimelight.app": - when: - os: mac store: steam - /loveinthelimelight.exe: + "/loveinthelimelight.exe": - when: - os: windows store: steam - /loveinthelimelight.sh: + "/loveinthelimelight.sh": - when: - os: linux store: steam @@ -314525,7 +315437,7 @@ Love in the Limelight: id: 1006250 Love is Dead: files: - /AppData/LocalLow/Curiobot/Love is Dead/ModifyMeDestroyYourGame.ctx: + "/AppData/LocalLow/Curiobot/Love is Dead/ModifyMeDestroyYourGame.ctx": tags: - save when: @@ -314533,12 +315445,15 @@ Love is Dead: installDir: loveisdead: {} launch: - /loveisdead.app: + "/loveisdead.app": - when: - os: mac store: steam - /loveisdead.exe: + "/loveisdead.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam @@ -314552,7 +315467,7 @@ Love love demon ji-恋恋妖姬: installDir: Love love demon ji-恋恋妖姬: {} launch: - /lianlianyaojun.exe: + "/lianlianyaojun.exe": - when: - os: windows store: steam @@ -314562,7 +315477,7 @@ Love love love: installDir: love love love: {} launch: - /LoveLoveLove.exe: + "/LoveLoveLove.exe": - when: - os: windows store: steam @@ -314572,7 +315487,7 @@ Love or Loved - A Bullet For My Valentine: installDir: Love or Loved: {} launch: - /LoveOrLoved.exe: + "/LoveOrLoved.exe": - when: - os: windows store: steam @@ -314582,7 +315497,7 @@ Love ritual: installDir: Love ritual: {} launch: - /Game.exe: + "/Game.exe": - when: - bit: 64 os: windows @@ -314593,72 +315508,78 @@ Love the game: installDir: love the game: {} launch: - /nw.exe: + "/nw.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam steam: id: 1200990 -Love's Sweet Garnish: +"Love's Sweet Garnish": files: - /CANVAS+GARDEN/koiama_ml: + "/CANVAS+GARDEN/koiama_ml": tags: - config - save when: - os: windows installDir: - Love's Sweet Garnish: {} + "Love's Sweet Garnish": {} launch: - /KoiniKanmiwoSoete.exe: + "/KoiniKanmiwoSoete.exe": - when: - os: windows store: steam steam: id: 891510 -'Love, Guitars, and the Nashville Skyline': +"Love, Guitars, and the Nashville Skyline": installDir: - 'Love, Guitars, and the Nashville Skyline': {} + "Love, Guitars, and the Nashville Skyline": {} launch: - /LGN.exe: + "/LGN.exe": - when: - os: windows store: steam - /LGN.sh: + "/LGN.sh": - when: - os: linux store: steam steam: id: 555650 -'Love, Money, Rock''n''Roll': +"Love, Money, Rock'n'Roll": installDir: - 'Love, Money, Rock-n-Roll': {} + "Love, Money, Rock-n-Roll": {} launch: - '/Love, Money, Rock''n''Roll.exe': + "/Love, Money, Rock'n'Roll.exe": - when: - os: windows store: steam - '/Love, Money, Rock-n-Roll.app': + - bit: 32 + os: windows + store: steam + "/Love, Money, Rock-n-Roll.app": - when: - os: mac store: steam - /run.sh: + "/run.sh": - when: - bit: 64 os: linux store: steam registry: - 'HKEY_CURRENT_USER/Software/Soviet Games/Love, Money, Rock''n''Roll': + "HKEY_CURRENT_USER/Software/Soviet Games/Love, Money, Rock'n'Roll": tags: - config steam: id: 615530 -'Love, Sam': +"Love, Sam": installDir: - 'Love, Sam': {} + "Love, Sam": {} launch: - /LoveSam.exe: + "/LoveSam.exe": - when: - os: windows store: steam @@ -314668,7 +315589,7 @@ LoveBeat: installDir: LoveBeat: {} launch: - /LoveBeat.exe: + "/LoveBeat.exe": - arguments: from_steam when: - os: windows @@ -314679,15 +315600,15 @@ LoveBug: installDir: LoveBug: {} launch: - /LoveBug.app: + "/LoveBug.app": - when: - os: mac store: steam - /LoveBug.exe: + "/LoveBug.exe": - when: - os: windows store: steam - /LoveBug.sh: + "/LoveBug.sh": - when: - os: linux store: steam @@ -314697,15 +315618,15 @@ LoveChoice: installDir: LoveChoice: {} launch: - /LoveChoice.app/Contents/MacOS/Mac: + "/LoveChoice.app/Contents/MacOS/Mac": - when: - os: mac store: steam - /LoveChoice.exe: + "/LoveChoice.exe": - when: - os: windows store: steam - /LoveChoice.x86: + "/LoveChoice.x86": - when: - os: linux store: steam @@ -314715,7 +315636,7 @@ LoveKami -Divinity Stage-: installDir: Love kami -Divinity Stage-: {} launch: - /AdvHD.exe: + "/AdvHD.exe": - when: - os: windows store: steam @@ -314725,7 +315646,7 @@ LoveKami -Healing Harem-: installDir: Lovekami -Healing Harem-: {} launch: - /AdvHD.exe: + "/AdvHD.exe": - when: - os: windows store: steam @@ -314733,7 +315654,7 @@ LoveKami -Healing Harem-: id: 938270 LoveKami -Useless Goddess-: files: - /Saved Games/MoeNovel/LoveKami -Useless Goddess-: + "/Saved Games/MoeNovel/LoveKami -Useless Goddess-": tags: - save when: @@ -314741,7 +315662,7 @@ LoveKami -Useless Goddess-: installDir: Love Kami -Useless Goddess-: {} launch: - /AdvHD.exe: + "/AdvHD.exe": - when: - os: windows store: steam @@ -314754,16 +315675,16 @@ Lovecraft Quest - A Comix Game: installDir: lovecraft-quest-a-comix-game: {} launch: - /Lovecraft-Quest: + "/Lovecraft-Quest": - when: - bit: 64 os: linux store: steam - /Lovecraft-Quest.app: + "/Lovecraft-Quest.app": - when: - os: mac store: steam - /Lovecraft-Quest.exe: + "/Lovecraft-Quest.exe": - when: - os: windows store: steam @@ -314772,14 +315693,14 @@ Lovecraft Quest - A Comix Game: Lovecraft Tales: steam: id: 806750 -Lovecraft's Untold Stories: +"Lovecraft's Untold Stories": files: - /Lus_Data/Save/*.lus: + "/Lus_Data/Save/*.lus": tags: - save when: - os: windows - /Lus_Data/Save/UserSetting.conf: + "/Lus_Data/Save/UserSetting.conf": tags: - config when: @@ -314787,13 +315708,13 @@ Lovecraft's Untold Stories: gog: id: 1674669448 installDir: - Lovecraft's Untold Stories: {} + "Lovecraft's Untold Stories": {} launch: - /Lus.app: + "/Lus.app": - when: - os: mac store: steam - /Lus.exe: + "/Lus.exe": - when: - os: windows store: steam @@ -314803,32 +315724,32 @@ Lovecraft's Untold Stories: - config steam: id: 871420 -Lovecraft's Untold Stories 2: +"Lovecraft's Untold Stories 2": gog: id: 1907953247 installDir: - Lovecraft's Untold Stories 2: {} + "Lovecraft's Untold Stories 2": {} launch: - /LUS2.exe: + "/LUS2.exe": - when: - bit: 64 os: windows store: steam steam: id: 1401400 -'Lovefield General: Back to Work': +"Lovefield General: Back to Work": installDir: Lovefield General Back to Work: {} launch: - /Lovefield General.app: + "/Lovefield General.app": - when: - os: mac store: steam - /Lovefield General.exe: + "/Lovefield General.exe": - when: - os: windows store: steam - /Lovefield General.sh: + "/Lovefield General.sh": - when: - os: linux store: steam @@ -314838,7 +315759,7 @@ Loveless cat: installDir: Loveless cat: {} launch: - /Lovaless Cat.exe: + "/Lovaless Cat.exe": - when: - os: windows store: steam @@ -314848,7 +315769,7 @@ Lovely Fox: installDir: Lovely Fox: {} launch: - /Lovely Fox.exe: + "/Lovely Fox.exe": - when: - bit: 64 os: windows @@ -314859,7 +315780,7 @@ Lovely Hentai: installDir: Lovely Hentai: {} launch: - /LovelyHentai.exe: + "/LovelyHentai.exe": - when: - store: steam steam: @@ -314868,7 +315789,7 @@ Lovely Heroines: installDir: Lovely Heroines: {} launch: - /Lovelyheroines.exe: + "/Lovelyheroines.exe": - when: - os: windows store: steam @@ -314879,12 +315800,12 @@ Lovely Island: id: 806170 Lovely Planet: files: - /userdata//298600/remote/savefile.dat: + "/userdata//298600/remote/savefile.dat": tags: - save when: - store: steam - /unity3d/QUICKTEQUILA/Lovely Planet: + "/unity3d/QUICKTEQUILA/Lovely Planet": tags: - config - save @@ -314895,15 +315816,15 @@ Lovely Planet: installDir: Lovely Planet: {} launch: - /LovelyPlanet.app: + "/LovelyPlanet.app": - when: - os: mac store: steam - /LovelyPlanet.exe: + "/LovelyPlanet.exe": - when: - os: windows store: steam - /LovelyPlanet.x86: + "/LovelyPlanet.x86": - when: - os: linux store: steam @@ -314913,19 +315834,19 @@ Lovely Planet: - config steam: id: 298600 -'Lovely Planet 2: April Skies': +"Lovely Planet 2: April Skies": installDir: Lovely Planet 2: {} launch: - /AprilSkies.app: + "/AprilSkies.app": - when: - os: mac store: steam - /AprilSkies.exe: + "/AprilSkies.exe": - when: - os: windows store: steam - /AprilSkies.x86_64: + "/AprilSkies.x86_64": - when: - os: linux store: steam @@ -314933,7 +315854,7 @@ Lovely Planet: id: 1019590 Lovely Planet Arcade: files: - /save: + "/save": tags: - save when: @@ -314941,15 +315862,15 @@ Lovely Planet Arcade: installDir: Lovely Planet Arcade: {} launch: - /LPArcade.app: + "/LPArcade.app": - when: - os: mac store: steam - /LPArcade.exe: + "/LPArcade.exe": - when: - os: windows store: steam - /LPArcade.x86: + "/LPArcade.x86": - when: - os: linux store: steam @@ -314959,25 +315880,25 @@ Lovely Planet Remix: installDir: Lovely Planet Remix: {} launch: - /LovelyPlanetRemix.app: + "/LovelyPlanetRemix.app": - when: - os: mac store: steam - /LovelyPlanetRemix.exe: + "/LovelyPlanetRemix.exe": - when: - os: windows store: steam steam: id: 1604780 -Lovely Weather We're Having: +"Lovely Weather We're Having": installDir: - Lovely Weather We're Having: {} + "Lovely Weather We're Having": {} launch: - /Lovely Weather We're Having.app/Contents/MacOS/Lovely Weather We're Having: + "/Lovely Weather We're Having.app/Contents/MacOS/Lovely Weather We're Having": - when: - os: mac store: steam - /Lovely Weather We're Having.exe: + "/Lovely Weather We're Having.exe": - when: - os: windows store: steam @@ -314985,7 +315906,7 @@ Lovely Weather We're Having: id: 404150 Loverowind: files: - /Loverowind/Saved/SaveGames: + "/Loverowind/Saved/SaveGames": tags: - save when: @@ -314993,28 +315914,28 @@ Loverowind: installDir: Loverowind: {} launch: - /Loverowind.exe: + "/Loverowind.exe": - when: - bit: 64 os: windows store: steam steam: id: 1625960 -Lovers ' Smiles: +"Lovers ' Smiles": installDir: - Lovers ' Smiles: {} + "Lovers ' Smiles": {} launch: - /Lovers Smiles.exe: + "/Lovers Smiles.exe": - when: - os: windows store: steam steam: id: 956100 -Lovers ' Smiles 2: +"Lovers ' Smiles 2": installDir: - Lovers ' Smiles 2: {} + "Lovers ' Smiles 2": {} launch: - /Lovers ' Smiles 2.exe: + "/Lovers ' Smiles 2.exe": - when: - os: windows store: steam @@ -315022,37 +315943,37 @@ Lovers ' Smiles 2: id: 1031550 Lovers in a Dangerous Spacetime: files: - /Library/Application Support/LoversInADangerousSpacetime: + "/Library/Application Support/LoversInADangerousSpacetime": tags: - config when: - os: mac - /Library/Application Support/LoversInADangerousSpacetime/save.dat: + "/Library/Application Support/LoversInADangerousSpacetime/save.dat": tags: - save when: - os: mac - /LoversInADangerousSpacetime: + "/LoversInADangerousSpacetime": tags: - config when: - os: windows - /LoversInADangerousSpacetime/save.dat: + "/LoversInADangerousSpacetime/save.dat": tags: - save when: - os: windows - /unity3d/AsteroidBase/LoversInADangerousSpacetime/prefs: + "/unity3d/AsteroidBase/LoversInADangerousSpacetime/prefs": tags: - config when: - os: linux - /LoversInADangerousSpacetime/save.dat: + "/LoversInADangerousSpacetime/save.dat": tags: - save when: - os: linux - /LoversInADangerousSpacetime/settings.dat: + "/LoversInADangerousSpacetime/settings.dat": tags: - config when: @@ -315062,20 +315983,20 @@ Lovers in a Dangerous Spacetime: installDir: Lovers in a Dangerous Spacetime: {} launch: - /LoversInADangerousSpacetime.app: + "/LoversInADangerousSpacetime.app": - when: - os: mac store: steam - /LoversInADangerousSpacetime.exe: + "/LoversInADangerousSpacetime.exe": - when: - os: windows store: steam - /LoversInADangerousSpacetime.x86: + "/LoversInADangerousSpacetime.x86": - when: - bit: 32 os: linux store: steam - /LoversInADangerousSpacetime.x86_64: + "/LoversInADangerousSpacetime.x86_64": - when: - bit: 64 os: linux @@ -315084,7 +316005,7 @@ Lovers in a Dangerous Spacetime: id: 252110 Lovers of Aether: files: - /LoversOfAether: + "/LoversOfAether": tags: - save when: @@ -315092,11 +316013,11 @@ Lovers of Aether: installDir: Lovers of Aether: {} launch: - /LOVERS OF AETHER.app: + "/LOVERS OF AETHER.app": - when: - os: mac store: steam - /LoversOfAether.exe: + "/LoversOfAether.exe": - when: - os: windows store: steam @@ -315106,12 +316027,12 @@ Lovestory: installDir: Lovestory: {} launch: - /Lovestory(x64).exe: + "/Lovestory(x64).exe": - when: - bit: 64 os: windows store: steam - /Lovestory(x86).exe: + "/Lovestory(x86).exe": - when: - bit: 32 store: steam @@ -315121,11 +316042,11 @@ Low Desert Punk: installDir: Low Desert Punk: {} launch: - /LowDesertPunk.exe: + "/LowDesertPunk.exe": - when: - os: windows store: steam - /low_desert_punk_mac.app: + "/low_desert_punk_mac.app": - when: - os: mac store: steam @@ -315133,7 +316054,7 @@ Low Desert Punk: id: 709400 Low Light Combat: files: - /.config/unity3d/Wolfire Games/Low Light Combat: + "/.config/unity3d/Wolfire Games/Low Light Combat": tags: - config - save @@ -315141,7 +316062,7 @@ Low Light Combat: - os: linux Low Magic Age: files: - /saves: + "/saves": tags: - save when: @@ -315151,7 +316072,7 @@ Low Magic Age: installDir: LowMagicAge: {} launch: - /low_magic_age.exe: + "/low_magic_age.exe": - when: - os: windows store: steam @@ -315161,7 +316082,7 @@ LowPoly 3D Art Paint by Number: installDir: LowPoly 3D Art Paint by Number: {} launch: - /LowPolyPaint.exe: + "/LowPolyPaint.exe": - when: - os: windows store: steam @@ -315171,11 +316092,11 @@ Lowglow: installDir: Lowglow: {} launch: - /Lowglow.app: + "/Lowglow.app": - when: - os: mac store: steam - /Lowglow.exe: + "/Lowglow.exe": - when: - os: windows store: steam @@ -315185,17 +316106,17 @@ Lowpoly Hero: installDir: Lowpoly Hero: {} launch: - /LowpolyHero_Shipped/WindowsNoEditor/LowpolyHero.exe: + "/LowpolyHero_Shipped/WindowsNoEditor/LowpolyHero.exe": - when: - os: windows store: steam steam: id: 770360 -'Loyalty and Blood: Viktor Origins': +"Loyalty and Blood: Viktor Origins": installDir: Loyalty and Blood Viktor Origins: {} launch: - /launcher.exe: + "/launcher.exe": - when: - os: windows store: steam @@ -315205,15 +316126,15 @@ Lozenge: installDir: Lozenge: {} launch: - /Lozenge.Linux/Lozenge.x86: + "/Lozenge.Linux/Lozenge.x86": - when: - os: linux store: steam - /Lozenge.app/Contents/MacOS/Lozenge: + "/Lozenge.app/Contents/MacOS/Lozenge": - when: - os: mac store: steam - /win32/Lozenge.exe: + "/win32/Lozenge.exe": - when: - os: windows store: steam @@ -315223,21 +316144,21 @@ Lu Bu Maker: installDir: ypmaker: {} launch: - /YpPlayer.exe: + "/YpPlayer.exe": - when: - os: windows store: steam steam: id: 882900 -'LuGame: Lunchtime Games Club!': +"LuGame: Lunchtime Games Club!": installDir: LuGame: {} launch: - /Mac/LunchtimeGamesClub.app/Contents/MacOS/LunchtimeGamesClub: + "/Mac/LunchtimeGamesClub.app/Contents/MacOS/LunchtimeGamesClub": - when: - os: mac store: steam - /Windows/LunchtimeGamesClub.exe: + "/Windows/LunchtimeGamesClub.exe": - when: - os: windows store: steam @@ -315247,29 +316168,29 @@ Lucadian Chronicles: installDir: Lucadian Chronicles: {} launch: - /LucadianChronicles.app: + "/LucadianChronicles.app": - when: - os: mac store: steam - /LucadianChronicles.exe: + "/LucadianChronicles.exe": - when: - os: windows store: steam steam: id: 392620 -'Lucah: Born of a Dream': +"Lucah: Born of a Dream": files: - /Lucah Born of a Dream_Data/boot.cfg: + "/Lucah Born of a Dream_Data/boot.cfg": tags: - config when: - store: steam - /.config/unity3d/melessthanthree/Lucah_ Born of a Dream: + "/.config/unity3d/melessthanthree/Lucah_ Born of a Dream": tags: - save when: - os: linux - /AppData/LocalLow/melessthanthree/Lucah_ Born of a Dream/savedGames.gd: + "/AppData/LocalLow/melessthanthree/Lucah_ Born of a Dream/savedGames.gd": tags: - save when: @@ -315277,27 +316198,27 @@ Lucadian Chronicles: installDir: Lucah Born of a Dream: {} launch: - /Lucah Born of a Dream.app: + "/Lucah Born of a Dream.app": - when: - os: mac store: steam - /Lucah Born of a Dream.exe: + "/Lucah Born of a Dream.exe": - when: - os: windows store: steam - /Lucah Born of a Dream.x86: - - arguments: '-force-glcore42 -force-clamped' + "/Lucah Born of a Dream.x86": + - arguments: "-force-glcore42 -force-clamped" when: - os: linux store: steam - /Lucah Born of a Dream.x86_64: - - arguments: '-force-glcore42 -force-clamped' + "/Lucah Born of a Dream.x86_64": + - arguments: "-force-glcore42 -force-clamped" when: - bit: 64 os: linux store: steam registry: - 'HKEY_CURRENT_USER/Software/melessthanthree/Lucah: Born of a Dream': + "HKEY_CURRENT_USER/Software/melessthanthree/Lucah: Born of a Dream": tags: - config steam: @@ -315306,20 +316227,20 @@ Lucent Heart: installDir: Lucent Heart: {} launch: - /LucentPatch.exe: + "/LucentPatch.exe": - arguments: /steam when: - store: steam steam: id: 283060 -'Luci: Horror Story': +"Luci: Horror Story": steam: id: 581860 Lucid: installDir: Lucid: {} launch: - /Lucid.exe: + "/Lucid.exe": - when: - store: steam steam: @@ -315331,7 +316252,7 @@ Lucid Awakening 2: installDir: Lucid Awakening 2: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -315339,7 +316260,7 @@ Lucid Awakening 2: id: 340400 Lucid Cycle: files: - /LucidCycle/Saved/SaveGames: + "/LucidCycle/Saved/SaveGames": tags: - save when: @@ -315347,7 +316268,7 @@ Lucid Cycle: installDir: Lucid Cycle: {} launch: - /LucidCycle.exe: + "/LucidCycle.exe": - when: - bit: 64 os: windows @@ -315358,7 +316279,7 @@ Lucid Dream: installDir: Lucid Dream: {} launch: - /Lucid Dream.app: + "/Lucid Dream.app": - when: - os: mac store: steam @@ -315368,7 +316289,7 @@ Lucid Nina: installDir: Lucid Nina: {} launch: - /Lucid Nina.exe: + "/Lucid Nina.exe": - when: - os: windows store: steam @@ -315378,16 +316299,16 @@ Lucid Path: installDir: Lucid Path: {} launch: - /LucidPath.exe: + "/LucidPath.exe": - when: - os: windows store: steam - /LucidPath.x86: + "/LucidPath.x86": - when: - bit: 32 os: linux store: steam - /LucidPath.x86_64: + "/LucidPath.x86_64": - when: - bit: 64 os: linux @@ -315399,14 +316320,14 @@ Lucid Trips: Lucid Trips: {} steam: id: 389260 -'Lucid9: Inciting Incident': +"Lucid9: Inciting Incident": files: - /renpy/config.py: + "/renpy/config.py": tags: - config when: - os: windows - /RenPy/Lucid9-1440647848: + "/RenPy/Lucid9-1440647848": tags: - save when: @@ -315414,15 +316335,15 @@ Lucid Trips: installDir: Lucid9: {} launch: - /Lucid9.app: + "/Lucid9.app": - when: - os: mac store: steam - /Lucid9.exe: + "/Lucid9.exe": - when: - os: windows store: steam - /Lucid9.sh: + "/Lucid9.sh": - when: - os: linux store: steam @@ -315430,12 +316351,12 @@ Lucid Trips: id: 439940 Lucidity: files: - /LucasArts/Lucidity/: + "/LucasArts/Lucidity/": tags: - save when: - os: windows - /LucasArts/Lucidity//config.xml: + "/LucasArts/Lucidity//config.xml": tags: - config when: @@ -315443,7 +316364,7 @@ Lucidity: installDir: Lucidity: {} launch: - /Lucidity.exe: + "/Lucidity.exe": - when: - store: steam steam: @@ -315452,11 +316373,11 @@ Lucie: installDir: Lucie: {} launch: - /Lucie.app: + "/Lucie.app": - when: - os: mac store: steam - /Lucie.exe: + "/Lucie.exe": - when: - os: windows store: steam @@ -315466,37 +316387,37 @@ Lucifer Within Us: installDir: Lucifer Within Us: {} launch: - /LWU_OSX.app/Contents/MacOS/LWU_OSX: + "/LWU_OSX.app/Contents/MacOS/LWU_OSX": - when: - os: mac store: steam - /LuciferWithinUs.exe: + "/LuciferWithinUs.exe": - when: - os: windows store: steam steam: id: 717560 -Lucifer's Forest: +"Lucifer's Forest": installDir: Aesthetic World: {} launch: - /AW.exe: + "/AW.exe": - when: - os: windows store: steam steam: id: 929000 -Lucifer's Nine Trophies: +"Lucifer's Nine Trophies": steam: id: 817810 Lucius: files: - /Lucius/saves: + "/Lucius/saves": tags: - config when: - os: windows - /Lucius/saves/: + "/Lucius/saves/": tags: - save when: @@ -315506,7 +316427,7 @@ Lucius: installDir: Lucius: {} launch: - /Lucius.exe: + "/Lucius.exe": - when: - os: windows store: steam @@ -315514,22 +316435,22 @@ Lucius: id: 218640 Lucius Demake: files: - /AppData/LocalLow/Shiver Games/Lucius Demake: + "/AppData/LocalLow/Shiver Games/Lucius Demake": tags: - config when: - os: windows - /AppData/LocalLow/Shiver Games/Lucius Demake/saves: + "/AppData/LocalLow/Shiver Games/Lucius Demake/saves": tags: - save when: - os: windows - /unity3d/Shiver Games/Lucius Demake/prefs: + "/unity3d/Shiver Games/Lucius Demake/prefs": tags: - config when: - os: linux - /unity3d/Shiver Games/Lucius Demake/saves: + "/unity3d/Shiver Games/Lucius Demake/saves": tags: - save when: @@ -315537,11 +316458,11 @@ Lucius Demake: installDir: LuciusDemake: {} launch: - /LuciusDemake.exe: + "/LuciusDemake.exe": - when: - os: windows store: steam - /LuciusDemake.x86: + "/LuciusDemake.x86": - when: - os: linux store: steam @@ -315549,22 +316470,22 @@ Lucius Demake: id: 364230 Lucius II: files: - /.config/unity3d/Shiver Games/Lucius II: + "/.config/unity3d/Shiver Games/Lucius II": tags: - save when: - os: linux - /.config/unity3d/Shiver Games/Lucius II/ProfileData.pro: + "/.config/unity3d/Shiver Games/Lucius II/ProfileData.pro": tags: - config when: - os: linux - /AppData/LocalLow/Shiver Games/Lucius II: + "/AppData/LocalLow/Shiver Games/Lucius II": tags: - save when: - os: windows - /AppData/LocalLow/Shiver Games/Lucius II/ProfileData.pro: + "/AppData/LocalLow/Shiver Games/Lucius II/ProfileData.pro": tags: - config when: @@ -315572,12 +316493,12 @@ Lucius II: installDir: LuciusII: {} launch: - /LuciusII.exe: + "/LuciusII.exe": - when: - bit: 32 os: windows store: steam - /LuciusII.x86: + "/LuciusII.x86": - when: - os: linux store: steam @@ -315585,7 +316506,7 @@ Lucius II: id: 296830 Lucius III: files: - /AppData/LocalLow/Shiver Games/Lucius III: + "/AppData/LocalLow/Shiver Games/Lucius III": tags: - config - save @@ -315594,7 +316515,7 @@ Lucius III: installDir: Lucius III: {} launch: - /Lucius3.exe: + "/Lucius3.exe": - when: - store: steam registry: @@ -315605,17 +316526,17 @@ Lucius III: id: 513290 Luck Be a Landlord: files: - /Godot/app_userdata/Luck be a Landlord: + "/Godot/app_userdata/Luck be a Landlord": tags: - save when: - os: windows - /Godot/app_userdata/Luck be a Landlord/LBAL-Settings.save: + "/Godot/app_userdata/Luck be a Landlord/LBAL-Settings.save": tags: - config when: - os: windows - /godot/app_userdata/Luck be a Landlord/LBAL-Settings.save: + "/godot/app_userdata/Luck be a Landlord/LBAL-Settings.save": tags: - config when: @@ -315623,15 +316544,15 @@ Luck Be a Landlord: installDir: Luck be a Landlord: {} launch: - /Luck be a Landlord.app/Contents/MacOS/Luck be a Landlord: + "/Luck be a Landlord.app/Contents/MacOS/Luck be a Landlord": - when: - os: mac store: steam - /Luck be a Landlord.exe: + "/Luck be a Landlord.exe": - when: - os: windows store: steam - /Luck be a Landlord.x86_64: + "/Luck be a Landlord.x86_64": - when: - os: linux store: steam @@ -315641,8 +316562,8 @@ LuckCatchers: installDir: LuckCatchers: {} launch: - /game64.exe: - - arguments: '--steam' + "/game64.exe": + - arguments: "--steam" when: - bit: 64 os: windows @@ -315656,23 +316577,23 @@ Luckslinger: installDir: Luckslinger: {} launch: - /Luckslinger.app/Contents/MacOS/Luckslinger: + "/Luckslinger.app/Contents/MacOS/Luckslinger": - when: - os: mac store: steam - /Luckslinger.exe: + "/Luckslinger.exe": - when: - os: windows store: steam - /Luckslinger.x86_64: + "/Luckslinger.x86_64": - when: - os: linux store: steam steam: id: 358810 -'Lucky Luke: Western Fever': +"Lucky Luke: Western Fever": files: - /SAVE: + "/SAVE": tags: - save when: @@ -315682,21 +316603,21 @@ Lucky Night VR: Lucky Night: {} steam: id: 753060 -'Lucky Night: Poker Games': +"Lucky Night: Poker Games": installDir: LuckyNight: {} steam: id: 862520 -'Lucky Night: Texas Hold''em VR': +"Lucky Night: Texas Hold'em VR": installDir: - Lucky Night Texas Hold'em VR: {} + "Lucky Night Texas Hold'em VR": {} steam: id: 657010 Lucky Of Love: installDir: Lucky Of Love: {} launch: - /Lucky of Love.exe: + "/Lucky of Love.exe": - when: - os: windows store: steam @@ -315706,7 +316627,7 @@ Lucky Panda: installDir: Lucky Panda: {} launch: - /Lucky Panda.exe: + "/Lucky Panda.exe": - when: - os: windows store: steam @@ -315716,15 +316637,15 @@ Lucky Rabbit Reflex!: installDir: Lucky Rabbit Reflex!: {} launch: - /LRR.app: + "/LRR.app": - when: - os: mac store: steam - /LRR.exe: + "/LRR.exe": - when: - os: windows store: steam - /LRR.sh: + "/LRR.sh": - when: - os: linux store: steam @@ -315742,25 +316663,25 @@ Lucky VS Aliens: installDir: Lucky VS Aliens: {} launch: - /Lucky_VS_Aliens.exe: + "/Lucky_VS_Aliens.exe": - when: - os: windows store: steam steam: id: 823370 -Lucky's Tale VR: +"Lucky's Tale VR": installDir: - Lucky's Tale VR: {} + "Lucky's Tale VR": {} steam: id: 1803840 Lucy -The Eternity She Wished For-: files: - /Config.nkenv: + "/Config.nkenv": tags: - config when: - os: windows - /Saves: + "/Saves": tags: - save when: @@ -315768,7 +316689,7 @@ Lucy -The Eternity She Wished For-: installDir: Lucy -The Eternity She Wished For-: {} launch: - /Lucy.exe: + "/Lucy.exe": - when: - os: windows store: steam @@ -315776,22 +316697,22 @@ Lucy -The Eternity She Wished For-: id: 430960 Lucy Got Problems: files: - /.renpy/LGP-1505403882/*.save: + "/.renpy/LGP-1505403882/*.save": tags: - save when: - os: linux - /.renpy/LGP-1505403882/persistent: + "/.renpy/LGP-1505403882/persistent": tags: - config when: - os: linux - /RenPy/LGP-1505403882/*.save: + "/RenPy/LGP-1505403882/*.save": tags: - save when: - os: windows - /RenPy/LGP-1505403882/persistent: + "/RenPy/LGP-1505403882/persistent": tags: - config when: @@ -315799,15 +316720,15 @@ Lucy Got Problems: installDir: Lucy Got Problems: {} launch: - /LGP.app: + "/LGP.app": - when: - os: mac store: steam - /LGP.exe: + "/LGP.exe": - when: - os: windows store: steam - /LGP.sh: + "/LGP.sh": - when: - os: linux store: steam @@ -315818,19 +316739,19 @@ Ludicrous Speed: Ludicrous Speed: {} steam: id: 857740 -'Ludo Online: Classic Multiplayer Dice Board Game': +"Ludo Online: Classic Multiplayer Dice Board Game": installDir: Ludo Online: {} launch: - /ludo-online: + "/ludo-online": - when: - os: linux store: steam - /ludo-online.exe: + "/ludo-online.exe": - when: - os: windows store: steam - /ludo-online.osx: + "/ludo-online.osx": - when: - os: mac store: steam @@ -315840,7 +316761,7 @@ Ludo Supremo: installDir: Ludo Supremo: {} launch: - /LudoSupremo.exe: + "/LudoSupremo.exe": - when: - os: windows store: steam @@ -315850,7 +316771,7 @@ Ludoku: installDir: Ludoku: {} launch: - /Ludoku.exe: + "/Ludoku.exe": - when: - os: windows store: steam @@ -315863,7 +316784,7 @@ Ludoria: installDir: Ludoria: {} launch: - /Ludoria.exe: + "/Ludoria.exe": - when: - os: windows store: steam @@ -315873,7 +316794,7 @@ Ludu: installDir: Ludu: {} launch: - /RPG_RT.exe: + "/RPG_RT.exe": - when: - os: windows store: steam @@ -315883,7 +316804,7 @@ Ludus: installDir: Ludus: {} launch: - /windows_content/Ludus.exe: + "/windows_content/Ludus.exe": - when: - store: steam steam: @@ -315892,8 +316813,8 @@ Ludwig: installDir: LUDWIG: {} launch: - /ludwig.exe: - - arguments: '-popupwindow' + "/ludwig.exe": + - arguments: "-popupwindow" when: - os: windows store: steam @@ -315901,19 +316822,19 @@ Ludwig: id: 263120 Luftrausers: files: - /.LUFTRAUSERS: + "/.LUFTRAUSERS": tags: - config - save when: - - os: linux - os: mac - /userdata//233150/remote: + - os: linux + "/userdata//233150/remote": tags: - save when: - store: steam - /.LUFTRAUSERS: + "/.LUFTRAUSERS": tags: - config - save @@ -315924,30 +316845,30 @@ Luftrausers: installDir: Luftrausers: {} launch: - /LUFTRAUSERS.app: + "/LUFTRAUSERS.app": - when: - os: mac store: steam - /bin/Luftrausers.exe: + "/bin/Luftrausers.exe": - when: - os: windows store: steam - workingDir: /bin - /launch.sh: + workingDir: "/bin" + "/launch.sh": - when: - os: linux store: steam steam: id: 233150 -Lufulus' Creatures: +"Lufulus' Creatures": installDir: - Lufulus' Creatures: {} + "Lufulus' Creatures": {} launch: - /LufulusCreatures.app: + "/LufulusCreatures.app": - when: - os: mac store: steam - /LufulusCreaturesLauncher.exe: + "/LufulusCreaturesLauncher.exe": - when: - bit: 64 os: windows @@ -315956,13 +316877,13 @@ Lufulus' Creatures: id: 960220 Lugaru: files: - /Data: + "/Data": tags: - config - save when: - os: windows - /.lugaru: + "/.lugaru": tags: - config - save @@ -315971,15 +316892,15 @@ Lugaru: installDir: Lugaru HD: {} launch: - /Lugaru: + "/Lugaru": - when: - os: linux store: steam - /Lugaru.app: + "/Lugaru.app": - when: - os: mac store: steam - /Lugaru.exe: + "/Lugaru.exe": - when: - os: windows store: steam @@ -315989,11 +316910,11 @@ Luke Sidewalker: installDir: Luke Sidewalker: {} launch: - /lukesidewalker.app/Contents/MacOS/Mac_Runner: + "/lukesidewalker.app/Contents/MacOS/Mac_Runner": - when: - os: mac store: steam - /lukesidewalker.exe: + "/lukesidewalker.exe": - when: - os: windows store: steam @@ -316004,7 +316925,7 @@ Lukewarm Ironclad: id: 999450 Lula 3D: files: - /Save: + "/Save": tags: - save when: @@ -316013,9 +316934,9 @@ Lula 3D: HKEY_CURRENT_USER/Software/CDV Software Entertainment AG/Lula 3D: tags: - config -'Lula: The Sexy Empire': +"Lula: The Sexy Empire": files: - /DATA/SAVE: + "/DATA/SAVE": tags: - save when: @@ -316024,7 +316945,7 @@ Lula 3D: id: 1443433575 Lulu & Ennoi - Sacred Suit Girls: files: - '/AppData/LocalLow/SmallSqurriel Co_, Ltd/Lulu & Ennoi - Sacred Suit Girls': + "/AppData/LocalLow/SmallSqurriel Co_, Ltd/Lulu & Ennoi - Sacred Suit Girls": tags: - save when: @@ -316032,26 +316953,26 @@ Lulu & Ennoi - Sacred Suit Girls: installDir: Lulu & Ennoi - Sacred Suit Girls: {} launch: - /Lulu & Ennoi - Sacred Suit Girls.exe: + "/Lulu & Ennoi - Sacred Suit Girls.exe": - when: - os: windows store: steam steam: id: 1051590 -Lumak's Wraptiles: +"Lumak's Wraptiles": installDir: LumaksWraptiles: {} launch: - /LumaksWraptiles: + "/LumaksWraptiles": - when: - bit: 64 os: linux store: steam - /LumaksWraptiles.app: + "/LumaksWraptiles.app": - when: - os: mac store: steam - /LumaksWraptiles.exe: + "/LumaksWraptiles.exe": - when: - bit: 32 os: windows @@ -316064,7 +316985,7 @@ LumbearJack: installDir: LumbearJack: {} launch: - /LumbearJack.exe: + "/LumbearJack.exe": - when: - bit: 64 os: windows @@ -316075,7 +316996,7 @@ Lumber Island - That Special Place: installDir: Lumber Island - That Special Place: {} launch: - /Lumber Island - That Special Place.exe: + "/Lumber Island - That Special Place.exe": - when: - os: windows store: steam @@ -316085,7 +317006,7 @@ Lumber King: installDir: Lumber King: {} launch: - /LumberKing.exe: + "/LumberKing.exe": - when: - os: windows store: steam @@ -316095,7 +317016,7 @@ Lumberhill: installDir: Lumberhill: {} launch: - /Lumberhill.exe: + "/Lumberhill.exe": - when: - os: windows store: steam @@ -316105,7 +317026,7 @@ Lumberjack Simulator: installDir: Lumberjack Simulator: {} launch: - /Lumberjack Simulator.exe: + "/Lumberjack Simulator.exe": - when: - os: windows store: steam @@ -316116,9 +317037,9 @@ Lumberjack VR: Lumberjack VR: {} steam: id: 704310 -Lumberjack's Dynasty: +"Lumberjack's Dynasty": files: - /LumberjacksDynasty/Save: + "/LumberjacksDynasty/Save": tags: - config - save @@ -316129,7 +317050,7 @@ Lumberjack's Dynasty: installDir: Lumberjacks Dynasty: {} launch: - /LumberjacksDynasty.exe: + "/LumberjacksDynasty.exe": - when: - bit: 64 os: windows @@ -316140,7 +317061,7 @@ Lumbermancer: installDir: Lumbermancer: {} launch: - /Lumbermancer.exe: + "/Lumbermancer.exe": - when: - os: windows store: steam @@ -316153,15 +317074,15 @@ Lume: installDir: Lume: {} launch: - /Lume: + "/Lume": - when: - os: linux store: steam - /Lume.app: + "/Lume.app": - when: - os: mac store: steam - /Lume.exe: + "/Lume.exe": - when: - os: windows store: steam @@ -316172,12 +317093,12 @@ Lume and the Shifting Void: id: 1133470 Lumencraft: files: - /2Dynamic/Lumencraft: + "/2Dynamic/Lumencraft": tags: - config when: - os: windows - /2Dynamic/Lumencraft/Saves: + "/2Dynamic/Lumencraft/Saves": tags: - save when: @@ -316187,27 +317108,27 @@ Lumencraft: installDir: Lumencraft: {} launch: - /Lumencraft.app: + "/Lumencraft.app": - when: - os: mac store: steam - /Lumencraft.exe: + "/Lumencraft.exe": - when: - bit: 64 os: windows store: steam - /Lumencraft.x86_64: + "/Lumencraft.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 1713810 -Lumin's Path: +"Lumin's Path": installDir: - Lumin's Path: {} + "Lumin's Path": {} launch: - /Lumin's Path.exe: + "/Lumin's Path.exe": - when: - os: windows store: steam @@ -316217,11 +317138,11 @@ Lumina: installDir: Lumina: {} launch: - /Lumina.app: + "/Lumina.app": - when: - os: mac store: steam - /Lumina.exe: + "/Lumina.exe": - when: - bit: 64 os: windows @@ -316232,19 +317153,19 @@ Lumines: installDir: Lumines: {} launch: - /Lumines.exe: + "/Lumines.exe": - when: - store: steam steam: id: 11900 Lumines Remastered: files: - /SAV//lumines-remastered.dat: + "/SAV//lumines-remastered.dat": tags: - save when: - store: steam - /Packages/EnhanceIncorporated.SHAKECoreGame_63vy8jfbpt4dt/SystemAppData/wgs: + "/Packages/EnhanceIncorporated.SHAKECoreGame_63vy8jfbpt4dt/SystemAppData/wgs": tags: - save when: @@ -316253,7 +317174,7 @@ Lumines Remastered: installDir: LUMINES REMASTERED: {} launch: - /Lumines-remastered.exe: + "/Lumines-remastered.exe": - when: - bit: 64 os: windows @@ -316262,13 +317183,15 @@ Lumines Remastered: HKEY_CURRENT_USER/Software/Enhance Incorporated/LUMINES REMASTERED: tags: - config + when: + - store: steam steam: id: 851670 Luminescence: installDir: Luminescence: {} launch: - /Luminescence-v1.1-win/Luminescence.exe: + "/Luminescence-v1.1-win/Luminescence.exe": - when: - bit: 32 os: windows @@ -316279,26 +317202,26 @@ Lumini: installDir: Lumini: {} launch: - /Lumini.app: + "/Lumini.app": - when: - os: mac store: steam - /lumini_Linux32.x86: + "/lumini_Linux32.x86": - when: - bit: 32 os: linux store: steam - /lumini_Linux64.x86_64: + "/lumini_Linux64.x86_64": - when: - bit: 64 os: linux store: steam - /lumini_Win32.exe: + "/lumini_Win32.exe": - when: - bit: 32 os: windows store: steam - /lumini_Win64.exe: + "/lumini_Win64.exe": - when: - bit: 64 os: windows @@ -316307,7 +317230,7 @@ Lumini: id: 360840 Lumino City: files: - /com.stateofplaygames.LuminoCity: + "/com.stateofplaygames.LuminoCity": tags: - save when: @@ -316317,15 +317240,15 @@ Lumino City: installDir: LuminoCity: {} launch: - /Lumino City.exe: + "/Lumino City.exe": - when: - os: windows store: steam - /LuminoCity.app: + "/LuminoCity.app": - when: - os: mac store: steam - /bin/LuminoCity: + "/bin/LuminoCity": - when: - os: linux store: steam @@ -316335,7 +317258,7 @@ Luminos: installDir: Luminos: {} launch: - /Luminos.exe: + "/Luminos.exe": - when: - os: windows store: steam @@ -316345,8 +317268,8 @@ Luminosity: installDir: Luminosity: {} launch: - /Luminosity.exe: - - arguments: . + "/Luminosity.exe": + - arguments: "." when: - os: windows store: steam @@ -316356,7 +317279,7 @@ Luminoso: installDir: Luminoso: {} launch: - /Luminoso.exe: + "/Luminoso.exe": - when: - os: windows store: steam @@ -316366,14 +317289,14 @@ Luminous Combat: installDir: Luminous Combat: {} launch: - /LuminousCombat.exe: + "/LuminousCombat.exe": - when: - store: steam steam: id: 827410 Lumo: files: - /tdi: + "/tdi": tags: - save when: @@ -316383,20 +317306,20 @@ Lumo: installDir: Lumo: {} launch: - /Lumo.app/Contents/MacOS/Lumo: + "/Lumo.app/Contents/MacOS/Lumo": - when: - os: mac store: steam - /Lumo.exe: + "/Lumo.exe": - when: - os: windows store: steam - /Lumo.x86: + "/Lumo.x86": - when: - bit: 32 os: linux store: steam - /Lumo.x86_64: + "/Lumo.x86_64": - when: - bit: 64 os: linux @@ -316413,7 +317336,7 @@ Lumote: installDir: Lumote: {} launch: - /rEngine.exe: + "/rEngine.exe": - when: - bit: 64 os: windows @@ -316424,22 +317347,22 @@ Luna: installDir: Luna: {} launch: - /luna-linux.x86_64: + "/luna-linux.x86_64": - when: - bit: 64 os: linux store: steam - /luna-osx.app: + "/luna-osx.app": - when: - bit: 64 os: mac store: steam - /luna-windows32.exe: + "/luna-windows32.exe": - when: - bit: 32 os: windows store: steam - /luna-windows64.exe: + "/luna-windows64.exe": - when: - bit: 64 os: windows @@ -316450,7 +317373,7 @@ Luna (Funomena): installDir: Luna: {} launch: - /LunaWindowsNoVR/Luna.exe: + "/LunaWindowsNoVR/Luna.exe": - when: - bit: 64 os: windows @@ -316460,11 +317383,11 @@ Luna (Funomena): Luna Abyss: steam: id: 1933000 -'Luna Online: Reborn': +"Luna Online: Reborn": installDir: Luna_NA: {} launch: - /Launcher.exe: + "/Launcher.exe": - when: - os: windows store: steam @@ -316474,7 +317397,7 @@ Luna Sanctus: installDir: Luna Sanctus: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -316484,12 +317407,12 @@ Luna Sky: installDir: Luna Sky: {} launch: - /lunasky: + "/lunasky": - when: - bit: 64 os: linux store: steam - /lunasky.exe: + "/lunasky.exe": - when: - bit: 64 os: windows @@ -316500,10 +317423,10 @@ Luna Sky RDX: installDir: Luna Sky RDX: {} launch: - /lunasky.exe: + "/lunasky.exe": - when: - store: steam - - arguments: '-console' + - arguments: "-console" when: - store: steam steam: @@ -316512,7 +317435,7 @@ Luna and Cynthia: installDir: Luna and Cynthia: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: @@ -316521,29 +317444,29 @@ Luna and the Moonling: installDir: Luna and the Moonling: {} launch: - /Luna.app/Contents/MacOS/Luna: + "/Luna.app/Contents/MacOS/Luna": - when: - os: mac store: steam - /Luna.exe: + "/Luna.exe": - when: - os: windows store: steam - /Luna.x86: + "/Luna.x86": - when: - bit: 32 os: linux store: steam - /Luna.x86_64: + "/Luna.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 577360 -Luna's Fishing Garden: +"Luna's Fishing Garden": files: - /AppData/LocalLow/ColdwildGames/FishingGarden/session.*: + "/AppData/LocalLow/ColdwildGames/FishingGarden/session.*": tags: - save when: @@ -316552,55 +317475,55 @@ Luna's Fishing Garden: steamExtra: - 1643810 installDir: - Luna's Fishing Garden: {} + "Luna's Fishing Garden": {} launch: - /FishingGarden.app: + "/FishingGarden.app": - when: - os: mac store: steam - /FishingGarden.exe: + "/FishingGarden.exe": - when: - os: windows store: steam - /FishingGarden.x86_64: + "/FishingGarden.x86_64": - when: - os: linux store: steam steam: id: 1477790 -Luna's Wandering Stars: +"Luna's Wandering Stars": installDir: Lunas_Wandering_Stars: {} launch: - /LunasWanderingStars.app: - - arguments: '-debug_steamapi' + "/LunasWanderingStars.app": + - arguments: "-debug_steamapi" when: - os: mac store: steam - /LunasWanderingStars.exe: - - arguments: '-debug_steamapi' + "/LunasWanderingStars.exe": + - arguments: "-debug_steamapi" when: - os: windows store: steam steam: id: 330660 -'Luna: Shattered Hearts: Episode 1': +"Luna: Shattered Hearts: Episode 1": installDir: Luna Shattered Hearts Episode 1: {} launch: - /Luna.app: + "/Luna.app": - when: - os: mac store: steam - /nw.exe: + "/nw.exe": - when: - os: windows store: steam steam: id: 331400 -'Luna: The Shadow Dust': +"Luna: The Shadow Dust": files: - /AppData/LocalLow/LanternStudio/LunaTheShadowDust: + "/AppData/LocalLow/LanternStudio/LunaTheShadowDust": tags: - save when: @@ -316610,20 +317533,20 @@ Luna's Wandering Stars: installDir: LUNA The Shadow Dust: {} launch: - /Luna.app: + "/Luna.app": - when: - os: mac store: steam - /Luna.exe: + "/Luna.exe": - when: - os: windows store: steam - /Luna.x86: + "/Luna.x86": - when: - bit: 32 os: linux store: steam - /Luna.x86_64: + "/Luna.x86_64": - when: - bit: 64 os: linux @@ -316632,17 +317555,17 @@ Luna's Wandering Stars: id: 465100 Lunacid: files: - /LUNACID_Data/Resources/BINDINGS.txt: + "/LUNACID_Data/Resources/BINDINGS.txt": tags: - config when: - os: windows - /LUNACID_Data/SAVE_*.MIDNIGHT: + "/LUNACID_Data/SAVE_*.MIDNIGHT": tags: - save when: - os: windows - /LUNACID_Data/SETTINGS.MIDNIGHT: + "/LUNACID_Data/SETTINGS.MIDNIGHT": tags: - config when: @@ -316650,7 +317573,7 @@ Lunacid: installDir: Lunacid: {} launch: - /LUNACID.exe: + "/LUNACID.exe": - when: - store: steam registry: @@ -316659,11 +317582,11 @@ Lunacid: - config steam: id: 1745510 -'Lunacy: Saint Rhodes': +"Lunacy: Saint Rhodes": installDir: Lunacy: {} launch: - /Lunacy.exe: + "/Lunacy.exe": - when: - os: windows store: steam @@ -316673,20 +317596,20 @@ Lunaform: installDir: Lunaform: {} launch: - /Lunaform.app: + "/Lunaform.app": - when: - os: mac store: steam - /Lunaform.exe: + "/Lunaform.exe": - when: - os: windows store: steam - /lunaform.x86: + "/lunaform.x86": - when: - bit: 32 os: linux store: steam - /lunaform.x86_64: + "/lunaform.x86_64": - when: - bit: 64 os: linux @@ -316702,35 +317625,35 @@ Lunar Flight: installDir: Lunar Flight: {} launch: - /LunarFlight.app: + "/LunarFlight.app": - when: - os: mac store: steam - /LunarFlight.exe: + "/LunarFlight.exe": - when: - os: windows store: steam steam: id: 208600 -'Lunar Manor: Episode 1': +"Lunar Manor: Episode 1": steam: id: 979410 Lunar Soil: steam: id: 823210 -'Lunar Stone: Origin of Blood': +"Lunar Stone: Origin of Blood": installDir: Lunar Stone - ~Origin of Blood~: {} steam: id: 553800 -'Lunar Timepiece: Shadow of Twelve': +"Lunar Timepiece: Shadow of Twelve": steam: id: 1117650 -Lunar's Chosen: +"Lunar's Chosen": installDir: - Lunar's Chosen: {} + "Lunar's Chosen": {} launch: - /LunarsChosen.exe: + "/LunarsChosen.exe": - when: - os: windows store: steam @@ -316740,7 +317663,7 @@ LunarLux: installDir: LunarLux: {} launch: - /LunarLux.exe: + "/LunarLux.exe": - when: - os: windows store: steam @@ -316750,11 +317673,11 @@ Lunark: installDir: LUNARK: {} launch: - /LUNARK.app/Contents/MacOS/LUNARK: + "/LUNARK.app/Contents/MacOS/LUNARK": - when: - os: mac store: steam - /LUNARK.exe: + "/LUNARK.exe": - when: - os: windows store: steam @@ -316764,11 +317687,11 @@ Lunarsea: installDir: Lunarsea: {} launch: - /Executable.exe: + "/Executable.exe": - when: - os: windows store: steam - /mac_content.app/Contents/MacOS/mac_content: + "/mac_content.app/Contents/MacOS/mac_content": - when: - os: mac store: steam @@ -316778,16 +317701,16 @@ Lunatic Dawn Legend Pack: installDir: LunaticDawn_LP: {} launch: - /LUNATICDAWN_LP.exe: + "/LUNATICDAWN_LP.exe": - when: - store: steam steam: id: 338070 -'Lunatic Dawn: Passage of the Book': +"Lunatic Dawn: Passage of the Book": installDir: LunaticDawnPotB: {} launch: - /Ld95.exe: + "/Ld95.exe": - when: - store: steam steam: @@ -316796,16 +317719,16 @@ Lunch A Palooza: installDir: Lunch A Palooza: {} launch: - /Lunch A Palooza (Steam Beta).app: + "/Lunch A Palooza (Steam Beta).app": - when: - os: mac store: steam - /Lunch A Palooza - Steam Beta (x32).exe: + "/Lunch A Palooza - Steam Beta (x32).exe": - when: - bit: 32 os: windows store: steam - /Lunch A Palooza - Steam Beta (x64).exe: + "/Lunch A Palooza - Steam Beta (x64).exe": - when: - bit: 64 os: windows @@ -316816,15 +317739,15 @@ Lunch Truck Tycoon: installDir: Lunch Truck Tycoon: {} launch: - /Lunch Truck Tycoon.app: + "/Lunch Truck Tycoon.app": - when: - os: mac store: steam - /Lunch Truck Tycoon.exe: + "/Lunch Truck Tycoon.exe": - when: - os: windows store: steam - /runner: + "/runner": - when: - os: linux store: steam @@ -316834,7 +317757,7 @@ Lunch Truck Tycoon 2: installDir: Lunch Truck Tycoon 2: {} launch: - /LTT2_steam.exe: + "/LTT2_steam.exe": - when: - os: windows store: steam @@ -316842,7 +317765,7 @@ Lunch Truck Tycoon 2: id: 660120 Lunistice: files: - /AppData/LocalLow/AGrumpyFox/Lunistice/lunistice.owo: + "/AppData/LocalLow/AGrumpyFox/Lunistice/lunistice.owo": tags: - save when: @@ -316852,7 +317775,7 @@ Lunistice: installDir: Lunistice: {} launch: - /Lunistice.exe: + "/Lunistice.exe": - when: - bit: 64 os: windows @@ -316863,10 +317786,10 @@ Lunnye Devitsy: installDir: Lunnye Devitsy: {} launch: - /Bonus/original/lunnye devitsy.exe: + "/Bonus/original/lunnye devitsy.exe": - when: - store: steam - /Lunnye Devitsy 2013.exe: + "/Lunnye Devitsy 2013.exe": - when: - store: steam steam: @@ -316875,7 +317798,7 @@ Lup: installDir: Lup: {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: @@ -316884,11 +317807,11 @@ Lupinball: installDir: Lupinball: {} launch: - /Lupinball.app/Contents/MacOS/Lupinball: + "/Lupinball.app/Contents/MacOS/Lupinball": - when: - os: mac store: steam - /lupinball.exe: + "/lupinball.exe": - when: - os: windows store: steam @@ -316898,12 +317821,15 @@ Lupus in Fabula: installDir: Lupus in Fabula: {} launch: - /lupus.exe: + "/lupus.exe": - when: - bit: 32 os: windows store: steam - /lupusinfabula.app: + - bit: 64 + os: windows + store: steam + "/lupusinfabula.app": - when: - bit: 64 os: mac @@ -316912,13 +317838,13 @@ Lupus in Fabula: id: 652130 Lure of the Temptress: files: - /lure.001: + "/lure.001": tags: - save when: - os: dos - os: windows - /lure.ini: + "/lure.ini": tags: - config when: @@ -316930,25 +317856,25 @@ Lurk: installDir: Lurk: {} launch: - /Lurk.app: + "/Lurk.app": - when: - os: mac store: steam - /Lurk.exe: + "/Lurk.exe": - when: - os: windows store: steam - /Lurk.x86: + "/Lurk.x86": - when: - os: linux store: steam steam: id: 527260 -'Lurk in the Dark : Prologue': +"Lurk in the Dark : Prologue": installDir: Lurk in the Dark Prologue: {} launch: - /Lurk in the Dark Prologue.exe: + "/Lurk in the Dark Prologue.exe": - when: - bit: 64 os: windows @@ -316957,7 +317883,7 @@ Lurk: id: 1094030 Lust Academy - Season 1: files: - /game/saves: + "/game/saves": tags: - save when: @@ -316971,16 +317897,16 @@ Lust Academy - Season 1: installDir: Lust Academy: {} launch: - /Lust-Academy-32.exe: + "/Lust-Academy-32.exe": - when: - bit: 32 os: windows store: steam - /Lust-Academy.app: + "/Lust-Academy.app": - when: - os: mac store: steam - /Lust-Academy.exe: + "/Lust-Academy.exe": - when: - bit: 64 os: windows @@ -316989,7 +317915,7 @@ Lust Academy - Season 1: id: 1846920 Lust Academy - Season 2: files: - /game/saves: + "/game/saves": tags: - save when: @@ -317002,21 +317928,21 @@ Lust Academy - Season 2: installDir: Lust Academy Season 2: {} launch: - /Lust-Academy-2-32.exe: + "/Lust-Academy-2-32.exe": - when: - bit: 32 os: windows store: steam - /Lust-Academy-2.app: + "/Lust-Academy-2.app": - when: - os: mac store: steam - /Lust-Academy-2.exe: + "/Lust-Academy-2.exe": - when: - bit: 64 os: windows store: steam - /Lust-Academy-2.sh: + "/Lust-Academy-2.sh": - when: - os: linux store: steam @@ -317024,7 +317950,7 @@ Lust Academy - Season 2: id: 2126680 Lust Epidemic: files: - /Library/Application Support/KADOKAWA: + "/Library/Application Support/KADOKAWA": tags: - save when: @@ -317032,11 +317958,11 @@ Lust Epidemic: installDir: Lust Epidemic: {} launch: - /Game.app: + "/Game.app": - when: - os: mac store: steam - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -317044,7 +317970,7 @@ Lust Epidemic: id: 1008020 Lust Theory - Season 1: files: - /Renpy/LustTheoryS1-1536575576: + "/Renpy/LustTheoryS1-1536575576": tags: - save when: @@ -317054,11 +317980,11 @@ Lust Theory - Season 1: installDir: Lust Theory: {} launch: - /LustTheoryS1.app: + "/LustTheoryS1.app": - when: - os: mac store: steam - /LustTheoryS1.exe: + "/LustTheoryS1.exe": - when: - os: windows store: steam @@ -317070,15 +317996,15 @@ Lust Theory - Season 2: installDir: Lust Theory Season 2: {} launch: - /LustTheory2.app: + "/LustTheory2.app": - when: - os: mac store: steam - /LustTheory2.exe: + "/LustTheory2.exe": - when: - os: windows store: steam - /LustTheory2.sh: + "/LustTheory2.sh": - when: - os: linux store: steam @@ -317086,12 +318012,12 @@ Lust Theory - Season 2: id: 1754870 Lust for Darkness: files: - /AppData/LocalLow/Movie Games Lunarium/Lust For Darkness/*.xml: + "/AppData/LocalLow/Movie Games Lunarium/Lust For Darkness/*.xml": tags: - config when: - os: windows - /AppData/LocalLow/Movie Games Lunarium/Lust For Darkness/game_data.sav: + "/AppData/LocalLow/Movie Games Lunarium/Lust For Darkness/game_data.sav": tags: - save when: @@ -317099,11 +318025,11 @@ Lust for Darkness: installDir: Lust for Darkness: {} launch: - /Lust For Darkness.app/Contents/MacOS/Lust For Darkness: + "/Lust For Darkness.app/Contents/MacOS/Lust For Darkness": - when: - os: mac store: steam - /LustForDarkness.exe: + "/LustForDarkness.exe": - when: - os: windows store: steam @@ -317111,12 +318037,12 @@ Lust for Darkness: id: 523650 Lust from Beyond: files: - /AppData/LocalLow/Movie Games Lunarium/Lust From Beyond/cfg: + "/AppData/LocalLow/Movie Games Lunarium/Lust From Beyond/cfg": tags: - config when: - os: windows - /AppData/LocalLow/Movie Games Lunarium/Lust From Beyond/profile: + "/AppData/LocalLow/Movie Games Lunarium/Lust From Beyond/profile": tags: - save when: @@ -317126,16 +318052,16 @@ Lust from Beyond: installDir: Lust from Beyond: {} launch: - /Lust From Beyond.exe: + "/Lust From Beyond.exe": - when: - store: steam steam: id: 1035120 -'Lust from Beyond: Prologue': +"Lust from Beyond: Prologue": installDir: Lust from Beyond - Prologue: {} launch: - /Lust from Beyond - Prologue.exe: + "/Lust from Beyond - Prologue.exe": - when: - store: steam steam: @@ -317144,7 +318070,7 @@ Lustful Survival: installDir: Lustful Survival: {} launch: - /Lustful Survival.exe: + "/Lustful Survival.exe": - when: - bit: 64 os: windows @@ -317155,8 +318081,8 @@ Luvocious: installDir: Luvocious: {} launch: - /Luvocious.exe: - - arguments: '--in-process-gpu' + "/Luvocious.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam @@ -317166,15 +318092,15 @@ Lux Alliance: installDir: Lux Alliance: {} launch: - /Lux Alliance.app: + "/Lux Alliance.app": - when: - os: mac store: steam - /Lux Alliance.exe: + "/Lux Alliance.exe": - when: - os: windows store: steam - /LuxAllianceLinux.sh: + "/LuxAllianceLinux.sh": - when: - os: linux store: steam @@ -317184,15 +318110,15 @@ Lux Delux: installDir: Lux Delux: {} launch: - /Lux Delux.app: + "/Lux Delux.app": - when: - os: mac store: steam - /Lux Delux.exe: + "/Lux Delux.exe": - when: - os: windows store: steam - /LuxDelux.sh: + "/LuxDelux.sh": - when: - os: linux store: steam @@ -317202,7 +318128,7 @@ Lux umbra: installDir: Lux umbra: {} launch: - /Luxumbra.exe: + "/Luxumbra.exe": - when: - os: windows store: steam @@ -317217,15 +318143,15 @@ Luxis: installDir: LUXIS: {} launch: - /LUXIS(Linux).x86: + "/LUXIS(Linux).x86": - when: - os: linux store: steam - /LUXIS.app/Contents/MacOS/LUXIS: + "/LUXIS.app/Contents/MacOS/LUXIS": - when: - os: mac store: steam - /LUXIS.exe: + "/LUXIS.exe": - when: - os: windows store: steam @@ -317235,7 +318161,7 @@ Luxo Buddies: installDir: LUXO Buddies: {} launch: - /LUXO Buddies.exe: + "/LUXO Buddies.exe": - when: - os: windows store: steam @@ -317245,11 +318171,11 @@ Luxor: installDir: Luxor: {} launch: - /Luxor.app: + "/Luxor.app": - when: - os: mac store: steam - /Luxor.exe: + "/Luxor.exe": - when: - os: windows store: steam @@ -317259,14 +318185,14 @@ Luxor 2: installDir: Luxor 2: {} launch: - /Luxor2.exe: + "/Luxor2.exe": - when: - store: steam steam: id: 15920 Luxor 2 HD: files: - /MumboJumbo/Luxor 2 HD: + "/MumboJumbo/Luxor 2 HD": tags: - save when: @@ -317274,7 +318200,7 @@ Luxor 2 HD: installDir: Luxor 2 HD: {} launch: - /luxor_2_x86.exe: + "/luxor_2_x86.exe": - when: - os: windows store: steam @@ -317282,7 +318208,7 @@ Luxor 2 HD: id: 234350 Luxor 3: files: - /MumboJumbo/Luxor 3/Profiles: + "/MumboJumbo/Luxor 3/Profiles": tags: - save when: @@ -317290,11 +318216,11 @@ Luxor 3: installDir: Luxor 3: {} launch: - /Luxor 3.app: + "/Luxor 3.app": - when: - os: mac store: steam - /Luxor3.exe: + "/Luxor3.exe": - when: - os: windows store: steam @@ -317302,7 +318228,7 @@ Luxor 3: id: 15930 Luxor 5th Passage: files: - /MumboJumbo/Luxor - Fifth Passage/prefsdb.dat: + "/MumboJumbo/Luxor - Fifth Passage/prefsdb.dat": tags: - config - save @@ -317311,11 +318237,11 @@ Luxor 5th Passage: installDir: LUXOR 5th Passage: {} launch: - /LUXOR - 5th Passage.app: + "/LUXOR - 5th Passage.app": - when: - os: mac store: steam - /LUXOR - 5th Passage.exe: + "/LUXOR - 5th Passage.exe": - when: - os: windows store: steam @@ -317325,7 +318251,7 @@ Luxor Amun Rising: installDir: LuxorAR: {} launch: - /Luxor AR.exe: + "/Luxor AR.exe": - when: - os: windows store: steam @@ -317335,7 +318261,7 @@ Luxor Evolved: installDir: Luxor Evolved: {} launch: - /luxor_ev_x86.exe: + "/luxor_ev_x86.exe": - when: - store: steam steam: @@ -317344,7 +318270,7 @@ Luxor HD: installDir: Luxor HD: {} launch: - /luxor_hd_x86.exe: + "/luxor_hd_x86.exe": - when: - os: windows store: steam @@ -317354,11 +318280,11 @@ Luxor Mahjong: installDir: Luxor Mahjong: {} launch: - /Luxor Mahjong.app: + "/Luxor Mahjong.app": - when: - os: mac store: steam - /LuxorMahjong.exe: + "/LuxorMahjong.exe": - when: - os: windows store: steam @@ -317368,34 +318294,34 @@ Luxor Solitaire: installDir: Luxor Solitaire: {} launch: - /LuxorSolitaire.exe: + "/LuxorSolitaire.exe": - when: - os: windows store: steam steam: id: 1034270 -'Luxor: Amun Rising HD': +"Luxor: Amun Rising HD": installDir: Luxor Amun Rising HD: {} launch: - /luxor_ar_hd_x86.exe: + "/luxor_ar_hd_x86.exe": - when: - os: windows store: steam steam: id: 216930 -'Luxor: Quest for the Afterlife': +"Luxor: Quest for the Afterlife": installDir: Luxor Quest for the Afterlife: {} launch: - /Luxor4.exe: + "/Luxor4.exe": - when: - store: steam steam: id: 16040 Luxuria Superbia: files: - /.config/unity3d/Tale of Tales/Luxuria Superbia: + "/.config/unity3d/Tale of Tales/Luxuria Superbia": tags: - config - save @@ -317404,20 +318330,20 @@ Luxuria Superbia: installDir: Luxuria Superbia: {} launch: - /Luxuria Superbia.app: + "/Luxuria Superbia.app": - when: - os: mac store: steam - /LuxuriaSuperbia.exe: + "/LuxuriaSuperbia.exe": - when: - os: windows store: steam - /LuxuriaSuperbia.x86: + "/LuxuriaSuperbia.x86": - when: - bit: 32 os: linux store: steam - /LuxuriaSuperbia.x86_64: + "/LuxuriaSuperbia.x86_64": - when: - bit: 64 os: linux @@ -317428,7 +318354,7 @@ Luxury Hotel Emporium: installDir: Luxury Hotel Emporium: {} launch: - /HotelImperium.exe: + "/HotelImperium.exe": - when: - store: steam steam: @@ -317442,7 +318368,7 @@ Lyantei: installDir: Lyantei: {} launch: - /Lyantei-win/Lyantei.exe: + "/Lyantei-win/Lyantei.exe": - when: - os: windows store: steam @@ -317452,7 +318378,7 @@ Lycah: installDir: Lycah: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: @@ -317461,22 +318387,22 @@ Lydia: installDir: Lydia: {} launch: - /Lydia.exe: + "/Lydia.exe": - when: - bit: 64 os: windows store: steam - /LydiaMac.app: + "/LydiaMac.app": - when: - os: mac store: steam steam: id: 629000 -'Lydia: Sweet Dreams': +"Lydia: Sweet Dreams": installDir: LYDIA SWEET DREAMS: {} launch: - /lydia.exe: + "/lydia.exe": - when: - bit: 32 os: windows @@ -317485,17 +318411,17 @@ Lydia: id: 447930 Lyne: files: - /saves/lyne.sav: + "/saves/lyne.sav": tags: - save when: - os: windows - /unity3d/Thomas Bowker/LYNE: + "/unity3d/Thomas Bowker/LYNE": tags: - config when: - os: linux - /unity3d/Thomas Bowker/LYNE/lyne.sav: + "/unity3d/Thomas Bowker/LYNE/lyne.sav": tags: - save when: @@ -317503,15 +318429,15 @@ Lyne: installDir: LYNE: {} launch: - /LYNE.app: + "/LYNE.app": - when: - os: mac store: steam - /LYNE.exe: + "/LYNE.exe": - when: - os: windows store: steam - /LYNE.x64: + "/LYNE.x64": - when: - bit: 64 os: linux @@ -317524,17 +318450,17 @@ Lyne: id: 266010 Lynne: files: - /game/saves: + "/game/saves": tags: - save when: - os: windows - /renpy/config.py: + "/renpy/config.py": tags: - config when: - os: windows - /renpy/Lynne-1495120738: + "/renpy/Lynne-1495120738": tags: - save when: @@ -317542,15 +318468,15 @@ Lynne: installDir: Lynne: {} launch: - /Lynne.app: + "/Lynne.app": - when: - os: mac store: steam - /Lynne.exe: + "/Lynne.exe": - when: - os: windows store: steam - /Lynne.sh: + "/Lynne.sh": - when: - os: linux store: steam @@ -317561,17 +318487,17 @@ LyraVR: LyraVR: {} steam: id: 572630 -'Lyratha: Labyrinth - Survival - Escape': +"Lyratha: Labyrinth - Survival - Escape": installDir: Lyratha Labyrinth - Survival - Escape: {} launch: - /Lyratha.exe: + "/Lyratha.exe": - when: - os: windows store: steam steam: id: 1031330 -'Lá Camila: A VR Experience': +"Lá Camila: A VR Experience": installDir: La Camila A VR Experience: {} steam: @@ -317579,9 +318505,9 @@ LyraVR: M Mania: steam: id: 798340 -'M&M''s: The Lost Formulas': +"M&M's: The Lost Formulas": files: - /M&Ms The Lost Formulas: + "/M&Ms The Lost Formulas": tags: - save when: @@ -317590,7 +318516,7 @@ M-Plan: installDir: M计划-plan M: {} launch: - /MPlan.exe: + "/MPlan.exe": - when: - os: windows store: steam @@ -317600,7 +318526,7 @@ M.A.C.E.: installDir: MACE: {} launch: - /MACE_Windows.exe: + "/MACE_Windows.exe": - when: - os: windows store: steam @@ -317610,7 +318536,7 @@ M.A.C.E. Tower Defense: installDir: M.A.C.E. Tower Defense: {} launch: - /MaceDefense.exe: + "/MaceDefense.exe": - when: - os: windows store: steam @@ -317620,7 +318546,7 @@ M.A.C.S.: installDir: MACS: {} launch: - /MACS.exe: + "/MACS.exe": - when: - os: windows store: steam @@ -317628,12 +318554,12 @@ M.A.C.S.: id: 583700 M.A.S.S. Builder: files: - /MASS_Builder/Saved/Config/WindowsNoEditor: + "/MASS_Builder/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /MASS_Builder/Saved/SaveGames: + "/MASS_Builder/Saved/SaveGames": tags: - save when: @@ -317641,24 +318567,24 @@ M.A.S.S. Builder: installDir: M.A.S.S. Builder: {} launch: - /MASS_Builder.exe: - - arguments: '-novr -nohmd' + "/MASS_Builder.exe": + - arguments: "-novr -nohmd" when: - bit: 64 os: windows store: steam steam: id: 956680 -'M.A.X. 2: Mechanized Assault & Exploration': +"M.A.X. 2: Mechanized Assault & Exploration": installDir: M.A.X. 2 Mechanized Assault & Exploration: {} launch: - /MAX2.EXE: + "/MAX2.EXE": - when: - store: steam steam: id: 756810 -'M.A.X.: Mechanized Assault and Exploration': +"M.A.X.: Mechanized Assault and Exploration": gog: id: 1207663773 id: @@ -317667,19 +318593,19 @@ M.A.S.S. Builder: installDir: M.A.X. Mechanized Assault & Exploration: {} launch: - /DOSBox/dosbox.app/Contents/MacOS/DOSBox: - - arguments: '-conf \"./dosboxMAX1.conf\" -conf \"./dosboxMAX1_single.conf\" -noconsole' + "/DOSBox/dosbox.app/Contents/MacOS/DOSBox": + - arguments: "-conf \\\"./dosboxMAX1.conf\\\" -conf \\\"./dosboxMAX1_single.conf\\\" -noconsole" when: - os: mac store: steam - /dosbox/dosbox: - - arguments: '-conf \"./dosboxMAX1.conf\" -conf \"./dosboxMAX1_single.conf\" -noconsole' + "/dosbox/dosbox": + - arguments: "-conf \\\"./dosboxMAX1.conf\\\" -conf \\\"./dosboxMAX1_single.conf\\\" -noconsole" when: - os: linux store: steam steam: id: 615250 -'M.A.X.: Mechanized Assault and Exploration 2': +"M.A.X.: Mechanized Assault and Exploration 2": gog: id: 1207663783 id: @@ -317688,7 +318614,7 @@ M.A.S.S. Builder: installDir: M.A.X. 2 Mechanized Assault & Exploration: {} launch: - /MAX2.EXE: + "/MAX2.EXE": - when: - store: steam steam: @@ -317697,7 +318623,7 @@ M.C.I. Escapes: installDir: M.C.I. Escapes: {} launch: - /M.C.I. Escapes.exe: + "/M.C.I. Escapes.exe": - when: - os: windows store: steam @@ -317707,7 +318633,7 @@ M.E.M.E.S.: installDir: MEMES: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -317717,7 +318643,7 @@ M.E.R.C.: installDir: M.E.R.C: {} launch: - /MERC.exe: + "/MERC.exe": - when: - bit: 64 os: windows @@ -317728,7 +318654,7 @@ M.EXE: installDir: Mdot: {} launch: - /m.exe: + "/m.exe": - when: - os: windows store: steam @@ -317743,7 +318669,7 @@ M.I.N.D.: installDir: MINDgame: {} launch: - /mindgame.exe: + "/mindgame.exe": - when: - store: steam steam: @@ -317752,18 +318678,18 @@ M.U.D. TV: installDir: M.U.D. TV: {} launch: - /MudTV.exe: + "/MudTV.exe": - when: - store: steam steam: id: 43500 -'M.U.D.S.: Mean Ugly Dirty Sport': +"M.U.D.S.: Mean Ugly Dirty Sport": gog: id: 1082621048 installDir: M.U.D.S. Mean Ugly Dirty Sport: {} launch: - /Launcher/ConsoleLauncher.exe: + "/Launcher/ConsoleLauncher.exe": - when: - os: windows store: steam @@ -317781,22 +318707,22 @@ M1 Tank Platoon: installDir: M1 Tank Platoon: {} launch: - /DOSBox/dosbox.app/Contents/MacOS/DOSBox: - - arguments: '-conf \"config/dosbox_tank.conf\"' + "/DOSBox/dosbox.app/Contents/MacOS/DOSBox": + - arguments: "-conf \\\"config/dosbox_tank.conf\\\"" when: - os: mac store: steam - /M1_Tank_Platoon_TS.pdf: + "/M1_Tank_Platoon_TS.pdf": - when: - store: steam - /M1_Tank_Platoon_Vehicle_Guide.pdf: + "/M1_Tank_Platoon_Vehicle_Guide.pdf": - when: - store: steam - /PlayGame.bat: + "/PlayGame.bat": - when: - os: windows store: steam - /PlayGame.sh: + "/PlayGame.sh": - when: - os: linux store: steam @@ -317808,24 +318734,24 @@ M1 Tank Platoon II: installDir: M1 Tank Platoon II: {} launch: - /M1TP2.exe: + "/M1TP2.exe": - when: - store: steam steam: id: 1406700 -'M1: A Death in the Desert': +"M1: A Death in the Desert": files: - /game/saves: + "/game/saves": tags: - save when: - os: windows - /renpy/config.py: + "/renpy/config.py": tags: - config when: - os: windows - /renpy/None: + "/renpy/None": tags: - save when: @@ -317833,15 +318759,15 @@ M1 Tank Platoon II: installDir: M1 A Death in the Desert: {} launch: - /M1 A Death in the Desert.app: + "/M1 A Death in the Desert.app": - when: - os: mac store: steam - /M1 A Death in the Desert.exe: + "/M1 A Death in the Desert.exe": - when: - os: windows store: steam - /M1 A Death in the Desert.sh: + "/M1 A Death in the Desert.sh": - when: - os: linux store: steam @@ -317851,12 +318777,12 @@ M4 Tank Brigade: installDir: M4 Tank Brigade: {} launch: - /M4TankBrigade.app/Contents/MacOS/WarBirds: + "/M4TankBrigade.app/Contents/MacOS/WarBirds": - when: - os: mac store: steam - workingDir: /M4TankBrigade.app/Resources - /wb3_steam.exe: + workingDir: "/M4TankBrigade.app/Resources" + "/wb3_steam.exe": - when: - os: windows store: steam @@ -317866,24 +318792,24 @@ M4 Tank Brigade: store: steam steam: id: 348810 -'M: Alien Paranoia': +"M: Alien Paranoia": files: - /M3d.ini: + "/M3d.ini": tags: - config when: - os: windows - /m.ini: + "/m.ini": tags: - config when: - os: windows - /partidas: + "/partidas": tags: - save when: - os: windows - /teclas.ini: + "/teclas.ini": tags: - config when: @@ -317899,12 +318825,12 @@ MAD Maze: installDir: MAD Maze: {} launch: - /MadMaze_64.exe: + "/MadMaze_64.exe": - when: - bit: 64 os: windows store: steam - /MadMaze_86.exe: + "/MadMaze_86.exe": - when: - bit: 32 os: windows @@ -317915,7 +318841,7 @@ MADELA: installDir: MADELA: {} launch: - /MADELA.exe: + "/MADELA.exe": - when: - os: windows store: steam @@ -317923,12 +318849,12 @@ MADELA: id: 1186650 MADiSON: files: - /AppData/LocalLow/BLOODIOUS GAMES LLC/MADiSON/Data: + "/AppData/LocalLow/BLOODIOUS GAMES LLC/MADiSON/Data": tags: - save when: - os: windows - /AppData/LocalLow/BLOODIOUS GAMES LLC/MADiSON/Data/*.dat: + "/AppData/LocalLow/BLOODIOUS GAMES LLC/MADiSON/Data/*.dat": tags: - config when: @@ -317938,7 +318864,7 @@ MADiSON: installDir: MADiSON: {} launch: - /MADiSON.exe: + "/MADiSON.exe": - when: - os: windows store: steam @@ -317948,7 +318874,7 @@ MAGICAL×SPIRAL: installDir: MAGICALSPIRAL: {} launch: - /MagicalSpiral.exe: + "/MagicalSpiral.exe": - when: - store: steam steam: @@ -317957,7 +318883,7 @@ MAIn COMPetition: installDir: mAIn COMPetition: {} launch: - /mAIn_COMPetition.exe: + "/mAIn_COMPetition.exe": - when: - os: windows store: steam @@ -317967,7 +318893,7 @@ MAKE IT as an Artist: installDir: MAKE IT as an Artist: {} launch: - /deathinkSim51.exe: + "/deathinkSim51.exe": - when: - os: windows store: steam @@ -317977,7 +318903,7 @@ MAN STANDING: installDir: Man Standing: {} launch: - /ManStanding.exe: + "/ManStanding.exe": - when: - store: steam steam: @@ -317986,11 +318912,11 @@ MANIC: installDir: MANIC: {} launch: - /MANIC.app: + "/MANIC.app": - when: - os: mac store: steam - /MANIC.exe: + "/MANIC.exe": - when: - os: windows store: steam @@ -318006,7 +318932,7 @@ MAV: installDir: MAV: {} launch: - /MAV.exe: + "/MAV.exe": - when: - os: windows store: steam @@ -318018,29 +318944,29 @@ MAX MOZART: MAZ!: steam: id: 724570 -'MC Lars 2: Brotherhood': +"MC Lars 2: Brotherhood": installDir: MC Lars 2 Brotherhood: {} launch: - /Brotherhood.app: + "/Brotherhood.app": - when: - os: mac store: steam - /Brotherhood.exe: + "/Brotherhood.exe": - when: - os: windows store: steam steam: id: 737470 -'MC Lars: The Video Game': +"MC Lars: The Video Game": installDir: MC Lars The Video Game: {} launch: - /MC Lars.app: + "/MC Lars.app": - when: - os: mac store: steam - /MC Lars.exe: + "/MC Lars.exe": - when: - os: windows store: steam @@ -318050,11 +318976,11 @@ MCAS Simulation: installDir: MCAS Simulation: {} launch: - /McasSim.app/Contents/MacOS/McasSim: + "/McasSim.app/Contents/MacOS/McasSim": - when: - os: mac store: steam - /McasSim.exe: + "/McasSim.exe": - when: - bit: 64 os: windows @@ -318063,14 +318989,14 @@ MCAS Simulation: id: 1191930 MDK: files: - /MDK.CFG: + "/MDK.CFG": tags: - config when: - os: dos - os: windows - os: mac - /SAVES: + "/SAVES": tags: - save when: @@ -318082,22 +319008,22 @@ MDK: installDir: MDK: {} launch: - /MDK3DFX.EXE: + "/MDK3DFX.EXE": - when: - store: steam - /MDKD3D.exe: + "/MDKD3D.exe": - when: - store: steam steam: id: 38450 MDK 2: files: - /save: + "/save": tags: - save when: - os: windows - /save/keys.lua: + "/save/keys.lua": tags: - config when: @@ -318107,14 +319033,14 @@ MDK 2: installDir: MDK 2: {} launch: - /mdk2Main.exe: + "/mdk2Main.exe": - when: - store: steam steam: id: 38460 MDK 2 HD: files: - /MDK2HD: + "/MDK2HD": tags: - save when: @@ -318122,7 +319048,7 @@ MDK 2 HD: installDir: MDK 2 HD: {} launch: - /mdk2hd.exe: + "/mdk2hd.exe": - when: - os: windows store: steam @@ -318132,7 +319058,7 @@ MECCHA ZOMBIES: installDir: MECCHA ZOMBIES: {} launch: - /zombie.exe: + "/zombie.exe": - when: - bit: 64 os: windows @@ -318143,19 +319069,19 @@ MECHBLAZE: installDir: MECHBLAZE: {} launch: - /mechblaze.exe: + "/mechblaze.exe": - when: - store: steam steam: id: 1398500 -'MEG 9: Lost Echoes': +"MEG 9: Lost Echoes": files: - /LostEchoes/Saved/Config/WindowsNoEditor: + "/LostEchoes/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /LostEchoes/Saved/SaveGames: + "/LostEchoes/Saved/SaveGames": tags: - save when: @@ -318163,7 +319089,7 @@ MECHBLAZE: installDir: MEG 9 Lost Echoes: {} launch: - /LostEchoes.exe: + "/LostEchoes.exe": - when: - os: windows store: steam @@ -318173,17 +319099,17 @@ MEGAMiX: installDir: MEGAMiX: {} launch: - /MegaMix.exe: + "/MegaMix.exe": - when: - os: windows store: steam steam: id: 777140 -'MEMORISE : CREATION': +"MEMORISE : CREATION": installDir: MEMORISE CREATION: {} launch: - /MEMORISE CREATION.exe: + "/MEMORISE CREATION.exe": - when: - os: windows store: steam @@ -318193,7 +319119,7 @@ METAL SLUG XX: installDir: Pineapple: {} launch: - /Metal Slug XX.exe: + "/Metal Slug XX.exe": - when: - os: windows store: steam @@ -318203,7 +319129,7 @@ MGSLeisure1000: installDir: MGSSG: {} launch: - /MGSStreamGames.exe: + "/MGSStreamGames.exe": - when: - bit: 64 os: windows @@ -318215,12 +319141,12 @@ MHL: id: 1223440 MHRD: files: - /userdata: + "/userdata": tags: - save when: - os: windows - /MHRD: + "/MHRD": tags: - save when: @@ -318228,17 +319154,17 @@ MHRD: installDir: MHRD: {} launch: - /MHRD.exe: + "/MHRD.exe": - when: - bit: 64 os: windows store: steam - /mhrd: + "/mhrd": - when: - bit: 64 os: linux store: steam - /mhrd.app: + "/mhrd.app": - when: - bit: 64 os: mac @@ -318247,12 +319173,12 @@ MHRD: id: 576030 MIA (Mission in Asia): files: - /Documents/SO/config.ini: + "/Documents/SO/config.ini": tags: - config when: - os: windows - /Documents/SO/saves: + "/Documents/SO/saves": tags: - save when: @@ -318261,11 +319187,11 @@ MIDNIGHT Remastered: installDir: MIDNIGHT Remastered: {} launch: - /MIDNIGHT Remastered.app: + "/MIDNIGHT Remastered.app": - when: - os: mac store: steam - /MIDNIGHT Remastered.exe: + "/MIDNIGHT Remastered.exe": - when: - os: windows store: steam @@ -318281,36 +319207,36 @@ MIND SWITCH: installDir: MIND SWITCH: {} launch: - /MIND SWITCH.exe: + "/MIND SWITCH.exe": - when: - os: windows store: steam steam: id: 1115820 -'MIND: Path to Thalamus': +"MIND: Path to Thalamus": files: - /Mind_Pathtothalamus/Config: + "/Mind_Pathtothalamus/Config": tags: - config when: - os: linux - /SavedKismetVariables/ (Original Version): + "/SavedKismetVariables/ (Original Version)": tags: - save when: - os: windows - /UDKGame/Config/ (Original Version): + "/UDKGame/Config/ (Original Version)": tags: - config when: - os: windows - /.config/Epic/Mind_Pathtothalamus/Saved/SaveGames: + "/.config/Epic/Mind_Pathtothalamus/Saved/SaveGames": tags: - config - save when: - os: linux - /Mind_Pathtothalamus/Saved/SaveGames/ (Enhanced Edition): + "/Mind_Pathtothalamus/Saved/SaveGames/ (Enhanced Edition)": tags: - config - save @@ -318321,15 +319247,15 @@ MIND SWITCH: installDir: Mind_Path_to_Thalamus: {} launch: - /Mind_Pathtothalamus.app: + "/Mind_Pathtothalamus.app": - when: - os: mac store: steam - /Mind_Pathtothalamus/Binaries/Linux/Mind_Pathtothalamus: + "/Mind_Pathtothalamus/Binaries/Linux/Mind_Pathtothalamus": - when: - os: linux store: steam - /Mind_Pathtothalamus_novr.exe: + "/Mind_Pathtothalamus_novr.exe": - when: - os: windows store: steam @@ -318342,8 +319268,8 @@ MINERVA: installDir: MINERVA: {} launch: - /hl2.exe: - - arguments: '-game metastasis' + "/hl2.exe": + - arguments: "-game metastasis" when: - os: windows store: steam @@ -318353,11 +319279,11 @@ MINImax Tinyverse: installDir: MINImax Tinyverse: {} launch: - /Minimax.app: + "/Minimax.app": - when: - os: mac store: steam - /Minimax.exe: + "/Minimax.exe": - when: - os: windows store: steam @@ -318367,8 +319293,8 @@ MIR4: installDir: MIR4: {} launch: - /MirMobile/Binaries/Win64/Mir4S.exe: - - arguments: '-ResX=1280 -ResY=720 -DX11 -steam' + "/MirMobile/Binaries/Win64/Mir4S.exe": + - arguments: "-ResX=1280 -ResY=720 -DX11 -steam" when: - bit: 64 os: windows @@ -318382,7 +319308,7 @@ MLB Front Office Manager: installDir: MLB Front Office Manager: {} launch: - /mgr.exe: + "/mgr.exe": - when: - store: steam steam: @@ -318399,7 +319325,7 @@ MMA Arena: installDir: MMA Arena: {} launch: - /MMA_ARENA.exe: + "/MMA_ARENA.exe": - when: - os: windows store: steam @@ -318409,7 +319335,7 @@ MMA Executive: installDir: MMA Executive: {} launch: - /mmaExecutive.exe: + "/mmaExecutive.exe": - when: - os: windows store: steam @@ -318419,7 +319345,7 @@ MMA President: installDir: MMA President: {} launch: - /MMA President.exe: + "/MMA President.exe": - when: - bit: 64 os: windows @@ -318430,7 +319356,7 @@ MMA Simulator: installDir: MMA Simulator: {} launch: - /mmasimulator.exe: + "/mmasimulator.exe": - when: - os: windows store: steam @@ -318440,12 +319366,15 @@ MMA Team Manager: installDir: MMA Team Manager: {} launch: - /MMA Team Manager.exe: + "/MMA Team Manager.exe": - when: - bit: 32 os: windows store: steam - /MMA Team Manager_Mac.app: + - bit: 64 + os: windows + store: steam + "/MMA Team Manager_Mac.app": - when: - os: mac store: steam @@ -318454,25 +319383,25 @@ MMA Team Manager: MMD Girls VR: steam: id: 1068060 -'MMM: Murder Most Misfortunate': +"MMM: Murder Most Misfortunate": installDir: MMM Murder Most Misfortunate: {} launch: - /MMM.exe: + "/MMM.exe": - when: - os: windows store: steam - /MMM.x86: + "/MMM.x86": - when: - bit: 32 os: linux store: steam - /MMM.x86_64: + "/MMM.x86_64": - when: - bit: 64 os: linux store: steam - /MMM_Mac.app: + "/MMM_Mac.app": - when: - os: mac store: steam @@ -318482,14 +319411,14 @@ MMMmmm... Cake!: installDir: MMMmmm... Cake!: {} launch: - /Mmmm.... Cake!.exe: + "/Mmmm.... Cake!.exe": - when: - store: steam steam: id: 925910 MMORPG Tycoon 2: files: - /VectorStorm/MMORPG Tycoon 2: + "/VectorStorm/MMORPG Tycoon 2": tags: - config - save @@ -318498,15 +319427,15 @@ MMORPG Tycoon 2: installDir: MMORPG Tycoon 2: {} launch: - /MMORPG Tycoon 2.app/Contents/MacOS/MMORPG Tycoon 2: + "/MMORPG Tycoon 2.app/Contents/MacOS/MMORPG Tycoon 2": - when: - os: mac store: steam - /MT2: + "/MT2": - when: - os: linux store: steam - /MT2.exe: + "/MT2.exe": - when: - os: windows store: steam @@ -318517,19 +319446,19 @@ MMX: MMX: {} steam: id: 1146890 -'MMY: Otherworld Mystery': +"MMY: Otherworld Mystery": installDir: MMX Otherworld Mystery - Expanded Edition: {} steam: id: 1162760 -'MO: Astray': +"MO: Astray": files: - /MOAstray_Data/StreamingAssets: + "/MOAstray_Data/StreamingAssets": tags: - save when: - os: windows - /MOAstray_Data/StreamingAssets/OptionSetting.Archpray: + "/MOAstray_Data/StreamingAssets/OptionSetting.Archpray": tags: - config when: @@ -318537,14 +319466,14 @@ MMX: installDir: MOAstray: {} launch: - /MOAstray.exe: - - arguments: '-popupwindow' + "/MOAstray.exe": + - arguments: "-popupwindow" when: - bit: 64 os: windows store: steam registry: - 'HKEY_CURRENT_USER/SOFTWARE/Archpray Inc./Mo:Astray': + "HKEY_CURRENT_USER/SOFTWARE/Archpray Inc./Mo:Astray": tags: - config steam: @@ -318553,15 +319482,15 @@ MOBA GM: installDir: MOBA GM: {} launch: - /mobagm: + "/mobagm": - when: - os: linux store: steam - /mobagm.app: + "/mobagm.app": - when: - os: mac store: steam - /mobagm.exe: + "/mobagm.exe": - when: - os: windows store: steam @@ -318571,18 +319500,18 @@ MOE: installDir: Moe: {} launch: - /Moe.exe: + "/Moe.exe": - when: - bit: 64 os: windows store: steam steam: id: 959770 -'MOK: Super Space Taxi': +"MOK: Super Space Taxi": installDir: MOK: {} launch: - /Mok.exe: + "/Mok.exe": - when: - os: windows store: steam @@ -318592,7 +319521,7 @@ MOLOCH (Zero): installDir: MOLOCH (Zero): {} launch: - /MOLOCH_zero.exe: + "/MOLOCH_zero.exe": - when: - os: windows store: steam @@ -318602,15 +319531,15 @@ MOMO.EXE: installDir: MOMO.EXE: {} launch: - /MOMO.EXE.app: + "/MOMO.EXE.app": - when: - os: mac store: steam - /MOMO.EXE.exe: + "/MOMO.EXE.exe": - when: - os: windows store: steam - /MOMO.EXE.x86_64: + "/MOMO.EXE.x86_64": - when: - os: linux store: steam @@ -318620,15 +319549,15 @@ MOMO.EXE 2: installDir: MOMO.EXE 2: {} launch: - /MOMO.EXE 2.app: + "/MOMO.EXE 2.app": - when: - os: mac store: steam - /MOMO.EXE 2.exe: + "/MOMO.EXE 2.exe": - when: - os: windows store: steam - /MOMO.EXE 2.x86_64: + "/MOMO.EXE 2.x86_64": - when: - os: linux store: steam @@ -318638,7 +319567,7 @@ MONEY LOVES SILENCE: installDir: MONEY LOVES SILENCE: {} launch: - /MLS/Binaries/Win64/MLS.exe: + "/MLS/Binaries/Win64/MLS.exe": - when: - bit: 64 os: windows @@ -318649,17 +319578,17 @@ MONOBOT: installDir: MONOBOT: {} launch: - /MONOBOT.exe: + "/MONOBOT.exe": - when: - os: windows store: steam steam: id: 1212850 -'MOONPONG: Tales of Epic Lunacy': +"MOONPONG: Tales of Epic Lunacy": installDir: MOONPONG Tales of Epic Lunacy: {} launch: - /moonpong.exe: + "/moonpong.exe": - when: - os: windows store: steam @@ -318669,11 +319598,11 @@ MOP Operation Cleanup: installDir: MOP Operation Cleanup: {} launch: - /MOP Operation Cleanup.app: + "/MOP Operation Cleanup.app": - when: - os: mac store: steam - /MOP_Menu.exe: + "/MOP_Menu.exe": - when: - os: windows store: steam @@ -318683,7 +319612,7 @@ MORDER: installDir: Doc Rifou Productions: {} launch: - /MORDER.exe: + "/MORDER.exe": - when: - os: windows store: steam @@ -318696,7 +319625,7 @@ MPaliens: installDir: MPaliens: {} launch: - /MPAliens.exe: + "/MPAliens.exe": - when: - os: windows store: steam @@ -318706,7 +319635,7 @@ MRAK: installDir: MRAK: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -318717,7 +319646,7 @@ MSI Electric City: MSI Electric City: {} steam: id: 498600 -'MSI Electric City: Core Assault': +"MSI Electric City: Core Assault": installDir: MSICoreAssault: {} steam: @@ -318726,15 +319655,15 @@ MTB Downhill Simulator: installDir: MTB Downhill Simulator: {} launch: - /MTB Downhill Simulator.app/Contents/MacOS/MTB Downhill Simulator: + "/MTB Downhill Simulator.app/Contents/MacOS/MTB Downhill Simulator": - when: - os: mac store: steam - /MTB Downhill Simulator.exe: + "/MTB Downhill Simulator.exe": - when: - os: windows store: steam - /MTB Downhill Simulator.x86: + "/MTB Downhill Simulator.x86": - when: - os: linux store: steam @@ -318742,7 +319671,7 @@ MTB Downhill Simulator: id: 475990 MTV Celebrity Deathmatch: files: - /CelebrityDeathmatch/SaveGames: + "/CelebrityDeathmatch/SaveGames": tags: - save when: @@ -318751,7 +319680,7 @@ MU Legend: installDir: MU Legend: {} launch: - /Binaries/Win32/MULegend.exe: + "/Binaries/Win32/MULegend.exe": - arguments: /mu-legend-steam when: - os: windows @@ -318762,7 +319691,7 @@ MUD Motocross World Championship: installDir: MUD Motocross World Championship: {} launch: - /MUD.EXE: + "/MUD.EXE": - when: - os: windows store: steam @@ -318778,12 +319707,12 @@ MUSEUM: id: 938740 MUSYNX: files: - /SavesDir/*.sav: + "/SavesDir/*.sav": tags: - save when: - os: windows - /userdata//952040/remote/SavesDir/*.sav: + "/userdata//952040/remote/SavesDir/*.sav": tags: - save when: @@ -318792,7 +319721,7 @@ MUSYNX: installDir: MUSYNX: {} launch: - /musynx.exe: + "/musynx.exe": - when: - os: windows store: steam @@ -318800,7 +319729,7 @@ MUSYNX: id: 952040 MVP Baseball 2005: files: - /MVP Baseball 2005: + "/MVP Baseball 2005": tags: - config - save @@ -318808,7 +319737,7 @@ MVP Baseball 2005: - os: windows MX Bikes: files: - '(whatever drive letter you put it on):/Steam/steamapps/common/MX Bikes': + "(whatever drive letter you put it on):/Steam/steamapps/common/MX Bikes": tags: - config when: @@ -318816,7 +319745,7 @@ MX Bikes: installDir: MX Bikes: {} launch: - /mxbikes.exe: + "/mxbikes.exe": - when: - os: windows store: steam @@ -318826,15 +319755,15 @@ MX Nitro: installDir: MX Nitro: {} launch: - /MXNitro.exe: + "/MXNitro.exe": - when: - os: windows store: steam - /mxn.app: + "/mxn.app": - when: - os: mac store: steam - /mxn.x86: + "/mxn.x86": - when: - os: linux store: steam @@ -318842,7 +319771,7 @@ MX Nitro: id: 488690 MX vs. ATV All Out: files: - /MXvsATVAllOut/Saved/SaveGames: + "/MXvsATVAllOut/Saved/SaveGames": tags: - save when: @@ -318850,8 +319779,8 @@ MX vs. ATV All Out: installDir: MX vs. ATV NEXT: {} launch: - /MxNext.exe: - - arguments: '-nohmd' + "/MxNext.exe": + - arguments: "-nohmd" when: - bit: 64 os: windows @@ -318862,8 +319791,8 @@ MX vs. ATV Legends: installDir: MX vs ATV Legends: {} launch: - /MxGame2021.exe: - - arguments: '-nohmd' + "/MxGame2021.exe": + - arguments: "-nohmd" when: - bit: 64 os: windows @@ -318872,12 +319801,12 @@ MX vs. ATV Legends: id: 1205970 MX vs. ATV Reflex: files: - /graphics.cfg: + "/graphics.cfg": tags: - config when: - os: windows - /userdata//55140/remote: + "/userdata//55140/remote": tags: - save when: @@ -318886,10 +319815,10 @@ MX vs. ATV Reflex: installDir: MX vs ATV Reflex: {} launch: - /MXReflex.exe: + "/MXReflex.exe": - when: - store: steam - /MXSettings.exe: + "/MXSettings.exe": - when: - store: steam steam: @@ -318898,15 +319827,15 @@ MX vs. ATV Supercross Encore: installDir: MX vs ATV Supercross Encore Edition: {} launch: - /MXSettings.exe: + "/MXSettings.exe": - when: - os: windows store: steam - /MXStorm_PC.exe: + "/MXStorm_PC.exe": - when: - os: windows store: steam - /mXcavator.exe: + "/mXcavator.exe": - when: - os: windows store: steam @@ -318914,7 +319843,7 @@ MX vs. ATV Supercross Encore: id: 282050 MX vs. ATV Unleashed: files: - /THQ/MXvsATV Unleashed/Save: + "/THQ/MXvsATV Unleashed/Save": tags: - save when: @@ -318924,11 +319853,11 @@ MX vs. ATV Unleashed: installDir: MX vs. ATV Unleashed: {} launch: - /MXvsATV.exe: + "/MXvsATV.exe": - when: - os: windows store: steam - /Unleashed Editor.exe: + "/Unleashed Editor.exe": - when: - os: windows store: steam @@ -318940,12 +319869,12 @@ MX vs. ATV Unleashed: id: 359220 MXGP: files: - /Milestone/MX2013/Config.ini: + "/Milestone/MX2013/Config.ini": tags: - config when: - os: windows - /Milestone/MX2013/Saves: + "/Milestone/MX2013/Saves": tags: - save when: @@ -318953,19 +319882,19 @@ MXGP: installDir: MXGP: {} launch: - /MXGP.exe: + "/MXGP.exe": - when: - store: steam steam: id: 256370 MXGP 2019: files: - /mxgp5/Saved/Config/WindowsNoEditor: + "/mxgp5/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /mxgp5/Saved/SaveGames: + "/mxgp5/Saved/SaveGames": tags: - save when: @@ -318973,7 +319902,7 @@ MXGP 2019: installDir: MXGP 2019 - The Official Motocross Videogame: {} launch: - /mxgp5.exe: + "/mxgp5.exe": - when: - store: steam steam: @@ -318982,7 +319911,7 @@ MXGP 2020: installDir: MXGP 2020 - The Official Motocross Videogame: {} launch: - /mxgp6.exe: + "/mxgp6.exe": - when: - store: steam steam: @@ -318991,19 +319920,19 @@ MXGP Compact: installDir: MXGP Compact: {} launch: - /MXGP.exe: + "/MXGP.exe": - when: - store: steam steam: id: 336010 MXGP Pro: files: - /mxgp4/Saved/Config/WindowsNoEditor: + "/mxgp4/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /mxgp4/Saved/SaveGames: + "/mxgp4/Saved/SaveGames": tags: - save when: @@ -319011,7 +319940,7 @@ MXGP Pro: installDir: MXGP PRO: {} launch: - /mxgp4.exe: + "/mxgp4.exe": - when: - bit: 64 os: windows @@ -319022,11 +319951,11 @@ MXGP2: installDir: MXGP2 - The Official Motocross Videogame: {} launch: - /MXGP_2.exe: + "/MXGP_2.exe": - when: - bit: 32 store: steam - /MXGP_2X64.exe: + "/MXGP_2X64.exe": - when: - bit: 64 store: steam @@ -319036,11 +319965,11 @@ MXGP2 Compact: installDir: MXGP2 - The Official Motocross Videogame Compact: {} launch: - /MXGP_2.exe: + "/MXGP_2.exe": - when: - bit: 32 store: steam - /MXGP_2X64.exe: + "/MXGP_2X64.exe": - when: - bit: 64 store: steam @@ -319050,15 +319979,15 @@ MXGP3: installDir: MXGP3 - The Official Motocross Videogame: {} launch: - /MXGP3.app: + "/MXGP3.app": - when: - os: mac store: steam - /mxgp3.exe: + "/mxgp3.exe": - when: - os: windows store: steam - /mxgp3.run: + "/mxgp3.run": - when: - os: linux store: steam @@ -319068,15 +319997,15 @@ MYTH: installDir: MYTH: {} launch: - /MYTH.app: + "/MYTH.app": - when: - os: mac store: steam - /MYTH.exe: + "/MYTH.exe": - when: - os: windows store: steam - /MYTH.sh: + "/MYTH.sh": - when: - os: linux store: steam @@ -319084,7 +320013,7 @@ MYTH: id: 366380 MaSzyna: files: - /eu7.ini: + "/eu7.ini": tags: - config when: @@ -319095,11 +320024,8 @@ Mabinogi: installDir: Mabinogi: {} launch: - /nxsteam/nxsteam.exe: - - arguments: >- - \"Client.exe code:1622 locale:USA env:Regular ver:246 logip:35.162.171.43 logport:11000 chatip:54.214.176.167 - chatport:8002 setting:\\\"file://data/features.xml\\\" sn:{tracking_uid} sid:{tracking_sessionid} - /P:{passport} -Steam\" --nx:title=Mabinogi --nx:serviceId=880915460 + "/nxsteam/nxsteam.exe": + - arguments: "\\\"Client.exe code:1622 locale:USA env:Regular ver:246 logip:35.162.171.43 logport:11000 chatip:54.214.176.167 chatport:8002 setting:\\\\\\\"file://data/features.xml\\\\\\\" sn:{tracking_uid} sid:{tracking_sessionid} /P:{passport} -Steam\\\" --nx:title=Mabinogi --nx:serviceId=880915460" when: - os: windows store: steam @@ -319111,22 +320037,22 @@ Mabinogi: id: 212200 Mable and the Wood: files: - /.config/Mable_PC/options.sav: + "/.config/Mable_PC/options.sav": tags: - config when: - os: linux - /.config/Mable_PC/save*.sav: + "/.config/Mable_PC/save*.sav": tags: - save when: - os: linux - /Mable_PC/options.sav: + "/Mable_PC/options.sav": tags: - config when: - os: windows - /Mable_PC/save*.sav: + "/Mable_PC/save*.sav": tags: - save when: @@ -319136,46 +320062,46 @@ Mable and the Wood: installDir: Mable & The Wood: {} launch: - /Mable.exe: + "/Mable.exe": - when: - os: windows store: steam - /Mable2.app: + "/Mable2.app": - when: - os: mac store: steam - /Mable_PC: + "/Mable_PC": - when: - os: linux store: steam steam: id: 568070 -Mac El Oliver's Dating Trainer: +"Mac El Oliver's Dating Trainer": steam: id: 1019600 MacGuffin: installDir: MacGuffin: {} launch: - /MacGuffin/MacGuffin.exe: + "/MacGuffin/MacGuffin.exe": - when: - os: windows store: steam steam: id: 398930 -MacGuffin's Curse: +"MacGuffin's Curse": installDir: MacGuffin: {} launch: - /macguffin.app: + "/macguffin.app": - when: - os: mac store: steam - /macguffin.exe: + "/macguffin.exe": - when: - os: windows store: steam - /macguffin.x86_64: + "/macguffin.x86_64": - when: - os: linux store: steam @@ -319185,15 +320111,15 @@ Macabre: installDir: Macabre: {} launch: - /macabre: + "/macabre": - when: - os: linux store: steam - /macabre.app: + "/macabre.app": - when: - os: mac store: steam - /macabre.exe: + "/macabre.exe": - when: - os: windows store: steam @@ -319203,7 +320129,7 @@ Macbat 64: installDir: Macbat 64: {} launch: - /Macbat64.exe: + "/Macbat64.exe": - when: - os: windows store: steam @@ -319216,12 +320142,12 @@ Macbat 64: id: 568040 Macdows 95: files: - /com.gamebrain.macdows95/Local Store/#SharedObjects/macdows95.swf: + "/com.gamebrain.macdows95/Local Store/#SharedObjects/macdows95.swf": tags: - save when: - os: windows - /com.gamebrain.macdows95/Local Store/#SharedObjects/macdows95.swf/macdows95Settings.sol: + "/com.gamebrain.macdows95/Local Store/#SharedObjects/macdows95.swf/macdows95Settings.sol": tags: - config when: @@ -319229,20 +320155,20 @@ Macdows 95: installDir: macdows 95: {} launch: - /macdows95.exe: + "/macdows95.exe": - when: - os: windows store: steam steam: id: 948900 -'Mace Griffin: Bounty Hunter': +"Mace Griffin: Bounty Hunter": files: - /Bountyhunter.ini: + "/Bountyhunter.ini": tags: - config when: - os: windows - /Saves: + "/Saves": tags: - save when: @@ -319256,15 +320182,15 @@ MachRace: installDir: MachRace: {} launch: - /MachRace.exe: - - arguments: '-fullscreen' + "/MachRace.exe": + - arguments: "-fullscreen" when: - store: steam steam: id: 489100 MachiaVillain: files: - /MachiaVillain_Data/Saves: + "/MachiaVillain_Data/Saves": tags: - save when: @@ -319274,20 +320200,20 @@ MachiaVillain: installDir: MachiaVillain: {} launch: - /Default Mac desktop Universal.app: + "/Default Mac desktop Universal.app": - when: - os: mac store: steam - /MachiaVillain.exe: + "/MachiaVillain.exe": - when: - os: windows store: steam - /MachiaVillain_Linux.x86: + "/MachiaVillain_Linux.x86": - when: - bit: 32 os: linux store: steam - /MachiaVillain_Linux.x86_64: + "/MachiaVillain_Linux.x86_64": - when: - bit: 64 os: linux @@ -319303,7 +320229,7 @@ Machina of the Planet Tree -Planet Ruler-: installDir: Planet Ruler: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -319311,23 +320237,23 @@ Machina of the Planet Tree -Planet Ruler-: id: 383960 Machinarium: files: - /machinarium.sol: + "/machinarium.sol": tags: - save when: - os: windows - os: linux - /.macromedia/Flash_Player/#SharedObjects//#localWithNet: + "/.macromedia/Flash_Player/#SharedObjects//#localWithNet": tags: - save when: - os: linux - /Amanita-Design.Machinarium: + "/Amanita-Design.Machinarium": tags: - save when: - os: windows - /Macromedia/Flash Player/#SharedObjects//localhost: + "/Macromedia/Flash Player/#SharedObjects//localhost": tags: - save when: @@ -319340,29 +320266,29 @@ Machinarium: installDir: Machinarium: {} launch: - /Machinarium.app: + "/Machinarium.app": - when: - os: mac store: steam - /Machinarium.exe: + "/Machinarium.exe": - when: - os: windows store: steam steam: id: 40700 -'Machinations: Fog of War': +"Machinations: Fog of War": installDir: Machinations Fog of War: {} launch: - /Machinations: + "/Machinations": - when: - os: linux store: steam - /Machinations Fog of War.app/Contents/MacOS/Machinations Fog of War: + "/Machinations Fog of War.app/Contents/MacOS/Machinations Fog of War": - when: - os: mac store: steam - /Machinations.exe: + "/Machinations.exe": - when: - os: windows store: steam @@ -319377,7 +320303,7 @@ Machine Gun Train Run: installDir: Machine Gun Train Run: {} launch: - /MachineGunTrainRun.exe: + "/MachineGunTrainRun.exe": - when: - os: windows store: steam @@ -319387,30 +320313,30 @@ Machine Hunt: installDir: Machine Hunt: {} launch: - /MachineHuntLinux.x86: + "/MachineHuntLinux.x86": - when: - os: linux store: steam - /MachineHuntMac.app/Contents/MacOS/MachineHuntMac: + "/MachineHuntMac.app/Contents/MacOS/MachineHuntMac": - when: - os: mac store: steam - /MachineHuntWin.exe: + "/MachineHuntWin.exe": - when: - os: windows store: steam steam: id: 546930 -'Machine Learning: Episode I': +"Machine Learning: Episode I": installDir: Machine Learning Episode I: {} steam: id: 524030 -'Machine Made: Rebirth': +"Machine Made: Rebirth": installDir: Machine Made Rebirth: {} launch: - /MMR/Game.exe: + "/MMR/Game.exe": - when: - os: windows store: steam @@ -319420,12 +320346,12 @@ Machine World 2: installDir: Machine World 2: {} launch: - /MachineWorld2.app: + "/MachineWorld2.app": - when: - bit: 64 os: mac store: steam - /MachineWorld2.exe: + "/MachineWorld2.exe": - when: - bit: 64 os: windows @@ -319434,7 +320360,7 @@ Machine World 2: id: 650350 MachineCraft: files: - /steamapps/common/MachineCraft/Userdata: + "/steamapps/common/MachineCraft/Userdata": tags: - save when: @@ -319443,25 +320369,25 @@ MachineCraft: installDir: MachineCraft: {} launch: - /McnCraft.exe: + "/McnCraft.exe": - when: - os: windows store: steam steam: id: 397100 -'Machineers - Episode 1: Tivoli Town': +"Machineers - Episode 1: Tivoli Town": installDir: Machineers: {} launch: - /Machineers.app: + "/Machineers.app": - when: - os: mac store: steam - /Machineers.exe: + "/Machineers.exe": - when: - os: windows store: steam - /Machineers.x86: + "/Machineers.x86": - when: - os: linux store: steam @@ -319469,7 +320395,7 @@ MachineCraft: id: 356090 Machines: files: - /savegame: + "/savegame": tags: - save when: @@ -319482,11 +320408,11 @@ Machines at War 3: installDir: Machines At War 3: {} launch: - /Machines at War 3.app: + "/Machines at War 3.app": - when: - os: mac store: steam - /mw3.exe: + "/mw3.exe": - when: - os: windows store: steam @@ -319496,22 +320422,28 @@ Macroboy Y: installDir: Macroboy Y: {} launch: - /game.exe: + "/game.exe": - when: + - store: steam + - os: windows + store: steam - os: linux store: steam steam: id: 392290 -'Macrotis: A Mother''s Journey': +"Macrotis: A Mother's Journey": installDir: Macrotis: {} launch: - /macrotis.app: + "/macrotis.app": - when: - os: mac store: steam - /macrotis.exe: + "/macrotis.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam @@ -319521,7 +320453,7 @@ Mactabilis: installDir: Mactabilis: {} launch: - /Mactabilis.exe: + "/Mactabilis.exe": - when: - os: windows store: steam @@ -319531,7 +320463,7 @@ Mad Age And This Guy: installDir: Mad Age And This Guy: {} launch: - /madage.exe: + "/madage.exe": - when: - os: windows store: steam @@ -319544,7 +320476,7 @@ Mad Ball: installDir: Mad Ball: {} launch: - /MadBall.exe: + "/MadBall.exe": - when: - bit: 64 os: windows @@ -319555,28 +320487,28 @@ Mad Bullets: installDir: MadBullets: {} launch: - /bin_x86/Launcher.exe: + "/bin_x86/Launcher.exe": - when: - os: windows store: steam - workingDir: /bin_x86 + workingDir: "/bin_x86" steam: id: 452860 Mad Carnage: installDir: Mad Carnage: {} launch: - /MadCarnage.exe: + "/MadCarnage.exe": - when: - os: windows store: steam steam: id: 837950 -Mad Cat's World: +"Mad Cat's World": installDir: - Mad Cat's World: {} + "Mad Cat's World": {} launch: - /MCW.exe: + "/MCW.exe": - when: - os: windows store: steam @@ -319586,11 +320518,11 @@ Mad Combat Marines: installDir: Mad Combat Marines: {} launch: - /Mad Combat Marines.exe: + "/Mad Combat Marines.exe": - when: - os: windows store: steam - /MadCombatMarines.app: + "/MadCombatMarines.app": - when: - os: mac store: steam @@ -319600,7 +320532,7 @@ Mad Crown: installDir: Mad Crown: {} launch: - /MadCrown.exe: + "/MadCrown.exe": - when: - os: windows store: steam @@ -319616,7 +320548,7 @@ Mad Digger: installDir: Mad Digger: {} launch: - /mad_digger.exe: + "/mad_digger.exe": - when: - os: windows store: steam @@ -319631,15 +320563,15 @@ Mad Dojo: installDir: Mad Dojo: {} launch: - /MadDojo.app: + "/MadDojo.app": - when: - os: mac store: steam - /MadDojo.exe: + "/MadDojo.exe": - when: - os: windows store: steam - /MadDojo.x86_64: + "/MadDojo.x86_64": - when: - bit: 64 os: linux @@ -319649,19 +320581,19 @@ Mad Dojo: Mad Driver: steam: id: 619730 -'Mad Experiments: Escape Room': +"Mad Experiments: Escape Room": installDir: Mad Experiments Escape Room: {} launch: - /MEER-MacOS.app/Contents/MacOS/Mad Experiments Escape Room: + "/MEER-MacOS.app/Contents/MacOS/Mad Experiments Escape Room": - when: - os: mac store: steam - /Mad Experiments Escape Room.exe: + "/Mad Experiments Escape Room.exe": - when: - os: windows store: steam - /mad-experiments-escape-room.x86_64: + "/mad-experiments-escape-room.x86_64": - when: - os: linux store: steam @@ -319679,12 +320611,12 @@ Mad Farm: id: 679720 Mad Father: files: - /Game.ini: + "/Game.ini": tags: - config when: - os: windows - /Save: + "/Save": tags: - save when: @@ -319692,7 +320624,7 @@ Mad Father: installDir: Mad Father: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -319702,7 +320634,7 @@ Mad Frost: installDir: Mad Frost: {} launch: - /Mad Frost.exe: + "/Mad Frost.exe": - when: - os: windows store: steam @@ -319710,7 +320642,7 @@ Mad Frost: id: 839030 Mad Games Tycoon: files: - /AppData/LocalLow/Eggcode/Mad Games Tycoon: + "/AppData/LocalLow/Eggcode/Mad Games Tycoon": tags: - save when: @@ -319720,11 +320652,11 @@ Mad Games Tycoon: installDir: Mad Games Tycoon: {} launch: - /MadGamesTycoon.app: + "/MadGamesTycoon.app": - when: - os: mac store: steam - /MadGamesTycoon.exe: + "/MadGamesTycoon.exe": - when: - os: windows store: steam @@ -319736,7 +320668,7 @@ Mad Games Tycoon: id: 341000 Mad Games Tycoon 2: files: - /AppData/LocalLow/Eggcode/Mad Games Tycoon 2: + "/AppData/LocalLow/Eggcode/Mad Games Tycoon 2": tags: - save when: @@ -319744,7 +320676,7 @@ Mad Games Tycoon 2: installDir: Mad Games Tycoon 2: {} launch: - /Mad Games Tycoon 2.exe: + "/Mad Games Tycoon 2.exe": - when: - os: windows store: steam @@ -319754,11 +320686,11 @@ Mad Games Tycoon 2: - config steam: id: 1342330 -'Mad Gardener: Zombie Massacre': +"Mad Gardener: Zombie Massacre": installDir: Mad Gardener Zombie Massacre: {} launch: - /MadGardener3.exe: + "/MadGardener3.exe": - when: - os: windows store: steam @@ -319779,7 +320711,7 @@ Mad Hunting Simulator VR: id: 988340 Mad Machines: files: - /AppData/LocalLow/Hero Blocks/Mad Machines/Unity//Analytics: + "/AppData/LocalLow/Hero Blocks/Mad Machines/Unity//Analytics": tags: - config when: @@ -319787,7 +320719,7 @@ Mad Machines: installDir: MadMachines: {} launch: - /MadMachines.exe: + "/MadMachines.exe": - when: - bit: 64 os: windows @@ -319803,53 +320735,57 @@ Mad Manuel: id: 739930 Mad Max: files: - /settings.ini: + "/settings.ini": tags: - config when: - os: windows - /Library/Application Support/Steam/userdata//234140/local/Backup Saves: + "/Library/Application Support/Steam/userdata//234140/local/Backup Saves": tags: - config - save when: - os: mac - /WB Games/Mad Max/Backup Saves/GameSave*.sav: + "/WB Games/Mad Max/Backup Saves/GameSave*.sav": tags: - save when: - - store: steam - /WB Games/Mad Max/Backup Saves/Settings.sav: + - os: windows + store: steam + "/WB Games/Mad Max/Backup Saves/Settings.sav": tags: - config when: - - store: steam - /WB Games/Mad Max/Saves/GameSave*.sav: + - os: windows + store: steam + "/WB Games/Mad Max/Saves/GameSave*.sav": tags: - save when: - - store: origin - /WB Games/Mad Max/Saves/Settings.sav: + - os: windows + store: origin + "/WB Games/Mad Max/Saves/Settings.sav": tags: - config when: - - store: origin - /feral-interactive/Mad Max/VFS/User/AppData/Roaming/WB Games/Mad Max/Backup Saves/GameSave*.sav: + - os: windows + store: origin + "/feral-interactive/Mad Max/VFS/User/AppData/Roaming/WB Games/Mad Max/Backup Saves/GameSave*.sav": tags: - save when: - os: linux - /feral-interactive/Mad Max/VFS/User/AppData/Roaming/WB Games/Mad Max/Backup Saves/Settings.sav: + "/feral-interactive/Mad Max/VFS/User/AppData/Roaming/WB Games/Mad Max/Backup Saves/Settings.sav": tags: - config when: - os: linux - /feral-interactive/Mad Max/VFS/User/AppData/Roaming/WB Games/Mad Max/settings.ini: + "/feral-interactive/Mad Max/VFS/User/AppData/Roaming/WB Games/Mad Max/settings.ini": tags: - config when: - os: linux - /feral-interactive/Mad Max/preferences: + "/feral-interactive/Mad Max/preferences": tags: - config when: @@ -319859,17 +320795,17 @@ Mad Max: installDir: Mad Max: {} launch: - /Mad Max.app: + "/Mad Max.app": - when: - bit: 64 os: mac store: steam - /MadMax.exe: + "/MadMax.exe": - when: - bit: 64 os: windows store: steam - /MadMax.sh: + "/MadMax.sh": - when: - os: linux store: steam @@ -319878,29 +320814,29 @@ Mad Max: Mad Muzzles: steam: id: 661800 -'Mad Nords: Probably an Epic Quest': +"Mad Nords: Probably an Epic Quest": installDir: Mad Nords Probably an Epic Quest: {} launch: - /madnordsprobablyanepicquest.app/Contents/MacOS/nwjs: + "/madnordsprobablyanepicquest.app/Contents/MacOS/nwjs": - when: - os: mac store: steam - /nw: + "/nw": - when: - os: linux store: steam - /nw.exe: + "/nw.exe": - when: - os: windows store: steam steam: id: 407880 -'Mad Princess: The Great Gladiators': +"Mad Princess: The Great Gladiators": installDir: Mad Princess The Great Gladiators: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -319916,7 +320852,7 @@ Mad Restaurant People: installDir: Mad Restaurant People: {} launch: - /MRP.exe: + "/MRP.exe": - when: - os: windows store: steam @@ -319924,12 +320860,12 @@ Mad Restaurant People: id: 871920 Mad Riders: files: - /MadRiders/Out/Settings: + "/MadRiders/Out/Settings": tags: - config when: - os: windows - /MadRiders/Out/profiles: + "/MadRiders/Out/profiles": tags: - save when: @@ -319937,7 +320873,7 @@ Mad Riders: installDir: Mad Riders: {} launch: - /MadRidersGame_x86.exe: + "/MadRidersGame_x86.exe": - when: - store: steam steam: @@ -319946,11 +320882,11 @@ Mad Snowboarding: installDir: Mad Snowboarding: {} launch: - /MadSnowboarding.exe: + "/MadSnowboarding.exe": - when: - os: windows store: steam - /MadSnowboarding.x86: + "/MadSnowboarding.x86": - when: - os: linux store: steam @@ -319960,11 +320896,11 @@ Mad Tower Tycoon: installDir: Mad Tower Tycoon: {} launch: - /MadTowerTycoon.app: + "/MadTowerTycoon.app": - when: - os: mac store: steam - /MadTowerTycoon.exe: + "/MadTowerTycoon.exe": - when: - os: windows store: steam @@ -319974,7 +320910,7 @@ Mad Tracks (2020): installDir: Mad Tracks: {} launch: - /MadTracks.exe: + "/MadTracks.exe": - when: - os: windows store: steam @@ -319984,7 +320920,7 @@ Mad Zombie: installDir: Mad Zombie: {} launch: - /MadZombie.exe: + "/MadZombie.exe": - when: - os: windows store: steam @@ -319994,7 +320930,7 @@ Mad-Sector: installDir: Mad-Sector: {} launch: - /Mad Sector.exe: + "/Mad Sector.exe": - when: - os: windows store: steam @@ -320004,7 +320940,7 @@ MadCowBalls2: installDir: MadCowBalls2: {} launch: - /MadCowBalls2-Launcher.exe: + "/MadCowBalls2-Launcher.exe": - when: - os: windows store: steam @@ -320014,43 +320950,43 @@ MadOut: installDir: MadOut: {} launch: - /Linux/Launcher: + "/Linux/Launcher": - when: - bit: 32 os: linux store: steam - workingDir: /Linux - /Linux64/Launcher: + workingDir: "/Linux" + "/Linux64/Launcher": - when: - bit: 64 os: linux store: steam - workingDir: /Linux64 - /MadOut.app: + workingDir: "/Linux64" + "/MadOut.app": - when: - os: mac store: steam - /Windows/Launcher.exe: + "/Windows/Launcher.exe": - when: - os: windows store: steam - workingDir: /Windows + workingDir: "/Windows" steam: id: 352170 MadOut BIG City: installDir: MadOut2_BigCityOnline: {} launch: - /game: + "/game": - when: - bit: 64 os: linux store: steam - /game.app: + "/game.app": - when: - os: mac store: steam - /game.exe: + "/game.exe": - when: - bit: 64 os: windows @@ -320061,66 +320997,66 @@ MadOut Ice Storm: installDir: MadOutIceStorm: {} launch: - /Linux/Launcher: + "/Linux/Launcher": - when: - bit: 32 os: linux store: steam - workingDir: /Linux - /Linux64/Launcher: + workingDir: "/Linux" + "/Linux64/Launcher": - when: - bit: 64 os: linux store: steam - workingDir: /Linux64 - /MadOut.app: + workingDir: "/Linux64" + "/MadOut.app": - when: - os: mac store: steam - /Windows/Launcher.exe: + "/Windows/Launcher.exe": - when: - os: windows store: steam - workingDir: /Windows + workingDir: "/Windows" steam: id: 400500 MadOut Open City: installDir: MadOut_OpenCity: {} launch: - /game.app: + "/game.app": - when: - os: mac store: steam - /game.exe: + "/game.exe": - when: - os: windows store: steam - /game.x86: + "/game.x86": - when: - bit: 32 os: linux store: steam - /game.x86_64: + "/game.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 428190 -'MadSpace: To Hell and Beyond': +"MadSpace: To Hell and Beyond": files: - /MADSPACE.CFG: + "/MADSPACE.CFG": tags: - config when: - os: dos - /SAVE: + "/SAVE": tags: - save when: - os: dos - /SYS.CFG: + "/SYS.CFG": tags: - config when: @@ -320128,43 +321064,43 @@ MadOut Open City: installDir: MadSpace: {} launch: - /dosbox_linux/daum/launch_madspace_game_daum.sh: + "/dosbox_linux/daum/launch_madspace_game_daum.sh": - when: - os: linux store: steam - workingDir: /dosbox_linux/daum - /dosbox_linux/launch_madspace_config.sh: + workingDir: "/dosbox_linux/daum" + "/dosbox_linux/launch_madspace_config.sh": - when: - os: linux store: steam - workingDir: /dosbox_linux - /dosbox_linux/launch_madspace_game.sh: + workingDir: "/dosbox_linux" + "/dosbox_linux/launch_madspace_game.sh": - when: - os: linux store: steam - workingDir: /dosbox_linux - /dosbox_windows/daum/dosbox.exe: - - arguments: '-conf dosbox_madspace.conf -conf dosbox_madspace_launch_windows.conf -noconsole' + workingDir: "/dosbox_linux" + "/dosbox_windows/daum/dosbox.exe": + - arguments: "-conf dosbox_madspace.conf -conf dosbox_madspace_launch_windows.conf -noconsole" when: - os: windows store: steam - workingDir: /dosbox_windows/daum - /dosbox_windows/dosbox.exe: - - arguments: '-conf dosbox_madspace.conf -conf dosbox_madspace_launch_windows.conf -noconsole' + workingDir: "/dosbox_windows/daum" + "/dosbox_windows/dosbox.exe": + - arguments: "-conf dosbox_madspace.conf -conf dosbox_madspace_launch_windows.conf -noconsole" when: - os: windows store: steam - workingDir: /dosbox_windows - - arguments: '-conf dosbox_madspace.conf -conf dosbox_madspace_config_windows.conf -noconsole' + workingDir: "/dosbox_windows" + - arguments: "-conf dosbox_madspace.conf -conf dosbox_madspace_config_windows.conf -noconsole" when: - os: windows store: steam - workingDir: /dosbox_windows + workingDir: "/dosbox_windows" steam: id: 351810 Madagascar: files: - /Activision/Madagascar/Save/SaveGames.mem: + "/Activision/Madagascar/Save/SaveGames.mem": tags: - save when: @@ -320173,26 +321109,26 @@ Madagascar: HKEY_CURRENT_USER/Software/Activision/Madagascar/Settings: tags: - config -'Madagascar: Escape 2 Africa': +"Madagascar: Escape 2 Africa": files: - /Activision/Madagascar 2: + "/Activision/Madagascar 2": tags: - save when: - os: windows - /Activision/Madagascar 2: + "/Activision/Madagascar 2": tags: - config when: - os: windows -'Madballs in Babo: Invasion': +"Madballs in Babo: Invasion": files: - /config.hdb: + "/config.hdb": tags: - config when: - os: windows - /userdata//25700/remote/udata.dat: + "/userdata//25700/remote/udata.dat": tags: - save when: @@ -320201,11 +321137,11 @@ Madagascar: installDir: BaboInvasion: {} launch: - /BaboInvasion.app: + "/BaboInvasion.app": - when: - os: mac store: steam - /BaboInvasion.exe: + "/BaboInvasion.exe": - when: - os: windows store: steam @@ -320215,7 +321151,7 @@ Madcap Castle: installDir: Madcap Castle: {} launch: - /Madcap Castle.exe: + "/Madcap Castle.exe": - when: - os: windows store: steam @@ -320223,24 +321159,24 @@ Madcap Castle: id: 684230 Madden NFL 19: files: - /Madden NFL 19/Saves: + "/Madden NFL 19/Saves": tags: - save when: - os: windows - /Madden NFL 19/UserSettings.dat: + "/Madden NFL 19/UserSettings.dat": tags: - config when: - os: windows Madden NFL 21: files: - /Madden NFL 21: + "/Madden NFL 21": tags: - config when: - os: windows - /Madden NFL 21/saves: + "/Madden NFL 21/saves": tags: - save when: @@ -320251,7 +321187,7 @@ Madden NFL 21: id: 1239520 Madden NFL 22: files: - /Madden NFL 22/saves: + "/Madden NFL 22/saves": tags: - save when: @@ -320274,7 +321210,7 @@ Maddening Euphoria: installDir: Maddening Euphoria: {} launch: - /Maddening Euphoria.exe: + "/Maddening Euphoria.exe": - when: - os: windows store: steam @@ -320282,19 +321218,19 @@ Maddening Euphoria: id: 725380 Made Man: files: - /SaveGame: + "/SaveGame": tags: - save when: - os: windows -'Made in Abyss: Binary Star Falling into Darkness': +"Made in Abyss: Binary Star Falling into Darkness": files: - /My Games/MadeInAbyss-BSFD/Saved/Config: + "/My Games/MadeInAbyss-BSFD/Saved/Config": tags: - config when: - os: windows - /My Games/MadeInAbyss-BSFD/Saved/SaveGames: + "/My Games/MadeInAbyss-BSFD/Saved/SaveGames": tags: - save when: @@ -320302,7 +321238,7 @@ Made Man: installDir: MadeInAbyss-BSFD: {} launch: - /MadeInAbyss.exe: + "/MadeInAbyss.exe": - when: - bit: 64 os: windows @@ -320313,11 +321249,11 @@ Made to Order: installDir: Made to Order: {} launch: - /MadeToOrder.app/Contents/MacOS/MadeToOrder: + "/MadeToOrder.app/Contents/MacOS/MadeToOrder": - when: - os: mac store: steam - /MadeToOrder.exe: + "/MadeToOrder.exe": - when: - os: windows store: steam @@ -320327,7 +321263,7 @@ Madhouse: installDir: Madhouse: {} launch: - /Madhouse.exe: + "/Madhouse.exe": - when: - os: windows store: steam @@ -320337,7 +321273,7 @@ Madievals: installDir: Madievals: {} launch: - /MADievals.exe: + "/MADievals.exe": - when: - os: windows store: steam @@ -320347,7 +321283,7 @@ Madland: installDir: Madland: {} launch: - /Madland.exe: + "/Madland.exe": - when: - store: steam steam: @@ -320356,7 +321292,7 @@ Madness: installDir: Madness: {} launch: - /Madness.exe: + "/Madness.exe": - when: - os: windows store: steam @@ -320366,7 +321302,7 @@ Madness Cubed: installDir: Madness Cubed: {} launch: - /build.exe: + "/build.exe": - when: - os: windows store: steam @@ -320376,15 +321312,15 @@ Madness of the Architect: installDir: Madness of the Architect: {} launch: - /mota.exe: + "/mota.exe": - when: - os: windows store: steam steam: id: 785920 -'Madness: Project Nexus': +"Madness: Project Nexus": files: - /AppData/LocalLow/Gibbing Tree/Madness Project Nexus: + "/AppData/LocalLow/Gibbing Tree/Madness Project Nexus": tags: - save when: @@ -320392,7 +321328,7 @@ Madness of the Architect: installDir: Madness Project Nexus 2: {} launch: - /Madness Project Nexus.exe: + "/Madness Project Nexus.exe": - when: - os: windows store: steam @@ -320402,11 +321338,11 @@ Madorica Real Estate: installDir: Madorica Real Estate: {} launch: - /madoricapc_mac.app: + "/madoricapc_mac.app": - when: - os: mac store: steam - /madoricapc_win.exe: + "/madoricapc_win.exe": - when: - os: windows store: steam @@ -320416,15 +321352,15 @@ Madrobot X: installDir: Madrobot X: {} launch: - /MadRobot.exe: + "/MadRobot.exe": - when: - os: windows store: steam - /MadrobotX.app: + "/MadrobotX.app": - when: - os: mac store: steam - /runner: + "/runner": - when: - os: linux store: steam @@ -320434,11 +321370,11 @@ Madu Maths: installDir: MaduMaths: {} launch: - /Madu Maths.app/Contents/MacOS/Madu Maths: + "/Madu Maths.app/Contents/MacOS/Madu Maths": - when: - os: mac store: steam - /Madu Maths.exe: + "/Madu Maths.exe": - when: - os: windows store: steam @@ -320446,17 +321382,17 @@ Madu Maths: id: 689400 Maelstrom: files: - /MaelstromV2/Saved/Config/WindowsNoEditor: + "/MaelstromV2/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /MaelstromV2/Saved/SaveGames: + "/MaelstromV2/Saved/SaveGames": tags: - save when: - os: windows - /MaelstromV2/Saved/SaveGames/Settings.sav: + "/MaelstromV2/Saved/SaveGames/Settings.sav": tags: - config when: @@ -320464,20 +321400,20 @@ Maelstrom: installDir: Maelstrom: {} launch: - /MaelstromV2.exe: + "/MaelstromV2.exe": - when: - os: windows store: steam steam: id: 764050 -'Maelstrom: The Battle for Earth Begins': +"Maelstrom: The Battle for Earth Begins": files: - /Game.ini: + "/Game.ini": tags: - config when: - os: windows - /Resource/Saves: + "/Resource/Saves": tags: - save when: @@ -320485,49 +321421,49 @@ Maelstrom: installDir: Maelstrom: {} launch: - /ConfigurationTool.exe: + "/ConfigurationTool.exe": - when: - store: steam - /Maelstrom.exe: + "/Maelstrom.exe": - when: - store: steam steam: id: 11560 -'Maestro: Dark Talent': +"Maestro: Dark Talent": installDir: - Maestro Dark Talent Collector's Edition: {} + "Maestro Dark Talent Collector's Edition": {} launch: - /Maestro_DarkTalent_CE.exe: + "/Maestro_DarkTalent_CE.exe": - when: - os: windows store: steam steam: id: 995930 -'Maestro: Music from the Void': +"Maestro: Music from the Void": installDir: - Maestro Music from the Void Collector's Edition: {} + "Maestro Music from the Void Collector's Edition": {} launch: - /Maestro_MusicFromTheVoid_CE.exe: + "/Maestro_MusicFromTheVoid_CE.exe": - when: - os: windows store: steam steam: id: 887920 -'Maestro: Music of Death': +"Maestro: Music of Death": installDir: - Maestro Music of Death Collector's Edition: {} + "Maestro Music of Death Collector's Edition": {} launch: - /Maestro - Music of Death.exe: + "/Maestro - Music of Death.exe": - when: - os: windows store: steam steam: id: 647090 -'Maestro: Notes of Life': +"Maestro: Notes of Life": installDir: - Maestro Notes of Life Collector's Edition: {} + "Maestro Notes of Life Collector's Edition": {} launch: - /Maestro_NotesofLifeCE.exe: + "/Maestro_NotesofLifeCE.exe": - when: - os: windows store: steam @@ -320535,12 +321471,12 @@ Maelstrom: id: 786100 Mafia: files: - /Mafia/savegame: + "/Mafia/savegame": tags: - save when: - os: windows - /savegame: + "/savegame": tags: - save when: @@ -320550,14 +321486,14 @@ Mafia: installDir: Mafia: {} launch: - /Mafia/game.exe: + "/Mafia/game.exe": - when: - store: steam - workingDir: /Mafia - /Mafia/setup.exe: + workingDir: "/Mafia" + "/Mafia/setup.exe": - when: - store: steam - workingDir: /Mafia + workingDir: "/Mafia" registry: HKEY_CURRENT_USER/Software/Illusion Softworks/Mafia: tags: @@ -320568,7 +321504,7 @@ Mafia Alive: installDir: Mafia Alive: {} launch: - /MafiaAlive.exe: + "/MafiaAlive.exe": - when: - os: windows store: steam @@ -320578,11 +321514,11 @@ Mafia Gambling: installDir: Mafia Gambling: {} launch: - /Mafia Gambling.app/Contents/MacOS/Mafia Gambling: + "/Mafia Gambling.app/Contents/MacOS/Mafia Gambling": - when: - os: mac store: steam - /Mafia Gambling.exe: + "/Mafia Gambling.exe": - when: - os: windows store: steam @@ -320590,12 +321526,12 @@ Mafia Gambling: id: 807860 Mafia II: files: - /Library/Application Support/Feral Interactive/Mafia II/VFS/User/AppData/Roaming/2K Games/Mafia II/Saves: + "/Library/Application Support/Feral Interactive/Mafia II/VFS/User/AppData/Roaming/2K Games/Mafia II/Saves": tags: - save when: - os: mac - /2K Games/Mafia II/Saves: + "/2K Games/Mafia II/Saves": tags: - config - save @@ -320605,42 +321541,42 @@ Mafia II: id: 1816059595 id: steamExtra: - - 50400 - - 50460 - - 67340 - - 67350 - - 67330 - - 67360 - 50145 - 50146 - 50147 + - 50400 - 50411 - 50412 - 50413 - 50414 - 50415 - 50416 + - 50460 + - 67330 + - 67340 + - 67350 + - 67360 installDir: Mafia II: {} launch: - /Mafia II.app: + "/Mafia II.app": - when: - os: mac store: steam - /pc/mafia2.exe: + "/pc/mafia2.exe": - when: - os: windows store: steam steam: id: 50130 -'Mafia II: Definitive Edition': +"Mafia II: Definitive Edition": files: - /My Games/Mafia II Definitive Edition/Data/profiles//settings.xml: + "/My Games/Mafia II Definitive Edition/Data/profiles//settings.xml": tags: - config when: - os: windows - /My Games/Mafia II Definitive Edition/Saves/: + "/My Games/Mafia II Definitive Edition/Saves/": tags: - save when: @@ -320650,27 +321586,27 @@ Mafia II: installDir: Mafia II Definitive Edition: {} launch: - /2KLauncher/LauncherPatcher.exe: + "/2KLauncher/LauncherPatcher.exe": - when: - bit: 64 os: windows store: steam - workingDir: /pc + workingDir: "/pc" steam: id: 1030830 Mafia III: files: - /2K Games/Mafia III/Data//gamesaves/default/aslot/*.sav: + "/2K Games/Mafia III/Data//gamesaves/default/aslot/*.sav": tags: - save when: - os: windows - /2K Games/Mafia III/Data//profiles/temporaryprofile: + "/2K Games/Mafia III/Data//profiles/temporaryprofile": tags: - config when: - os: windows - /2K Games/Mafia III/Saves/videoconfig.cfg: + "/2K Games/Mafia III/Saves/videoconfig.cfg": tags: - config when: @@ -320681,51 +321617,51 @@ Mafia III: gogExtra: - 1269276463 - 1354640203 - - 1379906542 - 1379171513 + - 1379906542 - 1444235797 - 1908345062 - 2145525299 steamExtra: - - 600160 - - 511891 - - 598022 - - 598021 - - 598020 - 511890 + - 511891 - 511892 + - 598020 + - 598021 + - 598022 + - 600160 installDir: Mafia III: {} launch: - /2KLauncher/LauncherPatcher.exe: + "/2KLauncher/LauncherPatcher.exe": - when: - bit: 64 os: windows store: steam - /Mafia3.app: + "/Mafia3.app": - when: - os: mac store: steam steam: id: 360430 -'Mafia: Definitive Edition': +"Mafia: Definitive Edition": files: - /My Games/Mafia Definitive Edition/Saves/profiles: + "/My Games/Mafia Definitive Edition/Saves/profiles": tags: - config when: - store: gog - /user/Data/Saves/gamesaves: + "/user/Data/Saves/gamesaves": tags: - save when: - store: gog - /My Games/Mafia Definitive Edition: + "/My Games/Mafia Definitive Edition": tags: - config when: - os: windows - /My Games/Mafia Definitive Edition/Data//gamesaves: + "/My Games/Mafia Definitive Edition/Data//gamesaves": tags: - save when: @@ -320735,7 +321671,7 @@ Mafia III: installDir: Mafia Definitive Edition: {} launch: - /2KLauncher/LauncherPatcher.exe: + "/2KLauncher/LauncherPatcher.exe": - when: - bit: 64 os: windows @@ -320746,7 +321682,7 @@ MagNets: installDir: MagNets: {} launch: - /Magnets.exe: + "/Magnets.exe": - when: - os: windows store: steam @@ -320756,11 +321692,14 @@ Magatama Earrings: installDir: MAGATAMA Earrings: {} launch: - /MagatamaEarrings.exe: + "/MagatamaEarrings.exe": - when: - bit: 64 os: windows store: steam + - bit: 64 + os: mac + store: steam steam: id: 476370 Magazime Editor: @@ -320770,11 +321709,11 @@ Magdalena: installDir: Magdalena: {} launch: - /Magdalena.app: + "/Magdalena.app": - when: - os: mac store: steam - /Magdalena.exe: + "/Magdalena.exe": - when: - os: windows store: steam @@ -320784,7 +321723,7 @@ Mage: installDir: Mage: {} launch: - /Mage.exe: + "/Mage.exe": - when: - store: steam steam: @@ -320793,23 +321732,23 @@ Mage Fort: installDir: Mage Fort: {} launch: - /MageFort.exe: + "/MageFort.exe": - when: - bit: 64 os: windows store: steam steam: id: 836470 -'Mage Guard: The Last Grimoire': +"Mage Guard: The Last Grimoire": installDir: The Mage Guard: {} steam: id: 577570 -Mage Kanade's Futanari Dungeon Quest: +"Mage Kanade's Futanari Dungeon Quest": installDir: - Mage Kanade's Futanari Dungeon Quest: {} + "Mage Kanade's Futanari Dungeon Quest": {} launch: - /Mage Kanades Futanari Dungeon Quest.exe: + "/Mage Kanades Futanari Dungeon Quest.exe": - when: - os: windows store: steam @@ -320819,7 +321758,7 @@ Mage Mania: installDir: MageMania: {} launch: - /Mage Mania.exe: + "/Mage Mania.exe": - when: - bit: 64 os: windows @@ -320830,7 +321769,7 @@ Mage Math: installDir: Mage Math: {} launch: - /Mathemagus.exe: + "/Mathemagus.exe": - when: - bit: 64 os: windows @@ -320841,7 +321780,7 @@ Mage Noir - Infinity: installDir: Mage Noir - Infinity: {} launch: - /magenoir_client_release_windows.exe: + "/magenoir_client_release_windows.exe": - when: - os: windows store: steam @@ -320852,34 +321791,34 @@ Mage VR -Mini Version-: Mage VR -Mini Version-: {} steam: id: 996170 -'Mage VR: The Lost Memories': +"Mage VR: The Lost Memories": installDir: Mage VR The Lost Memories: {} steam: id: 1036400 -'Mage''s Initiation: Reign of the Elements': +"Mage's Initiation: Reign of the Elements": files: - /.local/share/ags/Mage's Initiation: + "/.local/share/ags/Mage's Initiation": tags: - save when: - os: linux - /Library/Application Support/Mage's Initiation: + "/Library/Application Support/Mage's Initiation": tags: - save when: - os: mac - /Saved Games/Mage's Initiation: + "/Saved Games/Mage's Initiation": tags: - save when: - os: windows - /Saved Games/Mage's Initiation/*.cfg: + "/Saved Games/Mage's Initiation/*.cfg": tags: - config when: - os: windows - /Saved Games/Mage's Initiation/options.dat: + "/Saved Games/Mage's Initiation/options.dat": tags: - config when: @@ -320889,15 +321828,15 @@ Mage VR -Mini Version-: installDir: Mages Initiation: {} launch: - /Mage's Initiation.app/Contents/MacOS/Mage's Initiation: + "/Mage's Initiation.app/Contents/MacOS/Mage's Initiation": - when: - os: mac store: steam - /Mages_Initiation.exe: + "/Mages_Initiation.exe": - when: - os: windows store: steam - - arguments: '--setup' + - arguments: "--setup" when: - os: windows store: steam @@ -320907,11 +321846,11 @@ MageQuit: installDir: MageQuit: {} launch: - /Contents/MacOS/osx-32bit: + "/Contents/MacOS/osx-32bit": - when: - os: mac store: steam - /MageQuit.exe: + "/MageQuit.exe": - when: - os: windows store: steam @@ -320919,7 +321858,7 @@ MageQuit: id: 572220 MageSlayer: files: - /Mage: + "/Mage": tags: - config when: @@ -320929,19 +321868,19 @@ MageWorks: MageWorks: {} steam: id: 494780 -'Magebuster: Amorous Augury': +"Magebuster: Amorous Augury": installDir: Magebuster Amorous Augury: {} launch: - /Magebuster.app: + "/Magebuster.app": - when: - os: mac store: steam - /Magebuster.exe: + "/Magebuster.exe": - when: - os: windows store: steam - /Magebuster.sh: + "/Magebuster.sh": - when: - os: linux store: steam @@ -320949,7 +321888,7 @@ MageWorks: id: 956600 Mages of Mystralia: files: - /AppData/LocalLow/Borealys Games Inc_/Mages of Mystralia: + "/AppData/LocalLow/Borealys Games Inc_/Mages of Mystralia": tags: - config when: @@ -320959,7 +321898,7 @@ Mages of Mystralia: installDir: Mages of Mystralia: {} launch: - /Build.exe: + "/Build.exe": - when: - os: windows store: steam @@ -320969,25 +321908,25 @@ Mages of Mystralia: - save steam: id: 529660 -Maggie's Apartment: +"Maggie's Apartment": installDir: Maggies_Apartment: {} launch: - /winsetup.exe: + "/winsetup.exe": - when: - os: windows store: steam steam: id: 652950 -'Maggie''s Movies - Camera, Action!': +"Maggie's Movies - Camera, Action!": installDir: - 'Maggie''s Movies - Camera, Action!': {} + "Maggie's Movies - Camera, Action!": {} launch: - /Mac.app: + "/Mac.app": - when: - os: mac store: steam - /Maggie/Maggie.exe: + "/Maggie/Maggie.exe": - when: - os: windows store: steam @@ -320995,12 +321934,12 @@ Maggie's Apartment: id: 691580 Magi: files: - /Magi/Magconfig.cfg: + "/Magi/Magconfig.cfg": tags: - config when: - os: windows - /Magi/MagiSave.sav: + "/Magi/MagiSave.sav": tags: - save when: @@ -321008,11 +321947,11 @@ Magi: installDir: Magi: {} launch: - /Magi.app/Contents/MacOS/YoYo70: + "/Magi.app/Contents/MacOS/YoYo70": - when: - os: mac store: steam - /Magi.exe: + "/Magi.exe": - when: - os: windows store: steam @@ -321020,7 +321959,7 @@ Magi: id: 364740 MagiCat: files: - /KucingRembes/MagiCat: + "/KucingRembes/MagiCat": tags: - config - save @@ -321029,11 +321968,11 @@ MagiCat: installDir: MagiCat: {} launch: - /MagiCat.app/Contents/MacOS/MagiCat: + "/MagiCat.app/Contents/MacOS/MagiCat": - when: - os: mac store: steam - /Magicat.exe: + "/Magicat.exe": - when: - os: windows store: steam @@ -321046,21 +321985,21 @@ Magibot: installDir: Magibot: {} launch: - /Magibot-Release-Linux-univV2.x86: + "/Magibot-Release-Linux-univV2.x86": - when: - bit: 32 os: linux store: steam - /Magibot-Release-Linux-univV2.x86_64: + "/Magibot-Release-Linux-univV2.x86_64": - when: - bit: 64 os: linux store: steam - /Magibot-release-Mac-V2.app: + "/Magibot-release-Mac-V2.app": - when: - os: mac store: steam - /magibot_def-06.exe: + "/magibot_def-06.exe": - when: - os: windows store: steam @@ -321068,7 +322007,7 @@ Magibot: id: 690850 Magic 2015 - Duels of the Planeswalkers: files: - /Wizards of the Coast/Magic the Gathering/Magic 2015/profiles/: + "/Wizards of the Coast/Magic the Gathering/Magic 2015/profiles/": tags: - save when: @@ -321076,7 +322015,7 @@ Magic 2015 - Duels of the Planeswalkers: installDir: Magic 2015: {} launch: - /DotP_D15.exe: + "/DotP_D15.exe": - when: - store: steam steam: @@ -321087,12 +322026,12 @@ Magic Axolotl: installDir: Magic Axolotl: {} launch: - /Magic Axolotl.exe: + "/Magic Axolotl.exe": - when: - bit: 64 os: windows store: steam - /Magic Axolotl.x86_64: + "/Magic Axolotl.x86_64": - when: - bit: 64 os: linux @@ -321111,7 +322050,7 @@ Magic Box: installDir: Magic Box: {} launch: - /Magic Box.exe: + "/Magic Box.exe": - when: - os: windows store: steam @@ -321119,21 +322058,21 @@ Magic Box: id: 575750 Magic Carpet: files: - /SAVE: + "/SAVE": tags: - save when: - os: dos gog: id: 1207658935 -'Magic Carpet 2: The Netherworlds': +"Magic Carpet 2: The Netherworlds": files: - /GAME/NETHERW: + "/GAME/NETHERW": tags: - config when: - os: windows - /GAME/NETHERW/SAVE: + "/GAME/NETHERW/SAVE": tags: - save when: @@ -321150,7 +322089,7 @@ Magic Combat VR: id: 1016260 Magic Duels: files: - /steamapps/common/Magic Duels: + "/steamapps/common/Magic Duels": tags: - config when: @@ -321159,36 +322098,36 @@ Magic Duels: installDir: Magic Duels: {} launch: - /MagicDuels.exe: + "/MagicDuels.exe": - when: - store: steam steam: id: 316010 -'Magic Encyclopedia: Moon Light': +"Magic Encyclopedia: Moon Light": installDir: Magic Encyclopedia Moon Light: {} launch: - /magic2.exe: + "/magic2.exe": - when: - os: windows store: steam steam: id: 1059830 -'Magic Farm 2: Fairy Lands': +"Magic Farm 2: Fairy Lands": installDir: Magic Farm 2: {} launch: - /Magic Farm 2.exe: + "/Magic Farm 2.exe": - when: - os: windows store: steam steam: id: 1054750 -'Magic Farm 3: The Ice Danger': +"Magic Farm 3: The Ice Danger": installDir: Magic Farm 3 The Ice Danger: {} launch: - /Magic Farm 3.exe: + "/Magic Farm 3.exe": - when: - os: windows store: steam @@ -321203,11 +322142,11 @@ Magic Flute: installDir: Magic Flute: {} launch: - /Magic Flute.app/Contents/MacOS/Magic Flute: + "/Magic Flute.app/Contents/MacOS/Magic Flute": - when: - os: mac store: steam - /magicflute.exe: + "/magicflute.exe": - when: - os: windows store: steam @@ -321221,7 +322160,7 @@ Magic Forest: installDir: Magic Forest: {} launch: - /Magic Forest.exe: + "/Magic Forest.exe": - when: - os: windows store: steam @@ -321231,7 +322170,7 @@ Magic Ganglia: installDir: Magic Ganglia: {} launch: - /MagicGanglia.exe: + "/MagicGanglia.exe": - when: - os: windows store: steam @@ -321241,7 +322180,7 @@ Magic Girls: installDir: Selenophobia: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -321259,21 +322198,21 @@ Magic Heart: installDir: Magic Heart: {} launch: - /Magic_Heart.exe: + "/Magic_Heart.exe": - when: - os: windows store: steam steam: id: 1026390 -'Magic Heroes: Save Our Park': +"Magic Heroes: Save Our Park": installDir: Magic Heroes Save Our Park: {} launch: - /Magic Heroes.app: + "/Magic Heroes.app": - when: - os: mac store: steam - /Magic Heroes.exe: + "/Magic Heroes.exe": - when: - os: windows store: steam @@ -321293,11 +322232,11 @@ Magic League: installDir: Magic League: {} launch: - /Magic League.app/Contents/MacOS/Magic League: + "/Magic League.app/Contents/MacOS/Magic League": - when: - os: mac store: steam - /Magic League.exe: + "/Magic League.exe": - when: - os: windows store: steam @@ -321312,11 +322251,11 @@ Magic Masks: installDir: Magic Masks: {} launch: - /MagicMasks.app: + "/MagicMasks.app": - when: - os: mac store: steam - /MagicMasks.exe: + "/MagicMasks.exe": - when: - os: windows store: steam @@ -321326,7 +322265,7 @@ Magic Mouse: installDir: Magic Mouse: {} launch: - /Magic Mouse.exe: + "/Magic Mouse.exe": - when: - os: windows store: steam @@ -321336,11 +322275,11 @@ Magic Nations: installDir: Magic Nations: {} launch: - /MagicNations.app/Contents/MacOS/MagicNations: + "/MagicNations.app/Contents/MacOS/MagicNations": - when: - os: mac store: steam - /MagicNations.exe: + "/MagicNations.exe": - when: - bit: 64 os: windows @@ -321351,7 +322290,7 @@ Magic Pixel Picross: installDir: Magic Pixcel Picross: {} launch: - /Magic Pixel Picross.exe: + "/Magic Pixel Picross.exe": - when: - bit: 64 os: windows @@ -321362,7 +322301,7 @@ Magic Potion Destroyer: installDir: Magic Potion Destroyer: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: @@ -321371,7 +322310,7 @@ Magic Potion Explorer: installDir: Magic Potion Explorer: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -321381,28 +322320,28 @@ Magic Quest: installDir: Magic Quest: {} launch: - /bin/MagicQuest.exe: + "/bin/MagicQuest.exe": - when: - os: windows store: steam - workingDir: /bin + workingDir: "/bin" steam: id: 454870 -'Magic Quest: TCG': +"Magic Quest: TCG": installDir: Magic Quest TCG: {} launch: - /MagicQuest.app/Contents/MacOS/MagicQuest: + "/MagicQuest.app/Contents/MacOS/MagicQuest": - when: - os: mac store: steam - /MagicQuest/MagicQuest.exe: + "/MagicQuest/MagicQuest.exe": - when: - os: windows store: steam steam: id: 1128910 -'Magic Realm: Online': +"Magic Realm: Online": installDir: Magic Realm Online: {} steam: @@ -321411,7 +322350,7 @@ Magic Scroll Tactics: installDir: Magic Scroll Tactics: {} launch: - /mst.exe: + "/mst.exe": - when: - store: steam steam: @@ -321430,7 +322369,7 @@ Magic Spellslingers: installDir: Spellslingers: {} launch: - /spellslingers.exe: + "/spellslingers.exe": - when: - bit: 64 os: windows @@ -321441,7 +322380,7 @@ Magic Synthesis: installDir: Magic Synthesis: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: @@ -321455,7 +322394,7 @@ Magic Technology: installDir: Magic Technology: {} launch: - /Magic Technology.exe: + "/Magic Technology.exe": - when: - bit: 64 os: windows @@ -321466,7 +322405,7 @@ Magic Tower: installDir: Magic Tower: {} launch: - /MagicTower.exe: + "/MagicTower.exe": - when: - os: windows store: steam @@ -321476,7 +322415,7 @@ Magic Tower 3D: installDir: Magic Tower 3D: {} launch: - /MagicTower.exe: + "/MagicTower.exe": - when: - os: windows store: steam @@ -321486,15 +322425,15 @@ Magic Wand: installDir: Magic Wand: {} launch: - /MagicWand_LIN.x86: + "/MagicWand_LIN.x86": - when: - os: linux store: steam - /MagicWand_MAC.app/Contents/MacOS/MagicWand_MAC: + "/MagicWand_MAC.app/Contents/MacOS/MagicWand_MAC": - when: - os: mac store: steam - /MagicWand_WIN.exe: + "/MagicWand_WIN.exe": - when: - os: windows store: steam @@ -321510,7 +322449,7 @@ Magic matchstick: installDir: MagicMatchstick: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -321520,24 +322459,24 @@ Magic of Autumn: installDir: Magic of Autumn: {} launch: - /Magic_of_Autumn.exe: + "/Magic_of_Autumn.exe": - when: - os: windows store: steam steam: id: 1184450 -'Magic: The Gathering - Duels of the Planeswalkers': +"Magic: The Gathering - Duels of the Planeswalkers": installDir: Magic The Gathering - Duels of the Planeswalkers: {} launch: - /DotP.exe: + "/DotP.exe": - when: - store: steam steam: id: 49400 -'Magic: The Gathering - Duels of the Planeswalkers 2012': +"Magic: The Gathering - Duels of the Planeswalkers 2012": files: - /Wizards of the Coast/Magic the Gathering/profiles/: + "/Wizards of the Coast/Magic the Gathering/profiles/": tags: - save when: @@ -321545,23 +322484,23 @@ Magic of Autumn: installDir: Magic the Gathering DotP 2012: {} launch: - /Magic_2012.exe: + "/Magic_2012.exe": - when: - store: steam steam: id: 49470 -'Magic: The Gathering - Duels of the Planeswalkers 2013': +"Magic: The Gathering - Duels of the Planeswalkers 2013": installDir: Magic 2013: {} launch: - /DotP_D13.exe: + "/DotP_D13.exe": - when: - store: steam steam: id: 97330 -'Magic: The Gathering - Duels of the Planeswalkers 2014': +"Magic: The Gathering - Duels of the Planeswalkers 2014": files: - /Wizards of the Coast/Magic the Gathering/Magic 2014/profiles/: + "/Wizards of the Coast/Magic the Gathering/Magic 2014/profiles/": tags: - save when: @@ -321569,16 +322508,16 @@ Magic of Autumn: installDir: Magic 2014: {} launch: - /DotP_D14.exe: + "/DotP_D14.exe": - when: - store: steam steam: id: 213850 -'Magic: The Gathering Arena': +"Magic: The Gathering Arena": installDir: MTGA: {} launch: - /MTGA.exe: + "/MTGA.exe": - when: - bit: 64 os: windows @@ -321593,7 +322532,7 @@ MagicCat: installDir: MagicCat: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: @@ -321602,7 +322541,7 @@ MagicJam: installDir: MagicJam: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -321612,15 +322551,15 @@ Magicae Mundi: installDir: Magicae Mundi: {} launch: - /Magicae Mundi.app: + "/Magicae Mundi.app": - when: - os: mac store: steam - /Magicae Mundi.exe: + "/Magicae Mundi.exe": - when: - os: windows store: steam - /Magicae Mundi.x86_64: + "/Magicae Mundi.x86_64": - when: - os: linux store: steam @@ -321628,12 +322567,12 @@ Magicae Mundi: id: 949330 Magical Battle Festa: files: - /userdata//292480/remote/Game*.dat: + "/userdata//292480/remote/Game*.dat": tags: - save when: - store: steam - /userdata//292480/remote/GameConfig.dat: + "/userdata//292480/remote/GameConfig.dat": tags: - config when: @@ -321641,7 +322580,7 @@ Magical Battle Festa: installDir: Magical Battle Festa: {} launch: - /MBF.exe: + "/MBF.exe": - when: - store: steam steam: @@ -321650,15 +322589,15 @@ Magical Brickout: installDir: Magical Brickout: {} launch: - /MagicalBrickout.app: + "/MagicalBrickout.app": - when: - os: mac store: steam - /MagicalBrickout.exe: + "/MagicalBrickout.exe": - when: - os: windows store: steam - /MagicalBrickout.x86: + "/MagicalBrickout.x86": - when: - os: linux store: steam @@ -321673,33 +322612,33 @@ Magical Diary: installDir: Magical Diary: {} launch: - /MagicalDiary.app: + "/MagicalDiary.app": - when: - os: mac store: steam - /MagicalDiary.exe: + "/MagicalDiary.exe": - when: - os: windows store: steam - /MagicalDiary.sh: + "/MagicalDiary.sh": - when: - os: linux store: steam steam: id: 211340 -'Magical Diary: Wolf Hall': +"Magical Diary: Wolf Hall": installDir: Magical Diary Wolf Hall: {} launch: - /WolfHall.app: + "/WolfHall.app": - when: - os: mac store: steam - /WolfHall.exe: + "/WolfHall.exe": - when: - os: windows store: steam - /WolfHall.sh: + "/WolfHall.sh": - when: - os: linux store: steam @@ -321709,19 +322648,19 @@ Magical Drop DX: installDir: MagicalDropDX: {} launch: - /magicalDropDX.exe: + "/magicalDropDX.exe": - when: - store: steam steam: id: 1695510 Magical Drop V: files: - /config.xml: + "/config.xml": tags: - config when: - os: windows - /saves/*_mdv.sav: + "/saves/*_mdv.sav": tags: - save when: @@ -321729,15 +322668,15 @@ Magical Drop V: installDir: Magical Drop V: {} launch: - /magicaldropv.exe: - - arguments: '-console' + "/magicaldropv.exe": + - arguments: "-console" when: - store: steam steam: id: 204960 Magical Drop VI: files: - /AppData/LocalLow/Forever Entertainment S_ A_/MagicalDropVI/data.sav: + "/AppData/LocalLow/Forever Entertainment S_ A_/MagicalDropVI/data.sav": tags: - save when: @@ -321747,7 +322686,7 @@ Magical Drop VI: installDir: Magical Drop VI: {} launch: - /MagicalDropVI.exe: + "/MagicalDropVI.exe": - when: - os: windows store: steam @@ -321757,16 +322696,16 @@ Magical Eyes - Red is for Anguish: installDir: Magical Eyes - Red is for Anguish: {} launch: - /magical_eyes.exe: + "/magical_eyes.exe": - when: - store: steam steam: id: 366780 -'Magical Fable: The Princess of Light': +"Magical Fable: The Princess of Light": installDir: Magical Fable The Princess of Light: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -321778,7 +322717,7 @@ Magical Girl Celesphonia: installDir: Magical Girl Celesphonia: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: @@ -321790,21 +322729,21 @@ Magical MILFs: installDir: MagicalMILFs: {} launch: - /MagicalMILFs-32.exe: + "/MagicalMILFs-32.exe": - when: - bit: 32 os: windows store: steam - /MagicalMILFs.app: + "/MagicalMILFs.app": - when: - os: mac store: steam - /MagicalMILFs.exe: + "/MagicalMILFs.exe": - when: - bit: 64 os: windows store: steam - /MagicalMILFs.sh: + "/MagicalMILFs.sh": - when: - os: linux store: steam @@ -321814,17 +322753,17 @@ Magical Monster Land: installDir: Magical Monster Land: {} launch: - /MML.exe: + "/MML.exe": - when: - os: windows store: steam steam: id: 949990 -'Magical Mysteries: Path of the Sorceress': +"Magical Mysteries: Path of the Sorceress": installDir: Magical Mysteries: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -321832,12 +322771,12 @@ Magical Monster Land: id: 548320 Magical Otoge Ciel: files: - /renpy/config.py: + "/renpy/config.py": tags: - config when: - os: windows - /RenPy/Ciel-1433022430: + "/RenPy/Ciel-1433022430": tags: - save when: @@ -321845,15 +322784,15 @@ Magical Otoge Ciel: installDir: Magical Otoge Ciel: {} launch: - /Magical Otoge Ciel.app: + "/Magical Otoge Ciel.app": - when: - os: mac store: steam - /Magical Otoge Ciel.exe: + "/Magical Otoge Ciel.exe": - when: - os: windows store: steam - /Magical Otoge Ciel.sh: + "/Magical Otoge Ciel.sh": - when: - os: linux store: steam @@ -321868,7 +322807,7 @@ Magical Star Pillars: installDir: Magical Star Pillars: {} launch: - /Puzzle.exe: + "/Puzzle.exe": - when: - os: windows store: steam @@ -321880,16 +322819,16 @@ Magical Swordmaiden: installDir: Magical Swordmaiden: {} launch: - /Magical Swordmaiden.exe: + "/Magical Swordmaiden.exe": - when: - store: steam steam: id: 1271740 -Magical girl's labyrinth: +"Magical girl's labyrinth": installDir: - Magical girl's labyrinth: {} + "Magical girl's labyrinth": {} launch: - /Magical girl's labyrinth/Game.exe: + "/Magical girl's labyrinth/Game.exe": - when: - os: windows store: steam @@ -321899,43 +322838,43 @@ Magician of Fire: installDir: Magician of Fire: {} launch: - /Magician of Fire.exe: + "/Magician of Fire.exe": - when: - os: windows store: steam steam: id: 984830 -Magician's Apprentice: +"Magician's Apprentice": files: - /Saved Games/Magician's Apprentice: + "/Saved Games/Magician's Apprentice": tags: - save when: - os: windows - /Magician's Apprentice/Config.xml: + "/Magician's Apprentice/Config.xml": tags: - config when: - os: windows installDir: - Magician's Apprentice: {} + "Magician's Apprentice": {} launch: - /Magician's Apprentice.exe: + "/Magician's Apprentice.exe": - when: - os: windows store: steam steam: id: 397360 -Magician's Gambit: +"Magician's Gambit": installDir: - Magician's Gambit: {} + "Magician's Gambit": {} steam: id: 649120 Magicians & Looters: installDir: Magicians and Looters: {} launch: - /mal.exe: + "/mal.exe": - when: - store: steam steam: @@ -321947,16 +322886,16 @@ Magicite: installDir: Magicite: {} launch: - /Magicite: + "/Magicite": - when: - os: linux store: steam - /Magicite.app/Contents/MacOS/Magicite: + "/Magicite.app/Contents/MacOS/Magicite": - when: - os: mac store: steam - workingDir: /Magicite.app/Contents/MacOS - /Magicite.exe: + workingDir: "/Magicite.app/Contents/MacOS" + "/Magicite.exe": - when: - os: windows store: steam @@ -321969,7 +322908,7 @@ Magicite: id: 268750 Magicka: files: - /SaveData: + "/SaveData": tags: - config - save @@ -321978,29 +322917,29 @@ Magicka: installDir: Magicka: {} launch: - /Magicka.exe: + "/Magicka.exe": - when: - store: steam steam: id: 42910 Magicka 2: files: - /.bitsquid/Magicka2/*.old: + "/.bitsquid/Magicka2/*.old": tags: - save when: - os: linux - /.bitsquid/Magicka2/*.sav: + "/.bitsquid/Magicka2/*.sav": tags: - save when: - os: linux - /.bitsquid/Magicka2/user_settings.config: + "/.bitsquid/Magicka2/user_settings.config": tags: - config when: - os: linux - /ParadoxInteractive/Magicka2: + "/ParadoxInteractive/Magicka2": tags: - config - save @@ -322009,33 +322948,33 @@ Magicka 2: installDir: Magicka 2: {} launch: - /engine/Magicka2: + "/engine/Magicka2": - when: - bit: 32 os: linux store: steam - workingDir: /engine - /engine/Magicka2.app: + workingDir: "/engine" + "/engine/Magicka2.app": - when: - os: mac store: steam - workingDir: /engine - /engine/Magicka2.exe: + workingDir: "/engine" + "/engine/Magicka2.exe": - when: - os: windows store: steam - workingDir: /engine - /engine/Magicka2_x64: + workingDir: "/engine" + "/engine/Magicka2_x64": - when: - bit: 64 os: linux store: steam - workingDir: /engine + workingDir: "/engine" steam: id: 238370 -'Magicka: Wizard Wars': +"Magicka: Wizard Wars": files: - /WizardWars: + "/WizardWars": tags: - config when: @@ -322043,20 +322982,18 @@ Magicka 2: installDir: MagickaWizardWars: {} launch: - /WizardWarsLauncher.exe: - - arguments: >- - bitsquid_win32_dev.exe -bundle-dir ./data_win32_bundled -window-title \"Magicka: Wizard Wars\" -ini - settings_client -property-order client server -use-steam -network-profile internet + "/WizardWarsLauncher.exe": + - arguments: "bitsquid_win32_dev.exe -bundle-dir ./data_win32_bundled -window-title \\\"Magicka: Wizard Wars\\\" -ini settings_client -property-order client server -use-steam -network-profile internet" when: - os: windows store: steam steam: id: 202090 -'Magicka: Wizards of the Square Tablet': +"Magicka: Wizards of the Square Tablet": installDir: MagickaWotST: {} launch: - /iMagicka.exe: + "/iMagicka.exe": - when: - os: windows store: steam @@ -322079,7 +323016,7 @@ Magicmaker: installDir: Magicmaker: {} launch: - /model.exe: + "/model.exe": - when: - store: steam steam: @@ -322093,12 +323030,12 @@ Magika Land of Fantasy: installDir: Magika Land of Fantasy: {} launch: - /Magika-32.exe: + "/Magika-32.exe": - when: - bit: 32 os: windows store: steam - /Magika-64.exe: + "/Magika-64.exe": - when: - bit: 64 os: windows @@ -322109,15 +323046,15 @@ Magikiras: installDir: Magikiras: {} launch: - /Magikiras: + "/Magikiras": - when: - os: linux store: steam - /Magikiras.app/Contents/MacOS/Magikiras: + "/Magikiras.app/Contents/MacOS/Magikiras": - when: - os: mac store: steam - /Magikiras.exe: + "/Magikiras.exe": - when: - os: windows store: steam @@ -322127,8 +323064,8 @@ Magilore: installDir: Magilore: {} launch: - /Game.exe: - - arguments: '-windowed' + "/Game.exe": + - arguments: "-windowed" when: - os: windows store: steam @@ -322138,7 +323075,7 @@ Magistrangers: installDir: Magistrangers: {} launch: - /AppMain.exe: + "/AppMain.exe": - when: - os: windows store: steam @@ -322153,7 +323090,7 @@ Maglam Lord: installDir: MAGLAM LORD: {} launch: - /MAGLAM LORD.exe: + "/MAGLAM LORD.exe": - when: - os: windows store: steam @@ -322166,20 +323103,20 @@ Magma Tsunami: installDir: Magma Tsunami: {} launch: - /MagmaTsunami.app/Contents/MacOS/MagmaTsunami: + "/MagmaTsunami.app/Contents/MacOS/MagmaTsunami": - when: - os: mac store: steam - /MagmaTsunami.exe: + "/MagmaTsunami.exe": - when: - os: windows store: steam - /magmatsunami.x86: + "/magmatsunami.x86": - when: - bit: 32 os: linux store: steam - /magmatsunami.x86_64: + "/magmatsunami.x86_64": - when: - bit: 64 os: linux @@ -322192,7 +323129,7 @@ Magna Fortuna: installDir: Magna Fortuna: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: @@ -322201,11 +323138,11 @@ Magnesia: installDir: Magnesia: {} launch: - /Magnesia.app: + "/Magnesia.app": - when: - os: mac store: steam - /Magnesia.exe: + "/Magnesia.exe": - when: - os: windows store: steam @@ -322218,20 +323155,20 @@ Magnetic By Nature: installDir: MBN: {} launch: - /MagneticByNature.app/Contents/MacOS/MagneticByNature: + "/MagneticByNature.app/Contents/MacOS/MagneticByNature": - when: - os: mac store: steam - /MagneticByNature.exe: + "/MagneticByNature.exe": - when: - os: windows store: steam - /MagneticByNature.x86: + "/MagneticByNature.x86": - when: - bit: 32 os: linux store: steam - /MagneticByNature.x86_64: + "/MagneticByNature.x86_64": - when: - bit: 64 os: linux @@ -322246,7 +323183,7 @@ Magnetic Daydream: installDir: Magnetic Daydream: {} launch: - /Magnetic Daydream.exe: + "/Magnetic Daydream.exe": - when: - os: windows store: steam @@ -322259,22 +323196,22 @@ Magnetic Pull: installDir: Magnetic Pull: {} launch: - /MagneticPull.exe: + "/MagneticPull.exe": - when: - bit: 64 os: windows store: steam steam: id: 1068990 -'Magnetic: Cage Closed': +"Magnetic: Cage Closed": files: - /userdata//344410/remote: + "/userdata//344410/remote": tags: - config when: - os: windows store: steam - /userdata//344410/remote/save: + "/userdata//344410/remote/save": tags: - save when: @@ -322283,7 +323220,7 @@ Magnetic Pull: installDir: Magnetic Cage Closed: {} launch: - /Magnetic.exe: + "/Magnetic.exe": - when: - bit: 64 os: windows @@ -322298,7 +323235,7 @@ Magnetis: installDir: Magnetis: {} launch: - /Magnetis.exe: + "/Magnetis.exe": - when: - store: steam steam: @@ -322307,7 +323244,7 @@ Magnetized: installDir: Magnetized: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -322320,7 +323257,7 @@ Magnetron: installDir: Magnetron: {} launch: - /Magnetron.exe: + "/Magnetron.exe": - when: - os: windows store: steam @@ -322330,7 +323267,7 @@ Magnetta: installDir: Magnetta: {} launch: - /Magnetta.exe: + "/Magnetta.exe": - when: - os: windows store: steam @@ -322346,11 +323283,11 @@ Magnia: installDir: Magnia: {} launch: - /MAC MAGNIA.app: + "/MAC MAGNIA.app": - when: - os: mac store: steam - /Magnia.exe: + "/Magnia.exe": - when: - os: windows store: steam @@ -322360,11 +323297,11 @@ Magnibox: installDir: Magnibox: {} launch: - /Magnibox.app: + "/Magnibox.app": - when: - os: mac store: steam - /magnibox.exe: + "/magnibox.exe": - when: - os: windows store: steam @@ -322374,8 +323311,8 @@ Magnificent 5: installDir: Magnificent 5: {} launch: - /Launcher.exe: - - arguments: '-steam -mag5' + "/Launcher.exe": + - arguments: "-steam -mag5" when: - bit: 64 os: windows @@ -322386,19 +323323,19 @@ Magnificent Monsters: installDir: Penko Park: {} launch: - /Penko Park.exe: + "/Penko Park.exe": - when: - bit: 64 os: windows store: steam steam: id: 852090 -'Magnificent Ships: Volume 1': +"Magnificent Ships: Volume 1": installDir: Magnificent Ships - Volume 1: {} steam: id: 557850 -'Magnificent Ships: Volume 2': +"Magnificent Ships: Volume 2": installDir: Magnificent Ships - Volume 2: {} steam: @@ -322407,7 +323344,7 @@ Magnifico: installDir: Magnifico: {} launch: - /Magnifico.exe: + "/Magnifico.exe": - when: - os: windows store: steam @@ -322417,7 +323354,7 @@ Magnolia: installDir: Magnolia: {} launch: - /magnolia_cocos_proj.exe: + "/magnolia_cocos_proj.exe": - when: - os: windows store: steam @@ -322427,21 +323364,21 @@ Mago: installDir: MAGO: {} launch: - /MAGO.exe: + "/MAGO.exe": - when: - bit: 64 os: windows store: steam steam: id: 1098280 -'Magrunner: Dark Pulse': +"Magrunner: Dark Pulse": files: - /My Games/Magrunner/YoshiGame/Config: + "/My Games/Magrunner/YoshiGame/Config": tags: - config when: - os: windows - /My Games/Magrunner/YoshiGame/Magrunner_auto_save.sav: + "/My Games/Magrunner/YoshiGame/Magrunner_auto_save.sav": tags: - save when: @@ -322451,27 +323388,27 @@ Mago: installDir: Magrunner: {} launch: - /Binaries/Win32/Magrunner.exe: - - arguments: '-NOSCREENMESSAGES' + "/Binaries/Win32/Magrunner.exe": + - arguments: "-NOSCREENMESSAGES" when: - os: windows store: steam - workingDir: /Binaries/Win32 - - arguments: '-NOSCREENMESSAGES -lowgraphics' + workingDir: "/Binaries/Win32" + - arguments: "-NOSCREENMESSAGES -lowgraphics" when: - os: windows store: steam - workingDir: /Binaries/Win32 + workingDir: "/Binaries/Win32" steam: id: 209630 -'MaguSphere: Magical Cannon Girls': +"MaguSphere: Magical Cannon Girls": steam: id: 1689130 Magus Over Fool: installDir: Magus Over Fool: {} launch: - /MagusOverFool.exe: + "/MagusOverFool.exe": - when: - os: windows store: steam @@ -322481,16 +323418,16 @@ MahJong (baKno): installDir: MahJongGame: {} launch: - /MahJong.app/Contents/MacOS/MahJong: + "/MahJong.app/Contents/MacOS/MahJong": - when: - os: mac store: steam - /MahJong.exe: + "/MahJong.exe": - when: - bit: 64 os: windows store: steam - /MahJong.x86_64: + "/MahJong.x86_64": - when: - bit: 64 os: linux @@ -322501,7 +323438,7 @@ Mahjong: installDir: Mahjong: {} launch: - /Mahjong.exe: + "/Mahjong.exe": - when: - os: windows store: steam @@ -322511,7 +323448,7 @@ Mahjong Challenge: installDir: Mahjong Challenge: {} launch: - /Mahjong Challenge.exe: + "/Mahjong Challenge.exe": - when: - os: windows store: steam @@ -322521,11 +323458,11 @@ Mahjong Classic: installDir: Majong Classic: {} launch: - /Majong Classic.app/Contents/MacOS/Majong Classic: + "/Majong Classic.app/Contents/MacOS/Majong Classic": - when: - os: mac store: steam - /Majong Classic.exe: + "/Majong Classic.exe": - when: - os: windows store: steam @@ -322535,17 +323472,17 @@ Mahjong Club: installDir: Mahjong Club: {} launch: - /Mahjong Club.exe: + "/Mahjong Club.exe": - when: - os: windows store: steam steam: id: 912370 -'Mahjong Deluxe 2: Astral Planes': +"Mahjong Deluxe 2: Astral Planes": installDir: Mahjong Deluxe 2 Astral Planes: {} launch: - /MahjongDeluxe2.exe: + "/MahjongDeluxe2.exe": - when: - os: windows store: steam @@ -322555,7 +323492,7 @@ Mahjong Deluxe 3: installDir: Mahjong Deluxe 3: {} launch: - /MahjongDeluxe3.exe: + "/MahjongDeluxe3.exe": - when: - store: steam steam: @@ -322564,7 +323501,7 @@ Mahjong Destiny: installDir: Mahjong Destiny: {} launch: - /MahjongDestiny.exe: + "/MahjongDestiny.exe": - when: - os: windows store: steam @@ -322574,21 +323511,21 @@ Mahjong Dimensions 3D - Fantasy Anime: installDir: Mahjong Dimensions 3D - Fantasy Anime: {} launch: - /Mahjong Dimensions 3D - Fantasy Anime.exe: + "/Mahjong Dimensions 3D - Fantasy Anime.exe": - when: - os: windows store: steam steam: id: 1153220 -'Mahjong Fest: Winterland': +"Mahjong Fest: Winterland": installDir: Mahjong Fest Winterland: {} launch: - /MahjongFestWinterland.app/Contents/MacOS/mahjong: + "/MahjongFestWinterland.app/Contents/MacOS/mahjong": - when: - os: mac store: steam - /mahjong.exe: + "/mahjong.exe": - when: - os: windows store: steam @@ -322598,7 +323535,7 @@ Mahjong Gold: installDir: Mahjong Gold: {} launch: - /Mahjong Gold.exe: + "/Mahjong Gold.exe": - when: - os: windows store: steam @@ -322608,7 +323545,7 @@ Mahjong Infinity: installDir: Mahjong Infinity: {} launch: - /MahjongInfinity.exe: + "/MahjongInfinity.exe": - when: - os: windows store: steam @@ -322618,7 +323555,7 @@ Mahjong Magic Islands: installDir: Mahjong Magic Islands: {} launch: - /mahjong.exe: + "/mahjong.exe": - when: - os: windows store: steam @@ -322628,7 +323565,7 @@ Mahjong Magic Journey: installDir: Mahjong Magic Journey: {} launch: - /Mahjong Magic Journey.exe: + "/Mahjong Magic Journey.exe": - when: - os: windows store: steam @@ -322638,11 +323575,11 @@ Mahjong Magic Journey 2: installDir: Mahjong Magic Journey 2: {} launch: - /Mahjong Magic Journey 2.app: + "/Mahjong Magic Journey 2.app": - when: - os: mac store: steam - /Mahjong Magic Journey 2.exe: + "/Mahjong Magic Journey 2.exe": - when: - os: windows store: steam @@ -322652,21 +323589,21 @@ Mahjong Magic Journey 3: installDir: Mahjong Magic Journey 3: {} launch: - /Mahjong Magic Journey 3.app: + "/Mahjong Magic Journey 3.app": - when: - os: mac store: steam - /Mahjong Magic Journey 3.exe: + "/Mahjong Magic Journey 3.exe": - when: - os: windows store: steam steam: id: 929400 -'Mahjong Masters: Temple of the Ten Gods': +"Mahjong Masters: Temple of the Ten Gods": installDir: Mahjong Masters Temple of the Ten Gods: {} launch: - /Mahjong Masters - Temple of the Ten Gods.exe: + "/Mahjong Masters - Temple of the Ten Gods.exe": - when: - os: windows store: steam @@ -322676,7 +323613,7 @@ Mahjong Match: installDir: Mahjong Match: {} launch: - /Mahjong Match.exe: + "/Mahjong Match.exe": - when: - os: windows store: steam @@ -322686,16 +323623,16 @@ Mahjong Pretty Girls Battle: installDir: MahJong Nagomi: {} launch: - /MahjongPrettyGirlsBattle.exe: + "/MahjongPrettyGirlsBattle.exe": - when: - store: steam steam: id: 338060 -'Mahjong Pretty Girls Battle: School Girls Edition': +"Mahjong Pretty Girls Battle: School Girls Edition": installDir: - 'MPGB [School Girls Edition]': {} + "MPGB [School Girls Edition]": {} launch: - '/MahjongPrettyGirlsBattle[SchoolGirlsEdition].exe': + "/MahjongPrettyGirlsBattle[SchoolGirlsEdition].exe": - when: - store: steam steam: @@ -322704,7 +323641,7 @@ Mahjong Pretty Manga Girls: installDir: mahjongPrettyMangaGirls: {} launch: - /nw.exe: + "/nw.exe": - when: - store: steam steam: @@ -322713,7 +323650,7 @@ Mahjong Quest Collection: installDir: Mahjong Quest: {} launch: - /Mahjong.exe: + "/Mahjong.exe": - when: - store: steam steam: @@ -322722,11 +323659,11 @@ Mahjong Riichi Multiplayer: installDir: Mahjong Riichi Multiplayer: {} launch: - /Mahjong.app/Contents/MacOS/Mahjong: + "/Mahjong.app/Contents/MacOS/Mahjong": - when: - os: mac store: steam - /Mahjong.exe: + "/Mahjong.exe": - when: - os: windows store: steam @@ -322736,11 +323673,11 @@ Mahjong Roadshow: installDir: Mahjong Roadshow: {} launch: - /MahjongRoadshow.app: + "/MahjongRoadshow.app": - when: - os: mac store: steam - /MahjongRoadshow.exe: + "/MahjongRoadshow.exe": - when: - os: windows store: steam @@ -322750,7 +323687,7 @@ Mahjong Royal Towers: installDir: Mahjong Royal Towers: {} launch: - /Mahjong Royal Towers.exe: + "/Mahjong Royal Towers.exe": - when: - os: windows store: steam @@ -322760,11 +323697,11 @@ Mahjong Secrets: installDir: Mahjong Secrets: {} launch: - /MahjongSecrets.app: + "/MahjongSecrets.app": - when: - os: mac store: steam - /MahjongSecrets.exe: + "/MahjongSecrets.exe": - when: - os: windows store: steam @@ -322774,7 +323711,7 @@ Mahjong Solitaire: installDir: Mahjong Solitaire: {} launch: - /Mahjong.exe: + "/Mahjong.exe": - when: - os: windows store: steam @@ -322784,25 +323721,25 @@ Mahjong Solitaire Refresh: installDir: Mahjong Solitaire Refresh: {} launch: - /Mahjong Solitaire Refresh.exe: + "/Mahjong Solitaire Refresh.exe": - when: - os: windows store: steam steam: id: 1044210 -'Mahjong Strip Solitaire: Harem Guild': +"Mahjong Strip Solitaire: Harem Guild": installDir: Mahjong Strip Solitaire Harem Guild: {} launch: - /Mahjong Strip Solitaire Harem Guild.exe: + "/Mahjong Strip Solitaire Harem Guild.exe": - when: - os: windows store: steam steam: id: 1008520 -'Mahjong Tales: Ancient Wisdom': +"Mahjong Tales: Ancient Wisdom": files: - /TikGames/Mahjong Wisdom/saves: + "/TikGames/Mahjong Wisdom/saves": tags: - save when: @@ -322811,7 +323748,7 @@ Mahjong Towers Eternity: installDir: Mahjong Towers Eternity: {} launch: - /Mahjong Towers Eternity.exe: + "/Mahjong Towers Eternity.exe": - when: - store: steam steam: @@ -322821,15 +323758,15 @@ Mahjong VR: Mahjong VR: {} steam: id: 709480 -Mahjong Valentine's Day: +"Mahjong Valentine's Day": installDir: - Mahjong Valentine's Day: {} + "Mahjong Valentine's Day": {} launch: - /Mahjong Valentine's Day.exe: + "/Mahjong Valentine's Day.exe": - when: - os: windows store: steam - /Valentine's Day Mahjong.app: + "/Valentine's Day Mahjong.app": - when: - os: mac store: steam @@ -322839,25 +323776,25 @@ Mahjong World Contest: installDir: Mahjong World Contest: {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: id: 523150 -'Mahjong: Magic Chips': +"Mahjong: Magic Chips": installDir: Mahjong Puzzle World: {} launch: - /Mahjong Puzzle World.exe: + "/Mahjong Puzzle World.exe": - when: - store: steam steam: id: 1051320 -'Mahjongg Investigations: Under Suspicion': +"Mahjongg Investigations: Under Suspicion": installDir: Mahjongg Investigations Under Suspicion: {} launch: - /MahjonggInvestigations.exe: + "/MahjonggInvestigations.exe": - when: - store: steam steam: @@ -322866,17 +323803,17 @@ Mahjongg The Ultimate Collection 2: installDir: Mahjongg The Ultimate Collection 2: {} launch: - /Mahjongg_TheUltimateCollection2.exe: + "/Mahjongg_TheUltimateCollection2.exe": - when: - os: windows store: steam steam: id: 913440 -'Mahluk: Dark Demon': +"Mahluk: Dark Demon": installDir: Mahluk Dark demon: {} launch: - /Mahluk_Content/Mahluk.exe: + "/Mahluk_Content/Mahluk.exe": - when: - os: windows store: steam @@ -322884,12 +323821,12 @@ Mahjongg The Ultimate Collection 2: id: 503480 Mahou Arms: files: - /MagicalGirlDF/Saved/Config/WindowsNoEditor: + "/MagicalGirlDF/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /MagicalGirlDF/Saved/SaveGames: + "/MagicalGirlDF/Saved/SaveGames": tags: - save when: @@ -322897,7 +323834,7 @@ Mahou Arms: installDir: Mahou Arms: {} launch: - /MagicalGirlDF.exe: + "/MagicalGirlDF.exe": - when: - store: steam steam: @@ -322909,7 +323846,7 @@ Mahsung Deluxe: installDir: Mahsung Deluxe: {} launch: - /MahsungDeluxe.exe: + "/MahsungDeluxe.exe": - when: - os: windows store: steam @@ -322917,7 +323854,7 @@ Mahsung Deluxe: id: 542690 Mahōkenshi: files: - /Mahokenshi_Data/Saves: + "/Mahokenshi_Data/Saves": tags: - save when: @@ -322927,7 +323864,7 @@ Mahōkenshi: installDir: Mahokenshi: {} launch: - /Mahokenshi.exe: + "/Mahokenshi.exe": - when: - os: windows store: steam @@ -322935,22 +323872,22 @@ Mahōkenshi: id: 1717640 Maia: files: - /Maia: + "/Maia": tags: - save when: - os: windows - /Maia/config.xml: + "/Maia/config.xml": tags: - config when: - os: windows - /Machine_Studios/Maia: + "/Machine_Studios/Maia": tags: - save when: - os: linux - /Machine_Studios/Maia/config.xml: + "/Machine_Studios/Maia/config.xml": tags: - config when: @@ -322958,23 +323895,23 @@ Maia: installDir: Maia: {} launch: - /32bit/maia32.exe: + "/32bit/maia32.exe": - when: - bit: 32 os: windows store: steam - workingDir: /32bit - /Maia.app: + workingDir: "/32bit" + "/Maia.app": - when: - bit: 64 os: mac store: steam - /Maia.exe: + "/Maia.exe": - when: - bit: 64 os: windows store: steam - /RunMaia: + "/RunMaia": - when: - bit: 64 os: linux @@ -322985,7 +323922,7 @@ Maid Cafe: installDir: Chromo XY: {} launch: - /ChromoXY.exe: + "/ChromoXY.exe": - when: - os: windows store: steam @@ -322993,7 +323930,7 @@ Maid Cafe: id: 467750 Maid of Sker: files: - /AppData/LocalLow/Wales Interactive/Maid of Sker: + "/AppData/LocalLow/Wales Interactive/Maid of Sker": tags: - config - save @@ -323004,7 +323941,7 @@ Maid of Sker: installDir: Maid of Sker: {} launch: - /Maid of Sker.exe: + "/Maid of Sker.exe": - when: - bit: 64 os: windows @@ -323013,7 +323950,7 @@ Maid of Sker: id: 826940 Maiden & Spell: files: - /MaidenSpell: + "/MaidenSpell": tags: - save when: @@ -323021,20 +323958,20 @@ Maiden & Spell: installDir: Maiden & Spell: {} launch: - /MaidenSpell.exe: + "/MaidenSpell.exe": - when: - os: windows store: steam steam: id: 1004770 -'Maiden City: The Last Collateral Damage': +"Maiden City: The Last Collateral Damage": steam: id: 805380 Maidens of a Hollow Dream: installDir: Maidens of a Hollow Dream: {} launch: - /otome.exe: + "/otome.exe": - when: - store: steam steam: @@ -323043,19 +323980,19 @@ Maids Girls: installDir: Maids Girls: {} launch: - /Maids Girls.exe: + "/Maids Girls.exe": - when: - store: steam steam: id: 1171430 Mail Time: files: - /Library/Application Support/ Epic/MailTime/Saved/SaveGames: + "/Library/Application Support/ Epic/MailTime/Saved/SaveGames": tags: - save when: - os: mac - /MailTime/Saved/SaveGames: + "/MailTime/Saved/SaveGames": tags: - save when: @@ -323065,11 +324002,11 @@ Mail Time: installDir: Mail Time: {} launch: - /MailTime.app: + "/MailTime.app": - when: - os: mac store: steam - /MailTime.exe: + "/MailTime.exe": - when: - bit: 64 os: windows @@ -323080,7 +324017,7 @@ Mailbox: installDir: Mailbox: {} launch: - /Mailbox.exe: + "/Mailbox.exe": - when: - os: windows store: steam @@ -323088,12 +324025,12 @@ Mailbox: id: 1186310 Main Assembly: files: - /RoboBuild/Config/WindowsNoEditor: + "/RoboBuild/Config/WindowsNoEditor": tags: - config when: - os: windows - /RoboBuild/Saved: + "/RoboBuild/Saved": tags: - save when: @@ -323101,7 +324038,7 @@ Main Assembly: installDir: Main Assembly: {} launch: - /MainAssembly.exe: + "/MainAssembly.exe": - when: - os: windows store: steam @@ -323109,17 +324046,17 @@ Main Assembly: id: 1078920 Main Character Simulator: files: - /game/saves: + "/game/saves": tags: - save when: - os: windows - /renpy/config.py: + "/renpy/config.py": tags: - config when: - os: windows - /renpy/Main_Character_Simulator-1466283085: + "/renpy/Main_Character_Simulator-1466283085": tags: - save when: @@ -323127,15 +324064,15 @@ Main Character Simulator: installDir: Main Character Simulator: {} launch: - /Main_Character_Simulator.app: + "/Main_Character_Simulator.app": - when: - os: mac store: steam - /Main_Character_Simulator.exe: + "/Main_Character_Simulator.exe": - when: - os: windows store: steam - /Main_Character_Simulator.sh: + "/Main_Character_Simulator.sh": - when: - os: linux store: steam @@ -323143,12 +324080,12 @@ Main Character Simulator: id: 930710 Mainframe Defenders: files: - /AppData/LocalLow/ZeroTheCat/Mainframe/*.ini: + "/AppData/LocalLow/ZeroTheCat/Mainframe/*.ini": tags: - config when: - os: windows - /AppData/LocalLow/ZeroTheCat/Mainframe/current.sav: + "/AppData/LocalLow/ZeroTheCat/Mainframe/current.sav": tags: - save when: @@ -323158,12 +324095,12 @@ Mainframe Defenders: installDir: Mainframe Defenders Test: {} launch: - /Mainframe.exe: + "/Mainframe.exe": - when: - bit: 64 os: windows store: steam - /Mainframe.x86_64: + "/Mainframe.x86_64": - when: - bit: 64 os: linux @@ -323176,7 +324113,7 @@ Mainframe Defenders: id: 1184810 Mainland: files: - /appdata/saves/mainland: + "/appdata/saves/mainland": tags: - save when: @@ -323184,19 +324121,19 @@ Mainland: installDir: Mainland: {} launch: - /instead-mainland.exe: + "/instead-mainland.exe": - when: - store: steam steam: id: 366800 Mainlining: files: - /MainliningGame/Profile_*.sav: + "/MainliningGame/Profile_*.sav": tags: - save when: - os: windows - /MainliningGame/System.sav: + "/MainliningGame/System.sav": tags: - config when: @@ -323206,15 +324143,15 @@ Mainlining: installDir: Mainlining: {} launch: - /MainliningGame.app: + "/MainliningGame.app": - when: - os: mac store: steam - /MainliningGame.exe: + "/MainliningGame.exe": - when: - os: windows store: steam - /MainliningGame.x86: + "/MainliningGame.x86": - when: - os: linux store: steam @@ -323224,25 +324161,25 @@ Maitetsu: installDir: Maitetsu: {} launch: - /Maitetsu.exe: + "/Maitetsu.exe": - when: - store: steam steam: id: 714800 -'Maitetsu: Last Run!!': +"Maitetsu: Last Run!!": installDir: MaitetsuLastRun: {} launch: - /MaitetsuLastRun.exe: + "/MaitetsuLastRun.exe": - when: - store: steam steam: id: 1434480 -'Maitetsu: Pure Station': +"Maitetsu: Pure Station": installDir: PureStation: {} launch: - /PureStation.exe: + "/PureStation.exe": - when: - os: windows store: steam @@ -323250,12 +324187,12 @@ Maitetsu: id: 880950 Maize: files: - /Maize/Saved/Config/WindowsNoEditor: + "/Maize/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /Maize/Saved/SaveGames: + "/Maize/Saved/SaveGames": tags: - save when: @@ -323265,7 +324202,7 @@ Maize: installDir: Maize: {} launch: - /Maize/Binaries/Win64/Maize.exe: + "/Maize/Binaries/Win64/Maize.exe": - when: - bit: 64 os: windows @@ -323276,15 +324213,15 @@ Majestic Nights: installDir: MajesticNights: {} launch: - /MajesticNights: + "/MajesticNights": - when: - os: linux store: steam - /MajesticNights.app: + "/MajesticNights.app": - when: - os: mac store: steam - /MajesticNights.exe: + "/MajesticNights.exe": - when: - os: windows store: steam @@ -323294,23 +324231,23 @@ Majestic Trials: installDir: Majestic Trials: {} launch: - /Majestic Trials.app/Contents/MacOS/Majestic Trials: + "/Majestic Trials.app/Contents/MacOS/Majestic Trials": - when: - os: mac store: steam - /MajesticTrials: + "/MajesticTrials": - when: - os: linux store: steam - /MajesticTrials.exe: + "/MajesticTrials.exe": - when: - os: windows store: steam steam: id: 638060 -'Majesty 2: The Fantasy Kingdom Sim': +"Majesty 2: The Fantasy Kingdom Sim": files: - /majesty2: + "/majesty2": tags: - config - save @@ -323324,27 +324261,27 @@ Majestic Trials: installDir: Majesty 2: {} launch: - /M2Editor.exe: + "/M2Editor.exe": - when: - store: steam - /Majesty2.exe: + "/Majesty2.exe": - when: - store: steam steam: id: 25980 -'Majesty: The Fantasy Kingdom Sim': +"Majesty: The Fantasy Kingdom Sim": files: - /.lgp/majx/majxprefs: + "/.lgp/majx/majxprefs": tags: - config when: - os: linux - /My Games/MajestyHD: + "/My Games/MajestyHD": tags: - save when: - os: windows - /My Games/MajestyHD/MajXPrefs: + "/My Games/MajestyHD/MajXPrefs": tags: - config when: @@ -323357,17 +324294,17 @@ Majestic Trials: installDir: Majesty Gold Edition: {} launch: - /MajX/MajX.exe: + "/MajX/MajX.exe": - when: - store: steam - /Majesty/Majesty.exe: + "/Majesty/Majesty.exe": - when: - store: steam steam: id: 25990 Majikoi! Love Me Seriously!: files: - /Minato Soft/Majikoi/Save/*.dat: + "/Minato Soft/Majikoi/Save/*.dat": tags: - save when: @@ -323375,7 +324312,7 @@ Majikoi! Love Me Seriously!: installDir: Majikoi! Love Me Seriously!: {} launch: - /Majikoi.exe: + "/Majikoi.exe": - when: - store: steam steam: @@ -323384,7 +324321,7 @@ Majin Woman: installDir: Majin Woman: {} launch: - /uki3.exe: + "/uki3.exe": - when: - os: windows store: steam @@ -323394,7 +324331,7 @@ Major League Baseball 2K10: installDir: MLB 2K10: {} launch: - /MLB2K10.exe: + "/MLB2K10.exe": - when: - store: steam steam: @@ -323403,7 +324340,7 @@ Major League Baseball 2K12: installDir: MLB 2K12: {} launch: - /MLB2K12.exe: + "/MLB2K12.exe": - when: - store: steam steam: @@ -323417,24 +324354,26 @@ Major Mayhem: installDir: MajorMayhem: {} launch: - /MajorMayhem.app/Contents/MacOS/MajorMayhem: + "/MajorMayhem.app/Contents/MacOS/MajorMayhem": - when: - os: mac store: steam - /MajorMayhem.exe: + "/MajorMayhem.exe": - when: - os: windows store: steam + - os: linux + store: steam steam: id: 264340 Major Stryker: files: - /CONFIG.MS: + "/CONFIG.MS": tags: - config when: - os: dos - /SR*.MS: + "/SR*.MS": tags: - save when: @@ -323442,45 +324381,45 @@ Major Stryker: installDir: Major Stryker: {} launch: - /Dosbox/dosbox: - - arguments: '-conf \"..\\STRYKER.conf\" -noconsole -c' + "/Dosbox/dosbox": + - arguments: "-conf \\\"..\\\\STRYKER.conf\\\" -noconsole -c" when: - os: linux store: steam - workingDir: /Dosbox - /Major Stryker.app: + workingDir: "/Dosbox" + "/Major Stryker.app": - when: - os: mac store: steam - /Major Stryker/dosbox/dosbox.exe: - - arguments: '-conf \"..\\STRYKER.conf\" -noconsole -c' + "/Major Stryker/dosbox/dosbox.exe": + - arguments: "-conf \\\"..\\\\STRYKER.conf\\\" -noconsole -c" when: - os: windows store: steam - workingDir: /Major Stryker/dosbox + workingDir: "/Major Stryker/dosbox" steam: id: 358300 -Major\Minor: +"Major\\Minor": installDir: MajorMinorDefinitive: {} launch: - /game.app: - - arguments: '--in-process-gpu' + "/game.app": + - arguments: "--in-process-gpu" when: - os: mac store: steam - /nw: - - arguments: '--in-process-gpu' + "/nw": + - arguments: "--in-process-gpu" when: - os: linux store: steam - /nw.exe: - - arguments: '--in-process-gpu' + "/nw.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam - /windsdemo/game.exe: - - arguments: '--in-process-gpu' + "/windsdemo/game.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam @@ -323488,7 +324427,7 @@ Major\Minor: id: 475490 Majotori: files: - /userdata//588730/remote/*.xml: + "/userdata//588730/remote/*.xml": tags: - save when: @@ -323496,20 +324435,20 @@ Majotori: installDir: Majotori: {} launch: - /Majotori.app: + "/Majotori.app": - when: - os: mac store: steam - /Majotori.exe: + "/Majotori.exe": - when: - os: windows store: steam - /Majotori.x86: + "/Majotori.x86": - when: - bit: 32 os: linux store: steam - /Majotori.x86_64: + "/Majotori.x86_64": - when: - bit: 64 os: linux @@ -323520,33 +324459,33 @@ Majula Frontier: installDir: MajulaFrontier: {} launch: - /MajulaFrontier.exe: + "/MajulaFrontier.exe": - when: - os: windows store: steam steam: id: 815630 -'Majula Frontier: The Offense': +"Majula Frontier: The Offense": installDir: Majula Frontier The Offense: {} launch: - /Majula Frontier The Offense.exe: + "/Majula Frontier The Offense.exe": - when: - bit: 64 os: windows store: steam steam: id: 1182070 -'Makai Kingdom: Reclaimed and Rebound': +"Makai Kingdom: Reclaimed and Rebound": installDir: Makai Kingdom Reclaimed and Rebound: {} launch: - /MakaiKingdom/MakaiKingdom.exe: + "/MakaiKingdom/MakaiKingdom.exe": - when: - bit: 64 os: windows store: steam - workingDir: /MakaiKingdom + workingDir: "/MakaiKingdom" steam: id: 1732060 Make A Jigsaw Puzzle: @@ -323558,17 +324497,17 @@ Make America Great Again: installDir: Make America Great Again: {} launch: - /PTPlayer.exe: + "/PTPlayer.exe": - when: - os: windows store: steam steam: id: 512430 -'Make America Great Again: The Trump Presidency': +"Make America Great Again: The Trump Presidency": installDir: Make America Great Again The Trump Presidency: {} launch: - /MAGA.exe: + "/MAGA.exe": - when: - os: windows store: steam @@ -323577,35 +324516,37 @@ Make America Great Again: Make Border Great Again!: steam: id: 731870 -'Make It Rain: The Love of Money': +"Make It Rain: The Love of Money": installDir: Make It Rain Love of Money: {} launch: - /LoveOfMoney.exe: + "/LoveOfMoney.exe": - when: - os: windows store: steam + - os: mac + store: steam steam: id: 615400 Make Route: installDir: Make Route: {} launch: - /MakeRoute.app/Contents/MacOS/Mac_Runner: + "/MakeRoute.app/Contents/MacOS/Mac_Runner": - when: - os: mac store: steam - /MakeRoute.exe: + "/MakeRoute.exe": - when: - os: windows store: steam steam: id: 845460 -'Make Route: Escape the police': +"Make Route: Escape the police": installDir: Make Route Escape the police: {} launch: - /MakeRoute_ETP.exe: + "/MakeRoute_ETP.exe": - when: - os: windows store: steam @@ -323615,15 +324556,15 @@ Make Sail: installDir: Make Sail: {} launch: - /Make Sail.app/Contents/MacOS/Make Sail: + "/Make Sail.app/Contents/MacOS/Make Sail": - when: - os: mac store: steam - /Make Sail.exe: + "/Make Sail.exe": - when: - os: windows store: steam - /Make Sail.x86: + "/Make Sail.x86": - when: - os: linux store: steam @@ -323633,11 +324574,11 @@ Make War: installDir: Make War: {} launch: - /MakeWar.app: + "/MakeWar.app": - when: - os: mac store: steam - /MakeWar.exe: + "/MakeWar.exe": - when: - os: windows store: steam @@ -323647,7 +324588,7 @@ Make Your Kingdom: installDir: Make Your Kingdom: {} launch: - /Make your Kingdom.exe: + "/Make your Kingdom.exe": - when: - bit: 64 os: windows @@ -323661,11 +324602,11 @@ Make a Killing: installDir: Make a Killing: {} launch: - /Make a Killing.app: + "/Make a Killing.app": - when: - os: mac store: steam - /Make a Killing.exe: + "/Make a Killing.exe": - when: - bit: 64 os: windows @@ -323676,15 +324617,15 @@ Make a Word!: installDir: Make a word!: {} launch: - /Linux/maw.x86: + "/Linux/maw.x86": - when: - os: linux store: steam - /MacOS/maw.app/Contents/MacOS/maw: + "/MacOS/maw.app/Contents/MacOS/maw": - when: - os: mac store: steam - /Windows/maw.exe: + "/Windows/maw.exe": - when: - os: windows store: steam @@ -323694,20 +324635,20 @@ Make it indie!: installDir: Make it indie!: {} launch: - /MII.app: + "/MII.app": - when: - os: mac store: steam - /MII.exe: + "/MII.exe": - when: - os: windows store: steam - /MII.x86: + "/MII.x86": - when: - bit: 32 os: linux store: steam - /MII.x86_64: + "/MII.x86_64": - when: - bit: 64 os: linux @@ -323718,7 +324659,7 @@ MakeThatMoney: installDir: makethatmoney: {} launch: - /MakeThatMoney.exe: + "/MakeThatMoney.exe": - when: - os: windows store: steam @@ -323733,33 +324674,33 @@ Makeover Desire - HENSHIN GANBO: installDir: Makeover Desire - HENSHIN GANBO: {} launch: - /henshin.exe: + "/henshin.exe": - when: - os: windows store: steam steam: id: 1053270 -'Making History II: The War of the World': +"Making History II: The War of the World": installDir: Making History II: {} launch: - /MH2.exe: + "/MH2.exe": - when: - os: windows store: steam - /Making History II.app: + "/Making History II.app": - when: - os: mac store: steam - /mh2: + "/mh2": - when: - os: linux store: steam steam: id: 46770 -'Making History: The Calm & the Storm': +"Making History: The Calm & the Storm": files: - /Muzzy Lane Software/Making History Gold: + "/Muzzy Lane Software/Making History Gold": tags: - save when: @@ -323767,47 +324708,47 @@ Makeover Desire - HENSHIN GANBO: installDir: Making History The Calm and The Storm: {} launch: - /bin/ed.exe: + "/bin/ed.exe": - when: - store: steam - workingDir: /bin - /bin/makehist.exe: + workingDir: "/bin" + "/bin/makehist.exe": - when: - store: steam - workingDir: /bin + workingDir: "/bin" steam: id: 6250 -'Making History: The Great War': +"Making History: The Great War": installDir: The Great War: {} launch: - /MHTGW.exe: + "/MHTGW.exe": - when: - os: windows store: steam - /Making History TGW.app: + "/Making History TGW.app": - when: - os: mac store: steam - /mhtgw: + "/mhtgw": - when: - os: linux store: steam steam: id: 279140 -'Making History: The Second World War': +"Making History: The Second World War": installDir: Making History SWW: {} launch: - /MHSWW.exe: + "/MHSWW.exe": - when: - os: windows store: steam - /Making History SWW.app: + "/Making History SWW.app": - when: - os: mac store: steam - /mhsww: + "/mhsww": - when: - os: linux store: steam @@ -323817,11 +324758,11 @@ Making it Home: installDir: Making it Home: {} launch: - /Making it Home.exe: + "/Making it Home.exe": - when: - os: windows store: steam - /makingithome.x86_64: + "/makingithome.x86_64": - when: - os: linux store: steam @@ -323829,12 +324770,12 @@ Making it Home: id: 1098220 Making*Lovers: files: - /*.gdb: + "/*.gdb": tags: - save when: - os: windows - /UserData: + "/UserData": tags: - save when: @@ -323842,7 +324783,7 @@ Making*Lovers: installDir: MakingLovers: {} launch: - /MakingLovers.exe: + "/MakingLovers.exe": - when: - os: windows store: steam @@ -323853,27 +324794,27 @@ Malatzshia: Malatzshia: {} steam: id: 670400 -'Malavision: The Origin': +"Malavision: The Origin": installDir: Malavision The Origin: {} launch: - /Malavision_Nepyru.exe: + "/Malavision_Nepyru.exe": - when: - bit: 64 os: windows store: steam steam: id: 511490 -'Malazard: The Master of Magic': +"Malazard: The Master of Magic": installDir: Malazard The Master of Magic: {} steam: id: 504420 -Malcom's Day: +"Malcom's Day": installDir: - Malcom's Day: {} + "Malcom's Day": {} launch: - /malcomsday.exe: + "/malcomsday.exe": - when: - os: windows store: steam @@ -323881,7 +324822,7 @@ Malcom's Day: id: 1065560 Maldita Castilla: files: - /Maldita_Castilla/config.ini: + "/Maldita_Castilla/config.ini": tags: - config when: @@ -323890,16 +324831,16 @@ Maldrin Journey: installDir: Maldrin Journey: {} launch: - /MaldrinJourney.exe: + "/MaldrinJourney.exe": - when: - os: windows store: steam - /MaldrinJourney.x86: + "/MaldrinJourney.x86": - when: - bit: 32 os: linux store: steam - /MaldrinJourney.x86_64: + "/MaldrinJourney.x86_64": - when: - bit: 64 os: linux @@ -323910,11 +324851,11 @@ Malebolgia: installDir: Malebolgia: {} launch: - /palace.app: + "/palace.app": - when: - os: mac store: steam - /palace.exe: + "/palace.exe": - when: - os: windows store: steam @@ -323928,7 +324869,7 @@ Malediction: installDir: Malediction: {} launch: - /Malediction.exe: + "/Malediction.exe": - when: - bit: 64 os: windows @@ -323939,16 +324880,16 @@ Malevolence: installDir: Malevolence: {} launch: - /Malevolence.exe: + "/Malevolence.exe": - when: - store: steam steam: id: 1031320 -'Malevolence: The Sword of Ahkranox': +"Malevolence: The Sword of Ahkranox": installDir: Malevolence - The Sword of Ahkranox: {} launch: - /Malevolence Launcher.exe: + "/Malevolence Launcher.exe": - when: - os: windows store: steam @@ -323958,7 +324899,7 @@ Malfortune: installDir: Malfortune: {} launch: - /Malfortune.exe: + "/Malfortune.exe": - when: - os: windows store: steam @@ -323968,7 +324909,7 @@ Malfunction: installDir: Malfunction: {} launch: - /Malfunction.exe: + "/Malfunction.exe": - when: - os: windows store: steam @@ -323983,21 +324924,21 @@ Malkia: installDir: Malkia: {} launch: - /malkia.exe: + "/malkia.exe": - when: - os: windows store: steam steam: id: 492560 -'Malkyrs: Arenas of Eternity': +"Malkyrs: Arenas of Eternity": installDir: Malkyrs: {} launch: - /AoE.app: + "/AoE.app": - when: - os: mac store: steam - /Malkyrs.exe: + "/Malkyrs.exe": - when: - os: windows store: steam @@ -324007,7 +324948,7 @@ Mall Craze: installDir: Mall Craze: {} launch: - /MallCraze.exe: + "/MallCraze.exe": - when: - os: windows store: steam @@ -324017,7 +324958,7 @@ Mall Empire: installDir: Mall Empire: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -324027,7 +324968,7 @@ Mall Mayhem: installDir: Mall Mayhem: {} launch: - /Mall Mayhem.exe: + "/Mall Mayhem.exe": - when: - os: windows store: steam @@ -324040,7 +324981,7 @@ Mall Town: id: 875160 Mall Tycoon: files: - /options.ini: + "/options.ini": tags: - config when: @@ -324049,12 +324990,12 @@ Mallow Drops: installDir: Mallow Drops: {} launch: - /MallowDropSteam.app: + "/MallowDropSteam.app": - when: - bit: 64 os: mac store: steam - /MallowDropSteam.exe: + "/MallowDropSteam.exe": - when: - os: windows store: steam @@ -324062,7 +325003,7 @@ Mallow Drops: id: 381340 Malus Code: files: - /M2/MC/savedata: + "/M2/MC/savedata": tags: - save when: @@ -324070,16 +325011,16 @@ Malus Code: installDir: Malus Code: {} launch: - /MALUS.exe: + "/MALUS.exe": - when: - store: steam steam: id: 443330 -Malzbie's Pinball Collection: +"Malzbie's Pinball Collection": installDir: - Malzbie's Pinball Collection: {} + "Malzbie's Pinball Collection": {} launch: - /PinballCollection.exe: + "/PinballCollection.exe": - when: - os: windows store: steam @@ -324089,7 +325030,7 @@ Mama Farm: installDir: Mama Farm: {} launch: - /MamaFarm.exe: + "/MamaFarm.exe": - when: - os: windows store: steam @@ -324102,42 +325043,48 @@ Man Alive: installDir: Man Alive Game: {} launch: - /ManAlive.dmg: + "/ManAlive.dmg": - when: + - bit: 32 + os: mac + store: steam - bit: 64 os: mac store: steam - /ManAlive.exe: + "/ManAlive.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam steam: id: 339560 -Man In Women's Clothes: +"Man In Women's Clothes": installDir: 0Cube: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: id: 1041760 -'Man O'' War: Corsair': +"Man O' War: Corsair": gog: id: 1448355943 installDir: - Man O' War Corsair: {} + "Man O' War Corsair": {} launch: - /ManOWarCorsair: + "/ManOWarCorsair": - when: - os: linux store: steam - /ManOWarCorsair.app: + "/ManOWarCorsair.app": - when: - os: mac store: steam - /ManOWarCorsair.exe: + "/ManOWarCorsair.exe": - when: - os: windows store: steam @@ -324147,21 +325094,21 @@ Man Wreck: installDir: Man Wreck: {} launch: - /TownF6.app: + "/TownF6.app": - when: - os: mac store: steam - /TownF6.exe: + "/TownF6.exe": - when: - os: windows store: steam steam: id: 1171640 -'Man in a Maze: Deathmatch': +"Man in a Maze: Deathmatch": installDir: Man in a Maze Deathmatch: {} launch: - /ManinaMaze.exe: + "/ManinaMaze.exe": - when: - os: windows store: steam @@ -324171,15 +325118,15 @@ Man of Honor: installDir: Man of Honor: {} launch: - /Man of Honor (Lin).x86_64: + "/Man of Honor (Lin).x86_64": - when: - os: linux store: steam - /Man of Honor (Mac).app/Contents/MacOS/Man of Honor (Mac): + "/Man of Honor (Mac).app/Contents/MacOS/Man of Honor (Mac)": - when: - os: mac store: steam - /Man of Honor (Win).exe: + "/Man of Honor (Win).exe": - when: - os: windows store: steam @@ -324187,23 +325134,23 @@ Man of Honor: id: 756740 Man of Medan: files: - /ManOfMedan/Saved/Config/WindowsNoEditor: + "/ManOfMedan/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /ManOfMedan/Saved/SaveGames: + "/ManOfMedan/Saved/SaveGames": tags: - save when: - os: windows - /Packages/NAMCOBANDAIGamesInc.ManofMedanGamePass_gdy2aq6ez762w/LocalCache/Local/ManOfMedan/Saved/Config/WinGDK: + "/Packages/NAMCOBANDAIGamesInc.ManofMedanGamePass_gdy2aq6ez762w/LocalCache/Local/ManOfMedan/Saved/Config/WinGDK": tags: - config when: - os: windows store: microsoft - /Packages/NAMCOBANDAIGamesInc.ManofMedanGamePass_gdy2aq6ez762w/SystemAppData/wgs: + "/Packages/NAMCOBANDAIGamesInc.ManofMedanGamePass_gdy2aq6ez762w/SystemAppData/wgs": tags: - save when: @@ -324215,7 +325162,7 @@ Man of Medan: installDir: The Dark Pictures Anthology - Man of Medan: {} launch: - /ManOfMedan.exe: + "/ManOfMedan.exe": - when: - os: windows store: steam @@ -324225,11 +325172,11 @@ Man of the House: installDir: Man of the House: {} launch: - /Contents/MacOS/Man of the house.app: + "/Contents/MacOS/Man of the house.app": - when: - os: mac store: steam - /Man of the house.exe: + "/Man of the house.exe": - when: - os: windows store: steam @@ -324239,7 +325186,7 @@ ManGuin - Penguin Apocalypse: installDir: ManGuin Penguin Apocalypse: {} launch: - /ManGuin.exe: + "/ManGuin.exe": - when: - os: windows store: steam @@ -324251,15 +325198,15 @@ Mana Spark: installDir: Mana Spark: {} launch: - /ManaSpark.app/Contents/MacOS/ManaSpark: + "/ManaSpark.app/Contents/MacOS/ManaSpark": - when: - os: mac store: steam - /ManaSpark.exe: + "/ManaSpark.exe": - when: - os: windows store: steam - /ManaSpark.x86_64: + "/ManaSpark.x86_64": - when: - os: linux store: steam @@ -324267,7 +325214,7 @@ Mana Spark: id: 630720 ManaCollect: files: - /save: + "/save": tags: - config - save @@ -324276,7 +325223,7 @@ ManaCollect: installDir: ManaCollect: {} launch: - /ManaCollect.exe: + "/ManaCollect.exe": - when: - store: steam steam: @@ -324285,17 +325232,17 @@ ManaRocks: installDir: ManaRocks: {} launch: - /ManaRocks.app: + "/ManaRocks.app": - when: - os: mac store: steam - /ManaRocks.exe: + "/ManaRocks.exe": - when: - os: windows store: steam steam: id: 762560 -'Manastorm: Champions of G''nar': +"Manastorm: Champions of G'nar": installDir: Manastorm: {} steam: @@ -324304,15 +325251,15 @@ Manaya: installDir: Manaya: {} launch: - /Manaya.app: + "/Manaya.app": - when: - os: mac store: steam - /Manaya.exe: + "/Manaya.exe": - when: - os: windows store: steam - /Manaya.x86: + "/Manaya.x86": - when: - os: linux store: steam @@ -324320,7 +325267,7 @@ Manaya: id: 810000 Mandagon: files: - /AppData/LocalLow/Blind Sky Studios LTD/Mandagon: + "/AppData/LocalLow/Blind Sky Studios LTD/Mandagon": tags: - save when: @@ -324328,11 +325275,11 @@ Mandagon: installDir: Mandagon: {} launch: - /Mandagon.app: + "/Mandagon.app": - when: - os: mac store: steam - /Mandagon.exe: + "/Mandagon.exe": - when: - os: windows store: steam @@ -324342,16 +325289,16 @@ Mandagon: - config steam: id: 461560 -Mandy's Room: +"Mandy's Room": installDir: MandysRoom: {} launch: - /Contents/MacOS/MandysRoomMac: + "/Contents/MacOS/MandysRoomMac": - when: - os: mac store: steam - /MandysRoom.exe: - - arguments: '-show-screen-selector' + "/MandysRoom.exe": + - arguments: "-show-screen-selector" when: - os: windows store: steam @@ -324362,16 +325309,16 @@ Mandy's Room: - save steam: id: 917740 -'Mandy''s Room 2: Naughty By Nature': +"Mandy's Room 2: Naughty By Nature": installDir: - Mandy's Room 2: {} + "Mandy's Room 2": {} launch: - /Contents/MacOS/MandysRoom2: + "/Contents/MacOS/MandysRoom2": - when: - os: mac store: steam - /MandysRoom2.exe: - - arguments: '-show-screen-selector -vrmode None' + "/MandysRoom2.exe": + - arguments: "-show-screen-selector -vrmode None" when: - os: windows store: steam @@ -324384,17 +325331,17 @@ Mandy's Room: id: 1122240 Maneater: files: - /Maneater/Saved/Config/WindowsNoEditor: + "/Maneater/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /Maneater/Saved/SaveGames: + "/Maneater/Saved/SaveGames": tags: - save when: - os: windows - /Packages/TripwireInteractiveLLC.Maneater_237dqjpew1r3m/SystemAppData: + "/Packages/TripwireInteractiveLLC.Maneater_237dqjpew1r3m/SystemAppData": tags: - save when: @@ -324403,18 +325350,18 @@ Maneater: installDir: Maneater: {} launch: - /Maneater.exe: + "/Maneater.exe": - when: - bit: 64 os: windows store: steam steam: id: 629820 -Maneki's Curse: +"Maneki's Curse": installDir: - Maneki's Curse: {} + "Maneki's Curse": {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -324424,20 +325371,20 @@ Mango Cart: installDir: Mango Cart: {} launch: - /Mango Cart.app: + "/Mango Cart.app": - when: - os: mac store: steam - /Mango Cart.exe: + "/Mango Cart.exe": - when: - os: windows store: steam - /Mango Cart.x86: + "/Mango Cart.x86": - when: - bit: 32 os: linux store: steam - /Mango Cart.x86_64: + "/Mango Cart.x86_64": - when: - bit: 64 os: linux @@ -324446,12 +325393,12 @@ Mango Cart: id: 1031660 Manhunt: files: - /Manhunt User Files/SaveGames: + "/Manhunt User Files/SaveGames": tags: - save when: - os: windows - /Manhunt User Files/SaveGames/Settings.dat: + "/Manhunt User Files/SaveGames/Settings.dat": tags: - config when: @@ -324459,26 +325406,26 @@ Manhunt: installDir: Manhunt: {} launch: - /manhunt.exe: + "/manhunt.exe": - when: - store: steam steam: id: 12130 Manhunt 2: files: - /Rockstar Games/Manhunt 2/savegames: + "/Rockstar Games/Manhunt 2/savegames": tags: - save when: - os: windows - /Rockstar Games/Manhunt 2/settings: + "/Rockstar Games/Manhunt 2/settings": tags: - config when: - os: windows Manhunter: files: - /save: + "/save": tags: - save when: @@ -324486,21 +325433,21 @@ Manhunter: installDir: Manhunter: {} launch: - /MH.exe: + "/MH.exe": - when: - store: steam steam: id: 302250 -'Manhunter 2: San Francisco': +"Manhunter 2: San Francisco": files: - /MH2SG.*: + "/MH2SG.*": tags: - save when: - os: dos -'Manhunter: New York': +"Manhunter: New York": files: - /sg.*: + "/sg.*": tags: - save when: @@ -324510,12 +325457,12 @@ Maniac GO: id: 654620 Maniac Mansion: files: - /PREFS: + "/PREFS": tags: - config when: - os: dos - /SAVEGAME.*: + "/SAVEGAME.*": tags: - save when: @@ -324525,50 +325472,50 @@ Maniac Mansion: installDir: Maniac Mansion: {} launch: - /ScummVM/scummvm: - - arguments: '-c maniac-v1.ini maniac-v1' + "/ScummVM/scummvm": + - arguments: "-c maniac-v1.ini maniac-v1" when: - os: mac store: steam - workingDir: /ScummVM - - arguments: '-c maniac-v2.ini maniac-v2' + workingDir: "/ScummVM" + - arguments: "-c maniac-v2.ini maniac-v2" when: - os: mac store: steam - workingDir: /ScummVM - /ScummVM/scummvm.exe: - - arguments: '-c maniac-v1.ini maniac-v1' + workingDir: "/ScummVM" + "/ScummVM/scummvm.exe": + - arguments: "-c maniac-v1.ini maniac-v1" when: - os: windows store: steam - workingDir: /ScummVM - - arguments: '-c maniac-v2.ini maniac-v2' + workingDir: "/ScummVM" + - arguments: "-c maniac-v2.ini maniac-v2" when: - os: windows store: steam - workingDir: /Scummvm + workingDir: "/Scummvm" steam: id: 529890 Maniac Mansion Deluxe: files: - /acsetup.cfg: + "/acsetup.cfg": tags: - config when: - os: windows - /agssave.*: + "/agssave.*": tags: - save when: - os: windows Maniac Mansion Mania: files: - /acsetup.cfg: + "/acsetup.cfg": tags: - config when: - os: windows - /agssave.*: + "/agssave.*": tags: - save when: @@ -324577,7 +325524,7 @@ Manic Miners: installDir: ManicMiners: {} launch: - /ManicMiners.exe: + "/ManicMiners.exe": - when: - os: windows store: steam @@ -324590,12 +325537,12 @@ Manifest 99: id: 664450 Manifold Garden: files: - /AppData/LocalLow/William Chyr Studio/Manifold Garden/Saves: + "/AppData/LocalLow/William Chyr Studio/Manifold Garden/Saves": tags: - save when: - os: windows - /AppData/LocalLow/William Chyr Studio/Manifold Garden/Settings.txt: + "/AppData/LocalLow/William Chyr Studio/Manifold Garden/Settings.txt": tags: - config when: @@ -324603,7 +325550,7 @@ Manifold Garden: installDir: Manifold Garden: {} launch: - /ManifoldGarden.exe: + "/ManifoldGarden.exe": - when: - bit: 64 os: windows @@ -324614,15 +325561,15 @@ Manipulated: installDir: Manipulated: {} launch: - /Manipulated.app/Contents/MacOS/Manipulated: + "/Manipulated.app/Contents/MacOS/Manipulated": - when: - os: mac store: steam - /Manipulated.exe: + "/Manipulated.exe": - when: - os: windows store: steam - /Manipulated.x86: + "/Manipulated.x86": - when: - os: linux store: steam @@ -324641,11 +325588,11 @@ Maniyugi Tokoyo: installDir: Maniyugi: {} launch: - /mac/maniyugi_tokoyo.app: + "/mac/maniyugi_tokoyo.app": - when: - os: mac store: steam - /win/maniyugi_tokoyo.exe: + "/win/maniyugi_tokoyo.exe": - when: - os: windows store: steam @@ -324655,7 +325602,7 @@ Mankind Defender: installDir: Mankind Defender: {} launch: - /MankindDefender.exe: + "/MankindDefender.exe": - when: - bit: 64 os: windows @@ -324666,15 +325613,15 @@ Manna for our Malices: installDir: Manna for our Malices: {} launch: - /MannaforourMalices.app: + "/MannaforourMalices.app": - when: - os: mac store: steam - /MannaforourMalices.exe: + "/MannaforourMalices.exe": - when: - os: windows store: steam - /MannaforourMalices.sh: + "/MannaforourMalices.sh": - when: - os: linux store: steam @@ -324689,17 +325636,17 @@ Manor of the Damned!: installDir: Rijn in Manor of the Damned: {} launch: - /Rijn.exe: + "/Rijn.exe": - when: - os: windows store: steam steam: id: 532670 -'Manos: The Hands of Fate': +"Manos: The Hands of Fate": installDir: - MANOS Director's Cut: {} + "MANOS Director's Cut": {} launch: - /MANOS-PC.exe: + "/MANOS-PC.exe": - when: - os: windows store: steam @@ -324710,7 +325657,7 @@ Mansion of Horrors: id: 861070 Mansions of Madness: files: - /AppData/LocalLow/Fantasy Flight Games/Mansions of Madness Second Edition/SavedGame: + "/AppData/LocalLow/Fantasy Flight Games/Mansions of Madness Second Edition/SavedGame": tags: - save when: @@ -324718,11 +325665,11 @@ Mansions of Madness: installDir: Mansions of Madness: {} launch: - /Mansions of Madness.app: + "/Mansions of Madness.app": - when: - os: mac store: steam - /Mansions of Madness.exe: + "/Mansions of Madness.exe": - when: - os: windows store: steam @@ -324734,7 +325681,7 @@ Mansions of Madness: id: 478980 Mantis Burn Racing: files: - /VFRacer: + "/VFRacer": tags: - save when: @@ -324742,34 +325689,34 @@ Mantis Burn Racing: installDir: Mantis Burn Racing: {} launch: - /VFRacer.exe: + "/VFRacer.exe": - when: - store: steam steam: id: 446100 Manual Samuel: files: - /AppData/LocalLow/Perfectly Paranormal/Manual Samuel//*.save: + "/AppData/LocalLow/Perfectly Paranormal/Manual Samuel//*.save": tags: - save when: - os: windows - /Library/Application Support/unity.Perfectly Paranormal.Manual Samuel/*.save: + "/Library/Application Support/unity.Perfectly Paranormal.Manual Samuel/*.save": tags: - save when: - os: mac - /Steam//504130: + "/Steam//504130": tags: - config when: - os: windows - /unity3d/Perfectly Paranormal/Manual Samuel//*.save: + "/unity3d/Perfectly Paranormal/Manual Samuel//*.save": tags: - save when: - os: linux - /unity3d/Perfectly Paranormal/Manual Samuel/prefs: + "/unity3d/Perfectly Paranormal/Manual Samuel/prefs": tags: - config when: @@ -324777,20 +325724,20 @@ Manual Samuel: installDir: Manual Samuel: {} launch: - /Manual Samuel.app/Contents/MacOS/Manual Samuel: + "/Manual Samuel.app/Contents/MacOS/Manual Samuel": - when: - os: mac store: steam - /Manual Samuel.exe: + "/Manual Samuel.exe": - when: - os: windows store: steam - /Manual Samuel.x86: + "/Manual Samuel.x86": - when: - bit: 32 os: linux store: steam - /Manual Samuel.x86_64: + "/Manual Samuel.x86_64": - when: - bit: 64 os: linux @@ -324805,11 +325752,11 @@ Many Faces: installDir: Many Faces: {} launch: - /Many-Faces.exe: + "/Many-Faces.exe": - when: - os: windows store: steam - /Many_Faces: + "/Many_Faces": - when: - os: linux store: steam @@ -324822,7 +325769,7 @@ Manyland: installDir: Manyland: {} launch: - /manyland.exe: + "/manyland.exe": - arguments: steamlaunch when: - os: windows @@ -324833,7 +325780,7 @@ Map of Materials: installDir: Map Of Materials: {} launch: - /Map Of Materials.exe: + "/Map Of Materials.exe": - when: - os: windows store: steam @@ -324843,7 +325790,7 @@ Mapas do Horizonte - Um jogo para conhecer BH: installDir: Mapas do Horizonte: {} launch: - /MapasDoHorizonte.exe: + "/MapasDoHorizonte.exe": - when: - os: windows store: steam @@ -324853,8 +325800,8 @@ MapleStory: installDir: MapleStory: {} launch: - /nxsteam/nxsteam.exe: - - arguments: 'MapleStory.exe SteamStart {passport} {country_code} {cloud_platform} --nx:title=Maplestory' + "/nxsteam/nxsteam.exe": + - arguments: "MapleStory.exe SteamStart {passport} {country_code} {cloud_platform} --nx:title=Maplestory" when: - os: windows store: steam @@ -324864,11 +325811,8 @@ MapleStory 2: installDir: MapleStory 2: {} launch: - /nxsteam/nxsteam.exe: - - arguments: >- - \"x64/maplestory2.exe 30000 --nxapp=nxsteam --ticket={gameAuthTicket} --tracking_uid={tracking_uid} - --tracking_sessionid={tracking_sessionid} --tracking_serviceid={tracking_serviceid}\" --nx:title=\"MapleStory - 2\" + "/nxsteam/nxsteam.exe": + - arguments: "\\\"x64/maplestory2.exe 30000 --nxapp=nxsteam --ticket={gameAuthTicket} --tracking_uid={tracking_uid} --tracking_sessionid={tracking_sessionid} --tracking_serviceid={tracking_serviceid}\\\" --nx:title=\\\"MapleStory 2\\\"" when: - bit: 64 store: steam @@ -324876,7 +325820,7 @@ MapleStory 2: id: 560380 Maquette: files: - /AppData/LocalLow/Graceful Decay/Maquette: + "/AppData/LocalLow/Graceful Decay/Maquette": tags: - save when: @@ -324884,7 +325828,7 @@ Maquette: installDir: Maquette: {} launch: - /Maquette.exe: + "/Maquette.exe": - when: - os: windows store: steam @@ -324894,24 +325838,24 @@ Maquette: - config steam: id: 762840 -'Mar War: The Evil Awakens': +"Mar War: The Evil Awakens": installDir: MAR WAR The Evil Awakens: {} launch: - /MARWAR_THEEVILAWAKENS.exe: + "/MARWAR_THEEVILAWAKENS.exe": - when: - os: windows store: steam steam: id: 788960 -'MarZ: Tactical Base Defense': +"MarZ: Tactical Base Defense": files: - /AppData/LocalLow/doorfortyfour/MarZRising/Save: + "/AppData/LocalLow/doorfortyfour/MarZRising/Save": tags: - save when: - os: windows - /AppData/LocalLow/doorfortyfour/MarZRising/settings.json: + "/AppData/LocalLow/doorfortyfour/MarZRising/settings.json": tags: - config when: @@ -324921,7 +325865,7 @@ Maquette: installDir: MarZ Rising: {} launch: - /MarZRising.exe: + "/MarZRising.exe": - when: - os: windows store: steam @@ -324931,12 +325875,12 @@ Maquette: - config steam: id: 682530 -'Maraiyum: Rise of the Setting Sun': +"Maraiyum: Rise of the Setting Sun": installDir: Maraiyum Rise of the Setting Sun: {} launch: - /RiseOfTheSettingSun.exe: - - arguments: '-windowed' + "/RiseOfTheSettingSun.exe": + - arguments: "-windowed" when: - os: windows store: steam @@ -324944,66 +325888,66 @@ Maquette: id: 503290 Marathon: files: - /Documents/Aleph One/Quick Saves: + "/Documents/Aleph One/Quick Saves": tags: - save when: - os: windows - /Documents/Aleph One/Recordings: + "/Documents/Aleph One/Recordings": tags: - save when: - os: windows - /Documents/Aleph One/Saved Games: + "/Documents/Aleph One/Saved Games": tags: - save when: - os: windows - /Aleph One/Marathon Preferences: + "/Aleph One/Marathon Preferences": tags: - config when: - os: windows -'Marathon 2: Durandal': +"Marathon 2: Durandal": files: - /Documents/Aleph One/Quick Saves: + "/Documents/Aleph One/Quick Saves": tags: - save when: - os: windows - /Documents/Aleph One/Recordings: + "/Documents/Aleph One/Recordings": tags: - save when: - os: windows - /Documents/Aleph One/Saved Games: + "/Documents/Aleph One/Saved Games": tags: - save when: - os: windows - /Aleph One/Marathon 2 Preferences: + "/Aleph One/Marathon 2 Preferences": tags: - config when: - os: windows Marathon Infinity: files: - /Documents/Aleph One/Quick Saves: + "/Documents/Aleph One/Quick Saves": tags: - save when: - os: windows - /Documents/Aleph One/Recordings: + "/Documents/Aleph One/Recordings": tags: - save when: - os: windows - /Documents/Aleph One/Saved Games: + "/Documents/Aleph One/Saved Games": tags: - save when: - os: windows - /Aleph One/Marathon Infinity Preferences: + "/Aleph One/Marathon Infinity Preferences": tags: - config when: @@ -325012,7 +325956,7 @@ Marauder: installDir: Man Of Prey: {} launch: - /E8.exe: + "/E8.exe": - when: - bit: 32 os: windows @@ -325023,36 +325967,36 @@ Marble Age: installDir: Pre-Civilization Marble Age: {} launch: - /MarbleAge.app: + "/MarbleAge.app": - when: - os: mac store: steam - /PreCivSteam.exe: + "/PreCivSteam.exe": - when: - os: windows store: steam steam: id: 346810 -'Marble Age: Remastered': +"Marble Age: Remastered": gog: id: 1245228001 installDir: Marble Age Remastered: {} launch: - /Marble Age Remastered: + "/Marble Age Remastered": - when: - bit: 64 os: linux store: steam - /Marble Age Remastered.app: + "/Marble Age Remastered.app": - when: - os: mac store: steam - /Marble Age Remastered.exe: + "/Marble Age Remastered.exe": - when: - os: windows store: steam - /Marble Age Remastered.x86: + "/Marble Age Remastered.x86": - when: - bit: 32 os: linux @@ -325061,12 +326005,12 @@ Marble Age: id: 383740 Marble Blast Gold: files: - /marble/client: + "/marble/client": tags: - config when: - os: windows - /marble/client/prefs.cs: + "/marble/client/prefs.cs": tags: - save when: @@ -325075,7 +326019,7 @@ Marble Combat: installDir: Marble Combat: {} launch: - /P8Ball.exe: + "/P8Ball.exe": - when: - os: windows store: steam @@ -325090,17 +326034,20 @@ Marble Duel: installDir: Marble Duel: {} launch: - /MarbleDuel.exe: + "/MarbleDuel.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam - /MarbleDuel.x86: + "/MarbleDuel.x86": - when: - bit: 32 os: linux store: steam - /MarbleDuel.x86_64: + "/MarbleDuel.x86_64": - when: - bit: 64 os: linux @@ -325114,12 +326061,12 @@ Marble Duel: id: 338120 Marble It Up!: files: - /AppData/LocalLow/Bad Habit/MarbleItUp/**: + "/AppData/LocalLow/Bad Habit/MarbleItUp/**": tags: - save when: - os: windows - /AppData/LocalLow/Bad Habit/MarbleItUp/Parse.settings: + "/AppData/LocalLow/Bad Habit/MarbleItUp/Parse.settings": tags: - config when: @@ -325127,15 +326074,15 @@ Marble It Up!: installDir: Marble It Up!: {} launch: - /Marble It Up.app: + "/Marble It Up.app": - when: - os: mac store: steam - /Marble It Up.exe: + "/Marble It Up.exe": - when: - os: windows store: steam - /MarbleItUp.x86_64: + "/MarbleItUp.x86_64": - when: - os: linux store: steam @@ -325149,7 +326096,7 @@ Marble Land: installDir: Marble Land: {} launch: - /MarbleLand.exe: + "/MarbleLand.exe": - when: - bit: 64 os: windows @@ -325158,7 +326105,7 @@ Marble Land: id: 503280 Marble Maid: files: - /My Games/ShadyCorner/savedata: + "/My Games/ShadyCorner/savedata": tags: - save when: @@ -325168,35 +326115,35 @@ Marble Maid: installDir: Marble Maid: {} launch: - /MarbleMaid.exe: + "/MarbleMaid.exe": - when: - os: windows store: steam steam: id: 1429780 -'Marble Masters: The Pit': +"Marble Masters: The Pit": installDir: MarbleMasters_ThePit: {} launch: - /MarbleMasters_ThePit.app/Contents/MacOS/MarbleMasters_ThePit: + "/MarbleMasters_ThePit.app/Contents/MacOS/MarbleMasters_ThePit": - when: - os: mac store: steam - /MarbleMasters_ThePit.exe: + "/MarbleMasters_ThePit.exe": - when: - os: windows store: steam - /MarbleMasters_ThePit.x86: + "/MarbleMasters_ThePit.x86": - when: - os: linux store: steam steam: id: 665630 -'Marble Mayhem: Fragile Ball': +"Marble Mayhem: Fragile Ball": installDir: Fragile Ball: {} launch: - /EQLauncher.exe: + "/EQLauncher.exe": - when: - os: windows store: steam @@ -325206,21 +326153,21 @@ Marble Mountain: installDir: Marble Mountain: {} launch: - /marble.app: + "/marble.app": - when: - os: mac store: steam - /marble.exe: - - arguments: '-vrmode none -NoSteamVR' + "/marble.exe": + - arguments: "-vrmode none -NoSteamVR" when: - os: windows store: steam - /marble.x86: + "/marble.x86": - when: - bit: 32 os: linux store: steam - /marble.x86_64: + "/marble.x86_64": - when: - bit: 64 os: linux @@ -325231,15 +326178,15 @@ Marble Muse: installDir: Marble Muse: {} launch: - /Marble Muse.app: + "/Marble Muse.app": - when: - os: mac store: steam - /Marble Muse.exe: + "/Marble Muse.exe": - when: - os: windows store: steam - /Marble Muse.x86: + "/Marble Muse.x86": - when: - os: linux store: steam @@ -325249,7 +326196,7 @@ Marble Odyssey: installDir: Marble_Odyssey: {} launch: - /Marble_Odyssey.exe: + "/Marble_Odyssey.exe": - when: - bit: 64 os: windows @@ -325261,12 +326208,12 @@ Marble Partner: id: 1097360 Marble Race: files: - /AppData/LocalLow/Elastic Sea/Marble Race: + "/AppData/LocalLow/Elastic Sea/Marble Race": tags: - save when: - os: windows - /AppData/LocalLow/Elastic Sea/Marble Race/Settings: + "/AppData/LocalLow/Elastic Sea/Marble Race/Settings": tags: - config when: @@ -325274,7 +326221,7 @@ Marble Race: installDir: Marble Race: {} launch: - /Marble Race.exe: + "/Marble Race.exe": - when: - os: windows store: steam @@ -325284,11 +326231,11 @@ Marble Run: installDir: Marble Run: {} launch: - /Marble Run.exe: + "/Marble Run.exe": - when: - os: windows store: steam - /marble run.app: + "/marble run.app": - when: - os: mac store: steam @@ -325298,11 +326245,11 @@ Marble Run 2D: installDir: Marble Run 2D: {} launch: - /MR2D.APP: + "/MR2D.APP": - when: - os: mac store: steam - /MR2D.exe: + "/MR2D.exe": - when: - os: windows store: steam @@ -325310,12 +326257,12 @@ Marble Run 2D: id: 807140 Marble Skies: files: - /MarbleSkies/Saved/Config: + "/MarbleSkies/Saved/Config": tags: - config when: - os: windows - /MarbleSkies/Saved/SaveGames: + "/MarbleSkies/Saved/SaveGames": tags: - save when: @@ -325323,13 +326270,13 @@ Marble Skies: installDir: Marble Skies: {} launch: - /MarbleSkies.exe: - - arguments: '-notexturestreaming' + "/MarbleSkies.exe": + - arguments: "-notexturestreaming" when: - os: windows store: steam - /MarbleSkies.sh: - - arguments: '-notexturestreaming' + "/MarbleSkies.sh": + - arguments: "-notexturestreaming" when: - os: linux store: steam @@ -325339,11 +326286,11 @@ Marble Trap: installDir: Marble Trap: {} launch: - /Marble Trap.exe: + "/Marble Trap.exe": - when: - os: windows store: steam - /Marble Trap.x86_64: + "/Marble Trap.x86_64": - when: - os: linux store: steam @@ -325353,27 +326300,27 @@ Marble Void: installDir: MarbleVoid: {} launch: - /MarbleVoid.exe: + "/MarbleVoid.exe": - when: - os: windows store: steam - /MarbleVoid.x86: + "/MarbleVoid.x86": - when: - bit: 32 os: linux store: steam - /MarbleVoid.x86_64: + "/MarbleVoid.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 453650 -'Marbledrome: Crazy Stunt Balls': +"Marbledrome: Crazy Stunt Balls": installDir: Marbledrome Crazy Balls: {} launch: - /Marbledrome.exe: + "/Marbledrome.exe": - when: - os: windows store: steam @@ -325383,7 +326330,7 @@ Marbles on Stream: installDir: Marbles on Stream: {} launch: - /MarblesOnStream.exe: + "/MarblesOnStream.exe": - when: - bit: 64 os: windows @@ -325394,7 +326341,7 @@ Marblesared: installDir: Marblesared: {} launch: - /marblesared.exe: + "/marblesared.exe": - when: - store: steam steam: @@ -325403,7 +326350,7 @@ Marblize: installDir: Marblize: {} launch: - /MarbleGame.exe: + "/MarbleGame.exe": - when: - bit: 64 os: windows @@ -325414,28 +326361,28 @@ Marburgh: installDir: Marburgh: {} launch: - /Marburgh.exe: + "/Marburgh.exe": - when: - os: windows store: steam steam: id: 1139660 -'Marc Eckō''s Getting Up: Contents Under Pressure': +"Marc Eckō's Getting Up: Contents Under Pressure": files: - /engine/*.cfg: + "/engine/*.cfg": tags: - config when: - os: windows - /Documents/getting up - contents under pressure: + "/Documents/getting up - contents under pressure": tags: - save when: - os: windows installDir: - Marc Ecko's Getting Up 2: {} + "Marc Ecko's Getting Up 2": {} launch: - /_Bin/launcher.exe: + "/_Bin/launcher.exe": - when: - os: windows store: steam @@ -325445,7 +326392,7 @@ March Forward: installDir: March Forward: {} launch: - /March Forward.exe: + "/March Forward.exe": - when: - store: steam steam: @@ -325454,52 +326401,52 @@ March of Empires: installDir: March of Empires: {} launch: - /MOE.exe: + "/MOE.exe": - when: - store: steam steam: id: 702320 -'March of Industry: Very Capitalist Factory Simulator Entertainments': +"March of Industry: Very Capitalist Factory Simulator Entertainments": installDir: March of Industry: {} launch: - /AESU.exe: + "/AESU.exe": - when: - os: windows store: steam - /MarchOfIndustry.app/Contents/MacOS/AESU.bin: + "/MarchOfIndustry.app/Contents/MacOS/AESU.bin": - when: - os: mac store: steam - /runAESU.sh: + "/runAESU.sh": - when: - os: linux store: steam steam: id: 374640 -'March of War: FaceOff - M': +"March of War: FaceOff - M": installDir: March of WarFace Off: {} launch: - /game.app: + "/game.app": - when: - os: mac store: steam - /game.exe: + "/game.exe": - when: - os: windows store: steam steam: id: 323900 -'March of War: FaceOff - XL': +"March of War: FaceOff - XL": installDir: MoW Face Off XL: {} launch: - /game.app: + "/game.app": - when: - os: mac store: steam - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -325509,7 +326456,7 @@ March of the Eagles: installDir: March of the Eagles: {} launch: - /MotE_game.exe: + "/MotE_game.exe": - when: - os: windows store: steam @@ -325519,11 +326466,11 @@ March of the Living: installDir: March of the Living: {} launch: - /marchoftheliving.app: + "/marchoftheliving.app": - when: - os: mac store: steam - /marchoftheliving.exe: + "/marchoftheliving.exe": - when: - os: windows store: steam @@ -325533,7 +326480,7 @@ March to Glory: installDir: March to Glory: {} launch: - /autorun.exe: + "/autorun.exe": - when: - os: windows store: steam @@ -325541,7 +326488,7 @@ March to Glory: id: 707450 March! Offworld Recon: files: - /Save: + "/Save": tags: - save when: @@ -325550,24 +326497,24 @@ Marching Simulator: installDir: Marching Simulator: {} launch: - /Marching Simulator.exe: + "/Marching Simulator.exe": - when: - store: steam steam: id: 817370 Marco & The Galaxy Dragon: files: - /savedata: + "/savedata": tags: - config when: - store: steam - /savedata/savecheck: + "/savedata/savecheck": tags: - save when: - store: steam - /userdata//1202540/remote: + "/userdata//1202540/remote": tags: - config - save @@ -325576,7 +326523,7 @@ Marco & The Galaxy Dragon: installDir: Marco And The Galaxy Dragon: {} launch: - /marco.exe: + "/marco.exe": - when: - store: steam steam: @@ -325585,7 +326532,7 @@ Marco Polo: installDir: Marco Polo: {} launch: - /dosbox.exe: + "/dosbox.exe": - when: - os: windows store: steam @@ -325595,11 +326542,11 @@ Marcus Level: installDir: Marcus Level: {} launch: - /MarcusLevel.app/Contents/MacOS/MarcusLevel: + "/MarcusLevel.app/Contents/MacOS/MarcusLevel": - when: - os: mac store: steam - /MarcusLevel.exe: + "/MarcusLevel.exe": - when: - os: windows store: steam @@ -325609,17 +326556,17 @@ Mare Nostrvm: installDir: Mare Nostrvm: {} launch: - /autorun.exe: + "/autorun.exe": - when: - os: windows store: steam steam: id: 726630 -'Marenian Tavern Story: Patty and the Hungry God': +"Marenian Tavern Story: Patty and the Hungry God": installDir: Marenian Tavern Story: {} launch: - /Marenian Tavern Story.exe: + "/Marenian Tavern Story.exe": - when: - os: windows store: steam @@ -325634,7 +326581,7 @@ Marginalia: installDir: Marginalia: {} launch: - /Marginalia.exe: + "/Marginalia.exe": - when: - os: windows store: steam @@ -325644,36 +326591,39 @@ Margonem: installDir: MargonemCOM: {} launch: - /Margonem.exe: + "/Margonem.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam steam: id: 898590 -Margot's Word Brain: +"Margot's Word Brain": files: - /Margot's Word Brain/Gamedata.dat: + "/Margot's Word Brain/Gamedata.dat": tags: - save when: - os: windows installDir: - Margot's Word Brain: {} + "Margot's Word Brain": {} launch: - /MWB.exe: + "/MWB.exe": - when: - os: windows store: steam steam: id: 827780 -'Mari and Bayu: The Road Home': +"Mari and Bayu: The Road Home": gog: id: 1862308430 installDir: Mari & Bayu: {} launch: - /Mari and Bayu The Road Home.exe: + "/Mari and Bayu The Road Home.exe": - when: - bit: 64 os: windows @@ -325684,7 +326634,7 @@ Mari and the Black Tower: installDir: Mari and the Black Tower: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -325692,7 +326642,7 @@ Mari and the Black Tower: id: 706350 Mari0: files: - /LOVE/mari0/options.txt: + "/LOVE/mari0/options.txt": tags: - config when: @@ -325701,30 +326651,30 @@ Maria the Witch: installDir: Maria the Witch: {} launch: - /maria_v101.exe: + "/maria_v101.exe": - when: - os: windows store: steam steam: id: 447860 -Marie's Room: +"Marie's Room": files: - /MariesRoom/Saved/SaveGames/Settings.sav: + "/MariesRoom/Saved/SaveGames/Settings.sav": tags: - config when: - os: windows installDir: - Marie's Room: {} + "Marie's Room": {} launch: - /MariesRoom.exe: + "/MariesRoom.exe": - when: - bit: 64 os: windows store: steam steam: id: 648390 -'Mariko: Hot Nightlife': +"Mariko: Hot Nightlife": steam: id: 802760 Marimba VR: @@ -325736,46 +326686,46 @@ Marinatide: installDir: Marinatide: {} launch: - /Marinatide.app: + "/Marinatide.app": - when: - os: mac store: steam - /Marinatide.exe: + "/Marinatide.exe": - when: - os: windows store: steam - /Marinatide.x86: + "/Marinatide.x86": - when: - bit: 32 os: linux store: steam - /Marinatide.x86_64: + "/Marinatide.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 566420 -'Marine Heavy Gunner: Vietnam': +"Marine Heavy Gunner: Vietnam": files: - /Saves: + "/Saves": tags: - config when: - os: windows - /System/*ini: + "/System/*ini": tags: - config when: - os: windows Marine Park Empire: files: - /CONFIG.DAT: + "/CONFIG.DAT": tags: - config when: - os: windows - /SAVE: + "/SAVE": tags: - save when: @@ -325783,7 +326733,7 @@ Marine Park Empire: installDir: Marine Park Empire: {} launch: - /mpe.exe: + "/mpe.exe": - when: - os: windows store: steam @@ -325791,21 +326741,21 @@ Marine Park Empire: id: 294730 Marine Sharpshooter 3: files: - /Saves: + "/Saves": tags: - config when: - os: windows - /System/*ini: + "/System/*ini": tags: - config when: - os: windows -'Marine Sharpshooter II: Jungle Warfare': +"Marine Sharpshooter II: Jungle Warfare": installDir: Marine Sharpshooter 2 Jungle Warfare: {} launch: - /MS2.exe: + "/MS2.exe": - when: - os: windows store: steam @@ -325813,9 +326763,9 @@ Marine Sharpshooter 3: id: 283370 MarineVerse Cup: installDir: - MarineVerse's Cup: {} + "MarineVerse's Cup": {} launch: - /mvcup.exe: + "/mvcup.exe": - when: - os: windows store: steam @@ -325825,19 +326775,19 @@ Mariner Accident: installDir: Mariner Accident: {} launch: - /Contents/MacOS/new: + "/Contents/MacOS/new": - when: - os: mac store: steam - /Mariner Accident.exe: + "/Mariner Accident.exe": - when: - os: windows store: steam - /run.x86_64: + "/run.x86_64": - when: - os: linux store: steam - /win/Mariner Accident.exe: + "/win/Mariner Accident.exe": - when: - os: windows store: steam @@ -325845,76 +326795,76 @@ Mariner Accident: id: 941320 Mario Is Missing!: files: - /MARIOSTA.*: + "/MARIOSTA.*": tags: - save when: - os: dos Mario Teaches Typing: files: - /*.STU: + "/*.STU": tags: - save when: - os: dos - /INTRPLAY.CFG: + "/INTRPLAY.CFG": tags: - config when: - os: dos Mario Teaches Typing 2: files: - /*.STU: + "/*.STU": tags: - save when: - os: windows - /MARIO.INI: + "/MARIO.INI": tags: - config when: - os: windows -Mario's Early Years! Fun with Letters: +"Mario's Early Years! Fun with Letters": files: - /MARIO.CFG: + "/MARIO.CFG": tags: - config when: - os: dos -Mario's Early Years! Fun with Numbers: +"Mario's Early Years! Fun with Numbers": files: - /MARIO.CFG: + "/MARIO.CFG": tags: - config when: - os: dos -Mario's Early Years! Preschool Fun: +"Mario's Early Years! Preschool Fun": files: - /MARIO.CFG: + "/MARIO.CFG": tags: - config when: - os: dos -Mario's Game Gallery: +"Mario's Game Gallery": files: - /INTRPLAY.CFG: + "/INTRPLAY.CFG": tags: - config when: - os: dos -Mario's Time Machine: +"Mario's Time Machine": files: - /MARIOSTA.*: + "/MARIOSTA.*": tags: - save when: - os: dos - /SAVEGAME: + "/SAVEGAME": tags: - save when: - os: windows - /WMTM.INI: + "/WMTM.INI": tags: - config when: @@ -325923,11 +326873,11 @@ MarionetteAI: installDir: MarionetteAI: {} launch: - /MarionetteAI.app/Contents/MacOS/MarionetteAI: + "/MarionetteAI.app/Contents/MacOS/MarionetteAI": - when: - os: mac store: steam - /MarionetteAI.exe: + "/MarionetteAI.exe": - when: - os: windows store: steam @@ -325937,7 +326887,7 @@ MarisaLand Legacy: installDir: MarisaLand Legacy: {} launch: - /MariLega.exe: + "/MariLega.exe": - when: - os: windows store: steam @@ -325949,7 +326899,7 @@ Maritime Calling: installDir: Maritime Calling: {} launch: - /Maritime Calling.exe: + "/Maritime Calling.exe": - when: - os: windows store: steam @@ -325964,7 +326914,7 @@ Mark After Dark: installDir: Mark After Dark: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -325972,30 +326922,30 @@ Mark After Dark: id: 713980 Mark of the Ninja: files: - /users: + "/users": tags: - config - save when: - os: windows - /.klei/ninja/users: + "/.klei/ninja/users": tags: - config - save when: - os: linux - /Documents/Klei/Ninja/users: + "/Documents/Klei/Ninja/users": tags: - config - save when: - os: mac - /userdata//214560/remote: + "/userdata//214560/remote": tags: - save when: - store: steam - /Klei/Ninja/users: + "/Klei/Ninja/users": tags: - config - save @@ -326005,45 +326955,45 @@ Mark of the Ninja: id: 1207665123 id: gogExtra: - - 1207665143 - 1207665133 + - 1207665143 installDir: mark_of_the_ninja: {} launch: - /bin/game.exe: + "/bin/game.exe": - when: - os: windows store: steam - workingDir: /bin - /bin/ninja-bin32: + workingDir: "/bin" + "/bin/ninja-bin32": - when: - os: linux store: steam - workingDir: /bin - /ninja.app: + workingDir: "/bin" + "/ninja.app": - when: - os: mac store: steam steam: id: 214560 -'Mark of the Ninja: Remastered': +"Mark of the Ninja: Remastered": files: - /userdata//860950/remote/users/savegame.sav: + "/userdata//860950/remote/users/savegame.sav": tags: - save when: - store: steam - /userdata//860950/remote/users/settings.sav: + "/userdata//860950/remote/users/settings.sav": tags: - config when: - store: steam - /Klei Entertainment/Mark of the Ninja Remastered/users/graphics.ini: + "/Klei Entertainment/Mark of the Ninja Remastered/users/graphics.ini": tags: - config when: - os: windows - /Klei Entertainment/Mark of the Ninja Remastered/users/graphics.ini: + "/Klei Entertainment/Mark of the Ninja Remastered/users/graphics.ini": tags: - config when: @@ -326053,29 +327003,29 @@ Mark of the Ninja: installDir: Mark of the Ninja Remastered: {} launch: - /Ninja.app: + "/Ninja.app": - when: - os: mac store: steam - /bin/Ninja.exe: + "/bin/Ninja.exe": - when: - bit: 64 os: windows store: steam - workingDir: /bin - /bin64/Ninja: + workingDir: "/bin" + "/bin64/Ninja": - when: - bit: 64 os: linux store: steam - workingDir: /bin64 + workingDir: "/bin64" steam: id: 860950 Market Dominion: installDir: Market Dominion: {} launch: - /Market Dominion.exe: + "/Market Dominion.exe": - when: - bit: 64 os: windows @@ -326086,20 +327036,20 @@ Market Tycoon: installDir: Market Tycoon: {} launch: - /Market Tycoon.exe: + "/Market Tycoon.exe": - when: - os: windows store: steam steam: id: 563360 -'Marko: Beyond Brave': +"Marko: Beyond Brave": steam: id: 1186470 Markov Alg: installDir: Markov Alg: {} launch: - /Markov Alg.exe: + "/Markov Alg.exe": - when: - os: windows store: steam @@ -326110,11 +327060,11 @@ MarksmanVR: MarksmanVR: {} steam: id: 636950 -'Marle: The Labyrinth of the Black Sea': +"Marle: The Labyrinth of the Black Sea": installDir: Marle The Labyrinth of the Black Sea: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -326127,12 +327077,12 @@ Marlene: id: 536530 Marlow Briggs and the Mask of Death: files: - /ZootFly: + "/ZootFly": tags: - save when: - os: windows - /ZootFly/settings.xcom: + "/ZootFly/settings.xcom": tags: - config when: @@ -326140,14 +327090,14 @@ Marlow Briggs and the Mask of Death: installDir: Marlow Briggs: {} launch: - /kick_win.exe: + "/kick_win.exe": - when: - store: steam steam: id: 249680 Marooners: files: - /userdata//423810/remote: + "/userdata//423810/remote": tags: - save when: @@ -326156,7 +327106,7 @@ Marooners: installDir: Marooners: {} launch: - /Marooners.x86_64: + "/Marooners.x86_64": - when: - bit: 64 os: linux @@ -326171,12 +327121,12 @@ Marrow: installDir: Marrow: {} launch: - /MarrowWind32.exe: + "/MarrowWind32.exe": - when: - bit: 32 os: windows store: steam - /MarrowWind64.exe: + "/MarrowWind64.exe": - when: - bit: 64 os: windows @@ -326187,7 +327137,7 @@ Mars 2030: installDir: Mars 2030: {} launch: - /Mars-2030.exe: + "/Mars-2030.exe": - when: - os: windows store: steam @@ -326195,12 +327145,12 @@ Mars 2030: id: 416070 Mars 2030 (2017): files: - /Mars2030/Saved/Config/WindowsNoEditor: + "/Mars2030/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /Mars2030/Saved/SaveGames: + "/Mars2030/Saved/SaveGames": tags: - save when: @@ -326208,15 +327158,15 @@ Mars 2030 (2017): installDir: Mars 2030: {} launch: - /Mars2030.exe: - - arguments: '-nohmd' + "/Mars2030.exe": + - arguments: "-nohmd" when: - store: steam steam: id: 510850 Mars 2120: files: - /ProjectMars_DEMO/Saved/SaveGames: + "/ProjectMars_DEMO/Saved/SaveGames": tags: - save when: @@ -326224,27 +327174,27 @@ Mars 2120: installDir: Project Colonies MARS 2120: {} launch: - /ProjectMars_DEMO.exe: + "/ProjectMars_DEMO.exe": - when: - bit: 64 os: windows store: steam steam: id: 1424290 -'Mars Colony: Frontier': +"Mars Colony: Frontier": installDir: Mars Colony Frontier: {} launch: - /Frontier.exe: + "/Frontier.exe": - when: - store: steam steam: id: 394840 -'Mars Colony:Challenger': +"Mars Colony:Challenger": installDir: MarsColonyChallenger: {} launch: - /MarsColonyChallenger.exe: + "/MarsColonyChallenger.exe": - when: - os: windows store: steam @@ -326252,7 +327202,7 @@ Mars 2120: id: 277910 Mars First Logistics: files: - /AppData/LocalLow/Shape Shop/Mars First Logistics: + "/AppData/LocalLow/Shape Shop/Mars First Logistics": tags: - save when: @@ -326260,7 +327210,7 @@ Mars First Logistics: installDir: Mars First Logistics: {} launch: - /Mars First Logistics.exe: + "/Mars First Logistics.exe": - when: - bit: 64 os: windows @@ -326274,31 +327224,33 @@ Mars Flight VR: id: 1001690 Mars Horizon: files: - /userdata//765810/remote/saves: + "/userdata//765810/remote/saves": tags: - save when: - store: steam - /GOG.com/Galaxy/Applications/54034822417133077/Storage/Shared/Files: + "/GOG.com/Galaxy/Applications/54034822417133077/Storage/Shared/Files": tags: - config when: - - store: gog - /GOG.com/Galaxy/Applications/54034822417133077/Storage/Shared/Files/saves: + - os: windows + store: gog + "/GOG.com/Galaxy/Applications/54034822417133077/Storage/Shared/Files/saves": tags: - save when: - - store: gog + - os: windows + store: gog gog: id: 1996916790 installDir: Mars Horizon: {} launch: - /Mars Horizon.app: + "/Mars Horizon.app": - when: - os: mac store: steam - /Mars Horizon.exe: + "/Mars Horizon.exe": - when: - os: windows store: steam @@ -326309,7 +327261,7 @@ Mars Industries: id: 543790 Mars Odyssey: files: - /AppData/LocalLow/SteelWoolGames/mars_VR: + "/AppData/LocalLow/SteelWoolGames/mars_VR": tags: - save when: @@ -326322,35 +327274,35 @@ Mars Power Industries Deluxe: installDir: Mars Power Industries: {} launch: - /MarsPowerIndustries.x86: + "/MarsPowerIndustries.x86": - when: - bit: 32 os: linux store: steam - /MarsPowerIndustries.x86_64: + "/MarsPowerIndustries.x86_64": - when: - bit: 64 os: linux store: steam - /MarsPowerIndustry.app: + "/MarsPowerIndustry.app": - when: - os: mac store: steam - /game.exe: + "/game.exe": - when: - os: windows store: steam steam: id: 977230 -'Mars Simulator: Red Planet': +"Mars Simulator: Red Planet": installDir: MARSSIMULATOR: {} launch: - /MarsSimulator.exe: + "/MarsSimulator.exe": - when: - os: windows store: steam - /mars_movie.mp4: + "/mars_movie.mp4": - when: - store: steam steam: @@ -326359,7 +327311,7 @@ Mars Taken: installDir: Mars Taken: {} launch: - /MarsTaken.exe: + "/MarsTaken.exe": - when: - store: steam steam: @@ -326368,7 +327320,7 @@ Mars Troopers: installDir: Mars Troopers: {} launch: - /MarsTroopers.exe: + "/MarsTroopers.exe": - when: - os: windows store: steam @@ -326378,15 +327330,15 @@ Mars Underground: installDir: Mars Underground: {} launch: - /Mars Underground.app: + "/Mars Underground.app": - when: - os: mac store: steam - /mars.exe: + "/mars.exe": - when: - os: windows store: steam - /nw: + "/nw": - when: - bit: 64 os: linux @@ -326405,37 +327357,37 @@ Mars or Die!: installDir: Mars or Die!: {} launch: - /MarsOrDie.exe: - - arguments: '-fullscreen' + "/MarsOrDie.exe": + - arguments: "-fullscreen" when: - bit: 64 os: windows store: steam steam: id: 859440 -'Mars: Chaos Menace': +"Mars: Chaos Menace": installDir: Mars Chaos Menace: {} launch: - /Mars.exe: + "/Mars.exe": - when: - os: windows store: steam steam: id: 956150 -'Mars: Total Warfare': +"Mars: Total Warfare": installDir: Total Warfare: {} launch: - /Total Warfare.exe: + "/Total Warfare.exe": - when: - os: windows store: steam steam: id: 671690 -'Mars: War Logs': +"Mars: War Logs": files: - /Mars - War Logs: + "/Mars - War Logs": tags: - config - save @@ -326446,7 +327398,7 @@ Mars or Die!: installDir: Mars War Logs: {} launch: - /MarsWarlogs.exe: + "/MarsWarlogs.exe": - when: - store: steam steam: @@ -326458,7 +327410,7 @@ Marshmallow Madness: installDir: Marshmallow Madness: {} launch: - /Marshmallow Madness.exe: + "/Marshmallow Madness.exe": - when: - os: windows store: steam @@ -326469,9 +327421,9 @@ Marshmallow Melee: Marshmallow Melee: {} steam: id: 705100 -'Marsupilami: Hoobadventure': +"Marsupilami: Hoobadventure": files: - /AppData/LocalLow/Ocellus/Marsupilami Hoobadventure/SerializedData: + "/AppData/LocalLow/Ocellus/Marsupilami Hoobadventure/SerializedData": tags: - config - save @@ -326480,11 +327432,11 @@ Marshmallow Melee: installDir: Marsupilami Hoobadventure: {} launch: - /202111081_MARSU_MAC_STEAM.app: + "/202111081_MARSU_MAC_STEAM.app": - when: - os: mac store: steam - /Marsupilami Hoobadventure.exe: + "/Marsupilami Hoobadventure.exe": - when: - os: windows store: steam @@ -326492,12 +327444,12 @@ Marshmallow Melee: id: 1586700 Martha Is Dead: files: - /MID/Saved/Config/WindowsNoEditor: + "/MID/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /MID/Saved/SaveGames/*.sav: + "/MID/Saved/SaveGames/*.sav": tags: - save when: @@ -326508,81 +327460,81 @@ Martha Is Dead: Martha Is Dead: {} steam: id: 515960 -'Martha Madison: Electricity': +"Martha Madison: Electricity": installDir: Martha Madison Electricity: {} launch: - /Electricity.exe: + "/Electricity.exe": - when: - os: windows store: steam steam: id: 693150 -'Martha Madison: Energy': +"Martha Madison: Energy": installDir: Martha Madison Energy: {} launch: - /Energy.exe: + "/Energy.exe": - when: - os: windows store: steam steam: id: 694230 -'Martha Madison: Forces': +"Martha Madison: Forces": installDir: Martha Madison Forces: {} launch: - /Forces.exe: + "/Forces.exe": - when: - os: windows store: steam steam: id: 685970 -'Martha Madison: Magnetism': +"Martha Madison: Magnetism": installDir: Martha Madison Magnetism: {} launch: - /Magnetism.exe: + "/Magnetism.exe": - when: - os: windows store: steam steam: id: 693080 -'Martha Madison: Optics': +"Martha Madison: Optics": installDir: Martha Madison: {} launch: - /Optics.exe: + "/Optics.exe": - when: - os: windows store: steam steam: id: 596050 -'Martha Madison: Simple Machines Volume 1': +"Martha Madison: Simple Machines Volume 1": installDir: Martha Madison Simple Machines Volume 1: {} launch: - /Simple MachinesChapter1.exe: + "/Simple MachinesChapter1.exe": - when: - os: windows store: steam steam: id: 690840 -'Martha Madison: Simple Machines Volume 2': +"Martha Madison: Simple Machines Volume 2": installDir: Martha Madison Simple Machines Volume 2: {} launch: - /Simple MachinesChapter2.exe: + "/Simple MachinesChapter2.exe": - when: - os: windows store: steam steam: id: 693070 -'Martha Madison: Waves': +"Martha Madison: Waves": installDir: Martha Madison Waves: {} launch: - /Waves.exe: + "/Waves.exe": - when: - os: windows store: steam @@ -326592,29 +327544,29 @@ Martial Arts Brutality: installDir: Martial Arts Brutality: {} launch: - /dojo.exe: + "/dojo.exe": - when: - os: windows store: steam steam: id: 618080 -'Martial Arts: Capoeira': +"Martial Arts: Capoeira": installDir: Martial Arts Capoeira: {} launch: - /Capoeira.exe: + "/Capoeira.exe": - when: - store: steam steam: id: 307410 Martial Law: files: - /Godot/app_userdata/Martial Law: + "/Godot/app_userdata/Martial Law": tags: - save when: - os: windows - /Godot/app_userdata/Martial Law/settings.cfg: + "/Godot/app_userdata/Martial Law/settings.cfg": tags: - config when: @@ -326624,15 +327576,15 @@ Martial Law: installDir: Martial Law: {} launch: - /Martial Law.app: + "/Martial Law.app": - when: - os: mac store: steam - /martial-law: + "/martial-law": - when: - os: linux store: steam - /martial-law.exe: + "/martial-law.exe": - when: - os: windows store: steam @@ -326642,18 +327594,18 @@ Martial Law (DropDGames): installDir: Martial Law: {} launch: - /MartialLaw Beta Test V0.01.exe: + "/MartialLaw Beta Test V0.01.exe": - when: - os: windows store: steam - /MartialLaw Beta Test v0.01.x86_64: + "/MartialLaw Beta Test v0.01.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 346150 -'Martian Gothic: Unification': +"Martian Gothic: Unification": registry: HKEY_CURRENT_USER/SOFTWARE/Martian Gothic: tags: @@ -326662,7 +327614,7 @@ Martian Invaders: installDir: Martian Invaders: {} launch: - /MartianInvaders.exe: + "/MartianInvaders.exe": - when: - os: windows store: steam @@ -326670,7 +327622,7 @@ Martian Invaders: id: 2182960 Martian Law: files: - /mlgame: + "/mlgame": tags: - save when: @@ -326678,7 +327630,7 @@ Martian Law: installDir: Martian Law: {} launch: - /MartianLaw.exe: + "/MartianLaw.exe": - when: - os: windows store: steam @@ -326688,7 +327640,7 @@ Martians Vs Robots: installDir: Martians Vs Robots: {} launch: - /Martians Vs Robots.exe: + "/Martians Vs Robots.exe": - when: - store: steam steam: @@ -326697,11 +327649,11 @@ Marty Thinks 4D: installDir: Marty Thinks 4th Dimensionally: {} launch: - /MartyMac.app: + "/MartyMac.app": - when: - os: mac store: steam - /MartyPC.exe: + "/MartyPC.exe": - when: - os: windows store: steam @@ -326714,8 +327666,8 @@ Marvel End Time Arena: installDir: MARVEL END TIME ARENA: {} launch: - /deploy_client/Marvel End Time Arena.exe: - - arguments: '--ip 121.254.209.11 --ppath ../publisher_config.xml ' + "/deploy_client/Marvel End Time Arena.exe": + - arguments: "--ip 121.254.209.11 --ppath ../publisher_config.xml " when: - os: windows store: steam @@ -326723,7 +327675,7 @@ Marvel End Time Arena: id: 790650 Marvel Heroes: files: - /My Games/Marvel Heroes/MarvelGame/Config: + "/My Games/Marvel Heroes/MarvelGame/Config": tags: - config when: @@ -326731,37 +327683,37 @@ Marvel Heroes: installDir: Marvel Heroes: {} launch: - /unrealengine3/binaries/mac/MarvelHeroesOmega.app: - - arguments: '-steam -nobitraider -nosolidstate' + "/unrealengine3/binaries/mac/MarvelHeroesOmega.app": + - arguments: "-steam -nobitraider -nosolidstate" when: - os: mac store: steam - workingDir: /unrealengine3/binaries/mac - /unrealengine3/binaries/win32/MarvelHeroesOmega.exe: - - arguments: '-steam -nobitraider -nosolidstate' + workingDir: "/unrealengine3/binaries/mac" + "/unrealengine3/binaries/win32/MarvelHeroesOmega.exe": + - arguments: "-steam -nobitraider -nosolidstate" when: - bit: 32 os: windows store: steam - workingDir: /unrealengine3/binaries/win32 - /unrealengine3/binaries/win64/MarvelHeroesOmega.exe: - - arguments: '-steam -nobitraider -nosolidstate' + workingDir: "/unrealengine3/binaries/win32" + "/unrealengine3/binaries/win64/MarvelHeroesOmega.exe": + - arguments: "-steam -nobitraider -nosolidstate" when: - bit: 64 os: windows store: steam - workingDir: /unrealengine3/binaries/win64 + workingDir: "/unrealengine3/binaries/win64" steam: id: 226320 Marvel Puzzle Quest: files: - /userdata//234330/remote: + "/userdata//234330/remote": tags: - save when: - os: windows store: steam - /Demiurge Studios/Marvel Puzzle Quest: + "/Demiurge Studios/Marvel Puzzle Quest": tags: - config when: @@ -326769,17 +327721,17 @@ Marvel Puzzle Quest: installDir: Marvel Puzzle Quest: {} launch: - /Binaries/x64/Ship/Marvel Puzzle Quest.exe: + "/Binaries/x64/Ship/Marvel Puzzle Quest.exe": - when: - bit: 64 os: windows store: steam - workingDir: /Binaries/x64/Ship + workingDir: "/Binaries/x64/Ship" steam: id: 234330 Marvel Snap: files: - /Second Dinner/SNAP: + "/Second Dinner/SNAP": tags: - save when: @@ -326787,27 +327739,27 @@ Marvel Snap: installDir: MARVEL SNAP: {} launch: - /SNAP.exe: + "/SNAP.exe": - when: - os: windows store: steam steam: id: 1997040 -'Marvel vs. Capcom: Infinite': +"Marvel vs. Capcom: Infinite": files: - /MARVEL VS. CAPCOM INFINITE/MVCI/Saved/Config/WindowsNoEditor: + "/MARVEL VS. CAPCOM INFINITE/MVCI/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows store: steam - /MARVEL VS. CAPCOM INFINITE/MVCI/Saved/SaveGames: + "/MARVEL VS. CAPCOM INFINITE/MVCI/Saved/SaveGames": tags: - save when: - os: windows store: steam - /Packages/F024294D.407397AB99398_8fty0by30jkny/LocalState/Duck/Saved/Config/UWP: + "/Packages/F024294D.407397AB99398_8fty0by30jkny/LocalState/Duck/Saved/Config/UWP": tags: - config when: @@ -326816,22 +327768,22 @@ Marvel Snap: installDir: MARVEL VS. CAPCOM INFINITE: {} launch: - /MVCI.exe: + "/MVCI.exe": - when: - store: steam - - arguments: '-NoDInput' + - arguments: "-NoDInput" when: - store: steam steam: id: 493840 -Marvel's Avengers: +"Marvel's Avengers": files: - /Marvel's Avengers/: + "/Marvel's Avengers/": tags: - save when: - os: windows - /Packages/39C668CD.ProjectScotchBaseGame_r7bfsmp40f67j/SystemAppData/wgs: + "/Packages/39C668CD.ProjectScotchBaseGame_r7bfsmp40f67j/SystemAppData/wgs": tags: - save when: @@ -326843,49 +327795,49 @@ Marvel's Avengers: installDir: Marvels Avengers: {} launch: - /avengers.exe: + "/avengers.exe": - when: - bit: 64 os: windows store: steam registry: - HKEY_CURRENT_USER/Software/Crystal Dynamics/Marvel's Avengers: + "HKEY_CURRENT_USER/Software/Crystal Dynamics/Marvel's Avengers": tags: - config steam: id: 997070 -Marvel's Guardians of the Galaxy: +"Marvel's Guardians of the Galaxy": files: - /userdata//1088850/remote: + "/userdata//1088850/remote": tags: - config - save when: - store: steam - /Packages/39C668CD.DXM-EidosMontreal_r7bfsmp40f67j/SystemAppData/wgs: + "/Packages/39C668CD.DXM-EidosMontreal_r7bfsmp40f67j/SystemAppData/wgs": tags: - save when: - os: windows store: microsoft installDir: - Marvel's Guardians of the Galaxy: {} + "Marvel's Guardians of the Galaxy": {} launch: - /bin/gotg.exe: + "/bin/gotg.exe": - when: - bit: 64 os: windows store: steam - workingDir: /bin + workingDir: "/bin" registry: HKEY_CURRENT_USER/Software/Eidos Montreal/Guardians of the Galaxy: tags: - config steam: id: 1088850 -'Marvel''s Guardians of the Galaxy: The Telltale Series': +"Marvel's Guardians of the Galaxy: The Telltale Series": files: - /Telltale Games/Guardians of the Galaxy: + "/Telltale Games/Guardians of the Galaxy": tags: - config - save @@ -326894,107 +327846,107 @@ Marvel's Guardians of the Galaxy: gog: id: 1253505782 installDir: - Marvel's Guardians of the Galaxy The Telltale Series: {} + "Marvel's Guardians of the Galaxy The Telltale Series": {} launch: - /Guardians.exe: + "/Guardians.exe": - when: - bit: 64 os: windows store: steam - /Marvel's Guardians of the Galaxy - The Telltale Series.app: + "/Marvel's Guardians of the Galaxy - The Telltale Series.app": - when: - bit: 64 os: mac store: steam steam: id: 579950 -Marvel's Midnight Suns: +"Marvel's Midnight Suns": files: - /My Games/Marvel's Midnight Suns/Saved_Steam_/Config/WindowsNoEditor: + "/My Games/Marvel's Midnight Suns/Saved_Steam_/Config/WindowsNoEditor": tags: - config when: - os: windows - /My Games/Marvel's Midnight Suns/Saved_Steam_/SaveGames: + "/My Games/Marvel's Midnight Suns/Saved_Steam_/SaveGames": tags: - save when: - os: windows installDir: - Marvel's Midnight Suns: {} + "Marvel's Midnight Suns": {} launch: - /2KLauncher/LauncherPatcher.exe: - - arguments: '-saveddirsuffix=Steam' + "/2KLauncher/LauncherPatcher.exe": + - arguments: "-saveddirsuffix=Steam" when: - os: windows store: steam steam: id: 368260 -Marvel's Spider-Man Remastered: +"Marvel's Spider-Man Remastered": files: - /Insomniac Games/Marvel's Spider-Man Remastered/crs: + "/Insomniac Games/Marvel's Spider-Man Remastered/crs": tags: - config when: - os: windows - /Marvel's Spider-Man Remastered/: + "/Marvel's Spider-Man Remastered/": tags: - save when: - os: windows - /Marvel's Spider-Man Remastered//-userprefs.save: + "/Marvel's Spider-Man Remastered//-userprefs.save": tags: - config when: - os: windows installDir: - Marvel's Spider-Man Remastered: {} + "Marvel's Spider-Man Remastered": {} launch: - /Spider-Man.exe: + "/Spider-Man.exe": - when: - bit: 64 os: windows store: steam registry: - HKEY_CURRENT_USER/Software/Insomniac Games/Marvel's Spider-Man Remastered: + "HKEY_CURRENT_USER/Software/Insomniac Games/Marvel's Spider-Man Remastered": tags: - config steam: id: 1817070 -'Marvel''s Spider-Man: Miles Morales': +"Marvel's Spider-Man: Miles Morales": files: - /Insomniac Games/Marvel's Spider-Man Miles Morales/crs: + "/Insomniac Games/Marvel's Spider-Man Miles Morales/crs": tags: - config when: - os: windows - /Marvel's Spider-Man Miles Morales/: + "/Marvel's Spider-Man Miles Morales/": tags: - save when: - os: windows - /Marvel's Spider-Man Miles Morales//-userprefs.save: + "/Marvel's Spider-Man Miles Morales//-userprefs.save": tags: - config when: - os: windows installDir: - Marvel's Spider-Man Miles Morales: {} + "Marvel's Spider-Man Miles Morales": {} launch: - /MilesMorales.exe: + "/MilesMorales.exe": - when: - bit: 64 os: windows store: steam registry: - HKEY_CURRENT_USER/Software/Insomniac Games/Marvel's Spider-Man Miles Morales: + "HKEY_CURRENT_USER/Software/Insomniac Games/Marvel's Spider-Man Miles Morales": tags: - config steam: id: 1817190 -'Marvel: Ultimate Alliance': +"Marvel: Ultimate Alliance": files: - /Activision/Marvel Ultimate Alliance/Save: + "/Activision/Marvel Ultimate Alliance/Save": tags: - save when: @@ -327003,14 +327955,14 @@ Marvel's Spider-Man Remastered: HKEY_CURRENT_USER/Software/Activision/Marvel Ultimate Alliance/Settings: tags: - config -'Marvel: Ultimate Alliance (2016)': +"Marvel: Ultimate Alliance (2016)": files: - /SavesDir: + "/SavesDir": tags: - save when: - os: windows - /Settings: + "/Settings": tags: - config when: @@ -327018,19 +327970,19 @@ Marvel's Spider-Man Remastered: installDir: Marvel - Ultimate Alliance: {} launch: - /Marvel.exe: + "/Marvel.exe": - when: - store: steam steam: id: 433300 -'Marvel: Ultimate Alliance 2': +"Marvel: Ultimate Alliance 2": files: - /SavesDir: + "/SavesDir": tags: - save when: - os: windows - /Settings: + "/Settings": tags: - config when: @@ -327038,7 +327990,7 @@ Marvel's Spider-Man Remastered: installDir: Marvel - Ultimate Alliance 2: {} launch: - /Alliance.exe: + "/Alliance.exe": - when: - bit: 64 os: windows @@ -327049,19 +328001,19 @@ Marvellous Inc.: installDir: MarvInc: {} launch: - /Marvellous_Inc-x86_64.AppImage: - - arguments: '--steam' + "/Marvellous_Inc-x86_64.AppImage": + - arguments: "--steam" when: - bit: 64 os: linux store: steam - /Marvellous_Inc.app/Contents/MacOS/love: - - arguments: '--steam' + "/Marvellous_Inc.app/Contents/MacOS/love": + - arguments: "--steam" when: - os: mac store: steam - /marvellous.exe: - - arguments: '--steam' + "/marvellous.exe": + - arguments: "--steam" when: - os: windows store: steam @@ -327071,16 +328023,16 @@ Marvin the Hatter: installDir: Marvin The Hatter: {} launch: - /Marvin The Hatter.exe: + "/Marvin The Hatter.exe": - when: - store: steam steam: id: 1036820 -Marvin's Mittens: +"Marvin's Mittens": installDir: - Marvin's Mittens: {} + "Marvin's Mittens": {} launch: - /Jumpman.exe: + "/Jumpman.exe": - when: - os: windows store: steam @@ -327090,7 +328042,7 @@ Marwin and The Evolution Stone: installDir: Marwin and The Evolution Stone: {} launch: - /MES.exe: + "/MES.exe": - when: - os: windows store: steam @@ -327100,11 +328052,11 @@ Mary Le Chef - Cooking Passion: installDir: Mary Le Chef - Cooking Passion: {} launch: - /Mary le Chef.app: + "/Mary le Chef.app": - when: - os: mac store: steam - /mary.exe: + "/mary.exe": - when: - os: windows store: steam @@ -327112,12 +328064,12 @@ Mary Le Chef - Cooking Passion: id: 588620 Mary Skelter 2: files: - /MarySkelter2.ini: + "/MarySkelter2.ini": tags: - config when: - os: windows - /My Games/Ghostlight Ltd/Mary Skelter 2: + "/My Games/Ghostlight Ltd/Mary Skelter 2": tags: - save when: @@ -327127,21 +328079,21 @@ Mary Skelter 2: installDir: Mary Skelter 2: {} launch: - /MarySkelter2.exe: + "/MarySkelter2.exe": - when: - bit: 64 os: windows store: steam steam: id: 1496250 -'Mary Skelter: Nightmares': +"Mary Skelter: Nightmares": files: - /MarySkelter.ini: + "/MarySkelter.ini": tags: - config when: - os: windows - /My Games/Ghostlight Ltd/Mary Skelter Nightmares: + "/My Games/Ghostlight Ltd/Mary Skelter Nightmares": tags: - save when: @@ -327151,7 +328103,7 @@ Mary Skelter 2: installDir: Mary Skelter Nightmares: {} launch: - /MarySkelter.exe: + "/MarySkelter.exe": - when: - os: windows store: steam @@ -327165,12 +328117,12 @@ Masha Rescues Grandma: id: 562670 Mashed: files: - /contcfg*.bin: + "/contcfg*.bin": tags: - config when: - os: windows - /gamesave.bin: + "/gamesave.bin": tags: - save when: @@ -327180,23 +328132,16 @@ Mashed: installDir: Mashed: {} launch: - /MASHED.exe: + "/MASHED.exe": - when: - store: steam steam: id: 281280 Mashinky: - files: - /Mashinky/saves: - tags: - - config - when: - - os: windows - store: steam installDir: Mashinky: {} launch: - /Mashinky.exe: + "/Mashinky.exe": - when: - os: windows store: steam @@ -327206,7 +328151,7 @@ Mask of Mists: installDir: Mask of Mists: {} launch: - /MaskOfMists.exe: + "/MaskOfMists.exe": - when: - bit: 64 os: windows @@ -327217,7 +328162,7 @@ Mask of Sanity: installDir: Mask of Sanity: {} launch: - /Mask of Sanity.exe: + "/Mask of Sanity.exe": - when: - os: windows store: steam @@ -327225,17 +328170,17 @@ Mask of Sanity: id: 1139480 Mask of the Rose: files: - /.config/unity3d/Failbetter Games/Mask of the Rose/saves: + "/.config/unity3d/Failbetter Games/Mask of the Rose/saves": tags: - save when: - os: linux - /AppData/LocalLow/Failbetter Games/Mask of the Rose/saves: + "/AppData/LocalLow/Failbetter Games/Mask of the Rose/saves": tags: - save when: - os: windows - /Library/Application Support/Failbetter Games/Mask of the Rose/saves: + "/Library/Application Support/Failbetter Games/Mask of the Rose/saves": tags: - save when: @@ -327245,15 +328190,15 @@ Mask of the Rose: installDir: Mask of the Rose: {} launch: - /Mask of the Rose: + "/Mask of the Rose": - when: - os: linux store: steam - /Mask of the Rose.app: + "/Mask of the Rose.app": - when: - os: mac store: steam - /Mask of the Rose.exe: + "/Mask of the Rose.exe": - when: - os: windows store: steam @@ -327263,20 +328208,20 @@ Mask of the Rose: - config steam: id: 1769980 -Maska's Masks: +"Maska's Masks": steam: id: 1144380 Masked Forces: installDir: Masked Forces: {} launch: - /MaskedForces.app: + "/MaskedForces.app": - when: - os: mac store: steam steam: id: 555750 -'Masked Forces 2: Mystic Demons': +"Masked Forces 2: Mystic Demons": installDir: Masked Forces 2 Mystic Demons: {} steam: @@ -327285,21 +328230,21 @@ Masked Forces 3: installDir: Masked Forces 3: {} launch: - /MaskedForces3.exe: + "/MaskedForces3.exe": - when: - os: windows store: steam steam: id: 826000 -'Masked Forces: Zombie Survival': +"Masked Forces: Zombie Survival": installDir: Masked Forces Zombie Survival: {} launch: - /MaskedForcesZombieSurvival.app: + "/MaskedForcesZombieSurvival.app": - when: - os: mac store: steam - /MaskedForcesZombieSurvival.exe: + "/MaskedForcesZombieSurvival.exe": - when: - os: windows store: steam @@ -327309,11 +328254,11 @@ Masked Shooters: installDir: Masked Shooters: {} launch: - /MaskedShooters.app: + "/MaskedShooters.app": - when: - os: mac store: steam - /MaskedShooters.exe: + "/MaskedShooters.exe": - when: - os: windows store: steam @@ -327328,7 +328273,7 @@ Masked and Mysterious: installDir: Masked and Mysterious: {} launch: - /MaM.exe: + "/MaM.exe": - when: - os: windows store: steam @@ -327336,12 +328281,12 @@ Masked and Mysterious: id: 740720 Maskmaker: files: - /AppData/Local/Maskmaker/Saved/SaveGames: + "/AppData/Local/Maskmaker/Saved/SaveGames": tags: - save when: - os: windows - /AppData/Local/Maskmaker/Saved/SaveGames/UserSettings.sav: + "/AppData/Local/Maskmaker/Saved/SaveGames/UserSettings.sav": tags: - config when: @@ -327354,15 +328299,15 @@ Masky: installDir: Masky: {} launch: - /Masky.app: + "/Masky.app": - when: - os: mac store: steam - /Masky.exe: + "/Masky.exe": - when: - os: windows store: steam - /Masky.x86: + "/Masky.x86": - when: - os: linux store: steam @@ -327372,7 +328317,7 @@ Maso Marble: installDir: Maso Marble: {} launch: - /MasoMarble.exe: + "/MasoMarble.exe": - when: - os: windows store: steam @@ -327382,21 +328327,21 @@ Masochisia: installDir: Masochisia: {} launch: - /MASOCHISIA-Linux.x86: + "/MASOCHISIA-Linux.x86": - when: - bit: 32 os: linux store: steam - /MASOCHISIA-Linux.x86_64: + "/MASOCHISIA-Linux.x86_64": - when: - bit: 64 os: linux store: steam - /MASOCHISIA-OSX.app: + "/MASOCHISIA-OSX.app": - when: - os: mac store: steam - /MASOCHISIA-x86.exe: + "/MASOCHISIA-x86.exe": - when: - os: windows store: steam @@ -327410,33 +328355,33 @@ Masplado: installDir: Masplado: {} launch: - /Masplado.exe: + "/Masplado.exe": - when: - os: windows store: steam steam: id: 791620 -'Masquerada: Songs and Shadows': +"Masquerada: Songs and Shadows": gog: id: 1561716235 installDir: Masquerada Songs and Shadows: {} launch: - /Masquerada.app/Contents/MacOS/Masquerada: + "/Masquerada.app/Contents/MacOS/Masquerada": - when: - os: mac store: steam - /Masquerada.exe: + "/Masquerada.exe": - when: - os: windows store: steam steam: id: 459090 -'Masquerade: The Baubles of Doom': +"Masquerade: The Baubles of Doom": installDir: Masquerade - The Baubles of Doom: {} launch: - /masquerade.exe: + "/masquerade.exe": - when: - os: windows store: steam @@ -327444,13 +328389,13 @@ Masplado: id: 299380 MasqueradeAI: installDir: - God's Blessing: {} + "God's Blessing": {} launch: - /God's Blessing.app: + "/God's Blessing.app": - when: - os: mac store: steam - /God's Blessing.exe: + "/God's Blessing.exe": - when: - os: windows store: steam @@ -327458,12 +328403,12 @@ MasqueradeAI: id: 860100 Mass Destruction: files: - /TANK.INI: + "/TANK.INI": tags: - config when: - os: dos - /TANK.SAV: + "/TANK.SAV": tags: - save when: @@ -327472,7 +328417,7 @@ Mass Destruction (2015): installDir: Mass Destruction: {} launch: - /Mass Destruction.exe: + "/Mass Destruction.exe": - when: - os: windows store: steam @@ -327480,12 +328425,12 @@ Mass Destruction (2015): id: 396820 Mass Effect: files: - /Bioware/Mass Effect/Config: + "/Bioware/Mass Effect/Config": tags: - config when: - os: windows - /Bioware/Mass Effect/Save: + "/Bioware/Mass Effect/Save": tags: - save when: @@ -327493,28 +328438,28 @@ Mass Effect: installDir: Mass Effect: {} launch: - /Binaries/MassEffect.exe: + "/Binaries/MassEffect.exe": - when: - store: steam - /docs/EA Help/Electronic_Arts_Technical_Support.htm: + "/docs/EA Help/Electronic_Arts_Technical_Support.htm": - when: - store: steam steam: id: 17460 Mass Effect 2: files: - /BioWare/Mass Effect 2/BIOGame/Config: + "/BioWare/Mass Effect 2/BIOGame/Config": tags: - config when: - os: windows - /BioWare/Mass Effect 2/Profile/Player1.prf: + "/BioWare/Mass Effect 2/Profile/Player1.prf": tags: - config - save when: - os: windows - /BioWare/Mass Effect 2/Save: + "/BioWare/Mass Effect 2/Save": tags: - save when: @@ -327530,12 +328475,12 @@ Mass Effect 2: id: 2362420 Mass Effect 3: files: - /BioWare/Mass Effect 3/BIOGame/Config: + "/BioWare/Mass Effect 3/BIOGame/Config": tags: - config when: - os: windows - /BioWare/Mass Effect 3/Save: + "/BioWare/Mass Effect 3/Save": tags: - save when: @@ -327546,22 +328491,22 @@ Mass Effect 3: id: 1238020 Mass Effect Legendary Edition: files: - /Game/ME1/BioGame/Config: + "/Game/ME1/BioGame/Config": tags: - config when: - os: windows - /Game/ME2/BioGame/Config: + "/Game/ME2/BioGame/Config": tags: - config when: - os: windows - /Game/ME3/BioGame/Config: + "/Game/ME3/BioGame/Config": tags: - config when: - os: windows - /BioWare/Mass Effect Legendary Edition/Save: + "/BioWare/Mass Effect Legendary Edition/Save": tags: - save when: @@ -327573,9 +328518,9 @@ Mass Effect Legendary Edition: Mass Effect Legendary Edition: {} steam: id: 1328670 -'Mass Effect: Andromeda': +"Mass Effect: Andromeda": files: - /BioWare/Mass Effect Andromeda/Save: + "/BioWare/Mass Effect Andromeda/Save": tags: - config - save @@ -327590,16 +328535,16 @@ Mass Exodus: Mass Exodus: {} steam: id: 566530 -Mass O' Kyzt: +"Mass O' Kyzt": installDir: - Mass O' Kyzt: {} + "Mass O' Kyzt": {} launch: - /MassOKyzt.exe: + "/MassOKyzt.exe": - when: - bit: 64 os: windows store: steam - /MassOKyzt.sh: + "/MassOKyzt.sh": - when: - bit: 64 os: linux @@ -327615,7 +328560,7 @@ Mass Vector: installDir: mass_vector: {} launch: - /massvector.exe: + "/massvector.exe": - when: - os: windows store: steam @@ -327625,29 +328570,29 @@ Massive: installDir: Massive: {} launch: - /Massive.exe: + "/Massive.exe": - when: - bit: 32 os: windows store: steam - workingDir: /Massive_Data - /Massive.x86: + workingDir: "/Massive_Data" + "/Massive.x86": - when: - bit: 32 os: linux store: steam - workingDir: /Massive_Data + workingDir: "/Massive_Data" steam: id: 461400 Massive Air Combat: installDir: Massive Air Combat: {} launch: - /Game.app/Contents/MacOS/MassiveAirCombat: + "/Game.app/Contents/MacOS/MassiveAirCombat": - when: - os: mac store: steam - /MassiveAirCombat.exe: + "/MassiveAirCombat.exe": - when: - os: windows store: steam @@ -327655,7 +328600,7 @@ Massive Air Combat: id: 1040900 Massive Assault: files: - /savegame: + "/savegame": tags: - save when: @@ -327665,7 +328610,7 @@ Massive Assault: installDir: Massive Assault: {} launch: - /ma.exe: + "/ma.exe": - when: - store: steam steam: @@ -327674,37 +328619,37 @@ Massive Assault Network 2: installDir: Massive Assault Network 2: {} launch: - /man2.exe: + "/man2.exe": - when: - store: steam steam: id: 34650 -'Massive Assault: Phantom Renaissance': +"Massive Assault: Phantom Renaissance": gog: id: 1422452702 installDir: Massive Assault - Phantom Renaissance: {} launch: - /mapr.exe: + "/mapr.exe": - when: - store: steam steam: id: 34640 Massive Chalice: files: - /.local/share/doublefine/massivechalice: + "/.local/share/doublefine/massivechalice": tags: - config - save when: - os: linux - /Library/Application Support/Doublefine/MassiveChalice: + "/Library/Application Support/Doublefine/MassiveChalice": tags: - config - save when: - os: mac - /Doublefine/MassiveChalice: + "/Doublefine/MassiveChalice": tags: - config - save @@ -327715,26 +328660,26 @@ Massive Chalice: installDir: Massive Chalice: {} launch: - /MC: + "/MC": - when: - os: linux store: steam - /MC.app/Contents/MacOS/MC: + "/MC.app/Contents/MacOS/MC": - when: - os: mac store: steam - workingDir: /MC.app/Contents/MacOS - /MC.exe: + workingDir: "/MC.app/Contents/MacOS" + "/MC.exe": - when: - os: windows store: steam steam: id: 246110 -'Massive Cleavage vs Zombies: Awesome Edition': +"Massive Cleavage vs Zombies: Awesome Edition": installDir: Massive Cleavage vs Zombies Awesome Edition: {} launch: - /MassiveCleavageVsZombies.exe: + "/MassiveCleavageVsZombies.exe": - when: - os: windows store: steam @@ -327744,7 +328689,7 @@ Massive Effect: installDir: Massive Effect: {} launch: - /nw.exe: + "/nw.exe": - when: - store: steam steam: @@ -327755,11 +328700,11 @@ Massive Galaxy: Massive multiplayer war shooter: steam: id: 964030 -'Mastema: Out of Hell': +"Mastema: Out of Hell": installDir: Mastema: {} launch: - /MASTEMA_OOH.exe: + "/MASTEMA_OOH.exe": - when: - os: windows store: steam @@ -327769,7 +328714,7 @@ Master Arena: installDir: MasterArena: {} launch: - /Binaries/Win64/MasterArena.exe: + "/Binaries/Win64/MasterArena.exe": - when: - bit: 64 os: windows @@ -327785,7 +328730,7 @@ Master Cube: installDir: Master cube: {} launch: - /MasterCube.exe: + "/MasterCube.exe": - when: - os: windows store: steam @@ -327793,7 +328738,7 @@ Master Cube: id: 1081350 Master Magistrate: files: - /savedata: + "/savedata": tags: - save when: @@ -327801,8 +328746,8 @@ Master Magistrate: installDir: Master Magistrate: {} launch: - /master_magistrate.exe: - - arguments: '-fsmethod=cds -dbstyle=d3d' + "/master_magistrate.exe": + - arguments: "-fsmethod=cds -dbstyle=d3d" when: - store: steam steam: @@ -327811,7 +328756,7 @@ Master Of Pottery: installDir: Master Of Pottery: {} launch: - /MasterOfPottery.exe: + "/MasterOfPottery.exe": - when: - os: windows store: steam @@ -327826,18 +328771,18 @@ Master Pyrox Wizard Smackdown: installDir: Master Pyrox Wizard Smackdown: {} launch: - /MasterPyrox.exe: + "/MasterPyrox.exe": - arguments: intro.tscn when: - os: windows store: steam - /MasterPyrox.x86: + "/MasterPyrox.x86": - arguments: intro.tscn when: - bit: 32 os: linux store: steam - /MasterPyrox.x86_64: + "/MasterPyrox.x86_64": - arguments: intro.tscn when: - bit: 64 @@ -327847,22 +328792,22 @@ Master Pyrox Wizard Smackdown: id: 861960 Master Reboot: files: - /Binaries/Win32/SaveData.bin: + "/Binaries/Win32/SaveData.bin": tags: - save when: - os: windows - /MasterReboot.app/Contents/Resources/Engine/Config/SaveData.bin: + "/MasterReboot.app/Contents/Resources/Engine/Config/SaveData.bin": tags: - save when: - os: mac - /UDKGame/Config: + "/UDKGame/Config": tags: - config when: - os: windows - /Library/Application Support/MasterReboot/UDKGame/Config: + "/Library/Application Support/MasterReboot/UDKGame/Config": tags: - config when: @@ -327870,11 +328815,11 @@ Master Reboot: installDir: MasterReboot: {} launch: - /Binaries/Win32/MasterReboot.exe: + "/Binaries/Win32/MasterReboot.exe": - when: - os: windows store: steam - /MasterReboot.app: + "/MasterReboot.app": - when: - os: mac store: steam @@ -327889,11 +328834,11 @@ Master Spy: installDir: Master Spy: {} launch: - /MasterSpy.app: + "/MasterSpy.app": - when: - os: mac store: steam - /MasterSpy.exe: + "/MasterSpy.exe": - when: - os: windows store: steam @@ -327903,7 +328848,7 @@ Master of ABC: installDir: Master of ABC: {} launch: - /master of ABC.exe: + "/master of ABC.exe": - when: - store: steam steam: @@ -327912,7 +328857,7 @@ Master of LinCard: installDir: Master of LinCard: {} launch: - /LinCard.exe: + "/LinCard.exe": - when: - bit: 64 os: windows @@ -327921,12 +328866,12 @@ Master of LinCard: id: 1138030 Master of Magic: files: - /MAGIC.SET: + "/MAGIC.SET": tags: - config when: - os: dos - /SAVE*.GAM: + "/SAVE*.GAM": tags: - save when: @@ -327936,14 +328881,14 @@ Master of Magic: installDir: Master of Magic: {} launch: - /Launcher.exe: + "/Launcher.exe": - when: - store: steam steam: id: 1146370 Master of Magic (2022): files: - /AppData/LocalLow/MuHa Games/MoM: + "/AppData/LocalLow/MuHa Games/MoM": tags: - save when: @@ -327954,12 +328899,12 @@ Master of Magic (2022): gogExtra: - 1983428612 steamExtra: - - 2482370 - 2239310 + - 2482370 installDir: Master-Of-Magic: {} launch: - /Launcher.exe: + "/Launcher.exe": - when: - store: steam steam: @@ -327968,7 +328913,7 @@ Master of Magic Chess: installDir: Master of Magic Chess: {} launch: - /Master of Magic Chess.exe: + "/Master of Magic Chess.exe": - when: - os: windows store: steam @@ -327978,12 +328923,12 @@ Master of Marbles: installDir: MasterOfMarbles: {} launch: - /Marble.exe: + "/Marble.exe": - when: - bit: 64 os: windows store: steam - /Marble.sh: + "/Marble.sh": - when: - bit: 64 os: linux @@ -327994,22 +328939,22 @@ Master of Meteor Blades: installDir: XLX: {} launch: - /client/ClientTest - steam.bat: + "/client/ClientTest - steam.bat": - when: - os: windows store: steam - workingDir: /client + workingDir: "/client" steam: id: 295950 Master of Mutations: installDir: Master of Mutations: {} launch: - /Master of Mutations.app/Contents/MacOS/Master of Mutations: + "/Master of Mutations.app/Contents/MacOS/Master of Mutations": - when: - os: mac store: steam - /Master of Mutations.exe: + "/Master of Mutations.exe": - when: - os: windows store: steam @@ -328024,17 +328969,17 @@ Master of Orion: installDir: Master of Orion 1: {} launch: - /DOSBOX/DOSBox.exe: - - arguments: '-conf \"..\\dosboxMOO1.conf\" -conf \"..\\dosboxMOO1_single.conf\" -noconsole -c exit' + "/DOSBOX/DOSBox.exe": + - arguments: "-conf \\\"..\\\\dosboxMOO1.conf\\\" -conf \\\"..\\\\dosboxMOO1_single.conf\\\" -noconsole -c exit" when: - os: windows store: steam - workingDir: /DOSBOX - /Master Of Orion.app: + workingDir: "/DOSBOX" + "/Master Of Orion.app": - when: - os: mac store: steam - /start.sh: + "/start.sh": - when: - os: linux store: steam @@ -328042,12 +328987,12 @@ Master of Orion: id: 410970 Master of Orion (2016): files: - /config.cfg: + "/config.cfg": tags: - config when: - os: windows - /Master of Orion/Saves: + "/Master of Orion/Saves": tags: - save when: @@ -328069,24 +329014,24 @@ Master of Orion (2016): installDir: Master of Orion: {} launch: - /MasterOfOrion.app: + "/MasterOfOrion.app": - when: - bit: 64 os: mac store: steam - /MasterOfOrion.exe: + "/MasterOfOrion.exe": - when: - bit: 64 os: windows store: steam - /MasterOfOrion.x86_64: + "/MasterOfOrion.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 298050 -'Master of Orion II: Battle at Antares': +"Master of Orion II: Battle at Antares": gog: id: 1207661633 id: @@ -328095,17 +329040,17 @@ Master of Orion (2016): installDir: Master of Orion 2: {} launch: - /DOSBOX/DOSBox.exe: - - arguments: '-conf \"..\\dosboxMOO2.conf\" -conf \"..\\dosboxMOO2_single.conf\" -noconsole -c exit' + "/DOSBOX/DOSBox.exe": + - arguments: "-conf \\\"..\\\\dosboxMOO2.conf\\\" -conf \\\"..\\\\dosboxMOO2_single.conf\\\" -noconsole -c exit" when: - os: windows store: steam - workingDir: /DOSBOX - /Master Of Orion 2.app: + workingDir: "/DOSBOX" + "/Master Of Orion 2.app": - when: - os: mac store: steam - /start.sh: + "/start.sh": - when: - os: linux store: steam @@ -328117,7 +329062,7 @@ Master of Orion III: installDir: Master of Orion 3: {} launch: - /moo3.exe: + "/moo3.exe": - when: - os: windows store: steam @@ -328127,25 +329072,25 @@ Master of Rogues - The Seven Artifacts: installDir: Master of Rogues - The Seven Artifacts: {} launch: - /Seven.exe: + "/Seven.exe": - when: - os: windows store: steam - /Seven.x86: + "/Seven.x86": - when: - os: linux store: steam steam: id: 928130 -'Master of Secrets: Dark Europe': +"Master of Secrets: Dark Europe": installDir: Master Of Secrets - Dark Europe: {} launch: - /Master of Secrets Dark Europe.app/Contents/MacOS/Master of Secrets Dark Europe: + "/Master of Secrets Dark Europe.app/Contents/MacOS/Master of Secrets Dark Europe": - when: - os: mac store: steam - /Master of Secrets Dark Europe.exe: + "/Master of Secrets Dark Europe.exe": - when: - os: windows store: steam @@ -328155,7 +329100,7 @@ Master of the Forbidden Sea: installDir: Master of the Forbidden Sea: {} launch: - /MotFS.exe: + "/MotFS.exe": - when: - os: windows store: steam @@ -328165,28 +329110,28 @@ Master of the Harem Guild: installDir: Master of the Harem Guild: {} launch: - /HaremGuild.app: + "/HaremGuild.app": - when: - os: mac store: steam - /HaremGuild.exe: + "/HaremGuild.exe": - when: - os: windows store: steam - /HaremGuild.sh: + "/HaremGuild.sh": - when: - os: linux store: steam steam: id: 803040 -'Master of the Skies: The Red Ace': +"Master of the Skies: The Red Ace": files: - /characters.ini: + "/characters.ini": tags: - save when: - os: windows - /redace.ini: + "/redace.ini": tags: - config when: @@ -328195,7 +329140,7 @@ Masteroid: installDir: Masteroid: {} launch: - /Masteroid.exe: + "/Masteroid.exe": - when: - bit: 32 os: windows @@ -328204,12 +329149,12 @@ Masteroid: id: 1148320 Masters of Anima: files: - /WarlordResources/_Saves: + "/WarlordResources/_Saves": tags: - save when: - os: windows - /WarlordResources/_Saves/Local Settings.ob: + "/WarlordResources/_Saves/Local Settings.ob": tags: - config when: @@ -328219,7 +329164,7 @@ Masters of Anima: installDir: Masters of Anima: {} launch: - /Masters of Anima.exe: + "/Masters of Anima.exe": - when: - os: windows store: steam @@ -328234,11 +329179,11 @@ Masters of Puzzle: installDir: Masters of Puzzle: {} launch: - /Contents/MacOS/Masters of Puzzle: + "/Contents/MacOS/Masters of Puzzle": - when: - os: mac store: steam - /Masters of Puzzle.exe: + "/Masters of Puzzle.exe": - when: - bit: 64 os: windows @@ -328249,11 +329194,11 @@ Masters of the World - Geopolitical Simulator 3: installDir: Masters of the World: {} launch: - /MASTERS OF THE WORLD.app: + "/MASTERS OF THE WORLD.app": - when: - os: mac store: steam - /_start.exe: + "/_start.exe": - when: - os: windows store: steam @@ -328261,7 +329206,7 @@ Masters of the World - Geopolitical Simulator 3: id: 268890 Masterspace: files: - /Save: + "/Save": tags: - save when: @@ -328269,32 +329214,32 @@ Masterspace: installDir: Masterspace: {} launch: - /Masterspace.exe: + "/Masterspace.exe": - when: - os: windows store: steam steam: id: 282860 -Mat Hoffman's Pro BMX: +"Mat Hoffman's Pro BMX": files: - /bmx.ini: + "/bmx.ini": tags: - config when: - os: windows - /save: + "/save": tags: - save when: - os: windows Mata Hari: files: - /MataHari/Savegames/slot*.sav: + "/MataHari/Savegames/slot*.sav": tags: - save when: - os: windows - /MataHari/config.xml: + "/MataHari/config.xml": tags: - config when: @@ -328302,7 +329247,7 @@ Mata Hari: installDir: Mata Hari: {} launch: - /MataHari.exe: + "/MataHari.exe": - when: - store: steam steam: @@ -328311,7 +329256,7 @@ Matanga: installDir: Matanga: {} launch: - /Matanga.exe: + "/Matanga.exe": - when: - bit: 64 os: windows @@ -328322,7 +329267,7 @@ Match 3 Revolution: installDir: Match 3 Revolution: {} launch: - /MATCH3 REVOLUTION.exe: + "/MATCH3 REVOLUTION.exe": - when: - os: windows store: steam @@ -328332,7 +329277,7 @@ Match Connect Challenge: installDir: Match Connect Challenge: {} launch: - /Match Connect Challenge.exe: + "/Match Connect Challenge.exe": - when: - os: windows store: steam @@ -328347,12 +329292,12 @@ Match More: installDir: Match More: {} launch: - /MM.exe: + "/MM.exe": - when: - bit: 32 os: windows store: steam - /MMwin64.exe: + "/MMwin64.exe": - when: - bit: 64 os: windows @@ -328363,15 +329308,15 @@ Match Point: installDir: Match Point: {} launch: - /Match Point.app: + "/Match Point.app": - when: - os: mac store: steam - /Match Point.exe: + "/Match Point.exe": - when: - os: windows store: steam - /Match Point.x86: + "/Match Point.x86": - when: - os: linux store: steam @@ -328381,11 +329326,11 @@ Match Solitaire: installDir: Match Solitaire: {} launch: - /Match Solitaire.app: + "/Match Solitaire.app": - when: - os: mac store: steam - /MatchSolitaire.WindowsDesktop.exe: + "/MatchSolitaire.WindowsDesktop.exe": - when: - os: windows store: steam @@ -328395,11 +329340,11 @@ Match Three Pirates! Heir to Davy Jones: installDir: Match Three Pirates!: {} launch: - /Match_Three_Pirates!_Heir_to_Davy_Jones.app: + "/Match_Three_Pirates!_Heir_to_Davy_Jones.app": - when: - os: mac store: steam - /Match_Three_Pirates!_Heir_to_Davy_Jones.exe: + "/Match_Three_Pirates!_Heir_to_Davy_Jones.exe": - when: - os: windows store: steam @@ -328408,14 +329353,14 @@ Match Three Pirates! Heir to Davy Jones: Match and Crash: steam: id: 677200 -'Matchpoint: Tennis Championships': +"Matchpoint: Tennis Championships": files: - /AppData/LocalLow/Torus Games/Matchpoint/Career*.sav: + "/AppData/LocalLow/Torus Games/Matchpoint/Career*.sav": tags: - save when: - os: windows - /AppData/LocalLow/Torus Games/Matchpoint/Matchpoint*.save: + "/AppData/LocalLow/Torus Games/Matchpoint/Matchpoint*.save": tags: - save when: @@ -328423,7 +329368,7 @@ Match and Crash: installDir: Matchpoint: {} launch: - /Matchpoint.exe: + "/Matchpoint.exe": - when: - os: windows store: steam @@ -328433,7 +329378,7 @@ Matchville: installDir: MatchVille: {} launch: - /MatchVille.exe: + "/MatchVille.exe": - when: - store: steam steam: @@ -328443,7 +329388,7 @@ Matchy Star: id: 782430 MatchyGotchy: files: - /userdata//772700/remote/save.dat: + "/userdata//772700/remote/save.dat": tags: - save when: @@ -328452,12 +329397,12 @@ MatchyGotchy: installDir: Matchygotchy: {} launch: - /MatchyGotchy.exe: + "/MatchyGotchy.exe": - when: - os: windows store: steam registry: - 'HKEY_CURRENT_USER/Software/Silverware Games, Inc./MatchyGotchy': + "HKEY_CURRENT_USER/Software/Silverware Games, Inc./MatchyGotchy": tags: - config steam: @@ -328466,7 +329411,7 @@ MatchyGotchy Z: installDir: MatchyGotchy Z: {} launch: - /MatchyGotchy Z.exe: + "/MatchyGotchy Z.exe": - when: - os: windows store: steam @@ -328474,7 +329419,7 @@ MatchyGotchy Z: id: 888220 Material Girl: files: - /www/save: + "/www/save": tags: - save when: @@ -328482,7 +329427,7 @@ Material Girl: installDir: Material Girl: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -328492,12 +329437,12 @@ Math Classroom Challenge: installDir: Math Classroom Challenge: {} launch: - /Math CC.exe: + "/Math CC.exe": - when: - bit: 64 os: windows store: steam - /Math_Classroom_Challenge.app/Contents/MacOS/Math_Classroom_Challenge: + "/Math_Classroom_Challenge.app/Contents/MacOS/Math_Classroom_Challenge": - when: - os: mac store: steam @@ -328507,12 +329452,12 @@ Math Combat Challenge: installDir: Math Combat Challenge: {} launch: - /MC2Build.exe: + "/MC2Build.exe": - when: - bit: 64 os: windows store: steam - /MC2Mac.app/Contents/MacOS/MC2Mac: + "/MC2Mac.app/Contents/MacOS/MC2Mac": - when: - os: mac store: steam @@ -328522,7 +329467,7 @@ Math Fun: installDir: Math Fun: {} launch: - /mathfun.exe: + "/mathfun.exe": - when: - os: windows store: steam @@ -328532,7 +329477,7 @@ Math Hero: installDir: Math Hero: {} launch: - /MathHero.exe: + "/MathHero.exe": - when: - os: windows store: steam @@ -328542,7 +329487,7 @@ Math Path: installDir: Math Path: {} launch: - /Math Path.exe: + "/Math Path.exe": - when: - store: steam steam: @@ -328554,11 +329499,11 @@ Math RTS: installDir: Math RTS: {} launch: - /mathRTS.app: + "/mathRTS.app": - when: - os: mac store: steam - /mathRTS.exe: + "/mathRTS.exe": - when: - os: windows store: steam @@ -328566,7 +329511,7 @@ Math RTS: id: 767960 Math Rescue: files: - /*.MR1: + "/*.MR1": tags: - save when: @@ -328574,27 +329519,27 @@ Math Rescue: installDir: Math Rescue: {} launch: - /Dosbox/dosbox: - - arguments: '-conf \"..\\MATH.conf\" -noconsole -c' + "/Dosbox/dosbox": + - arguments: "-conf \\\"..\\\\MATH.conf\\\" -noconsole -c" when: - os: linux store: steam - workingDir: /Dosbox - /Math Rescue.app: + workingDir: "/Dosbox" + "/Math Rescue.app": - when: - os: mac store: steam - /Math Rescue/dosbox/dosbox.exe: - - arguments: '-conf \"..\\MATH.conf\" -noconsole -c' + "/Math Rescue/dosbox/dosbox.exe": + - arguments: "-conf \\\"..\\\\MATH.conf\\\" -noconsole -c" when: - os: windows store: steam - workingDir: /Math Rescue/dosbox + workingDir: "/Math Rescue/dosbox" steam: id: 358200 Math Rescue Plus: files: - 'C:/REDWOOD/*.MR': + "C:/REDWOOD/*.MR": tags: - save when: @@ -328606,7 +329551,7 @@ Math The Question: installDir: Math The Question: {} launch: - /Math The Question.exe: + "/Math The Question.exe": - when: - store: steam steam: @@ -328615,7 +329560,7 @@ Math Tile: installDir: MathTile: {} launch: - /MathTile.exe: + "/MathTile.exe": - when: - os: windows store: steam @@ -328626,21 +329571,21 @@ Mathel Idle: id: 933360 Mathica: files: - /Mathica.ini: + "/Mathica.ini": tags: - config when: - os: windows - /mathica.rup: + "/mathica.rup": tags: - save when: - os: windows -'Mathoria: It All Adds Up': +"Mathoria: It All Adds Up": installDir: Mathoria It All Adds Up: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -328653,15 +329598,15 @@ Matris: installDir: Matris: {} launch: - /matris.app/Contents/MacOS/matris: + "/matris.app/Contents/MacOS/matris": - when: - os: mac store: steam - /matris.exe: + "/matris.exe": - when: - os: windows store: steam - /matris.x86: + "/matris.x86": - when: - os: linux store: steam @@ -328671,7 +329616,7 @@ Matryoshka Strike: installDir: Matryoshka Strike: {} launch: - /Matryoshka Strike.exe: + "/Matryoshka Strike.exe": - when: - os: windows store: steam @@ -328681,11 +329626,11 @@ Matter: installDir: Matter: {} launch: - /Matter.app: + "/Matter.app": - when: - os: mac store: steam - /Matter.exe: + "/Matter.exe": - when: - os: windows store: steam @@ -328698,7 +329643,7 @@ Matter of the Dreams: id: 1098620 Maui: files: - /AppData/LocalLow/Kokua Games/Maui: + "/AppData/LocalLow/Kokua Games/Maui": tags: - save when: @@ -328706,7 +329651,7 @@ Maui: installDir: Maui: {} launch: - /Maui.exe: + "/Maui.exe": - when: - bit: 32 os: windows @@ -328719,7 +329664,7 @@ Maui Mallard in Cold Shadow: installDir: Maui Mallard in Cold Shadow: {} launch: - /coldshdw.exe: + "/coldshdw.exe": - when: - os: windows store: steam @@ -328729,25 +329674,25 @@ Mausoleum of the Medusa: installDir: medusa: {} launch: - /MausoleumOfTheMedusa.app/Contents/MacOS/MausoleumOfTheMedusa: + "/MausoleumOfTheMedusa.app/Contents/MacOS/MausoleumOfTheMedusa": - when: - os: mac store: steam - /Mausoleum_of_the_Medusa.exe: + "/Mausoleum_of_the_Medusa.exe": - when: - os: windows store: steam - /Mausoleum_of_the_Medusa.x86_64: + "/Mausoleum_of_the_Medusa.x86_64": - when: - os: linux store: steam steam: id: 547260 -Mavi's Journey: +"Mavi's Journey": installDir: - Mavi's Journey: {} + "Mavi's Journey": {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -328757,15 +329702,15 @@ Max Gentlemen: installDir: MaxGentlemen: {} launch: - /MaxGentlemen.exe: + "/MaxGentlemen.exe": - when: - os: windows store: steam - /MaxGentlemenLinux: + "/MaxGentlemenLinux": - when: - os: linux store: steam - /MaxGentlemenOSX.sh: + "/MaxGentlemenOSX.sh": - when: - os: mac store: steam @@ -328777,12 +329722,12 @@ Max Gentlemen: id: 257710 Max Gentlemen Sexy Business!: files: - /AppData/LocalLow/TheMenWhoWearManyHats/Max Gentlemen Sexy Business//options.dat: + "/AppData/LocalLow/TheMenWhoWearManyHats/Max Gentlemen Sexy Business//options.dat": tags: - config when: - os: windows - /AppData/LocalLow/TheMenWhoWearManyHats/Max Gentlemen Sexy Business: + "/AppData/LocalLow/TheMenWhoWearManyHats/Max Gentlemen Sexy Business": tags: - save when: @@ -328790,11 +329735,11 @@ Max Gentlemen Sexy Business!: installDir: Max Gentlemen Sexy Business!: {} launch: - /Business.exe: + "/Business.exe": - when: - os: windows store: steam - /MaxGentlemenSexyBusiness.app: + "/MaxGentlemenSexyBusiness.app": - when: - os: mac store: steam @@ -328806,17 +329751,17 @@ Max Gentlemen Sexy Business!: id: 817840 Max Payne: files: - /Documents/Max Payne Saved Games: + "/Documents/Max Payne Saved Games": tags: - save when: - os: mac - /Max Payne Savegames: + "/Max Payne Savegames": tags: - save when: - os: windows - '{Boot}:Documents:Max Payne Saved Games or user''s Documents folder': + "{Boot}:Documents:Max Payne Saved Games or user's Documents folder": tags: - save id: @@ -328827,7 +329772,7 @@ Max Payne: installDir: Max Payne: {} launch: - /maxpayne.exe: + "/maxpayne.exe": - when: - store: steam registry: @@ -328836,14 +329781,14 @@ Max Payne: - config steam: id: 12140 -'Max Payne 2: The Fall of Max Payne': +"Max Payne 2: The Fall of Max Payne": files: - /MP2_Init.ras: + "/MP2_Init.ras": tags: - config when: - os: windows - /Max Payne 2 Savegames: + "/Max Payne 2 Savegames": tags: - save when: @@ -328851,13 +329796,13 @@ Max Payne: id: steamExtra: - 12260 + - 202900 - 210410 - 210430 - - 202900 installDir: Max Payne 2 The Fall of Max Payne: {} launch: - /maxpayne2.exe: + "/maxpayne2.exe": - when: - store: steam registry: @@ -328868,12 +329813,12 @@ Max Payne: id: 12150 Max Payne 3: files: - /Rockstar Games/Max Payne 3: + "/Rockstar Games/Max Payne 3": tags: - config when: - os: windows - /Rockstar Games/Max Payne 3/Profiles/: + "/Rockstar Games/Max Payne 3/Profiles/": tags: - save when: @@ -328881,105 +329826,105 @@ Max Payne 3: installDir: Max Payne 3: {} launch: - /Max Payne 3.app/Contents/MacOS/cider: - - arguments: '-psn' + "/Max Payne 3.app/Contents/MacOS/cider": + - arguments: "-psn" when: - os: mac store: steam - workingDir: /Max Payne 3 - /Max Payne 3/PlayMaxPayne3.exe: + workingDir: "/Max Payne 3" + "/Max Payne 3/PlayMaxPayne3.exe": - when: - os: windows store: steam - workingDir: /Max Payne 3 + workingDir: "/Max Payne 3" steam: id: 204100 Max Stern: installDir: Max Stern: {} launch: - /max_stern.app: + "/max_stern.app": - when: - bit: 64 os: mac store: steam - /nw: + "/nw": - when: - os: linux store: steam - /nw.exe: + "/nw.exe": - when: - os: windows store: steam steam: id: 531240 -'Max and Maya: Cat Simulator': +"Max and Maya: Cat Simulator": steam: id: 772410 Max and the Magic Marker: installDir: Max and the Magic Marker: {} launch: - /Max.app: + "/Max.app": - when: - os: mac store: steam - /Max.exe: + "/Max.exe": - when: - os: windows store: steam steam: id: 50820 -Max's Big Bust - A Captain Nekorai Tale: +"Max's Big Bust - A Captain Nekorai Tale": installDir: - Max's Big Bust - A Captain Nekorai Tale: {} + "Max's Big Bust - A Captain Nekorai Tale": {} launch: - /MBB.app: + "/MBB.app": - when: - os: mac store: steam - /MBB.exe: + "/MBB.exe": - when: - os: windows store: steam - /MBB.sh: + "/MBB.sh": - when: - os: linux store: steam steam: id: 416360 -Max's Big Bust 2 - Max's Bigger Bust: +"Max's Big Bust 2 - Max's Bigger Bust": installDir: - Max's Big Bust 2 - Max's Bigger Bust: {} + "Max's Big Bust 2 - Max's Bigger Bust": {} launch: - /BiggerBust.app: + "/BiggerBust.app": - when: - os: mac store: steam - /BiggerBust.exe: + "/BiggerBust.exe": - when: - os: windows store: steam - /BiggerBust.sh: + "/BiggerBust.sh": - when: - os: linux store: steam steam: id: 1432650 -'Max, an Autistic Journey': +"Max, an Autistic Journey": installDir: - 'MAX, AN AUTISTIC JOURNEY': {} + "MAX, AN AUTISTIC JOURNEY": {} steam: id: 511630 -'Max: The Curse of Brotherhood': +"Max: The Curse of Brotherhood": files: - /userdata//255390/remote/settings.dat: + "/userdata//255390/remote/settings.dat": tags: - config when: - os: windows store: steam - /userdata//255390/remote/userdata.dat: + "/userdata//255390/remote/userdata.dat": tags: - save when: @@ -328987,7 +329932,7 @@ Max's Big Bust 2 - Max's Bigger Bust: installDir: Max The Curse of Brotherhood: {} launch: - /Max2.exe: + "/Max2.exe": - when: - os: windows store: steam @@ -329003,7 +329948,7 @@ Maxi Pool Masters VR: id: 831250 Maximum Action: files: - /AppData/LocalLow/BalloonMoose/Maximum Action/Saves: + "/AppData/LocalLow/BalloonMoose/Maximum Action/Saves": tags: - config - save @@ -329014,7 +329959,7 @@ Maximum Action: installDir: Maximum Action: {} launch: - /Maximum Action.exe: + "/Maximum Action.exe": - when: - os: windows store: steam @@ -329024,7 +329969,7 @@ Maximum Archery The Game: installDir: Maximum Archery The Game: {} launch: - /MaximumArcheryTheGame.exe: + "/MaximumArcheryTheGame.exe": - when: - os: windows store: steam @@ -329034,7 +329979,7 @@ Maximum Momentum: installDir: Maximum Momentum: {} launch: - /MaximumMomentum.exe: + "/MaximumMomentum.exe": - when: - os: windows store: steam @@ -329044,7 +329989,7 @@ Maximum Override: installDir: MaximumOverride: {} launch: - /maximum.exe: + "/maximum.exe": - when: - store: steam steam: @@ -329053,25 +329998,25 @@ May: installDir: May: {} launch: - /May.app: + "/May.app": - when: - os: mac store: steam - /May.exe: + "/May.exe": - when: - os: windows store: steam - /May.sh: + "/May.sh": - when: - os: linux store: steam steam: id: 838340 -'May''s Mysteries: The Secret of Dragonville': +"May's Mysteries: The Secret of Dragonville": installDir: MaysMysteries: {} launch: - /MaysMystery.exe: + "/MaysMystery.exe": - when: - os: windows store: steam @@ -329081,76 +330026,79 @@ Mayan Death Robots: installDir: Mayan Death Robots: {} launch: - /Mayan Death Robots.app: + "/Mayan Death Robots.app": - when: - os: mac store: steam - /Mayan Death Robots.exe: + "/Mayan Death Robots.exe": - when: - os: windows store: steam - /Mayan Death Robots.x86: + "/Mayan Death Robots.x86": - when: - os: linux store: steam steam: id: 347470 -'Mayan Prophecies: Blood Moon': +"Mayan Prophecies: Blood Moon": installDir: - Mayan Prophecies Blood Moon Collector's Edition: {} + "Mayan Prophecies Blood Moon Collector's Edition": {} launch: - /MayanProphecies_BloodMoon_CE.exe: + "/MayanProphecies_BloodMoon_CE.exe": - when: - os: windows store: steam steam: id: 805020 -'Mayan Prophecies: Cursed Island': +"Mayan Prophecies: Cursed Island": installDir: - Mayan Prophecies Cursed Island Collector's Edition: {} + "Mayan Prophecies Cursed Island Collector's Edition": {} launch: - /MayanProphecies_CursedIsland_CE.exe: + "/MayanProphecies_CursedIsland_CE.exe": - when: - os: windows store: steam steam: id: 678430 -'Mayan Prophecies: Ship of Spirits': +"Mayan Prophecies: Ship of Spirits": installDir: - Mayan Prophecies Ship of Spirits Collector's Edition: {} + "Mayan Prophecies Ship of Spirits Collector's Edition": {} launch: - /MayanProphecies_ShipOfSpiritsCE.exe: + "/MayanProphecies_ShipOfSpiritsCE.exe": - when: - store: steam steam: id: 568160 -Mayas' Virtual Brush: +"Mayas' Virtual Brush": installDir: - Mayas' Virtual Brush: {} + "Mayas' Virtual Brush": {} steam: id: 682250 -'Maybe Drinking: Russian Style': +"Maybe Drinking: Russian Style": steam: id: 791540 Maybot Run: installDir: Maybot Run: {} launch: - /Maybot Run.exe: + "/Maybot Run.exe": - when: - bit: 32 os: windows store: steam - /MaybotRun.app/Contents/MacOS/MaybotRun: + - bit: 64 + os: windows + store: steam + "/MaybotRun.app/Contents/MacOS/MaybotRun": - when: - os: mac store: steam - /MaybotRun.x86: + "/MaybotRun.x86": - when: - bit: 32 os: linux store: steam - /MaybotRun.x86_64: + "/MaybotRun.x86_64": - when: - bit: 64 os: linux @@ -329161,7 +330109,7 @@ Mayhem Above: installDir: Mayhem Above: {} launch: - /Mayhem Above.exe: + "/Mayhem Above.exe": - when: - bit: 64 os: windows @@ -329172,7 +330120,7 @@ Mayhem Intergalactic: installDir: Mayhem Intergalactic: {} launch: - /mayhemig.exe: + "/mayhemig.exe": - when: - store: steam steam: @@ -329181,7 +330129,7 @@ Mayhem Masters: installDir: Mayhem Masters: {} launch: - /Mayhem Masters.exe: + "/Mayhem Masters.exe": - when: - os: windows store: steam @@ -329191,11 +330139,11 @@ Mayhem Triple: installDir: Mayhem Triple: {} launch: - /Mayhem3Custom.exe: + "/Mayhem3Custom.exe": - when: - os: windows store: steam - /Mayhem3Steam.exe: + "/Mayhem3Steam.exe": - when: - os: windows store: steam @@ -329205,7 +330153,7 @@ Mayhem ZX: installDir: Mayhem ZX: {} launch: - /Mayhem ZX.exe: + "/Mayhem ZX.exe": - when: - os: windows store: steam @@ -329217,7 +330165,7 @@ Mayhem in Single Valley: installDir: Mayhem in Single Valley: {} launch: - /MSV.exe: + "/MSV.exe": - when: - store: steam steam: @@ -329226,7 +330174,7 @@ Mayjasmine Episode01 - What is God?: installDir: Mayjasmine episode01 What is God: {} launch: - /jasmine.exe: + "/jasmine.exe": - when: - os: windows store: steam @@ -329237,9 +330185,9 @@ Mayonez - Dark Comedy Slav Adventure RPG: id: 896410 Maytroid: installDir: - Maytroid. I swear it's a nice game too: {} + "Maytroid. I swear it's a nice game too": {} launch: - /nw.exe: + "/nw.exe": - when: - store: steam steam: @@ -329248,7 +330196,7 @@ Mazania: installDir: Mazania: {} launch: - /Mazania.exe: + "/Mazania.exe": - when: - os: windows store: steam @@ -329258,7 +330206,7 @@ Maze: installDir: Maze: {} launch: - /MazeAdventure.exe: + "/MazeAdventure.exe": - when: - bit: 64 os: windows @@ -329269,7 +330217,7 @@ Maze 3D: installDir: Maze 3D: {} launch: - /Maze3D.exe: + "/Maze3D.exe": - when: - os: windows store: steam @@ -329279,7 +330227,7 @@ Maze 4D: installDir: Maze 4D: {} launch: - /Project4D.exe: + "/Project4D.exe": - when: - os: windows store: steam @@ -329289,26 +330237,26 @@ Maze And Dagger: installDir: MazeAndDagger: {} launch: - /Maze And Dagger Linux/MazeAndDagger.x86: + "/Maze And Dagger Linux/MazeAndDagger.x86": - when: - bit: 32 os: linux store: steam - /Maze And Dagger Linux/MazeAndDagger.x86_64: + "/Maze And Dagger Linux/MazeAndDagger.x86_64": - when: - bit: 64 os: linux store: steam - /Maze And Dagger Mac/MazeAndDagger.app: + "/Maze And Dagger Mac/MazeAndDagger.app": - when: - os: mac store: steam - /Maze And Dagger Win 32/MazeAndDagger/MazeAndDagger.exe: + "/Maze And Dagger Win 32/MazeAndDagger/MazeAndDagger.exe": - when: - bit: 32 os: windows store: steam - /Maze And Dagger Win 64/MazeAndDagger/MazeAndDagger.exe: + "/Maze And Dagger Win 64/MazeAndDagger/MazeAndDagger.exe": - when: - bit: 64 os: windows @@ -329319,11 +330267,11 @@ Maze Bandit: installDir: Maze Bandit: {} launch: - /MazeBandit.app/Contents/MacOS/MazeBandit: + "/MazeBandit.app/Contents/MacOS/MazeBandit": - when: - os: mac store: steam - /MazeBandit.exe: + "/MazeBandit.exe": - when: - os: windows store: steam @@ -329333,7 +330281,7 @@ Maze Gold Run: installDir: Maze Gold Run: {} launch: - /MazeGoldRun.exe: + "/MazeGoldRun.exe": - when: - bit: 64 os: windows @@ -329344,12 +330292,12 @@ Maze Lord: installDir: Maze Lord: {} launch: - /MazeLord.exe: + "/MazeLord.exe": - when: - os: windows store: steam - /MazeLord.x86: - - arguments: '-force-opengl' + "/MazeLord.x86": + - arguments: "-force-opengl" when: - os: linux store: steam @@ -329359,7 +330307,7 @@ Maze Madness: installDir: Maze Madness: {} launch: - /MazeMadness.exe: + "/MazeMadness.exe": - when: - store: steam steam: @@ -329368,7 +330316,7 @@ Maze Ninja: installDir: Maze Ninja: {} launch: - /Maze Ninja.exe: + "/Maze Ninja.exe": - when: - os: windows store: steam @@ -329378,48 +330326,48 @@ Maze Of Time VR: installDir: Maze Of Time: {} launch: - /Maze Of Time Linux/Maze Of Time.x86: + "/Maze Of Time Linux/Maze Of Time.x86": - when: - os: linux store: steam - workingDir: /Maze Of Time Linux/Maze Of Time_Data - /Maze Of Time Mac/Maze Of Time.app: + workingDir: "/Maze Of Time Linux/Maze Of Time_Data" + "/Maze Of Time Mac/Maze Of Time.app": - when: - os: mac store: steam - workingDir: /Maze Of Time Mac/Maze Of Time.app/Contents - /Maze Of Time Win/Maze Of Time.exe: + workingDir: "/Maze Of Time Mac/Maze Of Time.app/Contents" + "/Maze Of Time Win/Maze Of Time.exe": - when: - os: windows store: steam - workingDir: /Maze Of Time Win/Maze Of Time_Data + workingDir: "/Maze Of Time Win/Maze Of Time_Data" steam: id: 1028990 -'Maze Quest 1: The Forest': +"Maze Quest 1: The Forest": installDir: Maze Quest 1 The Forest: {} launch: - /Game: - - arguments: '--in-process-gpu' + "/Game": + - arguments: "--in-process-gpu" when: - os: linux store: steam - /Game.exe: - - arguments: '--in-process-gpu' + "/Game.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam steam: id: 895930 -'Maze Quest 2: The Desert': +"Maze Quest 2: The Desert": installDir: Maze Quest 2 The Desert: {} launch: - /Game: + "/Game": - when: - os: linux store: steam - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -329429,7 +330377,7 @@ Maze Roller: installDir: Maze Roller: {} launch: - /MazeRoller.exe: + "/MazeRoller.exe": - when: - bit: 64 os: windows @@ -329448,15 +330396,15 @@ Maze Sounds: installDir: Maze Sounds: {} launch: - /MazeSounds.exe: + "/MazeSounds.exe": - when: - os: windows store: steam - /MazeSounds/Binaries/Linux/MazeSounds: + "/MazeSounds/Binaries/Linux/MazeSounds": - when: - os: linux store: steam - /MazeSounds/Binaries/Mac/MazeSounds.app: + "/MazeSounds/Binaries/Mac/MazeSounds.app": - when: - os: mac store: steam @@ -329466,7 +330414,7 @@ Maze Trials: installDir: Maze Trials: {} launch: - /MazeTrials.exe: + "/MazeTrials.exe": - when: - os: windows store: steam @@ -329476,7 +330424,7 @@ Maze Up!: installDir: MazeUp: {} launch: - /mazeup.exe: + "/mazeup.exe": - when: - os: windows store: steam @@ -329486,7 +330434,7 @@ Maze Walker: installDir: Maze Walker: {} launch: - /MazeWalker.exe: + "/MazeWalker.exe": - when: - os: windows store: steam @@ -329496,7 +330444,7 @@ Maze of Adventures: installDir: Maze Of Adventures: {} launch: - /Maze Of Adventures.exe: + "/Maze Of Adventures.exe": - when: - os: windows store: steam @@ -329514,7 +330462,7 @@ Maze of Memories: installDir: Maze of Memories: {} launch: - /Maze of Memories.exe: + "/Maze of Memories.exe": - when: - os: windows store: steam @@ -329523,11 +330471,11 @@ Maze of Memories: Maze of Pain: steam: id: 661390 -'Maze: Subject 360': +"Maze: Subject 360": installDir: - Maze Subject 360 Collector's Edition: {} + "Maze Subject 360 Collector's Edition": {} launch: - /Maze_Subject360_CE.exe: + "/Maze_Subject360_CE.exe": - when: - store: steam steam: @@ -329536,7 +330484,7 @@ MazeBot: installDir: MAZEBOT: {} launch: - /MazeBot.exe: + "/MazeBot.exe": - when: - os: windows store: steam @@ -329546,7 +330494,7 @@ MazeQuest 2: installDir: MazeQuest - An Adventure RPG: {} launch: - /MazeQuest 2.exe: + "/MazeQuest 2.exe": - when: - os: windows store: steam @@ -329556,7 +330504,7 @@ Mazeglaser: installDir: Mazeglaser: {} launch: - /mazeglaser.exe: + "/mazeglaser.exe": - when: - os: windows store: steam @@ -329566,15 +330514,15 @@ Mazement: installDir: Mazement: {} launch: - /Mazement.app: + "/Mazement.app": - when: - os: mac store: steam - /mazement.exe: + "/mazement.exe": - when: - os: windows store: steam - /mazement.x86: + "/mazement.x86": - when: - os: linux store: steam @@ -329584,22 +330532,22 @@ Mazes and Mages: installDir: Mazes and Mages: {} launch: - /builds/win32/mazesandmages.exe: + "/builds/win32/mazesandmages.exe": - when: - os: windows store: steam - workingDir: /builds/win32 + workingDir: "/builds/win32" steam: id: 870010 Mazes and Mages 2: installDir: Mazes and Mages 2: {} launch: - /builds/win32/mazesandmages2.exe: + "/builds/win32/mazesandmages2.exe": - when: - os: windows store: steam - workingDir: /builds/win32 + workingDir: "/builds/win32" steam: id: 1127350 Mazgeon: @@ -329609,15 +330557,15 @@ McDROID: installDir: McDROID: {} launch: - /McDROID.app: + "/McDROID.app": - when: - os: mac store: steam - /McDROID.exe: + "/McDROID.exe": - when: - os: windows store: steam - /McDROID.x86: + "/McDROID.x86": - when: - os: linux store: steam @@ -329625,34 +330573,34 @@ McDROID: id: 252970 McOsu: files: - /cfg: + "/cfg": tags: - config when: - os: windows - - os: linux - os: mac - /scores.db: + - os: linux + "/scores.db": tags: - save when: - os: windows - - os: linux - os: mac - /scoresvr.db: + - os: linux + "/scoresvr.db": tags: - save when: - os: windows - - os: linux - os: mac + - os: linux installDir: McOsu: {} steam: id: 607260 McPixel: files: - /gd.sos.McPixel: + "/gd.sos.McPixel": tags: - config when: @@ -329660,11 +330608,11 @@ McPixel: installDir: mcpixel: {} launch: - /McLauncher.app: + "/McLauncher.app": - when: - os: mac store: steam - /McLauncher.exe: + "/McLauncher.exe": - when: - os: windows store: steam @@ -329672,12 +330620,22 @@ McPixel: id: 220860 McPixel 3: files: - /McPixel3/progress.json: + "/progress.json (itch.io Windows 95 and Windows NT versions)": tags: - config when: - os: windows - /McPixel3/settings.json: + "/settings.json (itch.io Windows 95 and Windows NT versions)": + tags: + - save + when: + - os: windows + "/McPixel3/progress.json": + tags: + - config + when: + - os: windows + "/McPixel3/settings.json": tags: - save when: @@ -329687,35 +330645,35 @@ McPixel 3: installDir: McPixel 3: {} launch: - /McPixel3.app: + "/McPixel3.app": - when: - os: mac store: steam - /bin/McPixel3.exe: + "/bin/McPixel3.exe": - when: - bit: 64 os: windows store: steam - workingDir: /bin - /bin/McPixel3_x86.exe: + workingDir: "/bin" + "/bin/McPixel3_x86.exe": - when: - bit: 32 os: windows store: steam - workingDir: /bin - /bin/mcpixel3.sh: + workingDir: "/bin" + "/bin/mcpixel3.sh": - when: - bit: 64 os: linux store: steam - workingDir: /bin + workingDir: "/bin" steam: id: 1338580 McRogue: installDir: McRogue: {} launch: - /McRogue.exe: + "/McRogue.exe": - when: - os: windows store: steam @@ -329725,7 +330683,7 @@ Me And Dungeons: installDir: MeAndDungeons: {} launch: - /MeAndDungeons.exe: + "/MeAndDungeons.exe": - when: - os: windows store: steam @@ -329738,7 +330696,7 @@ Me Smart Orc: installDir: Me Smart Orc: {} launch: - /Quest.exe: + "/Quest.exe": - when: - os: windows store: steam @@ -329748,7 +330706,7 @@ Me and myself: installDir: Me and myself: {} launch: - /MeAndMyself.exe: + "/MeAndMyself.exe": - when: - os: windows store: steam @@ -329756,7 +330714,7 @@ Me and myself: id: 1207010 Meadow: files: - /Meadow_Data/Saves: + "/Meadow_Data/Saves": tags: - save when: @@ -329764,15 +330722,15 @@ Meadow: installDir: Meadow: {} launch: - /Meadow.app: + "/Meadow.app": - when: - os: mac store: steam - /Meadow.exe: + "/Meadow.exe": - when: - os: windows store: steam - /Meadow.x86: + "/Meadow.x86": - when: - os: linux store: steam @@ -329786,7 +330744,7 @@ Meadow Fun!!: installDir: MeadowFun: {} launch: - /MeadowFun.exe: + "/MeadowFun.exe": - when: - os: windows store: steam @@ -329794,7 +330752,7 @@ Meadow Fun!!: id: 992520 Meadowland: files: - /MMFApplications: + "/MMFApplications": tags: - save when: @@ -329802,7 +330760,7 @@ Meadowland: installDir: Meadowland: {} launch: - /Meadowland Steam.exe: + "/Meadowland Steam.exe": - when: - os: windows store: steam @@ -329812,11 +330770,11 @@ Mean Routine: installDir: Mean Routine: {} launch: - /Mean Routine.app/Contents/MacOS/Mean Routine: + "/Mean Routine.app/Contents/MacOS/Mean Routine": - when: - os: mac store: steam - /Mean Routine.exe: + "/Mean Routine.exe": - when: - os: windows store: steam @@ -329826,8 +330784,8 @@ Meandering Fiend: installDir: Meandering Fiend: {} launch: - /MeanderingFiend.exe: - - arguments: '--in-process-gpu' + "/MeanderingFiend.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam @@ -329835,12 +330793,12 @@ Meandering Fiend: id: 1193600 Meanders: files: - /ISLE/Saved/Config/WindowsNoEditor: + "/ISLE/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /ISLE/Saved/SaveGames: + "/ISLE/Saved/SaveGames": tags: - save when: @@ -329848,25 +330806,25 @@ Meanders: installDir: MEANDERS: {} launch: - /ISLE.exe: + "/ISLE.exe": - when: - os: windows store: steam steam: id: 734920 -'Meanwhile: An Interactive Comic Book': +"Meanwhile: An Interactive Comic Book": installDir: Meanwhile: {} launch: - /Meanwhile.app/Contents/MacOS/Meanwhile: + "/Meanwhile.app/Contents/MacOS/Meanwhile": - when: - os: mac store: steam - /Meanwhile.exe: + "/Meanwhile.exe": - when: - os: windows store: steam - /Meanwhile.x86_64: + "/Meanwhile.x86_64": - when: - bit: 64 os: linux @@ -329882,25 +330840,25 @@ Meat Puppet: installDir: Meat Puppet: {} launch: - /mt_launcher.exe: + "/mt_launcher.exe": - when: - os: windows store: steam steam: id: 2218770 -'MeatPossible: Chapter 1.5': +"MeatPossible: Chapter 1.5": installDir: MeatPossible Chapter 1.5: {} launch: - /MeatPossible Chapter 1.5: + "/MeatPossible Chapter 1.5": - when: - os: linux store: steam - /MeatPossible Chapter 1.5.app/Contents/MacOS/nwjs: + "/MeatPossible Chapter 1.5.app/Contents/MacOS/nwjs": - when: - os: mac store: steam - /MeatPossible Chapter 1.5.exe: + "/MeatPossible Chapter 1.5.exe": - when: - os: windows store: steam @@ -329910,7 +330868,7 @@ Meaty McSkinBones: installDir: Meaty McSkinBones: {} launch: - /SplitGame.exe: + "/SplitGame.exe": - when: - os: windows store: steam @@ -329926,11 +330884,11 @@ Mech Anarchy: installDir: Mech Anarchy: {} launch: - /Mech Anarchy.exe: + "/Mech Anarchy.exe": - when: - os: windows store: steam - /run.sh: + "/run.sh": - when: - os: linux store: steam @@ -329940,7 +330898,7 @@ Mech Chip: installDir: Mech Chip: {} launch: - /MechChip.exe: + "/MechChip.exe": - when: - os: windows store: steam @@ -329948,12 +330906,12 @@ Mech Chip: id: 1010830 Mech Engineer: files: - /Mech_Engineer/data: + "/Mech_Engineer/data": tags: - save when: - os: windows - /Mech_Engineer/data/settings.ini: + "/Mech_Engineer/data/settings.ini": tags: - config when: @@ -329961,7 +330919,7 @@ Mech Engineer: installDir: Mech Engineer: {} launch: - /Mech_Engineer.exe: + "/Mech_Engineer.exe": - when: - os: windows store: steam @@ -329979,7 +330937,7 @@ Mech League Hunting: installDir: Mech League Hunting: {} launch: - /Mech League Hunting.exe: + "/Mech League Hunting.exe": - when: - bit: 64 os: windows @@ -329989,24 +330947,24 @@ Mech League Hunting: Mech League Smash: steam: id: 905360 -'Mech Marines: Steel March': +"Mech Marines: Steel March": installDir: Mech Marines: {} launch: - /MechMarines.app: + "/MechMarines.app": - when: - os: mac store: steam - /MechMarines.exe: + "/MechMarines.exe": - when: - os: windows store: steam - /MechMarines.x86: + "/MechMarines.x86": - when: - bit: 32 os: linux store: steam - /MechMarines.x86_64: + "/MechMarines.x86_64": - when: - bit: 64 os: linux @@ -330017,7 +330975,7 @@ Mech Mechanic Simulator: installDir: Mech Mechanic Simulator: {} launch: - /Mech Mechanic Simulator.exe: + "/Mech Mechanic Simulator.exe": - when: - os: windows store: steam @@ -330025,12 +330983,12 @@ Mech Mechanic Simulator: id: 1044980 Mech Merc Company: files: - /AppData/LocalLow/MichaelShoots/MechMercCompany/Careers: + "/AppData/LocalLow/MichaelShoots/MechMercCompany/Careers": tags: - save when: - os: windows - /AppData/LocalLow/MichaelShoots/MechMercCompany/Configs: + "/AppData/LocalLow/MichaelShoots/MechMercCompany/Configs": tags: - config when: @@ -330038,7 +330996,7 @@ Mech Merc Company: installDir: MechMercCompany: {} launch: - /MechMercCompany.exe: + "/MechMercCompany.exe": - when: - os: windows store: steam @@ -330048,7 +331006,7 @@ Mech Rage: installDir: Mech Rage: {} launch: - /MechRage.exe: + "/MechRage.exe": - when: - os: windows store: steam @@ -330061,24 +331019,24 @@ Mech Skeleton: id: 606360 MechCommander: files: - /PREFS.CFG: + "/PREFS.CFG": tags: - config when: - os: windows - /data/savegame: + "/data/savegame": tags: - save when: - os: windows MechCommander 2: files: - /data/savegame: + "/data/savegame": tags: - save when: - os: windows - /options.cfg: + "/options.cfg": tags: - config when: @@ -330087,26 +331045,26 @@ MechCorp: installDir: MechCorp: {} launch: - /MechCorp.exe: + "/MechCorp.exe": - when: - os: windows store: steam steam: id: 838180 -'MechCube: Escape': +"MechCube: Escape": installDir: MechCube Escape: {} launch: - /m-cube: + "/m-cube": - when: - bit: 64 os: linux store: steam - /m-cube.app: + "/m-cube.app": - when: - os: mac store: steam - /m-cube.exe: + "/m-cube.exe": - when: - os: windows store: steam @@ -330116,11 +331074,11 @@ MechDefender: installDir: MechDefender: {} launch: - /MechDefender.app/Contents/MacOS/MechDefender: + "/MechDefender.app/Contents/MacOS/MechDefender": - when: - os: mac store: steam - /MechDefender.exe: + "/MechDefender.exe": - when: - os: windows store: steam @@ -330130,15 +331088,15 @@ MechRunner: installDir: MechRunner: {} launch: - /MechRunner.app: + "/MechRunner.app": - when: - os: mac store: steam - /MechRunner.exe: + "/MechRunner.exe": - when: - os: windows store: steam - /MechRunner.x86: + "/MechRunner.x86": - when: - os: linux store: steam @@ -330148,7 +331106,7 @@ MechTroid: installDir: MechTroid: {} launch: - /Mechtroid.exe: + "/Mechtroid.exe": - when: - os: windows store: steam @@ -330156,21 +331114,21 @@ MechTroid: id: 789680 MechWarrior: files: - /*.GAM: + "/*.GAM": tags: - save when: - os: dos -'MechWarrior 2: 31st Century Combat': +"MechWarrior 2: 31st Century Combat": files: - /mw2reg.cfg: + "/mw2reg.cfg": tags: - save when: - os: dos MechWarrior 3: files: - /pilots: + "/pilots": tags: - save when: @@ -330179,77 +331137,71 @@ MechWarrior 3: HKEY_CURRENT_USER/SOFTWARE/MicroProse/MechWarrior 3/1.0: tags: - config -'MechWarrior 4: Mercenaries': +"MechWarrior 4: Mercenaries": files: - /RESOURCE/Pilots: + "/RESOURCE/Pilots": tags: - save when: - os: windows - /RESOURCE/Pilots//options.mw4: + "/RESOURCE/Pilots//options.mw4": tags: - config when: - os: windows - /options.ini: + "/options.ini": tags: - config when: - os: windows -'MechWarrior 4: Vengeance': +"MechWarrior 4: Vengeance": files: - /options.ini: + "/options.ini": tags: - config when: - os: windows - /resource/pilots/: + "/resource/pilots/": tags: - save when: - os: windows - /resource/pilots//options.mw4: + "/resource/pilots//options.mw4": tags: - config when: - os: windows -'MechWarrior 5: Mercenaries': +"MechWarrior 5: Mercenaries": files: - /MW5Mercs/Saved/Config/WindowsNoEditor: + "/MW5Mercs/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /MW5Mercs/Saved/SaveGames: + "/MW5Mercs/Saved/SaveGames": tags: - save when: - os: windows - /MW5Mercs/Saved/SavedHOTAS/HOTASMappings.Remap: + "/MW5Mercs/Saved/SavedHOTAS/HOTASMappings.Remap": tags: - config when: - os: windows - /Packages/PiranhaGamesInc.MechWarrior5Mercenaries_/*/LocalCache/Local/MW5Mercs/Saved: - tags: - - save - when: - - os: windows - store: microsoft gog: id: 2147483045 id: gogExtra: - - 2142732028 - - 1444478826 - - 2038424921 - 1254147353 + - 1444478826 + - 1459558952 - 1687807209 - 1984078926 - - 1459558952 + - 2038424921 + - 2142732028 steamExtra: - - 1456210 - 1456180 + - 1456210 - 1705820 - 1969380 - 2179800 @@ -330257,7 +331209,7 @@ MechWarrior 3: installDir: MechWarrior 5 Mercenaries: {} launch: - /MechWarrior.exe: + "/MechWarrior.exe": - when: - bit: 64 os: windows @@ -330266,7 +331218,7 @@ MechWarrior 3: id: 784080 MechWarrior Online: files: - /user.cfg: + "/user.cfg": tags: - config when: @@ -330280,18 +331232,18 @@ MechWarrior Online: installDir: MechWarrior Online: {} launch: - /bin64/MWOClient.exe: + "/bin64/MWOClient.exe": - arguments: +steam -flowthru when: - bit: 64 os: windows store: steam - workingDir: /bin64 + workingDir: "/bin64" steam: id: 342200 -'MechWarrior: Living Legends': +"MechWarrior: Living Legends": files: - /My Games/Crysis_WARHEAD: + "/My Games/Crysis_WARHEAD": tags: - config - save @@ -330301,33 +331253,33 @@ Mecha Ace: installDir: MechaAce: {} launch: - /Mecha Ace.app/Contents/MacOS/Mecha Ace: + "/Mecha Ace.app/Contents/MacOS/Mecha Ace": - when: - os: mac store: steam - /MechaAce: + "/MechaAce": - when: - os: linux store: steam - /MechaAce.exe: + "/MechaAce.exe": - when: - os: windows store: steam steam: id: 318330 -'Mecha Knights: Nightmare': +"Mecha Knights: Nightmare": installDir: Mecha Knights Nightmare Alpha: {} launch: - /Mecha Knights.exe: + "/Mecha Knights.exe": - when: - os: windows store: steam steam: id: 1163870 -'Mecha Ritz: Steel Rondo': +"Mecha Ritz: Steel Rondo": files: - /score.bin: + "/score.bin": tags: - config - save @@ -330336,7 +331288,7 @@ Mecha Ace: installDir: Mecha Ritz Steel Rondo: {} launch: - /MECHA_SR.exe: + "/MECHA_SR.exe": - when: - os: windows store: steam @@ -330346,7 +331298,7 @@ Mecha-Tokyo Rush: installDir: Mecha-Tokyo Rush: {} launch: - /Mecha-Tokyo Rush.exe: + "/Mecha-Tokyo Rush.exe": - when: - os: windows store: steam @@ -330356,11 +331308,11 @@ MechaGore: installDir: MechaGore: {} launch: - /MechaGore.app/Contents/MacOS/MechaGore: + "/MechaGore.app/Contents/MacOS/MechaGore": - when: - os: mac store: steam - /MechaGore.exe: + "/MechaGore.exe": - when: - os: windows store: steam @@ -330368,7 +331320,7 @@ MechaGore: id: 476710 MechaNika: files: - /save/*.data: + "/save/*.data": tags: - save when: @@ -330376,15 +331328,15 @@ MechaNika: installDir: MechaNika: {} launch: - /MechaNika: + "/MechaNika": - when: - os: linux store: steam - /MechaNika.app: + "/MechaNika.app": - when: - os: mac store: steam - /MechaNika.exe: + "/MechaNika.exe": - when: - os: windows store: steam @@ -330394,7 +331346,7 @@ Mechabellum: installDir: Mechabellum: {} launch: - /Mechabellum.exe: + "/Mechabellum.exe": - when: - bit: 64 os: windows @@ -330407,15 +331359,15 @@ Mechajammer: installDir: Mechajammer: {} launch: - /Mechajammer.app/Contents/MacOS/Mechajammer: + "/Mechajammer.app/Contents/MacOS/Mechajammer": - when: - os: mac store: steam - /Mechajammer.exe: + "/Mechajammer.exe": - when: - os: windows store: steam - /Mechajammer.x86_64: + "/Mechajammer.x86_64": - when: - os: linux store: steam @@ -330423,7 +331375,7 @@ Mechajammer: id: 485400 Mechanic Escape: files: - /AppData/LocalLow/Slak Games/MechanicEscape: + "/AppData/LocalLow/Slak Games/MechanicEscape": tags: - save when: @@ -330431,16 +331383,16 @@ Mechanic Escape: installDir: Mechanic Escape: {} launch: - /MechanicEscape.app: + "/MechanicEscape.app": - when: - bit: 64 os: mac store: steam - /MechanicEscape.x86: + "/MechanicEscape.x86": - when: - os: linux store: steam - /MechanicEscapeLauncher.exe: + "/MechanicEscapeLauncher.exe": - when: - bit: 32 os: windows @@ -330451,7 +331403,7 @@ Mechanic Miner: installDir: Mechanic Miner: {} launch: - /mechanicminer.exe: + "/mechanicminer.exe": - when: - bit: 64 os: windows @@ -330462,7 +331414,7 @@ MechanicalFuture: installDir: MechanicalFuture: {} launch: - /MechanicalFuture/MechanicalFuture.exe: + "/MechanicalFuture/MechanicalFuture.exe": - when: - store: steam steam: @@ -330471,7 +331423,7 @@ Mechanism: installDir: MECHANISM: {} launch: - /Mechanism.exe: + "/Mechanism.exe": - when: - bit: 64 os: windows @@ -330482,7 +331434,7 @@ Mechatroniks Attack: installDir: Mechatroniks Attack: {} launch: - /MechatroniksAttack.exe: + "/MechatroniksAttack.exe": - when: - os: windows store: steam @@ -330492,12 +331444,12 @@ Mecho Tales: installDir: Mecho Tales: {} launch: - /MechoTales.app/Contents/MacOS/MechoTales: + "/MechoTales.app/Contents/MacOS/MechoTales": - when: - os: mac store: steam - workingDir: /MechoTales.app/Contents/MacOS - /MechoTales.exe: + workingDir: "/MechoTales.app/Contents/MacOS" + "/MechoTales.exe": - when: - os: windows store: steam @@ -330509,15 +331461,15 @@ MechoEcho: installDir: MechoEcho: {} launch: - /MechoEcho.exe: + "/MechoEcho.exe": - when: - os: windows store: steam steam: id: 433890 -'Mechs & Mercs: Black Talons': +"Mechs & Mercs: Black Talons": files: - /AppData/LocalLow/Camel101/BlackTalons/MySaves: + "/AppData/LocalLow/Camel101/BlackTalons/MySaves": tags: - save when: @@ -330525,21 +331477,21 @@ MechoEcho: installDir: Black Talons: {} launch: - /BlackTalons.exe: + "/BlackTalons.exe": - when: - os: windows store: steam - /BlackTalons.x86: + "/BlackTalons.x86": - when: - bit: 32 os: linux store: steam - /BlackTalons.x86_64: + "/BlackTalons.x86_64": - when: - bit: 64 os: linux store: steam - /blacktalons.app: + "/blacktalons.app": - when: - os: mac store: steam @@ -330551,7 +331503,7 @@ MechoEcho: id: 273960 Mechs V Kaijus: files: - /AppData/LocalLow/Doble Punch Games/Mechs V Kaijus/UserData: + "/AppData/LocalLow/Doble Punch Games/Mechs V Kaijus/UserData": tags: - config - save @@ -330561,11 +331513,11 @@ Mechs V Kaijus: Mechs V Kaijus: {} steam: id: 809540 -'Mechsprofit: Mech Tycoon Simulator': +"Mechsprofit: Mech Tycoon Simulator": installDir: Mechsprofit: {} launch: - /Mechs.exe: + "/Mechs.exe": - when: - bit: 64 os: windows @@ -330576,7 +331528,7 @@ Mechstermination Force: installDir: Mechstermination Force: {} launch: - /skrotd3d.exe: + "/skrotd3d.exe": - when: - bit: 64 os: windows @@ -330585,17 +331537,17 @@ Mechstermination Force: id: 1257310 Medal of Honor (2010): files: - /EA Games/Medal of Honor: + "/EA Games/Medal of Honor": tags: - save when: - os: windows - /EA Games/Medal of Honor/Config: + "/EA Games/Medal of Honor/Config": tags: - config when: - os: windows - /EA Games/Medal of Honor/Multiplayer: + "/EA Games/Medal of Honor/Multiplayer": tags: - config when: @@ -330606,20 +331558,20 @@ Medal of Honor (2010): installDir: Medal of Honor: {} launch: - /Binaries/moh.exe: + "/Binaries/moh.exe": - when: - store: steam - - arguments: '-ead_gl_remove' + - arguments: "-ead_gl_remove" when: - store: steam - /Support/EA Help/Electronic_Arts_Technical_Support.htm: + "/Support/EA Help/Electronic_Arts_Technical_Support.htm": - when: - store: steam steam: id: 47790 -'Medal of Honor: Above and Beyond': +"Medal of Honor: Above and Beyond": files: - /Mohab/Saved/Saves/: + "/Mohab/Saved/Saves/": tags: - save when: @@ -330628,14 +331580,14 @@ Medal of Honor (2010): respawn-entertainment-medal-of-honor-above-and-beyond: {} steam: id: 1402320 -'Medal of Honor: Airborne': +"Medal of Honor: Airborne": files: - /EA Games/Medal of Honor Airborne(tm)/Config: + "/EA Games/Medal of Honor Airborne(tm)/Config": tags: - config when: - os: windows - /EA Games/Medal of Honor Airborne(tm)/Saved: + "/EA Games/Medal of Honor Airborne(tm)/Saved": tags: - save when: @@ -330643,53 +331595,53 @@ Medal of Honor (2010): installDir: Medal of Honor Airborne: {} launch: - /Support/EA Help/Electronic_Arts_Technical_Support.htm: + "/Support/EA Help/Electronic_Arts_Technical_Support.htm": - when: - store: steam - workingDir: /UnrealEngine3/Binaries - /UnrealEngine3/Binaries/MOHA.exe: + workingDir: "/UnrealEngine3/Binaries" + "/UnrealEngine3/Binaries/MOHA.exe": - when: - store: steam - workingDir: /UnrealEngine3/Binaries + workingDir: "/UnrealEngine3/Binaries" steam: id: 24840 -'Medal of Honor: Allied Assault': +"Medal of Honor: Allied Assault": files: - /main*/*.cfg: + "/main*/*.cfg": tags: - config when: - os: windows - /main*/configs/*.cfg: + "/main*/configs/*.cfg": tags: - config when: - os: windows - /main/save: + "/main/save": tags: - save when: - os: windows - /mainta/save: + "/mainta/save": tags: - save when: - os: windows - /maintt/save: + "/maintt/save": tags: - save when: - os: windows - /.mohaa/main: + "/.mohaa/main": tags: - config when: - os: linux gog: id: 1207659126 -'Medal of Honor: Pacific Assault': +"Medal of Honor: Pacific Assault": files: - /EA Games/Medal of Honor Pacific Assault(tm): + "/EA Games/Medal of Honor Pacific Assault(tm)": tags: - config - save @@ -330697,14 +331649,14 @@ Medal of Honor (2010): - os: windows gog: id: 1176929400 -'Medal of Honor: Warfighter': +"Medal of Honor: Warfighter": files: - /MOHW/settings/PROF_SAVE_profile: + "/MOHW/settings/PROF_SAVE_profile": tags: - config when: - os: windows - /MOHW/settings/meta.xml: + "/MOHW/settings/meta.xml": tags: - save when: @@ -330713,7 +331665,7 @@ Medical verdict: installDir: Medical verdict: {} launch: - /MEDIC.exe: + "/MEDIC.exe": - when: - bit: 64 os: windows @@ -330724,7 +331676,7 @@ Medieval - Embers of War: installDir: Medieval - Embers of War: {} launch: - /Medieval.exe: + "/Medieval.exe": - when: - store: steam steam: @@ -330732,15 +331684,15 @@ Medieval - Embers of War: Medieval Battle Simulator: steam: id: 951020 -'Medieval Battle: Europe': +"Medieval Battle: Europe": installDir: Medieval Battle Europe: {} launch: - /medievalBattleEurope.app: + "/medievalBattleEurope.app": - when: - os: mac store: steam - /medievalBattleEurope.exe: + "/medievalBattleEurope.exe": - when: - os: windows store: steam @@ -330750,11 +331702,11 @@ Medieval Battlefields - Black Edition: installDir: Medieval Battlefields Black Edition: {} launch: - /mbattles (Mac Steam).app: + "/mbattles (Mac Steam).app": - when: - os: mac store: steam - /mbattlesbe.exe: + "/mbattlesbe.exe": - when: - os: windows store: steam @@ -330764,7 +331716,7 @@ Medieval Defenders: installDir: Medieval Defenders: {} launch: - /TD.exe: + "/TD.exe": - when: - os: windows store: steam @@ -330772,12 +331724,12 @@ Medieval Defenders: id: 522090 Medieval Dynasty: files: - /Medieval_Dynasty/Saved/Config/WindowsNoEditor: + "/Medieval_Dynasty/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /Medieval_Dynasty/Saved/SaveGames: + "/Medieval_Dynasty/Saved/SaveGames": tags: - save when: @@ -330793,7 +331745,7 @@ Medieval Dynasty: installDir: Medieval Dynasty: {} launch: - /Medieval_Dynasty.exe: + "/Medieval_Dynasty.exe": - when: - os: windows store: steam @@ -330801,17 +331753,17 @@ Medieval Dynasty: id: 1129580 Medieval Engineers: files: - /MedievalEngineers/Controls.cfg: + "/MedievalEngineers/Controls.cfg": tags: - config when: - os: windows - /MedievalEngineers/MedievalEngineers.cfg: + "/MedievalEngineers/MedievalEngineers.cfg": tags: - config when: - os: windows - /MedievalEngineers/Saves: + "/MedievalEngineers/Saves": tags: - save when: @@ -330819,39 +331771,39 @@ Medieval Engineers: installDir: MedievalEngineers: {} launch: - /Bin/MedievalEngineers.exe: + "/Bin/MedievalEngineers.exe": - when: - bit: 32 store: steam - workingDir: /Bin - /Bin64/MedievalEngineers.exe: + workingDir: "/Bin" + "/Bin64/MedievalEngineers.exe": - when: - bit: 64 store: steam - workingDir: /Bin64 + workingDir: "/Bin64" steam: id: 333950 Medieval Farmer Simulator: steam: id: 1207360 -'Medieval II: Total War': +"Medieval II: Total War": files: - /medieval2.preference.cfg: + "/medieval2.preference.cfg": tags: - config when: - os: windows - /saves: + "/saves": tags: - save when: - os: windows - /feral-interactive/Medieval II Total War: + "/feral-interactive/Medieval II Total War": tags: - config when: - os: linux - /feral-interactive/Medieval II Total War/VFS/Local/saves: + "/feral-interactive/Medieval II Total War/VFS/Local/saves": tags: - save when: @@ -330859,47 +331811,47 @@ Medieval Farmer Simulator: installDir: Medieval II Total War: {} launch: - /Medieval II Total War.app: + "/Medieval II Total War.app": - when: - os: mac store: steam - - arguments: '--features.mod=mods/americas' + - arguments: "--features.mod=mods/americas" when: - os: mac store: steam - - arguments: '--features.mod=mods/british_isles' + - arguments: "--features.mod=mods/british_isles" when: - os: mac store: steam - - arguments: '--features.mod=mods/crusades' + - arguments: "--features.mod=mods/crusades" when: - os: mac store: steam - - arguments: '--features.mod=mods/teutonic' + - arguments: "--features.mod=mods/teutonic" when: - os: mac store: steam - /Medieval2.sh: + "/Medieval2.sh": - when: - os: linux store: steam - - arguments: '--features.mod=mods/americas' + - arguments: "--features.mod=mods/americas" when: - os: linux store: steam - - arguments: '--features.mod=mods/british_isles' + - arguments: "--features.mod=mods/british_isles" when: - os: linux store: steam - - arguments: '--features.mod=mods/crusades' + - arguments: "--features.mod=mods/crusades" when: - os: linux store: steam - - arguments: '--features.mod=mods/teutonic' + - arguments: "--features.mod=mods/teutonic" when: - os: linux store: steam - /medieval2.exe: + "/medieval2.exe": - when: - os: windows store: steam @@ -330907,7 +331859,7 @@ Medieval Farmer Simulator: id: 4700 Medieval Kingdom Wars: files: - /mkw: + "/mkw": tags: - save when: @@ -330915,8 +331867,8 @@ Medieval Kingdom Wars: installDir: Medieval Kingdom Wars: {} launch: - /MKW.exe: - - arguments: '-dev86' + "/MKW.exe": + - arguments: "-dev86" when: - os: windows store: steam @@ -330934,7 +331886,7 @@ Medieval Monarch: installDir: Medieval Monarch: {} launch: - /MedievalMonarch.exe: + "/MedievalMonarch.exe": - when: - os: windows store: steam @@ -330944,11 +331896,11 @@ Medieval Mystery Match: installDir: Medieval Mystery Match: {} launch: - /MedievalMysteryMatch.app: + "/MedievalMysteryMatch.app": - when: - os: mac store: steam - /MedievalMysteryMatch.exe: + "/MedievalMysteryMatch.exe": - when: - os: windows store: steam @@ -330958,7 +331910,7 @@ Medieval Playground: installDir: MedievalPlayground: {} launch: - /MedievalPlayground.exe: + "/MedievalPlayground.exe": - when: - os: windows store: steam @@ -330968,7 +331920,7 @@ Medieval Real Estate: installDir: MedievalRealEstate: {} launch: - /medieval_real_estate.exe: + "/medieval_real_estate.exe": - when: - os: windows store: steam @@ -330981,7 +331933,7 @@ Medieval Shopkeeper Simulator: installDir: Medieval Shopkeeper Simulator: {} launch: - /Medieval Shopkeeper Simulator.exe: + "/Medieval Shopkeeper Simulator.exe": - when: - store: steam steam: @@ -330990,7 +331942,7 @@ Medieval Steve: installDir: Medieval Steve: {} launch: - /MedievalSteve.exe: + "/MedievalSteve.exe": - when: - os: windows store: steam @@ -331000,7 +331952,7 @@ Medieval Story: installDir: Medieval Story: {} launch: - /Medieval Story.exe: + "/Medieval Story.exe": - when: - os: windows store: steam @@ -331009,11 +331961,11 @@ Medieval Story: Medieval Survival: steam: id: 941870 -'Medieval: Total War': +"Medieval: Total War": installDir: Total War Medieval 1 Gold: {} launch: - /launcher/launcher.exe: + "/launcher/launcher.exe": - when: - store: steam steam: @@ -331021,38 +331973,38 @@ Medieval Survival: Medium Rare: steam: id: 1137190 -Medusa's Labyrinth: +"Medusa's Labyrinth": files: - /Medusa/Saved/SaveGames/*_settings.sav: + "/Medusa/Saved/SaveGames/*_settings.sav": tags: - config when: - os: windows - /Medusa/Saved/SaveGames/CheckpointSave.sav: + "/Medusa/Saved/SaveGames/CheckpointSave.sav": tags: - save when: - os: windows installDir: - Medusa's Labyrinth: {} + "Medusa's Labyrinth": {} launch: - /Medusa.exe: + "/Medusa.exe": - when: - bit: 64 os: windows store: steam steam: id: 436110 -Medusa's Labyrinth VR: +"Medusa's Labyrinth VR": installDir: - Meudsa's Labyrinth VR: {} + "Meudsa's Labyrinth VR": {} steam: id: 624560 Meegah Mem 2: installDir: Meegah Mem 2: {} launch: - /Meegah Mem II.exe: + "/Meegah Mem II.exe": - when: - os: windows store: steam @@ -331062,15 +332014,15 @@ Meeple Station: installDir: Meeple Station: {} launch: - /Meeple Station.app: + "/Meeple Station.app": - when: - os: mac store: steam - /Meeple Station.x86_64: + "/Meeple Station.x86_64": - when: - os: linux store: steam - /Meeple Station/Meeple Station.exe: + "/Meeple Station/Meeple Station.exe": - when: - os: windows store: steam @@ -331085,8 +332037,8 @@ Meet.Hunter: installDir: MeetHunter: {} launch: - /game.exe: - - arguments: '-windowed' + "/game.exe": + - arguments: "-windowed" when: - os: windows store: steam @@ -331096,7 +332048,7 @@ Mega Balls: installDir: Mega Balls: {} launch: - /Mega Balls.exe: + "/Mega Balls.exe": - when: - os: windows store: steam @@ -331106,15 +332058,15 @@ Mega Coin Squad: installDir: MegaCoinSquad: {} launch: - /MegaCoinSquad.app: + "/MegaCoinSquad.app": - when: - os: mac store: steam - /MegaCoinSquad.exe: + "/MegaCoinSquad.exe": - when: - os: windows store: steam - /MegaCoinSquad.x86: + "/MegaCoinSquad.x86": - when: - os: linux store: steam @@ -331124,11 +332076,11 @@ Mega Hasan: installDir: Mega Hasan: {} launch: - /Mega Hasan.app: + "/Mega Hasan.app": - when: - os: mac store: steam - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -331136,12 +332088,12 @@ Mega Hasan: id: 1217100 Mega Man 11: files: - /config.ini: + "/config.ini": tags: - config when: - os: windows - /userdata//742300/remote: + "/userdata//742300/remote": tags: - save when: @@ -331150,7 +332102,7 @@ Mega Man 11: installDir: Mega Man 11: {} launch: - /game.exe: + "/game.exe": - when: - bit: 64 os: windows @@ -331159,12 +332111,12 @@ Mega Man 11: id: 742300 Mega Man Battle Network Legacy Collection Vol. 1: files: - /exe/launcher_config.ini: + "/exe/launcher_config.ini": tags: - config when: - os: windows - /userdata//1798010/remote: + "/userdata//1798010/remote": tags: - save when: @@ -331173,20 +332125,20 @@ Mega Man Battle Network Legacy Collection Vol. 1: installDir: MegaMan_BattleNetwork_LegacyCollection_Vol1: {} launch: - /exe/MMBN_LC1.exe: + "/exe/MMBN_LC1.exe": - when: - store: steam - workingDir: /exe + workingDir: "/exe" steam: id: 1798010 Mega Man Battle Network Legacy Collection Vol. 2: files: - /exe/launcher_config.ini: + "/exe/launcher_config.ini": tags: - config when: - os: windows - /userdata//1798020/remote: + "/userdata//1798020/remote": tags: - save when: @@ -331195,15 +332147,15 @@ Mega Man Battle Network Legacy Collection Vol. 2: installDir: MegaMan_BattleNetwork_LegacyCollection_Vol2: {} launch: - /exe/MMBN_LC2.exe: + "/exe/MMBN_LC2.exe": - when: - store: steam - workingDir: /exe + workingDir: "/exe" steam: id: 1798020 Mega Man Legacy Collection: files: - /MegaMan: + "/MegaMan": tags: - config - save @@ -331212,7 +332164,7 @@ Mega Man Legacy Collection: installDir: Suzy: {} launch: - /Proteus.exe: + "/Proteus.exe": - when: - os: windows store: steam @@ -331220,7 +332172,7 @@ Mega Man Legacy Collection: id: 363440 Mega Man Legacy Collection 2: files: - /MegaMan2: + "/MegaMan2": tags: - config - save @@ -331229,7 +332181,7 @@ Mega Man Legacy Collection 2: installDir: MegaMan2: {} launch: - /MMLC2.exe: + "/MMLC2.exe": - when: - bit: 64 os: windows @@ -331238,43 +332190,43 @@ Mega Man Legacy Collection 2: id: 495050 Mega Man Legends: files: - /DASH_**.MCD: + "/DASH_**.MCD": tags: - save when: - os: windows - /MEGAMAN.CFG: + "/MEGAMAN.CFG": tags: - config when: - os: windows Mega Man Maker: files: - /MegaMaker/Levels: + "/MegaMaker/Levels": tags: - save when: - os: windows - /MegaMaker/Settings: + "/MegaMaker/Settings": tags: - config when: - os: windows Mega Man X: files: - /MMX.GMS: + "/MMX.GMS": tags: - save when: - os: windows - /MMX.OPT: + "/MMX.OPT": tags: - config when: - os: windows Mega Man X Dive Offline: files: - /AppData/LocalLow/Capcom/ROCKMAN X DiVE Offline: + "/AppData/LocalLow/Capcom/ROCKMAN X DiVE Offline": tags: - config - save @@ -331283,7 +332235,7 @@ Mega Man X Dive Offline: installDir: MEGA_MAN_X_DiVE_Offline: {} launch: - /Game.exe: + "/Game.exe": - when: - bit: 64 os: windows @@ -331292,12 +332244,12 @@ Mega Man X Dive Offline: id: 2183650 Mega Man X Legacy Collection: files: - /config.ini: + "/config.ini": tags: - config when: - os: windows - /userdata//743890/remote/RXC1/savedata.dat: + "/userdata//743890/remote/RXC1/savedata.dat": tags: - save when: @@ -331309,7 +332261,7 @@ Mega Man X Legacy Collection: installDir: Mega Man X Legacy Collection: {} launch: - /RXC1.exe: + "/RXC1.exe": - when: - os: windows store: steam @@ -331317,12 +332269,12 @@ Mega Man X Legacy Collection: id: 743890 Mega Man X Legacy Collection 2: files: - /config.ini: + "/config.ini": tags: - config when: - os: windows - /userdata//743900/remote/RXC2/savedata.dat: + "/userdata//743900/remote/RXC2/savedata.dat": tags: - save when: @@ -331331,7 +332283,7 @@ Mega Man X Legacy Collection 2: installDir: Mega Man X Legacy Collection 2: {} launch: - /RXC2.exe: + "/RXC2.exe": - when: - os: windows store: steam @@ -331344,7 +332296,7 @@ Mega Man X4: - config Mega Man X6: files: - /bu00BESLES-03778: + "/bu00BESLES-03778": tags: - config - save @@ -331352,25 +332304,25 @@ Mega Man X6: - os: windows Mega Man X8: files: - /gamedata.wss: + "/gamedata.wss": tags: - save when: - os: windows - /systemdata.wss: + "/systemdata.wss": tags: - config when: - os: windows Mega Man Zero/ZX Legacy Collection: files: - /steamapps/common/MZZXLC/config.ini: + "/steamapps/common/MZZXLC/config.ini": tags: - config when: - os: windows store: steam - /userdata//999020/remote/RZZC/savedata.dat: + "/userdata//999020/remote/RZZC/savedata.dat": tags: - save when: @@ -331379,7 +332331,7 @@ Mega Man Zero/ZX Legacy Collection: installDir: MZZXLC: {} launch: - /MZZXLC.exe: + "/MZZXLC.exe": - when: - os: windows store: steam @@ -331389,15 +332341,15 @@ Mega Maze: installDir: MegaMaze: {} launch: - /MegaMaze.app: + "/MegaMaze.app": - when: - os: mac store: steam - /MegaMaze.exe: + "/MegaMaze.exe": - when: - os: windows store: steam - /MegaMaze.x86_64: + "/MegaMaze.x86_64": - when: - os: linux store: steam @@ -331421,15 +332373,15 @@ Mega Veg Man: installDir: Mega Veg Man: {} launch: - /Mac_Content.app/Contents/MacOS/Mega Veg Man: + "/Mac_Content.app/Contents/MacOS/Mega Veg Man": - when: - os: mac store: steam - /Mega Veg Man.exe: + "/Mega Veg Man.exe": - when: - os: windows store: steam - /Mega Veg Man.x86_64: + "/Mega Veg Man.x86_64": - when: - os: linux store: steam @@ -331439,17 +332391,17 @@ MegaGlest: installDir: MegaGlest: {} launch: - /megaglest: + "/megaglest": - when: - bit: 64 os: linux store: steam - /megaglest.exe: + "/megaglest.exe": - when: - bit: 32 os: windows store: steam - /megaglestx64.exe: + "/megaglestx64.exe": - when: - bit: 64 os: windows @@ -331465,27 +332417,27 @@ MegaRace: installDir: MegaRace 1: {} launch: - /Launcher.exe: + "/Launcher.exe": - when: - os: windows store: steam - /MegaRace 1 - DE.app: + "/MegaRace 1 - DE.app": - when: - os: mac store: steam - /MegaRace 1 - EN.app: + "/MegaRace 1 - EN.app": - when: - os: mac store: steam - /MegaRace 1 - FR.app: + "/MegaRace 1 - FR.app": - when: - os: mac store: steam - /MegaRace 1 - IT.app: + "/MegaRace 1 - IT.app": - when: - os: mac store: steam - /MegaRace 1 - SP.app: + "/MegaRace 1 - SP.app": - when: - os: mac store: steam @@ -331500,19 +332452,21 @@ MegaRace 2: installDir: MegaRace 2: {} launch: - /Launcher.exe: + "/Launcher.exe": - when: - os: windows store: steam - /MegaRace 2.app: + - os: linux + store: steam + "/MegaRace 2.app": - when: - os: mac store: steam - /MegaRace 2.exe: + "/MegaRace 2.exe": - when: - os: windows store: steam - /Megarace 2 FR.app: + "/Megarace 2 FR.app": - when: - os: mac store: steam @@ -331520,12 +332474,12 @@ MegaRace 2: id: 733760 MegaRace 3: files: - /Save: + "/Save": tags: - save when: - os: windows - /config.ini: + "/config.ini": tags: - config when: @@ -331535,11 +332489,11 @@ MegaRace 3: installDir: MegaRace 3: {} launch: - /MegaRace 3.app: + "/MegaRace 3.app": - when: - os: mac store: steam - /MegaRace 3.exe: + "/MegaRace 3.exe": - when: - os: windows store: steam @@ -331549,7 +332503,7 @@ MegaRats: installDir: MegaRats: {} launch: - /MegaRatsSteam-Windows-32-bit.exe: + "/MegaRatsSteam-Windows-32-bit.exe": - when: - os: windows store: steam @@ -331559,20 +332513,20 @@ MegaSphere: installDir: MegaSphere: {} launch: - /MegaSphereAlpha.app: + "/MegaSphereAlpha.app": - when: - os: mac store: steam - /MegaSphereAlpha.exe: + "/MegaSphereAlpha.exe": - when: - os: windows store: steam - /MegaSphereAlpha.x86: + "/MegaSphereAlpha.x86": - when: - bit: 32 os: linux store: steam - /MegaSphereAlpha.x86_64: + "/MegaSphereAlpha.x86_64": - when: - bit: 64 os: linux @@ -331581,7 +332535,7 @@ MegaSphere: id: 386340 MegaTagmension Blanc + Neptune VS Zombies: files: - /savedata: + "/savedata": tags: - save when: @@ -331589,7 +332543,7 @@ MegaTagmension Blanc + Neptune VS Zombies: installDir: MegaTagmension Blanc + Neptune VS Zombies: {} launch: - /MegaTagmension Blanc.exe: + "/MegaTagmension Blanc.exe": - when: - os: windows store: steam @@ -331597,19 +332551,19 @@ MegaTagmension Blanc + Neptune VS Zombies: id: 496810 Megabyte Punch: files: - /save: + "/save": tags: - config - save when: - os: windows - /.config/unity3d/Reptile/Megabyte Punch: + "/.config/unity3d/Reptile/Megabyte Punch": tags: - config - save when: - os: linux - /userdata//248550/remote/megabytepunch: + "/userdata//248550/remote/megabytepunch": tags: - config - save @@ -331620,15 +332574,15 @@ Megabyte Punch: installDir: MegabytePunch: {} launch: - /MegabytePunch.app: + "/MegabytePunch.app": - when: - os: mac store: steam - /MegabytePunch.exe: + "/MegabytePunch.exe": - when: - os: windows store: steam - /MegabytePunch.x86: + "/MegabytePunch.x86": - when: - os: linux store: steam @@ -331643,19 +332597,19 @@ Megacity Builder: installDir: Megacity Builder: {} launch: - /MCB/MegaCity Builder.exe: + "/MCB/MegaCity Builder.exe": - when: - store: steam steam: id: 630360 Megadimension Neptunia VII: files: - /userdata//460120/remote: + "/userdata//460120/remote": tags: - save when: - store: steam - /userdata//460120/remote/NeptuneVII.ini: + "/userdata//460120/remote/NeptuneVII.ini": tags: - config when: @@ -331663,37 +332617,37 @@ Megadimension Neptunia VII: installDir: Megadimension Neptunia VII: {} launch: - /NeptuniaVII.exe: + "/NeptuniaVII.exe": - when: - store: steam steam: id: 460120 Megadimension Neptunia VIIR: files: - /resource/bin/v2r.ini: + "/resource/bin/v2r.ini": tags: - config when: - os: windows - /userdata//774511/remote/SAVELIST000*_GAME.BIN: + "/userdata//774511/remote/SAVELIST000*_GAME.BIN": tags: - save when: - os: windows store: steam - /userdata//774511/remote/SAVELIST000*_param.sfo: + "/userdata//774511/remote/SAVELIST000*_param.sfo": tags: - save when: - os: windows store: steam - /userdata//774511/remote/SYSTEMSAVE_GAME.BIN: + "/userdata//774511/remote/SYSTEMSAVE_GAME.BIN": tags: - config when: - os: windows store: steam - /userdata//774511/remote/SYSTEMSAVE_param.sfo: + "/userdata//774511/remote/SYSTEMSAVE_param.sfo": tags: - config when: @@ -331704,8 +332658,8 @@ Megadimension Neptunia VIIR: installDir: Megadimension Neptunia VIIR: {} launch: - /resource/bin/v2r.exe: - - arguments: '0' + "/resource/bin/v2r.exe": + - arguments: "0" when: - os: windows store: steam @@ -331717,7 +332671,7 @@ Megafortress: installDir: Megafortress Collection: {} launch: - /Launcher/ConsoleLauncher.exe: + "/Launcher/ConsoleLauncher.exe": - when: - os: windows store: steam @@ -331727,11 +332681,11 @@ Megalo Polis: installDir: Megalo Polis: {} launch: - /Megalo Polis.exe: + "/Megalo Polis.exe": - when: - os: windows store: steam - /Megalopolis.app/Contents/MacOS/Megalopolis: + "/Megalopolis.app/Contents/MacOS/Megalopolis": - when: - os: mac store: steam @@ -331741,7 +332695,7 @@ Megalomaniac: installDir: MEGALOMANIAC: {} launch: - /MEGALOMANIAC.exe: + "/MEGALOMANIAC.exe": - when: - os: windows store: steam @@ -331750,37 +332704,37 @@ Megalomaniac: Megalonia: steam: id: 813710 -'Megamagic: Wizards of the Neon Age': +"Megamagic: Wizards of the Neon Age": gog: id: 1098700594 installDir: Megamagic Wizards of the Neon Age: {} launch: - /Megamagic.app: + "/Megamagic.app": - when: - os: mac store: steam - /Megamagic.exe: + "/Megamagic.exe": - when: - os: windows store: steam - /Megamagic.x86: + "/Megamagic.x86": - when: - bit: 32 os: linux store: steam - /Megamagic.x86_64: + "/Megamagic.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 422650 -'Megami Ibunroku Persona: Ikuu no Tou Hen': +"Megami Ibunroku Persona: Ikuu no Tou Hen": installDir: GmodeArchivesPlus_persona: {} launch: - /persona.exe: + "/persona.exe": - when: - store: steam steam: @@ -331789,15 +332743,15 @@ Meganoid: installDir: Meganoid: {} launch: - /meganoid: + "/meganoid": - when: - os: linux store: steam - /meganoid.exe: + "/meganoid.exe": - when: - os: windows store: steam - /meganoid2017.app: + "/meganoid2017.app": - when: - os: mac store: steam @@ -331807,20 +332761,20 @@ Megapolis: installDir: Megapolis: {} launch: - /Megapolis: + "/Megapolis": - when: - os: linux store: steam - /Megapolis 32bit.exe: + "/Megapolis 32bit.exe": - when: - bit: 32 os: windows store: steam - /Megapolis.app: + "/Megapolis.app": - when: - os: mac store: steam - /Megapolis.exe: + "/Megapolis.exe": - when: - bit: 64 os: windows @@ -331833,15 +332787,15 @@ Megaquarium: installDir: Megaquarium: {} launch: - /Megaquarium.app: + "/Megaquarium.app": - when: - os: mac store: steam - /Megaquarium.exe: + "/Megaquarium.exe": - when: - os: windows store: steam - /Megaquarium.x86_64: + "/Megaquarium.x86_64": - when: - os: linux store: steam @@ -331851,7 +332805,7 @@ Megatect: installDir: Megatect: {} launch: - /Megatect.exe: + "/Megatect.exe": - when: - os: windows store: steam @@ -331862,12 +332816,12 @@ Megaton: id: 868720 Megaton Rainfall: files: - /MegatonRainfall: + "/MegatonRainfall": tags: - save when: - os: windows - /MegatonRainfall/config.txt: + "/MegatonRainfall/config.txt": tags: - config when: @@ -331877,22 +332831,22 @@ Megaton Rainfall: installDir: Megaton Rainfall: {} launch: - /MegatonRainfall.exe: + "/MegatonRainfall.exe": - arguments: /novr when: - os: windows store: steam steam: id: 430210 -'Megaton: Total Destruction': +"Megaton: Total Destruction": installDir: Megaton: {} launch: - /Megaton.app: + "/Megaton.app": - when: - os: mac store: steam - /Megaton.exe: + "/Megaton.exe": - when: - os: windows store: steam @@ -331902,7 +332856,7 @@ Megatronic Void: installDir: Megatronic Void: {} launch: - /megatronicvoid.exe: + "/megatronicvoid.exe": - when: - os: windows store: steam @@ -331923,7 +332877,7 @@ Meister: installDir: Meister: {} launch: - /meister.exe: + "/meister.exe": - when: - os: windows store: steam @@ -331933,7 +332887,7 @@ Mekabolt: installDir: Mekabolt: {} launch: - /Mekabolt.exe: + "/Mekabolt.exe": - when: - os: windows store: steam @@ -331941,7 +332895,7 @@ Mekabolt: id: 1096210 Mekazoo: files: - /GoodMoodCreators/Mekazoo: + "/GoodMoodCreators/Mekazoo": tags: - config - save @@ -331950,21 +332904,24 @@ Mekazoo: installDir: Mekazoo: {} launch: - /Mekazoo.app: + "/Mekazoo.app": - when: - os: mac store: steam - /Mekazoo.exe: + "/Mekazoo.exe": - when: - bit: 32 os: windows store: steam - /Mekazoo.x86: + - bit: 64 + os: windows + store: steam + "/Mekazoo.x86": - when: - bit: 32 os: linux store: steam - /Mekazoo.x86_64: + "/Mekazoo.x86_64": - when: - bit: 64 os: linux @@ -331975,8 +332932,8 @@ Mekside VR: installDir: Mekside VR: {} launch: - /mekside.exe: - - arguments: '--novr' + "/mekside.exe": + - arguments: "--novr" when: - os: windows store: steam @@ -331986,7 +332943,7 @@ Melancholy Republic: installDir: Melancholy Republic: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -331996,11 +332953,11 @@ Melatonin: installDir: Melatonin: {} launch: - /Melatonin.app: + "/Melatonin.app": - when: - os: mac store: steam - /Melatonin.exe: + "/Melatonin.exe": - when: - os: windows store: steam @@ -332010,7 +332967,7 @@ Melbits World: installDir: Melbits™ World: {} launch: - /Melbits World.exe: + "/Melbits World.exe": - when: - os: windows store: steam @@ -332020,15 +332977,15 @@ Meld: installDir: Meld: {} launch: - /Meld.app: + "/Meld.app": - when: - os: mac store: steam - /Meld.exe: + "/Meld.exe": - when: - os: windows store: steam - /Meld.x86: + "/Meld.x86": - when: - os: linux store: steam @@ -332038,7 +332995,7 @@ Melee: installDir: Horizon: {} launch: - /GameClient.exe: + "/GameClient.exe": - when: - bit: 64 os: windows @@ -332049,28 +333006,28 @@ Meleng: installDir: meleng: {} launch: - /meleng.exe: + "/meleng.exe": - when: - os: windows store: steam - /meleng.x86: + "/meleng.x86": - when: - os: linux store: steam steam: id: 735260 -Meliora's Detective Simulator: +"Meliora's Detective Simulator": steam: id: 1165620 -Melissa K. and the Heart of Gold Collector's Edition: +"Melissa K. and the Heart of Gold Collector's Edition": installDir: Melissa K and the Heart of Gold: {} launch: - /MelissaK_Steam.app/Contents/MacOS/MelissaK_Steam: + "/MelissaK_Steam.app/Contents/MacOS/MelissaK_Steam": - when: - os: mac store: steam - /MelissaK_Steam.exe: + "/MelissaK_Steam.exe": - when: - os: windows store: steam @@ -332080,7 +333037,7 @@ Melodic Riddle: installDir: Melodic Riddle: {} launch: - /Melodic Riddle.exe: + "/Melodic Riddle.exe": - when: - store: steam steam: @@ -332094,7 +333051,7 @@ Melody Flight: installDir: Melody Flight: {} launch: - /Melody Flight.exe: + "/Melody Flight.exe": - when: - os: windows store: steam @@ -332104,19 +333061,19 @@ Melody of Iris: installDir: the Melody of Iris: {} launch: - /MOI.exe: + "/MOI.exe": - when: - store: steam steam: id: 737710 -Melody's Escape: +"Melody's Escape": files: - /MelodyEscape/*.mel: + "/MelodyEscape/*.mel": tags: - save when: - os: windows - /MelodyEscape/settings.xml: + "/MelodyEscape/settings.xml": tags: - config when: @@ -332124,25 +333081,25 @@ Melody's Escape: installDir: MelodysEscape: {} launch: - /MelodysEscape: + "/MelodysEscape": - when: - os: linux store: steam - /MelodysEscape.app: + "/MelodysEscape.app": - when: - os: mac store: steam - /MelodysEscape.exe: + "/MelodysEscape.exe": - when: - os: windows store: steam steam: id: 270210 -Melody's Escape 2: +"Melody's Escape 2": installDir: - Melody's Escape 2: {} + "Melody's Escape 2": {} launch: - /Melody's Escape 2.exe: + "/Melody's Escape 2.exe": - when: - store: steam steam: @@ -332151,7 +333108,7 @@ Melon Journey 2: installDir: Melon Journey Bittersweet Memories: {} launch: - /Player.exe: + "/Player.exe": - when: - bit: 64 os: windows @@ -332162,7 +333119,7 @@ Melon Simulator: installDir: Melon Simulator: {} launch: - /Melon Simulator.exe: + "/Melon Simulator.exe": - when: - os: windows store: steam @@ -332172,15 +333129,15 @@ Meltdown: installDir: Meltdown: {} launch: - /Meltdown.app: + "/Meltdown.app": - when: - os: mac store: steam - /Meltdown.exe: + "/Meltdown.exe": - when: - os: windows store: steam - /Meltdown.x86: + "/Meltdown.x86": - when: - os: linux store: steam @@ -332194,17 +333151,17 @@ Melter Man: installDir: Melter Man: {} launch: - /MelterManSteamRelease-V1-32.exe: + "/MelterManSteamRelease-V1-32.exe": - when: - os: windows store: steam steam: id: 404460 -'Melting Hearts: Our Love Will Grow 2': +"Melting Hearts: Our Love Will Grow 2": installDir: Melting Hearts Our Love Will Grow 2: {} launch: - /MeltingHearts.exe: + "/MeltingHearts.exe": - when: - os: windows store: steam @@ -332214,7 +333171,7 @@ Melting World Online: installDir: Melting World Online: {} launch: - /Melting-World-Online.exe: + "/Melting-World-Online.exe": - when: - os: windows store: steam @@ -332224,7 +333181,7 @@ Melting pot.: installDir: Melting pot: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -332232,7 +333189,7 @@ Melting pot.: id: 1042090 Melty Blood Actress Again Current Code: files: - /System: + "/System": tags: - config - save @@ -332241,15 +333198,15 @@ Melty Blood Actress Again Current Code: installDir: MELTY BLOOD Actress Again Current Code: {} launch: - /MBAA.exe: + "/MBAA.exe": - when: - os: windows store: steam steam: id: 411370 -'Melty Blood: Type Lumina': +"Melty Blood: Type Lumina": files: - /winsave: + "/winsave": tags: - save when: @@ -332257,7 +333214,7 @@ Melty Blood Actress Again Current Code: installDir: MELTY BLOOD TYPE LUMINA: {} launch: - /MBTL.exe: + "/MBTL.exe": - when: - os: windows store: steam @@ -332265,7 +333222,7 @@ Melty Blood Actress Again Current Code: id: 1372280 Meltys Quest: files: - /www/save: + "/www/save": tags: - config - save @@ -332275,15 +333232,15 @@ Meltys Quest: installDir: Meltys Quest: {} launch: - /Game.app: + "/Game.app": - when: - os: mac store: steam - /nw: + "/nw": - when: - os: linux store: steam - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -332298,11 +333255,11 @@ Meme Machine: installDir: Meme Machine: {} launch: - /MemeMachine.app: + "/MemeMachine.app": - when: - os: mac store: steam - /MemeMachine.exe: + "/MemeMachine.exe": - when: - os: windows store: steam @@ -332312,7 +333269,7 @@ Meme Supreme: installDir: Meme Supreme: {} launch: - /Meme Supreme.exe: + "/Meme Supreme.exe": - when: - os: windows store: steam @@ -332328,7 +333285,7 @@ Memento (2016): installDir: MEMENTO: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: @@ -332337,7 +333294,7 @@ Memento Mori: installDir: Memento Mori: {} launch: - /run_game.cmd: + "/run_game.cmd": - when: - os: windows store: steam @@ -332345,7 +333302,7 @@ Memento Mori: id: 200490 Memento Mori 2: files: - /MEMENTO2: + "/MEMENTO2": tags: - save when: @@ -332353,7 +333310,7 @@ Memento Mori 2: installDir: MementoMori2: {} launch: - /MEMENTO2.exe: + "/MEMENTO2.exe": - when: - store: steam steam: @@ -332362,7 +333319,7 @@ Memento of Spring: installDir: Memento of Spring: {} launch: - /memento.exe: + "/memento.exe": - when: - os: windows store: steam @@ -332372,7 +333329,7 @@ Memetown USA: installDir: Memetown USA: {} launch: - /Memetown USA.exe: + "/Memetown USA.exe": - when: - os: windows store: steam @@ -332382,7 +333339,7 @@ Memetyper: installDir: MEMETYPER: {} launch: - /MEMETYPER.exe: + "/MEMETYPER.exe": - when: - os: windows store: steam @@ -332392,29 +333349,29 @@ Memoir: installDir: Memoir: {} launch: - /Memoir.app: + "/Memoir.app": - when: - os: mac store: steam - /Memoir.exe: + "/Memoir.exe": - when: - bit: 64 os: windows store: steam steam: id: 811040 -Memoir '44 Online: +"Memoir '44 Online": installDir: - Memoir '44 Online: {} + "Memoir '44 Online": {} launch: - /Memoir'44 Online.exe: + "/Memoir'44 Online.exe": - when: - store: steam steam: id: 108210 -'Memoir En Code: Reissue': +"Memoir En Code: Reissue": files: - /MemoirEnCodeReissue/savedata.ini: + "/MemoirEnCodeReissue/savedata.ini": tags: - save when: @@ -332422,15 +333379,15 @@ Memoir '44 Online: installDir: MemoirEnCodeReissue: {} launch: - /MemoirEnCodeReissue.app/Contents/MacOS/Mac_Runner: + "/MemoirEnCodeReissue.app/Contents/MacOS/Mac_Runner": - when: - os: mac store: steam - /MemoirEnCodeReissue.exe: + "/MemoirEnCodeReissue.exe": - when: - os: windows store: steam - /MemoirEnCodeReissue/runner: + "/MemoirEnCodeReissue/runner": - when: - os: linux store: steam @@ -332440,7 +333397,7 @@ Memoirs of a Battle Brothel: installDir: Memoirs of a Battle Brothel: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -332452,15 +333409,15 @@ Memoranda: installDir: Memoranda: {} launch: - /Memoranda.app: + "/Memoranda.app": - when: - os: mac store: steam - /Memoranda.exe: + "/Memoranda.exe": - when: - os: windows store: steam - /run.sh: + "/run.sh": - when: - os: linux store: steam @@ -332468,12 +333425,12 @@ Memoranda: id: 430410 Memoria: files: - /Daedalic Entertainment/Memoria/Savegames: + "/Daedalic Entertainment/Memoria/Savegames": tags: - save when: - os: windows - /Daedalic Entertainment/Memoria/config.ini: + "/Daedalic Entertainment/Memoria/config.ini": tags: - config when: @@ -332486,20 +333443,20 @@ Memoria: installDir: Memoria: {} launch: - /Memoria.app: + "/Memoria.app": - when: - bit: 64 os: mac store: steam - /VisionaireConfigurationTool.exe: + "/VisionaireConfigurationTool.exe": - when: - os: windows store: steam - /memoria.exe: + "/memoria.exe": - when: - os: windows store: steam - /start: + "/start": - when: - bit: 64 os: linux @@ -332510,7 +333467,7 @@ Memories: installDir: Memories: {} launch: - /Memories.exe: + "/Memories.exe": - when: - os: windows store: steam @@ -332523,7 +333480,7 @@ Memories of Home: installDir: Home: {} launch: - /Home.exe: + "/Home.exe": - when: - os: windows store: steam @@ -332536,12 +333493,12 @@ Memories of Mars: id: 644290 Memories of a Vagabond: files: - /Save1.rxdata: + "/Save1.rxdata": tags: - save when: - os: windows - /config.rxdata: + "/config.rxdata": tags: - config when: @@ -332549,7 +333506,7 @@ Memories of a Vagabond: installDir: Memories of a Vagabond: {} launch: - /GAME.exe: + "/GAME.exe": - when: - os: windows store: steam @@ -332559,34 +333516,34 @@ Memories on the Shoreline: installDir: Memories on the Shoreline: {} launch: - /Memories_on_the_Shoreline.exe: + "/Memories_on_the_Shoreline.exe": - when: - os: windows store: steam steam: id: 1145460 -Memorise'n'run: +"Memorise'n'run": installDir: - Memorise'n'run: {} + "Memorise'n'run": {} launch: - /Memorise'n'Run.exe: + "/Memorise'n'Run.exe": - when: - store: steam steam: id: 1026910 Memorrha: files: - /AppData/LocalLow/StickyStoneStudio/Memorrha: + "/AppData/LocalLow/StickyStoneStudio/Memorrha": tags: - save when: - os: windows - /AppData/LocalLow/StickyStoneStudio/Memorrha/Memorrha_Settings.config: + "/AppData/LocalLow/StickyStoneStudio/Memorrha/Memorrha_Settings.config": tags: - config when: - os: windows - /Library/Application Support/StickyStoneStudio/Memorrha: + "/Library/Application Support/StickyStoneStudio/Memorrha": tags: - save when: @@ -332594,26 +333551,26 @@ Memorrha: installDir: Memorrha: {} launch: - /Memorrha.app: + "/Memorrha.app": - when: - os: mac store: steam - /Memorrha_Linux.x86: + "/Memorrha_Linux.x86": - when: - bit: 32 os: linux store: steam - /Memorrha_Linux.x86_64: + "/Memorrha_Linux.x86_64": - when: - bit: 64 os: linux store: steam - /Memorrha_x32.exe: + "/Memorrha_x32.exe": - when: - bit: 32 os: windows store: steam - /Memorrha_x64.exe: + "/Memorrha_x64.exe": - when: - bit: 64 os: windows @@ -332628,7 +333585,7 @@ Memory Eater: installDir: Memory Eater: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -332641,7 +333598,7 @@ Memory Match Saga: installDir: Memory Match Saga: {} launch: - /Memory Match Saga.exe: + "/Memory Match Saga.exe": - when: - os: windows store: steam @@ -332651,7 +333608,7 @@ Memory Oblivion Box: installDir: mob: {} launch: - /mob.exe: + "/mob.exe": - when: - store: steam steam: @@ -332660,7 +333617,7 @@ Memory Puzzle - Futanari Doctor: installDir: Memory Puzzle - Futanari Doctor: {} launch: - /Memory Puzzle - Futanari Doctor.exe: + "/Memory Puzzle - Futanari Doctor.exe": - when: - os: windows store: steam @@ -332670,7 +333627,7 @@ Memory Puzzle - Futanari Mistress: installDir: Memory Puzzle - Futanari Mistress: {} launch: - /Memory Puzzle - Futanari Mistress.exe: + "/Memory Puzzle - Futanari Mistress.exe": - when: - os: windows store: steam @@ -332680,21 +333637,21 @@ Memory Trainer: installDir: Memory Trainer: {} launch: - /Memory Trainer.app/Contents/MacOS/Memory Trainer: + "/Memory Trainer.app/Contents/MacOS/Memory Trainer": - when: - os: mac store: steam - /Memory Trainer.exe: + "/Memory Trainer.exe": - when: - os: windows store: steam - /Memory Trainer.x86: + "/Memory Trainer.x86": - when: - os: linux store: steam steam: id: 893740 -'Memory Trees: Forget Me Not': +"Memory Trees: Forget Me Not": steam: id: 1044470 Memory of Torenia 思念的夏堇花: @@ -332703,19 +333660,19 @@ Memory of Torenia 思念的夏堇花: Memory of a Broken Dimension: steam: id: 544300 -'Memory''s Dogma CODE:01': +"Memory's Dogma CODE:01": files: - /Config.lua: + "/Config.lua": tags: - config when: - os: windows - /savedata: + "/savedata": tags: - save when: - os: windows - /system.ini: + "/system.ini": tags: - config when: @@ -332723,46 +333680,46 @@ Memory of a Broken Dimension: gog: id: 1611106985 installDir: - Memory's Dogma CODE01: {} + "Memory's Dogma CODE01": {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: id: 386970 -Memory's Reach: +"Memory's Reach": steam: id: 2126810 Men Bang: installDir: Men Bang: {} launch: - /Menbang.app: + "/Menbang.app": - when: - os: mac store: steam - /menbang.exe: + "/menbang.exe": - when: - bit: 64 os: windows store: steam steam: id: 1315680 -'Men in Black: The Game': +"Men in Black: The Game": files: - /Saves: + "/Saves": tags: - save when: - os: windows Men of Valor: files: - /Save: + "/Save": tags: - save when: - os: windows - /System: + "/System": tags: - config when: @@ -332772,11 +333729,11 @@ Men of Valor: installDir: Men of Valor: {} launch: - /SYSTEM/MenofValor.exe: + "/SYSTEM/MenofValor.exe": - when: - os: windows store: steam - - arguments: '-windowed' + - arguments: "-windowed" when: - os: windows store: steam @@ -332784,12 +333741,12 @@ Men of Valor: id: 411330 Men of War: files: - /My Games/men of war/profiles/player: + "/My Games/men of war/profiles/player": tags: - config when: - os: windows - /My Games/men of war/profiles/player/save: + "/My Games/men of war/profiles/player/save": tags: - save when: @@ -332799,11 +333756,11 @@ Men of War: installDir: Men of War: {} launch: - /mow.exe: + "/mow.exe": - when: - os: windows store: steam - /mow_editor.exe: + "/mow_editor.exe": - when: - os: windows store: steam @@ -332812,17 +333769,17 @@ Men of War: Men of War II: steam: id: 1128860 -'Men of War II: Arena': +"Men of War II: Arena": steam: id: 421010 -'Men of War: Assault Squad': +"Men of War: Assault Squad": files: - /My Games/men of war - assault squad/profiles/: + "/My Games/men of war - assault squad/profiles/": tags: - config when: - os: windows - /My Games/men of war - assault squad/profiles//save: + "/My Games/men of war - assault squad/profiles//save": tags: - save when: @@ -332842,19 +333799,19 @@ Men of War II: installDir: Men of War Assault Squad: {} launch: - /mow_assault_squad.exe: + "/mow_assault_squad.exe": - when: - store: steam steam: id: 64000 -'Men of War: Assault Squad 2': +"Men of War: Assault Squad 2": files: - /My Games/men of war - assault squad 2/profiles/: + "/My Games/men of war - assault squad 2/profiles/": tags: - config when: - os: windows - /My Games/men of war - assault squad 2/profiles//save: + "/My Games/men of war - assault squad 2/profiles//save": tags: - save when: @@ -332869,49 +333826,49 @@ Men of War II: installDir: Men of War Assault Squad 2: {} launch: - /mowas_2.exe: + "/mowas_2.exe": - when: - os: windows store: steam - - arguments: '-safe' + - arguments: "-safe" when: - store: steam - - arguments: '-no_mods' + - arguments: "-no_mods" when: - store: steam - /mowas_2_ed.exe: + "/mowas_2_ed.exe": - when: - os: windows store: steam steam: id: 244450 -'Men of War: Assault Squad 2 - Cold War': +"Men of War: Assault Squad 2 - Cold War": installDir: Men of War Assault Squad 2 - Cold War: {} launch: - /binaries/x64/as2_cw.exe: + "/binaries/x64/as2_cw.exe": - when: - store: steam - - arguments: '-safe' + - arguments: "-safe" when: - store: steam - - arguments: '-no_mods' + - arguments: "-no_mods" when: - store: steam - /binaries/x64/as2_cw_ed.exe: + "/binaries/x64/as2_cw_ed.exe": - when: - bit: 64 store: steam steam: id: 1135240 -'Men of War: Condemned Heroes': +"Men of War: Condemned Heroes": files: - /My Games/mow condemned heroes/profiles/: + "/My Games/mow condemned heroes/profiles/": tags: - config when: - os: windows - /My Games/mow condemned heroes/profiles//save: + "/My Games/mow condemned heroes/profiles//save": tags: - save when: @@ -332919,24 +333876,24 @@ Men of War II: installDir: Men of War Condemned Heroes: {} launch: - /CondemnedHeroes.exe: + "/CondemnedHeroes.exe": - when: - os: windows store: steam - /CondemnedHeroesEditor.exe: + "/CondemnedHeroesEditor.exe": - when: - os: windows store: steam steam: id: 204860 -'Men of War: Red Tide': +"Men of War: Red Tide": files: - /My Games/mow red tide/profiles/player: + "/My Games/mow red tide/profiles/player": tags: - config when: - os: windows - /My Games/mow red tide/profiles/player/save: + "/My Games/mow red tide/profiles/player/save": tags: - save when: @@ -332946,20 +333903,20 @@ Men of War II: installDir: Men of War Red Tide: {} launch: - /RedTide.exe: + "/RedTide.exe": - when: - os: windows store: steam steam: id: 3130 -'Men of War: Vietnam': +"Men of War: Vietnam": files: - /My Games/mow vietnam/profiles/: + "/My Games/mow vietnam/profiles/": tags: - config when: - os: windows - /My Games/mow vietnam/profiles//save: + "/My Games/mow vietnam/profiles//save": tags: - save when: @@ -332968,18 +333925,18 @@ Men of War II: id: 1428587439 id: gogExtra: - - 1428588959 - 1428588163 + - 1428588959 steamExtra: - 63942 installDir: Men of War - Vietnam: {} launch: - /Vietnam Editor.exe: + "/Vietnam Editor.exe": - when: - os: windows store: steam - /Vietnam.exe: + "/Vietnam.exe": - when: - os: windows store: steam @@ -332989,25 +333946,25 @@ Mendel: installDir: Mendel: {} launch: - /Mendel.app: + "/Mendel.app": - when: - os: mac store: steam - /Mendel.exe: + "/Mendel.exe": - when: - os: windows store: steam steam: id: 899340 -Mendel's Garden: +"Mendel's Garden": installDir: Mendels Garden: {} launch: - /Mendels Garden.app/Contents/MacOS/Mendels Garden: + "/Mendels Garden.app/Contents/MacOS/Mendels Garden": - when: - os: mac store: steam - /Mendels Garden/Mendels Garden.exe: + "/Mendels Garden/Mendels Garden.exe": - when: - os: windows store: steam @@ -333017,7 +333974,7 @@ Mentai Uncensored: installDir: Mentai Uncensored: {} launch: - /Mentai Uncensored.exe: + "/Mentai Uncensored.exe": - when: - os: windows store: steam @@ -333032,11 +333989,11 @@ Mental House: installDir: Mental House: {} launch: - /Mental House.exe: + "/Mental House.exe": - when: - os: windows store: steam - /MentalHouse.app/Contents/MacOS/Mental House: + "/MentalHouse.app/Contents/MacOS/Mental House": - when: - os: mac store: steam @@ -333044,12 +334001,12 @@ Mental House: id: 1005420 Menzoberranzan: files: - /GAME.OPT: + "/GAME.OPT": tags: - config when: - os: dos - /SAVE**: + "/SAVE**": tags: - save when: @@ -333065,14 +334022,14 @@ Meow Motors: installDir: MeowMotors: {} launch: - /MeowMotors.exe: + "/MeowMotors.exe": - when: - bit: 64 os: windows store: steam steam: id: 773430 -'Meow Wars: Card Battle': +"Meow Wars: Card Battle": installDir: MeowWars: {} steam: @@ -333081,31 +334038,31 @@ Meow-Jong: installDir: MeowJongSolitaire: {} launch: - /mjs.app: + "/mjs.app": - when: - os: mac store: steam - /mjs.exe: + "/mjs.exe": - when: - os: windows store: steam - /mjs.x86: + "/mjs.x86": - when: - bit: 32 os: linux store: steam - /mjs.x86_64: + "/mjs.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 535910 -'Meower''s Quest: Jasper''s Tale': +"Meower's Quest: Jasper's Tale": installDir: - Meower's Quest Jasper's Tale: {} + "Meower's Quest Jasper's Tale": {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -333115,76 +334072,71 @@ Meowk and Frocco: installDir: Meowk and Frocco: {} launch: - /Meowk and Kvakv.exe: + "/Meowk and Kvakv.exe": - when: - store: steam steam: id: 1088110 Mercedes-Benz Truck Racing: files: - /Config*.dsv: - tags: - - config - when: - - os: windows - /Replays: + "/Replays": tags: - save when: - os: windows - /SpStand: + "/SpStand": tags: - save when: - os: windows Mercedes-Benz World Racing: files: - /Config.ini: + "/Config.ini": tags: - config when: - os: windows - /WR-SavesSinglePM: + "/WR-SavesSinglePM": tags: - save when: - os: windows -'Mercenaries 2: World in Flames': +"Mercenaries 2: World in Flames": files: - /Mercs2.ini: + "/Mercs2.ini": tags: - config when: - os: windows - /My Games/Mercenaries 2/SaveGames: + "/My Games/Mercenaries 2/SaveGames": tags: - save when: - os: windows -'Mercenary DungeonS: Hell Warriors': +"Mercenary DungeonS: Hell Warriors": steam: id: 1195080 Mercenary Kings: files: - /Library/Application Support/Tribute Games/MercenaryKings: + "/Library/Application Support/Tribute Games/MercenaryKings": tags: - config - save when: - os: mac - /userdata//218820: + "/userdata//218820": tags: - config - save when: - store: steam - /Tribute Games/MercenaryKings: + "/Tribute Games/MercenaryKings": tags: - config - save when: - os: windows - /Tribute Games/MercenaryKings: + "/Tribute Games/MercenaryKings": tags: - config - save @@ -333193,15 +334145,15 @@ Mercenary Kings: installDir: mercenary_kings: {} launch: - /MercenaryKings: + "/MercenaryKings": - when: - os: linux store: steam - /MercenaryKings.app/Contents/MacOS/MercenaryKings: + "/MercenaryKings.app/Contents/MacOS/MercenaryKings": - when: - os: mac store: steam - /MercenaryKings.exe: + "/MercenaryKings.exe": - when: - os: windows store: steam @@ -333211,7 +334163,7 @@ Mercenary Leto: installDir: Mercenary Leto: {} launch: - /Mercenary Leto.exe: + "/Mercenary Leto.exe": - when: - os: windows store: steam @@ -333221,20 +334173,20 @@ Mercfighter: installDir: Mercfighter: {} launch: - /Merc Fighter.exe: + "/Merc Fighter.exe": - when: - os: windows store: steam steam: id: 676540 -'Mercforce: 30X1': +"Mercforce: 30X1": steam: id: 1099100 Merchant: installDir: Merchant: {} launch: - /Merchant.exe: + "/Merchant.exe": - when: - store: steam steam: @@ -333243,20 +334195,20 @@ Merchant of the Skies: installDir: Merchant of the Skies: {} launch: - /Merchant.app: + "/Merchant.app": - when: - os: mac store: steam - /Merchant.exe: + "/Merchant.exe": - when: - os: windows store: steam - /Merchant.x86: + "/Merchant.x86": - when: - bit: 32 os: linux store: steam - /Merchant.x86_64: + "/Merchant.x86_64": - when: - bit: 64 os: linux @@ -333267,7 +334219,7 @@ Merchants & Mercenaries: installDir: Merchants & Mercenaries: {} launch: - /MerchantsAndMercenaries.exe: + "/MerchantsAndMercenaries.exe": - when: - os: windows store: steam @@ -333275,7 +334227,7 @@ Merchants & Mercenaries: id: 546870 Merchants of Kaidan: files: - /userdata//294020/remote: + "/userdata//294020/remote": tags: - save when: @@ -333283,19 +334235,19 @@ Merchants of Kaidan: installDir: MerchantsOfKaidan: {} launch: - /Kaidan.app: + "/Kaidan.app": - when: - os: mac store: steam - /Kaidan.exe: + "/Kaidan.exe": - when: - os: windows store: steam - /Kaidan.x86: + "/Kaidan.x86": - when: - os: linux store: steam - /soundtrack.cmd: + "/soundtrack.cmd": - when: - os: windows store: steam @@ -333309,7 +334261,7 @@ Mercs: installDir: Mercs: {} launch: - /Mercs.exe: + "/Mercs.exe": - when: - os: windows store: steam @@ -333319,24 +334271,24 @@ Mercs Fully Loaded: installDir: Mercs Fully Loaded: {} launch: - /MercsFullyLoaded.exe: + "/MercsFullyLoaded.exe": - when: - os: windows store: steam steam: id: 1756390 -'Mercury Blue: Mini Episode': +"Mercury Blue: Mini Episode": installDir: Mercury Blue Mini Episode: {} launch: - /MercuryBlue_MiniEpisode.exe: + "/MercuryBlue_MiniEpisode.exe": - when: - store: steam steam: id: 732360 Mercury Fallen: files: - /Mercury Fallen/Saves: + "/Mercury Fallen/Saves": tags: - save when: @@ -333344,11 +334296,11 @@ Mercury Fallen: installDir: Mercury Fallen: {} launch: - /MercuryFallen.app: + "/MercuryFallen.app": - when: - os: mac store: steam - /MercuryFallen.exe: + "/MercuryFallen.exe": - when: - os: windows store: steam @@ -333358,17 +334310,17 @@ Mercury Race: installDir: Mercury Race: {} launch: - /Mercury Race.exe: + "/Mercury Race.exe": - when: - os: windows store: steam steam: id: 817530 -'Mercury: Cascade into Madness': +"Mercury: Cascade into Madness": installDir: Mercury Cascade into Madness: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -333378,19 +334330,19 @@ Merge: installDir: Merge: {} launch: - /VoidEngine/Merge/Merge.exe: + "/VoidEngine/Merge/Merge.exe": - when: - bit: 64 os: windows store: steam - workingDir: /VoidEngine/Merge + workingDir: "/VoidEngine/Merge" steam: id: 1138020 Merge Nymphs: installDir: Merge Nymphs: {} launch: - /Merge Nymphs.exe: + "/Merge Nymphs.exe": - when: - os: windows store: steam @@ -333400,7 +334352,7 @@ Merge Towers: installDir: MergeTowers: {} launch: - /MergeTowers/MergeTowers.exe: + "/MergeTowers/MergeTowers.exe": - when: - os: windows store: steam @@ -333416,36 +334368,36 @@ Meridian 59: Meridian 59: {} steam: id: 893390 -'Meridian: Age of Invention': +"Meridian: Age of Invention": installDir: MeridianAgeofInvention: {} launch: - /Meridian Age Of Invention.exe: + "/Meridian Age Of Invention.exe": - when: - os: windows store: steam steam: id: 397770 -'Meridian: New World': +"Meridian: New World": gog: id: 1207666003 installDir: Meridian - New World: {} launch: - /Meridian - New World.exe: + "/Meridian - New World.exe": - when: - bit: 32 os: windows store: steam steam: id: 265120 -'Meridian: Squad 22': +"Meridian: Squad 22": gog: id: 1583197130 installDir: Meridian - Squad 22: {} launch: - /Squad22.exe: + "/Squad22.exe": - when: - os: windows store: steam @@ -333455,25 +334407,25 @@ Meritocracy of the Oni & Blade: installDir: Meritocracy of the Oni & Blade: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam steam: id: 885940 -'Meriwether: An American Epic': +"Meriwether: An American Epic": installDir: Meriwether: {} launch: - /Meriwether.app: + "/Meriwether.app": - when: - os: mac store: steam - /Meriwether.exe: + "/Meriwether.exe": - when: - os: windows store: steam - /Meriwether.x86_64: + "/Meriwether.x86_64": - when: - os: linux store: steam @@ -333483,8 +334435,8 @@ Merlin Adventurer Store: installDir: Merlin adventurer store: {} launch: - /Merlin adventurer store.exe: - - arguments: '-windowed' + "/Merlin adventurer store.exe": + - arguments: "-windowed" when: - os: windows store: steam @@ -333494,14 +334446,14 @@ Merlin Soccer: installDir: Merlin Soccer: {} launch: - /Merlin Soccer.app/Contents/MacOS/Merlin Soccer: + "/Merlin Soccer.app/Contents/MacOS/Merlin Soccer": - when: - store: steam - /Merlin Soccer.exe: + "/Merlin Soccer.exe": - when: - os: windows store: steam - /Merlin Soccer.x86: + "/Merlin Soccer.x86": - when: - os: linux store: steam @@ -333511,25 +334463,25 @@ Merlin vs Zombies: installDir: Merlin vs Zombies: {} launch: - /Merlin vs Zombies.app/Contents/MacOS/Merlin vs Zombies: + "/Merlin vs Zombies.app/Contents/MacOS/Merlin vs Zombies": - when: - os: mac store: steam - /Merlin vs Zombies.exe: + "/Merlin vs Zombies.exe": - when: - os: windows store: steam - /Merlin vs Zombies.x86: + "/Merlin vs Zombies.x86": - when: - os: linux store: steam steam: id: 793240 -'Mermaid Adventures: The Frozen Time': +"Mermaid Adventures: The Frozen Time": installDir: Mermaid Adventures The Frozen Time: {} launch: - /Mermfrozen.exe: + "/Mermfrozen.exe": - when: - store: steam steam: @@ -333538,7 +334490,7 @@ Mermaid Colony: installDir: Mermaid Colony: {} launch: - /Mermaid Colony.exe: + "/Mermaid Colony.exe": - when: - os: windows store: steam @@ -333548,15 +334500,15 @@ Mermaid Coralie ~ Love and Madness: installDir: Mermaid Coralie Love and Madness: {} launch: - /MermaidCoralie/MermaidCoralie.app: + "/MermaidCoralie/MermaidCoralie.app": - when: - os: mac store: steam - /MermaidCoralie/MermaidCoralie.exe: + "/MermaidCoralie/MermaidCoralie.exe": - when: - os: windows store: steam - /MermaidCoralie/MermaidCoralie.sh: + "/MermaidCoralie/MermaidCoralie.sh": - when: - os: linux store: steam @@ -333566,29 +334518,29 @@ Mermaid Land: installDir: Mermaid Land: {} launch: - /Mermaid Land.app/Contents/MacOS/Mermaid Land: + "/Mermaid Land.app/Contents/MacOS/Mermaid Land": - when: - os: mac store: steam - /Mermaid Land.exe: + "/Mermaid Land.exe": - when: - os: windows store: steam steam: id: 807880 -'Mermaid Mission: Titanic': +"Mermaid Mission: Titanic": installDir: Mermaid Mission Titanic: {} launch: - /Mermaid_Mission_Titanic-1.0-mac/Mermaid_Mission_Titanic.app: + "/Mermaid_Mission_Titanic-1.0-mac/Mermaid_Mission_Titanic.app": - when: - os: mac store: steam - /Mermaid_Mission_Titanic-1.0-market/Mermaid_Mission_Titanic.exe: + "/Mermaid_Mission_Titanic-1.0-market/Mermaid_Mission_Titanic.exe": - when: - os: windows store: steam - /Mermaid_Mission_Titanic-1.0-market/Mermaid_Mission_Titanic.sh: + "/Mermaid_Mission_Titanic-1.0-market/Mermaid_Mission_Titanic.sh": - when: - os: linux store: steam @@ -333603,7 +334555,7 @@ Merri Puzzle: installDir: Merri_Puzzle: {} launch: - /merripuzzle.exe: + "/merripuzzle.exe": - when: - os: windows store: steam @@ -333613,11 +334565,11 @@ Merrily Perilly: installDir: Merrily Perilly: {} launch: - /MerrilyPerilly.app: + "/MerrilyPerilly.app": - when: - os: mac store: steam - /merrilyperilly.exe: + "/merrilyperilly.exe": - when: - os: windows store: steam @@ -333627,7 +334579,7 @@ Merry Glade: installDir: Merry Glade: {} launch: - /Merry_Glade_Steam.exe: + "/Merry_Glade_Steam.exe": - when: - os: windows store: steam @@ -333642,7 +334594,7 @@ Merv Liberation: installDir: Merv Liberation: {} launch: - /Merv Liberation.exe: + "/Merv Liberation.exe": - when: - os: windows store: steam @@ -333652,18 +334604,18 @@ Merv Reborn: installDir: Merv Reborn: {} launch: - /Merv Reborn.exe: + "/Merv Reborn.exe": - when: - os: windows store: steam steam: id: 731410 -'Mervils: A VR Adventure': +"Mervils: A VR Adventure": installDir: Mervils A VR Adventure: {} launch: - /Mervils.exe: - - arguments: '-vrmode none' + "/Mervils.exe": + - arguments: "-vrmode none" when: - os: windows store: steam @@ -333673,11 +334625,11 @@ Mervin and the Wicked Station: installDir: Mervin and the Wicked Station: {} launch: - /Mervin and the Wicked Station.app/Contents/MacOS/Mervin and the Wicked Station: + "/Mervin and the Wicked Station.app/Contents/MacOS/Mervin and the Wicked Station": - when: - os: mac store: steam - /Mervin and the Wicked Station.exe: + "/Mervin and the Wicked Station.exe": - when: - os: windows store: steam @@ -333687,7 +334639,7 @@ Mesel: installDir: Mesel: {} launch: - /Mesel.exe: + "/Mesel.exe": - when: - os: windows store: steam @@ -333699,21 +334651,21 @@ Mesmer: installDir: Mesmer: {} launch: - /Mesmer.app: + "/Mesmer.app": - when: - os: mac store: steam - /Mesmer.exe: + "/Mesmer.exe": - when: - bit: 64 os: windows store: steam - /Mesmer.x86: + "/Mesmer.x86": - when: - bit: 32 os: linux store: steam - /Mesmer.x86_64: + "/Mesmer.x86_64": - when: - bit: 64 os: linux @@ -333724,7 +334676,7 @@ Mesozoica: installDir: Mesozoica: {} launch: - /Mesozoica.exe: + "/Mesozoica.exe": - when: - os: windows store: steam @@ -333734,15 +334686,15 @@ Message Quest: installDir: MessageQuest: {} launch: - /mq.app/Contents/MacOS/mq: + "/mq.app/Contents/MacOS/mq": - when: - os: mac store: steam - /mq.exe: + "/mq.exe": - when: - os: windows store: steam - /mq.x86_64: + "/mq.x86_64": - when: - os: linux store: steam @@ -333750,7 +334702,7 @@ Message Quest: id: 408280 Messiah: files: - /SAVE: + "/SAVE": tags: - save when: @@ -333760,7 +334712,7 @@ Messiah: installDir: Messiah: {} launch: - /Launch Messiah.bat: + "/Launch Messiah.bat": - when: - store: steam steam: @@ -333769,8 +334721,8 @@ Meta Revelations - Ring Spirits: installDir: Meta Revelations - Ring Spirits: {} launch: - /Game.exe: - - arguments: '--in-process-gpu' + "/Game.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam @@ -333780,17 +334732,17 @@ Meta Star: installDir: Meta Star: {} launch: - /MetaStarV001.exe: + "/MetaStarV001.exe": - when: - os: windows store: steam steam: id: 659000 -'Meta: Assembled': +"Meta: Assembled": installDir: Meta - Assembled: {} launch: - /meta-assembled.exe: + "/meta-assembled.exe": - when: - os: windows store: steam @@ -333800,15 +334752,15 @@ MetaHuman Inc.: installDir: MetaHuman Inc: {} launch: - /MetaHuman Inc.app/Contents/MacOS/MetaHuman Inc: + "/MetaHuman Inc.app/Contents/MacOS/MetaHuman Inc": - when: - os: mac store: steam - /MetaHumanInc: + "/MetaHumanInc": - when: - os: linux store: steam - /MetaHumanInc.exe: + "/MetaHumanInc.exe": - when: - os: windows store: steam @@ -333816,7 +334768,7 @@ MetaHuman Inc.: id: 426330 MetaMorph: files: - /AppData/LocalLow/fireflystudios/metamorph: + "/AppData/LocalLow/fireflystudios/metamorph": tags: - save when: @@ -333824,7 +334776,7 @@ MetaMorph: installDir: MetaMorph: {} launch: - /MetaMorph.exe: + "/MetaMorph.exe": - when: - os: windows store: steam @@ -333841,7 +334793,7 @@ MetaTron: installDir: MetaTron: {} launch: - /MetaTron.exe: + "/MetaTron.exe": - when: - os: windows store: steam @@ -333854,11 +334806,11 @@ Metagal: installDir: METAGAL: {} launch: - /metagal/Meta_gal.exe: + "/metagal/Meta_gal.exe": - when: - os: windows store: steam - /metagal/Metagal.app: + "/metagal/Metagal.app": - when: - os: mac store: steam @@ -333868,7 +334820,7 @@ Metagalactic Blitz: installDir: Metagalactic Blitz: {} launch: - /MGB.exe: + "/MGB.exe": - when: - os: windows store: steam @@ -333883,7 +334835,7 @@ Metal Assault - Gigaslave: installDir: Metal Assault - Gigaslave - Europe: {} launch: - /Launcher.exe: + "/Launcher.exe": - arguments: /steamlogin when: - os: windows @@ -333894,7 +334846,7 @@ Metal Black S-Tribute: installDir: METAL BLACK S-Tribute: {} launch: - /S-Tribute.exe: + "/S-Tribute.exe": - when: - os: windows store: steam @@ -333904,7 +334856,7 @@ Metal Brigade Tactics: installDir: Metal Brigade Tactics: {} launch: - /MetalBrigadeTactics.exe: + "/MetalBrigadeTactics.exe": - when: - os: windows store: steam @@ -333914,11 +334866,11 @@ Metal Carnage: installDir: Metal Carnage: {} launch: - /metalcarnage.app: + "/metalcarnage.app": - when: - os: mac store: steam - /metalcarnage.exe: + "/metalcarnage.exe": - when: - os: windows store: steam @@ -333928,7 +334880,7 @@ Metal Commando: installDir: Metal Commando: {} launch: - /Metal Commando.exe: + "/Metal Commando.exe": - when: - os: windows store: steam @@ -333938,7 +334890,7 @@ Metal Country: installDir: Metal Country: {} launch: - /MetalCountry.exe: + "/MetalCountry.exe": - when: - bit: 64 os: windows @@ -333947,12 +334899,12 @@ Metal Country: id: 1055770 Metal Dead: files: - /acsetup.cfg: + "/acsetup.cfg": tags: - config when: - os: windows - /Saved Games/Metal Dead: + "/Saved Games/Metal Dead": tags: - save when: @@ -333960,11 +334912,11 @@ Metal Dead: installDir: MetalDead: {} launch: - /MetalDead.exe: + "/MetalDead.exe": - when: - os: windows store: steam - - arguments: '--setup' + - arguments: "--setup" when: - os: windows store: steam @@ -333974,12 +334926,12 @@ Metal Division: installDir: Metal Division: {} launch: - /MetalDivision: + "/MetalDivision": - when: - bit: 64 os: linux store: steam - /MetalDivision.exe: + "/MetalDivision.exe": - when: - bit: 64 os: windows @@ -333990,7 +334942,7 @@ Metal Dogs: installDir: METAL DOGS: {} launch: - /DOGS.exe: + "/DOGS.exe": - when: - store: steam steam: @@ -333999,14 +334951,14 @@ Metal Drift: installDir: MetalDrift: {} launch: - /MetalDrift.exe: + "/MetalDrift.exe": - when: - store: steam steam: id: 32200 Metal Fatigue: files: - /Save: + "/Save": tags: - save when: @@ -334016,30 +334968,30 @@ Metal Fatigue: installDir: Metal Fatigue: {} launch: - /MFatigue.exe: + "/MFatigue.exe": - when: - os: windows store: steam - /nglide_config.exe: + "/nglide_config.exe": - when: - os: windows store: steam steam: id: 888040 -'Metal Force: Tank Games Online': +"Metal Force: Tank Games Online": installDir: Metal Force for Steam: {} launch: - /Metal Force.app: + "/Metal Force.app": - when: - os: mac store: steam - /Metal Force.exe: + "/Metal Force.exe": - when: - bit: 64 os: windows store: steam - /Metal Force.x86_64: + "/Metal Force.x86_64": - when: - bit: 64 os: linux @@ -334049,14 +335001,14 @@ Metal Fatigue: Metal Fury 3000: steam: id: 991630 -'Metal Gear & Metal Gear 2: Solid Snake - Master Collection Version': +"Metal Gear & Metal Gear 2: Solid Snake - Master Collection Version": files: - /mg12_savedata_win/: + "/mg12_savedata_win/": tags: - save when: - os: windows - /mg12_savedata_win//launcher: + "/mg12_savedata_win//launcher": tags: - config when: @@ -334065,21 +335017,21 @@ Metal Fury 3000: id: 2131680 Metal Gear (MSX2): files: - /SaveData/data.bin: + "/SaveData/data.bin": tags: - save when: - os: windows - /settings.ini: + "/settings.ini": tags: - config when: - os: windows gog: id: 2022393863 -'Metal Gear (NES) & Metal Gear 2: Snake''s Revenge (NES) - Master Collection Version': +"Metal Gear (NES) & Metal Gear 2: Snake's Revenge (NES) - Master Collection Version": files: - /userdata//2306740/remote: + "/userdata//2306740/remote": tags: - save when: @@ -334088,24 +335040,24 @@ Metal Gear (MSX2): installDir: MGS Master Collection Bonus Content: {} launch: - /MGS MC1 Bonus Content.exe: + "/MGS MC1 Bonus Content.exe": - when: - store: steam steam: id: 2306740 -'Metal Gear Rising: Revengeance': +"Metal Gear Rising: Revengeance": files: - /Library/Application Support/Metal Gear Rising - Revengeance Steam/p_drive/User/Application Data/MGR/SaveData/MGR.sav: + "/Library/Application Support/Metal Gear Rising - Revengeance Steam/p_drive/User/Application Data/MGR/SaveData/MGR.sav": tags: - save when: - os: mac - 'C:/Users//Documents/MGR/SaveData': + "C:/Users//Documents/MGR/SaveData": tags: - config when: - os: windows - 'C:/Users//Documents/MGR/SaveData/MGR.sav': + "C:/Users//Documents/MGR/SaveData/MGR.sav": tags: - save when: @@ -334113,12 +335065,12 @@ Metal Gear (MSX2): installDir: METAL GEAR RISING REVENGEANCE: {} launch: - /METAL GEAR RISING REVENGEANCE.exe: + "/METAL GEAR RISING REVENGEANCE.exe": - when: - os: windows store: steam - /Metal Gear Rising - Revengeance.app/Contents/MacOS/MetalGearRisingRevengeance: - - arguments: '-psn' + "/Metal Gear Rising - Revengeance.app/Contents/MacOS/MetalGearRisingRevengeance": + - arguments: "-psn" when: - os: mac store: steam @@ -334126,7 +335078,7 @@ Metal Gear (MSX2): id: 235460 Metal Gear Solid - Master Collection Version: files: - /userdata//2131630/remote: + "/userdata//2131630/remote": tags: - save when: @@ -334135,19 +335087,19 @@ Metal Gear Solid - Master Collection Version: installDir: MGS1: {} launch: - /METAL GEAR SOLID.exe: + "/METAL GEAR SOLID.exe": - when: - store: steam steam: id: 2131630 -'Metal Gear Solid 2: Sons of Liberty - Master Collection Version': +"Metal Gear Solid 2: Sons of Liberty - Master Collection Version": files: - /mgs2_savedata_win/: + "/mgs2_savedata_win/": tags: - save when: - os: windows - /mgs2_savedata_win//launcher: + "/mgs2_savedata_win//launcher": tags: - config when: @@ -334155,34 +335107,34 @@ Metal Gear Solid - Master Collection Version: installDir: MGS2: {} launch: - /launcher.exe: + "/launcher.exe": - when: - os: windows store: steam steam: id: 2131640 -'Metal Gear Solid 2: Substance': +"Metal Gear Solid 2: Substance": files: - /bin/*.ini: + "/bin/*.ini": tags: - config when: - os: windows - /savedata: + "/savedata": tags: - save when: - os: windows gog: id: 2069117974 -'Metal Gear Solid 3: Snake Eater - Master Collection Version': +"Metal Gear Solid 3: Snake Eater - Master Collection Version": files: - /mgs3_savedata_win/: + "/mgs3_savedata_win/": tags: - save when: - os: windows - /mgs3_savedata_win//launcher: + "/mgs3_savedata_win//launcher": tags: - config when: @@ -334190,21 +335142,21 @@ Metal Gear Solid - Master Collection Version: installDir: MGS3: {} launch: - /launcher.exe: + "/launcher.exe": - when: - os: windows store: steam steam: id: 2131650 -'Metal Gear Solid V: Ground Zeroes': +"Metal Gear Solid V: Ground Zeroes": files: - /userdata//311340/local: + "/userdata//311340/local": tags: - config when: - os: windows store: steam - /userdata//311340/remote: + "/userdata//311340/remote": tags: - save when: @@ -334213,26 +335165,27 @@ Metal Gear Solid - Master Collection Version: installDir: Metal Gear Solid Ground Zeroes: {} launch: - /MgsGroundZeroes.exe: + "/MgsGroundZeroes.exe": - when: - os: windows store: steam steam: id: 311340 -'Metal Gear Solid V: The Phantom Pain': +"Metal Gear Solid V: The Phantom Pain": files: - /.steam/steam/userdata//311340/remote: + "/.steam/steam/userdata//311340/remote": tags: - save when: - - store: steam - /userdata//287700/local: + - os: linux + store: steam + "/userdata//287700/local": tags: - config when: - os: windows store: steam - /userdata//311340/remote: + "/userdata//311340/remote": tags: - save when: @@ -334241,32 +335194,32 @@ Metal Gear Solid - Master Collection Version: installDir: MGS_TPP: {} launch: - /mgsvtpp.exe: + "/mgsvtpp.exe": - when: - store: steam steam: id: 287700 -'Metal Gear Solid Δ: Snake Eater': +"Metal Gear Solid Δ: Snake Eater": steam: id: 2417610 -'Metal Gear Solid: Integral': +"Metal Gear Solid: Integral": files: - /*.cfg: + "/*.cfg": tags: - config when: - os: windows - /SavedGames: + "/SavedGames": tags: - save when: - os: windows - /dxcfg.ini: + "/dxcfg.ini": tags: - config when: - os: windows - /records.vr: + "/records.vr": tags: - save when: @@ -334275,13 +335228,13 @@ Metal Gear Solid - Master Collection Version: id: 1771973390 Metal Gear Survive: files: - /userdata//543900/local: + "/userdata//543900/local": tags: - config when: - os: windows store: steam - /userdata//543900/remote: + "/userdata//543900/remote": tags: - save when: @@ -334290,7 +335243,7 @@ Metal Gear Survive: installDir: METAL GEAR SURVIVE: {} launch: - /mgv.exe: + "/mgv.exe": - when: - os: windows store: steam @@ -334300,7 +335253,7 @@ Metal Heads: installDir: Metal Heads: {} launch: - /MetalHeadsGame.exe: + "/MetalHeadsGame.exe": - when: - os: windows store: steam @@ -334308,12 +335261,12 @@ Metal Heads: id: 1132670 Metal Max Xeno Reborn: files: - /AppData/LocalLow/KADOKAWA GAMES/METAL MAX Xeno Reborn: + "/AppData/LocalLow/KADOKAWA GAMES/METAL MAX Xeno Reborn": tags: - save when: - os: windows - /userdata//1637230: + "/userdata//1637230": tags: - save when: @@ -334322,7 +335275,7 @@ Metal Max Xeno Reborn: installDir: Metal Max Xeno Reborn: {} launch: - /METAL MAX Xeno Reborn.exe: + "/METAL MAX Xeno Reborn.exe": - when: - store: steam registry: @@ -334335,7 +335288,7 @@ Metal Mind: installDir: Metal Mind: {} launch: - /MetalMind.exe: + "/MetalMind.exe": - when: - os: windows store: steam @@ -334343,7 +335296,7 @@ Metal Mind: id: 1167100 Metal Mutant: files: - /SOS.FIC: + "/SOS.FIC": tags: - save when: @@ -334352,7 +335305,7 @@ Metal Noise: installDir: MetalNoise: {} launch: - /MetalNoise.exe: + "/MetalNoise.exe": - when: - os: windows store: steam @@ -334362,7 +335315,7 @@ Metal Planet: installDir: MetalPlanet: {} launch: - /Xmetal.exe: + "/Xmetal.exe": - when: - os: windows store: steam @@ -334372,7 +335325,7 @@ Metal Quest: installDir: Metal Quest: {} launch: - /RPG_RT.exe: + "/RPG_RT.exe": - when: - os: windows store: steam @@ -334382,7 +335335,7 @@ Metal Reaper Online: installDir: Metal Reaper Online: {} launch: - /MRLauncher.exe: + "/MRLauncher.exe": - arguments: /Steam when: - os: windows @@ -334392,12 +335345,12 @@ Metal Reaper Online: Metal Revolution: steam: id: 994560 -'Metal Shell: Neon Pulse': +"Metal Shell: Neon Pulse": steam: id: 819460 Metal Slug: files: - /mslug1: + "/mslug1": tags: - config - save @@ -334408,7 +335361,7 @@ Metal Slug: installDir: METAL SLUG: {} launch: - /mslug1.exe: + "/mslug1.exe": - when: - os: windows store: steam @@ -334416,7 +335369,7 @@ Metal Slug: id: 366250 Metal Slug 2: files: - /mslug2: + "/mslug2": tags: - config - save @@ -334427,7 +335380,7 @@ Metal Slug 2: installDir: METAL SLUG 2: {} launch: - /mslug2.exe: + "/mslug2.exe": - when: - os: windows store: steam @@ -334435,18 +335388,18 @@ Metal Slug 2: id: 366260 Metal Slug 3: files: - /mslug3: + "/mslug3": tags: - config - save when: - os: windows - /SNK/mslug3: + "/SNK/mslug3": tags: - save when: - os: linux - /SNK/mslug3/OPTIONS: + "/SNK/mslug3/OPTIONS": tags: - config when: @@ -334456,7 +335409,7 @@ Metal Slug 3: installDir: Metal Slug 3: {} launch: - /mslug3.exe: + "/mslug3.exe": - when: - os: windows store: steam @@ -334464,7 +335417,7 @@ Metal Slug 3: id: 250180 Metal Slug Defense: files: - /userdata//356310/remote/user.dat: + "/userdata//356310/remote/user.dat": tags: - save when: @@ -334472,7 +335425,7 @@ Metal Slug Defense: installDir: METAL SLUG DEFENSE: {} launch: - /msdf-steam.exe: + "/msdf-steam.exe": - when: - os: windows store: steam @@ -334483,18 +335436,18 @@ Metal Slug Tactics: id: 1590760 Metal Slug X: files: - /mslugx: + "/mslugx": tags: - config - save when: - os: windows - /SNK/mslugx: + "/SNK/mslugx": tags: - save when: - os: linux - /SNK/mslugx/OPTIONS: + "/SNK/mslugx/OPTIONS": tags: - config when: @@ -334504,7 +335457,7 @@ Metal Slug X: installDir: Metal Slug X: {} launch: - /mslugx.exe: + "/mslugx.exe": - when: - os: windows store: steam @@ -334512,12 +335465,12 @@ Metal Slug X: id: 312610 Metal Slug XX: files: - /saves/ULES01429METALSLUGXX/PARAMS.SFO: + "/saves/ULES01429METALSLUGXX/PARAMS.SFO": tags: - config when: - os: windows - /saves/ULES01429METALSLUGXX/SAVEDATA.BIN: + "/saves/ULES01429METALSLUGXX/SAVEDATA.BIN": tags: - save when: @@ -334525,7 +335478,7 @@ Metal Slug XX: installDir: Pineapple: {} launch: - /Metal Slug XX.exe: + "/Metal Slug XX.exe": - when: - os: windows store: steam @@ -334535,7 +335488,7 @@ Metal Soldiers 2: installDir: Metal Soldiers 2: {} launch: - /MetalSoldiers2.exe: + "/MetalSoldiers2.exe": - when: - os: windows store: steam @@ -334546,25 +335499,25 @@ Metal Suit Warrior VR: Metal Suit Warrior VR: {} steam: id: 1043800 -'Metal Tales: Fury of the Guitar Gods': +"Metal Tales: Fury of the Guitar Gods": installDir: Metal Tales Fury of the Guitar Gods: {} launch: - /MetalTales.app/Contents/MacOS/metal tales: + "/MetalTales.app/Contents/MacOS/metal tales": - when: - os: mac store: steam - /MetalTales.x86: + "/MetalTales.x86": - when: - bit: 32 os: linux store: steam - /MetalTales.x86_64: + "/MetalTales.x86_64": - when: - bit: 64 os: linux store: steam - /metal tales.exe: + "/metal tales.exe": - when: - os: windows store: steam @@ -334572,7 +335525,7 @@ Metal Suit Warrior VR: id: 418210 Metal Unit: files: - /AppData/LocalLow/JellySnow/MetalUnit//data.jly: + "/AppData/LocalLow/JellySnow/MetalUnit//data.jly": tags: - save when: @@ -334583,7 +335536,7 @@ Metal Unit: installDir: Metal Unit: {} launch: - /MetalUnit.exe: + "/MetalUnit.exe": - when: - os: windows store: steam @@ -334593,36 +335546,36 @@ Metal Unit: - config steam: id: 1173200 -'Metal Waltz: Anime Tank Girls': +"Metal Waltz: Anime Tank Girls": installDir: MetalWaltz: {} launch: - /Sherman.exe: + "/Sherman.exe": - arguments: RunningResources when: - os: windows store: steam steam: id: 581130 -'Metal War Online: Retribution': +"Metal War Online: Retribution": installDir: Metal War Online Retribution: {} launch: - /MWOLauncher.exe: - - arguments: '-platform-steam' + "/MWOLauncher.exe": + - arguments: "-platform-steam" when: - store: steam steam: id: 412470 Metal Wolf Chaos XD: files: - /save: + "/save": tags: - config - save when: - os: windows - /save/: + "/save/": tags: - config - save @@ -334633,8 +335586,8 @@ Metal Wolf Chaos XD: installDir: Metal Wolf Chaos XD: {} launch: - /wilson.exe: - - arguments: '-boostFx -instagram default' + "/wilson.exe": + - arguments: "-boostFx -instagram default" when: - store: steam steam: @@ -334643,20 +335596,20 @@ Metal as Phuk: installDir: Metal as Phuk: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: id: 662210 -'Metal: Hellsinger': +"Metal: Hellsinger": files: - /AppData/LocalLow/TheOutsiders/Metal/Save: + "/AppData/LocalLow/TheOutsiders/Metal/Save": tags: - config - save when: - os: windows - /Packages/FuncomOsloAS.ProjectHammerhead_pkaskhy6cdq4g/SystemAppData/wgs: + "/Packages/FuncomOsloAS.ProjectHammerhead_pkaskhy6cdq4g/SystemAppData/wgs": tags: - save when: @@ -334669,18 +335622,18 @@ Metal as Phuk: installDir: Metal Hellsinger: {} launch: - /Metal.exe: + "/Metal.exe": - when: - bit: 64 os: windows store: steam steam: id: 1061910 -'Metal: Iron Age': +"Metal: Iron Age": installDir: metal: {} launch: - /fulgum.exe: + "/fulgum.exe": - when: - os: windows store: steam @@ -334691,38 +335644,45 @@ MetalArms: MetalArms: {} steam: id: 1155860 -'Metaloid : Origin': +"Metalheart: Replicants Rampage": + files: + /NumLock/Metalheart/data/save: + tags: + - save + when: + - os: windows +"Metaloid : Origin": installDir: Morigin: {} launch: - /MOrigin/MOrigin.app: + "/MOrigin/MOrigin.app": - when: - os: mac store: steam - /MOrigin/MOrigin.exe: + "/MOrigin/MOrigin.exe": - when: - os: windows store: steam steam: id: 974390 -'Metaltech: Earthsiege': +"Metaltech: Earthsiege": files: - /BAR: + "/BAR": tags: - save when: - os: dos - /CAR: + "/CAR": tags: - save when: - os: dos - /DATA/PREFS.CFG: + "/DATA/PREFS.CFG": tags: - config when: - os: dos - /RESOURCE.CFG: + "/RESOURCE.CFG": tags: - config when: @@ -334731,7 +335691,7 @@ Metamorph (Chumoran): installDir: Metamorph: {} launch: - /Metamorph.exe: + "/Metamorph.exe": - when: - os: windows store: steam @@ -334741,11 +335701,11 @@ Metamorphabet: installDir: Metamorphabet: {} launch: - /Metamorphabet.app: + "/Metamorphabet.app": - when: - os: mac store: steam - /Metamorphabet.exe: + "/Metamorphabet.exe": - when: - os: windows store: steam @@ -334755,15 +335715,15 @@ Metamorphic: installDir: Metamorphic: {} launch: - /metamorphic.app: + "/metamorphic.app": - when: - os: mac store: steam - /metamorphic.exe: + "/metamorphic.exe": - when: - os: windows store: steam - /metamorphic.x86: + "/metamorphic.x86": - when: - os: linux store: steam @@ -334771,12 +335731,12 @@ Metamorphic: id: 479040 Metamorphosis: files: - /Meta1/Saved/Config: + "/Meta1/Saved/Config": tags: - config when: - os: windows - /Meta1/Saved/SaveGames: + "/Meta1/Saved/SaveGames": tags: - save when: @@ -334786,7 +335746,7 @@ Metamorphosis: installDir: Metamorphosis: {} launch: - /Meta1.exe: + "/Meta1.exe": - when: - store: steam steam: @@ -334795,7 +335755,7 @@ Metanet Hunter CD: installDir: Metanet Hunter CD: {} launch: - /Metanet Hunter CD.exe: + "/Metanet Hunter CD.exe": - when: - os: windows store: steam @@ -334805,15 +335765,15 @@ Metanoia: installDir: Metanoia: {} launch: - /Metanoia_Early_Access.app/Contents/MacOS/Metanoia_Early_Access: + "/Metanoia_Early_Access.app/Contents/MacOS/Metanoia_Early_Access": - when: - os: mac store: steam - /Metanoia_Early_Access.exe: + "/Metanoia_Early_Access.exe": - when: - os: windows store: steam - /Metanoia_Early_Access.x86: + "/Metanoia_Early_Access.x86": - when: - os: linux store: steam @@ -334823,7 +335783,7 @@ Metanormal: installDir: Metanormal Demo: {} launch: - /Metanormal.exe: + "/Metanormal.exe": - when: - os: windows store: steam @@ -334833,7 +335793,7 @@ Metaphobia: installDir: Metaphobia: {} launch: - /Metaphobia.exe: + "/Metaphobia.exe": - when: - os: windows store: steam @@ -334843,11 +335803,11 @@ Metaverse: installDir: Metaverse: {} launch: - /Metaverse.app: + "/Metaverse.app": - when: - os: mac store: steam - /Metaverse.exe: + "/Metaverse.exe": - when: - os: windows store: steam @@ -334857,11 +335817,11 @@ Metaverse Construction Kit: installDir: Metaverse Construction Kit: {} launch: - /ConstructionKit.app: + "/ConstructionKit.app": - when: - os: mac store: steam - /ConstructionKit.exe: + "/ConstructionKit.exe": - when: - os: windows store: steam @@ -334871,11 +335831,11 @@ Metaverse Keeper: installDir: Metaverse Keeper: {} launch: - /Metaverse_Keeper.app: + "/Metaverse_Keeper.app": - when: - os: mac store: steam - /Metaverse_Keeper.exe: + "/Metaverse_Keeper.exe": - when: - os: windows store: steam @@ -334886,17 +335846,17 @@ Metempsychosis: id: 865840 Meteor: files: - /base/saves: + "/base/saves": tags: - save when: - os: windows - /jgui3.ini: + "/jgui3.ini": tags: - config when: - os: windows - /meteor.ini: + "/meteor.ini": tags: - config when: @@ -334905,21 +335865,24 @@ Meteor (2018): installDir: Mateor: {} launch: - /Meteor.exe: + "/Meteor.exe": - when: - bit: 32 os: windows store: steam + - bit: 64 + os: windows + store: steam steam: id: 912790 Meteor 2: files: - /base/savegame: + "/base/savegame": tags: - save when: - os: windows - /meteor2.ini: + "/meteor2.ini": tags: - config when: @@ -334928,11 +335891,11 @@ Meteor 60 Seconds!: installDir: Meteor60Seconds: {} launch: - /Meteor60Seconds_macos.app: + "/Meteor60Seconds_macos.app": - when: - os: mac store: steam - /Meteor60seconds.exe: + "/Meteor60seconds.exe": - when: - os: windows store: steam @@ -334947,37 +335910,37 @@ Meteor Shower: installDir: Meteor Shower: {} launch: - /meteorshower.exe: + "/meteorshower.exe": - when: - os: windows store: steam steam: id: 845650 -'Meteorfall: Krumit''s Tale': +"Meteorfall: Krumit's Tale": files: - /AppData/LocalLow/Slothwerks/Krumit's Tale/*.json: + "/AppData/LocalLow/Slothwerks/Krumit's Tale/*.json": tags: - save when: - os: windows - /AppData/LocalLow/Slothwerks/Krumit's Tale/save*.json: + "/AppData/LocalLow/Slothwerks/Krumit's Tale/save*.json": tags: - config when: - os: windows installDir: - Meteorfall Krumit's Tale: {} + "Meteorfall Krumit's Tale": {} launch: - /krumit.app/Contents/MacOS/krumit: + "/krumit.app/Contents/MacOS/krumit": - when: - os: mac store: steam - /krumit.exe: + "/krumit.exe": - when: - os: windows store: steam registry: - HKEY_CURRENT_USER/SOFTWARE/Slothwerks/Krumit's Tale: + "HKEY_CURRENT_USER/SOFTWARE/Slothwerks/Krumit's Tale": tags: - config steam: @@ -334986,7 +335949,7 @@ Meteorite Defense Command: installDir: Meteorite Defense Command: {} launch: - /Meteorite Defense Command.exe: + "/Meteorite Defense Command.exe": - when: - os: windows store: steam @@ -334996,7 +335959,7 @@ Meteors: installDir: Meteors: {} launch: - /MeteorsSteam01.exe: + "/MeteorsSteam01.exe": - when: - os: windows store: steam @@ -335006,8 +335969,8 @@ Metin2: installDir: Metin2: {} launch: - /steam_launcher.exe: - - arguments: '--steam' + "/steam_launcher.exe": + - arguments: "--steam" when: - store: steam steam: @@ -335016,7 +335979,7 @@ Metis One: installDir: Metis One: {} launch: - /MetisOne.exe: + "/MetisOne.exe": - when: - bit: 64 os: windows @@ -335027,7 +335990,7 @@ Metonymy: installDir: Metonymy: {} launch: - /Metonymy 11- 12.exe: + "/Metonymy 11- 12.exe": - when: - os: windows store: steam @@ -335037,20 +336000,20 @@ Metori: installDir: Metori: {} launch: - /Metori.app: + "/Metori.app": - when: - os: mac store: steam - /Metori.exe: + "/Metori.exe": - when: - os: windows store: steam - /Metori.x86: + "/Metori.x86": - when: - bit: 32 os: linux store: steam - /Metori.x86_64: + "/Metori.x86_64": - when: - bit: 64 os: linux @@ -335061,7 +336024,7 @@ Metrail: installDir: Metrail: {} launch: - /Metrail.exe: + "/Metrail.exe": - when: - store: steam steam: @@ -335073,20 +336036,20 @@ Metrico+: installDir: Metrico+: {} launch: - /Metrico+.app/Contents/MacOS/Metrico+: + "/Metrico+.app/Contents/MacOS/Metrico+": - when: - os: mac store: steam - /Metrico+.exe: + "/Metrico+.exe": - when: - os: windows store: steam - /Metrico+.x86: + "/Metrico+.x86": - when: - bit: 32 os: linux store: steam - /Metrico+.x86_64: + "/Metrico+.x86_64": - when: - bit: 64 os: linux @@ -335097,7 +336060,7 @@ Metris Soccer: installDir: Metris Soccer: {} launch: - /Build.exe: + "/Build.exe": - when: - os: windows store: steam @@ -335108,13 +336071,13 @@ MetrixVR: id: 1022600 Metro 2033: files: - /userdata//43110/remote/user.cfg: + "/userdata//43110/remote/user.cfg": tags: - config when: - os: windows store: steam - /4A Games/Metro 2033: + "/4A Games/Metro 2033": tags: - save when: @@ -335127,50 +336090,52 @@ Metro 2033: installDir: Metro 2033: {} launch: - /Metro2033.exe: + "/Metro2033.exe": - when: - store: steam steam: id: 43110 Metro 2033 Redux: files: - //user.cfg: + "//user.cfg": tags: - config when: - os: linux - /Documents/4A Games/Metro 2033: - tags: - - save - when: - - store: gog - /Documents/4A Games/Metro 2033/: + "/Documents/4A Games/Metro 2033": tags: - save when: - os: windows - /Documents/4A Games/Metro Redux: + store: gog + "/Documents/4A Games/Metro 2033/": tags: - save when: - - store: epic - /Library/Application Support/Metro_Redux_2033: + - os: windows + "/Documents/4A Games/Metro Redux": + tags: + - save + when: + - os: windows + "/Library/Application Support/Metro_Redux_2033": tags: - config - save when: - os: mac - /4A Games/Metro 2033//user.cfg: + "/4A Games/Metro 2033//user.cfg": tags: - config when: - os: windows - /4A Games/Metro 2033/user.cfg: + "/4A Games/Metro 2033/user.cfg": tags: - config when: - - store: gog - /Packages/DeepSilver.Metro2033Redux_hmv7qcest37me/SystemAppData/wgs: + - os: windows + store: gog + "/Packages/DeepSilver.Metro2033Redux_hmv7qcest37me/SystemAppData/wgs": tags: - config - save @@ -335182,26 +336147,26 @@ Metro 2033 Redux: installDir: Metro 2033 Redux: {} launch: - /MetroRedux2033.app: + "/MetroRedux2033.app": - when: - os: mac store: steam - /metro: + "/metro": - when: - bit: 64 os: linux store: steam - /metro.exe: + "/metro.exe": - when: - os: windows store: steam steam: id: 286690 -'Metro Conflict: The Origin': +"Metro Conflict: The Origin": installDir: Metro Conflict - The Origin: {} launch: - /Binaries/Win32/MetroConflict.exe: + "/Binaries/Win32/MetroConflict.exe": - arguments: ent-rance?-nocheckscriptoutdate -gate_ip=gate.mcgategroup.com -localev=70 -P=ST1 when: - os: windows @@ -335210,40 +336175,40 @@ Metro 2033 Redux: id: 662320 Metro Exodus: files: - /saved_games: + "/saved_games": tags: - save when: - store: gog - /Library/Application Support/MetroExodus: + "/Library/Application Support/MetroExodus": tags: - save when: - os: mac - /Library/Application Support/MetroExodus/110000113093892: + "/Library/Application Support/MetroExodus/110000113093892": tags: - config when: - os: mac - /Saved Games/metro exodus: + "/Saved Games/metro exodus": tags: - config - save when: - os: windows - /Packages/DeepSilver.ProjectWindfall_hmv7qcest37me/SystemAppData/wgs: + "/Packages/DeepSilver.ProjectWindfall_hmv7qcest37me/SystemAppData/wgs": tags: - save when: - os: windows store: microsoft - /Packages/DeepSilver.ProjectWindfall_hmv7qcest37me/SystemAppData/wgs/: + "/Packages/DeepSilver.ProjectWindfall_hmv7qcest37me/SystemAppData/wgs/": tags: - config when: - os: windows store: microsoft - /metro_3: + "/metro_3": tags: - config - save @@ -335253,11 +336218,11 @@ Metro Exodus: id: 1407287452 id: gogExtra: - - 1414471894 - 1307899199 - - 2063590233 + - 1414471894 - 1435294665 - 1641336403 + - 2063590233 steamExtra: - 889920 - 889921 @@ -335265,16 +336230,16 @@ Metro Exodus: installDir: Metro Exodus: {} launch: - /MetroExodus: + "/MetroExodus": - when: - bit: 64 os: linux store: steam - /MetroExodus.app: + "/MetroExodus.app": - when: - os: mac store: steam - /MetroExodus.exe: + "/MetroExodus.exe": - when: - bit: 64 os: windows @@ -335283,17 +336248,17 @@ Metro Exodus: id: 412020 Metro Exodus Enhanced Edition: files: - /saved_games: + "/saved_games": tags: - save when: - store: gog - /user.cfg: + "/user.cfg": tags: - config when: - store: gog - /Saved Games/metro exodus: + "/Saved Games/metro exodus": tags: - config - save @@ -335304,16 +336269,16 @@ Metro Exodus Enhanced Edition: id: gogExtra: - 1307899199 - - 1435294665 - 1414471894 + - 1435294665 - 2063590233 steamExtra: - - 1557621 - 1557620 + - 1557621 installDir: Metro Exodus Enhanced Edition: {} launch: - /MetroExodus.exe: + "/MetroExodus.exe": - when: - bit: 64 os: windows @@ -335324,7 +336289,7 @@ Metro Explosion Simulator: installDir: Metro Explosion Simulator: {} launch: - /Metro Explosion Simulator.exe: + "/Metro Explosion Simulator.exe": - when: - bit: 64 os: windows @@ -335335,7 +336300,7 @@ Metro Sim Hustle: installDir: Metro Sim Hustle: {} launch: - /Metro Sim Hustle.exe: + "/Metro Sim Hustle.exe": - when: - os: windows store: steam @@ -335345,7 +336310,7 @@ Metro Simulator 2019: installDir: Metro Simulator: {} launch: - /Metro Simulator.exe: + "/Metro Simulator.exe": - when: - os: windows store: steam @@ -335355,7 +336320,7 @@ Metro Trip Simulator: installDir: Metro Trip Simulator: {} launch: - /Metro Trip Simulator.exe: + "/Metro Trip Simulator.exe": - when: - bit: 64 os: windows @@ -335366,55 +336331,55 @@ Metro Warp: installDir: Metro Warp: {} launch: - /Metro Warp.app/Contents/MacOS/Metro Warp: + "/Metro Warp.app/Contents/MacOS/Metro Warp": - when: - os: mac store: steam - /Metro Warp.exe: + "/Metro Warp.exe": - when: - bit: 64 os: windows store: steam - /Metro Warp.x86: + "/Metro Warp.x86": - when: - bit: 32 os: linux store: steam - /Metro Warp.x86_64: + "/Metro Warp.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 383540 -'Metro: Last Light': +"Metro: Last Light": files: - //user.cfg: + "//user.cfg": tags: - config when: - os: linux - /Library/Application Support/MetroLL/: + "/Library/Application Support/MetroLL/": tags: - save when: - os: mac - /Library/Application Support/MetroLL//user.cfg: + "/Library/Application Support/MetroLL//user.cfg": tags: - config when: - os: mac - /userdata//43160: + "/userdata//43160": tags: - save when: - store: steam - /4A Games/Metro LL: + "/4A Games/Metro LL": tags: - save when: - os: windows - /4A Games/Metro LL//user.cfg: + "/4A Games/Metro LL//user.cfg": tags: - config when: @@ -335422,49 +336387,51 @@ Metro Warp: installDir: Metro Last Light: {} launch: - /MetroLL: + "/MetroLL": - when: - os: linux store: steam - /MetroLL.app: + "/MetroLL.app": - when: - os: mac store: steam - /MetroLL.exe: + "/MetroLL.exe": - when: - os: windows store: steam steam: id: 43160 -'Metro: Last Light Redux': +"Metro: Last Light Redux": files: - //user.cfg: + "//user.cfg": tags: - config when: - os: linux - /Library/Application Support/Metro_Redux_2034: + "/Library/Application Support/Metro_Redux_2034": tags: - config when: - os: mac - /4A Games/Metro Last Light: + "/4A Games/Metro Last Light": tags: - save when: - os: windows - /4A Games/Metro Last Light/: + "/4A Games/Metro Last Light/": tags: - save when: - - store: steam - /4A Games/Metro Last Light//user.cfg: + - os: windows + store: steam + "/4A Games/Metro Last Light//user.cfg": tags: - config when: - os: windows - - store: steam - /Packages/DeepSilver.MetroLastLightRedux_hmv7qcest37me/SystemAppData/wgs: + - os: windows + store: steam + "/Packages/DeepSilver.MetroLastLightRedux_hmv7qcest37me/SystemAppData/wgs": tags: - save when: @@ -335475,17 +336442,17 @@ Metro Warp: installDir: Metro Last Light Redux: {} launch: - /MetroLastLightRedux.app: + "/MetroLastLightRedux.app": - when: - bit: 64 os: mac store: steam - /metro: + "/metro": - when: - bit: 64 os: linux store: steam - /metro.exe: + "/metro.exe": - when: - os: windows store: steam @@ -335493,12 +336460,12 @@ Metro Warp: id: 287390 Metrocide: files: - /saves: + "/saves": tags: - save when: - os: windows - /saves/settings.cfg: + "/saves/settings.cfg": tags: - config when: @@ -335508,19 +336475,19 @@ Metrocide: installDir: Metrocide: {} launch: - /Metrocide Steam.app: + "/Metrocide Steam.app": - when: - os: mac store: steam - /Metrocide.exe: + "/Metrocide.exe": - when: - os: windows store: steam steam: id: 313130 -'Metroid: Confrontation': +"Metroid: Confrontation": files: - /config.ini: + "/config.ini": tags: - config when: @@ -335529,7 +336496,7 @@ Metronium: installDir: Metronium: {} launch: - /Metronium.exe: + "/Metronium.exe": - when: - os: windows store: steam @@ -335539,8 +336506,8 @@ Metronix Lab: installDir: Metronix Lab: {} launch: - /Metronix Lab.exe: - - arguments: '-cafeapplaunch' + "/Metronix Lab.exe": + - arguments: "-cafeapplaunch" when: - os: windows store: steam @@ -335550,30 +336517,30 @@ Metropolis: installDir: Metropolis: {} launch: - /Metropolis.exe: + "/Metropolis.exe": - when: - os: windows store: steam steam: id: 782410 -'Metropolis: Lux Obscura': +"Metropolis: Lux Obscura": installDir: Metropolis Lux Obscura: {} launch: - /Metropolis.app/Contents/MacOS/Metropolis: + "/Metropolis.app/Contents/MacOS/Metropolis": - when: - os: mac store: steam - /Metropolis.exe: + "/Metropolis.exe": - when: - os: windows store: steam - /Metropolis.x86: + "/Metropolis.x86": - when: - bit: 32 os: linux store: steam - /Metropolis.x86_64: + "/Metropolis.x86_64": - when: - bit: 64 os: linux @@ -335591,7 +336558,7 @@ Metu Caligine: installDir: Metu Caligine: {} launch: - /Metu Caligine.exe: + "/Metu Caligine.exe": - when: - bit: 64 os: windows @@ -335602,7 +336569,7 @@ MetälBörn: installDir: MetalBorn: {} launch: - /WindowsNoEditor/FPS_Prototype.exe: + "/WindowsNoEditor/FPS_Prototype.exe": - when: - bit: 64 os: windows @@ -335618,7 +336585,7 @@ Meu Mundo: installDir: Meu Mundo: {} launch: - /Meu Mundo.exe: + "/Meu Mundo.exe": - when: - store: steam steam: @@ -335627,20 +336594,20 @@ Mevo and The Grooveriders: installDir: Mevo and the Grooveriders: {} launch: - /Mevo.exe: + "/Mevo.exe": - when: - store: steam steam: id: 27600 MewnBase: files: - /saves: + "/saves": tags: - save when: - os: windows - os: linux - /settings.json: + "/settings.json": tags: - config when: @@ -335649,12 +336616,12 @@ MewnBase: installDir: MewnBase: {} launch: - /MewnBase: + "/MewnBase": - when: - bit: 64 os: linux store: steam - /MewnBase.exe: + "/MewnBase.exe": - when: - bit: 64 os: windows @@ -335663,12 +336630,12 @@ MewnBase: id: 743130 Mhakna Gramura and Fairy Bell: files: - /RenPy/Fairy Bell/*.save: + "/RenPy/Fairy Bell/*.save": tags: - save when: - os: windows - /RenPy/Fairy Bell/persistent: + "/RenPy/Fairy Bell/persistent": tags: - config when: @@ -335678,15 +336645,15 @@ Mhakna Gramura and Fairy Bell: installDir: Mhakna Gramura and Fairy Bell: {} launch: - /fairybell.app: + "/fairybell.app": - when: - os: mac store: steam - /fairybell.exe: + "/fairybell.exe": - when: - os: windows store: steam - /fairybell.sh: + "/fairybell.sh": - when: - os: linux store: steam @@ -335696,7 +336663,7 @@ MiDZone: installDir: MiDZone: {} launch: - /MiDZone.exe: + "/MiDZone.exe": - when: - os: windows store: steam @@ -335706,10 +336673,10 @@ MiG-29 Fulcrum (1998): installDir: MiG-29 Fulcrum: {} launch: - /Fwe.exe: + "/Fwe.exe": - when: - store: steam - /M29.exe: + "/M29.exe": - when: - store: steam steam: @@ -335718,7 +336685,7 @@ MiMiMiShKa: installDir: MiMiMiShKa: {} launch: - /MiMiMiShKa.exe: + "/MiMiMiShKa.exe": - when: - store: steam steam: @@ -335727,20 +336694,20 @@ Miami Cruise: installDir: Miami Cruise: {} launch: - /Miami Cruise.app: + "/Miami Cruise.app": - when: - os: mac store: steam - /MiamiCruise.exe: + "/MiamiCruise.exe": - when: - os: windows store: steam - /MiamiCruise.x86: + "/MiamiCruise.x86": - when: - bit: 32 os: linux store: steam - /MiamiCruise.x86_64: + "/MiamiCruise.x86_64": - when: - bit: 64 os: linux @@ -335751,20 +336718,20 @@ Miaou Moon: installDir: Miaou Moon: {} launch: - /Miaou Moon.app: + "/Miaou Moon.app": - when: - os: mac store: steam - /Miaou Moon.exe: + "/Miaou Moon.exe": - when: - os: windows store: steam - /Miaou Moon.x86: + "/Miaou Moon.x86": - when: - bit: 32 os: linux store: steam - /Miaou Moon.x86_64: + "/Miaou Moon.x86_64": - when: - bit: 64 os: linux @@ -335775,7 +336742,7 @@ Miasma Caves: installDir: Miasma Caves: {} launch: - /Miasma Caves.exe: + "/Miasma Caves.exe": - when: - os: windows store: steam @@ -335783,7 +336750,7 @@ Miasma Caves: id: 812190 Miasma Chronicles: files: - /Miasma/Saved/SaveGames: + "/Miasma/Saved/SaveGames": tags: - save when: @@ -335793,7 +336760,7 @@ Miasma Chronicles: installDir: Miasma: {} launch: - /Miasma.exe: + "/Miasma.exe": - when: - os: windows store: steam @@ -335801,7 +336768,7 @@ Miasma Chronicles: id: 1649010 Miasmata: files: - /IonFx/Miasmata: + "/IonFx/Miasmata": tags: - save when: @@ -335811,56 +336778,56 @@ Miasmata: installDir: Miasmata: {} launch: - /miasmata.exe: + "/miasmata.exe": - when: - os: windows store: steam steam: id: 223510 -Miazma or the Devil's Stone: +"Miazma or the Devil's Stone": files: - /Private Moon Studios/Miazma: + "/Private Moon Studios/Miazma": tags: - config - save when: - os: windows installDir: - Miazma or the Devil's Stone: {} + "Miazma or the Devil's Stone": {} launch: - /Miazma.exe: + "/Miazma.exe": - when: - os: windows store: steam steam: id: 774141 -Mibibli's Quest: +"Mibibli's Quest": id: steamExtra: - 509050 installDir: - Mibibli's Quest: {} + "Mibibli's Quest": {} launch: - /Mibibli's Quest.app: + "/Mibibli's Quest.app": - when: - os: mac store: steam - /Mibibli's Quest.exe: + "/Mibibli's Quest.exe": - when: - os: windows store: steam steam: id: 453990 -Michael Owen's World League Soccer 99: +"Michael Owen's World League Soccer 99": files: - /Saves: + "/Saves": tags: - save when: - os: windows -'Michelin Rally Masters: Race of Champions': +"Michelin Rally Masters: Race of Champions": files: - /SavedGames: + "/SavedGames": tags: - save when: @@ -335869,11 +336836,11 @@ Michael Owen's World League Soccer 99: HKEY_CURRENT_USER/SOFTWARE/Digital Illusions/Rally Masters/Configurations/Default: tags: - config -Mickey's Typing Adventure: +"Mickey's Typing Adventure": installDir: - Disney Mickey's Typing Adventure: {} + "Disney Mickey's Typing Adventure": {} launch: - /Disney Mickey's Typing Adventure.exe: + "/Disney Mickey's Typing Adventure.exe": - when: - store: steam steam: @@ -335882,7 +336849,7 @@ Micro Car Crash Online Le Go!: installDir: Micro Car Crash Online Le Go!: {} launch: - /Micro Car Crash Online Le Go!.exe: + "/Micro Car Crash Online Le Go!.exe": - when: - os: windows store: steam @@ -335895,22 +336862,22 @@ Micro Cosmic Worlds: id: 655580 Micro Machines World Series: files: - /Saved Games/Codemasters/MicroMachines: + "/Saved Games/Codemasters/MicroMachines": tags: - config when: - os: windows - /Saved Games/Codemasters/MicroMachines//.dat: + "/Saved Games/Codemasters/MicroMachines//.dat": tags: - save when: - os: windows - /vpltd/micromachines: + "/vpltd/micromachines": tags: - config when: - os: linux - /vpltd/micromachines/GameDocuments/Saved Games/Codemasters/MicroMachines//.dat: + "/vpltd/micromachines/GameDocuments/Saved Games/Codemasters/MicroMachines//.dat": tags: - save when: @@ -335918,17 +336885,17 @@ Micro Machines World Series: installDir: Micro Machines: {} launch: - /MicroMachines.app: + "/MicroMachines.app": - when: - bit: 64 os: mac store: steam - /MicroMachines.exe: + "/MicroMachines.exe": - when: - bit: 64 os: windows store: steam - /micromachines: + "/micromachines": - when: - bit: 64 os: linux @@ -335939,7 +336906,7 @@ Micro Mages: installDir: Micro Mages: {} launch: - /Micro Mages.exe: + "/Micro Mages.exe": - when: - os: windows store: steam @@ -335949,7 +336916,7 @@ Micro Mayhem: installDir: MicroMayhem: {} launch: - /MicroMayhem.exe: + "/MicroMayhem.exe": - when: - os: windows store: steam @@ -335959,7 +336926,7 @@ Micro Miners: installDir: Micro Miners: {} launch: - /MicroMiners.exe: + "/MicroMiners.exe": - when: - os: windows store: steam @@ -335969,11 +336936,11 @@ Micro Pico Racers: installDir: Micro Pico Racers: {} launch: - /MicroPicoRacers.app/Contents/MacOS/MicroPicoRacers: + "/MicroPicoRacers.app/Contents/MacOS/MicroPicoRacers": - when: - os: mac store: steam - /MicroPicoRacers.exe: + "/MicroPicoRacers.exe": - when: - os: windows store: steam @@ -335983,7 +336950,7 @@ Micro Trial RC: installDir: Micro Trial RC: {} launch: - /Micro Trial RC.exe: + "/Micro Trial RC.exe": - when: - os: windows store: steam @@ -336000,7 +336967,7 @@ MicroRC Simulation: installDir: MicroRC Simulation: {} launch: - /MRC.exe: + "/MRC.exe": - when: - os: windows store: steam @@ -336010,7 +336977,7 @@ MicroSpy: installDir: MicroSpy: {} launch: - /microspy.exe: + "/microspy.exe": - when: - bit: 64 os: windows @@ -336019,7 +336986,7 @@ MicroSpy: id: 669570 MicroTown: files: - /.config/unity3d/Snowy Ash Games/MicroTown: + "/.config/unity3d/Snowy Ash Games/MicroTown": tags: - config - save @@ -336028,15 +336995,15 @@ MicroTown: installDir: MicroTown: {} launch: - /MicroTown.app: + "/MicroTown.app": - when: - os: mac store: steam - /MicroTown.exe: + "/MicroTown.exe": - when: - os: windows store: steam - /MicroTown.x86_64: + "/MicroTown.x86_64": - when: - os: linux store: steam @@ -336046,7 +337013,7 @@ MicroVolts Surge: installDir: MicroVolts: {} launch: - /Launcher.exe: + "/Launcher.exe": - arguments: STEAM when: - store: steam @@ -336057,9 +337024,9 @@ Microcosm: Microcosm: {} steam: id: 626570 -'Microcosmum: Survival of Cells': +"Microcosmum: Survival of Cells": files: - /steamapps/common/Microcosmum Survival of cells/data.sav: + "/steamapps/common/Microcosmum Survival of cells/data.sav": tags: - save when: @@ -336068,7 +337035,7 @@ Microcosm: installDir: Microcosmum Survival of cells: {} launch: - /Microcosmum.exe: + "/Microcosmum.exe": - when: - os: windows store: steam @@ -336078,7 +337045,7 @@ Microgons: installDir: Microgons: {} launch: - /Microgons.exe: + "/Microgons.exe": - when: - os: windows store: steam @@ -336088,20 +337055,20 @@ Micron: installDir: Micron: {} launch: - /Micron.app: + "/Micron.app": - when: - os: mac store: steam - /Micron.exe: + "/Micron.exe": - when: - os: windows store: steam - /Micron.x86: + "/Micron.x86": - when: - bit: 32 os: linux store: steam - /Micron.x86_64: + "/Micron.x86_64": - when: - bit: 64 os: linux @@ -336112,19 +337079,19 @@ Micron: - save steam: id: 290380 -'Micronomicon: Heroes': +"Micronomicon: Heroes": installDir: Micronomicon: {} launch: - /micronomicon.app/Contents/MacOS/micronomicon: + "/micronomicon.app/Contents/MacOS/micronomicon": - when: - os: mac store: steam - /micronomicon.exe: + "/micronomicon.exe": - when: - os: windows store: steam - /micronomicon.x86: + "/micronomicon.x86": - when: - os: linux store: steam @@ -336134,38 +337101,38 @@ Microscope Madness: installDir: Microscope Madness: {} launch: - /MicroscopeMadness.app/Contents/MacOS/MicroscopeMadness: + "/MicroscopeMadness.app/Contents/MacOS/MicroscopeMadness": - when: - os: mac store: steam - /MicroscopeMadness.exe: + "/MicroscopeMadness.exe": - when: - os: windows store: steam steam: id: 1189090 -'Microsoft Combat Flight Simulator 3: Battle for Europe': +"Microsoft Combat Flight Simulator 3: Battle for Europe": files: - /Microsoft Games/CFS3/game.xml: + "/Microsoft Games/CFS3/game.xml": tags: - config when: - os: windows -'Microsoft Combat Flight Simulator: WWII Europe Series': +"Microsoft Combat Flight Simulator: WWII Europe Series": files: - /PilotLog: + "/PilotLog": tags: - save when: - os: windows Microsoft Flight: files: - /Microsoft/Flight: + "/Microsoft/Flight": tags: - config when: - os: windows - /Microsoft/Flight/Players: + "/Microsoft/Flight/Players": tags: - save when: @@ -336173,25 +337140,25 @@ Microsoft Flight: installDir: Microsoft Flight: {} launch: - /Flight.exe: + "/Flight.exe": - when: - store: steam steam: id: 203850 Microsoft Flight Simulator (2020): files: - /Microsoft Flight Simulator: + "/Microsoft Flight Simulator": tags: - config when: - os: windows - /Packages/Microsoft.FlightSimulator_8wekyb3d8bbwe/LocalCache: + "/Packages/Microsoft.FlightSimulator_8wekyb3d8bbwe/LocalCache": tags: - config when: - os: windows store: microsoft - /Packages/Microsoft.FlightSimulator_8wekyb3d8bbwe/SystemAppData/wgs/: + "/Packages/Microsoft.FlightSimulator_8wekyb3d8bbwe/SystemAppData/wgs/": tags: - config when: @@ -336200,38 +337167,38 @@ Microsoft Flight Simulator (2020): installDir: MicrosoftFlightSimulator: {} launch: - /FlightSimulator.exe: + "/FlightSimulator.exe": - when: - bit: 64 os: windows store: steam steam: id: 1250410 -'Microsoft Flight Simulator 2004: A Century of Flight': +"Microsoft Flight Simulator 2004: A Century of Flight": files: - /Microsoft/FS9/FS9.cfg: + "/Microsoft/FS9/FS9.cfg": tags: - config when: - os: windows - /Flight Simulator Files: + "/Flight Simulator Files": tags: - save when: - os: windows Microsoft Flight Simulator X: files: - /Microsoft/FSX/FSX.cfg: + "/Microsoft/FSX/FSX.cfg": tags: - config when: - os: windows - /Microsoft/Flight Simulator X/FSX.cfg: + "/Microsoft/Flight Simulator X/FSX.cfg": tags: - config when: - os: windows - /Flight Simulator X Files: + "/Flight Simulator X Files": tags: - save when: @@ -336239,79 +337206,79 @@ Microsoft Flight Simulator X: installDir: FSX: {} launch: - /fsx.exe: + "/fsx.exe": - when: - store: steam steam: id: 314160 Microsoft Flight Simulator for Windows 95: files: - /FltSim95.CFG: + "/FltSim95.CFG": tags: - config when: - os: windows - /Pilots: + "/Pilots": tags: - save when: - os: windows Microsoft Golf: files: - /*.PIN: + "/*.PIN": tags: - save when: - os: windows - /MSGOLF.INI: + "/MSGOLF.INI": tags: - config when: - os: windows Microsoft Golf 3.0: files: - /*.GAM: + "/*.GAM": tags: - save when: - os: windows - /MSGOLF.INI: + "/MSGOLF.INI": tags: - config when: - os: windows - /multplyr: + "/multplyr": tags: - config when: - os: windows Microsoft International Soccer 2000: files: - /SAVE: + "/SAVE": tags: - save when: - os: windows Microsoft Jigsaw: files: - /Packages/Microsoft.MicrosoftJigsaw_8wekyb3d8bbwe/LocalState: + "/Packages/Microsoft.MicrosoftJigsaw_8wekyb3d8bbwe/LocalState": tags: - save when: - os: windows - /Packages/Microsoft.MicrosoftJigsaw_8wekyb3d8bbwe/Settings: + "/Packages/Microsoft.MicrosoftJigsaw_8wekyb3d8bbwe/Settings": tags: - config when: - os: windows Microsoft Mahjong: files: - /Packages/Microsoft.MicrosoftMahjong_8wekyb3d8bbwe/LocalState: + "/Packages/Microsoft.MicrosoftMahjong_8wekyb3d8bbwe/LocalState": tags: - save when: - os: windows - /Packages/Microsoft.MicrosoftMahjong_8wekyb3d8bbwe/Settings: + "/Packages/Microsoft.MicrosoftMahjong_8wekyb3d8bbwe/Settings": tags: - config when: @@ -336323,67 +337290,67 @@ Microsoft Maquette: id: 967490 Microsoft Minesweeper: files: - /Packages/Microsoft.MicrosoftMinesweeper_8wekyb3d8bbwe/LocalState: + "/Packages/Microsoft.MicrosoftMinesweeper_8wekyb3d8bbwe/LocalState": tags: - save when: - os: windows - /Packages/Microsoft.MicrosoftMinesweeper_8wekyb3d8bbwe/Settings: + "/Packages/Microsoft.MicrosoftMinesweeper_8wekyb3d8bbwe/Settings": tags: - config when: - os: windows Microsoft Solitaire Collection: files: - /Packages/Microsoft.MicrosoftSolitaireCollection_8wekyb3d8bbwe/LocalState/savegame: + "/Packages/Microsoft.MicrosoftSolitaireCollection_8wekyb3d8bbwe/LocalState/savegame": tags: - save when: - os: windows - /Packages/Microsoft.MicrosoftSolitaireCollection_8wekyb3d8bbwe/Settings: + "/Packages/Microsoft.MicrosoftSolitaireCollection_8wekyb3d8bbwe/Settings": tags: - config when: - os: windows Microsoft Sudoku: files: - /Packages/Microsoft.MicrosoftSudoku_8wekyb3d8bbwe/LocalState: + "/Packages/Microsoft.MicrosoftSudoku_8wekyb3d8bbwe/LocalState": tags: - save when: - os: windows - /Packages/Microsoft.MicrosoftSudoku_8wekyb3d8bbwe/Settings: + "/Packages/Microsoft.MicrosoftSudoku_8wekyb3d8bbwe/Settings": tags: - config when: - os: windows Microsoft Train Simulator: files: - '/[Route]/*.sav': + "/[Route]/*.sav": tags: - save when: - os: windows Microsoft Treasure Hunt: files: - /Packages/Microsoft.MicrosoftTreasureHunt_8wekyb3d8bbwe/LocalState: + "/Packages/Microsoft.MicrosoftTreasureHunt_8wekyb3d8bbwe/LocalState": tags: - save when: - os: windows - /Packages/Microsoft.MicrosoftTreasureHunt_8wekyb3d8bbwe/Settings: + "/Packages/Microsoft.MicrosoftTreasureHunt_8wekyb3d8bbwe/Settings": tags: - config when: - os: windows Microsoft Ultimate Word Games: files: - /Packages/Microsoft.Studios.Wordament_8wekyb3d8bbwe/LocalState: + "/Packages/Microsoft.Studios.Wordament_8wekyb3d8bbwe/LocalState": tags: - save when: - os: windows - /Packages/Microsoft.Studios.Wordament_8wekyb3d8bbwe/Settings: + "/Packages/Microsoft.Studios.Wordament_8wekyb3d8bbwe/Settings": tags: - config when: @@ -336392,22 +337359,22 @@ Microtransaction Simulator: installDir: Microtransaction_Simulator: {} launch: - /MicroSimulator.app: + "/MicroSimulator.app": - when: - os: mac store: steam - /MicroSimulator.x86_64: + "/MicroSimulator.x86_64": - when: - bit: 64 os: linux store: steam - /Microtransaction-Simulator.exe: + "/Microtransaction-Simulator.exe": - when: - os: windows store: steam steam: id: 689090 -'Microtransaction Simulator Game of the Decade: Deluxe Edition': +"Microtransaction Simulator Game of the Decade: Deluxe Edition": steam: id: 801450 Mid or Feed: @@ -336415,19 +337382,19 @@ Mid or Feed: id: 1199270 MidBoss: files: - /Library/Application Support/MidBoss: + "/Library/Application Support/MidBoss": tags: - config - save when: - os: mac - /MidBoss: + "/MidBoss": tags: - config - save when: - os: windows - /MidBoss: + "/MidBoss": tags: - config - save @@ -336436,15 +337403,15 @@ MidBoss: installDir: MidBoss: {} launch: - /MidBoss: + "/MidBoss": - when: - os: linux store: steam - /MidBoss.app/Contents/MacOS/MidBoss: + "/MidBoss.app/Contents/MacOS/MidBoss": - when: - os: mac store: steam - /MidBoss.exe: + "/MidBoss.exe": - when: - os: windows store: steam @@ -336457,7 +337424,7 @@ Midair: installDir: Midair: {} launch: - /Midair/Binaries/Win64/Midair-Win64-Test.exe: + "/Midair/Binaries/Win64/Midair-Win64-Test.exe": - when: - bit: 64 os: windows @@ -336468,11 +337435,11 @@ Midas Gold Plus: installDir: Midas Gold Plus: {} launch: - /Midas Gold Plus.app: + "/Midas Gold Plus.app": - when: - os: mac store: steam - /Midas Gold Plus.exe: + "/Midas Gold Plus.exe": - when: - os: windows store: steam @@ -336484,29 +337451,30 @@ Middle Ages Hero: Middle Ages Hero (2019): steam: id: 1027050 -'Middle-earth: Shadow of Mordor': +"Middle-earth: Shadow of Mordor": files: - /Library/Application Support/Steam/SteamApps/common/ShadowOfMordor: + "/Library/Application Support/Steam/SteamApps/common/ShadowOfMordor": tags: - config when: - os: mac - /userdata//241930/remote/gamedata.sav: + "/userdata//241930/remote/gamedata.sav": tags: - save when: - store: steam - /WB Games/Shadow of Mordor: + "/WB Games/Shadow of Mordor": tags: - config when: - os: windows - /WB Games/Shadow of Mordor/Saves/GameData.sav: + "/WB Games/Shadow of Mordor/Saves/GameData.sav": tags: - save when: - - store: gog - /feral-interactive/ShadowOfMordor/AppData/WB Games/Shadow of Mordor: + - os: windows + store: gog + "/feral-interactive/ShadowOfMordor/AppData/WB Games/Shadow of Mordor": tags: - config when: @@ -336515,50 +337483,51 @@ Middle Ages Hero (2019): id: 1213504814 id: steamExtra: - - 318550 - 311670 + - 318550 installDir: ShadowOfMordor: {} launch: - /Middle Earth Shadow of Mordor.app: + "/Middle Earth Shadow of Mordor.app": - when: - bit: 64 os: mac store: steam - /ShadowOfMordor.sh: + "/ShadowOfMordor.sh": - when: - bit: 64 os: linux store: steam - /x64/ShadowOfMordor.exe: + "/x64/ShadowOfMordor.exe": - when: - bit: 64 os: windows store: steam - workingDir: /x64 + workingDir: "/x64" steam: id: 241930 -'Middle-earth: Shadow of War': +"Middle-earth: Shadow of War": files: - /userdata//356190/remote: + "/userdata//356190/remote": tags: - save when: - store: steam - /Packages/6DA520A3.1673586F56C6C_ykvmsk3s73586/SystemAppData/wgs/: + "/Packages/6DA520A3.1673586F56C6C_ykvmsk3s73586/SystemAppData/wgs/": tags: - save when: - os: windows store: microsoft - /WB Games/Shadow of War: + "/WB Games/Shadow of War": tags: - config - - save when: - - store: steam - - store: gog - /WB Games/Shadow of War/_ShadowOfWar.sav: + - os: windows + store: gog + - os: windows + store: steam + "/WB Games/Shadow of War/_ShadowOfWar.sav": tags: - save when: @@ -336574,37 +337543,37 @@ Middle Ages Hero (2019): installDir: ShadowOfWar: {} launch: - /x64/ShadowOfWar.exe: + "/x64/ShadowOfWar.exe": - when: - bit: 64 os: windows store: steam - workingDir: /x64 + workingDir: "/x64" steam: id: 356190 Midnight: installDir: Midnight: {} launch: - /midnight: + "/midnight": - when: - os: linux store: steam - /midnight.app: + "/midnight.app": - when: - os: mac store: steam - /midnight.exe: + "/midnight.exe": - when: - os: windows store: steam steam: id: 431460 -'Midnight Calling: Anabel': +"Midnight Calling: Anabel": installDir: - Midnight Calling Anabel Collector's Edition: {} + "Midnight Calling Anabel Collector's Edition": {} launch: - /MidnightCalling_Anabel_CE.exe: + "/MidnightCalling_Anabel_CE.exe": - when: - os: windows store: steam @@ -336614,7 +337583,7 @@ Midnight Caravan: installDir: MidnightCaravan: {} launch: - /tmc/tmc.exe: + "/tmc/tmc.exe": - when: - store: steam steam: @@ -336623,7 +337592,7 @@ Midnight Carnival: installDir: Midnight Carnival: {} launch: - /Midnight_Carnival.exe: + "/Midnight_Carnival.exe": - when: - os: windows store: steam @@ -336631,12 +337600,12 @@ Midnight Carnival: id: 546980 Midnight Castle Succubus DX: files: - /savedata: + "/savedata": tags: - save when: - os: windows - /savedata/global.ini: + "/savedata/global.ini": tags: - config when: @@ -336647,17 +337616,17 @@ Midnight Castle Succubus DX: id: 1299320 Midnight Club II: files: - /userdata/*.cfg: + "/userdata/*.cfg": tags: - config when: - os: windows - /userdata/*.map: + "/userdata/*.map": tags: - config when: - os: windows - /userdata/*.sav: + "/userdata/*.sav": tags: - save when: @@ -336665,7 +337634,7 @@ Midnight Club II: installDir: Midnight Club 2: {} launch: - /mc2.exe: + "/mc2.exe": - when: - store: steam steam: @@ -336674,7 +337643,7 @@ Midnight Evil: installDir: Midnight Evil: {} launch: - /Midnight Evil.exe: + "/Midnight Evil.exe": - when: - os: windows store: steam @@ -336685,7 +337654,7 @@ Midnight Feast: id: 1071180 Midnight Fight Express: files: - /Packages/HumbleBundle.MidnightFightExpress_q2mcdwmzx4qja/SystemAppData/wgs: + "/Packages/HumbleBundle.MidnightFightExpress_q2mcdwmzx4qja/SystemAppData/wgs": tags: - save when: @@ -336696,7 +337665,7 @@ Midnight Fight Express: installDir: Midnight Fight Express: {} launch: - /MidnightFightExpress.exe: + "/MidnightFightExpress.exe": - when: - os: windows store: steam @@ -336704,12 +337673,12 @@ Midnight Fight Express: id: 1390410 Midnight Ghost Hunt: files: - /MidnightGhostHunt/Saved/Config/WindowsNoEditor: + "/MidnightGhostHunt/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /MidnightGhostHunt/Saved/SaveGames: + "/MidnightGhostHunt/Saved/SaveGames": tags: - save when: @@ -336717,7 +337686,7 @@ Midnight Ghost Hunt: installDir: Midnight Ghost Hunt: {} launch: - /start_protected_game.exe: + "/start_protected_game.exe": - when: - bit: 64 os: windows @@ -336728,15 +337697,15 @@ Midnight Grub Session: installDir: Midnight Grub Session: {} launch: - /Midnight Grub Session.app/Contents/MacOS/Midnight Grub Session: + "/Midnight Grub Session.app/Contents/MacOS/Midnight Grub Session": - when: - os: mac store: steam - /MidnightGrubSession.exe: + "/MidnightGrubSession.exe": - when: - os: windows store: steam - /MidnightGrubSession.x86_64: + "/MidnightGrubSession.x86_64": - when: - bit: 64 os: linux @@ -336749,7 +337718,7 @@ Midnight Legends: installDir: Midnight Legend: {} launch: - /C_Racing.exe: + "/C_Racing.exe": - when: - os: windows store: steam @@ -336759,79 +337728,79 @@ Midnight Mysteries: installDir: Midnight Mysteries: {} launch: - /Midnight Mysteries - Edgar Allan Poe Conspiracy.exe: + "/Midnight Mysteries - Edgar Allan Poe Conspiracy.exe": - when: - store: steam steam: id: 32140 -'Midnight Mysteries 3: Devil on the Mississippi': +"Midnight Mysteries 3: Devil on the Mississippi": installDir: Midnight Mysteries 3 Devil on the Mississippi: {} launch: - /Midnight Mysteries - Devil on the Mississippi CE.app: + "/Midnight Mysteries - Devil on the Mississippi CE.app": - when: - os: mac store: steam - /MidnightMysteries3.exe: + "/MidnightMysteries3.exe": - when: - os: windows store: steam steam: id: 208630 -'Midnight Mysteries 4: Haunted Houdini': +"Midnight Mysteries 4: Haunted Houdini": installDir: Midnight Mysteries 4: {} launch: - /Midnight Mysteries - Haunted Houdini CE.app: + "/Midnight Mysteries - Haunted Houdini CE.app": - when: - os: mac store: steam - /MidnightMysteries4.exe: + "/MidnightMysteries4.exe": - when: - os: windows store: steam steam: id: 208640 -'Midnight Mysteries: Salem Witch Trials': +"Midnight Mysteries: Salem Witch Trials": installDir: Midnight Mysteries 2 Salem Witch Trials: {} launch: - /Midnight Mysteries - Salem Witch Trials CE.app: + "/Midnight Mysteries - Salem Witch Trials CE.app": - when: - os: mac store: steam - /MidnightMysteriesSalemWitchTrials.exe: + "/MidnightMysteriesSalemWitchTrials.exe": - when: - os: windows store: steam steam: id: 208620 -'Midnight Mysteries: Witches of Abraham': +"Midnight Mysteries: Witches of Abraham": installDir: - Midnight Mysteries Witches of Abraham - Collector's Edition: {} + "Midnight Mysteries Witches of Abraham - Collector's Edition": {} launch: - /MidnightMysteries_WitchesOfAbrahamCE.exe: + "/MidnightMysteries_WitchesOfAbrahamCE.exe": - when: - store: steam steam: id: 332810 -'Midnight Outlaw: 6 Hours to SunUp': +"Midnight Outlaw: 6 Hours to SunUp": installDir: Midnight Outlaw 6 Hours to Sun Up: {} launch: - /MidnightOutlaw.exe: + "/MidnightOutlaw.exe": - when: - store: steam steam: id: 12600 Midnight Protocol: files: - /AppData/LocalLow/LuGus Studios/Midnight Protocol: + "/AppData/LocalLow/LuGus Studios/Midnight Protocol": tags: - save when: - os: windows - /AppData/LocalLow/LuGus Studios/Midnight Protocol/system.sav: + "/AppData/LocalLow/LuGus Studios/Midnight Protocol/system.sav": tags: - config when: @@ -336844,16 +337813,16 @@ Midnight Protocol: installDir: Midnight Protocol: {} launch: - /MidnightProtocol.app: + "/MidnightProtocol.app": - when: - os: mac store: steam - /MidnightProtocol.exe: + "/MidnightProtocol.exe": - when: - bit: 64 os: windows store: steam - /MidnightProtocol.x86_64: + "/MidnightProtocol.x86_64": - when: - os: linux store: steam @@ -336870,7 +337839,7 @@ Midnight Quest: installDir: Midnight Quest: {} launch: - /MidnightQuest.exe: + "/MidnightQuest.exe": - when: - os: windows store: steam @@ -336880,15 +337849,15 @@ Midnight Ultra: installDir: Midnight Ultra: {} launch: - /MU_MAC.app: + "/MU_MAC.app": - when: - os: mac store: steam - /Midnight Ultra.exe: + "/Midnight Ultra.exe": - when: - os: windows store: steam - /midnightUltra.x86_64: + "/midnightUltra.x86_64": - when: - os: linux store: steam @@ -336897,11 +337866,11 @@ Midnight Ultra: Midnight Wave: steam: id: 904840 -'Midnight at the Celestial Palace: Chapter I': +"Midnight at the Celestial Palace: Chapter I": installDir: Midnight at the Celestial Palace Chapter I: {} launch: - /Midnight.exe: + "/Midnight.exe": - when: - os: windows store: steam @@ -336911,35 +337880,35 @@ Midnight at the Red Light: installDir: Midnight at the Red Light An Investigation: {} launch: - /Midnight at the Red Light An Investigation.app: + "/Midnight at the Red Light An Investigation.app": - when: - os: mac store: steam - /Midnight at the Red Light An Investigation.exe: + "/Midnight at the Red Light An Investigation.exe": - when: - os: windows store: steam - /Midnight at the Red Light An Investigation.x86: + "/Midnight at the Red Light An Investigation.x86": - when: - os: linux store: steam steam: id: 665140 -Midnight's Blessing: +"Midnight's Blessing": installDir: - Midnight's Blessing: {} + "Midnight's Blessing": {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam steam: id: 370640 -Midnight's Blessing 2: +"Midnight's Blessing 2": installDir: - Midnight's Blessing 2: {} + "Midnight's Blessing 2": {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: @@ -336948,7 +337917,7 @@ Midnightland: installDir: Midnightland: {} launch: - /Midnightland.exe: + "/Midnightland.exe": - when: - os: windows store: steam @@ -336959,12 +337928,12 @@ Midsummer Night: id: 412150 Midtown Madness: files: - /players: + "/players": tags: - save when: - os: windows - /video.cfg: + "/video.cfg": tags: - config when: @@ -336973,29 +337942,29 @@ Midvinter: installDir: Midvinter: {} launch: - /MidvinterSteam.exe: + "/MidvinterSteam.exe": - when: - store: steam steam: id: 452120 Midway Arcade Treasures Deluxe Edition: files: - /HydroData/hydro.sav: + "/HydroData/hydro.sav": tags: - save when: - os: windows - /config/*.cfg: + "/config/*.cfg": tags: - config when: - os: windows - /config/scores.dat: + "/config/scores.dat": tags: - save when: - os: windows - /config/settings.dat: + "/config/settings.dat": tags: - config when: @@ -337007,7 +337976,7 @@ Might: installDir: MIGHT: {} launch: - /MIGHT.exe: + "/MIGHT.exe": - when: - os: windows store: steam @@ -337017,15 +337986,15 @@ Might & Magic Heroes Online: installDir: Might & Magic Heroes Online: {} launch: - /Might & Magic Heroes Online.app: + "/Might & Magic Heroes Online.app": - when: - os: mac store: steam - /nw: + "/nw": - when: - os: linux store: steam - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -337033,12 +338002,12 @@ Might & Magic Heroes Online: id: 336520 Might & Magic Heroes VI: files: - /Might & Magic Heroes VI/: + "/Might & Magic Heroes VI/": tags: - config when: - os: windows - /Might & Magic Heroes VI//Save: + "/Might & Magic Heroes VI//Save": tags: - save when: @@ -337046,36 +338015,36 @@ Might & Magic Heroes VI: installDir: Might and Magic Heroes VI: {} launch: - /Might & Magic Heroes VI.exe: - - arguments: '-uplay_steam_mode' + "/Might & Magic Heroes VI.exe": + - arguments: "-uplay_steam_mode" when: - store: steam steam: id: 48220 -'Might & Magic Heroes VI: Shades of Darkness': +"Might & Magic Heroes VI: Shades of Darkness": installDir: Might and Magic Heroes VI - Shades of Darkness: {} steam: id: 229790 Might & Magic Heroes VII: files: - /savegames//1176: + "/savegames//1176": tags: - save when: - os: windows store: uplay - /savegames//1177: + "/savegames//1177": tags: - save when: - - store: uplay - /My Games/Might & Magic Heroes VII/MMH7Game/Config: + - store: steam + "/My Games/Might & Magic Heroes VII/MMH7Game/Config": tags: - config when: - os: windows - /My Games/Might & Magic Heroes VII/MMH7Game/Savegames: + "/My Games/Might & Magic Heroes VII/MMH7Game/Savegames": tags: - save when: @@ -337083,39 +338052,39 @@ Might & Magic Heroes VII: installDir: Might & Magic Heroes VII: {} launch: - /Binaries/Win64/MMH7Editor-Win64-Shipping.exe: + "/Binaries/Win64/MMH7Editor-Win64-Shipping.exe": - when: - bit: 64 os: windows store: steam - workingDir: /Binaries/Win64 - /Binaries/Win64/MMH7Game-Win64-Shipping.exe: - - arguments: '-uplay_steam_mode' + workingDir: "/Binaries/Win64" + "/Binaries/Win64/MMH7Game-Win64-Shipping.exe": + - arguments: "-uplay_steam_mode" when: - bit: 64 os: windows store: steam - workingDir: /Binaries/Win64 + workingDir: "/Binaries/Win64" steam: id: 321960 -'Might & Magic Heroes VII: Trial by Fire': +"Might & Magic Heroes VII: Trial by Fire": installDir: Might & Magic Heroes VII: {} launch: - /Binaries/Win64/MMH7Game-Win64-Shipping.exe: - - arguments: '-uplay_steam_mode' + "/Binaries/Win64/MMH7Game-Win64-Shipping.exe": + - arguments: "-uplay_steam_mode" when: - bit: 64 os: windows store: steam - workingDir: /Binaries/Win64 + workingDir: "/Binaries/Win64" steam: id: 445310 Might & Magic Showdown: installDir: Might & Magic Showdown: {} launch: - /AFK.exe: + "/AFK.exe": - arguments: prod steam -uplay_steam_mode when: - store: steam @@ -337123,24 +338092,24 @@ Might & Magic Showdown: id: 517070 Might & Magic X - Legacy: files: - /MightAndMagicXLegacy: + "/MightAndMagicXLegacy": tags: - save when: - os: mac - /savegames//401: + "/savegames//401": tags: - save when: - os: windows store: uplay - /savegames//403: + "/savegames//403": tags: - save when: - os: windows store: uplay - /MightAndMagicXLegacy/options64.txt: + "/MightAndMagicXLegacy/options64.txt": tags: - config when: @@ -337148,25 +338117,25 @@ Might & Magic X - Legacy: installDir: Might & Magic X - Legacy: {} launch: - /Might and Magic X Legacy.exe: - - arguments: '-uplay_steam_mode' + "/Might and Magic X Legacy.exe": + - arguments: "-uplay_steam_mode" when: - os: windows store: steam - /MightAndMagicXLegacy.app: + "/MightAndMagicXLegacy.app": - when: - os: mac store: steam steam: id: 238750 -'Might & Magic: Clash of Heroes': +"Might & Magic: Clash of Heroes": files: - /userconfig.cfg: + "/userconfig.cfg": tags: - config when: - os: windows - /userdata//61700/remote: + "/userdata//61700/remote": tags: - save when: @@ -337178,38 +338147,38 @@ Might & Magic X - Legacy: installDir: Might and Magic Clash of Heroes: {} launch: - /ClashOfHeroes.exe: + "/ClashOfHeroes.exe": - when: - store: steam steam: id: 61700 -'Might & Magic: Clash of Heroes - Definitive Edition': +"Might & Magic: Clash of Heroes - Definitive Edition": installDir: Might & Magic Clash of Heroes - Definitive Edition: {} launch: - /MMCoH_HD.exe: + "/MMCoH_HD.exe": - when: - bit: 64 os: windows store: steam steam: id: 2213300 -'Might & Magic: Duel of Champions': +"Might & Magic: Duel of Champions": steam: id: 256410 Might & Mayhem: installDir: Might & Mayhem: {} launch: - /MightAndMayhem.exe: + "/MightAndMayhem.exe": - when: - os: windows store: steam steam: id: 646820 -'Might and Magic Book One: The Secret of the Inner Sanctum': +"Might and Magic Book One: The Secret of the Inner Sanctum": files: - /ROSTER.DTA: + "/ROSTER.DTA": tags: - save when: @@ -337219,9 +338188,9 @@ Might & Mayhem: id: gogExtra: - 1207658788 -'Might and Magic II: Gates to Another World': +"Might and Magic II: Gates to Another World": files: - /ROSTER.DAT: + "/ROSTER.DAT": tags: - save when: @@ -337231,9 +338200,9 @@ Might & Mayhem: id: gogExtra: - 1207658788 -'Might and Magic III: Isles of Terra': +"Might and Magic III: Isles of Terra": files: - /SAVE**.MM3: + "/SAVE**.MM3": tags: - save when: @@ -337245,21 +338214,21 @@ Might & Mayhem: - 1207658788 Might and Magic IX: files: - /SaveGames: + "/SaveGames": tags: - save when: - os: windows - /autoexec.cfg: + "/autoexec.cfg": tags: - config when: - os: windows gog: id: 1207658978 -'Might and Magic VI: The Mandate of Heaven': +"Might and Magic VI: The Mandate of Heaven": files: - /Saves: + "/Saves": tags: - save when: @@ -337272,7 +338241,7 @@ Might and Magic IX: installDir: Might & Magic VI: {} launch: - /MM6.exe: + "/MM6.exe": - when: - store: steam registry: @@ -337281,9 +338250,9 @@ Might and Magic IX: - config steam: id: 243380 -'Might and Magic VII: For Blood and Honor': +"Might and Magic VII: For Blood and Honor": files: - /Saves: + "/Saves": tags: - save when: @@ -337294,9 +338263,9 @@ Might and Magic IX: HKEY_LOCAL_MACHINE/SOFTWARE/WOW6432Node/New World Computing/Might and Magic VII/1.0: tags: - config -'Might and Magic VIII: Day of the Destroyer': +"Might and Magic VIII: Day of the Destroyer": files: - /Saves: + "/Saves": tags: - save when: @@ -337307,14 +338276,14 @@ Might and Magic IX: HKEY_LOCAL_MACHINE/SOFTWARE/WOW6432Node/New World Computing/Might and Magic Day of the Destroyer/1.0: tags: - config -'Might and Magic: Clouds of Xeen': +"Might and Magic: Clouds of Xeen": files: - /XEEN**.SAV: + "/XEEN**.SAV": tags: - save when: - os: dos - /XEEN.CFG: + "/XEEN.CFG": tags: - config when: @@ -337324,14 +338293,14 @@ Might and Magic IX: id: gogExtra: - 1207658788 -'Might and Magic: Darkside of Xeen': +"Might and Magic: Darkside of Xeen": files: - /DARK**.SAV: + "/DARK**.SAV": tags: - save when: - os: dos - /XEEN.CFG: + "/XEEN.CFG": tags: - config when: @@ -337341,19 +338310,19 @@ Might and Magic IX: id: gogExtra: - 1207658788 -'Might and Magic: World of Xeen': +"Might and Magic: World of Xeen": files: - /XEEN**.SAV: + "/XEEN**.SAV": tags: - save when: - os: dos - /XEEN**.WOX: + "/XEEN**.WOX": tags: - save when: - os: dos - /XEEN.CFG: + "/XEEN.CFG": tags: - config when: @@ -337367,7 +338336,7 @@ Might is Right: installDir: Might is Right: {} launch: - /Might is Right.exe: + "/Might is Right.exe": - when: - bit: 64 os: windows @@ -337379,12 +338348,12 @@ Mighty Action RPG: id: 722940 Mighty Dungeons: files: - /MightyDungeons: + "/MightyDungeons": tags: - save when: - os: windows - /MightyDungeons/settings.json: + "/MightyDungeons/settings.json": tags: - config when: @@ -337392,7 +338361,7 @@ Mighty Dungeons: installDir: MightyDungeons: {} launch: - /MightyDungeons.exe: + "/MightyDungeons.exe": - arguments: main.lua when: - os: windows @@ -337403,7 +338372,7 @@ Mighty Fight Federation: installDir: MightyFight: {} launch: - /mff.exe: + "/mff.exe": - when: - os: windows store: steam @@ -337413,7 +338382,7 @@ Mighty Gemstones: installDir: Mighty Gemstones: {} launch: - /MightyGemstones.exe: + "/MightyGemstones.exe": - when: - os: windows store: steam @@ -337423,15 +338392,15 @@ Mighty Goose: installDir: Mighty Goose: {} launch: - /Mighty Goose.app/Contents/MacOS/Chowdren: + "/Mighty Goose.app/Contents/MacOS/Chowdren": - when: - os: mac store: steam - /Mighty Goose.exe: + "/Mighty Goose.exe": - when: - os: windows store: steam - /run.sh: + "/run.sh": - when: - os: linux store: steam @@ -337439,12 +338408,12 @@ Mighty Goose: id: 1299360 Mighty Gunvolt: files: - /save/*.bin: + "/save/*.bin": tags: - save when: - os: windows - /save/mgv_config.ini: + "/save/mgv_config.ini": tags: - config when: @@ -337452,7 +338421,7 @@ Mighty Gunvolt: installDir: Mighty Gunvolt: {} launch: - /MightyGunvolt.exe: + "/MightyGunvolt.exe": - when: - os: windows store: steam @@ -337460,12 +338429,12 @@ Mighty Gunvolt: id: 394600 Mighty Gunvolt Burst: files: - /exe/GameData*.bin: + "/exe/GameData*.bin": tags: - save when: - os: windows - /exe/SystemData.bin: + "/exe/SystemData.bin": tags: - config - save @@ -337474,11 +338443,11 @@ Mighty Gunvolt Burst: installDir: Mighty Gunvolt Burst: {} launch: - /exe/MGVB.exe: + "/exe/MGVB.exe": - when: - os: windows store: steam - workingDir: /exe + workingDir: "/exe" registry: HKEY_CURRENT_USER/Software/Inti/MGVB: tags: @@ -337492,12 +338461,12 @@ Mighty Monster Mayhem: id: 586830 Mighty No. 9: files: - /MN9Game/Config: + "/MN9Game/Config": tags: - config when: - os: windows - /MN9Game/SaveData: + "/MN9Game/SaveData": tags: - save when: @@ -337505,18 +338474,18 @@ Mighty No. 9: installDir: Mighty No. 9: {} launch: - /Binaries/Linux/MN9Game.bin.x86_64: + "/Binaries/Linux/MN9Game.bin.x86_64": - when: - bit: 64 os: linux store: steam - /Binaries/Win32/MN9Game.exe: - - arguments: '-nohomedir -seekfreeloadingpcconsole' + "/Binaries/Win32/MN9Game.exe": + - arguments: "-nohomedir -seekfreeloadingpcconsole" when: - os: windows store: steam - workingDir: /binaries/Win32 - /MN9Game.app: + workingDir: "/binaries/Win32" + "/MN9Game.app": - when: - bit: 64 os: mac @@ -337527,7 +338496,7 @@ Mighty Party: installDir: Mighty Party: {} launch: - /Mighty_party.exe: + "/Mighty_party.exe": - when: - os: windows store: steam @@ -337535,12 +338504,12 @@ Mighty Party: id: 575720 Mighty Switch Force! Academy: files: - /options.ini: + "/options.ini": tags: - config when: - os: windows - /MSF_Academy/save.ini: + "/MSF_Academy/save.ini": tags: - config - save @@ -337549,15 +338518,15 @@ Mighty Switch Force! Academy: installDir: MightySwitchForce_Academy: {} launch: - /MSF_Academy.exe: + "/MSF_Academy.exe": - when: - os: windows store: steam - /MightySwitchForceAcademy.app: + "/MightySwitchForceAcademy.app": - when: - os: mac store: steam - /run.sh: + "/run.sh": - when: - os: linux store: steam @@ -337565,7 +338534,7 @@ Mighty Switch Force! Academy: id: 350210 Mighty Switch Force! Collection: files: - /options.txt: + "/options.txt": tags: - config when: @@ -337575,7 +338544,7 @@ Mighty Switch Force! Collection: installDir: Mighty Switch Force! Collection: {} launch: - /MSFC.exe: + "/MSFC.exe": - when: - os: windows store: steam @@ -337583,7 +338552,7 @@ Mighty Switch Force! Collection: id: 832320 Mighty Switch Force! Hose It Down!: files: - /AppData/LocalLow/WayForward/Mighty Switch Force_ Hose It Down_: + "/AppData/LocalLow/WayForward/Mighty Switch Force_ Hose It Down_": tags: - save when: @@ -337591,7 +338560,7 @@ Mighty Switch Force! Hose It Down!: installDir: Mighty Switch Force! Hose It Down!: {} launch: - /HoseItDown.exe: + "/HoseItDown.exe": - when: - os: windows store: steam @@ -337603,12 +338572,12 @@ Mighty Switch Force! Hose It Down!: id: 375310 Mighty Switch Force! Hyper Drive Edition: files: - /options.txt: + "/options.txt": tags: - config when: - os: windows - /userdata//366970/remote/save: + "/userdata//366970/remote/save": tags: - save when: @@ -337616,7 +338585,7 @@ Mighty Switch Force! Hyper Drive Edition: installDir: Mighty Switch Force! Hyper Drive Edition: {} launch: - /MSF_HD.exe: + "/MSF_HD.exe": - when: - os: windows store: steam @@ -337626,11 +338595,11 @@ MightyIronBall: installDir: MightyIronBall: {} launch: - /MiB.app: + "/MiB.app": - when: - os: mac store: steam - /mib.exe: + "/mib.exe": - when: - os: windows store: steam @@ -337639,11 +338608,11 @@ MightyIronBall: Migrate: steam: id: 1126900 -Mika and Sadie's Adventure: +"Mika and Sadie's Adventure": installDir: MikaAndSadie: {} launch: - /Mika and Sadie's Adventure.exe: + "/Mika and Sadie's Adventure.exe": - when: - store: steam steam: @@ -337652,17 +338621,20 @@ Mikapyon: installDir: mikapyon: {} launch: - /mikapyon.exe: + "/mikapyon.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam - /mikapyon.x86: + "/mikapyon.x86": - when: - bit: 32 os: linux store: steam - /mikapyon.x86_64: + "/mikapyon.x86_64": - when: - bit: 64 os: linux @@ -337673,7 +338645,7 @@ Mike Dies: installDir: Mike Dies: {} launch: - /MikeDies.exe: + "/MikeDies.exe": - when: - bit: 64 os: windows @@ -337687,28 +338659,28 @@ Mike Was Сursed: installDir: Mike was Cursed: {} launch: - /Home.exe: + "/Home.exe": - when: - bit: 64 os: windows store: steam steam: id: 332700 -'Miko Gakkou Monogatari: Kaede Episode': +"Miko Gakkou Monogatari: Kaede Episode": installDir: Miko Gakkou Monogatari Kaede Episode: {} launch: - /mikostory2.exe: + "/mikostory2.exe": - when: - os: windows store: steam steam: id: 332370 -'Miko Gakkou: Second Year': +"Miko Gakkou: Second Year": installDir: Miko Gakkou Second Year: {} launch: - /miko2.exe: + "/miko2.exe": - when: - os: windows store: steam @@ -337722,20 +338694,20 @@ Miko Mole: installDir: MikoMole: {} launch: - /MikoMole.exe: + "/MikoMole.exe": - when: - os: windows store: steam steam: id: 473480 -Miku'n POP: +"Miku'n POP": files: - /Config.sav: + "/Config.sav": tags: - config when: - os: windows - /SaveData.sav: + "/SaveData.sav": tags: - save when: @@ -337744,11 +338716,11 @@ MilMo: installDir: MilMo: {} launch: - /MilMo.app: + "/MilMo.app": - when: - os: mac store: steam - /MilMo.exe: + "/MilMo.exe": - when: - os: windows store: steam @@ -337760,7 +338732,7 @@ Milanoir: installDir: Milanoir: {} launch: - /Milanoir.exe: + "/Milanoir.exe": - when: - bit: 32 os: windows @@ -337771,11 +338743,11 @@ Mile High Taxi: installDir: MiLE HiGH TAXi: {} launch: - /MiLE_HiGH_TAXi.app: + "/MiLE_HiGH_TAXi.app": - when: - os: mac store: steam - /MiLE_HiGH_TAXi.x86_64: + "/MiLE_HiGH_TAXi.x86_64": - when: - bit: 64 os: linux @@ -337786,21 +338758,21 @@ Miles & Kilo: installDir: Miles & Kilo: {} launch: - /Miles and Kilo.app: + "/Miles and Kilo.app": - when: - os: mac store: steam - /Miles and Kilo.exe: + "/Miles and Kilo.exe": - when: - os: windows store: steam steam: id: 669910 -Milford Heaven - Luken's Chronicles: +"Milford Heaven - Luken's Chronicles": installDir: - Milford Heaven - Luken's Chronicles: {} + "Milford Heaven - Luken's Chronicles": {} launch: - /milford_heaven.exe: + "/milford_heaven.exe": - when: - os: windows store: steam @@ -337810,36 +338782,36 @@ MilitAnt: installDir: MilitAnt: {} launch: - /MilitAnt Launcher.app: + "/MilitAnt Launcher.app": - when: - os: mac store: steam - /MilitAnt Launcher.exe: + "/MilitAnt Launcher.exe": - when: - os: windows store: steam steam: id: 454520 -'Military Conflict: Vietnam': +"Military Conflict: Vietnam": installDir: Military Conflict - Vietnam: {} launch: - /mcv.sh: + "/mcv.sh": - when: - bit: 64 os: linux store: steam steam: id: 1012110 -'Military Life: Tank Simulator': +"Military Life: Tank Simulator": installDir: Military Life Tank Simulator: {} launch: - /external/PhysX_9.09.0408_SystemSoftware.exe: + "/external/PhysX_9.09.0408_SystemSoftware.exe": - when: - os: windows store: steam - /tank.exe: + "/tank.exe": - when: - os: windows store: steam @@ -337849,22 +338821,22 @@ Militia: installDir: Militia: {} launch: - /militia.app/Contents/MacOS/militia: + "/militia.app/Contents/MacOS/militia": - when: - os: mac store: steam - /militia.exe: + "/militia.exe": - when: - os: windows store: steam - /militia.x86: - - arguments: '-force-opengl -show-screen-selector' + "/militia.x86": + - arguments: "-force-opengl -show-screen-selector" when: - bit: 32 os: linux store: steam - /militia.x86_64: - - arguments: '-force-opengl -show-screen-selector' + "/militia.x86_64": + - arguments: "-force-opengl -show-screen-selector" when: - bit: 64 os: linux @@ -337875,23 +338847,23 @@ Militia 2: installDir: Militia 2: {} launch: - /Militia 2.exe: + "/Militia 2.exe": - when: - os: windows store: steam - /militia2.app/Contents/MacOS/militia2: - - arguments: '-force-opengl -show-screen-selector' + "/militia2.app/Contents/MacOS/militia2": + - arguments: "-force-opengl -show-screen-selector" when: - os: mac store: steam - /militia2.x86: - - arguments: '-force-opengl -show-screen-selector' + "/militia2.x86": + - arguments: "-force-opengl -show-screen-selector" when: - bit: 32 os: linux store: steam - /militia2.x86_64: - - arguments: '-force-opengl -show-screen-selector' + "/militia2.x86_64": + - arguments: "-force-opengl -show-screen-selector" when: - bit: 64 os: linux @@ -337900,22 +338872,22 @@ Militia 2: id: 1070510 Milk inside a Bag of Milk inside a Bag of Milk: files: - /game/saves: + "/game/saves": tags: - save when: - os: windows - /.renpy/PMKM-1593795761: + "/.renpy/PMKM-1593795761": tags: - save when: - os: linux - /renpy/PMKM-1593795761/*.save: + "/renpy/PMKM-1593795761/*.save": tags: - save when: - os: windows - /renpy/PMKM-1593795761/persistent: + "/renpy/PMKM-1593795761/persistent": tags: - config when: @@ -337926,7 +338898,7 @@ Milk inside a Bag of Milk inside a Bag of Milk: installDir: Milk inside a bag of milk inside a bag of milk: {} launch: - /PMKM.exe: + "/PMKM.exe": - when: - os: windows store: steam @@ -337936,15 +338908,15 @@ Milk outside a Bag of Milk outside a Bag of Milk: installDir: Milk outside a bag of milk outside a bag of milk: {} launch: - /PMKM2.app: + "/PMKM2.app": - when: - os: mac store: steam - /PMKM2.exe: + "/PMKM2.exe": - when: - os: windows store: steam - /PMKM2.sh: + "/PMKM2.sh": - when: - os: linux store: steam @@ -337954,7 +338926,7 @@ Milkchoco: installDir: MilkChoco: {} launch: - /MilkChoco.exe: + "/MilkChoco.exe": - when: - os: windows store: steam @@ -337966,15 +338938,15 @@ Milkmaid of the Milky Way: installDir: Milkmaid of the Milky Way: {} launch: - /milkmaid.app: + "/milkmaid.app": - when: - os: mac store: steam - /milkmaid.exe: + "/milkmaid.exe": - when: - os: windows store: steam - /milkmaid.x86: + "/milkmaid.x86": - when: - os: linux store: steam @@ -337992,7 +338964,7 @@ Milky Way Map: installDir: Milky Way Map: {} launch: - /InfiniteHex.exe: + "/InfiniteHex.exe": - when: - os: windows store: steam @@ -338000,7 +338972,7 @@ Milky Way Map: id: 806020 Milky Way Prince – The Vampire Star: files: - /AppData/LocalLow/Santa Ragione/MILKY WAY PRINCE/Saves: + "/AppData/LocalLow/Santa Ragione/MILKY WAY PRINCE/Saves": tags: - save when: @@ -338010,11 +338982,11 @@ Milky Way Prince – The Vampire Star: installDir: Milky Way Prince – The Vampire Star: {} launch: - /MILKY WAY PRINCE.exe: + "/MILKY WAY PRINCE.exe": - when: - os: windows store: steam - /MWP.app/Contents/MacOS/MWP_MacOs_Current: + "/MWP.app/Contents/MacOS/MWP_MacOs_Current": - when: - os: mac store: steam @@ -338028,64 +339000,64 @@ Mille Bornes: installDir: Mille Bornes: {} launch: - /1000Bornes.app: + "/1000Bornes.app": - when: - os: mac store: steam - /1000Bornes.exe: + "/1000Bornes.exe": - when: - os: windows store: steam steam: id: 702510 -'Millennium 2: Take Me Higher': +"Millennium 2: Take Me Higher": installDir: Millennium 2 - Take Me Higher: {} launch: - /MM2.exe: + "/MM2.exe": - when: - os: windows store: steam steam: id: 298820 -'Millennium 3: Cry Wolf': +"Millennium 3: Cry Wolf": installDir: Millennium 3 - Cry Wolf: {} launch: - /MM3.exe: + "/MM3.exe": - when: - os: windows store: steam steam: id: 298830 -'Millennium 4: Beyond Sunset': +"Millennium 4: Beyond Sunset": installDir: Millennium 4 - Beyond Sunset: {} launch: - /MM4.exe: + "/MM4.exe": - when: - os: windows store: steam steam: id: 298840 -'Millennium 5: The Battle of the Millennium': +"Millennium 5: The Battle of the Millennium": installDir: Millennium 5 - The Battle of the Millennium: {} launch: - /MM5.exe: + "/MM5.exe": - when: - os: windows store: steam steam: id: 298850 -'Millennium: A New Hope': +"Millennium: A New Hope": files: - /Millennium_Saves/*.ini: + "/Millennium_Saves/*.ini": tags: - save when: - os: windows - /Millennium_Saves/*.rxdata: + "/Millennium_Saves/*.rxdata": tags: - save when: @@ -338093,7 +339065,7 @@ Mille Bornes: installDir: Millennium 1: {} launch: - /Millennium.exe: + "/Millennium.exe": - when: - os: windows store: steam @@ -338103,7 +339075,7 @@ Millia -The ending-: installDir: Millia -The ending-: {} launch: - /Millia - The ending -.exe: + "/Millia - The ending -.exe": - when: - os: windows store: steam @@ -338113,7 +339085,7 @@ Millidor: installDir: Millidor: {} launch: - /MillidorLauncher.exe: + "/MillidorLauncher.exe": - when: - os: windows store: steam @@ -338123,15 +339095,15 @@ Millie: installDir: Millie: {} launch: - /Millie.app: + "/Millie.app": - when: - os: mac store: steam - /Millie.exe: + "/Millie.exe": - when: - os: windows store: steam - /Millie.x86: + "/Millie.x86": - when: - os: linux store: steam @@ -338142,18 +339114,19 @@ Million Arthur VR: Million Arthur VR Character Command RPG: {} steam: id: 660570 -'Million Arthur: Arcana Blood': +"Million Arthur: Arcana Blood": files: - /My Games/Million Arthur Arcana Blood//SaveData: + "/My Games/Million Arthur Arcana Blood//SaveData": tags: - config - save when: - - store: steam + - os: windows + store: steam installDir: Million Arthur Arcana Blood: {} launch: - /Million Arthur.exe: + "/Million Arthur.exe": - when: - os: windows store: steam @@ -338163,7 +339136,7 @@ Million Dungeon: installDir: Million Dungeon: {} launch: - /MD.exe: + "/MD.exe": - when: - os: windows store: steam @@ -338173,15 +339146,15 @@ Million to One Hero: installDir: MillionToOneHero: {} launch: - /MillionToOneHero: + "/MillionToOneHero": - when: - os: linux store: steam - /MillionToOneHero.app: + "/MillionToOneHero.app": - when: - os: mac store: steam - /MillionToOneHero.exe: + "/MillionToOneHero.exe": - when: - os: windows store: steam @@ -338196,7 +339169,7 @@ Millionaire Manor: installDir: Millionaire Manor: {} launch: - /THOS3.exe: + "/THOS3.exe": - when: - store: steam steam: @@ -338205,15 +339178,15 @@ Millions of Minions: installDir: Millions of Minions: {} launch: - /Millions of Minions.app: + "/Millions of Minions.app": - when: - os: mac store: steam - /Millions of Minions.exe: + "/Millions of Minions.exe": - when: - os: windows store: steam - /Millions of Minions.x86_64: + "/Millions of Minions.x86_64": - when: - os: linux store: steam @@ -338223,7 +339196,7 @@ Milly the Dog: installDir: Milly: {} launch: - /Milly the dog.exe: + "/Milly the dog.exe": - when: - os: windows store: steam @@ -338241,7 +339214,7 @@ Mimic (2018): installDir: Mimic: {} launch: - /Mim.exe: + "/Mim.exe": - when: - os: windows store: steam @@ -338251,15 +339224,15 @@ Mimic Arena: installDir: Mimic Arena: {} launch: - /Linux/mimic-arena.x86: + "/Linux/mimic-arena.x86": - when: - os: linux store: steam - /Mac/mimic-arena.app/Contents/MacOS/mimic-arena: + "/Mac/mimic-arena.app/Contents/MacOS/mimic-arena": - when: - os: mac store: steam - /Windows/mimic-arena.exe: + "/Windows/mimic-arena.exe": - when: - os: windows store: steam @@ -338269,12 +339242,12 @@ Mimic Hunter: installDir: Mimic Hunter: {} launch: - /Mimic Hunter.exe: - - arguments: '-game' + "/Mimic Hunter.exe": + - arguments: "-game" when: - os: windows store: steam - - arguments: '-editor' + - arguments: "-editor" when: - os: windows store: steam @@ -338284,11 +339257,11 @@ Mimpi: installDir: Mimpi: {} launch: - /MIMPI.app: + "/MIMPI.app": - when: - os: mac store: steam - /MIMPI.exe: + "/MIMPI.exe": - when: - os: windows store: steam @@ -338298,15 +339271,15 @@ Mimpi Dreams: installDir: Mimpi Dreams: {} launch: - /MimpiDreams.app: + "/MimpiDreams.app": - when: - os: mac store: steam - /MimpiDreams.exe: + "/MimpiDreams.exe": - when: - os: windows store: steam - /MimpiDreams.x86: + "/MimpiDreams.x86": - when: - os: linux store: steam @@ -338316,7 +339289,7 @@ MinSweeper: installDir: MinSweeper: {} launch: - /MinSweeper.exe: + "/MinSweeper.exe": - when: - store: steam steam: @@ -338325,7 +339298,7 @@ Minako: installDir: Minako: {} launch: - /minako.exe: + "/minako.exe": - when: - store: steam steam: @@ -338334,11 +339307,11 @@ Minaurs: installDir: Minaurs: {} launch: - /Minaurs.app/Contents/MacOS/Minaurs: + "/Minaurs.app/Contents/MacOS/Minaurs": - when: - os: mac store: steam - /Minaurs.exe: + "/Minaurs.exe": - when: - os: windows store: steam @@ -338351,15 +339324,15 @@ Mind Dead: installDir: Mind Dead: {} launch: - /Mind Dead.app: + "/Mind Dead.app": - when: - os: mac store: steam - /Mind Dead.exe: + "/Mind Dead.exe": - when: - os: windows store: steam - /Mind Dead.x86_64: + "/Mind Dead.x86_64": - when: - os: linux store: steam @@ -338369,15 +339342,15 @@ Mind Games: installDir: Mind Games: {} launch: - /MG.sh: + "/MG.sh": - when: - os: linux store: steam - /Mind Games.app: + "/Mind Games.app": - when: - os: mac store: steam - /MindGames.exe: + "/MindGames.exe": - when: - os: windows store: steam @@ -338392,7 +339365,7 @@ Mind Maze: installDir: Mind Maze: {} launch: - /Mind Maze.exe: + "/Mind Maze.exe": - when: - os: windows store: steam @@ -338407,7 +339380,7 @@ Mind Over Mushroom: installDir: Mind Over Mushroom: {} launch: - /MindOverMushroom.exe: + "/MindOverMushroom.exe": - when: - store: steam steam: @@ -338416,8 +339389,11 @@ Mind Portal: installDir: Mind Portal: {} launch: - /mind_portal.exe: + "/mind_portal.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam @@ -338428,12 +339404,12 @@ Mind Reflection - Inside the Black Mirror Puzzle: id: 662730 Mind Scanners: files: - /AppData/LocalLow/The Outer Zone/Mind Scanners/demo_saves_v30: + "/AppData/LocalLow/The Outer Zone/Mind Scanners/demo_saves_v30": tags: - save when: - os: windows - /AppData/LocalLow/The Outer Zone/Mind Scanners/demo_saves_v30/master.save: + "/AppData/LocalLow/The Outer Zone/Mind Scanners/demo_saves_v30/master.save": tags: - config when: @@ -338443,11 +339419,11 @@ Mind Scanners: installDir: Mind Scanners: {} launch: - /Mind Scanners.app: + "/Mind Scanners.app": - when: - os: mac store: steam - /Mind Scanners.exe: + "/Mind Scanners.exe": - when: - bit: 64 os: windows @@ -338461,25 +339437,25 @@ Mind Scanners: Mind Shift: steam: id: 682070 -'Mind Snares: Alice''s Journey': +"Mind Snares: Alice's Journey": installDir: Mind Snares Alices Journey: {} launch: - /MindSnares.exe: + "/MindSnares.exe": - when: - os: windows store: steam - /MindSnares_amd64: + "/MindSnares_amd64": - when: - bit: 64 os: linux store: steam - /MindSnares_i386: + "/MindSnares_i386": - when: - bit: 32 os: linux store: steam - /mac_steam.app/Contents/MacOS/mac_steam: + "/mac_steam.app/Contents/MacOS/mac_steam": - when: - os: mac store: steam @@ -338489,11 +339465,11 @@ Mind Spheres: installDir: Mind Spheres: {} launch: - /Mind Spheres/Mind Spheres.app: + "/Mind Spheres/Mind Spheres.app": - when: - os: mac store: steam - /Mind Spheres/Mind Spheres.exe: + "/Mind Spheres/Mind Spheres.exe": - when: - os: windows store: steam @@ -338508,7 +339484,7 @@ Mind Trap: installDir: Mind Trap: {} launch: - /MindTrap.exe: + "/MindTrap.exe": - when: - os: windows store: steam @@ -338521,7 +339497,7 @@ Mind Unleashed: installDir: Mind Unleashed: {} launch: - /Mind Unleashed.exe: + "/Mind Unleashed.exe": - when: - os: windows store: steam @@ -338531,15 +339507,15 @@ Mind Your Manas: installDir: Mind Your Manas: {} launch: - /Mind Your Manas.app: + "/Mind Your Manas.app": - when: - os: mac store: steam - /Mind Your Manas.exe: + "/Mind Your Manas.exe": - when: - os: windows store: steam - /Mind Your Manas.x86_64: + "/Mind Your Manas.x86_64": - when: - bit: 64 os: linux @@ -338548,12 +339524,12 @@ Mind Your Manas: id: 865640 Mind Zero: files: - /setting.bin: + "/setting.bin": tags: - config when: - os: windows - /win32data0000.bin: + "/win32data0000.bin": tags: - save when: @@ -338561,7 +339537,7 @@ Mind Zero: installDir: Mind Zero: {} launch: - /MIND.exe: + "/MIND.exe": - when: - os: windows store: steam @@ -338571,17 +339547,17 @@ Mind the Vikings: installDir: Mind the Vikings: {} launch: - /MindTheVikings.exe: + "/MindTheVikings.exe": - when: - os: windows store: steam steam: id: 765250 -'Mind''s Eye: Secrets of the Forgotten': +"Mind's Eye: Secrets of the Forgotten": installDir: - Mind's Eye Secrets of the Forgotten: {} + "Mind's Eye Secrets of the Forgotten": {} launch: - /Minds Eye.exe: + "/Minds Eye.exe": - when: - os: windows store: steam @@ -338591,11 +339567,11 @@ MindLess: installDir: Mindless: {} launch: - /Contents/MacOS/Mindless0.1mac: + "/Contents/MacOS/Mindless0.1mac": - when: - os: mac store: steam - /Mindless.exe: + "/Mindless.exe": - when: - os: windows store: steam @@ -338605,7 +339581,7 @@ MindSeize: installDir: MindSeize: {} launch: - /MindSeize.exe: + "/MindSeize.exe": - when: - os: windows store: steam @@ -338615,11 +339591,11 @@ Minda: installDir: Minda: {} launch: - /Minda.app: + "/Minda.app": - when: - os: mac store: steam - /Minda.exe: + "/Minda.exe": - when: - os: windows store: steam @@ -338629,16 +339605,16 @@ Mindball Play: installDir: Mindball Play: {} launch: - /MindballPlay.app/Contents/MacOS/MindballPlay: + "/MindballPlay.app/Contents/MacOS/MindballPlay": - when: - os: mac store: steam - /MindballPlay.exe: + "/MindballPlay.exe": - when: - bit: 64 os: windows store: steam - /MindballPlay32.exe: + "/MindballPlay32.exe": - when: - bit: 32 os: windows @@ -338649,7 +339625,7 @@ Mindless Running: installDir: Mindless Running: {} launch: - /Mindless Running.exe: + "/Mindless Running.exe": - when: - os: windows store: steam @@ -338657,7 +339633,7 @@ Mindless Running: id: 444260 Mindnight: files: - /AppData/LocalLow/Nomoon/Mindnight: + "/AppData/LocalLow/Nomoon/Mindnight": tags: - save when: @@ -338665,20 +339641,20 @@ Mindnight: installDir: MINDNIGHT: {} launch: - /MINDNIGHT.app: + "/MINDNIGHT.app": - when: - os: mac store: steam - /MINDNIGHT.exe: + "/MINDNIGHT.exe": - when: - os: windows store: steam - /MINDNIGHT.x86: + "/MINDNIGHT.x86": - when: - bit: 32 os: linux store: steam - /MINDNIGHT.x86_64: + "/MINDNIGHT.x86_64": - when: - bit: 64 os: linux @@ -338693,7 +339669,7 @@ Minds Eyes: installDir: Minds Eyes: {} launch: - /MindsEyesLaunch.exe: + "/MindsEyesLaunch.exe": - when: - os: windows store: steam @@ -338703,7 +339679,7 @@ Minds of Nations: installDir: Minds of Nations: {} launch: - /Minds of Nations.exe: + "/Minds of Nations.exe": - when: - os: windows store: steam @@ -338713,15 +339689,15 @@ Mindset: installDir: Mindsight: {} launch: - /Mindsight: + "/Mindsight": - when: - os: linux store: steam - /Mindsight.app: + "/Mindsight.app": - when: - os: mac store: steam - /Mindsight.exe: + "/Mindsight.exe": - when: - os: windows store: steam @@ -338734,37 +339710,37 @@ Mindshow: id: 382000 Mindustry: files: - /Mindustry/saves: + "/Mindustry/saves": tags: - save when: - store: steam - /Mindustry/saves/settings.bin: + "/Mindustry/saves/settings.bin": tags: - config when: - store: steam - /.local/share/Mindustry: + "/.local/share/Mindustry": tags: - config when: - os: linux - /.local/share/Mindustry/saves: + "/.local/share/Mindustry/saves": tags: - save when: - os: linux - /Mindustry: + "/Mindustry": tags: - save when: - os: windows - /Mindustry/settings.bin: + "/Mindustry/settings.bin": tags: - config when: - os: windows - /Mindustry/settings_backup.bin: + "/Mindustry/settings_backup.bin": tags: - config when: @@ -338772,16 +339748,16 @@ Mindustry: installDir: Mindustry: {} launch: - /Mindustry: + "/Mindustry": - when: - bit: 64 os: linux store: steam - /Mindustry.app/Contents/MacOS/Mindustry: + "/Mindustry.app/Contents/MacOS/Mindustry": - when: - os: mac store: steam - /Mindustry.exe: + "/Mindustry.exe": - when: - os: windows store: steam @@ -338791,7 +339767,7 @@ Mine Royale - Battle Royale: installDir: Mine Royale: {} launch: - /Mine Royale.exe: + "/Mine Royale.exe": - when: - os: windows store: steam @@ -338801,7 +339777,7 @@ Mine Seeker: installDir: Mine Seeker: {} launch: - /MineSeeker.exe: + "/MineSeeker.exe": - when: - bit: 64 os: windows @@ -338812,7 +339788,7 @@ Mine the Gold: installDir: Mine the Gold: {} launch: - /Mine the Gold.exe: + "/Mine the Gold.exe": - when: - os: windows store: steam @@ -338827,7 +339803,7 @@ MineDrill: installDir: MineDrill: {} launch: - /MineDrill.exe: + "/MineDrill.exe": - when: - os: windows store: steam @@ -338837,7 +339813,7 @@ MineDrill Redux: installDir: MineDrill Redux: {} launch: - /MineDrill Redux.exe: + "/MineDrill Redux.exe": - when: - os: windows store: steam @@ -338847,7 +339823,7 @@ MineFight: installDir: MineFight: {} launch: - /MineFight.exe: + "/MineFight.exe": - when: - os: windows store: steam @@ -338857,15 +339833,15 @@ MineRalph: installDir: MineRalph: {} launch: - /MineRalph.exe: + "/MineRalph.exe": - when: - os: windows store: steam - /MineRalph.x86_64: + "/MineRalph.x86_64": - when: - os: linux store: steam - /MineRalph_Mac.app: + "/MineRalph_Mac.app": - when: - os: mac store: steam @@ -338878,7 +339854,7 @@ MineSweep: installDir: MineSweep: {} launch: - /MineSweep.exe: + "/MineSweep.exe": - when: - store: steam steam: @@ -338887,7 +339863,7 @@ MineSweepVR: installDir: MineSweepVR: {} launch: - /MineSweepVR.exe: + "/MineSweepVR.exe": - when: - os: windows store: steam @@ -338900,33 +339876,33 @@ MineSweeper VR: id: 516940 Minecraft Dungeons: files: - /Saved Games/Mojang Studios/Dungeons/: + "/Saved Games/Mojang Studios/Dungeons/": tags: - save when: - os: windows - os: windows store: microsoft - /Dungeons/: + "/Dungeons/": tags: - save when: - os: windows store: microsoft - /Dungeons/Saved/Config/WindowsNoEditor: + "/Dungeons/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - os: windows store: microsoft - /Packages/Microsoft.Lovika_8wekyb3d8bbwe/LocalCache/Local/Dungeons/: + "/Packages/Microsoft.Lovika_8wekyb3d8bbwe/LocalCache/Local/Dungeons/": tags: - save when: - os: windows store: microsoft - /Packages/Microsoft.Lovika_8wekyb3d8bbwe/LocalCache/Local/Dungeons/Saved/Config/WindowsNoEditor: + "/Packages/Microsoft.Lovika_8wekyb3d8bbwe/LocalCache/Local/Dungeons/Saved/Config/WindowsNoEditor": tags: - config when: @@ -338935,7 +339911,7 @@ Minecraft Dungeons: installDir: MinecraftDungeons: {} launch: - /Dungeons.exe: + "/Dungeons.exe": - when: - bit: 64 os: windows @@ -338944,7 +339920,7 @@ Minecraft Dungeons: id: 1672970 Minecraft Legends: files: - /Minecraft Legends//minecraftpe/local: + "/Minecraft Legends//minecraftpe/local": tags: - config when: @@ -338952,91 +339928,91 @@ Minecraft Legends: installDir: MinecraftLegends: {} launch: - /MinecraftLegends.Windows.exe: + "/MinecraftLegends.Windows.exe": - when: - bit: 64 os: windows store: steam steam: id: 1928870 -'Minecraft: Bedrock Edition': +"Minecraft: Bedrock Edition": files: - /Packages/Microsoft.MinecraftUWP_8wekyb3d8bbwe/LocalState/games/com.mojang/minecraftWorlds: + "/Packages/Microsoft.MinecraftUWP_8wekyb3d8bbwe/LocalState/games/com.mojang/minecraftWorlds": tags: - save when: - os: windows store: microsoft - /Packages/Microsoft.MinecraftUWP_8wekyb3d8bbwe/LocalState/games/com.mojang/minecraftpe/options.txt: + "/Packages/Microsoft.MinecraftUWP_8wekyb3d8bbwe/LocalState/games/com.mojang/minecraftpe/options.txt": tags: - config when: - os: windows store: microsoft - /Packages/Microsoft.MinecraftWindowsBeta_8wekyb3d8bbwe/LocalState/games/com.mojang/minecraftWorlds: + "/Packages/Microsoft.MinecraftWindowsBeta_8wekyb3d8bbwe/LocalState/games/com.mojang/minecraftWorlds/ (Preview)": tags: - save when: - os: windows store: microsoft - /Packages/Microsoft.MinecraftWindowsBeta_8wekyb3d8bbwe/LocalState/games/com.mojang/minecraftpe/options.txt: + "/Packages/Microsoft.MinecraftWindowsBeta_8wekyb3d8bbwe/LocalState/games/com.mojang/minecraftpe/options.txt (Preview)": tags: - config when: - os: windows store: microsoft -'Minecraft: Education Edition': +"Minecraft: Education Edition": files: - /Minecraft Education Edition/games/com.mojang/minecraftWorlds: + "/Minecraft Education Edition/games/com.mojang/minecraftWorlds": tags: - save when: - os: windows - /Minecraft Education Edition/games/com.mojang/minecraftpe/options.txt: + "/Minecraft Education Edition/games/com.mojang/minecraftpe/options.txt": tags: - config when: - os: windows -'Minecraft: Java Edition': +"Minecraft: Java Edition": files: - /.minecraft/options.txt: + "/.minecraft/options.txt": tags: - config when: - os: linux - /.minecraft/saves: + "/.minecraft/saves": tags: - save when: - os: linux - /Library/Application Support/minecraft/options.txt: + "/Library/Application Support/minecraft/options.txt": tags: - config when: - os: mac - /Library/Application Support/minecraft/saves: + "/Library/Application Support/minecraft/saves": tags: - save when: - os: mac - /.minecraft/options.txt: + "/.minecraft/options.txt": tags: - config when: - os: windows - /.minecraft/saves: + "/.minecraft/saves": tags: - save when: - os: windows -'Minecraft: Story Mode - A Telltale Games Series': +"Minecraft: Story Mode - A Telltale Games Series": files: - /Library/Application Support/Telltale Games: + "/Library/Application Support/Telltale Games": tags: - save when: - os: mac - /Telltale Games/Minecraft Story Mode: + "/Telltale Games/Minecraft Story Mode": tags: - config - save @@ -339052,24 +340028,24 @@ Minecraft Legends: installDir: Minecraft Story Mode - A Telltale Game Series: {} launch: - /Minecraft Story Mode.app: + "/Minecraft Story Mode.app": - when: - os: mac store: steam - /Minecraft64: + "/Minecraft64": - when: - bit: 64 os: linux store: steam - /MinecraftStoryMode.exe: + "/MinecraftStoryMode.exe": - when: - os: windows store: steam steam: id: 376870 -'Minecraft: Story Mode - Season Two': +"Minecraft: Story Mode - Season Two": files: - /Telltale Games/Minecraft Story Mode - Season Two: + "/Telltale Games/Minecraft Story Mode - Season Two": tags: - config - save @@ -339080,27 +340056,27 @@ Minecraft Legends: installDir: Minecraft Story Mode - Season Two: {} launch: - /Minecraft Story Mode Season 2.app: + "/Minecraft Story Mode Season 2.app": - when: - os: mac store: steam - /Minecraft2.exe: + "/Minecraft2.exe": - when: - bit: 64 os: windows store: steam steam: id: 639170 -Mineirinho Director's Cut: +"Mineirinho Director's Cut": installDir: - Mineirinho Director's Cut: {} + "Mineirinho Director's Cut": {} steam: id: 1201630 Mineirinho Shooter DC: installDir: Mineirinho Shooter DC: {} launch: - /MSDC/MSDC.exe: + "/MSDC/MSDC.exe": - when: - os: windows store: steam @@ -339119,20 +340095,20 @@ Mineirinho Wildtides DC: installDir: Mineirinho Wildtides DC: {} launch: - /WTDC/WTDC.exe: + "/WTDC/WTDC.exe": - when: - os: windows store: steam steam: id: 1222240 -Mineko's Night Market: +"Mineko's Night Market": steam: id: 762940 Miner Lou: installDir: Miner Lou: {} launch: - /Miner Lou.exe: + "/Miner Lou.exe": - when: - store: steam steam: @@ -339141,15 +340117,15 @@ Miner Mayhem: installDir: Miner Mayhem: {} launch: - /MinerMayhem.app: + "/MinerMayhem.app": - when: - os: mac store: steam - /MinerMayhem.exe: + "/MinerMayhem.exe": - when: - os: windows store: steam - /MinerMayhem.x86: + "/MinerMayhem.x86": - when: - os: linux store: steam @@ -339159,15 +340135,15 @@ Miner Meltdown: installDir: Miner Meltdown: {} launch: - /MinerMeltdown.app/Contents/MacOS/MinerMeltdown: + "/MinerMeltdown.app/Contents/MacOS/MinerMeltdown": - when: - os: mac store: steam - /MinerMeltdown.exe: + "/MinerMeltdown.exe": - when: - os: windows store: steam - /minermeltdown.x86_64: + "/minermeltdown.x86_64": - when: - os: linux store: steam @@ -339183,7 +340159,7 @@ Miner Warfare: installDir: MinerWarfare: {} launch: - /Miner Warfare.exe: + "/Miner Warfare.exe": - when: - os: windows store: steam @@ -339191,12 +340167,12 @@ Miner Warfare: id: 354620 Miner Wars 2081: files: - /MinerWars/MinerWars.cfg: + "/MinerWars/MinerWars.cfg": tags: - config when: - os: windows - /MinerWars/Saves: + "/MinerWars/Saves": tags: - save when: @@ -339204,8 +340180,8 @@ Miner Wars 2081: installDir: MinerWars: {} launch: - /MinerWars.exe: - - arguments: '-FromLauncher' + "/MinerWars.exe": + - arguments: "-FromLauncher" when: - store: steam steam: @@ -339214,11 +340190,11 @@ Miner Wars Arena: installDir: Miner Wars Arena Special Edition: {} launch: - /Arena.app: + "/Arena.app": - when: - os: mac store: steam - /Arena.exe: + "/Arena.exe": - when: - os: windows store: steam @@ -339228,21 +340204,21 @@ Mines and Magic: installDir: Mines and Magic: {} launch: - /MinesAndMagic.app/Contents/MacOS/MinesAndMagic: + "/MinesAndMagic.app/Contents/MacOS/MinesAndMagic": - when: - os: mac store: steam - /MinesAndMagic.exe: + "/MinesAndMagic.exe": - when: - bit: 64 os: windows store: steam - /MinesAndMagic32.exe: + "/MinesAndMagic32.exe": - when: - bit: 32 os: windows store: steam - /MinesAndMagicLinux.x86: + "/MinesAndMagicLinux.x86": - when: - os: linux store: steam @@ -339252,17 +340228,17 @@ Mines of Mars: installDir: Mines of Mars: {} launch: - /MoM.app: + "/MoM.app": - when: - bit: 32 os: mac store: steam - /MoM.exe: + "/MoM.exe": - when: - bit: 32 os: windows store: steam - - arguments: '-windowed' + - arguments: "-windowed" when: - os: windows store: steam @@ -339272,7 +340248,7 @@ Mines of Volantis: installDir: Mines of Volantis: {} launch: - /Mines of Volantis.exe: + "/Mines of Volantis.exe": - when: - os: windows store: steam @@ -339282,7 +340258,7 @@ Minesweep World: installDir: MinesweepWorld: {} launch: - /Minesweeper.exe: + "/Minesweeper.exe": - when: - os: windows store: steam @@ -339295,27 +340271,27 @@ Minesweeper Peak VR: id: 1074330 Minetest: files: - /minetest.conf: + "/minetest.conf": tags: - config when: - os: windows - /worlds: + "/worlds": tags: - save when: - os: windows - /.minetest/minetest.conf: + "/.minetest/minetest.conf": tags: - config when: - os: linux - /.minetest/worlds: + "/.minetest/worlds": tags: - save when: - os: linux -'Miney Company: A Data Racket': +"Miney Company: A Data Racket": installDir: Miney Company: {} steam: @@ -339327,7 +340303,7 @@ Mini Battlegrounds: installDir: Mini Battlegrounds: {} launch: - /CrazyShooter.exe: + "/CrazyShooter.exe": - when: - os: windows store: steam @@ -339337,20 +340313,20 @@ Mini Gal4Xy: installDir: Mini Gal4Xy: {} launch: - /Mini Gal4Xy.app: + "/Mini Gal4Xy.app": - when: - os: mac store: steam - /Mini Gal4Xy.exe: + "/Mini Gal4Xy.exe": - when: - os: windows store: steam - /Mini Gal4Xy.x86: + "/Mini Gal4Xy.x86": - when: - bit: 32 os: linux store: steam - /Mini Gal4Xy.x86_64: + "/Mini Gal4Xy.x86_64": - when: - bit: 64 os: linux @@ -339359,12 +340335,12 @@ Mini Gal4Xy: id: 1035010 Mini Ghost: files: - /userdata//586880/remote/config_minighost.bin: + "/userdata//586880/remote/config_minighost.bin": tags: - config when: - store: steam - /userdata//586880/remote/minighost.sav: + "/userdata//586880/remote/minighost.sav": tags: - save when: @@ -339374,8 +340350,8 @@ Mini Ghost: installDir: Mini Ghost: {} launch: - /minighost.exe: - - arguments: '-console' + "/minighost.exe": + - arguments: "-console" when: - os: windows store: steam @@ -339388,21 +340364,24 @@ Mini Golf Arena: installDir: Mini Golf Arena: {} launch: - /Mini Golf Arena.app/Contents/MacOS/Mini Golf Arena: + "/Mini Golf Arena.app/Contents/MacOS/Mini Golf Arena": - when: - os: mac store: steam - /Mini Golf Arena.exe: + "/Mini Golf Arena.exe": - when: - bit: 32 os: windows store: steam - /Mini Golf Arena.x86: + - bit: 64 + os: windows + store: steam + "/Mini Golf Arena.x86": - when: - bit: 32 os: linux store: steam - /Mini Golf Arena.x86_64: + "/Mini Golf Arena.x86_64": - when: - bit: 64 os: linux @@ -339413,7 +340392,7 @@ Mini Golf Buddies: installDir: MiniGolfBuddies: {} launch: - /MiniGolfBuddies.exe: + "/MiniGolfBuddies.exe": - when: - os: windows store: steam @@ -339423,7 +340402,7 @@ Mini Golf Club: installDir: MiniGolfClub: {} launch: - /MiniGolfClub.exe: + "/MiniGolfClub.exe": - when: - os: windows store: steam @@ -339431,7 +340410,7 @@ Mini Golf Club: id: 1252650 Mini Golf Dream Courses: files: - /Virtual Store/Program Files (x86)/Mini Golf Dream Courses/data: + "/Virtual Store/Program Files (x86)/Mini Golf Dream Courses/data": tags: - config when: @@ -339440,7 +340419,7 @@ Mini Golf Mundo: installDir: Mini Golf Mundo: {} launch: - /MiniGolfMundo.exe: + "/MiniGolfMundo.exe": - when: - os: windows store: steam @@ -339450,7 +340429,7 @@ Mini Guns: installDir: Mini Guns: {} launch: - /miniguns.exe: + "/miniguns.exe": - when: - bit: 32 os: windows @@ -339461,7 +340440,7 @@ Mini Hockey Champ!: installDir: Mini Hockey Champ: {} launch: - /mhc.exe: + "/mhc.exe": - when: - os: windows store: steam @@ -339476,16 +340455,16 @@ Mini Island: installDir: Mini Island: {} launch: - /Mini Island.exe: + "/Mini Island.exe": - when: - store: steam steam: id: 1188310 -'Mini Island: Night': +"Mini Island: Night": installDir: Mini Island Night: {} launch: - /Mini Island Night.exe: + "/Mini Island Night.exe": - when: - store: steam steam: @@ -339497,20 +340476,20 @@ Mini Metal: installDir: Mini Metal: {} launch: - /game.app/Contents/MacOS/game: + "/game.app/Contents/MacOS/game": - when: - os: mac store: steam - /game.exe: + "/game.exe": - when: - os: windows store: steam - /game.x86: + "/game.x86": - when: - bit: 32 os: linux store: steam - /game.x86_64: + "/game.x86_64": - when: - bit: 64 os: linux @@ -339519,17 +340498,17 @@ Mini Metal: id: 454420 Mini Metro: files: - /.config/unity3d/Dinosaur Polo Club/Mini Metro: + "/.config/unity3d/Dinosaur Polo Club/Mini Metro": tags: - config when: - os: linux - /AppData/LocalLow/Dinosaur Polo Club/Mini Metro: + "/AppData/LocalLow/Dinosaur Polo Club/Mini Metro": tags: - config when: - os: windows - /userdata//287980/remote: + "/userdata//287980/remote": tags: - save when: @@ -339539,15 +340518,15 @@ Mini Metro: installDir: MiniMetro: {} launch: - /MiniMetro.app/Contents/MacOS/MiniMetro: + "/MiniMetro.app/Contents/MacOS/MiniMetro": - when: - os: mac store: steam - /MiniMetro.exe: + "/MiniMetro.exe": - when: - os: windows store: steam - /launchscript: + "/launchscript": - when: - os: linux store: steam @@ -339561,20 +340540,20 @@ Mini Motor Racing EVO: installDir: Mini Motor Racing: {} launch: - /Mini Motor Evo.exe: + "/Mini Motor Evo.exe": - when: - os: windows store: steam - /Mini Motor Racing Evo.app/Contents/MacOS/Mini Motor: + "/Mini Motor Racing Evo.app/Contents/MacOS/Mini Motor": - when: - os: mac store: steam - workingDir: /Mini Motor Racing Evo.app/Contents/MacOS + workingDir: "/Mini Motor Racing Evo.app/Contents/MacOS" steam: id: 209520 Mini Motorways: files: - /userdata//1127500/remote: + "/userdata//1127500/remote": tags: - config - save @@ -339583,11 +340562,11 @@ Mini Motorways: installDir: Mini Motorways: {} launch: - /Mini Motorways.app/Contents/MacOS/Mini Motorways: + "/Mini Motorways.app/Contents/MacOS/Mini Motorways": - when: - os: mac store: steam - /Mini Motorways.exe: + "/Mini Motorways.exe": - when: - os: windows store: steam @@ -339599,12 +340578,12 @@ Mini Motorways: id: 1127500 Mini Ninjas: files: - /Saved Games/Eidos/Mini Ninjas/main.ini: + "/Saved Games/Eidos/Mini Ninjas/main.ini": tags: - config when: - os: windows - /Saved Games/Eidos/Mini Ninjas/playerprofiles.bin: + "/Saved Games/Eidos/Mini Ninjas/playerprofiles.bin": tags: - save when: @@ -339612,7 +340591,7 @@ Mini Ninjas: installDir: Mini Ninjas: {} launch: - /ninja.exe: + "/ninja.exe": - when: - store: steam steam: @@ -339621,11 +340600,11 @@ Mini PVP: installDir: miniPVP: {} launch: - /mini PVP.exe: + "/mini PVP.exe": - when: - os: windows store: steam - /miniPVP.app/Contents/MacOS/miniPVP: + "/miniPVP.app/Contents/MacOS/miniPVP": - when: - os: mac store: steam @@ -339635,7 +340614,7 @@ Mini Rollers: installDir: Mini Rollers: {} launch: - /Mini Rollers.exe: + "/Mini Rollers.exe": - when: - os: windows store: steam @@ -339648,7 +340627,7 @@ Mini Tekton: installDir: windows_content: {} launch: - /Mini Tekton/Mini Tekton.exe: + "/Mini Tekton/Mini Tekton.exe": - when: - os: windows store: steam @@ -339658,11 +340637,11 @@ Mini Thief: installDir: Mini Thief: {} launch: - /Mini Thief.exe: + "/Mini Thief.exe": - when: - os: windows store: steam - /Mini_Thief/runner: + "/Mini_Thief/runner": - when: - os: linux store: steam @@ -339672,11 +340651,11 @@ Mini Tone Puzzle: installDir: MiniTone: {} launch: - /MiniTone.app/Contents/MacOS/MiniTone: + "/MiniTone.app/Contents/MacOS/MiniTone": - when: - os: mac store: steam - /MiniTone.exe: + "/MiniTone.exe": - when: - os: windows store: steam @@ -339689,17 +340668,17 @@ Mini Words - minimalist puzzle: installDir: Mini Words: {} launch: - /MiniWords.app/Contents/MacOS/MiniWords: + "/MiniWords.app/Contents/MacOS/MiniWords": - when: - os: mac store: steam - /MiniWords.exe: + "/MiniWords.exe": - when: - os: windows store: steam steam: id: 1158290 -'Mini World: Block Art': +"Mini World: Block Art": installDir: Mini World Block Art: {} steam: @@ -339708,20 +340687,20 @@ Mini Z Racers Turbo: installDir: Mini Z Racers Turbo: {} launch: - /MiniZ_Racers_Turbo_1_0_0b.exe: + "/MiniZ_Racers_Turbo_1_0_0b.exe": - when: - store: steam steam: id: 508930 -Mini's Magic World: +"Mini's Magic World": installDir: Minis Magic World: {} launch: - /MiniWorld: + "/MiniWorld": - when: - os: linux store: steam - /MiniWorld.bat: + "/MiniWorld.bat": - when: - os: windows store: steam @@ -339731,7 +340710,7 @@ Mini-Dead: installDir: Mini-Dead: {} launch: - /mini-dead/minidead.exe: + "/mini-dead/minidead.exe": - when: - os: windows store: steam @@ -339741,11 +340720,11 @@ MiniBikers: installDir: MiniBikers: {} launch: - /MiniBikers.app: + "/MiniBikers.app": - when: - os: mac store: steam - /MiniBikers.exe: + "/MiniBikers.exe": - when: - os: windows store: steam @@ -339755,7 +340734,7 @@ MiniBotz: installDir: MiniBotz: {} launch: - /MiniBotz.exe: + "/MiniBotz.exe": - when: - os: windows store: steam @@ -339765,7 +340744,7 @@ MiniCar Race: installDir: MiniCar Race: {} launch: - /Minicar.exe: + "/Minicar.exe": - when: - os: windows store: steam @@ -339775,11 +340754,11 @@ MiniDrivers: installDir: MiniDrivers: {} launch: - /MiniDrivers.app: + "/MiniDrivers.app": - when: - os: mac store: steam - /MiniDrivers.exe: + "/MiniDrivers.exe": - when: - os: windows store: steam @@ -339789,7 +340768,7 @@ MiniGolf: installDir: MiniGolf: {} launch: - /MiniGolf.exe: + "/MiniGolf.exe": - when: - os: windows store: steam @@ -339799,7 +340778,7 @@ MiniGolf Maker: installDir: MiniGolf Maker: {} launch: - /MiniGolf Maker.exe: + "/MiniGolf Maker.exe": - when: - os: windows store: steam @@ -339809,15 +340788,15 @@ MiniGolf Mania: installDir: MiniGolf Mania: {} launch: - /MiniGolfMania.exe: + "/MiniGolfMania.exe": - when: - os: windows store: steam steam: id: 453680 -'MiniLAW: Ministry of Law': +"MiniLAW: Ministry of Law": files: - /minilaw: + "/minilaw": tags: - config - save @@ -339826,11 +340805,11 @@ MiniGolf Mania: installDir: miniLAW: {} launch: - /minilaw: + "/minilaw": - when: - os: linux store: steam - /minilaw.exe: + "/minilaw.exe": - when: - os: windows store: steam @@ -339840,11 +340819,11 @@ MiniOne Racing: installDir: MiniOne Racing: {} launch: - /MiniOne Racing.app: + "/MiniOne Racing.app": - when: - os: mac store: steam - /MiniOneRacing.exe: + "/MiniOneRacing.exe": - when: - os: windows store: steam @@ -339854,7 +340833,7 @@ MiniTracks: installDir: MiniTracks: {} launch: - /MiniTracks.exe: + "/MiniTracks.exe": - when: - os: windows store: steam @@ -339864,7 +340843,7 @@ Miniature - The Story Puzzle: installDir: Miniature - The Story Puzzle: {} launch: - /Miniature.exe: + "/Miniature.exe": - when: - bit: 64 os: windows @@ -339873,12 +340852,12 @@ Miniature - The Story Puzzle: id: 536680 Miniature Garden: files: - /Miniature Garden.cf: + "/Miniature Garden.cf": tags: - config when: - os: windows - /savedata: + "/savedata": tags: - save when: @@ -339886,7 +340865,7 @@ Miniature Garden: installDir: Miniature Garden: {} launch: - /Miniature Garden.exe: + "/Miniature Garden.exe": - when: - store: steam steam: @@ -339900,7 +340879,7 @@ Miniballist: installDir: Miniballist: {} launch: - /Miniballist.exe: + "/Miniballist.exe": - when: - bit: 64 os: windows @@ -339916,16 +340895,16 @@ Minigolf Adventure: installDir: Minigolf Adventure: {} launch: - /Minigolf Adventure.app: + "/Minigolf Adventure.app": - when: - os: mac store: steam - /Minigolf Adventure.exe: + "/Minigolf Adventure.exe": - when: - bit: 64 os: windows store: steam - /Minigolf Adventure.x86_64: + "/Minigolf Adventure.x86_64": - when: - os: linux store: steam @@ -339948,15 +340927,15 @@ Minimal: installDir: Minimal: {} launch: - /Minimal.app: + "/Minimal.app": - when: - os: mac store: steam - /minimal.exe: + "/minimal.exe": - when: - os: windows store: steam - /run.sh: + "/run.sh": - when: - os: linux store: steam @@ -339964,7 +340943,7 @@ Minimal: id: 448550 Minimal Move: files: - '/AppData/Local/MinimalMove/Saved/SaveGames}': + "/AppData/Local/MinimalMove/Saved/SaveGames}": tags: - save when: @@ -339972,7 +340951,7 @@ Minimal Move: installDir: Minimal Move: {} launch: - /MinimalMove.exe: + "/MinimalMove.exe": - when: - os: windows store: steam @@ -339982,7 +340961,7 @@ Minimalism: installDir: Minimalism: {} launch: - /Minimalism.exe: + "/Minimalism.exe": - when: - os: windows store: steam @@ -339992,26 +340971,26 @@ Minimancer: installDir: Minimancer: {} launch: - /Minimancer.app: + "/Minimancer.app": - when: - os: mac store: steam - /Minimancer.exe: + "/Minimancer.exe": - when: - bit: 64 os: windows store: steam - /Minimancer.x86: + "/Minimancer.x86": - when: - bit: 32 os: linux store: steam - /Minimancer.x86_64: + "/Minimancer.x86_64": - when: - bit: 64 os: linux store: steam - /Minimancer_32.exe: + "/Minimancer_32.exe": - when: - bit: 32 os: windows @@ -340028,15 +341007,15 @@ Minimon: installDir: Minimon: {} launch: - /Minimon: + "/Minimon": - when: - os: linux store: steam - /Minimon.app: + "/Minimon.app": - when: - os: mac store: steam - /Minimon.exe: + "/Minimon.exe": - when: - os: windows store: steam @@ -340046,18 +341025,18 @@ Minimum: installDir: Minimum: {} launch: - /Binaries/Win32/Minimum.exe: + "/Binaries/Win32/Minimum.exe": - when: - os: windows store: steam - workingDir: /Binaries/Win32 + workingDir: "/Binaries/Win32" steam: id: 214190 Mining & Tunneling Simulator: installDir: Mining and Tunneling Simulation: {} launch: - /tunneling.exe: + "/tunneling.exe": - when: - os: windows store: steam @@ -340067,21 +341046,21 @@ Mining Cats: installDir: Mining Cats: {} launch: - /Mining Cats.exe: + "/Mining Cats.exe": - when: - os: windows store: steam steam: id: 1837920 -'Mining Empire: Earth Resources': +"Mining Empire: Earth Resources": installDir: Mining Empire Earth Resources: {} launch: - /Mining Empire- Earth Resources.app/Contents/MacOS/Mining Empire- Earth Resources: + "/Mining Empire- Earth Resources.app/Contents/MacOS/Mining Empire- Earth Resources": - when: - os: mac store: steam - /Mining Empire_ Earth Resources.exe: + "/Mining Empire_ Earth Resources.exe": - when: - os: windows store: steam @@ -340091,16 +341070,16 @@ Mining Industry Simulator: installDir: MiningIndustries: {} launch: - /indminer.app: + "/indminer.app": - when: - os: mac store: steam - /indminer.exe: - - arguments: '-debug' + "/indminer.exe": + - arguments: "-debug" when: - os: windows store: steam - /indminer.x86: + "/indminer.x86": - when: - os: linux store: steam @@ -340110,7 +341089,7 @@ Mining Rail: installDir: Mining Rail: {} launch: - /Mining Rail.exe: + "/Mining Rail.exe": - when: - os: windows store: steam @@ -340120,7 +341099,7 @@ Minion Forest: installDir: Minion Forest: {} launch: - /forest.exe: + "/forest.exe": - when: - os: windows store: steam @@ -340128,12 +341107,12 @@ Minion Forest: id: 767340 Minion Masters: files: - /userdata//489520/remote/profile_v1: + "/userdata//489520/remote/profile_v1": tags: - save when: - store: steam - /userdata//489520/remote/usersetup_v1: + "/userdata//489520/remote/usersetup_v1": tags: - config when: @@ -340141,8 +341120,8 @@ Minion Masters: installDir: Minion Masters: {} launch: - /MinionMasters.app/Contents/MacOS/Minion Masters: - - arguments: 'platform=steam serverip=wss://live.service.minionmastersthegame.com:443/profile' + "/MinionMasters.app/Contents/MacOS/Minion Masters": + - arguments: "platform=steam serverip=wss://live.service.minionmastersthegame.com:443/profile" when: - os: mac store: steam @@ -340156,20 +341135,20 @@ Minions Battle: installDir: Minions Battle: {} launch: - /Minions Battle.exe: + "/Minions Battle.exe": - when: - store: steam steam: id: 1055620 -'Minions, Monsters, and Madness': +"Minions, Monsters, and Madness": installDir: Steam_MMM: {} launch: - /Game v129.app: + "/Game v129.app": - when: - os: mac store: steam - /Game v129.exe: + "/Game v129.exe": - when: - os: windows store: steam @@ -340177,7 +341156,7 @@ Minions Battle: id: 566200 Ministry of Broadcast: files: - /MinistryOfBroadcast/default: + "/MinistryOfBroadcast/default": tags: - save when: @@ -340187,11 +341166,11 @@ Ministry of Broadcast: installDir: Ministry of Broadcast: {} launch: - /MinistryOfBroadcast.app/Contents/MacOS/MinistryOfBroadcast: + "/MinistryOfBroadcast.app/Contents/MacOS/MinistryOfBroadcast": - when: - os: mac store: steam - /Ministry_of_Broadcast.exe: + "/Ministry_of_Broadcast.exe": - when: - os: windows store: steam @@ -340199,25 +341178,25 @@ Ministry of Broadcast: id: 874040 Minit: files: - /.config/minit/minitsaves/minit_v1.sav: + "/.config/minit/minitsaves/minit_v1.sav": tags: - config - save when: - os: linux - /userdata//609490/remote/minit_v1.sav: + "/userdata//609490/remote/minit_v1.sav": tags: - config - save when: - store: steam - /minit/minitSaves/minit_v1.sav: + "/minit/minitSaves/minit_v1.sav": tags: - config - save when: - os: windows - /minitGMS2/minitSaves/minit_v1.sav: + "/minitGMS2/minitSaves/minit_v1.sav": tags: - config - save @@ -340228,15 +341207,15 @@ Minit: installDir: Minit: {} launch: - /Minit.app/Contents/MacOS/Mac_Runner: + "/Minit.app/Contents/MacOS/Mac_Runner": - when: - os: mac store: steam - /minit.exe: + "/minit.exe": - when: - os: windows store: steam - /runner: + "/runner": - when: - os: linux store: steam @@ -340244,7 +341223,7 @@ Minit: id: 609490 Minit Fun Racer: files: - /minit_racer/funracer.sav: + "/minit_racer/funracer.sav": tags: - config - save @@ -340253,7 +341232,7 @@ Minit Fun Racer: installDir: Minit Fun Racer: {} launch: - /minit_racer.exe: + "/minit_racer.exe": - when: - os: windows store: steam @@ -340263,7 +341242,7 @@ Minitime: installDir: Minitime: {} launch: - /minitime.exe: + "/minitime.exe": - when: - os: windows store: steam @@ -340276,11 +341255,11 @@ Mino Saga: installDir: MinoSaga: {} launch: - /MinoSaga.app: + "/MinoSaga.app": - when: - os: mac store: steam - /MinoSaga.exe: + "/MinoSaga.exe": - when: - os: windows store: steam @@ -340288,12 +341267,12 @@ Mino Saga: id: 669520 Minoria: files: - /AppData/LocalLow/BOMBSERVICE/Minoria: + "/AppData/LocalLow/BOMBSERVICE/Minoria": tags: - config when: - os: windows - /AppData/LocalLow/BOMBSERVICE/Minoria/saves: + "/AppData/LocalLow/BOMBSERVICE/Minoria/saves": tags: - save when: @@ -340303,7 +341282,7 @@ Minoria: installDir: Minoria: {} launch: - /Minoria.exe: + "/Minoria.exe": - when: - os: windows store: steam @@ -340313,42 +341292,42 @@ Minos Strategos: installDir: Minos Strategos: {} launch: - /Minos.exe: + "/Minos.exe": - when: - os: windows store: steam - /minos.app/Contents/MacOS/minos: - - arguments: '-force-opengl' + "/minos.app/Contents/MacOS/minos": + - arguments: "-force-opengl" when: - os: mac store: steam - /minos.x86: - - arguments: '-force-opengl' + "/minos.x86": + - arguments: "-force-opengl" when: - bit: 32 os: linux store: steam - /minos.x86_64: - - arguments: '-force-opengl' + "/minos.x86_64": + - arguments: "-force-opengl" when: - bit: 64 os: linux store: steam steam: id: 577490 -MinosMaze - The Minotaur's Labyrinth: +"MinosMaze - The Minotaur's Labyrinth": installDir: MinosMaze: {} launch: - /MinosMaze.app/Contents/MacOS/MinosMaze: + "/MinosMaze.app/Contents/MacOS/MinosMaze": - when: - os: mac store: steam - /MinosMaze.exe: + "/MinosMaze.exe": - when: - os: windows store: steam - /MinosMaze.x86_64: + "/MinosMaze.x86_64": - when: - os: linux store: steam @@ -340358,7 +341337,7 @@ Minotaur: installDir: Minotaur: {} launch: - /Minotaur.exe: + "/Minotaur.exe": - when: - os: windows store: steam @@ -340370,11 +341349,11 @@ Minotaur (2018): installDir: Minotaur: {} launch: - /Minotaur.app: + "/Minotaur.app": - when: - os: mac store: steam - /Minotaur.exe: + "/Minotaur.exe": - when: - os: windows store: steam @@ -340384,28 +341363,28 @@ Minotaur Arcade Volume 1: installDir: Minotaur Arcade Volume 1: {} launch: - /MinotaurArcade.exe: + "/MinotaurArcade.exe": - when: - os: windows store: steam steam: id: 906110 -Minotaur's Maze: +"Minotaur's Maze": installDir: - Minotaur's Maze: {} + "Minotaur's Maze": {} launch: - /mm.exe: + "/mm.exe": - when: - bit: 64 os: windows store: steam steam: id: 531080 -'Minskies: The Abduction': +"Minskies: The Abduction": installDir: Minskies: {} launch: - /DOSBox.exe: + "/DOSBox.exe": - when: - os: windows store: steam @@ -340415,11 +341394,11 @@ Mint: installDir: Mint: {} launch: - /Mint.app: + "/Mint.app": - when: - os: mac store: steam - /Mint.exe: + "/Mint.exe": - when: - os: windows store: steam @@ -340429,14 +341408,14 @@ Minus Zero: installDir: Minus Zero: {} launch: - /mz.exe: + "/mz.exe": - when: - store: steam steam: id: 430300 Minute of Islands: files: - /AppData/LocalLow/Studio Fizbin/Minute of Islands: + "/AppData/LocalLow/Studio Fizbin/Minute of Islands": tags: - config - save @@ -340447,11 +341426,11 @@ Minute of Islands: installDir: Minute of Islands: {} launch: - /Minute of Islands.exe: + "/Minute of Islands.exe": - when: - os: windows store: steam - /MinuteOfIslands.app: + "/MinuteOfIslands.app": - when: - os: mac store: steam @@ -340466,7 +341445,7 @@ Mira: installDir: Mira: {} launch: - /Mira.exe: + "/Mira.exe": - when: - os: windows store: steam @@ -340476,29 +341455,29 @@ Mira and the Mysteries of Alchemy: installDir: Mira and the Mysteries of Alchemy: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: id: 1328920 -Mira's Tale: +"Mira's Tale": steam: id: 1224070 Miracle Calamity Homeostasis: installDir: Miracle Calamity Homeostasis: {} launch: - /MiracleCalamityHomeostasis-1.0-pc/MiracleCalamityHomeostasis.exe: + "/MiracleCalamityHomeostasis-1.0-pc/MiracleCalamityHomeostasis.exe": - when: - os: windows store: steam - workingDir: /MiracleCalamityHomeostasis-1.0-pc - /MiracleCalamityHomeostasis-1.0-pc/MiracleCalamityHomeostasis.sh: + workingDir: "/MiracleCalamityHomeostasis-1.0-pc" + "/MiracleCalamityHomeostasis-1.0-pc/MiracleCalamityHomeostasis.sh": - when: - bit: 64 os: linux store: steam - workingDir: /MiracleCalamityHomeostasis-1.0-pc + workingDir: "/MiracleCalamityHomeostasis-1.0-pc" steam: id: 1182820 Miracle Circus 奇迹马戏团: @@ -340510,11 +341489,11 @@ Miracle Fly: installDir: Miracle Fly: {} launch: - /MiracleFly.app/Contents/MacOS/mfly: + "/MiracleFly.app/Contents/MacOS/mfly": - when: - os: mac store: steam - /MiracleFly.exe: + "/MiracleFly.exe": - when: - os: windows store: steam @@ -340524,7 +341503,7 @@ Miracle Mia: installDir: Miracle Mia: {} launch: - /miracle_mia.exe: + "/miracle_mia.exe": - when: - os: windows store: steam @@ -340534,7 +341513,7 @@ Miracle snack shop 기적의 분식집: installDir: MiracleVN: {} launch: - /miraclevn.exe: + "/miraclevn.exe": - when: - os: windows store: steam @@ -340544,27 +341523,27 @@ Miraclr - Divine Dating Sim: installDir: miraclr - Divine Dating Sim: {} launch: - /miraclr.app: + "/miraclr.app": - when: - os: mac store: steam - /miraclr.exe: + "/miraclr.exe": - when: - os: windows store: steam - /miraclr.sh: + "/miraclr.sh": - when: - os: linux store: steam steam: id: 787970 -'Miraculous: Rise of the Sphinx': +"Miraculous: Rise of the Sphinx": gog: id: 1334130696 installDir: Miraculous: {} launch: - /MiraculousRiseOfTheSphinx.exe: + "/MiraculousRiseOfTheSphinx.exe": - when: - store: steam steam: @@ -340573,7 +341552,7 @@ Mirador: installDir: Mirador: {} launch: - /Mirador.exe: + "/Mirador.exe": - when: - bit: 64 os: windows @@ -340584,7 +341563,7 @@ Mirage: installDir: Mirage: {} launch: - /MIRAGE.exe: + "/MIRAGE.exe": - arguments: vr_disabled when: - bit: 64 @@ -340596,12 +341575,12 @@ Mirage Online Classic: installDir: MirageOnlineClassic: {} launch: - /MirageOnlineClassic: + "/MirageOnlineClassic": - when: - bit: 64 os: linux store: steam - /MirageOnlineClassic.exe: + "/MirageOnlineClassic.exe": - when: - os: windows store: steam @@ -340611,15 +341590,15 @@ Mirage of Dragon: installDir: Mirage of The Dragon: {} launch: - /Mirage of Dragon.exe: + "/Mirage of Dragon.exe": - when: - os: windows store: steam steam: id: 782380 -'Mirage: Arcane Warfare': +"Mirage: Arcane Warfare": files: - /TBL/Saved/Config/WindowsNoEditor: + "/TBL/Saved/Config/WindowsNoEditor": tags: - config when: @@ -340627,7 +341606,7 @@ Mirage of Dragon: installDir: Mirage Arcane Warfare: {} launch: - /TBL-Win64-Shipping.exe: + "/TBL-Win64-Shipping.exe": - when: - bit: 64 os: windows @@ -340638,7 +341617,7 @@ Mircron Wars XR: installDir: Mircron Wars XR: {} launch: - /Mircron Wars XR_32_SPv1.5_Data.exe: + "/Mircron Wars XR_32_SPv1.5_Data.exe": - when: - os: windows store: steam @@ -340648,7 +341627,7 @@ Miriel Saga: installDir: Miriel Saga: {} launch: - /Miriel Saga.exe: + "/Miriel Saga.exe": - when: - os: windows store: steam @@ -340656,7 +341635,7 @@ Miriel Saga: id: 1148710 Mirror: files: - /save: + "/save": tags: - save when: @@ -340664,24 +341643,24 @@ Mirror: installDir: Mirror: {} launch: - /game.app/Contents/MacOS/game: + "/game.app/Contents/MacOS/game": - when: - os: mac store: steam - /game.exe: + "/game.exe": - when: - os: windows store: steam steam: id: 644560 -'Mirror 2: Project X': +"Mirror 2: Project X": files: - /Mirror2: + "/Mirror2": tags: - config when: - os: windows - /Mirror2/Saved/SaveGames: + "/Mirror2/Saved/SaveGames": tags: - save when: @@ -340689,16 +341668,16 @@ Mirror: installDir: Mirror 2 Project X: {} launch: - /Launcher/Mirror2.ProjectX.Launcher.exe: + "/Launcher/Mirror2.ProjectX.Launcher.exe": - when: - store: steam steam: id: 1832640 -Mirror Angel's Paradise: +"Mirror Angel's Paradise": installDir: - Mirror Angel's Paradise: {} + "Mirror Angel's Paradise": {} launch: - /MirrorAngelsParadise.exe: + "/MirrorAngelsParadise.exe": - when: - os: windows store: steam @@ -340706,7 +341685,7 @@ Mirror Angel's Paradise: id: 926250 Mirror Drop: files: - /Mirror Drop: + "/Mirror Drop": tags: - config - save @@ -340715,16 +341694,16 @@ Mirror Drop: installDir: Mirror Drop: {} launch: - /Mirror Drop.app/Contents/MacOS/MirrorDrop: + "/Mirror Drop.app/Contents/MacOS/MirrorDrop": - when: - os: mac store: steam - /MirrorDrop: + "/MirrorDrop": - when: - bit: 64 os: linux store: steam - /MirrorDrop.exe: + "/MirrorDrop.exe": - when: - bit: 64 os: windows @@ -340735,7 +341714,7 @@ Mirror Maker: installDir: Mirror Maker: {} launch: - /Mirror Maker.exe: + "/Mirror Maker.exe": - when: - os: windows store: steam @@ -340745,7 +341724,7 @@ Mirror Mysteries: installDir: Mirror Mysteries: {} launch: - /mm.exe: + "/mm.exe": - when: - store: steam steam: @@ -340754,7 +341733,7 @@ Mirror Mysteries 2: installDir: Mirror Mysteries 2 Forgotten Kingdoms: {} launch: - /MirrorMysteries2_ForgottenKingdoms.exe: + "/MirrorMysteries2_ForgottenKingdoms.exe": - when: - store: steam steam: @@ -340763,19 +341742,19 @@ Mirror Party: installDir: Mirror Party: {} launch: - /Launcher/MirrorParty.Launcher.Host.exe: + "/Launcher/MirrorParty.Launcher.Host.exe": - when: - store: steam steam: id: 1787820 -Mirror's Edge: +"Mirror's Edge": files: - /EA Games/Mirror's Edge/TdGame/Config: + "/EA Games/Mirror's Edge/TdGame/Config": tags: - config when: - os: windows - /EA Games/Mirror's Edge/TdGame/Savefiles: + "/EA Games/Mirror's Edge/TdGame/Savefiles": tags: - save when: @@ -340785,24 +341764,24 @@ Mirror's Edge: installDir: mirrors edge: {} launch: - /Binaries/MirrorsEdge.exe: + "/Binaries/MirrorsEdge.exe": - when: - store: steam - workingDir: /Binaries - /Support/EA Help/Electronic_Arts_Technical_Support.htm: + workingDir: "/Binaries" + "/Support/EA Help/Electronic_Arts_Technical_Support.htm": - when: - store: steam - workingDir: /Binaries + workingDir: "/Binaries" steam: id: 17410 -Mirror's Edge Catalyst: +"Mirror's Edge Catalyst": files: - /Mirrors Edge Catalyst/settings/PROF_SAVE: + "/Mirrors Edge Catalyst/settings/PROF_SAVE": tags: - save when: - os: windows - /Mirrors Edge Catalyst/settings/PROF_SAVE_profile: + "/Mirrors Edge Catalyst/settings/PROF_SAVE_profile": tags: - config when: @@ -340813,13 +341792,13 @@ Mirror's Edge Catalyst: id: 1233570 MirrorMoon EP: files: - /.config/unity3d/Santa Ragione/MirrorMoonEP: + "/.config/unity3d/Santa Ragione/MirrorMoonEP": tags: - config - save when: - os: linux - /Library/Preferences/unity.Santa Ragione.MirrorMoonEP.plist: + "/Library/Preferences/unity.Santa Ragione.MirrorMoonEP.plist": tags: - config - save @@ -340828,15 +341807,15 @@ MirrorMoon EP: installDir: MirrorMoonEP: {} launch: - /MirrorMoonEP.app: + "/MirrorMoonEP.app": - when: - os: mac store: steam - /MirrorMoonEP.x86: + "/MirrorMoonEP.x86": - when: - os: linux store: steam - /MirrorMoonEp.exe: + "/MirrorMoonEp.exe": - when: - os: windows store: steam @@ -340849,17 +341828,17 @@ MirrorMoon EP: id: 231310 Mirrored - Chapter 1: files: - /.config/unity3d/Kelkafa/Mirrored/prefs: + "/.config/unity3d/Kelkafa/Mirrored/prefs": tags: - config when: - os: linux - /.config/unity3d/Kelkafa/Mirrored/save.dat: + "/.config/unity3d/Kelkafa/Mirrored/save.dat": tags: - save when: - os: linux - /AppData/LocalLow/Kelkafa/Mirrored/save.dat: + "/AppData/LocalLow/Kelkafa/Mirrored/save.dat": tags: - save when: @@ -340867,11 +341846,11 @@ Mirrored - Chapter 1: installDir: Mirrored - Chapter 1: {} launch: - /Mirrored.app: + "/Mirrored.app": - when: - os: mac store: steam - /Mirrored.x86: + "/Mirrored.x86": - when: - bit: 64 os: linux @@ -340886,21 +341865,21 @@ Mirrors: installDir: Mirrors: {} launch: - /Mirrors.x86: + "/Mirrors.x86": - when: - bit: 32 os: linux store: steam - /Mirrors.x86_64: + "/Mirrors.x86_64": - when: - bit: 64 os: linux store: steam - /mirrors.app: + "/mirrors.app": - when: - os: mac store: steam - /mirrors.exe: + "/mirrors.exe": - when: - os: windows store: steam @@ -340908,22 +341887,22 @@ Mirrors: id: 709470 Mirt. Tales of the Cold Land: files: - /game/saves/*.save: + "/game/saves/*.save": tags: - save when: - os: windows - /game/saves/persistent: + "/game/saves/persistent": tags: - config when: - os: windows - /renpy/MIRT-1464622904/*.save: + "/renpy/MIRT-1464622904/*.save": tags: - save when: - os: windows - /renpy/MIRT-1464622904/persistent: + "/renpy/MIRT-1464622904/persistent": tags: - config when: @@ -340934,7 +341913,7 @@ MisBits: installDir: MisBits: {} launch: - /CRAD.exe: + "/CRAD.exe": - when: - bit: 64 os: windows @@ -340943,12 +341922,12 @@ MisBits: id: 825190 Misadventures of Laura Silver: files: - /Miss_Silver_Terminal___Part_I/SilverOptionsI.ini: + "/Miss_Silver_Terminal___Part_I/SilverOptionsI.ini": tags: - config when: - os: windows - /Miss_Silver_Terminal___Part_I/Slot*.silver: + "/Miss_Silver_Terminal___Part_I/Slot*.silver": tags: - save when: @@ -340956,26 +341935,26 @@ Misadventures of Laura Silver: installDir: Misadventures of Laura Silver: {} launch: - /Misadventures of Laura Silver: + "/Misadventures of Laura Silver": - when: - os: linux store: steam - /Misadventures of Laura Silver.app: + "/Misadventures of Laura Silver.app": - when: - os: mac store: steam - /Misadventures of Laura Silver.exe: + "/Misadventures of Laura Silver.exe": - when: - os: windows store: steam steam: id: 1026160 -'Misadventures of Laura Silver: Chapter II': +"Misadventures of Laura Silver: Chapter II": steam: id: 1138270 -'Misao: Definitive Edition': +"Misao: Definitive Edition": files: - /Save/*.sav: + "/Save/*.sav": tags: - save when: @@ -340983,7 +341962,7 @@ Misadventures of Laura Silver: installDir: Misao: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -340994,7 +341973,7 @@ Mischief on Main Street: id: 891460 Miscreated: files: - /user.cfg: + "/user.cfg": tags: - config when: @@ -341002,18 +341981,18 @@ Miscreated: installDir: Miscreated: {} launch: - /Miscreated.exe: + "/Miscreated.exe": - when: - bit: 64 os: windows store: steam steam: id: 299740 -'Miscreation: Evolve Your Creature!': +"Miscreation: Evolve Your Creature!": installDir: Miscreation: {} launch: - /Miscreation.exe: + "/Miscreation.exe": - when: - os: windows store: steam @@ -341023,7 +342002,7 @@ Misfire: installDir: Misfire: {} launch: - /Misfire.exe: + "/Misfire.exe": - when: - bit: 64 os: windows @@ -341034,32 +342013,32 @@ Misfit: installDir: Misfit: {} launch: - /MISFIT.exe: + "/MISFIT.exe": - when: - bit: 64 os: windows store: steam steam: id: 917880 -'Mishap 2: An Intentional Haunting': +"Mishap 2: An Intentional Haunting": installDir: Mishap 2: {} launch: - /Mishap2.app: + "/Mishap2.app": - when: - os: mac store: steam - /Mishap2.exe: + "/Mishap2.exe": - when: - os: windows store: steam steam: id: 47570 -'Mishap: An Accidental Haunting': +"Mishap: An Accidental Haunting": installDir: Mishap An Accidental Haunting: {} launch: - /Mishap.exe: + "/Mishap.exe": - when: - store: steam steam: @@ -341068,7 +342047,7 @@ Miss Cat: installDir: Miss Cat: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -341078,19 +342057,19 @@ Miss Fisher and the Deathly Maze: installDir: Miss Fisher and the Deathly Maze: {} launch: - /Miss Fisher and the Deathly Maze.app: + "/Miss Fisher and the Deathly Maze.app": - when: - os: mac store: steam - /Miss Fisher and the Deathly Maze.exe: + "/Miss Fisher and the Deathly Maze.exe": - when: - os: windows store: steam - /Miss Fisher and the Deathly Maze.x86: + "/Miss Fisher and the Deathly Maze.x86": - when: - bit: 32 store: steam - /Miss Fisher and the Deathly Maze.x86_64: + "/Miss Fisher and the Deathly Maze.x86_64": - when: - bit: 64 os: linux @@ -341099,7 +342078,7 @@ Miss Fisher and the Deathly Maze: id: 711430 Miss Furry: files: - /AppData/LocalLow/ Red Six Publishing/Miss Furry: + "/AppData/LocalLow/ Red Six Publishing/Miss Furry": tags: - save when: @@ -341107,15 +342086,15 @@ Miss Furry: installDir: Miss Furry: {} launch: - /Contents/MacOS/Miss Furry: + "/Contents/MacOS/Miss Furry": - when: - os: mac store: steam - /Miss Furry.exe: + "/Miss Furry.exe": - when: - os: windows store: steam - /MissFurry.x86_64: + "/MissFurry.x86_64": - when: - os: linux store: steam @@ -341125,21 +342104,21 @@ Miss Furry: - config steam: id: 1566060 -Miss Kobayashi's Dragon Maid Burst Forth!! Choro-gon☆Breath DIRECTOR'S CUT: +"Miss Kobayashi's Dragon Maid Burst Forth!! Choro-gon☆Breath DIRECTOR'S CUT": installDir: - Miss Kobayashi's Dragon Maid: {} + "Miss Kobayashi's Dragon Maid": {} launch: - /MissKobayashisDragonMaid.exe: + "/MissKobayashisDragonMaid.exe": - when: - os: windows store: steam steam: id: 2086380 -Miss Lisette's Assassin Maid: +"Miss Lisette's Assassin Maid": installDir: - Miss Lisette's Assassin Maid: {} + "Miss Lisette's Assassin Maid": {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -341147,7 +342126,7 @@ Miss Lisette's Assassin Maid: id: 1071490 Miss Neko: files: - /AppData/LocalLow/Double W/Miss Neko/*.pz: + "/AppData/LocalLow/Double W/Miss Neko/*.pz": tags: - save when: @@ -341155,7 +342134,7 @@ Miss Neko: installDir: Miss Neko: {} launch: - /Miss Neko.exe: + "/Miss Neko.exe": - when: - os: windows store: steam @@ -341165,14 +342144,14 @@ Miss Popularity: installDir: Miss Popularity: {} launch: - /Boyfriend.hta: + "/Boyfriend.hta": - when: - store: steam steam: id: 12660 Missed messages.: files: - /LocalLow/Angela He/missed messages_: + "/LocalLow/Angela He/missed messages_": tags: - config - save @@ -341181,15 +342160,15 @@ Missed messages.: installDir: missed messages: {} launch: - /missed messages.app: + "/missed messages.app": - when: - os: mac store: steam - /missedmessagesLinux/missed messages.x86_64: + "/missedmessagesLinux/missed messages.x86_64": - when: - os: linux store: steam - /missedmessagesWindows/missed messages..exe: + "/missedmessagesWindows/missed messages..exe": - when: - os: windows store: steam @@ -341202,19 +342181,19 @@ Missile Cards: installDir: Missile Cards: {} launch: - /missilecards.exe: + "/missilecards.exe": - when: - store: steam steam: id: 586390 -'Missile Command: Recharged': +"Missile Command: Recharged": files: - /MonoBleedingEdge/etc/mono/mconfig: + "/MonoBleedingEdge/etc/mono/mconfig": tags: - config when: - os: windows - /AppData/LocalLow/Atari Inc/Missile Command Recharged: + "/AppData/LocalLow/Atari Inc/Missile Command Recharged": tags: - save when: @@ -341224,15 +342203,15 @@ Missile Cards: installDir: Missile Command Recharged: {} launch: - /Missile Command Recharged.exe: + "/Missile Command Recharged.exe": - when: - os: windows store: steam - /Missile Command Recharged.x86_64: + "/Missile Command Recharged.x86_64": - when: - os: linux store: steam - /MissileCommandRecharged.app: + "/MissileCommandRecharged.app": - when: - os: mac store: steam @@ -341242,7 +342221,7 @@ MissileDancer: installDir: MissileDancer: {} launch: - /MissileDancer.exe: + "/MissileDancer.exe": - when: - os: windows store: steam @@ -341252,7 +342231,7 @@ Missileman Origins: installDir: Missileman Origins: {} launch: - /Missileman Origins.exe: + "/Missileman Origins.exe": - when: - os: windows store: steam @@ -341262,7 +342241,7 @@ Missing Road: installDir: Missing Road: {} launch: - /Missing_Road.exe: + "/Missing_Road.exe": - when: - os: windows store: steam @@ -341270,7 +342249,7 @@ Missing Road: id: 780230 Missing Translation: files: - /MissingTranslation: + "/MissingTranslation": tags: - save when: @@ -341278,19 +342257,19 @@ Missing Translation: installDir: Missing Translation: {} launch: - /nw.app: + "/nw.app": - when: - os: mac store: steam - /nw.exe: + "/nw.exe": - when: - os: windows store: steam steam: id: 395520 -'Missing: An Interactive Thriller - Episode One': +"Missing: An Interactive Thriller - Episode One": files: - /userdata//354650/remote: + "/userdata//354650/remote": tags: - save when: @@ -341298,11 +342277,11 @@ Missing Translation: installDir: MISSING An Interactive Thriller: {} launch: - /missing_universal.app: + "/missing_universal.app": - when: - os: mac store: steam - /missing_win32.exe: + "/missing_win32.exe": - when: - os: windows store: steam @@ -341316,11 +342295,11 @@ Mission 1545: installDir: Mission1545: {} launch: - /Mission1545.app/Contents/MacOS/Mission1545: + "/Mission1545.app/Contents/MacOS/Mission1545": - when: - os: mac store: steam - /Mission1545.exe: + "/Mission1545.exe": - when: - os: windows store: steam @@ -341331,15 +342310,15 @@ Mission B: Mission B: {} steam: id: 637980 -'Mission Control: NanoMech': +"Mission Control: NanoMech": installDir: Mission Control NanoMech: {} launch: - /NanoMech.app: + "/NanoMech.app": - when: - os: mac store: steam - /NanoMech.exe: + "/NanoMech.exe": - when: - os: windows store: steam @@ -341351,7 +342330,7 @@ Mission Critical: installDir: Mission Critical: {} launch: - /start.bat: + "/start.bat": - when: - os: windows store: steam @@ -341361,7 +342340,7 @@ Mission Evilguy: installDir: Mission Evilguy: {} launch: - /game_ReleaseSteam.exe: + "/game_ReleaseSteam.exe": - when: - bit: 64 os: windows @@ -341372,21 +342351,21 @@ Mission Runway: installDir: Mission Runway: {} launch: - /data/fashionDiva.hta: + "/data/fashionDiva.hta": - when: - store: steam - workingDir: /data + workingDir: "/data" steam: id: 12670 Mission XAM: installDir: Mission XAM: {} launch: - /MissionXAM: + "/MissionXAM": - when: - os: linux store: steam - /MissionXAM.exe: + "/MissionXAM.exe": - when: - os: windows store: steam @@ -341396,73 +342375,73 @@ Mission of Hero: installDir: Mission Of Hero: {} launch: - /win32/MissionOfHero.exe: + "/win32/MissionOfHero.exe": - when: - os: windows store: steam steam: id: 810610 -'Mission: Demolition': +"Mission: Demolition": installDir: Mission Demolition: {} launch: - /Demolition.app: + "/Demolition.app": - when: - os: mac store: steam - /Demolition.exe: + "/Demolition.exe": - when: - os: windows store: steam - /Demolition.x86: + "/Demolition.x86": - when: - bit: 32 os: linux store: steam - /Demolition.x86_64: + "/Demolition.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 726020 -'Mission: Escape from Island': +"Mission: Escape from Island": steam: id: 617170 -'Mission: Escape from Island 2': +"Mission: Escape from Island 2": steam: id: 761420 -'Mission: Escape from Island 3': +"Mission: Escape from Island 3": steam: id: 761430 -'Mission: Humanity': +"Mission: Humanity": files: - /Save: + "/Save": tags: - save when: - os: windows -'Mission: Wolf': +"Mission: Wolf": steam: id: 718360 -'Mission:Amazing': +"Mission:Amazing": installDir: MissionAmazing: {} launch: - /MissionAmazing.exe: + "/MissionAmazing.exe": - when: - os: windows store: steam steam: id: 1211060 -'MissionForce: CyberStorm': +"MissionForce: CyberStorm": gog: id: 2099484877 Mist Hunter: installDir: Mist Hunter: {} launch: - /mh.exe: + "/mh.exe": - when: - bit: 64 os: windows @@ -341471,12 +342450,12 @@ Mist Hunter: id: 937870 Mist Survival: files: - /MistSurv/Saved/Config/WindowsNoEditor: + "/MistSurv/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /MistSurv/Saved/SaveGames: + "/MistSurv/Saved/SaveGames": tags: - save when: @@ -341484,7 +342463,7 @@ Mist Survival: installDir: Mist Survival: {} launch: - /MistSurvival.exe: + "/MistSurvival.exe": - when: - bit: 64 os: windows @@ -341495,7 +342474,7 @@ Mist of the Dark: installDir: Mist of the Dark: {} launch: - /MistOfTheDark.exe: + "/MistOfTheDark.exe": - when: - os: windows store: steam @@ -341505,7 +342484,7 @@ Mistake Souls: installDir: Mistake Souls: {} launch: - /Mistake Souls.exe: + "/Mistake Souls.exe": - when: - os: windows store: steam @@ -341515,7 +342494,7 @@ Mister Burnhouse: installDir: Mister Burnhouse: {} launch: - /Mister_Burnhouse.exe: + "/Mister_Burnhouse.exe": - when: - os: windows store: steam @@ -341525,7 +342504,7 @@ Mister Mart: installDir: Mister Mart: {} launch: - /Oculus/Mister Mart.exe: + "/Oculus/Mister Mart.exe": - when: - os: windows store: steam @@ -341535,7 +342514,7 @@ Mistero a Villa MilaFlora: installDir: Mistero a Villa MilaFlora: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -341545,7 +342524,7 @@ Mistfal: installDir: Mistfal: {} launch: - /mistfal.exe: + "/mistfal.exe": - when: - os: windows store: steam @@ -341553,18 +342532,18 @@ Mistfal: id: 417920 Mistover: files: - /AppData/Local/Packages/Bluehole.6272899549C28_9wnthkhmg1142/SystemAppData/wgs: + "/AppData/Local/Packages/Bluehole.6272899549C28_9wnthkhmg1142/SystemAppData/wgs": tags: - save when: - os: windows store: microsoft - /AppData/LocalLow/KRAFTON/MISTOVER/Save//GameData00: + "/AppData/LocalLow/KRAFTON/MISTOVER/Save//GameData00": tags: - save when: - os: windows - /AppData/LocalLow/KRAFTON/MISTOVER/Save//SystemData: + "/AppData/LocalLow/KRAFTON/MISTOVER/Save//SystemData": tags: - config when: @@ -341574,7 +342553,7 @@ Mistover: installDir: MISTOVER: {} launch: - /MISTOVER.exe: + "/MISTOVER.exe": - when: - bit: 64 os: windows @@ -341584,23 +342563,23 @@ Mistover: Mistress of Maids: steam: id: 769190 -'Mistress of Maids: First Castle': +"Mistress of Maids: First Castle": installDir: Mistress of Maids First Castle: {} launch: - /RPL.exe: + "/RPL.exe": - when: - store: steam steam: id: 1035800 Mistward: files: - /options.ini: + "/options.ini": tags: - config when: - os: windows - /cursorland: + "/cursorland": tags: - save when: @@ -341608,7 +342587,7 @@ Mistward: installDir: Mistward: {} launch: - /mistward.exe: + "/mistward.exe": - when: - os: windows store: steam @@ -341618,31 +342597,31 @@ Mistwood Heroes: installDir: Mistwood Heroes: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam steam: id: 573210 -'Mitch: Berry Challenge': +"Mitch: Berry Challenge": installDir: Mitch Berry Challenge: {} launch: - /MitchBerryChallenge.app: + "/MitchBerryChallenge.app": - when: - os: mac store: steam - /MitchBerryChallenge.exe: + "/MitchBerryChallenge.exe": - when: - os: windows store: steam steam: id: 480410 -'Mithral Gun:Biomechanical': +"Mithral Gun:Biomechanical": installDir: Biomechanical: {} launch: - /Biomechanical.exe: + "/Biomechanical.exe": - when: - store: steam steam: @@ -341651,25 +342630,25 @@ Mitos y Leyendas Online: installDir: Myths and Legends Online: {} launch: - /Myths and Legends Online.exe: + "/Myths and Legends Online.exe": - when: - os: windows store: steam - /MythsAndLegends.app/Contents/MacOS/Myths and Legends Online: + "/MythsAndLegends.app/Contents/MacOS/Myths and Legends Online": - when: - os: mac store: steam steam: id: 1005340 -'Mitos.is: The Game': +"Mitos.is: The Game": installDir: Mitos.is The Game: {} launch: - /Mitosis.app/Contents/MacOS/Mitosis: + "/Mitosis.app/Contents/MacOS/Mitosis": - when: - os: mac store: steam - /Mitosis.exe: + "/Mitosis.exe": - when: - os: windows store: steam @@ -341679,11 +342658,11 @@ Mitosis: installDir: Mitosis: {} launch: - /Mitosis.app/Contents/MacOS/Mitosis: + "/Mitosis.app/Contents/MacOS/Mitosis": - when: - os: mac store: steam - /Mitosis.exe: + "/Mitosis.exe": - when: - os: windows store: steam @@ -341691,12 +342670,12 @@ Mitosis: id: 574230 Mitsurugi Kamui Hikae: files: - /mitsurugi01: + "/mitsurugi01": tags: - save when: - os: windows - /mitsurugi01/config.ini: + "/mitsurugi01/config.ini": tags: - config when: @@ -341706,30 +342685,30 @@ Mitsurugi Kamui Hikae: installDir: Mitsurugi Kamui Hikae: {} launch: - /mitsurugi.exe: + "/mitsurugi.exe": - when: - store: steam steam: id: 263620 -'Mittelborg: the City of Mages': +"Mittelborg: the City of Mages": installDir: Mittelborg: {} launch: - /Mittelborg.app: + "/Mittelborg.app": - when: - os: mac store: steam - /Mittelborg.exe: + "/Mittelborg.exe": - when: - os: windows store: steam - /Mittelborg.x86_64: + "/Mittelborg.x86_64": - when: - os: linux store: steam steam: id: 956060 -'Mix-Sign: Girl with 3 Signs': +"Mix-Sign: Girl with 3 Signs": installDir: Mix-Sign: {} steam: @@ -341743,15 +342722,15 @@ Mizari Loves Company: installDir: Mizari Loves Company: {} launch: - /Mizari_beta.app: + "/Mizari_beta.app": - when: - os: mac store: steam - /Mizari_beta.exe: + "/Mizari_beta.exe": - when: - os: windows store: steam - /Mizari_beta.sh: + "/Mizari_beta.sh": - when: - os: linux store: steam @@ -341761,15 +342740,15 @@ Mizuchi 白蛇心傳: installDir: Mizuchi: {} launch: - /Mizuchi-1.0-market/Mizuchi.app: + "/Mizuchi-1.0-market/Mizuchi.app": - when: - os: mac store: steam - /Mizuchi-1.0-market/Mizuchi.exe: + "/Mizuchi-1.0-market/Mizuchi.exe": - when: - os: windows store: steam - /Mizuchi-1.0-market/Mizuchi.sh: + "/Mizuchi-1.0-market/Mizuchi.sh": - when: - os: linux store: steam @@ -341779,68 +342758,68 @@ Mmmmm donuts arhhh......: installDir: mmmmm donuts arhhh: {} launch: - /mmmmm donuts.exe: + "/mmmmm donuts.exe": - when: - store: steam steam: id: 1151750 -'Moai II: Path to Another World': +"Moai II: Path to Another World": installDir: MOAI 2 Path to Another World: {} launch: - /moai2.app: + "/moai2.app": - when: - os: mac store: steam - /moai2.exe: + "/moai2.exe": - when: - os: windows store: steam steam: id: 361950 -'Moai III: Trade Mission': +"Moai III: Trade Mission": installDir: - MOAI 3 Trade Mission Collector's Edition: {} + "MOAI 3 Trade Mission Collector's Edition": {} launch: - /Moai3_TradeMission_CE.exe: + "/Moai3_TradeMission_CE.exe": - when: - os: windows store: steam steam: id: 437060 -'Moai IV: Terra Incognita': +"Moai IV: Terra Incognita": installDir: MOAI 4 Terra Incognita Collector’s Edition: {} launch: - /Moai4_TerraIncognita_CE.app: + "/Moai4_TerraIncognita_CE.app": - when: - os: mac store: steam - /Moai4_TerraIncognita_CE.exe: + "/Moai4_TerraIncognita_CE.exe": - when: - os: windows store: steam steam: id: 475620 -'Moai V: New Generation': +"Moai V: New Generation": installDir: Moai V Collector’s Edition: {} launch: - /Moai5_NewGeneration_CE.exe: + "/Moai5_NewGeneration_CE.exe": - when: - os: windows store: steam steam: id: 793940 -'Moai: Build Your Dream': +"Moai: Build Your Dream": installDir: MOAI Build Your Dream: {} launch: - /moai.app: + "/moai.app": - when: - os: mac store: steam - /moai.exe: + "/moai.exe": - when: - os: windows store: steam @@ -341852,7 +342831,7 @@ Mob Rule: installDir: Mobrule Classic: {} launch: - /MR.exe: + "/MR.exe": - when: - os: windows store: steam @@ -341867,7 +342846,7 @@ Mob War: installDir: Mob War Nazi Golds: {} launch: - /mobwar.exe: + "/mobwar.exe": - when: - os: windows store: steam @@ -341875,12 +342854,12 @@ Mob War: id: 821330 Mobil 1 Rally Championship: files: - /savedata/savegame: + "/savedata/savegame": tags: - save when: - os: windows - /var: + "/var": tags: - config when: @@ -341889,7 +342868,7 @@ Mobile Astro: installDir: Mobile Astro: {} launch: - /Mobile Astro.exe: + "/Mobile Astro.exe": - when: - os: windows store: steam @@ -341899,11 +342878,11 @@ Mobile Empire: installDir: Mobile Empire: {} launch: - /Mobile.app/Contents/MacOS/Mobile: + "/Mobile.app/Contents/MacOS/Mobile": - when: - os: mac store: steam - /Mobile.exe: + "/Mobile.exe": - when: - bit: 64 os: windows @@ -341912,12 +342891,12 @@ Mobile Empire: id: 741260 Mobile Forces: files: - /System: + "/System": tags: - config when: - os: windows - /System/Profile00.ini: + "/System/Profile00.ini": tags: - save when: @@ -341927,7 +342906,7 @@ Mobile Forces: installDir: Mobile Forces: {} launch: - /System/MobileForces.exe: + "/System/MobileForces.exe": - when: - os: windows store: steam @@ -341937,7 +342916,7 @@ Mobile Light Force: installDir: Mobile Light Force: {} launch: - /Mobile Light Force.exe: + "/Mobile Light Force.exe": - when: - os: windows store: steam @@ -341947,7 +342926,7 @@ Mobile Suit Gundam Battle Operation 2: installDir: MobileSuitGundamBattleOperation2: {} launch: - /start_protected_game.exe: + "/start_protected_game.exe": - when: - bit: 64 os: windows @@ -341958,7 +342937,7 @@ Mobile Wars X: installDir: Mobile Wars X: {} launch: - /Mobile Wars X.exe: + "/Mobile Wars X.exe": - when: - os: windows store: steam @@ -341968,7 +342947,7 @@ MobileZombie: installDir: MobileZombie_IOS: {} launch: - /MobileZombie3.4.app: + "/MobileZombie3.4.app": - when: - os: mac store: steam @@ -341976,7 +342955,7 @@ MobileZombie: id: 694180 Mobius Final Fantasy: files: - /userdata//536930/remote/account.dat: + "/userdata//536930/remote/account.dat": tags: - config when: @@ -341990,7 +342969,7 @@ Mobler: installDir: Mobler: {} launch: - /MoblerGame.exe: + "/MoblerGame.exe": - when: - os: windows store: steam @@ -342003,7 +342982,7 @@ MochiMochi: installDir: MochiMochi: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -342013,7 +342992,7 @@ Mocove Arts VR: installDir: Mocove Arts VR: {} launch: - /MocoveArt-XTs1.exe: + "/MocoveArt-XTs1.exe": - when: - os: windows store: steam @@ -342023,15 +343002,15 @@ Modbox: installDir: Modbox: {} launch: - /modbox.exe: - - arguments: '-desktop' + "/modbox.exe": + - arguments: "-desktop" when: - store: steam steam: id: 414120 Model Builder: files: - /Model Builder/Saves: + "/Model Builder/Saves": tags: - save when: @@ -342039,7 +343018,7 @@ Model Builder: installDir: Model Builder: {} launch: - /Model Builder.exe: + "/Model Builder.exe": - when: - os: windows store: steam @@ -342049,7 +343028,7 @@ Model DE Fight: installDir: MDF: {} launch: - /MDF.exe: + "/MDF.exe": - when: - os: windows store: steam @@ -342064,7 +343043,7 @@ Model Railway Easily: installDir: Model Railway Easily: {} launch: - /MoRE.exe: + "/MoRE.exe": - when: - bit: 64 os: windows @@ -342075,7 +343054,7 @@ Model Railway Easily Christmas: installDir: MoRE_Christmas: {} launch: - /MoRE_Christmas.exe: + "/MoRE_Christmas.exe": - when: - bit: 64 os: windows @@ -342086,7 +343065,7 @@ Moderium: installDir: Moderium: {} launch: - /Aetheria.exe: + "/Aetheria.exe": - when: - os: windows store: steam @@ -342096,7 +343075,7 @@ Modern Combat 5: installDir: Modern Combat 5: {} launch: - /mc5.exe: + "/mc5.exe": - when: - os: windows store: steam @@ -342106,7 +343085,7 @@ Modern Combat Versus: installDir: Modern Combat Versus: {} launch: - /ModernCombatVersus.exe: + "/ModernCombatVersus.exe": - when: - os: windows store: steam @@ -342116,31 +343095,31 @@ Modern Road-Like: installDir: Modern road like: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam steam: id: 850930 -'Modern Tales: Age of Invention': +"Modern Tales: Age of Invention": installDir: Modern Tales: {} launch: - /ModernTales.exe: + "/ModernTales.exe": - when: - os: windows store: steam - /ModernTales_amd64: + "/ModernTales_amd64": - when: - bit: 64 os: linux store: steam - /ModernTales_i386: + "/ModernTales_i386": - when: - bit: 32 os: linux store: steam - /mac_steam.app/Contents/MacOS/mac_steam: + "/mac_steam.app/Contents/MacOS/mac_steam": - when: - os: mac store: steam @@ -342150,8 +343129,8 @@ Modest Kind: installDir: ModestKind: {} launch: - /ModestKind.exe: - - arguments: '-force-d3d9' + "/ModestKind.exe": + - arguments: "-force-d3d9" when: - os: windows store: steam @@ -342159,12 +343138,12 @@ Modest Kind: id: 701740 Modi & Nanna: files: - /Data/Save: + "/Data/Save": tags: - save when: - os: windows - /MaN.ini: + "/MaN.ini": tags: - config when: @@ -342173,7 +343152,7 @@ Modsork: installDir: MODSORK: {} launch: - /MODSORK Early Access.exe: + "/MODSORK Early Access.exe": - when: - os: windows store: steam @@ -342183,7 +343162,7 @@ Module TD: installDir: Module TD. Sci-Fi Tower Defense: {} launch: - /ModuleTd.exe: + "/ModuleTd.exe": - when: - os: windows store: steam @@ -342196,15 +343175,15 @@ Moe Era: installDir: Moe Era: {} launch: - /MoeEra.app/Contents/MacOS/MoeEra: + "/MoeEra.app/Contents/MacOS/MoeEra": - when: - os: mac store: steam - /MoeEra.exe: + "/MoeEra.exe": - when: - os: windows store: steam - /MoeEra.sh: + "/MoeEra.sh": - when: - os: linux store: steam @@ -342212,7 +343191,7 @@ Moe Era: id: 1159660 Moe Jigsaw: files: - /AppData/LocalLow/Ares inc_/JigsawPuzzle: + "/AppData/LocalLow/Ares inc_/JigsawPuzzle": tags: - config - save @@ -342221,11 +343200,11 @@ Moe Jigsaw: installDir: MoeJigsaw: {} launch: - /MoeJigsaw.app: + "/MoeJigsaw.app": - when: - os: mac store: steam - /MoeJigsaw.exe: + "/MoeJigsaw.exe": - when: - os: windows store: steam @@ -342238,7 +343217,7 @@ Moe Mekuri SP: installDir: Moe Mekuri SP - 萌めくりSP -: {} launch: - /Moe_Mekuri_SP.exe: + "/Moe_Mekuri_SP.exe": - when: - os: windows store: steam @@ -342248,7 +343227,7 @@ Moe Moe World War II-3 Deluxe Edition 萌萌2次大戰(略)3豪華限定 installDir: Moe Moe World War II-3 Deluxe Edition: {} launch: - /launcher.exe: + "/launcher.exe": - when: - os: windows store: steam @@ -342261,25 +343240,25 @@ Moe! Ninja Girls: installDir: Moe Ninja Girls: {} launch: - /moeninjagirls.exe: + "/moeninjagirls.exe": - when: - os: windows store: steam steam: id: 793150 -'Moebius: Empire Rising': +"Moebius: Empire Rising": files: - /.config/unity3d/Phoenix Online Studios/Moebius: + "/.config/unity3d/Phoenix Online Studios/Moebius": tags: - config when: - os: linux - /AppData/LocalLow/Phoenix Online Studios/Moebius: + "/AppData/LocalLow/Phoenix Online Studios/Moebius": tags: - save when: - os: windows - /userdata//264520/remote/moebius: + "/userdata//264520/remote/moebius": tags: - save when: @@ -342289,20 +343268,20 @@ Moe! Ninja Girls: installDir: Moebius Empire Rising: {} launch: - /Moebius.app: + "/Moebius.app": - when: - os: mac store: steam - /Moebius.exe: + "/Moebius.exe": - when: - os: windows store: steam - /Moebius.x86: + "/Moebius.x86": - when: - bit: 32 os: linux store: steam - /Moebius.x86_64: + "/Moebius.x86_64": - when: - bit: 64 os: linux @@ -342317,11 +343296,11 @@ Moeras: installDir: Moeras: {} launch: - /moeras_mac.app: + "/moeras_mac.app": - when: - os: mac store: steam - /moeras_windows/moeras.exe: + "/moeras_windows/moeras.exe": - when: - os: windows store: steam @@ -342329,17 +343308,17 @@ Moeras: id: 1135070 Moero Chronicle: files: - /userdata//638160/remote: + "/userdata//638160/remote": tags: - save when: - store: steam - /userdata//638160/remote/MoeroChronicle.ini: + "/userdata//638160/remote/MoeroChronicle.ini": tags: - config when: - store: steam - /Idea Factory/Moero Chronicle: + "/Idea Factory/Moero Chronicle": tags: - config - save @@ -342350,7 +343329,7 @@ Moero Chronicle: installDir: Moero Chronicle: {} launch: - /MoeroChronicle.exe: + "/MoeroChronicle.exe": - when: - os: windows store: steam @@ -342360,7 +343339,7 @@ Mogh: installDir: Mogh: {} launch: - /Mogh.exe: + "/Mogh.exe": - when: - bit: 64 os: windows @@ -342371,11 +343350,11 @@ Mogic: installDir: +1S: {} launch: - /+1s.app: + "/+1s.app": - when: - os: mac store: steam - /+1s.exe: + "/+1s.exe": - when: - os: windows store: steam @@ -342385,7 +343364,7 @@ Mogo Invasion: installDir: Mogo: {} launch: - /yszb.exe: + "/yszb.exe": - when: - os: windows store: steam @@ -342399,15 +343378,15 @@ Moi Mei: Moira: steam: id: 502250 -'Moira: Fated Twins': +"Moira: Fated Twins": installDir: Moira Fated Twins: {} launch: - /Game.app: + "/Game.app": - when: - os: mac store: steam - /MoiraFatedTwins.exe: + "/MoiraFatedTwins.exe": - when: - os: windows store: steam @@ -342417,30 +343396,30 @@ Moirai: installDir: Moirai: {} launch: - /Moirai.app/Contents/MacOS/Moirai: + "/Moirai.app/Contents/MacOS/Moirai": - when: - os: mac store: steam - /Moirai.exe: + "/Moirai.exe": - when: - os: windows store: steam - /runMoirai: + "/runMoirai": - when: - bit: 64 os: linux store: steam steam: id: 496920 -'Mojack - Quest of Jackal : Puzzle game': +"Mojack - Quest of Jackal : Puzzle game": installDir: Mojack - Quest of Jackal Puzzle game: {} launch: - /Mojack - Quest Of Jackal.app/Contents/MacOS/Mojack - Quest Of Jackal: + "/Mojack - Quest Of Jackal.app/Contents/MacOS/Mojack - Quest Of Jackal": - when: - os: mac store: steam - /Mojack - Quest Of Jackal.exe: + "/Mojack - Quest Of Jackal.exe": - when: - os: windows store: steam @@ -342450,7 +343429,7 @@ Mojo: installDir: Mojo: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -342460,23 +343439,23 @@ Mojo 2: installDir: Mojo 2: {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: id: 948020 -'Mojo 2: Mia': +"Mojo 2: Mia": installDir: Mojo 2 Mia: {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: id: 950530 Mojo XXX: files: - /userdata//975350: + "/userdata//975350": tags: - save when: @@ -342485,14 +343464,14 @@ Mojo XXX: installDir: Mojo XXX: {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: id: 975350 -'Mojo: Hanako': +"Mojo: Hanako": files: - /userdata//892630: + "/userdata//892630": tags: - save when: @@ -342501,7 +343480,7 @@ Mojo XXX: installDir: Mojo Hanako: {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: @@ -342510,21 +343489,21 @@ MokMok: installDir: MokMok: {} launch: - /MokMok.app/Contents/MacOS/MokMok: + "/MokMok.app/Contents/MacOS/MokMok": - when: - os: mac store: steam - /MokMok.exe: + "/MokMok.exe": - when: - os: windows store: steam steam: id: 671480 -Moko's Advice: +"Moko's Advice": installDir: Last Day: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -342534,16 +343513,16 @@ Mokoko: installDir: Mokoko: {} launch: - /Mokoko.app: + "/Mokoko.app": - when: - os: mac store: steam - /Mokoko.exe: + "/Mokoko.exe": - when: - bit: 64 os: windows store: steam - /Mokoko.x86_64: + "/Mokoko.x86_64": - when: - bit: 64 os: linux @@ -342553,25 +343532,25 @@ Mokoko: Mola mola: steam: id: 984750 -'Mola mola: Megan': +"Mola mola: Megan": steam: id: 1084740 -'Mola mola: Vivienne': +"Mola mola: Vivienne": steam: id: 1014440 Mold on Pizza: installDir: Mold on Pizza Deluxe: {} launch: - /MoldOnPizza.app: + "/MoldOnPizza.app": - when: - os: mac store: steam - /MoldOnPizza.exe: + "/MoldOnPizza.exe": - when: - os: windows store: steam - /runner: + "/runner": - when: - os: linux store: steam @@ -342581,7 +343560,7 @@ Mole Game: installDir: Mole: {} launch: - /MoleGame.exe: + "/MoleGame.exe": - when: - os: windows store: steam @@ -342591,15 +343570,15 @@ Molecats: installDir: Molecats: {} launch: - /Molecats.app: + "/Molecats.app": - when: - os: mac store: steam - /Molecats.x86_64: + "/Molecats.x86_64": - when: - os: linux store: steam - /molecats.exe: + "/molecats.exe": - when: - os: windows store: steam @@ -342609,11 +343588,11 @@ Molecule - A Chemical Challenge: installDir: Molecule - a chemical challenge: {} launch: - /molecule.app/Contents/MacOs/molecule: + "/molecule.app/Contents/MacOs/molecule": - when: - os: mac store: steam - /molecule/molecule.exe: + "/molecule/molecule.exe": - when: - os: windows store: steam @@ -342621,22 +343600,22 @@ Molecule - A Chemical Challenge: id: 796840 Molek-Syntez: files: - /.local/share/MOLEK-SYNTEZ/: + "/.local/share/MOLEK-SYNTEZ/": tags: - save when: - os: linux - /.local/share/MOLEK-SYNTEZ//config.cfg: + "/.local/share/MOLEK-SYNTEZ//config.cfg": tags: - config when: - os: linux - /My Games/MOLEK-SYNTEZ/: + "/My Games/MOLEK-SYNTEZ/": tags: - save when: - os: windows - /My Games/MOLEK-SYNTEZ//config.cfg: + "/My Games/MOLEK-SYNTEZ//config.cfg": tags: - config when: @@ -342646,15 +343625,15 @@ Molek-Syntez: installDir: MOLEK-SYNTEZ: {} launch: - /MOLEK-SYNTEZ: + "/MOLEK-SYNTEZ": - when: - os: linux store: steam - /MOLEK-SYNTEZ.app/Contents/MacOS/MOLEK-SYNTEZ: + "/MOLEK-SYNTEZ.app/Contents/MacOS/MOLEK-SYNTEZ": - when: - os: mac store: steam - /MOLEK-SYNTEZ.exe: + "/MOLEK-SYNTEZ.exe": - when: - os: windows store: steam @@ -342664,20 +343643,20 @@ Molemen Must Die!: installDir: Molemen Must Die: {} launch: - /Molemen Must Die.app: + "/Molemen Must Die.app": - when: - os: mac store: steam - /Molemen Must Die.exe: + "/Molemen Must Die.exe": - when: - os: windows store: steam - /Molemen Must Die.x86: + "/Molemen Must Die.x86": - when: - bit: 32 os: linux store: steam - /Molemen Must Die.x86_64: + "/Molemen Must Die.x86_64": - when: - bit: 64 os: linux @@ -342688,17 +343667,17 @@ Molly - Can you survive 100 nights?: installDir: Molly - Can you survive 100 nights: {} launch: - /Molly.exe: + "/Molly.exe": - when: - os: windows store: steam steam: id: 1014030 -'Molly: fear of clowns': +"Molly: fear of clowns": installDir: Molly fear of clowns: {} launch: - /Molly.exe: + "/Molly.exe": - when: - os: windows store: steam @@ -342708,31 +343687,31 @@ Molten Armor: installDir: Molten Armor: {} launch: - /molten_armor.app: + "/molten_armor.app": - when: - os: mac store: steam - /nw: + "/nw": - when: - os: linux store: steam - /nw.exe: + "/nw.exe": - when: - os: windows store: steam steam: id: 693670 -'Momento Temporis: Light from the Deep': +"Momento Temporis: Light from the Deep": installDir: Momento Temporis: {} launch: - /Momento Temporis.app/Contents/MacOS/love: - - arguments: '--steam' + "/Momento Temporis.app/Contents/MacOS/love": + - arguments: "--steam" when: - os: mac store: steam - /Momento Temporis.exe: - - arguments: '--steam' + "/Momento Temporis.exe": + - arguments: "--steam" when: - os: windows store: steam @@ -342742,7 +343721,7 @@ Momentum: installDir: Momentum: {} launch: - /Momentum_Steam.exe: + "/Momentum_Steam.exe": - when: - os: windows store: steam @@ -342755,16 +343734,16 @@ Mommy: installDir: Mommy: {} launch: - /Mommy.exe: + "/Mommy.exe": - when: - store: steam steam: id: 1204220 -'Momo Mother Bird: Final Story': +"Momo Mother Bird: Final Story": installDir: Momo Mother Bird Final Story: {} launch: - /Momo Is Here 2.exe: + "/Momo Is Here 2.exe": - when: - os: windows store: steam @@ -342772,36 +343751,36 @@ Mommy: id: 2067000 Momodora I: files: - /data/saves: + "/data/saves": tags: - save when: - os: windows - /momo.config.ini: + "/momo.config.ini": tags: - config when: - os: windows Momodora II: files: - /data/saves: + "/data/saves": tags: - save when: - os: windows - /momo.config.ini: + "/momo.config.ini": tags: - config when: - os: windows Momodora III: files: - /data/saves: + "/data/saves": tags: - save when: - os: windows - /momo.config.ini: + "/momo.config.ini": tags: - config when: @@ -342809,42 +343788,42 @@ Momodora III: installDir: Momodora III: {} launch: - /Momodora3.exe: + "/Momodora3.exe": - when: - os: windows store: steam steam: id: 302790 -'Momodora: Reverie under the Moonlight': +"Momodora: Reverie under the Moonlight": files: - /MomodoraRUtM/config.ini: + "/MomodoraRUtM/config.ini": tags: - config when: - os: windows - /MomodoraRUtM/slot*.sav: + "/MomodoraRUtM/slot*.sav": tags: - save when: - os: windows - /Packages/53E4EFE6.Momodora_153j13zhvfy8w/LocalState/config.ini: + "/Packages/53E4EFE6.Momodora_153j13zhvfy8w/LocalState/config.ini": tags: - config when: - os: windows store: microsoft - /Packages/53E4EFE6.Momodora_153j13zhvfy8w/LocalState/slot*.sav: + "/Packages/53E4EFE6.Momodora_153j13zhvfy8w/LocalState/slot*.sav": tags: - save when: - os: windows store: microsoft - /MomodoraRUtM: + "/MomodoraRUtM": tags: - save when: - os: linux - /MomodoraRUtM/config.ini: + "/MomodoraRUtM/config.ini": tags: - config when: @@ -342854,16 +343833,16 @@ Momodora III: installDir: Momodora RUtM: {} launch: - /MomodoraRUtM.app: + "/MomodoraRUtM.app": - when: - os: mac store: steam - /MomodoraRUtM.exe: + "/MomodoraRUtM.exe": - when: - os: windows store: steam - /MomodoraRUtM.out: - - arguments: export LC_NUMERIC=\"en_US.UTF-8\"; %command% + "/MomodoraRUtM.out": + - arguments: "export LC_NUMERIC=\\\"en_US.UTF-8\\\"; %command%" when: - os: linux store: steam @@ -342873,7 +343852,7 @@ Momoiro Closet: installDir: Momoiro Closet: {} launch: - /moroclo.exe: + "/moroclo.exe": - when: - store: steam steam: @@ -342882,21 +343861,21 @@ Momonga Pinball Adventures: installDir: Momonga Pinball Adventures: {} launch: - /MomongaPinballAdventures.app: + "/MomongaPinballAdventures.app": - when: - os: mac store: steam - /MomongaPinballAdventures.exe: + "/MomongaPinballAdventures.exe": - when: - os: windows store: steam steam: id: 491560 -'Mompreneur: Pizza Cooking Life Sim': +"Mompreneur: Pizza Cooking Life Sim": installDir: Mompreneur Pizza Cooking Life Sim: {} launch: - /Mompreneur.exe: + "/Mompreneur.exe": - when: - bit: 64 os: windows @@ -342907,34 +343886,34 @@ MonGirlTile: installDir: MonGirlTile: {} launch: - /MonGirlPC.exe: + "/MonGirlPC.exe": - when: - bit: 64 os: windows store: steam steam: id: 964110 -'Monaco: What''s Yours Is Mine': +"Monaco: What's Yours Is Mine": files: - /SAVEDATA: + "/SAVEDATA": tags: - config - save when: - os: windows - /Library/Application Support/Pocketwatch Games/Monaco/SAVEDATA: + "/Library/Application Support/Pocketwatch Games/Monaco/SAVEDATA": tags: - config - save when: - os: mac - /userdata//113020/remote: + "/userdata//113020/remote": tags: - config - save when: - store: steam - /Pocketwatch Games/Monaco/SAVEDATA: + "/Pocketwatch Games/Monaco/SAVEDATA": tags: - config - save @@ -342943,15 +343922,15 @@ MonGirlTile: installDir: Monaco: {} launch: - /Monaco.app: + "/Monaco.app": - when: - os: mac store: steam - /Monaco.bin.x86: + "/Monaco.bin.x86": - when: - os: linux store: steam - /Monaco.exe: + "/Monaco.exe": - when: - os: windows store: steam @@ -342961,11 +343940,11 @@ Monads: installDir: Monads: {} launch: - /Monads.app/Contents/MacOS/Monads: + "/Monads.app/Contents/MacOS/Monads": - when: - os: mac store: steam - /Monads.exe: + "/Monads.exe": - when: - os: windows store: steam @@ -342975,7 +343954,7 @@ Monarch of Greed - Act 1: installDir: Monarch of Greed - Act 1: {} launch: - /Monarch of Greed Act 1.exe: + "/Monarch of Greed Act 1.exe": - when: - os: windows store: steam @@ -342983,7 +343962,7 @@ Monarch of Greed - Act 1: id: 746220 Monark: files: - /Saved Games/MONARK/SAVELOAD: + "/Saved Games/MONARK/SAVELOAD": tags: - config - save @@ -342997,7 +343976,7 @@ Monark: installDir: MONARK: {} launch: - /MONARK.exe: + "/MONARK.exe": - when: - os: windows store: steam @@ -343005,12 +343984,12 @@ Monark: id: 1539620 Moncage: files: - /AppData/LocalLow/Optillusion/Moncage/Moncage*Data.es3: + "/AppData/LocalLow/Optillusion/Moncage/Moncage*Data.es3": tags: - save when: - os: windows - /AppData/LocalLow/Optillusion/Moncage/MoncageConfig.es3: + "/AppData/LocalLow/Optillusion/Moncage/MoncageConfig.es3": tags: - config when: @@ -343018,7 +343997,7 @@ Moncage: installDir: Moncage: {} launch: - /Moncage.exe: + "/Moncage.exe": - when: - os: windows store: steam @@ -343030,7 +344009,7 @@ Moncage: id: 1195290 Monday Night Combat: files: - /My Games/UnrealEngine3/HostileGame/Config: + "/My Games/UnrealEngine3/HostileGame/Config": tags: - config when: @@ -343038,7 +344017,7 @@ Monday Night Combat: installDir: Monday Night Combat: {} launch: - /binaries/win32/mnc.exe: + "/binaries/win32/mnc.exe": - when: - store: steam steam: @@ -343053,19 +344032,19 @@ Mondealy: installDir: Mondealy: {} launch: - /Mondealy.exe: + "/Mondealy.exe": - when: - bit: 64 os: windows store: steam - /Mondealy_Full: + "/Mondealy_Full": - when: - bit: 64 os: linux store: steam steam: id: 1620520 -'Mondly: Learn Languages in VR': +"Mondly: Learn Languages in VR": installDir: Mondly Learn Languages in VR: {} steam: @@ -343075,7 +344054,7 @@ Mondo Museum: id: 1093820 Mondrian - Abstraction in Beauty: files: - /mondriansettings: + "/mondriansettings": tags: - config when: @@ -343083,7 +344062,7 @@ Mondrian - Abstraction in Beauty: installDir: Mondrian - Abstraction in Beauty: {} launch: - /mondrian.exe: + "/mondrian.exe": - when: - os: windows store: steam @@ -343093,7 +344072,7 @@ Mondrian - Plastic Reality: installDir: Mondrian - Plastic Reality: {} launch: - /mondrianPR.exe: + "/mondrianPR.exe": - when: - store: steam steam: @@ -343107,7 +344086,7 @@ Money Maker: installDir: Money Maker: {} launch: - /MMLauncher.exe: + "/MMLauncher.exe": - when: - os: windows store: steam @@ -343117,26 +344096,30 @@ Money Makes Money: installDir: Money Makes Money: {} launch: - /Money Makes Money.app: + "/Money Makes Money.app": - when: - os: mac store: steam - /moneygame_en32.exe: + "/moneygame_en32.exe": - when: + - os: windows + store: steam - bit: 32 os: windows store: steam - /moneygame_en32.x86: + "/moneygame_en32.x86": - when: + - os: linux + store: steam - bit: 32 os: linux store: steam - /moneygame_en64.exe: + "/moneygame_en64.exe": - when: - bit: 64 os: windows store: steam - /moneygame_en64.x86_64: + "/moneygame_en64.x86_64": - when: - bit: 64 os: linux @@ -343147,7 +344130,7 @@ Money Master: installDir: Money Master: {} launch: - /gold.exe: + "/gold.exe": - when: - store: steam steam: @@ -343156,7 +344139,7 @@ Mongrel: installDir: Mongrel: {} launch: - /Mongrel: + "/Mongrel": - when: - os: windows store: steam @@ -343166,21 +344149,21 @@ Monica e a Guarda dos Coelhos: installDir: MGC: {} launch: - /game.app/Contents/MacOS/game: + "/game.app/Contents/MacOS/game": - when: - os: mac store: steam - /game.exe: + "/game.exe": - when: - os: windows store: steam steam: id: 925900 -'Monitor: The Game': +"Monitor: The Game": installDir: MONITOR The Game: {} launch: - /MonitorGame.exe: + "/MonitorGame.exe": - when: - bit: 64 os: windows @@ -343191,16 +344174,16 @@ Monjarmageddon: installDir: Monjarmageddon: {} launch: - /Monjarmageddon.app: + "/Monjarmageddon.app": - when: - os: mac store: steam - /Monjarmageddon.exe: + "/Monjarmageddon.exe": - when: - bit: 64 os: windows store: steam - /Monjarmageddon.x86_64: + "/Monjarmageddon.x86_64": - when: - bit: 64 os: linux @@ -343211,7 +344194,7 @@ Monkey Barrels: installDir: Monkey Barrels: {} launch: - /mb.exe: + "/mb.exe": - when: - os: windows store: steam @@ -343221,25 +344204,25 @@ Monkey GO Happy: installDir: Monkey GO Happy: {} launch: - /MonkeyGOHappySteam.exe: + "/MonkeyGOHappySteam.exe": - when: - os: windows store: steam steam: id: 1192940 -'Monkey Island 2 Special Edition: LeChuck''s Revenge': +"Monkey Island 2 Special Edition: LeChuck's Revenge": files: - /monkey2.bin: + "/monkey2.bin": tags: - save when: - os: windows - /userdata//32460: + "/userdata//32460": tags: - save when: - store: steam - /LucasArts/Monkey Island 2 Special Edition: + "/LucasArts/Monkey Island 2 Special Edition": tags: - config when: @@ -343249,14 +344232,14 @@ Monkey GO Happy: installDir: Monkey2: {} launch: - /Monkey2.exe: + "/Monkey2.exe": - when: - store: steam steam: id: 32460 -'Monkey Island 2: LeChuck''s Revenge': +"Monkey Island 2: LeChuck's Revenge": files: - /SAVEGAME.***: + "/SAVEGAME.***": tags: - save when: @@ -343265,21 +344248,21 @@ Monkey King Saga: installDir: Monkey King Saga: {} launch: - /MKTD_PC.exe: - - arguments: '-windowed' + "/MKTD_PC.exe": + - arguments: "-windowed" when: - os: windows store: steam steam: id: 417350 -'Monkey King: Hero Is Back': +"Monkey King: Hero Is Back": files: - /Nirvana/Saved/SaveGames/NirvanaConfig.sav: + "/Nirvana/Saved/SaveGames/NirvanaConfig.sav": tags: - config when: - os: windows - /Nirvana/Saved/SaveGames/SaveGameSlotName.sav: + "/Nirvana/Saved/SaveGames/SaveGameSlotName.sav": tags: - save when: @@ -343287,16 +344270,16 @@ Monkey King Saga: installDir: MonkeyKing: {} launch: - /Nirvana.exe: + "/Nirvana.exe": - when: - bit: 64 os: windows store: steam steam: id: 967240 -'Monkey King: Master of the Clouds': +"Monkey King: Master of the Clouds": files: - /AppData/LocalLow/DefaultCompany/chuka: + "/AppData/LocalLow/DefaultCompany/chuka": tags: - config - save @@ -343307,17 +344290,17 @@ Monkey King Saga: installDir: Monkey King: {} launch: - /MonkeyKing Master of the Clouds.exe: + "/MonkeyKing Master of the Clouds.exe": - when: - os: windows store: steam steam: id: 816630 -'Monkey Land 3D: Reaper Rush': +"Monkey Land 3D: Reaper Rush": installDir: Monkey Land 3D Reaper Rush: {} launch: - /ReaperRush.exe: + "/ReaperRush.exe": - when: - os: windows store: steam @@ -343327,20 +344310,20 @@ Monkey Rush: installDir: Monkey Rush: {} launch: - /MonkeyRush.app: + "/MonkeyRush.app": - when: - os: mac store: steam - /MonkeyRush.exe: + "/MonkeyRush.exe": - when: - os: windows store: steam - /MonkeyRush.x86: + "/MonkeyRush.x86": - when: - bit: 32 os: linux store: steam - /MonkeyRush.x86_64: + "/MonkeyRush.x86_64": - when: - bit: 64 os: linux @@ -343351,7 +344334,7 @@ Monkey Slap: installDir: MonkeySlap: {} launch: - /MonkeySlap.exe: + "/MonkeySlap.exe": - when: - store: steam steam: @@ -343360,19 +344343,19 @@ Monkey Tales: installDir: Monkey Tales: {} launch: - /Monkey Tales.app: + "/Monkey Tales.app": - when: - os: mac store: steam - /Monkey Tales.exe: + "/Monkey Tales.exe": - when: - os: windows store: steam steam: id: 320020 -Monkey's Adventures: +"Monkey's Adventures": files: - /*.sav: + "/*.sav": tags: - save when: @@ -343386,7 +344369,7 @@ Monkeys & Dragons: installDir: Monkeys & Dragons: {} launch: - /Monkeys & Dragons.exe: + "/Monkeys & Dragons.exe": - when: - os: windows store: steam @@ -343396,11 +344379,11 @@ Monkeys Ahoy: installDir: Monkeys Ahoy: {} launch: - /monkeyAhoy.app: + "/monkeyAhoy.app": - when: - os: mac store: steam - /monkeyAhoy.exe: + "/monkeyAhoy.exe": - when: - os: windows store: steam @@ -343410,7 +344393,7 @@ Monktastic: installDir: Monktastic: {} launch: - /Monktastic.exe: + "/Monktastic.exe": - when: - os: windows store: steam @@ -343418,12 +344401,12 @@ Monktastic: id: 790550 Monmusu: files: - /LocalLow/Tentacle Games/Monmusu: + "/LocalLow/Tentacle Games/Monmusu": tags: - config when: - os: windows - /LocalLow/Tentacle Games/Monmusu/: + "/LocalLow/Tentacle Games/Monmusu/": tags: - save when: @@ -343431,7 +344414,7 @@ Monmusu: installDir: MONMUSU: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -343441,7 +344424,7 @@ Monmusu * Fight!: installDir: MONMUSU FIGHT!: {} launch: - /monmusu_fight_allages.exe: + "/monmusu_fight_allages.exe": - when: - os: windows store: steam @@ -343451,7 +344434,7 @@ Mono: installDir: Mono: {} launch: - /Mono.exe: + "/Mono.exe": - when: - bit: 64 os: windows @@ -343465,7 +344448,7 @@ Monoa City Parking: installDir: Monoa City Parking: {} launch: - /MonoaCityParking.exe: + "/MonoaCityParking.exe": - when: - bit: 64 os: windows @@ -343476,20 +344459,20 @@ Monobeno: installDir: monobeno: {} launch: - /monobeno.exe: + "/monobeno.exe": - when: - os: windows store: steam steam: id: 758090 -'Monobeno: Happy End': +"Monobeno: Happy End": steam: id: 782090 -'Monobeno: Happy End Deluxe': +"Monobeno: Happy End Deluxe": installDir: monohe: {} launch: - /monohe.exe: + "/monohe.exe": - when: - store: steam steam: @@ -343498,15 +344481,15 @@ Monochroma: installDir: Monochroma: {} launch: - /Monochroma.app: + "/Monochroma.app": - when: - os: mac store: steam - /Monochroma.exe: + "/Monochroma.exe": - when: - os: windows store: steam - /Monochroma.x86: + "/Monochroma.x86": - arguments: LC_ALL=C %command% when: - os: linux @@ -343521,17 +344504,17 @@ Monochromaniacs: installDir: Monochromaniacs: {} launch: - /Monochromaniacs.exe: + "/Monochromaniacs.exe": - when: - os: windows store: steam steam: id: 826300 -'Monochrome Mobius: Rights and Wrongs Forgotten': +"Monochrome Mobius: Rights and Wrongs Forgotten": installDir: MonochromeMobius Rights and Wrongs Forgotten: {} launch: - /MonochromeMobius Rights and Wrongs Forgotten.exe: + "/MonochromeMobius Rights and Wrongs Forgotten.exe": - when: - os: windows store: steam @@ -343541,7 +344524,7 @@ Monochrome Order: installDir: Monochrome Order: {} launch: - /MonochromeOrder.exe: + "/MonochromeOrder.exe": - when: - store: steam steam: @@ -343550,29 +344533,29 @@ Monomino: installDir: Monomino: {} launch: - /Monomino.exe: + "/Monomino.exe": - when: - store: steam steam: id: 303710 Monomyth: files: - /ProjectAriath/Saved/Config/WindowsNoEditor/GameUserSettings.ini: + "/ProjectAriath/Saved/Config/WindowsNoEditor/GameUserSettings.ini": tags: - config when: - os: windows - /ProjectAriath/Saved/SaveGames: + "/ProjectAriath/Saved/SaveGames": tags: - save when: - os: windows - /Monomyth/Saved/Config/WindowsNoEditor/GameUserSettings.ini: + "/Monomyth/Saved/Config/WindowsNoEditor/GameUserSettings.ini": tags: - config when: - os: windows - /Monomyth/Saved/SaveGames: + "/Monomyth/Saved/SaveGames": tags: - save when: @@ -343583,18 +344566,18 @@ Monophobia: installDir: Monophobia: {} launch: - /Monophobia.exe: + "/Monophobia.exe": - when: - bit: 64 os: windows store: steam steam: id: 1169030 -'Monopolist: Technological Revolution': +"Monopolist: Technological Revolution": installDir: Monopolist Technological Revolution: {} launch: - /Monopolist Technological Revolution.exe: + "/Monopolist Technological Revolution.exe": - when: - os: windows store: steam @@ -343604,7 +344587,7 @@ Monopolka: installDir: Monopolka: {} launch: - /Monopolka.exe: + "/Monopolka.exe": - when: - os: windows store: steam @@ -343612,12 +344595,12 @@ Monopolka: id: 699680 Monopoly (1995): files: - /*.MNO: + "/*.MNO": tags: - save when: - os: windows - /MONOPOLY.INI: + "/MONOPOLY.INI": tags: - config when: @@ -343626,7 +344609,7 @@ Monopoly (2012): installDir: Monopoly: {} launch: - /monopolywin.exe: + "/monopolywin.exe": - when: - store: steam steam: @@ -343640,23 +344623,23 @@ Monopoly Deluxe: - os: windows Monopoly Plus: files: - /setup.cfg: + "/setup.cfg": tags: - config when: - os: windows - /savegames//3774: + "/savegames//3774": tags: - save when: - os: windows store: uplay - /savegames//3775: + "/savegames//3775": tags: - save when: - - store: uplay - /Monopoly Plus: + - store: steam + "/Monopoly Plus": tags: - config when: @@ -343664,8 +344647,8 @@ Monopoly Plus: installDir: Monopoly Plus: {} launch: - /Monopoly.exe: - - arguments: '-uplay_steam_mode' + "/Monopoly.exe": + - arguments: "-uplay_steam_mode" when: - os: windows store: steam @@ -343673,7 +344656,7 @@ Monopoly Plus: id: 562810 Monopoly Tycoon: files: - /profiles: + "/profiles": tags: - save when: @@ -343682,17 +344665,17 @@ Monovert DX: installDir: Monovert DX: {} launch: - /Monovert DX.exe: + "/Monovert DX.exe": - when: - os: windows store: steam steam: id: 1033130 -'Monowars: Red Zone': +"Monowars: Red Zone": installDir: MONOWARS Red Zone: {} launch: - /MONOWARS - Red Zone/MONOWARS - Red Zone.exe: + "/MONOWARS - Red Zone/MONOWARS - Red Zone.exe": - when: - store: steam steam: @@ -343702,17 +344685,17 @@ Monster Adventurer: id: 889760 Monster Bash: files: - /CONFIG.MB1: + "/CONFIG.MB1": tags: - config when: - os: dos - /SAVE*.MB1: + "/SAVE*.MB1": tags: - save when: - os: dos - /SCORE.MB1: + "/SCORE.MB1": tags: - save when: @@ -343722,22 +344705,22 @@ Monster Bash: installDir: Monster Bash: {} launch: - /Dosbox/dosbox: - - arguments: Monster Bash\\ + "/Dosbox/dosbox": + - arguments: "Monster Bash\\\\" when: - os: linux store: steam - workingDir: /Dosbox - /Monster Bash.app: + workingDir: "/Dosbox" + "/Monster Bash.app": - when: - os: mac store: steam - /Monster Bash/dosbox/dosbox.exe: - - arguments: '-conf \"..\\MBASH.conf\" -noconsole -c' + "/Monster Bash/dosbox/dosbox.exe": + - arguments: "-conf \\\"..\\\\MBASH.conf\\\" -noconsole -c" when: - os: windows store: steam - workingDir: /Monster Bash/dosbox + workingDir: "/Monster Bash/dosbox" steam: id: 358210 Monster Bash HD: @@ -343746,11 +344729,11 @@ Monster Bash HD: installDir: Monster Bash HD: {} launch: - /Monster Bash HD.exe: + "/Monster Bash HD.exe": - when: - os: windows store: steam - /MonsterBashHD.x86_64: + "/MonsterBashHD.x86_64": - when: - os: linux store: steam @@ -343760,11 +344743,11 @@ Monster Battles - Portals: installDir: Monster Battles TCG: {} launch: - /MonsterBattles.app/Contents/MacOS/MonsterBattles: + "/MonsterBattles.app/Contents/MacOS/MonsterBattles": - when: - os: mac store: steam - /MonsterBattles/MonsterBattles.exe: + "/MonsterBattles/MonsterBattles.exe": - when: - os: windows store: steam @@ -343772,12 +344755,12 @@ Monster Battles - Portals: id: 1172140 Monster Boy and the Cursed Kingdom: files: - /Monsterboy/monsterboy*.dat: + "/Monsterboy/monsterboy*.dat": tags: - save when: - os: windows - /Monsterboy/sys.dat: + "/Monsterboy/sys.dat": tags: - config when: @@ -343792,7 +344775,7 @@ Monster Capture King: installDir: Monster Capture King: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -343802,11 +344785,11 @@ Monster Castle: installDir: Monster Castle: {} launch: - /mc.app: + "/mc.app": - when: - os: mac store: steam - /mc.exe: + "/mc.exe": - when: - bit: 64 os: windows @@ -343820,16 +344803,16 @@ Monster Challenge Circus: installDir: Monster Challenge Circus: {} launch: - /dehon.exe: + "/dehon.exe": - when: - store: steam steam: id: 300910 -'Monster Clicker : Idle Halloween Strategy': +"Monster Clicker : Idle Halloween Strategy": installDir: Monster Clicker Idle Halloween Strategy: {} launch: - /MonsterClicker.exe: + "/MonsterClicker.exe": - when: - os: windows store: steam @@ -343837,7 +344820,7 @@ Monster Challenge Circus: id: 948510 Monster Crown: files: - /AppData/LocalLow/Studio Aurum/Monster Crown/Resources/Saves: + "/AppData/LocalLow/Studio Aurum/Monster Crown/Resources/Saves": tags: - save when: @@ -343845,15 +344828,15 @@ Monster Crown: installDir: Monster Crown: {} launch: - /Monster Crown.exe: + "/Monster Crown.exe": - when: - os: windows store: steam - /monstercrown.app: + "/monstercrown.app": - when: - os: mac store: steam - /monstercrown.x86_64: + "/monstercrown.x86_64": - when: - os: linux store: steam @@ -343867,7 +344850,7 @@ Monster Crush - C4 Demolition Edition: installDir: Monster Crush: {} launch: - /MonsterCrush.exe: + "/MonsterCrush.exe": - when: - bit: 64 os: windows @@ -343876,12 +344859,12 @@ Monster Crush - C4 Demolition Edition: id: 1044070 Monster Energy Supercross: files: - /supercross/Saved: + "/supercross/Saved": tags: - save when: - os: windows - /supercross/Saved/Config/WindowsNoEditor: + "/supercross/Saved/Config/WindowsNoEditor": tags: - config when: @@ -343889,7 +344872,7 @@ Monster Energy Supercross: installDir: Monster Energy Supercross - The Official Videogame: {} launch: - /supercross.exe: + "/supercross.exe": - when: - bit: 64 store: steam @@ -343897,7 +344880,7 @@ Monster Energy Supercross: id: 711750 Monster Energy Supercross 2: files: - /supercross2/Saved/Config/WindowsNoEditor/GameUserSettings.ini: + "/supercross2/Saved/Config/WindowsNoEditor/GameUserSettings.ini": tags: - config when: @@ -343905,7 +344888,7 @@ Monster Energy Supercross 2: installDir: Monster Energy Supercross - The Official Videogame 2: {} launch: - /supercross2.exe: + "/supercross2.exe": - when: - bit: 64 store: steam @@ -343913,12 +344896,12 @@ Monster Energy Supercross 2: id: 882020 Monster Energy Supercross 3: files: - /supercross3/Saved/Config/WindowsNoEditor: + "/supercross3/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /supercross3/Saved/SaveGames: + "/supercross3/Saved/SaveGames": tags: - save when: @@ -343926,7 +344909,7 @@ Monster Energy Supercross 3: installDir: Monster Energy Supercross - The Official Videogame 3: {} launch: - /supercross3.exe: + "/supercross3.exe": - when: - store: steam steam: @@ -343935,7 +344918,7 @@ Monster Energy Supercross 4: installDir: Monster Energy Supercross - The Official Videogame 4: {} launch: - /supercross4.exe: + "/supercross4.exe": - when: - store: steam steam: @@ -343944,7 +344927,7 @@ Monster Energy Supercross 6: installDir: Monster Energy Supercross - The Official Videogame 6: {} launch: - /supercross6.exe: + "/supercross6.exe": - when: - store: steam steam: @@ -343953,15 +344936,15 @@ Monster Farm: installDir: Monster Farm: {} launch: - /Monster Farm.app/Contents/MacOS/Monster Farm: + "/Monster Farm.app/Contents/MacOS/Monster Farm": - when: - os: mac store: steam - /Monster Farm.exe: + "/Monster Farm.exe": - when: - os: windows store: steam - /Monster Farm.x86: + "/Monster Farm.x86": - when: - os: linux store: steam @@ -343971,11 +344954,11 @@ Monster Garden: installDir: Monster Garden: {} launch: - /Monster Garden.app: + "/Monster Garden.app": - when: - os: mac store: steam - /Monster Garden.exe: + "/Monster Garden.exe": - when: - os: windows store: steam @@ -343985,7 +344968,7 @@ Monster Girl Club Bifrost: installDir: Club Bifrost: {} launch: - /Bifrost.exe: + "/Bifrost.exe": - when: - os: windows store: steam @@ -343995,17 +344978,17 @@ Monster Girl Fantasy: installDir: Monster Girl Fantasy: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam steam: id: 1048000 -'Monster Girl Fantasy 2: Exposed': +"Monster Girl Fantasy 2: Exposed": installDir: Monster Girl Fantasy 2 Exposed: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -344015,7 +344998,7 @@ Monster Girl Garden: installDir: Monster Girl Garden: {} launch: - /MGG.exe: + "/MGG.exe": - when: - bit: 64 os: windows @@ -344026,19 +345009,19 @@ Monster Girl Incursion: installDir: Monster Girl Incursion: {} launch: - /Monster Girl Incursion.exe: + "/Monster Girl Incursion.exe": - when: - store: steam steam: id: 1434650 -'Monster Girl Island: Prologue': +"Monster Girl Island: Prologue": files: - /AppData/LocalLow/by redamz: + "/AppData/LocalLow/by redamz": tags: - save when: - os: windows - /AppData/LocalLow/by redamz/Monster Girl IslandsettingsPr.dat: + "/AppData/LocalLow/by redamz/Monster Girl IslandsettingsPr.dat": tags: - config when: @@ -344046,7 +345029,7 @@ Monster Girl Incursion: installDir: MGI Prologue: {} launch: - /MGI Prologue/MGI.exe: + "/MGI Prologue/MGI.exe": - when: - bit: 64 os: windows @@ -344061,14 +345044,14 @@ Monster Hentai: installDir: Monster Hentai: {} launch: - /MonsterHentai.exe: + "/MonsterHentai.exe": - when: - store: steam steam: id: 992820 -'Monster High: New Ghoul in School': +"Monster High: New Ghoul in School": files: - /My Games/Monster High NGIS: + "/My Games/Monster High NGIS": tags: - save when: @@ -344076,7 +345059,7 @@ Monster Hentai: installDir: Monster High New Ghoul in School: {} launch: - /MonsterHigh2.exe: + "/MonsterHigh2.exe": - when: - os: windows store: steam @@ -344084,12 +345067,12 @@ Monster Hentai: id: 396400 Monster Hunter Rise: files: - /config.ini: + "/config.ini": tags: - config when: - os: windows - /userdata//1446780/remote: + "/userdata//1446780/remote": tags: - save when: @@ -344097,26 +345080,26 @@ Monster Hunter Rise: store: steam id: steamExtra: - - 1748411 - 1641480 + - 1748411 installDir: MonsterHunterRise: {} launch: - /MonsterHunterRise.exe: + "/MonsterHunterRise.exe": - when: - bit: 64 os: windows store: steam steam: id: 1446780 -'Monster Hunter Stories 2: Wings of Ruin': +"Monster Hunter Stories 2: Wings of Ruin": files: - /config.ini: + "/config.ini": tags: - config when: - os: windows - /userdata//1277400/remote: + "/userdata//1277400/remote": tags: - save when: @@ -344125,21 +345108,21 @@ Monster Hunter Rise: installDir: Monster Hunter Stories 2: {} launch: - /game.exe: + "/game.exe": - when: - bit: 64 os: windows store: steam steam: id: 1277400 -'Monster Hunter: World': +"Monster Hunter: World": files: - /graphics_option.ini: + "/graphics_option.ini": tags: - config when: - os: windows - /userdata//582010/remote: + "/userdata//582010/remote": tags: - save when: @@ -344148,7 +345131,7 @@ Monster Hunter Rise: installDir: Monster Hunter World: {} launch: - /MonsterHunterWorld.exe: + "/MonsterHunterWorld.exe": - when: - os: windows store: steam @@ -344158,15 +345141,15 @@ Monster Hunting... For Love!: installDir: MonsterHuntingForLove: {} launch: - /MonsterHuntingForLove.app: + "/MonsterHuntingForLove.app": - when: - os: mac store: steam - /MonsterHuntingForLove.exe: + "/MonsterHuntingForLove.exe": - when: - os: windows store: steam - /MonsterHuntingForLove.sh: + "/MonsterHuntingForLove.sh": - when: - os: linux store: steam @@ -344174,7 +345157,7 @@ Monster Hunting... For Love!: id: 1029380 Monster Jam: files: - /My Games/Monster Jam: + "/My Games/Monster Jam": tags: - save when: @@ -344182,7 +345165,7 @@ Monster Jam: installDir: Monster Jam: {} launch: - /MonsterJam.exe: + "/MonsterJam.exe": - when: - store: steam registry: @@ -344195,7 +345178,7 @@ Monster Jam Battlegrounds: installDir: Monster Jam: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -344203,12 +345186,12 @@ Monster Jam Battlegrounds: id: 336250 Monster Jam Steel Titans: files: - /MJST/Saved/Config/WindowsNoEditor: + "/MJST/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /MJST/Saved/SaveGames: + "/MJST/Saved/SaveGames": tags: - save when: @@ -344218,8 +345201,8 @@ Monster Jam Steel Titans: installDir: Monster Jam Steel Titans: {} launch: - /MxNext.exe: - - arguments: '-nohmd' + "/MxNext.exe": + - arguments: "-nohmd" when: - bit: 64 os: windows @@ -344228,12 +345211,12 @@ Monster Jam Steel Titans: id: 824280 Monster Jam Steel Titans 2: files: - /MJST2/Saved/Config/WindowsNoEditor: + "/MJST2/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /MJST2/Saved/SaveGames: + "/MJST2/Saved/SaveGames": tags: - save when: @@ -344243,8 +345226,8 @@ Monster Jam Steel Titans 2: installDir: Monster Jam Steel Titans 2: {} launch: - /MJST2.exe: - - arguments: '-nohmd' + "/MJST2.exe": + - arguments: "-nohmd" when: - bit: 64 os: windows @@ -344255,11 +345238,11 @@ Monster Jaunt: installDir: Monster Jaunt: {} launch: - /MonsterJaunt.app: + "/MonsterJaunt.app": - when: - os: mac store: steam - /MonsterJaunt.exe: + "/MonsterJaunt.exe": - when: - os: windows store: steam @@ -344269,7 +345252,7 @@ Monster League: installDir: Monster League: {} launch: - /Monster_League.exe: + "/Monster_League.exe": - when: - bit: 64 os: windows @@ -344278,7 +345261,7 @@ Monster League: id: 767360 Monster Logic: files: - /mnlog.sav: + "/mnlog.sav": tags: - save when: @@ -344286,17 +345269,17 @@ Monster Logic: installDir: Monster Logic: {} launch: - /mnlog: + "/mnlog": - when: - bit: 64 os: linux store: steam - /mnlog-32: + "/mnlog-32": - when: - bit: 32 os: linux store: steam - /mnlog.exe: + "/mnlog.exe": - when: - os: windows store: steam @@ -344316,7 +345299,7 @@ Monster MIX: installDir: Monster MIX: {} launch: - /Monster MIX.exe: + "/Monster MIX.exe": - when: - os: windows store: steam @@ -344326,7 +345309,7 @@ Monster Mash: installDir: Monster Mash: {} launch: - /MonsterMash.exe: + "/MonsterMash.exe": - when: - store: steam steam: @@ -344343,11 +345326,11 @@ Monster Minis Extreme Off-Road: installDir: Monster Minis Extreme Off-Road: {} launch: - /MonsterMinis.exe: + "/MonsterMinis.exe": - when: - os: windows store: steam - /MonsterMinis.sh: + "/MonsterMinis.sh": - when: - os: linux store: steam @@ -344355,12 +345338,12 @@ Monster Minis Extreme Off-Road: id: 348570 Monster Monpiece: files: - /userdata//415300/remote: + "/userdata//415300/remote": tags: - save when: - store: steam - /userdata//415300/remote/MonsterMonpiece.ini: + "/userdata//415300/remote/MonsterMonpiece.ini": tags: - config when: @@ -344368,7 +345351,7 @@ Monster Monpiece: installDir: Monster Monpiece: {} launch: - /MonsterMonpiece.exe: + "/MonsterMonpiece.exe": - when: - os: windows store: steam @@ -344376,7 +345359,7 @@ Monster Monpiece: id: 415300 Monster Prom: files: - /UserData: + "/UserData": tags: - save when: @@ -344386,15 +345369,15 @@ Monster Prom: installDir: Monster Prom: {} launch: - /MonsterProm.app: + "/MonsterProm.app": - when: - os: mac store: steam - /MonsterProm.exe: + "/MonsterProm.exe": - when: - os: windows store: steam - /MonsterProm.x86: + "/MonsterProm.x86": - when: - os: linux store: steam @@ -344404,41 +345387,41 @@ Monster Prom: - config steam: id: 743450 -'Monster Prom 2: Monster Camp': +"Monster Prom 2: Monster Camp": gog: id: 1607286183 installDir: Monster Prom 2 - Monster Camp: {} launch: - /MonsterCamp.app: + "/MonsterCamp.app": - when: - os: mac store: steam - /MonsterCamp.exe: + "/MonsterCamp.exe": - when: - os: windows store: steam - /MonsterCamp.x86_64: + "/MonsterCamp.x86_64": - when: - os: linux store: steam steam: id: 1140270 -'Monster Prom 3: Monster Roadtrip': +"Monster Prom 3: Monster Roadtrip": gog: id: 1553602216 installDir: Monster Prom 3 - Monster Roadtrip: {} launch: - /MonsterRoadtrip.app: + "/MonsterRoadtrip.app": - when: - os: mac store: steam - /MonsterRoadtrip.exe: + "/MonsterRoadtrip.exe": - when: - os: windows store: steam - /MonsterRoadtrip.x86_64: + "/MonsterRoadtrip.x86_64": - when: - os: linux store: steam @@ -344453,20 +345436,20 @@ Monster Puzzle: installDir: Monster Puzzle: {} launch: - /Monster Puzzle.app: + "/Monster Puzzle.app": - when: - os: mac store: steam - /Monster Puzzle.exe: + "/Monster Puzzle.exe": - when: - os: windows store: steam - /Monster Puzzle.x86: + "/Monster Puzzle.x86": - when: - bit: 32 os: linux store: steam - /Monster Puzzle.x86_64: + "/Monster Puzzle.x86_64": - when: - bit: 64 os: linux @@ -344477,15 +345460,15 @@ Monster RPG 2: installDir: Monster RPG 2: {} launch: - /Monster RPG 2.app/Contents/MacOS/Monster RPG 2: + "/Monster RPG 2.app/Contents/MacOS/Monster RPG 2": - when: - os: mac store: steam - /MonsterRPG2: + "/MonsterRPG2": - when: - os: linux store: steam - /MonsterRPG2.exe: + "/MonsterRPG2.exe": - when: - os: windows store: steam @@ -344495,15 +345478,15 @@ Monster RPG 3: installDir: Monster RPG 3: {} launch: - /Monster RPG 3.app/Contents/MacOS/MonsterRPG3: + "/Monster RPG 3.app/Contents/MacOS/MonsterRPG3": - when: - os: mac store: steam - /Monster RPG 3.exe: + "/Monster RPG 3.exe": - when: - os: windows store: steam - /MonsterRPG3: + "/MonsterRPG3": - when: - bit: 32 os: linux @@ -344514,13 +345497,13 @@ Monster Racing League: installDir: Monster Racing League: {} launch: - /Monster Racing League.app: - - arguments: '-steam -multiplay' + "/Monster Racing League.app": + - arguments: "-steam -multiplay" when: - os: mac store: steam - /Monster Racing League.exe: - - arguments: '-steam -multiplay' + "/Monster Racing League.exe": + - arguments: "-steam -multiplay" when: - bit: 64 os: windows @@ -344531,7 +345514,7 @@ Monster Rancher 1 & 2 DX: installDir: mfdx: {} launch: - /Launcher/Launcher.exe: + "/Launcher/Launcher.exe": - when: - os: windows store: steam @@ -344547,12 +345530,12 @@ Monster Safari: id: 934790 Monster Sanctuary: files: - /.local/share/Monster Sanctuary: + "/.local/share/Monster Sanctuary": tags: - config when: - os: linux - /My Games/Monster Sanctuary: + "/My Games/Monster Sanctuary": tags: - save when: @@ -344560,20 +345543,20 @@ Monster Sanctuary: installDir: Monster Sanctuary: {} launch: - /Monster Sanctuary.app/Contents/MacOS/Monster Sanctuary: + "/Monster Sanctuary.app/Contents/MacOS/Monster Sanctuary": - when: - os: mac store: steam - /Monster Sanctuary.exe: + "/Monster Sanctuary.exe": - when: - os: windows store: steam - /Monster Sanctuary.x86: + "/Monster Sanctuary.x86": - when: - bit: 32 os: linux store: steam - /Monster Sanctuary.x86_64: + "/Monster Sanctuary.x86_64": - when: - bit: 64 os: linux @@ -344582,22 +345565,12 @@ Monster Sanctuary: id: 814370 Monster Slayers: files: - /Users/*/Library/Application Support/com.yoyogames.macyoyorunner: - tags: - - save - when: - - os: mac - /Users/*/Library/Application Support/com.yoyogames.macyoyorunner/settings.ini: - tags: - - config - when: - - os: mac - /Monster_Slayers_DB: + "/Monster_Slayers_DB": tags: - save when: - os: windows - /Monster_Slayers_DB/game_settings.ini: + "/Monster_Slayers_DB/game_settings.ini": tags: - config when: @@ -344605,11 +345578,11 @@ Monster Slayers: installDir: Monster Slayers: {} launch: - /Monster Slayers DB.exe: + "/Monster Slayers DB.exe": - when: - os: windows store: steam - /Monster Slayers.app: + "/Monster Slayers.app": - when: - os: mac store: steam @@ -344617,12 +345590,12 @@ Monster Slayers: id: 496620 Monster Train: files: - /AppData/LocalLow/Shiny Shoe/MonsterTrain/preferences-local.json: + "/AppData/LocalLow/Shiny Shoe/MonsterTrain/preferences-local.json": tags: - config when: - os: windows - /AppData/LocalLow/Shiny Shoe/MonsterTrain/saves: + "/AppData/LocalLow/Shiny Shoe/MonsterTrain/saves": tags: - save when: @@ -344632,7 +345605,7 @@ Monster Train: installDir: Monster Train: {} launch: - /MonsterTrain.exe: + "/MonsterTrain.exe": - when: - bit: 64 os: windows @@ -344647,7 +345620,7 @@ Monster Trampoline: installDir: Monster Trampoline: {} launch: - /Monster Trampoline.exe: + "/Monster Trampoline.exe": - when: - os: windows store: steam @@ -344660,8 +345633,8 @@ Monster Truck Championship: installDir: Monster Truck Championship: {} launch: - /MonsterTruck.exe: - - arguments: '-nohmd' + "/MonsterTruck.exe": + - arguments: "-nohmd" when: - os: windows store: steam @@ -344671,15 +345644,15 @@ Monster Truck Destruction: installDir: Monster Truck Destruction: {} launch: - /MTD.app: + "/MTD.app": - when: - os: mac store: steam - /MTD.exe: + "/MTD.exe": - when: - os: windows store: steam - /MTD.x86_64: + "/MTD.x86_64": - when: - os: linux store: steam @@ -344689,14 +345662,14 @@ Monster Truck Drive: installDir: Monster Truck Drive: {} launch: - /monster_tuck_pc.exe: + "/monster_tuck_pc.exe": - when: - store: steam steam: id: 847870 Monster Truck Fury: files: - /*.gi: + "/*.gi": tags: - config when: @@ -344707,19 +345680,19 @@ Monster Truck Fury: - config Monster Truck Madness: files: - /System: + "/System": tags: - config when: - os: windows - /tourney: + "/tourney": tags: - save when: - os: windows Monster Truck Madness 2: files: - /System: + "/System": tags: - config when: @@ -344728,11 +345701,11 @@ Monster Trucks Nitro: installDir: Monster Trucks Nitro: {} launch: - /MonsterTrucksNitro.app: + "/MonsterTrucksNitro.app": - when: - os: mac store: steam - /MonsterTrucksNitro.exe: + "/MonsterTrucksNitro.exe": - when: - os: windows store: steam @@ -344742,7 +345715,7 @@ Monster X Monster: installDir: Monster X Monster: {} launch: - /Monster X Monster.exe: + "/Monster X Monster.exe": - when: - os: windows store: steam @@ -344755,7 +345728,7 @@ Monster planet: installDir: Monster planet: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -344773,7 +345746,7 @@ Monster surprised you-ki chan: installDir: Monster surprised you-ki chan: {} launch: - /you-kichanGAME/you-kichan.exe: + "/you-kichanGAME/you-kichan.exe": - when: - os: windows store: steam @@ -344786,7 +345759,7 @@ MonsterS in Haha Island: installDir: MonsterS: {} launch: - /MonsterS.exe: + "/MonsterS.exe": - when: - os: windows store: steam @@ -344796,11 +345769,11 @@ Monstercakes: installDir: monstercakes: {} launch: - /monstercakes.exe: + "/monstercakes.exe": - when: - os: windows store: steam - /monstercakes.x86: + "/monstercakes.x86": - when: - os: linux store: steam @@ -344808,7 +345781,7 @@ Monstercakes: id: 614910 Monsteria: files: - /.Monsteria: + "/.Monsteria": tags: - save when: @@ -344816,11 +345789,11 @@ Monsteria: installDir: Monsteria: {} launch: - /Monsteria.app: + "/Monsteria.app": - when: - os: mac store: steam - /Monsteria.exe: + "/Monsteria.exe": - when: - os: windows store: steam @@ -344830,7 +345803,7 @@ Monsterland: installDir: MLAND_SVG: {} launch: - /mlandfpc.exe: + "/mlandfpc.exe": - when: - os: windows store: steam @@ -344845,7 +345818,7 @@ Monsters: installDir: Banished Monsters: {} launch: - /Banished_Monsters.exe: + "/Banished_Monsters.exe": - when: - store: steam steam: @@ -344857,7 +345830,7 @@ Monsters & Munitions: installDir: Monsters & Munitions: {} launch: - /monsters_x86.exe: + "/monsters_x86.exe": - when: - os: windows store: steam @@ -344867,15 +345840,15 @@ Monsters Ate My Birthday Cake: installDir: Monsters Ate My Birthday Cake: {} launch: - /MAMBC: + "/MAMBC": - when: - os: linux store: steam - /MAMBC.app: + "/MAMBC.app": - when: - os: mac store: steam - /MAMBC.exe: + "/MAMBC.exe": - when: - os: windows store: steam @@ -344885,7 +345858,7 @@ Monsters Attack: installDir: Monsters Attack: {} launch: - /Monstetrs Attack.exe: + "/Monstetrs Attack.exe": - when: - os: windows store: steam @@ -344895,17 +345868,17 @@ Monsters and Medicine: installDir: Monsters and Medicine: {} launch: - /MonstersAndMedicine.app: + "/MonstersAndMedicine.app": - when: - bit: 64 os: mac store: steam - /MonstersAndMedicine.exe: + "/MonstersAndMedicine.exe": - when: - bit: 64 os: windows store: steam - /MonstersAndMedicine.sh: + "/MonstersAndMedicine.sh": - when: - bit: 64 os: linux @@ -344916,22 +345889,22 @@ Monsters and Monocles: installDir: Monsters & Monocles: {} launch: - /Monocles.app: + "/Monocles.app": - when: - os: mac store: steam - /Monocles.exe: + "/Monocles.exe": - when: - os: windows store: steam - /Monocles.x86: - - arguments: '-force-opengl' + "/Monocles.x86": + - arguments: "-force-opengl" when: - bit: 32 os: linux store: steam - /Monocles.x86_64: - - arguments: '-force-opengl' + "/Monocles.x86_64": + - arguments: "-force-opengl" when: - bit: 64 os: linux @@ -344942,8 +345915,8 @@ Monsters of Kanji: installDir: Monsters of Kanji: {} launch: - /MOK.exe: - - arguments: '--in-process-gpu' + "/MOK.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam @@ -344953,8 +345926,8 @@ Monsters of Kanji 2: installDir: Monsters of Kanji 2: {} launch: - /MoK2.exe: - - arguments: '--in-process-gpu' + "/MoK2.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam @@ -344964,16 +345937,16 @@ Monsters of Little Haven: installDir: Monsters of Little Haven: {} launch: - /Monsters of Little Haven.exe: + "/Monsters of Little Haven.exe": - when: - os: windows store: steam - /MonstersofLittleHaven.app: + "/MonstersofLittleHaven.app": - when: - os: mac store: steam - /nw: - - arguments: '-forcecontrollerappid 1101930' + "/nw": + - arguments: "-forcecontrollerappid 1101930" when: - os: linux store: steam @@ -344983,7 +345956,7 @@ Monsters sandbox: installDir: Monsters sandbox: {} launch: - /Monsters sandbox PC.exe: + "/Monsters sandbox PC.exe": - when: - os: windows store: steam @@ -344991,7 +345964,7 @@ Monsters sandbox: id: 1098540 Monsters vs. Aliens: files: - /Activision/Activision/Monsters vs. Aliens (TM)/Save/MVA_Save.fpop: + "/Activision/Activision/Monsters vs. Aliens (TM)/Save/MVA_Save.fpop": tags: - save when: @@ -345004,94 +345977,97 @@ Monsters!: installDir: Monsters! Reborn!: {} launch: - /Monsters.app: + "/Monsters.app": - when: - os: mac store: steam - /Monsters.exe: + "/Monsters.exe": - when: - os: windows store: steam - /Monsters.x86: + "/Monsters.x86": - when: - bit: 32 os: linux store: steam + - bit: 64 + os: linux + store: steam steam: id: 336160 -Monsters' Den Chronicles: +"Monsters' Den Chronicles": installDir: - Monsters' Den Chronicles: {} + "Monsters' Den Chronicles": {} launch: - /Chronicles.exe: + "/Chronicles.exe": - when: - os: windows store: steam - /MDChronicles.app/Contents/MacOS/Chronicles: + "/MDChronicles.app/Contents/MacOS/Chronicles": - when: - os: mac store: steam steam: id: 1121720 -'Monsters'' Den: Book of Dread': +"Monsters' Den: Book of Dread": installDir: - Monsters' Den Book of Dread: {} + "Monsters' Den Book of Dread": {} launch: - /BookOfDread.exe: + "/BookOfDread.exe": - when: - os: windows store: steam steam: id: 502230 -'Monsters'' Den: Godfall': +"Monsters' Den: Godfall": installDir: - Monsters' Den Godfall: {} + "Monsters' Den Godfall": {} launch: - /godfall.app/Contents/MacOS/godfall: + "/godfall.app/Contents/MacOS/godfall": - when: - os: mac store: steam - /godfall.exe: + "/godfall.exe": - when: - os: windows store: steam steam: id: 469720 -'Monsters, Inc. Scream Team (Scare Island)': +"Monsters, Inc. Scream Team (Scare Island)": files: - /BIN/Savegame#.dat: + "/BIN/Savegame#.dat": tags: - save when: - os: windows - /BIN/config.pc: + "/BIN/config.pc": tags: - config when: - os: windows -'Monsters: Survival': +"Monsters: Survival": installDir: MONSTERSSURVIVAL: {} launch: - /windows_content/SURVIVAL.exe: + "/windows_content/SURVIVAL.exe": - when: - os: windows store: steam steam: id: 1025870 -'MonsterxMan: Inheritence To Lust': +"MonsterxMan: Inheritence To Lust": installDir: MonsterxMan Inheritance To Lust: {} launch: - /MonsterxMan: + "/MonsterxMan": - when: - os: linux store: steam - /MonsterxMan.app: + "/MonsterxMan.app": - when: - os: mac store: steam - /MonsterxMan.exe: + "/MonsterxMan.exe": - when: - os: windows store: steam @@ -345101,7 +346077,7 @@ Monsti: installDir: Monsti: {} launch: - /PTPlayer.exe: + "/PTPlayer.exe": - when: - os: windows store: steam @@ -345110,15 +346086,15 @@ Monsti: Monstress Academy: steam: id: 788780 -'Monstro: Battle Tactics': +"Monstro: Battle Tactics": installDir: Monstro Battle Tactics: {} launch: - /Monstro Battle Tactics.exe: + "/Monstro Battle Tactics.exe": - when: - os: windows store: steam - /Monstro.app: + "/Monstro.app": - when: - os: mac store: steam @@ -345128,15 +346104,15 @@ Monstrous: installDir: Monstrous: {} launch: - /btm.app/Contents/MacOS/btm: + "/btm.app/Contents/MacOS/btm": - when: - os: mac store: steam - /btm.exe: + "/btm.exe": - when: - os: windows store: steam - /btm.x86_64: + "/btm.x86_64": - when: - bit: 64 os: linux @@ -345154,24 +346130,24 @@ Monstrum: installDir: Monstrum: {} launch: - /Monstrum.app: + "/Monstrum.app": - when: - os: mac store: steam - /Monstrum.exe: - - arguments: '-force-d3d9' + "/Monstrum.exe": + - arguments: "-force-d3d9" when: - os: windows store: steam - when: - os: windows store: steam - /Monstrum.x86: + "/Monstrum.x86": - when: - bit: 32 os: linux store: steam - /Monstrum.x86_64: + "/Monstrum.x86_64": - when: - bit: 64 os: linux @@ -345187,7 +346163,7 @@ Monstrum 2: installDir: Monstrum 2: {} launch: - /Monstrum 2 Launcher.exe: + "/Monstrum 2 Launcher.exe": - when: - bit: 64 os: windows @@ -345198,7 +346174,7 @@ Monstrüous: installDir: Monstrüous: {} launch: - /Monstruous.exe: + "/Monstruous.exe": - when: - os: windows store: steam @@ -345207,20 +346183,20 @@ Monstrüous: MontaSayer: steam: id: 586400 -Montague's Mount: +"Montague's Mount": files: - /.config/unity3d/PolyPusherStudios/MontaguesMount: + "/.config/unity3d/PolyPusherStudios/MontaguesMount": tags: - config - save when: - os: linux - /AppData/LocalLow/PolyPusherStudios/MontaguesMount: + "/AppData/LocalLow/PolyPusherStudios/MontaguesMount": tags: - save when: - os: windows - /userdata//258950: + "/userdata//258950": tags: - save when: @@ -345228,25 +346204,25 @@ Montague's Mount: gog: id: 1207659853 installDir: - Montague's Mount: {} + "Montague's Mount": {} launch: - /MontaguesMount.app/Contents/MacOS/MontaguesMount: + "/MontaguesMount.app/Contents/MacOS/MontaguesMount": - when: - os: mac store: steam - /MontaguesMount.exe: + "/MontaguesMount.exe": - when: - os: windows store: steam - /MontaguesMount.x86: + "/MontaguesMount.x86": - when: - os: linux store: steam - /_OculusRift/MontaguesMount_v0_9_1_Oculus.exe: + "/_OculusRift/MontaguesMount_v0_9_1_Oculus.exe": - when: - os: windows store: steam - workingDir: /_OculusRift + workingDir: "/_OculusRift" registry: HKEY_CURRENT_USER/Software/PolyPusherStudios/MontaguesMount: tags: @@ -345255,7 +346231,7 @@ Montague's Mount: id: 258950 Montaro: files: - /Montaro/User Data: + "/Montaro/User Data": tags: - config - save @@ -345264,19 +346240,25 @@ Montaro: installDir: Montaro: {} launch: - /nw.exe: + "/nw.exe": - when: - bit: 32 os: windows store: steam + - bit: 64 + os: windows + store: steam steam: id: 495890 Montaro RE: installDir: Montaro RE: {} launch: - /Montaro RE.exe: + "/Montaro RE.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam @@ -345286,21 +346268,21 @@ Montas: installDir: Montas: {} launch: - /Binaries/Win32/UDK.exe: + "/Binaries/Win32/UDK.exe": - when: - os: windows store: steam - /Montas.app/Contents/MacOS/UDKGame: + "/Montas.app/Contents/MacOS/UDKGame": - when: - os: mac store: steam steam: id: 269350 -'MonteCrypto: The Bitcoin Enigma': +"MonteCrypto: The Bitcoin Enigma": installDir: MonteCrypto: {} launch: - /CryptoChallenge.exe: + "/CryptoChallenge.exe": - when: - bit: 64 os: windows @@ -345314,7 +346296,7 @@ MonteCube Dodge: id: 1063060 Montero: files: - /Montaro/User Data/Default/Local Storage: + "/Montaro/User Data/Default/Local Storage": tags: - config - save @@ -345323,34 +346305,34 @@ Montero: installDir: Montero: {} launch: - /Montero.exe: + "/Montero.exe": - when: - os: windows store: steam steam: id: 795910 -Montezuma's Return!: +"Montezuma's Return!": files: - /.plr: + "/.plr": tags: - save when: - os: windows - /Monte.cfg: + "/Monte.cfg": tags: - config when: - os: windows - /player.lst: + "/player.lst": tags: - save when: - os: windows -Montezuma's Revenge: +"Montezuma's Revenge": installDir: Montezuma: {} launch: - /SteamBin/exe/MonteX34.exe: + "/SteamBin/exe/MonteX34.exe": - when: - os: windows store: steam @@ -345358,19 +346340,19 @@ Montezuma's Revenge: id: 1421120 Monty Python & the Quest for the Holy Grail: files: - /7THLEVEL.INI: + "/7THLEVEL.INI": tags: - save when: - os: windows -Monty Python's Complete Waste of Time: +"Monty Python's Complete Waste of Time": files: - /7THLEVEL.***: + "/7THLEVEL.***": tags: - save when: - os: windows - /7THLEVEL.INI: + "/7THLEVEL.INI": tags: - save when: @@ -345379,15 +346361,15 @@ Monument: installDir: Monument: {} launch: - /Monument.app: + "/Monument.app": - when: - os: mac store: steam - /Monument.exe: + "/Monument.exe": - when: - os: windows store: steam - /MonumentLinux_x86_64.x86_64: + "/MonumentLinux_x86_64.x86_64": - when: - os: linux store: steam @@ -345397,19 +346379,19 @@ Monument Builders - Alcatraz: installDir: Monument Builders Alcatraz: {} launch: - /Alcatraz.app: + "/Alcatraz.app": - when: - os: mac store: steam - /Alcatraz.exe: + "/Alcatraz.exe": - when: - os: windows store: steam steam: id: 326130 -'Monument Valley 2: Panoramic Edition': +"Monument Valley 2: Panoramic Edition": files: - /AppData/LocalLow/ustwo games/Monument Valley 2/UserData_: + "/AppData/LocalLow/ustwo games/Monument Valley 2/UserData_": tags: - save when: @@ -345417,13 +346399,13 @@ Monument Builders - Alcatraz: installDir: Monument Valley 2: {} launch: - /Monument Valley 2.app: - - arguments: '-screen-fullscreen 1' + "/Monument Valley 2.app": + - arguments: "-screen-fullscreen 1" when: - os: mac store: steam - /Monument Valley 2.exe: - - arguments: '-screen-fullscreen 1' + "/Monument Valley 2.exe": + - arguments: "-screen-fullscreen 1" when: - bit: 64 os: windows @@ -345434,9 +346416,9 @@ Monument Builders - Alcatraz: - config steam: id: 1927740 -'Monument Valley: Panoramic Edition': +"Monument Valley: Panoramic Edition": files: - /AppData/LocalLow/ustwo games/Monument Valley/UserData_/user_data.sav: + "/AppData/LocalLow/ustwo games/Monument Valley/UserData_/user_data.sav": tags: - save when: @@ -345444,13 +346426,13 @@ Monument Builders - Alcatraz: installDir: Monument Valley: {} launch: - /Monument Valley.app: - - arguments: '-screen-fullscreen 1' + "/Monument Valley.app": + - arguments: "-screen-fullscreen 1" when: - os: mac store: steam - /Monument Valley.exe: - - arguments: '-screen-fullscreen 1' + "/Monument Valley.exe": + - arguments: "-screen-fullscreen 1" when: - bit: 64 os: windows @@ -345461,28 +346443,28 @@ Monumental: installDir: Monumental: {} launch: - /Monumental.app: + "/Monumental.app": - when: - os: mac store: steam - /Monumental.x86: - - arguments: '-force-opengl' + "/Monumental.x86": + - arguments: "-force-opengl" when: - bit: 32 os: linux store: steam - /Monumental.x86_64: - - arguments: '-force-opengl' + "/Monumental.x86_64": + - arguments: "-force-opengl" when: - bit: 64 os: linux store: steam - /Monumental_x64.exe: + "/Monumental_x64.exe": - when: - bit: 64 os: windows store: steam - /Monumental_x86.exe: + "/Monumental_x86.exe": - when: - bit: 32 os: windows @@ -345493,26 +346475,26 @@ Monumental Failure: installDir: Monumental Failure: {} launch: - /MonumentalFailureLinux.x86: + "/MonumentalFailureLinux.x86": - when: - bit: 32 os: linux store: steam - /MonumentalFailureLinux.x86_64: + "/MonumentalFailureLinux.x86_64": - when: - bit: 64 os: linux store: steam - /MonumentalFailureMac.app/Contents/MacOS/MonumentalFailureMac: + "/MonumentalFailureMac.app/Contents/MacOS/MonumentalFailureMac": - when: - os: mac store: steam - /MonumentalFailureWin32.exe: + "/MonumentalFailureWin32.exe": - when: - bit: 32 os: windows store: steam - /MonumentalFailureWin64.exe: + "/MonumentalFailureWin64.exe": - when: - bit: 64 os: windows @@ -345521,17 +346503,17 @@ Monumental Failure: id: 573300 Monuments of Mars: files: - /MARS*.KBD: + "/MARS*.KBD": tags: - config when: - os: dos - /MARS1.HS: + "/MARS1.HS": tags: - save when: - os: dos - /MARS1.SV*: + "/MARS1.SV*": tags: - save when: @@ -345539,29 +346521,29 @@ Monuments of Mars: installDir: Monuments of Mars: {} launch: - /Dosbox/dosbox: - - arguments: '-conf \"..\\MARS.conf\" -noconsole -c' + "/Dosbox/dosbox": + - arguments: "-conf \\\"..\\\\MARS.conf\\\" -noconsole -c" when: - os: linux store: steam - workingDir: /Dosbox - /Monuments of Mars.app: + workingDir: "/Dosbox" + "/Monuments of Mars.app": - when: - os: mac store: steam - /Monuments of Mars/dosbox/dosbox.exe: - - arguments: '-conf \"..\\MARS.conf\" -noconsole -c' + "/Monuments of Mars/dosbox/dosbox.exe": + - arguments: "-conf \\\"..\\\\MARS.conf\\\" -noconsole -c" when: - os: windows store: steam - workingDir: /Monuments of Mars/dosbox + workingDir: "/Monuments of Mars/dosbox" steam: id: 358240 Moo Lander: installDir: Moo Lander: {} launch: - /Moo Lander.exe: + "/Moo Lander.exe": - when: - os: windows store: steam @@ -345571,7 +346553,7 @@ Moo Moo Move: installDir: Moo Moo Move: {} launch: - /MooMooMove_001.exe: + "/MooMooMove_001.exe": - when: - bit: 64 os: windows @@ -345582,7 +346564,7 @@ Mooch: installDir: Mooch: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -345592,15 +346574,15 @@ Moofa: installDir: moofa: {} launch: - /Moofa.app/Contents/MacOS/Moofa: + "/Moofa.app/Contents/MacOS/Moofa": - when: - os: mac store: steam - /Moofa.exe: + "/Moofa.exe": - when: - os: windows store: steam - /moofa.x86_64: + "/moofa.x86_64": - when: - os: linux store: steam @@ -345610,7 +346592,7 @@ Moon Breakers: installDir: Moon Breakers: {} launch: - /mb.exe: + "/mb.exe": - when: - store: steam steam: @@ -345619,7 +346601,7 @@ Moon Bullet: installDir: MoonBullet: {} launch: - /MoonBullet.exe: + "/MoonBullet.exe": - when: - os: windows store: steam @@ -345629,7 +346611,7 @@ Moon Bus: installDir: MoonBus: {} launch: - /MoonBus.exe: + "/MoonBus.exe": - when: - os: windows store: steam @@ -345639,7 +346621,7 @@ Moon Castle: installDir: Moon Castle: {} launch: - /MoonCastle.exe: + "/MoonCastle.exe": - when: - bit: 64 os: windows @@ -345651,17 +346633,17 @@ Moon Colonization Project: id: 496500 Moon Hunters: files: - /.config/unity3d/Kitfox/Moon Hunters: + "/.config/unity3d/Kitfox/Moon Hunters": tags: - config when: - os: linux - /.local/share/MoonHunters/SaveData: + "/.local/share/MoonHunters/SaveData": tags: - save when: - os: linux - /MoonHunters/SaveData: + "/MoonHunters/SaveData": tags: - config - save @@ -345672,20 +346654,20 @@ Moon Hunters: installDir: Moon Hunters: {} launch: - /MoonHunters.app/Contents/MacOS/MoonHunters: + "/MoonHunters.app/Contents/MacOS/MoonHunters": - when: - os: mac store: steam - /MoonHunters.exe: + "/MoonHunters.exe": - when: - os: windows store: steam - /MoonHunters.x86: + "/MoonHunters.x86": - when: - bit: 32 os: linux store: steam - /MoonHunters.x86_64: + "/MoonHunters.x86_64": - when: - bit: 64 os: linux @@ -345701,7 +346683,7 @@ Moon Pool: installDir: Moon Pool: {} launch: - /MoonPool.exe: + "/MoonPool.exe": - when: - os: windows store: steam @@ -345711,15 +346693,15 @@ Moon River: installDir: Moon River: {} launch: - /Moon River.app: + "/Moon River.app": - when: - os: mac store: steam - /Moon River.exe: + "/Moon River.exe": - when: - os: windows store: steam - /Moon River.x86_64: + "/Moon River.x86_64": - when: - os: linux store: steam @@ -345729,7 +346711,7 @@ Moon Tycoon: installDir: Moon Tycoon: {} launch: - /MoonTycoon.exe: + "/MoonTycoon.exe": - when: - os: windows store: steam @@ -345738,9 +346720,9 @@ Moon Tycoon: Moon Village: steam: id: 1096270 -'Moon: Remix RPG Adventure': +"Moon: Remix RPG Adventure": files: - /LocalLow/oniongames/moon/Database/GameData+SaveData.json: + "/LocalLow/oniongames/moon/Database/GameData+SaveData.json": tags: - save when: @@ -345748,11 +346730,11 @@ Moon Village: installDir: moon: {} launch: - /moon.app: + "/moon.app": - when: - os: mac store: steam - /moon.exe: + "/moon.exe": - when: - os: windows store: steam @@ -345769,8 +346751,8 @@ MoonQuest: installDir: MoonQuest: {} launch: - /moonquest.exe: - - arguments: '--steam' + "/moonquest.exe": + - arguments: "--steam" when: - os: windows store: steam @@ -345790,7 +346772,7 @@ Moonbase 332: installDir: Moonbase 332: {} launch: - /Moonbase 332.exe: + "/Moonbase 332.exe": - when: - os: windows store: steam @@ -345798,7 +346780,7 @@ Moonbase 332: id: 397580 Moonbase Alpha: files: - /My Games/Moonbase Alpha/MoonBaseAlphaGame/Config: + "/My Games/Moonbase Alpha/MoonBaseAlphaGame/Config": tags: - config when: @@ -345806,7 +346788,7 @@ Moonbase Alpha: installDir: Moon Base Alpha: {} launch: - /Binaries/Win32/MoonBaseAlphaGame.exe: + "/Binaries/Win32/MoonBaseAlphaGame.exe": - when: - store: steam steam: @@ -345817,7 +346799,7 @@ Moonbase Commander: installDir: Moonbase Commander: {} launch: - /moonbase.exe: + "/moonbase.exe": - when: - store: steam steam: @@ -345826,7 +346808,7 @@ Moonbase Down: installDir: Moonbase Down: {} launch: - /Moonbase Down.exe: + "/Moonbase Down.exe": - when: - os: windows store: steam @@ -345841,7 +346823,7 @@ Moonchild: installDir: Moonchild: {} launch: - /Moonchild.exe: + "/Moonchild.exe": - when: - os: windows store: steam @@ -345854,16 +346836,16 @@ Moonfall: installDir: Moonfall: {} launch: - /Moonfall.exe: + "/Moonfall.exe": - when: - os: windows store: steam - /Moonfall.x86: + "/Moonfall.x86": - when: - bit: 32 os: linux store: steam - /Moonfall.x86_64: + "/Moonfall.x86_64": - when: - bit: 64 os: linux @@ -345874,11 +346856,11 @@ Moonfall Ultimate: installDir: Moonfall Ultimate: {} launch: - /MoonfallUltimate.app: + "/MoonfallUltimate.app": - when: - os: mac store: steam - /MoonfallUltimate.exe: + "/MoonfallUltimate.exe": - when: - os: windows store: steam @@ -345888,7 +346870,7 @@ Moonglow Bay: installDir: Moonglow Bay: {} launch: - /MoonglowBay.exe: + "/MoonglowBay.exe": - when: - bit: 64 os: windows @@ -345899,7 +346881,7 @@ Moonlight: installDir: Moonlight: {} launch: - /Moonlight.exe: + "/Moonlight.exe": - when: - os: windows store: steam @@ -345909,7 +346891,7 @@ Moonlight Minions: installDir: Moonlight Minions: {} launch: - /moonlightminions.exe: + "/moonlightminions.exe": - when: - os: windows store: steam @@ -345919,7 +346901,7 @@ Moonlight Warrior: installDir: MoonlightWarrior: {} launch: - /MoonlightWarrior.exe: + "/MoonlightWarrior.exe": - when: - os: windows store: steam @@ -345929,7 +346911,7 @@ Moonlight thief: installDir: Moonlight thief: {} launch: - /Moonlight thief.exe: + "/Moonlight thief.exe": - when: - os: windows store: steam @@ -345937,25 +346919,25 @@ Moonlight thief: id: 1006830 Moonlighter: files: - /.config/unity3d/11BitStudios/Moonlighter: + "/.config/unity3d/11BitStudios/Moonlighter": tags: - config - save when: - os: linux - /AppData/LocalLow/11BitStudios/Moonlighter: + "/AppData/LocalLow/11BitStudios/Moonlighter": tags: - config - save when: - os: windows - /userdata//606150/remote: + "/userdata//606150/remote": tags: - config - save when: - store: steam - /Packages/11bitstudios.20925BA3921E0_gwy9gn5q9j1y6/SystemAppData/wgs: + "/Packages/11bitstudios.20925BA3921E0_gwy9gn5q9j1y6/SystemAppData/wgs": tags: - save when: @@ -345974,20 +346956,20 @@ Moonlighter: installDir: Moonlighter: {} launch: - /Moonlighter.app: + "/Moonlighter.app": - when: - os: mac store: steam - /Moonlighter.exe: + "/Moonlighter.exe": - when: - os: windows store: steam - /Moonlighter.x86: + "/Moonlighter.x86": - when: - bit: 32 os: linux store: steam - /Moonlighter.x86_64: + "/Moonlighter.x86_64": - when: - bit: 64 os: linux @@ -346002,11 +346984,11 @@ Moonlit Mayhem: installDir: Moonlit Mayhem: {} launch: - /Moonlit Mayhem MAC Version 1.03.app: + "/Moonlit Mayhem MAC Version 1.03.app": - when: - os: mac store: steam - /Moonlit Mayhem V1.03 WIN.exe: + "/Moonlit Mayhem V1.03 WIN.exe": - when: - os: windows store: steam @@ -346014,7 +346996,7 @@ Moonlit Mayhem: id: 525660 Moonrise Fall: files: - /Moonrise_Fall_1v02: + "/Moonrise_Fall_1v02": tags: - config - save @@ -346026,12 +347008,12 @@ Moonrise Fall: id: 1035110 Moons of Madness: files: - /MoonsOfMadness/Saved/Config/WindowsNoEditor: + "/MoonsOfMadness/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /MoonsOfMadness/Saved/SaveGames: + "/MoonsOfMadness/Saved/SaveGames": tags: - save when: @@ -346039,7 +347021,7 @@ Moons of Madness: installDir: Moons of Madness: {} launch: - /MoonsOfMadness.exe: + "/MoonsOfMadness.exe": - when: - os: windows store: steam @@ -346050,22 +347032,22 @@ Moons of Ventocia: id: 936590 Moonscars: files: - /AppData/LocalLow/Black Mermaid/Moonscars/CustomInputs.json: + "/AppData/LocalLow/Black Mermaid/Moonscars/CustomInputs.json": tags: - config when: - os: windows - /AppData/LocalLow/Black Mermaid/Moonscars/GameOptions.json: + "/AppData/LocalLow/Black Mermaid/Moonscars/GameOptions.json": tags: - config when: - os: windows - /AppData/LocalLow/Black Mermaid/Moonscars/Slot*_Rel.json: + "/AppData/LocalLow/Black Mermaid/Moonscars/Slot*_Rel.json": tags: - save when: - os: windows - /Packages/HumbleBundle.Moonscars_q2mcdwmzx4qja/SystemAppData/wgs: + "/Packages/HumbleBundle.Moonscars_q2mcdwmzx4qja/SystemAppData/wgs": tags: - save when: @@ -346076,7 +347058,7 @@ Moonscars: installDir: Moonscars: {} launch: - /Moonscars.exe: + "/Moonscars.exe": - when: - store: steam steam: @@ -346088,8 +347070,8 @@ Moonshiners The Game: installDir: Moonshine Inc: {} launch: - /Moonshine Inc.exe: - - arguments: '-steamBuild' + "/Moonshine Inc.exe": + - arguments: "-steamBuild" when: - store: steam steam: @@ -346098,7 +347080,7 @@ Moonshot: installDir: Moonshot: {} launch: - /Moonshot.exe: + "/Moonshot.exe": - when: - os: windows store: steam @@ -346116,12 +347098,12 @@ Moonstone Crossroads: id: 1044840 Moonstone Island: files: - /Moonstone Island: + "/Moonstone Island": tags: - save when: - os: linux - /Saved Games/Moonstone Island: + "/Saved Games/Moonstone Island": tags: - config - save @@ -346133,14 +347115,14 @@ Moonstone Tavern - A Fantasy Tavern Sim!: installDir: Moonstone Tavern: {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: id: 461780 -'Moonstone: A Hard Days Knight': +"Moonstone: A Hard Days Knight": files: - /MOON.CFG: + "/MOON.CFG": tags: - config when: @@ -346151,7 +347133,7 @@ Moonstrider: installDir: Moonstrider: {} launch: - /Moonstrider.exe: + "/Moonstrider.exe": - when: - os: windows store: steam @@ -346161,7 +347143,7 @@ Moor: installDir: Moor: {} launch: - /Moor_studioversion.exe: + "/Moor_studioversion.exe": - when: - os: windows store: steam @@ -346171,20 +347153,20 @@ Moorhuhn schlägt zurück: installDir: CRAZY CHICKEN Strikes Back: {} launch: - /Crazy_Chicken_Strikes_Back.exe: + "/Crazy_Chicken_Strikes_Back.exe": - when: - os: windows store: steam steam: id: 535680 -'Moorhuhn: Tiger and Chicken': +"Moorhuhn: Tiger and Chicken": files: - /Tiger & Chicken/save: + "/Tiger & Chicken/save": tags: - save when: - os: windows - /Tiger & Chicken/settings.ini: + "/Tiger & Chicken/settings.ini": tags: - config when: @@ -346192,7 +347174,7 @@ Moorhuhn schlägt zurück: installDir: Moorhuhn - Tiger & Chicken: {} launch: - /TigerAndChicken.exe: + "/TigerAndChicken.exe": - when: - os: windows store: steam @@ -346205,7 +347187,7 @@ Moose Invasion: installDir: Moose Invasion: {} launch: - /Moose Invasion.exe: + "/Moose Invasion.exe": - when: - os: windows store: steam @@ -346213,12 +347195,12 @@ Moose Invasion: id: 737280 Moose Life: files: - /MinotaurArcade_Savedata/MooseLife_SaveData.dat: + "/MinotaurArcade_Savedata/MooseLife_SaveData.dat": tags: - save when: - os: windows - /MinotaurArcade_Savedata/MooseLife_UserPrefs.dat: + "/MinotaurArcade_Savedata/MooseLife_UserPrefs.dat": tags: - config when: @@ -346226,7 +347208,7 @@ Moose Life: installDir: MLBeta01: {} launch: - /MooselifeGL.exe: + "/MooselifeGL.exe": - when: - store: steam steam: @@ -346235,7 +347217,7 @@ Moot District: installDir: Moot District: {} launch: - /Moot District.exe: + "/Moot District.exe": - when: - os: windows store: steam @@ -346248,31 +347230,31 @@ Moral King: installDir: Hidden: {} launch: - /MoralKing.exe: + "/MoralKing.exe": - when: - bit: 64 os: windows store: steam steam: id: 875830 -'Morbid: The Seven Acolytes': +"Morbid: The Seven Acolytes": files: - /Morbid/Screenshots: + "/Morbid/Screenshots": tags: - save when: - os: windows - /Morbid/backup: + "/Morbid/backup": tags: - save when: - os: windows - /Morbid/savegame/profile*.msav: + "/Morbid/savegame/profile*.msav": tags: - save when: - os: windows - /Morbid/savegame/settings.msav: + "/Morbid/savegame/settings.msav": tags: - config when: @@ -346280,23 +347262,23 @@ Moral King: installDir: Morbid: {} launch: - /Morbid - The Seven Acolytes.exe: + "/Morbid - The Seven Acolytes.exe": - when: - store: steam steam: id: 1140890 -'Morbolbo: Enter the Maze': +"Morbolbo: Enter the Maze": installDir: Morbolbo Enter the Maze: {} launch: - /Morbolbo/Morbolbo_PC.exe: + "/Morbolbo/Morbolbo_PC.exe": - when: - store: steam steam: id: 1138310 Mordhau: files: - /Mordhau/Saved/Config/WindowsClient: + "/Mordhau/Saved/Config/WindowsClient": tags: - config when: @@ -346304,50 +347286,52 @@ Mordhau: installDir: Mordhau: {} launch: - /Mordhau.exe: + "/Mordhau.exe": - when: - bit: 64 os: windows store: steam steam: id: 629760 -'Mordheim: City of the Damned': +"Mordheim: City of the Damned": files: - /remote: + "/remote": tags: - save when: - os: windows - /My Games/Mordheim: + "/My Games/Mordheim": tags: - save when: - - store: gog - /My Games/Mordheim/options.sg: + - os: windows + store: gog + "/My Games/Mordheim/options.sg": tags: - config when: - os: windows - - store: gog + - os: windows + store: gog gog: id: 1848744423 installDir: mordheim: {} launch: - /mordheim.exe: + "/mordheim.exe": - when: - os: windows store: steam - /mordheim.x86_64: + "/mordheim.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 276810 -'Mordor: The Depths of Dejenol': +"Mordor: The Depths of Dejenol": files: - /Backup: + "/Backup": tags: - save when: @@ -346359,7 +347343,7 @@ More Than Just Chess: installDir: More Than Just Chess: {} launch: - /MoreThanJustChess.exe: + "/MoreThanJustChess.exe": - when: - store: steam steam: @@ -346368,7 +347352,7 @@ More and more: installDir: Moreandmore: {} launch: - /Moreandmore.exe: + "/Moreandmore.exe": - when: - os: windows store: steam @@ -346378,7 +347362,7 @@ More dark: installDir: More dark: {} launch: - /More dark.exe: + "/More dark.exe": - when: - os: windows store: steam @@ -346387,17 +347371,17 @@ More dark: Moreau: steam: id: 965910 -'Morels: The Hunt': +"Morels: The Hunt": installDir: Morels The Hunt: {} launch: - /Morels_Steam.exe: + "/Morels_Steam.exe": - when: - os: windows store: steam steam: id: 1156590 -'Morendar: Goblin Slayer': +"Morendar: Goblin Slayer": steam: id: 679460 Morgan lives in a Rocket House in VR: @@ -346408,7 +347392,7 @@ Morgan lives in a Rocket House in VR: Mori and the Whisper: steam: id: 772940 -'Moriarty: Endgame VR': +"Moriarty: Endgame VR": installDir: Moriarty Endgame VR: {} steam: @@ -346417,17 +347401,17 @@ Moribund: installDir: Moribund: {} launch: - /Moribund_Linux.x86_64: + "/Moribund_Linux.x86_64": - when: - bit: 64 os: linux store: steam - /Moribund_MacOSX.app: + "/Moribund_MacOSX.app": - when: - bit: 64 os: mac store: steam - /Moribund_Windows.exe: + "/Moribund_Windows.exe": - when: - bit: 64 os: windows @@ -346436,18 +347420,18 @@ Moribund: id: 500790 Morkredd: files: - /AppData/LocalLow/Aspyr Media Inc_/Morkredd/SettingsSaves: + "/AppData/LocalLow/Aspyr Media Inc_/Morkredd/SettingsSaves": tags: - config when: - os: windows store: microsoft - /AppData/LocalLow/Aspyr/Morkredd/SaveData: + "/AppData/LocalLow/Aspyr/Morkredd/SaveData": tags: - save when: - os: windows - /Packages/Aspyr.Morkredd_76qfnh0a0z6g6/SystemAppData/wgs: + "/Packages/Aspyr.Morkredd_76qfnh0a0z6g6/SystemAppData/wgs": tags: - save when: @@ -346456,7 +347440,7 @@ Morkredd: installDir: Roosevelt: {} launch: - /Morkredd.exe: + "/Morkredd.exe": - when: - os: windows store: steam @@ -346466,7 +347450,7 @@ Morning Never Comes: installDir: Morning Never Comes: {} launch: - /Morning Never Comes.exe: + "/Morning Never Comes.exe": - when: - store: steam steam: @@ -346474,39 +347458,39 @@ Morning Never Comes: Morning Star: steam: id: 878690 -Morning's Wrath: +"Morning's Wrath": files: - /Morning's Wrath.cfg: + "/Morning's Wrath.cfg": tags: - config when: - os: windows - /saved: + "/saved": tags: - save when: - os: windows -'Morningdew Farms: A Gay Farming Game': +"Morningdew Farms: A Gay Farming Game": installDir: Morningdew Farms A Gay Farming Game: {} launch: - /MorningdewFarms.app/Contents/MacOS/MorningdewFarms: + "/MorningdewFarms.app/Contents/MacOS/MorningdewFarms": - when: - os: mac store: steam - /MorningdewFarms.exe: + "/MorningdewFarms.exe": - when: - os: windows store: steam - /MorningdewFarms.sh: + "/MorningdewFarms.sh": - when: - os: linux store: steam steam: id: 1069390 -'Morningstar: Descent to Deadrock': +"Morningstar: Descent to Deadrock": files: - /com.redherringlabs.morningstar/Local Store: + "/com.redherringlabs.morningstar/Local Store": tags: - config - save @@ -346515,15 +347499,15 @@ Morning's Wrath: installDir: Morningstar: {} launch: - /MorningstarWindowed1024.bat: + "/MorningstarWindowed1024.bat": - when: - os: windows store: steam - /MorningstarWindowed1280.bat: + "/MorningstarWindowed1280.bat": - when: - os: windows store: steam - /morningstar.app: + "/morningstar.app": - when: - os: mac store: steam @@ -346535,7 +347519,7 @@ Morning's Wrath: when: - os: mac store: steam - /morningstar.exe: + "/morningstar.exe": - when: - os: windows store: steam @@ -346545,11 +347529,11 @@ Morok: installDir: Morok: {} launch: - /Morok(Linux).x86_64: + "/Morok(Linux).x86_64": - when: - os: linux store: steam - /Morok.exe: + "/Morok.exe": - when: - os: windows store: steam @@ -346559,7 +347543,7 @@ Morph Girl: installDir: Morph_Girl: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -346569,15 +347553,15 @@ Morph Pong: installDir: Morph Pong: {} launch: - /Moprh Pong.app: + "/Moprh Pong.app": - when: - os: mac store: steam - /Morph Pong.exe: + "/Morph Pong.exe": - when: - os: windows store: steam - /Morph Pong.x86: + "/Morph Pong.x86": - when: - os: linux store: steam @@ -346585,17 +347569,17 @@ Morph Pong: id: 983320 MorphX: files: - /data/config.cfg: + "/data/config.cfg": tags: - config when: - os: windows - /My Games/The Swarm/Saves: + "/My Games/The Swarm/Saves": tags: - save when: - os: windows - /My Games/The Swarm/user_config.cfg: + "/My Games/The Swarm/user_config.cfg": tags: - config when: @@ -346604,7 +347588,7 @@ Morphblade: installDir: Morphblade: {} launch: - /Morphblade.exe: + "/Morphblade.exe": - when: - os: windows store: steam @@ -346614,21 +347598,21 @@ Morphe: installDir: morphe: {} launch: - /morphe-linux-v100/morphe.x86: + "/morphe-linux-v100/morphe.x86": - when: - bit: 32 os: linux store: steam - /morphe-linux-v100/morphe.x86_64: + "/morphe-linux-v100/morphe.x86_64": - when: - bit: 64 os: linux store: steam - /morphe.app: + "/morphe.app": - when: - os: mac store: steam - /morphe.exe: + "/morphe.exe": - when: - os: windows store: steam @@ -346638,12 +347622,12 @@ Morphies Law: installDir: MorphiesLaw: {} launch: - /MorphiesLaw.bat: + "/MorphiesLaw.bat": - when: - bit: 64 os: windows store: steam - /MorphiesLaw.exe: + "/MorphiesLaw.exe": - when: - bit: 64 os: windows @@ -346654,7 +347638,7 @@ Morphine: installDir: Morphine: {} launch: - /morphinegame.exe: + "/morphinegame.exe": - when: - os: windows store: steam @@ -346668,20 +347652,20 @@ Morphite: installDir: Morphite: {} launch: - /Morphite.app: + "/Morphite.app": - when: - os: mac store: steam - /Morphite.exe: + "/Morphite.exe": - when: - os: windows store: steam - /Morphite.x86: + "/Morphite.x86": - when: - bit: 32 os: linux store: steam - /Morphite.x86_64: + "/Morphite.x86_64": - when: - bit: 64 os: linux @@ -346690,7 +347674,7 @@ Morphite: id: 661740 Morphopolis: files: - /Morphopolis/data.xml: + "/Morphopolis/data.xml": tags: - save when: @@ -346700,7 +347684,7 @@ Morphopolis: installDir: Morphopolis: {} launch: - /project.exe: + "/project.exe": - when: - os: windows store: steam @@ -346710,45 +347694,45 @@ Morps: installDir: Morps: {} launch: - /morps.exe: + "/morps.exe": - when: - os: windows store: steam steam: id: 725540 -'Mortadelo y Filemón: El sulfato atómico': +"Mortadelo y Filemón: El sulfato atómico": installDir: Mortadelo y Filemón El sulfato atómico: {} launch: - /Sulfato.exe: + "/Sulfato.exe": - when: - store: steam steam: id: 1038440 -'Mortadelo y Filemón: La banda de Corvino': +"Mortadelo y Filemón: La banda de Corvino": installDir: Mortadelo y Filemón La banda de Corvino: {} launch: - /La Banda de Corvino.bat: + "/La Banda de Corvino.bat": - when: - os: windows store: steam steam: id: 1017490 -'Mortadelo y Filemón: Operación Moscú': +"Mortadelo y Filemón: Operación Moscú": installDir: Mortadelo y Filemón Operación Moscú: {} launch: - /MyF.exe: + "/MyF.exe": - when: - store: steam steam: id: 1114340 -'Mortadelo y Filemón: Una aventura de cine - Edición especial': +"Mortadelo y Filemón: Una aventura de cine - Edición especial": installDir: Mortadelo y Filemón Una aventura de cine - Edición especial: {} launch: - /MyF.exe: + "/MyF.exe": - when: - os: windows store: steam @@ -346763,11 +347747,11 @@ Mortal Box: installDir: Mortal box: {} launch: - /Mortal_box.exe: + "/Mortal_box.exe": - when: - os: windows store: steam - /runner: + "/runner": - when: - os: linux store: steam @@ -346779,7 +347763,7 @@ Mortal Glory: installDir: Mortal Glory: {} launch: - /MortalGlory.exe: + "/MortalGlory.exe": - when: - os: windows store: steam @@ -346795,7 +347779,7 @@ Mortal Kombat 1: installDir: Mortal Kombat 1: {} launch: - /MK12.exe: + "/MK12.exe": - when: - bit: 64 os: windows @@ -346804,18 +347788,18 @@ Mortal Kombat 1: id: 1971870 Mortal Kombat 11: files: - /userdata//976310/remote: + "/userdata//976310/remote": tags: - save when: - os: windows store: steam - /MK11/UserSettings.ini: + "/MK11/UserSettings.ini": tags: - config when: - os: windows - /MK11/UserSettingsDX12.ini: + "/MK11/UserSettingsDX12.ini": tags: - config when: @@ -346823,7 +347807,7 @@ Mortal Kombat 11: installDir: Mortal Kombat 11: {} launch: - /Binaries/Retail/MK11.exe: + "/Binaries/Retail/MK11.exe": - when: - os: windows store: steam @@ -346831,7 +347815,7 @@ Mortal Kombat 11: id: 976310 Mortal Kombat 3: files: - /mk3: + "/mk3": tags: - config - save @@ -346851,7 +347835,7 @@ Mortal Kombat 4: - config Mortal Kombat Arcade Kollection: files: - /MKHDGame/Config: + "/MKHDGame/Config": tags: - config when: @@ -346859,7 +347843,7 @@ Mortal Kombat Arcade Kollection: installDir: Mortal Kombat Arcade Kollection: {} launch: - /BINARIES/WIN32/MKHDGame.exe: + "/BINARIES/WIN32/MKHDGame.exe": - when: - store: steam steam: @@ -346872,13 +347856,13 @@ Mortal Kombat II: - 1423059062 Mortal Kombat Komplete Edition: files: - /userdata//237110/remote/user: + "/userdata//237110/remote/user": tags: - save when: - os: windows store: steam - /MKKE: + "/MKKE": tags: - config when: @@ -346886,14 +347870,14 @@ Mortal Kombat Komplete Edition: installDir: MortalKombat_KompleteEdition: {} launch: - /DiscContentPC/MKKE.exe: + "/DiscContentPC/MKKE.exe": - when: - store: steam - workingDir: /DiscContentPC - /DiscContentPC/MKLauncher.exe: + workingDir: "/DiscContentPC" + "/DiscContentPC/MKLauncher.exe": - when: - store: steam - workingDir: /DiscContentPC + workingDir: "/DiscContentPC" steam: id: 237110 Mortal Kombat Trilogy: @@ -346901,13 +347885,13 @@ Mortal Kombat Trilogy: id: 1403485498 Mortal Kombat X: files: - /userdata//307780/remote/user: + "/userdata//307780/remote/user": tags: - save when: - os: windows store: steam - /MK10/options.ini: + "/MK10/options.ini": tags: - config when: @@ -346915,10 +347899,10 @@ Mortal Kombat X: installDir: MK10: {} launch: - /Binaries/retail/MK10.exe: + "/Binaries/retail/MK10.exe": - when: - store: steam - /Binaries/retail/MKXLauncher.exe: + "/Binaries/retail/MKXLauncher.exe": - when: - store: steam steam: @@ -346927,7 +347911,7 @@ Mortal Manor: installDir: Mortal Manor: {} launch: - /Mortal Manor.exe: + "/Mortal Manor.exe": - when: - os: windows store: steam @@ -346937,7 +347921,7 @@ Mortal Online: installDir: Mortal Online: {} launch: - /Mortal Online Launcher.exe: + "/Mortal Online Launcher.exe": - when: - bit: 64 os: windows @@ -346953,7 +347937,7 @@ Mortal Royale: installDir: Mortal Royale: {} launch: - /UnrealEngine3/Binaries/Win64/MortalRoyale.exe: + "/UnrealEngine3/Binaries/Win64/MortalRoyale.exe": - when: - bit: 64 os: windows @@ -346962,12 +347946,12 @@ Mortal Royale: id: 922630 Mortal Shell: files: - /My Games/MortalShell/Dungeonhaven/Saved/Config/WindowsNoEditor: + "/My Games/MortalShell/Dungeonhaven/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /My Games/MortalShell/Dungeonhaven/Saved/SaveGames: + "/My Games/MortalShell/Dungeonhaven/Saved/SaveGames": tags: - save when: @@ -346977,18 +347961,18 @@ Mortal Shell: installDir: Mortal Shell: {} launch: - /Dungeonhaven.exe: + "/Dungeonhaven.exe": - when: - bit: 64 os: windows store: steam steam: id: 1110910 -'Mortal Squad: Portal to Hell': +"Mortal Squad: Portal to Hell": installDir: Mortal Squad Portal to Hell: {} launch: - /MortalSquad.exe: + "/MortalSquad.exe": - when: - os: windows store: steam @@ -347001,7 +347985,7 @@ Mortar and Pestle: installDir: Mortar and Pestle: {} launch: - /Mortar and Pestle.exe: + "/Mortar and Pestle.exe": - when: - os: windows store: steam @@ -347016,12 +348000,12 @@ Mortem: installDir: MORTEM: {} launch: - /MORTEM.exe: + "/MORTEM.exe": - when: - bit: 64 os: windows store: steam - /MORTEM_VR/MORTEM.exe: + "/MORTEM_VR/MORTEM.exe": - when: - store: steam steam: @@ -347039,7 +348023,7 @@ Mortos: installDir: Mortos: {} launch: - /Mortos.exe: + "/Mortos.exe": - when: - os: windows store: steam @@ -347047,24 +348031,24 @@ Mortos: id: 377980 Mortyr 2093 - 1944: files: - /game.sav: + "/game.sav": tags: - save when: - os: windows -'Mortyr 2: For Ever': +"Mortyr 2: For Ever": files: - /ar.cfg: + "/ar.cfg": tags: - config when: - os: windows - /save: + "/save": tags: - save when: - os: windows - /save/keys.cfg: + "/save/keys.cfg": tags: - config when: @@ -347073,15 +348057,15 @@ Mos Speedrun 2: installDir: Mos Speedrun 2: {} launch: - /Mos Speedrun 2.app: + "/Mos Speedrun 2.app": - when: - os: mac store: steam - /Speedrun2.exe: + "/Speedrun2.exe": - when: - os: windows store: steam - /Speedrun2.x86: + "/Speedrun2.x86": - when: - os: linux store: steam @@ -347089,7 +348073,7 @@ Mos Speedrun 2: id: 333290 Mosa Lina: files: - /Local/MosaLina/User Data: + "/Local/MosaLina/User Data": tags: - config when: @@ -347097,11 +348081,11 @@ Mosa Lina: installDir: Mosa Lina: {} launch: - /Mosa Lina: + "/Mosa Lina": - when: - os: linux store: steam - /Mosa Lina.exe: + "/Mosa Lina.exe": - when: - os: windows store: steam @@ -347109,7 +348093,7 @@ Mosa Lina: id: 2477090 Mosaic: files: - /AppData/LocalLow/Krillbite/Mosaiac/profile.json: + "/AppData/LocalLow/Krillbite/Mosaiac/profile.json": tags: - save when: @@ -347119,15 +348103,15 @@ Mosaic: installDir: Mosaic: {} launch: - /Mosaic.app: + "/Mosaic.app": - when: - os: mac store: steam - /Mosaic.exe: + "/Mosaic.exe": - when: - os: windows store: steam - /Mosaic.x86: + "/Mosaic.x86": - when: - os: linux store: steam @@ -347141,27 +348125,27 @@ Mosaic Maze: installDir: Mosaic Maze: {} launch: - /mosaic maze.exe: + "/mosaic maze.exe": - when: - os: windows store: steam steam: id: 436950 -'Mosaic: Game of Gods': +"Mosaic: Game of Gods": installDir: Mosaic Game of Gods: {} launch: - /MosaicGameOfGods.exe: + "/MosaicGameOfGods.exe": - when: - os: windows store: steam steam: id: 547390 -'Mosaic: Game of Gods II': +"Mosaic: Game of Gods II": installDir: Mosaic Game of Gods II: {} launch: - /MosaicGameOfGodsII.exe: + "/MosaicGameOfGodsII.exe": - when: - os: windows store: steam @@ -347171,11 +348155,11 @@ Mosaics Galore: installDir: Mosaics Galore: {} launch: - /Mosaics Galore.app: + "/Mosaics Galore.app": - when: - os: mac store: steam - /Mosaics Galore.exe: + "/Mosaics Galore.exe": - when: - os: windows store: steam @@ -347185,35 +348169,35 @@ Mosaics Galore 2: installDir: Mosaics Galore 2: {} launch: - /Mosaics Galore 2.app: + "/Mosaics Galore 2.app": - when: - os: mac store: steam - /Mosaics Galore 2.exe: + "/Mosaics Galore 2.exe": - when: - os: windows store: steam steam: id: 575900 -'Mosaics Galore: Challenging Journey': +"Mosaics Galore: Challenging Journey": installDir: Mosaics Galore. Challenging journey: {} launch: - /Mosaics Galore. Challenging journey.app: + "/Mosaics Galore. Challenging journey.app": - when: - os: mac store: steam - /Mosaics Galore. Challenging journey.exe: + "/Mosaics Galore. Challenging journey.exe": - when: - os: windows store: steam steam: id: 891700 -Mosby's Confederacy: +"Mosby's Confederacy": installDir: - Mosby's Confederacy: {} + "Mosby's Confederacy": {} launch: - /MosbysConfederacy.exe: + "/MosbysConfederacy.exe": - when: - store: steam steam: @@ -347225,7 +348209,7 @@ Mosh Pit: installDir: Mosh Pit: {} launch: - /NuclearLunch.exe: + "/NuclearLunch.exe": - when: - store: steam steam: @@ -347240,12 +348224,12 @@ Moshpit VR: id: 986700 Moss: files: - /MossGame/Saved/Config/WindowsNoEditor: + "/MossGame/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /MossGame/Saved/SaveGames: + "/MossGame/Saved/SaveGames": tags: - save when: @@ -347261,21 +348245,21 @@ Moss Destruction: installDir: Moss Destruction: {} launch: - /MossDestruction.app/Contents/MacOS/MossDestruction: + "/MossDestruction.app/Contents/MacOS/MossDestruction": - when: - os: mac store: steam - /MossDestruction.exe: + "/MossDestruction.exe": - when: - os: windows store: steam - /mossdestruction.x86: + "/mossdestruction.x86": - when: - os: linux store: steam steam: id: 876220 -'Moss: Book II': +"Moss: Book II": installDir: Moss Book II: {} steam: @@ -347284,7 +348268,7 @@ Most Correct Football Simulator: installDir: Most Correct Football Simulator: {} launch: - /MostCorrectFootballSimulator.exe: + "/MostCorrectFootballSimulator.exe": - when: - os: windows store: steam @@ -347294,7 +348278,7 @@ Mostly Intense Monster Defense: installDir: Mostly Intense Monster Defense: {} launch: - /Mostly Intense Monster Defense.exe: + "/Mostly Intense Monster Defense.exe": - when: - os: windows store: steam @@ -347304,11 +348288,11 @@ Mostly Scared of Spiders: installDir: Mostly Scared of Spiders: {} launch: - /MostlyScaredOfSpiders.app/Contents/MacOS/MostlyScaredOfSpiders: + "/MostlyScaredOfSpiders.app/Contents/MacOS/MostlyScaredOfSpiders": - when: - os: mac store: steam - /MostlyScaredOfSpiders/Mostly scared of spiders.exe: + "/MostlyScaredOfSpiders/Mostly scared of spiders.exe": - when: - os: windows store: steam @@ -347318,7 +348302,7 @@ Motel Bondage: installDir: Motel Bondage: {} launch: - /MB.exe: + "/MB.exe": - when: - store: steam steam: @@ -347327,15 +348311,15 @@ Mother Daughter Pleasure Pets: installDir: MotherDaughterPP: {} launch: - /PleasurePets.app: + "/PleasurePets.app": - when: - os: mac store: steam - /PleasurePets.exe: + "/PleasurePets.exe": - when: - os: windows store: steam - /PleasurePets.sh: + "/PleasurePets.sh": - when: - os: linux store: steam @@ -347343,13 +348327,13 @@ Mother Daughter Pleasure Pets: id: 1123140 Mother Russia Bleeds: files: - /Savegame.nekro: + "/Savegame.nekro": tags: - save when: - os: windows - os: linux - /unity3d/Le Cartel Studio/Mother Russia Bleeds: + "/unity3d/Le Cartel Studio/Mother Russia Bleeds": tags: - config when: @@ -347359,20 +348343,20 @@ Mother Russia Bleeds: installDir: Mother Russia Bleeds: {} launch: - /Mother Russia Bleeds.app/Contents/MacOS/Mother Russia Bleeds: + "/Mother Russia Bleeds.app/Contents/MacOS/Mother Russia Bleeds": - when: - os: mac store: steam - /Mother Russia Bleeds.exe: + "/Mother Russia Bleeds.exe": - when: - os: windows store: steam - /Mother Russia Bleeds.x86: + "/Mother Russia Bleeds.x86": - when: - bit: 32 os: linux store: steam - /Mother Russia Bleeds.x86_64: + "/Mother Russia Bleeds.x86_64": - when: - bit: 64 os: linux @@ -347383,7 +348367,7 @@ Mother Simulator: installDir: Mother Simulator: {} launch: - /Mother_Simulator.exe: + "/Mother_Simulator.exe": - when: - bit: 64 os: windows @@ -347392,17 +348376,17 @@ Mother Simulator: id: 802730 Mothergunship: files: - /TowerOfGuns2/Saved/Config/WindowsNoEditor: + "/TowerOfGuns2/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /TowerOfGuns2/Saved/SaveGames: + "/TowerOfGuns2/Saved/SaveGames": tags: - save when: - os: windows - /TowerOfGuns2/Saved/SaveGames/SETTINGS.sav: + "/TowerOfGuns2/Saved/SaveGames/SETTINGS.sav": tags: - config when: @@ -347412,7 +348396,7 @@ Mothergunship: installDir: MOTHERGUNSHIP: {} launch: - /TowerOfGuns2.exe: + "/TowerOfGuns2.exe": - when: - bit: 64 os: windows @@ -347421,7 +348405,7 @@ Mothergunship: id: 574090 Motherload: files: - /Macromedia/Flash Player/localhost/xgenml.sol: + "/Macromedia/Flash Player/localhost/xgenml.sol": tags: - save when: @@ -347429,11 +348413,11 @@ Motherload: installDir: Super Motherload: {} launch: - /Goldium/Motherload Goldium.exe: + "/Goldium/Motherload Goldium.exe": - when: - os: windows store: steam - /launcher.exe: + "/launcher.exe": - when: - os: windows store: steam @@ -347443,7 +348427,7 @@ Mothlight: installDir: Mothlight: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -347451,7 +348435,7 @@ Mothlight: id: 687980 Mothmen 1966: files: - /AppData/LocalLow/LCB/Mothmen1966/NaninovelData/Saves: + "/AppData/LocalLow/LCB/Mothmen1966/NaninovelData/Saves": tags: - config - save @@ -347460,11 +348444,11 @@ Mothmen 1966: installDir: Mothmen 1966: {} launch: - /MM66.app/Contents/MacOS/Mothmen1966: + "/MM66.app/Contents/MacOS/Mothmen1966": - when: - os: mac store: steam - /Mothmen1966.exe: + "/Mothmen1966.exe": - when: - os: windows store: steam @@ -347474,22 +348458,22 @@ Moto RKD dash: installDir: motoRKDdash: {} launch: - /motoRKDdash.app: + "/motoRKDdash.app": - when: - bit: 64 os: mac store: steam - /motoRKDdash.exe: + "/motoRKDdash.exe": - when: - bit: 32 os: windows store: steam - /motoRKDdash.x86: + "/motoRKDdash.x86": - when: - bit: 32 os: linux store: steam - /motoRKDdash.x86_64: + "/motoRKDdash.x86_64": - when: - bit: 64 os: linux @@ -347498,12 +348482,12 @@ Moto RKD dash: id: 470590 Moto Racer: files: - /Champ*.sav: + "/Champ*.sav": tags: - save when: - os: windows - /data/CONFIG.BPT: + "/data/CONFIG.BPT": tags: - config when: @@ -347513,7 +348497,7 @@ Moto Racer: installDir: Moto Racer Collection: {} launch: - /motoracer.exe: + "/motoracer.exe": - when: - os: windows store: steam @@ -347523,7 +348507,7 @@ Moto Racer 15th Anniversary: installDir: Moto Racer Collection: {} launch: - /motoracer.exe: + "/motoracer.exe": - when: - os: windows store: steam @@ -347535,7 +348519,7 @@ Moto Racer 15th Anniversary: id: 324110 Moto Racer 2: files: - /data/config.bin: + "/data/config.bin": tags: - save when: @@ -347545,7 +348529,7 @@ Moto Racer 2: installDir: Moto Racer Collection: {} launch: - /motoracer.exe: + "/motoracer.exe": - when: - os: windows store: steam @@ -347553,17 +348537,17 @@ Moto Racer 2: id: 324110 Moto Racer 3: files: - /*.ini: + "/*.ini": tags: - config when: - os: windows - /Data/Players: + "/Data/Players": tags: - save when: - os: windows - /Data_Gen/Config.bin: + "/Data_Gen/Config.bin": tags: - config when: @@ -347573,7 +348557,7 @@ Moto Racer 3: installDir: Moto Racer Collection: {} launch: - /motoracer.exe: + "/motoracer.exe": - when: - os: windows store: steam @@ -347581,12 +348565,12 @@ Moto Racer 3: id: 324110 Moto Racer 4: files: - /MR4/Saved/Config/WindowsNoEditor: + "/MR4/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /MR4/Saved/SaveGames: + "/MR4/Saved/SaveGames": tags: - save when: @@ -347594,12 +348578,12 @@ Moto Racer 4: installDir: Moto Racer 4: {} launch: - /MR4.app/Contents/MacOS/MR4: - - arguments: '-opengl' + "/MR4.app/Contents/MacOS/MR4": + - arguments: "-opengl" when: - os: mac store: steam - /MR4.exe: + "/MR4.exe": - when: - os: windows store: steam @@ -347609,11 +348593,11 @@ Moto Racing 3D: installDir: Moto Racing 3D: {} launch: - /Moto Racing 3D.app/Contents/MacOS/Moto Racing 3D: + "/Moto Racing 3D.app/Contents/MacOS/Moto Racing 3D": - when: - os: mac store: steam - /Moto Racing 3D.exe: + "/Moto Racing 3D.exe": - when: - os: windows store: steam @@ -347628,19 +348612,19 @@ MotoGP 08: installDir: MotoGP 08: {} launch: - /launcher.exe: + "/launcher.exe": - when: - store: steam steam: id: 21610 MotoGP 13: files: - /Milestone/MotoGP13: + "/Milestone/MotoGP13": tags: - config when: - os: windows - /Milestone/MotoGP13/Saves: + "/Milestone/MotoGP13/Saves": tags: - save when: @@ -347648,19 +348632,19 @@ MotoGP 13: installDir: MotoGP2013: {} launch: - /MotoGP13.exe: + "/MotoGP13.exe": - when: - store: steam steam: id: 240600 MotoGP 14: files: - /Milestone/MotoGP14: + "/Milestone/MotoGP14": tags: - config when: - os: windows - /Milestone/MotoGP14/Saves: + "/Milestone/MotoGP14/Saves": tags: - save when: @@ -347668,11 +348652,11 @@ MotoGP 14: installDir: MotoGP2014: {} launch: - /MotoGP14.exe: + "/MotoGP14.exe": - when: - bit: 32 store: steam - /MotoGP14X64.exe: + "/MotoGP14X64.exe": - when: - bit: 64 store: steam @@ -347682,11 +348666,11 @@ MotoGP 14 Compact: installDir: MotoG14_Compact: {} launch: - /MotoGP14.exe: + "/MotoGP14.exe": - when: - bit: 32 store: steam - /MotoGP14X64.exe: + "/MotoGP14X64.exe": - when: - bit: 64 store: steam @@ -347694,12 +348678,12 @@ MotoGP 14 Compact: id: 321490 MotoGP 15: files: - /Milestone/MotoGP15/Config.ini: + "/Milestone/MotoGP15/Config.ini": tags: - config when: - os: windows - /Milestone/MotoGP15/Saves: + "/Milestone/MotoGP15/Saves": tags: - save when: @@ -347707,11 +348691,11 @@ MotoGP 15: installDir: MotoGP15: {} launch: - /MotoGP15.exe: + "/MotoGP15.exe": - when: - bit: 32 store: steam - /MotoGP15X64.exe: + "/MotoGP15X64.exe": - when: - bit: 64 store: steam @@ -347721,11 +348705,11 @@ MotoGP 15 Compact: installDir: MotoGP™15 Compact: {} launch: - /MotoGP15.exe: + "/MotoGP15.exe": - when: - bit: 32 store: steam - /MotoGP15X64.exe: + "/MotoGP15X64.exe": - when: - bit: 64 store: steam @@ -347733,7 +348717,7 @@ MotoGP 15 Compact: id: 403880 MotoGP 17: files: - /Milestone/MotoGP17/Config.ini: + "/Milestone/MotoGP17/Config.ini": tags: - config when: @@ -347741,11 +348725,11 @@ MotoGP 17: installDir: MotoGP™17: {} launch: - /MotoGP17.exe: + "/MotoGP17.exe": - when: - bit: 32 store: steam - /MotoGP17X64.exe: + "/MotoGP17X64.exe": - when: - bit: 64 store: steam @@ -347753,12 +348737,12 @@ MotoGP 17: id: 561610 MotoGP 18: files: - /motogp18/Saved/Config/WindowsNoEditor: + "/motogp18/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /motogp18/Saved/SaveGames: + "/motogp18/Saved/SaveGames": tags: - save when: @@ -347766,19 +348750,19 @@ MotoGP 18: installDir: MotoGP™18: {} launch: - /motogp18.exe: + "/motogp18.exe": - when: - store: steam steam: id: 775900 MotoGP 19: files: - /motogp19/Saved/Config/WindowsNoEditor: + "/motogp19/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /motogp19/Saved/SaveGames: + "/motogp19/Saved/SaveGames": tags: - save when: @@ -347786,36 +348770,36 @@ MotoGP 19: installDir: MotoGP™19: {} launch: - /motogp19.exe: + "/motogp19.exe": - when: - store: steam steam: id: 984780 MotoGP 2: files: - /motogp.cfg: + "/motogp.cfg": tags: - config when: - os: windows - /save: + "/save": tags: - config when: - os: windows - /save/Player *: + "/save/Player *": tags: - save when: - os: windows MotoGP 20: files: - /motogp20/Saved/Config/WindowsNoEditor: + "/motogp20/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /motogp20/Saved/SaveGames: + "/motogp20/Saved/SaveGames": tags: - save when: @@ -347823,7 +348807,7 @@ MotoGP 20: installDir: MotoGP™20: {} launch: - /motogp20.exe: + "/motogp20.exe": - when: - store: steam steam: @@ -347832,7 +348816,7 @@ MotoGP 21: installDir: MotoGP™21: {} launch: - /motogp21.exe: + "/motogp21.exe": - when: - store: steam steam: @@ -347841,14 +348825,14 @@ MotoGP 22: installDir: MotoGP™22: {} launch: - /motogp22.exe: + "/motogp22.exe": - when: - store: steam steam: id: 1710580 MotoGP 23: files: - /MotoGP23/Saved/SaveGames: + "/MotoGP23/Saved/SaveGames": tags: - save when: @@ -347856,34 +348840,34 @@ MotoGP 23: installDir: MotoGP™23: {} launch: - /motogp23.exe: + "/motogp23.exe": - when: - store: steam steam: id: 2100160 -'MotoGP 3: Ultimate Racing Technology': +"MotoGP 3: Ultimate Racing Technology": files: - /THQ/MotoGP URT 3: + "/THQ/MotoGP URT 3": tags: - config - save when: - os: windows -'MotoGP: Ultimate Racing Technology': +"MotoGP: Ultimate Racing Technology": files: - /save: + "/save": tags: - config when: - os: windows - /save/Saved games: + "/save/Saved games": tags: - save when: - os: windows Motocross Madness: files: - /UI/Profile: + "/UI/Profile": tags: - config - save @@ -347891,21 +348875,21 @@ Motocross Madness: - os: windows Motocross Madness 2: files: - /UI/Profile: + "/UI/Profile": tags: - config - save when: - os: windows -'Motocross: Chasing the Dream': +"Motocross: Chasing the Dream": installDir: Motocross Chasing the Dream: {} launch: - /mctd.exe: + "/mctd.exe": - when: - os: windows store: steam - /mctd.x86_64: + "/mctd.x86_64": - when: - os: linux store: steam @@ -347913,7 +348897,7 @@ Motocross Madness 2: id: 830540 Motor City Online: files: - /SaveData/options.ini: + "/SaveData/options.ini": tags: - config when: @@ -347922,7 +348906,7 @@ Motor Gladiators: installDir: Motor Gladiators: {} launch: - /MotorGladiators.exe: + "/MotorGladiators.exe": - when: - bit: 64 os: windows @@ -347935,7 +348919,7 @@ Motor Mash: installDir: Motor Mash: {} launch: - /motor mash.exe: + "/motor mash.exe": - when: - os: windows store: steam @@ -347945,7 +348929,7 @@ Motor Mechanic: installDir: MMS21: {} launch: - /MMS21.exe: + "/MMS21.exe": - when: - bit: 64 store: steam @@ -347955,14 +348939,14 @@ Motor Rock: installDir: Motor Rock: {} launch: - /MR.exe: + "/MR.exe": - when: - store: steam steam: id: 263260 -'MotorM4X: Offroad Extreme': +"MotorM4X: Offroad Extreme": files: - /Motorm4x: + "/Motorm4x": tags: - save when: @@ -347970,21 +348954,21 @@ Motor Rock: installDir: MotorM4X Offroad Extreme: {} launch: - /bin/MotorM4X.exe: + "/bin/MotorM4X.exe": - when: - store: steam - workingDir: /bin + workingDir: "/bin" steam: id: 34860 MotorSport Revolution: installDir: MotorSport Revolution: {} launch: - /MotorsportRevolution_SteamVR.app: + "/MotorsportRevolution_SteamVR.app": - when: - os: mac store: steam - /MotorsportRevolution_SteamVR.exe: + "/MotorsportRevolution_SteamVR.exe": - when: - os: windows store: steam @@ -347994,7 +348978,7 @@ Motorama: installDir: Motorama: {} launch: - /Motorama.exe: + "/Motorama.exe": - when: - store: steam steam: @@ -348003,17 +348987,17 @@ Motorbike: installDir: Motorbike: {} launch: - /Motorbike.app/Contents/MacOS/Motorbike: + "/Motorbike.app/Contents/MacOS/Motorbike": - when: - bit: 64 os: mac store: steam - /Motorbike.exe: + "/Motorbike.exe": - when: - bit: 64 os: windows store: steam - /Motorbike.x86_64: + "/Motorbike.x86_64": - when: - bit: 64 os: linux @@ -348024,7 +349008,7 @@ Motorbike Garage Mechanic Simulator: installDir: Motorbike Garage Mechanic Simulator: {} launch: - /LauncherNNG.exe: + "/LauncherNNG.exe": - when: - bit: 64 os: windows @@ -348033,7 +349017,7 @@ Motorbike Garage Mechanic Simulator: id: 750070 Motorcycle Club: files: - /My Games/MotorcycleClub: + "/My Games/MotorcycleClub": tags: - config when: @@ -348041,7 +349025,7 @@ Motorcycle Club: installDir: Motorcycle Club: {} launch: - /MotorcycleClub.exe: + "/MotorcycleClub.exe": - when: - bit: 32 os: windows @@ -348052,33 +349036,33 @@ Motorcycle Mechanic Simulator 2021: installDir: MMS21: {} launch: - /MMS21.exe: + "/MMS21.exe": - when: - bit: 64 store: steam steam: id: 1078760 -'Motorcycle, tricycle, ATV hill racing': +"Motorcycle, tricycle, ATV hill racing": steam: id: 853960 Motorhead: files: - /Game/*.clo: + "/Game/*.clo": tags: - config when: - os: windows - /Game/Motorhead.cfg: + "/Game/Motorhead.cfg": tags: - config when: - os: windows - /HiScores: + "/HiScores": tags: - save when: - os: windows - /League: + "/League": tags: - save when: @@ -348086,34 +349070,34 @@ Motorhead: installDir: Chicken Hot Grill: {} launch: - /System/kury.exe: + "/System/kury.exe": - when: - store: steam - workingDir: /system + workingDir: "/system" steam: id: 837040 Motorhead (2015): installDir: Motorhead: {} launch: - /Motorhead.exe: + "/Motorhead.exe": - when: - store: steam steam: id: 393290 Motorsport Manager: files: - /AppData/LocalLow/Playsport Games/Motorsport Manager/Cloud/Saves: + "/AppData/LocalLow/Playsport Games/Motorsport Manager/Cloud/Saves": tags: - save when: - os: windows - /unity3d/Playsport Games/Motorsport Manager/Cloud/Saves: + "/unity3d/Playsport Games/Motorsport Manager/Cloud/Saves": tags: - save when: - os: linux - /unity3d/Playsport Games/Motorsport Manager/prefs: + "/unity3d/Playsport Games/Motorsport Manager/prefs": tags: - config when: @@ -348121,15 +349105,15 @@ Motorsport Manager: installDir: Motorsport Manager: {} launch: - /MM.app: + "/MM.app": - when: - os: mac store: steam - /MM.exe: + "/MM.exe": - when: - os: windows store: steam - /MM.x86_64: + "/MM.x86_64": - when: - os: linux store: steam @@ -348143,10 +349127,10 @@ Motte Island: installDir: Motte Island: {} launch: - /Motteisland.app: + "/Motteisland.app": - when: - store: steam - /Motteisland.exe: + "/Motteisland.exe": - when: - os: windows store: steam @@ -348154,12 +349138,12 @@ Motte Island: id: 291290 Mount & Blade: files: - /Mount&Blade: + "/Mount&Blade": tags: - config when: - os: windows - /Mount&Blade Savegames: + "/Mount&Blade Savegames": tags: - save when: @@ -348169,19 +349153,19 @@ Mount & Blade: installDir: Mount and Blade: {} launch: - /runme.exe: + "/runme.exe": - when: - store: steam steam: id: 22100 -'Mount & Blade II: Bannerlord': +"Mount & Blade II: Bannerlord": files: - /Mount and Blade II Bannerlord/Configs: + "/Mount and Blade II Bannerlord/Configs": tags: - config when: - os: windows - /Mount and Blade II Bannerlord/Game Saves: + "/Mount and Blade II Bannerlord/Game Saves": tags: - save when: @@ -348191,47 +349175,47 @@ Mount & Blade: installDir: Mount & Blade II Bannerlord: {} launch: - /bin/Win64_Shipping_Client/Bannerlord.Native.exe: + "/bin/Win64_Shipping_Client/Bannerlord.Native.exe": - when: - os: linux store: steam - workingDir: /bin/Win64_Shipping_Client - /bin/Win64_Shipping_Client/TaleWorlds.MountAndBlade.Launcher.exe: + workingDir: "/bin/Win64_Shipping_Client" + "/bin/Win64_Shipping_Client/TaleWorlds.MountAndBlade.Launcher.exe": - when: - bit: 64 os: windows store: steam - workingDir: /bin/Win64_Shipping_Client + workingDir: "/bin/Win64_Shipping_Client" steam: id: 261550 -'Mount & Blade: Warband': +"Mount & Blade: Warband": files: - /.mbwarband: + "/.mbwarband": tags: - config when: - os: linux - /.mbwarband/Savegames: + "/.mbwarband/Savegames": tags: - save when: - os: linux - /Library/Application Support/MBWarband: + "/Library/Application Support/MBWarband": tags: - config when: - os: mac - /Library/Application Support/MBWarband/Savegames: + "/Library/Application Support/MBWarband/Savegames": tags: - save when: - os: mac - /Mount&Blade Warband: + "/Mount&Blade Warband": tags: - config when: - os: windows - /Mount&Blade Warband Savegames: + "/Mount&Blade Warband Savegames": tags: - save when: @@ -348241,36 +349225,36 @@ Mount & Blade: installDir: MountBlade Warband: {} launch: - /MBWLauncher.app: + "/MBWLauncher.app": - when: - os: mac store: steam - /Mount and Blade.app: + "/Mount and Blade.app": - when: - os: mac store: steam - /mb_warband.exe: + "/mb_warband.exe": - when: - os: windows store: steam - /mb_warband_linux: + "/mb_warband_linux": - when: - os: linux store: steam - /mbw_config.sh: + "/mbw_config.sh": - when: - os: linux store: steam steam: id: 48700 -'Mount & Blade: With Fire & Sword': +"Mount & Blade: With Fire & Sword": files: - /Mount&Blade With Fire and Sword: + "/Mount&Blade With Fire and Sword": tags: - config when: - os: windows - /Mount&Blade With Fire and Sword/Savegames: + "/Mount&Blade With Fire and Sword/Savegames": tags: - save when: @@ -348280,7 +349264,7 @@ Mount & Blade: installDir: Mount & Blade With Fire and Sword: {} launch: - /mb_wfas.exe: + "/mb_wfas.exe": - when: - store: steam steam: @@ -348289,7 +349273,7 @@ Mount Hill: installDir: Mount Hill: {} launch: - /MountHill.exe: + "/MountHill.exe": - when: - os: windows store: steam @@ -348299,8 +349283,8 @@ Mount Wingsuit: installDir: Mount Wingsuit: {} launch: - /MountWingsuit.exe: - - arguments: '-nonvr' + "/MountWingsuit.exe": + - arguments: "-nonvr" when: - os: windows store: steam @@ -348308,7 +349292,7 @@ Mount Wingsuit: id: 501110 Mount Your Friends: files: - /MountSave.sav: + "/MountSave.sav": tags: - config - save @@ -348317,21 +349301,21 @@ Mount Your Friends: installDir: Mount Your Friends: {} launch: - /MountYourFriends.exe: + "/MountYourFriends.exe": - when: - os: windows store: steam steam: id: 296470 -'Mount Your Friends 3D: A Hard Man Is Good to Climb': +"Mount Your Friends 3D: A Hard Man Is Good to Climb": installDir: Mount Your Friends 3D: {} launch: - /MYF3D.app: + "/MYF3D.app": - when: - os: mac store: steam - /MYF3D.exe: + "/MYF3D.exe": - when: - os: windows store: steam @@ -348339,17 +349323,17 @@ Mount Your Friends: id: 441010 Mountain: files: - /AppData/LocalLow/David OReilly/Mountain/*.sav: + "/AppData/LocalLow/David OReilly/Mountain/*.sav": tags: - save when: - os: windows - /unity3d/David/ OReilly/Mountain/*.sav: + "/unity3d/David/ OReilly/Mountain/*.sav": tags: - save when: - os: linux - /unity3d/David/ OReilly/Mountain/prefs: + "/unity3d/David/ OReilly/Mountain/prefs": tags: - config when: @@ -348357,35 +349341,35 @@ Mountain: installDir: Mountain: {} launch: - /Mountain.app: + "/Mountain.app": - when: - os: mac store: steam - /Mountain.exe: + "/Mountain.exe": - when: - os: windows store: steam - /Mountain.x86: + "/Mountain.x86": - when: - bit: 32 os: linux store: steam - /Mountain.x86_64: + "/Mountain.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 313340 -'Mountain Crime: Requital': +"Mountain Crime: Requital": installDir: MountainCrime: {} launch: - /MountainCrime.exe: + "/MountainCrime.exe": - when: - os: windows store: steam - /MountainCrimeRequital.app: + "/MountainCrimeRequital.app": - when: - os: mac store: steam @@ -348400,7 +349384,7 @@ Mountain Racing: installDir: Mountain Racing: {} launch: - /mountainracing.exe: + "/mountainracing.exe": - when: - os: windows store: steam @@ -348410,7 +349394,7 @@ Mountain Rescue Simulator: installDir: Mountain Rescue Simulator: {} launch: - /Mountain Rescue Simulator.exe: + "/Mountain Rescue Simulator.exe": - when: - store: steam steam: @@ -348419,26 +349403,26 @@ Mountain Taxi Driver: installDir: Mountain Taxi Driver: {} launch: - /Mountain Taxi Driver.exe: + "/Mountain Taxi Driver.exe": - when: - os: windows store: steam steam: id: 1092980 -'Mountain Trap 2: Under the Cloak of Fear': +"Mountain Trap 2: Under the Cloak of Fear": installDir: Mountain Trap 2 Under the Cloak of Fear: {} launch: - /MountainTrap2.exe: + "/MountainTrap2.exe": - when: - store: steam steam: id: 563330 -'Mountain Trap: The Manor of Memories': +"Mountain Trap: The Manor of Memories": installDir: Mountain Trap The Manor of Memories: {} launch: - /MountainTrap.exe: + "/MountainTrap.exe": - when: - store: steam steam: @@ -348447,7 +349431,7 @@ Mountain Troll: installDir: Mountain Troll: {} launch: - /Mountain Troll.exe: + "/Mountain Troll.exe": - when: - os: windows store: steam @@ -348457,7 +349441,7 @@ Mountain of Faith: installDir: th10: {} launch: - /th10.exe: + "/th10.exe": - when: - os: windows store: steam @@ -348467,7 +349451,7 @@ Mountaineer: installDir: Mountaineer: {} launch: - /Mountaineer.exe: + "/Mountaineer.exe": - when: - bit: 64 os: windows @@ -348478,7 +349462,7 @@ Mournful Sword: installDir: Mournful Sword: {} launch: - /MournfulSword.exe: + "/MournfulSword.exe": - when: - bit: 64 os: windows @@ -348489,7 +349473,7 @@ Mourning Inc.: installDir: Mourning Inc: {} launch: - /Mourning Inc.exe: + "/Mourning Inc.exe": - when: - os: windows store: steam @@ -348499,26 +349483,26 @@ Mouse Mayhem Shooting & Racing: installDir: Mouse Mayhem Shooting & Racing: {} launch: - /MouseMayhem.app/Contents/MacOS/MouseMayhem: + "/MouseMayhem.app/Contents/MacOS/MouseMayhem": - when: - os: mac store: steam - /MouseMayhem.x86: + "/MouseMayhem.x86": - when: - bit: 32 os: linux store: steam - /MouseMayhem.x86_64: + "/MouseMayhem.x86_64": - when: - bit: 64 os: linux store: steam - /Windows_x86/Mouse Mayhem.exe: + "/Windows_x86/Mouse Mayhem.exe": - when: - bit: 32 os: windows store: steam - /Windows_x86_64/Mouse Mayhem.exe: + "/Windows_x86_64/Mouse Mayhem.exe": - when: - bit: 64 os: windows @@ -348535,32 +349519,32 @@ Mouse in Lab: id: 587050 MouseCraft: files: - /User Data/save.xml: + "/User Data/save.xml": tags: - save when: - store: steam - /User Data/settings.xml: + "/User Data/settings.xml": tags: - config when: - store: steam - /.config/unity3d/Crunching Koalas/MouseCraft: + "/.config/unity3d/Crunching Koalas/MouseCraft": tags: - save when: - os: linux - /Library/Application Support/Crunching Koalas/MouseCraft: + "/Library/Application Support/Crunching Koalas/MouseCraft": tags: - save when: - os: mac - /Crunching Koalas/MouseCraft/save.xml: + "/Crunching Koalas/MouseCraft/save.xml": tags: - save when: - os: windows - /Crunching Koalas/MouseCraft/settings.xml: + "/Crunching Koalas/MouseCraft/settings.xml": tags: - config when: @@ -348570,15 +349554,15 @@ MouseCraft: installDir: MouseCraft: {} launch: - /MouseCraft.app: + "/MouseCraft.app": - when: - os: mac store: steam - /MouseCraft.exe: + "/MouseCraft.exe": - when: - os: windows store: steam - /MouseCraft.x86: + "/MouseCraft.x86": - when: - os: linux store: steam @@ -348591,7 +349575,7 @@ MouseWars Party: installDir: MouseWars: {} launch: - /MouseWars.exe: + "/MouseWars.exe": - when: - bit: 64 os: windows @@ -348602,11 +349586,11 @@ Mousegun: installDir: Escape Mouse Gun: {} launch: - /Mousegun.app: + "/Mousegun.app": - when: - os: mac store: steam - /Mousegun.exe: + "/Mousegun.exe": - when: - os: windows store: steam @@ -348616,7 +349600,7 @@ Moustache Mountain: installDir: Moustache Mountain: {} launch: - /MoustacheMountain.exe: + "/MoustacheMountain.exe": - when: - os: windows store: steam @@ -348624,12 +349608,12 @@ Moustache Mountain: id: 457520 Move or Die: files: - /startup.ini: + "/startup.ini": tags: - config when: - os: windows - /love/Move Or Die/startup.ini: + "/love/Move Or Die/startup.ini": tags: - config when: @@ -348637,19 +349621,19 @@ Move or Die: installDir: Move or Die: {} launch: - /Editor.exe: + "/Editor.exe": - when: - os: windows store: steam - /MoveOrDie.exe: + "/MoveOrDie.exe": - when: - os: windows store: steam - /start_linux32.sh: + "/start_linux32.sh": - when: - os: linux store: steam - /start_osx32.sh: + "/start_osx32.sh": - when: - os: mac store: steam @@ -348659,20 +349643,20 @@ Mover: installDir: Mover: {} launch: - /MOVER.app/Contents/MacOS/MOVER: + "/MOVER.app/Contents/MacOS/MOVER": - when: - os: mac store: steam - /MOVER.exe: + "/MOVER.exe": - when: - os: windows store: steam - /MOVER.x86: + "/MOVER.x86": - when: - bit: 32 os: linux store: steam - /MOVER.x86_64: + "/MOVER.x86_64": - when: - bit: 64 os: linux @@ -348683,7 +349667,7 @@ Moves: installDir: Moves: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -348693,24 +349677,24 @@ Movie Actor Trivia: installDir: Movie Actor Trivia: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam steam: id: 1598130 -'Movie Maven: A Tycoon Game': +"Movie Maven: A Tycoon Game": steam: id: 1107520 -'Movie Studio Boss: The Sequel': +"Movie Studio Boss: The Sequel": installDir: Movie Studio Boss The Sequel: {} launch: - /MovieStudioBossTheSequel.app: + "/MovieStudioBossTheSequel.app": - when: - os: mac store: steam - /MovieStudioBossTheSequel.exe: + "/MovieStudioBossTheSequel.exe": - when: - os: windows store: steam @@ -348728,7 +349712,7 @@ Moving Hazard: installDir: Moving Hazard: {} launch: - /MHGame.exe: + "/MHGame.exe": - when: - bit: 64 os: windows @@ -348737,7 +349721,7 @@ Moving Hazard: id: 334670 Moving Out: files: - /AppData/LocalLow/Team17 Digital Limited/Moving Out/datastorage: + "/AppData/LocalLow/Team17 Digital Limited/Moving Out/datastorage": tags: - save when: @@ -348749,7 +349733,7 @@ Moving Out: installDir: Moving Out: {} launch: - /MovingOut.exe: + "/MovingOut.exe": - when: - os: windows store: steam @@ -348759,12 +349743,12 @@ Movit: installDir: MOVIT: {} launch: - /movit.exe: + "/movit.exe": - when: - bit: 64 os: windows store: steam - /movit_linux: + "/movit_linux": - when: - bit: 64 os: linux @@ -348775,34 +349759,34 @@ Mow Problem: installDir: Mow Problem: {} launch: - /mow_problem.app/Contents/MacOS/mow_problem: + "/mow_problem.app/Contents/MacOS/mow_problem": - when: - os: mac store: steam - /mow_problem.exe: + "/mow_problem.exe": - when: - bit: 64 os: windows store: steam steam: id: 1037140 -Mowin' & Throwin': +"Mowin' & Throwin'": installDir: - Mowin' & Throwin': {} + "Mowin' & Throwin'": {} launch: - /MowinThrowin.exe: + "/MowinThrowin.exe": - when: - store: steam steam: id: 762030 Mowteor: files: - /base/savegames: + "/base/savegames": tags: - save when: - os: windows - /jgui3.ini: + "/jgui3.ini": tags: - config when: @@ -348811,22 +349795,22 @@ Moysenland: installDir: Moysenland: {} launch: - /Moysenland.app: + "/Moysenland.app": - when: - os: mac store: steam - /Moysenland.exe: + "/Moysenland.exe": - when: - bit: 64 os: windows store: steam steam: id: 1148110 -'Moékuri: Adorable + Tactical SRPG': +"Moékuri: Adorable + Tactical SRPG": installDir: Moekuri: {} launch: - /moekuri.exe: + "/moekuri.exe": - when: - os: windows store: steam @@ -348836,25 +349820,25 @@ Mr Blaster: installDir: Mr Blaster: {} launch: - /Mr Blaster.app: + "/Mr Blaster.app": - when: - os: mac store: steam - /Mr Blaster.exe: + "/Mr Blaster.exe": - when: - os: windows store: steam - /Mr Blaster.x86: + "/Mr Blaster.x86": - when: - os: linux store: steam steam: id: 618490 -Mr Boom's Firework Factory: +"Mr Boom's Firework Factory": installDir: - Mr Boom's Firework Factory: {} + "Mr Boom's Firework Factory": {} launch: - /fwf.exe: + "/fwf.exe": - when: - bit: 64 os: windows @@ -348865,7 +349849,7 @@ Mr Dirt Poor: installDir: Mr Dirt Poor: {} launch: - /Mr Dirt Poor.exe: + "/Mr Dirt Poor.exe": - when: - store: steam steam: @@ -348874,7 +349858,7 @@ Mr Husky: installDir: Mr Husky: {} launch: - /Mr Husky.exe: + "/Mr Husky.exe": - when: - store: steam steam: @@ -348883,7 +349867,7 @@ Mr Joshua Carrot: installDir: Mr. Joshua Carrot: {} launch: - /Mr Joshua Carrot.exe: + "/Mr Joshua Carrot.exe": - when: - os: windows store: steam @@ -348893,20 +349877,20 @@ Mr Makeshifter: installDir: Mr Makeshifter: {} launch: - /MrMakeshifter.app: + "/MrMakeshifter.app": - when: - os: mac store: steam - /MrMakeshifter.exe: + "/MrMakeshifter.exe": - when: - os: windows store: steam - /MrMakeshifter.x86: + "/MrMakeshifter.x86": - when: - bit: 32 os: linux store: steam - /MrMakeshifter.x86_64: + "/MrMakeshifter.x86_64": - when: - bit: 64 os: linux @@ -348917,73 +349901,73 @@ Mr Nibbles Forever: installDir: MrNibblesForever: {} launch: - /Mr Nibbles Forever.app: + "/Mr Nibbles Forever.app": - when: - os: mac store: steam - /Mr Nibbles Forever.exe: + "/Mr Nibbles Forever.exe": - when: - os: windows store: steam - /Mr Nibbles Forever.x86: + "/Mr Nibbles Forever.x86": - when: - bit: 32 os: linux store: steam - /Mr Nibbles Forever.x86_64: + "/Mr Nibbles Forever.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 448050 -Mr Rabbit's Alphabet Forest Adventure: +"Mr Rabbit's Alphabet Forest Adventure": installDir: - Mr Rabbit's Alphabet Forest Adventure: {} + "Mr Rabbit's Alphabet Forest Adventure": {} launch: - /Rabbit.app: + "/Rabbit.app": - when: - os: mac store: steam - /Rabbit.exe: + "/Rabbit.exe": - when: - os: windows store: steam - /Rabbit.x86: + "/Rabbit.x86": - when: - bit: 32 os: linux store: steam - /Rabbit.x86_64: + "/Rabbit.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 652390 -Mr Rabbit's Jigsaw Puzzle: +"Mr Rabbit's Jigsaw Puzzle": installDir: - Mr Rabbit's Jigsaw Puzzle: {} + "Mr Rabbit's Jigsaw Puzzle": {} launch: - /Rabbit.app: + "/Rabbit.app": - when: - os: mac store: steam - /Rabbit.exe: + "/Rabbit.exe": - when: - os: windows store: steam steam: id: 685040 -Mr Rabbit's Memory Game: +"Mr Rabbit's Memory Game": installDir: - Mr Rabbit's Memory: {} + "Mr Rabbit's Memory": {} launch: - /Memory.app: + "/Memory.app": - when: - os: mac store: steam - /Memory.exe: + "/Memory.exe": - when: - bit: 64 os: windows @@ -348997,7 +349981,7 @@ Mr. Barrel: installDir: Mr. Barrel: {} launch: - /mr_barrel.exe: + "/mr_barrel.exe": - when: - bit: 64 os: windows @@ -349006,12 +349990,12 @@ Mr. Barrel: id: 713380 Mr. Bree+: files: - /MrBree/Local Store/#SharedObjects/MrBree.swf/Mr.Bree.sol: + "/MrBree/Local Store/#SharedObjects/MrBree.swf/Mr.Bree.sol": tags: - save when: - os: windows - /MrBree/Local Store/#SharedObjects/MrBree.swf/MrBreePreferences.sol: + "/MrBree/Local Store/#SharedObjects/MrBree.swf/MrBreePreferences.sol": tags: - config when: @@ -349021,7 +350005,7 @@ Mr. Bree+: installDir: MrBree+: {} launch: - /MrBree.exe: + "/MrBree.exe": - when: - os: windows store: steam @@ -349031,7 +350015,7 @@ Mr. Donovan: installDir: Mr Donovan: {} launch: - /Mr Donovan.exe: + "/Mr Donovan.exe": - when: - os: windows store: steam @@ -349039,12 +350023,12 @@ Mr. Donovan: id: 580510 Mr. Driller Drill Land: files: - /drillland.bin: + "/drillland.bin": tags: - save when: - os: windows - /DrillLand/DrillLand.ini: + "/DrillLand/DrillLand.ini": tags: - config when: @@ -349052,7 +350036,7 @@ Mr. Driller Drill Land: installDir: SSMK: {} launch: - /DrillLand.exe: + "/DrillLand.exe": - when: - bit: 64 os: windows @@ -349063,27 +350047,30 @@ Mr. Dubstep: installDir: Mr. Dubstep: {} launch: - /Mr Dubstep.exe: + "/Mr Dubstep.exe": - when: - bit: 32 os: windows store: steam - /Mr.Dubstep.app: + "/Mr.Dubstep.app": - when: - bit: 32 os: mac store: steam - /Mr.Dubstep.exe: + - bit: 64 + os: mac + store: steam + "/Mr.Dubstep.exe": - when: - bit: 64 os: windows store: steam - /Mr.Dubstep.x86: + "/Mr.Dubstep.x86": - when: - bit: 32 os: linux store: steam - /Mr.Dubstep.x86_64: + "/Mr.Dubstep.x86_64": - when: - bit: 64 os: linux @@ -349094,11 +350081,11 @@ Mr. Fast: installDir: Mr. Fast: {} launch: - /mrfast.app: + "/mrfast.app": - when: - os: mac store: steam - /mrfast.exe: + "/mrfast.exe": - when: - os: windows store: steam @@ -349107,29 +350094,29 @@ Mr. Fast: Mr. Grayscale: steam: id: 833960 -Mr. Hopp's Playhouse: +"Mr. Hopp's Playhouse": installDir: - Mr. Hopp's Playhouse: {} + "Mr. Hopp's Playhouse": {} steam: id: 1182370 Mr. Jezko: installDir: MrJezko: {} launch: - /mrjezko.app/Contents/MacOS/mrjezko: + "/mrjezko.app/Contents/MacOS/mrjezko": - when: - os: mac store: steam - /mrjezko.exe: + "/mrjezko.exe": - when: - os: windows store: steam - /mrjezko.x86: + "/mrjezko.x86": - when: - bit: 32 os: linux store: steam - /mrjezko.x86_64: + "/mrjezko.x86_64": - when: - bit: 64 os: linux @@ -349152,7 +350139,7 @@ Mr. Massagy: installDir: Mr. Massagy: {} launch: - /Mr Massagy.exe: + "/Mr Massagy.exe": - when: - os: windows store: steam @@ -349162,7 +350149,7 @@ Mr. Maze: installDir: Mr. Maze: {} launch: - /MrMaze.exe: + "/MrMaze.exe": - when: - os: windows store: steam @@ -349172,7 +350159,7 @@ Mr. Parkour: installDir: Mr. Parkour: {} launch: - /Mr Parkour.exe: + "/Mr Parkour.exe": - when: - store: steam steam: @@ -349181,7 +350168,7 @@ Mr. Parkour 2: installDir: Mr. Parkour 2: {} launch: - /Mr Parkour 2.exe: + "/Mr Parkour 2.exe": - when: - os: windows store: steam @@ -349191,7 +350178,7 @@ Mr. Parkour 3: installDir: Mr. Parkour 3: {} launch: - /Mr Parkour 3.exe: + "/Mr Parkour 3.exe": - when: - os: windows store: steam @@ -349201,21 +350188,21 @@ Mr. Prepper: installDir: MrPrepper: {} launch: - /MrPrepper.exe: + "/MrPrepper.exe": - when: - os: windows store: steam steam: id: 761830 -'Mr. Pumpkin 2: Kowloon walled city': +"Mr. Pumpkin 2: Kowloon walled city": installDir: Mr.PumpkinKowloon walled city: {} launch: - /Pumpkin2.app: + "/Pumpkin2.app": - when: - os: mac store: steam - /Pumpkin2.exe: + "/Pumpkin2.exe": - when: - os: windows store: steam @@ -349225,11 +350212,11 @@ Mr. Pumpkin Adventure: installDir: Mr. Pumpkin Adventure: {} launch: - /MrPumpkin.app: + "/MrPumpkin.app": - when: - os: mac store: steam - /MrPumpkin.exe: + "/MrPumpkin.exe": - when: - os: windows store: steam @@ -349237,7 +350224,7 @@ Mr. Pumpkin Adventure: id: 491220 Mr. Robot: files: - /MrRobot/data/saves: + "/MrRobot/data/saves": tags: - save when: @@ -349245,7 +350232,7 @@ Mr. Robot: installDir: MrRobot: {} launch: - /MrRobot.exe: + "/MrRobot.exe": - when: - store: steam registry: @@ -349258,7 +350245,7 @@ Mr. Shadow: installDir: Mr. Shadow: {} launch: - /Mr Shadow.exe: + "/Mr Shadow.exe": - when: - os: windows store: steam @@ -349266,12 +350253,12 @@ Mr. Shadow: id: 543270 Mr. Shifty: files: - ./Library/Preferences/unity.Team Shifty.Mr Shifty.plist: + "./Library/Preferences/unity.Team Shifty.Mr Shifty.plist": tags: - save when: - os: mac - /.config/unity3d/Team Shifty/Mr Shifty: + "/.config/unity3d/Team Shifty/Mr Shifty": tags: - save when: @@ -349279,15 +350266,15 @@ Mr. Shifty: installDir: Mr Shifty: {} launch: - /MrShifty.app: + "/MrShifty.app": - when: - os: mac store: steam - /MrShifty.exe: + "/MrShifty.exe": - when: - os: windows store: steam - /MrShifty.x86_64: + "/MrShifty.x86_64": - when: - os: linux store: steam @@ -349303,11 +350290,11 @@ Mr. Sweet: Mr. Sweet: {} steam: id: 839230 -Mr. Triangle's Adventure: +"Mr. Triangle's Adventure": installDir: - Mr. Triangle's Adventure: {} + "Mr. Triangle's Adventure": {} launch: - /triangleadventure.exe: + "/triangleadventure.exe": - when: - os: windows store: steam @@ -349315,7 +350302,7 @@ Mr. Triangle's Adventure: id: 574690 Mr. Vegan: files: - /Mr_Vegan: + "/Mr_Vegan": tags: - save when: @@ -349323,26 +350310,26 @@ Mr. Vegan: installDir: mr.Vegan: {} launch: - /Mr Vegan.exe: + "/Mr Vegan.exe": - when: - os: windows store: steam - /runner: + "/runner": - when: - os: linux store: steam steam: id: 873610 -'Mr.Hack Jack: Robot Detective': +"Mr.Hack Jack: Robot Detective": installDir: Detective Game: {} steam: id: 1019230 -Mr.King Luo!Don't be kidding: +"Mr.King Luo!Don't be kidding": installDir: Change all My dear GOD of death: {} launch: - /Change all My dear GOD of death.exe: + "/Change all My dear GOD of death.exe": - when: - os: windows store: steam @@ -349355,7 +350342,7 @@ Mr.President Prologue Episode: id: 530540 Mr.President!: files: - /AppData/LocalLow/GameDeveloperX/MrPresident: + "/AppData/LocalLow/GameDeveloperX/MrPresident": tags: - save when: @@ -349363,7 +350350,7 @@ Mr.President!: installDir: Mr.President!: {} launch: - /Mr.Prez.exe: + "/Mr.Prez.exe": - when: - os: windows store: steam @@ -349377,43 +350364,43 @@ Mrs Snake: installDir: MRS SNAKE: {} launch: - /mrssnake.exe: + "/mrssnake.exe": - when: - os: windows store: steam steam: id: 811910 -'Ms. Holmes: The Monster of the Baskervilles': +"Ms. Holmes: The Monster of the Baskervilles": installDir: - Ms. Holmes The Monster of the Baskervilles Collector's Edition: {} + "Ms. Holmes The Monster of the Baskervilles Collector's Edition": {} launch: - /MsHolmes_TheMonsterOfTheBaskervilles_CE.exe: + "/MsHolmes_TheMonsterOfTheBaskervilles_CE.exe": - when: - os: windows store: steam steam: id: 1093130 -'Ms. Pac-Man: Quest for the Golden Maze': +"Ms. Pac-Man: Quest for the Golden Maze": files: - /SaveState.bin: + "/SaveState.bin": tags: - save when: - os: windows - /SetupInfo.txt: + "/SetupInfo.txt": tags: - config when: - os: windows Ms. Splosion Man: files: - /userdata//105420/remote/saves: + "/userdata//105420/remote/saves": tags: - save when: - os: windows store: steam - /Ms. Splosion Man: + "/Ms. Splosion Man": tags: - config when: @@ -349421,16 +350408,16 @@ Ms. Splosion Man: installDir: MsSplosionMan: {} launch: - /MsSplosionMan.exe: + "/MsSplosionMan.exe": - when: - store: steam steam: id: 105420 -Ms. Squeaker's Home for the Sick: +"Ms. Squeaker's Home for the Sick": installDir: - Ms Squeaker's Home for the Sick: {} + "Ms Squeaker's Home for the Sick": {} launch: - /MSHFTS.exe: + "/MSHFTS.exe": - when: - os: windows store: steam @@ -349440,11 +350427,11 @@ Mu Cartographer: installDir: Mu Cartographer: {} launch: - /Mu Cartographer.app: + "/Mu Cartographer.app": - when: - os: mac store: steam - /Mu Cartographer.exe: + "/Mu Cartographer.exe": - when: - os: windows store: steam @@ -349457,7 +350444,7 @@ Mu Cartographer: id: 513360 Mu Complex: files: - /mc_complex.save: + "/mc_complex.save": tags: - save when: @@ -349465,14 +350452,17 @@ Mu Complex: installDir: mucomplex: {} launch: - /mucomplex.exe: + "/mucomplex.exe": - when: - os: windows store: steam - /start_mc.sh: + "/start_mc.sh": - when: - os: linux store: steam + - bit: 64 + os: mac + store: steam steam: id: 383690 MuX: @@ -349484,11 +350474,11 @@ Muay Thai Fighting: installDir: Muay Thai Fighting: {} launch: - /Muay Thai Fighting.app/Contents/MacOS/Muay Thai Fighting: + "/Muay Thai Fighting.app/Contents/MacOS/Muay Thai Fighting": - when: - os: mac store: steam - /Muay Thai Fighting.exe: + "/Muay Thai Fighting.exe": - when: - os: windows store: steam @@ -349496,19 +350486,19 @@ Muay Thai Fighting: id: 878400 MudRunner: files: - /MudRunner: - tags: - - config - - save - when: - - store: epic - /SpinTires MudRunner: + "/MudRunner": tags: - config - save when: - os: windows - /Packages/FocusHomeInteractiveSA.29415A83FE0AA_4hny5m903y3g0/LocalCache/Roaming/MudRunnerWinStore: + "/SpinTires MudRunner": + tags: + - config + - save + when: + - os: windows + "/Packages/FocusHomeInteractiveSA.29415A83FE0AA_4hny5m903y3g0/LocalCache/Roaming/MudRunnerWinStore": tags: - config - save @@ -349524,7 +350514,7 @@ MudRunner: installDir: MudRunner: {} launch: - /MudRunner.exe: + "/MudRunner.exe": - when: - bit: 64 os: windows @@ -349535,11 +350525,11 @@ Muddledash: installDir: Muddledash: {} launch: - /Muddledash.app: + "/Muddledash.app": - when: - os: mac store: steam - /Muddledash.exe: + "/Muddledash.exe": - when: - os: windows store: steam @@ -349549,13 +350539,13 @@ Muddy Heights 2: installDir: Muddy Heights 2: {} launch: - /Muddy Heights 2.exe: + "/Muddy Heights 2.exe": - when: - os: windows store: steam steam: id: 463850 -Muerte's Arena: +"Muerte's Arena": installDir: MuertesArena: {} steam: @@ -349564,11 +350554,11 @@ Muffin Knight: installDir: Muffin Knight: {} launch: - /MK.exe: + "/MK.exe": - when: - os: windows store: steam - /Muffin Knight.app: + "/Muffin Knight.app": - when: - os: mac store: steam @@ -349582,7 +350572,7 @@ Muffled Warfare: installDir: MuffledWarfare: {} launch: - /Muffled Warfare.exe: + "/Muffled Warfare.exe": - when: - os: windows store: steam @@ -349592,7 +350582,7 @@ Mugen Souls: installDir: Mugen Souls: {} launch: - /MugenSouls.exe: + "/MugenSouls.exe": - when: - store: steam steam: @@ -349601,14 +350591,14 @@ Mugen Souls Z: installDir: Mugen Souls Z: {} launch: - /MugenSoulsZ.exe: + "/MugenSoulsZ.exe": - when: - store: steam steam: id: 466920 Mugsters: files: - /AppData/LocalLow/Reinkout Games/Mugsters/Saves: + "/AppData/LocalLow/Reinkout Games/Mugsters/Saves": tags: - save when: @@ -349616,11 +350606,11 @@ Mugsters: installDir: Mugsters: {} launch: - /Mugsters.app: + "/Mugsters.app": - when: - os: mac store: steam - /Mugsters.exe: + "/Mugsters.exe": - when: - bit: 64 os: windows @@ -349634,11 +350624,11 @@ Mugsters: Mukti: steam: id: 760250 -'Mula: The Cycle of Shadow': +"Mula: The Cycle of Shadow": installDir: Mula The Cycle of Shadow: {} launch: - /Mula.exe: + "/Mula.exe": - when: - os: windows store: steam @@ -349650,11 +350640,11 @@ Mulaka: installDir: Mulaka: {} launch: - /Mulaka.app: + "/Mulaka.app": - when: - os: mac store: steam - /Mulaka.exe: + "/Mulaka.exe": - when: - os: windows store: steam @@ -349664,11 +350654,11 @@ Mulite Sword Man: installDir: Mulite Sword Man: {} launch: - /Mulite.app/Contents/MacOS/Mulite: + "/Mulite.app/Contents/MacOS/Mulite": - when: - os: mac store: steam - /mulite.exe: + "/mulite.exe": - when: - os: windows store: steam @@ -349678,7 +350668,7 @@ Mulletman and the Molemen: installDir: Mulletman and the Molemen: {} launch: - /MULLETMAN.exe: + "/MULLETMAN.exe": - when: - os: windows store: steam @@ -349688,7 +350678,7 @@ Multi-Quest: installDir: Multi-Quest: {} launch: - /Multi-Quest.exe: + "/Multi-Quest.exe": - when: - os: windows store: steam @@ -349701,7 +350691,7 @@ MultiBall: installDir: MultiBall: {} launch: - /TheBall.exe: + "/TheBall.exe": - when: - os: windows store: steam @@ -349711,26 +350701,26 @@ MultiTaskMaster: installDir: MultiTaskMaster: {} launch: - /MultiTaskMaster.app: + "/MultiTaskMaster.app": - when: - os: mac store: steam - /MultiTaskMaster.exe: + "/MultiTaskMaster.exe": - when: - bit: 32 os: windows store: steam - /MultiTaskMaster.x86: + "/MultiTaskMaster.x86": - when: - bit: 32 os: linux store: steam - /MultiTaskMaster64.exe: + "/MultiTaskMaster64.exe": - when: - bit: 64 os: windows store: steam - /MultiTaskMaster64.x86_64: + "/MultiTaskMaster64.x86_64": - when: - bit: 64 os: linux @@ -349739,12 +350729,12 @@ MultiTaskMaster: id: 879290 MultiVersus: files: - /MultiVersus/Saved/Config/WindowsClient: + "/MultiVersus/Saved/Config/WindowsClient": tags: - config when: - os: windows - /MultiVersus/Saved/SaveGames: + "/MultiVersus/Saved/SaveGames": tags: - save when: @@ -349757,8 +350747,8 @@ MultiVersus: installDir: MultiVersus: {} launch: - /start_protected_game.exe: - - arguments: '-allowsteam' + "/start_protected_game.exe": + - arguments: "-allowsteam" when: - bit: 64 os: windows @@ -349769,15 +350759,15 @@ Multibombers: installDir: Multibombers: {} launch: - /Multibombers.app: + "/Multibombers.app": - when: - os: mac store: steam - /Multibombers.exe: + "/Multibombers.exe": - when: - os: windows store: steam - /Multibombers.x86_64: + "/Multibombers.x86_64": - when: - os: linux store: steam @@ -349787,7 +350777,7 @@ Multicellular: installDir: Multicellular: {} launch: - /Multicellular.exe: + "/Multicellular.exe": - when: - os: windows store: steam @@ -349800,26 +350790,26 @@ Multimirror: installDir: Multimirror: {} launch: - /Multimirror.app: + "/Multimirror.app": - when: - os: mac store: steam - /Multimirror.x86: + "/Multimirror.x86": - when: - bit: 32 os: linux store: steam - /Multimirror.x86_64: + "/Multimirror.x86_64": - when: - bit: 64 os: linux store: steam - /x64/Multimirror.exe: + "/x64/Multimirror.exe": - when: - bit: 64 os: windows store: steam - /x86/Multimirror.exe: + "/x86/Multimirror.exe": - when: - bit: 32 os: mac @@ -349830,7 +350820,7 @@ Multiplayer FPS Demo: installDir: MultiplayerFPSTutorialDemo: {} launch: - /MultiplayerFPSDemo.exe: + "/MultiplayerFPSDemo.exe": - when: - store: steam steam: @@ -349842,7 +350832,7 @@ MultiplayerFPS: installDir: MultiplayerFPS: {} launch: - /Crash-Site Conquest.exe: + "/Crash-Site Conquest.exe": - when: - os: windows store: steam @@ -349852,7 +350842,7 @@ Multiple Views Objects 多视体: installDir: Multiple Views Objects: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -349862,7 +350852,7 @@ Multirotor Sim 2: installDir: Multirotor Sim 2: {} launch: - /mrotorsim2/mrotorsim2.exe: + "/mrotorsim2/mrotorsim2.exe": - when: - store: steam steam: @@ -349871,7 +350861,7 @@ Multishop Tycoon Deluxe: installDir: Multishop Tycoon Deluxe: {} launch: - /Multishop Tycoon Deluxe.exe: + "/Multishop Tycoon Deluxe.exe": - when: - os: windows store: steam @@ -349882,7 +350872,7 @@ Multishot: id: 2004500 Multiwinia: files: - /.multiwinia: + "/.multiwinia": tags: - config - save @@ -349893,15 +350883,15 @@ Multiwinia: installDir: Multiwinia: {} launch: - /Multiwinia.app: + "/Multiwinia.app": - when: - os: mac store: steam - /multiwinia.exe: + "/multiwinia.exe": - when: - os: windows store: steam - /run_steam.sh: + "/run_steam.sh": - when: - os: linux store: steam @@ -349914,7 +350904,7 @@ Mummy on the run: installDir: Mummy on the run: {} launch: - /Mummy on the run.exe: + "/Mummy on the run.exe": - when: - os: windows store: steam @@ -349924,7 +350914,7 @@ Mumps: installDir: Mumps: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -349939,15 +350929,15 @@ Munchie Match: installDir: Munchie_Match: {} launch: - /MunchieMatch: + "/MunchieMatch": - when: - os: linux store: steam - /MunchieMatch.app/Contents/MacOS/MunchieMatch: + "/MunchieMatch.app/Contents/MacOS/MunchieMatch": - when: - os: mac store: steam - /MunchieMatch.exe: + "/MunchieMatch.exe": - when: - os: windows store: steam @@ -349957,16 +350947,16 @@ Munchies: installDir: Munchies: {} launch: - /Munchies.exe: + "/Munchies.exe": - when: - store: steam steam: id: 884080 -'Munchkin: Quacked Quest': +"Munchkin: Quacked Quest": installDir: Munchkin: {} launch: - /Munchkin.exe: + "/Munchkin.exe": - when: - bit: 64 os: windows @@ -349975,7 +350965,7 @@ Munchies: id: 926730 Mundaun: files: - /AppData/LocalLow/Hidden Fields/Mundaun: + "/AppData/LocalLow/Hidden Fields/Mundaun": tags: - save when: @@ -349985,7 +350975,7 @@ Mundaun: installDir: Mundaun: {} launch: - /Mundaun.exe: + "/Mundaun.exe": - when: - os: windows store: steam @@ -349999,7 +350989,7 @@ Mundus - Impossible Universe: installDir: Mundus: {} launch: - /Mundus.exe: + "/Mundus.exe": - when: - os: windows store: steam @@ -350009,7 +350999,7 @@ Mundus - Impossible Universe 2: installDir: Mundus - Impossible Universe 2: {} launch: - /Mundus2.exe: + "/Mundus2.exe": - when: - os: windows store: steam @@ -350019,23 +351009,23 @@ Munich Bus Simulator: installDir: Munich Bus Simulator: {} launch: - /Bin32/CBS2.exe: + "/Bin32/CBS2.exe": - when: - bit: 32 os: windows store: steam - workingDir: /Bin32 - /Bin64/CBS2.exe: + workingDir: "/Bin32" + "/Bin64/CBS2.exe": - when: - bit: 64 os: windows store: steam - workingDir: /Bin64 + workingDir: "/Bin64" steam: id: 283560 Munin: files: - /.config/unity3d/GOJIRA/Munin: + "/.config/unity3d/GOJIRA/Munin": tags: - config when: @@ -350043,15 +351033,15 @@ Munin: installDir: Munin: {} launch: - /Munin: + "/Munin": - when: - os: linux store: steam - /Munin.app: + "/Munin.app": - when: - os: mac store: steam - /Munin.exe: + "/Munin.exe": - when: - os: windows store: steam @@ -350062,11 +351052,11 @@ Munin: - save steam: id: 281750 -'Muppy The Bunny : The Danger of Wishes': +"Muppy The Bunny : The Danger of Wishes": installDir: windows_content: {} launch: - /Muppy The Bunny TDOW Final2.exe: + "/Muppy The Bunny TDOW Final2.exe": - when: - os: windows store: steam @@ -350076,7 +351066,7 @@ Mural: installDir: Mural: {} launch: - /Mural.exe: + "/Mural.exe": - when: - os: windows store: steam @@ -350084,17 +351074,17 @@ Mural: id: 1060900 Murasaki: files: - /Murasaki/data/replay/*.dat: + "/Murasaki/data/replay/*.dat": tags: - save when: - os: windows - /Murasaki/data/ss/*.png: + "/Murasaki/data/ss/*.png": tags: - save when: - os: windows - /save.dat: + "/save.dat": tags: - save when: @@ -350102,7 +351092,7 @@ Murasaki: installDir: Murasaki: {} launch: - /Murasaki/mu.exe: + "/Murasaki/mu.exe": - when: - os: windows store: steam @@ -350112,7 +351102,7 @@ Murasaki Tsurugi: installDir: Murasaki2: {} launch: - /Murasaki2/mu.exe: + "/Murasaki2/mu.exe": - when: - os: windows store: steam @@ -350125,61 +351115,61 @@ Murder: installDir: Murder: {} launch: - /Murder.app: + "/Murder.app": - when: - os: mac store: steam - /Murder.exe: + "/Murder.exe": - when: - os: windows store: steam - /Murder.sh: + "/Murder.sh": - when: - os: linux store: steam steam: id: 404080 -'Murder Diaries: Ankara': +"Murder Diaries: Ankara": installDir: MDA: {} launch: - /MDA.exe: + "/MDA.exe": - when: - os: windows store: steam - /MDA02.exe: + "/MDA02.exe": - when: - os: windows store: steam - /MDA03.exe: + "/MDA03.exe": - when: - os: windows store: steam - /MDA04.exe: + "/MDA04.exe": - when: - os: windows store: steam - /MDA05.exe: + "/MDA05.exe": - when: - os: windows store: steam - /MDA06.exe: + "/MDA06.exe": - when: - os: windows store: steam - /MDA07.exe: + "/MDA07.exe": - when: - os: windows store: steam - /MDA08.exe: + "/MDA08.exe": - when: - os: windows store: steam - /MDA09.exe: + "/MDA09.exe": - when: - os: windows store: steam - /MDA_TPS.exe: + "/MDA_TPS.exe": - when: - os: windows store: steam @@ -350187,7 +351177,7 @@ Murder: id: 795960 Murder House: files: - /AppData/LocalLow/Vague Scenario LLC_/Murder House: + "/AppData/LocalLow/Vague Scenario LLC_/Murder House": tags: - config - save @@ -350198,26 +351188,26 @@ Murder House: installDir: Murder House: {} launch: - /Murder House.exe: + "/Murder House.exe": - when: - os: windows store: steam steam: id: 1064460 -Murder In Tehran's Alleys 1933: +"Murder In Tehran's Alleys 1933": installDir: - Murder In Tehran's Alleys 1933: {} + "Murder In Tehran's Alleys 1933": {} launch: - /MurderInTehran'sAlleys1312.exe: + "/MurderInTehran'sAlleys1312.exe": - when: - store: steam steam: id: 630170 -Murder In Tehran's Alleys 2016: +"Murder In Tehran's Alleys 2016": installDir: - Murder In Tehran's Alleys 2016: {} + "Murder In Tehran's Alleys 2016": {} launch: - /MurderInTehran'sAlleys2.exe: + "/MurderInTehran'sAlleys2.exe": - when: - store: steam steam: @@ -350228,7 +351218,7 @@ Murder Is Game Over: installDir: Murder Is Game Over: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: @@ -350237,7 +351227,7 @@ Murder Machine Mini: installDir: Murder Machine Mini: {} launch: - /MurderMachineMini.exe: + "/MurderMachineMini.exe": - when: - os: windows store: steam @@ -350245,23 +351235,23 @@ Murder Machine Mini: id: 1024730 Murder Miners: files: - /.config/MurderMiners: + "/.config/MurderMiners": tags: - config when: - os: linux - /.local/share/MurderMiners: + "/.local/share/MurderMiners": tags: - save when: - os: linux - /Library/Application Support/MurderMiners: + "/Library/Application Support/MurderMiners": tags: - config - save when: - os: mac - /Saved Games/Murder Miners/MurderMinersSaveData/: + "/Saved Games/Murder Miners/MurderMinersSaveData/": tags: - save when: @@ -350269,15 +351259,15 @@ Murder Miners: installDir: MurderMiners: {} launch: - /Murder Miners.app: + "/Murder Miners.app": - when: - os: mac store: steam - /Murder Miners.exe: + "/Murder Miners.exe": - when: - os: windows store: steam - /MurderMiners: + "/MurderMiners": - when: - os: linux store: steam @@ -350290,7 +351280,7 @@ Murder Mystery Adventure: installDir: Murder Mystery Adventure: {} launch: - /MurderMysteryAdventure.exe: + "/MurderMysteryAdventure.exe": - when: - store: steam steam: @@ -350301,10 +351291,10 @@ Murder Mystery Machine: installDir: Murder Mystery Machine: {} launch: - /MurderMysteryMachine.exe: + "/MurderMysteryMachine.exe": - when: - store: steam - /TiltFive/MurderMysteryMachine_TiltFive.exe: + "/TiltFive/MurderMysteryMachine_TiltFive.exe": - when: - bit: 64 os: windows @@ -350313,17 +351303,17 @@ Murder Mystery Machine: id: 930280 Murder by Numbers: files: - /AppData/LocalLow/Mediatonic/Murder By Numbers/MemoryProgress.txt: + "/AppData/LocalLow/Mediatonic/Murder By Numbers/MemoryProgress.txt": tags: - save when: - os: windows - /AppData/LocalLow/Mediatonic/Murder By Numbers/save*.txt: + "/AppData/LocalLow/Mediatonic/Murder By Numbers/save*.txt": tags: - save when: - os: windows - /AppData/LocalLow/Mediatonic/Murder By Numbers/settings.txt: + "/AppData/LocalLow/Mediatonic/Murder By Numbers/settings.txt": tags: - config when: @@ -350339,7 +351329,7 @@ Murder by Numbers: installDir: Murder by Numbers: {} launch: - /MurderByNumbers.exe: + "/MurderByNumbers.exe": - when: - os: windows store: steam @@ -350353,7 +351343,7 @@ Murder on the Island: installDir: Murder On The Island: {} launch: - /MurderOnTheIsland.exe: + "/MurderOnTheIsland.exe": - when: - store: steam steam: @@ -350362,21 +351352,21 @@ Murder...: installDir: MurderGame: {} launch: - /gamefiles/murder_game.exe: + "/gamefiles/murder_game.exe": - when: - os: windows store: steam steam: id: 663540 -'Murdered: Soul Suspect': +"Murdered: Soul Suspect": files: - /userdata//233290/remote: + "/userdata//233290/remote": tags: - save when: - os: windows store: steam - /My Games/Murdered Soul Suspect/FateGame/Config: + "/My Games/Murdered Soul Suspect/FateGame/Config": tags: - config when: @@ -350384,27 +351374,27 @@ Murder...: installDir: Murdered Soul Suspect: {} launch: - /Binaries/Win64/Murdered.exe: + "/Binaries/Win64/Murdered.exe": - when: - os: windows store: steam - workingDir: /Binaries/Win64 - - arguments: '-SystemSettings=SafeMode' + workingDir: "/Binaries/Win64" + - arguments: "-SystemSettings=SafeMode" when: - os: windows store: steam - workingDir: /Binaries/Win64 + workingDir: "/Binaries/Win64" steam: id: 233290 Murderous Pursuits: installDir: Murderous Pursuits: {} launch: - /MurderousPursuits.exe: + "/MurderousPursuits.exe": - when: - os: windows store: steam - - arguments: '-quality 0' + - arguments: "-quality 0" when: - os: windows store: steam @@ -350414,19 +351404,19 @@ Murders in Space: installDir: Murders in Space: {} launch: - /dosbox_windows/DOSBox.exe: - - arguments: '-conf dosbox_MIS_w_2560x1920.conf -conf dosbox_MIS_auto_launch.conf -noconsole' + "/dosbox_windows/DOSBox.exe": + - arguments: "-conf dosbox_MIS_w_2560x1920.conf -conf dosbox_MIS_auto_launch.conf -noconsole" when: - os: windows store: steam - workingDir: /dosbox_windows + workingDir: "/dosbox_windows" steam: id: 1255420 -'Murderwave: Digital Slaughter': +"Murderwave: Digital Slaughter": installDir: Murderwave - Digital Slaughter: {} launch: - /Murderwave.exe: + "/Murderwave.exe": - when: - os: windows store: steam @@ -350436,7 +351426,7 @@ Murgles: installDir: Murgles: {} launch: - /Murgles.exe: + "/Murgles.exe": - when: - os: windows store: steam @@ -350444,7 +351434,7 @@ Murgles: id: 1129350 Muri: files: - /murisave.sav: + "/murisave.sav": tags: - save when: @@ -350452,11 +351442,11 @@ Muri: installDir: MURI: {} launch: - /MURI.app: + "/MURI.app": - when: - os: mac store: steam - /MURI.exe: + "/MURI.exe": - when: - os: windows store: steam @@ -350466,35 +351456,35 @@ Murnatan: installDir: Murnatan: {} launch: - /Murnatan/Murnatan.exe: + "/Murnatan/Murnatan.exe": - when: - bit: 64 os: windows store: steam - workingDir: /Murnatan - /Murnatan/Murnatan.sh: + workingDir: "/Murnatan" + "/Murnatan/Murnatan.sh": - when: - bit: 64 os: linux store: steam - workingDir: /Murnatan + workingDir: "/Murnatan" steam: id: 634070 Musaic Box: installDir: Musaic Box: {} launch: - /bin/musaic_Release.exe: + "/bin/musaic_Release.exe": - when: - store: steam - workingDir: /bin + workingDir: "/bin" steam: id: 29130 Musasabi: installDir: Musasabi: {} launch: - /Musasabi.exe: + "/Musasabi.exe": - when: - os: windows store: steam @@ -350504,11 +351494,11 @@ Musashi vs Cthulhu: installDir: mvsc: {} launch: - /mvsc.app: + "/mvsc.app": - when: - os: mac store: steam - /mvsc.exe: + "/mvsc.exe": - when: - os: windows store: steam @@ -350518,7 +351508,7 @@ Muscle Car Robot: installDir: Muscle Car Robot: {} launch: - /Muscle Car Robot.exe: + "/Muscle Car Robot.exe": - when: - os: windows store: steam @@ -350528,7 +351518,7 @@ Muscle Magic: installDir: Muscle Magic: {} launch: - /MuscleMagic.exe: + "/MuscleMagic.exe": - when: - bit: 64 os: windows @@ -350542,11 +351532,11 @@ Musclecar Online: installDir: Musclecar Online: {} launch: - /Musclecar Online.app: + "/Musclecar Online.app": - when: - os: mac store: steam - /MusclecarOnline.exe: + "/MusclecarOnline.exe": - when: - os: windows store: steam @@ -350556,7 +351546,7 @@ Muscles And Bullets: installDir: Muscles And Bullets: {} launch: - /MusclesAndBullets.exe: + "/MusclesAndBullets.exe": - when: - bit: 64 os: windows @@ -350565,13 +351555,13 @@ Muscles And Bullets: id: 1005920 Muse Dash: files: - /Steam/MuseDash: + "/Steam/MuseDash": tags: - config - save when: - os: mac - /Steam/MuseDash: + "/Steam/MuseDash": tags: - config - save @@ -350580,7 +351570,7 @@ Muse Dash: installDir: Muse Dash: {} launch: - /MuseDash_Mac_Steam.app: + "/MuseDash_Mac_Steam.app": - when: - os: mac store: steam @@ -350600,19 +351590,19 @@ Mushihimesama: installDir: Mushihimesama: {} launch: - /default.exe: + "/default.exe": - when: - store: steam steam: id: 377860 Mushroom 11: files: - /userdata//243160/remote/.*: + "/userdata//243160/remote/.*": tags: - save when: - store: steam - /unity3d/Untame/Mushroom 11/prefs (base-64 encoded in .sg pref): + "/unity3d/Untame/Mushroom 11/prefs (base-64 encoded in .sg pref)": tags: - save when: @@ -350622,15 +351612,15 @@ Mushroom 11: installDir: Mushroom 11: {} launch: - /Mushroom_11.app: + "/Mushroom_11.app": - when: - os: mac store: steam - /Mushroom_11.exe: + "/Mushroom_11.exe": - when: - os: windows store: steam - /Mushroom_11.sh: + "/Mushroom_11.sh": - when: - os: linux store: steam @@ -350647,7 +351637,7 @@ Mushroom Cats: installDir: Mushroom Cats: {} launch: - /Mushroom_Cats.exe: + "/Mushroom_Cats.exe": - when: - os: windows store: steam @@ -350657,16 +351647,16 @@ Mushroom Crusher Extreme: installDir: MushroomCrusherExtreme: {} launch: - /MCE.app: + "/MCE.app": - when: - os: mac store: steam - /MCE.exe: + "/MCE.exe": - when: - bit: 64 os: windows store: steam - /MCE.x86_64: + "/MCE.x86_64": - when: - bit: 64 os: linux @@ -350677,14 +351667,14 @@ Mushroom Heroes: installDir: Mushroom Heroes: {} launch: - /MushroomHeroes.exe: + "/MushroomHeroes.exe": - when: - store: steam steam: id: 840410 -'Mushroom Men: Truffle Trouble': +"Mushroom Men: Truffle Trouble": files: - /Binaries/Win32/savegame.mmsv: + "/Binaries/Win32/savegame.mmsv": tags: - save when: @@ -350692,8 +351682,8 @@ Mushroom Heroes: installDir: MushroomMenTruffleTrouble: {} launch: - /Binaries/Win32/MMTTGame-Win32-Shipping.exe: - - arguments: '-seekfreeloadingpcconsole' + "/Binaries/Win32/MMTTGame-Win32-Shipping.exe": + - arguments: "-seekfreeloadingpcconsole" when: - store: steam steam: @@ -350702,7 +351692,7 @@ Mushroom Rain: installDir: Mushroom rain: {} launch: - /Mushroom rain.exe: + "/Mushroom rain.exe": - when: - os: windows store: steam @@ -350710,12 +351700,12 @@ Mushroom Rain: id: 930480 Mushroom Wars: files: - /My Games/Mushroom Wars/SlotData*.dat: + "/My Games/Mushroom Wars/SlotData*.dat": tags: - save when: - os: windows - /My Games/Mushroom Wars/config.crs: + "/My Games/Mushroom Wars/config.crs": tags: - config when: @@ -350728,42 +351718,42 @@ Mushroom Wars 2: installDir: Mushroom Wars 2: {} launch: - /MW2: + "/MW2": - when: - os: linux store: steam - /MW2.app: + "/MW2.app": - when: - os: mac store: steam - /MW2.exe: + "/MW2.exe": - when: - os: windows store: steam steam: id: 457730 -'Mushroom: The Ruckus': +"Mushroom: The Ruckus": installDir: Mushroom The Ruckus: {} launch: - /32/ruckus_x86.exe: + "/32/ruckus_x86.exe": - when: - os: windows store: steam - /64/ruckus.x86_64: + "/64/ruckus.x86_64": - when: - os: linux store: steam steam: id: 845700 -'Mushrooms: Forest Walker': +"Mushrooms: Forest Walker": steam: id: 769100 Music Band Manager: installDir: Music Awards Manager: {} launch: - /MusicAwards.exe: + "/MusicAwards.exe": - when: - store: steam steam: @@ -350772,15 +351762,15 @@ Music Boy 3D: installDir: MusicBoy3D: {} launch: - /MB3D: + "/MB3D": - when: - os: linux store: steam - /MB3D.app: + "/MB3D.app": - when: - os: mac store: steam - /MB3D.exe: + "/MB3D.exe": - when: - bit: 64 os: windows @@ -350804,7 +351794,7 @@ Music Killer: installDir: MusicKiller: {} launch: - /Music Killer.exe: + "/Music Killer.exe": - when: - os: windows store: steam @@ -350814,11 +351804,11 @@ Music Producer: installDir: Music Producer: {} launch: - /Music Producer.app/Contents/MacOS/Music Producer: + "/Music Producer.app/Contents/MacOS/Music Producer": - when: - os: mac store: steam - /Music Producer.exe: + "/Music Producer.exe": - when: - os: windows store: steam @@ -350828,7 +351818,7 @@ Music Racer: installDir: Music Racer: {} launch: - /Music Racer.exe: + "/Music Racer.exe": - when: - os: windows store: steam @@ -350838,7 +351828,7 @@ Music Wars Empire: installDir: Music Wars Empire: {} launch: - /Music Wars Empire.exe: + "/Music Wars Empire.exe": - when: - bit: 32 os: windows @@ -350849,7 +351839,7 @@ Music of the Spheres: installDir: Music of the Spheres: {} launch: - /Music of the Spheres.exe: + "/Music of the Spheres.exe": - when: - os: windows store: steam @@ -350859,7 +351849,7 @@ Musical Aim Trainer: installDir: MusicalAimTrainer: {} launch: - /MusicalAimTrainer.exe: + "/MusicalAimTrainer.exe": - when: - os: windows store: steam @@ -350874,7 +351864,7 @@ Musical Reflex: installDir: Musical Reflex: {} launch: - /Musical Reflex.exe: + "/Musical Reflex.exe": - when: - os: windows store: steam @@ -350884,7 +351874,7 @@ Musician: installDir: windows_content: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -350892,12 +351882,12 @@ Musician: id: 710280 Musicus!: files: - /My Games/MUSICUS/savedata/*.sav: + "/My Games/MUSICUS/savedata/*.sav": tags: - save when: - os: windows - /My Games/MUSICUS_EN/savedata/*.sav: + "/My Games/MUSICUS_EN/savedata/*.sav": tags: - save when: @@ -350905,11 +351895,11 @@ Musicus!: installDir: MUSICUS: {} launch: - /musicus_steam.exe: + "/musicus_steam.exe": - when: - bit: 64 store: steam - /musicus_steam_x86.exe: + "/musicus_steam_x86.exe": - when: - bit: 32 store: steam @@ -350919,21 +351909,21 @@ Muspell: installDir: Muspell: {} launch: - /Muspell.app/Contents/MacOS/Muspell: + "/Muspell.app/Contents/MacOS/Muspell": - when: - os: mac store: steam - /Muspell.exe: + "/Muspell.exe": - when: - os: windows store: steam steam: id: 1067700 -'Mussoumano: Ataque dos Haters': +"Mussoumano: Ataque dos Haters": installDir: Mussoumano Ataque dos Haters: {} launch: - /Mussoumano_A_d_H.exe: + "/Mussoumano_A_d_H.exe": - when: - os: windows store: steam @@ -350943,7 +351933,7 @@ Must Dash Amigos: installDir: Must Dash Amigos: {} launch: - /MustDashAmigos.exe: + "/MustDashAmigos.exe": - when: - bit: 64 os: windows @@ -350954,7 +351944,7 @@ Mustache Politics Shooter: installDir: Mustache Politics Shooter: {} launch: - /Mpshooter.exe: + "/Mpshooter.exe": - when: - bit: 64 os: windows @@ -350965,7 +351955,7 @@ Mustache in Hell: installDir: Mustache in Hell: {} launch: - /Mustache in Hell.exe: + "/Mustache in Hell.exe": - when: - os: windows store: steam @@ -350975,7 +351965,7 @@ Mustache or Revenge: installDir: Mustache or Revenge: {} launch: - /MoR/Binaries/Win64/MoR-Win64-Shipping.exe: + "/MoR/Binaries/Win64/MoR-Win64-Shipping.exe": - when: - store: steam steam: @@ -350984,7 +351974,7 @@ Mustdashe: installDir: Mustdashe: {} launch: - /MustdasheEarlyAccess.exe: + "/MustdasheEarlyAccess.exe": - when: - os: windows store: steam @@ -350994,7 +351984,7 @@ Mutagen Extinction: installDir: MutagenExtinction: {} launch: - /Mutagen.exe: + "/Mutagen.exe": - when: - os: windows store: steam @@ -351004,11 +351994,11 @@ Mutant Fighting Cup 2: installDir: Mutant Fighting Cup 2: {} launch: - /Mutant Fighting Cup 2.exe: + "/Mutant Fighting Cup 2.exe": - when: - os: windows store: steam - /mfc2_mac.app: + "/mfc2_mac.app": - when: - os: mac store: steam @@ -351020,8 +352010,8 @@ Mutant Football League: installDir: Mutant Football League: {} launch: - /MFL.exe: - - arguments: '-logFile \"MFL_Data\\output_log.txt\"' + "/MFL.exe": + - arguments: "-logFile \\\"MFL_Data\\\\output_log.txt\\\"" when: - os: windows store: steam @@ -351031,7 +352021,7 @@ Mutant Hunt: installDir: Creature Hunt: {} launch: - /CreatureHunt.exe: + "/CreatureHunt.exe": - when: - os: windows store: steam @@ -351041,15 +352031,15 @@ Mutant Meltdown: installDir: Mutant Meltdown: {} launch: - /MutantMeltdown.app/Contents/MacOS/MutantMeltdown: + "/MutantMeltdown.app/Contents/MacOS/MutantMeltdown": - when: - os: mac store: steam - /MutantMeltdown.exe: + "/MutantMeltdown.exe": - when: - os: windows store: steam - /MutantMeltdown.x86_64: + "/MutantMeltdown.x86_64": - when: - os: linux store: steam @@ -351057,12 +352047,12 @@ Mutant Meltdown: id: 2085790 Mutant Mudds: files: - /Renegade Kid/Mutant Mudds: + "/Renegade Kid/Mutant Mudds": tags: - save when: - os: windows - /Renegade Kid/Mutant Mudds: + "/Renegade Kid/Mutant Mudds": tags: - config when: @@ -351072,7 +352062,7 @@ Mutant Mudds: installDir: MutantMuddsDeluxe: {} launch: - /MutantMuddsDeluxeSteam.exe: + "/MutantMuddsDeluxeSteam.exe": - when: - os: windows store: steam @@ -351082,56 +352072,51 @@ Mutant Mudds Super Challenge: installDir: Mutant Mudds Super Challenge: {} launch: - /Mutant Mudds Super Challenge.exe: + "/Mutant Mudds Super Challenge.exe": - when: - store: steam steam: id: 473720 Mutant Ops: files: - /VGDFinal/Saved/Config/WindowsNoEditor/*.ini: + "/VGDFinal/Saved/Config/WindowsNoEditor/*.ini": tags: - config when: - os: windows - /VGDFinal/Saved/SaveGames: - tags: - - save - when: - - os: windows installDir: MutantOps: {} launch: - /VGDFinal.exe: + "/VGDFinal.exe": - when: - bit: 64 os: windows store: steam steam: id: 1427800 -'Mutant Storm: Reloaded': +"Mutant Storm: Reloaded": installDir: Mutant Storm Reloaded: {} launch: - /MutantStormReloaded.exe: + "/MutantStormReloaded.exe": - when: - store: steam steam: id: 110630 -'Mutant Year Zero: Road to Eden': +"Mutant Year Zero: Road to Eden": files: - /Packages/FuncomOsloAS.MutantYearZeroRoadtoEden_pkaskhy6cdq4g/LocalCache/Local/ZoneUE4/Saved/Config/WindowsNoEditor: + "/Packages/FuncomOsloAS.MutantYearZeroRoadtoEden_pkaskhy6cdq4g/LocalCache/Local/ZoneUE4/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows store: microsoft - /ZoneUE4/Saved/Config/WindowsNoEditor: + "/ZoneUE4/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /ZoneUE4/Saved/SaveGames: + "/ZoneUE4/Saved/SaveGames": tags: - save when: @@ -351141,7 +352126,7 @@ Mutant Ops: installDir: Mutant Year Zero: {} launch: - /ZoneUE4.exe: + "/ZoneUE4.exe": - when: - os: windows store: steam @@ -351157,7 +352142,7 @@ Mutation Mayhem: installDir: Mutation Mayhem: {} launch: - /MutationMayhem.exe: + "/MutationMayhem.exe": - when: - os: windows store: steam @@ -351167,7 +352152,7 @@ Mutation Phase: installDir: MUTATION PHASE: {} launch: - /MUTATION_PHASE.exe: + "/MUTATION_PHASE.exe": - when: - os: windows store: steam @@ -351178,12 +352163,12 @@ Mutato Match: id: 391480 Mutazione: files: - /AppData/LocalLow/Die Gute Fabrik/Mutazione/UserDataV0.dat: + "/AppData/LocalLow/Die Gute Fabrik/Mutazione/UserDataV0.dat": tags: - save when: - os: windows - /userdata//1080750/remote/UserDataV0.dat: + "/userdata//1080750/remote/UserDataV0.dat": tags: - save when: @@ -351193,20 +352178,20 @@ Mutazione: installDir: Mutazione: {} launch: - /Mutazione.x86_64: + "/Mutazione.x86_64": - when: - os: linux store: steam - /mutazione.app: + "/mutazione.app": - when: - os: mac store: steam - /mutazione.exe: + "/mutazione.exe": - when: - bit: 64 os: windows store: steam - /mutazione.x86_64: + "/mutazione.x86_64": - when: - os: linux store: steam @@ -351220,15 +352205,15 @@ Mute Crimson+: installDir: MuteCrimsonPlus: {} launch: - /MuteCrimsonPlus: + "/MuteCrimsonPlus": - when: - os: linux store: steam - /MuteCrimsonPlus.app: + "/MuteCrimsonPlus.app": - when: - os: mac store: steam - /MuteCrimsonPlus.exe: + "/MuteCrimsonPlus.exe": - when: - os: windows store: steam @@ -351238,7 +352223,7 @@ Mutilate-a-Doll 2: installDir: Mutilate-a-Doll 2: {} launch: - /MaD2.exe: + "/MaD2.exe": - when: - os: windows store: steam @@ -351248,8 +352233,8 @@ Mutiny Island: installDir: Mutiny Island: {} launch: - /nw.exe: - - arguments: '--in-process-gpu' + "/nw.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam @@ -351259,15 +352244,15 @@ Mutiny!!: installDir: Mutiny!!: {} launch: - /Mutiny!!.app: + "/Mutiny!!.app": - when: - os: mac store: steam - /Mutiny!!.exe: + "/Mutiny!!.exe": - when: - os: windows store: steam - /Mutiny!!.sh: + "/Mutiny!!.sh": - when: - os: linux store: steam @@ -351277,11 +352262,11 @@ Mutland: installDir: Mutland: {} launch: - /Mutland.app/Contents/MacOS/Mutland: + "/Mutland.app/Contents/MacOS/Mutland": - when: - os: mac store: steam - /Mutland.exe: + "/Mutland.exe": - when: - os: windows store: steam @@ -351289,7 +352274,7 @@ Mutland: id: 978110 Mutropolis: files: - /.local/share/Pirita Studio/Mutropolis: + "/.local/share/Pirita Studio/Mutropolis": tags: - config - save @@ -351300,15 +352285,15 @@ Mutropolis: installDir: Mutropolis: {} launch: - /Mutropolis.app: + "/Mutropolis.app": - when: - os: mac store: steam - /Mutropolis.exe: + "/Mutropolis.exe": - when: - os: windows store: steam - /start: + "/start": - when: - os: linux store: steam @@ -351319,7 +352304,7 @@ Mutual Secret: id: 805530 Muv-Luv: files: - /userdata//802880/remote: + "/userdata//802880/remote": tags: - save when: @@ -351327,7 +352312,7 @@ Muv-Luv: installDir: Muv-Luv: {} launch: - /muvluv16.exe: + "/muvluv16.exe": - when: - store: steam steam: @@ -351341,47 +352326,47 @@ Muv-Luv Alternative Total Eclipse Remastered: installDir: Muv-Luv Alternative Total Eclipse: {} launch: - /te-win64vc14-release.exe: + "/te-win64vc14-release.exe": - when: - os: windows store: steam steam: id: 787510 -'Muv-Luv Unlimited: THE DAY AFTER - Episode 00 REMASTERED': +"Muv-Luv Unlimited: THE DAY AFTER - Episode 00 REMASTERED": installDir: Muv-Luv UNLIMITED TDA00: {} launch: - /tda00-win64vc14-release.exe: + "/tda00-win64vc14-release.exe": - when: - os: windows store: steam steam: id: 1407100 -'Muv-Luv Unlimited: THE DAY AFTER - Episode 01 REMASTERED': +"Muv-Luv Unlimited: THE DAY AFTER - Episode 01 REMASTERED": installDir: Muv-Luv UNLIMITED TDA01: {} launch: - /tda01-win64vc14-release.exe: + "/tda01-win64vc14-release.exe": - when: - os: windows store: steam steam: id: 1407090 -'Muv-Luv Unlimited: THE DAY AFTER - Episode 02 REMASTERED': +"Muv-Luv Unlimited: THE DAY AFTER - Episode 02 REMASTERED": installDir: Muv-Luv UNLIMITED TDA02: {} launch: - /tda02-win64vc14-release.exe: + "/tda02-win64vc14-release.exe": - when: - os: windows store: steam steam: id: 1342410 -'Muv-Luv Unlimited: THE DAY AFTER - Episode 03 REMASTERED': +"Muv-Luv Unlimited: THE DAY AFTER - Episode 03 REMASTERED": installDir: Muv-Luv UNLIMITED TDA03: {} launch: - /tda03-win64vc14-release.exe: + "/tda03-win64vc14-release.exe": - when: - os: windows store: steam @@ -351396,7 +352381,7 @@ Muv-Luv photonflowers*: installDir: Muv-Luv photonflowers: {} launch: - /Muv-Luv_PF.exe: + "/Muv-Luv_PF.exe": - when: - os: windows store: steam @@ -351406,7 +352391,7 @@ Muv-Luv photonmelodies♮: installDir: Muv-Luv photonmelodies: {} launch: - /Muv-Luv_PM.exe: + "/Muv-Luv_PM.exe": - when: - os: windows store: steam @@ -351416,7 +352401,7 @@ Muzzleloaded: installDir: Muzzleloaded: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -351426,17 +352411,17 @@ My 1/6 Lover: installDir: My 16 Lover: {} launch: - /One-sixth lover.exe: + "/One-sixth lover.exe": - when: - os: windows store: steam steam: id: 962970 -My 1980's Dashboard: +"My 1980's Dashboard": installDir: MY 1980s DASHBOARD: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -351446,12 +352431,12 @@ My Agent is a Futanari: installDir: My Agent is a Futanari: {} launch: - /MyAgentIsAFutanari-32.exe: + "/MyAgentIsAFutanari-32.exe": - when: - bit: 32 os: windows store: steam - /MyAgentIsAFutanari.exe: + "/MyAgentIsAFutanari.exe": - when: - bit: 64 os: windows @@ -351462,11 +352447,11 @@ My Arctic Farm: installDir: My Arctic Farm: {} launch: - /My Arctic Farm.app: + "/My Arctic Farm.app": - when: - os: mac store: steam - /My Arctic Farm.exe: + "/My Arctic Farm.exe": - when: - os: windows store: steam @@ -351476,7 +352461,7 @@ My Beastly Lovers: installDir: My Beastly Lovers: {} launch: - /MyBeastlyLovers.exe: + "/MyBeastlyLovers.exe": - when: - bit: 64 os: windows @@ -351487,7 +352472,7 @@ My Beautiful Paper Smile: installDir: My Beautiful Paper Smile: {} launch: - /WindowsNoEditor/HandDrawnGame.exe: + "/WindowsNoEditor/HandDrawnGame.exe": - when: - os: windows store: steam @@ -351497,7 +352482,7 @@ My Best Friends - Cats & Dogs: installDir: Cats & Dogs Best Friends: {} launch: - /BestFriends.exe: + "/BestFriends.exe": - when: - store: steam steam: @@ -351511,7 +352496,7 @@ My Bike: installDir: My Bike: {} launch: - /My Bike.exe: + "/My Bike.exe": - when: - store: steam steam: @@ -351520,15 +352505,15 @@ My Bingo: installDir: My Bingo: {} launch: - /MyBingo.app/Contents/MacOS/MyBingo: + "/MyBingo.app/Contents/MacOS/MyBingo": - when: - os: mac store: steam - /MyBingo.exe: + "/MyBingo.exe": - when: - os: windows store: steam - /MyBingo.x86: + "/MyBingo.x86": - when: - os: linux store: steam @@ -351538,7 +352523,7 @@ My Bones: installDir: My Bones: {} launch: - /My Bones.exe: + "/My Bones.exe": - when: - os: windows store: steam @@ -351548,7 +352533,7 @@ My Bones Remastered: installDir: My Bones Remastered: {} launch: - /My Bones Remastered.exe: + "/My Bones Remastered.exe": - when: - os: windows store: steam @@ -351558,24 +352543,24 @@ My Boss is a Futanari: installDir: My Boss is a Futanari: {} launch: - /MyBossIsAFutanari.exe: + "/MyBossIsAFutanari.exe": - when: - os: windows store: steam steam: id: 1854130 -'My Boyfriend - He loves me, he loves me not': +"My Boyfriend - He loves me, he loves me not": installDir: - 'My Boyfriend – He loves me, he loves me not': {} + "My Boyfriend – He loves me, he loves me not": {} launch: - /MyBoyfriend2.exe: + "/MyBoyfriend2.exe": - when: - store: steam steam: id: 595160 My Breast Friend Sally: files: - /My_Breast_Friend_Sally: + "/My_Breast_Friend_Sally": tags: - save when: @@ -351583,13 +352568,13 @@ My Breast Friend Sally: installDir: My Breast Friend Sally: {} launch: - /My Breast Friend Sally.exe: - - arguments: '--in-progress-gpu' + "/My Breast Friend Sally.exe": + - arguments: "--in-progress-gpu" when: - os: windows store: steam - /nw.app: - - arguments: '--in-progress-gpu' + "/nw.app": + - arguments: "--in-progress-gpu" when: - os: mac store: steam @@ -351602,12 +352587,12 @@ My Brother Rabbit: - save when: - os: linux - /userdata//855640/remote/profile/save: + "/userdata//855640/remote/profile/save": tags: - save when: - store: steam - /Artifex Mundi/My Brother Rabbit/save: + "/Artifex Mundi/My Brother Rabbit/save": tags: - save when: @@ -351617,20 +352602,20 @@ My Brother Rabbit: installDir: My Brother Rabbit: {} launch: - /My Brother Rabbit.exe: + "/My Brother Rabbit.exe": - when: - os: windows store: steam - /MyBrotherRabbit.app/Contents/MacOS/MyBrotherRabbit: + "/MyBrotherRabbit.app/Contents/MacOS/MyBrotherRabbit": - when: - os: mac store: steam - /MyBrotherRabbit_amd64: + "/MyBrotherRabbit_amd64": - when: - bit: 64 os: linux store: steam - /MyBrotherRabbit_i386: + "/MyBrotherRabbit_i386": - when: - bit: 32 os: linux @@ -351641,11 +352626,11 @@ My Burning Heart: installDir: My Burning Heart: {} launch: - /MyBurningHeart-2.0-pc/MyBurningHeart.exe: + "/MyBurningHeart-2.0-pc/MyBurningHeart.exe": - when: - os: windows store: steam - /MyBurningHeart.app/Contents/MacOS/MyBurningHeart: + "/MyBurningHeart.app/Contents/MacOS/MyBurningHeart": - when: - os: mac store: steam @@ -351655,8 +352640,8 @@ My Butler: installDir: My Butler: {} launch: - /My Butler.exe: - - arguments: '-windowed' + "/My Butler.exe": + - arguments: "-windowed" when: - os: windows store: steam @@ -351666,14 +352651,14 @@ My Car: installDir: My Car: {} launch: - /My Car.exe: + "/My Car.exe": - when: - store: steam steam: id: 839930 My Catgirl Maid Thinks She Runs the Place: files: - /MyCatgirlMaidComplete-1.0-pc/game/saves: + "/MyCatgirlMaidComplete-1.0-pc/game/saves": tags: - save when: @@ -351681,7 +352666,7 @@ My Catgirl Maid Thinks She Runs the Place: installDir: My Catgirl Maid Thinks She Runs the Place: {} launch: - /MyCatgirlMaidComplete-1.0-pc/MyCatgirlMaidComplete.exe: + "/MyCatgirlMaidComplete-1.0-pc/MyCatgirlMaidComplete.exe": - when: - bit: 64 os: windows @@ -351690,7 +352675,7 @@ My Catgirl Maid Thinks She Runs the Place: id: 1582890 My Child Lebensborn: files: - /AppData/LocalLow/east2west/My Child Lebensborn/SaveData: + "/AppData/LocalLow/east2west/My Child Lebensborn/SaveData": tags: - save when: @@ -351698,11 +352683,11 @@ My Child Lebensborn: installDir: My Child Lebensborn: {} launch: - /My Child Lebensborn.exe: + "/My Child Lebensborn.exe": - when: - os: windows store: steam - /我的孩子:生命之泉.exe: + "/我的孩子:生命之泉.exe": - when: - store: steam registry: @@ -351715,89 +352700,92 @@ My Colony: installDir: My Colony: {} launch: - /My Colony: + "/My Colony": - when: - bit: 64 os: linux store: steam - /My Colony.app: + "/My Colony.app": - when: - os: mac store: steam - /My Colony.exe: + "/My Colony.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam steam: id: 964130 -'My Coloring Book: Animals': +"My Coloring Book: Animals": installDir: My Coloring Book Animals: {} launch: - /My Coloring Book - Animals.app/Contents/MacOS/My Coloring Book - Animals: + "/My Coloring Book - Animals.app/Contents/MacOS/My Coloring Book - Animals": - when: - os: mac store: steam - /My Coloring Book - Animals.exe: + "/My Coloring Book - Animals.exe": - when: - os: windows store: steam - /My Coloring Book - Animals.x86: + "/My Coloring Book - Animals.x86": - when: - os: linux store: steam steam: id: 721430 -'My Coloring Book: Food and Beverage': +"My Coloring Book: Food and Beverage": installDir: My Coloring Book Food and Beverage: {} launch: - /My Coloring Book - Food and Beverage.app/Contents/MacOS/My Coloring Book - Food and Beverage: + "/My Coloring Book - Food and Beverage.app/Contents/MacOS/My Coloring Book - Food and Beverage": - when: - os: mac store: steam - /My Coloring Book - Food and Beverage.exe: + "/My Coloring Book - Food and Beverage.exe": - when: - os: windows store: steam - /My Coloring Book - Food and Beverage.x86: + "/My Coloring Book - Food and Beverage.x86": - when: - os: linux store: steam steam: id: 763760 -'My Coloring Book: Professions': +"My Coloring Book: Professions": installDir: My Coloring Book Professions: {} launch: - /My Coloring Book - Professions.app/Contents/MacOS/My Coloring Book - Professions: + "/My Coloring Book - Professions.app/Contents/MacOS/My Coloring Book - Professions": - when: - os: mac store: steam - /My Coloring Book - Professions.exe: + "/My Coloring Book - Professions.exe": - when: - os: windows store: steam - /My Coloring Book - Professions.x86: + "/My Coloring Book - Professions.x86": - when: - os: linux store: steam steam: id: 774781 -'My Coloring Book: Transport': +"My Coloring Book: Transport": installDir: My Coloring Book Transport: {} launch: - /My Coloring Book - Transport.app/Contents/MacOS/My Coloring Book - Transport: + "/My Coloring Book - Transport.app/Contents/MacOS/My Coloring Book - Transport": - when: - os: mac store: steam - /My Coloring Book - Transport.exe: + "/My Coloring Book - Transport.exe": - when: - os: windows store: steam - /My Coloring Book - Transport.x86: + "/My Coloring Book - Transport.x86": - when: - os: linux store: steam @@ -351807,15 +352795,15 @@ My Creampie Heaven: installDir: MyCreampieHeaven: {} launch: - /goddess.app: + "/goddess.app": - when: - os: mac store: steam - /goddess.exe: + "/goddess.exe": - when: - os: windows store: steam - /goddess.sh: + "/goddess.sh": - when: - os: linux store: steam @@ -351828,7 +352816,7 @@ My Doctor is a Futanari: installDir: My Doctor is a Futanari: {} launch: - /MyDoctorIsAFutanari.exe: + "/MyDoctorIsAFutanari.exe": - when: - os: windows store: steam @@ -351838,11 +352826,13 @@ My Ex-Boyfriend the Space Tyrant: installDir: My Ex-Boyfriend the Space Tyrant: {} launch: - /main: + "/main": - when: + - os: mac + store: steam - os: linux store: steam - /main.exe: + "/main.exe": - when: - os: windows store: steam @@ -351852,7 +352842,7 @@ My Exotic Farm: installDir: My Exotic Farm: {} launch: - /MyExoticFarm.exe: + "/MyExoticFarm.exe": - when: - os: windows store: steam @@ -351872,11 +352862,11 @@ My Farm: installDir: My Farm: {} launch: - /MyFarm2018.app: + "/MyFarm2018.app": - when: - os: mac store: steam - /MyFarm2018.exe: + "/MyFarm2018.exe": - when: - os: windows store: steam @@ -351886,7 +352876,7 @@ My Farm Life: installDir: Farming 6-in-1 bundle: {} launch: - /Farm6in1Bundle.exe: + "/Farm6in1Bundle.exe": - when: - os: windows store: steam @@ -351896,7 +352886,7 @@ My Fight: installDir: MY FIGHT: {} launch: - /MyFight.exe: + "/MyFight.exe": - when: - os: windows store: steam @@ -351906,12 +352896,12 @@ My First Femboy Date: installDir: My First Femboy Date: {} launch: - /MyFirstFemboyDate-32.exe: + "/MyFirstFemboyDate-32.exe": - when: - bit: 32 os: windows store: steam - /MyFirstFemboyDate.exe: + "/MyFirstFemboyDate.exe": - when: - bit: 64 os: windows @@ -351922,15 +352912,15 @@ My First Music Workshop: installDir: My First Music Workshop: {} launch: - /MyFirstMusicWorkshop.app/Contents/MacOS/MyFirstMusicWorkshop: + "/MyFirstMusicWorkshop.app/Contents/MacOS/MyFirstMusicWorkshop": - when: - os: mac store: steam - /MyFirstMusicWorkshop.exe: + "/MyFirstMusicWorkshop.exe": - when: - os: windows store: steam - /MyFirstMusicWorkshop.x86: + "/MyFirstMusicWorkshop.x86": - when: - os: linux store: steam @@ -351940,7 +352930,7 @@ My Free Farm: installDir: My Free Farm: {} launch: - /myfreefarm.exe: + "/myfreefarm.exe": - when: - os: windows store: steam @@ -351950,7 +352940,7 @@ My Free Farm 2: installDir: My Free Farm 2: {} launch: - /MyFreefarm2.exe: + "/MyFreefarm2.exe": - when: - os: windows store: steam @@ -351964,7 +352954,7 @@ My Free Zoo: installDir: MyFreeZoo: {} launch: - /MyFreeZoo.exe: + "/MyFreeZoo.exe": - when: - os: windows store: steam @@ -351972,12 +352962,12 @@ My Free Zoo: id: 694130 My Friend Pedro: files: - /AppData/LocalLow/DeadToast Entertainment/My Friend Pedro_ Blood Bullets Bananas/Save data: + "/AppData/LocalLow/DeadToast Entertainment/My Friend Pedro_ Blood Bullets Bananas/Save data": tags: - save when: - os: windows - /Packages/DevolverDigital.MyFriendPedroWin10_6kzv4j18v0c96/SystemAppData/wgs: + "/Packages/DevolverDigital.MyFriendPedroWin10_6kzv4j18v0c96/SystemAppData/wgs": tags: - save when: @@ -351988,12 +352978,12 @@ My Friend Pedro: installDir: My Friend Pedro: {} launch: - /My Friend Pedro - Blood Bullets Bananas.exe: + "/My Friend Pedro - Blood Bullets Bananas.exe": - when: - os: windows store: steam registry: - 'HKEY_CURRENT_USER/Software/DeadToast Entertainment/My Friend Pedro: Blood Bullets Bananas': + "HKEY_CURRENT_USER/Software/DeadToast Entertainment/My Friend Pedro: Blood Bullets Bananas": tags: - config steam: @@ -352002,7 +352992,7 @@ My Friend Peppa Pig: installDir: My Friend Peppa Pig: {} launch: - /My Friend Peppa Pig.exe: + "/My Friend Peppa Pig.exe": - when: - store: steam steam: @@ -352011,7 +353001,7 @@ My Friend is a Raven: installDir: My Friend is a Raven: {} launch: - /WindowsNoEditor/UE42019MegaJam.exe: + "/WindowsNoEditor/UE42019MegaJam.exe": - when: - bit: 64 os: windows @@ -352020,7 +353010,7 @@ My Friend is a Raven: id: 1215090 My Friendly Neighborhood: files: - /AppData/LocalLow/John Szymanski/My Friendly Neighborhood: + "/AppData/LocalLow/John Szymanski/My Friendly Neighborhood": tags: - config when: @@ -352028,7 +353018,7 @@ My Friendly Neighborhood: installDir: My Friendly Neighborhood: {} launch: - /My Friendly Neighborhood.exe: + "/My Friendly Neighborhood.exe": - when: - os: windows store: steam @@ -352038,12 +353028,12 @@ My Futanari Stepmom Impregnated Me: installDir: My Futanari Stepmom Impregnated Me: {} launch: - /MyFutanariStepmomImpregnatedMe-32.exe: + "/MyFutanariStepmomImpregnatedMe-32.exe": - when: - bit: 32 os: windows store: steam - /MyFutanariStepmomImpregnatedMe.exe: + "/MyFutanariStepmomImpregnatedMe.exe": - when: - bit: 64 os: windows @@ -352057,7 +353047,7 @@ My Giant Friend: installDir: My Giant Friend: {} launch: - /MyGiantFriend.exe: + "/MyGiantFriend.exe": - when: - os: windows store: steam @@ -352067,12 +353057,12 @@ My Girlfriend is a Futanari: installDir: My Girlfriend is a Futanari: {} launch: - /MyGirlfriendIsAFutanari-32.exe: + "/MyGirlfriendIsAFutanari-32.exe": - when: - bit: 32 os: windows store: steam - /MyGirlfriendIsAFutanari.exe: + "/MyGirlfriendIsAFutanari.exe": - when: - bit: 64 os: windows @@ -352083,7 +353073,7 @@ My Girlfriend is a Mermaid!?: installDir: She is Mermaid: {} launch: - /Mermaid.exe: + "/Mermaid.exe": - when: - os: windows store: steam @@ -352093,7 +353083,7 @@ My Goddess of Love: installDir: My Goddess of Love: {} launch: - /MGoL.exe: + "/MGoL.exe": - when: - os: windows store: steam @@ -352103,32 +353093,32 @@ My Golf: installDir: My Golf: {} launch: - /MyGolf.app/Contents/MacOS/MyGolf: + "/MyGolf.app/Contents/MacOS/MyGolf": - when: - os: mac store: steam - /MyGolf.exe: + "/MyGolf.exe": - when: - os: windows store: steam - /MyGolf.x86: + "/MyGolf.x86": - when: - os: linux store: steam steam: id: 828890 -My Grandfather's Farm: +"My Grandfather's Farm": steam: id: 807000 My Haunted Doll: installDir: My Haunted Doll: {} launch: - /MyHauntedDoll: + "/MyHauntedDoll": - when: - os: linux store: steam - /MyHauntedDoll.exe: + "/MyHauntedDoll.exe": - when: - os: windows store: steam @@ -352138,28 +353128,28 @@ My Heart Grows Fonder: installDir: My Heart Grows Fonder: {} launch: - /MHGF.app: + "/MHGF.app": - when: - os: mac store: steam - /MHGF.exe: + "/MHGF.exe": - when: - os: windows store: steam - /MHGF.sh: + "/MHGF.sh": - when: - os: linux store: steam steam: id: 892980 -'My Hero: One''s Justice': +"My Hero: One's Justice": files: - /BANDAI NAMCO Entertainment/My Hero Ones Justice/Saved/SaveGames/: + "/BANDAI NAMCO Entertainment/My Hero Ones Justice/Saved/SaveGames/": tags: - save when: - os: windows - /HeroGame/Saved/Config/WindowsNoEditor: + "/HeroGame/Saved/Config/WindowsNoEditor": tags: - config when: @@ -352167,16 +353157,16 @@ My Heart Grows Fonder: installDir: My Hero Ones Justice: {} launch: - /HeroGame/Binaries/Win64/MHOJ.exe: + "/HeroGame/Binaries/Win64/MHOJ.exe": - when: - bit: 64 os: windows store: steam steam: id: 748360 -'My Hero: One''s Justice 2': +"My Hero: One's Justice 2": files: - /BANDAI NAMCO Entertainment/My Hero Ones Justice 2/Saved/SaveGames: + "/BANDAI NAMCO Entertainment/My Hero Ones Justice 2/Saved/SaveGames": tags: - save when: @@ -352184,21 +353174,21 @@ My Heart Grows Fonder: installDir: My Hero Ones Justice 2: {} launch: - /HeroGame/Binaries/Win64/MHOJ2.exe: + "/HeroGame/Binaries/Win64/MHOJ2.exe": - when: - bit: 64 os: windows store: steam steam: id: 1058450 -'My Hero: Ultra Rumble': +"My Hero: Ultra Rumble": steam: id: 1607250 My Holiday: installDir: My Holiday: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -352217,7 +353207,7 @@ My House: installDir: My House: {} launch: - /My House.exe: + "/My House.exe": - when: - store: steam steam: @@ -352226,7 +353216,7 @@ My Island: installDir: My Island: {} launch: - /OceanProject.exe: + "/OceanProject.exe": - when: - os: windows store: steam @@ -352234,17 +353224,17 @@ My Island: id: 1004270 My Lady: files: - /game/saves: + "/game/saves": tags: - save when: - os: windows - /renpy/config.py: + "/renpy/config.py": tags: - config when: - os: windows - /renpy/My Lady Remake-1416302694: + "/renpy/My Lady Remake-1416302694": tags: - save when: @@ -352252,17 +353242,19 @@ My Lady: installDir: My Lady: {} launch: - /MyLadyVisualNovel.exe: + "/MyLadyVisualNovel.exe": - when: - os: windows store: steam - /MyLadyVisualNovel.sh: + "/MyLadyVisualNovel.sh": - when: - os: mac store: steam + - os: linux + store: steam steam: id: 457530 -'My Lands: Black Gem Hunting': +"My Lands: Black Gem Hunting": installDir: MyLands: {} steam: @@ -352271,25 +353263,25 @@ My Life as a Maiden: installDir: My Life as a Maiden: {} launch: - /MyLifeasaMaiden.app/Contents/MacOS/MyLifeasaMaiden: + "/MyLifeasaMaiden.app/Contents/MacOS/MyLifeasaMaiden": - when: - os: mac store: steam - /MyLifeasaMaiden.exe: + "/MyLifeasaMaiden.exe": - when: - os: windows store: steam - /MyLifeasaMaiden.sh: + "/MyLifeasaMaiden.sh": - when: - os: linux store: steam steam: id: 754840 -'My Life: Riding Stables 3': +"My Life: Riding Stables 3": installDir: Mein Reiterhof 3: {} launch: - /My Life - Riding Stables 3.exe: + "/My Life - Riding Stables 3.exe": - when: - store: steam steam: @@ -352298,13 +353290,13 @@ My Light in the Dark: installDir: My Light In The Dark: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam steam: id: 1131540 -My Lil' Donut: +"My Lil' Donut": installDir: My Lil Donut: {} steam: @@ -352316,7 +353308,7 @@ My Little Blacksmith Shop: installDir: My Little Blacksmith Shop: {} launch: - /ShopSim.exe: + "/ShopSim.exe": - when: - os: windows store: steam @@ -352326,7 +353318,7 @@ My Little Bomb: installDir: My Little Bomb: {} launch: - /My Little Bomb.exe: + "/My Little Bomb.exe": - when: - os: windows store: steam @@ -352336,7 +353328,7 @@ My Little Farmies: installDir: MyLittleFarmies: {} launch: - /MyLittleFarmies.exe: + "/MyLittleFarmies.exe": - when: - os: windows store: steam @@ -352346,14 +353338,14 @@ My Little Kitties: installDir: My Little Kitties: {} launch: - /My Little Kitties.exe: + "/My Little Kitties.exe": - when: - store: steam steam: id: 407320 -'My Little Pony: A Maretime Bay Adventure': +"My Little Pony: A Maretime Bay Adventure": files: - /AppData/LocalLow/Melbot Studios/MLP: + "/AppData/LocalLow/Melbot Studios/MLP": tags: - config - save @@ -352362,7 +353354,7 @@ My Little Kitties: installDir: My Little Pony: {} launch: - /MLP.exe: + "/MLP.exe": - when: - os: windows store: steam @@ -352372,7 +353364,7 @@ My Little Riding Champion: installDir: My Little Riding Champion: {} launch: - /Reiterland.exe: + "/Reiterland.exe": - when: - store: steam steam: @@ -352381,15 +353373,15 @@ My Little Worms: installDir: My Little Worms: {} launch: - /Linux/mlw.x86: + "/Linux/mlw.x86": - when: - os: linux store: steam - /MacOS/mlw.app/Contents/MacOS/mlw: + "/MacOS/mlw.app/Contents/MacOS/mlw": - when: - os: mac store: steam - /Windows/mlw.exe: + "/Windows/mlw.exe": - when: - os: windows store: steam @@ -352400,7 +353392,7 @@ My Loved Heart: id: 727560 My Lovely Daughter: files: - /AppData/LocalLow/GameChanger Studio/My Lovely Daughter: + "/AppData/LocalLow/GameChanger Studio/My Lovely Daughter": tags: - save when: @@ -352408,16 +353400,16 @@ My Lovely Daughter: installDir: My Lovely Daughter: {} launch: - /My Lovely Daughter.exe: + "/My Lovely Daughter.exe": - when: - os: windows store: steam - /My Lovely Daughter.x86: + "/My Lovely Daughter.x86": - when: - bit: 32 os: linux store: steam - /My Lovely Daughter.x86_64: + "/My Lovely Daughter.x86_64": - when: - bit: 64 os: linux @@ -352428,7 +353420,7 @@ My Lovely Wife: installDir: My Lovely Wife: {} launch: - /My Lovely Wife.exe: + "/My Lovely Wife.exe": - when: - os: windows store: steam @@ -352438,11 +353430,11 @@ My Lucky Koi: installDir: 天降锦鲤 ~ My Lucky Koi: {} launch: - /MyLuckyKoi.exe: + "/MyLuckyKoi.exe": - when: - os: windows store: steam - /game.app/Contents/MacOS/game: + "/game.app/Contents/MacOS/game": - when: - os: mac store: steam @@ -352455,15 +353447,15 @@ My Magical Demon Lover: installDir: My Magical Demon Lover: {} launch: - /MyMagicalDemonLover.app/Contents/MacOS/MyMagicalDemonLover: + "/MyMagicalDemonLover.app/Contents/MacOS/MyMagicalDemonLover": - when: - os: mac store: steam - /MyMagicalDemonLover.exe: + "/MyMagicalDemonLover.exe": - when: - os: windows store: steam - /MyMagicalDemonLover.sh: + "/MyMagicalDemonLover.sh": - when: - os: linux store: steam @@ -352473,11 +353465,11 @@ My Maid Girlfriend: installDir: My Maid Girlfriend: {} launch: - /My Maid Girlfriend.app/Contents/MacOS/My Maid Girlfriend: + "/My Maid Girlfriend.app/Contents/MacOS/My Maid Girlfriend": - when: - os: mac store: steam - /My Maid Girlfriend.exe: + "/My Maid Girlfriend.exe": - when: - os: windows store: steam @@ -352485,7 +353477,7 @@ My Maid Girlfriend: id: 824470 My Memory of Us: files: - /AppData/LocalLow/Juggler Games/My Memory of Us: + "/AppData/LocalLow/Juggler Games/My Memory of Us": tags: - save when: @@ -352495,7 +353487,7 @@ My Memory of Us: installDir: My Memory of US: {} launch: - /mmou.exe: + "/mmou.exe": - when: - os: windows store: steam @@ -352509,7 +353501,7 @@ My Name Is Mayo: installDir: My Name is Mayo: {} launch: - /windows/My Name is Mayo.exe: + "/windows/My Name is Mayo.exe": - when: - os: windows store: steam @@ -352519,7 +353511,7 @@ My Name is Addiction: installDir: My Name is Addiction: {} launch: - /MyNameIsAddiction1.0-win/My Name Is Addiction.exe: + "/MyNameIsAddiction1.0-win/My Name Is Addiction.exe": - when: - store: steam steam: @@ -352531,15 +353523,15 @@ My Night Job: installDir: My Night Job: {} launch: - /mnj.app: + "/mnj.app": - when: - os: mac store: steam - /mnj.exe: + "/mnj.exe": - when: - os: windows store: steam - /mnj.x86: + "/mnj.x86": - when: - os: linux store: steam @@ -352552,7 +353544,7 @@ My Own Little Planet: installDir: My Own Little Planet: {} launch: - /My own little planet.exe: + "/My own little planet.exe": - when: - os: windows store: steam @@ -352567,15 +353559,15 @@ My Paper Boat: installDir: Paperboat: {} launch: - /Paperboat.app/Contents/MacOS/Paperboat: + "/Paperboat.app/Contents/MacOS/Paperboat": - when: - os: mac store: steam - /Paperboat.exe: + "/Paperboat.exe": - when: - os: windows store: steam - /Paperboat/Binaries/Linux/Paperboat-Linux-Shipping: + "/Paperboat/Binaries/Linux/Paperboat-Linux-Shipping": - when: - os: linux store: steam @@ -352585,8 +353577,8 @@ My Personal Angel: installDir: My Personal Angel: {} launch: - /nw.exe: - - arguments: '--in-process-gpu' + "/nw.exe": + - arguments: "--in-process-gpu" when: - store: steam steam: @@ -352595,7 +353587,7 @@ My Pet Hotel: installDir: Pet Hotel: {} launch: - /Tierpension.exe: + "/Tierpension.exe": - when: - store: steam steam: @@ -352604,7 +353596,7 @@ My Pet Hotel 2: installDir: Pet Hotel 2: {} launch: - /TP2.exe: + "/TP2.exe": - when: - store: steam steam: @@ -352618,12 +353610,12 @@ My Pet Sitter is a Futanari: installDir: My Pet Sitter is a Futanari: {} launch: - /MyPetSitterIsAFutanari-32.exe: + "/MyPetSitterIsAFutanari-32.exe": - when: - bit: 32 os: windows store: steam - /MyPetSitterIsAFutanari.exe: + "/MyPetSitterIsAFutanari.exe": - when: - bit: 64 os: windows @@ -352639,7 +353631,7 @@ My Racing Career: installDir: MyRacingCareer: {} launch: - /我的赛车生涯v0.2.4.1.exe: + "/我的赛车生涯v0.2.4.1.exe": - when: - os: windows store: steam @@ -352649,28 +353641,28 @@ My Riding Stables: installDir: My Riding Stables: {} launch: - /bin/win32/gestuet.exe: + "/bin/win32/gestuet.exe": - when: - os: windows store: steam - workingDir: /bin/win32 + workingDir: "/bin/win32" steam: id: 276300 -'My Riding Stables: Life with Horses': +"My Riding Stables: Life with Horses": installDir: My Riding Stables 2: {} launch: - /MG2.exe: + "/MG2.exe": - when: - os: windows store: steam steam: id: 276340 -'My Riding Stables: Your Horse breeding': +"My Riding Stables: Your Horse breeding": installDir: My Riding Stables: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -352680,11 +353672,11 @@ My Russian Trip: installDir: My Russian Trip: {} launch: - /My Russian Trip.app/Contents/MacOS/My Russian Trip: + "/My Russian Trip.app/Contents/MacOS/My Russian Trip": - when: - os: mac store: steam - /My Russian Trip.exe: + "/My Russian Trip.exe": - when: - os: windows store: steam @@ -352694,7 +353686,7 @@ My Safe House: installDir: My Safe House: {} launch: - /pjtPeachLipOne.exe: + "/pjtPeachLipOne.exe": - when: - bit: 64 os: windows @@ -352705,8 +353697,8 @@ My Secret Pets!: installDir: My Secret Pets!: {} launch: - /My Secret Pets!.exe: - - arguments: '-windowed' + "/My Secret Pets!.exe": + - arguments: "-windowed" when: - os: windows store: steam @@ -352723,21 +353715,21 @@ My Singing Monsters: installDir: My Singing Monsters: {} launch: - /MySingingMonsters.exe: + "/MySingingMonsters.exe": - when: - bit: 32 os: windows store: steam steam: id: 1419170 -My Sister's Discipline Log: +"My Sister's Discipline Log": steam: id: 711410 My So-Called Future Girlfriend: installDir: - 'My so-called future girlfriend [Visual Novel]': {} + "My so-called future girlfriend [Visual Novel]": {} launch: - /F.Girlfriend.exe: + "/F.Girlfriend.exe": - when: - os: windows store: steam @@ -352747,7 +353739,7 @@ My Stepmom is a Futanari: installDir: My Stepmom is a Futanari: {} launch: - /MyStepmomIsAFutanari.exe: + "/MyStepmomIsAFutanari.exe": - when: - os: windows store: steam @@ -352757,7 +353749,7 @@ My Stepmom is a Futanari 2: installDir: My Stepmom is a Futanari 2: {} launch: - /MyStepmomIsAFutanari2.exe: + "/MyStepmomIsAFutanari2.exe": - when: - os: windows store: steam @@ -352767,7 +353759,7 @@ My Stepmom is a Futanari 3: installDir: My Stepmom is a Futanari 3: {} launch: - /MyStepmomIsAFutanari3.exe: + "/MyStepmomIsAFutanari3.exe": - when: - os: windows store: steam @@ -352780,12 +353772,12 @@ My Stepsis is a Furry Futa Fox: installDir: My Stepsis is a Furry Futa Fox: {} launch: - /MyStepsisIsAFurryFutaFox-32.exe: + "/MyStepsisIsAFurryFutaFox-32.exe": - when: - bit: 32 os: windows store: steam - /MyStepsisIsAFurryFutaFox.exe: + "/MyStepsisIsAFurryFutaFox.exe": - when: - bit: 64 os: windows @@ -352796,7 +353788,7 @@ My Stepsis is a Futanari: installDir: My Stepsis is a Futanari: {} launch: - /MyStepsisIsAFutanari.exe: + "/MyStepsisIsAFutanari.exe": - when: - os: windows store: steam @@ -352806,7 +353798,7 @@ My Stunt Life: installDir: My Stunt Life: {} launch: - /My Stunt Life.exe: + "/My Stunt Life.exe": - when: - store: steam steam: @@ -352815,12 +353807,12 @@ My Sugar Mommy is a Futanari: installDir: My Sugar Mommy is a Futanari: {} launch: - /MySugarMommyIsAFutanari-32.exe: + "/MySugarMommyIsAFutanari-32.exe": - when: - bit: 32 os: windows store: steam - /MySugarMommyIsAFutanari.exe: + "/MySugarMommyIsAFutanari.exe": - when: - bit: 64 os: windows @@ -352829,12 +353821,12 @@ My Sugar Mommy is a Futanari: id: 2068350 My Summer Car: files: - /AppData/LocalLow/Amistech/My Summer Car: + "/AppData/LocalLow/Amistech/My Summer Car": tags: - save when: - os: windows - /AppData/LocalLow/Amistech/My Summer Car/options.txt: + "/AppData/LocalLow/Amistech/My Summer Car/options.txt": tags: - config when: @@ -352842,7 +353834,7 @@ My Summer Car: installDir: My Summer Car: {} launch: - /mysummercar.exe: + "/mysummercar.exe": - when: - store: steam registry: @@ -352855,7 +353847,7 @@ My Sunny Resort: installDir: MySunnyResort: {} launch: - /MySunnyResort.exe: + "/MySunnyResort.exe": - when: - os: windows store: steam @@ -352864,7 +353856,7 @@ My Sunny Resort: My Super Defender - Battle Santa Edition: steam: id: 985440 -'My Super Defender: Battle Santa Edition': +"My Super Defender: Battle Santa Edition": steam: id: 1188200 My Super Tower 2: @@ -352877,7 +353869,7 @@ My Sweet Waifu: installDir: My Sweet Waifu: {} launch: - /My Sweet Waifu.exe: + "/My Sweet Waifu.exe": - when: - os: windows store: steam @@ -352887,7 +353879,7 @@ My Therapist is a Futanari: installDir: My Therapist is a Futanari: {} launch: - /MyTherapistIsAFutanari.exe: + "/MyTherapistIsAFutanari.exe": - when: - os: windows store: steam @@ -352897,17 +353889,17 @@ My Therapy: installDir: My Therapy: {} launch: - /My_therapy-1.0-pc/My_therapy-32.exe: + "/My_therapy-1.0-pc/My_therapy-32.exe": - when: - bit: 32 os: windows store: steam - /My_therapy-1.0-pc/My_therapy.exe: + "/My_therapy-1.0-pc/My_therapy.exe": - when: - bit: 64 os: windows store: steam - /My_therapy-1.0-pc/My_therapy.sh: + "/My_therapy-1.0-pc/My_therapy.sh": - when: - os: linux store: steam @@ -352915,7 +353907,7 @@ My Therapy: id: 2027550 My Time at Portia: files: - /AppData/LocalLow/Pathea Games/My Time at Portia: + "/AppData/LocalLow/Pathea Games/My Time at Portia": tags: - save when: @@ -352927,11 +353919,11 @@ My Time at Portia: installDir: My Time At Portia: {} launch: - /Portia.app/Contents/MacOS/Portia: + "/Portia.app/Contents/MacOS/Portia": - when: - os: mac store: steam - /Portia.exe: + "/Portia.exe": - when: - bit: 64 os: windows @@ -352944,12 +353936,12 @@ My Time at Portia: id: 666140 My Time at Sandrock: files: - /userdata//1084600/remote/*.save: + "/userdata//1084600/remote/*.save": tags: - save when: - store: steam - /userdata//1084600/remote/KeyBind.cfg: + "/userdata//1084600/remote/KeyBind.cfg": tags: - config when: @@ -352962,24 +353954,26 @@ My Time at Sandrock: HKEY_CURRENT_USER/Software/Pathea Games/My Time at Sandrock: tags: - config + when: + - store: steam steam: id: 1084600 -'My Tower, My Home': +"My Tower, My Home": installDir: - 'My Tower, My Home': {} + "My Tower, My Home": {} launch: - '/mytower,myhome.app': - - arguments: '--file-descriptor-limit=10000' + "/mytower,myhome.app": + - arguments: "--file-descriptor-limit=10000" when: - bit: 64 os: mac store: steam - /nw: + "/nw": - when: - bit: 64 os: linux store: steam - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -352989,7 +353983,7 @@ My Train Arrives: installDir: My Train Arrives: {} launch: - /My train arrives.exe: + "/My train arrives.exe": - when: - bit: 64 os: windows @@ -353000,12 +353994,12 @@ My Trainer is a Futanari: installDir: My Trainer is a Futanari: {} launch: - /MyTrainerIsAFutanari-32.exe: + "/MyTrainerIsAFutanari-32.exe": - when: - bit: 32 os: windows store: steam - /MyTrainerIsAFutanari.exe: + "/MyTrainerIsAFutanari.exe": - when: - bit: 64 os: windows @@ -353016,11 +354010,11 @@ My Tribe: installDir: My Tribe: {} launch: - /My Tribe.app: + "/My Tribe.app": - when: - os: mac store: steam - /MyTribe.exe: + "/MyTribe.exe": - when: - os: windows store: steam @@ -353030,34 +354024,34 @@ My Typing Skill: installDir: My Typing Skill: {} launch: - /My Typing Skill.exe: + "/My Typing Skill.exe": - when: - store: steam steam: id: 1101130 -'My Universe: Interior Designer': +"My Universe: Interior Designer": installDir: My Universe - My Interior Design: {} launch: - /InteriorDesigner.app/Contents/MacOS/My Universe Interior Designer: + "/InteriorDesigner.app/Contents/MacOS/My Universe Interior Designer": - when: - os: mac store: steam - /InteriorDesigner.exe: + "/InteriorDesigner.exe": - when: - os: windows store: steam steam: id: 1591900 -'My Universe: My Baby Dragon': +"My Universe: My Baby Dragon": installDir: My Universe - My Baby Dragon: {} launch: - /My Universe - My Baby Dragon.exe: + "/My Universe - My Baby Dragon.exe": - when: - os: windows store: steam - /mybabydragon.app: + "/mybabydragon.app": - when: - os: mac store: steam @@ -353067,7 +354061,7 @@ My University Story/我的大学物语: installDir: My University Story: {} launch: - /My University Story.exe: + "/My University Story.exe": - when: - os: windows store: steam @@ -353077,7 +354071,7 @@ My University 我的大学: installDir: MyUniversity: {} launch: - /MyUniversity.exe: + "/MyUniversity.exe": - when: - store: steam steam: @@ -353086,7 +354080,7 @@ My Vet Practice: installDir: My Vet Practice: {} launch: - /TAP.exe: + "/TAP.exe": - when: - os: windows store: steam @@ -353096,17 +354090,17 @@ My Vet Practice - Marine Patrol: installDir: My Vet Practice – Marine Patrol: {} launch: - /TAPSea.exe: + "/TAPSea.exe": - when: - os: windows store: steam steam: id: 595150 -'My Vet Practice: In the Country': +"My Vet Practice: In the Country": installDir: Pet Vet Friends in Need: {} launch: - /TAPLand.exe: + "/TAPLand.exe": - when: - store: steam steam: @@ -353115,11 +354109,11 @@ My Vow to My Liege: installDir: My Vow to My Liege: {} launch: - /Contents/MacOS/myvowtomyliege: + "/Contents/MacOS/myvowtomyliege": - when: - os: mac store: steam - /myvowtomyliege.exe: + "/myvowtomyliege.exe": - when: - os: windows store: steam @@ -353134,7 +354128,7 @@ My Wet Leto Comic: installDir: My Wet Leto Comic: {} launch: - /My Wet Leto Comic.exe: + "/My Wet Leto Comic.exe": - when: - bit: 64 os: windows @@ -353148,7 +354142,7 @@ My Yandere is a Futanari: installDir: My Yandere is a Futanari: {} launch: - /MyYandereIsAFutanari.exe: + "/MyYandereIsAFutanari.exe": - when: - os: windows store: steam @@ -353158,15 +354152,15 @@ My Zero Trip: installDir: My zero trip: {} launch: - /My zero trip.app: + "/My zero trip.app": - when: - os: mac store: steam - /My zero trip.exe: + "/My zero trip.exe": - when: - os: windows store: steam - /My zero trip.x86: + "/My zero trip.x86": - when: - os: linux store: steam @@ -353179,17 +354173,17 @@ My hot beach vacation: installDir: My hot beach vacation: {} launch: - /Myhotbeachvacation.exe: + "/Myhotbeachvacation.exe": - when: - store: steam steam: id: 1188060 -My name is You. And it's the only unusual thing in my life: +"My name is You. And it's the only unusual thing in my life": installDir: MNIY: {} launch: - /nw.exe: - - arguments: '-disable-devtools -in-process-gpu' + "/nw.exe": + - arguments: "-disable-devtools -in-process-gpu" when: - os: windows store: steam @@ -353202,8 +354196,8 @@ MyBot: installDir: MyBot: {} launch: - /MyBot.exe: - - arguments: '--release' + "/MyBot.exe": + - arguments: "--release" when: - bit: 64 os: windows @@ -353214,11 +354208,11 @@ MyDream: installDir: MyDream: {} launch: - /MyDream_OSX32.app: + "/MyDream_OSX32.app": - when: - os: mac store: steam - /MyDream_Win32.exe: + "/MyDream_Win32.exe": - when: - os: windows store: steam @@ -353226,7 +354220,7 @@ MyDream: id: 348860 MySims: files: - /Electronic Arts/MySims: + "/Electronic Arts/MySims": tags: - config - save @@ -353236,7 +354230,7 @@ MyStar: installDir: MyStar: {} launch: - /MyStar/MyStar.exe: + "/MyStar/MyStar.exe": - when: - bit: 64 os: windows @@ -353247,7 +354241,7 @@ MyTD 我的塔防: installDir: MyTD: {} launch: - /MyTD/MyTD.exe: + "/MyTD/MyTD.exe": - when: - os: windows store: steam @@ -353257,26 +354251,26 @@ MyWorld: installDir: MyWorld: {} launch: - /MyWorld.exe: + "/MyWorld.exe": - when: - store: steam steam: id: 492150 -'Myastere: Ruins of Deazniff': +"Myastere: Ruins of Deazniff": installDir: MYASTERE: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam steam: id: 1557510 -'Myha: Return to the Lost Island': +"Myha: Return to the Lost Island": installDir: Myha Return to the Lost Island: {} launch: - /Myha_Gold_01.exe: + "/Myha_Gold_01.exe": - when: - os: windows store: steam @@ -353286,15 +354280,15 @@ Myriad Tower Defense: installDir: Myriad TD: {} launch: - /MyriadTD.exe: + "/MyriadTD.exe": - when: - os: windows store: steam steam: id: 1186170 -'Myriads: Renaissance': +"Myriads: Renaissance": files: - /AppData/LocalLow/SleepingEightStudio/MyriadsRenaissance/SaveFolder_/*.dat: + "/AppData/LocalLow/SleepingEightStudio/MyriadsRenaissance/SaveFolder_/*.dat": tags: - save when: @@ -353302,26 +354296,26 @@ Myriad Tower Defense: installDir: Myriads Renaissance: {} launch: - /Myriads.exe: + "/Myriads.exe": - when: - bit: 64 os: windows store: steam steam: id: 1737220 -'Myrne: The Quest': +"Myrne: The Quest": installDir: Myrne The Quest: {} launch: - /MyrneTheQuest.app: + "/MyrneTheQuest.app": - when: - os: mac store: steam - /myrne_quest.exe: + "/myrne_quest.exe": - when: - os: windows store: steam - /myrne_quest.x86: + "/myrne_quest.x86": - when: - os: linux store: steam @@ -353329,7 +354323,7 @@ Myriad Tower Defense: id: 589470 Myst: files: - /SAVEGAME: + "/SAVEGAME": tags: - save when: @@ -353339,7 +354333,7 @@ Myst: installDir: Myst Masterpiece: {} launch: - /myst.app: + "/myst.app": - when: - os: mac store: steam @@ -353359,24 +354353,24 @@ Myst: when: - os: mac store: steam - /scummvm.exe: - - arguments: '-c myst25.ini myst-win' + "/scummvm.exe": + - arguments: "-c myst25.ini myst-win" when: - os: windows store: steam - - arguments: '-c myst25.ini myst-win-fr' + - arguments: "-c myst25.ini myst-win-fr" when: - os: windows store: steam - - arguments: '-c myst25.ini myst-win-es' + - arguments: "-c myst25.ini myst-win-es" when: - os: windows store: steam - - arguments: '-c myst25.ini myst-win-de' + - arguments: "-c myst25.ini myst-win-de" when: - os: windows store: steam - - arguments: '-c myst25.ini myst-win-pl' + - arguments: "-c myst25.ini myst-win-pl" when: - os: windows store: steam @@ -353384,17 +354378,17 @@ Myst: id: 63660 Myst (2021): files: - /Myst/Saved/Config/WindowsNoEditor: + "/Myst/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /Myst/Saved/SaveGames: + "/Myst/Saved/SaveGames": tags: - save when: - os: windows - /Packages/CyanWorldsInc.Myst_9msjs5e8t6mxt/LocalCache/Local/Myst/Saved/Config/WinGDK: + "/Packages/CyanWorldsInc.Myst_9msjs5e8t6mxt/LocalCache/Local/Myst/Saved/Config/WinGDK": tags: - config when: @@ -353405,74 +354399,75 @@ Myst (2021): installDir: Myst: {} launch: - /Myst-Mac-Shipping.app: + "/Myst-Mac-Shipping.app": - when: - os: mac store: steam - /Myst.exe: - - arguments: '-d3d12 -nohmd' + "/Myst.exe": + - arguments: "-d3d12 -nohmd" when: - bit: 64 os: windows store: steam steam: id: 1255560 -'Myst III: Exile': +"Myst III: Exile": files: - /Saved Games: + "/Saved Games": tags: - save when: - os: windows - /ResidualVM/Saved games: + "/ResidualVM/Saved games": tags: - save when: - - store: steam + - os: windows + store: steam gog: id: 1766899243 installDir: Myst III Exile: {} launch: - /exile.app: + "/exile.app": - when: - os: mac store: steam - /residualvm.exe: - - arguments: '-c myst3.ini myst3-win' + "/residualvm.exe": + - arguments: "-c myst3.ini myst3-win" when: - os: windows store: steam - - arguments: '-c myst3.ini myst3-win-fr' + - arguments: "-c myst3.ini myst3-win-fr" when: - os: windows store: steam - - arguments: '-c myst3.ini myst3-win-de' + - arguments: "-c myst3.ini myst3-win-de" when: - os: windows store: steam - - arguments: '-c myst3.ini myst3-win-nl' + - arguments: "-c myst3.ini myst3-win-nl" when: - os: windows store: steam - - arguments: '-c myst3.ini myst3-win-it' + - arguments: "-c myst3.ini myst3-win-it" when: - os: windows store: steam - - arguments: '-c myst3.ini myst3-win-es' + - arguments: "-c myst3.ini myst3-win-es" when: - os: windows store: steam steam: id: 925930 -'Myst IV: Revelation': +"Myst IV: Revelation": files: - /save/*.m4s: + "/save/*.m4s": tags: - save when: - os: windows - /save/options.m4o: + "/save/options.m4o": tags: - config when: @@ -353482,34 +354477,34 @@ Myst (2021): installDir: Myst IV Revelation: {} launch: - /Myst IV Revelation.app: + "/Myst IV Revelation.app": - when: - os: mac store: steam - /bin/Myst4.exe: + "/bin/Myst4.exe": - when: - os: windows store: steam steam: id: 925940 -'Myst V: End of Ages': +"Myst V: End of Ages": files: - /My Games/Myst V End of Ages/init: + "/My Games/Myst V End of Ages/init": tags: - config when: - os: windows - /My Games/Myst V End of Ages/sav/Store1: + "/My Games/Myst V End of Ages/sav/Store1": tags: - save when: - os: windows - /Myst V End of Ages/init: + "/Myst V End of Ages/init": tags: - config when: - os: windows - /Myst V End of Ages/sav/Store1: + "/Myst V End of Ages/sav/Store1": tags: - save when: @@ -353519,24 +354514,24 @@ Myst (2021): installDir: Myst V: {} launch: - /Myst V End of Ages.app: + "/Myst V End of Ages.app": - when: - os: mac store: steam - /eoa.exe: + "/eoa.exe": - when: - os: windows store: steam steam: id: 208110 -'Mysteria: Occult Shadows': +"Mysteria: Occult Shadows": files: - /Mystria/Saved/*.mss: + "/Mystria/Saved/*.mss": tags: - save when: - os: windows - /Mystria/Saved/Config/WindowsNoEditor: + "/Mystria/Saved/Config/WindowsNoEditor": tags: - config when: @@ -353545,11 +354540,11 @@ Myst (2021): MysteriaOccultShadows: {} steam: id: 662960 -'Mysteries & Nightmares: Morgiana': +"Mysteries & Nightmares: Morgiana": installDir: Morgiana: {} launch: - /morgiana.exe: + "/morgiana.exe": - when: - os: windows store: steam @@ -353559,7 +354554,7 @@ Mysteries Dragon Chess: installDir: MysteyChess: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -353569,30 +354564,30 @@ Mysteries of Fence: installDir: Mysteries of Fence: {} launch: - /MysteriesofFence.exe: + "/MysteriesofFence.exe": - when: - os: windows store: steam steam: id: 644550 -'Mysteries of Neverville: The Runestone of Light': +"Mysteries of Neverville: The Runestone of Light": installDir: Mysteries of Neverville The Runestone of Light: {} launch: - /Neverville.exe: + "/Neverville.exe": - when: - os: windows store: steam steam: id: 994870 -'Mysteries of the Past: Shadow of the Daemon': +"Mysteries of the Past: Shadow of the Daemon": files: - /Blue Brain Games/Mysteries of the Past SoD CE: + "/Blue Brain Games/Mysteries of the Past SoD CE": tags: - save when: - os: windows - /Blue Brain Games/Mysteries of the Past SoD CE/plist: + "/Blue Brain Games/Mysteries of the Past SoD CE/plist": tags: - config when: @@ -353600,11 +354595,11 @@ Mysteries of Fence: installDir: Mysteries of the Past: {} launch: - /Mysteries of the Past SoD CE.app/Contents/MacOS/Mysteries of the Past SoD CE: + "/Mysteries of the Past SoD CE.app/Contents/MacOS/Mysteries of the Past SoD CE": - when: - os: mac store: steam - /Mysteries of the Past SoD CE.exe: + "/Mysteries of the Past SoD CE.exe": - when: - os: windows store: steam @@ -353614,11 +354609,11 @@ Mysteries of the Undead: installDir: Mysteries of the Undead: {} launch: - /MotUtCI.app: + "/MotUtCI.app": - when: - os: mac store: steam - /MotUtCI.exe: + "/MotUtCI.exe": - when: - os: windows store: steam @@ -353628,7 +354623,7 @@ Mysterious Adventure of Michael: installDir: Mysterious Adventure of Michael: {} launch: - /MichaelAdventure.exe: + "/MichaelAdventure.exe": - when: - os: windows store: steam @@ -353638,7 +354633,7 @@ Mysterious Castle: installDir: Mysterious Castle: {} launch: - /Mysterious Castle.exe: + "/Mysterious Castle.exe": - when: - os: windows store: steam @@ -353647,14 +354642,14 @@ Mysterious Castle: Mysterious Insects: steam: id: 760240 -'Mysterious Journey II: Chameleon': +"Mysterious Journey II: Chameleon": files: - /Save/Player: + "/Save/Player": tags: - save when: - os: windows - /display.cfg: + "/display.cfg": tags: - config when: @@ -353663,7 +354658,7 @@ Mysterious Realms RPG: installDir: Mysterious Realms RPG: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -353673,7 +354668,7 @@ Mysterious Space: installDir: Mysterious Space: {} launch: - /MysteriousSpace.exe: + "/MysteriousSpace.exe": - when: - os: windows store: steam @@ -353683,155 +354678,155 @@ Mysterium: installDir: Mysterium: {} launch: - /Mysterium.exe: + "/Mysterium.exe": - when: - os: windows store: steam steam: id: 556180 -'Mystery Case Files: 13th Skull': +"Mystery Case Files: 13th Skull": installDir: - Mystery Case Files ® 13th Skull ™ Collector's Edition: {} + "Mystery Case Files ® 13th Skull ™ Collector's Edition": {} launch: - /MCF7Collectors.exe: + "/MCF7Collectors.exe": - when: - store: steam steam: id: 514700 -'Mystery Case Files: Black Crown': +"Mystery Case Files: Black Crown": installDir: - Mystery Case Files Black Crown Collector's Edition: {} + "Mystery Case Files Black Crown Collector's Edition": {} launch: - /MysteryCaseFiles_BlackCrown_CE.exe: + "/MysteryCaseFiles_BlackCrown_CE.exe": - when: - os: windows store: steam steam: id: 1196400 -'Mystery Case Files: Escape from Ravenhearst': +"Mystery Case Files: Escape from Ravenhearst": installDir: Mystery Case Files Escape From Ravenhearst: {} launch: - /MCF8Standard.exe: + "/MCF8Standard.exe": - when: - os: windows store: steam - /Mystery Case Files - Escape From Ravenhearst.app/Contents/MacOS/Mystery Case Files - Escape From Ravenhearst: + "/Mystery Case Files - Escape From Ravenhearst.app/Contents/MacOS/Mystery Case Files - Escape From Ravenhearst": - when: - os: mac store: steam steam: id: 438560 -'Mystery Case Files: Huntsville': +"Mystery Case Files: Huntsville": installDir: Mystery Case Files Huntsville: {} launch: - /Huntsville.exe: + "/Huntsville.exe": - when: - store: steam steam: id: 50960 -'Mystery Case Files: Key to Ravenhearst': +"Mystery Case Files: Key to Ravenhearst": installDir: - Mystery Case Files Key to Ravenhearst Collector's Edition: {} + "Mystery Case Files Key to Ravenhearst Collector's Edition": {} launch: - /MysteryCaseFiles_KeyToRavenhearst_CE.exe: + "/MysteryCaseFiles_KeyToRavenhearst_CE.exe": - when: - os: windows store: steam steam: id: 1082470 -'Mystery Case Files: Madame Fate': +"Mystery Case Files: Madame Fate": installDir: Mystery Case Files Madame Fate: {} launch: - /Madame Fate.exe: + "/Madame Fate.exe": - when: - store: steam steam: id: 50970 -'Mystery Case Files: Moths to a Flame': +"Mystery Case Files: Moths to a Flame": installDir: - Mystery Case Files Moths to a Flame Collector's Edition: {} + "Mystery Case Files Moths to a Flame Collector's Edition": {} launch: - /MysteryCaseFiles_MothsToAFlame_CE.exe: + "/MysteryCaseFiles_MothsToAFlame_CE.exe": - when: - os: windows store: steam steam: id: 1145450 -'Mystery Case Files: Prime Suspects': +"Mystery Case Files: Prime Suspects": installDir: Mystery Case Files PRime Suspects: {} launch: - /PrimeSuspects.exe: + "/PrimeSuspects.exe": - when: - store: steam steam: id: 50980 -'Mystery Case Files: Ravenhearst': +"Mystery Case Files: Ravenhearst": installDir: Mystery Case Files Ravenhearst: {} launch: - /Ravenhearst.exe: + "/Ravenhearst.exe": - when: - store: steam steam: id: 50990 -'Mystery Case Files: Ravenhearst Unlocked': +"Mystery Case Files: Ravenhearst Unlocked": installDir: - Mystery Case Files Ravenhearst Unlocked Collector's Edition: {} + "Mystery Case Files Ravenhearst Unlocked Collector's Edition": {} launch: - /MysteryCaseFiles_RavenhearstUnlocked_CE.exe: + "/MysteryCaseFiles_RavenhearstUnlocked_CE.exe": - when: - os: windows store: steam steam: id: 1168830 -'Mystery Case Files: Return to Ravenhearst': +"Mystery Case Files: Return to Ravenhearst": installDir: Mystery Case Files Return to Ravenhearst: {} launch: - /ReturnToRavenhearst.exe: + "/ReturnToRavenhearst.exe": - when: - store: steam steam: id: 51000 -'Mystery Case Files: Rewind': +"Mystery Case Files: Rewind": installDir: - Mystery Case Files Rewind Collector's Edition: {} + "Mystery Case Files Rewind Collector's Edition": {} launch: - /MysteryCaseFiles_Rewind_CE.exe: + "/MysteryCaseFiles_Rewind_CE.exe": - when: - os: windows store: steam steam: id: 887960 -'Mystery Case Files: The Black Veil': +"Mystery Case Files: The Black Veil": installDir: - Mystery Case Files The Black Veil Collector's Edition: {} + "Mystery Case Files The Black Veil Collector's Edition": {} launch: - /MysteryCaseFiles_TheBlackVeil_CE.exe: + "/MysteryCaseFiles_TheBlackVeil_CE.exe": - when: - os: windows store: steam steam: id: 580010 -'Mystery Case Files: The Countess': +"Mystery Case Files: The Countess": installDir: - Mystery Case Files The Countess Collector's Edition: {} + "Mystery Case Files The Countess Collector's Edition": {} launch: - /MysteryCaseFiles_TheCountess_CE.exe: + "/MysteryCaseFiles_TheCountess_CE.exe": - when: - os: windows store: steam steam: id: 971060 -'Mystery Case Files: The Revenant''s Hunt': +"Mystery Case Files: The Revenant's Hunt": installDir: - Mystery Case Files The Revenant's Hunt Collector's Edition: {} + "Mystery Case Files The Revenant's Hunt Collector's Edition": {} launch: - /MysteryCaseFiles_TheRevenantsHunt_CE.exe: + "/MysteryCaseFiles_TheRevenantsHunt_CE.exe": - when: - os: windows store: steam @@ -353841,40 +354836,40 @@ Mystery Castle: installDir: Mystery Castle: {} launch: - /MysteryCastle.app: + "/MysteryCastle.app": - when: - os: mac store: steam - /MysteryCastle.exe: + "/MysteryCastle.exe": - when: - os: windows store: steam steam: id: 394950 -'Mystery Castle: The Mirror''s Secret': +"Mystery Castle: The Mirror's Secret": installDir: - Mystery Castle The Mirror's Secret: {} + "Mystery Castle The Mirror's Secret": {} launch: - /MysteryCastleTheMirrorsSecretCE.exe: + "/MysteryCastleTheMirrorsSecretCE.exe": - when: - store: steam steam: id: 428250 -'Mystery Chronicle: One Way Heroics': +"Mystery Chronicle: One Way Heroics": installDir: Mystery Chronicle One Way Heroics: {} launch: - /MC_OneWayHeroics.exe: + "/MC_OneWayHeroics.exe": - when: - os: windows store: steam steam: id: 409000 -'Mystery Expedition: Prisoners of Ice': +"Mystery Expedition: Prisoners of Ice": installDir: Mystery Expedition Prisoners of Ice: {} launch: - /MysteryExpeditionPrisonersOfIce.exe: + "/MysteryExpeditionPrisonersOfIce.exe": - when: - bit: 32 os: windows @@ -353886,15 +354881,15 @@ Mystery House -fivestones-: MysteryHouse: {} steam: id: 917770 -'Mystery House: Secret Stealth': +"Mystery House: Secret Stealth": installDir: MYSTERY HOUSE SECRET STEALTH: {} launch: - /MYSTERY HOUSE SECRET STEALTH.app: + "/MYSTERY HOUSE SECRET STEALTH.app": - when: - os: mac store: steam - /MYSTERY HOUSE SECRET STEALTH.exe: + "/MYSTERY HOUSE SECRET STEALTH.exe": - when: - os: windows store: steam @@ -353904,11 +354899,11 @@ Mystery Island - Hidden Object Games: installDir: Mystery Island - Hidden Object Games: {} launch: - /Mystery Island.app: + "/Mystery Island.app": - when: - os: mac store: steam - /Mystery Island.exe: + "/Mystery Island.exe": - when: - os: windows store: steam @@ -353921,7 +354916,7 @@ Mystery Loss: installDir: Mystery Loss: {} launch: - /MysteryLoss.exe: + "/MysteryLoss.exe": - when: - os: windows store: steam @@ -353931,31 +354926,31 @@ Mystery Lover Nonexistent Summer: installDir: Mystery Lover: {} launch: - /MysteryLover.exe: + "/MysteryLover.exe": - when: - os: windows store: steam steam: id: 1345740 -'Mystery Masterpiece: The Moonstone': +"Mystery Masterpiece: The Moonstone": installDir: Mystery Masterpiece - The Moonstone: {} launch: - /Moonstone.exe: + "/Moonstone.exe": - when: - os: windows store: steam steam: id: 1104830 -'Mystery Masters: Psycho Train Deluxe Edition': +"Mystery Masters: Psycho Train Deluxe Edition": installDir: Mystery Masters Psycho Train Deluxe Edition: {} launch: - /PsychoTrain.app: + "/PsychoTrain.app": - when: - os: mac store: steam - /PsychoTrain.exe: + "/PsychoTrain.exe": - when: - os: windows store: steam @@ -353965,21 +354960,21 @@ Mystery Maze of Balthasar Castle: installDir: Mystery Maze Of Balthasar Castle: {} launch: - /Mystery Maze Of Balthasar Castle.app/Contents/MacOS/Mystery Maze Of Balthasar Castle: + "/Mystery Maze Of Balthasar Castle.app/Contents/MacOS/Mystery Maze Of Balthasar Castle": - when: - os: mac store: steam - workingDir: /Mystery Maze Of Balthasar Castle.app/Contents/MacOS - /Mystery Maze Of Balthasar Castle.exe: + workingDir: "/Mystery Maze Of Balthasar Castle.app/Contents/MacOS" + "/Mystery Maze Of Balthasar Castle.exe": - when: - os: windows store: steam - /Mystery Maze Of Balthasar Castle.x86: + "/Mystery Maze Of Balthasar Castle.x86": - when: - bit: 32 os: linux store: steam - /Mystery Maze Of Balthasar Castle.x86_64: + "/Mystery Maze Of Balthasar Castle.x86_64": - when: - bit: 64 os: linux @@ -353993,7 +354988,7 @@ Mystery P.I. - Lost in Los Angeles: installDir: Mystery PI - Lost in Los Angeles: {} launch: - /MysteryPILosAngeles.exe: + "/MysteryPILosAngeles.exe": - when: - store: steam steam: @@ -354002,7 +354997,7 @@ Mystery P.I. - The Lottery Ticket: installDir: Mystery PI: {} launch: - /MysteryPI.exe: + "/MysteryPI.exe": - when: - store: steam steam: @@ -354011,7 +355006,7 @@ Mystery P.I. - The New York Fortune: installDir: Mystery PI - The New York Fortune: {} launch: - /MysteryPINewYork.exe: + "/MysteryPINewYork.exe": - when: - store: steam steam: @@ -354020,7 +355015,7 @@ Mystery P.I. - The Vegas Heist: installDir: Mystery PI The Vegas Heist: {} launch: - /MysteryPIVegas.exe: + "/MysteryPIVegas.exe": - when: - store: steam steam: @@ -354029,63 +355024,63 @@ Mystery Riddles: installDir: Mystery Riddles: {} launch: - /Mystery Riddles.app: + "/Mystery Riddles.app": - when: - os: mac store: steam - /MysteryRiddles.exe: + "/MysteryRiddles.exe": - when: - os: windows store: steam steam: id: 598620 -'Mystery Solitaire: Grimm''s Tales': +"Mystery Solitaire: Grimm's Tales": installDir: Mystery Solitaire Grimm Tales: {} launch: - /Mystery Solitaire. Grimm's tales.app: + "/Mystery Solitaire. Grimm's tales.app": - when: - os: mac store: steam - /Mystery Solitaire. Grimm's tales.exe: + "/Mystery Solitaire. Grimm's tales.exe": - when: - os: windows store: steam steam: id: 1037010 -'Mystery Solitaire: Grimm''s Tales 2': +"Mystery Solitaire: Grimm's Tales 2": installDir: - Mystery Solitaire Grimm's tales 2: {} + "Mystery Solitaire Grimm's tales 2": {} launch: - /Mystery Solitaire. Grimm's tales 2.app: + "/Mystery Solitaire. Grimm's tales 2.app": - when: - os: mac store: steam - /Mystery Solitaire. Grimm's tales 2.exe: + "/Mystery Solitaire. Grimm's tales 2.exe": - when: - os: windows store: steam steam: id: 1095860 -'Mystery Solitaire: The Arkham Spirits': +"Mystery Solitaire: The Arkham Spirits": installDir: Mystery Solitaire The Arkham Spirits: {} launch: - /Mystery Solitaire. Arkham's Spirits.exe: + "/Mystery Solitaire. Arkham's Spirits.exe": - when: - os: windows store: steam steam: id: 1168070 -'Mystery Solitaire: The Black Raven': +"Mystery Solitaire: The Black Raven": installDir: Mystery Solitaire The Black Raven: {} launch: - /Mystery Solitaire. The Black Raven.app: + "/Mystery Solitaire. The Black Raven.app": - when: - os: mac store: steam - /Mystery Solitaire. The Black Raven.exe: + "/Mystery Solitaire. The Black Raven.exe": - when: - os: windows store: steam @@ -354096,74 +355091,74 @@ Mystery Stone from Heaven: Mystery Stone from Heaven: {} steam: id: 744630 -'Mystery Tales: Alaskan Wild': +"Mystery Tales: Alaskan Wild": installDir: - Mystery Tales Alaskan Wild Collector's Edition: {} + "Mystery Tales Alaskan Wild Collector's Edition": {} launch: - /MysteryTales_AlaskanWild_CE.exe: + "/MysteryTales_AlaskanWild_CE.exe": - when: - os: windows store: steam steam: id: 838720 -'Mystery Tales: The Lost Hope': +"Mystery Tales: The Lost Hope": installDir: - Mystery Tales The Lost Hope Collector's Edition: {} + "Mystery Tales The Lost Hope Collector's Edition": {} launch: - /MysteryTales_TheLostHope_CE.exe: + "/MysteryTales_TheLostHope_CE.exe": - when: - os: windows store: steam steam: id: 591580 -'Mystery Tales: The Twilight World': +"Mystery Tales: The Twilight World": installDir: - Mystery Tales The Twilight World Collector's Edition: {} + "Mystery Tales The Twilight World Collector's Edition": {} launch: - /MysteryTales_TheTwilightWorld_CE.exe: + "/MysteryTales_TheTwilightWorld_CE.exe": - when: - os: windows store: steam steam: id: 740520 -'Mystery Trackers: Black Isle': +"Mystery Trackers: Black Isle": installDir: - Mystery Trackers Black Isle Collector's Edition: {} + "Mystery Trackers Black Isle Collector's Edition": {} launch: - /MysteryTrackers_BlackIsle_CE.exe: + "/MysteryTrackers_BlackIsle_CE.exe": - when: - os: windows store: steam steam: id: 926120 -'Mystery Trackers: The Void': +"Mystery Trackers: The Void": installDir: - Mystery Trackers The Void Collector's Edition: {} + "Mystery Trackers The Void Collector's Edition": {} launch: - /MysteryTrackers.exe: + "/MysteryTrackers.exe": - when: - store: steam steam: id: 527940 -'Mystery Trackers: Winterpoint Tragedy': +"Mystery Trackers: Winterpoint Tragedy": installDir: - Mystery Trackers Winterpoint Tragedy Collector's Edition: {} + "Mystery Trackers Winterpoint Tragedy Collector's Edition": {} launch: - /MysteryTrackers_WinterpointTragedy_CE.exe: + "/MysteryTrackers_WinterpointTragedy_CE.exe": - when: - os: windows store: steam steam: id: 1059620 -'Mystery Village: Shards of the Past': +"Mystery Village: Shards of the Past": installDir: Mystery Village Shards of the past: {} launch: - /Mystery Village - Shards of the Past.app/Contents/MacOS/Mystery Village - Shards of the Past: + "/Mystery Village - Shards of the Past.app/Contents/MacOS/Mystery Village - Shards of the Past": - when: - os: mac store: steam - /Mystery Village - Shards of the Past.exe: + "/Mystery Village - Shards of the Past.exe": - when: - os: windows store: steam @@ -354173,7 +355168,7 @@ Mystery at Stonyford Bridge: installDir: Mystery at Stonyford Bridge: {} launch: - /MysteryatStonyfordBridge.exe: + "/MysteryatStonyfordBridge.exe": - when: - os: windows store: steam @@ -354183,7 +355178,7 @@ Mystery of Camp Enigma: installDir: Mystery of Camp Enigma: {} launch: - /Enigma/Mystery of Camp Enigma.exe: + "/Enigma/Mystery of Camp Enigma.exe": - when: - os: windows store: steam @@ -354201,11 +355196,11 @@ Mystery of Neuschwanstein: installDir: Mystery of Neuschwanstein: {} launch: - /mon_osx.app: + "/mon_osx.app": - when: - os: mac store: steam - /mon_windows.exe: + "/mon_windows.exe": - when: - os: windows store: steam @@ -354215,41 +355210,41 @@ Mystery of Rivenhallows: installDir: Mystery Of Rivenhallows: {} launch: - /MysteryOfRivenhallows.exe: + "/MysteryOfRivenhallows.exe": - when: - os: windows store: steam steam: id: 498050 -'Mystery of Unicorn Castle: The Beastmaster': +"Mystery of Unicorn Castle: The Beastmaster": installDir: Mystery of Unicorn Castle The Beastmaster: {} launch: - /MysteryOfUnicornCastle_TheBeastmasterCE.exe: + "/MysteryOfUnicornCastle_TheBeastmasterCE.exe": - when: - store: steam steam: id: 428280 -'Mystery of the Ancients: Curse of the Black Water': +"Mystery of the Ancients: Curse of the Black Water": installDir: - Mystery of the Ancients Curse of the Black Water Collector's Edition: {} + "Mystery of the Ancients Curse of the Black Water Collector's Edition": {} launch: - /MysteryoftheAncients_CurseoftheBlackWater_CE.exe: + "/MysteryoftheAncients_CurseoftheBlackWater_CE.exe": - when: - os: windows store: steam steam: id: 926100 -'Mystery of the Ancients: Deadly Cold': +"Mystery of the Ancients: Deadly Cold": installDir: - Mystery of the Ancients Deadly Cold Collector's Edition: {} + "Mystery of the Ancients Deadly Cold Collector's Edition": {} steam: id: 1068700 -'Mystery of the Ancients: Three Guardians': +"Mystery of the Ancients: Three Guardians": installDir: - Mystery of the Ancients Three Guardians Collector's Edition: {} + "Mystery of the Ancients Three Guardians Collector's Edition": {} launch: - /MysteryOfTheAncientsThreeGuardiansCE.exe: + "/MysteryOfTheAncientsThreeGuardiansCE.exe": - when: - os: windows store: steam @@ -354259,28 +355254,28 @@ Mystic Defense: installDir: Mystic Defense: {} launch: - /MysticDefense.exe: + "/MysticDefense.exe": - when: - os: windows store: steam steam: id: 553910 -'Mystic Destinies: Echoes': +"Mystic Destinies: Echoes": steam: id: 721550 -'Mystic Destinies: Serendipity of Aeons': +"Mystic Destinies: Serendipity of Aeons": installDir: Mystic Destinies Serendipity of Aeons: {} launch: - /Mystic Destinies.app: + "/Mystic Destinies.app": - when: - os: mac store: steam - /Mystic Destinies.exe: + "/Mystic Destinies.exe": - when: - os: windows store: steam - /Mystic Destinies.sh: + "/Mystic Destinies.sh": - when: - os: linux store: steam @@ -354290,20 +355285,20 @@ Mystic Diary - Quest for Lost Brother: installDir: Mystic Diary - Quest for Lost Brother: {} launch: - /md.app/Contents/MacOS/md: + "/md.app/Contents/MacOS/md": - when: - os: mac store: steam - /md.exe: + "/md.exe": - when: - os: windows store: steam - /md.x86: + "/md.x86": - when: - bit: 32 os: linux store: steam - /md.x86_64: + "/md.x86_64": - when: - bit: 64 os: linux @@ -354314,25 +355309,25 @@ Mystic Hammer: installDir: Mystic Hammer: {} launch: - /Mystic Hammer.app: + "/Mystic Hammer.app": - when: - os: mac store: steam - /Mystic Hammer.exe: + "/Mystic Hammer.exe": - when: - os: windows store: steam steam: id: 1201650 -'Mystic Journey: Tri Peaks Solitaire': +"Mystic Journey: Tri Peaks Solitaire": installDir: Mystic Journey Tri Peaks Solitaire: {} launch: - /Mystic Journey Tri Peaks Solitaire.app: + "/Mystic Journey Tri Peaks Solitaire.app": - when: - os: mac store: steam - /MysticJourney_TriPeaksSolitaire.exe: + "/MysticJourney_TriPeaksSolitaire.exe": - when: - os: windows store: steam @@ -354342,17 +355337,17 @@ Mystic Mayhem Unleashed: installDir: Mystic Mayhem Unleashed: {} launch: - /Mystic Mayhem Unleashed.exe: + "/Mystic Mayhem Unleashed.exe": - when: - bit: 64 os: windows store: steam - /MysticMayhemUnleashedFullLinux.x86_64: + "/MysticMayhemUnleashedFullLinux.x86_64": - when: - bit: 64 os: linux store: steam - /MysticMayhemUnleashedFullOSX.app/Contents/MacOS/MysticMayhemUnleashedFullOSX: + "/MysticMayhemUnleashedFullOSX.app/Contents/MacOS/MysticMayhemUnleashedFullOSX": - when: - os: mac store: steam @@ -354362,7 +355357,7 @@ Mystic Melee: installDir: Mystic Melee: {} launch: - /Mystic Melee.exe: + "/Mystic Melee.exe": - when: - os: windows store: steam @@ -354372,17 +355367,17 @@ Mystic Miracles: installDir: Mystic Miracles - Strategy card board game: {} launch: - /MysticMiracles.exe: + "/MysticMiracles.exe": - when: - os: windows store: steam steam: id: 704060 -'Mystic Pillars: A Story-Based Puzzle Game': +"Mystic Pillars: A Story-Based Puzzle Game": installDir: Mystic Pillars: {} launch: - /Mystic Pillars.exe: + "/Mystic Pillars.exe": - when: - store: steam steam: @@ -354391,7 +355386,7 @@ Mystic RUS-files: installDir: Mystic RUS-files: {} launch: - /Mystic RUS-files.exe: + "/Mystic RUS-files.exe": - when: - store: steam steam: @@ -354400,7 +355395,7 @@ Mystic Ruins: installDir: Mystic Ruins: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -354410,19 +355405,19 @@ Mystic Saga: installDir: Mystic Saga: {} launch: - /MysticSaga.exe: + "/MysticSaga.exe": - when: - store: steam steam: id: 415840 Mystic Towers: files: - /TOWERS.CFG: + "/TOWERS.CFG": tags: - config when: - os: dos - /TOWERS.SG*: + "/TOWERS.SG*": tags: - save when: @@ -354430,22 +355425,22 @@ Mystic Towers: installDir: Mystic Towers: {} launch: - /Dosbox/dosbox.app: - - arguments: '-conf \"..\\TOWERS.conf\" -noconsole -c' + "/Dosbox/dosbox.app": + - arguments: "-conf \\\"..\\\\TOWERS.conf\\\" -noconsole -c" when: - os: linux store: steam - workingDir: /Dosbox - /Mystic Towers.app: + workingDir: "/Dosbox" + "/Mystic Towers.app": - when: - os: mac store: steam - /Mystic Towers/dosbox/dosbox.exe: - - arguments: '-conf \"..\\TOWERS.conf\" -noconsole -c' + "/Mystic Towers/dosbox/dosbox.exe": + - arguments: "-conf \\\"..\\\\TOWERS.conf\\\" -noconsole -c" when: - os: windows store: steam - workingDir: /Mystic Towers/dosbox + workingDir: "/Mystic Towers/dosbox" steam: id: 358220 Mystic VR: @@ -354457,21 +355452,21 @@ Mystic Vale: installDir: Mystic Vale: {} launch: - /Mystic Vale_Release.app: + "/Mystic Vale_Release.app": - when: - os: mac store: steam - /Mystic Vale_Release.exe: + "/Mystic Vale_Release.exe": - when: - os: windows store: steam steam: id: 908070 -'Mystica: The Ninth Society': +"Mystica: The Ninth Society": installDir: Mystica The Ninth Society: {} launch: - /Mystica Launcher.exe: + "/Mystica Launcher.exe": - when: - os: windows store: steam @@ -354481,7 +355476,7 @@ Mystical: installDir: Mystical: {} launch: - /dosbox.exe: + "/dosbox.exe": - when: - os: windows store: steam @@ -354491,7 +355486,7 @@ Mystical (2015): installDir: Mystical: {} launch: - /Mystical.exe: + "/Mystical.exe": - when: - os: windows store: steam @@ -354499,7 +355494,7 @@ Mystical (2015): id: 387270 Mystik Belle: files: - /Mystik_Belle: + "/Mystik_Belle": tags: - save when: @@ -354507,25 +355502,25 @@ Mystik Belle: installDir: Mystik_Belle: {} launch: - /Mystik_Belle.app: + "/Mystik_Belle.app": - when: - os: mac store: steam - /Mystik_Belle.exe: + "/Mystik_Belle.exe": - when: - os: windows store: steam - /run.sh: + "/run.sh": - when: - os: linux store: steam steam: id: 332610 -'Mystika 3: Awakening of the Dragons': +"Mystika 3: Awakening of the Dragons": installDir: Mystika3: {} launch: - /Mystika3.exe: + "/Mystika3.exe": - when: - os: windows store: steam @@ -354535,17 +355530,17 @@ Myth of Empires: installDir: Myth of Empires: {} launch: - /MOE/Binaries/Win64/ACE-Launcher64.exe: - - arguments: '-ServerListOss' + "/MOE/Binaries/Win64/ACE-Launcher64.exe": + - arguments: "-ServerListOss" when: - bit: 64 os: windows store: steam steam: id: 1371580 -'MythBusters: The Game': +"MythBusters: The Game": files: - /MythBusters/SavesDir: + "/MythBusters/SavesDir": tags: - save when: @@ -354558,12 +355553,12 @@ Myth of Empires: id: 811550 MythForce: files: - /MythForce/Saved/Config/WindowsNoEditor: + "/MythForce/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /MythForce/Saved/SaveGames: + "/MythForce/Saved/SaveGames": tags: - save when: @@ -354579,8 +355574,8 @@ Mytheon: installDir: Mytheon: {} launch: - /PGLauncher.exe: - - arguments: 'NOARTPROCESS ' + "/PGLauncher.exe": + - arguments: "NOARTPROCESS " when: - os: windows store: steam @@ -354590,11 +355585,11 @@ Mythgard: installDir: Mythgard: {} launch: - /Mythgard.app: + "/Mythgard.app": - when: - os: mac store: steam - /Mythgard.exe: + "/Mythgard.exe": - when: - bit: 64 os: windows @@ -354603,12 +355598,12 @@ Mythgard: id: 839910 Mythic Ocean: files: - /OceanGods/Saved/Config/WindowsNoEditor: + "/OceanGods/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /OceanGods/Saved/SaveGames: + "/OceanGods/Saved/SaveGames": tags: - save when: @@ -354619,17 +355614,17 @@ Mythic Ocean: installDir: Mythic Ocean: {} launch: - /OceanGods.exe: + "/OceanGods.exe": - when: - os: windows store: steam steam: id: 814360 -'Mythic Ocean: Prologue': +"Mythic Ocean: Prologue": installDir: Mythic Ocean Prologue: {} launch: - /OceanGods.exe: + "/OceanGods.exe": - when: - os: windows store: steam @@ -354639,25 +355634,25 @@ Mythic Origins: installDir: Mythic Origins: {} launch: - /ClientDesktop.app/Contents/MacOS/ClientDesktop: + "/ClientDesktop.app/Contents/MacOS/ClientDesktop": - when: - os: mac store: steam - /ClientDesktop/ClientDesktop.exe: + "/ClientDesktop/ClientDesktop.exe": - when: - os: windows store: steam - /ClientDesktop/bin/ClientDesktop: + "/ClientDesktop/bin/ClientDesktop": - when: - os: linux store: steam steam: id: 2018990 -'Mythic Pearls: The Legend of Tirnanog': +"Mythic Pearls: The Legend of Tirnanog": installDir: Mythic Pearls: {} launch: - /MythicPearls.exe: + "/MythicPearls.exe": - when: - os: windows store: steam @@ -354667,37 +355662,37 @@ Mythic Victory Arena: installDir: Mythic Victory Arena: {} launch: - /mac/Game.app/Contents/MacOS/nwjs: + "/mac/Game.app/Contents/MacOS/nwjs": - when: - os: mac store: steam - workingDir: /mac - /windows/Game.exe: + workingDir: "/mac" + "/windows/Game.exe": - when: - os: windows store: steam - workingDir: /windows + workingDir: "/windows" steam: id: 514200 -'Mythic Wonders: The Philosopher''s Stone': +"Mythic Wonders: The Philosopher's Stone": installDir: Mythic Wonders: {} launch: - /MythicWonders.exe: + "/MythicWonders.exe": - when: - os: windows store: steam - /MythicWonders_amd64: + "/MythicWonders_amd64": - when: - bit: 64 os: linux store: steam - /MythicWonders_i386: + "/MythicWonders_i386": - when: - bit: 32 os: linux store: steam - /mac_steam.app/Contents/MacOS/mac_steam: + "/mac_steam.app/Contents/MacOS/mac_steam": - when: - os: mac store: steam @@ -354707,11 +355702,11 @@ Mythical: installDir: Mythical: {} launch: - /Mythical.app/Contents/MacOS/Mythical: + "/Mythical.app/Contents/MacOS/Mythical": - when: - os: mac store: steam - /Mythical.exe: + "/Mythical.exe": - when: - os: windows store: steam @@ -354721,7 +355716,7 @@ Mythical BOOM Party: installDir: Mythical BOOM Party: {} launch: - /MythicalBOOMParty/Mythical BOOM Party.exe: + "/MythicalBOOMParty/Mythical BOOM Party.exe": - when: - bit: 64 os: windows @@ -354733,23 +355728,23 @@ Mythlink: Mythlink: {} steam: id: 633150 -'Mythos: The Beginning - Director''s Cut': +"Mythos: The Beginning - Director's Cut": installDir: Mythos The Beginning: {} launch: - /Mythos The Beginning.app: + "/Mythos The Beginning.app": - when: - os: mac store: steam - /game.exe: + "/game.exe": - when: - os: windows store: steam steam: id: 325320 -'Myths of Orion: Light from the North': +"Myths of Orion: Light from the North": files: - /Cateia Games/Myths of Orion: + "/Cateia Games/Myths of Orion": tags: - config - save @@ -354758,71 +355753,71 @@ Mythlink: installDir: Myths Of Orion: {} launch: - /Myths of Orion.app/Contents/MacOS/orion: + "/Myths of Orion.app/Contents/MacOS/orion": - when: - os: mac store: steam - workingDir: /Myths of Orion.app/Contents/MacOS - /orion.exe: + workingDir: "/Myths of Orion.app/Contents/MacOS" + "/orion.exe": - when: - os: windows store: steam steam: id: 288670 -'Myths of the World: Black Rose': +"Myths of the World: Black Rose": installDir: - Myths of the World Black Rose Collector's Edition: {} + "Myths of the World Black Rose Collector's Edition": {} launch: - /MythsOfTheWorld_BlackRose_CE.exe: + "/MythsOfTheWorld_BlackRose_CE.exe": - when: - os: windows store: steam steam: id: 995920 -'Myths of the World: Chinese Healer': +"Myths of the World: Chinese Healer": installDir: - Myths of the World Chinese Healer Collector's Edition: {} + "Myths of the World Chinese Healer Collector's Edition": {} launch: - /MythsOfTheWorld_ChineseHealerCE.exe: + "/MythsOfTheWorld_ChineseHealerCE.exe": - when: - store: steam steam: id: 551360 -'Myths of the World: Of Fiends and Fairies': +"Myths of the World: Of Fiends and Fairies": installDir: - Myths of the World Of Fiends and Fairies Collector's Edition: {} + "Myths of the World Of Fiends and Fairies Collector's Edition": {} launch: - /MythsOfTheWorld_OfFiendsAndFairies_CE.exe: + "/MythsOfTheWorld_OfFiendsAndFairies_CE.exe": - when: - os: windows store: steam steam: id: 866790 -'Myths of the World: Spirit Wolf': +"Myths of the World: Spirit Wolf": installDir: - Myths of the World Spirit Wolf Collector's Edition: {} + "Myths of the World Spirit Wolf Collector's Edition": {} launch: - /MythsOfTheWorld_SpiritWolf_CE.exe: + "/MythsOfTheWorld_SpiritWolf_CE.exe": - when: - os: windows store: steam steam: id: 786070 -'Myths of the World: Stolen Spring': +"Myths of the World: Stolen Spring": installDir: - Myths of the World Stolen Spring Collector's Edition: {} + "Myths of the World Stolen Spring Collector's Edition": {} launch: - /MythsOfTheWorld_StolenSpringCE.exe: + "/MythsOfTheWorld_StolenSpringCE.exe": - when: - os: windows store: steam steam: id: 638260 -'Myths of the World: The Heart of Desolation': +"Myths of the World: The Heart of Desolation": installDir: - Myths of the World The Heart of Desolation Collector's Edition: {} + "Myths of the World The Heart of Desolation Collector's Edition": {} launch: - /MythsOfTheWorld_TheHeartOfDesolation_CE.exe: + "/MythsOfTheWorld_TheHeartOfDesolation_CE.exe": - when: - os: windows store: steam @@ -354832,17 +355827,17 @@ MÅRD: installDir: MARD: {} launch: - /MARD.exe: + "/MARD.exe": - when: - os: windows store: steam steam: id: 928070 -'Märchen Forest: Mylne and the Forest Gift': +"Märchen Forest: Mylne and the Forest Gift": installDir: merufore: {} launch: - /merufore_for_win.exe: + "/merufore_for_win.exe": - when: - os: windows store: steam @@ -354856,21 +355851,21 @@ Mò The Frog: installDir: Mo The Frog: {} launch: - /MòTheFrog.exe: + "/MòTheFrog.exe": - when: - bit: 64 os: windows store: steam steam: id: 967290 -Möbius Front '83: +"Möbius Front '83": files: - /My Games/Möbius Front '83//config.cfg: + "/My Games/Möbius Front '83//config.cfg": tags: - config when: - os: windows - /My Games/Möbius Front '83//save.dat: + "/My Games/Möbius Front '83//save.dat": tags: - save when: @@ -354878,17 +355873,17 @@ Möbius Front '83: gog: id: 1718413058 installDir: - Möbius Front '83: {} + "Möbius Front '83": {} launch: - /MobiusFront83: + "/MobiusFront83": - when: - os: linux store: steam - /Möbius Front '83.app/Contents/MacOS/MobiusFront83: + "/Möbius Front '83.app/Contents/MacOS/MobiusFront83": - when: - os: mac store: steam - /Möbius Front '83.exe: + "/Möbius Front '83.exe": - when: - os: windows store: steam @@ -354896,17 +355891,17 @@ Möbius Front '83: id: 971160 N++: files: - /Metanet/N++: + "/Metanet/N++": tags: - save when: - os: windows - /Metanet/N++/levels: + "/Metanet/N++/levels": tags: - config when: - os: windows - /Metanet/N++: + "/Metanet/N++": tags: - config - save @@ -354915,21 +355910,21 @@ N++: installDir: N++: {} launch: - /N++.app: + "/N++.app": - when: - os: mac store: steam - /N++.bin.x86: + "/N++.bin.x86": - when: - bit: 32 os: linux store: steam - /N++.bin.x86_64: + "/N++.bin.x86_64": - when: - bit: 64 os: linux store: steam - /N++.exe: + "/N++.exe": - when: - os: windows store: steam @@ -354944,18 +355939,18 @@ N.E.O: installDir: NEO: {} launch: - /NEO.exe: + "/NEO.exe": - when: - bit: 64 os: windows store: steam steam: id: 1120820 -'N.E.R.O.: Nothing Ever Remains Obscure': +"N.E.R.O.: Nothing Ever Remains Obscure": installDir: Nero: {} launch: - /NERO.exe: + "/NERO.exe": - when: - os: windows store: steam @@ -354968,7 +355963,7 @@ N.P.P.D. RUSH - The Milk of Ultraviolet: installDir: NPPD Rush: {} launch: - /NPPDRUSH.exe: + "/NPPDRUSH.exe": - when: - bit: 32 os: windows @@ -354986,17 +355981,17 @@ N.a.N Industry VR: N0-EXIT: steam: id: 503430 -'N0d3: Machina Omega': +"N0d3: Machina Omega": steam: id: 761020 -'N1RV Ann-A: Cyberpunk Bartender Action': +"N1RV Ann-A: Cyberpunk Bartender Action": steam: id: 914210 -'N2O: Nitrous Oxide': +"N2O: Nitrous Oxide": installDir: N2O: {} launch: - /N2O.exe: + "/N2O.exe": - when: - os: windows store: steam @@ -355006,7 +356001,7 @@ NAL is Alive: installDir: NAL Is Alive: {} launch: - /NIALauncher.exe: + "/NIALauncher.exe": - when: - os: windows store: steam @@ -355014,7 +356009,7 @@ NAL is Alive: id: 485430 NALOGI: files: - /www/save: + "/www/save": tags: - save when: @@ -355022,20 +356017,20 @@ NALOGI: installDir: NALOGI: {} launch: - /Game.exe: - - arguments: '--in-process-gpu' + "/Game.exe": + - arguments: "--in-process-gpu" when: - store: steam steam: id: 810670 NAM: files: - /GAME*.SAV: + "/GAME*.SAV": tags: - save when: - os: dos - /NAM.CFG: + "/NAM.CFG": tags: - config when: @@ -355045,49 +356040,49 @@ NAM: installDir: Nam: {} launch: - /Nam.app: + "/Nam.app": - when: - os: mac store: steam - /dosbox_linux/daum/launch_nam_game_daum.sh: + "/dosbox_linux/daum/launch_nam_game_daum.sh": - when: - os: linux store: steam - workingDir: /dosbox_linux/daum - /dosbox_linux/launch_nam_config.sh: + workingDir: "/dosbox_linux/daum" + "/dosbox_linux/launch_nam_config.sh": - when: - os: linux store: steam - workingDir: /dosbox_linux - /dosbox_linux/launch_nam_game.sh: + workingDir: "/dosbox_linux" + "/dosbox_linux/launch_nam_game.sh": - when: - os: linux store: steam - workingDir: /dosbox_linux - /dosbox_windows/daum/dosbox.exe: - - arguments: '-conf dosbox_nam.conf -conf dosbox_nam_launch_windows.conf -noconsole' + workingDir: "/dosbox_linux" + "/dosbox_windows/daum/dosbox.exe": + - arguments: "-conf dosbox_nam.conf -conf dosbox_nam_launch_windows.conf -noconsole" when: - os: windows store: steam - workingDir: /dosbox_windows/daum - /dosbox_windows/dosbox.exe: - - arguments: '-conf dosbox_nam.conf -conf dosbox_nam_launch_windows.conf -noconsole' + workingDir: "/dosbox_windows/daum" + "/dosbox_windows/dosbox.exe": + - arguments: "-conf dosbox_nam.conf -conf dosbox_nam_launch_windows.conf -noconsole" when: - os: windows store: steam - workingDir: /dosbox_windows - - arguments: '-conf dosbox_nam.conf -conf dosbox_nam_config_windows.conf -noconsole' + workingDir: "/dosbox_windows" + - arguments: "-conf dosbox_nam.conf -conf dosbox_nam_config_windows.conf -noconsole" when: - os: windows store: steam - workingDir: /dosbox_windows + workingDir: "/dosbox_windows" steam: id: 329650 NAMELESS: installDir: NAMELESS: {} launch: - /Nameless.exe: + "/Nameless.exe": - when: - os: windows store: steam @@ -355100,30 +356095,30 @@ NARWHAR Project Hornwhale: installDir: Narwhar: {} launch: - /narwhar.exe: + "/narwhar.exe": - when: - os: windows store: steam steam: id: 1187900 -NASCAR '14: +"NASCAR '14": installDir: NASCAR 14: {} launch: - /bin/NASCAR14.exe: + "/bin/NASCAR14.exe": - when: - os: windows store: steam - workingDir: /bin + workingDir: "/bin" registry: HKEY_CURRENT_USER/Software/Eutechnyx/NASCAR 14: tags: - config steam: id: 254130 -NASCAR '15: +"NASCAR '15": files: - /userdata//345890/remote: + "/userdata//345890/remote": tags: - save when: @@ -355132,22 +356127,22 @@ NASCAR '15: installDir: NASCAR 15: {} launch: - /bin/NASCAR15.exe: + "/bin/NASCAR15.exe": - when: - os: windows store: steam - workingDir: /bin + workingDir: "/bin" registry: HKEY_CURRENT_USER/Software/Eutechnyx/NASCAR 15: tags: - config steam: id: 345890 -'NASCAR 21: Ignition': +"NASCAR 21: Ignition": installDir: NASCAR 21 Ignition: {} launch: - /NascarNext.exe: + "/NascarNext.exe": - when: - os: windows store: steam @@ -355155,19 +356150,19 @@ NASCAR '15: id: 1439300 NASCAR Arcade Rush: files: - /Nascar/Saved/SaveGames: + "/Nascar/Saved/SaveGames": tags: - save when: - os: windows - Nascar/Saved/Config/Windows: + "Nascar/Saved/Config/Windows": tags: - config when: - os: windows NASCAR Heat 2: files: - /NASCAR Heat 2/SaveData: + "/NASCAR Heat 2/SaveData": tags: - save when: @@ -355175,12 +356170,12 @@ NASCAR Heat 2: installDir: NASCAR Heat 2: {} launch: - /NASCARHeat2.exe: + "/NASCARHeat2.exe": - when: - bit: 64 os: windows store: steam - - arguments: '-MGI-reset-graphics-settings' + - arguments: "-MGI-reset-graphics-settings" when: - bit: 64 os: windows @@ -355193,7 +356188,7 @@ NASCAR Heat 2: id: 670900 NASCAR Heat 3: files: - /NASCAR Heat 3/SaveData: + "/NASCAR Heat 3/SaveData": tags: - save when: @@ -355201,12 +356196,12 @@ NASCAR Heat 3: installDir: NASCAR Heat 3: {} launch: - /NASCARHeat3.exe: + "/NASCARHeat3.exe": - when: - bit: 64 os: windows store: steam - - arguments: '-MGI-reset-graphics-settings' + - arguments: "-MGI-reset-graphics-settings" when: - bit: 64 os: windows @@ -355219,7 +356214,7 @@ NASCAR Heat 3: id: 905450 NASCAR Heat 4: files: - /NASCAR Heat 4/SaveData: + "/NASCAR Heat 4/SaveData": tags: - save when: @@ -355227,12 +356222,12 @@ NASCAR Heat 4: installDir: NASCAR Heat 4: {} launch: - /NASCARHeat4.exe: + "/NASCARHeat4.exe": - when: - bit: 64 os: windows store: steam - - arguments: '-MGI-reset-graphics-settings' + - arguments: "-MGI-reset-graphics-settings" when: - bit: 64 os: windows @@ -355245,7 +356240,7 @@ NASCAR Heat 4: id: 1127980 NASCAR Heat 5: files: - /NASCAR Heat 5/SaveData: + "/NASCAR Heat 5/SaveData": tags: - save when: @@ -355253,12 +356248,12 @@ NASCAR Heat 5: installDir: NASCAR Heat 5: {} launch: - /NascarHeat5.exe: + "/NascarHeat5.exe": - when: - bit: 64 os: windows store: steam - - arguments: '-MGI-reset-graphics-settings' + - arguments: "-MGI-reset-graphics-settings" when: - bit: 64 os: windows @@ -355271,7 +356266,7 @@ NASCAR Heat 5: id: 1265860 NASCAR Heat Evolution: files: - /NASCAR Heat Evolution/SaveData: + "/NASCAR Heat Evolution/SaveData": tags: - save when: @@ -355279,17 +356274,17 @@ NASCAR Heat Evolution: installDir: NASCAR Heat Evolution: {} launch: - /ControllerConfig/ControllerConfig.exe: + "/ControllerConfig/ControllerConfig.exe": - when: - bit: 64 os: windows store: steam - /NASCARHeatEvolution.exe: + "/NASCARHeatEvolution.exe": - when: - bit: 64 os: windows store: steam - - arguments: '-MGI-reset-graphics-settings' + - arguments: "-MGI-reset-graphics-settings" when: - bit: 64 os: windows @@ -355302,36 +356297,36 @@ NASCAR Heat Evolution: id: 508450 NASCAR Racing 2003 Season: files: - /core.ini: + "/core.ini": tags: - config when: - os: windows - '/players/[player name]': + "/players/[player name]": tags: - save when: - os: windows - '/players/[player name]/player.ini': + "/players/[player name]/player.ini": tags: - config when: - os: windows -'NASCAR The Game: 2013': +"NASCAR The Game: 2013": installDir: NASCAR The Game 2013: {} launch: - /bin/NTG2013.exe: + "/bin/NTG2013.exe": - when: - os: windows store: steam steam: id: 225220 -'NAVALNY: A Nightmare of Corrupt': +"NAVALNY: A Nightmare of Corrupt": installDir: NAVALNY A Nightmare of Corrupt: {} launch: - /NAVALNY A Nightmare of Corrupt.exe: + "/NAVALNY A Nightmare of Corrupt.exe": - when: - bit: 64 os: windows @@ -355340,12 +356335,12 @@ NASCAR Racing 2003 Season: id: 1154570 NBA 2K Playgrounds 2: files: - /NBAPlaygrounds2/Saved/Config/WindowsNoEditor: + "/NBAPlaygrounds2/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /NBAPlaygrounds2/Saved/SaveGames: + "/NBAPlaygrounds2/Saved/SaveGames": tags: - save when: @@ -355353,7 +356348,7 @@ NBA 2K Playgrounds 2: installDir: NBA Playgrounds 2: {} launch: - /NBAPlaygrounds2.exe: + "/NBAPlaygrounds2.exe": - when: - bit: 64 os: windows @@ -355364,7 +356359,7 @@ NBA 2K10: installDir: NBA 2K10: {} launch: - /nba2k10.exe: + "/nba2k10.exe": - when: - store: steam steam: @@ -355373,7 +356368,7 @@ NBA 2K11: installDir: NBA 2K11: {} launch: - /NBA2K11.exe: + "/NBA2K11.exe": - when: - store: steam steam: @@ -355382,14 +356377,14 @@ NBA 2K12: installDir: NBA 2K12: {} launch: - /nba2k12.exe: + "/nba2k12.exe": - when: - store: steam steam: id: 201020 NBA 2K13: files: - /2K Sports/NBA 2K13/Saves: + "/2K Sports/NBA 2K13/Saves": tags: - save when: @@ -355397,7 +356392,7 @@ NBA 2K13: installDir: NBA2K13: {} launch: - /nba2k13.exe: + "/nba2k13.exe": - when: - os: windows store: steam @@ -355405,7 +356400,7 @@ NBA 2K13: id: 219600 NBA 2K14: files: - /2K Sports/NBA 2K14/Saves: + "/2K Sports/NBA 2K14/Saves": tags: - save when: @@ -355413,20 +356408,20 @@ NBA 2K14: installDir: NBA2K14: {} launch: - /nba2k14.exe: + "/nba2k14.exe": - when: - store: steam steam: id: 255480 NBA 2K15: files: - /userdata//282350: + "/userdata//282350": tags: - save when: - os: windows store: steam - /2K Sports/NBA 2K15/VideoSettings.cfg: + "/2K Sports/NBA 2K15/VideoSettings.cfg": tags: - config when: @@ -355434,20 +356429,20 @@ NBA 2K15: installDir: NBA2K15: {} launch: - /nba2k15.exe: + "/nba2k15.exe": - when: - store: steam steam: id: 282350 NBA 2K16: files: - /userdata//370240/remote: + "/userdata//370240/remote": tags: - save when: - os: windows store: steam - /2K Sports/NBA 2K16/VideoSettings.cfg: + "/2K Sports/NBA 2K16/VideoSettings.cfg": tags: - config when: @@ -355455,20 +356450,20 @@ NBA 2K16: installDir: NBA 2K16: {} launch: - /nba2k16.exe: + "/nba2k16.exe": - when: - store: steam steam: id: 370240 NBA 2K17: files: - /userdata//385760/remote: + "/userdata//385760/remote": tags: - save when: - os: windows store: steam - /2K Sports/NBA 2K17/VideoSettings.cfg: + "/2K Sports/NBA 2K17/VideoSettings.cfg": tags: - config when: @@ -355476,14 +356471,14 @@ NBA 2K17: installDir: NBA 2K17: {} launch: - /NBA2K17.exe: + "/NBA2K17.exe": - when: - store: steam steam: id: 385760 NBA 2K18: files: - /userdata//577800/remote: + "/userdata//577800/remote": tags: - save when: @@ -355492,14 +356487,14 @@ NBA 2K18: installDir: NBA 2K18: {} launch: - /NBA2K18.exe: + "/NBA2K18.exe": - when: - store: steam steam: id: 577800 NBA 2K19: files: - /userdata//841370/remote: + "/userdata//841370/remote": tags: - config - save @@ -355509,20 +356504,20 @@ NBA 2K19: installDir: NBA 2K19: {} launch: - /NBA2K19.exe: + "/NBA2K19.exe": - when: - store: steam steam: id: 841370 NBA 2K20: files: - /userdata//1089350/remote: + "/userdata//1089350/remote": tags: - save when: - os: windows store: steam - /userdata//1089350/remote/ Or /2K Sports/NBA 2K20/VideoSettings.cfg: + "/userdata//1089350/remote/ Or /2K Sports/NBA 2K20/VideoSettings.cfg": tags: - config when: @@ -355531,19 +356526,19 @@ NBA 2K20: installDir: NBA 2K20: {} launch: - /NBA2K20.exe: + "/NBA2K20.exe": - when: - store: steam steam: id: 1089350 NBA 2K21: files: - /2K Sports/NBA 2K21: + "/2K Sports/NBA 2K21": tags: - config when: - os: windows - /2K Sports/NBA 2K21: + "/2K Sports/NBA 2K21": tags: - save when: @@ -355551,14 +356546,14 @@ NBA 2K21: installDir: NBA 2K21: {} launch: - /nba2k21.exe: + "/nba2k21.exe": - when: - store: steam steam: id: 1225330 NBA 2K22: files: - /2K Sports/NBA 2K22/VideoSettings.cfg: + "/2K Sports/NBA 2K22/VideoSettings.cfg": tags: - config when: @@ -355566,14 +356561,14 @@ NBA 2K22: installDir: NBA 2K22: {} launch: - /nba2k22.exe: + "/nba2k22.exe": - when: - store: steam steam: id: 1644960 NBA 2K23: files: - /2K Sports/NBA 2K23/VideoSettings.cfg: + "/2K Sports/NBA 2K23/VideoSettings.cfg": tags: - config when: @@ -355581,7 +356576,7 @@ NBA 2K23: installDir: NBA 2K23: {} launch: - /NBA2K23.exe: + "/NBA2K23.exe": - when: - store: steam steam: @@ -355590,7 +356585,7 @@ NBA 2K24: installDir: NBA 2K24: {} launch: - /NBA2K24.exe: + "/NBA2K24.exe": - when: - store: steam steam: @@ -355599,7 +356594,7 @@ NBA 2K9: installDir: NBA 2K9: {} launch: - /nba2k9.exe: + "/nba2k9.exe": - when: - store: steam - arguments: /switchmode @@ -355614,48 +356609,48 @@ NBA 2KVR Experience: id: 519490 NBA Live 07: files: - /NBA LIVE 07: + "/NBA LIVE 07": tags: - save when: - os: windows - /NBA LIVE 07/settings: + "/NBA LIVE 07/settings": tags: - config when: - os: windows NBA Live 08: files: - /NBA LIVE 08: + "/NBA LIVE 08": tags: - save when: - os: windows - /NBA LIVE 08/settings: + "/NBA LIVE 08/settings": tags: - config when: - os: windows NBA Live 2005: files: - /NBA LIVE 2005: + "/NBA LIVE 2005": tags: - save when: - os: windows - /NBA LIVE 2005/settings: + "/NBA LIVE 2005/settings": tags: - config when: - os: windows NBA Playgrounds: files: - /NBAPlaygrounds/Saved/Config/WindowsNoEditor: + "/NBAPlaygrounds/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /NBAPlaygrounds/Saved/SaveGames: + "/NBAPlaygrounds/Saved/SaveGames": tags: - save when: @@ -355663,7 +356658,7 @@ NBA Playgrounds: installDir: NBAPlaygrounds: {} launch: - /NBAPlaygrounds.exe: + "/NBAPlaygrounds.exe": - when: - bit: 64 os: windows @@ -355673,11 +356668,11 @@ NBA Playgrounds: NC Tower Defense 2: steam: id: 427610 -'NCradle: An 80s Synth Adventure': +"NCradle: An 80s Synth Adventure": installDir: NCradle: {} launch: - /NCradle.exe: + "/NCradle.exe": - when: - bit: 64 os: windows @@ -355688,17 +356683,17 @@ NDE Rescue: installDir: NDE Rescue: {} launch: - /nde_rescue-osx.app/Contents/MacOS/nde_rescue-osx: + "/nde_rescue-osx.app/Contents/MacOS/nde_rescue-osx": - when: - bit: 64 os: mac store: steam - /nde_rescue32.exe: + "/nde_rescue32.exe": - when: - bit: 32 os: windows store: steam - /nde_rescue64.exe: + "/nde_rescue64.exe": - when: - bit: 64 os: windows @@ -355709,7 +356704,7 @@ NEBULAS LASSO: installDir: Nebulas Lasso: {} launch: - /NebulasLasso.exe: + "/NebulasLasso.exe": - when: - bit: 64 os: windows @@ -355720,7 +356715,7 @@ NEET simulator: installDir: NEET simulator: {} launch: - /S009.exe: + "/S009.exe": - when: - store: steam steam: @@ -355729,19 +356724,19 @@ NEKO-NIN exHeart 2 Love +PLUS: installDir: NEKO-NIN exHeart 2 Love +PLUS: {} launch: - /nekonin2plus.exe: + "/nekonin2plus.exe": - when: - store: steam steam: id: 1027130 NEKOPALIVE: files: - /Nekopara/Saved/Config/WindowsNoEditor/*.*: + "/Nekopara/Saved/Config/WindowsNoEditor/*.*": tags: - config when: - os: windows - /Nekopara/Saved/Saved/SaveGames/Nekopara.sav: + "/Nekopara/Saved/Saved/SaveGames/Nekopara.sav": tags: - save when: @@ -355749,7 +356744,7 @@ NEKOPALIVE: installDir: NEKOPALIVE: {} launch: - /Package/Nekopara/Binaries/Win64/Nekopara.exe: + "/Package/Nekopara/Binaries/Win64/Nekopara.exe": - when: - bit: 64 os: windows @@ -355758,19 +356753,19 @@ NEKOPALIVE: id: 469990 NEKOPARA Extra: files: - /Profile//Saves: + "/Profile//Saves": tags: - config - save when: - os: windows - /Documents/NEKO WORKs/nekopara_extra: + "/Documents/NEKO WORKs/nekopara_extra": tags: - config - save when: - os: windows - /NEKO WORKs/nekopara_extra: + "/NEKO WORKs/nekopara_extra": tags: - config - save @@ -355782,7 +356777,7 @@ NEKOPARA Extra: installDir: NEKOPARA Extra: {} launch: - /nekopara_extra.exe: + "/nekopara_extra.exe": - when: - os: windows store: steam @@ -355790,25 +356785,25 @@ NEKOPARA Extra: id: 899970 NEKOPARA Vol. 0: files: - /savedata: + "/savedata": tags: - config - save when: - os: windows - Documents/NekoWorks/nekopara_vol0: + "Documents/NekoWorks/nekopara_vol0": tags: - config - save when: - os: windows - /userdata//385800: + "/userdata//385800": tags: - config - save when: - store: steam - /NekoWorks/nekopara_vo0: + "/NekoWorks/nekopara_vo0": tags: - config - save @@ -355817,7 +356812,7 @@ NEKOPARA Vol. 0: installDir: NEKOPARA Vol. 0: {} launch: - /nekopara_vol0.exe: + "/nekopara_vol0.exe": - when: - os: windows store: steam @@ -355825,19 +356820,19 @@ NEKOPARA Vol. 0: id: 385800 NEKOPARA Vol. 1: files: - /savedata: + "/savedata": tags: - config - save when: - os: windows - Documents/NEKO WORKs/nekopara_vol1: + "Documents/NEKO WORKs/nekopara_vol1": tags: - config - save when: - os: windows - /NEKO WORKs/nekopara_vol: + "/NEKO WORKs/nekopara_vol": tags: - config - save @@ -355852,7 +356847,7 @@ NEKOPARA Vol. 1: installDir: NEKOPARA Vol. 1: {} launch: - /nekopara_vol1.exe: + "/nekopara_vol1.exe": - when: - os: windows store: steam @@ -355860,19 +356855,19 @@ NEKOPARA Vol. 1: id: 333600 NEKOPARA Vol. 2: files: - /savedata: + "/savedata": tags: - config - save when: - os: windows - Documents/NEKO WORKs/nekopara_vol2: + "Documents/NEKO WORKs/nekopara_vol2": tags: - config - save when: - os: windows - /NekoWorks/nekopara_vol2: + "/NekoWorks/nekopara_vol2": tags: - config - save @@ -355881,7 +356876,7 @@ NEKOPARA Vol. 2: installDir: NEKOPARA Vol. 2: {} launch: - /nekopara_vol2.exe: + "/nekopara_vol2.exe": - when: - os: windows store: steam @@ -355889,23 +356884,23 @@ NEKOPARA Vol. 2: id: 420110 NEKOPARA Vol. 3: files: - /config: + "/config": tags: - config when: - os: windows - /savedata: + "/savedata": tags: - save when: - os: windows - /Documents/NEKO WORKs/nekopara_vol3: + "/Documents/NEKO WORKs/nekopara_vol3": tags: - config - save when: - os: windows - /NEKO WORKs/nekopara3: + "/NEKO WORKs/nekopara3": tags: - config - save @@ -355914,7 +356909,7 @@ NEKOPARA Vol. 3: installDir: NEKOPARA Vol. 3: {} launch: - /NEKOPARAvol3.exe: + "/NEKOPARAvol3.exe": - when: - os: windows store: steam @@ -355924,7 +356919,7 @@ NEKOPARA Vol. 4: installDir: NEKOPARA Vol. 4: {} launch: - /nekopara_vol4.exe: + "/nekopara_vol4.exe": - when: - os: windows store: steam @@ -355934,7 +356929,7 @@ NEKOPUGI: installDir: NEKOPUGI: {} launch: - /PugiRun.exe: + "/PugiRun.exe": - when: - os: windows store: steam @@ -355945,19 +356940,19 @@ NEKROTRONIC VR: NEKROMANCER VR: {} steam: id: 1137170 -'NEO AQUARIUM: The King of Crustaceans': +"NEO AQUARIUM: The King of Crustaceans": files: - /custom.cfg: + "/custom.cfg": tags: - config when: - os: windows - /replay: + "/replay": tags: - save when: - os: windows - /sav/tmp.*: + "/sav/tmp.*": tags: - save when: @@ -355965,11 +356960,11 @@ NEKROTRONIC VR: installDir: NEO AQUARIUM - The King of Crustaceans -: {} launch: - /NeoAquarium.exe: + "/NeoAquarium.exe": - when: - os: windows store: steam - /custom.exe: + "/custom.exe": - when: - os: windows store: steam @@ -355979,32 +356974,32 @@ NEO Impossible Bosses: installDir: NEO Impossible Bosses: {} launch: - /x64/NeoImpossibleBosses.exe: + "/x64/NeoImpossibleBosses.exe": - when: - bit: 64 os: windows store: steam - workingDir: /x64 + workingDir: "/x64" steam: id: 676580 NEO Scavenger: files: - /.macromedia/Flash_Player/#SharedObjects///NEOScavenger/nsSGv1.sol: + "/.macromedia/Flash_Player/#SharedObjects///NEOScavenger/nsSGv1.sol": tags: - save when: - os: linux - /Library/Preferences/Macromedia/Flash Player/#SharedObjects//localhost/nsSGv1.sol: + "/Library/Preferences/Macromedia/Flash Player/#SharedObjects//localhost/nsSGv1.sol": tags: - save when: - os: mac - /Macromedia/Flash Player/#SharedObjects///NEOScavenger.exe/nsSGv1.sol: + "/Macromedia/Flash Player/#SharedObjects///NEOScavenger.exe/nsSGv1.sol": tags: - save when: - os: windows - /Macromedia/Flash Player/#SharedObjects//localhost: + "/Macromedia/Flash Player/#SharedObjects//localhost": tags: - save when: @@ -356014,15 +357009,15 @@ NEO Scavenger: installDir: NEO Scavenger: {} launch: - /NEOScavenger: + "/NEOScavenger": - when: - os: linux store: steam - /NEOScavenger.app: + "/NEOScavenger.app": - when: - os: mac store: steam - /NEOScavenger.exe: + "/NEOScavenger.exe": - when: - os: windows store: steam @@ -356031,22 +357026,23 @@ NEO Scavenger: NEO-NOW!: steam: id: 503420 -'NEO: The World Ends with You': +"NEO: The World Ends with You": files: - /My Games/NEO The World Ends with You: + "/My Games/NEO The World Ends with You": tags: - save when: - - store: steam - /NEO The World Ends with You: + - os: windows + store: steam + "/NEO The World Ends with You": tags: - save when: - - store: epic + - os: windows installDir: NEO The World Ends with You: {} launch: - /NEO The World Ends with You.exe: + "/NEO The World Ends with You.exe": - when: - bit: 64 os: windows @@ -356055,7 +357051,7 @@ NEO-NOW!: id: 1647550 NEOMORPH: files: - /AppData/LocalLow/BambuseaeGames/Neomorph/*.es3: + "/AppData/LocalLow/BambuseaeGames/Neomorph/*.es3": tags: - save when: @@ -356063,7 +357059,7 @@ NEOMORPH: installDir: NEOMORPH: {} launch: - /Neomorph.exe: + "/Neomorph.exe": - when: - os: windows store: steam @@ -356073,7 +357069,7 @@ NEON SPACE WAR: installDir: NEON SPACE WAR: {} launch: - /NEONSPACEWAR.exe: + "/NEONSPACEWAR.exe": - when: - store: steam steam: @@ -356082,21 +357078,21 @@ NEON Ultra: installDir: NEON Ultra: {} launch: - /NEONULTRA.exe: + "/NEONULTRA.exe": - when: - os: windows store: steam - /NeonUltra.app: + "/NeonUltra.app": - when: - os: mac store: steam steam: id: 528270 -'NEONARCADE: adventure puzzle muse': +"NEONARCADE: adventure puzzle muse": installDir: NEONARCADE adventure puzzle muse: {} launch: - /NAapm.exe: + "/NAapm.exe": - when: - store: steam steam: @@ -356105,7 +357101,7 @@ NEONomicon: installDir: NEONomicon: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -356115,7 +357111,7 @@ NEStalgia: installDir: NEStalgia: {} launch: - /NEStalgia.exe: + "/NEStalgia.exe": - when: - os: windows store: steam @@ -356131,26 +357127,26 @@ NEVRDEAD: installDir: OM6N: {} launch: - /OM6N.exe: + "/OM6N.exe": - when: - os: windows store: steam steam: id: 681000 -'NEXT JUMP: Shmup Tactics': +"NEXT JUMP: Shmup Tactics": installDir: NEXT JUMP Shmup Tactics: {} launch: - /NEXT JUMP Shmup Tactics: + "/NEXT JUMP Shmup Tactics": - when: - os: linux store: steam - /NEXT JUMP Shmup Tactics.app/Contents/MacOS/NEXT JUMP Shmup Tactics: + "/NEXT JUMP Shmup Tactics.app/Contents/MacOS/NEXT JUMP Shmup Tactics": - when: - bit: 64 os: mac store: steam - /NEXT JUMP Shmup Tactics.exe: + "/NEXT JUMP Shmup Tactics.exe": - when: - os: windows store: steam @@ -356166,7 +357162,7 @@ NGHTMN: id: 628420 NGU Idle: files: - /AppData/LocalLow/NGU Industries/NGU Idle: + "/AppData/LocalLow/NGU Industries/NGU Idle": tags: - save when: @@ -356174,7 +357170,7 @@ NGU Idle: installDir: NGU IDLE: {} launch: - /NGUIdle.exe: + "/NGUIdle.exe": - when: - bit: 64 os: windows @@ -356187,19 +357183,19 @@ NGU Idle: id: 1147690 NHL 09: files: - /*.cfg: + "/*.cfg": tags: - config when: - os: windows - /NHL09: + "/NHL09": tags: - save when: - os: windows NHL 2004: files: - /NHL 2004: + "/NHL 2004": tags: - config - save @@ -356207,16 +357203,16 @@ NHL 2004: - os: windows NHL 97: files: - /User: + "/User": tags: - save when: - os: windows -'NHRA: Speed for All': +"NHRA: Speed for All": installDir: NHRA Championship Drag Racing Speed For All: {} launch: - /NHRA/Binaries/Win64/NHRA-Win64-Shipping.exe: + "/NHRA/Binaries/Win64/NHRA-Win64-Shipping.exe": - when: - bit: 64 os: windows @@ -356227,11 +357223,11 @@ NIGHT FALLEN: installDir: NIGHT FALLEN: {} launch: - /Night Fallen.app: + "/Night Fallen.app": - when: - os: mac store: steam - /Night Fallen.exe: + "/Night Fallen.exe": - when: - os: windows store: steam @@ -356241,15 +357237,15 @@ NITE Team 4: installDir: NITE Team 4: {} launch: - /nt4.app: + "/nt4.app": - when: - os: mac store: steam - /nt4.exe: + "/nt4.exe": - when: - os: windows store: steam - /nt4.x86_64: + "/nt4.x86_64": - when: - os: linux store: steam @@ -356259,11 +357255,11 @@ NO LOVE: installDir: NO LOVE: {} launch: - /NO LOVE.app: + "/NO LOVE.app": - when: - os: mac store: steam - /NO LOVE.exe: + "/NO LOVE.exe": - when: - os: windows store: steam @@ -356273,25 +357269,25 @@ NO THING: installDir: NO THING: {} launch: - /no_thing.app/Contents/MacOS/no_thing: + "/no_thing.app/Contents/MacOS/no_thing": - when: - os: mac store: steam - /no_thing.exe: + "/no_thing.exe": - when: - os: windows store: steam - /no_thing.x86: + "/no_thing.x86": - when: - os: linux store: steam steam: id: 444800 -'NO, THANK YOU!!!': +"NO, THANK YOU!!!": installDir: - 'NO, THANK YOU!!!': {} + "NO, THANK YOU!!!": {} launch: - /nothankyou.exe: + "/nothankyou.exe": - when: - os: windows store: steam @@ -356301,7 +357297,7 @@ NO-GO: installDir: NO-GO: {} launch: - /NO-GO.exe: + "/NO-GO.exe": - when: - bit: 64 os: windows @@ -356312,7 +357308,7 @@ NOCE: installDir: NOCE: {} launch: - /NOCEforSTEAM.exe: + "/NOCEforSTEAM.exe": - when: - os: windows store: steam @@ -356325,11 +357321,11 @@ NOISZ: installDir: NOISZ: {} launch: - /NOISZ.app/Contents/MacOS/NOISZ: + "/NOISZ.app/Contents/MacOS/NOISZ": - when: - os: mac store: steam - /NOISZ.exe: + "/NOISZ.exe": - when: - os: windows store: steam @@ -356339,35 +357335,35 @@ NOLA Is Burning: installDir: NOLA is Burning: {} launch: - /NOLA is Burning.app/Contents/MacOS/NOLA is Burning: + "/NOLA is Burning.app/Contents/MacOS/NOLA is Burning": - when: - os: mac store: steam - /NOLAIsBurning: + "/NOLAIsBurning": - when: - os: linux store: steam - /NOLAIsBurning.exe: + "/NOLAIsBurning.exe": - when: - os: windows store: steam steam: id: 752810 -'NORR part I: Ace Shot': +"NORR part I: Ace Shot": installDir: NorrAceShot: {} launch: - /AceShot.exe: + "/AceShot.exe": - when: - os: windows store: steam steam: id: 1112330 -'NOTE : a Composer and a Note': +"NOTE : a Composer and a Note": installDir: NOTE_ a composer and a note: {} launch: - /NOTE a Composer and a Note.exe: + "/NOTE a Composer and a Note.exe": - when: - bit: 64 os: windows @@ -356378,20 +357374,20 @@ NOTES: installDir: NOTES: {} launch: - /Notes.app: + "/Notes.app": - when: - os: mac store: steam - /Notes.exe: + "/Notes.exe": - when: - os: windows store: steam - /Notes.x86: + "/Notes.x86": - when: - bit: 32 os: linux store: steam - /Notes.x86_64: + "/Notes.x86_64": - when: - bit: 64 os: linux @@ -356402,7 +357398,7 @@ NOXIAM -miserable sinners-: installDir: NOXIAM -miserable sinners- Ver1.00: {} launch: - /windows_content/NOXIAM/NOXIAM.exe: + "/windows_content/NOXIAM/NOXIAM.exe": - when: - os: windows store: steam @@ -356412,7 +357408,7 @@ NOYO-!: installDir: NOYO-!: {} launch: - /NOYO.exe: + "/NOYO.exe": - when: - os: windows store: steam @@ -356423,35 +357419,35 @@ NPCs: NPCs: {} steam: id: 985040 -'NS2: Combat': +"NS2: Combat": installDir: Combat: {} launch: - /ns2combat.exe: + "/ns2combat.exe": - when: - os: windows store: steam - /ns2combat_linux32: + "/ns2combat_linux32": - when: - os: linux store: steam - workingDir: /ia32 + workingDir: "/ia32" steam: id: 310110 NSFW Solitaire: installDir: NSFW Solitaire: {} launch: - /NSFWSolitaire_Linux/NSFWSolitaire.x86_64: + "/NSFWSolitaire_Linux/NSFWSolitaire.x86_64": - when: - bit: 64 os: linux store: steam - /NSFWSolitaire_Mac.app: + "/NSFWSolitaire_Mac.app": - when: - os: mac store: steam - /NSFWSolitaire_Win64/NSFWSolitaire.exe: + "/NSFWSolitaire_Win64/NSFWSolitaire.exe": - when: - bit: 64 os: windows @@ -356462,31 +357458,31 @@ NSFW Studio: installDir: NSFW Studio: {} launch: - /NSFW Studio.exe: + "/NSFW Studio.exe": - when: - bit: 64 os: windows store: steam steam: id: 1760080 -'NSFW: Not a Simulator for Working': +"NSFW: Not a Simulator for Working": installDir: NSFW ~ Not a Simulator For Working: {} launch: - /NSFW.app: + "/NSFW.app": - when: - os: mac store: steam - /NSFW.exe: + "/NSFW.exe": - when: - os: windows store: steam - /NSFW.x86: + "/NSFW.x86": - when: - bit: 32 os: linux store: steam - /NSFW.x86_64: + "/NSFW.x86_64": - when: - bit: 64 os: linux @@ -356497,7 +357493,7 @@ NSFWare: installDir: NSFWare: {} launch: - /NSFWare.exe: + "/NSFWare.exe": - when: - os: windows store: steam @@ -356507,15 +357503,15 @@ NStations: installDir: nStations: {} launch: - /InhabitedStations.app: + "/InhabitedStations.app": - when: - os: mac store: steam - /InhabitedStations.exe: + "/InhabitedStations.exe": - when: - os: windows store: steam - /InhabitedStations.x86_64: + "/InhabitedStations.x86_64": - when: - os: linux store: steam @@ -356525,7 +357521,7 @@ NUMB: installDir: NUMB: {} launch: - /NuMB.exe: + "/NuMB.exe": - when: - store: steam steam: @@ -356537,15 +357533,15 @@ NUVAVULT: installDir: mimhufford: {} launch: - /NUVAVULT.app: + "/NUVAVULT.app": - when: - os: mac store: steam - /NUVAVULT.exe: + "/NUVAVULT.exe": - when: - os: windows store: steam - /NUVAVULT.x86_64: + "/NUVAVULT.x86_64": - when: - os: linux store: steam @@ -356555,25 +357551,25 @@ NVL: installDir: NVL: {} launch: - /Game.exe: - - arguments: '--in-process-gpu' + "/Game.exe": + - arguments: "--in-process-gpu" when: - store: steam steam: id: 756880 -'NYR: New York Race': +"NYR: New York Race": files: - /NYR.ini: + "/NYR.ini": tags: - config when: - os: windows - /Save: + "/Save": tags: - save when: - os: windows -'Naau: The Lost Eye': +"Naau: The Lost Eye": installDir: Naau The Lost Eye: {} steam: @@ -356582,15 +357578,15 @@ Naboki: installDir: NABOKI: {} launch: - /NABOKI.exe: + "/NABOKI.exe": - when: - os: windows store: steam - /naboki.app: + "/naboki.app": - when: - os: mac store: steam - /naboki.x86_64: + "/naboki.x86_64": - when: - bit: 64 os: linux @@ -356601,17 +357597,17 @@ Nadia Was Here: installDir: Nadia Was Here: {} launch: - /NadiaWasHere.app: + "/NadiaWasHere.app": - when: - os: mac store: steam - /NadiaWasHere.exe: + "/NadiaWasHere.exe": - when: - os: windows store: steam steam: id: 436070 -'Nadir: A Grimdark Deckbuilder': +"Nadir: A Grimdark Deckbuilder": gog: id: 1847019949 id: @@ -356625,7 +357621,7 @@ Nadia Was Here: installDir: Nadir: {} launch: - /Nadir.exe: + "/Nadir.exe": - when: - bit: 64 os: windows @@ -356634,22 +357630,22 @@ Nadia Was Here: id: 1535100 Naev: files: - /.local/share/naev: + "/.local/share/naev": tags: - config when: - os: linux - /.local/share/naev/saves: + "/.local/share/naev/saves": tags: - save when: - os: linux - /naev: + "/naev": tags: - config when: - os: windows - /naev/saves: + "/naev/saves": tags: - save when: @@ -356657,50 +357653,50 @@ Naev: installDir: Naev: {} launch: - /Naev.app/Contents/MacOS/naev: + "/Naev.app/Contents/MacOS/naev": - when: - os: mac store: steam - /naev.exe: + "/naev.exe": - when: - bit: 64 os: windows store: steam - /naev.x64: + "/naev.x64": - when: - bit: 64 os: linux store: steam steam: id: 598530 -Nail'd: +"Nail'd": files: - /naild/Out/Settings: + "/naild/Out/Settings": tags: - config when: - os: windows - /naild/Out/profiles: + "/naild/Out/profiles": tags: - save when: - os: windows installDir: - Nail'd: {} + "Nail'd": {} launch: - /Naild_x86.exe: + "/Naild_x86.exe": - when: - store: steam steam: id: 40380 -'Nairi: Tower of Shirin': +"Nairi: Tower of Shirin": files: - /AppData/LocalLow/HomeBearStudio/NAIRI_ Tower of Shirin/globalData.dat: + "/AppData/LocalLow/HomeBearStudio/NAIRI_ Tower of Shirin/globalData.dat": tags: - config when: - os: windows - /AppData/LocalLow/HomeBearStudio/NAIRI_ Tower of Shirin/savefile*: + "/AppData/LocalLow/HomeBearStudio/NAIRI_ Tower of Shirin/savefile*": tags: - save when: @@ -356708,19 +357704,19 @@ Nail'd: installDir: NAIRI Tower of Shirin: {} launch: - /NAIRI_TOS.exe: + "/NAIRI_TOS.exe": - when: - os: windows store: steam registry: - 'HKEY_CURRENT_USER/Software/HomeBearStudio/NAIRI: Tower of Shirin': + "HKEY_CURRENT_USER/Software/HomeBearStudio/NAIRI: Tower of Shirin": tags: - config steam: id: 802450 NaissanceE: files: - /UDKGame/Config: + "/UDKGame/Config": tags: - config when: @@ -356728,17 +357724,17 @@ NaissanceE: installDir: NaissanceE: {} launch: - /Binaries/Win32/UDK.exe: + "/Binaries/Win32/UDK.exe": - when: - store: steam - workingDir: /Binaries/Win32 + workingDir: "/Binaries/Win32" steam: id: 265690 Nakawak: installDir: Nakawak: {} launch: - /Nakawak.exe: + "/Nakawak.exe": - when: - os: windows store: steam @@ -356749,14 +357745,14 @@ Naked Sun: NakedSun: {} steam: id: 762490 -'Naked and Afraid: The Game': +"Naked and Afraid: The Game": steam: id: 1082410 NakedMan VS The Clothes: installDir: NakedManVSTheClothes: {} launch: - /Nakedman.exe: + "/Nakedman.exe": - when: - os: windows store: steam @@ -356766,7 +357762,7 @@ Nakiti Generations: installDir: Nakiti Generations: {} launch: - /NG.exe: + "/NG.exe": - when: - os: windows store: steam @@ -356777,19 +357773,19 @@ Naklua VR: Naklua VR: {} steam: id: 650980 -'Namariel Legends: Iron Lord': +"Namariel Legends: Iron Lord": installDir: - Namarel Legends. Iron Lord Collector's Edition: {} + "Namarel Legends. Iron Lord Collector's Edition": {} launch: - /NamarielLegends_IronLord.app: + "/NamarielLegends_IronLord.app": - when: - os: mac store: steam - /NamarielLegends_IronLord_CE: + "/NamarielLegends_IronLord_CE": - when: - os: linux store: steam - /Namariel_Legends_Iron_Lord_CE.exe: + "/Namariel_Legends_Iron_Lord_CE.exe": - when: - os: windows store: steam @@ -356802,25 +357798,25 @@ Namaste Virtual Yoga Retreat: id: 762130 Namco Museum 50th Anniversary: files: - /config/scores.dat: + "/config/scores.dat": tags: - save when: - os: windows - /config/settings.dat: + "/config/settings.dat": tags: - config when: - os: windows Namco Museum Archives Vol. 1: files: - /userdata//1250250/remote: + "/userdata//1250250/remote": tags: - save when: - os: windows store: steam - /NAMCO MUSEUM ARCHIVES Vol 1/savedata/savecfg.txt: + "/NAMCO MUSEUM ARCHIVES Vol 1/savedata/savecfg.txt": tags: - config when: @@ -356828,7 +357824,7 @@ Namco Museum Archives Vol. 1: installDir: NAMCO MUSEUM ARCHIVES Vol 1: {} launch: - /NMA1.exe: + "/NMA1.exe": - when: - os: windows store: steam @@ -356836,13 +357832,13 @@ Namco Museum Archives Vol. 1: id: 1250250 Namco Museum Archives Vol. 2: files: - /userdata//1254620/remote: + "/userdata//1254620/remote": tags: - save when: - os: windows store: steam - /NAMCO MUSEUM ARCHIVES Vol 2/savedata/savecfg.txt: + "/NAMCO MUSEUM ARCHIVES Vol 2/savedata/savecfg.txt": tags: - config when: @@ -356850,7 +357846,7 @@ Namco Museum Archives Vol. 2: installDir: NAMCO MUSEUM ARCHIVES Vol 2: {} launch: - /NMA2.exe: + "/NMA2.exe": - when: - os: windows store: steam @@ -356860,20 +357856,20 @@ Name the Song Quiz: installDir: NameTheSongQuiz: {} launch: - /NtSQ.app: + "/NtSQ.app": - when: - os: mac store: steam - /NtSQ.exe: + "/NtSQ.exe": - when: - os: windows store: steam - /NtSQ.x86: + "/NtSQ.x86": - when: - bit: 32 os: linux store: steam - /NtSQ.x86_64: + "/NtSQ.x86_64": - when: - bit: 64 os: linux @@ -356884,22 +357880,22 @@ Nameless Worlds: installDir: Yggdrasil: {} launch: - /Yggdrasil.exe: + "/Yggdrasil.exe": - when: - bit: 64 os: windows store: steam steam: id: 1066440 -'Nameless: The One Thing You Must Recall': +"Nameless: The One Thing You Must Recall": installDir: Nameless ~The one thing you must recall~: {} launch: - /Nameless ~The One Thing You Must Recall~.app: + "/Nameless ~The One Thing You Must Recall~.app": - when: - os: mac store: steam - /Nameless ~The One Thing You Must Recall~.exe: + "/Nameless ~The One Thing You Must Recall~.exe": - when: - os: windows store: steam @@ -356909,7 +357905,7 @@ Nana in the Dark: installDir: Nana in the Dark: {} launch: - /Nana.exe: + "/Nana.exe": - when: - os: windows store: steam @@ -356917,12 +357913,12 @@ Nana in the Dark: id: 736200 Nanairo Reincarnation: files: - /save: + "/save": tags: - save when: - os: windows - /save/nanairo.xml: + "/save/nanairo.xml": tags: - config when: @@ -356930,53 +357926,53 @@ Nanairo Reincarnation: installDir: Nanairo Reincarnation: {} launch: - /nanairo.exe: + "/nanairo.exe": - when: - os: windows store: steam steam: id: 751450 -'Nancy Drew Dossier: Lights, Camera, Curses!': +"Nancy Drew Dossier: Lights, Camera, Curses!": installDir: - 'Nancy Drew Lights, Camera, Curses': {} + "Nancy Drew Lights, Camera, Curses": {} launch: - /Curses.exe: + "/Curses.exe": - when: - store: steam steam: id: 31870 -'Nancy Drew Dossier: Resorting to Danger!': +"Nancy Drew Dossier: Resorting to Danger!": installDir: Nancy Drew Dossier - Resorting to Danger: {} launch: - /ResortingToDanger.exe: + "/ResortingToDanger.exe": - when: - store: steam steam: id: 42200 -'Nancy Drew: Alibi in Ashes': +"Nancy Drew: Alibi in Ashes": installDir: Nancy Drew Alibi in Ashes: {} launch: - /Alibi.exe: + "/Alibi.exe": - when: - os: windows store: steam - /Nancy Drew - Alibi In Ashes.app/Contents/MacOS/cider: - - arguments: '-psn' + "/Nancy Drew - Alibi In Ashes.app/Contents/MacOS/cider": + - arguments: "-psn" when: - os: mac store: steam steam: id: 202670 -'Nancy Drew: Curse of Blackmoor Manor': +"Nancy Drew: Curse of Blackmoor Manor": files: - /The Curse of Blackmoor Manor/*.SAV: + "/The Curse of Blackmoor Manor/*.SAV": tags: - save when: - os: windows - /The Curse of Blackmoor Manor/Game.INI: + "/The Curse of Blackmoor Manor/Game.INI": tags: - config when: @@ -356986,37 +357982,37 @@ Nanairo Reincarnation: installDir: Nancy Drew Curse of Blackmoor Manor: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: id: 31830 -'Nancy Drew: Danger by Design': +"Nancy Drew: Danger by Design": installDir: Nancy Drew Danger by Design: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: id: 31800 -'Nancy Drew: Danger on Deception Island': +"Nancy Drew: Danger on Deception Island": installDir: Nancy Drew Danger on Deception Island: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: id: 31840 -'Nancy Drew: Ghost Dogs of Moon Lake': +"Nancy Drew: Ghost Dogs of Moon Lake": files: - /Ghost Dogs of Moon Lake/*.SAV: + "/Ghost Dogs of Moon Lake/*.SAV": tags: - save when: - os: windows - /Ghost Dogs of Moon Lake/Game.INI: + "/Ghost Dogs of Moon Lake/Game.INI": tags: - config when: @@ -357024,35 +358020,35 @@ Nanairo Reincarnation: installDir: Nancy Drew Ghost Dogs of Moon Lake: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: id: 31850 -'Nancy Drew: Ghost of Thornton Hall': +"Nancy Drew: Ghost of Thornton Hall": installDir: Nancy Drew The Ghost of Thornton Hall: {} launch: - /Nancy Drew - Ghost of Thornton Hall.app/Contents/MacOS/cider: - - arguments: '-psn' + "/Nancy Drew - Ghost of Thornton Hall.app/Contents/MacOS/cider": + - arguments: "-psn" when: - os: mac store: steam - workingDir: /Nancy Drew The Ghost of Thornton Hall - /Thornton.exe: + workingDir: "/Nancy Drew The Ghost of Thornton Hall" + "/Thornton.exe": - when: - os: windows store: steam steam: id: 226820 -'Nancy Drew: Labyrinth of Lies': +"Nancy Drew: Labyrinth of Lies": files: - /Labyrinth of Lies/*.HiLieSave: + "/Labyrinth of Lies/*.HiLieSave": tags: - save when: - os: windows - /Labyrinth of Lies/Labyrinth.INI: + "/Labyrinth of Lies/Labyrinth.INI": tags: - config when: @@ -357060,48 +358056,48 @@ Nanairo Reincarnation: installDir: Nancy Drew Labyrinth of Lies: {} launch: - /Labyrinth.exe: + "/Labyrinth.exe": - when: - os: windows store: steam steam: id: 572710 -'Nancy Drew: Last Train to Blue Moon Canyon': +"Nancy Drew: Last Train to Blue Moon Canyon": installDir: Nancy Drew Last Train to Blue Moon Canyon: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: id: 31810 -'Nancy Drew: Legend of the Crystal Skull': +"Nancy Drew: Legend of the Crystal Skull": installDir: Nancy Drew Legend of The Crystal Skull: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: id: 31860 -'Nancy Drew: Message in a Haunted Mansion': +"Nancy Drew: Message in a Haunted Mansion": installDir: Nancy Drew Message in a Haunted Mansion: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam steam: id: 615770 -'Nancy Drew: Midnight in Salem': +"Nancy Drew: Midnight in Salem": files: - /LocalLow/HeR Interactive/MidnightInSalem/Saves/*.ndsav: + "/LocalLow/HeR Interactive/MidnightInSalem/Saves/*.ndsav": tags: - save when: - os: windows - /LocalLow/HeR Interactive/MidnightInSalem/Settings.ini: + "/LocalLow/HeR Interactive/MidnightInSalem/Settings.ini": tags: - config when: @@ -357109,33 +358105,33 @@ Nanairo Reincarnation: installDir: NancyDrew_MidnightInSalem: {} launch: - /MidnightInSalem.app: + "/MidnightInSalem.app": - when: - os: mac store: steam - /MidnightInSalem.exe: + "/MidnightInSalem.exe": - when: - os: windows store: steam steam: id: 1038450 -'Nancy Drew: Ransom of the Seven Ships': +"Nancy Drew: Ransom of the Seven Ships": installDir: Nancy Drew Ransom of the Seven Ships: {} launch: - /Ransom.exe: + "/Ransom.exe": - when: - store: steam steam: id: 31980 -'Nancy Drew: Sea of Darkness': +"Nancy Drew: Sea of Darkness": files: - /SeaOfDarkness/*.HiSeaSave: + "/SeaOfDarkness/*.HiSeaSave": tags: - save when: - os: windows - /SeaOfDarkness/SeaOfDarkness.INI: + "/SeaOfDarkness/SeaOfDarkness.INI": tags: - config when: @@ -357143,148 +358139,148 @@ Nanairo Reincarnation: installDir: Nancy Drew The Sea of Darkness: {} launch: - /SeaOfDarkness.exe: + "/SeaOfDarkness.exe": - when: - os: windows store: steam steam: id: 572700 -'Nancy Drew: Secret of the Old Clock': +"Nancy Drew: Secret of the Old Clock": installDir: Nancy Drew Secret of the Old Clock: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: id: 31880 -'Nancy Drew: Secret of the Scarlet Hand': +"Nancy Drew: Secret of the Scarlet Hand": installDir: Nancy Drew Secret of the Scarlet Hand: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: id: 31890 -'Nancy Drew: Secrets Can Kill Remastered': +"Nancy Drew: Secrets Can Kill Remastered": installDir: Nancy Drew Secrets Can Kill: {} launch: - /Secrets Can Kill REMASTERED.app/Contents/MacOS/cider: - - arguments: '-psn' + "/Secrets Can Kill REMASTERED.app/Contents/MacOS/cider": + - arguments: "-psn" when: - os: mac store: steam - /Secrets.exe: + "/Secrets.exe": - when: - os: windows store: steam steam: id: 42210 -'Nancy Drew: Shadow at the Water''s Edge': +"Nancy Drew: Shadow at the Water's Edge": installDir: Nancy Drew - Shadow Waters Edge: {} launch: - /Shadow at the Water's Edge.app: - - arguments: '-psn' + "/Shadow at the Water's Edge.app": + - arguments: "-psn" when: - os: mac store: steam - /Shadow.exe: + "/Shadow.exe": - when: - os: windows store: steam steam: id: 200080 -'Nancy Drew: Stay Tuned for Danger': +"Nancy Drew: Stay Tuned for Danger": files: - /*.SAV: + "/*.SAV": tags: - save when: - os: windows - /game.ini: + "/game.ini": tags: - config when: - os: windows -'Nancy Drew: The Captive Curse': +"Nancy Drew: The Captive Curse": installDir: Nancy Drew The Captive Curse: {} launch: - /Captive.exe: + "/Captive.exe": - when: - os: windows store: steam - /Nancy Drew - The Captive Curse.app/Contents/MacOS/cider: - - arguments: '-psn' + "/Nancy Drew - The Captive Curse.app/Contents/MacOS/cider": + - arguments: "-psn" when: - os: mac store: steam steam: id: 42220 -'Nancy Drew: The Creature of Kapu Cave': +"Nancy Drew: The Creature of Kapu Cave": installDir: Nancy Drew The Creature of Kapu Cave: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: id: 31900 -'Nancy Drew: The Deadly Device': +"Nancy Drew: The Deadly Device": installDir: Nancy Drew - TheDeadlyDevice: {} launch: - /DeadlyDevice.exe: + "/DeadlyDevice.exe": - when: - os: windows store: steam - /Nancy Drew - The Deadly Device.app/Contents/MacOS/cider: - - arguments: '-psn' + "/Nancy Drew - The Deadly Device.app/Contents/MacOS/cider": + - arguments: "-psn" when: - os: mac store: steam - workingDir: /Nancy Drew - TheDeadlyDevice + workingDir: "/Nancy Drew - TheDeadlyDevice" steam: id: 220420 -'Nancy Drew: The Final Scene': +"Nancy Drew: The Final Scene": installDir: Nancy Drew The Final Scene: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam steam: id: 615730 -'Nancy Drew: The Haunted Carousel': +"Nancy Drew: The Haunted Carousel": installDir: Nancy Drew The Haunted Carousel: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: id: 31820 -'Nancy Drew: The Haunting of Castle Malloy': +"Nancy Drew: The Haunting of Castle Malloy": installDir: Nancy Drew The Haunting of Castle Malloy: {} launch: - /CastleMalloy.exe: + "/CastleMalloy.exe": - when: - store: steam steam: id: 31910 -'Nancy Drew: The Phantom of Venice': +"Nancy Drew: The Phantom of Venice": files: - /The Phantom of Venice/*.HiVenSave: + "/The Phantom of Venice/*.HiVenSave": tags: - save when: - os: windows - /The Phantom of Venice/PhantomOfVenice.INI: + "/The Phantom of Venice/PhantomOfVenice.INI": tags: - config when: @@ -357292,39 +358288,39 @@ Nanairo Reincarnation: installDir: Nancy Drew The Phantom of Venice: {} launch: - /PhantomOfVenice.exe: + "/PhantomOfVenice.exe": - when: - store: steam steam: id: 31920 -'Nancy Drew: The Secret of Shadow Ranch': +"Nancy Drew: The Secret of Shadow Ranch": installDir: Nancy Drew The Secret of Shadow Ranch: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam steam: id: 572740 -'Nancy Drew: The Shattered Medallion': +"Nancy Drew: The Shattered Medallion": installDir: Nancy Drew The Shattered Medallion: {} launch: - /Medallion.exe: + "/Medallion.exe": - when: - os: windows store: steam steam: id: 572720 -'Nancy Drew: The Silent Spy': +"Nancy Drew: The Silent Spy": files: - /The Silent Spy/*.HiSpySave: + "/The Silent Spy/*.HiSpySave": tags: - save when: - os: windows - /The Silent Spy/Spy.INI: + "/The Silent Spy/Spy.INI": tags: - config when: @@ -357332,66 +358328,66 @@ Nanairo Reincarnation: installDir: Nancy Drew The Silent Spy: {} launch: - /Spy.exe: + "/Spy.exe": - when: - os: windows store: steam steam: id: 572730 -'Nancy Drew: The White Wolf of Icicle Creek': +"Nancy Drew: The White Wolf of Icicle Creek": installDir: Nancy Drew - The White Wolf of Icicle Creek: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: id: 31930 -'Nancy Drew: Tomb of the Lost Queen': +"Nancy Drew: Tomb of the Lost Queen": installDir: Nancy Drew - Tomb of the Lost Queen: {} launch: - /Nancy Drew - Tomb of the Lost Queen.app/Contents/MacOS/cider: - - arguments: '-psn' + "/Nancy Drew - Tomb of the Lost Queen.app/Contents/MacOS/cider": + - arguments: "-psn" when: - os: mac store: steam - /Tomb.exe: + "/Tomb.exe": - when: - os: windows store: steam steam: id: 210230 -'Nancy Drew: Trail of the Twister': +"Nancy Drew: Trail of the Twister": installDir: Nancy Drew Trail of the Twister: {} launch: - /Nancy Drew - Trail of the Twister.app/Contents/MacOS/cider: - - arguments: '-psn' + "/Nancy Drew - Trail of the Twister.app/Contents/MacOS/cider": + - arguments: "-psn" when: - os: mac store: steam - /Twister.exe: + "/Twister.exe": - when: - os: windows store: steam steam: id: 42230 -'Nancy Drew: Treasure in the Royal Tower': +"Nancy Drew: Treasure in the Royal Tower": installDir: Nancy Drew Treasure in the Royal Tower: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam steam: id: 615780 -'Nancy Drew: Warnings at Waverly Academy': +"Nancy Drew: Warnings at Waverly Academy": installDir: Nancy Drew Warnings at Waverly Academy: {} launch: - /Waverly.exe: + "/Waverly.exe": - when: - store: steam steam: @@ -357400,7 +358396,7 @@ Nandeyanen!? - The 1st Sûtra: installDir: Nandeyanen! - The 1st Sutra: {} launch: - /Nandeyanen.exe: + "/Nandeyanen.exe": - when: - os: windows store: steam @@ -357410,7 +358406,7 @@ Nangoku Sodachi: installDir: Nangoku Sodachi: {} launch: - /Nangoku_Sodachi.exe: + "/Nangoku_Sodachi.exe": - when: - os: windows store: steam @@ -357420,7 +358416,7 @@ Naninights: installDir: Naninights: {} launch: - /Naninights.exe: + "/Naninights.exe": - when: - os: windows store: steam @@ -357430,7 +358426,7 @@ Nano Driller: installDir: Nano Driller: {} launch: - /Nano Driller.exe: + "/Nano Driller.exe": - when: - os: windows store: steam @@ -357445,7 +358441,7 @@ Nano Project: installDir: Nano Project: {} launch: - /Start.exe: + "/Start.exe": - when: - store: steam steam: @@ -357459,7 +358455,7 @@ NanoScape: installDir: NanoScape: {} launch: - /NanoScape v1.0c.exe: + "/NanoScape v1.0c.exe": - when: - store: steam steam: @@ -357468,7 +358464,7 @@ Nanobotic: installDir: FrozenPixel-Nanobotic: {} launch: - /Nanobotic.exe: + "/Nanobotic.exe": - when: - bit: 64 os: windows @@ -357479,7 +358475,7 @@ Nanobots: installDir: Nanobots: {} launch: - /Nanobots.exe: + "/Nanobots.exe": - when: - os: windows store: steam @@ -357489,10 +358485,10 @@ Nanofights: installDir: Nanofights: {} launch: - /config.exe: + "/config.exe": - when: - store: steam - /start.exe: + "/start.exe": - when: - store: steam steam: @@ -357501,11 +358497,11 @@ Nanomedix Inc: installDir: Nanomedix Inc: {} launch: - /Nanomedix.exe: + "/Nanomedix.exe": - when: - os: windows store: steam - /Nanomedix/Nanomedix.app: + "/Nanomedix/Nanomedix.app": - when: - os: mac store: steam @@ -357518,26 +358514,26 @@ Nanos: installDir: NANOS: {} launch: - /Nanos.exe: + "/Nanos.exe": - when: - store: steam steam: id: 389200 Nanosaur: files: - /Ideas From the Deep/Nanosaur/HighScores: + "/Ideas From the Deep/Nanosaur/HighScores": tags: - save when: - os: windows - /Ideas From the Deep/Nanosaur/Prefs: + "/Ideas From the Deep/Nanosaur/Prefs": tags: - config when: - os: windows -'Nanosaur 2: Hatchling': +"Nanosaur 2: Hatchling": files: - /Ideas From the Deep/Nanosaur 2/Preferences: + "/Ideas From the Deep/Nanosaur 2/Preferences": tags: - config when: @@ -357546,7 +358542,7 @@ Nanoswarm: installDir: Nanoswarm: {} launch: - '/SteamBeta0,1.exe': + "/SteamBeta0,1.exe": - when: - os: windows store: steam @@ -357554,7 +358550,7 @@ Nanoswarm: id: 960600 Nanotale - Typing Chronicles: files: - /AppData/LocalLow/Fishing Cactus/Nanotale/Save.sav: + "/AppData/LocalLow/Fishing Cactus/Nanotale/Save.sav": tags: - config - save @@ -357565,16 +358561,16 @@ Nanotale - Typing Chronicles: installDir: Nanotale: {} launch: - /Nanotale: + "/Nanotale": - when: - bit: 64 os: linux store: steam - /Nanotale.App: + "/Nanotale.App": - when: - os: mac store: steam - /Nanotale.exe: + "/Nanotale.exe": - when: - bit: 64 os: windows @@ -357589,7 +358585,7 @@ Nanotris: installDir: Nanotris: {} launch: - /Nanotris.exe: + "/Nanotris.exe": - when: - os: windows store: steam @@ -357599,7 +358595,7 @@ Nanoui: installDir: Nanoui: {} launch: - /NanouiGame.exe: + "/NanouiGame.exe": - when: - store: steam steam: @@ -357608,7 +358604,7 @@ Nanoworld: installDir: Nanoworld: {} launch: - /Nanoworld.exe: + "/Nanoworld.exe": - when: - os: windows store: steam @@ -357620,15 +358616,15 @@ Nantucket: installDir: Nantucket: {} launch: - /Nantucket.app: + "/Nantucket.app": - when: - os: mac store: steam - /Nantucket.exe: + "/Nantucket.exe": - when: - os: windows store: steam - /Nantucket.x86_64: + "/Nantucket.x86_64": - when: - os: linux store: steam @@ -357636,7 +358632,7 @@ Nantucket: id: 621220 Nanuleu: files: - /AppData/LocalLow/Selva Interactive/Nanuleu: + "/AppData/LocalLow/Selva Interactive/Nanuleu": tags: - save when: @@ -357644,24 +358640,24 @@ Nanuleu: installDir: Nanuleu: {} launch: - /nanuleu.app: + "/nanuleu.app": - when: - os: mac store: steam - /nanuleu.exe: + "/nanuleu.exe": - when: - os: windows store: steam steam: id: 511500 -'Napoleon: Total War': +"Napoleon: Total War": files: - /The Creative Assembly/Napoleon: + "/The Creative Assembly/Napoleon": tags: - config when: - os: windows - /The Creative Assembly/Napoleon/save_games: + "/The Creative Assembly/Napoleon/save_games": tags: - save when: @@ -357669,24 +358665,24 @@ Nanuleu: installDir: Napoleon Total War: {} launch: - /Napoleon Total War.app: + "/Napoleon Total War.app": - when: - os: mac store: steam - /Napoleon.exe: + "/Napoleon.exe": - when: - os: windows store: steam steam: id: 34030 -'Naraka: Bladepoint': +"Naraka: Bladepoint": files: - /NarakaBladepoint_Data/QualitySettingsData.txt: + "/NarakaBladepoint_Data/QualitySettingsData.txt": tags: - config when: - os: windows - /AppData/LocalLow/24Entertainment/Naraka: + "/AppData/LocalLow/24Entertainment/Naraka": tags: - config when: @@ -357697,11 +358693,11 @@ Narazumono: installDir: Narazumono: {} launch: - /Narazumono.app/Contents/MacOS/Narazumono: + "/Narazumono.app/Contents/MacOS/Narazumono": - when: - os: mac store: steam - /Narazumono.exe: + "/Narazumono.exe": - when: - os: windows store: steam @@ -357711,7 +358707,7 @@ Narborion Saga: installDir: Narborion Saga: {} launch: - /start.exe: + "/start.exe": - when: - bit: 64 os: windows @@ -357720,7 +358716,7 @@ Narborion Saga: id: 581340 Narc: files: - /NARC: + "/NARC": tags: - save when: @@ -357731,7 +358727,7 @@ Narc: - config Narcissu: files: - /saves: + "/saves": tags: - config - save @@ -357740,15 +358736,15 @@ Narcissu: installDir: narcissu2: {} launch: - /Contents/MacOS/narcissu: + "/Contents/MacOS/narcissu": - when: - os: mac store: steam - /narci2.exe: + "/narci2.exe": - when: - os: windows store: steam - /narcissu: + "/narcissu": - when: - os: linux store: steam @@ -357756,27 +358752,27 @@ Narcissu: id: 264380 Narcissu 10th Anniversary Anthology Project: files: - /narci_himeko/savedata: + "/narci_himeko/savedata": tags: - save when: - os: windows - /narci_iris/savedata: + "/narci_iris/savedata": tags: - save when: - os: windows - /narci_onetwo/savedata: + "/narci_onetwo/savedata": tags: - save when: - os: windows - /narci_sumire/savedata: + "/narci_sumire/savedata": tags: - save when: - os: windows - /narci_zero/savedata: + "/narci_zero/savedata": tags: - save when: @@ -357784,7 +358780,7 @@ Narcissu 10th Anniversary Anthology Project: installDir: Narcissu 10th Anniversary Anthology Project: {} launch: - /game_loader_ex.exe: + "/game_loader_ex.exe": - when: - os: windows store: steam @@ -357810,25 +358806,25 @@ Narco Strike: installDir: Narco Strike: {} launch: - /Launcher.exe: + "/Launcher.exe": - when: - os: windows store: steam steam: id: 1020410 -'Narcos: Rise of the Cartels': +"Narcos: Rise of the Cartels": files: - /Narcos/Saved/Config/WindowsNoEditor: + "/Narcos/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /Narcos/Saved/SaveGames/NarcosRotC_*.sav: + "/Narcos/Saved/SaveGames/NarcosRotC_*.sav": tags: - config when: - os: windows - /Narcos/Saved/SaveGames/NarcosSave_*.sav: + "/Narcos/Saved/SaveGames/NarcosSave_*.sav": tags: - save when: @@ -357836,7 +358832,7 @@ Narco Strike: installDir: Narcos ROTC: {} launch: - /Narcos.exe: + "/Narcos.exe": - when: - bit: 64 os: windows @@ -357845,7 +358841,7 @@ Narco Strike: id: 914110 Narcosis: files: - /AppData/LocalLow/Honor Code/Narcosis/Resources/Data/Datas: + "/AppData/LocalLow/Honor Code/Narcosis/Resources/Data/Datas": tags: - config - save @@ -357854,32 +358850,32 @@ Narcosis: installDir: Narcosis: {} launch: - /DLC/Utils/autoOpen.bat: + "/DLC/Utils/autoOpen.bat": - when: - os: windows store: steam - /DLC/Utils/autoOpen.sh: + "/DLC/Utils/autoOpen.sh": - when: - os: mac store: steam - /Narcosis.app: + "/Narcosis.app": - when: - bit: 64 os: mac store: steam - /Narcosis.exe: - - arguments: '-vrmode none' + "/Narcosis.exe": + - arguments: "-vrmode none" when: - bit: 64 os: windows store: steam steam: id: 366870 -'Narcotics Police: Black and White': +"Narcotics Police: Black and White": installDir: Narcotics PoliceBlack and White: {} launch: - /New_NarcoticsPolice.exe: + "/New_NarcoticsPolice.exe": - when: - os: windows store: steam @@ -357887,12 +358883,12 @@ Narcosis: id: 637860 Narita Boy: files: - /AppData/LocalLow/StudioKoba/Narita Boy/Steam/: + "/AppData/LocalLow/StudioKoba/Narita Boy/Steam/": tags: - save when: - os: windows - '/Packages/Team17DigitalLimited.NartiaBoyWin10_j5x4vj4y67jhc/SystemAppData/wgs/ REALLY LONG #/ADDITIONAL LONG #': + "/Packages/Team17DigitalLimited.NartiaBoyWin10_j5x4vj4y67jhc/SystemAppData/wgs/ REALLY LONG #/ADDITIONAL LONG #": tags: - save when: @@ -357903,11 +358899,11 @@ Narita Boy: installDir: Narita Boy: {} launch: - /NaritaBoy.app: + "/NaritaBoy.app": - when: - os: mac store: steam - /NaritaBoy.exe: + "/NaritaBoy.exe": - when: - os: windows store: steam @@ -357917,19 +358913,19 @@ Nark the Dragon: installDir: NARK THE DRAGON: {} launch: - /NTD.exe: + "/NTD.exe": - when: - store: steam steam: id: 763740 -'Naruto Shippuden: Ultimate Ninja Storm 2': +"Naruto Shippuden: Ultimate Ninja Storm 2": files: - /config.ini: + "/config.ini": tags: - config when: - os: windows - /userdata//543870/remote: + "/userdata//543870/remote": tags: - save when: @@ -357938,21 +358934,21 @@ Nark the Dragon: installDir: Qwant2: {} launch: - /NSUNS2.exe: + "/NSUNS2.exe": - when: - bit: 64 os: windows store: steam steam: id: 543870 -'Naruto Shippuden: Ultimate Ninja Storm 3 Full Burst': +"Naruto Shippuden: Ultimate Ninja Storm 3 Full Burst": files: - /NS3FB.ini: + "/NS3FB.ini": tags: - config when: - os: windows - /userdata//234670/remote/storm3.s: + "/userdata//234670/remote/storm3.s": tags: - save when: @@ -357962,14 +358958,14 @@ Nark the Dragon: NARUTO SHIPPUDEN Ultimate Ninja STORM 3 Full Burst: {} steam: id: 234670 -'Naruto Shippuden: Ultimate Ninja Storm 3 Full Burst HD': +"Naruto Shippuden: Ultimate Ninja Storm 3 Full Burst HD": files: - /dlc/config.ini: + "/dlc/config.ini": tags: - config when: - os: windows - /userdata//234670/remote: + "/userdata//234670/remote": tags: - save when: @@ -357979,9 +358975,9 @@ Nark the Dragon: NARUTO SHIPPUDEN Ultimate Ninja STORM 3 Full Burst: {} steam: id: 234670 -'Naruto Shippuden: Ultimate Ninja Storm 4': +"Naruto Shippuden: Ultimate Ninja Storm 4": files: - /config.ini: + "/config.ini": tags: - config when: @@ -357989,19 +358985,19 @@ Nark the Dragon: installDir: NARUTO SHIPPUDEN Ultimate Ninja STORM 4: {} launch: - /NSUNS4.exe: + "/NSUNS4.exe": - when: - store: steam steam: id: 349040 -'Naruto Shippuden: Ultimate Ninja Storm Revolution': +"Naruto Shippuden: Ultimate Ninja Storm Revolution": files: - /NSUNSR.ini: + "/NSUNSR.ini": tags: - config when: - os: windows - /userdata//272510/remote/STORMR.S: + "/userdata//272510/remote/STORMR.S": tags: - save when: @@ -358009,17 +359005,17 @@ Nark the Dragon: installDir: NARUTO SHIPPUDEN ULTIMATE NINJA STORM REVOLUTION: {} launch: - /NSUNSR_launcher.exe: - - arguments: '-csl' + "/NSUNSR_launcher.exe": + - arguments: "-csl" when: - bit: 32 os: windows store: steam steam: id: 272510 -'Naruto X Boruto: Ultimate Ninja Storm Connections': +"Naruto X Boruto: Ultimate Ninja Storm Connections": files: - /userdata//1020790/remote: + "/userdata//1020790/remote": tags: - save when: @@ -358027,9 +359023,9 @@ Nark the Dragon: store: steam steam: id: 1020790 -'Naruto to Boruto: Shinobi Striker': +"Naruto to Boruto: Shinobi Striker": files: - /Saved Games/NARUTO TO BORUTO SHINOBI STRIKER: + "/Saved Games/NARUTO TO BORUTO SHINOBI STRIKER": tags: - save when: @@ -358037,19 +359033,19 @@ Nark the Dragon: installDir: Naruto To Boruto: {} launch: - /NARUTO.exe: + "/NARUTO.exe": - when: - store: steam steam: id: 633230 -'Naruto: Ultimate Ninja Storm': +"Naruto: Ultimate Ninja Storm": files: - /config.ini: + "/config.ini": tags: - config when: - os: windows - /userdata//495140/remote: + "/userdata//495140/remote": tags: - save when: @@ -358058,7 +359054,7 @@ Nark the Dragon: installDir: QWANT: {} launch: - /NSUNS1.exe: + "/NSUNS1.exe": - when: - bit: 64 os: windows @@ -358069,7 +359065,7 @@ Narwhal Heist: installDir: Narwhal Heist: {} launch: - /NarwhalHeist.exe: + "/NarwhalHeist.exe": - when: - bit: 64 os: windows @@ -358080,7 +359076,7 @@ Nary: installDir: Nary: {} launch: - /Nary.exe: + "/Nary.exe": - when: - os: windows store: steam @@ -358093,18 +359089,18 @@ Nash Racing: installDir: NR: {} launch: - /NR.exe: + "/NR.exe": - when: - bit: 64 os: windows store: steam steam: id: 581200 -'Nash Racing 2: Muscle Cars': +"Nash Racing 2: Muscle Cars": installDir: Nash Racing 2 Muscle cars: {} launch: - /Nash216.exe: + "/Nash216.exe": - when: - bit: 64 os: windows @@ -358115,7 +359111,7 @@ NashBored: installDir: NashBored: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: @@ -358124,7 +359120,7 @@ Nasty: installDir: Nasty: {} launch: - /Nasty.exe: + "/Nasty.exe": - when: - os: windows store: steam @@ -358134,7 +359130,7 @@ Nasty Rogue: installDir: Nasty Rogue: {} launch: - /NastyRogue(1.0.0)_Alpha.exe: + "/NastyRogue(1.0.0)_Alpha.exe": - when: - os: windows store: steam @@ -358147,21 +359143,21 @@ Natari at the Bubble Planet: installDir: Natari at the Bubble Planet: {} launch: - /Game.app: + "/Game.app": - when: - os: mac store: steam - /Game.exe: + "/Game.exe": - when: - os: windows store: steam steam: id: 573800 -'Nation Breakers: Steam Arena': +"Nation Breakers: Steam Arena": installDir: Nation Breakers Steam Arena: {} launch: - /NB_SA.exe: + "/NB_SA.exe": - when: - os: windows store: steam @@ -358169,7 +359165,7 @@ Natari at the Bubble Planet: id: 1118320 Nation Red: files: - /NationRed/pcini.txt: + "/NationRed/pcini.txt": tags: - config when: @@ -358177,26 +359173,29 @@ Nation Red: installDir: Nation Red: {} launch: - /NationRed: + "/NationRed": - when: - os: linux store: steam - /NationRed.app: + "/NationRed.app": - when: - os: mac store: steam - /NationRed.exe: + "/NationRed.exe": - when: - os: windows store: steam steam: id: 39800 -'Nation War: Chronicles': +"Nation War: Chronicles": installDir: NationWarChronicle: {} launch: - /NationWar.exe: + "/NationWar.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam @@ -358209,7 +359208,7 @@ National Machine: installDir: National Machine: {} launch: - /NatMachine.exe: + "/NatMachine.exe": - when: - os: windows store: steam @@ -358217,7 +359216,7 @@ National Machine: id: 856010 National Park Girls: files: - /RenPy/NationalParkGirls-1531944291: + "/RenPy/NationalParkGirls-1531944291": tags: - save when: @@ -358225,15 +359224,15 @@ National Park Girls: installDir: National Park Girls: {} launch: - /NationalParkGirls-1.0-linux/NationalParkGirls.sh: + "/NationalParkGirls-1.0-linux/NationalParkGirls.sh": - when: - os: linux store: steam - /NationalParkGirls-1.0-win/NationalParkGirls.exe: + "/NationalParkGirls-1.0-win/NationalParkGirls.exe": - when: - os: windows store: steam - /NationalParkGirls.app: + "/NationalParkGirls.app": - when: - os: mac store: steam @@ -358243,7 +359242,7 @@ National Rugby Manager: installDir: National Rugby Manager: {} launch: - /NationalRugbyManager.exe: + "/NationalRugbyManager.exe": - when: - os: windows store: steam @@ -358256,24 +359255,24 @@ Natsu no Iro no Nostalgia: installDir: natsunoiro: {} launch: - /natsunoiro.exe: + "/natsunoiro.exe": - when: - store: steam steam: id: 1161190 Natsuki Chronicles: files: - /Qute/NatsukiChronicles/Natsuki_Desktop_Steam.display.ini: + "/Qute/NatsukiChronicles/Natsuki_Desktop_Steam.display.ini": tags: - config when: - os: windows - /Qute/NatsukiChronicles/StorySaveData##.sav: + "/Qute/NatsukiChronicles/StorySaveData##.sav": tags: - save when: - os: windows - /Qute/NatsukiChronicles/SystemData.sav: + "/Qute/NatsukiChronicles/SystemData.sav": tags: - config - save @@ -358283,11 +359282,11 @@ Natsuki Chronicles: NatsukiChronicles: {} steam: id: 1175190 -Natsuki's Life In Prison: +"Natsuki's Life In Prison": installDir: - Natsuki's Imprisonment Life: {} + "Natsuki's Imprisonment Life": {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: @@ -358296,7 +359295,7 @@ Natural - Beyond Nature: installDir: Natural - Beyond Nature -: {} launch: - /natural.exe: + "/natural.exe": - when: - os: windows store: steam @@ -358306,11 +359305,11 @@ Natural Instincts: installDir: Natural Instincts: {} launch: - /NaturalInstincts.app: + "/NaturalInstincts.app": - when: - os: mac store: steam - /NaturalInstincts.exe: + "/NaturalInstincts.exe": - when: - bit: 64 os: windows @@ -358319,7 +359318,7 @@ Natural Instincts: id: 1168610 Natural Selection: files: - /Half-Life/ns: + "/Half-Life/ns": tags: - config when: @@ -358328,17 +359327,17 @@ Natural Selection: id: 120 Natural Selection 2: files: - /userdata//4920: + "/userdata//4920": tags: - save when: - store: steam - /Natural Selection 2/*.json: + "/Natural Selection 2/*.json": tags: - config when: - os: windows - /Natural Selection 2/system_options.xml: + "/Natural Selection 2/system_options.xml": tags: - config when: @@ -358346,7 +359345,7 @@ Natural Selection 2: installDir: Natural Selection 2: {} launch: - /x64/ns2.exe: + "/x64/ns2.exe": - when: - bit: 64 os: windows @@ -358357,7 +359356,7 @@ Natural Soccer: installDir: Natural Soccer: {} launch: - /NaturalSoccer.exe: + "/NaturalSoccer.exe": - when: - os: windows store: steam @@ -358382,7 +359381,7 @@ Nature Calls: installDir: Nature Calls: {} launch: - /HumanRace.exe: + "/HumanRace.exe": - when: - bit: 64 os: windows @@ -358393,15 +359392,15 @@ Nature Defenders: installDir: Nature Defenders: {} launch: - /NatureDefenders: + "/NatureDefenders": - when: - os: mac store: steam - /NatureDefenders.exe: + "/NatureDefenders.exe": - when: - os: windows store: steam - /NatureDefenders.x86: + "/NatureDefenders.x86": - when: - os: linux store: steam @@ -358411,7 +359410,7 @@ Nature Hunter: installDir: Nature Hunter: {} launch: - /Nature_Hunter.exe: + "/Nature_Hunter.exe": - when: - os: windows store: steam @@ -358425,24 +359424,24 @@ Nature Treks VR: Nature Zen: steam: id: 1080960 -Nature's Wrath VR: +"Nature's Wrath VR": installDir: - Nature's Wrath VR: {} + "Nature's Wrath VR": {} steam: id: 540050 -Nature's Zombie Apocalypse: +"Nature's Zombie Apocalypse": installDir: NaturesZombieApocalypse: {} launch: - /NZA.app: + "/NZA.app": - when: - os: mac store: steam - /NZA.exe: + "/NZA.exe": - when: - os: windows store: steam - /NZA.x86: + "/NZA.x86": - when: - os: linux store: steam @@ -358452,7 +359451,7 @@ NatureFly: installDir: NatureFly: {} launch: - /NatureFly/NatureFly.exe: + "/NatureFly/NatureFly.exe": - when: - os: windows store: steam @@ -358462,7 +359461,7 @@ Naught Reawakening: installDir: NaughtReawakening: {} launch: - /Naught.exe: + "/Naught.exe": - when: - os: windows store: steam @@ -358472,7 +359471,7 @@ Naughty Elves: installDir: Naughty Elves: {} launch: - /naughtyelves.exe: + "/naughtyelves.exe": - when: - os: windows store: steam @@ -358482,7 +359481,7 @@ Naughty Girl 2: installDir: Naughty Girl 2: {} launch: - /Naughty Girl 2.exe: + "/Naughty Girl 2.exe": - when: - store: steam steam: @@ -358496,7 +359495,7 @@ Naughty study for exams with a ghost: installDir: Naughty study for exams with a ghost: {} launch: - /MyGame1.exe: + "/MyGame1.exe": - when: - os: windows store: steam @@ -358506,7 +359505,7 @@ Nauseous Pines: installDir: Nauseous Pines: {} launch: - /nauseous pines.exe: + "/nauseous pines.exe": - when: - os: windows store: steam @@ -358516,7 +359515,7 @@ Nautical Life: installDir: Nautical Life: {} launch: - /Nautical Life.exe: + "/Nautical Life.exe": - when: - os: windows store: steam @@ -358524,17 +359523,17 @@ Nautical Life: id: 817200 Nauticrawl: files: - /nauticrawlGameData: + "/nauticrawlGameData": tags: - save when: - os: windows - /nauticrawlGameSettings: + "/nauticrawlGameSettings": tags: - config when: - os: windows - /AppData/LocalLow/Nauticrawl: + "/AppData/LocalLow/Nauticrawl": tags: - config - save @@ -358548,11 +359547,11 @@ Nauticrawl: installDir: Nauticrawl: {} launch: - /Nauticrawl.app/Contents/MacOS/Nauticrawl: + "/Nauticrawl.app/Contents/MacOS/Nauticrawl": - when: - os: mac store: steam - /Nauticrawl.exe: + "/Nauticrawl.exe": - when: - os: windows store: steam @@ -358562,14 +359561,14 @@ Naval Action: installDir: Naval Action: {} launch: - /Client.exe: - - arguments: 'dev -CustomArgs:logintype=steam -logFile logs\\unity_log.txt' + "/Client.exe": + - arguments: "dev -CustomArgs:logintype=steam -logFile logs\\\\unity_log.txt" when: - store: steam - /NavalActionCrashSender.exe: + "/NavalActionCrashSender.exe": - when: - store: steam - - arguments: '-connectivityTest' + - arguments: "-connectivityTest" when: - store: steam steam: @@ -358578,27 +359577,27 @@ Naval Armada: installDir: Naval Armada: {} launch: - /Naval Armada.app: + "/Naval Armada.app": - when: - os: mac store: steam - /Naval Armada.exe: + "/Naval Armada.exe": - when: - bit: 64 os: windows store: steam - /Naval Armada.x86_64: + "/Naval Armada.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 618620 -'Naval War: Arctic Circle': +"Naval War: Arctic Circle": installDir: Naval War Arctic Circle: {} launch: - /NWAC.exe: + "/NWAC.exe": - when: - os: windows store: steam @@ -358608,7 +359607,7 @@ Naval Warfare: installDir: Naval Warfare: {} launch: - /naval warfare.exe: + "/naval warfare.exe": - when: - store: steam steam: @@ -358617,7 +359616,7 @@ NavalArt: installDir: NavalArt: {} launch: - /NavalArt.exe: + "/NavalArt.exe": - when: - os: windows store: steam @@ -358627,20 +359626,20 @@ Navalia: installDir: Navalia: {} launch: - /PCEngine.exe: + "/PCEngine.exe": - when: - os: windows store: steam steam: id: 551630 -'Navalny 20!8: The Rise of Evil': +"Navalny 20!8: The Rise of Evil": steam: id: 761330 -'Navalny: Posledniy miting': +"Navalny: Posledniy miting": installDir: Navalny Posledniy miting: {} launch: - /Navalny Posledniy miting.exe: + "/Navalny Posledniy miting.exe": - when: - os: windows store: steam @@ -358650,17 +359649,17 @@ Navigator: installDir: Navigator: {} launch: - /Platforms/Linux32/launcher: + "/Platforms/Linux32/launcher": - when: - bit: 32 os: linux store: steam - /Platforms/Linux64/launcher: + "/Platforms/Linux64/launcher": - when: - bit: 64 os: linux store: steam - /Platforms/Windows/launcher.exe: + "/Platforms/Windows/launcher.exe": - when: - os: windows store: steam @@ -358670,17 +359669,17 @@ Navpoint: installDir: Navpoint: {} launch: - /Navpoint.exe: + "/Navpoint.exe": - when: - store: steam steam: id: 297080 -'Navy Field 2: Conqueror of the Ocean': +"Navy Field 2: Conqueror of the Ocean": installDir: Navy Field 2 Conqueror of the Ocean: {} launch: - /NF2_Launcher.exe: - - arguments: ',S' + "/NF2_Launcher.exe": + - arguments: ",S" when: - os: windows store: steam @@ -358690,7 +359689,7 @@ Navyblue and the Spectrum Killers: installDir: Navyblue & the Spectrum Killers: {} launch: - /NavyBlue.exe: + "/NavyBlue.exe": - when: - os: windows store: steam @@ -358700,11 +359699,11 @@ Navyfield: installDir: Navyfield: {} launch: - /FleetMissionLauncher.exe: + "/FleetMissionLauncher.exe": - when: - os: windows store: steam - /dev.exe: + "/dev.exe": - when: - store: steam steam: @@ -358713,19 +359712,19 @@ Naxia: installDir: Naxia: {} launch: - /Naxia.exe: + "/Naxia.exe": - when: - os: windows store: steam steam: id: 1049220 -Nayla's Castle: +"Nayla's Castle": gog: id: 1686449631 installDir: - Nayla's Castle: {} + "Nayla's Castle": {} launch: - /player.exe: + "/player.exe": - when: - store: steam steam: @@ -358734,7 +359733,7 @@ Nazi 2: installDir: Nazi 2: {} launch: - /nazi2.exe: + "/nazi2.exe": - when: - store: steam steam: @@ -358743,7 +359742,7 @@ Nazi Bunker: installDir: Nazi Bunker: {} launch: - /NaziBunker.exe: + "/NaziBunker.exe": - when: - os: windows store: steam @@ -358753,7 +359752,7 @@ Nazi Elimination: installDir: NaziElimination: {} launch: - /nazi_elimination.exe: + "/nazi_elimination.exe": - when: - os: windows store: steam @@ -358763,7 +359762,7 @@ NaziShoot: installDir: NaziShoot: {} launch: - /nazishoot.exe: + "/nazishoot.exe": - when: - os: windows store: steam @@ -358773,7 +359772,7 @@ NaziShootout: installDir: NaziShootout: {} launch: - /nazishootout.exe: + "/nazishootout.exe": - when: - os: windows store: steam @@ -358783,7 +359782,7 @@ Ne Touchez Pas 5: installDir: Ne Touchez Pas 5: {} launch: - /Ne Touchez Pas 5.exe: + "/Ne Touchez Pas 5.exe": - when: - os: windows store: steam @@ -358791,7 +359790,7 @@ Ne Touchez Pas 5: id: 1029840 Ne no Kami - The Two Princess Knights of Kyoto: files: - /savedata: + "/savedata": tags: - config - save @@ -358802,7 +359801,7 @@ Ne no Kami - The Two Princess Knights of Kyoto: installDir: Ne no Kami - The Two Princess Knights of Kyoto: {} launch: - /Nenokami_KyouHime_P1.exe: + "/Nenokami_KyouHime_P1.exe": - when: - os: windows store: steam @@ -358810,7 +359809,7 @@ Ne no Kami - The Two Princess Knights of Kyoto: id: 490890 Ne no Kami - The Two Princess Knights of Kyoto Part 2: files: - /kuroirodoruyomiji/nenokami2: + "/kuroirodoruyomiji/nenokami2": tags: - config - save @@ -358821,17 +359820,17 @@ Ne no Kami - The Two Princess Knights of Kyoto Part 2: installDir: Ne no Kami - The Two Princess Knights of Kyoto Part 2: {} launch: - /Nenokami_KyouHime_P2.exe: + "/Nenokami_KyouHime_P2.exe": - when: - os: windows store: steam steam: id: 701420 -'NeXus: One Core': +"NeXus: One Core": installDir: Nexus One Core: {} launch: - /NexusOneCoreGame.exe: + "/NexusOneCoreGame.exe": - when: - bit: 32 os: windows @@ -358843,7 +359842,7 @@ Near Bird: id: 1009020 Near Death: files: - /AppData/LocalLow/Orthogonal Games/Near Death: + "/AppData/LocalLow/Orthogonal Games/Near Death": tags: - save when: @@ -358851,15 +359850,15 @@ Near Death: installDir: Near Death: {} launch: - /Near Death.app: + "/Near Death.app": - when: - os: mac store: steam - /Near Death.exe: + "/Near Death.exe": - when: - os: windows store: steam - /Near Death.x86_64: + "/Near Death.x86_64": - when: - bit: 64 os: linux @@ -358870,7 +359869,7 @@ Near Death Experience: installDir: Near Death Experience: {} launch: - /Near Death Experience.exe: + "/Near Death Experience.exe": - when: - os: windows store: steam @@ -358880,17 +359879,17 @@ Near Impact: installDir: Near Impact: {} launch: - /Bin/Release/NEARImpact.exe: + "/Bin/Release/NEARImpact.exe": - when: - store: steam - workingDir: /Bin/Release + workingDir: "/Bin/Release" steam: id: 320410 Near Midnight: installDir: Near Midnight: {} launch: - /Near Midnight.exe: + "/Near Midnight.exe": - when: - store: steam steam: @@ -358902,7 +359901,7 @@ NearEscape: installDir: NearEscape: {} launch: - /NearEscape.exe: + "/NearEscape.exe": - when: - os: windows store: steam @@ -358911,11 +359910,11 @@ NearEscape: NearPrime VR - Net Burn: steam: id: 1135850 -Nearwood - Collector's Edition: +"Nearwood - Collector's Edition": installDir: - Nearwood - Collector's Edition: {} + "Nearwood - Collector's Edition": {} launch: - /Nearwood_CE.exe: + "/Nearwood_CE.exe": - when: - os: windows store: steam @@ -358932,34 +359931,37 @@ Nebuchadnezzar: installDir: nebuchadnezzar: {} launch: - /binary/linux/nebuchadnezzar: + "/binary/linux/nebuchadnezzar": - when: - os: linux store: steam - workingDir: /binary/linux - /binary/win/nebuchadnezzar.exe: + workingDir: "/binary/linux" + "/binary/win/nebuchadnezzar.exe": - when: - os: windows store: steam - workingDir: /binary/win + workingDir: "/binary/win" steam: id: 1157220 Nebula: installDir: Nebula: {} launch: - /Nebula.exe: + "/Nebula.exe": - when: - bit: 32 os: windows store: steam + - bit: 64 + os: windows + store: steam steam: id: 468130 Nebula Nuker: installDir: Nebula Nuker: {} launch: - /Nebula Nuker.exe: + "/Nebula Nuker.exe": - when: - os: windows store: steam @@ -358969,16 +359971,19 @@ Nebula Online: installDir: Nebula: {} launch: - /Nebula Online.app/Contents/MacOS/Nebula Online: + "/Nebula Online.app/Contents/MacOS/Nebula Online": - when: - os: mac store: steam - /Nebula Online.exe: + "/Nebula Online.exe": - when: - bit: 32 os: windows store: steam - /Nebula Online.x86_64: + - bit: 64 + os: windows + store: steam + "/Nebula Online.x86_64": - when: - os: linux store: steam @@ -358988,11 +359993,11 @@ Nebulous: installDir: Nebulous: {} launch: - /Nebulous.app/Contents/MacOS/Nebulous: + "/Nebulous.app/Contents/MacOS/Nebulous": - when: - os: mac store: steam - /Nebulous.exe: + "/Nebulous.exe": - when: - bit: 64 os: windows @@ -359001,17 +360006,17 @@ Nebulous: id: 370140 Necesse: files: - /Necesse/saves: + "/Necesse/saves": tags: - save when: - os: windows - /Necesse/cfg: + "/Necesse/cfg": tags: - config when: - os: linux - /Necesse/saves: + "/Necesse/saves": tags: - save when: @@ -359019,25 +360024,21 @@ Necesse: installDir: Necesse: {} launch: - /Necesse.app: + "/Necesse.app": - when: - os: mac store: steam - /Necesse.exe: + "/Necesse.exe": - when: - os: windows store: steam - /jre/bin/java: - - arguments: >- - -XX:+UnlockExperimentalVMOptions -XX:+UseG1GC -XX:G1NewSizePercent=20 -XX:G1ReservePercent=20 - -XX:MaxGCPauseMillis=50 -XX:G1HeapRegionSize=32M -Xms512m -Xmx3G -jar Necesse.jar + "/jre/bin/java": + - arguments: "-XX:+UnlockExperimentalVMOptions -XX:+UseG1GC -XX:G1NewSizePercent=20 -XX:G1ReservePercent=20 -XX:MaxGCPauseMillis=50 -XX:G1HeapRegionSize=32M -Xms512m -Xmx3G -jar Necesse.jar" when: - os: linux store: steam - /jre/bin/javaw.exe: - - arguments: >- - -XX:+UnlockExperimentalVMOptions -XX:+UseG1GC -XX:G1NewSizePercent=20 -XX:G1ReservePercent=20 - -XX:MaxGCPauseMillis=50 -XX:G1HeapRegionSize=32M -jar Necesse.jar + "/jre/bin/javaw.exe": + - arguments: "-XX:+UnlockExperimentalVMOptions -XX:+UseG1GC -XX:G1NewSizePercent=20 -XX:G1ReservePercent=20 -XX:MaxGCPauseMillis=50 -XX:G1HeapRegionSize=32M -jar Necesse.jar" when: - bit: 64 os: windows @@ -359048,35 +360049,35 @@ Neckbeardia: installDir: Neckbeardia: {} launch: - /Neckbeardia.exe: + "/Neckbeardia.exe": - when: - os: windows store: steam steam: id: 1102390 -'Neckbeards: Basement Arena': +"Neckbeards: Basement Arena": installDir: Neckbeards Basement Arena: {} launch: - /neckbeards.exe: + "/neckbeards.exe": - when: - os: windows store: steam - /neckbeards20: + "/neckbeards20": - when: - os: linux store: steam steam: id: 693380 -'Neckbeards: Cuck Invaders': +"Neckbeards: Cuck Invaders": installDir: Neckbeards Silly Squadron: {} launch: - /Invaders: + "/Invaders": - when: - os: linux store: steam - /Invaders.exe: + "/Invaders.exe": - when: - os: windows store: steam @@ -359086,7 +360087,7 @@ Necken: installDir: Necken: {} launch: - /Necken.exe: + "/Necken.exe": - when: - os: windows store: steam @@ -359101,7 +360102,7 @@ Necro Immortallis: installDir: Necro Immortallis: {} launch: - /Necro Immortallis.exe: + "/Necro Immortallis.exe": - when: - os: windows store: steam @@ -359111,7 +360112,7 @@ Necro Mutex: installDir: Necro Mutex: {} launch: - /NecroMutex.exe: + "/NecroMutex.exe": - when: - os: windows store: steam @@ -359124,23 +360125,23 @@ Necro Wars: installDir: NecroWars: {} launch: - /NecroWarsTest.exe: + "/NecroWarsTest.exe": - when: - os: windows store: steam steam: id: 787150 -'NecroLand: Undead Corps': +"NecroLand: Undead Corps": gog: id: 1697928525 installDir: NecroLand Battle Royale: {} launch: - /NecroLand_BattleRoyale.app/Contents/MacOS/NecroLand_BattleRoyale: + "/NecroLand_BattleRoyale.app/Contents/MacOS/NecroLand_BattleRoyale": - when: - os: mac store: steam - /NecroLand_BattleRoyale.exe: + "/NecroLand_BattleRoyale.exe": - when: - os: windows store: steam @@ -359148,12 +360149,12 @@ Necro Wars: id: 1185620 NecroVisioN: files: - /Bin/config.ini: + "/Bin/config.ini": tags: - config when: - os: windows - /Profiles//SaveGame: + "/Profiles//SaveGame": tags: - save when: @@ -359163,20 +360164,20 @@ NecroVisioN: installDir: NecroVisioN: {} launch: - /Bin/NecroVisioN.exe: + "/Bin/NecroVisioN.exe": - when: - store: steam - workingDir: /Bin + workingDir: "/Bin" steam: id: 7860 -'NecroVisioN: Lost Company': +"NecroVisioN: Lost Company": files: - /Bin/config.ini: + "/Bin/config.ini": tags: - config when: - os: windows - /Profiles//SaveGame: + "/Profiles//SaveGame": tags: - save when: @@ -359186,10 +360187,10 @@ NecroVisioN: installDir: NecrovisioN Lost Company: {} launch: - /Bin/NecroVisioN.exe: + "/Bin/NecroVisioN.exe": - when: - store: steam - workingDir: /Bin + workingDir: "/Bin" steam: id: 46250 Necroarmy: @@ -359199,20 +360200,20 @@ Necroball: installDir: Necroball: {} launch: - /Necroball.app: + "/Necroball.app": - when: - os: mac store: steam - /Necroball.exe: + "/Necroball.exe": - when: - os: windows store: steam - /Necroball.x86: + "/Necroball.x86": - when: - bit: 32 os: linux store: steam - /Necroball.x86_64: + "/Necroball.x86_64": - when: - bit: 64 os: linux @@ -359221,7 +360222,7 @@ Necroball: id: 563410 Necrobarista: files: - /AppData/LocalLow/Route59/Necrobarista/GameSaves/Necrobarista.save: + "/AppData/LocalLow/Route59/Necrobarista/GameSaves/Necrobarista.save": tags: - save when: @@ -359231,19 +360232,19 @@ Necrobarista: installDir: Necrobarista: {} launch: - /Necrobarista.exe: + "/Necrobarista.exe": - when: - store: steam steam: id: 725270 Necrodome: files: - /*.SAV: + "/*.SAV": tags: - save when: - os: windows - /NECRO.CFG: + "/NECRO.CFG": tags: - config when: @@ -359253,7 +360254,7 @@ Necrodome: installDir: Necrodome: {} launch: - /NECRO95.EXE: + "/NECRO95.EXE": - when: - store: steam steam: @@ -359265,7 +360266,7 @@ Necrolance: installDir: Necrolance: {} launch: - /Necrolance.exe: + "/Necrolance.exe": - when: - os: windows store: steam @@ -359273,12 +360274,12 @@ Necrolance: id: 935250 Necrolepsy: files: - /AppData/LocalLow/Stolken/Necrolepsy: + "/AppData/LocalLow/Stolken/Necrolepsy": tags: - save when: - os: windows - /AppData/LocalLow/Stolken/Necrolepsy/NecrolepsySettings.dat: + "/AppData/LocalLow/Stolken/Necrolepsy/NecrolepsySettings.dat": tags: - config when: @@ -359286,7 +360287,7 @@ Necrolepsy: installDir: Necrolepsy: {} launch: - /Necrolepsy.exe: + "/Necrolepsy.exe": - when: - os: windows store: steam @@ -359296,7 +360297,7 @@ Necromancer Accountant: installDir: Necromancer Accountant: {} launch: - /NecromancerAccountant.exe: + "/NecromancerAccountant.exe": - when: - os: windows store: steam @@ -359306,19 +360307,19 @@ Necromonads: installDir: Necromonads: {} launch: - /Necromonads.exe: + "/Necromonads.exe": - when: - store: steam steam: id: 391630 -'Necromunda: Hired Gun': +"Necromunda: Hired Gun": files: - /Streumon/Necromunda/Saved/Config/WindowsNoEditor: + "/Streumon/Necromunda/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /Streumon/Necromunda/Saved/SaveGames: + "/Streumon/Necromunda/Saved/SaveGames": tags: - save when: @@ -359328,14 +360329,14 @@ Necromonads: installDir: Necromunda Hired Gun: {} launch: - /Necromunda.exe: + "/Necromunda.exe": - when: - store: steam steam: id: 1222370 -'Necromunda: Underhive Wars': +"Necromunda: Underhive Wars": files: - /Necromunda/Saved/Config/WindowsNoEditor: + "/Necromunda/Saved/Config/WindowsNoEditor": tags: - config when: @@ -359343,17 +360344,17 @@ Necromonads: installDir: Necromunda Underhive Wars: {} launch: - /Necromunda.exe: - - arguments: '-unattended' + "/Necromunda.exe": + - arguments: "-unattended" when: - bit: 64 os: windows store: steam steam: id: 566440 -'Necronator: Dead Wrong': +"Necronator: Dead Wrong": files: - /AppData/LocalLow/Toge Productions/Necronator Dead Wrong/Data: + "/AppData/LocalLow/Toge Productions/Necronator Dead Wrong/Data": tags: - save when: @@ -359361,7 +360362,7 @@ Necromonads: installDir: Necronator Dead Wrong: {} launch: - /Necronator Dead Wrong.exe: + "/Necronator Dead Wrong.exe": - when: - os: windows store: steam @@ -359371,13 +360372,13 @@ Necromonads: - config steam: id: 1144970 -'Necronomicon: The Dawning of Darkness': +"Necronomicon: The Dawning of Darkness": gog: id: 1606010486 installDir: Necronomicon The Dawning of Darkness: {} launch: - /Necrono.exe: + "/Necrono.exe": - when: - os: windows store: steam @@ -359387,8 +360388,11 @@ Necronomistore: installDir: Necronomistore: {} launch: - /nw.exe: + "/nw.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam @@ -359396,12 +360400,12 @@ Necronomistore: id: 1063360 Necropolis: files: - /AppData/LocalLow/Harebrained Schemes/Necropolis: + "/AppData/LocalLow/Harebrained Schemes/Necropolis": tags: - save when: - os: windows - /userdata//384490/remote: + "/userdata//384490/remote": tags: - save when: @@ -359411,11 +360415,11 @@ Necropolis: installDir: Necropolis: {} launch: - /Necropolis.app/Contents/MacOS/Necropolis: + "/Necropolis.app/Contents/MacOS/Necropolis": - when: - os: mac store: steam - /Necropolis.exe: + "/Necropolis.exe": - when: - os: windows store: steam @@ -359431,7 +360435,7 @@ Necrosmith: installDir: Necrosmith: {} launch: - /Necrosmith.exe: + "/Necrosmith.exe": - when: - bit: 64 os: windows @@ -359442,20 +360446,20 @@ Necrosphere: installDir: Necrosphere: {} launch: - /necro.app: + "/necro.app": - when: - os: mac store: steam - /necro.exe: + "/necro.exe": - when: - os: windows store: steam - /necro.x86: + "/necro.x86": - when: - bit: 32 os: linux store: steam - /necro.x86_64: + "/necro.x86_64": - when: - bit: 64 os: linux @@ -359466,15 +360470,15 @@ Need a packet?: installDir: Need a packet: {} launch: - /NeedAPacket.x86_64: + "/NeedAPacket.x86_64": - when: - os: linux store: steam - /NeedAPacketMAC.app/Contents/MacOS/NeedAPacketMAC: + "/NeedAPacketMAC.app/Contents/MacOS/NeedAPacketMAC": - when: - os: mac store: steam - /NeedAPacket_Windows/NeedAPacket.exe: + "/NeedAPacket_Windows/NeedAPacket.exe": - when: - os: windows store: steam @@ -359484,7 +360488,7 @@ Need for Drink: installDir: Need For Drink: {} launch: - /needfordrink.exe: + "/needfordrink.exe": - when: - os: windows store: steam @@ -359497,26 +360501,26 @@ Need for Madness: installDir: Need for Madness: {} launch: - /Madness.app: + "/Madness.app": - when: - os: mac store: steam - /Madness.exe: + "/Madness.exe": - when: - os: windows store: steam - /Madness.sh: + "/Madness.sh": - when: - os: linux store: steam steam: id: 343330 -'Need for Seed: Bird Simulator': +"Need for Seed: Bird Simulator": steam: id: 724960 Need for Speed (2016): files: - /Need for Speed/settings: + "/Need for Speed/settings": tags: - config when: @@ -359527,12 +360531,12 @@ Need for Speed (2016): id: 1262540 Need for Speed Heat: files: - /Need for Speed Heat/SaveGame/savegame: + "/Need for Speed Heat/SaveGame/savegame": tags: - save when: - os: windows - /Need for Speed Heat/settings: + "/Need for Speed Heat/settings": tags: - config when: @@ -359543,32 +360547,32 @@ Need for Speed Heat: id: 1222680 Need for Speed II: files: - /FEDATA/PC/CONFIG/config.dat: + "/FEDATA/PC/CONFIG/config.dat": tags: - config - save when: - os: windows -'Need for Speed III: Hot Pursuit': +"Need for Speed III: Hot Pursuit": files: - /fedata/config/config.dat: + "/fedata/config/config.dat": tags: - config when: - os: windows - /fedata/save: + "/fedata/save": tags: - save when: - os: windows Need for Speed Payback: files: - /Need For Speed(TM) Payback: + "/Need For Speed(TM) Payback": tags: - save when: - os: windows - /Need For Speed(TM) Payback/settings: + "/Need For Speed(TM) Payback/settings": tags: - config when: @@ -359579,12 +360583,12 @@ Need for Speed Payback: id: 1262580 Need for Speed Rivals: files: - /Ghost Games/Need for Speed(TM) Rivals/settings: + "/Ghost Games/Need for Speed(TM) Rivals/settings": tags: - config when: - os: windows - /Ghost Games/Need for Speed(TM) Rivals/settings/.sav: + "/Ghost Games/Need for Speed(TM) Rivals/settings/.sav": tags: - save when: @@ -359595,12 +360599,12 @@ Need for Speed Rivals: id: 1262600 Need for Speed Unbound: files: - /Need For Speed(TM) Unbound/SaveGame: + "/Need For Speed(TM) Unbound/SaveGame": tags: - save when: - os: windows - /Need For Speed(TM) Unbound/settings: + "/Need For Speed(TM) Unbound/settings": tags: - config when: @@ -359617,9 +360621,9 @@ Need for Speed Unbound: Excalibur: {} steam: id: 1846380 -'Need for Speed: Carbon': +"Need for Speed: Carbon": files: - /NFS Carbon/: + "/NFS Carbon/": tags: - save when: @@ -359628,27 +360632,27 @@ Need for Speed Unbound: HKEY_LOCAL_MACHINE/Software/WOW6432Node/Electronic Arts/Need for Speed Carbon: tags: - config -'Need for Speed: High Stakes': +"Need for Speed: High Stakes": files: - /SaveData: + "/SaveData": tags: - config - save when: - os: windows -'Need for Speed: Hot Pursuit': +"Need for Speed: Hot Pursuit": files: - /Criterion Games/Need for Speed(TM) Hot Pursuit/Save/Default: + "/Criterion Games/Need for Speed(TM) Hot Pursuit/Save/Default": tags: - save when: - os: windows - /Criterion Games/Need for Speed(TM) Hot Pursuit/Save/Default/controls.NFS11Save: + "/Criterion Games/Need for Speed(TM) Hot Pursuit/Save/Default/controls.NFS11Save": tags: - config when: - os: windows - /Criterion Games/Need for Speed(TM) Hot Pursuit/config.NFS11Save: + "/Criterion Games/Need for Speed(TM) Hot Pursuit/config.NFS11Save": tags: - config when: @@ -359656,35 +360660,35 @@ Need for Speed Unbound: installDir: Need for Speed Hot Pursuit: {} launch: - /NFS11.exe: + "/NFS11.exe": - when: - store: steam - /Support/EA Help/Electronic_Arts_Technical_Support.htm: + "/Support/EA Help/Electronic_Arts_Technical_Support.htm": - when: - store: steam steam: id: 47870 -'Need for Speed: Hot Pursuit 2': +"Need for Speed: Hot Pursuit 2": files: - /EA Games/Need For Speed Hot Pursuit 2: + "/EA Games/Need For Speed Hot Pursuit 2": tags: - config - save when: - os: windows -'Need for Speed: Hot Pursuit Remastered': +"Need for Speed: Hot Pursuit Remastered": files: - /Criterion Games/Need for Speed(TM) Hot Pursuit Remastered/Save/Default: + "/Criterion Games/Need for Speed(TM) Hot Pursuit Remastered/Save/Default": tags: - save when: - os: windows - /Criterion Games/Need for Speed(TM) Hot Pursuit Remastered/Save/Default/MUD64.8.NFS11Save: + "/Criterion Games/Need for Speed(TM) Hot Pursuit Remastered/Save/Default/MUD64.8.NFS11Save": tags: - config when: - os: windows - /Criterion Games/Need for Speed(TM) Hot Pursuit Remastered/config.NFS11Save: + "/Criterion Games/Need for Speed(TM) Hot Pursuit Remastered/config.NFS11Save": tags: - config when: @@ -359693,9 +360697,9 @@ Need for Speed Unbound: Need For Speed Hot Pursuit Remastered: {} steam: id: 1328660 -'Need for Speed: Most Wanted': +"Need for Speed: Most Wanted": files: - /NFS Most Wanted/: + "/NFS Most Wanted/": tags: - save when: @@ -359704,14 +360708,14 @@ Need for Speed Unbound: HKEY_LOCAL_MACHINE/SOFTWARE/WOW6432Node/EA Games/Need for Speed Most Wanted: tags: - config -'Need for Speed: Most Wanted (2012)': +"Need for Speed: Most Wanted (2012)": files: - /Criterion Games/Need For Speed(TM) Most Wanted: + "/Criterion Games/Need For Speed(TM) Most Wanted": tags: - config when: - os: windows - /Criterion Games/Need For Speed(TM) Most Wanted/Save: + "/Criterion Games/Need For Speed(TM) Most Wanted/Save": tags: - save when: @@ -359720,17 +360724,17 @@ Need for Speed Unbound: Need for Speed(TM) Most Wanted: {} steam: id: 1262560 -'Need for Speed: Porsche Unleashed': +"Need for Speed: Porsche Unleashed": files: - /SaveData: + "/SaveData": tags: - config - save when: - os: windows -'Need for Speed: ProStreet': +"Need for Speed: ProStreet": files: - /NFS ProStreet: + "/NFS ProStreet": tags: - save when: @@ -359739,14 +360743,14 @@ Need for Speed Unbound: HKEY_LOCAL_MACHINE/Software/WOW6432Node/Electronic Arts/Need for Speed ProStreet: tags: - config -'Need for Speed: Shift': +"Need for Speed: Shift": files: - /NFS SHIFT: + "/NFS SHIFT": tags: - config when: - os: windows - /NFS SHIFT/: + "/NFS SHIFT/": tags: - save when: @@ -359754,25 +360758,25 @@ Need for Speed Unbound: installDir: Need For Speed Shift: {} launch: - /Shift.exe: + "/Shift.exe": - when: - store: steam - /Support/EA Help/Electronic_Arts_Technical_Support.htm: + "/Support/EA Help/Electronic_Arts_Technical_Support.htm": - when: - store: steam steam: id: 24870 -'Need for Speed: The Run': +"Need for Speed: The Run": files: - /NFSTR/settings/*.*: + "/NFSTR/settings/*.*": tags: - config - save when: - os: windows -'Need for Speed: Undercover': +"Need for Speed: Undercover": files: - /NFS Undercover/: + "/NFS Undercover/": tags: - save when: @@ -359780,10 +360784,10 @@ Need for Speed Unbound: installDir: Need for Speed Undercover: {} launch: - /Support/EA Help/Electronic_Arts_Technical_Support.htm: + "/Support/EA Help/Electronic_Arts_Technical_Support.htm": - when: - store: steam - /nfs.exe: + "/nfs.exe": - when: - store: steam registry: @@ -359792,19 +360796,19 @@ Need for Speed Unbound: - config steam: id: 17430 -'Need for Speed: Underground': +"Need for Speed: Underground": files: - /NFS Underground/*.cfg: + "/NFS Underground/*.cfg": tags: - config when: - os: windows - /NFS Underground/*.opt: + "/NFS Underground/*.opt": tags: - config when: - os: windows - /NFS Underground/*.ugd: + "/NFS Underground/*.ugd": tags: - save when: @@ -359813,9 +360817,9 @@ Need for Speed Unbound: HKEY_LOCAL_MACHINE/SOFTWARE/EA GAMES/Need For Speed Underground: tags: - config -'Need for Speed: Underground 2': +"Need for Speed: Underground 2": files: - /NFS Underground 2: + "/NFS Underground 2": tags: - save when: @@ -359824,28 +360828,28 @@ Need for Speed Unbound: HKEY_LOCAL_MACHINE/SOFTWARE/WOW6432Node/EA Games/Need for Speed Underground 2: tags: - config -'Need for Speed: World': +"Need for Speed: World": files: - /Need for Speed World/Settings/UserSettings.xml: + "/Need for Speed World/Settings/UserSettings.xml": tags: - config when: - os: windows -'Need for Spirit: Drink & Drive Simulator': +"Need for Spirit: Drink & Drive Simulator": installDir: Need for Spirit Drink & Drive Simulator: {} launch: - /Need for Spirit Drink & Drive Simulator.exe: + "/Need for Spirit Drink & Drive Simulator.exe": - when: - os: windows store: steam steam: id: 924670 -'Need for Spirit: Off-Road Edition': +"Need for Spirit: Off-Road Edition": installDir: Need for Spirit Off-Road Edition: {} launch: - /NFS_content/Need for Spirit Off Road.exe: + "/NFS_content/Need for Spirit Off Road.exe": - when: - os: windows store: steam @@ -359856,7 +360860,7 @@ Need for Synthol: id: 841430 Need to Know: files: - /AppData/LocalLow/Monomyth Games/Need to Know: + "/AppData/LocalLow/Monomyth Games/Need to Know": tags: - save when: @@ -359866,20 +360870,20 @@ Need to Know: installDir: Need to Know: {} launch: - /Need_to_Know.app/Contents/MacOS/Need_to_Know: + "/Need_to_Know.app/Contents/MacOS/Need_to_Know": - when: - os: mac store: steam - /Need_to_Know.exe: + "/Need_to_Know.exe": - when: - os: windows store: steam - /Need_to_Know.x86: + "/Need_to_Know.x86": - when: - bit: 32 os: linux store: steam - /Need_to_Know.x86_64: + "/Need_to_Know.x86_64": - when: - bit: 64 os: linux @@ -359888,12 +360892,12 @@ Need to Know: id: 490930 Needy Streamer Overload: files: - /Windose_Data/Data*_Day*.es3: + "/Windose_Data/Data*_Day*.es3": tags: - save when: - os: windows - /Windose_Data/Settings.es3: + "/Windose_Data/Settings.es3": tags: - config when: @@ -359901,11 +360905,11 @@ Needy Streamer Overload: installDir: NEEDY GIRL OVERDOSE: {} launch: - /NEEDY GIRL OVERDOSE.app: + "/NEEDY GIRL OVERDOSE.app": - when: - os: mac store: steam - /Windose.exe: + "/Windose.exe": - when: - os: windows store: steam @@ -359915,27 +360919,27 @@ Nefarious: installDir: Nefarious: {} launch: - /Nefarious.app: + "/Nefarious.app": - when: - os: mac store: steam - /Nefarious.exe: + "/Nefarious.exe": - when: - os: windows store: steam - /Nefarious.x86: + "/Nefarious.x86": - when: - bit: 32 os: linux store: steam - /Nefarious.x86_64: + "/Nefarious.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 448290 -'Nefertari: Journey to Eternity': +"Nefertari: Journey to Eternity": installDir: Nefertari Journey to Eternity: {} steam: @@ -359950,11 +360954,11 @@ Negative World: installDir: Negative World: {} launch: - /Negative World.app/Contents/MacOS/Negative World: + "/Negative World.app/Contents/MacOS/Negative World": - when: - os: mac store: steam - /Negative World.exe: + "/Negative World.exe": - when: - os: windows store: steam @@ -359962,17 +360966,17 @@ Negative World: id: 832130 Negligee: files: - /game/saves/*.save: + "/game/saves/*.save": tags: - save when: - os: windows - /.renpy/Negligee: + "/.renpy/Negligee": tags: - save when: - os: linux - /RenPy/Negligee/*.save: + "/RenPy/Negligee/*.save": tags: - save when: @@ -359980,80 +360984,80 @@ Negligee: installDir: Negligee: {} launch: - /Negligee.app: + "/Negligee.app": - when: - os: mac store: steam - /Negligee.exe: + "/Negligee.exe": - when: - os: windows store: steam - /Negligee.sh: + "/Negligee.sh": - when: - os: linux store: steam steam: id: 432100 -'Negligee: DoubleD': +"Negligee: DoubleD": installDir: Maid Cafe: {} launch: - /MaidCafe.app: + "/MaidCafe.app": - when: - os: mac store: steam - /MaidCafe.exe: + "/MaidCafe.exe": - when: - bit: 64 os: windows store: steam - /MaidCafe.sh: + "/MaidCafe.sh": - when: - bit: 64 os: linux store: steam steam: id: 423640 -'Negligee: Love Stories': +"Negligee: Love Stories": installDir: Love Stories Adult: {} launch: - /LoveStories.app: + "/LoveStories.app": - when: - os: mac store: steam - /LoveStories.exe: + "/LoveStories.exe": - when: - os: windows store: steam - /LoveStories.sh: + "/LoveStories.sh": - when: - os: linux store: steam steam: id: 467680 -'Negligee: Spring Clean Prelude': +"Negligee: Spring Clean Prelude": installDir: Negligee Spring Clean Prelude: {} launch: - /NegligeeSpringCleanPrelude-32.exe: + "/NegligeeSpringCleanPrelude-32.exe": - when: - bit: 32 os: windows store: steam - /NegligeeSpringCleanPrelude.exe: + "/NegligeeSpringCleanPrelude.exe": - when: - bit: 64 os: windows store: steam steam: id: 565080 -'Nehrim: At Fate''s Edge': +"Nehrim: At Fate's Edge": installDir: Nehrim: {} launch: - /NehrimInstallSwitch.exe: - - arguments: '-gamestart' + "/NehrimInstallSwitch.exe": + - arguments: "-gamestart" when: - os: windows store: steam @@ -360061,7 +361065,7 @@ Negligee: id: 1014940 Neighbor: files: - /savedata: + "/savedata": tags: - save when: @@ -360069,7 +361073,7 @@ Neighbor: installDir: Neighbor: {} launch: - /Neighbor.exe: + "/Neighbor.exe": - when: - os: windows store: steam @@ -360079,7 +361083,7 @@ Neighborhood: installDir: Neighborhood: {} launch: - /Neighborhood.exe: + "/Neighborhood.exe": - when: - os: windows store: steam @@ -360089,11 +361093,11 @@ Neighborhorde: installDir: Neighborhorde: {} launch: - /Neighborhorde.app/Contents/MacOS/Neighborhorde_042117_RED: + "/Neighborhorde.app/Contents/MacOS/Neighborhorde_042117_RED": - when: - os: mac store: steam - /Neighborhorde.exe: + "/Neighborhorde.exe": - when: - os: windows store: steam @@ -360103,7 +361107,7 @@ Neighbourhood Loot: installDir: Neighbourhood Loot: {} launch: - /Neighbourhood Loot.exe: + "/Neighbourhood Loot.exe": - when: - os: windows store: steam @@ -360113,15 +361117,15 @@ Neighbourhood Necromancer: installDir: Neighbourhood Necromancer: {} launch: - /Neighbourhood Necromancer.app/Contents/MacOS/Neighbourhood Necromancer: + "/Neighbourhood Necromancer.app/Contents/MacOS/Neighbourhood Necromancer": - when: - os: mac store: steam - /NeighbourhoodNecromancer: + "/NeighbourhoodNecromancer": - when: - os: linux store: steam - /NeighbourhoodNecromancer.exe: + "/NeighbourhoodNecromancer.exe": - when: - os: windows store: steam @@ -360131,15 +361135,15 @@ Neighbouring Islands: installDir: Neighboring Islands: {} launch: - /Neighbouring islands.app: + "/Neighbouring islands.app": - when: - os: mac store: steam - /Neighbouring islands.exe: + "/Neighbouring islands.exe": - when: - os: windows store: steam - /Neighbouring islands.sh: + "/Neighbouring islands.sh": - when: - os: linux store: steam @@ -360147,12 +361151,12 @@ Neighbouring Islands: id: 588710 Neighbours Back from Hell: files: - /Neighbours back From Hell/NFHSettings.json: + "/Neighbours back From Hell/NFHSettings.json": tags: - config when: - os: windows - /Neighbours back From Hell/savegame.sav: + "/Neighbours back From Hell/savegame.sav": tags: - save when: @@ -360162,7 +361166,7 @@ Neighbours Back from Hell: installDir: Neighbours back From Hell: {} launch: - /Neighbours back From Hell.exe: + "/Neighbours back From Hell.exe": - when: - bit: 64 os: windows @@ -360171,22 +361175,22 @@ Neighbours Back from Hell: id: 1283190 Neighbours from Hell: files: - /JoWooD/NFH1/gameoptions.xml: + "/JoWooD/NFH1/gameoptions.xml": tags: - config when: - os: windows - /JoWooD/NFH1/userdata.ngh: + "/JoWooD/NFH1/userdata.ngh": tags: - save when: - os: windows - /JoWooD/Neighbours From Hell 1/gameoptions.xml: + "/JoWooD/Neighbours From Hell 1/gameoptions.xml": tags: - config when: - os: windows - /JoWooD/Neighbours From Hell 1/userdata.ngh: + "/JoWooD/Neighbours From Hell 1/userdata.ngh": tags: - save when: @@ -360201,29 +361205,29 @@ Neighbours from Hell: installDir: Neighbours from Hell: {} launch: - /NeighboursFromHell.app: + "/NeighboursFromHell.app": - when: - os: mac store: steam - /NeighboursFromHell.x86: + "/NeighboursFromHell.x86": - when: - os: linux store: steam - /bin/game.exe: + "/bin/game.exe": - when: - os: windows store: steam - workingDir: /bin + workingDir: "/bin" steam: id: 260750 -'Neighbours from Hell 2: On Vacation': +"Neighbours from Hell 2: On Vacation": files: - /JoWooD/NFH2/gameoptions.xml: + "/JoWooD/NFH2/gameoptions.xml": tags: - config when: - os: windows - /JoWooD/NFH2/userdata.ngh: + "/JoWooD/NFH2/userdata.ngh": tags: - save when: @@ -360236,26 +361240,26 @@ Neighbours from Hell: installDir: Neighbours from Hell 2: {} launch: - /NeighboursFromHell2.app: + "/NeighboursFromHell2.app": - when: - os: mac store: steam - /NeighboursFromHell2.x86: + "/NeighboursFromHell2.x86": - when: - os: linux store: steam - /bin/game.exe: + "/bin/game.exe": - when: - os: windows store: steam - workingDir: /bin + workingDir: "/bin" steam: id: 260770 Neither Day nor Night: installDir: Neither Day nor Night: {} launch: - /NDNN.exe: + "/NDNN.exe": - when: - os: windows store: steam @@ -360265,7 +361269,7 @@ Neko Arena: installDir: NEKO ARENA: {} launch: - /Neko Arena.exe: + "/Neko Arena.exe": - when: - os: windows store: steam @@ -360275,26 +361279,26 @@ Neko Dungeon: installDir: Neko Dungeon: {} launch: - /NekoDungeon.exe: + "/NekoDungeon.exe": - when: - os: windows store: steam - /NekoDungeonMAC.app: + "/NekoDungeonMAC.app": - when: - os: mac store: steam steam: id: 799870 -'Neko Ghost, Jump!': +"Neko Ghost, Jump!": installDir: - 'Neko Ghost, Jump!': {} + "Neko Ghost, Jump!": {} launch: - /NekoGhostJump.exe: + "/NekoGhostJump.exe": - when: - bit: 64 os: windows store: steam - /NekoGhostJump.sh: + "/NekoGhostJump.sh": - when: - bit: 64 os: linux @@ -360303,7 +361307,7 @@ Neko Dungeon: id: 1194750 Neko Navy: files: - /Fruitbat Factory/NekoNavy: + "/Fruitbat Factory/NekoNavy": tags: - save when: @@ -360311,14 +361315,14 @@ Neko Navy: installDir: Neko Navy: {} launch: - /NekoNavy.exe: + "/NekoNavy.exe": - when: - store: steam steam: id: 592270 Neko-nin exHeart: files: - /save: + "/save": tags: - config - save @@ -360327,14 +361331,14 @@ Neko-nin exHeart: installDir: NEKO-NIN exHeart: {} launch: - /nekonin.exe: + "/nekonin.exe": - when: - store: steam steam: id: 407310 Neko-nin exHeart +Plus Nachi: files: - /save: + "/save": tags: - config - save @@ -360343,14 +361347,14 @@ Neko-nin exHeart +Plus Nachi: installDir: NEKO-NIN exHeart +PLUS Nachi: {} launch: - /nekonin_nachi.exe: + "/nekonin_nachi.exe": - when: - store: steam steam: id: 744520 Neko-nin exHeart +Plus Saiha: files: - /save: + "/save": tags: - config - save @@ -360359,7 +361363,7 @@ Neko-nin exHeart +Plus Saiha: installDir: NEKO-NIN exHeart +PLUS Saiha: {} launch: - /nekonin_saiha.exe: + "/nekonin_saiha.exe": - when: - store: steam steam: @@ -360368,7 +361372,7 @@ Neko-nin exHeart 2: installDir: NEKO-NIN exHeart 2: {} launch: - /nekonin2.exe: + "/nekonin2.exe": - when: - os: windows store: steam @@ -360378,7 +361382,7 @@ Neko-nin exHeart 3: installDir: NEKO-NIN exHeart 3: {} launch: - /nekonin3.exe: + "/nekonin3.exe": - when: - os: windows store: steam @@ -360391,7 +361395,7 @@ NekoChan Hero - Collection: installDir: NekoChan Hero - Collection: {} launch: - /NekoChan Hero Collection.exe: + "/NekoChan Hero Collection.exe": - when: - os: windows store: steam @@ -360401,7 +361405,7 @@ NekoCharm: installDir: NekoCharm: {} launch: - /NekoCharm.exe: + "/NekoCharm.exe": - when: - store: steam steam: @@ -360412,7 +361416,7 @@ NekoMiko: installDir: NekoMiko: {} launch: - /NekoMiko.exe: + "/NekoMiko.exe": - when: - os: windows store: steam @@ -360423,17 +361427,17 @@ Nekodeito: id: 1072790 Nekojishi: files: - /game/saves: + "/game/saves": tags: - save when: - os: windows - /renpy/config.py: + "/renpy/config.py": tags: - config when: - os: windows - /RenPy/Neko-171107s: + "/RenPy/Neko-171107s": tags: - save when: @@ -360441,25 +361445,25 @@ Nekojishi: installDir: Nekojishi: {} launch: - /Nekojishi.app: + "/Nekojishi.app": - when: - os: mac store: steam - /Nekojishi.exe: + "/Nekojishi.exe": - when: - os: windows store: steam - /Nekojishi.sh: + "/Nekojishi.sh": - when: - os: linux store: steam steam: id: 570840 -Nekomew's Potty Trouble: +"Nekomew's Potty Trouble": installDir: - Nekomew's Potty Trouble: {} + "Nekomew's Potty Trouble": {} launch: - /nekomewpottytrouble.exe: + "/nekomewpottytrouble.exe": - when: - os: windows store: steam @@ -360469,7 +361473,7 @@ Nekour: installDir: Nekour: {} launch: - /ProjectCat.exe: + "/ProjectCat.exe": - when: - os: windows store: steam @@ -360479,20 +361483,20 @@ Nekuia: installDir: Nekuia: {} launch: - /Nekuia.exe: + "/Nekuia.exe": - when: - os: windows store: steam steam: id: 528950 -'Nelke & the Legendary Alchemists: Ateliers of the New World': +"Nelke & the Legendary Alchemists: Ateliers of the New World": files: - /Documents/KoeiTecmo/Nelke and the Legendary Alchemists/SAVEDATA: + "/Documents/KoeiTecmo/Nelke and the Legendary Alchemists/SAVEDATA": tags: - save when: - os: windows - /Documents/KoeiTecmo/Nelke and the Legendary Alchemists/Setting.ini: + "/Documents/KoeiTecmo/Nelke and the Legendary Alchemists/Setting.ini": tags: - config when: @@ -360500,43 +361504,43 @@ Nekuia: installDir: Nelke and the Legendary Alchemists Ateliers of the New World: {} launch: - /Nelke_and_the_Legendary_Alchemists_Launcher.exe: + "/Nelke_and_the_Legendary_Alchemists_Launcher.exe": - when: - store: steam steam: id: 886820 -'Nelly Cootalot: Spoonbeaks Ahoy! HD': +"Nelly Cootalot: Spoonbeaks Ahoy! HD": installDir: NellyCootalotSpoonbeaksAhoyHD: {} launch: - /Nelly: + "/Nelly": - when: - os: linux store: steam - /Nelly.app: + "/Nelly.app": - when: - os: mac store: steam - /Nelly.exe: + "/Nelly.exe": - when: - os: windows store: steam steam: id: 763030 -'Nelly Cootalot: The Fowl Fleet': +"Nelly Cootalot: The Fowl Fleet": files: - /.config/unity3d/Application Systems Heidelberg/Nelly Cootalot/sav: + "/.config/unity3d/Application Systems Heidelberg/Nelly Cootalot/sav": tags: - save when: - os: linux - /Packages/ApplicationSystemsHeidelb.NellyCootalotTheFowlFlee_bkezc6wzz2jsp/LocalState/playerprefs.dat: + "/Packages/ApplicationSystemsHeidelb.NellyCootalotTheFowlFlee_bkezc6wzz2jsp/LocalState/playerprefs.dat": tags: - config when: - os: windows store: microsoft - /Packages/ApplicationSystemsHeidelb.NellyCootalotTheFowlFlee_bkezc6wzz2jsp/LocalState/sav: + "/Packages/ApplicationSystemsHeidelb.NellyCootalotTheFowlFlee_bkezc6wzz2jsp/LocalState/sav": tags: - save when: @@ -360545,20 +361549,20 @@ Nekuia: installDir: Nelly Cootalot: {} launch: - /Nelly.app: + "/Nelly.app": - when: - os: mac store: steam - /Nelly.exe: + "/Nelly.exe": - when: - os: windows store: steam - /Nelly.x86: + "/Nelly.x86": - when: - bit: 32 os: linux store: steam - /Nelly.x86_64: + "/Nelly.x86_64": - when: - bit: 64 os: linux @@ -360569,21 +361573,21 @@ Nelo: installDir: Nelo: {} launch: - /Nelo.exe: + "/Nelo.exe": - when: - bit: 64 os: windows store: steam steam: id: 537000 -'Nelson Tethers: Puzzle Agent': +"Nelson Tethers: Puzzle Agent": files: - /Telltale Games/The Mystery of Scoggins/*.save: + "/Telltale Games/The Mystery of Scoggins/*.save": tags: - save when: - os: windows - /Telltale Games/The Mystery of Scoggins/prefs.prop: + "/Telltale Games/The Mystery of Scoggins/prefs.prop": tags: - config when: @@ -360593,11 +361597,11 @@ Nelo: installDir: Puzzle Agent: {} launch: - /Grickle101.exe: + "/Grickle101.exe": - when: - os: windows store: steam - /Puzzle Agent.app: + "/Puzzle Agent.app": - when: - os: mac store: steam @@ -360607,15 +361611,15 @@ Nelson and the Magic Cauldron: installDir: Nelson and the Magic Cauldron: {} launch: - /Nelson and the Magic Cauldron.app: + "/Nelson and the Magic Cauldron.app": - when: - os: mac store: steam - /Nelson.exe: + "/Nelson.exe": - when: - os: windows store: steam - /start: + "/start": - when: - os: linux store: steam @@ -360636,19 +361640,19 @@ Nemesis Realms: Nemesis Realms: {} steam: id: 716750 -'Nemezis: Mysterious Journey III': +"Nemezis: Mysterious Journey III": files: - /NemezisIIIMysteriousJourney/Saved/Config/WindowsNoEditor: + "/NemezisIIIMysteriousJourney/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /NemezisIIIMysteriousJourney/Saved/SaveGames: + "/NemezisIIIMysteriousJourney/Saved/SaveGames": tags: - save when: - os: windows - /NemezisIIIMysteriousJourney/Saved/SaveGames/UserSettings.sav: + "/NemezisIIIMysteriousJourney/Saved/SaveGames/UserSettings.sav": tags: - config when: @@ -360658,7 +361662,7 @@ Nemesis Realms: installDir: Nemezis Mysterious Journey III: {} launch: - /NemezisIIIMysteriousJourney.exe: + "/NemezisIIIMysteriousJourney.exe": - when: - bit: 64 os: windows @@ -360669,21 +361673,24 @@ Nemo DO: installDir: nemo_do: {} launch: - /nemo_do.app: + "/nemo_do.app": - when: - os: mac store: steam - /nemo_do.exe: + "/nemo_do.exe": - when: - bit: 32 os: windows store: steam - /nemo_do.x86: + - bit: 64 + os: windows + store: steam + "/nemo_do.x86": - when: - bit: 32 os: linux store: steam - /nemo_do.x86_64: + "/nemo_do.x86_64": - when: - bit: 64 os: linux @@ -360694,7 +361701,7 @@ Nemo Dungeon: installDir: NemoDungeon: {} launch: - /NemoDungeon.exe: + "/NemoDungeon.exe": - when: - os: windows store: steam @@ -360704,7 +361711,7 @@ Neo: installDir: NeuroMatrix: {} launch: - /NeuroMatrix.exe: + "/NeuroMatrix.exe": - when: - os: windows store: steam @@ -360714,11 +361721,11 @@ Neo Angle: installDir: Neo Angle: {} launch: - /NeoAngle.exe: + "/NeoAngle.exe": - when: - os: windows store: steam - /NeoOSX.app: + "/NeoOSX.app": - when: - os: mac store: steam @@ -360728,7 +361735,7 @@ Neo Atlas 1469: installDir: Neo ATLAS 1469: {} launch: - /na1469.exe: + "/na1469.exe": - when: - os: windows store: steam @@ -360736,12 +361743,12 @@ Neo Atlas 1469: id: 532690 Neo Cab: files: - /AppData/LocalLow/Chance Agency/Neo Cab: + "/AppData/LocalLow/Chance Agency/Neo Cab": tags: - save when: - os: windows - /Library/Application Support/com.ChanceAgency.Neo.Cab: + "/Library/Application Support/com.ChanceAgency.Neo.Cab": tags: - save when: @@ -360749,11 +361756,11 @@ Neo Cab: installDir: Neo Cab: {} launch: - /Neo Cab.app: + "/Neo Cab.app": - when: - os: mac store: steam - /Neo Cab.exe: + "/Neo Cab.exe": - when: - bit: 64 os: windows @@ -360764,8 +361771,11 @@ Neo Neo: installDir: NEO NEO: {} launch: - /NEO NEO.exe: + "/NEO NEO.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam @@ -360773,7 +361783,7 @@ Neo Neo: id: 873070 Neo Turf Masters: files: - /SNK/turfmast: + "/SNK/turfmast": tags: - config - save @@ -360785,7 +361795,7 @@ NeoBalls: installDir: NeoBalls: {} launch: - /NeoBalls.exe: + "/NeoBalls.exe": - when: - os: windows store: steam @@ -360795,7 +361805,7 @@ NeoBalls2: installDir: NeoBalls2: {} launch: - /NeoBalls2.exe: + "/NeoBalls2.exe": - when: - os: windows store: steam @@ -360805,7 +361815,7 @@ NeoBoom: installDir: NeoBoom: {} launch: - /NeoBoom.exe: + "/NeoBoom.exe": - when: - os: windows store: steam @@ -360815,7 +361825,7 @@ NeoBoom2: installDir: NeoBoom2: {} launch: - /NeoBoom2.exe: + "/NeoBoom2.exe": - when: - os: windows store: steam @@ -360828,11 +361838,11 @@ NeoCube: installDir: NeoCube: {} launch: - /NeoCube.exe: + "/NeoCube.exe": - when: - os: windows store: steam - /neocube.app/Contents/MacOS/neocube: + "/neocube.app/Contents/MacOS/neocube": - when: - os: mac store: steam @@ -360842,7 +361852,7 @@ NeoGeo Pocket Color Selection Vol. 1 Steam Edition: installDir: NEOGEO POCKET COLOR SELECTION Vol.1: {} launch: - /NGPCS.exe: + "/NGPCS.exe": - when: - os: windows store: steam @@ -360852,7 +361862,7 @@ NeoGeo Pocket Color Selection Vol. 2: installDir: NEOGEO POCKET COLOR SELECTION Vol.2: {} launch: - /NGPCS.exe: + "/NGPCS.exe": - when: - os: windows store: steam @@ -360862,7 +361872,7 @@ NeoGeometry: installDir: NeoGeometry: {} launch: - /NeoGeometry.exe: + "/NeoGeometry.exe": - when: - os: windows store: steam @@ -360872,7 +361882,7 @@ NeoSticks: installDir: NeoSticks: {} launch: - /NeoSticks.exe: + "/NeoSticks.exe": - when: - os: windows store: steam @@ -360882,8 +361892,8 @@ NeoTokyo: installDir: NEOTOKYO: {} launch: - /hl2.exe: - - arguments: '-game NeotokyoSource -steam' + "/hl2.exe": + - arguments: "-game NeotokyoSource -steam" when: - os: windows store: steam @@ -360891,12 +361901,12 @@ NeoTokyo: id: 244630 Neocolonialism: files: - /Config/settings.ini: + "/Config/settings.ini": tags: - config when: - os: windows - /Save: + "/Save": tags: - save when: @@ -360904,15 +361914,15 @@ Neocolonialism: installDir: Neocolonialism: {} launch: - /Neocolonialism: + "/Neocolonialism": - when: - os: linux store: steam - /Neocolonialism.app: + "/Neocolonialism.app": - when: - os: mac store: steam - /Neocolonialism.exe: + "/Neocolonialism.exe": - when: - os: windows store: steam @@ -360922,7 +361932,7 @@ Neofeud: installDir: Neofeud: {} launch: - /Neofeud.exe: + "/Neofeud.exe": - when: - os: windows store: steam @@ -360935,7 +361945,7 @@ Neon: id: 783090 Neon Abyss: files: - /SavesDir: + "/SavesDir": tags: - save when: @@ -360945,7 +361955,7 @@ Neon Abyss: installDir: Neon Abyss: {} launch: - /NeonAbyss.exe: + "/NeonAbyss.exe": - when: - bit: 64 os: windows @@ -360956,15 +361966,15 @@ Neon Aileron: installDir: Neon Aileron: {} launch: - /Neon Aileron.exe: + "/Neon Aileron.exe": - when: - os: windows store: steam - /NeonAileron.app/Contents/MacOS/NeonAileron: + "/NeonAileron.app/Contents/MacOS/NeonAileron": - when: - os: mac store: steam - /NeonAileron.x86_64: + "/NeonAileron.x86_64": - when: - os: linux store: steam @@ -360975,7 +361985,7 @@ Neon Arena: id: 556010 Neon Beats: files: - /AppData/LocalLow/OKYO Games/Neon Beats/saveFile.json: + "/AppData/LocalLow/OKYO Games/Neon Beats/saveFile.json": tags: - save when: @@ -360983,11 +361993,11 @@ Neon Beats: installDir: Neon Beats: {} launch: - /Neon Beats.app: + "/Neon Beats.app": - when: - os: mac store: steam - /Neon Beats.exe: + "/Neon Beats.exe": - when: - os: windows store: steam @@ -361001,7 +362011,7 @@ Neon Blast: installDir: Neon Blast: {} launch: - /neon blast.exe: + "/neon blast.exe": - when: - os: windows store: steam @@ -361011,7 +362021,7 @@ Neon Blight: installDir: Neon Blight: {} launch: - /Neon Blight.exe: + "/Neon Blight.exe": - when: - os: windows store: steam @@ -361024,7 +362034,7 @@ Neon Boost: installDir: Neon Boost: {} launch: - /Neon Boost.exe: + "/Neon Boost.exe": - when: - bit: 64 os: windows @@ -361038,7 +362048,7 @@ Neon Cat Tickler: installDir: Neon Cat Tickler: {} launch: - /Neon Cat Tickler.exe: + "/Neon Cat Tickler.exe": - when: - os: windows store: steam @@ -361046,12 +362056,12 @@ Neon Cat Tickler: id: 885220 Neon Chrome: files: - /10tons/Neon_Chrome/profiles: + "/10tons/Neon_Chrome/profiles": tags: - save when: - os: windows - /10tons/Neon_Chrome/profiles: + "/10tons/Neon_Chrome/profiles": tags: - save when: @@ -361068,15 +362078,15 @@ Neon Chrome: installDir: Neon Chrome: {} launch: - /NeonChrome: + "/NeonChrome": - when: - os: linux store: steam - /NeonChrome.app: + "/NeonChrome.app": - when: - os: mac store: steam - /NeonChrome.exe: + "/NeonChrome.exe": - when: - os: windows store: steam @@ -361086,38 +362096,38 @@ Neon City Riders: installDir: Neon City Riders: {} launch: - /neon_city_riders.exe: + "/neon_city_riders.exe": - when: - os: windows store: steam steam: id: 1102650 -'Neon Defense 1: Pink Power': +"Neon Defense 1: Pink Power": installDir: Neon Defense 1 Pink Power: {} launch: - /Neon Defense.exe: + "/Neon Defense.exe": - when: - os: windows store: steam steam: id: 734840 -'Neon District: Season One': +"Neon District: Season One": steam: id: 1171610 Neon Drive: files: - /AppData/LocalLow/Fraoula/Neon Drive/NeonDrive.sav: + "/AppData/LocalLow/Fraoula/Neon Drive/NeonDrive.sav": tags: - save when: - os: windows - /Library/Application Support/unity.Fraoula.Neon Drive: + "/Library/Application Support/unity.Fraoula.Neon Drive": tags: - save when: - os: mac - /unity3d/Fraoula/Neon Drive/prefs: + "/unity3d/Fraoula/Neon Drive/prefs": tags: - save when: @@ -361125,20 +362135,20 @@ Neon Drive: installDir: Neon Drive: {} launch: - /Neon Drive.app/Contents/MacOS/Neon Drive: + "/Neon Drive.app/Contents/MacOS/Neon Drive": - when: - os: mac store: steam - /Neon Drive.exe: + "/Neon Drive.exe": - when: - os: windows store: steam - /Neon Drive.x86: + "/Neon Drive.x86": - when: - bit: 32 os: linux store: steam - /Neon Drive.x86_64: + "/Neon Drive.x86_64": - when: - bit: 64 os: linux @@ -361158,21 +362168,24 @@ Neon Force Pushers: installDir: neon_force_pushers: {} launch: - /neon force pushers.app: + "/neon force pushers.app": - when: - os: mac store: steam - /neon_force_pushers.exe: + "/neon_force_pushers.exe": - when: - bit: 32 os: windows store: steam - /neon_force_pushers.x86: + - bit: 64 + os: windows + store: steam + "/neon_force_pushers.x86": - when: - bit: 32 os: linux store: steam - /neon_force_pushers.x86_64: + "/neon_force_pushers.x86_64": - when: - bit: 64 os: linux @@ -361183,32 +362196,32 @@ Neon Galaxy: installDir: Retro Neon Hyper Galaxy Unlimited: {} launch: - /NEONGALAXY.exe: + "/NEONGALAXY.exe": - when: - os: windows store: steam steam: id: 651970 -'Neon Genesis Evangelion: Girlfriend of Steel': +"Neon Genesis Evangelion: Girlfriend of Steel": files: - /exec/EVANGELIONforWIN95.ini: + "/exec/EVANGELIONforWIN95.ini": tags: - config when: - os: windows - /exec/Past0~3.txt: + "/exec/Past0~3.txt": tags: - save when: - os: windows -'Neon Genesis Evangelion: Girlfriend of Steel Special Edition': +"Neon Genesis Evangelion: Girlfriend of Steel Special Edition": files: - /exec/ktxp01.ini: + "/exec/ktxp01.ini": tags: - config when: - os: windows - /exec/zzzsj201~99.txt: + "/exec/zzzsj201~99.txt": tags: - save when: @@ -361222,7 +362235,7 @@ Neon Hardcorps: installDir: Neon Hardcorps: {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: @@ -361231,7 +362244,7 @@ Neon Infinity: installDir: Neon Infinity: {} launch: - /Neon Infinity.exe: + "/Neon Infinity.exe": - when: - os: windows store: steam @@ -361241,7 +362254,7 @@ Neon Junctions: installDir: Neon Junctions: {} launch: - /NeonJunctions.exe: + "/NeonJunctions.exe": - when: - store: steam steam: @@ -361249,15 +362262,15 @@ Neon Junctions: Neon Kicks: steam: id: 1066530 -'Neon Knight: Vengeance From the Grave': +"Neon Knight: Vengeance From the Grave": installDir: Neon Knight Vengeance From The Grave: {} launch: - /NK Launcher2.exe: + "/NK Launcher2.exe": - when: - os: windows store: steam - /START.exe: + "/START.exe": - when: - os: windows store: steam @@ -361270,11 +362283,11 @@ Neon Noodles: installDir: Neon Noodles: {} launch: - /Neon Noodles.exe: + "/Neon Noodles.exe": - when: - os: windows store: steam - /neonnoodles.x86_64: + "/neonnoodles.x86_64": - when: - os: linux store: steam @@ -361287,17 +362300,17 @@ Neon Prism: installDir: Neon Prism: {} launch: - /NeonPrism.app: + "/NeonPrism.app": - when: - os: mac store: steam - /NeonPrism.exe: + "/NeonPrism.exe": - when: - os: windows store: steam steam: id: 556280 -'Neon Seoul: Outrun': +"Neon Seoul: Outrun": installDir: Neon Seoul Outrun: {} steam: @@ -361306,7 +362319,7 @@ Neon Shadow: installDir: Neon Shadow: {} launch: - /Neon Shadow.exe: + "/Neon Shadow.exe": - when: - os: windows store: steam @@ -361316,7 +362329,7 @@ Neon Slashers: installDir: Neon Slashers: {} launch: - /MireSlashers.CrossPlatform.exe: + "/MireSlashers.CrossPlatform.exe": - when: - os: windows store: steam @@ -361324,7 +362337,7 @@ Neon Slashers: id: 1022380 Neon Space: files: - /NeonSpace//NSData.bin: + "/NeonSpace//NSData.bin": tags: - save when: @@ -361332,22 +362345,22 @@ Neon Space: installDir: Neon Space: {} launch: - /NeonSpace.app: + "/NeonSpace.app": - when: - os: mac store: steam - /NeonSpace.exe: + "/NeonSpace.exe": - when: - os: windows store: steam - /NeonSpace.x86: - - arguments: '-force-opengl' + "/NeonSpace.x86": + - arguments: "-force-opengl" when: - bit: 32 os: linux store: steam - /NeonSpace.x86_64: - - arguments: '-force-opengl' + "/NeonSpace.x86_64": + - arguments: "-force-opengl" when: - bit: 64 os: linux @@ -361356,7 +362369,7 @@ Neon Space: id: 468490 Neon Space 2: files: - /AppData/LocalLow/DefaultCompany/NeonSpace2: + "/AppData/LocalLow/DefaultCompany/NeonSpace2": tags: - save when: @@ -361364,22 +362377,22 @@ Neon Space 2: installDir: Neon Space 2: {} launch: - /NeonSpace2.app: + "/NeonSpace2.app": - when: - os: mac store: steam - /NeonSpace2.exe: + "/NeonSpace2.exe": - when: - os: windows store: steam - /NeonSpace2.x86: - - arguments: '-force-opengl' + "/NeonSpace2.x86": + - arguments: "-force-opengl" when: - bit: 32 os: linux store: steam - /NeonSpace2.x86_64: - - arguments: '-force-opengl' + "/NeonSpace2.x86_64": + - arguments: "-force-opengl" when: - bit: 64 os: linux @@ -361397,7 +362410,7 @@ Neon Spaceboard: installDir: Neon Spaceboard: {} launch: - /NeonSpaceboard.app: + "/NeonSpaceboard.app": - when: - os: mac store: steam @@ -361405,18 +362418,18 @@ Neon Spaceboard: id: 796930 Neon Struct: files: - /Library/Application Support/NEON STRUCT: + "/Library/Application Support/NEON STRUCT": tags: - config - save when: - os: mac - /NEON STRUCT: + "/NEON STRUCT": tags: - config when: - os: windows - /NEON STRUCT/Saves: + "/NEON STRUCT/Saves": tags: - save when: @@ -361424,15 +362437,15 @@ Neon Struct: installDir: NEON STRUCT: {} launch: - /Neon: + "/Neon": - when: - os: linux store: steam - /Neon.app: + "/Neon.app": - when: - os: mac store: steam - /Neon.exe: + "/Neon.exe": - when: - os: windows store: steam @@ -361442,14 +362455,14 @@ Neon Sun: installDir: Neon Sun: {} launch: - /Neon Sun.exe: + "/Neon Sun.exe": - when: - store: steam steam: id: 797090 Neon Sundown: files: - /AppData/LocalLow/Neon Sundown: + "/AppData/LocalLow/Neon Sundown": tags: - save when: @@ -361457,11 +362470,11 @@ Neon Sundown: installDir: Neon Sundown: {} launch: - /Neon Sundown.app: + "/Neon Sundown.app": - when: - os: mac store: steam - /Neon Sundown.exe: + "/Neon Sundown.exe": - when: - os: windows store: steam @@ -361474,7 +362487,7 @@ Neon Tail: installDir: Neon Tail: {} launch: - /NeonTail.exe: + "/NeonTail.exe": - when: - os: windows store: steam @@ -361484,11 +362497,11 @@ Neon Tide: installDir: Neon_Tide: {} launch: - /Game.app/Contents/MacOS/nwjs: + "/Game.app/Contents/MacOS/nwjs": - when: - os: mac store: steam - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -361498,7 +362511,7 @@ Neon Tower Blast: installDir: Neon tower blast: {} launch: - /Neon tower blast.exe: + "/Neon tower blast.exe": - when: - os: windows store: steam @@ -361508,7 +362521,7 @@ Neon Universe: installDir: Neon Universe: {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: @@ -361518,11 +362531,11 @@ Neon VR: Neon: {} steam: id: 723050 -'Neon Valley: Revenge': +"Neon Valley: Revenge": installDir: Neon Valley Revenge: {} launch: - /NV_4.0.exe: + "/NV_4.0.exe": - when: - bit: 64 os: windows @@ -361533,7 +362546,7 @@ Neon Void Runner: installDir: Neon Void Runner: {} launch: - /NeonVoidRunner.exe: + "/NeonVoidRunner.exe": - when: - os: windows store: steam @@ -361543,14 +362556,14 @@ Neon Warp: installDir: Neon Warp: {} launch: - /Neon Warp.exe: + "/Neon Warp.exe": - when: - store: steam steam: id: 485920 Neon White: files: - '/AppData/LocalLow/Little Flag Software, LLC/Neon White/': + "/AppData/LocalLow/Little Flag Software, LLC/Neon White/": tags: - config - save @@ -361559,7 +362572,7 @@ Neon White: installDir: Neon White: {} launch: - /Neon White.exe: + "/Neon White.exe": - when: - store: steam steam: @@ -361568,7 +362581,7 @@ Neon the Ninja: installDir: Neon the Ninja: {} launch: - /NeontheNinja.exe: + "/NeontheNinja.exe": - when: - os: windows store: steam @@ -361578,7 +362591,7 @@ Neon Сoliseum: installDir: Neon Coliseum: {} launch: - /Neon Coliseum.exe: + "/Neon Coliseum.exe": - when: - os: windows store: steam @@ -361591,7 +362604,7 @@ Neon8: id: 595630 NeonBall: files: - /Save: + "/Save": tags: - save when: @@ -361599,12 +362612,12 @@ NeonBall: installDir: NeonBall: {} launch: - /Neonball.exe: + "/Neonball.exe": - when: - bit: 64 os: windows store: steam - /Neonball32.exe: + "/Neonball32.exe": - when: - bit: 32 os: windows @@ -361619,15 +362632,15 @@ NeonCode: installDir: NeonCode: {} launch: - /NeonCode.app/Contents/MacOS/NeonCode: + "/NeonCode.app/Contents/MacOS/NeonCode": - when: - os: mac store: steam - /NeonCode.exe: + "/NeonCode.exe": - when: - os: windows store: steam - /NeonCode.x86_64: + "/NeonCode.x86_64": - when: - os: linux store: steam @@ -361638,12 +362651,12 @@ NeonGalaxy Wars: id: 693720 NeonXSZ: files: - /AppData/LocalLow/IntravenousSoftware/NeonXS: + "/AppData/LocalLow/IntravenousSoftware/NeonXS": tags: - save when: - os: windows - /AppData/LocalLow/IntravenousSoftware/NeonXSZ/GameConfig.ini: + "/AppData/LocalLow/IntravenousSoftware/NeonXSZ/GameConfig.ini": tags: - config when: @@ -361651,20 +362664,20 @@ NeonXSZ: installDir: NeonXSZ: {} launch: - /NeonXSZ.app: + "/NeonXSZ.app": - when: - os: mac store: steam - /NeonXSZ.exe: + "/NeonXSZ.exe": - when: - os: windows store: steam - /NeonXSZ.x86: + "/NeonXSZ.x86": - when: - bit: 32 os: linux store: steam - /NeonXSZ.x86_64: + "/NeonXSZ.x86_64": - when: - bit: 64 os: linux @@ -361676,7 +362689,7 @@ Neoncers: id: 794810 Neoncube: files: - /Neoncube: + "/Neoncube": tags: - save when: @@ -361684,7 +362697,7 @@ Neoncube: installDir: Neoncube: {} launch: - /Neoncube.exe: + "/Neoncube.exe": - when: - os: windows store: steam @@ -361697,7 +362710,7 @@ Neonis: installDir: Neonis: {} launch: - /Neonis.exe: + "/Neonis.exe": - when: - os: windows store: steam @@ -361710,18 +362723,18 @@ Neonwall: installDir: Neonwall: {} launch: - /NeonwallSteam/Neonwall.exe: + "/NeonwallSteam/Neonwall.exe": - when: - bit: 64 os: windows store: steam steam: id: 787650 -'Neopets: Puzzle Adventure': +"Neopets: Puzzle Adventure": installDir: Neopets Puzzle Adventure: {} launch: - /Neopets.exe: + "/Neopets.exe": - when: - store: steam steam: @@ -361733,12 +362746,12 @@ Neotrie VR: id: 878620 Neoverse: files: - /NEOVERSE_Data/StreamingAssets/sql.s3db: + "/NEOVERSE_Data/StreamingAssets/sql.s3db": tags: - save when: - os: windows - /userdata//994220/remote/neoverse_data: + "/userdata//994220/remote/neoverse_data": tags: - save when: @@ -361746,11 +362759,11 @@ Neoverse: installDir: Neoverse: {} launch: - /NEOVERSE.app/Contents/MacOS/NEOVERSE: + "/NEOVERSE.app/Contents/MacOS/NEOVERSE": - when: - os: mac store: steam - /NEOVERSE.exe: + "/NEOVERSE.exe": - when: - os: windows store: steam @@ -361775,18 +362788,18 @@ Nepenthe: installDir: Nepenthe: {} launch: - /Nepenthe.app/Contents/MacOS/nwjs: - - arguments: '--in-process-gpu' + "/Nepenthe.app/Contents/MacOS/nwjs": + - arguments: "--in-process-gpu" when: - os: mac store: steam - /Nepenthe.exe: - - arguments: '--in-process-gpu' + "/Nepenthe.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam - /Nepenthe/Game: - - arguments: '--in-process-gpu' + "/Nepenthe/Game": + - arguments: "--in-process-gpu" when: - os: linux store: steam @@ -361794,7 +362807,7 @@ Nepenthe: id: 789570 Nephise: files: - /Nephise/Saved/SaveGames/Settings.sav: + "/Nephise/Saved/SaveGames/Settings.sav": tags: - config when: @@ -361802,7 +362815,7 @@ Nephise: installDir: Nephise: {} launch: - /Nephise.exe: + "/Nephise.exe": - when: - bit: 64 os: windows @@ -361811,7 +362824,7 @@ Nephise: id: 606860 Nephise Begins: files: - /NephiseBegins/Saved/SaveGames/Settings.sav: + "/NephiseBegins/Saved/SaveGames/Settings.sav": tags: - config when: @@ -361819,21 +362832,21 @@ Nephise Begins: installDir: Nephise Begins: {} launch: - /NephiseBegins.exe: + "/NephiseBegins.exe": - when: - bit: 64 os: windows store: steam steam: id: 628950 -'Nephise: Ascension': +"Nephise: Ascension": files: - /NephiseAscension/Saved/Config/WindowsNoEditor: + "/NephiseAscension/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /NephiseAscension/Saved/SaveGames: + "/NephiseAscension/Saved/SaveGames": tags: - save when: @@ -361841,7 +362854,7 @@ Nephise Begins: installDir: Nephise Ascension: {} launch: - /NephiseAscension.exe: + "/NephiseAscension.exe": - when: - bit: 64 os: windows @@ -361852,28 +362865,28 @@ Neptune Flux: installDir: Neptune Flux: {} launch: - /NeptuneFlux.app: + "/NeptuneFlux.app": - when: - bit: 64 os: mac store: steam - /NeptuneFlux.exe: + "/NeptuneFlux.exe": - when: - bit: 64 os: windows store: steam steam: id: 378700 -'Neptune: Arena FPS': +"Neptune: Arena FPS": installDir: Neptune Arena FPS: {} launch: - /Neptune/Binaries/Win32/Neptune-Win32-Shipping.exe: + "/Neptune/Binaries/Win32/Neptune-Win32-Shipping.exe": - when: - bit: 32 os: windows store: steam - /Neptune/Binaries/Win64/Neptune-Win64-Shipping.exe: + "/Neptune/Binaries/Win64/Neptune-Win64-Shipping.exe": - when: - bit: 64 os: windows @@ -361885,12 +362898,12 @@ NeptuneGL: id: 782640 Neptunia Shooter: files: - /userdata//1037590/remote/NeptuniaShooter.ini: + "/userdata//1037590/remote/NeptuniaShooter.ini": tags: - config when: - store: steam - /userdata//1037590/remote/hiscore.dat: + "/userdata//1037590/remote/hiscore.dat": tags: - save when: @@ -361898,7 +362911,7 @@ Neptunia Shooter: installDir: Neptunia Shooter: {} launch: - /NeptuniaShooter.exe: + "/NeptuniaShooter.exe": - when: - os: windows store: steam @@ -361906,17 +362919,17 @@ Neptunia Shooter: id: 1037590 Neptunia Virtual Stars: files: - /resource/bin/NeptuniaVirtualStars.ini: + "/resource/bin/NeptuniaVirtualStars.ini": tags: - config when: - os: windows - '/My Games/Idea Factory International, Inc/Neptunia Virtual Stars': + "/My Games/Idea Factory International, Inc/Neptunia Virtual Stars": tags: - save when: - os: windows - '/My Games/Idea Factory International, Inc/Neptunia Virtual Stars/SYSTEMSAVE_GAME.BIN': + "/My Games/Idea Factory International, Inc/Neptunia Virtual Stars/SYSTEMSAVE_GAME.BIN": tags: - config when: @@ -361926,21 +362939,21 @@ Neptunia Virtual Stars: installDir: Neptunia Virtual Stars: {} launch: - /resource/bin/NeptuniaVirtualStars.exe: + "/resource/bin/NeptuniaVirtualStars.exe": - when: - bit: 64 os: windows store: steam steam: id: 1399840 -'Neptunia x Senran Kagura: Ninja Wars': +"Neptunia x Senran Kagura: Ninja Wars": files: - /Neptunia x SENRAN KAGURA Ninja Wars/Savedata//*.dat: + "/Neptunia x SENRAN KAGURA Ninja Wars/Savedata//*.dat": tags: - save when: - os: windows - /Neptunia x SENRAN KAGURA Ninja Wars/Savedata//sys_savedata.dat: + "/Neptunia x SENRAN KAGURA Ninja Wars/Savedata//sys_savedata.dat": tags: - config when: @@ -361950,29 +362963,25 @@ Neptunia Virtual Stars: installDir: Neptunia x SENRAN KAGURA Ninja Wars: {} launch: - /GameData/Neptunia x SENRAN KAGURA Ninja Wars.exe: + "/GameData/Neptunia x SENRAN KAGURA Ninja Wars.exe": - when: - os: windows store: steam - workingDir: /GameData + workingDir: "/GameData" steam: id: 1836860 -'Neptunia: Sisters VS Sisters': +"Neptunia: Sisters VS Sisters": files: - /AppData/LocalLow/Compile Heart/Neptunia Sisters VS Sisters: + "/GOG.com/Galaxy/Applications/55275391706332067/Storage/Shared/Files": tags: - save when: - - store: steam - /GOG.com/Galaxy/Applications/55275391706332067/Storage/Shared/Files: - tags: - - save - when: - - store: gog + - os: windows + store: gog installDir: Neptunia Sisters VS Sisters: {} launch: - /neptunia-sisters-vs-sisters.exe: + "/neptunia-sisters-vs-sisters.exe": - when: - store: steam steam: @@ -361981,7 +362990,7 @@ Neptunian Donut: installDir: Neptunian Donut: {} launch: - /NeptunianDonut.exe: + "/NeptunianDonut.exe": - when: - os: windows store: steam @@ -361991,7 +363000,7 @@ Nerepis: installDir: Nerepis: {} launch: - /Nerepis.exe: + "/Nerepis.exe": - when: - os: windows store: steam @@ -361999,12 +363008,12 @@ Nerepis: id: 620180 Nerf ArenaBlast: files: - /Nerf.ini: + "/Nerf.ini": tags: - config when: - os: windows - /User.ini: + "/User.ini": tags: - config - save @@ -362014,19 +363023,19 @@ Nerf Legends: installDir: Nerf Legends: {} launch: - /ProjectDart/Binaries/Win64/ProjectDart.exe: + "/ProjectDart/Binaries/Win64/ProjectDart.exe": - when: - store: steam steam: id: 1279910 Nerts! Online: files: - /My Games/NERTS! Online//config.cfg: + "/My Games/NERTS! Online//config.cfg": tags: - config when: - os: windows - /My Games/NERTS! Online//save.dat: + "/My Games/NERTS! Online//save.dat": tags: - save when: @@ -362034,15 +363043,15 @@ Nerts! Online: installDir: Nerts Online: {} launch: - /NERTS! Online.app/Contents/MacOS/NertsOnline: + "/NERTS! Online.app/Contents/MacOS/NertsOnline": - when: - os: mac store: steam - /NERTS! Online.exe: + "/NERTS! Online.exe": - when: - os: windows store: steam - /NertsOnline: + "/NertsOnline": - when: - os: linux store: steam @@ -362052,7 +363061,7 @@ Nerved: installDir: Nerved: {} launch: - /WindowsNoEditor/Nerved.exe: + "/WindowsNoEditor/Nerved.exe": - when: - os: windows store: steam @@ -362065,23 +363074,23 @@ NetHack: - save when: - os: linux - /.nethackrc: + "/.nethackrc": tags: - config when: - os: mac - os: linux - /NetHack/.nethackrc: + "/NetHack/.nethackrc": tags: - config when: - os: windows - /NetHack/3.6: + "/NetHack/3.6": tags: - save when: - os: windows - /NetHack/3.6: + "/NetHack/3.6": tags: - config when: @@ -362090,20 +363099,20 @@ NetHack: HKEY_CURRENT_USER/Software/NetHack/NetHack 3.6.6/Settings: tags: - config -'NetHack: Legacy': +"NetHack: Legacy": installDir: NetHack Legacy: {} launch: - /NetHack Legacy: + "/NetHack Legacy": - when: - bit: 64 os: linux store: steam - /NetHack Legacy.app/Contents/MacOS/NetHack Legacy: + "/NetHack Legacy.app/Contents/MacOS/NetHack Legacy": - when: - os: mac store: steam - /NetHack Legacy.exe: + "/NetHack Legacy.exe": - when: - bit: 64 os: windows @@ -362117,14 +363126,14 @@ NetStars - VR Goalie Trainer: id: 800670 NetStorm - Islands At War: files: - /d/options.cfg: + "/d/options.cfg": tags: - save when: - os: windows Nether: files: - /My Games/Nether/NetherGame/Config: + "/My Games/Nether/NetherGame/Config": tags: - config when: @@ -362132,27 +363141,27 @@ Nether: installDir: Nether: {} launch: - /Game/Binaries/Win64/Nether.exe: + "/Game/Binaries/Win64/Nether.exe": - when: - store: steam - workingDir: /Game + workingDir: "/Game" steam: id: 247730 Nether Gallery: installDir: NetherGallery: {} launch: - /NetherGallery.app: + "/NetherGallery.app": - when: - os: mac store: steam - /NetherGallery.exe: + "/NetherGallery.exe": - when: - os: windows store: steam steam: id: 1039830 -'Nether: The Untold Chapter': +"Nether: The Untold Chapter": installDir: Nether The Untold Chapter: {} steam: @@ -362160,31 +363169,31 @@ Nether Gallery: NetherWorld: steam: id: 672420 -'Nethergate: Resurrection': +"Nethergate: Resurrection": gog: id: 1243419675 installDir: nethergate_resurrection: {} launch: - /Nethergate.exe: - - arguments: '-console' + "/Nethergate.exe": + - arguments: "-console" when: - store: steam steam: id: 218020 -'Netherworld: Beyond Time I Stand': +"Netherworld: Beyond Time I Stand": files: - /System/AutoSave: + "/System/AutoSave": tags: - save when: - os: windows - /System/UW.ini: + "/System/UW.ini": tags: - config when: - os: windows - /System/User-: + "/System/User-": tags: - save when: @@ -362193,7 +363202,7 @@ Netsoccer: installDir: Netsoccer2: {} launch: - /Netsoccer2.exe: + "/Netsoccer2.exe": - when: - os: windows store: steam @@ -362206,14 +363215,14 @@ Network E.L.E.: id: 1217630 Network Q RAC Rally Championship: files: - 'C:/RALLYC/VAR': + "C:/RALLYC/VAR": tags: - config - save when: - os: dos - os: windows - 'C:/Windows/Rallyc.ini': + "C:/Windows/Rallyc.ini": tags: - config when: @@ -362222,7 +363231,7 @@ Networm: installDir: Networm: {} launch: - /Netw0rm.exe: + "/Netw0rm.exe": - when: - os: windows store: steam @@ -362230,12 +363239,12 @@ Networm: id: 408170 Neuro: files: - /profile/default/Neuro.cfg: + "/profile/default/Neuro.cfg": tags: - config when: - os: windows - /save: + "/save": tags: - save when: @@ -362245,36 +363254,36 @@ Neuro (2018): id: 845080 Neuro Hunter: files: - /data/console.ini: + "/data/console.ini": tags: - config when: - os: windows - /data/mappings.ini: + "/data/mappings.ini": tags: - config when: - os: windows - /saves/player: + "/saves/player": tags: - save when: - os: windows NeuroVoider: files: - /.neurovoider: + "/.neurovoider": tags: - config - save when: - os: linux - /AppData/LocalLow/Flying Oak Games/NeuroVoider: + "/AppData/LocalLow/Flying Oak Games/NeuroVoider": tags: - config - save when: - os: windows - /Library/Application Support/Flying Oak Games/NeuroVoider: + "/Library/Application Support/Flying Oak Games/NeuroVoider": tags: - config - save @@ -362285,15 +363294,15 @@ NeuroVoider: installDir: NeuroVoider: {} launch: - /NeuroVoider: + "/NeuroVoider": - when: - os: linux store: steam - /NeuroVoider.app: + "/NeuroVoider.app": - when: - os: mac store: steam - /NeuroVoider.exe: + "/NeuroVoider.exe": - when: - os: windows store: steam @@ -362305,15 +363314,15 @@ Neurodeck: installDir: Neurodeck: {} launch: - /Neurodeck.app/Contents/MacOS/Neurodeck: + "/Neurodeck.app/Contents/MacOS/Neurodeck": - when: - os: mac store: steam - /Neurodeck.exe: + "/Neurodeck.exe": - when: - os: windows store: steam - /Neurodeck.x86_64: + "/Neurodeck.x86_64": - when: - os: linux store: steam @@ -362328,7 +363337,7 @@ Nevaeh: installDir: Nevaeh: {} launch: - /Nevaeh.exe: + "/Nevaeh.exe": - when: - os: windows store: steam @@ -362338,16 +363347,16 @@ Neven: installDir: Neven: {} launch: - /Neven.app/Contents/MacOS/Neven: + "/Neven.app/Contents/MacOS/Neven": - when: - os: mac store: steam - /Neven.exe: + "/Neven.exe": - when: - bit: 64 os: windows store: steam - /Neven.x86_64: + "/Neven.x86_64": - when: - bit: 64 os: linux @@ -362358,7 +363367,7 @@ Never Again: installDir: Never Again: {} launch: - /Never Again.exe: + "/Never Again.exe": - when: - bit: 64 os: windows @@ -362367,22 +363376,22 @@ Never Again: id: 430070 Never Alone: files: - /.config/unity3d/E-Line Media/Never Alone/prefs: + "/.config/unity3d/E-Line Media/Never Alone/prefs": tags: - config when: - os: linux - /.config/unity3d/E_Line Media/Never Alone/scprofile.dat: + "/.config/unity3d/E_Line Media/Never Alone/scprofile.dat": tags: - save when: - os: linux - /AppData/LocalLow/E_Line Media/Never Alone: + "/AppData/LocalLow/E_Line Media/Never Alone": tags: - save when: - os: windows - /userdata//295790: + "/userdata//295790": tags: - save when: @@ -362391,20 +363400,20 @@ Never Alone: id: 1446112277 id: steamExtra: - - 355740 - 351740 + - 355740 installDir: NeverAlone: {} launch: - /Never_Alone.app: + "/Never_Alone.app": - when: - os: mac store: steam - /Never_Alone.exe: + "/Never_Alone.exe": - when: - os: windows store: steam - /Never_Alone.x64: + "/Never_Alone.x64": - when: - bit: 64 os: linux @@ -362419,7 +363428,7 @@ Never Breakup: installDir: Never Breakup: {} launch: - /Never-Breakup.exe: + "/Never-Breakup.exe": - when: - os: windows store: steam @@ -362429,20 +363438,20 @@ Never Ending Night: installDir: Never Ending Night: {} launch: - /NEN Linux.x86_64: + "/NEN Linux.x86_64": - when: - os: linux store: steam - /NEN Windows 64 bit.exe: + "/NEN Windows 64 bit.exe": - when: - bit: 64 os: windows store: steam - /Never Ending Night.app: + "/Never Ending Night.app": - when: - os: mac store: steam - /Never Ending Night.exe: + "/Never Ending Night.exe": - when: - bit: 32 os: windows @@ -362453,15 +363462,15 @@ Never Forget Me: installDir: Never Forget Me: {} launch: - /NeverForgetMe.app: + "/NeverForgetMe.app": - when: - os: mac store: steam - /NeverForgetMe.exe: + "/NeverForgetMe.exe": - when: - os: windows store: steam - /NeverForgetMe.sh: + "/NeverForgetMe.sh": - when: - os: linux store: steam @@ -362473,11 +363482,11 @@ Never Give Up: installDir: Never Give Up: {} launch: - /NeverGiveUp.app: + "/NeverGiveUp.app": - when: - os: mac store: steam - /NeverGiveUp.exe: + "/NeverGiveUp.exe": - when: - os: windows store: steam @@ -362487,15 +363496,15 @@ Never Give Up!: installDir: Never give up: {} launch: - /Never_give_up.app: + "/Never_give_up.app": - when: - os: mac store: steam - /Never_give_up.exe: + "/Never_give_up.exe": - when: - os: windows store: steam - /Never_give_up.sh: + "/Never_give_up.sh": - when: - os: linux store: steam @@ -362505,7 +363514,7 @@ Never Let Me Awake: installDir: Never_Let_Me_Awake: {} launch: - /Never_Let_Me_Awake/Koya_HorrorGameProject.exe: + "/Never_Let_Me_Awake/Koya_HorrorGameProject.exe": - when: - bit: 64 os: windows @@ -362516,7 +363525,7 @@ Never Not Shooting: installDir: Never Not Shooting: {} launch: - /Never Not Shooting Steam.exe: + "/Never Not Shooting Steam.exe": - when: - os: windows store: steam @@ -362526,35 +363535,35 @@ Never Split the Party: installDir: Never Split the Party: {} launch: - /Never Split the Party.app: + "/Never Split the Party.app": - when: - os: mac store: steam - /Never Split the Party.exe: + "/Never Split the Party.exe": - when: - os: windows store: steam - /Never Split the Party.x86: + "/Never Split the Party.x86": - when: - os: linux store: steam steam: id: 711810 -Never Stop Sneakin': +"Never Stop Sneakin'": files: - /AppData/LocalLow/Humble Hearts LLC/Never Stop Sneakin': + "/AppData/LocalLow/Humble Hearts LLC/Never Stop Sneakin'": tags: - save when: - os: windows installDir: - Never Stop Sneakin': {} + "Never Stop Sneakin'": {} launch: - /nss_mac.app: + "/nss_mac.app": - when: - os: mac store: steam - /nss_win.exe: + "/nss_win.exe": - when: - os: windows store: steam @@ -362569,21 +363578,21 @@ NeverEnd: installDir: NeverEnd: {} launch: - /NeverEnd.exe: + "/NeverEnd.exe": - when: - os: windows store: steam - /NeverEnd_Linux.x86: + "/NeverEnd_Linux.x86": - when: - bit: 32 os: linux store: steam - /NeverEnd_Linux.x86_64: + "/NeverEnd_Linux.x86_64": - when: - bit: 64 os: linux store: steam - /NeverEnd_Mac.app: + "/NeverEnd_Mac.app": - when: - os: mac store: steam @@ -362593,7 +363602,7 @@ NeverMine: installDir: NeverMine: {} launch: - /NeverMine.exe: + "/NeverMine.exe": - when: - os: windows store: steam @@ -362601,18 +363610,18 @@ NeverMine: id: 493920 Neverball: files: - /.neverball: + "/.neverball": tags: - config - save when: - os: linux - /My Games/Neverball: + "/My Games/Neverball": tags: - config when: - os: windows - /My Games/Neverball/neverballrc: + "/My Games/Neverball/neverballrc": tags: - save when: @@ -362622,17 +363631,17 @@ Neverdark: id: 1036430 Neverending Nightmares: files: - /Saved Games/Neverending Nightmares/savegame.sav: + "/Saved Games/Neverending Nightmares/savegame.sav": tags: - save when: - os: windows - /userdata//253330/remote/savegame: + "/userdata//253330/remote/savegame": tags: - save when: - store: steam - /Infinitap Games/Neverending Nightmares/settings.config: + "/Infinitap Games/Neverending Nightmares/settings.config": tags: - config when: @@ -362642,15 +363651,15 @@ Neverending Nightmares: installDir: Neverending Nightmares: {} launch: - /Neverending Nightmares.app: + "/Neverending Nightmares.app": - when: - os: mac store: steam - /nightmare: + "/nightmare": - when: - os: linux store: steam - /nightmare.exe: + "/nightmare.exe": - when: - os: windows store: steam @@ -362658,7 +363667,7 @@ Neverending Nightmares: id: 253330 Neverinth: files: - /AppData/LocalLow/CreAct/Neverinth/: + "/AppData/LocalLow/CreAct/Neverinth/": tags: - save when: @@ -362666,7 +363675,7 @@ Neverinth: installDir: Neverinth: {} launch: - /Neverinth.exe: + "/Neverinth.exe": - when: - os: windows store: steam @@ -362676,7 +363685,7 @@ Neverland Treasure: installDir: Neverland Treasure: {} launch: - /neverland_treasure.exe: + "/neverland_treasure.exe": - when: - os: windows store: steam @@ -362686,24 +363695,24 @@ Neverliria: installDir: Neverliria: {} launch: - /Neverliria.exe: + "/Neverliria.exe": - when: - store: steam steam: id: 904890 Nevermind: files: - /userdata//342260/remote: + "/userdata//342260/remote": tags: - save when: - store: steam - /userdata//342260/remote/coreData.nvme: + "/userdata//342260/remote/coreData.nvme": tags: - config when: - store: steam - /userdata//342260/remote/options.nvme: + "/userdata//342260/remote/options.nvme": tags: - config when: @@ -362711,12 +363720,12 @@ Nevermind: installDir: Nevermind: {} launch: - /Nevermind.app: + "/Nevermind.app": - when: - os: mac store: steam - /Nevermind.exe: - - arguments: '-vrmode none' + "/Nevermind.exe": + - arguments: "-vrmode none" when: - os: windows store: steam @@ -362730,7 +363739,7 @@ Neverout: installDir: Neverout: {} launch: - /Neverout.exe: + "/Neverout.exe": - when: - os: windows store: steam @@ -362743,86 +363752,86 @@ Neverout: id: 579720 Neversong: files: - /.config/unity3d/Serenity Forge/Neversong/prefs: + "/.config/unity3d/Serenity Forge/Neversong/prefs": tags: - config when: - os: linux - /steamapps/common/Neversong/Neversong_Data/data.sav: + "/steamapps/common/Neversong/Neversong_Data/data.sav": tags: - save when: + - store: steam - os: windows store: steam - - store: steam gog: id: 1328246867 installDir: Neversong: {} launch: - /Neversong.app: + "/Neversong.app": - when: - os: mac store: steam - /Neversong.exe: + "/Neversong.exe": - when: - os: windows store: steam - /Neversong.x86: - - arguments: '-screen-fullscreen 1' + "/Neversong.x86": + - arguments: "-screen-fullscreen 1" when: - bit: 32 os: linux store: steam - /Neversong.x86_64: - - arguments: '-screen-fullscreen 1' + "/Neversong.x86_64": + - arguments: "-screen-fullscreen 1" when: - bit: 64 os: linux store: steam steam: id: 733210 -'Nevertales: Legends': +"Nevertales: Legends": installDir: - Nevertales Legends Collector's Edition: {} + "Nevertales Legends Collector's Edition": {} launch: - /Nevertales_Legends_CE.exe: + "/Nevertales_Legends_CE.exe": - when: - os: windows store: steam steam: id: 758640 -'Nevertales: Shattered Image': +"Nevertales: Shattered Image": installDir: - Nevertales Shattered Image Collector's Edition: {} + "Nevertales Shattered Image Collector's Edition": {} launch: - /Nevertales_ShatteredImage_CE.exe: + "/Nevertales_ShatteredImage_CE.exe": - when: - store: steam steam: id: 527910 -'Nevertales: Smoke and Mirrors': +"Nevertales: Smoke and Mirrors": installDir: - Nevertales Smoke and Mirrors Collector's Edition: {} + "Nevertales Smoke and Mirrors Collector's Edition": {} launch: - /Nevertales_SmokeAndMirrors_CE.exe: + "/Nevertales_SmokeAndMirrors_CE.exe": - when: - os: windows store: steam steam: id: 630240 -'Nevertales: The Beauty Within': +"Nevertales: The Beauty Within": installDir: - Nevertales The Beauty Within Collector's Edition: {} + "Nevertales The Beauty Within Collector's Edition": {} launch: - /Nevertales_TheBeautyWithin_CE.exe: + "/Nevertales_TheBeautyWithin_CE.exe": - when: - store: steam steam: id: 466010 Neverwinter: files: - /Cryptic Studios/Neverwinter/Live/localdata: + "/Cryptic Studios/Neverwinter/Live/localdata": tags: - config when: @@ -362831,15 +363840,15 @@ Neverwinter: installDir: Cryptic Studios: {} launch: - /Neverwinter.exe: - - arguments: '-affiliate \"appid=109600\" -launchedfrom steam - ' + "/Neverwinter.exe": + - arguments: "-affiliate \\\"appid=109600\\\" -launchedfrom steam - " when: - store: steam steam: id: 109600 Neverwinter Nights: files: - /saves: + "/saves": tags: - save when: @@ -362848,12 +363857,12 @@ Neverwinter Nights: id: 1207658890 Neverwinter Nights 2: files: - /Neverwinter Nights 2: + "/Neverwinter Nights 2": tags: - config when: - os: windows - /Neverwinter Nights 2/saves: + "/Neverwinter Nights 2/saves": tags: - save when: @@ -362863,34 +363872,34 @@ Neverwinter Nights 2: installDir: Neverwinter Nights 2: {} launch: - /nwn2.exe: + "/nwn2.exe": - when: - store: steam steam: id: 2760 -'Neverwinter Nights: Enhanced Edition': +"Neverwinter Nights: Enhanced Edition": files: - /.local/share/Neverwinter Nights: + "/.local/share/Neverwinter Nights": tags: - config when: - os: linux - /.local/share/Neverwinter Nights/saves: + "/.local/share/Neverwinter Nights/saves": tags: - save when: - os: linux - /Documents/Neverwinter Nights/saves: + "/Documents/Neverwinter Nights/saves": tags: - save when: - os: mac - /Neverwinter Nights/*.ini: + "/Neverwinter Nights/*.ini": tags: - config when: - os: windows - /Neverwinter Nights/saves: + "/Neverwinter Nights/saves": tags: - save when: @@ -362900,26 +363909,26 @@ Neverwinter Nights 2: id: gogExtra: - 1097893768 - - 1543524453 - - 1368135960 - - 1172160536 - - 1237168464 - - 1182523016 - - 1723086432 - - 1924878359 - 1127121287 - - 1705125855 - - 1596101289 - - 2013583144 - - 1974070286 - - 1812281398 - - 1482605946 + - 1172160536 + - 1182523016 + - 1237168464 - 1359133802 - - 1979581616 + - 1368135960 + - 1482605946 + - 1543524453 + - 1596101289 + - 1705125855 + - 1723086432 + - 1812281398 + - 1924878359 + - 1974070286 - 1975339519 + - 1979581616 + - 2013583144 steamExtra: - - 737001 - 737000 + - 737001 - 737002 - 738710 - 738711 @@ -362930,56 +363939,56 @@ Neverwinter Nights 2: installDir: Neverwinter Nights: {} launch: - /bin/linux-x86/nwmain-linux: + "/bin/linux-x86/nwmain-linux": - when: - os: linux store: steam - workingDir: /bin/linux-x86 - /bin/macos/nwmain.app/Contents/MacOS/nwmain: + workingDir: "/bin/linux-x86" + "/bin/macos/nwmain.app/Contents/MacOS/nwmain": - when: - os: mac store: steam - workingDir: /bin/macos/nwmain.app/Contents/MacOS - /bin/win32/nwmain.exe: + workingDir: "/bin/macos/nwmain.app/Contents/MacOS" + "/bin/win32/nwmain.exe": - when: - os: windows store: steam - workingDir: /bin/win32 - - arguments: '-dmc' + workingDir: "/bin/win32" + - arguments: "-dmc" when: - os: windows store: steam - workingDir: /bin/win32 + workingDir: "/bin/win32" steam: id: 704450 -'Nevrosa: Escape': +"Nevrosa: Escape": installDir: Nevrosa: {} steam: id: 563550 -'Nevrosa: Prelude': +"Nevrosa: Prelude": installDir: Nevrosa Prelude: {} steam: id: 598070 -'Nevrosa: Primal Ritual': +"Nevrosa: Primal Ritual": installDir: Nevrosa Primal Ritual: {} steam: id: 1070410 -'Nevrosa: Spider Song': +"Nevrosa: Spider Song": installDir: Nevrosa Spider Song: {} steam: id: 1087970 Nevski Titbit: files: - /config.cfg: + "/config.cfg": tags: - config when: - os: windows - /saves: + "/saves": tags: - save when: @@ -362988,7 +363997,7 @@ Nevsky Run: installDir: Secret_Girl: {} launch: - /Secret_Girl/SteamG/Binaries/Win64/SteamG-Win64-Shipping.exe: + "/Secret_Girl/SteamG/Binaries/Win64/SteamG-Win64-Shipping.exe": - when: - bit: 64 os: windows @@ -363004,7 +364013,7 @@ New Age: installDir: New Age: {} launch: - /NewAgeClient.exe: + "/NewAgeClient.exe": - when: - bit: 64 os: windows @@ -363015,17 +364024,17 @@ New Cities: installDir: NewCity: {} launch: - /newcity-linux.sh: + "/newcity-linux.sh": - when: - bit: 64 os: linux store: steam - /newcity-wine.sh: + "/newcity-wine.sh": - when: - bit: 64 os: linux store: steam - /newcity.exe: + "/newcity.exe": - when: - bit: 64 os: windows @@ -363036,12 +364045,12 @@ New Colony: installDir: New Colony: {} launch: - /New Colony.exe: + "/New Colony.exe": - when: - bit: 64 os: windows store: steam - /NewColony.app: + "/NewColony.app": - when: - os: mac store: steam @@ -363051,18 +364060,18 @@ New Dawn: installDir: New Dawn: {} launch: - /NewDawn.exe: + "/NewDawn.exe": - when: - bit: 64 os: windows store: steam steam: id: 768370 -'New Day: Cataclysm': +"New Day: Cataclysm": installDir: ND_Cataclysm: {} launch: - /NewDay.exe: + "/NewDay.exe": - when: - os: windows store: steam @@ -363072,19 +364081,19 @@ New Frontier: installDir: New Frontier: {} launch: - /Launcher.exe: - - arguments: '-steam -wwo' + "/Launcher.exe": + - arguments: "-steam -wwo" when: - bit: 64 os: windows store: steam steam: id: 1104640 -'New Frontier Days: Founding Pioneers': +"New Frontier Days: Founding Pioneers": installDir: NewFrontierDays: {} launch: - /NewFrontierDays.exe: + "/NewFrontierDays.exe": - when: - os: windows store: steam @@ -363095,12 +364104,12 @@ New Glass: id: 733010 New Gundam Breaker: files: - /NewGundamBreaker/Saved/Config/WindowsNoEditor: + "/NewGundamBreaker/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /NewGundamBreaker/Saved/SaveGames: + "/NewGundamBreaker/Saved/SaveGames": tags: - save when: @@ -363108,7 +364117,7 @@ New Gundam Breaker: installDir: BGMC: {} launch: - /NewGundamBreaker.exe: + "/NewGundamBreaker.exe": - when: - bit: 64 os: windows @@ -363119,7 +364128,7 @@ New Horizons: installDir: Daikoukai2: {} launch: - /Daikoukai2_Launcher.exe: + "/Daikoukai2_Launcher.exe": - when: - os: windows store: steam @@ -363129,23 +364138,23 @@ New Ice York: installDir: New Ice York: {} launch: - /newiceyork_mac.app: + "/newiceyork_mac.app": - when: - os: mac store: steam - /newiceyork_win.exe: + "/newiceyork_win.exe": - when: - os: windows store: steam steam: id: 855530 -'New Joe & Mac: Caveman Ninja': +"New Joe & Mac: Caveman Ninja": gog: id: 1385029155 installDir: Joe & Mac: {} launch: - /NewJoeAndMac.exe: + "/NewJoeAndMac.exe": - when: - os: windows store: steam @@ -363155,7 +364164,7 @@ New Kind of Adventure: installDir: New kind of adventure: {} launch: - /NKOAgame.exe: + "/NKOAgame.exe": - when: - os: windows store: steam @@ -363170,7 +364179,7 @@ New Life: installDir: NEW LIFE: {} launch: - /NewLife_Project: + "/NewLife_Project": - when: - bit: 64 os: windows @@ -363181,7 +364190,7 @@ New Outbreak: installDir: New Outbreak: {} launch: - /New Outbreak Early Access.exe: + "/New Outbreak Early Access.exe": - when: - os: windows store: steam @@ -363191,15 +364200,15 @@ New Planets: installDir: New Planets: {} launch: - /New Planets.exe: + "/New Planets.exe": - when: - os: windows store: steam steam: id: 1214990 -'New Retro Arcade: Neon': +"New Retro Arcade: Neon": files: - /NewRetroArcade/Saved/Config: + "/NewRetroArcade/Saved/Config": tags: - config when: @@ -363207,8 +364216,8 @@ New Planets: installDir: New Retro Arcade Neon: {} launch: - /NewRetroArcade/Binaries/Win64/NewRetroArcade.exe: - - arguments: '-nohmd' + "/NewRetroArcade/Binaries/Win64/NewRetroArcade.exe": + - arguments: "-nohmd" when: - store: steam steam: @@ -363217,11 +364226,11 @@ New Star Manager: installDir: New Star Soccer Manager: {} launch: - /Manager.app/Contents/MacOS/Manager: + "/Manager.app/Contents/MacOS/Manager": - when: - os: mac store: steam - /Manager.exe: + "/Manager.exe": - when: - os: windows store: steam @@ -363231,42 +364240,42 @@ New Star Soccer 5: installDir: New Star Soccer 5: {} launch: - /NSS5.app: - - arguments: '-console' + "/NSS5.app": + - arguments: "-console" when: - os: mac store: steam - /NSS5.exe: - - arguments: '-console' + "/NSS5.exe": + - arguments: "-console" when: - os: windows store: steam steam: id: 212780 -New Super Lucky's Tale: +"New Super Lucky's Tale": files: - /nslt_Data/SavesDir/: + "/nslt_Data/SavesDir/": tags: - save when: - store: steam - /AppData/LocalLow/Playful Studios/New Super Lucky's Tale: + "/AppData/LocalLow/Playful Studios/New Super Lucky's Tale": tags: - config when: - os: windows - /AppData/LocalLow/Playful Studios/New Super Lucky's Tale/Save: + "/AppData/LocalLow/Playful Studios/New Super Lucky's Tale/Save": tags: - save when: - os: windows - /Packages/PlayfulCorp.49013BFBD8849_7n7np5b8s1z70/LocalState: + "/Packages/PlayfulCorp.49013BFBD8849_7n7np5b8s1z70/LocalState": tags: - config when: - os: windows store: microsoft - /Packages/PlayfulCorp.49013BFBD8849_7n7np5b8s1z70/SystemAppData/wgs: + "/Packages/PlayfulCorp.49013BFBD8849_7n7np5b8s1z70/SystemAppData/wgs": tags: - save when: @@ -363282,20 +364291,20 @@ New Super Lucky's Tale: installDir: New Super Luckys Tale: {} launch: - /nslt.exe: + "/nslt.exe": - when: - bit: 64 os: windows store: steam registry: - HKEY_CURRENT_USER/SOFTWARE/Playful Studios/New Super Lucky's Tale: + "HKEY_CURRENT_USER/SOFTWARE/Playful Studios/New Super Lucky's Tale": tags: - config steam: id: 1038300 New Tales from the Borderlands: files: - /Cypress2Game/Saved/SaveGames/Steam: + "/Cypress2Game/Saved/SaveGames/Steam": tags: - save when: @@ -363303,7 +364312,7 @@ New Tales from the Borderlands: installDir: New Tales from the Borderlands: {} launch: - /Cypress2Game/Binaries/Win64/NewTales.exe: + "/Cypress2Game/Binaries/Win64/NewTales.exe": - when: - bit: 64 os: windows @@ -363312,26 +364321,26 @@ New Tales from the Borderlands: id: 1454970 New The Legend of Heroes: files: - /SAVE: + "/SAVE": tags: - save when: - os: windows -'New The Legend of Heroes III: Shiroki Majo': +"New The Legend of Heroes III: Shiroki Majo": files: - /SAVEDATA: + "/SAVEDATA": tags: - save when: - os: windows -'New The Legend of Heroes IV: Akai Shizuku': +"New The Legend of Heroes IV: Akai Shizuku": files: - /ED4_ENV.exe: + "/ED4_ENV.exe": tags: - config when: - os: windows - /SAVEDATA: + "/SAVEDATA": tags: - save when: @@ -363340,7 +364349,7 @@ New Tricks for Old Gods: installDir: New Tricks for Old Gods: {} launch: - /NTfOG.exe: + "/NTfOG.exe": - when: - os: windows store: steam @@ -363348,7 +364357,7 @@ New Tricks for Old Gods: id: 1165490 New World: files: - /AGS/New World: + "/AGS/New World": tags: - config when: @@ -363361,108 +364370,108 @@ New World Horizon: installDir: New World Horizon: {} launch: - /WindowsNoEditor/newworld.exe: + "/WindowsNoEditor/newworld.exe": - when: - bit: 64 os: windows store: steam steam: id: 1017670 -'New World: The Tupis': +"New World: The Tupis": installDir: New World The Tupis: {} launch: - /NewWorldTheTupis.exe: + "/NewWorldTheTupis.exe": - when: - os: windows store: steam steam: id: 723880 -'New Yankee 6: In Pharaoh''s Court': +"New Yankee 6: In Pharaoh's Court": installDir: - New Yankee 6 In Pharaoh's Court: {} + "New Yankee 6 In Pharaoh's Court": {} launch: - /New Yankee 6 In Pharaoh's Court.app/Contents/MacOS/New Yankee 6 In Pharaoh's Court: + "/New Yankee 6 In Pharaoh's Court.app/Contents/MacOS/New Yankee 6 In Pharaoh's Court": - when: - os: mac store: steam - /New Yankee in Pharaoh's Court 6.exe: + "/New Yankee in Pharaoh's Court 6.exe": - when: - os: windows store: steam steam: id: 1059710 -'New Yankee 7: Deer Hunters': +"New Yankee 7: Deer Hunters": installDir: New Yankee 7 Deer Hunters: {} launch: - /NewYankee7.app/Contents/MacOS/NewYankee7: + "/NewYankee7.app/Contents/MacOS/NewYankee7": - when: - os: mac store: steam - /NewYankee7_DeerHunters.exe: + "/NewYankee7_DeerHunters.exe": - when: - os: windows store: steam steam: id: 1066700 -New Yankee in King Arthur's Court: +"New Yankee in King Arthur's Court": installDir: - New Yankee in King Arthur's Court: {} + "New Yankee in King Arthur's Court": {} launch: - /NewYankee.exe: + "/NewYankee.exe": - when: - os: windows store: steam steam: id: 462570 -New Yankee in King Arthur's Court 2: +"New Yankee in King Arthur's Court 2": installDir: - New Yankee in King Arthur's Court 2: {} + "New Yankee in King Arthur's Court 2": {} launch: - /New Yankee 2.app: + "/New Yankee 2.app": - when: - os: mac store: steam - /NewYankee2.exe: + "/NewYankee2.exe": - when: - os: windows store: steam steam: id: 510110 -New Yankee in King Arthur's Court 4: +"New Yankee in King Arthur's Court 4": installDir: - New Yankee in King Arthur's Court 4: {} + "New Yankee in King Arthur's Court 4": {} launch: - /New Yankee 4 In King Arthur's Court Collector's Edition.app/Contents/MacOS/New Yankee 4 - In King Arthur's Court Collector's Edition: + "/New Yankee 4 In King Arthur's Court Collector's Edition.app/Contents/MacOS/New Yankee 4 - In King Arthur's Court Collector's Edition": - when: - os: mac store: steam - /New Yankee in King Arthur's Court 4.exe: + "/New Yankee in King Arthur's Court 4.exe": - when: - os: windows store: steam steam: id: 1071880 -New Yankee in King Arthur's Court 5: +"New Yankee in King Arthur's Court 5": installDir: - New Yankee in King Arthur's Court 5: {} + "New Yankee in King Arthur's Court 5": {} launch: - /New Yankee 5 In King Arthur's Court Collector's Edition.app/Contents/MacOS/New Yankee 5 In King Arthur's Court Collector's Edition: + "/New Yankee 5 In King Arthur's Court Collector's Edition.app/Contents/MacOS/New Yankee 5 In King Arthur's Court Collector's Edition": - when: - os: mac store: steam - /New Yankee in King Arthur's Court 5 CE.exe: + "/New Yankee in King Arthur's Court 5 CE.exe": - when: - os: windows store: steam steam: id: 1071890 -New Yankee in Santa's Service: +"New Yankee in Santa's Service": installDir: - New Yankee in Santa's Service: {} + "New Yankee in Santa's Service": {} launch: - /NewYankee3.exe: + "/NewYankee3.exe": - when: - os: windows store: steam @@ -363471,15 +364480,15 @@ New Yankee in Santa's Service: New Year Simulator: steam: id: 980470 -New Year's Eve 2020: +"New Year's Eve 2020": installDir: NewYearsEve2020: {} launch: - /New Year's Eve 2020.exe: + "/New Year's Eve 2020.exe": - when: - os: windows store: steam - /New Year's Eve 2020.x86_64: + "/New Year's Eve 2020.x86_64": - when: - os: linux store: steam @@ -363489,7 +364498,7 @@ New York Bus Simulator: installDir: New York Bus Simulator: {} launch: - /CBS.exe: + "/CBS.exe": - when: - os: windows store: steam @@ -363499,59 +364508,59 @@ New York Bus Simulator (2016): installDir: New York Bus Simulator: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam steam: id: 446480 -'New York Mysteries: High Voltage': +"New York Mysteries: High Voltage": installDir: New York Mysteries High Voltage: {} launch: - /New York Mysteries High Voltage CE.app: + "/New York Mysteries High Voltage CE.app": - when: - os: mac store: steam - /NewYorkMysteries_HighVoltage.exe: + "/NewYorkMysteries_HighVoltage.exe": - when: - os: windows store: steam steam: id: 392970 -'New York Mysteries: Secrets of the Mafia': +"New York Mysteries: Secrets of the Mafia": installDir: New York Mysteries Secrets of the Mafia Collectors Edition: {} launch: - /NYM.exe: + "/NYM.exe": - when: - os: windows store: steam - /New York Mysteries Secrets of the Mafia CE.app: + "/New York Mysteries Secrets of the Mafia CE.app": - when: - os: mac store: steam steam: id: 372930 -'New York Mysteries: The Lantern of Souls': +"New York Mysteries: The Lantern of Souls": installDir: New York Mysteries The Lantern of Souls: {} launch: - /New York Mysteries The Lantern of Souls CE.app: + "/New York Mysteries The Lantern of Souls CE.app": - when: - os: mac store: steam - /NewYorkMysteries_TheLanternOfSouls.exe: + "/NewYorkMysteries_TheLanternOfSouls.exe": - when: - os: windows store: steam steam: id: 511140 -'New York Mysteries: The Outbreak': +"New York Mysteries: The Outbreak": installDir: New York Mysteries The Outbreak: {} launch: - /NewYorkMysteries_TheOutbreak.exe: + "/NewYorkMysteries_TheOutbreak.exe": - when: - os: windows store: steam @@ -363561,7 +364570,7 @@ New York Taxi Simulator: installDir: New York Taxi Simulator: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -363574,8 +364583,8 @@ NewTypes: installDir: newtypes: {} launch: - /bin/cosmosw.exe: - - arguments: cs\\newtype\\main-win.cs + "/bin/cosmosw.exe": + - arguments: "cs\\\\newtype\\\\main-win.cs" when: - bit: 64 os: windows @@ -363586,11 +364595,11 @@ Newfound Courage: installDir: Newfound Courage: {} launch: - /Contents/MacOS/Newfound Courage: + "/Contents/MacOS/Newfound Courage": - when: - os: mac store: steam - /Newfound Courage.exe: + "/Newfound Courage.exe": - when: - os: windows store: steam @@ -363603,7 +364612,7 @@ News Tycoon: installDir: News Tycoon: {} launch: - /News Tycoon.exe: + "/News Tycoon.exe": - when: - os: windows store: steam @@ -363613,25 +364622,25 @@ Newt One: installDir: Newt One: {} launch: - /Contents/MacOS/NewtOne-MacOS: + "/Contents/MacOS/NewtOne-MacOS": - when: - os: mac store: steam - /Newt One.exe: + "/Newt One.exe": - when: - os: windows store: steam steam: id: 842850 -Newt's Voyage: +"Newt's Voyage": installDir: - Newt's Voyage: {} + "Newt's Voyage": {} launch: - /NewtsVoyage.app/Contents/MacOS/NewtsVoyageMacOSSteam: + "/NewtsVoyage.app/Contents/MacOS/NewtsVoyageMacOSSteam": - when: - os: mac store: steam - /NewtsVoyage.exe: + "/NewtsVoyage.exe": - when: - os: windows store: steam @@ -363639,12 +364648,12 @@ Newt's Voyage: id: 1042460 Newton and the Apple Tree: files: - /Sol Press/Newton and the Apple Tree/*.dat: + "/Sol Press/Newton and the Apple Tree/*.dat": tags: - save when: - os: windows - /Sol Press/Newton and the Apple Tree/*.xml: + "/Sol Press/Newton and the Apple Tree/*.xml": tags: - config when: @@ -363652,14 +364661,14 @@ Newton and the Apple Tree: installDir: Newton and the Apple Tree: {} launch: - /Newton and the Apple Tree.exe: + "/Newton and the Apple Tree.exe": - when: - store: steam steam: id: 721010 Nex Machina: files: - /Nex Machina: + "/Nex Machina": tags: - config - save @@ -363670,7 +364679,7 @@ Nex Machina: installDir: Nex Machina: {} launch: - /nex_machina.exe: + "/nex_machina.exe": - when: - bit: 64 os: windows @@ -363679,7 +364688,7 @@ Nex Machina: id: 404540 Nexomon: files: - /userdata//1191580/remote: + "/userdata//1191580/remote": tags: - save when: @@ -363688,11 +364697,11 @@ Nexomon: installDir: Nexomon: {} launch: - /Nexomon.exe: + "/Nexomon.exe": - when: - os: windows store: steam - /nexomon.app/Contents/MacOS/Nexomon: + "/nexomon.app/Contents/MacOS/Nexomon": - when: - os: mac store: steam @@ -363701,9 +364710,9 @@ Nexomon: Nexomon 3: steam: id: 2444760 -'Nexomon: Extinction': +"Nexomon: Extinction": files: - /AppData/LocalLow/VEWO INTERACTIVE INC_/Nexomon_ Extinction: + "/AppData/LocalLow/VEWO INTERACTIVE INC_/Nexomon_ Extinction": tags: - save when: @@ -363711,11 +364720,11 @@ Nexomon 3: installDir: Nexomon Extinction: {} launch: - /Nexomon Extinction.exe: + "/Nexomon Extinction.exe": - when: - os: windows store: steam - /extinction.app/Contents/MacOS/Nexomon Extinction: + "/extinction.app/Contents/MacOS/Nexomon Extinction": - when: - os: mac store: steam @@ -363725,7 +364734,7 @@ Nexoria: installDir: Nexoria: {} launch: - /NEXORIA.exe: + "/NEXORIA.exe": - when: - os: windows store: steam @@ -363735,7 +364744,7 @@ Next: installDir: Next: {} launch: - /Next.exe: + "/Next.exe": - when: - os: windows store: steam @@ -363745,7 +364754,7 @@ Next 2: installDir: Next 2: {} launch: - /Next 2.exe: + "/Next 2.exe": - when: - os: windows store: steam @@ -363755,7 +364764,7 @@ Next 3: installDir: Next 3: {} launch: - /Next 3.exe: + "/Next 3.exe": - when: - os: windows store: steam @@ -363765,15 +364774,15 @@ Next 4: installDir: Next 4: {} launch: - /Next 4.exe: + "/Next 4.exe": - when: - os: windows store: steam steam: id: 856120 -'Next Day: Survival': +"Next Day: Survival": files: - /SOFF Games/Next Day Survival: + "/SOFF Games/Next Day Survival": tags: - config when: @@ -363781,7 +364790,7 @@ Next 4: installDir: Next Day Survival: {} launch: - /nextday.exe: + "/nextday.exe": - when: - bit: 64 os: windows @@ -363792,7 +364801,7 @@ Next Hand Master: installDir: Next Hand Master: {} launch: - /nhm.exe: + "/nhm.exe": - when: - store: steam steam: @@ -363801,7 +364810,7 @@ Next Hero: installDir: NextHero: {} launch: - /NextHero.exe: + "/NextHero.exe": - when: - os: windows store: steam @@ -363813,11 +364822,11 @@ Next Space Rebels: installDir: Next Space Rebels: {} launch: - /NextSpaceRebels.app: + "/NextSpaceRebels.app": - when: - os: mac store: steam - /NextSpaceRebels.exe: + "/NextSpaceRebels.exe": - when: - os: windows store: steam @@ -363827,11 +364836,11 @@ Next Stop 2: installDir: Next Stop 2: {} launch: - /NextStop2.app/Contents/MacOS/NextStop2: + "/NextStop2.app/Contents/MacOS/NextStop2": - when: - os: mac store: steam - /NextStop2.exe: + "/NextStop2.exe": - when: - os: windows store: steam @@ -363841,21 +364850,21 @@ Next Stop 3: installDir: Next Stop 3: {} launch: - /NextStop3.app/Contents/MacOS/NextStop3: + "/NextStop3.app/Contents/MacOS/NextStop3": - when: - os: mac store: steam - /NextStop3.exe: + "/NextStop3.exe": - when: - os: windows store: steam steam: id: 1001430 -'Next Stop: Zombie': +"Next Stop: Zombie": installDir: Next Stop Zombie: {} launch: - /NextStopZombie.exe: + "/NextStopZombie.exe": - when: - os: windows store: steam @@ -363863,7 +364872,7 @@ Next Stop 3: id: 689050 Next Up Hero: files: - /AppData/LocalLow/DigitalContinue/NextUpHero/HeroUpSave.gs: + "/AppData/LocalLow/DigitalContinue/NextUpHero/HeroUpSave.gs": tags: - save when: @@ -363871,11 +364880,11 @@ Next Up Hero: installDir: NextUpHero: {} launch: - /NextUpHero.app: + "/NextUpHero.app": - when: - os: mac store: steam - /NextUpHero.exe: + "/NextUpHero.exe": - when: - os: windows store: steam @@ -363887,7 +364896,7 @@ Next Up Hero: id: 667810 Nexuiz (2012): files: - /USER/Profiles/default: + "/USER/Profiles/default": tags: - config when: @@ -363895,32 +364904,32 @@ Nexuiz (2012): installDir: Nexuiz: {} launch: - /Bin32/Editor.exe: + "/Bin32/Editor.exe": - when: - store: steam - workingDir: /Bin32 - /Bin32/Nexuiz.exe: + workingDir: "/Bin32" + "/Bin32/Nexuiz.exe": - when: - store: steam - workingDir: /Bin32 + workingDir: "/Bin32" steam: id: 96800 Nexus: steam: id: 1042620 -'Nexus: The Jupiter Incident': +"Nexus: The Jupiter Incident": files: - /save: + "/save": tags: - save when: - os: windows - /Nexus - The Jupiter Incident: + "/Nexus - The Jupiter Incident": tags: - config when: - os: windows - /Nexus - The Jupiter Incident/save: + "/Nexus - The Jupiter Incident/save": tags: - save when: @@ -363930,15 +364939,15 @@ Nexus: installDir: Nexus The Jupiter Incident: {} launch: - /mod_tools/mod_tools.exe: + "/mod_tools/mod_tools.exe": - when: - os: windows store: steam - /nexus.exe: + "/nexus.exe": - when: - os: windows store: steam - /nexus_DX9.exe: + "/nexus_DX9.exe": - arguments: /win /nolau /splay when: - os: windows @@ -363953,15 +364962,15 @@ Nexus: - config steam: id: 6420 -'Ni no Kuni II: Revenant Kingdom': +"Ni no Kuni II: Revenant Kingdom": files: - /userdata//589360/remote: + "/userdata//589360/remote": tags: - save when: - os: windows store: steam - /userdata//589360/remote/SYSTEM/data.bin: + "/userdata//589360/remote/SYSTEM/data.bin": tags: - config when: @@ -363970,27 +364979,27 @@ Nexus: installDir: Ni no Kuni II Revenant Kingdom: {} launch: - /Nino2.exe: + "/Nino2.exe": - when: - bit: 64 os: windows store: steam steam: id: 589360 -'Ni no Kuni: Wrath of the White Witch Remastered': +"Ni no Kuni: Wrath of the White Witch Remastered": files: - /userdata//798460/remote: + "/userdata//798460/remote": tags: - save when: - os: windows store: steam - /BANDAI NAMCO Entertainment/Ni no Kuni Wrath of the White Witch Remastered: + "/BANDAI NAMCO Entertainment/Ni no Kuni Wrath of the White Witch Remastered": tags: - config when: - os: windows - /Packages/LEVEL-5Inc.NinoKuniWrathoftheWhiteWitchRemastered_dwd6sh9x0mt8j/SystemAppData/wgs: + "/Packages/LEVEL-5Inc.NinoKuniWrathoftheWhiteWitchRemastered_dwd6sh9x0mt8j/SystemAppData/wgs": tags: - save when: @@ -363999,7 +365008,7 @@ Nexus: installDir: Ni no Kuni Wrath of the White Witch™ Remastered: {} launch: - /NinoKuni_WotWW_Remastered.exe: + "/NinoKuni_WotWW_Remastered.exe": - when: - bit: 64 os: windows @@ -364010,7 +365019,7 @@ NiGHT SIGNAL: installDir: Night Signal: {} launch: - /Night Signal.exe: + "/Night Signal.exe": - when: - os: windows store: steam @@ -364020,33 +365029,33 @@ NiHonGoToKi: installDir: Japanese_AN: {} launch: - /Japanese A-N.exe: + "/Japanese A-N.exe": - when: - os: windows store: steam - /Japanese_AN_Mac.app/Contents/MacOS/Japanese A-N: + "/Japanese_AN_Mac.app/Contents/MacOS/Japanese A-N": - when: - os: mac store: steam - /NihonGoToki.x86_64: + "/NihonGoToki.x86_64": - when: - os: linux store: steam steam: id: 1044030 -'Niara: Rebellion of the King': +"Niara: Rebellion of the King": installDir: Niara Rebellion Of the King Visual Novel RPG: {} launch: - /Niara_ROTK.app: + "/Niara_ROTK.app": - when: - os: mac store: steam - /Niara_ROTK.exe: + "/Niara_ROTK.exe": - when: - os: windows store: steam - /Niara_ROTK.sh: + "/Niara_ROTK.sh": - when: - os: linux store: steam @@ -364059,7 +365068,7 @@ Nibû: installDir: Nibû: {} launch: - /Nibû.exe: + "/Nibû.exe": - when: - bit: 64 os: windows @@ -364070,20 +365079,20 @@ Nice Jumper: installDir: Nice Jumper: {} launch: - /NiceJumper.app: + "/NiceJumper.app": - when: - os: mac store: steam - /NiceJumper.exe: + "/NiceJumper.exe": - when: - os: windows store: steam - /NiceJumper.x86: + "/NiceJumper.x86": - when: - bit: 32 os: linux store: steam - /NiceJumper.x86_64: + "/NiceJumper.x86_64": - when: - bit: 64 os: linux @@ -364094,7 +365103,7 @@ Nice Shot! The Gun Golfing Game: installDir: Nice Shot! The Gun Golfing Game: {} launch: - /Nice Shot!V1.1.2.exe: + "/Nice Shot!V1.1.2.exe": - when: - os: windows store: steam @@ -364104,7 +365113,7 @@ Nice Slice: installDir: Nice Slice: {} launch: - /Nice Slice.exe: + "/Nice Slice.exe": - when: - bit: 32 os: windows @@ -364115,15 +365124,15 @@ Nice Way: installDir: Nice Way: {} launch: - /Nice Way.app: + "/Nice Way.app": - when: - os: mac store: steam - /Nice Way.exe: + "/Nice Way.exe": - when: - os: windows store: steam - /Nice Way.x86: + "/Nice Way.x86": - when: - os: linux store: steam @@ -364131,22 +365140,22 @@ Nice Way: id: 763360 Niche: files: - /AppData/LocalLow/Team Niche/Niche - a genetics survival game: + "/AppData/LocalLow/Team Niche/Niche - a genetics survival game": tags: - config when: - os: windows - /AppData/LocalLow/Team Niche/Niche - a genetics survival game/saves: + "/AppData/LocalLow/Team Niche/Niche - a genetics survival game/saves": tags: - save when: - os: windows - /unity3d/Team Niche/Niche - a genetics survival game: + "/unity3d/Team Niche/Niche - a genetics survival game": tags: - config when: - os: linux - /unity3d/Team Niche/Niche - a genetics survival game/Saves: + "/unity3d/Team Niche/Niche - a genetics survival game/Saves": tags: - save when: @@ -364156,26 +365165,26 @@ Niche: installDir: Niche: {} launch: - /Linux/Niche.x86: + "/Linux/Niche.x86": - when: - bit: 32 os: linux store: steam - /Linux/Niche.x86_64: + "/Linux/Niche.x86_64": - when: - bit: 64 os: linux store: steam - /Mac/Niche.app/Contents/MacOS/Niche: + "/Mac/Niche.app/Contents/MacOS/Niche": - when: - os: mac store: steam - /Windows/32Bit/Niche.exe: + "/Windows/32Bit/Niche.exe": - when: - bit: 32 os: windows store: steam - /Windows/64Bit/Niche.exe: + "/Windows/64Bit/Niche.exe": - when: - bit: 64 os: windows @@ -364187,11 +365196,11 @@ Nick: Nick: {} steam: id: 572660 -'Nick Beard: The Fedora of Destiny': +"Nick Beard: The Fedora of Destiny": installDir: Nick Beard - The Fedora of Destiny: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: @@ -364200,7 +365209,7 @@ Nick Bounty and the Dame with the Blue Chewed Shoe: installDir: NickBounty3: {} launch: - /Nick Bounty and the Dame with the Blue Chewed Shoe.exe: + "/Nick Bounty and the Dame with the Blue Chewed Shoe.exe": - when: - os: windows store: steam @@ -364210,7 +365219,7 @@ Nick Logic for Kids: installDir: Nick Logic for Kids: {} launch: - /Logic for Kids.exe: + "/Logic for Kids.exe": - when: - os: windows store: steam @@ -364220,7 +365229,7 @@ Nick Reckless in The Curse of the Lost Cause: installDir: Curse of the Lost Cause: {} launch: - /COLC.exe: + "/COLC.exe": - when: - os: windows store: steam @@ -364230,7 +365239,7 @@ NickProject: installDir: NickProject: {} launch: - /NickProject.exe: + "/NickProject.exe": - when: - os: windows store: steam @@ -364238,7 +365247,7 @@ NickProject: id: 803870 Nickelodeon All-Star Brawl: files: - /AppData/LocalLow/GameMill Entertainment/Nickelodeon All-Star Brawl: + "/AppData/LocalLow/GameMill Entertainment/Nickelodeon All-Star Brawl": tags: - config - save @@ -364247,7 +365256,7 @@ Nickelodeon All-Star Brawl: installDir: Nickelodeon All-Star Brawl: {} launch: - /Nickelodeon All-Star Brawl.exe: + "/Nickelodeon All-Star Brawl.exe": - when: - os: windows store: steam @@ -364255,7 +365264,7 @@ Nickelodeon All-Star Brawl: id: 1414850 Nickelodeon All-Star Brawl 2: files: - /AppData/LocalLow/GameMill Entertainment/Nickelodeon All-Star Brawl 2: + "/AppData/LocalLow/GameMill Entertainment/Nickelodeon All-Star Brawl 2": tags: - save when: @@ -364268,14 +365277,14 @@ Nickelodeon All-Star Brawl 2: installDir: Nickelodeon All-Star Brawl 2: {} launch: - /Nickelodeon All-Star Brawl 2.exe: + "/Nickelodeon All-Star Brawl 2.exe": - when: - store: steam steam: id: 2017080 -'Nickelodeon Kart Racers 2: Grand Prix': +"Nickelodeon Kart Racers 2: Grand Prix": files: - /userdata//1383960: + "/userdata//1383960": tags: - save when: @@ -364284,21 +365293,21 @@ Nickelodeon All-Star Brawl 2: installDir: Nickelodeon Kart Racers 2 Grand Prix: {} launch: - /GameSteamDRM.exe: + "/GameSteamDRM.exe": - when: - bit: 64 os: windows store: steam steam: id: 1383960 -'Nickelodeon Kart Racers 3: Slime Speedway': +"Nickelodeon Kart Racers 3: Slime Speedway": files: - /Nor/Saved/Config/WindowsNoEditor: + "/Nor/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /Nor/Saved/SaveGames: + "/Nor/Saved/SaveGames": tags: - save when: @@ -364306,7 +365315,7 @@ Nickelodeon All-Star Brawl 2: installDir: Nickelodeon Kart Racers 3: {} launch: - /Nor/Binaries/Win64/NKR3.exe: + "/Nor/Binaries/Win64/NKR3.exe": - when: - bit: 64 os: windows @@ -364315,7 +365324,7 @@ Nickelodeon All-Star Brawl 2: id: 1620040 Nicktoons Racing: files: - /NickToonsRacing.cfg: + "/NickToonsRacing.cfg": tags: - config when: @@ -364324,7 +365333,7 @@ Nicky - The Home Alone Golf Ball: installDir: Nicky: {} launch: - /nicky.exe: + "/nicky.exe": - when: - os: windows store: steam @@ -364332,65 +365341,65 @@ Nicky - The Home Alone Golf Ball: id: 829370 Nicky Boom: files: - /SAVE*.INF: + "/SAVE*.INF": tags: - save when: - os: windows - /SAVE*.SAV: + "/SAVE*.SAV": tags: - save when: - os: windows - /SETTINGS.DAT: + "/SETTINGS.DAT": tags: - config when: - os: windows -'Nicolas Eymerich The Inquisitor - Book I: The Plague': +"Nicolas Eymerich The Inquisitor - Book I: The Plague": installDir: Nicolas Eymerich The Inquisitor: {} launch: - /Eymerich01.app: + "/Eymerich01.app": - when: - os: mac store: steam - /Eymerich01.exe: + "/Eymerich01.exe": - when: - os: windows store: steam steam: id: 279500 -'Nicolas Eymerich The Inquisitor - Book II: The Village': +"Nicolas Eymerich The Inquisitor - Book II: The Village": installDir: Nicolas Eymerich The Inquisitor Book II The Village: {} launch: - /Eymerich02.app: + "/Eymerich02.app": - when: - os: mac store: steam - /Eymerich02.exe: + "/Eymerich02.exe": - when: - os: windows store: steam steam: id: 297070 -Nicolay's Adventure: +"Nicolay's Adventure": steam: id: 581350 Nicole: installDir: NicoleOtome: {} launch: - /Nicole.app: + "/Nicole.app": - when: - os: mac store: steam - /Nicole.exe: + "/Nicole.exe": - when: - os: windows store: steam - /Nicole.sh: + "/Nicole.sh": - when: - os: linux store: steam @@ -364398,7 +365407,7 @@ Nicole: id: 307190 Nidhogg: files: - /Nidhogg: + "/Nidhogg": tags: - config - save @@ -364407,11 +365416,11 @@ Nidhogg: installDir: Nidhogg: {} launch: - /Nidhogg.app: + "/Nidhogg.app": - when: - os: mac store: steam - /Nidhogg.exe: + "/Nidhogg.exe": - when: - os: windows store: steam @@ -364421,11 +365430,11 @@ Nidhogg 2: installDir: Nidhogg 2: {} launch: - /Nidhogg_2.app: + "/Nidhogg_2.app": - when: - os: mac store: steam - /Nidhogg_2.exe: + "/Nidhogg_2.exe": - when: - os: windows store: steam @@ -364433,7 +365442,7 @@ Nidhogg 2: id: 535520 NieR Replicant: files: - /My Games/NieR Replicant ver.1.22474487139/Steam/: + "/My Games/NieR Replicant ver.1.22474487139/Steam/": tags: - config - save @@ -364442,28 +365451,29 @@ NieR Replicant: installDir: NieR Replicant ver.1.22474487139: {} launch: - /NieR Replicant ver.1.22474487139.exe: + "/NieR Replicant ver.1.22474487139.exe": - when: - bit: 64 os: windows store: steam steam: id: 1113560 -'NieR: Automata': +"NieR: Automata": files: - /My Games/NieR_Automata: + "/My Games/NieR_Automata": tags: - config - save when: - - store: steam - /My Games/NieR_Automata_PC: + - os: windows + store: steam + "/My Games/NieR_Automata_PC": tags: - config when: - os: windows store: microsoft - /Packages/39EA002F.NieRAutomataPC_n746a19ndrrjg/SystemAppData/wgs: + "/Packages/39EA002F.NieRAutomataPC_n746a19ndrrjg/SystemAppData/wgs": tags: - save when: @@ -364482,7 +365492,7 @@ NieR Replicant: installDir: NieRAutomata: {} launch: - /NieRAutomata.exe: + "/NieRAutomata.exe": - when: - os: windows store: steam @@ -364490,7 +365500,7 @@ NieR Replicant: id: 524220 Niffelheim: files: - /AppData/LocalLow/ElladaGames/Niffelheim/Profiles: + "/AppData/LocalLow/ElladaGames/Niffelheim/Profiles": tags: - save when: @@ -364500,15 +365510,15 @@ Niffelheim: installDir: Niffelheim: {} launch: - /Niffelheim.app: + "/Niffelheim.app": - when: - os: mac store: steam - /Niffelheim.exe: + "/Niffelheim.exe": - when: - os: windows store: steam - /Niffelheim.x86: + "/Niffelheim.x86": - when: - os: linux store: steam @@ -364518,11 +365528,11 @@ Niffelheim: - config steam: id: 351100 -'Nigel: The Minuscule Adventure': +"Nigel: The Minuscule Adventure": installDir: Nigel - The Minuscule Adventure: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -364532,7 +365542,7 @@ Night & Day: installDir: Night & Day: {} launch: - /Night & Day.exe: + "/Night & Day.exe": - when: - bit: 64 os: windows @@ -364543,7 +365553,7 @@ Night Blights: installDir: Night Blights: {} launch: - /NightBlights.exe: + "/NightBlights.exe": - when: - os: windows store: steam @@ -364551,12 +365561,12 @@ Night Blights: id: 446910 Night Call: files: - /AppData/LocalLow/Raw Fury/Night Call: + "/AppData/LocalLow/Raw Fury/Night Call": tags: - save when: - os: windows - /AppData/LocalLow/Raw Fury/Night Call/nightcall_config.sav: + "/AppData/LocalLow/Raw Fury/Night Call/nightcall_config.sav": tags: - config when: @@ -364565,18 +365575,18 @@ Night Call: id: 1119875193 id: gogExtra: - - 2011152326 - 1423381799 + - 2011152326 steamExtra: - 1116970 installDir: Night Call: {} launch: - /Night Call.app: + "/Night Call.app": - when: - os: mac store: steam - /Night Call.exe: + "/Night Call.exe": - when: - os: windows store: steam @@ -364590,7 +365600,7 @@ Night Catcher: installDir: Night Catcher: {} launch: - /Night Catcher.exe: + "/Night Catcher.exe": - when: - os: windows store: steam @@ -364600,7 +365610,7 @@ Night Crisis: installDir: Night Crisis: {} launch: - /Night Crisis.exe: + "/Night Crisis.exe": - when: - bit: 64 os: windows @@ -364616,7 +365626,7 @@ Night Fly: installDir: Night Fly: {} launch: - /NF.exe: + "/NF.exe": - when: - store: steam steam: @@ -364631,7 +365641,7 @@ Night Guardian: installDir: Night Guardian: {} launch: - /Arena.exe: + "/Arena.exe": - when: - os: windows store: steam @@ -364641,7 +365651,7 @@ Night Island: installDir: Night Island: {} launch: - /NightIsland.exe: + "/NightIsland.exe": - when: - os: windows store: steam @@ -364653,7 +365663,7 @@ Night Lights: installDir: Night Lights: {} launch: - /NightLights.exe: + "/NightLights.exe": - when: - os: windows store: steam @@ -364662,14 +365672,14 @@ Night Lights: Night Magic: steam: id: 941860 -'Night Mysteries: The Amphora Prisoner': +"Night Mysteries: The Amphora Prisoner": files: - /Anvate Games/Night Mysteries - The Amphora Prisoner: + "/Anvate Games/Night Mysteries - The Amphora Prisoner": tags: - config when: - os: windows - /Anvate Games/Night Mysteries - The Amphora Prisoner/Profiles.cfg: + "/Anvate Games/Night Mysteries - The Amphora Prisoner/Profiles.cfg": tags: - save when: @@ -364677,7 +365687,7 @@ Night Magic: installDir: Night Mysteries - The Amphora Prisoner: {} launch: - /NightMysteries.exe: + "/NightMysteries.exe": - when: - os: windows store: steam @@ -364692,7 +365702,7 @@ Night Shift (2015): installDir: Night Shift: {} launch: - /NightShift.exe: + "/NightShift.exe": - when: - os: windows store: steam @@ -364702,7 +365712,7 @@ Night Sing: installDir: Night Song: {} launch: - /NS.exe: + "/NS.exe": - when: - os: windows store: steam @@ -364714,7 +365724,7 @@ Night Slashers: installDir: Retro Classix Night Slashers: {} launch: - /Retro Classix Night Slashers.exe: + "/Retro Classix Night Slashers.exe": - when: - os: windows store: steam @@ -364722,7 +365732,7 @@ Night Slashers: id: 1627220 Night Trap - 25th Anniversary Edition: files: - /AppData/LocalLow/Screaming Villains/Night Trap - 25th Anniversary Edition/PlayerPrefs.txt: + "/AppData/LocalLow/Screaming Villains/Night Trap - 25th Anniversary Edition/PlayerPrefs.txt": tags: - config - save @@ -364731,7 +365741,7 @@ Night Trap - 25th Anniversary Edition: installDir: Night Trap - 25th Anniversary Edition: {} launch: - /NT25.exe: + "/NT25.exe": - when: - os: windows store: steam @@ -364741,21 +365751,21 @@ Night Vigil: installDir: Night Vigil: {} launch: - /NightVigil001.exe: + "/NightVigil001.exe": - when: - os: windows store: steam - /NightVigilMac: + "/NightVigilMac": - when: - os: mac store: steam steam: id: 509910 -'Night Witch: 588': +"Night Witch: 588": installDir: Night Witch 588: {} launch: - /Night Witch 588.exe: + "/Night Witch 588.exe": - when: - bit: 64 os: windows @@ -364765,26 +365775,26 @@ Night Vigil: Night and Day The curse of the red witch: steam: id: 869790 -'Night at the Museum: Battle of the Smithsonian': +"Night at the Museum: Battle of the Smithsonian": files: - /AppData/Roaming/Night at the Museum: + "/AppData/Roaming/Night at the Museum": tags: - save when: - os: windows Night in the Woods: files: - /AppData/LocalLow/Infinite Fall/Night in the Woods: + "/AppData/LocalLow/Infinite Fall/Night in the Woods": tags: - save when: - os: windows - /Library/Application Support/Infinite Fall/Night in the Woods: + "/Library/Application Support/Infinite Fall/Night in the Woods": tags: - save when: - os: mac - /unity3d/Infinite Fall/Night in the Woods: + "/unity3d/Infinite Fall/Night in the Woods": tags: - config - save @@ -364795,20 +365805,20 @@ Night in the Woods: installDir: Night in the Woods: {} launch: - /Night in the Woods.app: + "/Night in the Woods.app": - when: - os: mac store: steam - /Night in the Woods.exe: + "/Night in the Woods.exe": - when: - os: windows store: steam - /Night in the Woods.x86: + "/Night in the Woods.x86": - when: - bit: 32 os: linux store: steam - /Night in the Woods.x86_64: + "/Night in the Woods.x86_64": - when: - bit: 64 os: linux @@ -364826,11 +365836,11 @@ Night light: installDir: Night light: {} launch: - /NIGHTLIGHT.exe: + "/NIGHTLIGHT.exe": - when: - os: windows store: steam - /NightLight.app: + "/NightLight.app": - when: - os: mac store: steam @@ -364843,15 +365853,15 @@ Night of the Blood Moon: installDir: Night of the Blood Moon: {} launch: - /NotBM: + "/NotBM": - when: - os: linux store: steam - /NotBM.app: + "/NotBM.app": - when: - os: mac store: steam - /NotBM.exe: + "/NotBM.exe": - when: - os: windows store: steam @@ -364866,12 +365876,12 @@ Night of the Full Moon: installDir: Night of the Full Moon: {} launch: - /Night of the Full Moon.exe: + "/Night of the Full Moon.exe": - when: - bit: 64 os: windows store: steam - /x86/Night of the Full Moon.exe: + "/x86/Night of the Full Moon.exe": - when: - bit: 32 os: windows @@ -364882,7 +365892,7 @@ Night of the Scarecrows: installDir: Night of the Scarecrows: {} launch: - /NotS.exe: + "/NotS.exe": - when: - bit: 64 os: windows @@ -364893,7 +365903,7 @@ Night of the Shrub Part 1: installDir: NightoftheShrub1: {} launch: - /Night of the Shrub 1.exe: + "/Night of the Shrub 1.exe": - when: - bit: 64 os: windows @@ -364904,7 +365914,7 @@ Night of the Shrub Part 2: installDir: NightoftheShrub2: {} launch: - /Night of the Shrub 2.exe: + "/Night of the Shrub 2.exe": - when: - bit: 64 os: windows @@ -364915,7 +365925,7 @@ Night of the Shrub Part 3: installDir: NightoftheShrub3: {} launch: - /Night of the Shrub 3.exe: + "/Night of the Shrub 3.exe": - when: - bit: 64 os: windows @@ -364926,7 +365936,7 @@ Night shot: installDir: Night shot: {} launch: - /NightShot.exe: + "/NightShot.exe": - when: - bit: 64 os: windows @@ -364935,7 +365945,7 @@ Night shot: id: 1042750 NightCry: files: - /AppData/LocalLow/nudemaker/NightCry/storage: + "/AppData/LocalLow/nudemaker/NightCry/storage": tags: - save when: @@ -364943,7 +365953,7 @@ NightCry: installDir: NightCry: {} launch: - /NightCry.exe: + "/NightCry.exe": - when: - os: windows store: steam @@ -364960,22 +365970,22 @@ NightKnight: id: 908710 NightSky: files: - /nightsky/default.ini: + "/nightsky/default.ini": tags: - save when: - os: windows - /nightsky/enginesettings.ini: + "/nightsky/enginesettings.ini": tags: - config when: - os: windows - /nightsky/Default.ini: + "/nightsky/Default.ini": tags: - save when: - os: linux - /nightsky/EngineSettings.ini: + "/nightsky/EngineSettings.ini": tags: - config when: @@ -364983,21 +365993,21 @@ NightSky: installDir: Nightsky: {} launch: - /NightSky.app: + "/NightSky.app": - when: - bit: 64 os: mac store: steam - /Nightsky.exe: + "/Nightsky.exe": - when: - os: windows store: steam - /run-i386.sh: + "/run-i386.sh": - when: - bit: 32 os: linux store: steam - /run-x64.sh: + "/run-x64.sh": - when: - bit: 64 os: linux @@ -365008,7 +366018,7 @@ NightZ: installDir: NightZ: {} launch: - /NightZ.exe: + "/NightZ.exe": - when: - os: windows store: steam @@ -365018,7 +366028,7 @@ Nightbanes: installDir: Nightbanes: {} launch: - /Nightbanes.exe: + "/Nightbanes.exe": - when: - os: windows store: steam @@ -365028,7 +366038,7 @@ Nightclub Emporium: installDir: Nightclub Emporium: {} launch: - /NightClubImperium.exe: + "/NightClubImperium.exe": - when: - store: steam steam: @@ -365042,39 +366052,42 @@ Nightfall Hacker: installDir: Nightfall Hacker: {} launch: - /Nightfall Hacker.app: + "/Nightfall Hacker.app": - when: - os: mac store: steam - /nightfall.exe: + "/nightfall.exe": - when: - os: windows store: steam - /nightfall.x86_64: + "/nightfall.x86_64": - when: - os: linux store: steam steam: id: 1204080 -'Nightfall: Escape': +"Nightfall: Escape": installDir: Nightfall Escape: {} launch: - /NightfallEscape.app: + "/NightfallEscape.app": - when: - os: mac store: steam - /NightfallEscape.exe: + "/NightfallEscape.exe": - when: - bit: 32 os: windows store: steam - /NightfallEscape.x86: + - bit: 64 + os: windows + store: steam + "/NightfallEscape.x86": - when: - bit: 32 os: linux store: steam - /NightfallEscape.x86_64: + "/NightfallEscape.x86_64": - when: - bit: 64 os: linux @@ -365085,7 +366098,7 @@ Nighthaw-X3000: installDir: Nighthaw-X3000: {} launch: - /NIGHTHAW-X3000.exe: + "/NIGHTHAW-X3000.exe": - when: - os: windows store: steam @@ -365103,7 +366116,7 @@ Nightingale Downs: installDir: Nightingale Downs: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -365115,21 +366128,21 @@ Nightmare: Nightmare (2019): steam: id: 1052460 -'Nightmare Adventures: The Turning Thorn': +"Nightmare Adventures: The Turning Thorn": installDir: Nightmare Adventures The Turning Thorn: {} launch: - /NA_The_Turning_Thorn.exe: + "/NA_The_Turning_Thorn.exe": - when: - os: windows store: steam steam: id: 622620 -'Nightmare Adventures: The Witch''s Prison': +"Nightmare Adventures: The Witch's Prison": installDir: - Nightmare Adventures The Witch's Prison: {} + "Nightmare Adventures The Witch's Prison": {} launch: - /WitchsPrison.exe: + "/WitchsPrison.exe": - when: - store: steam steam: @@ -365138,7 +366151,7 @@ Nightmare Boy: installDir: Nightmare Boy: {} launch: - /NightmareBoy.exe: + "/NightmareBoy.exe": - when: - os: windows store: steam @@ -365148,7 +366161,7 @@ Nightmare Cave: installDir: Nightmare Cave: {} launch: - /Nightmare Cave.exe: + "/Nightmare Cave.exe": - when: - os: windows store: steam @@ -365156,12 +366169,12 @@ Nightmare Cave: id: 1142200 Nightmare Creatures: files: - /NCSETUP.EXE: + "/NCSETUP.EXE": tags: - config when: - os: windows - /NIGHTMARE.*: + "/NIGHTMARE.*": tags: - save when: @@ -365170,7 +366183,7 @@ Nightmare Game (噩梦游戏): installDir: Nightmare Game: {} launch: - /Nightmare Game.exe: + "/Nightmare Game.exe": - when: - os: windows store: steam @@ -365185,7 +366198,7 @@ Nightmare Pop!: installDir: Nightmare Pop: {} launch: - /NightmarePop.exe: + "/NightmarePop.exe": - when: - os: windows store: steam @@ -365193,13 +366206,13 @@ Nightmare Pop!: id: 808020 Nightmare Reaper: files: - /MyProject/Content/Settings: + "/MyProject/Content/Settings": tags: - save when: - - os: windows - store: gog - /MyProject/Saved/Config/WindowsNoEditor: + - os: windows + "/MyProject/Saved/Config/WindowsNoEditor": tags: - config when: @@ -365209,7 +366222,7 @@ Nightmare Reaper: installDir: Nightmare Reaper: {} launch: - /NightmareReaper.exe: + "/NightmareReaper.exe": - when: - bit: 64 os: windows @@ -365220,7 +366233,7 @@ Nightmare Simulator: installDir: Nightmare Simulator: {} launch: - /Nightmare Simulator.exe: + "/Nightmare Simulator.exe": - when: - os: windows store: steam @@ -365230,7 +366243,7 @@ Nightmare Simulator (INDIEPLAY): installDir: Nightmare Simulator: {} launch: - /NS.exe: + "/NS.exe": - when: - os: windows store: steam @@ -365240,18 +366253,23 @@ Nightmare Trails: installDir: Nightmare Trails: {} launch: - /NightmareTrails.exe: + "/NightmareTrails.exe": - when: + - os: mac + store: steam - bit: 64 os: windows store: steam + - bit: 64 + os: linux + store: steam steam: id: 984810 Nightmare at the lighthouse: installDir: Nightmare at the lighthouse: {} launch: - /Nightmare_at_the_Lighthouse.exe: + "/Nightmare_at_the_Lighthouse.exe": - when: - os: windows store: steam @@ -365259,7 +366277,7 @@ Nightmare at the lighthouse: id: 686380 Nightmare of Decay: files: - /NightmareOfDecay_Data/Saves: + "/NightmareOfDecay_Data/Saves": tags: - save when: @@ -365267,7 +366285,7 @@ Nightmare of Decay: installDir: Nightmare of Decay: {} launch: - /NightmareOfDecay.exe: + "/NightmareOfDecay.exe": - when: - os: windows store: steam @@ -365282,7 +366300,7 @@ Nightmare on Azathoth: installDir: AzathothWindows: {} launch: - /Azathoth.exe: + "/Azathoth.exe": - when: - bit: 64 os: windows @@ -365293,7 +366311,7 @@ NightmareBullet: installDir: NightmareBullet: {} launch: - /NightmareBullet.exe: + "/NightmareBullet.exe": - when: - os: windows store: steam @@ -365303,40 +366321,40 @@ NightmareZ: installDir: NightmareZ: {} launch: - /NightmareZ.exe: + "/NightmareZ.exe": - when: - os: windows store: steam steam: id: 509930 -'Nightmares from the Deep 2: The Siren''s Call': +"Nightmares from the Deep 2: The Siren's Call": files: - /.Artifex Mundi/NightmaresFromTheDeep_TheSirensCall/CE/profile//*.cub: + "/.Artifex Mundi/NightmaresFromTheDeep_TheSirensCall/CE/profile//*.cub": tags: - save when: - os: linux - /.Artifex Mundi/NightmaresFromTheDeep_TheSirensCall/CE/profile//*.prf: + "/.Artifex Mundi/NightmaresFromTheDeep_TheSirensCall/CE/profile//*.prf": tags: - config when: - os: linux - /userdata//284790/remote/profile/*.cub: + "/userdata//284790/remote/profile/*.cub": tags: - save when: - store: steam - /userdata//284790/remote/profile/*.prf: + "/userdata//284790/remote/profile/*.prf": tags: - config when: - store: steam - /Artifex Mundi/NightmaresFromTheDeep_TheSirensCall/CE/profile//*.cub: + "/Artifex Mundi/NightmaresFromTheDeep_TheSirensCall/CE/profile//*.cub": tags: - save when: - os: windows - /Artifex Mundi/NightmaresFromTheDeep_TheSirensCall/CE/profile//*.prf: + "/Artifex Mundi/NightmaresFromTheDeep_TheSirensCall/CE/profile//*.prf": tags: - config when: @@ -365346,55 +366364,55 @@ NightmareZ: installDir: NightmaresFromTheDeep_TheSirensCall: {} launch: - /NightmaresFromTheDeep_TheSirensCall.exe: + "/NightmaresFromTheDeep_TheSirensCall.exe": - when: - bit: 32 os: windows store: steam - /NightmaresFromTheDeep_TheSirensCall_amd64: + "/NightmaresFromTheDeep_TheSirensCall_amd64": - when: - bit: 64 os: linux store: steam - /NightmaresFromTheDeep_TheSirensCall_i386: + "/NightmaresFromTheDeep_TheSirensCall_i386": - when: - bit: 32 os: linux store: steam - /mac_steam.app/Contents/MacOS/mac_steam: + "/mac_steam.app/Contents/MacOS/mac_steam": - when: - os: mac store: steam steam: id: 284790 -'Nightmares from the Deep 3: Davy Jones': +"Nightmares from the Deep 3: Davy Jones": files: - /.Artifex Mundi/NightmaresfromTheDeep_DavyJones/CE/profile//*.cub: + "/.Artifex Mundi/NightmaresfromTheDeep_DavyJones/CE/profile//*.cub": tags: - save when: - os: linux - /.Artifex Mundi/NightmaresfromTheDeep_DavyJones/CE/profile//*.prf: + "/.Artifex Mundi/NightmaresfromTheDeep_DavyJones/CE/profile//*.prf": tags: - config when: - os: linux - /userdata//284810/remote/profile/*.cub: + "/userdata//284810/remote/profile/*.cub": tags: - save when: - store: steam - /userdata//284810/remote/profile/*.prf: + "/userdata//284810/remote/profile/*.prf": tags: - config when: - store: steam - /Artifex Mundi/NightmaresfromTheDeep_DavyJones/CE/profile//*.cub: + "/Artifex Mundi/NightmaresfromTheDeep_DavyJones/CE/profile//*.cub": tags: - save when: - os: windows - /Artifex Mundi/NightmaresfromTheDeep_DavyJones/CE/profile//*.prf: + "/Artifex Mundi/NightmaresfromTheDeep_DavyJones/CE/profile//*.prf": tags: - config when: @@ -365404,54 +366422,54 @@ NightmareZ: installDir: Nightmares from the Deep Davy Jones: {} launch: - /NightmaresFromTheDeep_DavyJones.exe: + "/NightmaresFromTheDeep_DavyJones.exe": - when: - os: windows store: steam - /NightmaresFromTheDeep_DavyJones_amd64: + "/NightmaresFromTheDeep_DavyJones_amd64": - when: - bit: 64 os: linux store: steam - /NightmaresFromTheDeep_DavyJones_i386: + "/NightmaresFromTheDeep_DavyJones_i386": - when: - bit: 32 os: linux store: steam - /mac_steam.app/Contents/MacOS/mac_steam: + "/mac_steam.app/Contents/MacOS/mac_steam": - when: - os: mac store: steam steam: id: 284810 -'Nightmares from the Deep: The Cursed Heart': +"Nightmares from the Deep: The Cursed Heart": files: - /.Artifex Mundi/NightmaresFromTheDeep_TheCursedHeart/CE/profile//*.cub: + "/.Artifex Mundi/NightmaresFromTheDeep_TheCursedHeart/CE/profile//*.cub": tags: - save when: - os: linux - /.Artifex Mundi/NightmaresFromTheDeep_TheCursedHeart/CE/profile//*.prf: + "/.Artifex Mundi/NightmaresFromTheDeep_TheCursedHeart/CE/profile//*.prf": tags: - config when: - os: linux - /userdata//259740/remote/profile/*.cub: + "/userdata//259740/remote/profile/*.cub": tags: - save when: - store: steam - /userdata//259740/remote/profile/*.prf: + "/userdata//259740/remote/profile/*.prf": tags: - config when: - store: steam - /Artifex Mundi/NightmaresFromTheDeep_TheCursedHeart/CE/profile//*.cub: + "/Artifex Mundi/NightmaresFromTheDeep_TheCursedHeart/CE/profile//*.cub": tags: - save when: - os: windows - /Artifex Mundi/NightmaresFromTheDeep_TheCursedHeart/CE/profile//*.prf: + "/Artifex Mundi/NightmaresFromTheDeep_TheCursedHeart/CE/profile//*.prf": tags: - config when: @@ -365461,22 +366479,22 @@ NightmareZ: installDir: Nightmares from the Deep The Cursed Heart: {} launch: - /NightmaresFromTheDeep_TheCursedHeart.exe: + "/NightmaresFromTheDeep_TheCursedHeart.exe": - when: - bit: 32 os: windows store: steam - /NightmaresFromTheDeep_TheCursedHeart_amd64: + "/NightmaresFromTheDeep_TheCursedHeart_amd64": - when: - bit: 64 os: linux store: steam - /NightmaresFromTheDeep_TheCursedHeart_i386: + "/NightmaresFromTheDeep_TheCursedHeart_i386": - when: - bit: 32 os: linux store: steam - /mac_steam.app/Contents/MacOS/mac_steam: + "/mac_steam.app/Contents/MacOS/mac_steam": - when: - os: mac store: steam @@ -365486,7 +366504,7 @@ Nightork Adventures - Beyond the Moons of Shadalee: installDir: Nightork Adventures - Beyond the Moons of Shadalee: {} launch: - /Launcher.exe: + "/Launcher.exe": - when: - os: windows store: steam @@ -365496,7 +366514,7 @@ Nightork Adventures 2 - Legacy of Chaos: installDir: Nightork Adventures 2 - Legacy of Chaos: {} launch: - /Launcher.exe: + "/Launcher.exe": - when: - os: windows store: steam @@ -365506,7 +366524,7 @@ Nights at the Clown Maze: installDir: Nights at the Clown Maze: {} launch: - /Nights_at_the_Clown_Maze.exe: + "/Nights_at_the_Clown_Maze.exe": - when: - os: windows store: steam @@ -365514,17 +366532,17 @@ Nights at the Clown Maze: id: 967430 Nights into Dreams: files: - /Config/Keyboard.cfg: + "/Config/Keyboard.cfg": tags: - config when: - os: windows - /Config/UserConfig.cfg: + "/Config/UserConfig.cfg": tags: - config when: - os: windows - /Nights.sav: + "/Nights.sav": tags: - save when: @@ -365532,8 +366550,8 @@ Nights into Dreams: installDir: NiGHTS Into Dreams: {} launch: - /Launcher.exe: - - arguments: '-q' + "/Launcher.exe": + - arguments: "-q" when: - os: windows store: steam @@ -365544,7 +366562,7 @@ Nights into Dreams: id: 219950 Nights of Azure: files: - /userdata//527280/remote/GAMEDATA*.*: + "/userdata//527280/remote/GAMEDATA*.*": tags: - save when: @@ -365553,7 +366571,7 @@ Nights of Azure: installDir: Nights of Azure: {} launch: - /CNNLauncher.exe: + "/CNNLauncher.exe": - when: - os: windows store: steam @@ -365563,9 +366581,9 @@ Nights of Azure: - config steam: id: 527280 -'Nights of Azure 2: Bride of the New Moon': +"Nights of Azure 2: Bride of the New Moon": files: - /userdata//636570/remote: + "/userdata//636570/remote": tags: - save when: @@ -365573,7 +366591,7 @@ Nights of Azure: installDir: Nights of Azure 2: {} launch: - /Nights of Azure 2_Launcher.exe: + "/Nights of Azure 2_Launcher.exe": - when: - bit: 64 os: windows @@ -365584,7 +366602,7 @@ Nightshade: installDir: Nightshade: {} launch: - /Nightshade.exe: + "/Nightshade.exe": - when: - os: windows store: steam @@ -365596,21 +366614,21 @@ Nightshade (2019): installDir: Nightshade: {} launch: - /nightshade.exe: + "/nightshade.exe": - when: - os: windows store: steam steam: id: 1028500 -'Nightshift Legacy: The Jaguar''s Eye': +"Nightshift Legacy: The Jaguar's Eye": installDir: NightShift Legacy: {} launch: - /The Nightshift Legacy.app: + "/The Nightshift Legacy.app": - when: - os: mac store: steam - /nightshiftlegacy.exe: + "/nightshiftlegacy.exe": - when: - os: windows store: steam @@ -365620,26 +366638,26 @@ Nightside: installDir: Nightside: {} launch: - /NIGHTSIDE: + "/NIGHTSIDE": - when: - bit: 32 os: linux store: steam - /NIGHTSIDE.64: + "/NIGHTSIDE.64": - when: - bit: 64 os: linux store: steam - /NIGHTSIDE.exe: - - arguments: '-force-d3d9' + "/NIGHTSIDE.exe": + - arguments: "-force-d3d9" when: - os: windows store: steam - - arguments: '-force-d3d11' + - arguments: "-force-d3d11" when: - os: windows store: steam - - arguments: '-force-opengl' + - arguments: "-force-opengl" when: - os: windows store: steam @@ -365650,22 +366668,22 @@ Nightstar: NIGHTSTAR: {} steam: id: 511570 -'Nightstar: Alliance': +"Nightstar: Alliance": installDir: NIGHTSTAR Alliance: {} steam: id: 864970 -'Nightstar: Rogue Wings': +"Nightstar: Rogue Wings": installDir: NIGHTSTAR_RogueWings: {} launch: - /RogueWings.exe: + "/RogueWings.exe": - when: - os: windows store: steam steam: id: 595360 -'Nighttime Terror VR: Dessert Defender': +"Nighttime Terror VR: Dessert Defender": installDir: Nighttime Terror Dessert Defender: {} steam: @@ -365673,11 +366691,11 @@ Nightstar: Nightwalk: steam: id: 1056850 -'Nightwolf: Survive the Megadome': +"Nightwolf: Survive the Megadome": installDir: Nightwolf Survive the Megadome: {} launch: - /nightwolf.exe: + "/nightwolf.exe": - when: - os: windows store: steam @@ -365687,7 +366705,7 @@ Nihilist Simulator: installDir: Nihilist Simulator: {} launch: - /Nihilist Simulator.exe: + "/Nihilist Simulator.exe": - when: - os: windows store: steam @@ -365695,19 +366713,19 @@ Nihilist Simulator: id: 576410 Nihilumbra: files: - /*.xml: + "/*.xml": tags: - config - save when: - store: steam - /.config/unity3d/Beautifun Games/Nihilumbra: + "/.config/unity3d/Beautifun Games/Nihilumbra": tags: - config - save when: - os: linux - /AppData/LocalLow/Beautifun Games/Nihilumbra: + "/AppData/LocalLow/Beautifun Games/Nihilumbra": tags: - config - save @@ -365716,83 +366734,83 @@ Nihilumbra: installDir: Nihilumbra: {} launch: - /Nihilumbra.app: + "/Nihilumbra.app": - when: - os: mac store: steam - /Nihilumbra.exe: + "/Nihilumbra.exe": - when: - os: windows store: steam - /x64/Nihilumbra.x86_64: + "/x64/Nihilumbra.x86_64": - when: - bit: 64 os: linux store: steam - workingDir: /x64 - /x86/Nihilumbra.x86: + workingDir: "/x64" + "/x86/Nihilumbra.x86": - when: - bit: 32 os: linux store: steam - workingDir: /x86 + workingDir: "/x86" steam: id: 252670 -'Nijowari: Where Angels Fall': +"Nijowari: Where Angels Fall": installDir: Nijowari - Where Angels Fall: {} launch: - /Nijowari - Where Angels Fall.app/Contents/MacOS/Nijowari - Where Angels Fall: + "/Nijowari - Where Angels Fall.app/Contents/MacOS/Nijowari - Where Angels Fall": - when: - os: mac store: steam - /Nijowari - Where Angels Fall.exe: + "/Nijowari - Where Angels Fall.exe": - when: - os: windows store: steam - /Nijowari - Where Angels Fall.sh: + "/Nijowari - Where Angels Fall.sh": - when: - os: linux store: steam steam: id: 1156980 -'Nikita: The Mystery of the Hidden Treasure': +"Nikita: The Mystery of the Hidden Treasure": files: - /Data/*.scr: + "/Data/*.scr": tags: - config when: - os: windows - /Data/Profiles: + "/Data/Profiles": tags: - save when: - os: windows -'Niko: Through the Dream': +"Niko: Through the Dream": gog: id: 1434446017 installDir: NikoTTD: {} launch: - /Binaries/Win32/NIKO.exe: + "/Binaries/Win32/NIKO.exe": - when: - os: windows store: steam steam: id: 296550 -'Nikopol: Secrets of the Immortals': +"Nikopol: Secrets of the Immortals": files: - /config.ini: + "/config.ini": tags: - config when: - os: windows - /Documents/Nikopol/Profil*/config.lua: + "/Documents/Nikopol/Profil*/config.lua": tags: - config when: - os: windows - /Documents/Nikopol/Profil*/save*.lua: + "/Documents/Nikopol/Profil*/save*.lua": tags: - save when: @@ -365802,16 +366820,16 @@ Nihilumbra: installDir: Nikopol: {} launch: - /Nikopol.exe: + "/Nikopol.exe": - when: - store: steam steam: id: 11370 -'Nil-Ninjahtic: Ronin': +"Nil-Ninjahtic: Ronin": installDir: Nil-Ninjahtic: {} launch: - /Nil-Ninjahtic.exe: + "/Nil-Ninjahtic.exe": - when: - os: windows store: steam @@ -365819,12 +366837,12 @@ Nihilumbra: id: 454130 Nimbatus: files: - /AppData/LocalLow/Nimbatus/Nimbatus/Saves: + "/AppData/LocalLow/Nimbatus/Nimbatus/Saves": tags: - save when: - os: windows - /AppData/LocalLow/Nimbatus/Nimbatus/Settings.ini: + "/AppData/LocalLow/Nimbatus/Nimbatus/Settings.ini": tags: - config when: @@ -365832,26 +366850,26 @@ Nimbatus: installDir: Nimbatus: {} launch: - /Linux/Nimbatus.x86: + "/Linux/Nimbatus.x86": - when: - bit: 32 os: linux store: steam - /Linux/Nimbatus.x86_64: + "/Linux/Nimbatus.x86_64": - when: - bit: 64 os: linux store: steam - /Mac/Nimbatus.app/Contents/MacOS/Nimbatus: + "/Mac/Nimbatus.app/Contents/MacOS/Nimbatus": - when: - os: mac store: steam - /Windows32/Nimbatus.exe: + "/Windows32/Nimbatus.exe": - when: - bit: 32 os: windows store: steam - /Windows64/Nimbatus.exe: + "/Windows64/Nimbatus.exe": - when: - bit: 64 os: windows @@ -365869,15 +366887,15 @@ Nimble Fish: installDir: Nimble Fish: {} launch: - /Linux/nf.x86: + "/Linux/nf.x86": - when: - os: linux store: steam - /MacOS/nf.app/Contents/MacOS/nf: + "/MacOS/nf.app/Contents/MacOS/nf": - when: - os: mac store: steam - /Windows/nf.exe: + "/Windows/nf.exe": - when: - os: windows store: steam @@ -365885,7 +366903,7 @@ Nimble Fish: id: 704440 Nimble Quest: files: - /.config/unity3d/NimbleBit/Nimble Quest: + "/.config/unity3d/NimbleBit/Nimble Quest": tags: - save when: @@ -365893,15 +366911,15 @@ Nimble Quest: installDir: NimbleQuest: {} launch: - /Nimble Quest.app: + "/Nimble Quest.app": - when: - os: mac store: steam - /NimbleQuest-Linux.x86: + "/NimbleQuest-Linux.x86": - when: - os: linux store: steam - /NimbleQuest.exe: + "/NimbleQuest.exe": - when: - os: windows store: steam @@ -365915,7 +366933,7 @@ Nimbus: installDir: Nimbus: {} launch: - /Nimbus.exe: + "/Nimbus.exe": - when: - store: steam steam: @@ -365929,20 +366947,20 @@ NinNinDays: installDir: NinNinDays: {} launch: - /NinNinDays.exe: + "/NinNinDays.exe": - when: - os: windows store: steam steam: id: 1075980 -'Nina: Agent Chronicles': +"Nina: Agent Chronicles": files: - /Save: + "/Save": tags: - config when: - os: windows - /autoexec.cfg: + "/autoexec.cfg": tags: - config when: @@ -365951,7 +366969,7 @@ Nine: installDir: Nine: {} launch: - /Nine.exe: + "/Nine.exe": - when: - os: windows store: steam @@ -365959,12 +366977,12 @@ Nine: id: 582440 Nine Chronicles: files: - /planetarium/keystore: + "/planetarium/keystore": tags: - save when: - os: windows - /planetarium/9c-main: + "/planetarium/9c-main": tags: - save when: @@ -365979,13 +366997,13 @@ Nine Circles of Hell: installDir: NCoH: {} launch: - /jreMac-12.0.2/bin/NCoH: - - arguments: '-Duser.home=. -Xdock:name=NCoH -Xdock:icon=NCoH.icns -jar NCoH.jar' + "/jreMac-12.0.2/bin/NCoH": + - arguments: "-Duser.home=. -Xdock:name=NCoH -Xdock:icon=NCoH.icns -jar NCoH.jar" when: - os: mac store: steam - /jreW64-12.0.2/bin/javaw.exe: - - arguments: '-Duser.home=. -jar NCoH.jar' + "/jreW64-12.0.2/bin/javaw.exe": + - arguments: "-Duser.home=. -jar NCoH.jar" when: - bit: 64 os: windows @@ -365996,7 +367014,7 @@ Nine Hentai Babes: installDir: Nine Hentai Babes: {} launch: - /Nine Hentai Babes.exe: + "/Nine Hentai Babes.exe": - when: - store: steam steam: @@ -366007,15 +367025,15 @@ Nine Noir Lives: installDir: Nine Noir Lives: {} launch: - /Nine Noir Lives.app/Contents/MacOS/Visionaire Player: + "/Nine Noir Lives.app/Contents/MacOS/Visionaire Player": - when: - os: mac store: steam - /NineNoirLives.exe: + "/NineNoirLives.exe": - when: - os: windows store: steam - /start: + "/start": - when: - bit: 64 os: linux @@ -366024,17 +367042,17 @@ Nine Noir Lives: id: 914890 Nine Parchments: files: - /userdata//471550/remote: + "/userdata//471550/remote": tags: - save when: - store: steam - /NineParchments: + "/NineParchments": tags: - save when: - os: windows - /NineParchments/options.txt: + "/NineParchments/options.txt": tags: - config when: @@ -366044,17 +367062,17 @@ Nine Parchments: installDir: Nine Parchments: {} launch: - /nineparchments_64bit.exe: + "/nineparchments_64bit.exe": - when: - os: windows store: steam steam: id: 471550 -'Nine Provinces: Caravan': +"Nine Provinces: Caravan": installDir: Nine Provinces Caravan: {} launch: - /Nine.exe: + "/Nine.exe": - when: - os: windows store: steam @@ -366063,14 +367081,14 @@ Nine Parchments: Nine Sols: steam: id: 1809540 -'Nine Witches: Family Disruption': +"Nine Witches: Family Disruption": files: - /Saved Games/Nine Witches Family Disruption: + "/Saved Games/Nine Witches Family Disruption": tags: - save when: - os: windows - /Saved Games/Nine Witches Family Disruption/UserSettings.xml: + "/Saved Games/Nine Witches Family Disruption/UserSettings.xml": tags: - config when: @@ -366080,22 +367098,22 @@ Nine Sols: installDir: Nine Witches Family Disruption: {} launch: - /NineWitches.exe: + "/NineWitches.exe": - when: - os: windows store: steam steam: id: 1272580 -'Nine Worlds: A Viking Saga': +"Nine Worlds: A Viking Saga": installDir: Nine Worlds: {} launch: - /nineworlds.app: + "/nineworlds.app": - when: - bit: 64 os: mac store: steam - /nineworlds.exe: + "/nineworlds.exe": - when: - bit: 32 os: windows @@ -366106,7 +367124,7 @@ Ninja Avenger Dragon Blade: installDir: Ninja Avenger Dragon Blade: {} launch: - /Ninja Avenger Dragons Blade.exe: + "/Ninja Avenger Dragons Blade.exe": - when: - os: windows store: steam @@ -366114,7 +367132,7 @@ Ninja Avenger Dragon Blade: id: 603790 Ninja Blade: files: - /NinjaBlade: + "/NinjaBlade": tags: - config - save @@ -366123,7 +367141,7 @@ Ninja Blade: installDir: Ninja Blade: {} launch: - /NinjaBlade.exe: + "/NinjaBlade.exe": - when: - store: steam steam: @@ -366132,8 +367150,8 @@ Ninja Cats vs Samurai Dogs: installDir: Ninja Cats vs Samurai Dogs: {} launch: - /NCvSD.exe: - - arguments: '-force-opengl -single-instance' + "/NCvSD.exe": + - arguments: "-force-opengl -single-instance" when: - os: windows store: steam @@ -366143,54 +367161,54 @@ Ninja Code: installDir: Ninja Code: {} launch: - /Ninja Code.exe: + "/Ninja Code.exe": - when: - os: windows store: steam steam: id: 949880 -'Ninja Gaiden 3: Razor''s Edge': +"Ninja Gaiden 3: Razor's Edge": files: - /KoeiTecmo/NINJAGAIDEN3RE//CHAPSSAVE: + "/KoeiTecmo/NINJAGAIDEN3RE//CHAPSSAVE": tags: - save when: - os: windows - /KoeiTecmo/NINJAGAIDEN3RE//REPLYSAVE: + "/KoeiTecmo/NINJAGAIDEN3RE//REPLYSAVE": tags: - save when: - os: windows - /KoeiTecmo/NINJAGAIDEN3RE//REPLYTRIALSSAVE: + "/KoeiTecmo/NINJAGAIDEN3RE//REPLYTRIALSSAVE": tags: - save when: - os: windows - /KoeiTecmo/NINJAGAIDEN3RE//STORYSAV: + "/KoeiTecmo/NINJAGAIDEN3RE//STORYSAV": tags: - save when: - os: windows - /KoeiTecmo/NINJAGAIDEN3RE//SYSTEMSAVE/SYSTEMSAVE.DAT: + "/KoeiTecmo/NINJAGAIDEN3RE//SYSTEMSAVE/SYSTEMSAVE.DAT": tags: - config when: - os: windows - /KoeiTecmo/NINJAGAIDEN3RE//USER_SETTING/WINSTATE.INI: + "/KoeiTecmo/NINJAGAIDEN3RE//USER_SETTING/WINSTATE.INI": tags: - config when: - os: windows - /Packages/946B6A6E.NINJAGAIDEN3RazorsEdge_dkffhzhmh6pmy/SystemAppData/wgs: + "/Packages/946B6A6E.NINJAGAIDEN3RazorsEdge_dkffhzhmh6pmy/SystemAppData/wgs": tags: - save when: - os: windows store: microsoft installDir: - '[NINJA GAIDEN Master Collection] NINJA GAIDEN 3 Razor''s Edge': {} + "[NINJA GAIDEN Master Collection] NINJA GAIDEN 3 Razor's Edge": {} launch: - /NINJA GAIDEN 3 Razor's Edge.exe: + "/NINJA GAIDEN 3 Razor's Edge.exe": - when: - bit: 64 os: windows @@ -366199,31 +367217,31 @@ Ninja Code: id: 1369760 Ninja Gaiden Σ: files: - /KoeiTecmo/NINJAGAIDENSIGMA//SAVEPOINT/*_SAVEDATA.DAT: + "/KoeiTecmo/NINJAGAIDENSIGMA//SAVEPOINT/*_SAVEDATA.DAT": tags: - save when: - os: windows - /KoeiTecmo/NINJAGAIDENSIGMA//SYSTEM/*_SAVE.DAT: + "/KoeiTecmo/NINJAGAIDENSIGMA//SYSTEM/*_SAVE.DAT": tags: - config when: - os: windows - /KoeiTecmo/NINJAGAIDENSIGMA//USER_SETTING/WINSTATE.DAT: + "/KoeiTecmo/NINJAGAIDENSIGMA//USER_SETTING/WINSTATE.DAT": tags: - config when: - os: windows - /Packages/946B6A6E.NINJAGAIDENSIGMA_dkffhzhmh6pmy/SystemAppData/wgs: + "/Packages/946B6A6E.NINJAGAIDENSIGMA_dkffhzhmh6pmy/SystemAppData/wgs": tags: - save when: - os: windows store: microsoft installDir: - '[NINJA GAIDEN Master Collection] NINJA GAIDEN Σ': {} + "[NINJA GAIDEN Master Collection] NINJA GAIDEN Σ": {} launch: - /NINJA GAIDEN SIGMA.exe: + "/NINJA GAIDEN SIGMA.exe": - when: - bit: 64 os: windows @@ -366232,27 +367250,27 @@ Ninja Gaiden Σ: id: 1580780 Ninja Gaiden Σ2: files: - /KoeiTecmo/NINJAGAIDENSIGMA2//CHAPSSAVE: + "/KoeiTecmo/NINJAGAIDENSIGMA2//CHAPSSAVE": tags: - save when: - os: windows - /KoeiTecmo/NINJAGAIDENSIGMA2//STORYSAV: + "/KoeiTecmo/NINJAGAIDENSIGMA2//STORYSAV": tags: - save when: - os: windows - /KoeiTecmo/NINJAGAIDENSIGMA2//SYSTEMSAVE/SYSTEMSAVE.DAT: + "/KoeiTecmo/NINJAGAIDENSIGMA2//SYSTEMSAVE/SYSTEMSAVE.DAT": tags: - config when: - os: windows - /KoeiTecmo/NINJAGAIDENSIGMA2//USER_SETTING/WINSTATE.DAT: + "/KoeiTecmo/NINJAGAIDENSIGMA2//USER_SETTING/WINSTATE.DAT": tags: - config when: - os: windows - /Packages/946B6A6E.NINJAGAIDENSIGMA2_dkffhzhmh6pmy/SystemAppData/wgs: + "/Packages/946B6A6E.NINJAGAIDENSIGMA2_dkffhzhmh6pmy/SystemAppData/wgs": tags: - config - save @@ -366260,9 +367278,9 @@ Ninja Gaiden Σ2: - os: windows store: microsoft installDir: - '[NINJA GAIDEN Master Collection] NINJA GAIDEN Σ2': {} + "[NINJA GAIDEN Master Collection] NINJA GAIDEN Σ2": {} launch: - /NINJA GAIDEN SIGMA2.exe: + "/NINJA GAIDEN SIGMA2.exe": - when: - bit: 64 os: windows @@ -366279,7 +367297,7 @@ Ninja Girl and the Mysterious Army of Urban Legend Monsters! ~Hunt of the Headle installDir: Ninja Girl and the Mysterious Army of Urban Legend Monsters! ~Hunt of the Headless Horseman~: {} launch: - /NinjaGirl.exe: + "/NinjaGirl.exe": - when: - store: steam steam: @@ -366288,8 +367306,8 @@ Ninja Goemon and Immortal Jewels: installDir: Ninja Goemon and Immortal Jewels: {} launch: - /game.exe: - - arguments: '-windowed' + "/game.exe": + - arguments: "-windowed" when: - os: windows store: steam @@ -366301,32 +367319,32 @@ Ninja Guy: installDir: Ninja Guy: {} launch: - /NinjaGuy.app: + "/NinjaGuy.app": - when: - os: mac store: steam - /NinjaGuy.x86: + "/NinjaGuy.x86": - when: - bit: 32 os: linux store: steam - /NinjaGuy.x86_64: + "/NinjaGuy.x86_64": - when: - bit: 64 os: linux store: steam - /game.exe: + "/game.exe": - when: - store: steam - /ninjaguy.exe: + "/ninjaguy.exe": - when: - os: windows store: steam steam: id: 340630 -'Ninja JaJaMaru: The Great Yokai Battle + Hell': +"Ninja JaJaMaru: The Great Yokai Battle + Hell": files: - /City Connection/JajaHell/JAJACOLESYSTEM.bin: + "/City Connection/JajaHell/JAJACOLESYSTEM.bin": tags: - save when: @@ -366334,7 +367352,7 @@ Ninja Guy: installDir: Ninja JaJaMaru The Great Yokai Battle: {} launch: - /jaja.exe: + "/jaja.exe": - when: - os: windows store: steam @@ -366344,7 +367362,7 @@ Ninja Jump: installDir: Ninja jump: {} launch: - /ninja.exe: + "/ninja.exe": - when: - store: steam steam: @@ -366353,7 +367371,7 @@ Ninja Kiwi Archive: installDir: Ninja Kiwi Archive: {} launch: - /Ninja Kiwi Archive.exe: + "/Ninja Kiwi Archive.exe": - when: - bit: 64 os: windows @@ -366369,14 +367387,14 @@ Ninja Midori: installDir: Ninja Midori: {} launch: - /ninjamidori.app: + "/ninjamidori.app": - when: - store: steam - /ninjamidori.exe: + "/ninjamidori.exe": - when: - os: windows store: steam - /ninjamidori.sh: + "/ninjamidori.sh": - when: - os: linux store: steam @@ -366386,11 +367404,11 @@ Ninja Outbreak: installDir: Ninja Outbreak: {} launch: - /NinjaOutbreak.app: + "/NinjaOutbreak.app": - when: - os: mac store: steam - /NinjaOutbreak.exe: + "/NinjaOutbreak.exe": - when: - os: windows store: steam @@ -366398,7 +367416,7 @@ Ninja Outbreak: id: 453880 Ninja Pizza Girl: files: - /AppData/LocalLow/Disparity Games/Ninja Pizza Girl//NPGSaveData.dat: + "/AppData/LocalLow/Disparity Games/Ninja Pizza Girl//NPGSaveData.dat": tags: - save when: @@ -366406,20 +367424,20 @@ Ninja Pizza Girl: installDir: NinjaPizzaGirl: {} launch: - /NinjaPizzaGirl.app: + "/NinjaPizzaGirl.app": - when: - os: mac store: steam - /NinjaPizzaGirl.exe: + "/NinjaPizzaGirl.exe": - when: - os: windows store: steam - /NinjaPizzaGirl.x86: + "/NinjaPizzaGirl.x86": - when: - bit: 32 os: linux store: steam - /NinjaPizzaGirl.x86_64: + "/NinjaPizzaGirl.x86_64": - when: - bit: 64 os: linux @@ -366434,7 +367452,7 @@ Ninja Power Slasher: installDir: Ninja Power Slasher: {} launch: - /Ninja power slasher.exe: + "/Ninja power slasher.exe": - when: - os: windows store: steam @@ -366442,7 +367460,7 @@ Ninja Power Slasher: id: 997670 Ninja Reflex: files: - /save.dat: + "/save.dat": tags: - save when: @@ -366450,7 +367468,7 @@ Ninja Reflex: installDir: Ninja Reflex: {} launch: - /NinjaReflex.exe: + "/NinjaReflex.exe": - when: - store: steam registry: @@ -366463,7 +367481,7 @@ Ninja Roquinexu: installDir: Ninja Roquinexu: {} launch: - /Ninja Roquinexu.exe: + "/Ninja Roquinexu.exe": - when: - os: windows store: steam @@ -366471,7 +367489,7 @@ Ninja Roquinexu: id: 1081190 Ninja Run: files: - /AppData/Local/Side_Scrolling_Runner/ninja_run_save.ini: + "/AppData/Local/Side_Scrolling_Runner/ninja_run_save.ini": tags: - save when: @@ -366479,7 +367497,7 @@ Ninja Run: installDir: Ninja Run: {} launch: - /Ninja Run.exe: + "/Ninja Run.exe": - when: - os: windows store: steam @@ -366487,19 +367505,19 @@ Ninja Run: id: 1201250 Ninja Senki: files: - /gamepad.cfg: + "/gamepad.cfg": tags: - config when: - os: windows Ninja Senki DX: files: - /NinjaSenkiDX/SaveGame: + "/NinjaSenkiDX/SaveGame": tags: - save when: - os: windows - /NinjaSenkiDX/keyboard.cfg: + "/NinjaSenkiDX/keyboard.cfg": tags: - config when: @@ -366507,11 +367525,11 @@ Ninja Senki DX: installDir: Ninja Senki DX: {} launch: - /NinjaSenkiDX.app/Contents/MacOS/Mac_Runner: + "/NinjaSenkiDX.app/Contents/MacOS/Mac_Runner": - when: - os: mac store: steam - /NinjaSenkiDX.exe: + "/NinjaSenkiDX.exe": - when: - os: windows store: steam @@ -366521,20 +367539,20 @@ Ninja Shodown: installDir: Ninja Shodown: {} launch: - /Ninja Shodown.app/Contents/MacOS/Ninja Shodown: + "/Ninja Shodown.app/Contents/MacOS/Ninja Shodown": - when: - os: mac store: steam - /Ninja Shodown.exe: + "/Ninja Shodown.exe": - when: - os: windows store: steam - /Ninja Shodown.x86: + "/Ninja Shodown.x86": - when: - bit: 32 os: linux store: steam - /Ninja Shodown.x86_64: + "/Ninja Shodown.x86_64": - when: - bit: 64 os: linux @@ -366545,7 +367563,7 @@ Ninja Smasher!: installDir: Ninja Smasher!: {} launch: - /NinjaSmasher.exe: + "/NinjaSmasher.exe": - when: - store: steam steam: @@ -366554,7 +367572,7 @@ Ninja SpeedRush: installDir: Ninja SpeedRush: {} launch: - /Ninja SpeedRush.exe: + "/Ninja SpeedRush.exe": - when: - os: windows store: steam @@ -366562,7 +367580,7 @@ Ninja SpeedRush: id: 888480 Ninja Stealth: files: - /Ninja Stealth/Save: + "/Ninja Stealth/Save": tags: - save when: @@ -366570,7 +367588,7 @@ Ninja Stealth: installDir: SC Jogos: {} launch: - /Ninja Stealth/Ninja Stealth.exe: + "/Ninja Stealth/Ninja Stealth.exe": - when: - os: windows store: steam @@ -366580,7 +367598,7 @@ Ninja Stealth 2: installDir: SC Jogos: {} launch: - /Ninja Stealth 2/Ninja Stealth 2.exe: + "/Ninja Stealth 2/Ninja Stealth 2.exe": - when: - os: windows store: steam @@ -366590,7 +367608,7 @@ Ninja Stealth 3: installDir: SC Jogos: {} launch: - /Ninja Stealth 3/Ninja Stealth 3.exe: + "/Ninja Stealth 3/Ninja Stealth 3.exe": - when: - os: windows store: steam @@ -366600,7 +367618,7 @@ Ninja Striker!: installDir: Ninja Striker!: {} launch: - /NinjaStriker.exe: + "/NinjaStriker.exe": - when: - store: steam steam: @@ -366609,46 +367627,35 @@ Ninja Turdle: installDir: Ninja Turdle: {} launch: - /Ninja Turdle - Linux x64/Ninja Turdle: + "/Ninja Turdle - Linux x64/Ninja Turdle": - when: - bit: 64 os: linux store: steam - /Ninja Turdle - Windows x64/Ninja Turdle.exe: + "/Ninja Turdle - Windows x64/Ninja Turdle.exe": - when: - bit: 64 os: windows store: steam - /Ninja Turdle.app/Contents/MacOS/Ninja Turdle: + "/Ninja Turdle.app/Contents/MacOS/Ninja Turdle": - when: - os: mac store: steam steam: id: 1082460 Ninja Tycoon: - files: - /home/*/.config/unity3d/Endless Loop Studios/Ninja Tycoon: - tags: - - config - when: - - os: linux - /home/*/.steam/steamapps/common/Ninja Tycoon/NinjaTycoon_Data/Saves: - tags: - - save - when: - - os: linux installDir: Ninja Tycoon: {} launch: - /NinjaTycoon.app: + "/NinjaTycoon.app": - when: - os: mac store: steam - /NinjaTycoon.exe: + "/NinjaTycoon.exe": - when: - os: windows store: steam - /NinjaTycoon.x86: + "/NinjaTycoon.x86": - when: - os: linux store: steam @@ -366658,7 +367665,7 @@ Ninja Village War 2: installDir: rencun: {} launch: - /RencunFlashLobby.exe: + "/RencunFlashLobby.exe": - when: - os: windows store: steam @@ -366668,15 +367675,15 @@ Ninja Way: installDir: Ninja Way: {} launch: - /Ninja Way.app/Contents/MacOS/Ninja Way: + "/Ninja Way.app/Contents/MacOS/Ninja Way": - when: - os: mac store: steam - /Ninja Way.exe: + "/Ninja Way.exe": - when: - os: windows store: steam - /Ninja Way.x86: + "/Ninja Way.x86": - when: - os: linux store: steam @@ -366694,7 +367701,7 @@ Ninja?: installDir: Ninja: {} launch: - /Ninja.exe: + "/Ninja.exe": - when: - os: windows store: steam @@ -366704,7 +367711,7 @@ Ninjahtic: installDir: Ninjahtic: {} launch: - /Ninjahtic.exe: + "/Ninjahtic.exe": - when: - os: windows store: steam @@ -366714,40 +367721,40 @@ Ninjahtic Mind Tricks: installDir: Ninjahtic Mind Tricks: {} launch: - /Ninjahtic Mind Tricks.exe: + "/Ninjahtic Mind Tricks.exe": - when: - os: windows store: steam steam: id: 387880 -'Ninjin: Clash of Carrots': +"Ninjin: Clash of Carrots": installDir: Ninjin Clash of Carrots: {} launch: - /NinjinClashOfCarrots.exe: + "/NinjinClashOfCarrots.exe": - when: - os: windows store: steam steam: id: 809870 -Nino's Isekai: +"Nino's Isekai": installDir: NinoIsekai: {} launch: - /NinoIsekai.exe: + "/NinoIsekai.exe": - when: - os: windows store: steam steam: id: 1078960 -'Nioh 2: The Complete Edition': +"Nioh 2: The Complete Edition": files: - /KoeiTecmo/NIOH2: + "/KoeiTecmo/NIOH2": tags: - config when: - os: windows - /KoeiTecmo/NIOH2/Savedata/: + "/KoeiTecmo/NIOH2/Savedata/": tags: - save when: @@ -366755,19 +367762,19 @@ Nino's Isekai: installDir: Nioh2: {} launch: - /nioh2.exe: + "/nioh2.exe": - when: - store: steam steam: id: 1325200 -'Nioh: Complete Edition': +"Nioh: Complete Edition": files: - /KoeiTecmo/NIOH: + "/KoeiTecmo/NIOH": tags: - config when: - os: windows - /KoeiTecmo/NIOH/Savedata: + "/KoeiTecmo/NIOH/Savedata": tags: - save when: @@ -366775,25 +367782,25 @@ Nino's Isekai: installDir: Nioh: {} launch: - /nioh.exe: + "/nioh.exe": - when: - bit: 64 os: windows store: steam - /nioh_launcher.exe: + "/nioh_launcher.exe": - when: - bit: 64 os: windows store: steam steam: id: 485510 -Niplheim's Hunter - Branded Azel: +"Niplheim's Hunter - Branded Azel": gog: id: 1436570317 installDir: - Niplheim's Hunter - Branded Azel: {} + "Niplheim's Hunter - Branded Azel": {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -366803,7 +367810,7 @@ Nippon Ecchi Jigsaw: installDir: Nippon Ecchi Jigsaw: {} launch: - /ecchijigsaw.exe: + "/ecchijigsaw.exe": - when: - bit: 64 os: windows @@ -366812,12 +367819,12 @@ Nippon Ecchi Jigsaw: id: 1019240 Nippon Marathon: files: - /.config/unity3d/OnionSoupInteractive/Nippon Marathon/SmoothSave####: + "/.config/unity3d/OnionSoupInteractive/Nippon Marathon/SmoothSave####": tags: - save when: - os: linux - /AppData/LocalLow/OnionSoupInteractive/Nippon Marathon/SmoothSave####: + "/AppData/LocalLow/OnionSoupInteractive/Nippon Marathon/SmoothSave####": tags: - save when: @@ -366825,40 +367832,40 @@ Nippon Marathon: installDir: Nippon Marathon: {} launch: - /NipponMarathon.app/Contents/MacOS/NipponMarathon: + "/NipponMarathon.app/Contents/MacOS/NipponMarathon": - when: - os: mac store: steam - /NipponMarathon.exe: + "/NipponMarathon.exe": - when: - os: windows store: steam - /NipponMarathon.x86: + "/NipponMarathon.x86": - when: - os: linux store: steam steam: id: 746940 -'Nippon Safes, Inc.': +"Nippon Safes, Inc.": files: - /GAME.*: + "/GAME.*": tags: - save when: - os: dos - /SAVEGAME: + "/SAVEGAME": tags: - save when: - os: dos Nira: files: - /Nira/save.ini: + "/Nira/save.ini": tags: - save when: - os: windows - /Nira/settings.ini: + "/Nira/settings.ini": tags: - config when: @@ -366866,7 +367873,7 @@ Nira: installDir: Nira: {} launch: - /nira.exe: + "/nira.exe": - when: - os: windows store: steam @@ -366876,49 +367883,49 @@ Nirvana Pilot Yume: installDir: Nirvana Pilot Yume: {} launch: - /NirvanaPilotYume.app: + "/NirvanaPilotYume.app": - when: - os: mac store: steam - /NirvanaPilotYume.exe: + "/NirvanaPilotYume.exe": - when: - os: windows store: steam - /NirvanaPilotYume.x86_64: + "/NirvanaPilotYume.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 716680 -'Nirvana: The First Travel': +"Nirvana: The First Travel": installDir: Nirvana The First Travel: {} launch: - /nirvanaTFT.exe: + "/nirvanaTFT.exe": - when: - os: windows store: steam steam: id: 386630 -'NitorInc.: Touhou Microgames!': +"NitorInc.: Touhou Microgames!": steam: id: 772260 Nitro Family: files: - /SaveGame: + "/SaveGame": tags: - save when: - os: windows - /Scripts: + "/Scripts": tags: - config when: - os: windows Nitro Racers: files: - /NITRO-X.CFG: + "/NITRO-X.CFG": tags: - config when: @@ -366933,7 +367940,7 @@ NitroRage: installDir: NitroRage: {} launch: - /NitroRage.exe: + "/NitroRage.exe": - when: - bit: 64 os: windows @@ -366945,19 +367952,19 @@ Nitroneers: id: 1106910 Nitronic Rush: files: - /config: + "/config": tags: - config when: - os: windows - /digipen/nitronic_rush: + "/digipen/nitronic_rush": tags: - save when: - os: windows -'Nitroplus Blasterz: Heroines Infinite Duel': +"Nitroplus Blasterz: Heroines Infinite Duel": files: - /SaveData: + "/SaveData": tags: - config - save @@ -366966,7 +367973,7 @@ Nitronic Rush: installDir: Nitroplus Blasterz Heroines Infinite Duel: {} launch: - /Nitroplus Blasterz.exe: + "/Nitroplus Blasterz.exe": - when: - os: windows store: steam @@ -366979,8 +367986,8 @@ No Captain Allowed!: installDir: NoCaptainAllowed: {} launch: - /WindowsNoEditor/Project_Respawn.exe: - - arguments: '-nohmd' + "/WindowsNoEditor/Project_Respawn.exe": + - arguments: "-nohmd" when: - bit: 64 os: windows @@ -366991,7 +367998,7 @@ No Cat Fights Here: installDir: No Cat Fights Here: {} launch: - /No Cat Fights Here.exe: + "/No Cat Fights Here.exe": - when: - os: windows store: steam @@ -367009,7 +368016,7 @@ No Crossing: installDir: No Crossing: {} launch: - /NoCrossing.exe: + "/NoCrossing.exe": - when: - os: windows store: steam @@ -367019,7 +368026,7 @@ No Escape: installDir: No Escape: {} launch: - /NoEscape.exe: + "/NoEscape.exe": - when: - bit: 64 os: windows @@ -367030,7 +368037,7 @@ No God for Us: installDir: No God for Us: {} launch: - /No God for us.exe: + "/No God for us.exe": - when: - os: windows store: steam @@ -367040,11 +368047,11 @@ No Heroes Here: installDir: NoHeroesHere: {} launch: - /NHH_Build.app/Contents/MacOS/NHH_Build: + "/NHH_Build.app/Contents/MacOS/NHH_Build": - when: - os: mac store: steam - /NHH_Build.exe: + "/NHH_Build.exe": - when: - os: windows store: steam @@ -367054,7 +368061,7 @@ No King No Kingdom: installDir: No King No Kingdom: {} launch: - /No King No Kingdom.exe: + "/No King No Kingdom.exe": - when: - os: windows store: steam @@ -367069,21 +368076,21 @@ No Lights: installDir: NoLights: {} launch: - /NoLighs.x86: + "/NoLighs.x86": - when: - bit: 32 os: linux store: steam - /NoLighs.x86_64: + "/NoLighs.x86_64": - when: - bit: 64 os: linux store: steam - /nolights.app/Contents/MacOS/nolights: + "/nolights.app/Contents/MacOS/nolights": - when: - os: mac store: steam - /nolights.exe: + "/nolights.exe": - when: - os: windows store: steam @@ -367095,53 +368102,53 @@ No Longer Home: installDir: No Longer Home: {} launch: - /NoLongerHome.app/Contents/MacOS/NoLongerHome: + "/NoLongerHome.app/Contents/MacOS/NoLongerHome": - when: - os: mac store: steam - /NoLongerHome.exe: + "/NoLongerHome.exe": - when: - bit: 64 os: windows store: steam - /NoLongerHome.x86_64: + "/NoLongerHome.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 651490 -No Man's Land: +"No Man's Land": files: - /Run/engine.ini: + "/Run/engine.ini": tags: - config when: - os: windows - /Run/savegame: + "/Run/savegame": tags: - save when: - os: windows -No Man's Sky: +"No Man's Sky": files: - /Binaries/SETTINGS: + "/Binaries/SETTINGS": tags: - config when: - os: windows - /HelloGames/NMS: + "/HelloGames/NMS": tags: - save when: - os: windows - /Packages/HelloGames.NoMansSky_bs190hzg1sesy/LocalCache/Local/Microsoft/WritablePackageRoot/Binaries/SETTINGS: + "/Packages/HelloGames.NoMansSky_bs190hzg1sesy/LocalCache/Local/Microsoft/WritablePackageRoot/Binaries/SETTINGS": tags: - config when: - os: windows store: microsoft - /Packages/HelloGames.NoMansSky_bs190hzg1sesy/SystemAppData/wgs: + "/Packages/HelloGames.NoMansSky_bs190hzg1sesy/SystemAppData/wgs": tags: - save when: @@ -367150,32 +368157,32 @@ No Man's Sky: gog: id: 1446213994 installDir: - No Man's Sky: {} + "No Man's Sky": {} launch: - /Binaries/NMS.exe: + "/Binaries/NMS.exe": - when: - os: windows store: steam - workingDir: /Binaries + workingDir: "/Binaries" steam: id: 275850 No Mans Land: installDir: NoMansLand: {} launch: - /NoMansLandBeta.exe: + "/NoMansLandBeta.exe": - when: - store: steam steam: id: 666560 No More Heroes: files: - /Saved Games/NMH: + "/Saved Games/NMH": tags: - config when: - os: windows - /Saved Games/NMH/saves: + "/Saved Games/NMH/saves": tags: - save when: @@ -367183,20 +368190,20 @@ No More Heroes: installDir: No More Heroes: {} launch: - /nmh.exe: + "/nmh.exe": - when: - os: windows store: steam steam: id: 1420290 -'No More Heroes 2: Desperate Struggle': +"No More Heroes 2: Desperate Struggle": files: - /Saved Games/NMH2: + "/Saved Games/NMH2": tags: - config when: - os: windows - /Saved Games/NMH2/saves: + "/Saved Games/NMH2/saves": tags: - save when: @@ -367204,7 +368211,7 @@ No More Heroes: installDir: No More Heroes 2 Desperate Struggle: {} launch: - /nmh2.exe: + "/nmh2.exe": - when: - os: windows store: steam @@ -367212,12 +368219,12 @@ No More Heroes: id: 1420300 No More Heroes 3: files: - /No More Heroes 3/Saved/Config/WindowsNoEditor: + "/No More Heroes 3/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /No More Heroes 3/Saved/SaveGames: + "/No More Heroes 3/Saved/SaveGames": tags: - save when: @@ -367225,7 +368232,7 @@ No More Heroes 3: installDir: No More Heroes 3: {} launch: - /nmh3.exe: + "/nmh3.exe": - when: - os: windows store: steam @@ -367235,7 +368242,7 @@ No More Heroes III: installDir: No More Heroes 3: {} launch: - /nmh3.exe: + "/nmh3.exe": - when: - os: windows store: steam @@ -367248,7 +368255,7 @@ No More Pop Music - Annihilation: installDir: No More Pop Music - Annihilation: {} launch: - /NoMorePopMusic.exe: + "/NoMorePopMusic.exe": - when: - os: windows store: steam @@ -367256,7 +368263,7 @@ No More Pop Music - Annihilation: id: 769230 No More Room in Hell: files: - /nmrih/cfg: + "/nmrih/cfg": tags: - config when: @@ -367264,13 +368271,13 @@ No More Room in Hell: installDir: nmrih: {} launch: - /hl2.sh: - - arguments: '-steam -game nmrih' + "/hl2.sh": + - arguments: "-steam -game nmrih" when: - os: linux store: steam - /nmrih.exe: - - arguments: '-steam -game nmrih' + "/nmrih.exe": + - arguments: "-steam -game nmrih" when: - os: windows store: steam @@ -367288,45 +368295,45 @@ No One But You: installDir: No One But You: {} launch: - /NOBY.app: + "/NOBY.app": - when: - os: mac store: steam - /NOBY.exe: + "/NOBY.exe": - when: - os: windows store: steam - /NOBY.sh: + "/NOBY.sh": - when: - os: linux store: steam steam: id: 367020 -'No One Lives Forever 2: A Spy in H.A.R.M.''s Way': +"No One Lives Forever 2: A Spy in H.A.R.M.'s Way": files: - /*.cfg: + "/*.cfg": tags: - config when: - os: windows - /Save/Player/SinglePlayer: + "/Save/Player/SinglePlayer": tags: - save when: - os: windows No One Lives in Heaven: files: - /Game.app/Contents/Resources/app.nw/*.json: + "/Game.app/Contents/Resources/app.nw/*.json": tags: - save when: - os: mac - /MEISTERVERSION/save/*.rpgsave: + "/MEISTERVERSION/save/*.rpgsave": tags: - save when: - os: windows - /save/*.rpgsave: + "/save/*.rpgsave": tags: - save when: @@ -367336,15 +368343,15 @@ No One Lives in Heaven: installDir: No one lives in heaven: {} launch: - /Game.app: + "/Game.app": - when: - os: mac store: steam - /Game.exe: + "/Game.exe": - when: - os: windows store: steam - /Linux/MEISTERVERSION/Game: + "/Linux/MEISTERVERSION/Game": - when: - os: linux store: steam @@ -367355,12 +368362,12 @@ No Ordinary Elevator: id: 763880 No Pineapple Left Behind: files: - /nplb_Data/Data/config.txt: + "/nplb_Data/Data/config.txt": tags: - config when: - os: windows - /NPLB_Save_File/save.nplb: + "/NPLB_Save_File/save.nplb": tags: - save when: @@ -367370,25 +368377,25 @@ No Pineapple Left Behind: installDir: No Pineapple Left Behind: {} launch: - /nplb.app: + "/nplb.app": - when: - os: mac store: steam - /nplb.exe: + "/nplb.exe": - when: - os: windows store: steam - /nplb.x86: + "/nplb.x86": - when: - bit: 32 os: linux store: steam - /nplb.x86_64: + "/nplb.x86_64": - when: - bit: 64 os: linux store: steam - /nplb_old_computer.sh: + "/nplb_old_computer.sh": - when: - os: linux store: steam @@ -367404,12 +368411,12 @@ No Place for Bravery: installDir: No Place for Bravery: {} launch: - /No Place for Bravery.exe: + "/No Place for Bravery.exe": - when: - bit: 64 os: windows store: steam - /No Place for Bravery.x86_64: + "/No Place for Bravery.x86_64": - when: - bit: 64 os: linux @@ -367423,7 +368430,7 @@ No Safety: installDir: No safety: {} launch: - /No safety.exe: + "/No safety.exe": - when: - store: steam steam: @@ -367432,7 +368439,7 @@ No Seat?: installDir: NoSeat: {} launch: - /noseat.exe: + "/noseat.exe": - when: - os: windows store: steam @@ -367445,11 +368452,11 @@ No Stick Shooter: installDir: No Stick Shooter: {} launch: - /NoStickShooter.app/Contents/MacOS/NoStickShooter: + "/NoStickShooter.app/Contents/MacOS/NoStickShooter": - when: - os: mac store: steam - /NoStickShooter.exe: + "/NoStickShooter.exe": - when: - os: windows store: steam @@ -367457,12 +368464,12 @@ No Stick Shooter: id: 616880 No Straight Roads: files: - /NoStraightRoads/Saved/Config/WindowsNoEditor: + "/NoStraightRoads/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /NoStraightRoads/Saved/SaveGames: + "/NoStraightRoads/Saved/SaveGames": tags: - save when: @@ -367470,7 +368477,7 @@ No Straight Roads: installDir: No Straight Roads: {} launch: - /NoStraightRoads.exe: + "/NoStraightRoads.exe": - when: - bit: 64 os: windows @@ -367481,12 +368488,12 @@ No Time: installDir: No Time: {} launch: - /32-Bit/NoTime32.exe: + "/32-Bit/NoTime32.exe": - when: - bit: 32 os: windows store: steam - /64-Bit/NoTime64.exe: + "/64-Bit/NoTime64.exe": - when: - bit: 64 os: windows @@ -367497,7 +368504,7 @@ No Time To Live: installDir: No_Time_To_Live: {} launch: - /NoTimeToLive.exe: + "/NoTimeToLive.exe": - when: - os: windows store: steam @@ -367505,7 +368512,7 @@ No Time To Live: id: 397940 No Time to Explain: files: - /userdata//227280/remote: + "/userdata//227280/remote": tags: - config - save @@ -367514,28 +368521,28 @@ No Time to Explain: installDir: No Time to Explain: {} launch: - /NoTime/NoTimeToExplain.exe: - - arguments: '-console' + "/NoTime/NoTimeToExplain.exe": + - arguments: "-console" when: - os: windows store: steam - workingDir: /NoTime - /no-time-to-explain/build/NoTimeToExplain.app: - - arguments: '-console' + workingDir: "/NoTime" + "/no-time-to-explain/build/NoTimeToExplain.app": + - arguments: "-console" when: - os: mac store: steam - workingDir: /no-time-to-explain + workingDir: "/no-time-to-explain" steam: id: 227280 No Time to Explain Remastered: files: - /.config/unity3d/tinyBuild GAMES/No Time To Explain: + "/.config/unity3d/tinyBuild GAMES/No Time To Explain": tags: - config when: - os: linux - /userdata//368730/remote: + "/userdata//368730/remote": tags: - save when: @@ -367543,15 +368550,15 @@ No Time to Explain Remastered: installDir: No Time To Explain Remastered: {} launch: - /NoTimeToExplain.app: + "/NoTimeToExplain.app": - when: - os: mac store: steam - /NoTimeToExplain.exe: + "/NoTimeToExplain.exe": - when: - os: windows store: steam - /NoTimeToExplain.x86: + "/NoTimeToExplain.x86": - when: - os: linux store: steam @@ -367565,21 +368572,21 @@ No Time to Relax: installDir: No Time to Relax: {} launch: - /No Time to Relax.app/Contents/MacOS/No Time to Relax: + "/No Time to Relax.app/Contents/MacOS/No Time to Relax": - when: - os: mac store: steam - /No Time to Relax.exe: + "/No Time to Relax.exe": - when: - os: windows store: steam steam: id: 829660 -'No Turning Back: The Pixel Art Action-Adventure Roguelike': +"No Turning Back: The Pixel Art Action-Adventure Roguelike": installDir: No Turning Back The Pixel Art Action-Adventure Roguelike: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -367589,7 +368596,7 @@ No Way Out: installDir: No Way Out: {} launch: - /NoWayOut.exe: + "/NoWayOut.exe": - when: - store: steam steam: @@ -367603,18 +368610,18 @@ No1Left: installDir: No1Left: {} launch: - /No1Left.exe: + "/No1Left.exe": - when: - os: windows store: steam steam: id: 409580 -'No70: Eye of Basir': +"No70: Eye of Basir": installDir: No70EyeOfBasir: {} launch: - /No70EyeOfBasir.exe: - - arguments: '-nohmd' + "/No70EyeOfBasir.exe": + - arguments: "-nohmd" when: - os: windows store: steam @@ -367625,12 +368632,12 @@ NoGame: id: 865400 NoLimits 2 Roller Coaster Simulation: files: - /com.nolimitscoaster.nolimits2: + "/com.nolimitscoaster.nolimits2": tags: - config when: - os: windows - /com.nolimitscoaster.nolimits2: + "/com.nolimitscoaster.nolimits2": tags: - save when: @@ -367638,17 +368645,17 @@ NoLimits 2 Roller Coaster Simulation: installDir: NoLimits 2: {} launch: - /32bit/nolimits2stm.exe: + "/32bit/nolimits2stm.exe": - when: - bit: 32 os: windows store: steam - /64bit/nolimits2stm.exe: + "/64bit/nolimits2stm.exe": - when: - bit: 64 os: windows store: steam - /macos/NoLimits2.app: + "/macos/NoLimits2.app": - when: - os: mac store: steam @@ -367658,7 +368665,7 @@ NoReload Heroes: installDir: NoReload Heroes: {} launch: - /NoReloadHeroes.exe: + "/NoReloadHeroes.exe": - when: - os: windows store: steam @@ -367668,18 +368675,18 @@ Noahmund: installDir: Noahmund: {} launch: - /Noahmund.exe: + "/Noahmund.exe": - when: - bit: 64 os: windows store: steam steam: id: 752560 -'Noble Armada: Lost Worlds': +"Noble Armada: Lost Worlds": installDir: Noble Armada Lost Worlds: {} launch: - /NALW.exe: + "/NALW.exe": - when: - store: steam steam: @@ -367688,29 +368695,29 @@ Noble Crusade: installDir: Noble Crusade: {} launch: - /data/Noble-Crusade.exe: + "/data/Noble-Crusade.exe": - when: - os: windows store: steam - workingDir: /data + workingDir: "/data" steam: id: 871150 Noble In Exile: installDir: Noble In Exile 落魄之家: {} launch: - /NobleInExile.exe: + "/NobleInExile.exe": - when: - os: windows store: steam steam: id: 955600 -Noble Woman's Pastries: +"Noble Woman's Pastries": steam: id: 1195980 Nobodies: files: - /unity3d/Blyts/Nobodies/prefs: + "/unity3d/Blyts/Nobodies/prefs": tags: - config - save @@ -367719,15 +368726,15 @@ Nobodies: installDir: Nobodies: {} launch: - /Nobodies.app: + "/Nobodies.app": - when: - os: mac store: steam - /Nobodies.exe: + "/Nobodies.exe": - when: - os: windows store: steam - /Nobodies_Linux.x86_64: + "/Nobodies_Linux.x86_64": - when: - os: linux store: steam @@ -367742,7 +368749,7 @@ Nobody Knows: installDir: MyGame: {} launch: - /Nobody Knows.exe: + "/Nobody Knows.exe": - when: - os: windows store: steam @@ -367750,24 +368757,25 @@ Nobody Knows: id: 824520 Nobody Saves the World: files: - /userdata//1432050: + "/userdata//1432050": tags: - save when: - store: steam - /NStW: + "/NStW": tags: - config - save when: - os: windows - /NStW_GOG: + "/NStW_GOG": tags: - config - save when: - - store: gog - /Packages/DrinkboxStudios.NobodySavestheWorld_n8jvyy2pw6mya/SystemAppData: + - os: windows + store: gog + "/Packages/DrinkboxStudios.NobodySavestheWorld_n8jvyy2pw6mya/SystemAppData": tags: - save when: @@ -367778,22 +368786,22 @@ Nobody Saves the World: installDir: Nobody Saves the World: {} launch: - /NStW_x64.exe: + "/NStW_x64.exe": - when: - bit: 64 os: windows store: steam steam: id: 1432050 -'Nobody: The Turnaround': +"Nobody: The Turnaround": installDir: Nobody: {} launch: - /Nobody.app: + "/Nobody.app": - when: - os: mac store: steam - /Nobody.exe: + "/Nobody.exe": - when: - os: windows store: steam @@ -367802,205 +368810,205 @@ Nobody Saves the World: Nobophobia: steam: id: 944560 -Nobunaga's Ambition: +"Nobunaga's Ambition": installDir: Nobunaga1: {} launch: - /Nobunaga1_Launcher.exe: + "/Nobunaga1_Launcher.exe": - when: - os: windows store: steam steam: id: 544990 -'Nobunaga''s Ambition: Awakening': +"Nobunaga's Ambition: Awakening": installDir: NOBU16: {} launch: - /NOBU16_Launcher.exe: + "/NOBU16_Launcher.exe": - when: - bit: 64 os: windows store: steam steam: id: 1336980 -'Nobunaga''s Ambition: Bushou Fuunroku': +"Nobunaga's Ambition: Bushou Fuunroku": installDir: Nobunaga4: {} launch: - /Nobunaga4_Launcher.exe: + "/Nobunaga4_Launcher.exe": - when: - os: windows store: steam steam: id: 521740 -'Nobunaga''s Ambition: Haouden': +"Nobunaga's Ambition: Haouden": installDir: Nobunaga5WPK: {} launch: - /Nobunaga5WPK_Launcher.exe: + "/Nobunaga5WPK_Launcher.exe": - when: - os: windows store: steam steam: id: 628090 -'Nobunaga''s Ambition: Kakushin': +"Nobunaga's Ambition: Kakushin": installDir: - NOBUNAGA'S AMBITION Kakushin with Power Up Kit: {} + "NOBUNAGA'S AMBITION Kakushin with Power Up Kit": {} launch: - /N12LauncherPK.exe: + "/N12LauncherPK.exe": - when: - bit: 32 os: windows store: steam steam: id: 363090 -'Nobunaga''s Ambition: Ranseiki': +"Nobunaga's Ambition: Ranseiki": installDir: Nobunaga9WPK: {} launch: - /Nobunaga9WPK_Launcher.exe: + "/Nobunaga9WPK_Launcher.exe": - when: - os: windows store: steam steam: id: 628120 -'Nobunaga''s Ambition: Reppuden': +"Nobunaga's Ambition: Reppuden": installDir: Nobunaga8WPK: {} launch: - /Nobunaga8WPK_Launcher.exe: + "/Nobunaga8WPK_Launcher.exe": - when: - os: windows store: steam steam: id: 628110 -'Nobunaga''s Ambition: Sengoku Gunyuuden': +"Nobunaga's Ambition: Sengoku Gunyuuden": installDir: Nobunaga3: {} launch: - /Nobunaga3_Launcher.exe: + "/Nobunaga3_Launcher.exe": - when: - os: windows store: steam steam: id: 521700 -'Nobunaga''s Ambition: Shouseiroku': +"Nobunaga's Ambition: Shouseiroku": installDir: Nobunaga7WPK: {} launch: - /Nobunaga7WPK_Launcher.exe: + "/Nobunaga7WPK_Launcher.exe": - when: - os: windows store: steam steam: id: 628100 -'Nobunaga''s Ambition: Soutenroku': +"Nobunaga's Ambition: Soutenroku": installDir: Nobunaga10WPK: {} launch: - /Nobunaga10WPK_Launcher.exe: + "/Nobunaga10WPK_Launcher.exe": - when: - os: windows store: steam steam: id: 628130 -'Nobunaga''s Ambition: Souzou': +"Nobunaga's Ambition: Souzou": installDir: - Nobunaga's Ambition Souzou: {} + "Nobunaga's Ambition Souzou": {} launch: - /Nobu14Launcher.exe: + "/Nobu14Launcher.exe": - when: - os: windows store: steam steam: id: 292990 -'Nobunaga''s Ambition: Sphere of Influence': +"Nobunaga's Ambition: Sphere of Influence": installDir: - NOBUNAGA'S AMBITION Sphere of Influence: {} + "NOBUNAGA'S AMBITION Sphere of Influence": {} launch: - /N14PKLauncher.exe: + "/N14PKLauncher.exe": - when: - os: windows store: steam steam: id: 392470 -'Nobunaga''s Ambition: Sphere of Influence - Ascension': +"Nobunaga's Ambition: Sphere of Influence - Ascension": installDir: NOBUNAGAS_AMBITION_Souzou_SengokuRisshiden: {} launch: - /NOBU14SR_Launcher.exe: + "/NOBU14SR_Launcher.exe": - when: - os: windows store: steam steam: id: 375450 -'Nobunaga''s Ambition: Taishi': +"Nobunaga's Ambition: Taishi": installDir: NOBUNAGAS_AMBITION_TAISHI: {} launch: - /NOBU15_Launcher.exe: + "/NOBU15_Launcher.exe": - when: - bit: 64 os: windows store: steam steam: id: 628890 -'Nobunaga''s Ambition: Tendou': +"Nobunaga's Ambition: Tendou": installDir: - NOBUNAGA'S AMBITION Tendou with Power Up Kit: {} + "NOBUNAGA'S AMBITION Tendou with Power Up Kit": {} launch: - /N13LauncherPK.exe: + "/N13LauncherPK.exe": - when: - bit: 32 os: windows store: steam steam: id: 363110 -'Nobunaga''s Ambition: Tenkasousei': +"Nobunaga's Ambition: Tenkasousei": installDir: Nobunaga11WPK: {} launch: - /Nobunaga11WPK_Launcher.exe: + "/Nobunaga11WPK_Launcher.exe": - when: - os: windows store: steam steam: id: 628140 -'Nobunaga''s Ambition: Tenshouki WPK HD Version': +"Nobunaga's Ambition: Tenshouki WPK HD Version": installDir: - NOBUNAGA'S AMBITION Tenshouki with Power Up Kit HD version: {} + "NOBUNAGA'S AMBITION Tenshouki with Power Up Kit HD version": {} launch: - /N6HDLauncher_JP.exe: + "/N6HDLauncher_JP.exe": - when: - os: windows store: steam steam: id: 370730 -'Nobunaga''s Ambition: Zenkokuban': +"Nobunaga's Ambition: Zenkokuban": installDir: Nobunaga2: {} launch: - /Nobunaga2_Launcher.exe: + "/Nobunaga2_Launcher.exe": - when: - os: windows store: steam steam: id: 521660 -Nobunaga's Shadow: +"Nobunaga's Shadow": installDir: - Nobunaga's Shadow: {} + "Nobunaga's Shadow": {} launch: - /Game.app: + "/Game.app": - when: - os: mac store: steam - /Game.exe: + "/Game.exe": - when: - os: windows store: steam steam: id: 868930 -'Nock: Hidden Arrow': +"Nock: Hidden Arrow": installDir: Nock Hidden Arrow: {} steam: @@ -368009,11 +369017,11 @@ Nocked! True Tales of Robin Hood: installDir: Nocked! True Tales of Robin Hood: {} launch: - /Nocked-darwin-x64/Nocked.app: + "/Nocked-darwin-x64/Nocked.app": - when: - os: mac store: steam - /Nocked-win32-x64/Nocked.exe: + "/Nocked-win32-x64/Nocked.exe": - when: - os: windows store: steam @@ -368023,16 +369031,16 @@ Noct: installDir: Noct: {} launch: - /Noct.app: + "/Noct.app": - when: - os: mac store: steam - /Noct.exe: + "/Noct.exe": - when: - bit: 32 os: windows store: steam - /Noct.x86: + "/Noct.x86": - when: - os: linux store: steam @@ -368044,12 +369052,12 @@ Noct: id: 330570 Noctropolis: files: - /noctropolis.cfg: + "/noctropolis.cfg": tags: - config when: - os: windows - /saves: + "/saves": tags: - save when: @@ -368059,15 +369067,15 @@ Noctropolis: installDir: Noctropolis: {} launch: - /Noctropolis.app: + "/Noctropolis.app": - when: - os: mac store: steam - /Noctropolis.exe: + "/Noctropolis.exe": - when: - os: windows store: steam - /noctropolis: + "/noctropolis": - when: - bit: 64 os: linux @@ -368076,7 +369084,7 @@ Noctropolis: id: 377070 Nocturnal: files: - /AppData/LocalLow/Sunnyside Games/Nocturnal//*.sav: + "/AppData/LocalLow/Sunnyside Games/Nocturnal//*.sav": tags: - save when: @@ -368086,7 +369094,7 @@ Nocturnal: installDir: Nocturnal: {} launch: - /Nocturnal.exe: + "/Nocturnal.exe": - when: - os: windows store: steam @@ -368096,7 +369104,7 @@ Nocturnal Hunt: installDir: Nocturnal Hunt: {} launch: - /Nocturnal Hunt.exe: + "/Nocturnal Hunt.exe": - when: - os: windows store: steam @@ -368104,12 +369112,12 @@ Nocturnal Hunt: id: 635550 Nocturne: files: - /SYSTEM: + "/SYSTEM": tags: - config when: - os: windows - /save: + "/save": tags: - save when: @@ -368118,7 +369126,7 @@ Nocturne of Steel: installDir: Nocturne of Steel: {} launch: - /NocturneofSteel.exe: + "/NocturneofSteel.exe": - when: - os: windows store: steam @@ -368142,11 +369150,11 @@ Nodiatis: installDir: Nodiatis: {} launch: - /Nodiatis.app: + "/Nodiatis.app": - when: - os: mac store: steam - /Nodiatis.exe: + "/Nodiatis.exe": - when: - os: windows store: steam @@ -368154,17 +369162,17 @@ Nodiatis: id: 541190 Noel The Mortal Fate S1-7: files: - /gamedata/noel1-7/noel_s*/www/save: + "/gamedata/noel1-7/noel_s*/www/save": tags: - save when: - os: windows - /gamedata/noel8/noel_s8/www/save: + "/gamedata/noel8/noel_s8/www/save": tags: - save when: - os: windows - /gamedata/noel9/noel_s9/www/save: + "/gamedata/noel9/noel_s9/www/save": tags: - save when: @@ -368172,17 +369180,17 @@ Noel The Mortal Fate S1-7: installDir: Noel The Mortal Fate S1-7: {} launch: - /Noel_Launcher.exe: + "/Noel_Launcher.exe": - when: - os: windows store: steam steam: id: 850000 -Noel's Hope: +"Noel's Hope": installDir: Noels_Hope: {} launch: - /Noels_Hope/Noels_Hope.exe: + "/Noels_Hope/Noels_Hope.exe": - when: - os: windows store: steam @@ -368194,7 +369202,7 @@ Noelle Does Her Best!: installDir: Noelle Does Her Best!: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: @@ -368203,7 +369211,7 @@ Nogalious: installDir: Nogalious: {} launch: - /Nogalious.exe: + "/Nogalious.exe": - when: - os: windows store: steam @@ -368213,7 +369221,7 @@ Nogalious MSX: installDir: Nogalious MSX: {} launch: - /Nogalious MSX Digital.exe: + "/Nogalious MSX Digital.exe": - when: - os: windows store: steam @@ -368223,42 +369231,42 @@ Nogard: installDir: Nogard: {} launch: - /Nogard.exe: + "/Nogard.exe": - when: - bit: 64 os: windows store: steam steam: id: 725140 -'Nogibator: Way of Legs': +"Nogibator: Way of Legs": installDir: NOGIBATOR: {} launch: - /NOGIBATOR.exe: + "/NOGIBATOR.exe": - when: - os: windows store: steam steam: id: 754330 -'Noir Chronicles: City of Crime': +"Noir Chronicles: City of Crime": installDir: Noir Chronicles City of Crime: {} launch: - /NoirChronicles.exe: + "/NoirChronicles.exe": - when: - os: windows store: steam - /NoirChronicles_amd64: + "/NoirChronicles_amd64": - when: - bit: 64 os: linux store: steam - /NoirChronicles_i386: + "/NoirChronicles_i386": - when: - bit: 32 os: linux store: steam - /mac_steam.app/Contents/MacOS/mac_steam: + "/mac_steam.app/Contents/MacOS/mac_steam": - when: - os: mac store: steam @@ -368268,15 +369276,15 @@ Noir Syndrome: installDir: NoirSyndrome: {} launch: - /Noir Syndrome.exe: + "/Noir Syndrome.exe": - when: - os: windows store: steam - /Noir-Syndrome.app: + "/Noir-Syndrome.app": - when: - os: mac store: steam - /noir-syndrome.run: + "/noir-syndrome.run": - when: - os: linux store: steam @@ -368286,7 +369294,7 @@ Noise: installDir: Noise: {} launch: - /Noise.exe: + "/Noise.exe": - when: - os: windows store: steam @@ -368297,12 +369305,12 @@ Noisetube: id: 1059810 Noita: files: - /AppData/LocalLow/Nolla_Games_Noita: + "/AppData/LocalLow/Nolla_Games_Noita": tags: - save when: - os: windows - /AppData/LocalLow/Nolla_Games_Noita/save_shared/config.xml: + "/AppData/LocalLow/Nolla_Games_Noita/save_shared/config.xml": tags: - config when: @@ -368317,19 +369325,19 @@ Noita: installDir: Noita: {} launch: - /noita.exe: + "/noita.exe": - when: - store: steam steam: id: 881100 -'Noitu Love 2: Devolution': +"Noitu Love 2: Devolution": files: - /config*.sav: + "/config*.sav": tags: - config when: - os: windows - /save*: + "/save*": tags: - save when: @@ -368337,10 +369345,10 @@ Noita: installDir: Noitu Love 2 Devolution: {} launch: - /config.exe: + "/config.exe": - when: - store: steam - /nl2.exe: + "/nl2.exe": - when: - store: steam steam: @@ -368349,7 +369357,7 @@ Nokbak: installDir: NOKBAK: {} launch: - /NOKBAK.exe: + "/NOKBAK.exe": - when: - os: windows store: steam @@ -368357,7 +369365,7 @@ Nokbak: id: 655550 Nom Nom Apocalypse: files: - /AppData/LocalLow/DeadleafGames/Nom Nom Apocalypse: + "/AppData/LocalLow/DeadleafGames/Nom Nom Apocalypse": tags: - save when: @@ -368365,7 +369373,7 @@ Nom Nom Apocalypse: installDir: Nom Nom Apocalypse: {} launch: - /Nom Nom Apocalypse.exe: + "/Nom Nom Apocalypse.exe": - when: - bit: 64 os: windows @@ -368376,7 +369384,7 @@ Nomad: installDir: Nomad: {} launch: - /Nomad.exe: + "/Nomad.exe": - when: - os: windows store: steam @@ -368386,20 +369394,20 @@ Nomad Fleet: installDir: Nomad Fleet: {} launch: - /NomadFleet.app: + "/NomadFleet.app": - when: - os: mac store: steam - /NomadFleet.exe: + "/NomadFleet.exe": - when: - os: windows store: steam - /NomadFleet.x86: + "/NomadFleet.x86": - when: - bit: 32 os: linux store: steam - /NomadFleet.x86_64: + "/NomadFleet.x86_64": - when: - bit: 64 os: linux @@ -368408,7 +369416,7 @@ Nomad Fleet: id: 371010 Nomad Survivor: files: - /Nomad_Survival: + "/Nomad_Survival": tags: - save when: @@ -368416,7 +369424,7 @@ Nomad Survivor: installDir: Nomad Survival: {} launch: - /Nomad Survival.exe: + "/Nomad Survival.exe": - when: - os: windows store: steam @@ -368424,12 +369432,12 @@ Nomad Survivor: id: 1929870 Nomads of Driftland: files: - /Nomads/Saved/Config/WindowsNoEditor/*.ini: + "/Nomads/Saved/Config/WindowsNoEditor/*.ini": tags: - config when: - os: windows - /Nomads/Saved/Nomads: + "/Nomads/Saved/Nomads": tags: - save when: @@ -368439,7 +369447,7 @@ Nomads of Driftland: installDir: Nomads of Driftland: {} launch: - /Nomads.exe: + "/Nomads.exe": - when: - bit: 64 os: windows @@ -368450,7 +369458,7 @@ Nomads of the Fallen Star: installDir: Nomads of the Fallen Star: {} launch: - /nw.exe: + "/nw.exe": - when: - store: steam steam: @@ -368462,7 +369470,7 @@ Nomori: installDir: Nomori (Pre-Alpha): {} launch: - /Nomori.exe: + "/Nomori.exe": - when: - os: windows store: steam @@ -368472,11 +369480,11 @@ Noms the Fish: installDir: Noms the Fish: {} launch: - /Noms the Fish.exe: + "/Noms the Fish.exe": - when: - os: windows store: steam - /runner: + "/runner": - when: - os: linux store: steam @@ -368487,7 +369495,7 @@ Non Compliant: id: 1177910 Non-Linear Text Quests: files: - /appdata/saves: + "/appdata/saves": tags: - save when: @@ -368495,12 +369503,12 @@ Non-Linear Text Quests: installDir: Non_Linear_Text_Quests: {} launch: - /instead.exe: - - arguments: '-standalone -fullscreen -game nlbhub' + "/instead.exe": + - arguments: "-standalone -fullscreen -game nlbhub" when: - os: windows store: steam - /nlbhub.sh: + "/nlbhub.sh": - when: - os: linux store: steam @@ -368510,20 +369518,20 @@ Non-binary: installDir: non-binary: {} launch: - /non-binary.app: + "/non-binary.app": - when: - os: mac store: steam - /non-binary.app/Contents/MacOS/non-binary: + "/non-binary.app/Contents/MacOS/non-binary": - when: - os: mac store: steam - workingDir: /non-binary.app/Contents/MacOS - /non-binary.exe: + workingDir: "/non-binary.app/Contents/MacOS" + "/non-binary.exe": - when: - os: windows store: steam - /non-binary.x86_64: + "/non-binary.x86_64": - when: - bit: 64 os: linux @@ -368534,7 +369542,7 @@ Nona: installDir: Nona: {} launch: - /Nona.exe: + "/Nona.exe": - when: - os: windows store: steam @@ -368542,13 +369550,13 @@ Nona: id: 713370 Nongünz: files: - /Nongunz/Slot.save: + "/Nongunz/Slot.save": tags: - save when: - os: windows - os: linux - /nongunz: + "/nongunz": tags: - config when: @@ -368556,25 +369564,31 @@ Nongünz: installDir: Nongunz: {} launch: - /nongunz.app: + "/nongunz.app": - when: - os: mac store: steam - /nw: + "/nw": - when: - bit: 32 os: linux store: steam - /nw.exe: + - bit: 64 + os: linux + store: steam + "/nw.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam steam: id: 633130 -'Nongünz: Doppelganger Edition': +"Nongünz: Doppelganger Edition": files: - /saves/Nongunz.save: + "/saves/Nongunz.save": tags: - save when: @@ -368584,8 +369598,11 @@ Nongünz: installDir: Non Gunz Doppelganger Edition: {} launch: - /Nongünz.exe: + "/Nongünz.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam @@ -368595,11 +369612,11 @@ Nongünz: - config steam: id: 1304780 -Nono's Magic General Shop: +"Nono's Magic General Shop": installDir: - Nono's magic general shop: {} + "Nono's magic general shop": {} launch: - /NonoLauncher.exe: + "/NonoLauncher.exe": - when: - store: steam steam: @@ -368607,18 +369624,18 @@ Nono's Magic General Shop: Nonogram: steam: id: 982890 -Nonogram - Master's Legacy: +"Nonogram - Master's Legacy": files: - /userdata//742500/remote/saves.dat: + "/userdata//742500/remote/saves.dat": tags: - save when: - os: windows store: steam installDir: - Nonogram - Master's Legacy: {} + "Nonogram - Master's Legacy": {} launch: - /Nonogram - Master's Legacy.exe: + "/Nonogram - Master's Legacy.exe": - when: - os: windows store: steam @@ -368628,7 +369645,7 @@ Nonogram - The Greatest Painter: installDir: Nonogram - The Greatest Painter: {} launch: - /Nonogram - The Greatest Painter.exe: + "/Nonogram - The Greatest Painter.exe": - when: - os: windows store: steam @@ -368641,15 +369658,15 @@ Noob Squad: installDir: Noob Squad: {} launch: - /Noob Squad.app: + "/Noob Squad.app": - when: - os: mac store: steam - /Noob Squad.exe: + "/Noob Squad.exe": - when: - os: windows store: steam - /Noob Squad.x86: + "/Noob Squad.x86": - when: - os: linux store: steam @@ -368659,7 +369676,7 @@ Noodle Jump: installDir: Noodle Jump: {} launch: - /NoodleJump.exe: + "/NoodleJump.exe": - when: - bit: 64 os: windows @@ -368670,7 +369687,7 @@ Noonie: installDir: Noonie: {} launch: - /Project_rogue_1_42.exe: + "/Project_rogue_1_42.exe": - when: - os: windows store: steam @@ -368680,12 +369697,12 @@ Noosphere: installDir: Noosphere: {} launch: - /Noosphere.exe: + "/Noosphere.exe": - when: - store: steam steam: id: 1161430 -Nor'Easter: +"Nor'Easter": steam: id: 1091140 Norco: @@ -368694,11 +369711,11 @@ Norco: installDir: NORCO: {} launch: - /norco.app: + "/norco.app": - when: - os: mac store: steam - /norco.exe: + "/norco.exe": - when: - os: windows store: steam @@ -368708,7 +369725,7 @@ Nordenfelt: installDir: Nordenfelt: {} launch: - /Nordenfelt.exe: + "/Nordenfelt.exe": - when: - os: windows store: steam @@ -368718,7 +369735,7 @@ Nordic Storm Solitaire: installDir: Nordic Storm Solitaire: {} launch: - /Nordic Storm Solitaire.exe: + "/Nordic Storm Solitaire.exe": - when: - os: windows store: steam @@ -368728,15 +369745,15 @@ Nordlicht: installDir: Nordlight: {} launch: - /Mac.app: + "/Mac.app": - when: - os: mac store: steam - /Nordlicht_v1.1.exe: + "/Nordlicht_v1.1.exe": - when: - os: windows store: steam - /Nordlicht_v1.1.x86: + "/Nordlicht_v1.1.x86": - when: - os: linux store: steam @@ -368746,7 +369763,7 @@ Norilsk: installDir: Norilsk: {} launch: - /nw.exe: + "/nw.exe": - when: - bit: 64 os: windows @@ -368758,12 +369775,12 @@ Normal Fastfood Fantasy: id: 736410 Normality: files: - /Config.ini: + "/Config.ini": tags: - config when: - os: dos - /Savegame/Normsave.*: + "/Savegame/Normsave.*": tags: - save when: @@ -368773,18 +369790,18 @@ Normality: installDir: Normality: {} launch: - /dosbox/dosbox.exe: - - arguments: ' -conf dosboxNORMAL.conf -conf dosboxNORMAL_single.conf' + "/dosbox/dosbox.exe": + - arguments: " -conf dosboxNORMAL.conf -conf dosboxNORMAL_single.conf" when: - store: steam - workingDir: /dosbox + workingDir: "/dosbox" steam: id: 400370 -Norman's Night In: +"Norman's Night In": installDir: - Norman's Night In: {} + "Norman's Night In": {} launch: - /NormansNightIn.exe: + "/NormansNightIn.exe": - when: - os: windows store: steam @@ -368794,16 +369811,16 @@ Norpon: installDir: Norpon: {} launch: - /PlatformerGame.exe: + "/PlatformerGame.exe": - when: - bit: 64 os: windows store: steam steam: id: 896510 -'Norse by Norse West: The Return of the Lost Vikings': +"Norse by Norse West: The Return of the Lost Vikings": files: - /*.cfg: + "/*.cfg": tags: - config when: @@ -368813,11 +369830,11 @@ North: installDir: NORTH: {} launch: - /NORTH.app: + "/NORTH.app": - when: - os: mac store: steam - /NORTH_win.exe: + "/NORTH_win.exe": - when: - os: windows store: steam @@ -368833,8 +369850,8 @@ North Stars: installDir: North Stars: {} launch: - /NS.exe: - - arguments: '-windowed' + "/NS.exe": + - arguments: "-windowed" when: - os: windows store: steam @@ -368844,7 +369861,7 @@ North of Iraq Part 1: installDir: The pandemic: {} launch: - /cov.exe: + "/cov.exe": - when: - bit: 64 store: steam @@ -368852,7 +369869,7 @@ North of Iraq Part 1: id: 1202990 Northern Journey: files: - /Skog/Saved/SaveGames: + "/Skog/Saved/SaveGames": tags: - save when: @@ -368860,7 +369877,7 @@ Northern Journey: installDir: Northern journey: {} launch: - /Skog.exe: + "/Skog.exe": - when: - bit: 64 os: windows @@ -368871,7 +369888,7 @@ Northern Lights: installDir: Northern Lights: {} launch: - /Northern Lights.exe: + "/Northern Lights.exe": - when: - bit: 64 os: windows @@ -368882,7 +369899,7 @@ Northern Regime: installDir: nr: {} launch: - /NRDv0.0.02.exe: + "/NRDv0.0.02.exe": - when: - os: windows store: steam @@ -368892,7 +369909,7 @@ Northern Tale: installDir: Northern Tale: {} launch: - /NorthernTale.exe: + "/NorthernTale.exe": - when: - store: steam steam: @@ -368901,7 +369918,7 @@ Northern Tale 2: installDir: Northern Tale 2: {} launch: - /NorthernTale2.exe: + "/NorthernTale2.exe": - when: - os: windows store: steam @@ -368911,7 +369928,7 @@ Northern Tale 3: installDir: Northern Tale 3: {} launch: - /NorthernTale3.exe: + "/NorthernTale3.exe": - when: - store: steam steam: @@ -368920,7 +369937,7 @@ Northern Tale 4: installDir: Northern Tale 4: {} launch: - /NorthernTale4.exe: + "/NorthernTale4.exe": - when: - os: windows store: steam @@ -368930,7 +369947,7 @@ Northern Tales: installDir: Northern Tales: {} launch: - /NorthernTales.exe: + "/NorthernTales.exe": - when: - os: windows store: steam @@ -368938,22 +369955,22 @@ Northern Tales: id: 989870 Northgard: files: - /game/prefs.sav: + "/game/prefs.sav": tags: - config when: - os: linux - /game/save: + "/game/save": tags: - save when: - os: linux - /prefs.sav: + "/prefs.sav": tags: - config when: - os: windows - /save: + "/save": tags: - save when: @@ -368962,19 +369979,19 @@ Northgard: id: 1076977034 id: gogExtra: - - 1484313063 - - 1688886623 - - 1644574132 - - 1685507965 - - 2020568404 - - 1214277077 - - 1651136771 - - 1779620840 - - 1488496350 - - 1676895312 - - 1605208249 - 1090140888 - 1194847733 + - 1214277077 + - 1484313063 + - 1488496350 + - 1605208249 + - 1644574132 + - 1651136771 + - 1676895312 + - 1685507965 + - 1688886623 + - 1779620840 + - 2020568404 steamExtra: - 820560 - 820561 @@ -368992,11 +370009,11 @@ Northgard: installDir: Northgard: {} launch: - /linux/run.sh: + "/linux/run.sh": - when: - os: linux store: steam - /osx/hl: + "/osx/hl": - arguments: sdlboot.dat when: - os: mac @@ -369009,25 +370026,25 @@ Northland: installDir: Cultures Northland: {} launch: - /Editor.exe: + "/Editor.exe": - when: - os: windows store: steam - /Game.exe: + "/Game.exe": - when: - os: windows store: steam steam: id: 351860 -'Northmark: Hour of the Wolf': +"Northmark: Hour of the Wolf": installDir: Northmark HOTW: {} launch: - /Northmark.app: + "/Northmark.app": - when: - os: mac store: steam - /northmark.exe: + "/northmark.exe": - when: - os: windows store: steam @@ -369051,15 +370068,15 @@ Nosferatu Lilinor: installDir: Nosferatu Lilinor: {} launch: - /Lilinor.exe: + "/Lilinor.exe": - when: - os: windows store: steam steam: id: 1186270 -'Nosferatu: The Wrath of Malachi': +"Nosferatu: The Wrath of Malachi": files: - /Version/Data: + "/Version/Data": tags: - save when: @@ -369069,7 +370086,7 @@ Nosferatu Lilinor: installDir: Nosferatu The Wrath of Malachi: {} launch: - /Nosferatu.exe: + "/Nosferatu.exe": - when: - store: steam registry: @@ -369082,8 +370099,8 @@ Nosgoth: installDir: nosgoth: {} launch: - /NosgothLauncher.exe: - - arguments: '-steam' + "/NosgothLauncher.exe": + - arguments: "-steam" when: - os: windows store: steam @@ -369093,8 +370110,8 @@ Nostalgiarian: installDir: Nostalgiarian: {} launch: - /Nostalgiarian.exe: - - arguments: '--in-process-gpu' + "/Nostalgiarian.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam @@ -369104,7 +370121,7 @@ Nostalgic Train: installDir: NOSTALGIC_TRAIN: {} launch: - /NostalgicTrain.exe: + "/NostalgicTrain.exe": - when: - bit: 64 os: windows @@ -369115,7 +370132,7 @@ Nostoi: installDir: NOSTOI: {} launch: - /NOSTOI.exe: + "/NOSTOI.exe": - when: - bit: 64 os: windows @@ -369126,8 +370143,8 @@ Nostos: installDir: Nostos: {} launch: - /Nostos.exe: - - arguments: '-vrmode None' + "/Nostos.exe": + - arguments: "-vrmode None" when: - os: windows store: steam @@ -369137,29 +370154,29 @@ Nostradamus - The Four Horsemen of the Apocalypse: installDir: Nostradamus - the 4 horsemen of the Apocalypse: {} launch: - /nostradamus_mac_20180122.app: + "/nostradamus_mac_20180122.app": - when: - os: mac store: steam - /nostradamus_pc.exe: + "/nostradamus_pc.exe": - when: - os: windows store: steam steam: id: 774131 -'Nostradamus: The Last Prophecy': +"Nostradamus: The Last Prophecy": files: - /Users/Profile1/Save.*: + "/Users/Profile1/Save.*": tags: - save when: - os: windows - /Users/Profile1/config.ini: + "/Users/Profile1/config.ini": tags: - config when: - os: windows - /config.ini: + "/config.ini": tags: - config when: @@ -369169,24 +370186,24 @@ Nostradamus - The Four Horsemen of the Apocalypse: installDir: Nostradamus: {} launch: - /Nostradamus - The Last Prophecy.app: + "/Nostradamus - The Last Prophecy.app": - when: - os: mac store: steam - /Nostradamus.exe: + "/Nostradamus.exe": - when: - os: windows store: steam steam: id: 287720 -'Not An Angels: Erotic Puzzle': +"Not An Angels: Erotic Puzzle": files: - /Library/Application Support/com.13FacesGames.NotAnAngels: + "/Library/Application Support/com.13FacesGames.NotAnAngels": tags: - save when: - os: mac - /LocalLo/z13FacesGames/NotAnAngels: + "/LocalLo/z13FacesGames/NotAnAngels": tags: - save when: @@ -369194,11 +370211,11 @@ Nostradamus - The Four Horsemen of the Apocalypse: installDir: Not An Angels: {} launch: - /NotAnAngels.app/Contents/MacOS/NotAnAngels: + "/NotAnAngels.app/Contents/MacOS/NotAnAngels": - when: - os: mac store: steam - /NotAnAngels.exe: + "/NotAnAngels.exe": - when: - bit: 64 os: windows @@ -369209,21 +370226,21 @@ Not Dying Today: installDir: notdyingtoday: {} launch: - /NotDyingToday.app: + "/NotDyingToday.app": - when: - os: mac store: steam - /NotDyingToday.exe: + "/NotDyingToday.exe": - when: - os: windows store: steam steam: id: 568440 -'Not For Broadcast: Prologue': +"Not For Broadcast: Prologue": installDir: Not For Broadcast Prologue: {} launch: - /NotForBroadcastPrologue.exe: + "/NotForBroadcastPrologue.exe": - when: - store: steam steam: @@ -369232,11 +370249,11 @@ Not Heaven: installDir: Not Heaven: {} launch: - /Not Heaven.app: + "/Not Heaven.app": - when: - os: mac store: steam - /NotHeaven.exe: + "/NotHeaven.exe": - when: - os: windows store: steam @@ -369246,7 +370263,7 @@ Not My Day!: installDir: Not my day: {} launch: - /Not my day/Not my day.exe: + "/Not my day/Not my day.exe": - when: - bit: 64 os: windows @@ -369257,7 +370274,7 @@ Not So Heart: installDir: Not So Heart: {} launch: - /Not So Heart.exe: + "/Not So Heart.exe": - when: - os: windows store: steam @@ -369265,18 +370282,18 @@ Not So Heart: id: 1073620 Not The Robots: files: - /Not the Robots.app/Contents: + "/Not the Robots.app/Contents": tags: - save when: - os: mac - /Not the Robots_Data: + "/Not the Robots_Data": tags: - save when: - os: windows - os: linux - /.config/unity3d/2DArray/Not the Robots: + "/.config/unity3d/2DArray/Not the Robots": tags: - config when: @@ -369284,15 +370301,15 @@ Not The Robots: installDir: Not The Robots: {} launch: - /Not the Robots: + "/Not the Robots": - when: - os: linux store: steam - /Not the Robots.app: + "/Not the Robots.app": - when: - os: mac store: steam - /Not the Robots.exe: + "/Not the Robots.exe": - when: - os: windows store: steam @@ -369304,12 +370321,12 @@ Not The Robots: id: 257120 Not Tonight: files: - /AppData/LocalLow/PanicBarn/Not Tonight/*.es3: + "/AppData/LocalLow/PanicBarn/Not Tonight/*.es3": tags: - save when: - os: windows - /AppData/LocalLow/PanicBarn/Not Tonight/Slots/0/*.es3: + "/AppData/LocalLow/PanicBarn/Not Tonight/Slots/0/*.es3": tags: - save when: @@ -369319,16 +370336,16 @@ Not Tonight: installDir: Not Tonight: {} launch: - /NotTonight.exe: - - arguments: '-force glcore' + "/NotTonight.exe": + - arguments: "-force glcore" when: - os: windows store: steam - - arguments: '-window-mode exclusive -force glcore' + - arguments: "-window-mode exclusive -force glcore" when: - os: windows store: steam - - arguments: '-force-d3d11' + - arguments: "-force-d3d11" when: - store: steam registry: @@ -369341,7 +370358,7 @@ Not Tonight 2: installDir: Not Tonight 2: {} launch: - /NotTonight2.exe: + "/NotTonight2.exe": - when: - os: windows store: steam @@ -369351,7 +370368,7 @@ Not Without My Donuts: installDir: Not without my donuts: {} launch: - /Notwithoutmydonuts1.6.exe: + "/Notwithoutmydonuts1.6.exe": - when: - os: windows store: steam @@ -369361,7 +370378,7 @@ Not Without My Poop: installDir: Not Without My Poop: {} launch: - /NotWithoutMyPoop.exe: + "/NotWithoutMyPoop.exe": - when: - os: windows store: steam @@ -369371,11 +370388,11 @@ Not Without You: installDir: Not Without You: {} launch: - /NWY Mac Build.app: + "/NWY Mac Build.app": - when: - os: mac store: steam - /Not Without You.exe: + "/Not Without You.exe": - when: - os: windows store: steam @@ -369383,7 +370400,7 @@ Not Without You: id: 854950 Not a Hero: files: - /Bin/*.ini: + "/Bin/*.ini": tags: - config - save @@ -369394,19 +370411,19 @@ Not a Hero: installDir: Not a Hero: {} launch: - /LEGACY.exe: + "/LEGACY.exe": - when: - os: windows store: steam - /NOT A HERO.app: + "/NOT A HERO.app": - when: - os: mac store: steam - /NOT A HERO.exe: + "/NOT A HERO.exe": - when: - os: windows store: steam - /run.sh: + "/run.sh": - when: - os: linux store: steam @@ -369417,7 +370434,7 @@ Not a Prank: id: 1086420 Not for Broadcast: files: - /AppData/LocalLow/NotGames/NotForBroadcast: + "/AppData/LocalLow/NotGames/NotForBroadcast": tags: - save when: @@ -369426,8 +370443,8 @@ Not for Broadcast: id: 1542088686 id: gogExtra: - - 1337348821 - 1094031420 + - 1337348821 - 1629671360 steamExtra: - 1201400 @@ -369450,7 +370467,7 @@ Not for Broadcast: installDir: Not For Broadcast: {} launch: - /NotForBroadcast.exe: + "/NotForBroadcast.exe": - when: - store: steam registry: @@ -369463,7 +370480,7 @@ Not in Heaven: installDir: Not in Heaven: {} launch: - /Not in Heaven.exe: + "/Not in Heaven.exe": - when: - store: steam steam: @@ -369472,11 +370489,11 @@ Not so Middle Ages: installDir: Not So Middle Ages: {} launch: - /Not So Middle Ages.app/Contents/MacOS/Not So Middle Ages: + "/Not So Middle Ages.app/Contents/MacOS/Not So Middle Ages": - when: - os: mac store: steam - /Not So Middle Ages.exe: + "/Not So Middle Ages.exe": - when: - os: windows store: steam @@ -369486,15 +370503,15 @@ NotCoD: installDir: NotCoD: {} launch: - /NotCoD.app/Contents/MacOS/Mac_Runner: + "/NotCoD.app/Contents/MacOS/Mac_Runner": - when: - os: mac store: steam - /NotCoD.exe: + "/NotCoD.exe": - when: - os: windows store: steam - /runner: + "/runner": - when: - os: linux store: steam @@ -369504,25 +370521,25 @@ NotTheNameWeWanted: installDir: NotTheNameWeWanted: {} launch: - /NotTheNameWeWanted.app/Contents/MacOS/Mac_Runner: + "/NotTheNameWeWanted.app/Contents/MacOS/Mac_Runner": - when: - os: mac store: steam - /NotTheNameWeWanted.exe: + "/NotTheNameWeWanted.exe": - when: - os: windows store: steam - /run.sh: + "/run.sh": - when: - os: linux store: steam steam: id: 369580 -'Notch - The Innocent LunA: Eclipsed SinnerS': +"Notch - The Innocent LunA: Eclipsed SinnerS": installDir: Notch The Innocent LunA Eclipsed SinnerS: {} launch: - /notch.exe: + "/notch.exe": - when: - os: windows store: steam @@ -369535,7 +370552,7 @@ Notes from Province: installDir: Notes From Province: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -369545,22 +370562,22 @@ Nother: installDir: Nother: {} launch: - /Nother.exe: + "/Nother.exe": - when: - os: windows store: steam steam: id: 545720 -Nothin' But Net: +"Nothin' But Net": installDir: - Nothin' But Net: {} + "Nothin' But Net": {} steam: id: 496790 Nothing: installDir: Frame Of Reference: {} launch: - /FrameOfReference.exe: + "/FrameOfReference.exe": - when: - os: windows store: steam @@ -369570,7 +370587,7 @@ Nothing to God: installDir: Nothing To God: {} launch: - /NtG.exe: + "/NtG.exe": - when: - os: windows store: steam @@ -369580,7 +370597,7 @@ Nothing!: installDir: Nothing!: {} launch: - /Nothing.exe: + "/Nothing.exe": - when: - os: windows store: steam @@ -369590,7 +370607,7 @@ Notified: installDir: Notified: {} launch: - /Notified.exe: + "/Notified.exe": - when: - os: windows store: steam @@ -369600,18 +370617,18 @@ Notmycar: installDir: notmycar: {} launch: - /Prototype.exe: + "/Prototype.exe": - when: - bit: 64 os: windows store: steam steam: id: 694720 -'Notre-Dame de Paris: Journey Back in Time': +"Notre-Dame de Paris: Journey Back in Time": installDir: Notre Dame (VR): {} launch: - /Notre-Dame.exe: + "/Notre-Dame.exe": - when: - os: windows store: steam @@ -369623,12 +370640,12 @@ Notmycar: id: 1341280 Notrium: files: - /cfg.cfg: + "/cfg.cfg": tags: - save when: - os: windows - /save/s*.sav: + "/save/s*.sav": tags: - config when: @@ -369636,7 +370653,7 @@ Notrium: installDir: Notrium: {} launch: - /Notrium.exe: + "/Notrium.exe": - when: - os: windows store: steam @@ -369646,21 +370663,21 @@ Notruf 112 - Die Feuerwehr Simulation: installDir: Notruf 112: {} launch: - /notruf112.exe: + "/notruf112.exe": - when: - os: windows store: steam steam: id: 491530 -'Nour: Play with Your Food': +"Nour: Play with Your Food": installDir: Nour: {} launch: - /Nour Play With Your Food.exe: + "/Nour Play With Your Food.exe": - when: - os: windows store: steam - /nour.app: + "/nour.app": - when: - os: mac store: steam @@ -369673,7 +370690,7 @@ Nova 1492: installDir: Nova: {} launch: - /Nova1492.exe: + "/Nova1492.exe": - when: - bit: 32 os: windows @@ -369684,20 +370701,20 @@ Nova Blitz: installDir: Nova Blitz: {} launch: - /NovaBlitz.app/Contents/MacOS/NovaBlitz: + "/NovaBlitz.app/Contents/MacOS/NovaBlitz": - when: - os: mac store: steam - /NovaBlitz.exe: + "/NovaBlitz.exe": - when: - os: windows store: steam - /NovaBlitz.x86: + "/NovaBlitz.x86": - when: - bit: 32 os: linux store: steam - /NovaBlitz.x86_64: + "/NovaBlitz.x86_64": - when: - bit: 64 os: linux @@ -369706,12 +370723,12 @@ Nova Blitz: id: 388370 Nova Drift: files: - /Library/Application Support/com.pixeljam.stardriftmac: + "/Library/Application Support/com.pixeljam.stardriftmac": tags: - save when: - os: mac - /NovaDrift: + "/NovaDrift": tags: - save when: @@ -369721,11 +370738,11 @@ Nova Drift: installDir: Nova Drift: {} launch: - /NovaDrift.app/Contents/MacOS/NovaDrift: + "/NovaDrift.app/Contents/MacOS/NovaDrift": - when: - os: mac store: steam - /NovaDrift.exe: + "/NovaDrift.exe": - when: - os: windows store: steam @@ -369735,7 +370752,7 @@ Nova Nukers!: installDir: Nova Nukers!: {} launch: - /nova_nukers.exe: + "/nova_nukers.exe": - when: - os: windows store: steam @@ -369745,7 +370762,7 @@ Nova Wing: installDir: Nova Wing: {} launch: - /Nova Wing.exe: + "/Nova Wing.exe": - when: - os: windows store: steam @@ -369755,7 +370772,7 @@ Nova Wing II: installDir: Nova Wing II: {} launch: - /Nova WingII.exe: + "/Nova WingII.exe": - when: - os: windows store: steam @@ -369765,7 +370782,7 @@ Nova Wing III: installDir: Nova Wing III: {} launch: - /Nova WingIII.exe: + "/Nova WingIII.exe": - when: - os: windows store: steam @@ -369775,11 +370792,11 @@ Nova-111: installDir: Nova-111: {} launch: - /Nova-111.app: + "/Nova-111.app": - when: - os: mac store: steam - /Nova111.exe: + "/Nova111.exe": - when: - os: windows store: steam @@ -369789,21 +370806,21 @@ Nova-Life: installDir: Nova-Life: {} launch: - /Nova-Life.exe: + "/Nova-Life.exe": - when: - os: windows store: steam - /nova-life.app/Contents/MacOS/Nova-Life: + "/nova-life.app/Contents/MacOS/Nova-Life": - when: - os: mac store: steam steam: id: 885570 -'Novas Las Aventurietas del Robercleiton: o Renascimento do TURBO': +"Novas Las Aventurietas del Robercleiton: o Renascimento do TURBO": installDir: Novas Las Aventurietas del Robercleiton o Renascimento do TURBO: {} launch: - /RPG_RT.exe: + "/RPG_RT.exe": - when: - os: windows store: steam @@ -369816,7 +370833,7 @@ Novus Inceptio: installDir: Novus Inceptio: {} launch: - /NovusInceptio.exe: + "/NovusInceptio.exe": - when: - bit: 64 os: windows @@ -369827,11 +370844,11 @@ Now I Am There: installDir: Now I Am There: {} launch: - /NowIAmThere.app/Contents/MacOS/Now I Am There: + "/NowIAmThere.app/Contents/MacOS/Now I Am There": - when: - os: mac store: steam - /NowIAmThere.exe: + "/NowIAmThere.exe": - when: - os: windows store: steam @@ -369841,7 +370858,7 @@ Now Man Flies: installDir: Now Man Flies: {} launch: - /nw.exe: + "/nw.exe": - when: - store: steam steam: @@ -369850,7 +370867,7 @@ Now You See: installDir: Now You See: {} launch: - /Now You See.exe: + "/Now You See.exe": - when: - os: windows store: steam @@ -369860,7 +370877,7 @@ Nowhere Girl: installDir: Nowhere Girl: {} launch: - /NowhereGirl.exe: + "/NowhereGirl.exe": - when: - os: windows store: steam @@ -369870,7 +370887,7 @@ Nowhere Patrol: installDir: Nowhere Patrol: {} launch: - /NowherePatrol.exe: + "/NowherePatrol.exe": - when: - bit: 64 os: windows @@ -369879,18 +370896,18 @@ Nowhere Patrol: id: 961660 Nowhere Prophet: files: - /.config/unity3d/Sharkbomb Studios/Nowhere Prophet: + "/.config/unity3d/Sharkbomb Studios/Nowhere Prophet": tags: - config when: - os: linux - /AppData/LocalLow/Sharkbomb Studios/Nowhere Prophet: + "/AppData/LocalLow/Sharkbomb Studios/Nowhere Prophet": tags: - config - save when: - os: windows - /Library/Application Support/unity.Sharkbomb Studios.Nowhere Prophet: + "/Library/Application Support/unity.Sharkbomb Studios.Nowhere Prophet": tags: - config when: @@ -369900,20 +370917,20 @@ Nowhere Prophet: installDir: Nowhere Prophet: {} launch: - /NowhereProphet.app/Contents/MacOS/NowhereProphet: + "/NowhereProphet.app/Contents/MacOS/NowhereProphet": - when: - os: mac store: steam - /NowhereProphet.exe: + "/NowhereProphet.exe": - when: - os: windows store: steam - /NowhereProphet.x86: + "/NowhereProphet.x86": - when: - bit: 32 os: linux store: steam - /NowhereProphet.x86_64: + "/NowhereProphet.x86_64": - when: - bit: 64 os: linux @@ -369924,7 +370941,7 @@ Nowhere Station: installDir: Nowhere Station: {} launch: - /Nowhere Station.exe: + "/Nowhere Station.exe": - when: - os: windows store: steam @@ -369932,12 +370949,12 @@ Nowhere Station: id: 1029080 Nox: files: - /Save: + "/Save": tags: - save when: - os: windows - /nox.cfg: + "/nox.cfg": tags: - config when: @@ -369950,11 +370967,11 @@ Nox Archaist: installDir: Nox Archaist: {} launch: - /Nox Archaist.app/Contents/MacOS/noxarchaist: + "/Nox Archaist.app/Contents/MacOS/noxarchaist": - when: - os: mac store: steam - /noxarchaist.exe: + "/noxarchaist.exe": - when: - bit: 64 os: windows @@ -369965,25 +370982,25 @@ Nox Dei: installDir: Nox Dei - El aciago demiurgo: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam steam: id: 678940 -'Npc Problems: Vertex Coloring': +"Npc Problems: Vertex Coloring": installDir: Np Problems Vertex Coloring: {} launch: - /NpcProjectsVertex Coloring.exe: + "/NpcProjectsVertex Coloring.exe": - when: - os: windows store: steam steam: id: 1180610 -'Nubarron: The Adventure of an Unlucky Gnome': +"Nubarron: The Adventure of an Unlucky Gnome": files: - /AppData/LocalLow/Nastycloud LLC/Nubarron: + "/AppData/LocalLow/Nastycloud LLC/Nubarron": tags: - save when: @@ -369991,16 +371008,16 @@ Nox Dei: installDir: Nubarron: {} launch: - /Nubarron.app: + "/Nubarron.app": - when: - os: mac store: steam - /Nubarron.exe: + "/Nubarron.exe": - when: - bit: 64 os: windows store: steam - /nubarron.x86_64: + "/nubarron.x86_64": - when: - os: linux store: steam @@ -370010,25 +371027,25 @@ Nubla: installDir: Nubla: {} launch: - /Nubla.exe: + "/Nubla.exe": - when: - os: windows store: steam steam: id: 1101000 -Nubs' Adventure: +"Nubs' Adventure": installDir: NubsAdventure: {} launch: - /Nubs: + "/Nubs": - when: - os: linux store: steam - /Nubs.app/Contents/MacOS/Nubs: + "/Nubs.app/Contents/MacOS/Nubs": - when: - os: mac store: steam - /Nubs.exe: + "/Nubs.exe": - when: - os: windows store: steam @@ -370038,7 +371055,7 @@ Nuclear 2050: installDir: Nuclear 2050: {} launch: - /Proto.exe: + "/Proto.exe": - when: - bit: 64 os: windows @@ -370049,7 +371066,7 @@ Nuclear Arms Race: installDir: Nuclear Arms Race: {} launch: - /nar.exe: + "/nar.exe": - when: - os: windows store: steam @@ -370059,7 +371076,7 @@ Nuclear Contingency: installDir: Nuclear Contingency: {} launch: - /NuclearContingency.exe: + "/NuclearContingency.exe": - when: - os: windows store: steam @@ -370067,22 +371084,22 @@ Nuclear Contingency: id: 540900 Nuclear Dawn: files: - /cfg/config.cfg: + "/cfg/config.cfg": tags: - config when: - os: linux - /cfg/video.txt: + "/cfg/video.txt": tags: - config when: - os: linux - /nucleardawn/cfg: + "/nucleardawn/cfg": tags: - config when: - os: windows - /userdata//17710/remote/cfg/config.cfg: + "/userdata//17710/remote/cfg/config.cfg": tags: - config when: @@ -370091,18 +371108,18 @@ Nuclear Dawn: installDir: Nuclear Dawn: {} launch: - /nd_linux.sh: - - arguments: '-game nucleardawn -steam' + "/nd_linux.sh": + - arguments: "-game nucleardawn -steam" when: - os: linux store: steam - /nd_osx.sh: - - arguments: '-game nucleardawn -steam' + "/nd_osx.sh": + - arguments: "-game nucleardawn -steam" when: - os: mac store: steam - /nucleardawn.exe: - - arguments: '-game nucleardawn -steam' + "/nucleardawn.exe": + - arguments: "-game nucleardawn -steam" when: - os: windows store: steam @@ -370112,11 +371129,11 @@ Nuclear Power Station Creator: installDir: Nuclear Power Station Creator: {} launch: - /Nuclear Power Station Creator.app/Contents/MacOS/Nuclear Power Station Creator: + "/Nuclear Power Station Creator.app/Contents/MacOS/Nuclear Power Station Creator": - when: - os: mac store: steam - /Nuclear Power Station Creator.exe: + "/Nuclear Power Station Creator.exe": - when: - os: windows store: steam @@ -370126,15 +371143,15 @@ Nuclear Powered Toaster: installDir: Nuclear Powered Toaster: {} launch: - /Nuclear Powered Toaster.app/Contents/MacOS/Nuclear Powered Toaster: + "/Nuclear Powered Toaster.app/Contents/MacOS/Nuclear Powered Toaster": - when: - os: mac store: steam - /NuclearPoweredToaster: + "/NuclearPoweredToaster": - when: - os: linux store: steam - /NuclearPoweredToaster.exe: + "/NuclearPoweredToaster.exe": - when: - os: windows store: steam @@ -370145,26 +371162,26 @@ Nuclear Shot: id: 399580 Nuclear Strike: files: - /data: + "/data": tags: - save when: - os: windows Nuclear Throne: files: - /.config/nuclearthrone: + "/.config/nuclearthrone": tags: - config - save when: - os: linux - /Library/Application Support/com.vlambeer.nuclearthrone: + "/Library/Application Support/com.vlambeer.nuclearthrone": tags: - config - save when: - os: mac - /nuclearthrone: + "/nuclearthrone": tags: - config - save @@ -370175,15 +371192,15 @@ Nuclear Throne: installDir: Nuclear Throne: {} launch: - /nuclearthrone.app: + "/nuclearthrone.app": - when: - os: mac store: steam - /nuclearthrone.exe: + "/nuclearthrone.exe": - when: - os: windows store: steam - /run.sh: + "/run.sh": - when: - os: linux store: steam @@ -370193,7 +371210,7 @@ Nucvivor: installDir: Nucvivor: {} launch: - /Nucvivor.exe: + "/Nucvivor.exe": - when: - os: windows store: steam @@ -370203,11 +371220,11 @@ Nudist Beach Survival Simulator: installDir: Nudist Beach Survival Simulator: {} launch: - /NBSS.exe: + "/NBSS.exe": - when: - os: windows store: steam - /Nudist Beach Survival Simulator.exe: + "/Nudist Beach Survival Simulator.exe": - when: - os: windows store: steam @@ -370217,7 +371234,7 @@ Nukalypse Zombie Survival: installDir: SCP Nukalypse: {} launch: - /SCP Nukalypse.exe: + "/SCP Nukalypse.exe": - when: - bit: 64 os: windows @@ -370227,11 +371244,11 @@ Nukalypse Zombie Survival: Nuked Knight: steam: id: 448250 -'Nukklerma: Robot Warfare': +"Nukklerma: Robot Warfare": installDir: Nukklerma: {} launch: - /NukklermaRobot Warfare.exe: + "/NukklermaRobot Warfare.exe": - when: - bit: 64 os: windows @@ -370242,7 +371259,7 @@ Null & Peta: installDir: Null and Peta: {} launch: - /NullPeta_x64.exe: + "/NullPeta_x64.exe": - when: - store: steam steam: @@ -370251,7 +371268,7 @@ Null Drifter: installDir: Null Drifter: {} launch: - /Null Drifter.exe: + "/Null Drifter.exe": - when: - os: windows store: steam @@ -370261,7 +371278,7 @@ Null Vector: installDir: Null Vector: {} launch: - /Null_Vector.exe: + "/Null_Vector.exe": - when: - os: windows store: steam @@ -370271,7 +371288,7 @@ Nulldrifters: installDir: Nulldrifters: {} launch: - /Nulldrifters.exe: + "/Nulldrifters.exe": - when: - os: windows store: steam @@ -370281,7 +371298,7 @@ Nullysun: installDir: Nullysun: {} launch: - /Nullysun.exe: + "/Nullysun.exe": - when: - os: windows store: steam @@ -370291,14 +371308,14 @@ Numantia: installDir: Numantia: {} launch: - /Numantia.exe: + "/Numantia.exe": - when: - store: steam steam: id: 588080 Numba Deluxe: files: - /CobiMobi/Numba: + "/CobiMobi/Numba": tags: - save when: @@ -370306,7 +371323,7 @@ Numba Deluxe: installDir: Numba Deluxe: {} launch: - /numba.exe: + "/numba.exe": - when: - store: steam steam: @@ -370315,7 +371332,7 @@ Number Guesser: installDir: Number Guesser: {} launch: - /NumberGuesser.exe: + "/NumberGuesser.exe": - when: - os: windows store: steam @@ -370330,11 +371347,11 @@ Number World: installDir: Number World: {} launch: - /NumberWorld.app/Contents/MacOS/NumberWorld: + "/NumberWorld.app/Contents/MacOS/NumberWorld": - when: - os: mac store: steam - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -370347,7 +371364,7 @@ Numberline 2: installDir: Numberline 2: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -370357,15 +371374,15 @@ Numberline 3: installDir: Numberline 3: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam steam: id: 907390 -'Numen: Contest of Heroes': +"Numen: Contest of Heroes": files: - /numen/SAVES: + "/numen/SAVES": tags: - save when: @@ -370373,7 +371390,7 @@ Numberline 3: installDir: Numen: {} launch: - /numen.exe: + "/numen.exe": - when: - store: steam steam: @@ -370382,7 +371399,7 @@ Numeric: installDir: Content: {} launch: - /NUMERIC.exe: + "/NUMERIC.exe": - when: - store: steam steam: @@ -370391,7 +371408,7 @@ Numgeon: installDir: Numgeon: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -370401,20 +371418,20 @@ Nurbits: installDir: Nurbits: {} launch: - /Nurbits.app: + "/Nurbits.app": - when: - os: mac store: steam - /Nurbits.exe: + "/Nurbits.exe": - when: - os: windows store: steam - /Nurbits.x86: + "/Nurbits.x86": - when: - bit: 32 os: linux store: steam - /Nurbits.x86_64: + "/Nurbits.x86_64": - when: - bit: 64 os: linux @@ -370425,11 +371442,11 @@ Nurikabe: installDir: Nurikabe: {} launch: - /Nurikabe.app/Contents/MacOS/Mac_Runner: + "/Nurikabe.app/Contents/MacOS/Mac_Runner": - when: - os: mac store: steam - /Nurikabe.exe: + "/Nurikabe.exe": - when: - os: windows store: steam @@ -370439,7 +371456,7 @@ Nurse Love Addiction: installDir: Nurse Love Addiction: {} launch: - /Hakuai.exe: + "/Hakuai.exe": - when: - os: windows store: steam @@ -370449,7 +371466,7 @@ Nurse Love Syndrome: installDir: Nurse Love Syndrome: {} launch: - /Shirokoi.exe: + "/Shirokoi.exe": - when: - store: steam steam: @@ -370458,25 +371475,25 @@ Nusakana: installDir: Nusakana: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam steam: id: 401290 -'Nusantara: Legend of The Winged Ones': +"Nusantara: Legend of The Winged Ones": installDir: Nusantara Legend of The Winged Ones: {} launch: - /NusantaraLoTWO.app: + "/NusantaraLoTWO.app": - when: - os: mac store: steam - /NusantaraLoTWO.exe: + "/NusantaraLoTWO.exe": - when: - os: windows store: steam - /NusantaraLoTWO.sh: + "/NusantaraLoTWO.sh": - when: - os: linux store: steam @@ -370491,25 +371508,25 @@ Nuts: installDir: NUTS: {} launch: - /NUTS.exe: + "/NUTS.exe": - when: - os: windows store: steam - /nuts.app: + "/nuts.app": - when: - os: mac store: steam steam: id: 768450 -'Nuts!: The Battle of the Bulge': +"Nuts!: The Battle of the Bulge": installDir: Nuts! The Battle of the Bulge: {} launch: - /Nuts.app: + "/Nuts.app": - when: - os: mac store: steam - /Nuts.exe: + "/Nuts.exe": - when: - os: windows store: steam @@ -370519,7 +371536,7 @@ Nux: installDir: Nux: {} launch: - /Nux.exe: + "/Nux.exe": - when: - store: steam steam: @@ -370533,7 +371550,7 @@ Nya Nya Nya Girls (ʻʻʻ) (=^・ω・^=) (ʻʻʻ): installDir: NNNG: {} launch: - /Nya Nya Nya Girls.exe: + "/Nya Nya Nya Girls.exe": - when: - store: steam steam: @@ -370542,29 +371559,29 @@ Nya Nya Nya Girls 2 (ʻʻʻ) (=^・ω・^=) (ʻʻʻ): installDir: NNNG 2: {} launch: - /Nya Nya Nya Girls 2.exe: + "/Nya Nya Nya Girls 2.exe": - when: - store: steam steam: id: 1003320 -'Nyan Cat: Lost In Space': +"Nyan Cat: Lost In Space": files: - /.local/share/isTomGames/NyanCatLostInSpace: + "/.local/share/isTomGames/NyanCatLostInSpace": tags: - save when: - os: linux - /.local/share/isTomGames/NyanCatLostInSpace/game.cfg: + "/.local/share/isTomGames/NyanCatLostInSpace/game.cfg": tags: - config when: - os: linux - /isTomGames/NyanCatLostInSpace: + "/isTomGames/NyanCatLostInSpace": tags: - save when: - os: windows - /isTomGames/NyanCatLostInSpace/game.cfg: + "/isTomGames/NyanCatLostInSpace/game.cfg": tags: - config when: @@ -370572,17 +371589,17 @@ Nya Nya Nya Girls 2 (ʻʻʻ) (=^・ω・^=) (ʻʻʻ): installDir: Nyan Cat Lost In Space: {} launch: - /bin_x64_linux/game.sh: + "/bin_x64_linux/game.sh": - when: - bit: 64 os: linux store: steam - workingDir: /bin_x64_linux - /bin_x86/NyanCat.exe: + workingDir: "/bin_x64_linux" + "/bin_x86/NyanCat.exe": - when: - os: windows store: steam - workingDir: /bin_x86 + workingDir: "/bin_x86" steam: id: 415420 Nyan Destroyer: @@ -370594,8 +371611,8 @@ Nyanco: installDir: Nyanco: {} launch: - /Nyanco.exe: - - arguments: ' --in-process-gpu' + "/Nyanco.exe": + - arguments: " --in-process-gpu" when: - os: windows store: steam @@ -370605,7 +371622,7 @@ Nyanco Dream: installDir: Nyanco Dream: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: @@ -370614,7 +371631,7 @@ Nyanco Project: installDir: Nyanco Project: {} launch: - /RPG_RT.exe: + "/RPG_RT.exe": - when: - store: steam steam: @@ -370623,7 +371640,7 @@ NyanfuGirl: installDir: Nyanfu Girl: {} launch: - /Nyanfu Girl.exe: + "/Nyanfu Girl.exe": - when: - os: windows store: steam @@ -370633,7 +371650,7 @@ Nyasha: installDir: Nyasha: {} launch: - /Nyasha.exe: + "/Nyasha.exe": - when: - store: steam steam: @@ -370642,7 +371659,7 @@ Nyasha Beach: installDir: Nyasha Beach: {} launch: - /Nyasha Beach.exe: + "/Nyasha Beach.exe": - when: - store: steam steam: @@ -370651,7 +371668,7 @@ Nyasha Land of Elves: installDir: Nyasha Land of Elves: {} launch: - /Nyasha Land of Elves.exe: + "/Nyasha Land of Elves.exe": - when: - store: steam steam: @@ -370660,7 +371677,7 @@ Nyasha Valkyrie: installDir: Nyasha Valkyrie: {} launch: - /Nyasha Valkyrie.exe: + "/Nyasha Valkyrie.exe": - when: - store: steam steam: @@ -370669,7 +371686,7 @@ Nyasha Winter: installDir: Nyasha Winter: {} launch: - /Nyasha Winter.exe: + "/Nyasha Winter.exe": - when: - store: steam steam: @@ -370678,12 +371695,14 @@ Nyctophilia: installDir: Nyctophilia: {} launch: - /Nyctophilia.exe: + "/Nyctophilia.exe": - when: - os: windows store: steam - /Nyctophilia.sh: + "/Nyctophilia.sh": - when: + - os: mac + store: steam - os: linux store: steam steam: @@ -370692,11 +371711,11 @@ Nyctophobia: installDir: Nyctophobia: {} launch: - /Nyctophobia.exe: + "/Nyctophobia.exe": - when: - os: windows store: steam - /macdepot_update.app: + "/macdepot_update.app": - when: - os: mac store: steam @@ -370706,21 +371725,21 @@ Nyheim: installDir: Nyheim: {} launch: - /Nyheim.exe: + "/Nyheim.exe": - when: - os: windows store: steam - /Nyheim_Linux.x86: + "/Nyheim_Linux.x86": - when: - bit: 32 os: linux store: steam - /Nyheim_Linux.x86_64: + "/Nyheim_Linux.x86_64": - when: - bit: 64 os: linux store: steam - /Nyheim_Mac.app: + "/Nyheim_Mac.app": - when: - os: mac store: steam @@ -370730,7 +371749,7 @@ Nykra: installDir: NYKRA: {} launch: - /NYKRA.exe: + "/NYKRA.exe": - when: - bit: 64 os: windows @@ -370741,15 +371760,15 @@ Nympho Monster Domination: installDir: MonsterDom: {} launch: - /MonsterDom.app: + "/MonsterDom.app": - when: - os: mac store: steam - /MonsterDom.exe: + "/MonsterDom.exe": - when: - os: windows store: steam - /MonsterDom.sh: + "/MonsterDom.sh": - when: - os: linux store: steam @@ -370759,18 +371778,18 @@ Nystagmus: installDir: Nystagmus: {} launch: - /Nystagmus.exe: + "/Nystagmus.exe": - when: - os: windows store: steam steam: id: 1033240 -'Nyx: The Awakening': +"Nyx: The Awakening": steam: id: 1139910 -'NyxQuest: Kindred Spirits': +"NyxQuest: Kindred Spirits": files: - /Over the Top Games/NyxQuest: + "/Over the Top Games/NyxQuest": tags: - config - save @@ -370781,11 +371800,11 @@ Nystagmus: installDir: NyxQuest Kindred Spirits: {} launch: - /NyxQuest.app: + "/NyxQuest.app": - when: - os: mac store: steam - /NyxQuest.exe: + "/NyxQuest.exe": - when: - os: windows store: steam @@ -370795,7 +371814,7 @@ O Rei: installDir: O Rei: {} launch: - /O Rei.exe: + "/O Rei.exe": - when: - os: windows store: steam @@ -370805,7 +371824,7 @@ O! Nalchik is my favourite place: installDir: Seems good archery game: {} launch: - /seems good archery game.exe: + "/seems good archery game.exe": - when: - store: steam steam: @@ -370813,11 +371832,11 @@ O! Nalchik is my favourite place: O! Strelalka!!!: steam: id: 693680 -O'Fox Life: +"O'Fox Life": installDir: - O'Fox life: {} + "O'Fox life": {} launch: - /ofoxlife.exe: + "/ofoxlife.exe": - when: - os: windows store: steam @@ -370827,13 +371846,13 @@ O.C.D. - On Completeness & Dissonance: installDir: OCD - On Completeness and Dissonance: {} launch: - /ocd.exe: + "/ocd.exe": - when: - os: windows store: steam steam: id: 887880 -'O.D.T.: Escape... Or Die Trying': +"O.D.T.: Escape... Or Die Trying": gog: id: 1608537972 installDir: @@ -370843,9 +371862,9 @@ O.C.D. - On Completeness & Dissonance: O.M.S: steam: id: 1213110 -'O.R.B: Off-World Resource Base': +"O.R.B: Off-World Resource Base": files: - /orbdata/players: + "/orbdata/players": tags: - save when: @@ -370855,7 +371874,7 @@ O.M.S: installDir: ORB: {} launch: - /orb.exe: + "/orb.exe": - when: - store: steam steam: @@ -370869,11 +371888,11 @@ O3DX: installDir: O3DX: {} launch: - /O3DX.app: + "/O3DX.app": - when: - os: mac store: steam - /O3DX.exe: + "/O3DX.exe": - when: - os: windows store: steam @@ -370883,7 +371902,7 @@ OAOA - Off And On Again: installDir: OAOA: {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: @@ -370892,7 +371911,7 @@ OASE - Other Age Second Encounter: installDir: OASE - Other Age Second Encounter: {} launch: - /oase.exe: + "/oase.exe": - when: - os: windows store: steam @@ -370902,16 +371921,16 @@ OBEY: installDir: OBEY: {} launch: - /OBEY.app: + "/OBEY.app": - when: - os: mac store: steam - /OBEY.exe: - - arguments: '-force-d3d9' + "/OBEY.exe": + - arguments: "-force-d3d9" when: - os: windows store: steam - /OBEY.x86: + "/OBEY.x86": - when: - os: linux store: steam @@ -370921,7 +371940,7 @@ OCCHIO: installDir: OCCHIO: {} launch: - /Occhio.exe: + "/Occhio.exe": - when: - os: windows store: steam @@ -370931,16 +371950,16 @@ OCEAN OF BATTLES: installDir: OCEAN OF BATTLES: {} launch: - /Default Linux desktop 64-bit.x86_64: + "/Default Linux desktop 64-bit.x86_64": - when: - bit: 64 os: linux store: steam - /Default Mac desktop Universal.app: + "/Default Mac desktop Universal.app": - when: - os: mac store: steam - /Default Windows desktop 64-bit.exe: + "/Default Windows desktop 64-bit.exe": - when: - bit: 64 os: windows @@ -370951,11 +371970,11 @@ ODA: installDir: ODA: {} launch: - /ODA.exe: + "/ODA.exe": - when: - os: windows store: steam - /ODA_2021.12.20_Mac.app/Contents/MacOS/ODA: + "/ODA_2021.12.20_Mac.app/Contents/MacOS/ODA": - when: - os: mac store: steam @@ -370965,20 +371984,20 @@ OESE: installDir: OESE: {} launch: - /oesegame.exe: + "/oesegame.exe": - when: - os: windows store: steam steam: id: 485600 -'OFF': +"OFF": files: - /RPG_RT.ini: + "/RPG_RT.ini": tags: - config when: - os: windows - /Save*.lsd: + "/Save*.lsd": tags: - save when: @@ -370987,7 +372006,7 @@ OFFSIDE: installDir: OFFSIDE: {} launch: - /Offside.exe: + "/Offside.exe": - when: - os: windows store: steam @@ -370997,8 +372016,8 @@ OH! RPG!: installDir: OH! RPG!: {} launch: - /game.exe: - - arguments: '--in-process-gpu' + "/game.exe": + - arguments: "--in-process-gpu" when: - store: steam - when: @@ -371009,7 +372028,7 @@ OIL PATCH SIMULATIONS: installDir: Oil Patch Simulations: {} launch: - /OILPATCHSIMS.EXE: + "/OILPATCHSIMS.EXE": - when: - os: windows store: steam @@ -371024,17 +372043,17 @@ OK Boomer: installDir: Boomer Remover: {} launch: - /OkBoomer.exe: + "/OkBoomer.exe": - when: - os: windows store: steam steam: id: 1190840 -OK K.O.! Let's Play Heroes: +"OK K.O.! Let's Play Heroes": installDir: OK K.O.! Let’s Play Heroes: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -371044,11 +372063,11 @@ OK/Normal: installDir: OKNORMAL: {} launch: - /OKNORMAL.exe: + "/OKNORMAL.exe": - when: - os: windows store: steam - /oknormal_mac_steam.app: + "/oknormal_mac_steam.app": - when: - os: mac store: steam @@ -371059,20 +372078,23 @@ OK/Normal: - save steam: id: 862580 -'OMEGA: The Beginning - Episode 1': +"OMEGA: The Beginning - Episode 1": installDir: OMEGA The Beginning: {} launch: - /OMEGA The beginning.exe: + "/OMEGA The beginning.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam - /OTB.app: + "/OTB.app": - when: - os: mac store: steam - /OTB_64.x86_64: + "/OTB_64.x86_64": - when: - os: linux store: steam @@ -371080,12 +372102,12 @@ OK/Normal: id: 1042010 OMG Zombies!: files: - /OMGZ.ini: + "/OMGZ.ini": tags: - config when: - os: windows - /My Games/Ghostlight Ltd/OMG HD Zombies: + "/My Games/Ghostlight Ltd/OMG HD Zombies": tags: - save when: @@ -371093,44 +372115,47 @@ OMG Zombies!: installDir: OMG Zombies: {} launch: - /OMGZ.exe: + "/OMGZ.exe": - when: - os: windows store: steam steam: id: 259870 -'OMON Girl: Bottle Royal': +"OMON Girl: Bottle Royal": installDir: OMON Girl Bottle Royal: {} launch: - /Contents/MacOS/OMON Girl_ Bottle Royal: + "/Contents/MacOS/OMON Girl_ Bottle Royal": - when: - os: mac store: steam - /Default Linux desktop 64-bit.x86_64: + "/Default Linux desktop 64-bit.x86_64": - when: - os: linux store: steam - /OMON Girl Bottle Royal.exe: + "/OMON Girl Bottle Royal.exe": - when: - bit: 32 os: windows store: steam + - bit: 64 + os: windows + store: steam steam: id: 1198730 OMON Simulator: installDir: OMON Simulator: {} launch: - /Contents/MacOS/OMON_Simulator_MAC: + "/Contents/MacOS/OMON_Simulator_MAC": - when: - os: mac store: steam - /OMON Simulator.exe: + "/OMON Simulator.exe": - when: - os: windows store: steam - /OMON_Simulator.x86_64: + "/OMON_Simulator.x86_64": - when: - os: linux store: steam @@ -371138,13 +372163,13 @@ OMON Simulator: id: 1140440 OMORI: files: - /AppData/Local/Packages/ActiveGamingMediaInc.OMORI_4tj796bhrrsp0/SystemAppData/wgs: + "/AppData/Local/Packages/ActiveGamingMediaInc.OMORI_4tj796bhrrsp0/SystemAppData/wgs": tags: - save when: - os: windows store: microsoft - /steamapps/common/OMORI/www/save: + "/steamapps/common/OMORI/www/save": tags: - config - save @@ -371154,21 +372179,21 @@ OMORI: installDir: OMORI: {} launch: - /OMORI.app/Contents/MacOS/nwjs: - - arguments: '--6bdb2e585882fbd48826ef9cffd4c511' + "/OMORI.app/Contents/MacOS/nwjs": + - arguments: "--6bdb2e585882fbd48826ef9cffd4c511" when: - os: mac store: steam - /OMORI.exe: - - arguments: '--6bdb2e585882fbd48826ef9cffd4c511' + "/OMORI.exe": + - arguments: "--6bdb2e585882fbd48826ef9cffd4c511" when: - os: windows store: steam steam: id: 1150690 -'OMSI 2: The Bus Simulator': +"OMSI 2: The Bus Simulator": files: - /steamapps/common/OMSI 2: + "/steamapps/common/OMSI 2": tags: - config - save @@ -371177,29 +372202,29 @@ OMORI: store: steam id: steamExtra: - - 434064 - - 434061 - - 434062 - - 434060 - - 405360 + - 271390 + - 299350 + - 311020 + - 313420 + - 313430 - 345680 - 345681 - - 405430 - 361290 - - 299350 - - 271390 - - 313430 - - 313420 - - 311020 - - 434066 - - 434068 - - 434067 + - 405360 + - 405430 + - 434060 + - 434061 + - 434062 + - 434064 - 434065 + - 434066 + - 434067 + - 434068 - 434069 installDir: OMSI 2: {} launch: - /Launcher.exe: + "/Launcher.exe": - when: - os: windows store: steam @@ -371212,20 +372237,20 @@ ONRAID: installDir: ONRAID: {} launch: - /ONRAID.app/Contents/MacOS/ONRAID: + "/ONRAID.app/Contents/MacOS/ONRAID": - when: - os: mac store: steam - /ONRAID.exe: + "/ONRAID.exe": - when: - os: windows store: steam - /ONRAID.x86: + "/ONRAID.x86": - when: - bit: 32 os: linux store: steam - /ONRAID.x86_64: + "/ONRAID.x86_64": - when: - bit: 64 os: linux @@ -371236,21 +372261,21 @@ OO: installDir: oO: {} launch: - /oo.x86: + "/oo.x86": - when: - bit: 32 os: linux store: steam - /oo.x86_64: + "/oo.x86_64": - when: - bit: 64 os: linux store: steam - /ooMac.app: + "/ooMac.app": - when: - os: mac store: steam - /ooWin.exe: + "/ooWin.exe": - when: - os: windows store: steam @@ -371261,19 +372286,19 @@ OO: - save steam: id: 367570 -'OOo: Ascension': +"OOo: Ascension": installDir: oOo Ascension: {} launch: - /oOo.exe: + "/oOo.exe": - when: - os: windows store: steam - /oOo.x86_64: + "/oOo.x86_64": - when: - os: linux store: steam - /oOo_Mac.app/Contents/MacOS/oOo_Mac: + "/oOo_Mac.app/Contents/MacOS/oOo_Mac": - when: - os: mac store: steam @@ -371283,7 +372308,7 @@ OR: installDir: OR: {} launch: - /OR.exe: + "/OR.exe": - when: - store: steam steam: @@ -371292,7 +372317,7 @@ ORBITOR: installDir: ORBITOR: {} launch: - /Windows/ORBITOR.exe: + "/Windows/ORBITOR.exe": - when: - os: windows store: steam @@ -371302,7 +372327,7 @@ ORCS: installDir: ORCS: {} launch: - /orcs.exe: + "/orcs.exe": - when: - os: windows store: steam @@ -371312,7 +372337,7 @@ ORR: installDir: ORR: {} launch: - /ORR.exe: + "/ORR.exe": - when: - store: steam steam: @@ -371321,11 +372346,11 @@ ORTHOISO: installDir: ORTHOISO: {} launch: - /Contents/MacOS/OrthoIso: + "/Contents/MacOS/OrthoIso": - when: - os: mac store: steam - /OrthoIso.exe: + "/OrthoIso.exe": - when: - os: windows store: steam @@ -371335,26 +372360,26 @@ ORX: installDir: ORX: {} launch: - /ORX.exe: + "/ORX.exe": - when: - os: windows store: steam steam: id: 1071140 -'OS:Path': +"OS:Path": installDir: OSPath: {} launch: - /OSPath: + "/OSPath": - when: - os: linux store: steam - /OSPath.app: + "/OSPath.app": - when: - os: mac store: steam - /jre/bin/javaw.exe: - - arguments: '-cp OSPath.jar game.App' + "/jre/bin/javaw.exe": + - arguments: "-cp OSPath.jar game.App" when: - os: windows store: steam @@ -371364,7 +372389,7 @@ OSES: installDir: OSES: {} launch: - /Oses.exe: + "/Oses.exe": - when: - store: steam steam: @@ -371373,7 +372398,7 @@ OSIRIS: installDir: OSIRIS: {} launch: - /osiris.exe: + "/osiris.exe": - when: - bit: 64 os: windows @@ -371384,26 +372409,26 @@ OSK: installDir: OSK: {} launch: - /OSK.app: + "/OSK.app": - when: - os: mac store: steam - /OSK.exe: + "/OSK.exe": - when: - os: windows store: steam - /OSK.x86_64: + "/OSK.x86_64": - when: - os: linux store: steam steam: id: 1084870 -'OTHER: Her Loving Embrace': +"OTHER: Her Loving Embrace": steam: id: 1161780 OTTTD: files: - /ExtraSettings.dat: + "/ExtraSettings.dat": tags: - config when: @@ -371411,15 +372436,15 @@ OTTTD: installDir: OTTTD: {} launch: - /OTTTD-Mac.app: + "/OTTTD-Mac.app": - when: - os: mac store: steam - /OTTTD-linux.x86: + "/OTTTD-linux.x86": - when: - os: linux store: steam - /OTTTD-win.exe: + "/OTTTD-win.exe": - when: - os: windows store: steam @@ -371427,12 +372452,12 @@ OTTTD: id: 312630 OTXO: files: - /OTXO_Release/Save*: + "/OTXO_Release/Save*": tags: - save when: - os: windows - /OTXO_Release/Settings.ini: + "/OTXO_Release/Settings.ini": tags: - config when: @@ -371441,7 +372466,7 @@ OUTTA GAS: installDir: OUTTA GAS: {} launch: - /OUTTA GAS.exe: + "/OUTTA GAS.exe": - when: - os: windows store: steam @@ -371454,7 +372479,7 @@ OVERGRAVITY: installDir: OVERGRAVITY: {} launch: - /overgravity.exe: + "/overgravity.exe": - when: - os: windows store: steam @@ -371464,7 +372489,7 @@ OVO Smash!: installDir: OVO Smash: {} launch: - /OVO Smash.exe: + "/OVO Smash.exe": - when: - os: windows store: steam @@ -371479,15 +372504,15 @@ OXXO: installDir: OXXO: {} launch: - /OXXO.app: + "/OXXO.app": - when: - os: mac store: steam - /OXXO.exe: + "/OXXO.exe": - when: - os: windows store: steam - /OXXO.x86_64: + "/OXXO.x86_64": - when: - os: linux store: steam @@ -371497,14 +372522,14 @@ OZMAFIA!!: installDir: OZMAFIA: {} launch: - /ozmafia.exe: + "/ozmafia.exe": - when: - store: steam steam: id: 303290 OZone: files: - /KQ.INI: + "/KQ.INI": tags: - config - save @@ -371514,7 +372539,7 @@ Oafmatch: installDir: Oafmatch: {} launch: - /Binaries/Win32/Oafmatch.exe: + "/Binaries/Win32/Oafmatch.exe": - when: - os: windows store: steam @@ -371531,16 +372556,16 @@ Oaken: installDir: Oaken: {} launch: - /Oaken.app: + "/Oaken.app": - when: - os: mac store: steam - /Oaken.exe: + "/Oaken.exe": - when: - bit: 64 os: windows store: steam - /Oaken.x86_64: + "/Oaken.x86_64": - when: - bit: 64 os: linux @@ -371549,7 +372574,7 @@ Oaken: id: 1348690 Oakwood: files: - /AppData/LocalLow/Breaking Dimensions/Oakwood/saveGame.dat: + "/AppData/LocalLow/Breaking Dimensions/Oakwood/saveGame.dat": tags: - save when: @@ -371557,7 +372582,7 @@ Oakwood: installDir: Oakwood: {} launch: - /Oakwood.exe: + "/Oakwood.exe": - when: - os: windows store: steam @@ -371567,15 +372592,15 @@ Oakwood Academy of Spells and Sorcery: installDir: Oakwood Academy of Spells and Sorcery: {} launch: - /Contents/MacOS/Oakwood_Academy_of_Spells_and_Sorcery: + "/Contents/MacOS/Oakwood_Academy_of_Spells_and_Sorcery": - when: - os: mac store: steam - /Oakwood_Academy_of_Spells_and_Sorcery.exe: + "/Oakwood_Academy_of_Spells_and_Sorcery.exe": - when: - os: windows store: steam - /Oakwood_Academy_of_Spells_and_Sorcery.sh: + "/Oakwood_Academy_of_Spells_and_Sorcery.sh": - when: - os: linux store: steam @@ -371585,7 +372610,7 @@ Oasis Shooting Ops: installDir: Oasis Shooting Ops: {} launch: - /OSO.exe: + "/OSO.exe": - when: - os: windows store: steam @@ -371598,7 +372623,7 @@ Oasis VR: id: 1163130 Obama Maze: files: - /userdata//1808060: + "/userdata//1808060": tags: - save when: @@ -371606,7 +372631,7 @@ Obama Maze: installDir: ObamaMaze: {} launch: - /Obama Maze.exe: + "/Obama Maze.exe": - when: - store: steam steam: @@ -371615,12 +372640,12 @@ Obcidian Legacy: installDir: OBCIDIAN LEGACY: {} launch: - /ObcidianLegacy-Win32.exe: + "/ObcidianLegacy-Win32.exe": - when: - bit: 32 os: windows store: steam - /ObcidianLegacy-Win64.exe: + "/ObcidianLegacy-Win64.exe": - when: - bit: 64 os: windows @@ -371629,17 +372654,17 @@ Obcidian Legacy: id: 568190 Obduction: files: - /Library/Containers/com.cyan.obduction/Data/Library/Application Support/Epic/Obduction/Saved/SaveGames: + "/Library/Containers/com.cyan.obduction/Data/Library/Application Support/Epic/Obduction/Saved/SaveGames": tags: - save when: - os: mac - /Obduction/Saved/Config/WindowsNoEditor: + "/Obduction/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /Obduction/Saved/SaveGames: + "/Obduction/Saved/SaveGames": tags: - save when: @@ -371655,11 +372680,11 @@ Obduction: installDir: Obduction: {} launch: - /Obduction.app: + "/Obduction.app": - when: - os: mac store: steam - /Obduction.exe: + "/Obduction.exe": - when: - os: windows store: steam @@ -371669,7 +372694,7 @@ Obesity Simulator: installDir: Obesity Simulator: {} launch: - /Obesity Simulator.exe: + "/Obesity Simulator.exe": - when: - bit: 64 os: windows @@ -371680,17 +372705,17 @@ Obey Me: installDir: Obey Me: {} launch: - /ObeyMe.exe: + "/ObeyMe.exe": - when: - os: windows store: steam steam: id: 1034890 -Object "Cleaning": +"Object \"Cleaning\"": installDir: Object Cleaning: {} launch: - /object.exe: + "/object.exe": - when: - os: windows store: steam @@ -371702,15 +372727,15 @@ Objects in Space: installDir: Objects in Space: {} launch: - /Objects in Space.app: + "/Objects in Space.app": - when: - os: mac store: steam - /ois.exe: + "/ois.exe": - when: - os: windows store: steam - /runois.sh: + "/runois.sh": - when: - bit: 64 os: linux @@ -371721,7 +372746,7 @@ Obligation: installDir: Obligation: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -371731,7 +372756,7 @@ Obliteracers: installDir: Obliteracers: {} launch: - /Obliteracers.exe: + "/Obliteracers.exe": - when: - bit: 64 os: windows @@ -371742,11 +372767,11 @@ Obliteracy: installDir: Obliteracy: {} launch: - /Obliteracy.app/Contents/MacOS/Obliteracy: + "/Obliteracy.app/Contents/MacOS/Obliteracy": - when: - os: mac store: steam - /Obliteracy.exe: + "/Obliteracy.exe": - when: - os: windows store: steam @@ -371756,12 +372781,12 @@ Oblitus: installDir: Oblitus: {} launch: - /Oblitus(x86).exe: + "/Oblitus(x86).exe": - when: - bit: 32 os: windows store: steam - /Oblitus.exe: + "/Oblitus.exe": - when: - bit: 64 os: windows @@ -371773,31 +372798,31 @@ Oblivion Tesseract VR: Oblivion Tesseract VR: {} steam: id: 582030 -Oblivion's Edge: +"Oblivion's Edge": installDir: Oblivions Edge: {} launch: - /OblivionsEdge.app/Contents/MacOS/OblivionsEdge: + "/OblivionsEdge.app/Contents/MacOS/OblivionsEdge": - when: - os: mac store: steam - /OblivionsEdge.exe: + "/OblivionsEdge.exe": - when: - os: windows store: steam - /OblivionsEdge.x86_64: + "/OblivionsEdge.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 551100 -'Oblivious Garden: Carmina Burana': +"Oblivious Garden: Carmina Burana": installDir: Oblivious Garden ~Carmina Burana: {} launch: - /ob.eXe: - - arguments: '-dbstyle=d3d' + "/ob.eXe": + - arguments: "-dbstyle=d3d" when: - os: windows store: steam @@ -371807,7 +372832,7 @@ Obludia: installDir: Obludia: {} launch: - /Obludia.exe: + "/Obludia.exe": - when: - os: windows store: steam @@ -371817,7 +372842,7 @@ OboStar: installDir: OboStar: {} launch: - /Obostar.exe: + "/Obostar.exe": - when: - os: windows store: steam @@ -371825,22 +372850,22 @@ OboStar: id: 846370 ObsCure: files: - /Save: + "/Save": tags: - save when: - os: windows - /Save/options.sav: + "/Save/options.sav": tags: - config when: - os: windows - /tm_input.ipt: + "/tm_input.ipt": tags: - config when: - os: windows - /userdata//254460/remote: + "/userdata//254460/remote": tags: - config - save @@ -371851,7 +372876,7 @@ ObsCure: installDir: Obscure: {} launch: - /Obscure.exe: + "/Obscure.exe": - when: - os: windows store: steam @@ -371863,12 +372888,12 @@ ObsCure: id: 254460 ObsCure II: files: - /o2.ipt: + "/o2.ipt": tags: - config when: - os: windows - /Playlogic/Obscure2: + "/Playlogic/Obscure2": tags: - save when: @@ -371876,7 +372901,7 @@ ObsCure II: installDir: Obscure2: {} launch: - /Obscure2.exe: + "/Obscure2.exe": - when: - os: windows store: steam @@ -371898,7 +372923,7 @@ Obscure - Challenge Your Mind: installDir: Obscure - Challenge you mind: {} launch: - /Obscure - Challenge your Mind.exe: + "/Obscure - Challenge your Mind.exe": - when: - store: steam steam: @@ -371907,7 +372932,7 @@ Obscure Doubt: installDir: Obscure Doubt: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -371918,12 +372943,12 @@ Obscure Realm: id: 589440 Obscuritas: files: - /AppData/LocalLow/VIS_Games/Obscuritas: + "/AppData/LocalLow/VIS_Games/Obscuritas": tags: - config when: - os: windows - /AppData/LocalLow/VIS_Games/Obscuritas/Savegames: + "/AppData/LocalLow/VIS_Games/Obscuritas/Savegames": tags: - save when: @@ -371933,11 +372958,11 @@ Obscuritas: installDir: Obscuritas: {} launch: - /Obscuritas.app: + "/Obscuritas.app": - when: - os: mac store: steam - /Obscuritas.exe: + "/Obscuritas.exe": - when: - os: windows store: steam @@ -371947,7 +372972,7 @@ Obscurity: installDir: Obscurity: {} launch: - /Obscurity.exe: + "/Obscurity.exe": - when: - store: steam steam: @@ -371959,12 +372984,12 @@ ObserVRtarium: id: 634060 Observation: files: - /AppData/LocalLow/No Code Studio/Observation/SaveGames: + "/AppData/LocalLow/No Code Studio/Observation/SaveGames": tags: - save when: - os: windows - /Packages/DevolverDigital.ObservationXB1_6kzv4j18v0c96/SystemAppData/wgs: + "/Packages/DevolverDigital.ObservationXB1_6kzv4j18v0c96/SystemAppData/wgs": tags: - config - save @@ -371976,7 +373001,7 @@ Observation: installDir: Observation: {} launch: - /Observation.exe: + "/Observation.exe": - when: - bit: 64 os: windows @@ -371987,15 +373012,15 @@ Observation: - config steam: id: 906100 -'Observatory: A VR Variety Pack': +"Observatory: A VR Variety Pack": installDir: Observatory VR: {} launch: - /phantasmagoria.exe: + "/phantasmagoria.exe": - when: - os: windows store: steam - /slide.app: + "/slide.app": - when: - os: mac store: steam @@ -372003,27 +373028,27 @@ Observation: id: 414810 Observer: files: - /.config/Epic/TheObserver/Saved/Config/LinuxNoEditor: + "/.config/Epic/TheObserver/Saved/Config/LinuxNoEditor": tags: - config when: - os: linux - /.config/Epic/TheObserver/Saved/SaveGames: + "/.config/Epic/TheObserver/Saved/SaveGames": tags: - save when: - os: linux - /TheObserver/Saved/Config/WindowsNoEditor: + "/TheObserver/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /TheObserver/Saved/SaveGames: + "/TheObserver/Saved/SaveGames": tags: - save when: - os: windows - /TheObserver/Saved/SaveGames/PlayerPreferences.sav: + "/TheObserver/Saved/SaveGames/PlayerPreferences.sav": tags: - config when: @@ -372033,31 +373058,31 @@ Observer: installDir: Observer: {} launch: - /TheObserver.app: + "/TheObserver.app": - when: - bit: 64 os: mac store: steam - /TheObserver.exe: + "/TheObserver.exe": - when: - bit: 64 os: windows store: steam - /TheObserver.sh: + "/TheObserver.sh": - when: - bit: 64 os: linux store: steam steam: id: 514900 -'Observer: System Redux': +"Observer: System Redux": files: - /ObserverSystemRedux/Saved/Config/WindowsNoEditor: + "/ObserverSystemRedux/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /ObserverSystemRedux/Saved/SaveGames: + "/ObserverSystemRedux/Saved/SaveGames": tags: - save when: @@ -372070,23 +373095,23 @@ Observer: installDir: Observer System Redux: {} launch: - /Tokio/Binaries/Win64/ObserverSystemRedux.exe: + "/Tokio/Binaries/Win64/ObserverSystemRedux.exe": - when: - bit: 64 os: windows store: steam - workingDir: /Tokio/Binaries/Win64 + workingDir: "/Tokio/Binaries/Win64" steam: id: 1386900 Observers: installDir: Observers: {} launch: - /Contents/MacOS/Observers_Mac: + "/Contents/MacOS/Observers_Mac": - when: - os: mac store: steam - /Observers.exe: + "/Observers.exe": - when: - os: windows store: steam @@ -372094,7 +373119,7 @@ Observers: id: 1041160 Obsidian: files: - /Saved Games: + "/Saved Games": tags: - save when: @@ -372102,17 +373127,17 @@ Obsidian: installDir: Obsidian: {} launch: - /ScummVM/scummvm.exe: - - arguments: '--no-console --music-driver=windows --zoom-splash=white -c \"obsidian-win.ini\" obsidian-win' + "/ScummVM/scummvm.exe": + - arguments: "--no-console --music-driver=windows --zoom-splash=white -c \\\"obsidian-win.ini\\\" obsidian-win" when: - os: windows store: steam - /scummvm/scummvm: - - arguments: '--zoom-splash=white -c \"obsidian-win.ini\" obsidian-win' + "/scummvm/scummvm": + - arguments: "--zoom-splash=white -c \\\"obsidian-win.ini\\\" obsidian-win" when: - os: linux store: steam - /start.sh: + "/start.sh": - when: - os: mac store: steam @@ -372125,13 +373150,13 @@ Obsidian Crown: installDir: Obsidian Crown: {} launch: - /ObsidianCrown.exe: + "/ObsidianCrown.exe": - when: - os: windows store: steam steam: id: 1062530 -'Obstruction : VR': +"Obstruction : VR": installDir: Obstruction: {} steam: @@ -372140,7 +373165,7 @@ Obsurity: installDir: Obsurity: {} launch: - /Obsurity.exe: + "/Obsurity.exe": - when: - os: windows store: steam @@ -372148,7 +373173,7 @@ Obsurity: id: 1125110 Obulis: files: - /config.dat: + "/config.dat": tags: - save when: @@ -372156,7 +373181,7 @@ Obulis: installDir: Obulis: {} launch: - /Obulis_steam.exe: + "/Obulis_steam.exe": - when: - store: steam steam: @@ -372165,15 +373190,15 @@ Obversion: installDir: Obversion: {} launch: - /Obversion: + "/Obversion": - when: - os: linux store: steam - /Obversion.app: + "/Obversion.app": - when: - os: mac store: steam - /Obversion.exe: + "/Obversion.exe": - when: - os: windows store: steam @@ -372192,7 +373217,7 @@ Occultus - Mediterranean Cabal: installDir: Occultus: {} launch: - /OccultusMediterraneanCabal.exe: + "/OccultusMediterraneanCabal.exe": - when: - os: windows store: steam @@ -372202,15 +373227,15 @@ Occultus Command: installDir: Occultus Command: {} launch: - /OccultusCommandver3.exe: + "/OccultusCommandver3.exe": - when: - os: windows store: steam steam: id: 1159240 -'Occupy Mars: The Game': +"Occupy Mars: The Game": files: - /AppData/LocalLow/PyramidGames/OccupyMars: + "/AppData/LocalLow/PyramidGames/OccupyMars": tags: - save when: @@ -372220,7 +373245,7 @@ Occultus Command: installDir: Occupy Mars The Game: {} launch: - /OccupyMars.exe: + "/OccupyMars.exe": - when: - os: windows store: steam @@ -372230,7 +373255,7 @@ Occupy White Walls: installDir: Occupy White Walls: {} launch: - /WindowsNoEditor/OWW.exe: + "/WindowsNoEditor/OWW.exe": - when: - store: steam steam: @@ -372239,7 +373264,7 @@ Occurrence at JCR Outpost: installDir: Occurrence at JCR Outpost: {} launch: - /Occurrence.exe: + "/Occurrence.exe": - when: - os: windows store: steam @@ -372247,7 +373272,7 @@ Occurrence at JCR Outpost: id: 468080 Ocean City Racing: files: - /UDKGame/Config: + "/UDKGame/Config": tags: - config when: @@ -372255,7 +373280,7 @@ Ocean City Racing: installDir: OceanCityRacingRedux: {} launch: - /Binaries/Win32/UDK.exe: + "/Binaries/Win32/UDK.exe": - when: - os: windows store: steam @@ -372265,16 +373290,16 @@ Ocean Drive Challenge Remastered: installDir: Ocean Drive Challenge Remastered: {} launch: - /Ocean Drive Challenge.exe: + "/Ocean Drive Challenge.exe": - when: - store: steam steam: id: 1195620 -'Ocean Nomad: Survival on Raft': +"Ocean Nomad: Survival on Raft": installDir: Ocean Nomad Survival on Raft: {} launch: - /Ocean Nomad.exe: + "/Ocean Nomad.exe": - when: - os: windows store: steam @@ -372290,24 +373315,24 @@ Ocean Wonder VR: Ocean Wonder VR: {} steam: id: 844820 -Ocean's Crabellum: +"Ocean's Crabellum": installDir: - Ocean's Crabellum: {} + "Ocean's Crabellum": {} launch: - /Ocean's Crabellum.exe: + "/Ocean's Crabellum.exe": - when: - os: windows store: steam steam: id: 726330 -Ocean's Heart: +"Ocean's Heart": files: - /OceansHeart/oceans_heart_saves/save1.dat: + "/OceansHeart/oceans_heart_saves/save1.dat": tags: - save when: - os: windows - /OceansHeart/oceans_heart_saves/settings.dat: + "/OceansHeart/oceans_heart_saves/settings.dat": tags: - config when: @@ -372315,45 +373340,45 @@ Ocean's Heart: gog: id: 1819561805 installDir: - Ocean's Heart: {} + "Ocean's Heart": {} launch: - /Ocean's Heart.exe: + "/Ocean's Heart.exe": - when: - os: windows store: steam steam: id: 1393750 -Ocean's Treasures: +"Ocean's Treasures": installDir: - Ocean's Treasures: {} + "Ocean's Treasures": {} steam: id: 966240 -'Oceanhorn 2: Knights of the Lost Realm': +"Oceanhorn 2: Knights of the Lost Realm": installDir: Oceanhorn 2: {} launch: - /OH2.exe: + "/OH2.exe": - when: - bit: 64 os: windows store: steam steam: id: 1622710 -'Oceanhorn: Chronos Dungeon': +"Oceanhorn: Chronos Dungeon": files: - /Library/Containers/Oceanhorn CD/Data/Library/Application Support/com.cornfox.oceanhorncd: + "/Library/Containers/Oceanhorn CD/Data/Library/Application Support/com.cornfox.oceanhorncd": tags: - save when: - os: mac -'Oceanhorn: Monster of Uncharted Seas': +"Oceanhorn: Monster of Uncharted Seas": files: - /SaveFiles: + "/SaveFiles": tags: - save when: - os: windows - /SaveFiles/metadata-local.sav: + "/SaveFiles/metadata-local.sav": tags: - config when: @@ -372363,11 +373388,11 @@ Ocean's Treasures: installDir: Oceanhorn: {} launch: - /Oceanhorn.exe: + "/Oceanhorn.exe": - when: - os: windows store: steam - /oceanhornosx-steam.app: + "/oceanhornosx-steam.app": - when: - os: mac store: steam @@ -372382,7 +373407,7 @@ Oceanum Mortis: installDir: Oceanum Mortis: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -372395,11 +373420,11 @@ OctaFight: installDir: OctaFight: {} launch: - /OctaFight.app: + "/OctaFight.app": - when: - os: mac store: steam - /OctaFight.exe: + "/OctaFight.exe": - when: - os: windows store: steam @@ -372407,13 +373432,13 @@ OctaFight: id: 1196690 Octahedron: files: - /userdata//434660/remote: + "/userdata//434660/remote": tags: - save when: - os: windows store: steam - /octahedron/octasettings/settings.sav: + "/octahedron/octasettings/settings.sav": tags: - config when: @@ -372421,7 +373446,7 @@ Octahedron: installDir: Octahedron: {} launch: - /octahedron.exe: + "/octahedron.exe": - when: - os: windows store: steam @@ -372431,11 +373456,11 @@ Octamari Rescue: installDir: OctamariRescue: {} launch: - /Contents/MacOS/Octamari: + "/Contents/MacOS/Octamari": - when: - os: mac store: steam - /Octamari.exe: + "/Octamari.exe": - when: - os: windows store: steam @@ -372445,11 +373470,11 @@ Octave: installDir: Octave: {} launch: - /Octave.app/Contents/MacOS/Octave: + "/Octave.app/Contents/MacOS/Octave": - when: - os: mac store: steam - /Octave.exe: + "/Octave.exe": - when: - os: windows store: steam @@ -372459,20 +373484,20 @@ Octo Gravity: installDir: Octo Gravity: {} launch: - /octogravity.app/Contents/MacOS/octogravity: + "/octogravity.app/Contents/MacOS/octogravity": - when: - os: mac store: steam - /octogravity.exe: + "/octogravity.exe": - when: - os: windows store: steam - /octogravity.x86: + "/octogravity.x86": - when: - bit: 32 os: linux store: steam - /octogravity.x86_64: + "/octogravity.x86_64": - when: - bit: 64 os: linux @@ -372483,11 +373508,11 @@ OctoFurry: installDir: Octofurry: {} launch: - /Octofurry.exe: + "/Octofurry.exe": - when: - os: windows store: steam - /octofurry.app/Contents/MacOS/octofurry: + "/octofurry.app/Contents/MacOS/octofurry": - when: - os: mac store: steam @@ -372499,7 +373524,7 @@ OctoFurry: id: 1186880 Octodad: files: - /Octodad/config.xml: + "/Octodad/config.xml": tags: - config when: @@ -372507,40 +373532,40 @@ Octodad: installDir: Octodad: {} launch: - /Octodad.exe: + "/Octodad.exe": - when: - os: windows store: steam steam: id: 2383860 -'Octodad: Dadliest Catch': +"Octodad: Dadliest Catch": files: - /OctodadConfig.xml: + "/OctodadConfig.xml": tags: - config when: - os: linux - /Library/Application Support/Octodad Dadliest Catch: + "/Library/Application Support/Octodad Dadliest Catch": tags: - save when: - os: mac - /Library/Application Support/Octodad Dadliest Catch/OctodadConfig.xml: + "/Library/Application Support/Octodad Dadliest Catch/OctodadConfig.xml": tags: - config when: - os: mac - /Saved Games/Octodad Dadliest Catch: + "/Saved Games/Octodad Dadliest Catch": tags: - save when: - os: windows - /userdata//224480/remote: + "/userdata//224480/remote": tags: - save when: - store: steam - /Octodad Dadliest Catch/OctodadConfig.xml: + "/Octodad Dadliest Catch/OctodadConfig.xml": tags: - config when: @@ -372553,15 +373578,15 @@ Octodad: installDir: Octodad Dadliest Catch: {} launch: - /Octodad Dadliest Catch.app: + "/Octodad Dadliest Catch.app": - when: - os: mac store: steam - /OctodadDadliestCatch: + "/OctodadDadliestCatch": - when: - os: linux store: steam - /OctodadDadliestCatch.exe: + "/OctodadDadliestCatch.exe": - when: - os: windows store: steam @@ -372569,18 +373594,18 @@ Octodad: id: 224480 Octogeddon: files: - /userdata//525620/remote: + "/userdata//525620/remote": tags: - save when: - os: windows store: steam - /Octogeddon: + "/Octogeddon": tags: - save when: - os: windows - /Octogeddon/settings.txt: + "/Octogeddon/settings.txt": tags: - config when: @@ -372588,7 +373613,7 @@ Octogeddon: installDir: Octogeddon: {} launch: - /octogeddon.exe: + "/octogeddon.exe": - when: - os: windows store: steam @@ -372598,7 +373623,7 @@ Octonaut - 星のタコ: installDir: Takotan: {} launch: - /Takotan.exe: + "/Takotan.exe": - when: - os: windows store: steam @@ -372606,12 +373631,12 @@ Octonaut - 星のタコ: id: 1035470 Octopath Traveler: files: - /My Games/Octopath_Traveler//SaveGames: + "/My Games/Octopath_Traveler//SaveGames": tags: - save when: - os: windows - /My Games/Octopath_Traveler/Config/WindowsNoEditor: + "/My Games/Octopath_Traveler/Config/WindowsNoEditor": tags: - config when: @@ -372619,7 +373644,7 @@ Octopath Traveler: installDir: OCTOPATH TRAVELER: {} launch: - /Octopath_Traveler.exe: + "/Octopath_Traveler.exe": - when: - bit: 64 os: windows @@ -372628,12 +373653,12 @@ Octopath Traveler: id: 921570 Octopath Traveler II: files: - /Appdata/Local/Octopath_Traveler2/Saved/config: + "/Appdata/Local/Octopath_Traveler2/Saved/config": tags: - config when: - os: windows - /My Games/Octopath_Traveler2/Steam//SaveGames: + "/My Games/Octopath_Traveler2/Steam//SaveGames": tags: - config - save @@ -372642,7 +373667,7 @@ Octopath Traveler II: installDir: Octopath_Traveler2: {} launch: - /Octopath_Traveler2/Binaries/Win64/Octopath_Traveler2-Win64-Shipping.exe: + "/Octopath_Traveler2/Binaries/Win64/Octopath_Traveler2-Win64-Shipping.exe": - when: - bit: 64 os: windows @@ -372653,11 +373678,11 @@ Octopticom: installDir: OCTOPTICOM: {} launch: - /OCTOPTICOM.exe: + "/OCTOPTICOM.exe": - when: - os: windows store: steam - /OCTOPTICOM.sh: + "/OCTOPTICOM.sh": - when: - bit: 64 os: linux @@ -372677,14 +373702,14 @@ Octoshield VR: Octoshield: {} steam: id: 488150 -'Odallus: The Dark Call': +"Odallus: The Dark Call": files: - /DATA/SLOT*: + "/DATA/SLOT*": tags: - save when: - os: windows - /Joymasher/Odallus/config.ini: + "/Joymasher/Odallus/config.ini": tags: - config when: @@ -372699,7 +373724,7 @@ Octoshield VR: installDir: Odallus: {} launch: - /Launcher.exe: + "/Launcher.exe": - when: - store: steam steam: @@ -372708,7 +373733,7 @@ Odd - Even: installDir: OddEven: {} launch: - /OddEven.exe: + "/OddEven.exe": - when: - os: windows store: steam @@ -372718,14 +373743,14 @@ Odd Island: installDir: Odd Island: {} launch: - /Odd Island.exe: + "/Odd Island.exe": - when: - store: steam steam: id: 739810 Odd Realm: files: - /unity3d/Unknown Origin Games/OddRealm: + "/unity3d/Unknown Origin Games/OddRealm": tags: - config - save @@ -372736,15 +373761,15 @@ Odd Realm: installDir: Odd Realm: {} launch: - /OddRealm.app/Contents/MacOS/OddRealm: + "/OddRealm.app/Contents/MacOS/OddRealm": - when: - os: mac store: steam - /OddRealm.exe: + "/OddRealm.exe": - when: - os: windows store: steam - /OddRealm.x86_64: + "/OddRealm.x86_64": - when: - os: linux store: steam @@ -372757,20 +373782,20 @@ OddPlanet: installDir: OddPlanet: {} launch: - /OddPlanet.exe: + "/OddPlanet.exe": - when: - os: windows store: steam steam: id: 465930 -'Oddballz: Your Wacky Computer Petz': +"Oddballz: Your Wacky Computer Petz": files: - 'C:/ODDBALLZ/EGGZ/name of your pet/Name of your pet.INI': + "C:/ODDBALLZ/EGGZ/name of your pet/Name of your pet.INI": tags: - save when: - os: windows - 'C:/ODDBALLZ/ODDBALLZ.INI': + "C:/ODDBALLZ/ODDBALLZ.INI": tags: - config when: @@ -372780,14 +373805,14 @@ Oddventure: id: 1350013044 steam: id: 1235710 -'Oddworld: Abe''s Exoddus': +"Oddworld: Abe's Exoddus": files: - /*.sav: + "/*.sav": tags: - save when: - os: windows - /abe2.ini: + "/abe2.ini": tags: - config when: @@ -372797,19 +373822,19 @@ Oddventure: installDir: Oddworld Abes Exoddus: {} launch: - /Exoddus.exe: + "/Exoddus.exe": - when: - store: steam steam: id: 15710 -'Oddworld: Abe''s Oddysee': +"Oddworld: Abe's Oddysee": files: - /*.sav: + "/*.sav": tags: - save when: - os: windows - /abe.ini: + "/abe.ini": tags: - config when: @@ -372819,19 +373844,19 @@ Oddventure: installDir: Oddworld Abes Oddysee: {} launch: - /AbeWin.exe: + "/AbeWin.exe": - when: - store: steam steam: id: 15700 -'Oddworld: Munch''s Oddysee': +"Oddworld: Munch's Oddysee": files: - /bin/launcher.cfg: + "/bin/launcher.cfg": tags: - config when: - os: windows - /saves: + "/saves": tags: - save when: @@ -372839,15 +373864,15 @@ Oddventure: installDir: Oddworld Munchs Oddysee: {} launch: - /bin/Launcher.exe: + "/bin/Launcher.exe": - when: - store: steam - workingDir: /bin + workingDir: "/bin" steam: id: 15740 -'Oddworld: Munch''s Oddysee (2016)': +"Oddworld: Munch's Oddysee (2016)": files: - /savedata: + "/savedata": tags: - save when: @@ -372857,26 +373882,26 @@ Oddventure: installDir: Oddworld Munchs Oddysee: {} launch: - /bin/Launcher.exe: + "/bin/Launcher.exe": - when: - store: steam - workingDir: /bin + workingDir: "/bin" steam: id: 15740 -'Oddworld: New ''n'' Tasty!': +"Oddworld: New 'n' Tasty!": files: - /SaveGame: + "/SaveGame": tags: - save when: - os: windows - os: linux - /Settings: + "/Settings": tags: - config when: - os: linux - /Settings/: + "/Settings/": tags: - config when: @@ -372890,33 +373915,33 @@ Oddventure: installDir: Oddworld New n Tasty: {} launch: - /NNT.app: + "/NNT.app": - when: - os: mac store: steam - /NNT.exe: + "/NNT.exe": - when: - os: windows store: steam - /NNT.x86: + "/NNT.x86": - when: - os: linux store: steam steam: id: 314660 -'Oddworld: Soulstorm Enhanced Edition': +"Oddworld: Soulstorm Enhanced Edition": files: - /Settings: + "/Settings": tags: - config when: - os: windows - /AppData/LocalLow/Oddworld Inhabitants Inc/Oddworld_ Soulstorm: + "/AppData/LocalLow/Oddworld Inhabitants Inc/Oddworld_ Soulstorm": tags: - save when: - os: windows - /AppData/LocalLow/Oddworld Inhabitants Inc/Oddworld_ Soulstorm Enhanced Edition: + "/AppData/LocalLow/Oddworld Inhabitants Inc/Oddworld_ Soulstorm Enhanced Edition": tags: - save when: @@ -372926,38 +373951,38 @@ Oddventure: installDir: Oddworld Soulstorm: {} launch: - /soulstorm.exe: + "/soulstorm.exe": - when: - os: windows store: steam registry: - 'HKEY_CURRENT_USER/Software/Oddworld Inhabitants Inc/Oddworld: Soulstorm': + "HKEY_CURRENT_USER/Software/Oddworld Inhabitants Inc/Oddworld: Soulstorm": tags: - config steam: id: 619390 -'Oddworld: Stranger''s Wrath': +"Oddworld: Stranger's Wrath": files: - /Oddworld/Stranger's Wrath/Save: + "/Oddworld/Stranger's Wrath/Save": tags: - save when: - os: windows - /Oddworld/Stranger's Wrath/config.txt: + "/Oddworld/Stranger's Wrath/config.txt": tags: - config when: - os: windows gog: id: 1207658950 -'Oddworld: Stranger''s Wrath HD': +"Oddworld: Stranger's Wrath HD": files: - /Oddworld/Stranger's Wrath HD/Save: + "/Oddworld/Stranger's Wrath HD/Save": tags: - save when: - os: windows - /Oddworld/Stranger's Wrath HD/config.txt: + "/Oddworld/Stranger's Wrath HD/config.txt": tags: - config when: @@ -372965,22 +373990,22 @@ Oddventure: gog: id: 1207658950 installDir: - Stranger's Wrath: {} + "Stranger's Wrath": {} launch: - /launcher.exe: + "/launcher.exe": - when: - store: steam steam: id: 15750 Ode: files: - /savegames//9797: + "/savegames//9797": tags: - save when: - store: uplay registry: - 'HKEY_CURRENT_USER/Software/Reflections, A Ubisoft Studio/Ode': + "HKEY_CURRENT_USER/Software/Reflections, A Ubisoft Studio/Ode": tags: - config Ode to a Moon: @@ -372990,20 +374015,20 @@ Odium to the Core: installDir: Odium To the Core: {} launch: - /Odium to the core.exe: + "/Odium to the core.exe": - when: - os: windows store: steam - /OdiumTTC.app/Contents/MacOS/OdiumTTC: + "/OdiumTTC.app/Contents/MacOS/OdiumTTC": - when: - os: mac store: steam - /OdiumTTC.x86: + "/OdiumTTC.x86": - when: - bit: 32 os: linux store: steam - /OdiumTTC.x86_64: + "/OdiumTTC.x86_64": - when: - bit: 64 os: linux @@ -373014,35 +374039,35 @@ Odyssee: installDir: Odyssee: {} launch: - /Odyssee.exe: + "/Odyssee.exe": - when: - os: windows store: steam steam: id: 844620 -'Odysseus Kosmos and his Robot Quest: Adventure Game': +"Odysseus Kosmos and his Robot Quest: Adventure Game": installDir: Odysseus Kosmos and his Robot Quest: {} launch: - /OdysseusS1E1.exe: + "/OdysseusS1E1.exe": - when: - bit: 32 os: windows store: steam - /OdysseusS1E1.x86: + "/OdysseusS1E1.x86": - when: - os: linux store: steam steam: id: 645820 -'Odysseus Kosmos and his Robot Quest: Episode 1': +"Odysseus Kosmos and his Robot Quest: Episode 1": files: - /AppData/LocalLow/PavelKostin/Odysseus KosmosE1: + "/AppData/LocalLow/PavelKostin/Odysseus KosmosE1": tags: - save when: - os: windows - /AppData/LocalLow/PavelKostin/Odysseus KosmosE1/options.gd: + "/AppData/LocalLow/PavelKostin/Odysseus KosmosE1/options.gd": tags: - config when: @@ -373050,17 +374075,17 @@ Odyssee: installDir: Odysseus Kosmos and his Robot Quest - Episode 1: {} launch: - /Odysseus_S1E1.x86: + "/Odysseus_S1E1.x86": - when: - bit: 32 os: linux store: steam - /Odysseus_S1E1.x86_64: + "/Odysseus_S1E1.x86_64": - when: - bit: 64 os: linux store: steam - /Odysseus_S1E1_standalone.exe: + "/Odysseus_S1E1_standalone.exe": - when: - os: windows store: steam @@ -373070,14 +374095,14 @@ Odyssee: - config steam: id: 769920 -'Odysseus: Long Way Home': +"Odysseus: Long Way Home": files: - /Rainbow/Odysseus/profiles.xml: + "/Rainbow/Odysseus/profiles.xml": tags: - save when: - os: windows - /Rainbow/Odysseus/settings.xml: + "/Rainbow/Odysseus/settings.xml": tags: - config when: @@ -373085,11 +374110,11 @@ Odyssee: installDir: Odysseus Long Way Home: {} launch: - /Odysseus.app: + "/Odysseus.app": - when: - os: mac store: steam - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -373099,11 +374124,11 @@ Odyssey - The Story of Science: installDir: Odyssey - The Next Generation Science Game: {} launch: - /Odyssey_64.exe: + "/Odyssey_64.exe": - when: - os: windows store: steam - /Odyssey_Mac.app/Contents/MacOS/Odyssey_Mac: + "/Odyssey_Mac.app/Contents/MacOS/Odyssey_Mac": - when: - os: mac store: steam @@ -373113,17 +374138,17 @@ Odyssey Reborn: installDir: Odyssey: {} launch: - /ody.exe: + "/ody.exe": - when: - os: windows store: steam steam: id: 351840 -'Odyssey VR: The Deep Space Expedition': +"Odyssey VR: The Deep Space Expedition": installDir: Odyssey: {} launch: - /OdysseyVR.exe: + "/OdysseyVR.exe": - when: - store: steam steam: @@ -373132,7 +374157,7 @@ Oedipus Dating Sim: installDir: Oedipus Dating Sim: {} launch: - /oedipus.exe: + "/oedipus.exe": - when: - os: windows store: steam @@ -373140,12 +374165,12 @@ Oedipus Dating Sim: id: 757540 Of Bird and Cage: files: - /TheBirdcageGame/Saved/Config: + "/TheBirdcageGame/Saved/Config": tags: - config when: - os: windows - /TheBirdcageGame/Saved/SaveGames: + "/TheBirdcageGame/Saved/SaveGames": tags: - save when: @@ -373153,7 +374178,7 @@ Of Bird and Cage: installDir: TheBirdcageGame: {} launch: - /TheBirdcageGame.exe: + "/TheBirdcageGame.exe": - when: - store: steam steam: @@ -373164,15 +374189,15 @@ Of Blades & Tails: installDir: Of Blades & Tails: {} launch: - /Of Blades & Tails.app/Contents/MacOS/Of Blades & Tails: + "/Of Blades & Tails.app/Contents/MacOS/Of Blades & Tails": - when: - os: mac store: steam - /game.exe: + "/game.exe": - when: - os: windows store: steam - /game.x86_64: + "/game.x86_64": - when: - os: linux store: steam @@ -373182,11 +374207,11 @@ Of Carrots and Blood: installDir: Of Carrots And Blood: {} launch: - /ocab.app: + "/ocab.app": - when: - os: mac store: steam - /ocab.exe: + "/ocab.exe": - when: - os: windows store: steam @@ -373196,15 +374221,15 @@ Of Carrots and Blood: - save steam: id: 439440 -'Of Gods and Men: The Daybreak Empire': +"Of Gods and Men: The Daybreak Empire": installDir: Of Gods and Men - The Daybreak Empire: {} launch: - /Of Gods and Men - The Daybreak Empire.app/Contents/MacOS/Of Gods and Men - The Daybreak Empire: + "/Of Gods and Men - The Daybreak Empire.app/Contents/MacOS/Of Gods and Men - The Daybreak Empire": - when: - os: mac store: steam - /Of Gods and Men - The Daybreak Empire.exe: + "/Of Gods and Men - The Daybreak Empire.exe": - when: - os: windows store: steam @@ -373214,7 +374239,7 @@ Of Guards and Thieves: installDir: OfGuardsAndThieves: {} launch: - /OGAT.exe: + "/OGAT.exe": - when: - os: windows store: steam @@ -373224,7 +374249,7 @@ Of Kings And Men: installDir: Of Kings And Men: {} launch: - /Bin/Win64/OfKingsAndMen.Client.exe: + "/Bin/Win64/OfKingsAndMen.Client.exe": - when: - bit: 64 os: windows @@ -373237,7 +374262,7 @@ Of Light and Darkness: installDir: Of Light and Darkness: {} launch: - /Launch Of Light and Darkness.bat: + "/Launch Of Light and Darkness.bat": - when: - store: steam steam: @@ -373246,14 +374271,14 @@ Of Love And Sorrow: installDir: Of Love And Sorrow: {} launch: - /OfLoveAndSorrow.exe: + "/OfLoveAndSorrow.exe": - when: - store: steam steam: id: 498300 -'Of Mice and Sand: Revised': +"Of Mice and Sand: Revised": files: - /SaveWin: + "/SaveWin": tags: - save when: @@ -373261,7 +374286,7 @@ Of Love And Sorrow: installDir: OfMiceAndSand: {} launch: - /SabakunoNezumiDan.exe: + "/SabakunoNezumiDan.exe": - when: - os: windows store: steam @@ -373269,7 +374294,7 @@ Of Love And Sorrow: id: 785780 Of Orcs and Men: files: - /Of Orcs and Men: + "/Of Orcs and Men": tags: - config - save @@ -373280,7 +374305,7 @@ Of Orcs and Men: installDir: Of Orcs And Men: {} launch: - /OfOrcsAndMen_Steam.exe: + "/OfOrcsAndMen_Steam.exe": - when: - store: steam steam: @@ -373289,7 +374314,7 @@ Of Ships & Scoundrels: installDir: Of Ships & Scoundrels: {} launch: - /OfShipsAndScoundrels.exe: + "/OfShipsAndScoundrels.exe": - when: - store: steam steam: @@ -373297,50 +374322,50 @@ Of Ships & Scoundrels: Off Grid: steam: id: 526720 -'Off The Record: The Art of Deception': +"Off The Record: The Art of Deception": installDir: - Off The Record The Art of Deception Collector's Edition: {} + "Off The Record The Art of Deception Collector's Edition": {} launch: - /OffTheRecord_TheArtOfDeceptionCE.exe: + "/OffTheRecord_TheArtOfDeceptionCE.exe": - when: - os: windows store: steam steam: id: 600170 -'Off the Record: Liberty Stone': +"Off the Record: Liberty Stone": installDir: - Off The Record Liberty Stone Collector's Edition: {} + "Off The Record Liberty Stone Collector's Edition": {} launch: - /OffTheRecord_LibertyStone_CE.exe: + "/OffTheRecord_LibertyStone_CE.exe": - when: - os: windows store: steam steam: id: 770900 -'Off the Record: The Final Interview': +"Off the Record: The Final Interview": installDir: - Off the Record The Final Interview Collector's Edition: {} + "Off the Record The Final Interview Collector's Edition": {} launch: - /OffTheRecord_TheFinalInterview_CE.exe: + "/OffTheRecord_TheFinalInterview_CE.exe": - when: - os: windows store: steam steam: id: 866720 -'Off the Record: The Italian Affair': +"Off the Record: The Italian Affair": installDir: - Off the Record The Italian Affair Collector's Edition: {} + "Off the Record The Italian Affair Collector's Edition": {} launch: - /OffTheRecord_TheItalianAffair_CE.exe: + "/OffTheRecord_TheItalianAffair_CE.exe": - when: - store: steam steam: id: 503070 -'Off the Record: The Linden Shades': +"Off the Record: The Linden Shades": installDir: - Off the Record The Linden Shades Collector's Edition: {} + "Off the Record The Linden Shades Collector's Edition": {} launch: - /OffTheRecord_LindenShadesCE.exe: + "/OffTheRecord_LindenShadesCE.exe": - when: - store: steam steam: @@ -373349,15 +374374,15 @@ Off-Peak: installDir: Off-Peak: {} launch: - /Off-Peak Steam 2.0.exe: + "/Off-Peak Steam 2.0.exe": - when: - os: windows store: steam - /Off-Peak Steam 2.0.x86: + "/Off-Peak Steam 2.0.x86": - when: - os: linux store: steam - /Off_Peak_Mac_Steam_2.0.app: + "/Off_Peak_Mac_Steam_2.0.app": - when: - os: mac store: steam @@ -373371,17 +374396,17 @@ Off-Road Drive: installDir: Off-Road Drive: {} launch: - /Binaries/Win32/ORD.exe: + "/Binaries/Win32/ORD.exe": - when: - store: steam - workingDir: /Binaries/Win32 + workingDir: "/Binaries/Win32" steam: id: 200230 -'Off-Road Paradise: Trial 4x4': +"Off-Road Paradise: Trial 4x4": installDir: OffRoad_Paradise: {} launch: - /OffRoad.exe: + "/OffRoad.exe": - arguments: NoVR when: - store: steam @@ -373391,7 +374416,7 @@ Off-Road Super Racing: installDir: Off-Road Super Racing: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -373401,17 +374426,17 @@ Offendron Warrior: installDir: Offendron Warrior: {} launch: - /Offendron_Warrior.exe: + "/Offendron_Warrior.exe": - when: - os: windows store: steam steam: id: 999200 -'Offensive Combat: Redux!': +"Offensive Combat: Redux!": installDir: Offensive Combat Redux: {} launch: - /oc.exe: + "/oc.exe": - when: - os: windows store: steam @@ -373421,7 +374446,7 @@ Offensive Dimensions: installDir: Offensive Dimensions: {} launch: - /OffensiveDimensions.exe: + "/OffensiveDimensions.exe": - when: - os: windows store: steam @@ -373431,7 +374456,7 @@ Office Battle: installDir: Office Battle: {} launch: - /Office_Battle_Data/StreamingAssets/clear_settings.bat: + "/Office_Battle_Data/StreamingAssets/clear_settings.bat": - when: - os: windows store: steam @@ -373446,7 +374471,7 @@ Office Freakout: installDir: Office Freakout: {} launch: - /OfficeFreakout.exe: + "/OfficeFreakout.exe": - when: - os: windows store: steam @@ -373456,11 +374481,11 @@ Office Management 101: installDir: Office Management 101: {} launch: - /OfficeManagement101: + "/OfficeManagement101": - when: - os: linux store: steam - /om101.exe: + "/om101.exe": - when: - os: windows store: steam @@ -373473,8 +374498,11 @@ Office Race: installDir: Office Race: {} launch: - /Office Race.exe: + "/Office Race.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam @@ -373482,7 +374510,7 @@ Office Race: id: 867640 Office Run: files: - /OfficeRun/Saved/SaveGames: + "/OfficeRun/Saved/SaveGames": tags: - save when: @@ -373490,22 +374518,22 @@ Office Run: installDir: Office Run: {} launch: - /OfficeRun.exe: + "/OfficeRun.exe": - when: - bit: 64 os: windows store: steam steam: id: 2000180 -'Office Space: Idle Profits': +"Office Space: Idle Profits": installDir: Office Space Idle Profits: {} launch: - /officespace.app: + "/officespace.app": - when: - os: mac store: steam - /officespace.exe: + "/officespace.exe": - when: - bit: 64 os: windows @@ -373516,18 +374544,18 @@ Office lovers: installDir: Office lovers: {} launch: - /Office lovers.exe: - - arguments: '-windowed' + "/Office lovers.exe": + - arguments: "-windowed" when: - os: windows store: steam steam: id: 494450 -'OfficeBots: Reality Bytes VR': +"OfficeBots: Reality Bytes VR": installDir: - 'OfficeBots Reality Bytes [VR]': {} + "OfficeBots Reality Bytes [VR]": {} launch: - /OfficeBotsVR.exe: + "/OfficeBotsVR.exe": - when: - bit: 64 os: windows @@ -373538,7 +374566,7 @@ Offroad Mania: installDir: Offroad Mania: {} launch: - /Offroad Mania.exe: + "/Offroad Mania.exe": - when: - bit: 64 os: windows @@ -373549,25 +374577,25 @@ Offroad Racing - Buggy X ATV X Moto: installDir: Off-Road Racing: {} launch: - /Buggy.exe: + "/Buggy.exe": - when: - os: windows store: steam steam: id: 1085520 -'Offroad: VR': +"Offroad: VR": steam: id: 533910 Offside (2022): installDir: Offside: {} launch: - /nw.exe: - - arguments: '--in-process-gpu' + "/nw.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam - /nwjs.app: + "/nwjs.app": - when: - os: mac store: steam @@ -373575,17 +374603,17 @@ Offside (2022): id: 942370 Offspring Fling!: files: - /Library/Preferences/offspringfling/Local Store: + "/Library/Preferences/offspringfling/Local Store": tags: - save when: - os: mac - /offspringfling/Local Store: + "/offspringfling/Local Store": tags: - save when: - os: windows - /offspringfling/Local Store/config: + "/offspringfling/Local Store/config": tags: - config when: @@ -373593,11 +374621,11 @@ Offspring Fling!: installDir: Offspring Fling!: {} launch: - /Offspring Fling.app: + "/Offspring Fling.app": - when: - os: mac store: steam - /Offspring Fling.exe: + "/Offspring Fling.exe": - when: - os: windows store: steam @@ -373605,54 +374633,56 @@ Offspring Fling!: id: 211360 Offworld Trading Company: files: - /My Games/Offworld/*.xml: + "/My Games/Offworld/*.xml": tags: - config when: - os: windows - /My Games/Offworld/EpicCloud: - tags: - - save - when: - - store: epic - /My Games/Offworld/EpicCloud/GameOptionsSave.xml: - tags: - - config - when: - - store: epic - /My Games/Offworld/Saves: + "/My Games/Offworld/EpicCloud": tags: - save when: - os: windows - /My Games/Offworld/SteamCloud: - tags: - - save - when: - - store: steam - /My Games/Offworld/SteamCloud/GameOptionsSave.xml: + "/My Games/Offworld/EpicCloud/GameOptionsSave.xml": tags: - config when: - - store: steam + - os: windows + "/My Games/Offworld/Saves": + tags: + - save + when: + - os: windows + "/My Games/Offworld/SteamCloud": + tags: + - save + when: + - os: windows + store: steam + "/My Games/Offworld/SteamCloud/GameOptionsSave.xml": + tags: + - config + when: + - os: windows + store: steam gog: id: 1574464714 installDir: Offworld Trading Company: {} launch: - /Offworld.app: - - arguments: '-multidisplay' + "/Offworld.app": + - arguments: "-multidisplay" when: - os: mac store: steam - /Offworld.x86_64: - - arguments: '-multidisplay' + "/Offworld.x86_64": + - arguments: "-multidisplay" when: - bit: 64 os: linux store: steam - /StardockLauncher.exe: - - arguments: '-multidisplay' + "/StardockLauncher.exe": + - arguments: "-multidisplay" when: - os: windows store: steam @@ -373662,11 +374692,11 @@ Ogre: installDir: Ogre: {} launch: - /Ogre.app: + "/Ogre.app": - when: - os: mac store: steam - /Ogre.exe: + "/Ogre.exe": - when: - os: windows store: steam @@ -373676,7 +374706,7 @@ Ogre Tale: installDir: Ogre Tale: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -373686,7 +374716,7 @@ Ogrez: installDir: Ogrez: {} launch: - /OgreZ.exe: + "/OgreZ.exe": - when: - bit: 64 os: windows @@ -373697,7 +374727,7 @@ Oh Boy Cheese: installDir: cheese chasers: {} launch: - /cheese chasers.exe: + "/cheese chasers.exe": - when: - os: windows store: steam @@ -373707,25 +374737,25 @@ Oh Crab!: installDir: Oh Crab!: {} launch: - /ohcrab.app: + "/ohcrab.app": - when: - os: mac store: steam - /ohcrab.exe: + "/ohcrab.exe": - when: - os: windows store: steam steam: id: 1135210 -'Oh Jeez, Oh No, My Rabbits Are Gone!': +"Oh Jeez, Oh No, My Rabbits Are Gone!": installDir: MyRabbitsAreGone: {} launch: - /MyRabbitsAreGone: + "/MyRabbitsAreGone": - when: - os: linux store: steam - /MyRabbitsAreGone.exe: + "/MyRabbitsAreGone.exe": - when: - os: windows store: steam @@ -373735,7 +374765,7 @@ Oh My Ballz: installDir: Gun Chain: {} launch: - /Gun Chain.exe: + "/Gun Chain.exe": - when: - os: windows store: steam @@ -373744,22 +374774,22 @@ Oh My Ballz: Oh My Cooking Gun: steam: id: 743240 -'Oh My God, Look at This Knight': +"Oh My God, Look at This Knight": files: - /OH_MY_GOD__LOOK_AT_THIS_KNIGHT/save.sav: + "/OH_MY_GOD__LOOK_AT_THIS_KNIGHT/save.sav": tags: - save when: - os: windows - /OH_MY_GOD__LOOK_AT_THIS_KNIGHT/settings.ini: + "/OH_MY_GOD__LOOK_AT_THIS_KNIGHT/settings.ini": tags: - config when: - os: windows installDir: - 'OH MY GOD, LOOK AT THIS KNIGHT': {} + "OH MY GOD, LOOK AT THIS KNIGHT": {} launch: - /OH_MY_GOD__LOOK_AT_THIS_KNIGHT.exe: + "/OH_MY_GOD__LOOK_AT_THIS_KNIGHT.exe": - when: - os: windows store: steam @@ -373769,7 +374799,7 @@ Oh My Godheads: installDir: Oh My Godheads: {} launch: - /OMGH.exe: + "/OMGH.exe": - when: - bit: 64 os: windows @@ -373780,20 +374810,20 @@ Oh My Gore!: installDir: Oh My Gore: {} launch: - /Oh My Gore.app: + "/Oh My Gore.app": - when: - os: mac store: steam - /Oh My Gore.exe: + "/Oh My Gore.exe": - when: - os: windows store: steam - /OhMyGore.x86: + "/OhMyGore.x86": - when: - bit: 32 os: linux store: steam - /OhMyGore.x86_64: + "/OhMyGore.x86_64": - when: - bit: 64 os: linux @@ -373804,7 +374834,7 @@ Oh No! Bugs!: installDir: OhNoBugs: {} launch: - /OhNoBugs.exe: + "/OhNoBugs.exe": - when: - os: windows store: steam @@ -373814,7 +374844,7 @@ Oh No! Ninjas!: installDir: Oh No! Ninjas!: {} launch: - /OhNoNinjas.exe: + "/OhNoNinjas.exe": - when: - os: windows store: steam @@ -373824,7 +374854,7 @@ Oh Ship Arena: installDir: OhShipArena: {} launch: - /Oh Ship.exe: + "/Oh Ship.exe": - when: - bit: 64 os: windows @@ -373833,7 +374863,7 @@ Oh Ship Arena: id: 912510 Oh So Hero!: files: - /AppData/LocalLow/Full Frontal Frog/Oh So Hero: + "/AppData/LocalLow/Full Frontal Frog/Oh So Hero": tags: - save when: @@ -373846,24 +374876,24 @@ Oh Trap!: installDir: Oh Trap!: {} launch: - /Oh Trap!.exe: + "/Oh Trap!.exe": - when: - os: windows store: steam - /release.app/Contents/MacOS/release: + "/release.app/Contents/MacOS/release": - when: - os: mac store: steam steam: id: 994520 -'Oh, Deer!': +"Oh, Deer!": files: - /Necrosoft Games/Oh Deer/config.txt: + "/Necrosoft Games/Oh Deer/config.txt": tags: - config when: - os: windows - /Necrosoft Games/Oh Deer/leaderboards_*.txt: + "/Necrosoft Games/Oh Deer/leaderboards_*.txt": tags: - save when: @@ -373872,15 +374902,15 @@ Oh...Sir! Prototype: installDir: Oh Sir: {} launch: - /ohsir.app/Contents/MacOS/ohsir: + "/ohsir.app/Contents/MacOS/ohsir": - when: - os: mac store: steam - /ohsir.exe: + "/ohsir.exe": - when: - os: windows store: steam - /ohsir.x86: + "/ohsir.x86": - when: - os: linux store: steam @@ -373892,7 +374922,7 @@ Oh...Sir! Prototype: id: 416690 Oh...Sir! The Hollywood Roast: files: - /OhSirTheHollywoodRoast/progress.oss: + "/OhSirTheHollywoodRoast/progress.oss": tags: - save when: @@ -373900,11 +374930,11 @@ Oh...Sir! The Hollywood Roast: installDir: Oh...Sir! The Hollywood Roast: {} launch: - /ohsirthr.app/Contents/MacOS/ohsirthr: + "/ohsirthr.app/Contents/MacOS/ohsirthr": - when: - os: mac store: steam - /ohsirthr.exe: + "/ohsirthr.exe": - when: - os: windows store: steam @@ -373916,7 +374946,7 @@ Oh...Sir! The Hollywood Roast: id: 575330 Oh...Sir! The Insult Simulator: files: - /OhSir/progress.json: + "/OhSir/progress.json": tags: - save when: @@ -373926,15 +374956,15 @@ Oh...Sir! The Insult Simulator: installDir: Oh...Sir! The Insult Simulator: {} launch: - /ohsir.app/Contents/MacOS/ohsir: + "/ohsir.app/Contents/MacOS/ohsir": - when: - os: mac store: steam - /ohsir.exe: + "/ohsir.exe": - when: - os: windows store: steam - /ohsir.x86: + "/ohsir.x86": - when: - os: linux store: steam @@ -373948,15 +374978,15 @@ Ohio Jack and The Cup of Eternity: installDir: InfiniTrap Classic: {} launch: - /InfiniTrap: + "/InfiniTrap": - when: - os: linux store: steam - /InfiniTrap.app: + "/InfiniTrap.app": - when: - os: mac store: steam - /InfiniTrap.exe: + "/InfiniTrap.exe": - when: - os: windows store: steam @@ -373969,24 +374999,24 @@ Ohr: installDir: Ohr: {} launch: - /ohr.exe: + "/ohr.exe": - when: - bit: 64 os: windows store: steam steam: id: 376480 -'Oi, Innkeep!': +"Oi, Innkeep!": steam: id: 824840 -'Oi, Innkeep! - Chronicles!': +"Oi, Innkeep! - Chronicles!": steam: id: 1025620 Oik: installDir: Oik: {} launch: - /Oik.exe: + "/Oik.exe": - when: - os: windows store: steam @@ -373996,7 +375026,7 @@ Oik 2: installDir: Oik 2: {} launch: - /Oik 2.exe: + "/Oik 2.exe": - when: - os: windows store: steam @@ -374006,8 +375036,8 @@ Oik 3: installDir: Oik 3: {} launch: - /Oik_3.exe: - - arguments: '-windowed' + "/Oik_3.exe": + - arguments: "-windowed" when: - os: windows store: steam @@ -374017,8 +375047,8 @@ Oik 4: installDir: Oik4: {} launch: - /Oik4.exe: - - arguments: '-windowed' + "/Oik4.exe": + - arguments: "-windowed" when: - os: windows store: steam @@ -374028,8 +375058,8 @@ Oik 5: installDir: Oik5: {} launch: - /oik5.exe: - - arguments: '-windowed' + "/oik5.exe": + - arguments: "-windowed" when: - os: windows store: steam @@ -374039,8 +375069,8 @@ Oik Memory: installDir: Oik Memory: {} launch: - /Oik memory.exe: - - arguments: '-windowed' + "/Oik memory.exe": + - arguments: "-windowed" when: - os: windows store: steam @@ -374050,7 +375080,7 @@ Oik Memory 2: installDir: OM2: {} launch: - /OM2.exe: + "/OM2.exe": - when: - os: windows store: steam @@ -374060,17 +375090,17 @@ Oik Memory 3: installDir: Oik_Memory_3: {} launch: - /oik3m.exe: + "/oik3m.exe": - when: - os: windows store: steam steam: id: 1025130 -'Oik Memory: Endgame': +"Oik Memory: Endgame": installDir: Oik Memory Endgame: {} launch: - /oik_m_end.exe: + "/oik_m_end.exe": - when: - os: windows store: steam @@ -374080,20 +375110,20 @@ Oik Reloaded: installDir: Oik Reloaded: {} launch: - /Contents/MacOS/oik_r_mac: + "/Contents/MacOS/oik_r_mac": - when: - os: mac store: steam - /oik_r/Oik_r.exe: + "/oik_r/Oik_r.exe": - when: - os: windows store: steam - /oik_r_linux/oik_r_linux.x86: + "/oik_r_linux/oik_r_linux.x86": - when: - bit: 32 os: linux store: steam - /oik_r_linux/oik_r_linux.x86_64: + "/oik_r_linux/oik_r_linux.x86_64": - when: - bit: 64 os: linux @@ -374107,8 +375137,11 @@ Oil Baron: installDir: Oil Baron: {} launch: - /nw.exe: + "/nw.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam @@ -374118,15 +375151,15 @@ Oil Enterprise: installDir: Oil Enterprise: {} launch: - /oilenterprise.app: + "/oilenterprise.app": - when: - os: mac store: steam - /oilenterprise.exe: + "/oilenterprise.exe": - when: - os: windows store: steam - /oilenterprise.x86: + "/oilenterprise.x86": - when: - os: linux store: steam @@ -374137,22 +375170,22 @@ Oil Mogul: id: 1189240 Oil Rush: files: - /.OilRush/oilrush.cfg: + "/.OilRush/oilrush.cfg": tags: - config when: - os: linux - /.OilRush/profiles: + "/.OilRush/profiles": tags: - save when: - os: linux - /OilRush/oilrush.cfg: + "/OilRush/oilrush.cfg": tags: - config when: - os: windows - /OilRush/profiles//save: + "/OilRush/profiles//save": tags: - save when: @@ -374160,15 +375193,15 @@ Oil Rush: installDir: Oil Rush: {} launch: - /OilRush.app/Contents/MacOS/oilrush_steam: + "/OilRush.app/Contents/MacOS/oilrush_steam": - when: - os: mac store: steam - /launcher_steam.bat: + "/launcher_steam.bat": - when: - os: windows store: steam - /launcher_steam.sh: + "/launcher_steam.sh": - when: - os: linux store: steam @@ -374178,7 +375211,7 @@ Oil Wars: installDir: Oil Wars: {} launch: - /Launcher.exe: + "/Launcher.exe": - when: - os: windows store: steam @@ -374188,7 +375221,7 @@ Oirbo: installDir: Oirbo: {} launch: - /Oirbo.exe: + "/Oirbo.exe": - when: - store: steam steam: @@ -374197,20 +375230,20 @@ Okaeri: installDir: Okaeri: {} launch: - /Okaeri.exe: + "/Okaeri.exe": - when: - store: steam steam: id: 1147960 Okami HD: files: - /userdata//587620/remote: + "/userdata//587620/remote": tags: - save when: - os: windows store: steam - /OKAMI HD: + "/OKAMI HD": tags: - config when: @@ -374218,21 +375251,21 @@ Okami HD: installDir: Okami: {} launch: - /okami.exe: + "/okami.exe": - when: - bit: 64 os: windows store: steam steam: id: 587620 -'Okay, Panic!': +"Okay, Panic!": installDir: - 'Okay, Panic!': {} + "Okay, Panic!": {} steam: id: 1098790 Okhlos: files: - /AppData/LocalLow/Coffee Powered Machine/Okhlos: + "/AppData/LocalLow/Coffee Powered Machine/Okhlos": tags: - config - save @@ -374243,20 +375276,20 @@ Okhlos: installDir: Okhlos: {} launch: - /Okhlos.app: + "/Okhlos.app": - when: - os: mac store: steam - /Okhlos.exe: + "/Okhlos.exe": - when: - os: windows store: steam - /Okhlos.x86: + "/Okhlos.x86": - when: - bit: 32 os: linux store: steam - /Okhlos.x86_64: + "/Okhlos.x86_64": - when: - bit: 64 os: linux @@ -374269,7 +375302,7 @@ Okinawa Rush: installDir: Okinawa Rush: {} launch: - /OkinawaRush.exe: + "/OkinawaRush.exe": - when: - os: windows store: steam @@ -374277,7 +375310,7 @@ Okinawa Rush: id: 777670 Oknytt: files: - /Saved Games/Oknytt: + "/Saved Games/Oknytt": tags: - save when: @@ -374285,11 +375318,11 @@ Oknytt: installDir: Oknytt: {} launch: - /oknytt.exe: + "/oknytt.exe": - when: - os: windows store: steam - /settings.exe: + "/settings.exe": - when: - os: windows store: steam @@ -374303,16 +375336,16 @@ Olaguna Chronicles: installDir: Olaguna Chronicles 命运启示录-阿尔巴雷克战纪-: {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: id: 985650 -'Olav: The Story of One Boy': +"Olav: The Story of One Boy": installDir: Olav: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -374322,7 +375355,7 @@ Old Adventure: installDir: Old Adventure: {} launch: - /Old Adventure.exe: + "/Old Adventure.exe": - when: - os: windows store: steam @@ -374341,7 +375374,7 @@ Old Factory: installDir: OldFactory: {} launch: - /OldFactory.exe: + "/OldFactory.exe": - when: - os: windows store: steam @@ -374356,30 +375389,30 @@ Old Gods Rising: installDir: Old Gods Rising: {} launch: - /OldGodsRising.exe: + "/OldGodsRising.exe": - when: - bit: 64 os: windows store: steam steam: id: 1084990 -Old Man's Journey: +"Old Man's Journey": files: - /AppData/LocalLow/Broken Rules/Old Man/GameState.omj: + "/AppData/LocalLow/Broken Rules/Old Man/GameState.omj": tags: - config - save when: - os: windows installDir: - Old Man's Journey: {} + "Old Man's Journey": {} launch: - /Old Mans Journey.app/Contents/MacOS/Old Mans Journey: + "/Old Mans Journey.app/Contents/MacOS/Old Mans Journey": - when: - bit: 64 os: mac store: steam - /Old Mans Journey.exe: + "/Old Mans Journey.exe": - when: - os: windows store: steam @@ -374393,7 +375426,7 @@ Old School 8-in-1 bundle: installDir: Old School 8-in-1 bundle: {} launch: - /OldSchoolBundle.exe: + "/OldSchoolBundle.exe": - when: - os: windows store: steam @@ -374403,17 +375436,17 @@ Old School FOTD: installDir: Old School FOTD: {} launch: - /FOTD.exe: + "/FOTD.exe": - when: - os: windows store: steam steam: id: 727170 -'Old School Horror Game : Bright Day': +"Old School Horror Game : Bright Day": installDir: Old School Horror Game Bright Day: {} launch: - /OldSchoolHorrorGame.exe: + "/OldSchoolHorrorGame.exe": - when: - os: windows store: steam @@ -374424,7 +375457,7 @@ Old School Maze: id: 1153530 Old School Musical: files: - /AppData/LocalLow/LaMoutarde/Old School Musical: + "/AppData/LocalLow/LaMoutarde/Old School Musical": tags: - config - save @@ -374433,7 +375466,7 @@ Old School Musical: installDir: Old School Musical: {} launch: - /osm.exe: + "/osm.exe": - when: - os: windows store: steam @@ -374443,27 +375476,27 @@ Old School RuneScape: installDir: Old School RuneScape: {} launch: - /bin/osx/osclient.app: + "/bin/osx/osclient.app": - when: - os: mac store: steam - workingDir: /bin/osx - /bin/win64/osclient.exe: + workingDir: "/bin/osx" + "/bin/win64/osclient.exe": - when: - bit: 64 os: windows store: steam - workingDir: /bin/win64 + workingDir: "/bin/win64" steam: id: 1343370 Old Skies: files: - /Saved Games/Old Skies: + "/Saved Games/Old Skies": tags: - save when: - os: windows - /Saved Games/Old Skies/acsetup.cfg: + "/Saved Games/Old Skies/acsetup.cfg": tags: - config when: @@ -374479,7 +375512,7 @@ Old Time Hockey: installDir: Old Time Hockey: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -374489,7 +375522,7 @@ Old Town Bus Simulator: installDir: Old Town Bus Simulator: {} launch: - /Old Town Bus Simulator.exe: + "/Old Town Bus Simulator.exe": - when: - os: windows store: steam @@ -374504,11 +375537,11 @@ Old Watch: installDir: Old Watch: {} launch: - /Old Watch.exe: + "/Old Watch.exe": - when: - os: windows store: steam - /OldWatch.app/Contents/MacOS/OldWatch: + "/OldWatch.app/Contents/MacOS/OldWatch": - when: - os: mac store: steam @@ -374516,12 +375549,12 @@ Old Watch: id: 654260 Old World: files: - /My Games/OldWorld: + "/My Games/OldWorld": tags: - config when: - os: windows - /My Games/OldWorld/Saves: + "/My Games/OldWorld/Saves": tags: - save when: @@ -374530,10 +375563,10 @@ Old World: id: 2010300617 id: gogExtra: - - 1721325518 - - 1631326988 - - 1302016290 - 1257525875 + - 1302016290 + - 1631326988 + - 1721325518 steamExtra: - 1952840 - 2261870 @@ -374541,15 +375574,15 @@ Old World: installDir: Old World: {} launch: - /OldWorld: + "/OldWorld": - when: - os: linux store: steam - /OldWorld.app: + "/OldWorld.app": - when: - os: mac store: steam - /OldWorld.exe: + "/OldWorld.exe": - when: - os: windows store: steam @@ -374567,11 +375600,11 @@ OldTail: installDir: oldTail: {} launch: - /Game/oldTail.exe: + "/Game/oldTail.exe": - when: - os: windows store: steam - workingDir: /Game + workingDir: "/Game" steam: id: 813920 OldWar: @@ -374584,15 +375617,15 @@ Oldage: installDir: Oldage: {} launch: - /Oldage.app: + "/Oldage.app": - when: - os: mac store: steam - /Oldage.exe: + "/Oldage.exe": - when: - os: windows store: steam - /Oldage.x86_64: + "/Oldage.x86_64": - when: - bit: 64 os: linux @@ -374601,9 +375634,9 @@ Oldage: id: 658320 OldbI tyt ?: installDir: - '2048': {} + "2048": {} launch: - /ded.exe: + "/ded.exe": - when: - os: windows store: steam @@ -374612,22 +375645,22 @@ OldbI tyt ?: Oldschool Tennis: steam: id: 582480 -Olea's Descent: +"Olea's Descent": steam: id: 986100 -Olea's Messenger: +"Olea's Messenger": steam: id: 798640 Oligopoly: installDir: Oligopoly: {} launch: - /Oligopoly.exe: + "/Oligopoly.exe": - when: - bit: 64 os: windows store: steam - /Oligopoly.x86_64: + "/Oligopoly.x86_64": - when: - bit: 64 os: linux @@ -374636,12 +375669,12 @@ Oligopoly: id: 888610 Olija: files: - /AppData/LocalLow/Skeleton Crew Studio/Olija/Olija_binary_Olija_GameStatus: + "/AppData/LocalLow/Skeleton Crew Studio/Olija/Olija_binary_Olija_GameStatus": tags: - save when: - os: windows - /AppData/LocalLow/Skeleton Crew Studio/Olija/Olija_binary_SystemStatus: + "/AppData/LocalLow/Skeleton Crew Studio/Olija/Olija_binary_SystemStatus": tags: - config when: @@ -374651,7 +375684,7 @@ Olija: installDir: Olija: {} launch: - /Olija.exe: + "/Olija.exe": - when: - os: windows store: steam @@ -374665,17 +375698,17 @@ Olimdal: installDir: Olimdal: {} launch: - /Olimdal.exe: + "/Olimdal.exe": - when: - os: windows store: steam steam: id: 990280 -Oliver's Adventures in the Fairyland: +"Oliver's Adventures in the Fairyland": installDir: - Oliver's Adventures in the Fairyland: {} + "Oliver's Adventures in the Fairyland": {} launch: - /OliversAdventures.exe: + "/OliversAdventures.exe": - when: - os: windows store: steam @@ -374683,14 +375716,14 @@ Oliver's Adventures in the Fairyland: id: 1022010 OlliOlli: files: - /.olliolli: + "/.olliolli": tags: - config - save when: - os: mac - os: linux - /olliolli: + "/olliolli": tags: - config - save @@ -374701,29 +375734,29 @@ OlliOlli: installDir: OlliOlli: {} launch: - /bin/olliolli.exe: + "/bin/olliolli.exe": - when: - os: windows store: steam - workingDir: /gamedata - /bin/olliolli.sh: + workingDir: "/gamedata" + "/bin/olliolli.sh": - when: - os: mac store: steam - when: - os: linux store: steam - workingDir: /gamedata + workingDir: "/gamedata" steam: id: 274250 OlliOlli World: files: - /AppData/LocalLow/Roll7/OlliOlli World/OlliOlli World.dat: + "/AppData/LocalLow/Roll7/OlliOlli World/OlliOlli World.dat": tags: - config when: - os: windows - /AppData/LocalLow/Roll7/OlliOlli World/Save.Mount: + "/AppData/LocalLow/Roll7/OlliOlli World/Save.Mount": tags: - save when: @@ -374731,31 +375764,31 @@ OlliOlli World: installDir: OlliOlli World: {} launch: - /OlliOlli World.exe: + "/OlliOlli World.exe": - when: - bit: 64 os: windows store: steam steam: id: 1190170 -'OlliOlli2: Welcome to Olliwood': +"OlliOlli2: Welcome to Olliwood": files: - /.olliolli2/SaveData.dat: + "/.olliolli2/SaveData.dat": tags: - save when: - os: linux - /.olliolli2/config.dat: + "/.olliolli2/config.dat": tags: - config when: - os: linux - /olliolli2/SaveData.dat: + "/olliolli2/SaveData.dat": tags: - save when: - os: windows - /olliolli2/config.dat: + "/olliolli2/config.dat": tags: - config when: @@ -374765,29 +375798,29 @@ OlliOlli World: installDir: OlliOlli2: {} launch: - /OlliOlli2.app/Contents/MacOS/OlliOlli2: + "/OlliOlli2.app/Contents/MacOS/OlliOlli2": - when: - os: mac store: steam - /OlliOlli2.exe: + "/OlliOlli2.exe": - when: - os: windows store: steam - /olliolli2: + "/olliolli2": - when: - os: linux store: steam steam: id: 365660 -'Ollie & Bollie: Outdoor Estate': +"Ollie & Bollie: Outdoor Estate": installDir: Ollie & Bollie Outdoor Estate: {} launch: - /olliebollie.app: + "/olliebollie.app": - when: - os: mac store: steam - /olliebollie.exe: + "/olliebollie.exe": - when: - os: windows store: steam @@ -374797,37 +375830,37 @@ Ollie-Oop: installDir: OllieOop: {} launch: - /OllieOop.app: + "/OllieOop.app": - when: - os: mac store: steam - /OllieOop.exe: + "/OllieOop.exe": - when: - bit: 64 os: windows store: steam - /OllieOop.x86_64: + "/OllieOop.x86_64": - when: - os: linux store: steam steam: id: 895760 -'Olorun: Theocracy': +"Olorun: Theocracy": installDir: Olorun Theocracy: {} launch: - /OlorunSteam.exe: + "/OlorunSteam.exe": - arguments: log when: - os: windows store: steam steam: id: 692780 -Olson's Boxing Challenge: +"Olson's Boxing Challenge": installDir: - Olson's Boxing Challenge: {} + "Olson's Boxing Challenge": {} launch: - /Olson's Boxing Challenge.exe: + "/Olson's Boxing Challenge.exe": - when: - os: windows store: steam @@ -374835,7 +375868,7 @@ Olson's Boxing Challenge: id: 747790 Olympia Rising: files: - /OlympiaRising/Local Storage: + "/OlympiaRising/Local Storage": tags: - save when: @@ -374843,13 +375876,13 @@ Olympia Rising: installDir: Olympia Rising: {} launch: - /OlympiaRising.app: - - arguments: \"--in-process-gpu\" + "/OlympiaRising.app": + - arguments: "\\\"--in-process-gpu\\\"" when: - os: mac store: steam - /OlympiaRising.exe: - - arguments: \"--in-process-gpu\" + "/OlympiaRising.exe": + - arguments: "\\\"--in-process-gpu\\\"" when: - os: windows store: steam @@ -374857,7 +375890,7 @@ Olympia Rising: id: 295910 Olympic Games Tokyo 2020 – The Official Video Game: files: - /userdata//981890/remote/saved: + "/userdata//981890/remote/saved": tags: - save when: @@ -374889,11 +375922,11 @@ Omega Commando: installDir: Omega Commando: {} launch: - /OmegaCommando.app: + "/OmegaCommando.app": - when: - os: mac store: steam - /omegacommando_win/OmegaCommando.exe: + "/omegacommando_win/OmegaCommando.exe": - when: - bit: 64 os: windows @@ -374904,7 +375937,7 @@ Omega Extinction: installDir: Omega Extinction: {} launch: - /Omega.exe: + "/Omega.exe": - when: - os: windows store: steam @@ -374912,7 +375945,7 @@ Omega Extinction: id: 670230 Omega Labyrinth Life: files: - /Documents: + "/Documents": tags: - save when: @@ -374925,7 +375958,7 @@ Omega Labyrinth Life: installDir: Omega Labyrinth Life: {} launch: - /OmegaLabyrinth Life.exe: + "/OmegaLabyrinth Life.exe": - when: - os: windows store: steam @@ -374938,17 +375971,17 @@ Omega Pattern: installDir: Omega Pattern: {} launch: - /OP.app/Contents/MacOS/OP: + "/OP.app/Contents/MacOS/OP": - when: - bit: 64 os: mac store: steam - /OP.exe: + "/OP.exe": - when: - bit: 64 os: windows store: steam - /OP.x86_64: + "/OP.x86_64": - when: - bit: 64 os: linux @@ -374959,7 +375992,7 @@ Omega Quintet: installDir: Omega Quintet: {} launch: - /OmegaQuintet.exe: + "/OmegaQuintet.exe": - when: - store: steam steam: @@ -374968,11 +376001,11 @@ Omega Racers: installDir: Omega Racers: {} launch: - /OmegaWin/Omega Racers.exe: + "/OmegaWin/Omega Racers.exe": - when: - os: windows store: steam - /linux.x86_64: + "/linux.x86_64": - when: - os: linux store: steam @@ -374982,11 +376015,11 @@ Omega Reaction: installDir: Omega Reaction: {} launch: - /Omega.app: + "/Omega.app": - when: - os: mac store: steam - /Omega.exe: + "/Omega.exe": - when: - os: windows store: steam @@ -374996,7 +376029,7 @@ Omega Strike: installDir: Omega Strike: {} launch: - /Omega Strike.exe: + "/Omega Strike.exe": - when: - os: windows store: steam @@ -375011,7 +376044,7 @@ Omegaland: installDir: Omegaland: {} launch: - /Omegaland.exe: + "/Omegaland.exe": - when: - store: steam steam: @@ -375020,26 +376053,29 @@ Omegalodon: installDir: Omegalodon: {} launch: - /Omegalodon.exe: + "/Omegalodon.exe": - when: - os: windows store: steam steam: id: 248350 -'Omen Exitio: Plague': +"Omen Exitio: Plague": installDir: Omen Exitio Plague: {} launch: - /OmenExitio.app: + "/OmenExitio.app": - when: - os: mac store: steam - /OmenExitio.exe: + "/OmenExitio.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam - /OmenExitio.x86_64: + "/OmenExitio.x86_64": - when: - os: linux store: steam @@ -375047,12 +376083,12 @@ Omegalodon: id: 668590 Omen of Sorrow: files: - /UMonster/Saved/Config/WindowsNoEditor: + "/UMonster/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /UMonster/Saved/SaveGames: + "/UMonster/Saved/SaveGames": tags: - save when: @@ -375060,7 +376096,7 @@ Omen of Sorrow: installDir: Omen of Sorrow: {} launch: - /UMonster.exe: + "/UMonster.exe": - when: - bit: 64 os: windows @@ -375069,12 +376105,12 @@ Omen of Sorrow: id: 457260 Omensight: files: - /Omensight/Saved/Config/WindowsNoEditor: + "/Omensight/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /Omensight/Saved/SaveGames: + "/Omensight/Saved/SaveGames": tags: - save when: @@ -375084,8 +376120,8 @@ Omensight: installDir: Omensight: {} launch: - /Omensight.exe: - - arguments: '-NOSPLASH' + "/Omensight.exe": + - arguments: "-NOSPLASH" when: - bit: 64 os: windows @@ -375094,7 +376130,7 @@ Omensight: id: 455820 Omerta - City of Gangsters: files: - /omerta: + "/omerta": tags: - save when: @@ -375114,11 +376150,11 @@ Omerta - City of Gangsters: installDir: Omerta: {} launch: - /OmertaSteam.app: + "/OmertaSteam.app": - when: - os: mac store: steam - /OmertaSteam.exe: + "/OmertaSteam.exe": - when: - os: windows store: steam @@ -375128,15 +376164,15 @@ Omicroid: installDir: Omicroid: {} launch: - /Omicroid.exe: + "/Omicroid.exe": - when: - os: windows store: steam steam: id: 897210 -'Omikron: The Nomad Soul': +"Omikron: The Nomad Soul": files: - /IAM/GAMES: + "/IAM/GAMES": tags: - save when: @@ -375146,7 +376182,7 @@ Omicroid: installDir: Omikron: {} launch: - /Runtime.exe: + "/Runtime.exe": - when: - store: steam steam: @@ -375154,43 +376190,43 @@ Omicroid: Omina Mortis: steam: id: 644340 -'Ominous Horizons: A Paladin''s Calling': +"Ominous Horizons: A Paladin's Calling": files: - /ominous.ini: + "/ominous.ini": tags: - config when: - os: windows - /save: + "/save": tags: - save when: - os: windows -'Ominous Objects: Family Portrait': +"Ominous Objects: Family Portrait": installDir: - Ominous Objects Family Portrait Collector's Edition: {} + "Ominous Objects Family Portrait Collector's Edition": {} launch: - /OminousObjects_FamilyPortrait_CE.exe: + "/OminousObjects_FamilyPortrait_CE.exe": - when: - os: windows store: steam steam: id: 598050 -'Ominous Objects: Phantom Reflection': +"Ominous Objects: Phantom Reflection": installDir: - Ominous Objects Phantom Reflection Collector's Edition: {} + "Ominous Objects Phantom Reflection Collector's Edition": {} launch: - /OminousObjects_PhantomReflection_CE.exe: + "/OminousObjects_PhantomReflection_CE.exe": - when: - os: windows store: steam steam: id: 729960 -'Ominous Tales: The Forsaken Isle': +"Ominous Tales: The Forsaken Isle": installDir: Ominous Tales The Forsaken Isle: {} launch: - /OminousFull.exe: + "/OminousFull.exe": - when: - os: windows store: steam @@ -375206,7 +376242,7 @@ Omni Link: installDir: Omni Link: {} launch: - /Omni_LinkV01.exe: + "/Omni_LinkV01.exe": - when: - os: windows store: steam @@ -375214,7 +376250,7 @@ Omni Link: id: 529100 OmniBus: files: - /Save: + "/Save": tags: - config - save @@ -375225,20 +376261,20 @@ OmniBus: installDir: OmniBus: {} launch: - /OmniBus.app: + "/OmniBus.app": - when: - os: mac store: steam - /OmniBus.exe: + "/OmniBus.exe": - when: - os: windows store: steam - /OmniBus.x86: + "/OmniBus.x86": - when: - bit: 32 os: linux store: steam - /OmniBus.x86_64: + "/OmniBus.x86_64": - when: - bit: 64 os: linux @@ -375249,7 +376285,7 @@ OmniFootman: installDir: OmniFootman: {} launch: - /Footman.exe: + "/Footman.exe": - when: - os: windows store: steam @@ -375259,7 +376295,7 @@ Omnibion War: installDir: Omnibion War: {} launch: - /Omnibion_war.exe: + "/Omnibion_war.exe": - when: - store: steam steam: @@ -375268,11 +376304,11 @@ Omnicube: installDir: Omnicube: {} launch: - /Omnicube.app: + "/Omnicube.app": - when: - os: mac store: steam - /Omnicube.exe: + "/Omnicube.exe": - when: - os: windows store: steam @@ -375282,15 +376318,15 @@ Omnimus: installDir: OMNIMUS: {} launch: - /OMNIMUS.app: + "/OMNIMUS.app": - when: - os: mac store: steam - /OMNIMUS.exe: + "/OMNIMUS.exe": - when: - os: windows store: steam - /OMNIMUS.sh: + "/OMNIMUS.sh": - when: - os: linux store: steam @@ -375300,7 +376336,7 @@ Omnipresent: installDir: Omnipresent: {} launch: - /Omnipresent.exe: + "/Omnipresent.exe": - when: - os: windows store: steam @@ -375308,17 +376344,17 @@ Omnipresent: id: 403660 Omno: files: - /Omno/Saved/Config/WindowsNoEditor: + "/Omno/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /Omno/Saved/SaveGames: + "/Omno/Saved/SaveGames": tags: - save when: - os: windows - /Packages/StudioInkyfoxUG.Omno_cpye1581ey306/LocalCache/Local/Omno/Saved/Config/WinGDK: + "/Packages/StudioInkyfoxUG.Omno_cpye1581ey306/LocalCache/Local/Omno/Saved/Config/WinGDK": tags: - config when: @@ -375327,7 +376363,7 @@ Omno: installDir: Omno: {} launch: - /Omno.exe: + "/Omno.exe": - when: - bit: 64 os: windows @@ -375338,7 +376374,7 @@ Omnom Necropolis: installDir: NecroWorm: {} launch: - /NecroWorm.exe: + "/NecroWorm.exe": - when: - os: windows store: steam @@ -375348,15 +376384,15 @@ On A Roll 3D: installDir: On A Roll 3D: {} launch: - /On A Roll 3D/On A Roll 3D.app: + "/On A Roll 3D/On A Roll 3D.app": - when: - os: mac store: steam - /On A Roll 3D/On A Roll 3D.exe: + "/On A Roll 3D/On A Roll 3D.exe": - when: - os: windows store: steam - /On A Roll 3D/On A Roll 3D.x86_64: + "/On A Roll 3D/On A Roll 3D.x86_64": - when: - os: linux store: steam @@ -375369,7 +376405,7 @@ On Board 4 PC: installDir: On Board 4 PC: {} launch: - /On Board 4 PC.exe: + "/On Board 4 PC.exe": - when: - os: windows store: steam @@ -375379,7 +376415,7 @@ On Board Game: installDir: On Board Game: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -375389,7 +376425,7 @@ On Board Remastered: installDir: On Board Remastered: {} launch: - /On Board Remastered/On Board Remastered.exe: + "/On Board Remastered/On Board Remastered.exe": - when: - os: windows store: steam @@ -375397,12 +376433,12 @@ On Board Remastered: id: 895210 On Earth as It Is in Heaven: files: - /renpy/On Earth as it is in Heaven-1489938386/*.save: + "/renpy/On Earth as it is in Heaven-1489938386/*.save": tags: - save when: - os: windows - /renpy/On Earth as it is in Heaven-1489938386/persistent: + "/renpy/On Earth as it is in Heaven-1489938386/persistent": tags: - config when: @@ -375410,11 +376446,11 @@ On Earth as It Is in Heaven: installDir: On Earth As It Is In Heaven - A Kinetic Novel: {} launch: - /On_Earth_as_it_is_in_Heaven.app/Contents/MacOS/On_Earth_as_it_is_in_Heaven: + "/On_Earth_as_it_is_in_Heaven.app/Contents/MacOS/On_Earth_as_it_is_in_Heaven": - when: - os: mac store: steam - /On_Earth_as_it_is_in_Heaven.exe: + "/On_Earth_as_it_is_in_Heaven.exe": - when: - os: windows store: steam @@ -375424,20 +376460,20 @@ On My Own: installDir: On My Own: {} launch: - /omo.app: + "/omo.app": - when: - os: mac store: steam - /omo.exe: + "/omo.exe": - when: - os: windows store: steam - /omo.x86: + "/omo.x86": - when: - bit: 32 os: linux store: steam - /omo.x86_64: + "/omo.x86_64": - when: - bit: 64 os: linux @@ -375446,12 +376482,12 @@ On My Own: id: 351730 On Rusty Trails: files: - /default.save: + "/default.save": tags: - save when: - os: windows - /settings.ini: + "/settings.ini": tags: - config when: @@ -375461,21 +376497,21 @@ On Rusty Trails: installDir: On Rusty Trails: {} launch: - /On Rusty Trails.app/Contents/MacOS/integrate: + "/On Rusty Trails.app/Contents/MacOS/integrate": - when: - os: mac store: steam - /bin32/integrate: + "/bin32/integrate": - when: - bit: 32 os: linux store: steam - /bin64/integrate: + "/bin64/integrate": - when: - bit: 64 os: linux store: steam - /integrate.exe: + "/integrate.exe": - when: - os: windows store: steam @@ -375493,13 +376529,13 @@ On The Road: installDir: On The Road: {} launch: - /OSX.app: - - arguments: '-cleanedLogFile Log.txt' + "/OSX.app": + - arguments: "-cleanedLogFile Log.txt" when: - os: mac store: steam - /OnTheRoad.exe: - - arguments: '-cleanedLogFile Log.txt' + "/OnTheRoad.exe": + - arguments: "-cleanedLogFile Log.txt" when: - bit: 64 os: windows @@ -375510,7 +376546,7 @@ On The Verge II: installDir: On The Verge II: {} launch: - /On_The_Verge_II.exe: + "/On_The_Verge_II.exe": - when: - bit: 64 os: windows @@ -375521,11 +376557,11 @@ On The Western Front: installDir: On The Western Front: {} launch: - /On The Western Front.app/Contents/MacOS/On The Western Front: + "/On The Western Front.app/Contents/MacOS/On The Western Front": - when: - os: mac store: steam - /OnTheWesternFront.exe: + "/OnTheWesternFront.exe": - when: - os: windows store: steam @@ -375543,7 +376579,7 @@ On a Roll: installDir: On a Roll: {} launch: - /On a Roll.exe: + "/On a Roll.exe": - when: - bit: 64 os: windows @@ -375554,32 +376590,32 @@ On the Front Line: installDir: OTFL: {} launch: - /Linux32/OnTheFrontLine.x86: + "/Linux32/OnTheFrontLine.x86": - when: - bit: 32 os: linux store: steam - /Linux64/OnTheFrontLine.x86_64: + "/Linux64/OnTheFrontLine.x86_64": - when: - bit: 64 os: linux store: steam - /Mac32/OnTheFrontLine(x86).app/Contents/MacOS/OnTheFrontLine(x86): + "/Mac32/OnTheFrontLine(x86).app/Contents/MacOS/OnTheFrontLine(x86)": - when: - bit: 32 os: mac store: steam - /Mac64/OnTheFrontLine(x64).app/Contents/MacOS/OnTheFrontLine(x64): + "/Mac64/OnTheFrontLine(x64).app/Contents/MacOS/OnTheFrontLine(x64)": - when: - bit: 64 os: mac store: steam - /Win32/OnTheFrontLine_32.exe: + "/Win32/OnTheFrontLine_32.exe": - when: - bit: 32 os: windows store: steam - /Win64/OnTheFrontLine_64.exe: + "/Win64/OnTheFrontLine_64.exe": - when: - bit: 64 os: windows @@ -375604,17 +376640,17 @@ Onager!: installDir: Onager: {} launch: - /onager.exe: + "/onager.exe": - when: - os: windows store: steam steam: id: 705440 -'Once Bitten, Twice Dead!': +"Once Bitten, Twice Dead!": installDir: - 'Once Bitten, Twice Dead!': {} + "Once Bitten, Twice Dead!": {} launch: - /OBTD.exe: + "/OBTD.exe": - when: - store: steam steam: @@ -375623,8 +376659,8 @@ Once Ever After: installDir: Once Ever After: {} launch: - /Game.exe: - - arguments: '--in-process-gpu' + "/Game.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam @@ -375634,11 +376670,11 @@ Once More: installDir: Once More: {} launch: - /once_more.app/Contents/MacOS/once_more: + "/once_more.app/Contents/MacOS/once_more": - when: - os: mac store: steam - /once_more.exe: + "/once_more.exe": - when: - os: windows store: steam @@ -375648,11 +376684,11 @@ Once Upon A Death: installDir: Once Upon A Death: {} launch: - /Once Upon A Death.app/Contents/MacOS/Once Upon A Death: + "/Once Upon A Death.app/Contents/MacOS/Once Upon A Death": - when: - os: mac store: steam - /Once Upon A Death.exe: + "/Once Upon A Death.exe": - when: - os: windows store: steam @@ -375661,20 +376697,20 @@ Once Upon A Death: Once Upon a Time in Roswell: steam: id: 907500 -Once Upon an All Hallow's Eve: +"Once Upon an All Hallow's Eve": installDir: - Once Upon an All Hallow's Eve: {} + "Once Upon an All Hallow's Eve": {} launch: - /Once Upon a Hallow's Eve.app: + "/Once Upon a Hallow's Eve.app": - when: - os: mac store: steam - /Once Upon a Hallow's Eve.exe: + "/Once Upon a Hallow's Eve.exe": - when: - bit: 64 os: windows store: steam - /Once Upon a Hallow's Eve.sh: + "/Once Upon a Hallow's Eve.sh": - when: - os: linux store: steam @@ -375684,7 +376720,7 @@ Once in Yaissor: installDir: OIY: {} launch: - /OIY.exe: + "/OIY.exe": - when: - os: windows store: steam @@ -375694,7 +376730,7 @@ Once in Yaissor 2: installDir: OIY2: {} launch: - /OIY2.exe: + "/OIY2.exe": - when: - os: windows store: steam @@ -375702,17 +376738,17 @@ Once in Yaissor 2: id: 767500 Once on a Windswept Night: files: - /game/saves: + "/game/saves": tags: - save when: - os: windows - /renpy/config.py: + "/renpy/config.py": tags: - config when: - os: windows - /renpy/Once on a windswept night-1475875736: + "/renpy/Once on a windswept night-1475875736": tags: - save when: @@ -375720,15 +376756,15 @@ Once on a Windswept Night: installDir: Once on a windswept night: {} launch: - /Once_on_a_windswept_night.app: + "/Once_on_a_windswept_night.app": - when: - os: mac store: steam - /Once_on_a_windswept_night.exe: + "/Once_on_a_windswept_night.exe": - when: - os: windows store: steam - /Once_on_a_windswept_night.sh: + "/Once_on_a_windswept_night.sh": - when: - os: linux store: steam @@ -375738,20 +376774,20 @@ Once upon a Dungeon: installDir: Once upon a Dungeon: {} launch: - /OuaD.app/Contents/MacOS/OuaD: + "/OuaD.app/Contents/MacOS/OuaD": - when: - os: mac store: steam - /OuaD.exe: + "/OuaD.exe": - when: - os: windows store: steam - /OuaDLinux.x86: + "/OuaDLinux.x86": - when: - bit: 32 os: linux store: steam - /OuaDLinux.x86_64: + "/OuaDLinux.x86_64": - when: - bit: 64 os: linux @@ -375770,7 +376806,7 @@ Once upon a Jester: installDir: Once Upon a Jester: {} launch: - /Once Upon a Jester.exe: + "/Once Upon a Jester.exe": - when: - store: steam steam: @@ -375779,22 +376815,22 @@ Once upon a time: installDir: Once upon a time: {} launch: - /onceuponatime.exe: + "/onceuponatime.exe": - when: - bit: 32 os: windows store: steam steam: id: 566410 -Once': +"Once'": installDir: once13: {} launch: - /once13-win.app: + "/once13-win.app": - when: - os: mac store: steam - /once13-win.exe: + "/once13-win.exe": - when: - os: windows store: steam @@ -375804,11 +376840,11 @@ Once10: installDir: once10: {} launch: - /once10-win.app: + "/once10-win.app": - when: - os: mac store: steam - /once10-win.exe: + "/once10-win.exe": - when: - os: windows store: steam @@ -375818,16 +376854,16 @@ Oncoming Death Steam Edition: installDir: Oncoming Death: {} launch: - /Oncoming Death.app: + "/Oncoming Death.app": - when: - os: mac store: steam - /Oncoming Death.exe: + "/Oncoming Death.exe": - when: - bit: 32 os: windows store: steam - /Oncoming Death.x86: + "/Oncoming Death.x86": - when: - os: linux store: steam @@ -375839,7 +376875,7 @@ Onde: installDir: Onde: {} launch: - /Onde.exe: + "/Onde.exe": - when: - os: windows store: steam @@ -375849,7 +376885,7 @@ One Against the Galaxy: installDir: One Against The Galaxy: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -375859,7 +376895,7 @@ One Bit: installDir: One Bit: {} launch: - /ONE-BIT.exe: + "/ONE-BIT.exe": - when: - os: windows store: steam @@ -375869,7 +376905,7 @@ One Bit Arena: installDir: One Bit Arena: {} launch: - /OBA.exe: + "/OBA.exe": - when: - store: steam steam: @@ -375878,7 +376914,7 @@ One Bullet left: installDir: One Bullet left: {} launch: - /OneBulletLeftCpp.exe: + "/OneBulletLeftCpp.exe": - when: - store: steam steam: @@ -375887,7 +376923,7 @@ One Clone Left: installDir: One Clone Left: {} launch: - /OCLclient.exe: + "/OCLclient.exe": - when: - os: windows store: steam @@ -375902,7 +376938,7 @@ One Day For Ched: installDir: One Day For Ched: {} launch: - /ONE DAY for Ched.exe: + "/ONE DAY for Ched.exe": - when: - store: steam steam: @@ -375911,21 +376947,21 @@ One Day for Revenge: installDir: One Day for Revenge: {} launch: - /One Day for Revenge.exe: + "/One Day for Revenge.exe": - when: - os: windows store: steam steam: id: 878100 -'One Day: The Sun Disappeared': +"One Day: The Sun Disappeared": installDir: One Day: {} launch: - /One Day.app: + "/One Day.app": - when: - os: mac store: steam - /One Day.exe: + "/One Day.exe": - when: - os: windows store: steam @@ -375935,20 +376971,20 @@ One Deck Dungeon: installDir: One Deck Dungeon: {} launch: - /OneDeckDungeon.app: + "/OneDeckDungeon.app": - when: - os: mac store: steam - /OneDeckDungeon.exe: + "/OneDeckDungeon.exe": - when: - os: windows store: steam - /OneDeckDungeon.x86: + "/OneDeckDungeon.x86": - when: - bit: 32 os: linux store: steam - /OneDeckDungeon.x86_64: + "/OneDeckDungeon.x86_64": - when: - bit: 64 os: linux @@ -375959,15 +376995,15 @@ One Dog Story: installDir: One Dog Story: {} launch: - /ODS.app/Contents/MacOS/ODS: + "/ODS.app/Contents/MacOS/ODS": - when: - os: mac store: steam - /ODS.exe: + "/ODS.exe": - when: - os: windows store: steam - /ODS.x86_64: + "/ODS.x86_64": - when: - os: linux store: steam @@ -375979,16 +377015,16 @@ One Dreamer: installDir: One Dreamer: {} launch: - /One Dreamer.app/Contents/MacOS/One Dreamer: + "/One Dreamer.app/Contents/MacOS/One Dreamer": - when: - os: mac store: steam - /One Dreamer.exe: + "/One Dreamer.exe": - when: - bit: 64 os: windows store: steam - /One Dreamer.x86_64: + "/One Dreamer.x86_64": - when: - bit: 64 os: linux @@ -375999,15 +377035,15 @@ One Drop Bot: installDir: One Drop Bot: {} launch: - /One Drop Bot.app: + "/One Drop Bot.app": - when: - os: mac store: steam - /One Drop Bot.exe: + "/One Drop Bot.exe": - when: - os: windows store: steam - /One Drop Bot.x86: + "/One Drop Bot.x86": - when: - os: linux store: steam @@ -376020,7 +377056,7 @@ One Drop Bot: id: 1060320 One Eyed Kutkh: files: - /AppData/LocalLow/BabaYagaGames/One Eyed Kutkh: + "/AppData/LocalLow/BabaYagaGames/One Eyed Kutkh": tags: - config when: @@ -376028,15 +377064,15 @@ One Eyed Kutkh: installDir: One Eyed Kutkh: {} launch: - /OneEyedKutkh.app/Contents/MacOS/OneEyedKutkh: + "/OneEyedKutkh.app/Contents/MacOS/OneEyedKutkh": - when: - os: mac store: steam - /OneEyedKutkh.exe: + "/OneEyedKutkh.exe": - when: - os: windows store: steam - /OneEyedKutkh.x86_64: + "/OneEyedKutkh.x86_64": - when: - os: linux store: steam @@ -376046,7 +377082,7 @@ One Fantasy Shooter: installDir: One Fantasy Shooter: {} launch: - /One Fantasy Shooter.exe: + "/One Fantasy Shooter.exe": - when: - os: windows store: steam @@ -376056,7 +377092,7 @@ One Final Breath: installDir: One Final Breath: {} launch: - /OFB.exe: + "/OFB.exe": - when: - store: steam steam: @@ -376065,7 +377101,7 @@ One Final Chaos: installDir: One Final Chaos: {} launch: - /OFCStandalone.exe: + "/OFCStandalone.exe": - when: - os: windows store: steam @@ -376073,7 +377109,7 @@ One Final Chaos: id: 409610 One Finger Death Punch: files: - /SavedGames/One Finger Death Punch/Game_Save: + "/SavedGames/One Finger Death Punch/Game_Save": tags: - save when: @@ -376081,7 +377117,7 @@ One Finger Death Punch: installDir: One Finger Death Punch: {} launch: - /One Finger Death Punch.exe: + "/One Finger Death Punch.exe": - when: - bit: 32 os: windows @@ -376090,7 +377126,7 @@ One Finger Death Punch: id: 264200 One Finger Death Punch 2: files: - /AppData/LocalLow/Silver Dollar Games/One Finger Death Punch 2: + "/AppData/LocalLow/Silver Dollar Games/One Finger Death Punch 2": tags: - save when: @@ -376100,7 +377136,7 @@ One Finger Death Punch 2: installDir: One Finger Death Punch 2: {} launch: - /One Finger Death Punch 2.exe: + "/One Finger Death Punch 2.exe": - when: - os: windows store: steam @@ -376115,20 +377151,20 @@ One Giant Leap: One Giant Leap: {} steam: id: 512750 -'One Gun 2: Stickman': +"One Gun 2: Stickman": installDir: One Gun 2: {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: id: 1124380 -'One Gun: Cat': +"One Gun: Cat": installDir: One Gun Cat: {} launch: - /onegun.exe: + "/onegun.exe": - when: - os: windows store: steam @@ -376140,7 +377176,7 @@ One Hand Clapping: installDir: One Hand Clapping: {} launch: - /One Hand Clapping.exe: + "/One Hand Clapping.exe": - when: - os: windows store: steam @@ -376153,7 +377189,7 @@ One Hit KO: installDir: One Hit KO: {} launch: - /One Hit KO.exe: + "/One Hit KO.exe": - when: - os: windows store: steam @@ -376163,7 +377199,7 @@ One Hour Left: installDir: One Hour Left: {} launch: - /One Hour Left.exe: + "/One Hour Left.exe": - when: - os: windows store: steam @@ -376173,7 +377209,7 @@ One Hour One Life: installDir: One Hour One Life: {} launch: - /steamGateClient.exe: + "/steamGateClient.exe": - when: - os: windows store: steam @@ -376183,7 +377219,7 @@ One Hundred Times Me: installDir: One Hundred Times Me: {} launch: - /One Hundred Times Me.exe: + "/One Hundred Times Me.exe": - when: - os: windows store: steam @@ -376193,11 +377229,11 @@ One Hundred Ways: installDir: One Hundred Ways: {} launch: - /100 Ways.app: + "/100 Ways.app": - when: - os: mac store: steam - /100 Ways.exe: + "/100 Ways.exe": - when: - os: windows store: steam @@ -376207,7 +377243,7 @@ One Hunt: installDir: One Hunt: {} launch: - /One Hunt.exe: + "/One Hunt.exe": - when: - os: windows store: steam @@ -376220,7 +377256,7 @@ One Jump Bomb: installDir: One Jump Bomb: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -376228,12 +377264,12 @@ One Jump Bomb: id: 876810 One Last Chance: files: - /One_Last_Chance_tyrano_data.sav: + "/One_Last_Chance_tyrano_data.sav": tags: - save when: - os: windows - /data/system/Config.tjs: + "/data/system/Config.tjs": tags: - config when: @@ -376241,16 +377277,16 @@ One Last Chance: installDir: One Last Chance: {} launch: - /nw: + "/nw": - when: - os: linux store: steam - /nw.exe: - - arguments: '--in-process-gpu' + "/nw.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam - /nwjs.app: + "/nwjs.app": - when: - os: mac store: steam @@ -376260,15 +377296,15 @@ One Last Crane - Prologue: installDir: One Last Crane: {} launch: - /OneLastCrane.app: + "/OneLastCrane.app": - when: - os: mac store: steam - /OneLastCrane.exe: + "/OneLastCrane.exe": - when: - os: windows store: steam - /OneLastCrane.sh: + "/OneLastCrane.sh": - when: - os: linux store: steam @@ -376278,27 +377314,27 @@ One Last Day: installDir: One Last Day: {} launch: - /OLD.app: + "/OLD.app": - when: - os: mac store: steam - /OLD.exe: + "/OLD.exe": - when: - bit: 32 os: windows store: steam - /OLDx64.exe: + "/OLDx64.exe": - when: - bit: 64 os: windows store: steam steam: id: 328710 -'One Late Night: Deadline': +"One Late Night: Deadline": installDir: One Late Night Deadline: {} launch: - /One Late Night - Deadline.exe: + "/One Late Night - Deadline.exe": - when: - os: windows store: steam @@ -376306,7 +377342,7 @@ One Last Day: id: 337880 One Lonely Outpost: files: - /AppData/LocalLow/Freedom Games/One Lonely Outpost/save_slots: + "/AppData/LocalLow/Freedom Games/One Lonely Outpost/save_slots": tags: - save when: @@ -376317,12 +377353,12 @@ One Lonely Outpost: gogExtra: - 1668073890 steamExtra: - - 2475630 - 2240770 + - 2475630 installDir: One Lonely Outpost: {} launch: - /One Lonely Outpost.exe: + "/One Lonely Outpost.exe": - when: - store: steam steam: @@ -376336,7 +377372,7 @@ One Man Is Not No Man: installDir: One Man Is Not No Man: {} launch: - /OMINNM.exe: + "/OMINNM.exe": - when: - os: windows store: steam @@ -376346,15 +377382,15 @@ One Manga Day: installDir: One Manga Day: {} launch: - /OneMangaDay.app: + "/OneMangaDay.app": - when: - os: mac store: steam - /OneMangaDay.exe: + "/OneMangaDay.exe": - when: - os: windows store: steam - /OneMangaDay.sh: + "/OneMangaDay.sh": - when: - os: linux store: steam @@ -376364,12 +377400,12 @@ One Million Worlds: installDir: One Million Worlds: {} launch: - /oneMillionWorlds.bat: + "/oneMillionWorlds.bat": - when: - bit: 64 os: windows store: steam - /oneMillionWorlds.sh: + "/oneMillionWorlds.sh": - when: - bit: 64 os: linux @@ -376378,7 +377414,7 @@ One Million Worlds: id: 1009770 One More Dungeon: files: - /.config/unity3d/StatelySnail/OneMoreDungeon/prefs: + "/.config/unity3d/StatelySnail/OneMoreDungeon/prefs": tags: - config when: @@ -376386,15 +377422,15 @@ One More Dungeon: installDir: OneMoreDungeon: {} launch: - /OneMoreDungeon.app/Contents/MacOS/OneMoreDungeon: + "/OneMoreDungeon.app/Contents/MacOS/OneMoreDungeon": - when: - os: mac store: steam - /OneMoreDungeon.exe: + "/OneMoreDungeon.exe": - when: - os: windows store: steam - /OneMoreDungeon.x86: + "/OneMoreDungeon.x86": - when: - os: linux store: steam @@ -376409,7 +377445,7 @@ One More Island: installDir: One More Island: {} launch: - /One More Island.exe: + "/One More Island.exe": - when: - os: windows store: steam @@ -376419,20 +377455,20 @@ One More Line: installDir: One More Line: {} launch: - /OneMoreLine.app: + "/OneMoreLine.app": - when: - os: mac store: steam - /OneMoreLine.exe: + "/OneMoreLine.exe": - when: - os: windows store: steam - /OneMoreLine.x86: + "/OneMoreLine.x86": - when: - bit: 32 os: linux store: steam - /OneMoreLine.x86_64: + "/OneMoreLine.x86_64": - when: - bit: 64 os: linux @@ -376447,27 +377483,27 @@ One More Night: installDir: One More Night: {} launch: - /OMN.app/Contents/MacOS/OMN: + "/OMN.app/Contents/MacOS/OMN": - when: - os: mac store: steam - /OMN.exe: + "/OMN.exe": - when: - bit: 64 os: windows store: steam - /OMN.x86: + "/OMN.x86": - when: - bit: 64 os: linux store: steam steam: id: 535630 -'One More Night: BiO Clinic': +"One More Night: BiO Clinic": installDir: One More Night: {} launch: - /BIOCLINIC.exe: + "/BIOCLINIC.exe": - when: - os: windows store: steam @@ -376477,7 +377513,7 @@ One More Roll: installDir: One More Roll: {} launch: - /RollingSnowMan.exe: + "/RollingSnowMan.exe": - when: - os: windows store: steam @@ -376485,14 +377521,14 @@ One More Roll: id: 911520 One Must Fall 2097: files: - /PLAYERNAME.CHR: + "/PLAYERNAME.CHR": tags: - save when: - os: dos -'One Must Fall: Battlegrounds': +"One Must Fall: Battlegrounds": files: - /Data/PhoenixRegistry.DEObjects: + "/Data/PhoenixRegistry.DEObjects": tags: - config - save @@ -376502,7 +377538,7 @@ One Night: installDir: One Night: {} launch: - /OneNight.exe: + "/OneNight.exe": - when: - os: windows store: steam @@ -376512,17 +377548,17 @@ One Night (2018): installDir: One Night: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam steam: id: 752180 -'One Night 2: The Beyond': +"One Night 2: The Beyond": installDir: One Night 2 The Beyond: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -376532,8 +377568,8 @@ One Night In The House: installDir: onithgame: {} launch: - /onith/Binaries/Win64/onith.exe: - - arguments: '-culture=en -steam' + "/onith/Binaries/Win64/onith.exe": + - arguments: "-culture=en -steam" when: - os: windows store: steam @@ -376543,15 +377579,15 @@ One Night Stand: installDir: One Night Stand: {} launch: - /One Night Stand.app: + "/One Night Stand.app": - when: - os: mac store: steam - /One Night Stand.exe: + "/One Night Stand.exe": - when: - os: windows store: steam - /One Night Stand.sh: + "/One Night Stand.sh": - when: - os: linux store: steam @@ -376561,17 +377597,17 @@ One Night Two Crazies: installDir: One Night Two Crazies: {} launch: - /OneNightTwoCrazies.exe: + "/OneNightTwoCrazies.exe": - when: - os: windows store: steam steam: id: 509290 -One Night You're Crazy: +"One Night You're Crazy": installDir: - One Night You're Crazy: {} + "One Night You're Crazy": {} launch: - /OneNightYouCrazy.exe: + "/OneNightYouCrazy.exe": - when: - store: steam steam: @@ -376580,7 +377616,7 @@ One Night on the Road: installDir: One Night On The Road: {} launch: - /One Night On The Road/One Night On The Road.exe: + "/One Night On The Road/One Night On The Road.exe": - when: - os: windows store: steam @@ -376590,7 +377626,7 @@ One Night with Stalin: installDir: One Night With Stalin: {} launch: - /One Night With Stalin.exe: + "/One Night With Stalin.exe": - when: - os: windows store: steam @@ -376600,11 +377636,11 @@ One Person Story: installDir: One person story: {} launch: - /onePersonStory.app: + "/onePersonStory.app": - when: - os: mac store: steam - /onePersonStory.exe: + "/onePersonStory.exe": - when: - os: windows store: steam @@ -376612,12 +377648,12 @@ One Person Story: id: 863430 One Piece Odyssey: files: - /BANDAI NAMCO Entertainment/ONE PIECE ODYSSEY/Saved/SaveGames/: + "/BANDAI NAMCO Entertainment/ONE PIECE ODYSSEY/Saved/SaveGames/": tags: - save when: - os: windows - /odyssey/Saved/Config/WindowsNoEditor: + "/odyssey/Saved/Config/WindowsNoEditor": tags: - config when: @@ -376625,14 +377661,14 @@ One Piece Odyssey: installDir: ONE PIECE ODYSSEY: {} launch: - /odyssey.exe: + "/odyssey.exe": - when: - store: steam steam: id: 814000 -'One Piece: Burning Blood': +"One Piece: Burning Blood": files: - /userdata//425220/remote/SYSTEM-DATA: + "/userdata//425220/remote/SYSTEM-DATA": tags: - save when: @@ -376640,16 +377676,16 @@ One Piece Odyssey: installDir: ONE PIECE BURNING BLOOD: {} launch: - /OPBB.exe: + "/OPBB.exe": - when: - bit: 64 os: windows store: steam steam: id: 425220 -'One Piece: Pirate Warriors 3': +"One Piece: Pirate Warriors 3": files: - /BNE/One Piece Pirate Warriors 3/SAVEDATA: + "/BNE/One Piece Pirate Warriors 3/SAVEDATA": tags: - save when: @@ -376662,7 +377698,7 @@ One Piece Odyssey: installDir: OPPW3: {} launch: - /oppw3.exe: + "/oppw3.exe": - when: - os: windows store: steam @@ -376672,15 +377708,15 @@ One Piece Odyssey: - config steam: id: 331600 -'One Piece: Pirate Warriors 4': +"One Piece: Pirate Warriors 4": files: - /BANDAI NAMCO Entertainment/One Piece Pirate Warriors 4/Saved/SaveGames: + "/BANDAI NAMCO Entertainment/One Piece Pirate Warriors 4/Saved/SaveGames": tags: - config - save when: - os: windows - /Packages/NAMCOBANDAIGamesInc.ONEPIECEPIRATEWARRIORS4Windows_gdy2aq6ez762w/SystemAppData/wgs: + "/Packages/NAMCOBANDAIGamesInc.ONEPIECEPIRATEWARRIORS4Windows_gdy2aq6ez762w/SystemAppData/wgs": tags: - save when: @@ -376689,7 +377725,7 @@ One Piece Odyssey: installDir: OPPW4: {} launch: - /OPPW4.exe: + "/OPPW4.exe": - when: - bit: 64 os: windows @@ -376700,9 +377736,9 @@ One Piece Odyssey: - config steam: id: 1089090 -'One Piece: Unlimited World Red Deluxe Edition': +"One Piece: Unlimited World Red Deluxe Edition": files: - /BANDAI NAMCO Entertainment/OP Unlimited World Red/: + "/BANDAI NAMCO Entertainment/OP Unlimited World Red/": tags: - config - save @@ -376711,15 +377747,15 @@ One Piece Odyssey: installDir: Titus: {} launch: - /OPU3.exe: + "/OPU3.exe": - when: - os: windows store: steam steam: id: 571720 -'One Piece: World Seeker': +"One Piece: World Seeker": files: - /BANDAI NAMCO Entertainment/ONE PIECE WORLD SEEKER/Saved/SaveGames/0: + "/BANDAI NAMCO Entertainment/ONE PIECE WORLD SEEKER/Saved/SaveGames/0": tags: - config - save @@ -376728,7 +377764,7 @@ One Piece Odyssey: installDir: ONE PIECE WORLD SEEKER: {} launch: - /OPWS.exe: + "/OPWS.exe": - when: - bit: 64 store: steam @@ -376738,7 +377774,7 @@ One Ping Only: installDir: One Ping Only: {} launch: - /OnePingOnly.exe: + "/OnePingOnly.exe": - when: - os: windows store: steam @@ -376748,7 +377784,7 @@ One Piu Day: installDir: One Piu Day: {} launch: - /OnePiuDay.exe: + "/OnePiuDay.exe": - when: - store: steam steam: @@ -376757,16 +377793,16 @@ One Ship Two Ship Redshift Blueshift: installDir: redshift_blueshift: {} launch: - /redshiftblueshift: + "/redshiftblueshift": - when: - os: linux store: steam - /redshiftblueshift.app/Contents/MacOS/redshiftblueshift: + "/redshiftblueshift.app/Contents/MacOS/redshiftblueshift": - when: - bit: 64 os: mac store: steam - /redshiftblueshift.exe: + "/redshiftblueshift.exe": - when: - os: windows store: steam @@ -376776,15 +377812,15 @@ One Small Fire at a Time: installDir: One Small Fire At A Time: {} launch: - /One Small Fire at a Time: + "/One Small Fire at a Time": - when: - os: linux store: steam - /One Small Fire at a Time.app: + "/One Small Fire at a Time.app": - when: - os: mac store: steam - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -376794,7 +377830,7 @@ One Sole Purpose: installDir: OneSolePurpose: {} launch: - /OneSolePurpose/OneSolePurpose/Binaries/Win64/OneSolePurpose-Win64-Shipping.exe: + "/OneSolePurpose/OneSolePurpose/Binaries/Win64/OneSolePurpose-Win64-Shipping.exe": - when: - bit: 64 os: windows @@ -376806,30 +377842,30 @@ One Star: id: 621530 One Step Beyond: files: - /onestep.cfg: + "/onestep.cfg": tags: - config when: - os: dos One Step from Eden: files: - /AppData/LocalLow/Ristacia LLC/One Step From Eden: + "/AppData/LocalLow/Ristacia LLC/One Step From Eden": tags: - save when: - os: windows - /userdata//960690/remote/SaveData: + "/userdata//960690/remote/SaveData": tags: - config - save when: - store: steam - /unity3d/Ristaccia LLC/One Step From Eden/SaveData: + "/unity3d/Ristaccia LLC/One Step From Eden/SaveData": tags: - save when: - os: linux - /unity3d/Ristaccia LLC/One Step From Eden/prefs: + "/unity3d/Ristaccia LLC/One Step From Eden/prefs": tags: - config when: @@ -376839,16 +377875,19 @@ One Step from Eden: installDir: One Step From Eden: {} launch: - /OSFE.app: + "/OSFE.app": - when: - os: mac store: steam - /OSFE.exe: + "/OSFE.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam - /OSFE.x86_64: + "/OSFE.x86_64": - when: - bit: 64 os: linux @@ -376863,11 +377902,11 @@ One Strike: installDir: One Strike: {} launch: - /OneStrike.app: + "/OneStrike.app": - when: - os: mac store: steam - /OneStrike.exe: + "/OneStrike.exe": - when: - os: windows store: steam @@ -376877,11 +377916,11 @@ One Synth: installDir: One Synth: {} launch: - /One Synth.exe: + "/One Synth.exe": - when: - os: windows store: steam - /OneSynth.app/Contents/MacOS/OneSynth: + "/OneSynth.app/Contents/MacOS/OneSynth": - when: - os: mac store: steam @@ -376892,12 +377931,12 @@ One Tank to Rule Them All: id: 788090 One Thousand Lies: files: - /renpy/config.py: + "/renpy/config.py": tags: - config when: - os: windows - /RenPy/One Thousand Lies-1389803005: + "/RenPy/One Thousand Lies-1389803005": tags: - save when: @@ -376908,15 +377947,15 @@ One Thousand Lies: installDir: One Thousand Lies: {} launch: - /One Thousand Lies.app: + "/One Thousand Lies.app": - when: - os: mac store: steam - /One Thousand Lies.exe: + "/One Thousand Lies.exe": - when: - os: windows store: steam - /One Thousand Lies.sh: + "/One Thousand Lies.sh": - when: - os: linux store: steam @@ -376929,7 +377968,7 @@ One Tower: installDir: ONE TOWER: {} launch: - /One Tower.exe: + "/One Tower.exe": - when: - os: windows store: steam @@ -376937,7 +377976,7 @@ One Tower: id: 463250 One Troll Army: files: - /AppData/LocalLow/FlyAnvil/OneTrollArmy: + "/AppData/LocalLow/FlyAnvil/OneTrollArmy": tags: - save when: @@ -376945,11 +377984,11 @@ One Troll Army: installDir: OneTrollArmy: {} launch: - /OTA.app: + "/OTA.app": - when: - os: mac store: steam - /OTA.exe: + "/OTA.exe": - when: - os: windows store: steam @@ -376959,11 +377998,11 @@ One Upon Light: installDir: One Upon Light: {} launch: - /OneUponLight_1.0.1.exe: + "/OneUponLight_1.0.1.exe": - when: - os: windows store: steam - /OneUponLight_1.0.app/Contents/MacOS/OneUponLight_1.0: + "/OneUponLight_1.0.app/Contents/MacOS/OneUponLight_1.0": - when: - os: mac store: steam @@ -376977,18 +378016,18 @@ One Watcher: installDir: One Watcher: {} launch: - /Win32/OneWatcher_x86_f.exe: + "/Win32/OneWatcher_x86_f.exe": - when: - os: windows store: steam - workingDir: /Win32 + workingDir: "/Win32" steam: id: 727150 One Way Flight: installDir: One Way Flight: {} launch: - /OneWayFlight.exe: + "/OneWayFlight.exe": - when: - os: windows store: steam @@ -376996,12 +378035,12 @@ One Way Flight: id: 463010 One Way Heroics: files: - /Game.ini: + "/Game.ini": tags: - config when: - os: windows - /Save_EN/System.dat: + "/Save_EN/System.dat": tags: - save when: @@ -377009,15 +378048,15 @@ One Way Heroics: installDir: One Way Heroics: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam steam: id: 266210 -'One Way To Die: Steam Edition': +"One Way To Die: Steam Edition": files: - /.coaguco/owtd: + "/.coaguco/owtd": tags: - save when: @@ -377025,17 +378064,17 @@ One Way Heroics: installDir: One Way To Die: {} launch: - /One Way To Die.app: + "/One Way To Die.app": - when: - os: mac store: steam - /die: - - arguments: 'res://src/splash.tscn' + "/die": + - arguments: "res://src/splash.tscn" when: - os: linux store: steam - /die.exe: - - arguments: 'res://src/splash.tscn' + "/die.exe": + - arguments: "res://src/splash.tscn" when: - os: windows store: steam @@ -377048,7 +378087,7 @@ One Wish: installDir: One Wish: {} launch: - /One Wish.exe: + "/One Wish.exe": - when: - os: windows store: steam @@ -377058,11 +378097,11 @@ One day: installDir: OneDay: {} launch: - /OneDay.app/Contents/MacOS/OneDay: + "/OneDay.app/Contents/MacOS/OneDay": - when: - os: mac store: steam - /OneDay.exe: + "/OneDay.exe": - when: - os: windows store: steam @@ -377072,7 +378111,7 @@ One day in London: installDir: One day in London: {} launch: - /odl.exe: + "/odl.exe": - when: - os: windows store: steam @@ -377082,46 +378121,46 @@ One minute of death: installDir: One minute of death: {} launch: - /omod.exe: + "/omod.exe": - when: - os: windows store: steam steam: id: 988330 -'One night, hot springs': +"One night, hot springs": files: - /game/saves: + "/game/saves": tags: - save when: - os: windows - /renpy/config.py: + "/renpy/config.py": tags: - config when: - os: windows - /renpy/onsengame-1517489131: + "/renpy/onsengame-1517489131": tags: - save when: - os: windows installDir: - 'one night, hot springs': {} + "one night, hot springs": {} launch: - /onsengame-market/onsengame-32.exe: + "/onsengame-market/onsengame-32.exe": - when: - bit: 32 os: windows store: steam - /onsengame-market/onsengame.app: + "/onsengame-market/onsengame.app": - when: - os: mac store: steam - /onsengame-market/onsengame.exe: + "/onsengame-market/onsengame.exe": - when: - os: windows store: steam - /onsengame-market/onsengame.sh: + "/onsengame-market/onsengame.sh": - when: - os: linux store: steam @@ -377136,21 +378175,21 @@ One-Eyed Lee and the Dinner Party: installDir: One-Eyed Lee and the Dinner Party: {} launch: - /One-EyedLeeandtheDinnerParty.exe: + "/One-EyedLeeandtheDinnerParty.exe": - when: - os: windows store: steam - /One-EyedLeeandtheDinnerParty.sh: + "/One-EyedLeeandtheDinnerParty.sh": - when: - os: linux store: steam steam: id: 1194160 -'One-Punch Man: A Hero Nobody Knows': +"One-Punch Man: A Hero Nobody Knows": installDir: ONE PUNCH MAN A HERO NOBODY KNOWS: {} launch: - /ONE PUNCH MAN A HERO NOBODY KNOWS.exe: + "/ONE PUNCH MAN A HERO NOBODY KNOWS.exe": - when: - bit: 64 os: windows @@ -377161,7 +378200,7 @@ One-Way Ticket: installDir: One-way Ticket · 单程票: {} launch: - /A418.exe: + "/A418.exe": - when: - bit: 64 os: windows @@ -377172,12 +378211,12 @@ One-eyed Jak: installDir: One-eyed Jak: {} launch: - /bin/barehunter.exe: + "/bin/barehunter.exe": - when: - bit: 32 os: windows store: steam - /bin64/barehunter.exe: + "/bin64/barehunter.exe": - when: - bit: 64 os: windows @@ -377188,7 +378227,7 @@ OneHit: installDir: OneHit: {} launch: - /OneHit.exe: + "/OneHit.exe": - when: - os: windows store: steam @@ -377203,7 +378242,7 @@ OneScreen Solar Sails: installDir: OneScreen Solar Sails: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -377216,20 +378255,20 @@ OneShift: installDir: OneShift: {} launch: - /OneShift.exe: + "/OneShift.exe": - when: - store: steam steam: id: 862740 OneShot: files: - /Oneshot: + "/Oneshot": tags: - config - save when: - os: windows - /Oneshot: + "/Oneshot": tags: - config - save @@ -377242,23 +378281,23 @@ OneShot: installDir: OneShot: {} launch: - /Oneshot.app: + "/Oneshot.app": - when: - os: mac store: steam - /steamshim: + "/steamshim": - when: - os: linux store: steam - /steamshim.exe: + "/steamshim.exe": - when: - os: windows store: steam steam: id: 420530 -'Onechanbara Z2: Chaos': +"Onechanbara Z2: Chaos": files: - /savedata: + "/savedata": tags: - config - save @@ -377267,7 +378306,7 @@ OneShot: installDir: S-AZ2: {} launch: - /OnechanbaraZ2.exe: + "/OnechanbaraZ2.exe": - when: - os: windows store: steam @@ -377275,12 +378314,12 @@ OneShot: id: 446390 Onee Chanbara Origin: files: - /GameData/Config.ini: + "/GameData/Config.ini": tags: - config when: - os: windows - /savedata: + "/savedata": tags: - save when: @@ -377288,7 +378327,7 @@ Onee Chanbara Origin: installDir: OneeChanbara Origin: {} launch: - /OneeChanbaraOrigin.exe: + "/OneeChanbaraOrigin.exe": - when: - store: steam steam: @@ -377302,7 +378341,7 @@ Oneironaut: installDir: Oneironaut: {} launch: - /Oneironaut.exe: + "/Oneironaut.exe": - when: - bit: 64 os: windows @@ -377313,7 +378352,7 @@ Oneiros: installDir: Oneiros: {} launch: - /Oneiros.exe: + "/Oneiros.exe": - when: - store: steam steam: @@ -377322,7 +378361,7 @@ Oneness: installDir: Oneness: {} launch: - /Oneness.exe: + "/Oneness.exe": - when: - os: windows store: steam @@ -377332,7 +378371,7 @@ Ones and Zeroes: installDir: Ones and Zeroes: {} launch: - /Ones and Zeroes.exe: + "/Ones and Zeroes.exe": - when: - os: windows store: steam @@ -377342,7 +378381,7 @@ Ongaku: installDir: Ongaku: {} launch: - /OngakuSteam.exe: + "/OngakuSteam.exe": - when: - os: windows store: steam @@ -377350,33 +378389,33 @@ Ongaku: id: 360990 Oni: files: - ./persist.dat: + "./persist.dat": tags: - save when: - os: windows - os: mac - './persist.dat, ./key_config.txt, ~/Library/Preferences/com.godgames.oni.plist': + "./persist.dat, ./key_config.txt, ~/Library/Preferences/com.godgames.oni.plist": tags: - config when: - os: mac - /AE/key_config.txt: + "/AE/key_config.txt": tags: - config when: - os: windows - /AE/persist.dat: + "/AE/persist.dat": tags: - config when: - os: windows - /key_config.txt: + "/key_config.txt": tags: - config when: - os: windows - /persist.dat: + "/persist.dat": tags: - config when: @@ -377384,7 +378423,7 @@ Oni: persist.dat: tags: - save - 'persist.dat, key_config.txt': + "persist.dat, key_config.txt": tags: - config OniBushi VR: @@ -377396,7 +378435,7 @@ Onigiri: installDir: Onigiri: {} launch: - /onigiri.exe: + "/onigiri.exe": - when: - os: windows store: steam @@ -377406,7 +378445,7 @@ Onii-Chan: installDir: Onii-Chan: {} launch: - /Onii-Chan/Onii-Chan.exe: + "/Onii-Chan/Onii-Chan.exe": - when: - os: windows store: steam @@ -377416,19 +378455,19 @@ Onii-chan Asobo: installDir: Onii-chan Asobo: {} launch: - /Onii_chan_Asobo.exe: + "/Onii_chan_Asobo.exe": - when: - store: steam steam: id: 954610 Oniken: files: - /Joymasher/Oniken/config.dat: + "/Joymasher/Oniken/config.dat": tags: - config when: - os: windows - /Joymasher/Oniken/save.dat: + "/Joymasher/Oniken/save.dat": tags: - save when: @@ -377438,17 +378477,17 @@ Oniken: installDir: Oniken: {} launch: - /Oniken.app: - - arguments: '-steammac' + "/Oniken.app": + - arguments: "-steammac" when: - os: mac store: steam - /Oniken.exe: - - arguments: '-steamwin' + "/Oniken.exe": + - arguments: "-steamwin" when: - os: windows store: steam - /play.sh: + "/play.sh": - when: - os: linux store: steam @@ -377456,12 +378495,12 @@ Oniken: id: 252010 Onikira - Demon Killer: files: - /Duality/AppData/Onikira/savedata.dat: + "/Duality/AppData/Onikira/savedata.dat": tags: - save when: - os: windows - /Duality/AppData/Onikira/userdata.dat: + "/Duality/AppData/Onikira/userdata.dat": tags: - config when: @@ -377469,7 +378508,7 @@ Onikira - Demon Killer: installDir: Onikira-DemonKiller: {} launch: - /onikira.exe: + "/onikira.exe": - when: - os: windows store: steam @@ -377479,15 +378518,15 @@ Onimod Land: installDir: Onimod land: {} launch: - /GameOL.exe: + "/GameOL.exe": - when: - os: windows store: steam steam: id: 633660 -'Onimusha 3: Demon Siege': +"Onimusha 3: Demon Siege": files: - /save: + "/save": tags: - save when: @@ -377495,31 +378534,31 @@ Onimod Land: installDir: Onimusha 3: {} launch: - /ONI3.exe: + "/ONI3.exe": - when: - store: steam steam: id: 6570 -'Onimusha: Warlords': +"Onimusha: Warlords": files: - /SaveGames/save.dat: + "/SaveGames/save.dat": tags: - save when: - os: windows - /setup.ini: + "/setup.ini": tags: - config when: - os: windows -'Onimusha: Warlords HD': +"Onimusha: Warlords HD": files: - /userdata//761600/remote/PCConfig.dat: + "/userdata//761600/remote/PCConfig.dat": tags: - config when: - store: steam - /userdata//761600/remote/Save.dat: + "/userdata//761600/remote/Save.dat": tags: - save when: @@ -377527,7 +378566,7 @@ Onimod Land: installDir: Onimusha: {} launch: - /game.exe: + "/game.exe": - when: - bit: 64 os: windows @@ -377536,7 +378575,7 @@ Onimod Land: id: 761600 Oninaki: files: - /My Games/ONINAKI/Steam/: + "/My Games/ONINAKI/Steam/": tags: - config - save @@ -377545,8 +378584,8 @@ Oninaki: installDir: ONINAKI: {} launch: - /ONINAKI.exe: - - arguments: '-nolog' + "/ONINAKI.exe": + - arguments: "-nolog" when: - store: steam registry: @@ -377559,15 +378598,15 @@ Onion Force: installDir: Onion Force: {} launch: - /Onion Force.app: + "/Onion Force.app": - when: - os: mac store: steam - /game.unx: + "/game.unx": - when: - os: linux store: steam - /onionforce.exe: + "/onionforce.exe": - when: - os: windows store: steam @@ -377577,11 +378616,11 @@ Onirike: installDir: Onirike: {} launch: - /Onirike.app/Contents/MacOS/Onirike: + "/Onirike.app/Contents/MacOS/Onirike": - when: - os: mac store: steam - /Onirike.exe: + "/Onirike.exe": - when: - os: windows store: steam @@ -377591,7 +378630,7 @@ Onirim: installDir: Onirim - Solitaire Card Game: {} launch: - /Onirim.exe: + "/Onirim.exe": - when: - os: windows store: steam @@ -377611,7 +378650,7 @@ Onirism: installDir: Onirism: {} launch: - /Onirism.exe: + "/Onirism.exe": - when: - os: windows store: steam @@ -377621,7 +378660,7 @@ Onironauta: installDir: Onironauta: {} launch: - /Onironauta.exe: + "/Onironauta.exe": - when: - os: windows store: steam @@ -377631,7 +378670,7 @@ Online Circle Pong: installDir: Online Circle Pong: {} launch: - /OnlineCirclePong.exe: + "/OnlineCirclePong.exe": - when: - os: windows store: steam @@ -377641,7 +378680,7 @@ Online Simulator: installDir: Online Simulator: {} launch: - /Online Simulator.exe: + "/Online Simulator.exe": - when: - os: windows store: steam @@ -377651,7 +378690,7 @@ Only A: installDir: ONLY A: {} launch: - /Only A.exe: + "/Only A.exe": - when: - os: windows store: steam @@ -377659,7 +378698,7 @@ Only A: id: 698990 Only After: files: - /OnlyAfter/Saved/SaveGames: + "/OnlyAfter/Saved/SaveGames": tags: - save when: @@ -377667,14 +378706,14 @@ Only After: installDir: Only After: {} launch: - /OnlyAfter.exe: + "/OnlyAfter.exe": - when: - store: steam steam: id: 1060000 Only If: files: - /.config/unity3d/Creability/Only If/prefs: + "/.config/unity3d/Creability/Only If/prefs": tags: - config when: @@ -377682,15 +378721,15 @@ Only If: installDir: Only If: {} launch: - /Only If.app: + "/Only If.app": - when: - os: mac store: steam - /Only If.exe: + "/Only If.exe": - when: - os: windows store: steam - /Only If.x86: + "/Only If.x86": - when: - os: linux store: steam @@ -377704,7 +378743,7 @@ Only One Burn: installDir: OnlyOneBurn: {} launch: - /OnlyOneBurn.exe: + "/OnlyOneBurn.exe": - when: - os: windows store: steam @@ -377719,11 +378758,11 @@ Only Shadows Left Behind: Only You: steam: id: 801510 -'OnlyCans: Thirst Date': +"OnlyCans: Thirst Date": installDir: OnlyCans: {} launch: - /OnlyCans Thirst Date.exe: + "/OnlyCans Thirst Date.exe": - when: - os: windows store: steam @@ -377733,7 +378772,7 @@ Onmyoji: installDir: Onmyoji: {} launch: - /client.exe: + "/client.exe": - when: - store: steam steam: @@ -377747,12 +378786,12 @@ Onset: installDir: Onset: {} launch: - /Onset.exe: + "/Onset.exe": - when: - bit: 64 os: windows store: steam - /Onset.sh: + "/Onset.sh": - when: - bit: 64 os: linux @@ -377762,11 +378801,11 @@ Onset: Onslaught VR: steam: id: 801390 -'Onslaught: Armoured Assault': +"Onslaught: Armoured Assault": installDir: Onslaught Armoured Assault: {} launch: - /Onslaught Armoured Assault.exe: + "/Onslaught Armoured Assault.exe": - when: - os: windows store: steam @@ -377779,7 +378818,7 @@ Onward: id: 496240 Onyx: files: - /Onyx/*.*: + "/Onyx/*.*": tags: - save when: @@ -377787,21 +378826,21 @@ Onyx: installDir: Onyx: {} launch: - /Onyx.exe: + "/Onyx.exe": - when: - store: steam steam: id: 370620 Ooblets: files: - /AppData/LocalLow/Glumberland/Ooblets/SaveData: + "/AppData/LocalLow/Glumberland/Ooblets/SaveData": tags: - save when: - os: windows steam: id: 593150 -'Oodlescape: The Apocalypse': +"Oodlescape: The Apocalypse": installDir: Oodlescape - The Apocalypse: {} steam: @@ -377810,11 +378849,11 @@ Ookibloks: installDir: Ookibloks: {} launch: - /Ookibloks_Steam.app/Contents/MacOS/Ookibloks_Steam: + "/Ookibloks_Steam.app/Contents/MacOS/Ookibloks_Steam": - when: - os: mac store: steam - /ookibloks_steam.exe: + "/ookibloks_steam.exe": - when: - os: windows store: steam @@ -377822,32 +378861,32 @@ Ookibloks: id: 399910 Oolite: files: - /Oolite/oolite.app/oolite-saves: + "/Oolite/oolite.app/oolite-saves": tags: - save when: - os: windows - /oolite.app/GNUstep/Defaults/.GNUstepDefaults: + "/oolite.app/GNUstep/Defaults/.GNUstepDefaults": tags: - config when: - os: windows - /GNUstep/Applications/Oolite/oolite-saves: + "/GNUstep/Applications/Oolite/oolite-saves": tags: - save when: - os: linux - /GNUstep/Defaults/.GNUstepDefaults: + "/GNUstep/Defaults/.GNUstepDefaults": tags: - config when: - os: linux - /Library/Application Support/Oolite/oolite-saves: + "/Library/Application Support/Oolite/oolite-saves": tags: - save when: - os: mac - /Library/Preferences/org.aegidian.oolite.plist: + "/Library/Preferences/org.aegidian.oolite.plist": tags: - config when: @@ -377856,7 +378895,7 @@ Oops!!! I Slept With Your Mom: installDir: Oops.I Slept With Your Mom: {} launch: - /iswym.exe: + "/iswym.exe": - when: - os: windows store: steam @@ -377866,17 +378905,17 @@ Oops!!! Puzzles!!!: installDir: Oops!!! Puzzles!!!: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam steam: id: 978580 -'Oozi: Earth Adventure': +"Oozi: Earth Adventure": installDir: Oozi Earth Adventure: {} launch: - /Oozi.exe: + "/Oozi.exe": - when: - os: windows store: steam @@ -377886,7 +378925,7 @@ Opai Puzzle: installDir: Opai Puzzle: {} launch: - /Opai Puzzle.exe: + "/Opai Puzzle.exe": - when: - os: windows store: steam @@ -377896,7 +378935,7 @@ Opaline: installDir: Opaline: {} launch: - /Opaline.exe: + "/Opaline.exe": - when: - store: steam steam: @@ -377905,7 +378944,7 @@ Open Colour: installDir: Open Colour: {} launch: - /Open Colour.exe: + "/Open Colour.exe": - when: - os: windows store: steam @@ -377915,14 +378954,14 @@ Open Country: installDir: OpenCountry: {} launch: - /OutdoorAdventures/Binaries/Win64/OutdoorAdventures.exe: + "/OutdoorAdventures/Binaries/Win64/OutdoorAdventures.exe": - when: - store: steam steam: id: 1192010 Open Day: files: - /www/save: + "/www/save": tags: - config - save @@ -377931,7 +378970,7 @@ Open Day: installDir: OpenDay: {} launch: - /OpenDay.exe: + "/OpenDay.exe": - when: - os: windows store: steam @@ -377939,13 +378978,13 @@ Open Day: id: 1029650 Open Hexagon: files: - /Profiles: + "/Profiles": tags: - save when: - os: windows - os: linux - /config.json: + "/config.json": tags: - config when: @@ -377954,12 +378993,12 @@ Open Hexagon: installDir: Open Hexagon: {} launch: - /SSVOpenHexagon.exe: + "/SSVOpenHexagon.exe": - when: - bit: 64 os: windows store: steam - /run_ssvopenhexagon_linux.sh: + "/run_ssvopenhexagon_linux.sh": - when: - os: linux store: steam @@ -377969,7 +379008,7 @@ Open Ocean: installDir: Open Ocean: {} launch: - /Open Ocean.exe: + "/Open Ocean.exe": - when: - store: steam steam: @@ -377979,17 +379018,17 @@ Open Roads: id: 1497360 Open Season: files: - /System/*.sav: + "/System/*.sav": tags: - save when: - os: windows - /System/OpenSeason.ini: + "/System/OpenSeason.ini": tags: - config when: - os: windows - /System/User.ini: + "/System/User.ini": tags: - config when: @@ -377998,7 +379037,7 @@ Open Sewer: installDir: Open Sewer: {} launch: - /Open Sewer.exe: + "/Open Sewer.exe": - when: - os: windows store: steam @@ -378008,33 +379047,33 @@ Open Sorcery: installDir: OpenSorcery: {} launch: - /Open Sorcery.exe: + "/Open Sorcery.exe": - when: - os: windows store: steam - /nw: + "/nw": - when: - os: linux store: steam - /nwjs.app: + "/nwjs.app": - when: - os: mac store: steam steam: id: 585180 -'Open Sorcery: Sea++': +"Open Sorcery: Sea++": installDir: SeaPlusPlus: {} launch: - /SeaPlusPlus.app: + "/SeaPlusPlus.app": - when: - os: mac store: steam - /SeaPlusPlus.exe: + "/SeaPlusPlus.exe": - when: - os: windows store: steam - /nw: + "/nw": - when: - os: linux store: steam @@ -378044,7 +379083,7 @@ Open Space 2D: installDir: Open Space 2D: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -378052,7 +379091,7 @@ Open Space 2D: id: 889060 Open Wheel Manager: files: - /saves/*.ows: + "/saves/*.ows": tags: - save when: @@ -378062,7 +379101,7 @@ Open Wheel Manager: installDir: OpenWheelManager: {} launch: - /OpenWheelManager.exe: + "/OpenWheelManager.exe": - when: - os: windows store: steam @@ -378071,9 +379110,9 @@ Open Wheel Manager: Open Wheel Manager 2: steam: id: 1757580 -'Open World Game: the Open World Game': +"Open World Game: the Open World Game": files: - /AppData/LocalLow/Morning Person Games/OWGTOWG/*.dat: + "/AppData/LocalLow/Morning Person Games/OWGTOWG/*.dat": tags: - save when: @@ -378081,7 +379120,7 @@ Open Wheel Manager 2: installDir: Open World Game the Open World Game: {} launch: - /OWGTOWG.exe: + "/OWGTOWG.exe": - when: - os: windows store: steam @@ -378091,7 +379130,7 @@ Open the Door: installDir: OpenTheDoorCaiKai: {} launch: - /OpenTheDoorCaiKai.exe: + "/OpenTheDoorCaiKai.exe": - when: - os: windows store: steam @@ -378099,84 +379138,84 @@ Open the Door: id: 849000 OpenArena: files: - /.openarena/baseoa: + "/.openarena/baseoa": tags: - config when: - os: linux - /OpenArena/baseoa: + "/OpenArena/baseoa": tags: - config when: - os: windows OpenLoco: files: - /*.cfg: + "/*.cfg": tags: - config when: - os: windows - /openloco.yml: + "/openloco.yml": tags: - config when: - os: windows - /save: + "/save": tags: - save when: - os: windows OpenRA: files: - /Library/Application Support/OpenRA: + "/Library/Application Support/OpenRA": tags: - config when: - os: mac - /Library/Application Support/OpenRA/Saves: + "/Library/Application Support/OpenRA/Saves": tags: - save when: - os: mac - /OpenRA: + "/OpenRA": tags: - config when: - os: windows - /OpenRA/Saves: + "/OpenRA/Saves": tags: - save when: - os: windows - /openra: + "/openra": tags: - config when: - os: linux - /openra/Saves: + "/openra/Saves": tags: - save when: - os: linux OpenRCT2: files: - /Library/Application Support/OpenRCT2: + "/Library/Application Support/OpenRCT2": tags: - config - save when: - os: mac - /OpenRCT2/config.ini: + "/OpenRCT2/config.ini": tags: - config when: - os: windows - /OpenRCT2/save: + "/OpenRCT2/save": tags: - save when: - os: windows - /OpenRCT2: + "/OpenRCT2": tags: - config - save @@ -378184,28 +379223,28 @@ OpenRCT2: - os: linux OpenTTD: files: - /Documents/OpenTTD: + "/Documents/OpenTTD": tags: - config - save when: - os: mac - /OpenTTD: + "/OpenTTD": tags: - config when: - os: windows - /OpenTTD/save: + "/OpenTTD/save": tags: - save when: - os: windows - /openttd: + "/openttd": tags: - config when: - os: linux - /openttd: + "/openttd": tags: - save when: @@ -378215,16 +379254,16 @@ OpenTTD: installDir: OpenTTD: {} launch: - /OpenTTD.app/Contents/MacOS/openttd: + "/OpenTTD.app/Contents/MacOS/openttd": - when: - os: mac store: steam - /openttd: - - arguments: '-mfluidsynth:soundfont=soundfont/FluidR3_GM.sf2' + "/openttd": + - arguments: "-mfluidsynth:soundfont=soundfont/FluidR3_GM.sf2" when: - os: linux store: steam - /openttd.exe: + "/openttd.exe": - when: - os: windows store: steam @@ -378234,11 +379273,11 @@ Opencast Mining: installDir: Opencast Mining: {} launch: - /Opencast Mining.app/Contents/MacOS/Opencast Mining: + "/Opencast Mining.app/Contents/MacOS/Opencast Mining": - when: - os: mac store: steam - /Opencast Mining.exe: + "/Opencast Mining.exe": - when: - os: windows store: steam @@ -378248,15 +379287,15 @@ Opening Up: installDir: Opening Up: {} launch: - /Opening Up.exe: + "/Opening Up.exe": - when: - os: windows store: steam steam: id: 1103890 -'Operation Abyss: New Tokyo Legacy': +"Operation Abyss: New Tokyo Legacy": files: - /SAVEDATA: + "/SAVEDATA": tags: - save when: @@ -378264,7 +379303,7 @@ Opening Up: installDir: Operation Abyss New Tokyo Legacy Steam: {} launch: - /Operation Abyss.exe: + "/Operation Abyss.exe": - when: - os: windows store: steam @@ -378274,7 +379313,7 @@ Operation Antiterror: installDir: Operation Antiterror: {} launch: - /Operation Antiterror.exe: + "/Operation Antiterror.exe": - when: - os: windows store: steam @@ -378290,11 +379329,11 @@ Operation Armstrong: Operation Armstrong: {} steam: id: 1145490 -'Operation Babel: New Tokyo Legacy': +"Operation Babel: New Tokyo Legacy": installDir: Operation Babel New Tokyo Legacy: {} launch: - /Operation Babel.exe: + "/Operation Babel.exe": - when: - os: windows store: steam @@ -378314,11 +379353,11 @@ Operation Body Count: installDir: Operation Body Count: {} launch: - /BodyCount.bat: + "/BodyCount.bat": - when: - os: windows store: steam - /BodyCount.command: + "/BodyCount.command": - when: - os: mac store: steam @@ -378328,7 +379367,7 @@ Operation Breakout: installDir: Operation Breakout®: {} launch: - /Operation Breakout®/Win64/WindowsNoEditor/Operation Breakout®.exe: + "/Operation Breakout®/Win64/WindowsNoEditor/Operation Breakout®.exe": - when: - bit: 64 os: windows @@ -378339,7 +379378,7 @@ Operation Caucasus: installDir: Operation Caucasus AlphaS1: {} launch: - /x86/OperationCaucasus.exe: + "/x86/OperationCaucasus.exe": - when: - bit: 32 os: windows @@ -378351,20 +379390,20 @@ Operation Chromite 1950 VR: Operation Chromite 1950 VR: {} steam: id: 695490 -'Operation Deep Magic: Cryptanalysis': +"Operation Deep Magic: Cryptanalysis": installDir: Operation Deep Magic Cryptanalysis: {} launch: - /Operation Deep Magic Cryptanalysis.app: + "/Operation Deep Magic Cryptanalysis.app": - when: - os: mac store: steam - /OperationDeepMagicCryptanalysis.exe: + "/OperationDeepMagicCryptanalysis.exe": - when: - bit: 64 os: windows store: steam - /OperationDeepMagicCryptanalysis.x86_64: + "/OperationDeepMagicCryptanalysis.x86_64": - when: - bit: 64 os: linux @@ -378375,19 +379414,19 @@ Operation Desert Road: installDir: Operation Desert Road: {} launch: - /Operation Desert Road.exe: + "/Operation Desert Road.exe": - when: - store: steam steam: id: 727320 -'Operation Flashpoint: Dragon Rising': +"Operation Flashpoint: Dragon Rising": files: - /My Games/OFDR/Profiles: + "/My Games/OFDR/Profiles": tags: - save when: - os: windows - /My Games/OFDR/hardwaresettings: + "/My Games/OFDR/hardwaresettings": tags: - config when: @@ -378395,19 +379434,19 @@ Operation Desert Road: installDir: Operation Flashpoint Dragon Rising: {} launch: - /OFDR.exe: + "/OFDR.exe": - when: - store: steam steam: id: 12830 -'Operation Flashpoint: Red River': +"Operation Flashpoint: Red River": files: - /My Games/OFRR/Profiles: + "/My Games/OFRR/Profiles": tags: - save when: - os: windows - /My Games/OFRR/hardwaresettings: + "/My Games/OFRR/hardwaresettings": tags: - config when: @@ -378415,7 +379454,7 @@ Operation Desert Road: installDir: Operation Flashpoint Red River: {} launch: - /RedRiverLauncher.exe: + "/RedRiverLauncher.exe": - when: - store: steam steam: @@ -378424,11 +379463,11 @@ Operation Hardcore: installDir: Operation Hardcore: {} launch: - /OH.app: + "/OH.app": - when: - os: mac store: steam - /OH.exe: + "/OH.exe": - when: - os: windows store: steam @@ -378438,7 +379477,7 @@ Operation Kreep: installDir: KREEP: {} launch: - /KreepSteam.exe: + "/KreepSteam.exe": - when: - os: windows store: steam @@ -378448,7 +379487,7 @@ Operation Lone Wolf: installDir: Operation Lone Wolf: {} launch: - /Operation Lone Wolf.exe: + "/Operation Lone Wolf.exe": - when: - os: windows store: steam @@ -378458,7 +379497,7 @@ Operation Osama Bin Laden: installDir: Operation Osam Bin Laden: {} launch: - /OpOBL.exe: + "/OpOBL.exe": - when: - os: windows store: steam @@ -378468,12 +379507,12 @@ Operation Red Dragon: installDir: OperationRedDragon: {} launch: - /ORD.sh: + "/ORD.sh": - when: - bit: 64 os: linux store: steam - /OperationRedDragon/Binaries/Win64/ORD.exe: + "/OperationRedDragon/Binaries/Win64/ORD.exe": - when: - bit: 64 os: windows @@ -378484,17 +379523,17 @@ Operation Sheep Defense: installDir: Operation Sheep Defense: {} launch: - /OperationSheepDefense: + "/OperationSheepDefense": - when: - bit: 64 os: linux store: steam - /OperationSheepDefense.app/Contents/MacOS/OperationSheepDefense: + "/OperationSheepDefense.app/Contents/MacOS/OperationSheepDefense": - when: - bit: 64 os: mac store: steam - /OperationSheepDefense.exe: + "/OperationSheepDefense.exe": - when: - os: windows store: steam @@ -378504,7 +379543,7 @@ Operation Sniff: installDir: Operation sniff: {} launch: - /Operation sniff.exe: + "/Operation sniff.exe": - when: - os: windows store: steam @@ -378514,7 +379553,7 @@ Operation Swat: installDir: Operation swat: {} launch: - /Operationswat.exe: + "/Operationswat.exe": - when: - os: windows store: steam @@ -378522,17 +379561,17 @@ Operation Swat: id: 584780 Operation Thunderstorm: files: - /Documents/City Interactive/Operation Thunderstorm/Profiles/Profile000.gdb: + "/Documents/City Interactive/Operation Thunderstorm/Profiles/Profile000.gdb": tags: - config when: - os: windows - /Documents/City Interactive/Operation Thunderstorm/Save/Profile000/SinglePlayer: + "/Documents/City Interactive/Operation Thunderstorm/Save/Profile000/SinglePlayer": tags: - save when: - os: windows - /Documents/City Interactive/Operation Thunderstorm/settings.cfg: + "/Documents/City Interactive/Operation Thunderstorm/settings.cfg": tags: - config when: @@ -378540,7 +379579,7 @@ Operation Thunderstorm: installDir: Operation Thunderstorm: {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: @@ -378549,7 +379588,7 @@ Operation Valderon: installDir: Operation Valderon: {} launch: - /tdproject.exe: + "/tdproject.exe": - when: - os: windows store: steam @@ -378560,25 +379599,25 @@ Operation Warcade VR: Operation Warcade: {} steam: id: 639270 -'Operation: Black Mesa': +"Operation: Black Mesa": steam: id: 311810 -'Operation: Cheek Clapper': +"Operation: Cheek Clapper": installDir: Operation Cheek Clapper: {} launch: - /Cheek Clapper.exe: + "/Cheek Clapper.exe": - when: - os: windows store: steam steam: id: 1152670 -'Operation: Global Shield': +"Operation: Global Shield": steam: id: 407740 -'Operation: Harsh Doorstop': +"Operation: Harsh Doorstop": files: - 'C:/Users/Eddy/AppData/Local/HarshDoorstop/Saved/Config/WindowsNoEditor': + "C:/Users/Eddy/AppData/Local/HarshDoorstop/Saved/Config/WindowsNoEditor": tags: - config when: @@ -378586,20 +379625,20 @@ Operation Warcade VR: installDir: Harsh Doorstop: {} launch: - /HarshDoorstop/Binaries/Win64/HarshDoorstop-Win64-Shipping.exe: + "/HarshDoorstop/Binaries/Win64/HarshDoorstop-Win64-Shipping.exe": - when: - os: windows store: steam steam: id: 736590 -'Operation: Matriarchy': +"Operation: Matriarchy": files: - /Data/cfg/config.cfg: + "/Data/cfg/config.cfg": tags: - config when: - os: windows - /Saves: + "/Saves": tags: - save when: @@ -378607,39 +379646,39 @@ Operation Warcade VR: installDir: Operation Matriarchy: {} launch: - /GAME.EXE: + "/GAME.EXE": - when: - os: windows store: steam steam: id: 435420 -'Operation: New Earth': +"Operation: New Earth": installDir: Operation New Earth: {} launch: - /OpNewEarth.app: + "/OpNewEarth.app": - when: - os: mac store: steam - /OpNewEarth.exe: + "/OpNewEarth.exe": - when: - os: windows store: steam steam: id: 528740 -'Operation: Pinkeye': +"Operation: Pinkeye": files: - /.local/share/Operation- Pinkeye/*.bin: + "/.local/share/Operation- Pinkeye/*.bin": tags: - save when: - os: linux - /Library/Application Support/Operation- Pinkeye/*.bin: + "/Library/Application Support/Operation- Pinkeye/*.bin": tags: - save when: - os: mac - /Operation- Pinkeye/*.bin: + "/Operation- Pinkeye/*.bin": tags: - save when: @@ -378647,40 +379686,40 @@ Operation Warcade VR: installDir: Operation Pinkeye: {} launch: - /OP.x86: + "/OP.x86": - when: - bit: 32 os: linux store: steam - /OP.x86_64: + "/OP.x86_64": - when: - bit: 64 os: linux store: steam - /OP32.exe: + "/OP32.exe": - when: - bit: 32 os: windows store: steam - /OP64.exe: + "/OP64.exe": - when: - bit: 64 os: windows store: steam - /Operation- Pinkeye.app: + "/Operation- Pinkeye.app": - when: - os: mac store: steam steam: id: 1619820 -'Operation: Polarity Hook': +"Operation: Polarity Hook": installDir: Operation Polarity Hook: {} steam: id: 689130 -'Operation: Tango': +"Operation: Tango": files: - /AppData/LocalLow/Clever-Plays/Operation Tango: + "/AppData/LocalLow/Clever-Plays/Operation Tango": tags: - save when: @@ -378688,19 +379727,19 @@ Operation Warcade VR: installDir: Operation Tango: {} launch: - /Operation Tango.exe: + "/Operation Tango.exe": - when: - bit: 64 os: windows store: steam steam: id: 1335790 -'Operation: Valor': +"Operation: Valor": steam: id: 1095480 Operator: files: - /AppData/LocalLow/Greenfly Studios/Operator: + "/AppData/LocalLow/Greenfly Studios/Operator": tags: - config when: @@ -378713,34 +379752,34 @@ Operator Overload: installDir: Operator Overload: {} launch: - /OperatorOverload: + "/OperatorOverload": - when: - bit: 64 os: linux store: steam - /OperatorOverload.app/Contents/MacOS/OperatorOverload: + "/OperatorOverload.app/Contents/MacOS/OperatorOverload": - when: - os: mac store: steam - /OperatorOverload.exe: + "/OperatorOverload.exe": - when: - os: windows store: steam steam: id: 499140 -'Operencia: The Stolen Sun': +"Operencia: The Stolen Sun": files: - /Operencia/Saved/Config/WindowsNoEditor: + "/Operencia/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /Operencia/Saved/SaveGames: + "/Operencia/Saved/SaveGames": tags: - save when: - os: windows - /Packages/ZenStudios.OperenciaTheStolenSun_sqz2yzgfp6bz4/LocalState/Operencia/Saved/Config/UWP: + "/Packages/ZenStudios.OperenciaTheStolenSun_sqz2yzgfp6bz4/LocalState/Operencia/Saved/Config/UWP": tags: - config when: @@ -378751,7 +379790,7 @@ Operator Overload: installDir: Operencia The Stolen Sun: {} launch: - /Operencia.exe: + "/Operencia.exe": - when: - store: steam steam: @@ -378760,7 +379799,7 @@ Ophidia: installDir: Ophidia: {} launch: - /Ophidia.exe: + "/Ophidia.exe": - when: - store: steam steam: @@ -378769,17 +379808,17 @@ Ophidian: installDir: Ophidian: {} launch: - /Ophidian.app: + "/Ophidian.app": - when: - os: mac store: steam - /Ophidian.exe: + "/Ophidian.exe": - when: - os: windows store: steam steam: id: 697710 -'Opie: The Defender': +"Opie: The Defender": steam: id: 808960 Oppai Puzzle: @@ -378789,15 +379828,15 @@ Oppaidius Summer Trouble!: installDir: Oppaidius: {} launch: - /Oppaidius.app/Contents/MacOS/Oppaidius: + "/Oppaidius.app/Contents/MacOS/Oppaidius": - when: - os: mac store: steam - /Oppaidius.exe: + "/Oppaidius.exe": - when: - os: windows store: steam - /Oppaidius.sh: + "/Oppaidius.sh": - when: - os: linux store: steam @@ -378807,15 +379846,15 @@ Oppaidius Tropical Cruise!: installDir: OppaidiusTC: {} launch: - /OppaidiusTC.app/Contents/MacOS/OppaidiusTC: + "/OppaidiusTC.app/Contents/MacOS/OppaidiusTC": - when: - os: mac store: steam - /OppaidiusTC.exe: + "/OppaidiusTC.exe": - when: - os: windows store: steam - /OppaidiusTC.sh: + "/OppaidiusTC.sh": - when: - os: linux store: steam @@ -378825,11 +379864,11 @@ Optica: installDir: Optica: {} launch: - /Optica.app: + "/Optica.app": - when: - os: mac store: steam - /Optica.exe: + "/Optica.exe": - when: - os: windows store: steam @@ -378839,11 +379878,11 @@ Optika: installDir: Optika: {} launch: - /Optika.app/Contents/MacOS/Optika: + "/Optika.app/Contents/MacOS/Optika": - when: - os: mac store: steam - /Optika.exe: + "/Optika.exe": - when: - os: windows store: steam @@ -378853,7 +379892,7 @@ Optimum Link: installDir: Optimum Link: {} launch: - /OptimumLink.exe: + "/OptimumLink.exe": - when: - bit: 64 os: windows @@ -378865,42 +379904,42 @@ Opus 1 - Social Justice War: id: 763570 Opus Magnum: files: - /.local/share/Opus Magnum: + "/.local/share/Opus Magnum": tags: - save when: - os: linux - /.local/share/Opus Magnum/config.cfg: + "/.local/share/Opus Magnum/config.cfg": tags: - config when: - os: linux - /Library/Application Support/Opus Magnum/: + "/Library/Application Support/Opus Magnum/": tags: - save when: - os: mac - /Library/Application Support/Opus Magnum//config.cfg: + "/Library/Application Support/Opus Magnum//config.cfg": tags: - config when: - os: mac - /My Games/Opus Magnum: + "/My Games/Opus Magnum": tags: - save when: - os: windows - /My Games/Opus Magnum/: + "/My Games/Opus Magnum/": tags: - save when: - os: windows - /My Games/Opus Magnum//config.cfg: + "/My Games/Opus Magnum//config.cfg": tags: - config when: - os: windows - /My Games/Opus Magnum/config.cfg: + "/My Games/Opus Magnum/config.cfg": tags: - config when: @@ -378910,15 +379949,15 @@ Opus Magnum: installDir: Opus Magnum: {} launch: - /Lightning: + "/Lightning": - when: - os: linux store: steam - /Lightning.exe: + "/Lightning.exe": - when: - os: windows store: steam - /Opus Magnum.app/Contents/MacOS/Lightning: + "/Opus Magnum.app/Contents/MacOS/Lightning": - when: - os: mac store: steam @@ -378928,19 +379967,19 @@ Opus Mortem: installDir: Opus Mortem: {} launch: - /OpusMortem.exe: + "/OpusMortem.exe": - when: - os: windows store: steam - /OpusMortem/runner: + "/OpusMortem/runner": - when: - os: linux store: steam steam: id: 887750 -'Opus: Echo of Starsong': +"Opus: Echo of Starsong": files: - /AppData/LocalLow/SIGONO/OPUS_ Echo of Starsong/Save: + "/AppData/LocalLow/SIGONO/OPUS_ Echo of Starsong/Save": tags: - save when: @@ -378959,35 +379998,35 @@ Opus Mortem: installDir: OPUS Echo of Starsong: {} launch: - /OPUS Echo of Starsong.app: + "/OPUS Echo of Starsong.app": - when: - os: mac store: steam - /OPUS Echo of Starsong.exe: + "/OPUS Echo of Starsong.exe": - when: - os: windows store: steam steam: id: 1504500 -'Opus: Rocket of Whispers': +"Opus: Rocket of Whispers": gog: id: 1833507160 installDir: OPUS Rocket of Whispers: {} launch: - /OPUS Rocket of Whispers.app/Contents/MacOS/OPUS Rocket of Whispers: + "/OPUS Rocket of Whispers.app/Contents/MacOS/OPUS Rocket of Whispers": - when: - os: mac store: steam - /OPUS Rocket of Whispers.exe: + "/OPUS Rocket of Whispers.exe": - when: - os: windows store: steam steam: id: 742250 -'Opus: The Day We Found Earth': +"Opus: The Day We Found Earth": files: - /AppData/LocalLow/SIGONO/OPUS: + "/AppData/LocalLow/SIGONO/OPUS": tags: - save when: @@ -378997,11 +380036,11 @@ Opus Mortem: installDir: OPUS: {} launch: - /OPUS.app/Contents/MacOS/OPUS: + "/OPUS.app/Contents/MacOS/OPUS": - when: - os: mac store: steam - /OPUS.exe: + "/OPUS.exe": - when: - os: windows store: steam @@ -379015,7 +380054,7 @@ Oracle: installDir: Oracle: {} launch: - /Oracle.exe: + "/Oracle.exe": - when: - os: windows store: steam @@ -379025,17 +380064,17 @@ Oracle of Forgotten Testament: installDir: Oracle of Forgotten Testament: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam steam: id: 786510 -'Oracle: Threads of Fate': +"Oracle: Threads of Fate": installDir: Oracle Threads of Fate: {} launch: - /Oracle.exe: + "/Oracle.exe": - when: - os: windows store: steam @@ -379045,7 +380084,7 @@ Orake: installDir: Orake Classic: {} launch: - /OrakeClassic.exe: + "/OrakeClassic.exe": - when: - os: windows store: steam @@ -379055,7 +380094,7 @@ Orange Adventure: installDir: Orange Adventure: {} launch: - /OrangeAdventure.exe: + "/OrangeAdventure.exe": - when: - os: windows store: steam @@ -379068,12 +380107,12 @@ Orange Moon: installDir: Orange Moon: {} launch: - /win32/OrangeMoon.exe: + "/win32/OrangeMoon.exe": - when: - bit: 32 os: windows store: steam - /win64/OrangeMoon.exe: + "/win64/OrangeMoon.exe": - when: - bit: 64 os: windows @@ -379084,8 +380123,8 @@ Orangeblood: installDir: Orangeblood: {} launch: - /Game.exe: - - arguments: '--in-process-gpu' + "/Game.exe": + - arguments: "--in-process-gpu" when: - store: steam steam: @@ -379094,17 +380133,17 @@ Orb Flo: installDir: Orb Flo: {} launch: - /orb flo.exe: + "/orb flo.exe": - when: - os: windows store: steam - /orb_flo.x86_64: + "/orb_flo.x86_64": - when: - os: linux store: steam steam: id: 674360 -'Orb Labs, Inc.': +"Orb Labs, Inc.": installDir: OrbLabsInc: {} steam: @@ -379116,11 +380155,11 @@ Orb The Ball: installDir: Orb The Ball: {} launch: - /OrbTheBall.app/Contents/MacOS/OrbTheBall: + "/OrbTheBall.app/Contents/MacOS/OrbTheBall": - when: - os: mac store: steam - /OrbTheBall.exe: + "/OrbTheBall.exe": - when: - os: windows store: steam @@ -379130,7 +380169,7 @@ Orbi Universo: installDir: Orbi Universo: {} launch: - /Orbi Universo.exe: + "/Orbi Universo.exe": - when: - bit: 64 os: windows @@ -379141,7 +380180,7 @@ Orbit: installDir: ORBIT: {} launch: - /ORBIT.exe: + "/ORBIT.exe": - when: - os: windows store: steam @@ -379151,16 +380190,16 @@ Orbit - Playing with Gravity: installDir: Orbit - Playing with Gravity: {} launch: - /Mac/Orbit.app: + "/Mac/Orbit.app": - when: - os: mac store: steam - /Windows32/Orbit.exe: + "/Windows32/Orbit.exe": - when: - bit: 32 os: windows store: steam - /Windows64/Orbit.exe: + "/Windows64/Orbit.exe": - when: - bit: 64 os: windows @@ -379171,7 +380210,7 @@ Orbit Defender: installDir: Orbit Defender: {} launch: - /Orbit Defender.exe: + "/Orbit Defender.exe": - when: - os: windows store: steam @@ -379181,17 +380220,23 @@ Orbit HD: installDir: Orbit: {} launch: - /nw: + "/nw": - when: - os: linux store: steam - /orbit.app: + "/orbit.app": - when: + - bit: 32 + os: mac + store: steam - bit: 64 os: mac store: steam - /orbit.exe: + "/orbit.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam @@ -379203,23 +380248,23 @@ Orbit.industries: installDir: Orbit.Industries: {} launch: - /Lithium.exe: + "/Lithium.exe": - when: - bit: 64 os: windows store: steam - /Lithium.sh: + "/Lithium.sh": - when: - bit: 64 os: linux store: steam steam: id: 1668130 -'Orbit: Satellite Defense': +"Orbit: Satellite Defense": installDir: OrbitSatelliteDefense: {} launch: - /OrbitSatelliteDefense.exe: + "/OrbitSatelliteDefense.exe": - when: - os: windows store: steam @@ -379229,7 +380274,7 @@ Orbital: installDir: ORBITAL: {} launch: - /Orbital.exe: + "/Orbital.exe": - when: - os: windows store: steam @@ -379237,7 +380282,7 @@ Orbital: id: 506670 Orbital Bullet: files: - /LocalLow/SmokeStab/OrbitalBullet: + "/LocalLow/SmokeStab/OrbitalBullet": tags: - save when: @@ -379247,7 +380292,7 @@ Orbital Bullet: installDir: Orbital Bullet: {} launch: - /OrbitalBullet.exe: + "/OrbitalBullet.exe": - when: - os: windows store: steam @@ -379257,15 +380302,15 @@ Orbital Gear: installDir: Orbital Gear: {} launch: - /OrbitalGear.app: + "/OrbitalGear.app": - when: - os: mac store: steam - /OrbitalGear.exe: + "/OrbitalGear.exe": - when: - os: windows store: steam - /OrbitalGear.x86: + "/OrbitalGear.x86": - when: - os: linux store: steam @@ -379280,7 +380325,7 @@ Orbital Racer: installDir: Orbital Racer: {} launch: - /Orbital Racer.exe: + "/Orbital Racer.exe": - when: - os: windows store: steam @@ -379290,13 +380335,13 @@ Orbital Shipyards: installDir: Orbital Shipyards: {} launch: - /OrbitalShipyards.exe: + "/OrbitalShipyards.exe": - when: - os: windows store: steam steam: id: 1152660 -'Orbital Strike: Arena': +"Orbital Strike: Arena": installDir: OrbitalStrikeArena: {} steam: @@ -379305,22 +380350,28 @@ Orbital X: installDir: Orbital X: {} launch: - /Orbital X.app: + "/Orbital X.app": - when: - bit: 32 os: mac store: steam - /Orbital X.exe: + - bit: 64 + os: mac + store: steam + "/Orbital X.exe": - when: - bit: 32 os: windows store: steam - /Orbital X.x86: + - bit: 64 + os: windows + store: steam + "/Orbital X.x86": - when: - bit: 32 os: linux store: steam - /Orbital X.x86_64: + "/Orbital X.x86_64": - when: - bit: 64 os: linux @@ -379331,11 +380382,11 @@ Orbitality: installDir: Orbitality: {} launch: - /Orbitality.app/Contents/MacOS/Orbitality: + "/Orbitality.app/Contents/MacOS/Orbitality": - when: - os: mac store: steam - /Orbitality.exe: + "/Orbitality.exe": - when: - os: windows store: steam @@ -379345,7 +380396,7 @@ Orbitblazers: installDir: Orbitblazers: {} launch: - /Orbitblazers.exe: + "/Orbitblazers.exe": - when: - os: windows store: steam @@ -379355,7 +380406,7 @@ Orbitron: installDir: Orbitron: {} launch: - /EighthBuild.exe: + "/EighthBuild.exe": - when: - os: windows store: steam @@ -379365,15 +380416,15 @@ Orbits: installDir: Orbits: {} launch: - /Orbits.app/Contents/MacOS/Orbits: + "/Orbits.app/Contents/MacOS/Orbits": - when: - os: mac store: steam - /Orbits.exe: + "/Orbits.exe": - when: - os: windows store: steam - /Orbits.x86: + "/Orbits.x86": - when: - os: linux store: steam @@ -379383,32 +380434,32 @@ Orbiz: installDir: Orbiz: {} launch: - /Orbiz 32bit.app/Contents/MacOS/Orbiz 32bit: + "/Orbiz 32bit.app/Contents/MacOS/Orbiz 32bit": - when: - bit: 32 os: mac store: steam - /Orbiz 32bit.exe: + "/Orbiz 32bit.exe": - when: - bit: 32 os: windows store: steam - /Orbiz 64bit.app/Contents/MacOS/Orbiz 64bit: + "/Orbiz 64bit.app/Contents/MacOS/Orbiz 64bit": - when: - bit: 64 os: mac store: steam - /Orbiz 64bit.exe: + "/Orbiz 64bit.exe": - when: - bit: 64 os: windows store: steam - /Orbiz.x86: + "/Orbiz.x86": - when: - bit: 32 os: linux store: steam - /Orbiz.x86_64: + "/Orbiz.x86_64": - when: - bit: 64 os: linux @@ -379419,7 +380470,7 @@ Orblitz: installDir: Orblitz: {} launch: - /Orblitz.exe: + "/Orblitz.exe": - when: - os: windows store: steam @@ -379429,20 +380480,20 @@ Orborun: installDir: Orborun: {} launch: - /Orborun.app: + "/Orborun.app": - when: - os: mac store: steam - /Orborun.exe: + "/Orborun.exe": - when: - os: windows store: steam - /Orborun.x86: + "/Orborun.x86": - when: - bit: 32 os: linux store: steam - /Orborun.x86_64: + "/Orborun.x86_64": - when: - bit: 64 os: linux @@ -379458,7 +380509,7 @@ Orbos: installDir: Orbos: {} launch: - /ProjectOrb.exe: + "/ProjectOrb.exe": - when: - os: windows store: steam @@ -379468,7 +380519,7 @@ Orbox C: installDir: OrboxC: {} launch: - /orboxC.exe: + "/orboxC.exe": - when: - os: windows store: steam @@ -379478,11 +380529,13 @@ Orbs: installDir: Orbs: {} launch: - /Orbs.app: + "/Orbs.app": - when: - os: mac store: steam - /Orbs.exe: + - os: linux + store: steam + "/Orbs.exe": - when: - os: windows store: steam @@ -379490,7 +380543,7 @@ Orbs: id: 660450 Orbt XL: files: - /AppData/LocalLow/Nickervision Studios/orbt xl/*.orbtxl: + "/AppData/LocalLow/Nickervision Studios/orbt xl/*.orbtxl": tags: - save when: @@ -379498,21 +380551,24 @@ Orbt XL: installDir: orbt xl: {} launch: - /orbtxl.app: + "/orbtxl.app": - when: - os: mac store: steam - /orbtxl.exe: + "/orbtxl.exe": - when: - bit: 32 os: windows store: steam - /orbtxl.x86: + - bit: 64 + os: windows + store: steam + "/orbtxl.x86": - when: - bit: 32 os: linux store: steam - /orbtxl.x86_64: + "/orbtxl.x86_64": - when: - bit: 64 os: linux @@ -379529,22 +380585,22 @@ Orc Assault: Orc Assault: {} steam: id: 371360 -'Orc Attack: Flatulent Rebellion': +"Orc Attack: Flatulent Rebellion": installDir: Orc Attack: {} launch: - /OrcAttack/game.exe: + "/OrcAttack/game.exe": - when: - os: windows store: steam - workingDir: /OrcAttack + workingDir: "/OrcAttack" steam: id: 268520 Orc Colony: installDir: Orc Colony: {} launch: - /OrcColony.exe: + "/OrcColony.exe": - when: - bit: 64 os: windows @@ -379560,7 +380616,7 @@ Orc Island: installDir: Orc Island: {} launch: - /Orc Island.exe: + "/Orc Island.exe": - when: - os: windows store: steam @@ -379570,7 +380626,7 @@ Orc Massage: installDir: Orc Massage: {} launch: - /OrcMassage.exe: + "/OrcMassage.exe": - when: - store: steam steam: @@ -379579,20 +380635,20 @@ Orc Raid: installDir: Orc Raid: {} launch: - /OrcRaid.app/Contents/MacOS/OrcRaid: + "/OrcRaid.app/Contents/MacOS/OrcRaid": - when: - os: mac store: steam - /OrcRaid.exe: + "/OrcRaid.exe": - when: - os: windows store: steam - /OrcRaid.x86: + "/OrcRaid.x86": - when: - bit: 32 os: linux store: steam - /OrcRaid.x86_64: + "/OrcRaid.x86_64": - when: - bit: 64 os: linux @@ -379603,15 +380659,15 @@ Orc Slayer: installDir: OrcSlayer: {} launch: - /OrcMac1.app: + "/OrcMac1.app": - when: - os: mac store: steam - /OrcSlayer.exe: + "/OrcSlayer.exe": - when: - os: windows store: steam - /OrcSlayer.x86_64: + "/OrcSlayer.x86_64": - when: - os: linux store: steam @@ -379631,8 +380687,8 @@ Orch Star: installDir: Orch Star: {} launch: - /Orch Star.exe: - - arguments: '-vrmode None' + "/Orch Star.exe": + - arguments: "-vrmode None" when: - os: windows store: steam @@ -379646,17 +380702,17 @@ Orcish Inn: id: 533800 Orcs Must Die!: files: - /Data/startup: + "/Data/startup": tags: - save when: - os: windows - /Data/startup/user.cfg: + "/Data/startup/user.cfg": tags: - config when: - os: windows - /Orcs Must Die/VideoSettings.xml: + "/Orcs Must Die/VideoSettings.xml": tags: - config when: @@ -379664,19 +380720,19 @@ Orcs Must Die!: installDir: Orcs Must Die!: {} launch: - /build/release/orcsmustdie.exe: + "/build/release/orcsmustdie.exe": - when: - store: steam steam: id: 102600 Orcs Must Die! 2: files: - /data/startup/user.cfg: + "/data/startup/user.cfg": tags: - config when: - os: windows - /userdata//201790/remote: + "/userdata//201790/remote": tags: - save when: @@ -379685,20 +380741,20 @@ Orcs Must Die! 2: installDir: Orcs Must Die 2: {} launch: - /build/release/OrcsMustDie2.exe: + "/build/release/OrcsMustDie2.exe": - when: - store: steam - workingDir: /build/release + workingDir: "/build/release" steam: id: 201790 Orcs Must Die! 3: files: - /Robot Entertainment/Orcs Must Die! 3/Saved/Config/WindowsNoEditor: + "/Robot Entertainment/Orcs Must Die! 3/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /Robot Entertainment/Orcs Must Die! 3/Saved/SaveGames: + "/Robot Entertainment/Orcs Must Die! 3/Saved/SaveGames": tags: - save when: @@ -379711,7 +380767,7 @@ Orcs Must Die! 3: installDir: Orcs Must Die 3: {} launch: - /Orcs Must Die! 3.exe: + "/Orcs Must Die! 3.exe": - when: - bit: 64 os: windows @@ -379720,7 +380776,7 @@ Orcs Must Die! 3: id: 1522820 Orcs Must Die! Unchained: files: - /My Games/Orcs Must Die Unchained/Dashboard/PlayerConfig.xml: + "/My Games/Orcs Must Die Unchained/Dashboard/PlayerConfig.xml": tags: - config when: @@ -379728,11 +380784,11 @@ Orcs Must Die! Unchained: installDir: OrcsMustDieUnchained: {} launch: - /dashboard/bin/spitfiredashboard.exe: + "/dashboard/bin/spitfiredashboard.exe": - when: - os: windows store: steam - workingDir: /dashboard/bin + workingDir: "/dashboard/bin" steam: id: 427270 Orcz Evolve VR: @@ -379744,7 +380800,7 @@ Orczz: installDir: Orczz: {} launch: - /orczz.exe: + "/orczz.exe": - when: - os: windows store: steam @@ -379754,15 +380810,15 @@ Ord.: installDir: Ord: {} launch: - /Ord.app/Contents/MacOS/Ord: + "/Ord.app/Contents/MacOS/Ord": - when: - os: mac store: steam - /Ord.exe: + "/Ord.exe": - when: - os: windows store: steam - /Ord.x86_64: + "/Ord.x86_64": - when: - bit: 64 os: linux @@ -379773,24 +380829,24 @@ Ordeal of Princess Eris: installDir: Ordeal of Princess Eris: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: id: 1015800 -'Order No. 227: Not one step back!': +"Order No. 227: Not one step back!": installDir: Order227: {} launch: - /nw: + "/nw": - when: - os: linux store: steam - /nw.exe: + "/nw.exe": - when: - os: windows store: steam - /orderno227.app: + "/orderno227.app": - when: - os: mac store: steam @@ -379800,7 +380856,7 @@ Order Of The Gatekeepers: installDir: OrderOfTheGatekeepers: {} launch: - /gatekeepers.exe: + "/gatekeepers.exe": - when: - os: windows store: steam @@ -379811,27 +380867,27 @@ Order Up VR (2019): Order Up VR: {} steam: id: 1072170 -'Order of Ataxia: Initial Effects': +"Order of Ataxia: Initial Effects": installDir: Order of Ataxia Initial Effects: {} launch: - /OrderofAtaxia/Order of Ataxia.app/Contents/MacOS/Order of Ataxia: + "/OrderofAtaxia/Order of Ataxia.app/Contents/MacOS/Order of Ataxia": - when: - os: mac store: steam - /OrderofAtaxia/Order of Ataxia.exe: + "/OrderofAtaxia/Order of Ataxia.exe": - when: - os: windows store: steam - /OrderofAtaxia/Order of Ataxia.sh: + "/OrderofAtaxia/Order of Ataxia.sh": - when: - os: linux store: steam steam: id: 386960 -'Order of Battle: World War II': +"Order of Battle: World War II": files: - /My Games/Order of Battle - WW2/SaveGames: + "/My Games/Order of Battle - WW2/SaveGames": tags: - save when: @@ -379841,13 +380897,13 @@ Order Up VR (2019): installDir: Order of Battle Pacific: {} launch: - /Order of Battle - WW2.app: - - arguments: '-steam' + "/Order of Battle - WW2.app": + - arguments: "-steam" when: - os: mac store: steam - /autorun.exe: - - arguments: '-steam' + "/autorun.exe": + - arguments: "-steam" when: - os: windows store: steam @@ -379855,12 +380911,12 @@ Order Up VR (2019): id: 312450 Order of War: files: - /order of war/save: + "/order of war/save": tags: - save when: - os: windows - /order of war/settings: + "/order of war/settings": tags: - config when: @@ -379868,25 +380924,25 @@ Order of War: installDir: Order of War: {} launch: - /oow_final.exe: + "/oow_final.exe": - when: - store: steam - /oow_final_dx9.exe: + "/oow_final_dx9.exe": - when: - store: steam - /oow_report.exe: + "/oow_report.exe": - when: - store: steam steam: id: 34600 -'Order of War: Challenge': +"Order of War: Challenge": files: - /ORDER OF WAR - CHALLENGE/save: + "/ORDER OF WAR - CHALLENGE/save": tags: - save when: - os: windows - /ORDER OF WAR - CHALLENGE/settings: + "/ORDER OF WAR - CHALLENGE/settings": tags: - config when: @@ -379894,10 +380950,10 @@ Order of War: installDir: Order of War - Challenge: {} launch: - /oow_final.exe: + "/oow_final.exe": - when: - store: steam - /oow_report.exe: + "/oow_report.exe": - when: - store: steam steam: @@ -379905,19 +380961,19 @@ Order of War: Order of the Assassin: steam: id: 851690 -'Order of the Thorne: The King''s Challenge': +"Order of the Thorne: The King's Challenge": files: - /acsetup.cfg: + "/acsetup.cfg": tags: - config when: - os: windows - /Saved Games/Order of the Thorne - The King's Challenge: + "/Saved Games/Order of the Thorne - The King's Challenge": tags: - save when: - os: windows - /Order of the Thorne - The King's Challenge: + "/Order of the Thorne - The King's Challenge": tags: - save when: @@ -379925,33 +380981,33 @@ Order of the Assassin: gog: id: 1444830704 installDir: - The Order of the Thorne - The King's Challenge: {} + "The Order of the Thorne - The King's Challenge": {} launch: - /OOTT-TKC.exe: + "/OOTT-TKC.exe": - when: - os: windows store: steam - /OotTTKC.bin.x86: + "/OotTTKC.bin.x86": - when: - bit: 32 os: linux store: steam - /OotTTKC.bin.x86_64: + "/OotTTKC.bin.x86_64": - when: - bit: 64 os: linux store: steam - /tkc-manual.pdf: + "/tkc-manual.pdf": - when: - os: windows store: steam - /winsetup.exe: + "/winsetup.exe": - when: - os: windows store: steam steam: id: 425600 -'Order: VR': +"Order: VR": installDir: Order:VR: {} steam: @@ -379960,8 +381016,8 @@ Orders of the Ruler: installDir: Orders Of The Ruler: {} launch: - /OOTREA.exe: - - arguments: '-windowed' + "/OOTREA.exe": + - arguments: "-windowed" when: - os: windows store: steam @@ -379971,7 +381027,7 @@ OrdinaryFamily: installDir: OrdinaryFamily: {} launch: - /OrdinaryFamily.exe: + "/OrdinaryFamily.exe": - when: - os: windows store: steam @@ -379981,17 +381037,17 @@ Ordinem: installDir: Ordinem: {} launch: - /Ordinem.exe: + "/Ordinem.exe": - when: - os: windows store: steam steam: id: 997900 -'Ordo Et Chao: New World': +"Ordo Et Chao: New World": installDir: Ordo Et Chao: {} launch: - /Ordo Et Chao.exe: + "/Ordo Et Chao.exe": - when: - bit: 64 os: windows @@ -380002,7 +381058,7 @@ Ore: installDir: ORE: {} launch: - /Terra4m.exe: + "/Terra4m.exe": - when: - os: windows store: steam @@ -380012,15 +381068,15 @@ OreLight: installDir: OreLight: {} launch: - /OreLight.app: + "/OreLight.app": - when: - os: mac store: steam - /OreLight.exe: + "/OreLight.exe": - when: - os: windows store: steam - /OreLight.x86: + "/OreLight.x86": - when: - os: linux store: steam @@ -380034,15 +381090,15 @@ Organ Quarter: Organ Quarter VR: {} steam: id: 605830 -'Organ Trail: Director''s Cut': +"Organ Trail: Director's Cut": files: - /.config/unity3d/TheMenWhoWearManyHats/Organ Trail: + "/.config/unity3d/TheMenWhoWearManyHats/Organ Trail": tags: - config - save when: - os: linux - /userdata//233740/remote/organtrailcloud.txt: + "/userdata//233740/remote/organtrailcloud.txt": tags: - config - save @@ -380052,15 +381108,15 @@ Organ Quarter: installDir: OrganTrailDC: {} launch: - /OrganTrail.exe: + "/OrganTrail.exe": - when: - os: windows store: steam - /OrganTrailLinux: + "/OrganTrailLinux": - when: - os: linux store: steam - /OrganTrailOSX.sh: + "/OrganTrailOSX.sh": - when: - os: mac store: steam @@ -380070,7 +381126,7 @@ Organic Panic: installDir: OrganicPanic: {} launch: - /organicpanic.exe: + "/organicpanic.exe": - when: - os: windows store: steam @@ -380083,7 +381139,7 @@ Organosphere: installDir: Organosphere: {} launch: - /Organosphere.exe: + "/Organosphere.exe": - when: - os: windows store: steam @@ -380091,7 +381147,7 @@ Organosphere: id: 811620 Ori and the Blind Forest: files: - /Ori and the Blind Forest: + "/Ori and the Blind Forest": tags: - config - save @@ -380100,27 +381156,27 @@ Ori and the Blind Forest: installDir: Ori: {} launch: - /Ori.exe: + "/Ori.exe": - when: - os: windows store: steam steam: id: 261570 -'Ori and the Blind Forest: Definitive Edition': +"Ori and the Blind Forest: Definitive Edition": files: - /Ori and the Blind Forest DE: + "/Ori and the Blind Forest DE": tags: - config - save when: - os: windows - /Packages/Microsoft.OriandtheBlindForestDefinitiveEdition_8wekyb3d8bbwe/Settings: + "/Packages/Microsoft.OriandtheBlindForestDefinitiveEdition_8wekyb3d8bbwe/Settings": tags: - config when: - os: windows store: microsoft - /Packages/Microsoft.OriandtheBlindForestDefinitiveEdition_8wekyb3d8bbwe/SystemAppData/wgs: + "/Packages/Microsoft.OriandtheBlindForestDefinitiveEdition_8wekyb3d8bbwe/SystemAppData/wgs": tags: - save when: @@ -380131,31 +381187,31 @@ Ori and the Blind Forest: installDir: Ori DE: {} launch: - /OriDE.exe: + "/OriDE.exe": - when: - os: windows store: steam registry: - 'HKEY_CURRENT_USER/Software/Microsoft Studios/Ori And The Blind Forest: Definitive Edition': + "HKEY_CURRENT_USER/Software/Microsoft Studios/Ori And The Blind Forest: Definitive Edition": tags: - config steam: id: 387290 Ori and the Will of the Wisps: files: - /Ori and the Will of The Wisps: + "/Ori and the Will of The Wisps": tags: - config - save when: - os: windows - /Packages/Microsoft.Patagonia_8wekyb3d8bbwe/LocalCache/Local/Ori and the Will of The Wisps: + "/Packages/Microsoft.Patagonia_8wekyb3d8bbwe/LocalCache/Local/Ori and the Will of The Wisps": tags: - config when: - os: windows store: microsoft - /Packages/Microsoft.Patagonia_8wekyb3d8bbwe/SystemAppData/wgs/: + "/Packages/Microsoft.Patagonia_8wekyb3d8bbwe/SystemAppData/wgs/": tags: - save when: @@ -380164,14 +381220,14 @@ Ori and the Will of the Wisps: installDir: Ori and the Will of the Wisps: {} launch: - /oriwotw.exe: + "/oriwotw.exe": - when: - store: steam steam: id: 1057090 Oriental Empires: files: - /My Games/Oriental Empires/Saved Games: + "/My Games/Oriental Empires/Saved Games": tags: - save when: @@ -380181,7 +381237,7 @@ Oriental Empires: installDir: Oriental Empires: {} launch: - /Oriental Empires.exe: + "/Oriental Empires.exe": - when: - os: windows store: steam @@ -380191,11 +381247,11 @@ Origami Flight: installDir: Origami Flight: {} launch: - /OrigamiFlight.exe: + "/OrigamiFlight.exe": - when: - os: windows store: steam - /origamiflight.x86_64: + "/origamiflight.x86_64": - when: - bit: 64 os: linux @@ -380209,7 +381265,7 @@ Origin Space: installDir: OriginSpace: {} launch: - /OriginSpace.exe: + "/OriginSpace.exe": - when: - os: windows store: steam @@ -380219,7 +381275,7 @@ Origin of Decay: installDir: Origin of Decay: {} launch: - /Origin_of_Decay.exe: + "/Origin_of_Decay.exe": - when: - bit: 64 os: windows @@ -380230,7 +381286,7 @@ Origin of Destiny: installDir: Origin Of Destiny: {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: @@ -380239,22 +381295,22 @@ Original Journey: installDir: Original Journey: {} launch: - /Original.app: + "/Original.app": - when: - os: mac store: steam - /Original.exe: + "/Original.exe": - when: - os: windows store: steam steam: id: 639470 -'Original Walker: Prologue': +"Original Walker: Prologue": steam: id: 1167130 Original War: files: - /UserProfiles: + "/UserProfiles": tags: - save when: @@ -380264,18 +381320,18 @@ Original War: installDir: Original War: {} launch: - /Owar.EXE: + "/Owar.EXE": - when: - store: steam - /owar.exe: - - arguments: '-launch' + "/owar.exe": + - arguments: "-launch" when: - store: steam steam: id: 235320 Orion: files: - /Orion/Saved/Config: + "/Orion/Saved/Config": tags: - config when: @@ -380283,8 +381339,11 @@ Orion: installDir: Guardians of Orion: {} launch: - /Orion.exe: + "/Orion.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam @@ -380294,7 +381353,7 @@ Orion (2018): installDir: ORION: {} launch: - /ORION.exe: + "/ORION.exe": - when: - os: windows store: steam @@ -380302,17 +381361,17 @@ Orion (2018): id: 811190 Orion Burger: files: - /BURG0**.SAV: + "/BURG0**.SAV": tags: - save when: - os: dos - /BURGER.CFG: + "/BURGER.CFG": tags: - config when: - os: dos - /SAVES.DIR: + "/SAVES.DIR": tags: - save when: @@ -380321,7 +381380,7 @@ Orion Sandbox Enhanced: installDir: Orion Sandbox Enhanced: {} launch: - /Orion Sandbox Enhanced.exe: + "/Orion Sandbox Enhanced.exe": - when: - os: windows store: steam @@ -380331,20 +381390,20 @@ Orion Trail: installDir: Orion Trail: {} launch: - /Orion Trail.app: + "/Orion Trail.app": - when: - os: mac store: steam - /Orion Trail.exe: + "/Orion Trail.exe": - when: - os: windows store: steam - /Orion Trail.x86: + "/Orion Trail.x86": - when: - bit: 32 os: linux store: steam - /Orion Trail.x86_64: + "/Orion Trail.x86_64": - when: - bit: 64 os: linux @@ -380356,29 +381415,29 @@ Orion13: Orion13: {} steam: id: 1128210 -'Orion: A Sci-Fi Visual Novel': +"Orion: A Sci-Fi Visual Novel": installDir: Orion A Sci-Fi Visual Novel: {} launch: - /Orion.app/Contents/MacOS/Orion: + "/Orion.app/Contents/MacOS/Orion": - when: - os: mac store: steam - /Orion.exe: + "/Orion.exe": - when: - os: windows store: steam - /Orion.sh: + "/Orion.sh": - when: - os: linux store: steam steam: id: 381010 -'Orion: Prelude': +"Orion: Prelude": installDir: Orion Dino Beatdown: {} launch: - /Binaries/Win32/DinoHordeGame.exe: + "/Binaries/Win32/DinoHordeGame.exe": - when: - store: steam steam: @@ -380387,7 +381446,7 @@ Orix!: installDir: ORIX!: {} launch: - /ORIX.exe: + "/ORIX.exe": - when: - os: windows store: steam @@ -380397,17 +381456,17 @@ Oriza: installDir: Oriza: {} launch: - /Oriza Windows 32 Bit/Oriza.exe: + "/Oriza Windows 32 Bit/Oriza.exe": - when: - bit: 32 os: windows store: steam - /Oriza Windows 64 Bit/Oriza.exe: + "/Oriza Windows 64 Bit/Oriza.exe": - when: - bit: 64 os: windows store: steam - /Oriza.app: + "/Oriza.app": - when: - os: mac store: steam @@ -380417,7 +381476,7 @@ Orn the tiny forest sprite: installDir: Orn the tiny forest sprite: {} launch: - /Orn_Final_version.exe: + "/Orn_Final_version.exe": - when: - bit: 64 os: windows @@ -380428,7 +381487,7 @@ Orogenesis: installDir: Orogenesis: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -380440,15 +381499,15 @@ Orphan: installDir: Orphan: {} launch: - /Orphan: + "/Orphan": - when: - os: linux store: steam - /Orphan.app: + "/Orphan.app": - when: - os: mac store: steam - /Orphan.exe: + "/Orphan.exe": - when: - os: windows store: steam @@ -380462,11 +381521,11 @@ Orphan of the Petal: Orphan of the Petal: {} steam: id: 975050 -Orphan's Treasure: +"Orphan's Treasure": installDir: - Orphan's Treasure: {} + "Orphan's Treasure": {} launch: - /Orphan.exe: + "/Orphan.exe": - when: - os: windows store: steam @@ -380475,11 +381534,11 @@ Orphan's Treasure: Orpheus: steam: id: 959960 -Orpheus's Dream: +"Orpheus's Dream": installDir: - Orpheus's Dream: {} + "Orpheus's Dream": {} launch: - /Orpheus's Dream.exe: + "/Orpheus's Dream.exe": - when: - os: windows store: steam @@ -380489,7 +381548,7 @@ Ortharion project: installDir: Ortharion project: {} launch: - /Ortharion Project.exe: + "/Ortharion Project.exe": - when: - os: windows store: steam @@ -380499,11 +381558,11 @@ Ortus Arena: installDir: Ortus Arena: {} launch: - /OrtusArena.app: + "/OrtusArena.app": - when: - os: mac store: steam - /OrtusArena.exe: + "/OrtusArena.exe": - when: - os: windows store: steam @@ -380513,22 +381572,22 @@ Ortus Regni: installDir: Ortus Regni: {} launch: - /OrtusRegni.app: + "/OrtusRegni.app": - when: - os: mac store: steam - /OrtusRegni.exe: + "/OrtusRegni.exe": - when: - os: windows store: steam - /OrtusRegni.x86: - - arguments: '-force-opengl' + "/OrtusRegni.x86": + - arguments: "-force-opengl" when: - bit: 32 os: linux store: steam - /OrtusRegni.x86_64: - - arguments: '-force-opengl' + "/OrtusRegni.x86_64": + - arguments: "-force-opengl" when: - bit: 64 os: linux @@ -380537,22 +381596,22 @@ Ortus Regni: id: 472060 Orwell: files: - /My Games/Orwell/profile*.osg: + "/My Games/Orwell/profile*.osg": tags: - save when: - os: linux - /userdata//491950/remote/profile*.osg: + "/userdata//491950/remote/profile*.osg": tags: - save when: - store: steam - /My Games/Orwell/profile*.osg: + "/My Games/Orwell/profile*.osg": tags: - save when: - os: windows - /unity3d/OsmoticStudios/Orwell/prefs: + "/unity3d/OsmoticStudios/Orwell/prefs": tags: - config when: @@ -380562,27 +381621,27 @@ Orwell: id: gogExtra: - 1150654907 - - 1973571824 - 1467585086 + - 1973571824 steamExtra: - 543080 - 548850 installDir: Orwell: {} launch: - /Orwell.app: + "/Orwell.app": - when: - os: mac store: steam - /Orwell.exe: + "/Orwell.exe": - when: - os: windows store: steam - - arguments: '-force-glcore' + - arguments: "-force-glcore" when: - os: windows store: steam - /Orwell.x86_64: + "/Orwell.x86_64": - when: - os: linux store: steam @@ -380592,26 +381651,26 @@ Orwell: - config steam: id: 491950 -Orwell's Animal Farm: +"Orwell's Animal Farm": gog: id: 2133998459 installDir: AnimalFarm: {} launch: - /Animal Farm.exe: + "/Animal Farm.exe": - when: - bit: 64 os: windows store: steam - /AnimalFarmMac.app/Contents/MacOS/Animal Farm: + "/AnimalFarmMac.app/Contents/MacOS/Animal Farm": - when: - os: mac store: steam steam: id: 1398100 -'Orwell: Ignorance is Strength': +"Orwell: Ignorance is Strength": files: - /My Games/Orwell/profile*.isg: + "/My Games/Orwell/profile*.isg": tags: - save when: @@ -380621,19 +381680,19 @@ Orwell's Animal Farm: installDir: Orwell Ignorance is Strength: {} launch: - /Ignorance.app: + "/Ignorance.app": - when: - os: mac store: steam - /Ignorance.exe: + "/Ignorance.exe": - when: - os: windows store: steam - - arguments: '-force-clamped' + - arguments: "-force-clamped" when: - os: windows store: steam - /Ignorance.x86_64: + "/Ignorance.x86_64": - when: - os: linux store: steam @@ -380648,41 +381707,41 @@ Oscar Mike VR: OscarMikeVR: {} steam: id: 547250 -'Oscillatron: Alien Frequency': +"Oscillatron: Alien Frequency": installDir: Oscillatron Alien Frequency: {} launch: - /Oscillatron Alien Frequency.app/Contents/MacOS/Oscillatron Alien Frequency: + "/Oscillatron Alien Frequency.app/Contents/MacOS/Oscillatron Alien Frequency": - when: - os: mac store: steam - /Oscillatron Alien Frequency.exe: + "/Oscillatron Alien Frequency.exe": - when: - os: windows store: steam steam: id: 823730 -'Oscura: Lost Light': +"Oscura: Lost Light": installDir: Oscura Lost Light: {} launch: - /Oscura Lost Light.app: + "/Oscura Lost Light.app": - when: - os: mac store: steam - /Oscura Lost Light.exe: + "/Oscura Lost Light.exe": - when: - os: windows store: steam - /Oscura Lost Light.x86: + "/Oscura Lost Light.x86": - when: - os: linux store: steam steam: id: 320520 -'Osiris: New Dawn': +"Osiris: New Dawn": files: - /AppData/LocalLow/Fenix Fire Entertainment/OsirisNewDawn/SaveData: + "/AppData/LocalLow/Fenix Fire Entertainment/OsirisNewDawn/SaveData": tags: - save when: @@ -380690,7 +381749,7 @@ Oscar Mike VR: installDir: Osiris: {} launch: - /OsirisNewDawn.exe: + "/OsirisNewDawn.exe": - when: - bit: 64 os: windows @@ -380701,11 +381760,11 @@ Osmorrow: installDir: Osmorrow: {} launch: - /Osmorrow.exe: + "/Osmorrow.exe": - when: - os: windows store: steam - /runner: + "/runner": - when: - os: linux store: steam @@ -380713,27 +381772,27 @@ Osmorrow: id: 758220 Osmos: files: - /.Osmos: + "/.Osmos": tags: - save when: - os: linux - /.Osmos/Config.cfg: + "/.Osmos/Config.cfg": tags: - config when: - os: linux - /Library/Application Support/Osmos: + "/Library/Application Support/Osmos": tags: - save when: - os: mac - /Osmos: + "/Osmos": tags: - save when: - os: windows - /Osmos/Config.cfg: + "/Osmos/Config.cfg": tags: - config when: @@ -380741,15 +381800,15 @@ Osmos: installDir: Osmos: {} launch: - /Osmos: + "/Osmos": - when: - os: linux store: steam - /Osmos.app: + "/Osmos.app": - when: - os: mac store: steam - /Osmos.exe: + "/Osmos.exe": - when: - os: windows store: steam @@ -380760,7 +381819,7 @@ Osozaki 遅咲き Late Blooming - First: id: 471260 Ossuary: files: - /Ossuary: + "/Ossuary": tags: - save when: @@ -380768,35 +381827,38 @@ Ossuary: installDir: Ossuary: {} launch: - /Ossuary.exe: + "/Ossuary.exe": - when: - os: windows store: steam - /OssuarySetup.app: + "/OssuarySetup.app": - when: - os: mac store: steam steam: id: 363500 -'Ostalgie: The Berlin Wall': +"Ostalgie: The Berlin Wall": installDir: Ostalgie The Berlin Wall: {} launch: - /Ostalgie.app: + "/Ostalgie.app": - when: - os: mac store: steam - /Ostalgie.exe: + "/Ostalgie.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam - /Ostalgie.x86: + "/Ostalgie.x86": - when: - bit: 32 os: linux store: steam - /Ostalgie.x86_64: + "/Ostalgie.x86_64": - when: - bit: 64 os: linux @@ -380807,7 +381869,7 @@ Osternfield: installDir: Osternfield: {} launch: - /Osternfield.exe: + "/Osternfield.exe": - when: - bit: 64 os: windows @@ -380818,15 +381880,15 @@ Osteya: installDir: Osteya: {} launch: - /osteya: + "/osteya": - when: - os: linux store: steam - /osteya.app: + "/osteya.app": - when: - os: mac store: steam - /osteya.exe: + "/osteya.exe": - when: - os: windows store: steam @@ -380834,7 +381896,7 @@ Osteya: id: 402980 Ostranauts: files: - /AppData/LocalLow/Blue Bottle Games/Ostranauts: + "/AppData/LocalLow/Blue Bottle Games/Ostranauts": tags: - config - save @@ -380843,7 +381905,7 @@ Ostranauts: installDir: Ostranauts: {} launch: - /Ostranauts.exe: + "/Ostranauts.exe": - when: - os: windows store: steam @@ -380853,20 +381915,20 @@ Ostrich Island: installDir: Ostrich Island: {} launch: - /OstrichIsland.app: + "/OstrichIsland.app": - when: - os: mac store: steam - /OstrichIsland.exe: + "/OstrichIsland.exe": - when: - os: windows store: steam - /OstrichIsland.x86: + "/OstrichIsland.x86": - when: - bit: 32 os: linux store: steam - /OstrichIsland.x86_64: + "/OstrichIsland.x86_64": - when: - bit: 64 os: linux @@ -380875,7 +381937,7 @@ Ostrich Island: id: 337270 Ostrich Runner: files: - /Data/Saves: + "/Data/Saves": tags: - save when: @@ -380883,7 +381945,7 @@ Ostrich Runner: installDir: Ostrich Runner: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -380895,7 +381957,7 @@ Ostriv: installDir: Ostriv: {} launch: - /ostriv.exe: + "/ostriv.exe": - when: - os: windows store: steam @@ -380905,11 +381967,11 @@ Ostrofa: installDir: Ostrofa: {} launch: - /Ostrofa.exe: + "/Ostrofa.exe": - when: - os: windows store: steam - /ostrofa.app/Contents/MacOS/ostrofa: + "/ostrofa.app/Contents/MacOS/ostrofa": - when: - os: mac store: steam @@ -380917,21 +381979,21 @@ Ostrofa: id: 1097300 Osu!: files: - /osu!..cfg: + "/osu!..cfg": tags: - config when: - os: windows - /scores.db: + "/scores.db": tags: - save when: - os: windows -Oswald's Adventure: +"Oswald's Adventure": installDir: - Oswald's Adventure: {} + "Oswald's Adventure": {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -380941,20 +382003,20 @@ Osy Osmosis: installDir: Osy Osmosis: {} launch: - /Osy Osmosis.app: + "/Osy Osmosis.app": - when: - os: mac store: steam - /Osy Osmosis.exe: + "/Osy Osmosis.exe": - when: - os: windows store: steam - /Osy Osmosis.x86: + "/Osy Osmosis.x86": - when: - bit: 32 os: linux store: steam - /Osy Osmosis.x86_64: + "/Osy Osmosis.x86_64": - when: - bit: 64 os: linux @@ -380964,64 +382026,64 @@ Osy Osmosis: Otaku Puzzle: steam: id: 1102990 -Otaku's Adventure: +"Otaku's Adventure": files: - /Spacelight/Otaku's Adventure: + "/Spacelight/Otaku's Adventure": tags: - save when: - os: windows installDir: - Otaku's Adventure: {} + "Otaku's Adventure": {} launch: - /gal.app/Contents/MacOS/gal: + "/gal.app/Contents/MacOS/gal": - when: - os: mac store: steam - /play.exe: + "/play.exe": - when: - os: windows store: steam registry: - HKEY_CURRENT_USER/Software/Spacelight Studio/Otaku's Adventure: + "HKEY_CURRENT_USER/Software/Spacelight Studio/Otaku's Adventure": tags: - config steam: id: 937170 -Otaku's Challenge: +"Otaku's Challenge": steam: id: 1148900 -Otaku's Fantasy: +"Otaku's Fantasy": files: - /AppData/LocalLow/DefaultCompany/Otaku's Fantasy/Utage/SaveMyProject: + "/AppData/LocalLow/DefaultCompany/Otaku's Fantasy/Utage/SaveMyProject": tags: - save when: - os: windows installDir: - Otaku's Fantasy: {} + "Otaku's Fantasy": {} launch: - /Otaku's Fantasy.exe: + "/Otaku's Fantasy.exe": - when: - os: windows store: steam steam: id: 712050 -Otaku's Fantasy 2: +"Otaku's Fantasy 2": installDir: - Otaku's Fantasy 2: {} + "Otaku's Fantasy 2": {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam steam: id: 788130 -Otem's Defiance: +"Otem's Defiance": installDir: Otems_Defiance: {} launch: - /otems_defiance.exe: + "/otems_defiance.exe": - when: - os: windows store: steam @@ -381031,15 +382093,15 @@ Othello: installDir: Reversi: {} launch: - /Reversi: + "/Reversi": - when: - os: linux store: steam - /Reversi.app: + "/Reversi.app": - when: - os: mac store: steam - /Reversi.exe: + "/Reversi.exe": - when: - os: windows store: steam @@ -381049,7 +382111,7 @@ Othello 2018: installDir: Othello 2018: {} launch: - /Othello 2018.exe: + "/Othello 2018.exe": - when: - os: windows store: steam @@ -381059,7 +382121,7 @@ Other Submarine: installDir: Other Submarine: {} launch: - /OtherSubmarine.exe: + "/OtherSubmarine.exe": - when: - bit: 64 os: windows @@ -381073,14 +382135,14 @@ Other Worlds India: installDir: Other worlds India: {} launch: - /test32.exe: + "/test32.exe": - when: - store: steam steam: id: 576050 Othercide: files: - /_saves_: + "/_saves_": tags: - save when: @@ -381090,7 +382152,7 @@ Othercide: installDir: Othercide: {} launch: - /Othercide.exe: + "/Othercide.exe": - when: - os: windows store: steam @@ -381104,46 +382166,46 @@ Otherland: installDir: Otherland: {} launch: - /UnrealEngine3/Binaries/Win32/Otherland-Shipping.exe: + "/UnrealEngine3/Binaries/Win32/Otherland-Shipping.exe": - when: - os: windows store: steam - workingDir: /UnrealEngine3/Binaries/Win32 + workingDir: "/UnrealEngine3/Binaries/Win32" steam: id: 376310 -'Otherworld: Omens of Summer': +"Otherworld: Omens of Summer": installDir: - Otherworld Omens of Summer Collector's Edition: {} + "Otherworld Omens of Summer Collector's Edition": {} launch: - /Otherworld_OmensOfSummer_CE.exe: + "/Otherworld_OmensOfSummer_CE.exe": - when: - store: steam steam: id: 586700 -'Otherworld: Shades of Fall': +"Otherworld: Shades of Fall": installDir: - Otherworld Shades of Fall Collector's Edition: {} + "Otherworld Shades of Fall Collector's Edition": {} launch: - /Otherworld_ShadesofFallCE.exe: + "/Otherworld_ShadesofFallCE.exe": - when: - os: windows store: steam steam: id: 696010 -'Otherworld: Spring of Shadows': +"Otherworld: Spring of Shadows": installDir: - Otherworld Spring of Shadows Collector's Edition: {} + "Otherworld Spring of Shadows Collector's Edition": {} launch: - /Otherworld_SpringofShadowsCE.exe: + "/Otherworld_SpringofShadowsCE.exe": - when: - store: steam steam: id: 466030 -Otiiz's adventure 2: +"Otiiz's adventure 2": installDir: - Otiiz's adventure 2: {} + "Otiiz's adventure 2": {} launch: - /OtiizAdventure2.exe: + "/OtiizAdventure2.exe": - when: - os: windows store: steam @@ -381153,7 +382215,7 @@ Otokomizu~漢水~: installDir: Otokomizu: {} launch: - /OM.exe: + "/OM.exe": - when: - os: windows store: steam @@ -381163,11 +382225,11 @@ Otome Romance Jigsaws - Midnight Cinderella & Destined to Love: installDir: Otome Romance Jigsaws - Midnight Cinderella & Destined to Love: {} launch: - /Otome Romance Jigsaws.app: + "/Otome Romance Jigsaws.app": - when: - os: mac store: steam - /Otome Romance Jigsaws.exe: + "/Otome Romance Jigsaws.exe": - when: - os: windows store: steam @@ -381177,7 +382239,7 @@ Otome the Exorcist: installDir: Otome the Exorcist: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: @@ -381186,7 +382248,7 @@ Otter Space Rescue: installDir: Otter Space Rescue: {} launch: - /Otter Space Rescue.exe: + "/Otter Space Rescue.exe": - when: - os: windows store: steam @@ -381196,7 +382258,7 @@ Otter of My Life: installDir: Otter of My Life: {} launch: - /OOML/OOML.exe: + "/OOML/OOML.exe": - when: - os: windows store: steam @@ -381206,11 +382268,11 @@ OtterBash: installDir: OtterBash: {} launch: - /OtterBash.app/Contents/MacOS/OtterBash: + "/OtterBash.app/Contents/MacOS/OtterBash": - when: - os: mac store: steam - /OtterBash.exe: + "/OtterBash.exe": - when: - bit: 32 os: windows @@ -381224,29 +382286,29 @@ Otto the Odd Ostrich: installDir: Otto the Odd Ostrich: {} launch: - /Otto The Odd Ostrich.app: + "/Otto The Odd Ostrich.app": - when: - os: mac store: steam - /Otto The Odd Ostrich.exe: + "/Otto The Odd Ostrich.exe": - when: - os: windows store: steam steam: id: 670210 -'Ottoman Empire: Spectacular Millennium': +"Ottoman Empire: Spectacular Millennium": installDir: OESM: {} launch: - /OESM.exe: + "/OESM.exe": - when: - os: windows store: steam - /OESMCS.exe: + "/OESMCS.exe": - when: - os: windows store: steam - /OESM_TPS.exe: + "/OESM_TPS.exe": - when: - os: windows store: steam @@ -381262,7 +382324,7 @@ Our Children - Escaping Earth: installDir: Our Children - Escaping Earth: {} launch: - /Our Children.exe: + "/Our Children.exe": - when: - os: windows store: steam @@ -381270,7 +382332,7 @@ Our Children - Escaping Earth: id: 1028680 Our Darker Purpose: files: - /OurDarkerPurpose: + "/OurDarkerPurpose": tags: - save when: @@ -381278,7 +382340,7 @@ Our Darker Purpose: installDir: ODP: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -381288,7 +382350,7 @@ Our Darkest Night: installDir: Our Darkest Night: {} launch: - /Our Darkest Night/OurDarkestNight.exe: + "/Our Darkest Night/OurDarkestNight.exe": - when: - os: windows store: steam @@ -381301,11 +382363,11 @@ Our End of the World: installDir: Our End of the World: {} launch: - /Teow.app/Contents/MacOS/Teow: + "/Teow.app/Contents/MacOS/Teow": - when: - os: mac store: steam - /package/teow.exe: + "/package/teow.exe": - when: - os: windows store: steam @@ -381318,15 +382380,15 @@ Our Hero! Hyper Sword: installDir: Our Hero! First: {} launch: - /Our Hero! First/Game.exe: + "/Our Hero! First/Game.exe": - when: - os: windows store: steam steam: id: 847560 -'Our Life: Beginnings & Always': +"Our Life: Beginnings & Always": files: - /RenPy/OurLife-1506526796: + "/RenPy/OurLife-1506526796": tags: - save when: @@ -381336,11 +382398,11 @@ Our Hero! Hyper Sword: installDir: Our Life Beginnings And Always: {} launch: - /OurLife.exe: + "/OurLife.exe": - when: - os: windows store: steam - /OurLife.sh: + "/OurLife.sh": - when: - os: linux store: steam @@ -381350,7 +382412,7 @@ Our Love Will Grow: installDir: Our Love Will Grow: {} launch: - /Our Love Will Grow.exe: + "/Our Love Will Grow.exe": - when: - os: windows store: steam @@ -381360,25 +382422,25 @@ Our Lovely Escape: installDir: Our Lovely Escape: {} launch: - /OLE.app: + "/OLE.app": - when: - os: mac store: steam - /OLE.exe: + "/OLE.exe": - when: - os: windows store: steam - /OLE.sh: + "/OLE.sh": - when: - os: linux store: steam steam: id: 970400 -Our Nation's Miner: +"Our Nation's Miner": installDir: - Our Nation's Miner: {} + "Our Nation's Miner": {} launch: - /Our Nation's Miner.exe: + "/Our Nation's Miner.exe": - when: - os: windows store: steam @@ -381388,7 +382450,7 @@ Our Secret Below: installDir: OurSecretBelow(Release): {} launch: - /OurSecretBelow.exe: + "/OurSecretBelow.exe": - when: - os: windows store: steam @@ -381398,11 +382460,11 @@ Our Wonderful World: installDir: Our Wonderful World: {} launch: - /OurWonderfulWorld.exe: + "/OurWonderfulWorld.exe": - when: - os: windows store: steam - /run.sh: + "/run.sh": - when: - os: linux store: steam @@ -381410,12 +382472,12 @@ Our Wonderful World: id: 562600 Our Wonderland: files: - /game/saves: + "/game/saves": tags: - save when: - os: windows - /RenPy/OurWonderland-1546686177: + "/RenPy/OurWonderland-1546686177": tags: - save when: @@ -381424,7 +382486,7 @@ Our World Is Ended: installDir: Our World Is Ended: {} launch: - /OurWorldIsEnded.exe: + "/OurWorldIsEnded.exe": - when: - bit: 64 os: windows @@ -381435,7 +382497,7 @@ Our Worst Fears: installDir: Our Worst Fears: {} launch: - /OurWorstFears.exe: + "/OurWorstFears.exe": - when: - store: steam steam: @@ -381444,19 +382506,19 @@ Our world has not decayed: installDir: Our_world_has_not_decayed: {} launch: - /Our_world_has_not_decayed.exe: + "/Our_world_has_not_decayed.exe": - when: - store: steam steam: id: 1116210 Oure: files: - /Oure/Saved/Config/WindowsNoEditor: + "/Oure/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /Oure/Saved/SaveGames: + "/Oure/Saved/SaveGames": tags: - save when: @@ -381464,7 +382526,7 @@ Oure: installDir: Oure: {} launch: - /Oure.exe: + "/Oure.exe": - when: - bit: 64 os: windows @@ -381473,17 +382535,17 @@ Oure: id: 694950 Ouroboros: files: - /save/config.rpgsave: + "/save/config.rpgsave": tags: - config when: - os: windows - /save/file*.rpgsave: + "/save/file*.rpgsave": tags: - save when: - os: windows - /save/global.rpgsave: + "/save/global.rpgsave": tags: - save when: @@ -381491,17 +382553,17 @@ Ouroboros: installDir: Ouroboros: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam steam: id: 822830 -'Ouroboros: Prelude': +"Ouroboros: Prelude": installDir: Ouroboros Prelude: {} launch: - /Ouroboros Prelude.exe: + "/Ouroboros Prelude.exe": - when: - os: windows store: steam @@ -381509,13 +382571,13 @@ Ouroboros: id: 593730 Out There Somewhere: files: - /userdata//263980/remote: + "/userdata//263980/remote": tags: - config - save when: - store: steam - /ots/Local Store: + "/ots/Local Store": tags: - config when: @@ -381523,31 +382585,31 @@ Out There Somewhere: installDir: outtheresomewhere: {} launch: - /ots.app: + "/ots.app": - when: - os: mac store: steam - /ots.exe: + "/ots.exe": - when: - os: windows store: steam steam: id: 263980 -'Out There: Oceans of Time': +"Out There: Oceans of Time": gog: id: 2031646835 installDir: Out There Oceans of Time: {} launch: - /Out There - Oceans of Time.exe: + "/Out There - Oceans of Time.exe": - when: - os: windows store: steam steam: id: 1145290 -'Out There: Ω Edition': +"Out There: Ω Edition": files: - /MiClos Studio/OutThereOmegaEdition/outthereomega.sav: + "/MiClos Studio/OutThereOmegaEdition/outthereomega.sav": tags: - save when: @@ -381557,15 +382619,15 @@ Out There Somewhere: installDir: OutThereOmega: {} launch: - /OutThereOmega.app: + "/OutThereOmega.app": - when: - os: mac store: steam - /OutThereOmega.x86_64: + "/OutThereOmega.x86_64": - when: - os: linux store: steam - /outthereomega.exe: + "/outthereomega.exe": - when: - os: windows store: steam @@ -381577,16 +382639,16 @@ Out Zone: installDir: Outzone: {} launch: - /OutZone.app: + "/OutZone.app": - when: - os: mac store: steam - /OutZone.exe: + "/OutZone.exe": - when: - bit: 64 os: windows store: steam - /OutZone.x64: + "/OutZone.x64": - when: - os: linux store: steam @@ -381600,7 +382662,7 @@ Out of Ammo: Out of Ammo: {} steam: id: 451840 -'Out of Ammo: Death Drive': +"Out of Ammo: Death Drive": installDir: Out of Ammo Death Drive: {} steam: @@ -381610,7 +382672,7 @@ Out of Coverage: id: 1049740 Out of Line: files: - /AppData/LocalLow/Nerd Monkeys/Out of Line: + "/AppData/LocalLow/Nerd Monkeys/Out of Line": tags: - save when: @@ -381620,7 +382682,7 @@ Out of Line: installDir: Out of Line: {} launch: - /Out of Line.exe: + "/Out of Line.exe": - when: - os: windows store: steam @@ -381630,32 +382692,32 @@ Out of Reach: installDir: Out of Reach: {} launch: - /OutOfReach.app: + "/OutOfReach.app": - when: - os: mac store: steam - /OutOfReach.exe: + "/OutOfReach.exe": - when: - bit: 64 os: windows store: steam - /OutOfReach.x84: + "/OutOfReach.x84": - when: - bit: 32 os: linux store: steam - /OutOfReach.x86_64: + "/OutOfReach.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 327090 -'Out of Reach: Treasure Royale': +"Out of Reach: Treasure Royale": installDir: Treasure Royale: {} launch: - /TreasureRoyale.exe: + "/TreasureRoyale.exe": - when: - bit: 64 os: windows @@ -381666,7 +382728,7 @@ Out of Smoke: installDir: Heart of Smoke: {} launch: - /nw.exe: + "/nw.exe": - when: - bit: 64 os: windows @@ -381677,20 +382739,20 @@ Out of Space: installDir: Out of Space: {} launch: - /Out of Space.app: + "/Out of Space.app": - when: - os: mac store: steam - /Out of Space.exe: + "/Out of Space.exe": - when: - os: windows store: steam - /Out of Space.x86: + "/Out of Space.x86": - when: - bit: 32 os: linux store: steam - /Out of Space.x86_64: + "/Out of Space.x86_64": - when: - bit: 64 os: linux @@ -381702,7 +382764,7 @@ Out of Time: id: 1150260 Out of the Box: files: - /AppData/LocalLow/Nuclear Tales/Out of the box: + "/AppData/LocalLow/Nuclear Tales/Out of the box": tags: - save when: @@ -381710,20 +382772,20 @@ Out of the Box: installDir: Out Of The Box: {} launch: - /OOTB.app: + "/OOTB.app": - when: - os: mac store: steam - /OOTB.exe: + "/OOTB.exe": - when: - os: windows store: steam - /OOTB.x86: + "/OOTB.x86": - when: - bit: 32 os: linux store: steam - /OOTB.x86_64: + "/OOTB.x86_64": - when: - bit: 64 os: linux @@ -381738,15 +382800,15 @@ Out of the Park Baseball 14: installDir: OOTP Baseball 14: {} launch: - /OOTP Baseball 14.app: + "/OOTP Baseball 14.app": - when: - os: mac store: steam - /OOTP14.sh: + "/OOTP14.sh": - when: - os: linux store: steam - /ootp14.exe: + "/ootp14.exe": - when: - os: windows store: steam @@ -381756,15 +382818,15 @@ Out of the Park Baseball 15: installDir: OOTP Baseball 15: {} launch: - /OOTP Baseball 15.app: + "/OOTP Baseball 15.app": - when: - os: mac store: steam - /ootp15.exe: + "/ootp15.exe": - when: - os: windows store: steam - /ootp15.sh: + "/ootp15.sh": - when: - os: linux store: steam @@ -381774,15 +382836,15 @@ Out of the Park Baseball 16: installDir: Out of the Park Baseball 16: {} launch: - /OOTP Baseball 16.app: + "/OOTP Baseball 16.app": - when: - os: mac store: steam - /ootp16.exe: + "/ootp16.exe": - when: - os: windows store: steam - /ootp16.sh: + "/ootp16.sh": - when: - os: linux store: steam @@ -381792,15 +382854,15 @@ Out of the Park Baseball 17: installDir: Out of the Park Baseball 17: {} launch: - /OOTP Baseball 17.app: + "/OOTP Baseball 17.app": - when: - os: mac store: steam - /ootp17.exe: + "/ootp17.exe": - when: - os: windows store: steam - /ootp17.sh: + "/ootp17.sh": - when: - os: linux store: steam @@ -381810,15 +382872,15 @@ Out of the Park Baseball 18: installDir: Out of the Park Baseball 18: {} launch: - /OOTP Baseball 18.app: + "/OOTP Baseball 18.app": - when: - os: mac store: steam - /ootp18.exe: + "/ootp18.exe": - when: - os: windows store: steam - /ootp18.sh: + "/ootp18.sh": - when: - bit: 64 os: linux @@ -381829,15 +382891,15 @@ Out of the Park Baseball 19: installDir: Out of the Park Baseball 19: {} launch: - /OOTP Baseball 19.app: + "/OOTP Baseball 19.app": - when: - os: mac store: steam - /ootp19.exe: + "/ootp19.exe": - when: - os: windows store: steam - /ootp19.sh: + "/ootp19.sh": - when: - bit: 64 os: linux @@ -381846,7 +382908,7 @@ Out of the Park Baseball 19: id: 619290 Out of the Park Baseball 20: files: - /Out of the Park Developments/OOTP Baseball 20/config: + "/Out of the Park Developments/OOTP Baseball 20/config": tags: - config when: @@ -381854,15 +382916,15 @@ Out of the Park Baseball 20: installDir: Out of the Park Baseball 20: {} launch: - /OOTP Baseball 20.app: + "/OOTP Baseball 20.app": - when: - os: mac store: steam - /ootp20.exe: + "/ootp20.exe": - when: - os: windows store: steam - /ootp20.sh: + "/ootp20.sh": - when: - bit: 64 os: linux @@ -381873,15 +382935,15 @@ Out of the Park Baseball 21: installDir: Out of the Park Baseball 21: {} launch: - /OOTP Baseball 21.app: + "/OOTP Baseball 21.app": - when: - os: mac store: steam - /ootp21.exe: + "/ootp21.exe": - when: - os: windows store: steam - /ootp21.sh: + "/ootp21.sh": - when: - bit: 64 os: linux @@ -381892,20 +382954,20 @@ Out of the Park Baseball 22: installDir: Out of the Park Baseball 22: {} launch: - /OOTP Baseball 22.app: + "/OOTP Baseball 22.app": - when: - os: mac store: steam - /ootp22.exe: + "/ootp22.exe": - when: - bit: 32 os: windows store: steam - /ootp22.sh: + "/ootp22.sh": - when: - os: linux store: steam - /ootp22_x64.exe: + "/ootp22_x64.exe": - when: - bit: 64 os: windows @@ -381916,16 +382978,16 @@ Out of the Park Baseball 23: installDir: Out of the Park Baseball 23: {} launch: - /OOTP Baseball 23.app: + "/OOTP Baseball 23.app": - when: - os: mac store: steam - /ootp23.sh: + "/ootp23.sh": - when: - bit: 64 os: linux store: steam - /ootp23_x64.exe: + "/ootp23_x64.exe": - when: - bit: 64 os: windows @@ -381936,7 +382998,7 @@ Out of the Park Baseball 9: installDir: Out of the Park Baseball 9: {} launch: - /ootp9.exe: + "/ootp9.exe": - when: - store: steam steam: @@ -381945,17 +383007,17 @@ OutBreak Zombie: installDir: OutBreakZombie: {} launch: - /outbreak.exe: + "/outbreak.exe": - when: - os: windows store: steam steam: id: 792900 -'OutBreak: The Escape': +"OutBreak: The Escape": installDir: OutBreak The Escape: {} launch: - /OutBreak The Escape.exe: + "/OutBreak The Escape.exe": - when: - os: windows store: steam @@ -381965,7 +383027,7 @@ OutDrive: installDir: OutDrive: {} launch: - /OutDrive.exe: + "/OutDrive.exe": - when: - os: windows store: steam @@ -381980,14 +383042,14 @@ OutOfColors: OutOfColors: {} steam: id: 786840 -'OutRun 2006: Coast 2 Coast': +"OutRun 2006: Coast 2 Coast": files: - /SaveGame: + "/SaveGame": tags: - save when: - os: windows - /outrun2006.ini: + "/outrun2006.ini": tags: - config when: @@ -381995,10 +383057,10 @@ OutOfColors: installDir: Outrun2006 Coast 2 Coast: {} launch: - /Config.exe: + "/Config.exe": - when: - store: steam - /OR2006C2C.EXE: + "/OR2006C2C.EXE": - when: - store: steam steam: @@ -382010,7 +383072,7 @@ Outback Survival: installDir: Outback Survival: {} launch: - /OutbackSurvival.exe: + "/OutbackSurvival.exe": - when: - bit: 64 os: windows @@ -382021,16 +383083,16 @@ Outbreak: installDir: Outbreak: {} launch: - /Outbreak.exe: + "/Outbreak.exe": - when: - os: windows store: steam - /OutbreakLinux.x86_64: + "/OutbreakLinux.x86_64": - when: - bit: 64 os: linux store: steam - /OutbreakMac.app: + "/OutbreakMac.app": - when: - os: mac store: steam @@ -382041,81 +383103,81 @@ Outbreak in Space VR: Outbreak in Space VR: {} steam: id: 776390 -'Outbreak: Epidemic': +"Outbreak: Epidemic": id: steamExtra: - 1104420 installDir: Outbreak Epidemic: {} launch: - /Outbreak Epidemic.exe: + "/Outbreak Epidemic.exe": - when: - bit: 64 os: windows store: steam - /Outbreak EpidemicLinux.x86_64: + "/Outbreak EpidemicLinux.x86_64": - when: - bit: 64 os: linux store: steam - /Outbreak EpidemicMac.app: + "/Outbreak EpidemicMac.app": - when: - os: mac store: steam steam: id: 1082220 -'Outbreak: Lost Hope': +"Outbreak: Lost Hope": installDir: Outbreak Lost Hope: {} launch: - /Outbreak Lost Hope.exe: + "/Outbreak Lost Hope.exe": - when: - bit: 64 os: windows store: steam - /Outbreak Lost HopeLinux.x86_64: + "/Outbreak Lost HopeLinux.x86_64": - when: - bit: 64 os: linux store: steam - /Outbreak Lost HopeMac.app: + "/Outbreak Lost HopeMac.app": - when: - os: mac store: steam steam: id: 1035310 -'Outbreak: Pandemic Evolution': +"Outbreak: Pandemic Evolution": installDir: Outbreak_PE: {} launch: - /Outbreak.exe: + "/Outbreak.exe": - when: - os: windows store: steam steam: id: 444690 -'Outbreak: The New Nightmare': +"Outbreak: The New Nightmare": installDir: Outbreak The New Nightmare: {} launch: - /OB3DMac.app: + "/OB3DMac.app": - when: - os: mac store: steam - /Outbreak3D.exe: + "/Outbreak3D.exe": - when: - os: windows store: steam - /Outbreak3DLinux.x86_64: + "/Outbreak3DLinux.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 644480 -'Outbreak: The Nightmare Chronicles': +"Outbreak: The Nightmare Chronicles": files: - /AppData/LocalLow/Drop Dead Studios LLC/Outbreak the Nightmare Chronicles: + "/AppData/LocalLow/Drop Dead Studios LLC/Outbreak the Nightmare Chronicles": tags: - save when: @@ -382123,16 +383185,16 @@ Outbreak in Space VR: installDir: Outbreak The Nightmare Chronicles: {} launch: - /OBTNCMac.app: + "/OBTNCMac.app": - when: - os: mac store: steam - /Outbreak3DChronicles.exe: + "/Outbreak3DChronicles.exe": - when: - bit: 64 os: windows store: steam - /OutbreakTheNightmareChroniclesLinux.x86_64: + "/OutbreakTheNightmareChroniclesLinux.x86_64": - when: - bit: 64 os: linux @@ -382141,17 +383203,17 @@ Outbreak in Space VR: id: 811720 Outbuddies: files: - /outbuddies: + "/outbuddies": tags: - save when: - os: windows - /outbuddies/inputs: + "/outbuddies/inputs": tags: - config when: - os: windows - /outbuddies/settings: + "/outbuddies/settings": tags: - config when: @@ -382161,7 +383223,7 @@ Outbuddies: installDir: OUTBUDDIES: {} launch: - /Outbuddies.exe: + "/Outbuddies.exe": - when: - os: windows store: steam @@ -382171,11 +383233,11 @@ Outburst: installDir: Outburst: {} launch: - /mac/Mac.app/Contents/MacOS/Mac: + "/mac/Mac.app/Contents/MacOS/Mac": - when: - os: mac store: steam - /windows_x86/Outburst.exe: + "/windows_x86/Outburst.exe": - when: - os: windows store: steam @@ -382183,7 +383245,7 @@ Outburst: id: 669710 Outcast: files: - /savegames: + "/savegames": tags: - save when: @@ -382192,12 +383254,12 @@ Outcast: id: 1207658853 Outcast 1.1: files: - /userdata/config.ini: + "/userdata/config.ini": tags: - config when: - os: windows - /userdata/savegames: + "/userdata/savegames": tags: - save when: @@ -382207,7 +383269,7 @@ Outcast 1.1: installDir: Outcast 1.1: {} launch: - /outcast 1.1.exe: + "/outcast 1.1.exe": - when: - os: windows store: steam @@ -382218,14 +383280,14 @@ Outcast 2 - A New Beginning: id: 1299791510 steam: id: 1013140 -'Outcast: Second Contact': +"Outcast: Second Contact": files: - /outcast_Data/StreamingAssets/userdata/config.ini: + "/outcast_Data/StreamingAssets/userdata/config.ini": tags: - config when: - os: windows - /outcast_Data/StreamingAssets/userdata/savegames: + "/outcast_Data/StreamingAssets/userdata/savegames": tags: - save when: @@ -382239,14 +383301,14 @@ Outcast 2 - A New Beginning: Outcome: steam: id: 997650 -'Outcore: Desktop Adventure': +"Outcore: Desktop Adventure": files: - /AppData/LocalLow/DoctorShinobi/Idle Game: + "/AppData/LocalLow/DoctorShinobi/Idle Game": tags: - save when: - os: windows - /AppData/LocalLow/DoctorShinobi/Outcore: + "/AppData/LocalLow/DoctorShinobi/Outcore": tags: - save when: @@ -382254,14 +383316,14 @@ Outcome: installDir: Outcore: {} launch: - /Outcore.exe: - - arguments: '-force-d3d11-bitblt-model' + "/Outcore.exe": + - arguments: "-force-d3d11-bitblt-model" when: - store: steam - - arguments: '-force-opengl' + - arguments: "-force-opengl" when: - store: steam - - arguments: '-force-vulkan' + - arguments: "-force-vulkan" when: - store: steam registry: @@ -382277,7 +383339,7 @@ Outer Rim: installDir: Outer Rim: {} launch: - /OuterRim.exe: + "/OuterRim.exe": - when: - os: windows store: steam @@ -382288,19 +383350,20 @@ Outer Space: id: 881250 Outer Wilds: files: - /AppData/LocalLow/Mobius Digital/Outer Wilds/Saves: + "/AppData/LocalLow/Mobius Digital/Outer Wilds/Saves": tags: - config - save when: - os: windows - /AppData/LocalLow/Mobius Digital/Outer Wilds/SteamSaves: + "/AppData/LocalLow/Mobius Digital/Outer Wilds/SteamSaves": tags: - config - save when: - - store: steam - /Packages/AnnapurnaInteractive.OuterWilds_c96c51jf6wkvm/SystemAppData/wgs: + - os: windows + store: steam + "/Packages/AnnapurnaInteractive.OuterWilds_c96c51jf6wkvm/SystemAppData/wgs": tags: - save when: @@ -382312,7 +383375,7 @@ Outer Wilds: installDir: Outer Wilds: {} launch: - /OuterWilds.exe: + "/OuterWilds.exe": - when: - os: windows store: steam @@ -382320,13 +383383,15 @@ Outer Wilds: HKEY_CURRENT_USER/Software/Mobius Digital/Outer Wilds: tags: - config + when: + - store: steam steam: id: 753640 Outerverse: installDir: Outerverse: {} launch: - /SpaceVoxel.exe: + "/SpaceVoxel.exe": - when: - bit: 64 os: windows @@ -382335,22 +383400,22 @@ Outerverse: id: 1293540 Outland: files: - /userdata//305050/remote: + "/userdata//305050/remote": tags: - save when: - store: steam - /Housemarque/Outland: + "/Housemarque/Outland": tags: - save when: - os: windows - /Housemarque/Outland/window_pos.cfg: + "/Housemarque/Outland/window_pos.cfg": tags: - config when: - os: windows - /Housemarque/Outland: + "/Housemarque/Outland": tags: - config - save @@ -382359,19 +383424,19 @@ Outland: installDir: Outland: {} launch: - /Outland.app: + "/Outland.app": - when: - os: mac store: steam - /Outland.bin.x86: + "/Outland.bin.x86": - when: - os: linux store: steam - /Outland.exe: + "/Outland.exe": - when: - os: windows store: steam - /RunGameNoSteamRT.sh: + "/RunGameNoSteamRT.sh": - when: - os: linux store: steam @@ -382381,7 +383446,7 @@ Outlanders: installDir: Outlanders: {} launch: - /Outlanders.exe: + "/Outlanders.exe": - when: - bit: 64 os: windows @@ -382395,27 +383460,27 @@ Outlands Safehouse: id: 581960 Outlast: files: - /userdata//238320/remote: + "/userdata//238320/remote": tags: - save when: - store: steam - /My Games/Outlast/OLGame/Config: + "/My Games/Outlast/OLGame/Config": tags: - config when: - os: windows - /My Games/Outlast/OLGame/SaveData: + "/My Games/Outlast/OLGame/SaveData": tags: - save when: - os: windows - /Outlast/OLGame/Cloud: + "/Outlast/OLGame/Cloud": tags: - save when: - os: linux - /Outlast/OLGame/Config: + "/Outlast/OLGame/Config": tags: - config when: @@ -382428,21 +383493,21 @@ Outlast: installDir: Outlast: {} launch: - /Binaries/Linux/OLGame.i686: + "/Binaries/Linux/OLGame.i686": - when: - bit: 32 os: linux store: steam - /Binaries/Linux/OLGame.x86_64: + "/Binaries/Linux/OLGame.x86_64": - when: - bit: 64 os: linux store: steam - /Outlast.app: + "/Outlast.app": - when: - os: mac store: steam - /OutlastLauncher.exe: + "/OutlastLauncher.exe": - when: - os: windows store: steam @@ -382450,17 +383515,17 @@ Outlast: id: 238320 Outlast 2: files: - /userdata//414700/remote: + "/userdata//414700/remote": tags: - save when: - store: steam - /My Games/Outlast2/OLGame/Config: + "/My Games/Outlast2/OLGame/Config": tags: - config when: - os: windows - /My Games/Outlast2/OLGame/SaveData: + "/My Games/Outlast2/OLGame/SaveData": tags: - save when: @@ -382470,7 +383535,7 @@ Outlast 2: installDir: Outlast 2: {} launch: - /Binaries/Win64/Outlast2.exe: + "/Binaries/Win64/Outlast2.exe": - when: - bit: 64 os: windows @@ -382479,7 +383544,7 @@ Outlast 2: id: 414700 Outlaws: files: - /Save: + "/Save": tags: - save when: @@ -382489,7 +383554,7 @@ Outlaws: installDir: Outlaws: {} launch: - /olwin.exe: + "/olwin.exe": - when: - store: steam registry: @@ -382507,25 +383572,25 @@ Outline: installDir: Outline: {} launch: - /Outline.app/Contents/MacOS/Outline: + "/Outline.app/Contents/MacOS/Outline": - when: - os: mac store: steam - /Outline_Linux/Outline.x86: + "/Outline_Linux/Outline.x86": - when: - os: linux store: steam - /win32/Outline.exe: + "/win32/Outline.exe": - when: - os: windows store: steam steam: id: 812850 -'Outliver: Redemption': +"Outliver: Redemption": installDir: Outliver Redemption: {} launch: - /Outliver_Redemption.exe: + "/Outliver_Redemption.exe": - when: - bit: 64 os: windows @@ -382536,35 +383601,35 @@ Outpost 13: installDir: Outpost 13: {} launch: - /Linux_A1.3_O13.x86: + "/Linux_A1.3_O13.x86": - when: - bit: 32 os: linux store: steam - /Linux_A1.3_O13.x86_64: + "/Linux_A1.3_O13.x86_64": - when: - bit: 64 os: linux store: steam - /Mac_A1.3_O13.app: + "/Mac_A1.3_O13.app": - when: - os: mac store: steam - /Win32_A1.3_O13.exe: + "/Win32_A1.3_O13.exe": - when: - bit: 32 os: windows store: steam - /Win64_A1.3_O13.exe: + "/Win64_A1.3_O13.exe": - when: - bit: 64 os: windows store: steam steam: id: 351060 -'Outpost 2: Divided Destiny': +"Outpost 2: Divided Destiny": files: - /outpost2.ini: + "/outpost2.ini": tags: - config when: @@ -382575,16 +383640,16 @@ Outpost Delta: installDir: Outpost Delta: {} launch: - /OutpostDelta: + "/OutpostDelta": - when: - bit: 64 os: linux store: steam - /OutpostDelta.app/Contents/MacOS/Outpost Delta: + "/OutpostDelta.app/Contents/MacOS/Outpost Delta": - when: - os: mac store: steam - /OutpostDelta.exe: + "/OutpostDelta.exe": - when: - bit: 64 os: windows @@ -382600,7 +383665,7 @@ Outpost Zero: installDir: Outpost Zero: {} launch: - /WindowsNoEditor/SurvivalGame.exe: + "/WindowsNoEditor/SurvivalGame.exe": - when: - store: steam steam: @@ -382609,7 +383674,7 @@ Outpost on Syrinx: installDir: Outpost On Syrinx: {} launch: - /Outpost On Syrinx.exe: + "/Outpost On Syrinx.exe": - when: - os: windows store: steam @@ -382619,7 +383684,7 @@ Output Pasture: installDir: OutputPasture: {} launch: - /OutputPasture.exe: + "/OutputPasture.exe": - when: - os: windows store: steam @@ -382629,15 +383694,15 @@ Outracer: installDir: Outracer: {} launch: - /Outracer.app/Contents/MacOS/Outracer: + "/Outracer.app/Contents/MacOS/Outracer": - when: - os: mac store: steam - /Outracer.exe: + "/Outracer.exe": - when: - os: windows store: steam - /Outracer.x86: + "/Outracer.x86": - when: - bit: 32 os: linux @@ -382648,12 +383713,12 @@ Outrage: installDir: Outrage: {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: id: 457820 -'Outrageous Grounds: The Maze': +"Outrageous Grounds: The Maze": installDir: Outrageous Grounds The Maze: {} steam: @@ -382665,7 +383730,7 @@ Outrealm: installDir: Outrealm: {} launch: - /Outrealm.exe: + "/Outrealm.exe": - when: - os: windows store: steam @@ -382676,12 +383741,12 @@ Outrider Mako: id: 1072400 Outriders: files: - /Madness/Saved/Config/WindowsNoEditor: + "/Madness/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /Packages/39C668CD.Madness-BaseGame_r7bfsmp40f67j/LocalCache/Local/Madness/Saved/Config/WinGDK: + "/Packages/39C668CD.Madness-BaseGame_r7bfsmp40f67j/LocalCache/Local/Madness/Saved/Config/WinGDK": tags: - config when: @@ -382696,7 +383761,7 @@ Outrunner: id: 620240 Outrunner 2: files: - /Outrunner_2: + "/Outrunner_2": tags: - save when: @@ -382710,7 +383775,7 @@ Outscape: installDir: Outscape: {} launch: - /Outscape.exe: + "/Outscape.exe": - when: - bit: 64 os: windows @@ -382719,7 +383784,7 @@ Outscape: id: 552600 Outshine: files: - /AppData/LocalLow/Fishing Cactus/Outshine: + "/AppData/LocalLow/Fishing Cactus/Outshine": tags: - save when: @@ -382732,7 +383797,7 @@ Outshine: installDir: Outshine: {} launch: - /Outshine.exe: + "/Outshine.exe": - when: - os: windows store: steam @@ -382742,7 +383807,7 @@ Outside: installDir: Outside: {} launch: - /Outside.exe: + "/Outside.exe": - when: - bit: 64 os: windows @@ -382753,7 +383818,7 @@ Outside the Lines: installDir: Outside the Lines: {} launch: - /Outside the Lines.exe: + "/Outside the Lines.exe": - when: - os: windows store: steam @@ -382763,31 +383828,31 @@ Outsider Strategist: installDir: Outsider_Strategist: {} launch: - /Outsider_Strategist/game.exe: + "/Outsider_Strategist/game.exe": - when: - os: windows store: steam - workingDir: /Outsider_Strategist + workingDir: "/Outsider_Strategist" steam: id: 813310 Outskirts: installDir: Outskirts: {} launch: - /Outskirts.app/Contents/MacOS/Outskirts: + "/Outskirts.app/Contents/MacOS/Outskirts": - when: - os: mac store: steam - /Outskirts.exe: + "/Outskirts.exe": - when: - os: windows store: steam - /Outskirts.x86: + "/Outskirts.x86": - when: - bit: 32 os: linux store: steam - /Outskirts.x86_64: + "/Outskirts.x86_64": - when: - bit: 64 os: linux @@ -382799,12 +383864,12 @@ Outstation: id: 1105990 Outward: files: - /OptionSettings.oos: + "/OptionSettings.oos": tags: - config when: - os: windows - /SaveGames: + "/SaveGames": tags: - save when: @@ -382817,7 +383882,7 @@ Outward: installDir: Outward: {} launch: - /Outward.exe: + "/Outward.exe": - when: - os: windows store: steam @@ -382825,7 +383890,7 @@ Outward: id: 794260 Outwars: files: - /outwars.sav: + "/outwars.sav": tags: - save when: @@ -382835,7 +383900,7 @@ Outwars: installDir: Outwars: {} launch: - /outwars.exe: + "/outwars.exe": - when: - store: steam registry: @@ -382848,11 +383913,11 @@ Outworld Battlegrounds: installDir: OutworldBattlegrounds: {} launch: - /OutworldBattlegrounds.app: + "/OutworldBattlegrounds.app": - when: - os: mac store: steam - /OutworldBattlegrounds.exe: + "/OutworldBattlegrounds.exe": - when: - bit: 64 os: windows @@ -382871,17 +383936,17 @@ Over 9000 Zombies!: installDir: Over 9000 Zombies!: {} launch: - /Over9000Zombies.exe: + "/Over9000Zombies.exe": - when: - os: windows store: steam steam: id: 273500 -'Over Devil: Legend of the Sacred Stone': +"Over Devil: Legend of the Sacred Stone": installDir: OVER Devil Legend of the sacred stone: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -382891,8 +383956,8 @@ Over My Dead Body (For You): installDir: Over My Dead Body For You: {} launch: - /Over My Dead Body (For You).exe: - - arguments: '-show-screen-selector' + "/Over My Dead Body (For You).exe": + - arguments: "-show-screen-selector" when: - os: windows store: steam @@ -382902,7 +383967,7 @@ Over My Dead Pixel: installDir: Over My Dead Pixel: {} launch: - /OverMyDeadPixel.exe: + "/OverMyDeadPixel.exe": - when: - bit: 64 os: windows @@ -382913,18 +383978,18 @@ Over Sky: installDir: Over Sky: {} launch: - /Over Sky.exe: + "/Over Sky.exe": - when: - bit: 64 os: windows store: steam steam: id: 1105490 -'Over The Cloud : Lost Planet': +"Over The Cloud : Lost Planet": installDir: OverTheCloud: {} launch: - /OverTheCloud_Global.exe: + "/OverTheCloud_Global.exe": - when: - os: windows store: steam @@ -382934,15 +383999,15 @@ Over The Hills And Far Away: installDir: Over The Hills And Far Away: {} launch: - /Over The Hills And Far Away.app: + "/Over The Hills And Far Away.app": - when: - os: mac store: steam - /Over The Hills And Far Away.exe: + "/Over The Hills And Far Away.exe": - when: - os: windows store: steam - /Over The Hills And Far Away.sh: + "/Over The Hills And Far Away.sh": - when: - os: linux store: steam @@ -382952,7 +384017,7 @@ Over The Moonlight: installDir: Over The Moonlight: {} launch: - /OverTheMoonlight.exe: + "/OverTheMoonlight.exe": - when: - os: windows store: steam @@ -382962,7 +384027,7 @@ Over The Void: installDir: Over The Void: {} launch: - /Over The Void.exe: + "/Over The Void.exe": - when: - store: steam steam: @@ -382971,11 +384036,11 @@ Over the Alps: installDir: Over the Alps: {} launch: - /Over the Alps.app/Contents/MacOS/Over the Alps: + "/Over the Alps.app/Contents/MacOS/Over the Alps": - when: - os: mac store: steam - /overthealps.exe: + "/overthealps.exe": - when: - os: windows store: steam @@ -382983,12 +384048,12 @@ Over the Alps: id: 1227400 Over the Hedge: files: - /Activision/Over the Hedge/Save/savegame/settings##: + "/Activision/Over the Hedge/Save/savegame/settings##": tags: - config when: - os: windows - /Activision/Over the Hedge/Save/savegame/slot##: + "/Activision/Over the Hedge/Save/savegame/slot##": tags: - save when: @@ -382997,7 +384062,7 @@ OverKill: installDir: OverKill: {} launch: - /OVERKILL.exe: + "/OVERKILL.exe": - when: - os: windows store: steam @@ -383010,19 +384075,19 @@ Overboard: id: 1144080 Overboard!: files: - /ob.cfg: + "/ob.cfg": tags: - config when: - os: windows Overboard! (2021): files: - /AppData/LocalLow/Inkle Ltd/Overboard!/*.json: + "/AppData/LocalLow/Inkle Ltd/Overboard!/*.json": tags: - save when: - os: windows - /AppData/LocalLow/Inkle Ltd/Overboard!/Auto Dev Saves/*.json: + "/AppData/LocalLow/Inkle Ltd/Overboard!/Auto Dev Saves/*.json": tags: - save when: @@ -383032,11 +384097,11 @@ Overboard! (2021): installDir: Overboard!: {} launch: - /Overboard!.app: + "/Overboard!.app": - when: - os: mac store: steam - /Overboard!.exe: + "/Overboard!.exe": - when: - bit: 64 os: windows @@ -383047,7 +384112,7 @@ Overcast - Walden and the Werewolf: installDir: Overcast - Walden and the Werewolf: {} launch: - /Overcast - Walden and the Werewolf.exe: + "/Overcast - Walden and the Werewolf.exe": - when: - os: windows store: steam @@ -383057,7 +384122,7 @@ Overchunked: installDir: Overchunked: {} launch: - /Grind.exe: + "/Grind.exe": - when: - os: windows store: steam @@ -383065,12 +384130,12 @@ Overchunked: id: 833910 Overclocked: files: - /Overclocked/oc_options.sav: + "/Overclocked/oc_options.sav": tags: - config when: - os: windows - /Overclocked/oc_save_*.sav: + "/Overclocked/oc_save_*.sav": tags: - save when: @@ -383078,19 +384143,19 @@ Overclocked: installDir: Overclocked: {} launch: - /Overclocked.app/Contents/MacOS/Overclocked: + "/Overclocked.app/Contents/MacOS/Overclocked": - when: - os: mac store: steam - /Overclocked.exe: + "/Overclocked.exe": - when: - os: windows store: steam steam: id: 745560 -'Overclocked: A History of Violence': +"Overclocked: A History of Violence": files: - /Overclocked savegames: + "/Overclocked savegames": tags: - config when: @@ -383100,21 +384165,21 @@ Overclocked: installDir: Overclocked: {} launch: - /launcher.exe: + "/launcher.exe": - when: - os: windows store: steam steam: id: 339850 -'Overclocked: The Aclockalypse': +"Overclocked: The Aclockalypse": installDir: Overclocked The Aclockalypse: {} launch: - /Overclocked.app: + "/Overclocked.app": - when: - os: mac store: steam - /Overclocked.exe: + "/Overclocked.exe": - when: - os: windows store: steam @@ -383124,11 +384189,11 @@ Overcome: installDir: Overcome: {} launch: - /Overcome.app/Contents/MacOS/Overcome: + "/Overcome.app/Contents/MacOS/Overcome": - when: - os: mac store: steam - /Overcome.exe: + "/Overcome.exe": - when: - os: windows store: steam @@ -383138,7 +384203,7 @@ Overcoming Pain: installDir: Overcoming_Pain: {} launch: - /Overcoming_Pain.exe: + "/Overcoming_Pain.exe": - when: - os: windows store: steam @@ -383146,7 +384211,7 @@ Overcoming Pain: id: 763070 Overcooked!: files: - /AppData/LocalLow/Ghost Town Games/Overcooked/*.save: + "/AppData/LocalLow/Ghost Town Games/Overcooked/*.save": tags: - save when: @@ -383156,7 +384221,7 @@ Overcooked!: installDir: Overcooked: {} launch: - /Overcooked.exe: + "/Overcooked.exe": - when: - os: windows store: steam @@ -383168,12 +384233,12 @@ Overcooked!: id: 448510 Overcooked! 2: files: - /.config/unity3d/Team17/Overcooked2/: + "/.config/unity3d/Team17/Overcooked2/": tags: - save when: - os: linux - /AppData/LocalLow/Team17/Overcooked2/: + "/AppData/LocalLow/Team17/Overcooked2/": tags: - save when: @@ -383182,36 +384247,36 @@ Overcooked! 2: id: 1297999995 id: gogExtra: - - 1274483052 - 1161181715 - - 1481436848 - - 1436984092 - 1233324287 + - 1274483052 + - 1436984092 + - 1481436848 - 1918219016 steamExtra: - - 909720 - 858240 - - 1067770 + - 909720 - 1013300 - - 1138400 - 1017510 + - 1067770 + - 1138400 installDir: Overcooked! 2: {} launch: - /Overcooked2.app: + "/Overcooked2.app": - when: - os: mac store: steam - /Overcooked2.exe: + "/Overcooked2.exe": - when: - os: windows store: steam - /Overcooked2.x86: + "/Overcooked2.x86": - when: - bit: 32 os: linux store: steam - /Overcooked2.x86_64: + "/Overcooked2.x86_64": - when: - bit: 64 os: linux @@ -383224,7 +384289,7 @@ Overcooked! 2: id: 728880 Overcooked! All You Can Eat: files: - /LocalLow/Team17/Overcooked All You Can Eat: + "/LocalLow/Team17/Overcooked All You Can Eat": tags: - save when: @@ -383244,20 +384309,20 @@ Overcraft: installDir: Overcraft: {} launch: - /Overcraft.exe: + "/Overcraft.exe": - when: - os: windows store: steam steam: id: 980560 -'Overcrowd: A Commute ''Em Up': +"Overcrowd: A Commute 'Em Up": files: - /My Games/Overcrowd/Saves: + "/My Games/Overcrowd/Saves": tags: - save when: - os: windows - /My Games/Overcrowd/Saves/start.dat: + "/My Games/Overcrowd/Saves/start.dat": tags: - config when: @@ -383265,7 +384330,7 @@ Overcraft: installDir: Overcrowd: {} launch: - /Overcrowd.exe: + "/Overcrowd.exe": - when: - os: windows store: steam @@ -383275,7 +384340,7 @@ Overdosed - A Trip To Hell: installDir: Overdosed - A Trip To Hell: {} launch: - /Overdosed.exe: + "/Overdosed.exe": - when: - os: windows store: steam @@ -383285,20 +384350,20 @@ Overdriven Reloaded: installDir: Overdriven Reloaded: {} launch: - /Overdriven Reloaded.app/Contents/MacOS/OverdrivenReloaded: + "/Overdriven Reloaded.app/Contents/MacOS/OverdrivenReloaded": - when: - os: mac store: steam - /Overdriven Reloaded.exe: + "/Overdriven Reloaded.exe": - when: - os: windows store: steam - /OverdrivenReloaded.bin.x86: + "/OverdrivenReloaded.bin.x86": - when: - bit: 32 os: linux store: steam - /OverdrivenReloaded.bin.x86_64: + "/OverdrivenReloaded.bin.x86_64": - when: - bit: 64 os: linux @@ -383309,28 +384374,28 @@ Overdungeon: installDir: Overdungeon: {} launch: - /OSX.app: + "/OSX.app": - when: - os: mac store: steam - /Windows-32bit.exe: + "/Windows-32bit.exe": - when: - bit: 32 os: windows store: steam - /Windows-64bit.exe: + "/Windows-64bit.exe": - when: - bit: 64 os: windows store: steam steam: id: 919370 -'Overduty VR: Battle Royale': +"Overduty VR: Battle Royale": steam: id: 775990 Overfall: files: - /Overfall_Data/Saves: + "/Overfall_Data/Saves": tags: - save when: @@ -383340,20 +384405,20 @@ Overfall: installDir: Overfall: {} launch: - /Overfall.app/Contents/MacOS/Overfall: + "/Overfall.app/Contents/MacOS/Overfall": - when: - os: mac store: steam - /Overfall.exe: + "/Overfall.exe": - when: - os: windows store: steam - /Overfall.x86: + "/Overfall.x86": - when: - bit: 32 os: linux store: steam - /Overfall.x86_64: + "/Overfall.x86_64": - when: - bit: 64 os: linux @@ -383365,13 +384430,13 @@ Overflo Game: id: 1112650 Overgrowth: files: - /Wolfire: + "/Wolfire": tags: - config - save when: - os: windows - /Overgrowth: + "/Overgrowth": tags: - config - save @@ -383380,20 +384445,20 @@ Overgrowth: installDir: Overgrowth: {} launch: - /Overgrowth.app: + "/Overgrowth.app": - when: - os: mac store: steam - /Overgrowth.bin.x86: + "/Overgrowth.bin.x86": - when: - os: linux store: steam - /Overgrowth.bin.x86_64: + "/Overgrowth.bin.x86_64": - when: - bit: 64 os: linux store: steam - /Overgrowth.exe: + "/Overgrowth.exe": - when: - os: windows store: steam @@ -383403,7 +384468,7 @@ Overhead: installDir: Overhead: {} launch: - /Overhead.exe: + "/Overhead.exe": - when: - store: steam steam: @@ -383416,22 +384481,22 @@ Overkill VR: Overkill VR: {} steam: id: 518720 -Overkill's The Walking Dead: +"Overkill's The Walking Dead": files: - /OTWD/Saved/Config/WindowsNoEditor: + "/OTWD/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /OTWD/Saved/SaveGames: + "/OTWD/Saved/SaveGames": tags: - save when: - os: windows installDir: - OVERKILL's The Walking Dead: {} + "OVERKILL's The Walking Dead": {} launch: - /OTWD/Binaries/Win64/OTWD-Win64-Shipping.exe: + "/OTWD/Binaries/Win64/OTWD-Win64-Shipping.exe": - when: - bit: 64 os: windows @@ -383440,27 +384505,27 @@ Overkill's The Walking Dead: id: 717690 Overland: files: - /.config/unity3d/Finji/Overland/gameSaves: + "/.config/unity3d/Finji/Overland/gameSaves": tags: - save when: - os: linux - /AppData/LocalLow/Finji/Overland/Config.json: + "/AppData/LocalLow/Finji/Overland/Config.json": tags: - config when: - os: windows - /AppData/LocalLow/Finji/Overland/gameSaves: + "/AppData/LocalLow/Finji/Overland/gameSaves": tags: - save when: - os: windows - /Library/Application Support/unity.Finji.Overland/Config.json: + "/Library/Application Support/unity.Finji.Overland/Config.json": tags: - config when: - os: mac - /Library/Application Support/unity.Finji.Overland/gameSaves: + "/Library/Application Support/unity.Finji.Overland/gameSaves": tags: - save when: @@ -383470,21 +384535,24 @@ Overland: installDir: Overland: {} launch: - /Overland.app: + "/Overland.app": - when: - os: mac store: steam - /Overland.exe: + "/Overland.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam - /Overland.x86: + "/Overland.x86": - when: - bit: 32 os: linux store: steam - /Overland.x86_64: + "/Overland.x86_64": - when: - bit: 64 os: linux @@ -383499,8 +384567,8 @@ Overlanders: installDir: Overlanders: {} launch: - /Overlanders.exe: - - arguments: '-FULLSCREEN' + "/Overlanders.exe": + - arguments: "-FULLSCREEN" when: - bit: 64 os: windows @@ -383509,13 +384577,13 @@ Overlanders: id: 779450 Overload: files: - /.config/unity3d/Revival/Overload: + "/.config/unity3d/Revival/Overload": tags: - config - save when: - os: linux - /AppData/LocalLow/Revival/Overload: + "/AppData/LocalLow/Revival/Overload": tags: - config - save @@ -383526,26 +384594,26 @@ Overload: installDir: Overload: {} launch: - /Overload.app: + "/Overload.app": - when: - os: mac store: steam - /Overload.exe: - - arguments: '-vrmode none' + "/Overload.exe": + - arguments: "-vrmode none" when: - os: windows store: steam - /Overload.x86: + "/Overload.x86": - when: - bit: 32 os: linux store: steam - /Overload.x86_64: + "/Overload.x86_64": - when: - bit: 64 os: linux store: steam - /ReadMe.txt: + "/ReadMe.txt": - when: - os: windows store: steam @@ -383558,24 +384626,24 @@ Overload: Overlook Trail: steam: id: 817800 -'Overlook: Local Multiplayer Game - up to 16 Players': +"Overlook: Local Multiplayer Game - up to 16 Players": installDir: Overlook: {} launch: - /Overlook.app: + "/Overlook.app": - when: - os: mac store: steam - /Overlook.exe: + "/Overlook.exe": - when: - os: windows store: steam - /Overlook.x86: + "/Overlook.x86": - when: - bit: 32 os: linux store: steam - /Overlook.x86_64: + "/Overlook.x86_64": - when: - bit: 64 os: linux @@ -383588,7 +384656,7 @@ Overloop: installDir: Overloop: {} launch: - /Overloop.exe: + "/Overloop.exe": - when: - os: windows store: steam @@ -383601,32 +384669,32 @@ Overloop: id: 720660 Overlord (2007): files: - /Library/Application Support/com.vpltd.overlord/GameDocuments/Overlord: + "/Library/Application Support/com.vpltd.overlord/GameDocuments/Overlord": tags: - save when: - os: mac - /Library/Application Support/com.vpltd.overlord/GameDocuments/Overlord/Settings.dat: + "/Library/Application Support/com.vpltd.overlord/GameDocuments/Overlord/Settings.dat": tags: - config when: - os: mac - /Overlord: + "/Overlord": tags: - save when: - os: windows - /Overlord/settings.dat: + "/Overlord/settings.dat": tags: - config when: - os: windows - /vpltd/Overlord: + "/vpltd/Overlord": tags: - config when: - os: linux - /vpltd/Overlord/GameDocuments/Overlord: + "/vpltd/Overlord/GameDocuments/Overlord": tags: - save when: @@ -383639,15 +384707,15 @@ Overlord (2007): installDir: Overlord: {} launch: - /Overlord.app: + "/Overlord.app": - when: - os: mac store: steam - /Overlord.exe: + "/Overlord.exe": - when: - os: windows store: steam - /overlord: + "/overlord": - when: - os: linux store: steam @@ -383655,22 +384723,22 @@ Overlord (2007): id: 11450 Overlord II: files: - /My Games/Overlord II: + "/My Games/Overlord II": tags: - config when: - os: windows - /My Games/Overlord II/Profiles: + "/My Games/Overlord II/Profiles": tags: - save when: - os: windows - /My Games/Overlord II/Save - *: + "/My Games/Overlord II/Save - *": tags: - save when: - os: windows - /vpltd/Overlord2: + "/vpltd/Overlord2": tags: - config - save @@ -383681,42 +384749,42 @@ Overlord II: installDir: Overlord II: {} launch: - /Overlord 2.app: + "/Overlord 2.app": - when: - os: mac store: steam - /Overlord2.exe: + "/Overlord2.exe": - when: - os: windows store: steam - /overlord2: + "/overlord2": - when: - os: linux store: steam steam: id: 12810 -'Overlord: Escape from Nazarick': +"Overlord: Escape from Nazarick": installDir: OVERLORD -ESCAPE FROM NAZARICK-: {} launch: - /ESCAPE FROM NAZARICK.exe: + "/ESCAPE FROM NAZARICK.exe": - when: - store: steam steam: id: 1782150 -'Overlord: Fellowship of Evil': +"Overlord: Fellowship of Evil": installDir: OverlordFOE: {} launch: - /Overlord.app: + "/Overlord.app": - when: - os: mac store: steam - /Overlord.exe: + "/Overlord.exe": - when: - os: windows store: steam - /Overlord.x86: + "/Overlord.x86": - when: - os: linux store: steam @@ -383726,7 +384794,7 @@ Overpass: installDir: Overpass: {} launch: - /overpass.exe: + "/overpass.exe": - when: - bit: 64 os: windows @@ -383742,12 +384810,15 @@ Overpower: installDir: Overpower: {} launch: - /Overpower.app: + "/Overpower.app": - when: + - bit: 32 + os: mac + store: steam - bit: 64 os: mac store: steam - /Overpower.exe: + "/Overpower.exe": - when: - os: windows store: steam @@ -383755,12 +384826,12 @@ Overpower: id: 440280 Overprime: files: - /Overprime/Saved/Config/WindowsClient: + "/Overprime/Saved/Config/WindowsClient": tags: - config when: - os: windows - /Overprime/Saved/SaveGames: + "/Overprime/Saved/SaveGames": tags: - save when: @@ -383768,32 +384839,32 @@ Overprime: installDir: Overprime: {} launch: - /ParagonClient.exe: + "/ParagonClient.exe": - when: - bit: 64 os: windows store: steam steam: id: 1531430 -'Override 2: Super Mech League': +"Override 2: Super Mech League": installDir: Override 2: {} launch: - /Override.exe: + "/Override.exe": - when: - bit: 64 os: windows store: steam steam: id: 1329790 -'Override: Mech City Brawl': +"Override: Mech City Brawl": files: - /Override/Saved/Config/WindowsNoEditor: + "/Override/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /Override/Saved/SaveGames: + "/Override/Saved/SaveGames": tags: - save when: @@ -383801,7 +384872,7 @@ Overprime: installDir: Override: {} launch: - /Override.exe: + "/Override.exe": - when: - bit: 64 os: windows @@ -383810,7 +384881,7 @@ Overprime: id: 709440 Overruled!: files: - /userdata//297740/remote/PlayerProfile.sav: + "/userdata//297740/remote/PlayerProfile.sav": tags: - save when: @@ -383818,15 +384889,15 @@ Overruled!: installDir: Overruled!: {} launch: - /Overruled.app: + "/Overruled.app": - when: - os: mac store: steam - /Overruled.exe: + "/Overruled.exe": - when: - os: windows store: steam - /Overruled.x86: + "/Overruled.x86": - when: - os: linux store: steam @@ -383836,7 +384907,7 @@ Overseas: installDir: Overseas: {} launch: - /Overseas.exe: + "/Overseas.exe": - when: - os: windows store: steam @@ -383846,7 +384917,7 @@ Overstep: installDir: Overstep: {} launch: - /Overstep.exe: + "/Overstep.exe": - when: - os: windows store: steam @@ -383854,7 +384925,7 @@ Overstep: id: 1008580 Overture: files: - /Overture/Data/mainsave.ini: + "/Overture/Data/mainsave.ini": tags: - config - save @@ -383863,11 +384934,11 @@ Overture: installDir: Overture: {} launch: - /Overture.app/Contents/MacOS/Mac_Runner: + "/Overture.app/Contents/MacOS/Mac_Runner": - when: - os: mac store: steam - /Overture.exe: + "/Overture.exe": - when: - os: windows store: steam @@ -383877,7 +384948,7 @@ Overture Music Visualization: installDir: Overture Music Visualization: {} launch: - /WindowsNoEditor/RetroWaveMachine.exe: + "/WindowsNoEditor/RetroWaveMachine.exe": - when: - os: windows store: steam @@ -383888,7 +384959,7 @@ Overturn: OVERTURN: {} steam: id: 650070 -'Overturn: Final Operation': +"Overturn: Final Operation": steam: id: 830560 Overview: @@ -383898,7 +384969,7 @@ Overview: id: 751110 Overwatch 2: files: - /Overwatch/Settings/Settings_v0.ini: + "/Overwatch/Settings/Settings_v0.ini": tags: - config when: @@ -383906,14 +384977,14 @@ Overwatch 2: installDir: Overwatch: {} launch: - /Overwatch.exe: + "/Overwatch.exe": - when: - store: steam steam: id: 2357570 Overwhelm: files: - /randomnine/OVERWHELM: + "/randomnine/OVERWHELM": tags: - save when: @@ -383921,11 +384992,11 @@ Overwhelm: installDir: OVERWHELM: {} launch: - /OVERWHELM.app: + "/OVERWHELM.app": - when: - os: mac store: steam - /OVERWHELM.exe: + "/OVERWHELM.exe": - when: - os: windows store: steam @@ -383933,12 +385004,12 @@ Overwhelm: id: 785880 Ovivo: files: - /OVIVO: + "/OVIVO": tags: - save when: - os: mac - /Saved Games/OVIVO: + "/Saved Games/OVIVO": tags: - save when: @@ -383946,15 +385017,15 @@ Ovivo: installDir: OVIVO: {} launch: - /OVIVO.app/Contents/MacOS/OVIVO: + "/OVIVO.app/Contents/MacOS/OVIVO": - when: - os: mac store: steam - /OVIVO.exe: + "/OVIVO.exe": - when: - os: windows store: steam - /OVIVO.x86: + "/OVIVO.x86": - when: - os: linux store: steam @@ -383964,12 +385035,12 @@ Owari: installDir: Owari: {} launch: - /owari.app: + "/owari.app": - when: - bit: 64 os: mac store: steam - /owari.exe: + "/owari.exe": - when: - bit: 64 os: windows @@ -383983,7 +385054,7 @@ Owinka Shooter: installDir: Owinka Shooter: {} launch: - /OWINKA SHOOTER.exe: + "/OWINKA SHOOTER.exe": - when: - os: windows store: steam @@ -383996,22 +385067,22 @@ Owl Watch: installDir: Owl Watch: {} launch: - /OwlWatch.exe: + "/OwlWatch.exe": - when: - bit: 64 os: windows store: steam steam: id: 887340 -Owl's Midnight Journey: +"Owl's Midnight Journey": installDir: - Owl's Midnight Journey: {} + "Owl's Midnight Journey": {} launch: - /owl.app/Contents/MacOS/owl: + "/owl.app/Contents/MacOS/owl": - when: - os: mac store: steam - /owl.exe: + "/owl.exe": - when: - os: windows store: steam @@ -384019,32 +385090,32 @@ Owl's Midnight Journey: id: 710940 Owlboy: files: - /Library/Application Support/Owlboy/Config: + "/Library/Application Support/Owlboy/Config": tags: - config when: - os: mac - /Library/Application Support/Owlboy/Saves: + "/Library/Application Support/Owlboy/Saves": tags: - save when: - os: mac - /Saved Games/Owlboy/Config: + "/Saved Games/Owlboy/Config": tags: - config when: - os: windows - /Saved Games/Owlboy/Saves: + "/Saved Games/Owlboy/Saves": tags: - save when: - os: windows - /Owlboy: + "/Owlboy": tags: - config when: - os: linux - /Owlboy/Saves: + "/Owlboy/Saves": tags: - save when: @@ -384058,15 +385129,15 @@ Owlboy: installDir: Owlboy: {} launch: - /Owlboy: + "/Owlboy": - when: - os: linux store: steam - /Owlboy.app/Contents/MacOS/Owlboy: + "/Owlboy.app/Contents/MacOS/Owlboy": - when: - os: mac store: steam - /Owlboy.exe: + "/Owlboy.exe": - when: - os: windows store: steam @@ -384075,15 +385146,15 @@ Owlboy: Owling. Crowling. Bowling!: steam: id: 1035210 -Owyn's Adventure: +"Owyn's Adventure": installDir: - Owyn's Adventure: {} + "Owyn's Adventure": {} launch: - /OwynsAdventure.app/Contents/MacOS/OwynsAdventure: + "/OwynsAdventure.app/Contents/MacOS/OwynsAdventure": - when: - os: mac store: steam - /OwynsAdventure.exe: + "/OwynsAdventure.exe": - when: - os: windows store: steam @@ -384093,15 +385164,15 @@ Owys: installDir: owysgame: {} launch: - /Owys.exe: + "/Owys.exe": - when: - os: windows store: steam - /owys.app: + "/owys.app": - when: - os: mac store: steam - /run.sh: + "/run.sh": - when: - os: linux store: steam @@ -384109,17 +385180,17 @@ Owys: id: 394770 Oxenfree: files: - /AppData/LocalLow/Night School Studio/Oxenfree/save: + "/AppData/LocalLow/Night School Studio/Oxenfree/save": tags: - save when: - os: windows - /Library/Application Support/unity.Night School Studio.Oxenfree/save: + "/Library/Application Support/unity.Night School Studio.Oxenfree/save": tags: - save when: - os: mac - /userdata//388880/remote: + "/userdata//388880/remote": tags: - save when: @@ -384132,25 +385203,25 @@ Oxenfree: installDir: Oxenfree: {} launch: - /OXENFREE: + "/OXENFREE": - when: - bit: 64 os: linux store: steam - /Oxenfree.app: + "/Oxenfree.app": - when: - os: mac store: steam - /Oxenfree.exe: + "/Oxenfree.exe": - when: - os: windows store: steam - /Oxenfree.x86: + "/Oxenfree.x86": - when: - bit: 32 os: linux store: steam - /Oxenfree.x86_64: + "/Oxenfree.x86_64": - when: - bit: 64 os: linux @@ -384161,9 +385232,9 @@ Oxenfree: - config steam: id: 388880 -'Oxenfree II: Lost Signals': +"Oxenfree II: Lost Signals": files: - /userdata//1574310/remote/*.nts: + "/userdata//1574310/remote/*.nts": tags: - save when: @@ -384171,16 +385242,16 @@ Oxenfree: installDir: Oxenfree II Lost Signals: {} launch: - /Oxenfree2.app: + "/Oxenfree2.app": - when: - os: mac store: steam - /Oxenfree2.exe: + "/Oxenfree2.exe": - when: - os: windows store: steam registry: - 'HKEY_CURRENT_USER/Software/Night School Studio/OXENFREE II: Lost Signals': + "HKEY_CURRENT_USER/Software/Night School Studio/OXENFREE II: Lost Signals": tags: - config steam: @@ -384190,32 +385261,32 @@ Oxyd: id: 1086170 Oxygen Not Included: files: - /.config/unity3d/Klei/Oxygen Not Included/kplayerprefs.yaml: + "/.config/unity3d/Klei/Oxygen Not Included/kplayerprefs.yaml": tags: - config when: - os: linux - /.config/unity3d/Klei/Oxygen Not Included/save_files: + "/.config/unity3d/Klei/Oxygen Not Included/save_files": tags: - save when: - os: linux - /Library/Application Support/unity.Klei.Oxygen Not Included/kplayerprefs.yaml: + "/Library/Application Support/unity.Klei.Oxygen Not Included/kplayerprefs.yaml": tags: - config when: - os: mac - /Library/Application Support/unity.Klei.Oxygen Not Included/save_files: + "/Library/Application Support/unity.Klei.Oxygen Not Included/save_files": tags: - save when: - os: mac - /Klei/OxygenNotIncluded/kplayerprefs.yaml: + "/Klei/OxygenNotIncluded/kplayerprefs.yaml": tags: - config when: - os: windows - /Klei/OxygenNotIncluded/save_files: + "/Klei/OxygenNotIncluded/save_files": tags: - save when: @@ -384227,15 +385298,15 @@ Oxygen Not Included: installDir: OxygenNotIncluded: {} launch: - /OxygenNotIncluded: + "/OxygenNotIncluded": - when: - os: linux store: steam - /OxygenNotIncluded.app: + "/OxygenNotIncluded.app": - when: - os: mac store: steam - /OxygenNotIncluded.exe: + "/OxygenNotIncluded.exe": - when: - os: windows store: steam @@ -384245,7 +385316,7 @@ Ozapell Mystery Text Adventure: installDir: Ozapell Mystery Text Adventure: {} launch: - /TXTADV.exe: + "/TXTADV.exe": - when: - bit: 32 os: windows @@ -384254,12 +385325,12 @@ Ozapell Mystery Text Adventure: id: 924390 Ozymandias: files: - /Library/Application Support/Epic/Ozymandias/Saved: + "/Library/Application Support/Epic/Ozymandias/Saved": tags: - save when: - os: mac - /Ozymandias/Saved: + "/Ozymandias/Saved": tags: - save when: @@ -384280,11 +385351,11 @@ Ozymandias: installDir: Ozymandias: {} launch: - /Ozymandias.app: + "/Ozymandias.app": - when: - os: mac store: steam - /Ozymandias.exe: + "/Ozymandias.exe": - when: - os: windows store: steam @@ -384294,7 +385365,7 @@ P-3 Biotic: installDir: P-3 Biotic: {} launch: - /P-3Biotic.exe: + "/P-3Biotic.exe": - when: - os: windows store: steam @@ -384304,17 +385375,17 @@ P-BOT: installDir: P-BOT: {} launch: - /P-BOT.exe: + "/P-BOT.exe": - when: - os: windows store: steam steam: id: 1215960 -P-Walker's Simulation: +"P-Walker's Simulation": installDir: P-Walkers Simulation: {} launch: - /pwalkerssimulation.exe: + "/pwalkerssimulation.exe": - when: - os: windows store: steam @@ -384324,7 +385395,7 @@ P.3: installDir: P.3: {} launch: - /P.3.exe: + "/P.3.exe": - when: - os: windows store: steam @@ -384332,12 +385403,12 @@ P.3: id: 1149220 P.A.M.E.L.A.: files: - /AppData/LocalLow/NVYVE Studios/PAM_GameLauncher: + "/AppData/LocalLow/NVYVE Studios/PAM_GameLauncher": tags: - save when: - os: windows - /AppData/LocalLow/NVYVE Studios/PAM_GameLauncher/PAMELA_Save_gameSettingsSave0.txt: + "/AppData/LocalLow/NVYVE Studios/PAM_GameLauncher/PAMELA_Save_gameSettingsSave0.txt": tags: - config when: @@ -384347,7 +385418,7 @@ P.A.M.E.L.A.: installDir: PAMELA: {} launch: - /PAM_GameLauncher.exe: + "/PAM_GameLauncher.exe": - when: - os: windows store: steam @@ -384361,7 +385432,7 @@ P.A.S.: installDir: PAS: {} launch: - /PAS.exe: + "/PAS.exe": - when: - store: steam steam: @@ -384373,7 +385444,7 @@ P1R4T3S: installDir: P1R4T3S: {} launch: - /P1R4T3S.exe: + "/P1R4T3S.exe": - when: - os: windows store: steam @@ -384387,11 +385458,11 @@ PAGAN PEAK VR: PAGAN_PEAK_VR: {} steam: id: 1059430 -'PAGAN: Autogeny': +"PAGAN: Autogeny": installDir: PAGAN3: {} launch: - /Pagan3.exe: + "/Pagan3.exe": - when: - bit: 64 os: windows @@ -384402,7 +385473,7 @@ PAGUI打鬼: installDir: PAGUI: {} launch: - /Pagui3D.exe: + "/Pagui3D.exe": - when: - os: windows store: steam @@ -384412,11 +385483,11 @@ PAKO - Car Chase Simulator: installDir: PAKO - Car Chase Simulator: {} launch: - /PAKO.app: + "/PAKO.app": - when: - os: mac store: steam - /pakoccs.exe: + "/pakoccs.exe": - when: - os: windows store: steam @@ -384431,11 +385502,11 @@ PAKO 2: installDir: PAKO2: {} launch: - /PAKO2.app: + "/PAKO2.app": - when: - os: mac store: steam - /pako2.exe: + "/pako2.exe": - when: - os: windows store: steam @@ -384445,7 +385516,7 @@ PANDARA: installDir: PANDARA: {} launch: - /Game_v991.exe: + "/Game_v991.exe": - when: - os: windows store: steam @@ -384466,19 +385537,19 @@ PARANOIHELL: installDir: PARANOIHELL: {} launch: - /PARANOIHELL (MAC).app/Contents/MacOS/PARANOIHELL (MAC): + "/PARANOIHELL (MAC).app/Contents/MacOS/PARANOIHELL (MAC)": - when: - os: mac store: steam - /PARANOIHELL (WINDOWS).exe: + "/PARANOIHELL (WINDOWS).exe": - when: - os: windows store: steam steam: id: 1160440 -'PARANORMASIGHT: The Seven Mysteries of Honjo': +"PARANORMASIGHT: The Seven Mysteries of Honjo": files: - /My Games/PARANORMASIGHT/Steam//save.bytes: + "/My Games/PARANORMASIGHT/Steam//save.bytes": tags: - save when: @@ -384486,7 +385557,7 @@ PARANOIHELL: installDir: PARANORMASIGHT: {} launch: - /PARANORMASIGHT.exe: + "/PARANORMASIGHT.exe": - when: - bit: 64 os: windows @@ -384501,7 +385572,7 @@ PARSE ALLY: installDir: PARSE ALLY: {} launch: - /PARSE ALLY.exe: + "/PARSE ALLY.exe": - when: - store: steam steam: @@ -384510,7 +385581,7 @@ PARTY BINGO: installDir: PARTY BINGO: {} launch: - /PartyBingo.exe: + "/PartyBingo.exe": - when: - os: windows store: steam @@ -384520,7 +385591,7 @@ PASHTET: installDir: PASHTET: {} launch: - /PASHTET.exe: + "/PASHTET.exe": - when: - store: steam steam: @@ -384529,7 +385600,7 @@ PASKA BATTLE STYLE!: installDir: PASKA BATTLE STYLE!: {} launch: - /PASKABATTLESTYLE!.exe: + "/PASKABATTLESTYLE!.exe": - when: - store: steam steam: @@ -384538,7 +385609,7 @@ PBA Pro Bowling: installDir: PBAProBowling: {} launch: - /PBABowling.exe: + "/PBABowling.exe": - when: - os: windows store: steam @@ -384546,7 +385617,7 @@ PBA Pro Bowling: id: 1126990 PC Building Simulator: files: - /Saves: + "/Saves": tags: - save when: @@ -384567,17 +385638,17 @@ PC Building Simulator: - 1733408351 - 1825330695 steamExtra: - - 973910 - 823720 - - 1252990 - - 1642950 - - 1591920 - - 1416670 - - 1295800 - - 1198960 - - 1067590 + - 973910 - 982590 + - 1067590 + - 1198960 + - 1252990 - 1263560 + - 1295800 + - 1416670 + - 1591920 + - 1642950 registry: HKEY_CURRENT_USER/Software/The Irregular Corp/PC Building Simulator: tags: @@ -384586,14 +385657,14 @@ PC Building Simulator: id: 621060 PC Building Simulator 2: files: - /Saves: + "/Saves": tags: - save when: - os: windows PC Fútbol 2005: files: - /Save: + "/Save": tags: - save when: @@ -384602,19 +385673,19 @@ PC Fútbol Stars: installDir: PC Futbol Stars: {} launch: - /PC Futbol Stars.exe: + "/PC Futbol Stars.exe": - when: - store: steam steam: id: 1036930 PC Gamer Digital: files: - '-': + "-": tags: - save when: - os: windows - /userdata//92500/local/save.cur: + "/userdata//92500/local/save.cur": tags: - config when: @@ -384623,39 +385694,39 @@ PC Gamer Digital: installDir: PC Gamer Digital Edition: {} launch: - /freakshow.exe: + "/freakshow.exe": - when: - store: steam steam: id: 92500 PCSX2: files: - /inis: + "/inis": tags: - config when: - os: windows - /memcards: + "/memcards": tags: - save when: - os: windows - /sstates: + "/sstates": tags: - save when: - os: windows - /inis: + "/inis": tags: - config when: - os: linux - /memcards: + "/memcards": tags: - save when: - os: linux - /sstates: + "/sstates": tags: - save when: @@ -384664,20 +385735,20 @@ PEG: installDir: PEG: {} launch: - /PEG.app/Contents/MacOS/PEG: + "/PEG.app/Contents/MacOS/PEG": - when: - os: mac store: steam - /PEG.exe: + "/PEG.exe": - when: - os: windows store: steam - /PEG.x86: + "/PEG.x86": - when: - bit: 32 os: linux store: steam - /PEG.x86_64: + "/PEG.x86_64": - when: - bit: 64 os: linux @@ -384686,7 +385757,7 @@ PEG: id: 699600 PGA Tour 2K21: files: - /AppData/LocalLow/2K/PGA TOUR 2K21: + "/AppData/LocalLow/2K/PGA TOUR 2K21": tags: - save when: @@ -384694,7 +385765,7 @@ PGA Tour 2K21: installDir: PGA TOUR 2K21: {} launch: - /golf.exe: + "/golf.exe": - when: - os: windows store: steam @@ -384704,7 +385775,7 @@ PGA Tour 2K23: installDir: PGA TOUR 2K23: {} launch: - /PGATOUR2K23.exe: + "/PGATOUR2K23.exe": - when: - os: windows store: steam @@ -384714,7 +385785,7 @@ PHAGEBORN Online Card Game: installDir: PHAGEBORN online card game: {} launch: - /Phageborn.exe: + "/Phageborn.exe": - when: - os: windows store: steam @@ -384724,7 +385795,7 @@ PHOGS!: installDir: PHOGS!: {} launch: - /PHOGS.exe: + "/PHOGS.exe": - when: - store: steam registry: @@ -384737,7 +385808,7 @@ PICO PARK: installDir: PICO_PARK: {} launch: - /pico_park.exe: + "/pico_park.exe": - when: - bit: 32 os: windows @@ -384748,15 +385819,15 @@ PIDO1: installDir: PIDO1: {} launch: - /PIDO1.app: + "/PIDO1.app": - when: - os: mac store: steam - /PIDO1.exe: + "/PIDO1.exe": - when: - os: windows store: steam - /PIDO1.x86: + "/PIDO1.x86": - when: - os: linux store: steam @@ -384766,20 +385837,20 @@ PING 1.5+: installDir: PING 1.5: {} launch: - /pingplus.app: + "/pingplus.app": - when: - os: mac store: steam - /pingplus.exe: + "/pingplus.exe": - when: - os: windows store: steam - /pingplus.x86: + "/pingplus.x86": - when: - bit: 32 os: linux store: steam - /pingplus.x86_64: + "/pingplus.x86_64": - when: - bit: 64 os: linux @@ -384790,16 +385861,16 @@ PINPIN BALLBALL: installDir: PINPIN BALLBALL: {} launch: - /player.exe: + "/player.exe": - when: - store: steam steam: id: 891180 -'PJ Masks: Heroes of the Night': +"PJ Masks: Heroes of the Night": installDir: PJ Masks Heroes of the Night: {} launch: - /PJ Masks.exe: + "/PJ Masks.exe": - when: - store: steam steam: @@ -384808,7 +385879,7 @@ PLAY DOG PLAY TAG: installDir: PLAY DOG PLAY TAG: {} launch: - /PlayDogPlayTag.exe: + "/PlayDogPlayTag.exe": - when: - os: windows store: steam @@ -384821,20 +385892,20 @@ PM-1 Inverse Universe: installDir: PM-1 Inverse Universe: {} launch: - /PM-1 space adventure.exe: + "/PM-1 space adventure.exe": - when: - os: windows store: steam steam: id: 1183650 -'POCKET CAR : VRGROUND': +"POCKET CAR : VRGROUND": installDir: POCKET CAR VR GROUND: {} steam: id: 1004710 -'POD: Planet of Death': +"POD: Planet of Death": files: - /DATA/ChShip: + "/DATA/ChShip": tags: - save when: @@ -384846,7 +385917,7 @@ POK: id: 711610 POLYBIUS: files: - /Llamasoft_GameSavedata: + "/Llamasoft_GameSavedata": tags: - config - save @@ -384855,7 +385926,7 @@ POLYBIUS: installDir: POLYBIUS: {} launch: - /Polybius.exe: + "/Polybius.exe": - when: - os: windows store: steam @@ -384863,7 +385934,7 @@ POLYBIUS: id: 906120 POLYGON: files: - /POLYGON/Saved/Config/Windows: + "/POLYGON/Saved/Config/Windows": tags: - config when: @@ -384871,22 +385942,22 @@ POLYGON: installDir: POLYGON: {} launch: - /POLYGON.exe: + "/POLYGON.exe": - when: - bit: 64 os: windows store: steam steam: id: 1241100 -'POP: Methodology Experiment One': +"POP: Methodology Experiment One": installDir: POPME1: {} launch: - /popme1.app: + "/popme1.app": - when: - os: mac store: steam - /popme1.exe: + "/popme1.exe": - when: - os: windows store: steam @@ -384899,11 +385970,11 @@ POPixel: installDir: POPixel: {} launch: - /popixel.app/Contents/MacOS/popixel: + "/popixel.app/Contents/MacOS/popixel": - when: - os: mac store: steam - /popixel.exe: + "/popixel.exe": - when: - os: windows store: steam @@ -384919,11 +385990,11 @@ PORN Pizza Delivery Boy: Pizza Delivery Boy: {} steam: id: 1263130 -'POWERCUT, Inc.': +"POWERCUT, Inc.": installDir: powercutinc: {} launch: - /nw.exe: + "/nw.exe": - when: - bit: 64 os: windows @@ -384934,17 +386005,17 @@ PPDD: installDir: PPDD: {} launch: - /PPDD.exe: + "/PPDD.exe": - when: - os: windows store: steam steam: id: 1131680 -'PRE:ONE': +"PRE:ONE": installDir: PREONE: {} launch: - /PRE.exe: + "/PRE.exe": - when: - os: windows store: steam @@ -384954,7 +386025,7 @@ PRESim: installDir: PRESim: {} launch: - /PRESim.exe: + "/PRESim.exe": - when: - os: windows store: steam @@ -384962,7 +386033,7 @@ PRESim: id: 696840 PRICE: files: - /savedata: + "/savedata": tags: - save when: @@ -384970,7 +386041,7 @@ PRICE: installDir: PRICE: {} launch: - /PRICE.exe: + "/PRICE.exe": - when: - os: windows store: steam @@ -384980,7 +386051,7 @@ PRISON OF SON: installDir: prisonofson: {} launch: - /PrisonOfSon.exe: + "/PrisonOfSon.exe": - when: - os: windows store: steam @@ -384990,29 +386061,29 @@ PROELIUM: installDir: Slavicus: {} launch: - /Slavicus.exe: - - arguments: '-screen-height 720 -screen-width 1280' + "/Slavicus.exe": + - arguments: "-screen-height 720 -screen-width 1280" when: - os: windows store: steam - - arguments: '-screen-height 1080 -screen-width 1920' + - arguments: "-screen-height 1080 -screen-width 1920" when: - os: windows store: steam steam: id: 941160 -'PROJECT D : Human Risen': +"PROJECT D : Human Risen": steam: id: 1179280 PROJECT RUN: installDir: PROJECTRUN: {} launch: - /PROJECT RUN.exe: + "/PROJECT RUN.exe": - when: - os: windows store: steam - /prmacrelease.app/Contents/MacOS/PROJECT RUN: + "/prmacrelease.app/Contents/MacOS/PROJECT RUN": - when: - os: mac store: steam @@ -385022,7 +386093,7 @@ PROP AND SEEK: installDir: PropandSeek: {} launch: - /PropandSeek.exe: + "/PropandSeek.exe": - when: - bit: 64 os: windows @@ -385034,24 +386105,24 @@ PROTEST SIMULATOR: id: 1131650 PROTOCORE: files: - /YUM/Saved/Config/WindowsNoEditor: + "/YUM/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /YUM/Saved/SaveGames: + "/YUM/Saved/SaveGames": tags: - save when: - os: windows steam: id: 906820 -'PROZE: Enlightenment': +"PROZE: Enlightenment": installDir: PROZE_Enlightenment: {} steam: id: 924250 -'PROZE: Prologue': +"PROZE: Prologue": installDir: PROZE_Prologue: {} steam: @@ -385060,7 +386131,7 @@ PRiCERPG: installDir: PRiCERPG: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -385070,7 +386141,7 @@ PRiO: installDir: PRiO: {} launch: - /PRiO.exe: + "/PRiO.exe": - when: - store: steam steam: @@ -385079,38 +386150,38 @@ PSI Magic: installDir: PSI Magic: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam steam: id: 888200 -'PT Boats: Knights of the Sea': +"PT Boats: Knights of the Sea": installDir: PT Boats Knights of the Sea: {} launch: - /PT-Boats.exe: + "/PT-Boats.exe": - when: - store: steam steam: id: 10250 -'PT Boats: South Gambit': +"PT Boats: South Gambit": installDir: PT Boats South Gambit: {} launch: - /PTBoatsSG.exe: + "/PTBoatsSG.exe": - when: - store: steam steam: id: 10260 PUBG Lite: files: - /ShadowTrackerExtra/Saved/Config/WindowsNoEditor: + "/ShadowTrackerExtra/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /ShadowTrackerExtra/Saved/SaveGames: + "/ShadowTrackerExtra/Saved/SaveGames": tags: - save when: @@ -385119,16 +386190,16 @@ PUBG Training Camp: installDir: PubgTrainingCamp: {} launch: - /PubgTrainingCamp.exe: + "/PubgTrainingCamp.exe": - when: - bit: 64 os: windows store: steam steam: id: 777320 -'PUBG: Battlegrounds': +"PUBG: Battlegrounds": files: - /TslGame/Saved/Config/WindowsNoEditor: + "/TslGame/Saved/Config/WindowsNoEditor": tags: - config when: @@ -385136,10 +386207,8 @@ PUBG Training Camp: installDir: PUBG: {} launch: - /TslGame/Binaries/Win64/ExecPubg.exe: - - arguments: >- - -LobbyUrl=https://prod-live-front.playbattlegrounds.com/index.html -XeVersion=0.1.0.0 -XeAlways - -EnableScreenshotWhenCrash -CrashSendLog -HitchFpsPercentage=5 -EnableSSLCertCheck + "/TslGame/Binaries/Win64/ExecPubg.exe": + - arguments: "-LobbyUrl=https://prod-live-front.playbattlegrounds.com/index.html -XeVersion=0.1.0.0 -XeAlways -EnableScreenshotWhenCrash -CrashSendLog -HitchFpsPercentage=5 -EnableSSLCertCheck" when: - bit: 64 os: windows @@ -385150,14 +386219,14 @@ PUBGNite: installDir: PUBNite: {} launch: - /PUBGNite.exe: + "/PUBGNite.exe": - when: - store: steam steam: id: 884200 -'PULSAR: Lost Colony': +"PULSAR: Lost Colony": files: - /Saves: + "/Saves": tags: - save when: @@ -385166,18 +386235,18 @@ PUBGNite: installDir: PULSARLostColony: {} launch: - /PULSARLostColony.app: - - arguments: '-enable_steam' + "/PULSARLostColony.app": + - arguments: "-enable_steam" when: - os: mac store: steam - /PULSAR_LostColony.exe: - - arguments: '-enable_steam' + "/PULSAR_LostColony.exe": + - arguments: "-enable_steam" when: - os: windows store: steam - /PULSAR_LostColony.x86_64: - - arguments: '-enable_steam' + "/PULSAR_LostColony.x86_64": + - arguments: "-enable_steam" when: - os: linux store: steam @@ -385187,15 +386256,15 @@ PULSOR: installDir: PULSOR: {} launch: - /PULSOR.app: + "/PULSOR.app": - when: - os: mac store: steam - /PULSOR.exe: + "/PULSOR.exe": - when: - os: windows store: steam - /PULSOR.x86: + "/PULSOR.x86": - when: - os: linux store: steam @@ -385209,7 +386278,7 @@ PUNK-EX: installDir: Starboost EX: {} launch: - /Starboost EX.exe: + "/Starboost EX.exe": - when: - os: windows store: steam @@ -385219,39 +386288,39 @@ PUT IN BAD: installDir: PUT IN BAD: {} launch: - /PUT IN BAD.exe: + "/PUT IN BAD.exe": - when: - store: steam steam: id: 1181010 -'PUTIN VS HITLER: POLITICAL KOMBAT': +"PUTIN VS HITLER: POLITICAL KOMBAT": steam: id: 1209960 -'PUZZLE: ANIMALS': +"PUZZLE: ANIMALS": installDir: PUZZLE ANIMALS: {} launch: - /PUZZLE ANIMALS.exe: + "/PUZZLE ANIMALS.exe": - when: - os: windows store: steam steam: id: 1023570 -'PUZZLE: BIRDS': +"PUZZLE: BIRDS": installDir: PUZZLE BIRDS: {} launch: - /PUZZLE - BIRDS.exe: + "/PUZZLE - BIRDS.exe": - when: - os: windows store: steam steam: id: 1006720 -'PUZZLE: ULTIMATE': +"PUZZLE: ULTIMATE": installDir: PUZZLE ULTIMATE: {} launch: - /PUZZLE ULTIMATE.exe: + "/PUZZLE ULTIMATE.exe": - when: - os: windows store: steam @@ -385259,7 +386328,7 @@ PUT IN BAD: id: 1079720 PWND: files: - /PWND: + "/PWND": tags: - config when: @@ -385275,19 +386344,19 @@ Pac Adventures 3D: installDir: Pac Adventures 3D: {} launch: - /Pac3D.exe: + "/Pac3D.exe": - when: - store: steam steam: id: 873720 Pac-Man 256: files: - /AppData/LocalLow/Hipster Sprockets: + "/AppData/LocalLow/Hipster Sprockets": tags: - save when: - os: windows - /unity3d/Hipster Sprockets/PAC-MAN256: + "/unity3d/Hipster Sprockets/PAC-MAN256": tags: - config - save @@ -385296,15 +386365,15 @@ Pac-Man 256: installDir: PAC-MAN 256: {} launch: - /PAC-MAN256.app: + "/PAC-MAN256.app": - when: - os: mac store: steam - /PAC-MAN256.exe: + "/PAC-MAN256.exe": - when: - os: windows store: steam - /startgame.sh: + "/startgame.sh": - when: - os: linux store: steam @@ -385316,19 +386385,19 @@ Pac-Man 256: id: 455400 Pac-Man All-Stars: files: - /Config/SetupInfo.txt: + "/Config/SetupInfo.txt": tags: - config when: - os: windows - /assets/save/gamedata.dat: + "/assets/save/gamedata.dat": tags: - save when: - os: windows Pac-Man Championship Edition 2: files: - /Pac-man CE2//AutoSave: + "/Pac-man CE2//AutoSave": tags: - config - save @@ -385337,7 +386406,7 @@ Pac-Man Championship Edition 2: installDir: FLUID: {} launch: - /PCE2.exe: + "/PCE2.exe": - when: - os: windows store: steam @@ -385345,7 +386414,7 @@ Pac-Man Championship Edition 2: id: 441380 Pac-Man Championship Edition DX+: files: - /userdata//236450: + "/userdata//236450": tags: - save when: @@ -385354,7 +386423,7 @@ Pac-Man Championship Edition DX+: installDir: PAC-MAN Championship Edition DX+: {} launch: - /PAC-MAN.exe: + "/PAC-MAN.exe": - when: - os: windows store: steam @@ -385366,7 +386435,7 @@ Pac-Man Championship Edition DX+: id: 236450 Pac-Man Museum: files: - /userdata//236470/remote/pacmuseum.sav: + "/userdata//236470/remote/pacmuseum.sav": tags: - save when: @@ -385375,7 +386444,7 @@ Pac-Man Museum: installDir: Pac-Man Museum: {} launch: - /PACMuseum.exe: + "/PACMuseum.exe": - when: - os: windows store: steam @@ -385383,12 +386452,13 @@ Pac-Man Museum: id: 236470 Pac-Man Museum Plus: files: - /BANDAI NAMCO Entertainment/PAC-MAN MUSEUM Plus/Saved/SaveGames/: + "/BANDAI NAMCO Entertainment/PAC-MAN MUSEUM Plus/Saved/SaveGames/": tags: - save when: - - store: steam - /Packages/NAMCOBANDAIGamesInc.PACMANMUSEUMPLUS_gdy2aq6ez762w/SystemAppData/wgs: + - os: windows + store: steam + "/Packages/NAMCOBANDAIGamesInc.PACMANMUSEUMPLUS_gdy2aq6ez762w/SystemAppData/wgs": tags: - save when: @@ -385397,7 +386467,7 @@ Pac-Man Museum Plus: installDir: PAC-MAN MUSEUM PLUS: {} launch: - /PAC-MAN MUSEUM+.exe: + "/PAC-MAN MUSEUM+.exe": - when: - bit: 64 os: windows @@ -385410,53 +386480,53 @@ Pac-Man Museum Plus: id: 1665130 Pac-Man World 2: files: - /saves/PacSave: + "/saves/PacSave": tags: - save when: - os: windows - /settings.cfg: + "/settings.cfg": tags: - config when: - os: windows Pac-Man World 3: files: - /Namco/Pac-Man World 3/PMW3*: + "/Namco/Pac-Man World 3/PMW3*": tags: - save when: - os: windows - /Namco/Pac-Man World 3/config.ini: + "/Namco/Pac-Man World 3/config.ini": tags: - config when: - os: windows - /Electronic Arts/Pac-Man World 3/PMW3*: + "/Electronic Arts/Pac-Man World 3/PMW3*": tags: - save when: - os: windows - /Electronic Arts/Pac-Man World 3/config.ini: + "/Electronic Arts/Pac-Man World 3/config.ini": tags: - config when: - os: windows Pac-Man World Rally: files: - /Pac-Man World Rally/PMR/PMR.sav: + "/Pac-Man World Rally/PMR/PMR.sav": tags: - save when: - os: windows - /Pac-Man World Rally/Settings.ini: + "/Pac-Man World Rally/Settings.ini": tags: - config when: - os: windows Pac-Man World Re-Pac: files: - /BANDAI NAMCO Entertainment/PAC-MAN WORLD Re-Pac: + "/BANDAI NAMCO Entertainment/PAC-MAN WORLD Re-Pac": tags: - save when: @@ -385464,7 +386534,7 @@ Pac-Man World Re-Pac: installDir: PAC-MAN WORLD Re-PAC: {} launch: - /PAC-MAN WORLD Re-PAC.exe: + "/PAC-MAN WORLD Re-PAC.exe": - when: - bit: 64 os: windows @@ -385473,7 +386543,7 @@ Pac-Man World Re-Pac: id: 1859470 Pac-Man and the Ghostly Adventures: files: - /userdata//239720/remote: + "/userdata//239720/remote": tags: - save when: @@ -385482,7 +386552,7 @@ Pac-Man and the Ghostly Adventures: installDir: Pac-Man and the Ghostly Adventures: {} launch: - /PacMan.exe: + "/PacMan.exe": - when: - os: windows store: steam @@ -385492,14 +386562,14 @@ Pac-Man and the Ghostly Adventures: - config steam: id: 239720 -'Pac-Man: Adventures in Time': +"Pac-Man: Adventures in Time": files: - /options.dat: + "/options.dat": tags: - config when: - os: windows - /slot#.dat: + "/slot#.dat": tags: - save when: @@ -385508,7 +386578,7 @@ PacaPlus: installDir: PacaPlus: {} launch: - /pacaplus.exe: + "/pacaplus.exe": - when: - os: windows store: steam @@ -385516,12 +386586,12 @@ PacaPlus: id: 610610 Pacer: files: - /FormulaFusion/Saved/Config/WindowsNoEditor: + "/FormulaFusion/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /FormulaFusion/Saved/SaveGames: + "/FormulaFusion/Saved/SaveGames": tags: - save when: @@ -385529,7 +386599,7 @@ Pacer: installDir: Formula Fusion: {} launch: - /Pacer.exe: + "/Pacer.exe": - when: - bit: 64 os: windows @@ -385540,7 +386610,7 @@ Pachansky Mathematics 2+2=8: installDir: Pachansky Mathematics 2+2=8: {} launch: - /PM228.exe: + "/PM228.exe": - when: - os: windows store: steam @@ -385548,12 +386618,12 @@ Pachansky Mathematics 2+2=8: id: 918260 Pacific General: files: - /Save: + "/Save": tags: - save when: - os: windows - /data/PREFS.DAT: + "/data/PREFS.DAT": tags: - config when: @@ -385563,7 +386633,7 @@ Pacific General: installDir: Pacific General: {} launch: - /PACGEN.EXE: + "/PACGEN.EXE": - when: - store: steam steam: @@ -385572,19 +386642,19 @@ Pacific Liberation Force: installDir: Graviteam Tactics Shilovo 1942: {} launch: - /PLF.exe: + "/PLF.exe": - when: - store: steam steam: id: 313190 Pacific Storm: files: - /config: + "/config": tags: - config when: - os: windows - /save/: + "/save/": tags: - save when: @@ -385592,7 +386662,7 @@ Pacific Storm: installDir: Pacific Storm: {} launch: - /monsters.bat: + "/monsters.bat": - when: - store: steam steam: @@ -385601,48 +386671,48 @@ Pacific Storm 6 - Battle for Normandy: installDir: arashi6: {} launch: - /launcher.exe: + "/launcher.exe": - when: - os: windows store: steam steam: id: 870520 -'Pacific Storm: Allies': +"Pacific Storm: Allies": installDir: Pacific Storm - Allies: {} launch: - /bin/allies.exe: - - arguments: '-f -a MainMenu' + "/bin/allies.exe": + - arguments: "-f -a MainMenu" when: - store: steam - workingDir: /bin + workingDir: "/bin" steam: id: 11260 Pacific Strike: files: - /*.SAV: + "/*.SAV": tags: - save when: - os: dos - /PS.CFG: + "/PS.CFG": tags: - config when: - os: dos Pacify: files: - /Pacify/Saved/Config/WindowsNoEditor: + "/Pacify/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /Pacify/Saved/SaveGames: + "/Pacify/Saved/SaveGames": tags: - save when: - os: windows - /Pacify/Saved/SaveGames/videosettings.sav: + "/Pacify/Saved/SaveGames/videosettings.sav": tags: - config when: @@ -385650,11 +386720,11 @@ Pacify: installDir: Pacify: {} launch: - /Pacify.app: + "/Pacify.app": - when: - os: mac store: steam - /Pacify.exe: + "/Pacify.exe": - when: - bit: 64 os: windows @@ -385665,11 +386735,11 @@ Package Rush: installDir: Package Rush: {} launch: - /PackageRush.app/Contents/MacOS/PackageRush: + "/PackageRush.app/Contents/MacOS/PackageRush": - when: - os: mac store: steam - /PackageRush/PackageRush.exe: + "/PackageRush/PackageRush.exe": - when: - os: windows store: steam @@ -385679,7 +386749,7 @@ PackageRun: installDir: PackageRun: {} launch: - /PackageRun.exe: + "/PackageRun.exe": - when: - os: windows store: steam @@ -385689,15 +386759,15 @@ Packed Train: installDir: Packed Train: {} launch: - /PackedTrain.app: + "/PackedTrain.app": - when: - os: mac store: steam - /PackedTrain.exe: + "/PackedTrain.exe": - when: - os: windows store: steam - /PackedTrain.x86: + "/PackedTrain.x86": - when: - os: linux store: steam @@ -385705,9 +386775,9 @@ Packed Train: id: 821400 Packet Queen: installDir: - 'Packet Queen #': {} + "Packet Queen #": {} launch: - /PacketQueenSharp.exe: + "/PacketQueenSharp.exe": - when: - os: windows store: steam @@ -385717,7 +386787,7 @@ PacketStorm: installDir: PacketStorm: {} launch: - /PacketStorm.exe: + "/PacketStorm.exe": - when: - store: steam steam: @@ -385726,15 +386796,15 @@ Pact with a Witch: installDir: pact with a witch: {} launch: - /pact_with_a_witch.app: + "/pact_with_a_witch.app": - when: - os: mac store: steam - /pact_with_a_witch.exe: + "/pact_with_a_witch.exe": - when: - os: windows store: steam - /pact_with_a_witch.sh: + "/pact_with_a_witch.sh": - when: - os: linux store: steam @@ -385744,7 +386814,7 @@ Paddle Battle: installDir: Paddle Battle: {} launch: - /Paddlebattle.exe: + "/Paddlebattle.exe": - when: - os: windows store: steam @@ -385764,7 +386834,7 @@ Pagan Online: installDir: Pagan Online: {} launch: - /Pagan.exe: + "/Pagan.exe": - when: - os: windows store: steam @@ -385772,12 +386842,12 @@ Pagan Online: id: 992640 Paganitzu: files: - /P1_GAME*.SAV: + "/P1_GAME*.SAV": tags: - save when: - os: dos - /P1_HIGH.SCO: + "/P1_HIGH.SCO": tags: - save when: @@ -385785,42 +386855,42 @@ Paganitzu: installDir: Paganitzu: {} launch: - /Dosbox/dosbox: - - arguments: '-conf \"..\\PAGA.conf\" -noconsole -c' + "/Dosbox/dosbox": + - arguments: "-conf \\\"..\\\\PAGA.conf\\\" -noconsole -c" when: - os: linux store: steam - workingDir: /Dosbox - /Paganitzu.app: + workingDir: "/Dosbox" + "/Paganitzu.app": - when: - os: mac store: steam - /Paganitzu/Dosbox/dosbox.exe: - - arguments: '-conf \"..\\PAGA.conf\" -noconsole -c' + "/Paganitzu/Dosbox/dosbox.exe": + - arguments: "-conf \\\"..\\\\PAGA.conf\\\" -noconsole -c" when: - os: windows store: steam - workingDir: /Paganitzu/dosbox + workingDir: "/Paganitzu/dosbox" steam: id: 358230 Pagans Must Die: installDir: Pagans Must Die: {} launch: - /Pagans Must Die.exe: + "/Pagans Must Die.exe": - when: - os: windows store: steam steam: id: 1024720 -'Pahelika: Revelations HD': +"Pahelika: Revelations HD": files: - /IronCode/PahelikaRv: + "/IronCode/PahelikaRv": tags: - save when: - os: windows - /IronCode/PahelikaRv/cfg.xml: + "/IronCode/PahelikaRv/cfg.xml": tags: - config when: @@ -385828,16 +386898,16 @@ Pagans Must Die: installDir: PahelikaRV: {} launch: - /PahelikaRVJNIRelease.exe: + "/PahelikaRVJNIRelease.exe": - when: - store: steam steam: id: 333650 -'Pahelika: Secret Legends': +"Pahelika: Secret Legends": installDir: Pahelika Secret Legends: {} launch: - /PahelikaRelease.exe: + "/PahelikaRelease.exe": - when: - store: steam steam: @@ -385855,7 +386925,7 @@ Pain of War: installDir: Pain of War: {} launch: - /Launcher.exe: + "/Launcher.exe": - when: - os: windows store: steam @@ -385866,12 +386936,12 @@ Pain-to-win: id: 727690 Painkiller: files: - /Bin/config.ini: + "/Bin/config.ini": tags: - config when: - os: windows - /SaveGames: + "/SaveGames": tags: - save when: @@ -385884,29 +386954,29 @@ Painkiller: installDir: Painkiller Black Edition: {} launch: - /Bin/Painkiller.exe: + "/Bin/Painkiller.exe": - when: - store: steam steam: id: 39530 -'Painkiller: Hell & Damnation': +"Painkiller: Hell & Damnation": files: - /Library/Application Support/Steam/ACTiVATED/214870/remote: + "/Library/Application Support/Steam/ACTiVATED/214870/remote": tags: - save when: - os: mac - /userdata//214870/remote: + "/userdata//214870/remote": tags: - save when: - store: steam - /My Games/Painkiller Hell and Damnation/PKHDGame/Config: + "/My Games/Painkiller Hell and Damnation/PKHDGame/Config": tags: - config when: - os: windows - /Painkiller Hell and Damnation/PKHDGame/Config: + "/Painkiller Hell and Damnation/PKHDGame/Config": tags: - config when: @@ -385919,43 +386989,43 @@ Painkiller: installDir: Painkiller Hell & Damnation: {} launch: - /Binaries/Win32/PKHDGame-Win32-Shipping.exe: - - arguments: '-seekfreeloadingpcconsole -fullscreen' + "/Binaries/Win32/PKHDGame-Win32-Shipping.exe": + - arguments: "-seekfreeloadingpcconsole -fullscreen" when: - os: windows store: steam - workingDir: /Binaries/Win32 - - arguments: '-seekfreeloadingpcconsole -windowed' + workingDir: "/Binaries/Win32" + - arguments: "-seekfreeloadingpcconsole -windowed" when: - os: windows store: steam - workingDir: /Binaries/Win32 - /Docs/PDK_Instructions.pdf: + workingDir: "/Binaries/Win32" + "/Docs/PDK_Instructions.pdf": - when: - store: steam - /PKHDGame.app/Contents/MacOS/PKHDGame: - - arguments: '-seekfreeloadingpcconsole -fullscreen' + "/PKHDGame.app/Contents/MacOS/PKHDGame": + - arguments: "-seekfreeloadingpcconsole -fullscreen" when: - os: mac store: steam - /PKHDGame.sh: + "/PKHDGame.sh": - when: - os: linux store: steam - /view-release-notes.sh: + "/view-release-notes.sh": - when: - os: linux store: steam steam: id: 214870 -'Painkiller: Overdose': +"Painkiller: Overdose": files: - /Painkiller Overdose: + "/Painkiller Overdose": tags: - config when: - os: windows - /Painkiller Overdose/Saves: + "/Painkiller Overdose/Saves": tags: - save when: @@ -385965,20 +387035,20 @@ Painkiller: installDir: Painkiller Overdose: {} launch: - /bin/Overdose.exe: + "/bin/Overdose.exe": - when: - store: steam - workingDir: /bin + workingDir: "/bin" steam: id: 3270 -'Painkiller: Recurring Evil': +"Painkiller: Recurring Evil": files: - /Painkiller Recurring Evil/RE.ini: + "/Painkiller Recurring Evil/RE.ini": tags: - config when: - os: windows - /Painkiller Recurring Evil/Saves: + "/Painkiller Recurring Evil/Saves": tags: - save when: @@ -385986,36 +387056,36 @@ Painkiller: installDir: Painkiller Recurring Evil: {} launch: - /Bin/RecurringEvil.exe: + "/Bin/RecurringEvil.exe": - when: - store: steam - /Bin/RecurringEvilEditor.exe: + "/Bin/RecurringEvilEditor.exe": - when: - store: steam steam: id: 206760 -'Painkiller: Redemption': +"Painkiller: Redemption": installDir: Painkiller Redemption: {} launch: - /Bin/Redemption.exe: + "/Bin/Redemption.exe": - when: - store: steam - workingDir: /Bin - /Bin/RedemptionEditor.exe: + workingDir: "/Bin" + "/Bin/RedemptionEditor.exe": - when: - store: steam - workingDir: /Bin + workingDir: "/Bin" steam: id: 65560 -'Painkiller: Resurrection': +"Painkiller: Resurrection": files: - /Painkiller Resurrection/Resurrection.ini: + "/Painkiller Resurrection/Resurrection.ini": tags: - config when: - os: windows - /Painkiller Resurrection/Saves: + "/Painkiller Resurrection/Saves": tags: - save when: @@ -386023,25 +387093,25 @@ Painkiller: installDir: Painkiller Resurrection: {} launch: - /bin/Resurrection.exe: + "/bin/Resurrection.exe": - when: - store: steam - workingDir: /bin + workingDir: "/bin" steam: id: 39560 Paint It Back: installDir: Paint it Back: {} launch: - /pib.app: + "/pib.app": - when: - os: mac store: steam - /pib.exe: + "/pib.exe": - when: - os: windows store: steam - /pib_launcher.sh: + "/pib_launcher.sh": - when: - os: linux store: steam @@ -386051,16 +387121,16 @@ Paint It Black: installDir: Paint It Black: {} launch: - /Paint It Black.app/Contents/MacOS/Paint It Black: + "/Paint It Black.app/Contents/MacOS/Paint It Black": - when: - os: mac store: steam - /Paint It Black.exe: + "/Paint It Black.exe": - when: - bit: 64 os: windows store: steam - /pib_linux.x86_64: + "/pib_linux.x86_64": - when: - bit: 64 os: linux @@ -386077,17 +387147,17 @@ Paint Warfare: installDir: Paint Warfare: {} launch: - /Linux/Paint Warfare.x86_64: + "/Linux/Paint Warfare.x86_64": - when: - bit: 64 os: linux store: steam - /Windows/Paint Warfare.exe: + "/Windows/Paint Warfare.exe": - when: - bit: 64 os: windows store: steam - /macOS/Paint Warfare.app: + "/macOS/Paint Warfare.app": - when: - os: mac store: steam @@ -386095,22 +387165,22 @@ Paint Warfare: id: 1190150 Paint the Town Red: files: - /AppData/LocalLow/South East Games/Paint The Town Red/SaveData/savedata.dat: + "/AppData/LocalLow/South East Games/Paint The Town Red/SaveData/savedata.dat": tags: - save when: - os: windows - /AppData/LocalLow/South East Games/Paint The Town Red/Settings/settings.dat: + "/AppData/LocalLow/South East Games/Paint The Town Red/Settings/settings.dat": tags: - config when: - os: windows - /unity3d/South East Games/Paint The Town Red: + "/unity3d/South East Games/Paint The Town Red": tags: - config when: - os: linux - /unity3d/South East Games/Paint The Town Red/SaveData: + "/unity3d/South East Games/Paint The Town Red/SaveData": tags: - save when: @@ -386118,16 +387188,19 @@ Paint the Town Red: installDir: Paint the Town Red: {} launch: - /PaintTheTownRed.app/Contents/MacOS/Paint The Town Red: + "/PaintTheTownRed.app/Contents/MacOS/Paint The Town Red": - when: - os: mac store: steam - /PaintTheTownRed.exe: + "/PaintTheTownRed.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam - /PaintTheTownRed.x86_64: + "/PaintTheTownRed.x86_64": - when: - bit: 64 os: linux @@ -386145,20 +387218,20 @@ Paintball 707: installDir: Paintball 707: {} launch: - /Paintball 707.app: + "/Paintball 707.app": - when: - os: mac store: steam - /Paintball 707.exe: + "/Paintball 707.exe": - when: - os: windows store: steam - /Paintball 707.x86: + "/Paintball 707.x86": - when: - bit: 32 os: linux store: steam - /Paintball 707.x86_64: + "/Paintball 707.x86_64": - when: - bit: 64 os: linux @@ -386169,7 +387242,7 @@ Paintball Chibis: installDir: Paintball Chibis: {} launch: - /PaintballChibis.exe: + "/PaintballChibis.exe": - when: - os: windows store: steam @@ -386179,7 +387252,7 @@ Paintball War: installDir: Paintball War: {} launch: - /PaintBall War.exe: + "/PaintBall War.exe": - when: - os: windows store: steam @@ -386189,7 +387262,7 @@ Paintball eXtreme: installDir: Paintball eXtreme: {} launch: - /launcher.exe: + "/launcher.exe": - when: - store: steam steam: @@ -386203,7 +387276,7 @@ Painted Legend: installDir: Painted Legend: {} launch: - /PaintedLegend.exe: + "/PaintedLegend.exe": - when: - os: windows store: steam @@ -386213,7 +387286,7 @@ Painted Memories: installDir: Painted Memories: {} launch: - /PaintedM.exe: + "/PaintedM.exe": - when: - os: windows store: steam @@ -386223,7 +387296,7 @@ Painters Guild: installDir: PaintersGuild: {} launch: - /PaintersGuild.exe: + "/PaintersGuild.exe": - when: - store: steam steam: @@ -386240,23 +387313,23 @@ Pairs: installDir: content: {} launch: - /Pairs-1.0-market/Pairs.app: + "/Pairs-1.0-market/Pairs.app": - when: - os: mac store: steam - /Pairs-1.0-market/Pairs.exe: + "/Pairs-1.0-market/Pairs.exe": - when: - os: windows store: steam - /Pairs-1.0-market/Pairs.sh: + "/Pairs-1.0-market/Pairs.sh": - when: - os: linux store: steam steam: id: 732950 -'Pajama Sam 2: Thunder and Lightning Aren''t So Frightening': +"Pajama Sam 2: Thunder and Lightning Aren't So Frightening": files: - /Saves/pajama2-pajama2.*: + "/Saves/pajama2-pajama2.*": tags: - save when: @@ -386269,43 +387342,43 @@ Pairs: installDir: Pajama Sam 2: {} launch: - /ScummVM_Linux/launch_pajamasam2_opengl.sh: + "/ScummVM_Linux/launch_pajamasam2_opengl.sh": - when: - bit: 64 os: linux store: steam - workingDir: /ScummVM_Linux - /ScummVM_Linux/launch_pajamasam2_safe.sh: + workingDir: "/ScummVM_Linux" + "/ScummVM_Linux/launch_pajamasam2_safe.sh": - when: - bit: 64 os: linux store: steam - workingDir: /ScummVM_Linux - /ScummVM_Mac/ScummVM.app/Contents/MacOS/scummvm: - - arguments: '-c scummvm-pajamasam2-opengl.ini pajama2' + workingDir: "/ScummVM_Linux" + "/ScummVM_Mac/ScummVM.app/Contents/MacOS/scummvm": + - arguments: "-c scummvm-pajamasam2-opengl.ini pajama2" when: - os: mac store: steam - workingDir: /ScummVM_Mac - - arguments: '-c scummvm-pajamasam2-safe.ini pajama2' + workingDir: "/ScummVM_Mac" + - arguments: "-c scummvm-pajamasam2-safe.ini pajama2" when: - os: mac store: steam - workingDir: /ScummVM_Mac - /ScummVM_Windows/scummvm.exe: - - arguments: '--no-console -c scummvm-pajamasam2-opengl.ini pajama2' + workingDir: "/ScummVM_Mac" + "/ScummVM_Windows/scummvm.exe": + - arguments: "--no-console -c scummvm-pajamasam2-opengl.ini pajama2" when: - os: windows store: steam - workingDir: /ScummVM_Windows - - arguments: '--no-console -c scummvm-pajamasam2-safe.ini pajama2' + workingDir: "/ScummVM_Windows" + - arguments: "--no-console -c scummvm-pajamasam2-safe.ini pajama2" when: - os: windows store: steam - workingDir: /ScummVM_Windows + workingDir: "/ScummVM_Windows" steam: id: 292780 -'Pajama Sam 3: You Are What You Eat from Your Head to Your Feet': +"Pajama Sam 3: You Are What You Eat from Your Head to Your Feet": gog: id: 1434536205 id: @@ -386314,33 +387387,33 @@ Pairs: installDir: Pajama Sam 3: {} launch: - /ScummVM_Linux/launch_pajamasam3.sh: + "/ScummVM_Linux/launch_pajamasam3.sh": - when: - os: linux store: steam - workingDir: /ScummVM_Linux - /ScummVM_Mac/ScummVM.app/Contents/MacOS/scummvm: - - arguments: '-c scummvm-pajamasam3.ini pajama3' + workingDir: "/ScummVM_Linux" + "/ScummVM_Mac/ScummVM.app/Contents/MacOS/scummvm": + - arguments: "-c scummvm-pajamasam3.ini pajama3" when: - os: mac store: steam - workingDir: /ScummVM_Mac - /ScummVM_Windows/scummvm.exe: - - arguments: '--no-console -c scummvm-pajamasam3.ini pajama3' + workingDir: "/ScummVM_Mac" + "/ScummVM_Windows/scummvm.exe": + - arguments: "--no-console -c scummvm-pajamasam3.ini pajama3" when: - os: windows store: steam - workingDir: /ScummVM_Windows + workingDir: "/ScummVM_Windows" steam: id: 292800 -'Pajama Sam 4: Life Is Rough When You Lose Your Stuff!': +"Pajama Sam 4: Life Is Rough When You Lose Your Stuff!": files: - /SaveGames/PJ_LifeTough_save_*.*: + "/SaveGames/PJ_LifeTough_save_*.*": tags: - save when: - os: windows - /SaveGames/game_options.dat: + "/SaveGames/game_options.dat": tags: - config when: @@ -386353,13 +387426,13 @@ Pairs: installDir: Pajama Sam 4: {} launch: - /PajamaLRS.exe: + "/PajamaLRS.exe": - when: - os: windows store: steam steam: id: 292820 -Pajama Sam's Lost & Found: +"Pajama Sam's Lost & Found": gog: id: 1434535284 id: @@ -386368,33 +387441,33 @@ Pajama Sam's Lost & Found: installDir: Pajama Sams Lost and Found: {} launch: - /ScummVM_Linux/launch_pajamasamslostandfound.sh: + "/ScummVM_Linux/launch_pajamasamslostandfound.sh": - when: - os: linux store: steam - workingDir: /ScummVM_Linux - /ScummVM_Mac/ScummVM.app/Contents/MacOS/scummvm: - - arguments: '-c scummvm-pajamasamslostandfound.ini pajamalostandfound' + workingDir: "/ScummVM_Linux" + "/ScummVM_Mac/ScummVM.app/Contents/MacOS/scummvm": + - arguments: "-c scummvm-pajamasamslostandfound.ini pajamalostandfound" when: - os: mac store: steam - workingDir: /ScummVM_Mac - /ScummVM_Windows/scummvm.exe: - - arguments: '--no-console -c scummvm-pajamasamslostandfound.ini pajamalostandfound' + workingDir: "/ScummVM_Mac" + "/ScummVM_Windows/scummvm.exe": + - arguments: "--no-console -c scummvm-pajamasamslostandfound.ini pajamalostandfound" when: - os: windows store: steam - workingDir: /ScummVM_Windows + workingDir: "/ScummVM_Windows" steam: id: 292860 -Pajama Sam's Sock Works: +"Pajama Sam's Sock Works": files: - /Saves: + "/Saves": tags: - save when: - os: windows - /ScummVM_Windows/scummvm-pajamasamssockworks.ini: + "/ScummVM_Windows/scummvm-pajamasamssockworks.ini": tags: - config when: @@ -386407,58 +387480,58 @@ Pajama Sam's Sock Works: installDir: Pajama Sams Sock Works: {} launch: - /ScummVM_Linux/launch_pajamasamssockworks.sh: + "/ScummVM_Linux/launch_pajamasamssockworks.sh": - when: - os: linux store: steam - workingDir: /ScummVM_Linux - /ScummVM_Mac/ScummVM.app/Contents/MacOS/scummvm: - - arguments: '-c scummvm-pajamasamssockworks.ini pajamasockworks' + workingDir: "/ScummVM_Linux" + "/ScummVM_Mac/ScummVM.app/Contents/MacOS/scummvm": + - arguments: "-c scummvm-pajamasamssockworks.ini pajamasockworks" when: - os: mac store: steam - workingDir: /ScummVM_Mac - /ScummVM_Windows/scummvm.exe: - - arguments: '--no-console -c scummvm-pajamasamssockworks.ini pajamasockworks' + workingDir: "/ScummVM_Mac" + "/ScummVM_Windows/scummvm.exe": + - arguments: "--no-console -c scummvm-pajamasamssockworks.ini pajamasockworks" when: - os: windows store: steam - workingDir: /ScummVM_Windows + workingDir: "/ScummVM_Windows" steam: id: 292840 -'Pajama Sam: Games to Play on Any Day': +"Pajama Sam: Games to Play on Any Day": installDir: Pajama Sam GTPOAD: {} launch: - /ScummVM_Linux/launch_pjgames.sh: + "/ScummVM_Linux/launch_pjgames.sh": - when: - os: linux store: steam - workingDir: /ScummVM_Linux - /ScummVM_Mac/ScummVM.app/Contents/MacOS/scummvm: - - arguments: '-c scummvm-pjsgtpoad.ini pjgames' + workingDir: "/ScummVM_Linux" + "/ScummVM_Mac/ScummVM.app/Contents/MacOS/scummvm": + - arguments: "-c scummvm-pjsgtpoad.ini pjgames" when: - os: mac store: steam - workingDir: /ScummVM_Mac - /ScummVM_Windows/ScummVM.exe: - - arguments: '--no-console -c scummvm-pjsgtpoad.ini pjgames' + workingDir: "/ScummVM_Mac" + "/ScummVM_Windows/ScummVM.exe": + - arguments: "--no-console -c scummvm-pjsgtpoad.ini pjgames" when: - os: windows store: steam - workingDir: /ScummVM_Windows + workingDir: "/ScummVM_Windows" steam: id: 317020 -'Pajama Sam: No Need to Hide When It''s Dark Outside': +"Pajama Sam: No Need to Hide When It's Dark Outside": files: - /Saves: + "/Saves": tags: - save when: - os: windows - os: mac - os: linux - /ScummVM_Linux/scummvm-pajamasam1.ini: + "/ScummVM_Linux/scummvm-pajamasam1.ini": tags: - config when: @@ -386471,30 +387544,30 @@ Pajama Sam's Sock Works: installDir: Pajama Sam 1: {} launch: - /ScummVM_Linux/launch_pajamasam1.sh: + "/ScummVM_Linux/launch_pajamasam1.sh": - when: - os: linux store: steam - workingDir: /ScummVM_Linux - /ScummVM_Mac/ScummVM.app/Contents/MacOS/scummvm: - - arguments: '-c scummvm-pajamasam1.ini pajama' + workingDir: "/ScummVM_Linux" + "/ScummVM_Mac/ScummVM.app/Contents/MacOS/scummvm": + - arguments: "-c scummvm-pajamasam1.ini pajama" when: - os: mac store: steam - workingDir: /ScummVM_Mac - /ScummVM_Windows/scummvm.exe: - - arguments: '--no-console -c scummvm-pajamasam1.ini pajama' + workingDir: "/ScummVM_Mac" + "/ScummVM_Windows/scummvm.exe": + - arguments: "--no-console -c scummvm-pajamasam1.ini pajama" when: - os: windows store: steam - workingDir: /ScummVM_Windows + workingDir: "/ScummVM_Windows" steam: id: 283960 Pakicetus: installDir: Pakicetus: {} launch: - /Pakicetus.exe: + "/Pakicetus.exe": - when: - os: windows store: steam @@ -386504,11 +387577,11 @@ Palace of Cards: installDir: Palace-of-Cards: {} launch: - /palace.app: + "/palace.app": - when: - os: mac store: steam - /palace.exe: + "/palace.exe": - when: - os: windows store: steam @@ -386518,7 +387591,7 @@ Palace of sky: installDir: jxxq: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: @@ -386532,15 +387605,15 @@ Paladin: installDir: Paladin: {} launch: - /Paladin: + "/Paladin": - when: - os: linux store: steam - /Paladin.app/Contents/MacOS/Paladin: + "/Paladin.app/Contents/MacOS/Paladin": - when: - os: mac store: steam - /Paladin.exe: + "/Paladin.exe": - when: - os: windows store: steam @@ -386552,7 +387625,7 @@ Paladin Dream: installDir: Paladin Dream: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: @@ -386561,16 +387634,16 @@ Paladin Duty - Knights and Blades: installDir: Paladin Duty - Knights and Blades: {} launch: - /Linux/PaladinDuty.x86_64: + "/Linux/PaladinDuty.x86_64": - when: - bit: 64 os: linux store: steam - /Mac/PaladinDuty.app: + "/Mac/PaladinDuty.app": - when: - os: mac store: steam - /Windows/PaladinDuty.exe: + "/Windows/PaladinDuty.exe": - when: - os: windows store: steam @@ -386580,19 +387653,19 @@ Paladin Slayer: installDir: Paladin Slayer: {} launch: - /PaladinSlayer.exe: + "/PaladinSlayer.exe": - when: - store: steam steam: id: 1142070 -'Paladins: Champions of the Realm': +"Paladins: Champions of the Realm": files: - /ChaosGame: + "/ChaosGame": tags: - config when: - os: windows - /My Games/Paladins/ChaosGame/Config: + "/My Games/Paladins/ChaosGame/Config": tags: - config when: @@ -386600,26 +387673,22 @@ Paladin Slayer: installDir: Paladins: {} launch: - /Binaries/Win32/PaladinsEAC.exe: - - arguments: >- - -pid=402 -steam -anon -eac_launcher_settings Settings.json -seekfreeloadingPCConsole -eac_dir - \"..\\\\EasyAntiCheat\\\\\" + "/Binaries/Win32/PaladinsEAC.exe": + - arguments: "-pid=402 -steam -anon -eac_launcher_settings Settings.json -seekfreeloadingPCConsole -eac_dir \\\"..\\\\\\\\EasyAntiCheat\\\\\\\\\\\"" when: - bit: 32 os: windows store: steam - workingDir: /Binaries - /Binaries/Win64/PaladinsEAC.exe: - - arguments: >- - -pid=402 -steam -anon -eac_launcher_settings Settings64.json -seekfreeloadingPCConsole -eac_dir - \"..\\\\EasyAntiCheat\\\\\" + workingDir: "/Binaries" + "/Binaries/Win64/PaladinsEAC.exe": + - arguments: "-pid=402 -steam -anon -eac_launcher_settings Settings64.json -seekfreeloadingPCConsole -eac_dir \\\"..\\\\\\\\EasyAntiCheat\\\\\\\\\\\"" when: - bit: 64 os: windows store: steam - workingDir: /Binaries - /HirezLauncherUI.app/Contents/MacOS/Paladins.app: - - arguments: '-pid=402 -steam -anon -seekfreeloadingpcconsole' + workingDir: "/Binaries" + "/HirezLauncherUI.app/Contents/MacOS/Paladins.app": + - arguments: "-pid=402 -steam -anon -seekfreeloadingpcconsole" when: - os: mac store: steam @@ -386629,7 +387698,7 @@ Pale Echoes: installDir: Pale Echoes: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: @@ -386646,7 +387715,7 @@ Pale Moon Crisis: installDir: Pale Moon Crisis: {} launch: - /PMC.exe: + "/PMC.exe": - when: - os: windows store: steam @@ -386656,15 +387725,15 @@ Pale Spectrum - Part Two of the Book of Gray Magic: installDir: Pale Spectrum - Part Two of the Book of Gray Magic: {} launch: - /Pale Spectrum.app: + "/Pale Spectrum.app": - when: - os: mac store: steam - /Pale Spectrum.exe: + "/Pale Spectrum.exe": - when: - os: windows store: steam - /Pale Spectrum.sh: + "/Pale Spectrum.sh": - when: - os: linux store: steam @@ -386672,18 +387741,18 @@ Pale Spectrum - Part Two of the Book of Gray Magic: id: 554180 Paleo Pines: files: - /.config/unity3d/Italic Pig/Paleo Pines/prefs: + "/.config/unity3d/Italic Pig/Paleo Pines/prefs": tags: - config when: - os: linux - /userdata//1202200/remote/PaleoPinesData: + "/userdata//1202200/remote/PaleoPinesData": tags: - save when: - os: linux store: steam - 'C:/Users/Public/Documents/Steam/RUNE/1202200': + "C:/Users/Public/Documents/Steam/RUNE/1202200": tags: - config - save @@ -386692,11 +387761,11 @@ Paleo Pines: installDir: Paleo Pines: {} launch: - /Paleo Pines.exe: + "/Paleo Pines.exe": - when: - os: windows store: steam - /Paleo Pines.x86_64: + "/Paleo Pines.x86_64": - when: - os: linux store: steam @@ -386706,7 +387775,7 @@ Paleocalypse: installDir: Paleocalypse: {} launch: - /Paleocalypse - Game.exe: + "/Paleocalypse - Game.exe": - when: - os: windows store: steam @@ -386714,12 +387783,12 @@ Paleocalypse: id: 817890 Palinurus: files: - /renpy/config.py: + "/renpy/config.py": tags: - config when: - os: windows - /RenPy/Turnip-1450744908: + "/RenPy/Turnip-1450744908": tags: - save when: @@ -386727,7 +387796,7 @@ Palinurus: installDir: Palinurus: {} launch: - /Palinurus.exe: + "/Palinurus.exe": - when: - os: windows store: steam @@ -386735,7 +387804,7 @@ Palinurus: id: 458760 Palmyra Orphanage: files: - /PalmyraOrphanage/Saved: + "/PalmyraOrphanage/Saved": tags: - config - save @@ -386744,7 +387813,7 @@ Palmyra Orphanage: installDir: Dead Orphanage: {} launch: - /PalmyraOrphanage.exe: + "/PalmyraOrphanage.exe": - when: - bit: 64 os: windows @@ -386758,17 +387827,17 @@ PamPam Kana Students: installDir: PamPam Kana Students: {} launch: - /PamPamKanaStudents.exe: + "/PamPamKanaStudents.exe": - when: - os: windows store: steam steam: id: 1127100 -'Pamali: Indonesian Folklore Horror': +"Pamali: Indonesian Folklore Horror": installDir: Pamali Indonesian Folklore Horror: {} launch: - /pjtRedLipstick.exe: + "/pjtRedLipstick.exe": - when: - bit: 64 os: windows @@ -386779,7 +387848,7 @@ Pamp Quest: installDir: Pamp Quest: {} launch: - /Pamp Quest.exe: + "/Pamp Quest.exe": - when: - os: windows store: steam @@ -386789,7 +387858,7 @@ Pan Panda: installDir: Pan Panda: {} launch: - /PanPanda.exe: + "/PanPanda.exe": - when: - os: windows store: steam @@ -386799,7 +387868,7 @@ Pan-Dimensional Conga Combat: installDir: Pan-Dimensional Conga Combat: {} launch: - /Conga.exe: + "/Conga.exe": - when: - os: windows store: steam @@ -386807,13 +387876,13 @@ Pan-Dimensional Conga Combat: id: 512680 Pan-Pan: files: - /.config/unity3d/Spelkraft Sthlm AB/PAN-PAN: + "/.config/unity3d/Spelkraft Sthlm AB/PAN-PAN": tags: - config - save when: - os: linux - /AppData/LocalLow/Spelkraft Sthlm AB/PAN-PAN: + "/AppData/LocalLow/Spelkraft Sthlm AB/PAN-PAN": tags: - config when: @@ -386823,20 +387892,20 @@ Pan-Pan: installDir: Pan-Pan: {} launch: - /PAN-PAN.app: + "/PAN-PAN.app": - when: - os: mac store: steam - /PAN-PAN.exe: + "/PAN-PAN.exe": - when: - os: windows store: steam - /PAN-PAN.x86: + "/PAN-PAN.x86": - when: - bit: 32 os: linux store: steam - /PAN-PAN.x86_64: + "/PAN-PAN.x86_64": - when: - bit: 64 os: linux @@ -386847,32 +387916,32 @@ PanGEMic: installDir: panGEMic: {} launch: - /pangemic.app: + "/pangemic.app": - when: - os: mac store: steam - /pangemic.exe: + "/pangemic.exe": - when: - os: windows store: steam steam: id: 547540 -'Panacea: Last Will': +"Panacea: Last Will": installDir: Panacea Last Will: {} launch: - /Panacea.exe: + "/Panacea.exe": - when: - bit: 64 os: windows store: steam steam: id: 773420 -Panco's Journey: +"Panco's Journey": installDir: PancosJourney: {} launch: - /PancosJourney.exe: + "/PancosJourney.exe": - when: - store: steam steam: @@ -386881,7 +387950,7 @@ Panda Hero: installDir: Panda Hero: {} launch: - /Panda Hero.exe: + "/Panda Hero.exe": - when: - os: windows store: steam @@ -386894,7 +387963,7 @@ Panda Run: installDir: Panda Run: {} launch: - /Panda Run.exe: + "/Panda Run.exe": - when: - os: windows store: steam @@ -386907,18 +387976,18 @@ Pandamonia: installDir: PandamoniaClan: {} launch: - /PC.exe: + "/PC.exe": - when: - bit: 64 os: windows store: steam steam: id: 1004210 -'Pandarama: The Lost Toys': +"Pandarama: The Lost Toys": installDir: Pandarama The Lost Toys: {} launch: - /Pandarama.exe: + "/Pandarama.exe": - when: - os: windows store: steam @@ -386928,7 +387997,7 @@ Pandas Die: installDir: Pandas Die: {} launch: - /PandasDie.exe: + "/PandasDie.exe": - when: - os: windows store: steam @@ -386938,22 +388007,22 @@ Pandemic Express: installDir: Pandemic Express: {} launch: - /Launch_PandemicExpress.exe: + "/Launch_PandemicExpress.exe": - when: - bit: 64 os: windows store: steam steam: id: 939510 -'Pandemic: The Board Game': +"Pandemic: The Board Game": installDir: Pandemic: {} launch: - /Pandemic.app/Contents/MacOS/Pandemic: + "/Pandemic.app/Contents/MacOS/Pandemic": - when: - os: mac store: steam - /Pandemic.exe: + "/Pandemic.exe": - when: - os: windows store: steam @@ -386974,7 +388043,7 @@ Pandemonium!: installDir: Pandemonium: {} launch: - /Pandy3.exe: + "/Pandy3.exe": - when: - store: steam registry: @@ -386987,30 +388056,30 @@ Pandora: installDir: Pandora: {} launch: - /Pandora.exe: + "/Pandora.exe": - when: - os: windows store: steam steam: id: 791260 -Pandora's Room: +"Pandora's Room": installDir: - Pandora`s room: {} + "Pandora`s room": {} launch: - /Pandora_room.exe: + "/Pandora_room.exe": - when: - os: windows store: steam steam: id: 440720 -'Pandora: First Contact': +"Pandora: First Contact": files: - /Proxy Studios/Pandora/Config: + "/Proxy Studios/Pandora/Config": tags: - config when: - os: linux - /Proxy Studios/Pandora/SavedGames: + "/Proxy Studios/Pandora/SavedGames": tags: - save when: @@ -387023,29 +388092,34 @@ Pandora's Room: installDir: Pandora: {} launch: - /Binaries/Pandora: + "/Binaries/Pandora": - when: + - os: mac + store: steam - bit: 32 os: linux store: steam - workingDir: /Binaries - /Launcher/autorun.exe: + - bit: 64 + os: linux + store: steam + workingDir: "/Binaries" + "/Launcher/autorun.exe": - when: - os: windows store: steam - workingDir: /Binaries + workingDir: "/Binaries" steam: id: 287580 Pandum online: installDir: Pandum: {} launch: - /pandum.bat: + "/pandum.bat": - when: - bit: 64 os: windows store: steam - /pandum.sh: + "/pandum.sh": - when: - bit: 64 os: linux @@ -387059,7 +388133,7 @@ Pane In The Glass: id: 411620 Pang Adventures: files: - /SaveData/: + "/SaveData/": tags: - save when: @@ -387067,7 +388141,7 @@ Pang Adventures: installDir: Pang Adventures: {} launch: - /Pang.exe: + "/Pang.exe": - when: - store: steam steam: @@ -387076,7 +388150,7 @@ Pang and Bang: installDir: Pang and Bang: {} launch: - /Pang and Bang.exe: + "/Pang and Bang.exe": - when: - store: steam steam: @@ -387085,7 +388159,7 @@ Pangeon: installDir: Pangeon: {} launch: - /Pangeon.exe: + "/Pangeon.exe": - when: - os: windows store: steam @@ -387095,7 +388169,7 @@ Panic Diet!!: installDir: panic_diet: {} launch: - /panic_diet.exe: + "/panic_diet.exe": - when: - os: windows store: steam @@ -387105,29 +388179,29 @@ Panic Pump - Can You Save Them All?: installDir: Panic Pump: {} launch: - /PanicPump.app: + "/PanicPump.app": - when: - os: mac store: steam - /PanicPump.exe: + "/PanicPump.exe": - when: - os: windows store: steam - /PanicPump.x86: + "/PanicPump.x86": - when: - os: linux store: steam steam: id: 463410 -'Panic Room 2: Hide and Seek': +"Panic Room 2: Hide and Seek": installDir: Panic Room 2 Hide and Seek: {} launch: - /Freedom.app/Contents/MacOS/game: + "/Freedom.app/Contents/MacOS/game": - when: - os: mac store: steam - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -387137,15 +388211,15 @@ Panic at Multiverse High!: installDir: PANIC at Multiverse High!: {} launch: - /PanicAtMultiverseHigh.app: + "/PanicAtMultiverseHigh.app": - when: - os: mac store: steam - /PanicAtMultiverseHigh.exe: + "/PanicAtMultiverseHigh.exe": - when: - os: windows store: steam - /PanicAtMultiverseHigh.sh: + "/PanicAtMultiverseHigh.sh": - when: - os: linux store: steam @@ -387155,7 +388229,7 @@ Panic in Sweets Land: installDir: PANIC IN SWEETS LAND: {} launch: - /Panic_in_SweetsLand.exe: + "/Panic_in_SweetsLand.exe": - when: - os: windows store: steam @@ -387163,7 +388237,7 @@ Panic in Sweets Land: id: 2225520 Pankapu: files: - /AppData/LocalLow/Too Kind Studio/Pankapu: + "/AppData/LocalLow/Too Kind Studio/Pankapu": tags: - save when: @@ -387171,15 +388245,15 @@ Pankapu: installDir: Pankapu: {} launch: - /pankapu.app: + "/pankapu.app": - when: - os: mac store: steam - /pankapu.exe: + "/pankapu.exe": - when: - os: windows store: steam - /pankapu.x86: + "/pankapu.x86": - when: - os: linux store: steam @@ -387193,7 +388267,7 @@ Panoptes: installDir: PANOPTES: {} launch: - /Panoptes.exe: + "/Panoptes.exe": - when: - os: windows store: steam @@ -387208,15 +388282,15 @@ Panoramical: installDir: PANORAMICAL: {} launch: - /Panoramical.app: + "/Panoramical.app": - when: - os: mac store: steam - /Panoramical.exe: + "/Panoramical.exe": - when: - os: windows store: steam - /Panoramical.x86: + "/Panoramical.x86": - when: - os: linux store: steam @@ -387226,7 +388300,7 @@ Pantheon: installDir: Pantheon: {} launch: - /Pantheon_Update_2.exe: + "/Pantheon_Update_2.exe": - when: - os: windows store: steam @@ -387241,20 +388315,20 @@ Pantropy: installDir: Pantropy: {} launch: - /PantropyClient.exe: + "/PantropyClient.exe": - when: - os: windows store: steam steam: id: 677180 -'Pantsu Hunter: Back to the 90s': +"Pantsu Hunter: Back to the 90s": files: - /.config/unity3d/Ascension Dream/Pantsu Hunter: + "/.config/unity3d/Ascension Dream/Pantsu Hunter": tags: - save when: - os: linux - /Library/Preferences/unity.Ascension Dream.Pantsu Hunter.plist: + "/Library/Preferences/unity.Ascension Dream.Pantsu Hunter.plist": tags: - save when: @@ -387262,15 +388336,15 @@ Pantropy: installDir: Pantsu Hunter Back to the 90s: {} launch: - /Pantsu Hunter.exe: + "/Pantsu Hunter.exe": - when: - os: windows store: steam - /PantsuHunter.app/Contents/MacOS/PantsuHunter: + "/PantsuHunter.app/Contents/MacOS/PantsuHunter": - when: - os: mac store: steam - /PantsuHunter.x86_64: + "/PantsuHunter.x86_64": - when: - os: linux store: steam @@ -387282,12 +388356,12 @@ Pantropy: id: 953900 Panty Party: files: - /PantyParty_Data/Config.dat: + "/PantyParty_Data/Config.dat": tags: - config when: - os: windows - /PantyParty_Data/SaveFile.dat: + "/PantyParty_Data/SaveFile.dat": tags: - save when: @@ -387295,7 +388369,7 @@ Panty Party: installDir: Panty Party: {} launch: - /PantyParty.exe: + "/PantyParty.exe": - when: - os: windows store: steam @@ -387305,7 +388379,7 @@ Panzar: installDir: Panzar: {} launch: - /PnzSteamLauncher.exe: + "/PnzSteamLauncher.exe": - when: - os: windows store: steam @@ -387316,12 +388390,12 @@ Panzer: id: 763420 Panzer Corps: files: - /My Games/Panzer Corps: + "/My Games/Panzer Corps": tags: - config when: - os: windows - /My Games/Panzer Corps/Save: + "/My Games/Panzer Corps/Save": tags: - save when: @@ -387332,9 +388406,9 @@ Panzer Corps: gogExtra: - 1929225045 steamExtra: + - 276550 - 276551 - 276552 - - 276550 - 279960 - 279961 - 279962 @@ -387352,11 +388426,11 @@ Panzer Corps: installDir: Panzer Corps: {} launch: - /PanzerCorps.app: + "/PanzerCorps.app": - when: - os: mac store: steam - /autorun.exe: + "/autorun.exe": - when: - os: windows store: steam @@ -387368,7 +388442,7 @@ Panzer Corps: id: 268400 Panzer Corps 2: files: - /My Games/Panzer Corps 2/Saves: + "/My Games/Panzer Corps 2/Saves": tags: - save when: @@ -387382,7 +388456,7 @@ Panzer Corps 2: installDir: Panzer Corps 2: {} launch: - /Launcher.exe: + "/Launcher.exe": - when: - store: steam steam: @@ -387391,7 +388465,7 @@ Panzer Doctrine: installDir: Panzer Doctrine: {} launch: - /autorun.exe: + "/autorun.exe": - when: - os: windows store: steam @@ -387399,34 +388473,36 @@ Panzer Doctrine: id: 709880 Panzer Dragoon: files: - /PANZERDG.INI: + "/PANZERDG.INI": tags: - config when: - os: windows -'Panzer Dragoon: Remake': +"Panzer Dragoon: Remake": files: - /AppData/LocalLow/MegaPixel Studio SA/Panzer Dragoon_ Remake/savedGames.gd: + "/AppData/LocalLow/MegaPixel Studio SA/Panzer Dragoon_ Remake/savedGames.gd": tags: - save when: - - store: steam - /PanzerDragoonRemake/savedGames.gd: + - os: windows + store: steam + "/PanzerDragoonRemake/savedGames.gd": tags: - save when: - - store: gog + - os: windows + store: gog gog: id: 1248489555 installDir: Panzer Dragoon Remake: {} launch: - /Panzer Dragoon Remake.exe: + "/Panzer Dragoon Remake.exe": - when: - os: windows store: steam registry: - 'HKEY_CURRENT_USER/SOFTWARE/MegaPixel Studio SA/Panzer Dragoon: Remake': + "HKEY_CURRENT_USER/SOFTWARE/MegaPixel Studio SA/Panzer Dragoon: Remake": tags: - config steam: @@ -387434,14 +388510,14 @@ Panzer Dragoon: Panzer Elite: gog: id: 1207658716 -'Panzer Elite Action: Fields of Glory': +"Panzer Elite Action: Fields of Glory": files: - /data/save: + "/data/save": tags: - save when: - os: windows - /settings.db: + "/settings.db": tags: - config when: @@ -387449,11 +388525,11 @@ Panzer Elite: installDir: Panzer Elite Action Fields of Glory: {} launch: - /Docs/PEA_Manual.pdf: + "/Docs/PEA_Manual.pdf": - when: - os: windows store: steam - /PEA.exe: + "/PEA.exe": - when: - os: windows store: steam @@ -387461,7 +388537,7 @@ Panzer Elite: id: 292420 Panzer General 3D Assault: files: - /Saves: + "/Saves": tags: - save when: @@ -387470,7 +388546,7 @@ Panzer General 3D Assault: id: 1207658866 Panzer General II: files: - /SAVE: + "/SAVE": tags: - save when: @@ -387481,15 +388557,15 @@ Panzer Hearts: installDir: Panzer Hearts: {} launch: - /PanzerHearts.app/Contents/MacOS/PanzerHearts: + "/PanzerHearts.app/Contents/MacOS/PanzerHearts": - when: - os: mac store: steam - /PanzerHearts.exe: + "/PanzerHearts.exe": - when: - os: windows store: steam - /PanzerHearts.sh: + "/PanzerHearts.sh": - when: - os: linux store: steam @@ -387499,7 +388575,7 @@ Panzer Killer: installDir: Panzer Killer: {} launch: - /PanzerKiller.exe: + "/PanzerKiller.exe": - when: - os: windows store: steam @@ -387511,24 +388587,24 @@ Panzer Knights: installDir: Panzer Knights: {} launch: - /Panzer Knights.exe: + "/Panzer Knights.exe": - when: - store: steam steam: id: 1416230 Panzer Paladin: files: - /userdata//975510/remote/GameSave*.sav: + "/userdata//975510/remote/GameSave*.sav": tags: - save when: - store: steam - /Tribute Games/PanzerPaladin/Settings.cfg: + "/Tribute Games/PanzerPaladin/Settings.cfg": tags: - config when: - os: windows - /Tribute Games/PanzerPaladin/Settings.cfg: + "/Tribute Games/PanzerPaladin/Settings.cfg": tags: - config when: @@ -387536,11 +388612,11 @@ Panzer Paladin: installDir: PanzerPaladin: {} launch: - /PanzerPaladin: + "/PanzerPaladin": - when: - os: linux store: steam - /PanzerPaladin.exe: + "/PanzerPaladin.exe": - when: - bit: 64 os: windows @@ -387556,7 +388632,7 @@ Panzer Strategy: installDir: Panzer Strategy: {} launch: - /PanzerUE.exe: + "/PanzerUE.exe": - when: - bit: 64 os: windows @@ -387565,7 +388641,7 @@ Panzer Strategy: id: 769950 Panzer Tactics HD: files: - /panzertacticshd: + "/panzertacticshd": tags: - save when: @@ -387573,7 +388649,7 @@ Panzer Tactics HD: installDir: Panzer Tactics HD: {} launch: - /PT.exe: + "/PT.exe": - when: - store: steam steam: @@ -387585,59 +388661,59 @@ Panzer Warfare: installDir: Panzer Warfare: {} launch: - /Panzer Warfare.app/Contents/MacOS/Panzer Warfare: + "/Panzer Warfare.app/Contents/MacOS/Panzer Warfare": - when: - os: mac store: steam - /Panzer Warfare.exe: + "/Panzer Warfare.exe": - when: - os: windows store: steam - /Panzer Warfare.x86: + "/Panzer Warfare.x86": - when: - bit: 32 os: linux store: steam - /Panzer Warfare.x86_64: + "/Panzer Warfare.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 513880 -'Panzermadels: Tank Dating Simulator': +"Panzermadels: Tank Dating Simulator": installDir: Panzermadels: {} launch: - /Panzermadels.app: + "/Panzermadels.app": - when: - os: mac store: steam - /Panzermadels.exe: + "/Panzermadels.exe": - when: - os: windows store: steam steam: id: 379980 -Papa's Freezeria Deluxe: +"Papa's Freezeria Deluxe": installDir: - Papa's Freezeria Deluxe: {} + "Papa's Freezeria Deluxe": {} launch: - /Papa's Freezeria Deluxe.exe: + "/Papa's Freezeria Deluxe.exe": - when: - os: windows store: steam steam: id: 2291760 -Papa's Time Machine: +"Papa's Time Machine": installDir: - PAPA'S TIME MACHINE: {} + "PAPA'S TIME MACHINE": {} launch: - /PAPA.app/Contents/MacOS/PAPA: + "/PAPA.app/Contents/MacOS/PAPA": - when: - os: mac store: steam - /PAPA.exe: + "/PAPA.exe": - when: - os: windows store: steam @@ -387647,15 +388723,15 @@ Paparazzi: installDir: Paparazzi: {} launch: - /paparazzi.app: + "/paparazzi.app": - when: - os: mac store: steam - /paparazzi.exe: + "/paparazzi.exe": - when: - os: windows store: steam - /paparazzi.x86: + "/paparazzi.x86": - when: - os: linux store: steam @@ -387668,7 +388744,7 @@ Paper - A Game of Folding: installDir: Paper - A Game of Folding: {} launch: - /Paper A Game of Folding.exe: + "/Paper A Game of Folding.exe": - when: - os: windows store: steam @@ -387676,7 +388752,7 @@ Paper - A Game of Folding: id: 1162370 Paper Beast: files: - /AppData/LocalLow/Pixel Reef/Paper Beast/PaperBeast.save: + "/AppData/LocalLow/Pixel Reef/Paper Beast/PaperBeast.save": tags: - save when: @@ -387691,7 +388767,7 @@ Paper Beast: id: 1232570 Paper Beast - Folded Edition: files: - /AppData/LocalLow/Pixel Reef/Paper Beast/PaperBeast.save: + "/AppData/LocalLow/Pixel Reef/Paper Beast/PaperBeast.save": tags: - save when: @@ -387701,8 +388777,8 @@ Paper Beast - Folded Edition: installDir: Paper Beast Flat: {} launch: - /PaperBeast.exe: - - arguments: '-store steam' + "/PaperBeast.exe": + - arguments: "-store steam" when: - os: windows store: steam @@ -387718,7 +388794,7 @@ Paper Cut Mansion: installDir: PaperCutMansion: {} launch: - /PaperCutMansion.exe: + "/PaperCutMansion.exe": - when: - bit: 64 os: windows @@ -387729,32 +388805,32 @@ Paper Dungeons: installDir: Paper Dungeons: {} launch: - /Paper Dungeons 64.app: + "/Paper Dungeons 64.app": - when: - bit: 64 os: mac store: steam - /Paper Dungeons 64.exe: + "/Paper Dungeons 64.exe": - when: - bit: 64 os: windows store: steam - /Paper Dungeons.app: + "/Paper Dungeons.app": - when: - bit: 32 os: mac store: steam - /Paper Dungeons.exe: + "/Paper Dungeons.exe": - when: - bit: 32 os: windows store: steam - /Paper Dungeons.x86: + "/Paper Dungeons.x86": - when: - bit: 32 os: linux store: steam - /Paper Dungeons.x86_64: + "/Paper Dungeons.x86_64": - when: - bit: 64 os: linux @@ -387765,21 +388841,21 @@ Paper Dungeons Crawler: installDir: Paper Dungeons Crawler: {} launch: - /PDC.exe: + "/PDC.exe": - when: - os: windows store: steam - /PDC.x86: + "/PDC.x86": - when: - bit: 32 os: linux store: steam - /PDC.x86_64: + "/PDC.x86_64": - when: - bit: 64 os: linux store: steam - /PDCMAC64.app: + "/PDCMAC64.app": - when: - os: mac store: steam @@ -387802,7 +388878,7 @@ Paper Monsters: installDir: Paper Monsters: {} launch: - /PaperMonsters.exe: + "/PaperMonsters.exe": - when: - store: steam steam: @@ -387811,7 +388887,7 @@ Paper Monsters Recut: installDir: Paper Monsters Recut: {} launch: - /PaperMonstersRecut_PC.exe: + "/PaperMonstersRecut_PC.exe": - when: - os: windows store: steam @@ -387826,7 +388902,7 @@ Paper Planets: installDir: Paper Planets: {} launch: - /PaperPlanets.exe: + "/PaperPlanets.exe": - when: - os: windows store: steam @@ -387836,121 +388912,121 @@ Paper Quest: installDir: Paper Quest: {} launch: - /PaperQuest.exe: + "/PaperQuest.exe": - when: - os: windows store: steam steam: id: 590570 -'Paper Shakespeare RPG: Saga of the Five Kingdoms': +"Paper Shakespeare RPG: Saga of the Five Kingdoms": installDir: PS_RAINBOW_HOLLOW: {} launch: - /Paper_Shakespeare_Hollow.exe: + "/Paper_Shakespeare_Hollow.exe": - when: - os: windows store: steam - /Paper_Shakespeare_Hollow.sh: + "/Paper_Shakespeare_Hollow.sh": - when: - os: linux store: steam steam: id: 828760 -'Paper Shakespeare: Loves Labor(s) Lost': +"Paper Shakespeare: Loves Labor(s) Lost": installDir: - Paper Shakespeare Love's Labor Lost: {} + "Paper Shakespeare Love's Labor Lost": {} launch: - /Paper_Shakespeare_LLL.app/Contents/MacOS/Paper_Shakespeare_LLL: + "/Paper_Shakespeare_LLL.app/Contents/MacOS/Paper_Shakespeare_LLL": - when: - os: mac store: steam - /Paper_Shakespeare_LLL.exe: + "/Paper_Shakespeare_LLL.exe": - when: - os: windows store: steam - /Paper_Shakespeare_LLL.sh: + "/Paper_Shakespeare_LLL.sh": - when: - os: linux store: steam steam: id: 854540 -'Paper Shakespeare: Modern Warfare': +"Paper Shakespeare: Modern Warfare": installDir: Paper Shakespeare Dating Sim Ultimate: {} launch: - /PSMW.exe: + "/PSMW.exe": - when: - os: windows store: steam - /PSMW.sh: + "/PSMW.sh": - when: - os: linux store: steam steam: id: 1082760 -'Paper Shakespeare: Stick Julius Caesar (with a dagger)': +"Paper Shakespeare: Stick Julius Caesar (with a dagger)": installDir: Paper Shakespeare Stick Caesar: {} launch: - /PS_JC.app/Contents/MacOS/PS_JC: + "/PS_JC.app/Contents/MacOS/PS_JC": - when: - os: mac store: steam - /PS_JC.exe: + "/PS_JC.exe": - when: - os: windows store: steam - /PS_JC.sh: + "/PS_JC.sh": - when: - os: linux store: steam steam: id: 854530 -'Paper Shakespeare: Stick Merchant of Venice': +"Paper Shakespeare: Stick Merchant of Venice": installDir: Paper Shakespeare Stick Merchant of Venice: {} launch: - /Paper_Shakespeare_M.app/Contents/MacOS/Paper_Shakespeare_M: + "/Paper_Shakespeare_M.app/Contents/MacOS/Paper_Shakespeare_M": - when: - os: mac store: steam - /Paper_Shakespeare_M.exe: + "/Paper_Shakespeare_M.exe": - when: - os: windows store: steam - /Paper_Shakespeare_M.sh: + "/Paper_Shakespeare_M.sh": - when: - os: linux store: steam steam: id: 852750 -'Paper Shakespeare: To Date or Not To Date? 2': +"Paper Shakespeare: To Date or Not To Date? 2": installDir: Paper Shakespeare 2: {} launch: - /Paper_Shakespeare.exe: + "/Paper_Shakespeare.exe": - when: - os: windows store: steam - /Paper_Shakespeare.sh: + "/Paper_Shakespeare.sh": - when: - os: linux store: steam steam: id: 1177650 -'Paper Shakespeare: To Date or Not to Date?': +"Paper Shakespeare: To Date or Not to Date?": installDir: Paper Shakespeare Dating Sim: {} launch: - /Paper_Shakespeare_DS.app/Contents/MacOS/Paper_Shakespeare_DS: + "/Paper_Shakespeare_DS.app/Contents/MacOS/Paper_Shakespeare_DS": - when: - os: mac store: steam - /Paper_Shakespeare_DS.exe: + "/Paper_Shakespeare_DS.exe": - when: - os: windows store: steam - /Paper_Shakespeare_DS.sh: + "/Paper_Shakespeare_DS.sh": - when: - os: linux store: steam @@ -387958,7 +389034,7 @@ Paper Quest: id: 702940 Paper Sorcerer: files: - /AppData/LocalLow/UltraRunaway/Paper Sorcerer: + "/AppData/LocalLow/UltraRunaway/Paper Sorcerer": tags: - save when: @@ -387968,7 +389044,7 @@ Paper Sorcerer: installDir: PaperSorcerer: {} launch: - /PaperSorcererPC.exe: + "/PaperSorcererPC.exe": - when: - bit: 32 os: windows @@ -387989,12 +389065,12 @@ Paper Trail: id: 1889740 Paper Train Traffic: files: - /isTomGames/pt_traffic/game.cfg: + "/isTomGames/pt_traffic/game.cfg": tags: - config when: - os: windows - /isTomGames/pt_traffic/mapinfo.dat: + "/isTomGames/pt_traffic/mapinfo.dat": tags: - save when: @@ -388002,17 +389078,17 @@ Paper Train Traffic: installDir: PaperTrainTraffic: {} launch: - /bin_x64_linux/game.sh: + "/bin_x64_linux/game.sh": - when: - bit: 64 os: linux store: steam - workingDir: /bin_x64_linux - /bin_x86/PaperTrain2D.exe: + workingDir: "/bin_x64_linux" + "/bin_x86/PaperTrain2D.exe": - when: - os: windows store: steam - workingDir: /bin_x86 + workingDir: "/bin_x86" steam: id: 447310 Paper Valley: @@ -388024,7 +389100,7 @@ PaperCat: installDir: PaperCat: {} launch: - /papercat.exe: + "/papercat.exe": - when: - os: windows store: steam @@ -388035,11 +389111,11 @@ PaperDolls: PaperDolls: {} steam: id: 851050 -'Paperback: The Game': +"Paperback: The Game": installDir: Paperback The Game: {} launch: - /Paperback.exe: + "/Paperback.exe": - when: - os: windows store: steam @@ -388047,12 +389123,12 @@ PaperDolls: id: 710700 Paperball: files: - /GameData.dat: + "/GameData.dat": tags: - save when: - os: windows - /GameSettings.dat: + "/GameSettings.dat": tags: - config when: @@ -388060,7 +389136,7 @@ Paperball: installDir: Paperball: {} launch: - /Paperball.exe: + "/Paperball.exe": - when: - os: windows store: steam @@ -388070,11 +389146,11 @@ Paperbark: installDir: Paperbark: {} launch: - /Paperbark.app/Contents/MacOS/Paperbark: + "/Paperbark.app/Contents/MacOS/Paperbark": - when: - os: mac store: steam - /Paperbark.exe: + "/Paperbark.exe": - when: - os: windows store: steam @@ -388082,7 +389158,7 @@ Paperbark: id: 916900 Paperbound: files: - /Paperbound/Settings: + "/Paperbound/Settings": tags: - config when: @@ -388090,7 +389166,7 @@ Paperbound: installDir: Paperbound: {} launch: - /Paperbound.exe: + "/Paperbound.exe": - when: - os: windows store: steam @@ -388100,27 +389176,27 @@ Papercraft: installDir: PaperWar: {} launch: - /cow.exe: + "/cow.exe": - when: - os: windows store: steam steam: id: 905660 -'Papers, Please': +"Papers, Please": files: - /Library/Application Support/PapersPlease: + "/Library/Application Support/PapersPlease": tags: - config - save when: - os: mac - /3909/PapersPlease: + "/3909/PapersPlease": tags: - config - save when: - os: windows - /3909/PapersPlease: + "/3909/PapersPlease": tags: - config - save @@ -388131,7 +389207,7 @@ Papercraft: installDir: PapersPlease: {} launch: - /PapersPlease: + "/PapersPlease": - when: - os: linux store: steam @@ -388143,7 +389219,7 @@ Papercraft: when: - os: linux store: steam - /PapersPlease.app/Contents/MacOS/PapersPlease: + "/PapersPlease.app/Contents/MacOS/PapersPlease": - when: - os: mac store: steam @@ -388155,7 +389231,7 @@ Papercraft: when: - os: mac store: steam - /PapersPlease.exe: + "/PapersPlease.exe": - arguments: t when: - os: windows @@ -388172,12 +389248,12 @@ Papercraft: id: 239030 Papetura: files: - /AppData/LocalLow/Petums/Papetura/pape.tura: + "/AppData/LocalLow/Petums/Papetura/pape.tura": tags: - save when: - os: windows - /AppData/LocalLow/Petums/Papetura/settings.dat: + "/AppData/LocalLow/Petums/Papetura/settings.dat": tags: - config when: @@ -388187,11 +389263,11 @@ Papetura: installDir: Papetura: {} launch: - /Papetura.app/Contents/MacOS/Papetura: + "/Papetura.app/Contents/MacOS/Papetura": - when: - os: mac store: steam - /Papetura.exe: + "/Papetura.exe": - when: - os: windows store: steam @@ -388206,27 +389282,27 @@ Papich - The Game Ep.1: id: 766920 Papo & Yo: files: - /Binaries/Win32: + "/Binaries/Win32": tags: - save when: - os: windows - /userdata//227080/remote: + "/userdata//227080/remote": tags: - save when: - store: steam - /My Games/PapoYo/PYGame/Config: + "/My Games/PapoYo/PYGame/Config": tags: - config when: - os: windows - /Minority/PapoYo/PYGame: + "/Minority/PapoYo/PYGame": tags: - save when: - os: linux - /Minority/PapoYo/PYGame/Config: + "/Minority/PapoYo/PYGame/Config": tags: - config when: @@ -388234,18 +389310,18 @@ Papo & Yo: installDir: PapoYo: {} launch: - /Binaries/Win32/PYGame-Win32-Shipping.exe: - - arguments: '-seekfreeloading' + "/Binaries/Win32/PYGame-Win32-Shipping.exe": + - arguments: "-seekfreeloading" when: - os: windows store: steam - workingDir: /Binaries/Win32 - /PapoYo.app/Contents/MacOS/PYGame: + workingDir: "/Binaries/Win32" + "/PapoYo.app/Contents/MacOS/PYGame": - when: - os: mac store: steam - workingDir: /PapoYo.app/Contents/MacOS - /PapoYo.sh: + workingDir: "/PapoYo.app/Contents/MacOS" + "/PapoYo.sh": - when: - os: linux store: steam @@ -388255,7 +389331,7 @@ Papper Balls: installDir: Papper Balls: {} launch: - /Papper Balls.exe: + "/Papper Balls.exe": - when: - store: steam steam: @@ -388264,7 +389340,7 @@ ParaLily: installDir: ParaLily: {} launch: - /ParaLily.exe: + "/ParaLily.exe": - when: - os: windows store: steam @@ -388272,12 +389348,12 @@ ParaLily: id: 1156760 ParaWorld: files: - /SpieleEntwicklungsKombinat: + "/SpieleEntwicklungsKombinat": tags: - config when: - os: windows - /SpieleEntwicklungsKombinat/Paraworld/SaveGames: + "/SpieleEntwicklungsKombinat/Paraworld/SaveGames": tags: - save when: @@ -388286,17 +389362,17 @@ Parabolus: installDir: Parabolus: {} launch: - /Parabolus.exe: + "/Parabolus.exe": - when: - os: windows store: steam steam: id: 703100 -'Parachronism: Order of Chaos': +"Parachronism: Order of Chaos": installDir: Parachronism Order of Chaos: {} launch: - /Parachronism Order of Chaos.exe: + "/Parachronism Order of Chaos.exe": - when: - os: windows store: steam @@ -388309,22 +389385,22 @@ Paradiddle: id: 685240 Paradigm: files: - /Jacob_Janerka/Paradigm/Savegames: + "/Jacob_Janerka/Paradigm/Savegames": tags: - save when: - os: windows - /Jacob_Janerka/Paradigm/config.ini: + "/Jacob_Janerka/Paradigm/config.ini": tags: - config when: - os: windows - /Jacob_Janerka/Paradigm/Savegames: + "/Jacob_Janerka/Paradigm/Savegames": tags: - save when: - os: linux - /Jacob_Janerka/Paradigm/config.ini: + "/Jacob_Janerka/Paradigm/config.ini": tags: - config when: @@ -388334,15 +389410,15 @@ Paradigm: installDir: Paradigm: {} launch: - /Paradigm.exe: + "/Paradigm.exe": - when: - os: windows store: steam - /paradigm.app/Contents/MacOS/Visionaire Player: + "/paradigm.app/Contents/MacOS/Visionaire Player": - when: - os: mac store: steam - /start: + "/start": - when: - os: linux store: steam @@ -388352,7 +389428,7 @@ Paradigm Blast: installDir: Paradigm Blast: {} launch: - /ParadigmParty.exe: + "/ParadigmParty.exe": - when: - bit: 64 os: windows @@ -388363,15 +389439,15 @@ Paradigm City: installDir: Paradigm City: {} launch: - /Paradigm City.app/Contents/MacOS/Paradigm City: + "/Paradigm City.app/Contents/MacOS/Paradigm City": - when: - os: mac store: steam - /ParadigmCity: + "/ParadigmCity": - when: - os: linux store: steam - /ParadigmCity.exe: + "/ParadigmCity.exe": - when: - os: windows store: steam @@ -388381,7 +389457,7 @@ Paradigm Shift: installDir: Paradigm Shift: {} launch: - /Paradigmshift.exe: + "/Paradigmshift.exe": - when: - os: windows store: steam @@ -388389,7 +389465,7 @@ Paradigm Shift: id: 299820 Paradise: files: - /Paradise: + "/Paradise": tags: - config - save @@ -388399,7 +389475,7 @@ Paradise (2018): installDir: Paradise: {} launch: - /Paradise.exe: + "/Paradise.exe": - when: - os: windows store: steam @@ -388412,12 +389488,12 @@ Paradise Checkers VR: installDir: Paradise Checkers: {} launch: - /Release/InstancedRender.exe: + "/Release/InstancedRender.exe": - when: - bit: 64 os: windows store: steam - workingDir: /common_res + workingDir: "/common_res" steam: id: 986760 Paradise City VR: @@ -388429,7 +389505,7 @@ Paradise Cleaning!: installDir: Paradise Cleaning!: {} launch: - /Cleaner.exe: + "/Cleaner.exe": - when: - os: windows store: steam @@ -388437,17 +389513,17 @@ Paradise Cleaning!: id: 950460 Paradise Killer: files: - /ParadiseKiller/Saved/Config/WindowsNoEditor: + "/ParadiseKiller/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /ParadiseKiller/Saved/SaveGames/PKSlot_*.sav: + "/ParadiseKiller/Saved/SaveGames/PKSlot_*.sav": tags: - save when: - os: windows - /ParadiseKiller/Saved/SaveGames/PK_PlayerSettings.sav: + "/ParadiseKiller/Saved/SaveGames/PK_PlayerSettings.sav": tags: - config when: @@ -388457,7 +389533,7 @@ Paradise Killer: installDir: Paradise Killer: {} launch: - /ParadiseKiller.exe: + "/ParadiseKiller.exe": - when: - bit: 64 os: windows @@ -388466,12 +389542,12 @@ Paradise Killer: id: 1160220 Paradise Lost: files: - /ParadiseLost/Saved/Config/WindowsNoEditor: + "/ParadiseLost/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /ParadiseLost/Saved/SaveGames: + "/ParadiseLost/Saved/SaveGames": tags: - save when: @@ -388481,21 +389557,21 @@ Paradise Lost: installDir: Paradise Lost: {} launch: - /ParadiseLost.exe: + "/ParadiseLost.exe": - when: - os: windows store: steam steam: id: 982720 -'Paradise Lost: FPS Cosmic Horror Game': +"Paradise Lost: FPS Cosmic Horror Game": installDir: Paradise Lost: {} launch: - /ParadiseLost_Alpha01.exe: + "/ParadiseLost_Alpha01.exe": - when: - os: windows store: steam - /ParadiseLost_Alpha01_OSX.app: + "/ParadiseLost_Alpha01_OSX.app": - when: - os: mac store: steam @@ -388505,7 +389581,7 @@ Paradise Trails: installDir: Paradise Trails: {} launch: - /ParadiseTrails.exe: + "/ParadiseTrails.exe": - when: - os: windows store: steam @@ -388519,17 +389595,17 @@ Paradox Escape Route: installDir: Paradox Escape Route: {} launch: - /FPS & Overhead/Paradox Escape Route ALT Camera.exe: + "/FPS & Overhead/Paradox Escape Route ALT Camera.exe": - when: - os: windows store: steam - workingDir: /FPS & Overhead - /Fixed Camera/Paradox Escape Route.exe: + workingDir: "/FPS & Overhead" + "/Fixed Camera/Paradox Escape Route.exe": - when: - os: windows store: steam - workingDir: /Fixed Camera - /Xolonium-Regular.ttf: + workingDir: "/Fixed Camera" + "/Xolonium-Regular.ttf": - when: - os: windows store: steam @@ -388539,8 +389615,8 @@ Paradox Paradigm: installDir: Paradox Paradigm: {} launch: - /Windows32full/ParadoxParadigm.exe: - - arguments: '-fullscreen' + "/Windows32full/ParadoxParadigm.exe": + - arguments: "-fullscreen" when: - os: windows store: steam @@ -388551,12 +389627,12 @@ Paradox Paradigm: id: 469900 Paradox Soul: files: - /options.ini: + "/options.ini": tags: - config when: - os: windows - /Paradox_Soul: + "/Paradox_Soul": tags: - save when: @@ -388564,7 +389640,7 @@ Paradox Soul: installDir: Paradox Soul: {} launch: - /Paradox Soul.exe: + "/Paradox Soul.exe": - when: - store: steam steam: @@ -388573,7 +389649,7 @@ Paradox Vector: installDir: Paradox Vector: {} launch: - /Paradox_Vector.exe: + "/Paradox_Vector.exe": - when: - os: windows store: steam @@ -388583,7 +389659,7 @@ Paradox Wrench: installDir: Paradox Wrench: {} launch: - /ParadoxWrench.exe: + "/ParadoxWrench.exe": - when: - os: windows store: steam @@ -388593,11 +389669,11 @@ Paradox of the Cryptomancers: installDir: Paradox of the Cryptomancers: {} launch: - /Paradox of the Cryptomancers.app/Contents/MacOS/Paradox of the Cryptomancers: + "/Paradox of the Cryptomancers.app/Contents/MacOS/Paradox of the Cryptomancers": - when: - os: mac store: steam - /Paradox of the Cryptomancers.exe: + "/Paradox of the Cryptomancers.exe": - when: - os: windows store: steam @@ -388605,24 +389681,24 @@ Paradox of the Cryptomancers: id: 839170 Paragon: files: - /OrionGame/Saved/Cloud: + "/OrionGame/Saved/Cloud": tags: - save when: - os: windows - /OrionGame/Saved/Config/WindowsClient/GameUserSettings.ini: + "/OrionGame/Saved/Config/WindowsClient/GameUserSettings.ini": tags: - config when: - os: windows -'Paragon: The Overprime': +"Paragon: The Overprime": files: - /Overprime/Saved/Config/WindowsClient: + "/Overprime/Saved/Config/WindowsClient": tags: - config when: - os: windows - /Overprime/Saved/SaveGames: + "/Overprime/Saved/SaveGames": tags: - save when: @@ -388630,7 +389706,7 @@ Paragon: installDir: Overprime: {} launch: - /ParagonClient.exe: + "/ParagonClient.exe": - when: - bit: 64 os: windows @@ -388644,15 +389720,15 @@ Parallax: installDir: Parallax: {} launch: - /Parallax.app: + "/Parallax.app": - when: - os: mac store: steam - /Parallax.exe: + "/Parallax.exe": - when: - os: windows store: steam - /launch.sh: + "/launch.sh": - when: - os: linux store: steam @@ -388665,7 +389741,7 @@ Parallel Pixel: installDir: parallel pixel: {} launch: - /Parallel Pixel.exe: + "/Parallel Pixel.exe": - when: - store: steam steam: @@ -388677,11 +389753,11 @@ Parallels: installDir: Parallels: {} launch: - /Parallels.app/Contents/MacOS/PTPlayer: + "/Parallels.app/Contents/MacOS/PTPlayer": - when: - os: mac store: steam - /Parallels.exe: + "/Parallels.exe": - when: - os: windows store: steam @@ -388694,11 +389770,11 @@ Parallyzed: installDir: Parallyzed: {} launch: - /Parallyzed.exe: + "/Parallyzed.exe": - when: - os: windows store: steam - /parallyzed.app: + "/parallyzed.app": - when: - os: mac store: steam @@ -388708,7 +389784,7 @@ Paralysis: installDir: Paralysis: {} launch: - /Paralysis.exe: + "/Paralysis.exe": - when: - bit: 64 os: windows @@ -388721,15 +389797,15 @@ Paranautical Activity: installDir: ParanauticalActivity: {} launch: - /Paranautical Activity.app: + "/Paranautical Activity.app": - when: - os: mac store: steam - /Paranautical Activity.exe: + "/Paranautical Activity.exe": - when: - os: windows store: steam - /Paranautical Activity.x86: + "/Paranautical Activity.x86": - when: - os: linux store: steam @@ -388741,49 +389817,49 @@ Paranautical Activity: id: 250580 Paranoia: files: - /paranoia/config.cfg: + "/paranoia/config.cfg": tags: - config when: - os: windows - /paranoia/save: + "/paranoia/save": tags: - save when: - os: windows -'Paranoia 2: Savior': +"Paranoia 2: Savior": files: - /paranoia/config.cfg: + "/paranoia/config.cfg": tags: - config when: - os: windows - /paranoia/save: + "/paranoia/save": tags: - save when: - os: windows -'Paranoia: Deliver Me': +"Paranoia: Deliver Me": installDir: Paranoia Deliver Me: {} launch: - /DeliverMe.exe: + "/DeliverMe.exe": - when: - store: steam steam: id: 970600 -'Paranoia: Deliver Me (Chinese)': +"Paranoia: Deliver Me (Chinese)": installDir: MyGame: {} launch: - /DeliverMe.exe: + "/DeliverMe.exe": - when: - store: steam steam: id: 779640 -'Paranoia: Happiness is Mandatory': +"Paranoia: Happiness is Mandatory": files: - /AppData/LocalLow/Black Shamrock/Paranoia_ Happiness Is Mandatory: + "/AppData/LocalLow/Black Shamrock/Paranoia_ Happiness Is Mandatory": tags: - config - save @@ -388796,7 +389872,7 @@ Paranoid: id: 946920 Paranormal: files: - /UDKGame/Config: + "/UDKGame/Config": tags: - config when: @@ -388804,31 +389880,34 @@ Paranormal: installDir: paranormal: {} launch: - /Binaries/Win32/UDK.exe: + "/Binaries/Win32/UDK.exe": - when: - os: windows store: steam - workingDir: /Binaries/Win32 - /PT1/ParanormalPT1.app: + workingDir: "/Binaries/Win32" + "/PT1/ParanormalPT1.app": - when: - os: mac store: steam - workingDir: /PT1 - /Paranormal.app: + workingDir: "/PT1" + "/Paranormal.app": - when: - os: mac store: steam - /WindowsNoEditor/Paranormal.exe: + "/WindowsNoEditor/Paranormal.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam - workingDir: /WindowsNoEditor + workingDir: "/WindowsNoEditor" steam: id: 246300 -'Paranormal Activity: The Lost Soul': +"Paranormal Activity: The Lost Soul": files: - /Saved Games/Paranormal Activity The Lost Soul: + "/Saved Games/Paranormal Activity The Lost Soul": tags: - save when: @@ -388837,16 +389916,16 @@ Paranormal: Paranormal Activity The Lost Soul: {} steam: id: 467660 -'Paranormal Detective: Escape from the 80''s': +"Paranormal Detective: Escape from the 80's": installDir: - Paranormal Detective Escape from the 80's: {} + "Paranormal Detective Escape from the 80's": {} steam: id: 1114460 -'Paranormal Files: Hook Man''s Legend': +"Paranormal Files: Hook Man's Legend": installDir: - Paranormal Files Hook Man's Legend Collector's Edition: {} + "Paranormal Files Hook Man's Legend Collector's Edition": {} launch: - /ParanormalFiles_TheHookMansLegend_CE.exe: + "/ParanormalFiles_TheHookMansLegend_CE.exe": - when: - os: windows store: steam @@ -388854,7 +389933,7 @@ Paranormal: id: 1163960 Paranormal HK: files: - /PuzzleGame/Saved/Config/WindowsNoEditor: + "/PuzzleGame/Saved/Config/WindowsNoEditor": tags: - config when: @@ -388862,7 +389941,7 @@ Paranormal HK: installDir: ParanormalHK: {} launch: - /PuzzleGame.exe: + "/PuzzleGame.exe": - when: - bit: 64 os: windows @@ -388872,33 +389951,33 @@ Paranormal HK: Paranormal Psychosis: steam: id: 407750 -'Paranormal Pursuit: The Gifted One': +"Paranormal Pursuit: The Gifted One": installDir: - Paranormal Pursuit The Gifted One Collector's Edition: {} + "Paranormal Pursuit The Gifted One Collector's Edition": {} launch: - /ParanormalPursuit_TheGiftedOneCE.exe: + "/ParanormalPursuit_TheGiftedOneCE.exe": - when: - store: steam steam: id: 569140 -'Paranormal State: Poison Spring': +"Paranormal State: Poison Spring": files: - /Legacy Games/Paranormal State Poison Spring Saves/Steam: + "/Legacy Games/Paranormal State Poison Spring Saves/Steam": tags: - save when: - os: windows - /Legacy Games/Paranormal State Poison Spring Saves/Steam/profile.xml: + "/Legacy Games/Paranormal State Poison Spring Saves/Steam/profile.xml": tags: - config when: - os: windows - /Legacy Games/Paranormal State Poison Spring Saves/Steam: + "/Legacy Games/Paranormal State Poison Spring Saves/Steam": tags: - save when: - os: linux - /Legacy Games/Paranormal State Poison Spring Saves/Steam/profile.xml: + "/Legacy Games/Paranormal State Poison Spring Saves/Steam/profile.xml": tags: - config when: @@ -388906,15 +389985,15 @@ Paranormal Psychosis: installDir: ParanormalStateCE: {} launch: - /Paranormal.app: + "/Paranormal.app": - when: - os: mac store: steam - /Paranormal.exe: + "/Paranormal.exe": - when: - os: windows store: steam - /paranormal-bin: + "/paranormal-bin": - when: - os: linux store: steam @@ -388924,15 +390003,15 @@ Paranormal Teens: installDir: ParanormalTeens-all: {} launch: - /ParanormalTeens.app: + "/ParanormalTeens.app": - when: - os: mac store: steam - /ParanormalTeens.exe: + "/ParanormalTeens.exe": - when: - os: windows store: steam - /ParanormalTeens.sh: + "/ParanormalTeens.sh": - when: - os: linux store: steam @@ -388947,11 +390026,11 @@ Parasite: installDir: Parasite: {} launch: - /Parasite.exe: + "/Parasite.exe": - when: - os: windows store: steam - /parasite: + "/parasite": - when: - os: linux store: steam @@ -388961,15 +390040,15 @@ Paratopic: installDir: ParatopicAM001: {} launch: - /Paratopic.app: + "/Paratopic.app": - when: - os: mac store: steam - /Paratopic.exe: + "/Paratopic.exe": - when: - os: windows store: steam - /Paratopic.x86: + "/Paratopic.x86": - when: - os: linux store: steam @@ -388979,20 +390058,20 @@ Parcel: installDir: Parcel: {} launch: - /Parcel.app: + "/Parcel.app": - when: - os: mac store: steam - /Parcel.exe: + "/Parcel.exe": - when: - os: windows store: steam - /Parcel.x86: + "/Parcel.x86": - when: - bit: 32 os: linux store: steam - /Parcel.x86_64: + "/Parcel.x86_64": - when: - bit: 64 os: linux @@ -389003,7 +390082,7 @@ Parcel Panic: installDir: Parcel Panic: {} launch: - /Parcel Panic.exe: + "/Parcel Panic.exe": - when: - os: windows store: steam @@ -389014,24 +390093,24 @@ Parcheesi Boardgame Simulator: id: 957860 Pariah: files: - /Saves/SavedGame: + "/Saves/SavedGame": tags: - save when: - os: windows - /System/Pariah.ini: + "/System/Pariah.ini": tags: - config when: - os: windows Paris-Marseille Racing: files: - /data/Current.rcr: + "/data/Current.rcr": tags: - save when: - os: windows -'Paris: Jigsaw Puzzles': +"Paris: Jigsaw Puzzles": installDir: Paris Jigsaw Puzzles: {} steam: @@ -389040,16 +390119,16 @@ Parity: installDir: Parity: {} launch: - /Parity: + "/Parity": - when: - bit: 64 os: linux store: steam - /Parity.app/Contents/MacOS/Parity: + "/Parity.app/Contents/MacOS/Parity": - when: - os: mac store: steam - /Parity.exe: + "/Parity.exe": - when: - os: windows store: steam @@ -389057,7 +390136,7 @@ Parity: id: 978660 Park Beyond: files: - /AppData/LocalLow/ParkBeyond/Saved/SaveGames/Steam_: + "/AppData/LocalLow/ParkBeyond/Saved/SaveGames/Steam_": tags: - save when: @@ -389065,7 +390144,7 @@ Park Beyond: installDir: ParkBeyond: {} launch: - /ParkBeyond.exe: + "/ParkBeyond.exe": - when: - store: steam steam: @@ -389074,26 +390153,24 @@ Park Bound: installDir: Park Bound: {} launch: - /jre/bin/java: - - arguments: '-jar -Xms256m -server -XX:+TieredCompilation -XX:MetaspaceSize=64M -XX:CompileThreshold=1500 ParkBound' + "/jre/bin/java": + - arguments: "-jar -Xms256m -server -XX:+TieredCompilation -XX:MetaspaceSize=64M -XX:CompileThreshold=1500 ParkBound" when: - bit: 64 os: linux store: steam - - arguments: >- - -jar -Dorg.lwjgl.system.allocator=system -Xms256m -XX:+TieredCompilation -XX:MetaspaceSize=64M - -XX:CompileThreshold=1500 -XstartOnFirstThread ParkBound + - arguments: "-jar -Dorg.lwjgl.system.allocator=system -Xms256m -XX:+TieredCompilation -XX:MetaspaceSize=64M -XX:CompileThreshold=1500 -XstartOnFirstThread ParkBound" when: - os: mac store: steam - /jre/bin/javaw.exe: - - arguments: '-jar -Xms256m -XX:MetaspaceSize=64M ParkBound' + "/jre/bin/javaw.exe": + - arguments: "-jar -Xms256m -XX:MetaspaceSize=64M ParkBound" when: - bit: 32 os: windows store: steam - /jre_x64/bin/javaw.exe: - - arguments: '-jar -Xms256m -XX:MetaspaceSize=64M ParkBound' + "/jre_x64/bin/javaw.exe": + - arguments: "-jar -Xms256m -XX:MetaspaceSize=64M ParkBound" when: - bit: 64 os: windows @@ -389104,7 +390181,7 @@ Park assault: installDir: Park assault: {} launch: - /gameplay.exe: + "/gameplay.exe": - when: - os: windows store: steam @@ -389115,12 +390192,12 @@ Park the Car: id: 935690 Parkan II: files: - /parkan2.ini: + "/parkan2.ini": tags: - config when: - os: windows - /save: + "/save": tags: - save when: @@ -389130,7 +390207,7 @@ Parkan II: installDir: Parkan2: {} launch: - /Parkan2.exe: + "/Parkan2.exe": - when: - os: windows store: steam @@ -389140,26 +390217,26 @@ Parkan II: - config steam: id: 289400 -'Parkan: Iron Strategy': +"Parkan: Iron Strategy": gog: id: 1333602811 installDir: Parkan Iron Strategy: {} launch: - /iron_3d.exe: + "/iron_3d.exe": - when: - os: windows store: steam steam: id: 953820 -'Parkan: The Imperial Chronicles': +"Parkan: The Imperial Chronicles": files: - /CTRL_E.SET: + "/CTRL_E.SET": tags: - config when: - os: windows - /GAME*.SAV: + "/GAME*.SAV": tags: - save when: @@ -389169,7 +390246,7 @@ Parkan II: installDir: PARKAN THE IMPERIAL CHRONICLES: {} launch: - /PARKAN.EXE: + "/PARKAN.EXE": - when: - os: windows store: steam @@ -389177,7 +390254,7 @@ Parkan II: id: 575690 Parkasaurus: files: - /AppData/LocalLow/Washbear/Parkasaurus/CloudSaves: + "/AppData/LocalLow/Washbear/Parkasaurus/CloudSaves": tags: - save when: @@ -389185,7 +390262,7 @@ Parkasaurus: installDir: Parkasaurus: {} launch: - /Parkasaurus.exe: + "/Parkasaurus.exe": - when: - os: windows store: steam @@ -389199,16 +390276,16 @@ Parked In The Dark: installDir: Parked In The Dark: {} launch: - /ParkedInTheDark.exe: + "/ParkedInTheDark.exe": - when: - bit: 64 os: windows store: steam steam: id: 1185370 -'Parker & Lane: Criminal Justice': +"Parker & Lane: Criminal Justice": files: - /GameHouse/Parker&Lane: + "/GameHouse/Parker&Lane": tags: - save when: @@ -389216,25 +390293,25 @@ Parked In The Dark: installDir: Parker & Lane: {} launch: - /Parker&Lane.app/Contents/MacOS/Parker&Lane: + "/Parker&Lane.app/Contents/MacOS/Parker&Lane": - when: - os: mac store: steam - /ParkerAndLane.exe: + "/ParkerAndLane.exe": - when: - os: windows store: steam steam: id: 761790 -'Parker & Lane: Twisted Minds': +"Parker & Lane: Twisted Minds": installDir: Parker & Lane 2: {} launch: - /ParkerAndLane2.app/Contents/MacOS/ParkerAndLane2: + "/ParkerAndLane2.app/Contents/MacOS/ParkerAndLane2": - when: - os: mac store: steam - /ParkerAndLane2.exe: + "/ParkerAndLane2.exe": - when: - os: windows store: steam @@ -389244,7 +390321,7 @@ Parking 3D: installDir: Parking 3D: {} launch: - /Parking 3D.exe: + "/Parking 3D.exe": - when: - store: steam steam: @@ -389253,8 +390330,8 @@ Parking Cop Simulator: installDir: Parking Cop Simulator: {} launch: - /nw.exe: - - arguments: '--in-process-gpu' + "/nw.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam @@ -389265,17 +390342,17 @@ Parking Lot Royale: id: 1048670 Parkitect: files: - /.local/share/Steam/steamapps/common/Parkitect/Saves: + "/.local/share/Steam/steamapps/common/Parkitect/Saves": tags: - save when: - os: linux - /Parkitect/Saves/Savegames: + "/Parkitect/Saves/Savegames": tags: - save when: - os: windows - /Parkitect/settings.txt: + "/Parkitect/settings.txt": tags: - config when: @@ -389289,20 +390366,20 @@ Parkitect: installDir: Parkitect: {} launch: - /Parkitect.app/Contents/MacOS/Parkitect: + "/Parkitect.app/Contents/MacOS/Parkitect": - when: - os: mac store: steam - /Parkitect.exe: + "/Parkitect.exe": - when: - os: windows store: steam - /Parkitect.x86: + "/Parkitect.x86": - when: - bit: 32 os: linux store: steam - /Parkitect.x86_64: + "/Parkitect.x86_64": - when: - bit: 64 os: linux @@ -389313,7 +390390,7 @@ Parkland: installDir: Parkland: {} launch: - /Parkland.exe: + "/Parkland.exe": - when: - os: windows store: steam @@ -389323,7 +390400,7 @@ Parkour: installDir: Parkour: {} launch: - /Parkour.exe: + "/Parkour.exe": - when: - os: windows store: steam @@ -389333,7 +390410,7 @@ Parkour Polygon: installDir: Parkour Polygon: {} launch: - /ParkourPolygon.exe: + "/ParkourPolygon.exe": - when: - store: steam steam: @@ -389342,11 +390419,11 @@ Parkour Simulator: installDir: Parkour Simulator: {} launch: - /Parkour Simulator.app/Contents/MacOS/Parkour Simulator: + "/Parkour Simulator.app/Contents/MacOS/Parkour Simulator": - when: - os: mac store: steam - /Parkour Simulator.exe: + "/Parkour Simulator.exe": - when: - os: windows store: steam @@ -389356,7 +390433,7 @@ ParkourMan: installDir: ParkourMan: {} launch: - /ParkourMan.exe: + "/ParkourMan.exe": - when: - os: windows store: steam @@ -389366,7 +390443,7 @@ Paroniria 梦缚: installDir: paroniria: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -389378,7 +390455,7 @@ Parquet: installDir: Parquet: {} launch: - /PARQUET.exe: + "/PARQUET.exe": - when: - store: steam steam: @@ -389387,7 +390464,7 @@ Parse: installDir: PARSE: {} launch: - /Parse.exe: + "/Parse.exe": - when: - os: windows store: steam @@ -389397,7 +390474,7 @@ Partial Control: installDir: Partial Control: {} launch: - /Partial Control.exe: + "/Partial Control.exe": - when: - os: windows store: steam @@ -389406,19 +390483,19 @@ Partial Control: Partical City Guardians: steam: id: 496600 -'Particle Fleet: Emergence': +"Particle Fleet: Emergence": installDir: Particle Fleet Emergence: {} launch: - /PFLaunch: + "/PFLaunch": - when: - os: linux store: steam - /ParticleFleet.app: + "/ParticleFleet.app": - when: - os: mac store: steam - /ParticleFleet.exe: + "/ParticleFleet.exe": - when: - os: windows store: steam @@ -389426,17 +390503,17 @@ Partical City Guardians: id: 422900 Particle Mace: files: - /data/controllerMappings.xml: + "/data/controllerMappings.xml": tags: - config when: - os: windows - /data/missions.xml: + "/data/missions.xml": tags: - save when: - os: windows - /data/playerData.xml: + "/data/playerData.xml": tags: - config when: @@ -389444,11 +390521,11 @@ Particle Mace: installDir: PARTICLEMACE: {} launch: - /PARTICLEMACE.app: + "/PARTICLEMACE.app": - when: - os: mac store: steam - /PARTICLEMACE_executable.exe: + "/PARTICLEMACE_executable.exe": - when: - os: windows store: steam @@ -389458,7 +390535,7 @@ Particle Wars: installDir: Particle Wars: {} launch: - /PW.exe: + "/PW.exe": - when: - store: steam steam: @@ -389467,11 +390544,11 @@ Particula: installDir: Particula: {} launch: - /Particula (Mac)/Particula.app: + "/Particula (Mac)/Particula.app": - when: - os: mac store: steam - /Particula/Particula.exe: + "/Particula/Particula.exe": - when: - os: windows store: steam @@ -389479,25 +390556,26 @@ Particula: id: 343360 Particulars: files: - /.config/unity3d/See Through Studios/Particulars/prefs: + "/.config/unity3d/See Through Studios/Particulars/prefs": tags: - config - save when: - os: linux - - store: steam + - os: linux + store: steam installDir: Particulars: {} launch: - /particulars_lin: + "/particulars_lin": - when: - os: linux store: steam - /particulars_mac.app: + "/particulars_mac.app": - when: - os: mac store: steam - /particulars_win.exe: + "/particulars_win.exe": - when: - bit: 32 os: windows @@ -389516,12 +390594,12 @@ Particulate: id: 1196940 Partisans 1941: files: - /Partisans/Saved/Config/WindowsNoEditor: + "/Partisans/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /Partisans/Saved/SaveGames: + "/Partisans/Saved/SaveGames": tags: - save when: @@ -389536,16 +390614,16 @@ Partisans 1941: installDir: Partisans 1941: {} launch: - /Partisans.app: + "/Partisans.app": - when: - os: mac store: steam - /Partisans.exe: + "/Partisans.exe": - when: - bit: 64 os: windows store: steam - /Partisans/Content/Settings/win7.bat: + "/Partisans/Content/Settings/win7.bat": - when: - bit: 64 os: windows @@ -389563,7 +390641,7 @@ Party Crashers: installDir: Party Crashers: {} launch: - /PartyCrashers.exe: + "/PartyCrashers.exe": - when: - os: windows store: steam @@ -389573,11 +390651,11 @@ Party Golf: installDir: Party Golf: {} launch: - /Party Golf.app: + "/Party Golf.app": - when: - os: mac store: steam - /Party Golf.exe: + "/Party Golf.exe": - when: - os: windows store: steam @@ -389585,12 +390663,12 @@ Party Golf: id: 538550 Party Hard: files: - /.config/unity3d/PinoklGames/PartyHardGame: + "/.config/unity3d/PinoklGames/PartyHardGame": tags: - save when: - os: linux - /AppData/LocalLow/PinoklGames/PartyHardGame: + "/AppData/LocalLow/PinoklGames/PartyHardGame": tags: - save when: @@ -389600,22 +390678,22 @@ Party Hard: installDir: Party Hard: {} launch: - /PartyHardGame.app: + "/PartyHardGame.app": - when: - os: mac store: steam - /PartyHardGame.exe: + "/PartyHardGame.exe": - when: - os: windows store: steam - /PartyHardGame.x86: - - arguments: '-force-opengl' + "/PartyHardGame.x86": + - arguments: "-force-opengl" when: - bit: 32 os: linux store: steam - /PartyHardGame.x86_64: - - arguments: '-force-opengl' + "/PartyHardGame.x86_64": + - arguments: "-force-opengl" when: - bit: 64 os: linux @@ -389628,12 +390706,12 @@ Party Hard: id: 356570 Party Hard 2: files: - /AppData/LocalLow/PinoklGames/PartyHard2/config: + "/AppData/LocalLow/PinoklGames/PartyHard2/config": tags: - config when: - os: windows - /AppData/LocalLow/PinoklGames/PartyHard2/savegame: + "/AppData/LocalLow/PinoklGames/PartyHard2/savegame": tags: - save when: @@ -389643,11 +390721,11 @@ Party Hard 2: installDir: Party Hard 2: {} launch: - /PartyHard2Game.app: + "/PartyHard2Game.app": - when: - os: mac store: steam - /PartyHard2Game.exe: + "/PartyHard2Game.exe": - when: - os: windows store: steam @@ -389657,7 +390735,7 @@ Party Hard Tycoon: installDir: Party Hard Tycoon: {} launch: - /PartyHardTycoon.exe: + "/PartyHardTycoon.exe": - when: - os: windows store: steam @@ -389667,7 +390745,7 @@ Party Jousting: installDir: Party Jousting: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -389677,20 +390755,20 @@ Party Panic: installDir: Party Panic: {} launch: - /PartyPanic.app/Contents/MacOS/PartyPanic: + "/PartyPanic.app/Contents/MacOS/PartyPanic": - when: - os: mac store: steam - /PartyPanic.exe: + "/PartyPanic.exe": - when: - os: windows store: steam - /PartyPanic.x86: + "/PartyPanic.x86": - when: - bit: 32 os: linux store: steam - /PartyPanic.x86_64: + "/PartyPanic.x86_64": - when: - bit: 64 os: linux @@ -389701,7 +390779,7 @@ Party Poopers: installDir: Party Poopers: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -389711,7 +390789,7 @@ Party Poppers: installDir: Party Poppers: {} launch: - /Party Poppers.exe: + "/Party Poppers.exe": - when: - bit: 64 os: windows @@ -389727,15 +390805,15 @@ Party Saboteurs: installDir: Party Saboteurs: {} launch: - /Party Saboteurs.app: + "/Party Saboteurs.app": - when: - os: mac store: steam - /Party Saboteurs.exe: + "/Party Saboteurs.exe": - when: - os: windows store: steam - /Party Saboteurs.x86: + "/Party Saboteurs.x86": - when: - os: linux store: steam @@ -389745,11 +390823,11 @@ Party of Sin: installDir: Party of Sin: {} launch: - /bin/PartyOfSin.exe: - - arguments: '' + "/bin/PartyOfSin.exe": + - arguments: "" when: - store: steam - workingDir: /bin + workingDir: "/bin" steam: id: 212700 PartyLine VR: @@ -389757,21 +390835,21 @@ PartyLine VR: PartyLine VR: {} steam: id: 846830 -'Parvaneh: Legacy of the Light''s Guardians': +"Parvaneh: Legacy of the Light's Guardians": installDir: Parvaneh: {} launch: - /GameLauncher.exe: + "/GameLauncher.exe": - when: - store: steam - /Parvaneh.exe: + "/Parvaneh.exe": - when: - store: steam steam: id: 353990 -'Pascal''s Wager: Definitive Edition': +"Pascal's Wager: Definitive Edition": files: - /AppData/LocalLow/TIPSWORKS/PascalsWager/Save: + "/AppData/LocalLow/TIPSWORKS/PascalsWager/Save": tags: - save when: @@ -389779,7 +390857,7 @@ PartyLine VR: installDir: PascalsWager: {} launch: - /PascalsWager.exe: + "/PascalsWager.exe": - when: - bit: 64 os: windows @@ -389797,7 +390875,7 @@ Pass the Wall: id: 930450 Passage: files: - /settings/Config.ini: + "/settings/Config.ini": tags: - config when: @@ -389806,7 +390884,7 @@ Passage (2018): installDir: PASSAGE: {} launch: - /PASSAGE.exe: + "/PASSAGE.exe": - when: - store: steam steam: @@ -389815,25 +390893,25 @@ Passage 4: installDir: Passage 4: {} launch: - /Passage4: + "/Passage4": - when: - os: linux store: steam - /Passage4.exe: + "/Passage4.exe": - when: - os: windows store: steam - /Passage4XL.app: + "/Passage4XL.app": - when: - os: mac store: steam steam: id: 567860 -'Passcode Breaker: The Day Before': +"Passcode Breaker: The Day Before": installDir: Passcode Breaker TDB: {} launch: - /Passcode Breaker The Day Before.exe: + "/Passcode Breaker The Day Before.exe": - when: - bit: 64 os: windows @@ -389844,24 +390922,24 @@ Passenger Seat: installDir: passenger seat: {} launch: - /passenger_seat.app: + "/passenger_seat.app": - when: - os: mac store: steam - /passenger_seat.exe: + "/passenger_seat.exe": - when: - os: windows store: steam steam: id: 1168420 -'Passengers: Awakening VR Experience': +"Passengers: Awakening VR Experience": installDir: Passengers Awakening: {} steam: id: 601490 Passing Pineview Forest: files: - /AppData/LocalLow/VIS_Games/PassingPineviewForest: + "/AppData/LocalLow/VIS_Games/PassingPineviewForest": tags: - config when: @@ -389869,19 +390947,19 @@ Passing Pineview Forest: installDir: Passing Pineview Forest: {} launch: - /.autorun/autorun.exe: + "/.autorun/autorun.exe": - when: - store: steam - workingDir: /.autorun + workingDir: "/.autorun" registry: HKEY_CURRENT_USER/Software/VIS-Games/PassingPineviewForest: tags: - config steam: id: 331120 -'Passpartout: The Starving Artist': +"Passpartout: The Starving Artist": files: - /AppData/LocalLow/Flamebait Games/Passpartout/save: + "/AppData/LocalLow/Flamebait Games/Passpartout/save": tags: - save when: @@ -389891,27 +390969,30 @@ Passing Pineview Forest: installDir: Passpartout: {} launch: - /Passpartout.exe: + "/Passpartout.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam - /Passpartout.x86: + "/Passpartout.x86": - when: - bit: 32 os: linux store: steam - /Passpartout.x86_64: + "/Passpartout.x86_64": - when: - bit: 64 os: linux store: steam - /osx32.app/Contents/MacOS/osx32: + "/osx32.app/Contents/MacOS/osx32": - when: - bit: 32 os: mac store: steam - /osx64.app/Contents/MacOS/Passpartout: + "/osx64.app/Contents/MacOS/Passpartout": - when: - os: mac store: steam @@ -389923,12 +391004,12 @@ Passing Pineview Forest: id: 582550 Past Cure: files: - /AMAHDD_2/Saved/Config/WindowsNoEditor: + "/AMAHDD_2/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /AMAHDD_2/Saved/SaveGames: + "/AMAHDD_2/Saved/SaveGames": tags: - save when: @@ -389936,7 +391017,7 @@ Past Cure: installDir: Past Cure: {} launch: - /PastCure.exe: + "/PastCure.exe": - when: - os: windows store: steam @@ -389949,7 +391030,7 @@ Pastelia Stories: installDir: PasteliaStories: {} launch: - /PSGame.exe: + "/PSGame.exe": - when: - os: windows store: steam @@ -389959,7 +391040,7 @@ Pastry Lovers: installDir: Pastry Lovers: {} launch: - /PastryLovers.exe: + "/PastryLovers.exe": - when: - os: windows store: steam @@ -389969,10 +391050,10 @@ Pat & Mat: installDir: Pat and Mat: {} launch: - /PATAMAT.exe: + "/PATAMAT.exe": - when: - store: steam - - arguments: '-options' + - arguments: "-options" when: - store: steam registry: @@ -389988,7 +391069,7 @@ PataNoir: installDir: PataNoir: {} launch: - /PataNoirWPF.exe: + "/PataNoirWPF.exe": - when: - os: windows store: steam @@ -389996,12 +391077,12 @@ PataNoir: id: 449150 Patch Quest: files: - /AppData/LocalLow/Lychee Game Labs/Patch Quest/SaveData/Users: + "/AppData/LocalLow/Lychee Game Labs/Patch Quest/SaveData/Users": tags: - save when: - os: windows - /AppData/LocalLow/Lychee Game Labs/Patch Quest/SaveData/Users/Settings.json: + "/AppData/LocalLow/Lychee Game Labs/Patch Quest/SaveData/Users/Settings.json": tags: - config when: @@ -390009,7 +391090,7 @@ Patch Quest: installDir: Patch Quest: {} launch: - /Patch Quest.exe: + "/Patch Quest.exe": - when: - bit: 64 os: windows @@ -390023,15 +391104,15 @@ Patchman vs. Red Circles: installDir: Dont Be Patchman: {} launch: - /Don't Be Patchman.app/Contents/MacOS/Don't Be Patchman: + "/Don't Be Patchman.app/Contents/MacOS/Don't Be Patchman": - when: - os: mac store: steam - /dont-be-patchman.exe: + "/dont-be-patchman.exe": - when: - os: windows store: steam - /dont-be-patchman.sh: + "/dont-be-patchman.sh": - when: - os: linux store: steam @@ -390041,20 +391122,20 @@ Patchwork: installDir: Patchwork: {} launch: - /pxw.app: + "/pxw.app": - when: - os: mac store: steam - /pxw.exe: + "/pxw.exe": - when: - os: windows store: steam - /pxw.x86: + "/pxw.x86": - when: - bit: 32 os: linux store: steam - /pxw.x86_64: + "/pxw.x86_64": - when: - bit: 64 os: linux @@ -390069,22 +391150,25 @@ Patent9: installDir: Patent9: {} launch: - /Patent9.app/Contents/MacOS/Patent9: + "/Patent9.app/Contents/MacOS/Patent9": - when: - os: mac store: steam - /Patent9.exe: + "/Patent9.exe": - when: - bit: 32 os: windows store: steam + - bit: 64 + os: windows + store: steam steam: id: 794740 Path: installDir: Path: {} launch: - /Path.exe: + "/Path.exe": - when: - store: steam steam: @@ -390093,7 +391177,7 @@ Path Of Aurora: installDir: Path Of Aurora: {} launch: - /Path Of Aurora.exe: + "/Path Of Aurora.exe": - when: - os: windows store: steam @@ -390103,11 +391187,11 @@ Path Out: installDir: Path Out: {} launch: - /Game.app/Contents/MacOS/nwjs: + "/Game.app/Contents/MacOS/nwjs": - when: - os: mac store: steam - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -390115,7 +391199,7 @@ Path Out: id: 725980 Path of Exile: files: - /My Games/Path of Exile: + "/My Games/Path of Exile": tags: - config when: @@ -390123,13 +391207,13 @@ Path of Exile: installDir: Path of Exile: {} launch: - /PathOfExileClient.app: - - arguments: '--steam' + "/PathOfExileClient.app": + - arguments: "--steam" when: - os: mac store: steam - /PathOfExileSteam.exe: - - arguments: '--nopatch' + "/PathOfExileSteam.exe": + - arguments: "--nopatch" when: - os: windows store: steam @@ -390137,13 +391221,13 @@ Path of Exile: id: 238960 Path of Giants: files: - /AppData/LocalLow/Journey Bound Games/Path of Giants/*.dat: + "/AppData/LocalLow/Journey Bound Games/Path of Giants/*.dat": tags: - config - save when: - os: windows - /Library/Application Support/com.JourneyBoundGames.PathofGiants/SavedProgress.dat: + "/Library/Application Support/com.JourneyBoundGames.PathofGiants/SavedProgress.dat": tags: - save when: @@ -390151,11 +391235,11 @@ Path of Giants: installDir: Path of Giants: {} launch: - /Path of Giants.app/Contents/MacOS/Path of Giants: + "/Path of Giants.app/Contents/MacOS/Path of Giants": - when: - os: mac store: steam - /Path of Giants.exe: + "/Path of Giants.exe": - when: - os: windows store: steam @@ -390165,21 +391249,21 @@ Path of Redemption: installDir: Path of Redemption: {} launch: - /Souls.exe: + "/Souls.exe": - when: - os: windows store: steam steam: id: 1221440 -'Path of Sin: Greed': +"Path of Sin: Greed": files: - /userdata//895420/remote/profile: + "/userdata//895420/remote/profile": tags: - config - save when: - store: steam - /Packages/ArtifexMundi.PathofSinGreed_xmkq9zz36w32m/LocalState/data/profile: + "/Packages/ArtifexMundi.PathofSinGreed_xmkq9zz36w32m/LocalState/data/profile": tags: - config - save @@ -390189,21 +391273,21 @@ Path of Redemption: installDir: Path of Sin Greed: {} launch: - /PathOfSin1.exe: + "/PathOfSin1.exe": - when: - os: windows store: steam - /PathOfSin1_amd64: + "/PathOfSin1_amd64": - when: - bit: 64 os: linux store: steam - /PathOfSin1_i386: + "/PathOfSin1_i386": - when: - bit: 32 os: linux store: steam - /mac_steam.app/Contents/MacOS/mac_steam: + "/mac_steam.app/Contents/MacOS/mac_steam": - when: - os: mac store: steam @@ -390216,7 +391300,7 @@ Path of War: installDir: Path of War: {} launch: - /SteamApp.exe: + "/SteamApp.exe": - when: - bit: 64 os: windows @@ -390227,7 +391311,7 @@ Path of Wuxia: installDir: PathOfWuxia: {} launch: - /PathOfWuxia.exe: + "/PathOfWuxia.exe": - when: - bit: 64 os: windows @@ -390238,7 +391322,7 @@ Path of Zen: installDir: Path of Zen: {} launch: - /Path_of_Zen.exe: + "/Path_of_Zen.exe": - when: - os: windows store: steam @@ -390248,15 +391332,15 @@ Path to Mnemosyne: installDir: Path to Mnemosyne: {} launch: - /PathToMnemosyne.app/Contents/MacOS/PathToMnemosyne: + "/PathToMnemosyne.app/Contents/MacOS/PathToMnemosyne": - when: - os: mac store: steam - /PathToMnemosyne.exe: + "/PathToMnemosyne.exe": - when: - os: windows store: steam - /PathToMnemosyne.x86_64: + "/PathToMnemosyne.x86_64": - when: - bit: 64 os: linux @@ -390270,11 +391354,11 @@ Path to the Sky: installDir: Path to the Sky: {} launch: - /Path to the Sky: + "/Path to the Sky": - when: - os: mac store: steam - /ptts.exe: + "/ptts.exe": - when: - os: windows store: steam @@ -390282,7 +391366,7 @@ Path to the Sky: id: 370390 Pathfinder Adventures: files: - /Saved Games/Pathfinder Adventures: + "/Saved Games/Pathfinder Adventures": tags: - save when: @@ -390290,36 +391374,36 @@ Pathfinder Adventures: installDir: Pathfinder Adventures: {} launch: - /PathfinderAdventures.app: - - arguments: '-steam' + "/PathfinderAdventures.app": + - arguments: "-steam" when: - os: mac store: steam - /PathfinderAdventures.exe: - - arguments: '-steam' + "/PathfinderAdventures.exe": + - arguments: "-steam" when: - os: windows store: steam steam: id: 480640 -'Pathfinder: Kingmaker': +"Pathfinder: Kingmaker": files: - /.config/unity3d/Owlcat Games/Pathfinder Kingmaker/Saved Games: + "/.config/unity3d/Owlcat Games/Pathfinder Kingmaker/Saved Games": tags: - save when: - os: linux - /.config/unity3d/Owlcat Games/Pathfinder Kingmaker/prefs: + "/.config/unity3d/Owlcat Games/Pathfinder Kingmaker/prefs": tags: - config when: - os: linux - /AppData/LocalLow/Owlcat Games/Pathfinder Kingmaker/Saved Games: + "/AppData/LocalLow/Owlcat Games/Pathfinder Kingmaker/Saved Games": tags: - save when: - os: windows - /Library/Application Support/unity.Owlcat Games.Pathfinder Kingmaker: + "/Library/Application Support/unity.Owlcat Games.Pathfinder Kingmaker": tags: - config when: @@ -390329,34 +391413,34 @@ Pathfinder Adventures: id: gogExtra: - 1229613329 - - 2113123723 - 1432782902 + - 2113123723 steamExtra: - - 1041820 - - 965950 - - 951520 - - 947090 - - 945272 - - 945271 - - 945270 - - 937800 - - 900448 - - 900447 - - 900446 - - 900445 - - 900444 - - 900443 - - 900442 - - 900441 - 900440 + - 900441 + - 900442 + - 900443 + - 900444 + - 900445 + - 900446 + - 900447 + - 900448 + - 937800 + - 945270 + - 945271 + - 945272 + - 947090 + - 951520 + - 965950 + - 1041820 installDir: Pathfinder Kingmaker: {} launch: - /Kingmaker.app: + "/Kingmaker.app": - when: - os: mac store: steam - /Kingmaker.exe: + "/Kingmaker.exe": - when: - os: windows store: steam @@ -390366,24 +391450,24 @@ Pathfinder Adventures: - config steam: id: 640820 -'Pathfinder: Wrath of the Righteous': +"Pathfinder: Wrath of the Righteous": files: - /AppData/LocalLow/Owlcat Games/Pathfinder Wrath Of The Righteous/Saved Games: + "/AppData/LocalLow/Owlcat Games/Pathfinder Wrath Of The Righteous/Saved Games": tags: - save when: - os: windows - /AppData/LocalLow/Owlcat Games/Pathfinder Wrath Of The Righteous/general_settings.json: + "/AppData/LocalLow/Owlcat Games/Pathfinder Wrath Of The Righteous/general_settings.json": tags: - config when: - os: windows - /Library/Application Support/unity.Owlcat Games.Pathfinder Wrath Of The Righteous/Saved Games: + "/Library/Application Support/unity.Owlcat Games.Pathfinder Wrath Of The Righteous/Saved Games": tags: - save when: - os: mac - /Library/Application Support/unity.Owlcat Games.Pathfinder Wrath Of The Righteous/general_settings.json: + "/Library/Application Support/unity.Owlcat Games.Pathfinder Wrath Of The Righteous/general_settings.json": tags: - config when: @@ -390392,20 +391476,19 @@ Pathfinder Adventures: id: 1770130134 id: gogExtra: - - 1207187357 - - 2090543924 - - 2012118725 - 1126478335 - - 2010537001 - - 1913607829 - - 1916250442 - - 1913607829 - - 2124635480 - - 2059476258 - - 1784183575 - - 2063089768 + - 1207187357 - 1416761250 - 1639177686 + - 1784183575 + - 1913607829 + - 1916250442 + - 2010537001 + - 2012118725 + - 2059476258 + - 2063089768 + - 2090543924 + - 2124635480 steamExtra: - 1694800 - 1694801 @@ -390422,11 +391505,11 @@ Pathfinder Adventures: installDir: Pathfinder Second Adventure: {} launch: - /Wrath.app: + "/Wrath.app": - when: - os: mac store: steam - /Wrath.exe: + "/Wrath.exe": - when: - os: windows store: steam @@ -390436,17 +391519,17 @@ Pathogen-病原体: installDir: Pathogen: {} launch: - /Pathogen.exe: + "/Pathogen.exe": - when: - os: windows store: steam steam: id: 794780 -'Pathogenesis: Overcome': +"Pathogenesis: Overcome": installDir: Pathogenesis Overcome: {} launch: - /Pathogenesis.exe: + "/Pathogenesis.exe": - when: - bit: 64 os: windows @@ -390455,12 +391538,12 @@ Pathogen-病原体: id: 1067320 Pathologic: files: - /Saves: + "/Saves": tags: - save when: - os: windows - /data: + "/data": tags: - config when: @@ -390469,12 +391552,12 @@ Pathologic: id: 1207659197 Pathologic 2: files: - /AppData/LocalLow/Ice-Pick Lodge/Pathologic 2/Saves: + "/AppData/LocalLow/Ice-Pick Lodge/Pathologic 2/Saves": tags: - save when: - os: windows - /AppData/LocalLow/Ice-Pick Lodge/Pathologic 2/Settings: + "/AppData/LocalLow/Ice-Pick Lodge/Pathologic 2/Settings": tags: - config when: @@ -390484,7 +391567,7 @@ Pathologic 2: installDir: Pathologic: {} launch: - /Pathologic.exe: + "/Pathologic.exe": - when: - bit: 64 os: windows @@ -390493,12 +391576,12 @@ Pathologic 2: id: 505230 Pathologic Classic HD: files: - /Saves: + "/Saves": tags: - save when: - os: windows - /Saves/confiding: + "/Saves/confiding": tags: - config when: @@ -390511,18 +391594,18 @@ Pathologic Classic HD: installDir: Pathologic Classic HD: {} launch: - /bin/Final/Game.exe: + "/bin/Final/Game.exe": - when: - os: windows store: steam - workingDir: /bin/Final + workingDir: "/bin/Final" steam: id: 384110 -'Pathologic: The Marble Nest': +"Pathologic: The Marble Nest": installDir: Pathologic Demo: {} launch: - /Pathologic.exe: + "/Pathologic.exe": - when: - bit: 64 os: windows @@ -390535,7 +391618,7 @@ Pathologic Classic HD: id: 607730 Pathos: files: - /LocalLow/Broguelike/PATHOS: + "/LocalLow/Broguelike/PATHOS": tags: - save when: @@ -390543,20 +391626,20 @@ Pathos: installDir: PATHOS: {} launch: - /PATHOS.app: + "/PATHOS.app": - when: - os: mac store: steam - /PATHOS.exe: + "/PATHOS.exe": - when: - os: windows store: steam - /PATHOS.x86: + "/PATHOS.x86": - when: - bit: 32 os: linux store: steam - /PATHOS.x86_64: + "/PATHOS.x86_64": - when: - bit: 64 os: linux @@ -390567,7 +391650,7 @@ Pathos (2019): installDir: Pathos: {} launch: - /Horde.exe: + "/Horde.exe": - when: - os: windows store: steam @@ -390577,7 +391660,7 @@ Pathosis: installDir: Pathosis: {} launch: - /ProjectAcylis.exe: + "/ProjectAcylis.exe": - when: - store: steam steam: @@ -390586,15 +391669,15 @@ Paths & Danger: installDir: Paths & Danger: {} launch: - /Paths & Danger.exe: + "/Paths & Danger.exe": - when: - os: windows store: steam - /Paths&Danger.app/Contents/MacOS/Paths _ Danger: + "/Paths&Danger.app/Contents/MacOS/Paths _ Danger": - when: - os: mac store: steam - /Paths&Danger.x86_64: + "/Paths&Danger.x86_64": - when: - os: linux store: steam @@ -390604,11 +391687,11 @@ Paths Taken: installDir: Paths Taken: {} launch: - /Paths Taken.exe: + "/Paths Taken.exe": - when: - os: windows store: steam - /Paths Taken.sh: + "/Paths Taken.sh": - when: - bit: 64 os: linux @@ -390622,24 +391705,24 @@ Pathstow Mystery VR: id: 716240 Pathway: files: - /Packages/Chucklefish.Pathway_ywkyrypjzhpx8/LocalCache/Local/Robotality/Pathway: + "/Packages/Chucklefish.Pathway_ywkyrypjzhpx8/LocalCache/Local/Robotality/Pathway": tags: - config when: - os: windows store: microsoft - /Packages/Chucklefish.Pathway_ywkyrypjzhpx8/LocalCache/Local/Robotality/Pathway/save*.bin: + "/Packages/Chucklefish.Pathway_ywkyrypjzhpx8/LocalCache/Local/Robotality/Pathway/save*.bin": tags: - save when: - os: windows store: microsoft - /Robotality/Pathway/save*.bin: + "/Robotality/Pathway/save*.bin": tags: - save when: - os: windows - /Robotality/Pathway/settings.json: + "/Robotality/Pathway/settings.json": tags: - config when: @@ -390649,18 +391732,18 @@ Pathway: installDir: Pathway: {} launch: - /Pathway: - - arguments: '--steam' + "/Pathway": + - arguments: "--steam" when: - os: linux store: steam - /Pathway.app/Contents/MacOS/Pathway: - - arguments: '--steam' + "/Pathway.app/Contents/MacOS/Pathway": + - arguments: "--steam" when: - os: mac store: steam - /Pathway.exe: - - arguments: '--steam' + "/Pathway.exe": + - arguments: "--steam" when: - os: windows store: steam @@ -390668,7 +391751,7 @@ Pathway: id: 546430 Pathways into Darkness: files: - /Library/Containers/com.manuptimestudios.pathwaysintodarkness/Data/Library/Application Support/Pathways into Darkness/Saved Games.pathways: + "/Library/Containers/com.manuptimestudios.pathwaysintodarkness/Data/Library/Application Support/Pathways into Darkness/Saved Games.pathways": tags: - save when: @@ -390677,24 +391760,24 @@ Pato Box: installDir: Pato Box: {} launch: - /PatoBox.app/Contents/MacOS/PatoBox: + "/PatoBox.app/Contents/MacOS/PatoBox": - when: - os: mac store: steam - /PatoBox.exe: + "/PatoBox.exe": - when: - os: windows store: steam steam: id: 682080 -'Patrician II: Quest for Power': +"Patrician II: Quest for Power": files: - /P2.cfg: + "/P2.cfg": tags: - config when: - os: windows - /Save: + "/Save": tags: - save when: @@ -390704,19 +391787,19 @@ Pato Box: id: gogExtra: - 1207658802 -'Patrician III: Rise of the Hanse': +"Patrician III: Rise of the Hanse": files: - /P2.cfg: + "/P2.cfg": tags: - config when: - os: windows - /gl.cfg: + "/gl.cfg": tags: - config when: - os: windows - /save: + "/save": tags: - save when: @@ -390726,12 +391809,12 @@ Pato Box: installDir: Patrician III: {} launch: - /Patrician3.exe: + "/Patrician3.exe": - when: - store: steam steam: id: 33570 -'Patrician IV: Conquest by Trade': +"Patrician IV: Conquest by Trade": gog: id: 1982180359 id: @@ -390740,21 +391823,21 @@ Pato Box: installDir: Patrician IV: {} launch: - /Patrician4.exe: + "/Patrician4.exe": - when: - store: steam steam: id: 57620 Patriot: files: - /SCENARIO/*.SCN: + "/SCENARIO/*.SCN": tags: - save when: - os: dos Patron: files: - /Saves: + "/Saves": tags: - save when: @@ -390764,7 +391847,7 @@ Patron: installDir: Patron: {} launch: - /GameLauncher.exe: + "/GameLauncher.exe": - when: - store: steam steam: @@ -390773,11 +391856,11 @@ Pattern: installDir: Pattern: {} launch: - /Pattern.app: + "/Pattern.app": - when: - os: mac store: steam - /Pattern.exe: + "/Pattern.exe": - when: - os: windows store: steam @@ -390787,20 +391870,20 @@ Patterna: installDir: Patterna: {} launch: - /patterna.app/Contents/MacOS/patterna: + "/patterna.app/Contents/MacOS/patterna": - when: - os: mac store: steam - /patterna.exe: + "/patterna.exe": - when: - os: windows store: steam - /patterna.x86: + "/patterna.x86": - when: - bit: 32 os: linux store: steam - /patterna.x86_64: + "/patterna.x86_64": - when: - bit: 64 os: linux @@ -390811,7 +391894,7 @@ Patternis: installDir: Patternis: {} launch: - /Patternis.exe: + "/Patternis.exe": - when: - store: steam steam: @@ -390820,33 +391903,33 @@ Patterns: installDir: Patterns: {} launch: - /game.app: + "/game.app": - when: - os: mac store: steam - /win/game.exe: + "/win/game.exe": - when: - os: windows store: steam - workingDir: /win + workingDir: "/win" steam: id: 218980 -'Paul Pixel: The Awakening': +"Paul Pixel: The Awakening": installDir: Paul Pixel - The Awakening: {} launch: - /Paul Pixel - The Awakening.app/Contents/MacOS/Paul Pixel - The Awakening: + "/Paul Pixel - The Awakening.app/Contents/MacOS/Paul Pixel - The Awakening": - when: - os: mac store: steam steam: id: 569050 -Paul's World: +"Paul's World": installDir: - Paul's World: {} + "Paul's World": {} launch: - /Pauls World.exe: - - arguments: '--in-process-gpu' + "/Pauls World.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam @@ -390857,16 +391940,16 @@ PaulPaul - Act 1: PaulPaul - Act 1: {} steam: id: 892560 -Paulo's Wing: +"Paulo's Wing": installDir: - Paulo's Wing: {} + "Paulo's Wing": {} steam: id: 592720 Paunch: installDir: Paunch: {} launch: - /Paunch.exe: + "/Paunch.exe": - when: - bit: 64 os: windows @@ -390877,11 +391960,11 @@ Pavel Quest: installDir: Pavel Quest: {} launch: - /PavelQuest.app: + "/PavelQuest.app": - when: - os: mac store: steam - /PavelQuest.exe: + "/PavelQuest.exe": - when: - os: windows store: steam @@ -390891,15 +391974,15 @@ Pavilion: installDir: Pavilion: {} launch: - /pavilion.app/Contents/MacOS/pavilion: + "/pavilion.app/Contents/MacOS/pavilion": - when: - os: mac store: steam - /pavilion.exe: + "/pavilion.exe": - when: - os: windows store: steam - /pavilion.x86: + "/pavilion.x86": - when: - os: linux store: steam @@ -390907,7 +391990,7 @@ Pavilion: id: 417150 Pavlov: files: - /Pavlov/Saved/Config/WindowsNoEditor: + "/Pavlov/Saved/Config/WindowsNoEditor": tags: - config when: @@ -390916,38 +391999,38 @@ Pavlov: PavlovVR: {} steam: id: 555160 -'Paw Patrol The Movie: Adventure City Calls': +"Paw Patrol The Movie: Adventure City Calls": installDir: Paw Patrol The Movie: {} launch: - /PPTM.exe: + "/PPTM.exe": - when: - os: windows store: steam steam: id: 1434310 -'Paw Patrol: Grand Prix': +"Paw Patrol: Grand Prix": installDir: PAW Patrol Racing: {} launch: - /PAW.exe: + "/PAW.exe": - when: - store: steam steam: id: 1770490 -'Paw Patrol: Mighty Pups Save Adventure Bay': +"Paw Patrol: Mighty Pups Save Adventure Bay": installDir: PAW Patrol Mighty Pups Save Adventure Bay: {} launch: - /pp2.exe: + "/pp2.exe": - when: - os: windows store: steam steam: id: 1374990 -'Paw Patrol: On A Roll!': +"Paw Patrol: On A Roll!": files: - /AppData/LocalLow/Outright Games Ltd/Paw Patrol/*.save: + "/AppData/LocalLow/Outright Games Ltd/Paw Patrol/*.save": tags: - save when: @@ -390955,7 +392038,7 @@ Pavlov: installDir: Paw Patrol On A Roll: {} launch: - /PawPatrol.exe: + "/PawPatrol.exe": - when: - bit: 64 os: windows @@ -390964,17 +392047,17 @@ Pavlov: id: 758730 Paw Paw Paw: files: - /AppData/LocalLow/Simpleton/Paw Paw Paw/*.sav: + "/AppData/LocalLow/Simpleton/Paw Paw Paw/*.sav": tags: - save when: - os: windows - /AppData/LocalLow/Simpleton/Paw Paw Paw/controller settings: + "/AppData/LocalLow/Simpleton/Paw Paw Paw/controller settings": tags: - config when: - os: windows - /AppData/LocalLow/Simpleton/Paw Paw Paw/paw.stg: + "/AppData/LocalLow/Simpleton/Paw Paw Paw/paw.stg": tags: - config when: @@ -390982,15 +392065,15 @@ Paw Paw Paw: installDir: Paw Paw Paw: {} launch: - /Paw Paw Paw.app: + "/Paw Paw Paw.app": - when: - os: mac store: steam - /Paw Paw Paw.exe: + "/Paw Paw Paw.exe": - when: - os: windows store: steam - /Paw Paw Paw.x86: + "/Paw Paw Paw.x86": - when: - os: linux store: steam @@ -391005,16 +392088,16 @@ Pawarumi: installDir: Pawarumi: {} launch: - /Pawarumi: + "/Pawarumi": - when: - bit: 64 os: linux store: steam - /Pawarumi.app: + "/Pawarumi.app": - when: - os: mac store: steam - /Pawarumi.exe: + "/Pawarumi.exe": - when: - bit: 64 os: windows @@ -391025,8 +392108,8 @@ Pawn: installDir: Pawn: {} launch: - /nw.exe: - - arguments: '-windowed' + "/nw.exe": + - arguments: "-windowed" when: - os: windows store: steam @@ -391036,15 +392119,15 @@ Pawn of the Dead: installDir: Pawn of the Dead: {} launch: - /Pawn of the Dead.app: + "/Pawn of the Dead.app": - when: - os: mac store: steam - /Pawn of the Dead.exe: + "/Pawn of the Dead.exe": - when: - os: windows store: steam - /PawnOfTheDead.x86_64: + "/PawnOfTheDead.x86_64": - when: - bit: 64 os: linux @@ -391053,12 +392136,12 @@ Pawn of the Dead: id: 890130 Pawnbarian: files: - /AppData/LocalLow/j4nw/Pawnbarian/progress.json: + "/AppData/LocalLow/j4nw/Pawnbarian/progress.json": tags: - save when: - os: windows - /AppData/LocalLow/j4nw/Pawnbarian/run.json: + "/AppData/LocalLow/j4nw/Pawnbarian/run.json": tags: - save when: @@ -391066,15 +392149,15 @@ Pawnbarian: installDir: Pawnbarian: {} launch: - /Contents/MacOS/Pawnbarian: + "/Contents/MacOS/Pawnbarian": - when: - os: mac store: steam - /Pawnbarian.exe: + "/Pawnbarian.exe": - when: - os: windows store: steam - /Pawnbarian.x86_64: + "/Pawnbarian.x86_64": - when: - os: linux store: steam @@ -391087,28 +392170,28 @@ Pawnbarian: Pawnshop Tycoon: steam: id: 1216990 -'Paws & Claws: Pampered Pets': +"Paws & Claws: Pampered Pets": installDir: Paws and Claws Pampered Pets: {} launch: - /PamperedPets.exe: + "/PamperedPets.exe": - when: - store: steam steam: id: 33700 -'Paws & Claws: Pet School': +"Paws & Claws: Pet School": installDir: Paws and Claws Pet School: {} launch: - /bin/win32/petschool.hta: + "/bin/win32/petschool.hta": - when: - store: steam - workingDir: /bin/win32 + workingDir: "/bin/win32" steam: id: 33710 -'Paws & Claws: Pet Vet': +"Paws & Claws: Pet Vet": files: - /THQ/save/savegame.save: + "/THQ/save/savegame.save": tags: - save when: @@ -391116,39 +392199,39 @@ Pawnshop Tycoon: installDir: Paws and Claws Pet Vet: {} launch: - /bin/win32/tpraxis.hta: + "/bin/win32/tpraxis.hta": - when: - store: steam - workingDir: /bin/win32 + workingDir: "/bin/win32" registry: HKEY_CURRENT_USER/Software/THQ/Pet Vet: tags: - config steam: id: 33720 -'Paws & Effect: My Dogs Are Human!': +"Paws & Effect: My Dogs Are Human!": installDir: Paws and Effect: {} launch: - /Paws_and_Effect.exe: + "/Paws_and_Effect.exe": - when: - os: windows store: steam steam: id: 1212040 -Paws 'n Claws VR: +"Paws 'n Claws VR": installDir: - Paws 'n Claws: {} + "Paws 'n Claws": {} steam: id: 826450 Paws and Soul: files: - /Paws_and_soul/Saved/SaveGames/GameSettingsSave.sav: + "/Paws_and_soul/Saved/SaveGames/GameSettingsSave.sav": tags: - config when: - os: windows - /Paws_and_soul/Saved/SaveGames/WolfSave: + "/Paws_and_soul/Saved/SaveGames/WolfSave": tags: - save when: @@ -391156,28 +392239,28 @@ Paws and Soul: installDir: Paws and Soul: {} launch: - /Paws_and_soul.exe: + "/Paws_and_soul.exe": - when: - bit: 64 os: windows store: steam steam: id: 911510 -'Paws: A Shelter 2 Game': +"Paws: A Shelter 2 Game": gog: id: 1455701771 installDir: Paws: {} launch: - /Paws.app: + "/Paws.app": - when: - os: mac store: steam - /Paws.exe: + "/Paws.exe": - when: - os: windows store: steam - /Paws.x86: + "/Paws.x86": - when: - os: linux store: steam @@ -391187,26 +392270,26 @@ Paws and Soul: - save steam: id: 434000 -'Pax Imperia: Eminent Domain': +"Pax Imperia: Eminent Domain": gog: id: 1434378430 Pax Nova: installDir: Pax Nova: {} launch: - /Pax Nova.exe: + "/Pax Nova.exe": - when: - bit: 64 os: windows store: steam steam: id: 804850 -'Pax Romana: Romulus': +"Pax Romana: Romulus": installDir: Pax Romana Romulus: {} launch: - /game.exe: - - arguments: '--in-process-gpu' + "/game.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam @@ -391216,7 +392299,7 @@ Pax Ruthenia: installDir: Pax Ruthenia: {} launch: - /Pax Ruthenia.exe: + "/Pax Ruthenia.exe": - when: - os: windows store: steam @@ -391228,25 +392311,25 @@ Pay for picture Vol.01: Pay for picture Vol.02: steam: id: 1086360 -'Pay2Win: The Tricks Exposed': +"Pay2Win: The Tricks Exposed": installDir: Pay2Win The Tricks Exposed: {} launch: - /Pay2Win The Tricks Exposed.app/Contents/MacOS/Pay2Win The Tricks Exposed: + "/Pay2Win The Tricks Exposed.app/Contents/MacOS/Pay2Win The Tricks Exposed": - when: - os: mac store: steam - /Pay2Win The Tricks Exposed.exe: + "/Pay2Win The Tricks Exposed.exe": - when: - os: windows store: steam steam: id: 416760 -'Paycheck: City RPG': +"Paycheck: City RPG": installDir: Paycheck City RPG: {} launch: - /paycheck000.exe: + "/paycheck000.exe": - when: - bit: 64 os: windows @@ -391255,24 +392338,24 @@ Pay for picture Vol.02: id: 1073360 Payday 2: files: - /userdata//218620/remote: + "/userdata//218620/remote": tags: - save when: + - store: steam - os: linux store: steam - - store: steam - /PAYDAY 2/renderer_settings.xml: + "/PAYDAY 2/renderer_settings.xml": tags: - config when: - os: windows - /PAYDAY 2/saves/: + "/PAYDAY 2/saves/": tags: - save when: - os: windows - /.local/share/Starbreeze/Payday2/renderer_settings.xml: + "/.local/share/Starbreeze/Payday2/renderer_settings.xml": tags: - config when: @@ -391346,16 +392429,16 @@ Payday 2: installDir: PAYDAY 2: {} launch: - /payday2.app: + "/payday2.app": - when: - os: mac store: steam - /payday2_release: + "/payday2_release": - when: - bit: 64 os: linux store: steam - /payday2_win32_release.exe: + "/payday2_win32_release.exe": - when: - os: windows store: steam @@ -391363,26 +392446,26 @@ Payday 2: id: 218620 Payday 3: files: - /PAYDAY3/Saved/Config/WindowsClient/GameUserSettings.ini: + "/PAYDAY3/Saved/Config/WindowsClient/GameUserSettings.ini": tags: - config when: - os: windows steam: id: 1272080 -'Payday: The Heist': +"Payday: The Heist": files: - /userdata//24240/remote: + "/userdata//24240/remote": tags: - save when: - store: steam - /PAYDAY/renderer_settings.xml: + "/PAYDAY/renderer_settings.xml": tags: - config when: - os: windows - /PAYDAY/saves/: + "/PAYDAY/saves/": tags: - save when: @@ -391390,7 +392473,7 @@ Payday 3: installDir: PAYDAY The Heist: {} launch: - /payday_win32_release.exe: + "/payday_win32_release.exe": - when: - store: steam steam: @@ -391399,26 +392482,26 @@ Payroll: installDir: Payroll: {} launch: - /Payroll/PayrollLauncher.exe: + "/Payroll/PayrollLauncher.exe": - when: - os: windows store: steam steam: id: 548500 -'Pe-2: Dive Bomber': +"Pe-2: Dive Bomber": installDir: Pe-2 Dive Bomber: {} launch: - /eng/pe2.exe: - - arguments: '-w' + "/eng/pe2.exe": + - arguments: "-w" when: - os: windows store: steam - when: - os: windows store: steam - /rus/pe2.exe: - - arguments: '-w' + "/rus/pe2.exe": + - arguments: "-w" when: - os: windows store: steam @@ -391431,7 +392514,7 @@ Peace Data: installDir: Peace Data: {} launch: - /Peace Data.exe: + "/Peace Data.exe": - when: - store: steam steam: @@ -391440,7 +392523,7 @@ Peace Duke: installDir: Peace Duke: {} launch: - /PeaceDuke.exe: + "/PeaceDuke.exe": - when: - os: windows store: steam @@ -391453,7 +392536,7 @@ Peace Restored: installDir: Peace Restored: {} launch: - /WindowsNoEditor/Tutorial1.exe: + "/WindowsNoEditor/Tutorial1.exe": - when: - os: windows store: steam @@ -391463,23 +392546,23 @@ Peace of Evil: installDir: Peace of Evil: {} launch: - /Peace of Evil.app: + "/Peace of Evil.app": - when: - os: mac store: steam - /Peace of Evil.exe: + "/Peace of Evil.exe": - when: - os: windows store: steam - /Peace of Evil.sh: + "/Peace of Evil.sh": - when: - os: linux store: steam steam: id: 1070240 -'Peace, Death!': +"Peace, Death!": files: - /PeaceDeath/stageselectroom100.ini: + "/PeaceDeath/stageselectroom100.ini": tags: - save when: @@ -391487,11 +392570,11 @@ Peace of Evil: installDir: PeaceDeath: {} launch: - /PeaceDeath.exe: + "/PeaceDeath.exe": - when: - os: windows store: steam - /run.sh: + "/run.sh": - when: - os: linux store: steam @@ -391501,17 +392584,17 @@ Peaceful Days: installDir: Peaceful Days: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam steam: id: 1156360 -'Peak Angle: Drift Online': +"Peak Angle: Drift Online": installDir: Peak Angle Drift Online: {} launch: - /PeakAngle.exe: + "/PeakAngle.exe": - when: - os: windows store: steam @@ -391521,7 +392604,7 @@ Peakvox Escape Virus HD: installDir: peakvox Escape Virus HD: {} launch: - /EscapeVirusHD.exe: + "/EscapeVirusHD.exe": - when: - os: windows store: steam @@ -391531,7 +392614,7 @@ Peakvox Mew Mew Chamber for Steam: installDir: peakvox Mew Mew Chamber: {} launch: - /MewMewChamber.exe: + "/MewMewChamber.exe": - when: - os: windows store: steam @@ -391541,38 +392624,38 @@ Peakvox Route Candle for Steam: installDir: peakvox Route Candle: {} launch: - /RouteCandle.exe: + "/RouteCandle.exe": - when: - os: windows store: steam steam: id: 552210 -'Peaky Blinders: Mastermind': +"Peaky Blinders: Mastermind": installDir: Peaky Blinders Mastermind: {} launch: - /PeakyBlinders.exe: + "/PeakyBlinders.exe": - when: - os: windows store: steam steam: id: 1013310 -'Peaky Blinders: The King''s Ransom': +"Peaky Blinders: The King's Ransom": steam: id: 1903670 Peanut: installDir: Peanut: {} launch: - /Peanut.app: + "/Peanut.app": - when: - os: mac store: steam - /Peanut.exe: + "/Peanut.exe": - when: - os: windows store: steam - /Peanut.x86_64: + "/Peanut.x86_64": - when: - os: linux store: steam @@ -391582,11 +392665,11 @@ Pear Quest: installDir: Pear Quest: {} launch: - /pearquest.app: + "/pearquest.app": - when: - os: mac store: steam - /pearquest.exe: + "/pearquest.exe": - when: - os: windows store: steam @@ -391596,7 +392679,7 @@ PearsAndGrayWitch: installDir: PearsAndGrayWitch: {} launch: - /PearsAndGrayWitch.exe: + "/PearsAndGrayWitch.exe": - when: - os: windows store: steam @@ -391606,7 +392689,7 @@ Peas Adventure: installDir: Peas Adventure: {} launch: - /game.exe: + "/game.exe": - when: - bit: 64 os: windows @@ -391617,7 +392700,7 @@ Peasant Knight: installDir: Peasant Knight: {} launch: - /PeasantKnight.exe: + "/PeasantKnight.exe": - when: - os: windows store: steam @@ -391631,7 +392714,7 @@ PeeTee Babybuu: id: 680300 Peekaboo: files: - /Peekaboo/Saved/Config/WindowsNoEditor: + "/Peekaboo/Saved/Config/WindowsNoEditor": tags: - config when: @@ -391639,7 +392722,7 @@ Peekaboo: installDir: Peekaboo: {} launch: - /Peekaboo.exe: + "/Peekaboo.exe": - when: - bit: 64 os: windows @@ -391650,7 +392733,7 @@ Peepo Island: installDir: Peepo Island: {} launch: - /Peepo_Island.exe: + "/Peepo_Island.exe": - when: - os: windows store: steam @@ -391664,11 +392747,11 @@ Pegasus Door: Pegasus Door: {} steam: id: 699790 -'Pegasus-5: Gone Astray': +"Pegasus-5: Gone Astray": installDir: Pegasus 5: {} launch: - /Pegasus 5.exe: + "/Pegasus 5.exe": - when: - os: windows store: steam @@ -391676,7 +392759,7 @@ Pegasus Door: id: 794030 Peggle: files: - /Steam/Peggle/userdata: + "/Steam/Peggle/userdata": tags: - save when: @@ -391684,11 +392767,11 @@ Peggle: installDir: Peggle Deluxe: {} launch: - /Peggle Deluxe.app: + "/Peggle Deluxe.app": - when: - os: mac store: steam - /peggle.exe: + "/peggle.exe": - when: - os: windows store: steam @@ -391696,7 +392779,7 @@ Peggle: id: 3480 Peggle Extreme: files: - /Steam/PeggleExtreme/userdata: + "/Steam/PeggleExtreme/userdata": tags: - save when: @@ -391704,14 +392787,14 @@ Peggle Extreme: installDir: Peggle Extreme: {} launch: - /PeggleExtreme.exe: + "/PeggleExtreme.exe": - when: - store: steam steam: id: 3483 Peggle Nights: files: - /Steam/PeggleNights/userdata: + "/Steam/PeggleNights/userdata": tags: - save when: @@ -391719,32 +392802,32 @@ Peggle Nights: installDir: Peggle Nights: {} launch: - /Peggle Nights.app: + "/Peggle Nights.app": - when: - os: mac store: steam - /PeggleNights.exe: - - arguments: ' ' + "/PeggleNights.exe": + - arguments: " " when: - os: windows store: steam steam: id: 3540 -'Peggle: World of Warcraft Edition': +"Peggle: World of Warcraft Edition": files: - /PopCap Games/PeggleWoW: + "/PopCap Games/PeggleWoW": tags: - save when: - os: windows Peglin: files: - /AppData/LocalLow/Red Nexus Games Inc/Peglin: + "/AppData/LocalLow/Red Nexus Games Inc/Peglin": tags: - save when: - os: windows - /Library/Application Support/Red Nexus Games Inc/Peglin: + "/Library/Application Support/Red Nexus Games Inc/Peglin": tags: - config - save @@ -391755,11 +392838,11 @@ Peglin: installDir: Peglin: {} launch: - /Peglin.exe: + "/Peglin.exe": - when: - os: windows store: steam - /peglin.app: + "/peglin.app": - when: - os: mac store: steam @@ -391773,7 +392856,7 @@ Peku - Space Dragon: installDir: Peku: {} launch: - /Peku.exe: + "/Peku.exe": - when: - os: windows store: steam @@ -391786,15 +392869,15 @@ Pembrey: installDir: PEMBREY: {} launch: - /PembreyLinux: + "/PembreyLinux": - when: - os: linux store: steam - /PembreyMac.app: + "/PembreyMac.app": - when: - os: mac store: steam - /PembreyWindows.exe: + "/PembreyWindows.exe": - when: - os: windows store: steam @@ -391807,7 +392890,7 @@ Pen Island VR: id: 535010 Penarium: files: - /userdata//307590/remote: + "/userdata//307590/remote": tags: - save when: @@ -391815,15 +392898,15 @@ Penarium: installDir: Penarium: {} launch: - /Penarium.app: + "/Penarium.app": - when: - os: mac store: steam - /Penarium.exe: + "/Penarium.exe": - when: - os: windows store: steam - /Penarium_launcher.sh: + "/Penarium_launcher.sh": - when: - os: linux store: steam @@ -391833,11 +392916,11 @@ Pencil vs. Eraser: installDir: Pencil vs. Eraser: {} launch: - /Pencil vs. Eraser.exe: + "/Pencil vs. Eraser.exe": - when: - os: windows store: steam - /pencil-vs-eraser.app: + "/pencil-vs-eraser.app": - when: - os: mac store: steam @@ -391849,11 +392932,11 @@ Pendragon: installDir: Pendragon: {} launch: - /Pendragon.app: + "/Pendragon.app": - when: - os: mac store: steam - /Pendragon.exe: + "/Pendragon.exe": - when: - bit: 64 os: windows @@ -391864,15 +392947,15 @@ Pendragon Rising: installDir: PendragonRising: {} launch: - /Pendragon Rising.app/Contents/MacOS/Pendragon Rising: + "/Pendragon Rising.app/Contents/MacOS/Pendragon Rising": - when: - os: mac store: steam - /PendragonRising: + "/PendragonRising": - when: - os: linux store: steam - /PendragonRising.exe: + "/PendragonRising.exe": - when: - os: windows store: steam @@ -391882,11 +392965,11 @@ Pendula Swing Episode 1 - Tired and Retired: installDir: Pendula Swing: {} launch: - /PendulaSwing.app: + "/PendulaSwing.app": - when: - os: mac store: steam - /PendulaSwing.exe: + "/PendulaSwing.exe": - when: - os: windows store: steam @@ -391897,12 +392980,12 @@ Pengame: id: 494240 Penguin Kelvin: files: - /current.sav: + "/current.sav": tags: - save when: - os: windows - /kelvin.ini: + "/kelvin.ini": tags: - config when: @@ -391911,25 +392994,25 @@ Penguin Park 3D: installDir: Penguin Park 3D: {} launch: - /PenguinPark3D.app: + "/PenguinPark3D.app": - when: - os: mac store: steam - /PenguinPark3D.exe: + "/PenguinPark3D.exe": - when: - os: windows store: steam steam: id: 1167850 -'Penguins Arena: Sedna''s World': +"Penguins Arena: Sedna's World": installDir: Penguins Arena: {} launch: - /Penguins Arena.app: + "/Penguins Arena.app": - when: - os: mac store: steam - /PenguinsArena.exe: + "/PenguinsArena.exe": - when: - os: windows store: steam @@ -391939,7 +393022,7 @@ Penguins of The North: installDir: Penguins of The North: {} launch: - /Penguins of The North.exe: + "/Penguins of The North.exe": - when: - os: windows store: steam @@ -391949,7 +393032,7 @@ Penguins vs. Bugs: installDir: Penguins vs Bugs: {} launch: - /PvB.exe: + "/PvB.exe": - when: - os: windows store: steam @@ -391959,11 +393042,11 @@ Peninsular War Battles: installDir: Peninsular War Battles: {} launch: - /PeninsularWar.app: + "/PeninsularWar.app": - when: - os: mac store: steam - /PeninsularWar.exe: + "/PeninsularWar.exe": - when: - os: windows store: steam @@ -391971,7 +393054,7 @@ Peninsular War Battles: id: 675950 Penko Park: files: - Low/Ghostbutter/Penko Park: + "Low/Ghostbutter/Penko Park": tags: - config - save @@ -391980,7 +393063,7 @@ Penko Park: installDir: Penko Park: {} launch: - /Penko Park.exe: + "/Penko Park.exe": - when: - bit: 64 os: windows @@ -391991,26 +393074,26 @@ Penkura: installDir: Penkura: {} launch: - /Penkura.exe: + "/Penkura.exe": - when: - bit: 64 os: windows store: steam steam: id: 739720 -'Penn & Teller VR: Frankly Unfair, Unkind, Unnecessary, & Underhanded': +"Penn & Teller VR: Frankly Unfair, Unkind, Unnecessary, & Underhanded": installDir: Penn & Teller VR: {} steam: id: 677610 -Penny Arcade's On the Rain-Slick Precipice of Darkness 3: +"Penny Arcade's On the Rain-Slick Precipice of Darkness 3": files: /home/$USERNAME/Library/Preferences/unity.TinkerHouse Games.PAA 3.plist: tags: - save when: - os: mac - /SavedGames/Rainslick3: + "/SavedGames/Rainslick3": tags: - save when: @@ -392018,41 +393101,41 @@ Penny Arcade's On the Rain-Slick Precipice of Darkness 3: installDir: Precipice Of Darkness 3: {} launch: - /Penny Arcade's On The Rain-Slick Precipice of Darkness 3.app: + "/Penny Arcade's On The Rain-Slick Precipice of Darkness 3.app": - when: - os: mac store: steam - /Rainslick3.exe: - - arguments: '-console' + "/Rainslick3.exe": + - arguments: "-console" when: - os: windows store: steam steam: id: 213030 -Penny Arcade's On the Rain-Slick Precipice of Darkness 4: +"Penny Arcade's On the Rain-Slick Precipice of Darkness 4": files: - /SavedGames/rainslick4/rainslick 4/allplayers: + "/SavedGames/rainslick4/rainslick 4/allplayers": tags: - save when: - os: windows installDir: - Penny Arcade's On the Rain-Slick Precipice of Darkness 4: {} + "Penny Arcade's On the Rain-Slick Precipice of Darkness 4": {} launch: - /Rainslick4.exe: + "/Rainslick4.exe": - when: - store: steam steam: id: 237570 -'Penny Arcade''s On the Rain-Slick Precipice of Darkness: Episode One': +"Penny Arcade's On the Rain-Slick Precipice of Darkness: Episode One": files: - /.HotheadGames/RainSlickEp1: + "/.HotheadGames/RainSlickEp1": tags: - config - save when: - os: linux - /HotheadGames/RainSlickEp1: + "/HotheadGames/RainSlickEp1": tags: - config - save @@ -392061,24 +393144,24 @@ Penny Arcade's On the Rain-Slick Precipice of Darkness 4: installDir: On the Rain-Slick Precipice of Darkness - Episode One: {} launch: - /RainSlickEp1.exe: + "/RainSlickEp1.exe": - when: - os: windows store: steam - /RainSlickEp1Mac.app: + "/RainSlickEp1Mac.app": - when: - os: mac store: steam steam: id: 18000 -'Penny Arcade''s On the Rain-Slick Precipice of Darkness: Episode Two': +"Penny Arcade's On the Rain-Slick Precipice of Darkness: Episode Two": files: - /.HotheadGames/RainSlickEp2: + "/.HotheadGames/RainSlickEp2": tags: - save when: - os: linux - /HotheadGames/RainSlickEp2: + "/HotheadGames/RainSlickEp2": tags: - save when: @@ -392086,11 +393169,11 @@ Penny Arcade's On the Rain-Slick Precipice of Darkness 4: installDir: Penny Arcade Adventures On the Rain-Slick Precipice of Darkness Episode 2: {} launch: - /RainSlickEp2.exe: + "/RainSlickEp2.exe": - when: - os: windows store: steam - /RainSlickEp2Mac.app: + "/RainSlickEp2Mac.app": - when: - os: mac store: steam @@ -392100,7 +393183,7 @@ Penny Black: installDir: Penny Black: {} launch: - /PennyBlack.exe: + "/PennyBlack.exe": - when: - os: windows store: steam @@ -392110,24 +393193,24 @@ Penny for Your Thoughts: installDir: Penny for Your Thoughts: {} launch: - /PennyforYourThoughts.exe: + "/PennyforYourThoughts.exe": - when: - os: windows store: steam - /PennyforYourThoughts.sh: + "/PennyforYourThoughts.sh": - when: - os: linux store: steam steam: id: 1908790 -Penny's Big Breakaway: +"Penny's Big Breakaway": steam: id: 1955230 Pension Day: installDir: Pension Day: {} launch: - /player.exe: + "/player.exe": - when: - os: windows store: steam @@ -392137,7 +393220,7 @@ Pentaball: installDir: Pentaball: {} launch: - /Pentaball.exe: + "/Pentaball.exe": - when: - store: steam steam: @@ -392152,7 +393235,7 @@ Pentasma: installDir: Pentasma: {} launch: - /Pentasma.exe: + "/Pentasma.exe": - when: - os: windows store: steam @@ -392160,17 +393243,19 @@ Pentasma: id: 1217350 Pentiment: files: - /AppData/LocalLow/Obsidian Entertainment/Pentiment/CloudSync: + "/AppData/LocalLow/Obsidian Entertainment/Pentiment/CloudSync": tags: - save when: - - store: steam - /Saved Games/Pentiment: + - os: windows + store: steam + "/Saved Games/Pentiment": tags: - save when: - - store: steam - /Packages/Microsoft.OE-Missouri_8wekyb3d8bbwe/SystemAppData/wgs: + - os: windows + store: steam + "/Packages/Microsoft.OE-Missouri_8wekyb3d8bbwe/SystemAppData/wgs": tags: - save when: @@ -392182,8 +393267,8 @@ Pentiment: installDir: Pentiment: {} launch: - /Pentiment.exe: - - arguments: '-steam' + "/Pentiment.exe": + - arguments: "-steam" when: - store: steam registry: @@ -392192,39 +393277,39 @@ Pentiment: - config steam: id: 1205520 -'Penumbra: Black Plague': +"Penumbra: Black Plague": files: - /.frictionalgames/Penumbra/Black Plague: + "/.frictionalgames/Penumbra/Black Plague": tags: - config - save when: - os: linux - /.frictionalgames/Penumbra/Requiem: + "/.frictionalgames/Penumbra/Requiem": tags: - config - save when: - os: linux - /Library/Preferences/Frictional Games/Penumbra/Black Plague: + "/Library/Preferences/Frictional Games/Penumbra/Black Plague": tags: - config - save when: - os: mac - /Library/Preferences/Frictional Games/Penumbra/Requiem: + "/Library/Preferences/Frictional Games/Penumbra/Requiem": tags: - config - save when: - os: mac - /Penumbra/Black Plague: + "/Penumbra/Black Plague": tags: - config - save when: - os: windows - /Penumbra/Requiem: + "/Penumbra/Requiem": tags: - config - save @@ -392240,39 +393325,39 @@ Pentiment: installDir: Penumbra Black Plague: {} launch: - /BlackPlague.app/Contents/MacOS/BlackPlague: + "/BlackPlague.app/Contents/MacOS/BlackPlague": - when: - os: mac store: steam - /blackplague: + "/blackplague": - when: - os: linux store: steam - /redist/penumbra.exe: + "/redist/penumbra.exe": - when: - os: windows store: steam - workingDir: /redist + workingDir: "/redist" steam: id: 22120 -'Penumbra: Overture': +"Penumbra: Overture": files: - /.frictionalgames/Penumbra/Overture: + "/.frictionalgames/Penumbra/Overture": tags: - config when: - os: linux - /.frictionalgames/Penumbra/Overture/save: + "/.frictionalgames/Penumbra/Overture/save": tags: - save when: - os: linux - /Penumbra Overture/Episode1: + "/Penumbra Overture/Episode1": tags: - save when: - os: windows - /Penumbra Overture/Episode1/settings.cfg: + "/Penumbra Overture/Episode1/settings.cfg": tags: - config when: @@ -392285,26 +393370,26 @@ Pentiment: installDir: Penumbra Overture: {} launch: - /Penumbra.app/Contents/MacOS/Penumbra: + "/Penumbra.app/Contents/MacOS/Penumbra": - when: - os: mac store: steam - /penumbra: + "/penumbra": - when: - os: linux store: steam - /redist/penumbra.exe: + "/redist/penumbra.exe": - when: - os: windows store: steam - workingDir: /redist + workingDir: "/redist" steam: id: 22180 People: installDir: People: {} launch: - /People.exe: + "/People.exe": - when: - store: steam steam: @@ -392318,15 +393403,15 @@ People Eater: installDir: People Eater: {} launch: - /PeopleEater.app/Contents/MacOS/PeopleEater: + "/PeopleEater.app/Contents/MacOS/PeopleEater": - when: - os: mac store: steam - /PeopleEater.exe: + "/PeopleEater.exe": - when: - os: windows store: steam - /PeopleEater.x86: + "/PeopleEater.x86": - when: - os: linux store: steam @@ -392336,20 +393421,20 @@ People Playground: installDir: People Playground: {} launch: - /People Playground.exe: + "/People Playground.exe": - when: - os: windows store: steam steam: id: 1118200 -People's General: +"People's General": files: - /PEOPLES.INT: + "/PEOPLES.INT": tags: - config when: - os: windows - /Save: + "/Save": tags: - save when: @@ -392360,7 +393445,7 @@ PeoplePackages: installDir: PeoplePackages: {} launch: - /PeoplePackages.exe: + "/PeoplePackages.exe": - when: - os: windows store: steam @@ -392370,27 +393455,27 @@ Pepe Porcupine: installDir: Pepe Porcupine: {} launch: - /PepePorcupine.exe: + "/PepePorcupine.exe": - when: - os: windows store: steam steam: id: 487590 -Pepeizq's Cities: +"Pepeizq's Cities": installDir: - pepeizq's Cities: {} + "pepeizq's Cities": {} launch: - /pepeizq's Cities.exe: + "/pepeizq's Cities.exe": - when: - os: windows store: steam steam: id: 1039060 -Pepper's Puzzles: +"Pepper's Puzzles": installDir: - Pepper's Puzzles: {} + "Pepper's Puzzles": {} launch: - /pepper.exe: + "/pepper.exe": - when: - os: windows store: steam @@ -392400,11 +393485,11 @@ Peppered: installDir: Sokpop S04 Peppered: {} launch: - /Peppered.app: + "/Peppered.app": - when: - os: mac store: steam - /Peppered.exe: + "/Peppered.exe": - when: - os: windows store: steam @@ -392412,7 +393497,7 @@ Peppered: id: 1213600 Per Aspera: files: - /SaveData/: + "/SaveData/": tags: - save when: @@ -392422,7 +393507,7 @@ Per Aspera: installDir: Per Aspera: {} launch: - /Per Aspera.exe: + "/Per Aspera.exe": - when: - os: windows store: steam @@ -392430,7 +393515,7 @@ Per Aspera: id: 803050 Perception: files: - /Perception/Saved: + "/Perception/Saved": tags: - config - save @@ -392441,7 +393526,7 @@ Perception: installDir: Perception: {} launch: - /Perception.exe: + "/Perception.exe": - when: - bit: 64 os: windows @@ -392450,12 +393535,12 @@ Perception: id: 426310 Perceptions of the Dead: files: - /RenPy/Perceptions of the Dead-1425779921/*.save: + "/RenPy/Perceptions of the Dead-1425779921/*.save": tags: - save when: - os: windows - /RenPy/Perceptions of the Dead-1425779921/persistent: + "/RenPy/Perceptions of the Dead-1425779921/persistent": tags: - config when: @@ -392463,15 +393548,15 @@ Perceptions of the Dead: installDir: Perceptions of the Dead: {} launch: - /PerceptionsOfTheDead.app: + "/PerceptionsOfTheDead.app": - when: - os: mac store: steam - /PerceptionsOfTheDead.exe: + "/PerceptionsOfTheDead.exe": - when: - os: windows store: steam - /PerceptionsOfTheDead.sh: + "/PerceptionsOfTheDead.sh": - when: - os: linux store: steam @@ -392481,15 +393566,15 @@ Perceptions of the Dead 2: installDir: Perceptions of the Dead 2: {} launch: - /PotD2.app: + "/PotD2.app": - when: - os: mac store: steam - /PotD2.exe: + "/PotD2.exe": - when: - os: windows store: steam - /PotD2.sh: + "/PotD2.sh": - when: - os: linux store: steam @@ -392504,15 +393589,15 @@ Perchang: installDir: Perchang: {} launch: - /Perchang.app: + "/Perchang.app": - when: - os: mac store: steam - /Perchang.exe: + "/Perchang.exe": - when: - os: windows store: steam - /Perchang.x86: + "/Perchang.x86": - when: - os: linux store: steam @@ -392526,11 +393611,11 @@ Percussive VR: Percy Lancaster: steam: id: 1125670 -Percy's Last Stand: +"Percy's Last Stand": installDir: - Percy's Last Stand: {} + "Percy's Last Stand": {} launch: - /percy.exe: + "/percy.exe": - when: - os: windows store: steam @@ -392540,19 +393625,19 @@ Perdition: installDir: Perdition: {} launch: - /Perdition.exe: + "/Perdition.exe": - when: - store: steam steam: id: 1137910 Peregrin: files: - /Peregrin/graphics_config.xml: + "/Peregrin/graphics_config.xml": tags: - config when: - os: windows - /Peregrin/save.xml: + "/Peregrin/save.xml": tags: - save when: @@ -392560,17 +393645,17 @@ Peregrin: installDir: Peregrin: {} launch: - /peregrin.app: + "/peregrin.app": - when: - os: mac store: steam - /peregrin.exe: + "/peregrin.exe": - when: - os: windows store: steam steam: id: 573080 -'Pereulok: The Series': +"Pereulok: The Series": steam: id: 725500 Perfect: @@ -392582,21 +393667,24 @@ Perfect Angle: installDir: PerfectAngle: {} launch: - /PerfectAngle.app: + "/PerfectAngle.app": - when: - os: mac store: steam - /PerfectAngle.exe: + "/PerfectAngle.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam - /PerfectAngle.x86: + "/PerfectAngle.x86": - when: - bit: 32 os: linux store: steam - /PerfectAngle.x86_64: + "/PerfectAngle.x86_64": - when: - bit: 64 os: linux @@ -392612,11 +393700,11 @@ Perfect Crime: installDir: PerfectCrime: {} launch: - /Crime.exe: + "/Crime.exe": - when: - os: windows store: steam - /crime.app: + "/crime.app": - when: - os: mac store: steam @@ -392641,7 +393729,7 @@ Perfect Fit - Totemland: installDir: Perfect Fit - Totemland: {} launch: - /PerfectFit-Totemland.exe: + "/PerfectFit-Totemland.exe": - when: - store: steam steam: @@ -392650,7 +393738,7 @@ Perfect Heist: installDir: Perfect Heist: {} launch: - /PixelHeist.exe: + "/PixelHeist.exe": - when: - bit: 64 os: windows @@ -392666,7 +393754,7 @@ Perfect Memento of Touhou Question: installDir: 东方试闻广纪 ~ Perfect Memento of Touhou Question: {} launch: - /东方试闻广纪 ~ Perfect Memento of Touhou Question.exe: + "/东方试闻广纪 ~ Perfect Memento of Touhou Question.exe": - when: - os: windows store: steam @@ -392679,7 +393767,7 @@ Perfect Plan: installDir: Perfect_Plan: {} launch: - /Perfect_Plan.exe: + "/Perfect_Plan.exe": - when: - os: windows store: steam @@ -392689,7 +393777,7 @@ Perfect Round Disc Golf: installDir: Perfect Round Disc Golf: {} launch: - /TestingGrounds.exe: + "/TestingGrounds.exe": - when: - os: windows store: steam @@ -392699,11 +393787,11 @@ Perfect Tides: installDir: Perfect Tides: {} launch: - /PerfectTides.app/Contents/MacOS/AGS: + "/PerfectTides.app/Contents/MacOS/AGS": - when: - os: mac store: steam - /perfecttides.exe: + "/perfecttides.exe": - when: - os: windows store: steam @@ -392711,7 +393799,7 @@ Perfect Tides: id: 1172800 Perfect Universe: files: - /AppData/LocalLow/willsykes/perfectuniverse/PlayerPrefs.txt: + "/AppData/LocalLow/willsykes/perfectuniverse/PlayerPrefs.txt": tags: - config - save @@ -392720,7 +393808,7 @@ Perfect Universe: installDir: Perfect Universe: {} launch: - /PerfectUniverse.exe: + "/PerfectUniverse.exe": - when: - os: windows store: steam @@ -392733,8 +393821,8 @@ Perfect World International: installDir: PWI: {} launch: - /patcher/patcher.exe: - - arguments: 'steam:1' + "/patcher/patcher.exe": + - arguments: "steam:1" when: - store: steam steam: @@ -392743,7 +393831,7 @@ PerfectLover: installDir: PerfectLover: {} launch: - /PerfectLover.exe: + "/PerfectLover.exe": - when: - os: windows store: steam @@ -392753,7 +393841,7 @@ Perfection of Wisdom: installDir: Perfection of Wisdom: {} launch: - /POW-161111.exe: + "/POW-161111.exe": - when: - os: windows store: steam @@ -392761,12 +393849,12 @@ Perfection of Wisdom: id: 355380 Perfection.: files: - /Project0: + "/Project0": tags: - config when: - os: windows - /Project0: + "/Project0": tags: - config when: @@ -392774,15 +393862,15 @@ Perfection.: installDir: Perfection: {} launch: - /Mac/Perfection.app: + "/Mac/Perfection.app": - when: - os: mac store: steam - /PC/Perfection.-win-steam.exe: + "/PC/Perfection.-win-steam.exe": - when: - os: windows store: steam - /Unix/runner: + "/Unix/runner": - when: - os: linux store: steam @@ -392792,7 +393880,7 @@ Perhaps When We Dream: installDir: Perhaps While We Sleep: {} launch: - /PerhapsWhenWeDream.exe: + "/PerhapsWhenWeDream.exe": - when: - os: windows store: steam @@ -392802,11 +393890,11 @@ PeriAreion: installDir: PeriAreion: {} launch: - /PeriAreion.app: + "/PeriAreion.app": - when: - os: mac store: steam - /PeriAreion.exe: + "/PeriAreion.exe": - when: - os: windows store: steam @@ -392816,7 +393904,7 @@ Perigee: installDir: Perigee: {} launch: - /Perigee.exe: + "/Perigee.exe": - when: - bit: 64 os: windows @@ -392827,40 +393915,40 @@ Perilous Warp: installDir: Perilous Warp: {} launch: - /Perilous Warp.app/Contents/MacOS/game.run: + "/Perilous Warp.app/Contents/MacOS/game.run": - when: - os: mac store: steam - workingDir: /Perilous Warp.app/Contents/MacOS - /system/game: + workingDir: "/Perilous Warp.app/Contents/MacOS" + "/system/game": - when: - bit: 32 os: linux store: steam - workingDir: /system - /system/game.exe: + workingDir: "/system" + "/system/game.exe": - when: - bit: 32 os: windows store: steam - workingDir: /system - /system64/game: + workingDir: "/system" + "/system64/game": - when: - bit: 64 os: linux store: steam - workingDir: /system64 - /system64/game.exe: + workingDir: "/system64" + "/system64/game.exe": - when: - bit: 64 os: windows store: steam - workingDir: /system64 + workingDir: "/system64" steam: id: 668320 Perils of Man: files: - /AppData/LocalLow/Boutiq/Perils of Man: + "/AppData/LocalLow/Boutiq/Perils of Man": tags: - save when: @@ -392868,15 +393956,15 @@ Perils of Man: installDir: The Perils of Man: {} launch: - /PoM.app: + "/PoM.app": - when: - os: mac store: steam - /PoM.exe: + "/PoM.exe": - when: - os: windows store: steam - /PoM.x86: + "/PoM.x86": - when: - os: linux store: steam @@ -392884,12 +393972,12 @@ Perils of Man: id: 347710 Perimeter: files: - /Resource/Saves: + "/Resource/Saves": tags: - save when: - os: windows - /perimeter.ini: + "/perimeter.ini": tags: - config when: @@ -392899,36 +393987,36 @@ Perimeter: installDir: Perimeter: {} launch: - /Config.exe: + "/Config.exe": - when: - os: windows store: steam - /Perimeter.exe: + "/Perimeter.exe": - when: - os: windows store: steam steam: id: 289440 -'Perimeter 2: New Earth': +"Perimeter 2: New Earth": installDir: Perimeter 2: {} launch: - /Perimeter2.exe: + "/Perimeter2.exe": - when: - store: steam steam: id: 12420 -'Perimeter: Emperor''s Testament': +"Perimeter: Emperor's Testament": gog: id: 1454498998 installDir: PerimeterET: {} launch: - /Config.exe: + "/Config.exe": - when: - os: windows store: steam - /PerimeterET.exe: + "/PerimeterET.exe": - when: - os: windows store: steam @@ -392938,7 +394026,7 @@ Periodic Deliveries: installDir: Periodic Deliveries: {} launch: - /PeriodicDeliveries.exe: + "/PeriodicDeliveries.exe": - when: - store: steam steam: @@ -392953,7 +394041,7 @@ Peripeteia: id: 1437760 Perish: files: - /PERISH/Saved/SaveGames: + "/PERISH/Saved/SaveGames": tags: - save when: @@ -392963,7 +394051,7 @@ Perish: installDir: PERISH: {} launch: - /EOSBootstrapper.exe: + "/EOSBootstrapper.exe": - when: - bit: 64 os: windows @@ -392972,7 +394060,7 @@ Perish: id: 1016360 Perky Little Things: files: - /perky_little_things: + "/perky_little_things": tags: - save when: @@ -392980,15 +394068,15 @@ Perky Little Things: installDir: Perky Little Things: {} launch: - /Perky Little Things.app/Contents/MacOS/PerkyLittleThings: + "/Perky Little Things.app/Contents/MacOS/PerkyLittleThings": - when: - os: mac store: steam - /PerkyLittleThings.exe: + "/PerkyLittleThings.exe": - when: - os: windows store: steam - /PerkyLittleThings.x86_64: + "/PerkyLittleThings.x86_64": - when: - os: linux store: steam @@ -393003,26 +394091,26 @@ Permute: installDir: Permute: {} launch: - /Permute.app: + "/Permute.app": - when: - os: mac store: steam - /Permute.x86: + "/Permute.x86": - when: - bit: 32 os: linux store: steam - /Permute.x86_64: + "/Permute.x86_64": - when: - bit: 64 os: linux store: steam - /x64/Permute.exe: + "/x64/Permute.exe": - when: - bit: 64 os: windows store: steam - /x86/Permute.exe: + "/x86/Permute.exe": - when: - bit: 32 os: windows @@ -393033,10 +394121,10 @@ Perpetuum: installDir: Perpetuum: {} launch: - /Perpetuum.exe: + "/Perpetuum.exe": - when: - store: steam - - arguments: '-safe' + - arguments: "-safe" when: - store: steam steam: @@ -393046,7 +394134,7 @@ Perplexigon: Perplexigon: {} steam: id: 641590 -'Perplexity: Suburban Home': +"Perplexity: Suburban Home": installDir: Perplexity - Suburban Home: {} steam: @@ -393055,7 +394143,7 @@ Perraw - FPS Clone War Alpha: installDir: Perraw: {} launch: - /Perraw.exe: + "/Perraw.exe": - when: - os: windows store: steam @@ -393065,70 +394153,70 @@ Persephone: installDir: Persephone: {} launch: - /Persephone Steam Linux64.x86_64: + "/Persephone Steam Linux64.x86_64": - when: - bit: 64 os: linux store: steam - /Persephone Steam Win32.exe: + "/Persephone Steam Win32.exe": - when: - bit: 32 os: windows store: steam - /Persephone Steam Win64.exe: + "/Persephone Steam Win64.exe": - when: - bit: 64 os: windows store: steam - /Persephone Steam macOS.app: + "/Persephone Steam macOS.app": - when: - os: mac store: steam steam: id: 1132180 -'Perseverance: Part 1': +"Perseverance: Part 1": installDir: Perseverance Part 1: {} launch: - /P1 Mac.app/Contents/MacOS/Perseverance1: + "/P1 Mac.app/Contents/MacOS/Perseverance1": - when: - os: mac store: steam - /Perseverance1.exe: + "/Perseverance1.exe": - when: - os: windows store: steam steam: id: 854870 -'Persian Nights: Sands of Wonders': +"Persian Nights: Sands of Wonders": installDir: PersianNights_SandsofWonders: {} launch: - /PersianNights.exe: + "/PersianNights.exe": - when: - os: windows store: steam - /PersianNights_amd64: + "/PersianNights_amd64": - when: - bit: 64 os: linux store: steam - /PersianNights_i386: + "/PersianNights_i386": - when: - bit: 32 os: linux store: steam - /mac_steam.app/Contents/MacOS/mac_steam: + "/mac_steam.app/Contents/MacOS/mac_steam": - when: - os: mac store: steam steam: id: 621080 -'Persian: The Great Lamp Heist': +"Persian: The Great Lamp Heist": installDir: Persian The Great Lamp Heist: {} launch: - /persian.exe: + "/persian.exe": - when: - os: windows store: steam @@ -393138,11 +394226,11 @@ Perso: installDir: Perso: {} launch: - /Perso.exe: + "/Perso.exe": - when: - os: windows store: steam - /Perso.x86_64: + "/Perso.x86_64": - when: - bit: 64 os: linux @@ -393151,27 +394239,28 @@ Perso: id: 543940 Persona 3 Portable: files: - /userdata//1809700/remote: + "/userdata//1809700/remote": tags: - save when: - store: steam - /Packages/SEGAofAmericaInc.M0cb6b3aet_s751p9cej88mt/SystemAppData/wgs/: + "/Packages/SEGAofAmericaInc.M0cb6b3aet_s751p9cej88mt/SystemAppData/wgs/": tags: - config - save when: - os: windows store: microsoft - /Sega/P3P/steam//P3P.ini: + "/Sega/P3P/steam//P3P.ini": tags: - config when: - - store: steam + - os: windows + store: steam installDir: P3P: {} launch: - /P3P.exe: + "/P3P.exe": - when: - store: steam steam: @@ -393181,12 +394270,12 @@ Persona 3 Reload: id: 2161700 Persona 4 Arena Ultimax: files: - /P4U2/Save/*.dat: + "/P4U2/Save/*.dat": tags: - save when: - os: windows - /P4U2/Save/p4u2configs.ini: + "/P4U2/Save/p4u2configs.ini": tags: - config when: @@ -393194,7 +394283,7 @@ Persona 4 Arena Ultimax: installDir: P4U2: {} launch: - /P4U2.exe: + "/P4U2.exe": - when: - bit: 64 os: windows @@ -393203,50 +394292,53 @@ Persona 4 Arena Ultimax: id: 1602010 Persona 4 Golden: files: - /userdata//1113000/remote: + "/userdata//1113000/remote": tags: - save when: - store: steam - /Packages/SEGAofAmericaInc.D0cb6b3aet_s751p9cej88mt/SystemAppData/wgs/: + "/Packages/SEGAofAmericaInc.D0cb6b3aet_s751p9cej88mt/SystemAppData/wgs/": tags: - config - save when: - os: windows store: microsoft - /Sega/P4G/P4G.ini: + "/Sega/P4G/P4G.ini": tags: - config when: - - store: steam + - os: windows + store: steam installDir: Persona 4 Golden: {} launch: - /P4G.exe: + "/P4G.exe": - when: - store: steam steam: id: 1113000 Persona 5 Royal: files: - /SEGA/P5R/Microsoft: + "/SEGA/P5R/Microsoft": tags: - config when: - os: windows store: microsoft - /SEGA/P5R/Steam/: + "/SEGA/P5R/Steam/": tags: - config when: - - store: steam - /SEGA/P5R/Steam//savedata: + - os: windows + store: steam + "/SEGA/P5R/Steam//savedata": tags: - save when: - - store: steam - /Packages/SEGAofAmericaInc.F0cb6b3aer_s751p9cej88mt/SystemAppData/wgs/: + - os: windows + store: steam + "/Packages/SEGAofAmericaInc.F0cb6b3aer_s751p9cej88mt/SystemAppData/wgs/": tags: - save when: @@ -393255,7 +394347,7 @@ Persona 5 Royal: installDir: P5R: {} launch: - /P5R.exe: + "/P5R.exe": - when: - bit: 64 os: windows @@ -393264,24 +394356,24 @@ Persona 5 Royal: id: 1687950 Persona 5 Strikers: files: - /SEGA/Steam/P5S: + "/SEGA/Steam/P5S": tags: - config when: - os: windows - /SEGA/Steam/P5S/: + "/SEGA/Steam/P5S/": tags: - save when: - os: windows id: steamExtra: - - 1482081 - 1482080 + - 1482081 installDir: P5S: {} launch: - /game.exe: + "/game.exe": - when: - bit: 64 os: windows @@ -393290,7 +394382,7 @@ Persona 5 Strikers: id: 1382330 Persona 5 Tactica: files: - /Packages/SEGAofAmericaInc.s0cb6b3ael_s751p9cej88mt/SystemAppData/wgs/: + "/Packages/SEGAofAmericaInc.s0cb6b3ael_s751p9cej88mt/SystemAppData/wgs/": tags: - save when: @@ -393308,12 +394400,12 @@ Personal Nightmare: id: 1207658773 Perspective: files: - /Digipen/Perspective/Save.trr: + "/Digipen/Perspective/Save.trr": tags: - save when: - os: windows - /Digipen/Perspective/Settings.trr: + "/Digipen/Perspective/Settings.trr": tags: - config when: @@ -393321,21 +394413,21 @@ Perspective: installDir: Perspective: {} launch: - /Perspective.exe: + "/Perspective.exe": - when: - store: steam steam: id: 1109410 -'Perspectives: Aleppo-Helsinki': +"Perspectives: Aleppo-Helsinki": installDir: Perspectives: {} steam: id: 601990 -'Perspectives: Paradise': +"Perspectives: Paradise": installDir: Perspectives Paradise: {} registry: - 'HKEY_CURRENT_USER/Software/Teatime Research Ltd./Perspectives: Paradise 190909 - Teatime Research Ltd.': + "HKEY_CURRENT_USER/Software/Teatime Research Ltd./Perspectives: Paradise 190909 - Teatime Research Ltd.": tags: - config steam: @@ -393344,11 +394436,11 @@ Perspecto: installDir: Perspecto: {} launch: - /Perspecto.app: + "/Perspecto.app": - when: - os: mac store: steam - /Perspecto.exe: + "/Perspecto.exe": - when: - os: windows store: steam @@ -393358,15 +394450,15 @@ Perspectrip: installDir: Perspectrip: {} launch: - /Perspectrip.app/Contents/MacOS/Perspectrip: + "/Perspectrip.app/Contents/MacOS/Perspectrip": - when: - os: mac store: steam - /Perspectrip.exe: + "/Perspectrip.exe": - when: - os: windows store: steam - /Perspectrip.x86_64: + "/Perspectrip.x86_64": - when: - bit: 64 os: linux @@ -393377,15 +394469,15 @@ Perspectrum: installDir: Perspectrum: {} launch: - /Contents/Resources/launch.command: + "/Contents/Resources/launch.command": - when: - os: mac store: steam - /Perspectrum.exe: + "/Perspectrum.exe": - when: - os: windows store: steam - /launch.sh: + "/launch.sh": - when: - os: linux store: steam @@ -393395,7 +394487,7 @@ Pertinence: installDir: Pertinence: {} launch: - /Pertinence.exe: + "/Pertinence.exe": - when: - os: windows store: steam @@ -393405,15 +394497,15 @@ Perverts Society: installDir: Perverts Society: {} launch: - /PervertsSociety.app/Contents/MacOS/PervertsSociety: + "/PervertsSociety.app/Contents/MacOS/PervertsSociety": - when: - os: mac store: steam - /PervertsSociety.exe: + "/PervertsSociety.exe": - when: - os: windows store: steam - /PervertsSociety.x86: + "/PervertsSociety.x86": - when: - os: linux store: steam @@ -393423,7 +394515,7 @@ Pesadelo - Regressão: installDir: PesadeloRegressao: {} launch: - /PesadeloRegressao.exe: + "/PesadeloRegressao.exe": - when: - os: windows store: steam @@ -393436,24 +394528,24 @@ Pester: installDir: Pester: {} launch: - /Pester.exe: + "/Pester.exe": - when: - store: steam steam: id: 354920 Pesterquest: files: - /game/saves: + "/game/saves": tags: - save when: - os: windows - /game/saves/persistent: + "/game/saves/persistent": tags: - config when: - os: windows - /renpy/Pesterquest/persistent: + "/renpy/Pesterquest/persistent": tags: - config when: @@ -393463,15 +394555,15 @@ Pesterquest: installDir: Homestuck Pesterquest: {} launch: - /pesterquest.app: + "/pesterquest.app": - when: - os: mac store: steam - /pesterquest.exe: + "/pesterquest.exe": - when: - os: windows store: steam - /pesterquest.sh: + "/pesterquest.sh": - when: - os: linux store: steam @@ -393481,7 +394573,7 @@ Pestis: installDir: Pestis: {} launch: - /Pestis.exe: + "/Pestis.exe": - when: - os: windows store: steam @@ -393491,7 +394583,7 @@ Pet Chan: installDir: Pet Chan: {} launch: - /Pet Chan.exe: + "/Pet Chan.exe": - arguments: b when: - os: windows @@ -393500,12 +394592,12 @@ Pet Chan: id: 1200910 Pet Hotel Tycoon: files: - /Profiles: + "/Profiles": tags: - save when: - os: windows - /data/game/save.txt: + "/data/game/save.txt": tags: - config when: @@ -393514,14 +394606,14 @@ Pet Puzzle: installDir: Pet Puzzle: {} launch: - /Pet Puzzle.exe: + "/Pet Puzzle.exe": - when: - store: steam steam: id: 1092080 Pet Racer: files: - /Data: + "/Data": tags: - config when: @@ -393530,7 +394622,7 @@ Pet Squad Racing: installDir: PetSquadRacing: {} launch: - /PetSquad2.exe: + "/PetSquad2.exe": - when: - bit: 64 os: windows @@ -393541,7 +394633,7 @@ Pet Store Panic: installDir: Pet Store Panic: {} launch: - /Pet Store Panic.exe: + "/Pet Store Panic.exe": - when: - store: steam steam: @@ -393550,24 +394642,24 @@ Petal Crash: installDir: Petal Crash: {} launch: - /Petal Crash.app: + "/Petal Crash.app": - when: - os: mac store: steam - /Petal Crash.exe: + "/Petal Crash.exe": - when: - bit: 64 os: windows store: steam - /run.sh: + "/run.sh": - when: - os: linux store: steam steam: id: 1211110 -Peter Jackson's King Kong: +"Peter Jackson's King Kong": files: - /KingKong.sav: + "/KingKong.sav": tags: - save when: @@ -393576,9 +394668,9 @@ Peter Jackson's King Kong: HKEY_CURRENT_USER/Software/Ubisoft/KingKong: tags: - config -Peter Jackson's King Kong Gamer's Edition: +"Peter Jackson's King Kong Gamer's Edition": files: - /KingKong.sav: + "/KingKong.sav": tags: - save when: @@ -393587,9 +394679,9 @@ Peter Jackson's King Kong Gamer's Edition: HKEY_CURRENT_USER/Software/Ubisoft/KingKong: tags: - config -'Peter Pan: Adventures in Never Land': +"Peter Pan: Adventures in Never Land": files: - /DPTWP.sav: + "/DPTWP.sav": tags: - save when: @@ -393598,7 +394690,7 @@ Peter World: installDir: Peter World: {} launch: - /pw.exe: + "/pw.exe": - when: - os: windows store: steam @@ -393608,7 +394700,7 @@ Petoons Party: installDir: Petoons Party: {} launch: - /PetoonsParty.exe: + "/PetoonsParty.exe": - when: - os: windows store: steam @@ -393624,25 +394716,25 @@ Pets Sniper Shooting: installDir: Pets Sniper Shooting: {} launch: - /PetsSniperShooting.app/Contents/MacOS/PetsSniperShooting: + "/PetsSniperShooting.app/Contents/MacOS/PetsSniperShooting": - when: - os: mac store: steam - /PetsSniperShooting.x86: + "/PetsSniperShooting.x86": - when: - bit: 32 os: linux store: steam - /PetsSniperShooting.x86_64: + "/PetsSniperShooting.x86_64": - when: - bit: 64 os: linux store: steam - /Windows_x86/PetsSniperShooting.exe: + "/Windows_x86/PetsSniperShooting.exe": - when: - os: windows store: steam - /Windows_x86_64/PetsSniperShooting.exe: + "/Windows_x86_64/PetsSniperShooting.exe": - when: - bit: 64 os: windows @@ -393653,7 +394745,7 @@ Petz Catz 2: installDir: Petz Catz 2: {} launch: - /catz.exe: + "/catz.exe": - when: - store: steam steam: @@ -393662,21 +394754,21 @@ Petz Dogz 2: installDir: Petz Dogz 2: {} launch: - /dogz.exe: + "/dogz.exe": - when: - store: steam steam: id: 15140 Petz Horse Club: files: - /Horsez08/Horsez08.sav: + "/Horsez08/Horsez08.sav": tags: - save when: - os: windows Petz Horsez 2 (2007): files: - /Horsez/Horsez.sav: + "/Horsez/Horsez.sav": tags: - save when: @@ -393685,7 +394777,7 @@ Petz Horsez 2 (2008): installDir: Petz Horsez 2: {} launch: - /commonplayer.exe: + "/commonplayer.exe": - when: - store: steam steam: @@ -393694,7 +394786,7 @@ Pew Dew Redemption: installDir: Pew Dew Redemption: {} launch: - /PewDewRedemption.exe: + "/PewDewRedemption.exe": - when: - store: steam steam: @@ -393706,11 +394798,14 @@ Pew Pew Puzzle Defense: installDir: Pew Pew Puzzle Defense: {} launch: - /pppd: + "/pppd": - when: - os: mac store: steam - /pppd.exe: + - bit: 64 + os: linux + store: steam + "/pppd.exe": - when: - os: windows store: steam @@ -393723,15 +394818,15 @@ Pew-Pew Rocket: installDir: Pew-Pew Rocket: {} launch: - /PewPewRocket.exe: + "/PewPewRocket.exe": - when: - os: windows store: steam steam: id: 1145680 -'PewDiePie: Legend of the Brofist': +"PewDiePie: Legend of the Brofist": files: - /AppData/LocalLow/Outerminds Inc_/PewDiePie: + "/AppData/LocalLow/Outerminds Inc_/PewDiePie": tags: - save when: @@ -393739,11 +394834,11 @@ Pew-Pew Rocket: installDir: PewDiePie Legend of the Brofist: {} launch: - /PewDiePieLegendOfTheBrofist.app: + "/PewDiePieLegendOfTheBrofist.app": - when: - os: mac store: steam - /PewDiePieLegendOfTheBrofist.exe: + "/PewDiePieLegendOfTheBrofist.exe": - when: - os: windows store: steam @@ -393753,7 +394848,7 @@ Phageborn Online Card Game PUBLIC BETA: installDir: Phageborn Online Card Game PUBLIC BETA: {} launch: - /Phageborn.exe: + "/Phageborn.exe": - when: - os: windows store: steam @@ -393761,12 +394856,12 @@ Phageborn Online Card Game PUBLIC BETA: id: 1221580 Phantaruk: files: - /Options.txt: + "/Options.txt": tags: - config when: - os: windows - /PlayerData.phn: + "/PlayerData.phn": tags: - save when: @@ -393774,7 +394869,7 @@ Phantaruk: installDir: Phantaruk: {} launch: - /PhantarukExec.exe: + "/PhantarukExec.exe": - when: - os: windows store: steam @@ -393791,12 +394886,12 @@ Phantasma VR: id: 608870 Phantasmagoria: files: - /Phant/PHANTSG.*: + "/Phant/PHANTSG.*": tags: - save when: - os: windows - /RESOURCE.CFG: + "/RESOURCE.CFG": tags: - config when: @@ -393806,19 +394901,19 @@ Phantasmagoria: installDir: Phantasmagoria: {} launch: - /SierraLauncher.exe: + "/SierraLauncher.exe": - when: - store: steam steam: id: 501990 -'Phantasmagoria 2: A Puzzle of Flesh': +"Phantasmagoria 2: A Puzzle of Flesh": files: - /P2SG.*: + "/P2SG.*": tags: - save when: - os: dos - /RESOURCE.CFG: + "/RESOURCE.CFG": tags: - config when: @@ -393828,7 +394923,7 @@ Phantasmagoria: installDir: Phantasmagoria 2: {} launch: - /SierraLauncher.exe: + "/SierraLauncher.exe": - when: - store: steam steam: @@ -393837,18 +394932,18 @@ Phantasmagoria of Flower View: installDir: th09: {} launch: - /th09.exe: + "/th09.exe": - when: - os: windows store: steam steam: id: 1420810 -'Phantasmal: Survival Horror Roguelike': +"Phantasmal: Survival Horror Roguelike": installDir: Phantasmal: {} launch: - /Phantasmal.exe: - - arguments: '-popupwindow -force-d3d9 -screen-fullscreen 0' + "/Phantasmal.exe": + - arguments: "-popupwindow -force-d3d9 -screen-fullscreen 0" when: - os: windows store: steam @@ -393858,30 +394953,30 @@ Phantasmagoria of Flower View: - config steam: id: 342550 -'Phantasmat: Crucible Peak': +"Phantasmat: Crucible Peak": installDir: - Phantasmat Crucible Peak Collector's Edition: {} + "Phantasmat Crucible Peak Collector's Edition": {} launch: - /Phantasmat_CruciblePeakCE.exe: + "/Phantasmat_CruciblePeakCE.exe": - when: - store: steam steam: id: 533080 -'Phantasmat: The Dread of Oakville': +"Phantasmat: The Dread of Oakville": installDir: - Phantasmat The Dread of Oakville Collector's Edition: {} + "Phantasmat The Dread of Oakville Collector's Edition": {} launch: - /Phantasmat_TheDreadOfOakville_CE.exe: + "/Phantasmat_TheDreadOfOakville_CE.exe": - when: - os: windows store: steam steam: id: 940980 -'Phantasmat: The Endless Night': +"Phantasmat: The Endless Night": installDir: - Phantasmat The Endless Night Collector's Edition: {} + "Phantasmat The Endless Night Collector's Edition": {} launch: - /Phantasmat_TheEndlessNight_CE.exe: + "/Phantasmat_TheEndlessNight_CE.exe": - when: - os: windows store: steam @@ -393891,8 +394986,8 @@ Phantasmata: installDir: Phantasmata: {} launch: - /Game.exe: - - arguments: '--in-process-gpu' + "/Game.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam @@ -393900,70 +394995,70 @@ Phantasmata: id: 1048790 Phantasy Star II: files: - /SEGA Genesis Classics/0051: + "/SEGA Genesis Classics/0051": tags: - save when: - os: windows - /SEGA Genesis Classics/setup.dat: + "/SEGA Genesis Classics/setup.dat": tags: - config when: - os: windows - /SEGA Mega Drive Classics/0051: + "/SEGA Mega Drive Classics/0051": tags: - save when: - os: windows - /SEGA Mega Drive Classics/setup.dat: + "/SEGA Mega Drive Classics/setup.dat": tags: - config when: - os: windows steam: id: 211203 -'Phantasy Star III: Generations of Doom': +"Phantasy Star III: Generations of Doom": files: - /SEGA Genesis Classics/0052: + "/SEGA Genesis Classics/0052": tags: - save when: - os: windows - /SEGA Genesis Classics/setup.dat: + "/SEGA Genesis Classics/setup.dat": tags: - config when: - os: windows - /SEGA Mega Drive Classics/0052: + "/SEGA Mega Drive Classics/0052": tags: - save when: - os: windows - /SEGA Mega Drive Classics/setup.dat: + "/SEGA Mega Drive Classics/setup.dat": tags: - config when: - os: windows steam: id: 211204 -'Phantasy Star IV: The End of the Millennium': +"Phantasy Star IV: The End of the Millennium": files: - /SEGA Genesis Classics/0053: + "/SEGA Genesis Classics/0053": tags: - save when: - os: windows - /SEGA Genesis Classics/setup.dat: + "/SEGA Genesis Classics/setup.dat": tags: - config when: - os: windows - /SEGA Mega Drive Classics/0053: + "/SEGA Mega Drive Classics/0053": tags: - save when: - os: windows - /SEGA Mega Drive Classics/setup.dat: + "/SEGA Mega Drive Classics/setup.dat": tags: - config when: @@ -393972,32 +395067,33 @@ Phantasy Star II: id: 211205 Phantasy Star Online 2 New Genesis: files: - /SEGA/PHANTASYSTARONLINE2/user.pso2: + "/SEGA/PHANTASYSTARONLINE2/user.pso2": tags: - config when: - os: windows - /SEGA/PHANTASYSTARONLINE2_NA/user.pso2: + "/SEGA/PHANTASYSTARONLINE2_NA/user.pso2": tags: - config when: - os: windows store: microsoft - /SEGA/PHANTASYSTARONLINE2_NA_EPICGAMES/user.pso2: + "/SEGA/PHANTASYSTARONLINE2_NA_EPICGAMES/user.pso2": tags: - config when: - - store: epic - /SEGA/PHANTASYSTARONLINE2_NA_STEAM/user.pso2: + - os: windows + "/SEGA/PHANTASYSTARONLINE2_NA_STEAM/user.pso2": tags: - config when: - - store: steam + - os: windows + store: steam installDir: PHANTASYSTARONLINE2_NA_STEAM: {} launch: - /pso2_bin/pso2launcher.exe: - - arguments: '-steam' + "/pso2_bin/pso2launcher.exe": + - arguments: "-steam" when: - bit: 64 os: windows @@ -394006,7 +395102,7 @@ Phantasy Star Online 2 New Genesis: id: 1056640 Phantasy Star Universe: files: - /SEGA/PHANTASY STAR UNIVERSE/Psu.ini: + "/SEGA/PHANTASY STAR UNIVERSE/Psu.ini": tags: - config when: @@ -394015,7 +395111,7 @@ Phantom: installDir: Phantom: {} launch: - /ProjectPhantom.exe: + "/ProjectPhantom.exe": - when: - bit: 64 os: windows @@ -394024,7 +395120,7 @@ Phantom: id: 578800 Phantom Abyss: files: - /PhantomAbyss/Saved/Config/WindowsNoEditor/GameUserSettings.ini: + "/PhantomAbyss/Saved/Config/WindowsNoEditor/GameUserSettings.ini": tags: - config when: @@ -394032,8 +395128,8 @@ Phantom Abyss: installDir: Phantom Abyss: {} launch: - /PhantomAbyss.exe: - - arguments: '-game' + "/PhantomAbyss.exe": + - arguments: "-game" when: - bit: 64 os: windows @@ -394047,13 +395143,13 @@ Phantom Astronaut Lucid VR: id: 1146810 Phantom Brave PC: files: - /userdata//409870/remote/SAVEDATA/SAVE*.dat: + "/userdata//409870/remote/SAVEDATA/SAVE*.dat": tags: - save when: - os: windows store: steam - /userdata//409870/remote/game.cfg: + "/userdata//409870/remote/game.cfg": tags: - config when: @@ -394062,25 +395158,25 @@ Phantom Brave PC: installDir: Phantom Brave PC: {} launch: - /Phantom Brave PC.exe: + "/Phantom Brave PC.exe": - when: - os: windows store: steam steam: id: 409870 -'Phantom Breaker: Battle Grounds': +"Phantom Breaker: Battle Grounds": files: - /bin/keyboard.ini: + "/bin/keyboard.ini": tags: - config when: - os: windows - /Saved Games/Phantom Breaker/Config: + "/Saved Games/Phantom Breaker/Config": tags: - save when: - os: windows - /Saved Games/Phantom Breaker/Config/config.dat: + "/Saved Games/Phantom Breaker/Config/config.dat": tags: - config when: @@ -394092,20 +395188,20 @@ Phantom Brave PC: installDir: Phantom Breaker Battle Grounds: {} launch: - /bin/pbbg_win32.exe: + "/bin/pbbg_win32.exe": - when: - store: steam - workingDir: /bin + workingDir: "/bin" steam: id: 329490 -'Phantom Breaker: Omnia': +"Phantom Breaker: Omnia": files: - /SAVEDATA/Config/*.dat: + "/SAVEDATA/Config/*.dat": tags: - save when: - os: windows - /omniaConf.ini: + "/omniaConf.ini": tags: - config when: @@ -394113,7 +395209,7 @@ Phantom Brave PC: installDir: Phantom Breaker OMNIA: {} launch: - /omnia.exe: + "/omnia.exe": - when: - bit: 64 os: windows @@ -394122,12 +395218,12 @@ Phantom Brave PC: id: 1184560 Phantom Brigade: files: - /PhantomBrigade/Saves: + "/PhantomBrigade/Saves": tags: - save when: - os: windows - /PhantomBrigade/Settings: + "/PhantomBrigade/Settings": tags: - config when: @@ -394135,7 +395231,7 @@ Phantom Brigade: installDir: Phantom Brigade: {} launch: - /PhantomBrigade.exe: + "/PhantomBrigade.exe": - when: - os: windows store: steam @@ -394143,12 +395239,12 @@ Phantom Brigade: id: 553540 Phantom Doctrine: files: - /PhantomDoctrine/Saved//SaveGames: + "/PhantomDoctrine/Saved//SaveGames": tags: - save when: - os: windows - /PhantomDoctrine/Saved/Config/WindowsNoEditor: + "/PhantomDoctrine/Saved/Config/WindowsNoEditor": tags: - config when: @@ -394158,19 +395254,19 @@ Phantom Doctrine: installDir: PhantomDoctrine: {} launch: - /IWTB.exe: - - arguments: '-Installed' + "/IWTB.exe": + - arguments: "-Installed" when: - os: windows store: steam steam: id: 559100 -'Phantom Doctrine 2: The Cabal': +"Phantom Doctrine 2: The Cabal": steam: id: 1345450 Phantom Dust: files: - /Packages/Microsoft.MSEsper_8wekyb3d8bbwe: + "/Packages/Microsoft.MSEsper_8wekyb3d8bbwe": tags: - config when: @@ -394184,7 +395280,7 @@ Phantom Halls: installDir: Phantom Halls: {} launch: - /PH.exe: + "/PH.exe": - when: - os: windows store: steam @@ -394195,12 +395291,12 @@ Phantom Hills: id: 1190720 Phantom Jump: files: - /PhantomJump/Data: + "/PhantomJump/Data": tags: - save when: - os: windows - /PhantomJump/config.ini: + "/PhantomJump/config.ini": tags: - config when: @@ -394208,7 +395304,7 @@ Phantom Jump: installDir: Phantom Jump: {} launch: - /Phantom Jump.exe: + "/Phantom Jump.exe": - when: - os: windows store: steam @@ -394218,7 +395314,7 @@ Phantom Path: installDir: Phantom Path: {} launch: - /phantom.exe: + "/phantom.exe": - when: - os: windows store: steam @@ -394228,11 +395324,11 @@ Phantom Rose: installDir: Phantom Rose: {} launch: - /Phantom Rose.app/Contents/MacOS/Phantom Rose: + "/Phantom Rose.app/Contents/MacOS/Phantom Rose": - when: - os: mac store: steam - /Phantom Rose.exe: + "/Phantom Rose.exe": - when: - os: windows store: steam @@ -394242,20 +395338,20 @@ Phantom Signal: installDir: Phantom Signal: {} launch: - /Phantom Signal.app/Contents/MacOS/Phantom Signal: + "/Phantom Signal.app/Contents/MacOS/Phantom Signal": - when: - os: mac store: steam - /Phantom Signal.exe: + "/Phantom Signal.exe": - when: - os: windows store: steam - /Phantom Signal.x86: + "/Phantom Signal.x86": - when: - bit: 32 os: linux store: steam - /Phantom Signal.x86_64: + "/Phantom Signal.x86_64": - when: - bit: 64 os: linux @@ -394269,7 +395365,7 @@ Phantom Thief Celianna: installDir: Phantom Thief Celianna: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -394281,7 +395377,7 @@ Phantom Trigger: installDir: Phantom Trigger: {} launch: - /Phantom Trigger.exe: + "/Phantom Trigger.exe": - when: - os: windows store: steam @@ -394294,7 +395390,7 @@ Phantom Warfare: id: 684260 Pharaoh: files: - /Save: + "/Save": tags: - save when: @@ -394304,14 +395400,14 @@ Pharaoh: installDir: Pharaoh + Cleopatra: {} launch: - /Pharaoh.exe: + "/Pharaoh.exe": - when: - store: steam steam: id: 564530 Pharaoh Rebirth+: files: - /data/config: + "/data/config": tags: - config - save @@ -394320,47 +395416,47 @@ Pharaoh Rebirth+: installDir: Pharaoh Rebirth: {} launch: - /PharaohRebirth.exe: + "/PharaohRebirth.exe": - when: - store: steam steam: id: 441280 -Pharaoh's Tomb: +"Pharaoh's Tomb": files: - /PTOMB*.SAV: + "/PTOMB*.SAV": tags: - save when: - os: dos - /PTOMB.CFG: + "/PTOMB.CFG": tags: - config when: - os: dos installDir: - Pharaoh's Tomb: {} + "Pharaoh's Tomb": {} launch: - /Dosbox/dosbox: - - arguments: '-conf \"..\\TOMB.conf\" -noconsole -c' + "/Dosbox/dosbox": + - arguments: "-conf \\\"..\\\\TOMB.conf\\\" -noconsole -c" when: - os: linux store: steam - workingDir: /Dosbox - /Pharaoh's Tomb.app: + workingDir: "/Dosbox" + "/Pharaoh's Tomb.app": - when: - os: mac store: steam - /Pharaoh's tomb/dosbox/dosbox.exe: - - arguments: '-conf \"..\\TOMB.conf\" -noconsole -c' + "/Pharaoh's tomb/dosbox/dosbox.exe": + - arguments: "-conf \\\"..\\\\TOMB.conf\\\" -noconsole -c" when: - os: windows store: steam - workingDir: /Pharaoh's tomb/dosbox + workingDir: "/Pharaoh's tomb/dosbox" steam: id: 358330 -'Pharaoh: A New Era': +"Pharaoh: A New Era": files: - /AppData/LocalLow/Triskell Interactive/Pharaoh/: + "/AppData/LocalLow/Triskell Interactive/Pharaoh/": tags: - config - save @@ -394371,7 +395467,7 @@ Pharaoh's Tomb: installDir: Pharaoh A New Era: {} launch: - /Pharaoh.exe: + "/Pharaoh.exe": - when: - os: windows store: steam @@ -394383,15 +395479,15 @@ Pharaonic: installDir: Pharaonic: {} launch: - /Pharaonic: + "/Pharaonic": - when: - os: linux store: steam - /Pharaonic.app: + "/Pharaonic.app": - when: - os: mac store: steam - /Pharaonic.exe: + "/Pharaonic.exe": - when: - os: windows store: steam @@ -394401,7 +395497,7 @@ Pharmakon: installDir: Pharmakon: {} launch: - /Pharmakon.exe: + "/Pharmakon.exe": - when: - os: windows store: steam @@ -394409,12 +395505,12 @@ Pharmakon: id: 654660 Phase Shift: files: - /profiles: + "/profiles": tags: - save when: - os: windows - /settings: + "/settings": tags: - config when: @@ -394423,7 +395519,7 @@ Phase Shift (2019): installDir: Phase Shift: {} launch: - /phase_shift.exe: + "/phase_shift.exe": - when: - os: windows store: steam @@ -394431,7 +395527,7 @@ Phase Shift (2019): id: 865250 Phasmophobia: files: - /AppData/LocalLow/Kinetic Games/Phasmophobia/saveData.txt: + "/AppData/LocalLow/Kinetic Games/Phasmophobia/saveData.txt": tags: - save when: @@ -394439,7 +395535,7 @@ Phasmophobia: installDir: Phasmophobia: {} launch: - /Phasmophobia.exe: + "/Phasmophobia.exe": - when: - store: steam registry: @@ -394452,7 +395548,7 @@ Phat Phrog: installDir: PHAT PHROG: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -394462,7 +395558,7 @@ Phat Stacks: installDir: PHAT STACKS: {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: @@ -394471,7 +395567,7 @@ Phat Stacks 2: installDir: PHAT STACKS 2: {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: @@ -394479,18 +395575,18 @@ Phat Stacks 2: Pheer: steam: id: 817580 -'Phenomenal Car Park Simulator: Digital Deluxe Edition': +"Phenomenal Car Park Simulator: Digital Deluxe Edition": steam: id: 1158860 Phil Alone: installDir: Phil Alone: {} launch: - /Phil Alone - Steam Version Beta PTBR/Game.exe: + "/Phil Alone - Steam Version Beta PTBR/Game.exe": - when: - os: windows store: steam - /Phil Alone - Steam Version Beta/Game.exe: + "/Phil Alone - Steam Version Beta/Game.exe": - when: - os: windows store: steam @@ -394500,37 +395596,37 @@ PhilGood: installDir: PhilGood_BETA: {} launch: - /PhilGood_BETA/PhilGood-0.1.3.exe: + "/PhilGood_BETA/PhilGood-0.1.3.exe": - when: - os: windows store: steam steam: id: 1082620 -'Philia: The Sequel to Elansar': +"Philia: The Sequel to Elansar": installDir: Philia the Sequel to Elansar: {} launch: - /Philia Fullscreen.app: + "/Philia Fullscreen.app": - when: - bit: 64 os: mac store: steam - /Philia Fullscreen.exe: + "/Philia Fullscreen.exe": - when: - os: windows store: steam - /Philia-Fullscreen.linux: + "/Philia-Fullscreen.linux": - when: - bit: 32 os: linux store: steam steam: id: 435080 -'Philophobia: The Fear of Love': +"Philophobia: The Fear of Love": installDir: Philophobia The Fear of Love: {} launch: - /Philophobia The Fear of Love.exe: + "/Philophobia The Fear of Love.exe": - when: - os: windows store: steam @@ -394540,18 +395636,18 @@ Philosophic Love: installDir: Philosophic Love: {} launch: - /PhilosophicLove.app: + "/PhilosophicLove.app": - when: - os: mac store: steam - /PhilosophicLove.exe: - - arguments: '-windowed' + "/PhilosophicLove.exe": + - arguments: "-windowed" when: - os: windows store: steam steam: id: 528060 -'Phineas and Ferb: New Inventions': +"Phineas and Ferb: New Inventions": files: Documents/PIPE Studio/Phineas and Ferb/SAVES: tags: @@ -394561,7 +395657,7 @@ Philosophic Love: installDir: Phineas and Ferb New Inventions: {} launch: - /Lang.exe: + "/Lang.exe": - when: - store: steam steam: @@ -394570,7 +395666,7 @@ Phlyndir: installDir: Phlyndir: {} launch: - /Phlyndir.exe: + "/Phlyndir.exe": - when: - os: windows store: steam @@ -394580,7 +395676,7 @@ Phobia: installDir: Phobia: {} launch: - /Phobia.exe: + "/Phobia.exe": - when: - bit: 64 os: windows @@ -394591,8 +395687,8 @@ Phoenix Dynasty 2: installDir: Phoenix Dynasty 2: {} launch: - /PDO2Launcher.exe: - - arguments: '--disable-gpu' + "/PDO2Launcher.exe": + - arguments: "--disable-gpu" when: - os: windows store: steam @@ -394600,7 +395696,7 @@ Phoenix Dynasty 2: id: 621880 Phoenix Force: files: - /SavedGames/PhoenixForceXNA/PFStorage/Player1/mysave.sav: + "/SavedGames/PhoenixForceXNA/PFStorage/Player1/mysave.sav": tags: - save when: @@ -394608,7 +395704,7 @@ Phoenix Force: installDir: Phoenix Force: {} launch: - /PhoenixForceXNA.exe: + "/PhoenixForceXNA.exe": - when: - os: windows store: steam @@ -394616,32 +395712,32 @@ Phoenix Force: id: 332480 Phoenix Point: files: - /AppData/LocalLow/Snapshot Games Inc/Phoenix Point/EGS//*.zsav: - tags: - - save - when: - - store: epic - /AppData/LocalLow/Snapshot Games Inc/Phoenix Point/EGS//Options.jopt: - tags: - - config - when: - - store: epic - /AppData/LocalLow/Snapshot Games Inc/Phoenix Point/EGS/LocalData/*.zsav: - tags: - - save - when: - - store: epic - /AppData/LocalLow/Snapshot Games Inc/Phoenix Point/EGS/LocalData/Options.jopt: - tags: - - config - when: - - store: epic - /AppData/LocalLow/Snapshot Games Inc/Phoenix Point/Steam/76561197977564809: + "/AppData/LocalLow/Snapshot Games Inc/Phoenix Point/EGS//*.zsav": tags: - save when: - os: windows - /Library/Application Support/com.snapshotgames.phoenixpoint: + "/AppData/LocalLow/Snapshot Games Inc/Phoenix Point/EGS//Options.jopt": + tags: + - config + when: + - os: windows + "/AppData/LocalLow/Snapshot Games Inc/Phoenix Point/EGS/LocalData/*.zsav": + tags: + - save + when: + - os: windows + "/AppData/LocalLow/Snapshot Games Inc/Phoenix Point/EGS/LocalData/Options.jopt": + tags: + - config + when: + - os: windows + "/AppData/LocalLow/Snapshot Games Inc/Phoenix Point/Steam/76561197977564809": + tags: + - save + when: + - os: windows + "/Library/Application Support/com.snapshotgames.phoenixpoint": tags: - save when: @@ -394651,11 +395747,11 @@ Phoenix Point: installDir: Phoenix Point: {} launch: - /PhoenixPointOSX.app/Contents/MacOS/Phoenix Point: + "/PhoenixPointOSX.app/Contents/MacOS/Phoenix Point": - when: - os: mac store: steam - /PhoenixPointWin64.exe: + "/PhoenixPointWin64.exe": - when: - bit: 64 os: windows @@ -394670,21 +395766,21 @@ Phoenix Tales: installDir: Phoenix Tales: {} launch: - /phoenixtales1.exe: + "/phoenixtales1.exe": - when: - os: windows store: steam steam: id: 1187490 -'Phoenix Wright: Ace Attorney Trilogy': +"Phoenix Wright: Ace Attorney Trilogy": files: - /userdata//787480/remote/systemdata: + "/userdata//787480/remote/systemdata": tags: - config - save when: - store: steam - /Packages/F024294D.PhoenixWrightAceAttorneyTrilogy_8fty0by30jkny/SystemAppData/wgs/: + "/Packages/F024294D.PhoenixWrightAceAttorneyTrilogy_8fty0by30jkny/SystemAppData/wgs/": tags: - save when: @@ -394693,23 +395789,23 @@ Phoenix Tales: installDir: Phoenix Wright Ace Attorney Trilogy: {} launch: - /PWAAT.exe: + "/PWAAT.exe": - when: - store: steam registry: - 'HKEY_CURRENT_USER/Software/CAPCOM/Phoenix Wright: Ace Attorney Trilogy / 逆転裁判123 成歩堂セレクション': + "HKEY_CURRENT_USER/Software/CAPCOM/Phoenix Wright: Ace Attorney Trilogy / 逆転裁判123 成歩堂セレクション": tags: - save steam: id: 787480 -'Phoenotopia: Awakening': +"Phoenotopia: Awakening": files: - /AppData/LocalLow/CapeCosmic/PhoenotopiaAwakening/file_*_save.dat: + "/AppData/LocalLow/CapeCosmic/PhoenotopiaAwakening/file_*_save.dat": tags: - save when: - os: windows - /AppData/LocalLow/CapeCosmic/PhoenotopiaAwakening/settings_save.dat: + "/AppData/LocalLow/CapeCosmic/PhoenotopiaAwakening/settings_save.dat": tags: - config when: @@ -394719,11 +395815,11 @@ Phoenix Tales: installDir: Phoenotopia Awakening: {} launch: - /Contents/MacOS/phoenotopia: + "/Contents/MacOS/phoenotopia": - when: - os: mac store: steam - /PhoenotopiaAwakening.exe: + "/PhoenotopiaAwakening.exe": - when: - os: windows store: steam @@ -394735,7 +395831,7 @@ Phoenix Tales: id: 1436590 Phoning Home: files: - /AppData/LocalLow/Ion Lands/Phoning Home: + "/AppData/LocalLow/Ion Lands/Phoning Home": tags: - save when: @@ -394745,20 +395841,20 @@ Phoning Home: installDir: Phoning Home: {} launch: - /PhoningHome.app: + "/PhoningHome.app": - when: - os: mac store: steam - /PhoningHome.exe: + "/PhoningHome.exe": - when: - os: windows store: steam - /PhoningHome.x86: + "/PhoningHome.x86": - when: - bit: 32 os: linux store: steam - /PhoningHome.x86_64: + "/PhoningHome.x86_64": - when: - bit: 64 os: linux @@ -394778,7 +395874,7 @@ Photo Finish: installDir: Photo Finish: {} launch: - /Photo Finish.exe: + "/Photo Finish.exe": - when: - os: windows store: steam @@ -394788,7 +395884,7 @@ Photo Quiz - Animals: installDir: Photo Quiz - Animals: {} launch: - /Photo Quiz - Animals.exe: + "/Photo Quiz - Animals.exe": - when: - os: windows store: steam @@ -394796,12 +395892,12 @@ Photo Quiz - Animals: id: 1203580 Photographs: files: - /AppData/LocalLow/EightyEightGames/Photographs/save/*.sav: + "/AppData/LocalLow/EightyEightGames/Photographs/save/*.sav": tags: - save when: - os: windows - /AppData/LocalLow/EightyEightGames/Photographs/settings/settings.dat: + "/AppData/LocalLow/EightyEightGames/Photographs/settings/settings.dat": tags: - config when: @@ -394809,7 +395905,7 @@ Photographs: installDir: Photographs: {} launch: - /Photographs.game.exe: + "/Photographs.game.exe": - when: - store: steam steam: @@ -394818,7 +395914,7 @@ Photon Cube: installDir: PHOTON CUBE: {} launch: - /PhotonCube.exe: + "/PhotonCube.exe": - when: - os: windows store: steam @@ -394828,16 +395924,16 @@ Photon Flux: installDir: PhotonFlux: {} launch: - /photonFlux.exe: + "/photonFlux.exe": - when: - os: windows store: steam - /photonFlux.x86: + "/photonFlux.x86": - when: - bit: 32 os: linux store: steam - /photonFlux.x86_64: + "/photonFlux.x86_64": - when: - bit: 64 os: linux @@ -394848,15 +395944,15 @@ Photon Rush: installDir: PhotonRush: {} launch: - /PhotonRush.app: + "/PhotonRush.app": - when: - os: mac store: steam - /PhotonRush.exe: + "/PhotonRush.exe": - when: - os: windows store: steam - /PhotonRush.x86_64: + "/PhotonRush.x86_64": - when: - os: linux store: steam @@ -394866,7 +395962,7 @@ Photonic Distress: installDir: Photonic Distress: {} launch: - /PhontonicDistress.exe: + "/PhontonicDistress.exe": - when: - os: windows store: steam @@ -394876,11 +395972,11 @@ Phrase Shift: installDir: Phrase Shift: {} launch: - /phrase-shift.app: + "/phrase-shift.app": - when: - os: mac store: steam - /phrase-shift.exe: + "/phrase-shift.exe": - when: - os: windows store: steam @@ -394890,7 +395986,7 @@ Phucker in the Gulag: installDir: PhuckerInTheGulag: {} launch: - /PhuckerInTheGulag/GulagHTML5.exe: + "/PhuckerInTheGulag/GulagHTML5.exe": - when: - os: windows store: steam @@ -394900,7 +395996,7 @@ Phucker in the Rome: installDir: PhuckerInTheRome: {} launch: - /PhuckerInTheRome/RomeHTML5.exe: + "/PhuckerInTheRome/RomeHTML5.exe": - when: - os: windows store: steam @@ -394910,7 +396006,7 @@ Phucker in the Woods: installDir: PhuckerInTheWoods: {} launch: - /PhuckerInTheWoods/FuckerInTheWoodsX.exe: + "/PhuckerInTheWoods/FuckerInTheWoodsX.exe": - when: - os: windows store: steam @@ -394920,7 +396016,7 @@ PhysDrive: installDir: PhysDrive: {} launch: - /ProjectRace.exe: + "/ProjectRace.exe": - when: - os: windows store: steam @@ -394932,11 +396028,11 @@ Physic Monster: Physica-E: steam: id: 706360 -'Physical Exorcism: Case 01': +"Physical Exorcism: Case 01": installDir: Physical Exorcism Case 01: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -394946,7 +396042,7 @@ Physical Glitch: installDir: Physical Glitch: {} launch: - /Physical Glitch.exe: + "/Physical Glitch.exe": - when: - os: windows store: steam @@ -394956,20 +396052,20 @@ Physics Drop: installDir: Physics Drop: {} launch: - /PhysicsDrop.app/Contents/MacOS/PhysicsDrop: + "/PhysicsDrop.app/Contents/MacOS/PhysicsDrop": - when: - os: mac store: steam - /PhysicsDrop.exe: + "/PhysicsDrop.exe": - when: - os: windows store: steam - /PhysicsDrop.x86: + "/PhysicsDrop.x86": - when: - bit: 32 os: linux store: steam - /PhysicsDrop.x86_64: + "/PhysicsDrop.x86_64": - when: - bit: 64 os: linux @@ -394988,7 +396084,7 @@ Pi: installDir: Pi: {} launch: - /Pi.exe: + "/Pi.exe": - when: - os: windows store: steam @@ -394998,7 +396094,7 @@ Pi Is Everything: installDir: Pi is Everything: {} launch: - /pie1.exe: + "/pie1.exe": - when: - os: windows store: steam @@ -395006,7 +396102,7 @@ Pi Is Everything: id: 840120 Pianistic: files: - /AppData/LocalLow/Bytecat Games/Pianistic/*.json: + "/AppData/LocalLow/Bytecat Games/Pianistic/*.json": tags: - save when: @@ -395014,7 +396110,7 @@ Pianistic: installDir: Pianistic: {} launch: - /Pianistic.exe: + "/Pianistic.exe": - when: - store: steam steam: @@ -395023,11 +396119,11 @@ Piano Bar: installDir: Piano Bar: {} launch: - /Piano Bar.app/Contents/MacOS/Piano Bar: + "/Piano Bar.app/Contents/MacOS/Piano Bar": - when: - os: mac store: steam - /Piano Bar.exe: + "/Piano Bar.exe": - when: - os: windows store: steam @@ -395037,11 +396133,11 @@ Piano Cat: installDir: Bump Tap: {} launch: - /Piano Cat.app/Contents/MacOS/Piano Cat: + "/Piano Cat.app/Contents/MacOS/Piano Cat": - when: - os: mac store: steam - /Piano Cat.exe: + "/Piano Cat.exe": - when: - os: windows store: steam @@ -395051,11 +396147,11 @@ Piano Play 3D: installDir: Piano Play 3D: {} launch: - /Piano Play 3D.app/Contents/MacOS/Piano Play 3D: + "/Piano Play 3D.app/Contents/MacOS/Piano Play 3D": - when: - os: mac store: steam - /Piano Play 3D.exe: + "/Piano Play 3D.exe": - when: - os: windows store: steam @@ -395065,7 +396161,7 @@ Piano Simulator: installDir: Piano Simulator: {} launch: - /Piano Simulator.exe: + "/Piano Simulator.exe": - when: - bit: 64 os: windows @@ -395076,7 +396172,7 @@ Piatka: installDir: Piatka: {} launch: - /piatka.exe: + "/piatka.exe": - when: - os: windows store: steam @@ -395090,14 +396186,14 @@ Piccled Ricc: id: 736600 Pichon: files: - /saves/Default/Local Storage: + "/saves/Default/Local Storage": tags: - save when: - os: windows - os: mac - os: linux - /saves2/Default/Local Storage: + "/saves2/Default/Local Storage": tags: - save when: @@ -395107,12 +396203,12 @@ Pichon: installDir: Pichon: {} launch: - /Pichon: + "/Pichon": - when: - bit: 64 os: linux store: steam - /Pichon.exe: + "/Pichon.exe": - when: - os: windows store: steam @@ -395125,21 +396221,21 @@ Pick a Hero: installDir: Pick a Hero: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam steam: id: 485620 -'Pick, shoot, repeat!': +"Pick, shoot, repeat!": installDir: - 'Pick, shoot, repeat!': {} + "Pick, shoot, repeat!": {} launch: - '/Mac.app/Contents/MacOS/Pick, shoot, repeat!': + "/Mac.app/Contents/MacOS/Pick, shoot, repeat!": - when: - os: mac store: steam - '/Pick, shoot, repeat!.exe': + "/Pick, shoot, repeat!.exe": - when: - os: windows store: steam @@ -395147,7 +396243,7 @@ Pick a Hero: id: 1220440 PickCrafter: files: - /AppData/LocalLow/fiveamp/PickCrafter: + "/AppData/LocalLow/fiveamp/PickCrafter": tags: - save when: @@ -395155,11 +396251,11 @@ PickCrafter: installDir: PickCrafter: {} launch: - /PickCrafter.app/Contents/MacOS/PickCrafter: + "/PickCrafter.app/Contents/MacOS/PickCrafter": - when: - os: mac store: steam - /PickCrafter/PickCrafter.exe: + "/PickCrafter/PickCrafter.exe": - when: - os: windows store: steam @@ -395169,11 +396265,11 @@ Pickers: installDir: Pickers: {} launch: - /Pickers.app: + "/Pickers.app": - when: - os: mac store: steam - /Pickers.exe: + "/Pickers.exe": - when: - os: windows store: steam @@ -395183,11 +396279,11 @@ Picklock: installDir: Picklock: {} launch: - /Picklock.app: + "/Picklock.app": - when: - os: mac store: steam - /Picklock.exe: + "/Picklock.exe": - when: - os: windows store: steam @@ -395197,7 +396293,7 @@ Picnic: installDir: PICNIC: {} launch: - /PicnicSTART: + "/PicnicSTART": - when: - bit: 64 os: linux @@ -395208,7 +396304,7 @@ Picrastination: installDir: Picrastination: {} launch: - /Picrastination.exe: + "/Picrastination.exe": - when: - os: windows store: steam @@ -395218,7 +396314,7 @@ Picross Bonbon - Nonogram: installDir: Picross Bonbon - Nonogram: {} launch: - /Picross BonBon - Nonograms.exe: + "/Picross BonBon - Nonograms.exe": - when: - os: windows store: steam @@ -395228,17 +396324,17 @@ Picross Fairytale: installDir: Picross Fairytale: {} launch: - /Picross Fairytale.exe: + "/Picross Fairytale.exe": - when: - os: windows store: steam steam: id: 820030 -'Picross Fairytale: Legend of the Mermaid': +"Picross Fairytale: Legend of the Mermaid": installDir: Picross Fairytale. Legend of the Mermaid: {} launch: - /Picross Fairytale. Legend of the Mermaid.exe: + "/Picross Fairytale. Legend of the Mermaid.exe": - when: - os: windows store: steam @@ -395248,7 +396344,7 @@ Picross Floof: installDir: Picross Floof: {} launch: - /Picross Floof.exe: + "/Picross Floof.exe": - when: - os: windows store: steam @@ -395258,7 +396354,7 @@ Picross Hansel and Gretel - Nonograms: installDir: Picross Hansel and Gretel - Nonograms: {} launch: - /Picross Hansel and Gretel.exe: + "/Picross Hansel and Gretel.exe": - when: - os: windows store: steam @@ -395268,15 +396364,15 @@ Picross Touch: installDir: Picross Touch: {} launch: - /PicrossTouchMac.app: + "/PicrossTouchMac.app": - when: - os: mac store: steam - /picross.exe: + "/picross.exe": - when: - os: windows store: steam - /picross.x86: + "/picross.x86": - when: - os: linux store: steam @@ -395290,7 +396386,7 @@ Picross.io: installDir: Picross.io: {} launch: - /Picross.io.exe: + "/Picross.io.exe": - when: - os: windows store: steam @@ -395300,7 +396396,7 @@ Pictassembler: installDir: Pictassembler: {} launch: - /Pictassembler.exe: + "/Pictassembler.exe": - when: - os: windows store: steam @@ -395308,7 +396404,7 @@ Pictassembler: id: 1204540 PictoQuest: files: - /AppData/LocalLow/NanoPiko/PictoQuest/save.json: + "/AppData/LocalLow/NanoPiko/PictoQuest/save.json": tags: - save when: @@ -395316,7 +396412,7 @@ PictoQuest: installDir: PictoQuest: {} launch: - /PictoQuest.exe: + "/PictoQuest.exe": - when: - os: windows store: steam @@ -395328,17 +396424,17 @@ PictoQuest: id: 1014040 Pictopix: files: - /AppData/LocalLow/Tomlab Games/Pictopix//game.sav: + "/AppData/LocalLow/Tomlab Games/Pictopix//game.sav": tags: - save when: - os: windows - /unity3d/Tomlab Games/Pictopix/: + "/unity3d/Tomlab Games/Pictopix/": tags: - save when: - os: linux - /unity3d/Tomlab Games/Pictopix/prefs: + "/unity3d/Tomlab Games/Pictopix/prefs": tags: - config when: @@ -395346,16 +396442,19 @@ Pictopix: installDir: Pictopix: {} launch: - /Pictopix.app/Contents/MacOS/Pictopix: + "/Pictopix.app/Contents/MacOS/Pictopix": - when: - os: mac store: steam - /Pictopix.exe: + "/Pictopix.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam - /Pictopix.x86_64: + "/Pictopix.x86_64": - when: - os: linux store: steam @@ -395369,7 +396468,7 @@ Picture toys: installDir: Picture toys: {} launch: - /Picture toys.exe: + "/Picture toys.exe": - arguments: b when: - os: windows @@ -395380,7 +396479,7 @@ Pictures of Life: installDir: Pictures of Life: {} launch: - /Pictures of Life.exe: + "/Pictures of Life.exe": - when: - os: windows store: steam @@ -395395,7 +396494,7 @@ Piczle Lines DX+α: installDir: Piczle Lines DX+α: {} launch: - /PiczleLinesDX.exe: + "/PiczleLinesDX.exe": - when: - os: windows store: steam @@ -395403,12 +396502,12 @@ Piczle Lines DX+α: id: 998790 Pid: files: - /Saves: + "/Saves": tags: - save when: - os: windows - /userdata//218740/remote: + "/userdata//218740/remote": tags: - save when: @@ -395418,11 +396517,11 @@ Pid: installDir: Pid: {} launch: - /Pid.app: + "/Pid.app": - when: - os: mac store: steam - /Pid.exe: + "/Pid.exe": - when: - os: windows store: steam @@ -395436,17 +396535,17 @@ Piece of Memory: installDir: Piece of Memory: {} launch: - /PoM_E.exe: + "/PoM_E.exe": - when: - os: windows store: steam steam: id: 674420 -'Piece of Memory 2: Prologue': +"Piece of Memory 2: Prologue": installDir: Piece of Memory 2Prologue: {} launch: - /PoM2_prologue.exe: + "/PoM2_prologue.exe": - when: - os: windows store: steam @@ -395455,11 +396554,11 @@ Piece of Memory: Pieces of Eight: steam: id: 803500 -'Pieces of Me: Northbound': +"Pieces of Me: Northbound": installDir: Pieces of Me NorthBound: {} launch: - /NorthBound.exe: + "/NorthBound.exe": - when: - bit: 64 os: windows @@ -395468,22 +396567,23 @@ Pieces of Eight: id: 1202090 Pieces of my Heart: files: - /AppData/LocalLow/Kinky Fridays/Pieces of my Heart: + "/AppData/LocalLow/Kinky Fridays/Pieces of my Heart": tags: - save when: - - store: steam + - os: windows + store: steam installDir: Pieces of my Heart: {} launch: - /Pieces of my Heart.exe: + "/Pieces of my Heart.exe": - when: - store: steam steam: id: 1226640 Pier Solar and the Great Architects: files: - /userdata//286220: + "/userdata//286220": tags: - config - save @@ -395497,15 +396597,15 @@ Pier Solar and the Great Architects: installDir: PSHD: {} launch: - /pshd.app: + "/pshd.app": - when: - os: mac store: steam - /pshd.exe: + "/pshd.exe": - when: - os: windows store: steam - /pshd.sh: + "/pshd.sh": - when: - os: linux store: steam @@ -395515,8 +396615,8 @@ Piercing Blow: installDir: Piercing Blow: {} launch: - /PiercingBlow.exe: - - arguments: '20' + "/PiercingBlow.exe": + - arguments: "20" when: - os: windows store: steam @@ -395536,8 +396636,8 @@ Pif Paf: installDir: Pif Paf: {} launch: - /Pif Paf.exe: - - arguments: '-windowed' + "/Pif Paf.exe": + - arguments: "-windowed" when: - os: windows store: steam @@ -395545,12 +396645,12 @@ Pif Paf: id: 881970 Pig Eat Ball: files: - /userdata//339090/remote/PigGameData*.xml: + "/userdata//339090/remote/PigGameData*.xml": tags: - save when: - store: steam - /userdata//339090/remote/PigOptionsData.xml: + "/userdata//339090/remote/PigOptionsData.xml": tags: - config when: @@ -395558,15 +396658,15 @@ Pig Eat Ball: installDir: Pig Eat Ball: {} launch: - /pigEatBallGame.app: + "/pigEatBallGame.app": - when: - os: mac store: steam - /pigEatBallGame.exe: + "/pigEatBallGame.exe": - when: - os: windows store: steam - /pigEatBallGame.x86_64: + "/pigEatBallGame.x86_64": - when: - os: linux store: steam @@ -395580,15 +396680,15 @@ Pigeon Fight: installDir: Pigeon Fight: {} launch: - /PigeonFight.app: + "/PigeonFight.app": - when: - os: mac store: steam - /PigeonFight.exe: + "/PigeonFight.exe": - when: - os: windows store: steam - /PigeonFight.x86: + "/PigeonFight.x86": - when: - os: linux store: steam @@ -395598,7 +396698,7 @@ Pigeons Attack: installDir: Pigeons Attack: {} launch: - /PigeonsAttack.exe: + "/PigeonsAttack.exe": - when: - os: windows store: steam @@ -395611,7 +396711,7 @@ Piggy Poggy Pog: installDir: Piggy Poggy Pog: {} launch: - /Piggy Poggy Pog.exe: + "/Piggy Poggy Pog.exe": - when: - os: windows store: steam @@ -395621,7 +396721,7 @@ Piggy Princess: installDir: Piggy Princess: {} launch: - /Piggy Princess (version 1.0).exe: + "/Piggy Princess (version 1.0).exe": - when: - os: windows store: steam @@ -395631,15 +396731,18 @@ Pigmentone: installDir: Pigmentone: {} launch: - /Pigmentone.app/Contents/MacOS/Pigmentone: + "/Pigmentone.app/Contents/MacOS/Pigmentone": - when: - os: mac store: steam - /Pigmentone.exe: + "/Pigmentone.exe": - when: - bit: 32 os: windows store: steam + - bit: 64 + os: windows + store: steam steam: id: 496530 Pigmentum: @@ -395652,7 +396755,7 @@ Pigsaw: installDir: Pigsaw: {} launch: - /Pigsaw 1.3.0/Pigsaw.exe: + "/Pigsaw 1.3.0/Pigsaw.exe": - when: - store: steam steam: @@ -395661,17 +396764,17 @@ PiiSim: installDir: PiiSim: {} launch: - /piisim.exe: + "/piisim.exe": - when: - os: windows store: steam steam: id: 1002270 -'Pike and Shot: Campaigns': +"Pike and Shot: Campaigns": installDir: Pike & Shot Campaigns: {} launch: - /autorun.exe: + "/autorun.exe": - when: - store: steam steam: @@ -395680,7 +396783,7 @@ Piko Piko: installDir: Piko Piko: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -395688,18 +396791,18 @@ Piko Piko: id: 1079200 Pikuniku: files: - /.config/unity3d/Sectordub/Pikuniku: + "/.config/unity3d/Sectordub/Pikuniku": tags: - config - save when: - os: linux - /userdata//572890/remote: + "/userdata//572890/remote": tags: - save when: - store: steam - /Sectordub/Pikuniku/saves: + "/Sectordub/Pikuniku/saves": tags: - save when: @@ -395709,20 +396812,20 @@ Pikuniku: installDir: Pikuniku: {} launch: - /Pikuniku.app/Contents/MacOS/Pikuniku: + "/Pikuniku.app/Contents/MacOS/Pikuniku": - when: - os: mac store: steam - /Pikuniku.exe: + "/Pikuniku.exe": - when: - os: windows store: steam - /Pikuniku.x86: + "/Pikuniku.x86": - when: - bit: 32 os: linux store: steam - /Pikuniku.x86_64: + "/Pikuniku.x86_64": - when: - bit: 64 os: linux @@ -395737,7 +396840,7 @@ Pilam Sky: installDir: PilamSky: {} launch: - /PilamSky.exe: + "/PilamSky.exe": - when: - os: windows store: steam @@ -395745,7 +396848,7 @@ Pilam Sky: id: 611960 Pile Up! Box by Box: files: - /AppData/LocalLow/Seed By Seed/PileUp: + "/AppData/LocalLow/Seed By Seed/PileUp": tags: - config - save @@ -395756,7 +396859,7 @@ Pile Up! Box by Box: installDir: Pile Up: {} launch: - /PileUp.exe: + "/PileUp.exe": - when: - bit: 64 os: windows @@ -395765,13 +396868,13 @@ Pile Up! Box by Box: id: 1109820 Pile of Cards: files: - /Osgoode_Media/PileOfCards.exe_StrongName_1ea1dwmr5kqp31skbdibflqi5mjg51gl/1.0.0.0/user.config: + "/Osgoode_Media/PileOfCards.exe_StrongName_1ea1dwmr5kqp31skbdibflqi5mjg51gl/1.0.0.0/user.config": tags: - config - save when: - os: windows - /Packages/16591Monstrous.PileofCards_skedv6py88bbr/Settings/settings.dat: + "/Packages/16591Monstrous.PileofCards_skedv6py88bbr/Settings/settings.dat": tags: - config - save @@ -395782,11 +396885,11 @@ Pilfer: installDir: Sokpop S05 Pilfer: {} launch: - /pilfer_mac.app: + "/pilfer_mac.app": - when: - os: mac store: steam - /pilfer_windows.exe: + "/pilfer_windows.exe": - when: - os: windows store: steam @@ -395799,7 +396902,7 @@ Pilgrimage: installDir: Pilgrimage: {} launch: - /Pilgrimage.exe: + "/Pilgrimage.exe": - when: - os: windows store: steam @@ -395807,7 +396910,7 @@ Pilgrimage: id: 888620 Pilgrims: files: - /steamapps/common/Pilgrims/Saves: + "/steamapps/common/Pilgrims/Saves": tags: - save when: @@ -395817,16 +396920,16 @@ Pilgrims: installDir: Pilgrims: {} launch: - /Pilgrims.app: + "/Pilgrims.app": - when: - os: mac store: steam - /Pilgrims.exe: + "/Pilgrims.exe": - when: - os: windows store: steam - /Pilgrims.x86: - - arguments: '-force-glcore42 -force-clamped' + "/Pilgrims.x86": + - arguments: "-force-glcore42 -force-clamped" when: - os: linux store: steam @@ -395844,7 +396947,7 @@ Pillage: installDir: Pillage: {} launch: - /Pillage.exe: + "/Pillage.exe": - when: - bit: 64 os: windows @@ -395855,7 +396958,7 @@ Pillar: installDir: Pillar: {} launch: - /Pillar.exe: + "/Pillar.exe": - when: - os: windows store: steam @@ -395868,33 +396971,33 @@ Pillars of Dust: id: 1144140 Pillars of Eternity: files: - /.config/unity3d/Obsidian Entertainment/Pillars of Eternity: + "/.config/unity3d/Obsidian Entertainment/Pillars of Eternity": tags: - config when: - os: linux - /Library/Application Support/Pillars of Eternity/Saved Games: + "/Library/Application Support/Pillars of Eternity/Saved Games": tags: - save when: - os: mac - /Library/Preferences/unity.Obsidian Entertainment.Pillars of Eternity.plist: + "/Library/Preferences/unity.Obsidian Entertainment.Pillars of Eternity.plist": tags: - config when: - os: mac - /Saved Games/Pillars of Eternity: + "/Saved Games/Pillars of Eternity": tags: - save when: - os: windows - /Packages/ParadoxInteractive.PillarsofEternity-MicrosoftStor_zfnrdv2de78ny/SystemAppData/Helium: + "/Packages/ParadoxInteractive.PillarsofEternity-MicrosoftStor_zfnrdv2de78ny/SystemAppData/Helium": tags: - config when: - os: windows store: microsoft - /PillarsOfEternity/SavedGames: + "/PillarsOfEternity/SavedGames": tags: - save when: @@ -395904,28 +397007,31 @@ Pillars of Eternity: id: gogExtra: - 1207666853 + - 1344895033 - 1420803723 - - 1439805257 - 1439805122 + - 1439805257 - 1439894629 - 1577585691 - - 1344895033 installDir: Pillars of Eternity: {} launch: - /PillarsOfEternity: - - arguments: '-steam' + "/PillarsOfEternity": + - arguments: "-steam" when: - bit: 32 os: linux store: steam - /PillarsOfEternity.app: - - arguments: '-steam' + - bit: 64 + os: linux + store: steam + "/PillarsOfEternity.app": + - arguments: "-steam" when: - os: mac store: steam - /PillarsOfEternity.exe: - - arguments: '-steam' + "/PillarsOfEternity.exe": + - arguments: "-steam" when: - os: windows store: steam @@ -395935,35 +397041,35 @@ Pillars of Eternity: - config steam: id: 291650 -'Pillars of Eternity II: Deadfire': +"Pillars of Eternity II: Deadfire": files: - /Library/Application Support/Pillars of Eternity II/Saved Games: + "/Library/Application Support/Pillars of Eternity II/Saved Games": tags: - save when: - os: mac - /Library/Application Support/Preferences/unity.Obsidian Entertainment.Pillars Of Eternity II.plist: + "/Library/Application Support/Preferences/unity.Obsidian Entertainment.Pillars Of Eternity II.plist": tags: - config when: - os: mac - /Saved Games/Pillars of Eternity II: + "/Saved Games/Pillars of Eternity II": tags: - save when: - os: windows - /Packages/VersusEvil.PillarsofEternity2-PC_xa16sj1v690xg/SystemAppData/wgs: + "/Packages/VersusEvil.PillarsofEternity2-PC_xa16sj1v690xg/SystemAppData/wgs": tags: - save when: - os: windows store: microsoft - /unity3d/Obsidian Entertainment/Pillars of Eternity II/prefs: + "/unity3d/Obsidian Entertainment/Pillars of Eternity II/prefs": tags: - config when: - os: linux - /PillarsOfEternityII/SavedGames: + "/PillarsOfEternityII/SavedGames": tags: - save when: @@ -395973,23 +397079,23 @@ Pillars of Eternity: id: gogExtra: - 1354196345 - - 2125256630 - 1581770611 + - 2125256630 installDir: Pillars of Eternity II: {} launch: - /PillarsOfEternityII: - - arguments: '-steam' + "/PillarsOfEternityII": + - arguments: "-steam" when: - os: linux store: steam - /PillarsOfEternityII.app: - - arguments: '-steam' + "/PillarsOfEternityII.app": + - arguments: "-steam" when: - os: mac store: steam - /PillarsOfEternityII.exe: - - arguments: '-steam' + "/PillarsOfEternityII.exe": + - arguments: "-steam" when: - os: windows store: steam @@ -396003,7 +397109,7 @@ Pilli Adventure: installDir: Pilli Adventure: {} launch: - /pilli adv game 34.exe: + "/pilli adv game 34.exe": - when: - os: windows store: steam @@ -396013,16 +397119,16 @@ Pillow Castle Unannounced Title: installDir: Superliminal: {} launch: - /Superliminal: + "/Superliminal": - when: - bit: 64 os: linux store: steam - /Superliminal.app: + "/Superliminal.app": - when: - os: mac store: steam - /SuperliminalSteam.exe: + "/SuperliminalSteam.exe": - when: - bit: 64 os: windows @@ -396033,15 +397139,15 @@ Pills4Skills: installDir: Pills4Skills: {} launch: - /P4S.exe: + "/P4S.exe": - when: - os: windows store: steam - /Pills4Skills.app/Contents/MacOS/Pills4Skills: + "/Pills4Skills.app/Contents/MacOS/Pills4Skills": - when: - os: mac store: steam - /p4s.x86: + "/p4s.x86": - when: - os: linux store: steam @@ -396053,11 +397159,11 @@ Pilot Brothers: installDir: Pilot Brothers: {} launch: - /bin/Pilot Brothers.exe: + "/bin/Pilot Brothers.exe": - when: - os: windows store: steam - workingDir: /bin + workingDir: "/bin" steam: id: 336760 Pilot Brothers 2: @@ -396066,30 +397172,30 @@ Pilot Brothers 2: installDir: Pilot Brothers 2: {} launch: - /bin/Pilot Brothers.exe: + "/bin/Pilot Brothers.exe": - when: - os: windows store: steam - workingDir: /bin + workingDir: "/bin" steam: id: 336770 -'Pilot Brothers 3: Back Side of the Earth': +"Pilot Brothers 3: Back Side of the Earth": gog: id: 1426251500 installDir: Pilot Brothers 3 Back Side of the Earth: {} launch: - /bin/Pilot Brothers.exe: + "/bin/Pilot Brothers.exe": - when: - store: steam - workingDir: /bin + workingDir: "/bin" steam: id: 336780 Pilot Crusader: installDir: Pilot Crusader: {} launch: - /SpaceFighter.exe: + "/SpaceFighter.exe": - when: - os: windows store: steam @@ -396104,7 +397210,7 @@ Pilot Sports: installDir: Pilot Sports: {} launch: - /pilotsports.exe: + "/pilotsports.exe": - when: - store: steam steam: @@ -396113,11 +397219,11 @@ Pilot Unknown: installDir: PilotUnknown: {} launch: - /PilotUnknown.app/Contents/MacOS/PilotUnknown: + "/PilotUnknown.app/Contents/MacOS/PilotUnknown": - when: - os: mac store: steam - /PilotUnknown.exe: + "/PilotUnknown.exe": - when: - os: windows store: steam @@ -396130,15 +397236,15 @@ Piloteer: installDir: Piloteer: {} launch: - /Piloteer.app: + "/Piloteer.app": - when: - os: mac store: steam - /Piloteer.exe: + "/Piloteer.exe": - when: - os: windows store: steam - /Piloteer.x86: + "/Piloteer.x86": - when: - os: linux store: steam @@ -396146,7 +397252,7 @@ Piloteer: id: 355910 Pimiko Plus: files: - /Pimiko Plus: + "/Pimiko Plus": tags: - config when: @@ -396154,7 +397260,7 @@ Pimiko Plus: installDir: Pimiko Plus: {} launch: - /Pimiko Plus.exe: + "/Pimiko Plus.exe": - when: - os: windows store: steam @@ -396167,16 +397273,16 @@ Pinball: installDir: Pinball: {} launch: - /Pinball.app/Contents/MacOS/Pinball: + "/Pinball.app/Contents/MacOS/Pinball": - when: - os: mac store: steam - /Pinball.exe: + "/Pinball.exe": - when: - bit: 64 os: windows store: steam - /Pinball.x86_64: + "/Pinball.x86_64": - when: - bit: 64 os: linux @@ -396187,29 +397293,29 @@ Pinball 2018: installDir: Pinball 2018: {} launch: - /Pinball 2018.app/Contents/MacOS/Pinball 2018: + "/Pinball 2018.app/Contents/MacOS/Pinball 2018": - when: - os: mac store: steam - /Pinball 2018.exe: + "/Pinball 2018.exe": - when: - os: windows store: steam - /Pinball 2018.x86: + "/Pinball 2018.x86": - when: - os: linux store: steam steam: id: 856430 -'Pinball Deluxe: Reloaded': +"Pinball Deluxe: Reloaded": installDir: Pinball Deluxe Reloaded: {} launch: - /PinballDeluxeReloaded.app/Contents/MacOS/PinballDeluxeReloaded: + "/PinballDeluxeReloaded.app/Contents/MacOS/PinballDeluxeReloaded": - when: - os: mac store: steam - /PinballDeluxeReloaded.exe: + "/PinballDeluxeReloaded.exe": - when: - os: windows store: steam @@ -396217,7 +397323,7 @@ Pinball 2018: id: 678310 Pinball Dreams: files: - /HISCORES: + "/HISCORES": tags: - save when: @@ -396229,12 +397335,12 @@ Pinball Dreams: - 1207658910 Pinball Dreams 2: files: - /HISCORES: + "/HISCORES": tags: - save when: - os: dos - /SOUND.CFG: + "/SOUND.CFG": tags: - config when: @@ -396246,17 +397352,17 @@ Pinball Dreams 2: - 1207658910 Pinball Dreams Deluxe: files: - /DDPCOPTN.BIN: + "/DDPCOPTN.BIN": tags: - config when: - os: dos - /HISCORES.PD1: + "/HISCORES.PD1": tags: - save when: - os: dos - /HISCORES.PD2: + "/HISCORES.PD2": tags: - save when: @@ -396268,15 +397374,16 @@ Pinball Dreams Deluxe: - 1207658910 Pinball FX: files: - /PinballFX_STEAM/Saved/SaveGames//*.sav: + "/PinballFX_STEAM/Saved/SaveGames//*.sav": tags: - save when: - - store: steam + - os: windows + store: steam installDir: Pinball FX: {} launch: - /PinballFX.exe: + "/PinballFX.exe": - when: - os: windows store: steam @@ -396284,13 +397391,13 @@ Pinball FX: id: 2328760 Pinball FX2: files: - /userdata//226980: + "/userdata//226980": tags: - config - save when: - store: steam - /Zen Studios/Profile backup/226980: + "/Zen Studios/Profile backup/226980": tags: - config - save @@ -396299,7 +397406,7 @@ Pinball FX2: installDir: Pinball FX2: {} launch: - /Pinball FX2.exe: + "/Pinball FX2.exe": - when: - os: windows store: steam @@ -396312,13 +397419,13 @@ Pinball FX2 VR: id: 547590 Pinball FX3: files: - /userdata//442120: + "/userdata//442120": tags: - config - save when: - store: steam - /Zen Studios/Profile backup/442120: + "/Zen Studios/Profile backup/442120": tags: - config - save @@ -396327,7 +397434,7 @@ Pinball FX3: installDir: Pinball FX3: {} launch: - /Pinball FX3.exe: + "/Pinball FX3.exe": - when: - os: windows store: steam @@ -396335,17 +397442,17 @@ Pinball FX3: id: 442120 Pinball Fantasies: files: - /PINBALL.CFG: + "/PINBALL.CFG": tags: - config when: - os: dos - /SOUND.CFG: + "/SOUND.CFG": tags: - config when: - os: dos - /TABLE*.HI: + "/TABLE*.HI": tags: - save when: @@ -396359,11 +397466,11 @@ Pinball HD Collection: installDir: Pinball HD Collection: {} launch: - /PinballHDCollection: + "/PinballHDCollection": - when: - os: linux store: steam - /PinballHDCollection.exe: + "/PinballHDCollection.exe": - when: - os: windows store: steam @@ -396375,19 +397482,19 @@ Pinball Illusions: id: gogExtra: - 1207658910 -'Pinball Inside: A VR Arcade Game': +"Pinball Inside: A VR Arcade Game": installDir: PinballVR: {} steam: id: 605850 Pinball Mania: files: - /HISCORES: + "/HISCORES": tags: - save when: - os: dos - /SOUND.CFG: + "/SOUND.CFG": tags: - config when: @@ -396401,16 +397508,16 @@ Pinball Parlor: installDir: Pinball Parlor: {} launch: - /PP.exe: + "/PP.exe": - when: - store: steam - /PP_light.exe: + "/PP_light.exe": - when: - store: steam - /PP_lightDX9.exe: + "/PP_lightDX9.exe": - when: - store: steam - /ScreenSetting.exe: + "/ScreenSetting.exe": - when: - store: steam steam: @@ -396419,7 +397526,7 @@ Pinball Wicked: installDir: Pinball Wicked: {} launch: - /PinballWicked.exe: + "/PinballWicked.exe": - when: - os: windows store: steam @@ -396432,7 +397539,7 @@ Pinball universe: installDir: Pinball universe: {} launch: - /pinball universe.exe: + "/pinball universe.exe": - when: - os: windows store: steam @@ -396442,7 +397549,7 @@ Pinchcliffe Grand Prix: installDir: Flåklypa Grand Prix: {} launch: - /FGP_Project.exe: + "/FGP_Project.exe": - when: - os: windows store: steam @@ -396450,22 +397557,22 @@ Pinchcliffe Grand Prix: id: 1668080 Pine: files: - /AppData/LocalLow/Twirlbound/Pine/saves: + "/AppData/LocalLow/Twirlbound/Pine/saves": tags: - save when: - os: windows - /AppData/LocalLow/Twirlbound/Pine/settings.xml: + "/AppData/LocalLow/Twirlbound/Pine/settings.xml": tags: - config when: - os: windows - /userdata//1042780/remote/saves: + "/userdata//1042780/remote/saves": tags: - save when: - store: steam - /unity3d/Twirlbound/Pine/settings.xml: + "/unity3d/Twirlbound/Pine/settings.xml": tags: - config when: @@ -396478,16 +397585,16 @@ Pine: installDir: Pine: {} launch: - /Pine.app/Contents/MacOS/Pine: + "/Pine.app/Contents/MacOS/Pine": - when: - os: mac store: steam - /Pine.exe: + "/Pine.exe": - when: - bit: 64 os: windows store: steam - /Pine.x86_64: + "/Pine.x86_64": - when: - bit: 64 os: linux @@ -396502,7 +397609,7 @@ Pine Seekers: installDir: Pine Seekers: {} launch: - /Pine Seekers.exe: + "/Pine Seekers.exe": - when: - os: windows store: steam @@ -396512,7 +397619,7 @@ Pineapple Smash Crew: installDir: Pineapple Smash Crew: {} launch: - /PineappleSmashCrew.exe: + "/PineappleSmashCrew.exe": - when: - store: steam steam: @@ -396521,21 +397628,21 @@ Pineview Drive: installDir: Pineview Drive: {} launch: - /PineviewDrive.exe: + "/PineviewDrive.exe": - when: - os: windows store: steam - /PineviewDrive.x86: + "/PineviewDrive.x86": - when: - os: linux store: steam steam: id: 288880 -'Pineview Drive: Homeless': +"Pineview Drive: Homeless": installDir: Pineview Drive - Homeless: {} launch: - /PineviewDriveHomeless.exe: + "/PineviewDriveHomeless.exe": - when: - os: windows store: steam @@ -396545,11 +397652,11 @@ Pinewood Island: installDir: Pinewood Island: {} launch: - /Pinewood-Island.app: + "/Pinewood-Island.app": - when: - os: mac store: steam - /Pinewood-Island.exe: + "/Pinewood-Island.exe": - when: - os: windows store: steam @@ -396559,15 +397666,15 @@ Ping: installDir: Ping: {} launch: - /Ping.app/Contents/MacOS/Ping: + "/Ping.app/Contents/MacOS/Ping": - when: - os: mac store: steam - /Ping.exe: + "/Ping.exe": - when: - os: windows store: steam - /Ping.x86: + "/Ping.x86": - when: - os: linux store: steam @@ -396577,7 +397684,7 @@ Ping Ping: installDir: Ping Ping: {} launch: - /PingPing.exe: + "/PingPing.exe": - when: - os: windows store: steam @@ -396592,11 +397699,11 @@ Ping Pong Space: installDir: Ping Pong Space: {} launch: - /PPS.exe: + "/PPS.exe": - when: - os: windows store: steam - /Ping Pong Space.app/Contents/MacOS/Ping Pong Space: + "/Ping Pong Space.app/Contents/MacOS/Ping Pong Space": - when: - os: mac store: steam @@ -396611,20 +397718,20 @@ Ping Redux: installDir: PING REDUX: {} launch: - /PING REDUX.app: + "/PING REDUX.app": - when: - os: mac store: steam - /PING REDUX.exe: + "/PING REDUX.exe": - when: - os: windows store: steam - /PING REDUX.x86: + "/PING REDUX.x86": - when: - bit: 32 os: linux store: steam - /PING REDUX.x86_64: + "/PING REDUX.x86_64": - when: - bit: 64 os: linux @@ -396645,7 +397752,7 @@ Pinga Ponga: installDir: Pinga Ponga: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -396655,7 +397762,7 @@ Pingball Ultra: installDir: Pingball Ultra: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -396671,7 +397778,7 @@ Pink Girl: id: 1177860 Pink Heaven: files: - /rsc_p/profile: + "/rsc_p/profile": tags: - config - save @@ -396680,7 +397787,7 @@ Pink Heaven: installDir: Pink Heaven: {} launch: - /PinkHeaven.exe: + "/PinkHeaven.exe": - when: - os: windows store: steam @@ -396688,7 +397795,7 @@ Pink Heaven: id: 409690 Pink Hour: files: - /rsc_p/profile: + "/rsc_p/profile": tags: - config - save @@ -396697,20 +397804,20 @@ Pink Hour: installDir: Pink Hour: {} launch: - /PinkHour.exe: + "/PinkHour.exe": - when: - os: windows store: steam steam: id: 409670 -'Pink Panther: Pinkadelic Pursuit': +"Pink Panther: Pinkadelic Pursuit": files: - /data/Save/Pinky.cfg: + "/data/Save/Pinky.cfg": tags: - config when: - os: windows - /data/Save/Pinky.pnk: + "/data/Save/Pinky.pnk": tags: - save when: @@ -396719,15 +397826,15 @@ Pink Rage Otome: installDir: Pink Rage Otome: {} launch: - /PinkRage.app: + "/PinkRage.app": - when: - os: mac store: steam - /PinkRage.exe: + "/PinkRage.exe": - when: - os: windows store: steam - /PinkRage.sh: + "/PinkRage.sh": - when: - os: linux store: steam @@ -396737,7 +397844,7 @@ Pinkman: installDir: Pinkman: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -396757,7 +397864,7 @@ Pins 4: id: 701120 Pinstripe: files: - '/AppData/LocalLow/Atmos Games, LLC/Pinstripe': + "/AppData/LocalLow/Atmos Games, LLC/Pinstripe": tags: - save when: @@ -396767,20 +397874,20 @@ Pinstripe: installDir: Pinstripe: {} launch: - /Pinstripe.app: + "/Pinstripe.app": - when: - os: mac store: steam - /Pinstripe.exe: + "/Pinstripe.exe": - when: - os: windows store: steam - /Pinstripe.x86: + "/Pinstripe.x86": - when: - os: linux store: steam registry: - 'HKEY_CURRENT_USER/Software/Atmos Games, LLC/Pinstripe': + "HKEY_CURRENT_USER/Software/Atmos Games, LLC/Pinstripe": tags: - config steam: @@ -396789,29 +397896,29 @@ Pinup Ball - Sexy Strip Pinball: installDir: PinupBall: {} launch: - /PinupBall: - - arguments: '-screen-fullscreen 1' + "/PinupBall": + - arguments: "-screen-fullscreen 1" when: - os: linux store: steam - - arguments: '-screen-fullscreen 0' + - arguments: "-screen-fullscreen 0" when: - os: linux store: steam - /PinupBall.app: + "/PinupBall.app": - when: - os: mac store: steam - - arguments: '-screen-fullscreen 0' + - arguments: "-screen-fullscreen 0" when: - os: mac store: steam - /PinupBall.exe: - - arguments: '-screen-fullscreen 1' + "/PinupBall.exe": + - arguments: "-screen-fullscreen 1" when: - os: windows store: steam - - arguments: '-screen-fullscreen 0' + - arguments: "-screen-fullscreen 0" when: - os: windows store: steam @@ -396821,7 +397928,7 @@ Pion: installDir: PION: {} launch: - /pion.exe: + "/pion.exe": - when: - store: steam steam: @@ -396833,26 +397940,26 @@ Pipe Mania: installDir: Pipemania: {} launch: - /_exe/Pipemania.exe: + "/_exe/Pipemania.exe": - when: - os: windows store: steam - workingDir: /_exe + workingDir: "/_exe" steam: id: 1385320 Pipe Push Paradise: installDir: Pipe Push Paradise: {} launch: - /pipepushparadise.app: + "/pipepushparadise.app": - when: - os: mac store: steam - /pipepushparadise.exe: + "/pipepushparadise.exe": - when: - os: windows store: steam - /pipepushparadise.x86_64: + "/pipepushparadise.x86_64": - when: - os: linux store: steam @@ -396862,11 +397969,11 @@ Pipe by BMX Streets: installDir: PIPE: {} launch: - /PIPE.app/Contents/MacOS/PIPE: + "/PIPE.app/Contents/MacOS/PIPE": - when: - os: mac store: steam - /PIPE.exe: + "/PIPE.exe": - when: - os: windows store: steam @@ -396876,7 +397983,7 @@ PipeWorks: installDir: PipeWorks: {} launch: - /PipeWorks.exe: + "/PipeWorks.exe": - when: - os: windows store: steam @@ -396891,7 +397998,7 @@ Pipeline Of Emperor Yu: installDir: PEY: {} launch: - /PEY.exe: + "/PEY.exe": - when: - os: windows store: steam @@ -396901,7 +398008,7 @@ Pipes Racer: installDir: Pipes Racer: {} launch: - /Pipes Racer.exe: + "/Pipes Racer.exe": - when: - os: windows store: steam @@ -396911,15 +398018,15 @@ Pipes!: installDir: Pipes!: {} launch: - /Pipes!.app/Contents/MacOS/Pipes!: + "/Pipes!.app/Contents/MacOS/Pipes!": - when: - os: mac store: steam - /Pipes!.exe: + "/Pipes!.exe": - when: - os: windows store: steam - /Pipes!.x86: + "/Pipes!.x86": - when: - os: linux store: steam @@ -396929,7 +398036,7 @@ Piping Hot: installDir: Piping Hot: {} launch: - /Piping Hot.exe: + "/Piping Hot.exe": - when: - os: windows store: steam @@ -396939,15 +398046,15 @@ Piposh: installDir: Piposh: {} launch: - /Piposh.app: + "/Piposh.app": - when: - os: mac store: steam - /Piposh.exe: + "/Piposh.exe": - when: - os: windows store: steam - /Piposh.x86_64: + "/Piposh.x86_64": - when: - os: linux store: steam @@ -396962,7 +398069,7 @@ Pirate Cannons AHOY!: installDir: Pirate Cannons AHOY!: {} launch: - /PirateCannons.exe: + "/PirateCannons.exe": - when: - store: steam steam: @@ -396971,11 +398078,11 @@ Pirate Code: installDir: Pirate Code: {} launch: - /Pirate Code.app: + "/Pirate Code.app": - when: - os: mac store: steam - /Pirate Code.exe: + "/Pirate Code.exe": - when: - os: windows store: steam @@ -396990,11 +398097,11 @@ Pirate Hell: installDir: Pirate Hell: {} launch: - /piratehell.exe: + "/piratehell.exe": - when: - os: windows store: steam - /runPirateHell.sh: + "/runPirateHell.sh": - when: - os: linux store: steam @@ -397002,12 +398109,12 @@ Pirate Hell: id: 321080 Pirate Hunter: files: - /data/animbase/console/cvars.cfg: + "/data/animbase/console/cvars.cfg": tags: - config when: - os: windows - /savegames: + "/savegames": tags: - save when: @@ -397016,7 +398123,7 @@ Pirate Island Rescue: installDir: Pirate Island Rescue: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -397033,7 +398140,7 @@ Pirate Jam: installDir: Pirate Jam: {} launch: - /Pirate Jam.exe: + "/Pirate Jam.exe": - when: - os: windows store: steam @@ -397043,7 +398150,7 @@ Pirate Jump 2: installDir: Pirate Jump 2: {} launch: - /PirateJump2.exe: + "/PirateJump2.exe": - when: - os: windows store: steam @@ -397053,11 +398160,11 @@ Pirate Mosaic Puzzle. Caribbean Treasures: installDir: Pirate Mosaic Puzzle. Caribbean Treasures: {} launch: - /Pirate Mosaic Puzzle. Caribbean Treasures.app: + "/Pirate Mosaic Puzzle. Caribbean Treasures.app": - when: - os: mac store: steam - /Pirate Mosaic Puzzle. Caribbean Treasures.exe: + "/Pirate Mosaic Puzzle. Caribbean Treasures.exe": - when: - os: windows store: steam @@ -397067,11 +398174,11 @@ Pirate Pop Plus: installDir: Pirate Pop Plus: {} launch: - /PiratePopPlus.app/Contents/MacOS/PiratePopPlus: + "/PiratePopPlus.app/Contents/MacOS/PiratePopPlus": - when: - os: mac store: steam - /PiratePopPlus.exe: + "/PiratePopPlus.exe": - when: - os: windows store: steam @@ -397086,17 +398193,17 @@ Pirate Survival Fantasy Shooter: installDir: Pirate Survival Fantasy Shooter: {} launch: - /Pirate Survival Fantasy Shooter NO Headset.exe: + "/Pirate Survival Fantasy Shooter NO Headset.exe": - when: - os: windows store: steam steam: id: 963150 -Pirate's Life: +"Pirate's Life": installDir: PiratesLife: {} launch: - /PiratesLife.exe: + "/PiratesLife.exe": - when: - os: windows store: steam @@ -397106,7 +398213,7 @@ Pirates Are BLANKing Awesome: installDir: paba: {} launch: - /paba.exe: + "/paba.exe": - when: - os: windows store: steam @@ -397124,7 +398231,7 @@ Pirates Treasure II - Steam Edition: installDir: Pirates Treasure II Steam Edition: {} launch: - /Pirates Treasure II Steam Edition.exe: + "/Pirates Treasure II Steam Edition.exe": - when: - os: windows store: steam @@ -397132,22 +398239,22 @@ Pirates Treasure II - Steam Edition: id: 1204650 Pirates of Black Cove: files: - /data/keyboard.xml: + "/data/keyboard.xml": tags: - config when: - os: windows - /data/settings.xml: + "/data/settings.xml": tags: - config when: - os: windows - /Nitro Games/PiratesOfBlackCove: + "/Nitro Games/PiratesOfBlackCove": tags: - config when: - os: windows - /Nitro Games/PiratesOfBlackCove/SavedGames: + "/Nitro Games/PiratesOfBlackCove/SavedGames": tags: - save when: @@ -397155,7 +398262,7 @@ Pirates of Black Cove: installDir: Pirates of Black Cove: {} launch: - /bin/x86/dx9/BlackCove.exe: + "/bin/x86/dx9/BlackCove.exe": - when: - store: steam steam: @@ -397164,22 +398271,22 @@ Pirates of Everseas: installDir: Pirates of Everseas: {} launch: - /Pirates of Everseas.app/Contents/MacOS/Pirates of Everseas: + "/Pirates of Everseas.app/Contents/MacOS/Pirates of Everseas": - when: - os: mac store: steam - /win32/MMGame.Project_release.exe: + "/win32/MMGame.Project_release.exe": - when: - os: windows store: steam - workingDir: /win32 + workingDir: "/win32" steam: id: 577710 Pirates of First Star: installDir: Pirates of First Star: {} launch: - /Pirates of First Star.exe: + "/Pirates of First Star.exe": - when: - os: windows store: steam @@ -397189,7 +398296,7 @@ Pirates of corsairs: installDir: Pirate: {} launch: - /Pirate.exe: + "/Pirate.exe": - when: - os: windows store: steam @@ -397202,24 +398309,24 @@ Pirates of the Asteroid Belt VR: id: 1016980 Pirates of the Caribbean: files: - /SAVE: + "/SAVE": tags: - save when: - os: windows - /engine.ini: + "/engine.ini": tags: - config when: - os: windows - /options: + "/options": tags: - config when: - os: windows -'Pirates of the Caribbean: At World''s End': +"Pirates of the Caribbean: At World's End": files: - /Disney Interactive Studios/Pirates of the Caribbean - At Worlds End: + "/Disney Interactive Studios/Pirates of the Caribbean - At Worlds End": tags: - config - save @@ -397228,20 +398335,20 @@ Pirates of the Caribbean: installDir: Pirates of the Caribbean - At Worlds End: {} launch: - /At Worlds End.exe: + "/At Worlds End.exe": - when: - os: windows store: steam steam: id: 301980 -'Pirates of the Caribbean: The Legend of Jack Sparrow': +"Pirates of the Caribbean: The Legend of Jack Sparrow": files: - /Bethesda Softworks/Pirates of the Caribbean - LoJS/Options: + "/Bethesda Softworks/Pirates of the Caribbean - LoJS/Options": tags: - config when: - os: windows - /Bethesda Softworks/Pirates of the Caribbean - LoJS/SaveSlot#: + "/Bethesda Softworks/Pirates of the Caribbean - LoJS/SaveSlot#": tags: - save when: @@ -397250,7 +398357,7 @@ Pirates of the Polygon Sea: installDir: Pirates of the Polygon Sea: {} launch: - /Pirates of the Polygon Sea.exe: + "/Pirates of the Polygon Sea.exe": - when: - os: windows store: steam @@ -397261,15 +398368,15 @@ Pirates on Deck VR: Pirates on Deck VR: {} steam: id: 1198250 -'Pirates vs Corsairs: Davy Jones''s Gold': +"Pirates vs Corsairs: Davy Jones's Gold": installDir: - Pirates vs Corsairs Davy Jones's Gold: {} + "Pirates vs Corsairs Davy Jones's Gold": {} launch: - /PiratesVsCorsairs.app: + "/PiratesVsCorsairs.app": - when: - os: mac store: steam - /PiratesVsCorsairs.exe: + "/PiratesVsCorsairs.exe": - when: - os: windows store: steam @@ -397277,12 +398384,12 @@ Pirates on Deck VR: id: 355650 Pirates! Gold: files: - /PIRATES*.SAV: + "/PIRATES*.SAV": tags: - save when: - os: windows - /pirates.hof: + "/pirates.hof": tags: - save when: @@ -397293,90 +398400,92 @@ Pirates! Gold: gogExtra: - 1207659060 installDir: - Sid Meier's Pirates! Gold: {} + "Sid Meier's Pirates! Gold": {} launch: - /Sid Meier's Pirates! Gold.app: + "/Sid Meier's Pirates! Gold.app": - when: - os: mac store: steam - /dosbox_linux/daum/launch_smpirates_game_daum.sh: + "/dosbox_linux/daum/launch_smpirates_game_daum.sh": - when: - os: linux store: steam - workingDir: /dosbox_linux/daum - /dosbox_linux/daum/launch_smpiratesgold_game_daum.sh: + workingDir: "/dosbox_linux/daum" + "/dosbox_linux/daum/launch_smpiratesgold_game_daum.sh": - when: - os: linux store: steam - workingDir: /dosbox_linux/daum - /dosbox_linux/launch_smpirates_game.sh: + workingDir: "/dosbox_linux/daum" + "/dosbox_linux/launch_smpirates_game.sh": - when: - os: linux store: steam - workingDir: /dosbox_linux - /dosbox_linux/launch_smpiratesgold_config.sh: + workingDir: "/dosbox_linux" + "/dosbox_linux/launch_smpiratesgold_config.sh": - when: - os: linux store: steam - workingDir: /dosbox_linux - /dosbox_linux/launch_smpiratesgold_game.sh: + workingDir: "/dosbox_linux" + "/dosbox_linux/launch_smpiratesgold_game.sh": - when: - os: linux store: steam - workingDir: /dosbox_linux - /dosbox_windows/daum/dosbox.exe: - - arguments: '-conf dosbox_smpiratesgold.conf -conf dosbox_smpiratesgold_launch_windows.conf -noconsole' + workingDir: "/dosbox_linux" + "/dosbox_windows/daum/dosbox.exe": + - arguments: "-conf dosbox_smpiratesgold.conf -conf dosbox_smpiratesgold_launch_windows.conf -noconsole" when: - os: windows store: steam - workingDir: /dosbox_windows/daum - - arguments: '-conf dosbox_smpirates.conf -conf dosbox_smpirates_launch_windows.conf -noconsole' + workingDir: "/dosbox_windows/daum" + - arguments: "-conf dosbox_smpirates.conf -conf dosbox_smpirates_launch_windows.conf -noconsole" when: - os: windows store: steam - workingDir: /dosbox_windows/daum - /dosbox_windows/dosbox.exe: - - arguments: '-conf dosbox_smpiratesgold.conf -conf dosbox_smpiratesgold_launch_windows.conf -noconsole' + workingDir: "/dosbox_windows/daum" + "/dosbox_windows/dosbox.exe": + - arguments: "-conf dosbox_smpiratesgold.conf -conf dosbox_smpiratesgold_launch_windows.conf -noconsole" when: - os: windows store: steam - workingDir: /dosbox_windows - - arguments: '-conf dosbox_smpiratesgold.conf -conf dosbox_smpiratesgold_config_windows.conf -noconsole' + workingDir: "/dosbox_windows" + - arguments: "-conf dosbox_smpiratesgold.conf -conf dosbox_smpiratesgold_config_windows.conf -noconsole" when: - os: windows store: steam - workingDir: /dosbox_windows - - arguments: '-conf dosbox_smpirates.conf -conf dosbox_smpirates_launch_windows.conf -noconsole' + workingDir: "/dosbox_windows" + - arguments: "-conf dosbox_smpirates.conf -conf dosbox_smpirates_launch_windows.conf -noconsole" when: - os: windows store: steam - workingDir: /dosbox_windows + workingDir: "/dosbox_windows" steam: id: 327380 -'Pirates, Vikings, and Knights II': +"Pirates, Vikings, and Knights II": installDir: - 'pirates, vikings and knights ii': {} + "pirates, vikings and knights ii": {} launch: - /sdkbase_pvkii/pvkii.exe: - - arguments: '-steam -game ../pvkii' + "/sdkbase_pvkii/pvkii.exe": + - arguments: "-steam -game ../pvkii" when: - os: windows store: steam - /sdkbase_pvkii/pvkii.sh: - - arguments: '-steam -game ../pvkii' + "/sdkbase_pvkii/pvkii.sh": + - arguments: "-steam -game ../pvkii" when: + - os: mac + store: steam - os: linux store: steam steam: id: 17570 Piratopia: files: - /AppData/LocalLow/Adi Zhavo/Piratopia/SteamCloud_Save.sav: + "/AppData/LocalLow/Adi Zhavo/Piratopia/SteamCloud_Save.sav": tags: - save when: - os: windows - /Library/Preferences/com.Adi_Zhavo.Piratopia.plist: + "/Library/Preferences/com.Adi_Zhavo.Piratopia.plist": tags: - config when: @@ -397384,11 +398493,11 @@ Piratopia: installDir: Piratopia: {} launch: - /Piratopia.app/Contents/MacOS/Piratopia: + "/Piratopia.app/Contents/MacOS/Piratopia": - when: - os: mac store: steam - /Piratopia/Piratopia.exe: + "/Piratopia/Piratopia.exe": - when: - os: windows store: steam @@ -397402,7 +398511,7 @@ Pirouette: installDir: Pirouette: {} launch: - /Pirouette.exe: + "/Pirouette.exe": - when: - store: steam steam: @@ -397416,7 +398525,7 @@ Pit Blocks 3D: installDir: Pit Blocks 3D: {} launch: - /PitBlocks3D.exe: + "/PitBlocks3D.exe": - when: - os: windows store: steam @@ -397424,12 +398533,12 @@ Pit Blocks 3D: id: 792000 Pit People: files: - /userdata//291860/local/save/preferences.xml: + "/userdata//291860/local/save/preferences.xml": tags: - save when: - store: steam - /userdata//291860/remote/save: + "/userdata//291860/remote/save": tags: - config when: @@ -397437,11 +398546,11 @@ Pit People: installDir: Pit People: {} launch: - /Pit People.app: + "/Pit People.app": - when: - os: mac store: steam - /pitpeople.exe: + "/pitpeople.exe": - when: - os: windows store: steam @@ -397451,18 +398560,18 @@ Pit of Evil: installDir: Pit of Evil: {} launch: - /Game.exe: - - arguments: '--in-process-gpu' + "/Game.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam - /Pit of Evil.app: - - arguments: '--in-process-gpu' + "/Pit of Evil.app": + - arguments: "--in-process-gpu" when: - os: mac store: steam - /nw: - - arguments: '--in-process-gpu' + "/nw": + - arguments: "--in-process-gpu" when: - os: linux store: steam @@ -397472,13 +398581,13 @@ Pitch Perfect Ear Training: installDir: Pitch Perfect Ear Training: {} launch: - /pitchPerfect.exe: + "/pitchPerfect.exe": - when: - os: windows store: steam steam: id: 888710 -'Pitch-Hit: Baseball': +"Pitch-Hit: Baseball": installDir: PITCH-HIT - FULL GAME: {} steam: @@ -397492,17 +398601,17 @@ Pitfall Planet: installDir: Pitfall Planet: {} launch: - /Pitfall.app: + "/Pitfall.app": - when: - os: mac store: steam - /Pitfall.exe: + "/Pitfall.exe": - when: - os: windows store: steam steam: id: 464900 -'Pitfall: The Mayan Adventure': +"Pitfall: The Mayan Adventure": registry: HKEY_LOCAL_MACHINE/SOFTWARE/WOW6432Node/Activision/Pitfall: tags: @@ -397510,7 +398619,7 @@ Pitfall Planet: - save Pitiri 1977: files: - /save_pitiri.sav: + "/save_pitiri.sav": tags: - save when: @@ -397518,7 +398627,7 @@ Pitiri 1977: installDir: Pitiri1977: {} launch: - /Pitiri1977.exe: + "/Pitiri1977.exe": - when: - os: windows store: steam @@ -397528,7 +398637,7 @@ Pitstop Challenge: installDir: Pitstop Challenge: {} launch: - /pitstop.exe: + "/pitstop.exe": - when: - store: steam steam: @@ -397537,7 +398646,7 @@ Pivot: installDir: Pivot: {} launch: - /Pivot.exe: + "/Pivot.exe": - when: - os: windows store: steam @@ -397547,15 +398656,15 @@ Pivot Pilot: installDir: Pivot Pilot: {} launch: - /nw: + "/nw": - when: - os: linux store: steam - /nw.exe: + "/nw.exe": - when: - os: windows store: steam - /pivotpilot.app: + "/pivotpilot.app": - when: - os: mac store: steam @@ -397565,7 +398674,7 @@ Pivot Puzzles: installDir: PivotPuzzles: {} launch: - /PivotPuzzles.exe: + "/PivotPuzzles.exe": - when: - os: windows store: steam @@ -397575,21 +398684,24 @@ Pivot XL: installDir: Pivot XL: {} launch: - /PivotXL.app: + "/PivotXL.app": - when: - os: mac store: steam - /PivotXL.exe: + "/PivotXL.exe": - when: - bit: 32 os: windows store: steam - /PivotXL.x86: + - bit: 64 + os: windows + store: steam + "/PivotXL.x86": - when: - bit: 32 os: linux store: steam - /PivotXL.x86_64: + "/PivotXL.x86_64": - when: - bit: 64 os: linux @@ -397600,21 +398712,21 @@ Pivross: installDir: Pivross: {} launch: - /Pivross.app/Contents/MacOS/Pivross: + "/Pivross.app/Contents/MacOS/Pivross": - when: - os: mac store: steam - /Pivross.x86: + "/Pivross.x86": - when: - bit: 32 os: linux store: steam - /Pivross.x86_64: + "/Pivross.x86_64": - when: - bit: 64 os: linux store: steam - /pivross.exe: + "/pivross.exe": - when: - os: windows store: steam @@ -397624,15 +398736,15 @@ Pivvot: installDir: Pivvot: {} launch: - /Pivvot.app: + "/Pivvot.app": - when: - os: mac store: steam - /Pivvot.exe: + "/Pivvot.exe": - when: - os: windows store: steam - /Pivvot.x86: + "/Pivvot.x86": - when: - os: linux store: steam @@ -397642,7 +398754,7 @@ Piwall: installDir: Piwall: {} launch: - /Piwall.exe: + "/Piwall.exe": - when: - bit: 64 os: windows @@ -397653,15 +398765,15 @@ Pix: installDir: Pix: {} launch: - /Pix.app: + "/Pix.app": - when: - os: mac store: steam - /Pix.exe: + "/Pix.exe": - when: - os: windows store: steam - /Pix.x86: + "/Pix.x86": - when: - os: linux store: steam @@ -397671,7 +398783,7 @@ Pix Tower: installDir: PixTower: {} launch: - /PixTower.exe: + "/PixTower.exe": - when: - os: windows store: steam @@ -397679,17 +398791,17 @@ Pix Tower: id: 1012720 Pix the Cat: files: - /SaveData/: + "/SaveData/": tags: - save when: - os: windows - /config: + "/config": tags: - config when: - os: windows - /userdata//330180/remote: + "/userdata//330180/remote": tags: - save when: @@ -397697,16 +398809,16 @@ Pix the Cat: installDir: Pix the Cat: {} launch: - /PixTheCat.app: + "/PixTheCat.app": - when: - bit: 64 os: mac store: steam - /PixTheCat.exe: + "/PixTheCat.exe": - when: - os: windows store: steam - /PixtheCat: + "/PixtheCat": - when: - os: linux store: steam @@ -397714,17 +398826,17 @@ Pix the Cat: id: 330180 PixARK: files: - /ShooterGame/Saved/Config: + "/ShooterGame/Saved/Config": tags: - config when: - os: windows - /ShooterGame/Saved/CubeSingles: + "/ShooterGame/Saved/CubeSingles": tags: - save when: - os: windows - /ShooterGame/Saved/SavedArks: + "/ShooterGame/Saved/SavedArks": tags: - save when: @@ -397732,12 +398844,12 @@ PixARK: installDir: PixARK: {} launch: - /ShooterGame/Binaries/Win64/PixARK.exe: + "/ShooterGame/Binaries/Win64/PixARK.exe": - when: - bit: 64 os: windows store: steam - workingDir: /ShooterGame/Binaries/Win64 + workingDir: "/ShooterGame/Binaries/Win64" steam: id: 593600 PixBit: @@ -397747,7 +398859,7 @@ PixHunter: installDir: PixHunter: {} launch: - /PixHunter.exe: + "/PixHunter.exe": - when: - store: steam steam: @@ -397756,11 +398868,11 @@ PixNautiCraft: installDir: PixNautiCraft: {} launch: - /PixNautiCraft.app: + "/PixNautiCraft.app": - when: - os: mac store: steam - /PixNautiCraft.exe: + "/PixNautiCraft.exe": - when: - os: windows store: steam @@ -397773,11 +398885,11 @@ Pixamal Zoo: installDir: Pixamal Zoo: {} launch: - /Pixamal Zoo.app: + "/Pixamal Zoo.app": - when: - os: mac store: steam - /Pixamal Zoo.exe: + "/Pixamal Zoo.exe": - when: - os: windows store: steam @@ -397792,7 +398904,7 @@ Pixel Art Hentai Trap Hot Spring: installDir: Hentai Trap Hot Spring: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -397802,7 +398914,7 @@ Pixel Art Monster - Color by Number: installDir: Pixel Art Monster - Color by Number: {} launch: - /Pixel Art Monster - Color by Number.exe: + "/Pixel Art Monster - Color by Number.exe": - when: - os: windows store: steam @@ -397812,7 +398924,7 @@ Pixel Battle Royale: installDir: Pixel Battle Royale: {} launch: - /PixelBattleRoyale.exe: + "/PixelBattleRoyale.exe": - when: - os: windows store: steam @@ -397822,7 +398934,7 @@ Pixel Beef Battle: installDir: Pixel Beef Battle: {} launch: - /Pixel Beef Battle.exe: + "/Pixel Beef Battle.exe": - when: - os: windows store: steam @@ -397840,15 +398952,15 @@ Pixel Boy and the Ever Expanding Dungeon: installDir: Pixel Boy: {} launch: - /Pixel Boy.app: + "/Pixel Boy.app": - when: - os: mac store: steam - /Pixel Boy.exe: + "/Pixel Boy.exe": - when: - os: windows store: steam - /Pixel Boy.x86: + "/Pixel Boy.x86": - when: - os: linux store: steam @@ -397858,7 +398970,7 @@ Pixel Car: installDir: Pixel Car: {} launch: - /PixelCar.exe: + "/PixelCar.exe": - when: - os: windows store: steam @@ -397868,11 +398980,11 @@ Pixel Caveman: installDir: Pixel Caveman: {} launch: - /PixelCaveman.app/Contents/MacOS/PixelCaveman: + "/PixelCaveman.app/Contents/MacOS/PixelCaveman": - when: - os: mac store: steam - /PixelCaveman/Pixel Caveman.exe: + "/PixelCaveman/Pixel Caveman.exe": - when: - os: windows store: steam @@ -397882,33 +398994,33 @@ Pixel Cup Soccer 17: installDir: PixelCupSoccer17: {} launch: - /PixelCupSoccer17.app/Contents/MacOS/PixelCupSoccer17: + "/PixelCupSoccer17.app/Contents/MacOS/PixelCupSoccer17": - when: - os: mac store: steam - /pixelcupsoccer17: + "/pixelcupsoccer17": - when: - os: linux store: steam - /pixelcupsoccer17.exe: + "/pixelcupsoccer17.exe": - when: - os: windows store: steam steam: id: 492340 -'Pixel Cup Soccer: Ultimate Edition': +"Pixel Cup Soccer: Ultimate Edition": installDir: Pixel Cup Soccer - Ultimate Edition: {} launch: - /Pixel Cup Soccer Ultimate Edition.exe: + "/Pixel Cup Soccer Ultimate Edition.exe": - when: - os: windows store: steam - /pixelcupsoccer.app//Contents//MacOS//Pixel Cup Soccer Ultimate Edition: + "/pixelcupsoccer.app//Contents//MacOS//Pixel Cup Soccer Ultimate Edition": - when: - os: mac store: steam - /pixelcupsoccer.x86_64: + "/pixelcupsoccer.x86_64": - when: - os: linux store: steam @@ -397921,7 +399033,7 @@ Pixel Devil and the Broken Cartridge: installDir: Pixel Devil and the Broken Cartridge: {} launch: - /Pixel Devil and the Broken Cartridge.exe: + "/Pixel Devil and the Broken Cartridge.exe": - when: - os: windows store: steam @@ -397934,7 +399046,7 @@ Pixel Drift: installDir: PD: {} launch: - /gonki.exe: + "/gonki.exe": - when: - os: windows store: steam @@ -397942,27 +399054,27 @@ Pixel Drift: id: 770350 Pixel Dungeon: files: - /.watabou/pixel-dungeon: + "/.watabou/pixel-dungeon": tags: - save when: - os: linux - /.watabou/pixel-dungeon/pd-prefs: + "/.watabou/pixel-dungeon/pd-prefs": tags: - config when: - os: linux - /Library/Application Support/Pixel Dungeon: + "/Library/Application Support/Pixel Dungeon": tags: - save when: - os: mac - /Library/Application Support/Pixel Dungeon/pd-prefs: + "/Library/Application Support/Pixel Dungeon/pd-prefs": tags: - config when: - os: mac - /Saved Games/pd-prefs: + "/Saved Games/pd-prefs": tags: - config when: @@ -397970,15 +399082,15 @@ Pixel Dungeon: installDir: Pixel Dungeon: {} launch: - /PD: + "/PD": - when: - os: linux store: steam - /PD.app: + "/PD.app": - when: - os: mac store: steam - /PD.exe: + "/PD.exe": - when: - os: windows store: steam @@ -397991,7 +399103,7 @@ Pixel Fish: installDir: Pixel Fish: {} launch: - /pixelfish.exe: + "/pixelfish.exe": - when: - os: windows store: steam @@ -398001,20 +399113,20 @@ Pixel Fishies: installDir: Pixel Fishies: {} launch: - /pixel_fishies.app: + "/pixel_fishies.app": - when: - os: mac store: steam - /pixel_fishies.exe: + "/pixel_fishies.exe": - when: - os: windows store: steam - /pixel_fishies.x86: + "/pixel_fishies.x86": - when: - bit: 32 os: linux store: steam - /pixel_fishies.x86_64: + "/pixel_fishies.x86_64": - when: - bit: 64 os: linux @@ -398025,11 +399137,11 @@ Pixel Fodder: installDir: Pixel Fodder: {} launch: - /Pixel Fodder.app/Contents/MacOS/Main: + "/Pixel Fodder.app/Contents/MacOS/Main": - when: - os: mac store: steam - /Pixel Fodder.exe: + "/Pixel Fodder.exe": - when: - os: windows store: steam @@ -398042,11 +399154,11 @@ Pixel Galaxy: installDir: Pixel Galaxy: {} launch: - /PixelGalaxy.app: + "/PixelGalaxy.app": - when: - os: mac store: steam - /PixelGalaxy.exe: + "/PixelGalaxy.exe": - when: - os: windows store: steam @@ -398061,7 +399173,7 @@ Pixel Girl 像素女孩: installDir: Pixel Girl: {} launch: - /PixelGirl.exe: + "/PixelGirl.exe": - when: - store: steam steam: @@ -398070,7 +399182,7 @@ Pixel Gladiator: installDir: Pixel Gladiator: {} launch: - /bild20.exe: + "/bild20.exe": - when: - os: windows store: steam @@ -398080,19 +399192,19 @@ Pixel Happy Game Girls: installDir: Pixel Happy Game Girls: {} launch: - /Pixel-Happy-Game-Girls-32.exe: + "/Pixel-Happy-Game-Girls-32.exe": - when: - bit: 32 store: steam - /Pixel-Happy-Game-Girls.app: + "/Pixel-Happy-Game-Girls.app": - when: - os: mac store: steam - /Pixel-Happy-Game-Girls.exe: + "/Pixel-Happy-Game-Girls.exe": - when: - os: windows store: steam - /Pixel-Happy-Game-Girls.sh: + "/Pixel-Happy-Game-Girls.sh": - when: - os: linux store: steam @@ -398100,7 +399212,7 @@ Pixel Happy Game Girls: id: 1018640 Pixel Hentai Mosaic: files: - /Local/PixelHentaiMosaic/User Data/Default/IndexedDB: + "/Local/PixelHentaiMosaic/User Data/Default/IndexedDB": tags: - save when: @@ -398108,20 +399220,23 @@ Pixel Hentai Mosaic: installDir: Pixel Hentai Mosaic: {} launch: - /nw: + "/nw": - when: - bit: 32 os: linux store: steam - /nw.exe: + - bit: 64 + os: linux + store: steam + "/nw.exe": - when: - os: windows store: steam steam: id: 877840 -'Pixel Heroes: Byte & Magic': +"Pixel Heroes: Byte & Magic": files: - /.config/unity3d/The Bitfather/Pixel Heroes: + "/.config/unity3d/The Bitfather/Pixel Heroes": tags: - config - save @@ -398130,20 +399245,20 @@ Pixel Hentai Mosaic: installDir: Pixel Heroes: {} launch: - /Pixel Heroes - Byte and Magic.app: + "/Pixel Heroes - Byte and Magic.app": - when: - os: mac store: steam - /Pixel Heroes - Byte and Magic.exe: + "/Pixel Heroes - Byte and Magic.exe": - when: - os: windows store: steam - /Pixel Heroes - Byte and Magic.x86: + "/Pixel Heroes - Byte and Magic.x86": - when: - bit: 32 os: linux store: steam - /Pixel Heroes - Byte and Magic.x86_64: + "/Pixel Heroes - Byte and Magic.x86_64": - when: - bit: 64 os: linux @@ -398154,22 +399269,25 @@ Pixel Hunter: installDir: Pixel Hunter: {} launch: - /PixelHunter.app: + "/PixelHunter.app": - when: - bit: 64 os: mac store: steam - /PixelHunter.exe: + "/PixelHunter.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam - /PixelHunter.x86: + "/PixelHunter.x86": - when: - bit: 32 os: linux store: steam - /PixelHunter.x86_64: + "/PixelHunter.x86_64": - when: - bit: 64 os: linux @@ -398178,7 +399296,7 @@ Pixel Hunter: id: 313040 Pixel Killers - The Showdown: files: - /AGKApps/PixelKillers-TheShowdown/Media: + "/AGKApps/PixelKillers-TheShowdown/Media": tags: - config when: @@ -398186,12 +399304,12 @@ Pixel Killers - The Showdown: installDir: Pixel Killers - The Showdown: {} launch: - /Pixel Killers - The Showdown: + "/Pixel Killers - The Showdown": - when: - bit: 64 os: linux store: steam - /Pixel Killers - The Showdown.exe: + "/Pixel Killers - The Showdown.exe": - when: - os: windows store: steam @@ -398204,7 +399322,7 @@ Pixel Maze: installDir: Pixel Maze: {} launch: - /PixelMaze.exe: + "/PixelMaze.exe": - when: - os: windows store: steam @@ -398214,7 +399332,7 @@ Pixel Monsters Survival: installDir: Pixel Monsters Survival: {} launch: - /Pixel Monsters Survival.exe: + "/Pixel Monsters Survival.exe": - when: - store: steam steam: @@ -398223,15 +399341,15 @@ Pixel Noir: installDir: Pixel Noir: {} launch: - /Pixel Noir.app: + "/Pixel Noir.app": - when: - os: mac store: steam - /Pixel Noir.exe: + "/Pixel Noir.exe": - when: - os: windows store: steam - /Pixel Noir.x86: + "/Pixel Noir.x86": - when: - os: linux store: steam @@ -398241,7 +399359,7 @@ Pixel Painter: installDir: Pixel Painter: {} launch: - /Pixel Painter.exe: + "/Pixel Painter.exe": - when: - os: windows store: steam @@ -398249,13 +399367,13 @@ Pixel Painter: id: 648120 Pixel Piracy: files: - /.config/PixelPiracy: + "/.config/PixelPiracy": tags: - save when: - os: mac - os: linux - /PixelPiracy: + "/PixelPiracy": tags: - save when: @@ -398265,19 +399383,19 @@ Pixel Piracy: installDir: Pixel Piracy: {} launch: - /PixelPiracy.exe: + "/PixelPiracy.exe": - when: - os: windows store: steam - - arguments: '-force-opengl ' + - arguments: "-force-opengl " when: - os: windows store: steam - /linux.x86: + "/linux.x86": - when: - os: linux store: steam - /pixelpiracy.app: + "/pixelpiracy.app": - when: - os: mac store: steam @@ -398291,7 +399409,7 @@ Pixel Privateers: installDir: Pixel Privateers: {} launch: - /privateers.exe: + "/privateers.exe": - when: - os: windows store: steam @@ -398301,11 +399419,11 @@ Pixel Pursuit: installDir: Pixel Pursuit: {} launch: - /Pixel Pursuit.app: + "/Pixel Pursuit.app": - when: - os: mac store: steam - /PixelPursuit.exe: + "/PixelPursuit.exe": - when: - os: windows store: steam @@ -398313,7 +399431,7 @@ Pixel Pursuit: id: 659320 Pixel Puzzle Makeout League: files: - '/AppData/LocalLow/Rude Ghost, LLC/Pixel Puzzle Makeout League//SaveData.sav': + "/AppData/LocalLow/Rude Ghost, LLC/Pixel Puzzle Makeout League//SaveData.sav": tags: - save when: @@ -398321,11 +399439,11 @@ Pixel Puzzle Makeout League: installDir: Pixel Puzzle Makeout League: {} launch: - /Pixel Puzzle Makeout League.exe: + "/Pixel Puzzle Makeout League.exe": - when: - os: windows store: steam - /ppml.app: + "/ppml.app": - when: - os: mac store: steam @@ -398335,19 +399453,19 @@ Pixel Puzzle Picross: installDir: Pixel Puzzle Picross: {} launch: - /Pixel Puzzle.app/Contents/MacOS/Pixel Puzzle: + "/Pixel Puzzle.app/Contents/MacOS/Pixel Puzzle": - when: - os: mac store: steam - /PixelPuzzle.exe: + "/PixelPuzzle.exe": - when: - os: windows store: steam steam: id: 692190 -'Pixel Puzzles 2: Anime': +"Pixel Puzzles 2: Anime": files: - /Pixel_Puzzles_2___Anime/pixelpuzzlessave.ini: + "/Pixel_Puzzles_2___Anime/pixelpuzzlessave.ini": tags: - config - save @@ -398356,14 +399474,14 @@ Pixel Puzzle Picross: installDir: Pixel Puzzles 2 Anime: {} launch: - /Pixel Puzzles 2 - Anime.exe: + "/Pixel Puzzles 2 - Anime.exe": - when: - store: steam steam: id: 350810 -'Pixel Puzzles 2: Birds': +"Pixel Puzzles 2: Birds": files: - /Pixel_Puzzles_2___Birds/pixelpuzzlessave.ini: + "/Pixel_Puzzles_2___Birds/pixelpuzzlessave.ini": tags: - config - save @@ -398372,44 +399490,44 @@ Pixel Puzzle Picross: installDir: Pixel Puzzles 2 - Birds: {} launch: - /Pixel Puzzles 2 - Birds.exe: + "/Pixel Puzzles 2 - Birds.exe": - when: - store: steam steam: id: 344230 -'Pixel Puzzles 2: Christmas': +"Pixel Puzzles 2: Christmas": installDir: Pixel Puzzles 2 Christmas: {} launch: - /Pixel Puzzles 2 Christmas.exe: + "/Pixel Puzzles 2 Christmas.exe": - when: - os: windows store: steam steam: id: 490510 -'Pixel Puzzles 2: Halloween': +"Pixel Puzzles 2: Halloween": installDir: Pixel Puzzles 2 Halloween: {} launch: - /Pixel Puzzles 2 Halloween.exe: + "/Pixel Puzzles 2 Halloween.exe": - when: - os: windows store: steam steam: id: 1058210 -'Pixel Puzzles 2: Paintings': +"Pixel Puzzles 2: Paintings": installDir: Pixel Puzzles 2 Paintings: {} launch: - /Pixel Puzzles 2 Paintings.exe: + "/Pixel Puzzles 2 Paintings.exe": - when: - os: windows store: steam steam: id: 1052870 -'Pixel Puzzles 2: RADical ROACH': +"Pixel Puzzles 2: RADical ROACH": files: - /Pixel_Puzzles_2___RADical_ROACH/pixelpuzzlessave.ini: + "/Pixel_Puzzles_2___RADical_ROACH/pixelpuzzlessave.ini": tags: - config - save @@ -398418,26 +399536,26 @@ Pixel Puzzle Picross: installDir: Pixel Puzzles 2 RADical ROACH: {} launch: - /Pixel Puzzles 2 - RADical ROACH.exe: + "/Pixel Puzzles 2 - RADical ROACH.exe": - when: - store: steam steam: id: 504880 -'Pixel Puzzles 2: Space': +"Pixel Puzzles 2: Space": installDir: Pixel Puzzles 2 Space: {} launch: - /Pixel Puzzles 2 Space.exe: + "/Pixel Puzzles 2 Space.exe": - when: - os: windows store: steam steam: id: 355920 -'Pixel Puzzles 4k: Japan': +"Pixel Puzzles 4k: Japan": installDir: Pixel Puzzles 4k Japan: {} launch: - /Pixel Puzzles Japan 4K.exe: + "/Pixel Puzzles Japan 4K.exe": - when: - os: windows store: steam @@ -398447,7 +399565,7 @@ Pixel Puzzles Illustrations & Anime: installDir: Pixel Puzzles Illustrations Anime: {} launch: - /Pixel Puzzles Illustrations And Anime.exe: + "/Pixel Puzzles Illustrations And Anime.exe": - when: - os: windows store: steam @@ -398457,7 +399575,7 @@ Pixel Puzzles Junior Jigsaw: installDir: Pixel Puzzles Junior: {} launch: - /Pixel Puzzles Junior.exe: + "/Pixel Puzzles Junior.exe": - when: - os: windows store: steam @@ -398465,7 +399583,7 @@ Pixel Puzzles Junior Jigsaw: id: 455690 Pixel Puzzles Mosaics: files: - /Pixel_Puzzles_Mosaics/ppm.ini: + "/Pixel_Puzzles_Mosaics/ppm.ini": tags: - config - save @@ -398474,7 +399592,7 @@ Pixel Puzzles Mosaics: installDir: Pixel Puzzles Mosaics: {} launch: - /Pixel Puzzles Mosaics.exe: + "/Pixel Puzzles Mosaics.exe": - when: - os: windows store: steam @@ -398491,7 +399609,7 @@ Pixel Puzzles Traditional Jigsaws: installDir: Pixel Puzzles Traditional: {} launch: - /Pixel Puzzles Traditional Jigsaws.exe: + "/Pixel Puzzles Traditional Jigsaws.exe": - when: - os: windows store: steam @@ -398501,15 +399619,15 @@ Pixel Puzzles Ultimate Jigsaw: installDir: Pixel Puzzles Ultimate: {} launch: - /Pixel Puzzles Ultimate.exe: + "/Pixel Puzzles Ultimate.exe": - when: - os: windows store: steam steam: id: 351030 -'Pixel Puzzles: Japan': +"Pixel Puzzles: Japan": files: - /Pixel_Puzzles___Japan/savegame: + "/Pixel_Puzzles___Japan/savegame": tags: - save when: @@ -398517,15 +399635,15 @@ Pixel Puzzles Ultimate Jigsaw: installDir: Pixel Puzzles Japan: {} launch: - /Pixel Puzzles - Japan.exe: + "/Pixel Puzzles - Japan.exe": - when: - os: windows store: steam steam: id: 284950 -'Pixel Puzzles: UndeadZ': +"Pixel Puzzles: UndeadZ": files: - /Pixel_Puzzles___UndeadZ/*.ini: + "/Pixel_Puzzles___UndeadZ/*.ini": tags: - save when: @@ -398533,14 +399651,14 @@ Pixel Puzzles Ultimate Jigsaw: installDir: Pixel Puzzles UndeadZ: {} launch: - /Pixel Puzzles - UndeadZ.exe: + "/Pixel Puzzles - UndeadZ.exe": - when: - store: steam steam: id: 285010 Pixel Ripped 1978: files: - /AppData/LocalLow/ARVORE/PixelRipped1978: + "/AppData/LocalLow/ARVORE/PixelRipped1978": tags: - save when: @@ -398551,7 +399669,7 @@ Pixel Ripped 1978: id: 2360690 Pixel Ripped 1989: files: - /Pixel Ripped Inc/Pixel Ripped 1989: + "/Pixel Ripped Inc/Pixel Ripped 1989": tags: - save when: @@ -398569,7 +399687,7 @@ Pixel Robot Hunter: installDir: Pixel Robot Hunter: {} launch: - /Pixelrobothunter.exe: + "/Pixelrobothunter.exe": - when: - bit: 64 os: windows @@ -398580,15 +399698,15 @@ Pixel Royale: installDir: Pixel Royale: {} launch: - /Pixel Royale.app: + "/Pixel Royale.app": - when: - os: mac store: steam - /Pixel Royale.exe: + "/Pixel Royale.exe": - when: - os: windows store: steam - /Pixel Royale.x86: + "/Pixel Royale.x86": - when: - os: linux store: steam @@ -398601,7 +399719,7 @@ Pixel Sand: installDir: Pixel Sand: {} launch: - /PixelSandSteam.exe: + "/PixelSandSteam.exe": - when: - os: windows store: steam @@ -398611,7 +399729,7 @@ Pixel Sentry: installDir: Pixel Sentry: {} launch: - /Pixel Sentry.exe: + "/Pixel Sentry.exe": - when: - os: windows store: steam @@ -398624,7 +399742,7 @@ Pixel Shinobi Nine demons of Mamoru: installDir: Pixel Shinobi Nine demons of Mamoru: {} launch: - /PSNDOM.exe: + "/PSNDOM.exe": - when: - os: windows store: steam @@ -398634,7 +399752,7 @@ Pixel Ship Shooter: installDir: Pixel Ship Shooter: {} launch: - /PixelShipShooter/WindowsNoEditor/PixelShipShooter.exe: + "/PixelShipShooter/WindowsNoEditor/PixelShipShooter.exe": - when: - store: steam steam: @@ -398643,15 +399761,15 @@ Pixel Shooter: installDir: Pixel Shooter: {} launch: - /PixelShooter.app/Contents/MacOS/PixelShooter: + "/PixelShooter.app/Contents/MacOS/PixelShooter": - when: - os: mac store: steam - /PixelShooter.exe: + "/PixelShooter.exe": - when: - os: windows store: steam - /PixelShooter.x86_64: + "/PixelShooter.x86_64": - when: - os: linux store: steam @@ -398664,15 +399782,15 @@ Pixel Shopkeeper: installDir: Pixel Shopkeeper: {} launch: - /PixelShopkeeper.exe: + "/PixelShopkeeper.exe": - when: - os: windows store: steam - /PixelShopkeeper.x86: + "/PixelShopkeeper.x86": - when: - os: linux store: steam - /Shopkeeper.app/Contents/MacOS/Shopkeeper: + "/Shopkeeper.app/Contents/MacOS/Shopkeeper": - when: - os: mac store: steam @@ -398688,7 +399806,7 @@ Pixel Space Battles: installDir: Pixel Space Battles: {} launch: - /Pixel Space Battles.exe: + "/Pixel Space Battles.exe": - when: - os: windows store: steam @@ -398698,7 +399816,7 @@ Pixel Star: installDir: Pixel Star: {} launch: - /PIXELSTAR.exe: + "/PIXELSTAR.exe": - when: - os: windows store: steam @@ -398708,7 +399826,7 @@ Pixel Stories of Dungeon: installDir: Pixel Stories of Dungeon: {} launch: - /Pixel Stories of Dungeon.exe: + "/Pixel Stories of Dungeon.exe": - when: - os: windows store: steam @@ -398721,61 +399839,61 @@ Pixel Survivors: installDir: Pixel Survivors: {} launch: - /Survivors Beta.exe: + "/Survivors Beta.exe": - when: - os: windows store: steam steam: id: 342970 -'Pixel Traffic: Circle Rush': +"Pixel Traffic: Circle Rush": installDir: Pixel Traffic Circle Rush: {} launch: - /Linux/ptcr.x86: + "/Linux/ptcr.x86": - when: - os: linux store: steam - /MacOS/ptcr.app/Contents/MacOS/ptcr: + "/MacOS/ptcr.app/Contents/MacOS/ptcr": - when: - os: mac store: steam - /Windows/ptcr.exe: + "/Windows/ptcr.exe": - when: - os: windows store: steam steam: id: 696460 -'Pixel Traffic: Highway Racing': +"Pixel Traffic: Highway Racing": installDir: Pixel Traffic Highway Racing: {} launch: - /Pixel Traffic - Highway Racing.app/Contents/MacOS/Pixel Traffic - Highway Racing: + "/Pixel Traffic - Highway Racing.app/Contents/MacOS/Pixel Traffic - Highway Racing": - when: - os: mac store: steam - /Pixel Traffic - Highway Racing.exe: + "/Pixel Traffic - Highway Racing.exe": - when: - os: windows store: steam - /Pixel Traffic - Highway Racing.x86: + "/Pixel Traffic - Highway Racing.x86": - when: - os: linux store: steam steam: id: 867730 -'Pixel Traffic: Risky Bridge': +"Pixel Traffic: Risky Bridge": installDir: Pixel Traffic Risky Bridge: {} launch: - /Linux/ptrb.x86: + "/Linux/ptrb.x86": - when: - os: linux store: steam - /MacOS/ptrb.app/Contents/MacOS/ptrb: + "/MacOS/ptrb.app/Contents/MacOS/ptrb": - when: - os: mac store: steam - /Windows/ptrb.exe: + "/Windows/ptrb.exe": - when: - os: windows store: steam @@ -398788,7 +399906,7 @@ Pixel World: installDir: Pixel World: {} launch: - /PixelWorld.exe: + "/PixelWorld.exe": - when: - os: windows store: steam @@ -398798,11 +399916,11 @@ Pixel Worlds: installDir: Pixel Worlds: {} launch: - /PixelWorlds.app: + "/PixelWorlds.app": - when: - os: mac store: steam - /PixelWorlds.exe: + "/PixelWorlds.exe": - when: - os: windows store: steam @@ -398812,7 +399930,7 @@ Pixel Xiuzhen: installDir: Pixel Xiuzhen: {} launch: - /Pixel Xiuzhen.exe: + "/Pixel Xiuzhen.exe": - when: - store: steam steam: @@ -398824,11 +399942,11 @@ Pixel Zumbi: installDir: PIXEL ZUMBI: {} launch: - /nw: + "/nw": - when: - os: linux store: steam - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -398838,25 +399956,25 @@ Pixel to the West: installDir: Pixel To The West: {} launch: - /PixelToTheWest.exe: + "/PixelToTheWest.exe": - when: - os: windows store: steam steam: id: 697160 -'Pixel-Warfare: Pro': +"Pixel-Warfare: Pro": installDir: PixelWarfarePro: {} launch: - /PixelWarfarePro.exe: + "/PixelWarfarePro.exe": - when: - os: windows store: steam steam: id: 530240 -'Pixel: ru²': +"Pixel: ru²": files: - /C63 Industries/Pixel/Settings.xml: + "/C63 Industries/Pixel/Settings.xml": tags: - config when: @@ -398864,7 +399982,7 @@ Pixel to the West: installDir: Pixel: {} launch: - /pixel.exe: + "/pixel.exe": - when: - os: windows store: steam @@ -398874,15 +399992,15 @@ PixelBOT EXTREME!: installDir: pixelBOT EXTREME!: {} launch: - /pixelBOT EXTREME!.app/Contents/MacOS/pixelBOT EXTREME!: + "/pixelBOT EXTREME!.app/Contents/MacOS/pixelBOT EXTREME!": - when: - os: mac store: steam - /pixelBOT EXTREME!.exe: + "/pixelBOT EXTREME!.exe": - when: - os: windows store: steam - /pixelBOT EXTREME!.x86_64: + "/pixelBOT EXTREME!.x86_64": - when: - os: linux store: steam @@ -398895,7 +400013,7 @@ PixelCraft VR: id: 787950 PixelJunk Eden: files: - /userdata//105800: + "/userdata//105800": tags: - save when: @@ -398903,14 +400021,14 @@ PixelJunk Eden: installDir: pixeljunkeden: {} launch: - /eden.exe: + "/eden.exe": - when: - store: steam steam: id: 105800 PixelJunk Monsters 2: files: - /AppData/LocalLow/Q Games Ltd/PixelJunk™ Monsters 2/monsters.sav: + "/AppData/LocalLow/Q Games Ltd/PixelJunk™ Monsters 2/monsters.sav": tags: - save when: @@ -398918,7 +400036,7 @@ PixelJunk Monsters 2: installDir: PixelJunk™ Monsters 2: {} launch: - /PixeljunkMonsters2.exe: + "/PixeljunkMonsters2.exe": - when: - bit: 64 os: windows @@ -398927,21 +400045,21 @@ PixelJunk Monsters 2: id: 749800 PixelJunk Monsters Ultimate: files: - /Config.xml: + "/Config.xml": tags: - config when: - os: windows - os: mac - os: linux - /savegame: + "/savegame": tags: - save when: - os: windows - os: mac - os: linux - /userdata//243780: + "/userdata//243780": tags: - save when: @@ -398951,15 +400069,15 @@ PixelJunk Monsters Ultimate: installDir: Monsters: {} launch: - /Monsters.app: + "/Monsters.app": - when: - os: mac store: steam - /Monsters.exe: + "/Monsters.exe": - when: - os: windows store: steam - /Monsters.sh: + "/Monsters.sh": - when: - os: linux store: steam @@ -398967,12 +400085,12 @@ PixelJunk Monsters Ultimate: id: 243780 PixelJunk Nom Nom Galaxy: files: - /settings.dat: + "/settings.dat": tags: - config when: - os: windows - /NomNomGalaxy: + "/NomNomGalaxy": tags: - save when: @@ -398980,31 +400098,31 @@ PixelJunk Nom Nom Galaxy: installDir: NomNomGalaxy: {} launch: - /NomNomGalaxy.exe: + "/NomNomGalaxy.exe": - when: - store: steam steam: id: 226100 PixelJunk Shooter: files: - /Documents/PJShooter: + "/Documents/PJShooter": tags: - config - save when: - os: mac - /userdata//255870: + "/userdata//255870": tags: - save when: - store: steam - /PJShooter: + "/PJShooter": tags: - config - save when: - os: windows - /PJShooter: + "/PJShooter": tags: - config - save @@ -399015,15 +400133,15 @@ PixelJunk Shooter: installDir: Shooter: {} launch: - /CaveShooter.app: + "/CaveShooter.app": - when: - os: mac store: steam - /CaveShooter.exe: + "/CaveShooter.exe": - when: - os: windows store: steam - /Shooter.sh: + "/Shooter.sh": - when: - os: linux store: steam @@ -399031,12 +400149,12 @@ PixelJunk Shooter: id: 255870 PixelJunk Shooter Ultimate: files: - /userdata//332330/remote: + "/userdata//332330/remote": tags: - save when: - store: steam - /PJShooterUltimate: + "/PJShooterUltimate": tags: - config - save @@ -399045,7 +400163,7 @@ PixelJunk Shooter Ultimate: installDir: ShooterUltimate: {} launch: - /ShooterUltimate.exe: + "/ShooterUltimate.exe": - when: - os: windows store: steam @@ -399055,7 +400173,7 @@ PixelRPG: installDir: PixelRPG: {} launch: - /PixelRPG.exe: + "/PixelRPG.exe": - when: - os: windows store: steam @@ -399065,7 +400183,7 @@ Pixelarium: installDir: Pixelarium: {} launch: - /Pixelarium.exe: + "/Pixelarium.exe": - when: - os: windows store: steam @@ -399078,7 +400196,7 @@ Pixelfence: installDir: Pixelfence: {} launch: - /Pixelfence.exe: + "/Pixelfence.exe": - when: - store: steam steam: @@ -399087,7 +400205,7 @@ Pixelman: installDir: PIXELMAN: {} launch: - /Pixelman.exe: + "/Pixelman.exe": - when: - os: windows store: steam @@ -399097,7 +400215,7 @@ Pixeloids: installDir: Pixeloids: {} launch: - /Pixeloids.exe: + "/Pixeloids.exe": - when: - bit: 64 os: windows @@ -399108,7 +400226,7 @@ Pixelord: installDir: Pixelord: {} launch: - /pixelord.exe: + "/pixelord.exe": - when: - os: windows store: steam @@ -399118,7 +400236,7 @@ Pixelpunk XL: installDir: Pixelpunk XL: {} launch: - /PLAY.exe: + "/PLAY.exe": - when: - os: windows store: steam @@ -399128,7 +400246,7 @@ Pixels Guide to Staying Dead: installDir: Pixels Guide to Staying Dead: {} launch: - /Pixels Guide to Staying Dead.exe: + "/Pixels Guide to Staying Dead.exe": - when: - os: windows store: steam @@ -399138,17 +400256,17 @@ Pixels can fight: installDir: Pixels can fight: {} launch: - /Pixels can fight.exe: + "/Pixels can fight.exe": - when: - os: windows store: steam steam: id: 1153100 -'Pixelscape: Oceans': +"Pixelscape: Oceans": installDir: Pixelscape Oceans: {} launch: - /Pixelscape_Oceans.exe: + "/Pixelscape_Oceans.exe": - when: - os: windows store: steam @@ -399158,7 +400276,7 @@ Pixelum: installDir: Pixelum: {} launch: - /Pixelum.exe: + "/Pixelum.exe": - when: - bit: 64 os: windows @@ -399169,7 +400287,7 @@ Pixie Panic Garden: installDir: Pixie Panic Garden: {} launch: - /PixiePanicGarden.exe: + "/PixiePanicGarden.exe": - when: - os: windows store: steam @@ -399182,16 +400300,16 @@ Pixling World: installDir: Derk: {} launch: - /Derk.app/Contents/MacOS/Derk: + "/Derk.app/Contents/MacOS/Derk": - when: - os: mac store: steam - /Derk.exe: - - arguments: '--in-process-gpu' + "/Derk.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam - /derk: + "/derk": - when: - bit: 32 os: linux @@ -399203,7 +400321,7 @@ PixoCities: id: 1104630 Pixplode: files: - /Saves: + "/Saves": tags: - save when: @@ -399211,11 +400329,11 @@ Pixplode: installDir: Pixplode: {} launch: - /Pixplode.app: + "/Pixplode.app": - when: - os: mac store: steam - /Pixplode.exe: + "/Pixplode.exe": - when: - os: windows store: steam @@ -399227,7 +400345,7 @@ Pixplode: id: 631770 Pixross: files: - /AppData/LocalLow/Kenney/Pixross/Pixross.save: + "/AppData/LocalLow/Kenney/Pixross/Pixross.save": tags: - config - save @@ -399236,11 +400354,11 @@ Pixross: installDir: Pixross: {} launch: - /Pixross.exe: + "/Pixross.exe": - when: - os: windows store: steam - /Pixross.x86_64: + "/Pixross.x86_64": - when: - os: linux store: steam @@ -399251,32 +400369,32 @@ Pixvault: id: 1043730 Pizza Connection 3: files: - /AppData/LocalLow/gentlymad/Pizza Connection 3/UserData: + "/AppData/LocalLow/gentlymad/Pizza Connection 3/UserData": tags: - config when: - os: windows - /AppData/LocalLow/gentlymad/Pizza Connection 3/UserData/Savegames: + "/AppData/LocalLow/gentlymad/Pizza Connection 3/UserData/Savegames": tags: - save when: - os: windows - /com.gentlymad.pizzaconnection3/UserData: + "/com.gentlymad.pizzaconnection3/UserData": tags: - config when: - os: mac - /com.gentlymad.pizzaconnection3/UserData/Savegames: + "/com.gentlymad.pizzaconnection3/UserData/Savegames": tags: - save when: - os: mac - /unity3d/gentlymad/Pizza Connection 3/UserData: + "/unity3d/gentlymad/Pizza Connection 3/UserData": tags: - config when: - os: linux - /unity3d/gentlymad/Pizza Connection 3/UserData/Savegames: + "/unity3d/gentlymad/Pizza Connection 3/UserData/Savegames": tags: - save when: @@ -399285,24 +400403,24 @@ Pizza Connection 3: id: 1421993477 id: gogExtra: - - 1838508915 - 1377044054 + - 1838508915 steamExtra: - 682710 installDir: Pizza Connection 3: {} launch: - /Pizza Connection 3: + "/Pizza Connection 3": - when: - bit: 64 os: linux store: steam - /Pizza Connection 3.app: + "/Pizza Connection 3.app": - when: - bit: 64 os: mac store: steam - /Pizza Connection 3.exe: + "/Pizza Connection 3.exe": - when: - bit: 64 os: windows @@ -399314,12 +400432,12 @@ Pizza Connection 3 - Pizza Creator: id: 851330 Pizza Express: files: - /Profiles/: + "/Profiles/": tags: - save when: - os: windows - /Profiles//Settings/settings.ini: + "/Profiles//Settings/settings.ini": tags: - config when: @@ -399327,7 +400445,7 @@ Pizza Express: installDir: PizzaExpress: {} launch: - /PizzaExpress.exe: + "/PizzaExpress.exe": - when: - os: windows store: steam @@ -399337,7 +400455,7 @@ Pizza Frenzy: installDir: Pizza Frenzy: {} launch: - /PizzaFrenzy.exe: + "/PizzaFrenzy.exe": - when: - store: steam registry: @@ -399349,14 +400467,14 @@ Pizza Frenzy: id: 3430 Pizza Game: files: - /game/saves: + "/game/saves": tags: - save when: - os: windows - os: mac - os: linux - /renpy/config.py: + "/renpy/config.py": tags: - config when: @@ -399366,15 +400484,15 @@ Pizza Game: installDir: PizzA Gameg: {} launch: - /game.app: + "/game.app": - when: - os: mac store: steam - /game.exe: + "/game.exe": - when: - os: windows store: steam - /game.sh: + "/game.sh": - when: - os: linux store: steam @@ -399384,11 +400502,11 @@ Pizza Hunt! How to hunt pizza (And Not Die Doing It): installDir: Pizza Hunt ANDDI: {} launch: - /pizzahunt.app/Contents/MacOS/love: + "/pizzahunt.app/Contents/MacOS/love": - when: - os: mac store: steam - /pizzahunt.exe: + "/pizzahunt.exe": - when: - os: windows store: steam @@ -399398,11 +400516,11 @@ Pizza Possum: installDir: Pizza Possum: {} launch: - /PizzaPossum.app: + "/PizzaPossum.app": - when: - os: mac store: steam - /PizzaPossum.exe: + "/PizzaPossum.exe": - when: - os: windows store: steam @@ -399415,7 +400533,7 @@ Pizza Time Explosion: id: 1198600 Pizza Titan Ultra: files: - /AppData/LocalLow/Breakfall/Pizza Titan Ultra/GameSaves: + "/AppData/LocalLow/Breakfall/Pizza Titan Ultra/GameSaves": tags: - save when: @@ -399423,14 +400541,14 @@ Pizza Titan Ultra: installDir: Pizza Titan Ultra: {} launch: - /Pizza Titan Ultra.exe: + "/Pizza Titan Ultra.exe": - when: - store: steam steam: id: 819480 Pizza Tower: files: - /PizzaTower_GM2: + "/PizzaTower_GM2": tags: - config - save @@ -399439,19 +400557,19 @@ Pizza Tower: installDir: Pizza Tower: {} launch: - /PizzaTower.exe: + "/PizzaTower.exe": - when: - store: steam steam: id: 2231450 Pizza Tycoon: files: - /game: + "/game": tags: - save when: - os: dos - /sound.cfg: + "/sound.cfg": tags: - config when: @@ -399461,15 +400579,15 @@ Pizza Tycoon: installDir: Pizza Connection: {} launch: - /Pizza Tycoon.app: + "/Pizza Tycoon.app": - when: - os: mac store: steam - /run.bat: + "/run.bat": - when: - os: windows store: steam - /start.sh: + "/start.sh": - when: - os: linux store: steam @@ -399479,7 +400597,7 @@ Pizzarian: installDir: Pizzarian: {} launch: - /Pizzarian.exe: + "/Pizzarian.exe": - when: - os: windows store: steam @@ -399499,11 +400617,11 @@ Pla toon: installDir: pla_toon: {} launch: - /pla_toon.app: + "/pla_toon.app": - when: - os: mac store: steam - /pla_toon.exe: + "/pla_toon.exe": - when: - os: windows store: steam @@ -399513,7 +400631,7 @@ Placebo Effect: installDir: PlaceboEffect: {} launch: - /pe-game.exe: + "/pe-game.exe": - when: - os: windows store: steam @@ -399523,15 +400641,15 @@ Placement: installDir: Placement: {} launch: - /Placement: + "/Placement": - when: - os: linux store: steam - /Placement.app: + "/Placement.app": - when: - os: mac store: steam - /Placement.exe: + "/Placement.exe": - when: - os: windows store: steam @@ -399540,20 +400658,20 @@ Placement: Plague Hunter: steam: id: 746530 -'Plague Inc: Evolved': +"Plague Inc: Evolved": files: - /Profile/Games-Gen/Saves: + "/Profile/Games-Gen/Saves": tags: - save when: - os: windows - /.local/share/Ndemic Creations/Plague Inc. Evolved/Saves: + "/.local/share/Ndemic Creations/Plague Inc. Evolved/Saves": tags: - save when: - os: mac - os: linux - /userdata//246620/remote: + "/userdata//246620/remote": tags: - save when: @@ -399567,20 +400685,20 @@ Plague Hunter: installDir: PlagueInc: {} launch: - /PlagueIncEvolved.app: + "/PlagueIncEvolved.app": - when: - os: mac store: steam - /PlagueIncEvolved.exe: + "/PlagueIncEvolved.exe": - when: - os: windows store: steam - /PlagueIncEvolved.x86: + "/PlagueIncEvolved.x86": - when: - os: linux store: steam registry: - 'HKEY_CURRENT_USER/Software/Ndemic Creations/Plague Inc: Evolved': + "HKEY_CURRENT_USER/Software/Ndemic Creations/Plague Inc: Evolved": tags: - config steam: @@ -399589,12 +400707,12 @@ Plague Road: installDir: Plague Road: {} launch: - /PlagueRoad.app/Contents/MacOS/PlagueRoad: + "/PlagueRoad.app/Contents/MacOS/PlagueRoad": - when: - os: mac store: steam - workingDir: /PlagueRoad.app/Contents/MacOS - /PlagueRoad.exe: + workingDir: "/PlagueRoad.app/Contents/MacOS" + "/PlagueRoad.exe": - when: - os: windows store: steam @@ -399604,7 +400722,7 @@ Plague of Days: installDir: Plague of Days: {} launch: - /pod.exe: + "/pod.exe": - when: - os: windows store: steam @@ -399614,7 +400732,7 @@ Plaguepunk Justice: installDir: Plaguepunk Justice: {} launch: - /PlaguepunkJustice.exe: + "/PlaguepunkJustice.exe": - when: - os: windows store: steam @@ -399624,7 +400742,7 @@ Plagueworld: installDir: Plagueworld: {} launch: - /Launcher.exe: + "/Launcher.exe": - when: - os: windows store: steam @@ -399632,7 +400750,7 @@ Plagueworld: id: 1067200 Plain Sight: files: - /Content/UserSettings.bin: + "/Content/UserSettings.bin": tags: - config when: @@ -399640,14 +400758,14 @@ Plain Sight: installDir: Plain Sight: {} launch: - /PlainSight.exe: + "/PlainSight.exe": - when: - store: steam steam: id: 49900 -'Plan B: Terraform': +"Plan B: Terraform": files: - /AppData/LocalLow/Gaddy Games/Plan B Terraform//Saves: + "/AppData/LocalLow/Gaddy Games/Plan B Terraform//Saves": tags: - save when: @@ -399655,7 +400773,7 @@ Plain Sight: installDir: Plan B Terraform: {} launch: - /Plan B Terraform.exe: + "/Plan B Terraform.exe": - when: - store: steam steam: @@ -399664,7 +400782,7 @@ Plan Z Chapter 1: installDir: Plan Z Chapter 1: {} launch: - /Plan Z.exe: + "/Plan Z.exe": - when: - os: windows store: steam @@ -399679,7 +400797,7 @@ PlanZ: installDir: PlanZ: {} launch: - /PlanZ.exe: + "/PlanZ.exe": - when: - os: windows store: steam @@ -399689,20 +400807,20 @@ Planar Conquest: installDir: PlanarConquest: {} launch: - /PlanarConquest.app: + "/PlanarConquest.app": - when: - os: mac store: steam - /PlanarConquest.exe: + "/PlanarConquest.exe": - when: - os: windows store: steam - /PlanarConquest.x86: + "/PlanarConquest.x86": - when: - bit: 32 os: linux store: steam - /PlanarConquest.x86_64: + "/PlanarConquest.x86_64": - when: - bit: 64 os: linux @@ -399713,17 +400831,17 @@ Planaris 2+: installDir: Planaris 2+: {} launch: - /Planaris 2+.exe: + "/Planaris 2+.exe": - when: - os: windows store: steam steam: id: 1102080 -'Plancon: Space Conflict': +"Plancon: Space Conflict": installDir: PlanCon: {} launch: - /PlanCon.exe: + "/PlanCon.exe": - when: - os: windows store: steam @@ -399737,7 +400855,7 @@ Plandzz 2: id: 749570 Plane Mechanic Simulator: files: - /AppData/LocalLow/Movie Games/Plane Mechanic Simulator: + "/AppData/LocalLow/Movie Games/Plane Mechanic Simulator": tags: - config - save @@ -399748,7 +400866,7 @@ Plane Mechanic Simulator: installDir: Plane Mechanic Simulator: {} launch: - /PMS_Build.exe: + "/PMS_Build.exe": - when: - store: steam registry: @@ -399767,67 +400885,67 @@ Planes Attack: installDir: PLANES ATTACK: {} launch: - /PLANES ATTACK.app/Contents/MacOS/PLANES ATTACK: + "/PLANES ATTACK.app/Contents/MacOS/PLANES ATTACK": - when: - os: mac store: steam - /PLANES ATTACK.exe: + "/PLANES ATTACK.exe": - when: - os: windows store: steam - /PLANES ATTACK.x86_64: + "/PLANES ATTACK.x86_64": - when: - os: linux store: steam steam: id: 1053000 -'Planes, Bullets and Vodka': +"Planes, Bullets and Vodka": installDir: - 'Planes, Bullets and Vodka': {} + "Planes, Bullets and Vodka": {} launch: - '/Planes, Bullets and Vodka.exe': + "/Planes, Bullets and Vodka.exe": - when: - os: windows store: steam steam: id: 562360 -'Planescape: Torment': +"Planescape: Torment": files: - /save: + "/save": tags: - save when: - os: windows gog: id: 1207658887 -'Planescape: Torment Enhanced Edition': +"Planescape: Torment Enhanced Edition": files: - /.local/share/Planescape Torment - Enhanced Edition/Baldur.lua: + "/.local/share/Planescape Torment - Enhanced Edition/Baldur.lua": tags: - config when: - os: linux - /.local/share/Planescape Torment - Enhanced Edition/save: + "/.local/share/Planescape Torment - Enhanced Edition/save": tags: - save when: - os: linux - /Documents/Planescape Torment - Enhanced Edition/save: + "/Documents/Planescape Torment - Enhanced Edition/save": tags: - save when: - os: mac - /userdata//466300/remote: + "/userdata//466300/remote": tags: - save when: - store: steam - /Planescape Torment - Enhanced Edition/Baldur.lua: + "/Planescape Torment - Enhanced Edition/Baldur.lua": tags: - config when: - os: windows - /Planescape Torment - Enhanced Edition/save: + "/Planescape Torment - Enhanced Edition/save": tags: - save when: @@ -399836,22 +400954,22 @@ Planes Attack: id: 1203613131 id: gogExtra: - - 2139878448 - 1132393016 + - 2139878448 steamExtra: - 613230 installDir: Project P: {} launch: - /Planescape Torment - Enhanced Edition.app: + "/Planescape Torment - Enhanced Edition.app": - when: - os: mac store: steam - /Torment: + "/Torment": - when: - os: linux store: steam - /Torment.exe: + "/Torment.exe": - when: - os: windows store: steam @@ -399861,7 +400979,7 @@ Planet 1138: installDir: Planet 1138: {} launch: - /Planet 1138.exe: + "/Planet 1138.exe": - when: - os: windows store: steam @@ -399871,16 +400989,10 @@ Planet 2117: steam: id: 658750 Planet Alcatraz: - files: - /Planet Alcatraz/Save*//Planet Alcatraz/Autosave: - tags: - - save - when: - - os: windows installDir: PlanetAlcatraz: {} launch: - /Erasers.exe: + "/Erasers.exe": - when: - os: windows store: steam @@ -399894,28 +401006,28 @@ Planet Alcatraz 2: installDir: PlanetAlcatraz2: {} launch: - /GameSetup.exe: + "/GameSetup.exe": - when: - os: windows store: steam - /SP2.exe: + "/SP2.exe": - when: - store: steam steam: id: 389250 Planet Alpha: files: - /PlanetAlpha/Saved/Config/WindowsNoEditor: + "/PlanetAlpha/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /PlanetAlpha/Saved/SaveGames: + "/PlanetAlpha/Saved/SaveGames": tags: - save when: - os: windows - /PlanetAlpha/Saved/SaveGames/SavedSettings.sav: + "/PlanetAlpha/Saved/SaveGames/SavedSettings.sav": tags: - config when: @@ -399925,7 +401037,7 @@ Planet Alpha: installDir: PLANET ALPHA: {} launch: - /PlanetAlpha.exe: + "/PlanetAlpha.exe": - when: - os: windows store: steam @@ -399935,7 +401047,7 @@ Planet Ancyra Chronicles: installDir: PlanetAncyraChronicles: {} launch: - /Binaries/Win32/UDK.exe: + "/Binaries/Win32/UDK.exe": - when: - os: windows store: steam @@ -399945,7 +401057,7 @@ Planet Assault: installDir: Planet Assault: {} launch: - /Planet Assault.exe: + "/Planet Assault.exe": - when: - os: windows store: steam @@ -399955,11 +401067,11 @@ Planet Automata: installDir: Planet Automata: {} launch: - /Planet Automata.app: + "/Planet Automata.app": - when: - os: mac store: steam - /Planet Automata.exe: + "/Planet Automata.exe": - when: - bit: 64 os: windows @@ -399970,7 +401082,7 @@ Planet Bash: installDir: Planet Bash: {} launch: - /Planet Bash.exe: + "/Planet Bash.exe": - when: - os: windows store: steam @@ -399980,7 +401092,7 @@ Planet Bounce: installDir: Planet Bounce: {} launch: - /Planet Bounce.exe: + "/Planet Bounce.exe": - when: - os: windows store: steam @@ -399990,14 +401102,14 @@ Planet Busters: installDir: Planet Busters: {} launch: - /planet.exe: + "/planet.exe": - when: - store: steam steam: id: 15800 Planet Centauri: files: - /Planet Centauri: + "/Planet Centauri": tags: - save when: @@ -400005,17 +401117,17 @@ Planet Centauri: installDir: Planet Centauri: {} launch: - /Launcher: + "/Launcher": - when: - bit: 64 os: mac store: steam - /PlanetCentauri: + "/PlanetCentauri": - when: - bit: 64 os: linux store: steam - /PlanetCentauri.exe: + "/PlanetCentauri.exe": - when: - os: windows store: steam @@ -400023,17 +401135,17 @@ Planet Centauri: id: 385380 Planet Coaster: files: - /Saved Games/Frontier Developments/Planet Coaster//Config: + "/Saved Games/Frontier Developments/Planet Coaster//Config": tags: - config when: - os: windows - /Saved Games/Frontier Developments/Planet Coaster//Saves: + "/Saved Games/Frontier Developments/Planet Coaster//Saves": tags: - save when: - os: windows - /Frontier Developments/Planet Coaster: + "/Frontier Developments/Planet Coaster": tags: - config when: @@ -400041,11 +401153,11 @@ Planet Coaster: installDir: Planet Coaster: {} launch: - /Planet Coaster.app: + "/Planet Coaster.app": - when: - os: mac store: steam - /PlanetCoaster.exe: + "/PlanetCoaster.exe": - when: - bit: 64 os: windows @@ -400056,7 +401168,7 @@ Planet Colonization: installDir: Planet Colonization: {} launch: - /PlanetColonization.exe: + "/PlanetColonization.exe": - when: - bit: 64 os: windows @@ -400072,7 +401184,7 @@ Planet Destroyer: installDir: Planet destroyer: {} launch: - /PLANET DESTROYER.exe: + "/PLANET DESTROYER.exe": - when: - store: steam steam: @@ -400081,26 +401193,26 @@ Planet Diver: installDir: Planet Diver: {} launch: - /content-linux/PlanetDiver.x86: + "/content-linux/PlanetDiver.x86": - when: - bit: 32 os: linux store: steam - /content-linux/PlanetDiver.x86_64: + "/content-linux/PlanetDiver.x86_64": - when: - bit: 64 os: linux store: steam - /content-mac/PlanetDiver.app/Contents/MacOS/PlanetDiver: + "/content-mac/PlanetDiver.app/Contents/MacOS/PlanetDiver": - when: - os: mac store: steam - /content-windows/PlanetDiver32/PlanetDiver.exe: + "/content-windows/PlanetDiver32/PlanetDiver.exe": - when: - bit: 32 os: windows store: steam - /content-windows/PlanetDiver64/PlanetDiver.exe: + "/content-windows/PlanetDiver64/PlanetDiver.exe": - when: - bit: 64 os: windows @@ -400116,7 +401228,7 @@ Planet Driller: installDir: PlanetDriller: {} launch: - /PlanetDriller.exe: + "/PlanetDriller.exe": - when: - os: windows store: steam @@ -400124,27 +401236,27 @@ Planet Driller: id: 492170 Planet Explorers: files: - /OptionConfig.xml: + "/OptionConfig.xml": tags: - config when: - os: windows - /PlanetExplorers/Config: + "/PlanetExplorers/Config": tags: - config when: - os: linux - /PlanetExplorers/SaveData: + "/PlanetExplorers/SaveData": tags: - save when: - os: linux - /PlanetExplorers/SaveData: + "/PlanetExplorers/SaveData": tags: - save when: - os: windows - /unity3d/Pathea Games/Planet Explorers: + "/unity3d/Pathea Games/Planet Explorers": tags: - config when: @@ -400152,15 +401264,15 @@ Planet Explorers: installDir: Planet Explorers: {} launch: - /PE_Launcher: + "/PE_Launcher": - when: - os: linux store: steam - /PE_Launcher.app/Contents/MacOS/Planet Explorers: + "/PE_Launcher.app/Contents/MacOS/Planet Explorers": - when: - os: mac store: steam - /PE_Launcher.exe: + "/PE_Launcher.exe": - when: - os: windows store: steam @@ -400175,7 +401287,7 @@ Planet Invasion: installDir: Planet Invasion: {} launch: - /Planet Invasion.exe: + "/Planet Invasion.exe": - when: - os: windows store: steam @@ -400185,7 +401297,7 @@ Planet Jump 2: installDir: Planet Jump 2: {} launch: - /Planet Jump 2.exe: + "/Planet Jump 2.exe": - when: - os: windows store: steam @@ -400195,11 +401307,11 @@ Planet Lander: installDir: Planet Lander: {} launch: - /Planet Lander.exe: + "/Planet Lander.exe": - when: - os: windows store: steam - /Planet Lander.x86_64: + "/Planet Lander.x86_64": - when: - os: linux store: steam @@ -400209,7 +401321,7 @@ Planet Modular TD. Sci-Fi Tower Defense: installDir: Planet Modular TD: {} launch: - /Planet Modular TD.exe: + "/Planet Modular TD.exe": - when: - os: windows store: steam @@ -400219,7 +401331,7 @@ Planet Nine: installDir: Planet Nine: {} launch: - /Planet nine.exe: + "/Planet nine.exe": - when: - os: windows store: steam @@ -400227,24 +401339,24 @@ Planet Nine: id: 996860 Planet Nomads: files: - /.config/unity3d/Craneballs/PlanetNomads: + "/.config/unity3d/Craneballs/PlanetNomads": tags: - config - save when: - os: linux - /AppData/LocalLow/Craneballs/PlanetNomads: + "/AppData/LocalLow/Craneballs/PlanetNomads": tags: - config - save when: - os: windows - /Library/Application Support/unity.Craneballs.PlanetNomads: + "/Library/Application Support/unity.Craneballs.PlanetNomads": tags: - config when: - os: mac - /Library/Application Support/unity.Craneballs.PlanetNomads/Saves: + "/Library/Application Support/unity.Craneballs.PlanetNomads/Saves": tags: - save when: @@ -400254,17 +401366,17 @@ Planet Nomads: installDir: Planet Nomads: {} launch: - /PlanetNomads.app/Contents/MacOS/PlanetNomads: + "/PlanetNomads.app/Contents/MacOS/PlanetNomads": - when: - bit: 64 os: mac store: steam - /PlanetNomads.exe: + "/PlanetNomads.exe": - when: - bit: 64 os: windows store: steam - /PlanetNomads.x86_64: + "/PlanetNomads.x86_64": - when: - bit: 64 os: linux @@ -400280,11 +401392,11 @@ Planet R-12: installDir: Planet_R_12: {} launch: - /Planet R-12: + "/Planet R-12": - when: - os: linux store: steam - /Planet R-12.exe: + "/Planet R-12.exe": - when: - os: windows store: steam @@ -400294,7 +401406,7 @@ Planet RIX-13: installDir: Planet Rix-13: {} launch: - /RIX13.exe: + "/RIX13.exe": - when: - os: windows store: steam @@ -400304,7 +401416,7 @@ Planet Reserve: installDir: PLANET RESERVE v2: {} launch: - /PLANER RESERVE v2.exe: + "/PLANER RESERVE v2.exe": - when: - os: windows store: steam @@ -400312,7 +401424,7 @@ Planet Reserve: id: 867460 Planet S: files: - /saves: + "/saves": tags: - save when: @@ -400320,7 +401432,7 @@ Planet S: installDir: Planet S: {} launch: - /PlanS.exe: + "/PlanS.exe": - when: - bit: 64 os: windows @@ -400331,8 +401443,8 @@ Planet Smasher: installDir: Planet Smasher: {} launch: - /PlanetSmasher.exe: - - arguments: '-monitor' + "/PlanetSmasher.exe": + - arguments: "-monitor" when: - os: windows store: steam @@ -400340,34 +401452,34 @@ Planet Smasher: id: 523060 Planet Stronghold: files: - /game/saves/*.save: + "/game/saves/*.save": tags: - save when: - os: windows - os: mac - /game/saves/persistent: + "/game/saves/persistent": tags: - config when: - os: windows - os: mac - /Library/RenPy/Planet_Stronghold_1.5/*.save: + "/Library/RenPy/Planet_Stronghold_1.5/*.save": tags: - save when: - os: mac - /Library/RenPy/Planet_Stronghold_1.5/persistent: + "/Library/RenPy/Planet_Stronghold_1.5/persistent": tags: - config when: - os: mac - /RenPy/Planet_Stronghold_1.5/*.save: + "/RenPy/Planet_Stronghold_1.5/*.save": tags: - save when: - os: windows - /RenPy/Planet_Stronghold_1.5/persistent: + "/RenPy/Planet_Stronghold_1.5/persistent": tags: - config when: @@ -400375,15 +401487,15 @@ Planet Stronghold: installDir: PlanetStronghold: {} launch: - /Planet Stronghold.app: + "/Planet Stronghold.app": - when: - os: mac store: steam - /Planet Stronghold.exe: + "/Planet Stronghold.exe": - when: - os: windows store: steam - /Planet Stronghold.sh: + "/Planet Stronghold.sh": - when: - os: linux store: steam @@ -400393,29 +401505,29 @@ Planet Stronghold 2: installDir: Planet Stronghold 2: {} launch: - /PlanetStronghold2.exe: + "/PlanetStronghold2.exe": - when: - os: windows store: steam - /PlanetStronghold2.sh: + "/PlanetStronghold2.sh": - when: - os: linux store: steam steam: id: 857200 -'Planet Stronghold: Colonial Defense': +"Planet Stronghold: Colonial Defense": installDir: Planet Stronghold Colonial Defense: {} launch: - /PSCD.app: + "/PSCD.app": - when: - os: mac store: steam - /PSCD.exe: + "/PSCD.exe": - when: - os: windows store: steam - /PSCD.sh: + "/PSCD.sh": - when: - os: linux store: steam @@ -400425,7 +401537,7 @@ Planet TD: installDir: Planet TD: {} launch: - /Planet TD.exe: + "/Planet TD.exe": - when: - store: steam steam: @@ -400434,7 +401546,7 @@ Planet Unknown Runner: installDir: Planet Unknown Runner: {} launch: - /Planet Unknown Runner.exe: + "/Planet Unknown Runner.exe": - when: - bit: 64 os: windows @@ -400451,12 +401563,12 @@ Planet X3: installDir: Planet X3: {} launch: - /Windows/dosbox.exe: - - arguments: '-noconsole -conf px3.conf' + "/Windows/dosbox.exe": + - arguments: "-noconsole -conf px3.conf" when: - os: windows store: steam - /px3.command: + "/px3.command": - when: - os: mac store: steam @@ -400464,17 +401576,17 @@ Planet X3: id: 2479230 Planet Zoo: files: - /Saved Games/Frontier Developments/Planet Zoo//Config: + "/Saved Games/Frontier Developments/Planet Zoo//Config": tags: - config when: - os: windows - /Saved Games/Frontier Developments/Planet Zoo//Saves: + "/Saved Games/Frontier Developments/Planet Zoo//Saves": tags: - save when: - os: windows - /Frontier Developments/Planet Zoo: + "/Frontier Developments/Planet Zoo": tags: - config when: @@ -400499,7 +401611,7 @@ Planet Zoo: installDir: Planet Zoo: {} launch: - /PlanetZoo.exe: + "/PlanetZoo.exe": - when: - bit: 64 os: windows @@ -400510,7 +401622,7 @@ Planet in the Shadows: installDir: Planet in the shadows: {} launch: - /Prog.exe: + "/Prog.exe": - when: - os: windows store: steam @@ -400518,12 +401630,12 @@ Planet in the Shadows: id: 448820 Planet of Lana: files: - /AppData/LocalLow/Wishfully/Planet of Lana: + "/AppData/LocalLow/Wishfully/Planet of Lana": tags: - save when: - os: windows - /Packages/Thunderful.PlanetofLana_8j53pwgd019sy/SystemAppData/wgs/: + "/Packages/Thunderful.PlanetofLana_8j53pwgd019sy/SystemAppData/wgs/": tags: - save when: @@ -400537,7 +401649,7 @@ Planet of Lana: installDir: Planet of Lana: {} launch: - /Planet of Lana.exe: + "/Planet of Lana.exe": - when: - store: steam steam: @@ -400545,9 +401657,9 @@ Planet of Lana: Planet of Mubu: steam: id: 602170 -'Planet of the Apes: Last Frontier': +"Planet of the Apes: Last Frontier": files: - /Engine/Config: + "/Engine/Config": tags: - config when: @@ -400558,7 +401670,7 @@ Planet of Mubu: id: 789910 Planet of the Eyes: files: - /AppData/LocalLow/Cococucumber/Planet of the Eyes: + "/AppData/LocalLow/Cococucumber/Planet of the Eyes": tags: - save when: @@ -400566,11 +401678,11 @@ Planet of the Eyes: installDir: Planet of the Eyes: {} launch: - /PlanetOfTheEyes.app: + "/PlanetOfTheEyes.app": - when: - os: mac store: steam - /PlanetOfTheEyes.exe: + "/PlanetOfTheEyes.exe": - when: - os: windows store: steam @@ -400580,11 +401692,11 @@ Planet of the Eyes: - config steam: id: 350970 -'Planet''s Edge: The Point of No Return': +"Planet's Edge: The Point of No Return": gog: id: 1499658106 installDir: - Planet's Edge: {} + "Planet's Edge": {} steam: id: 1367170 PlanetFate: @@ -400594,12 +401706,12 @@ PlanetFate: id: 485110 PlanetSide 2: files: - /InputProfile_User.xml: + "/InputProfile_User.xml": tags: - config when: - os: windows - /UserOptions.ini: + "/UserOptions.ini": tags: - config when: @@ -400607,10 +401719,8 @@ PlanetSide 2: installDir: PlanetSide 2: {} launch: - /LaunchPad.exe: - - arguments: >- - Updates:enable=0 Updates:PatchSelf=1 campaignID=1063272 promoID=146 launchPoint=steam - launchArgs=STEAM_ENABLED=1 + "/LaunchPad.exe": + - arguments: "Updates:enable=0 Updates:PatchSelf=1 campaignID=1063272 promoID=146 launchPoint=steam launchArgs=STEAM_ENABLED=1" when: - store: steam steam: @@ -400619,7 +401729,7 @@ PlanetSide Arena: installDir: Planetside Arena: {} launch: - /PSA_BE.exe: + "/PSA_BE.exe": - arguments: Inifile=ClientConfig.ini STEAM_ENABLED=1 UseSteamLogin=1 when: - bit: 64 @@ -400629,7 +401739,7 @@ PlanetSide Arena: id: 987350 Planetarian HD: files: - /savedata_en: + "/savedata_en": tags: - config - save @@ -400638,20 +401748,20 @@ Planetarian HD: installDir: planetarian HD: {} launch: - /SiglusEngine_Steam.exe: + "/SiglusEngine_Steam.exe": - when: - os: windows store: steam steam: id: 623080 -'Planetarian: The Reverie of a Little Planet': +"Planetarian: The Reverie of a Little Planet": files: - /Gameexe.ini: + "/Gameexe.ini": tags: - config when: - os: windows - /SAVEDATA: + "/SAVEDATA": tags: - save when: @@ -400659,7 +401769,7 @@ Planetarian HD: installDir: planetarian ~the reverie of a little planet~: {} launch: - /RealLiveMaxEx.exe: + "/RealLiveMaxEx.exe": - when: - os: windows store: steam @@ -400669,7 +401779,7 @@ Planetarium 2 - Zen Odyssey: installDir: Planetarium 2 - Zen Odyssey: {} launch: - /Planetarium 2.exe: + "/Planetarium 2.exe": - when: - os: windows store: steam @@ -400677,17 +401787,17 @@ Planetarium 2 - Zen Odyssey: id: 765320 Planetary Annihilation: files: - /.local/Uber Entertainment: + "/.local/Uber Entertainment": tags: - config when: - os: linux - /Uber Entertainment/Planetary Annihilation: + "/Uber Entertainment/Planetary Annihilation": tags: - save when: - os: windows - /Uber Entertainment/Planetary Annihilation/localstore/Local Storage/coui_ui_0.localstorage: + "/Uber Entertainment/Planetary Annihilation/localstore/Local Storage/coui_ui_0.localstorage": tags: - config when: @@ -400695,46 +401805,46 @@ Planetary Annihilation: installDir: Planetary Annihilation: {} launch: - /PA: - - arguments: '--mods-url https://mods.planetaryannihilation.net/' + "/PA": + - arguments: "--mods-url https://mods.planetaryannihilation.net/" when: - bit: 64 os: linux store: steam - /PA.app: - - arguments: '--mods-url https://mods.planetaryannihilation.net/' + "/PA.app": + - arguments: "--mods-url https://mods.planetaryannihilation.net/" when: - os: mac store: steam - /bin_x64/pa.exe: - - arguments: '--mods-url https://mods.planetaryannihilation.net/' + "/bin_x64/pa.exe": + - arguments: "--mods-url https://mods.planetaryannihilation.net/" when: - bit: 64 os: windows store: steam - /bin_x86/pa.exe: - - arguments: '--mods-url https://mods.planetaryannihilation.net/' + "/bin_x86/pa.exe": + - arguments: "--mods-url https://mods.planetaryannihilation.net/" when: - bit: 32 os: windows store: steam steam: id: 233250 -'Planetary Annihilation: Titans': +"Planetary Annihilation: Titans": files: - /.local/Uber Entertainment/Planetary Annihilation: + "/.local/Uber Entertainment/Planetary Annihilation": tags: - config - save when: - os: linux - /Library/Application Support/Uber Entertainment/Planetary Annihilation: + "/Library/Application Support/Uber Entertainment/Planetary Annihilation": tags: - config - save when: - os: mac - /Uber Entertainment/Planetary Annihilation: + "/Uber Entertainment/Planetary Annihilation": tags: - config - save @@ -400743,25 +401853,25 @@ Planetary Annihilation: installDir: Planetary Annihilation Titans: {} launch: - /PA: - - arguments: '--steam --mods-url https://mods.planetaryannihilation.net/' + "/PA": + - arguments: "--steam --mods-url https://mods.planetaryannihilation.net/" when: - bit: 64 os: linux store: steam - /PA.app: - - arguments: '--steam --mods-url https://mods.planetaryannihilation.net/' + "/PA.app": + - arguments: "--steam --mods-url https://mods.planetaryannihilation.net/" when: - os: mac store: steam - /bin_x64/pa.exe: - - arguments: '--steam --mods-url https://mods.planetaryannihilation.net/' + "/bin_x64/pa.exe": + - arguments: "--steam --mods-url https://mods.planetaryannihilation.net/" when: - bit: 64 os: windows store: steam - /bin_x86/pa.exe: - - arguments: '--steam --mods-url https://mods.planetaryannihilation.net/' + "/bin_x86/pa.exe": + - arguments: "--steam --mods-url https://mods.planetaryannihilation.net/" when: - bit: 32 os: windows @@ -400770,12 +401880,12 @@ Planetary Annihilation: id: 386070 Planetary Dustoff: files: - /Planetary Dustoff: + "/Planetary Dustoff": tags: - config when: - os: windows - /Planetary Dustoff/Save: + "/Planetary Dustoff/Save": tags: - save when: @@ -400785,11 +401895,11 @@ Planetary Dustoff: installDir: Planetary Dustoff: {} launch: - /Planetary Dustoff.app/Contents/MacOS/Planetary Dustoff: + "/Planetary Dustoff.app/Contents/MacOS/Planetary Dustoff": - when: - os: mac store: steam - /Planetary Dustoff.exe: + "/Planetary Dustoff.exe": - when: - os: windows store: steam @@ -400799,7 +401909,7 @@ Planetary Settlers: installDir: Planetary Settlers: {} launch: - /PlanetarySettlers.exe: + "/PlanetarySettlers.exe": - when: - bit: 64 os: windows @@ -400808,32 +401918,32 @@ Planetary Settlers: id: 857860 Planetbase: files: - /Documents/Planetbase/Profile: + "/Documents/Planetbase/Profile": tags: - config when: - os: mac - /Documents/Planetbase/Saves: + "/Documents/Planetbase/Saves": tags: - save when: - os: mac - /Documents/Planetbase/Settings: + "/Documents/Planetbase/Settings": tags: - config when: - os: mac - /Planetbase/Profile: + "/Planetbase/Profile": tags: - config when: - os: windows - /Planetbase/Saves: + "/Planetbase/Saves": tags: - save when: - os: windows - /Planetbase/Settings: + "/Planetbase/Settings": tags: - config when: @@ -400843,11 +401953,11 @@ Planetbase: installDir: Planetbase: {} launch: - /Planetbase.app/Contents/MacOS/Planetbase: + "/Planetbase.app/Contents/MacOS/Planetbase": - when: - os: mac store: steam - /Planetbase.exe: + "/Planetbase.exe": - when: - os: windows store: steam @@ -400857,7 +401967,7 @@ Planetbound: installDir: Planetbound: {} launch: - /PlanetBound.exe: + "/PlanetBound.exe": - when: - os: windows store: steam @@ -400867,15 +401977,15 @@ Planetes: installDir: Planetes: {} launch: - /Planetes.exe: + "/Planetes.exe": - when: - os: windows store: steam - /Planetes_Linux.x86: + "/Planetes_Linux.x86": - when: - os: linux store: steam - /Planetes_Mac.app: + "/Planetes_Mac.app": - when: - os: mac store: steam @@ -400883,7 +401993,7 @@ Planetes: id: 610210 Planetfall: files: - /SAVE: + "/SAVE": tags: - save when: @@ -400893,7 +402003,7 @@ Planetfall: installDir: Zork Anthology: {} launch: - /SierraLauncher.exe: + "/SierraLauncher.exe": - when: - store: steam steam: @@ -400902,7 +402012,7 @@ Planetoid: installDir: Planetoid: {} launch: - /planetoid.exe: + "/planetoid.exe": - when: - os: windows store: steam @@ -400912,17 +402022,17 @@ Planetoid Pioneers: installDir: Planetoid Pioneers: {} launch: - /C2D.app: + "/C2D.app": - when: - os: mac store: steam - /Crush2D.exe: - - arguments: \"Planetoid Pioneers.c2d\" + "/Crush2D.exe": + - arguments: "\\\"Planetoid Pioneers.c2d\\\"" when: - bit: 64 os: windows store: steam - /planetoidpioneers.sh: + "/planetoidpioneers.sh": - when: - os: linux store: steam @@ -400932,7 +402042,7 @@ Planetoid Pioneers Online: installDir: Planetoid Pioneers Online: {} launch: - /Crush2D.exe: + "/Crush2D.exe": - when: - bit: 64 os: windows @@ -400943,11 +402053,11 @@ Planets Under Attack: installDir: planets under attack: {} launch: - /PlanetsUnderAttack.app: + "/PlanetsUnderAttack.app": - when: - os: mac store: steam - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -400957,7 +402067,7 @@ Planets of War: installDir: PLANETS OF WAR: {} launch: - /Planets_Of_War.exe: + "/Planets_Of_War.exe": - when: - os: windows store: steam @@ -400967,19 +402077,19 @@ Planetship: installDir: Planetship: {} launch: - /planetship.app: + "/planetship.app": - when: - os: mac store: steam - /planetship.exe: + "/planetship.exe": - when: - os: windows store: steam - /planetship.x86: + "/planetship.x86": - when: - os: linux store: steam - /planetship.x86_64: + "/planetship.x86_64": - when: - os: linux store: steam @@ -400994,7 +402104,7 @@ PlanktOs: installDir: planktOs: {} launch: - /Planktos/Binaries/Win32/Planktos.exe: + "/Planktos/Binaries/Win32/Planktos.exe": - when: - os: windows store: steam @@ -401004,12 +402114,12 @@ Plankton: installDir: Plankton: {} launch: - /Plankton.app/Contents/MacOS/plankton: + "/Plankton.app/Contents/MacOS/plankton": - when: - os: mac store: steam - /game.exe: - - arguments: '-windowed' + "/game.exe": + - arguments: "-windowed" when: - os: windows store: steam @@ -401027,7 +402137,7 @@ Plant Fire Department - The Simulation: installDir: Plant Fire Department - The Simulation: {} launch: - /PlantFireDepartment-TheSimulation.exe: + "/PlantFireDepartment-TheSimulation.exe": - when: - os: windows store: steam @@ -401038,7 +402148,7 @@ Plant This: id: 682660 Plant Tycoon: files: - /Idw.ini: + "/Idw.ini": tags: - config when: @@ -401046,14 +402156,14 @@ Plant Tycoon: installDir: Plant Tycoon: {} launch: - /plant tycoon.exe: + "/plant tycoon.exe": - when: - store: steam steam: id: 16120 Plantera: files: - /xsrs/xsrs.ini: + "/xsrs/xsrs.ini": tags: - config - save @@ -401062,17 +402172,17 @@ Plantera: installDir: Plantera: {} launch: - /Plantera.exe: + "/Plantera.exe": - when: - os: windows store: steam steam: id: 421040 -'Plantera 2: Golden Acorn': +"Plantera 2: Golden Acorn": installDir: Plantera 2 Golden Acorn: {} launch: - /Plantera2.exe: + "/Plantera2.exe": - when: - store: steam steam: @@ -401081,7 +402191,7 @@ Plants: installDir: Plants: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -401089,31 +402199,32 @@ Plants: id: 855730 Plants vs. Zombies: files: - /Library/Application Support/PopCap/PlantsVsZombiesMac/userdata: + "/Library/Application Support/PopCap/PlantsVsZombiesMac/userdata": tags: - save when: - os: mac - /userdata//3590/remote: + "/userdata//3590/remote": tags: - save when: - store: steam - /PopCap Games/PlantsVsZombies/userdata: + "/PopCap Games/PlantsVsZombies/userdata": tags: - save when: - os: windows - - store: origin + - os: windows + store: origin installDir: Plants Vs Zombies: {} launch: - /Plants vs. Zombies.app: + "/Plants vs. Zombies.app": - when: - os: mac store: steam - /PlantsVsZombies.exe: - - arguments: ' ' + "/PlantsVsZombies.exe": + - arguments: " " when: - os: windows store: steam @@ -401123,9 +402234,9 @@ Plants vs. Zombies: - config steam: id: 3590 -'Plants vs. Zombies: Battle for Neighborville': +"Plants vs. Zombies: Battle for Neighborville": files: - /PVZ Battle for Neighborville/settings: + "/PVZ Battle for Neighborville/settings": tags: - config - save @@ -401135,22 +402246,22 @@ Plants vs. Zombies: PVZ Battle for Neighborville: {} steam: id: 1262240 -'Plants vs. Zombies: Garden Warfare': +"Plants vs. Zombies: Garden Warfare": files: - /PVZ Garden Warfare/settings: + "/PVZ Garden Warfare/settings": tags: - config - save when: - os: windows -'Plants vs. Zombies: Garden Warfare 2': +"Plants vs. Zombies: Garden Warfare 2": files: - /Plants vs Zombies GW2: + "/Plants vs Zombies GW2": tags: - save when: - os: windows - /Plants vs Zombies GW2/settings: + "/Plants vs Zombies GW2/settings": tags: - config when: @@ -401163,7 +402274,7 @@ Planum: installDir: Planum: {} launch: - /Planum.exe: + "/Planum.exe": - when: - store: steam steam: @@ -401172,7 +402283,7 @@ Plasma Puncher: installDir: Plasma Puncher: {} launch: - /Plasma puncher.exe: + "/Plasma puncher.exe": - when: - os: windows store: steam @@ -401186,7 +402297,7 @@ Plasmoid: installDir: Plasmoid: {} launch: - /plasmoid.exe: + "/plasmoid.exe": - when: - os: windows store: steam @@ -401199,7 +402310,7 @@ Plastic Playground: installDir: Plastic Playground: {} launch: - /PlasticPlayground.exe: + "/PlasticPlayground.exe": - when: - bit: 64 os: windows @@ -401210,7 +402321,7 @@ Plastic Rebellion: installDir: Plastic Rebellion: {} launch: - /Plastic.exe: + "/Plastic.exe": - when: - bit: 64 os: windows @@ -401221,7 +402332,7 @@ Plastic soldiers: installDir: Plastic Soldiers: {} launch: - /Plastic_Soldiers: + "/Plastic_Soldiers": - when: - bit: 64 os: windows @@ -401232,7 +402343,7 @@ Plasticity: installDir: Plasticity: {} launch: - /Plasticity_Release_v1_00.exe: + "/Plasticity_Release_v1_00.exe": - when: - os: windows store: steam @@ -401242,7 +402353,7 @@ Plastiland: installDir: Plastiland: {} launch: - /plastiland.exe: + "/plastiland.exe": - when: - os: windows store: steam @@ -401252,7 +402363,7 @@ Plat4mer: installDir: Plat4mer: {} launch: - /plat4mer.exe: + "/plat4mer.exe": - when: - os: windows store: steam @@ -401262,7 +402373,7 @@ PlatBall: installDir: PlatBall: {} launch: - /PlatBall.exe: + "/PlatBall.exe": - when: - os: windows store: steam @@ -401272,7 +402383,7 @@ PlatONIR: installDir: PlatONIR: {} launch: - /PlatONI.exe: + "/PlatONI.exe": - when: - os: windows store: steam @@ -401282,11 +402393,11 @@ PlataGO! Super Platform Game Maker: installDir: PlataGO!: {} launch: - /PlataGO.exe: + "/PlataGO.exe": - when: - os: windows store: steam - /PlataGO.x86_64: + "/PlataGO.x86_64": - when: - os: linux store: steam @@ -401294,7 +402405,7 @@ PlataGO! Super Platform Game Maker: id: 732400 PlateUp!: files: - /AppData/LocalLow/It's Happening/PlateUp: + "/AppData/LocalLow/It's Happening/PlateUp": tags: - save when: @@ -401302,8 +402413,8 @@ PlateUp!: installDir: PlateUp: {} launch: - /PlateUp/PlateUp.exe: - - arguments: '-appid 1599600' + "/PlateUp/PlateUp.exe": + - arguments: "-appid 1599600" when: - store: steam steam: @@ -401312,16 +402423,16 @@ Plates: installDir: Plates: {} launch: - /plates.app: + "/plates.app": - when: - bit: 64 os: mac store: steam - /plates.exe: + "/plates.exe": - when: - os: windows store: steam - /plates.x86: + "/plates.x86": - when: - os: linux store: steam @@ -401331,7 +402442,7 @@ Platfinity: installDir: Platfinity: {} launch: - /Platfinity.exe: + "/Platfinity.exe": - when: - os: windows store: steam @@ -401341,7 +402452,7 @@ Platform Builder: installDir: Platform Builder: {} launch: - /Platform Builder.exe: + "/Platform Builder.exe": - when: - os: windows store: steam @@ -401351,7 +402462,7 @@ Platform Challenge: installDir: Platform Challenge: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -401361,12 +402472,12 @@ Platform Golf: installDir: PlatformGolf: {} launch: - /PlatformGolf: + "/PlatformGolf": - when: - bit: 64 os: linux store: steam - /PlatformGolf.exe: + "/PlatformGolf.exe": - when: - bit: 64 os: windows @@ -401377,21 +402488,10 @@ Platformica: steam: id: 485700 Platformines: - files: - /IsolatedStorage/*.*/*.*/Url.wklul0wzovqx0euncwnlz03ugfwbcxvh/Url.kdd3jubftr5cqmx5s3zymnltky5xtn2f/Files/T/T*: - tags: - - save - when: - - os: windows - /IsolatedStorage/*.*/*.*/Url.wklul0wzovqx0euncwnlz03ugfwbcxvh/Url.kdd3jubftr5cqmx5s3zymnltky5xtn2f/Files/T/THProgression.dat: - tags: - - config - when: - - os: windows installDir: Platformines: {} launch: - /platformines.exe: + "/platformines.exe": - when: - store: steam steam: @@ -401400,22 +402500,22 @@ Platforms: installDir: Platforms: {} launch: - /Platforms: + "/Platforms": - when: - bit: 64 os: linux store: steam - /Platforms.exe: + "/Platforms.exe": - when: - os: windows store: steam steam: id: 1132640 -'Plati Nalog: Favorite Russian Game': +"Plati Nalog: Favorite Russian Game": installDir: PLATI NALOG Favorite Russian Game: {} launch: - /nalog.exe: + "/nalog.exe": - when: - store: steam steam: @@ -401431,7 +402531,7 @@ Platro: id: 527550 Platypus: files: - /config.dat: + "/config.dat": tags: - config when: @@ -401439,14 +402539,14 @@ Platypus: installDir: Platypus: {} launch: - /platypus.exe: + "/platypus.exe": - when: - store: steam steam: id: 307340 Platypus II: files: - /config.dat: + "/config.dat": tags: - config when: @@ -401454,7 +402554,7 @@ Platypus II: installDir: Platypus II: {} launch: - /PlatypusII.exe: + "/PlatypusII.exe": - when: - store: steam steam: @@ -401463,7 +402563,7 @@ Play Cubes with Uncle Billy: installDir: Play Cube with Uncle Billy: {} launch: - /Play Cube with Uncle Billy.exe: + "/Play Cube with Uncle Billy.exe": - when: - os: windows store: steam @@ -401473,7 +402573,7 @@ Play Room 0g: installDir: Play Room 0g: {} launch: - /PlayRoom0gBuild.exe: + "/PlayRoom0gBuild.exe": - when: - bit: 64 os: windows @@ -401484,7 +402584,7 @@ Play Top Frag: installDir: Play Top Frag: {} launch: - /PlayTopFrag.exe: + "/PlayTopFrag.exe": - when: - store: steam steam: @@ -401493,8 +402593,8 @@ Play With Kizami: installDir: Play With Kizami: {} launch: - /game.exe: - - arguments: '-fontcharset=DEFAULT_CHARSET' + "/game.exe": + - arguments: "-fontcharset=DEFAULT_CHARSET" when: - os: windows store: steam @@ -401509,7 +402609,7 @@ Play with Gilbert: installDir: Play With Gilbert: {} launch: - /PlayWithGilbert.exe: + "/PlayWithGilbert.exe": - when: - bit: 64 os: windows @@ -401520,15 +402620,15 @@ Play with Me: installDir: PLAY WITH ME: {} launch: - /pwm: + "/pwm": - when: - os: linux store: steam - /pwm.app: + "/pwm.app": - when: - os: mac store: steam - /pwm.exe: + "/pwm.exe": - when: - os: windows store: steam @@ -401538,16 +402638,16 @@ Play with NEKO: installDir: Play with NEKO: {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: id: 1181130 Play337 Catch Chicken: installDir: - '755040': {} + "755040": {} launch: - /windows_content/Game_boxed.exe: + "/windows_content/Game_boxed.exe": - when: - os: windows store: steam @@ -401556,11 +402656,11 @@ Play337 Catch Chicken: PlayBound: steam: id: 1181800 -'PlayForm: Human Dynamics': +"PlayForm: Human Dynamics": installDir: PlayForm: {} launch: - /PlayForm.exe: + "/PlayForm.exe": - when: - bit: 64 os: windows @@ -401571,27 +402671,27 @@ PlayFortress: installDir: PlayFortress: {} launch: - /Game/PlayFortress.exe: + "/Game/PlayFortress.exe": - when: - os: windows store: steam - workingDir: /Game + workingDir: "/Game" steam: id: 459880 PlayUSA: installDir: PlayUSA: {} launch: - /PlayUSA.exe: + "/PlayUSA.exe": - when: - bit: 64 os: windows store: steam steam: id: 724110 -'Playboy: The Mansion': +"Playboy: The Mansion": files: - /data/PC/Saved Games: + "/data/PC/Saved Games": tags: - save when: @@ -401600,7 +402700,7 @@ Playcraft: installDir: PLAYCRAFT: {} launch: - /WindowsNoEditor/Playcraft.exe: + "/WindowsNoEditor/Playcraft.exe": - when: - store: steam steam: @@ -401609,7 +402709,7 @@ Player Goes Jump: installDir: PlayerGoesJump: {} launch: - /PlayerGoesJump.exe: + "/PlayerGoesJump.exe": - when: - os: windows store: steam @@ -401619,24 +402719,24 @@ Player One: installDir: Player One: {} launch: - /PlayerOne: + "/PlayerOne": - when: - bit: 64 os: windows store: steam steam: id: 1160190 -'Playerunkn1wn: Friendly Fire': +"Playerunkn1wn: Friendly Fire": steam: id: 759700 -'Playerunkn4wn: Zombie': +"Playerunkn4wn: Zombie": steam: id: 737750 -Playerunknown's Battleboxes: +"Playerunknown's Battleboxes": installDir: - PLAYERUNKNOWN'S BATTLEBOXES: {} + "PLAYERUNKNOWN'S BATTLEBOXES": {} launch: - /PUBB.exe: + "/PUBB.exe": - when: - os: windows store: steam @@ -401646,7 +402746,7 @@ Playground Battle World: installDir: Die pig die Battle Royale: {} launch: - /dpd.exe: + "/dpd.exe": - when: - store: steam steam: @@ -401658,64 +402758,64 @@ Playing Both Sides: installDir: PBS: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam steam: id: 1142090 -'Playing History: Slave Trade': +"Playing History: Slave Trade": installDir: PH2 - Slave Trade: {} launch: - /Slave Trade.app: + "/Slave Trade.app": - when: - os: mac store: steam - /Slave Trade.exe: + "/Slave Trade.exe": - when: - os: windows store: steam steam: id: 386870 -'Playing History: The Plague': +"Playing History: The Plague": installDir: PH1 - The Plague: {} launch: - /PH1Plague.app: + "/PH1Plague.app": - when: - os: mac store: steam - /PH1Plague.exe: + "/PH1Plague.exe": - when: - os: windows store: steam steam: id: 395920 -'Playing History: Vikings': +"Playing History: Vikings": installDir: PH3 - Vikings: {} launch: - /Playing History - Vikings.app: + "/Playing History - Vikings.app": - when: - os: mac store: steam - /Playing History - Vikings.exe: + "/Playing History - Vikings.exe": - when: - os: windows store: steam - /Playing_History_-_Vikings.x86: + "/Playing_History_-_Vikings.x86": - when: - os: linux store: steam steam: id: 368760 -'Playmobil: The Movie VR Adventures': +"Playmobil: The Movie VR Adventures": steam: id: 1162360 Playne: files: - /PLAYNE/Saved: + "/PLAYNE/Saved": tags: - save when: @@ -401723,14 +402823,15 @@ Playne: installDir: PLAYNE: {} launch: - /PLAYNE.exe: + "/PLAYNE.exe": - when: + - store: steam - bit: 32 os: windows store: steam steam: id: 865540 -'Playthings: VR Music Vacation': +"Playthings: VR Music Vacation": installDir: Playthings VR: {} steam: @@ -401739,7 +402840,7 @@ Plazma Being: installDir: Plazma Being: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -401749,12 +402850,12 @@ Please: installDir: Please: {} launch: - /Distribute/Win32/WindowsNoEditor/Please.exe: + "/Distribute/Win32/WindowsNoEditor/Please.exe": - when: - bit: 32 os: windows store: steam - /Distribute/Win64/WindowsNoEditor/Please.exe: + "/Distribute/Win64/WindowsNoEditor/Please.exe": - when: - bit: 64 os: windows @@ -401765,7 +402866,7 @@ Please Close the Doors: installDir: Please close the doors: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -401775,7 +402876,7 @@ Please Find Me: installDir: Please Find Me: {} launch: - /PleaseFindMe.exe: + "/PleaseFindMe.exe": - when: - os: windows store: steam @@ -401783,7 +402884,7 @@ Please Find Me: id: 1045070 Please Fix the Road: files: - /AppData/LocalLow/Ariel Jurkowski/Please Fix The Road: + "/AppData/LocalLow/Ariel Jurkowski/Please Fix The Road": tags: - save when: @@ -401793,15 +402894,15 @@ Please Fix the Road: installDir: Please Fix The Road: {} launch: - /Please Fix The Road.app: + "/Please Fix The Road.app": - when: - os: mac store: steam - /Please Fix The Road.exe: + "/Please Fix The Road.exe": - when: - os: windows store: steam - /Please Fix The Road.x86_64: + "/Please Fix The Road.x86_64": - when: - bit: 64 os: linux @@ -401812,7 +402913,7 @@ Please Knock on My Door: installDir: Please Knock on My Door: {} launch: - /PKoMD.exe: + "/PKoMD.exe": - when: - os: windows store: steam @@ -401822,8 +402923,8 @@ Please Love My Computer Game: installDir: Please Love My Computer Game: {} launch: - /PLMCG.exe: - - arguments: '--in-process-gpu' + "/PLMCG.exe": + - arguments: "--in-process-gpu" when: - store: steam steam: @@ -401837,47 +402938,47 @@ Please The Gods: installDir: Please The Gods: {} launch: - /Please the Gods.exe: + "/Please the Gods.exe": - when: - bit: 64 os: windows store: steam steam: id: 1040080 -'Please, Don''t Touch Anything': +"Please, Don't Touch Anything": files: - /DontTouchAnything: + "/DontTouchAnything": tags: - config - save when: - os: windows installDir: - 'Please, Don’t Touch Anything': {} + "Please, Don’t Touch Anything": {} launch: - /DontTouchAnything.app: + "/DontTouchAnything.app": - when: - os: mac store: steam - /DontTouchAnything.exe: + "/DontTouchAnything.exe": - when: - os: windows store: steam - /run.sh: + "/run.sh": - when: - os: linux store: steam steam: id: 354240 -'Please, Don''t Touch Anything 3D': +"Please, Don't Touch Anything 3D": installDir: - Please Don't Touch Anything 3D: {} + "Please Don't Touch Anything 3D": {} launch: - /PDTA 3D.exe: + "/PDTA 3D.exe": - when: - os: windows store: steam - /pdta-steam.app: + "/pdta-steam.app": - when: - os: mac store: steam @@ -401887,11 +402988,11 @@ Pleasure Airlines: installDir: Pleasure Airlines: {} launch: - /PA.app: + "/PA.app": - when: - os: mac store: steam - /PA.exe: + "/PA.exe": - when: - os: windows store: steam @@ -401901,17 +403002,17 @@ Pleasure Party: installDir: Pleasure Party: {} launch: - /PleasureParty.exe: + "/PleasureParty.exe": - when: - os: windows store: steam steam: id: 1830620 -'Pleasure Puzzle: Portrait': +"Pleasure Puzzle: Portrait": installDir: Pleasure Puzzle Portrait: {} launch: - /PP1.exe: + "/PP1.exe": - when: - os: windows store: steam @@ -401921,21 +403022,21 @@ Pleasure Party: - config steam: id: 939620 -'Pleasure Puzzle: Sexy Girls': +"Pleasure Puzzle: Sexy Girls": installDir: Pleasure Puzzle Sexy Girls: {} launch: - /PP2.exe: + "/PP2.exe": - when: - os: windows store: steam steam: id: 934540 -'Pleasure Puzzle: Workshop': +"Pleasure Puzzle: Workshop": installDir: PleasurePuzzleWorkshop: {} launch: - /PP3.exe: + "/PP3.exe": - when: - os: windows store: steam @@ -401945,20 +403046,20 @@ Pleasure in Dream: installDir: Pleasure in Dream: {} launch: - /Pleasure in Dream.exe: + "/Pleasure in Dream.exe": - when: - os: windows store: steam steam: id: 575080 -'Plebby Quest: The Crusades': +"Plebby Quest: The Crusades": files: - /PQTC//SaveData: + "/PQTC//SaveData": tags: - save when: - os: windows - /PQTC//SaveData/OPTIONMAN.sav: + "/PQTC//SaveData/OPTIONMAN.sav": tags: - config when: @@ -401966,38 +403067,38 @@ Pleasure in Dream: installDir: PQTC: {} launch: - /PQTC.exe: + "/PQTC.exe": - when: - os: windows store: steam steam: id: 334310 -'Plenty: Skyhearth': +"Plenty: Skyhearth": installDir: Plenty Skyhearth: {} steam: id: 538950 -'Pleurghburg: Dark Ages': +"Pleurghburg: Dark Ages": files: - /acsetup.cfg: + "/acsetup.cfg": tags: - save when: - os: windows - /agssave.*: + "/agssave.*": tags: - config when: - os: windows -'Plexarium: Mega Maze Crawler': +"Plexarium: Mega Maze Crawler": installDir: Plexarium: {} launch: - /plexarium.exe: + "/plexarium.exe": - when: - os: windows store: steam - /plexarium.x86_64: + "/plexarium.x86_64": - when: - bit: 64 os: linux @@ -402008,15 +403109,15 @@ Plexus: installDir: Plexus: {} launch: - /Contents/MacOS/Plexus: + "/Contents/MacOS/Plexus": - when: - os: mac store: steam - /Plexus.exe: + "/Plexus.exe": - when: - os: windows store: steam - /Plexus.x86_64: + "/Plexus.x86_64": - when: - bit: 64 os: linux @@ -402027,7 +403128,7 @@ Plight: installDir: Plight: {} launch: - /plight.exe: + "/plight.exe": - when: - os: windows store: steam @@ -402037,15 +403138,15 @@ Plight of the Zombie: installDir: Plight of the Zombie: {} launch: - /PotZ.app: + "/PotZ.app": - when: - os: mac store: steam - /potz.exe: + "/potz.exe": - when: - os: windows store: steam - /potz.x86: + "/potz.x86": - when: - os: linux store: steam @@ -402058,15 +403159,15 @@ Plith: installDir: Plith: {} launch: - /Plith.app: + "/Plith.app": - when: - os: mac store: steam - /Plith.exe: + "/Plith.exe": - when: - os: windows store: steam - /plith: + "/plith": - when: - os: linux store: steam @@ -402076,15 +403177,15 @@ Plot of the Druid: installDir: Plot of the Druid: {} launch: - /Mac.app/Contents/MacOS/Plot of the Druid: + "/Mac.app/Contents/MacOS/Plot of the Druid": - when: - os: mac store: steam - /Plot of the Druid.exe: + "/Plot of the Druid.exe": - when: - os: windows store: steam - /Plot of the Druid.x86_64: + "/Plot of the Druid.x86_64": - when: - os: linux store: steam @@ -402094,11 +403195,11 @@ Plox Neon: installDir: Plox Neon: {} launch: - /PloxNeon.app/Contents/MacOS/PloxNeon: + "/PloxNeon.app/Contents/MacOS/PloxNeon": - when: - os: mac store: steam - /PloxNeon.exe: + "/PloxNeon.exe": - when: - os: windows store: steam @@ -402108,7 +403209,7 @@ Pluck: installDir: Pluck: {} launch: - /Pluck.exe: + "/Pluck.exe": - when: - os: windows store: steam @@ -402118,20 +403219,20 @@ Plug & Play: installDir: Plug & Play: {} launch: - /pnp.app/Contents/MacOS/pnp: + "/pnp.app/Contents/MacOS/pnp": - when: - os: mac store: steam - /pnp.exe: + "/pnp.exe": - when: - os: windows store: steam - /pnp.x86: + "/pnp.x86": - when: - bit: 32 os: linux store: steam - /pnp.x86_64: + "/pnp.x86_64": - when: - bit: 64 os: linux @@ -402146,7 +403247,7 @@ Plug Me: installDir: Plug Me: {} launch: - /Plug_Me.exe: + "/Plug_Me.exe": - when: - os: windows store: steam @@ -402155,11 +403256,11 @@ Plug Me: Plumber 3D: steam: id: 650690 -'Plumber: the Pipe Rush': +"Plumber: the Pipe Rush": installDir: Plumber the Pipe Rush: {} launch: - /PipeRush.exe: + "/PipeRush.exe": - when: - os: windows store: steam @@ -402169,7 +403270,7 @@ Plunder: installDir: Plunder: {} launch: - /Plunder.exe: + "/Plunder.exe": - when: - store: steam steam: @@ -402178,11 +403279,11 @@ Plunder Panic: installDir: Plunder Panic: {} launch: - /Plunder Panic.app: + "/Plunder Panic.app": - when: - os: mac store: steam - /Plunder Panic.exe: + "/Plunder Panic.exe": - when: - os: windows store: steam @@ -402196,15 +403297,15 @@ Plunder Squad: installDir: PlunderSquad: {} launch: - /PlunderSquad.app: + "/PlunderSquad.app": - when: - os: mac store: steam - /plundersquad: + "/plundersquad": - when: - os: linux store: steam - /plundersquad.exe: + "/plundersquad.exe": - when: - os: windows store: steam @@ -402212,7 +403313,7 @@ Plunder Squad: id: 923130 Plunge: files: - /AppData/LocalLow/Spooky Buns LLC/Plunge/SteamCloud_Plunge.sav: + "/AppData/LocalLow/Spooky Buns LLC/Plunge/SteamCloud_Plunge.sav": tags: - save when: @@ -402220,11 +403321,11 @@ Plunge: installDir: Plunge: {} launch: - /Plunge.app: + "/Plunge.app": - when: - os: mac store: steam - /Plunge.exe: + "/Plunge.exe": - when: - os: windows store: steam @@ -402238,7 +403339,7 @@ Plunger Knight - Washers of Truth: installDir: Plunger Knight - Washers of Truth: {} launch: - /PlungerKnight.exe: + "/PlungerKnight.exe": - when: - os: windows store: steam @@ -402253,20 +403354,20 @@ Plush: installDir: Plush: {} launch: - /Plush.app: + "/Plush.app": - when: - os: mac store: steam - /Plush.exe: + "/Plush.exe": - when: - os: windows store: steam - /Plush.x86: + "/Plush.x86": - when: - bit: 32 os: linux store: steam - /Plush.x86_64: + "/Plush.x86_64": - when: - bit: 64 os: linux @@ -402275,7 +403376,7 @@ Plush: id: 341820 Plutocracy: files: - /Redwood Games/Plutocracy/SavedGames: + "/Redwood Games/Plutocracy/SavedGames": tags: - save when: @@ -402283,16 +403384,16 @@ Plutocracy: installDir: Plutocracy: {} launch: - /plutocracy.app: + "/plutocracy.app": - when: - os: mac store: steam - /plutocracy.exe: + "/plutocracy.exe": - when: - bit: 64 os: windows store: steam - /plutocracy.sh: + "/plutocracy.sh": - when: - bit: 64 os: linux @@ -402303,7 +403404,7 @@ Plutonium: installDir: PLUTONIUM: {} launch: - /Plutonium.exe: + "/Plutonium.exe": - when: - os: windows store: steam @@ -402314,12 +403415,12 @@ Plutonium Pirates: id: 861150 Pluviophile: files: - /Pluviophile/Saved/Config/WindowsNoEditor/*.ini: + "/Pluviophile/Saved/Config/WindowsNoEditor/*.ini": tags: - config when: - os: windows - /Pluviophile/Saved/SaveGames/*.sav: + "/Pluviophile/Saved/SaveGames/*.sav": tags: - save when: @@ -402327,18 +403428,18 @@ Pluviophile: installDir: Pluviophile: {} launch: - /Pluviophile.exe: + "/Pluviophile.exe": - when: - bit: 64 os: windows store: steam steam: id: 1322170 -'Pneuma: Breath of Life': +"Pneuma: Breath of Life": installDir: Pneuma Breath of Life: {} launch: - /Pneuma Breath of Life.exe: + "/Pneuma Breath of Life.exe": - when: - bit: 64 os: windows @@ -402349,11 +403450,11 @@ Pobeda: installDir: POBEDA: {} launch: - /POBEDA.app: + "/POBEDA.app": - when: - os: mac store: steam - /POBEDA.exe: + "/POBEDA.exe": - when: - os: windows store: steam @@ -402363,7 +403464,7 @@ Pocket Assault: installDir: Pocket Assault: {} launch: - /PocketAssault.exe: + "/PocketAssault.exe": - when: - os: windows store: steam @@ -402373,11 +403474,11 @@ Pocket God vs Desert Ashes: installDir: Pocket God vs Desert Ashes: {} launch: - /PocketGodVsDesertAshes.app/Contents/MacOS/PocketGodVsDesertAshes: + "/PocketGodVsDesertAshes.app/Contents/MacOS/PocketGodVsDesertAshes": - when: - os: mac store: steam - /PocketGodVsDesertAshes.exe: + "/PocketGodVsDesertAshes.exe": - when: - os: windows store: steam @@ -402387,16 +403488,16 @@ Pocket Kingdom: installDir: Pocket Kingdom: {} launch: - /PocketKingdom.app/Contents/MacOS/PocketKingdom: + "/PocketKingdom.app/Contents/MacOS/PocketKingdom": - when: - os: mac store: steam - /PocketKingdom.exe: - - arguments: '-log' + "/PocketKingdom.exe": + - arguments: "-log" when: - os: windows store: steam - /run.sh: + "/run.sh": - when: - os: linux store: steam @@ -402406,7 +403507,7 @@ Pocket Rogues: installDir: Pocket Rogues: {} launch: - /Pocket Rogues.exe: + "/Pocket Rogues.exe": - when: - store: steam steam: @@ -402415,32 +403516,35 @@ Pocket Rumble: installDir: Pocket Rumble: {} launch: - /Pocket Rumble.exe: + "/Pocket Rumble.exe": - when: - os: windows store: steam steam: id: 389050 -'Pocket Universe: Create Your Community': +"Pocket Universe: Create Your Community": installDir: Pocket Universe Create Your Community: {} launch: - /PocketUniverse.exe: + "/PocketUniverse.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam - /PocketUniverse.x86: + "/PocketUniverse.x86": - when: - bit: 32 os: linux store: steam - /PocketUniverse.x86_64: + "/PocketUniverse.x86_64": - when: - bit: 64 os: linux store: steam - /PocketUniverse64Bit.app/Contents/MacOS/PocketUniverse64: + "/PocketUniverse64Bit.app/Contents/MacOS/PocketUniverse64": - when: - os: mac store: steam @@ -402450,7 +403554,7 @@ Pocket Waifu: installDir: Pocket Waifu: {} launch: - /pw_steam.exe: + "/pw_steam.exe": - when: - os: windows store: steam @@ -402458,12 +403562,12 @@ Pocket Waifu: id: 944110 PocketCars: files: - /AppData/LocalLow/Gen90Software/PocketCars/saves/Settings.pcs: + "/AppData/LocalLow/Gen90Software/PocketCars/saves/Settings.pcs": tags: - config when: - os: windows - /userdata//1170720/remote/Player.pcs: + "/userdata//1170720/remote/Player.pcs": tags: - save when: @@ -402472,12 +403576,12 @@ PocketCars: installDir: PocketCars: {} launch: - /PocketCars.exe: + "/PocketCars.exe": - when: - bit: 64 os: windows store: steam - /PocketCars.x86_64: + "/PocketCars.x86_64": - when: - bit: 64 os: linux @@ -402486,7 +403590,7 @@ PocketCars: id: 1170720 Pocky & Rocky Reshrined: files: - /AppData/LocalLow/NatsumeAtari/KikiKaikai//SaveData.dat: + "/AppData/LocalLow/NatsumeAtari/KikiKaikai//SaveData.dat": tags: - save when: @@ -402494,7 +403598,7 @@ Pocky & Rocky Reshrined: installDir: KIKIKAIKAI KuroMantonoNazo: {} launch: - /KikiKaikai.exe: + "/KikiKaikai.exe": - when: - os: windows store: steam @@ -402508,15 +403612,15 @@ Pocoman: installDir: Pocoman: {} launch: - /PocoMan!: + "/PocoMan!": - when: - os: linux store: steam - /PocoMan!.app: + "/PocoMan!.app": - when: - os: mac store: steam - /PocoMan.exe: + "/PocoMan.exe": - when: - os: windows store: steam @@ -402531,29 +403635,29 @@ Poggers: installDir: Poggers: {} launch: - /Poggers.exe: + "/Poggers.exe": - when: - os: windows store: steam steam: id: 1039200 -'Pogostuck: Rage With Your Friends': +"Pogostuck: Rage With Your Friends": installDir: Pogostuck: {} launch: - /Pogostuck.exe: + "/Pogostuck.exe": - when: - store: steam steam: id: 688130 Poi: files: - /AppData/LocalLow/PolyKid/Poi: + "/AppData/LocalLow/PolyKid/Poi": tags: - save when: - os: windows - /AppData/LocalLow/PolyKid/Poi/poi-common.dat: + "/AppData/LocalLow/PolyKid/Poi/poi-common.dat": tags: - config when: @@ -402561,15 +403665,15 @@ Poi: installDir: Poi: {} launch: - /Poi.app: + "/Poi.app": - when: - os: mac store: steam - /Poi.exe: + "/Poi.exe": - when: - os: windows store: steam - /Poi.x86: + "/Poi.x86": - when: - os: linux store: steam @@ -402579,7 +403683,7 @@ Point: installDir: Point: {} launch: - /Point.exe: + "/Point.exe": - when: - os: windows store: steam @@ -402602,7 +403706,7 @@ Point Connect 5: id: 697110 Point Perfect: files: - /point_perfect_steam: + "/point_perfect_steam": tags: - config - save @@ -402611,11 +403715,11 @@ Point Perfect: installDir: Point Perfect: {} launch: - /PointPerfect-Mac.app: + "/PointPerfect-Mac.app": - when: - os: mac store: steam - /point_perfect_se_1.3.2.exe: + "/point_perfect_se_1.3.2.exe": - when: - os: windows store: steam @@ -402631,7 +403735,7 @@ Pointless: installDir: Pointless: {} launch: - /Pointless.exe: + "/Pointless.exe": - when: - os: windows store: steam @@ -402642,18 +403746,18 @@ Poisoner: Poisoner: {} steam: id: 944100 -Poisoner's Teacup: +"Poisoner's Teacup": steam: id: 1118440 Poker Championship: installDir: Poker Championship: {} launch: - /Poker Championship.app/Contents/MacOS/Poker Championship: + "/Poker Championship.app/Contents/MacOS/Poker Championship": - when: - os: mac store: steam - /Poker Championship.exe: + "/Poker Championship.exe": - when: - os: windows store: steam @@ -402663,12 +403767,12 @@ Poker Club: installDir: PokerClub: {} launch: - /Poker2/Binaries/Win32/Poker2.exe: + "/Poker2/Binaries/Win32/Poker2.exe": - when: - bit: 32 os: windows store: steam - /Poker2/Binaries/Win64/Poker2.exe: + "/Poker2/Binaries/Win64/Poker2.exe": - when: - bit: 64 os: windows @@ -402677,12 +403781,12 @@ Poker Club: id: 1174460 Poker Night 2: files: - /Library/Application Support/Telltale Games/PokerNight2: + "/Library/Application Support/Telltale Games/PokerNight2": tags: - save when: - os: mac - /Telltale Games/Poker Night 2: + "/Telltale Games/Poker Night 2": tags: - config - save @@ -402691,11 +403795,11 @@ Poker Night 2: installDir: Poker Night 2: {} launch: - /PokerNight2.app: + "/PokerNight2.app": - when: - os: mac store: steam - /PokerNight2.exe: + "/PokerNight2.exe": - when: - os: windows store: steam @@ -402703,12 +403807,12 @@ Poker Night 2: id: 234710 Poker Night at the Inventory: files: - /Telltale Games/Poker Night at the Inventory/*.save: + "/Telltale Games/Poker Night at the Inventory/*.save": tags: - save when: - os: windows - /Telltale Games/Poker Night at the Inventory/prefs.prop: + "/Telltale Games/Poker Night at the Inventory/prefs.prop": tags: - config when: @@ -402716,19 +403820,19 @@ Poker Night at the Inventory: installDir: Poker Night at the Inventory: {} launch: - /CelebrityPoker.app: + "/CelebrityPoker.app": - when: - os: mac store: steam - /CelebrityPoker.exe: + "/CelebrityPoker.exe": - when: - os: windows store: steam steam: id: 31280 -'Poker Pretty Girls Battle: Texas Hold''em': +"Poker Pretty Girls Battle: Texas Hold'em": files: - /Save: + "/Save": tags: - save when: @@ -402736,7 +403840,7 @@ Poker Night at the Inventory: installDir: Poker Pretty Girls Battle: {} launch: - /PokerPrettyGirlsBattle.exe: + "/PokerPrettyGirlsBattle.exe": - when: - store: steam steam: @@ -402745,11 +403849,11 @@ Poker Quest: installDir: Poker Quest: {} launch: - /PokerQuest.app: + "/PokerQuest.app": - when: - os: mac store: steam - /PokerQuest.exe: + "/PokerQuest.exe": - when: - os: windows store: steam @@ -402764,7 +403868,7 @@ Poker Simulator: installDir: PokerSimulator: {} launch: - /poker.exe: + "/poker.exe": - when: - os: windows store: steam @@ -402774,7 +403878,7 @@ Poker Superstars II: installDir: Poker Superstars II: {} launch: - /PokerSuperstars2.exe: + "/PokerSuperstars2.exe": - when: - store: steam steam: @@ -402783,15 +403887,15 @@ Poker Tower Defense: installDir: Poker Tower Defense: {} launch: - /Poker Tower Defense.app/Contents/MacOS/Poker Tower Defense: + "/Poker Tower Defense.app/Contents/MacOS/Poker Tower Defense": - when: - os: mac store: steam - /Poker Tower Defense.exe: + "/Poker Tower Defense.exe": - when: - os: windows store: steam - /Poker Tower Defense.x86: + "/Poker Tower Defense.x86": - when: - os: linux store: steam @@ -402801,11 +403905,11 @@ Poker World: installDir: Poker World: {} launch: - /PokerWorld.exe: + "/PokerWorld.exe": - when: - os: windows store: steam - /dev_1.2.10.app/Contents/MacOS/dev_1.2.10: + "/dev_1.2.10.app/Contents/MacOS/dev_1.2.10": - when: - os: mac store: steam @@ -402823,7 +403927,7 @@ Pokka Man: installDir: Pokka Man: {} launch: - /Pokka Man.exe: + "/Pokka Man.exe": - when: - bit: 64 os: windows @@ -402834,7 +403938,7 @@ Pokka Man Blast: installDir: Pokka Man Blast: {} launch: - /Pokka Man Blast.exe: + "/Pokka Man Blast.exe": - when: - bit: 64 os: windows @@ -402845,30 +403949,30 @@ Pokris: installDir: Pokris: {} launch: - /Pokris.exe: + "/Pokris.exe": - when: - os: windows store: steam steam: id: 1036780 -'Polandball: Can into Space!': +"Polandball: Can into Space!": installDir: Polandball Can into Space!: {} launch: - /Polandball.app: + "/Polandball.app": - when: - os: mac store: steam - /Polandball.exe: + "/Polandball.exe": - when: - os: windows store: steam - /Polandball.x86: + "/Polandball.x86": - when: - bit: 32 os: linux store: steam - /Polandball.x86_64: + "/Polandball.x86_64": - when: - bit: 64 os: linux @@ -402879,11 +403983,11 @@ Polar Jump: installDir: Polar Jump: {} launch: - /PolarJump.app: + "/PolarJump.app": - when: - os: mac store: steam - /PolarJump.exe: + "/PolarJump.exe": - when: - os: windows store: steam @@ -402898,7 +404002,7 @@ Polaris Sector: installDir: Polaris Sector: {} launch: - /autorun.exe: + "/autorun.exe": - when: - os: windows store: steam @@ -402908,7 +404012,7 @@ Polarity: installDir: Polarity: {} launch: - /Polarity.exe: + "/Polarity.exe": - when: - os: windows store: steam @@ -402923,11 +404027,11 @@ Polda 3: installDir: Polda 3: {} launch: - /Polda3.app: + "/Polda3.app": - when: - os: mac store: steam - /Polda3.exe: + "/Polda3.exe": - when: - os: windows store: steam @@ -402937,11 +404041,11 @@ Polda 7: installDir: Polda 7: {} launch: - /Polda 7.app: + "/Polda 7.app": - when: - os: mac store: steam - /Polda7.exe: + "/Polda7.exe": - when: - os: windows store: steam @@ -402951,11 +404055,11 @@ Pole Position 2012: installDir: Pole Position 2012: {} launch: - /PP2012.app: + "/PP2012.app": - when: - os: mac store: steam - /PolePosition.exe: + "/PolePosition.exe": - when: - os: windows store: steam @@ -402965,7 +404069,7 @@ Police Adventure: installDir: Police Adventure: {} launch: - /PoliceAdventure.exe: + "/PoliceAdventure.exe": - when: - os: windows store: steam @@ -402975,7 +404079,7 @@ Police Air Transporter: installDir: Game: {} launch: - /PoliceAirTransporter.exe: + "/PoliceAirTransporter.exe": - when: - os: windows store: steam @@ -402984,7 +404088,7 @@ Police Air Transporter: Police Car Chase: steam: id: 932130 -'Police Enforcement VR : 1-King-27': +"Police Enforcement VR : 1-King-27": installDir: Police Enforcement VR 1-King-27: {} steam: @@ -402998,12 +404102,12 @@ Police Infinity: installDir: Vengeance: {} launch: - /Vengeance Reboot.exe: + "/Vengeance Reboot.exe": - when: - bit: 64 os: windows store: steam - /Vengeance.x86_64: + "/Vengeance.x86_64": - when: - bit: 64 os: linux @@ -403014,25 +404118,25 @@ Police Patrol: installDir: Police Patrol: {} launch: - /PolicePatrol.exe: + "/PolicePatrol.exe": - when: - os: windows store: steam steam: id: 842530 -'Police Quest II: The Vengeance': +"Police Quest II: The Vengeance": files: - /PQ2: + "/PQ2": tags: - config when: - os: windows - /PQ2/PQSG.***: + "/PQ2/PQSG.***": tags: - save when: - os: windows - /cloud_saves/PQSG.***: + "/cloud_saves/PQSG.***": tags: - save when: @@ -403045,12 +404149,12 @@ Police Patrol: installDir: Police Quest Collection: {} launch: - /SierraLauncher.exe: + "/SierraLauncher.exe": - when: - store: steam steam: id: 494740 -'Police Quest III: The Kindred': +"Police Quest III: The Kindred": gog: id: 1207661293 id: @@ -403059,39 +404163,39 @@ Police Patrol: installDir: Police Quest Collection: {} launch: - /SierraLauncher.exe: + "/SierraLauncher.exe": - when: - store: steam steam: id: 494740 -'Police Quest: In Pursuit of the Death Angel': +"Police Quest: In Pursuit of the Death Angel": files: - /PQ1: + "/PQ1": tags: - config when: - os: windows - /PQ1/EGA: + "/PQ1/EGA": tags: - config when: - os: windows - /PQ1/EGA/PQSG.*: + "/PQ1/EGA/PQSG.*": tags: - save when: - os: windows - /PQ1/PQ1SG.*: + "/PQ1/PQ1SG.*": tags: - save when: - os: windows - /PQ1SG.***: + "/PQ1SG.***": tags: - save when: - os: dos - /cloud_saves/PQ1SG.*: + "/cloud_saves/PQ1SG.*": tags: - save when: @@ -403104,12 +404208,12 @@ Police Patrol: installDir: Police Quest Collection: {} launch: - /SierraLauncher.exe: + "/SierraLauncher.exe": - when: - store: steam steam: id: 494740 -'Police Quest: Open Season': +"Police Quest: Open Season": gog: id: 1207661303 id: @@ -403118,14 +404222,14 @@ Police Patrol: installDir: Police Quest Collection: {} launch: - /SierraLauncher.exe: + "/SierraLauncher.exe": - when: - store: steam steam: id: 494740 -'Police Quest: SWAT': +"Police Quest: SWAT": files: - /SWATDATA.00*: + "/SWATDATA.00*": tags: - save when: @@ -403138,12 +404242,12 @@ Police Patrol: installDir: Police Quest - SWAT: {} launch: - /SierraLauncher.exe: + "/SierraLauncher.exe": - when: - store: steam steam: id: 560350 -'Police Quest: SWAT 2': +"Police Quest: SWAT 2": gog: id: 1207661483 id: @@ -403152,19 +404256,19 @@ Police Patrol: installDir: Police Quest - SWAT 2: {} launch: - /SWAT.exe: + "/SWAT.exe": - when: - store: steam steam: id: 607120 Police Simulator Patrol Officers: files: - /Boston/Saved/Config/WindowsNoEditor: + "/Boston/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /Boston/Saved/Save Games: + "/Boston/Saved/Save Games": tags: - save when: @@ -403172,16 +404276,16 @@ Police Simulator Patrol Officers: installDir: Police Simulator Patrol Officers: {} launch: - /Boston.exe: + "/Boston.exe": - when: - store: steam steam: id: 997010 -'Police Simulator: Patrol Duty': +"Police Simulator: Patrol Duty": installDir: Police Simulator: {} launch: - /PoliceSimulator.exe: + "/PoliceSimulator.exe": - when: - bit: 64 os: windows @@ -403190,12 +404294,12 @@ Police Simulator Patrol Officers: id: 461870 Police Stories: files: - /PoliceStoriesRelease: + "/PoliceStoriesRelease": tags: - save when: - os: windows - /PoliceStoriesRelease/settings.ini: + "/PoliceStoriesRelease/settings.ini": tags: - config when: @@ -403205,26 +404309,26 @@ Police Stories: installDir: PoliceStories: {} launch: - /PoliceStories.exe: + "/PoliceStories.exe": - when: - os: windows store: steam - /PoliceStoriesRelease: + "/PoliceStoriesRelease": - when: - bit: 64 os: linux store: steam - /PoliceStoriesRelease.app: + "/PoliceStoriesRelease.app": - when: - os: mac store: steam steam: id: 539470 -'Police Stories: The Academy': +"Police Stories: The Academy": installDir: Police Stories The Academy: {} launch: - /PoliceStories.exe: + "/PoliceStories.exe": - when: - os: windows store: steam @@ -403234,32 +404338,32 @@ Police Stunt Cars: installDir: Police Stunt Cars: {} launch: - /PoliceStuntCars.exe: + "/PoliceStuntCars.exe": - when: - bit: 64 os: windows store: steam steam: id: 1124190 -'Police Tactics: Imperio': +"Police Tactics: Imperio": installDir: Project Hero: {} launch: - /Police Tactics Imperio.app: + "/Police Tactics Imperio.app": - when: - os: mac store: steam - /PoliceTactics.exe: + "/PoliceTactics.exe": - when: - os: windows store: steam steam: id: 378800 -'Police: Destruction Street': +"Police: Destruction Street": installDir: Police Destruction Street: {} launch: - /Police.exe: + "/Police.exe": - when: - os: windows store: steam @@ -403271,21 +404375,21 @@ Political Animals: installDir: Political Animals: {} launch: - /PoliticalAnimals.app/Contents/MacOS/PoliticalAnimals: + "/PoliticalAnimals.app/Contents/MacOS/PoliticalAnimals": - when: - os: mac store: steam - /PoliticalAnimals.exe: + "/PoliticalAnimals.exe": - when: - os: windows store: steam - /PoliticalAnimals.x86: + "/PoliticalAnimals.x86": - arguments: LC_ALL=C when: - bit: 32 os: linux store: steam - /PoliticalAnimals.x86_64: + "/PoliticalAnimals.x86_64": - arguments: LC_ALL=C when: - bit: 64 @@ -403297,7 +404401,7 @@ Polities: installDir: Polities: {} launch: - /Polities.exe: + "/Polities.exe": - when: - bit: 64 os: windows @@ -403306,12 +404410,12 @@ Polities: id: 1082640 Pollen: files: - /Data/Pollen.cfg: + "/Data/Pollen.cfg": tags: - config when: - os: windows - /Save: + "/Save": tags: - save when: @@ -403321,7 +404425,7 @@ Pollen: installDir: pollen: {} launch: - /pollen64.exe: + "/pollen64.exe": - when: - bit: 64 os: windows @@ -403332,40 +404436,40 @@ Poltergeist Treasure: installDir: Poltergeist Treasure: {} launch: - /PoltergeistTreasure.exe: + "/PoltergeistTreasure.exe": - when: - os: windows store: steam - /PoltergeistTreasure.x86: + "/PoltergeistTreasure.x86": - when: - bit: 32 os: linux store: steam - /PoltergeistTreasure.x86_64: + "/PoltergeistTreasure.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 912500 -'Poltergeist: A Pixelated Horror': +"Poltergeist: A Pixelated Horror": installDir: PoltergeistAPixelatedHorror: {} launch: - /Poltergeist.app: + "/Poltergeist.app": - when: - os: mac store: steam - /Poltergeist.exe: + "/Poltergeist.exe": - when: - os: windows store: steam - /Poltergeist.x86: + "/Poltergeist.x86": - when: - bit: 32 os: linux store: steam - /Poltergeist.x86_64: + "/Poltergeist.x86_64": - when: - bit: 64 os: linux @@ -403376,7 +404480,7 @@ Polterheist: installDir: Polterheist: {} launch: - /Polterheist.exe: + "/Polterheist.exe": - when: - os: windows store: steam @@ -403384,12 +404488,12 @@ Polterheist: id: 595320 Poly Bridge: files: - /.config/unity3d/Dry Cactus/Poly Bridge: + "/.config/unity3d/Dry Cactus/Poly Bridge": tags: - config when: - os: linux - /userdata//367450/remote: + "/userdata//367450/remote": tags: - save when: @@ -403397,20 +404501,20 @@ Poly Bridge: installDir: Poly Bridge: {} launch: - /Poly Bridge.app: + "/Poly Bridge.app": - when: - os: mac store: steam - /polybridge.exe: + "/polybridge.exe": - when: - os: windows store: steam - /polybridge.x86: + "/polybridge.x86": - when: - bit: 32 os: linux store: steam - /polybridge.x86_64: + "/polybridge.x86_64": - when: - bit: 64 os: linux @@ -403423,32 +404527,32 @@ Poly Bridge: id: 367450 Poly Bridge 2: files: - /.config/unity3d/Dry Cactus/Poly Bridge 2/Profiles: + "/.config/unity3d/Dry Cactus/Poly Bridge 2/Profiles": tags: - config when: - os: linux - /.config/unity3d/Dry Cactus/Poly Bridge 2/SaveSlots: + "/.config/unity3d/Dry Cactus/Poly Bridge 2/SaveSlots": tags: - save when: - os: linux - /Library/Application Support/Com.drycactus/polybridge2/saveslots: + "/Library/Application Support/Com.drycactus/polybridge2/saveslots": tags: - save when: - os: mac - /Library/Application Support/com.drycactus/PolyBridge2/Profiles: + "/Library/Application Support/com.drycactus/PolyBridge2/Profiles": tags: - config when: - os: mac - /Dry Cactus/Poly Bridge 2/Profiles: + "/Dry Cactus/Poly Bridge 2/Profiles": tags: - config when: - os: windows - /Dry Cactus/Poly Bridge 2/SaveSlots: + "/Dry Cactus/Poly Bridge 2/SaveSlots": tags: - save when: @@ -403456,16 +404560,19 @@ Poly Bridge 2: installDir: Poly Bridge 2: {} launch: - /Poly Bridge 2.app: + "/Poly Bridge 2.app": - when: - os: mac store: steam - /Poly Bridge 2.exe: + "/Poly Bridge 2.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam - /Poly Bridge 2.x86_64: + "/Poly Bridge 2.x86_64": - when: - os: linux store: steam @@ -403478,11 +404585,11 @@ Poly Fishing: installDir: Poly Fishing: {} launch: - /PolyFishing.app/Contents/MacOS/PolyFishing: + "/PolyFishing.app/Contents/MacOS/PolyFishing": - when: - os: mac store: steam - /PolyFishing.exe: + "/PolyFishing.exe": - when: - os: windows store: steam @@ -403492,11 +404599,11 @@ Poly Island: installDir: Polly World: {} launch: - /Poly Island.app: + "/Poly Island.app": - when: - os: mac store: steam - /Poly Island.exe: + "/Poly Island.exe": - when: - os: windows store: steam @@ -403506,19 +404613,19 @@ Poly Mole: installDir: Poly Mole: {} launch: - /jdk/Contents/Home/bin/java: - - arguments: '-Xmx2G -Xms2G -XX:+UseConcMarkSweepGC -XX:-UseAdaptiveSizePolicy -Xmn128M -XstartOnFirstThread -jar Game.jar' + "/jdk/Contents/Home/bin/java": + - arguments: "-Xmx2G -Xms2G -XX:+UseConcMarkSweepGC -XX:-UseAdaptiveSizePolicy -Xmn128M -XstartOnFirstThread -jar Game.jar" when: - os: mac store: steam - /jdk/bin/java: - - arguments: '-Xmx2G -Xms2G -XX:+UseConcMarkSweepGC -XX:-UseAdaptiveSizePolicy -Xmn128M -jar Game.jar' + "/jdk/bin/java": + - arguments: "-Xmx2G -Xms2G -XX:+UseConcMarkSweepGC -XX:-UseAdaptiveSizePolicy -Xmn128M -jar Game.jar" when: - bit: 64 os: linux store: steam - /jdk/bin/javaw.exe: - - arguments: '-Xmx2G -Xms2G -XX:+UseConcMarkSweepGC -XX:-UseAdaptiveSizePolicy -Xmn128M -jar Game.jar' + "/jdk/bin/javaw.exe": + - arguments: "-Xmx2G -Xms2G -XX:+UseConcMarkSweepGC -XX:-UseAdaptiveSizePolicy -Xmn128M -jar Game.jar" when: - bit: 64 os: windows @@ -403542,20 +404649,20 @@ Poly Towns: installDir: Poly Towns: {} launch: - /Poly Towns.app/Contents/MacOS/Poly Towns: + "/Poly Towns.app/Contents/MacOS/Poly Towns": - when: - os: mac store: steam - /Poly Towns.exe: + "/Poly Towns.exe": - when: - os: windows store: steam - /Poly Towns/Poly Towns.x86: + "/Poly Towns/Poly Towns.x86": - when: - bit: 32 os: linux store: steam - /Poly Towns/Poly Towns.x86_64: + "/Poly Towns/Poly Towns.x86_64": - when: - bit: 64 os: linux @@ -403564,7 +404671,7 @@ Poly Towns: id: 438730 Poly Universe: files: - /AppData/LocalLow/Pouchmouse/Poly Universe/Saves: + "/AppData/LocalLow/Pouchmouse/Poly Universe/Saves": tags: - save when: @@ -403572,15 +404679,15 @@ Poly Universe: installDir: Poly Universe: {} launch: - /Poly Universe.app/Contents/MacOS/Poly Universe: + "/Poly Universe.app/Contents/MacOS/Poly Universe": - when: - os: mac store: steam - /Poly Universe.exe: + "/Poly Universe.exe": - when: - os: windows store: steam - /Poly Universe.x86_64: + "/Poly Universe.x86_64": - when: - os: linux store: steam @@ -403590,11 +404697,11 @@ Poly World: installDir: Poly World: {} launch: - /Poly World.app/Contents/MacOS/Poly World: + "/Poly World.app/Contents/MacOS/Poly World": - when: - os: mac store: steam - /Poly World.exe: + "/Poly World.exe": - when: - os: windows store: steam @@ -403604,7 +404711,7 @@ Poly and the Marble Maze: installDir: PolyAndTheMarbleMaze: {} launch: - /PolyAndTheMarbleMaze.exe: + "/PolyAndTheMarbleMaze.exe": - when: - os: windows store: steam @@ -403614,8 +404721,8 @@ PolyCube: installDir: PolyCube: {} launch: - /polycube.exe: - - arguments: '-vrmode none' + "/polycube.exe": + - arguments: "-vrmode none" when: - os: windows store: steam @@ -403630,20 +404737,20 @@ PolyKat: installDir: PolyKat: {} launch: - /polykat.app: + "/polykat.app": - when: - os: mac store: steam - /polykat.exe: + "/polykat.exe": - when: - os: windows store: steam - /polykat.x86: + "/polykat.x86": - when: - bit: 32 os: linux store: steam - /polykat.x86_64: + "/polykat.x86_64": - when: - bit: 64 os: linux @@ -403654,20 +404761,20 @@ PolyRace: installDir: PolyRace: {} launch: - /PolyRace.app/Contents/MacOS/PolyRace: + "/PolyRace.app/Contents/MacOS/PolyRace": - when: - os: mac store: steam - /PolyRace.exe: + "/PolyRace.exe": - when: - os: windows store: steam - /PolyRace.x86: + "/PolyRace.x86": - when: - bit: 32 os: linux store: steam - /PolyRace.x86_64: + "/PolyRace.x86_64": - when: - bit: 64 os: linux @@ -403676,12 +404783,12 @@ PolyRace: id: 384330 Polyball: files: - /AppData/LocalLow/Studio Monolith/Polyball/MyLevels: + "/AppData/LocalLow/Studio Monolith/Polyball/MyLevels": tags: - save when: - os: windows - /userdata//368180/remote: + "/userdata//368180/remote": tags: - save when: @@ -403689,20 +404796,20 @@ Polyball: installDir: Polyball: {} launch: - /polyball.app: + "/polyball.app": - when: - os: mac store: steam - /polyball.exe: + "/polyball.exe": - when: - os: windows store: steam - /polyball.x86: + "/polyball.x86": - when: - bit: 32 os: linux store: steam - /polyball.x86_64: + "/polyball.x86_64": - when: - bit: 64 os: linux @@ -403717,15 +404824,15 @@ Polychromatic: installDir: Polychromatic: {} launch: - /Polychromatic.app/Contents/MacOS/Polychromatic: + "/Polychromatic.app/Contents/MacOS/Polychromatic": - when: - os: mac store: steam - /Polychromatic.exe: + "/Polychromatic.exe": - when: - os: windows store: steam - /polychromatic: + "/polychromatic": - when: - os: linux store: steam @@ -403735,7 +404842,7 @@ Polycrusher: installDir: Polycrusher: {} launch: - /Polycrusher.exe: + "/Polycrusher.exe": - when: - os: windows store: steam @@ -403761,15 +404868,15 @@ Polygod: installDir: POLYGOD: {} launch: - /linux_content/Polygod.x86: + "/linux_content/Polygod.x86": - when: - os: linux store: steam - /mac_content/Polygod.app: + "/mac_content/Polygod.app": - when: - os: mac store: steam - /windows_content/Polygod.exe: + "/windows_content/Polygod.exe": - when: - os: windows store: steam @@ -403779,16 +404886,16 @@ Polygon Attack: installDir: polygon_attack: {} launch: - /PolygonAttack.exe: + "/PolygonAttack.exe": - when: - os: windows store: steam - /PolygonAttack.x86: + "/PolygonAttack.x86": - when: - bit: 32 os: linux store: steam - /PolygonAttack.x86_64: + "/PolygonAttack.x86_64": - when: - bit: 64 os: linux @@ -403799,30 +404906,33 @@ Polygon Hero: installDir: Polygon Hero: {} launch: - /PolygonHero.app/Contents/MacOS/PolygonHero: + "/PolygonHero.app/Contents/MacOS/PolygonHero": - when: - os: mac store: steam - /PolygonHero.exe: + "/PolygonHero.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam steam: id: 652750 -'Polygon''s Royale : Season 1': +"Polygon's Royale : Season 1": installDir: PolygonsRoyale: {} launch: - /PolygonsRoyale.app/Contents/MacOS/PolygonsRoyale: + "/PolygonsRoyale.app/Contents/MacOS/PolygonsRoyale": - when: - os: mac store: steam - /PolygonsRoyale.exe: + "/PolygonsRoyale.exe": - when: - os: windows store: steam - /PolygonsRoyale.x86_64: + "/PolygonsRoyale.x86_64": - when: - os: linux store: steam @@ -403832,16 +404942,16 @@ Polygone: installDir: Polygone: {} launch: - /Polygone.exe: + "/Polygone.exe": - when: - os: windows store: steam - /polygone.out: + "/polygone.out": - when: - bit: 32 os: linux store: steam - /polygonex64.out: + "/polygonex64.out": - when: - bit: 64 os: linux @@ -403850,12 +404960,12 @@ Polygone: id: 915570 Polygoneer: files: - /Polygoneer/Polygoneer.sav: + "/Polygoneer/Polygoneer.sav": tags: - save when: - os: windows - /Polygoneer/Polygoneer_conf.sav: + "/Polygoneer/Polygoneer_conf.sav": tags: - config when: @@ -403863,7 +404973,7 @@ Polygoneer: installDir: Polygoneer: {} launch: - /Polygoneer.exe: + "/Polygoneer.exe": - when: - os: windows store: steam @@ -403873,38 +404983,38 @@ Polymatic: installDir: Polymatic: {} launch: - /Polymatic.exe: + "/Polymatic.exe": - when: - os: windows store: steam steam: id: 870030 -'Polynomial 2: Universe of the Music': +"Polynomial 2: Universe of the Music": installDir: Polynomial 2: {} launch: - /Polynomial2.exe: - - arguments: '--no_vr=1' + "/Polynomial2.exe": + - arguments: "--no_vr=1" when: - bit: 32 os: windows store: steam - /Polynomial2_32: + "/Polynomial2_32": - when: - bit: 32 os: linux store: steam - /Polynomial2_64: + "/Polynomial2_64": - when: - bit: 64 os: linux store: steam - /Polynomial2_osx.app: + "/Polynomial2_osx.app": - when: - os: mac store: steam - /bin_w64/Polynomial2_64.exe: - - arguments: '--no_vr=1' + "/bin_w64/Polynomial2_64.exe": + - arguments: "--no_vr=1" when: - bit: 64 os: windows @@ -403915,7 +405025,7 @@ Polyology: installDir: Polyology: {} launch: - /Polyology.exe: + "/Polyology.exe": - when: - store: steam steam: @@ -403924,7 +405034,7 @@ Polyroll: installDir: Polyroll: {} launch: - /Polyroll.exe: + "/Polyroll.exe": - when: - os: windows store: steam @@ -403934,7 +405044,7 @@ Polyrun: installDir: Polyrun: {} launch: - /PolyNew.exe: + "/PolyNew.exe": - when: - bit: 64 os: windows @@ -403945,16 +405055,16 @@ Polyventure: installDir: Polyventure: {} launch: - /PolyventureL/PolyventureLinuxUniversal.x86_64: + "/PolyventureL/PolyventureLinuxUniversal.x86_64": - when: - bit: 64 os: linux store: steam - /PolyventureM/PolyventureMacUniversal.app: + "/PolyventureM/PolyventureMacUniversal.app": - when: - os: mac store: steam - /PolyventureW/Polyventure86_64.exe: + "/PolyventureW/Polyventure86_64.exe": - when: - bit: 64 os: windows @@ -403965,7 +405075,7 @@ Polywar: installDir: POLYWAR: {} launch: - /Polywar.exe: + "/Polywar.exe": - when: - os: windows store: steam @@ -403975,15 +405085,18 @@ Polywings: installDir: Polywings: {} launch: - /Polywings.app: + "/Polywings.app": - when: - os: mac store: steam - /Polywings.exe: + "/Polywings.exe": - when: - bit: 32 os: windows store: steam + - bit: 64 + os: windows + store: steam steam: id: 522300 Polzun: @@ -403993,7 +405106,7 @@ PomboTroll: installDir: PomboTroll: {} launch: - /PomboTroll.exe: + "/PomboTroll.exe": - when: - os: windows store: steam @@ -404003,15 +405116,15 @@ Pon Para and the Great Southern Labyrinth: installDir: Pon Para and the Great Southern Labyrinth: {} launch: - /Pon Para and the Great Southern Labyrinth.app/Contents/MacOS/Pon Para and the Great Southern Labyrinth: + "/Pon Para and the Great Southern Labyrinth.app/Contents/MacOS/Pon Para and the Great Southern Labyrinth": - when: - os: mac store: steam - /PonParaAndTheGreatSouthernLabyrinth: + "/PonParaAndTheGreatSouthernLabyrinth": - when: - os: linux store: steam - /PonParaAndTheGreatSouthernLabyrinth.exe: + "/PonParaAndTheGreatSouthernLabyrinth.exe": - when: - os: windows store: steam @@ -404021,7 +405134,7 @@ PonGlow: installDir: PonGlow: {} launch: - /Ponglow.exe: + "/Ponglow.exe": - when: - os: windows store: steam @@ -404029,7 +405142,7 @@ PonGlow: id: 1091910 Poncho: files: - /unity3d/Delve Interactive/Poncho/prefs: + "/unity3d/Delve Interactive/Poncho/prefs": tags: - config - save @@ -404038,15 +405151,15 @@ Poncho: installDir: Poncho: {} launch: - /Poncho.app: + "/Poncho.app": - when: - os: mac store: steam - /Poncho.exe: + "/Poncho.exe": - when: - os: windows store: steam - /Poncho.x86: + "/Poncho.x86": - when: - os: linux store: steam @@ -404060,7 +405173,7 @@ Pond Wars: installDir: Pond Wars: {} launch: - /Pond Wars.exe: + "/Pond Wars.exe": - when: - os: windows store: steam @@ -404080,7 +405193,7 @@ Pong Like: installDir: MyGame: {} launch: - /Pong like.exe: + "/Pong like.exe": - when: - os: windows store: steam @@ -404090,7 +405203,7 @@ Pong Quest: installDir: Pong Quest: {} launch: - /Pong Quest.exe: + "/Pong Quest.exe": - when: - store: steam steam: @@ -404099,15 +405212,15 @@ Pongo: installDir: Pongo: {} launch: - /Pongo.app: + "/Pongo.app": - when: - os: mac store: steam - /Pongo.exe: + "/Pongo.exe": - when: - os: windows store: steam - /Pongo.x86: + "/Pongo.x86": - when: - os: linux store: steam @@ -404121,7 +405234,7 @@ Ponkle: installDir: ponkle: {} launch: - /ponkle.exe: + "/ponkle.exe": - when: - os: windows store: steam @@ -404129,7 +405242,7 @@ Ponkle: id: 963020 Pony Island: files: - /unity3d/Daniel Mullins Games/Pony Island: + "/unity3d/Daniel Mullins Games/Pony Island": tags: - config - save @@ -404140,15 +405253,15 @@ Pony Island: installDir: Pony Island: {} launch: - /PonyIsland.app: + "/PonyIsland.app": - when: - os: mac store: steam - /PonyIsland.exe: + "/PonyIsland.exe": - when: - os: windows store: steam - /PonyIsland.x86: + "/PonyIsland.x86": - when: - os: linux store: steam @@ -404163,7 +405276,7 @@ Pony World 2: installDir: Pony World 2: {} launch: - /Pony World 2.exe: + "/Pony World 2.exe": - when: - os: windows store: steam @@ -404173,7 +405286,7 @@ Pony World 3: installDir: Pony World 3: {} launch: - /Pony World 3.exe: + "/Pony World 3.exe": - when: - store: steam steam: @@ -404182,18 +405295,18 @@ PooPee Wars: installDir: PooPee Wars: {} launch: - /PooPee_Wars.exe: + "/PooPee_Wars.exe": - when: - bit: 64 os: windows store: steam steam: id: 663830 -'PooShooter: Toilet Invaders': +"PooShooter: Toilet Invaders": installDir: win64: {} launch: - /nw.exe.exe: + "/nw.exe.exe": - when: - os: windows store: steam @@ -404203,7 +405316,7 @@ PooSky: installDir: PooSky: {} launch: - /inside/PooSky.exe: + "/inside/PooSky.exe": - when: - os: windows store: steam @@ -404213,7 +405326,7 @@ Pool 2D - Poolians: installDir: Pool 2D - Poolians: {} launch: - /Poolians.exe: + "/Poolians.exe": - when: - os: windows store: steam @@ -404223,7 +405336,7 @@ Pool Nation: installDir: Pool Nation: {} launch: - /Pool.exe: + "/Pool.exe": - when: - os: windows store: steam @@ -404233,7 +405346,7 @@ Pool Nation FX: installDir: Pool Nation FX: {} launch: - /PoolNationFX/Binaries/Win64/PoolNationFX.exe: + "/PoolNationFX/Binaries/Win64/PoolNationFX.exe": - when: - bit: 64 os: windows @@ -404242,7 +405355,7 @@ Pool Nation FX: id: 314000 Pool Panic: files: - /AppData/LocalLow/Rekim Ltd/PoolPanic/localSave.sav: + "/AppData/LocalLow/Rekim Ltd/PoolPanic/localSave.sav": tags: - save when: @@ -404250,7 +405363,7 @@ Pool Panic: installDir: Pool Panic: {} launch: - /PoolPanic.exe: + "/PoolPanic.exe": - when: - os: windows store: steam @@ -404262,19 +405375,19 @@ Pool Panic: id: 522240 Pool Shark: files: - /LiveBilliards.ini: + "/LiveBilliards.ini": tags: - config when: - os: windows - /Saved: + "/Saved": tags: - save when: - os: windows Pool Shark 2: files: - Saves: + "Saves": tags: - save when: @@ -404288,12 +405401,12 @@ Pool of Death: id: 497240 Pool of Radiance: files: - /POOL.CFG: + "/POOL.CFG": tags: - config when: - os: dos - /SAVE: + "/SAVE": tags: - save when: @@ -404302,21 +405415,21 @@ Pool of Radiance: id: 1432640961 steam: id: 1882370 -'Pool of Radiance: Ruins of Myth Drannor': +"Pool of Radiance: Ruins of Myth Drannor": files: - /savegames: + "/savegames": tags: - save when: - os: windows Pools of Darkness: files: - /POOL4.CFG: + "/POOL4.CFG": tags: - config when: - os: dos - /SAVE: + "/SAVE": tags: - save when: @@ -404329,7 +405442,7 @@ Poop Slinger: installDir: Poop Slinger: {} launch: - /PoopSlinger.exe: + "/PoopSlinger.exe": - when: - os: windows store: steam @@ -404342,7 +405455,7 @@ Pooper Scooper: installDir: Pooper Scooper: {} launch: - /PooperScooper.exe: + "/PooperScooper.exe": - when: - os: windows store: steam @@ -404352,7 +405465,7 @@ Pooplers: installDir: Pooplers: {} launch: - /Pooplers.exe: + "/Pooplers.exe": - when: - os: windows store: steam @@ -404365,7 +405478,7 @@ Poopy Philosophy: installDir: PoopyPhilosophy: {} launch: - /PoopyPhilosophy.exe: + "/PoopyPhilosophy.exe": - when: - os: windows store: steam @@ -404375,7 +405488,7 @@ Poor Stickman: installDir: Poor Stickman: {} launch: - /Poor Stickman.exe: + "/Poor Stickman.exe": - when: - store: steam steam: @@ -404384,7 +405497,7 @@ Poostall Royale: installDir: POOSTALL Royale: {} launch: - /Poostall_Royale.exe: + "/Poostall_Royale.exe": - when: - bit: 64 os: windows @@ -404396,23 +405509,23 @@ Pop Pop Boom Boom VR: Pop Pop Boom Boom: {} steam: id: 701370 -Pop'n Pop: +"Pop'n Pop": files: - /keymap.dat: + "/keymap.dat": tags: - config when: - os: windows - /ppsavdat.sav: + "/ppsavdat.sav": tags: - save when: - os: windows -Pop'n'splat: +"Pop'n'splat": installDir: - Pop'n'splat: {} + "Pop'n'splat": {} launch: - /Pop'n'splat.exe: + "/Pop'n'splat.exe": - when: - os: windows store: steam @@ -404422,7 +405535,7 @@ Popap: installDir: Popap: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -404432,7 +405545,7 @@ Poppy Kart: installDir: Poppy Kart: {} launch: - /PoppyKart.exe: + "/PoppyKart.exe": - when: - os: windows store: steam @@ -404440,17 +405553,17 @@ Poppy Kart: id: 352530 Poppy Playtime: files: - /Playtime_Prototype4/Saved/SaveGames: + "/Playtime_Prototype4/Saved/SaveGames": tags: - save when: - os: windows - /Poppy_Playtime/Saved/Config/WindowsNoEditor: + "/Poppy_Playtime/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /Poppy_Playtime/Saved/SaveGames: + "/Poppy_Playtime/Saved/SaveGames": tags: - save when: @@ -404458,19 +405571,19 @@ Poppy Playtime: installDir: Poppy Playtime: {} launch: - /PlaytimeLauncher/PlaytimeLauncher.exe: - - arguments: '-dx11' + "/PlaytimeLauncher/PlaytimeLauncher.exe": + - arguments: "-dx11" when: - bit: 64 os: windows store: steam steam: id: 1721470 -Poppy's Nightmare: +"Poppy's Nightmare": installDir: - Poppy's Nightmare: {} + "Poppy's Nightmare": {} launch: - /Poppy's Nightmare.exe: + "/Poppy's Nightmare.exe": - when: - store: steam steam: @@ -404479,47 +405592,47 @@ Poptropica: installDir: Poptropica: {} launch: - /MAC/Poptropica.app: + "/MAC/Poptropica.app": - when: - os: mac store: steam - /Poptropica.exe: + "/Poptropica.exe": - when: - os: windows store: steam steam: id: 1813270 -'Population: One': +"Population: One": installDir: PopulationONE: {} steam: id: 691260 Populous: files: - /Game/Game/*.GAM: + "/Game/Game/*.GAM": tags: - save when: - os: windows - /Game/Game/DATA: + "/Game/Game/DATA": tags: - config when: - os: windows gog: id: 1207658963 -'Populous II: Trials of the Olympian Gods': +"Populous II: Trials of the Olympian Gods": files: - /POPSAVE: + "/POPSAVE": tags: - save when: - os: dos gog: id: 1207658981 -'Populous: The Beginning': +"Populous: The Beginning": files: - /Save: + "/Save": tags: - save when: @@ -404528,12 +405641,12 @@ Populous: id: 1207659027 Popup Dungeon: files: - /My Games/Popup Dungeon/Release/Profiles/*/Options.bytes: + "/My Games/Popup Dungeon/Release/Profiles/*/Options.bytes": tags: - config when: - os: windows - /My Games/Popup Dungeon/Release/Profiles/*/Preferences.bytes: + "/My Games/Popup Dungeon/Release/Profiles/*/Preferences.bytes": tags: - config when: @@ -404541,7 +405654,7 @@ Popup Dungeon: installDir: Popup Dungeon: {} launch: - /Popup Dungeon.exe: + "/Popup Dungeon.exe": - when: - store: steam registry: @@ -404554,7 +405667,7 @@ Porcelain Panic: installDir: Porcelain Panic: {} launch: - /PorcelainPanic.exe: + "/PorcelainPanic.exe": - when: - os: windows store: steam @@ -404564,15 +405677,15 @@ Porcuball: installDir: Porcuball: {} launch: - /Porcuball.app/Contents/MacOS/Porcuball: + "/Porcuball.app/Contents/MacOS/Porcuball": - when: - os: mac store: steam - /Porcuball.exe: + "/Porcuball.exe": - when: - os: windows store: steam - /Porcuball.x86: + "/Porcuball.x86": - when: - os: linux store: steam @@ -404582,25 +405695,25 @@ Porcunipine: installDir: Porcunipine: {} launch: - /Porcunipine.app: + "/Porcunipine.app": - when: - os: mac store: steam - /Porcunipine.exe: + "/Porcunipine.exe": - when: - os: windows store: steam - /Porcunipine.x86: + "/Porcunipine.x86": - when: - os: linux store: steam steam: id: 352620 -Porcupine's Fate: +"Porcupine's Fate": installDir: - Porcupine's Fate: {} + "Porcupine's Fate": {} launch: - /Porcupines_FateFinal.exe: + "/Porcupines_FateFinal.exe": - when: - os: windows store: steam @@ -404610,16 +405723,16 @@ Porno Studio Tycoon: installDir: Porno Studio Tycoon: {} launch: - /nw.exe: - - arguments: '--single-process' + "/nw.exe": + - arguments: "--single-process" when: - os: windows store: steam - when: - os: windows store: steam - /nwjs.app: - - arguments: '--single-process' + "/nwjs.app": + - arguments: "--single-process" when: - os: mac store: steam @@ -404628,15 +405741,15 @@ Porno Studio Tycoon: store: steam steam: id: 535490 -'Porradaria 2: Pagode of the Night': +"Porradaria 2: Pagode of the Night": installDir: Porradaria 2 Pagode of the Night: {} launch: - /po2.exe: + "/po2.exe": - when: - os: windows store: steam - /runner: + "/runner": - when: - os: linux store: steam @@ -404646,11 +405759,11 @@ Porradaria Upgrade: installDir: Porradaria Upgrade: {} launch: - /poup.exe: + "/poup.exe": - when: - os: windows store: steam - /runner: + "/runner": - when: - os: linux store: steam @@ -404658,12 +405771,12 @@ Porradaria Upgrade: id: 399000 Port Royale 2: files: - /Ascaron Entertainment/Port Royale 2: + "/Ascaron Entertainment/Port Royale 2": tags: - save when: - os: windows - /Ascaron Entertainment/Port Royale 2/Save: + "/Ascaron Entertainment/Port Royale 2/Save": tags: - config when: @@ -404673,22 +405786,22 @@ Port Royale 2: installDir: Port Royale 2: {} launch: - /PR2.exe: + "/PR2.exe": - when: - store: steam - /PR2Config.exe: + "/PR2Config.exe": - when: - store: steam steam: id: 12470 -'Port Royale 3: Pirates & Merchants': +"Port Royale 3: Pirates & Merchants": files: - /Kalypso Media/Port Royale 3/options.cfg: + "/Kalypso Media/Port Royale 3/options.cfg": tags: - config when: - os: windows - /Kalypso Media/Port Royale 3/savegames: + "/Kalypso Media/Port Royale 3/savegames": tags: - save when: @@ -404698,7 +405811,7 @@ Port Royale 2: installDir: Port Royale 3: {} launch: - /PortRoyale3.exe: + "/PortRoyale3.exe": - when: - store: steam steam: @@ -404712,21 +405825,21 @@ Port Royale 4: installDir: Port Royale 4: {} launch: - /PortRoyale4.exe: + "/PortRoyale4.exe": - when: - bit: 64 os: windows store: steam steam: id: 1024650 -'Port Royale: Gold, Power and Pirates': +"Port Royale: Gold, Power and Pirates": files: - /Save/*.mrk: + "/Save/*.mrk": tags: - save when: - os: windows - /Save/options.sav: + "/Save/options.sav": tags: - config when: @@ -404740,11 +405853,11 @@ Port of Call: installDir: Port of Call: {} launch: - /PortOfCall.app: + "/PortOfCall.app": - when: - os: mac store: steam - /PortOfCall.exe: + "/PortOfCall.exe": - when: - os: windows store: steam @@ -404752,12 +405865,12 @@ Port of Call: id: 356520 Portal: files: - /portal/cfg: + "/portal/cfg": tags: - config when: - store: steam - /portal/save: + "/portal/save": tags: - save when: @@ -404768,17 +405881,19 @@ Portal: installDir: Portal: {} launch: - /hl2.exe: - - arguments: '-game portal -steam' + "/hl2.exe": + - arguments: "-game portal -steam" when: - os: windows store: steam - workingDir: /bin - /hl2.sh: - - arguments: '-game portal -steam' + workingDir: "/bin" + "/hl2.sh": + - arguments: "-game portal -steam" when: - os: mac store: steam + - os: linux + store: steam registry: HKEY_CURRENT_USER/Software/Valve/Source/portal/Settings: tags: @@ -404787,22 +405902,22 @@ Portal: id: 400 Portal 2: files: - /portal2/SAVE: + "/portal2/SAVE": tags: - save when: - store: steam - /portal2/cfg: + "/portal2/cfg": tags: - config when: - os: windows - /portal2_dlc2/cfg: + "/portal2_dlc2/cfg": tags: - config when: - os: windows - /update/cfg: + "/update/cfg": tags: - config when: @@ -404811,41 +405926,43 @@ Portal 2: steamExtra: - 659 - 660 - - 323180 - 104600 + - 323180 installDir: Portal 2: {} launch: - /portal2.exe: - - arguments: '-game portal2 -steam' + "/portal2.exe": + - arguments: "-game portal2 -steam" when: - os: windows store: steam - /portal2.sh: - - arguments: '-game portal2 -steam' + "/portal2.sh": + - arguments: "-game portal2 -steam" when: + - os: mac + store: steam - os: linux store: steam steam: id: 620 Portal 2 Sixense Perceptual Pack: files: - /portal2/cfg: + "/portal2/cfg": tags: - config when: - os: windows - /portal2_dlc2/cfg: + "/portal2_dlc2/cfg": tags: - config when: - os: windows - /portal2_sixense/cfg: + "/portal2_sixense/cfg": tags: - config when: - os: windows - /update/cfg: + "/update/cfg": tags: - config when: @@ -404853,16 +405970,16 @@ Portal 2 Sixense Perceptual Pack: installDir: Portal 2 Sixense Perceptual Pack: {} launch: - /portal2.exe: + "/portal2.exe": - when: - store: steam steam: id: 247120 -'Portal Dungeon: Goblin Escape': +"Portal Dungeon: Goblin Escape": installDir: Portal Dungeon Goblin Escape: {} launch: - /WindowsNoEditor/GoblinEscape.exe: + "/WindowsNoEditor/GoblinEscape.exe": - when: - bit: 64 os: windows @@ -404874,12 +405991,12 @@ Portal Key: id: 539360 Portal Knights: files: - /portal_knights.cfg: + "/portal_knights.cfg": tags: - config when: - os: windows - /userdata//374040/remote: + "/userdata//374040/remote": tags: - save when: @@ -404887,14 +406004,14 @@ Portal Knights: installDir: Portal Knights: {} launch: - /portal_knights_x64.exe: + "/portal_knights_x64.exe": - when: - store: steam steam: id: 374040 Portal Reloaded: files: - /portalreloaded/SAVE/: + "/portalreloaded/SAVE/": tags: - save when: @@ -404902,26 +406019,28 @@ Portal Reloaded: installDir: Portal Reloaded: {} launch: - /portal2.exe: + "/portal2.exe": - arguments: +r_hunkalloclightmaps 0 when: - os: windows store: steam - /portal2.sh: - - arguments: '-game portal2 -steam +r_hunkalloclightmaps 0 +r_dynamic 0' + "/portal2.sh": + - arguments: "-game portal2 -steam +r_hunkalloclightmaps 0 +r_dynamic 0" when: - os: mac store: steam + - os: linux + store: steam steam: id: 1255980 -'Portal Stories: Mel': +"Portal Stories: Mel": files: - /portal_stories/SAVE: + "/portal_stories/SAVE": tags: - save when: - store: steam - /portal_stories/cfg: + "/portal_stories/cfg": tags: - config when: @@ -404929,55 +406048,55 @@ Portal Reloaded: installDir: Portal Stories Mel: {} launch: - /portal2.exe: - - arguments: '-game portal_stories -steam -condebug' + "/portal2.exe": + - arguments: "-game portal_stories -steam -condebug" when: - os: windows store: steam - /portal2.sh: - - arguments: '-game portal_stories -steam' + "/portal2.sh": + - arguments: "-game portal_stories -steam" when: - os: linux store: steam - /portal2_osx: - - arguments: '-game portal_stories -steam -condebug' + "/portal2_osx": + - arguments: "-game portal_stories -steam -condebug" when: - os: mac store: steam steam: id: 317400 -'Portal Stories: VR': +"Portal Stories: VR": installDir: Portal Stories VR: {} steam: id: 446750 -'Portal of Evil: Stolen Runes': +"Portal of Evil: Stolen Runes": installDir: Portal of Evil Stolen Runes Collectors Edition: {} launch: - /PortalOfEvil_StolenRunes.exe: + "/PortalOfEvil_StolenRunes.exe": - when: - os: windows store: steam steam: id: 361850 -'Portal: Revolution': +"Portal: Revolution": steam: id: 601360 Portarius: installDir: Portarius: {} launch: - /Portarius.app/Contents/MacOS/Portarius-desktop: + "/Portarius.app/Contents/MacOS/Portarius-desktop": - when: - os: mac store: steam - /Portarius.exe: + "/Portarius.exe": - when: - bit: 32 os: windows store: steam - /run.sh: + "/run.sh": - when: - os: linux store: steam @@ -404985,22 +406104,22 @@ Portarius: id: 747050 Ports of Call: files: - /GAMES: + "/GAMES": tags: - save when: - os: dos - /REGISTER.LIC: + "/REGISTER.LIC": tags: - config when: - os: dos - /games: + "/games": tags: - save when: - os: windows - /register.lic: + "/register.lic": tags: - config when: @@ -405008,56 +406127,56 @@ Ports of Call: installDir: Ports of Call Classic: {} launch: - /key.png: + "/key.png": - when: - store: steam - /wpocdaen.exe: + "/wpocdaen.exe": - when: - os: windows store: steam - /wpocdutch.exe: + "/wpocdutch.exe": - when: - os: windows store: steam - /wpocfin.exe: + "/wpocfin.exe": - when: - os: windows store: steam - /wpocfrench.exe: + "/wpocfrench.exe": - when: - os: windows store: steam - /wpocgerm.exe: + "/wpocgerm.exe": - when: - os: windows store: steam - /wpocitalian.exe: + "/wpocitalian.exe": - when: - os: windows store: steam - /wpocnorwegian.exe: + "/wpocnorwegian.exe": - when: - os: windows store: steam - /wpocporto.exe: + "/wpocporto.exe": - when: - os: windows store: steam - /wpocspanish.exe: + "/wpocspanish.exe": - when: - os: windows store: steam - /wpocswedish.exe: + "/wpocswedish.exe": - when: - os: windows store: steam - /wpocusa.exe: + "/wpocusa.exe": - when: - os: windows store: steam steam: id: 1085260 -'Portugal 1111: A Conquista de Soure': +"Portugal 1111: A Conquista de Soure": registry: HKEY_CURRENT_USER/SOFTWARE/Ciberbit/Portugal1111: tags: @@ -405066,7 +406185,7 @@ Posable Heroes: installDir: Posable Heroes: {} launch: - /PosableHeroes.exe: + "/PosableHeroes.exe": - when: - os: windows store: steam @@ -405076,7 +406195,7 @@ Poseidon - Project Dark Sky: installDir: Poseidon - Project Dark Sky: {} launch: - /Poseidon - Project Dark Sky.exe: + "/Poseidon - Project Dark Sky.exe": - when: - os: windows store: steam @@ -405086,16 +406205,16 @@ Posibility: installDir: Posibility: {} launch: - /Posibility.exe: + "/Posibility.exe": - when: - os: windows store: steam - /Posibility.x86: + "/Posibility.x86": - when: - bit: 32 os: linux store: steam - /Posibility.x86_64: + "/Posibility.x86_64": - when: - bit: 64 os: linux @@ -405106,7 +406225,7 @@ Position: installDir: Position: {} launch: - /Position.exe: + "/Position.exe": - when: - os: windows store: steam @@ -405121,7 +406240,7 @@ PositronX: installDir: PositronX: {} launch: - /PositronX.exe: + "/PositronX.exe": - when: - bit: 64 os: windows @@ -405132,7 +406251,7 @@ Possessed: installDir: Possessed: {} launch: - /Possessed.exe: + "/Possessed.exe": - when: - os: windows store: steam @@ -405142,15 +406261,15 @@ Possession: installDir: Possession: {} launch: - /Possession.app: + "/Possession.app": - when: - os: mac store: steam - /Possession.exe: + "/Possession.exe": - when: - os: windows store: steam - /possession.sh: + "/possession.sh": - when: - bit: 64 os: linux @@ -405161,7 +406280,7 @@ Post Apocalyptic Mayhem: installDir: Post Apocalyptic Mayhem: {} launch: - /PAMMainGame.exe: + "/PAMMainGame.exe": - when: - store: steam steam: @@ -405170,11 +406289,11 @@ Post Human W.A.R: installDir: Post Human W.A.R: {} launch: - /Post Human W.A.R.app: + "/Post Human W.A.R.app": - when: - os: mac store: steam - /Post Human W.A.R.exe: + "/Post Human W.A.R.exe": - when: - os: windows store: steam @@ -405182,7 +406301,7 @@ Post Human W.A.R: id: 462240 Post Master: files: - /Post Master: + "/Post Master": tags: - save when: @@ -405190,11 +406309,11 @@ Post Master: installDir: Post Master Simulator: {} launch: - /PostMaster.app/Contents/MacOS/PostMaster: + "/PostMaster.app/Contents/MacOS/PostMaster": - when: - os: mac store: steam - /PostMaster.exe: + "/PostMaster.exe": - when: - os: windows store: steam @@ -405202,13 +406321,13 @@ Post Master: id: 275080 Post Mortem: files: - /Post_Mortem Saves: + "/Post_Mortem Saves": tags: - config - save when: - os: windows - /Post_Mortem Saves: + "/Post_Mortem Saves": tags: - config - save @@ -405219,14 +406338,14 @@ Post Mortem: installDir: Post Mortem: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: id: 46550 Post Scriptum: files: - /PostScriptum: + "/PostScriptum": tags: - config when: @@ -405234,7 +406353,7 @@ Post Scriptum: installDir: Post Scriptum: {} launch: - /Launch_PostScriptum.exe: + "/Launch_PostScriptum.exe": - when: - bit: 64 os: windows @@ -405245,7 +406364,7 @@ Post Soviet Zombies: installDir: Post Soviet Zombies: {} launch: - /Post soviet zombies.exe: + "/Post soviet zombies.exe": - when: - os: windows store: steam @@ -405256,12 +406375,12 @@ Post Trauma: id: 1750030 Post Void: files: - /Post_Void/config.ini: + "/Post_Void/config.ini": tags: - config when: - os: windows - /Post_Void/savedata.ini: + "/Post_Void/savedata.ini": tags: - save when: @@ -405269,7 +406388,7 @@ Post Void: installDir: Post Void: {} launch: - /Post Void.exe: + "/Post Void.exe": - when: - store: steam steam: @@ -405278,7 +406397,7 @@ Post War Dreams: installDir: Post War Dreams: {} launch: - /WindowsNoEditor/PostWarDreams.exe: + "/WindowsNoEditor/PostWarDreams.exe": - when: - store: steam steam: @@ -405290,7 +406409,7 @@ PostCollapse: installDir: PostCollapse: {} launch: - /postcollapse.exe: + "/postcollapse.exe": - when: - os: windows store: steam @@ -405298,32 +406417,32 @@ PostCollapse: id: 509770 Postal: files: - /Postal Plus.ini: + "/Postal Plus.ini": tags: - config when: - os: windows - /Postal.ini: + "/Postal.ini": tags: - config when: - os: windows - /savegame: + "/savegame": tags: - save when: - os: windows - /RunningWithScissors/Postal Plus/POSTAL.INI: + "/RunningWithScissors/Postal Plus/POSTAL.INI": tags: - config when: - os: windows - /RunningWithScissors/Postal Plus/savegame: + "/RunningWithScissors/Postal Plus/savegame": tags: - save when: - os: windows - /PostalPlus: + "/PostalPlus": tags: - config - save @@ -405334,15 +406453,15 @@ Postal: installDir: POSTAL1: {} launch: - /Postal 1.app: + "/Postal 1.app": - when: - os: mac store: steam - /Postal Plus.exe: + "/Postal Plus.exe": - when: - os: windows store: steam - /postal1: + "/postal1": - when: - os: linux store: steam @@ -405350,32 +406469,32 @@ Postal: id: 232770 Postal 2: files: - /Save: + "/Save": tags: - save when: - os: windows - /System: + "/System": tags: - config when: - os: windows - /.lgp/postal2/Save: + "/.lgp/postal2/Save": tags: - save when: - os: linux - /.lgp/postal2/System: + "/.lgp/postal2/System": tags: - config when: - os: linux - /Library/Application Support/Postal 2/Save: + "/Library/Application Support/Postal 2/Save": tags: - save when: - os: mac - /Library/Application Support/Postal 2/System: + "/Library/Application Support/Postal 2/System": tags: - config when: @@ -405392,40 +406511,40 @@ Postal 2: installDir: POSTAL2Complete: {} launch: - /Postal 2.app: + "/Postal 2.app": - when: - os: mac store: steam - /ShareThePain/Share The Pain.app: - - arguments: '-USERINI=Postal2MPUser.ini' + "/ShareThePain/Share The Pain.app": + - arguments: "-USERINI=Postal2MPUser.ini" when: - os: mac store: steam - /ShareThePain/System/Postal2MP.exe: + "/ShareThePain/System/Postal2MP.exe": - when: - os: windows store: steam - workingDir: /ShareThePain/System - /System/Postal2.exe: + workingDir: "/ShareThePain/System" + "/System/Postal2.exe": - when: - os: windows store: steam - workingDir: /System - /System/postal2-bin: + workingDir: "/System" + "/System/postal2-bin": - when: - os: linux store: steam - workingDir: /System + workingDir: "/System" steam: id: 223470 -'Postal 4: No Regerts': +"Postal 4: No Regerts": files: - /Postal4/Saved/Config/WindowsNoEditor: + "/Postal4/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /Postal4/Saved/SaveGames: + "/Postal4/Saved/SaveGames": tags: - save when: @@ -405435,7 +406554,7 @@ Postal 2: installDir: POSTAL 4: {} launch: - /Postal4.exe: + "/Postal4.exe": - when: - bit: 64 os: windows @@ -405444,12 +406563,12 @@ Postal 2: id: 707030 Postal III: files: - /p3/SAVE: + "/p3/SAVE": tags: - save when: - os: windows - /p3/cfg: + "/p3/cfg": tags: - config when: @@ -405457,29 +406576,29 @@ Postal III: installDir: Postal III: {} launch: - /p3.exe: + "/p3.exe": - when: - store: steam steam: id: 10220 Postal Redux: files: - /.config/Epic/PostalREDUX/Saved/Config: + "/.config/Epic/PostalREDUX/Saved/Config": tags: - config when: - os: linux - /.config/Epic/PostalREDUX/Saved/SaveGames: + "/.config/Epic/PostalREDUX/Saved/SaveGames": tags: - save when: - os: linux - /PostalREDUX: + "/PostalREDUX": tags: - save when: - os: windows - /PostalREDUX/Saved/Config/WindowsNoEditor: + "/PostalREDUX/Saved/Config/WindowsNoEditor": tags: - config when: @@ -405487,25 +406606,25 @@ Postal Redux: installDir: POSTAL Redux: {} launch: - /PostalREDUX.app: + "/PostalREDUX.app": - when: - os: mac store: steam - /PostalREDUX.exe: + "/PostalREDUX.exe": - when: - bit: 64 os: windows store: steam - /PostalREDUX.sh: + "/PostalREDUX.sh": - when: - bit: 64 os: linux store: steam steam: id: 401680 -'Postal: Brain Damaged': +"Postal: Brain Damaged": files: - /AppData/LocalLow/Hyperstrange/POSTAL Brain Damaged: + "/AppData/LocalLow/Hyperstrange/POSTAL Brain Damaged": tags: - save when: @@ -405515,20 +406634,20 @@ Postal Redux: installDir: POSTAL Brain Damaged: {} launch: - /POSTAL Brain Damaged.exe: + "/POSTAL Brain Damaged.exe": - when: - store: steam steam: id: 1359980 -'Posthuman: Sanctuary': +"Posthuman: Sanctuary": installDir: Posthuman Sanctuary: {} launch: - /Posthuman-Sanctuary.app: + "/Posthuman-Sanctuary.app": - when: - os: mac store: steam - /Posthuman-Sanctuary.exe: + "/Posthuman-Sanctuary.exe": - when: - os: windows store: steam @@ -405536,21 +406655,21 @@ Postal Redux: id: 806910 Postmen of Horizon: files: - /renpy/Postmen_of_Horizon/*.save: + "/renpy/Postmen_of_Horizon/*.save": tags: - save when: - os: windows - /renpy/Postmen_of_Horizon/persistent: + "/renpy/Postmen_of_Horizon/persistent": tags: - config when: - os: windows steam: id: 662980 -'Postmortem: One Must Die': +"Postmortem: One Must Die": files: - /config.cfg: + "/config.cfg": tags: - config when: @@ -405558,14 +406677,14 @@ Postmen of Horizon: installDir: PostmortemGame: {} launch: - /PostmortemGame/KeyBinder.exe: + "/PostmortemGame/KeyBinder.exe": - when: - store: steam - workingDir: /PostmortemGame - /PostmortemGame/PostmortemGame.exe: + workingDir: "/PostmortemGame" + "/PostmortemGame/PostmortemGame.exe": - when: - store: steam - /ScytheCutBonusMaterials: + "/ScytheCutBonusMaterials": - when: - store: steam steam: @@ -405574,7 +406693,7 @@ Postworld: installDir: POSTWORLD: {} launch: - /PostworldGame.exe: + "/PostworldGame.exe": - when: - bit: 64 os: windows @@ -405585,15 +406704,15 @@ Potata: installDir: Potata: {} launch: - /Potata Linux.x86_64: + "/Potata Linux.x86_64": - when: - os: linux store: steam - /Potata Mac.app/Contents/MacOS/potata_game: + "/Potata Mac.app/Contents/MacOS/potata_game": - when: - os: mac store: steam - /potata_game.exe: + "/potata_game.exe": - when: - os: windows store: steam @@ -405603,11 +406722,11 @@ Potato Thriller Steamed Potato Edition: installDir: Potato_Thriller_Steamed_Potato_Edition: {} launch: - /Potato_Thriller_Steamed_Potato_Edition.exe: + "/Potato_Thriller_Steamed_Potato_Edition.exe": - when: - os: windows store: steam - /game.exe: + "/game.exe": - when: - store: steam steam: @@ -405616,7 +406735,7 @@ Potatoe: installDir: Potatoe: {} launch: - /nw.exe: + "/nw.exe": - when: - store: steam steam: @@ -405625,11 +406744,11 @@ Potatoman Seeks the Troof: installDir: Potatoman: {} launch: - /Potatoman Seeks The Troof.app: + "/Potatoman Seeks The Troof.app": - when: - os: mac store: steam - /Potatoman Seeks The Troof.exe: + "/Potatoman Seeks The Troof.exe": - when: - os: windows store: steam @@ -405639,11 +406758,11 @@ Potemkin: installDir: Potemkin: {} launch: - /Potemkin.app: + "/Potemkin.app": - when: - os: mac store: steam - /Potemkin.exe: + "/Potemkin.exe": - when: - os: windows store: steam @@ -405653,7 +406772,7 @@ Potentia: installDir: Potentia: {} launch: - /PotentiaGame.exe: + "/PotentiaGame.exe": - when: - os: windows store: steam @@ -405661,7 +406780,7 @@ Potentia: id: 652530 Potion Craft: files: - /AppData/LocalLow/niceplay games/Potion Craft/SavesSteam: + "/AppData/LocalLow/niceplay games/Potion Craft/SavesSteam": tags: - save when: @@ -405674,7 +406793,7 @@ Potion Craft: installDir: Potion Craft: {} launch: - /Potion Craft.exe: + "/Potion Craft.exe": - when: - os: windows store: steam @@ -405688,15 +406807,15 @@ Potion Explosion: installDir: Potion Explosion: {} launch: - /PotionExplosion.app/Contents/MacOS/PotionExplosion: + "/PotionExplosion.app/Contents/MacOS/PotionExplosion": - when: - os: mac store: steam - /PotionExplosion.exe: + "/PotionExplosion.exe": - when: - os: windows store: steam - /PotionExplosion.x86_64: + "/PotionExplosion.x86_64": - when: - os: linux store: steam @@ -405710,7 +406829,7 @@ Potion Party: installDir: Potion Party: {} launch: - /Potion Party.exe: + "/Potion Party.exe": - when: - store: steam steam: @@ -405719,11 +406838,11 @@ Potion Paws: installDir: Potion Paws: {} launch: - /PotionPaws.app: + "/PotionPaws.app": - when: - os: mac store: steam - /PotionPaws.exe: + "/PotionPaws.exe": - when: - os: windows store: steam @@ -405735,12 +406854,15 @@ Potion Permit: installDir: Potion Permit: {} launch: - /Potion Permit.app: + "/Potion Permit.app": - when: - os: mac store: steam - /Potion Permit.exe: + "/Potion Permit.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam @@ -405752,7 +406874,7 @@ Potion Tycoon: installDir: Potion Tycoon: {} launch: - /Potion Tycoon.exe: + "/Potion Tycoon.exe": - when: - os: windows store: steam @@ -405762,25 +406884,25 @@ Potion island: installDir: Potion island: {} launch: - /Potion island.exe: + "/Potion island.exe": - when: - os: windows store: steam steam: id: 940600 -'Potioneer: The VR Gardening Simulator': +"Potioneer: The VR Gardening Simulator": installDir: Potioneer: {} steam: id: 544410 Potionomics: files: - /Potionomics/Saved/Config/WindowsNoEditor: + "/Potionomics/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /Potionomics/Saved/SaveGames: + "/Potionomics/Saved/SaveGames": tags: - save when: @@ -405788,24 +406910,24 @@ Potionomics: installDir: Potionomics: {} launch: - /Potionomics.exe: + "/Potionomics.exe": - when: - os: windows store: steam steam: id: 1874490 -'Potions: A Curious Tale': +"Potions: A Curious Tale": steam: id: 378690 Pottery Maker: installDir: Pottery Crafts: {} launch: - /Pottery Crafts - Hand-Made Simulator.app/Contents/MacOS/Pottery Crafts - Hand-Made Simulator: + "/Pottery Crafts - Hand-Made Simulator.app/Contents/MacOS/Pottery Crafts - Hand-Made Simulator": - when: - os: mac store: steam - /Pottery Crafts - Hand-Made Simulator.exe: + "/Pottery Crafts - Hand-Made Simulator.exe": - when: - os: windows store: steam @@ -405824,7 +406946,7 @@ Pound of Ground: installDir: Pound of Ground: {} launch: - /ZL007.exe: + "/ZL007.exe": - when: - store: steam steam: @@ -405833,7 +406955,7 @@ Poverty is a Choice: installDir: Poverty is a Choice: {} launch: - /Stock2D.exe: + "/Stock2D.exe": - when: - os: windows store: steam @@ -405843,7 +406965,7 @@ PowBall Renaissance: installDir: PowBall Renaissance: {} launch: - /PowBallRen.exe: + "/PowBallRen.exe": - when: - os: windows store: steam @@ -405851,13 +406973,13 @@ PowBall Renaissance: id: 654600 Powargrid: files: - /.config/unity3d/Wee Free Studio/Powargrid: + "/.config/unity3d/Wee Free Studio/Powargrid": tags: - config - save when: - os: linux - /Library/Preferences/unity.Wee Free Studio.Powargrid.plist: + "/Library/Preferences/unity.Wee Free Studio.Powargrid.plist": tags: - config - save @@ -405866,22 +406988,22 @@ Powargrid: installDir: Powargrid: {} launch: - /Powargrid.app: + "/Powargrid.app": - when: - os: mac store: steam - /Powargrid.exe: + "/Powargrid.exe": - when: - os: windows store: steam - /Powargrid.x86: - - arguments: '-show-screen-selector' + "/Powargrid.x86": + - arguments: "-show-screen-selector" when: - bit: 32 os: linux store: steam - /Powargrid.x86_64: - - arguments: '-show-screen-selector' + "/Powargrid.x86_64": + - arguments: "-show-screen-selector" when: - bit: 64 os: linux @@ -405902,7 +407024,7 @@ Power: installDir: Power: {} launch: - /Destructoid.exe: + "/Destructoid.exe": - when: - bit: 64 os: windows @@ -405911,7 +407033,7 @@ Power: id: 1126850 Power & Revolution: files: - /Power & Revolution/profiles: + "/Power & Revolution/profiles": tags: - save when: @@ -405919,11 +407041,11 @@ Power & Revolution: installDir: Power & Revolution: {} launch: - /POWER AND REVOLUTION STEAM.app: + "/POWER AND REVOLUTION STEAM.app": - when: - os: mac store: steam - /_start.exe: + "/_start.exe": - when: - os: windows store: steam @@ -405931,7 +407053,7 @@ Power & Revolution: id: 467520 Power & Revolution 2019 Edition: files: - /Power & Revolution 2019 Edition/profiles: + "/Power & Revolution 2019 Edition/profiles": tags: - save when: @@ -405939,11 +407061,11 @@ Power & Revolution 2019 Edition: installDir: Power & Revolution 2019 Edition: {} launch: - /POWER AND REVOLUTION 2019 STEAM.app: + "/POWER AND REVOLUTION 2019 STEAM.app": - when: - os: mac store: steam - /_start.exe: + "/_start.exe": - when: - os: windows store: steam @@ -405953,7 +407075,7 @@ Power Block: installDir: Power Block: {} launch: - /PowerBlockFinal111.exe: + "/PowerBlockFinal111.exe": - when: - os: windows store: steam @@ -405961,12 +407083,12 @@ Power Block: id: 1089100 Power Bomberman: files: - /pb: + "/pb": tags: - save when: - os: windows - /pb/config.ini: + "/pb/config.ini": tags: - config when: @@ -405975,14 +407097,14 @@ Power Brain Trainer: installDir: Power Brain Trainer: {} launch: - /Power Brain Trainer.exe: + "/Power Brain Trainer.exe": - when: - store: steam steam: id: 1070300 Power Chord: files: - /AppData/LocalLow/Big Blue Bubble Inc/Power Chord/save: + "/AppData/LocalLow/Big Blue Bubble Inc/Power Chord/save": tags: - save when: @@ -405990,7 +407112,7 @@ Power Chord: installDir: Power Chord: {} launch: - /PowerChord.exe: + "/PowerChord.exe": - when: - bit: 64 os: windows @@ -406006,20 +407128,20 @@ Power Gunner: installDir: Power Gunner: {} launch: - /PowerGunner.app/Contents/MacOS/PowerGunner: + "/PowerGunner.app/Contents/MacOS/PowerGunner": - when: - os: mac store: steam - /PowerGunner.exe: + "/PowerGunner.exe": - when: - os: windows store: steam - /PowerGunner.x86: + "/PowerGunner.x86": - when: - bit: 32 os: linux store: steam - /PowerGunner.x86_64: + "/PowerGunner.x86_64": - when: - bit: 64 os: linux @@ -406030,11 +407152,11 @@ Power Hover: installDir: Power Hover: {} launch: - /PowerHover.app: + "/PowerHover.app": - when: - os: mac store: steam - /PowerHover.exe: + "/PowerHover.exe": - when: - os: windows store: steam @@ -406054,26 +407176,26 @@ Power Punch II: installDir: Power Punch II: {} launch: - /power punch ii.exe: + "/power punch ii.exe": - when: - os: windows store: steam steam: id: 1137670 -'Power Rangers: Battle for the Grid': +"Power Rangers: Battle for the Grid": files: - /AppData/LocalLow/nWay Inc/Power Rangers - Battle for The Grid/SaveData: + "/AppData/LocalLow/nWay Inc/Power Rangers - Battle for The Grid/SaveData": tags: - save when: - os: windows - /Packages/nWay.PowerRangersBattlefortheGrid_p9e4qmq568j3m/LocalState: + "/Packages/nWay.PowerRangersBattlefortheGrid_p9e4qmq568j3m/LocalState": tags: - config when: - os: windows store: microsoft - /Packages/nWay.PowerRangersBattlefortheGrid_p9e4qmq568j3m/SystemAppData/wgs: + "/Packages/nWay.PowerRangersBattlefortheGrid_p9e4qmq568j3m/SystemAppData/wgs": tags: - save when: @@ -406082,7 +407204,7 @@ Power Punch II: installDir: Power Rangers Battle for the Grid: {} launch: - /BattleForTheGrid.exe: + "/BattleForTheGrid.exe": - when: - os: windows store: steam @@ -406097,7 +407219,7 @@ Power Stealers: installDir: PowerStealers: {} launch: - /PowerStealers/PowerStealers.exe: + "/PowerStealers/PowerStealers.exe": - when: - bit: 64 os: windows @@ -406110,12 +407232,12 @@ Power Struggle: installDir: PowerStruggle: {} launch: - /dosbox_windows/dosbox.exe: - - arguments: \"POWERSTG.EXE\" -conf \"dosbox_power-struggle.conf\" -noconsole + "/dosbox_windows/dosbox.exe": + - arguments: "\\\"POWERSTG.EXE\\\" -conf \\\"dosbox_power-struggle.conf\\\" -noconsole" when: - os: windows store: steam - /runPowerStruggle.sh: + "/runPowerStruggle.sh": - when: - os: linux store: steam @@ -406125,17 +407247,17 @@ Power Supplied: installDir: Power Supplied: {} launch: - /Power Supplied.exe: + "/Power Supplied.exe": - when: - bit: 32 os: windows store: steam - /Power Supplied_x64.exe: + "/Power Supplied_x64.exe": - when: - bit: 64 os: windows store: steam - /Power_Supplied_Mac.app/Contents/MacOS/Power_Supplied_Mac: + "/Power_Supplied_Mac.app/Contents/MacOS/Power_Supplied_Mac": - when: - os: mac store: steam @@ -406146,11 +407268,11 @@ Power Tools VR: Power Tools VR: {} steam: id: 591920 -'Power War: The First Men': +"Power War: The First Men": installDir: PowerWar_The First Men: {} launch: - /PowerWar_TFM.exe: + "/PowerWar_TFM.exe": - when: - os: windows store: steam @@ -406160,11 +407282,11 @@ Power of Defense: installDir: Power Of Defense: {} launch: - /POD.app: + "/POD.app": - when: - os: mac store: steam - /POD.exe: + "/POD.exe": - when: - os: windows store: steam @@ -406172,22 +407294,22 @@ Power of Defense: id: 60700 Power of Love: files: - /data: + "/data": tags: - save when: - os: windows - /map/my_map.sdf: + "/map/my_map.sdf": tags: - save when: - os: windows - /option/option.sdf: + "/option/option.sdf": tags: - config when: - os: windows - /userdata//368710/remote: + "/userdata//368710/remote": tags: - save when: @@ -406195,7 +407317,7 @@ Power of Love: installDir: Power of Love: {} launch: - /power of love.exe: + "/power of love.exe": - when: - os: windows store: steam @@ -406205,7 +407327,7 @@ Power of the Void: installDir: Power of The Void: {} launch: - /windows_content/POTV.exe: + "/windows_content/POTV.exe": - when: - os: windows store: steam @@ -406215,7 +407337,7 @@ Power to the People: installDir: Power to the People: {} launch: - /Power to the People.exe: + "/Power to the People.exe": - when: - bit: 64 os: windows @@ -406226,11 +407348,11 @@ Power-Up: installDir: Power-Up: {} launch: - /Power-Up.exe: + "/Power-Up.exe": - when: - os: windows store: steam - /xnafx40_redist.msi: + "/xnafx40_redist.msi": - when: - os: windows store: steam @@ -406243,12 +407365,12 @@ PowerBeatsVR: id: 810500 PowerSlave: files: - /SAVGAME*.SAV: + "/SAVGAME*.SAV": tags: - save when: - os: dos - /SETUP.CFG: + "/SETUP.CFG": tags: - config when: @@ -406258,19 +407380,16 @@ PowerSlave: installDir: PowerslaveCE: {} launch: - /Powerslave.app: + "/Powerslave.app": - when: - os: mac store: steam - /dosbox_windows/dosbox.exe: - - arguments: >- - -exit -noconsole -conf \"dosbox_powerslave.conf\" ^ -c \"mount e '..\\PowerslaveCE'\" ^ -c \"e:\" ^ -c - \"imgmount d Powerslave_DOS_(1996).cue -t cdrom\" ^ -c \"cd PWRSLAVE\" ^ -c \"PS.exe -noconsole\" ^ -c - \"exit\" + "/dosbox_windows/dosbox.exe": + - arguments: "-exit -noconsole -conf \\\"dosbox_powerslave.conf\\\" ^ -c \\\"mount e '..\\\\PowerslaveCE'\\\" ^ -c \\\"e:\\\" ^ -c \\\"imgmount d Powerslave_DOS_(1996).cue -t cdrom\\\" ^ -c \\\"cd PWRSLAVE\\\" ^ -c \\\"PS.exe -noconsole\\\" ^ -c \\\"exit\\\"" when: - os: windows store: steam - /runPowerslave.sh: + "/runPowerslave.sh": - when: - os: linux store: steam @@ -406278,24 +407397,24 @@ PowerSlave: id: 1260020 PowerSlave EX: files: - /config.cfg: + "/config.cfg": tags: - config when: - os: windows - /saves: + "/saves": tags: - save when: - os: windows PowerSlave Exhumed: files: - /Saved Games/Nightdive Studios/Powerslave EX: + "/Saved Games/Nightdive Studios/Powerslave EX": tags: - config when: - os: windows - /Saved Games/Nightdive Studios/Powerslave EX/saves: + "/Saved Games/Nightdive Studios/Powerslave EX/saves": tags: - save when: @@ -406305,7 +407424,7 @@ PowerSlave Exhumed: installDir: PowerSlave Exhumed: {} launch: - /anubis_Shipping_Steam_x64.exe: + "/anubis_Shipping_Steam_x64.exe": - when: - bit: 64 os: windows @@ -406316,7 +407435,7 @@ PowerUp Elevation: installDir: PowerUpElevation: {} launch: - /PowerUp_Elevation.exe: + "/PowerUp_Elevation.exe": - when: - os: windows store: steam @@ -406324,17 +407443,17 @@ PowerUp Elevation: id: 879390 PowerWash Simulator: files: - /AppData/LocalLow/FuturLab/PowerWash Simulator/SaveData: + "/AppData/LocalLow/FuturLab/PowerWash Simulator/SaveData": tags: - save when: - os: windows - /AppData/LocalLow/FuturLab/PowerWash Simulator/SaveData/Preferences: + "/AppData/LocalLow/FuturLab/PowerWash Simulator/SaveData/Preferences": tags: - config when: - os: windows - /Packages/39C668CD.PowerWashSimulator_r7bfsmp40f67j/SystemAppData/wgs: + "/Packages/39C668CD.PowerWashSimulator_r7bfsmp40f67j/SystemAppData/wgs": tags: - save when: @@ -406344,13 +407463,12 @@ PowerWash Simulator: steamExtra: - 2088510 - 2088511 - - 2088511 - 2236950 - 2464650 installDir: PowerWash Simulator: {} launch: - /PowerWashSimulator.exe: + "/PowerWashSimulator.exe": - when: - store: steam steam: @@ -406359,15 +407477,15 @@ Powerless: installDir: Powerless: {} launch: - /Powerless.app/Contents/MacOS/Powerless: + "/Powerless.app/Contents/MacOS/Powerless": - when: - os: mac store: steam - /Powerless.exe: + "/Powerless.exe": - when: - os: windows store: steam - /Powerless.x86: + "/Powerless.x86": - when: - os: linux store: steam @@ -406377,7 +407495,7 @@ Powerless (Narratio): installDir: Powerless: {} launch: - /Powerless.exe: + "/Powerless.exe": - when: - os: windows store: steam @@ -406387,7 +407505,7 @@ Powernaut Vangardt: installDir: Powernaut VANGARDT: {} launch: - /vangardt.exe: + "/vangardt.exe": - when: - os: windows store: steam @@ -406397,15 +407515,15 @@ Powernode: installDir: Powernode: {} launch: - /Powernode.app/Contents/MacOS/Powernode: + "/Powernode.app/Contents/MacOS/Powernode": - when: - os: mac store: steam - /Powernode.exe: + "/Powernode.exe": - when: - os: windows store: steam - /Powernode.x86_64: + "/Powernode.x86_64": - when: - bit: 64 os: linux @@ -406423,7 +407541,7 @@ Powerslide: installDir: Powerslide: {} launch: - /powerslide.exe: + "/powerslide.exe": - when: - os: windows store: steam @@ -406438,7 +407556,7 @@ Pozzo Jello Crusade: installDir: Pozzo Jello Crusade: {} launch: - /PozzoJC/PozzoJelloCrusade.exe: + "/PozzoJC/PozzoJelloCrusade.exe": - when: - os: windows store: steam @@ -406446,12 +407564,12 @@ Pozzo Jello Crusade: id: 511380 Poöf: files: - /userdata//243280: + "/userdata//243280": tags: - save when: - store: steam - /SavedGames/POOF//Config.ini: + "/SavedGames/POOF//Config.ini": tags: - config when: @@ -406459,15 +407577,15 @@ Poöf: installDir: Poof: {} launch: - /POOF.exe: + "/POOF.exe": - when: - os: windows store: steam - /Poof.sh: + "/Poof.sh": - when: - os: linux store: steam - /Poof_MonoGame.app: + "/Poof_MonoGame.app": - when: - os: mac store: steam @@ -406485,12 +407603,12 @@ PraeBot: id: 1021120 Praetorians: files: - /Praetorians/Profiles/*.usr: + "/Praetorians/Profiles/*.usr": tags: - config when: - os: windows - /Praetorians/Savegame: + "/Praetorians/Savegame": tags: - save when: @@ -406500,7 +407618,7 @@ Praetorians: installDir: Praetorians: {} launch: - /Praetorians.exe: + "/Praetorians.exe": - when: - os: windows store: steam @@ -406512,14 +407630,14 @@ Praetorians HD Remaster: installDir: Praetorians - HD Remaster: {} launch: - /Praetorians.exe: + "/Praetorians.exe": - when: - store: steam steam: id: 1100420 Praey for the Gods: files: - /AppData/LocalLow/No Matter Studios/Praey For the Gods: + "/AppData/LocalLow/No Matter Studios/Praey For the Gods": tags: - save when: @@ -406527,7 +407645,7 @@ Praey for the Gods: installDir: Praey for the Gods: {} launch: - /Praey For the Gods.exe: + "/Praey For the Gods.exe": - when: - os: windows store: steam @@ -406540,7 +407658,7 @@ Prank Bros: installDir: Prank Bros: {} launch: - /PrankBros.exe: + "/PrankBros.exe": - when: - store: steam steam: @@ -406549,15 +407667,15 @@ Prank Masters: installDir: Prank Masters: {} launch: - /Prank Masters.app: + "/Prank Masters.app": - when: - os: mac store: steam - /Prank Masters.exe: + "/Prank Masters.exe": - when: - os: windows store: steam - /Prank Masters.sh: + "/Prank Masters.sh": - when: - os: linux store: steam @@ -406567,7 +407685,7 @@ Pranky Cat: installDir: Pranky Cat: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -406577,7 +407695,7 @@ Pratagon: installDir: PRATAGON: {} launch: - /DOTA_FPS.exe: + "/DOTA_FPS.exe": - when: - os: windows store: steam @@ -406589,18 +407707,18 @@ Pray for Death: installDir: Pray for Death: {} launch: - /DOSBox/dosbox.app/Contents/MacOS/DOSBox: - - arguments: '-conf \"./dosboxPRAY.conf\" -conf \"./dosboxPRAY_single.conf\" -noconsole' + "/DOSBox/dosbox.app/Contents/MacOS/DOSBox": + - arguments: "-conf \\\"./dosboxPRAY.conf\\\" -conf \\\"./dosboxPRAY_single.conf\\\" -noconsole" when: - os: mac store: steam - /DOSBox/dosbox.exe: - - arguments: '-conf \"dosboxPRAY.conf\" -conf \"dosboxPRAY_single.conf\" -noconsole' + "/DOSBox/dosbox.exe": + - arguments: "-conf \\\"dosboxPRAY.conf\\\" -conf \\\"dosboxPRAY_single.conf\\\" -noconsole" when: - os: windows store: steam - /dosbox/dosbox: - - arguments: '-conf \"./dosboxPRAY.conf\" -conf \"./dosboxPRAY_single.conf\" -noconsole' + "/dosbox/dosbox": + - arguments: "-conf \\\"./dosboxPRAY.conf\\\" -conf \\\"./dosboxPRAY_single.conf\\\" -noconsole" when: - os: linux store: steam @@ -406608,7 +407726,7 @@ Pray for Death: id: 713070 Precipice: files: - /Precipice: + "/Precipice": tags: - config - save @@ -406617,18 +407735,18 @@ Precipice: installDir: Precipice: {} launch: - /Precipice.exe: + "/Precipice.exe": - arguments: bootstrap.tscn when: - os: windows store: steam - /precipice.x86: + "/precipice.x86": - arguments: bootstrap.tscn when: - bit: 32 os: linux store: steam - /precipice.x86_64: + "/precipice.x86_64": - arguments: bootstrap.tscn when: - bit: 64 @@ -406636,20 +407754,20 @@ Precipice: store: steam steam: id: 951670 -'Precision Archery: Competitive': +"Precision Archery: Competitive": installDir: PrecisionArchery: {} launch: - /Archery.exe: + "/Archery.exe": - when: - store: steam steam: id: 763490 -'Precision Sniping: Competitive': +"Precision Sniping: Competitive": installDir: Precision Sniping Competitive: {} launch: - /Sniper.exe: + "/Sniper.exe": - when: - store: steam steam: @@ -406658,7 +407776,7 @@ Precursors: installDir: Precursors: {} launch: - /Precursors.exe: + "/Precursors.exe": - when: - os: windows store: steam @@ -406668,7 +407786,7 @@ Predator Simulator: installDir: Predator Simulator: {} launch: - /Predator Simulator.exe: + "/Predator Simulator.exe": - when: - os: windows store: steam @@ -406679,14 +407797,14 @@ Predator VR: Predator VR: {} steam: id: 755640 -'Predator: Hunting Grounds': +"Predator: Hunting Grounds": files: - /SpaceFish/Saved/Config/WindowsNoEditor: + "/SpaceFish/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /SpaceFish/Saved/SaveGames: + "/SpaceFish/Saved/SaveGames": tags: - save when: @@ -406694,8 +407812,8 @@ Predator VR: installDir: Predator Hunting Grounds: {} launch: - /EACLauncher.exe: - - arguments: '-Steam' + "/EACLauncher.exe": + - arguments: "-Steam" when: - bit: 64 os: windows @@ -406704,7 +407822,7 @@ Predator VR: id: 1556200 Predecessor: files: - /Predecessor/Saved/Config/WindowsClient: + "/Predecessor/Saved/Config/WindowsClient": tags: - config when: @@ -406712,7 +407830,7 @@ Predecessor: installDir: Predecessor: {} launch: - /PredecessorLauncher.exe: + "/PredecessorLauncher.exe": - when: - os: windows store: steam @@ -406720,12 +407838,12 @@ Predecessor: id: 961200 Predestination: files: - /Predestination: + "/Predestination": tags: - config when: - os: windows - /Predestination/Saves: + "/Predestination/Saves": tags: - save when: @@ -406733,7 +407851,7 @@ Predestination: installDir: Predestination: {} launch: - /Predestination.exe: + "/Predestination.exe": - when: - os: windows store: steam @@ -406743,7 +407861,7 @@ Predicate: installDir: Predicate: {} launch: - /Predicate.exe: + "/Predicate.exe": - when: - os: windows store: steam @@ -406754,7 +407872,7 @@ Predimension: id: 1087540 Predynastic Egypt: files: - /AppData/LocalLow/Clarus Victoria/Predynastic Egypt/saves: + "/AppData/LocalLow/Clarus Victoria/Predynastic Egypt/saves": tags: - save when: @@ -406764,15 +407882,15 @@ Predynastic Egypt: installDir: Egypt Civilization: {} launch: - /PreCiv-Egypt.app: + "/PreCiv-Egypt.app": - when: - os: mac store: steam - /PreCiv-Egypt.x86_64: + "/PreCiv-Egypt.x86_64": - when: - os: linux store: steam - /Predynastic Egypt.exe: + "/Predynastic Egypt.exe": - when: - os: windows store: steam @@ -406786,7 +407904,7 @@ Pregnancy: installDir: Pregnancy: {} launch: - /Pregnancy.exe: + "/Pregnancy.exe": - when: - os: windows store: steam @@ -406799,12 +407917,12 @@ Prehistoria: id: 911290 Prehistoric Kingdom: files: - /AppData/LocalLow/Blue Meridian/Prehistoric Kingdom: + "/AppData/LocalLow/Blue Meridian/Prehistoric Kingdom": tags: - config when: - os: windows - /Saved Games/Prehistoric Kingdom/Saves: + "/Saved Games/Prehistoric Kingdom/Saves": tags: - save when: @@ -406812,7 +407930,7 @@ Prehistoric Kingdom: installDir: Prehistoric Kingdom: {} launch: - /Prehistoric Kingdom.exe: + "/Prehistoric Kingdom.exe": - when: - bit: 64 os: windows @@ -406823,7 +407941,7 @@ Prehistoric Tales: installDir: Prehistoric Tales: {} launch: - /PrehistoricTales.exe: + "/PrehistoricTales.exe": - when: - os: windows store: steam @@ -406831,7 +407949,7 @@ Prehistoric Tales: id: 466780 Prehistorik: files: - /GRAWAGA.CFG: + "/GRAWAGA.CFG": tags: - config when: @@ -406841,17 +407959,17 @@ Prehistorik: installDir: Prehistorik: {} launch: - /DOSBox/dosbox.app/Contents/MacOS/DOSBox: - - arguments: '-conf \"./dosboxPrehistorik1.conf\" -conf \"./dosboxPrehistorik1_single.conf\" -noconsole' + "/DOSBox/dosbox.app/Contents/MacOS/DOSBox": + - arguments: "-conf \\\"./dosboxPrehistorik1.conf\\\" -conf \\\"./dosboxPrehistorik1_single.conf\\\" -noconsole" when: - os: mac store: steam - /Launch Prehistorik.bat: + "/Launch Prehistorik.bat": - when: - os: windows store: steam - /dosbox/dosbox: - - arguments: '-conf \"./dosboxPrehistorik1.conf\" -conf \"./dosboxPrehistorik1_single.conf\" -noconsole' + "/dosbox/dosbox": + - arguments: "-conf \\\"./dosboxPrehistorik1.conf\\\" -conf \\\"./dosboxPrehistorik1_single.conf\\\" -noconsole" when: - os: linux store: steam @@ -406861,11 +407979,11 @@ Prehistorik (2014): installDir: Prehistorik: {} launch: - /Prehistorik.exe: + "/Prehistorik.exe": - when: - os: windows store: steam - /prehistorik.app: + "/prehistorik.app": - when: - os: mac store: steam @@ -406877,17 +407995,17 @@ Prehistorik 2: installDir: Prehistorik 2: {} launch: - /DOSBox/dosbox.app/Contents/MacOS/DOSBox: - - arguments: '-conf \"./dosboxPrehistorik2.conf\" -conf \"./dosboxPrehistorik2_single.conf\" -noconsole' + "/DOSBox/dosbox.app/Contents/MacOS/DOSBox": + - arguments: "-conf \\\"./dosboxPrehistorik2.conf\\\" -conf \\\"./dosboxPrehistorik2_single.conf\\\" -noconsole" when: - os: mac store: steam - /Launch Prehistorik 2.bat: + "/Launch Prehistorik 2.bat": - when: - os: windows store: steam - /dosbox/dosbox: - - arguments: '-conf \"./dosboxPrehistorik2.conf\" -conf \"./dosboxPrehistorik2_single.conf\" -noconsole' + "/dosbox/dosbox": + - arguments: "-conf \\\"./dosboxPrehistorik2.conf\\\" -conf \\\"./dosboxPrehistorik2_single.conf\\\" -noconsole" when: - os: linux store: steam @@ -406895,7 +408013,7 @@ Prehistorik 2: id: 749140 Prelogate: files: - /Prelogate_Data/UserData: + "/Prelogate_Data/UserData": tags: - save when: @@ -406903,16 +408021,16 @@ Prelogate: installDir: Prelogate: {} launch: - /Prelogate.exe: + "/Prelogate.exe": - when: - os: windows store: steam - /Prelogate.x86: + "/Prelogate.x86": - when: - bit: 32 os: linux store: steam - /Prelogate.x86_64: + "/Prelogate.x86_64": - when: - bit: 64 os: linux @@ -406923,11 +408041,11 @@ Prelude: installDir: Prelude: {} launch: - /Prelude_PreAlpha_MacOS.app: + "/Prelude_PreAlpha_MacOS.app": - when: - os: mac store: steam - /Prelude_PreAlpha_v0.1.exe: + "/Prelude_PreAlpha_v0.1.exe": - when: - os: windows store: steam @@ -406937,7 +408055,7 @@ Prelude for a Dream: installDir: Prelude for a Dream: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -406947,7 +408065,7 @@ Premier Buggy Racing Tour: installDir: Premier_Buggy_Racing_Tour: {} launch: - /PremierBuggyRacingTour.exe: + "/PremierBuggyRacingTour.exe": - when: - os: windows store: steam @@ -406957,29 +408075,29 @@ Premier Manager 08: installDir: Premier Manager 08: {} launch: - /English/PM08.exe: + "/English/PM08.exe": - when: - store: steam - workingDir: /English - /French/PM08.exe: + workingDir: "/English" + "/French/PM08.exe": - when: - store: steam - workingDir: /French - /German/PM08.exe: + workingDir: "/French" + "/German/PM08.exe": - when: - store: steam - workingDir: /German - /Italian/PM08.exe: + workingDir: "/German" + "/Italian/PM08.exe": - when: - store: steam - workingDir: /Italian + workingDir: "/Italian" steam: id: 1272000 Premier Manager 09: installDir: Premier Manager 09: {} launch: - /PM09.exe: + "/PM09.exe": - when: - store: steam steam: @@ -406988,32 +408106,32 @@ Premier Manager 10: installDir: Premier Manager 10: {} launch: - /English/PM10.exe: + "/English/PM10.exe": - when: - store: steam - workingDir: /English - /French/PM10.exe: + workingDir: "/English" + "/French/PM10.exe": - when: - store: steam - workingDir: /French - /German/PM10.exe: + workingDir: "/French" + "/German/PM10.exe": - when: - store: steam - workingDir: /German - /Italian/PM10.exe: + workingDir: "/German" + "/Italian/PM10.exe": - when: - store: steam - workingDir: /Italian + workingDir: "/Italian" steam: id: 1271980 Premier Manager 2002/2003 Season: installDir: Premier Manager 0203: {} launch: - /INSTRUCTIONS.pdf: + "/INSTRUCTIONS.pdf": - when: - store: steam - /PMPCWIN.exe: + "/PMPCWIN.exe": - when: - store: steam steam: @@ -407022,45 +408140,45 @@ Premier Manager 2003-04: installDir: Premier Manager 0304: {} launch: - /English/Game/English/PM2003.exe: + "/English/Game/English/PM2003.exe": - when: - store: steam - workingDir: /English/Game/English - /French/Game/French/PM2003.exe: + workingDir: "/English/Game/English" + "/French/Game/French/PM2003.exe": - when: - store: steam - workingDir: /French/Game/French - /German/Game/German/PM2003.exe: + workingDir: "/French/Game/French" + "/German/Game/German/PM2003.exe": - when: - store: steam - workingDir: /German/Game/German - /Italian/Game/Italian/PM2003.exe: + workingDir: "/German/Game/German" + "/Italian/Game/Italian/PM2003.exe": - when: - store: steam - workingDir: /Italian/Game/Italian + workingDir: "/Italian/Game/Italian" steam: id: 1272050 Premier Manager 2004-2005: installDir: Premier Manager 0405: {} launch: - /English/PM2004.exe: + "/English/PM2004.exe": - when: - store: steam - workingDir: /English - /French/PM2004.exe: + workingDir: "/English" + "/French/PM2004.exe": - when: - store: steam - workingDir: /French - /German/PM2004.exe: + workingDir: "/French" + "/German/PM2004.exe": - when: - store: steam - workingDir: /German - /Italian/PM2004.exe: + workingDir: "/German" + "/Italian/PM2004.exe": - when: - store: steam - workingDir: /Italian - /Manual.pdf: + workingDir: "/Italian" + "/Manual.pdf": - when: - store: steam steam: @@ -407069,38 +408187,38 @@ Premier Manager 2005-2006: installDir: Premier Manager 0506: {} launch: - /DE.pdf: + "/DE.pdf": - when: - store: steam - /DU.pdf: + "/DU.pdf": - when: - store: steam - /EN.pdf: + "/EN.pdf": - when: - store: steam - /English/PM2005.exe: + "/English/PM2005.exe": - when: - store: steam - workingDir: /English - /FR.pdf: + workingDir: "/English" + "/FR.pdf": - when: - store: steam - /French/PM2005.exe: + "/French/PM2005.exe": - when: - store: steam - workingDir: /French - /German/PM2005.exe: + workingDir: "/French" + "/German/PM2005.exe": - when: - store: steam - workingDir: /German - /IT.pdf: + workingDir: "/German" + "/IT.pdf": - when: - store: steam - /Italian/PM2005.exe: + "/Italian/PM2005.exe": - when: - store: steam - workingDir: /Italian - /SP.pdf: + workingDir: "/Italian" + "/SP.pdf": - when: - store: steam steam: @@ -407109,35 +408227,35 @@ Premier Manager 2006-2007: installDir: Premier Manager 0607: {} launch: - /English/PM2006.exe: + "/English/PM2006.exe": - when: - store: steam - workingDir: /English - /French/PM2006.exe: + workingDir: "/English" + "/French/PM2006.exe": - when: - store: steam - workingDir: /French - /Italian/PM2006.exe: + workingDir: "/French" + "/Italian/PM2006.exe": - when: - store: steam - workingDir: /Italian - /Manuals/1672 Prem Man 06-07 PC Man FR.pdf: + workingDir: "/Italian" + "/Manuals/1672 Prem Man 06-07 PC Man FR.pdf": - when: - store: steam - workingDir: /Manuals - /Manuals/1672 Prem Man 06-07 PC Man IT.pdf: + workingDir: "/Manuals" + "/Manuals/1672 Prem Man 06-07 PC Man IT.pdf": - when: - store: steam - workingDir: /Manuals - /Manuals/1672 Prem Man 06-07 PC Man UK.pdf: + workingDir: "/Manuals" + "/Manuals/1672 Prem Man 06-07 PC Man UK.pdf": - when: - store: steam - workingDir: /Manuals + workingDir: "/Manuals" steam: id: 1272020 Premier Manager Ninety Nine: files: - /Save: + "/Save": tags: - save when: @@ -407146,11 +408264,11 @@ Premium Bowling: installDir: Premium Bowling: {} launch: - /premiumbowling.app/Contents/MacOS/Premium Bowling: + "/premiumbowling.app/Contents/MacOS/Premium Bowling": - when: - os: mac store: steam - /premiumbowling.exe: + "/premiumbowling.exe": - when: - os: windows store: steam @@ -407160,15 +408278,15 @@ Premium Pool: installDir: Premium Pool: {} launch: - /PremiumPool.app: + "/PremiumPool.app": - when: - os: mac store: steam - /PremiumPool.exe: + "/PremiumPool.exe": - when: - os: windows store: steam - /PremiumPool.x86: + "/PremiumPool.x86": - when: - os: linux store: steam @@ -407178,15 +408296,15 @@ Premium Pool Arena: installDir: Premium Pool Arena: {} launch: - /PremiumPool.app: + "/PremiumPool.app": - when: - os: mac store: steam - /PremiumPool.exe: + "/PremiumPool.exe": - when: - os: windows store: steam - /PremiumPool.x86: + "/PremiumPool.x86": - when: - os: linux store: steam @@ -407196,7 +408314,7 @@ Prens Cavid The Game: installDir: Prens_Cavid: {} launch: - /Prens_Cavid/Prens_Cavid.exe: + "/Prens_Cavid/Prens_Cavid.exe": - when: - os: windows store: steam @@ -407206,7 +408324,7 @@ Present for Manager: installDir: Present for manager: {} launch: - /Present for Manager.exe: + "/Present for Manager.exe": - when: - os: windows store: steam @@ -407221,7 +408339,7 @@ President Evil: installDir: President Evil: {} launch: - /PE.exe: + "/PE.exe": - when: - os: windows store: steam @@ -407231,7 +408349,7 @@ President Pig: installDir: President Pig: {} launch: - /President Pig.exe: + "/President Pig.exe": - when: - os: windows store: steam @@ -407241,7 +408359,7 @@ President Trump the Way in Uganda: installDir: President Trump The Way In Uganda: {} launch: - /President Trump The Way In Uganda.exe: + "/President Trump The Way In Uganda.exe": - when: - os: windows store: steam @@ -407253,7 +408371,7 @@ President Yukino: installDir: President Yukino: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -407263,11 +408381,11 @@ President for a Day - Corruption: installDir: PFAD - Corruption: {} launch: - /PFAD - Corruption.app: + "/PFAD - Corruption.app": - when: - os: mac store: steam - /PFAD - Corruption.exe: + "/PFAD - Corruption.exe": - when: - os: windows store: steam @@ -407277,11 +408395,11 @@ President for a Day - Floodings: installDir: PFAD - Floodings: {} launch: - /PFAD - Floodings.app: + "/PFAD - Floodings.app": - when: - os: mac store: steam - /PFAD - Floodings.exe: + "/PFAD - Floodings.exe": - when: - os: windows store: steam @@ -407289,7 +408407,7 @@ President for a Day - Floodings: id: 368770 Press Any Button: files: - /AppData/Local/PAB: + "/AppData/Local/PAB": tags: - save when: @@ -407297,7 +408415,7 @@ Press Any Button: installDir: Press Any Button: {} launch: - /PAB.exe: + "/PAB.exe": - when: - os: windows store: steam @@ -407307,7 +408425,7 @@ Press F to pay respects: installDir: Press F to pay respects: {} launch: - /Press F to pay respects.exe: + "/Press F to pay respects.exe": - when: - store: steam steam: @@ -407317,19 +408435,19 @@ Press Forward OOOOONNNNN: id: 1197290 Press X to Not Die: files: - /Library/Application Support/Press X to Not Die: + "/Library/Application Support/Press X to Not Die": tags: - config - save when: - os: mac - /SavedGames/Press X to Not Die: + "/SavedGames/Press X to Not Die": tags: - config - save when: - os: windows - /Press X to Not Die: + "/Press X to Not Die": tags: - config - save @@ -407338,15 +408456,15 @@ Press X to Not Die: installDir: Press X to Not Die: {} launch: - /Press X to Not Die: + "/Press X to Not Die": - when: - os: linux store: steam - /Press X to Not Die.app: + "/Press X to Not Die.app": - when: - os: mac store: steam - /Press X to Not Die.exe: + "/Press X to Not Die.exe": - when: - os: windows store: steam @@ -407357,7 +408475,7 @@ Press and Jump: id: 697940 Pressure: files: - /My Games/Pressure: + "/My Games/Pressure": tags: - config when: @@ -407365,30 +408483,30 @@ Pressure: installDir: pressure: {} launch: - /bin/pressure.exe: + "/bin/pressure.exe": - when: - store: steam - workingDir: /bin + workingDir: "/bin" steam: id: 224220 Pressure Overdrive: installDir: PressureOverdrive: {} launch: - /PressureOverdrive.app: + "/PressureOverdrive.app": - when: - os: mac store: steam - /PressureOverdrive.exe: + "/PressureOverdrive.exe": - when: - os: windows store: steam - /PressureOverdrive.x86: + "/PressureOverdrive.x86": - when: - bit: 32 os: linux store: steam - /PressureOverdrive.x86_64: + "/PressureOverdrive.x86_64": - when: - bit: 64 os: linux @@ -407399,7 +408517,7 @@ Pressured: installDir: Pressured: {} launch: - /Pressured.exe: + "/Pressured.exe": - when: - os: windows store: steam @@ -407409,20 +408527,20 @@ Preston Sterling: installDir: Preston Sterling: {} launch: - /PrestonSterling.exe: + "/PrestonSterling.exe": - when: - os: windows store: steam steam: id: 516650 -'Preta: Vendetta Rising': +"Preta: Vendetta Rising": installDir: PretaVR: {} steam: id: 624870 Pretentious Game: files: - /Pretentious-Game---Steam/Local Store/#SharedObjects/Pretentious_Game%20-%20Steam.swf/pretentiousgame007.sol: + "/Pretentious-Game---Steam/Local Store/#SharedObjects/Pretentious_Game%20-%20Steam.swf/pretentiousgame007.sol": tags: - save when: @@ -407433,7 +408551,7 @@ Pretentious Game: id: 279540 Pretty Angel: files: - /PrettyAngel_Data/Save: + "/PrettyAngel_Data/Save": tags: - save when: @@ -407441,11 +408559,11 @@ Pretty Angel: installDir: PrettyAngel: {} launch: - /PrettyAngel.app: + "/PrettyAngel.app": - when: - os: mac store: steam - /PrettyAngel.exe: + "/PrettyAngel.exe": - when: - os: windows store: steam @@ -407453,7 +408571,7 @@ Pretty Angel: id: 1148510 Pretty Girls Mahjong Solitaire: files: - /SaveData/PrettyGirlsMahjongSolitaire.dat: + "/SaveData/PrettyGirlsMahjongSolitaire.dat": tags: - save when: @@ -407461,11 +408579,11 @@ Pretty Girls Mahjong Solitaire: installDir: Pretty Girls Mahjong Solitaire: {} launch: - /PrettyGirlsMahjongSolitaire.app: + "/PrettyGirlsMahjongSolitaire.app": - when: - os: mac store: steam - /PrettyGirlsMahjongSolitaire.exe: + "/PrettyGirlsMahjongSolitaire.exe": - when: - os: windows store: steam @@ -407479,11 +408597,11 @@ Pretty Girls Panic!: installDir: Pretty Girls Panic!: {} launch: - /PrettyGirlsPanic.app: + "/PrettyGirlsPanic.app": - when: - os: mac store: steam - /PrettyGirlsPanic.exe: + "/PrettyGirlsPanic.exe": - when: - os: windows store: steam @@ -407493,8 +408611,8 @@ Prevent the Fall: installDir: Prevent The Fall: {} launch: - /PreventTheFall.exe: - - arguments: '-nohmd' + "/PreventTheFall.exe": + - arguments: "-nohmd" when: - bit: 64 os: windows @@ -407505,7 +408623,7 @@ Preventive Strike: installDir: Preventive Strike: {} launch: - /PRST.exe: + "/PRST.exe": - when: - bit: 64 os: windows @@ -407514,37 +408632,37 @@ Preventive Strike: id: 740280 Prey: files: - /base: + "/base": tags: - config when: - os: windows - /.prey/base: + "/.prey/base": tags: - config when: - os: linux - /.prey/base/savegames: + "/.prey/base/savegames": tags: - save when: - os: linux - /Library/Application Support/Prey/base: + "/Library/Application Support/Prey/base": tags: - config when: - os: mac - /Library/Application Support/Prey/base/savegames: + "/Library/Application Support/Prey/base/savegames": tags: - save when: - os: mac - /Saved Games/HumanHeadStudios/Prey: + "/Saved Games/HumanHeadStudios/Prey": tags: - save when: - os: windows - /My Games/PREY/base: + "/My Games/PREY/base": tags: - save when: @@ -407552,40 +408670,40 @@ Prey: installDir: Prey 2006: {} launch: - /prey.exe: + "/prey.exe": - when: - store: steam steam: id: 3970 Prey (2017): files: - /Saved Games/Arkane Studios/Prey: + "/Saved Games/Arkane Studios/Prey": tags: - config when: - os: windows - /Saved Games/Arkane Studios/Prey/SaveGames: + "/Saved Games/Arkane Studios/Prey/SaveGames": tags: - save when: - os: windows - /Saved Games/Arkane Studios/Prey_Epic: + "/Saved Games/Arkane Studios/Prey_Epic": tags: - config when: - - store: epic - /Saved Games/Arkane Studios/Prey_Epic//SaveGames: + - os: windows + "/Saved Games/Arkane Studios/Prey_Epic//SaveGames": tags: - save when: - - store: epic - /Saved Games/Arkane Studios/Prey_MS: + - os: windows + "/Saved Games/Arkane Studios/Prey_MS": tags: - config when: - os: windows store: microsoft - /Saved Games/Arkane Studios/Prey_MS/SaveGames: + "/Saved Games/Arkane Studios/Prey_MS/SaveGames": tags: - save when: @@ -407596,7 +408714,7 @@ Prey (2017): installDir: Prey: {} launch: - /Binaries/Danielle/x64/Release/Prey.exe: + "/Binaries/Danielle/x64/Release/Prey.exe": - when: - store: steam steam: @@ -407605,20 +408723,20 @@ Prey with Gun: installDir: preywithgun: {} launch: - /preywithgun.exe: + "/preywithgun.exe": - when: - os: windows store: steam steam: id: 718940 -'Prey: Typhon Hunter': +"Prey: Typhon Hunter": files: - /Saved Games/Arkane Studios/Typhon Hunter: + "/Saved Games/Arkane Studios/Typhon Hunter": tags: - config when: - os: windows - /Saved Games/Arkane Studios/Typhon Hunter/SaveGames: + "/Saved Games/Arkane Studios/Typhon Hunter/SaveGames": tags: - save when: @@ -407626,8 +408744,8 @@ Prey with Gun: installDir: Typhon Hunter: {} launch: - /Pinkeye/Binaries/Win64/TyphonHunter.exe: - - arguments: '-nohmd' + "/Pinkeye/Binaries/Win64/TyphonHunter.exe": + - arguments: "-nohmd" when: - bit: 64 os: windows @@ -407638,12 +408756,12 @@ Pride Run: installDir: Pride Run: {} launch: - /Pride Run.exe: + "/Pride Run.exe": - when: - bit: 64 os: windows store: steam - /PrideRun.app: + "/PrideRun.app": - when: - os: mac store: steam @@ -407653,7 +408771,7 @@ Pride of Nations: installDir: Pride of Nations: {} launch: - /PON.exe: + "/PON.exe": - when: - store: steam steam: @@ -407662,7 +408780,7 @@ Priest: installDir: Infernal Radiation: {} launch: - /Infernal Radiation.exe: + "/Infernal Radiation.exe": - when: - os: windows store: steam @@ -407670,12 +408788,12 @@ Priest: id: 832140 Priest Simulator: files: - /Priest_Simulator/Saved/Config/WindowsNoEditors: + "/Priest_Simulator/Saved/Config/WindowsNoEditors": tags: - config when: - os: windows - /Priest_Simulator/Saved/SaveGames: + "/Priest_Simulator/Saved/SaveGames": tags: - save when: @@ -407683,7 +408801,7 @@ Priest Simulator: installDir: Priest Simulator: {} launch: - /Priest_Simulator.exe: + "/Priest_Simulator.exe": - when: - os: windows store: steam @@ -407699,7 +408817,7 @@ Prim Rogue: id: 814940 Primal Carnage: files: - /PrimalCarnageGame/Config: + "/PrimalCarnageGame/Config": tags: - config when: @@ -407707,14 +408825,14 @@ Primal Carnage: installDir: primal_carnage: {} launch: - /Binaries/Win32/PrimalCarnageGame.exe: + "/Binaries/Win32/PrimalCarnageGame.exe": - when: - store: steam steam: id: 215470 -'Primal Carnage: Extinction': +"Primal Carnage: Extinction": files: - /PrimalCarnageGame/Config: + "/PrimalCarnageGame/Config": tags: - config when: @@ -407722,15 +408840,15 @@ Primal Carnage: installDir: Primal Carnage Extinction: {} launch: - /Binaries/Win64/PrimalCarnageGame.exe: - - arguments: '-seekfreeloadingpcconsole' + "/Binaries/Win64/PrimalCarnageGame.exe": + - arguments: "-seekfreeloadingpcconsole" when: - bit: 64 os: windows store: steam steam: id: 321360 -'Primal Carnage: Onslaught': +"Primal Carnage: Onslaught": installDir: Primal Carnage VR: {} steam: @@ -407739,7 +408857,7 @@ Primal Fears: installDir: primalfears: {} launch: - /project4.exe: + "/project4.exe": - when: - os: windows store: steam @@ -407749,7 +408867,7 @@ Primal Forge: installDir: PrimalForge: {} launch: - /Primal Forge.exe: + "/Primal Forge.exe": - when: - os: windows store: steam @@ -407759,7 +408877,7 @@ Primal Lands: installDir: Primal Lands: {} launch: - /nw.exe: + "/nw.exe": - when: - store: steam steam: @@ -407768,16 +408886,16 @@ Primal Light: installDir: Primal Light: {} launch: - /Primal Light.app/Contents/MacOS/Primal Light: + "/Primal Light.app/Contents/MacOS/Primal Light": - when: - os: mac store: steam - /primal-light.exe: + "/primal-light.exe": - when: - bit: 64 os: windows store: steam - /primal-light.x86_64: + "/primal-light.x86_64": - when: - bit: 64 os: linux @@ -407786,12 +408904,12 @@ Primal Light: id: 771420 Primal Prey: files: - /config.cfg: + "/config.cfg": tags: - config when: - os: windows - /trophies.txt: + "/trophies.txt": tags: - save when: @@ -407800,7 +408918,7 @@ Primal Pursuit: installDir: Primal Pursuit: {} launch: - /Primal Pursuit.exe: + "/Primal Pursuit.exe": - when: - os: windows store: steam @@ -407808,7 +408926,7 @@ Primal Pursuit: id: 773440 Primal Rage: files: - /CMOS: + "/CMOS": tags: - config - save @@ -407823,16 +408941,16 @@ Prime Arena: installDir: Prime Arena: {} launch: - /Bin/PW_Game.exe: + "/Bin/PW_Game.exe": - when: - os: windows store: steam - workingDir: /Bin + workingDir: "/Bin" steam: id: 647530 Prime Mover: files: - /PrimeMover//settings.ini: + "/PrimeMover//settings.ini": tags: - config when: @@ -407840,16 +408958,16 @@ Prime Mover: installDir: Prime Mover: {} launch: - /Prime Mover.exe: + "/Prime Mover.exe": - when: - os: windows store: steam - /PrimeMover: + "/PrimeMover": - when: - bit: 64 os: linux store: steam - /PrimeMover.app/Contents/MacOS/PrimeMover: + "/PrimeMover.app/Contents/MacOS/PrimeMover": - when: - os: mac store: steam @@ -407859,7 +408977,7 @@ Prime Shift: installDir: Prime Shift: {} launch: - /prime_shift.exe: + "/prime_shift.exe": - when: - os: windows store: steam @@ -407869,16 +408987,16 @@ Prime World: installDir: PrimeWorld: {} launch: - /PWLauncher.exe: - - arguments: '-steam' + "/PWLauncher.exe": + - arguments: "-steam" when: - os: windows store: steam steam: id: 235340 -'Prime World: Defenders': +"Prime World: Defenders": files: - /Prime World Defenders: + "/Prime World Defenders": tags: - save when: @@ -407886,25 +409004,25 @@ Prime World: installDir: Prime World Defenders: {} launch: - /pw_defenders.app: + "/pw_defenders.app": - when: - os: mac store: steam - /pw_defenders.exe: + "/pw_defenders.exe": - when: - os: windows store: steam registry: - 'HKEY_CURRENT_USER/Software/Nival Red/Prime World: Defenders': + "HKEY_CURRENT_USER/Software/Nival Red/Prime World: Defenders": tags: - config steam: id: 235360 -'Prime World: Defenders 2': +"Prime World: Defenders 2": installDir: Prime World Defenders 2: {} launch: - /Defenders2.exe: + "/Defenders2.exe": - when: - os: windows store: steam @@ -407914,7 +409032,7 @@ PrimeOrbial: installDir: PrimeOrbial: {} launch: - /JoyBall.exe: + "/JoyBall.exe": - when: - bit: 64 os: windows @@ -407939,7 +409057,7 @@ Primitive Shooter: installDir: Primitive Shooter: {} launch: - /PrimitiveShooter.exe: + "/PrimitiveShooter.exe": - when: - os: windows store: steam @@ -407950,27 +409068,27 @@ Primitive Survival: id: 890780 Primordia: files: - /Library/Application Support/Primordia: + "/Library/Application Support/Primordia": tags: - save when: - os: mac - /Saved Games/Primordia: + "/Saved Games/Primordia": tags: - save when: - os: windows - /Saved Games/Primordia/acsetup.cfg: + "/Saved Games/Primordia/acsetup.cfg": tags: - config when: - os: windows - /ags/Primordia/acsetup.cfg: + "/ags/Primordia/acsetup.cfg": tags: - config when: - os: linux - /ags/Primordia/agssave.*: + "/ags/Primordia/agssave.*": tags: - save when: @@ -407980,29 +409098,32 @@ Primordia: installDir: Primordia: {} launch: - /Primordia.app/Contents/MacOS/AGS: + "/Primordia.app/Contents/MacOS/AGS": - when: - os: mac store: steam - /Primordia.exe: + "/Primordia.exe": - when: - os: windows store: steam - /Start.sh: + "/Start.sh": - when: - bit: 32 os: linux store: steam + - bit: 64 + os: linux + store: steam steam: id: 227000 Primordial Darkness: steam: id: 743680 -'Primordials: Battle of Gods': +"Primordials: Battle of Gods": installDir: Primordials Battle of Gods: {} launch: - /Primordials Battle of Gods.exe: + "/Primordials Battle of Gods.exe": - when: - os: windows store: steam @@ -408018,7 +409139,7 @@ Primus Vita - Artemis: id: 821020 Prince Maker美少年梦工厂3:重生: files: - /savedata: + "/savedata": tags: - config - save @@ -408027,7 +409148,7 @@ Prince Maker美少年梦工厂3:重生: installDir: prince_maker3: {} launch: - /prince_maker3.eXe: + "/prince_maker3.eXe": - when: - os: windows store: steam @@ -408037,15 +409158,15 @@ Prince of Cats: installDir: Prince of Cats: {} launch: - /FortunesFool.app: + "/FortunesFool.app": - when: - os: mac store: steam - /FortunesFool.exe: + "/FortunesFool.exe": - when: - os: windows store: steam - /FortunesFool.sh: + "/FortunesFool.sh": - when: - os: linux store: steam @@ -408053,24 +409174,24 @@ Prince of Cats: id: 1063110 Prince of Persia: files: - /CONFIG.DAT: + "/CONFIG.DAT": tags: - config when: - os: dos - /PRINCE.SAV: + "/PRINCE.SAV": tags: - save when: - os: dos - /SETUP.DAT: + "/SETUP.DAT": tags: - config when: - os: dos Prince of Persia (2008): files: - /Prince of Persia/Save: + "/Prince of Persia/Save": tags: - save when: @@ -408080,8 +409201,8 @@ Prince of Persia (2008): installDir: Prince of Persia: {} launch: - /Launcher/Launcher.exe: - - arguments: '-uplay_steam_mode' + "/Launcher/Launcher.exe": + - arguments: "-uplay_steam_mode" when: - store: steam registry: @@ -408090,38 +409211,38 @@ Prince of Persia (2008): - config steam: id: 19980 -'Prince of Persia 2: The Shadow and the Flame': +"Prince of Persia 2: The Shadow and the Flame": files: - /CONFIG.DAT: + "/CONFIG.DAT": tags: - config when: - os: dos - /PRINCE.SAV: + "/PRINCE.SAV": tags: - save when: - os: dos - /SETUP.DAT: + "/SETUP.DAT": tags: - config when: - os: dos Prince of Persia 3D: files: - '/Level ** Start, Level ** Start.bmp': + "/Level ** Start, Level ** Start.bmp": tags: - save when: - os: windows - '/input.ini, fight.ini': + "/input.ini, fight.ini": tags: - config when: - os: windows -'Prince of Persia: The Forgotten Sands': +"Prince of Persia: The Forgotten Sands": files: - /savegames//11: + "/savegames//11": tags: - save when: @@ -408133,8 +409254,8 @@ Prince of Persia 3D: installDir: Prince of Persia Forgotten Sands: {} launch: - /Prince of Persia.exe: - - arguments: '-uplay_steam_mode' + "/Prince of Persia.exe": + - arguments: "-uplay_steam_mode" when: - store: steam registry: @@ -408143,14 +409264,14 @@ Prince of Persia 3D: - config steam: id: 33320 -'Prince of Persia: The Sands of Time': +"Prince of Persia: The Sands of Time": files: - /Hardware.ini: + "/Hardware.ini": tags: - config when: - os: windows - /Profiles: + "/Profiles": tags: - save when: @@ -408160,15 +409281,15 @@ Prince of Persia 3D: installDir: Prince of Persia The Sands of Time: {} launch: - /PrinceOfPersia.EXE: - - arguments: '-uplay_steam_mode' + "/PrinceOfPersia.EXE": + - arguments: "-uplay_steam_mode" when: - store: steam steam: id: 13600 -'Prince of Persia: The Two Thrones': +"Prince of Persia: The Two Thrones": files: - /POP3Profiles: + "/POP3Profiles": tags: - save when: @@ -408178,19 +409299,19 @@ Prince of Persia 3D: installDir: Prince of Persia Two Thrones: {} launch: - /PrinceOfPersia.exe: + "/PrinceOfPersia.exe": - when: - store: steam steam: id: 13530 -'Prince of Persia: Warrior Within': +"Prince of Persia: Warrior Within": files: - /GameProfiles/POPWWPROFILES: + "/GameProfiles/POPWWPROFILES": tags: - save when: - os: windows - /POPWWPROFILES: + "/POPWWPROFILES": tags: - save when: @@ -408200,7 +409321,7 @@ Prince of Persia 3D: installDir: Prince of Persia The Warrior Within: {} launch: - /PrinceOfPersia.exe: + "/PrinceOfPersia.exe": - when: - store: steam steam: @@ -408211,7 +409332,7 @@ Prince of Qin: installDir: Prince of Qin: {} launch: - /Poq.exe: + "/Poq.exe": - when: - os: windows store: steam @@ -408221,15 +409342,15 @@ Prince of Suburbia - Part 1: installDir: Prince of Suburbia - Part One: {} launch: - /PrinceOfSuburbia.app: + "/PrinceOfSuburbia.app": - when: - os: mac store: steam - /PrinceOfSuburbia.exe: + "/PrinceOfSuburbia.exe": - when: - os: windows store: steam - /PrinceOfSuburbia.sh: + "/PrinceOfSuburbia.sh": - when: - os: linux store: steam @@ -408239,7 +409360,7 @@ Princess & Conquest: installDir: Princess & Conquest: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: @@ -408248,15 +409369,15 @@ Princess Battles: installDir: Princess Battles: {} launch: - /PrincessBattles.app: + "/PrincessBattles.app": - when: - os: mac store: steam - /PrincessBattles.exe: + "/PrincessBattles.exe": - when: - os: windows store: steam - /PrincessBattles.sh: + "/PrincessBattles.sh": - when: - os: linux store: steam @@ -408266,7 +409387,7 @@ Princess Castle Quest: installDir: Princess Castle Quest: {} launch: - /PrincessCastleQuest.exe: + "/PrincessCastleQuest.exe": - when: - bit: 64 os: windows @@ -408277,7 +409398,7 @@ Princess Edge - Dragonstone: installDir: Princess Edge - Dragonstone: {} launch: - /Princess Edge.exe: + "/Princess Edge.exe": - when: - os: windows store: steam @@ -408289,7 +409410,7 @@ Princess Evangile: installDir: Princess Evangile: {} launch: - /Evangile.exe: + "/Evangile.exe": - when: - store: steam steam: @@ -408300,7 +409421,7 @@ Princess Evangile W Happiness: installDir: Princess Evangile W Happiness: {} launch: - /EvangileWH.exe: + "/EvangileWH.exe": - when: - store: steam steam: @@ -408309,7 +409430,7 @@ Princess Farmer: installDir: Princess Farmer: {} launch: - /Princess Farmer.exe: + "/Princess Farmer.exe": - when: - os: windows store: steam @@ -408324,7 +409445,7 @@ Princess Isabella: installDir: Princess Isabella: {} launch: - /Princess.exe: + "/Princess.exe": - when: - store: steam steam: @@ -408333,40 +409454,40 @@ Princess Isabella - Return of the Curse: installDir: Princess Isabella - Return of the Curse: {} launch: - /PrincessIsabella_ReturnoftheCurse.exe: + "/PrincessIsabella_ReturnoftheCurse.exe": - when: - store: steam steam: id: 292670 -'Princess Isabella: The Rise of an Heir': +"Princess Isabella: The Rise of an Heir": installDir: Princess Isabella The Rise of an Heir: {} launch: - /mac_steam.app/Contents/MacOS/mac_steam: + "/mac_steam.app/Contents/MacOS/mac_steam": - when: - os: mac store: steam - /princess3.exe: + "/princess3.exe": - when: - os: windows store: steam - /princess3_amd64: + "/princess3_amd64": - when: - bit: 64 os: linux store: steam - /princess3_i386: + "/princess3_i386": - when: - bit: 32 os: linux store: steam steam: id: 466490 -'Princess Kaguya: Legend of the Moon Warrior': +"Princess Kaguya: Legend of the Moon Warrior": installDir: Princess KAGUYA: {} launch: - /PrincessKaguya.exe: + "/PrincessKaguya.exe": - when: - store: steam steam: @@ -408385,8 +409506,8 @@ Princess Lili: installDir: Princess Lili: {} launch: - /PrincessLili.exe: - - arguments: '--in-process-gpu' + "/PrincessLili.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam @@ -408401,17 +409522,17 @@ Princess Maker 2 Refine: installDir: Princess Maker 2 Refine: {} launch: - /pm2.exe: + "/pm2.exe": - when: - os: windows store: steam steam: id: 523000 -'Princess Maker 3: Fairy Tales Come True': +"Princess Maker 3: Fairy Tales Come True": installDir: Princess Maker 3 ~Fairy Tales Come True: {} launch: - /PM3.exe: + "/PM3.exe": - when: - os: windows store: steam @@ -408419,12 +409540,12 @@ Princess Maker 2 Refine: id: 650110 Princess Maker 4: files: - /SAVE: + "/SAVE": tags: - save when: - os: windows - /game.ini: + "/game.ini": tags: - config when: @@ -408433,7 +409554,7 @@ Princess Maker 5: installDir: Princess Maker 5: {} launch: - /PM5.exe: + "/PM5.exe": - when: - os: windows store: steam @@ -408443,7 +409564,7 @@ Princess Maker Go!Go! Princess: installDir: Princess Maker ~GoGo Princess: {} launch: - /PM_GOGO.exe: + "/PM_GOGO.exe": - when: - os: windows store: steam @@ -408451,14 +409572,14 @@ Princess Maker Go!Go! Princess: id: 724260 Princess Maker Q: files: - 'Anywhere, for TXT file': + "Anywhere, for TXT file": tags: - save when: - os: windows Princess Maker Refine: files: - /Save: + "/Save": tags: - save when: @@ -408466,7 +409587,7 @@ Princess Maker Refine: installDir: Princess Maker Refine: {} launch: - /pm1.exe: + "/pm1.exe": - when: - os: windows store: steam @@ -408476,17 +409597,17 @@ Princess Maker ~Faery Tales Come True~ (HD Remake): installDir: Princess Maker 3: {} launch: - /PM3.exe: + "/PM3.exe": - when: - os: windows store: steam steam: id: 1155980 -'Princess Maker: GO!GO!Princess': +"Princess Maker: GO!GO!Princess": installDir: Princess Maker ~GoGo Princess: {} launch: - /PM_GOGO.exe: + "/PM_GOGO.exe": - when: - os: windows store: steam @@ -408496,7 +409617,7 @@ Princess Project: installDir: Princess Project: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -408504,12 +409625,12 @@ Princess Project: id: 1106080 Princess Remedy In A Heap of Trouble: files: - /AppData/LocalLow/Ludosity/Remedy: + "/AppData/LocalLow/Ludosity/Remedy": tags: - save when: - os: windows - /unity3d/Ludosity/Remedy: + "/unity3d/Ludosity/Remedy": tags: - save when: @@ -408517,20 +409638,20 @@ Princess Remedy In A Heap of Trouble: installDir: Princess Remedy In A Heap of Trouble: {} launch: - /rem2.app: + "/rem2.app": - when: - os: mac store: steam - /rem2.exe: + "/rem2.exe": - when: - os: windows store: steam - /rem2.x86: + "/rem2.x86": - when: - bit: 32 os: linux store: steam - /rem2.x86_64: + "/rem2.x86_64": - when: - bit: 64 os: linux @@ -408539,12 +409660,12 @@ Princess Remedy In A Heap of Trouble: id: 522040 Princess Remedy in a World of Hurt: files: - /options.sav: + "/options.sav": tags: - config when: - os: windows - /remedy*.sav: + "/remedy*.sav": tags: - save when: @@ -408552,7 +409673,7 @@ Princess Remedy in a World of Hurt: installDir: Princess Remedy: {} launch: - /remedy_gm7.exe: + "/remedy_gm7.exe": - when: - os: windows store: steam @@ -408562,16 +409683,16 @@ Princess Sahirah is a Spoiled Brat!: installDir: Princess Sahirah is a Spoiled Brat!: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: id: 671490 -'Princess Serena: Raid of Demon Legion': +"Princess Serena: Raid of Demon Legion": installDir: Princess Serena ~Raid of Demon Legion~: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -408581,11 +409702,11 @@ Princess and Knight: installDir: Princess and Knight: {} launch: - /PrincessAndKnight.exe: + "/PrincessAndKnight.exe": - when: - os: windows store: steam - /PrincessAndKnightForMac.app: + "/PrincessAndKnightForMac.app": - when: - os: mac store: steam @@ -408593,13 +409714,13 @@ Princess and Knight: id: 1142560 Princess of Tavern: installDir: - Princess of Tavern Collector's Edition: {} + "Princess of Tavern Collector's Edition": {} launch: - /Princess Of Tavern.app: + "/Princess Of Tavern.app": - when: - os: mac store: steam - /Princess Of Tavern.exe: + "/Princess Of Tavern.exe": - when: - os: windows store: steam @@ -408608,11 +409729,11 @@ Princess of Tavern: Princess of Zeven: steam: id: 1040510 -Princess's Peak: +"Princess's Peak": installDir: - Princess's Peak: {} + "Princess's Peak": {} launch: - /princessG.exe: + "/princessG.exe": - when: - os: windows store: steam @@ -408628,7 +409749,7 @@ PrincessGuardians: installDir: PrincessGuardians: {} launch: - /PG1.exe: + "/PG1.exe": - when: - store: steam steam: @@ -408637,7 +409758,7 @@ PrincessGuardiansParodyH: installDir: PrincessGuardiansParodyH: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: @@ -408648,31 +409769,31 @@ Princesses Never Lose!: installDir: Princesses Never Lose!: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: id: 1058060 -'Princesses vs Dragons: Royal Rumble': +"Princesses vs Dragons: Royal Rumble": installDir: Realms Of Regalia - Royal Rumble: {} launch: - /Realms of Regalia - Royal Rumble.exe: + "/Realms of Regalia - Royal Rumble.exe": - when: - bit: 64 os: windows store: steam steam: id: 1124010 -'Principia: Master of Science': +"Principia: Master of Science": installDir: Principia: {} launch: - /Principia.app: + "/Principia.app": - when: - os: mac store: steam - /Principia.exe: + "/Principia.exe": - when: - os: windows store: steam @@ -408685,7 +409806,7 @@ Prism (Lightray Games): installDir: Prism: {} launch: - /prism.exe: + "/prism.exe": - when: - os: windows store: steam @@ -408698,20 +409819,20 @@ Prism Collider: installDir: Prism Collider: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam steam: id: 585770 -'Prism: Guard Shield': +"Prism: Guard Shield": files: - /Rebellion/PRISM/PLS: + "/Rebellion/PRISM/PLS": tags: - save when: - os: windows - /Rebellion/PRISM/PRISM_SaveFile.dat: + "/Rebellion/PRISM/PRISM_SaveFile.dat": tags: - config when: @@ -408723,11 +409844,11 @@ Prismata: installDir: Prismata: {} launch: - /Contents/MacOS/Prismata: + "/Contents/MacOS/Prismata": - when: - os: mac store: steam - /Prismata.exe: + "/Prismata.exe": - when: - os: windows store: steam @@ -408737,11 +409858,11 @@ Prismatic Maze: installDir: Prismatic Maze: {} launch: - /PrismaticMaze.app: + "/PrismaticMaze.app": - when: - os: mac store: steam - /PrismaticMaze.exe: + "/PrismaticMaze.exe": - when: - os: windows store: steam @@ -408751,11 +409872,11 @@ Prismatica: installDir: Prismatica: {} launch: - /Prismatica.app: + "/Prismatica.app": - when: - os: mac store: steam - /Prismatica.exe: + "/Prismatica.exe": - when: - os: windows store: steam @@ -408765,11 +409886,11 @@ Prismatix: installDir: Prismatix: {} launch: - /Prismatix.app/Contents/MacOS/Prismatix: + "/Prismatix.app/Contents/MacOS/Prismatix": - when: - os: mac store: steam - /Prismatix.exe: + "/Prismatix.exe": - when: - os: windows store: steam @@ -408777,19 +409898,19 @@ Prismatix: id: 805440 Prison Architect: files: - /.Prison Architect: + "/.Prison Architect": tags: - config - save when: - os: linux - /Library/Application Support/Prison Architect: + "/Library/Application Support/Prison Architect": tags: - config - save when: - os: mac - /Introversion/Prison Architect: + "/Introversion/Prison Architect": tags: - config - save @@ -408799,19 +409920,19 @@ Prison Architect: id: 1441974651 id: gogExtra: - - 1442910108 - - 1442909513 - - 1619024184 - - 1513895746 - - 1896980482 + - 1126027458 + - 1372581920 - 1386909466 - - 1991603866 - - 2063674355 - - 1814953452 + - 1442909513 + - 1442910108 + - 1513895746 - 1580943759 - 1618927321 - - 1372581920 - - 1126027458 + - 1619024184 + - 1814953452 + - 1896980482 + - 1991603866 + - 2063674355 steamExtra: - 234430 - 234431 @@ -408832,27 +409953,29 @@ Prison Architect: installDir: Prison Architect: {} launch: - /Launcher/dowser: + "/Launcher/dowser": - when: - os: mac store: steam - /Launcher/dowser.exe: + - os: linux + store: steam + "/Launcher/dowser.exe": - when: - bit: 64 os: windows store: steam - /Prison Architect.app: - - arguments: '-safemode' + "/Prison Architect.app": + - arguments: "-safemode" when: - os: mac store: steam - /PrisonArchitect: - - arguments: '-safemode' + "/PrisonArchitect": + - arguments: "-safemode" when: - os: linux store: steam - /prison architect.exe: - - arguments: '-safemode' + "/prison architect.exe": + - arguments: "-safemode" when: - os: windows store: steam @@ -408861,11 +409984,11 @@ Prison Architect: store: steam steam: id: 233450 -'Prison Ball: Full Blown': +"Prison Ball: Full Blown": installDir: Prison Ball Full Blown: {} launch: - /PrisonBalls.exe: + "/PrisonBalls.exe": - when: - os: windows store: steam @@ -408875,7 +409998,7 @@ Prison Bomber: installDir: Prison Bomber: {} launch: - /PrisonBomber.exe: + "/PrisonBomber.exe": - when: - os: windows store: steam @@ -408893,7 +410016,7 @@ Prison Chainball Massacre: installDir: Prison Chainball Massacre: {} launch: - /Prison Chainball Massacre.exe: + "/Prison Chainball Massacre.exe": - when: - os: windows store: steam @@ -408903,7 +410026,7 @@ Prison Escape: installDir: Prison Escape: {} launch: - /PrisonEscape.exe: + "/PrisonEscape.exe": - when: - os: windows store: steam @@ -408913,7 +410036,7 @@ Prison Forever: installDir: Prison Forever: {} launch: - /Prison Forever.exe: + "/Prison Forever.exe": - when: - store: steam steam: @@ -408925,7 +410048,7 @@ Prison Princess: installDir: Prison Princess: {} launch: - /Prison Princess.exe: + "/Prison Princess.exe": - when: - bit: 64 os: windows @@ -408936,20 +410059,20 @@ Prison Run and Gun: installDir: Prison Run and Gun: {} launch: - /PrisonRnG.app: + "/PrisonRnG.app": - when: - os: mac store: steam - /PrisonRnG.exe: + "/PrisonRnG.exe": - when: - os: windows store: steam - /PrisonRnG.x86: + "/PrisonRnG.x86": - when: - bit: 32 os: linux store: steam - /PrisonRnG.x86_64: + "/PrisonRnG.x86_64": - when: - bit: 64 os: linux @@ -408958,12 +410081,12 @@ Prison Run and Gun: id: 436390 Prison Simulator: files: - /AppData/LocalLow/Baked Games/Prison Simulator: + "/AppData/LocalLow/Baked Games/Prison Simulator": tags: - config when: - os: windows - /AppData/LocalLow/Baked Games/Prison Simulator/Data: + "/AppData/LocalLow/Baked Games/Prison Simulator/Data": tags: - save when: @@ -408971,7 +410094,7 @@ Prison Simulator: installDir: Prison Simulator: {} launch: - /Prison Simulator.exe: + "/Prison Simulator.exe": - when: - os: windows store: steam @@ -408984,49 +410107,49 @@ Prison Test: installDir: Prison Test: {} launch: - /Prison Test.exe: + "/Prison Test.exe": - when: - os: windows store: steam steam: id: 862150 -'Prison Tycoon 3: Lockdown': +"Prison Tycoon 3: Lockdown": installDir: Prison Tycoon 3: {} launch: - /data/prisonTycoon3.exe: + "/data/prisonTycoon3.exe": - when: - store: steam - workingDir: /data + workingDir: "/data" steam: id: 12510 -'Prison Tycoon 4: SuperMax': +"Prison Tycoon 4: SuperMax": installDir: Prison Tycoon 4 Supermax: {} launch: - /data/prisonTycoon4.exe: + "/data/prisonTycoon4.exe": - when: - store: steam - workingDir: /data + workingDir: "/data" steam: id: 33750 Prison Tycoon Alcatraz: installDir: Prison Tycoon Alcatraz: {} launch: - /alcatraz.exe: + "/alcatraz.exe": - when: - os: windows store: steam steam: id: 354820 -'Prison Tycoon: Under New Management': +"Prison Tycoon: Under New Management": gog: id: 1511578434 installDir: Prison Tycoon Under New Management: {} launch: - /PrisonTycoon.exe: + "/PrisonTycoon.exe": - when: - bit: 64 os: windows @@ -409037,7 +410160,7 @@ Prisoner: installDir: Prisoner: {} launch: - /Prisoner.exe: + "/Prisoner.exe": - when: - os: windows store: steam @@ -409047,11 +410170,11 @@ Prisoner (High Five Studios): installDir: Prisoner: {} launch: - /pow.exe: + "/pow.exe": - when: - os: windows store: steam - - arguments: '-testing' + - arguments: "-testing" when: - bit: 64 os: windows @@ -409063,14 +410186,14 @@ Prisoner 518: Prisoner 518: {} steam: id: 1121550 -'Prisoner of War: World War II': +"Prisoner of War: World War II": files: - /Saves: + "/Saves": tags: - save when: - os: windows - /options.wiv: + "/options.wiv": tags: - config when: @@ -409085,21 +410208,21 @@ Private Detective Punch Drunk: installDir: Private Detective Punch Drunk: {} launch: - /PDPD.exe: + "/PDPD.exe": - when: - os: windows store: steam steam: id: 743990 -'Privateer 2: The Darkening': +"Privateer 2: The Darkening": files: - /DARK.CFG: + "/DARK.CFG": tags: - config when: - os: dos - os: windows - /GAME0*.IFF: + "/GAME0*.IFF": tags: - save when: @@ -409111,7 +410234,7 @@ Privateers: installDir: Privateers: {} launch: - /Privateers.exe: + "/Privateers.exe": - when: - store: steam steam: @@ -409120,7 +410243,7 @@ Prixel: installDir: Prixel: {} launch: - /Prixal1.01a.exe: + "/Prixal1.01a.exe": - when: - os: windows store: steam @@ -409130,7 +410253,7 @@ Pro Basketball Manager 2016: installDir: Pro Basketball Manager 2016: {} launch: - /PBM2016.exe: + "/PBM2016.exe": - arguments: fVNdsJPe3mLkVDfywNCyU49X when: - store: steam @@ -409140,7 +410263,7 @@ Pro Basketball Manager 2017: installDir: Pro Basketball Manager 2017: {} launch: - /PBM2017.exe: + "/PBM2017.exe": - arguments: fVNdsJPe3mLkVDfywNCyU49X when: - store: steam @@ -409150,11 +410273,11 @@ Pro Basketball Manager 2019: installDir: Pro Basketball Manager 2019: {} launch: - /PBM2019.app/Contents/MacOS/PBM2019: + "/PBM2019.app/Contents/MacOS/PBM2019": - when: - os: mac store: steam - /PBM2019.exe: + "/PBM2019.exe": - when: - os: windows store: steam @@ -409167,13 +410290,13 @@ Pro Cycling Manager 2012: installDir: Pro Cycling Manager 2012: {} launch: - /CTStageEditor.exe: + "/CTStageEditor.exe": - when: - store: steam - /PCM.exe: + "/PCM.exe": - when: - store: steam - - arguments: '-dbeditor' + - arguments: "-dbeditor" when: - store: steam steam: @@ -409182,14 +410305,14 @@ Pro Cycling Manager 2013: installDir: Pro Cycling Manager 2013: {} launch: - /CTStageEditor.exe: + "/CTStageEditor.exe": - when: - store: steam - /PCM.exe: + "/PCM.exe": - when: - os: windows store: steam - - arguments: '-dbeditor' + - arguments: "-dbeditor" when: - store: steam steam: @@ -409198,7 +410321,7 @@ Pro Cycling Manager 2014: installDir: Pro Cycling Manager 2014: {} launch: - /pcm.exe: + "/pcm.exe": - when: - store: steam steam: @@ -409207,7 +410330,7 @@ Pro Cycling Manager 2015: installDir: Pro Cycling Manager 2015: {} launch: - /PCM.exe: + "/PCM.exe": - when: - os: windows store: steam @@ -409217,7 +410340,7 @@ Pro Cycling Manager 2016: installDir: Pro Cycling Manager 2016: {} launch: - /PCM.exe: + "/PCM.exe": - when: - store: steam steam: @@ -409226,12 +410349,12 @@ Pro Cycling Manager 2017: installDir: Pro Cycling Manager 2017: {} launch: - /PCM64.exe: + "/PCM64.exe": - when: - bit: 64 os: windows store: steam - - arguments: '-safemode -nologo' + - arguments: "-safemode -nologo" when: - bit: 64 os: windows @@ -409242,7 +410365,7 @@ Pro Cycling Manager 2018: installDir: Pro Cycling Manager 2018: {} launch: - /PCM64.exe: + "/PCM64.exe": - when: - bit: 64 os: windows @@ -409253,7 +410376,7 @@ Pro Cycling Manager 2019: installDir: Pro Cycling Manager 2019: {} launch: - /PCM64.exe: + "/PCM64.exe": - when: - bit: 64 os: windows @@ -409264,7 +410387,7 @@ Pro Drift Reloaded: installDir: PRO DRIFT RELOADED: {} launch: - /PRO DRIFT RELOADED v4.0.exe: + "/PRO DRIFT RELOADED v4.0.exe": - when: - os: windows store: steam @@ -409272,12 +410395,12 @@ Pro Drift Reloaded: id: 710640 Pro Evolution Soccer 2008: files: - /KONAMI/Pro Evolution Soccer 2008: + "/KONAMI/Pro Evolution Soccer 2008": tags: - config when: - os: windows - /KONAMI/Pro Evolution Soccer 2008/save: + "/KONAMI/Pro Evolution Soccer 2008/save": tags: - save when: @@ -409286,7 +410409,7 @@ Pro Evolution Soccer 2013: installDir: Pro Evolution Soccer 2013: {} launch: - /PES2013.exe: + "/PES2013.exe": - when: - os: windows store: steam @@ -409294,12 +410417,12 @@ Pro Evolution Soccer 2013: id: 221430 Pro Evolution Soccer 2014: files: - /KONAMI/Pro Evolution Soccer 2014: + "/KONAMI/Pro Evolution Soccer 2014": tags: - config when: - os: windows - /KONAMI/Pro Evolution Soccer 2014/save: + "/KONAMI/Pro Evolution Soccer 2014/save": tags: - save when: @@ -409307,7 +410430,7 @@ Pro Evolution Soccer 2014: installDir: Pro Evolution Soccer 2014: {} launch: - /PES2014.exe: + "/PES2014.exe": - when: - os: windows store: steam @@ -409315,12 +410438,12 @@ Pro Evolution Soccer 2014: id: 250870 Pro Evolution Soccer 2015: files: - /KONAMI/Pro Evolution Soccer 2015: + "/KONAMI/Pro Evolution Soccer 2015": tags: - config when: - os: windows - /KONAMI/Pro Evolution Soccer 2015/save: + "/KONAMI/Pro Evolution Soccer 2015/save": tags: - save when: @@ -409328,19 +410451,19 @@ Pro Evolution Soccer 2015: installDir: Pro Evolution Soccer 2015: {} launch: - /PES2015.exe: + "/PES2015.exe": - when: - store: steam steam: id: 287680 Pro Evolution Soccer 2016: files: - /KONAMI/Pro Evolution Soccer 2016: + "/KONAMI/Pro Evolution Soccer 2016": tags: - config when: - os: windows - /KONAMI/Pro Evolution Soccer 2016/save: + "/KONAMI/Pro Evolution Soccer 2016/save": tags: - save when: @@ -409348,19 +410471,19 @@ Pro Evolution Soccer 2016: installDir: Pro Evolution Soccer 2016: {} launch: - /PES2016.exe: + "/PES2016.exe": - when: - store: steam steam: id: 375960 Pro Evolution Soccer 2016 myClub: files: - /KONAMI/Pro Evolution Soccer 2016 myClub: + "/KONAMI/Pro Evolution Soccer 2016 myClub": tags: - config when: - os: windows - /KONAMI/Pro Evolution Soccer 2016 myClub/save: + "/KONAMI/Pro Evolution Soccer 2016 myClub/save": tags: - save when: @@ -409368,19 +410491,19 @@ Pro Evolution Soccer 2016 myClub: installDir: Pro Evolution Soccer 2016 myClub: {} launch: - /PES2016.exe: + "/PES2016.exe": - when: - store: steam steam: id: 407250 Pro Evolution Soccer 2017: files: - /KONAMI/Pro Evolution Soccer 2017: + "/KONAMI/Pro Evolution Soccer 2017": tags: - config when: - os: windows - /KONAMI/Pro Evolution Soccer 2017/save: + "/KONAMI/Pro Evolution Soccer 2017/save": tags: - save when: @@ -409388,19 +410511,19 @@ Pro Evolution Soccer 2017: installDir: Pro Evolution Soccer 2017: {} launch: - /PES2017.exe: + "/PES2017.exe": - when: - store: steam steam: id: 456610 Pro Evolution Soccer 2017 Trial: files: - /KONAMI/PRO EVOLUTION SOCCER 2017 TRIAL EDITION: + "/KONAMI/PRO EVOLUTION SOCCER 2017 TRIAL EDITION": tags: - config when: - os: windows - /KONAMI/PRO EVOLUTION SOCCER 2017 TRIAL EDITION/save: + "/KONAMI/PRO EVOLUTION SOCCER 2017 TRIAL EDITION/save": tags: - save when: @@ -409408,19 +410531,19 @@ Pro Evolution Soccer 2017 Trial: installDir: PRO EVOLUTION SOCCER 2017 TRIAL EDITION: {} launch: - /PES2017.exe: + "/PES2017.exe": - when: - store: steam steam: id: 541180 Pro Evolution Soccer 2018: files: - /KONAMI/PRO EVOLUTION SOCCER 2018: + "/KONAMI/PRO EVOLUTION SOCCER 2018": tags: - config when: - os: windows - /KONAMI/PRO EVOLUTION SOCCER 2018/save: + "/KONAMI/PRO EVOLUTION SOCCER 2018/save": tags: - save when: @@ -409428,19 +410551,19 @@ Pro Evolution Soccer 2018: installDir: PRO EVOLUTION SOCCER 2018: {} launch: - /PES2018.exe: + "/PES2018.exe": - when: - store: steam steam: id: 592580 Pro Evolution Soccer 2018 Lite: files: - /KONAMI/PRO EVOLUTION SOCCER 2018 LITE: + "/KONAMI/PRO EVOLUTION SOCCER 2018 LITE": tags: - config when: - os: windows - /KONAMI/PRO EVOLUTION SOCCER 2018 LITE/save: + "/KONAMI/PRO EVOLUTION SOCCER 2018 LITE/save": tags: - save when: @@ -409448,19 +410571,19 @@ Pro Evolution Soccer 2018 Lite: installDir: PRO EVOLUTION SOCCER 2018 LITE: {} launch: - /PES2018.exe: + "/PES2018.exe": - when: - store: steam steam: id: 592600 Pro Evolution Soccer 2019: files: - /KONAMI/PRO EVOLUTION SOCCER 2019: + "/KONAMI/PRO EVOLUTION SOCCER 2019": tags: - config when: - os: windows - /KONAMI/PRO EVOLUTION SOCCER 2019//save: + "/KONAMI/PRO EVOLUTION SOCCER 2019//save": tags: - save when: @@ -409468,19 +410591,19 @@ Pro Evolution Soccer 2019: installDir: PRO EVOLUTION SOCCER 2019: {} launch: - /PES2019.exe: + "/PES2019.exe": - when: - store: steam steam: id: 770240 Pro Evolution Soccer 2019 Lite: files: - /KONAMI/PRO EVOLUTION SOCCER 2019 LITE: + "/KONAMI/PRO EVOLUTION SOCCER 2019 LITE": tags: - config when: - os: windows - /KONAMI/PRO EVOLUTION SOCCER 2019 LITE//save: + "/KONAMI/PRO EVOLUTION SOCCER 2019 LITE//save": tags: - save when: @@ -409488,19 +410611,19 @@ Pro Evolution Soccer 2019 Lite: installDir: PRO EVOLUTION SOCCER 2019 LITE: {} launch: - /PES2019_F2P.exe: + "/PES2019_F2P.exe": - when: - store: steam steam: id: 950100 Pro Evolution Soccer 6: files: - /KONAMI/Pro Evolution Soccer 6: + "/KONAMI/Pro Evolution Soccer 6": tags: - config when: - os: windows - /KONAMI/Pro Evolution Soccer 6/save: + "/KONAMI/Pro Evolution Soccer 6/save": tags: - save when: @@ -409509,7 +410632,7 @@ Pro Farm Manager: installDir: ProFarmManager: {} launch: - /Pfm.exe: + "/Pfm.exe": - when: - bit: 64 os: windows @@ -409520,7 +410643,7 @@ Pro Fishing 2018: installDir: PRO FISHING: {} launch: - /ProFishing.exe: + "/ProFishing.exe": - when: - os: windows store: steam @@ -409530,7 +410653,7 @@ Pro Fishing Simulator: installDir: Pro Fishing Simulator: {} launch: - /ProFishingSimulator.exe: + "/ProFishingSimulator.exe": - when: - bit: 64 os: windows @@ -409541,7 +410664,7 @@ Pro Gamer Manager: installDir: Pro Gamer Manager: {} launch: - /PGM.exe: + "/PGM.exe": - when: - os: windows store: steam @@ -409549,12 +410672,12 @@ Pro Gamer Manager: id: 408740 Pro Gamer Manager 2: files: - /AppData/LocalLow/501 Industries/PGM 2/Saves: + "/AppData/LocalLow/501 Industries/PGM 2/Saves": tags: - save when: - os: windows - /AppData/LocalLow/501 Industries/PGM 2/Settings: + "/AppData/LocalLow/501 Industries/PGM 2/Settings": tags: - config when: @@ -409562,17 +410685,17 @@ Pro Gamer Manager 2: installDir: Pro Gamer Manager 2: {} launch: - /pgm2.app: + "/pgm2.app": - when: - bit: 64 os: mac store: steam - /pgm2.exe: + "/pgm2.exe": - when: - bit: 64 os: windows store: steam - /pgm2.x86_64: + "/pgm2.x86_64": - when: - bit: 64 os: linux @@ -409583,7 +410706,7 @@ Pro Gamer Tycoon: installDir: Pro Gamer Tycoon: {} launch: - /ProGamerTycoon.exe: + "/ProGamerTycoon.exe": - when: - os: windows store: steam @@ -409593,11 +410716,11 @@ Pro Gymnast: installDir: Pro Gymnast: {} launch: - /macos/progymnast.app/Contents/MacOS/ProGymnast: + "/macos/progymnast.app/Contents/MacOS/ProGymnast": - when: - os: mac store: steam - /windows/ProGymnast.exe: + "/windows/ProGymnast.exe": - when: - os: windows store: steam @@ -409607,16 +410730,16 @@ Pro Office Calculator: installDir: Pro Office Calculator: {} launch: - /Contents/MacOS/procalc: + "/Contents/MacOS/procalc": - when: - os: mac store: steam - /bin/procalc: + "/bin/procalc": - when: - bit: 64 os: linux store: steam - /procalc.exe: + "/procalc.exe": - when: - bit: 64 os: windows @@ -409627,39 +410750,45 @@ Pro Pinball Ultra: installDir: Pro Pinball Ultra: {} launch: - /Pro Pinball.app/Contents/MacOS/Pro Pinball: + "/Pro Pinball.app/Contents/MacOS/Pro Pinball": - when: - os: mac store: steam - /ProPinball: + "/ProPinball": - when: + - bit: 32 + os: linux + store: steam - bit: 64 os: linux store: steam - /ProPinball.exe: + "/ProPinball.exe": - when: - bit: 32 os: windows store: steam + - bit: 64 + os: windows + store: steam steam: id: 287900 -'Pro Pinball: Big Race USA': +"Pro Pinball: Big Race USA": gog: id: 1207658735 -'Pro Pinball: Fantastic Journey': +"Pro Pinball: Fantastic Journey": gog: id: 1207658736 -'Pro Pinball: Timeshock!': +"Pro Pinball: Timeshock!": gog: id: 1207658737 Pro Rally 2001: files: - /Data/Save: + "/Data/Save": tags: - save when: - os: windows - /Data/Save/proRally.cfg: + "/Data/Save/proRally.cfg": tags: - config when: @@ -409668,7 +410797,7 @@ Pro Rugby Manager 2015: installDir: Pro Rugby Manager 2015: {} launch: - /rugby.exe: + "/rugby.exe": - when: - os: windows store: steam @@ -409678,15 +410807,15 @@ Pro Skater 2D: installDir: Pro Skater 2D: {} launch: - /ProSkater2D.app: + "/ProSkater2D.app": - when: - os: mac store: steam - /ProSkater2D.exe: + "/ProSkater2D.exe": - when: - os: windows store: steam - /ProSkater2D_Linux: + "/ProSkater2D_Linux": - when: - os: linux store: steam @@ -409696,7 +410825,7 @@ Pro Strategy Football 2016: installDir: Pro Strategy Football 2016: {} launch: - /psf2016.exe: + "/psf2016.exe": - when: - bit: 32 os: windows @@ -409707,7 +410836,7 @@ Pro Strategy Football 2018: installDir: Pro Strategy Football 2018: {} launch: - /psf2018.exe: + "/psf2018.exe": - when: - os: windows store: steam @@ -409717,11 +410846,11 @@ Pro Strategy Football 2019: installDir: Pro Strategy Football 2019: {} launch: - /PSF2019.app: + "/PSF2019.app": - when: - os: mac store: steam - /psf2019.exe: + "/psf2019.exe": - when: - os: windows store: steam @@ -409731,11 +410860,11 @@ Pro Strategy Football 2020: installDir: Pro Strategy Football 2020: {} launch: - /PSF2020.app: + "/PSF2020.app": - when: - os: mac store: steam - /psf2020.exe: + "/psf2020.exe": - when: - os: windows store: steam @@ -409745,11 +410874,11 @@ Pro Wrestling X: installDir: ProWrestlingX: {} launch: - /PWX.exe: + "/PWX.exe": - when: - os: windows store: steam - /pwx.app: + "/pwx.app": - when: - os: mac store: steam @@ -409760,7 +410889,7 @@ ProBoon: id: 769480 Probability 0: files: - /Macromedia/Flash Player/#SharedObjects//localhost//p0v1.sol: + "/Macromedia/Flash Player/#SharedObjects//localhost//p0v1.sol": tags: - config - save @@ -409769,11 +410898,11 @@ Probability 0: installDir: Probability 0: {} launch: - /Probability 0.app: + "/Probability 0.app": - when: - os: mac store: steam - /Probability 0.exe: + "/Probability 0.exe": - when: - os: windows store: steam @@ -409783,16 +410912,16 @@ Probably Archery: installDir: Probably Archery: {} launch: - /Probably Archery.app: + "/Probably Archery.app": - when: - os: mac store: steam - /Probably Archery.exe: + "/Probably Archery.exe": - when: - os: windows store: steam - /ProbablyArchery.x86: - - arguments: '-logFile log.txt' + "/ProbablyArchery.x86": + - arguments: "-logFile log.txt" when: - os: linux store: steam @@ -409802,41 +410931,41 @@ Procyon: installDir: Procyon: {} launch: - /Procyon.exe: + "/Procyon.exe": - when: - store: steam steam: id: 266250 Prodeus: files: - /AppData/LocalLow/BoundingBoxSoftware/Prodeus/SaveGames: + "/AppData/LocalLow/BoundingBoxSoftware/Prodeus/SaveGames": tags: - save when: - os: windows - /AppData/LocalLow/BoundingBoxSoftware/Prodeus/Settings: + "/AppData/LocalLow/BoundingBoxSoftware/Prodeus/Settings": tags: - config when: - os: windows - /AppData/LocalLow/Humble Bundle/Prodeus/CloudSaveGames: + "/AppData/LocalLow/Humble Bundle/Prodeus/CloudSaveGames": tags: - save when: - os: windows store: microsoft - /AppData/LocalLow/Humble Bundle/Prodeus/Settings: + "/AppData/LocalLow/Humble Bundle/Prodeus/Settings": tags: - config when: - os: windows store: microsoft - /Library/Application Support/com.BoundingBoxSoftware.Prodeus/SaveGames: + "/Library/Application Support/com.BoundingBoxSoftware.Prodeus/SaveGames": tags: - save when: - os: mac - /Library/Application Support/com.BoundingBoxSoftware.Prodeus/Settings: + "/Library/Application Support/com.BoundingBoxSoftware.Prodeus/Settings": tags: - config when: @@ -409846,22 +410975,22 @@ Prodeus: installDir: Prodeus: {} launch: - /Prodeus.app/Contents/MacOS/Prodeus: - - arguments: '-steamEnabled' + "/Prodeus.app/Contents/MacOS/Prodeus": + - arguments: "-steamEnabled" when: - os: mac store: steam - - arguments: '-steamEnabled -screen-fullscreen 0 -window-mode borderless -screen-height 720 -screen-width 1280 -offline' + - arguments: "-steamEnabled -screen-fullscreen 0 -window-mode borderless -screen-height 720 -screen-width 1280 -offline" when: - os: mac store: steam - /Prodeus.exe: - - arguments: '-steamEnabled' + "/Prodeus.exe": + - arguments: "-steamEnabled" when: - os: windows store: steam - /Prodeus.x86_64: - - arguments: '-steamEnabled' + "/Prodeus.x86_64": + - arguments: "-steamEnabled" when: - os: linux store: steam @@ -409872,11 +411001,13 @@ Prodeus: HKEY_CURRENT_USER/Software/Humble Bundle/Prodeus: tags: - config + when: + - store: microsoft steam: id: 964800 Prodigal: files: - /AppData/LocalLow/Colorgrave/Prodigal/*.syr: + "/AppData/LocalLow/Colorgrave/Prodigal/*.syr": tags: - save when: @@ -409884,7 +411015,7 @@ Prodigal: installDir: Prodigal: {} launch: - /Prodigal.exe: + "/Prodigal.exe": - when: - store: steam steam: @@ -409895,7 +411026,7 @@ Prodigy Tactics: installDir: Prodigy: {} launch: - /Prodigy.exe: + "/Prodigy.exe": - when: - bit: 64 os: windows @@ -409909,21 +411040,21 @@ Production Inc.: installDir: Production Inc: {} launch: - /Code/main.exe: + "/Code/main.exe": - when: - os: windows store: steam - workingDir: /Code + workingDir: "/Code" steam: id: 378390 Production Line: files: - /My Games/productionline: + "/My Games/productionline": tags: - config when: - os: windows - /My Games/productionline/savegames: + "/My Games/productionline/savegames": tags: - save when: @@ -409933,7 +411064,7 @@ Production Line: installDir: Production Line: {} launch: - /ProductionLine.exe: + "/ProductionLine.exe": - when: - bit: 64 os: windows @@ -409944,7 +411075,7 @@ Production Sound: installDir: Production Sound: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -409954,11 +411085,11 @@ Profane: installDir: Profane: {} launch: - /Profane.app: + "/Profane.app": - when: - os: mac store: steam - /Profane.exe: + "/Profane.exe": - when: - bit: 64 os: windows @@ -409969,7 +411100,7 @@ Professional Construction - The Simulation: installDir: Professional Construction - The Simulation: {} launch: - /ProfessionalConstruction-TheSimulation.exe: + "/ProfessionalConstruction-TheSimulation.exe": - when: - os: windows store: steam @@ -409977,7 +411108,7 @@ Professional Construction - The Simulation: id: 502450 Professional Farmer 2014: files: - /Landwirt2014/Save: + "/Landwirt2014/Save": tags: - save when: @@ -409985,7 +411116,7 @@ Professional Farmer 2014: installDir: Professional Farmer 2014: {} launch: - /Landwirt.exe: + "/Landwirt.exe": - when: - store: steam steam: @@ -409994,17 +411125,17 @@ Professional Farmer 2017: installDir: Professional Farmer 2017: {} launch: - /ProFarmer2017.exe: + "/ProFarmer2017.exe": - when: - os: windows store: steam steam: id: 433670 -'Professional Farmer: American Dream': +"Professional Farmer: American Dream": installDir: Professional Farmer American Dream: {} launch: - /FarmingAmerica.exe: + "/FarmingAmerica.exe": - when: - os: windows store: steam @@ -410014,7 +411145,7 @@ Professional Lumberjack 2015: installDir: Professional Lumberjack 2015: {} launch: - /WoodCutter2015.exe: + "/WoodCutter2015.exe": - when: - store: steam steam: @@ -410026,7 +411157,7 @@ Professional Thief: installDir: Professional Thief: {} launch: - /ProfessionalThief.exe: + "/ProfessionalThief.exe": - when: - os: windows store: steam @@ -410041,11 +411172,11 @@ Professor Fizzwizzle and the Molten Mystery: installDir: PF and the Molten Mystery: {} launch: - /PFMM.exe: + "/PFMM.exe": - when: - os: windows store: steam - /Professor Fizzwizzle and the Molten Mystery.app: + "/Professor Fizzwizzle and the Molten Mystery.app": - when: - os: mac store: steam @@ -410055,11 +411186,11 @@ Professor Lupo and His Horrible Pets: installDir: ProfessorLupo: {} launch: - /ProfessorLupo.app: + "/ProfessorLupo.app": - when: - os: mac store: steam - /ProfessorLupo.exe: + "/ProfessorLupo.exe": - when: - os: windows store: steam @@ -410069,130 +411200,130 @@ Professor Madhouse: installDir: Professor Madhouse: {} launch: - /ProfessorMadhouse.app/Contents/MacOS/Professor Madhouse: + "/ProfessorMadhouse.app/Contents/MacOS/Professor Madhouse": - when: - os: mac store: steam - /ProfessorMadhouse.exe: + "/ProfessorMadhouse.exe": - when: - os: windows store: steam steam: id: 849420 -'Professor Nasty Time: The Stupidly Unfair Test Simulator 2016': +"Professor Nasty Time: The Stupidly Unfair Test Simulator 2016": installDir: Professor Nasty Time The Stupidly Unfair Test Simulator 2016: {} launch: - /ProfessorNastyTime.exe: + "/ProfessorNastyTime.exe": - when: - os: windows store: steam steam: id: 545230 -'Professor Watts Memory Match: Cats': +"Professor Watts Memory Match: Cats": installDir: Professor Watts Memory Match Cats: {} launch: - /Professor Watts Memory Match Kittens.exe: + "/Professor Watts Memory Match Kittens.exe": - when: - os: windows store: steam steam: id: 936800 -'Professor Watts Memory Match: Cute Animals': +"Professor Watts Memory Match: Cute Animals": installDir: Professor Watts Memory Match Cute Animals: {} launch: - /Professor Watts Memory Match Baby Animals.exe: + "/Professor Watts Memory Match Baby Animals.exe": - when: - os: windows store: steam steam: id: 910200 -'Professor Watts Memory Match: Expressions': +"Professor Watts Memory Match: Expressions": installDir: Professor Watts Memory Match Expressions: {} launch: - /Professor Watts Memory Match Expressions.exe: + "/Professor Watts Memory Match Expressions.exe": - when: - os: windows store: steam steam: id: 932670 -'Professor Watts Memory Match: Fresh Fruit': +"Professor Watts Memory Match: Fresh Fruit": installDir: Professor Watts Memory Match Fresh Fruit: {} launch: - /Professor Watts Memory Match Fruit.exe: + "/Professor Watts Memory Match Fruit.exe": - when: - os: windows store: steam steam: id: 910250 -'Professor Watts Memory Match: Puppies': +"Professor Watts Memory Match: Puppies": installDir: Professor Watts Memory Match Puppies: {} launch: - /Professor Watts Memory Match Puppies.exe: + "/Professor Watts Memory Match Puppies.exe": - when: - os: windows store: steam steam: id: 936810 -'Professor Watts Memory Match: Shapes and Colors': +"Professor Watts Memory Match: Shapes and Colors": installDir: Professor Watts Memory Match: {} launch: - /professorwattsmemorymatch.exe: + "/professorwattsmemorymatch.exe": - when: - store: steam steam: id: 679530 -'Professor Watts Memory Match: Yummy Cupcakes': +"Professor Watts Memory Match: Yummy Cupcakes": installDir: Professor Watts Memory Match Yummy Cupcakes: {} launch: - /Professor Watts Memory Match Cupcakes.exe: + "/Professor Watts Memory Match Cupcakes.exe": - when: - os: windows store: steam steam: id: 910220 -'Professor Watts Word Search: Into the Ocean': +"Professor Watts Word Search: Into the Ocean": installDir: Professor Watts Word Search Into The Ocean: {} launch: - /professorwattssearchintotheocean.exe: + "/professorwattssearchintotheocean.exe": - when: - os: windows store: steam steam: id: 658430 -'Professor Watts Word Search: Pirates Life': +"Professor Watts Word Search: Pirates Life": installDir: Professor Watts Word Search Pirates Life: {} launch: - /Professor Watts Word Search Pirates Life.exe: + "/Professor Watts Word Search Pirates Life.exe": - when: - os: windows store: steam steam: id: 884390 -'Professor Watts Word Search: Space Voyage': +"Professor Watts Word Search: Space Voyage": installDir: Professor Watts Word Search Space Voyage: {} launch: - /Professor Watts Word Search Space Voyage.exe: + "/Professor Watts Word Search Space Voyage.exe": - when: - os: windows store: steam steam: id: 881610 -'Professor Watts Word Search: Yummy Foods': +"Professor Watts Word Search: Yummy Foods": installDir: Professor Watts Word Search Yummy Foods: {} launch: - /Professor Watts Word Search Yummy Foods.exe: + "/Professor Watts Word Search Yummy Foods.exe": - when: - os: windows store: steam @@ -410202,29 +411333,29 @@ Professor Why Chemistry 1: installDir: Professor Why - Chemistry 1: {} launch: - /ProfessorWhyChemistry1.app/Contents/MacOS/Professor Why Chemistry 1: + "/ProfessorWhyChemistry1.app/Contents/MacOS/Professor Why Chemistry 1": - when: - os: mac store: steam - /ProfessorWhyChemistry1.exe: + "/ProfessorWhyChemistry1.exe": - when: - os: windows store: steam steam: id: 372950 -'Professor Why: The Quantum Eye': +"Professor Why: The Quantum Eye": installDir: Professor Why: {} launch: - /The Quantum Eye.app/Contents/MacOS/The Quantum Eye: + "/The Quantum Eye.app/Contents/MacOS/The Quantum Eye": - when: - os: mac store: steam - /The Quantum Eye.exe: + "/The Quantum Eye.exe": - when: - os: windows store: steam - /The Quantum Eye.x86: + "/The Quantum Eye.x86": - when: - os: linux store: steam @@ -410234,7 +411365,7 @@ Proficient Paddles: installDir: Proficient Paddles: {} launch: - /Proficient Paddles.exe: + "/Proficient Paddles.exe": - when: - os: windows store: steam @@ -410244,11 +411375,11 @@ Profitania: installDir: Profitania: {} launch: - /Profitania.app: + "/Profitania.app": - when: - os: mac store: steam - /Profitania.exe: + "/Profitania.exe": - when: - os: windows store: steam @@ -410263,13 +411394,16 @@ Prog.1: installDir: prog_1: {} launch: - /prog-1.app/Contents/MacOS/nwjs: + "/prog-1.app/Contents/MacOS/nwjs": - when: - bit: 64 os: mac store: steam - /prog-1.exe: + "/prog-1.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam @@ -410284,11 +411418,11 @@ Progetto Ustica: installDir: Progetto Ustica: {} launch: - /ProgettoUstica.exe: + "/ProgettoUstica.exe": - when: - os: windows store: steam - /ProgettoUstica_0.8.2Beta_MAC.app: + "/ProgettoUstica_0.8.2Beta_MAC.app": - when: - os: mac store: steam @@ -410298,16 +411432,16 @@ Progress Bar Simulator: installDir: Progress Bar Simulator: {} launch: - /progressbarsimulator.app/Contents/MacOS/progressbarsimulator: + "/progressbarsimulator.app/Contents/MacOS/progressbarsimulator": - when: - os: mac store: steam - /progressbarsimulator.exe: + "/progressbarsimulator.exe": - when: - bit: 64 os: windows store: steam - /progressbarsimulator.x86_64: + "/progressbarsimulator.x86_64": - when: - bit: 64 os: linux @@ -410325,35 +411459,35 @@ Project 59: Project 59: {} steam: id: 888540 -'Project 5: Sightseer': +"Project 5: Sightseer": installDir: Sightseer: {} launch: - /Sightseer.app: + "/Sightseer.app": - when: - os: mac store: steam - /Sightseer.exe: + "/Sightseer.exe": - when: - bit: 64 os: windows store: steam - /Sightseer.x86_64: + "/Sightseer.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 655780 -'Project AETHER: First Contact': +"Project AETHER: First Contact": installDir: Project AETHER First Contact: {} launch: - /Mac Build.app: + "/Mac Build.app": - when: - os: mac store: steam - /ProjectAETHER.exe: + "/ProjectAETHER.exe": - when: - os: windows store: steam @@ -410368,17 +411502,19 @@ Project Abyss: installDir: Project Abyss: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam + - os: mac + store: steam steam: id: 552410 Project Aftermath: installDir: Project Aftermath: {} launch: - /ProjectAftermath.exe: + "/ProjectAftermath.exe": - when: - store: steam steam: @@ -410387,7 +411523,7 @@ Project Almighty: installDir: Project Almighty: {} launch: - /projectAlmighty_5132win10.exe: + "/projectAlmighty_5132win10.exe": - when: - bit: 64 os: windows @@ -410398,25 +411534,25 @@ Project Alpha 002: installDir: Project Alpha 002: {} launch: - /pa002.exe: + "/pa002.exe": - when: - os: windows store: steam steam: id: 542270 -'Project Amalthea: Battlegrounds': +"Project Amalthea: Battlegrounds": installDir: Amalthea: {} launch: - /Amalthea.sh: + "/Amalthea.sh": - when: - os: linux store: steam - /Project Amalthea.app: + "/Project Amalthea.app": - when: - os: mac store: steam - /SpaceAdventure.ES.exe: + "/SpaceAdventure.ES.exe": - when: - os: windows store: steam @@ -410429,7 +411565,7 @@ Project Apocalypse: installDir: Project Apocalypse: {} launch: - /ProjectApocalypse.exe: + "/ProjectApocalypse.exe": - when: - os: windows store: steam @@ -410439,7 +411575,7 @@ Project Ara - Crucible: installDir: Project Ara - Crucible: {} launch: - /ProjectAraCrucible.exe: + "/ProjectAraCrucible.exe": - when: - os: windows store: steam @@ -410449,7 +411585,7 @@ Project Arrhythmia: installDir: Project Arrhythmia: {} launch: - /Project Arrhythmia.exe: + "/Project Arrhythmia.exe": - when: - os: windows store: steam @@ -410459,7 +411595,7 @@ Project Aura: installDir: Project Aura: {} launch: - /Project Aura.exe: + "/Project Aura.exe": - arguments: Q3DStart.q3d when: - os: windows @@ -410470,12 +411606,12 @@ Project Azriel: installDir: PROJECT AZRIEL: {} launch: - /Project Azriel.exe: + "/Project Azriel.exe": - when: - bit: 64 os: windows store: steam - /ProjectAzriel.app/Contents/MacOS/ProjectAzriel: + "/ProjectAzriel.app/Contents/MacOS/ProjectAzriel": - when: - bit: 64 os: mac @@ -410484,12 +411620,12 @@ Project Azriel: id: 669700 Project CARS: files: - /userdata//234630/local: + "/userdata//234630/local": tags: - save when: - store: steam - /Project CARS/*.xml: + "/Project CARS/*.xml": tags: - config when: @@ -410497,14 +411633,14 @@ Project CARS: installDir: pCars: {} launch: - /pCARS.exe: - - arguments: '-novr' + "/pCARS.exe": + - arguments: "-novr" when: - bit: 32 os: windows store: steam - /pCARS64.exe: - - arguments: '-novr' + "/pCARS64.exe": + - arguments: "-novr" when: - bit: 64 os: windows @@ -410515,14 +411651,14 @@ Project CARS - Pagani Edition: installDir: Project CARS - Pagani Edition: {} launch: - /pCARS.exe: - - arguments: '-novr' + "/pCARS.exe": + - arguments: "-novr" when: - bit: 32 os: windows store: steam - /pCARS64.exe: - - arguments: '-novr' + "/pCARS64.exe": + - arguments: "-novr" when: - bit: 64 os: windows @@ -410531,7 +411667,7 @@ Project CARS - Pagani Edition: id: 429180 Project CARS 2: files: - /Project Cars 2/savegame//project cars 2/profiles: + "/Project Cars 2/savegame//project cars 2/profiles": tags: - save when: @@ -410542,8 +411678,8 @@ Project CARS 2: installDir: Project CARS 2: {} launch: - /pCARS2.exe: - - arguments: '-novr' + "/pCARS2.exe": + - arguments: "-novr" when: - bit: 64 os: windows @@ -410552,12 +411688,12 @@ Project CARS 2: id: 378860 Project CARS 3: files: - /Slightly Mad Studios/Project CARS 3/GraphicsConfigDX11.xml: + "/Slightly Mad Studios/Project CARS 3/GraphicsConfigDX11.xml": tags: - config when: - os: windows - /Slightly Mad Studios/Project CARS 3/savegame: + "/Slightly Mad Studios/Project CARS 3/savegame": tags: - save when: @@ -410565,8 +411701,8 @@ Project CARS 3: installDir: Project CARS 3: {} launch: - /pCARS3.exe: - - arguments: '-novr' + "/pCARS3.exe": + - arguments: "-novr" when: - os: windows store: steam @@ -410576,7 +411712,7 @@ Project Cabin: installDir: Cabin: {} launch: - /Cabin.exe: + "/Cabin.exe": - when: - os: windows store: steam @@ -410584,7 +411720,7 @@ Project Cabin: id: 747990 Project Cappuccino: files: - /AppData/LocalLow/Tentakero/Project Cappuccino: + "/AppData/LocalLow/Tentakero/Project Cappuccino": tags: - config - save @@ -410593,7 +411729,7 @@ Project Cappuccino: installDir: Project Cappuccino: {} launch: - /ProjectCappuccinoOSXV1_25_1.app: + "/ProjectCappuccinoOSXV1_25_1.app": - when: - os: mac store: steam @@ -410613,7 +411749,7 @@ Project Cybertronic: installDir: Project Cybertronic: {} launch: - /Cybertronic_Alpha.exe: + "/Cybertronic_Alpha.exe": - when: - os: windows store: steam @@ -410623,11 +411759,11 @@ Project DeepWeb: installDir: Project DeepWeb: {} launch: - /Project DeepWeb.app: + "/Project DeepWeb.app": - when: - os: mac store: steam - /Project DeepWeb.exe: + "/Project DeepWeb.exe": - when: - os: windows store: steam @@ -410638,7 +411774,7 @@ Project Defense: id: 894450 Project Downfall: files: - /userdata//992730/remote/data/save: + "/userdata//992730/remote/data/save": tags: - save when: @@ -410649,7 +411785,7 @@ Project Downfall: installDir: Project Downfall: {} launch: - /PDF.exe: + "/PDF.exe": - when: - bit: 64 os: windows @@ -410660,17 +411796,17 @@ Project Druid - 2D Labyrinth Explorer-: installDir: Project_Druid: {} launch: - /Project_Druid_retail_Update.exe: + "/Project_Druid_retail_Update.exe": - when: - os: windows store: steam steam: id: 388160 -'Project Eagle: A 3D Interactive Mars Base': +"Project Eagle: A 3D Interactive Mars Base": installDir: Eagle: {} launch: - /Eagle.exe: + "/Eagle.exe": - when: - bit: 64 os: windows @@ -410682,7 +411818,7 @@ Project Earth: id: 765200 Project Eden: files: - /SAVED GAMES: + "/SAVED GAMES": tags: - save when: @@ -410697,11 +411833,11 @@ Project Explore: installDir: Project Explore: {} launch: - /client/Project Explore.exe: + "/client/Project Explore.exe": - when: - os: windows store: steam - /client/Project_Explore: + "/client/Project_Explore": - when: - os: linux store: steam @@ -410711,12 +411847,12 @@ Project FTM: installDir: Sector452: {} launch: - /Sector452.exe: + "/Sector452.exe": - when: - os: windows store: steam - /Sector452/Binaries/Linux/Sector452-Linux-Shipping: - - arguments: '-opengl4' + "/Sector452/Binaries/Linux/Sector452-Linux-Shipping": + - arguments: "-opengl4" when: - os: linux store: steam @@ -410726,7 +411862,7 @@ Project Fire: installDir: Project Fire: {} launch: - /Pfire.exe: + "/Pfire.exe": - when: - store: steam steam: @@ -410735,7 +411871,7 @@ Project First Contact: installDir: Project First Contact: {} launch: - /ProjectFirstContact.exe: + "/ProjectFirstContact.exe": - when: - bit: 64 os: windows @@ -410746,7 +411882,7 @@ Project Flesh: installDir: Project Flesh: {} launch: - /ProjectFlesh.exe: + "/ProjectFlesh.exe": - when: - store: steam steam: @@ -410756,7 +411892,7 @@ Project Fox Online: id: 752070 Project Freedom: files: - /Project Freedom savegames: + "/Project Freedom savegames": tags: - save when: @@ -410764,7 +411900,7 @@ Project Freedom: installDir: Project Freedom: {} launch: - /projectfreedom.exe: + "/projectfreedom.exe": - when: - store: steam registry: @@ -410777,17 +411913,17 @@ Project G: installDir: Project G: {} launch: - /ProjectG.exe: + "/ProjectG.exe": - when: - os: windows store: steam steam: id: 465670 -'Project GR-5LYR: Galactic Relocation': +"Project GR-5LYR: Galactic Relocation": installDir: Project GR-5LYR Galactic Relocation: {} launch: - /ProjectGR-x64-release.exe: + "/ProjectGR-x64-release.exe": - when: - bit: 64 os: windows @@ -410798,7 +411934,7 @@ Project Gemini: installDir: Project Gemini: {} launch: - /Project Gemini.exe: + "/Project Gemini.exe": - when: - store: steam steam: @@ -410807,7 +411943,7 @@ Project Genesis: installDir: PROJECTGENESIS: {} launch: - /ProjectGenesis.exe: + "/ProjectGenesis.exe": - when: - bit: 64 os: windows @@ -410818,7 +411954,7 @@ Project Genom: installDir: Project Genom: {} launch: - /ProjectGenomClient.exe: + "/ProjectGenomClient.exe": - when: - bit: 64 os: windows @@ -410829,21 +411965,24 @@ Project Glitch: installDir: Project Glitch: {} launch: - /Project Glitch.app/Contents/MacOS/Project Glitch: + "/Project Glitch.app/Contents/MacOS/Project Glitch": - when: - os: mac store: steam - /Project Glitch.exe: + "/Project Glitch.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam - /Project Glitch.x86: + "/Project Glitch.x86": - when: - bit: 32 os: linux store: steam - /Project Glitch.x86_64: + "/Project Glitch.x86_64": - when: - bit: 64 os: linux @@ -410854,19 +411993,19 @@ Project Gorgon: installDir: Project Gorgon: {} launch: - /MacPlayer.app/Contents/MacOS/MacPlayer: - - arguments: '-steam' + "/MacPlayer.app/Contents/MacOS/MacPlayer": + - arguments: "-steam" when: - os: mac store: steam - /ProjectGorgon: - - arguments: '-steam' + "/ProjectGorgon": + - arguments: "-steam" when: - bit: 64 os: linux store: steam - /WindowsPlayer.exe: - - arguments: '-steam' + "/WindowsPlayer.exe": + - arguments: "-steam" when: - bit: 64 os: windows @@ -410877,11 +412016,11 @@ Project Graviton: installDir: Project Graviton: {} launch: - /Project Graviton.app: + "/Project Graviton.app": - when: - os: mac store: steam - /projectGraviton-steam.exe: + "/projectGraviton-steam.exe": - when: - os: windows store: steam @@ -410891,7 +412030,7 @@ Project Green Beat: installDir: Project Green Beat: {} launch: - /Binaries/Win32/ProjectGreenBeat.exe: + "/Binaries/Win32/ProjectGreenBeat.exe": - when: - bit: 32 os: windows @@ -410905,16 +412044,16 @@ Project Hastur: installDir: Project Hastur: {} launch: - /Project Hastur.app/Contents/MacOS/Project Hastur: + "/Project Hastur.app/Contents/MacOS/Project Hastur": - when: - os: mac store: steam - /Project Hastur.exe: + "/Project Hastur.exe": - when: - bit: 64 os: windows store: steam - /Project Hastur.x86_64: + "/Project Hastur.x86_64": - when: - bit: 64 os: linux @@ -410928,11 +412067,11 @@ Project Hedra: installDir: project-hedra: {} launch: - /Hedra: + "/Hedra": - when: - os: linux store: steam - /Hedra.exe: + "/Hedra.exe": - when: - os: windows store: steam @@ -410940,32 +412079,32 @@ Project Hedra: id: 1009960 Project Highrise: files: - /.config/unity3d/SomaSim/Project Highrise/prefs: + "/.config/unity3d/SomaSim/Project Highrise/prefs": tags: - config when: - os: linux - /.config/unity3d/SomaSim/Project Highrise/saves: + "/.config/unity3d/SomaSim/Project Highrise/saves": tags: - save when: - os: linux - /AppData/LocalLow/SomaSim/Project Highrise/prefs: + "/AppData/LocalLow/SomaSim/Project Highrise/prefs": tags: - config when: - os: windows - /AppData/LocalLow/SomaSim/Project Highrise/saves: + "/AppData/LocalLow/SomaSim/Project Highrise/saves": tags: - save when: - os: windows - /Library/Application Support/unity.SomaSim.Project Highrise/saves: + "/Library/Application Support/unity.SomaSim.Project Highrise/saves": tags: - save when: - os: mac - /Library/Preferences/unity.SomaSim.Project Highrise.plist: + "/Library/Preferences/unity.SomaSim.Project Highrise.plist": tags: - config when: @@ -410975,15 +412114,15 @@ Project Highrise: installDir: Project Highrise: {} launch: - /Game.app: + "/Game.app": - when: - os: mac store: steam - /Game.exe: + "/Game.exe": - when: - os: windows store: steam - /Game.x86_64: + "/Game.x86_64": - when: - bit: 64 os: linux @@ -410996,7 +412135,7 @@ Project Highrise: id: 423580 Project Hospital: files: - /AppData/LocalLow/Oxymoron Games/Project Hospital: + "/AppData/LocalLow/Oxymoron Games/Project Hospital": tags: - save when: @@ -411005,10 +412144,10 @@ Project Hospital: id: 1660194629 id: gogExtra: - - 2078914180 + - 1269519984 - 1553503979 - 1617011795 - - 1269519984 + - 2078914180 steamExtra: - 1149760 - 1282550 @@ -411017,7 +412156,7 @@ Project Hospital: installDir: Project Hospital: {} launch: - /ProjectHospital.exe: + "/ProjectHospital.exe": - when: - bit: 64 os: windows @@ -411032,15 +412171,15 @@ Project Hovercraft: installDir: Project Hovercraft: {} launch: - /Binaries/Win32/Project Hovercraft.exe: + "/Binaries/Win32/Project Hovercraft.exe": - when: - os: windows store: steam steam: id: 497490 -'Project I.G.I.: I''m Going In': +"Project I.G.I.: I'm Going In": files: - /pc/config.qvm: + "/pc/config.qvm": tags: - config - save @@ -411053,7 +412192,7 @@ Project Kat - Paper Lily Prologue: installDir: Paper Lily - Project Kat: {} launch: - /ProjectKat.exe: + "/ProjectKat.exe": - when: - os: windows store: steam @@ -411063,7 +412202,7 @@ Project Katharsis: installDir: Katharsis Project: {} launch: - /Project Katharsis.exe: + "/Project Katharsis.exe": - when: - os: windows store: steam @@ -411078,7 +412217,7 @@ Project Lazarus: installDir: Project Lazarus: {} launch: - /Project Lazarus.exe: + "/Project Lazarus.exe": - when: - store: steam steam: @@ -411087,7 +412226,7 @@ Project Lounge: installDir: Project Lounge: {} launch: - /ProjectLounge.exe: + "/ProjectLounge.exe": - when: - bit: 32 os: windows @@ -411103,17 +412242,17 @@ Project MALLOW: installDir: Project MALLOW: {} launch: - /Mallow.exe: + "/Mallow.exe": - when: - os: windows store: steam steam: id: 654010 -'Project MIKHAIL: A Muv-Luv War Story': +"Project MIKHAIL: A Muv-Luv War Story": installDir: Project MIKHAIL: {} launch: - /ProjectMIKHAIL.exe: + "/ProjectMIKHAIL.exe": - when: - bit: 64 os: windows @@ -411124,7 +412263,7 @@ Project Maze: installDir: Project Maze: {} launch: - /ProjectMaze.exe: + "/ProjectMaze.exe": - when: - os: windows store: steam @@ -411134,7 +412273,7 @@ Project Mercury: installDir: Project Mercury: {} launch: - /ProjectMercury.exe: + "/ProjectMercury.exe": - when: - os: windows store: steam @@ -411144,7 +412283,7 @@ Project Myriad: installDir: Project Myriad: {} launch: - /ProjectMyriad.exe: + "/ProjectMyriad.exe": - when: - os: windows store: steam @@ -411154,31 +412293,31 @@ Project Night: installDir: Project Night: {} launch: - /ProjectNight.app: + "/ProjectNight.app": - when: - os: mac store: steam - /ProjectNight.exe: + "/ProjectNight.exe": - when: - os: windows store: steam - /ProjectNight.x86: + "/ProjectNight.x86": - when: - bit: 32 os: linux store: steam - /ProjectNight.x86_64: + "/ProjectNight.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 333860 -'Project Nightmares Case 36: Henrietta Kedward': +"Project Nightmares Case 36: Henrietta Kedward": installDir: Project Nightmares: {} launch: - /pn.exe: + "/pn.exe": - when: - bit: 64 os: windows @@ -411189,21 +412328,21 @@ Project Nimbus: installDir: Project Nimbus: {} launch: - /Binaries/Win32/UDK.exe: + "/Binaries/Win32/UDK.exe": - when: - bit: 32 os: windows store: steam - /Project Nimbus.app: + "/Project Nimbus.app": - when: - os: mac store: steam - /ProjectNimbusLauncher.exe: + "/ProjectNimbusLauncher.exe": - when: - bit: 64 os: windows store: steam - /RunGameWithChroma.bat: + "/RunGameWithChroma.bat": - when: - bit: 64 os: windows @@ -411212,7 +412351,7 @@ Project Nimbus: id: 257030 Project Nomads: files: - /Run/save: + "/Run/save": tags: - save when: @@ -411221,8 +412360,8 @@ Project ONe プロジェクト・ワン ~ハロルドはつらいよ~: installDir: Project ONe: {} launch: - /Game.exe: - - arguments: '--in-process-gpu' + "/Game.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam @@ -411232,7 +412371,7 @@ Project Oasis: installDir: ProjectO: {} launch: - /ProjectO_R/Game.exe: + "/ProjectO_R/Game.exe": - when: - os: windows store: steam @@ -411242,7 +412381,7 @@ Project Orion: installDir: Arkin: {} launch: - /Arkin_x64.exe: + "/Arkin_x64.exe": - when: - bit: 64 os: windows @@ -411261,11 +412400,11 @@ Project Pastorate: installDir: Project Pastorate: {} launch: - /Project Pastorate.exe: + "/Project Pastorate.exe": - when: - os: windows store: steam - /ProjectPastorate.app: + "/ProjectPastorate.app": - when: - os: mac store: steam @@ -411275,11 +412414,11 @@ Project Plainsight: installDir: Project Plainsight: {} launch: - /PlainSight.exe: + "/PlainSight.exe": - when: - os: windows store: steam - /PlainSight.sh: + "/PlainSight.sh": - when: - os: linux store: steam @@ -411292,7 +412431,7 @@ Project Pulsation: installDir: Project Pulsation: {} launch: - /ProjectPulsation.exe: + "/ProjectPulsation.exe": - when: - os: windows store: steam @@ -411302,7 +412441,7 @@ Project R.A.T.: installDir: Project RAT: {} launch: - /Project RAT.exe: + "/Project RAT.exe": - when: - os: windows store: steam @@ -411312,7 +412451,7 @@ Project R.E.B.O.O.T: installDir: Project R.E.B.O.O.T: {} launch: - /Project R.E.B.O.O.T.exe: + "/Project R.E.B.O.O.T.exe": - when: - os: windows store: steam @@ -411322,7 +412461,7 @@ Project R.E.B.O.O.T 2: installDir: Project R.E.B.O.O.T 2: {} launch: - /Project R.E.B.O.O.T 2.exe: + "/Project R.E.B.O.O.T 2.exe": - when: - os: windows store: steam @@ -411332,15 +412471,15 @@ Project RIP: installDir: Project RIP: {} launch: - /RIP.app/Contents/MacOS/RIP: + "/RIP.app/Contents/MacOS/RIP": - when: - os: mac store: steam - /RIP.exe: + "/RIP.exe": - when: - os: windows store: steam - /RIP.sh: + "/RIP.sh": - when: - os: linux store: steam @@ -411350,18 +412489,18 @@ Project RPG: installDir: Project RPG: {} launch: - /ProjectRPG.exe: - - arguments: '-windowed' + "/ProjectRPG.exe": + - arguments: "-windowed" when: - os: windows store: steam steam: id: 455710 -'Project RTD : Random Tower Defense': +"Project RTD : Random Tower Defense": installDir: Project RTD: {} launch: - /RTD.exe: + "/RTD.exe": - when: - os: windows store: steam @@ -411374,12 +412513,12 @@ Project Rampage VR: id: 808550 Project Remedium: files: - /NanoPlus/Saved/Config/WindowsNoEditor: + "/NanoPlus/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /NanoPlus/Saved/SaveGames: + "/NanoPlus/Saved/SaveGames": tags: - save when: @@ -411387,7 +412526,7 @@ Project Remedium: installDir: ProjectRemedium: {} launch: - /NanoPlus/Binaries/Win64/NanoPlus-Win64-Shipping.exe: + "/NanoPlus/Binaries/Win64/NanoPlus-Win64-Shipping.exe": - when: - bit: 64 os: windows @@ -411398,19 +412537,19 @@ Project Reset: installDir: Project Reset: {} launch: - /ProjectReset.exe: + "/ProjectReset.exe": - when: - store: steam steam: id: 914510 Project Rhombus: files: - /Project_Rhombus/save.sav: + "/Project_Rhombus/save.sav": tags: - save when: - os: windows - /Project_Rhombus/settings.sav: + "/Project_Rhombus/settings.sav": tags: - config when: @@ -411418,7 +412557,7 @@ Project Rhombus: installDir: Project Rhombus: {} launch: - /Project_Rhombus.exe: + "/Project_Rhombus.exe": - when: - os: windows store: steam @@ -411428,7 +412567,7 @@ Project Root: installDir: Project Root: {} launch: - /ProjectRoot.exe: + "/ProjectRoot.exe": - when: - os: windows store: steam @@ -411444,7 +412583,7 @@ Project Skylab: installDir: Project Skylab: {} launch: - /FindAWayHomeAMars.exe: + "/FindAWayHomeAMars.exe": - when: - os: windows store: steam @@ -411454,17 +412593,17 @@ Project Skylab 2: installDir: Project Skylab 2: {} launch: - /ProjectSkylab2.exe: + "/ProjectSkylab2.exe": - when: - os: windows store: steam steam: id: 927860 -'Project Skylab 3: A New Frontier': +"Project Skylab 3: A New Frontier": installDir: Project Skylab 3 A New Frontier: {} launch: - /ProjectSkylab3.exe: + "/ProjectSkylab3.exe": - when: - os: windows store: steam @@ -411472,7 +412611,7 @@ Project Skylab 2: id: 1050080 Project Snowblind: files: - /Project Snowblind: + "/Project Snowblind": tags: - save when: @@ -411480,14 +412619,14 @@ Project Snowblind: installDir: Project Snowblind: {} launch: - /Snowblind.exe: + "/Snowblind.exe": - when: - store: steam - - arguments: '-setup' + - arguments: "-setup" when: - store: steam registry: - 'HKEY_CURRENT_USER/Software/Crystal Dynamics/Project: SnowBlind': + "HKEY_CURRENT_USER/Software/Crystal Dynamics/Project: SnowBlind": tags: - config steam: @@ -411496,7 +412635,7 @@ Project SolarBot: installDir: Project SolarBot: {} launch: - /ProjectSolarBot.exe: + "/ProjectSolarBot.exe": - when: - os: windows store: steam @@ -411504,7 +412643,7 @@ Project SolarBot: id: 1144690 Project Spark: files: - /Packages/Microsoft.Dakota_8wekyb3d8bbwe: + "/Packages/Microsoft.Dakota_8wekyb3d8bbwe": tags: - config - save @@ -411514,7 +412653,7 @@ Project Starship: installDir: Project Starship: {} launch: - /project_starship.exe: + "/project_starship.exe": - when: - os: windows store: steam @@ -411524,15 +412663,15 @@ Project Starship X: installDir: Project Starship X: {} launch: - /PSX - STEAM MAC.app/Contents/MacOS/Project Starship X: + "/PSX - STEAM MAC.app/Contents/MacOS/Project Starship X": - when: - os: mac store: steam - /Project Starship X.exe: + "/Project Starship X.exe": - when: - os: windows store: steam - /Project Starship X.x86_64: + "/Project Starship X.x86_64": - when: - os: linux store: steam @@ -411550,7 +412689,7 @@ Project Tank: installDir: Project Tank: {} launch: - /Project Tank/Project Tank.exe: + "/Project Tank/Project Tank.exe": - when: - os: windows store: steam @@ -411560,11 +412699,11 @@ Project Tarvotan: installDir: ProjectTarvotan: {} launch: - /Tarvotan.app: + "/Tarvotan.app": - when: - os: mac store: steam - /Tarvotan.exe: + "/Tarvotan.exe": - when: - os: windows store: steam @@ -411577,16 +412716,16 @@ Project Temporality: installDir: Project Temporality: {} launch: - /Launcher//Project Temporality Launcher.exe: + "/Launcher//Project Temporality Launcher.exe": - when: - os: windows store: steam - workingDir: /Launcher/ - /Project Temporality.exe: + workingDir: "/Launcher" + "/Project Temporality.exe": - when: - os: windows store: steam - - arguments: '-forcewindowed' + - arguments: "-forcewindowed" when: - os: windows store: steam @@ -411594,12 +412733,12 @@ Project Temporality: id: 290320 Project Torque: files: - /save/controls: + "/save/controls": tags: - config when: - os: windows - /save/game: + "/save/game": tags: - config when: @@ -411617,29 +412756,29 @@ Project Velocity: installDir: PROJECT VELOCITY: {} launch: - /Contents/MacOS/PROJECTVELOCITY: + "/Contents/MacOS/PROJECTVELOCITY": - when: - os: mac store: steam - /PROJECTVELOCITY.exe: + "/PROJECTVELOCITY.exe": - when: - os: windows store: steam - /PROJECTVELOCITY.x86: + "/PROJECTVELOCITY.x86": - when: - bit: 32 os: linux store: steam - /PROJECTVELOCITY.x86_64: + "/PROJECTVELOCITY.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 776440 -'Project Vostok: Episode 1': +"Project Vostok: Episode 1": files: - /userdata//1783050: + "/userdata//1783050": tags: - save when: @@ -411647,21 +412786,21 @@ Project Velocity: installDir: ProjectVostok: {} launch: - /ProjectVostok/ProjectVostok-32.exe: + "/ProjectVostok/ProjectVostok-32.exe": - when: - bit: 32 os: windows store: steam - /ProjectVostok/ProjectVostok.app: + "/ProjectVostok/ProjectVostok.app": - when: - os: mac store: steam - /ProjectVostok/ProjectVostok.exe: + "/ProjectVostok/ProjectVostok.exe": - when: - bit: 64 os: windows store: steam - /ProjectVostok/ProjectVostok.sh: + "/ProjectVostok/ProjectVostok.sh": - when: - os: linux store: steam @@ -411671,7 +412810,7 @@ Project W.A.K.E.: installDir: Project WAKE: {} launch: - /Project W.A.K.E..exe: + "/Project W.A.K.E..exe": - when: - os: windows store: steam @@ -411679,21 +412818,23 @@ Project W.A.K.E.: id: 534300 Project Warlock: files: - /AppData/LocalLow/Buckshot Software/Project Warlock/GOG: + "/AppData/LocalLow/Buckshot Software/Project Warlock/GOG": tags: - save when: - - store: gog - /AppData/LocalLow/Buckshot Software/Project Warlock/KeyBindings.xml: + - os: windows + store: gog + "/AppData/LocalLow/Buckshot Software/Project Warlock/KeyBindings.xml": tags: - config when: - os: windows - /AppData/LocalLow/Buckshot Software/Project Warlock/Steam/: + "/AppData/LocalLow/Buckshot Software/Project Warlock/Steam/": tags: - save when: - - store: steam + - os: windows + store: steam gog: id: 1459073823 id: @@ -411702,7 +412843,7 @@ Project Warlock: installDir: Project Warlock: {} launch: - /pw_x64.exe: + "/pw_x64.exe": - when: - bit: 64 os: windows @@ -411719,7 +412860,7 @@ Project Warlock II: installDir: Project Warlock II: {} launch: - /Project Warlock 2.exe: + "/Project Warlock 2.exe": - when: - bit: 64 os: windows @@ -411733,12 +412874,12 @@ Project Wasteland: id: 1098390 Project Wingman: files: - /ProjectWingman/Saved/Config/WindowsNoEditor: + "/ProjectWingman/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /ProjectWingman/Saved/SaveGames: + "/ProjectWingman/Saved/SaveGames": tags: - save when: @@ -411748,8 +412889,8 @@ Project Wingman: installDir: Project Wingman: {} launch: - /ProjectWingman.exe: - - arguments: '-nohmd' + "/ProjectWingman.exe": + - arguments: "-nohmd" when: - bit: 64 os: windows @@ -411760,7 +412901,7 @@ Project Winter: installDir: Project Winter: {} launch: - /ProjectWinter.exe: + "/ProjectWinter.exe": - when: - bit: 64 os: windows @@ -411772,7 +412913,7 @@ Project Witchstone: id: 1064120 Project Wunderwaffe: files: - /SaveGame: + "/SaveGame": tags: - save when: @@ -411780,7 +412921,7 @@ Project Wunderwaffe: installDir: Project Wunderwaffe: {} launch: - /ProjectWunderwaffe.exe: + "/ProjectWunderwaffe.exe": - when: - os: windows store: steam @@ -411790,7 +412931,7 @@ Project X: installDir: Project X: {} launch: - /Project X.exe: + "/Project X.exe": - when: - bit: 64 os: windows @@ -411801,7 +412942,7 @@ Project Xandata: installDir: Project Xandata: {} launch: - /start_protected_game.exe: + "/start_protected_game.exe": - when: - bit: 64 os: windows @@ -411812,7 +412953,7 @@ Project Xinatra: installDir: PROJECT XINATRA: {} launch: - /Xinatra.exe: + "/Xinatra.exe": - when: - os: windows store: steam @@ -411822,19 +412963,19 @@ Project Z: installDir: Project Z: {} launch: - /ProjectZ: - - arguments: '--pancake' + "/ProjectZ": + - arguments: "--pancake" when: - bit: 64 os: linux store: steam - /ProjectZ.app/Contents/MacOS/ProjectZ: - - arguments: '--pancake' + "/ProjectZ.app/Contents/MacOS/ProjectZ": + - arguments: "--pancake" when: - os: mac store: steam - /ProjectZ.exe: - - arguments: '--pancake' + "/ProjectZ.exe": + - arguments: "--pancake" when: - bit: 64 os: windows @@ -411845,16 +412986,16 @@ Project Zero Deaths: installDir: Project Zero Deaths: {} launch: - /Project Zero Deaths.app/Contents/MacOS/Project Zero Deaths: + "/Project Zero Deaths.app/Contents/MacOS/Project Zero Deaths": - when: - os: mac store: steam - /Project Zero Deaths.exe: + "/Project Zero Deaths.exe": - when: - bit: 64 os: windows store: steam - /pzd.x86_64: + "/pzd.x86_64": - when: - bit: 64 os: linux @@ -411863,13 +413004,13 @@ Project Zero Deaths: id: 1089650 Project Zomboid: files: - /Zomboid: + "/Zomboid": tags: - config when: - os: windows - os: linux - /Zomboid/Saves: + "/Zomboid/Saves": tags: - save when: @@ -411880,34 +413021,34 @@ Project Zomboid: installDir: ProjectZomboid: {} launch: - /Project Zomboid.app: + "/Project Zomboid.app": - when: - os: mac store: steam - - arguments: '-safemode' + - arguments: "-safemode" when: - os: mac store: steam - /ProjectZomboid32.exe: + "/ProjectZomboid32.exe": - when: - bit: 32 os: windows store: steam - /ProjectZomboid64.bat: + "/ProjectZomboid64.bat": - when: - bit: 64 os: windows store: steam - /ProjectZomboid64.exe: + "/ProjectZomboid64.exe": - when: - bit: 64 os: windows store: steam - /projectzomboid.sh: + "/projectzomboid.sh": - when: - os: linux store: steam - - arguments: '-safemode' + - arguments: "-safemode" when: - os: linux store: steam @@ -411916,21 +413057,21 @@ Project Zomboid: Project of the Developer: steam: id: 601340 -'ProjectM: Daydream': +"ProjectM: Daydream": installDir: ProjectM Day Dream: {} steam: id: 646310 -'ProjectM: Dream': +"ProjectM: Dream": installDir: ProjectM Dream: {} steam: id: 637960 -'Projection: First Light': +"Projection: First Light": installDir: Projection: {} launch: - /Projection.exe: + "/Projection.exe": - when: - os: windows store: steam @@ -411940,7 +413081,7 @@ Projector Face: installDir: Projector Face: {} launch: - /Projector Face.exe: + "/Projector Face.exe": - when: - os: windows store: steam @@ -411950,7 +413091,7 @@ Proletarian Budget Survival: installDir: Proletarian Budget Survival: {} launch: - /2201/ProleBudgSurv.exe: + "/2201/ProleBudgSurv.exe": - when: - bit: 64 os: windows @@ -411961,11 +413102,11 @@ Prologue for a Vacant Kingdom: installDir: Prologue For A Vacant Kingdom: {} launch: - /Vacant Kingdom.app: + "/Vacant Kingdom.app": - when: - os: mac store: steam - /Vacant Kingdom.exe: + "/Vacant Kingdom.exe": - when: - os: windows store: steam @@ -411975,7 +413116,7 @@ Prometheus - The Fire Thief: installDir: Prometheus - The Fire Thief: {} launch: - /Prometheus v1.3.exe: + "/Prometheus v1.3.exe": - when: - os: windows store: steam @@ -411985,11 +413126,11 @@ Promethium: installDir: Promethium: {} launch: - /Promethium.app: + "/Promethium.app": - when: - os: mac store: steam - /Promethium.exe: + "/Promethium.exe": - when: - os: windows store: steam @@ -411999,7 +413140,7 @@ Prominence: installDir: Prominence: {} launch: - /prominence.exe: + "/prominence.exe": - when: - os: windows store: steam @@ -412007,7 +413148,7 @@ Prominence: id: 270230 Prominence Poker: files: - /Prominence/Saved/SaveGames/progress.sav: + "/Prominence/Saved/SaveGames/progress.sav": tags: - save when: @@ -412015,7 +413156,7 @@ Prominence Poker: installDir: Prominence Poker: {} launch: - /Prominence/Binaries/Win64/Prominence-Win64-Shipping.exe: + "/Prominence/Binaries/Win64/Prominence-Win64-Shipping.exe": - when: - bit: 64 os: windows @@ -412026,15 +413167,15 @@ Prompt: installDir: Prompt: {} launch: - /Prompt.app: + "/Prompt.app": - when: - os: mac store: steam - /Prompt.exe: + "/Prompt.exe": - when: - os: windows store: steam - /launcher.sh: + "/launcher.sh": - when: - os: linux store: steam @@ -412046,7 +413187,7 @@ Pronty: installDir: Pronty Fishy Adventure: {} launch: - /Pronty Fishy Adventure.exe: + "/Pronty Fishy Adventure.exe": - when: - os: windows store: steam @@ -412056,11 +413197,11 @@ Propaganda Llama: installDir: Propaganda Llama: {} launch: - /propaganda_llama.app: + "/propaganda_llama.app": - when: - os: mac store: steam - /propaganda_llama.exe: + "/propaganda_llama.exe": - when: - os: windows store: steam @@ -412070,51 +413211,51 @@ Property: installDir: Property: {} launch: - /Randomlevel.exe: + "/Randomlevel.exe": - when: - os: windows store: steam steam: id: 778930 -'Prophecy I: The Fall of Trinadon': +"Prophecy I: The Fall of Trinadon": files: - /SAVEGAME.DTA: + "/SAVEGAME.DTA": tags: - save when: - os: dos -'Prophecy I: The Viking Child': +"Prophecy I: The Viking Child": installDir: Prophecy I - The Viking Child: {} launch: - /DOSBox.app/Contents/MacOS/DOSBox: - - arguments: '-conf ../Conf/viking.cfg -noconsole' + "/DOSBox.app/Contents/MacOS/DOSBox": + - arguments: "-conf ../Conf/viking.cfg -noconsole" when: - os: mac store: steam - workingDir: /DOS - /dosbox: - - arguments: '-conf ../Conf/viking.cfg -noconsole' + workingDir: "/DOS" + "/dosbox": + - arguments: "-conf ../Conf/viking.cfg -noconsole" when: - os: linux store: steam - workingDir: /DOS - /dosbox.exe: - - arguments: '-conf ../Conf/viking.cfg -noconsole' + workingDir: "/DOS" + "/dosbox.exe": + - arguments: "-conf ../Conf/viking.cfg -noconsole" when: - os: windows store: steam - workingDir: /DOS + workingDir: "/DOS" steam: id: 719290 Prophecy of the Shadow: files: - /CAT.CFG: + "/CAT.CFG": tags: - config when: - os: dos - /SAVE: + "/SAVE": tags: - save when: @@ -412123,16 +413264,16 @@ Prophour23: installDir: Prophour23: {} launch: - /Contents/MacOS/Prophour23: + "/Contents/MacOS/Prophour23": - when: - os: mac store: steam - workingDir: /Contents/MacOS - /Prophour23: + workingDir: "/Contents/MacOS" + "/Prophour23": - when: - os: linux store: steam - /Prophour23.exe: + "/Prophour23.exe": - when: - os: windows store: steam @@ -412142,7 +413283,7 @@ Propnight: installDir: Propnight: {} launch: - /Propnight/Binaries/Win64/Propnight_BE.exe: + "/Propnight/Binaries/Win64/Propnight_BE.exe": - when: - bit: 64 os: windows @@ -412153,8 +413294,8 @@ Prospekt: installDir: Prospekt: {} launch: - /hl2.exe: - - arguments: '-game prospekt' + "/hl2.exe": + - arguments: "-game prospekt" when: - os: windows store: steam @@ -412164,15 +413305,15 @@ Prosperity: installDir: Prosperity: {} launch: - /Prosperity: + "/Prosperity": - when: - os: linux store: steam - /Prosperity.app: + "/Prosperity.app": - when: - os: mac store: steam - /Prosperity.exe: + "/Prosperity.exe": - when: - os: windows store: steam @@ -412193,7 +413334,7 @@ Protect Me: installDir: Protect Me: {} launch: - /protection.exe: + "/protection.exe": - when: - store: steam steam: @@ -412202,7 +413343,7 @@ Protect Your Fool: installDir: Protect Your Fool: {} launch: - /Protect Your Fool.exe: + "/Protect Your Fool.exe": - when: - os: windows store: steam @@ -412212,7 +413353,7 @@ Protect Your Planet: installDir: Protect your planet: {} launch: - /Protect your planet.exe: + "/Protect your planet.exe": - when: - store: steam steam: @@ -412221,7 +413362,7 @@ Protect the campus: installDir: Protect the campus: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -412234,7 +413375,7 @@ Protein for Muscle: installDir: Protein for Muscle: {} launch: - /Protein.exe: + "/Protein.exe": - when: - os: windows store: steam @@ -412244,26 +413385,26 @@ Protest: installDir: PROTEST: {} launch: - /Game.exe: - - arguments: '--in-process-gpu' + "/Game.exe": + - arguments: "--in-process-gpu" when: - store: steam steam: id: 899540 Proteus: files: - /Library/Application Support/Proteus: + "/Library/Application Support/Proteus": tags: - config - save when: - os: mac - /Proteus/settings.txt: + "/Proteus/settings.txt": tags: - config when: - os: windows - /Proteus: + "/Proteus": tags: - config - save @@ -412272,19 +413413,19 @@ Proteus: installDir: Proteus: {} launch: - /Proteus: + "/Proteus": - when: - os: linux store: steam - /Proteus.app/Contents/MacOS/Proteus: + "/Proteus.app/Contents/MacOS/Proteus": - when: - os: mac store: steam - /proteus.exe: + "/proteus.exe": - when: - os: windows store: steam - - arguments: '-window' + - arguments: "-window" when: - os: windows store: steam @@ -412294,7 +413435,7 @@ Proto Raider: installDir: Proto Raider: {} launch: - /ProtoRaider.exe: + "/ProtoRaider.exe": - when: - os: windows store: steam @@ -412307,12 +413448,12 @@ ProtoCorgi: installDir: ProtoCorgi: {} launch: - /protocorgi_linux_x64.x86_64: + "/protocorgi_linux_x64.x86_64": - when: - bit: 64 os: linux store: steam - /protocorgi_windows_x64.exe: + "/protocorgi_windows_x64.exe": - when: - bit: 64 os: windows @@ -412326,7 +413467,7 @@ ProtoGalaxy: installDir: ProtoGalaxy: {} launch: - /ProtoGalaxy.exe: + "/ProtoGalaxy.exe": - when: - store: steam steam: @@ -412335,7 +413476,7 @@ ProtoMasons: installDir: ProtoMasons: {} launch: - /ProtoMasons.exe: + "/ProtoMasons.exe": - when: - os: windows store: steam @@ -412345,7 +413486,7 @@ Protoball: installDir: Protoball: {} launch: - /StudioZBase.exe: + "/StudioZBase.exe": - when: - bit: 64 os: windows @@ -412356,33 +413497,36 @@ Protocol: installDir: Protocol: {} launch: - /protocol.X86: + "/protocol.X86": - when: - bit: 32 os: linux store: steam - /protocol.X86_64: + "/protocol.X86_64": - when: - bit: 64 os: linux store: steam - /protocol.app: + "/protocol.app": - when: - os: mac store: steam - /protocol.exe: + "/protocol.exe": - when: - bit: 32 os: windows store: steam + - bit: 64 + os: windows + store: steam steam: id: 378020 Protocol (2018): installDir: Protocol: {} launch: - /Protocol.exe: - - arguments: '-nohmd' + "/Protocol.exe": + - arguments: "-nohmd" when: - bit: 64 os: windows @@ -412396,8 +413540,8 @@ Protocol VR: installDir: Protocol VR: {} launch: - /Protocol.exe: - - arguments: '-nohmd' + "/Protocol.exe": + - arguments: "-nohmd" when: - bit: 64 os: windows @@ -412408,7 +413552,7 @@ Protogenesis: installDir: Protogenisis: {} launch: - /ProtogenisisV2.exe: + "/ProtogenisisV2.exe": - when: - bit: 64 os: windows @@ -412419,15 +413563,15 @@ Protolife: installDir: Protolife: {} launch: - /Protolife: + "/Protolife": - when: - os: linux store: steam - /Protolife.app: + "/Protolife.app": - when: - os: mac store: steam - /Protolife.exe: + "/Protolife.exe": - when: - os: windows store: steam @@ -412447,11 +413591,11 @@ Protonwar: installDir: Protonwar: {} launch: - /WindowsNoEditor/ProtonGame/Binaries/Win64/ProtonGame.exe: + "/WindowsNoEditor/ProtonGame/Binaries/Win64/ProtonGame.exe": - when: - os: windows store: steam - workingDir: /WindowsNoEditor/ProtonGame/Binaries/Win64 + workingDir: "/WindowsNoEditor/ProtonGame/Binaries/Win64" steam: id: 461410 Protoshift: @@ -412461,22 +413605,22 @@ Protothype: installDir: PROTOThYPE: {} launch: - /PROTOThYPE.exe: + "/PROTOThYPE.exe": - when: - bit: 32 os: windows store: steam - /PROTOThYPE.x86: + "/PROTOThYPE.x86": - when: - bit: 32 os: linux store: steam - /PROTOThYPE.x86_64: + "/PROTOThYPE.x86_64": - when: - bit: 64 os: linux store: steam - /PROTOThYPE_64.exe: + "/PROTOThYPE_64.exe": - when: - bit: 64 os: windows @@ -412485,7 +413629,7 @@ Protothype: id: 587070 Prototype: files: - /Prototype: + "/Prototype": tags: - save when: @@ -412493,14 +413637,14 @@ Prototype: installDir: Prototype: {} launch: - /prototypef.exe: + "/prototypef.exe": - when: - store: steam steam: id: 10150 Prototype 2: files: - /Activision/Prototype 2: + "/Activision/Prototype 2": tags: - config - save @@ -412509,14 +413653,14 @@ Prototype 2: installDir: Prototype 2: {} launch: - /prototype2.exe: + "/prototype2.exe": - when: - store: steam steam: id: 115320 Prototype Mansion - Used No Cover: files: - /.config/unity3d/Jupiter Lighthouse Studio: + "/.config/unity3d/Jupiter Lighthouse Studio": tags: - config - save @@ -412525,21 +413669,21 @@ Prototype Mansion - Used No Cover: installDir: Prototype Mansion - Used No Cover: {} launch: - /PrototypeMansion.app: + "/PrototypeMansion.app": - when: - os: mac store: steam - /prototypemansion.exe: + "/prototypemansion.exe": - when: - os: windows store: steam - /prototypemansion.x86_64: + "/prototypemansion.x86_64": - when: - bit: 64 os: linux store: steam registry: - HKEY_CURRENT_USER/Software/Jupiter Lighthouse Studio/Devil's Bargain Bin: + "HKEY_CURRENT_USER/Software/Jupiter Lighthouse Studio/Devil's Bargain Bin": tags: - config steam: @@ -412548,7 +413692,7 @@ Prototype TD: installDir: Prototype TD: {} launch: - /TD.exe: + "/TD.exe": - when: - os: windows store: steam @@ -412558,7 +413702,7 @@ Prototype-CUBE: installDir: Prototype-CUBE: {} launch: - /Prototype-CUBE.exe: + "/Prototype-CUBE.exe": - when: - bit: 64 os: windows @@ -412567,7 +413711,7 @@ Prototype-CUBE: id: 1065930 Prototypers: files: - /MOB_OPS: + "/MOB_OPS": tags: - save when: @@ -412575,7 +413719,7 @@ Prototypers: installDir: Prototypers: {} launch: - /Prototypers.exe: + "/Prototypers.exe": - when: - bit: 64 os: windows @@ -412592,22 +413736,22 @@ Proxy - Ultimate Hacker: installDir: Proxy - Ultimate Hacker: {} launch: - /Proxy.app: + "/Proxy.app": - when: - os: mac store: steam - /Proxy.exe: + "/Proxy.exe": - when: - os: windows store: steam - /Proxy.x86: - - arguments: '-force-opengl' + "/Proxy.x86": + - arguments: "-force-opengl" when: - bit: 32 os: linux store: steam - /Proxy.x86_64: - - arguments: '-force-opengl' + "/Proxy.x86_64": + - arguments: "-force-opengl" when: - bit: 64 os: linux @@ -412618,11 +413762,11 @@ Proxy Blade Zero: installDir: Proxy Blade Zero: {} launch: - /Proxy Blade Launcher.exe: + "/Proxy Blade Launcher.exe": - when: - os: windows store: steam - /Proxy Blade Zero.exe: + "/Proxy Blade Zero.exe": - when: - os: windows store: steam @@ -412630,7 +413774,7 @@ Proxy Blade Zero: id: 313980 Psebay: files: - /Psebay: + "/Psebay": tags: - config - save @@ -412639,15 +413783,15 @@ Psebay: installDir: Psebay: {} launch: - /Psebay: + "/Psebay": - when: - os: linux store: steam - /Psebay.app/Contents/MacOS/Psebay: + "/Psebay.app/Contents/MacOS/Psebay": - when: - os: mac store: steam - /Psebay.exe: + "/Psebay.exe": - when: - os: windows store: steam @@ -412658,12 +413802,12 @@ Pseudo Commando Heroic Revenge Fantasy: id: 1001770 Pseudoregalia: files: - /pseudoregalia/Saved/Config/Windows: + "/pseudoregalia/Saved/Config/Windows": tags: - config when: - os: windows - /pseudoregalia/Saved/SaveGames: + "/pseudoregalia/Saved/SaveGames": tags: - save when: @@ -412671,7 +413815,7 @@ Pseudoregalia: installDir: Pseudoregalia: {} launch: - /pseudoregalia.exe: + "/pseudoregalia.exe": - when: - os: windows store: steam @@ -412688,7 +413832,7 @@ Psi Cards: installDir: Psi Cards: {} launch: - /PsiCards.exe: + "/PsiCards.exe": - when: - os: windows store: steam @@ -412698,7 +413842,7 @@ Psi Project: installDir: Psi Project: {} launch: - /PSI PROJECT.exe: + "/PSI PROJECT.exe": - when: - os: windows store: steam @@ -412707,33 +413851,33 @@ Psi Project: Psi Project 2: steam: id: 725290 -'Psi Project: Legacy': +"Psi Project: Legacy": installDir: Psi Project Legacy: {} launch: - /PSI PROJECT LEGACY.exe: + "/PSI PROJECT LEGACY.exe": - when: - os: windows store: steam steam: id: 753990 -'Psi-Ops: The Mindgate Conspiracy': +"Psi-Ops: The Mindgate Conspiracy": files: - /GameConfig.ini: + "/GameConfig.ini": tags: - config when: - os: windows - /save: + "/save": tags: - save when: - os: windows -'PsiSyn: The Game': +"PsiSyn: The Game": installDir: PsiSyn The Game: {} launch: - /PsiSyn.exe: + "/PsiSyn.exe": - when: - store: steam steam: @@ -412742,20 +413886,20 @@ Psichodelya: installDir: Psichodelya: {} launch: - /Psichodelya.app: + "/Psichodelya.app": - when: - os: mac store: steam - /Psichodelya.exe: + "/Psichodelya.exe": - when: - os: windows store: steam - /Psichodelya.x86: + "/Psichodelya.x86": - when: - bit: 32 os: linux store: steam - /Psichodelya.x86_64: + "/Psichodelya.x86_64": - when: - bit: 64 os: linux @@ -412766,7 +413910,7 @@ Psihanul: installDir: Psihanul: {} launch: - /Psihanul.exe: + "/Psihanul.exe": - when: - bit: 64 os: windows @@ -412777,7 +413921,7 @@ Psikodelya: installDir: Psikodelya: {} launch: - /Psikodelya.exe: + "/Psikodelya.exe": - when: - os: windows store: steam @@ -412787,33 +413931,33 @@ Psy High: installDir: PsyHigh: {} launch: - /Psy High.app/Contents/MacOS/Psy High: + "/Psy High.app/Contents/MacOS/Psy High": - when: - os: mac store: steam - /PsyHigh: + "/PsyHigh": - when: - os: linux store: steam - /PsyHigh.exe: + "/PsyHigh.exe": - when: - os: windows store: steam steam: id: 339510 -'Psy High 2: High Summer': +"Psy High 2: High Summer": installDir: Psy High 2 High Summer: {} launch: - /Psy High 2 High Summer.app/Contents/MacOS/Psy High 2 High Summer: + "/Psy High 2 High Summer.app/Contents/MacOS/Psy High 2 High Summer": - when: - os: mac store: steam - /PsyHigh2HighSummer: + "/PsyHigh2HighSummer": - when: - os: linux store: steam - /PsyHigh2HighSummer.exe: + "/PsyHigh2HighSummer.exe": - when: - os: windows store: steam @@ -412823,7 +413967,7 @@ PsyBurst: installDir: PsyBurst: {} launch: - /Psyburst.exe: + "/Psyburst.exe": - when: - os: windows store: steam @@ -412833,7 +413977,7 @@ PsyOps Solutions: installDir: PsyOps Solutions: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -412856,7 +414000,7 @@ Psychedelica of the Ashen Hawk: installDir: Psychedelica of the Ashen Hawk: {} launch: - /Psychedelica of the Ashen Hawk.exe: + "/Psychedelica of the Ashen Hawk.exe": - when: - os: windows store: steam @@ -412866,7 +414010,7 @@ Psychedelica of the Black Butterfly: installDir: Psychedelica of the Black Butterfly: {} launch: - /Psychedelica of the Black Butterfly.exe: + "/Psychedelica of the Black Butterfly.exe": - when: - os: windows store: steam @@ -412876,7 +414020,7 @@ Psychiatrist Simulator: installDir: Psychiatrist Simulator: {} launch: - /Psychiatrist Simulator.exe: + "/Psychiatrist Simulator.exe": - when: - os: windows store: steam @@ -412886,7 +414030,7 @@ Psychic Isolation: installDir: Psychic Isolation: {} launch: - /EP1.exe: + "/EP1.exe": - when: - store: steam steam: @@ -412898,7 +414042,7 @@ Psycho Boys: installDir: PsychoBoys: {} launch: - /PsychoBoys.exe: + "/PsychoBoys.exe": - when: - os: windows store: steam @@ -412911,11 +414055,11 @@ Psycho Squirrels: installDir: Psycho Squirrels: {} launch: - /Psycho Squirrels.app: + "/Psycho Squirrels.app": - when: - os: mac store: steam - /Psycho Squirrels.exe: + "/Psycho Squirrels.exe": - when: - os: windows store: steam @@ -412931,13 +414075,13 @@ Psycho Starship Rampage: installDir: PsychoStarshipRampage: {} launch: - /jre/bin/java: - - arguments: '-jar ./PsychoStarshipRampage.jar' + "/jre/bin/java": + - arguments: "-jar ./PsychoStarshipRampage.jar" when: - os: linux store: steam - /jre/bin/javaw.exe: - - arguments: '-jar ./PsychoStarshipRampage.jar' + "/jre/bin/javaw.exe": + - arguments: "-jar ./PsychoStarshipRampage.jar" when: - os: windows store: steam @@ -412947,11 +414091,11 @@ Psycho Train: installDir: Psycho Train: {} launch: - /PsychoTrain.app/Contents/MacOS/PsychoTrain: + "/PsychoTrain.app/Contents/MacOS/PsychoTrain": - when: - os: mac store: steam - /PsychoTrain.exe: + "/PsychoTrain.exe": - when: - os: windows store: steam @@ -412961,7 +414105,7 @@ Psycho Wolf: installDir: Psycho Wolf: {} launch: - /Psycho Wolf.exe: + "/Psycho Wolf.exe": - when: - os: windows store: steam @@ -412971,32 +414115,32 @@ Psycho on the loose: installDir: Psycho on the loose: {} launch: - /Psycho_on_the_loose.exe: + "/Psycho_on_the_loose.exe": - when: - os: windows store: steam steam: id: 568860 -'Psycho-Pass: Mandatory Happiness': +"Psycho-Pass: Mandatory Happiness": files: - /PSY_Data/savedata: + "/PSY_Data/savedata": tags: - save when: - os: windows id: steamExtra: - - 630790 - 587510 + - 630790 installDir: PSYCHO-PASS Mandatory Happiness Steam: {} launch: - /PSY.exe: + "/PSY.exe": - when: - os: windows store: steam registry: - 'HKEY_CURRENT_USER/SOFTWARE/DefaultCompany/PSYCHO-PASS: Mandatory Happiness': + "HKEY_CURRENT_USER/SOFTWARE/DefaultCompany/PSYCHO-PASS: Mandatory Happiness": tags: - config steam: @@ -413005,17 +414149,17 @@ Psychoballs: installDir: Psychoballs: {} launch: - /PsychoBalls.exe: + "/PsychoBalls.exe": - when: - os: windows store: steam steam: id: 801840 -'Psychocat: The Answer': +"Psychocat: The Answer": installDir: Psychocat The Answer: {} launch: - /Psychocat.exe: + "/Psychocat.exe": - when: - os: windows store: steam @@ -413023,7 +414167,7 @@ Psychoballs: id: 431910 Psycholonials: files: - /Psycholonials_Data/NaninovelData/Saves: + "/Psycholonials_Data/NaninovelData/Saves": tags: - save when: @@ -413031,16 +414175,16 @@ Psycholonials: installDir: Psycholonials: {} launch: - /Psycholonials.exe: + "/Psycholonials.exe": - when: - os: windows store: steam - /Psycholonials.x86_64: + "/Psycholonials.x86_64": - when: - bit: 64 os: linux store: steam - /psycholonials.app: + "/psycholonials.app": - when: - os: mac store: steam @@ -413048,39 +414192,39 @@ Psycholonials: id: 1529810 Psychonauts: files: - /Profiles: + "/Profiles": tags: - save when: - os: windows - /Library/Application Support/Psychonauts: + "/Library/Application Support/Psychonauts": tags: - config when: - os: mac - /Library/Application Support/Psychonauts/Profiles: + "/Library/Application Support/Psychonauts/Profiles": tags: - save when: - os: mac - /Psychonauts: + "/Psychonauts": tags: - config when: - os: windows store: microsoft - /Psychonauts/Profiles: + "/Psychonauts/Profiles": tags: - save when: - os: windows store: microsoft - /Psychonauts: + "/Psychonauts": tags: - config when: - os: linux - /Psychonauts/Profiles: + "/Psychonauts/Profiles": tags: - save when: @@ -413090,15 +414234,15 @@ Psychonauts: installDir: Psychonauts: {} launch: - /Psychonauts: + "/Psychonauts": - when: - os: linux store: steam - /Psychonauts.app: + "/Psychonauts.app": - when: - os: mac store: steam - /Psychonauts.exe: + "/Psychonauts.exe": - when: - os: windows store: steam @@ -413106,34 +414250,34 @@ Psychonauts: id: 3830 Psychonauts 2: files: - /.config/Epic/Psychonauts2: + "/.config/Epic/Psychonauts2": tags: - save when: - os: linux - /Library/Containers/com.doublefine.psychonauts2/Data/Library/Application Support/Epic/Psychonauts2/Saved: + "/Library/Containers/com.doublefine.psychonauts2/Data/Library/Application Support/Epic/Psychonauts2/Saved": tags: - save when: - os: mac - /Packages/Microsoft.Psychonauts2_8wekyb3d8bbwe/LocalCache/Local/Psychonauts2/Saved/Config/WinGDK: + "/Packages/Microsoft.Psychonauts2_8wekyb3d8bbwe/LocalCache/Local/Psychonauts2/Saved/Config/WinGDK": tags: - config when: - os: windows store: microsoft - /Packages/Microsoft.Psychonauts2_8wekyb3d8bbwe/SystemAppData/wgs: + "/Packages/Microsoft.Psychonauts2_8wekyb3d8bbwe/SystemAppData/wgs": tags: - save when: - os: windows store: microsoft - /Psychonauts2/Saved/Config/WindowsNoEditor: + "/Psychonauts2/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /Psychonauts2/Saved/SaveGames: + "/Psychonauts2/Saved/SaveGames": tags: - save when: @@ -413146,15 +414290,15 @@ Psychonauts 2: installDir: Psychonauts 2: {} launch: - /Psychonauts2-Mac-Shipping.app: + "/Psychonauts2-Mac-Shipping.app": - when: - os: mac store: steam - /Psychonauts2.exe: + "/Psychonauts2.exe": - when: - os: windows store: steam - /Psychonauts2.sh: + "/Psychonauts2.sh": - when: - bit: 64 os: linux @@ -413163,12 +414307,12 @@ Psychonauts 2: id: 607080 Psychonauts in the Rhombus of Ruin: files: - /PsychonautsInTheRhombusOfRuin/Saved/SaveGames/PsychonautsInTheRhombusOfRuinSave0.sav: + "/PsychonautsInTheRhombusOfRuin/Saved/SaveGames/PsychonautsInTheRhombusOfRuinSave0.sav": tags: - save when: - os: windows - /PsychonautsInTheRhombusOfRuin/Saved/SaveGames/PsychonautsInTheRhombusOfRuinSettings0.sav: + "/PsychonautsInTheRhombusOfRuin/Saved/SaveGames/PsychonautsInTheRhombusOfRuinSettings0.sav": tags: - config when: @@ -413181,7 +414325,7 @@ Psychopathics: installDir: Psychopathics: {} launch: - /Psychopathics.exe: + "/Psychopathics.exe": - when: - os: windows store: steam @@ -413191,7 +414335,7 @@ Psychose: installDir: Psychose: {} launch: - /Psychose.exe: + "/Psychose.exe": - when: - os: windows store: steam @@ -413199,12 +414343,12 @@ Psychose: id: 1116090 Psychotoxic: files: - /bin/*.cfg: + "/bin/*.cfg": tags: - config when: - os: windows - /bin/SaveGame: + "/bin/SaveGame": tags: - save when: @@ -413213,7 +414357,7 @@ PsycoCat: installDir: PsycoCat: {} launch: - /PsycoCat.exe: + "/PsycoCat.exe": - when: - os: windows store: steam @@ -413226,7 +414370,7 @@ Psyvariar Delta: installDir: Psyvariar Delta: {} launch: - /PsyvariarDelta.exe: + "/PsyvariarDelta.exe": - when: - store: steam steam: @@ -413235,7 +414379,7 @@ Pterodalien: installDir: Pterodalien: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -413245,11 +414389,11 @@ PuPaiPo Space Deluxe: installDir: PuPaiPo Space Deluxe: {} launch: - /PuPaiPoSpaceDX: + "/PuPaiPoSpaceDX": - when: - os: linux store: steam - /PuPaiPoSpaceDX.exe: + "/PuPaiPoSpaceDX.exe": - when: - os: windows store: steam @@ -413259,8 +414403,8 @@ Pub Encounter: installDir: Pub Encounter: {} launch: - /Pub Encounter.exe: - - arguments: '-windowed' + "/Pub Encounter.exe": + - arguments: "-windowed" when: - os: windows store: steam @@ -413275,20 +414419,20 @@ Public Defense Corp: installDir: Public Defense Corp: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: id: 1078320 -'Public Enemy: Revolution Simulator': +"Public Enemy: Revolution Simulator": installDir: Public Enemy Revolution Simulator: {} launch: - /Public Enemy.exe: + "/Public Enemy.exe": - when: - os: windows store: steam - /PublicEnemy.app: + "/PublicEnemy.app": - when: - os: mac store: steam @@ -413298,20 +414442,20 @@ Publisher Tycoon: installDir: Publisher Tycoon: {} launch: - /Pub_Full_161208-2.exe: + "/Pub_Full_161208-2.exe": - when: - store: steam steam: id: 517300 Puddle: files: - /.config/Puddle: + "/.config/Puddle": tags: - config - save when: - os: linux - /Puddle: + "/Puddle": tags: - config - save @@ -413322,15 +414466,15 @@ Puddle: installDir: puddle: {} launch: - /Puddle: + "/Puddle": - when: - os: linux store: steam - /Puddle Steam.app: + "/Puddle Steam.app": - when: - os: mac store: steam - /launcher.exe: + "/launcher.exe": - when: - os: windows store: steam @@ -413340,11 +414484,11 @@ Puddle Knights: installDir: Puddle Knights: {} launch: - /puddleknights.app/Contents/MacOS/puddleknights: + "/puddleknights.app/Contents/MacOS/puddleknights": - when: - os: mac store: steam - /puddleknights.exe: + "/puddleknights.exe": - when: - os: windows store: steam @@ -413357,7 +414501,7 @@ Pukan Bye Bye: installDir: Pukan Bye Bye: {} launch: - /Pukan Bye Bye.exe: + "/Pukan Bye Bye.exe": - when: - os: windows store: steam @@ -413369,11 +414513,11 @@ Puke Simulator: PukePuke Demon: steam: id: 871480 -'Pulang: Insanity': +"Pulang: Insanity": installDir: Pulang Insanity: {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: @@ -413382,11 +414526,11 @@ Pull Ball: installDir: Pull Ball: {} launch: - /Pull Ball.app: + "/Pull Ball.app": - when: - os: mac store: steam - /Pull Ball.exe: + "/Pull Ball.exe": - when: - os: windows store: steam @@ -413402,15 +414546,15 @@ Pulse: installDir: Pulse: {} launch: - /Pulse.app: + "/Pulse.app": - when: - os: mac store: steam - /Pulse.exe: + "/Pulse.exe": - when: - os: windows store: steam - /Pulse.x86: + "/Pulse.x86": - when: - os: linux store: steam @@ -413420,7 +414564,7 @@ Pulse Shift: installDir: Pulse Shift: {} launch: - /PShift.exe: + "/PShift.exe": - arguments: run_engine run_ts when: - os: windows @@ -413435,7 +414579,7 @@ PulseCharge: installDir: PulseCharge: {} launch: - /PulseCharge.exe: + "/PulseCharge.exe": - when: - store: steam steam: @@ -413444,17 +414588,17 @@ Pulsen: installDir: Pulsen: {} launch: - /Program/run_from_steam.cmd: + "/Program/run_from_steam.cmd": - when: - os: windows store: steam steam: id: 340960 -'Pulses: Crystal Journeys': +"Pulses: Crystal Journeys": installDir: Pulses - Crystal Journeys: {} launch: - /PulsesCrystalJourneys.exe: + "/PulsesCrystalJourneys.exe": - when: - store: steam steam: @@ -413463,15 +414607,15 @@ Pulstar: installDir: Pulstar: {} launch: - /Pulstar.app: + "/Pulstar.app": - when: - os: mac store: steam - /Pulstar.exe: + "/Pulstar.exe": - when: - os: windows store: steam - /Pulstar.x86: + "/Pulstar.x86": - when: - os: linux store: steam @@ -413479,7 +414623,7 @@ Pulstar: id: 280460 Pulstar (2015): files: - /SNK/pulstar/OPTIONS: + "/SNK/pulstar/OPTIONS": tags: - config when: @@ -413490,11 +414634,11 @@ Pulstario: installDir: Pulstario: {} launch: - /Pulstario: + "/Pulstario": - when: - os: linux store: steam - /Pulstario.exe: + "/Pulstario.exe": - when: - os: windows store: steam @@ -413504,7 +414648,7 @@ Pulut Adventure: installDir: Pulut Adventure: {} launch: - /pulutadventure.exe: + "/pulutadventure.exe": - when: - os: windows store: steam @@ -413512,7 +414656,7 @@ Pulut Adventure: id: 385220 Pummel Party: files: - /AppData/LocalLow/Rebuilt Games/Pummel Party: + "/AppData/LocalLow/Rebuilt Games/Pummel Party": tags: - save when: @@ -413520,7 +414664,7 @@ Pummel Party: installDir: Pummel Party: {} launch: - /PummelParty.exe: + "/PummelParty.exe": - when: - os: windows store: steam @@ -413530,12 +414674,12 @@ Pump-Action Captain: installDir: PAC: {} launch: - /pac: + "/pac": - when: - bit: 64 os: linux store: steam - /pac.exe: + "/pac.exe": - when: - bit: 64 os: windows @@ -413544,7 +414688,7 @@ Pump-Action Captain: id: 378280 Pumped BMX +: files: - /AppData/LocalLow/Yeah Us_/Pumped BMX _/PlayerPrefs.txt: + "/AppData/LocalLow/Yeah Us_/Pumped BMX _/PlayerPrefs.txt": tags: - config when: @@ -413552,7 +414696,7 @@ Pumped BMX +: installDir: Pumped BMX +: {} launch: - /Pumped_BMX_+.exe: + "/Pumped_BMX_+.exe": - when: - os: windows store: steam @@ -413562,7 +414706,7 @@ Pumped BMX Pro: installDir: Pumped BMX Pro: {} launch: - /PumpedBMXPro.exe: + "/PumpedBMXPro.exe": - when: - bit: 64 os: windows @@ -413576,7 +414720,7 @@ Pumpkin Days: installDir: Pumpkin Online: {} launch: - /PumpkinOnline.exe: + "/PumpkinOnline.exe": - when: - os: windows store: steam @@ -413586,7 +414730,7 @@ Pumpkin Death Garden: installDir: Pumpkin Death Garden: {} launch: - /Pumpkin Death Garden.exe: + "/Pumpkin Death Garden.exe": - when: - os: windows store: steam @@ -413596,7 +414740,7 @@ Pumpkin Dog Islands: installDir: Pumpkin Dog Islands: {} launch: - /Pumpkin Dog Islands.exe: + "/Pumpkin Dog Islands.exe": - when: - bit: 64 os: windows @@ -413605,12 +414749,12 @@ Pumpkin Dog Islands: id: 1095550 Pumpkin Jack: files: - /PumpkinJack/Saved/Config/WindowsNoEditor: + "/PumpkinJack/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /PumpkinJack/Saved/SaveGames: + "/PumpkinJack/Saved/SaveGames": tags: - save when: @@ -413620,7 +414764,7 @@ Pumpkin Jack: installDir: Pumpkin Jack: {} launch: - /PumpkinJack.exe: + "/PumpkinJack.exe": - when: - os: windows store: steam @@ -413646,12 +414790,12 @@ Punch Bomb: id: 510060 Punch Club: files: - /AppData/LocalLow/Lazy Bear Games/Punch Club: + "/AppData/LocalLow/Lazy Bear Games/Punch Club": tags: - save when: - os: windows - /AppData/LocalLow/Lazy Bear Games/Punch Club/settings.txt: + "/AppData/LocalLow/Lazy Bear Games/Punch Club/settings.txt": tags: - config when: @@ -413667,15 +414811,15 @@ Punch Club: installDir: Punch Club: {} launch: - /Punch Club.app: + "/Punch Club.app": - when: - os: mac store: steam - /Punch Club.exe: + "/Punch Club.exe": - when: - os: windows store: steam - /Punch Club.x86: + "/Punch Club.x86": - when: - os: linux store: steam @@ -413685,14 +414829,14 @@ Punch Club: - config steam: id: 394310 -'Punch Club 2: Fast Forward': +"Punch Club 2: Fast Forward": files: - /AppData/LocalLow/Lazy Bear Games/Punch Club 2_ Fast Forward/*.dat: + "/AppData/LocalLow/Lazy Bear Games/Punch Club 2_ Fast Forward/*.dat": tags: - save when: - os: windows - /AppData/LocalLow/Lazy Bear Games/Punch Club 2_ Fast Forward/*.info: + "/AppData/LocalLow/Lazy Bear Games/Punch Club 2_ Fast Forward/*.info": tags: - save when: @@ -413702,7 +414846,7 @@ Punch Club: installDir: Punch Club 2 Fast Forward: {} launch: - /Punch Club 2 Fast Forward.exe: + "/Punch Club 2 Fast Forward.exe": - when: - os: windows store: steam @@ -413712,7 +414856,7 @@ Punch Line: installDir: PunchLine: {} launch: - /MAGESgamelauncher.exe: + "/MAGESgamelauncher.exe": - when: - os: windows store: steam @@ -413727,7 +414871,7 @@ Punch Planet: installDir: Punch Planet: {} launch: - /PunchPlanet.exe: + "/PunchPlanet.exe": - when: - os: windows store: steam @@ -413737,17 +414881,17 @@ Punchline!!: installDir: Punchline!!: {} launch: - /Punchline!!.exe: + "/Punchline!!.exe": - when: - os: windows store: steam steam: id: 1147390 -'Punished Talents: Seven Muses': +"Punished Talents: Seven Muses": installDir: - Punished Talents Seven Muses Collector's Edition: {} + "Punished Talents Seven Muses Collector's Edition": {} launch: - /PunishedTalents_SevenMuses_CE.exe: + "/PunishedTalents_SevenMuses_CE.exe": - when: - os: windows store: steam @@ -413757,10 +414901,8 @@ Punishment Darkness Online: installDir: DragoonWorld Online: {} launch: - /Intersect Client.exe: - - arguments: >- - C:\\Program Files (x86)\\Steam\\steamapps\\common\\Punishment Darkness Online\\Punishment Darkness Online - Client.exe + "/Intersect Client.exe": + - arguments: "C:\\\\Program Files (x86)\\\\Steam\\\\steamapps\\\\common\\\\Punishment Darkness Online\\\\Punishment Darkness Online Client.exe" when: - os: windows store: steam @@ -413772,15 +414914,15 @@ Punk Wars: installDir: Punk Wars: {} launch: - /PW.app/Contents/MacOS/PunkWars: + "/PW.app/Contents/MacOS/PunkWars": - when: - os: mac store: steam - /PW.x86_64: + "/PW.x86_64": - when: - os: linux store: steam - /PunkWars.exe: + "/PunkWars.exe": - when: - os: windows store: steam @@ -413790,11 +414932,11 @@ Pupper Park: installDir: Sokpop S07 Pupper park: {} launch: - /pupperpark_mac.app: + "/pupperpark_mac.app": - when: - os: mac store: steam - /pupperpark_windows.exe: + "/pupperpark_windows.exe": - when: - os: windows store: steam @@ -413804,11 +414946,11 @@ Pupperazzi: installDir: Pupperazzi: {} launch: - /Pupperazzi.app/Contents/MacOS/Pupperazzi: + "/Pupperazzi.app/Contents/MacOS/Pupperazzi": - when: - os: mac store: steam - /Pupperazzi.exe: + "/Pupperazzi.exe": - when: - os: windows store: steam @@ -413828,25 +414970,25 @@ Puppet Kings: installDir: Big Boned Puppet Kings: {} launch: - /PuppetKings_LinuxBuild_V1.4.0.x86: + "/PuppetKings_LinuxBuild_V1.4.0.x86": - when: - os: linux store: steam - /PuppetKings_Windows_V1.4.0.exe: + "/PuppetKings_Windows_V1.4.0.exe": - when: - os: windows store: steam - /pupetkingsmacv2.app: + "/pupetkingsmacv2.app": - when: - os: mac store: steam steam: id: 756020 -'Puppet Master: The Game': +"Puppet Master: The Game": installDir: Puppet Master The Game: {} launch: - /Puppet Master The Game.exe: + "/Puppet Master The Game.exe": - when: - os: windows store: steam @@ -413855,60 +414997,60 @@ Puppet Kings: Puppet Story: steam: id: 1155260 -'PuppetShow: Destiny Undone': +"PuppetShow: Destiny Undone": installDir: - PuppetShow Destiny Undone Collector's Edition: {} + "PuppetShow Destiny Undone Collector's Edition": {} launch: - /PuppetShow_DestinyUndone_CE.exe: + "/PuppetShow_DestinyUndone_CE.exe": - when: - os: windows store: steam steam: id: 887930 -'PuppetShow: Lightning Strikes': +"PuppetShow: Lightning Strikes": installDir: - PuppetShow Lightning Strikes Collector's Edition: {} + "PuppetShow Lightning Strikes Collector's Edition": {} launch: - /PuppetShow_LightningStrikes_CE.exe: + "/PuppetShow_LightningStrikes_CE.exe": - when: - os: windows store: steam steam: id: 1030160 -'PuppetShow: Mystery of Joyville': +"PuppetShow: Mystery of Joyville": installDir: PuppetShow™ Mystery of Joyville: {} launch: - /Puppet Show - Mystery of Joyville.exe: + "/Puppet Show - Mystery of Joyville.exe": - when: - store: steam steam: id: 533060 -'PuppetShow: Porcelain Smile': +"PuppetShow: Porcelain Smile": installDir: - PuppetShow Porcelain Smile Collector's Edition: {} + "PuppetShow Porcelain Smile Collector's Edition": {} launch: - /PuppetShow_PorcelainSmile_CE.exe: + "/PuppetShow_PorcelainSmile_CE.exe": - when: - os: windows store: steam steam: id: 1038380 -'PuppetShow: Return to Joyville': +"PuppetShow: Return to Joyville": installDir: - PuppetShow Return to Joyville Collector's Edition: {} + "PuppetShow Return to Joyville Collector's Edition": {} launch: - /PuppetShow_ReturnToJoyville_CE.exe: + "/PuppetShow_ReturnToJoyville_CE.exe": - when: - os: windows store: steam steam: id: 796070 -'PuppetShow: Souls of the Innocent': +"PuppetShow: Souls of the Innocent": installDir: - PuppetShow Souls of the Innocent Collector's Edition: {} + "PuppetShow Souls of the Innocent Collector's Edition": {} launch: - /PuppetShow Souls of the Innocent.exe: + "/PuppetShow Souls of the Innocent.exe": - when: - os: windows store: steam @@ -413927,11 +415069,11 @@ Puppy Chef Academy: Puppy Chef Academy: {} steam: id: 921520 -'Puppy Dog: Jigsaw Puzzles': +"Puppy Dog: Jigsaw Puzzles": installDir: Puppy Dog Jigsaw Puzzles: {} launch: - /PuppyDogJigsawPuzzles.exe: + "/PuppyDogJigsawPuzzles.exe": - when: - os: windows store: steam @@ -413947,19 +415089,19 @@ PuppyStory: id: 605530 Purble Place: files: - /Saved Games/Microsoft Games/Purble Place: + "/Saved Games/Microsoft Games/Purble Place": tags: - save when: - os: windows - /Microsoft Games/Purble Place: + "/Microsoft Games/Purble Place": tags: - config when: - os: windows Pure: files: - /Disney Interactive Studios/Pure: + "/Disney Interactive Studios/Pure": tags: - config - save @@ -413968,7 +415110,7 @@ Pure: installDir: PURE: {} launch: - /Pure.exe: + "/Pure.exe": - when: - store: steam steam: @@ -413977,19 +415119,19 @@ Pure Chess Grandmaster Edition: installDir: Pure Chess: {} launch: - /MantisConfig.exe: + "/MantisConfig.exe": - when: - store: steam steam: id: 300630 Pure Farming 2018: files: - /AppData/LocalLow/Techland/Pure Farming 2018/Game Save/49037793: + "/AppData/LocalLow/Techland/Pure Farming 2018/Game Save/49037793": tags: - save when: - os: windows - /AppData/LocalLow/Techland/Pure Farming 2018/Game Save/49037793/AdditionalInfoPF.psav: + "/AppData/LocalLow/Techland/Pure Farming 2018/Game Save/49037793/AdditionalInfoPF.psav": tags: - config when: @@ -413997,7 +415139,7 @@ Pure Farming 2018: installDir: PureFarming: {} launch: - /PureFarming_Launcher.exe: + "/PureFarming_Launcher.exe": - when: - bit: 64 os: windows @@ -414008,7 +415150,7 @@ Pure Football 2018: installDir: Pure Football 2018: {} launch: - /PureFootball2018.exe: + "/PureFootball2018.exe": - when: - os: windows store: steam @@ -414018,16 +415160,16 @@ Pure Heart: installDir: Pure Heart: {} launch: - /pureheart.exe: + "/pureheart.exe": - when: - store: steam steam: id: 552190 -Pure Hold'em: +"Pure Hold'em": installDir: Pure HoldEm: {} launch: - /MantisConfig.exe: + "/MantisConfig.exe": - when: - os: windows store: steam @@ -414038,7 +415180,7 @@ Pure Mind: id: 746800 Pure Pinball 2.0 Redux: files: - /Config/settings.cfg: + "/Config/settings.cfg": tags: - config when: @@ -414049,7 +415191,7 @@ Pure Pool: installDir: Pure Pool: {} launch: - /MantisConfig.exe: + "/MantisConfig.exe": - when: - store: steam steam: @@ -414058,7 +415200,7 @@ Pure Rock Crawling: installDir: Pure Rock Crawling: {} launch: - /PureRockCrawling.exe: + "/PureRockCrawling.exe": - when: - bit: 64 os: windows @@ -414069,7 +415211,7 @@ PureForge: installDir: NotDeadYet: {} launch: - /NDY.exe: + "/NDY.exe": - when: - os: windows store: steam @@ -414084,15 +415226,15 @@ Purgatory: installDir: Purgatory: {} launch: - /Build030.x86: + "/Build030.x86": - when: - os: linux store: steam - /Purgatory.app: + "/Purgatory.app": - when: - os: mac store: steam - /PurgatoryPatch1.4.exe: + "/PurgatoryPatch1.4.exe": - when: - os: windows store: steam @@ -414111,17 +415253,17 @@ Purgatory II: installDir: Purgatory II: {} launch: - /Purgatory2.exe: + "/Purgatory2.exe": - when: - os: windows store: steam steam: id: 576120 -'Purgatory: War of the Damned': +"Purgatory: War of the Damned": installDir: Battlemage Arena: {} launch: - /Purgatory.exe: + "/Purgatory.exe": - when: - store: steam steam: @@ -414130,7 +415272,7 @@ Purino Party: installDir: Purino Party: {} launch: - /PurinoParty.exe: + "/PurinoParty.exe": - when: - os: windows store: steam @@ -414143,7 +415285,7 @@ Purple Heart: installDir: Purple Heart: {} launch: - /Purple Heart.exe: + "/Purple Heart.exe": - when: - os: windows store: steam @@ -414156,11 +415298,11 @@ Purple Noise Echo: installDir: Purple Noise Echo: {} launch: - /PurpleNoiseEcho.app: + "/PurpleNoiseEcho.app": - when: - os: mac store: steam - /PurpleNoiseEcho.exe: + "/PurpleNoiseEcho.exe": - when: - bit: 64 os: windows @@ -414178,7 +415320,7 @@ Purple War: installDir: Purple War: {} launch: - /PurpleWar.exe: + "/PurpleWar.exe": - when: - store: steam steam: @@ -414188,12 +415330,12 @@ Purpul Bandana: id: 681440 Purrfect Date: files: - /AppData/LocalLow/The Bae Team/Purrfect Date: + "/AppData/LocalLow/The Bae Team/Purrfect Date": tags: - save when: - os: windows - /AppData/LocalLow/The Bae Team/Purrfect Date/Purrfect Settings.cat: + "/AppData/LocalLow/The Bae Team/Purrfect Date/Purrfect Settings.cat": tags: - config when: @@ -414201,11 +415343,11 @@ Purrfect Date: installDir: Purrfect Date: {} launch: - /Purrfect Date.app: + "/Purrfect Date.app": - when: - os: mac store: steam - /Purrfect Date.exe: + "/Purrfect Date.exe": - when: - os: windows store: steam @@ -414213,12 +415355,12 @@ Purrfect Date: id: 520600 Purrgatory: files: - /Godot/app_userdata/purrgatory: + "/Godot/app_userdata/purrgatory": tags: - save when: - os: windows - /Godot/app_userdata/purrgatory/options.save: + "/Godot/app_userdata/purrgatory/options.save": tags: - config when: @@ -414226,7 +415368,7 @@ Purrgatory: installDir: Purrgatory: {} launch: - /purrgatory.exe: + "/purrgatory.exe": - when: - bit: 64 os: windows @@ -414237,7 +415379,7 @@ Pursuer: installDir: Pursuer: {} launch: - /Pursuer/Pursuer.exe: + "/Pursuer/Pursuer.exe": - when: - store: steam steam: @@ -414249,7 +415391,7 @@ Pursuit of Power 2: installDir: Pursuit of Power 2: {} launch: - /PursuitOfPower2.exe: + "/PursuitOfPower2.exe": - when: - os: windows store: steam @@ -414259,15 +415401,15 @@ Push: installDir: PUSH: {} launch: - /push.app: + "/push.app": - when: - os: mac store: steam - /push.exe: + "/push.exe": - when: - os: windows store: steam - /push.x86_64: + "/push.x86_64": - when: - os: linux store: steam @@ -414282,21 +415424,21 @@ Push Me Pull You: installDir: Push Me Pull You: {} launch: - /push me pull you.app: + "/push me pull you.app": - when: - os: mac store: steam - /push me pull you.exe: + "/push me pull you.exe": - when: - bit: 64 os: windows store: steam - /push me pull you.x86: + "/push me pull you.x86": - when: - bit: 32 os: linux store: steam - /push me pull you.x86_64: + "/push me pull you.x86_64": - when: - bit: 64 os: linux @@ -414307,7 +415449,7 @@ Push Pull: installDir: Push Pull: {} launch: - /PushPull.exe: + "/PushPull.exe": - when: - os: windows store: steam @@ -414317,7 +415459,7 @@ Push for Emor: installDir: Push For Emor: {} launch: - /PushForEmor.exe: + "/PushForEmor.exe": - when: - os: windows store: steam @@ -414330,7 +415472,7 @@ Push the Crate: installDir: Push The Crate: {} launch: - /PushTheCrate.exe: + "/PushTheCrate.exe": - when: - os: windows store: steam @@ -414338,13 +415480,13 @@ Push the Crate: id: 496610 Pushcat: files: - /userdata//308440/remote: + "/userdata//308440/remote": tags: - save when: - os: windows store: steam - /userdata//308440/remote/prefs.txt: + "/userdata//308440/remote/prefs.txt": tags: - config when: @@ -414353,11 +415495,11 @@ Pushcat: installDir: Pushcat: {} launch: - /Pushcat.app: + "/Pushcat.app": - when: - os: mac store: steam - /Pushcat.exe: + "/Pushcat.exe": - when: - os: windows store: steam @@ -414367,11 +415509,11 @@ Pushing Through...: installDir: Pushing Through: {} launch: - /Pushing Through.exe: + "/Pushing Through.exe": - when: - os: windows store: steam - /pushingThroughMAC.app/Contents/MacOS/pushingThroughMAC: + "/pushingThroughMAC.app/Contents/MacOS/pushingThroughMAC": - when: - os: mac store: steam @@ -414383,7 +415525,7 @@ Pushover: installDir: Pushover: {} launch: - /dosbox.exe: + "/dosbox.exe": - when: - os: windows store: steam @@ -414394,40 +415536,41 @@ Pushtastic: id: 1086300 Pushy and Pully in Blockland: files: - /AppData/LocalLow/Resistance Studio/Pushy and Pully in Blockland/data: + "/AppData/LocalLow/Resistance Studio/Pushy and Pully in Blockland/data": tags: - save when: - - store: steam + - os: windows + store: steam installDir: Pushy and Pully in Blockland: {} launch: - /pushy_and_pully.app/Contents/MacOS/pushy_and_pully: + "/pushy_and_pully.app/Contents/MacOS/pushy_and_pully": - when: - os: mac store: steam - /pushy_and_pully.exe: + "/pushy_and_pully.exe": - when: - os: windows store: steam - /pushy_and_pully.x86: + "/pushy_and_pully.x86": - when: - os: linux store: steam steam: id: 1107820 -'Puss in Boots: Fear Not Hooman': +"Puss in Boots: Fear Not Hooman": installDir: Puss in Boots Fear Not Hooman: {} launch: - /Puss in Boots Fear Not Hooman.exe: + "/Puss in Boots Fear Not Hooman.exe": - when: - store: steam steam: id: 1034820 Puss!: files: - /AppData/LocalLow/teamCOIL/PUSS!/LocalSaves.json: + "/AppData/LocalLow/teamCOIL/PUSS!/LocalSaves.json": tags: - save when: @@ -414435,20 +415578,20 @@ Puss!: installDir: PUSS!: {} launch: - /PUSS!.app/Contents/MacOS/PUSS!: + "/PUSS!.app/Contents/MacOS/PUSS!": - when: - os: mac store: steam - /PUSS!.exe: + "/PUSS!.exe": - when: - os: windows store: steam - /PUSS!.x86: + "/PUSS!.x86": - when: - bit: 32 os: linux store: steam - /PUSS!.x86_64: + "/PUSS!.x86_64": - when: - bit: 64 os: linux @@ -414463,7 +415606,7 @@ Pussy 2: installDir: PUSSY 2: {} launch: - /PUSSY.exe: + "/PUSSY.exe": - when: - store: steam steam: @@ -414475,16 +415618,16 @@ Pussy Puzzle: installDir: Pussy Puzzle: {} launch: - /PussyPuzzle.app/Contents/MacOS/PussyPuzzle: + "/PussyPuzzle.app/Contents/MacOS/PussyPuzzle": - when: - os: mac store: steam - /PussyPuzzle.exe: + "/PussyPuzzle.exe": - when: - bit: 64 os: windows store: steam - /PussyPuzzle.x86_64: + "/PussyPuzzle.x86_64": - when: - bit: 64 os: linux @@ -414495,7 +415638,7 @@ Put Anna: installDir: PUTANNA: {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: @@ -414504,7 +415647,7 @@ Put In - Run Out: installDir: Put In - Run Out: {} launch: - /Put In Run Out.exe: + "/Put In Run Out.exe": - when: - bit: 64 os: windows @@ -414515,7 +415658,7 @@ Put in: installDir: Put In: {} launch: - /Put in.exe: + "/Put in.exe": - when: - store: steam steam: @@ -414530,11 +415673,11 @@ Putin Life: installDir: Putin Life: {} launch: - /Putin vs Trump.exe: + "/Putin vs Trump.exe": - when: - os: windows store: steam - /PutinLife.app/Contents/MacOS/Putin vs Trump: + "/PutinLife.app/Contents/MacOS/Putin vs Trump": - when: - os: mac store: steam @@ -414544,7 +415687,7 @@ Putin Run Away From Trump: installDir: Putin Run Away From Trump: {} launch: - /PRAFT.exe: + "/PRAFT.exe": - when: - os: windows store: steam @@ -414559,23 +415702,23 @@ Putin VS ISIS: installDir: Putin VS ISIS: {} launch: - /Putin VS ISIS.exe: + "/Putin VS ISIS.exe": - when: - os: windows store: steam steam: id: 805820 -'Putin, Boobs and Trump': +"Putin, Boobs and Trump": steam: id: 839880 -'Putin, Trump and Xin Jinping': +"Putin, Trump and Xin Jinping": steam: id: 921400 Putinization: installDir: Putinization: {} launch: - /Putinization.exe: + "/Putinization.exe": - when: - os: windows store: steam @@ -414585,7 +415728,7 @@ Putinoids VS Navalnyats: installDir: Putinoids VS Navalnyats - Путиноиды Против Навальнят: {} launch: - /PUTIN.exe: + "/PUTIN.exe": - when: - os: windows store: steam @@ -414595,27 +415738,27 @@ Putrefaction: installDir: Putrefaction: {} launch: - /Putrefaction.exe: + "/Putrefaction.exe": - when: - os: windows store: steam steam: id: 378270 -'Putrefaction 2: Rumble in the Hometown': +"Putrefaction 2: Rumble in the Hometown": installDir: Putrefaction 2 Rumble in the hometown: {} launch: - /Putrefaction 2 Rumble.exe: + "/Putrefaction 2 Rumble.exe": - when: - os: windows store: steam steam: id: 715690 -'Putrefaction 2: Void Walker': +"Putrefaction 2: Void Walker": installDir: Putrefaction 2 Void Walker: {} launch: - /Putrefaction 2.exe: + "/Putrefaction 2.exe": - when: - os: windows store: steam @@ -414625,74 +415768,74 @@ Putt-Putt Enters the Race: installDir: Putt-Putt 5: {} launch: - /ScummVM_Linux/launch_puttputtenterstherace.sh: + "/ScummVM_Linux/launch_puttputtenterstherace.sh": - when: - os: linux store: steam - workingDir: /ScummVM_Linux - /ScummVM_Mac/ScummVM.app/Contents/MacOS/scummvm: - - arguments: '-c scummvm-puttputtenterstherace.ini puttrace' + workingDir: "/ScummVM_Linux" + "/ScummVM_Mac/ScummVM.app/Contents/MacOS/scummvm": + - arguments: "-c scummvm-puttputtenterstherace.ini puttrace" when: - os: mac store: steam - workingDir: /ScummVM_Mac - /ScummVM_Windows/scummvm.exe: - - arguments: '--no-console -c scummvm-puttputtenterstherace.ini puttrace' + workingDir: "/ScummVM_Mac" + "/ScummVM_Windows/scummvm.exe": + - arguments: "--no-console -c scummvm-puttputtenterstherace.ini puttrace" when: - os: windows store: steam - workingDir: /ScummVM_Windows + workingDir: "/ScummVM_Windows" steam: id: 294680 Putt-Putt Goes to the Moon: installDir: Putt-Putt 2: {} launch: - /ScummVM_Linux/launch_puttputtgoestothemoon.sh: + "/ScummVM_Linux/launch_puttputtgoestothemoon.sh": - when: - os: linux store: steam - workingDir: /ScummVM_Linux - /ScummVM_Mac/ScummVM.app/Contents/MacOS/scummvm: - - arguments: '-c scummvm-puttputtgoestothemoon.ini puttmoon' + workingDir: "/ScummVM_Linux" + "/ScummVM_Mac/ScummVM.app/Contents/MacOS/scummvm": + - arguments: "-c scummvm-puttputtgoestothemoon.ini puttmoon" when: - os: mac store: steam - workingDir: /ScummVM_Mac - /ScummVM_Windows/scummvm.exe: - - arguments: '--no-console -c scummvm-puttputtgoestothemoon.ini puttmoon' + workingDir: "/ScummVM_Mac" + "/ScummVM_Windows/scummvm.exe": + - arguments: "--no-console -c scummvm-puttputtgoestothemoon.ini puttmoon" when: - os: windows store: steam - workingDir: /ScummVM_Windows + workingDir: "/ScummVM_Windows" steam: id: 294650 Putt-Putt Joins the Circus: installDir: Putt-Putt 6: {} launch: - /ScummVM_Linux/launch_puttputtjoinsthecircus.sh: + "/ScummVM_Linux/launch_puttputtjoinsthecircus.sh": - when: - os: linux store: steam - workingDir: /ScummVM_Linux - /ScummVM_Mac/ScummVM.app/Contents/MacOS/scummvm: - - arguments: '-c scummvm-puttputtjoinsthecircus.ini puttcircus' + workingDir: "/ScummVM_Linux" + "/ScummVM_Mac/ScummVM.app/Contents/MacOS/scummvm": + - arguments: "-c scummvm-puttputtjoinsthecircus.ini puttcircus" when: - os: mac store: steam - workingDir: /ScummVM_Mac - /ScummVM_Windows/scummvm.exe: - - arguments: '--no-console -c scummvm-puttputtjoinsthecircus.ini puttcircus' + workingDir: "/ScummVM_Mac" + "/ScummVM_Windows/scummvm.exe": + - arguments: "--no-console -c scummvm-puttputtjoinsthecircus.ini puttcircus" when: - os: windows store: steam - workingDir: /ScummVM_Windows + workingDir: "/ScummVM_Windows" steam: id: 294690 Putt-Putt Joins the Parade: files: - /Putt-Putt 1/Saves: + "/Putt-Putt 1/Saves": tags: - save when: @@ -414700,165 +415843,165 @@ Putt-Putt Joins the Parade: installDir: Putt-Putt 1: {} launch: - /ScummVM_Linux/launch_puttputtjoinstheparade.sh: + "/ScummVM_Linux/launch_puttputtjoinstheparade.sh": - when: - os: linux store: steam - workingDir: /ScummVM_Linux - /ScummVM_Mac/ScummVM.app/Contents/MacOS/scummvm: - - arguments: '-c scummvm-puttputtjoinstheparade.ini puttputt' + workingDir: "/ScummVM_Linux" + "/ScummVM_Mac/ScummVM.app/Contents/MacOS/scummvm": + - arguments: "-c scummvm-puttputtjoinstheparade.ini puttputt" when: - os: mac store: steam - workingDir: /ScummVM_Mac - /ScummVM_Windows/scummvm.exe: - - arguments: '--no-console -c scummvm-puttputtjoinstheparade.ini puttputt' + workingDir: "/ScummVM_Mac" + "/ScummVM_Windows/scummvm.exe": + - arguments: "--no-console -c scummvm-puttputtjoinstheparade.ini puttputt" when: - os: windows store: steam - workingDir: /ScummVM_Windows + workingDir: "/ScummVM_Windows" steam: id: 283920 Putt-Putt Saves the Zoo: installDir: Putt-Putt Saves The Zoo: {} launch: - /ScummVM_Linux/launch_puttzoo_opengl.sh: + "/ScummVM_Linux/launch_puttzoo_opengl.sh": - when: - bit: 64 os: linux store: steam - workingDir: /ScummVM_Linux - /ScummVM_Linux/launch_puttzoo_safe.sh: + workingDir: "/ScummVM_Linux" + "/ScummVM_Linux/launch_puttzoo_safe.sh": - when: - bit: 64 os: linux store: steam - workingDir: /ScummVM_Linux - /ScummVM_Mac/ScummVM.app/Contents/MacOS/scummvm: - - arguments: '-c scummvm-puttzoo-opengl.ini puttzoo' + workingDir: "/ScummVM_Linux" + "/ScummVM_Mac/ScummVM.app/Contents/MacOS/scummvm": + - arguments: "-c scummvm-puttzoo-opengl.ini puttzoo" when: - os: mac store: steam - workingDir: /ScummVM_Mac - - arguments: '-c scummvm-puttzoo-safe.ini puttzoo' + workingDir: "/ScummVM_Mac" + - arguments: "-c scummvm-puttzoo-safe.ini puttzoo" when: - os: mac store: steam - workingDir: /ScummVM_Mac - /ScummVM_Windows/scummvm.exe: - - arguments: '--no-console -c scummvm-puttzoo-opengl.ini puttzoo' + workingDir: "/ScummVM_Mac" + "/ScummVM_Windows/scummvm.exe": + - arguments: "--no-console -c scummvm-puttzoo-opengl.ini puttzoo" when: - os: windows store: steam - workingDir: /ScummVM_Windows - - arguments: '--no-console -c scummvm-puttzoo-safe.ini puttzoo' + workingDir: "/ScummVM_Windows" + - arguments: "--no-console -c scummvm-puttzoo-safe.ini puttzoo" when: - os: windows store: steam - workingDir: /ScummVM_Windows + workingDir: "/ScummVM_Windows" steam: id: 294660 Putt-Putt Travels through Time: installDir: Putt-Putt 4: {} launch: - /ScummVM_Linux/launch_puttputttravelsthroughtime.sh: + "/ScummVM_Linux/launch_puttputttravelsthroughtime.sh": - when: - os: linux store: steam - workingDir: /ScummVM_Linux - /ScummVM_Mac/ScummVM.app/Contents/MacOS/scummvm: - - arguments: '-c scummvm-puttputttravelsthroughtime.ini putttime' + workingDir: "/ScummVM_Linux" + "/ScummVM_Mac/ScummVM.app/Contents/MacOS/scummvm": + - arguments: "-c scummvm-puttputttravelsthroughtime.ini putttime" when: - os: mac store: steam - workingDir: /ScummVM_Mac - /ScummVM_Windows/scummvm.exe: - - arguments: '--no-console -c scummvm-puttputttravelsthroughtime.ini putttime' + workingDir: "/ScummVM_Mac" + "/ScummVM_Windows/scummvm.exe": + - arguments: "--no-console -c scummvm-puttputttravelsthroughtime.ini putttime" when: - os: windows store: steam - workingDir: /ScummVM_Windows + workingDir: "/ScummVM_Windows" steam: id: 294670 -Putt-Putt and Fatty Bear's Activity Pack: +"Putt-Putt and Fatty Bear's Activity Pack": installDir: Putt-Putt and Fatty Bears Activity Pack: {} launch: - /ScummVM_Linux/launch_ppafbactivitypack.sh: + "/ScummVM_Linux/launch_ppafbactivitypack.sh": - when: - os: linux store: steam - workingDir: /ScummVM_Linux - /ScummVM_Mac/ScummVM.app/Contents/MacOS/scummvm: - - arguments: '-c scummvm-ppafbactivitypack.ini activity' + workingDir: "/ScummVM_Linux" + "/ScummVM_Mac/ScummVM.app/Contents/MacOS/scummvm": + - arguments: "-c scummvm-ppafbactivitypack.ini activity" when: - os: mac store: steam - workingDir: /ScummVM_Mac - /ScummVM_Windows/scummvm.exe: - - arguments: '--no-console -c scummvm-ppafbactivitypack.ini activity' + workingDir: "/ScummVM_Mac" + "/ScummVM_Windows/scummvm.exe": + - arguments: "--no-console -c scummvm-ppafbactivitypack.ini activity" when: - os: windows store: steam - workingDir: /ScummVM_Windows + workingDir: "/ScummVM_Windows" steam: id: 294720 -Putt-Putt and Pep's Balloon-o-Rama: +"Putt-Putt and Pep's Balloon-o-Rama": installDir: Putt-Putt and Peps Balloon-o-Rama: {} launch: - /ScummVM_Linux/launch_puttputtballoonorama.sh: + "/ScummVM_Linux/launch_puttputtballoonorama.sh": - when: - os: linux store: steam - workingDir: /ScummVM_Linux - /ScummVM_Mac/ScummVM.app/Contents/MacOS/scummvm: - - arguments: '-c scummvm-puttputtballoonorama.ini puttballoon' + workingDir: "/ScummVM_Linux" + "/ScummVM_Mac/ScummVM.app/Contents/MacOS/scummvm": + - arguments: "-c scummvm-puttputtballoonorama.ini puttballoon" when: - os: mac store: steam - workingDir: /ScummVM_Mac - /ScummVM_Windows/scummvm.exe: - - arguments: '--no-console -c scummvm-puttputtballoonorama.ini puttballoon' + workingDir: "/ScummVM_Mac" + "/ScummVM_Windows/scummvm.exe": + - arguments: "--no-console -c scummvm-puttputtballoonorama.ini puttballoon" when: - os: windows store: steam - workingDir: /ScummVM_Windows + workingDir: "/ScummVM_Windows" steam: id: 284000 -Putt-Putt and Pep's Dog on a Stick: +"Putt-Putt and Pep's Dog on a Stick": installDir: Putt-Putt and Peps Dog on a Stick: {} launch: - /ScummVM_Linux/launch_puttputtdogonastick.sh: + "/ScummVM_Linux/launch_puttputtdogonastick.sh": - when: - os: linux store: steam - workingDir: /ScummVM_Linux - /ScummVM_Mac/ScummVM.app/Contents/MacOS/scummvm: - - arguments: '-c scummvm-puttputtdogonastick.ini puttdog' + workingDir: "/ScummVM_Linux" + "/ScummVM_Mac/ScummVM.app/Contents/MacOS/scummvm": + - arguments: "-c scummvm-puttputtdogonastick.ini puttdog" when: - os: mac store: steam - workingDir: /ScummVM_Mac - /ScummVM_Windows/scummvm.exe: - - arguments: '--no-console -c scummvm-puttputtdogonastick.ini puttdog' + workingDir: "/ScummVM_Mac" + "/ScummVM_Windows/scummvm.exe": + - arguments: "--no-console -c scummvm-puttputtdogonastick.ini puttdog" when: - os: windows store: steam - workingDir: /ScummVM_Windows + workingDir: "/ScummVM_Windows" steam: id: 294710 -'Putt-Putt: Pep''s Birthday Surprise': +"Putt-Putt: Pep's Birthday Surprise": files: - /SaveGames/PuttPuttPBS_save_*.*: + "/SaveGames/PuttPuttPBS_save_*.*": tags: - save when: - os: windows - /SaveGames/game_options.dat: + "/SaveGames/game_options.dat": tags: - config when: @@ -414866,21 +416009,21 @@ Putt-Putt and Pep's Dog on a Stick: installDir: Putt-Putt 7: {} launch: - /PuttPuttPBS.exe: + "/PuttPuttPBS.exe": - when: - os: windows store: steam steam: id: 294700 -Puttin' Around: +"Puttin' Around": installDir: Puttin Around: {} launch: - /PuttinAround.app/Contents/MacOS/PuttinAround: + "/PuttinAround.app/Contents/MacOS/PuttinAround": - when: - os: mac store: steam - /PuttinAround.exe: + "/PuttinAround.exe": - when: - os: windows store: steam @@ -414890,11 +416033,11 @@ Putty Pals: installDir: Harmonious Games: {} launch: - /putty_pals.app: + "/putty_pals.app": - when: - os: mac store: steam - /putty_pals.exe: + "/putty_pals.exe": - when: - os: windows store: steam @@ -414905,12 +416048,12 @@ Puttyface: id: 606350 Puyo Puyo Champions: files: - /PuyoPuyoChampions: + "/PuyoPuyoChampions": tags: - save when: - os: windows - /PuyoPuyoChampions/config.ini: + "/PuyoPuyoChampions/config.ini": tags: - config when: @@ -414918,7 +416061,7 @@ Puyo Puyo Champions: installDir: Puyo Puyo Champions: {} launch: - /PuyoPuyoChampions.exe: + "/PuyoPuyoChampions.exe": - when: - bit: 64 os: windows @@ -414927,7 +416070,7 @@ Puyo Puyo Champions: id: 971620 Puyo Puyo Fever: files: - /Sega/PuyoF: + "/Sega/PuyoF": tags: - config - save @@ -414935,19 +416078,19 @@ Puyo Puyo Fever: - os: windows Puyo Puyo Sun: files: - /savedata/puyo3.dat: + "/savedata/puyo3.dat": tags: - save when: - os: windows Puyo Puyo Tetris: files: - /config.ini: + "/config.ini": tags: - config when: - os: windows - /data_steam/data.bin: + "/data_steam/data.bin": tags: - save when: @@ -414955,7 +416098,7 @@ Puyo Puyo Tetris: installDir: PuyoPuyoTetris: {} launch: - /puyopuyotetris.exe: + "/puyopuyotetris.exe": - when: - bit: 64 os: windows @@ -414964,12 +416107,12 @@ Puyo Puyo Tetris: id: 546050 Puyo Puyo Tetris 2: files: - /PuyoPuyoTetris2/: + "/PuyoPuyoTetris2/": tags: - save when: - os: windows - /PuyoPuyoTetris2//config.ini: + "/PuyoPuyoTetris2//config.ini": tags: - config when: @@ -414977,7 +416120,7 @@ Puyo Puyo Tetris 2: installDir: PuyoPuyoTetris2: {} launch: - /PuyoPuyoTetris2.exe: + "/PuyoPuyoTetris2.exe": - when: - bit: 64 os: windows @@ -414988,15 +416131,15 @@ Puzlogic: installDir: Puzlogic: {} launch: - /PuzLogic.exe: + "/PuzLogic.exe": - when: - os: windows store: steam - /Puzlogic.app/Contents/MacOS/Mac_Runner: + "/Puzlogic.app/Contents/MacOS/Mac_Runner": - when: - os: mac store: steam - /Puzlogic/runner: + "/Puzlogic/runner": - when: - os: linux store: steam @@ -415006,29 +416149,29 @@ PuzzGun: installDir: Puzzgun: {} launch: - /PuzzGun.exe: + "/PuzzGun.exe": - when: - os: windows store: steam steam: id: 850040 -'Puzzle 101: Edge of Galaxy 宇宙边际': +"Puzzle 101: Edge of Galaxy 宇宙边际": installDir: Edge of Galaxy: {} launch: - /EOG.app/Contents/MacOS/EOG: + "/EOG.app/Contents/MacOS/EOG": - when: - os: mac store: steam - /EOG.x86: + "/EOG.x86": - when: - os: linux store: steam - /EOG.x86_64: + "/EOG.x86_64": - when: - os: linux store: steam - /Edge of Galaxy.exe: + "/Edge of Galaxy.exe": - when: - os: windows store: steam @@ -415038,7 +416181,7 @@ Puzzle 3D: installDir: Puzzle 3D: {} launch: - /Puzzle3D.exe: + "/Puzzle3D.exe": - when: - os: windows store: steam @@ -415046,12 +416189,12 @@ Puzzle 3D: id: 794630 Puzzle Agent 2: files: - /Telltale Games/Puzzle Agent 2/*.save: + "/Telltale Games/Puzzle Agent 2/*.save": tags: - save when: - os: windows - /Telltale Games/Puzzle Agent 2/prefs.prop: + "/Telltale Games/Puzzle Agent 2/prefs.prop": tags: - config when: @@ -415061,11 +416204,11 @@ Puzzle Agent 2: installDir: Puzzle Agent 2: {} launch: - /Grickle102.app: + "/Grickle102.app": - when: - os: mac store: steam - /Grickle102.exe: + "/Grickle102.exe": - when: - os: windows store: steam @@ -415075,7 +416218,7 @@ Puzzle Ball: installDir: Puzzle Ball: {} launch: - /Puzzle Ball.exe: + "/Puzzle Ball.exe": - when: - os: windows store: steam @@ -415085,11 +416228,11 @@ Puzzle Bear: installDir: Puzzle Bear: {} launch: - /Puzzle-Bear.app: + "/Puzzle-Bear.app": - when: - os: mac store: steam - /Puzzle-Bear.exe: + "/Puzzle-Bear.exe": - when: - os: windows store: steam @@ -415099,7 +416242,7 @@ Puzzle Bloc Invasion: installDir: Puzzle Bloc Invasion: {} launch: - /Puzzle Bloc Invasion.exe: + "/Puzzle Bloc Invasion.exe": - when: - os: windows store: steam @@ -415114,7 +416257,7 @@ Puzzle Blocks (Lemon Jam Studios): installDir: PuzzleBlocks: {} launch: - /PuzzleBlocks.exe: + "/PuzzleBlocks.exe": - when: - os: windows store: steam @@ -415130,7 +416273,7 @@ Puzzle Bobble 2X / Bust-A-Move 2 Arcade Edition & Puzzle Bobble 3 / Bust-A-Move installDir: Puzzle Bobble S-Tribute: {} launch: - /S-Tribute.exe: + "/S-Tribute.exe": - when: - os: windows store: steam @@ -415138,19 +416281,19 @@ Puzzle Bobble 2X / Bust-A-Move 2 Arcade Edition & Puzzle Bobble 3 / Bust-A-Move id: 1913620 Puzzle Bobble 3DX: files: - /CONFIG.SGS: + "/CONFIG.SGS": tags: - config when: - os: windows - /UVSAVE.BIN: + "/UVSAVE.BIN": tags: - save when: - os: windows Puzzle Bobble 4: files: - /save.dat: + "/save.dat": tags: - save when: @@ -415159,7 +416302,7 @@ Puzzle Bots: installDir: Puzzle Bots: {} launch: - /Puzzlebots.exe: + "/Puzzlebots.exe": - when: - store: steam steam: @@ -415168,12 +416311,12 @@ Puzzle Box: installDir: Puzzle Box: {} launch: - /PuzzleBox.app/Contents/MacOS/PuzzleBox: + "/PuzzleBox.app/Contents/MacOS/PuzzleBox": - when: - os: mac store: steam - /win32/PuzzleBox.exe: - - arguments: '-windowed' + "/win32/PuzzleBox.exe": + - arguments: "-windowed" when: - os: windows store: steam @@ -415181,7 +416324,7 @@ Puzzle Box: id: 448720 Puzzle Chambers: files: - /AppData/LocalLow/Entertainment Forge/Puzzle Chambers/PlayerInfo.dat: + "/AppData/LocalLow/Entertainment Forge/Puzzle Chambers/PlayerInfo.dat": tags: - save when: @@ -415189,12 +416332,15 @@ Puzzle Chambers: installDir: Puzzle Chambers: {} launch: - /Puzzle Chambers.app: + "/Puzzle Chambers.app": - when: - os: mac store: steam - /Puzzle Chambers.exe: + "/Puzzle Chambers.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam @@ -415208,14 +416354,14 @@ Puzzle Chronicles: installDir: Puzzle Chronicles: {} launch: - /PuzzleChronicles.exe: + "/PuzzleChronicles.exe": - when: - store: steam steam: id: 19020 Puzzle Cube: files: - /DahlGames/Puzzle Cube: + "/DahlGames/Puzzle Cube": tags: - save when: @@ -415223,7 +416369,7 @@ Puzzle Cube: installDir: Puzzle Cube: {} launch: - /PuzzleCube.exe: + "/PuzzleCube.exe": - when: - os: windows store: steam @@ -415237,7 +416383,7 @@ Puzzle Dating: installDir: Puzzle Dating: {} launch: - /Puzzle Dating.exe: + "/Puzzle Dating.exe": - when: - os: windows store: steam @@ -415245,12 +416391,12 @@ Puzzle Dating: id: 698830 Puzzle Dimension: files: - /PuzzleDimension..config: + "/PuzzleDimension..config": tags: - config when: - os: windows - /userdata//57200/remote/PuzzleDimension: + "/userdata//57200/remote/PuzzleDimension": tags: - save when: @@ -415258,11 +416404,11 @@ Puzzle Dimension: installDir: Puzzle Dimension: {} launch: - /PuzzleDimension.app: + "/PuzzleDimension.app": - when: - os: mac store: steam - /PuzzleDimension.exe: + "/PuzzleDimension.exe": - arguments: PuzzleDimension.config when: - os: windows @@ -415273,7 +416419,7 @@ Puzzle Expedition: installDir: Puzzle Expedition: {} launch: - /PuzzleExpedition.exe: + "/PuzzleExpedition.exe": - when: - os: windows store: steam @@ -415283,21 +416429,21 @@ Puzzle Galaxies: installDir: Puzzle Galaxies: {} launch: - /Puzzle Galaxies.app: + "/Puzzle Galaxies.app": - when: - os: mac store: steam - /Puzzle Galaxies.exe: + "/Puzzle Galaxies.exe": - when: - os: windows store: steam steam: id: 463710 -'Puzzle Girls: Alexa': +"Puzzle Girls: Alexa": installDir: Puzzle Girls Alexa: {} launch: - /PuzzleGirlsAlexa.exe: + "/PuzzleGirlsAlexa.exe": - when: - os: windows store: steam @@ -415307,11 +416453,11 @@ Puzzle Guardians: installDir: Puzzle Guardians: {} launch: - /Puzzle Guardians.app/Contents/MacOS/Puzzle Guardians: + "/Puzzle Guardians.app/Contents/MacOS/Puzzle Guardians": - when: - os: mac store: steam - /Puzzle Guardians.exe: + "/Puzzle Guardians.exe": - when: - os: windows store: steam @@ -415324,7 +416470,7 @@ Puzzle Island VR: id: 571630 Puzzle Kingdoms: files: - /Puzzle Kingdoms: + "/Puzzle Kingdoms": tags: - save when: @@ -415332,7 +416478,7 @@ Puzzle Kingdoms: installDir: Puzzle Kingdoms: {} launch: - /Kingdoms.exe: + "/Kingdoms.exe": - when: - store: steam steam: @@ -415341,7 +416487,7 @@ Puzzle Lab: installDir: Puzzle Lab: {} launch: - /PuzzleLab.exe: + "/PuzzleLab.exe": - when: - store: steam steam: @@ -415350,7 +416496,7 @@ Puzzle Mania: installDir: Puzzle Mania: {} launch: - /Puzzle Mania.exe: + "/Puzzle Mania.exe": - when: - os: windows store: steam @@ -415359,71 +416505,71 @@ Puzzle Mania: Puzzle Master: steam: id: 920550 -'Puzzle Monarch: Egypt': +"Puzzle Monarch: Egypt": installDir: Puzzle Monarch Egypt: {} launch: - /Puzzle Monarch Egypt.exe: + "/Puzzle Monarch Egypt.exe": - when: - os: windows store: steam steam: id: 938820 -'Puzzle Monarch: Forests': +"Puzzle Monarch: Forests": installDir: Puzzle Monarch Forests: {} launch: - /Puzzle Monarch Forests.exe: + "/Puzzle Monarch Forests.exe": - when: - os: windows store: steam steam: id: 935240 -'Puzzle Monarch: Mummy': +"Puzzle Monarch: Mummy": installDir: Puzzle Monarch Mummy: {} launch: - /Puzzle Monarch Mummy.exe: + "/Puzzle Monarch Mummy.exe": - when: - os: windows store: steam steam: id: 935180 -'Puzzle Monarch: Nile River': +"Puzzle Monarch: Nile River": installDir: Puzzle Monarch Nile River: {} launch: - /Puzzle Monarch Nile River.exe: + "/Puzzle Monarch Nile River.exe": - when: - os: windows store: steam steam: id: 938840 -'Puzzle Monarch: Super Natural': +"Puzzle Monarch: Super Natural": installDir: Puzzle Monarch Super Natural: {} launch: - /Puzzle Monarch Super Natural.exe: + "/Puzzle Monarch Super Natural.exe": - when: - os: windows store: steam steam: id: 916860 -'Puzzle Monarch: Vampires': +"Puzzle Monarch: Vampires": installDir: Puzzle Monarch Vampires: {} launch: - /Puzzle Monarch Vampires.exe: + "/Puzzle Monarch Vampires.exe": - when: - os: windows store: steam steam: id: 911130 -'Puzzle Monarch: Zombie': +"Puzzle Monarch: Zombie": installDir: Puzzle Monarch Zombie: {} launch: - /Puzzle Monarch Zombie.exe: + "/Puzzle Monarch Zombie.exe": - when: - os: windows store: steam @@ -415433,7 +416579,7 @@ Puzzle Nebula: installDir: Puzzle Nebula: {} launch: - /PuzzleNebula.exe: + "/PuzzleNebula.exe": - when: - os: windows store: steam @@ -415443,8 +416589,11 @@ Puzzle Noid: installDir: Puzzle_Noid: {} launch: - /nw.exe: + "/nw.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam @@ -415454,11 +416603,11 @@ Puzzle One: installDir: Puzzle One: {} launch: - /puzzle1.exe: + "/puzzle1.exe": - when: - os: windows store: steam - /puzzle1.sh: + "/puzzle1.sh": - when: - bit: 64 os: linux @@ -415474,7 +416623,7 @@ Puzzle Patrol: installDir: Puzzle Patrol: {} launch: - /PuzzlePatrol.exe: + "/PuzzlePatrol.exe": - when: - os: windows store: steam @@ -415484,11 +416633,11 @@ Puzzle Pelago - A Drag & Drop Economy: installDir: Puzzle Pelago: {} launch: - /Puzzle Pelago.app: + "/Puzzle Pelago.app": - when: - os: mac store: steam - /Puzzle Pelago.exe: + "/Puzzle Pelago.exe": - when: - os: windows store: steam @@ -415498,27 +416647,27 @@ Puzzle Pirates: installDir: Puzzle Pirates: {} launch: - /java_vm/bin/javaw.exe: - - arguments: '-Dsun.java2d.d3d=false -jar getdown-dop.jar . client' + "/java_vm/bin/javaw.exe": + - arguments: "-Dsun.java2d.d3d=false -jar getdown-dop.jar . client" when: - os: windows store: steam - /run.sh: + "/run.sh": - when: - os: mac store: steam steam: id: 99910 -'Puzzle Pirates: Dark Seas': +"Puzzle Pirates: Dark Seas": installDir: Puzzle Pirates Dark Seas: {} launch: - /java_vm/bin/javaw.exe: - - arguments: '-Dsun.java2d.d3d=false -jar getdown-dop.jar . client' + "/java_vm/bin/javaw.exe": + - arguments: "-Dsun.java2d.d3d=false -jar getdown-dop.jar . client" when: - os: windows store: steam - /run.sh: + "/run.sh": - when: - os: mac store: steam @@ -415528,7 +416677,7 @@ Puzzle Plunder: installDir: Puzzle Plunder: {} launch: - /Puzzle Plunder.exe: + "/Puzzle Plunder.exe": - when: - os: windows store: steam @@ -415538,7 +416687,7 @@ Puzzle Poker: installDir: Puzzle Poker: {} launch: - /puzzlePoker.exe: + "/puzzlePoker.exe": - when: - os: windows store: steam @@ -415546,7 +416695,7 @@ Puzzle Poker: id: 554660 Puzzle Puppers: files: - /AppData/LocalLow/Cardboard Keep/Puzzle Puppers: + "/AppData/LocalLow/Cardboard Keep/Puzzle Puppers": tags: - save when: @@ -415554,11 +416703,11 @@ Puzzle Puppers: installDir: PuzzlePuppers: {} launch: - /Mac.app: + "/Mac.app": - when: - os: mac store: steam - /PuzzlePuppers.x86_64: + "/PuzzlePuppers.x86_64": - when: - os: linux store: steam @@ -415566,7 +416715,7 @@ Puzzle Puppers: id: 578430 Puzzle Quest 2: files: - /namco/puzzle quest 2: + "/namco/puzzle quest 2": tags: - save when: @@ -415574,14 +416723,14 @@ Puzzle Quest 2: installDir: PuzzleQuest2: {} launch: - /PuzzleQuest2.exe: + "/PuzzleQuest2.exe": - when: - store: steam steam: id: 47540 -'Puzzle Quest: Challenge of the Warlords': +"Puzzle Quest: Challenge of the Warlords": files: - /Puzzle Quest/Saves: + "/Puzzle Quest/Saves": tags: - save when: @@ -415589,7 +416738,7 @@ Puzzle Quest 2: installDir: Puzzle Quest: {} launch: - /Puzzle Quest.exe: + "/Puzzle Quest.exe": - when: - store: steam registry: @@ -415598,9 +416747,9 @@ Puzzle Quest 2: - config steam: id: 12500 -'Puzzle Quest: Galactrix': +"Puzzle Quest: Galactrix": files: - /puzzle quest galactrix: + "/puzzle quest galactrix": tags: - save when: @@ -415608,7 +416757,7 @@ Puzzle Quest 2: installDir: Puzzle Quest Galactrix: {} launch: - /Galactrix.exe: + "/Galactrix.exe": - when: - store: steam steam: @@ -415617,7 +416766,7 @@ Puzzle Sages: installDir: Puzzle Sages: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -415627,23 +416776,23 @@ Puzzle Showdown 4K: installDir: Puzzle Showdown 4K: {} launch: - /PuzzleEngine.exe: + "/PuzzleEngine.exe": - when: - bit: 64 os: windows store: steam steam: id: 631220 -'Puzzle Sisters: Foer': +"Puzzle Sisters: Foer": installDir: Puzzle Sisters: {} launch: - /PuzzleSisters.app/Contents/MacOS/PuzzleSisters: + "/PuzzleSisters.app/Contents/MacOS/PuzzleSisters": - when: - bit: 64 os: mac store: steam - /PuzzleSisters.exe: + "/PuzzleSisters.exe": - when: - os: windows store: steam @@ -415651,12 +416800,12 @@ Puzzle Showdown 4K: id: 710190 Puzzle Station: files: - /Save/options.dat: + "/Save/options.dat": tags: - config when: - os: windows - /Save/player.dat: + "/Save/player.dat": tags: - save when: @@ -415664,7 +416813,7 @@ Puzzle Station: installDir: PuzzleStation: {} launch: - /PuzzleStation.exe: + "/PuzzleStation.exe": - when: - os: windows store: steam @@ -415674,20 +416823,20 @@ Puzzle Strike: installDir: Puzzle Strike: {} launch: - /PuzzleStrike.app: + "/PuzzleStrike.app": - when: - os: mac store: steam - /PuzzleStrike.exe: + "/PuzzleStrike.exe": - when: - os: windows store: steam - /PuzzleStrike.x86: + "/PuzzleStrike.x86": - when: - bit: 32 os: linux store: steam - /PuzzleStrike.x86_64: + "/PuzzleStrike.x86_64": - when: - bit: 64 os: linux @@ -415698,11 +416847,11 @@ Puzzle Tactics: installDir: Puzzle_Tactics: {} launch: - /Puzzle Tactics.app: + "/Puzzle Tactics.app": - when: - os: mac store: steam - /Puzzle Tactics.exe: + "/Puzzle Tactics.exe": - when: - os: windows store: steam @@ -415712,7 +416861,7 @@ Puzzle Tower: installDir: Puzzle Tower: {} launch: - /Puzzle Tower.exe: + "/Puzzle Tower.exe": - when: - store: steam steam: @@ -415721,7 +416870,7 @@ Puzzle Walker (Demo): installDir: PuzzleWalker: {} launch: - /Dimension.exe: + "/Dimension.exe": - when: - os: windows store: steam @@ -415731,7 +416880,7 @@ Puzzle Wishes: installDir: Puzzle Wishes: {} launch: - /Puzzle Wishes.exe: + "/Puzzle Wishes.exe": - when: - os: windows store: steam @@ -415741,20 +416890,20 @@ Puzzle With Your Friends: installDir: Puzzle With Your Friends: {} launch: - /Puzzle.app: + "/Puzzle.app": - when: - os: mac store: steam - /Puzzle.exe: + "/Puzzle.exe": - when: - os: windows store: steam - /Puzzle.x86: + "/Puzzle.x86": - when: - bit: 32 os: linux store: steam - /Puzzle.x86_64: + "/Puzzle.x86_64": - when: - bit: 64 os: linux @@ -415771,54 +416920,54 @@ Puzzle of Santa Girl VR: Puzzle of Santa Girl VR: {} steam: id: 751430 -'Puzzle: Cats & Dogs': +"Puzzle: Cats & Dogs": installDir: PUZZLE CATS & DOGS: {} launch: - /PUZZLE - CATS DOGS.exe: + "/PUZZLE - CATS DOGS.exe": - when: - os: windows store: steam steam: id: 896570 -'Puzzle: Landscapes': +"Puzzle: Landscapes": installDir: PUZZLE LANDSCAPES: {} launch: - /PUZZLE - LANDSCAPES.exe: + "/PUZZLE - LANDSCAPES.exe": - when: - os: windows store: steam steam: id: 909480 -'Puzzle: Ocean': +"Puzzle: Ocean": installDir: PUZZLE OCEAN: {} launch: - /PUZZLE OCEAN.exe: + "/PUZZLE OCEAN.exe": - when: - os: windows store: steam steam: id: 1059500 -'Puzzle: Underwater World': +"Puzzle: Underwater World": installDir: Puzzle Underwater World: {} launch: - /Puzzle Underwater World.exe: + "/Puzzle Underwater World.exe": - when: - os: windows store: steam steam: id: 680070 -'Puzzle:Traditional Chinese Paintings': +"Puzzle:Traditional Chinese Paintings": steam: id: 923800 Puzzled Heroes: installDir: puzzled heroes: {} launch: - /ph.exe: + "/ph.exe": - when: - os: windows store: steam @@ -415828,11 +416977,11 @@ Puzzlement: installDir: puzzlement: {} launch: - /puzzlement.app: + "/puzzlement.app": - when: - os: mac store: steam - /puzzlement.exe: + "/puzzlement.exe": - when: - os: windows store: steam @@ -415840,7 +416989,7 @@ Puzzlement: id: 775530 Puzzler World: files: - /Puzzler: + "/Puzzler": tags: - config - save @@ -415849,7 +416998,7 @@ Puzzler World: installDir: PuzzlerWorld: {} launch: - /PuzzlerWorld.exe: + "/PuzzlerWorld.exe": - when: - store: steam steam: @@ -415858,7 +417007,7 @@ Puzzler World 2: installDir: PuzzlerWorld2: {} launch: - /Puzzler World 2.exe: + "/Puzzler World 2.exe": - when: - store: steam steam: @@ -415867,7 +417016,7 @@ Puzzles At Mystery Manor: installDir: Puzzles At Mystery Manor: {} launch: - /PuzzlesAtMysteryManor.exe: + "/PuzzlesAtMysteryManor.exe": - when: - os: windows store: steam @@ -415877,7 +417026,7 @@ Puzzles By Axis Hyper: installDir: Puzzles By Axis Hyper: {} launch: - /Puzzles By Axis Hyper.exe: + "/Puzzles By Axis Hyper.exe": - when: - os: windows store: steam @@ -415887,7 +417036,7 @@ Puzzles Under The Hill: installDir: Puzzles Under The Hill: {} launch: - /PuzzlesUnderTheHill.exe: + "/PuzzlesUnderTheHill.exe": - when: - os: windows store: steam @@ -415897,7 +417046,7 @@ Puzzles and Board Games Mega Collection: installDir: Puzzles and Board Games Mega Collection: {} launch: - /BoardGames_MegaCollection.exe: + "/BoardGames_MegaCollection.exe": - when: - os: windows store: steam @@ -415907,52 +417056,52 @@ Puzzles by Axis: installDir: Puzzles By Axis: {} launch: - /Puzzles By Axis.exe: + "/Puzzles By Axis.exe": - when: - os: windows store: steam steam: id: 786800 -'Puzzles for Smart: Cats': +"Puzzles for Smart: Cats": installDir: Puzzles for smart Cats: {} steam: id: 877780 -'Puzzles for smart: Birds': +"Puzzles for smart: Birds": installDir: Puzzles for smart Birds: {} launch: - /Puzzles for smart - Birds.exe: + "/Puzzles for smart - Birds.exe": - when: - os: windows store: steam steam: id: 962050 -'Puzzles for smart: Dogs': +"Puzzles for smart: Dogs": installDir: Puzzles for smart Dogs: {} launch: - /Puzzles for smart - Dogs.exe: + "/Puzzles for smart - Dogs.exe": - when: - os: windows store: steam steam: id: 928140 -'Puzzles for smart: Horses': +"Puzzles for smart: Horses": installDir: Puzzles for smart Horses: {} launch: - /Puzzles for smart - Horses.exe: + "/Puzzles for smart - Horses.exe": - when: - os: windows store: steam steam: id: 970000 -'Puzzles for smart: Underwater Kingdom': +"Puzzles for smart: Underwater Kingdom": installDir: Puzzles for smart Underwater Kingdom: {} launch: - /Puzzles for smart - Underwater Kingdom.exe: + "/Puzzles for smart - Underwater Kingdom.exe": - when: - os: windows store: steam @@ -415961,58 +417110,61 @@ Puzzles by Axis: PuzzlesCave: steam: id: 1171860 -'Puzzletime: Castle Party': +"Puzzletime: Castle Party": installDir: PUZZLETIME Castle Party: {} launch: - /PUZZLETIME_Castle_Party.exe: + "/PUZZLETIME_Castle_Party.exe": - when: - bit: 64 os: windows store: steam - /PUZZLETIME_Castle_Party.x86: + "/PUZZLETIME_Castle_Party.x86": - when: - bit: 32 os: linux store: steam - /PUZZLETIME_Castle_Party.x86_64: + "/PUZZLETIME_Castle_Party.x86_64": - when: - bit: 64 os: linux store: steam - /PUZZLETIME_Castle_Party_32.exe: + "/PUZZLETIME_Castle_Party_32.exe": - when: - bit: 32 os: windows store: steam steam: id: 1143740 -'Puzzletime: Lovely Girls': +"Puzzletime: Lovely Girls": installDir: PUZZLETIME Lovely Girls: {} launch: - /PuzzleTime.exe: + "/PuzzleTime.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam - /PuzzleTime.x86: + "/PuzzleTime.x86": - when: - bit: 32 os: linux store: steam - /PuzzleTime.x86_64: + "/PuzzleTime.x86_64": - when: - bit: 64 os: linux store: steam - /PuzzleTime/PuzzleTime.app: + "/PuzzleTime/PuzzleTime.app": - when: - os: mac store: steam steam: id: 1062540 -'Puzzling Languages: German/English': +"Puzzling Languages: German/English": steam: id: 1036210 Puzzling Rooms VR: @@ -416024,18 +417176,18 @@ Pylon Racer: installDir: Pylon Racer: {} launch: - /flight.bat: + "/flight.bat": - when: - bit: 64 os: windows store: steam steam: id: 856650 -'Pylon: Rogue': +"Pylon: Rogue": installDir: Pylon: {} launch: - /Pylon.exe: + "/Pylon.exe": - when: - os: windows store: steam @@ -416045,7 +417197,7 @@ Pylorus - Footsteps of Greed: installDir: Pylorus - Footsteps of Greed: {} launch: - /pylorus.exe: + "/pylorus.exe": - when: - bit: 64 os: windows @@ -416056,17 +417208,17 @@ Pylow: installDir: Pylow: {} launch: - /pylow.exe: + "/pylow.exe": - when: - os: windows store: steam steam: id: 868920 -'Pyramaze: The Game': +"Pyramaze: The Game": installDir: Pyramaze The Game: {} launch: - /PyramazeTheGame.exe: + "/PyramazeTheGame.exe": - when: - bit: 64 os: windows @@ -416077,7 +417229,7 @@ Pyramid Defense: installDir: Pyramid Defense: {} launch: - /Pyramid Defense.exe: + "/Pyramid Defense.exe": - when: - store: steam steam: @@ -416086,11 +417238,11 @@ Pyramid Raid: installDir: Pyramid Raid: {} launch: - /PyramidRaid.app: + "/PyramidRaid.app": - when: - os: mac store: steam - /PyramidRaid.exe: + "/PyramidRaid.exe": - when: - os: windows store: steam @@ -416105,32 +417257,32 @@ Pyrax: installDir: Pyrax: {} launch: - /Pyrax.exe: + "/Pyrax.exe": - when: - store: steam steam: id: 1106350 Pyre: files: - /Library/Application Support/Pyre: + "/Library/Application Support/Pyre": tags: - config - save when: - os: mac - /userdata//462770: + "/userdata//462770": tags: - config - save when: - store: steam - /Saved Games/Pyre: + "/Saved Games/Pyre": tags: - config - save when: - os: windows - /Pyre: + "/Pyre": tags: - config - save @@ -416141,12 +417293,12 @@ Pyre: installDir: Pyre: {} launch: - /Pyre: + "/Pyre": - arguments: /PerfDashWarnings=false /DebugMessages=false /DebugKeysEnabled=false /KeepAllSaves=false when: - os: linux store: steam - /Pyre.app/Contents/MacOS/Pyre: + "/Pyre.app/Contents/MacOS/Pyre": - arguments: /PerfDashWarnings=false /DebugMessages=false /DebugKeysEnabled=false /KeepAllSaves=false when: - os: mac @@ -416155,14 +417307,14 @@ Pyre: id: 462770 Pyrite Heart: files: - /game/saves: + "/game/saves": tags: - save when: - os: windows - os: mac - os: linux - /game/saves/persistent: + "/game/saves/persistent": tags: - config when: @@ -416172,15 +417324,15 @@ Pyrite Heart: installDir: Pyrite Heart: {} launch: - /Pyrite Heart.app/Contents/MacOS/Pyrite Heart: + "/Pyrite Heart.app/Contents/MacOS/Pyrite Heart": - when: - os: mac store: steam - /Pyrite Heart.exe: + "/Pyrite Heart.exe": - when: - os: windows store: steam - /Pyrite Heart.sh: + "/Pyrite Heart.sh": - when: - os: linux store: steam @@ -416195,30 +417347,30 @@ PyroMind: installDir: PyroMind: {} launch: - /PyroMind.exe: + "/PyroMind.exe": - when: - os: windows store: steam - /Pyromind.app/Contents/MacOS/Mac_Runner: + "/Pyromind.app/Contents/MacOS/Mac_Runner": - when: - os: mac store: steam steam: id: 695570 -'PyroNinja: Fire Dodge': +"PyroNinja: Fire Dodge": installDir: PyroNinja Fire Dodge: {} launch: - /PyroNinja Fire Dodge.app/Contents/MacOS/PyroNinja Fire Dodge: + "/PyroNinja Fire Dodge.app/Contents/MacOS/PyroNinja Fire Dodge": - when: - os: mac store: steam - /PyroNinja Fire Dodge.exe: + "/PyroNinja Fire Dodge.exe": - when: - bit: 64 os: windows store: steam - /PyroNinja Fire Dodge.x86_64: + "/PyroNinja Fire Dodge.x86_64": - when: - os: linux store: steam @@ -416228,16 +417380,16 @@ Pyroblazer: installDir: Pyroblazer: {} launch: - /Pyroblazer.exe: + "/Pyroblazer.exe": - when: - store: steam steam: id: 21500 -Pythagoras' Perpetual Motion Machine: +"Pythagoras' Perpetual Motion Machine": installDir: - Pythagoras' Perpetual Motion Machine: {} + "Pythagoras' Perpetual Motion Machine": {} launch: - /Pitagora.exe: + "/Pitagora.exe": - when: - os: windows store: steam @@ -416247,7 +417399,7 @@ Pythagoria: installDir: Pythagoria: {} launch: - /Pythagoria.exe: + "/Pythagoria.exe": - when: - os: windows store: steam @@ -416255,13 +417407,13 @@ Pythagoria: id: 434620 Pył: files: - /PLAYER: + "/PLAYER": tags: - save when: - os: dos - os: windows - /pyl.ini: + "/pyl.ini": tags: - config when: @@ -416271,11 +417423,11 @@ Q: installDir: Q: {} launch: - /Q.app: + "/Q.app": - when: - os: mac store: steam - /Q.exe: + "/Q.exe": - when: - os: windows store: steam @@ -416285,45 +417437,45 @@ Q Remastered: installDir: Q Remastered: {} launch: - /Q.exe: + "/Q.exe": - when: - bit: 64 os: windows store: steam steam: id: 2246110 -'Q&A: A Light-Roasted Romance': +"Q&A: A Light-Roasted Romance": installDir: Q&A A Light-Roasted Romance: {} launch: - /Q&A.exe: + "/Q&A.exe": - when: - os: windows store: steam - /Q&A_2.0.app: + "/Q&A_2.0.app": - when: - os: mac store: steam steam: id: 1044750 -'Q*bert: Rebooted': +"Q*bert: Rebooted": installDir: QBert: {} launch: - /QBert.app: + "/QBert.app": - when: - os: mac store: steam - /QBert.exe: + "/QBert.exe": - when: - os: windows store: steam - /QBert.x86: + "/QBert.x86": - when: - bit: 32 os: linux store: steam - /QBert.x86_64: + "/QBert.x86_64": - when: - bit: 64 os: linux @@ -416334,7 +417486,7 @@ Q-YO Blaster: installDir: Q-YO Blaster: {} launch: - /Q-YO BLASTER/Q-YO BLASTER.exe: + "/Q-YO BLASTER/Q-YO BLASTER.exe": - when: - os: windows store: steam @@ -416342,27 +417494,27 @@ Q-YO Blaster: id: 772610 Q.U.B.E.: files: - /Binaries/Win32/SaveGame.bin: + "/Binaries/Win32/SaveGame.bin": tags: - save when: - os: windows - /Binaries/Win32/SaveGameALTATQ.bin: + "/Binaries/Win32/SaveGameALTATQ.bin": tags: - save when: - os: windows - /Binaries/Win32/SaveGameATQ.bin: + "/Binaries/Win32/SaveGameATQ.bin": tags: - save when: - os: windows - /Binaries/Win64/*.bin: + "/Binaries/Win64/*.bin": tags: - save when: - os: windows - /UDKGame/Config: + "/UDKGame/Config": tags: - config when: @@ -416370,11 +417522,11 @@ Q.U.B.E.: installDir: QUBE: {} launch: - /Binaries/Win32/QUBE.exe: + "/Binaries/Win32/QUBE.exe": - when: - os: windows store: steam - /Q.U.B.E.app: + "/Q.U.B.E.app": - when: - os: mac store: steam @@ -416382,12 +417534,12 @@ Q.U.B.E.: id: 203730 Q.U.B.E. 10th Anniversary: files: - /QUBE_Remastered/Saved/Config/WindowsNoEditor: + "/QUBE_Remastered/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /QUBE_Remastered/Saved/SaveGames: + "/QUBE_Remastered/Saved/SaveGames": tags: - save when: @@ -416395,11 +417547,11 @@ Q.U.B.E. 10th Anniversary: installDir: Q.U.B.E. 10th Anniversary: {} launch: - /QUBECreate/QUBE.exe: + "/QUBECreate/QUBE.exe": - when: - os: windows store: steam - /QUBE_Remastered.exe: + "/QUBE_Remastered.exe": - when: - os: windows store: steam @@ -416407,12 +417559,12 @@ Q.U.B.E. 10th Anniversary: id: 1564220 Q.U.B.E. 2: files: - /QUBE/Saved/Config/WindowsNoEditor: + "/QUBE/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /QUBE/Saved/SaveGames: + "/QUBE/Saved/SaveGames": tags: - save when: @@ -416424,42 +417576,42 @@ Q.U.B.E. 2: - 1384331248 - 1803318840 steamExtra: - - 822093 - - 822094 - 822090 - 822091 + - 822093 + - 822094 installDir: Q.U.B.E. 2: {} launch: - /QUBE.exe: + "/QUBE.exe": - when: - os: windows store: steam steam: id: 359100 -'Q.U.B.E.: Director''s Cut': +"Q.U.B.E.: Director's Cut": files: - /Binaries/Win32/SaveGame.bin: + "/Binaries/Win32/SaveGame.bin": tags: - save when: - os: windows - /Binaries/Win32/SaveGameALTATQ.bin: + "/Binaries/Win32/SaveGameALTATQ.bin": tags: - save when: - os: windows - /Binaries/Win32/SaveGameATQ.bin: + "/Binaries/Win32/SaveGameATQ.bin": tags: - save when: - os: windows - /QUBEGame/Config: + "/QUBEGame/Config": tags: - config when: - os: windows - /ToxicGames/QUBE/QUBEGame: + "/ToxicGames/QUBE/QUBEGame": tags: - config - save @@ -416470,38 +417622,38 @@ Q.U.B.E. 2: installDir: QUBE Directors Cut: {} launch: - /Binaries/Linux/QUBEGame-Linux: + "/Binaries/Linux/QUBEGame-Linux": - when: - os: linux store: steam - workingDir: /Binaries/Linux - /Binaries/Win32/QUBEGame.exe: + workingDir: "/Binaries/Linux" + "/Binaries/Win32/QUBEGame.exe": - when: - os: windows store: steam - - arguments: '-Oculus' + - arguments: "-Oculus" when: - os: windows store: steam - /QUBE.app/Contents/MacOS/QUBEGame: + "/QUBE.app/Contents/MacOS/QUBEGame": - when: - bit: 64 os: mac store: steam - workingDir: /QUBE.app/Contents/MacOS + workingDir: "/QUBE.app/Contents/MacOS" steam: id: 239430 Q.U.I.R.K.: installDir: QUIRK: {} launch: - /Quirk.app: + "/Quirk.app": - when: - bit: 64 os: mac store: steam - /Quirk.exe: - - arguments: '-vrmode None' + "/Quirk.exe": + - arguments: "-vrmode None" when: - bit: 64 os: windows @@ -416519,12 +417671,12 @@ QLORB 2: id: 804550 QP Shooting - Dangerous!!: files: - /Fruitbat Factory/QP Shooting - Dangerous: + "/Fruitbat Factory/QP Shooting - Dangerous": tags: - save when: - os: windows - /Fruitbat Factory/QP Shooting - Dangerous/game.cfg: + "/Fruitbat Factory/QP Shooting - Dangerous/game.cfg": tags: - config when: @@ -416532,7 +417684,7 @@ QP Shooting - Dangerous!!: installDir: QP Shooting - Dangerous: {} launch: - /QP Shooting.exe: + "/QP Shooting.exe": - when: - store: steam steam: @@ -416541,7 +417693,7 @@ QR Code Killer: installDir: QR Code Killer: {} launch: - /QR Code Killer.exe: + "/QR Code Killer.exe": - when: - os: windows store: steam @@ -416551,29 +417703,32 @@ QT: installDir: QT: {} launch: - /Mac.app/Contents/MacOS/QT: + "/Mac.app/Contents/MacOS/QT": - when: - os: mac store: steam - /QT Linux.x86_64: + "/QT Linux.x86_64": - when: - os: linux store: steam - /QT.exe: + "/QT.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam steam: id: 1182830 -'QUALIA 3: Multi Agent': +"QUALIA 3: Multi Agent": installDir: QUALIA3: {} launch: - /Config.exe: + "/Config.exe": - when: - store: steam - /QUALIA3.exe: + "/QUALIA3.exe": - when: - store: steam steam: @@ -416582,7 +417737,7 @@ QUICAL: installDir: QUICAL: {} launch: - /Quical.exe: + "/Quical.exe": - when: - store: steam steam: @@ -416591,7 +417746,7 @@ Qajary Cat: installDir: Qajary Cat: {} launch: - /Qajary'sCat.exe: + "/Qajary'sCat.exe": - when: - store: steam steam: @@ -416599,19 +417754,19 @@ Qajary Cat: Qanga: steam: id: 1648190 -'Qasir al-Wasat: International Edition': +"Qasir al-Wasat: International Edition": installDir: Qasir al-Wasat: {} launch: - /Qasir al-Wasat.app: + "/Qasir al-Wasat.app": - when: - os: mac store: steam - /Qasir al-Wasat.exe: + "/Qasir al-Wasat.exe": - when: - os: windows store: steam - /Qasir al-Wasat.x86: + "/Qasir al-Wasat.x86": - when: - os: linux store: steam @@ -416621,17 +417776,17 @@ Qb: installDir: qb: {} launch: - /qb.app: + "/qb.app": - when: - bit: 64 os: mac store: steam - /qb.exe: + "/qb.exe": - when: - bit: 64 os: windows store: steam - /qb.sh: + "/qb.sh": - when: - bit: 64 os: linux @@ -416640,7 +417795,7 @@ Qb: id: 601400 QbQbQb: files: - /qbqbqb: + "/qbqbqb": tags: - save when: @@ -416648,24 +417803,24 @@ QbQbQb: installDir: QbQbQb: {} launch: - /qbqbqb: + "/qbqbqb": - when: - bit: 64 os: linux store: steam - /qbqbqb.app: + "/qbqbqb.app": - when: - os: mac store: steam - /qbqbqb.exe: + "/qbqbqb.exe": - when: - os: windows store: steam steam: id: 329320 -'Qbeh-1: The Atlas Cube': +"Qbeh-1: The Atlas Cube": files: - /AppData/LocalLow/Liquid Flower/Qbeh_1: + "/AppData/LocalLow/Liquid Flower/Qbeh_1": tags: - config - save @@ -416674,15 +417829,15 @@ QbQbQb: installDir: Qbeh-1: {} launch: - /Qbeh-1.app: + "/Qbeh-1.app": - when: - os: mac store: steam - /qbeh-1.exe: + "/qbeh-1.exe": - when: - os: windows store: steam - /qbeh-1.x86: + "/qbeh-1.x86": - when: - os: linux store: steam @@ -416690,7 +417845,7 @@ QbQbQb: id: 252550 Qbik: files: - /AppData/LocalLow/NPalacz/Qbik/*.*: + "/AppData/LocalLow/NPalacz/Qbik/*.*": tags: - save when: @@ -416698,47 +417853,47 @@ Qbik: installDir: Qbik: {} launch: - /Qbik.app: + "/Qbik.app": - when: - os: mac store: steam - /Qbik.exe: + "/Qbik.exe": - when: - os: windows store: steam - /Qbik.x86: + "/Qbik.x86": - when: - bit: 32 os: linux store: steam - /Qbik.x86_64: + "/Qbik.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 618470 -'Qbike: Crypto Motorcycles': +"Qbike: Crypto Motorcycles": installDir: Qbike Crypto Motorcycles: {} launch: - /Qbike.app: + "/Qbike.app": - when: - os: mac store: steam - /Qbike.exe: + "/Qbike.exe": - when: - bit: 64 os: windows store: steam - /Qbike.x86_64: + "/Qbike.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 713610 -'Qbike: Cyberpunk Motorcycles': +"Qbike: Cyberpunk Motorcycles": installDir: Qbike: {} steam: @@ -416747,7 +417902,7 @@ Qbio: installDir: Qbio: {} launch: - /Qbio.exe: + "/Qbio.exe": - when: - os: windows store: steam @@ -416757,7 +417912,7 @@ Qi Qiang: installDir: qiqiang: {} launch: - /QiQiang.exe: + "/QiQiang.exe": - when: - bit: 64 os: windows @@ -416776,15 +417931,15 @@ Qipa World-Hello Big Adventure: installDir: Qipa World-Hello Big Adventure: {} launch: - /MacPro.app: + "/MacPro.app": - when: - os: mac store: steam - /Qipa World-Hello Big Adventure.exe: + "/Qipa World-Hello Big Adventure.exe": - when: - os: windows store: steam - /QipaWorld.x86_64: + "/QipaWorld.x86_64": - when: - os: linux store: steam @@ -416796,11 +417951,11 @@ Qomp: installDir: qomp: {} launch: - /qomp: + "/qomp": - when: - os: linux store: steam - /qomp.exe: + "/qomp.exe": - when: - os: windows store: steam @@ -416810,7 +417965,7 @@ Qop: installDir: qop: {} launch: - /qop.exe: + "/qop.exe": - when: - os: windows store: steam @@ -416820,7 +417975,7 @@ Qop 2: installDir: qop 2: {} launch: - /qop 2.exe: + "/qop 2.exe": - when: - os: windows store: steam @@ -416830,7 +417985,7 @@ Qop 3: installDir: qop 3: {} launch: - /qop 3.exe: + "/qop 3.exe": - when: - os: windows store: steam @@ -416840,19 +417995,19 @@ Qop 4: installDir: qop 4: {} launch: - /qop 4.exe: + "/qop 4.exe": - when: - store: steam steam: id: 966630 Qora: files: - /Qora_SaveData.xml: + "/Qora_SaveData.xml": tags: - save when: - os: windows - /Settings.xml: + "/Settings.xml": tags: - config when: @@ -416860,15 +418015,15 @@ Qora: installDir: Qora: {} launch: - /Qora.app: + "/Qora.app": - when: - os: mac store: steam - /Qora.exe: + "/Qora.exe": - when: - os: windows store: steam - /Qora_VM: + "/Qora_VM": - when: - os: linux store: steam @@ -416878,7 +418033,7 @@ Qrth-phyl: installDir: qrth-phyl: {} launch: - /qrth.exe: + "/qrth.exe": - when: - os: windows store: steam @@ -416888,22 +418043,22 @@ Qu-tros: installDir: Qutros: {} launch: - /Qutros.exe: + "/Qutros.exe": - when: - os: windows store: steam - /Qutros.x86_64: + "/Qutros.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 965940 -'Quack Attack 1985: Turbo DX Edition': +"Quack Attack 1985: Turbo DX Edition": installDir: QUACK ATTACK 1985: {} launch: - /QUACK ATTACK 1985 TURBO DX EDITION.exe: + "/QUACK ATTACK 1985 TURBO DX EDITION.exe": - when: - os: windows store: steam @@ -416913,15 +418068,15 @@ Quad Hopping: installDir: Quad Hopping: {} launch: - /Linux/quadhopping.x86: + "/Linux/quadhopping.x86": - when: - os: linux store: steam - /MacOS/quadhopping.app/Contents/MacOS/quadhopping: + "/MacOS/quadhopping.app/Contents/MacOS/quadhopping": - when: - os: mac store: steam - /Windows/quadhopping.exe: + "/Windows/quadhopping.exe": - when: - os: windows store: steam @@ -416931,15 +418086,15 @@ Quaddro 2: installDir: Quaddro 2: {} launch: - /Quaddro 2.app/Contents/MacOS/Quaddro 2: + "/Quaddro 2.app/Contents/MacOS/Quaddro 2": - when: - os: mac store: steam - /Quaddro2.exe: + "/Quaddro2.exe": - when: - os: windows store: steam - /Quaddro2.x86: + "/Quaddro2.x86": - when: - os: linux store: steam @@ -416949,7 +418104,7 @@ Quadle: installDir: Quadle: {} launch: - /Quadle.exe: + "/Quadle.exe": - when: - os: windows store: steam @@ -416962,7 +418117,7 @@ Quadrablaze: installDir: Quadrablaze: {} launch: - /Quadrablaze.exe: + "/Quadrablaze.exe": - when: - bit: 64 os: windows @@ -416973,11 +418128,11 @@ Quadrant (HKFiftyOne): installDir: Quadrant: {} launch: - /quadrant.exe: + "/quadrant.exe": - when: - os: windows store: steam - /quadrant.x86: + "/quadrant.x86": - when: - os: linux store: steam @@ -416987,19 +418142,19 @@ Quadrant (undef): installDir: quadrant: {} launch: - /quadrant.app: + "/quadrant.app": - when: - os: mac store: steam - /quadrant.exe: + "/quadrant.exe": - when: - os: windows store: steam - /run.sh: + "/run.sh": - when: - os: linux store: steam - /workshop/uploadWorkshopItem.exe: + "/workshop/uploadWorkshopItem.exe": - when: - os: windows store: steam @@ -417012,11 +418167,11 @@ Quadrantica: installDir: quadrantica: {} launch: - /quadrantica.exe: + "/quadrantica.exe": - when: - os: windows store: steam - /quadrantica.x86: + "/quadrantica.x86": - when: - os: linux store: steam @@ -417024,42 +418179,42 @@ Quadrantica: id: 657550 Quadrilateral Cowboy: files: - /base/DoomConfig.cfg: + "/base/DoomConfig.cfg": tags: - config when: - os: windows - /base/savegames: + "/base/savegames": tags: - save when: - os: windows - /Library/Application Support/BlendoGames/QuadrilateralCowboy/base/DoomConfig.cfg: + "/Library/Application Support/BlendoGames/QuadrilateralCowboy/base/DoomConfig.cfg": tags: - config when: - os: mac - /Library/Application Support/BlendoGames/QuadrilateralCowboy/base/savegames: + "/Library/Application Support/BlendoGames/QuadrilateralCowboy/base/savegames": tags: - save when: - os: mac - /BlendoGames/Quadrilateral Cowboy/base/DoomConfig.cfg: + "/BlendoGames/Quadrilateral Cowboy/base/DoomConfig.cfg": tags: - config when: - os: windows - /BlendoGames/Quadrilateral Cowboy/base/savegames: + "/BlendoGames/Quadrilateral Cowboy/base/savegames": tags: - save when: - os: windows - /BlendoGames/QuadrilateralCowboy/base/DoomConfig.cfg: + "/BlendoGames/QuadrilateralCowboy/base/DoomConfig.cfg": tags: - config when: - os: linux - /BlendoGames/QuadrilateralCowboy/base/savegames: + "/BlendoGames/QuadrilateralCowboy/base/savegames": tags: - save when: @@ -417067,21 +418222,21 @@ Quadrilateral Cowboy: installDir: quadrilateralcowboy: {} launch: - /Quadrilateral Cowboy.app: + "/Quadrilateral Cowboy.app": - when: - os: mac store: steam - /qc.bin.x86: + "/qc.bin.x86": - when: - bit: 32 os: linux store: steam - /qc.bin.x86_64: + "/qc.bin.x86_64": - when: - bit: 64 os: linux store: steam - /qc.exe: + "/qc.exe": - when: - os: windows store: steam @@ -417089,62 +418244,62 @@ Quadrilateral Cowboy: id: 240440 Quake: files: - /HIPNOTIC/CONFIG.CFG: + "/HIPNOTIC/CONFIG.CFG": tags: - config when: - os: dos - /HIPNOTIC/S#.SAV: + "/HIPNOTIC/S#.SAV": tags: - save when: - os: dos - /ID1/CONFIG.CFG: + "/ID1/CONFIG.CFG": tags: - config when: - os: dos - /ID1/S#.SAV: + "/ID1/S#.SAV": tags: - save when: - os: dos - /ROGUE/CONFIG.CFG: + "/ROGUE/CONFIG.CFG": tags: - config when: - os: dos - /ROGUE/S#.SAV: + "/ROGUE/S#.SAV": tags: - save when: - os: dos - /hipnotic/config.cfg: + "/hipnotic/config.cfg": tags: - config when: - os: windows - /hipnotic/s#.sav: + "/hipnotic/s#.sav": tags: - save when: - os: windows - /id1/config.cfg: + "/id1/config.cfg": tags: - config when: - os: windows - /id1/s#.sav: + "/id1/s#.sav": tags: - save when: - os: windows - /rogue/config.cfg: + "/rogue/config.cfg": tags: - config when: - os: windows - /rogue/s#.sav: + "/rogue/s#.sav": tags: - save when: @@ -417160,39 +418315,39 @@ Quake: installDir: Quake: {} launch: - /rerelease/Quake_x64_steam.exe: + "/rerelease/Quake_x64_steam.exe": - when: - store: steam steam: id: 2310 Quake 4: files: - /q4base/Quake4Config.cfg: + "/q4base/Quake4Config.cfg": tags: - config when: - os: windows - /q4base/savegames: + "/q4base/savegames": tags: - save when: - os: windows - /.quake4/q4base: + "/.quake4/q4base": tags: - config when: - os: linux - /.quake4/q4base/savegames: + "/.quake4/q4base/savegames": tags: - save when: - os: linux - /Library/Containers/com.aspyr.quake4appstore/Data/Library/Application Support/Quake 4/q4base: + "/Library/Containers/com.aspyr.quake4appstore/Data/Library/Application Support/Quake 4/q4base": tags: - config when: - os: mac - /Library/Containers/com.aspyr.quake4appstore/Data/Library/Application Support/Quake 4/q4base/savegames: + "/Library/Containers/com.aspyr.quake4appstore/Data/Library/Application Support/Quake 4/q4base/savegames": tags: - save when: @@ -417205,15 +418360,15 @@ Quake 4: installDir: Quake 4: {} launch: - /Quake4.exe: - - arguments: '' + "/Quake4.exe": + - arguments: "" when: - store: steam steam: id: 2210 Quake Champions: files: - /id Software/Quake Champions: + "/id Software/Quake Champions": tags: - config when: @@ -417233,21 +418388,21 @@ Quake Champions: installDir: quakechampions: {} launch: - /client/bin/pc/QuakeChampions.exe: + "/client/bin/pc/QuakeChampions.exe": - when: - os: windows store: steam - workingDir: /client/bin/pc + workingDir: "/client/bin/pc" steam: id: 611500 Quake Enhanced: files: - /Saved Games/Nightdive Studios/Quake/*.sav: + "/Saved Games/Nightdive Studios/Quake/*.sav": tags: - save when: - os: windows - /Saved Games/Nightdive Studios/Quake/kexengine.cfg: + "/Saved Games/Nightdive Studios/Quake/kexengine.cfg": tags: - config when: @@ -417257,19 +418412,19 @@ Quake Enhanced: installDir: Quake: {} launch: - /rerelease/Quake_x64_steam.exe: + "/rerelease/Quake_x64_steam.exe": - when: - store: steam steam: id: 2310 Quake II: files: - /baseq2/*.cfg: + "/baseq2/*.cfg": tags: - config when: - os: windows - /baseq2/save: + "/baseq2/save": tags: - save when: @@ -417285,19 +418440,19 @@ Quake II: installDir: Quake 2: {} launch: - /quake2.exe: + "/quake2.exe": - when: - store: steam steam: id: 2320 Quake II Enhanced: files: - /Saved Games/Nightdive Studios/Quake II/baseq2/*.cfg: + "/Saved Games/Nightdive Studios/Quake II/baseq2/*.cfg": tags: - config when: - os: windows - /Saved Games/Nightdive Studios/Quake II/baseq2/save: + "/Saved Games/Nightdive Studios/Quake II/baseq2/save": tags: - save when: @@ -417307,29 +418462,29 @@ Quake II Enhanced: installDir: Quake 2: {} launch: - /quake2.exe: + "/quake2.exe": - when: - store: steam steam: id: 2320 Quake II RTX: files: - /baseq2/q2config.cfg: + "/baseq2/q2config.cfg": tags: - config when: - os: windows - /baseq2/save: + "/baseq2/save": tags: - save when: - os: windows - /.quake2rtx/baseq2/q2config.cfg: + "/.quake2rtx/baseq2/q2config.cfg": tags: - config when: - os: linux - /.quake2rtx/baseq2/save: + "/.quake2rtx/baseq2/save": tags: - save when: @@ -417339,12 +418494,12 @@ Quake II RTX: installDir: Quake II RTX: {} launch: - /q2rtx.exe: + "/q2rtx.exe": - when: - bit: 64 os: windows store: steam - /q2rtx.sh: + "/q2rtx.sh": - when: - bit: 64 os: linux @@ -417353,13 +418508,13 @@ Quake II RTX: id: 1089130 Quake III Arena: files: - /baseq3/q3config.cfg: + "/baseq3/q3config.cfg": tags: - config - save when: - os: windows - /.q3a/baseq3/q3config.cfg: + "/.q3a/baseq3/q3config.cfg": tags: - config - save @@ -417375,24 +418530,24 @@ Quake III Arena: installDir: Quake 3 Arena: {} launch: - /quake3.exe: + "/quake3.exe": - when: - store: steam steam: id: 2200 Quake Live: files: - /.quakelive/quakelive/home/baseq3: + "/.quakelive/quakelive/home/baseq3": tags: - config when: - os: linux - /AppData/LocalLow/id Software/quakelive/home/baseq3: + "/AppData/LocalLow/id Software/quakelive/home/baseq3": tags: - config when: - os: windows - /Library/Application Support/QuakeLive/quakelive/home/baseq3: + "/Library/Application Support/QuakeLive/quakelive/home/baseq3": tags: - config when: @@ -417400,7 +418555,7 @@ Quake Live: installDir: Quake Live: {} launch: - /quakelive_steam.exe: + "/quakelive_steam.exe": - when: - store: steam steam: @@ -417409,7 +418564,7 @@ Quanect: installDir: Quanect: {} launch: - /Quanect.exe: + "/Quanect.exe": - when: - bit: 64 os: windows @@ -417430,8 +418585,8 @@ Quantic Pinball: installDir: QuanticPinball: {} launch: - /QuanticPinball.exe: - - arguments: '--fullscreen' + "/QuanticPinball.exe": + - arguments: "--fullscreen" when: - os: windows store: steam @@ -417447,32 +418602,34 @@ Quantized: id: 465010 Quantum Break: files: - /Packages/Microsoft.QuantumBreak_8wekyb3d8bbwe/LocalState/LSAO: + "/Packages/Microsoft.QuantumBreak_8wekyb3d8bbwe/LocalState/LSAO": tags: - save when: - os: windows store: microsoft - /Packages/Microsoft.QuantumBreak_8wekyb3d8bbwe/LocalState/renderer.ini: + "/Packages/Microsoft.QuantumBreak_8wekyb3d8bbwe/LocalState/renderer.ini": tags: - config when: - os: windows store: microsoft - /QuantumBreak: + "/QuantumBreak": tags: - save when: - - store: steam - /QuantumBreak/renderer.ini: + - os: windows + store: steam + "/QuantumBreak/renderer.ini": tags: - config when: - - store: steam + - os: windows + store: steam installDir: QuantumBreak: {} launch: - /dx11/QuantumBreak.exe: + "/dx11/QuantumBreak.exe": - when: - bit: 64 store: steam @@ -417482,15 +418639,15 @@ Quantum Chess: installDir: Quantum Chess: {} launch: - /Quantum Chess - Linux.x86_64: + "/Quantum Chess - Linux.x86_64": - when: - os: linux store: steam - /Quantum Chess - Mac.app: + "/Quantum Chess - Mac.app": - when: - os: mac store: steam - /Quantum Chess - Windows.exe: + "/Quantum Chess - Windows.exe": - when: - os: windows store: steam @@ -417500,15 +418657,15 @@ Quantum Conscience: installDir: Quantum Conscience: {} launch: - /QuantumConscience.app: + "/QuantumConscience.app": - when: - os: mac store: steam - /QuantumConscience.exe: + "/QuantumConscience.exe": - when: - os: windows store: steam - /QuantumConscience.sh: + "/QuantumConscience.sh": - when: - os: linux store: steam @@ -417516,23 +418673,23 @@ Quantum Conscience: id: 375770 Quantum Conundrum: files: - /Engine/Config: + "/Engine/Config": tags: - config when: - os: windows - /TryGame/Config: + "/TryGame/Config": tags: - config when: - os: windows - /userdata//200010/remote/profile.bin: + "/userdata//200010/remote/profile.bin": tags: - save when: - os: windows store: steam - /My Games/UnrealEngine3/TryGame/Config: + "/My Games/UnrealEngine3/TryGame/Config": tags: - config when: @@ -417540,7 +418697,7 @@ Quantum Conundrum: installDir: Quantum Conundrum: {} launch: - /Binaries/Win32/TryGame-Win32-Shipping.exe: + "/Binaries/Win32/TryGame-Win32-Shipping.exe": - arguments: try_mainmenu -noscreenmessages -disabledebugoutputdevice -fullscreen -vsync -norc -seekfreeloadingpcconsole when: - store: steam @@ -417550,7 +418707,7 @@ Quantum Covenant: installDir: Quantum Covenant: {} launch: - /quantum_covenant.exe: + "/quantum_covenant.exe": - when: - os: windows store: steam @@ -417560,11 +418717,11 @@ Quantum Flux: installDir: Quantum Flux: {} launch: - /quantumflux.app: + "/quantumflux.app": - when: - os: mac store: steam - /quantumflux.exe: + "/quantumflux.exe": - when: - os: windows store: steam @@ -417587,7 +418744,7 @@ Quantum Lock: installDir: Quantum Lock: {} launch: - /FreezeTag.exe: + "/FreezeTag.exe": - when: - bit: 64 os: windows @@ -417598,7 +418755,7 @@ Quantum Multiverse: installDir: Quantum Multiverse: {} launch: - /Quantum Multiverse.exe: + "/Quantum Multiverse.exe": - when: - os: windows store: steam @@ -417608,15 +418765,15 @@ Quantum Pilot: installDir: Quantum Pilot: {} launch: - /QuantumPilot: + "/QuantumPilot": - when: - os: linux store: steam - /QuantumPilot.app: + "/QuantumPilot.app": - when: - os: mac store: steam - /QuantumPilot.exe: + "/QuantumPilot.exe": - when: - os: windows store: steam @@ -417626,7 +418783,7 @@ Quantum Replica: installDir: Quantum Replica: {} launch: - /ReplicaGame.exe: + "/ReplicaGame.exe": - when: - os: windows store: steam @@ -417636,11 +418793,11 @@ Quantum Retribution: installDir: Quantum Retribution: {} launch: - /Quantum Retribution.app/Contents/MacOS/Quantum Retribution: + "/Quantum Retribution.app/Contents/MacOS/Quantum Retribution": - when: - os: mac store: steam - /Quantum Retribution.exe: + "/Quantum Retribution.exe": - when: - os: windows store: steam @@ -417650,7 +418807,7 @@ Quantum Rush Champions: installDir: Quantum Rush Champions: {} launch: - /QuantumRushChampions.exe: + "/QuantumRushChampions.exe": - when: - os: windows store: steam @@ -417660,15 +418817,15 @@ Quantum Suicide: installDir: Quantum Suicide: {} launch: - /QuantumSuicide.app: + "/QuantumSuicide.app": - when: - os: mac store: steam - /QuantumSuicide.exe: + "/QuantumSuicide.exe": - when: - os: windows store: steam - /QuantumSuicide.sh: + "/QuantumSuicide.sh": - when: - os: linux store: steam @@ -417676,12 +418833,12 @@ Quantum Suicide: id: 1020030 Quantum Tripper: files: - /Library/Application Support/Saturation Records LLC/QuantumTripper: + "/Library/Application Support/Saturation Records LLC/QuantumTripper": tags: - save when: - os: mac - /LocalLow/Saturation Records LLC: + "/LocalLow/Saturation Records LLC": tags: - save when: @@ -417689,11 +418846,11 @@ Quantum Tripper: installDir: QuantumTripper: {} launch: - /QuantumTripper.app: + "/QuantumTripper.app": - when: - os: mac store: steam - /QuantumTripper.exe: + "/QuantumTripper.exe": - when: - os: windows store: steam @@ -417703,7 +418860,7 @@ Quantum Wizard: installDir: Quantum Wizard: {} launch: - /qw.exe: + "/qw.exe": - when: - os: windows store: steam @@ -417713,7 +418870,7 @@ Quantumleaper: installDir: Quantumleaper: {} launch: - /Quantumleaper.exe: + "/Quantumleaper.exe": - when: - bit: 64 os: windows @@ -417724,17 +418881,17 @@ Quantz: installDir: QuantZ: {} launch: - /QuantZ.app: + "/QuantZ.app": - when: - os: mac store: steam - /QuantZ.exe: + "/QuantZ.exe": - when: - os: windows store: steam steam: id: 37800 -'Quar: Battle for Gate 18': +"Quar: Battle for Gate 18": installDir: Quar Battle for Gate 18: {} steam: @@ -417743,7 +418900,7 @@ Quarantine: installDir: Quarantine: {} launch: - /Quarantine.exe: + "/Quarantine.exe": - when: - os: windows store: steam @@ -417751,7 +418908,7 @@ Quarantine: id: 489370 Quarantine Circular: files: - /AppData/LocalLow/Bithell Games/Quarantine Circular: + "/AppData/LocalLow/Bithell Games/Quarantine Circular": tags: - save when: @@ -417759,11 +418916,11 @@ Quarantine Circular: installDir: Quarantine Circular: {} launch: - /QC.app: + "/QC.app": - when: - os: mac store: steam - /QC.exe: + "/QC.exe": - when: - os: windows store: steam @@ -417773,7 +418930,7 @@ Quarries of Scred: installDir: Quarries of Scred: {} launch: - /Quarry.exe: + "/Quarry.exe": - when: - os: windows store: steam @@ -417794,7 +418951,7 @@ Quaterneon: installDir: Quaterneon: {} launch: - /NeonTwirl.exe: + "/NeonTwirl.exe": - when: - os: windows store: steam @@ -417804,22 +418961,22 @@ Quatro Luzes: installDir: Quatro Luzes: {} launch: - /QL.exe: + "/QL.exe": - when: - bit: 32 os: windows store: steam - /QL64.exe: + "/QL64.exe": - when: - bit: 64 os: windows store: steam - /QL_linux.x86: + "/QL_linux.x86": - when: - bit: 32 os: linux store: steam - /QL_linux.x86_64: + "/QL_linux.x86_64": - when: - bit: 64 os: linux @@ -417830,15 +418987,15 @@ Quatros Origins: installDir: Quatros Origins: {} launch: - /QuatrosOrigins.app/Contents/MacOS/QuatrosOrigins: + "/QuatrosOrigins.app/Contents/MacOS/QuatrosOrigins": - when: - os: mac store: steam - /QuatrosOrigins.exe: + "/QuatrosOrigins.exe": - when: - os: windows store: steam - /QuatrosOrigins.x86: + "/QuatrosOrigins.x86": - when: - os: linux store: steam @@ -417848,12 +419005,14 @@ Quaver: installDir: Quaver: {} launch: - /Quaver: + "/Quaver": - when: + - os: mac + store: steam - bit: 64 os: linux store: steam - /Quaver.exe: + "/Quaver.exe": - when: - bit: 64 os: windows @@ -417862,7 +419021,7 @@ Quaver: id: 980610 Qubburo 2: files: - /Worlds: + "/Worlds": tags: - save when: @@ -417877,7 +419036,7 @@ Qubes: installDir: Qubes: {} launch: - /Qubes.exe: + "/Qubes.exe": - when: - os: windows store: steam @@ -417890,11 +419049,11 @@ Qubika: installDir: Qubika: {} launch: - /osx64/qubika.app/Contents/MacOS/nwjs: + "/osx64/qubika.app/Contents/MacOS/nwjs": - when: - os: mac store: steam - /win64/qubika.exe: + "/win64/qubika.exe": - when: - os: windows store: steam @@ -417907,20 +419066,20 @@ Queen Under The Mountain: installDir: Hairy Little Buggers: {} launch: - /qutm.app: + "/qutm.app": - when: - os: mac store: steam - /qutm.exe: + "/qutm.exe": - when: - os: windows store: steam - /qutm.x86: + "/qutm.x86": - when: - bit: 32 os: linux store: steam - /qutm.x86_64: + "/qutm.x86_64": - when: - bit: 64 os: linux @@ -417931,15 +419090,15 @@ Queen at Arms: installDir: QueenAtArms: {} launch: - /QueenAtArms.app: + "/QueenAtArms.app": - when: - os: mac store: steam - /QueenAtArms.exe: + "/QueenAtArms.exe": - when: - os: windows store: steam - /QueenAtArms.sh: + "/QueenAtArms.sh": - when: - os: linux store: steam @@ -417949,7 +419108,7 @@ Queen of Seas: installDir: Queen of Seas: {} launch: - /Queen of Seas.exe: + "/Queen of Seas.exe": - when: - os: windows store: steam @@ -417959,11 +419118,11 @@ Queen of Seas 2: installDir: Queen of Seas 2: {} launch: - /QoS2 Linux/Queen of Seas 2.x86: + "/QoS2 Linux/Queen of Seas 2.x86": - when: - os: linux store: steam - /QoS2 Windows/Queen of Seas 2.exe: + "/QoS2 Windows/Queen of Seas 2.exe": - when: - os: windows store: steam @@ -417976,182 +419135,182 @@ Queen of Thieves: installDir: Queen Of Thieves: {} launch: - /QoT.app: + "/QoT.app": - when: - os: mac store: steam - /QoT.exe: + "/QoT.exe": - when: - os: windows store: steam - /QoT.sh: + "/QoT.sh": - when: - os: linux store: steam steam: id: 524200 -'Queen''s Garden: Halloween': +"Queen's Garden: Halloween": installDir: - Queen's Garden 3 - Halloween: {} + "Queen's Garden 3 - Halloween": {} launch: - /Queen's Garden 3 - Halloween (1.9.3).app: + "/Queen's Garden 3 - Halloween (1.9.3).app": - when: - os: mac store: steam - /Queen's Garden 3 - Halloween.x86_64: + "/Queen's Garden 3 - Halloween.x86_64": - when: - bit: 64 os: linux store: steam - /QueensGarden3.exe: + "/QueensGarden3.exe": - when: - os: windows store: steam steam: id: 726100 -'Queen''s Quest 2: Stories of Forgotten Past': +"Queen's Quest 2: Stories of Forgotten Past": installDir: QueensQuest2: {} launch: - /QueensQuest2.exe: + "/QueensQuest2.exe": - when: - os: windows store: steam - /QueensQuest2_amd64: + "/QueensQuest2_amd64": - when: - bit: 64 os: linux store: steam - /QueensQuest2_i386: + "/QueensQuest2_i386": - when: - bit: 32 os: linux store: steam - /mac_steam.app/Contents/MacOS/mac_steam: + "/mac_steam.app/Contents/MacOS/mac_steam": - when: - os: mac store: steam steam: id: 558790 -'Queen''s Quest 3: The End of Dawn': +"Queen's Quest 3: The End of Dawn": installDir: - Queen's Quest 3 The End of Dawn: {} + "Queen's Quest 3 The End of Dawn": {} launch: - /QueensQuest3.exe: + "/QueensQuest3.exe": - when: - os: windows store: steam - /QueensQuest3_amd64: + "/QueensQuest3_amd64": - when: - bit: 64 os: linux store: steam - /QueensQuest3_i386: + "/QueensQuest3_i386": - when: - bit: 32 os: linux store: steam - /mac_steam.app/Contents/MacOS/mac_steam: + "/mac_steam.app/Contents/MacOS/mac_steam": - when: - os: mac store: steam steam: id: 589690 -'Queen''s Quest 4: Sacred Truce': +"Queen's Quest 4: Sacred Truce": installDir: - Queen's Quest 4: {} + "Queen's Quest 4": {} launch: - /QueensQuest4.exe: + "/QueensQuest4.exe": - when: - os: windows store: steam - /QueensQuest4_amd64: + "/QueensQuest4_amd64": - when: - bit: 64 os: linux store: steam - /QueensQuest4_i386: + "/QueensQuest4_i386": - when: - bit: 32 os: linux store: steam - /mac_steam.app/Contents/MacOS/mac_steam: + "/mac_steam.app/Contents/MacOS/mac_steam": - when: - os: mac store: steam steam: id: 814030 -'Queen''s Quest 5: Symphony of Death': +"Queen's Quest 5: Symphony of Death": installDir: Queens Quest 5: {} launch: - /QueensQuest5.app/Contents/MacOS/QueensQuest5: + "/QueensQuest5.app/Contents/MacOS/QueensQuest5": - when: - os: mac store: steam - /QueensQuest5.exe: + "/QueensQuest5.exe": - when: - os: windows store: steam - /QueensQuest5_amd64: + "/QueensQuest5_amd64": - when: - bit: 64 os: linux store: steam - /QueensQuest5_i386: + "/QueensQuest5_i386": - when: - bit: 32 os: linux store: steam steam: id: 1089660 -'Queen''s Quest: Tower of Darkness': +"Queen's Quest: Tower of Darkness": installDir: - Queen's Quest Tower of Darkness: {} + "Queen's Quest Tower of Darkness": {} launch: - /QueensQuest_TowerOfDarkness.exe: + "/QueensQuest_TowerOfDarkness.exe": - when: - os: windows store: steam - /QueensQuest_TowerOfDarkness_amd64: + "/QueensQuest_TowerOfDarkness_amd64": - when: - bit: 64 os: linux store: steam - /QueensQuest_TowerOfDarkness_i386: + "/QueensQuest_TowerOfDarkness_i386": - when: - bit: 32 os: linux store: steam - /mac_steam.app/Contents/MacOS/mac_steam: + "/mac_steam.app/Contents/MacOS/mac_steam": - when: - os: mac store: steam steam: id: 390200 -'Queen''s Tales: Sins of the Past': +"Queen's Tales: Sins of the Past": installDir: - Queen's Tales Sins of the Past Collector's Edition: {} + "Queen's Tales Sins of the Past Collector's Edition": {} launch: - /QueensTales_SotP_CE.exe: + "/QueensTales_SotP_CE.exe": - when: - os: windows store: steam steam: id: 770870 -'Queen''s Tales: The Beast and the Nightingale': +"Queen's Tales: The Beast and the Nightingale": installDir: - Queen's Tales The Beast and the Nightingale Collector's Edition: {} + "Queen's Tales The Beast and the Nightingale Collector's Edition": {} launch: - /QueensTales_TheBeastAndTheNightingale_CE.exe: + "/QueensTales_TheBeastAndTheNightingale_CE.exe": - when: - os: windows store: steam steam: id: 605790 -'Queen''s Wish 2: The Tormentor': +"Queen's Wish 2: The Tormentor": files: - /Spiderweb Software/Queen's Wish 2 Saved Games: + "/Spiderweb Software/Queen's Wish 2 Saved Games": tags: - save when: @@ -418159,21 +419318,21 @@ Queen of Thieves: gog: id: 2109381952 installDir: - Queen's Wish 2 The Tormentor: {} + "Queen's Wish 2 The Tormentor": {} launch: - /Queen's Wish 2.app/Contents/MacOS/Queen's Wish 2: + "/Queen's Wish 2.app/Contents/MacOS/Queen's Wish 2": - when: - os: mac store: steam - /Queen's Wish 2.exe: + "/Queen's Wish 2.exe": - when: - os: windows store: steam steam: id: 1947750 -'Queen''s Wish: The Conqueror': +"Queen's Wish: The Conqueror": files: - /Spiderweb Software/Queen's Wish Saved Games: + "/Spiderweb Software/Queen's Wish Saved Games": tags: - save when: @@ -418181,13 +419340,13 @@ Queen of Thieves: gog: id: 1265286149 installDir: - Queen's Wish The Conqueror: {} + "Queen's Wish The Conqueror": {} launch: - /Queen's Wish.app/Contents/MacOS/Queen's Wish: + "/Queen's Wish.app/Contents/MacOS/Queen's Wish": - when: - os: mac store: steam - /Queen's Wish.exe: + "/Queen's Wish.exe": - when: - os: windows store: steam @@ -418202,11 +419361,11 @@ Queeny Army: installDir: Queeny Army: {} launch: - /Queeny Army.exe: + "/Queeny Army.exe": - when: - os: windows store: steam - /Queeny_Army: + "/Queeny_Army": - when: - os: linux store: steam @@ -418214,12 +419373,12 @@ Queeny Army: id: 1175050 Quell: files: - /Quell/config.txt: + "/Quell/config.txt": tags: - config when: - os: windows - /Quell/savegame: + "/Quell/savegame": tags: - save when: @@ -418227,7 +419386,7 @@ Quell: installDir: Quell: {} launch: - /Quell.exe: + "/Quell.exe": - when: - store: steam steam: @@ -418241,7 +419400,7 @@ Quell Memento: installDir: Quell Memento: {} launch: - /QuellMemento.exe: + "/QuellMemento.exe": - when: - store: steam steam: @@ -418250,7 +419409,7 @@ Quell Reflect: installDir: Quell Reflect: {} launch: - /QuellReflect.exe: + "/QuellReflect.exe": - when: - store: steam steam: @@ -418259,14 +419418,14 @@ Quell Zen: installDir: Quell Zen: {} launch: - /QuellZen.exe: + "/QuellZen.exe": - when: - store: steam steam: id: 490100 Quench: files: - /AppData/LocalLow/Axon Interactive/Quench: + "/AppData/LocalLow/Axon Interactive/Quench": tags: - save when: @@ -418274,24 +419433,24 @@ Quench: installDir: Quench: {} launch: - /Quench.exe: + "/Quench.exe": - when: - store: steam steam: id: 877440 Quern - Undying Thoughts: files: - /AppData/LocalLow/Zadbox Entertainment/Quern/Saved Games: + "/AppData/LocalLow/Zadbox Entertainment/Quern/Saved Games": tags: - save when: - os: windows - /unity3d/Zadbox Entertainment/Quern/Saved Games: + "/unity3d/Zadbox Entertainment/Quern/Saved Games": tags: - save when: - os: linux - /unity3d/Zadbox Entertainment/Quern/prefs: + "/unity3d/Zadbox Entertainment/Quern/prefs": tags: - config when: @@ -418304,21 +419463,24 @@ Quern - Undying Thoughts: installDir: Quern - Undying Thoughts: {} launch: - /Quern.app: + "/Quern.app": - when: - os: mac store: steam - /Quern.exe: + "/Quern.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam - /Quern.x86: + "/Quern.x86": - when: - bit: 32 os: linux store: steam - /Quern.x86_64: + "/Quern.x86_64": - when: - bit: 64 os: linux @@ -418333,7 +419495,7 @@ Quest For Wartorn Brotherhood: installDir: Quest For Wartorn Brotherhood: {} launch: - /Quest for Wartorn Brotherhood.exe: + "/Quest for Wartorn Brotherhood.exe": - when: - bit: 64 os: windows @@ -418342,17 +419504,17 @@ Quest For Wartorn Brotherhood: id: 1076830 Quest Hunter: files: - /userdata//487000/remote/quest_hunter_save: + "/userdata//487000/remote/quest_hunter_save": tags: - save when: - store: steam - /unity3d/2 Zombie Games/Quest Hunter: + "/unity3d/2 Zombie Games/Quest Hunter": tags: - config when: - os: linux - /Steam/userdata//487000/remote: + "/Steam/userdata//487000/remote": tags: - save when: @@ -418360,21 +419522,24 @@ Quest Hunter: installDir: Quest Hunter: {} launch: - /Quest Hunter.app/Contents/MacOS/Quest Hunter: + "/Quest Hunter.app/Contents/MacOS/Quest Hunter": - when: - os: mac store: steam - /Quest Hunter.exe: + "/Quest Hunter.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam - /Quest Hunter.x86: + "/Quest Hunter.x86": - when: - bit: 32 os: linux store: steam - /Quest Hunter.x86_64: + "/Quest Hunter.x86_64": - when: - bit: 64 os: linux @@ -418385,11 +419550,11 @@ Quest Hunter: - config steam: id: 487000 -'Quest Room: Hanon': +"Quest Room: Hanon": installDir: Quest room Hanon: {} launch: - /Hanon.exe: + "/Hanon.exe": - when: - os: windows store: steam @@ -418403,14 +419568,14 @@ Quest for Conquest: installDir: Quest for Conquest: {} launch: - /Quest for Conquest/Quest for Conquest.exe: + "/Quest for Conquest/Quest for Conquest.exe": - when: - store: steam steam: id: 1147020 -'Quest for Glory II: Trial by Fire': +"Quest for Glory II: Trial by Fire": files: - /TRIALSG.***: + "/TRIALSG.***": tags: - save when: @@ -418420,14 +419585,14 @@ Quest for Conquest: installDir: Quest for Glory Collection: {} launch: - /SierraLauncher.exe: + "/SierraLauncher.exe": - when: - store: steam steam: id: 502750 -'Quest for Glory III: Wages of War': +"Quest for Glory III: Wages of War": files: - /GLORYSG.***: + "/GLORYSG.***": tags: - save when: @@ -418437,14 +419602,14 @@ Quest for Conquest: installDir: Quest for Glory Collection: {} launch: - /SierraLauncher.exe: + "/SierraLauncher.exe": - when: - store: steam steam: id: 502750 -'Quest for Glory V: Dragon Fire': +"Quest for Glory V: Dragon Fire": files: - /Saved Games: + "/Saved Games": tags: - save when: @@ -418457,14 +419622,14 @@ Quest for Conquest: installDir: Quest for Glory Collection: {} launch: - /SierraLauncher.exe: + "/SierraLauncher.exe": - when: - store: steam steam: id: 502750 -'Quest for Glory: Shadows of Darkness': +"Quest for Glory: Shadows of Darkness": files: - /GLORYSG.***: + "/GLORYSG.***": tags: - save when: @@ -418477,14 +419642,14 @@ Quest for Conquest: installDir: Quest for Glory Collection: {} launch: - /SierraLauncher.exe: + "/SierraLauncher.exe": - when: - store: steam steam: id: 502750 -'Quest for Glory: So You Want to Be a Hero': +"Quest for Glory: So You Want to Be a Hero": files: - /GLORYSG.***: + "/GLORYSG.***": tags: - save when: @@ -418497,14 +419662,14 @@ Quest for Conquest: installDir: Quest for Glory Collection: {} launch: - /SierraLauncher.exe: + "/SierraLauncher.exe": - when: - store: steam steam: id: 502750 Quest for Infamy: files: - /Saved Games/Quest for Infamy v1.1: + "/Saved Games/Quest for Infamy v1.1": tags: - save when: @@ -418514,41 +419679,41 @@ Quest for Infamy: installDir: Quest for Infamy: {} launch: - /QFI-GameManual.pdf: + "/QFI-GameManual.pdf": - when: - store: steam - /QFI-QuickStartWalkThrough.pdf: + "/QFI-QuickStartWalkThrough.pdf": - when: - store: steam - /QFI.bin.x86: + "/QFI.bin.x86": - when: - bit: 32 os: linux store: steam - /QFI.bin.x86_64: + "/QFI.bin.x86_64": - when: - bit: 64 os: linux store: steam - /QFI.exe: + "/QFI.exe": - when: - os: windows store: steam - /QuestForInfamy.app: + "/QuestForInfamy.app": - when: - os: mac store: steam - /ags-setup.x86: + "/ags-setup.x86": - when: - bit: 32 os: linux store: steam - /ags-setup.x86_64: + "/ags-setup.x86_64": - when: - bit: 64 os: linux store: steam - /winsetupQFI.exe: + "/winsetupQFI.exe": - when: - os: windows store: steam @@ -418558,15 +419723,15 @@ Quest for the Golden Duck: installDir: DuckQuest: {} launch: - /DuckQuest.app/Contents/MacOS/game: + "/DuckQuest.app/Contents/MacOS/game": - when: - os: mac store: steam - /game.exe: + "/game.exe": - when: - os: windows store: steam - /game.i386: + "/game.i386": - when: - os: linux store: steam @@ -418574,12 +419739,12 @@ Quest for the Golden Duck: id: 996160 Quest of Dungeons: files: - /My Games/QuestofDungeons: + "/My Games/QuestofDungeons": tags: - save when: - os: windows - /My Games/QuestofDungeons/config.ini: + "/My Games/QuestofDungeons/config.ini": tags: - config when: @@ -418587,15 +419752,15 @@ Quest of Dungeons: installDir: QuestofDungeons: {} launch: - /QuestofDungeons: + "/QuestofDungeons": - when: - os: linux store: steam - /QuestofDungeons.app: + "/QuestofDungeons.app": - when: - os: mac store: steam - /QuestofDungeons.exe: + "/QuestofDungeons.exe": - when: - os: windows store: steam @@ -418608,7 +419773,7 @@ Quest of Vidhuraa: installDir: Quest of Vidhuraa: {} launch: - /qovbeta2.exe: + "/qovbeta2.exe": - when: - bit: 64 os: windows @@ -418622,14 +419787,14 @@ QuestEvent: installDir: QuestEvent: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: id: 357910 QuestRun: files: - /QuestRun/Local Store: + "/QuestRun/Local Store": tags: - save when: @@ -418637,25 +419802,25 @@ QuestRun: installDir: QuestRun: {} launch: - /QuestRun.exe: + "/QuestRun.exe": - when: - os: windows store: steam - /Questrun.app: + "/Questrun.app": - when: - os: mac store: steam steam: id: 286120 -'Questerium: Sinister Trinity': +"Questerium: Sinister Trinity": installDir: Questerium - Sinister Trinity: {} launch: - /Questerium_Sinister_Trinity.app: + "/Questerium_Sinister_Trinity.app": - when: - os: mac store: steam - /Questerium_Sinister_Trinity.exe: + "/Questerium_Sinister_Trinity.exe": - when: - os: windows store: steam @@ -418665,7 +419830,7 @@ Questery: installDir: BuildMSRPG: {} launch: - /CompleteShooter.exe: + "/CompleteShooter.exe": - when: - os: windows store: steam @@ -418675,7 +419840,7 @@ Questlike: installDir: Questlike: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -418685,31 +419850,31 @@ Questr: installDir: Questr: {} launch: - /Questr.exe: + "/Questr.exe": - when: - os: windows store: steam - /Questr.x86: + "/Questr.x86": - when: - bit: 32 os: linux store: steam - /Questr.x86_64: + "/Questr.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 675990 -'Questria: Rise of the Robot Skullfaces': +"Questria: Rise of the Robot Skullfaces": installDir: Questria: {} launch: - /Questria.app/Contents/MacOS/Questria: + "/Questria.app/Contents/MacOS/Questria": - when: - os: mac store: steam - /Questria.exe: + "/Questria.exe": - when: - os: windows store: steam @@ -418722,15 +419887,15 @@ Quests Unlimited: installDir: Quests Unlimited: {} launch: - /QuestsUnlimited_EA.app: + "/QuestsUnlimited_EA.app": - when: - os: mac store: steam - /QuestsUnlimited_EA.exe: + "/QuestsUnlimited_EA.exe": - when: - os: windows store: steam - /QuestsUnlimited_EA.x86: + "/QuestsUnlimited_EA.x86": - when: - os: linux store: steam @@ -418738,12 +419903,12 @@ Quests Unlimited: id: 777420 Quetoo: files: - /.quetoo/default/quetoo.cfg: + "/.quetoo/default/quetoo.cfg": tags: - config when: - os: linux - /My Games/Quetoo/default/quetoo.cfg: + "/My Games/Quetoo/default/quetoo.cfg": tags: - config when: @@ -418762,20 +419927,20 @@ Quible Sphere: installDir: Quible Sphere: {} launch: - /Quible Sphere.app: + "/Quible Sphere.app": - when: - os: mac store: steam - /Quible Sphere.exe: + "/Quible Sphere.exe": - when: - os: windows store: steam - /Quible Sphere.x86: + "/Quible Sphere.x86": - when: - bit: 32 os: linux store: steam - /Quible Sphere.x86_64: + "/Quible Sphere.x86_64": - when: - bit: 64 os: linux @@ -418787,7 +419952,7 @@ Quick Draw: Quick Draw: {} steam: id: 522250 -'Quick Maths: addition and subtraction': +"Quick Maths: addition and subtraction": steam: id: 899370 Quick Slick Deadly: @@ -418802,7 +419967,7 @@ Quiet Godo: installDir: Quiet Godo: {} launch: - /QuietGodoGame/QuietGodo.exe: + "/QuietGodoGame/QuietGodo.exe": - when: - bit: 32 os: windows @@ -418813,7 +419978,7 @@ Quiet Sleep: installDir: Quiet Sleep: {} launch: - /QuietSleep.exe: + "/QuietSleep.exe": - when: - bit: 64 os: windows @@ -418824,11 +419989,11 @@ Quiet as a Stone: installDir: Quiet as a Stone: {} launch: - /QuietasaStone.app/Contents/MacOS/QuietasaStone: + "/QuietasaStone.app/Contents/MacOS/QuietasaStone": - when: - os: mac store: steam - /QuietasaStone.exe: + "/QuietasaStone.exe": - when: - os: windows store: steam @@ -418838,7 +420003,7 @@ Quilly: installDir: Quilly: {} launch: - /Quilly.exe: + "/Quilly.exe": - when: - os: windows store: steam @@ -418848,17 +420013,17 @@ Quintet: installDir: Quintet: {} launch: - /Quintet.app: + "/Quintet.app": - arguments: source=steam when: - os: mac store: steam - /Quintet.exe: + "/Quintet.exe": - arguments: source=steam when: - os: windows store: steam - /Quintet.x86_64: + "/Quintet.x86_64": - arguments: source=steam when: - os: linux @@ -418869,15 +420034,15 @@ Quip Anomaly: installDir: QuipAnomaly: {} launch: - /game.app: + "/game.app": - when: - os: mac store: steam - /game.exe: + "/game.exe": - when: - os: windows store: steam - /game.x86: + "/game.x86": - when: - os: linux store: steam @@ -418885,13 +420050,13 @@ Quip Anomaly: id: 506470 Quiplash: files: - /.config/Jackbox Games/Quiplash/Userdata.sav: + "/.config/Jackbox Games/Quiplash/Userdata.sav": tags: - config - save when: - os: linux - /Jackbox Games/Quiplash/UserData.sav: + "/Jackbox Games/Quiplash/UserData.sav": tags: - config - save @@ -418900,17 +420065,17 @@ Quiplash: installDir: Quiplash: {} launch: - /Launcher.sh: + "/Launcher.sh": - when: - bit: 64 os: linux store: steam - /Quiplash.app: + "/Quiplash.app": - when: - os: mac store: steam - /Quiplash.exe: - - arguments: '-jbg.config serverUrl=ecast.jackboxgames.com' + "/Quiplash.exe": + - arguments: "-jbg.config serverUrl=ecast.jackboxgames.com" when: - os: windows store: steam @@ -418920,16 +420085,16 @@ Quiplash 2 InterLASHional: installDir: Quiplash 2 InterLASHional: {} launch: - /Launcher.sh: + "/Launcher.sh": - when: - bit: 64 os: linux store: steam - /Quiplash 2 InterLASHional.app: + "/Quiplash 2 InterLASHional.app": - when: - os: mac store: steam - /Quiplash 2 InterLASHional.exe: + "/Quiplash 2 InterLASHional.exe": - when: - os: windows store: steam @@ -418939,7 +420104,7 @@ Quirky Crook: installDir: QuirkyCrook: {} launch: - /QuirkyCrook_03_21_2018_D.exe: + "/QuirkyCrook_03_21_2018_D.exe": - when: - os: windows store: steam @@ -418949,20 +420114,20 @@ Quirky Crystal RPG: installDir: Quirky Crystal RPG: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam steam: id: 921660 -Quiver Dick's Epic Book of Fairy Fails: +"Quiver Dick's Epic Book of Fairy Fails": steam: id: 1091370 -Quiver Dick's Terrible Tale for Terrible Parents to Read to Their Equally Terrible Children: +"Quiver Dick's Terrible Tale for Terrible Parents to Read to Their Equally Terrible Children": installDir: - Quiver Dick's Terrible Tale: {} + "Quiver Dick's Terrible Tale": {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -418974,17 +420139,17 @@ Quixzel Rush Halloween Party: Quixzel Rush Pumpkin Bash: steam: id: 937610 -'Quixzel Rush: Christmas Helper': +"Quixzel Rush: Christmas Helper": steam: id: 942550 -'Quixzel Rush: Tooth Protector': +"Quixzel Rush: Tooth Protector": steam: id: 942560 Quiz Night Tonight!: installDir: Quiz Night Tonight!: {} launch: - /QNT.exe: + "/QNT.exe": - when: - os: windows store: steam @@ -418994,7 +420159,7 @@ Quiz Time: installDir: Quiz Time: {} launch: - /Quiz.exe: + "/Quiz.exe": - when: - os: windows store: steam @@ -419004,11 +420169,11 @@ Quiz.com: installDir: Quiz.com: {} launch: - /Quiz.com.app/Contents/MacOS/Quiz.com: + "/Quiz.com.app/Contents/MacOS/Quiz.com": - when: - os: mac store: steam - /Quiz.com.exe: + "/Quiz.com.exe": - when: - os: windows store: steam @@ -419026,15 +420191,15 @@ Quote: installDir: Quote: {} launch: - /Quote.app: + "/Quote.app": - when: - os: mac store: steam - /Quote.exe: + "/Quote.exe": - when: - os: windows store: steam - /Quote.x86: + "/Quote.x86": - when: - os: linux store: steam @@ -419044,7 +420209,7 @@ Quotes Quest - Match 3: installDir: Quotes Quest - Match 3: {} launch: - /QuotesQuest.exe: + "/QuotesQuest.exe": - when: - os: windows store: steam @@ -419054,7 +420219,7 @@ Qvabllock: installDir: Qvabllock: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -419064,7 +420229,7 @@ Qvadriga: installDir: Qvadriga: {} launch: - /autorun.exe: + "/autorun.exe": - when: - os: windows store: steam @@ -419074,11 +420239,11 @@ Qvadriga: - config steam: id: 297760 -Qwerty's Prison: +"Qwerty's Prison": installDir: - Qwerty's Prison: {} + "Qwerty's Prison": {} launch: - /Athi.exe: + "/Athi.exe": - when: - os: windows store: steam @@ -419088,7 +420253,7 @@ Qybe: installDir: Qybe: {} launch: - /qybe.exe: + "/qybe.exe": - when: - os: windows store: steam @@ -419098,19 +420263,19 @@ R Academy: installDir: R Academy: {} launch: - /R academy.app: + "/R academy.app": - when: - os: mac store: steam - /R academy.exe: + "/R academy.exe": - when: - os: windows store: steam - /R academy.py: + "/R academy.py": - when: - os: mac store: steam - /R academy.sh: + "/R academy.sh": - when: - os: linux store: steam @@ -419120,7 +420285,7 @@ R sin: installDir: R_sin: {} launch: - /ThirdPersonArchery.exe: + "/ThirdPersonArchery.exe": - when: - bit: 64 os: windows @@ -419131,20 +420296,20 @@ R-COIL: installDir: R-COIL: {} launch: - /rcoil.app: + "/rcoil.app": - when: - os: mac store: steam - /rcoil.exe: + "/rcoil.exe": - when: - os: windows store: steam - /rcoil.x86: + "/rcoil.x86": - when: - bit: 32 os: linux store: steam - /rcoil.x86_64: + "/rcoil.x86_64": - when: - bit: 64 os: linux @@ -419155,7 +420320,7 @@ R-Type Dimensions EX: installDir: R-Type_Dimensions: {} launch: - /R-Type_Dimensions.exe: + "/R-Type_Dimensions.exe": - when: - bit: 64 os: windows @@ -419164,12 +420329,12 @@ R-Type Dimensions EX: id: 928390 R-Type Final 2: files: - /Saved Games/RTypeFinal2/Saved/Config/WindowsNoEditor: + "/Saved Games/RTypeFinal2/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /Saved Games/RTypeFinal2/Saved/SaveGames: + "/Saved Games/RTypeFinal2/Saved/SaveGames": tags: - save when: @@ -419179,7 +420344,7 @@ R-Type Final 2: installDir: R-Type Final 2: {} launch: - /RTypeFinal2.exe: + "/RTypeFinal2.exe": - when: - store: steam steam: @@ -419188,8 +420353,8 @@ R.A.F.A.: installDir: RAFA: {} launch: - /DNTTGRafA.exe: - - arguments: testrafa.servergame.com 6553 bulldog oveja#4 -Xmx1g -Xms1g -Duser.language=en -Duser.country=EN + "/DNTTGRafA.exe": + - arguments: "testrafa.servergame.com 6553 bulldog oveja#4 -Xmx1g -Xms1g -Duser.language=en -Duser.country=EN" when: - os: windows store: steam @@ -419199,7 +420364,7 @@ R.A.T.S. (Regulatory Astro-Topographical Stabilizer): installDir: RATS: {} launch: - /RATS.exe: + "/RATS.exe": - when: - bit: 32 os: windows @@ -419208,7 +420373,7 @@ R.A.T.S. (Regulatory Astro-Topographical Stabilizer): id: 553440 R.A.W. Realms of Ancient War: files: - /config.xml: + "/config.xml": tags: - config when: @@ -419216,10 +420381,10 @@ R.A.W. Realms of Ancient War: installDir: R.A.W. Realms of Ancient War: {} launch: - /Realms Of Ancient War - Config.exe: + "/Realms Of Ancient War - Config.exe": - when: - store: steam - /Realms Of Ancient War.exe: + "/Realms Of Ancient War.exe": - when: - store: steam steam: @@ -419228,11 +420393,11 @@ R.B.I. Baseball 15: installDir: R.B.I. Baseball 15: {} launch: - /RBIBaseball.app: + "/RBIBaseball.app": - when: - os: mac store: steam - /RBIBaseball.exe: + "/RBIBaseball.exe": - when: - os: windows store: steam @@ -419242,11 +420407,11 @@ R.B.I. Baseball 16: installDir: R.B.I. Baseball 16: {} launch: - /RBIBaseball.app: + "/RBIBaseball.app": - when: - os: mac store: steam - /RBIBaseball.exe: + "/RBIBaseball.exe": - when: - os: windows store: steam @@ -419256,7 +420421,7 @@ R.B.I. Baseball 20: installDir: R.B.I. Baseball 20: {} launch: - /RBIBaseball_2020.exe: + "/RBIBaseball_2020.exe": - when: - os: windows store: steam @@ -419266,7 +420431,7 @@ R.B.I. Baseball 21: installDir: R.B.I. Baseball 21: {} launch: - /RBIBaseball_2021.exe: + "/RBIBaseball_2021.exe": - when: - os: windows store: steam @@ -419276,7 +420441,7 @@ R.C. Bot Inc.: installDir: RcBotInc: {} launch: - /RescueBot/Binaries/Win32/RescueBot.exe: + "/RescueBot/Binaries/Win32/RescueBot.exe": - when: - os: windows store: steam @@ -419286,32 +420451,32 @@ R.I.C.A: installDir: R.I.C.A: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam steam: id: 1020640 -'R.I.P.D.: The Game': +"R.I.P.D.: The Game": installDir: RIPD The Game: {} launch: - /bin/RIPD.exe: + "/bin/RIPD.exe": - when: - os: windows store: steam - workingDir: /bin + workingDir: "/bin" steam: id: 237590 R.O.O.T.S: installDir: ROOTS: {} launch: - /ROOTS.exe: + "/ROOTS.exe": - when: - os: windows store: steam - /roots: + "/roots": - when: - os: linux store: steam @@ -419321,7 +420486,7 @@ R.O.V.E.R.: installDir: ROVER: {} launch: - /Rover.exe: + "/Rover.exe": - when: - bit: 64 os: windows @@ -419332,7 +420497,7 @@ R.U.B.Y.寻常交织的日常: installDir: R_U_B_Y_寻常交织的日常: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -419340,12 +420505,12 @@ R.U.B.Y.寻常交织的日常: id: 1169230 R.U.M.A: installDir: - '[ R.U.M.A ]': {} + "[ R.U.M.A ]": {} steam: id: 552380 R.U.S.E.: files: - /userData//21970/Local: + "/userData//21970/Local": tags: - config - save @@ -419355,11 +420520,11 @@ R.U.S.E.: installDir: R.U.S.E: {} launch: - /RUSE.app/Contents/MacOS/RUSE: + "/RUSE.app/Contents/MacOS/RUSE": - when: - os: mac store: steam - /RUSE.exe: + "/RUSE.exe": - when: - os: windows store: steam @@ -419378,47 +420543,47 @@ RACE - The WTCC Game: installDir: Race: {} launch: - /RaceConfig_Steam.exe: + "/RaceConfig_Steam.exe": - when: - store: steam - /SteamProxy.exe: + "/SteamProxy.exe": - when: - store: steam steam: id: 4230 RACE 07 - Official WTCC Game: files: - /SimBin/RACE 07/Config.ini: + "/SimBin/RACE 07/Config.ini": tags: - config when: - os: windows - /SimBin/RACE 07/REPLAYDATA: + "/SimBin/RACE 07/REPLAYDATA": tags: - save when: - os: windows - /SimBin/RACE 07/UserData/: + "/SimBin/RACE 07/UserData/": tags: - save when: - os: windows - /SimBin/RACE 07/UserData/CarSetups: + "/SimBin/RACE 07/UserData/CarSetups": tags: - save when: - os: windows - /SimBin/RACE 07/UserData/ControlSet: + "/SimBin/RACE 07/UserData/ControlSet": tags: - config when: - os: windows - /SimBin/RACE 07/UserData/ScreenShots: + "/SimBin/RACE 07/UserData/ScreenShots": tags: - save when: - os: windows - /SimBin/RACE 07/UserData/vehicledata.spt: + "/SimBin/RACE 07/UserData/vehicledata.spt": tags: - save when: @@ -419435,13 +420600,13 @@ RACE 07 - Official WTCC Game: installDir: race 07: {} launch: - /Config.exe: + "/Config.exe": - when: - store: steam - /SteamProxy.exe: + "/SteamProxy.exe": - when: - store: steam - /steamproxy.exe: + "/steamproxy.exe": - arguments: /launchregistration when: - store: steam @@ -419451,14 +420616,14 @@ RACE Injection: installDir: race 07: {} launch: - /SteamExpansionApp.exe: - - arguments: '-appId 44860 -cmd skin=Mosquito' + "/SteamExpansionApp.exe": + - arguments: "-appId 44860 -cmd skin=Mosquito" when: - store: steam - - arguments: '-appId 44680 -cmd /launchconfig' + - arguments: "-appId 44680 -cmd /launchconfig" when: - store: steam - - arguments: '-appId 44680 -cmd /launchregistration' + - arguments: "-appId 44680 -cmd /launchregistration" when: - store: steam steam: @@ -419470,12 +420635,12 @@ RACING GAME: installDir: RACING GAME: {} launch: - /AdvancedVehicleKit.exe: + "/AdvancedVehicleKit.exe": - when: - bit: 64 os: windows store: steam - /AdvancedVehicleKit.sh: + "/AdvancedVehicleKit.sh": - when: - bit: 64 os: linux @@ -419486,7 +420651,7 @@ RADical ROACH Remastered: installDir: RADical ROACH: {} launch: - /RADical ROACH.exe: + "/RADical ROACH.exe": - when: - store: steam steam: @@ -419495,7 +420660,7 @@ RADtv: installDir: RAD TV: {} launch: - /RadTV.exe: + "/RadTV.exe": - when: - bit: 64 os: windows @@ -419504,12 +420669,12 @@ RADtv: id: 649240 RAGE: files: - /SAVES/base: + "/SAVES/base": tags: - config when: - os: windows - /Saved Games/id Software/Rage/base/savegame: + "/Saved Games/id Software/Rage/base/savegame": tags: - save when: @@ -419517,23 +420682,23 @@ RAGE: installDir: RAGE: {} launch: - /Rage64.exe: + "/Rage64.exe": - arguments: +com_allowMods 1 +logfile 1 +fs_savepath ./SAVES when: - store: steam - /rage.exe: + "/rage.exe": - when: - store: steam steam: id: 9200 RAGE 2: files: - /Saved Games/id Software/Rage 2/Saves: + "/Saved Games/id Software/Rage 2/Saves": tags: - save when: - os: windows - /Saved Games/id Software/Rage 2/settings.ini: + "/Saved Games/id Software/Rage 2/settings.ini": tags: - config when: @@ -419541,21 +420706,21 @@ RAGE 2: installDir: RAGE 2: {} launch: - /RAGE2.exe: + "/RAGE2.exe": - when: - bit: 64 os: windows store: steam steam: id: 548570 -'RAID: World War II': +"RAID: World War II": files: - /userdata//414740/remote: + "/userdata//414740/remote": tags: - save when: - store: steam - /RAID WW2/renderer_settings.xml: + "/RAID WW2/renderer_settings.xml": tags: - config when: @@ -419566,7 +420731,7 @@ RAGE 2: installDir: RAID World War II: {} launch: - /raid_win64_d3d9_release.exe: + "/raid_win64_d3d9_release.exe": - when: - bit: 64 os: windows @@ -419577,8 +420742,8 @@ RAM Pressure: installDir: RAM_PRESSURE: {} launch: - /RPLauncher.exe: - - arguments: ' -steam' + "/RPLauncher.exe": + - arguments: " -steam" when: - os: windows store: steam @@ -419588,20 +420753,20 @@ RAMS: installDir: RAMS: {} launch: - /rams.exe: + "/rams.exe": - when: - os: windows store: steam steam: id: 809580 -'RAN: Lost Islands': +"RAN: Lost Islands": steam: id: 986220 RANCID: installDir: RANCID: {} launch: - /player.exe: + "/player.exe": - when: - bit: 64 os: windows @@ -419612,7 +420777,7 @@ RANDOM OF WARS: installDir: RANDOM OF WARS: {} launch: - /row.exe: + "/row.exe": - when: - os: windows store: steam @@ -419622,7 +420787,7 @@ RANK RUNNER: installDir: RANK RUNNER: {} launch: - /RANK RUNNER.exe: + "/RANK RUNNER.exe": - when: - os: windows store: steam @@ -419638,7 +420803,7 @@ RAYGUN COMMANDO VR 2: id: 934520 RAYZE: files: - /AppData/LocalLow/Hyperstrange/RAYZE: + "/AppData/LocalLow/Hyperstrange/RAYZE": tags: - config when: @@ -419646,7 +420811,7 @@ RAYZE: installDir: RAYZE: {} launch: - /RAYZE.exe: + "/RAYZE.exe": - when: - bit: 64 os: windows @@ -419661,7 +420826,7 @@ RAZ: installDir: RAZ: {} launch: - /RAZ.exe: + "/RAZ.exe": - when: - bit: 64 os: windows @@ -419672,25 +420837,25 @@ RAZE 2070: installDir: RAZE 2070: {} launch: - /RAZE.exe: + "/RAZE.exe": - when: - bit: 64 os: windows store: steam steam: id: 1564230 -'RB: Axolotl': +"RB: Axolotl": installDir: RB Axolotl: {} launch: - /nw.exe: + "/nw.exe": - when: - store: steam steam: id: 1014580 RC Cars: files: - /Players: + "/Players": tags: - save when: @@ -419700,7 +420865,7 @@ RC Cars: installDir: RCCars: {} launch: - /RCCars.exe: + "/RCCars.exe": - when: - os: windows store: steam @@ -419710,20 +420875,20 @@ RC Fun City: installDir: RC Fun City: {} launch: - /RC Fun City.app: + "/RC Fun City.app": - when: - os: mac store: steam - /RC Fun City.exe: + "/RC Fun City.exe": - when: - os: windows store: steam - /RC Fun City.x86: + "/RC Fun City.x86": - when: - bit: 32 os: linux store: steam - /RC Fun City.x86_64: + "/RC Fun City.x86_64": - when: - bit: 64 os: linux @@ -419734,20 +420899,20 @@ RC Mini Racers: installDir: RC Mini Racers: {} launch: - /RC Mini Racers.app: + "/RC Mini Racers.app": - when: - os: mac store: steam - /RC Mini Racers.exe: + "/RC Mini Racers.exe": - when: - os: windows store: steam - /RCMiniRacers.x86: + "/RCMiniRacers.x86": - when: - bit: 32 os: linux store: steam - /RCMiniRacers.x86_64: + "/RCMiniRacers.x86_64": - when: - bit: 64 os: linux @@ -419758,11 +420923,11 @@ RC Plane 3: installDir: RC Plane 3: {} launch: - /RC Plane 3.app: + "/RC Plane 3.app": - when: - os: mac store: steam - /RC Plane 3.exe: + "/RC Plane 3.exe": - when: - os: windows store: steam @@ -419777,7 +420942,7 @@ RC Racing Off Road 2.0: installDir: RC Racing Off Road 2.0: {} launch: - /RC Racing Off Road 2.0.exe: + "/RC Racing Off Road 2.0.exe": - when: - os: windows store: steam @@ -419790,15 +420955,15 @@ RC Simulation 2.0: installDir: RCSIM2: {} launch: - /RCSIM2.app: + "/RCSIM2.app": - when: - os: mac store: steam - /RCSIM2.exe: + "/RCSIM2.exe": - when: - os: windows store: steam - /RCSIM2.x86: + "/RCSIM2.x86": - when: - os: linux store: steam @@ -419808,7 +420973,7 @@ RC-AirSim - RC Model Airplane Flight Simulator: installDir: RC-AirSim - RC Model Airplane Flight Simulator: {} launch: - /RC-AirSimSteam.exe: + "/RC-AirSimSteam.exe": - when: - os: windows store: steam @@ -419819,49 +420984,49 @@ RCRacer VR: RCRacerVR: {} steam: id: 977270 -RD's Adventure Mini Golf: +"RD's Adventure Mini Golf": installDir: - RD's Adventure Mini Golf: {} + "RD's Adventure Mini Golf": {} steam: id: 656300 RDS - The Official Drift Videogame: installDir: RDS - The Official Drift Videogame: {} launch: - /RDS.exe: + "/RDS.exe": - when: - os: windows store: steam steam: id: 934930 -'RE:OZMA': +"RE:OZMA": installDir: REOZMA: {} steam: id: 932690 -'REBORN: Survival': +"REBORN: Survival": steam: id: 1198690 RECOG The First Wave: installDir: RECOG The First Wave: {} launch: - /Recog.app: + "/Recog.app": - when: - os: mac store: steam - /Recog.exe: + "/Recog.exe": - when: - os: windows store: steam - /Recog.x86: - - arguments: '-screen-fullscreen 0 -screen-width 800 -screen-height 600' + "/Recog.x86": + - arguments: "-screen-fullscreen 0 -screen-width 800 -screen-height 600" when: - bit: 32 os: linux store: steam - /Recog.x86_64: - - arguments: '-screen-fullscreen 0 -screen-width 800 -screen-height 600' + "/Recog.x86_64": + - arguments: "-screen-fullscreen 0 -screen-width 800 -screen-height 600" when: - bit: 64 os: linux @@ -419872,18 +421037,18 @@ RED EVIL: installDir: Red Evil: {} launch: - /RedEvil.exe: + "/RedEvil.exe": - when: - os: windows store: steam steam: id: 1169070 -'RED: Lucid Nightmare': +"RED: Lucid Nightmare": installDir: RED: {} launch: - /Red1.exe: - - arguments: '-vrmode none' + "/Red1.exe": + - arguments: "-vrmode none" when: - os: windows store: steam @@ -419893,7 +421058,7 @@ REDO!: installDir: REDO!: {} launch: - /REDO!.exe: + "/REDO!.exe": - when: - os: windows store: steam @@ -419901,12 +421066,12 @@ REDO!: id: 950300 REDRIVER 2: files: - /config.ini: + "/config.ini": tags: - config when: - os: windows - /.driver2: + "/.driver2": tags: - save when: @@ -419915,7 +421080,7 @@ REDVIIL: installDir: Redvil: {} launch: - /Redvil.exe: + "/Redvil.exe": - when: - os: windows store: steam @@ -419925,8 +421090,11 @@ REFLASER: installDir: REFLASER: {} launch: - /Reflaser.exe: + "/Reflaser.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam @@ -419936,7 +421104,7 @@ REFUGE: installDir: REFUGE: {} launch: - /REFUGE.exe: + "/REFUGE.exe": - when: - store: steam steam: @@ -419945,20 +421113,20 @@ REGOLA: installDir: REGOLA: {} launch: - /regola.exe: + "/regola.exe": - when: - os: windows store: steam steam: id: 1039310 -'REKKR: Sunken Land': +"REKKR: Sunken Land": files: - /*.ini: + "/*.ini": tags: - config when: - os: windows - /*.zds: + "/*.zds": tags: - save when: @@ -419968,11 +421136,11 @@ REGOLA: installDir: REKKR Sunken Land: {} launch: - /Multiplayer GUI.exe: + "/Multiplayer GUI.exe": - when: - os: windows store: steam - /rekkr.exe: + "/rekkr.exe": - when: - os: windows store: steam @@ -419982,7 +421150,7 @@ REKT!: installDir: Rekt!: {} launch: - /REKT.exe: + "/REKT.exe": - when: - os: windows store: steam @@ -419992,7 +421160,7 @@ REMOTE LIFE: installDir: REMOTE LIFE: {} launch: - /Remote_Life_1_6.exe: + "/Remote_Life_1_6.exe": - when: - os: windows store: steam @@ -420002,11 +421170,11 @@ RESEQUENCED: installDir: Resequenced: {} launch: - /Resequenced.app: + "/Resequenced.app": - when: - os: mac store: steam - /Resequenced.exe: + "/Resequenced.exe": - when: - bit: 64 os: windows @@ -420018,25 +421186,25 @@ RETNE: RETNE: {} steam: id: 622380 -'RETRO-PIXEL COLOR PALETTE: Color by Number': +"RETRO-PIXEL COLOR PALETTE: Color by Number": installDir: RETRO-PIXEL COLOR PALETTE Color by Number: {} steam: id: 1219120 -RETRO\war! 8bit party battle: +"RETRO\\war! 8bit party battle": installDir: RetroWar: {} launch: - /RetroWar: + "/RetroWar": - when: - bit: 64 os: linux store: steam - /RetroWar.app: + "/RetroWar.app": - when: - os: mac store: steam - /RetroWar.exe: + "/RetroWar.exe": - when: - bit: 64 os: windows @@ -420047,11 +421215,11 @@ RETSNOM: installDir: RETSNOM: {} launch: - /RETSNOM.app: + "/RETSNOM.app": - when: - os: mac store: steam - /RETSNOM.exe: + "/RETSNOM.exe": - when: - os: windows store: steam @@ -420061,21 +421229,21 @@ REZPLZ: installDir: REZ PLZ: {} launch: - /REZPLZ.exe: + "/REZPLZ.exe": - when: - os: windows store: steam steam: id: 911680 -'REalM: Walk of Soul': +"REalM: Walk of Soul": installDir: REalM Walk of Soul Book 1: {} launch: - /REalM Walk of Soul.app: + "/REalM Walk of Soul.app": - when: - os: mac store: steam - /REalM Walk of Soul.exe: + "/REalM Walk of Soul.exe": - when: - os: windows store: steam @@ -420085,20 +421253,20 @@ RFLEX: installDir: RFLEX: {} launch: - /RFLEX.command: + "/RFLEX.command": - when: - os: mac store: steam - /RFLEX.sh: + "/RFLEX.sh": - when: - os: linux store: steam - /RFLEX32.exe: + "/RFLEX32.exe": - when: - bit: 32 os: windows store: steam - /RFLEX64.exe: + "/RFLEX64.exe": - when: - bit: 64 os: windows @@ -420107,12 +421275,12 @@ RFLEX: id: 392020 RFactor: files: - /Config.ini: + "/Config.ini": tags: - config when: - os: windows - /UserData//.plr: + "/UserData//.plr": tags: - save when: @@ -420120,15 +421288,15 @@ RFactor: installDir: rFactor: {} launch: - /rF Config.exe: + "/rF Config.exe": - when: - os: windows store: steam - /rFactor Dedicated.exe: + "/rFactor Dedicated.exe": - when: - os: windows store: steam - /rFactor.exe: + "/rFactor.exe": - when: - os: windows store: steam @@ -420136,12 +421304,12 @@ RFactor: id: 339790 RFactor 2: files: - /UserData/Config.ini: + "/UserData/Config.ini": tags: - config when: - os: windows - /UserData/player/player.json: + "/UserData/player/player.json": tags: - save when: @@ -420149,18 +421317,18 @@ RFactor 2: installDir: rFactor 2: {} launch: - /Launcher/Launch rFactor.exe: + "/Launcher/Launch rFactor.exe": - when: - os: windows store: steam - workingDir: /Launcher + workingDir: "/Launcher" steam: id: 365960 RGB RUN: installDir: RGB RUN: {} launch: - /RGB_RUN.exe: + "/RGB_RUN.exe": - when: - bit: 64 os: windows @@ -420171,7 +421339,7 @@ RGBCELLS: installDir: RGBCELLS: {} launch: - /RGBCELLS.exe: + "/RGBCELLS.exe": - when: - os: windows store: steam @@ -420181,7 +421349,7 @@ RGBverse: installDir: RGBverse: {} launch: - /RGBverse.exe: + "/RGBverse.exe": - when: - os: windows store: steam @@ -420191,25 +421359,25 @@ RHCs StretchingVr: installDir: StretchingVr: {} launch: - /StretchingVR.exe: + "/StretchingVR.exe": - when: - bit: 64 store: steam steam: id: 782420 -'RHEM I SE: The Mysterious Land': +"RHEM I SE: The Mysterious Land": installDir: RHEM I SE The Mysterious Land: {} launch: - /RHEM_I_SE.exe: + "/RHEM_I_SE.exe": - when: - os: windows store: steam steam: id: 656900 -'RHEM II SE: The Cave': +"RHEM II SE: The Cave": files: - /AppData/LocalLow/Adobe/Director 12/RhemIISE: + "/AppData/LocalLow/Adobe/Director 12/RhemIISE": tags: - save when: @@ -420217,21 +421385,21 @@ RHCs StretchingVr: installDir: RHEM II SE The Cave: {} launch: - /RhemIISE.exe: + "/RhemIISE.exe": - when: - os: windows store: steam steam: id: 929320 -'RHEM IV: The Golden Fragments SE': +"RHEM IV: The Golden Fragments SE": installDir: RHEM IV The Golden Fragments: {} launch: - /RHEM_IV_SE.app/Contents/MacOS/RHEM_IV_SE: + "/RHEM_IV_SE.app/Contents/MacOS/RHEM_IV_SE": - when: - os: mac store: steam - /RHEM_IV_SE.exe: + "/RHEM_IV_SE.exe": - when: - os: windows store: steam @@ -420239,7 +421407,7 @@ RHCs StretchingVr: id: 391510 RICO: files: - /AppData/LocalLow/Groundshatter/RICO/Saves: + "/AppData/LocalLow/Groundshatter/RICO/Saves": tags: - save when: @@ -420247,7 +421415,7 @@ RICO: installDir: RICO: {} launch: - /RICO.exe: + "/RICO.exe": - when: - os: windows store: steam @@ -420262,46 +421430,46 @@ RIP: installDir: RIP: {} launch: - /rip/rip.exe: + "/rip/rip.exe": - when: - store: steam - workingDir: /RIP + workingDir: "/RIP" steam: id: 2540 RIP (2019): installDir: RIP: {} launch: - /RIP.exe: + "/RIP.exe": - when: - bit: 64 os: windows store: steam steam: id: 923530 -'RIP 2: Strike Back': +"RIP 2: Strike Back": installDir: RIP 2 - Strike Back: {} launch: - /ripsb/rip.exe: + "/ripsb/rip.exe": - when: - store: steam - workingDir: /RIPSB + workingDir: "/RIPSB" steam: id: 2545 -'RIP 3: The Last Hero': +"RIP 3: The Last Hero": installDir: RIP 3 - The Last Hero: {} launch: - /rip3/rip3.exe: + "/rip3/rip3.exe": - when: - store: steam - workingDir: /RIP3 + workingDir: "/RIP3" steam: id: 2550 RITE: files: - /Cave: + "/Cave": tags: - save when: @@ -420309,11 +421477,11 @@ RITE: installDir: RITE: {} launch: - /RITE.exe: + "/RITE.exe": - when: - os: windows store: steam - /run.sh: + "/run.sh": - when: - os: linux store: steam @@ -420322,11 +421490,11 @@ RITE: RKN - Roskomnadzor Banned Internet: steam: id: 857340 -'RKN Block Me: Telegram': +"RKN Block Me: Telegram": installDir: RKN Block Me - Telegram: {} launch: - /RKN_Telegram.exe: + "/RKN_Telegram.exe": - when: - os: windows store: steam @@ -420335,11 +421503,11 @@ RKN - Roskomnadzor Banned Internet: RKN Simulator: steam: id: 857100 -'ROBOTIX: The Escape': +"ROBOTIX: The Escape": installDir: ROBOTIX The Escape: {} launch: - /Robotix/robotix.exe: + "/Robotix/robotix.exe": - when: - store: steam steam: @@ -420348,14 +421516,14 @@ ROCKETRON: installDir: ROCKETRON: {} launch: - /rocketron.exe: + "/rocketron.exe": - when: - store: steam steam: id: 1177640 ROCKETSROCKETSROCKETS: files: - /ROCKETSROCKETSROCKETS: + "/ROCKETSROCKETSROCKETS": tags: - config when: @@ -420363,20 +421531,20 @@ ROCKETSROCKETSROCKETS: installDir: ROCKETSROCKETSROCKETS: {} launch: - /Rockets.app: + "/Rockets.app": - when: - os: mac store: steam - /Rockets.exe: + "/Rockets.exe": - when: - os: windows store: steam - /Rockets.x86: + "/Rockets.x86": - when: - bit: 32 os: linux store: steam - /Rockets.x86_64: + "/Rockets.x86_64": - when: - bit: 64 os: linux @@ -420387,21 +421555,21 @@ ROD (2019): installDir: ROD: {} launch: - /ROD(Windows)/ROD.exe: + "/ROD(Windows)/ROD.exe": - when: - os: windows store: steam - /ROD(macOS).app/Contents/MacOS/ROD(macOS): + "/ROD(macOS).app/Contents/MacOS/ROD(macOS)": - when: - os: mac store: steam steam: id: 1123730 -'ROD: Revolt of Defense': +"ROD: Revolt of Defense": installDir: ROD Revolt Of Defense: {} launch: - /ROD.exe: + "/ROD.exe": - when: - os: windows store: steam @@ -420409,7 +421577,7 @@ ROD (2019): id: 508600 ROG CITADEL XV: files: - /AppData/LocalLow/Moonshine/ROG CITADEL XV: + "/AppData/LocalLow/Moonshine/ROG CITADEL XV": tags: - save when: @@ -420417,8 +421585,8 @@ ROG CITADEL XV: installDir: ROG CITADEL XV: {} launch: - /ROG CITADEL XV.exe: - - arguments: '-single-instance' + "/ROG CITADEL XV.exe": + - arguments: "-single-instance" when: - os: windows store: steam @@ -420432,7 +421600,7 @@ ROGO: installDir: ROGO: {} launch: - /ROGO.exe: + "/ROGO.exe": - when: - os: windows store: steam @@ -420442,7 +421610,7 @@ ROGUS - Kingdom of The Lost Souls: installDir: ROGUS - Kingdom of The Lost Souls: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -420452,11 +421620,11 @@ ROKH: installDir: Rokh: {} launch: - /WindowsClient/RokhClient.exe: + "/WindowsClient/RokhClient.exe": - when: - os: windows store: steam - - arguments: '-NOSTEAM' + - arguments: "-NOSTEAM" when: - os: windows store: steam @@ -420466,17 +421634,17 @@ ROLL!: installDir: ROLL!: {} launch: - /ROLL!.exe: + "/ROLL!.exe": - when: - os: windows store: steam - /ROLL!.x86: + "/ROLL!.x86": - when: - os: linux store: steam steam: id: 938280 -'ROM: Extraction': +"ROM: Extraction": installDir: ROM: {} steam: @@ -420485,7 +421653,7 @@ ROS: installDir: ROS: {} launch: - /ROS.exe: + "/ROS.exe": - when: - os: windows store: steam @@ -420495,11 +421663,11 @@ ROTii: installDir: ROTii: {} launch: - /ROTii.exe: + "/ROTii.exe": - when: - os: windows store: steam - /ROTiiMAC.app: + "/ROTiiMAC.app": - when: - os: mac store: steam @@ -420512,7 +421680,7 @@ ROt 2: installDir: rOt 2: {} launch: - /rOt 2.exe: + "/rOt 2.exe": - when: - os: windows store: steam @@ -420522,7 +421690,7 @@ ROt 3D: installDir: rOt 3D: {} launch: - /rOt 3D.exe: + "/rOt 3D.exe": - when: - os: windows store: steam @@ -420530,7 +421698,7 @@ ROt 3D: id: 1086220 RPCS3: files: - /dev_hdd0/home: + "/dev_hdd0/home": tags: - save when: @@ -420539,7 +421707,7 @@ RPG Adventures: installDir: Deadly Station: {} launch: - /Launcher.exe: + "/Launcher.exe": - when: - os: windows store: steam @@ -420552,8 +421720,8 @@ RPG Fighter League: installDir: RPG Fighter League: {} launch: - /nw.exe: - - arguments: '--in-process-gpu' + "/nw.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam @@ -420563,15 +421731,15 @@ RPG MO: installDir: RPG MO: {} launch: - /RPG MO.app: + "/RPG MO.app": - when: - os: mac store: steam - /nw: + "/nw": - when: - os: linux store: steam - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -420591,11 +421759,11 @@ RPG Tycoon: installDir: RPG Tycoon: {} launch: - /RPGTycoon.app: + "/RPGTycoon.app": - when: - os: mac store: steam - /RPGTycoon/RPGTycoon.exe: + "/RPGTycoon/RPGTycoon.exe": - when: - os: windows store: steam @@ -420605,11 +421773,11 @@ RPGolf: installDir: RPGolf: {} launch: - /RPGolf.app/Contents/MacOS/RPGolf: + "/RPGolf.app/Contents/MacOS/RPGolf": - when: - os: mac store: steam - /RPGolf.exe: + "/RPGolf.exe": - when: - os: windows store: steam @@ -420619,7 +421787,7 @@ RPS Runner: installDir: RPS Runner: {} launch: - /RPS Runner.exe: + "/RPS Runner.exe": - when: - os: windows store: steam @@ -420644,7 +421812,7 @@ RTAG rise: installDir: RTAG rise: {} launch: - /RTAGrise.exe: + "/RTAGrise.exe": - when: - os: windows store: steam @@ -420654,7 +421822,7 @@ RTL Biathlon 2009: installDir: Wintergames: {} launch: - /applauncher.exe: + "/applauncher.exe": - when: - os: windows store: steam @@ -420664,17 +421832,17 @@ RTL Ski Jumping 2007: installDir: Wintergames: {} launch: - /applauncher.exe: + "/applauncher.exe": - when: - os: windows store: steam steam: id: 374090 -'RTS Commander: Smash the Rebels': +"RTS Commander: Smash the Rebels": installDir: Smash The Rebels: {} launch: - /SmashTheRebels.exe: + "/SmashTheRebels.exe": - when: - os: windows store: steam @@ -420684,18 +421852,18 @@ RUINS Survival: installDir: RUINS Survival: {} launch: - /RuinsSurvival.exe: + "/RuinsSurvival.exe": - when: - bit: 64 os: windows store: steam steam: id: 985720 -RUMP! - It's a Jump and Rump!: +"RUMP! - It's a Jump and Rump!": installDir: RUMP: {} launch: - /RumpC.exe: + "/RumpC.exe": - when: - os: windows store: steam @@ -420710,17 +421878,17 @@ RUN HARE RUN: installDir: RUN HARE RUN: {} launch: - /Run Harae Run.exe: + "/Run Harae Run.exe": - when: - os: windows store: steam steam: id: 1212870 -'RUNNER HEROES: The curse of night and day': +"RUNNER HEROES: The curse of night and day": installDir: Runner Heroes: {} launch: - /RunnerHeroes.exe: + "/RunnerHeroes.exe": - when: - os: windows store: steam @@ -420730,7 +421898,7 @@ RUNRUNRUN: installDir: RUNRUNRUN: {} launch: - /nw.exe: + "/nw.exe": - when: - bit: 64 os: windows @@ -420741,15 +421909,15 @@ RWBY Deckbuilding Game: installDir: RWBY Deck Builder: {} launch: - /rwby.exe: + "/rwby.exe": - when: - os: windows store: steam steam: id: 1017080 -'RWBY: Arrowfell': +"RWBY: Arrowfell": files: - /AppData/LocalLow/WayForward Technologies/RWBY_ Arrowfell/_savedata/savefile: + "/AppData/LocalLow/WayForward Technologies/RWBY_ Arrowfell/_savedata/savefile": tags: - save when: @@ -420757,16 +421925,16 @@ RWBY Deckbuilding Game: installDir: RWBY Arrowfell: {} launch: - /RWBY_x64.exe: + "/RWBY_x64.exe": - when: - bit: 64 os: windows store: steam steam: id: 1982150 -'RWBY: Grimm Eclipse': +"RWBY: Grimm Eclipse": files: - /userdata//418340/remote/RWBY.SteamCloud/Profile.json: + "/userdata//418340/remote/RWBY.SteamCloud/Profile.json": tags: - save when: @@ -420774,16 +421942,16 @@ RWBY Deckbuilding Game: installDir: RWBY_GE: {} launch: - /rwby-ge.app: + "/rwby-ge.app": - when: - os: mac store: steam - /rwby-ge.exe: + "/rwby-ge.exe": - when: - os: windows store: steam registry: - 'HKEY_CURRENT_USER/Software/Rooster Teeth Productions LLC/RWBY: Grimm Eclipse': + "HKEY_CURRENT_USER/Software/Rooster Teeth Productions LLC/RWBY: Grimm Eclipse": tags: - config steam: @@ -420792,12 +421960,12 @@ RX Squad: installDir: RX squad: {} launch: - /rx squad.exe: + "/rx squad.exe": - when: - bit: 64 os: windows store: steam - /rx.exe: + "/rx.exe": - when: - bit: 32 os: windows @@ -420808,15 +421976,15 @@ RXE: installDir: RXE: {} launch: - /RXE.app/Contents/MacOS/RXE: + "/RXE.app/Contents/MacOS/RXE": - when: - os: mac store: steam - /RXE.exe: + "/RXE.exe": - when: - os: windows store: steam - /RXE.x86: + "/RXE.x86": - when: - os: linux store: steam @@ -420824,7 +421992,7 @@ RXE: id: 654940 RYB: files: - /RYB: + "/RYB": tags: - save when: @@ -420832,28 +422000,28 @@ RYB: installDir: RYB: {} launch: - /RYB: + "/RYB": - when: - os: linux store: steam - /RYB.app/Contents/MacOS/RYB: + "/RYB.app/Contents/MacOS/RYB": - when: - os: mac store: steam - /RYB.exe: + "/RYB.exe": - when: - os: windows store: steam steam: id: 547050 -'RaKoval~Nya: Escape Edition': +"RaKoval~Nya: Escape Edition": steam: id: 859070 Raatihuone: installDir: Raatihuone: {} launch: - /TarinatPeliin.exe: + "/TarinatPeliin.exe": - when: - bit: 64 os: windows @@ -420862,7 +422030,7 @@ Raatihuone: id: 1045130 Rabbids Big Bang: files: - /Packages/UbisoftEntertainment.RabbidsBigBang_dbgk1hhpxymar: + "/Packages/UbisoftEntertainment.RabbidsBigBang_dbgk1hhpxymar": tags: - config - save @@ -420870,7 +422038,7 @@ Rabbids Big Bang: - os: windows Rabbids Coding!: files: - /savegames//5408: + "/savegames//5408": tags: - save when: @@ -420882,7 +422050,7 @@ Rabbids Coding!: - config Rabbids Go Home: files: - /Ubisoft/RGH Launcher/1.0.0.0/Launcher_#.exe.config: + "/Ubisoft/RGH Launcher/1.0.0.0/Launcher_#.exe.config": tags: - config when: @@ -420891,7 +422059,7 @@ RabbiruN: installDir: Rabbirun: {} launch: - /Rabbirun.exe: + "/Rabbirun.exe": - when: - store: steam steam: @@ -420905,26 +422073,26 @@ Rabbit Burn: installDir: Rabbit Burn: {} launch: - /Rabbit Burn.exe: + "/Rabbit Burn.exe": - when: - store: steam steam: id: 991600 Rabbit Foot!: files: - /Rabbit Foot!.ini: + "/Rabbit Foot!.ini": tags: - config when: - os: windows - /_memory1.actsave: + "/_memory1.actsave": tags: - save when: - os: windows Rabbit Hole 3D: files: - /mainResources.dat: + "/mainResources.dat": tags: - save when: @@ -420932,21 +422100,21 @@ Rabbit Hole 3D: installDir: RabbitHole3D: {} launch: - /RabbitHole3DForLinux.x86: + "/RabbitHole3DForLinux.x86": - when: - bit: 32 os: linux store: steam - /RabbitHole3DForLinux.x86_64: + "/RabbitHole3DForLinux.x86_64": - when: - bit: 64 os: linux store: steam - /RabbitHole3DForPC.exe: + "/RabbitHole3DForPC.exe": - when: - os: windows store: steam - /RabbitHole3DMacSteam.app: + "/RabbitHole3DMacSteam.app": - when: - os: mac store: steam @@ -420960,11 +422128,11 @@ Rabbit Island: installDir: Rabbit Island: {} launch: - /Rabbit Island.exe: + "/Rabbit Island.exe": - when: - os: windows store: steam - /RabbitIsland.app/Contents/MacOS/RabbitIsland: + "/RabbitIsland.app/Contents/MacOS/RabbitIsland": - when: - os: mac store: steam @@ -420974,12 +422142,12 @@ Rabbit Story: installDir: Rabbit Story: {} launch: - /RabbitStory.app/Contents/MacOS/RabbitStory: + "/RabbitStory.app/Contents/MacOS/RabbitStory": - when: - bit: 64 os: mac store: steam - /RabbitStory.exe: + "/RabbitStory.exe": - when: - bit: 32 os: windows @@ -420995,7 +422163,7 @@ Rabbit and the moon: installDir: RabbitAndTheMoon: {} launch: - /Rabbitandthemoon.exe: + "/Rabbitandthemoon.exe": - when: - store: steam steam: @@ -421004,20 +422172,20 @@ Rabbit of Destiny: installDir: Rabbit of destiny: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam steam: id: 926410 -'Rabbit: Jigsaw Puzzles': +"Rabbit: Jigsaw Puzzles": installDir: Rabbit Jigsaw Puzzles: {} steam: id: 833470 Rabi-Ribi: files: - /save: + "/save": tags: - config - save @@ -421026,37 +422194,37 @@ Rabi-Ribi: installDir: Rabi-Ribi: {} launch: - /rabiribi.exe: + "/rabiribi.exe": - when: - store: steam - - arguments: '-safemode' + - arguments: "-safemode" when: - store: steam - - arguments: '-nopreload' + - arguments: "-nopreload" when: - store: steam - - arguments: '-softsound' + - arguments: "-softsound" when: - store: steam - - arguments: '-nofpslimit' + - arguments: "-nofpslimit" when: - store: steam - - arguments: '-fullload' + - arguments: "-fullload" when: - store: steam - - arguments: '-monitor2' + - arguments: "-monitor2" when: - store: steam steam: id: 400910 -'Rabiez: Epidemic': +"Rabiez: Epidemic": files: - /config.ini: + "/config.ini": tags: - config when: - os: windows - /userdata//448630/remote/safe_update_levels_status.txt: + "/userdata//448630/remote/safe_update_levels_status.txt": tags: - save when: @@ -421064,7 +422232,7 @@ Rabi-Ribi: installDir: Rabiez Epidemic: {} launch: - /config.exe: + "/config.exe": - when: - store: steam steam: @@ -421073,7 +422241,7 @@ Rabisco: installDir: Rabisco: {} launch: - /Rabisco.exe: + "/Rabisco.exe": - when: - os: windows store: steam @@ -421083,7 +422251,7 @@ Raccoo Venture: installDir: Raccoo Venture: {} launch: - /RaccooVenture.exe: + "/RaccooVenture.exe": - when: - os: windows store: steam @@ -421092,32 +422260,32 @@ Raccoo Venture: Raccoon Hero: steam: id: 678810 -'Raccoon Hero: Among The Cacti': +"Raccoon Hero: Among The Cacti": steam: id: 680060 -'Raccoon Hero: Monkey Business': +"Raccoon Hero: Monkey Business": steam: id: 680080 -'Raccoon Hero: Starlight': +"Raccoon Hero: Starlight": steam: id: 680050 -'Raccoon Hero: The Frost': +"Raccoon Hero: The Frost": steam: id: 680000 -'Raccoon Hero: The Marsh': +"Raccoon Hero: The Marsh": steam: id: 679360 -'Raccoon Hero: The Sunrise': +"Raccoon Hero: The Sunrise": steam: id: 679170 -'Raccoon Hero: Under The Sea': +"Raccoon Hero: Under The Sea": steam: id: 679330 -'Raccoon: The Orc Invasion': +"Raccoon: The Orc Invasion": installDir: Raccoon The Orc Invasion: {} launch: - /Raccoon The Orc Invasion.exe: + "/Raccoon The Orc Invasion.exe": - when: - os: windows store: steam @@ -421127,7 +422295,7 @@ Race: installDir: Race: {} launch: - /Race.exe: + "/Race.exe": - when: - store: steam steam: @@ -421136,7 +422304,7 @@ Race & Destroy: installDir: Race & Destroy: {} launch: - /Race&Destroy.exe: + "/Race&Destroy.exe": - when: - os: windows store: steam @@ -421146,28 +422314,28 @@ Race Arcade: installDir: Race Online: {} launch: - /RaceOnline.app: + "/RaceOnline.app": - when: - os: mac store: steam - /RaceOnline.exe: + "/RaceOnline.exe": - when: - os: windows store: steam - /RaceOnline.x86: + "/RaceOnline.x86": - when: - os: linux store: steam steam: id: 355010 -'Race Driver: Grid': +"Race Driver: Grid": files: - /Codemasters/GRID/hardwaresettings: + "/Codemasters/GRID/hardwaresettings": tags: - config when: - os: windows - /Codemasters/GRID/savegame: + "/Codemasters/GRID/savegame": tags: - save when: @@ -421177,7 +422345,7 @@ Race Arcade: installDir: Grid: {} launch: - /grid.exe: + "/grid.exe": - when: - store: steam steam: @@ -421186,25 +422354,25 @@ Race Race Racer: installDir: Race Race Racer: {} launch: - /Linux.x86: + "/Linux.x86": - when: - os: linux store: steam - /Linux.x86_64: + "/Linux.x86_64": - when: - bit: 64 os: linux store: steam - /Windows x86-64/game.exe: + "/Windows x86-64/game.exe": - when: - os: windows store: steam - /Windows x86/game.exe: - - arguments: '-windowed' + "/Windows x86/game.exe": + - arguments: "-windowed" when: - os: windows store: steam - /macbuild.app/Contents/MacOS/game: + "/macbuild.app/Contents/MacOS/game": - when: - os: mac store: steam @@ -421214,25 +422382,28 @@ Race for Tuning: installDir: Race for Tuning: {} launch: - /rft.exe: + "/rft.exe": - when: - bit: 32 os: windows store: steam + - bit: 64 + os: windows + store: steam steam: id: 1019940 Race for the Galaxy: installDir: Race for the Galaxy: {} launch: - /Race.exe: + "/Race.exe": - when: - store: steam steam: id: 579940 Race the Sun: files: - /.config/unity3d/Flippfly/RaceTheSun: + "/.config/unity3d/Flippfly/RaceTheSun": tags: - config - save @@ -421243,15 +422414,15 @@ Race the Sun: installDir: RaceTheSun: {} launch: - /RaceTheSun.app: + "/RaceTheSun.app": - when: - os: mac store: steam - /RaceTheSun.exe: + "/RaceTheSun.exe": - when: - os: windows store: steam - /launch_linux.sh: + "/launch_linux.sh": - when: - os: linux store: steam @@ -421264,13 +422435,13 @@ Race the Sun: id: 253030 Race to Mars: files: - /AppData/LocalLow/Intermarum/RaceToMars: + "/AppData/LocalLow/Intermarum/RaceToMars": tags: - config - save when: - os: windows - /unity3d/Intermarum/RaceToMars: + "/unity3d/Intermarum/RaceToMars": tags: - config - save @@ -421279,15 +422450,15 @@ Race to Mars: installDir: Race To Mars: {} launch: - /RTM.app: + "/RTM.app": - when: - os: mac store: steam - /RTM.exe: + "/RTM.exe": - when: - os: windows store: steam - /RTM.x86: + "/RTM.x86": - when: - os: linux store: steam @@ -421297,19 +422468,22 @@ Race with Ryan: installDir: Race With Ryan: {} launch: - /RaceWithRyan.exe: + "/RaceWithRyan.exe": - when: - bit: 64 os: windows store: steam steam: id: 1054990 -Race! Make 'm finish...: +"Race! Make 'm finish...": installDir: - Race! Make 'm finish: {} + "Race! Make 'm finish": {} launch: - /Race! Make 'm finish.exe: + "/Race! Make 'm finish.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam @@ -421319,15 +422493,15 @@ Race.a.bit: installDir: Race.a.bit: {} launch: - /raceabit.app: + "/raceabit.app": - when: - os: mac store: steam - /raceabit.exe: + "/raceabit.exe": - when: - os: windows store: steam - /raceabit.x86_64: + "/raceabit.x86_64": - when: - os: linux store: steam @@ -421335,22 +422509,22 @@ Race.a.bit: id: 336030 RaceRoom Racing Experience: files: - /My Games/SimBin/RaceRoom Racing Experience/UserData: + "/My Games/SimBin/RaceRoom Racing Experience/UserData": tags: - config when: - os: windows id: steamExtra: + - 272770 + - 331800 + - 332120 + - 336270 + - 376360 + - 408220 + - 422670 - 455270 - 455280 - - 422670 - - 408220 - - 332120 - - 376360 - - 336270 - - 331800 - - 272770 installDir: raceroom racing experience: {} steam: @@ -421359,7 +422533,7 @@ RaceXXL Space: installDir: RaceXXL Space: {} launch: - /LL.exe: + "/LL.exe": - when: - os: windows store: steam @@ -421369,11 +422543,11 @@ Racecar.io: installDir: Racecar.io: {} launch: - /Racecar.io.app/Contents/MacOS/Racecar.io: + "/Racecar.io.app/Contents/MacOS/Racecar.io": - when: - os: mac store: steam - /Racecar.io.exe: + "/Racecar.io.exe": - when: - os: windows store: steam @@ -421383,7 +422557,7 @@ Racecraft: installDir: RaceCraft: {} launch: - /Racecraft.exe: + "/Racecraft.exe": - when: - os: windows store: steam @@ -421393,7 +422567,7 @@ Raceland: installDir: Raceland: {} launch: - /Raceland/Raceland.exe: + "/Raceland/Raceland.exe": - when: - os: windows store: steam @@ -421403,11 +422577,11 @@ Racer 8: installDir: Racer 8: {} launch: - /Racer8.app: + "/Racer8.app": - when: - os: mac store: steam - /Racer8.exe: + "/Racer8.exe": - when: - os: windows store: steam @@ -421422,7 +422596,7 @@ Racer Simulator: installDir: ProjectSpeed: {} launch: - /Content/Data/ProjectSpeed.exe: + "/Content/Data/ProjectSpeed.exe": - when: - bit: 64 os: windows @@ -421438,36 +422612,36 @@ Racing Bike Fight: installDir: Racing Bike Fight: {} launch: - /RacingBikeFight.app/Contents/MacOS/RacingBikeFight: + "/RacingBikeFight.app/Contents/MacOS/RacingBikeFight": - when: - os: mac store: steam - /RacingBikeFight.x86: + "/RacingBikeFight.x86": - when: - bit: 32 os: linux store: steam - /RacingBikeFight.x86_64: + "/RacingBikeFight.x86_64": - when: - bit: 64 os: linux store: steam - /Windows_x86/RacingBikeFight.exe: + "/Windows_x86/RacingBikeFight.exe": - when: - bit: 32 os: windows store: steam steam: id: 1220080 -'Racing Classics: Drag Race Simulator': +"Racing Classics: Drag Race Simulator": installDir: Racing Classics: {} launch: - /Racing Classics.app: + "/Racing Classics.app": - when: - os: mac store: steam - /Racing Classics.exe: + "/Racing Classics.exe": - when: - bit: 64 os: windows @@ -421481,7 +422655,7 @@ Racing Glider: installDir: Racing Glider: {} launch: - /bin/win_x64/RacingGlider.exe: + "/bin/win_x64/RacingGlider.exe": - when: - bit: 64 os: windows @@ -421492,11 +422666,11 @@ Racing Manager 2014: installDir: Racing Manager 2014: {} launch: - /RacingManager2014.app: + "/RacingManager2014.app": - when: - os: mac store: steam - /RacingManager2014.exe: + "/RacingManager2014.exe": - when: - os: windows store: steam @@ -421506,7 +422680,7 @@ Racing angle: installDir: Racing angle: {} launch: - /Racing angle.exe: + "/Racing angle.exe": - when: - os: windows store: steam @@ -421516,41 +422690,41 @@ Rack N Ruin: installDir: Rack N Ruin: {} launch: - /RackNRuin.app: + "/RackNRuin.app": - when: - os: mac store: steam - /RackNRuin.exe: + "/RackNRuin.exe": - when: - os: windows store: steam - /RackNRuin.x86: + "/RackNRuin.x86": - when: - os: linux store: steam steam: id: 378080 -'Racket Fury: Table Tennis VR': +"Racket Fury: Table Tennis VR": installDir: Racket Fury: {} steam: id: 555050 -'Racket: Nx': +"Racket: Nx": installDir: Racket: {} steam: id: 428080 -Rackham's Shambala Adventure: +"Rackham's Shambala Adventure": steam: id: 1066580 Rad: files: - /Engine/Config: + "/Engine/Config": tags: - config when: - os: windows - /RAD/Saved/SaveGames: + "/RAD/Saved/SaveGames": tags: - save when: @@ -421558,20 +422732,20 @@ Rad: installDir: RAD: {} launch: - /Mutant.exe: - - arguments: '-NoScreenMessages -SaveToUserDir' + "/Mutant.exe": + - arguments: "-NoScreenMessages -SaveToUserDir" when: - store: steam steam: id: 722560 -'Rad Rodgers: Radical Edition': +"Rad Rodgers: Radical Edition": files: - /Rad/Saved/Config/WindowsNoEditor: + "/Rad/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /Rad/Saved/SaveGames: + "/Rad/Saved/SaveGames": tags: - save when: @@ -421581,20 +422755,20 @@ Rad: installDir: Rad Rodgers: {} launch: - /Rad.exe: + "/Rad.exe": - when: - os: windows store: steam steam: id: 805660 -'Rad Rodgers: World One': +"Rad Rodgers: World One": files: - /Rad/Saved/Config/WindowsNoEditor: + "/Rad/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /Rad/Saved/SaveGames: + "/Rad/Saved/SaveGames": tags: - save when: @@ -421604,7 +422778,7 @@ Rad: installDir: RadRodgers: {} launch: - /Rad.exe: + "/Rad.exe": - when: - os: windows store: steam @@ -421614,20 +422788,20 @@ Radar Defense: installDir: RadarDefense: {} launch: - /Radar Defense.exe: + "/Radar Defense.exe": - when: - os: windows store: steam - /RadarDefense.app/Contents/MacOS/RadarDefense: + "/RadarDefense.app/Contents/MacOS/RadarDefense": - when: - os: mac store: steam - /Radar_Defense.x86: + "/Radar_Defense.x86": - when: - bit: 32 os: linux store: steam - /Radar_Defense.x86_64: + "/Radar_Defense.x86_64": - when: - bit: 64 os: linux @@ -421638,20 +422812,20 @@ Radar Warfare: installDir: Radar Warfare: {} launch: - /radar_warfare.app: + "/radar_warfare.app": - when: - os: mac store: steam - /radar_warfare.exe: + "/radar_warfare.exe": - when: - os: windows store: steam - /radar_warfare.x86: + "/radar_warfare.x86": - when: - bit: 32 os: linux store: steam - /radar_warfare.x86_64: + "/radar_warfare.x86_64": - when: - bit: 64 os: linux @@ -421662,17 +422836,17 @@ Radial Impact: installDir: Radial Impact: {} launch: - /RadialImpact.exe: + "/RadialImpact.exe": - when: - os: windows store: steam steam: id: 387890 -'Radial-G: Racing Revolved': +"Radial-G: Racing Revolved": installDir: Radial-G Racing Revolved: {} launch: - /Radial-G.exe: + "/Radial-G.exe": - when: - os: windows store: steam @@ -421687,8 +422861,8 @@ Radiant Arc: installDir: Radiant Arc: {} launch: - /windows_content/Radiant Arc.exe: - - arguments: '--in-process-gpu' + "/windows_content/Radiant Arc.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam @@ -421698,8 +422872,8 @@ Radiant Crusade: installDir: Radiant Crusade: {} launch: - /RadiantCrusade.exe: - - arguments: '-vrmode none' + "/RadiantCrusade.exe": + - arguments: "-vrmode none" when: - os: windows store: steam @@ -421709,7 +422883,7 @@ Radiant Defense: installDir: RadiantDefense: {} launch: - /RadiantDefense.exe: + "/RadiantDefense.exe": - when: - store: steam steam: @@ -421718,7 +422892,7 @@ Radiant Melodia: installDir: Radiant Melodia: {} launch: - /Radiant Melodia x86.exe: + "/Radiant Melodia x86.exe": - when: - os: windows store: steam @@ -421728,11 +422902,11 @@ Radiant One: installDir: RadiantOne: {} launch: - /RadiantOne.app/Contents/MacOS/RadiantOne: + "/RadiantOne.app/Contents/MacOS/RadiantOne": - when: - os: mac store: steam - /RadiantOne.exe: + "/RadiantOne.exe": - when: - os: windows store: steam @@ -421740,12 +422914,12 @@ Radiant One: id: 864550 Radiant Silvergun: files: - /RS.ini: + "/RS.ini": tags: - config when: - os: windows - /userdata//2450820/remote/rs_system.bin: + "/userdata//2450820/remote/rs_system.bin": tags: - save when: @@ -421757,7 +422931,7 @@ Radiation Island: installDir: RadiationIsland: {} launch: - /win32/RadiationIsland.exe: + "/win32/RadiationIsland.exe": - when: - os: windows store: steam @@ -421767,16 +422941,16 @@ Radiator 2: installDir: Radiator 2: {} launch: - /radiator2_steam_linux.x64: + "/radiator2_steam_linux.x64": - when: - bit: 64 os: linux store: steam - /radiator2_steam_mac-osx.app: + "/radiator2_steam_mac-osx.app": - when: - os: mac store: steam - /radiator2_steam_windows.exe: + "/radiator2_steam_windows.exe": - when: - os: windows store: steam @@ -421786,7 +422960,7 @@ Radical Dungeon Sweeper: installDir: Radical Dungeon Sweeper: {} launch: - /RadicalDungeonSweeper.exe: + "/RadicalDungeonSweeper.exe": - when: - store: steam steam: @@ -421795,7 +422969,7 @@ Radical Gear: installDir: Radical Gear: {} launch: - /RadicalGear.exe: + "/RadicalGear.exe": - when: - os: windows store: steam @@ -421803,7 +422977,7 @@ Radical Gear: id: 1118690 Radical Heights: files: - /RadicalHeights/Saved/Config/WindowsClient: + "/RadicalHeights/Saved/Config/WindowsClient": tags: - config when: @@ -421811,18 +422985,18 @@ Radical Heights: installDir: RNR: {} launch: - /ShooterGame/Binaries/Win64/RadicalHeights.exe: + "/ShooterGame/Binaries/Win64/RadicalHeights.exe": - when: - bit: 64 os: windows store: steam steam: id: 809960 -'Radical Heroes: Crimson City Crisis': +"Radical Heroes: Crimson City Crisis": installDir: Radical Heroes Crimson City Crisis: {} launch: - /RadicalHeroes.exe: + "/RadicalHeroes.exe": - when: - os: windows store: steam @@ -421834,7 +423008,7 @@ Radical Relocation: installDir: Radical Relocation: {} launch: - /Radical Relocation.exe: + "/Radical Relocation.exe": - when: - os: windows store: steam @@ -421846,35 +423020,35 @@ Radical Rex: installDir: Radical Rex: {} launch: - /radical rex.exe: + "/radical rex.exe": - when: - os: windows store: steam steam: id: 1028490 -'Radical Spectrum: Volume 1': +"Radical Spectrum: Volume 1": installDir: Radical Spectrum Volume 1: {} launch: - /AlienInvasiondesktop5.exe: + "/AlienInvasiondesktop5.exe": - when: - os: windows store: steam - /RadicalSpectrumMac.app: + "/RadicalSpectrumMac.app": - when: - os: mac store: steam steam: id: 486150 -'Radical Spectrum: Volume 2': +"Radical Spectrum: Volume 2": installDir: Radical Spectrum Volume 2: {} launch: - /Alien2Invasion5.exe: + "/Alien2Invasion5.exe": - when: - os: windows store: steam - /RadicalSpectrumII.app: + "/RadicalSpectrumII.app": - when: - os: mac store: steam @@ -421884,20 +423058,20 @@ Radiis: installDir: Radiis: {} launch: - /Radiis.app/Contents/MacOS/Radiis: + "/Radiis.app/Contents/MacOS/Radiis": - when: - os: mac store: steam - /Radiis.exe: + "/Radiis.exe": - when: - os: windows store: steam - /Radiis.x86: + "/Radiis.x86": - when: - bit: 32 os: linux store: steam - /Radiis.x86_64: + "/Radiis.x86_64": - when: - bit: 64 os: linux @@ -421906,7 +423080,7 @@ Radiis: id: 810640 Radio Commander: files: - /AppData/LocalLow/Serious Sim/Radio Commander: + "/AppData/LocalLow/Serious Sim/Radio Commander": tags: - save when: @@ -421916,15 +423090,15 @@ Radio Commander: installDir: Radio Commander: {} launch: - /RC.exe: + "/RC.exe": - when: - os: windows store: steam - /RC.x86_64: + "/RC.x86_64": - when: - os: linux store: steam - /RadioCommander.app/Contents/MacOS/RadioCommander: + "/RadioCommander.app/Contents/MacOS/RadioCommander": - when: - os: mac store: steam @@ -421936,7 +423110,7 @@ Radio Commander: id: 871530 Radio General: files: - /unity3d/Foolish Mortals/Radio General/Campaigns: + "/unity3d/Foolish Mortals/Radio General/Campaigns": tags: - save when: @@ -421944,16 +423118,16 @@ Radio General: installDir: Radio General: {} launch: - /RadioGeneral.app: + "/RadioGeneral.app": - when: - os: mac store: steam - /RadioGeneral.exe: + "/RadioGeneral.exe": - when: - bit: 64 os: windows store: steam - /RadioGeneral.x64: + "/RadioGeneral.x64": - when: - bit: 64 os: linux @@ -421964,7 +423138,7 @@ Radio Violence: installDir: Radio Violence: {} launch: - /Radio Violence.exe: + "/Radio Violence.exe": - when: - os: windows store: steam @@ -421976,13 +423150,13 @@ Radio the Universe: Radioactive: steam: id: 581090 -'Radioactive Dwarfs: Evil from the Sewers': +"Radioactive Dwarfs: Evil from the Sewers": gog: id: 1794445268 installDir: Radioactive dwarfs evil from the sewers: {} launch: - /Dwarfs.exe: + "/Dwarfs.exe": - when: - os: windows store: steam @@ -421995,7 +423169,7 @@ Radioactrive (2019): installDir: Radioactive: {} launch: - /Radioactive.exe: + "/Radioactive.exe": - when: - os: windows store: steam @@ -422008,30 +423182,30 @@ Radium: installDir: Radium: {} launch: - /Radium.app: + "/Radium.app": - when: - os: mac store: steam - /radium.exe: + "/radium.exe": - when: - os: windows store: steam - /run.sh: + "/run.sh": - when: - os: linux store: steam steam: id: 355410 -'Radline: Quarantine': +"Radline: Quarantine": installDir: Radline: {} launch: - /Radline.sh: + "/Radline.sh": - when: - bit: 64 os: linux store: steam - /Radline/Binaries/Win64/Radline.exe: + "/Radline/Binaries/Win64/Radline.exe": - when: - bit: 64 os: windows @@ -422040,12 +423214,12 @@ Radium: id: 592390 Raft: files: - /AppData/LocalLow/Redbeet Interactive/Raft/User//Player/Settings.rgd: + "/AppData/LocalLow/Redbeet Interactive/Raft/User//Player/Settings.rgd": tags: - config when: - os: windows - /AppData/LocalLow/Redbeet Interactive/Raft/User//World: + "/AppData/LocalLow/Redbeet Interactive/Raft/User//World": tags: - save when: @@ -422053,7 +423227,7 @@ Raft: installDir: Raft: {} launch: - /Raft.exe: + "/Raft.exe": - when: - bit: 64 os: windows @@ -422064,7 +423238,7 @@ Rag Doll Joe: installDir: Ragdolljoe: {} launch: - /RagdollJoe.exe: + "/RagdollJoe.exe": - when: - os: windows store: steam @@ -422072,7 +423246,7 @@ Rag Doll Joe: id: 802050 Rag Doll Kung Fu: files: - /data: + "/data": tags: - config when: @@ -422080,7 +423254,7 @@ Rag Doll Kung Fu: installDir: Rag Doll Kung Fu: {} launch: - /Rag_Doll_Kung_Fu_Steam.exe: + "/Rag_Doll_Kung_Fu_Steam.exe": - when: - store: steam steam: @@ -422089,7 +423263,7 @@ RagTag: installDir: Ragtag: {} launch: - /RagTag.exe: + "/RagTag.exe": - when: - os: windows store: steam @@ -422099,7 +423273,7 @@ Ragdoll Kanojo: installDir: RagdollKanojo: {} launch: - /desktop/WindowsNoEditor/RagdollKanojo_C.exe: + "/desktop/WindowsNoEditor/RagdollKanojo_C.exe": - when: - bit: 64 os: windows @@ -422110,7 +423284,7 @@ Ragdoll Runners: installDir: Ragdoll Runner: {} launch: - /RagdollRunners.exe: + "/RagdollRunners.exe": - when: - os: windows store: steam @@ -422120,11 +423294,11 @@ Rage Against The Zombies: installDir: Rage Against The Zombies: {} launch: - /RATZ.app/Contents/MacOS/RATZ: + "/RATZ.app/Contents/MacOS/RATZ": - when: - os: mac store: steam - /RATZ.exe: + "/RATZ.exe": - when: - os: windows store: steam @@ -422134,7 +423308,7 @@ Rage Among The Stars: installDir: Rage Among The Stars: {} launch: - /Square Hell.exe: + "/Square Hell.exe": - when: - os: windows store: steam @@ -422144,7 +423318,7 @@ Rage Melee: installDir: Rage Melee: {} launch: - /RageMelee.exe: + "/RageMelee.exe": - when: - bit: 64 os: windows @@ -422169,21 +423343,21 @@ Rage Quest: installDir: Rage Quest: {} launch: - /Rage Quest.app/Contents/MacOS/Rage Quest: + "/Rage Quest.app/Contents/MacOS/Rage Quest": - when: - os: mac store: steam - /Rage Quest.exe: + "/Rage Quest.exe": - when: - os: windows store: steam steam: id: 709290 -'Rage Quest: The Worst Game': +"Rage Quest: The Worst Game": installDir: RageQuest: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -422198,16 +423372,16 @@ Rage Runner: installDir: Rage Runner: {} launch: - /RageRunner-Mac.app: + "/RageRunner-Mac.app": - when: - os: mac store: steam - /RageRunner.exe: + "/RageRunner.exe": - arguments: aRageRunner.stk when: - os: windows store: steam - /rage.sh: + "/rage.sh": - when: - os: linux store: steam @@ -422217,20 +423391,20 @@ Rage Wars: installDir: Rage Wars: {} launch: - /RageWars.app: + "/RageWars.app": - when: - os: mac store: steam - /RageWars.exe: + "/RageWars.exe": - when: - os: windows store: steam - /RageWars.x86: + "/RageWars.x86": - when: - bit: 32 os: linux store: steam - /RageWars.x86_64: + "/RageWars.x86_64": - when: - bit: 64 os: linux @@ -422243,11 +423417,11 @@ Rage in Peace: installDir: Rage In Peace: {} launch: - /RageInPeace.app/Contents/MacOS/RageInPeace: + "/RageInPeace.app/Contents/MacOS/RageInPeace": - when: - os: mac store: steam - /RageInPeace.exe: + "/RageInPeace.exe": - when: - os: windows store: steam @@ -422257,15 +423431,15 @@ Rage of Car Force: installDir: Rage of Car Force: {} launch: - /CarForce.app: + "/CarForce.app": - when: - os: mac store: steam - /RageOfCarForce.exe: + "/RageOfCarForce.exe": - when: - os: windows store: steam - /RageOfCarForce.x86_64: + "/RageOfCarForce.x86_64": - when: - bit: 64 os: linux @@ -422275,19 +423449,19 @@ Rage of Car Force: Rage of Mages: gog: id: 1459856053 -'Rage of Mages 2: Necromancer': +"Rage of Mages 2: Necromancer": gog: id: 1459856152 Rage of the Battlemage: installDir: Rage of the Battlemage: {} launch: - /Rage of the Battlemage.app/Contents/MacOS/Rage of the Battlemage: + "/Rage of the Battlemage.app/Contents/MacOS/Rage of the Battlemage": - arguments: "\t" when: - os: mac store: steam - /Rage of the Battlemage.exe: + "/Rage of the Battlemage.exe": - when: - os: windows store: steam @@ -422297,7 +423471,7 @@ Rage of the Pumpkins: installDir: Rage of the Pumpkins: {} launch: - /RAGE OF THE PUMPKINS.exe: + "/RAGE OF THE PUMPKINS.exe": - when: - os: windows store: steam @@ -422307,7 +423481,7 @@ RageBall: installDir: RageBall: {} launch: - /RageBall 3.1.exe: + "/RageBall 3.1.exe": - when: - os: windows store: steam @@ -422317,11 +423491,11 @@ Raging Justice: installDir: Raging Justice: {} launch: - /RagingJustice.app/Contents/MacOS/RagingJustice: + "/RagingJustice.app/Contents/MacOS/RagingJustice": - when: - os: mac store: steam - /RagingJustice.exe: + "/RagingJustice.exe": - when: - os: windows store: steam @@ -422329,7 +423503,7 @@ Raging Justice: id: 384200 Raging Loop: files: - /AppData/LocalLow/kemco/レイジングループ: + "/AppData/LocalLow/kemco/レイジングループ": tags: - save when: @@ -422337,7 +423511,7 @@ Raging Loop: installDir: レイジングループ: {} launch: - /ragingloop.exe: + "/ragingloop.exe": - when: - os: windows store: steam @@ -422351,11 +423525,11 @@ Raging Titan: installDir: Raging Titan: {} launch: - /Raging Titan.app/Contents/MacOS/ReleaseBuild: + "/Raging Titan.app/Contents/MacOS/ReleaseBuild": - when: - os: mac store: steam - /RagingTitan.exe: + "/RagingTitan.exe": - when: - os: windows store: steam @@ -422365,7 +423539,7 @@ Ragna Maya: installDir: Ragna Maya: {} launch: - /Ragna Maya.exe: + "/Ragna Maya.exe": - when: - os: windows store: steam @@ -422375,11 +423549,11 @@ Ragnarok Clicker: installDir: Ragnarok Clicker Heroes: {} launch: - /Ragnarok Clicker.exe: + "/Ragnarok Clicker.exe": - when: - os: windows store: steam - /RagnarokClicker.app/Contents/MacOS/Ragnarok Clicker: + "/RagnarokClicker.app/Contents/MacOS/Ragnarok Clicker": - when: - os: mac store: steam @@ -422389,14 +423563,14 @@ Ragnarok Journey: installDir: Ragnarok Journey: {} launch: - /WPSteamLauncherWindows.exe: + "/WPSteamLauncherWindows.exe": - when: - store: steam steam: id: 625140 Ragnarok Online: files: - /savedata: + "/savedata": tags: - config when: @@ -422404,11 +423578,11 @@ Ragnarok Online: installDir: Ragnarok_Europe: {} launch: - /Registration.exe: + "/Registration.exe": - when: - os: windows store: steam - /Setup.exe: + "/Setup.exe": - when: - store: steam steam: @@ -422417,17 +423591,17 @@ Ragnarok Online 2: installDir: Ragnarok Online 2: {} launch: - /WPLauncher.exe: + "/WPLauncher.exe": - when: - os: windows store: steam steam: id: 231060 -'Ragnarok RE:START': +"Ragnarok RE:START": installDir: Ragnarok ReStart: {} launch: - /WPLauncher.exe: + "/WPLauncher.exe": - when: - os: windows store: steam @@ -422437,8 +423611,8 @@ Ragtag Adventurers: installDir: Ragtag Adventurers: {} launch: - /Arkham.exe: - - arguments: '-nohmd' + "/Arkham.exe": + - arguments: "-nohmd" when: - os: windows store: steam @@ -422447,11 +423621,11 @@ Ragtag Adventurers: Ragtag Crew: steam: id: 882590 -'RaiOhGar: Asuka and the King of Steel': +"RaiOhGar: Asuka and the King of Steel": installDir: RaiOhGar Asuka and the King of Steel: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: @@ -422460,11 +423634,14 @@ Raid On Coasts: installDir: Raid On Coasts: {} launch: - /nw.exe: + "/nw.exe": - when: - bit: 32 os: windows store: steam + - bit: 64 + os: windows + store: steam steam: id: 668830 Raid of Regions: @@ -422474,7 +423651,7 @@ Raid on Area 51: installDir: Raid on Area 51: {} launch: - /WindowsNoEditor/RaidonArea51v2.exe: + "/WindowsNoEditor/RaidonArea51v2.exe": - when: - os: windows store: steam @@ -422484,16 +423661,16 @@ Raid on the Ruhr: installDir: Raid on the Ruhr: {} launch: - /RaidOnTheRuhr.exe: + "/RaidOnTheRuhr.exe": - when: - bit: 64 os: windows store: steam steam: id: 986340 -'Raid: Shadow Legends': +"Raid: Shadow Legends": registry: - 'HKEY_CURRENT_USER/Software/Plarium/Raid: Shadow Legends': + "HKEY_CURRENT_USER/Software/Plarium/Raid: Shadow Legends": tags: - config Raiden II: @@ -422504,12 +423681,12 @@ Raiden II: - save Raiden III Digital Edition: files: - /hiscore.dat: + "/hiscore.dat": tags: - save when: - os: windows - /settings.dat: + "/settings.dat": tags: - config when: @@ -422519,11 +423696,11 @@ Raiden III Digital Edition: installDir: Raiden 3 Digital Edition: {} launch: - /Config.exe: + "/Config.exe": - when: - os: windows store: steam - /Raiden3.exe: + "/Raiden3.exe": - when: - os: windows store: steam @@ -422533,35 +423710,35 @@ Raiden III x MIKADO MANIAX: installDir: Raiden III x MIKADO MANIAX: {} launch: - /Raiden III x MIKADO MANIAX/Raiden3.exe: + "/Raiden III x MIKADO MANIAX/Raiden3.exe": - when: - os: windows store: steam - workingDir: /Raiden III x MIKADO MANIAX - - arguments: 'VKD3D_DISABLE_EXTENSIONS=VK_KHR_present_id,VK_KHR_present_wait %command%' + workingDir: "/Raiden III x MIKADO MANIAX" + - arguments: "VKD3D_DISABLE_EXTENSIONS=VK_KHR_present_id,VK_KHR_present_wait %command%" when: - os: linux store: steam - workingDir: /Raiden III x MIKADO MANIAX + workingDir: "/Raiden III x MIKADO MANIAX" steam: id: 2002860 Raiden IV x MIKADO remix: installDir: Raiden IV x MIKADO remix: {} launch: - /RaidenIVx.exe: + "/RaidenIVx.exe": - when: - store: steam steam: id: 2002850 -'Raiden IV: OverKill': +"Raiden IV: OverKill": files: - /Raiden IV - OverKill/Save/raiden_setting.bin: + "/Raiden IV - OverKill/Save/raiden_setting.bin": tags: - save when: - os: windows - /Raiden IV - OverKill/Save/setting.dat: + "/Raiden IV - OverKill/Save/setting.dat": tags: - config when: @@ -422571,19 +423748,19 @@ Raiden IV x MIKADO remix: installDir: Raiden IV OverKill: {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: id: 323460 Raiden Legacy: files: - /raidenlegacy: + "/raidenlegacy": tags: - save when: - os: windows - /raidenlegacy/UserDefault.xml: + "/raidenlegacy/UserDefault.xml": tags: - config when: @@ -422593,18 +423770,18 @@ Raiden Legacy: installDir: Raiden Legacy: {} launch: - /raidenlegacy.exe: + "/raidenlegacy.exe": - when: - store: steam steam: id: 407600 -'Raiden V: Director''s Cut': +"Raiden V: Director's Cut": gog: id: 1462576795 installDir: Raiden V: {} launch: - /raiden5_one.exe: + "/raiden5_one.exe": - when: - os: windows store: steam @@ -422617,7 +423794,7 @@ Raiders of the Lost Island: installDir: Raiders Of The Lost Island: {} launch: - /Raiders Of The Lost Island.exe: + "/Raiders Of The Lost Island.exe": - when: - os: windows store: steam @@ -422627,11 +423804,11 @@ Raiders of the North Sea: installDir: Raiders of the North Sea: {} launch: - /Raiders.app: + "/Raiders.app": - when: - os: mac store: steam - /Raiders.exe: + "/Raiders.exe": - when: - os: windows store: steam @@ -422643,7 +423820,7 @@ Raiders! Forsaken Earth: installDir: Raiders: {} launch: - /Raiders.exe: + "/Raiders.exe": - when: - os: windows store: steam @@ -422651,7 +423828,7 @@ Raiders! Forsaken Earth: id: 972010 RaidersSphere4th: files: - /savedata: + "/savedata": tags: - config - save @@ -422660,7 +423837,7 @@ RaidersSphere4th: installDir: RaidersSphere4th: {} launch: - /SpE4.exe: + "/SpE4.exe": - when: - os: windows store: steam @@ -422670,12 +423847,12 @@ Raiding Area 51 - Break out Waifu: installDir: Raiding Area 51 - Break out Waifu: {} launch: - /nw.exe: - - arguments: '--in-process-gpu' + "/nw.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam - /nwjs.app: + "/nwjs.app": - when: - os: mac store: steam @@ -422685,15 +423862,15 @@ Raifu Wars: installDir: Raifu Wars: {} launch: - /RaifuWars.app: + "/RaifuWars.app": - when: - os: mac store: steam - /RaifuWars.exe: + "/RaifuWars.exe": - when: - os: windows store: steam - /run.sh: + "/run.sh": - when: - os: linux store: steam @@ -422703,7 +423880,7 @@ Rail Adventures: installDir: Rail Adventures: {} launch: - /Rail Adventures.exe: + "/Rail Adventures.exe": - when: - os: windows store: steam @@ -422713,7 +423890,7 @@ Rail Cargo Simulator: installDir: Rail Cargo Simulator: {} launch: - /railcargo_win.exe: + "/railcargo_win.exe": - when: - os: windows store: steam @@ -422723,7 +423900,7 @@ Rail Recon: installDir: Rail Recon: {} launch: - /Rail Recon.exe: + "/Rail Recon.exe": - when: - bit: 64 os: windows @@ -422737,27 +423914,27 @@ Rail Route: - config when: - os: linux - /.config/unity3d/bitrich/Rail Route/saves/game.gd.gz: + "/.config/unity3d/bitrich/Rail Route/saves/game.gd.gz": tags: - save when: - os: linux - /AppData/LocalLow/bitrich/Rail Route: + "/AppData/LocalLow/bitrich/Rail Route": tags: - config when: - os: windows - /AppData/LocalLow/bitrich/Rail Route/saves/game.gd.gz: + "/AppData/LocalLow/bitrich/Rail Route/saves/game.gd.gz": tags: - save when: - os: windows - /Library/Application Support/RailRoute/saves/game.gd.gz: + "/Library/Application Support/RailRoute/saves/game.gd.gz": tags: - save when: - os: mac - /Library/Logs/bitrich/Rail Route: + "/Library/Logs/bitrich/Rail Route": tags: - config when: @@ -422765,16 +423942,16 @@ Rail Route: installDir: Rail Route: {} launch: - /Rail Route.app/Contents/MacOS/Rail Route: - - arguments: '-force-glcore' + "/Rail Route.app/Contents/MacOS/Rail Route": + - arguments: "-force-glcore" when: - os: mac store: steam - /Rail Route.exe: + "/Rail Route.exe": - when: - os: windows store: steam - /Rail Route.x86: + "/Rail Route.x86": - when: - os: linux store: steam @@ -422782,7 +423959,7 @@ Rail Route: id: 1124180 Rail Simulator: files: - /config.xml: + "/config.xml": tags: - config when: @@ -422791,7 +423968,7 @@ Rail World: installDir: Railworld: {} launch: - /RailWorld.exe: + "/RailWorld.exe": - when: - os: windows store: steam @@ -422804,12 +423981,12 @@ RailRoadVR: id: 1109940 Railbound: files: - /AppData/LocalLow/Afterburn/Railbound/*.es3: + "/AppData/LocalLow/Afterburn/Railbound/*.es3": tags: - save when: - os: windows - /Library/Application Support/Afterburn/Railbound/*.es3: + "/Library/Application Support/Afterburn/Railbound/*.es3": tags: - config - save @@ -422820,11 +423997,11 @@ Railbound: installDir: Railbound: {} launch: - /Railbound.app: + "/Railbound.app": - when: - os: mac store: steam - /Windows/Railbound.exe: + "/Windows/Railbound.exe": - when: - os: windows store: steam @@ -422834,7 +424011,7 @@ Railed: installDir: railed: {} launch: - /railed.exe: + "/railed.exe": - when: - os: windows store: steam @@ -422842,7 +424019,7 @@ Railed: id: 724690 Railgrade: files: - 'C:/Users/NAME/AppData/Local/Railgrade/Saved/SaveGames': + "C:/Users/NAME/AppData/Local/Railgrade/Saved/SaveGames": tags: - save when: @@ -422854,7 +424031,7 @@ Railgunners: id: 723130 Railroad Corporation: files: - /Corbie Games/Railroad Corporation/*.sav: + "/Corbie Games/Railroad Corporation/*.sav": tags: - save when: @@ -422862,7 +424039,7 @@ Railroad Corporation: installDir: Railroad Corporation: {} launch: - /RailroadCorporationSteam.exe: + "/RailroadCorporationSteam.exe": - when: - os: windows store: steam @@ -422875,11 +424052,11 @@ Railroad Ink Challenge: installDir: Railroad Ink Challenge: {} launch: - /RailRoadInk.exe: + "/RailRoadInk.exe": - when: - os: windows store: steam - /RailroadInk.app: + "/RailroadInk.app": - when: - os: mac store: steam @@ -422889,19 +424066,19 @@ Railroad Lines: installDir: Railroad Lines: {} launch: - /train.exe: + "/train.exe": - when: - store: steam steam: id: 385470 Railroad Pioneer: files: - /Bin/Railroad.ini: + "/Bin/Railroad.ini": tags: - config when: - os: windows - /Data/Save: + "/Data/Save": tags: - save when: @@ -422909,12 +424086,12 @@ Railroad Pioneer: installDir: Railroad Pioneer: {} launch: - /Bin/Railroad.exe: + "/Bin/Railroad.exe": - when: - os: windows store: steam - workingDir: /Bin - /Docs/RailroadPioneerManual.pdf: + workingDir: "/Bin" + "/Docs/RailroadPioneerManual.pdf": - when: - store: steam steam: @@ -422923,7 +424100,7 @@ Railroad Tracks: installDir: Railroad Tracks: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -422931,12 +424108,12 @@ Railroad Tracks: id: 888070 Railroad Tycoon 3: files: - /Data/Configuration: + "/Data/Configuration": tags: - config when: - os: windows - /Saved Games: + "/Saved Games": tags: - save when: @@ -422946,14 +424123,14 @@ Railroad Tycoon 3: installDir: Railroad Tycoon 3: {} launch: - /RT3.exe: + "/RT3.exe": - when: - store: steam steam: id: 7610 Railroad Tycoon II: files: - /games: + "/games": tags: - save when: @@ -422963,7 +424140,7 @@ Railroad Tycoon II: installDir: Railroad Tycoon 2 Platinum: {} launch: - /RT2_PLAT.EXE: + "/RT2_PLAT.EXE": - when: - store: steam steam: @@ -422972,7 +424149,7 @@ Railroad X: installDir: RailroadX: {} launch: - /EEP10.exe: + "/EEP10.exe": - when: - os: windows store: steam @@ -422982,8 +424159,11 @@ Railroads: installDir: Railroads: {} launch: - /Railroads.exe: + "/Railroads.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam @@ -422991,47 +424171,47 @@ Railroads: id: 1127320 Railway Empire: files: - /Kalypso Media/Railway Empire/docs/savegames: + "/Kalypso Media/Railway Empire/docs/savegames": tags: - save when: - os: linux - /userdata//503940/remote/savegames: + "/userdata//503940/remote/savegames": tags: - save when: - store: steam - /My Games/Railway Empire/savegames: + "/My Games/Railway Empire/savegames": tags: - save when: - os: windows - /My Games/Railway Empire/settings/settings.dat: + "/My Games/Railway Empire/settings/settings.dat": tags: - config when: - os: windows - /Temp/EpicRailwayEmpire/datastorage/93b333eb973b45b582f3bdf68dfc1dc9/*/savegames: + "/Temp/EpicRailwayEmpire/datastorage/93b333eb973b45b582f3bdf68dfc1dc9/*/savegames": tags: - save when: - - store: epic - /Temp/EpicRailwayEmpire/datastorage/93b333eb973b45b582f3bdf68dfc1dc9/*/settings/settings.dat: + - os: windows + "/Temp/EpicRailwayEmpire/datastorage/93b333eb973b45b582f3bdf68dfc1dc9/*/settings/settings.dat": tags: - config when: - - store: epic + - os: windows gog: id: 1556481953 installDir: Railway Empire: {} launch: - /RailwayEmpire: + "/RailwayEmpire": - when: - bit: 64 os: linux store: steam - /RailwayEmpire.exe: + "/RailwayEmpire.exe": - when: - bit: 64 os: windows @@ -423042,7 +424222,7 @@ Railway Empire 2: installDir: Railway Empire 2: {} launch: - /RailwayEmpire2.exe: + "/RailwayEmpire2.exe": - when: - bit: 64 os: windows @@ -423053,30 +424233,30 @@ Railway Islands - Puzzle: installDir: Railway Islands - Puzzle: {} launch: - /Railway Islands.exe: + "/Railway Islands.exe": - when: - os: windows store: steam steam: id: 1807930 -'Railway Saga: Land King': +"Railway Saga: Land King": installDir: RailwaySaga: {} launch: - /RailwaySaga.exe: + "/RailwaySaga.exe": - when: - os: windows store: steam steam: id: 955170 -'Rain Blood Chronicles: Mirage': +"Rain Blood Chronicles: Mirage": files: - /GameSave: + "/GameSave": tags: - save when: - os: windows - /GlobalSave: + "/GlobalSave": tags: - config when: @@ -423084,12 +424264,12 @@ Railway Islands - Puzzle: installDir: Mirage: {} launch: - /Mirage.exe: - - arguments: '-console' + "/Mirage.exe": + - arguments: "-console" when: - os: windows store: steam - /RainBlood_Mirage.app: + "/RainBlood_Mirage.app": - when: - os: mac store: steam @@ -423099,11 +424279,11 @@ Rain Project: installDir: RAIN Project: {} launch: - /Rain.app/Contents/MacOS/Rain: + "/Rain.app/Contents/MacOS/Rain": - when: - os: mac store: steam - /Rain.exe: + "/Rain.exe": - when: - os: windows store: steam @@ -423111,12 +424291,12 @@ Rain Project: id: 810780 Rain World: files: - /AppData/LocalLow/Videocult/Rain World: + "/AppData/LocalLow/Videocult/Rain World": tags: - save when: - os: windows - /AppData/LocalLow/Videocult/Rain World/options: + "/AppData/LocalLow/Videocult/Rain World/options": tags: - config when: @@ -423131,7 +424311,7 @@ Rain World: installDir: Rain World: {} launch: - /RainWorld.exe: + "/RainWorld.exe": - when: - os: windows store: steam @@ -423141,7 +424321,7 @@ Rain of Fire: installDir: Rain of Fire: {} launch: - /Rain of Fire.exe: + "/Rain of Fire.exe": - when: - os: windows store: steam @@ -423151,25 +424331,25 @@ Rain of Pumpkins: installDir: RainofPumpkins: {} launch: - /RainofPumpkins.app: + "/RainofPumpkins.app": - when: - os: mac store: steam - /RainofPumpkins.exe: + "/RainofPumpkins.exe": - when: - os: windows store: steam steam: id: 659160 -'Rain of Reflections: Set Free': +"Rain of Reflections: Set Free": installDir: Rain of Reflections: {} launch: - /Rain of Reflections.exe: + "/Rain of Reflections.exe": - when: - os: windows store: steam - /Rain_of_Reflections.app/Contents/MacOS/Rain_of_Reflections: + "/Rain_of_Reflections.app/Contents/MacOS/Rain_of_Reflections": - when: - os: mac store: steam @@ -423177,17 +424357,17 @@ Rain of Pumpkins: id: 695050 Rain on Your Parade: files: - /AppData/LocalLow/Unbound Creations/Rain on Your Parade: + "/AppData/LocalLow/Unbound Creations/Rain on Your Parade": tags: - config when: - os: windows - /AppData/LocalLow/Unbound Creations/Rain on Your Parade/saves: + "/AppData/LocalLow/Unbound Creations/Rain on Your Parade/saves": tags: - save when: - os: windows - /Packages/UnboundCreations.RainonYourParade_8hzbqm23g39hj/SystemAppData/wgs: + "/Packages/UnboundCreations.RainonYourParade_8hzbqm23g39hj/SystemAppData/wgs": tags: - save when: @@ -423196,34 +424376,34 @@ Rain on Your Parade: installDir: Rain on Your Parade: {} launch: - /Rain on Your Parade.app: + "/Rain on Your Parade.app": - when: - os: mac store: steam - /Rain on Your Parade.exe: + "/Rain on Your Parade.exe": - when: - os: windows store: steam - /Rain on Your Parade.x86_64: + "/Rain on Your Parade.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 1213230 -Rain's love memory-雨的恋记: +"Rain's love memory-雨的恋记": installDir: yudelianji: {} launch: - /Yudelianji.exe: + "/Yudelianji.exe": - when: - os: windows store: steam steam: id: 1058000 -'Rainbow Billy: The Curse of the Leviathan': +"Rainbow Billy: The Curse of the Leviathan": files: - /AppData/LocalLow/Manavoid/RainbowBilly/SaveFiles: + "/AppData/LocalLow/Manavoid/RainbowBilly/SaveFiles": tags: - save when: @@ -423233,7 +424413,7 @@ Rain's love memory-雨的恋记: installDir: Rainbow Billy The Curse of the Leviathan: {} launch: - /RainbowBilly.exe: + "/RainbowBilly.exe": - when: - os: windows store: steam @@ -423243,21 +424423,21 @@ Rainbow Cult: installDir: Rainbow Cult: {} launch: - /RainbowCult.exe: + "/RainbowCult.exe": - when: - os: windows store: steam - /RainbowCult.x86: + "/RainbowCult.x86": - when: - bit: 32 os: linux store: steam - /RainbowCult.x86_64: + "/RainbowCult.x86_64": - when: - bit: 64 os: linux store: steam - /rainbowcult.app/Contents/MacOS/rainbowcult: + "/rainbowcult.app/Contents/MacOS/rainbowcult": - when: - os: mac store: steam @@ -423267,15 +424447,15 @@ Rainbow Dreams: installDir: Rainbow Dreams: {} launch: - /Rainbow Dreams.app: + "/Rainbow Dreams.app": - when: - os: mac store: steam - /Rainbow Dreams.exe: + "/Rainbow Dreams.exe": - when: - os: windows store: steam - /Rainbow Dreams.sh: + "/Rainbow Dreams.sh": - when: - os: linux store: steam @@ -423285,7 +424465,7 @@ Rainbow Duck: installDir: Rainbow Duck: {} launch: - /Rainbow Duck.exe: + "/Rainbow Duck.exe": - when: - os: windows store: steam @@ -423295,7 +424475,7 @@ Rainbow Hero: installDir: Rainbow Hero: {} launch: - /RainbowHero.exe: + "/RainbowHero.exe": - when: - store: steam - arguments: window @@ -423307,11 +424487,11 @@ Rainbow Hunter: installDir: Rainbow Hunter: {} launch: - /Rainbow Hunter Mac.app/Contents/MacOS/Rainbow Hunter Mac: + "/Rainbow Hunter Mac.app/Contents/MacOS/Rainbow Hunter Mac": - when: - os: mac store: steam - /Rainbow Hunter.exe: + "/Rainbow Hunter.exe": - when: - os: windows store: steam @@ -423319,7 +424499,7 @@ Rainbow Hunter: id: 1058550 Rainbow Islands (2002): files: - /rainbow.cfg: + "/rainbow.cfg": tags: - config when: @@ -423328,11 +424508,11 @@ Rainbow Jigsaw: installDir: Rainbow Jigsaw: {} launch: - /Rainbow Jigsaw.exe: + "/Rainbow Jigsaw.exe": - when: - os: windows store: steam - /RainbowJigsaw.app/Contents/MacOS/RainbowJigsaw: + "/RainbowJigsaw.app/Contents/MacOS/RainbowJigsaw": - when: - os: mac store: steam @@ -423342,11 +424522,11 @@ Rainbow Pixel: installDir: Rainbow Pixel: {} launch: - /Rainbow Pixel.app: + "/Rainbow Pixel.app": - when: - os: mac store: steam - /Rainbow Pixel.exe: + "/Rainbow Pixel.exe": - when: - os: windows store: steam @@ -423356,7 +424536,7 @@ Rainbow Rage Squad: installDir: RainbowRageSquad64: {} launch: - /RainbowRageSquad.exe: + "/RainbowRageSquad.exe": - when: - bit: 64 os: windows @@ -423372,7 +424552,7 @@ Rainbow Robin: installDir: Rainbow Robin: {} launch: - /RainbowRobinAlpha.exe: + "/RainbowRobinAlpha.exe": - when: - os: windows store: steam @@ -423382,7 +424562,7 @@ Rainbow Run: installDir: Rainbow Run: {} launch: - /Rainbow Run.exe: + "/Rainbow Run.exe": - when: - bit: 64 os: windows @@ -423393,17 +424573,17 @@ Rainbow Snake: installDir: Rainbow_Snake: {} launch: - /Rainbow_Snake.exe: + "/Rainbow_Snake.exe": - when: - store: steam - workingDir: /Rainbow_Snake_Data + workingDir: "/Rainbow_Snake_Data" steam: id: 717950 Rainbow Step: installDir: RainbowStep: {} launch: - /RainbowStep.exe: + "/RainbowStep.exe": - when: - os: windows store: steam @@ -423413,11 +424593,11 @@ Raindancer: installDir: Raindancer: {} launch: - /Raindancer.app: + "/Raindancer.app": - when: - os: mac store: steam - /Raindancer.exe: + "/Raindancer.exe": - when: - os: windows store: steam @@ -423427,7 +424607,7 @@ Rainforest Solitaire: installDir: Rainforest Solitaire: {} launch: - /rainforest_solitaire.exe: + "/rainforest_solitaire.exe": - when: - os: windows store: steam @@ -423437,11 +424617,13 @@ Raining Blobs: installDir: Raining Blobs: {} launch: - /RainingBlobs: + "/RainingBlobs": - when: + - os: mac + store: steam - os: linux store: steam - /RainingBlobs.exe: + "/RainingBlobs.exe": - when: - os: windows store: steam @@ -423451,15 +424633,15 @@ Raining Blocks: installDir: Raining blocks: {} launch: - /Contents/MacOS/RainingBlocks: + "/Contents/MacOS/RainingBlocks": - when: - os: mac store: steam - /RainingBlocks: + "/RainingBlocks": - when: - os: linux store: steam - /RainingBlocks.exe: + "/RainingBlocks.exe": - when: - os: windows store: steam @@ -423469,17 +424651,17 @@ Raining Coins: installDir: Raining Coins: {} launch: - /Raining Coins.app/Contents/MacOS/Raining Coins: + "/Raining Coins.app/Contents/MacOS/Raining Coins": - when: - os: mac store: steam - /Raining Coins.exe: + "/Raining Coins.exe": - when: - bit: 64 os: windows store: steam - /Raining Coins.x86_64: - - arguments: '-force-opengl' + "/Raining Coins.x86_64": + - arguments: "-force-opengl" when: - os: linux store: steam @@ -423487,7 +424669,7 @@ Raining Coins: id: 755240 Rainswept: files: - /AppData/LocalLow/FrostwoodInteractive/Rainswept: + "/AppData/LocalLow/FrostwoodInteractive/Rainswept": tags: - save when: @@ -423497,21 +424679,24 @@ Rainswept: installDir: Rainswept: {} launch: - /Rainswept.app/Contents/MacOS/Rainswept: + "/Rainswept.app/Contents/MacOS/Rainswept": - when: - os: mac store: steam - /Rainswept.exe: + "/Rainswept.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam - /Rainswept.x86: + "/Rainswept.x86": - when: - bit: 32 os: linux store: steam - /Rainswept.x86_64: + "/Rainswept.x86_64": - when: - bit: 64 os: linux @@ -423522,7 +424707,7 @@ Rainy Day Racer: installDir: Rainy Day Racer: {} launch: - /rdr.exe: + "/rdr.exe": - when: - bit: 64 os: windows @@ -423533,7 +424718,7 @@ Rainy Season: installDir: Rainy Season: {} launch: - /Tsuyu.exe: + "/Tsuyu.exe": - when: - os: windows store: steam @@ -423543,7 +424728,7 @@ Rainyday: installDir: Rainyday: {} launch: - /rainyday.exe: + "/rainyday.exe": - when: - os: windows store: steam @@ -423553,15 +424738,15 @@ Raise Your Own Clone: installDir: Raise Your Own Clone: {} launch: - /Raise Your Own Clone.app: + "/Raise Your Own Clone.app": - when: - os: mac store: steam - /clones: + "/clones": - when: - os: linux store: steam - /clones.exe: + "/clones.exe": - when: - os: windows store: steam @@ -423570,21 +424755,21 @@ Raise Your Own Clone: Raise the Dead: steam: id: 645530 -'Raji: An Ancient Epic': +"Raji: An Ancient Epic": files: - /Packages/SUPER.COM.499901B22ECB3_khac1bdnsjzc4/LocalCache/Local/Raji/Saved/Config/WinGDK: + "/Packages/SUPER.COM.499901B22ECB3_khac1bdnsjzc4/LocalCache/Local/Raji/Saved/Config/WinGDK": tags: - config when: - os: windows store: microsoft - /Packages/SUPER.COM.499901B22ECB3_khac1bdnsjzc4/SystemAppData/wgs: + "/Packages/SUPER.COM.499901B22ECB3_khac1bdnsjzc4/SystemAppData/wgs": tags: - save when: - os: windows store: microsoft - /Raji/Saved/SaveGames: + "/Raji/Saved/SaveGames": tags: - save when: @@ -423594,7 +424779,7 @@ Raise the Dead: installDir: Raji An Ancient Epic: {} launch: - /Raji.exe: + "/Raji.exe": - when: - bit: 64 os: windows @@ -423605,11 +424790,11 @@ Rake: installDir: Rake: {} launch: - /MP_Runner.bat: + "/MP_Runner.bat": - when: - os: windows store: steam - /Rake.exe: + "/Rake.exe": - when: - os: windows store: steam @@ -423617,17 +424802,17 @@ Rake: id: 386880 Rakuen: files: - /Engine.ini: + "/Engine.ini": tags: - config when: - os: windows - /Launcher.ini: + "/Launcher.ini": tags: - config when: - os: windows - /Save*.rxdata: + "/Save*.rxdata": tags: - save when: @@ -423636,23 +424821,23 @@ Rakuen: installDir: Rakuen: {} launch: - /Launcher.exe: + "/Launcher.exe": - when: - os: windows store: steam - /Rakuen.app/Contents/MacOS/steamshim_parent: + "/Rakuen.app/Contents/MacOS/steamshim_parent": - arguments: Rakuen.app/Contents/MacOS/mkxp when: - os: mac store: steam - /steamshim/parent.amd64: - - arguments: ./Rakuen.amd64 + "/steamshim/parent.amd64": + - arguments: "./Rakuen.amd64" when: - bit: 64 os: linux store: steam - /steamshim/parent.x86: - - arguments: ./Rakuen.x86 + "/steamshim/parent.x86": + - arguments: "./Rakuen.x86" when: - bit: 32 os: linux @@ -423663,14 +424848,14 @@ Ralf: installDir: Ralf: {} launch: - /Ralf.exe: + "/Ralf.exe": - when: - store: steam steam: id: 958200 RalliSport Challenge: files: - /Microsoft/RalliSport Challenge: + "/Microsoft/RalliSport Challenge": tags: - config - save @@ -423678,12 +424863,12 @@ RalliSport Challenge: - os: windows Rally Championship Xtreme: files: - /Data/SavedGames: + "/Data/SavedGames": tags: - save when: - os: windows - /Data/xtreme.cfg: + "/Data/xtreme.cfg": tags: - config when: @@ -423692,7 +424877,7 @@ Rally Copters: installDir: Rally Copters: {} launch: - /RallyCopters.exe: + "/RallyCopters.exe": - when: - os: windows store: steam @@ -423702,14 +424887,14 @@ Rally Drift Cars: installDir: Rally Drift Cars: {} launch: - /Rally Drift Cars.exe: + "/Rally Drift Cars.exe": - when: - store: steam steam: id: 1153110 Rally Point: files: - /AppData/LocalLow/XformGames/RallyPoint: + "/AppData/LocalLow/XformGames/RallyPoint": tags: - config - save @@ -423717,7 +424902,7 @@ Rally Point: - os: windows Rally Point 2: files: - /AppData/LocalLow/XformGames/RallyPoint2: + "/AppData/LocalLow/XformGames/RallyPoint2": tags: - config - save @@ -423725,7 +424910,7 @@ Rally Point 2: - os: windows Rally Point 3: files: - /AppData/LocalLow/XformGames/RallyPoint3: + "/AppData/LocalLow/XformGames/RallyPoint3": tags: - config - save @@ -423733,13 +424918,13 @@ Rally Point 3: - os: windows Rally Point 4: files: - /AppData/LocalLow/XformGames/RallyPoint4: + "/AppData/LocalLow/XformGames/RallyPoint4": tags: - config - save when: - os: windows - /Packages/Xform.RallyPoint4_ma8nfcxkc08f0/LocalState: + "/Packages/Xform.RallyPoint4_ma8nfcxkc08f0/LocalState": tags: - save when: @@ -423747,7 +424932,7 @@ Rally Point 4: store: microsoft Rally Point 5: files: - /AppData/LocalLow/XformGames/RallyPoint5: + "/AppData/LocalLow/XformGames/RallyPoint5": tags: - config - save @@ -423755,7 +424940,7 @@ Rally Point 5: - os: windows Rally Point 6: files: - /AppData/LocalLow/XformGames/RallyPoint6: + "/AppData/LocalLow/XformGames/RallyPoint6": tags: - config - save @@ -423765,11 +424950,11 @@ Rally Racers: installDir: Rally Racers: {} launch: - /RallyRacers.app: + "/RallyRacers.app": - when: - os: mac store: steam - /ReesRallyRacers.exe: + "/ReesRallyRacers.exe": - when: - bit: 64 os: windows @@ -423778,17 +424963,17 @@ Rally Racers: id: 514530 Rally Trophy: files: - /Data/device.cfg: + "/Data/device.cfg": tags: - config when: - os: windows - /Data/options.cfg: + "/Data/options.cfg": tags: - config when: - os: windows - /SaveGame: + "/SaveGame": tags: - save when: @@ -423797,20 +424982,20 @@ Ram Boe: installDir: RAM BOE: {} launch: - /RAM BOE.app/Contents/MacOS/RAM BOE: + "/RAM BOE.app/Contents/MacOS/RAM BOE": - when: - os: mac store: steam - /RAM BOE.exe: + "/RAM BOE.exe": - when: - os: windows store: steam - /RAM BOE.x86: + "/RAM BOE.x86": - when: - bit: 32 os: linux store: steam - /RAM BOE.x86_64: + "/RAM BOE.x86_64": - when: - bit: 64 os: linux @@ -423821,26 +425006,26 @@ Ramayana: installDir: Ramayana: {} launch: - /linux64/Ramayana: + "/linux64/Ramayana": - when: - bit: 64 os: linux store: steam - /win32/Ramayana.exe: + "/win32/Ramayana.exe": - when: - bit: 32 os: windows store: steam - /win64/Ramayana.exe: + "/win64/Ramayana.exe": - when: - bit: 64 os: windows store: steam steam: id: 371790 -'Rambo: The Video Game': +"Rambo: The Video Game": files: - /Saved Games/Reef Entertainment/Rambo The Video Game: + "/Saved Games/Reef Entertainment/Rambo The Video Game": tags: - config - save @@ -423849,7 +425034,7 @@ Ramayana: installDir: Rambo: {} launch: - /GameLauncher.exe: + "/GameLauncher.exe": - when: - store: steam steam: @@ -423858,7 +425043,7 @@ Ramen: installDir: Ramen: {} launch: - /RAMEN.exe: + "/RAMEN.exe": - when: - os: windows store: steam @@ -423868,7 +425053,7 @@ Ramen (2019): installDir: Ramen: {} launch: - /Ramen.exe: + "/Ramen.exe": - when: - os: windows store: steam @@ -423878,11 +425063,11 @@ Ramify: installDir: Ramify: {} launch: - /Ramify.app: + "/Ramify.app": - when: - os: mac store: steam - /Ramify.exe: + "/Ramify.exe": - when: - os: windows store: steam @@ -423892,7 +425077,7 @@ Ramiwo: installDir: Ramiwo: {} launch: - /bin/win_x64/GameLauncher.exe: + "/bin/win_x64/GameLauncher.exe": - when: - bit: 64 os: windows @@ -423903,11 +425088,11 @@ Rampage Knights: installDir: Rampage Knights: {} launch: - /Rampage Knights.app: + "/Rampage Knights.app": - when: - os: mac store: steam - /rampage_knights.exe: + "/rampage_knights.exe": - when: - os: windows store: steam @@ -423917,7 +425102,7 @@ Rampage Miami: installDir: Rampage Miami: {} launch: - /Rampage Miami.exe: + "/Rampage Miami.exe": - when: - store: steam steam: @@ -423926,7 +425111,7 @@ Rampage Online: installDir: Rampage Online: {} launch: - /RampageOnline.exe: + "/RampageOnline.exe": - when: - store: steam steam: @@ -423935,7 +425120,7 @@ Rampage Ragdoll: installDir: Rampage Ragdoll: {} launch: - /Rampage Ragdoll.exe: + "/Rampage Ragdoll.exe": - when: - os: windows store: steam @@ -423945,7 +425130,7 @@ Rampage of the Dead: installDir: Rampage of the Dead: {} launch: - /Rampage of the Dead.exe: + "/Rampage of the Dead.exe": - when: - os: windows store: steam @@ -423953,12 +425138,12 @@ Rampage of the Dead: id: 890640 Rampart: files: - /RAMPART.CFG: + "/RAMPART.CFG": tags: - config when: - os: dos - /RAMPART.HIS: + "/RAMPART.HIS": tags: - save when: @@ -423967,25 +425152,25 @@ Rampart Tactics: installDir: Rampart Tactics: {} launch: - /Rampart_Tactics.exe: + "/Rampart_Tactics.exe": - when: - os: windows store: steam steam: id: 1080360 -'Ramses: Rise of Empire': +"Ramses: Rise of Empire": installDir: Ramses Rise of Empire: {} launch: - /Ramses Rise of Empire.exe: + "/Ramses Rise of Empire.exe": - when: - os: windows store: steam steam: id: 1480400 -'Rance 01: Quest for Hikari': +"Rance 01: Quest for Hikari": files: - /Documents/AliceSoft/Rance01/SaveData: + "/Documents/AliceSoft/Rance01/SaveData": tags: - save when: @@ -423997,21 +425182,21 @@ Rampart Tactics: - 1272604591 Rance IX: files: - /AliceSoft/Rance 9 - The Helmanian Revolution/SaveData: + "/AliceSoft/Rance 9 - The Helmanian Revolution/SaveData": tags: - save when: - os: windows Rance Quest: files: - /AliceSoft/Rance Quest/SaveData: + "/AliceSoft/Rance Quest/SaveData": tags: - save when: - os: windows Ranch Simulator: files: - /Ranch_Simulator/Saved/SaveGames: + "/Ranch_Simulator/Saved/SaveGames": tags: - save when: @@ -424024,21 +425209,21 @@ Rand-O-mazE: installDir: Rand-O-mazE: {} launch: - /Rand-O-mazE.exe: + "/Rand-O-mazE.exe": - when: - os: windows store: steam steam: id: 949570 -Randal's Monday: +"Randal's Monday": files: - /Library/Application Support/Daedalic Entertainment GmbH/Randal's Monday: + "/Library/Application Support/Daedalic Entertainment GmbH/Randal's Monday": tags: - config - save when: - os: mac - /Daedalic Entertainment GmbH/Randal's Monday: + "/Daedalic Entertainment GmbH/Randal's Monday": tags: - config - save @@ -424047,13 +425232,13 @@ Randal's Monday: gog: id: 1207666553 installDir: - Randal's Monday: {} + "Randal's Monday": {} launch: - /Randal's Monday.app: + "/Randal's Monday.app": - when: - os: mac store: steam - /Randals.exe: + "/Randals.exe": - when: - os: windows store: steam @@ -424063,20 +425248,20 @@ Randall: installDir: Randall: {} launch: - /Randall.app/Contents/MacOS/Randall: + "/Randall.app/Contents/MacOS/Randall": - when: - os: mac store: steam - /Randall.exe: + "/Randall.exe": - when: - os: windows store: steam - /Randall.x86: + "/Randall.x86": - when: - bit: 32 os: linux store: steam - /Randall.x86_64: + "/Randall.x86_64": - when: - bit: 64 os: linux @@ -424087,20 +425272,20 @@ Random Access Murder: installDir: RAM: {} launch: - /RAM.app: + "/RAM.app": - when: - os: mac store: steam - /RAM.exe: + "/RAM.exe": - when: - os: windows store: steam - /RAM.x86: + "/RAM.x86": - when: - bit: 32 os: linux store: steam - /RAM.x86_64: + "/RAM.x86_64": - when: - bit: 64 os: linux @@ -424114,7 +425299,7 @@ Random Rooms: installDir: RANDOM rooms: {} launch: - /RandomRooms.exe: + "/RandomRooms.exe": - when: - store: steam steam: @@ -424123,11 +425308,11 @@ Random War: installDir: Random War: {} launch: - /RandomWar.exe: + "/RandomWar.exe": - when: - os: windows store: steam - /RandomWar.x86_64: + "/RandomWar.x86_64": - when: - bit: 64 os: linux @@ -424141,11 +425326,11 @@ Range Ball: installDir: Range Ball: {} launch: - /Range Ball.app: + "/Range Ball.app": - when: - os: mac store: steam - /Range Ball.exe: + "/Range Ball.exe": - when: - os: windows store: steam @@ -424156,14 +425341,14 @@ Range Day VR: Range Day VR: {} steam: id: 601750 -Ranger in Spider's den: +"Ranger in Spider's den": steam: id: 914920 Ranger of the Jungle: installDir: Ranger of the Jungle: {} launch: - /towerdefence.exe: + "/towerdefence.exe": - when: - os: windows store: steam @@ -424181,7 +425366,7 @@ Ransomware Dating Sim: installDir: Ransomware Dating Simulator: {} launch: - /Ransomware Dating.exe: + "/Ransomware Dating.exe": - when: - os: windows store: steam @@ -424194,7 +425379,7 @@ RapStar Tycoon: installDir: RapStar Tycoon: {} launch: - /RapStar Tycoon.exe: + "/RapStar Tycoon.exe": - when: - os: windows store: steam @@ -424214,10 +425399,12 @@ Rapid Racing: installDir: RapidRacing: {} launch: - /RapidRacing.exe: + "/RapidRacing.exe": - when: - os: windows store: steam + - os: linux + store: steam steam: id: 906310 Rapid Squirrel: @@ -424227,15 +425414,15 @@ Rapid Tap: installDir: Rapid Tap: {} launch: - /Rapid-Tap-MacOSX.app: + "/Rapid-Tap-MacOSX.app": - when: - os: mac store: steam - /Rapid-Tap.x86_64: + "/Rapid-Tap.x86_64": - when: - os: linux store: steam - /RapidTap.exe: + "/RapidTap.exe": - when: - os: windows store: steam @@ -424245,7 +425432,7 @@ Raptainment: installDir: Raptainment: {} launch: - /saad2.exe: + "/saad2.exe": - when: - os: windows store: steam @@ -424256,14 +425443,14 @@ Raptor Valley: Raptor Valley: {} steam: id: 524120 -'Raptor: Call of the Shadows': +"Raptor: Call of the Shadows": files: - /CHAR****.FIL: + "/CHAR****.FIL": tags: - save when: - os: dos - /SETUP.INI: + "/SETUP.INI": tags: - config when: @@ -424271,37 +425458,37 @@ Raptor Valley: installDir: Raptor Call of the Shadows: {} launch: - /Dosbox/dosbox: - - arguments: '-conf \"..\\RAPTOR.conf\" -noconsole -c' + "/Dosbox/dosbox": + - arguments: "-conf \\\"..\\\\RAPTOR.conf\\\" -noconsole -c" when: - os: linux store: steam - workingDir: /Dosbox - /Raptor - Call of the Shadows/dosbox/dosbox.exe: - - arguments: '-conf \"..\\RAPTOR.conf\" -noconsole -c' + workingDir: "/Dosbox" + "/Raptor - Call of the Shadows/dosbox/dosbox.exe": + - arguments: "-conf \\\"..\\\\RAPTOR.conf\\\" -noconsole -c" when: - os: windows store: steam - workingDir: /Raptor - Call of the Shadows/dosbox - /Raptor Call of the Shadows.app: + workingDir: "/Raptor - Call of the Shadows/dosbox" + "/Raptor Call of the Shadows.app": - when: - os: mac store: steam steam: id: 358360 -'Raptor: Call of the Shadows 2010 Edition': +"Raptor: Call of the Shadows 2010 Edition": files: - /CHAR****.FIL: + "/CHAR****.FIL": tags: - save when: - os: windows - /saveoptions.dat: + "/saveoptions.dat": tags: - config when: - os: windows - /userdata//336060/remote: + "/userdata//336060/remote": tags: - config - save @@ -424312,13 +425499,13 @@ Raptor Valley: installDir: Raptor Call of The Shadows - 2015 Edition: {} launch: - /Raptor.exe: + "/Raptor.exe": - when: - os: windows store: steam steam: id: 336060 -'Raptor: Cretaceous Island': +"Raptor: Cretaceous Island": installDir: Raptor Cretaceous Island: {} steam: @@ -424327,11 +425514,11 @@ Rapture - World Conquest: installDir: Rapture World Conquest: {} launch: - /RaptureWC.app: + "/RaptureWC.app": - when: - os: mac store: steam - /RaptureWC.exe: + "/RaptureWC.exe": - when: - os: windows store: steam @@ -424341,7 +425528,7 @@ Rapture Rejects: installDir: Rapture Rejects: {} launch: - /rr-windows-client.exe: + "/rr-windows-client.exe": - when: - os: windows store: steam @@ -424351,7 +425538,7 @@ Rascal Fight / 捣蛋大作战: installDir: Rascal Fight: {} launch: - /RascalFight.exe: + "/RascalFight.exe": - when: - os: windows store: steam @@ -424366,7 +425553,7 @@ Rasen no Sora: installDir: Rasen no Sora: {} launch: - /Rasen no Sora.exe: + "/Rasen no Sora.exe": - when: - os: windows store: steam @@ -424374,12 +425561,12 @@ Rasen no Sora: id: 1047620 Rasetsu Fumaden: files: - /Rasetsu Fumaden_Data/Save/OptionData.data: + "/Rasetsu Fumaden_Data/Save/OptionData.data": tags: - config when: - os: windows - /Rasetsu Fumaden_Data/Save/Save*.data: + "/Rasetsu Fumaden_Data/Save/Save*.data": tags: - save when: @@ -424387,8 +425574,8 @@ Rasetsu Fumaden: installDir: RASETSU FUMADEN: {} launch: - /Rasetsu Fumaden.exe: - - arguments: '--in-process-gpu' + "/Rasetsu Fumaden.exe": + - arguments: "--in-process-gpu" when: - store: steam steam: @@ -424397,7 +425584,7 @@ Rashlander: installDir: Rashlander: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -424405,12 +425592,12 @@ Rashlander: id: 1054270 Rastan: files: - /RASTAN.CFG: + "/RASTAN.CFG": tags: - config when: - os: dos - /RASTAN.SCR: + "/RASTAN.SCR": tags: - save when: @@ -424419,16 +425606,16 @@ Rasty Pelican: installDir: Rasty Pelican: {} launch: - /Rasty Pelican.app/Contents/MacOS/Rasty Pelican: + "/Rasty Pelican.app/Contents/MacOS/Rasty Pelican": - when: - os: mac store: steam - /Rasty Pelican.exe: + "/Rasty Pelican.exe": - when: - bit: 64 os: windows store: steam - /Rasty Pelican.x86_64: + "/Rasty Pelican.x86_64": - when: - bit: 64 os: linux @@ -424440,17 +425627,17 @@ Rat Arena: id: 909130 Rat Hunter: files: - /Data/SavedGames: + "/Data/SavedGames": tags: - save when: - os: windows - /bin/config.xml: + "/bin/config.xml": tags: - config when: - os: windows - /bin/controls.xml: + "/bin/controls.xml": tags: - config when: @@ -424459,7 +425646,7 @@ Rat Racer: installDir: Rat Racer: {} launch: - /Rat Racer.exe: + "/Rat Racer.exe": - when: - bit: 64 os: windows @@ -424470,7 +425657,7 @@ Rat Simulator: installDir: Rat Simulator: {} launch: - /Rat_Simulator.exe: + "/Rat_Simulator.exe": - when: - os: windows store: steam @@ -424478,7 +425665,7 @@ Rat Simulator: id: 596950 Ratatouille: files: - /Asobo Studio/Ratatouille: + "/Asobo Studio/Ratatouille": tags: - save when: @@ -424487,9 +425674,9 @@ Ratatouille: HKEY_CURRENT_USER/Software/Asobo Studio/Ratatouile: tags: - config -'Ratchet & Clank: Rift Apart': +"Ratchet & Clank: Rift Apart": files: - /Ratchet & Clank - Rift Apart/: + "/Ratchet & Clank - Rift Apart/": tags: - save when: @@ -424497,7 +425684,7 @@ Ratatouille: installDir: Ratchet & Clank - Rift Apart: {} launch: - /RiftApart.exe: + "/RiftApart.exe": - when: - bit: 64 os: windows @@ -424508,7 +425695,7 @@ Ratergy: installDir: Ratergy: {} launch: - /Ratergy_Project.exe: + "/Ratergy_Project.exe": - when: - os: windows store: steam @@ -424518,15 +425705,15 @@ Ratings War: installDir: RatingsWar: {} launch: - /Ratings War.app/Contents/MacOS/Ratings War: + "/Ratings War.app/Contents/MacOS/Ratings War": - when: - os: mac store: steam - /RatingsWar: + "/RatingsWar": - when: - os: linux store: steam - /RatingsWar.exe: + "/RatingsWar.exe": - when: - os: windows store: steam @@ -424534,7 +425721,7 @@ Ratings War: id: 406650 Ratropolis: files: - /Ratropolis_Data/SaveFile: + "/Ratropolis_Data/SaveFile": tags: - save when: @@ -424542,11 +425729,11 @@ Ratropolis: installDir: Ratropolis: {} launch: - /Ratropolis.app: + "/Ratropolis.app": - when: - os: mac store: steam - /Ratropolis.exe: + "/Ratropolis.exe": - when: - bit: 64 os: windows @@ -424555,7 +425742,7 @@ Ratropolis: id: 1108370 Rats: files: - /Rats: + "/Rats": tags: - save when: @@ -424563,12 +425750,12 @@ Rats: installDir: Rats - Time is running out!: {} launch: - /Rats - Time is running out!.app: + "/Rats - Time is running out!.app": - when: - bit: 64 os: mac store: steam - /Rats.exe: + "/Rats.exe": - when: - os: windows store: steam @@ -424577,24 +425764,24 @@ Rats: Rats for Breakfast: steam: id: 1199390 -'Rats, Bats, and Bones': +"Rats, Bats, and Bones": installDir: RatsBatsAndBones: {} launch: - /RatsBatsAndBones.exe: + "/RatsBatsAndBones.exe": - when: - os: windows store: steam - /rbb.app/Contents/MacOS/rbb: + "/rbb.app/Contents/MacOS/rbb": - when: - os: mac store: steam - /rbb.x86: + "/rbb.x86": - when: - bit: 32 os: linux store: steam - /rbb.x86_64: + "/rbb.x86_64": - when: - bit: 64 os: linux @@ -424606,7 +425793,7 @@ Ratten Reich: id: 1717250 Rattler Race: files: - /entpack.ini: + "/entpack.ini": tags: - config when: @@ -424615,7 +425802,7 @@ Ratty Catty: installDir: Ratty Catty: {} launch: - /rattycatty.exe: + "/rattycatty.exe": - when: - store: steam steam: @@ -424624,11 +425811,11 @@ Ratz Instagib: installDir: Ratz Instagib: {} launch: - /RatzInstagib.app: + "/RatzInstagib.app": - when: - os: mac store: steam - /RatzInstagib.exe: + "/RatzInstagib.exe": - when: - os: windows store: steam @@ -424641,19 +425828,19 @@ Ravaged Zombie Apocalypse: installDir: Ravaged: {} launch: - /Binaries/Win32/RavagedGame.exe: - - arguments: '-seekfreeloading' + "/Binaries/Win32/RavagedGame.exe": + - arguments: "-seekfreeloading" when: - os: windows store: steam - workingDir: /Binaries/Win32 + workingDir: "/Binaries/Win32" steam: id: 96300 Ravager: installDir: Ravager: {} launch: - /Ravager.exe: + "/Ravager.exe": - when: - os: windows store: steam @@ -424661,12 +425848,12 @@ Ravager: id: 689100 Raven Squad: files: - /Raven Squad/Profiles/profile001/profile.inf: + "/Raven Squad/Profiles/profile001/profile.inf": tags: - config when: - os: windows - /Raven Squad/Profiles/profile001/saves: + "/Raven Squad/Profiles/profile001/saves": tags: - save when: @@ -424674,26 +425861,26 @@ Raven Squad: installDir: Raven Squad: {} launch: - /RS.exe: + "/RS.exe": - when: - store: steam steam: id: 38200 -Raven's Hike: +"Raven's Hike": installDir: - Raven's Hike: {} + "Raven's Hike": {} launch: - /Raven's Hike.exe: + "/Raven's Hike.exe": - when: - os: windows store: steam steam: id: 1689270 -'Raven: The Last Neko Slayer': +"Raven: The Last Neko Slayer": installDir: Raven The Last Neko Slayer: {} launch: - /Launch Raven.exe: + "/Launch Raven.exe": - when: - os: windows store: steam @@ -424701,12 +425888,12 @@ Raven's Hike: id: 1007470 Ravenfield: files: - /unity3d/SteelRaven7/RavenfieldSteam: + "/unity3d/SteelRaven7/RavenfieldSteam": tags: - config when: - os: linux - /unity3d/SteelRaven7/RavenfieldSteam/Saves: + "/unity3d/SteelRaven7/RavenfieldSteam/Saves": tags: - save when: @@ -424714,20 +425901,20 @@ Ravenfield: installDir: Ravenfield: {} launch: - /ravenfield.app/Contents/MacOS/RavenfieldSteam: + "/ravenfield.app/Contents/MacOS/RavenfieldSteam": - when: - os: mac store: steam - /ravenfield.exe: + "/ravenfield.exe": - when: - os: windows store: steam - /ravenfield.x86: + "/ravenfield.x86": - when: - bit: 32 os: linux store: steam - /ravenfield.x86_64: + "/ravenfield.x86_64": - when: - bit: 64 os: linux @@ -424742,20 +425929,20 @@ Ravenland: installDir: Ravenland: {} launch: - /Ravenland.exe: + "/Ravenland.exe": - when: - os: windows store: steam steam: id: 997710 -'Ravenloft: Stone Prophet': +"Ravenloft: Stone Prophet": files: - /GAME.OPT: + "/GAME.OPT": tags: - config when: - os: dos - /SAVE**: + "/SAVE**": tags: - save when: @@ -424765,19 +425952,19 @@ Ravenland: installDir: Dungeons & Dragons Ravenloft Series: {} launch: - /Launcher/Launcher.exe: + "/Launcher/Launcher.exe": - when: - store: steam steam: id: 1904560 -'Ravenloft: Strahd''s Possession': +"Ravenloft: Strahd's Possession": files: - /GAME.OPT: + "/GAME.OPT": tags: - config when: - os: dos - /SAVE**: + "/SAVE**": tags: - save when: @@ -424786,11 +425973,11 @@ Ravenland: id: 1432905053 steam: id: 1904570 -'Ravenmark: Scourge of Estellion': +"Ravenmark: Scourge of Estellion": installDir: Ravenmark: {} launch: - /autorun.exe: + "/autorun.exe": - when: - os: windows store: steam @@ -424798,7 +425985,7 @@ Ravenland: id: 365480 Ravenous Devils: files: - /Ravenous_Devils/Saved/SaveGames: + "/Ravenous_Devils/Saved/SaveGames": tags: - save when: @@ -424808,7 +425995,7 @@ Ravenous Devils: installDir: Ravenous devils: {} launch: - /Ravenous_Devils.exe: + "/Ravenous_Devils.exe": - when: - bit: 64 os: windows @@ -424819,21 +426006,21 @@ Ravensgard Arena: installDir: Ravensgard Arena: {} launch: - /Ravensgard Arena.exe: + "/Ravensgard Arena.exe": - when: - bit: 64 os: windows store: steam steam: id: 906260 -'Ravensword: Shadowlands': +"Ravensword: Shadowlands": files: - /AppData/LocalLow/Crescent Moon Games LLC/Ravensword2: + "/AppData/LocalLow/Crescent Moon Games LLC/Ravensword2": tags: - save when: - os: windows - /Library/Caches/com.crescentmoongames.ravensword2mac: + "/Library/Caches/com.crescentmoongames.ravensword2mac": tags: - save when: @@ -424841,15 +426028,15 @@ Ravensgard Arena: installDir: Ravensword2: {} launch: - /Ravensword2.exe: + "/Ravensword2.exe": - when: - os: windows store: steam - /Ravensword2Mac.app/Contents/MacOS/Ravensword2: + "/Ravensword2Mac.app/Contents/MacOS/Ravensword2": - when: - os: mac store: steam - /rs2.x86: + "/rs2.x86": - when: - os: linux store: steam @@ -424866,21 +426053,21 @@ Ravva and the Cyclops Curse: installDir: Ravva and the Cyclops Curse: {} launch: - /RavvaLNX.x86: + "/RavvaLNX.x86": - when: - bit: 32 os: linux store: steam - /RavvaLNX.x86_64: + "/RavvaLNX.x86_64": - when: - bit: 64 os: linux store: steam - /RavvaOSX.app: + "/RavvaOSX.app": - when: - os: mac store: steam - /RavvaWIN.exe: + "/RavvaWIN.exe": - when: - os: windows store: steam @@ -424888,7 +426075,7 @@ Ravva and the Cyclops Curse: id: 945340 Raw Data: files: - /RawData/Saved/Config/WindowsNoEditor: + "/RawData/Saved/Config/WindowsNoEditor": tags: - config when: @@ -424901,7 +426088,7 @@ Raw Footage: installDir: RAW FOOTAGE: {} launch: - /RawFootage.exe: + "/RawFootage.exe": - when: - bit: 64 os: windows @@ -424917,7 +426104,7 @@ Ray Gigant: installDir: RayGigant: {} launch: - /RayGigant.exe: + "/RayGigant.exe": - when: - os: windows store: steam @@ -424927,11 +426114,11 @@ Ray Versus: installDir: Ray Versus: {} launch: - /Ray Versus.exe: + "/Ray Versus.exe": - when: - os: windows store: steam - /RayVersus.x86_64: + "/RayVersus.x86_64": - when: - os: linux store: steam @@ -424941,55 +426128,55 @@ Ray of Light: installDir: Ray of Light: {} launch: - /Ray of Light.exe: + "/Ray of Light.exe": - when: - os: windows store: steam steam: id: 891100 -Ray's The Dead: +"Ray's The Dead": installDir: - Ray's The Dead: {} + "Ray's The Dead": {} launch: - /RaysTheDead.app: + "/RaysTheDead.app": - when: - os: mac store: steam - /RaysTheDead.exe: + "/RaysTheDead.exe": - when: - bit: 64 os: windows store: steam - /RaysTheDead.x86_64: + "/RaysTheDead.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 251650 -Ray'z Arcade Chronology: +"Ray'z Arcade Chronology": steam: id: 2478020 RayCrisis: files: - /CONFIG.SGS: + "/CONFIG.SGS": tags: - config when: - os: windows - /UVSAVE.BIN: + "/UVSAVE.BIN": tags: - save when: - os: windows RayStorm: files: - /CONFIG.SGS: + "/CONFIG.SGS": tags: - config when: - os: windows - /bu00_BISLPS_00678: + "/bu00_BISLPS_00678": tags: - save when: @@ -425003,7 +426190,7 @@ Raybeem: installDir: Raybeem: {} launch: - /Raybeem.exe: + "/Raybeem.exe": - when: - bit: 64 os: windows @@ -425014,7 +426201,7 @@ Raycatcher: installDir: Raycatcher: {} launch: - /Raycatcher.exe: + "/Raycatcher.exe": - when: - store: steam steam: @@ -425031,7 +426218,7 @@ Rayless: installDir: Rayless: {} launch: - /Rayless.exe: + "/Rayless.exe": - when: - os: windows store: steam @@ -425039,31 +426226,31 @@ Rayless: id: 584760 Rayman: files: - /RAYMAN#.SAV: + "/RAYMAN#.SAV": tags: - save when: - os: dos - /RAYMAN.CFG: + "/RAYMAN.CFG": tags: - config when: - os: dos gog: id: 1207658919 -'Rayman 2: The Great Escape': +"Rayman 2: The Great Escape": files: - /Data/Options: + "/Data/Options": tags: - config when: - os: windows - /Data/SaveGame: + "/Data/SaveGame": tags: - save when: - os: windows - /ubi.ini: + "/ubi.ini": tags: - config when: @@ -425073,34 +426260,34 @@ Rayman: installDir: Rayman 2 - The Great Escape: {} launch: - /GXSetup.exe: - - arguments: '' + "/GXSetup.exe": + - arguments: "" when: - store: steam - /Rayman2.exe: - - arguments: '' + "/Rayman2.exe": + - arguments: "" when: - store: steam steam: id: 15060 -'Rayman 3: Hoodlum Havoc': +"Rayman 3: Hoodlum Havoc": files: - /GAMEDATA/SaveGame/*.sav: + "/GAMEDATA/SaveGame/*.sav": tags: - save when: - os: windows - /Library/Preferences/Ubisoft/Rayman 3/Preferences Data: + "/Library/Preferences/Ubisoft/Rayman 3/Preferences Data": tags: - config when: - os: mac - /Library/Preferences/Ubisoft/Rayman 3/Saved/*.sav: + "/Library/Preferences/Ubisoft/Rayman 3/Saved/*.sav": tags: - save when: - os: mac - /UbiSoft/ubi.ini: + "/UbiSoft/ubi.ini": tags: - config when: @@ -425109,24 +426296,24 @@ Rayman: id: 1207658947 Rayman 60 Levels: files: - /PCMAP/*.SCT: + "/PCMAP/*.SCT": tags: - save when: - os: dos - /RAYFAN.CFG: + "/RAYFAN.CFG": tags: - config when: - os: dos Rayman By His Fans: files: - /PCMAP/*.SCT: + "/PCMAP/*.SCT": tags: - save when: - os: dos - /RAYFAN.CFG: + "/RAYFAN.CFG": tags: - config when: @@ -425135,12 +426322,12 @@ Rayman By His Fans: id: 1207658919 Rayman Designer: files: - /PCMAP/*.SCT: + "/PCMAP/*.SCT": tags: - save when: - os: dos - /RAYKIT.CFG: + "/RAYKIT.CFG": tags: - config when: @@ -425149,26 +426336,26 @@ Rayman Designer: id: 1207658919 Rayman Fiesta Run: files: - /savegames//5860: + "/savegames//5860": tags: - save when: - store: uplay - /Packages/Ubisoft.RaymanFiestaRunWindows10Edition_ngz4m417e0mpw: + "/Packages/Ubisoft.RaymanFiestaRunWindows10Edition_ngz4m417e0mpw": tags: - config - save when: - os: windows store: microsoft - /Packages/Ubisoft.RaymanFiestaRun_ngz4m417e0mpw: + "/Packages/Ubisoft.RaymanFiestaRun_ngz4m417e0mpw": tags: - config - save when: - os: windows store: microsoft - /Packages/UbisoftEntertainment.RaymanFiestaRunPreloadEdition_dbgk1hhpxymar: + "/Packages/UbisoftEntertainment.RaymanFiestaRunPreloadEdition_dbgk1hhpxymar": tags: - config - save @@ -425177,12 +426364,12 @@ Rayman Fiesta Run: store: microsoft Rayman Jungle Run: files: - /savegames//5850: + "/savegames//5850": tags: - save when: - store: uplay - /Packages/UbisoftEntertainment.RaymanJungleRun_dbgk1hhpxymar: + "/Packages/UbisoftEntertainment.RaymanJungleRun_dbgk1hhpxymar": tags: - config - save @@ -425192,7 +426379,7 @@ Rayman Jungle Run: store: microsoft Rayman Legends: files: - /Rayman Legends: + "/Rayman Legends": tags: - save when: @@ -425200,8 +426387,8 @@ Rayman Legends: installDir: Rayman Legends: {} launch: - /Rayman Legends.exe: - - arguments: '-uplay_steam_mode' + "/Rayman Legends.exe": + - arguments: "-uplay_steam_mode" when: - os: windows store: steam @@ -425213,36 +426400,36 @@ Rayman Legends: id: 242550 Rayman M: files: - /MENU/SaveGame/raymanm.sav: + "/MENU/SaveGame/raymanm.sav": tags: - save when: - os: windows - /Ubisoft/ubi.ini: + "/Ubisoft/ubi.ini": tags: - config when: - os: windows Rayman Mini: files: - /Library/Containers/com.ubisoft.raymanarcade/Library: + "/Library/Containers/com.ubisoft.raymanarcade/Library": tags: - save when: - os: mac Rayman Origins: files: - /Application Support/Feral Interactive/Rayman Origins: + "/Application Support/Feral Interactive/Rayman Origins": tags: - config when: - os: mac - /Application Support/Feral Interactive/Rayman Origins/Savegame: + "/Application Support/Feral Interactive/Rayman Origins/Savegame": tags: - save when: - os: mac - /My Games/Rayman Origins/Savegame: + "/My Games/Rayman Origins/Savegame": tags: - save when: @@ -425252,11 +426439,11 @@ Rayman Origins: installDir: ValveTestApp207490: {} launch: - /Rayman Origins.app: + "/Rayman Origins.app": - when: - os: mac store: steam - /Rayman Origins.exe: + "/Rayman Origins.exe": - when: - os: windows store: steam @@ -425268,7 +426455,7 @@ Rayman Origins: id: 207490 Rayman Raving Rabbids: files: - /Rayman4.sav: + "/Rayman4.sav": tags: - save when: @@ -425278,7 +426465,7 @@ Rayman Raving Rabbids: installDir: Rayman Raving Rabbids: {} launch: - /checkapplication.exe: + "/checkapplication.exe": - when: - store: steam registry: @@ -425289,7 +426476,7 @@ Rayman Raving Rabbids: id: 15080 Rayman Raving Rabbids 2: files: - /RRR2/RRR2*.sav: + "/RRR2/RRR2*.sav": tags: - save when: @@ -425300,31 +426487,31 @@ Rayman Raving Rabbids 2: - config Rayman Redemption: files: - /RaymanRedemption: + "/RaymanRedemption": tags: - save when: - os: windows - /RaymanRedemption/options.ini: + "/RaymanRedemption/options.ini": tags: - config when: - os: windows -Raymond's Obstacle Course: +"Raymond's Obstacle Course": installDir: - Raymond's Obstacle Course: {} + "Raymond's Obstacle Course": {} launch: - /Raymond's Obstacle Course.exe: + "/Raymond's Obstacle Course.exe": - when: - os: windows store: steam steam: id: 756980 -'Rayon Riddles: Rise of the Goblin King': +"Rayon Riddles: Rise of the Goblin King": installDir: RayonRiddles: {} launch: - /GoblinGame.exe: + "/GoblinGame.exe": - when: - os: windows store: steam @@ -425334,7 +426521,7 @@ Raywin: installDir: Raywin: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -425344,15 +426531,15 @@ Razed: installDir: Razed: {} launch: - /mac.app: + "/mac.app": - when: - os: mac store: steam - /razed.exe: + "/razed.exe": - when: - os: windows store: steam - /razed.x86: + "/razed.x86": - when: - os: linux store: steam @@ -425360,12 +426547,12 @@ Razed: id: 726710 Razenroth: files: - /unity3d/Enitvare/Razenroth/prefs: + "/unity3d/Enitvare/Razenroth/prefs": tags: - config when: - os: linux - /Enitvare/Razenroth/Saves/*.drv: + "/Enitvare/Razenroth/Saves/*.drv": tags: - save when: @@ -425373,42 +426560,42 @@ Razenroth: installDir: Razenroth: {} launch: - /Razenroth.exe: + "/Razenroth.exe": - when: - os: windows store: steam - /Razenroth.x86: + "/Razenroth.x86": - when: - bit: 32 os: linux store: steam - /Razenroth.x86_64: + "/Razenroth.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 340830 -'Razerwire:Nanowars': +"Razerwire:Nanowars": installDir: RazerwireNanowars: {} launch: - /RWNW.app: + "/RWNW.app": - when: - os: mac store: steam - /RWNW.exe: + "/RWNW.exe": - when: - os: windows store: steam steam: id: 788930 -'Razor2: Hidden Skies': +"Razor2: Hidden Skies": installDir: Razor2: {} launch: - /razor.exe: - - arguments: '-nc' + "/razor.exe": + - arguments: "-nc" when: - store: steam steam: @@ -425425,15 +426612,15 @@ Ra²: installDir: Ra2: {} launch: - /Ra2.app: + "/Ra2.app": - when: - os: mac store: steam - /Ra2.exe: + "/Ra2.exe": - when: - os: windows store: steam - /run.sh: + "/run.sh": - when: - os: linux store: steam @@ -425443,7 +426630,7 @@ Re Angel: installDir: Re Angel: {} launch: - /reangel.exe: + "/reangel.exe": - when: - os: windows store: steam @@ -425453,11 +426640,11 @@ Re Painter: installDir: RePainter: {} launch: - /RePainter.app/Contents/MacOS/RePainter: + "/RePainter.app/Contents/MacOS/RePainter": - when: - os: mac store: steam - /RePainter/RePainter.exe: + "/RePainter/RePainter.exe": - when: - bit: 64 os: windows @@ -425466,12 +426653,12 @@ Re Painter: id: 1096420 Re-Legion: files: - /AppData/LocalLow/Ice Code Games/Re-Legion/Elion Saves: + "/AppData/LocalLow/Ice Code Games/Re-Legion/Elion Saves": tags: - save when: - os: windows - /AppData/LocalLow/Ice Code Games/Re-Legion/save screens: + "/AppData/LocalLow/Ice Code Games/Re-Legion/save screens": tags: - save when: @@ -425481,7 +426668,7 @@ Re-Legion: installDir: Re-Legion: {} launch: - /Re-Legion.exe: + "/Re-Legion.exe": - when: - bit: 64 os: windows @@ -425495,17 +426682,17 @@ Re-Loaded: installDir: Re-Loaded: {} launch: - /DOSBOX/dosbox.exe: - - arguments: '-conf z_reloaded.conf -c \"imgmount d z_cdrom.iso -t iso\" -c cls RELOADED.EXE -noconsole -exit' + "/DOSBOX/dosbox.exe": + - arguments: "-conf z_reloaded.conf -c \\\"imgmount d z_cdrom.iso -t iso\\\" -c cls RELOADED.EXE -noconsole -exit" when: - os: windows store: steam - /dosbox/dosbox: - - arguments: '-conf z_reloaded.conf -c \"imgmount d z_cdrom.iso -t iso\" -c cls RELOADED.EXE -noconsole -exit' + "/dosbox/dosbox": + - arguments: "-conf z_reloaded.conf -c \\\"imgmount d z_cdrom.iso -t iso\\\" -c cls RELOADED.EXE -noconsole -exit" when: - os: linux store: steam - /launch.sh: + "/launch.sh": - when: - os: mac store: steam @@ -425522,7 +426709,7 @@ Re-Volt: installDir: Re-Volt: {} launch: - /revolt.exe: + "/revolt.exe": - when: - os: windows store: steam @@ -425542,36 +426729,36 @@ Re.poly: installDir: RePoly: {} launch: - /RePoly.exe: + "/RePoly.exe": - when: - bit: 64 os: windows store: steam steam: id: 970300 -'Re: Award': +"Re: Award": installDir: ReAward: {} launch: - /ReAward.exe: + "/ReAward.exe": - when: - os: windows store: steam steam: id: 1390860 -'Re:Gals Panic': +"Re:Gals Panic": installDir: ReGals Panic: {} launch: - /Re Gals Panic.exe: + "/Re Gals Panic.exe": - when: - os: windows store: steam steam: id: 1154720 -'Re:Legend': +"Re:Legend": files: - /AppData/LocalLow/Magnus Games Studio/ReLegend: + "/AppData/LocalLow/Magnus Games Studio/ReLegend": tags: - save when: @@ -425579,15 +426766,15 @@ Re.poly: installDir: Re-Legend: {} launch: - /ReLegend.exe: + "/ReLegend.exe": - when: - os: windows store: steam steam: id: 823950 -'Re:ZERO -Starting Life in Another World- The Prophecy of the Throne': +"Re:ZERO -Starting Life in Another World- The Prophecy of the Throne": files: - /My Games/ReZERO-TPT/Saves: + "/My Games/ReZERO-TPT/Saves": tags: - save when: @@ -425595,32 +426782,32 @@ Re.poly: installDir: ReZERO-TPT: {} launch: - /ReZERO-TPT.exe: + "/ReZERO-TPT.exe": - when: - bit: 64 os: windows store: steam steam: id: 1277510 -'Re;Lord 1: The Witch of Herfort and Stuffed Animals': +"Re;Lord 1: The Witch of Herfort and Stuffed Animals": gog: id: 2143232690 installDir: Re;Lord 1: {} launch: - /relord.exe: + "/relord.exe": - when: - os: windows store: steam steam: id: 788050 -'Re;Lord 2: The Witch of Cologne and Black Cat': +"Re;Lord 2: The Witch of Cologne and Black Cat": gog: id: 2047978668 installDir: Re;Lord 2 ~The witch of Cologne and black cat~: {} launch: - /relord_k.exe: + "/relord_k.exe": - when: - os: windows store: steam @@ -425633,19 +426820,20 @@ ReBoot (2016): id: 533890 ReCore: files: - /AppData/LocalLow/Microsoft Studios/ReCore/: + "/AppData/LocalLow/Microsoft Studios/ReCore/": tags: - config - save when: - - store: steam - /Packages/Microsoft.ReCore_8wekyb3d8bbwe/LocalState/renderer.ini: + - os: windows + store: steam + "/Packages/Microsoft.ReCore_8wekyb3d8bbwe/LocalState/renderer.ini": tags: - config when: - os: windows store: microsoft - /Packages/Microsoft.ReCore_8wekyb3d8bbwe/SystemAppData/wgs: + "/Packages/Microsoft.ReCore_8wekyb3d8bbwe/SystemAppData/wgs": tags: - save when: @@ -425654,27 +426842,27 @@ ReCore: installDir: erimia: {} launch: - /ReCore.exe: + "/ReCore.exe": - when: - bit: 64 os: windows store: steam steam: id: 537450 -'ReD:起始的旋转之音(The beginning of the Melody)': +"ReD:起始的旋转之音(The beginning of the Melody)": installDir: reD: {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: id: 1101850 -'ReDrawn: The Painted Tower': +"ReDrawn: The Painted Tower": installDir: - ReDrawn The Painted Tower Collector's Edition: {} + "ReDrawn The Painted Tower Collector's Edition": {} launch: - /ReDrawn_ThePaintedTower_CE.exe: + "/ReDrawn_ThePaintedTower_CE.exe": - when: - os: windows store: steam @@ -425692,9 +426880,9 @@ ReHack: id: 786180 ReMap: installDir: - 'Re[Map]': {} + "Re[Map]": {} launch: - '/Re[Map].exe': + "/Re[Map].exe": - when: - os: windows store: steam @@ -425707,15 +426895,15 @@ RePete: installDir: RePete: {} launch: - /RePete.app/Contents/MacOS/love: + "/RePete.app/Contents/MacOS/love": - when: - os: mac store: steam - /RePete.exe: + "/RePete.exe": - when: - os: windows store: steam - /repete: + "/repete": - when: - os: linux store: steam @@ -425725,7 +426913,7 @@ ReSizE: installDir: ReSizE: {} launch: - /resize.exe: + "/resize.exe": - when: - bit: 64 os: windows @@ -425734,27 +426922,27 @@ ReSizE: id: 634150 ReThink: files: - /RT_RW/Saved/SaveGames/*_RW.sav (Original): + "/RT_RW/Saved/SaveGames/*_RW.sav (Original)": tags: - save when: - os: windows - /RT_RW/Saved/SaveGames/SETTINGS.sav (Original): + "/RT_RW/Saved/SaveGames/SETTINGS.sav (Original)": tags: - config when: - os: windows - /RethinkReworked/Saved/Config/WindowsNoEditor/GameUserSettings.ini (Reworked): + "/RethinkReworked/Saved/Config/WindowsNoEditor/GameUserSettings.ini (Reworked)": tags: - config when: - os: windows - /RethinkReworked/Saved/SaveGames/*SAVE.sav (Reworked): + "/RethinkReworked/Saved/SaveGames/*SAVE.sav (Reworked)": tags: - save when: - os: windows - /RethinkReworked/Saved/SaveGames/SETTINGS_*.sav (Reworked): + "/RethinkReworked/Saved/SaveGames/SETTINGS_*.sav (Reworked)": tags: - config when: @@ -425762,12 +426950,12 @@ ReThink: installDir: ReThink: {} launch: - /ReThink/ReThink.exe: + "/ReThink/ReThink.exe": - when: - bit: 64 os: windows store: steam - /RethinkReworked.exe: + "/RethinkReworked.exe": - when: - bit: 64 os: windows @@ -425776,12 +426964,12 @@ ReThink: id: 603800 ReThink 2: files: - /RT4/Saved/SaveGames/*SAVE.sav: + "/RT4/Saved/SaveGames/*SAVE.sav": tags: - save when: - os: windows - /RT4/Saved/SaveGames/SETTINGS_*.sav: + "/RT4/Saved/SaveGames/SETTINGS_*.sav": tags: - config when: @@ -425789,7 +426977,7 @@ ReThink 2: installDir: ReThink 2: {} launch: - /ReThink 2.exe: + "/ReThink 2.exe": - when: - bit: 64 os: windows @@ -425800,7 +426988,7 @@ ReThink 3: installDir: ReThink 3: {} launch: - /RT3.exe: + "/RT3.exe": - when: - bit: 64 os: windows @@ -425811,21 +426999,21 @@ ReThink 4: installDir: ReThink 4: {} launch: - /ReThink4.exe: + "/ReThink4.exe": - when: - bit: 64 os: windows store: steam steam: id: 1436410 -'ReThink: Evolved': +"ReThink: Evolved": files: - /ReThink2/Saved/SaveGames/*.sav: + "/ReThink2/Saved/SaveGames/*.sav": tags: - save when: - os: windows - /ReThink2/Saved/SaveGames/SETTINGS.sav: + "/ReThink2/Saved/SaveGames/SETTINGS.sav": tags: - config when: @@ -425833,21 +427021,21 @@ ReThink 4: installDir: ReThink Evolved: {} launch: - /ReThink2.exe: + "/ReThink2.exe": - when: - bit: 64 os: windows store: steam steam: id: 703500 -'ReThink: Evolved 2': +"ReThink: Evolved 2": files: - /ReThink3/Saved/SaveGames/*.sav: + "/ReThink3/Saved/SaveGames/*.sav": tags: - save when: - os: windows - /ReThink3/Saved/SaveGames/SETTINGS_RT3.sav: + "/ReThink3/Saved/SaveGames/SETTINGS_RT3.sav": tags: - config when: @@ -425855,62 +427043,62 @@ ReThink 4: installDir: ReThink Evolved 2: {} launch: - /ReThink3.exe: + "/ReThink3.exe": - when: - bit: 64 os: windows store: steam steam: id: 820600 -'ReThink: Evolved 3': +"ReThink: Evolved 3": installDir: ReThink Evolved 3: {} launch: - /RethinkEvolved3.exe: + "/RethinkEvolved3.exe": - when: - bit: 64 os: windows store: steam steam: id: 1065460 -'ReThink: Evolved 4': +"ReThink: Evolved 4": installDir: ReThink Evolved 4: {} launch: - /RethinkEvolved4.exe: + "/RethinkEvolved4.exe": - when: - bit: 64 os: windows store: steam steam: id: 1260580 -'ReVeN: XBridge': +"ReVeN: XBridge": installDir: ReVeN XBridge: {} launch: - /win32/nw.exe: + "/win32/nw.exe": - when: - bit: 32 os: windows store: steam - workingDir: /win32 - /win64/nw.exe: + workingDir: "/win32" + "/win64/nw.exe": - when: - bit: 64 os: windows store: steam - workingDir: /win64 + workingDir: "/win64" steam: id: 422030 ReX: installDir: Rex: {} launch: - /ReX.app/Contents/MacOS/Rex: + "/ReX.app/Contents/MacOS/Rex": - when: - os: mac store: steam - /Rex.exe: + "/Rex.exe": - when: - os: windows store: steam @@ -425920,17 +427108,17 @@ ReYal: installDir: reyal: {} launch: - /reyal.exe: + "/reyal.exe": - when: - os: windows store: steam steam: id: 1080780 -'Reach 50 : Sexy Hentai Girls': +"Reach 50 : Sexy Hentai Girls": installDir: reach50SHG: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -425940,8 +427128,11 @@ Reach Coin: installDir: Reach Coin: {} launch: - /ReachCoin.exe: + "/ReachCoin.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam @@ -425951,7 +427142,7 @@ Reach Me: installDir: Reach Me: {} launch: - /RM.exe: + "/RM.exe": - when: - os: windows store: steam @@ -425961,19 +427152,19 @@ Reach for the Sun: installDir: ReachForTheSun: {} launch: - /ReachForTheSun.exe: + "/ReachForTheSun.exe": - when: - store: steam steam: id: 248290 Reaching for Petals: files: - /ReachingForPetals/Saved/Config/WindowsNoEditor: + "/ReachingForPetals/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /ReachingForPetals/Saved/SaveGames: + "/ReachingForPetals/Saved/SaveGames": tags: - save when: @@ -425981,14 +427172,14 @@ Reaching for Petals: installDir: Reaching for Petals: {} launch: - /SmartFPController.exe: + "/SmartFPController.exe": - when: - bit: 64 os: windows store: steam steam: id: 636170 -'Reaching for Petals: VR Edition': +"Reaching for Petals: VR Edition": installDir: Reaching for Petals VR Edition: {} steam: @@ -425997,58 +427188,58 @@ Reactivated: installDir: Reactivated: {} launch: - /Reactivated.exe: + "/Reactivated.exe": - when: - store: steam steam: id: 1053600 -'Read Only Memories: Neurodiver': +"Read Only Memories: Neurodiver": steam: id: 1293910 Reader Rabbit Math Ages 6-9: files: - /MATH6-9.INI: + "/MATH6-9.INI": tags: - config when: - os: windows - /Users: + "/Users": tags: - save when: - os: windows Reader Rabbit Thinking Adventures Ages 4-6: files: - /trabbit.DAT: + "/trabbit.DAT": tags: - save when: - os: windows - /trabbit.ini: + "/trabbit.ini": tags: - config when: - os: windows -'Reader Rabbit: 1st Grade': +"Reader Rabbit: 1st Grade": files: - /RRF.INI: + "/RRF.INI": tags: - config when: - os: windows - /USERS.DAT: + "/USERS.DAT": tags: - save when: - os: windows -'Reader Rabbit: 2nd Grade': +"Reader Rabbit: 2nd Grade": files: - /RR2GDATA: + "/RR2GDATA": tags: - save when: - os: windows - /rr2g.ini: + "/rr2g.ini": tags: - config when: @@ -426057,13 +427248,13 @@ Reading Simulator: installDir: Reading Simulator: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam steam: id: 769690 -'Ready Player One: OASIS Beta': +"Ready Player One: OASIS Beta": installDir: Ready Player One: {} steam: @@ -426072,7 +427263,7 @@ Ready for Take off - A320 Simulator: installDir: Ready for Take off: {} launch: - /rfto.exe: + "/rfto.exe": - when: - os: windows store: steam @@ -426080,7 +427271,7 @@ Ready for Take off - A320 Simulator: id: 500170 Ready or Not: files: - /ReadyOrNot/Saved: + "/ReadyOrNot/Saved": tags: - config - save @@ -426094,19 +427285,19 @@ Ready or Not: Ready Or Not: {} steam: id: 1144200 -'Ready, Aim, Splat!': +"Ready, Aim, Splat!": installDir: - 'Ready, Aim, Splat!': {} + "Ready, Aim, Splat!": {} steam: id: 559170 ReadySet Heroes: files: - /CNB/Saved/Config/WindowsNoEditor: + "/CNB/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /CNB/Saved/SaveGames: + "/CNB/Saved/SaveGames": tags: - save when: @@ -426115,29 +427306,29 @@ Reagan Gorbachev: installDir: Reagan Gorbachev: {} launch: - /Reagan Gorbachev.exe: + "/Reagan Gorbachev.exe": - when: - os: windows store: steam steam: id: 364720 -'Reah: Face the Unknown': +"Reah: Face the Unknown": gog: id: 1911151506 Reaktron: installDir: reaktron: {} launch: - /reaklinux: + "/reaklinux": - when: - os: linux store: steam - /reaktron.app/Contents/MacOS/reaktron: + "/reaktron.app/Contents/MacOS/reaktron": - when: - os: mac store: steam - workingDir: /reaktron.app/Contents/MacOS - /reakwin.exe: + workingDir: "/reaktron.app/Contents/MacOS" + "/reakwin.exe": - when: - os: windows store: steam @@ -426146,20 +427337,20 @@ Reaktron: Real 1942: steam: id: 710390 -Real Al's Humanity Academy: +"Real Al's Humanity Academy": installDir: - Real Al's Humanity Academy: {} + "Real Al's Humanity Academy": {} steam: id: 1025710 Real Arcade Bike: steam: id: 1062430 -'Real Bout Fatal Fury 2: The Newcomers': +"Real Bout Fatal Fury 2: The Newcomers": gog: id: 1490050478 Real Boxing: files: - /My Games/Real Boxing/Config: + "/My Games/Real Boxing/Config": tags: - config when: @@ -426167,23 +427358,23 @@ Real Boxing: installDir: RealBoxing: {} launch: - /Binaries/RBLauncher.exe: + "/Binaries/RBLauncher.exe": - when: - os: windows store: steam - workingDir: /Binaries - /Binaries/win32/RealBoxing.exe: + workingDir: "/Binaries" + "/Binaries/win32/RealBoxing.exe": - when: - os: windows store: steam - workingDir: /Binaries/win32 + workingDir: "/Binaries/win32" steam: id: 296770 Real Drift: installDir: Real Drift: {} launch: - /Real Drift.exe: + "/Real Drift.exe": - when: - store: steam steam: @@ -426192,15 +427383,15 @@ Real Farm: installDir: Real Farm: {} launch: - /RealFarm.app: + "/RealFarm.app": - when: - os: mac store: steam - /RealFarm.exe: + "/RealFarm.exe": - when: - os: windows store: steam - /RealFarm.x86_64: + "/RealFarm.x86_64": - when: - os: linux store: steam @@ -426211,9 +427402,9 @@ Real Fishing VR: Real Fishing VR: {} steam: id: 1030380 -'Real Heroes: Firefighter': +"Real Heroes: Firefighter": files: - /Firefighter/save: + "/Firefighter/save": tags: - save when: @@ -426221,7 +427412,7 @@ Real Fishing VR: installDir: Real Heroes Firefighter: {} launch: - /RHFirefighter.exe: + "/RHFirefighter.exe": - when: - os: windows store: steam @@ -426231,19 +427422,19 @@ Real Horror Stories Ultimate Edition: installDir: Real Horror Stories Expansion: {} launch: - /Real Horror Stories.exe: + "/Real Horror Stories.exe": - when: - store: steam steam: id: 281370 -'Real Life Battle Royal: It''s gonna be an... EPIC game': +"Real Life Battle Royal: It's gonna be an... EPIC game": steam: id: 1047670 Real Pool 3D - Poolians: installDir: Real Pool 3D: {} launch: - /Poolians.exe: + "/Poolians.exe": - when: - os: windows store: steam @@ -426253,11 +427444,11 @@ Real RC Flight Simulator: installDir: Real RC Flight Simulator: {} launch: - /RealRC.app/Contents/MacOS/RealRC: + "/RealRC.app/Contents/MacOS/RealRC": - when: - os: mac store: steam - /RealRC.exe: + "/RealRC.exe": - when: - os: windows store: steam @@ -426267,7 +427458,7 @@ Real Scary: installDir: Real Scary: {} launch: - /RealScary.exe: + "/RealScary.exe": - when: - store: steam steam: @@ -426276,41 +427467,41 @@ Real Warfare 1242: installDir: Real Warfare: {} launch: - /config.exe: + "/config.exe": - when: - store: steam - /editor.exe: + "/editor.exe": - when: - store: steam - /engine.exe: + "/engine.exe": - when: - store: steam steam: id: 46350 -'Real Warfare 2: Northern Crusades': +"Real Warfare 2: Northern Crusades": installDir: Real Warfare 2 Northern Crusades: {} launch: - /config.exe: + "/config.exe": - when: - store: steam - /editor.exe: + "/editor.exe": - when: - store: steam - /engine.exe: + "/engine.exe": - when: - store: steam steam: id: 202860 -'Real Winners: Victoryball': +"Real Winners: Victoryball": installDir: RealWinnersVictoryball: {} launch: - /RealWinners.app: + "/RealWinners.app": - when: - os: mac store: steam - /RealWinners.exe: + "/RealWinners.exe": - when: - os: windows store: steam @@ -426318,12 +427509,12 @@ Real Warfare 1242: id: 839010 Real World Racing: files: - /Real World Racing/config.ini: + "/Real World Racing/config.ini": tags: - config when: - os: windows - /Real World Racing/profile.dat: + "/Real World Racing/profile.dat": tags: - save when: @@ -426331,7 +427522,7 @@ Real World Racing: installDir: RWR: {} launch: - /RWR.exe: + "/RWR.exe": - when: - store: steam steam: @@ -426345,8 +427536,8 @@ RealFlight 8: installDir: RealFlight 8: {} launch: - /RealFlight.exe: - - arguments: '-novr' + "/RealFlight.exe": + - arguments: "-novr" when: - os: windows store: steam @@ -426356,8 +427547,8 @@ RealFlight 9: installDir: RealFlight 9: {} launch: - /RealFlight.exe: - - arguments: '-novr' + "/RealFlight.exe": + - arguments: "-novr" when: - os: windows store: steam @@ -426365,7 +427556,7 @@ RealFlight 9: id: 1070820 RealMyst: files: - /SAV: + "/SAV": tags: - save when: @@ -426375,22 +427566,22 @@ RealMyst: installDir: Real Myst: {} launch: - /RealMyst.exe: + "/RealMyst.exe": - when: - store: steam - /RealMystSetup.exe: + "/RealMystSetup.exe": - when: - store: steam steam: id: 63600 -'RealMyst: Masterpiece Edition': +"RealMyst: Masterpiece Edition": files: - /AppData/LocalLow/Cyan Worlds/realMyst/*.ini: + "/AppData/LocalLow/Cyan Worlds/realMyst/*.ini": tags: - config when: - os: windows - /AppData/LocalLow/Cyan Worlds/realMyst/*.sav: + "/AppData/LocalLow/Cyan Worlds/realMyst/*.sav": tags: - save when: @@ -426400,11 +427591,11 @@ RealMyst: installDir: realMyst Masterpiece Edition: {} launch: - /realMyst.app: + "/realMyst.app": - when: - os: mac store: steam - /realMyst.exe: + "/realMyst.exe": - when: - os: windows store: steam @@ -426423,7 +427614,7 @@ Realistic Illusion: installDir: RealisticIllusion: {} launch: - /RealisticIllusion.exe: + "/RealisticIllusion.exe": - when: - os: windows store: steam @@ -426433,7 +427624,7 @@ Realistic Tower Destruction: installDir: Realistic Tower Destruction: {} launch: - /Realistic Tower Destruction.exe: + "/Realistic Tower Destruction.exe": - when: - bit: 64 os: windows @@ -426449,7 +427640,7 @@ Reality: installDir: REALITY: {} launch: - /Reality.exe: + "/Reality.exe": - when: - os: windows store: steam @@ -426462,7 +427653,7 @@ Reality Incognita: installDir: Reality Incognita: {} launch: - /Reality Incognita.exe: + "/Reality Incognita.exe": - when: - store: steam steam: @@ -426472,7 +427663,7 @@ Reality Raiders: id: 671770 Really Big Sky: files: - /record.dat: + "/record.dat": tags: - config - save @@ -426481,7 +427672,7 @@ Really Big Sky: installDir: RBS: {} launch: - /Really Big Sky.exe: + "/Really Big Sky.exe": - when: - store: steam steam: @@ -426490,7 +427681,7 @@ ReallyGoodBattle: installDir: ReallyGoodBattle: {} launch: - /ReallyGoodBattle.exe: + "/ReallyGoodBattle.exe": - when: - os: windows store: steam @@ -426500,11 +427691,11 @@ Realm Grinder: installDir: Realm Grinder: {} launch: - /RealmGrinderDesktop.app: + "/RealmGrinderDesktop.app": - when: - os: mac store: steam - /RealmGrinderDesktop.exe: + "/RealmGrinderDesktop.exe": - when: - os: windows store: steam @@ -426514,7 +427705,7 @@ Realm Guardian: installDir: Hard to be a King: {} launch: - /Realm Guardian.exe: + "/Realm Guardian.exe": - when: - os: windows store: steam @@ -426530,7 +427721,7 @@ Realm Revolutions: installDir: Realm Revolutions: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -426538,7 +427729,7 @@ Realm Revolutions: id: 764030 Realm Royale Reforged: files: - /My Games/paladinsroyale/RealmGame/Config: + "/My Games/paladinsroyale/RealmGame/Config": tags: - config when: @@ -426546,22 +427737,20 @@ Realm Royale Reforged: installDir: Realm Royale: {} launch: - /Binaries/Win64/RealmEAC.exe: - - arguments: >- - -seekfreeloadingpcconsole -pid=702 -steam -anon -homedir=\"paladinsroyale\" -eac_dir - \"..\\\\EasyAntiCheat\\\\\" + "/Binaries/Win64/RealmEAC.exe": + - arguments: "-seekfreeloadingpcconsole -pid=702 -steam -anon -homedir=\\\"paladinsroyale\\\" -eac_dir \\\"..\\\\\\\\EasyAntiCheat\\\\\\\\\\\"" when: - bit: 64 os: windows store: steam - workingDir: /Binaries + workingDir: "/Binaries" steam: id: 813820 Realm of Perpetual Guilds: installDir: Realm of Perpetual Guilds: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -426574,15 +427763,15 @@ Realm of the Ghost King: installDir: Realm of the Ghost King: {} launch: - /rotgk: + "/rotgk": - when: - os: linux store: steam - /rotgk.app/Contents/MacOS/rotgk: + "/rotgk.app/Contents/MacOS/rotgk": - when: - os: mac store: steam - /rotgk.exe: + "/rotgk.exe": - when: - os: windows store: steam @@ -426592,11 +427781,11 @@ Realm of the Mad God: installDir: Realm of the Mad God: {} launch: - /RotMG Exalt Launcher.app: + "/RotMG Exalt Launcher.app": - when: - os: mac store: steam - /RotMG Exalt Launcher.exe: + "/RotMG Exalt Launcher.exe": - when: - bit: 64 os: windows @@ -426605,26 +427794,26 @@ Realm of the Mad God: id: 200210 RealmCraft: installDir: - 'RealmCraft - Survive, Mine & Craft': {} + "RealmCraft - Survive, Mine & Craft": {} launch: - /RealmCraft.exe: + "/RealmCraft.exe": - when: - store: steam steam: id: 764580 -'Realms Beyond: Ashes of the Fallen': +"Realms Beyond: Ashes of the Fallen": gog: id: 1132213316 steam: id: 762550 -'Realms of Arkania III: Shadows over Riva': +"Realms of Arkania III: Shadows over Riva": files: - /GAMES: + "/GAMES": tags: - save when: - os: dos - /RIVA.CFG: + "/RIVA.CFG": tags: - config when: @@ -426634,29 +427823,31 @@ RealmCraft: installDir: Realms of Arkania 3 SoR Classic: {} launch: - /start.bat: + "/start.bat": - when: - os: windows store: steam - /start.sh: + "/start.sh": - when: - os: mac store: steam + - os: linux + store: steam steam: id: 270760 -'Realms of Arkania: Blade of Destiny': +"Realms of Arkania: Blade of Destiny": files: - /*.GAM: + "/*.GAM": tags: - save when: - os: dos - /SOUND.CFG: + "/SOUND.CFG": tags: - config when: - os: dos - /Library/Application Support/Boxer/Gamebox States/com.game.realms-of-arkania-1/Current.boxerstate/C Realms of Arkania 1.harddisk: + "/Library/Application Support/Boxer/Gamebox States/com.game.realms-of-arkania-1/Current.boxerstate/C Realms of Arkania 1.harddisk": tags: - save when: @@ -426669,34 +427860,36 @@ RealmCraft: installDir: Realms of Arkania 1 BoD Classic: {} launch: - /start.bat: + "/start.bat": - when: - os: windows store: steam - /start.sh: + "/start.sh": - when: + - os: mac + store: steam - os: linux store: steam steam: id: 267670 -'Realms of Arkania: Blade of Destiny (2013)': +"Realms of Arkania: Blade of Destiny (2013)": files: - /schick_Data/saves: + "/schick_Data/saves": tags: - save when: - os: windows - /.config/unity3d/Crafty Studios GmbH/Nordlandtrilogie HD Schicksalsklinge Gold: + "/.config/unity3d/Crafty Studios GmbH/Nordlandtrilogie HD Schicksalsklinge Gold": tags: - config when: - os: linux - /Documents/BladeofDestiny: + "/Documents/BladeofDestiny": tags: - save when: - os: linux - /BladeofDestiny/save: + "/BladeofDestiny/save": tags: - save when: @@ -426707,29 +427900,29 @@ RealmCraft: installDir: Realms of Arkania: {} launch: - /Blade of Destiny HD Mod Control.exe: + "/Blade of Destiny HD Mod Control.exe": - when: - os: windows store: steam - /schick.app: + "/schick.app": - when: - os: mac store: steam - /schick.exe: + "/schick.exe": - when: - os: windows store: steam - - arguments: '-force-d3d9' + - arguments: "-force-d3d9" when: - os: windows store: steam - /schick.x86: - - arguments: '-logfile output_log.txt' + "/schick.x86": + - arguments: "-logfile output_log.txt" when: - os: linux store: steam - /schickhd: - - arguments: '-logfile output_log.txt' + "/schickhd": + - arguments: "-logfile output_log.txt" when: - os: linux store: steam @@ -426739,9 +427932,9 @@ RealmCraft: - config steam: id: 237550 -'Realms of Arkania: Star Trail': +"Realms of Arkania: Star Trail": files: - /GAMES/*.GAM: + "/GAMES/*.GAM": tags: - save when: @@ -426754,19 +427947,21 @@ RealmCraft: installDir: Realms of Arkania 2 Startrail Classic: {} launch: - /start.bat: + "/start.bat": - when: - os: windows store: steam - /start.sh: + "/start.sh": - when: - os: mac store: steam + - os: linux + store: steam steam: id: 270750 -'Realms of Arkania: Star Trail (2017)': +"Realms of Arkania: Star Trail (2017)": files: - /saves: + "/saves": tags: - save when: @@ -426779,15 +427974,15 @@ RealmCraft: installDir: Realms of Arkania – Star Trail: {} launch: - /schweif.app: + "/schweif.app": - when: - os: mac store: steam - /schweif.exe: + "/schweif.exe": - when: - os: windows store: steam - /schweif.x86: + "/schweif.x86": - when: - os: linux store: steam @@ -426795,17 +427990,17 @@ RealmCraft: id: 288860 Realms of Chaos: files: - /ROC.CFG: + "/ROC.CFG": tags: - config when: - os: dos - /ROC.SCO: + "/ROC.SCO": tags: - save when: - os: dos - /ROC.SG*: + "/ROC.SG*": tags: - save when: @@ -426815,22 +428010,22 @@ Realms of Chaos: installDir: Realms of Chaos: {} launch: - /Dosbox/dosbox: - - arguments: '-conf \"..\\CHAOS.conf\" -noconsole -c' + "/Dosbox/dosbox": + - arguments: "-conf \\\"..\\\\CHAOS.conf\\\" -noconsole -c" when: - os: linux store: steam - workingDir: /Dosbox - /Realms of Chaos.app: + workingDir: "/Dosbox" + "/Realms of Chaos.app": - when: - os: mac store: steam - /Realms of Chaos/dosbox/dosbox.exe: - - arguments: '-conf \"..\\CHAOS.conf\" -noconsole -c' + "/Realms of Chaos/dosbox/dosbox.exe": + - arguments: "-conf \\\"..\\\\CHAOS.conf\\\" -noconsole -c" when: - os: windows store: steam - workingDir: /Realms of Chaos/dosbox + workingDir: "/Realms of Chaos/dosbox" steam: id: 358320 Realms of Conquest: @@ -426840,7 +428035,7 @@ Realms of Darkness: installDir: Realms of Darkness: {} launch: - /Realms Of Darkness.exe: + "/Realms Of Darkness.exe": - when: - os: windows store: steam @@ -426850,13 +428045,13 @@ Realms of Magic: installDir: Realms of Magic: {} launch: - /Windows32/RealmsOfMagic.exe: + "/Windows32/RealmsOfMagic.exe": - when: - bit: 32 os: windows store: steam - workingDir: /Windows32 - /Windows64/RealmsOfMagic.vbs: + workingDir: "/Windows32" + "/Windows64/RealmsOfMagic.vbs": - when: - bit: 64 os: windows @@ -426867,7 +428062,7 @@ Realms of Supremacy: installDir: Realms_of_Supremacy: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -426875,12 +428070,12 @@ Realms of Supremacy: id: 866900 Realms of the Haunting: files: - /ROTH.INI: + "/ROTH.INI": tags: - config when: - os: dos - /SAVEGAME: + "/SAVEGAME": tags: - save when: @@ -426890,19 +428085,19 @@ Realms of the Haunting: installDir: Realms of the Haunting: {} launch: - /dosbox/dosbox.exe: - - arguments: ' -conf \"..\\dosboxROTH.conf\" -conf \"..\\dosboxROTH_single.conf\" -noconsole -c exit' + "/dosbox/dosbox.exe": + - arguments: " -conf \\\"..\\\\dosboxROTH.conf\\\" -conf \\\"..\\\\dosboxROTH_single.conf\\\" -noconsole -c exit" when: - os: windows store: steam - workingDir: /DOSBOX + workingDir: "/DOSBOX" steam: id: 292390 Realmstone: installDir: Realmstone: {} launch: - /Realmstone.exe: + "/Realmstone.exe": - when: - os: windows store: steam @@ -426910,13 +428105,13 @@ Realmstone: id: 841580 Realpolitiks: files: - /Saves: + "/Saves": tags: - save when: - os: windows - os: linux - /unity3d/Jujubee S_A_/Realpolitiks: + "/unity3d/Jujubee S_A_/Realpolitiks": tags: - config when: @@ -426931,20 +428126,20 @@ Realpolitiks: installDir: Realpolitiks: {} launch: - /realpolitiks.app/Contents/MacOS/realpolitiks: + "/realpolitiks.app/Contents/MacOS/realpolitiks": - when: - os: mac store: steam - /realpolitiks.exe: + "/realpolitiks.exe": - when: - os: windows store: steam - /realpolitiks.x86: + "/realpolitiks.x86": - when: - bit: 32 os: linux store: steam - /realpolitiks.x86_64: + "/realpolitiks.x86_64": - when: - bit: 64 os: linux @@ -426953,7 +428148,7 @@ Realpolitiks: id: 553260 Realpolitiks II: files: - /Save: + "/Save": tags: - config - save @@ -426964,15 +428159,15 @@ Realpolitiks II: installDir: Realpolitiks II: {} launch: - /RP2.app/Contents/MacOS/RP2: + "/RP2.app/Contents/MacOS/RP2": - when: - os: mac store: steam - /RP2.exe: + "/RP2.exe": - when: - os: windows store: steam - /RP2.x86_64: + "/RP2.x86_64": - when: - bit: 64 os: linux @@ -426988,7 +428183,7 @@ Reanimation Inc.: installDir: Reanimation Inc: {} launch: - /Reanimation inc.exe: + "/Reanimation inc.exe": - when: - os: windows store: steam @@ -426998,16 +428193,16 @@ Reaper - Tale of a Pale Swordsman: installDir: Reaper: {} launch: - /Reaper: + "/Reaper": - when: - os: linux store: steam - /Reaper.app/Contents/MacOS/Reaper: + "/Reaper.app/Contents/MacOS/Reaper": - when: - bit: 64 os: mac store: steam - /Reaper.exe: + "/Reaper.exe": - when: - os: windows store: steam @@ -427020,7 +428215,7 @@ Reaping Rewards: id: 563470 Reassembly: files: - /data: + "/data": tags: - config when: @@ -427030,15 +428225,15 @@ Reassembly: installDir: Reassembly: {} launch: - /Reassembly.app: + "/Reassembly.app": - when: - os: mac store: steam - /linux/ReassemblySteam32: + "/linux/ReassemblySteam32": - when: - os: linux store: steam - /win32/ReassemblyRelease.exe: + "/win32/ReassemblyRelease.exe": - when: - os: windows store: steam @@ -427048,19 +428243,19 @@ Reaxxion: installDir: Reaxxion: {} launch: - /Reaxxion.exe: + "/Reaxxion.exe": - when: - store: steam steam: id: 15950 Rebel Cops: files: - /AppData/LocalLow/Weappy/Rebel Cops/Save.sav: + "/AppData/LocalLow/Weappy/Rebel Cops/Save.sav": tags: - save when: - os: windows - /AppData/LocalLow/Weappy/Rebel Cops/Settings.xml: + "/AppData/LocalLow/Weappy/Rebel Cops/Settings.xml": tags: - config when: @@ -427070,15 +428265,15 @@ Rebel Cops: installDir: Rebel Cops: {} launch: - /Rebel Cops.app: + "/Rebel Cops.app": - when: - os: mac store: steam - /Rebel Cops.exe: + "/Rebel Cops.exe": - when: - os: windows store: steam - /Rebel Cops.x86_64: + "/Rebel Cops.x86_64": - when: - os: linux store: steam @@ -427092,7 +428287,7 @@ Rebel Forces: installDir: Rebel Forces: {} launch: - /RebelForces.exe: + "/RebelForces.exe": - when: - os: windows store: steam @@ -427100,12 +428295,12 @@ Rebel Forces: id: 979080 Rebel Galaxy: files: - /Library/Application Support/RebelGalaxy: + "/Library/Application Support/RebelGalaxy": tags: - save when: - os: mac - /My Games/Double Damage Games/RebelGalaxy: + "/My Games/Double Damage Games/RebelGalaxy": tags: - config - save @@ -427116,11 +428311,11 @@ Rebel Galaxy: installDir: RebelGalaxy: {} launch: - /Launcher.app: + "/Launcher.app": - when: - os: mac store: steam - /steamlauncher.exe: + "/steamlauncher.exe": - when: - os: windows store: steam @@ -427128,7 +428323,7 @@ Rebel Galaxy: id: 290300 Rebel Galaxy Outlaw: files: - /My Games/Double Damage Games/RebelGalaxyOutlaw: + "/My Games/Double Damage Games/RebelGalaxyOutlaw": tags: - config - save @@ -427139,25 +428334,25 @@ Rebel Galaxy Outlaw: installDir: RebelGalaxyOutlaw: {} launch: - /SteamLauncher.exe: + "/SteamLauncher.exe": - when: - store: steam steam: id: 910830 -'Rebel Inc: Escalation': +"Rebel Inc: Escalation": installDir: Rebel Inc Escalation: {} launch: - /Rebel Inc. Escalation.app: + "/Rebel Inc. Escalation.app": - when: - os: mac store: steam - /Rebel Inc. Escalation.exe: + "/Rebel Inc. Escalation.exe": - when: - os: windows store: steam registry: - 'HKEY_CURRENT_USER/Software/Ndemic Creations/Rebel Inc: Escalation': + "HKEY_CURRENT_USER/Software/Ndemic Creations/Rebel Inc: Escalation": tags: - config steam: @@ -427166,15 +428361,15 @@ Rebel Wings: installDir: Rebel Wings: {} launch: - /RebelWings.app/Contents/MacOS/RebelWings: + "/RebelWings.app/Contents/MacOS/RebelWings": - when: - os: mac store: steam - /RebelWings.exe: + "/RebelWings.exe": - when: - os: windows store: steam - /RebelWings.x86: + "/RebelWings.x86": - when: - os: linux store: steam @@ -427184,15 +428379,15 @@ Rebellion Again: installDir: Rebellion Again: {} launch: - /ChiefForLinux.x86: + "/ChiefForLinux.x86": - when: - os: linux store: steam - /ChiefForMac.app: + "/ChiefForMac.app": - when: - os: mac store: steam - /ChiefForWindows.exe: + "/ChiefForWindows.exe": - when: - os: windows store: steam @@ -427202,11 +428397,11 @@ Rebels & Redcoats: installDir: Rebels and Redcoats: {} launch: - /rebelsandredcoats.app: + "/rebelsandredcoats.app": - when: - os: mac store: steam - /rebelsandredcoats.exe: + "/rebelsandredcoats.exe": - when: - os: windows store: steam @@ -427216,7 +428411,7 @@ Rebirth: installDir: Rebirth: {} launch: - /Rebirth.exe: + "/Rebirth.exe": - when: - bit: 64 os: windows @@ -427235,7 +428430,7 @@ Rebirth of Island: installDir: Rebirth of Island: {} launch: - /Rebirth of Island.exe: + "/Rebirth of Island.exe": - when: - os: windows store: steam @@ -427258,7 +428453,7 @@ Reboot: installDir: Reboot: {} launch: - /Reboot.exe: + "/Reboot.exe": - when: - store: steam steam: @@ -427270,7 +428465,7 @@ Reborn In Wild City 迷城重生: installDir: Reborn In Wild City: {} launch: - /wmt.exe: + "/wmt.exe": - when: - os: windows store: steam @@ -427280,20 +428475,20 @@ Rebound: installDir: Rebound: {} launch: - /Rebound.app: + "/Rebound.app": - when: - os: mac store: steam - /rebound.exe: + "/rebound.exe": - when: - os: windows store: steam - /rebound.x86: + "/rebound.x86": - when: - bit: 32 os: linux store: steam - /rebound.x86_64: + "/rebound.x86_64": - when: - bit: 64 os: linux @@ -427307,7 +428502,7 @@ Rebound Ball: installDir: Rebound Ball: {} launch: - /Rebound Ball.exe: + "/Rebound Ball.exe": - when: - os: windows store: steam @@ -427315,17 +428510,17 @@ Rebound Ball: id: 1195170 Rebound Dodgeball Evolved: files: - /Rebound_4_12/Saved/Config/WindowsNoEditor: + "/Rebound_4_12/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /Rebound_4_12/Saved/SaveGames: + "/Rebound_4_12/Saved/SaveGames": tags: - save when: - os: windows - /Rebound_4_12/Saved/SaveGames/GraphicsSettings.sav: + "/Rebound_4_12/Saved/SaveGames/GraphicsSettings.sav": tags: - config when: @@ -427333,7 +428528,7 @@ Rebound Dodgeball Evolved: installDir: Rebound: {} launch: - /Rebound_4_12.exe: + "/Rebound_4_12.exe": - when: - os: windows store: steam @@ -427344,14 +428539,14 @@ Rebound VR: Rebound VR: {} steam: id: 931200 -'Rebuild 3: Gangs of Deadsville': +"Rebuild 3: Gangs of Deadsville": files: - /com.sarahnorthway.rebuild3/Local Store/#SharedObjects: + "/com.sarahnorthway.rebuild3/Local Store/#SharedObjects": tags: - save when: - os: windows - /com.sarahnorthway.rebuild3/Local Store/config: + "/com.sarahnorthway.rebuild3/Local Store/config": tags: - config when: @@ -427361,11 +428556,11 @@ Rebound VR: installDir: Rebuild Gangs of Deadsville: {} launch: - /Rebuild3Mac.app/Contents/MacOS/Rebuild3: + "/Rebuild3Mac.app/Contents/MacOS/Rebuild3": - when: - os: mac store: steam - /game/Rebuild3.exe: + "/game/Rebuild3.exe": - when: - os: windows store: steam @@ -427375,7 +428570,7 @@ Rec Center Tycoon: installDir: Rec Center Tycoon: {} launch: - /Rec_Center_Tycoon.exe: + "/Rec_Center_Tycoon.exe": - when: - os: windows store: steam @@ -427392,7 +428587,7 @@ Rec Room: id: 471710 Receiver: files: - /.config/unity3d/Wolfire Games/Receiver: + "/.config/unity3d/Wolfire Games/Receiver": tags: - config when: @@ -427400,15 +428595,15 @@ Receiver: installDir: Receiver: {} launch: - /Receiver.app: + "/Receiver.app": - when: - os: mac store: steam - /Receiver.exe: + "/Receiver.exe": - when: - os: windows store: steam - /receiver: + "/receiver": - when: - os: linux store: steam @@ -427420,13 +428615,13 @@ Receiver: id: 234190 Receiver 2: files: - /AppData/LocalLow/Wolfire Games/Receiver2: + "/AppData/LocalLow/Wolfire Games/Receiver2": tags: - config - save when: - os: windows - /.config/unity32/Wolfire Games/Receiver2: + "/.config/unity32/Wolfire Games/Receiver2": tags: - config when: @@ -427434,16 +428629,16 @@ Receiver 2: installDir: Receiver 2: {} launch: - /Receiver2: + "/Receiver2": - when: - bit: 64 os: linux store: steam - /Receiver2.app: + "/Receiver2.app": - when: - os: mac store: steam - /Receiver2.exe: + "/Receiver2.exe": - when: - bit: 64 os: windows @@ -427454,24 +428649,24 @@ Recession: installDir: Recession: {} launch: - /Recession.app: + "/Recession.app": - when: - os: mac store: steam - /Recession.exe: + "/Recession.exe": - when: - os: windows store: steam steam: id: 510360 -'Recettear: An Item Shop''s Tale': +"Recettear: An Item Shop's Tale": files: - /recet.ini: + "/recet.ini": tags: - config when: - os: windows - /save.dat: + "/save.dat": tags: - save when: @@ -427481,10 +428676,10 @@ Recession: installDir: Recettear: {} launch: - /custom.exe: + "/custom.exe": - when: - store: steam - /recettear.exe: + "/recettear.exe": - when: - store: steam steam: @@ -427496,7 +428691,7 @@ Recipe for Disaster: installDir: Recipe for Disaster: {} launch: - /Recipe for Disaster.exe: + "/Recipe for Disaster.exe": - when: - store: steam steam: @@ -427505,15 +428700,15 @@ Reckless Space Pirates: installDir: Reckless Space Pirates: {} launch: - /Reckless Space Pirates.app/Contents/MacOS/Reckless Space Pirates: + "/Reckless Space Pirates.app/Contents/MacOS/Reckless Space Pirates": - when: - os: mac store: steam - /RecklessSpacePirates: + "/RecklessSpacePirates": - when: - os: linux store: steam - /RecklessSpacePirates.exe: + "/RecklessSpacePirates.exe": - when: - os: windows store: steam @@ -427523,15 +428718,15 @@ Reckpunk: installDir: Reckpunk: {} launch: - /Reckpunk.exe: + "/Reckpunk.exe": - when: - os: windows store: steam - /launch.sh: + "/launch.sh": - when: - os: mac store: steam - /reckpunk: + "/reckpunk": - when: - bit: 64 os: linux @@ -427542,7 +428737,7 @@ Recluses: installDir: recluses: {} launch: - /reclusesnew.exe: + "/reclusesnew.exe": - when: - os: windows store: steam @@ -427550,7 +428745,7 @@ Recluses: id: 1217880 Recoil: files: - /savedgames: + "/savedgames": tags: - save when: @@ -427563,7 +428758,7 @@ Recoil (2018): installDir: recoil: {} launch: - /recoil.exe: + "/recoil.exe": - when: - bit: 64 os: windows @@ -427572,13 +428767,13 @@ Recoil (2018): id: 844520 Recompile: files: - /AppData/LocalLow/Phigames/Recompile/Recompile.sav: + "/AppData/LocalLow/Phigames/Recompile/Recompile.sav": tags: - config - save when: - os: windows - /Packages/PlugInDigital.Recompile_9e3ank8rmgj0t/SystemAppData/wgs/: + "/Packages/PlugInDigital.Recompile_9e3ank8rmgj0t/SystemAppData/wgs/": tags: - save when: @@ -427589,7 +428784,7 @@ Recompile: installDir: Recompile: {} launch: - /Recompile.exe: + "/Recompile.exe": - when: - bit: 64 os: windows @@ -427604,11 +428799,11 @@ Reconquest: installDir: reconquest: {} launch: - /reconquest.app: + "/reconquest.app": - when: - os: mac store: steam - /reconquest.exe: + "/reconquest.exe": - when: - os: windows store: steam @@ -427618,15 +428813,15 @@ Record Life: installDir: Record Life: {} launch: - /Game: + "/Game": - when: - os: linux store: steam - /Game.app: + "/Game.app": - when: - os: mac store: steam - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -427636,7 +428831,7 @@ Record Store Nightmare: installDir: Record Store Nightmare: {} launch: - /Record_Store_Nightmare.exe: + "/Record_Store_Nightmare.exe": - when: - store: steam steam: @@ -427645,22 +428840,22 @@ Record of Lodoss War Online: installDir: Record of Lodoss War Online: {} launch: - /LodossLauncher.exe: + "/LodossLauncher.exe": - arguments: steam when: - os: windows store: steam steam: id: 949690 -'Record of Lodoss War: Deedlit in Wonder Labyrinth': +"Record of Lodoss War: Deedlit in Wonder Labyrinth": files: - /Deedlit_in_Wonder_Labyrinth: + "/Deedlit_in_Wonder_Labyrinth": tags: - config - save when: - os: windows - /Packages/ActiveGamingMediaInc.RecordofLodossWar-DeedlitinWo_4tj796bhrrsp0/SystemAppData/wgs: + "/Packages/ActiveGamingMediaInc.RecordofLodossWar-DeedlitinWo_4tj796bhrrsp0/SystemAppData/wgs": tags: - save when: @@ -427669,14 +428864,14 @@ Record of Lodoss War Online: installDir: Record of Lodoss War-Deedlit in Wonder Labyrinth-: {} launch: - /Deedlit in Wonder Labyrinth.exe: + "/Deedlit in Wonder Labyrinth.exe": - when: - store: steam steam: id: 1203630 -'Record of Rozen War: ALiBAT': +"Record of Rozen War: ALiBAT": files: - /ALiBAT.sav: + "/ALiBAT.sav": tags: - save when: @@ -427685,7 +428880,7 @@ Recourse: installDir: Recourse: {} launch: - /Recourse.exe: + "/Recourse.exe": - when: - bit: 64 os: windows @@ -427696,11 +428891,11 @@ Recovery Search & Rescue Simulation: installDir: Recovery Search and Rescue: {} launch: - /SearchAndRescue/SearchAndRescue.exe: - - arguments: '-console' + "/SearchAndRescue/SearchAndRescue.exe": + - arguments: "-console" when: - store: steam - workingDir: /SearchAndRescue + workingDir: "/SearchAndRescue" steam: id: 262870 Recreational Dreaming: @@ -427712,18 +428907,18 @@ Recruits: installDir: Recruits: {} launch: - /Binaries/Win32/UDK.exe: + "/Binaries/Win32/UDK.exe": - when: - os: windows store: steam - workingDir: /Binaries/Win32 + workingDir: "/Binaries/Win32" steam: id: 246880 RectRacer: installDir: RectRacer: {} launch: - /RectRacer.exe: + "/RectRacer.exe": - when: - os: windows store: steam @@ -427731,12 +428926,12 @@ RectRacer: id: 663080 Recursed: files: - /userdata//497780/remote: + "/userdata//497780/remote": tags: - save when: - store: steam - /recursed.ini: + "/recursed.ini": tags: - config when: @@ -427744,15 +428939,15 @@ Recursed: installDir: Recursed: {} launch: - /Recursed.app/Contents/MacOS/Recursed: + "/Recursed.app/Contents/MacOS/Recursed": - when: - os: mac store: steam - /Recursed.exe: + "/Recursed.exe": - when: - os: windows store: steam - /recursed.sh: + "/recursed.sh": - when: - bit: 64 os: linux @@ -427763,15 +428958,15 @@ Recursion Deluxe: installDir: Recursion Deluxe: {} launch: - /RecursionDeluxe.app: + "/RecursionDeluxe.app": - when: - os: mac store: steam - /RecursionDeluxe.exe: + "/RecursionDeluxe.exe": - when: - os: windows store: steam - /RecursionDeluxe.x86: + "/RecursionDeluxe.x86": - when: - os: linux store: steam @@ -427781,11 +428976,11 @@ Recursive Dragon: installDir: Recursive Dragon: {} launch: - /Recursive Dragon.app/Contents/MacOS/Recursive Dragon: + "/Recursive Dragon.app/Contents/MacOS/Recursive Dragon": - when: - os: mac store: steam - /Recursive Dragon.exe: + "/Recursive Dragon.exe": - when: - os: windows store: steam @@ -427795,7 +428990,7 @@ Recursive Pain: installDir: Recursive Pain: {} launch: - /RecursivePain.exe: + "/RecursivePain.exe": - when: - os: windows store: steam @@ -427807,7 +429002,7 @@ Recursive Ruin: installDir: Recursive Ruin: {} launch: - /Recursive Ruin.exe: + "/Recursive Ruin.exe": - when: - os: windows store: steam @@ -427817,17 +429012,17 @@ Recycle: installDir: RECYCLE: {} launch: - /recycle.exe: + "/recycle.exe": - when: - os: windows store: steam steam: id: 294830 -Recycler's Terminal: +"Recycler's Terminal": installDir: - Recycler's Terminal: {} + "Recycler's Terminal": {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -427837,7 +429032,7 @@ Recyclomania: installDir: Recyclomania: {} launch: - /Recyclomania.exe: + "/Recyclomania.exe": - when: - os: windows store: steam @@ -427850,7 +429045,7 @@ Red: id: 573770 Red Alliance: files: - /Assets/SaveData: + "/Assets/SaveData": tags: - save when: @@ -427858,7 +429053,7 @@ Red Alliance: installDir: Red Alliance: {} launch: - /Red Alliance.exe: + "/Red Alliance.exe": - when: - os: windows store: steam @@ -427876,7 +429071,7 @@ Red Baron: id: 263940 Red Baron 3D: files: - /rbprefs.dat: + "/rbprefs.dat": tags: - config when: @@ -427894,11 +429089,11 @@ Red Barton and The Sky Pirates: installDir: Red Barton and The Sky Pirates: {} launch: - /redbarton.app/Contents/MacOS/redbarton: + "/redbarton.app/Contents/MacOS/redbarton": - when: - os: mac store: steam - /redbarton.exe: + "/redbarton.exe": - when: - os: windows store: steam @@ -427908,15 +429103,15 @@ Red Beard Labyrinth: installDir: Red Beard Labyrinth: {} launch: - /Red Beard Labyrinth.app/Contents/MacOS/Red Beard Labyrinth: + "/Red Beard Labyrinth.app/Contents/MacOS/Red Beard Labyrinth": - when: - os: mac store: steam - /Red Beard Labyrinth.exe: + "/Red Beard Labyrinth.exe": - when: - os: windows store: steam - /Red Beard Labyrinth.x86_64: + "/Red Beard Labyrinth.x86_64": - when: - os: linux store: steam @@ -427926,7 +429121,7 @@ Red Bit Ninja: installDir: Red Bit Ninja: {} launch: - /RedBitNinja.exe: + "/RedBitNinja.exe": - when: - os: windows store: steam @@ -427936,7 +429131,7 @@ Red Black Poker: installDir: Red Black Video Poker: {} launch: - /Poker.exe: + "/Poker.exe": - when: - os: windows store: steam @@ -427946,7 +429141,7 @@ Red Blue: installDir: Red or Blue: {} launch: - /Red Blue.exe: + "/Red Blue.exe": - when: - os: windows store: steam @@ -427966,34 +429161,34 @@ Red Bull X-Fighters: installDir: Red Bull X-Fighters: {} launch: - /xfighters.exe: + "/xfighters.exe": - when: - store: steam steam: id: 61230 -'Red Comrades 2: For the Great Justice - Reloaded': +"Red Comrades 2: For the Great Justice - Reloaded": files: - /AppData/LocalLow/BUKA Development/Red Comrades 2: + "/AppData/LocalLow/BUKA Development/Red Comrades 2": tags: - save when: - os: windows - /AppData/LocalLow/BUKA Development/Red Comrades 2/settings.xml: + "/AppData/LocalLow/BUKA Development/Red Comrades 2/settings.xml": tags: - config when: - os: windows - /unity3d/BUKA Development/Red Comrades 2: + "/unity3d/BUKA Development/Red Comrades 2": tags: - save when: - os: linux - /unity3d/BUKA Development/Red Comrades 2/prefs: + "/unity3d/BUKA Development/Red Comrades 2/prefs": tags: - config when: - os: linux - /unity3d/BUKA Development/Red Comrades 2/settings.xml: + "/unity3d/BUKA Development/Red Comrades 2/settings.xml": tags: - config when: @@ -428001,20 +429196,20 @@ Red Bull X-Fighters: installDir: Red Comrades 2 For the Great Justice. Reloaded: {} launch: - /petka2.app: + "/petka2.app": - when: - os: mac store: steam - /petka2.exe: + "/petka2.exe": - when: - os: windows store: steam - /petka2.x86: + "/petka2.x86": - when: - bit: 32 os: linux store: steam - /petka2.x86_64: + "/petka2.x86_64": - when: - bit: 64 os: linux @@ -428025,53 +429220,53 @@ Red Bull X-Fighters: - config steam: id: 443360 -'Red Comrades 3: Return of Alaska - Reloaded': +"Red Comrades 3: Return of Alaska - Reloaded": installDir: Red Comrades 3 Return of Alaska: {} launch: - /macOS.app: + "/macOS.app": - when: - os: mac store: steam - /petka3.exe: + "/petka3.exe": - when: - os: windows store: steam - /petka3.x86: + "/petka3.x86": - when: - bit: 32 os: linux store: steam - /petka3.x86_64: + "/petka3.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 546220 -'Red Comrades Save the Galaxy: Reloaded': +"Red Comrades Save the Galaxy: Reloaded": files: - /AppData/LocalLow/BUKA Development/Red Comrades: + "/AppData/LocalLow/BUKA Development/Red Comrades": tags: - save when: - os: windows - /AppData/LocalLow/BUKA Development/Red Comrades/settings.xml: + "/AppData/LocalLow/BUKA Development/Red Comrades/settings.xml": tags: - config when: - os: windows - /unity3d/BUKA Development/Red Comrades: + "/unity3d/BUKA Development/Red Comrades": tags: - save when: - os: linux - /unity3d/BUKA Development/Red Comrades/prefs: + "/unity3d/BUKA Development/Red Comrades/prefs": tags: - config when: - os: linux - /unity3d/BUKA Development/Red Comrades/settings.xml: + "/unity3d/BUKA Development/Red Comrades/settings.xml": tags: - config when: @@ -428082,20 +429277,20 @@ Red Bull X-Fighters: installDir: Red Comrades Save the Galaxy Reloaded: {} launch: - /petka.app: + "/petka.app": - when: - os: mac store: steam - /petka.exe: + "/petka.exe": - when: - os: windows store: steam - /petka.x86: + "/petka.x86": - when: - bit: 32 os: linux store: steam - /petka.x86_64: + "/petka.x86_64": - when: - bit: 64 os: linux @@ -428106,58 +429301,58 @@ Red Bull X-Fighters: - config steam: id: 415610 -'Red Crow Mysteries: Legion': +"Red Crow Mysteries: Legion": installDir: Red Crow Mysteries Legion: {} launch: - /Legion.app/Contents/MacOS/Legion: + "/Legion.app/Contents/MacOS/Legion": - when: - os: mac store: steam - workingDir: /Legion.app/Contents/MacOS - /legion.exe: + workingDir: "/Legion.app/Contents/MacOS" + "/legion.exe": - when: - os: windows store: steam steam: id: 372890 -'Red Crucible 2: Reborn': +"Red Crucible 2: Reborn": installDir: War Trigger Classic: {} launch: - /War Trigger Classic.app: + "/War Trigger Classic.app": - when: - os: mac store: steam - /War Trigger Classic.exe: + "/War Trigger Classic.exe": - when: - os: windows store: steam steam: id: 916930 -'Red Crucible: Firestorm': +"Red Crucible: Firestorm": installDir: WT3: {} launch: - /War Trigger 3.app: + "/War Trigger 3.app": - when: - os: mac store: steam - /War Trigger 3.exe: + "/War Trigger 3.exe": - when: - os: windows store: steam steam: id: 298240 -'Red Crucible: Reloaded': +"Red Crucible: Reloaded": installDir: WT2: {} launch: - /War Trigger 2.app: + "/War Trigger 2.app": - when: - os: mac store: steam - /War Trigger 2.exe: + "/War Trigger 2.exe": - when: - os: windows store: steam @@ -428175,7 +429370,7 @@ Red Dead Pixel Man: installDir: Red Dead Pixel Man: {} launch: - /Red Dead Pixel Man.exe: + "/Red Dead Pixel Man.exe": - when: - os: windows store: steam @@ -428183,12 +429378,12 @@ Red Dead Pixel Man: id: 988190 Red Dead Redemption 2: files: - /Rockstar Games/Red Dead Redemption 2/Profiles/: + "/Rockstar Games/Red Dead Redemption 2/Profiles/": tags: - save when: - os: windows - /Rockstar Games/Red Dead Redemption 2/Settings: + "/Rockstar Games/Red Dead Redemption 2/Settings": tags: - config when: @@ -428199,7 +429394,7 @@ Red Dead Redemption 2: installDir: Red Dead Redemption 2: {} launch: - /PlayRDR2.exe: + "/PlayRDR2.exe": - when: - bit: 64 os: windows @@ -428210,36 +429405,36 @@ Red Death: installDir: Red Death: {} launch: - /Red Death.exe: + "/Red Death.exe": - when: - os: windows store: steam steam: id: 591560 -'Red Death: 8Feet': +"Red Death: 8Feet": installDir: Red Death: {} launch: - /8Feet.exe: + "/8Feet.exe": - when: - store: steam steam: id: 1087610 Red Eclipse: files: - /.redeclipse: + "/.redeclipse": tags: - config - save when: - os: linux - /Library/Application Support/redeclipse: + "/Library/Application Support/redeclipse": tags: - config - save when: - os: mac - /My Games/Red Eclipse: + "/My Games/Red Eclipse": tags: - config - save @@ -428248,21 +429443,21 @@ Red Eclipse: installDir: Red Eclipse 2: {} launch: - /bin/amd64/redeclipse.exe: + "/bin/amd64/redeclipse.exe": - when: - bit: 64 os: windows store: steam - /bin/redeclipse.app/Contents/MacOS/redeclipse: + "/bin/redeclipse.app/Contents/MacOS/redeclipse": - when: - os: mac store: steam - /bin/x86/redeclipse.exe: + "/bin/x86/redeclipse.exe": - when: - bit: 32 os: windows store: steam - /redeclipse.sh: + "/redeclipse.sh": - when: - os: linux store: steam @@ -428272,33 +429467,33 @@ Red Embrace: installDir: Red Embrace: {} launch: - /RedEmbrace.exe: + "/RedEmbrace.exe": - when: - os: windows store: steam - /RedEmbrace.sh: + "/RedEmbrace.sh": - when: - os: linux store: steam - /RedEmbrace/renpy.app: + "/RedEmbrace/renpy.app": - when: - os: mac store: steam steam: id: 796940 -'Red Embrace: Hollywood': +"Red Embrace: Hollywood": installDir: Red Embrace Hollywood: {} launch: - /RedEmbraceHollywood.app/Contents/MacOS/RedEmbraceHollywood: + "/RedEmbraceHollywood.app/Contents/MacOS/RedEmbraceHollywood": - when: - os: mac store: steam - /RedEmbraceHollywood.sh: + "/RedEmbraceHollywood.sh": - when: - os: linux store: steam - /lib/windows-i686/RedEmbraceHollywood.exe: + "/lib/windows-i686/RedEmbraceHollywood.exe": - when: - os: windows store: steam @@ -428306,17 +429501,17 @@ Red Embrace: id: 904520 Red Faction: files: - /players.cfg: + "/players.cfg": tags: - config when: - os: windows - /players_osx.cfg: + "/players_osx.cfg": tags: - config when: - os: mac - /savegame: + "/savegame": tags: - save when: @@ -428327,7 +429522,7 @@ Red Faction: installDir: Red Faction: {} launch: - /RedFaction.exe: + "/RedFaction.exe": - when: - store: steam registry: @@ -428338,21 +429533,22 @@ Red Faction: id: 20530 Red Faction Guerrilla Re-Mars-tered: files: - /userdata//667720/remote: + "/userdata//667720/remote": tags: - save when: - store: steam - /kaiko/rfg/config.ini: + "/kaiko/rfg/config.ini": tags: - config when: - os: windows - /GOG.com/Galaxy/Applications/51153410217180642/Storage/Shared/Files/autocloud/save: + "/GOG.com/Galaxy/Applications/51153410217180642/Storage/Shared/Files/autocloud/save": tags: - save when: - - store: gog + - os: windows + store: gog gog: id: 2029222893 id: @@ -428363,7 +429559,7 @@ Red Faction Guerrilla Re-Mars-tered: installDir: Red Faction Guerrilla Re-MARS-tered: {} launch: - /rfg.exe: + "/rfg.exe": - when: - os: windows store: steam @@ -428371,12 +429567,12 @@ Red Faction Guerrilla Re-Mars-tered: id: 667720 Red Faction II: files: - /profiles: + "/profiles": tags: - save when: - os: windows - /rf2_config.ini: + "/rf2_config.ini": tags: - config when: @@ -428386,24 +429582,25 @@ Red Faction II: installDir: Red Faction II: {} launch: - /Red Faction II.exe: + "/Red Faction II.exe": - when: - store: steam steam: id: 20550 -'Red Faction: Armageddon': +"Red Faction: Armageddon": files: - /userdata//55110/remote: + "/userdata//55110/remote": tags: - save when: - os: windows store: steam - /GOG.com/Galaxy/Applications/51153456908161049/Storage: + "/GOG.com/Galaxy/Applications/51153456908161049/Storage": tags: - save when: - - store: gog + - os: windows + store: gog gog: id: 1577877141 id: @@ -428420,41 +429617,41 @@ Red Faction II: installDir: red faction armageddon: {} launch: - /rf4_launcher.exe: + "/rf4_launcher.exe": - when: - store: steam steam: id: 55110 -'Red Faction: Guerrilla': +"Red Faction: Guerrilla": files: - /userdata//20500/remote: + "/userdata//20500/remote": tags: - save when: - store: steam - /My Games/Red Faction Guerrilla/Options/rfg_display_options.rfgs_pc: + "/My Games/Red Faction Guerrilla/Options/rfg_display_options.rfgs_pc": tags: - config when: - os: windows - /My Games/Red Faction Guerrilla/Saves: + "/My Games/Red Faction Guerrilla/Saves": tags: - save when: - os: windows id: steamExtra: - - 343010 - 336170 + - 343010 installDir: Red Faction Guerrilla: {} launch: - /rfg.exe: - - arguments: '-nod3d11' + "/rfg.exe": + - arguments: "-nod3d11" when: - os: windows store: steam - /rfg_launcher.exe: + "/rfg_launcher.exe": - when: - os: windows store: steam @@ -428467,7 +429664,7 @@ Red Forest: installDir: TheRakeRedForest: {} launch: - /TheRakeRedForest.exe: + "/TheRakeRedForest.exe": - when: - os: windows store: steam @@ -428476,15 +429673,15 @@ Red Forest: Red Frost: steam: id: 1179020 -'Red Fuse: Rolling Explosive Device': +"Red Fuse: Rolling Explosive Device": installDir: RED Fuse: {} launch: - /RedFuse.app: + "/RedFuse.app": - when: - os: mac store: steam - /RedFuse.exe: + "/RedFuse.exe": - when: - os: windows store: steam @@ -428494,15 +429691,15 @@ Red Game Without A Great Name: installDir: RedGame: {} launch: - /RedGame.app/Contents/MacOS/RedGame: + "/RedGame.app/Contents/MacOS/RedGame": - when: - os: mac store: steam - /RedGame.exe: + "/RedGame.exe": - when: - os: windows store: steam - /RedGame.x86: + "/RedGame.x86": - when: - os: linux store: steam @@ -428512,28 +429709,28 @@ Red Gate: installDir: Red Gate: {} launch: - '/${redagate}.exe': + "/${redagate}.exe": - when: - os: windows store: steam steam: id: 1076600 -'Red Goblin: Cursed Forest': +"Red Goblin: Cursed Forest": installDir: Red Goblin Cursed Forest: {} launch: - /RedGoblinV1.01.exe: - - arguments: '-popupwindow ' + "/RedGoblinV1.01.exe": + - arguments: "-popupwindow " when: - os: windows store: steam steam: id: 364480 -'Red Goddess: Inner World': +"Red Goddess: Inner World": installDir: Red Goddess Inner World: {} launch: - /RG.exe: + "/RG.exe": - when: - store: steam steam: @@ -428542,19 +429739,19 @@ Red Haze: installDir: Red Haze: {} launch: - /Game: - - arguments: '--in-process-gpu' + "/Game": + - arguments: "--in-process-gpu" when: - bit: 64 os: linux store: steam - /Game.app: - - arguments: '--in-process-gpu' + "/Game.app": + - arguments: "--in-process-gpu" when: - os: mac store: steam - /nw.exe: - - arguments: '--in-process-gpu' + "/nw.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam @@ -428564,11 +429761,11 @@ Red Horizon: installDir: Red Horizon: {} launch: - /RedHorizon.app: + "/RedHorizon.app": - when: - os: mac store: steam - /RedHorizon.exe: + "/RedHorizon.exe": - when: - os: windows store: steam @@ -428578,11 +429775,11 @@ Red Hot Ricochet: installDir: RedHotRicochet: {} launch: - /RedHotRicochet.app: + "/RedHotRicochet.app": - when: - os: mac store: steam - /RedHotRicochet.exe: + "/RedHotRicochet.exe": - when: - os: windows store: steam @@ -428590,12 +429787,12 @@ Red Hot Ricochet: id: 768640 Red Hot Vengeance: files: - /RedHotVengeance/save: + "/RedHotVengeance/save": tags: - save when: - os: windows - /RedHotVengeance/settings.ini: + "/RedHotVengeance/settings.ini": tags: - config when: @@ -428603,7 +429800,7 @@ Red Hot Vengeance: installDir: RED HOT VENGEANCE: {} launch: - /RedHotVengeance.exe: + "/RedHotVengeance.exe": - when: - os: windows store: steam @@ -428613,27 +429810,27 @@ Red Island: installDir: Red Island: {} launch: - /Red Island.exe: + "/Red Island.exe": - when: - store: steam steam: id: 1114740 -Red Johnson's Chronicles - 1+2 - Steam Special Edition: +"Red Johnson's Chronicles - 1+2 - Steam Special Edition": files: - /Anuman/RedJohnson/GAME: + "/Anuman/RedJohnson/GAME": tags: - save when: - os: windows - /Anuman/RedJohnson/OPTIONS: + "/Anuman/RedJohnson/OPTIONS": tags: - config when: - os: windows installDir: - Red Johnson's Chronicles - 1+2 - Steam Special Edition: {} + "Red Johnson's Chronicles - 1+2 - Steam Special Edition": {} launch: - /redjohnson.exe: + "/redjohnson.exe": - when: - bit: 32 os: windows @@ -428644,7 +429841,7 @@ Red Lake: installDir: Red Lake: {} launch: - /Red Lake.exe: + "/Red Lake.exe": - when: - os: windows store: steam @@ -428655,11 +429852,11 @@ Red Matter: Red Matter: {} steam: id: 966680 -'Red Number: Prologue': +"Red Number: Prologue": installDir: Red Number Prologue: {} launch: - '/Red Number - Prologue[ENG]/MyProject.exe': + "/Red Number - Prologue[ENG]/MyProject.exe": - when: - os: windows store: steam @@ -428669,7 +429866,7 @@ Red Obsidian Remnant: installDir: ROR: {} launch: - /ROR.exe: + "/ROR.exe": - when: - os: windows store: steam @@ -428677,29 +429874,29 @@ Red Obsidian Remnant: id: 610960 Red Ocean: files: - /Red Ocean: + "/Red Ocean": tags: - config when: - os: windows - /Red Ocean/SavedGames: + "/Red Ocean/SavedGames": tags: - save when: - os: windows -'Red Orchestra 2: Heroes of Stalingrad': +"Red Orchestra 2: Heroes of Stalingrad": files: - /My Games/RedOrchestra2/ROGame/Config: + "/My Games/RedOrchestra2/ROGame/Config": tags: - config when: - os: windows - /My Games/RedOrchestra2SP/ROGame/Config: + "/My Games/RedOrchestra2SP/ROGame/Config": tags: - config when: - os: windows - /My Games/RedOrchestra2SP/ROGame/Saves: + "/My Games/RedOrchestra2SP/ROGame/Saves": tags: - save when: @@ -428707,19 +429904,19 @@ Red Ocean: installDir: Red Orchestra 2: {} launch: - /binaries/win32/rogame.exe: + "/binaries/win32/rogame.exe": - when: - store: steam steam: id: 35450 -'Red Orchestra: Ostfront 41-45': +"Red Orchestra: Ostfront 41-45": files: - /System/*.ini: + "/System/*.ini": tags: - config when: - os: windows - /.redorchestra: + "/.redorchestra": tags: - config - save @@ -428728,27 +429925,27 @@ Red Ocean: installDir: Red Orchestra: {} launch: - /Red Orchestra.app: + "/Red Orchestra.app": - when: - os: mac store: steam - workingDir: /System - /System/RedOrchestra.exe: + workingDir: "/System" + "/System/RedOrchestra.exe": - when: - os: windows store: steam - /System/redorchestra-bin: + "/System/redorchestra-bin": - when: - os: linux store: steam - workingDir: /System + workingDir: "/System" steam: id: 1200 -'Red Planet: Survive': +"Red Planet: Survive": installDir: Red Planet Survive: {} launch: - /Survive On Mars.exe: + "/Survive On Mars.exe": - when: - os: windows store: steam @@ -428758,7 +429955,7 @@ Red Riding Hood - Star Crossed Lovers: installDir: Red Riding Hood - Star Crossed Lovers: {} launch: - /ChaperonRouge.exe: + "/ChaperonRouge.exe": - when: - os: windows store: steam @@ -428768,15 +429965,15 @@ Red Risk: installDir: Red Risk: {} launch: - /Red Risk.app: + "/Red Risk.app": - when: - os: mac store: steam - /Red Risk.exe: + "/Red Risk.exe": - when: - os: windows store: steam - /Red Risk.x86: + "/Red Risk.x86": - when: - os: linux store: steam @@ -428786,7 +429983,7 @@ Red Ronin: installDir: Red Ronin: {} launch: - /Red Ronin.exe: + "/Red Ronin.exe": - when: - os: windows store: steam @@ -428796,30 +429993,30 @@ Red Room: installDir: redroom: {} launch: - /Red Room.exe: + "/Red Room.exe": - when: - os: windows store: steam steam: id: 1033510 -'Red Rope: Don''t Fall Behind': +"Red Rope: Don't Fall Behind": installDir: - Red Rope - Don't Fall Behind: {} + "Red Rope - Don't Fall Behind": {} launch: - /Red Rope - Don't Fall Behind.app: + "/Red Rope - Don't Fall Behind.app": - when: - os: mac store: steam - /Red Rope - Don't Fall Behind.exe: + "/Red Rope - Don't Fall Behind.exe": - when: - os: windows store: steam - /Red Rope - Don't Fall Behind.x86: + "/Red Rope - Don't Fall Behind.x86": - when: - bit: 32 os: linux store: steam - /Red Rope - Don't Fall Behind.x86_64: + "/Red Rope - Don't Fall Behind.x86_64": - when: - bit: 64 os: linux @@ -428830,7 +430027,7 @@ Red Rose Rising: installDir: Red Rose Rising: {} launch: - /Red Rose Rising.exe: + "/Red Rose Rising.exe": - when: - os: windows store: steam @@ -428840,7 +430037,7 @@ Red Rover: installDir: Red Rover: {} launch: - /RedRover.exe: + "/RedRover.exe": - when: - os: windows store: steam @@ -428850,80 +430047,80 @@ Red Ruin: installDir: Red Ruin: {} launch: - /SpaceGame.exe: + "/SpaceGame.exe": - when: - bit: 64 os: windows store: steam steam: id: 1111730 -'Red Solstice 2: Survivors': +"Red Solstice 2: Survivors": installDir: The Red Solstice 2 Survivors: {} launch: - /survivors.exe: - - arguments: '-Installed' + "/survivors.exe": + - arguments: "-Installed" when: - bit: 64 os: windows store: steam steam: id: 768520 -'Red Spider Anecdote: Triangle': +"Red Spider Anecdote: Triangle": installDir: RSLA-Triangle: {} launch: - /RSLA.app: + "/RSLA.app": - when: - os: mac store: steam - /RSLA.exe: + "/RSLA.exe": - when: - os: windows store: steam steam: id: 769630 -'Red Spider2: Exiled': +"Red Spider2: Exiled": installDir: RedSpider2-Exiled: {} launch: - /RedSpider2-Exiled.exe: + "/RedSpider2-Exiled.exe": - when: - os: windows store: steam - /RedSpiderLily2.app: + "/RedSpiderLily2.app": - when: - os: mac store: steam steam: id: 560790 -'Red Spider3: A Heroine Never Dies': +"Red Spider3: A Heroine Never Dies": installDir: RedSpider3-AHeroineNeverDies: {} launch: - /RedSpider3.app: + "/RedSpider3.app": - when: - os: mac store: steam - /RedSpider3.exe: + "/RedSpider3.exe": - when: - os: windows store: steam steam: id: 857410 -'Red Spider: Vengeance': +"Red Spider: Vengeance": installDir: RedSpider-Vengeance: {} launch: - /RedSpider-Vengeance.exe: + "/RedSpider-Vengeance.exe": - when: - os: windows store: steam - /RedSpiderLily.app: + "/RedSpiderLily.app": - when: - os: mac store: steam - /game.exe: + "/game.exe": - when: - store: steam steam: @@ -428935,7 +430132,7 @@ Red Stone Online: installDir: Red Stone Online: {} launch: - /Launcher.exe: + "/Launcher.exe": - arguments: steam when: - os: windows @@ -428944,17 +430141,17 @@ Red Stone Online: id: 350700 Red String of Fate: files: - /game/saves: + "/game/saves": tags: - save when: - os: windows - /renpy/config.py: + "/renpy/config.py": tags: - config when: - os: windows - /renpy/Red String of Fate-1466417547: + "/renpy/Red String of Fate-1466417547": tags: - save when: @@ -428962,15 +430159,15 @@ Red String of Fate: installDir: Red String of Fate: {} launch: - /Red_String_of_Fate.app/Contents/MacOS/Red_String_of_Fate: + "/Red_String_of_Fate.app/Contents/MacOS/Red_String_of_Fate": - when: - os: mac store: steam - /Red_String_of_Fate.exe: + "/Red_String_of_Fate.exe": - when: - os: windows store: steam - /Red_String_of_Fate.sh: + "/Red_String_of_Fate.sh": - when: - os: linux store: steam @@ -428980,7 +430177,7 @@ Red Tractor Tycoon: installDir: Red Tractor Tycoon: {} launch: - /RedTractorTycoon.exe: + "/RedTractorTycoon.exe": - when: - os: windows store: steam @@ -428988,12 +430185,12 @@ Red Tractor Tycoon: id: 984250 Red Trigger: files: - /RedTrigger/Saved/Config: + "/RedTrigger/Saved/Config": tags: - config when: - os: windows - /RedTrigger/Saved/SaveGames: + "/RedTrigger/Saved/SaveGames": tags: - save when: @@ -429001,7 +430198,7 @@ Red Trigger: installDir: Red Trigger: {} launch: - /RedTrigger.exe: + "/RedTrigger.exe": - when: - os: windows store: steam @@ -429011,23 +430208,23 @@ Red Wake Carnage: installDir: Red Wake Carnage: {} launch: - /RedWakeCarnage.app/Contents/MacOS/RedWakeCarnage: + "/RedWakeCarnage.app/Contents/MacOS/RedWakeCarnage": - when: - os: mac store: steam - /RedWakeCarnage.exe: + "/RedWakeCarnage.exe": - when: - os: windows store: steam - /RedWakeCarnage.x86: + "/RedWakeCarnage.x86": - when: - os: linux store: steam steam: id: 656610 -'Red Wings: Aces of the Sky': +"Red Wings: Aces of the Sky": files: - /AppData/LocalLow/All in! Games/Red Wings Aces of the Sky/MySaveData.save: + "/AppData/LocalLow/All in! Games/Red Wings Aces of the Sky/MySaveData.save": tags: - save when: @@ -429035,7 +430232,7 @@ Red Wake Carnage: installDir: Red Wings: {} launch: - /Red Wings Aces of the Sky.exe: + "/Red Wings Aces of the Sky.exe": - when: - store: steam steam: @@ -429049,15 +430246,15 @@ Red and Blue ~ Cycles of Existence: installDir: Red and Blue ~ Cycles of Existence: {} launch: - /CyclesExistence/CyclesExistence.app: + "/CyclesExistence/CyclesExistence.app": - when: - os: mac store: steam - /CyclesExistence/CyclesExistence.exe: + "/CyclesExistence/CyclesExistence.exe": - when: - os: windows store: steam - /CyclesExistence/CyclesExistence.sh: + "/CyclesExistence/CyclesExistence.sh": - when: - os: linux store: steam @@ -429067,7 +430264,7 @@ Red is Dead: installDir: Red is Dead: {} launch: - /Red is Dead.exe: + "/Red is Dead.exe": - when: - os: windows store: steam @@ -429077,21 +430274,21 @@ Red points: installDir: Red points: {} launch: - /Red points.exe: + "/Red points.exe": - when: - os: windows store: steam steam: id: 975200 -Red's Kingdom: +"Red's Kingdom": installDir: - Red's Kingdom: {} + "Red's Kingdom": {} launch: - /Red's Kingdom.app/Contents/MacOS/Red's Kingdom: + "/Red's Kingdom.app/Contents/MacOS/Red's Kingdom": - when: - os: mac store: steam - /Red's Kingdom.exe: + "/Red's Kingdom.exe": - when: - bit: 32 os: windows @@ -429102,8 +430299,8 @@ RedEyes: installDir: RedEyes: {} launch: - /redeyes.exe: - - arguments: '--in-process-gpu' + "/redeyes.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam @@ -429113,11 +430310,11 @@ RedSun RTS: installDir: RedSun RTS: {} launch: - /RedSun.app: + "/RedSun.app": - when: - os: mac store: steam - /RedSunRTSSteam.exe: + "/RedSunRTSSteam.exe": - when: - os: windows store: steam @@ -429127,11 +430324,11 @@ Redactem: installDir: Redactem: {} launch: - /osx64/redactem.app/Contents/MacOS/nwjs: + "/osx64/redactem.app/Contents/MacOS/nwjs": - when: - os: mac store: steam - /win32/nw.exe: + "/win32/nw.exe": - when: - os: windows store: steam @@ -429139,7 +430336,7 @@ Redactem: id: 502400 Redcon: files: - /AppData/Local/Hexage/Redcon: + "/AppData/Local/Hexage/Redcon": tags: - save when: @@ -429147,17 +430344,17 @@ Redcon: installDir: REDCON: {} launch: - /REDCON.app/Contents/MacOS/REDCON: + "/REDCON.app/Contents/MacOS/REDCON": - when: - bit: 64 os: mac store: steam - /Redcon: + "/Redcon": - when: - bit: 64 os: linux store: steam - /Redcon.exe: + "/Redcon.exe": - when: - os: windows store: steam @@ -429165,12 +430362,12 @@ Redcon: id: 449710 Redeemer: files: - /ExampleGame/Saved: + "/ExampleGame/Saved": tags: - save when: - os: windows - /ExampleGame/Saved/Config/WindowsNoEditor: + "/ExampleGame/Saved/Config/WindowsNoEditor": tags: - config when: @@ -429178,7 +430375,7 @@ Redeemer: installDir: Redeemer: {} launch: - /ExampleGame/Binaries/Win64/ExampleGame-Win64-Shipping.exe: + "/ExampleGame/Binaries/Win64/ExampleGame-Win64-Shipping.exe": - when: - os: windows store: steam @@ -429188,65 +430385,65 @@ Redemption: installDir: Redemption: {} launch: - /Redemption.exe: + "/Redemption.exe": - when: - os: windows store: steam steam: id: 330880 -'Redemption Cemetery: Bitter Frost': +"Redemption Cemetery: Bitter Frost": installDir: - Redemption Cemetery Bitter Frost Collector's Edition: {} + "Redemption Cemetery Bitter Frost Collector's Edition": {} launch: - /Redemption_Cemetery_Bitter_Frost_CE.exe: + "/Redemption_Cemetery_Bitter_Frost_CE.exe": - when: - store: steam steam: id: 545910 -'Redemption Cemetery: Children''s Plight': +"Redemption Cemetery: Children's Plight": installDir: - Redemption Cemetery Children's Plight Collector's Edition: {} + "Redemption Cemetery Children's Plight Collector's Edition": {} launch: - /RedemptionCemetery_ChildrensPlight.exe: + "/RedemptionCemetery_ChildrensPlight.exe": - when: - os: windows store: steam steam: id: 995910 -'Redemption Cemetery: Clock of Fate': +"Redemption Cemetery: Clock of Fate": installDir: - Redemption Cemetery Clock of Fate Collector's Edition: {} + "Redemption Cemetery Clock of Fate Collector's Edition": {} launch: - /RedemptionCemetery_ClockOfFate_CE.exe: + "/RedemptionCemetery_ClockOfFate_CE.exe": - when: - os: windows store: steam steam: id: 786050 -'Redemption Cemetery: Grave Testimony': +"Redemption Cemetery: Grave Testimony": installDir: Redemption Cemetery Grave Testimony Collector’s Edition: {} launch: - /RedemptionCemetery_GraveTestimonyCE.exe: + "/RedemptionCemetery_GraveTestimonyCE.exe": - when: - os: windows store: steam steam: id: 866750 -'Redemption Cemetery: Salvation of the Lost': +"Redemption Cemetery: Salvation of the Lost": installDir: Redemption Cemetery Salvation of the Lost CE: {} launch: - /RedemptionCemetery_SalvationOfTheLost_CE.exe: + "/RedemptionCemetery_SalvationOfTheLost_CE.exe": - when: - store: steam steam: id: 466050 -'Redemption Cemetery: The Island of the Lost': +"Redemption Cemetery: The Island of the Lost": installDir: - Redemption Cemetery The Island of the Lost Collector's Edition: {} + "Redemption Cemetery The Island of the Lost Collector's Edition": {} launch: - /Redemption_Cemetery_The_Island_of_the_Lost_CE.exe: + "/Redemption_Cemetery_The_Island_of_the_Lost_CE.exe": - when: - os: windows store: steam @@ -429256,44 +430453,44 @@ Redemption Reapers: installDir: Redemption Reapers: {} launch: - /RedemptionReapers.exe: + "/RedemptionReapers.exe": - when: - bit: 64 os: windows store: steam steam: id: 2139300 -Redemption's Guild: +"Redemption's Guild": installDir: - Redemption's Guild: {} + "Redemption's Guild": {} steam: id: 1117200 -'Redemption: Eternal Quest': +"Redemption: Eternal Quest": installDir: Redemption Eternal Quest: {} launch: - /redemption.exe: + "/redemption.exe": - when: - os: windows store: steam steam: id: 390880 -'Redemption: Saints And Sinners': +"Redemption: Saints And Sinners": installDir: Redemption: {} launch: - /REDEMPTION.exe: + "/REDEMPTION.exe": - when: - os: windows store: steam steam: id: 364910 -'Redemption: Tyranny of Daetorem': +"Redemption: Tyranny of Daetorem": installDir: Redemption - Tyranny of Daetorem: {} launch: - /Redemption.exe: - - arguments: '--in-process-gpu' + "/Redemption.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam @@ -429301,7 +430498,7 @@ Redemption's Guild: id: 773620 Redfall: files: - /Saved Games/Arkane Studios/Redfall: + "/Saved Games/Arkane Studios/Redfall": tags: - save when: @@ -429314,7 +430511,7 @@ Redfall: installDir: Redfall: {} launch: - /Redfall/Binaries/Win64/Redfall.exe: + "/Redfall/Binaries/Win64/Redfall.exe": - when: - store: steam steam: @@ -429324,14 +430521,14 @@ Redfoot Bluefoot Dancing: Redfoot Bluefoot Dancing: {} steam: id: 646440 -Redhook's Revenge!: +"Redhook's Revenge!": files: - /*.SAV: + "/*.SAV": tags: - save when: - os: dos - /REDHOOK.FIL: + "/REDHOOK.FIL": tags: - config when: @@ -429340,7 +430537,7 @@ Redie: installDir: Redie: {} launch: - /redie.sh: + "/redie.sh": - when: - os: linux store: steam @@ -429348,12 +430545,12 @@ Redie: id: 536990 Redirection: files: - /userdata//305760/local/settings.txt: + "/userdata//305760/local/settings.txt": tags: - config when: - store: steam - /userdata//305760/remote/progress.txt: + "/userdata//305760/remote/progress.txt": tags: - save when: @@ -429361,15 +430558,15 @@ Redirection: installDir: Redirection: {} launch: - /Redirection: + "/Redirection": - when: - os: linux store: steam - /Redirection.app: + "/Redirection.app": - when: - os: mac store: steam - /Redirection.exe: + "/Redirection.exe": - when: - os: windows store: steam @@ -429379,7 +430576,7 @@ Redium: installDir: Redium: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -429387,12 +430584,12 @@ Redium: id: 667420 Redline: files: - /redline.cfg: + "/redline.cfg": tags: - config when: - os: windows - /saved games: + "/saved games": tags: - save when: @@ -429402,7 +430599,7 @@ Redline: installDir: Redline: {} launch: - /redline.exe: + "/redline.exe": - when: - os: windows store: steam @@ -429410,12 +430607,12 @@ Redline: id: 328460 Redline Racer: files: - /menudata.ini: + "/menudata.ini": tags: - config when: - os: windows - /misc/datebase.ddb: + "/misc/datebase.ddb": tags: - save when: @@ -429424,27 +430621,27 @@ Redline Ultimate Racing: installDir: Redline Ultimate Racing: {} launch: - /redracing.exe: + "/redracing.exe": - when: - os: windows store: steam steam: id: 791570 -Redneck Deer Huntin': +"Redneck Deer Huntin'": installDir: - Redneck Deer Huntin': {} + "Redneck Deer Huntin'": {} launch: - /DOSBox/dosbox.app/Contents/MacOS/DOSBox: - - arguments: '-conf \"./dosboxRR.conf\" -conf \"./dosboxRR_hunting.conf\" -noconsole' + "/DOSBox/dosbox.app/Contents/MacOS/DOSBox": + - arguments: "-conf \\\"./dosboxRR.conf\\\" -conf \\\"./dosboxRR_hunting.conf\\\" -noconsole" when: - os: mac store: steam - /Launch Redneck.bat: + "/Launch Redneck.bat": - when: - os: windows store: steam - /dosbox/dosbox: - - arguments: '-conf \"./dosboxRR.conf\" -conf \"./dosboxRR_hunting.conf\" -noconsole' + "/dosbox/dosbox": + - arguments: "-conf \\\"./dosboxRR.conf\\\" -conf \\\"./dosboxRR_hunting.conf\\\" -noconsole" when: - os: linux store: steam @@ -429452,12 +430649,12 @@ Redneck Deer Huntin': id: 580930 Redneck Kentucky and the Next Generation Chickens: files: - /Saves: + "/Saves": tags: - save when: - os: windows - /System/*.ini: + "/System/*.ini": tags: - config when: @@ -429465,17 +430662,17 @@ Redneck Kentucky and the Next Generation Chickens: installDir: Chicken Hot Grill: {} launch: - /System/kury.exe: + "/System/kury.exe": - when: - store: steam - workingDir: /system + workingDir: "/system" steam: id: 837040 Redneck Racers: installDir: Redneck Racers: {} launch: - /RR.exe: + "/RR.exe": - when: - os: windows store: steam @@ -429483,12 +430680,12 @@ Redneck Racers: id: 288730 Redneck Rampage: files: - /GAME*.SAV: + "/GAME*.SAV": tags: - save when: - os: dos - /REDNECK.CFG: + "/REDNECK.CFG": tags: - config when: @@ -429501,17 +430698,17 @@ Redneck Rampage: installDir: Redneck Rampage: {} launch: - /DOSBox/dosbox.app/Contents/MacOS/DOSBox: - - arguments: '-conf \"./dosboxRR.conf\" -conf \"./dosboxRR_single.conf\" -noconsole' + "/DOSBox/dosbox.app/Contents/MacOS/DOSBox": + - arguments: "-conf \\\"./dosboxRR.conf\\\" -conf \\\"./dosboxRR_single.conf\\\" -noconsole" when: - os: mac store: steam - /Launch Redneck Rampage.bat: + "/Launch Redneck Rampage.bat": - when: - os: windows store: steam - /dosbox/dosbox: - - arguments: '-conf \"./dosboxRR.conf\" -conf \"./dosboxRR_single.conf\" -noconsole' + "/dosbox/dosbox": + - arguments: "-conf \\\"./dosboxRR.conf\\\" -conf \\\"./dosboxRR_single.conf\\\" -noconsole" when: - os: linux store: steam @@ -429519,12 +430716,12 @@ Redneck Rampage: id: 565550 Redneck Rampage Rides Again: files: - /GAME*.SAV: + "/GAME*.SAV": tags: - save when: - os: dos - /REDNECK.CFG: + "/REDNECK.CFG": tags: - config when: @@ -429534,17 +430731,17 @@ Redneck Rampage Rides Again: installDir: Redneck Rampage Rides Again: {} launch: - /DOSBox/dosbox.app/Contents/MacOS/DOSBox: - - arguments: '-conf \"./dosboxRR.conf\" -conf \"./dosboxRR_rides_again.conf\" -noconsole' + "/DOSBox/dosbox.app/Contents/MacOS/DOSBox": + - arguments: "-conf \\\"./dosboxRR.conf\\\" -conf \\\"./dosboxRR_rides_again.conf\\\" -noconsole" when: - os: mac store: steam - /Launch Redneck client.bat: + "/Launch Redneck client.bat": - when: - os: windows store: steam - /dosbox/dosbox: - - arguments: '-conf \"./dosboxRR.conf\" -conf \"./dosboxRR_rides_again.conf\" -noconsole' + "/dosbox/dosbox": + - arguments: "-conf \\\"./dosboxRR.conf\\\" -conf \\\"./dosboxRR_rides_again.conf\\\" -noconsole" when: - os: linux store: steam @@ -429552,12 +430749,12 @@ Redneck Rampage Rides Again: id: 580940 Redout: files: - /redout/Saved/SaveGames: + "/redout/Saved/SaveGames": tags: - save when: - os: windows - /redout/Saved/Config/WindowsNoEditor: + "/redout/Saved/Config/WindowsNoEditor": tags: - config when: @@ -429567,8 +430764,8 @@ Redout: installDir: Redout: {} launch: - /redout.exe: - - arguments: '-vrdisable' + "/redout.exe": + - arguments: "-vrdisable" when: - bit: 64 os: windows @@ -429577,7 +430774,7 @@ Redout: id: 517710 Redout 2: files: - /Redout2/Saved/Config/WindowsNoEditor: + "/Redout2/Saved/Config/WindowsNoEditor": tags: - config when: @@ -429591,44 +430788,44 @@ Redout 2: installDir: Redout2: {} launch: - /Redout2.exe: + "/Redout2.exe": - when: - os: windows store: steam steam: id: 1799930 -'Redout: Space Assault': +"Redout: Space Assault": gog: id: 1431127790 installDir: Redout Space Assault: {} launch: - /SpaceAssault.exe: + "/SpaceAssault.exe": - when: - bit: 64 os: windows store: steam steam: id: 886060 -'Redrum: Dead Diary': +"Redrum: Dead Diary": installDir: Redrum Dead Diary: {} launch: - /Redrum.app: + "/Redrum.app": - when: - os: mac store: steam - /Redrum.exe: + "/Redrum.exe": - when: - os: windows store: steam steam: id: 541720 -'Redrum: Time Lies': +"Redrum: Time Lies": installDir: Redrum Time Lies: {} launch: - /Redrum2.exe: + "/Redrum2.exe": - when: - os: windows store: steam @@ -429641,18 +430838,18 @@ Redshift VR: id: 825100 Redshirt: files: - /.config/unity3d/Positech Games/Redshirt: + "/.config/unity3d/Positech Games/Redshirt": tags: - config when: - os: linux - /Documents/Saved Games/Redshirt: + "/Documents/Saved Games/Redshirt": tags: - save when: - os: mac - os: linux - /Saved Games/Redshirt: + "/Saved Games/Redshirt": tags: - save when: @@ -429662,15 +430859,15 @@ Redshirt: installDir: Redshirt: {} launch: - /Redshirt.app: + "/Redshirt.app": - when: - os: mac store: steam - /Redshirt.exe: + "/Redshirt.exe": - when: - os: windows store: steam - /Redshirt.sh: + "/Redshirt.sh": - when: - os: linux store: steam @@ -429685,11 +430882,11 @@ Redswood VR: Redswood: {} steam: id: 499760 -'Redux: Dark Matters': +"Redux: Dark Matters": installDir: ReduxDarkMatters: {} launch: - /Redux_Starter.exe: + "/Redux_Starter.exe": - when: - os: windows store: steam @@ -429702,7 +430899,7 @@ Reef Shot: installDir: ReefShot: {} launch: - /ReefShot.exe: + "/ReefShot.exe": - when: - os: windows store: steam @@ -429712,17 +430909,17 @@ Reek: installDir: Reek: {} launch: - /Reek.exe: + "/Reek.exe": - when: - os: windows store: steam steam: id: 1212300 -'Reel Fishing: Road Trip Adventure': +"Reel Fishing: Road Trip Adventure": installDir: Reel Fishing Road Trip Adventure: {} launch: - /ReelFishing_RoadTripAdventure.exe: + "/ReelFishing_RoadTripAdventure.exe": - when: - bit: 64 os: windows @@ -429733,7 +430930,7 @@ Reentry - An Orbital Simulator: installDir: Reentry - An Orbital Simulator: {} launch: - /ReEntry.exe: + "/ReEntry.exe": - when: - bit: 64 os: windows @@ -429742,12 +430939,12 @@ Reentry - An Orbital Simulator: id: 882140 RefRain - Prism Memories: files: - /config.txt: + "/config.txt": tags: - config when: - os: windows - /global.dat: + "/global.dat": tags: - save when: @@ -429755,7 +430952,7 @@ RefRain - Prism Memories: installDir: RefRain - prism memories -: {} launch: - /RefRain.exe: + "/RefRain.exe": - when: - store: steam steam: @@ -429768,11 +430965,11 @@ Reficul: Reficul: {} steam: id: 698110 -'Refight:Burning Engine': +"Refight:Burning Engine": installDir: Refight: {} launch: - /Refight-BurningEngine.exe: + "/Refight-BurningEngine.exe": - when: - bit: 64 os: windows @@ -429783,7 +430980,7 @@ Refill your Roguelike: installDir: RefillYourRoguelike: {} launch: - /Refill your Roguelike.exe: + "/Refill your Roguelike.exe": - when: - os: windows store: steam @@ -429791,12 +430988,12 @@ Refill your Roguelike: id: 949910 RefleX: files: - /SITER SKAIN/RefleX/RefleX.ini: + "/SITER SKAIN/RefleX/RefleX.ini": tags: - config when: - os: windows - /SITER SKAIN/RefleX/RefleX.sav: + "/SITER SKAIN/RefleX/RefleX.sav": tags: - save when: @@ -429807,7 +431004,7 @@ RefleX: installDir: RefleX: {} launch: - /RefleX.exe: + "/RefleX.exe": - when: - store: steam steam: @@ -429819,7 +431016,7 @@ Reflecting Fate: installDir: Reflecting Fate: {} launch: - /reflect/bin32/refl.exe: + "/reflect/bin32/refl.exe": - when: - os: windows store: steam @@ -429829,7 +431026,7 @@ Reflecting Reflections: installDir: Reflecting Reflections: {} launch: - /Reflecting Reflections.exe: + "/Reflecting Reflections.exe": - when: - bit: 64 os: windows @@ -429840,15 +431037,15 @@ Reflection of Mine: installDir: Reflection of Mine: {} launch: - /nw: + "/nw": - when: - os: linux store: steam - /nw.exe: + "/nw.exe": - when: - os: windows store: steam - /reflectionofmine.app: + "/reflectionofmine.app": - when: - os: mac store: steam @@ -429858,21 +431055,21 @@ Reflection of a Fallen Feather: installDir: Reflection of a Fallen Feather: {} launch: - /Reflection of a Fallen Feather.bin.osx: + "/Reflection of a Fallen Feather.bin.osx": - when: - os: mac store: steam - /Reflection of a Fallen Feather.bin.x86: + "/Reflection of a Fallen Feather.bin.x86": - when: - bit: 32 os: linux store: steam - /Reflection of a Fallen Feather.bin.x86_64: + "/Reflection of a Fallen Feather.bin.x86_64": - when: - bit: 64 os: linux store: steam - /Reflection of a Fallen Feather.exe: + "/Reflection of a Fallen Feather.exe": - when: - os: windows store: steam @@ -429882,41 +431079,41 @@ Reflections: installDir: Reflections: {} launch: - /Reflections.app: + "/Reflections.app": - when: - os: mac store: steam - /Reflections.exe: + "/Reflections.exe": - when: - os: windows store: steam - /Reflections.x86: + "/Reflections.x86": - when: - bit: 32 os: linux store: steam - /Reflections.x86_64: + "/Reflections.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 352360 -'Reflections of Life: Equilibrium': +"Reflections of Life: Equilibrium": installDir: - Reflections of Life Equilibrium Collector's Edition: {} + "Reflections of Life Equilibrium Collector's Edition": {} launch: - /RoL_Equilibrium_CE.exe: + "/RoL_Equilibrium_CE.exe": - when: - os: windows store: steam steam: id: 1075750 -'Reflections of Life: Tree of Dreams': +"Reflections of Life: Tree of Dreams": installDir: - Reflections of Life Tree of Dreams Collector's Edition: {} + "Reflections of Life Tree of Dreams Collector's Edition": {} launch: - /RoL_TreeOfDreamsCE.exe: + "/RoL_TreeOfDreamsCE.exe": - when: - os: windows store: steam @@ -429924,22 +431121,22 @@ Reflections: id: 926090 Reflections ~Dreams and Reality~: files: - /game/saves/*.save: + "/game/saves/*.save": tags: - save when: - os: windows - /game/saves/persistent: + "/game/saves/persistent": tags: - config when: - os: windows - /renpy/Reflections D&R-1463789239/*.save: + "/renpy/Reflections D&R-1463789239/*.save": tags: - save when: - os: windows - /renpy/Reflections D&R-1463789239/persistent: + "/renpy/Reflections D&R-1463789239/persistent": tags: - config when: @@ -429947,25 +431144,25 @@ Reflections ~Dreams and Reality~: installDir: Reflections ~Dreams and Reality~: {} launch: - /Reflections D&R.app: + "/Reflections D&R.app": - when: - os: mac store: steam - /Reflections D&R.exe: + "/Reflections D&R.exe": - when: - os: windows store: steam - /Reflections D&R.sh: + "/Reflections D&R.sh": - when: - os: linux store: steam steam: id: 1035700 -'Reflector: Bug Hunt': +"Reflector: Bug Hunt": installDir: Reflector Bug Hunt: {} launch: - /Reflector_BH.exe: + "/Reflector_BH.exe": - when: - os: windows store: steam @@ -429975,7 +431172,7 @@ Reflex (2017): installDir: Just another puzzle game: {} launch: - /reflex.exe: + "/reflex.exe": - when: - os: windows store: steam @@ -429985,7 +431182,7 @@ Reflex Aim Trainer: installDir: Reflex: {} launch: - /Reflex.exe: + "/Reflex.exe": - when: - bit: 64 os: windows @@ -429996,7 +431193,7 @@ Reflex Arena: installDir: reflexfps: {} launch: - /reflex.exe: + "/reflex.exe": - when: - os: windows store: steam @@ -430006,7 +431203,7 @@ ReflexShot: installDir: ReflexShot: {} launch: - /FPSPracticeGame.exe: + "/FPSPracticeGame.exe": - when: - os: windows store: steam @@ -430019,7 +431216,7 @@ Reformers: installDir: Reformers: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -430029,7 +431226,7 @@ Reformers Intl Ver: installDir: Reformers-Intl: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -430039,11 +431236,11 @@ Refract: installDir: Refract: {} launch: - /Refract.app/Contents/MacOS/Refract: + "/Refract.app/Contents/MacOS/Refract": - when: - os: mac store: steam - /Refract.exe: + "/Refract.exe": - when: - os: windows store: steam @@ -430053,16 +431250,16 @@ Refraction: installDir: Refraction: {} launch: - /Refraction.app/Contents/MacOS/Refraction: + "/Refraction.app/Contents/MacOS/Refraction": - when: - os: mac store: steam - /Refraction.exe: + "/Refraction.exe": - when: - bit: 64 os: windows store: steam - /Refraction.x86_64: + "/Refraction.x86_64": - when: - bit: 64 os: linux @@ -430073,7 +431270,7 @@ Reframed: installDir: Reframed: {} launch: - /Binaries/Win32/UDK.exe: + "/Binaries/Win32/UDK.exe": - when: - os: windows store: steam @@ -430081,32 +431278,32 @@ Reframed: id: 815860 Refunct: files: - /.config/Epic/Refunct/Saved/Config/LinuxNoEditor: + "/.config/Epic/Refunct/Saved/Config/LinuxNoEditor": tags: - config when: - os: linux - /.config/Epic/Refunct/Saved/SaveGames: + "/.config/Epic/Refunct/Saved/SaveGames": tags: - save when: - os: linux - /Library/Application Support/Epic/Refunct/Saved/SaveGames: + "/Library/Application Support/Epic/Refunct/Saved/SaveGames": tags: - save when: - os: mac - /Library/Preferences/Refunct/Mac: + "/Library/Preferences/Refunct/Mac": tags: - config when: - os: mac - /Refunct/Saved/Config/WindowsNoEditor: + "/Refunct/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /Refunct/Saved/SaveGames: + "/Refunct/Saved/SaveGames": tags: - save when: @@ -430114,33 +431311,33 @@ Refunct: installDir: Refunct: {} launch: - /Refunct.app: + "/Refunct.app": - when: - os: mac store: steam - /Refunct/Binaries/Linux/Refunct-Linux-Shipping: + "/Refunct/Binaries/Linux/Refunct-Linux-Shipping": - when: - os: linux store: steam - /Refunct/Binaries/Win32/Refunct-Win32-Shipping.exe: + "/Refunct/Binaries/Win32/Refunct-Win32-Shipping.exe": - when: - os: windows store: steam steam: id: 406150 -'Regalia: Of Men and Monarchs': +"Regalia: Of Men and Monarchs": files: - /AppData/LocalLow/Pixelated Milk/Regalia - Of Men and Monarchs/Default: + "/AppData/LocalLow/Pixelated Milk/Regalia - Of Men and Monarchs/Default": tags: - save when: - os: windows - /unity3d/Pixelated Milk/Regalia - Of Men and Monarchs: + "/unity3d/Pixelated Milk/Regalia - Of Men and Monarchs": tags: - config when: - os: linux - /unity3d/Pixelated Milk/Regalia - Of Men and Monarchs/Default: + "/unity3d/Pixelated Milk/Regalia - Of Men and Monarchs/Default": tags: - save when: @@ -430150,20 +431347,20 @@ Refunct: installDir: Regalia Of Men and Monarchs: {} launch: - /Regalia.app: + "/Regalia.app": - when: - os: mac store: steam - /Regalia.exe: + "/Regalia.exe": - when: - os: windows store: steam - /Regalia.x86: + "/Regalia.x86": - when: - bit: 32 os: linux store: steam - /Regalia.x86_64: + "/Regalia.x86_64": - when: - bit: 64 os: linux @@ -430172,12 +431369,12 @@ Refunct: id: 464150 Regency Solitaire: files: - /Grey Alien Games/Regency Solitaire/RegencySolitaire.ini: + "/Grey Alien Games/Regency Solitaire/RegencySolitaire.ini": tags: - config when: - os: windows - /Grey Alien Games/Regency Solitaire/profiles: + "/Grey Alien Games/Regency Solitaire/profiles": tags: - save when: @@ -430185,11 +431382,11 @@ Regency Solitaire: installDir: Regency Solitaire: {} launch: - /RegencySolitaire.app: + "/RegencySolitaire.app": - when: - os: mac store: steam - /RegencySolitaire.exe: + "/RegencySolitaire.exe": - when: - os: windows store: steam @@ -430207,22 +431404,22 @@ Regenesis Arcade Deluxe: id: 753370 Regeria Hope Episode 1: files: - /saves/*.save: + "/saves/*.save": tags: - save when: - os: windows - /saves/persistent: + "/saves/persistent": tags: - config when: - os: windows - /RenPy/RegeriaHope-1351130176/*.save: + "/RenPy/RegeriaHope-1351130176/*.save": tags: - save when: - os: windows - /RenPy/RegeriaHope-1351130176/persistent: + "/RenPy/RegeriaHope-1351130176/persistent": tags: - config when: @@ -430230,15 +431427,15 @@ Regeria Hope Episode 1: installDir: RegeriaHope: {} launch: - /RegeriaHopeEp1Steam.app: + "/RegeriaHopeEp1Steam.app": - when: - os: mac store: steam - /RegeriaHopeEp1Steam.exe: + "/RegeriaHopeEp1Steam.exe": - when: - os: windows store: steam - /RegeriaHopeEp1Steam.sh: + "/RegeriaHopeEp1Steam.sh": - when: - os: linux store: steam @@ -430248,11 +431445,11 @@ Regimental Chess: installDir: Regimental Chess: {} launch: - /RChess.app: + "/RChess.app": - when: - os: mac store: steam - /RChess.exe: + "/RChess.exe": - when: - os: windows store: steam @@ -430264,7 +431461,7 @@ Regiments: installDir: Regiments: {} launch: - /Regiments.exe: + "/Regiments.exe": - when: - bit: 64 os: windows @@ -430275,7 +431472,7 @@ Reginald Does His Thang: installDir: Reginald Does His Thang: {} launch: - /RDHTVersion1.02.exe: + "/RDHTVersion1.02.exe": - when: - os: windows store: steam @@ -430283,7 +431480,7 @@ Reginald Does His Thang: id: 708870 Regions of Ruin: files: - /Regions of Ruin_Data/gameData.json: + "/Regions of Ruin_Data/gameData.json": tags: - save when: @@ -430293,15 +431490,15 @@ Regions of Ruin: installDir: Regions Of Ruin: {} launch: - /Regions of Ruin.app: + "/Regions of Ruin.app": - when: - os: mac store: steam - /Regions of Ruin.exe: + "/Regions of Ruin.exe": - when: - os: windows store: steam - /Regions of Ruin.x86_64: + "/Regions of Ruin.x86_64": - when: - os: linux store: steam @@ -430315,20 +431512,20 @@ Regular Human Basketball: installDir: Regular Human Basketball: {} launch: - /RegularHumanBasketball.app: + "/RegularHumanBasketball.app": - when: - os: mac store: steam - /RegularHumanBasketball.exe: + "/RegularHumanBasketball.exe": - when: - os: windows store: steam - /RegularHumanBasketball.x86: + "/RegularHumanBasketball.x86": - when: - bit: 32 os: linux store: steam - /RegularHumanBasketball.x86_64: + "/RegularHumanBasketball.x86_64": - when: - bit: 64 os: linux @@ -430339,11 +431536,11 @@ Rehtona: installDir: Rehtona: {} launch: - /Rehtona.app: + "/Rehtona.app": - when: - os: mac store: steam - /Rehtona.exe: + "/Rehtona.exe": - when: - os: windows store: steam @@ -430353,21 +431550,21 @@ Reign of Bullets: installDir: Reign of Bullets: {} launch: - /RoB.exe: + "/RoB.exe": - when: - os: windows store: steam - /RoB.x86: + "/RoB.x86": - when: - bit: 32 os: linux store: steam - /RoB.x86_64: + "/RoB.x86_64": - when: - bit: 64 os: linux store: steam - /RoB_Mac.app: + "/RoB_Mac.app": - when: - os: mac store: steam @@ -430380,8 +431577,8 @@ Reign of Kings: installDir: Reign Of Kings: {} launch: - /Reign of Kings.exe: - - arguments: '-nologger' + "/Reign of Kings.exe": + - arguments: "-nologger" when: - bit: 64 os: windows @@ -430392,15 +431589,15 @@ Reign of the Succubus: installDir: Reign of the Succubus: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam steam: id: 893500 -'Reign: Conflict of Nations': +"Reign: Conflict of Nations": files: - /My Games/1C/reign conflict of nations: + "/My Games/1C/reign conflict of nations": tags: - save when: @@ -430408,7 +431605,7 @@ Reign of the Succubus: installDir: Reign Conflict of Nations: {} launch: - /PSP.exe: + "/PSP.exe": - when: - os: windows store: steam @@ -430416,12 +431613,12 @@ Reign of the Succubus: id: 46380 ReignMaker: files: - /.config/unity3d/Frogdice/ReignMaker: + "/.config/unity3d/Frogdice/ReignMaker": tags: - save when: - os: linux - /AppData/LocalLow/Frogdice/ReignMaker: + "/AppData/LocalLow/Frogdice/ReignMaker": tags: - save when: @@ -430429,15 +431626,15 @@ ReignMaker: installDir: ReignMaker: {} launch: - /ReignMaker: + "/ReignMaker": - when: - os: linux store: steam - /ReignMaker.app: + "/ReignMaker.app": - when: - os: mac store: steam - /ReignMaker.exe: + "/ReignMaker.exe": - when: - os: windows store: steam @@ -430447,7 +431644,7 @@ Reignfall: installDir: Reignfall: {} launch: - /Reignfall.exe: + "/Reignfall.exe": - when: - os: windows store: steam @@ -430457,7 +431654,7 @@ Reigning Cats: installDir: Reigning Cats: {} launch: - /Reigning Cats.exe: + "/Reigning Cats.exe": - when: - os: windows store: steam @@ -430465,7 +431662,7 @@ Reigning Cats: id: 398110 Reigns: files: - /AppData/LocalLow/Nerial/Reigns: + "/AppData/LocalLow/Nerial/Reigns": tags: - save when: @@ -430475,56 +431672,59 @@ Reigns: installDir: Reigns: {} launch: - /Reigns.app/Contents/MacOS/Reigns: + "/Reigns.app/Contents/MacOS/Reigns": - when: - os: mac store: steam - /Reigns.exe: + "/Reigns.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam - /Reigns.x86: + "/Reigns.x86": - when: - bit: 32 os: linux store: steam - /Reigns.x86_64: + "/Reigns.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 474750 -'Reigns: Game of Thrones': +"Reigns: Game of Thrones": gog: id: 2060365190 installDir: ReignsGoT: {} launch: - /ReignsGoT.app/Contents/MacOS/ReignsGoT: + "/ReignsGoT.app/Contents/MacOS/ReignsGoT": - when: - os: mac store: steam - /ReignsGoT.exe: + "/ReignsGoT.exe": - when: - os: windows store: steam - /ReignsGoT.x86: + "/ReignsGoT.x86": - when: - bit: 32 os: linux store: steam - /ReignsGoT.x86_64: + "/ReignsGoT.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 897820 -'Reigns: Her Majesty': +"Reigns: Her Majesty": files: - /AppData/LocalLow/Nerial/Reigns_ Her Majesty: + "/AppData/LocalLow/Nerial/Reigns_ Her Majesty": tags: - save when: @@ -430534,32 +431734,32 @@ Reigns: installDir: Reigns Her Majesty: {} launch: - /Reigns2.app/Contents/MacOS/Reigns2: + "/Reigns2.app/Contents/MacOS/Reigns2": - when: - os: mac store: steam - /Reigns2.exe: + "/Reigns2.exe": - when: - os: windows store: steam - /Reigns2.x86: - - arguments: '-screen-fullscreen 0' + "/Reigns2.x86": + - arguments: "-screen-fullscreen 0" when: - os: linux store: steam - /Reigns2.x86_64: - - arguments: '-screen-fullscreen 0' + "/Reigns2.x86_64": + - arguments: "-screen-fullscreen 0" when: - bit: 64 os: linux store: steam steam: id: 717640 -Reiko's Fragments: +"Reiko's Fragments": installDir: Reikos Fragments: {} launch: - /Reiko.exe: + "/Reiko.exe": - when: - bit: 64 os: windows @@ -430570,7 +431770,7 @@ Reincarnated As A Monster: installDir: Reincarnated As A Monster: {} launch: - /Reincarnated As Monster.exe: + "/Reincarnated As Monster.exe": - when: - os: windows store: steam @@ -430580,25 +431780,25 @@ Reiner Knizia Yellow & Yangtze: installDir: Yellow & Yangtze: {} launch: - /YellowYangtze.app: + "/YellowYangtze.app": - when: - os: mac store: steam - /YellowYangtze.exe: + "/YellowYangtze.exe": - when: - os: windows store: steam steam: id: 965610 -Reiner Knizia's The Confrontation: +"Reiner Knizia's The Confrontation": installDir: - Reiner Knizia's The Confrontation: {} + "Reiner Knizia's The Confrontation": {} launch: - /Reiner Knizia's The Confrontation.app/Contents/MacOS/Reiner Knizia's The Confrontation: + "/Reiner Knizia's The Confrontation.app/Contents/MacOS/Reiner Knizia's The Confrontation": - when: - os: mac store: steam - /Reiner Knizia's The Confrontation.exe: + "/Reiner Knizia's The Confrontation.exe": - when: - os: windows store: steam @@ -430608,14 +431808,14 @@ Rekindling: installDir: Rekindling: {} launch: - /Rekindling.exe: + "/Rekindling.exe": - when: - store: steam steam: id: 661500 Rekoil: files: - /userdata//243320: + "/userdata//243320": tags: - config when: @@ -430623,42 +431823,42 @@ Rekoil: installDir: Rekoil: {} launch: - /Binaries/Win32/Rekoil.exe: + "/Binaries/Win32/Rekoil.exe": - arguments: WeaponRange_PC?Game=Rikochet.RGameInfo_MainMenu?modcontent -modcontent when: - os: windows store: steam - workingDir: /Binaries/Win32 + workingDir: "/Binaries/Win32" - arguments: editor when: - os: windows store: steam - workingDir: /Binaries/Win32 - /Binaries/Win32/RekoilShop.exe: + workingDir: "/Binaries/Win32" + "/Binaries/Win32/RekoilShop.exe": - when: - os: windows store: steam - workingDir: /Binaries/Win32 - /Binaries/Win64/Rekoil.exe: + workingDir: "/Binaries/Win32" + "/Binaries/Win64/Rekoil.exe": - arguments: editor when: - os: windows store: steam - workingDir: /Binaries/Win64 + workingDir: "/Binaries/Win64" steam: id: 243320 -Reksarych's Sudoku: +"Reksarych's Sudoku": installDir: - Reksarych's Sudoku: {} + "Reksarych's Sudoku": {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: id: 981280 Reky: files: - /AppData/LocalLow/beyondthosehills/reky/gs.json: + "/AppData/LocalLow/beyondthosehills/reky/gs.json": tags: - save when: @@ -430666,11 +431866,11 @@ Reky: installDir: reky: {} launch: - /reky.app/Contents/MacOS/reky: + "/reky.app/Contents/MacOS/reky": - when: - os: mac store: steam - /reky.exe: + "/reky.exe": - when: - os: windows store: steam @@ -430685,11 +431885,11 @@ Relativity Wars - A Science Space RTS: installDir: Relativity Wars: {} launch: - /Game.app: + "/Game.app": - when: - os: mac store: steam - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -430704,7 +431904,7 @@ Relaxation Balls: installDir: Relaxation balls: {} launch: - /Relaxation Balls.exe: + "/Relaxation Balls.exe": - when: - store: steam steam: @@ -430713,21 +431913,21 @@ Relaxicon: installDir: Relaxicon: {} launch: - /Relaxicon: + "/Relaxicon": - when: - os: linux store: steam - /Relaxicon.app: + "/Relaxicon.app": - when: - os: mac store: steam - /Relaxicon.exe: + "/Relaxicon.exe": - when: - os: windows store: steam steam: id: 815010 -'Relaxing VR Games: Mahjong': +"Relaxing VR Games: Mahjong": installDir: Relaxing VR Games Mahjong: {} steam: @@ -430741,7 +431941,7 @@ Relic Alone: installDir: RELIC ALONE: {} launch: - /RELICALONE.exe: + "/RELICALONE.exe": - when: - os: windows store: steam @@ -430752,7 +431952,7 @@ Relic Hunters Legend: id: 633080 Relic Hunters Zero: files: - /RelicHuntersZero: + "/RelicHuntersZero": tags: - config - save @@ -430766,15 +431966,15 @@ Relic Hunters Zero: installDir: Relic Hunters Zero: {} launch: - /Relic Hunters Zero.app: + "/Relic Hunters Zero.app": - when: - os: mac store: steam - /RelicHuntersZero: + "/RelicHuntersZero": - when: - os: linux store: steam - /RelicHuntersZero.exe: + "/RelicHuntersZero.exe": - when: - os: windows store: steam @@ -430784,15 +431984,15 @@ Relic Keepers: installDir: Relic Keepers: {} launch: - /Relic Keepers.app: + "/Relic Keepers.app": - when: - os: mac store: steam - /Relic Keepers.exe: + "/Relic Keepers.exe": - when: - os: windows store: steam - /Relic Keepers.x86: + "/Relic Keepers.x86": - when: - os: linux store: steam @@ -430802,7 +432002,7 @@ Relic Raiders: installDir: Relic Raiders: {} launch: - /RelicRaiders.exe: + "/RelicRaiders.exe": - when: - bit: 64 os: windows @@ -430814,7 +432014,7 @@ RelicMerge: id: 1061990 Relicta: files: - /PAway/Saved/SaveGames: + "/PAway/Saved/SaveGames": tags: - save when: @@ -430829,16 +432029,16 @@ Reliefs: installDir: Reliefs The Time of the Lemures: {} launch: - /Reliefs The Time of the Lemures.app: + "/Reliefs The Time of the Lemures.app": - when: - os: mac store: steam - /Reliefs The Time of the Lemures.x86_64: + "/Reliefs The Time of the Lemures.x86_64": - when: - bit: 64 os: linux store: steam - /Reliefs The time of of Lemures.exe: + "/Reliefs The time of of Lemures.exe": - when: - bit: 64 os: windows @@ -430849,12 +432049,12 @@ Relik: installDir: Relik: {} launch: - /Relik.app/Contents/MacOS/Relik: + "/Relik.app/Contents/MacOS/Relik": - when: - bit: 64 os: mac store: steam - /Relik.exe: + "/Relik.exe": - when: - bit: 64 os: windows @@ -430863,7 +432063,7 @@ Relik: id: 679400 Relive: files: - /AppData/LocalLow/StudioEvil/Relive/StudioEvil_Default: + "/AppData/LocalLow/StudioEvil/Relive/StudioEvil_Default": tags: - config when: @@ -430871,11 +432071,11 @@ Relive: installDir: Relive: {} launch: - /relive.app: + "/relive.app": - when: - os: mac store: steam - /relive.exe: + "/relive.exe": - when: - os: windows store: steam @@ -430892,7 +432092,7 @@ Reload: installDir: Reload: {} launch: - /reload.exe: + "/reload.exe": - when: - os: windows store: steam @@ -430902,15 +432102,15 @@ Relow: installDir: Relow: {} launch: - /RELOW.exe: + "/RELOW.exe": - when: - os: windows store: steam - /relow.app/Contents/MacOS/RELOW: + "/relow.app/Contents/MacOS/RELOW": - when: - os: mac store: steam - /relow.x86_64: + "/relow.x86_64": - when: - os: linux store: steam @@ -430920,7 +432120,7 @@ Relumine: installDir: Relumine: {} launch: - /Relumine.exe: + "/Relumine.exe": - when: - os: windows store: steam @@ -430942,23 +432142,23 @@ Remains: installDir: Remains: {} launch: - /Remains.exe: + "/Remains.exe": - when: - store: steam steam: id: 1309820 -'Remake Evil 3: Resident Penesis': +"Remake Evil 3: Resident Penesis": steam: id: 1253430 Remaya Idle: installDir: Remaya Idle: {} launch: - /Remaya Idle.app: + "/Remaya Idle.app": - when: - os: mac store: steam - /Remaya Idle.exe: + "/Remaya Idle.exe": - when: - os: windows store: steam @@ -430968,7 +432168,7 @@ Remember: installDir: Remember: {} launch: - /Remember.exe: + "/Remember.exe": - when: - os: windows store: steam @@ -430976,13 +432176,13 @@ Remember: id: 1203240 Remember Me: files: - /userdata//228300/remote: + "/userdata//228300/remote": tags: - save when: - os: windows store: steam - /My Games/UnrealEngine3/RememberMeGame/Config: + "/My Games/UnrealEngine3/RememberMeGame/Config": tags: - config when: @@ -430993,44 +432193,46 @@ Remember Me: installDir: Remember Me: {} launch: - /Binaries/Win32/RememberMe.exe: - - arguments: '-seekfreeloadingpcconsole' + "/Binaries/Win32/RememberMe.exe": + - arguments: "-seekfreeloadingpcconsole" when: - store: steam steam: id: 228300 -'Remember, Lights Out': +"Remember, Lights Out": installDir: - 'Remember, Lights Out': {} + "Remember, Lights Out": {} launch: - /Remember Lights Out/mac64/Remember Light Out.app/Contents/MacOS/nwjs: + "/Remember Lights Out/mac64/Remember Light Out.app/Contents/MacOS/nwjs": - when: - os: mac store: steam - /Remember Lights Out/win64/nw.exe: - - arguments: '-windowed' + "/Remember Lights Out/win64/nw.exe": + - arguments: "-windowed" when: - os: windows store: steam steam: id: 1171620 -'Remember, Remember': +"Remember, Remember": installDir: - 'Remember, Remember': {} + "Remember, Remember": {} launch: - '/Remember, Remember.exe': + "/Remember, Remember.exe": - when: - os: windows store: steam - '/Remember, Remember.sh': + "/Remember, Remember.sh": - when: - os: mac store: steam + - os: linux + store: steam steam: id: 631990 Remember11 -The Age of Infinity-: files: - /REMEMBER11: + "/REMEMBER11": tags: - save when: @@ -431039,27 +432241,27 @@ Rememoried: installDir: Rememoried: {} launch: - /rememoried.app: + "/rememoried.app": - when: - os: mac store: steam - /rememoried.exe: + "/rememoried.exe": - when: - os: windows store: steam - /rememoried.x86: + "/rememoried.x86": - when: - os: linux store: steam steam: id: 368450 -'RemiLore: Lost Girl in the Lands of Lore': +"RemiLore: Lost Girl in the Lands of Lore": gog: id: 1906241218 installDir: Remilore: {} launch: - /RemiLore.exe: + "/RemiLore.exe": - when: - os: windows store: steam @@ -431069,7 +432271,7 @@ Remind Yourself: installDir: RemindYourself: {} launch: - /RemindYourself.exe: + "/RemindYourself.exe": - when: - bit: 64 os: windows @@ -431078,12 +432280,12 @@ Remind Yourself: id: 538470 Remnant II: files: - /Saved Games/Remnant2/Steam/: + "/Saved Games/Remnant2/Steam/": tags: - save when: - os: windows - /Remnant2/Saved/Config/Windows: + "/Remnant2/Saved/Config/Windows": tags: - config when: @@ -431098,26 +432300,26 @@ Remnant II: installDir: Remnant2: {} launch: - /Remnant2.exe: + "/Remnant2.exe": - when: - os: windows store: steam steam: id: 1282100 -'Remnant: From the Ashes': +"Remnant: From the Ashes": files: - /Packages/PerfectWorldEntertainment.RemnantFromtheAshes_jrajkyc4tsa6w/SystemAppData/wgs: + "/Packages/PerfectWorldEntertainment.RemnantFromtheAshes_jrajkyc4tsa6w/SystemAppData/wgs": tags: - save when: - os: windows store: microsoft - /Remnant/Saved/Config/WindowsNoEditor: + "/Remnant/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /Remnant/Saved/SaveGames: + "/Remnant/Saved/SaveGames": tags: - save when: @@ -431125,11 +432327,11 @@ Remnant II: installDir: Remnant: {} launch: - /Remnant.exe: + "/Remnant.exe": - when: - os: windows store: steam - workingDir: /Remnant + workingDir: "/Remnant" steam: id: 617290 Remnants: @@ -431141,21 +432343,21 @@ Remnants of Isolation: installDir: Remnants Of Isolation: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: id: 360010 Remnants of Naezith: files: - /data/user: + "/data/user": tags: - save when: - os: windows - os: mac - os: linux - /data/user/settings.cfg: + "/data/user/settings.cfg": tags: - config when: @@ -431163,15 +432365,15 @@ Remnants of Naezith: installDir: Remnants of Naezith: {} launch: - /naezith: + "/naezith": - when: - os: mac store: steam - /naezith.exe: + "/naezith.exe": - when: - os: windows store: steam - /naezith.sh: + "/naezith.sh": - when: - os: linux store: steam @@ -431181,7 +432383,7 @@ Remnants of The Arcane: installDir: Remnants of The Arcane: {} launch: - /rota.exe: + "/rota.exe": - when: - os: windows store: steam @@ -431191,15 +432393,15 @@ Remnants of a Beautiful Day: installDir: Remnants of a Beautiful Day: {} launch: - '/Remnants of a Beautiful Day [Linux]/Remnants of a Beautiful Day.x86': + "/Remnants of a Beautiful Day [Linux]/Remnants of a Beautiful Day.x86": - when: - os: linux store: steam - '/Remnants of a Beautiful Day [Mac]/Remnants of a Beautiful Day.app': + "/Remnants of a Beautiful Day [Mac]/Remnants of a Beautiful Day.app": - when: - os: mac store: steam - '/Remnants of a Beautiful Day [Win]/Remnants of a Beautiful Day.exe': + "/Remnants of a Beautiful Day [Win]/Remnants of a Beautiful Day.exe": - when: - os: windows store: steam @@ -431209,7 +432411,7 @@ Remnants of a Beautiful Day (2012): installDir: Remnants of a Beautiful Day (2012): {} launch: - '/Remnants of a Beautiful Day [V 4.0].exe': + "/Remnants of a Beautiful Day [V 4.0].exe": - when: - os: windows store: steam @@ -431220,21 +432422,21 @@ Remnith: Remnith: {} steam: id: 578390 -'Remorse: The List': +"Remorse: The List": gog: id: 1452095777 installDir: Remorse The List: {} launch: - /Remorse.exe: + "/Remorse.exe": - when: - os: windows store: steam steam: id: 867960 -'Remothered: Broken Porcelain': +"Remothered: Broken Porcelain": files: - /Remothered2/Saved/SaveGames: + "/Remothered2/Saved/SaveGames": tags: - save when: @@ -431244,21 +432446,21 @@ Remnith: installDir: Remothered Broken Porcelain: {} launch: - /Remothered2.exe: + "/Remothered2.exe": - when: - bit: 64 os: windows store: steam steam: id: 1142390 -'Remothered: Tormented Fathers': +"Remothered: Tormented Fathers": files: - /Remothered/Saved/Config/WindowsNoEditor: + "/Remothered/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /Remothered/Saved/SaveGames: + "/Remothered/Saved/SaveGames": tags: - save when: @@ -431268,7 +432470,7 @@ Remnith: installDir: Remothered Tormented Fathers: {} launch: - /Remothered.exe: + "/Remothered.exe": - when: - bit: 64 os: windows @@ -431284,7 +432486,7 @@ Remyadry: installDir: Remyadry: {} launch: - /remi.exe: + "/remi.exe": - when: - os: windows store: steam @@ -431294,7 +432496,7 @@ Rena And Elin: installDir: Rena And Elin: {} launch: - /Rrena and Elin.exe: + "/Rrena and Elin.exe": - when: - os: windows store: steam @@ -431307,7 +432509,7 @@ Rencia: installDir: Rencia: {} launch: - /Rencia.exe: + "/Rencia.exe": - when: - store: steam steam: @@ -431316,15 +432518,15 @@ Rencounter: installDir: Rencounter: {} launch: - /Rencounter.app: + "/Rencounter.app": - when: - os: mac store: steam - /game.exe: + "/game.exe": - when: - os: windows store: steam - /game.x86: + "/game.x86": - when: - os: linux store: steam @@ -431332,7 +432534,7 @@ Rencounter: id: 431810 Rend: files: - /Otherlands/Saved/Config/WindowsClient: + "/Otherlands/Saved/Config/WindowsClient": tags: - config when: @@ -431340,7 +432542,7 @@ Rend: installDir: Rend: {} launch: - /Rend.exe: + "/Rend.exe": - when: - os: windows store: steam @@ -431350,7 +432552,7 @@ Rending Sky: installDir: Rending Sky®: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -431359,46 +432561,46 @@ Rending Sky: Renditions of the Awakening: steam: id: 1152260 -'Renegade Grounds: Episode 1': +"Renegade Grounds: Episode 1": installDir: Renegade Grounds Episode 1: {} launch: - /Game.app: + "/Game.app": - when: - os: mac store: steam - /nw: + "/nw": - when: - os: linux store: steam - /nw.exe: + "/nw.exe": - when: - os: windows store: steam steam: id: 661670 -'Renegade Grounds: Episode 2': +"Renegade Grounds: Episode 2": installDir: Renegade Grounds Episode 2: {} launch: - /RG2.exe: + "/RG2.exe": - when: - store: steam steam: id: 1204280 Renegade Ops: files: - /userdata//99300/remote: + "/userdata//99300/remote": tags: - save when: - store: steam - /SEGA/Renegade Ops: + "/SEGA/Renegade Ops": tags: - save when: - os: windows - /SEGA/Renegade Ops/Saves/Settings: + "/SEGA/Renegade Ops/Saves/Settings": tags: - config when: @@ -431406,23 +432608,23 @@ Renegade Ops: installDir: Renegade Ops: {} launch: - /RenegadeOps.exe: + "/RenegadeOps.exe": - when: - store: steam steam: id: 99300 Renegade X: files: - /Engine/Config/*.ini: + "/Engine/Config/*.ini": tags: - config when: - os: windows -'Renfield: Bring Your Own Blood': +"Renfield: Bring Your Own Blood": installDir: Renfield: {} launch: - /Renfield.exe: + "/Renfield.exe": - when: - bit: 64 os: windows @@ -431433,35 +432635,35 @@ Renoir: installDir: Renoir: {} launch: - /Renoir.exe: + "/Renoir.exe": - when: - os: windows store: steam steam: id: 496400 -'Renowned Explorers: International Society': +"Renowned Explorers: International Society": files: - /game/userdata/Renowned Explorers International Society/savedata: + "/game/userdata/Renowned Explorers International Society/savedata": tags: - save when: - os: linux - /Library/Application Support/Renowned Explorers International Society/savedata: + "/Library/Application Support/Renowned Explorers International Society/savedata": tags: - save when: - os: mac - /Library/Application Support/Renowned Explorers International Society/userdata: + "/Library/Application Support/Renowned Explorers International Society/userdata": tags: - config when: - os: mac - /Renowned Explorers International Society/savedata: + "/Renowned Explorers International Society/savedata": tags: - save when: - os: windows - /Renowned Explorers International Society/userdata: + "/Renowned Explorers International Society/userdata": tags: - config when: @@ -431471,27 +432673,27 @@ Renoir: installDir: Renowned Explorers: {} launch: - /abbeycore_steam.app: + "/abbeycore_steam.app": - when: - bit: 64 os: mac store: steam - /win32/abbeycore_win32_steam.exe: + "/win32/abbeycore_win32_steam.exe": - when: - bit: 32 os: windows store: steam - /win64/abbeycore_win32_steam.exe: + "/win64/abbeycore_win32_steam.exe": - when: - bit: 64 os: windows store: steam - /x86/abbeycore_steam: + "/x86/abbeycore_steam": - when: - bit: 32 os: linux store: steam - /x86_64/abbeycore_steam: + "/x86_64/abbeycore_steam": - when: - bit: 64 os: linux @@ -431502,15 +432704,15 @@ Rent-a-Vice: installDir: Rent-a-Vice: {} launch: - /RentAVice: + "/RentAVice": - when: - os: linux store: steam - /RentAVice.exe: + "/RentAVice.exe": - when: - os: windows store: steam - /RentaVice.app/Contents/MacOS/RentaVice: + "/RentaVice.app/Contents/MacOS/RentaVice": - when: - os: mac store: steam @@ -431525,15 +432727,15 @@ Rento Fortune - Multiplayer Board Game: installDir: Rento Fortune: {} launch: - /Rento.app: + "/Rento.app": - when: - os: mac store: steam - /Rento.exe: + "/Rento.exe": - when: - os: windows store: steam - /Rento.x86_64: + "/Rento.x86_64": - when: - os: linux store: steam @@ -431548,7 +432750,7 @@ Renzo Racer: installDir: Renzo Racer: {} launch: - /RenzoRacer.exe: + "/RenzoRacer.exe": - when: - os: windows store: steam @@ -431558,21 +432760,21 @@ RepairBot: installDir: RepairBot: {} launch: - /RepairBot.exe: + "/RepairBot.exe": - when: - os: windows store: steam - /repairbot.app: + "/repairbot.app": - when: - os: mac store: steam steam: id: 991620 -'Repeat the Image: Animals': +"Repeat the Image: Animals": installDir: Repeat the image Animals: {} launch: - /Repeat the image - Animals.exe: + "/Repeat the image - Animals.exe": - when: - os: windows store: steam @@ -431582,7 +432784,7 @@ Repel Aliens 3D: installDir: Repel Aliens 3D: {} launch: - /Repel Aliens 3D.exe: + "/Repel Aliens 3D.exe": - when: - os: windows store: steam @@ -431592,11 +432794,11 @@ Repentant: installDir: Repentant: {} launch: - /Repentant.app/Contents/MacOS/Repentant: + "/Repentant.app/Contents/MacOS/Repentant": - when: - os: mac store: steam - /Repentant.exe: + "/Repentant.exe": - when: - bit: 64 os: windows @@ -431605,7 +432807,7 @@ Repentant: id: 874370 Repetendium: files: - /Repetendium: + "/Repetendium": tags: - save when: @@ -431613,7 +432815,7 @@ Repetendium: installDir: Repetendium: {} launch: - /Repetendium.exe: + "/Repetendium.exe": - when: - os: windows store: steam @@ -431626,11 +432828,11 @@ Replay - VHS is not dead: installDir: Replay - VHS is not dead - Beta: {} launch: - /Replay.app: + "/Replay.app": - when: - os: mac store: steam - /Replay.exe: + "/Replay.exe": - when: - os: windows store: steam @@ -431638,7 +432840,7 @@ Replay - VHS is not dead: id: 333490 Replica: files: - /AppData/LocalLow/SOMI/Replica: + "/AppData/LocalLow/SOMI/Replica": tags: - save when: @@ -431646,11 +432848,11 @@ Replica: installDir: Replica: {} launch: - /Replica.app: + "/Replica.app": - when: - os: mac store: steam - /Replica.exe: + "/Replica.exe": - when: - os: windows store: steam @@ -431671,15 +432873,15 @@ Repressed: installDir: Repressed: {} launch: - /Repressed.app: + "/Repressed.app": - when: - os: mac store: steam - /Repressed.exe: + "/Repressed.exe": - when: - os: windows store: steam - /Repressed.x86_64: + "/Repressed.x86_64": - when: - os: linux store: steam @@ -431687,12 +432889,12 @@ Repressed: id: 1127820 Reprisal Universe: files: - /Library/Preferences/reprisal: + "/Library/Preferences/reprisal": tags: - save when: - os: mac - /reprisal: + "/reprisal": tags: - save when: @@ -431702,11 +432904,11 @@ Reprisal Universe: installDir: Reprisal Universe: {} launch: - /reprisaluniverse.app: + "/reprisaluniverse.app": - when: - os: mac store: steam - /reprisaluniverse.exe: + "/reprisaluniverse.exe": - when: - os: windows store: steam @@ -431716,17 +432918,17 @@ Reproduction Man: installDir: Reproduction Man: {} launch: - /Reproduction Man.app/Contents/MacOS/reproduction_man: + "/Reproduction Man.app/Contents/MacOS/reproduction_man": - when: - bit: 64 os: mac store: steam - /reproduction_man: + "/reproduction_man": - when: - bit: 64 os: linux store: steam - /reproduction_man.exe: + "/reproduction_man.exe": - when: - os: windows store: steam @@ -431736,17 +432938,17 @@ Reprogram: installDir: Reprogram: {} launch: - /Reprogram.exe: + "/Reprogram.exe": - when: - os: windows store: steam steam: id: 710670 -'Reptiles: In Hunt': +"Reptiles: In Hunt": installDir: Reptiles In Hunt: {} launch: - /Reptiles In Hunt.exe: + "/Reptiles In Hunt.exe": - when: - os: windows store: steam @@ -431756,16 +432958,16 @@ Reptilian Rebellion: installDir: Reptilian Rebellion: {} launch: - /Reptilian Rebellion.exe: + "/Reptilian Rebellion.exe": - when: - os: windows store: steam - /ReptilianRebellion.app/Contents/MacOS/ReptilianRebellion: + "/ReptilianRebellion.app/Contents/MacOS/ReptilianRebellion": - when: - bit: 64 os: mac store: steam - /ReptilianRebellion.x86_64: + "/ReptilianRebellion.x86_64": - when: - bit: 64 os: linux @@ -431774,7 +432976,7 @@ Reptilian Rebellion: id: 461760 Reptilians Must Die!: files: - /ReptiliansMustDie2.0.4EN: + "/ReptiliansMustDie2.0.4EN": tags: - config - save @@ -431789,16 +432991,16 @@ Reptomom: installDir: REPTOMOM: {} launch: - /Reptomom.exe: - - arguments: '-windowed' + "/Reptomom.exe": + - arguments: "-windowed" when: - os: windows store: steam steam: id: 1000880 -'Republic: The Revolution': +"Republic: The Revolution": files: - /Main/SaveGame/RepublicOptions.ini: + "/Main/SaveGame/RepublicOptions.ini": tags: - config when: @@ -431807,7 +433009,7 @@ Reptomom: id: 1207658781 Republique Remastered: files: - /AppData/LocalLow/Camouflaj/R__publique//Save: + "/AppData/LocalLow/Camouflaj/R__publique//Save": tags: - save when: @@ -431817,11 +433019,11 @@ Republique Remastered: installDir: Republique: {} launch: - /Republique.app: + "/Republique.app": - when: - os: mac store: steam - /Republique.exe: + "/Republique.exe": - when: - os: windows store: steam @@ -431839,25 +433041,25 @@ Republique VR: Repulsanoid: steam: id: 550890 -'Repulse: Galactic Rivals': +"Repulse: Galactic Rivals": installDir: REPULSE Galactic Rivals: {} launch: - /REPULSE - Galactic Rivals.exe: + "/REPULSE - Galactic Rivals.exe": - when: - os: windows store: steam - /REPULSE - Galactic Rivals.x86: + "/REPULSE - Galactic Rivals.x86": - when: - bit: 32 os: linux store: steam - /REPULSE - Galactic Rivals.x86_64: + "/REPULSE - Galactic Rivals.x86_64": - when: - bit: 64 os: linux store: steam - /REPULSE.app/Contents/MacOS/REPULSE: + "/REPULSE.app/Contents/MacOS/REPULSE": - when: - os: mac store: steam @@ -431867,7 +433069,7 @@ Requiem: installDir: Requiem: {} launch: - /Requiem.exe: + "/Requiem.exe": - when: - bit: 64 os: windows @@ -431878,15 +433080,15 @@ Requiem of Science: installDir: Requiem Of Science: {} launch: - /hl2.exe: - - arguments: '-game hl2ss' + "/hl2.exe": + - arguments: "-game hl2ss" when: - store: steam steam: id: 1828210 -'Requiem: Avenging Angel': +"Requiem: Avenging Angel": files: - /Gamers: + "/Gamers": tags: - config - save @@ -431897,17 +433099,17 @@ Requiem of Science: installDir: Requiem Avenging Angel: {} launch: - /3DFX.exe: + "/3DFX.exe": - when: - os: windows store: steam steam: id: 493310 -'Requiem: Rise of the Reaver': +"Requiem: Rise of the Reaver": installDir: Requiem: {} launch: - /WPLauncher.exe: + "/WPLauncher.exe": - when: - os: windows store: steam @@ -431917,15 +433119,15 @@ Requiescence: installDir: Requiescence: {} launch: - /Requiesence.app/Contents/MacOS/Requiesence: + "/Requiesence.app/Contents/MacOS/Requiesence": - when: - os: mac store: steam - /Requiesence.sh: + "/Requiesence.sh": - when: - os: linux store: steam - /lib/windows-i686/Requiesence.exe: + "/lib/windows-i686/Requiesence.exe": - when: - os: windows store: steam @@ -431939,20 +433141,20 @@ Requisition VR: Reroll: steam: id: 869270 -'Reroll: Back to the Throne': +"Reroll: Back to the Throne": steam: id: 741630 -'Res Judicata: Vale of Myth': +"Res Judicata: Vale of Myth": installDir: Res Judicata Vale of Myth: {} launch: - /nw: - - arguments: '--in-process-gpu --ignore-gpu-blacklist --enable-webgl' + "/nw": + - arguments: "--in-process-gpu --ignore-gpu-blacklist --enable-webgl" when: - os: linux store: steam - /nw.exe: - - arguments: '--in-process-gpu --ignore-gpu-blacklist --enable-webgl' + "/nw.exe": + - arguments: "--in-process-gpu --ignore-gpu-blacklist --enable-webgl" when: - store: steam steam: @@ -431961,29 +433163,29 @@ Rescale: installDir: Rescale: {} launch: - /Rescale.app: + "/Rescale.app": - when: - os: mac store: steam - /Rescale.exe: + "/Rescale.exe": - when: - os: windows store: steam - /Rescale.x86: + "/Rescale.x86": - when: - os: linux store: steam steam: id: 923550 -'Rescue 2: Everyday Heroes': +"Rescue 2: Everyday Heroes": installDir: RESCUE 2: {} launch: - /Rescue2.app: + "/Rescue2.app": - when: - os: mac store: steam - /Rescue2.exe: + "/Rescue2.exe": - when: - os: windows store: steam @@ -431993,7 +433195,7 @@ Rescue Bear Operation: installDir: Rescue Bear Operation: {} launch: - /RescueBearOperation.exe: + "/RescueBearOperation.exe": - when: - os: windows store: steam @@ -432006,7 +433208,7 @@ Rescue From Goblin Deep: installDir: Rescue From Goblin Deep: {} launch: - /Rescue from Goblin Deep.exe: + "/Rescue from Goblin Deep.exe": - when: - os: windows store: steam @@ -432018,7 +433220,7 @@ Rescue HQ - The Tycoon: installDir: RHQ: {} launch: - /RHQ.exe: + "/RHQ.exe": - when: - store: steam steam: @@ -432027,20 +433229,20 @@ Rescue Love Revenge: installDir: Rescue Love Revenge: {} launch: - /RLR.app: + "/RLR.app": - when: - os: mac store: steam - /RLR.exe: + "/RLR.exe": - when: - os: windows store: steam - /RLR.x86: + "/RLR.x86": - when: - bit: 32 os: linux store: steam - /RLR.x86_64: + "/RLR.x86_64": - when: - bit: 64 os: linux @@ -432054,11 +433256,11 @@ Rescue Lucy 2: installDir: Rescue Lucy 2: {} launch: - /Rescue Lucy 2.exe: + "/Rescue Lucy 2.exe": - when: - os: windows store: steam - /topgame.app: + "/topgame.app": - when: - os: mac store: steam @@ -432067,11 +433269,11 @@ Rescue Lucy 2: Rescue Medic: steam: id: 942220 -'Rescue Party: Live!': +"Rescue Party: Live!": installDir: Rescue Party Live!: {} launch: - /RescuePartyLive/RescuePartyLive.exe: + "/RescuePartyLive/RescuePartyLive.exe": - when: - bit: 64 os: windows @@ -432082,11 +433284,11 @@ Rescue Quest Gold: installDir: Rescue Quest Gold: {} launch: - /Rescue Quest Gold.exe: + "/Rescue Quest Gold.exe": - when: - os: windows store: steam - /rqg_steam.app: + "/rqg_steam.app": - when: - os: mac store: steam @@ -432110,7 +433312,7 @@ Rescue Team: installDir: Rescue Team 1: {} launch: - /RescueTeam.exe: + "/RescueTeam.exe": - when: - os: windows store: steam @@ -432120,7 +433322,7 @@ Rescue Team 2: installDir: Rescue Team 2: {} launch: - /RescueTeam2.exe: + "/RescueTeam2.exe": - when: - store: steam steam: @@ -432129,7 +433331,7 @@ Rescue Team 3: installDir: Rescue Team 3: {} launch: - /RescueTeam3.exe: + "/RescueTeam3.exe": - when: - os: windows store: steam @@ -432139,7 +433341,7 @@ Rescue Team 4: installDir: Rescue Team 4: {} launch: - /RescueTeam4.exe: + "/RescueTeam4.exe": - when: - os: windows store: steam @@ -432149,11 +433351,11 @@ Rescue Team 5: installDir: RescueTeam5: {} launch: - /Partner.app: + "/Partner.app": - when: - os: mac store: steam - /RescueTeam5.exe: + "/RescueTeam5.exe": - when: - os: windows store: steam @@ -432161,9 +433363,9 @@ Rescue Team 5: id: 416320 Rescue Team 6: installDir: - Rescue Team 6 Collector's Edition: {} + "Rescue Team 6 Collector's Edition": {} launch: - /RescueTeam6 Collector's Edition.exe: + "/RescueTeam6 Collector's Edition.exe": - when: - os: windows store: steam @@ -432173,27 +433375,27 @@ Rescue Team 7: installDir: RescueTeam7: {} launch: - /RescueTeam7 Collector's Edition.exe: + "/RescueTeam7 Collector's Edition.exe": - when: - os: windows store: steam steam: id: 666050 -'Rescue Team: Evil Genius': +"Rescue Team: Evil Genius": installDir: Rescue Team 9 Evil Genius: {} launch: - /RescueTeam_EvilGenius_CE.exe: + "/RescueTeam_EvilGenius_CE.exe": - when: - os: windows store: steam steam: id: 1155340 -'Rescue Team: Heist of the Century': +"Rescue Team: Heist of the Century": installDir: Rescue Team Heist of the Century: {} launch: - /Rescue Team Heist of the Century.exe: + "/Rescue Team Heist of the Century.exe": - when: - os: windows store: steam @@ -432203,7 +433405,7 @@ Rescue bomber: installDir: Rescue bomber: {} launch: - /Rescue bomber.exe: + "/Rescue bomber.exe": - when: - store: steam steam: @@ -432212,16 +433414,16 @@ Rescue the Great Demon 2: installDir: Rescue the Great Demon 2: {} launch: - /Rescue_the_Great_Demon2: + "/Rescue_the_Great_Demon2": - when: - os: linux store: steam - /Rescue_the_Great_Demon2.app/Contents/MacOS/Rescue_the_Great_Demon2: + "/Rescue_the_Great_Demon2.app/Contents/MacOS/Rescue_the_Great_Demon2": - when: - bit: 64 os: mac store: steam - /Rescue_the_Great_Demon2.exe: + "/Rescue_the_Great_Demon2.exe": - when: - os: windows store: steam @@ -432231,25 +433433,25 @@ Rescue your chickens: installDir: Rescue your chickens: {} launch: - /RescueYourChickens_linux: + "/RescueYourChickens_linux": - when: - os: linux store: steam - /Rescue_your_chickens_mac.app: + "/Rescue_your_chickens_mac.app": - when: - os: mac store: steam - /rescueyourchickens1.1_windows.exe: + "/rescueyourchickens1.1_windows.exe": - when: - os: windows store: steam steam: id: 551080 -'Rescue: Everyday Heroes': +"Rescue: Everyday Heroes": installDir: Rescue: {} launch: - /Rescue2013.exe: + "/Rescue2013.exe": - when: - bit: 32 os: windows @@ -432260,7 +433462,7 @@ Rescuers2019: installDir: Rescuers2019: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -432270,7 +433472,7 @@ Rescuties! VR: installDir: Rescuties! VR: {} launch: - /Rescuties.exe: + "/Rescuties.exe": - when: - bit: 64 os: windows @@ -432281,7 +433483,7 @@ Research and Destroy: installDir: RAD: {} launch: - /TBS.exe: + "/TBS.exe": - when: - bit: 64 os: windows @@ -432290,17 +433492,17 @@ Research and Destroy: id: 1279310 Reservoir Dogs: files: - /Eidos/Reservoir Dogs: + "/Eidos/Reservoir Dogs": tags: - save when: - os: windows - /Eidos/Reservoir Dogs/config.ini: + "/Eidos/Reservoir Dogs/config.ini": tags: - config when: - os: windows -'Reservoir Dogs: Bloody Days': +"Reservoir Dogs: Bloody Days": gog: id: 1405976071 steam: @@ -432309,16 +433511,16 @@ Reset 1-1: installDir: Reset 1-1: {} launch: - /Reset 1-1.exe: + "/Reset 1-1.exe": - when: - store: steam steam: id: 491650 -'Resette''s Prescription: Book of Memory, Swaying Scale': +"Resette's Prescription: Book of Memory, Swaying Scale": installDir: - 'Resette''s Prescription ~Book of memory, Swaying scale~': {} + "Resette's Prescription ~Book of memory, Swaying scale~": {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -432329,7 +433531,7 @@ Resfort: id: 514710 Resident Evil: files: - /savedat*.dat: + "/savedat*.dat": tags: - save when: @@ -432345,12 +433547,12 @@ Resident Evil 2: - config Resident Evil 2 (2019): files: - /re2_config.ini: + "/re2_config.ini": tags: - config when: - os: windows - /userdata//883710/remote: + "/userdata//883710/remote": tags: - save when: @@ -432363,7 +433565,7 @@ Resident Evil 2 (2019): installDir: RESIDENT EVIL 2 BIOHAZARD RE2: {} launch: - /re2.exe: + "/re2.exe": - when: - os: windows store: steam @@ -432371,13 +433573,13 @@ Resident Evil 2 (2019): id: 883710 Resident Evil 3 (2020): files: - /steamapps/common/RE3/re3_config.ini: + "/steamapps/common/RE3/re3_config.ini": tags: - config when: - os: windows store: steam - /userdata//952060/remote: + "/userdata//952060/remote": tags: - save when: @@ -432386,40 +433588,40 @@ Resident Evil 3 (2020): installDir: RE3: {} launch: - /re3.exe: + "/re3.exe": - when: - bit: 64 os: windows store: steam steam: id: 952060 -'Resident Evil 3: Nemesis': +"Resident Evil 3: Nemesis": files: - /bio3.ini: + "/bio3.ini": tags: - config when: - os: windows Resident Evil 4: files: - /SaveData.dat: + "/SaveData.dat": tags: - save when: - os: windows - /SetupTool.ini: + "/SetupTool.ini": tags: - config when: - os: windows Resident Evil 4 (2023): files: - /local_config.ini: + "/local_config.ini": tags: - config when: - os: windows - /userdata//2050650/remote/win64_save: + "/userdata//2050650/remote/win64_save": tags: - save when: @@ -432427,15 +433629,15 @@ Resident Evil 4 (2023): store: steam id: steamExtra: - - 2231770 - - 777727 - - 777729 - - 777728 - 732620 + - 777727 + - 777728 + - 777729 + - 2231770 installDir: RESIDENT EVIL 4 BIOHAZARD RE4: {} launch: - /re4.exe: + "/re4.exe": - when: - os: windows store: steam @@ -432443,18 +433645,18 @@ Resident Evil 4 (2023): id: 2050650 Resident Evil 4 Ultimate HD Edition: files: - /BIO4/input.ini: + "/BIO4/input.ini": tags: - config when: - os: windows - /userdata//254700/remote: + "/userdata//254700/remote": tags: - save when: - os: windows store: steam - /My Games/Capcom/RE4: + "/My Games/Capcom/RE4": tags: - config when: @@ -432466,25 +433668,25 @@ Resident Evil 4 Ultimate HD Edition: installDir: Resident Evil 4: {} launch: - /Bin32/bio4.exe: + "/Bin32/bio4.exe": - when: - store: steam - workingDir: /BIO4 + workingDir: "/BIO4" steam: id: 254700 Resident Evil 5: files: - /userdata//21690/remote: + "/userdata//21690/remote": tags: - save when: - store: steam - /capcom/RESIDENT EVIL 5: + "/capcom/RESIDENT EVIL 5": tags: - save when: - os: windows - /capcom/RESIDENT EVIL 5/config.ini: + "/capcom/RESIDENT EVIL 5/config.ini": tags: - config when: @@ -432495,7 +433697,7 @@ Resident Evil 5: installDir: Resident Evil 5: {} launch: - /Launcher.exe: + "/Launcher.exe": - when: - os: windows store: steam @@ -432503,18 +433705,18 @@ Resident Evil 5: id: 21690 Resident Evil 6: files: - /userdata//221040/remote: + "/userdata//221040/remote": tags: - save when: - os: windows store: steam - /capcom/RESIDENT EVIL 6/config.ini: + "/capcom/RESIDENT EVIL 6/config.ini": tags: - config when: - os: windows - /capcom/RESIDENT EVIL 6/mapping.ini: + "/capcom/RESIDENT EVIL 6/mapping.ini": tags: - config when: @@ -432522,33 +433724,33 @@ Resident Evil 6: id: steamExtra: - 229950 - - 236080 + - 231390 - 232530 - - 232590 - 232550 - 232570 - - 231390 + - 232590 + - 236080 installDir: Resident Evil 6: {} launch: - /BH6.exe: + "/BH6.exe": - when: - store: steam steam: id: 221040 -'Resident Evil 7 Teaser: Beginning Hour': +"Resident Evil 7 Teaser: Beginning Hour": files: - /re7_config.ini: + "/re7_config.ini": tags: - config when: - os: windows - /userdata//418370/remote: + "/userdata//418370/remote": tags: - save when: - store: steam - /userdata//530620: + "/userdata//530620": tags: - save when: @@ -432559,25 +433761,25 @@ Resident Evil 6: installDir: RESIDENT EVIL 7 biohazard: {} launch: - /re7.exe: + "/re7.exe": - when: - os: windows store: steam steam: id: 418370 -'Resident Evil 7: Biohazard': +"Resident Evil 7: Biohazard": files: - /re7_config.ini: + "/re7_config.ini": tags: - config when: - store: steam - /userdata//418370/remote: + "/userdata//418370/remote": tags: - save when: - store: steam - /Packages/F024294D.RESIDENTEVIL7biohazard_8fty0by30jkny/SystemAppData/wgs: + "/Packages/F024294D.RESIDENTEVIL7biohazard_8fty0by30jkny/SystemAppData/wgs": tags: - save when: @@ -432589,7 +433791,7 @@ Resident Evil 6: installDir: RESIDENT EVIL 7 biohazard: {} launch: - /re7.exe: + "/re7.exe": - when: - os: windows store: steam @@ -432597,13 +433799,13 @@ Resident Evil 6: id: 418370 Resident Evil HD Remaster: files: - /userdata//304240/remote: + "/userdata//304240/remote": tags: - save when: - os: windows store: steam - /CAPCOM/Resident Evil - biohazard@HD REMASTER: + "/CAPCOM/Resident Evil - biohazard@HD REMASTER": tags: - config when: @@ -432611,17 +433813,17 @@ Resident Evil HD Remaster: installDir: Resident Evil Biohazard HD REMASTER: {} launch: - /bhd.exe: + "/bhd.exe": - when: - os: windows store: steam steam: id: 304240 -'Resident Evil Re:Verse': +"Resident Evil Re:Verse": installDir: Resident Evil ReVerse: {} launch: - /Reverse.exe: + "/Reverse.exe": - when: - os: windows store: steam @@ -432629,7 +433831,7 @@ Resident Evil HD Remaster: id: 1236300 Resident Evil Resistance: files: - /userdata//952070/remote: + "/userdata//952070/remote": tags: - config - save @@ -432640,7 +433842,7 @@ Resident Evil Resistance: installDir: RESIDENT EVIL RESISTANCE: {} launch: - /REResistance.exe: + "/REResistance.exe": - when: - os: windows store: steam @@ -432648,19 +433850,19 @@ Resident Evil Resistance: id: 952070 Resident Evil Survivor: files: - /Save: + "/Save": tags: - save when: - os: windows Resident Evil Village: files: - /config.ini: + "/config.ini": tags: - config when: - os: windows - /userdata//1196590/remote/win64_save: + "/userdata//1196590/remote/win64_save": tags: - save when: @@ -432668,16 +433870,16 @@ Resident Evil Village: store: steam id: steamExtra: - - 1731080 - - 1731081 + - 1456360 - 1456361 - 1456362 - 1456363 - - 1456360 + - 1731080 + - 1731081 installDir: Resident Evil Village BIOHAZARD VILLAGE: {} launch: - /re8.exe: + "/re8.exe": - when: - os: windows store: steam @@ -432685,13 +433887,13 @@ Resident Evil Village: id: 1196590 Resident Evil Zero HD Remaster: files: - /userdata//339340/remote: + "/userdata//339340/remote": tags: - save when: - os: windows store: steam - /CAPCOM/RESIDENT EVIL 0 HD REMASTER/config.ini: + "/CAPCOM/RESIDENT EVIL 0 HD REMASTER/config.ini": tags: - config when: @@ -432699,20 +433901,20 @@ Resident Evil Zero HD Remaster: installDir: Resident Evil 0: {} launch: - /re0hd.exe: + "/re0hd.exe": - when: - os: windows store: steam steam: id: 339340 -'Resident Evil: Operation Raccoon City': +"Resident Evil: Operation Raccoon City": files: - /CAPCOM/RERC: + "/CAPCOM/RERC": tags: - save when: - os: windows - /CAPCOM/RERC/settings.dat: + "/CAPCOM/RERC/settings.dat": tags: - config when: @@ -432720,20 +433922,20 @@ Resident Evil Zero HD Remaster: installDir: Resident Evil Operation Raccoon City: {} launch: - /RaccoonCity.exe: + "/RaccoonCity.exe": - when: - store: steam steam: id: 209100 -'Resident Evil: Revelations': +"Resident Evil: Revelations": files: - /userdata//222480/remote: + "/userdata//222480/remote": tags: - save when: - os: windows store: steam - /CAPCOM/RESIDENT EVIL REVELATIONS/config.ini: + "/CAPCOM/RESIDENT EVIL REVELATIONS/config.ini": tags: - config when: @@ -432741,21 +433943,21 @@ Resident Evil Zero HD Remaster: installDir: RESIDENT EVIL REVELATIONS: {} launch: - /rerev.exe: + "/rerev.exe": - when: - os: windows store: steam steam: id: 222480 -'Resident Evil: Revelations 2': +"Resident Evil: Revelations 2": files: - /userdata//287290/remote: + "/userdata//287290/remote": tags: - save when: - os: windows store: steam - /capcom/RESIDENT EVIL REVELATIONS2/config.ini: + "/capcom/RESIDENT EVIL REVELATIONS2/config.ini": tags: - config when: @@ -432765,16 +433967,16 @@ Resident Evil Zero HD Remaster: - 319810 - 320350 - 320351 - - 320353 - 320352 - - 320372 - - 320371 - - 320370 - - 320361 + - 320353 - 320360 + - 320361 - 320362 - 320363 - 320364 + - 320370 + - 320371 + - 320372 - 320380 - 320381 - 320382 @@ -432787,8 +433989,8 @@ Resident Evil Zero HD Remaster: installDir: RESIDENT EVIL REVELATIONS 2: {} launch: - /rerev2.exe: - - arguments: '-console' + "/rerev2.exe": + - arguments: "-console" when: - os: windows store: steam @@ -432800,30 +434002,30 @@ Residual: installDir: residual: {} launch: - /residual: + "/residual": - when: - os: linux store: steam - /residual.exe: + "/residual.exe": - when: - os: windows store: steam steam: id: 1290780 -'Residue: Final Cut': +"Residue: Final Cut": installDir: Residue: {} launch: - /Residue.exe: + "/Residue.exe": - when: - store: steam steam: id: 265790 -'Resilience: Wave Survival': +"Resilience: Wave Survival": installDir: Resilience Wave Survival: {} launch: - /Resilience Wave Survival.exe: + "/Resilience Wave Survival.exe": - when: - os: windows store: steam @@ -432833,7 +434035,7 @@ Resin: installDir: resin: {} launch: - /resin.exe: + "/resin.exe": - when: - os: windows store: steam @@ -432843,11 +434045,11 @@ Resistance is Fruitile: installDir: Resistance is Fruitile: {} launch: - /Resistance Is Fruitile.exe: + "/Resistance Is Fruitile.exe": - when: - os: windows store: steam - /ResistanceIsFruitile.app: + "/ResistanceIsFruitile.app": - when: - os: mac store: steam @@ -432860,7 +434062,7 @@ Resized: installDir: Shallow Swing: {} launch: - /ShallowSwing.exe: + "/ShallowSwing.exe": - when: - bit: 64 os: windows @@ -432869,12 +434071,12 @@ Resized: id: 788310 Resolutiion: files: - /Godot/app_userdata/Resolutiion/config.cfg: + "/Godot/app_userdata/Resolutiion/config.cfg": tags: - config when: - os: windows - /Godot/app_userdata/Resolutiion/dreams: + "/Godot/app_userdata/Resolutiion/dreams": tags: - save when: @@ -432884,15 +434086,15 @@ Resolutiion: installDir: Resolutiion: {} launch: - /Resolutiion.app/Contents/MacOS/Resolutiion: + "/Resolutiion.app/Contents/MacOS/Resolutiion": - when: - os: mac store: steam - /Resolutiion.exe: + "/Resolutiion.exe": - when: - os: windows store: steam - /Resolutiion.x86_64: + "/Resolutiion.x86_64": - when: - os: linux store: steam @@ -432900,27 +434102,27 @@ Resolutiion: id: 975150 Resonance: files: - /acsetup.cfg: + "/acsetup.cfg": tags: - config when: - os: linux - /Library/Application Support/Resonance: + "/Library/Application Support/Resonance": tags: - save when: - os: mac - /Saved Games/Resonance: + "/Saved Games/Resonance": tags: - save when: - os: windows - /Saved Games/Resonance/acsetup.cfg: + "/Saved Games/Resonance/acsetup.cfg": tags: - config when: - os: windows - /ags/Resonance: + "/ags/Resonance": tags: - save when: @@ -432930,16 +434132,19 @@ Resonance: installDir: Resonance: {} launch: - /Resonance.app/Contents/MacOS/AGS: + "/Resonance.app/Contents/MacOS/AGS": - when: - os: mac store: steam - /Resonance.exe: + "/Resonance.exe": - when: - os: windows store: steam - /Start.sh: + "/Start.sh": - when: + - bit: 32 + os: linux + store: steam - bit: 64 os: linux store: steam @@ -432947,7 +434152,7 @@ Resonance: id: 212050 Resonance of Fate 4K/HD Edition: files: - /My Games/Resonance of Fate/SaveData: + "/My Games/Resonance of Fate/SaveData": tags: - save when: @@ -432955,18 +434160,18 @@ Resonance of Fate 4K/HD Edition: installDir: Resonance of Fate: {} launch: - /Resonance of Fate.exe: + "/Resonance of Fate.exe": - when: - bit: 64 os: windows store: steam steam: id: 645730 -'Resort Boss: Golf': +"Resort Boss: Golf": installDir: Resort Boss Golf: {} launch: - /Resort Boss Golf.exe: + "/Resort Boss Golf.exe": - when: - os: windows store: steam @@ -432976,15 +434181,15 @@ Respawn Man: installDir: Respawn Man: {} launch: - /Respawn Man Steam.exe: + "/Respawn Man Steam.exe": - when: - os: windows store: steam - /Respawn Man.app/Contents/MacOS/Mac_Runner: + "/Respawn Man.app/Contents/MacOS/Mac_Runner": - when: - os: mac store: steam - /run.sh: + "/run.sh": - when: - os: linux store: steam @@ -432994,15 +434199,15 @@ Respublica: installDir: Respublica: {} launch: - /Respublica-darwin-x64/Respublica.app: + "/Respublica-darwin-x64/Respublica.app": - when: - os: mac store: steam - /Respublica-win32-x64/Respublica.exe: + "/Respublica-win32-x64/Respublica.exe": - when: - os: windows store: steam - /respublica-linux-x64/respublica: + "/respublica-linux-x64/respublica": - when: - os: linux store: steam @@ -433015,7 +434220,7 @@ Rest House: installDir: RestHouse: {} launch: - /RH5.exe: + "/RH5.exe": - when: - os: windows store: steam @@ -433037,12 +434242,12 @@ Restaurant Empire: id: 1207658823 Restaurant Empire II: files: - /My Games/Restaurant Emprie 2: + "/My Games/Restaurant Emprie 2": tags: - config when: - os: windows - /My Games/Restaurant Emprie 2/SAVE: + "/My Games/Restaurant Emprie 2/SAVE": tags: - save when: @@ -433050,7 +434255,7 @@ Restaurant Empire II: installDir: Restaurant Empire 2: {} launch: - /re2.exe: + "/re2.exe": - when: - store: steam steam: @@ -433062,7 +434267,7 @@ Restaurant Manager: installDir: Restaurant Manager: {} launch: - /Restaurant Manager.exe: + "/Restaurant Manager.exe": - when: - os: windows store: steam @@ -433071,11 +434276,11 @@ Restaurant Manager: Restaurant Renovation: steam: id: 1057630 -'Restaurant Solitaire: Pleasant Dinner': +"Restaurant Solitaire: Pleasant Dinner": installDir: Restaurant Solitaire Pleasant Dinner: {} launch: - /Restaurant Solitaire Pleasant Dinner.exe: + "/Restaurant Solitaire Pleasant Dinner.exe": - when: - os: windows store: steam @@ -433085,7 +434290,7 @@ Restaurant Tycoon: installDir: Restaurant Tycoon: {} launch: - /RestaurantTycoon.exe: + "/RestaurantTycoon.exe": - when: - os: windows store: steam @@ -433095,15 +434300,15 @@ Restless Hero: installDir: Restless Hero: {} launch: - /Build.app/Contents/MacOS/Build: + "/Build.app/Contents/MacOS/Build": - when: - os: mac store: steam - /Build.linux/Restless_Hero_linux.x86_64: + "/Build.linux/Restless_Hero_linux.x86_64": - when: - os: linux store: steam - /Restless Hero.exe: + "/Restless Hero.exe": - when: - os: windows store: steam @@ -433115,15 +434320,15 @@ Restless Soul: installDir: RESTLESS SOUL: {} launch: - /RESTLESS SOUL.exe: + "/RESTLESS SOUL.exe": - when: - os: windows store: steam - /linux.x86_64: + "/linux.x86_64": - when: - os: linux store: steam - /mac.app/Contents/MacOS/RESTLESS SOUL: + "/mac.app/Contents/MacOS/RESTLESS SOUL": - when: - os: mac store: steam @@ -433133,13 +434338,13 @@ Restoration: installDir: Restoration: {} launch: - /Game: - - arguments: '--in-process-gpu' + "/Game": + - arguments: "--in-process-gpu" when: - os: linux store: steam - /Game.exe: - - arguments: '--in-process-gpu' + "/Game.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam @@ -433149,28 +434354,28 @@ Restricted-RPS - All Aboard The Icarus: installDir: Restricted-RPS: {} launch: - /client: + "/client": - when: - os: linux store: steam - /client.app: + "/client.app": - when: - os: mac store: steam - /client.exe: + "/client.exe": - when: - os: windows store: steam steam: id: 364960 -'Resuffer: Down the Rabbit Hole': +"Resuffer: Down the Rabbit Hole": steam: id: 927760 -'Resume: The Video Game': +"Resume: The Video Game": installDir: Resume The Video Game: {} launch: - /resume1.exe: + "/resume1.exe": - when: - os: windows store: steam @@ -433180,17 +434385,17 @@ Resurgence: installDir: Resurgence: {} launch: - /Resurgence.exe: + "/Resurgence.exe": - when: - os: windows store: steam steam: id: 529920 -'Resurgence: Earth United': +"Resurgence: Earth United": installDir: Resurgence: {} launch: - /Resurgence.exe: + "/Resurgence.exe": - when: - bit: 64 os: windows @@ -433201,7 +434406,7 @@ Resurrector: installDir: Resurrector: {} launch: - /Resurrector.exe: + "/Resurrector.exe": - when: - store: steam steam: @@ -433210,11 +434415,11 @@ Resynth: installDir: Resynth: {} launch: - /Resynth.app/Contents/MacOS/Resynth: + "/Resynth.app/Contents/MacOS/Resynth": - when: - os: mac store: steam - /Resynth.exe: + "/Resynth.exe": - when: - os: windows store: steam @@ -433224,11 +434429,11 @@ Retaliation: installDir: Retaliation: {} launch: - /Retaliation.app: + "/Retaliation.app": - when: - os: mac store: steam - /Retaliation.exe: + "/Retaliation.exe": - when: - os: windows store: steam @@ -433237,15 +434442,15 @@ Retaliation: Retaliation Path of Rome: steam: id: 529070 -'Retaliation: Enemy Mine': +"Retaliation: Enemy Mine": installDir: Retaliation Enemy Mine: {} launch: - /Retaliation Enemy Mine.app/Contents/MacOS/Retaliation Enemy Mine: + "/Retaliation Enemy Mine.app/Contents/MacOS/Retaliation Enemy Mine": - when: - os: mac store: steam - /RetaliationEM.exe: + "/RetaliationEM.exe": - when: - os: windows store: steam @@ -433255,7 +434460,7 @@ Retention: installDir: Retention: {} launch: - /Retention.exe: + "/Retention.exe": - when: - os: windows store: steam @@ -433265,11 +434470,11 @@ Retimed: installDir: Retimed: {} launch: - /Mac/Retimed.app/Contents/MacOS/Retimed: + "/Mac/Retimed.app/Contents/MacOS/Retimed": - when: - os: mac store: steam - /Windows/Retimed.exe: + "/Windows/Retimed.exe": - when: - os: windows store: steam @@ -433279,20 +434484,20 @@ Retool: installDir: Retool: {} launch: - /retool.app: + "/retool.app": - when: - os: mac store: steam - /retool.exe: + "/retool.exe": - when: - os: windows store: steam - /retool.x86: + "/retool.x86": - when: - bit: 32 os: linux store: steam - /retool.x86_64: + "/retool.x86_64": - when: - bit: 64 os: linux @@ -433303,7 +434508,7 @@ Retrace: installDir: Retrace: {} launch: - /Retrace.exe: + "/Retrace.exe": - when: - store: steam steam: @@ -433314,7 +434519,7 @@ Retreat to Enen: installDir: Retreat To Enen: {} launch: - /RetreatToEnen.exe: + "/RetreatToEnen.exe": - when: - store: steam steam: @@ -433326,17 +434531,17 @@ Retro Block VR: id: 660820 Retro City Rampage: files: - /Library/Application Support/Vblank/Retro City Rampage: + "/Library/Application Support/Vblank/Retro City Rampage": tags: - save when: - os: mac - /RetroCityRampage/*.rsv: + "/RetroCityRampage/*.rsv": tags: - save when: - os: windows - /RetroCityRampage/rcr.cfg: + "/RetroCityRampage/rcr.cfg": tags: - config when: @@ -433346,16 +434551,16 @@ Retro City Rampage: installDir: Retro City Rampage: {} launch: - /Retro City Rampage.app/Contents/MacOS/Retro City Rampage: + "/Retro City Rampage.app/Contents/MacOS/Retro City Rampage": - when: - os: mac store: steam - workingDir: /Retro City Rampage.app - /retrocityrampage: + workingDir: "/Retro City Rampage.app" + "/retrocityrampage": - when: - os: linux store: steam - /retrocityrampage.exe: + "/retrocityrampage.exe": - when: - os: windows store: steam @@ -433365,7 +434570,7 @@ Retro Drift: installDir: Retro Drift: {} launch: - /RetroDrift.exe: + "/RetroDrift.exe": - when: - os: windows store: steam @@ -433378,11 +434583,11 @@ Retro Football Boss: installDir: Retro Football Boss: {} launch: - /osx_content/Retro Football Boss.app/Contents/MacOS/Retro Football Boss: + "/osx_content/Retro Football Boss.app/Contents/MacOS/Retro Football Boss": - when: - os: mac store: steam - /windows_content/retro.exe: + "/windows_content/retro.exe": - when: - os: windows store: steam @@ -433390,7 +434595,7 @@ Retro Football Boss: id: 511790 Retro Game Crunch: files: - /com.retrogamecrunch.*: + "/com.retrogamecrunch.*": tags: - save when: @@ -433398,11 +434603,11 @@ Retro Game Crunch: installDir: Retro Game Crunch: {} launch: - /Retro Game Crunch.app: + "/Retro Game Crunch.app": - when: - os: mac store: steam - /Retro Game Crunch.exe: + "/Retro Game Crunch.exe": - when: - os: windows store: steam @@ -433412,7 +434617,7 @@ Retro Hacker: installDir: Retro Hacker: {} launch: - /retrohacker.exe: + "/retrohacker.exe": - when: - os: windows store: steam @@ -433424,7 +434629,7 @@ Retro Machina: installDir: Retro Machina: {} launch: - /RetroMachina.exe: + "/RetroMachina.exe": - when: - os: windows store: steam @@ -433434,7 +434639,7 @@ Retro Miami: installDir: Retro Miami: {} launch: - /Retro Miami.exe: + "/Retro Miami.exe": - when: - os: windows store: steam @@ -433444,11 +434649,11 @@ Retro Parking: installDir: Retro Parking: {} launch: - /RetroParking.app/Contents/MacOS/RetroParking: + "/RetroParking.app/Contents/MacOS/RetroParking": - when: - os: mac store: steam - /RetroParking.exe: + "/RetroParking.exe": - when: - os: windows store: steam @@ -433458,20 +434663,20 @@ Retro Pinball: installDir: Retro Pinball: {} launch: - /Retro Pinball.app: + "/Retro Pinball.app": - when: - os: mac store: steam - /Retro Pinball.exe: + "/Retro Pinball.exe": - when: - os: windows store: steam - /Retro Pinball.x86: + "/Retro Pinball.x86": - when: - bit: 32 os: linux store: steam - /Retro Pinball.x86_64: + "/Retro Pinball.x86_64": - when: - bit: 64 os: linux @@ -433482,7 +434687,7 @@ Retro Pixel Racers: installDir: Retro Pixel Racers: {} launch: - /RetroPixelRacers.exe: + "/RetroPixelRacers.exe": - when: - os: windows store: steam @@ -433492,11 +434697,11 @@ Retro RPG Online 2: installDir: RetroRPGOnline2: {} launch: - /Retro RPG Online 2.exe: + "/Retro RPG Online 2.exe": - when: - os: windows store: steam - /com.retrorpgonline2paid: + "/com.retrorpgonline2paid": - when: - os: linux store: steam @@ -433506,7 +434711,7 @@ Retro Racers: installDir: Retro Racers: {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: @@ -433515,7 +434720,7 @@ Retro Racers 2: installDir: Retro Racers 2: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -433528,7 +434733,7 @@ Retro Rocket Robot: installDir: Retro Rocket Robot: {} launch: - /rrr_win_x86.exe: + "/rrr_win_x86.exe": - when: - os: windows store: steam @@ -433538,7 +434743,7 @@ Retro Rockets: installDir: Retro Rockets: {} launch: - /RetroRockets.exe: + "/RetroRockets.exe": - when: - bit: 64 os: windows @@ -433549,7 +434754,7 @@ Retro Snake: installDir: Retro Snake: {} launch: - /snake.exe: + "/snake.exe": - when: - os: windows store: steam @@ -433559,8 +434764,8 @@ Retro Snake Adventures: installDir: Snake The Adventure new: {} launch: - /nw.exe: - - arguments: '-windowed' + "/nw.exe": + - arguments: "-windowed" when: - os: windows store: steam @@ -433582,7 +434787,7 @@ Retro Vision: installDir: Retro Vision: {} launch: - /Retro Vision.exe: + "/Retro Vision.exe": - when: - os: windows store: steam @@ -433592,11 +434797,11 @@ Retro Wing Prime: installDir: Retro Wing Prime: {} launch: - /Retro Wing.exe: + "/Retro Wing.exe": - when: - os: windows store: steam - /retro_wing.app/Contents/MacOS/retro_wing: + "/retro_wing.app/Contents/MacOS/retro_wing": - when: - os: mac store: steam @@ -433604,7 +434809,7 @@ Retro Wing Prime: id: 974600 Retro/Grade: files: - /userdata//222660/remote: + "/userdata//222660/remote": tags: - save when: @@ -433612,7 +434817,7 @@ Retro/Grade: installDir: RetroGrade: {} launch: - /RetroGrade.exe: + "/RetroGrade.exe": - when: - os: windows store: steam @@ -433620,38 +434825,26 @@ Retro/Grade: id: 222660 RetroArch: files: - /config/*/*.cfg: - tags: - - config - when: - - os: windows - - os: mac - /config/*/*.opt: - tags: - - config - when: - - os: windows - - os: mac - /retroarch-core-options.cfg: + "/retroarch-core-options.cfg": tags: - config when: - os: linux - /retroarch.cfg: + "/retroarch.cfg": tags: - config when: - os: windows - os: mac - os: linux - /saves: + "/saves": tags: - save when: - os: windows - os: mac - os: linux - /states: + "/states": tags: - save when: @@ -433661,11 +434854,11 @@ RetroArch: installDir: RetroArch: {} launch: - /retroarch.exe: + "/retroarch.exe": - when: - os: windows store: steam - /retroarch.sh: + "/retroarch.sh": - when: - os: linux store: steam @@ -433685,7 +434878,7 @@ RetroMania Wrestling: installDir: RetroMania Wrestling: {} launch: - /RetroManiaWrestling.exe: + "/RetroManiaWrestling.exe": - when: - os: windows store: steam @@ -433695,7 +434888,7 @@ RetroMaze: installDir: RetroMaze: {} launch: - /retro_maze.exe: + "/retro_maze.exe": - when: - os: windows store: steam @@ -433705,7 +434898,7 @@ RetroVamp: installDir: RetroVamp: {} launch: - /RetroVamp.exe: + "/RetroVamp.exe": - when: - store: steam steam: @@ -433714,11 +434907,11 @@ Retrobooster: installDir: Retrobooster: {} launch: - /bin/retrobooster.exe: + "/bin/retrobooster.exe": - when: - os: windows store: steam - /retrobooster: + "/retrobooster": - when: - os: linux store: steam @@ -433726,7 +434919,7 @@ Retrobooster: id: 310830 Retrocycles: files: - /steamapps/common/Retrocycles/config: + "/steamapps/common/Retrocycles/config": tags: - config when: @@ -433735,16 +434928,16 @@ Retrocycles: installDir: Retrocycles: {} launch: - /Retrocycles: + "/Retrocycles": - when: - bit: 64 os: linux store: steam - /Retrocycles.app: + "/Retrocycles.app": - when: - os: mac store: steam - /Retrocycles.exe: + "/Retrocycles.exe": - when: - os: windows store: steam @@ -433754,7 +434947,7 @@ Retrograde Arena: installDir: Retrograde Arena: {} launch: - /Retrograde Arena.exe: + "/Retrograde Arena.exe": - when: - os: windows store: steam @@ -433764,7 +434957,7 @@ Retroids: installDir: Retroids: {} launch: - /Retroids.exe: + "/Retroids.exe": - when: - os: windows store: steam @@ -433774,11 +434967,11 @@ Retromancer: installDir: Retromancer: {} launch: - /Retromancer.app: + "/Retromancer.app": - when: - os: mac store: steam - /Retromancer.exe: + "/Retromancer.exe": - when: - bit: 64 os: windows @@ -433787,12 +434980,12 @@ Retromancer: id: 1007180 Retrovirus: files: - /Retrovirus: + "/Retrovirus": tags: - config when: - os: windows - /Retrovirus/Save: + "/Retrovirus/Save": tags: - save when: @@ -433800,7 +434993,7 @@ Retrovirus: installDir: Retrovirus: {} launch: - /RetrovirusLauncher.exe: + "/RetrovirusLauncher.exe": - when: - store: steam steam: @@ -433809,7 +435002,7 @@ Retrowave: installDir: Retrowave: {} launch: - /Retrowave.exe: + "/Retrowave.exe": - when: - store: steam steam: @@ -433818,7 +435011,7 @@ Return Home: installDir: Return Home: {} launch: - /ReturnHome.exe: + "/ReturnHome.exe": - when: - os: windows store: steam @@ -433828,32 +435021,41 @@ Return Null - Episode 1: installDir: Return NULL - Episode 1: {} launch: - /Return NULL - Episode 1.app: + "/Return NULL - Episode 1.app": - when: - bit: 32 os: mac store: steam - /Return NULL - Episode 1.exe: + - bit: 64 + os: mac + store: steam + "/Return NULL - Episode 1.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam - /returnnullep1: + "/returnnullep1": - when: - bit: 32 os: linux store: steam + - bit: 64 + os: linux + store: steam steam: id: 357370 Return Of The Zombie King: installDir: Return Of The Zombie King: {} launch: - /DeadKing.app: + "/DeadKing.app": - when: - os: mac store: steam - /DeadKing.exe: + "/DeadKing.exe": - when: - os: windows store: steam @@ -433868,39 +435070,39 @@ Return of Red Riding Hood Enhanced Edition: installDir: Return_of_Red_Riding_Hood_Enhanced_Edition: {} launch: - /ChaperonRougeExt.app/Contents/MacOS/sdl-instead: + "/ChaperonRougeExt.app/Contents/MacOS/sdl-instead": - when: - os: mac store: steam - /chaperonext: + "/chaperonext": - when: - os: linux store: steam - /chaperonext.exe: + "/chaperonext.exe": - when: - bit: 32 os: windows store: steam - - arguments: '-fullscreen -standalone -game chaperon_ext' + - arguments: "-fullscreen -standalone -game chaperon_ext" when: - bit: 64 os: windows store: steam steam: id: 594320 -'Return of the Incredible Machine: Contraptions': +"Return of the Incredible Machine: Contraptions": files: - /CONTRAPTIONS.INI: + "/CONTRAPTIONS.INI": tags: - config when: - os: windows - /Homemade: + "/Homemade": tags: - save when: - os: windows - /Saved Games: + "/Saved Games": tags: - save when: @@ -433909,7 +435111,7 @@ Return of Red Riding Hood Enhanced Edition: id: 1207663943 Return of the Obra Dinn: files: - /AppData/LocalLow/3909/ObraDinn: + "/AppData/LocalLow/3909/ObraDinn": tags: - save when: @@ -433919,11 +435121,11 @@ Return of the Obra Dinn: installDir: ObraDinn: {} launch: - /ObraDinn.app: + "/ObraDinn.app": - when: - os: mac store: steam - /ObraDinn.exe: + "/ObraDinn.exe": - when: - bit: 64 os: windows @@ -433943,39 +435145,39 @@ Return of the Phantom: id: 1299710 Return of the Triad: files: - /*.zds: + "/*.zds": tags: - save when: - os: windows - /zdoom-*-ROTT.ini: + "/zdoom-*-ROTT.ini": tags: - config when: - os: windows Return to Castle Wolfenstein: files: - /Main/save: + "/Main/save": tags: - save when: - os: windows - /Main/wolfconfig.cfg: + "/Main/wolfconfig.cfg": tags: - config when: - os: windows - /Main/wolfconfig_mp.cfg: + "/Main/wolfconfig_mp.cfg": tags: - config when: - os: windows - /RTCW/main: + "/RTCW/main": tags: - config when: - os: windows - /RTCW/main/save: + "/RTCW/main/save": tags: - save when: @@ -433990,10 +435192,10 @@ Return to Castle Wolfenstein: installDir: Return to Castle Wolfenstein: {} launch: - /WolfMP.exe: + "/WolfMP.exe": - when: - store: steam - /WolfSP.exe: + "/WolfSP.exe": - when: - store: steam steam: @@ -434005,19 +435207,19 @@ Return to Earth: installDir: Return to Earth: {} launch: - /RtE.exe: + "/RtE.exe": - when: - store: steam steam: id: 1135750 Return to Krondor: files: - /Books: + "/Books": tags: - save when: - os: windows - /RTKRONDOR.INI: + "/RTKRONDOR.INI": tags: - config when: @@ -434027,39 +435229,39 @@ Return to Krondor: installDir: Return to Krondor: {} launch: - /RtK.exe: + "/RtK.exe": - when: - store: steam steam: id: 564960 Return to Monkey Island: files: - /.local/share/Terrible Toybox/Return to Monkey Island: + "/.local/share/Terrible Toybox/Return to Monkey Island": tags: - save when: - os: linux - /.local/share/Terrible Toybox/Return to Monkey Island/Prefs.json: + "/.local/share/Terrible Toybox/Return to Monkey Island/Prefs.json": tags: - config when: - os: linux - /Library/Application Support/Terrible Toybox/Return to Monkey Island/Prefs.json: + "/Library/Application Support/Terrible Toybox/Return to Monkey Island/Prefs.json": tags: - config when: - os: mac - /Terrible Toybox/Return to Monkey Island: + "/Terrible Toybox/Return to Monkey Island": tags: - save when: - os: windows - /Terrible Toybox/Return to Monkey Island/Prefs.json: + "/Terrible Toybox/Return to Monkey Island/Prefs.json": tags: - config when: - os: windows - /Packages/DevolverDigital.ReturntoMonkeyIslandXBSeriesXS_6kzv4j18v0c96/SystemAppData/wgs: + "/Packages/DevolverDigital.ReturntoMonkeyIslandXBSeriesXS_6kzv4j18v0c96/SystemAppData/wgs": tags: - save when: @@ -434075,16 +435277,16 @@ Return to Monkey Island: installDir: Return to Monkey Island: {} launch: - /Return to Monkey Island: + "/Return to Monkey Island": - when: - bit: 64 os: linux store: steam - /Return to Monkey Island.app/Contents/MacOS/Return to Monkey Island: + "/Return to Monkey Island.app/Contents/MacOS/Return to Monkey Island": - when: - os: mac store: steam - /Return to Monkey Island.exe: + "/Return to Monkey Island.exe": - when: - bit: 64 os: windows @@ -434093,12 +435295,12 @@ Return to Monkey Island: id: 2060130 Return to Mysterious Island: files: - /Users: + "/Users": tags: - save when: - os: windows - /config.ini: + "/config.ini": tags: - config when: @@ -434108,11 +435310,11 @@ Return to Mysterious Island: installDir: Return to Mysterious Island: {} launch: - /RtMI.exe: + "/RtMI.exe": - when: - os: windows store: steam - /SteamTest.app/Contents/MacOS/SteamTest: + "/SteamTest.app/Contents/MacOS/SteamTest": - when: - os: mac store: steam @@ -434120,17 +435322,17 @@ Return to Mysterious Island: id: 277110 Return to Mysterious Island 2: files: - /config.ini: + "/config.ini": tags: - config when: - os: windows - /RTMI2/Saves: + "/RTMI2/Saves": tags: - save when: - os: windows - /RTMI2/Saves/config.ini: + "/RTMI2/Saves/config.ini": tags: - config when: @@ -434140,7 +435342,7 @@ Return to Mysterious Island 2: installDir: Return To Mysterious Island 2: {} launch: - /RTMI2.exe: + "/RTMI2.exe": - when: - os: windows store: steam @@ -434153,15 +435355,15 @@ Return to Planet X: installDir: Return to Planet X: {} launch: - /Return to Planet X.app/Contents/MacOS/Return to Planet X: + "/Return to Planet X.app/Contents/MacOS/Return to Planet X": - when: - os: mac store: steam - /Return to Planet X.exe: + "/Return to Planet X.exe": - when: - os: windows store: steam - /Return to Planet X.x86_64: + "/Return to Planet X.x86_64": - when: - bit: 64 os: linux @@ -434170,22 +435372,22 @@ Return to Planet X: id: 643970 Return to Shironagasu Island: files: - /return to shironagasu island ver2/*.bmp: + "/return to shironagasu island ver2/*.bmp": tags: - save when: - os: windows - /return to shironagasu island ver2/*.ksd: + "/return to shironagasu island ver2/*.ksd": tags: - save when: - os: windows - /return to shironagasu island/*.bmp: + "/return to shironagasu island/*.bmp": tags: - save when: - os: windows - /return to shironagasu island/*.ksd: + "/return to shironagasu island/*.ksd": tags: - save when: @@ -434193,7 +435395,7 @@ Return to Shironagasu Island: installDir: Return to Shironagasu Island: {} launch: - /Shironagasu.exe: + "/Shironagasu.exe": - when: - os: windows store: steam @@ -434205,7 +435407,7 @@ Return to Zork: installDir: Return to Zork: {} launch: - /SierraLauncher.exe: + "/SierraLauncher.exe": - when: - store: steam steam: @@ -434214,7 +435416,7 @@ Return.: installDir: Return: {} launch: - /Return.exe: + "/Return.exe": - when: - os: windows store: steam @@ -434224,7 +435426,7 @@ ReturnState: installDir: ReturnState: {} launch: - /ReturnState.exe: + "/ReturnState.exe": - when: - os: windows store: steam @@ -434232,30 +435434,32 @@ ReturnState: id: 719340 Returnal: files: - /Returnal/Epic/Saved/Config: + "/Returnal/Epic/Saved/Config": tags: - config when: - - store: epic - /Returnal/Epic/Saved/SaveGames: + - os: windows + "/Returnal/Epic/Saved/SaveGames": tags: - save when: - - store: epic - /Returnal/Steam/Saved/Config: + - os: windows + "/Returnal/Steam/Saved/Config": tags: - config when: - - store: steam - /Returnal/Steam/Saved/SaveGames: + - os: windows + store: steam + "/Returnal/Steam/Saved/SaveGames": tags: - save when: - - store: steam + - os: windows + store: steam installDir: Returnal: {} launch: - /Returnal/Binaries/Win64/Launcher.exe: + "/Returnal/Binaries/Win64/Launcher.exe": - when: - store: steam steam: @@ -434264,11 +435468,11 @@ Returner 77: installDir: Returner 77: {} launch: - /Returner77.app: + "/Returner77.app": - when: - os: mac store: steam - /Returner77.exe: + "/Returner77.exe": - when: - os: windows store: steam @@ -434276,19 +435480,19 @@ Returner 77: id: 799810 Reus: files: - /Library/Application Support/Reus: + "/Library/Application Support/Reus": tags: - config - save when: - os: mac - /Reus: + "/Reus": tags: - config - save when: - os: windows - /Reus: + "/Reus": tags: - config - save @@ -434299,15 +435503,15 @@ Reus: installDir: Reus: {} launch: - /Reus: + "/Reus": - when: - os: linux store: steam - /Reus.app: + "/Reus.app": - when: - os: mac store: steam - /Reus.exe: + "/Reus.exe": - when: - os: windows store: steam @@ -434317,7 +435521,7 @@ Reveal: installDir: Reveal: {} launch: - /Reveal.exe: + "/Reveal.exe": - when: - os: windows store: steam @@ -434325,7 +435529,7 @@ Reveal: id: 882200 Reveal The Deep: files: - /userData: + "/userData": tags: - save when: @@ -434333,15 +435537,15 @@ Reveal The Deep: installDir: Reveal The Deep: {} launch: - /Linux/RevealTheDeep: + "/Linux/RevealTheDeep": - when: - os: linux store: steam - /Reveal the Deep.app: + "/Reveal the Deep.app": - when: - os: mac store: steam - /rtd.exe: + "/rtd.exe": - when: - os: windows store: steam @@ -434358,8 +435562,8 @@ Revelation Online: installDir: Revelation Online: {} launch: - /RevelationMycomSteamLoader.exe: - - arguments: '-fromsteam' + "/RevelationMycomSteamLoader.exe": + - arguments: "-fromsteam" when: - store: steam steam: @@ -434371,12 +435575,12 @@ RevelationTrestan-尸忆岛: id: 931540 Revelations 2012: files: - /cfg: + "/cfg": tags: - config when: - os: windows - /save: + "/save": tags: - save when: @@ -434384,19 +435588,19 @@ Revelations 2012: installDir: Revelations 2012: {} launch: - /revelations.exe: + "/revelations.exe": - when: - store: steam steam: id: 201070 Revenant: files: - /Save: + "/Save": tags: - save when: - os: windows - /revenant.ini: + "/revenant.ini": tags: - config when: @@ -434407,7 +435611,7 @@ Revenant Dogma: installDir: Revenant Dogma: {} launch: - /RevenantDogma.exe: + "/RevenantDogma.exe": - when: - store: steam steam: @@ -434416,11 +435620,11 @@ Revenant March: installDir: RevenantMarch: {} launch: - /RevenantMarch.app: + "/RevenantMarch.app": - when: - os: mac store: steam - /RevenantMarch.exe: + "/RevenantMarch.exe": - when: - os: windows store: steam @@ -434430,11 +435634,11 @@ Revenant Saga: installDir: Revenant Saga: {} launch: - /RevenantSaga.app: + "/RevenantSaga.app": - when: - os: mac store: steam - /RevenantSaga.exe: + "/RevenantSaga.exe": - when: - os: windows store: steam @@ -434444,7 +435648,7 @@ Revenant in the Paradise: installDir: Revenant in the Paradise: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -434454,15 +435658,15 @@ Revenge Quest: installDir: Revenge Quest: {} launch: - /RevengeQuest.app/Contents/MacOS/RevengeQuest: + "/RevengeQuest.app/Contents/MacOS/RevengeQuest": - when: - os: mac store: steam - /RevengeQuest.exe: + "/RevengeQuest.exe": - when: - os: windows store: steam - /RevengeQuest.x86: + "/RevengeQuest.x86": - when: - os: linux store: steam @@ -434475,18 +435679,18 @@ Revenge of the Headless: installDir: Headless: {} launch: - /Headless.exe: + "/Headless.exe": - when: - bit: 64 os: windows store: steam steam: id: 778050 -'Revenge of the Spirit: Rite of Resurrection': +"Revenge of the Spirit: Rite of Resurrection": installDir: Revenge of the Spirit Rite of Resurrection: {} launch: - /Revenge Of The Spirit.exe: + "/Revenge Of The Spirit.exe": - when: - os: windows store: steam @@ -434494,14 +435698,14 @@ Revenge of the Headless: id: 491020 Revenge of the Titans: files: - /.revenge_of_the_titans_1.80: + "/.revenge_of_the_titans_1.80": tags: - config - save when: - os: windows - os: linux - /.revenge_of_the_titans_1.80: + "/.revenge_of_the_titans_1.80": tags: - config - save @@ -434510,15 +435714,15 @@ Revenge of the Titans: installDir: Revenge of the Titans: {} launch: - /RevengeOfTheTitans.app: + "/RevengeOfTheTitans.app": - when: - os: mac store: steam - /RevengeOfTheTitans.exe: + "/RevengeOfTheTitans.exe": - when: - os: windows store: steam - /revenge.sh: + "/revenge.sh": - when: - os: linux store: steam @@ -434528,30 +435732,30 @@ Revenge on the Streets: installDir: Revenge on the Streets_win32: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam steam: id: 1095320 -'Revenge: First Blood': +"Revenge: First Blood": steam: id: 596690 -'Revenge: Rhobar''s myth': +"Revenge: Rhobar's myth": installDir: - Revenge Rhobar's myth: {} + "Revenge Rhobar's myth": {} launch: - /RevengeLauncher.exe: + "/RevengeLauncher.exe": - when: - os: windows store: steam steam: id: 324270 -'Revenger: Age of Morons': +"Revenger: Age of Morons": installDir: REVENGER Age of Morons: {} launch: - /REVENGER1.exe: + "/REVENGER1.exe": - when: - store: steam steam: @@ -434560,7 +435764,7 @@ Revenis Prologue 01: installDir: Revenis Prologue 01: {} launch: - /Revenis Prologue 01.exe: + "/Revenis Prologue 01.exe": - when: - os: windows store: steam @@ -434570,7 +435774,7 @@ Reventa: installDir: Reventa: {} launch: - /Reventa.exe: + "/Reventa.exe": - when: - bit: 64 os: windows @@ -434579,12 +435783,12 @@ Reventa: id: 627890 Reventure: files: - /data.sav: + "/data.sav": tags: - save when: - os: windows - /options.sav: + "/options.sav": tags: - config when: @@ -434594,7 +435798,7 @@ Reventure: installDir: Reventure: {} launch: - /Reventure.exe: + "/Reventure.exe": - when: - os: windows store: steam @@ -434604,24 +435808,24 @@ Reventure: - config steam: id: 900270 -'Reverence: The Ultimate Combat Experience': +"Reverence: The Ultimate Combat Experience": installDir: Reverence: {} launch: - /Reverence.app: + "/Reverence.app": - when: - os: mac store: steam - /Reverence.exe: + "/Reverence.exe": - when: - os: windows store: steam - /Reverence.x86: + "/Reverence.x86": - when: - bit: 32 os: linux store: steam - /Reverence.x86_64: + "/Reverence.x86_64": - when: - bit: 64 os: linux @@ -434632,11 +435836,11 @@ Reverie: installDir: Reverie: {} launch: - /Reverie.app: + "/Reverie.app": - when: - os: mac store: steam - /Reverie.exe: + "/Reverie.exe": - when: - os: windows store: steam @@ -434646,7 +435850,7 @@ Reverie - A Heroes Tale: installDir: Reverie - A Heroes Tale: {} launch: - /Reverie.exe: + "/Reverie.exe": - when: - os: windows store: steam @@ -434654,12 +435858,12 @@ Reverie - A Heroes Tale: id: 813030 Reverie Knights Tactics: files: - /unity3d/40 Giants Entertainment/Reverie Knights Tactics: + "/unity3d/40 Giants Entertainment/Reverie Knights Tactics": tags: - save when: - os: linux - /unity3d/40 Giants Entertainment/Reverie Knights Tactics/prefs: + "/unity3d/40 Giants Entertainment/Reverie Knights Tactics/prefs": tags: - config when: @@ -434669,26 +435873,26 @@ Reverie Knights Tactics: installDir: ReverieKnights: {} launch: - /Contents/MacOS/Reverie Knights Tactics: + "/Contents/MacOS/Reverie Knights Tactics": - when: - os: mac store: steam - /Reverie Knights Tactics.exe: + "/Reverie Knights Tactics.exe": - when: - os: windows store: steam - /Reverie Knights Tactics.x86_64: + "/Reverie Knights Tactics.x86_64": - when: - os: linux store: steam steam: id: 1399690 -'Reverse Collapse: Code Name Bakery': +"Reverse Collapse: Code Name Bakery": steam: id: 1127700 Reverse Crawl: files: - /Reverse_Crawl: + "/Reverse_Crawl": tags: - save when: @@ -434696,11 +435900,11 @@ Reverse Crawl: installDir: Reverse Crawl: {} launch: - /Reverse Crawl.exe: + "/Reverse Crawl.exe": - when: - os: windows store: steam - /ReverseCrawl.app: + "/ReverseCrawl.app": - when: - os: mac store: steam @@ -434710,8 +435914,8 @@ Reverse Fantasy Legend 2: installDir: Reverse Fantasy Legend 2 逆袭幻想传2: {} launch: - /Game.exe: - - arguments: '--in-process-gpu' + "/Game.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam @@ -434721,15 +435925,15 @@ Reverse Me! Rez/Ru: installDir: Reverse Me Rez Ru: {} launch: - /ReverseMeRezRu/ReverseMeRezRu.app: + "/ReverseMeRezRu/ReverseMeRezRu.app": - when: - os: mac store: steam - /ReverseMeRezRu/ReverseMeRezRu.exe: + "/ReverseMeRezRu/ReverseMeRezRu.exe": - when: - os: windows store: steam - /ReverseMeRezRu/ReverseMeRezRu.sh: + "/ReverseMeRezRu/ReverseMeRezRu.sh": - when: - os: linux store: steam @@ -434739,7 +435943,7 @@ Reverse Side: installDir: ReewGames: {} launch: - /ReverseSide.exe: + "/ReverseSide.exe": - when: - os: windows store: steam @@ -434749,7 +435953,7 @@ Reverse x Reverse: installDir: Reverse x Reverse: {} launch: - /revrev.exe: + "/revrev.exe": - when: - os: windows store: steam @@ -434762,11 +435966,11 @@ ReversiQuest2: installDir: ReversiQuest2: {} launch: - /reversiquest2.app/Contents/MacOS/ReversiQuest2: + "/reversiquest2.app/Contents/MacOS/ReversiQuest2": - when: - os: mac store: steam - /reversiquest2.exe: + "/reversiquest2.exe": - when: - bit: 64 os: windows @@ -434777,16 +435981,16 @@ Reversion - The Escape (1st Chapter): installDir: Reversion: {} launch: - /Reversion.app/Contents/MacOS/reversion: + "/Reversion.app/Contents/MacOS/reversion": - when: - bit: 64 os: mac store: steam - /Reversion.exe: + "/Reversion.exe": - when: - os: windows store: steam - /reversion: + "/reversion": - when: - bit: 32 os: linux @@ -434797,16 +436001,16 @@ Reversion - The Meeting (2nd Chapter): installDir: Reversion - The Meeting: {} launch: - /Reversion2.app/Contents/MacOS/reversion: + "/Reversion2.app/Contents/MacOS/reversion": - when: - bit: 64 os: mac store: steam - /reversion: + "/reversion": - when: - os: linux store: steam - /reversion2.exe: + "/reversion2.exe": - when: - os: windows store: steam @@ -434816,7 +436020,7 @@ Reversion - The Return (Last Chapter): installDir: Reversion - The Return: {} launch: - /Reversion3.exe: + "/Reversion3.exe": - when: - os: windows store: steam @@ -434824,7 +436028,7 @@ Reversion - The Return (Last Chapter): id: 281080 Revhead: files: - /AppData/LocalLow/Creative Pudding Hungary Llc_/Revhead: + "/AppData/LocalLow/Creative Pudding Hungary Llc_/Revhead": tags: - save when: @@ -434832,15 +436036,15 @@ Revhead: installDir: Revhead: {} launch: - /Revhead.app: + "/Revhead.app": - when: - os: mac store: steam - /Revhead.exe: + "/Revhead.exe": - when: - os: windows store: steam - /Revhead.x86_64: + "/Revhead.x86_64": - when: - bit: 64 os: linux @@ -434851,7 +436055,7 @@ Reviser: installDir: Reviser: {} launch: - /Reviser.exe: + "/Reviser.exe": - when: - bit: 64 os: windows @@ -434860,7 +436064,7 @@ Reviser: id: 1171330 Revita: files: - /Revita: + "/Revita": tags: - config - save @@ -434871,7 +436075,7 @@ Revita: installDir: Revita: {} launch: - /Revita.exe: + "/Revita.exe": - when: - store: steam steam: @@ -434880,7 +436084,7 @@ Revival Reset: installDir: REVIVAL RESET: {} launch: - /REVIVAL_RESET.exe: + "/REVIVAL_RESET.exe": - when: - os: windows store: steam @@ -434893,7 +436097,7 @@ Revival of the Road: installDir: Replace of the Reality: {} launch: - /Rotr.exe: + "/Rotr.exe": - when: - bit: 64 os: windows @@ -434909,7 +436113,7 @@ Revolt (2016): installDir: Revolt: {} launch: - /Revolt.exe: + "/Revolt.exe": - when: - os: windows store: steam @@ -434919,19 +436123,19 @@ Revolt 1917: installDir: REVOLT_1917: {} launch: - /Revolt1917.exe: + "/Revolt1917.exe": - when: - store: steam steam: id: 598030 Revolution: files: - /Revolution/Cfg: + "/Revolution/Cfg": tags: - config when: - os: windows - /Revolution/Save: + "/Revolution/Save": tags: - save when: @@ -434940,7 +436144,7 @@ Revolution 60: installDir: Revolution 60: {} launch: - /Binaries/Win32/UDK.exe: + "/Binaries/Win32/UDK.exe": - when: - os: windows store: steam @@ -434950,7 +436154,7 @@ Revolution Ace: installDir: Revolution Ace: {} launch: - /Binaries/Win32/ShmupGame.exe: + "/Binaries/Win32/ShmupGame.exe": - when: - store: steam steam: @@ -434959,30 +436163,30 @@ Revolution Under Siege: installDir: Revolution Under Siege Gold: {} launch: - /autorun.exe: + "/autorun.exe": - when: - store: steam steam: id: 374380 -'Revolution: Virtual Playspace': +"Revolution: Virtual Playspace": installDir: Revolution_VPS: {} launch: - /Revolution_VPS.exe: + "/Revolution_VPS.exe": - when: - os: windows store: steam - /Revolution_VPS.x86: + "/Revolution_VPS.x86": - when: - bit: 32 os: linux store: steam - /Revolution_VPS_Linux.x86_64: + "/Revolution_VPS_Linux.x86_64": - when: - bit: 64 os: linux store: steam - /Revolution_VPS_Mac.app: + "/Revolution_VPS_Mac.app": - when: - os: mac store: steam @@ -434992,24 +436196,24 @@ Revolve: installDir: Revolve: {} launch: - /Revolve.app/Contents/MacOS/Revolve: + "/Revolve.app/Contents/MacOS/Revolve": - when: - os: mac store: steam - /revolve.exe: + "/revolve.exe": - when: - os: windows store: steam steam: id: 412760 -'Revolver360 Re:Actor': +"Revolver360 Re:Actor": files: - /savedata/configdata.xml: + "/savedata/configdata.xml": tags: - config when: - os: windows - /savedata/savedata.rvv: + "/savedata/savedata.rvv": tags: - save when: @@ -435019,7 +436223,7 @@ Revolve: installDir: REVOLVER360REACTOR: {} launch: - /REVOLVER360REACTOR.exe: + "/REVOLVER360REACTOR.exe": - when: - os: windows store: steam @@ -435029,7 +436233,7 @@ Revulsion: installDir: Revulsion: {} launch: - /Revulsion.exe: + "/Revulsion.exe": - when: - bit: 64 os: windows @@ -435040,7 +436244,7 @@ Rewind: installDir: Rewind: {} launch: - /Binaries/Win32/UDK.exe: + "/Binaries/Win32/UDK.exe": - when: - os: windows store: steam @@ -435052,53 +436256,53 @@ Rex Nebular and the Cosmic Gender Bender: installDir: Rex Nebular and the Cosmic Gender Bender: {} launch: - /Rex Nebular.app: + "/Rex Nebular.app": - when: - os: mac store: steam - /dosbox_linux/daum/launch_rexnebular_game_daum.sh: + "/dosbox_linux/daum/launch_rexnebular_game_daum.sh": - when: - os: linux store: steam - workingDir: /dosbox_linux/daum - /dosbox_linux/launch_rexnebular_config.sh: + workingDir: "/dosbox_linux/daum" + "/dosbox_linux/launch_rexnebular_config.sh": - when: - os: linux store: steam - workingDir: /dosbox_linux - /dosbox_linux/launch_rexnebular_game.sh: + workingDir: "/dosbox_linux" + "/dosbox_linux/launch_rexnebular_game.sh": - when: - os: linux store: steam - workingDir: /dosbox_linux - /dosbox_windows/daum/dosbox.exe: - - arguments: '-conf dosbox_rexnebular.conf -conf dosbox_rexnebular_launch_windows.conf -noconsole' + workingDir: "/dosbox_linux" + "/dosbox_windows/daum/dosbox.exe": + - arguments: "-conf dosbox_rexnebular.conf -conf dosbox_rexnebular_launch_windows.conf -noconsole" when: - os: windows store: steam - workingDir: /dosbox_windows/daum - /dosbox_windows/dosbox.exe: - - arguments: '-conf dosbox_rexnebular.conf -conf dosbox_rexnebular_launch_windows.conf -noconsole' + workingDir: "/dosbox_windows/daum" + "/dosbox_windows/dosbox.exe": + - arguments: "-conf dosbox_rexnebular.conf -conf dosbox_rexnebular_launch_windows.conf -noconsole" when: - os: windows store: steam - workingDir: /dosbox_windows - - arguments: '-conf dosbox_rexnebular.conf -conf dosbox_rexnebular_config_windows.conf -noconsole' + workingDir: "/dosbox_windows" + - arguments: "-conf dosbox_rexnebular.conf -conf dosbox_rexnebular_config_windows.conf -noconsole" when: - os: windows store: steam - workingDir: /dosbox_windows + workingDir: "/dosbox_windows" steam: id: 328430 Rex Rocket: files: - /Rex Rocket: + "/Rex Rocket": tags: - config - save when: - os: windows - /Rex Rocket: + "/Rex Rocket": tags: - config - save @@ -435107,29 +436311,29 @@ Rex Rocket: installDir: Rex Rocket: {} launch: - /Rex Rocket.app: + "/Rex Rocket.app": - when: - os: mac store: steam - /Rex Rocket.exe: + "/Rex Rocket.exe": - when: - os: windows store: steam - /RexRocket: + "/RexRocket": - when: - os: linux store: steam steam: id: 288020 -'Rex: Another Island': +"Rex: Another Island": installDir: Rex Another Island: {} launch: - /REX.app: + "/REX.app": - when: - os: mac store: steam - /REX.exe: + "/REX.exe": - when: - os: windows store: steam @@ -435137,12 +436341,12 @@ Rex Rocket: id: 699150 Rexaura: files: - /rexaura/cfg: + "/rexaura/cfg": tags: - config when: - os: windows - /rexaura/save: + "/rexaura/save": tags: - save when: @@ -435150,19 +436354,21 @@ Rexaura: installDir: Rexaura: {} launch: - /hl2.exe: - - arguments: '-game rexaura -steam' + "/hl2.exe": + - arguments: "-game rexaura -steam" when: - os: windows store: steam - /hl2.sh: - - arguments: '-game rexaura -steam' + "/hl2.sh": + - arguments: "-game rexaura -steam" when: - os: mac store: steam + - os: linux + store: steam steam: id: 317790 -'Rexodus: A VR Story Experience': +"Rexodus: A VR Story Experience": installDir: Rexodus A VR Story Experience: {} steam: @@ -435171,12 +436377,12 @@ Reynard: installDir: Reynard: {} launch: - /Reynard.exe: + "/Reynard.exe": - when: - bit: 64 os: windows store: steam - /Reynard.x86_64: + "/Reynard.x86_64": - when: - bit: 64 os: linux @@ -435185,12 +436391,12 @@ Reynard: id: 970140 Rez Infinite: files: - /CFG: + "/CFG": tags: - config when: - os: windows - /SAV/: + "/SAV/": tags: - save when: @@ -435198,7 +436404,7 @@ Rez Infinite: installDir: Rez Infinite: {} launch: - /Rez-infinite.exe: + "/Rez-infinite.exe": - arguments: vr=0 when: - bit: 64 @@ -435210,17 +436416,17 @@ Rez Plz: installDir: REZ PLZ: {} launch: - /REZPLZ.exe: + "/REZPLZ.exe": - when: - os: windows store: steam steam: id: 911680 -'Rezist: Tower Defense': +"Rezist: Tower Defense": installDir: Rezist Tower Defense: {} launch: - /Rezist Tower Defense.exe: + "/Rezist Tower Defense.exe": - when: - os: windows store: steam @@ -435232,45 +436438,45 @@ Rezrog: installDir: Rezrog: {} launch: - /Rezrog.app/Contents/MacOS/Rezrog: + "/Rezrog.app/Contents/MacOS/Rezrog": - when: - os: mac store: steam - /Rezrog.exe: + "/Rezrog.exe": - when: - os: windows store: steam - /Rezrog.x86_64: + "/Rezrog.x86_64": - when: - os: linux store: steam steam: id: 548370 -'Rhapsody II: Ballad of the Little Princess': +"Rhapsody II: Ballad of the Little Princess": installDir: Rhapsody II Ballad of the Little Princess: {} launch: - /Rhapsody2_en.exe: + "/Rhapsody2_en.exe": - when: - bit: 64 os: windows store: steam steam: id: 2002870 -'Rhapsody III: Memories of Marl Kingdom': +"Rhapsody III: Memories of Marl Kingdom": installDir: Rhapsody III Memories of Marl Kingdom: {} launch: - /Rhapsody3_en.exe: + "/Rhapsody3_en.exe": - when: - bit: 64 os: windows store: steam steam: id: 2002880 -'Rhapsody: A Musical Adventure': +"Rhapsody: A Musical Adventure": files: - /Saved Games/Rhapsody: + "/Saved Games/Rhapsody": tags: - config - save @@ -435279,17 +436485,17 @@ Rezrog: installDir: Rhapsody A Musical Adventure: {} launch: - /Rhapsody_en.exe: + "/Rhapsody_en.exe": - when: - os: windows store: steam steam: id: 1866430 -'Rheksetor: Waves of Fury': +"Rheksetor: Waves of Fury": installDir: Rheksetor: {} launch: - /WindowsNoEditor/Rheksetor_V_0_7_10.exe: + "/WindowsNoEditor/Rheksetor_V_0_7_10.exe": - when: - os: windows store: steam @@ -435299,13 +436505,13 @@ Rheum: installDir: Rheum: {} launch: - /rheum.exe: + "/rheum.exe": - when: - os: windows store: steam steam: id: 849520 -'Rhiannon: Curse of the Four Branches': +"Rhiannon: Curse of the Four Branches": files: HKEY_CURRENT_USER/Software/ArberthStudios/RhiannonMeridian4: tags: @@ -435317,17 +436523,17 @@ Rheum: installDir: Rhiannon Curse of the Four Branches: {} launch: - /RhiannonMeridian4.exe: + "/RhiannonMeridian4.exe": - when: - os: windows store: steam steam: id: 298140 -Rhino's Rage: +"Rhino's Rage": installDir: RhinoRage: {} launch: - /Rhino.exe: + "/Rhino.exe": - when: - os: windows store: steam @@ -435337,7 +436543,7 @@ Rhombus Legends: installDir: Rhombus Legends: {} launch: - /Rhombus_Legends.exe: + "/Rhombus_Legends.exe": - when: - os: windows store: steam @@ -435345,12 +436551,12 @@ Rhombus Legends: id: 844490 Rhome: files: - /Rhome/Saved/Config/WindowsNoEditor/GameUserSettings.ini: + "/Rhome/Saved/Config/WindowsNoEditor/GameUserSettings.ini": tags: - config when: - os: windows - /Rhome/Saved/SaveGames/SaveGame.sav: + "/Rhome/Saved/SaveGames/SaveGame.sav": tags: - save when: @@ -435358,7 +436564,7 @@ Rhome: installDir: Rhome: {} launch: - /Rhome.exe: + "/Rhome.exe": - when: - os: windows store: steam @@ -435373,7 +436579,7 @@ Rhythm Destruction: installDir: RhythmDestruction: {} launch: - /RhythmDestruction.exe: + "/RhythmDestruction.exe": - when: - os: windows store: steam @@ -435383,11 +436589,11 @@ Rhythm Doctor: installDir: Rhythm Doctor: {} launch: - /Rhythm Doctor.app: + "/Rhythm Doctor.app": - when: - os: mac store: steam - /Rhythm Doctor.exe: + "/Rhythm Doctor.exe": - when: - os: windows store: steam @@ -435397,11 +436603,11 @@ Rhythm Girl: installDir: Rhythm Girl: {} launch: - /Rhythm Girl.app/Contents/MacOS/Rhythm Girl: + "/Rhythm Girl.app/Contents/MacOS/Rhythm Girl": - when: - os: mac store: steam - /Rhythm Girl.exe: + "/Rhythm Girl.exe": - when: - os: windows store: steam @@ -435421,7 +436627,7 @@ Rhythm Overdrive: installDir: Rhythm Overdrive: {} launch: - /Rhythm Overdrive.exe: + "/Rhythm Overdrive.exe": - when: - os: windows store: steam @@ -435434,7 +436640,7 @@ Rhythm Rush!: installDir: Rhythm Rush!: {} launch: - /Rhythm Rush.exe: + "/Rhythm Rush.exe": - when: - os: windows store: steam @@ -435442,7 +436648,7 @@ Rhythm Rush!: id: 614030 Rhythm Sprout: files: - /AppData/LocalLow/SURT/RHYTHM SPROUT/*SAVE: + "/AppData/LocalLow/SURT/RHYTHM SPROUT/*SAVE": tags: - save when: @@ -435452,7 +436658,7 @@ Rhythm Sprout: installDir: RHYTHM SPROUT: {} launch: - /Rhythm Sprout.exe: + "/Rhythm Sprout.exe": - when: - store: steam steam: @@ -435461,7 +436667,7 @@ Rhythm World - Master Project: installDir: RhythmWorldMasterProject: {} launch: - /GameLauncher.exe: + "/GameLauncher.exe": - when: - os: windows store: steam @@ -435476,7 +436682,7 @@ RhythmSnake: installDir: RhythmSnake: {} launch: - /RhythmSnake.exe: + "/RhythmSnake.exe": - when: - os: windows store: steam @@ -435489,15 +436695,15 @@ Rhythmy: installDir: Rhythmy: {} launch: - /Rhythmy: + "/Rhythmy": - when: - os: linux store: steam - /Rhythmy.app: + "/Rhythmy.app": - when: - os: mac store: steam - /Rhythmy.exe: + "/Rhythmy.exe": - when: - os: windows store: steam @@ -435507,7 +436713,7 @@ Rhyup: installDir: RHYUP: {} launch: - /RHYUP.exe: + "/RHYUP.exe": - when: - bit: 64 os: windows @@ -435516,12 +436722,12 @@ Rhyup: id: 1009890 RiMS Racing: files: - /RiMS Racing: + "/RiMS Racing": tags: - config when: - os: windows - /My Games/RiMS Racing/SAVEDATA: + "/My Games/RiMS Racing/SAVEDATA": tags: - save when: @@ -435529,18 +436735,18 @@ RiMS Racing: installDir: RiMS: {} launch: - /RiMS.exe: + "/RiMS.exe": - when: - bit: 64 os: windows store: steam steam: id: 1346010 -Ria's Hook: +"Ria's Hook": installDir: - Ria's Hook: {} + "Ria's Hook": {} launch: - /Ria's Hook.exe: + "/Ria's Hook.exe": - when: - bit: 64 os: windows @@ -435551,7 +436757,7 @@ Riaaf The Spider: installDir: Riaaf The Spider: {} launch: - /RiaafTheSpider.exe: + "/RiaafTheSpider.exe": - when: - os: windows store: steam @@ -435561,7 +436767,7 @@ Ribbon: installDir: Ribbon: {} launch: - /Ribbon.exe: + "/Ribbon.exe": - when: - os: windows store: steam @@ -435571,7 +436777,7 @@ Ribbon Racer: installDir: RibbonRacer: {} launch: - /rr.exe: + "/rr.exe": - when: - os: windows store: steam @@ -435581,7 +436787,7 @@ Ribbon Racer Next: installDir: Ribbon Racer Next: {} launch: - /rrnext.exe: + "/rrnext.exe": - when: - os: windows store: steam @@ -435596,7 +436802,7 @@ Rice Bowl Restaurant: installDir: Warung Nasi Campur: {} launch: - /Warung Nasi Campur.exe: + "/Warung Nasi Campur.exe": - when: - os: windows store: steam @@ -435606,7 +436812,7 @@ RiceCakers: installDir: Ricecakers: {} launch: - /Ricecakers.exe: + "/Ricecakers.exe": - when: - bit: 64 os: windows @@ -435622,7 +436828,7 @@ Rich Code: installDir: RichCode: {} launch: - /rich.exe: + "/rich.exe": - when: - os: windows store: steam @@ -435633,12 +436839,12 @@ Rich Life Simulator VR: id: 665430 Richard & Alice: files: - /acsetup.cfg: + "/acsetup.cfg": tags: - config when: - os: windows - /Saved Games/Richard & Alice: + "/Saved Games/Richard & Alice": tags: - save when: @@ -435648,15 +436854,15 @@ Richard & Alice: installDir: RichardAndAlice: {} launch: - /RichardAndAlice: + "/RichardAndAlice": - when: - os: linux store: steam - /richardandalice.exe: + "/richardandalice.exe": - when: - os: windows store: steam - - arguments: '--setup' + - arguments: "--setup" when: - os: windows store: steam @@ -435664,30 +436870,30 @@ Richard & Alice: id: 279260 Richard Burns Rally: files: - /RichardBurnsRally.ini: + "/RichardBurnsRally.ini": tags: - config when: - os: windows - /SavedGames: + "/SavedGames": tags: - save when: - os: windows -Richie's Plank Experience: +"Richie's Plank Experience": installDir: - Richie's Plank Experience: {} + "Richie's Plank Experience": {} steam: id: 517160 Richman 10: installDir: richman10: {} launch: - /richman10.app/Contents/MacOS/richman10: + "/richman10.app/Contents/MacOS/richman10": - when: - os: mac store: steam - /richman10.exe: + "/richman10.exe": - when: - bit: 64 os: windows @@ -435696,19 +436902,19 @@ Richman 10: id: 1162520 Richman 2: files: - /save_*.dsk: + "/save_*.dsk": tags: - save when: - os: dos Richman 4: files: - /RICH4.CFG: + "/RICH4.CFG": tags: - config when: - os: windows - /SAVE*.DAT: + "/SAVE*.DAT": tags: - save when: @@ -435716,19 +436922,19 @@ Richman 4: installDir: rich4: {} launch: - /Launcher.exe: + "/Launcher.exe": - when: - store: steam steam: id: 2059810 -Richy's Nightmares: +"Richy's Nightmares": steam: id: 885390 Rick Henderson: installDir: Rick Henderson: {} launch: - /Rick Henderson.exe: + "/Rick Henderson.exe": - when: - os: windows store: steam @@ -435738,15 +436944,15 @@ Rick Rack: installDir: Rick Rack: {} launch: - /RickRack.exe: + "/RickRack.exe": - when: - os: windows store: steam steam: id: 1064050 -'Rick and Morty: Virtual Rick-ality': +"Rick and Morty: Virtual Rick-ality": files: - /AppData/LocalLow/Adult Swim Games/Rick and Morty_ Virtual Rick-ality/User: + "/AppData/LocalLow/Adult Swim Games/Rick and Morty_ Virtual Rick-ality/User": tags: - save when: @@ -435755,11 +436961,11 @@ Rick Rack: RickAndMortyVR: {} steam: id: 469610 -Ricko's Island: +"Ricko's Island": installDir: Rickos Island: {} launch: - /Singleplayer/PlatformerGame.exe: + "/Singleplayer/PlatformerGame.exe": - when: - bit: 64 os: windows @@ -435770,7 +436976,7 @@ Ricks Hunter: installDir: MetamorfoseS: {} launch: - /MetamorfoseS.exe: + "/MetamorfoseS.exe": - when: - os: windows store: steam @@ -435780,7 +436986,7 @@ Ricky Raccoon: installDir: Ricky Raccoon: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: @@ -435789,7 +436995,7 @@ Ricky Raccoon 2 - Adventures in Egypt: installDir: Ricky Raccoon 2: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: @@ -435798,21 +437004,21 @@ Ricky Recharge: installDir: Ricky Recharge: {} launch: - /RickyRecharge.app: + "/RickyRecharge.app": - when: - os: mac store: steam - /RickyRecharge.exe: + "/RickyRecharge.exe": - when: - os: windows store: steam steam: id: 958930 -'Ricky Runner: SUPERBOOT CUP': +"Ricky Runner: SUPERBOOT CUP": installDir: Ricky Runner: {} launch: - /Ricky Runner.exe: + "/Ricky Runner.exe": - when: - bit: 64 os: windows @@ -435821,7 +437027,7 @@ Ricky Recharge: id: 942200 Ricochet: files: - /Half-Life/ricochet: + "/Half-Life/ricochet": tags: - config when: @@ -435829,36 +437035,38 @@ Ricochet: installDir: Half-Life: {} launch: - /hl.exe: - - arguments: '-steam -game ricochet' + "/hl.exe": + - arguments: "-steam -game ricochet" when: - os: windows store: steam - /hl.sh: - - arguments: '-steam -game ricochet' + "/hl.sh": + - arguments: "-steam -game ricochet" when: - os: mac store: steam + - os: linux + store: steam steam: id: 60 Ricochet Infinity: files: - /Ricochet Infinity.cfg: + "/Ricochet Infinity.cfg": tags: - config when: - os: windows - /Stats.dat: + "/Stats.dat": tags: - save when: - os: windows - /Library/Application Support/RicochetInfinity/Ricochet Lost Worlds.CFG: + "/Library/Application Support/RicochetInfinity/Ricochet Lost Worlds.CFG": tags: - config when: - os: mac - /Library/Application Support/RicochetInfinity/Stats.dat: + "/Library/Application Support/RicochetInfinity/Stats.dat": tags: - save when: @@ -435866,63 +437074,63 @@ Ricochet Infinity: installDir: Ricochet Infinity: {} launch: - /RicochetInfinity.exe: + "/RicochetInfinity.exe": - when: - store: steam steam: id: 7450 -'Ricochet Kills: Noir': +"Ricochet Kills: Noir": installDir: Ricochet Kills Noir: {} launch: - /rk_noir.exe: + "/rk_noir.exe": - when: - os: windows store: steam steam: id: 596630 -'Ricochet Lost Worlds: Recharged': +"Ricochet Lost Worlds: Recharged": files: - /Ricochet Lost Worlds.cfg: + "/Ricochet Lost Worlds.cfg": tags: - config when: - os: windows - /Stats.dat: + "/Stats.dat": tags: - save when: - os: windows Ricochet Xtreme: files: - /Ricochet.cfg: + "/Ricochet.cfg": tags: - config when: - os: windows - /Stats.dat: + "/Stats.dat": tags: - save when: - os: windows -'Ricochet: Lost Worlds': +"Ricochet: Lost Worlds": files: - /Ricochet Lost Worlds.cfg: + "/Ricochet Lost Worlds.cfg": tags: - config when: - os: windows - /Stats.dat: + "/Stats.dat": tags: - save when: - os: windows - /Library/Application Support/Ricochet/INI/Ricochet Lost Worlds.CFG/Options: + "/Library/Application Support/Ricochet/INI/Ricochet Lost Worlds.CFG/Options": tags: - config when: - os: mac - /Library/Application Support/Ricochet/Stats.dat: + "/Library/Application Support/Ricochet/Stats.dat": tags: - save when: @@ -435930,7 +437138,7 @@ Ricochet Xtreme: installDir: Ricochet Lost Worlds: {} launch: - /Ricochet.exe: + "/Ricochet.exe": - when: - store: steam steam: @@ -435941,22 +437149,22 @@ Riddle Joker: installDir: Riddle Joker: {} launch: - /RiddleJoker.exe: + "/RiddleJoker.exe": - when: - store: steam steam: id: 1277930 -'Riddle of the Sphinx: The Awakening (Enhanced Edition)': +"Riddle of the Sphinx: The Awakening (Enhanced Edition)": gog: id: 2113207249 installDir: Riddle of the Sphinx - The Awakening: {} launch: - /Riddle of the Sphinx - The Awakening.app: + "/Riddle of the Sphinx - The Awakening.app": - when: - os: mac store: steam - /Riddle of the Sphinx - The Awakening.exe: + "/Riddle of the Sphinx - The Awakening.exe": - when: - os: windows store: steam @@ -435966,7 +437174,7 @@ RiddleBridge: installDir: RiddleBridge: {} launch: - /RiddleBridge.exe: + "/RiddleBridge.exe": - when: - os: windows store: steam @@ -435976,52 +437184,52 @@ Riddled Corpses: installDir: Riddled Corpses: {} launch: - /Riddled_Corpses_steam.app: + "/Riddled_Corpses_steam.app": - when: - os: mac store: steam - /Riddled_Corpses_steam.exe: + "/Riddled_Corpses_steam.exe": - when: - os: windows store: steam - /Riddled_Corpses_steam.sh: + "/Riddled_Corpses_steam.sh": - when: - os: linux store: steam steam: id: 369890 -'Riddles of Fate: Into Oblivion': +"Riddles of Fate: Into Oblivion": installDir: - Riddles of Fate Into Oblivion Collector's Edition: {} + "Riddles of Fate Into Oblivion Collector's Edition": {} launch: - /RiddlesOfFate_IntoOblivionCE.exe: + "/RiddlesOfFate_IntoOblivionCE.exe": - when: - os: windows store: steam steam: id: 647900 -'Riddles of Fate: Memento Mori': +"Riddles of Fate: Memento Mori": installDir: - Riddles of Fate Memento Mori Collector's Edition: {} + "Riddles of Fate Memento Mori Collector's Edition": {} launch: - /RiddlesOfFate_MementoMori_CE.exe: + "/RiddlesOfFate_MementoMori_CE.exe": - when: - os: windows store: steam steam: id: 796060 -'Riddles of Fate: Wild Hunt': +"Riddles of Fate: Wild Hunt": installDir: - Riddles of Fate Wild Hunt Collector's Edition: {} + "Riddles of Fate Wild Hunt Collector's Edition": {} launch: - /RiddlesOfFate_WildHuntCE.exe: + "/RiddlesOfFate_WildHuntCE.exe": - when: - store: steam steam: id: 555520 Riddles of the Owls Kingdom: files: - /DigiMight/Riddles Of The Owls Kingdom Steam/Players.xml: + "/DigiMight/Riddles Of The Owls Kingdom Steam/Players.xml": tags: - config - save @@ -436030,32 +437238,32 @@ Riddles of the Owls Kingdom: installDir: Riddles of the Owls Kingdom: {} launch: - /Riddles Of The Owls Kingdom.app: + "/Riddles Of The Owls Kingdom.app": - when: - os: mac store: steam - /Riddles Of The Owls Kingdom.exe: + "/Riddles Of The Owls Kingdom.exe": - when: - os: windows store: steam steam: id: 891860 -Riddles of the Owls' Kingdom. Magic Wings: +"Riddles of the Owls' Kingdom. Magic Wings": files: - /DigiMight/Riddles Of The Owls Kingdom 2/Players.xml: + "/DigiMight/Riddles Of The Owls Kingdom 2/Players.xml": tags: - config - save when: - os: windows installDir: - Riddles of the Owls' Kingdom. Magic Wings: {} + "Riddles of the Owls' Kingdom. Magic Wings": {} launch: - /Riddles of the Owls' Kingdom Magic Wings.app: + "/Riddles of the Owls' Kingdom Magic Wings.app": - when: - os: mac store: steam - /Riddles of the Owls' Kingdom Magic Wings.exe: + "/Riddles of the Owls' Kingdom Magic Wings.exe": - when: - os: windows store: steam @@ -436063,12 +437271,12 @@ Riddles of the Owls' Kingdom. Magic Wings: id: 990390 Riddles of the Past: files: - /MysteryTag/RiddlesOfThePast/*.save: + "/MysteryTag/RiddlesOfThePast/*.save": tags: - save when: - os: windows - /MysteryTag/RiddlesOfThePast/game.conf: + "/MysteryTag/RiddlesOfThePast/game.conf": tags: - config when: @@ -436076,7 +437284,7 @@ Riddles of the Past: installDir: Riddles Of The Past: {} launch: - /RiddlesOfThePast.exe: + "/RiddlesOfThePast.exe": - when: - store: steam registry: @@ -436085,15 +437293,15 @@ Riddles of the Past: - config steam: id: 500870 -'Riddlord: The Consequence': +"Riddlord: The Consequence": installDir: Riddlord The Consequence: {} launch: - /riddlord.app/Contents/MacOS/riddlord: + "/riddlord.app/Contents/MacOS/riddlord": - when: - os: mac store: steam - /riddlord.exe: + "/riddlord.exe": - when: - os: windows store: steam @@ -436101,12 +437309,12 @@ Riddles of the Past: id: 763290 Ride: files: - /Milestone/Ride: + "/Milestone/Ride": tags: - config when: - os: windows - /Milestone/Ride/Saves: + "/Milestone/Ride/Saves": tags: - save when: @@ -436114,30 +437322,30 @@ Ride: installDir: RIDE - Game: {} launch: - /Ride.exe: + "/Ride.exe": - when: - bit: 32 os: windows store: steam - /RideX64.exe: + "/RideX64.exe": - when: - bit: 64 os: windows store: steam steam: id: 345660 -Ride 'em Low: +"Ride 'em Low": installDir: Ride em Low: {} launch: - /LowUSA.exe: + "/LowUSA.exe": - when: - store: steam steam: id: 65070 Ride 2: files: - /Milestone/Ride2: + "/Milestone/Ride2": tags: - config when: @@ -436145,11 +437353,11 @@ Ride 2: installDir: Ride 2: {} launch: - /Ride2.exe: + "/Ride2.exe": - when: - bit: 32 store: steam - /Ride2X64.exe: + "/Ride2X64.exe": - when: - bit: 64 store: steam @@ -436157,12 +437365,12 @@ Ride 2: id: 477770 Ride 3: files: - /ride3/Saved/Config/WindowsNoEditor: + "/ride3/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /ride3/Saved/SaveGames: + "/ride3/Saved/SaveGames": tags: - save when: @@ -436170,7 +437378,7 @@ Ride 3: installDir: RIDE 3: {} launch: - /ride3.exe: + "/ride3.exe": - when: - os: windows store: steam @@ -436178,7 +437386,7 @@ Ride 3: id: 759740 Ride 4: files: - /ride4: + "/ride4": tags: - save when: @@ -436186,7 +437394,7 @@ Ride 4: installDir: RIDE 4: {} launch: - /ride4.exe: + "/ride4.exe": - when: - store: steam steam: @@ -436195,7 +437403,7 @@ Ride 5: installDir: RIDE 5: {} launch: - /ride5.exe: + "/ride5.exe": - when: - store: steam steam: @@ -436204,20 +437412,20 @@ Ride the Bullet: installDir: Ride the Bullet: {} launch: - /Ride the Bullet.app: + "/Ride the Bullet.app": - when: - os: mac store: steam - /Ride the Bullet.exe: + "/Ride the Bullet.exe": - when: - os: windows store: steam - /Ride the Bullet.x86: + "/Ride the Bullet.x86": - when: - bit: 32 os: linux store: steam - /Ride the Bullet.x86_64: + "/Ride the Bullet.x86_64": - when: - bit: 64 os: linux @@ -436228,18 +437436,18 @@ Ride to Canada: installDir: Ride To Canada: {} launch: - /ride_to_canada.exe: + "/ride_to_canada.exe": - when: - bit: 64 os: windows store: steam steam: id: 845390 -'Ride to Hell: Retribution': +"Ride to Hell: Retribution": installDir: ride_to_hell_retribution: {} launch: - /Binaries/Ride_To_Hell_Retribution.exe: + "/Binaries/Ride_To_Hell_Retribution.exe": - when: - os: windows store: steam @@ -436252,12 +437460,12 @@ Ride with the Reaper: installDir: Ride_with_The_Reaper: {} launch: - /rwtr: + "/rwtr": - when: - bit: 64 os: linux store: steam - /rwtr.exe: + "/rwtr.exe": - when: - bit: 64 os: windows @@ -436268,7 +437476,7 @@ Ride! Carnival Tycoon: installDir: Ride Carnival Tycoon: {} launch: - /RideCarnivalTycoon.exe: + "/RideCarnivalTycoon.exe": - when: - store: steam steam: @@ -436277,7 +437485,7 @@ RideOp: installDir: RideOp: {} launch: - /RideOperator.exe: + "/RideOperator.exe": - when: - store: steam steam: @@ -436291,8 +437499,8 @@ Riders Republic: installDir: RidersRepublic: {} launch: - /RidersRepublic.exe: - - arguments: '-uplay_steam_mode' + "/RidersRepublic.exe": + - arguments: "-uplay_steam_mode" when: - bit: 64 os: windows @@ -436303,11 +437511,11 @@ Riders of Asgard: installDir: Riders of Asgard: {} launch: - /RidersOfAsgard.exe: + "/RidersOfAsgard.exe": - when: - os: windows store: steam - /RidersOfAsgard.sh: + "/RidersOfAsgard.sh": - when: - os: linux store: steam @@ -436315,12 +437523,12 @@ Riders of Asgard: id: 552370 Riders of Icarus: files: - /ICARUS/USER/SaveGames: + "/ICARUS/USER/SaveGames": tags: - save when: - os: windows - /ICARUS/USER/UserConfig: + "/ICARUS/USER/UserConfig": tags: - config when: @@ -436328,8 +437536,8 @@ Riders of Icarus: installDir: Riders of Icarus: {} launch: - /Bin32/Launcher.exe: - - arguments: ' /real --icasteam' + "/Bin32/Launcher.exe": + - arguments: " /real --icasteam" when: - os: windows store: steam @@ -436339,8 +437547,8 @@ Ridge: installDir: Ridge: {} launch: - /Ridge.exe: - - arguments: '-fullscreen' + "/Ridge.exe": + - arguments: "-fullscreen" when: - os: windows store: steam @@ -436351,13 +437559,13 @@ Ridge Racer Driftopia: id: 226410 Ridge Racer Unbounded: files: - /userdata//202310/local/ridge racer unbounded/autosave.bin: + "/userdata//202310/local/ridge racer unbounded/autosave.bin": tags: - save when: - os: windows store: steam - /userdata//202310/local/ridge racer unbounded/device.cfg: + "/userdata//202310/local/ridge racer unbounded/device.cfg": tags: - config when: @@ -436366,7 +437574,7 @@ Ridge Racer Unbounded: installDir: Ridge Racer Unbounded: {} launch: - /RRU.exe: + "/RRU.exe": - when: - store: steam steam: @@ -436381,11 +437589,11 @@ Riding Club Championships: installDir: RidingClubChampionships: {} launch: - /rcc.app: + "/rcc.app": - when: - os: mac store: steam - /rcc.exe: + "/rcc.exe": - when: - os: windows store: steam @@ -436395,8 +437603,11 @@ Riding Out: installDir: Riding Out: {} launch: - /Ridingout.exe: + "/Ridingout.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam @@ -436406,7 +437617,7 @@ Riding Seas: installDir: Riding Seas: {} launch: - /Riding Seas.exe: + "/Riding Seas.exe": - when: - os: windows store: steam @@ -436416,7 +437627,7 @@ Riding Star: installDir: Riding Star 3: {} launch: - /rs3.exe: + "/rs3.exe": - when: - os: windows store: steam @@ -436424,7 +437635,7 @@ Riding Star: id: 276360 Riff Racer: files: - /Octane/DAT: + "/Octane/DAT": tags: - config when: @@ -436432,7 +437643,7 @@ Riff Racer: installDir: Riff Racer: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -436450,7 +437661,7 @@ RifleRange: installDir: RifleRange: {} launch: - /RifleRange.exe: + "/RifleRange.exe": - when: - os: windows store: steam @@ -436460,18 +437671,18 @@ Riflestorm: installDir: RifleStorm: {} launch: - /RifleStorm: - - arguments: '--steam rifle' + "/RifleStorm": + - arguments: "--steam rifle" when: - os: linux store: steam - /RifleStorm.app: - - arguments: '--steam rifle' + "/RifleStorm.app": + - arguments: "--steam rifle" when: - os: mac store: steam - /RifleStorm.exe: - - arguments: '--steam rifle' + "/RifleStorm.exe": + - arguments: "--steam rifle" when: - os: windows store: steam @@ -436479,7 +437690,7 @@ Riflestorm: id: 1098000 Rift: files: - /RIFT: + "/RIFT": tags: - config when: @@ -436487,8 +437698,8 @@ Rift: installDir: RIFT: {} launch: - /riftpatchlive.exe: - - arguments: '-steam' + "/riftpatchlive.exe": + - arguments: "-steam" when: - store: steam steam: @@ -436502,7 +437713,7 @@ Rift Keeper: installDir: Rift Keeper: {} launch: - /Rift Keeper.exe: + "/Rift Keeper.exe": - when: - os: windows store: steam @@ -436512,7 +437723,7 @@ Rift Racoon: installDir: Rift Racoon: {} launch: - /Rift Racoon.exe: + "/Rift Racoon.exe": - when: - os: windows store: steam @@ -436522,7 +437733,7 @@ Rift Wizard: installDir: Rift Wizard: {} launch: - /RiftWizard/RiftWizard.exe: + "/RiftWizard/RiftWizard.exe": - when: - bit: 64 os: windows @@ -436542,25 +437753,28 @@ Rift Wizard: Rift of the NecroDancer: steam: id: 2073250 -Rift's Cave: +"Rift's Cave": installDir: RC_Alpha: {} launch: - /RC_ALPHA_DirectToRift.exe: + "/RC_ALPHA_DirectToRift.exe": - when: - os: windows store: steam - /RC_Alpha.app: + "/RC_Alpha.app": - when: - bit: 32 os: mac store: steam - /RC_Alpha.x86: + - bit: 64 + os: mac + store: steam + "/RC_Alpha.x86": - when: - bit: 32 os: linux store: steam - /RC_Alpha.x86_64: + "/RC_Alpha.x86_64": - when: - bit: 64 os: linux @@ -436569,12 +437783,12 @@ Rift's Cave: id: 335210 RiftSpace: files: - /pilot.sw: + "/pilot.sw": tags: - save when: - os: windows - /sw.cfg: + "/sw.cfg": tags: - config when: @@ -436583,7 +437797,7 @@ RiftStar Raiders: installDir: RiftStar Raiders: {} launch: - /RiftStarRaiders.exe: + "/RiftStarRaiders.exe": - when: - bit: 64 os: windows @@ -436594,34 +437808,34 @@ Rifter: installDir: Rifter: {} launch: - /rifter: + "/rifter": - when: - os: linux store: steam - /rifter.app/Contents/MacOS/rifter: + "/rifter.app/Contents/MacOS/rifter": - when: - os: mac store: steam - /rifter.exe: + "/rifter.exe": - when: - os: windows store: steam steam: id: 625740 -Rig 'n' Roll: +"Rig 'n' Roll": installDir: Rig n Roll: {} launch: - /rungame.exe: + "/rungame.exe": - when: - store: steam steam: id: 46370 -'Rig or Skill: PC Brawl': +"Rig or Skill: PC Brawl": installDir: RigOrSkill: {} launch: - /LauncherNNG.exe: + "/LauncherNNG.exe": - when: - bit: 64 os: windows @@ -436632,21 +437846,24 @@ Righty Tighty XL: installDir: Righty Tighty XL: {} launch: - /RightyTightyXL.app: + "/RightyTightyXL.app": - when: - os: mac store: steam - /RightyTightyXL.exe: + "/RightyTightyXL.exe": - when: - bit: 32 os: windows store: steam - /RightyTightyXL.x86: + - bit: 64 + os: windows + store: steam + "/RightyTightyXL.x86": - when: - bit: 32 os: linux store: steam - /RightyTightyXL.x86_64: + "/RightyTightyXL.x86_64": - when: - bit: 64 os: linux @@ -436657,8 +437874,11 @@ Rigid Chess: installDir: RigidChess: {} launch: - /RigidChess.exe: + "/RigidChess.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam @@ -436668,20 +437888,20 @@ Rigid Force Alpha: installDir: Rigid Force Alpha: {} launch: - /rfa_main.exe: + "/rfa_main.exe": - when: - os: windows store: steam steam: id: 724390 -'Rigo: The Movie': +"Rigo: The Movie": steam: id: 1056370 Rigonauts: installDir: rigonauts: {} launch: - /rigonauts.exe: + "/rigonauts.exe": - when: - os: windows store: steam @@ -436691,46 +437911,46 @@ Rikki & Vikki: installDir: Rikki & Vikki: {} launch: - /Rikki & Vikki.exe: + "/Rikki & Vikki.exe": - when: - os: windows store: steam steam: id: 893690 -'Riley Short: Analog Boy - Episode 1': +"Riley Short: Analog Boy - Episode 1": installDir: Riley Short Analog Boy Ep1: {} steam: id: 619000 RimWorld: files: - /.config/unity3d/Ludeon Studios/RimWorld by Ludeon Studios: + "/.config/unity3d/Ludeon Studios/RimWorld by Ludeon Studios": tags: - config when: - os: linux - /.config/unity3d/Ludeon Studios/RimWorld/Saves: + "/.config/unity3d/Ludeon Studios/RimWorld/Saves": tags: - save when: - os: linux - /AppData/LocalLow/Ludeon Studios/RimWorld: + "/AppData/LocalLow/Ludeon Studios/RimWorld": tags: - config - save when: - os: windows - /AppData/LocalLow/Ludeon Studios/RimWorld by Ludeon Studios/Config: + "/AppData/LocalLow/Ludeon Studios/RimWorld by Ludeon Studios/Config": tags: - config when: - os: windows - /AppData/LocalLow/Ludeon Studios/RimWorld by Ludeon Studios/Saves: + "/AppData/LocalLow/Ludeon Studios/RimWorld by Ludeon Studios/Saves": tags: - save when: - os: windows - /Library/Application Support/RimWorld: + "/Library/Application Support/RimWorld": tags: - config when: @@ -436752,21 +437972,21 @@ RimWorld: installDir: RimWorld: {} launch: - /RimWorldMac.app: + "/RimWorldMac.app": - when: - os: mac store: steam - /RimWorldWin.exe: + "/RimWorldWin.exe": - when: - bit: 32 os: windows store: steam - /RimWorldWin64.exe: + "/RimWorldWin64.exe": - when: - bit: 64 os: windows store: steam - /start_RimWorld.sh: + "/start_RimWorld.sh": - when: - os: linux store: steam @@ -436774,12 +437994,12 @@ RimWorld: id: 294100 Rime: files: - /SirenGame/Saved/Config/WindowsNoEditor: + "/SirenGame/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /SirenGame/Saved/SaveGames: + "/SirenGame/Saved/SaveGames": tags: - save when: @@ -436789,23 +438009,23 @@ Rime: installDir: RiME: {} launch: - /SirenGame/Binaries/Win64/RiME.exe: - - arguments: '-NOSPLASH' + "/SirenGame/Binaries/Win64/RiME.exe": + - arguments: "-NOSPLASH" when: - bit: 64 os: windows store: steam - workingDir: /SirenGame/Binaries/Win64 + workingDir: "/SirenGame/Binaries/Win64" steam: id: 493200 Rime Berta: files: - /NEXT-SOFT+/RimeBerta: + "/NEXT-SOFT+/RimeBerta": tags: - save when: - os: windows - /NEXT-SOFT+/RimeBerta/config.dat: + "/NEXT-SOFT+/RimeBerta/config.dat": tags: - config when: @@ -436813,7 +438033,7 @@ Rime Berta: installDir: Rime Berta: {} launch: - /RimeBerta.exe: + "/RimeBerta.exe": - when: - os: windows store: steam @@ -436822,14 +438042,14 @@ Rime Berta: Rimi Action RPG: steam: id: 930580 -'Ring Runner: Flight of the Sages': +"Ring Runner: Flight of the Sages": files: - /userdata//258010: + "/userdata//258010": tags: - save when: - store: steam - /SavedGames/RingRunner/: + "/SavedGames/RingRunner/": tags: - save when: @@ -436839,14 +438059,14 @@ Rimi Action RPG: installDir: RingRunner: {} launch: - /RingRunner.exe: + "/RingRunner.exe": - when: - store: steam steam: id: 258010 Ring of Elysium: files: - /UserData: + "/UserData": tags: - config - save @@ -436859,8 +438079,8 @@ Ring of Elysium: installDir: Ring of Elysium: {} launch: - /SLauncher.exe: - - arguments: '-steam' + "/SLauncher.exe": + - arguments: "-steam" when: - os: windows store: steam @@ -436871,7 +438091,7 @@ Ring of Fire: id: 1156490 Ring of Pain: files: - /AppData/LocalLow/Twice Different/Ring Of Pain: + "/AppData/LocalLow/Twice Different/Ring Of Pain": tags: - save when: @@ -436881,11 +438101,11 @@ Ring of Pain: installDir: Ring of Pain: {} launch: - /Ring Of Pain.app/Contents/MacOS/Ring Of Pain: + "/Ring Of Pain.app/Contents/MacOS/Ring Of Pain": - when: - os: mac store: steam - /Ring Of Pain.exe: + "/Ring Of Pain.exe": - when: - os: windows store: steam @@ -436899,7 +438119,7 @@ Ring the City: installDir: Ring the City: {} launch: - /Ring the City.exe: + "/Ring the City.exe": - when: - os: windows store: steam @@ -436909,11 +438129,11 @@ Ringies: installDir: Ringies: {} launch: - /Ringies.app: + "/Ringies.app": - when: - os: mac store: steam - /Ringies.exe: + "/Ringies.exe": - when: - os: windows store: steam @@ -436930,7 +438150,7 @@ Ringognir 3: id: 701210 Rings of Zilfin: files: - /*.SAV: + "/*.SAV": tags: - save when: @@ -436939,7 +438159,7 @@ Rio Rex: installDir: Rio Rex: {} launch: - /rio_rex.exe: + "/rio_rex.exe": - when: - os: windows store: steam @@ -436949,8 +438169,8 @@ Riot Street: installDir: Riot Street: {} launch: - /RiotStreet.exe: - - arguments: '-nostartupmovies' + "/RiotStreet.exe": + - arguments: "-nostartupmovies" when: - bit: 64 os: windows @@ -436961,36 +438181,36 @@ Riot of the Numbers: installDir: Riot of the numbers: {} launch: - /RiotoftheNumbers_linux: + "/RiotoftheNumbers_linux": - when: - os: linux store: steam - /RiotoftheNumbers_mac.app: + "/RiotoftheNumbers_mac.app": - when: - os: mac store: steam - /RiotoftheNumbers_windows.exe: + "/RiotoftheNumbers_windows.exe": - when: - os: windows store: steam steam: id: 579150 -'Riot: Civil Unrest': +"Riot: Civil Unrest": gog: id: 1989052770 installDir: RIOT: {} launch: - /Riot.x86_64: + "/Riot.x86_64": - when: - bit: 64 os: linux store: steam - /riot.app: + "/riot.app": - when: - os: mac store: steam - /riot.exe: + "/riot.exe": - when: - os: windows store: steam @@ -437005,11 +438225,11 @@ RiotZ: installDir: RiotZ: {} launch: - /RiotZ.exe: + "/RiotZ.exe": - when: - os: windows store: steam - workingDir: /RiotZ_Data + workingDir: "/RiotZ_Data" steam: id: 659460 Ripout: @@ -437021,11 +438241,11 @@ Ripped Pants at Work: installDir: Ripped Pants at Work: {} launch: - /RPaW_Mac_1_28.app: + "/RPaW_Mac_1_28.app": - when: - os: mac store: steam - /RPaW_Windows_1_28.exe: + "/RPaW_Windows_1_28.exe": - when: - os: windows store: steam @@ -437033,12 +438253,12 @@ Ripped Pants at Work: id: 752550 Ripper: files: - /*.SAV: + "/*.SAV": tags: - save when: - os: dos - /SETTINGS.DEF: + "/SETTINGS.DEF": tags: - config when: @@ -437047,7 +438267,7 @@ Ripple: installDir: Ripple: {} launch: - /Ripple.exe: + "/Ripple.exe": - when: - os: windows store: steam @@ -437062,15 +438282,15 @@ Riptale: installDir: Riptale: {} launch: - /Riptale/Riptale.app: + "/Riptale/Riptale.app": - when: - os: mac store: steam - /Riptale/Riptale.exe: + "/Riptale/Riptale.exe": - when: - os: windows store: steam - /Riptale/runner: + "/Riptale/runner": - when: - os: linux store: steam @@ -437078,7 +438298,7 @@ Riptale: id: 616000 Riptide GP2: files: - /Vector Unit/Red: + "/Vector Unit/Red": tags: - config - save @@ -437087,16 +438307,16 @@ Riptide GP2: installDir: Riptide GP2: {} launch: - /GameWin32RetailSteam.exe: + "/GameWin32RetailSteam.exe": - when: - bit: 32 os: windows store: steam steam: id: 257790 -'Riptide GP: Renegade': +"Riptide GP: Renegade": files: - /userdata//443860/remote/user.dat: + "/userdata//443860/remote/user.dat": tags: - save when: @@ -437104,7 +438324,7 @@ Riptide GP2: installDir: Riptide GP Renegade: {} launch: - /Game_x64.exe: + "/Game_x64.exe": - when: - bit: 64 os: windows @@ -437116,13 +438336,13 @@ Riscord: id: 912010 Rise & Shine: files: - /userdata//347290/remote/RiseAndShine: + "/userdata//347290/remote/RiseAndShine": tags: - config - save when: - store: steam - /unity3d/Adult Swim Games/RiseAndShine/prefs: + "/unity3d/Adult Swim Games/RiseAndShine/prefs": tags: - config - save @@ -437131,21 +438351,24 @@ Rise & Shine: installDir: Rise & Shine: {} launch: - /RiseAndShine.app/Contents/MacOS/RiseAndShine: + "/RiseAndShine.app/Contents/MacOS/RiseAndShine": - when: - os: mac store: steam - /RiseAndShine.exe: + "/RiseAndShine.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam - /RiseAndShine.x86: + "/RiseAndShine.x86": - when: - bit: 32 os: linux store: steam - /RiseAndShine.x86_64: + "/RiseAndShine.x86_64": - when: - bit: 64 os: linux @@ -437156,7 +438379,7 @@ Rise (Creative Assembly): installDir: CA - War Child: {} launch: - /rise_launcher.exe: + "/rise_launcher.exe": - when: - store: steam steam: @@ -437165,7 +438388,7 @@ Rise (New State): installDir: Rise: {} launch: - /Rise.exe: + "/Rise.exe": - when: - store: steam steam: @@ -437176,7 +438399,7 @@ Rise Eterna: installDir: RiseEterna: {} launch: - /RiseEterna.exe: + "/RiseEterna.exe": - when: - os: windows store: steam @@ -437186,7 +438409,7 @@ Rise High: installDir: Rise High: {} launch: - /RiseHigh.exe: + "/RiseHigh.exe": - when: - os: windows store: steam @@ -437195,9 +438418,9 @@ Rise High: Rise Up: steam: id: 933040 -'Rise and Fall: Civilizations at War': +"Rise and Fall: Civilizations at War": files: - /Data/Saved Games: + "/Data/Saved Games": tags: - save when: @@ -437210,7 +438433,7 @@ Rise of Ages: installDir: Rise of Ages: {} launch: - /RiseofAges.exe: + "/RiseofAges.exe": - when: - os: windows store: steam @@ -437220,15 +438443,18 @@ Rise of Balloons: installDir: Rise of Balloons: {} launch: - /Rise of Balloons.app: + "/Rise of Balloons.app": - when: - os: mac store: steam - /Rise of Balloons.exe: + "/Rise of Balloons.exe": - when: - bit: 32 os: windows store: steam + - bit: 64 + os: windows + store: steam steam: id: 610460 Rise of Crustaceans: @@ -437236,26 +438462,26 @@ Rise of Crustaceans: Rise of Crustaceans: {} steam: id: 854310 -'Rise of Flight: The First Great Air War': +"Rise of Flight: The First Great Air War": installDir: Rise of Flight 2.0: {} launch: - /bin_game/release/rof.exe: + "/bin_game/release/rof.exe": - when: - os: windows store: steam - workingDir: /bin_game/release + workingDir: "/bin_game/release" steam: id: 244050 Rise of Humanity: installDir: RiseOfHumanity: {} launch: - /Default/RiseOfHumanity.exe: + "/Default/RiseOfHumanity.exe": - when: - os: windows store: steam - /Tilt5/RiseOfHumanity.exe: + "/Tilt5/RiseOfHumanity.exe": - when: - os: windows store: steam @@ -437265,28 +438491,28 @@ Rise of Incarnates: installDir: Rise_of_Incarnates: {} launch: - /exe/roi.exe: + "/exe/roi.exe": - when: - bit: 64 os: windows store: steam - workingDir: /exe - /exe32/roi32.exe: + workingDir: "/exe" + "/exe32/roi32.exe": - when: - bit: 32 os: windows store: steam - workingDir: /exe32 + workingDir: "/exe32" steam: id: 258160 Rise of Industry: files: - /.config/RiseOfIndustry: + "/.config/RiseOfIndustry": tags: - save when: - os: linux - /RiseOfIndustry: + "/RiseOfIndustry": tags: - save when: @@ -437296,16 +438522,16 @@ Rise of Industry: installDir: RiseOfIndustry: {} launch: - /Rise of Industry.app/Contents/MacOS/Rise of Industry: + "/Rise of Industry.app/Contents/MacOS/Rise of Industry": - when: - os: mac store: steam - /Rise of Industry.exe: + "/Rise of Industry.exe": - when: - bit: 64 os: windows store: steam - /Rise of Industry.x86_64: + "/Rise of Industry.x86_64": - when: - bit: 64 os: linux @@ -437318,19 +438544,19 @@ Rise of Industry: id: 671440 Rise of Insanity: files: - /AppData/LocalLow/Red Limb Studio/Rise of Insanity/playerInfo.dat: + "/AppData/LocalLow/Red Limb Studio/Rise of Insanity/playerInfo.dat": tags: - config - save when: - os: windows - /unity3d/Red Limb Studio/Rise of Insanity/playerInfo.dat: + "/unity3d/Red Limb Studio/Rise of Insanity/playerInfo.dat": tags: - config - save when: - os: linux - /unity3d/Red Limb Studio/Rise of Insanity/prefs: + "/unity3d/Red Limb Studio/Rise of Insanity/prefs": tags: - config when: @@ -437338,12 +438564,12 @@ Rise of Insanity: installDir: Rise of Insanity: {} launch: - /Rise Of Insanity.exe: + "/Rise Of Insanity.exe": - when: - os: windows store: steam - /Rise Of Insanity.x86: - - arguments: '-screen-fullscreen 0' + "/Rise Of Insanity.x86": + - arguments: "-screen-fullscreen 0" when: - bit: 64 os: linux @@ -437358,7 +438584,7 @@ Rise of Keepers: installDir: Rise of Keepers: {} launch: - /rok.exe: + "/rok.exe": - when: - os: windows store: steam @@ -437368,7 +438594,7 @@ Rise of Legions: installDir: Rise of Legions: {} launch: - /RiseOfLegions.exe: + "/RiseOfLegions.exe": - when: - os: windows store: steam @@ -437378,15 +438604,15 @@ Rise of Liberty: installDir: Rise of Liberty: {} launch: - /Rise of Liberty.app: + "/Rise of Liberty.app": - when: - os: mac store: steam - /Rise of Liberty.exe: + "/Rise of Liberty.exe": - when: - os: windows store: steam - /Rise of Libertys.x86: + "/Rise of Libertys.x86": - when: - os: linux store: steam @@ -437396,11 +438622,11 @@ Rise of Man: installDir: Rise of Man: {} launch: - /ROM.app: + "/ROM.app": - when: - os: mac store: steam - /ROM.exe: + "/ROM.exe": - when: - os: windows store: steam @@ -437408,24 +438634,24 @@ Rise of Man: id: 670490 Rise of Nations: files: - /Microsoft Games/Rise of Nations: + "/Microsoft Games/Rise of Nations": tags: - config when: - os: windows - /My Games/Rise of Nations: + "/My Games/Rise of Nations": tags: - save when: - os: windows -'Rise of Nations: Extended Edition': +"Rise of Nations: Extended Edition": files: - /Microsoft Games/Rise of Nations: + "/Microsoft Games/Rise of Nations": tags: - config when: - os: windows - /My Games/Rise of Nations: + "/My Games/Rise of Nations": tags: - save when: @@ -437433,21 +438659,21 @@ Rise of Nations: installDir: Rise of Nations: {} launch: - /patriots.exe: + "/patriots.exe": - when: - bit: 32 os: windows store: steam steam: id: 287450 -'Rise of Nations: Rise of Legends': +"Rise of Nations: Rise of Legends": files: - /My Games/Rise Of Legends: + "/My Games/Rise Of Legends": tags: - config when: - os: windows - /My Games/Rise Of Legends//Saves: + "/My Games/Rise Of Legends//Saves": tags: - save when: @@ -437456,7 +438682,7 @@ Rise of One: installDir: Rise of One: {} launch: - /RiseOfOne.exe: + "/RiseOfOne.exe": - when: - bit: 64 os: windows @@ -437470,7 +438696,7 @@ Rise of Prussia: installDir: Rise of Prussia Gold: {} launch: - /ROP.exe: + "/ROP.exe": - when: - store: steam steam: @@ -437479,18 +438705,18 @@ Rise of Titans: installDir: Rise Of Titans: {} launch: - /Rise of Titans.app: + "/Rise of Titans.app": - arguments: steam when: - os: mac store: steam - /Rise of Titans.exe: + "/Rise of Titans.exe": - arguments: steam when: - bit: 64 os: windows store: steam - /Rise of Titans.x86_64: + "/Rise of Titans.x86_64": - arguments: steam when: - bit: 64 @@ -437500,12 +438726,12 @@ Rise of Titans: id: 692130 Rise of Venice: files: - /My Games/Rise of Venice: + "/My Games/Rise of Venice": tags: - config when: - os: windows - /My Games/Rise of Venice/savegames: + "/My Games/Rise of Venice/savegames": tags: - save when: @@ -437513,7 +438739,7 @@ Rise of Venice: installDir: Rise of Venice: {} launch: - /RiseOfVenice.exe: + "/RiseOfVenice.exe": - when: - os: windows store: steam @@ -437523,19 +438749,19 @@ Rise of the Ancients: installDir: Rise of the Ancients: {} launch: - /RiseoftheAncients.exe: + "/RiseoftheAncients.exe": - when: - store: steam steam: id: 485950 Rise of the Argonauts: files: - /My Games/Rise of the Argonauts: + "/My Games/Rise of the Argonauts": tags: - save when: - os: windows - /My Games/Rise of the Argonauts/LiquidGame/Config: + "/My Games/Rise of the Argonauts/LiquidGame/Config": tags: - config when: @@ -437543,20 +438769,20 @@ Rise of the Argonauts: installDir: Rise of the Argonauts: {} launch: - /binaries/RiseOfTheArgonauts.exe: + "/binaries/RiseOfTheArgonauts.exe": - when: - store: steam - workingDir: /binaries + workingDir: "/binaries" steam: id: 12770 Rise of the Dragon: files: - /RESOURCE.CFG: + "/RESOURCE.CFG": tags: - config when: - os: dos - /SCORES.*: + "/SCORES.*": tags: - save when: @@ -437570,7 +438796,7 @@ Rise of the Pirates: installDir: Rise of the Pirates: {} launch: - /Rise of the Pirates.exe: + "/Rise of the Pirates.exe": - when: - os: windows store: steam @@ -437580,7 +438806,7 @@ Rise of the Slime: installDir: riseoftheslime: {} launch: - /riseoftheslime.exe: + "/riseoftheslime.exe": - when: - os: windows store: steam @@ -437588,37 +438814,37 @@ Rise of the Slime: id: 826740 Rise of the Third Power: files: - /AppData/LocalLow/Stegosoft Games/Rise of the Third Power/*.json: + "/AppData/LocalLow/Stegosoft Games/Rise of the Third Power/*.json": tags: - save when: - os: windows - /AppData/LocalLow/Stegosoft Games/Rise of the Third Power/*.json.meta: + "/AppData/LocalLow/Stegosoft Games/Rise of the Third Power/*.json.meta": tags: - save when: - os: windows - /AppData/LocalLow/Stegosoft Games/Rise of the Third Power/Custom Input Config.json: + "/AppData/LocalLow/Stegosoft Games/Rise of the Third Power/Custom Input Config.json": tags: - config when: - os: windows - /unity3d/Stegosoft Games/Rise of the Third Power/*.json: + "/unity3d/Stegosoft Games/Rise of the Third Power/*.json": tags: - save when: - os: linux - /unity3d/Stegosoft Games/Rise of the Third Power/*.json.meta: + "/unity3d/Stegosoft Games/Rise of the Third Power/*.json.meta": tags: - save when: - os: linux - /unity3d/Stegosoft Games/Rise of the Third Power/Custom Input Config.json: + "/unity3d/Stegosoft Games/Rise of the Third Power/Custom Input Config.json": tags: - config when: - os: linux - /unity3d/Stegosoft Games/Rise of the Third Power/prefs: + "/unity3d/Stegosoft Games/Rise of the Third Power/prefs": tags: - config when: @@ -437628,15 +438854,15 @@ Rise of the Third Power: installDir: Rise of the Third Power: {} launch: - /Rise of the Third Power.app: + "/Rise of the Third Power.app": - when: - os: mac store: steam - /Rise of the Third Power.exe: + "/Rise of the Third Power.exe": - when: - os: windows store: steam - /Rise of the Third Power.x86_64: + "/Rise of the Third Power.x86_64": - when: - os: linux store: steam @@ -437648,33 +438874,33 @@ Rise of the Third Power: id: 698700 Rise of the Tomb Raider: files: - /Library/Application Support/Feral Interactive/Rise of the Tomb Raider: + "/Library/Application Support/Feral Interactive/Rise of the Tomb Raider": tags: - config when: - os: mac - /Library/Application Support/Feral Interactive/Shadow of the Tomb Raider/SaveData: + "/Library/Application Support/Feral Interactive/Shadow of the Tomb Raider/SaveData": tags: - save when: - os: mac - /userdata//391220/remote: + "/userdata//391220/remote": tags: - save when: - store: steam - /Rise of the Tomb Raider/: + "/Rise of the Tomb Raider/": tags: - save when: - - store: epic - /Packages/39C668CD.RiseoftheTombRaider_r7bfsmp40f67j/SystemAppData/wgs: + - os: windows + "/Packages/39C668CD.RiseoftheTombRaider_r7bfsmp40f67j/SystemAppData/wgs": tags: - save when: - os: windows store: microsoft - /feral-interactive/Rise of the Tomb Raider/preferences: + "/feral-interactive/Rise of the Tomb Raider/preferences": tags: - config when: @@ -437688,16 +438914,16 @@ Rise of the Tomb Raider: installDir: Rise of the Tomb Raider: {} launch: - /ROTTR.exe: + "/ROTTR.exe": - when: - bit: 64 os: windows store: steam - /Rise of the Tomb Raider.app: + "/Rise of the Tomb Raider.app": - when: - os: mac store: steam - /RiseOfTheTombRaider.sh: + "/RiseOfTheTombRaider.sh": - when: - bit: 64 os: linux @@ -437710,12 +438936,12 @@ Rise of the Tomb Raider: id: 391220 Rise of the Triad: files: - /My Games/Rise Of The Triad/ROTTGame/Config: + "/My Games/Rise Of The Triad/ROTTGame/Config": tags: - config when: - os: windows - /My Games/Rise Of The Triad/ROTTGame/SaveData: + "/My Games/Rise Of The Triad/ROTTGame/SaveData": tags: - save when: @@ -437725,49 +438951,49 @@ Rise of the Triad: installDir: Rise of the Triad: {} launch: - /Binaries/ROTTLauncher.exe: - - arguments: '-32bit' + "/Binaries/ROTTLauncher.exe": + - arguments: "-32bit" when: - os: windows store: steam - workingDir: /Binaries + workingDir: "/Binaries" - when: - os: windows store: steam - workingDir: /Binaries - /LDKDedicatedServer.exe: + workingDir: "/Binaries" + "/LDKDedicatedServer.exe": - when: - os: windows store: steam - /ROTTManual.pdf: + "/ROTTManual.pdf": - when: - os: windows store: steam steam: id: 217140 -'Rise of the Triad: Dark War': +"Rise of the Triad: Dark War": files: - /BATTLE.ROT: + "/BATTLE.ROT": tags: - config when: - os: dos - /CONFIG.ROT: + "/CONFIG.ROT": tags: - config when: - os: dos - /ROTTGAM*.ROT: + "/ROTTGAM*.ROT": tags: - save when: - os: dos - /SCORES.ROT: + "/SCORES.ROT": tags: - save when: - os: dos - /SOUND.ROT: + "/SOUND.ROT": tags: - config when: @@ -437780,32 +439006,32 @@ Rise of the Triad: installDir: Rise of the Triad Dark War: {} launch: - /Dosbox/dosbox: - - arguments: '-conf \"..\\ROTT.conf\" -noconsole -c' + "/Dosbox/dosbox": + - arguments: "-conf \\\"..\\\\ROTT.conf\\\" -noconsole -c" when: - os: linux store: steam - workingDir: /Dosbox - /Rise of the Triad - Dark War/dosbox/dosbox.exe: - - arguments: '-conf \"..\\ROTT.conf\" -noconsole -c' + workingDir: "/Dosbox" + "/Rise of the Triad - Dark War/dosbox/dosbox.exe": + - arguments: "-conf \\\"..\\\\ROTT.conf\\\" -noconsole -c" when: - os: windows store: steam - workingDir: /Rise of the Triad - Dark War/dosbox - /Rise of the triad.app: + workingDir: "/Rise of the Triad - Dark War/dosbox" + "/Rise of the triad.app": - when: - os: mac store: steam steam: id: 358410 -'Rise of the Triad: Ludicrous Edition': +"Rise of the Triad: Ludicrous Edition": files: - /Saved Games/Nightdive Studios/Rise of the Triad - Ludicrous Edition/kexengine.cfg: + "/Saved Games/Nightdive Studios/Rise of the Triad - Ludicrous Edition/kexengine.cfg": tags: - config when: - os: windows - /Saved Games/Nightdive Studios/Rise of the Triad - Ludicrous Edition/rottSave*.rot: + "/Saved Games/Nightdive Studios/Rise of the Triad - Ludicrous Edition/rottSave*.rot": tags: - save when: @@ -437815,7 +439041,7 @@ Rise of the Triad: installDir: Rise of the Triad - Ludicrous Edition: {} launch: - /RottEX.exe: + "/RottEX.exe": - when: - bit: 64 os: windows @@ -437824,18 +439050,18 @@ Rise of the Triad: id: 1421490 Rise to Ruins: files: - /profiles: + "/profiles": tags: - config - save when: - os: linux - /profiles/profileX/saves: + "/profiles/profileX/saves": tags: - save when: - os: windows - /profiles/settings.properties: + "/profiles/settings.properties": tags: - config when: @@ -437850,58 +439076,58 @@ Rise to Ruins: installDir: Rise to Ruins: {} launch: - /RtR.command: + "/RtR.command": - when: - os: mac store: steam - /RtR.sh: + "/RtR.sh": - when: - os: linux store: steam - /RtR64.exe: + "/RtR64.exe": - when: - os: windows store: steam steam: id: 328080 -'Rise: Battle Lines': +"Rise: Battle Lines": installDir: Rise: {} launch: - /Rise.exe: + "/Rise.exe": - when: - os: windows store: steam - /rise.app: + "/rise.app": - when: - os: mac store: steam - /rise.x86: + "/rise.x86": - when: - bit: 32 os: linux store: steam - /rise.x86_64: + "/rise.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 386350 -'Rise: Race the Future': +"Rise: Race the Future": installDir: RISE Race The Future: {} launch: - /RISE Race The Future.exe: + "/RISE Race The Future.exe": - when: - bit: 64 os: windows store: steam steam: id: 955580 -'Rise: The Vieneo Province': +"Rise: The Vieneo Province": files: - /Save: + "/Save": tags: - config when: @@ -437909,7 +439135,7 @@ Rise to Ruins: installDir: Rise: {} launch: - /Rise.exe: + "/Rise.exe": - when: - os: windows store: steam @@ -437917,27 +439143,27 @@ Rise to Ruins: id: 795990 Risen: files: - /data/ini/ConfigDefault.xml: + "/data/ini/ConfigDefault.xml": tags: - config when: - os: windows - /Saved Games/Risen/SaveGames: + "/Saved Games/Risen/SaveGames": tags: - save when: - os: windows - /Risen/ConfigUser.xml: + "/Risen/ConfigUser.xml": tags: - config when: - os: windows - /Risen/SaveGames: + "/Risen/SaveGames": tags: - save when: - os: windows - /Risen/achievements.bin: + "/Risen/achievements.bin": tags: - save when: @@ -437947,20 +439173,20 @@ Risen: installDir: Risen: {} launch: - /bin/Risen.exe: + "/bin/Risen.exe": - when: - store: steam - workingDir: /bin + workingDir: "/bin" steam: id: 40300 -'Risen 2: Dark Waters': +"Risen 2: Dark Waters": files: - /Saved Games/Risen2/SaveGames: + "/Saved Games/Risen2/SaveGames": tags: - save when: - os: windows - /Risen2/Config: + "/Risen2/Config": tags: - config when: @@ -437974,19 +439200,19 @@ Risen: installDir: Risen 2: {} launch: - /system/risen2.exe: + "/system/risen2.exe": - when: - store: steam steam: id: 40390 -'Risen 3: Titan Lords': +"Risen 3: Titan Lords": files: - /Saved Games/Risen3/SaveGames: + "/Saved Games/Risen3/SaveGames": tags: - save when: - os: windows - /Risen3/Config/ConfigUser.xml: + "/Risen3/Config/ConfigUser.xml": tags: - config when: @@ -437996,7 +439222,7 @@ Risen: installDir: Risen 3: {} launch: - /system/Risen3.exe: + "/system/Risen3.exe": - when: - os: windows store: steam @@ -438006,7 +439232,7 @@ Risen Kingdom: installDir: Risen Kingdom: {} launch: - /Risen Kingdom.exe: + "/Risen Kingdom.exe": - when: - os: windows store: steam @@ -438019,28 +439245,28 @@ Rising Angels: installDir: Rising Angels Hope: {} launch: - /Rising_Angels_Hope-all/Rising_Angels_Hope-all/Rising Angels Hope.app/Contents/MacOS/Rising Angels Hope: + "/Rising_Angels_Hope-all/Rising_Angels_Hope-all/Rising Angels Hope.app/Contents/MacOS/Rising Angels Hope": - when: - os: mac store: steam - /Rising_Angels_Hope-all/Rising_Angels_Hope-all/Rising Angels Hope.exe: + "/Rising_Angels_Hope-all/Rising_Angels_Hope-all/Rising Angels Hope.exe": - when: - os: windows store: steam - /Rising_Angels_Hope-all/Rising_Angels_Hope-all/Rising Angels Hope.sh: + "/Rising_Angels_Hope-all/Rising_Angels_Hope-all/Rising Angels Hope.sh": - when: - os: linux store: steam steam: id: 368150 -'Rising Angels: Reborn': +"Rising Angels: Reborn": files: - /RenPy/Rising Angels Reborn-1345458075/*.save: + "/RenPy/Rising Angels Reborn-1345458075/*.save": tags: - save when: - os: windows - /RenPy/Rising Angels Reborn-1345458075/persistent: + "/RenPy/Rising Angels Reborn-1345458075/persistent": tags: - config when: @@ -438048,15 +439274,15 @@ Rising Angels: installDir: Rising Angels -Reborn-: {} launch: - /Rising Angels- Reborn.app/Contents/MacOS/Rising Angels- Reborn: + "/Rising Angels- Reborn.app/Contents/MacOS/Rising Angels- Reborn": - when: - os: mac store: steam - /Rising Angels- Reborn.exe: + "/Rising Angels- Reborn.exe": - when: - os: windows store: steam - /Rising Angels- Reborn.sh: + "/Rising Angels- Reborn.sh": - when: - os: linux store: steam @@ -438066,11 +439292,11 @@ Rising Dusk: installDir: Rising Dusk: {} launch: - /Rising Dusk.app/Contents/MacOS/Rising Dusk: + "/Rising Dusk.app/Contents/MacOS/Rising Dusk": - when: - os: mac store: steam - /Rising Dusk.exe: + "/Rising Dusk.exe": - when: - os: windows store: steam @@ -438080,11 +439306,11 @@ Rising Front: installDir: Rising Front: {} launch: - /Rising Front.app: + "/Rising Front.app": - when: - os: mac store: steam - /Rising Front.exe: + "/Rising Front.exe": - when: - bit: 64 os: windows @@ -438093,7 +439319,7 @@ Rising Front: id: 1560250 Rising Hell: files: - /AppData/LocalLow/Tahoe Games/Rising Hell/OptionData: + "/AppData/LocalLow/Tahoe Games/Rising Hell/OptionData": tags: - config when: @@ -438103,16 +439329,16 @@ Rising Hell: installDir: Rising Hell: {} launch: - /Rising Hell.exe: + "/Rising Hell.exe": - when: - os: windows store: steam - /hellbreaker.app/Contents/MacOS/nwjs: + "/hellbreaker.app/Contents/MacOS/nwjs": - when: - bit: 64 os: mac store: steam - /nw: + "/nw": - when: - os: linux store: steam @@ -438126,7 +439352,7 @@ Rising Islands: installDir: Rising Islands: {} launch: - /RisingIslands.exe: + "/RisingIslands.exe": - when: - os: windows store: steam @@ -438140,7 +439366,7 @@ Rising Kingdoms: installDir: Rising Kingdoms: {} launch: - /RKLauncher.exe: + "/RKLauncher.exe": - when: - os: windows store: steam @@ -438150,7 +439376,7 @@ Rising Lords: installDir: Rising Lords: {} launch: - /RisingLords.exe: + "/RisingLords.exe": - when: - os: windows store: steam @@ -438160,11 +439386,11 @@ Rising Runner: installDir: Rising Runner: {} launch: - /runner: + "/runner": - when: - os: linux store: steam - /runner.exe: + "/runner.exe": - when: - os: windows store: steam @@ -438172,16 +439398,16 @@ Rising Runner: id: 467120 Rising Storm: files: - /My Games/RedOrchestra2/ROGame/Config: + "/My Games/RedOrchestra2/ROGame/Config": tags: - config when: - os: windows steam: id: 234510 -'Rising Storm 2: Vietnam': +"Rising Storm 2: Vietnam": files: - /My Games/Rising Storm 2/ROGame/Config: + "/My Games/Rising Storm 2/ROGame/Config": tags: - config when: @@ -438189,22 +439415,22 @@ Rising Storm: installDir: Rising Storm 2: {} launch: - /Binaries/Win64/RisingStorm2.exe: + "/Binaries/Win64/RisingStorm2.exe": - when: - bit: 64 os: windows store: steam - workingDir: /Binaries/win64 + workingDir: "/Binaries/win64" steam: id: 418460 Rising Thunder: files: - /RisingThunder/Saved/Config/WindowsNoEditor: + "/RisingThunder/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /RisingThunder/Saved/SaveGames: + "/RisingThunder/Saved/SaveGames": tags: - save when: @@ -438214,14 +439440,14 @@ Rising UpUp: id: 1218100 Rising World: files: - /Worlds: + "/Worlds": tags: - save when: - os: windows - os: mac - os: linux - /config.properties: + "/config.properties": tags: - config when: @@ -438231,15 +439457,15 @@ Rising World: installDir: RisingWorld: {} launch: - /risingworld: + "/risingworld": - when: - os: linux store: steam - /risingworldosx: + "/risingworldosx": - when: - os: mac store: steam - /risingworldx64.exe: + "/risingworldx64.exe": - when: - os: windows store: steam @@ -438249,7 +439475,7 @@ Risk (2012): installDir: Risk: {} launch: - /Risk.exe: + "/Risk.exe": - when: - store: steam steam: @@ -438258,11 +439484,11 @@ Risk - The Game of Global Domination: installDir: Risk - The Game of Global Domination: {} launch: - /Risk.app: + "/Risk.app": - when: - os: mac store: steam - /Risk.exe: + "/Risk.exe": - when: - os: windows store: steam @@ -438270,7 +439496,7 @@ Risk - The Game of Global Domination: id: 382970 Risk II: files: - /GameSave: + "/GameSave": tags: - save when: @@ -438278,7 +439504,7 @@ Risk II: installDir: Risk 2: {} launch: - /RiskII.exe: + "/RiskII.exe": - when: - store: steam steam: @@ -438287,16 +439513,16 @@ Risk System: installDir: Risk System: {} launch: - /RiskSystem: + "/RiskSystem": - when: - bit: 64 os: linux store: steam - /RiskSystem.app/Contents/MacOS/RiskSystem: + "/RiskSystem.app/Contents/MacOS/RiskSystem": - when: - os: mac store: steam - /RiskSystem.exe: + "/RiskSystem.exe": - when: - os: windows store: steam @@ -438304,37 +439530,37 @@ Risk System: id: 833950 Risk of Rain: files: - /Prefs.ini: + "/Prefs.ini": tags: - config when: - os: windows - /Save.ini: + "/Save.ini": tags: - save when: - os: windows - /Save_backup.ini: + "/Save_backup.ini": tags: - save when: - os: windows - /Library/Application Support/com.riskofrain.riskofrain/prefs.ini: + "/Library/Application Support/com.riskofrain.riskofrain/prefs.ini": tags: - config when: - os: mac - /Library/Application Support/com.riskofrain.riskofrain/save.ini: + "/Library/Application Support/com.riskofrain.riskofrain/save.ini": tags: - save when: - os: mac - /Risk_of_Rain/prefs.ini: + "/Risk_of_Rain/prefs.ini": tags: - config when: - os: linux - /Risk_of_Rain/save.ini: + "/Risk_of_Rain/save.ini": tags: - save when: @@ -438344,15 +439570,15 @@ Risk of Rain: installDir: Risk of Rain: {} launch: - /Risk of Rain.app: + "/Risk of Rain.app": - when: - os: mac store: steam - /Risk of Rain.exe: + "/Risk of Rain.exe": - when: - os: windows store: steam - /run.sh: + "/run.sh": - when: - os: linux store: steam @@ -438360,12 +439586,12 @@ Risk of Rain: id: 248820 Risk of Rain 2: files: - /Risk of Rain 2_Data/Config: + "/Risk of Rain 2_Data/Config": tags: - config when: - os: windows - /userdata//632360/remote/UserProfiles: + "/userdata//632360/remote/UserProfiles": tags: - save when: @@ -438378,30 +439604,30 @@ Risk of Rain 2: installDir: Risk of Rain 2: {} launch: - /Risk of Rain 2.exe: + "/Risk of Rain 2.exe": - when: - bit: 64 os: windows store: steam registry: - 'HKEY_CURRENT_USER/Software/Hopoo Games, LLC/Risk of Rain 2': + "HKEY_CURRENT_USER/Software/Hopoo Games, LLC/Risk of Rain 2": tags: - config steam: id: 632360 Risk of Rain Returns: files: - /userdata//1337520/remote: + "/userdata//1337520/remote": tags: - save when: - store: steam - /Risk_of_Rain_Returns/*_localsave.json: + "/Risk_of_Rain_Returns/*_localsave.json": tags: - save when: - os: windows - /Risk_of_Rain_Returns/user_: + "/Risk_of_Rain_Returns/user_": tags: - config when: @@ -438411,30 +439637,30 @@ Risk of Rain Returns: - 2673200 steam: id: 1337520 -'Risk: Factions': +"Risk: Factions": installDir: Risk Factions: {} launch: - /Risk Factions.exe: + "/Risk Factions.exe": - when: - store: steam steam: id: 47800 -'Risk: Global Domination': +"Risk: Global Domination": installDir: RISK Global Domination: {} launch: - /RISK.app: + "/RISK.app": - when: - os: mac store: steam - /RISK.exe: + "/RISK.exe": - when: - bit: 64 os: windows store: steam registry: - 'HKEY_CURRENT_USER/SOFTWARE/Hasbro, Inc./RISK': + "HKEY_CURRENT_USER/SOFTWARE/Hasbro, Inc./RISK": tags: - config steam: @@ -438443,11 +439669,11 @@ Riskers: installDir: Riskers: {} launch: - /Riskers: + "/Riskers": - when: - os: linux store: steam - /Riskers.exe: + "/Riskers.exe": - when: - os: windows store: steam @@ -438457,15 +439683,15 @@ Risky Rescue: installDir: Risky Rescue: {} launch: - /RiskyRescue.app: + "/RiskyRescue.app": - when: - os: mac store: steam - /RiskyRescue.exe: + "/RiskyRescue.exe": - when: - os: windows store: steam - /RiskyRescue.x86: + "/RiskyRescue.x86": - when: - os: linux store: steam @@ -438477,7 +439703,7 @@ Risky Woods: installDir: Risky Woods: {} launch: - /dosbox.exe: + "/dosbox.exe": - when: - os: windows store: steam @@ -438487,7 +439713,7 @@ Risnuch: installDir: Risnuch: {} launch: - /Risnuch.exe: + "/Risnuch.exe": - when: - os: windows store: steam @@ -438495,22 +439721,22 @@ Risnuch: id: 1141170 Ristar: files: - /SEGA Genesis Classics/0020: + "/SEGA Genesis Classics/0020": tags: - save when: - os: windows - /SEGA Genesis Classics/setup.dat: + "/SEGA Genesis Classics/setup.dat": tags: - config when: - os: windows - /SEGA Mega Drive Classics/0020: + "/SEGA Mega Drive Classics/0020": tags: - save when: - os: windows - /SEGA Mega Drive Classics/setup.dat: + "/SEGA Mega Drive Classics/setup.dat": tags: - config when: @@ -438521,7 +439747,7 @@ Ritbone: installDir: Ritbone: {} launch: - /Ritbone.exe: + "/Ritbone.exe": - when: - os: windows store: steam @@ -438530,41 +439756,41 @@ Ritbone: Rite of Life: steam: id: 415620 -'Rite of Passage: Child of the Forest': +"Rite of Passage: Child of the Forest": installDir: - Rite of Passage Child of the Forest Collector's Edition: {} + "Rite of Passage Child of the Forest Collector's Edition": {} launch: - /RiteOfPassage_ChildOfTheForest_CE.exe: + "/RiteOfPassage_ChildOfTheForest_CE.exe": - when: - os: windows store: steam steam: id: 638270 -'Rite of Passage: Hide and Seek': +"Rite of Passage: Hide and Seek": installDir: - Rite of Passage Hide and Seek Collector's Edition: {} + "Rite of Passage Hide and Seek Collector's Edition": {} launch: - /RiteOfPassage_HideAndSeek_CE.exe: + "/RiteOfPassage_HideAndSeek_CE.exe": - when: - os: windows store: steam steam: id: 786090 -'Rite of Passage: The Lost Tides': +"Rite of Passage: The Lost Tides": installDir: - Rite of Passage The Lost Tides Collector's Edition: {} + "Rite of Passage The Lost Tides Collector's Edition": {} launch: - /RiteOfPassage_TheLostTides_CE.exe: + "/RiteOfPassage_TheLostTides_CE.exe": - when: - os: windows store: steam steam: id: 887910 -'Rite of Passage: The Perfect Show': +"Rite of Passage: The Perfect Show": installDir: - Rite of Passage The Perfect Show Collector's Edition: {} + "Rite of Passage The Perfect Show Collector's Edition": {} launch: - /RiteOfPassage_ThePerfectShow_CE.exe: + "/RiteOfPassage_ThePerfectShow_CE.exe": - when: - store: steam steam: @@ -438573,7 +439799,7 @@ Ritter: installDir: Ritter: {} launch: - /Ritter.exe: + "/Ritter.exe": - when: - store: steam steam: @@ -438582,11 +439808,11 @@ Ritual of the Moon: installDir: Ritual of the Moon: {} launch: - /R o t M.exe: + "/R o t M.exe": - when: - os: windows store: steam - /Ritual_of_the_Moon.app: + "/Ritual_of_the_Moon.app": - when: - os: mac store: steam @@ -438597,21 +439823,21 @@ Ritual on the Eve: 前夜祭: {} steam: id: 896670 -'Ritual: Crown of Horns': +"Ritual: Crown of Horns": installDir: Ritual Crown of Horns: {} launch: - /Ritual Crown of Horns.exe: + "/Ritual Crown of Horns.exe": - when: - os: windows store: steam steam: id: 1059150 -'Ritual: Sorcerer Angel': +"Ritual: Sorcerer Angel": installDir: Ritual: {} launch: - /Ritual.exe: + "/Ritual.exe": - when: - os: windows store: steam @@ -438619,7 +439845,7 @@ Ritual on the Eve: id: 1063960 RitualSummon: files: - /AppData/LocalLow/WhitePeach/RitualSummon/STData: + "/AppData/LocalLow/WhitePeach/RitualSummon/STData": tags: - save when: @@ -438627,7 +439853,7 @@ RitualSummon: installDir: RitualSummon: {} launch: - /RitualSummon.exe: + "/RitualSummon.exe": - when: - bit: 64 os: windows @@ -438636,19 +439862,19 @@ RitualSummon: id: 1962450 Rituals: files: - /.config/rituals/Local Storage/file__0.localstorage: + "/.config/rituals/Local Storage/file__0.localstorage": tags: - config - save when: - os: linux - /Library/Application Support/rituals/Local Storage/file__0.localstorage: + "/Library/Application Support/rituals/Local Storage/file__0.localstorage": tags: - config - save when: - os: mac - /rituals/Local Storage/file__0.localstorage: + "/rituals/Local Storage/file__0.localstorage": tags: - config - save @@ -438657,15 +439883,15 @@ Rituals: installDir: Rituals: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam - /rituals: + "/rituals": - when: - os: linux store: steam - /rituals.app: + "/rituals.app": - when: - os: mac store: steam @@ -438675,15 +439901,15 @@ Rituals in the Dark: installDir: Rituals in the Dark: {} launch: - /Rituals_in_the_Dark.app: + "/Rituals_in_the_Dark.app": - when: - os: mac store: steam - /Rituals_in_the_Dark.exe: + "/Rituals_in_the_Dark.exe": - when: - os: windows store: steam - /Rituals_in_the_Dark.sh: + "/Rituals_in_the_Dark.sh": - when: - os: linux store: steam @@ -438693,7 +439919,7 @@ Rivais Em Batalha: installDir: RivaisEmBatalha: {} launch: - /RivaisEmBatalha.exe: + "/RivaisEmBatalha.exe": - when: - os: windows store: steam @@ -438703,22 +439929,22 @@ Rival Books of Aster: installDir: Rival Books of Aster: {} launch: - /RBA.app/Contents/MacOS/RBA: + "/RBA.app/Contents/MacOS/RBA": - when: - os: mac store: steam - /RBA.exe: + "/RBA.exe": - when: - os: windows store: steam - /RBA.x86: - - arguments: '-screen-fullscreen 0' + "/RBA.x86": + - arguments: "-screen-fullscreen 0" when: - bit: 32 os: linux store: steam - /RBA.x86_64: - - arguments: '-screen-fullscreen 0' + "/RBA.x86_64": + - arguments: "-screen-fullscreen 0" when: - bit: 64 os: linux @@ -438733,7 +439959,7 @@ Rival Megagun: installDir: Rival Megagun: {} launch: - /Rival Megagun.exe: + "/Rival Megagun.exe": - when: - store: steam steam: @@ -438742,7 +439968,7 @@ Rival Nation Wars: installDir: Rival Nation Wars: {} launch: - /Rival Nation Wars.exe: + "/Rival Nation Wars.exe": - when: - os: windows store: steam @@ -438752,7 +439978,7 @@ Rival Rampage: installDir: Rival Rampage: {} launch: - /RivalRampage.exe: + "/RivalRampage.exe": - when: - os: windows store: steam @@ -438762,18 +439988,18 @@ Rivalry: installDir: Rivalry: {} launch: - /Rivalry.app: - - arguments: '-screen-width 1920 -screen-height 1080 -screen-fullscreen 1' + "/Rivalry.app": + - arguments: "-screen-width 1920 -screen-height 1080 -screen-fullscreen 1" when: - os: mac store: steam - /Rivalry.exe: - - arguments: '-screen-width 1920 -screen-height 1080 -screen-fullscreen 1 ' + "/Rivalry.exe": + - arguments: "-screen-width 1920 -screen-height 1080 -screen-fullscreen 1 " when: - os: windows store: steam - /Rivalry.x86_64: - - arguments: '-force-opengl -screen-width 1920 -screen-height 1080 -screen-fullscreen 1' + "/Rivalry.x86_64": + - arguments: "-force-opengl -screen-width 1920 -screen-height 1080 -screen-fullscreen 1" when: - bit: 64 os: linux @@ -438782,7 +440008,7 @@ Rivalry: id: 431770 Rivals of Aether: files: - /RivalsofAether/saves: + "/RivalsofAether/saves": tags: - config - save @@ -438791,7 +440017,7 @@ Rivals of Aether: installDir: Rivals of Aether: {} launch: - /RivalsofAether.exe: + "/RivalsofAether.exe": - when: - os: windows store: steam @@ -438799,12 +440025,12 @@ Rivals of Aether: id: 383980 Rive: files: - /userdata//278100/remote: + "/userdata//278100/remote": tags: - save when: - store: steam - /Two Tribes/RIVE: + "/Two Tribes/RIVE": tags: - config - save @@ -438813,17 +440039,17 @@ Rive: installDir: RIVE: {} launch: - /RIVE.app: + "/RIVE.app": - when: - bit: 64 os: mac store: steam - /RIVE.bin.x86_64: + "/RIVE.bin.x86_64": - when: - bit: 64 os: linux store: steam - /rive.exe: + "/rive.exe": - when: - bit: 64 os: windows @@ -438832,7 +440058,7 @@ Rive: id: 278100 Riven: files: - /*.rvn: + "/*.rvn": tags: - save when: @@ -438842,7 +440068,7 @@ Riven: installDir: Riven: {} launch: - /riven.app: + "/riven.app": - when: - os: mac store: steam @@ -438870,36 +440096,36 @@ Riven: when: - os: mac store: steam - /scummvm.exe: - - arguments: '-c myst25.ini riven' + "/scummvm.exe": + - arguments: "-c myst25.ini riven" when: - os: windows store: steam - - arguments: '-c myst25.ini riven-fr' + - arguments: "-c myst25.ini riven-fr" when: - os: windows store: steam - - arguments: '-c myst25.ini riven-de' + - arguments: "-c myst25.ini riven-de" when: - os: windows store: steam - - arguments: '-c myst25.ini riven-it' + - arguments: "-c myst25.ini riven-it" when: - os: windows store: steam - - arguments: '-c myst25.ini riven-jp' + - arguments: "-c myst25.ini riven-jp" when: - os: windows store: steam - - arguments: '-c myst25.ini riven-es' + - arguments: "-c myst25.ini riven-es" when: - os: windows store: steam - - arguments: '-c myst25.ini riven-pl' + - arguments: "-c myst25.ini riven-pl" when: - os: windows store: steam - - arguments: '-c myst25.ini riven-ru' + - arguments: "-c myst25.ini riven-ru" when: - os: windows store: steam @@ -438907,12 +440133,12 @@ Riven: id: 63610 River City Girls: files: - /AppData/LocalLow/WayForward Technologies/River City Girls/_savedata: + "/AppData/LocalLow/WayForward Technologies/River City Girls/_savedata": tags: - save when: - os: windows - /Packages/6151WayForward.RiverCityGirlsPC_38xd6w9je1dae/LocalState/_savedata: + "/Packages/6151WayForward.RiverCityGirlsPC_38xd6w9je1dae/LocalState/_savedata": tags: - save when: @@ -438923,7 +440149,7 @@ River City Girls: installDir: River City Girls: {} launch: - /RiverCityGirls.exe: + "/RiverCityGirls.exe": - when: - os: windows store: steam @@ -438937,7 +440163,7 @@ River City Girls 2: installDir: River City Girls 2: {} launch: - /RCG2.exe: + "/RCG2.exe": - when: - os: windows store: steam @@ -438947,7 +440173,7 @@ River City Girls Zero: installDir: River City Girls Zero: {} launch: - /RCGZ.exe: + "/RCGZ.exe": - when: - store: steam steam: @@ -438956,47 +440182,47 @@ River City Melee Mach!!: installDir: River City Melee Mach!!: {} launch: - /River City Melee Mach!!.exe: + "/River City Melee Mach!!.exe": - when: - bit: 64 os: windows store: steam steam: id: 763710 -'River City Melee: Battle Royal Special': +"River City Melee: Battle Royal Special": installDir: River City Melee Battle Royal Special: {} launch: - /BattleRoyalSpecial.exe: + "/BattleRoyalSpecial.exe": - when: - os: windows store: steam steam: id: 544630 -'River City Ransom: Underground': +"River City Ransom: Underground": files: - /Saves: + "/Saves": tags: - save when: - os: windows - /settings.dat: + "/settings.dat": tags: - config when: - os: windows - /Library/Application Support/RiverCityRansomUnderground: + "/Library/Application Support/RiverCityRansomUnderground": tags: - config - save when: - os: mac - /RiverCityRansomUnderground: + "/RiverCityRansomUnderground": tags: - config when: - os: linux - /RiverCityRansomUnderground: + "/RiverCityRansomUnderground": tags: - save when: @@ -439006,23 +440232,23 @@ River City Melee Mach!!: installDir: River City Ransom Underground: {} launch: - /RCRU: + "/RCRU": - when: - os: linux store: steam - /RCRU.app/Contents/MacOS/RCRU: + "/RCRU.app/Contents/MacOS/RCRU": - when: - os: mac store: steam - /RCRU.exe: + "/RCRU.exe": - when: - os: windows store: steam steam: id: 422810 -'River City Saga: Three Kingdoms': +"River City Saga: Three Kingdoms": files: - //LocalLow/ARC SYSTEM WORKS: + "//LocalLow/ARC SYSTEM WORKS": tags: - save when: @@ -439030,29 +440256,29 @@ River City Melee Mach!!: installDir: River City Saga Three Kingdoms: {} launch: - /River City Saga Three Kingdoms.exe: + "/River City Saga Three Kingdoms.exe": - when: - store: steam steam: id: 1013220 -'River City Super Sports Challenge: All Stars Special': +"River City Super Sports Challenge: All Stars Special": installDir: River City Super Sports Challenge All Star Special: {} launch: - /AllStarsSpecial.exe: + "/AllStarsSpecial.exe": - when: - os: windows store: steam steam: id: 326340 -'River City: Rival Showdown': +"River City: Rival Showdown": steam: id: 2090370 -'River Legends: A Fly Fishing Adventure': +"River Legends: A Fly Fishing Adventure": installDir: River Legends A Fly Fishing Adventure: {} launch: - /riverlegends.exe: + "/riverlegends.exe": - when: - os: windows store: steam @@ -439062,7 +440288,7 @@ Riverbond: installDir: Riverbond: {} launch: - /Riverbond.exe: + "/Riverbond.exe": - when: - os: windows store: steam @@ -439076,7 +440302,7 @@ Riverhill Trials: installDir: Riverhill Trials: {} launch: - /RiverhillTrials.exe: + "/RiverhillTrials.exe": - when: - os: windows store: steam @@ -439086,7 +440312,7 @@ Rize of the Summonds: installDir: RotS: {} launch: - /gameBuildSteamLaunch_1.7.exe: + "/gameBuildSteamLaunch_1.7.exe": - when: - os: windows store: steam @@ -439096,16 +440322,16 @@ Rktcr: installDir: rktcr: {} launch: - /rktcr-steam: + "/rktcr-steam": - when: - bit: 64 os: linux store: steam - /rktcr-steam.app: + "/rktcr-steam.app": - when: - os: mac store: steam - /rktcr-steam.exe: + "/rktcr-steam.exe": - when: - os: windows store: steam @@ -439117,7 +440343,7 @@ RoBoRumble: installDir: RoBoRumble: {} launch: - /RoBoRumble.app: + "/RoBoRumble.app": - when: - os: mac store: steam @@ -439127,7 +440353,7 @@ RoBros: installDir: RoBros: {} launch: - /RoBros.exe: + "/RoBros.exe": - when: - bit: 64 os: windows @@ -439138,11 +440364,11 @@ RoShamBo: installDir: RoShamBo Arena: {} launch: - /RSBArena.app/Contents/MacOS/RSBArena: + "/RSBArena.app/Contents/MacOS/RSBArena": - when: - os: mac store: steam - /roshambo_arena.exe: + "/roshambo_arena.exe": - when: - os: windows store: steam @@ -439158,23 +440384,23 @@ Roach Killer: id: 1034440 Road 96: files: - /AppData/LocalLow/DigixArt/Road 96/Saves/content.sav: + "/AppData/LocalLow/DigixArt/Road 96/Saves/content.sav": tags: - save when: - os: windows - /AppData/LocalLow/DigixArt/Road 96/Saves/settings.sav: + "/AppData/LocalLow/DigixArt/Road 96/Saves/settings.sav": tags: - config when: - os: windows - /compatdata/1466640/remote/pfx: + "/compatdata/1466640/remote/pfx": tags: - config - save when: - store: steam - /Packages/DeepSilver.31214024AC209_hmv7qcest37me/SystemAppData/wgs: + "/Packages/DeepSilver.31214024AC209_hmv7qcest37me/SystemAppData/wgs": tags: - save when: @@ -439186,13 +440412,13 @@ Road 96: Road 96: {} steam: id: 1466640 -'Road 96: Mile 0': +"Road 96: Mile 0": gog: id: 1118289534 installDir: Road 96 Mile 0: {} launch: - /Road96-Mile0.exe: + "/Road96-Mile0.exe": - when: - os: windows store: steam @@ -439202,17 +440428,17 @@ Road Dogs: installDir: Road Dogs: {} launch: - /RoadDogs: + "/RoadDogs": - arguments: skip steam when: - os: linux store: steam - /RoadDogs.app/Contents/MacOS/RoadDogs: + "/RoadDogs.app/Contents/MacOS/RoadDogs": - arguments: skip steam when: - os: mac store: steam - /RoadDogs.exe: + "/RoadDogs.exe": - arguments: skip steam when: - os: windows @@ -439223,7 +440449,7 @@ Road Doom: installDir: Road Doom: {} launch: - /RoadDoom.exe: + "/RoadDoom.exe": - when: - os: windows store: steam @@ -439233,7 +440459,7 @@ Road Fist: installDir: Road Fist: {} launch: - /RF.exe: + "/RF.exe": - when: - bit: 64 os: windows @@ -439244,51 +440470,51 @@ Road Homeward: installDir: ROAD HOMEWARD: {} launch: - /ROADHOMEWARD1.exe: + "/ROADHOMEWARD1.exe": - when: - bit: 64 os: windows store: steam steam: id: 876300 -'Road Homeward 2: River Trip': +"Road Homeward 2: River Trip": installDir: ROAD HOMEWARD 2 river trip: {} launch: - /RH 2 rt.exe: + "/RH 2 rt.exe": - when: - bit: 64 os: windows store: steam steam: id: 1059080 -'Road Homeward 3: Underwater World': +"Road Homeward 3: Underwater World": installDir: ROAD HOMEWARD 3 underwater world: {} launch: - /RH 3 uw.exe: + "/RH 3 uw.exe": - when: - bit: 64 os: windows store: steam steam: id: 1106030 -'Road Homeward 4: Last Step': +"Road Homeward 4: Last Step": installDir: ROAD HOMEWARD 4 last step: {} launch: - /RoadHomeward4.exe: + "/RoadHomeward4.exe": - when: - bit: 64 os: windows store: steam steam: id: 1153120 -'Road Homeward: Open World': +"Road Homeward: Open World": installDir: ROAD HOMEWARD Open world: {} launch: - /ROAD HOMEWARD open world.exe: + "/ROAD HOMEWARD open world.exe": - when: - bit: 64 os: windows @@ -439299,11 +440525,11 @@ Road Legends: installDir: Road Legends: {} launch: - /Road Legends.app/Contents/MacOS/Road Legends: + "/Road Legends.app/Contents/MacOS/Road Legends": - when: - os: mac store: steam - /Road Legends.exe: + "/Road Legends.exe": - when: - os: windows store: steam @@ -439313,7 +440539,7 @@ Road Madness: installDir: Road Madness: {} launch: - /Road Madness.exe: + "/Road Madness.exe": - when: - os: windows store: steam @@ -439321,7 +440547,7 @@ Road Madness: id: 457710 Road Not Taken: files: - /saves: + "/saves": tags: - save when: @@ -439329,13 +440555,13 @@ Road Not Taken: installDir: RoadNotTaken: {} launch: - /RoadNotTaken.exe: - - arguments: '-console' + "/RoadNotTaken.exe": + - arguments: "-console" when: - os: windows store: steam - /run_osx.sh: - - arguments: '-console' + "/run_osx.sh": + - arguments: "-console" when: - os: mac store: steam @@ -439345,11 +440571,11 @@ Road Patrol Truck: installDir: Road Patrol Truck: {} launch: - /Road Patrol Truck.app/Contents/MacOS/Road Patrol Truck: + "/Road Patrol Truck.app/Contents/MacOS/Road Patrol Truck": - when: - os: mac store: steam - /Road Patrol Truck.exe: + "/Road Patrol Truck.exe": - when: - os: windows store: steam @@ -439359,7 +440585,7 @@ Road Rage: installDir: Road Rage: {} launch: - /RoadRage.exe: + "/RoadRage.exe": - when: - bit: 64 os: windows @@ -439370,15 +440596,15 @@ Road Rage Royale: installDir: Road Rage Royale: {} launch: - /Road Rage Royale.app: + "/Road Rage Royale.app": - when: - os: mac store: steam - /Road Rage Royale.exe: + "/Road Rage Royale.exe": - when: - os: windows store: steam - /RoadRageRoyale.x86_64: + "/RoadRageRoyale.x86_64": - when: - bit: 64 os: linux @@ -439393,37 +440619,37 @@ Road Rash: - save Road Redemption: files: - /.config/unity3d/DarkSeas/Road Redemption - Early Access: + "/.config/unity3d/DarkSeas/Road Redemption - Early Access": tags: - config when: - os: linux - /Documents/Road Redemption: + "/Documents/Road Redemption": tags: - config when: - os: linux - /Documents/Road Redemption/Saves: + "/Documents/Road Redemption/Saves": tags: - save when: - os: linux - /documents/roadredemption: + "/documents/roadredemption": tags: - config when: - os: mac - /documents/roadredemption/saves: + "/documents/roadredemption/saves": tags: - save when: - os: mac - /Road Redemption: + "/Road Redemption": tags: - config when: - os: windows - /Road Redemption/Saves: + "/Road Redemption/Saves": tags: - save when: @@ -439431,31 +440657,31 @@ Road Redemption: installDir: RoadRedemption: {} launch: - /Road Redemption.app: + "/Road Redemption.app": - when: - os: mac store: steam - /RoadRedemption.exe: - - arguments: '-force-d3d9' + "/RoadRedemption.exe": + - arguments: "-force-d3d9" when: - os: windows store: steam - /RoadRedemption.x86_64: + "/RoadRedemption.x86_64": - when: - os: linux store: steam - /RoadRedemptionEarlyAccess.exe: + "/RoadRedemptionEarlyAccess.exe": - when: - bit: 32 os: windows store: steam steam: id: 300380 -'Road Scars: Origins': +"Road Scars: Origins": installDir: Road Scars Origins: {} launch: - /Road Scars Origins.exe: + "/Road Scars Origins.exe": - when: - store: steam steam: @@ -439467,7 +440693,7 @@ Road Trip USA - Jigsaw Puzzles: installDir: Road Trip USA - Jigsaw Puzzles: {} launch: - /Classic Jigsaw Puzzles.exe: + "/Classic Jigsaw Puzzles.exe": - when: - os: windows store: steam @@ -439475,7 +440701,7 @@ Road Trip USA - Jigsaw Puzzles: id: 1007940 Road Wars: files: - /Road Wars/Ini: + "/Road Wars/Ini": tags: - config when: @@ -439484,25 +440710,25 @@ Road Works: installDir: RoadWorks: {} launch: - /RoadWorks.exe: + "/RoadWorks.exe": - when: - os: windows store: steam - /RoadWorksEditor.exe: + "/RoadWorksEditor.exe": - when: - os: windows store: steam steam: id: 352750 -'Road Z Survival: The Last Winter': +"Road Z Survival: The Last Winter": installDir: Road Z Survival The Last Winter: {} launch: - /offroad_survival.exe: + "/offroad_survival.exe": - when: - os: windows store: steam - /offroad_survival_osx.app/Contents/MacOS/offroad_survival_osx: + "/offroad_survival_osx.app/Contents/MacOS/offroad_survival_osx": - when: - os: mac store: steam @@ -439519,7 +440745,7 @@ Road of Dust and Rust: id: 804070 Road to Ballhalla: files: - /RoadToBallhallaUE4/Saved/SaveGames: + "/RoadToBallhallaUE4/Saved/SaveGames": tags: - save when: @@ -439532,7 +440758,7 @@ Road to Eden: installDir: Road to Eden: {} launch: - /RoadToEden424.exe: + "/RoadToEden424.exe": - when: - bit: 64 os: windows @@ -439541,7 +440767,7 @@ Road to Eden: id: 929060 Road to Guangdong: files: - /Documents/Excalibur/RoadToGuangdong: + "/Documents/Excalibur/RoadToGuangdong": tags: - save when: @@ -439549,7 +440775,7 @@ Road to Guangdong: installDir: Road to Guangdong: {} launch: - /RoadToGuangdong.exe: + "/RoadToGuangdong.exe": - when: - os: windows store: steam @@ -439563,11 +440789,13 @@ Road to your City: installDir: Road to your City: {} launch: - /RoadToYourCity: + "/RoadToYourCity": - when: - os: mac store: steam - /RoadToYourCity.exe: + - os: linux + store: steam + "/RoadToYourCity.exe": - when: - os: windows store: steam @@ -439581,11 +440809,11 @@ RoadRunner VR: RoadRunner VR: {} steam: id: 691640 -'Roadclub: League Racing': +"Roadclub: League Racing": installDir: RoadclubLeagueRacing: {} launch: - /Roadclub.exe: + "/Roadclub.exe": - when: - bit: 32 os: windows @@ -439601,7 +440829,7 @@ Roads of Rome: installDir: Roads of Rome: {} launch: - /RoadsOfRome.exe: + "/RoadsOfRome.exe": - when: - store: steam steam: @@ -439610,7 +440838,7 @@ Roads of Rome 2: installDir: Roads of rome 2: {} launch: - /RoadsOfRome2.exe: + "/RoadsOfRome2.exe": - when: - store: steam steam: @@ -439619,25 +440847,25 @@ Roads of Rome 3: installDir: Roads of Rome 3: {} launch: - /RoadsOfRome3.exe: + "/RoadsOfRome3.exe": - when: - store: steam steam: id: 411530 -'Roads of Rome: New Generation': +"Roads of Rome: New Generation": installDir: Roads of Rome New Generation: {} launch: - /RoR_NG.exe: + "/RoR_NG.exe": - when: - store: steam steam: id: 573760 -'Roads of Rome: New Generation 2': +"Roads of Rome: New Generation 2": installDir: Roads of Rome New Generation 2: {} launch: - /RoR_NG2.exe: + "/RoR_NG2.exe": - when: - store: steam steam: @@ -439646,11 +440874,11 @@ Roadside Assistance Simulator: installDir: Roadside Assistance Simulator: {} launch: - /Roadside Assistance Simulator.exe: + "/Roadside Assistance Simulator.exe": - when: - os: windows store: steam - /RoadsideAssistanceSimulator.app: + "/RoadsideAssistanceSimulator.app": - when: - os: mac store: steam @@ -439658,17 +440886,17 @@ Roadside Assistance Simulator: id: 302440 Roadwarden: files: - /.renpy/roadwarden: + "/.renpy/roadwarden": tags: - save when: - os: linux - /Library/RenPy/roadwarden: + "/Library/RenPy/roadwarden": tags: - save when: - os: mac - /RenPy/Roadwarden-Saves: + "/RenPy/Roadwarden-Saves": tags: - save when: @@ -439683,20 +440911,20 @@ Roadwarden: installDir: Roadwarden: {} launch: - /Roadwarden-32.exe: + "/Roadwarden-32.exe": - when: - bit: 32 os: windows store: steam - /Roadwarden.app: + "/Roadwarden.app": - when: - os: mac store: steam - /Roadwarden.exe: + "/Roadwarden.exe": - when: - os: windows store: steam - /Roadwarden.sh: + "/Roadwarden.sh": - when: - os: linux store: steam @@ -439706,7 +440934,7 @@ Roadworks - The Simulation: installDir: Roadworks - The Simulation: {} launch: - /Roadworks-TheSimulation.exe: + "/Roadworks-TheSimulation.exe": - when: - os: windows store: steam @@ -439716,7 +440944,7 @@ Roadworks Simulator: installDir: Roadworks Simulator: {} launch: - /roadworks_win.exe: + "/roadworks_win.exe": - when: - os: windows store: steam @@ -439726,7 +440954,7 @@ Roah: installDir: Roah: {} launch: - /Roah.exe: + "/Roah.exe": - when: - os: windows store: steam @@ -439734,7 +440962,7 @@ Roah: id: 628320 Roaming Fortress: files: - /com.yeticgi.rf/Local Store/#SharedObjects/rf_desktop.swf: + "/com.yeticgi.rf/Local Store/#SharedObjects/rf_desktop.swf": tags: - save when: @@ -439742,11 +440970,11 @@ Roaming Fortress: installDir: RoamingFortress: {} launch: - /Roaming Fortress.exe: + "/Roaming Fortress.exe": - when: - os: windows store: steam - /RoamingFortress.app: + "/RoamingFortress.app": - when: - os: mac store: steam @@ -439756,7 +440984,7 @@ Roanoke: installDir: Roanoke: {} launch: - /Roanoke.exe: + "/Roanoke.exe": - when: - store: steam steam: @@ -439765,11 +440993,11 @@ Roarr! The Adventures of Rampage Rex: installDir: Roarr!: {} launch: - /macBuild.app/Contents/MacOS/macBuild: + "/macBuild.app/Contents/MacOS/macBuild": - when: - os: mac store: steam - /roarr.exe: + "/roarr.exe": - when: - os: windows store: steam @@ -439779,43 +441007,43 @@ Roast Party: installDir: Roast Party: {} launch: - /RoastParty.exe: + "/RoastParty.exe": - when: - os: windows store: steam steam: id: 1193560 -Robber's Horror: +"Robber's Horror": installDir: Robber Horror: {} launch: - /robberhorror.exe: + "/robberhorror.exe": - when: - bit: 64 os: windows store: steam steam: id: 1190230 -'Robbery Bob: Man of Steal': +"Robbery Bob: Man of Steal": installDir: Robbery Bob: {} launch: - /bin/RobberyBob.exe: + "/bin/RobberyBob.exe": - when: - os: windows store: steam - workingDir: /bin + workingDir: "/bin" steam: id: 372960 Robbie Swifthand and the Orb of Mysteries: installDir: Robbie Swifthand and the Orb of Mysteries: {} launch: - /Robbie Swifthand and the Orb of Mysteries.app: + "/Robbie Swifthand and the Orb of Mysteries.app": - when: - os: mac store: steam - /Robbie Swifthand and the Orb of Mysteries.exe: + "/Robbie Swifthand and the Orb of Mysteries.exe": - when: - os: windows store: steam @@ -439823,14 +441051,14 @@ Robbie Swifthand and the Orb of Mysteries: id: 718010 Robbo: files: - /config.dta: + "/config.dta": tags: - config when: - os: dos Robbo Millennium: files: - /data: + "/data": tags: - config - save @@ -439844,34 +441072,34 @@ Robbotto: installDir: Robbotto: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam steam: id: 881190 -Robby's Adventure: +"Robby's Adventure": installDir: - Robby's Adventure: {} + "Robby's Adventure": {} launch: - /WindowsNoEditor/RobbysAdventure.exe: + "/WindowsNoEditor/RobbysAdventure.exe": - when: - bit: 64 os: windows store: steam steam: id: 663140 -Robert Mensah's Sins of the Father: +"Robert Mensah's Sins of the Father": installDir: - Robert Mensah's Sins Of The Father: {} + "Robert Mensah's Sins Of The Father": {} launch: - /Sins Of The Father.exe: + "/Sins Of The Father.exe": - when: - os: windows store: steam steam: id: 450840 -Robert Rodriguez's The Limit: +"Robert Rodriguez's The Limit": installDir: The Limit An Immersive Cinema Experience: {} steam: @@ -439880,7 +441108,7 @@ Robikon: installDir: Robikon: {} launch: - /Robikon.exe: + "/Robikon.exe": - when: - os: windows store: steam @@ -439890,29 +441118,29 @@ Robin: installDir: Robin: {} launch: - /Robin.exe: + "/Robin.exe": - when: - store: steam steam: id: 671720 -'Robin Hood: Country Heroes': +"Robin Hood: Country Heroes": installDir: Robin Hood Country Heroes: {} launch: - /RobinHood_CountryHeroes_CE.exe: + "/RobinHood_CountryHeroes_CE.exe": - when: - os: windows store: steam steam: id: 1197670 -'Robin Hood: The Legend of Sherwood': +"Robin Hood: The Legend of Sherwood": files: - /DATA/Configuration: + "/DATA/Configuration": tags: - config when: - os: windows - /DATA/Savegame: + "/DATA/Savegame": tags: - save when: @@ -439922,10 +441150,10 @@ Robin: installDir: Robin Hood: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam - /Robin Hood.app: + "/Robin Hood.app": - when: - os: mac store: steam @@ -439935,26 +441163,26 @@ Robin of Loxley the Legend of Sherwood: installDir: Robin of Loxley the Legend of Sherwood: {} launch: - /RoLEarlyAccess.exe: + "/RoLEarlyAccess.exe": - when: - os: windows store: steam steam: id: 692090 -Robin's Island Adventure: +"Robin's Island Adventure": installDir: - Robin's Island Adventure: {} + "Robin's Island Adventure": {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: id: 323260 -Robin's Quest: +"Robin's Quest": installDir: - Robin's Quest: {} + "Robin's Quest": {} launch: - /RobinsQuest.exe: + "/RobinsQuest.exe": - when: - store: steam steam: @@ -439963,15 +441191,15 @@ Robinson Crusoe and the Cursed Pirates: installDir: Robinson Crusoe and the Cursed Pirates: {} launch: - /RobinsonCrusoeCursedPirates.exe: + "/RobinsonCrusoeCursedPirates.exe": - when: - store: steam steam: id: 334480 -Robinson's Requiem: +"Robinson's Requiem": gog: id: 1207662373 -'Robinson: The Journey': +"Robinson: The Journey": installDir: Robinson The Journey: {} steam: @@ -439985,15 +441213,15 @@ Robo Do It: installDir: Robo Do It: {} launch: - /Mac x64.app/Contents/MacOS/Mac x64: + "/Mac x64.app/Contents/MacOS/Mac x64": - when: - os: mac store: steam - /robo_do_it.exe: + "/robo_do_it.exe": - when: - os: windows store: steam - /robo_do_it.x86_64: + "/robo_do_it.x86_64": - when: - bit: 64 os: linux @@ -440008,12 +441236,12 @@ Robo Inc Project: id: 1118530 Robo Instructus: files: - /robo-instructus/*.save: + "/robo-instructus/*.save": tags: - save when: - os: windows - /robo-instructus/profiles.json: + "/robo-instructus/profiles.json": tags: - config when: @@ -440021,16 +441249,16 @@ Robo Instructus: installDir: robo-instructus: {} launch: - /robo_instructus: + "/robo_instructus": - when: - os: mac store: steam - /robo_instructus.exe: + "/robo_instructus.exe": - when: - bit: 64 os: windows store: steam - /run-robo-instructus.sh: + "/run-robo-instructus.sh": - when: - bit: 64 os: linux @@ -440041,7 +441269,7 @@ Robo Miner: installDir: Robo Miner: {} launch: - /RoboMiner.exe: + "/RoboMiner.exe": - when: - os: windows store: steam @@ -440051,7 +441279,7 @@ Robo Miner 2: installDir: Robo Miner 2: {} launch: - /RoboMiner2.exe: + "/RoboMiner2.exe": - when: - os: windows store: steam @@ -440061,16 +441289,16 @@ Robo Puzzle Smash: installDir: RoboPuzzleSmash: {} launch: - /smash.app: + "/smash.app": - when: - os: mac store: steam - /smash.exe: + "/smash.exe": - when: - bit: 64 os: windows store: steam - /smash.x86_64: + "/smash.x86_64": - when: - bit: 64 os: linux @@ -440079,12 +441307,12 @@ Robo Puzzle Smash: id: 792850 Robo Recall: files: - /RoboRecall/Saved/Config: + "/RoboRecall/Saved/Config": tags: - config when: - os: windows - /RoboRecall/Saved/SaveGames: + "/RoboRecall/Saved/SaveGames": tags: - save when: @@ -440093,7 +441321,7 @@ Robo Run: installDir: Robo Run: {} launch: - /Robo Run.exe: + "/Robo Run.exe": - when: - store: steam steam: @@ -440102,26 +441330,26 @@ Robo Runners: installDir: Robo Runners: {} launch: - /RoboRunners.exe: + "/RoboRunners.exe": - when: - bit: 64 os: windows store: steam steam: id: 847670 -'Robo''s World: The Zarnok Fortress': +"Robo's World: The Zarnok Fortress": installDir: - Robo's World The Zarnok Fortress: {} + "Robo's World The Zarnok Fortress": {} launch: - /RobosWorldTheZarnokFortress.app/Contents/MacOS/Mac_Runner: + "/RobosWorldTheZarnokFortress.app/Contents/MacOS/Mac_Runner": - when: - os: mac store: steam - /RobosWorldTheZarnokFortress.exe: + "/RobosWorldTheZarnokFortress.exe": - when: - os: windows store: steam - /run.sh: + "/run.sh": - when: - os: linux store: steam @@ -440134,11 +441362,11 @@ RoboBall: installDir: RoboBall: {} launch: - /RoboBall.app: + "/RoboBall.app": - when: - os: mac store: steam - /RoboBall.exe: + "/RoboBall.exe": - when: - os: windows store: steam @@ -440146,12 +441374,12 @@ RoboBall: id: 973170 RoboBlitz: files: - /RoboGame/Config: + "/RoboGame/Config": tags: - config when: - os: windows - /SavedGames: + "/SavedGames": tags: - save when: @@ -440159,7 +441387,7 @@ RoboBlitz: installDir: RoboBlitz: {} launch: - /Binaries/RoboLaunch.exe: + "/Binaries/RoboLaunch.exe": - when: - store: steam - arguments: editor @@ -440171,11 +441399,11 @@ RoboBunnies In Space!: installDir: RoboBunnies In Space: {} launch: - /RoboBunniesInSpace.app/Contents/MacOS/RoboBunniesInSpace: + "/RoboBunniesInSpace.app/Contents/MacOS/RoboBunniesInSpace": - when: - os: mac store: steam - /RoboBunniesInSpace.exe: + "/RoboBunniesInSpace.exe": - when: - os: windows store: steam @@ -440185,8 +441413,8 @@ RoboCo: installDir: RoboCo: {} launch: - /RoboCo.exe: - - arguments: '-nohmd' + "/RoboCo.exe": + - arguments: "-nohmd" when: - os: windows store: steam @@ -440196,31 +441424,31 @@ RoboCock: installDir: ROBOCOCK: {} launch: - /ROBOCOCK.exe: + "/ROBOCOCK.exe": - when: - store: steam steam: id: 2319100 RoboCop (2003): files: - /Robocop.ini: + "/Robocop.ini": tags: - config when: - os: windows - /save: + "/save": tags: - save when: - os: windows -'RoboCop: Rogue City': +"RoboCop: Rogue City": files: - /RoboCop/Saved/Config/Windows: + "/RoboCop/Saved/Config/Windows": tags: - config when: - os: windows - /RoboCop/Saved/SaveGames: + "/RoboCop/Saved/SaveGames": tags: - save when: @@ -440236,7 +441464,7 @@ RoboCritters: installDir: RoboCritters: {} launch: - /RoboCritters.exe: + "/RoboCritters.exe": - when: - os: windows store: steam @@ -440246,7 +441474,7 @@ RoboGenesis: installDir: FlipsideGenesis: {} launch: - /Flipside.exe: + "/Flipside.exe": - when: - bit: 64 os: windows @@ -440262,17 +441490,17 @@ RoboMatch: installDir: RoboMatch: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam steam: id: 600210 -'RoboSnakes: Core Wars Legacy': +"RoboSnakes: Core Wars Legacy": installDir: RoboSnakes: {} launch: - /RoboSnakes.exe: + "/RoboSnakes.exe": - when: - os: windows store: steam @@ -440292,15 +441520,15 @@ RoboVDino: installDir: RoboVDino: {} launch: - /RoboVDino.exe: + "/RoboVDino.exe": - when: - os: windows store: steam - /mac.app: + "/mac.app": - when: - os: mac store: steam - /robovdino.x86_64: + "/robovdino.x86_64": - when: - bit: 64 os: linux @@ -440311,11 +441539,11 @@ RoboVirus: installDir: RoboVirus: {} launch: - /RoboVirus.exe: + "/RoboVirus.exe": - when: - os: windows store: steam - /robovirus.x64: + "/robovirus.x64": - when: - bit: 64 os: linux @@ -440326,16 +441554,16 @@ RoboWorlD tactics: installDir: RoboWorlD tactics: {} launch: - /RoboWorlD.exe: + "/RoboWorlD.exe": - when: - os: windows store: steam - /RoboWorlD.x86: + "/RoboWorlD.x86": - when: - bit: 32 os: linux store: steam - /RoboWorlD.x86_64: + "/RoboWorlD.x86_64": - when: - bit: 64 os: linux @@ -440346,7 +441574,7 @@ RoboZone: installDir: RoboZone: {} launch: - /robozone.exe: + "/robozone.exe": - when: - os: windows store: steam @@ -440354,12 +441582,12 @@ RoboZone: id: 668460 Robocraft: files: - /.config/unity3d/FreeJam/Robocraft: + "/.config/unity3d/FreeJam/Robocraft": tags: - config when: - os: linux - /Library/Preferences/unity.FreeJam.Robocraft.plist: + "/Library/Preferences/unity.FreeJam.Robocraft.plist": tags: - config when: @@ -440367,21 +441595,21 @@ Robocraft: installDir: Robocraft: {} launch: - /Robocraft.x86: + "/Robocraft.x86": - when: - bit: 32 os: linux store: steam - /Robocraft.x86_64: + "/Robocraft.x86_64": - when: - bit: 64 os: linux store: steam - /robocraft.app: + "/robocraft.app": - when: - os: mac store: steam - /robocraft.exe: + "/robocraft.exe": - when: - os: windows store: steam @@ -440395,7 +441623,7 @@ Robocraft Royale: installDir: Robocraft Royale: {} launch: - /RobocraftRoyale.exe: + "/RobocraftRoyale.exe": - when: - bit: 64 os: windows @@ -440406,7 +441634,7 @@ Robohazard 2077: installDir: Robohazard 2077: {} launch: - /Roboapocalypse.exe: + "/Roboapocalypse.exe": - when: - bit: 64 os: windows @@ -440415,7 +441643,7 @@ Robohazard 2077: id: 1027530 Roboquest: files: - /RoboQuest: + "/RoboQuest": tags: - config - save @@ -440426,17 +441654,17 @@ Roboquest: installDir: RoboQuest: {} launch: - /RoboQuest.exe: + "/RoboQuest.exe": - when: - os: windows store: steam steam: id: 692890 -'Robosoul: From the Depths of Pax-Animi': +"Robosoul: From the Depths of Pax-Animi": installDir: Robosoul-PaxAnimi: {} launch: - /bin/game.exe: + "/bin/game.exe": - when: - os: windows store: steam @@ -440444,12 +441672,12 @@ Roboquest: id: 707040 Robot Arena: files: - /Robot Arena.cfg: + "/Robot Arena.cfg": tags: - config when: - os: windows - /Save: + "/Save": tags: - save when: @@ -440458,7 +441686,7 @@ Robot Arena III: installDir: Robot Arena 3: {} launch: - /RobotArena3.exe: + "/RobotArena3.exe": - when: - os: windows store: steam @@ -440468,13 +441696,13 @@ Robot Boy: installDir: Robot Boy: {} launch: - /Robot Boy MacOS.app/Contents/MacOS/Robot Boy: - - arguments: 'C:\\Users\\tardy\\Desktop\\sdk\\tools\\ContentBuilder\\content\\macos_content' + "/Robot Boy MacOS.app/Contents/MacOS/Robot Boy": + - arguments: "C:\\\\Users\\\\tardy\\\\Desktop\\\\sdk\\\\tools\\\\ContentBuilder\\\\content\\\\macos_content" when: - os: mac store: steam - /Robot Boy.exe: - - arguments: 'C:\\Users\\tardy\\Desktop\\sdk\\tools\\ContentBuilder\\content\\windows_content' + "/Robot Boy.exe": + - arguments: "C:\\\\Users\\\\tardy\\\\Desktop\\\\sdk\\\\tools\\\\ContentBuilder\\\\content\\\\windows_content" when: - os: windows store: steam @@ -440487,7 +441715,7 @@ Robot Chase: installDir: Robot Chase: {} launch: - /RobotChase.exe: + "/RobotChase.exe": - when: - store: steam steam: @@ -440501,7 +441729,7 @@ Robot Exploration Squad: installDir: Robot Exploration Squad: {} launch: - /RobotExplorationSquad.exe: + "/RobotExplorationSquad.exe": - when: - os: windows store: steam @@ -440514,7 +441742,7 @@ Robot Female Hero 1: installDir: Robot Female Hero 1: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -440524,7 +441752,7 @@ Robot Female Hero 2: installDir: Robot Female Hero 2: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -440534,11 +441762,11 @@ Robot Fighting: installDir: Robot Fighting: {} launch: - /Robot Fighting - Minibot Battle 3D.app/Contents/MacOS/Robot Fighting - Minibot Battle 3D: + "/Robot Fighting - Minibot Battle 3D.app/Contents/MacOS/Robot Fighting - Minibot Battle 3D": - when: - os: mac store: steam - /Robot Fighting - Minibot Battle 3D.exe: + "/Robot Fighting - Minibot Battle 3D.exe": - when: - os: windows store: steam @@ -440548,11 +441776,11 @@ Robot Heroes: installDir: Robot Heroes: {} launch: - /RobotHeroes.app: + "/RobotHeroes.app": - when: - os: mac store: steam - /RobotHeroes.exe: + "/RobotHeroes.exe": - when: - os: windows store: steam @@ -440567,31 +441795,31 @@ Robot Island: installDir: Robot Island: {} launch: - /robotisland.app/Contents/MacOS/robotisland: + "/robotisland.app/Contents/MacOS/robotisland": - when: - os: mac store: steam - /robotisland/Robot Island.exe: + "/robotisland/Robot Island.exe": - when: - os: windows store: steam steam: id: 1197390 -'Robot King Part 2: Boss Battles': +"Robot King Part 2: Boss Battles": installDir: Robot King Part 2 Boss Battles: {} launch: - /RobotKing2.exe: + "/RobotKing2.exe": - when: - os: windows store: steam steam: id: 1017630 -'Robot King Part I: Rebooted and Ready': +"Robot King Part I: Rebooted and Ready": installDir: Robot King Part I Rebooted and Ready: {} launch: - /RobotKing.exe: + "/RobotKing.exe": - when: - os: windows store: steam @@ -440601,7 +441829,7 @@ Robot Legions Reborn: installDir: Robot Legions Reborn: {} launch: - /RobotLegionsReborn.exe: + "/RobotLegionsReborn.exe": - when: - os: windows store: steam @@ -440611,7 +441839,7 @@ Robot Pirates: installDir: Robot Pirates: {} launch: - /Robot_Pirates.exe: + "/Robot_Pirates.exe": - when: - os: windows store: steam @@ -440621,7 +441849,7 @@ Robot Rescue Revolution: installDir: RobotRescueRevolution: {} launch: - /RobotRescue3_final.exe: + "/RobotRescue3_final.exe": - when: - os: windows store: steam @@ -440629,7 +441857,7 @@ Robot Rescue Revolution: id: 284200 Robot Roller-Derby Disco Dodgeball: files: - /AppData/LocalLow/82 Apps/Disco Dodgeball: + "/AppData/LocalLow/82 Apps/Disco Dodgeball": tags: - save when: @@ -440637,19 +441865,19 @@ Robot Roller-Derby Disco Dodgeball: installDir: Disco Dodgeball: {} launch: - /Disco Dodgeball.app: + "/Disco Dodgeball.app": - when: - os: mac store: steam - /Disco Dodgeball.exe: + "/Disco Dodgeball.exe": - when: - os: windows store: steam - /Disco Dodgeball.x86: + "/Disco Dodgeball.x86": - when: - os: linux store: steam - /Disco Dodgeball.x86_64: + "/Disco Dodgeball.x86_64": - when: - bit: 64 os: linux @@ -440670,7 +441898,7 @@ Robot Soccer Challenge: installDir: Robot Soccer Challenge: {} launch: - /RobotSoccerChallenge.exe: + "/RobotSoccerChallenge.exe": - when: - os: windows store: steam @@ -440680,7 +441908,7 @@ Robot Squad Simulator 2017: installDir: Robot Squad Simulator 2017: {} launch: - /Robot Squad Simulator 2017.exe: + "/Robot Squad Simulator 2017.exe": - when: - os: windows store: steam @@ -440694,7 +441922,7 @@ Robot Tsunami: installDir: Robot Tsunami: {} launch: - /Binaries/Win32/RobotTsunami.exe: + "/Binaries/Win32/RobotTsunami.exe": - when: - os: windows store: steam @@ -440704,7 +441932,7 @@ Robot Vacuum Simulator X: installDir: Robot Vacuum Simulator X: {} launch: - /RobotVacuumSimX.exe: + "/RobotVacuumSimX.exe": - when: - os: windows store: steam @@ -440714,11 +441942,11 @@ Robot Wants It All: installDir: Robot Wants It All: {} launch: - /RWIA.exe: + "/RWIA.exe": - when: - os: windows store: steam - /run.sh: + "/run.sh": - when: - os: linux store: steam @@ -440728,15 +441956,15 @@ Robot Warriors: installDir: Robot Warriors: {} launch: - /Linux/RobotWarriors.x86_64: + "/Linux/RobotWarriors.x86_64": - when: - os: linux store: steam - /Mac/RobotWarriorsMac.app: + "/Mac/RobotWarriorsMac.app": - when: - os: mac store: steam - /Windows/RobotWarriors.exe: + "/Windows/RobotWarriors.exe": - when: - os: windows store: steam @@ -440746,7 +441974,7 @@ Robot terminator: installDir: Robot terminator: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -440756,25 +441984,25 @@ Robot vs Birds Zombies: installDir: Robot vs Birds Zombies: {} launch: - /rbz.app: + "/rbz.app": - when: - os: mac store: steam - /rbz.exe: + "/rbz.exe": - when: - os: windows store: steam - /rbz.x86_64: + "/rbz.x86_64": - when: - os: linux store: steam steam: id: 389460 -Robot's Mystery: +"Robot's Mystery": installDir: RobotMystery: {} launch: - /RobotMystery.exe: + "/RobotMystery.exe": - when: - os: windows store: steam @@ -440784,18 +442012,20 @@ Robotex: installDir: Robotex: {} launch: - /rbtx.app: + "/rbtx.app": - when: - os: mac store: steam - /rbtx.exe: + "/rbtx.exe": - when: - store: steam - /rbtx.x86: + - os: windows + store: steam + "/rbtx.x86": - when: - os: linux store: steam - /rbtx.x86_64: + "/rbtx.x86_64": - when: - os: linux store: steam @@ -440805,15 +442035,15 @@ Robothorium: installDir: Robothorium: {} launch: - /Robothorium.app: + "/Robothorium.app": - when: - os: mac store: steam - /Robothorium.exe: + "/Robothorium.exe": - when: - os: windows store: steam - /Robothorium.x86: + "/Robothorium.x86": - when: - os: linux store: steam @@ -440826,7 +442056,7 @@ Robotics in VR: id: 783070 Robotics;Notes DaSH: files: - /My Games/mages_steam/Robotics Notes DASH/eng: + "/My Games/mages_steam/Robotics Notes DASH/eng": tags: - config - save @@ -440835,7 +442065,7 @@ Robotics;Notes DaSH: installDir: ROBOTICS;NOTES DaSH: {} launch: - /boot.bat: + "/boot.bat": - when: - os: windows store: steam @@ -440843,7 +442073,7 @@ Robotics;Notes DaSH: id: 1111390 Robotics;Notes Elite: files: - /My Games/mages_steam/Robotics Notes ELITE/eng: + "/My Games/mages_steam/Robotics Notes ELITE/eng": tags: - config - save @@ -440852,7 +442082,7 @@ Robotics;Notes Elite: installDir: ROBOTICS;NOTES ELITE: {} launch: - /boot.bat: + "/boot.bat": - when: - os: windows store: steam @@ -440860,7 +442090,7 @@ Robotics;Notes Elite: id: 1111380 Robots: files: - /Robots: + "/Robots": tags: - config - save @@ -440870,7 +442100,7 @@ Robots 2 Unknown World: installDir: Robots 2 Unknown World: {} launch: - /Robots2.exe: + "/Robots2.exe": - when: - bit: 64 os: windows @@ -440881,7 +442111,7 @@ Robots Attack On Vapeland: installDir: Robots Attack On Vapeland: {} launch: - /RobotsVap.exe: + "/RobotsVap.exe": - when: - bit: 64 os: windows @@ -440892,11 +442122,11 @@ Robots In The Wild: installDir: Robots In The Wild: {} launch: - /Robots In The Wild.app: + "/Robots In The Wild.app": - when: - os: mac store: steam - /Robots In The Wild.exe: + "/Robots In The Wild.exe": - when: - os: windows store: steam @@ -440906,20 +442136,20 @@ Robots.io: installDir: Robots.io: {} launch: - /robots.exe: + "/robots.exe": - when: - store: steam steam: id: 704070 -'Robots: create AI': +"Robots: create AI": installDir: Robots: {} launch: - /Robots.app: + "/Robots.app": - when: - os: mac store: steam - /Robots.exe: + "/Robots.exe": - when: - os: windows store: steam @@ -440929,7 +442159,7 @@ Robowars: installDir: Robowars: {} launch: - /RoboWars.exe: + "/RoboWars.exe": - when: - store: steam steam: @@ -440938,7 +442168,7 @@ Robozarro: installDir: Robozarro: {} launch: - /Robozarro.exe: + "/Robozarro.exe": - when: - os: windows store: steam @@ -440948,21 +442178,21 @@ Robust Road Roller: installDir: ROBUST ROAD ROLLER: {} launch: - /RoadRoller.exe: + "/RoadRoller.exe": - when: - os: windows store: steam steam: id: 558030 -'Rocco''s Island: Ring to End the Pain': +"Rocco's Island: Ring to End the Pain": installDir: RoccosIsland: {} launch: - /RoccosIsland.app: + "/RoccosIsland.app": - when: - os: mac store: steam - /RoccosIsland.exe: + "/RoccosIsland.exe": - when: - os: windows store: steam @@ -440970,22 +442200,22 @@ Robust Road Roller: id: 1394480 Rochard: files: - /.config/unity3d/Recoil Games/Rochard/game.dat: + "/.config/unity3d/Recoil Games/Rochard/game.dat": tags: - save when: - os: linux - /.config/unity3d/Recoil Games/Rochard/profile.dat: + "/.config/unity3d/Recoil Games/Rochard/profile.dat": tags: - config when: - os: linux - /userdata//107800/game.dat: + "/userdata//107800/game.dat": tags: - save when: - store: steam - /userdata//107800/profile.dat: + "/userdata//107800/profile.dat": tags: - config when: @@ -440993,15 +442223,15 @@ Rochard: installDir: Rochard: {} launch: - /Rochard: + "/Rochard": - when: - os: linux store: steam - /Rochard.app: + "/Rochard.app": - when: - os: mac store: steam - /Rochard.exe: + "/Rochard.exe": - when: - os: windows store: steam @@ -441011,51 +442241,51 @@ Roche Fusion: installDir: Roche Fusion: {} launch: - /Roche Fusion.app/Contents/MacOS/Kick: + "/Roche Fusion.app/Contents/MacOS/Kick": - when: - os: mac store: steam - /rochefusion.exe: + "/rochefusion.exe": - when: - os: windows store: steam steam: id: 334140 -Rock 'N Roll: +"Rock 'N Roll": installDir: - Rock 'N Roll: {} + "Rock 'N Roll": {} steam: id: 665930 -Rock 'N' Roll Defense: +"Rock 'N' Roll Defense": files: - /Rock__N__Roll_Defense/Rnrdconfig.sav: + "/Rock__N__Roll_Defense/Rnrdconfig.sav": tags: - config when: - os: windows installDir: - Rock 'N' Roll Defense: {} + "Rock 'N' Roll Defense": {} launch: - /Rock 'N' Roll Defense.exe: + "/Rock 'N' Roll Defense.exe": - when: - os: windows store: steam steam: id: 438480 -'Rock Boshers DX: Directors Cut': +"Rock Boshers DX: Directors Cut": installDir: Rock Boshers DX: {} launch: - /RBDXSteam: + "/RBDXSteam": - when: - os: linux store: steam - /RBDXSteam.app: + "/RBDXSteam.app": - when: - bit: 64 os: mac store: steam - /RBDXSteam.exe: + "/RBDXSteam.exe": - when: - os: windows store: steam @@ -441063,7 +442293,7 @@ Rock 'N' Roll Defense: id: 298790 Rock God Tycoon: files: - /RockGodTycoon/save_data: + "/RockGodTycoon/save_data": tags: - save when: @@ -441071,11 +442301,11 @@ Rock God Tycoon: installDir: RockGodTycoon: {} launch: - /RockGodTycoon: + "/RockGodTycoon": - when: - os: linux store: steam - /RockGodTycoon.exe: + "/RockGodTycoon.exe": - when: - os: windows store: steam @@ -441088,7 +442318,7 @@ Rock Paper Scissors Champion: installDir: RockPaperScissorsChampion: {} launch: - /RockPaperScissorsChampion.exe: + "/RockPaperScissorsChampion.exe": - when: - bit: 32 os: windows @@ -441099,7 +442329,7 @@ Rock Simulator: installDir: Rock Simulator: {} launch: - /RockSimulator.exe: + "/RockSimulator.exe": - when: - os: windows store: steam @@ -441109,16 +442339,16 @@ Rock Zombie: installDir: RockZombie: {} launch: - /RockZombie.exe: + "/RockZombie.exe": - when: - store: steam steam: id: 328640 -'Rock n'' Rush: Battle Racing': +"Rock n' Rush: Battle Racing": installDir: Rock n Rush Battle Racing: {} launch: - /RocknRushBattleRacing.exe: + "/RocknRushBattleRacing.exe": - when: - os: windows store: steam @@ -441126,7 +442356,7 @@ Rock Zombie: id: 871390 Rock of Ages: files: - /My Games/UnrealEngine3/BoulderGame/Config: + "/My Games/UnrealEngine3/BoulderGame/Config": tags: - config when: @@ -441134,28 +442364,28 @@ Rock of Ages: installDir: Rock of Ages: {} launch: - /Binaries/Win32/RoA.exe: + "/Binaries/Win32/RoA.exe": - when: - store: steam steam: id: 22230 -'Rock of Ages 3: Make & Break': +"Rock of Ages 3: Make & Break": installDir: Rock of Ages III Make & Break: {} launch: - /ROA3.exe: + "/ROA3.exe": - when: - store: steam steam: id: 1101360 -'Rock of Ages II: Bigger & Boulder': +"Rock of Ages II: Bigger & Boulder": files: - /ROA2/Saved/Config: + "/ROA2/Saved/Config": tags: - config when: - os: windows - /ROA2/Saved/SaveGames: + "/ROA2/Saved/SaveGames": tags: - save when: @@ -441163,39 +442393,39 @@ Rock of Ages: installDir: Rock of Ages 2: {} launch: - /ROA2.exe: + "/ROA2.exe": - when: - bit: 64 os: windows store: steam steam: id: 434460 -'Rock, Ken, Bo': +"Rock, Ken, Bo": installDir: Rock Ken Bo: {} launch: - /RKB.exe: + "/RKB.exe": - when: - os: windows store: steam steam: id: 619480 -'Rock, Paper, Scissors Simulator': +"Rock, Paper, Scissors Simulator": installDir: - 'Rock, Paper, Scissors Simulator': {} + "Rock, Paper, Scissors Simulator": {} launch: - /RPSS.exe: + "/RPSS.exe": - when: - bit: 64 os: windows store: steam steam: id: 1205060 -'Rock, the Tree Hugger': +"Rock, the Tree Hugger": installDir: - 'Rock, the Tree Hugger': {} + "Rock, the Tree Hugger": {} launch: - /Rock_the_Tree_Hugger.exe: + "/Rock_the_Tree_Hugger.exe": - when: - os: windows store: steam @@ -441205,7 +442435,7 @@ Rock-n-Rogue A Boo Bunny Plague Adventure: installDir: Rock-n-Rogue A Boo Bunny Plague Adventure: {} launch: - /RockNRogue.exe: + "/RockNRogue.exe": - when: - os: windows store: steam @@ -441215,7 +442445,7 @@ RockBuster: installDir: RockBuster: {} launch: - /RockBuster.exe: + "/RockBuster.exe": - when: - bit: 64 os: windows @@ -441226,19 +442456,8 @@ RockShot: installDir: Rockshot: {} launch: - /Launcher.exe: - - arguments: >- - -D3Social.Protocol=https:// -D3Social.Domain=api.rockshot.gameforge.com - -D3Social.Domain2=api-na.rockshot.gameforge.com -D3Social.MatchingDomain=match.rockshot.gameforge.com - -D3Social.MatchingDomain2=match-na.rockshot.gameforge.com - -D3WebSocket.OverrideURL=://conn.rockshot.gameforge.com - -D3WebSocket.OverrideURL2=://conn-na.rockshot.gameforge.com - -D3Social.DownloadFullURL=\"http://dl.rockshot.gameforge.com/rockshot/masterdata/LIVE/master/eu\" - -D3Social.DownloadFullURL2=\"http://dl.rockshot.gameforge.com/rockshot/masterdata/LIVE/master/na\" - -D3WebSocket.OverridePort=443 -D3WebSocket.OverrideSSL=true -D3Social.BaseURL= -D3Social.BaseAPIURL=/api - -D3Social.MatchingURL=/api -D3Social.DownloadURL=/download - -ServerRegion2=\"ai,ag,aw,bs,bb,bz,bm,bq,vg,ca,fr-cp,ky,cr,cu,cw,dm,do,sv,gd,gl,gp,gt,ht,hn,jm,mq,mx,ms,um,ni,pa,pr,bq,bl,mf,kn,lc,pm,vc,bq,sx,tt,tc,us,vi\" - -CheckClientVersion=1720455855 + "/Launcher.exe": + - arguments: "-D3Social.Protocol=https:// -D3Social.Domain=api.rockshot.gameforge.com -D3Social.Domain2=api-na.rockshot.gameforge.com -D3Social.MatchingDomain=match.rockshot.gameforge.com -D3Social.MatchingDomain2=match-na.rockshot.gameforge.com -D3WebSocket.OverrideURL=://conn.rockshot.gameforge.com -D3WebSocket.OverrideURL2=://conn-na.rockshot.gameforge.com -D3Social.DownloadFullURL=\\\"http://dl.rockshot.gameforge.com/rockshot/masterdata/LIVE/master/eu\\\" -D3Social.DownloadFullURL2=\\\"http://dl.rockshot.gameforge.com/rockshot/masterdata/LIVE/master/na\\\" -D3WebSocket.OverridePort=443 -D3WebSocket.OverrideSSL=true -D3Social.BaseURL= -D3Social.BaseAPIURL=/api -D3Social.MatchingURL=/api -D3Social.DownloadURL=/download -ServerRegion2=\\\"ai,ag,aw,bs,bb,bz,bm,bq,vg,ca,fr-cp,ky,cr,cu,cw,dm,do,sv,gd,gl,gp,gt,ht,hn,jm,mq,mx,ms,um,ni,pa,pr,bq,bl,mf,kn,lc,pm,vc,bq,sx,tt,tc,us,vi\\\" -CheckClientVersion=1720455855" when: - store: steam steam: @@ -441247,8 +442466,8 @@ Rocka Feller: installDir: Rocka Feller: {} launch: - /LaunchGame.exe: - - arguments: '0' + "/LaunchGame.exe": + - arguments: "0" when: - os: windows store: steam @@ -441261,7 +442480,7 @@ RockaBowling VR: id: 1053640 Rocket Arena: files: - /Mariner/Saved/Config/WindowsNoEditor: + "/Mariner/Saved/Config/WindowsNoEditor": tags: - config when: @@ -441269,7 +442488,7 @@ Rocket Arena: installDir: Rocket Arena: {} launch: - /Launch_RocketArena.exe: + "/Launch_RocketArena.exe": - when: - bit: 64 os: windows @@ -441285,7 +442504,7 @@ Rocket Assault: installDir: Rocket Assault: {} launch: - /hoverCar.exe: + "/hoverCar.exe": - when: - os: windows store: steam @@ -441295,7 +442514,7 @@ Rocket Blasters: installDir: Rocket Blasters: {} launch: - /runner: + "/runner": - when: - os: linux store: steam @@ -441305,11 +442524,11 @@ Rocket Boy: installDir: Rocket Boy: {} launch: - /Rocket-Boy.app: + "/Rocket-Boy.app": - when: - os: mac store: steam - /Rocket-Boy.exe: + "/Rocket-Boy.exe": - when: - os: windows store: steam @@ -441319,7 +442538,7 @@ Rocket Craze 3D: installDir: Rocket Craze 3D: {} launch: - /RocketCraze3D.exe: + "/RocketCraze3D.exe": - when: - os: windows store: steam @@ -441329,16 +442548,16 @@ Rocket Fist: installDir: Rocket Fist: {} launch: - /RocketFist.app: + "/RocketFist.app": - when: - os: mac store: steam - /RocketFist.x86_64: + "/RocketFist.x86_64": - arguments: LC_ALL=C when: - os: linux store: steam - /Rocket_Fist.exe: + "/Rocket_Fist.exe": - when: - os: windows store: steam @@ -441348,7 +442567,7 @@ Rocket Ghost Aidan: installDir: Rocket Ghost Aidan 1: {} launch: - /Rocket Ghost Aidan.exe: + "/Rocket Ghost Aidan.exe": - when: - os: windows store: steam @@ -441358,30 +442577,30 @@ Rocket Golf: installDir: Rocket Golf: {} launch: - /Contents/MacOS/Rocket Golf Mac 32bit: + "/Contents/MacOS/Rocket Golf Mac 32bit": - when: - os: mac store: steam - /Contents/MacOS/Rocket Golf Mac 64bit: + "/Contents/MacOS/Rocket Golf Mac 64bit": - when: - os: mac store: steam - /Rocket Golf Linux 32bit.x86: + "/Rocket Golf Linux 32bit.x86": - when: - bit: 32 os: linux store: steam - /Rocket Golf Linux 64bit.x86_64: + "/Rocket Golf Linux 64bit.x86_64": - when: - bit: 64 os: linux store: steam - /Rocket Golf PC 32bit.exe: + "/Rocket Golf PC 32bit.exe": - when: - bit: 32 os: windows store: steam - /Rocket Golf PC 64bit.exe: + "/Rocket Golf PC 64bit.exe": - when: - bit: 64 os: windows @@ -441392,11 +442611,11 @@ Rocket Inc: installDir: Rocket Inc: {} launch: - /Rocket Inc.app: + "/Rocket Inc.app": - when: - os: mac store: steam - /Rocket Inc.exe: + "/Rocket Inc.exe": - when: - bit: 64 os: windows @@ -441407,11 +442626,11 @@ Rocket Island: installDir: Rocket Island: {} launch: - /Rocket Island.exe: + "/Rocket Island.exe": - when: - os: windows store: steam - /RocketIsland.app: + "/RocketIsland.app": - when: - os: mac store: steam @@ -441421,14 +442640,14 @@ Rocket Jockey: installDir: Rocket Jockey: {} launch: - /Jockey.exe: + "/Jockey.exe": - when: - store: steam steam: id: 2471120 Rocket Knight: files: - /userdata//19030/remote: + "/userdata//19030/remote": tags: - save when: @@ -441437,7 +442656,7 @@ Rocket Knight: installDir: Rocket Knight: {} launch: - /RocketKnight_ConfigTool.exe: + "/RocketKnight_ConfigTool.exe": - when: - store: steam registry: @@ -441448,32 +442667,32 @@ Rocket Knight: id: 19030 Rocket League: files: - /Library/Application Support/Rocket League/TAGame: + "/Library/Application Support/Rocket League/TAGame": tags: - config when: - os: mac - /Library/Application Support/Rocket League/TAGame/SaveData: + "/Library/Application Support/Rocket League/TAGame/SaveData": tags: - save when: - os: mac - /My Games/Rocket League/TAGame/Config: + "/My Games/Rocket League/TAGame/Config": tags: - config when: - os: windows - /My Games/Rocket League/TAGame/SaveData: + "/My Games/Rocket League/TAGame/SaveData": tags: - save when: - os: windows - /Rocket League/TAGame: + "/Rocket League/TAGame": tags: - config when: - os: linux - /Rocket League/TAGame/SaveData: + "/Rocket League/TAGame/SaveData": tags: - save when: @@ -441520,31 +442739,31 @@ Rocket League: installDir: rocketleague: {} launch: - /Binaries/Linux/RocketLeague: + "/Binaries/Linux/RocketLeague": - when: - os: linux store: steam - /Binaries/Win64/RocketLeague.exe: + "/Binaries/Win64/RocketLeague.exe": - when: - os: windows store: steam - workingDir: /Binaries/Win64 - /RocketLeague.app/Contents/MacOS/TAGame: + workingDir: "/Binaries/Win64" + "/RocketLeague.app/Contents/MacOS/TAGame": - when: - os: mac store: steam - workingDir: /RocketLeague.app/Contents/MacOS + workingDir: "/RocketLeague.app/Contents/MacOS" steam: id: 252950 Rocket Mania: installDir: RocketMania: {} launch: - /Rocket Mania.exe: + "/Rocket Mania.exe": - when: - os: windows store: steam - /RocketMania.app: + "/RocketMania.app": - when: - os: mac store: steam @@ -441552,7 +442771,7 @@ Rocket Mania: id: 1949810 Rocket Mania!: files: - /Players: + "/Players": tags: - save when: @@ -441560,7 +442779,7 @@ Rocket Mania!: installDir: Rocket Mania Deluxe: {} launch: - /RocketMania.exe: + "/RocketMania.exe": - when: - store: steam steam: @@ -441571,7 +442790,7 @@ Rocket Ranger: installDir: Cinemaware Anthology 1986-1991: {} launch: - /Anthology.exe: + "/Anthology.exe": - when: - os: windows store: steam @@ -441581,7 +442800,7 @@ Rocket Riot: installDir: Rocket Riot: {} launch: - /RocketRiotSteam.exe: + "/RocketRiotSteam.exe": - when: - os: windows store: steam @@ -441594,7 +442813,7 @@ Rocket Shooter: installDir: Rocket Shooter: {} launch: - /ShooterGame.exe: + "/ShooterGame.exe": - when: - os: windows store: steam @@ -441604,7 +442823,7 @@ Rocket Ski Racing: installDir: Rocket Ski Racing: {} launch: - /RocketSkiRacing.exe: + "/RocketSkiRacing.exe": - when: - os: windows store: steam @@ -441619,7 +442838,7 @@ Rocket Valley Tycoon: installDir: Rocket Valley Tycoon: {} launch: - /RocketValleyTycoon.exe: + "/RocketValleyTycoon.exe": - when: - os: windows store: steam @@ -441629,31 +442848,31 @@ Rocket Wars: installDir: Rocket Wars: {} launch: - /Rocket Wars.exe: + "/Rocket Wars.exe": - when: - os: windows store: steam - /Rocket Wars.x86: + "/Rocket Wars.x86": - when: - bit: 32 os: linux store: steam - /Rocket Wars.x86_64: + "/Rocket Wars.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 627670 -'Rocket of Whispers: Prologue': +"Rocket of Whispers: Prologue": installDir: Rocket of Whispers Prologue: {} launch: - /Rocket of Whispers Prologue.app/Contents/MacOS/Rocket of Whispers Prologue: + "/Rocket of Whispers Prologue.app/Contents/MacOS/Rocket of Whispers Prologue": - when: - os: mac store: steam - /Rocket of Whispers Prologue.exe: + "/Rocket of Whispers Prologue.exe": - when: - os: windows store: steam @@ -441663,11 +442882,11 @@ RocketGO: installDir: RocketGO: {} launch: - /RocketGo.exe: + "/RocketGo.exe": - when: - os: windows store: steam - /RocketGo_os.app: + "/RocketGo_os.app": - when: - os: mac store: steam @@ -441677,7 +442896,7 @@ RocketGirl: installDir: RocketGirl: {} launch: - /RocketGirl.exe: + "/RocketGirl.exe": - when: - os: windows store: steam @@ -441685,7 +442904,7 @@ RocketGirl: id: 760960 Rocketbirds 2 Evolution: files: - /Save: + "/Save": tags: - config - save @@ -441694,22 +442913,22 @@ Rocketbirds 2 Evolution: installDir: Rocketbirds 2: {} launch: - /Game.exe: + "/Game.exe": - when: - bit: 64 os: windows store: steam steam: id: 470210 -'Rocketbirds: Hardboiled Chicken': +"Rocketbirds: Hardboiled Chicken": files: - /Save: + "/Save": tags: - config - save when: - os: windows - /rocketbirds: + "/rocketbirds": tags: - config - save @@ -441718,15 +442937,15 @@ Rocketbirds 2 Evolution: installDir: rocketbirds_hardboiled: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam - /Rocketbirds.App/Contents/MacOS/Rocketbirds: + "/Rocketbirds.App/Contents/MacOS/Rocketbirds": - when: - os: mac store: steam - /rocketbirds.bin.x86: + "/rocketbirds.bin.x86": - when: - os: linux store: steam @@ -441741,11 +442960,11 @@ Rocketboat - Pilot: installDir: Rocketboat - Pilot: {} launch: - /Rocketboat - Pilot.app: + "/Rocketboat - Pilot.app": - when: - os: mac store: steam - /Rocketboat - Pilot.exe: + "/Rocketboat - Pilot.exe": - when: - os: windows store: steam @@ -441758,7 +442977,7 @@ Rockfest: installDir: Rockfest: {} launch: - /Rockfest.exe: + "/Rockfest.exe": - when: - os: windows store: steam @@ -441768,12 +442987,12 @@ Rocking Pilot: installDir: Rocking Pilot: {} launch: - /RockingPilot.app: + "/RockingPilot.app": - when: - bit: 64 os: mac store: steam - /RockingPilot.exe: + "/RockingPilot.exe": - when: - bit: 32 os: windows @@ -441787,7 +443006,7 @@ Rockland VR: id: 718470 Rockman Dash 2: files: - /dash2.cfg: + "/dash2.cfg": tags: - config when: @@ -441796,7 +443015,7 @@ Rockman X Dive: installDir: ROCKMAN X DiVE: {} launch: - /Game.exe: + "/Game.exe": - when: - bit: 64 os: windows @@ -441805,34 +443024,34 @@ Rockman X Dive: id: 1582620 Rockman X Math Whirlwind: files: - /Han.txt: + "/Han.txt": tags: - save when: - os: windows Rockman X7: files: - /savedata: + "/savedata": tags: - save when: - os: windows -Rocko's Quest: +"Rocko's Quest": files: - /Options.cfg: + "/Options.cfg": tags: - config when: - os: windows - /RData/Save: + "/RData/Save": tags: - save when: - os: windows installDir: - Rocko's Quest: {} + "Rocko's Quest": {} launch: - /Rocko.exe: + "/Rocko.exe": - when: - store: steam steam: @@ -441846,7 +443065,7 @@ Rocks and Rockets: installDir: Rocks and Rockets: {} launch: - /rocks&rockets.exe: + "/rocks&rockets.exe": - when: - os: windows store: steam @@ -441854,12 +443073,12 @@ Rocks and Rockets: id: 715470 Rocksmith: files: - /Rocksmith.ini: + "/Rocksmith.ini": tags: - config when: - os: windows - /userdata//205190/remote: + "/userdata//205190/remote": tags: - save when: @@ -441867,7 +443086,7 @@ Rocksmith: installDir: Rocksmith: {} launch: - /Rocksmith.exe: + "/Rocksmith.exe": - when: - os: windows store: steam @@ -441875,13 +443094,13 @@ Rocksmith: id: 205190 Rocksmith 2014: files: - /Rocksmith.ini: + "/Rocksmith.ini": tags: - config when: - os: windows - os: mac - /userdata//221680/remote: + "/userdata//221680/remote": tags: - save when: @@ -441890,12 +443109,12 @@ Rocksmith 2014: installDir: Rocksmith2014: {} launch: - /Rocksmith2014.app: + "/Rocksmith2014.app": - when: - os: mac store: steam - /Rocksmith2014.exe: - - arguments: '-uplay_steam_mode' + "/Rocksmith2014.exe": + - arguments: "-uplay_steam_mode" when: - os: windows store: steam @@ -441905,7 +443124,7 @@ Rocwood Academy: installDir: RocwoodAcademy: {} launch: - /Rocwood.exe: + "/Rocwood.exe": - when: - os: windows store: steam @@ -441915,15 +443134,15 @@ Rodent Warriors: installDir: Rodent Warriors: {} launch: - /RodentWarriors.exe: + "/RodentWarriors.exe": - when: - os: windows store: steam steam: id: 1013600 -Rodent's Revenge: +"Rodent's Revenge": files: - /entpack.ini: + "/entpack.ini": tags: - config when: @@ -441933,12 +443152,12 @@ Rodentwars!: id: 804330 Rodina: files: - /UserData/*.egs: + "/UserData/*.egs": tags: - save when: - os: windows - /UserData/Profile-*.lua: + "/UserData/Profile-*.lua": tags: - config when: @@ -441946,7 +443165,7 @@ Rodina: installDir: Rodina: {} launch: - /Rodina_Steam.exe: + "/Rodina_Steam.exe": - when: - os: windows store: steam @@ -441956,15 +443175,15 @@ Rogalia: installDir: Rogalia: {} launch: - /rogalia: + "/rogalia": - when: - os: linux store: steam - /rogalia.app/Contents/MacOS/nwjs: + "/rogalia.app/Contents/MacOS/nwjs": - when: - os: mac store: steam - /rogalia.exe: + "/rogalia.exe": - when: - os: windows store: steam @@ -441973,7 +443192,7 @@ Rogalia: Rogalik: steam: id: 843570 -'Rogan: The Thief in the Castle': +"Rogan: The Thief in the Castle": installDir: ROGAN: {} steam: @@ -441982,8 +443201,8 @@ Rogue: installDir: Rogue: {} launch: - /DOSBox.exe: - - arguments: '-conf rogue.conf -noconsole' + "/DOSBox.exe": + - arguments: "-conf rogue.conf -noconsole" when: - os: windows store: steam @@ -441993,7 +443212,7 @@ Rogue (2019): installDir: Rogue: {} launch: - /Rogue.exe: + "/Rogue.exe": - when: - bit: 64 os: windows @@ -442004,7 +443223,7 @@ Rogue Agent: installDir: Rogue Agent: {} launch: - /RogueAgent.exe: + "/RogueAgent.exe": - when: - os: windows store: steam @@ -442014,7 +443233,7 @@ Rogue Along Way: installDir: RogueAlongWay: {} launch: - /RogueAlongWay.exe: + "/RogueAlongWay.exe": - when: - bit: 64 os: windows @@ -442023,12 +443242,12 @@ Rogue Along Way: id: 905440 Rogue Bit: files: - /Bigosaur/RogueBit/savegame.storage: + "/Bigosaur/RogueBit/savegame.storage": tags: - save when: - os: windows - /Bigosaur/RogueBit/settings.storage: + "/Bigosaur/RogueBit/settings.storage": tags: - config when: @@ -442036,15 +443255,15 @@ Rogue Bit: installDir: Rogue Bit: {} launch: - /RogueBit.app/Contents/MacOS/game: + "/RogueBit.app/Contents/MacOS/game": - when: - os: mac store: steam - /game.exe: + "/game.exe": - when: - os: windows store: steam - /game.i386: + "/game.i386": - when: - os: linux store: steam @@ -442054,7 +443273,7 @@ Rogue Buddies - Aztek Gold: installDir: Rogue Buddies - Aztek Gold: {} launch: - /roguebuddies.exe: + "/roguebuddies.exe": - when: - bit: 64 os: windows @@ -442063,7 +443282,7 @@ Rogue Buddies - Aztek Gold: id: 753570 Rogue Company: files: - /RogueCompany/Saved/Config/WindowsNoEditor: + "/RogueCompany/Saved/Config/WindowsNoEditor": tags: - config when: @@ -442071,8 +443290,8 @@ Rogue Company: installDir: Rogue Company: {} launch: - /RogueCompany.exe: - - arguments: '-oss=steam -hirezenv=RETAIL -homedir=RogueCompany' + "/RogueCompany.exe": + - arguments: "-oss=steam -hirezenv=RETAIL -homedir=RogueCompany" when: - bit: 64 os: windows @@ -442083,31 +443302,31 @@ Rogue Continuum: installDir: SpaceSluggers: {} launch: - /RogueContinuum.app: + "/RogueContinuum.app": - when: - os: mac store: steam - /RogueContinuum.exe: + "/RogueContinuum.exe": - when: - os: windows store: steam - /RogueContinuum.x86: + "/RogueContinuum.x86": - when: - bit: 32 os: linux store: steam - /RogueContinuum.x86_64: + "/RogueContinuum.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 357700 -'Rogue Contracts: Syndicate': +"Rogue Contracts: Syndicate": installDir: Rogue Contracts Syndicate: {} launch: - /RC Syndicate.exe: + "/RC Syndicate.exe": - when: - os: windows store: steam @@ -442117,21 +443336,21 @@ Rogue Empire: installDir: Rogue Empire: {} launch: - /Mac.app: + "/Mac.app": - when: - os: mac store: steam - /RE.x86: + "/RE.x86": - when: - bit: 32 os: linux store: steam - /RE.x86_64: + "/RE.x86_64": - when: - bit: 64 os: linux store: steam - /Rogue Empire.exe: + "/Rogue Empire.exe": - when: - os: windows store: steam @@ -442141,11 +443360,11 @@ Rogue Fable III: installDir: Rogue Fable III: {} launch: - /Rogue-Fable-III.app: + "/Rogue-Fable-III.app": - when: - os: mac store: steam - /RogueFableIII.exe: + "/RogueFableIII.exe": - when: - os: windows store: steam @@ -442160,11 +443379,11 @@ Rogue Glitch Ultra: installDir: RogueGlitch: {} launch: - /Mac.app: + "/Mac.app": - when: - os: mac store: steam - /RogueGlitch.exe: + "/RogueGlitch.exe": - when: - os: windows store: steam @@ -442174,7 +443393,7 @@ Rogue Harvest: installDir: Rogue Harvest: {} launch: - /Rogue Harvest.exe: + "/Rogue Harvest.exe": - when: - os: windows store: steam @@ -442182,17 +443401,17 @@ Rogue Harvest: id: 409490 Rogue Heist: files: - /RogueHeist/Saved/Config/WindowsNoEditor: + "/RogueHeist/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /RogueHeist/Saved/SaveGames/GameSettingsVr02.sav: + "/RogueHeist/Saved/SaveGames/GameSettingsVr02.sav": tags: - config when: - os: windows - /RogueHeist/Saved/SaveGames/SaveGame.sav: + "/RogueHeist/Saved/SaveGames/SaveGame.sav": tags: - save when: @@ -442200,7 +443419,7 @@ Rogue Heist: installDir: Rogue Heist: {} launch: - /RogueHeist.exe: + "/RogueHeist.exe": - when: - os: windows store: steam @@ -442210,19 +443429,19 @@ Rogue Hero: installDir: Rogue Heroes: {} launch: - /Rogue Heroes.exe: + "/Rogue Heroes.exe": - when: - store: steam steam: id: 787810 -'Rogue Heroes: Ruins of Tasos': +"Rogue Heroes: Ruins of Tasos": files: - /My Games/Rogue Heroes - Ruins of Tasos/Saves/Save*.xml: + "/My Games/Rogue Heroes - Ruins of Tasos/Saves/Save*.xml": tags: - save when: - os: windows - /My Games/Rogue Heroes - Ruins of Tasos/Saves/Settings.xml: + "/My Games/Rogue Heroes - Ruins of Tasos/Saves/Settings.xml": tags: - config when: @@ -442230,7 +443449,7 @@ Rogue Hero: installDir: Rogue Heroes: {} launch: - /Rogue Heroes.exe: + "/Rogue Heroes.exe": - when: - store: steam steam: @@ -442239,11 +443458,11 @@ Rogue Invader: installDir: Rogue Invader: {} launch: - /Rogue Invader.app: + "/Rogue Invader.app": - when: - os: mac store: steam - /Rogue Invader.exe: + "/Rogue Invader.exe": - when: - os: windows store: steam @@ -442253,7 +443472,7 @@ Rogue Islands: installDir: Rogue Islands: {} launch: - /RogueIslands.exe: + "/RogueIslands.exe": - when: - bit: 64 os: windows @@ -442262,28 +443481,28 @@ Rogue Islands: id: 501950 Rogue Legacy: files: - /Library/Application Support/RogueLegacy: + "/Library/Application Support/RogueLegacy": tags: - config - save when: - os: mac - /Rogue Legacy: + "/Rogue Legacy": tags: - config when: - os: windows - /SavedGames/RogueLegacy: + "/SavedGames/RogueLegacy": tags: - save when: - os: windows - /RogueLegacy: + "/RogueLegacy": tags: - config when: - os: linux - /RogueLegacy: + "/RogueLegacy": tags: - save when: @@ -442293,15 +443512,15 @@ Rogue Legacy: installDir: Rogue Legacy: {} launch: - /Rogue Legacy.app/Contents/MacOS/RogueLegacy: + "/Rogue Legacy.app/Contents/MacOS/RogueLegacy": - when: - os: mac store: steam - /RogueLegacy: + "/RogueLegacy": - when: - os: linux store: steam - /RogueLegacy.exe: + "/RogueLegacy.exe": - when: - os: windows store: steam @@ -442309,25 +443528,27 @@ Rogue Legacy: id: 241600 Rogue Legacy 2: files: - /AppData/LocalLow/Cellar Door Games/Rogue Legacy 2: + "/AppData/LocalLow/Cellar Door Games/Rogue Legacy 2": tags: - save when: - os: windows - /AppData/LocalLow/Cellar Door Games/Rogue Legacy 2/Saves/Steam/: + "/AppData/LocalLow/Cellar Door Games/Rogue Legacy 2/Saves/Steam/": tags: - save when: - - store: steam - /AppData/LocalLow/Cellar Door Games/Rogue Legacy 2/Saves/Steam/GameConfig.ini: + - os: windows + store: steam + "/AppData/LocalLow/Cellar Door Games/Rogue Legacy 2/Saves/Steam/GameConfig.ini": tags: - config when: - - store: steam + - os: windows + store: steam installDir: Rogue Legacy 2: {} launch: - /Rogue Legacy 2.exe: + "/Rogue Legacy 2.exe": - when: - os: windows store: steam @@ -442343,7 +443564,7 @@ Rogue Lords: installDir: RogueLords: {} launch: - /Rogue Lords.exe: + "/Rogue Lords.exe": - when: - store: steam steam: @@ -442352,7 +443573,7 @@ Rogue Operatives: installDir: Rogue Operatives: {} launch: - /Rogue_Operatives.exe: + "/Rogue_Operatives.exe": - when: - bit: 64 os: windows @@ -442363,7 +443584,7 @@ Rogue Party: installDir: Rogue Party: {} launch: - /Rogue_Party.exe: + "/Rogue_Party.exe": - when: - store: steam steam: @@ -442372,7 +443593,7 @@ Rogue Port - Blue Nightmare: installDir: Rogue Port - Blue Nightmare: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -442382,17 +443603,17 @@ Rogue Port - Red Nightmare: installDir: Rogue Port - Red Nightmare: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam steam: id: 467310 -'Rogue Quest: The Vault of the Lost Tyrant': +"Rogue Quest: The Vault of the Lost Tyrant": installDir: Rogue Quest - The Vault of the Lost Tyrant: {} launch: - /Rogue Quest - TVOTLT.exe: + "/Rogue Quest - TVOTLT.exe": - when: - os: windows store: steam @@ -442402,11 +443623,11 @@ Rogue Rails: installDir: Rogue Rails: {} launch: - /Rogue Rails.exe: + "/Rogue Rails.exe": - when: - os: windows store: steam - /RogueRails.x86: + "/RogueRails.x86": - when: - os: linux store: steam @@ -442416,7 +443637,7 @@ Rogue Reaper: installDir: Rogue Reaper: {} launch: - /RogueReaper.exe: + "/RogueReaper.exe": - when: - os: windows store: steam @@ -442426,11 +443647,11 @@ Rogue Rocks: installDir: Rogue Rocks: {} launch: - /roguerocks.exe: + "/roguerocks.exe": - when: - os: windows store: steam - /roguerocks.x86_64: + "/roguerocks.x86_64": - when: - bit: 64 os: linux @@ -442443,18 +443664,18 @@ Rogue Shift: installDir: rougeshift: {} launch: - /Rogue Shift.exe: + "/Rogue Shift.exe": - when: - bit: 64 os: windows store: steam steam: id: 611190 -'Rogue Shooter: The FPS Roguelike': +"Rogue Shooter: The FPS Roguelike": installDir: Rogue Shooter: {} launch: - /RogueShooter.exe: + "/RogueShooter.exe": - when: - os: windows store: steam @@ -442464,15 +443685,15 @@ Rogue Singularity: installDir: Rogue Singularity: {} launch: - /RogueSingularity.app/Contents/MacOS/RogueSingularity: + "/RogueSingularity.app/Contents/MacOS/RogueSingularity": - when: - os: mac store: steam - /RogueSingularity.exe: + "/RogueSingularity.exe": - when: - os: windows store: steam - /RogueSingularity.x86_64: + "/RogueSingularity.x86_64": - when: - os: linux store: steam @@ -442482,7 +443703,7 @@ Rogue Slash: installDir: Rogue Slash: {} launch: - /RogueSlash.exe: + "/RogueSlash.exe": - when: - bit: 64 os: windows @@ -442493,7 +443714,7 @@ Rogue Stache: installDir: Rogue Stache: {} launch: - /RogueStache.exe: + "/RogueStache.exe": - when: - os: windows store: steam @@ -442503,16 +443724,16 @@ Rogue Star Rescue: installDir: Rogue Star Rescue: {} launch: - /Rogue Star Rescue: + "/Rogue Star Rescue": - when: - bit: 64 os: linux store: steam - /Rogue Star Rescue.app: + "/Rogue Star Rescue.app": - when: - os: mac store: steam - /Rogue Star Rescue.exe: + "/Rogue Star Rescue.exe": - when: - os: windows store: steam @@ -442520,7 +443741,7 @@ Rogue Star Rescue: id: 1023550 Rogue State: files: - /Saved Games/Rogue State: + "/Saved Games/Rogue State": tags: - config - save @@ -442529,11 +443750,11 @@ Rogue State: installDir: Rogue State: {} launch: - /RogueState.exe: + "/RogueState.exe": - when: - os: windows store: steam - /ags32: + "/ags32": - arguments: RogueState.ags when: - bit: 32 @@ -442544,7 +443765,7 @@ Rogue State: - bit: 32 os: linux store: steam - /ags64: + "/ags64": - arguments: RogueState.ags when: - bit: 64 @@ -442555,7 +443776,7 @@ Rogue State: - bit: 64 os: linux store: steam - /winsetup.exe: + "/winsetup.exe": - when: - os: windows store: steam @@ -442565,16 +443786,16 @@ Rogue State Revolution: installDir: Rogue State Revolution: {} launch: - /RogueStateRevolution.exe: + "/RogueStateRevolution.exe": - when: - os: windows store: steam - /RogueStateRevolution.x86: + "/RogueStateRevolution.x86": - when: - bit: 32 os: linux store: steam - /RogueStateRevolution.x86_64: + "/RogueStateRevolution.x86_64": - when: - bit: 64 os: linux @@ -442585,11 +443806,11 @@ Rogue Stormers: installDir: RogueStormers: {} launch: - /bin/RogueStormers.sh: + "/bin/RogueStormers.sh": - when: - os: linux store: steam - /roguestormers.exe: + "/roguestormers.exe": - when: - os: windows store: steam @@ -442599,7 +443820,7 @@ Rogue System: installDir: Rogue System: {} launch: - /RogueSystemSim.exe: + "/RogueSystemSim.exe": - when: - os: windows store: steam @@ -442607,7 +443828,7 @@ Rogue System: id: 366000 Rogue Trooper: files: - /Rogue Trooper: + "/Rogue Trooper": tags: - config - save @@ -442618,20 +443839,21 @@ Rogue Trooper: installDir: Rogue Trooper: {} launch: - /RogueTrooper.exe: + "/RogueTrooper.exe": - when: - store: steam steam: id: 7020 Rogue Trooper Redux: files: - /Rogue Trooper Redux: + "/Rogue Trooper Redux": tags: - config - save when: - - store: steam - /Rogue Trooper Redux GOG: + - os: windows + store: steam + "/Rogue Trooper Redux GOG": tags: - config - save @@ -442641,30 +443863,30 @@ Rogue Trooper Redux: id: 2076502816 id: gogExtra: - - 1639809483 - 1360356045 + - 1639809483 - 2076502816 steamExtra: - 710410 installDir: Rogue Trooper Redux: {} launch: - /Launcher/RTRLauncher_Steam.exe: + "/Launcher/RTRLauncher_Steam.exe": - when: - bit: 64 os: windows store: steam - workingDir: /Launcher + workingDir: "/Launcher" steam: id: 529490 Rogue Warrior: files: - /My Games/Bethesda/Rogue Warrior: + "/My Games/Bethesda/Rogue Warrior": tags: - config when: - os: windows - /My Games/Bethesda/Rogue Warrior/Saves: + "/My Games/Bethesda/Rogue Warrior/Saves": tags: - save when: @@ -442672,7 +443894,7 @@ Rogue Warrior: installDir: Rogue Warrior: {} launch: - /RW.exe: + "/RW.exe": - when: - store: steam steam: @@ -442681,7 +443903,7 @@ Rogue Waves: installDir: Rogue Waves: {} launch: - /Rogue Waves.exe: + "/Rogue Waves.exe": - when: - os: windows store: steam @@ -442689,12 +443911,12 @@ Rogue Waves: id: 1147240 Rogue Wizards: files: - /AppData/LocalLow/Spellbind Studios/Rogue Wizards/Save: + "/AppData/LocalLow/Spellbind Studios/Rogue Wizards/Save": tags: - save when: - os: windows - /Library/Application Support/Spellbind Studios/Rogue Wizards/Save: + "/Library/Application Support/Spellbind Studios/Rogue Wizards/Save": tags: - save when: @@ -442704,11 +443926,11 @@ Rogue Wizards: installDir: Rogue Wizards: {} launch: - /Rogue Wizards.app: + "/Rogue Wizards.app": - when: - os: mac store: steam - /Rogue Wizards.exe: + "/Rogue Wizards.exe": - when: - os: windows store: steam @@ -442720,38 +443942,38 @@ Rogue Zillion: Rogue in the Void: steam: id: 1029960 -Rogue'n Roll: +"Rogue'n Roll": installDir: - Rogue'n Roll: {} + "Rogue'n Roll": {} launch: - /Rogue'n Roll.exe: + "/Rogue'n Roll.exe": - when: - os: windows store: steam steam: id: 600310 -Rogue's Tale: +"Rogue's Tale": installDir: - Rogue's Tale: {} + "Rogue's Tale": {} launch: - /Launcher.exe: - - arguments: '-windows' + "/Launcher.exe": + - arguments: "-windows" when: - os: windows store: steam - /launcher: + "/launcher": - when: - os: linux store: steam - /launcher.app: + "/launcher.app": - when: - os: mac store: steam steam: id: 265990 -'Rogue: Genesia': +"Rogue: Genesia": files: - /AppData/LocalLow/HuardOuadi/Rogue Genesia/Profile: + "/AppData/LocalLow/HuardOuadi/Rogue Genesia/Profile": tags: - save when: @@ -442759,7 +443981,7 @@ Rogue's Tale: installDir: Rogue Genesia: {} launch: - /Rogue Genesia.x86_64: + "/Rogue Genesia.x86_64": - when: - os: linux store: steam @@ -442769,18 +443991,21 @@ RogueCraft Squadron: installDir: RogueCraft Squadron: {} launch: - /RogueCraftSquadron: + "/RogueCraftSquadron": - when: - bit: 64 os: linux store: steam - /RogueCraftSquadron.app/Contents/MacOS/love: + "/RogueCraftSquadron.app/Contents/MacOS/love": - arguments: RogueCraftSquadron.app/Contents/Resources/RogueCraftSquadron.love when: - os: mac store: steam - /RogueCraftSquadron.exe: + "/RogueCraftSquadron.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam @@ -442790,7 +444015,7 @@ RogueLite: installDir: Roguelite: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: @@ -442799,7 +444024,7 @@ RogueVerse: installDir: RogueVerseDungeon: {} launch: - /RogueVerseDungeon.exe: + "/RogueVerseDungeon.exe": - when: - os: windows store: steam @@ -442807,7 +444032,7 @@ RogueVerse: id: 788000 Roguebook: files: - /AppData/LocalLow/Abrakam Entertainment SA/Roguebook/Saves: + "/AppData/LocalLow/Abrakam Entertainment SA/Roguebook/Saves": tags: - save when: @@ -442825,16 +444050,16 @@ Roguebook: installDir: Roguebook: {} launch: - /Roguebook: + "/Roguebook": - when: - bit: 64 os: linux store: steam - /Roguebook.app/Contents/MacOS/Roguebook: + "/Roguebook.app/Contents/MacOS/Roguebook": - when: - os: mac store: steam - /Roguebook.exe: + "/Roguebook.exe": - when: - os: windows store: steam @@ -442844,7 +444069,7 @@ Roguebreaker: installDir: Roguebreaker: {} launch: - /roguebreaker_proj.exe: + "/roguebreaker_proj.exe": - when: - os: windows store: steam @@ -442852,17 +444077,17 @@ Roguebreaker: id: 731420 Roguelands: files: - /AppData/LocalLow/DefaultCompany/Roguelands/PlayerPrefs.txt: + "/AppData/LocalLow/DefaultCompany/Roguelands/PlayerPrefs.txt": tags: - save when: - os: windows - /unity3d/DefaultCompany/Roguelands/PlayerPrefs.txt: + "/unity3d/DefaultCompany/Roguelands/PlayerPrefs.txt": tags: - save when: - os: linux - /unity3d/DefaultCompany/Roguelands/prefs.txt: + "/unity3d/DefaultCompany/Roguelands/prefs.txt": tags: - config when: @@ -442870,20 +444095,20 @@ Roguelands: installDir: Roguelands: {} launch: - /Roguelands.app/Contents/MacOS/Roguelands: + "/Roguelands.app/Contents/MacOS/Roguelands": - when: - os: mac store: steam - workingDir: /Roguelands.app/Contents/MacOS - /Roguelands.exe: + workingDir: "/Roguelands.app/Contents/MacOS" + "/Roguelands.exe": - when: - os: windows store: steam - /Roguelands.x86: + "/Roguelands.x86": - when: - os: linux store: steam - /Roguelands.x86_64: + "/Roguelands.x86_64": - when: - os: linux store: steam @@ -442896,15 +444121,15 @@ Roguemance: installDir: Roguemance: {} launch: - /nw: + "/nw": - when: - os: linux store: steam - /nw.exe: + "/nw.exe": - when: - os: windows store: steam - /roguemance(iloveyou).app/Contents/MacOS/nwjs: + "/roguemance(iloveyou).app/Contents/MacOS/nwjs": - when: - os: mac store: steam @@ -442914,11 +444139,11 @@ Rogues Like Us: installDir: Rogues Like Us: {} launch: - /RoguesLikeUs.app: + "/RoguesLikeUs.app": - when: - os: mac store: steam - /RoguesLikeUs.exe: + "/RoguesLikeUs.exe": - when: - os: windows store: steam @@ -442928,7 +444153,7 @@ Rogues or Heroes: installDir: Rogues or Heroes: {} launch: - /R_O_H.exe: + "/R_O_H.exe": - when: - os: windows store: steam @@ -442938,7 +444163,7 @@ Roidrekt: installDir: Roidrekt: {} launch: - /Roidrekt.exe: + "/Roidrekt.exe": - when: - os: windows store: steam @@ -442948,11 +444173,11 @@ Roll Control: installDir: Roll Control: {} launch: - /Roll Control Dungeon Update.exe: + "/Roll Control Dungeon Update.exe": - when: - os: windows store: steam - /Roll Control Mac.app/Contents/MacOS/Roll Control Mac: + "/Roll Control Mac.app/Contents/MacOS/Roll Control Mac": - when: - os: mac store: steam @@ -442962,26 +444187,26 @@ Roll Out: installDir: Roll Out: {} launch: - /RollOutLauncher.exe: + "/RollOutLauncher.exe": - when: - bit: 64 os: windows store: steam steam: id: 661650 -Roll'd: +"Roll'd": installDir: Rolld: {} launch: - /Rolld.app: + "/Rolld.app": - when: - os: mac store: steam - /Rolld.exe: + "/Rolld.exe": - when: - os: windows store: steam - /Rolld.x86: + "/Rolld.x86": - when: - os: linux store: steam @@ -442991,8 +444216,8 @@ Roll+Heart: installDir: Roll+Heart: {} launch: - /Roll+Heart.exe: - - arguments: '-steam' + "/Roll+Heart.exe": + - arguments: "-steam" when: - os: windows store: steam @@ -443002,7 +444227,7 @@ RollTheEarth: installDir: RollTheEarth: {} launch: - /RolltheEarth.exe: + "/RolltheEarth.exe": - when: - os: windows store: steam @@ -443017,12 +444242,12 @@ Rolled Out!: installDir: rolledout: {} launch: - /RolledOut.exe: + "/RolledOut.exe": - when: - bit: 64 os: windows store: steam - /RolledOut.sh: + "/RolledOut.sh": - when: - bit: 64 os: linux @@ -443033,7 +444258,7 @@ Roller: installDir: Roller: {} launch: - /Roller.exe: + "/Roller.exe": - when: - os: windows store: steam @@ -443043,8 +444268,8 @@ Roller Champions: installDir: RollerChampions: {} launch: - /Roller.exe: - - arguments: '-upc_steam_free_package_id 62329 -uplay_steam_mode ' + "/Roller.exe": + - arguments: "-upc_steam_free_package_id 62329 -uplay_steam_mode " when: - store: steam registry: @@ -443067,8 +444292,8 @@ Roller Coaster Rampage: installDir: RollerCoasterRampage: {} launch: - /rcr.exe: - - arguments: '' + "/rcr.exe": + - arguments: "" when: - store: steam steam: @@ -443078,14 +444303,14 @@ RollerCoaster Legends: RollerCoaster Legends: {} steam: id: 756040 -'RollerCoaster Legends II: Thor''s Hammer': +"RollerCoaster Legends II: Thor's Hammer": installDir: - RollerCoaster Legends 2 Thor's Hammer: {} + "RollerCoaster Legends 2 Thor's Hammer": {} steam: id: 854690 RollerCoaster Tycoon: files: - /Saved Games: + "/Saved Games": tags: - save when: @@ -443095,19 +444320,19 @@ RollerCoaster Tycoon: installDir: RollerCoaster Tycoon Deluxe: {} launch: - /rct.exe: + "/rct.exe": - when: - store: steam steam: id: 285310 RollerCoaster Tycoon 2: files: - /Data: + "/Data": tags: - config when: - os: windows - /Saved Games: + "/Saved Games": tags: - save when: @@ -443117,34 +444342,34 @@ RollerCoaster Tycoon 2: installDir: Rollercoaster Tycoon 2: {} launch: - /rct2.exe: + "/rct2.exe": - when: - store: steam steam: id: 285330 RollerCoaster Tycoon 3: files: - /Library/Containers/com.aspyr.rct3.appstore/Data/Library/Application Support/RollerCoaster Tycoon 3 Platinum: + "/Library/Containers/com.aspyr.rct3.appstore/Data/Library/Application Support/RollerCoaster Tycoon 3 Platinum": tags: - save when: - os: mac - /Library/Containers/com.aspyr.rct3.appstore/Data/Library/Application Support/RollerCoaster Tycoon 3 Platinum/AppData: + "/Library/Containers/com.aspyr.rct3.appstore/Data/Library/Application Support/RollerCoaster Tycoon 3 Platinum/AppData": tags: - config when: - os: mac - /Atari/RCT3: + "/Atari/RCT3": tags: - config when: - os: windows - /Frontier/RCT3: + "/Frontier/RCT3": tags: - config when: - os: windows - /RCT3: + "/RCT3": tags: - save when: @@ -443154,24 +444379,24 @@ RollerCoaster Tycoon 3: installDir: RollerCoaster Tycoon 3 Complete Edition: {} launch: - /RCT3.exe: + "/RCT3.exe": - when: - os: windows store: steam - /RollerCoaster Tycoon 3 Platinum.app: + "/RollerCoaster Tycoon 3 Platinum.app": - when: - os: mac store: steam steam: id: 1368820 -'RollerCoaster Tycoon 3: Complete Edition': +"RollerCoaster Tycoon 3: Complete Edition": files: - /Frontier/RCT3: + "/Frontier/RCT3": tags: - config when: - os: windows - /RCT3: + "/RCT3": tags: - save when: @@ -443179,11 +444404,11 @@ RollerCoaster Tycoon 3: installDir: RollerCoaster Tycoon 3 Complete Edition: {} launch: - /RCT3.exe: + "/RCT3.exe": - when: - os: windows store: steam - /RollerCoaster Tycoon 3 Platinum.app: + "/RollerCoaster Tycoon 3 Platinum.app": - when: - os: mac store: steam @@ -443191,13 +444416,13 @@ RollerCoaster Tycoon 3: id: 1368820 RollerCoaster Tycoon Classic: files: - /Library/Application Support/com.Atari.RCT-Classic: + "/Library/Application Support/com.Atari.RCT-Classic": tags: - config - save when: - os: mac - /Atari/Rollercoaster Tycoon Classic: + "/Atari/Rollercoaster Tycoon Classic": tags: - config - save @@ -443208,11 +444433,11 @@ RollerCoaster Tycoon Classic: installDir: RollerCoaster Tycoon Classic: {} launch: - /RCT Classic.app: + "/RCT Classic.app": - when: - os: mac store: steam - /RCTClassic.exe: + "/RCTClassic.exe": - when: - os: windows store: steam @@ -443220,7 +444445,7 @@ RollerCoaster Tycoon Classic: id: 683900 RollerCoaster Tycoon World: files: - /AppData/LocalLow/Nvizzio Creations: + "/AppData/LocalLow/Nvizzio Creations": tags: - save when: @@ -443228,7 +444453,7 @@ RollerCoaster Tycoon World: installDir: RollerCoaster Tycoon World: {} launch: - /RollerCoaster Tycoon World.exe: + "/RollerCoaster Tycoon World.exe": - when: - bit: 64 os: windows @@ -443257,7 +444482,7 @@ Rollercoaster Xperience: id: 679620 Rollerdrome: files: - /AppData/LocalLow/Roll7/ROLLERDROME: + "/AppData/LocalLow/Roll7/ROLLERDROME": tags: - save when: @@ -443265,7 +444490,7 @@ Rollerdrome: installDir: ROLLERDROME: {} launch: - /ROLLERDROME.exe: + "/ROLLERDROME.exe": - when: - bit: 64 os: windows @@ -443276,7 +444501,7 @@ Rollers: installDir: Rollers: {} launch: - /rollers.exe: + "/rollers.exe": - when: - bit: 64 os: windows @@ -443285,7 +444510,7 @@ Rollers: id: 1179010 Rollers of the Realm: files: - /userdata//262470/remote: + "/userdata//262470/remote": tags: - save when: @@ -443293,7 +444518,7 @@ Rollers of the Realm: installDir: RollersOfTheRealm: {} launch: - /rollers.exe: + "/rollers.exe": - when: - bit: 32 os: windows @@ -443304,12 +444529,12 @@ Rollers of the Realm: - config steam: id: 262470 -'Rollers of the Realm: Reunion': +"Rollers of the Realm: Reunion": steam: id: 1628120 Rolling Bird: files: - /thunder_projet/optiondata.sav: + "/thunder_projet/optiondata.sav": tags: - config when: @@ -443317,7 +444542,7 @@ Rolling Bird: installDir: Rolling Bird: {} launch: - /Rolling_Bird.exe: + "/Rolling_Bird.exe": - when: - os: windows store: steam @@ -443327,7 +444552,7 @@ Rolling Gauntlet: installDir: Rolling Gauntlet: {} launch: - /RollerDerby.exe: + "/RollerDerby.exe": - when: - os: windows store: steam @@ -443337,8 +444562,8 @@ Rolling Line: installDir: Rolling Line: {} launch: - /RollingLine.exe: - - arguments: '-playpc' + "/RollingLine.exe": + - arguments: "-playpc" when: - os: windows store: steam @@ -443348,7 +444573,7 @@ Rolling Rumble: installDir: Rolling Rumble: {} launch: - /Rolling Rumble.exe: + "/Rolling Rumble.exe": - when: - bit: 64 os: windows @@ -443359,7 +444584,7 @@ Rolling Shapes: installDir: Rolling Shapes: {} launch: - /Rolling Shapes.exe: + "/Rolling Shapes.exe": - when: - os: windows store: steam @@ -443367,12 +444592,12 @@ Rolling Shapes: id: 371280 Rolling Sun: files: - /USER/SaveGames: + "/USER/SaveGames": tags: - save when: - os: windows - /system.cfg: + "/system.cfg": tags: - config when: @@ -443380,41 +444605,41 @@ Rolling Sun: installDir: Rolling Sun: {} launch: - /Bin32/RollingSun.exe: + "/Bin32/RollingSun.exe": - when: - bit: 32 os: windows store: steam - workingDir: /Bin32 - /Bin64/RollingSun.exe: + workingDir: "/Bin32" + "/Bin64/RollingSun.exe": - when: - bit: 64 os: windows store: steam - workingDir: /Bin64 + workingDir: "/Bin64" steam: id: 371670 Rolling in the Reef: installDir: Rolling in the Reef: {} launch: - /rolling.app/Contents/MacOS/rolling.app: - - arguments: '-force-opengl -show-screen-selector' + "/rolling.app/Contents/MacOS/rolling.app": + - arguments: "-force-opengl -show-screen-selector" when: - os: mac store: steam - /rolling.exe: + "/rolling.exe": - when: - os: windows store: steam - /rolling.x86: - - arguments: '-force-opengl -show-screen-selector' + "/rolling.x86": + - arguments: "-force-opengl -show-screen-selector" when: - bit: 32 os: linux store: steam - /rolling.x86_64: - - arguments: '-force-opengl -show-screen-selector' + "/rolling.x86_64": + - arguments: "-force-opengl -show-screen-selector" when: - bit: 64 os: linux @@ -443425,17 +444650,17 @@ RollingBall: installDir: RollingBall: {} launch: - /RollingBall.exe: + "/RollingBall.exe": - when: - os: windows store: steam steam: id: 806240 -'RollingBall: Unlimited World': +"RollingBall: Unlimited World": installDir: RollingBall Unlimited World: {} launch: - /RollingBall_UW.exe: + "/RollingBall_UW.exe": - when: - os: windows store: steam @@ -443445,7 +444670,7 @@ RollingSky: installDir: Rolling Sky: {} launch: - /Rolling Sky.exe: + "/Rolling Sky.exe": - when: - os: windows store: steam @@ -443455,7 +444680,7 @@ RollingSky2: installDir: RollingSky2: {} launch: - /RollingSky2.exe: + "/RollingSky2.exe": - when: - os: windows store: steam @@ -443465,7 +444690,7 @@ Rollman: installDir: Rollman: {} launch: - /Rollman.exe: + "/Rollman.exe": - when: - os: windows store: steam @@ -443475,7 +444700,7 @@ Rollossus: installDir: Rollossus: {} launch: - /Rollossus.exe: + "/Rollossus.exe": - when: - os: windows store: steam @@ -443485,42 +444710,42 @@ Rollout: installDir: Rollout: {} launch: - /Rollout.app: + "/Rollout.app": - when: - os: mac store: steam - /Rollout.exe: + "/Rollout.exe": - when: - os: windows store: steam steam: id: 509190 -Rolly's Adventure: +"Rolly's Adventure": installDir: - Rolly's Adventure: {} + "Rolly's Adventure": {} launch: - /Rollys Adventure.exe: + "/Rollys Adventure.exe": - when: - bit: 64 os: windows store: steam steam: id: 997310 -'Roman Adventures: Britons. Season 1': +"Roman Adventures: Britons. Season 1": installDir: Roman Adventures Season1: {} launch: - /Roman Adventures. Britons (Season 1).exe: + "/Roman Adventures. Britons (Season 1).exe": - when: - os: windows store: steam steam: id: 646680 -'Roman Adventures: Britons. Season 2': +"Roman Adventures: Britons. Season 2": installDir: Roman Adventures Season2: {} launch: - /Roman Adventures Season2.exe: + "/Roman Adventures Season2.exe": - when: - os: windows store: steam @@ -443544,20 +444769,20 @@ Roman The Worm: installDir: Roman The Worm: {} launch: - /romantheworm.exe: + "/romantheworm.exe": - when: - store: steam steam: id: 886950 -Roman's Christmas: +"Roman's Christmas": installDir: Romans Christmas: {} launch: - /Romans_Christmas.app: + "/Romans_Christmas.app": - when: - os: mac store: steam - /Romans_Christmas.exe: + "/Romans_Christmas.exe": - when: - os: windows store: steam @@ -443567,7 +444792,7 @@ Romance of Rome: installDir: Romance of Rome: {} launch: - /Romance of Rome.exe: + "/Romance of Rome.exe": - when: - store: steam steam: @@ -443576,7 +444801,7 @@ Romance of the Three Kingdoms: installDir: San1: {} launch: - /San1_Launcher.exe: + "/San1_Launcher.exe": - when: - os: windows store: steam @@ -443586,7 +444811,7 @@ Romance of the Three Kingdoms 12: installDir: San12WPK: {} launch: - /San12WPK_Launcher.exe: + "/San12WPK_Launcher.exe": - when: - os: windows store: steam @@ -443594,7 +444819,7 @@ Romance of the Three Kingdoms 12: id: 628080 Romance of the Three Kingdoms 13: files: - /KoeiTecmo/San13/EN_SAVEDATA: + "/KoeiTecmo/San13/EN_SAVEDATA": tags: - save when: @@ -443602,7 +444827,7 @@ Romance of the Three Kingdoms 13: installDir: Romance of the Three Kingdoms 13: {} launch: - /SAN13Launcher.exe: + "/SAN13Launcher.exe": - when: - store: steam registry: @@ -443615,27 +444840,27 @@ Romance of the Three Kingdoms II: installDir: San2: {} launch: - /San2_Launcher.exe: + "/San2_Launcher.exe": - when: - os: windows store: steam steam: id: 521690 -'Romance of the Three Kingdoms III: Dragon of Destiny': +"Romance of the Three Kingdoms III: Dragon of Destiny": installDir: San3: {} launch: - /San3_Launcher.exe: + "/San3_Launcher.exe": - when: - os: windows store: steam steam: id: 521710 -'Romance of the Three Kingdoms IV: Wall of Fire': +"Romance of the Three Kingdoms IV: Wall of Fire": installDir: San4WPK: {} launch: - /San4WPK_Launcher.exe: + "/San4WPK_Launcher.exe": - when: - os: windows store: steam @@ -443645,7 +444870,7 @@ Romance of the Three Kingdoms IX: installDir: San9WPK: {} launch: - /San9WPK_Launcher.exe: + "/San9WPK_Launcher.exe": - when: - os: windows store: steam @@ -443655,11 +444880,11 @@ Romance of the Three Kingdoms Maker: installDir: RTK Maker: {} launch: - /Launch.exe: + "/Launch.exe": - when: - os: windows store: steam - /Readme.txt: + "/Readme.txt": - when: - os: windows store: steam @@ -443669,7 +444894,7 @@ Romance of the Three Kingdoms V: installDir: San5WPK: {} launch: - /San5WPK_Launcher.exe: + "/San5WPK_Launcher.exe": - when: - os: windows store: steam @@ -443679,7 +444904,7 @@ Romance of the Three Kingdoms VI: installDir: San6WPK: {} launch: - /San6WPK_Launcher.exe: + "/San6WPK_Launcher.exe": - when: - os: windows store: steam @@ -443689,7 +444914,7 @@ Romance of the Three Kingdoms VII: installDir: San7WPK: {} launch: - /San7WPK_Launcher.exe: + "/San7WPK_Launcher.exe": - when: - os: windows store: steam @@ -443699,7 +444924,7 @@ Romance of the Three Kingdoms VIII: installDir: San8WPK: {} launch: - /San8WPK_Launcher.exe: + "/San8WPK_Launcher.exe": - when: - os: windows store: steam @@ -443709,7 +444934,7 @@ Romance of the Three Kingdoms X: installDir: San10WPK: {} launch: - /San10WPK_Launcher.exe: + "/San10WPK_Launcher.exe": - when: - os: windows store: steam @@ -443719,7 +444944,7 @@ Romance of the Three Kingdoms XI: installDir: San11WPK: {} launch: - /San11WPK_Launcher.exe: + "/San11WPK_Launcher.exe": - when: - os: windows store: steam @@ -443729,19 +444954,19 @@ Romance of the Three Kingdoms XIV: installDir: Romance_of_the_Three_Kingdoms_14: {} launch: - /SAN14_Launcher.exe: + "/SAN14_Launcher.exe": - when: - bit: 64 os: windows store: steam steam: id: 872410 -'Romance of the Three Kingdoms: The Legend of CaoCao - Tactics': +"Romance of the Three Kingdoms: The Legend of CaoCao - Tactics": installDir: Legend of CaoCao Tactics: {} launch: - /nxsteam/nxsteam.exe: - - arguments: 'ROTK.exe --nxapp=nxsteam --ticket={gameAuthTicket} --nx:title=\"Legend of CaoCao Tactics\"' + "/nxsteam/nxsteam.exe": + - arguments: "ROTK.exe --nxapp=nxsteam --ticket={gameAuthTicket} --nx:title=\\\"Legend of CaoCao Tactics\\\"" when: - store: steam steam: @@ -443750,11 +444975,11 @@ Romance with Chocolate - Hidden Object in Paris: installDir: Romance with Chocolate - Hidden Objects: {} launch: - /Romance with Chocolate x86.exe: + "/Romance with Chocolate x86.exe": - when: - os: windows store: steam - /Romance.app: + "/Romance.app": - when: - os: mac store: steam @@ -443764,7 +444989,7 @@ Romancing Monarchy: installDir: Romancing Monarchy: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: @@ -443773,8 +444998,8 @@ Romancing SaGa 2: installDir: RomancingSaGa2: {} launch: - /rs2.exe: - - arguments: '-windowed' + "/rs2.exe": + - arguments: "-windowed" when: - bit: 64 os: windows @@ -443785,21 +445010,21 @@ Romancing SaGa 3: installDir: RomancingSaGa3: {} launch: - /rs3.exe: + "/rs3.exe": - when: - bit: 64 os: windows store: steam steam: id: 952540 -'Romancing SaGa: Minstrel Song Remastered': +"Romancing SaGa: Minstrel Song Remastered": files: - /Documents/My Games/Romancing SaGa -Minstrel Song- Remastered/Steam//SaveData/AppSetting.bin: + "/Documents/My Games/Romancing SaGa -Minstrel Song- Remastered/Steam//SaveData/AppSetting.bin": tags: - config when: - os: windows - /Documents/My Games/Romancing SaGa -Minstrel Song- Remastered/Steam//SaveData/SaveData.bin: + "/Documents/My Games/Romancing SaGa -Minstrel Song- Remastered/Steam//SaveData/SaveData.bin": tags: - save when: @@ -443807,7 +445032,7 @@ Romancing SaGa 3: installDir: Romancing SaGa -Minstrel Song- Remastered: {} launch: - /Romancing SaGa -Minstrel Song- Remastered.exe: + "/Romancing SaGa -Minstrel Song- Remastered.exe": - when: - bit: 64 os: windows @@ -443822,7 +445047,7 @@ Romans from Mars: installDir: Romans From Mars: {} launch: - /RomansFromMars.exe: + "/RomansFromMars.exe": - when: - store: steam steam: @@ -443831,12 +445056,12 @@ Romans from Mars 360: installDir: Romans From Mars VR: {} launch: - /RomansVR.exe: + "/RomansVR.exe": - when: - store: steam steam: id: 719240 -'Romans: Age of Caesar': +"Romans: Age of Caesar": installDir: RomansAOC: {} steam: @@ -443845,7 +445070,7 @@ Romantic Journey: installDir: RomanticJourney: {} launch: - /RomanticJourney.exe: + "/RomanticJourney.exe": - when: - store: steam steam: @@ -443854,24 +445079,24 @@ Rombie: installDir: ROMBIE: {} launch: - /ROMBIE.app: - - arguments: '-show-screen-selector' + "/ROMBIE.app": + - arguments: "-show-screen-selector" when: - os: mac store: steam - /ROMBIE.exe: - - arguments: '-show-screen-selector -vrmode none' + "/ROMBIE.exe": + - arguments: "-show-screen-selector -vrmode none" when: - os: windows store: steam - /ROMBIE.x86: - - arguments: '-show-screen-selector' + "/ROMBIE.x86": + - arguments: "-show-screen-selector" when: - bit: 32 os: linux store: steam - /ROMBIE.x86_64: - - arguments: '-show-screen-selector' + "/ROMBIE.x86_64": + - arguments: "-show-screen-selector" when: - bit: 64 os: linux @@ -443882,25 +445107,25 @@ Romby: installDir: ROMBY: {} launch: - /ROMBY.exe: + "/ROMBY.exe": - when: - os: windows store: steam steam: id: 656210 -'Rome Circus Maximus: Chariot Race VR': +"Rome Circus Maximus: Chariot Race VR": installDir: Rome Circus Maximus Chariot Race VR: {} steam: id: 657780 -'Rome: Total War': +"Rome: Total War": files: - /preferences/preferences.txt: + "/preferences/preferences.txt": tags: - config when: - os: windows - /saves: + "/saves": tags: - save when: @@ -443908,20 +445133,20 @@ Romby: installDir: Rome Total War Gold: {} launch: - /RomeTW-BI.exe: + "/RomeTW-BI.exe": - when: - store: steam - /RomeTW.exe: + "/RomeTW.exe": - when: - store: steam steam: id: 4760 -Romero's Aftermath: +"Romero's Aftermath": installDir: Aftermath: {} launch: - /AMLauncher.exe: - - arguments: '-steam' + "/AMLauncher.exe": + - arguments: "-steam" when: - store: steam steam: @@ -443930,7 +445155,7 @@ Romguns: installDir: Romguns: {} launch: - /ROMGUNS.exe: + "/ROMGUNS.exe": - when: - store: steam steam: @@ -443939,20 +445164,20 @@ Romopolis: installDir: Romopolis: {} launch: - /Romopolis: + "/Romopolis": - when: - os: linux store: steam - /Romopolis 32bit.exe: + "/Romopolis 32bit.exe": - when: - bit: 32 os: windows store: steam - /Romopolis.app: + "/Romopolis.app": - when: - os: mac store: steam - /Romopolis.exe: + "/Romopolis.exe": - when: - bit: 64 os: windows @@ -443961,13 +445186,13 @@ Romopolis: id: 471170 Ronin: files: - /.config/Ronin: + "/.config/Ronin": tags: - config - save when: - os: linux - /Ronin: + "/Ronin": tags: - config - save @@ -443978,15 +445203,15 @@ Ronin: installDir: RONIN: {} launch: - /RONIN.app: + "/RONIN.app": - when: - os: mac store: steam - /Ronin.exe: + "/Ronin.exe": - when: - os: windows store: steam - /run.sh: + "/run.sh": - when: - os: linux store: steam @@ -444004,7 +445229,7 @@ Roof Rage: installDir: Roof Rage: {} launch: - /RoofRage.exe: + "/RoofRage.exe": - when: - os: windows store: steam @@ -444014,11 +445239,11 @@ Roofbot: installDir: Roofbot: {} launch: - /Roofbot.app: + "/Roofbot.app": - when: - os: mac store: steam - /Roofbot.exe: + "/Roofbot.exe": - when: - os: windows store: steam @@ -444028,11 +445253,11 @@ Rooftop Cop: installDir: Rooftop Cop: {} launch: - /ROOFTOP COP.app: + "/ROOFTOP COP.app": - when: - os: mac store: steam - /ROOFTOP COP.exe: + "/ROOFTOP COP.exe": - when: - os: windows store: steam @@ -444040,7 +445265,7 @@ Rooftop Cop: id: 353300 Roogoo: files: - /RooGoo: + "/RooGoo": tags: - save when: @@ -444048,7 +445273,7 @@ Roogoo: installDir: Roogoo: {} launch: - /Roogoo.exe: + "/Roogoo.exe": - when: - store: steam steam: @@ -444057,7 +445282,7 @@ Roojack: installDir: Roojack: {} launch: - /Roojack.exe: + "/Roojack.exe": - when: - store: steam steam: @@ -444066,21 +445291,21 @@ Rook: installDir: rook: {} launch: - /rook.app: + "/rook.app": - when: - os: mac store: steam - /rook.exe: + "/rook.exe": - when: - os: windows store: steam steam: id: 1218420 -'Rookie: Math Pro': +"Rookie: Math Pro": installDir: Rookie Math Pro: {} launch: - /RookieMathPro.exe: + "/RookieMathPro.exe": - when: - os: windows store: steam @@ -444090,14 +445315,14 @@ Rooks Keep: installDir: RooksKeep: {} launch: - /Binaries/UDKLift.exe: - - arguments: ' editor' + "/Binaries/UDKLift.exe": + - arguments: " editor" when: - store: steam - /Binaries/win32/UDK.exe: + "/Binaries/win32/UDK.exe": - when: - store: steam - /Binaries/win64/UDK.exe: + "/Binaries/win64/UDK.exe": - when: - store: steam steam: @@ -444106,7 +445331,7 @@ Room 208: installDir: Room 208: {} launch: - /Room 208.exe: + "/Room 208.exe": - when: - os: windows store: steam @@ -444116,8 +445341,8 @@ Room 40: installDir: Room 40: {} launch: - /Room 40.exe: - - arguments: '--in-process-gpu' + "/Room 40.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam @@ -444127,7 +445352,7 @@ Room 404: installDir: Room 404: {} launch: - /Room404/Room404.exe: + "/Room404/Room404.exe": - when: - bit: 64 os: windows @@ -444138,7 +445363,7 @@ Room 42: installDir: Room 42: {} launch: - /nw.exe: + "/nw.exe": - when: - store: steam steam: @@ -444147,14 +445372,14 @@ Room 54: installDir: Room54: {} launch: - /bin/win_x64/Room54.exe: + "/bin/win_x64/Room54.exe": - when: - bit: 64 os: windows store: steam steam: id: 673240 -Room Escape '1053': +"Room Escape '1053'": installDir: window contetn: {} steam: @@ -444166,15 +445391,15 @@ Room of Pandora: installDir: Room of Pandora: {} launch: - /RoomofPandora.app: + "/RoomofPandora.app": - when: - os: mac store: steam - /game.exe: + "/game.exe": - when: - os: windows store: steam - /game.x86_64: + "/game.x86_64": - when: - os: linux store: steam @@ -444184,25 +445409,25 @@ Room13: installDir: room13: {} launch: - /room13.exe: + "/room13.exe": - when: - store: steam steam: id: 314590 -'RoomESC- Secret of the Hidden Room: the Collaborator': +"RoomESC- Secret of the Hidden Room: the Collaborator": installDir: ESCAPE - Secret of the Hidden Room the Collaborator: {} launch: - /HiddenRoom.exe: + "/HiddenRoom.exe": - when: - bit: 64 os: windows store: steam steam: id: 909370 -'Roombo: First Blood': +"Roombo: First Blood": files: - /userdata//1004610/remote/punkplayerprefs.dat: + "/userdata//1004610/remote/punkplayerprefs.dat": tags: - config when: @@ -444210,17 +445435,17 @@ Room13: installDir: Roombo First Blood: {} launch: - /Roombo.app: + "/Roombo.app": - when: - os: mac store: steam - /Roombo.exe: + "/Roombo.exe": - when: - bit: 64 os: windows store: steam registry: - 'HKEY_CURRENT_USER/Software/Samurai Punk/Roombo: First Blood': + "HKEY_CURRENT_USER/Software/Samurai Punk/Roombo: First Blood": tags: - config steam: @@ -444229,7 +445454,7 @@ Roomie Romance: installDir: Roomie Romance: {} launch: - /RoomieRomance.exe: + "/RoomieRomance.exe": - when: - os: windows store: steam @@ -444239,28 +445464,28 @@ Roommates: installDir: Roommates: {} launch: - /Roommates.app: + "/Roommates.app": - when: - os: mac store: steam - /Roommates.exe: + "/Roommates.exe": - when: - os: windows store: steam - /Roommates.sh: + "/Roommates.sh": - when: - os: linux store: steam steam: id: 317300 -'Rooms: The Main Building': +"Rooms: The Main Building": files: - /User/Profile/*.sav: + "/User/Profile/*.sav": tags: - save when: - os: windows - /User/option.xml: + "/User/option.xml": tags: - config when: @@ -444268,29 +445493,29 @@ Roommates: installDir: Rooms The Main Building: {} launch: - /Rooms_TMB.app: + "/Rooms_TMB.app": - when: - os: mac store: steam - /Rooms_TMB.exe: + "/Rooms_TMB.exe": - when: - os: windows store: steam steam: id: 304500 -'Rooms: The Unsolvable Puzzle': +"Rooms: The Unsolvable Puzzle": installDir: Rooms2: {} launch: - /Rooms2.app: + "/Rooms2.app": - when: - os: mac store: steam - /Rooms2.exe: + "/Rooms2.exe": - when: - os: windows store: steam - /Rooms2.x86: + "/Rooms2.x86": - when: - os: linux store: steam @@ -444310,15 +445535,15 @@ Roopocket: installDir: Roopocket: {} launch: - /BuildSteam_MAC.app: + "/BuildSteam_MAC.app": - when: - os: mac store: steam - /Roopecket.exe: + "/Roopecket.exe": - when: - os: windows store: steam - /Roopocket.x86_64: + "/Roopocket.x86_64": - when: - os: linux store: steam @@ -444328,11 +445553,11 @@ Rooster Teeth vs. Zombiens: installDir: Rooster Teeth vs. Zombiens: {} launch: - /Zombiens.app: + "/Zombiens.app": - when: - os: mac store: steam - /Zombiens.exe: + "/Zombiens.exe": - when: - os: windows store: steam @@ -444342,15 +445567,15 @@ Root: installDir: ROOT: {} launch: - /ROOT.app/Contents/MacOS/ROOT: + "/ROOT.app/Contents/MacOS/ROOT": - when: - os: mac store: steam - /ROOT.exe: + "/ROOT.exe": - when: - os: windows store: steam - /ROOT.x86: + "/ROOT.x86": - when: - os: linux store: steam @@ -444363,7 +445588,7 @@ Root Beer On Tap: id: 955550 Root Double -Before Crime * After Days-: files: - /Yeti/RootDoubleXe/VER_100/savedata.bin: + "/Yeti/RootDoubleXe/VER_100/savedata.bin": tags: - save when: @@ -444371,7 +445596,7 @@ Root Double -Before Crime * After Days-: installDir: Root Double -Before Crime After Days- Xtend Edition: {} launch: - /rwxe.exe: + "/rwxe.exe": - when: - os: windows store: steam @@ -444379,7 +445604,7 @@ Root Double -Before Crime * After Days-: id: 438130 Root Letter: files: - /Savedata/*.dat: + "/Savedata/*.dat": tags: - save when: @@ -444387,15 +445612,15 @@ Root Letter: installDir: RootLetter: {} launch: - /RootLetter.exe: + "/RootLetter.exe": - when: - os: windows store: steam steam: id: 543240 -'Root Letter: Last Answer': +"Root Letter: Last Answer": files: - /Savedata/*.dat: + "/Savedata/*.dat": tags: - save when: @@ -444403,15 +445628,15 @@ Root Letter: installDir: Root Letter Last Answer: {} launch: - /RootLetterLA.exe: + "/RootLetterLA.exe": - when: - os: windows store: steam steam: id: 1056510 -'Root of Evil: The Tailor': +"Root of Evil: The Tailor": files: - /AppData/LocalLow/EastFog/Root Of Evil _The Tailor/The_Tailor.txt: + "/AppData/LocalLow/EastFog/Root Of Evil _The Tailor/The_Tailor.txt": tags: - save when: @@ -444419,16 +445644,16 @@ Root Letter: installDir: Root Of Evil: {} launch: - /Root Of Evil.app: + "/Root Of Evil.app": - when: - os: mac store: steam - /Root Of Evil.exe: + "/Root Of Evil.exe": - when: - os: windows store: steam registry: - 'HKEY_CURRENT_USER/Software/EastFog/Root Of Evil :The Tailor': + "HKEY_CURRENT_USER/Software/EastFog/Root Of Evil :The Tailor": tags: - config steam: @@ -444437,7 +445662,7 @@ Roots of Insanity: installDir: Roots of Insanity: {} launch: - /RootsofInsanity.exe: + "/RootsofInsanity.exe": - when: - os: windows store: steam @@ -444445,12 +445670,12 @@ Roots of Insanity: id: 598440 Roots of Pacha: files: - /AppData/LocalLow/Soda Den/Roots of Pacha/saves/: + "/AppData/LocalLow/Soda Den/Roots of Pacha/saves/": tags: - save when: - os: windows - /Library/Application Support/Soda Den/Roots of Pacha/saves/: + "/Library/Application Support/Soda Den/Roots of Pacha/saves/": tags: - save when: @@ -444458,15 +445683,15 @@ Roots of Pacha: installDir: Roots of Pacha: {} launch: - /Roots of Pacha.app: + "/Roots of Pacha.app": - when: - os: mac store: steam - /Roots of Pacha.exe: + "/Roots of Pacha.exe": - when: - os: windows store: steam - /Roots of Pacha.x86_64: + "/Roots of Pacha.x86_64": - when: - os: linux store: steam @@ -444481,11 +445706,11 @@ Roots of the Woods: Roots Of The Woods: {} steam: id: 1128660 -Rope Racer O'Neon: +"Rope Racer O'Neon": installDir: - Rope Racer O'Neon: {} + "Rope Racer O'Neon": {} launch: - /Rope Racer.exe: + "/Rope Racer.exe": - when: - os: windows store: steam @@ -444494,7 +445719,7 @@ Rope Racer O'Neon: Ropelike: steam: id: 655140 -'Ropes And Dragons: VR': +"Ropes And Dragons: VR": installDir: Ropes And Dragons VR: {} steam: @@ -444503,7 +445728,7 @@ Ropeway Simulator 2014: installDir: Ropeway Simulator 2014: {} launch: - /seilbahn.exe: + "/seilbahn.exe": - when: - os: windows store: steam @@ -444511,7 +445736,7 @@ Ropeway Simulator 2014: id: 289910 Rose Online: files: - /SevenHearts.ini: + "/SevenHearts.ini": tags: - config when: @@ -444519,27 +445744,27 @@ Rose Online: installDir: ROSE Online: {} launch: - /WPLauncher.exe: + "/WPLauncher.exe": - when: - os: windows store: steam steam: id: 215120 -'Rose Riddle 2: Werewolf Shadow': +"Rose Riddle 2: Werewolf Shadow": installDir: Rose Riddle 2 Werewolf Shadow: {} launch: - /RoseRiddle2_WerewolfShadow.exe: + "/RoseRiddle2_WerewolfShadow.exe": - when: - os: windows store: steam steam: id: 1096130 -'Rose Riddle: Fairy Tale Detective': +"Rose Riddle: Fairy Tale Detective": installDir: Rose Riddle Fairy Tale Detective: {} launch: - /RoseRiddleTheFairytaleDetective_CE.exe: + "/RoseRiddleTheFairytaleDetective_CE.exe": - when: - os: windows store: steam @@ -444549,34 +445774,34 @@ Rose of Winter: installDir: Rose of Winter: {} launch: - /RoseOfWinter.app/Contents/MacOS/RoseOfWinter: + "/RoseOfWinter.app/Contents/MacOS/RoseOfWinter": - when: - os: mac store: steam - /RoseOfWinter.exe: + "/RoseOfWinter.exe": - when: - os: windows store: steam - /RoseOfWinter.x86: + "/RoseOfWinter.x86": - when: - bit: 32 os: linux store: steam - /RoseOfWinter.x86_64: + "/RoseOfWinter.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 540880 -Rosebaker's Icy Treats: +"Rosebaker's Icy Treats": installDir: RBIT: {} steam: id: 667780 Rosenkreuzstilette: files: - /Config.dat: + "/Config.dat": tags: - config when: @@ -444584,7 +445809,7 @@ Rosenkreuzstilette: installDir: Rosenkreuzstilette: {} launch: - /rks.exe: + "/rks.exe": - when: - os: windows store: steam @@ -444592,7 +445817,7 @@ Rosenkreuzstilette: id: 564150 Rosenkreuzstilette Freudenstachel: files: - /Config.dat: + "/Config.dat": tags: - config when: @@ -444600,7 +445825,7 @@ Rosenkreuzstilette Freudenstachel: installDir: Rosenkreuzstilette Freudenstachel: {} launch: - /rksf.exe: + "/rksf.exe": - when: - os: windows store: steam @@ -444610,7 +445835,7 @@ Roses and Gems: installDir: Roses and Gems: {} launch: - /RosesAndGems.exe: + "/RosesAndGems.exe": - when: - os: windows store: steam @@ -444620,7 +445845,7 @@ Rosette and Words: installDir: Rosette and Words: {} launch: - /Rosette_and_Words.exe: + "/Rosette_and_Words.exe": - when: - os: windows store: steam @@ -444635,7 +445860,7 @@ Rot: installDir: rOt: {} launch: - /rOt.exe: + "/rOt.exe": - when: - os: windows store: steam @@ -444645,7 +445870,7 @@ Rot Gut: installDir: Rot Gut: {} launch: - /Main.exe: + "/Main.exe": - when: - os: windows store: steam @@ -444660,7 +445885,7 @@ Rotastic: installDir: Rotastic: {} launch: - /Rotastic.exe: + "/Rotastic.exe": - when: - store: steam steam: @@ -444676,11 +445901,11 @@ Rotatex: Rotation: steam: id: 814080 -'Rotation Phonology: Break': +"Rotation Phonology: Break": installDir: Rotation Phonology Break: {} launch: - /RP Break.exe: + "/RP Break.exe": - when: - os: windows store: steam @@ -444690,7 +445915,7 @@ Rotator: installDir: Rotator: {} launch: - /Rotator.exe: + "/Rotator.exe": - when: - os: windows store: steam @@ -444700,17 +445925,17 @@ Rotatorix: installDir: Rotatorix: {} launch: - /rotatorix.exe: + "/rotatorix.exe": - when: - os: windows store: steam steam: id: 716130 -'Rothschild: The Sheep Will Wake': +"Rothschild: The Sheep Will Wake": installDir: Rothschild_TSWW: {} launch: - /Rothschild.exe: + "/Rothschild.exe": - when: - os: windows store: steam @@ -444720,20 +445945,20 @@ Rotieer: installDir: Rotieer: {} launch: - /Rotieer.app: + "/Rotieer.app": - when: - os: mac store: steam - /Rotieer.exe: + "/Rotieer.exe": - when: - os: windows store: steam - /Rotieer.x86: + "/Rotieer.x86": - when: - bit: 32 os: linux store: steam - /Rotieer.x86_64: + "/Rotieer.x86_64": - when: - bit: 64 os: linux @@ -444744,11 +445969,11 @@ RotoBrix: installDir: RotoBrix: {} launch: - /RotoBrix.app: + "/RotoBrix.app": - when: - os: mac store: steam - /RotoBrix.exe: + "/RotoBrix.exe": - when: - bit: 64 os: windows @@ -444765,26 +445990,26 @@ Rotund Rebound: installDir: Rotund Rebound: {} launch: - /Rotund Rebound.app/Contents/MacOS/Rotund Rebound: + "/Rotund Rebound.app/Contents/MacOS/Rotund Rebound": - when: - os: mac store: steam - /Rotund Rebound.exe: + "/Rotund Rebound.exe": - when: - os: windows store: steam - /Rotund Rebound.x86_64: + "/Rotund Rebound.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 1000750 -'Rough Justice: ''84': +"Rough Justice: '84": installDir: Rough Justice: {} launch: - /RoughJustice.exe: + "/RoughJustice.exe": - when: - bit: 64 os: windows @@ -444795,7 +446020,7 @@ Roulette Simulator: installDir: RouletteSimulator: {} launch: - /RouletteSimulator.exe: + "/RouletteSimulator.exe": - when: - os: windows store: steam @@ -444805,7 +446030,7 @@ Roulette Simulator 2: installDir: Roulette Simulator 2: {} launch: - /RouletteSimulator2.exe: + "/RouletteSimulator2.exe": - when: - store: steam steam: @@ -444814,7 +446039,7 @@ Roun: installDir: Roun: {} launch: - /RounUpdater.exe: + "/RounUpdater.exe": - when: - os: windows store: steam @@ -444824,7 +446049,7 @@ Round Mars: installDir: Round Mars: {} launch: - /Round Mars.exe: + "/Round Mars.exe": - when: - os: windows store: steam @@ -444834,7 +446059,7 @@ Round Rooms: installDir: Round Rooms: {} launch: - /Round Rooms.exe: + "/Round Rooms.exe": - when: - os: windows store: steam @@ -444844,11 +446069,11 @@ Round Ways: installDir: Round Ways: {} launch: - /Round Ways.app: + "/Round Ways.app": - when: - os: mac store: steam - /Round Ways.exe: + "/Round Ways.exe": - when: - os: windows store: steam @@ -444856,12 +446081,12 @@ Round Ways: id: 876960 Roundabout: files: - /Savedata: + "/Savedata": tags: - save when: - os: windows - /resolution.settings: + "/resolution.settings": tags: - config when: @@ -444869,15 +446094,15 @@ Roundabout: installDir: Roundabout: {} launch: - /Roundabout.app: + "/Roundabout.app": - when: - os: mac store: steam - /Roundabout.exe: + "/Roundabout.exe": - when: - os: windows store: steam - /Roundabout.x86: + "/Roundabout.x86": - when: - os: linux store: steam @@ -444891,7 +446116,7 @@ Rounders (Arena): installDir: Rounders (Arena): {} launch: - /rounders.exe: + "/rounders.exe": - when: - os: windows store: steam @@ -444901,7 +446126,7 @@ Roundguard: installDir: Roundguard: {} launch: - /Roundguard.exe: + "/Roundguard.exe": - when: - os: windows store: steam @@ -444911,7 +446136,7 @@ Rounds: installDir: ROUNDS: {} launch: - /Rounds.exe: + "/Rounds.exe": - when: - os: windows store: steam @@ -444929,7 +446154,7 @@ Rover Builder: installDir: Rover Builder: {} launch: - /RoverBuilder.exe: + "/RoverBuilder.exe": - when: - os: windows store: steam @@ -444937,7 +446162,7 @@ Rover Builder: id: 683770 Rover Mechanic Simulator: files: - /AppData/LocalLow/PyramidGames/RoverMechanicSimulator/*.sav: + "/AppData/LocalLow/PyramidGames/RoverMechanicSimulator/*.sav": tags: - save when: @@ -444945,7 +446170,7 @@ Rover Mechanic Simulator: installDir: Rover Mechanic Simulator: {} launch: - /rms.exe: + "/rms.exe": - when: - os: windows store: steam @@ -444955,11 +446180,11 @@ Rover Rescue: installDir: Rover Rescue: {} launch: - /Rover Rescue Options.exe: + "/Rover Rescue Options.exe": - when: - os: windows store: steam - /Rover Rescue.exe: + "/Rover Rescue.exe": - when: - os: windows store: steam @@ -444969,15 +446194,15 @@ Rover The Dragonslayer: installDir: Rover The Dragonslayer: {} launch: - /Rover.x86: + "/Rover.x86": - when: - os: linux store: steam - /RoverTheDragonslayer.app: + "/RoverTheDragonslayer.app": - when: - os: mac store: steam - /RoverTheDragonslayer.exe: + "/RoverTheDragonslayer.exe": - when: - os: windows store: steam @@ -444987,7 +446212,7 @@ Roving in the Dark: installDir: Roving in the Dark: {} launch: - /Rovinginthedark.exe: + "/Rovinginthedark.exe": - when: - store: steam steam: @@ -444996,21 +446221,21 @@ RowRow: installDir: RowRow: {} launch: - /RowRow.app/Contents/MacOS/RowRow: + "/RowRow.app/Contents/MacOS/RowRow": - when: - os: mac store: steam - /RowRow.exe: + "/RowRow.exe": - when: - os: windows store: steam steam: id: 1001200 -'Roy Cluse: Itsy-Bitsy Edition': +"Roy Cluse: Itsy-Bitsy Edition": installDir: Roy Cluse Itsy Bitsy Edition: {} launch: - /Roy Cluse.exe: + "/Roy Cluse.exe": - when: - os: windows store: steam @@ -445020,25 +446245,25 @@ Royal Adventure: installDir: Royal Adventure: {} launch: - /RA.app: + "/RA.app": - when: - os: mac store: steam - /RA.exe: + "/RA.exe": - when: - os: windows store: steam steam: id: 832650 -'Royal Agents: Sweet Zombie': +"Royal Agents: Sweet Zombie": installDir: Royal Agents Sweet Zombie: {} launch: - /RoyalAgentsSweetZombie_MAC.app/Contents/MacOS/RoyalAgentsSweetZombie_MAC: + "/RoyalAgentsSweetZombie_MAC.app/Contents/MacOS/RoyalAgentsSweetZombie_MAC": - when: - os: mac store: steam - /RoyalAgentsSweetZombie_WIN.exe: + "/RoyalAgentsSweetZombie_WIN.exe": - when: - os: windows store: steam @@ -445048,15 +446273,15 @@ Royal Alchemist: installDir: Royal Alchemist: {} launch: - /RoyalAlchemist.app/Contents/MacOS/RoyalAlchemist: + "/RoyalAlchemist.app/Contents/MacOS/RoyalAlchemist": - when: - os: mac store: steam - /RoyalAlchemist.exe: + "/RoyalAlchemist.exe": - when: - os: windows store: steam - /RoyalAlchemist.sh: + "/RoyalAlchemist.sh": - when: - os: linux store: steam @@ -445066,15 +446291,15 @@ Royal Battleships: installDir: Royal Battleships: {} launch: - /Royal Battleships.app/Contents/MacOS/Royal Battleships: + "/Royal Battleships.app/Contents/MacOS/Royal Battleships": - when: - os: mac store: steam - /Royal Battleships.exe: + "/Royal Battleships.exe": - when: - os: windows store: steam - /Royal Battleships.x86: + "/Royal Battleships.x86": - when: - os: linux store: steam @@ -445084,15 +446309,15 @@ Royal Booty Quest: installDir: Royal Booty Quest: {} launch: - /RBQ.app/Contents/MacOS/RBQ: + "/RBQ.app/Contents/MacOS/RBQ": - when: - os: mac store: steam - /RBQ.exe: + "/RBQ.exe": - when: - os: windows store: steam - /app/RoyalBootyQuest: + "/app/RoyalBootyQuest": - when: - os: linux store: steam @@ -445102,29 +446327,29 @@ Royal Bounty HD: installDir: Royal Bounty HD: {} launch: - /Royal Bounty HD.app: + "/Royal Bounty HD.app": - when: - os: mac store: steam - /royalbountyhd.exe: + "/royalbountyhd.exe": - when: - os: windows store: steam steam: id: 337210 -'Royal Casino: Video Poker': +"Royal Casino: Video Poker": installDir: Royal Casino Video Poker: {} launch: - /Royal Casino Video Poker.app/Contents/MacOS/Royal Casino Video Poker: + "/Royal Casino Video Poker.app/Contents/MacOS/Royal Casino Video Poker": - when: - os: mac store: steam - /Royal Casino Video Poker.exe: + "/Royal Casino Video Poker.exe": - when: - os: windows store: steam - /Royal Casino Video Poker.x86: + "/Royal Casino Video Poker.x86": - when: - os: linux store: steam @@ -445134,14 +446359,14 @@ Royal Crown: installDir: Royal Crown: {} launch: - /RoyalCrown.exe: + "/RoyalCrown.exe": - when: - store: steam steam: id: 1094710 Royal Defense: files: - /8Floor/RD: + "/8Floor/RD": tags: - save when: @@ -445149,41 +446374,41 @@ Royal Defense: installDir: RoyalDefense: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam - /Royal Defense.app: + "/Royal Defense.app": - when: - os: mac store: steam steam: id: 291170 -'Royal Detective: Queen of Shadows': +"Royal Detective: Queen of Shadows": installDir: - Royal Detective Queen of Shadows Collector's Edition: {} + "Royal Detective Queen of Shadows Collector's Edition": {} launch: - /RoyalDetective_QueenOfShadowsCE.exe: + "/RoyalDetective_QueenOfShadowsCE.exe": - when: - os: windows store: steam steam: id: 647850 -'Royal Detective: The Last Charm': +"Royal Detective: The Last Charm": installDir: - Royal Detective The Last Charm Collector's Edition: {} + "Royal Detective The Last Charm Collector's Edition": {} launch: - /RoyalDetective_TheLastCharm_CE.exe: + "/RoyalDetective_TheLastCharm_CE.exe": - when: - os: windows store: steam steam: id: 1192270 -'Royal Detective: The Lord of Statues': +"Royal Detective: The Lord of Statues": installDir: - Royal Detective The Lord of Statues Collector's Edition: {} + "Royal Detective The Lord of Statues Collector's Edition": {} launch: - /RoyalDetective_LordOfStatues_CE.exe: + "/RoyalDetective_LordOfStatues_CE.exe": - when: - store: steam steam: @@ -445192,11 +446417,11 @@ Royal Gems: installDir: Royal Gems: {} launch: - /RoyalGems.app: + "/RoyalGems.app": - when: - os: mac store: steam - /RoyalGems.exe: + "/RoyalGems.exe": - when: - os: windows store: steam @@ -445206,21 +446431,21 @@ Royal Heroes: installDir: Royal Heroes: {} launch: - /Royal Heroes.app/Contents/MacOS/Royal Heroes: + "/Royal Heroes.app/Contents/MacOS/Royal Heroes": - when: - os: mac store: steam - /RoyalHeroes.exe: + "/RoyalHeroes.exe": - when: - os: windows store: steam steam: id: 439920 -'Royal Life: Hard to be a Queen': +"Royal Life: Hard to be a Queen": installDir: Royal Life Hard to be a Queen: {} launch: - /RoyalLife_HardToBeAQueen.exe: + "/RoyalLife_HardToBeAQueen.exe": - when: - os: windows store: steam @@ -445230,11 +446455,11 @@ Royal Merchant: installDir: Royal Merchant: {} launch: - /Royal Merchant.app/Contents/MacOS/Royal Merchant: + "/Royal Merchant.app/Contents/MacOS/Royal Merchant": - when: - os: mac store: steam - /RoyalMerchant.exe: + "/RoyalMerchant.exe": - when: - os: windows store: steam @@ -445244,11 +446469,11 @@ Royal Offense: installDir: Royal Offense: {} launch: - /Royal Offense.app/Contents/MacOS/Royal Offense: + "/Royal Offense.app/Contents/MacOS/Royal Offense": - when: - os: mac store: steam - /RoyalOffense.exe: + "/RoyalOffense.exe": - when: - os: windows store: steam @@ -445258,7 +446483,7 @@ Royal Quest: installDir: Royal Quest: {} launch: - /rqlauncher.exe: + "/rqlauncher.exe": - when: - os: windows store: steam @@ -445268,11 +446493,11 @@ Royal Roads: installDir: Royal Roads: {} launch: - /Royal Roads.app: + "/Royal Roads.app": - when: - os: mac store: steam - /Royal Roads.exe: + "/Royal Roads.exe": - when: - os: windows store: steam @@ -445282,11 +446507,11 @@ Royal Tumble: installDir: Royal Tumble: {} launch: - /royal_tumble.app: + "/royal_tumble.app": - when: - os: mac store: steam - /royal_tumble.exe: + "/royal_tumble.exe": - when: - os: windows store: steam @@ -445299,7 +446524,7 @@ Royale Storm Bowling: installDir: Royale Storm Bowling: {} launch: - /Royale Storm Bowling.exe: + "/Royale Storm Bowling.exe": - when: - os: windows store: steam @@ -445312,16 +446537,16 @@ RpgEra: installDir: RpgEra: {} launch: - /Game: + "/Game": - when: - os: linux store: steam - workingDir: /RpgEra - /Game.app: + workingDir: "/RpgEra" + "/Game.app": - when: - os: mac store: steam - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -445339,11 +446564,11 @@ Rubber Ducky and the Rainbow Gun: installDir: Rubber Ducky and the Rainbow Gun: {} launch: - /Rubber Ducky V3.exe: + "/Rubber Ducky V3.exe": - when: - os: windows store: steam - /Rubber Ducky.app: + "/Rubber Ducky.app": - when: - os: mac store: steam @@ -445356,7 +446581,7 @@ Rubber and Lead: installDir: Rubber and Lead: {} launch: - /rubberandlead.exe: + "/rubberandlead.exe": - when: - os: windows store: steam @@ -445366,30 +446591,30 @@ Rubble Rush: installDir: Rubble Rush: {} launch: - /RubbleRush.exe: + "/RubbleRush.exe": - when: - os: windows store: steam steam: id: 1018750 -'Rube Works: The Official Rube Goldberg Invention Game': +"Rube Works: The Official Rube Goldberg Invention Game": installDir: Rube Works: {} launch: - /Rube.app: + "/Rube.app": - when: - os: mac store: steam - /Rube.exe: + "/Rube.exe": - when: - os: windows store: steam - /Rube.x86: + "/Rube.x86": - when: - bit: 32 os: linux store: steam - /Rube.x86_64: + "/Rube.x86_64": - when: - bit: 64 os: linux @@ -445405,11 +446630,11 @@ Rubek: installDir: Rubek: {} launch: - /Rubek.app/Contents/MacOS/Rubek: + "/Rubek.app/Contents/MacOS/Rubek": - when: - os: mac store: steam - /Rubek.exe: + "/Rubek.exe": - when: - os: windows store: steam @@ -445420,20 +446645,20 @@ Ruberg: Gadgeteer: {} steam: id: 746560 -'Rubi: The Wayward Mira': +"Rubi: The Wayward Mira": steam: id: 1167110 Rubico: steam: id: 1046700 -Rubik's Cube VR: +"Rubik's Cube VR": steam: id: 948940 -'Ruby & Majesty: Treasure Team': +"Ruby & Majesty: Treasure Team": installDir: Ruby and Majesty Treasure Team: {} launch: - /Ruby and Majesty Treasure Team.exe: + "/Ruby and Majesty Treasure Team.exe": - when: - os: windows store: steam @@ -445444,19 +446669,19 @@ Ruckus Ridge VR Party: Ruckus Ridge VR Party: {} steam: id: 443800 -'Ruction: The Golden Tablet': +"Ruction: The Golden Tablet": installDir: Ruction The Golden Tablet: {} launch: - /Ruction.app: + "/Ruction.app": - when: - os: mac store: steam - /Ruction.exe: + "/Ruction.exe": - when: - os: windows store: steam - /Ruction_linux.x86: + "/Ruction_linux.x86": - when: - os: linux store: steam @@ -445466,11 +446691,11 @@ Rude Racers: installDir: Rude Racers: {} launch: - /RR PC.app: + "/RR PC.app": - when: - os: mac store: steam - /RR PC.exe: + "/RR PC.exe": - when: - os: windows store: steam @@ -445480,7 +446705,7 @@ Rugby 15: installDir: Rugby 15: {} launch: - /Rugby15.exe: + "/Rugby15.exe": - when: - os: windows store: steam @@ -445490,32 +446715,32 @@ Rugby 18: installDir: Rugby18: {} launch: - /Exe/Rugby18.exe: + "/Exe/Rugby18.exe": - when: - store: steam - workingDir: /Exe + workingDir: "/Exe" steam: id: 627450 Rugby 20: installDir: Rugby 20: {} launch: - /Exe/Rugby.exe: + "/Exe/Rugby.exe": - when: - bit: 64 os: windows store: steam - workingDir: /Exe + workingDir: "/Exe" steam: id: 846730 Rugby Challenge: installDir: RugbyChallenge: {} launch: - /RugbyChallenge.exe: + "/RugbyChallenge.exe": - when: - store: steam - /tools/RugbyChallengeSettingsEditor.exe: + "/tools/RugbyChallengeSettingsEditor.exe": - when: - store: steam steam: @@ -445524,11 +446749,11 @@ Rugby Challenge 2: installDir: Rugby Challenge 2: {} launch: - /RugbyChallenge2.exe: + "/RugbyChallenge2.exe": - when: - os: windows store: steam - /tools/RugbyChallenge2SettingsEditor.exe: + "/tools/RugbyChallenge2SettingsEditor.exe": - when: - os: windows store: steam @@ -445536,7 +446761,7 @@ Rugby Challenge 2: id: 226760 Rugby Challenge 3: files: - /WickedWitch: + "/WickedWitch": tags: - config when: @@ -445544,7 +446769,7 @@ Rugby Challenge 3: installDir: Rugby Challenge 3: {} launch: - /RugbyChallenge3.exe: + "/RugbyChallenge3.exe": - when: - os: windows store: steam @@ -445554,7 +446779,7 @@ Rugby Champions: installDir: Rugby Champions: {} launch: - /RugbyChampions.exe: + "/RugbyChampions.exe": - when: - os: windows store: steam @@ -445562,7 +446787,7 @@ Rugby Champions: id: 939350 Rugby League Live: files: - /My Games/Rugby League Live: + "/My Games/Rugby League Live": tags: - config - save @@ -445575,7 +446800,7 @@ Rugby League Live 3: installDir: Rugby League Live 3: {} launch: - /rll3.exe: + "/rll3.exe": - when: - os: windows store: steam @@ -445585,7 +446810,7 @@ Rugby League Live 4: installDir: Rugby League Live 4: {} launch: - /rll4.exe: + "/rll4.exe": - when: - store: steam steam: @@ -445594,7 +446819,7 @@ Rugby League Team Manager 2015: installDir: Rugby League Team Manager 2015: {} launch: - /RLTM2015_StartUp.exe: + "/RLTM2015_StartUp.exe": - when: - os: windows store: steam @@ -445604,17 +446829,17 @@ Rugby League Team Manager 2018: installDir: Rugby League Team Manager 2018: {} launch: - /RLTM2018_StartUp_32bit.exe: + "/RLTM2018_StartUp_32bit.exe": - when: - bit: 32 os: windows store: steam - /RLTM2018_StartUp_64bit.exe: + "/RLTM2018_StartUp_64bit.exe": - when: - bit: 64 os: windows store: steam - /RLTM2018_StartUp_Mac.app: + "/RLTM2018_StartUp_Mac.app": - when: - os: mac store: steam @@ -445624,22 +446849,25 @@ Rugby League Team Manager 3: installDir: Rugby League Team Manager 3: {} launch: - /RLTM3.app: + "/RLTM3.app": - when: - os: mac store: steam - /RLTM3.exe: + "/RLTM3.exe": - when: - bit: 32 os: windows store: steam + - bit: 64 + os: windows + store: steam steam: id: 1154080 Rugby Union Team Manager 2015: installDir: Rugby Union Team Manager 2015: {} launch: - /RUTM2015_Startup.exe: + "/RUTM2015_Startup.exe": - when: - os: windows store: steam @@ -445649,17 +446877,17 @@ Rugby Union Team Manager 2017: installDir: Rugby Union Team Manager 2017: {} launch: - /RUTM2017_StartUp_32bit.exe: + "/RUTM2017_StartUp_32bit.exe": - when: - bit: 32 os: windows store: steam - /RUTM2017_StartUp_64bit.exe: + "/RUTM2017_StartUp_64bit.exe": - when: - bit: 64 os: windows store: steam - /RUTM2017_StartUp_Mac.app: + "/RUTM2017_StartUp_Mac.app": - when: - os: mac store: steam @@ -445669,7 +446897,7 @@ Rugby World Cup 2015: installDir: Rugby World Cup 2015: {} launch: - /RWC_2015.exe: + "/RWC_2015.exe": - when: - os: windows store: steam @@ -445681,7 +446909,7 @@ Ruggnar: installDir: Ruggnar: {} launch: - /Ruggnar.exe: + "/Ruggnar.exe": - when: - os: windows store: steam @@ -445691,7 +446919,7 @@ Rugosi: installDir: Rugosi: {} launch: - /rugosi.exe: + "/rugosi.exe": - when: - bit: 64 os: windows @@ -445702,7 +446930,7 @@ Ruin City Gasolina: installDir: Ruin City Gasolina: {} launch: - /RCG.exe: + "/RCG.exe": - when: - os: windows store: steam @@ -445712,7 +446940,7 @@ Ruin Raiders: installDir: RuinRaiders: {} launch: - /RuinRaiders.exe: + "/RuinRaiders.exe": - when: - os: windows store: steam @@ -445724,7 +446952,7 @@ Ruin of the Reckless: installDir: Ruin of the Reckless: {} launch: - /RotRVC.exe: + "/RotRVC.exe": - when: - os: windows store: steam @@ -445734,7 +446962,7 @@ Ruinarch: installDir: Ruinarch: {} launch: - /Ruinarch.exe: + "/Ruinarch.exe": - when: - os: windows store: steam @@ -445744,7 +446972,7 @@ Ruination: installDir: Ruination: {} launch: - /Ruination.exe: + "/Ruination.exe": - when: - os: windows store: steam @@ -445754,20 +446982,20 @@ Ruine: installDir: Ruine: {} launch: - /Ruine.exe: + "/Ruine.exe": - when: - os: windows store: steam steam: id: 1071660 -'Ruined King: A League of Legends Story': +"Ruined King: A League of Legends Story": files: - /AppData/LocalLow/Airship Syndicate/Ruined King/: + "/AppData/LocalLow/Airship Syndicate/Ruined King/": tags: - config when: - os: windows - /AppData/LocalLow/Airship Syndicate/Ruined King//Profile01: + "/AppData/LocalLow/Airship Syndicate/Ruined King//Profile01": tags: - save when: @@ -445777,7 +447005,7 @@ Ruine: installDir: Ruined King: {} launch: - /RuinedKing.exe: + "/RuinedKing.exe": - when: - os: windows store: steam @@ -445785,28 +447013,28 @@ Ruine: id: 1276790 Ruiner: files: - /Packages/DevolverDigital.Ruiner_6kzv4j18v0c96/SystemAppData/wgs/000900000254A507_ECED0100ED114094AF25077B0598D10C/8FC1BBA561974E9EAAD4526E5963654A: + "/Packages/DevolverDigital.Ruiner_6kzv4j18v0c96/SystemAppData/wgs/000900000254A507_ECED0100ED114094AF25077B0598D10C/8FC1BBA561974E9EAAD4526E5963654A": tags: - save when: - os: windows store: microsoft - /Ruiner/Saved/Config/WindowsNoEditor: + "/Ruiner/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /Ruiner/Saved/SaveGames: + "/Ruiner/Saved/SaveGames": tags: - save when: - os: windows - /Epic/Ruiner/Saved/Config: + "/Epic/Ruiner/Saved/Config": tags: - config when: - os: linux - /Epic/Ruiner/Saved/SaveGames: + "/Epic/Ruiner/Saved/SaveGames": tags: - save when: @@ -445816,11 +447044,11 @@ Ruiner: installDir: RUINER: {} launch: - /Ruiner.exe: + "/Ruiner.exe": - when: - os: windows store: steam - /Ruiner.sh: + "/Ruiner.sh": - when: - os: linux store: steam @@ -445831,7 +447059,7 @@ Ruinic: id: 984980 Ruins Seeker: files: - /www/save: + "/www/save": tags: - save when: @@ -445841,7 +447069,7 @@ Ruins Seeker: installDir: Ruins Seeker: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: @@ -445853,7 +447081,7 @@ Ruins to Rumble: installDir: Ruins to Rumble: {} launch: - /RuinsToRumble.exe: + "/RuinsToRumble.exe": - when: - os: windows store: steam @@ -445868,16 +447096,16 @@ Rule Your School: installDir: Headmaster: {} launch: - /Headmaster.exe: + "/Headmaster.exe": - when: - os: windows store: steam - /Headmaster.x86: + "/Headmaster.x86": - when: - bit: 32 os: linux store: steam - /Headmaster.x86_64: + "/Headmaster.x86_64": - when: - bit: 64 os: linux @@ -445888,11 +447116,11 @@ Rule with an Iron Fish: installDir: Rule with an Iron Fish: {} launch: - /PirateFishing.app: + "/PirateFishing.app": - when: - os: mac store: steam - /PirateFishing.exe: + "/PirateFishing.exe": - when: - os: windows store: steam @@ -445902,15 +447130,15 @@ Ruler by Default: installDir: Ruler by Default: {} launch: - /RulerbyDefault.app/Contents/MacOS/RulerbyDefault: + "/RulerbyDefault.app/Contents/MacOS/RulerbyDefault": - when: - os: mac store: steam - /RulerbyDefault.exe: + "/RulerbyDefault.exe": - when: - os: windows store: steam - /RulerbyDefault.sh: + "/RulerbyDefault.sh": - when: - os: linux store: steam @@ -445920,7 +447148,7 @@ Rulers of Nations: installDir: Rulers of Nations: {} launch: - /_start.exe: + "/_start.exe": - when: - os: windows store: steam @@ -445930,7 +447158,7 @@ Rules of Destruction: installDir: Rules of Destruction: {} launch: - /Rules of Destruction.exe: + "/Rules of Destruction.exe": - when: - bit: 64 os: windows @@ -445941,20 +447169,20 @@ Rules of Survival: installDir: Rules Of Survival: {} launch: - /ros.exe: + "/ros.exe": - when: - store: steam steam: id: 788260 -'Rules of The Mafia: Trade & Blood': +"Rules of The Mafia: Trade & Blood": installDir: Rules of The Mafia Trade & Blood: {} launch: - /Rules of The Mafia Trade & Blood.app/Contents/MacOS/Rules of The Mafia Trade & Blood: + "/Rules of The Mafia Trade & Blood.app/Contents/MacOS/Rules of The Mafia Trade & Blood": - when: - os: mac store: steam - /Rules of The Mafia Trade & Blood.exe: + "/Rules of The Mafia Trade & Blood.exe": - when: - os: windows store: steam @@ -445964,7 +447192,7 @@ Rum & Gun: installDir: Rum & Gun: {} launch: - /Rum and Gun.exe: + "/Rum and Gun.exe": - when: - store: steam steam: @@ -445973,7 +447201,7 @@ Rum Ram: installDir: Rum Ram: {} launch: - /RumRam.exe: + "/RumRam.exe": - when: - bit: 64 os: windows @@ -445984,15 +447212,15 @@ Rumble: installDir: Rumble: {} launch: - /Rumble.app: + "/Rumble.app": - when: - os: mac store: steam - /Rumble.exe: + "/Rumble.exe": - when: - os: windows store: steam - /Rumble.x86: + "/Rumble.x86": - when: - os: linux store: steam @@ -446002,31 +447230,31 @@ Rumble Arena: installDir: Rumble Arena: {} launch: - /Rumble Arena.exe: + "/Rumble Arena.exe": - when: - os: windows store: steam - /RumbleArena.app: + "/RumbleArena.app": - when: - os: mac store: steam - /RumbleArena.x86: + "/RumbleArena.x86": - when: - bit: 32 os: linux store: steam - /RumbleArena.x86_64: + "/RumbleArena.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 1040820 -'Rumble Fighter: Unleashed': +"Rumble Fighter: Unleashed": installDir: RumbleFighter: {} launch: - /RFstl.exe: + "/RFstl.exe": - when: - os: windows store: steam @@ -446034,12 +447262,12 @@ Rumble Arena: id: 357500 Rumbleverse: files: - /Rumbleverse/Saved/Config/WindowsClient: + "/Rumbleverse/Saved/Config/WindowsClient": tags: - config when: - os: windows - /Rumbleverse/Saved/SaveGames: + "/Rumbleverse/Saved/SaveGames": tags: - save when: @@ -446048,7 +447276,7 @@ Rumia in the darkness: installDir: Rumia in the darkness: {} launch: - /RPG_RT.exe: + "/RPG_RT.exe": - when: - store: steam steam: @@ -446057,7 +447285,7 @@ Rummy 3D Premium: installDir: Rummy 3D Premium: {} launch: - /Rummy3D.exe: + "/Rummy3D.exe": - when: - os: windows store: steam @@ -446072,20 +447300,20 @@ Rumpus: installDir: Rumpus: {} launch: - /rumpus.app: + "/rumpus.app": - when: - os: mac store: steam - /rumpus.exe: + "/rumpus.exe": - when: - os: windows store: steam - /rumpus.x86: + "/rumpus.x86": - when: - bit: 32 os: linux store: steam - /rumpus.x86_64: + "/rumpus.x86_64": - when: - bit: 64 os: linux @@ -446094,7 +447322,7 @@ Rumpus: id: 542220 Rumu: files: - /AppData/LocalLow/Robot House/Rumu/Save: + "/AppData/LocalLow/Robot House/Rumu/Save": tags: - save when: @@ -446102,16 +447330,16 @@ Rumu: installDir: Rumu: {} launch: - /Rumu.app/Contents/MacOS/Rumu: + "/Rumu.app/Contents/MacOS/Rumu": - when: - os: mac store: steam - /Rumu.exe: + "/Rumu.exe": - when: - bit: 64 os: windows store: steam - /Rumu.x86_64: + "/Rumu.x86_64": - arguments: __GL_GlslUseCollapsedArrays=0 %command% when: - bit: 64 @@ -446123,7 +447351,7 @@ Run (2020): installDir: RunGame: {} launch: - /Run.exe: + "/Run.exe": - when: - bit: 64 os: windows @@ -446132,7 +447360,7 @@ Run (2020): id: 931440 Run Away: files: - /unity3d/BCHwaves/Run Away: + "/unity3d/BCHwaves/Run Away": tags: - config when: @@ -446143,7 +447371,7 @@ Run Away (2018): installDir: Run Away: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -446159,7 +447387,7 @@ Run Crabby Run: installDir: Run Crabby Run: {} launch: - /start.bat: + "/start.bat": - when: - os: windows store: steam @@ -446177,7 +447405,7 @@ Run Dude: installDir: Run Dude: {} launch: - /Run Dude.exe: + "/Run Dude.exe": - when: - store: steam steam: @@ -446189,7 +447417,7 @@ Run For Coins: installDir: Run For Coins: {} launch: - /RunForCoins.exe: + "/RunForCoins.exe": - when: - bit: 64 os: windows @@ -446200,7 +447428,7 @@ Run For Cover: installDir: Run For Cover: {} launch: - /StrategyRunner.exe: + "/StrategyRunner.exe": - when: - bit: 64 os: windows @@ -446211,7 +447439,7 @@ Run For Rum: installDir: Run For Rum: {} launch: - /Run for Rum.exe: + "/Run for Rum.exe": - when: - store: steam steam: @@ -446220,7 +447448,7 @@ Run Gun Die Ultimate: installDir: Run Gun Die Ultimate: {} launch: - /Run Gun Die Ultimate.exe: + "/Run Gun Die Ultimate.exe": - when: - bit: 64 os: windows @@ -446231,7 +447459,7 @@ Run Jump Die Repeat: installDir: Run Jump Die Repeat: {} launch: - /Run Jump Die Repeat.exe: + "/Run Jump Die Repeat.exe": - when: - bit: 64 os: windows @@ -446242,7 +447470,7 @@ Run Jump Fail: installDir: Run Jump Fail: {} launch: - /RunJumpFail.exe: + "/RunJumpFail.exe": - when: - store: steam steam: @@ -446251,7 +447479,7 @@ Run Jump Rabbit Turtle: installDir: Run Jump Rabbit Turtle: {} launch: - /RJRT.exe: + "/RJRT.exe": - when: - os: windows store: steam @@ -446264,7 +447492,7 @@ Run Naked Woman Run: installDir: Run Naked Woman Run: {} launch: - /RunPutinRun.exe: + "/RunPutinRun.exe": - when: - bit: 64 os: windows @@ -446275,15 +447503,15 @@ Run Rabbit Run: installDir: Run Rabbit Run: {} launch: - /runrabbitrun: + "/runrabbitrun": - when: - os: linux store: steam - /runrabbitrun.app: + "/runrabbitrun.app": - when: - os: mac store: steam - /runrabbitrun.exe: + "/runrabbitrun.exe": - when: - os: windows store: steam @@ -446293,7 +447521,7 @@ Run Roll Rumble: installDir: Run Roll Rumble: {} launch: - /RunRollRumble.exe: + "/RunRollRumble.exe": - when: - bit: 64 os: windows @@ -446307,7 +447535,7 @@ Run Run And Die: installDir: Run Run And Die: {} launch: - /rrad.exe: + "/rrad.exe": - when: - os: windows store: steam @@ -446317,7 +447545,7 @@ Run The Gamut: installDir: Run The Gamut: {} launch: - /Run The Gamut.exe: + "/Run The Gamut.exe": - when: - os: windows store: steam @@ -446327,7 +447555,7 @@ Run Thief: installDir: Run Thief: {} launch: - /Run_Thief.exe: + "/Run_Thief.exe": - when: - bit: 64 os: windows @@ -446338,7 +447566,7 @@ Run Turn Die: installDir: RunTurnDie: {} launch: - /RunTurnDie.exe: + "/RunTurnDie.exe": - when: - os: windows store: steam @@ -446348,15 +447576,15 @@ Run Zeus Run: installDir: Run Zeus Run: {} launch: - /Contents/MacOS/Mac x64: + "/Contents/MacOS/Mac x64": - when: - os: mac store: steam - /ZeusRunner.exe: + "/ZeusRunner.exe": - when: - os: windows store: steam - /ZeusRunner.x86_64: + "/ZeusRunner.x86_64": - when: - bit: 64 os: linux @@ -446367,7 +447595,7 @@ Run and Fire: installDir: Run and Fire: {} launch: - /launchpoint.exe: + "/launchpoint.exe": - when: - os: windows store: steam @@ -446377,11 +447605,11 @@ Run and Jump: installDir: Run and Jump: {} launch: - /RunAndJump.exe: + "/RunAndJump.exe": - when: - os: windows store: steam - /RunAndJumpMac.app/Contents/MacOS/RunAndJumpMac: + "/RunAndJumpMac.app/Contents/MacOS/RunAndJumpMac": - when: - os: mac store: steam @@ -446396,15 +447624,15 @@ Run or Die: installDir: Run or Die: {} launch: - /Contents/MacOS/RunOrDie: + "/Contents/MacOS/RunOrDie": - when: - os: mac store: steam - /RunOrDie: + "/RunOrDie": - when: - os: linux store: steam - /RunOrDie.exe: + "/RunOrDie.exe": - when: - os: windows store: steam @@ -446417,11 +447645,11 @@ Run! Bunny~绿绿小先生: installDir: Run!Bunny: {} launch: - /Run! Bunny.exe: + "/Run! Bunny.exe": - when: - os: windows store: steam - /Run!Bunny.app/Contents/MacOS/Run!Bunny: + "/Run!Bunny.app/Contents/MacOS/Run!Bunny": - when: - os: mac store: steam @@ -446431,58 +447659,58 @@ Run!ZombieFoods!: installDir: Run!ZombieFoods!: {} launch: - /Run!ZombieFoods!.exe: + "/Run!ZombieFoods!.exe": - when: - os: windows store: steam steam: id: 671800 -Run'N'Get: +"Run'N'Get": installDir: Running Girl: {} launch: - /Linux/RG.x86: + "/Linux/RG.x86": - when: - bit: 32 os: linux store: steam - /Linux/RG.x86_64: + "/Linux/RG.x86_64": - when: - bit: 64 os: linux store: steam - /Mac.app/Contents/MacOS/Mac: + "/Mac.app/Contents/MacOS/Mac": - when: - os: mac store: steam - /Running Girl.exe: + "/Running Girl.exe": - when: - os: windows store: steam steam: id: 937970 -'Run, Goo, Run': +"Run, Goo, Run": steam: id: 658950 -'Run, My Little Pixel': +"Run, My Little Pixel": installDir: - 'Run, my little pixel': {} + "Run, my little pixel": {} launch: - /RMLP.exe: + "/RMLP.exe": - when: - os: windows store: steam steam: id: 703270 -'Run, Run, Monsters!': +"Run, Run, Monsters!": steam: id: 913300 -'Run, chicken, run!': +"Run, chicken, run!": steam: id: 1000300 -'Run: The World In-Between': +"Run: The World In-Between": files: - /Godot/app_userdata/Run: + "/Godot/app_userdata/Run": tags: - config - save @@ -446493,7 +447721,7 @@ Run'N'Get: installDir: Run: {} launch: - /run.exe: + "/run.exe": - when: - os: windows store: steam @@ -446501,7 +447729,7 @@ Run'N'Get: id: 1548940 RunGunJumpGun: files: - /userdata//440550/remote/savegame.json: + "/userdata//440550/remote/savegame.json": tags: - save when: @@ -446510,11 +447738,11 @@ RunGunJumpGun: installDir: RunGunJumpGun: {} launch: - /rungunjumpgun.app/Contents/MacOS/rungunjumpgun: + "/rungunjumpgun.app/Contents/MacOS/rungunjumpgun": - when: - os: mac store: steam - /rungunjumpgun.exe: + "/rungunjumpgun.exe": - when: - os: windows store: steam @@ -446535,30 +447763,30 @@ RunZ: RunZ 2: steam: id: 699900 -Runa's Date: +"Runa's Date": steam: id: 1060540 -Runa's School Story: +"Runa's School Story": installDir: - Runa's School Story: {} + "Runa's School Story": {} launch: - /Contents/MacOS/Runa's School Story: + "/Contents/MacOS/Runa's School Story": - when: - os: mac store: steam - /Runa's School Story.exe: + "/Runa's School Story.exe": - when: - os: windows store: steam - /Runa's School Story.x86: + "/Runa's School Story.x86": - when: - os: linux store: steam steam: id: 981270 -'Runaway 2: The Dream of the Turtle': +"Runaway 2: The Dream of the Turtle": files: - /SAVEGAME: + "/SAVEGAME": tags: - save when: @@ -446568,10 +447796,10 @@ Runa's School Story: installDir: Runaway The Dream of the Turtle: {} launch: - /RunawayTDOTT.exe: + "/RunawayTDOTT.exe": - when: - store: steam - /Video Card Setup.exe: + "/Video Card Setup.exe": - when: - store: steam steam: @@ -446580,7 +447808,7 @@ Runaway Express Mystery: installDir: Runaway Express Mystery: {} launch: - /REM.exe: + "/REM.exe": - when: - os: windows store: steam @@ -446590,15 +447818,15 @@ Runaway Train: installDir: Runaway Train: {} launch: - /RunawayTrain.app: + "/RunawayTrain.app": - when: - os: mac store: steam - /RunawayTrain.x86_64: + "/RunawayTrain.x86_64": - when: - os: linux store: steam - /Runaway_Train_Win.exe: + "/Runaway_Train_Win.exe": - when: - os: windows store: steam @@ -446609,9 +447837,9 @@ Runaway VR: Runaway VR: {} steam: id: 687890 -'Runaway: A Road Adventure': +"Runaway: A Road Adventure": files: - /SAVEGAME: + "/SAVEGAME": tags: - save when: @@ -446621,22 +447849,22 @@ Runaway VR: installDir: Runaway A Road Adventure: {} launch: - /Runaway.exe: + "/Runaway.exe": - when: - store: steam - /Video Card Setup.exe: + "/Video Card Setup.exe": - when: - store: steam steam: id: 7210 -'Runaway: A Twist of Fate': +"Runaway: A Twist of Fate": files: - /ratof.config: + "/ratof.config": tags: - config when: - os: windows - /Pendulo Studios/RATOF/SAVEGAME: + "/Pendulo Studios/RATOF/SAVEGAME": tags: - save when: @@ -446646,10 +447874,10 @@ Runaway VR: installDir: Runaway A Twist Of Fate: {} launch: - /RATOF-Config.exe: + "/RATOF-Config.exe": - when: - store: steam - /RATOF.exe: + "/RATOF.exe": - when: - store: steam steam: @@ -446658,7 +447886,7 @@ Runbow: installDir: Runbow: {} launch: - /Runbow.exe: + "/Runbow.exe": - when: - os: windows store: steam @@ -446666,17 +447894,17 @@ Runbow: id: 464650 Rune: files: - /Save: + "/Save": tags: - save when: - os: windows - /System: + "/System": tags: - config when: - os: windows - /.loki/rune: + "/.loki/rune": tags: - config when: @@ -446686,16 +447914,16 @@ Rune: installDir: Rune Classic: {} launch: - /System/Rune.exe: - - arguments: '' + "/System/Rune.exe": + - arguments: "" when: - store: steam - workingDir: /System + workingDir: "/System" steam: id: 210950 Rune Factory 3 Special: files: - /Roaming/Rune Factory 3 Special/: + "/Roaming/Rune Factory 3 Special/": tags: - config - save @@ -446704,17 +447932,17 @@ Rune Factory 3 Special: installDir: Rune Factory 3 Special: {} launch: - /Launcher/RF3S_Launcher.exe: + "/Launcher/RF3S_Launcher.exe": - when: - store: steam - /Rune Factory 3 Special.exe: + "/Rune Factory 3 Special.exe": - when: - store: steam steam: id: 2243710 Rune Factory 4 Special: files: - /Rune Factory 4 Special: + "/Rune Factory 4 Special": tags: - config - save @@ -446723,7 +447951,7 @@ Rune Factory 4 Special: installDir: Rune Factory 4 Special: {} launch: - /RF4S.exe: + "/RF4S.exe": - when: - bit: 64 os: windows @@ -446732,7 +447960,7 @@ Rune Factory 4 Special: id: 1580240 Rune Factory 5: files: - /RF5/: + "/RF5/": tags: - config - save @@ -446747,12 +447975,12 @@ Rune Fencer Illyia: id: 1104600 Rune II: files: - /Rune/Saved/Config/WindowsNoEditor: + "/Rune/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /Rune/Saved/SaveGames: + "/Rune/Saved/SaveGames": tags: - save when: @@ -446760,7 +447988,7 @@ Rune II: installDir: Rune2: {} launch: - /RuneRagnarok.exe: + "/RuneRagnarok.exe": - when: - bit: 64 os: windows @@ -446771,11 +447999,11 @@ Rune Lord: installDir: Rune Lord: {} launch: - /Rune Lord.app/Contents/MacOS/Rune Lord: + "/Rune Lord.app/Contents/MacOS/Rune Lord": - when: - os: mac store: steam - /Rune Lord.exe: + "/Rune Lord.exe": - when: - os: windows store: steam @@ -446788,12 +448016,12 @@ RuneSage: id: 542030 RuneScape: files: - /jagex/runescape/settings.jcache: + "/jagex/runescape/settings.jcache": tags: - config when: - os: windows - /jagex/runescape/globalsettings.jcache: + "/jagex/runescape/globalsettings.jcache": tags: - config when: @@ -446801,31 +448029,31 @@ RuneScape: installDir: RuneScape: {} launch: - /bin/osx/RuneScape.app: + "/bin/osx/RuneScape.app": - when: - os: mac store: steam - /bin/win32/RuneScape.exe: + "/bin/win32/RuneScape.exe": - when: - bit: 32 os: windows store: steam - /bin/win64/RuneScape.exe: + "/bin/win64/RuneScape.exe": - when: - bit: 64 os: windows store: steam steam: id: 1343400 -'RuneScape: Idle Adventures': +"RuneScape: Idle Adventures": installDir: RuneScape Idle Adventures: {} launch: - /idle-adventures.app: + "/idle-adventures.app": - when: - os: mac store: steam - /idle-adventures.exe: + "/idle-adventures.exe": - when: - os: windows store: steam @@ -446837,17 +448065,10 @@ RuneTech: steam: id: 857890 Runefall: - files: - /Runefall: - tags: - - config - - save - when: - - os: windows installDir: Runefall: {} launch: - /Runefall.exe: + "/Runefall.exe": - when: - os: windows store: steam @@ -446857,30 +448078,30 @@ Runefall 2: installDir: Runefall 2: {} launch: - /Runefall 2 CE.app: + "/Runefall 2 CE.app": - when: - os: mac store: steam - /Runefall 2 CE.exe: + "/Runefall 2 CE.exe": - when: - os: windows store: steam - /Runefall2CE.x86_64: + "/Runefall2CE.x86_64": - when: - os: linux store: steam steam: id: 1129660 -'Runeous: Part One': +"Runeous: Part One": installDir: Runeous - Part One: {} launch: - /nw.exe: - - arguments: '--in-process-gpu' + "/nw.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam - /nwjs.app: + "/nwjs.app": - when: - os: mac store: steam @@ -446890,7 +448111,7 @@ Runers: installDir: Runers: {} launch: - /Runers.exe: + "/Runers.exe": - when: - os: windows store: steam @@ -446900,11 +448121,11 @@ Runes: installDir: Runes: {} launch: - /Runes.exe: + "/Runes.exe": - when: - os: windows store: steam - /Runes.x86: + "/Runes.x86": - when: - os: linux store: steam @@ -446914,11 +448135,11 @@ Runes of Avalon - Path of Magic: installDir: Runes of Avalon - Path of Magic: {} launch: - /Runes of Avalon Path of Magic.app: + "/Runes of Avalon Path of Magic.app": - when: - os: mac store: steam - /Runes of Avalon Path of Magic.exe: + "/Runes of Avalon Path of Magic.exe": - when: - os: windows store: steam @@ -446928,11 +448149,11 @@ Runes of Brennos: installDir: Runes of Brennos: {} launch: - /RunesOfBrennos.app: + "/RunesOfBrennos.app": - when: - os: mac store: steam - /RunesOfBrennos.exe: + "/RunesOfBrennos.exe": - when: - os: windows store: steam @@ -446947,26 +448168,26 @@ Runes of Pandemonium: installDir: Pandemonium: {} launch: - /PandemoniumSteamAL.exe: + "/PandemoniumSteamAL.exe": - when: - os: windows store: steam steam: id: 1865730 -'Runes: The Forgotten Path': +"Runes: The Forgotten Path": installDir: Runes The Forgotten Path: {} steam: id: 457130 -'Runespell: Overture': +"Runespell: Overture": installDir: runespelloverture: {} launch: - /Runespell.app: + "/Runespell.app": - when: - os: mac store: steam - /Runespell.exe: + "/Runespell.exe": - when: - os: windows store: steam @@ -446974,7 +448195,7 @@ Runes of Pandemonium: id: 102200 Runestone Keeper: files: - /AppData/LocalLow/cimu/RuneStoneKeeper: + "/AppData/LocalLow/cimu/RuneStoneKeeper": tags: - save when: @@ -446984,11 +448205,11 @@ Runestone Keeper: installDir: Runestone Keeper: {} launch: - /RuneStoneKeeper.app: + "/RuneStoneKeeper.app": - when: - os: mac store: steam - /RuneStoneKeeper.exe: + "/RuneStoneKeeper.exe": - when: - os: windows store: steam @@ -446998,11 +448219,11 @@ Runestone Keeper: - config steam: id: 339400 -'Runewards: Strategy Card Game': +"Runewards: Strategy Card Game": installDir: Runewards: {} launch: - /Runewards.exe: + "/Runewards.exe": - when: - bit: 64 os: windows @@ -447013,7 +448234,7 @@ Runeyana: installDir: Runeyana: {} launch: - /Runeyana.exe: + "/Runeyana.exe": - when: - os: windows store: steam @@ -447021,12 +448242,12 @@ Runeyana: id: 463670 Runic Rampage: files: - /unity3d/Electrocosmos/Runic Rampage/prefs: + "/unity3d/Electrocosmos/Runic Rampage/prefs": tags: - config when: - os: linux - /unity3d/Electrocosmos/Runic Rampage/savegame.xml: + "/unity3d/Electrocosmos/Runic Rampage/savegame.xml": tags: - save when: @@ -447034,21 +448255,24 @@ Runic Rampage: installDir: Runic Rampage: {} launch: - /Runic Rampage.app/Contents/MacOS/Runic Rampage: + "/Runic Rampage.app/Contents/MacOS/Runic Rampage": - when: - os: mac store: steam - /Runic Rampage.exe: + "/Runic Rampage.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam - /Runic Rampage.x86: + "/Runic Rampage.x86": - when: - bit: 32 os: linux store: steam - /Runic Rampage.x86_64: + "/Runic Rampage.x86_64": - when: - bit: 64 os: linux @@ -447058,11 +448282,11 @@ Runic Rampage: Runner: steam: id: 781560 -'Runner Heroes: The Curse of Night and Day': +"Runner Heroes: The Curse of Night and Day": installDir: Runner Heroes: {} launch: - /RunnerHeroes.exe: + "/RunnerHeroes.exe": - when: - os: windows store: steam @@ -447070,12 +448294,12 @@ Runner: id: 1157820 Runner3: files: - /Runner3.sav: + "/Runner3.sav": tags: - save when: - os: windows - /userdata//516130/remote: + "/userdata//516130/remote": tags: - save when: @@ -447085,11 +448309,11 @@ Runner3: installDir: Runner3: {} launch: - /Runner3.app: + "/Runner3.app": - when: - os: mac store: steam - /Runner3.exe: + "/Runner3.exe": - when: - os: windows store: steam @@ -447103,7 +448327,7 @@ Running Black: installDir: Running Black: {} launch: - /RunningBlack.exe: + "/RunningBlack.exe": - when: - store: steam steam: @@ -447112,7 +448336,7 @@ Running Gods: installDir: Running Gods: {} launch: - /Running Gods Steam.exe: + "/Running Gods Steam.exe": - when: - os: windows store: steam @@ -447122,7 +448346,7 @@ Running King: installDir: Running King: {} launch: - /RunningKing.exe: + "/RunningKing.exe": - when: - os: windows store: steam @@ -447132,7 +448356,7 @@ Running Man 3D: installDir: Running Man 3D: {} launch: - /RM3D.exe: + "/RM3D.exe": - when: - os: windows store: steam @@ -447142,7 +448366,7 @@ Running Man 3D Part2: installDir: Running Man 3D Part2: {} launch: - /RunningMan3DPart2.exe: + "/RunningMan3DPart2.exe": - when: - os: windows store: steam @@ -447152,8 +448376,8 @@ Running Naked Simulator 2019: installDir: Running Naked Simulator 2019: {} launch: - /Running Naked Simulator 2019.exe: - - arguments: '-fullscreen' + "/Running Naked Simulator 2019.exe": + - arguments: "-fullscreen" when: - os: windows store: steam @@ -447163,7 +448387,7 @@ Running Ninja: installDir: Running Ninja: {} launch: - /RunningNinja.exe: + "/RunningNinja.exe": - when: - os: windows store: steam @@ -447176,7 +448400,7 @@ Running Shadow: installDir: Running Shadow: {} launch: - /runningshadow.exe: + "/runningshadow.exe": - when: - os: windows store: steam @@ -447186,7 +448410,7 @@ Running Tadpoles: installDir: Running Tadpoles: {} launch: - /RT.exe: + "/RT.exe": - when: - store: steam steam: @@ -447195,20 +448419,20 @@ Running Through Russia: installDir: Running Through Russia: {} launch: - /RTR_mac.app: + "/RTR_mac.app": - when: - os: mac store: steam - /game.exe: + "/game.exe": - when: - os: windows store: steam - /game.x86: + "/game.x86": - when: - bit: 32 os: linux store: steam - /game.x86_64: + "/game.x86_64": - when: - bit: 64 os: linux @@ -447219,21 +448443,21 @@ Running Through Russia 2: installDir: Running Through Russia 2: {} launch: - /Linux.x86: + "/Linux.x86": - when: - bit: 32 os: linux store: steam - /Linux.x86_64: + "/Linux.x86_64": - when: - bit: 64 os: linux store: steam - /MacOSX.app: + "/MacOSX.app": - when: - os: mac store: steam - /Windows.exe: + "/Windows.exe": - when: - os: windows store: steam @@ -447244,22 +448468,22 @@ Running With Dinosaurs: id: 884520 Running with Rifles: files: - /-running_with_rifles/savegames: + "/-running_with_rifles/savegames": tags: - save when: - os: linux - /.running_with_rifles: + "/.running_with_rifles": tags: - config when: - os: linux - /Running with rifles: + "/Running with rifles": tags: - config when: - os: windows - /Running with rifles/savegames: + "/Running with rifles/savegames": tags: - save when: @@ -447267,35 +448491,35 @@ Running with Rifles: installDir: RunningWithRifles: {} launch: - /RunningWithRifles.app: + "/RunningWithRifles.app": - when: - os: mac store: steam - /RunningWithRifles.app/Contents/MacOS/Config.app: + "/RunningWithRifles.app/Contents/MacOS/Config.app": - when: - os: mac store: steam - /RunningWithRifles.app/Contents/MacOS/Config.app/Contents/MacOS/Config64: + "/RunningWithRifles.app/Contents/MacOS/Config.app/Contents/MacOS/Config64": - when: - os: mac store: steam - /RunningWithRifles.app/Contents/MacOS/RunningWithRifles64: + "/RunningWithRifles.app/Contents/MacOS/RunningWithRifles64": - when: - os: mac store: steam - /launch_config: + "/launch_config": - when: - os: linux store: steam - /launch_game: + "/launch_game": - when: - os: linux store: steam - /rwr_config.exe: + "/rwr_config.exe": - when: - os: windows store: steam - /rwr_game.exe: + "/rwr_game.exe": - when: - os: windows store: steam @@ -447305,7 +448529,7 @@ RunningDead: installDir: RunningDead: {} launch: - /nw.exe: + "/nw.exe": - when: - bit: 64 os: windows @@ -447316,7 +448540,7 @@ Runoveryou: installDir: Runoveryou: {} launch: - /runoveryou.exe: + "/runoveryou.exe": - when: - os: windows store: steam @@ -447326,11 +448550,11 @@ Runster: installDir: Fitforce: {} launch: - /Contents/MacOS/Fitforce: + "/Contents/MacOS/Fitforce": - when: - os: mac store: steam - /Fitforce.exe: + "/Fitforce.exe": - when: - os: windows store: steam @@ -447340,15 +448564,15 @@ Runt of the Litter: installDir: Runt of the Litter: {} launch: - /Runt of the Litter.app/Contents/MacOS/Runt of the Litter: + "/Runt of the Litter.app/Contents/MacOS/Runt of the Litter": - when: - os: mac store: steam - /RuntOfTheLitter: + "/RuntOfTheLitter": - when: - os: linux store: steam - /RuntOfTheLitter.exe: + "/RuntOfTheLitter.exe": - when: - os: windows store: steam @@ -447358,15 +448582,15 @@ Rupert and Riley Shipwrecked: installDir: Rupert and Riley Shipwrecked: {} launch: - /Rupert n Riley Shipwrecked.exe: + "/Rupert n Riley Shipwrecked.exe": - when: - os: windows store: steam - /RupertAndRiley.x86_64: + "/RupertAndRiley.x86_64": - when: - os: linux store: steam - /RupertAndRiley_Shipwrecked.app/Contents/MacOS/RupertAndRiley_Shipwrecked: + "/RupertAndRiley_Shipwrecked.app/Contents/MacOS/RupertAndRiley_Shipwrecked": - when: - os: mac store: steam @@ -447374,13 +448598,13 @@ Rupert and Riley Shipwrecked: id: 1043060 Rush: files: - /userdata//38720/remote: + "/userdata//38720/remote": tags: - config - save when: - store: steam - /twotribes/rush: + "/twotribes/rush": tags: - config - save @@ -447389,15 +448613,15 @@ Rush: installDir: RUSH: {} launch: - /RUSH.app: + "/RUSH.app": - when: - os: mac store: steam - /RUSH.bin.x86: + "/RUSH.bin.x86": - when: - os: linux store: steam - /rush.exe: + "/rush.exe": - when: - os: windows store: steam @@ -447410,7 +448634,7 @@ Rush (2018): id: 844040 Rush Bros.: files: - /userdata//234490/remote/Ghosts/*.bin: + "/userdata//234490/remote/Ghosts/*.bin": tags: - save when: @@ -447418,13 +448642,13 @@ Rush Bros.: installDir: Rush Bros: {} launch: - /Rush Bros.app: - - arguments: '-console' + "/Rush Bros.app": + - arguments: "-console" when: - os: mac store: steam - /Rush Bros.exe: - - arguments: '-console' + "/Rush Bros.exe": + - arguments: "-console" when: - os: windows store: steam @@ -447439,24 +448663,24 @@ Rush Rover: installDir: Rush Rover: {} launch: - /RushRover.exe: + "/RushRover.exe": - when: - store: steam steam: id: 438320 Rush for Berlin: files: - /Profiles: + "/Profiles": tags: - save when: - os: windows - /options.ini: + "/options.ini": tags: - config when: - os: windows - /state.ini: + "/state.ini": tags: - config when: @@ -447464,24 +448688,24 @@ Rush for Berlin: installDir: Rush for Berlin Gold Edition: {} launch: - /RushForTheBomb.exe: + "/RushForTheBomb.exe": - when: - store: steam steam: id: 40320 Rush for Glory: files: - /game.config: + "/game.config": tags: - config when: - os: windows - /RushForGlory/game.config: + "/RushForGlory/game.config": tags: - config when: - os: windows - /RushForGlory/profiles.dat: + "/RushForGlory/profiles.dat": tags: - save when: @@ -447489,25 +448713,25 @@ Rush for Glory: installDir: Rush for Glory: {} launch: - /RfG.exe: + "/RfG.exe": - when: - store: steam steam: id: 303470 -'Rush for Gold: Alaska': +"Rush for Gold: Alaska": installDir: RushforgoldAlaska: {} launch: - /gold_rush.exe: + "/gold_rush.exe": - when: - store: steam steam: id: 435140 -'Rush for Gold: California': +"Rush for Gold: California": installDir: Rush for gold California: {} launch: - /gold_rush_california.exe: + "/gold_rush_california.exe": - when: - store: steam steam: @@ -447516,7 +448740,7 @@ Rush on Rome: installDir: Rush on Rome: {} launch: - /RushOnRome.exe: + "/RushOnRome.exe": - when: - os: windows store: steam @@ -447526,28 +448750,30 @@ Rush to Adventure: installDir: Rush to Adventure: {} launch: - /Rush to Adventure.exe: + "/Rush to Adventure.exe": - when: - os: windows store: steam steam: id: 674210 -'Rush: A Disney Pixar Adventure': +"Rush: A Disney Pixar Adventure": files: - /Saved Games/Rush: + "/Saved Games/Rush": tags: - save when: - - store: steam - /Rush/UserCfg: + - os: windows + store: steam + "/Rush/UserCfg": tags: - config when: - - store: steam + - os: windows + store: steam installDir: Rush: {} launch: - /Rushx64.exe: + "/Rushx64.exe": - when: - bit: 64 os: windows @@ -447558,7 +448784,7 @@ Russia Battlegrounds: installDir: RUSSIA BATTLEGROUNDS: {} launch: - /RUSSIA BATTLEGROUNDS.exe: + "/RUSSIA BATTLEGROUNDS.exe": - when: - os: windows store: steam @@ -447571,7 +448797,7 @@ Russia Simulator: installDir: RUSSI ARTYOM SIMULATOR: {} launch: - /RussiArtyomSimulator.exe: + "/RussiArtyomSimulator.exe": - when: - bit: 64 os: windows @@ -447585,7 +448811,7 @@ Russian AYE Horror: installDir: Russian AYE Horror: {} launch: - /RussianAYE.exe: + "/RussianAYE.exe": - when: - bit: 64 os: windows @@ -447596,7 +448822,7 @@ Russian AYE Race: installDir: Russian AYE Race: {} launch: - /Russian Aye Race.exe: + "/Russian Aye Race.exe": - when: - os: windows store: steam @@ -447605,15 +448831,15 @@ Russian AYE Race: Russian Car Driver: steam: id: 566990 -'Russian Car Driver 2: ZIL 130': +"Russian Car Driver 2: ZIL 130": steam: id: 1138390 Russian Fishing 4: installDir: RussianFishing4: {} launch: - /rf4_x64.exe: - - arguments: '-steam' + "/rf4_x64.exe": + - arguments: "-steam" when: - bit: 64 os: windows @@ -447624,11 +448850,11 @@ Russian Front: installDir: Russian Front: {} launch: - /RussianFront.app: + "/RussianFront.app": - when: - os: mac store: steam - /RussianFront.exe: + "/RussianFront.exe": - when: - os: windows store: steam @@ -447638,7 +448864,7 @@ Russian Gangsta in Hell: installDir: Russian Gangsta In HELL: {} launch: - /Classic_Shooter_v1_5.exe: + "/Classic_Shooter_v1_5.exe": - when: - bit: 64 os: windows @@ -447647,12 +448873,12 @@ Russian Gangsta in Hell: id: 854190 Russian Horror Story: files: - /renpy/config.py: + "/renpy/config.py": tags: - config when: - os: windows - /renpy/RHS-1437322581: + "/renpy/RHS-1437322581": tags: - save when: @@ -447663,16 +448889,19 @@ Russian Life Simulator: installDir: Russian Life Simulator: {} launch: - /Contents/MacOS/RussianLifeSimulator: + "/Contents/MacOS/RussianLifeSimulator": - when: - os: mac store: steam - /Russian Life Simulator.exe: + "/Russian Life Simulator.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam - /RussianLifeSimulator.x86_64: + "/RussianLifeSimulator.x86_64": - when: - os: linux store: steam @@ -447681,14 +448910,14 @@ Russian Life Simulator: Russian Love Story: steam: id: 603470 -'Russian Peace Duck: Take my Nalogi': +"Russian Peace Duck: Take my Nalogi": steam: id: 833410 -'Russian Prison Sport: OCHKO': +"Russian Prison Sport: OCHKO": installDir: Russian Prison Sport OCHKO: {} launch: - /ochko.exe: + "/ochko.exe": - when: - store: steam steam: @@ -447697,7 +448926,7 @@ Russian Prisoner VS Nazi Zombies: installDir: Russian Prisoner VS Nazi Zombies: {} launch: - /Russian Prisoner VS Nazi Zombies.exe: + "/Russian Prisoner VS Nazi Zombies.exe": - when: - os: windows store: steam @@ -447719,15 +448948,15 @@ Russian Subway Dogs: installDir: Russian Subway Dogs: {} launch: - /RussianSubwayDogs.app: + "/RussianSubwayDogs.app": - when: - os: mac store: steam - /runner: + "/runner": - when: - os: linux store: steam - /russian_subway_dogs.exe: + "/russian_subway_dogs.exe": - when: - os: windows store: steam @@ -447737,7 +448966,7 @@ Russian SuperHero Dead Ivan: installDir: Russian SuperHero Dead Ivan: {} launch: - /DeadIvan.exe: + "/DeadIvan.exe": - when: - os: windows store: steam @@ -447747,12 +448976,12 @@ Russian Test: installDir: Пацанский цитатник Russian Test: {} launch: - /Russia.exe: + "/Russia.exe": - when: - store: steam steam: id: 1088880 -'Russian Underground: VR': +"Russian Underground: VR": steam: id: 563510 Russian VR Coasters: @@ -447764,7 +448993,7 @@ Russian World: installDir: Russian World: {} launch: - /Russian World.exe: + "/Russian World.exe": - when: - os: windows store: steam @@ -447782,7 +449011,7 @@ Russpuppy Kid Games: installDir: Russpuppy Kid Games: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -447790,7 +449019,7 @@ Russpuppy Kid Games: id: 932420 Rust: files: - /cfg/client.cfg: + "/cfg/client.cfg": tags: - config when: @@ -447800,18 +449029,18 @@ Rust: installDir: Rust: {} launch: - /rust: - - arguments: '-logfile \"output_log.txt\"' + "/rust": + - arguments: "-logfile \\\"output_log.txt\\\"" when: - os: linux store: steam - /rust.app: - - arguments: '-logfile \"output_log.txt\"' + "/rust.app": + - arguments: "-logfile \\\"output_log.txt\\\"" when: - os: mac store: steam - /rust.exe: - - arguments: '-logfile \"output_log.txt\"' + "/rust.exe": + - arguments: "-logfile \\\"output_log.txt\\\"" when: - os: windows store: steam @@ -447821,15 +449050,15 @@ Rustbucket Rumble: installDir: Rustbucket Rumble: {} launch: - /RustbucketRumble: + "/RustbucketRumble": - when: - os: linux store: steam - /RustbucketRumble.app: + "/RustbucketRumble.app": - when: - os: mac store: steam - /RustbucketRumble.exe: + "/RustbucketRumble.exe": - when: - os: windows store: steam @@ -447837,27 +449066,27 @@ Rustbucket Rumble: id: 351140 Rusted Moss: files: - /options.ini: + "/options.ini": tags: - config when: - os: windows - /Rusted_Moss/*.save: + "/Rusted_Moss/*.save": tags: - save when: - os: windows - /Rusted_Moss/f_settings_: + "/Rusted_Moss/f_settings_": tags: - config when: - os: windows - /Rusted_Moss/hook_mode: + "/Rusted_Moss/hook_mode": tags: - config when: - os: windows - /Rusted_Moss/language_set__: + "/Rusted_Moss/language_set__": tags: - config when: @@ -447865,7 +449094,7 @@ Rusted Moss: installDir: Mose: {} launch: - /Rusted_Moss.exe: + "/Rusted_Moss.exe": - when: - store: steam steam: @@ -447874,20 +449103,18 @@ Rusted Warfare: installDir: Rusted Warfare: {} launch: - /Rusted Warfare.exe: - - arguments: '-steam' + "/Rusted Warfare.exe": + - arguments: "-steam" when: - os: windows store: steam - /jvm-mac/Contents/Home/bin/Rusted Warfare: - - arguments: >- - -Xdock:name=\"Rusted Warfare\" -Xdock:icon=\"res/drawable/icon_window.png\" -Dfile.encoding=UTF-8 - -Djava.library.path=. -cp \"game-lib.jar:libs/*\" com.corrodinggames.rts.java.Main -steam -log lastrun.log + "/jvm-mac/Contents/Home/bin/Rusted Warfare": + - arguments: "-Xdock:name=\\\"Rusted Warfare\\\" -Xdock:icon=\\\"res/drawable/icon_window.png\\\" -Dfile.encoding=UTF-8 -Djava.library.path=. -cp \\\"game-lib.jar:libs/*\\\" com.corrodinggames.rts.java.Main -steam -log lastrun.log" when: - os: mac store: steam - /rustedWarfareLinux.sh: - - arguments: '-steam' + "/rustedWarfareLinux.sh": + - arguments: "-steam" when: - os: linux store: steam @@ -447895,7 +449122,7 @@ Rusted Warfare: id: 647960 Rustler: files: - /AppData/LocalLow/JutsuGames/Rustler: + "/AppData/LocalLow/JutsuGames/Rustler": tags: - save when: @@ -447903,11 +449130,11 @@ Rustler: installDir: Rustler: {} launch: - /Rustler.app: + "/Rustler.app": - when: - os: mac store: steam - /Rustler.exe: + "/Rustler.exe": - when: - os: windows store: steam @@ -447917,20 +449144,20 @@ Rusty Hearts: installDir: Rusty Hearts: {} launch: - /clientlauncher.exe: - - arguments: 'steam:1' + "/clientlauncher.exe": + - arguments: "steam:1" when: - store: steam steam: id: 36630 Rusty Lake Hotel: files: - /com.RustyLake.RustyLakeHotel/Local Store/#SharedObjects/RustyLakeHotel.swf/RustySave4.sol: + "/com.RustyLake.RustyLakeHotel/Local Store/#SharedObjects/RustyLakeHotel.swf/RustySave4.sol": tags: - save when: - os: windows - /Rusty Lake/Hotel/saveGame.sav: + "/Rusty Lake/Hotel/saveGame.sav": tags: - save when: @@ -447940,11 +449167,11 @@ Rusty Lake Hotel: installDir: Rusty Lake Hotel: {} launch: - /RustyLakeHotel.app: + "/RustyLakeHotel.app": - when: - os: mac store: steam - /RustyLakeHotel.exe: + "/RustyLakeHotel.exe": - when: - os: windows store: steam @@ -447952,7 +449179,7 @@ Rusty Lake Hotel: id: 435120 Rusty Lake Paradise: files: - /Rusty Lake/Paradise/saveGame.sav: + "/Rusty Lake/Paradise/saveGame.sav": tags: - save when: @@ -447962,24 +449189,24 @@ Rusty Lake Paradise: installDir: Rusty Lake Paradise: {} launch: - /RustyLakeParadise.app: + "/RustyLakeParadise.app": - when: - os: mac store: steam - /RustyLakeParadise.exe: + "/RustyLakeParadise.exe": - when: - os: windows store: steam steam: id: 744190 -'Rusty Lake: Roots': +"Rusty Lake: Roots": files: - /com.RustyLake.RustyLakeRoots/Local Store/#SharedObjects/RustyLakeRoots.swf/Tree11.sol: + "/com.RustyLake.RustyLakeRoots/Local Store/#SharedObjects/RustyLakeRoots.swf/Tree11.sol": tags: - save when: - os: windows - /Rusty Lake/Roots/saveGame.sav: + "/Rusty Lake/Roots/saveGame.sav": tags: - save when: @@ -447989,11 +449216,11 @@ Rusty Lake Paradise: installDir: Rusty Lake Roots: {} launch: - /RustyLakeRoots.app: + "/RustyLakeRoots.app": - when: - os: mac store: steam - /RustyLakeRoots.exe: + "/RustyLakeRoots.exe": - when: - os: windows store: steam @@ -448003,7 +449230,7 @@ Rusty Runner: installDir: Rusty Runner: {} launch: - /Rusty Runner.exe: + "/Rusty Runner.exe": - when: - store: steam steam: @@ -448015,7 +449242,7 @@ Ruthless Conquest: installDir: Ruthless Conquest: {} launch: - /RuthlessConquest.exe: + "/RuthlessConquest.exe": - when: - store: steam steam: @@ -448024,7 +449251,7 @@ Ruthless Safari: installDir: Ruthless Safari: {} launch: - /Ruthless Safari.exe: + "/Ruthless Safari.exe": - when: - os: windows store: steam @@ -448034,11 +449261,11 @@ Ruya: installDir: Ruya: {} launch: - /Ruya.app: + "/Ruya.app": - when: - os: mac store: steam - /Ruya.exe: + "/Ruya.exe": - when: - os: windows store: steam @@ -448048,20 +449275,20 @@ Ruzar - The Life Stone: installDir: Ruzar - The Life Stone: {} launch: - /Contents/MacOS/Ruzar - The Life Stone: + "/Contents/MacOS/Ruzar - The Life Stone": - when: - os: mac store: steam - /Ruzar_TheLifeStone.exe: + "/Ruzar_TheLifeStone.exe": - when: - os: windows store: steam - /Ruzar_TheLifeStone.x86: + "/Ruzar_TheLifeStone.x86": - when: - bit: 32 os: linux store: steam - /Ruzar_TheLifeStone.x86_64: + "/Ruzar_TheLifeStone.x86_64": - when: - bit: 64 os: linux @@ -448072,7 +449299,7 @@ Ruzh Delta Z: installDir: Ruzh Delta Z: {} launch: - /RuzhDeltaZ.exe: + "/RuzhDeltaZ.exe": - when: - os: windows store: steam @@ -448092,23 +449319,23 @@ Rym 9000: installDir: Rym 9000: {} launch: - /Rym 9000.app: + "/Rym 9000.app": - when: - os: mac store: steam - /Rym 9000.exe: - - arguments: '-force-d3d9' + "/Rym 9000.exe": + - arguments: "-force-d3d9" when: - os: windows store: steam - /Rym 9000.x86: - - arguments: '-force-opengl' + "/Rym 9000.x86": + - arguments: "-force-opengl" when: - bit: 32 os: linux store: steam - /Rym 9000.x86_64: - - arguments: '-force-opengl' + "/Rym 9000.x86_64": + - arguments: "-force-opengl" when: - bit: 64 os: linux @@ -448117,7 +449344,7 @@ Rym 9000: id: 774561 RymdResa: files: - /save.rymdresa: + "/save.rymdresa": tags: - save when: @@ -448125,17 +449352,17 @@ RymdResa: installDir: RymdResa: {} launch: - /RymdResa: - - arguments: '--disable-gpu' + "/RymdResa": + - arguments: "--disable-gpu" when: - os: linux store: steam - /RymdResa.app: - - arguments: '--file-descriptor-limit=10000' + "/RymdResa.app": + - arguments: "--file-descriptor-limit=10000" when: - os: mac store: steam - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -448143,17 +449370,17 @@ RymdResa: id: 269690 Rymdkapsel: files: - /Library/Application Support/rymdkapsel: + "/Library/Application Support/rymdkapsel": tags: - save when: - os: mac - /grapefrukt games/rymdkapsel: + "/grapefrukt games/rymdkapsel": tags: - save when: - os: windows - /com.grapefrukt.games.rymdkapsel1: + "/com.grapefrukt.games.rymdkapsel1": tags: - save when: @@ -448161,43 +449388,43 @@ Rymdkapsel: installDir: rymdkapsel: {} launch: - /run.sh: + "/run.sh": - when: - os: linux store: steam - /rymdkapsel.app/Contents/MacOS/rymdkapsel: + "/rymdkapsel.app/Contents/MacOS/rymdkapsel": - when: - os: mac store: steam - workingDir: /rymdkapsel.app - /rymdkapsel.exe: + workingDir: "/rymdkapsel.app" + "/rymdkapsel.exe": - when: - os: windows store: steam steam: id: 253790 -'Rynn''s Adventure: Trouble in the Enchanted Forest': +"Rynn's Adventure: Trouble in the Enchanted Forest": installDir: - Rynn's Adventure Trouble in the Enchanted Forest: {} + "Rynn's Adventure Trouble in the Enchanted Forest": {} launch: - /Rynn's Adventure.app/Contents/MacOS/Rynn's Adventure: + "/Rynn's Adventure.app/Contents/MacOS/Rynn's Adventure": - when: - os: mac store: steam - /rynngame.exe: + "/rynngame.exe": - when: - os: windows store: steam steam: id: 420500 -'Ryse: Son of Rome': +"Ryse: Son of Rome": files: - /system.cfg: + "/system.cfg": tags: - config when: - os: windows - /userdata//302510/remote: + "/userdata//302510/remote": tags: - save when: @@ -448206,7 +449433,7 @@ Rymdkapsel: installDir: Ryse Son of Rome: {} launch: - /Bin64/Ryse.exe: + "/Bin64/Ryse.exe": - when: - bit: 64 os: windows @@ -448217,7 +449444,7 @@ Rysen: installDir: Rysen: {} launch: - /Rysen.exe: + "/Rysen.exe": - when: - os: windows store: steam @@ -448227,30 +449454,30 @@ Ryzom: installDir: Ryzom: {} launch: - /Ryzom.app: + "/Ryzom.app": - when: - os: mac store: steam - /ryzom_client: + "/ryzom_client": - when: - os: linux store: steam - /ryzom_client_r.exe: + "/ryzom_client_r.exe": - when: - os: windows store: steam steam: id: 373720 -'Réussir : Code de la Route': +"Réussir : Code de la Route": installDir: Réussir Code de la Route: {} launch: - /Reussir Code de la route.exe: + "/Reussir Code de la route.exe": - when: - bit: 64 os: windows store: steam - /Reussir Code de la route.app: + "/Reussir Code de la route.app": - when: - os: mac store: steam @@ -448258,7 +449485,7 @@ Ryzom: id: 1109840 Röki: files: - /AppData/LocalLow/Polygon Treehouse/Röki: + "/AppData/LocalLow/Polygon Treehouse/Röki": tags: - save when: @@ -448272,11 +449499,11 @@ Röki: installDir: Röki: {} launch: - /Roki.app: + "/Roki.app": - when: - os: mac store: steam - /Röki.exe: + "/Röki.exe": - when: - os: windows store: steam @@ -448290,24 +449517,24 @@ RŌA: installDir: ROA: {} launch: - /ROA.exe: + "/ROA.exe": - when: - os: windows store: steam steam: id: 851880 -'S-COPTER: Trials of Quick Fingers and Logic': +"S-COPTER: Trials of Quick Fingers and Logic": installDir: S-COPTER: {} launch: - /S-COPTER.exe: + "/S-COPTER.exe": - when: - store: steam steam: id: 596260 -'S.A.I.A.''s Awakening: A Robothorium Visual Novel': +"S.A.I.A.'s Awakening: A Robothorium Visual Novel": files: - /AppData/LocalLow/GoblinzStudio/RobothoriumVisualNovel: + "/AppData/LocalLow/GoblinzStudio/RobothoriumVisualNovel": tags: - save when: @@ -448315,15 +449542,15 @@ RŌA: installDir: S.A.I.A awaknening a Robothorium visual novel: {} launch: - /RobothoriumVisualNovel.app: + "/RobothoriumVisualNovel.app": - when: - os: mac store: steam - /RobothoriumVisualNovel.exe: + "/RobothoriumVisualNovel.exe": - when: - os: windows store: steam - /RobothoriumVisualNovel.x86: + "/RobothoriumVisualNovel.x86": - when: - os: linux store: steam @@ -448337,7 +449564,7 @@ S.F.77: installDir: SF77: {} launch: - /SF77.exe: + "/SF77.exe": - when: - os: windows store: steam @@ -448347,7 +449574,7 @@ S.K.I.L.L. - Special Force 2: installDir: SKILL: {} launch: - /DFUBG.exe: + "/DFUBG.exe": - when: - store: steam steam: @@ -448356,11 +449583,11 @@ S.O.R.S: installDir: S.O.R.S: {} launch: - /SORS v2 final.exe: + "/SORS v2 final.exe": - when: - os: windows store: steam - /SORSv1.01.app/Contents/MacOS/SORSv1.01: + "/SORSv1.01.app/Contents/MacOS/SORSv1.01": - when: - os: mac store: steam @@ -448370,28 +449597,31 @@ S.P.I.C.E Arena: installDir: S.P.I.C.E arena: {} launch: - /linux32/nw: + "/linux32/nw": - when: - bit: 32 os: linux store: steam - /linux64/nw: + "/linux64/nw": - when: - bit: 64 os: linux store: steam - /nw.exe: + "/nw.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam - /osx64/s.p.i.c.earena.app: + "/osx64/s.p.i.c.earena.app": - when: - os: mac store: steam steam: id: 789200 -'S.T.A.L.K.E.R. 2: Heart of Chornobyl': +"S.T.A.L.K.E.R. 2: Heart of Chornobyl": gog: id: 1848734189 id: @@ -448400,34 +449630,36 @@ S.P.I.C.E Arena: - 1769087520 steam: id: 1643320 -'S.T.A.L.K.E.R.: Call of Pripyat': +"S.T.A.L.K.E.R.: Call of Pripyat": files: - /_appdata_: + "/_appdata_": tags: - config when: - store: steam - /_appdata_/savedgames: + "/_appdata_/savedgames": tags: - save when: - store: steam - /Stalker-COP: - tags: - - config - when: - - store: gog - /Stalker-COP/savedgames: - tags: - - save - when: - - store: gog - /Public Documents/S.T.A.L.K.E.R. - Call of Pripyat: + "/Stalker-COP": tags: - config when: - os: windows - /Public Documents/S.T.A.L.K.E.R. - Call of Pripyat/savedgames: + store: gog + "/Stalker-COP/savedgames": + tags: + - save + when: + - os: windows + store: gog + "/Public Documents/S.T.A.L.K.E.R. - Call of Pripyat": + tags: + - config + when: + - os: windows + "/Public Documents/S.T.A.L.K.E.R. - Call of Pripyat/savedgames": tags: - save when: @@ -448437,29 +449669,29 @@ S.P.I.C.E Arena: installDir: Stalker Call of Pripyat: {} launch: - /bin/xrengine.exe: + "/bin/xrengine.exe": - when: - store: steam steam: id: 41700 -'S.T.A.L.K.E.R.: Clear Sky': +"S.T.A.L.K.E.R.: Clear Sky": files: - /_appdata_: + "/_appdata_": tags: - config when: - store: steam - /_appdata_/savedgames: + "/_appdata_/savedgames": tags: - save when: - store: steam - /Stalker-STCS: + "/Stalker-STCS": tags: - config when: - os: windows - /Stalker-STCS/savedgames: + "/Stalker-STCS/savedgames": tags: - save when: @@ -448469,46 +449701,48 @@ S.P.I.C.E Arena: installDir: STALKER Clear Sky: {} launch: - /bin/xrengine.exe: + "/bin/xrengine.exe": - when: - store: steam steam: id: 20510 -'S.T.A.L.K.E.R.: Lost Alpha': +"S.T.A.L.K.E.R.: Lost Alpha": files: - /appdata/savedgames: + "/appdata/savedgames": tags: - save when: - os: windows - /appdata/user.ltx: + "/appdata/user.ltx": tags: - config when: - os: windows -'S.T.A.L.K.E.R.: Shadow of Chernobyl': +"S.T.A.L.K.E.R.: Shadow of Chernobyl": files: - /_appdata_/savedgames: + "/_appdata_/savedgames": tags: - save when: - store: steam - /Stalker-SHOC: - tags: - - config - when: - - store: gog - /Stalker-SHOC/savedgames: - tags: - - save - when: - - store: gog - /Documents/stalker-shoc: + "/Stalker-SHOC": tags: - config when: - os: windows - /Documents/stalker-shoc/savedgames: + store: gog + "/Stalker-SHOC/savedgames": + tags: + - save + when: + - os: windows + store: gog + "/Documents/stalker-shoc": + tags: + - config + when: + - os: windows + "/Documents/stalker-shoc/savedgames": tags: - save when: @@ -448521,7 +449755,7 @@ S.P.I.C.E Arena: installDir: STALKER Shadow of Chernobyl: {} launch: - /bin/XR_3DA.exe: + "/bin/XR_3DA.exe": - when: - store: steam steam: @@ -448530,7 +449764,7 @@ S.T.R.E.T.C.H.: installDir: STRETCH: {} launch: - /STRETCH.exe: + "/STRETCH.exe": - when: - store: steam steam: @@ -448539,7 +449773,7 @@ S.U.B.: installDir: SUB: {} launch: - /SUB.exe: + "/SUB.exe": - when: - bit: 64 os: windows @@ -448548,19 +449782,19 @@ S.U.B.: id: 765140 S.W.I.N.E.: files: - /savegames: + "/savegames": tags: - save when: - os: windows S.W.I.N.E. HD Remaster: files: - /Kite Games/Swine/options.ini: + "/Kite Games/Swine/options.ini": tags: - config when: - os: windows - /Kite Games/Swine/savegames: + "/Kite Games/Swine/savegames": tags: - save when: @@ -448570,31 +449804,31 @@ S.W.I.N.E. HD Remaster: installDir: SWINE HD Remaster: {} launch: - /swineHD.exe: + "/swineHD.exe": - when: - os: windows store: steam steam: id: 944010 -'S: Lost Chapters': +"S: Lost Chapters": steam: id: 2506890 SABAT Fight Arena: installDir: SABAT Fight Arena: {} launch: - /SABAT_FightArena.exe: + "/SABAT_FightArena.exe": - when: - bit: 64 os: windows store: steam steam: id: 1043370 -'SAD RPG: A Social Anxiety Role Playing Game': +"SAD RPG: A Social Anxiety Role Playing Game": installDir: SAD RPG: {} launch: - /SAD_RPG_WINDOWS/SAD RPG.exe: + "/SAD_RPG_WINDOWS/SAD RPG.exe": - when: - os: windows store: steam @@ -448604,7 +449838,7 @@ SAKeRETSU: installDir: Sakeretsu: {} launch: - /Sakeretsu.exe: + "/Sakeretsu.exe": - when: - os: windows store: steam @@ -448614,7 +449848,7 @@ SAMOSBOR 2D: installDir: SAMOSBOR 2D: {} launch: - /SAMOSBOR 2D.exe: + "/SAMOSBOR 2D.exe": - when: - os: windows store: steam @@ -448629,7 +449863,7 @@ SARE Inception: installDir: SARE Inception: {} launch: - /SareInception.exe: + "/SareInception.exe": - when: - os: windows store: steam @@ -448637,12 +449871,12 @@ SARE Inception: id: 1109980 SAS Secure Tomorrow: files: - /Documents/City Interactive/SAS Secure Tomorrow/Save/Profile000/SinglePlayer: + "/Documents/City Interactive/SAS Secure Tomorrow/Save/Profile000/SinglePlayer": tags: - save when: - os: windows - /Documents/City Interactive/SAS Secure Tomorrow/settings.cfg: + "/Documents/City Interactive/SAS Secure Tomorrow/settings.cfg": tags: - config when: @@ -448651,22 +449885,22 @@ SAS VS Zombies: installDir: SAS VS Zombies: {} launch: - /SasVSzombies.exe: + "/SasVSzombies.exe": - when: - bit: 64 os: windows store: steam steam: id: 822070 -'SAS: Zombie Assault 4': +"SAS: Zombie Assault 4": installDir: SAS Zombie Assault 4: {} launch: - /SAS4-Steam.app: + "/SAS4-Steam.app": - when: - os: mac store: steam - /SAS4-Win.exe: + "/SAS4-Win.exe": - when: - os: windows store: steam @@ -448676,7 +449910,7 @@ SAWars: installDir: SAWars: {} launch: - /SAWars.exe: + "/SAWars.exe": - when: - os: windows store: steam @@ -448686,15 +449920,15 @@ SAWkoban: installDir: SAWkoban: {} launch: - /SAWkoban.app/Contents/MacOS/SAWkoban: + "/SAWkoban.app/Contents/MacOS/SAWkoban": - when: - os: mac store: steam - /SAWkoban.exe: + "/SAWkoban.exe": - when: - os: windows store: steam - /SAWkoban.x86: + "/SAWkoban.x86": - when: - os: linux store: steam @@ -448704,23 +449938,23 @@ SBK 22: installDir: SBK™22: {} launch: - /sbk1.exe: + "/sbk1.exe": - when: - store: steam steam: id: 1785910 -'SBK-09: Superbike World Championship': +"SBK-09: Superbike World Championship": files: - /BlackBean/SBK09: + "/BlackBean/SBK09": tags: - save when: - os: windows -'SBX: Invasion': +"SBX: Invasion": installDir: SBXInvasion: {} launch: - /SBXInvasion_SteamRelease.exe: + "/SBXInvasion_SteamRelease.exe": - when: - os: windows store: steam @@ -448728,12 +449962,12 @@ SBK 22: id: 371620 SC2VN - The eSports Visual Novel: files: - /renpy/config.py: + "/renpy/config.py": tags: - config when: - os: windows - /RenPy/SC2VN-1424038548: + "/RenPy/SC2VN-1424038548": tags: - save when: @@ -448741,15 +449975,15 @@ SC2VN - The eSports Visual Novel: installDir: SC2VN - The eSports Visual Novel: {} launch: - /SC2VN.app: + "/SC2VN.app": - when: - os: mac store: steam - /SC2VN.exe: + "/SC2VN.exe": - when: - os: windows store: steam - /SC2VN.sh: + "/SC2VN.sh": - when: - os: linux store: steam @@ -448757,7 +449991,7 @@ SC2VN - The eSports Visual Novel: id: 404480 SCAR Squadra Corse Alfa Romeo: files: - /saves: + "/saves": tags: - save when: @@ -448766,7 +450000,7 @@ SCARF (Isaac James): installDir: SCARF: {} launch: - /Scarf.exe: + "/Scarf.exe": - when: - os: windows store: steam @@ -448777,38 +450011,38 @@ SCATter: sCATter: {} steam: id: 1014710 -'SCHAR: Blue Shield Alliance': +"SCHAR: Blue Shield Alliance": installDir: SCHAR Blue Shield Alliance: {} launch: - /SCHAR.exe: + "/SCHAR.exe": - when: - os: windows store: steam steam: id: 342240 -'SCIENCE SHOW VR : THE ABYSS': +"SCIENCE SHOW VR : THE ABYSS": installDir: SCIENCE SHOW VR THE ABYSS: {} steam: id: 1214050 SCP - Containment Breach: files: - /Saves: + "/Saves": tags: - save when: - os: windows - /options.ini: + "/options.ini": tags: - config when: - os: windows -'SCP - Wandering Around: The Will of a Single Tale, Part 1': +"SCP - Wandering Around: The Will of a Single Tale, Part 1": installDir: SCP】器関ノ彷徨 -The will of a single Tale- 第1部: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -448818,7 +450052,7 @@ SCP 087. Re: installDir: SCP 087.Re: {} launch: - /scp087.exe: + "/scp087.exe": - when: - store: steam steam: @@ -448828,7 +450062,7 @@ SCP Area 8: id: 648220 SCP-087: files: - /SCP087_Data: + "/SCP087_Data": tags: - config when: @@ -448840,16 +450074,16 @@ SCP-087 VR Survivor: id: 808220 SCP-087-B: files: - /options.ini: + "/options.ini": tags: - config when: - os: windows -'SCP-087: Recovered Document': +"SCP-087: Recovered Document": installDir: SCP-087 Recovered document: {} launch: - /SCP087.exe: + "/SCP087.exe": - when: - bit: 64 os: windows @@ -448860,37 +450094,37 @@ SCP022: installDir: SCP022: {} launch: - /Hope/Binaries/Win64/Hope.exe: + "/Hope/Binaries/Win64/Hope.exe": - when: - bit: 64 os: windows store: steam steam: id: 1009990 -'SCP: Blackout': +"SCP: Blackout": installDir: SCP Blackout: {} launch: - /SCP_Blackout.exe: - - arguments: '-novr -vrdisable' + "/SCP_Blackout.exe": + - arguments: "-novr -vrdisable" when: - bit: 64 os: windows store: steam steam: id: 963400 -'SCP: Containment Breach Multiplayer': +"SCP: Containment Breach Multiplayer": installDir: SCP Containment Breach Multiplayer: {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: id: 1782380 -'SCP: Containment Breach Remastered': +"SCP: Containment Breach Remastered": files: - /Saves: + "/Saves": tags: - save when: @@ -448898,35 +450132,35 @@ SCP022: installDir: SCPCBR: {} launch: - /SCPCBR.exe: + "/SCPCBR.exe": - when: - os: windows store: steam - - arguments: '-resetachievements' + - arguments: "-resetachievements" when: - os: windows store: steam - - arguments: '-resetsettings' + - arguments: "-resetsettings" when: - os: windows store: steam steam: id: 2090230 -'SCP: Containment Breach Unity Edition': +"SCP: Containment Breach Unity Edition": files: - /AppData/LocalLow/Aerie Gaming Studios/SCP Unity/Config/settings.ini: + "/AppData/LocalLow/Aerie Gaming Studios/SCP Unity/Config/settings.ini": tags: - config when: - os: windows - /AppData/LocalLow/Aerie Gaming Studios/SCP Unity/Saves: + "/AppData/LocalLow/Aerie Gaming Studios/SCP Unity/Saves": tags: - save when: - os: windows -'SCP: Daybreak': +"SCP: Daybreak": files: - /userdata//2077180: + "/userdata//2077180": tags: - save when: @@ -448934,62 +450168,62 @@ SCP022: installDir: SCP Daybreak: {} launch: - /Daybreak.exe: + "/Daybreak.exe": - when: - bit: 64 os: windows store: steam steam: id: 2077180 -'SCP: Derelict - SciFi First Person Shooter': +"SCP: Derelict - SciFi First Person Shooter": installDir: SCP Derelict - SciFi First Person Shooter: {} launch: - /Derelict-Windows.exe: + "/Derelict-Windows.exe": - when: - os: windows store: steam - /Derelict_MacOS.app: + "/Derelict_MacOS.app": - when: - os: mac store: steam steam: id: 951030 -'SCP: Escape Together': +"SCP: Escape Together": installDir: SCP Escape Together: {} launch: - /SCP_ET.exe: + "/SCP_ET.exe": - when: - bit: 64 os: windows store: steam - /scp_et.x86_64: + "/scp_et.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 1394270 -'SCP: Facility Manager': +"SCP: Facility Manager": steam: id: 1222490 -'SCP: Fragmented Minds': +"SCP: Fragmented Minds": steam: id: 1184790 -'SCP: Labrat': +"SCP: Labrat": installDir: SCP Labrat: {} steam: id: 1402020 -'SCP: Nine-Tailed Fox': +"SCP: Nine-Tailed Fox": files: - /Saves: + "/Saves": tags: - save when: - os: windows - /scpntf/options.ini: + "/scpntf/options.ini": tags: - config when: @@ -448997,40 +450231,40 @@ SCP022: installDir: SCP Nine-Tailed Fox: {} launch: - /SCP Nine-Tailed Fox.exe: + "/SCP Nine-Tailed Fox.exe": - when: - os: windows store: steam steam: id: 1304510 -'SCP: Nukalypse': +"SCP: Nukalypse": installDir: SCP Nukalypse: {} launch: - /SCP Nukalypse.exe: + "/SCP Nukalypse.exe": - when: - bit: 64 os: windows store: steam steam: id: 947940 -'SCP: One More Life': +"SCP: One More Life": installDir: game: {} launch: - /SCPFoundation-1.0-pc/SCPFoundation.exe: + "/SCPFoundation-1.0-pc/SCPFoundation.exe": - when: - os: windows store: steam - /SCPFoundation-1.0-pc/SCPFoundation.sh: + "/SCPFoundation-1.0-pc/SCPFoundation.sh": - when: - os: linux store: steam steam: id: 1221890 -'SCP: Pandemic': +"SCP: Pandemic": files: - /Pandemic/Saved: + "/Pandemic/Saved": tags: - config when: @@ -449039,27 +450273,27 @@ SCP022: SCPPandemic: {} steam: id: 872670 -'SCP: Recontainment': +"SCP: Recontainment": steam: id: 1249520 -'SCP: Resonance': +"SCP: Resonance": installDir: SCP Резонанс: {} launch: - /scp_resonance.exe: + "/scp_resonance.exe": - when: - os: windows store: steam steam: id: 1151720 -'SCP: Secret Laboratory': +"SCP: Secret Laboratory": files: - /AppData/LocalLow/Hubert Moszka/SCP_ Secret Laboratory: + "/AppData/LocalLow/Hubert Moszka/SCP_ Secret Laboratory": tags: - save when: - os: windows - /SCP Secret Laboratory: + "/SCP Secret Laboratory": tags: - config when: @@ -449067,19 +450301,19 @@ SCP022: installDir: SCP Secret Laboratory: {} launch: - /SCPSL.exe: - - arguments: '-steam' + "/SCPSL.exe": + - arguments: "-steam" when: - bit: 64 os: windows store: steam steam: id: 700330 -'SCP: The Foundation': +"SCP: The Foundation": installDir: SCPTheFoundation: {} launch: - /SCPTheFoundation.exe: + "/SCPTheFoundation.exe": - when: - bit: 64 os: windows @@ -449090,7 +450324,7 @@ SCRAP RUSH!!: installDir: SCRAP RUSH!!: {} launch: - /SCRAP_RUSH.exe: + "/SCRAP_RUSH.exe": - when: - os: windows store: steam @@ -449100,7 +450334,7 @@ SCS deORBIT: installDir: deORBIT: {} launch: - /WWIP/drbt.exe: + "/WWIP/drbt.exe": - when: - os: windows store: steam @@ -449110,7 +450344,7 @@ SCUOS: installDir: SCUOS: {} launch: - /SCUOS.exe: + "/SCUOS.exe": - when: - os: windows store: steam @@ -449118,12 +450352,12 @@ SCUOS: id: 955120 SD Gundam Battle Alliance: files: - /Bandai Namco Entertainment/SD GUNDAM BATTLE ALLIANCE/Saved/SaveGames/: + "/Bandai Namco Entertainment/SD GUNDAM BATTLE ALLIANCE/Saved/SaveGames/": tags: - save when: - os: windows - /SDGundamBA/Saved/Config/WindowsNoEditor: + "/SDGundamBA/Saved/Config/WindowsNoEditor": tags: - config when: @@ -449131,7 +450365,7 @@ SD Gundam Battle Alliance: installDir: SDGundamBA: {} launch: - /SDGundamBA.exe: + "/SDGundamBA.exe": - when: - bit: 64 os: windows @@ -449142,7 +450376,7 @@ SD Gundam G Generation Cross Rays: installDir: GGCR: {} launch: - /togg.exe: + "/togg.exe": - when: - os: windows store: steam @@ -449150,12 +450384,12 @@ SD Gundam G Generation Cross Rays: id: 728530 SD Shin Kamen Rider Rumble: files: - /AppData/LocalLow/BANDAI NAMCO Entertainment Inc_/SD Shin Kamen Rider Rumble: + "/AppData/LocalLow/BANDAI NAMCO Entertainment Inc_/SD Shin Kamen Rider Rumble": tags: - config when: - os: windows - /AppData/LocalLow/BANDAI NAMCO Entertainment Inc_/SD Shin Kamen Rider Rumble/(64BitSteamID): + "/AppData/LocalLow/BANDAI NAMCO Entertainment Inc_/SD Shin Kamen Rider Rumble/(64BitSteamID)": tags: - save when: @@ -449163,7 +450397,7 @@ SD Shin Kamen Rider Rumble: installDir: SD Shin Kamen Rider Rumble: {} launch: - /SD Shin Kamen Rider Rumble.exe: + "/SD Shin Kamen Rider Rumble.exe": - when: - store: steam steam: @@ -449177,7 +450411,7 @@ SEAL Team 12: installDir: SEAL Team 12: {} launch: - /SEAL_Team_12.exe: + "/SEAL_Team_12.exe": - when: - store: steam steam: @@ -449186,51 +450420,54 @@ SELF: installDir: SELF: {} launch: - /SELF.app/Contents/MacOS/SELF: + "/SELF.app/Contents/MacOS/SELF": - when: - os: mac store: steam - /SELF.exe: + "/SELF.exe": - when: - os: windows store: steam steam: id: 1074170 -'SEN: Seven Eight Nine': +"SEN: Seven Eight Nine": installDir: SEN: {} launch: - /sen.exe: + "/sen.exe": - when: - bit: 64 os: windows store: steam steam: id: 1170910 -'SENSEs: Midnight': +"SENSEs: Midnight": installDir: SENSEs Midnight: {} launch: - /Midnight_Linux.x86_64: + "/Midnight_Linux.x86_64": - when: - bit: 64 os: linux store: steam - /SENSEs Midnight.exe: + "/SENSEs Midnight.exe": - when: - os: windows store: steam + - bit: 32 + os: windows + store: steam steam: id: 1664430 SEPTEMBER 1999: installDir: SEPTEMBER1999: {} launch: - /SEPTEMBER1999.exe: + "/SEPTEMBER1999.exe": - when: - os: windows store: steam - /September1999_mac.app: + "/September1999_mac.app": - when: - os: mac store: steam @@ -449240,7 +450477,7 @@ SEQUENCE STORM: installDir: SEQUENCESTORM: {} launch: - /SequenceStorm.exe: + "/SequenceStorm.exe": - when: - bit: 64 os: windows @@ -449251,7 +450488,7 @@ SERIES MAKERS TYCOON: installDir: Series Makers: {} launch: - /SeriesMakers.exe: + "/SeriesMakers.exe": - when: - os: windows store: steam @@ -449267,15 +450504,15 @@ SFD: installDir: SFD: {} launch: - /Contents/MacOS/SFD: + "/Contents/MacOS/SFD": - when: - os: mac store: steam - /SFD: + "/SFD": - when: - os: linux store: steam - /Sfd.exe: + "/Sfd.exe": - when: - os: windows store: steam @@ -449285,8 +450522,8 @@ SHATTER (2019): installDir: SHATTER: {} launch: - /SHATTER.exe: - - arguments: '-windowed' + "/SHATTER.exe": + - arguments: "-windowed" when: - os: windows store: steam @@ -449301,7 +450538,7 @@ SHEEP.IO: installDir: SHEEP.IO: {} launch: - /SHEEP.IO.exe: + "/SHEEP.IO.exe": - when: - os: windows store: steam @@ -449311,7 +450548,7 @@ SHELL: installDir: SHELL: {} launch: - /SHELL.exe: + "/SHELL.exe": - when: - os: windows store: steam @@ -449319,7 +450556,7 @@ SHELL: id: 964810 SHINRAI - Broken Beyond Despair: files: - /renpy/SHINRAI - Broken Beyond Despair-1413934444/persistent: + "/renpy/SHINRAI - Broken Beyond Despair-1413934444/persistent": tags: - config when: @@ -449327,15 +450564,15 @@ SHINRAI - Broken Beyond Despair: installDir: SHINRAI - A Murder Mystery Visual Novel: {} launch: - /SHINRAI - Broken Beyond Despair.app: + "/SHINRAI - Broken Beyond Despair.app": - when: - os: mac store: steam - /SHINRAI - Broken Beyond Despair.exe: + "/SHINRAI - Broken Beyond Despair.exe": - when: - os: windows store: steam - /SHINRAI - Broken Beyond Despair.sh: + "/SHINRAI - Broken Beyond Despair.sh": - when: - os: linux store: steam @@ -449345,16 +450582,16 @@ SHNIPERS: installDir: SHNIPERS: {} launch: - /SHNIPERS_Mac.app/Contents/MacOS/SHNIPERS_Mac: + "/SHNIPERS_Mac.app/Contents/MacOS/SHNIPERS_Mac": - when: - os: mac store: steam - /SHNIPERS_PC.exe: + "/SHNIPERS_PC.exe": - when: - bit: 32 os: windows store: steam - /SHNIPERS_PC_64.exe: + "/SHNIPERS_PC_64.exe": - when: - bit: 64 os: windows @@ -449374,7 +450611,7 @@ SIMPLE GAME: installDir: SIMPLE GAME: {} launch: - /SIMPLE GAME.exe: + "/SIMPLE GAME.exe": - when: - os: windows store: steam @@ -449384,7 +450621,7 @@ SINNERS: installDir: SINNERS: {} launch: - /RPG_RT.exe: + "/RPG_RT.exe": - when: - os: windows store: steam @@ -449394,7 +450631,7 @@ SK8: installDir: SK8: {} launch: - /SK8.exe: + "/SK8.exe": - when: - os: windows store: steam @@ -449403,20 +450640,20 @@ SK8: SLEIGHT - Nerve Wracking Espionage Party Game: steam: id: 953110 -'SLI-FI: 2D Planet Platformer': +"SLI-FI: 2D Planet Platformer": installDir: SLI-FI 2D Planet Platformer: {} launch: - /slifi.app/Contents/MacOS/slifi: + "/slifi.app/Contents/MacOS/slifi": - when: - os: mac store: steam - /slifi.exe: + "/slifi.exe": - when: - bit: 64 os: windows store: steam - /slifi.x86_64: + "/slifi.x86_64": - when: - bit: 64 os: linux @@ -449430,7 +450667,7 @@ SMOKED: installDir: SMOKED: {} launch: - /SMOKED.exe: + "/SMOKED.exe": - when: - os: windows store: steam @@ -449445,7 +450682,7 @@ SNAILS (2019): installDir: SNAILS: {} launch: - /SNAILS_V1_01.exe: + "/SNAILS_V1_01.exe": - when: - os: windows store: steam @@ -449453,12 +450690,12 @@ SNAILS (2019): id: 1001380 SNK 40th Anniversary Collection: files: - /SNK40thAnniversaryCollection: + "/SNK40thAnniversaryCollection": tags: - save when: - os: windows - /SNK40thAnniversaryCollection/Settings.plist: + "/SNK40thAnniversaryCollection/Settings.plist": tags: - config when: @@ -449468,21 +450705,21 @@ SNK 40th Anniversary Collection: installDir: SNK40thCollection: {} launch: - /SNK40thCollection.exe: + "/SNK40thCollection.exe": - when: - os: windows store: steam steam: id: 865940 -'SNK Heroines: Tag Team Frenzy': +"SNK Heroines: Tag Team Frenzy": files: - /userdata//794580/remote/game: + "/userdata//794580/remote/game": tags: - save when: - os: windows store: steam - /My Games/SNK HEROINES/graphics_option.json: + "/My Games/SNK HEROINES/graphics_option.json": tags: - config when: @@ -449490,16 +450727,16 @@ SNK 40th Anniversary Collection: installDir: SNKHEROINES: {} launch: - /SNKHEROINES.exe: + "/SNKHEROINES.exe": - when: - store: steam steam: id: 794580 -'SNK vs. Capcom: The Match of the Millennium': +"SNK vs. Capcom: The Match of the Millennium": installDir: SNK VS. CAPCOM THE MATCH OF THE MILLENNIUM: {} launch: - /NGPCS.exe: + "/NGPCS.exe": - when: - os: windows store: steam @@ -449509,7 +450746,7 @@ SNUSE 221: installDir: snuse221: {} launch: - /horror.exe: + "/horror.exe": - when: - bit: 64 os: windows @@ -449520,49 +450757,49 @@ SOF - RAIDERS: installDir: SOFRAIDERS: {} launch: - /SOFBA.exe: + "/SOFBA.exe": - when: - os: windows store: steam steam: id: 1002670 -'SOL: Exodus': +"SOL: Exodus": installDir: Sol Exodus: {} launch: - /Binaries/Win32/SOLExodus.exe: + "/Binaries/Win32/SOLExodus.exe": - when: - store: steam steam: id: 200410 SOMA: files: - /Library/Application Support/Frictional Games/Soma: + "/Library/Application Support/Frictional Games/Soma": tags: - config when: - os: mac - /Library/Application Support/Frictional Games/Soma/: + "/Library/Application Support/Frictional Games/Soma/": tags: - save when: - os: mac - /My Games/Soma/Main: + "/My Games/Soma/Main": tags: - config when: - os: windows - /My Games/Soma/Main/: + "/My Games/Soma/Main/": tags: - save when: - os: windows - /frictionalgames/Soma/Main: + "/frictionalgames/Soma/Main": tags: - config when: - os: linux - /frictionalgames/Soma/Main/: + "/frictionalgames/Soma/Main/": tags: - save when: @@ -449572,17 +450809,17 @@ SOMA: installDir: SOMA: {} launch: - /Soma.app: + "/Soma.app": - when: - bit: 64 os: mac store: steam - /Soma.bin.x86_64: + "/Soma.bin.x86_64": - when: - bit: 64 os: linux store: steam - /Soma.exe: + "/Soma.exe": - when: - bit: 64 os: windows @@ -449593,15 +450830,15 @@ SOMOS: installDir: SOMOS: {} launch: - /Mac.app/Contents/MacOS/Mac: + "/Mac.app/Contents/MacOS/Mac": - when: - os: mac store: steam - /SOMOS.exe: + "/SOMOS.exe": - when: - os: windows store: steam - /SOMOS.x86: + "/SOMOS.x86": - when: - os: linux store: steam @@ -449616,16 +450853,16 @@ SOS Atlas: installDir: SOS Atlas: {} launch: - /SOSAtlas.exe: + "/SOSAtlas.exe": - when: - store: steam steam: id: 781380 -'SOS: Special Operative Stories': +"SOS: Special Operative Stories": installDir: SOS: {} launch: - /SOS.exe: + "/SOS.exe": - when: - os: windows store: steam @@ -449636,15 +450873,15 @@ SOUNDART: Soundart: {} steam: id: 1144460 -'SOYF: Shit On Your Friends': +"SOYF: Shit On Your Friends": installDir: SOYF: {} launch: - /SOYF.exe: + "/SOYF.exe": - when: - os: windows store: steam - /mac_content.app: + "/mac_content.app": - when: - os: mac store: steam @@ -449654,18 +450891,18 @@ SP!TE: installDir: SP!TE: {} launch: - /SPITE.exe: + "/SPITE.exe": - when: - bit: 64 os: windows store: steam steam: id: 918850 -'SPACERIFT: Arcanum System': +"SPACERIFT: Arcanum System": installDir: SPACERIFT Arcanum System: {} launch: - /SPACERIFT Arcanum System.exe: + "/SPACERIFT Arcanum System.exe": - when: - os: windows store: steam @@ -449683,48 +450920,48 @@ SQR 3: SQR 4: steam: id: 1073010 -'SRC: Sprint Robot Championship': +"SRC: Sprint Robot Championship": installDir: SRC Sprint Robot Championship: {} launch: - /SRC.exe: + "/SRC.exe": - when: - os: windows store: steam steam: id: 831530 -'SRD: Super Real Darwin': +"SRD: Super Real Darwin": gog: id: 1812062516 installDir: Retro Classix SRD - Super Real Darwin: {} launch: - /Retro Classix SRD.exe: + "/Retro Classix SRD.exe": - when: - os: windows store: steam steam: id: 1499400 -'SRX: The Game': +"SRX: The Game": installDir: SRX Racing: {} launch: - /DeleteSaveData.bat: + "/DeleteSaveData.bat": - when: - bit: 64 os: windows store: steam - /OpenGameLog.bat: + "/OpenGameLog.bat": - when: - bit: 64 os: windows store: steam - /SRXRacing.exe: + "/SRXRacing.exe": - when: - bit: 64 os: windows store: steam - - arguments: '-MGI-reset-graphics-settings' + - arguments: "-MGI-reset-graphics-settings" when: - bit: 64 os: windows @@ -449740,7 +450977,7 @@ STAB STAB STAB!: installDir: STAB STAB STAB: {} launch: - /stabstabstab.exe: + "/stabstabstab.exe": - when: - os: windows store: steam @@ -449750,7 +450987,7 @@ STALINGRAD ABATIS: installDir: IGS: {} launch: - /StalingradAbatis.exe: + "/StalingradAbatis.exe": - when: - bit: 64 os: windows @@ -449766,16 +451003,16 @@ STARBOY: installDir: STARBOY: {} launch: - /STARBOY.exe: + "/STARBOY.exe": - when: - os: windows store: steam - workingDir: /STARBOY + workingDir: "/STARBOY" steam: id: 963980 STATIONflow: files: - /AppData/LocalLow/DMM GAMES/STATIONflow: + "/AppData/LocalLow/DMM GAMES/STATIONflow": tags: - save when: @@ -449783,16 +451020,16 @@ STATIONflow: installDir: STATIONflow: {} launch: - /STATIONflow.app: + "/STATIONflow.app": - when: - os: mac store: steam - /STATIONflow.exe: + "/STATIONflow.exe": - when: - bit: 64 os: windows store: steam - /STATIONflow.x86_64: + "/STATIONflow.x86_64": - when: - bit: 64 os: linux @@ -449803,15 +451040,15 @@ STATIONflow: - config steam: id: 1122120 -'STE: Save the Earth': +"STE: Save the Earth": installDir: STE - Save The Earth: {} launch: - /STE-Save the Earth.exe: + "/STE-Save the Earth.exe": - when: - os: windows store: steam - /STE-Save_the_Earth/runner: + "/STE-Save_the_Earth/runner": - when: - os: linux store: steam @@ -449821,11 +451058,11 @@ STEELPAW: installDir: STEELPAW: {} launch: - /STEELPAW.exe: + "/STEELPAW.exe": - when: - os: windows store: steam - /steelpaw.app: + "/steelpaw.app": - when: - os: mac store: steam @@ -449835,11 +451072,11 @@ STONE: installDir: STONE: {} launch: - /Stone.app/Contents/MacOS/Stone: + "/Stone.app/Contents/MacOS/Stone": - when: - os: mac store: steam - /Stone.exe: + "/Stone.exe": - when: - bit: 64 os: windows @@ -449850,17 +451087,17 @@ STORM AREA 51 ❤️ CUTE ALIEN GIRL EDITION: installDir: STORM AREA 51 THE GAME: {} launch: - /StormArea51.exe: + "/StormArea51.exe": - when: - os: windows store: steam steam: id: 1125490 -'STORM AREA 51: AYY LMAO EDITION': +"STORM AREA 51: AYY LMAO EDITION": installDir: STORM AREA 51 AYY LMAO EDITION: {} launch: - /STORMAREA51.exe: + "/STORMAREA51.exe": - when: - store: steam steam: @@ -449869,7 +451106,7 @@ STRASHILKA: installDir: geme: {} launch: - /str.exe: + "/str.exe": - when: - os: windows store: steam @@ -449884,8 +451121,8 @@ STURMWIND EX: installDir: STURMWIND EX: {} launch: - /STURMWIND-EX-Steam.exe: - - arguments: '-console' + "/STURMWIND-EX-Steam.exe": + - arguments: "-console" when: - os: windows store: steam @@ -449898,7 +451135,7 @@ SUB FOUR -the uncle-: installDir: SUB FOUR -the uncle-: {} launch: - /ksg.exe: + "/ksg.exe": - when: - store: steam steam: @@ -449907,7 +451144,7 @@ SUBS: installDir: SUBS: {} launch: - /subs.exe: + "/subs.exe": - when: - os: windows store: steam @@ -449917,7 +451154,7 @@ SUCCUBUS: installDir: SUCCUBUS: {} launch: - /Succubus.exe: + "/Succubus.exe": - when: - bit: 64 os: windows @@ -449928,7 +451165,7 @@ SUFFER: installDir: SUFFER: {} launch: - /SUFFER.exe: + "/SUFFER.exe": - when: - os: windows store: steam @@ -449936,17 +451173,17 @@ SUFFER: id: 950210 SUGURI: files: - /config.dat: + "/config.dat": tags: - config when: - os: windows - /record.dat: + "/record.dat": tags: - save when: - os: windows - /system.dat: + "/system.dat": tags: - save when: @@ -449954,7 +451191,7 @@ SUGURI: installDir: Suguri: {} launch: - /Suguri.exe: + "/Suguri.exe": - when: - store: steam steam: @@ -449971,7 +451208,7 @@ SUPER RECOILFIGHT: installDir: SUPER RECOILFIGHT: {} launch: - /SUPER RECOILFIGHT.exe: + "/SUPER RECOILFIGHT.exe": - when: - bit: 64 os: windows @@ -449985,7 +451222,7 @@ SURV: installDir: SURV: {} launch: - /Surv.exe: + "/Surv.exe": - when: - bit: 64 os: windows @@ -449994,12 +451231,12 @@ SURV: id: 670620 SURV1V3: files: - /Survive/Saved/Config: + "/Survive/Saved/Config": tags: - config when: - os: windows - /Survive/Saved/SaveGames: + "/Survive/Saved/SaveGames": tags: - save when: @@ -450011,7 +451248,7 @@ SURV1V3: SUSPENSE: steam: id: 370330 -'SVRVIVE: The Deus Helix': +"SVRVIVE: The Deus Helix": installDir: SVRVIVE: {} steam: @@ -450020,20 +451257,20 @@ SWAM: installDir: SWAM: {} launch: - /SWAM.exe: + "/SWAM.exe": - when: - os: windows store: steam steam: id: 565650 -'SWAT 3: Close Quarters Battle': +"SWAT 3: Close Quarters Battle": files: - /Swat.cfg: + "/Swat.cfg": tags: - config when: - os: windows - /game/careers: + "/game/careers": tags: - save when: @@ -450043,29 +451280,29 @@ SWAM: installDir: SWAT 3 Tactical Game of the Year Edition: {} launch: - /swat.exe: + "/swat.exe": - when: - store: steam steam: id: 560370 SWAT 4: files: - /Content/System/Campaign.ini: + "/Content/System/Campaign.ini": tags: - save when: - os: windows - /Content/System/Swat4.ini: + "/Content/System/Swat4.ini": tags: - config when: - os: windows - /ContentExpansion/System/Campaign.ini: + "/ContentExpansion/System/Campaign.ini": tags: - save when: - os: windows - /ContentExpansion/System/Swat4X.ini: + "/ContentExpansion/System/Swat4X.ini": tags: - config when: @@ -450079,7 +451316,7 @@ SWEET MILF: installDir: SWEET MILF: {} launch: - /SWEETMILF.exe: + "/SWEETMILF.exe": - when: - os: windows store: steam @@ -450092,7 +451329,7 @@ SWR JST DX Selective Memory Erase Effect: installDir: SWR JST DX Selective Memory Erase Effect: {} launch: - /SwrJstDXSelectiveMemoryEraseEffect.exe: + "/SwrJstDXSelectiveMemoryEraseEffect.exe": - when: - os: windows store: steam @@ -450110,27 +451347,27 @@ SZone-Online: installDir: sZone-Online: {} launch: - /game/SZoneOnline.exe: + "/game/SZoneOnline.exe": - when: - os: windows store: steam - workingDir: /game + workingDir: "/game" steam: id: 316390 SaGa Frontier Remastered: installDir: SaGa Frontier Remastered: {} launch: - /SaGa Frontier Remastered.exe: + "/SaGa Frontier Remastered.exe": - when: - bit: 64 os: windows store: steam steam: id: 1295270 -'SaGa Scarlet Grace: Ambitions': +"SaGa Scarlet Grace: Ambitions": files: - /My Games/SaGaScarletGraceEn: + "/My Games/SaGaScarletGraceEn": tags: - save when: @@ -450138,20 +451375,20 @@ SaGa Frontier Remastered: installDir: SaGaSCARLETGRACE: {} launch: - /SaGaSCARLETGRACE.exe: + "/SaGaSCARLETGRACE.exe": - when: - bit: 64 os: windows store: steam registry: - 'HKEY_CURRENT_USER/Software/_Company/SaGa SCARLET GRACE: AMBITIONS': + "HKEY_CURRENT_USER/Software/_Company/SaGa SCARLET GRACE: AMBITIONS": tags: - config steam: id: 686720 Sabbat of the Witch: files: - /SavesDir/*.sav: + "/SavesDir/*.sav": tags: - save when: @@ -450161,7 +451398,7 @@ Sabbat of the Witch: installDir: Sabbat of the Witch: {} launch: - /SabbatOfTheWitch.exe: + "/SabbatOfTheWitch.exe": - when: - store: steam steam: @@ -450178,13 +451415,13 @@ SaberSaw VR: id: 504610 Sable: files: - /AppData/LocalLow/Shedworks/Sable: + "/AppData/LocalLow/Shedworks/Sable": tags: - config - save when: - os: windows - /Packages/RawFury.SableXbox_9s0pnehqffj7t/SystemAppData: + "/Packages/RawFury.SableXbox_9s0pnehqffj7t/SystemAppData": tags: - save when: @@ -450195,97 +451432,97 @@ Sable: installDir: Sable: {} launch: - /Sable: + "/Sable": - when: - os: linux store: steam - /Sable.app: + "/Sable.app": - when: - os: mac store: steam - /Sable.exe: + "/Sable.exe": - when: - bit: 64 os: windows store: steam steam: id: 757310 -'Sable Maze: Forbidden Garden': +"Sable Maze: Forbidden Garden": installDir: - Sable Maze Forbidden Garden Collector's Edition: {} + "Sable Maze Forbidden Garden Collector's Edition": {} launch: - /SableMaze_ForbiddenGarden_CE.exe: + "/SableMaze_ForbiddenGarden_CE.exe": - when: - os: windows store: steam steam: id: 826440 -'Sable Maze: Norwich Caves': +"Sable Maze: Norwich Caves": installDir: - Sable Maze Norwich Caves Collector's Edition: {} + "Sable Maze Norwich Caves Collector's Edition": {} launch: - /SableMaze_NorwichCaves_CE.exe: + "/SableMaze_NorwichCaves_CE.exe": - when: - os: windows store: steam steam: id: 729910 -'Sable Maze: Sullivan River': +"Sable Maze: Sullivan River": installDir: - Sable Maze Sullivan River Collector's Edition: {} + "Sable Maze Sullivan River Collector's Edition": {} launch: - /SableMaze_SullivanRiver_CE.exe: + "/SableMaze_SullivanRiver_CE.exe": - when: - store: steam steam: id: 569270 -'Sable Maze: Twelve Fears': +"Sable Maze: Twelve Fears": installDir: - Sable Maze Twelve Fears Collector's Edition: {} + "Sable Maze Twelve Fears Collector's Edition": {} launch: - /SableMaze_TwelveFears_CE.exe: + "/SableMaze_TwelveFears_CE.exe": - when: - os: windows store: steam steam: id: 941050 -Sable's Grimoire: +"Sable's Grimoire": files: - /renpy/SablesGrimoire-1507418173/*.save: + "/renpy/SablesGrimoire-1507418173/*.save": tags: - save when: - os: windows - /renpy/SablesGrimoire-1507418173/persistent: + "/renpy/SablesGrimoire-1507418173/persistent": tags: - config when: - os: windows installDir: - Sable's Grimoire: {} + "Sable's Grimoire": {} launch: - /SablesGrimoire.app: + "/SablesGrimoire.app": - when: - os: mac store: steam - /SablesGrimoire.exe: + "/SablesGrimoire.exe": - when: - os: windows store: steam - /SablesGrimoire.sh: + "/SablesGrimoire.sh": - when: - os: linux store: steam steam: id: 717850 -'Sabotain: Break The Rules': +"Sabotain: Break The Rules": files: - /save: + "/save": tags: - save when: - os: windows - /settings: + "/settings": tags: - config when: @@ -450295,13 +451532,13 @@ Sabotaj: Sabotaj: {} steam: id: 1436900 -'Saboteur II: Avenging Angel': +"Saboteur II: Avenging Angel": gog: id: 1415531161 installDir: Saboteur II Avenging Angel: {} launch: - /Saboteur II Avenging Angel.exe: + "/Saboteur II Avenging Angel.exe": - when: - store: steam steam: @@ -450312,7 +451549,7 @@ Saboteur SiO: installDir: SaboteurSiO: {} launch: - /SaboteurSiO.exe: + "/SaboteurSiO.exe": - when: - bit: 64 os: windows @@ -450325,11 +451562,11 @@ Saboteur!: installDir: Saboteur!: {} launch: - /Saboteur.app: + "/Saboteur.app": - when: - os: mac store: steam - /SaboteurPC.exe: + "/SaboteurPC.exe": - when: - os: windows store: steam @@ -450346,15 +451583,15 @@ Sabres of Infinity: installDir: Sabres of Infinity: {} launch: - /Sabres of Infinity.app/Contents/MacOS/Sabres of Infinity: + "/Sabres of Infinity.app/Contents/MacOS/Sabres of Infinity": - when: - os: mac store: steam - /SabresOfInfinity: + "/SabresOfInfinity": - when: - os: linux store: steam - /SabresOfInfinity.exe: + "/SabresOfInfinity.exe": - when: - os: windows store: steam @@ -450364,7 +451601,7 @@ Sabreurs - A Noble Duel: installDir: Sabreurs - A Noble Duel: {} launch: - /Sabreurs.exe: + "/Sabreurs.exe": - when: - os: windows store: steam @@ -450374,64 +451611,67 @@ Sack of Bots: installDir: Sack of Bots: {} launch: - /Sack Of Bots.exe: + "/Sack Of Bots.exe": - when: - os: windows store: steam steam: id: 1084930 -'Sackboy: A Big Adventure': +"Sackboy: A Big Adventure": files: - /Saved Games/Sackboy/Steam/SaveGames: + "/Saved Games/Sackboy/Steam/SaveGames": tags: - save when: - - store: steam - /Saved Games/Sackboy/Steam/Settings: + - os: windows + store: steam + "/Saved Games/Sackboy/Steam/Settings": tags: - config when: - - store: steam - /GingerBread/Saved/Config/WindowsNoEditor: + - os: windows + store: steam + "/GingerBread/Saved/Config/WindowsNoEditor": tags: - config when: - - store: steam + - os: windows + store: steam id: steamExtra: - - 2228240 - - 2216230 - - 2206302 - - 2206301 - - 2206300 - 2193240 - 2193241 + - 2206300 + - 2206301 + - 2206302 + - 2216230 + - 2228240 - 2232501 installDir: Sackboy: {} launch: - /GingerBread/Binaries/Win64/Launcher.exe: + "/GingerBread/Binaries/Win64/Launcher.exe": - when: - bit: 64 os: windows store: steam steam: id: 1599660 -'Sacra Terra: Angelic Night': +"Sacra Terra: Angelic Night": installDir: SacraTerraAngelicNight: {} launch: - /SacraTerra_AngelicNight.exe: + "/SacraTerra_AngelicNight.exe": - when: - os: windows store: steam steam: id: 344440 -'Sacra Terra: Kiss of Death': +"Sacra Terra: Kiss of Death": installDir: Sacra Terra Kiss of Death CE: {} launch: - /SacraTerra.exe: + "/SacraTerra.exe": - when: - os: windows store: steam @@ -450441,21 +451681,21 @@ Sacraboar: installDir: Sacraboar: {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: id: 40500 -'Sacralith: The Archer''s Tale': +"Sacralith: The Archer's Tale": installDir: - SACRALITH The Archer`s Tale: {} + "SACRALITH The Archer`s Tale": {} steam: id: 704360 Sacrament: installDir: Sacrament: {} launch: - /MyGame.exe: + "/MyGame.exe": - when: - os: windows store: steam @@ -450463,12 +451703,12 @@ Sacrament: id: 734380 Sacred: files: - /SETTINGS.CFG: + "/SETTINGS.CFG": tags: - config when: - os: windows - /save: + "/save": tags: - save when: @@ -450478,19 +451718,19 @@ Sacred: installDir: Sacred Gold: {} launch: - /Sacred.exe: + "/Sacred.exe": - when: - store: steam steam: id: 12320 -'Sacred 2: Fallen Angel': +"Sacred 2: Fallen Angel": files: - /Saved Games/Ascaron Entertainment/Sacred 2: + "/Saved Games/Ascaron Entertainment/Sacred 2": tags: - save when: - os: windows - /Ascaron Entertainment/Sacred 2: + "/Ascaron Entertainment/Sacred 2": tags: - config when: @@ -450504,21 +451744,21 @@ Sacred: installDir: Sacred 2 Gold: {} launch: - /system/sacred2.exe: + "/system/sacred2.exe": - when: - os: windows store: steam - workingDir: /system + workingDir: "/system" steam: id: 225640 Sacred 3: files: - /autocloud/save: + "/autocloud/save": tags: - save when: - os: windows - /Saved Games/sacred3.cfg: + "/Saved Games/sacred3.cfg": tags: - config when: @@ -450536,7 +451776,7 @@ Sacred 3: installDir: Sacred 3: {} launch: - /sacred3.exe: + "/sacred3.exe": - when: - store: steam steam: @@ -450545,11 +451785,11 @@ Sacred Almanac Traces of Greed: installDir: Sacred Almanac Traces of Greed: {} launch: - /Sacred Almanac.app: + "/Sacred Almanac.app": - when: - os: mac store: steam - /Sacred Almanac.exe: + "/Sacred Almanac.exe": - when: - os: windows store: steam @@ -450557,12 +451797,12 @@ Sacred Almanac Traces of Greed: id: 544650 Sacred Citadel: files: - /Sacred Citadel//user.sav: + "/Sacred Citadel//user.sav": tags: - save when: - os: windows - /Sacred Citadel/renderconfig.txt: + "/Sacred Citadel/renderconfig.txt": tags: - config when: @@ -450576,7 +451816,7 @@ Sacred Citadel: installDir: sacred_citadel: {} launch: - /sacredcitadel.exe: + "/sacredcitadel.exe": - when: - os: windows store: steam @@ -450586,7 +451826,7 @@ Sacred Earth - Promise: installDir: Sacred Earth - Promise: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -450598,15 +451838,15 @@ Sacred Fire: installDir: Sacred Fire: {} launch: - /Contents/MacOS/Sacred Fire: + "/Contents/MacOS/Sacred Fire": - when: - os: mac store: steam - /Sacred Fire.exe: + "/Sacred Fire.exe": - when: - os: windows store: steam - /Sacred Fire.x86_64: + "/Sacred Fire.x86_64": - when: - os: linux store: steam @@ -450621,7 +451861,7 @@ Sacred Line Genesis Remix: installDir: Sacred Line Genesis Remix: {} launch: - /SLG_Remix.exe: + "/SLG_Remix.exe": - when: - os: windows store: steam @@ -450631,15 +451871,15 @@ Sacred Saga Online: installDir: SSO: {} launch: - /Sacred Saga Online.app: + "/Sacred Saga Online.app": - when: - os: mac store: steam - /Sacred Saga Online.exe: + "/Sacred Saga Online.exe": - when: - os: windows store: steam - /sacred-saga-online: + "/sacred-saga-online": - when: - os: linux store: steam @@ -450654,15 +451894,15 @@ Sacred Stones: installDir: Sacred Stones: {} launch: - /SacredStones.app/Contents/MacOS/Mac_Runner: + "/SacredStones.app/Contents/MacOS/Mac_Runner": - when: - os: mac store: steam - /Sacred_Stones_2: + "/Sacred_Stones_2": - when: - os: linux store: steam - /sacredstones.exe: + "/sacredstones.exe": - when: - os: windows store: steam @@ -450672,7 +451912,7 @@ Sacred Sword Princesses: installDir: Sacred Sword Princesses: {} launch: - /ssp.exe: + "/ssp.exe": - when: - os: windows store: steam @@ -450682,7 +451922,7 @@ Sacred Zodongga Defense: installDir: Zodongga (Build Development): {} launch: - /Zodongga.exe: + "/Zodongga.exe": - when: - store: steam steam: @@ -450694,7 +451934,7 @@ SacriFire: id: 1661330 Sacrifice: files: - /Saves: + "/Saves": tags: - save when: @@ -450704,7 +451944,7 @@ Sacrifice: installDir: Sacrifice: {} launch: - /Sacrifice.exe: + "/Sacrifice.exe": - when: - store: steam registry: @@ -450717,7 +451957,7 @@ Sacrifice Dungeon: installDir: Sacrifice Dungeon: {} launch: - /Sacrifice Dungeon.exe: + "/Sacrifice Dungeon.exe": - when: - store: steam steam: @@ -450726,17 +451966,17 @@ Sacrifice Your Friends: installDir: Sacrifice Your Friends: {} launch: - /Sacrifice Your Friends.exe: + "/Sacrifice Your Friends.exe": - when: - os: windows store: steam steam: id: 1050160 -'Sad :'')': +"Sad :')": installDir: SadGame: {} launch: - /Sad ').exe: + "/Sad ').exe": - when: - store: steam steam: @@ -450745,7 +451985,7 @@ Sad City 42: installDir: Sad City 42: {} launch: - /Sad_City_42.exe: + "/Sad_City_42.exe": - when: - os: windows store: steam @@ -450755,7 +451995,7 @@ Sadboy: installDir: Sadboy: {} launch: - /心塞男孩/心塞男孩.exe: + "/心塞男孩/心塞男孩.exe": - when: - os: windows store: steam @@ -450765,11 +452005,11 @@ Safari Grounds - The Wilpattu Leopard: installDir: Safari Grounds - The Wilpattu Leopard: {} launch: - /Safari Grounds - The Wilpattu Leopard.app: + "/Safari Grounds - The Wilpattu Leopard.app": - when: - os: mac store: steam - /Safari Grounds - The Wilpattu Leopard.exe: + "/Safari Grounds - The Wilpattu Leopard.exe": - when: - os: windows store: steam @@ -450779,7 +452019,7 @@ Safari Venture: installDir: Safari Venture: {} launch: - /SafariVenture.exe: + "/SafariVenture.exe": - when: - store: steam steam: @@ -450788,7 +452028,7 @@ Safe: installDir: Safe: {} launch: - /Safe.exe: + "/Safe.exe": - when: - os: windows store: steam @@ -450798,7 +452038,7 @@ Safe Climbing: installDir: Safe Climbing: {} launch: - /Safe Climbing.exe: + "/Safe Climbing.exe": - when: - os: windows store: steam @@ -450808,7 +452048,7 @@ Safe House: installDir: Safe House: {} launch: - /SafeHouse.exe: + "/SafeHouse.exe": - when: - os: windows store: steam @@ -450817,19 +452057,19 @@ Safe House: Safe Not Safe: steam: id: 728770 -'Safecracker: The Ultimate Puzzle Adventure': +"Safecracker: The Ultimate Puzzle Adventure": files: - /Users/Profile1/Save.*: + "/Users/Profile1/Save.*": tags: - save when: - os: windows - /Users/Profile1/config.ini: + "/Users/Profile1/config.ini": tags: - config when: - os: windows - /config.ini: + "/config.ini": tags: - config when: @@ -450837,26 +452077,26 @@ Safe Not Safe: installDir: Safecracker 2: {} launch: - /Safecracker.exe: + "/Safecracker.exe": - when: - store: steam steam: id: 3260 -'Safety Driving Simulator: Car': +"Safety Driving Simulator: Car": installDir: Safety Driving Simulator Car: {} launch: - /SDSAuto.exe: + "/SDSAuto.exe": - when: - os: windows store: steam steam: id: 450590 -'Safety Driving Simulator: Motorbike': +"Safety Driving Simulator: Motorbike": installDir: Safety Driving Simulator Motorbike: {} launch: - /SDSMoto.exe: + "/SDSMoto.exe": - when: - os: windows store: steam @@ -450866,7 +452106,7 @@ Safety First!: installDir: Safety First: {} launch: - /SafetyFirst.exe: + "/SafetyFirst.exe": - when: - os: windows store: steam @@ -450881,7 +452121,7 @@ Saga: installDir: SAGA: {} launch: - /saga.exe: + "/saga.exe": - when: - bit: 32 os: windows @@ -450892,21 +452132,21 @@ Saga of the North Wind: installDir: Saga of the North Wind: {} launch: - /Saga of the North Wind.app/Contents/MacOS/Saga of the North Wind: + "/Saga of the North Wind.app/Contents/MacOS/Saga of the North Wind": - when: - os: mac store: steam - /SagaOfTheNorthWind: + "/SagaOfTheNorthWind": - when: - os: linux store: steam - /SagaOfTheNorthWind.exe: + "/SagaOfTheNorthWind.exe": - when: - os: windows store: steam steam: id: 552720 -'Saga of the Void: Admirals': +"Saga of the Void: Admirals": installDir: SagaOfTheVoid: {} steam: @@ -450915,7 +452155,7 @@ Sage 3D: installDir: Sage 3D: {} launch: - /RUN_ME.exe: + "/RUN_ME.exe": - arguments: 670760 sage_3d.exe when: - os: windows @@ -450926,11 +452166,11 @@ Sage Mountain: installDir: Sage Mountain: {} launch: - /SageMountain.app/Contents/MacOS/SageMountain: + "/SageMountain.app/Contents/MacOS/SageMountain": - when: - os: mac store: steam - /SageMountain.exe: + "/SageMountain.exe": - when: - bit: 64 os: windows @@ -450947,11 +452187,11 @@ Sagebrush: installDir: Sagebrush: {} launch: - /Sagebrush.app/Contents/MacOS/Sagebrush: + "/Sagebrush.app/Contents/MacOS/Sagebrush": - when: - os: mac store: steam - /Sagebrush.exe: + "/Sagebrush.exe": - when: - os: windows store: steam @@ -450959,7 +452199,7 @@ Sagebrush: id: 864100 Sail Forth: files: - /.config/unity3d/Festive Vector/Sail Forth: + "/.config/unity3d/Festive Vector/Sail Forth": tags: - config when: @@ -450967,15 +452207,15 @@ Sail Forth: installDir: Sail Forth: {} launch: - /sail-forth: + "/sail-forth": - when: - os: linux store: steam - /sail-forth.app: + "/sail-forth.app": - when: - os: mac store: steam - /sail-forth.exe: + "/sail-forth.exe": - when: - os: windows store: steam @@ -450985,7 +452225,7 @@ Sail Ships: installDir: Sail Ships: {} launch: - /sail ships 12.blend.exe: + "/sail ships 12.blend.exe": - when: - os: windows store: steam @@ -450995,7 +452235,7 @@ Sail and Sacrifice: installDir: Sail and Sacrifice: {} launch: - /WindowsNoEditor/ArchipleagoAlpha.exe: + "/WindowsNoEditor/ArchipleagoAlpha.exe": - when: - os: windows store: steam @@ -451005,11 +452245,11 @@ Sailaway - The Sailing Simulator: installDir: Sailaway: {} launch: - /Sailaway.app: + "/Sailaway.app": - when: - os: mac store: steam - /Sailaway.exe: + "/Sailaway.exe": - when: - os: windows store: steam @@ -451024,7 +452264,7 @@ Saint Emiliana: installDir: Saint Emiliana: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: @@ -451032,11 +452272,11 @@ Saint Emiliana: Saint George: steam: id: 701630 -Saint Hazel's Horsepital: +"Saint Hazel's Horsepital": installDir: - Saint Hazel's Horsepital: {} + "Saint Hazel's Horsepital": {} launch: - /St. Hazel's Horsepital.exe: + "/St. Hazel's Horsepital.exe": - when: - os: windows store: steam @@ -451044,7 +452284,7 @@ Saint Hazel's Horsepital: id: 1053560 Saint Kotar: files: - /.config/unity3d/Red Martyr/Saint Kotar/Saves: + "/.config/unity3d/Red Martyr/Saint Kotar/Saves": tags: - save when: @@ -451054,45 +452294,45 @@ Saint Kotar: installDir: Saint Kotar: {} launch: - /Saint Kotar.exe: + "/Saint Kotar.exe": - when: - os: windows store: steam steam: id: 1358530 -'Saint Kotar: The Crawling Man': +"Saint Kotar: The Crawling Man": gog: id: 1514441260 installDir: Saint Kotar The Crawling Man: {} launch: - /Contents/MacOS/Saint Kotar The Crawling Man: + "/Contents/MacOS/Saint Kotar The Crawling Man": - when: - os: mac store: steam - /Saint Kotar The Crawling Man.exe: + "/Saint Kotar The Crawling Man.exe": - when: - os: windows store: steam - /SaintKotarTheCrawlingManLinux.x86_64: + "/SaintKotarTheCrawlingManLinux.x86_64": - when: - os: linux store: steam steam: id: 2186240 -'Saint Kotar: The Yellow Mask': +"Saint Kotar: The Yellow Mask": installDir: Saint Kotar The Yellow Mask: {} launch: - /Saint Kotar.exe: + "/Saint Kotar.exe": - when: - os: windows store: steam - /Saint Kotar.x86_64: + "/Saint Kotar.x86_64": - when: - os: linux store: steam - /Saint_Kotar_macOS.app/Contents/MacOS/Saint_Kotar_macOS: + "/Saint_Kotar_macOS.app/Contents/MacOS/Saint_Kotar_macOS": - when: - os: mac store: steam @@ -451102,22 +452342,22 @@ Saint Paul Pre-Alpha: installDir: Saint Paul: {} launch: - /saintpaul_jan01.exe: + "/saintpaul_jan01.exe": - when: - bit: 64 os: windows store: steam steam: id: 1013680 -'Saint Seiya: Soldiers'' Soul': +"Saint Seiya: Soldiers' Soul": files: - /userdata//348710/remote: + "/userdata//348710/remote": tags: - save when: - os: windows store: steam - /BANDAI NAMCO Entertainment/Saint Seiya Soldiers' Soul: + "/BANDAI NAMCO Entertainment/Saint Seiya Soldiers' Soul": tags: - config when: @@ -451125,7 +452365,7 @@ Saint Paul Pre-Alpha: installDir: SSSS: {} launch: - /SSSS.exe: + "/SSSS.exe": - when: - os: windows store: steam @@ -451135,7 +452375,7 @@ Saint Slaughter X Days: installDir: Saint Slaughter X Days: {} launch: - /ss10d.exe: + "/ss10d.exe": - when: - os: windows store: steam @@ -451143,32 +452383,32 @@ Saint Slaughter X Days: id: 846670 Saints Row: files: - /SaintsRow/sr5/display.ini: + "/SaintsRow/sr5/display.ini": tags: - config when: - os: windows - /sr5/_cloudfolder/saves/SR: + "/sr5/_cloudfolder/saves/SR": tags: - save when: - os: windows - /sr5/_cloudfolder/saves/SR/*.met_pc: + "/sr5/_cloudfolder/saves/SR/*.met_pc": tags: - save when: - os: windows - /sr5/_cloudfolder/saves/SR/*.sf_pc: + "/sr5/_cloudfolder/saves/SR/*.sf_pc": tags: - save when: - os: windows - /sr5/_cloudfolder/saves/SR/*.vdf: + "/sr5/_cloudfolder/saves/SR/*.vdf": tags: - save when: - os: windows - /AppData/LocalLow/THQNordic/SaintsRow/PlayerConfig.json: + "/AppData/LocalLow/THQNordic/SaintsRow/PlayerConfig.json": tags: - config when: @@ -451176,22 +452416,22 @@ Saints Row: installDir: Saints Row: {} launch: - /sr5/SRLauncher.exe: - - arguments: '-packfiles -force_packfile_reflection thqnocfg=thqnocfg_steam -steam' + "/sr5/SRLauncher.exe": + - arguments: "-packfiles -force_packfile_reflection thqnocfg=thqnocfg_steam -steam" when: - store: steam - workingDir: /sr5 + workingDir: "/sr5" steam: id: 742420 Saints Row 2: files: - /THQ/Saints Row 2: + "/THQ/Saints Row 2": tags: - config - save when: - os: windows - /volition/saintsrow2/AppData/Saints Row 2: + "/volition/saintsrow2/AppData/Saints Row 2": tags: - config - save @@ -451202,15 +452442,15 @@ Saints Row 2: installDir: Saints Row 2: {} launch: - /Saints Row 2.app: + "/Saints Row 2.app": - when: - os: mac store: steam - /saintsrow2: + "/saintsrow2": - when: - os: linux store: steam - /sr2_pc.exe: + "/sr2_pc.exe": - when: - os: windows store: steam @@ -451218,25 +452458,25 @@ Saints Row 2: id: 9480 Saints Row IV: files: - /_saves: + "/_saves": tags: - save when: - os: windows - /display.ini: + "/display.ini": tags: - config when: + - store: steam - os: windows - os: windows store: microsoft - - store: steam - /userdata//206420: + "/userdata//206420": tags: - save when: - store: steam - /vpltd/SaintsRow4: + "/vpltd/SaintsRow4": tags: - config when: @@ -451245,41 +452485,41 @@ Saints Row IV: id: 2037689757 id: steamExtra: - - 314580 - - 247307 - 238302 + - 247307 + - 314580 installDir: Saints Row IV: {} launch: - /SaintsRowIV.exe: + "/SaintsRowIV.exe": - when: - os: windows store: steam - /saintsrow4: + "/saintsrow4": - when: - os: linux store: steam steam: id: 206420 -'Saints Row: Gat out of Hell': +"Saints Row: Gat out of Hell": files: - /_saves: + "/_saves": tags: - save when: - os: windows - /display.ini: + "/display.ini": tags: - config when: - - os: windows - store: steam - /userdata//206420: + - os: windows + "/userdata//206420": tags: - save when: - store: steam - /vpltd/SaintsRow4GooH: + "/vpltd/SaintsRow4GooH": tags: - config when: @@ -451292,34 +452532,34 @@ Saints Row IV: installDir: Saints Row Gat out of Hell: {} launch: - /SaintsRowGatOutOfHell.exe: + "/SaintsRowGatOutOfHell.exe": - when: - os: windows store: steam - /saintsrowgooh: + "/saintsrowgooh": - when: - os: linux store: steam steam: id: 301910 -'Saints Row: The Third': +"Saints Row: The Third": files: - /display.ini: + "/display.ini": tags: - config when: - os: windows - /userdata//55230/remote: + "/userdata//55230/remote": tags: - save when: - store: steam - /Saints Row The Third: + "/Saints Row The Third": tags: - save when: - os: windows - /vpltd/SaintsRow3: + "/vpltd/SaintsRow3": tags: - config when: @@ -451328,88 +452568,89 @@ Saints Row IV: id: 1430740694 id: steamExtra: - - 901805 - - 55394 - - 55399 - - 55400 - - 55392 - - 55391 - - 55397 - - 55398 - - 55396 - - 55382 - - 55381 - 55380 - - 55389 - - 55388 - - 55390 + - 55381 + - 55382 + - 55385 - 55386 - 55387 - - 55395 - - 55385 + - 55388 + - 55389 + - 55390 + - 55391 + - 55392 - 55393 + - 55394 + - 55395 + - 55396 + - 55397 + - 55398 + - 55399 + - 55400 + - 901805 installDir: Saints Row the Third: {} launch: - /SaintsRow3.app: + "/SaintsRow3.app": - when: - os: mac store: steam - /game_launcher.exe: + "/game_launcher.exe": - when: - os: windows store: steam - /saintsrow3: + "/saintsrow3": - when: - os: linux store: steam steam: id: 55230 -'Saints Row: The Third Remastered': +"Saints Row: The Third Remastered": files: - /display.ini: - tags: - - config - when: - - store: epic - - store: gog - - store: steam - /userdata//978300/remote/*.sr3s_pc: - tags: - - save - when: - - store: steam - /userdata//978300/remote/sr3DEF_PROFILE: - tags: - - config - when: - - store: steam - /GOG.com/Galaxy/Applications/53610945248137475/Storage/Shared/Files/*.sr3s_pc: - tags: - - save - when: - - store: gog - /GOG.com/Galaxy/Applications/53610945248137475/Storage/Shared/Files/sr3DEF_PROFILE: + "/display.ini": tags: - config when: - store: gog - /Saints Row The Third/Remastered/*.sr3s_pc: + - store: steam + "/userdata//978300/remote/*.sr3s_pc": tags: - save when: - - store: epic - /Saints Row The Third/Remastered/sr3DEF_PROFILE: + - store: steam + "/userdata//978300/remote/sr3DEF_PROFILE": tags: - config when: - - store: epic + - store: steam + "/GOG.com/Galaxy/Applications/53610945248137475/Storage/Shared/Files/*.sr3s_pc": + tags: + - save + when: + - os: windows + store: gog + "/GOG.com/Galaxy/Applications/53610945248137475/Storage/Shared/Files/sr3DEF_PROFILE": + tags: + - config + when: + - os: windows + store: gog + "/Saints Row The Third/Remastered/*.sr3s_pc": + tags: + - save + when: + - os: windows + "/Saints Row The Third/Remastered/sr3DEF_PROFILE": + tags: + - config + when: + - os: windows gog: id: 1435738629 installDir: Saints Row The Third Remastered: {} launch: - /SRTTR.exe: + "/SRTTR.exe": - when: - bit: 64 os: windows @@ -451418,12 +452659,12 @@ Saints Row IV: id: 978300 Saira: files: - /Nifflas/Saira/Savegames: + "/Nifflas/Saira/Savegames": tags: - save when: - os: windows - /Nifflas/Saira/Settings.ini: + "/Nifflas/Saira/Settings.ini": tags: - config when: @@ -451431,10 +452672,10 @@ Saira: installDir: Saira: {} launch: - /Saira.exe: + "/Saira.exe": - when: - store: steam - /Settings.exe: + "/Settings.exe": - when: - store: steam steam: @@ -451444,24 +452685,24 @@ Sairento VR: Sairento VR: {} steam: id: 555880 -'Saku Saku: Love Blooms with the Cherry Blossoms': +"Saku Saku: Love Blooms with the Cherry Blossoms": installDir: Saku Saku: {} launch: - /sakusaku.exe: + "/sakusaku.exe": - when: - os: windows store: steam steam: id: 691150 -'Sakuna: Of Rice and Ruin': +"Sakuna: Of Rice and Ruin": files: - /TaueConfig.json: + "/TaueConfig.json": tags: - config when: - os: windows - /dataWin/Savedata: + "/dataWin/Savedata": tags: - save when: @@ -451469,7 +452710,7 @@ Sairento VR: installDir: Sakuna Of Rice and Ruin: {} launch: - /Sakuna.exe: + "/Sakuna.exe": - when: - bit: 64 os: windows @@ -451480,11 +452721,11 @@ Sakura Agent: installDir: Sakura Agent: {} launch: - /SakuraAgent.exe: + "/SakuraAgent.exe": - when: - os: windows store: steam - /SakuraAgent.sh: + "/SakuraAgent.sh": - when: - os: linux store: steam @@ -451492,32 +452733,32 @@ Sakura Agent: id: 575510 Sakura Angels: files: - /game/saves/*.save: + "/game/saves/*.save": tags: - save when: - os: windows - /game/saves/persistent: + "/game/saves/persistent": tags: - config when: - os: windows - /Library/RenPy/Sakura Angels-1413891429/*.save: + "/Library/RenPy/Sakura Angels-1413891429/*.save": tags: - save when: - os: mac - /Library/RenPy/Sakura Angels-1413891429/persistent: + "/Library/RenPy/Sakura Angels-1413891429/persistent": tags: - config when: - os: mac - /RenPy/Sakura Angels-1413891429/*.save: + "/RenPy/Sakura Angels-1413891429/*.save": tags: - save when: - os: windows - /RenPy/Sakura Angels-1413891429/persistent: + "/RenPy/Sakura Angels-1413891429/persistent": tags: - config when: @@ -451525,15 +452766,15 @@ Sakura Angels: installDir: Sakura Angels: {} launch: - /Sakura Angels.app: + "/Sakura Angels.app": - when: - os: mac store: steam - /Sakura Angels.exe: + "/Sakura Angels.exe": - when: - os: windows store: steam - /Sakura Angels.sh: + "/Sakura Angels.sh": - when: - os: linux store: steam @@ -451541,17 +452782,17 @@ Sakura Angels: id: 342380 Sakura Beach: files: - /game/saves: + "/game/saves": tags: - save when: - os: windows - /renpy/config.py: + "/renpy/config.py": tags: - config when: - os: windows - /RenPy/Sakura_beach1499: + "/RenPy/Sakura_beach1499": tags: - save when: @@ -451559,15 +452800,15 @@ Sakura Beach: installDir: Sakura Beach: {} launch: - /Sakura Beach.app: + "/Sakura Beach.app": - when: - os: mac store: steam - /Sakura Beach.exe: + "/Sakura Beach.exe": - when: - os: windows store: steam - /Sakura Beach.sh: + "/Sakura Beach.sh": - when: - os: linux store: steam @@ -451577,15 +452818,15 @@ Sakura Beach 2: installDir: Sakura Beach 2: {} launch: - /Sakura Beach 2.app: + "/Sakura Beach 2.app": - when: - os: mac store: steam - /Sakura Beach 2.exe: + "/Sakura Beach 2.exe": - when: - os: windows store: steam - /Sakura Beach 2.sh: + "/Sakura Beach 2.sh": - when: - os: linux store: steam @@ -451593,7 +452834,7 @@ Sakura Beach 2: id: 407980 Sakura Clicker: files: - /Tap_Dungeon: + "/Tap_Dungeon": tags: - save when: @@ -451601,7 +452842,7 @@ Sakura Clicker: installDir: Sakura Clicker: {} launch: - /Sakura Clicker.exe: + "/Sakura Clicker.exe": - when: - os: windows store: steam @@ -451611,15 +452852,15 @@ Sakura Cupid: installDir: Sakura Cupid: {} launch: - /Sakura_Cupid.app: + "/Sakura_Cupid.app": - when: - os: mac store: steam - /Sakura_Cupid.exe: + "/Sakura_Cupid.exe": - when: - os: windows store: steam - /Sakura_Cupid.sh: + "/Sakura_Cupid.sh": - when: - os: linux store: steam @@ -451629,11 +452870,11 @@ Sakura Day 2 Mahjong: installDir: Sakura Day 2 Mahjong: {} launch: - /Sakura Day 2 Mahjong.app: + "/Sakura Day 2 Mahjong.app": - when: - os: mac store: steam - /Sakura Day 2 Mahjong.exe: + "/Sakura Day 2 Mahjong.exe": - when: - os: windows store: steam @@ -451643,11 +452884,11 @@ Sakura Day Mahjong: installDir: Sakura Day Mahjong: {} launch: - /Sakura Day Mahjong.app: + "/Sakura Day Mahjong.app": - when: - os: mac store: steam - /Sakura Day Mahjong.exe: + "/Sakura Day Mahjong.exe": - when: - os: windows store: steam @@ -451655,14 +452896,14 @@ Sakura Day Mahjong: id: 923350 Sakura Dungeon: files: - /game/saves: + "/game/saves": tags: - config - save when: - - os: linux - os: windows - /.renpy/sakura_dungeon: + - os: linux + "/.renpy/sakura_dungeon": tags: - config when: @@ -451670,15 +452911,15 @@ Sakura Dungeon: installDir: Sakura Dungeon: {} launch: - /sakura_dungeon.app: + "/sakura_dungeon.app": - when: - os: mac store: steam - /sakura_dungeon.exe: + "/sakura_dungeon.exe": - when: - os: windows store: steam - /sakura_dungeon.sh: + "/sakura_dungeon.sh": - when: - os: linux store: steam @@ -451686,37 +452927,37 @@ Sakura Dungeon: id: 407330 Sakura Fantasy Chapter 1: files: - /game/saves/*.save: + "/game/saves/*.save": tags: - save when: - os: windows - /game/saves/persistent: + "/game/saves/persistent": tags: - config when: - os: windows - /.renpy/Sakura_Fantasy1499/*.save: + "/.renpy/Sakura_Fantasy1499/*.save": tags: - save when: - os: linux - /Library/RenPy/Sakura_Fantasy1499/*.save: + "/Library/RenPy/Sakura_Fantasy1499/*.save": tags: - save when: - os: mac - /Library/RenPy/Sakura_Fantasy1499/prersistent: + "/Library/RenPy/Sakura_Fantasy1499/prersistent": tags: - config when: - os: mac - /RenPy/Sakura_Fantasy1499/*.save: + "/RenPy/Sakura_Fantasy1499/*.save": tags: - save when: - os: windows - /RenPy/Sakura_Fantasy1499/persistent: + "/RenPy/Sakura_Fantasy1499/persistent": tags: - config when: @@ -451724,15 +452965,15 @@ Sakura Fantasy Chapter 1: installDir: Sakura Fantasy: {} launch: - /Sakura Fantasy.app/Contents/MacOS/Sakura Fantasy: + "/Sakura Fantasy.app/Contents/MacOS/Sakura Fantasy": - when: - os: mac store: steam - /Sakura Fantasy.exe: + "/Sakura Fantasy.exe": - when: - os: windows store: steam - /Sakura Fantasy.sh: + "/Sakura Fantasy.sh": - when: - os: linux store: steam @@ -451742,15 +452983,15 @@ Sakura Fox Adventure: installDir: Sakura Fox Adventure: {} launch: - /SakuraFoxAdventure.app: + "/SakuraFoxAdventure.app": - when: - os: mac store: steam - /SakuraFoxAdventure.exe: + "/SakuraFoxAdventure.exe": - when: - os: windows store: steam - /SakuraFoxAdventure.sh: + "/SakuraFoxAdventure.sh": - when: - os: linux store: steam @@ -451760,15 +453001,15 @@ Sakura Gamer: installDir: Sakura Gamer: {} launch: - /Sakura Gamer.app: + "/Sakura Gamer.app": - when: - os: mac store: steam - /Sakura Gamer.exe: + "/Sakura Gamer.exe": - when: - os: windows store: steam - /Sakura Gamer.sh: + "/Sakura Gamer.sh": - when: - os: linux store: steam @@ -451778,15 +453019,15 @@ Sakura Gamer 2: installDir: Sakura Gamer 2: {} launch: - /Sakura Gamer 2.app: + "/Sakura Gamer 2.app": - when: - os: mac store: steam - /Sakura Gamer 2.exe: + "/Sakura Gamer 2.exe": - when: - os: windows store: steam - /Sakura Gamer 2.sh: + "/Sakura Gamer 2.sh": - when: - os: linux store: steam @@ -451796,15 +453037,15 @@ Sakura Knight: installDir: SakuraKnight: {} launch: - /SakuraKnight.app: + "/SakuraKnight.app": - when: - os: mac store: steam - /SakuraKnight.exe: + "/SakuraKnight.exe": - when: - os: windows store: steam - /SakuraKnight.sh: + "/SakuraKnight.sh": - when: - os: linux store: steam @@ -451814,15 +453055,15 @@ Sakura Knight 2: installDir: Sakura Knight 2: {} launch: - /SakuraKnight2.app: + "/SakuraKnight2.app": - when: - os: mac store: steam - /SakuraKnight2.exe: + "/SakuraKnight2.exe": - when: - os: windows store: steam - /SakuraKnight2.sh: + "/SakuraKnight2.sh": - when: - os: linux store: steam @@ -451832,11 +453073,11 @@ Sakura Knight 3: installDir: Sakura Knight 3: {} launch: - /SakuraKnight3.exe: + "/SakuraKnight3.exe": - when: - os: windows store: steam - /SakuraKnight3.sh: + "/SakuraKnight3.sh": - when: - os: linux store: steam @@ -451846,15 +453087,15 @@ Sakura MMO: installDir: Sakura MMO: {} launch: - /Sakura_MMO.app: + "/Sakura_MMO.app": - when: - os: mac store: steam - /Sakura_MMO.exe: + "/Sakura_MMO.exe": - when: - os: windows store: steam - /Sakura_MMO.sh: + "/Sakura_MMO.sh": - when: - os: linux store: steam @@ -451864,15 +453105,15 @@ Sakura MMO 2: installDir: Sakura MMO 2: {} launch: - /Sakura_MMO_2.app: + "/Sakura_MMO_2.app": - when: - os: mac store: steam - /Sakura_MMO_2.exe: + "/Sakura_MMO_2.exe": - when: - os: windows store: steam - /Sakura_MMO_2.sh: + "/Sakura_MMO_2.sh": - when: - os: linux store: steam @@ -451882,15 +453123,15 @@ Sakura MMO 3: installDir: Sakura MMO 3: {} launch: - /Sakura_MMO_3.app: + "/Sakura_MMO_3.app": - when: - os: mac store: steam - /Sakura_MMO_3.exe: + "/Sakura_MMO_3.exe": - when: - os: windows store: steam - /Sakura_MMO_3.sh: + "/Sakura_MMO_3.sh": - when: - os: linux store: steam @@ -451900,7 +453141,7 @@ Sakura Magical Girls: installDir: Sakura Magical Girls: {} launch: - /SakuraMagicalGirls.exe: + "/SakuraMagicalGirls.exe": - when: - os: windows store: steam @@ -451908,12 +453149,12 @@ Sakura Magical Girls: id: 581520 Sakura Nova: files: - /game/saves/*.save: + "/game/saves/*.save": tags: - save when: - os: windows - /RenPy/Sakura Nova-1468866552/*.save: + "/RenPy/Sakura Nova-1468866552/*.save": tags: - save when: @@ -451921,15 +453162,15 @@ Sakura Nova: installDir: Sakura Nova: {} launch: - /Sakura Nova.app: + "/Sakura Nova.app": - when: - os: mac store: steam - /Sakura Nova.exe: + "/Sakura Nova.exe": - when: - os: windows store: steam - /Sakura Nova.sh: + "/Sakura Nova.sh": - when: - os: linux store: steam @@ -451939,15 +453180,15 @@ Sakura Sadist: installDir: Sakura Sadist: {} launch: - /Sakura_Sadist.app: + "/Sakura_Sadist.app": - when: - os: mac store: steam - /Sakura_Sadist.exe: + "/Sakura_Sadist.exe": - when: - os: windows store: steam - /Sakura_Sadist.sh: + "/Sakura_Sadist.sh": - when: - os: linux store: steam @@ -451957,7 +453198,7 @@ Sakura Sakura: installDir: Sakura Sakura: {} launch: - /sakurasakura.exe: + "/sakurasakura.exe": - when: - os: windows store: steam @@ -451965,22 +453206,22 @@ Sakura Sakura: id: 658140 Sakura Santa: files: - /game/saves/*.save: + "/game/saves/*.save": tags: - save when: - os: windows - /game/saves/persistent: + "/game/saves/persistent": tags: - config when: - os: windows - /RenPy/Sakura Santa-1446717813/*.save: + "/RenPy/Sakura Santa-1446717813/*.save": tags: - save when: - os: windows - /RenPy/Sakura Santa-1446717813/persistent: + "/RenPy/Sakura Santa-1446717813/persistent": tags: - config when: @@ -451988,15 +453229,15 @@ Sakura Santa: installDir: Sakura Santa: {} launch: - /Sakura Santa.app: + "/Sakura Santa.app": - when: - os: mac store: steam - /Sakura Santa.exe: + "/Sakura Santa.exe": - when: - os: windows store: steam - /Sakura Santa.sh: + "/Sakura Santa.sh": - when: - os: linux store: steam @@ -452006,15 +453247,15 @@ Sakura Shrine Girls: installDir: Sakura Shrine Girls: {} launch: - /Sakura Shrine Girls.app: + "/Sakura Shrine Girls.app": - when: - os: mac store: steam - /Sakura Shrine Girls.exe: + "/Sakura Shrine Girls.exe": - when: - os: windows store: steam - /Sakura Shrine Girls.sh: + "/Sakura Shrine Girls.sh": - when: - os: linux store: steam @@ -452022,17 +453263,17 @@ Sakura Shrine Girls: id: 517000 Sakura Space: files: - /game/saves/*.save: + "/game/saves/*.save": tags: - save when: - os: windows - /.renpy/Sakura Space-1468866552: + "/.renpy/Sakura Space-1468866552": tags: - save when: - os: linux - /RenPy/Sakura Space-1468866552/*.save: + "/RenPy/Sakura Space-1468866552/*.save": tags: - save when: @@ -452040,14 +453281,14 @@ Sakura Space: installDir: Sakura Space: {} launch: - /Sakura Space.app: + "/Sakura Space.app": - when: - os: mac store: steam - /Sakura Space.exe: + "/Sakura Space.exe": - when: - store: steam - /Sakura Space.sh: + "/Sakura Space.sh": - when: - os: linux store: steam @@ -452055,32 +453296,32 @@ Sakura Space: id: 521500 Sakura Spirit: files: - /game/saves/*.save: + "/game/saves/*.save": tags: - save when: - os: windows - /game/saves/persistent: + "/game/saves/persistent": tags: - config when: - os: windows - /Library/RenPy/Sakura_Spirit-1300954647/*.save: + "/Library/RenPy/Sakura_Spirit-1300954647/*.save": tags: - save when: - os: mac - /Library/RenPy/Sakura_Spirit-1300954647/persistent: + "/Library/RenPy/Sakura_Spirit-1300954647/persistent": tags: - config when: - os: mac - /RenPy/Sakura_Spirit-1300954647/*.save: + "/RenPy/Sakura_Spirit-1300954647/*.save": tags: - save when: - os: windows - /RenPy/Sakura_Spirit-1300954647/persistent: + "/RenPy/Sakura_Spirit-1300954647/persistent": tags: - config when: @@ -452088,15 +453329,15 @@ Sakura Spirit: installDir: Sakura Spirit: {} launch: - /Sakura Spirit.app/Contents/MacOS/Sakura Spirit: + "/Sakura Spirit.app/Contents/MacOS/Sakura Spirit": - when: - os: mac store: steam - /Sakura Spirit.exe: + "/Sakura Spirit.exe": - when: - os: windows store: steam - /Sakura Spirit.sh: + "/Sakura Spirit.sh": - when: - os: linux store: steam @@ -452106,15 +453347,15 @@ Sakura Succubus: installDir: Sakura Succubus: {} launch: - /SakuraSuccubus.app: + "/SakuraSuccubus.app": - when: - os: mac store: steam - /SakuraSuccubus.exe: + "/SakuraSuccubus.exe": - when: - os: windows store: steam - /SakuraSuccubus.sh: + "/SakuraSuccubus.sh": - when: - os: linux store: steam @@ -452124,15 +453365,15 @@ Sakura Succubus 2: installDir: Sakura Succubus 2: {} launch: - /SakuraSuccubus2.app: + "/SakuraSuccubus2.app": - when: - os: mac store: steam - /SakuraSuccubus2.exe: + "/SakuraSuccubus2.exe": - when: - os: windows store: steam - /SakuraSuccubus2.sh: + "/SakuraSuccubus2.sh": - when: - os: linux store: steam @@ -452142,11 +453383,11 @@ Sakura Succubus 3: installDir: Sakura Succubus 3: {} launch: - /SakuraSuccubus3.exe: + "/SakuraSuccubus3.exe": - when: - os: windows store: steam - /SakuraSuccubus3.sh: + "/SakuraSuccubus3.sh": - when: - os: linux store: steam @@ -452154,12 +453395,12 @@ Sakura Succubus 3: id: 1406020 Sakura Swim Club: files: - /game/saves/*.save: + "/game/saves/*.save": tags: - save when: - os: windows - /RenPy/Sakura_swim1499/*.save: + "/RenPy/Sakura_swim1499/*.save": tags: - save when: @@ -452167,15 +453408,15 @@ Sakura Swim Club: installDir: Sakura Swim Club: {} launch: - /Sakura Swim Club.app: + "/Sakura Swim Club.app": - when: - os: mac store: steam - /Sakura Swim Club.exe: + "/Sakura Swim Club.exe": - when: - os: windows store: steam - /Sakura Swim Club.sh: + "/Sakura Swim Club.sh": - when: - os: linux store: steam @@ -452183,40 +453424,40 @@ Sakura Swim Club: id: 402180 Sakura Wars: files: - /SAVE/INDEX.DAT: + "/SAVE/INDEX.DAT": tags: - save when: - os: windows - /SAVE/key.dat: + "/SAVE/key.dat": tags: - config when: - os: windows -'Sakura Wars 2: Thou Shalt Not Die': +"Sakura Wars 2: Thou Shalt Not Die": files: - /SAVEDATA/SAKURA2.SYS: + "/SAVEDATA/SAKURA2.SYS": tags: - config when: - os: windows - /SAVEDATA/SW2ADV*.*: + "/SAVEDATA/SW2ADV*.*": tags: - save when: - os: windows -'Sakura Wars 3: Is Paris Burning?': +"Sakura Wars 3: Is Paris Burning?": files: - /SAVEDATA/SAKURA3.SYS: + "/SAVEDATA/SAKURA3.SYS": tags: - config when: - os: windows -'Sakura and Crit: The Mock Game': +"Sakura and Crit: The Mock Game": installDir: Sakura and Crit The Mock Game: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -452226,7 +453467,7 @@ Sakura no Mori † Dreamers: installDir: Sakuranomori_cn: {} launch: - /sakura.exe: + "/sakura.exe": - when: - os: windows store: steam @@ -452236,7 +453477,7 @@ Sakura no Mori † Dreamers 2: installDir: sakuranomori2: {} launch: - /sakura2.exe: + "/sakura2.exe": - when: - store: steam steam: @@ -452245,7 +453486,7 @@ Sakuya Izayoi Gives You Advice And Dabs: installDir: Sakuya Izayoi Gives You Advice And Dabs: {} launch: - /SakuyaIzayoiGivesYouAdviceAndDabs.exe: + "/SakuyaIzayoiGivesYouAdviceAndDabs.exe": - when: - os: windows store: steam @@ -452255,25 +453496,25 @@ Salad Fields: installDir: Salad Fields: {} launch: - /Salad Fields: + "/Salad Fields": - when: - os: linux store: steam - /Salad Fields.app: + "/Salad Fields.app": - when: - os: mac store: steam - /Salad Fields.exe: + "/Salad Fields.exe": - when: - os: windows store: steam steam: id: 1162430 -'Salammbô: Battle for Carthage': +"Salammbô: Battle for Carthage": installDir: Salammbo Battle for Carthage: {} launch: - /Salammbo.exe: + "/Salammbo.exe": - when: - os: windows store: steam @@ -452283,8 +453524,8 @@ Salary Man Escape: installDir: Salary Man Escape: {} launch: - /SalaryMan.exe: - - arguments: '-nohmd' + "/SalaryMan.exe": + - arguments: "-nohmd" when: - bit: 64 os: windows @@ -452293,12 +453534,12 @@ Salary Man Escape: id: 893470 Saleblazers: files: - /AppData/LocalLow/Airstrafe Interactive/Saleblazers: + "/AppData/LocalLow/Airstrafe Interactive/Saleblazers": tags: - config when: - os: windows - /AppData/LocalLow/Airstrafe Interactive/Saleblazers/Saves: + "/AppData/LocalLow/Airstrafe Interactive/Saleblazers/Saves": tags: - save when: @@ -452309,19 +453550,19 @@ Salio: installDir: Salio: {} launch: - /salio.exe: + "/salio.exe": - when: - store: steam steam: id: 875810 Sally Face: files: - /.config/unity3d/Steve Gabry/Sally Face/prefs: + "/.config/unity3d/Steve Gabry/Sally Face/prefs": tags: - config when: - os: linux - /AppData/LocalLow/Steve Gabry/Sally Face: + "/AppData/LocalLow/Steve Gabry/Sally Face": tags: - config when: @@ -452331,55 +453572,55 @@ Sally Face: installDir: Sally Face: {} launch: - /Sally Face.app: + "/Sally Face.app": - when: - os: mac store: steam - /Sally Face.exe: + "/Sally Face.exe": - when: - os: windows store: steam - /Sally Face.x86: + "/Sally Face.x86": - when: - bit: 32 os: linux store: steam - /Sally Face.x86_64: + "/Sally Face.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 541570 -Sally's Law: +"Sally's Law": files: - /SaveData: + "/SaveData": tags: - save when: - os: windows installDir: - Sally's Law: {} + "Sally's Law": {} launch: - /SallysLaw.app/Contents/MacOS/SallysLaw: + "/SallysLaw.app/Contents/MacOS/SallysLaw": - when: - os: mac store: steam - /SallysLaw.exe: + "/SallysLaw.exe": - when: - os: windows store: steam steam: id: 512230 -'Sally''s Salon: Kiss & Make-Up': +"Sally's Salon: Kiss & Make-Up": installDir: sallys-salon-kiss-and-make-up: {} launch: - /Sally's Salon - Kiss & Make-Up.app/Contents/MacOS/OSX_Steam: + "/Sally's Salon - Kiss & Make-Up.app/Contents/MacOS/OSX_Steam": - when: - os: mac store: steam - /SallysSalon2.exe: + "/SallysSalon2.exe": - when: - os: windows store: steam @@ -452389,7 +453630,7 @@ Salmon Ninja: installDir: Salmon Ninja: {} launch: - /salmonninja.exe: + "/salmonninja.exe": - when: - os: windows store: steam @@ -452412,7 +453653,7 @@ Salsa-Virtual: id: 777530 Salt: files: - /SaveData: + "/SaveData": tags: - save when: @@ -452420,15 +453661,15 @@ Salt: installDir: Salt: {} launch: - /Salt.app: + "/Salt.app": - when: - os: mac store: steam - /Salt.exe: + "/Salt.exe": - when: - os: windows store: steam - /Salt.x86: + "/Salt.x86": - when: - os: linux store: steam @@ -452438,19 +453679,19 @@ Salt Thrust: installDir: Salt Thrust: {} launch: - /Salt Thrust.exe: + "/Salt Thrust.exe": - when: - store: steam steam: id: 736230 Salt and Sacrifice: files: - /Salt and Sacrifice/config: + "/Salt and Sacrifice/config": tags: - config when: - os: windows - /Salt and Sacrifice/savedata: + "/Salt and Sacrifice/savedata": tags: - save when: @@ -452458,12 +453699,12 @@ Salt and Sacrifice: installDir: Project Mage: {} launch: - /ProjectMage.exe: + "/ProjectMage.exe": - when: - bit: 64 os: windows store: steam - /SaltAndSacrifice.app: + "/SaltAndSacrifice.app": - when: - os: mac store: steam @@ -452471,28 +453712,28 @@ Salt and Sacrifice: id: 1437400 Salt and Sanctuary: files: - /config: + "/config": tags: - config when: - os: windows - /savedata: + "/savedata": tags: - save when: - os: windows - /Library/Application Support/SaltAndSanctuary: + "/Library/Application Support/SaltAndSanctuary": tags: - config - save when: - os: mac - /SaltAndSanctuary: + "/SaltAndSanctuary": tags: - config when: - os: linux - /SaltAndSanctuary: + "/SaltAndSanctuary": tags: - save when: @@ -452500,15 +453741,15 @@ Salt and Sanctuary: installDir: Salt and Sanctuary: {} launch: - /Salt.app/Contents/MacOS/SaltAndSanctuary: + "/Salt.app/Contents/MacOS/SaltAndSanctuary": - when: - os: mac store: steam - /SaltAndSanctuary: + "/SaltAndSanctuary": - when: - os: linux store: steam - /salt.exe: + "/salt.exe": - when: - bit: 32 os: windows @@ -452522,7 +453763,7 @@ Salthe: installDir: Salthe: {} launch: - /Salthe.exe: + "/Salthe.exe": - when: - store: steam steam: @@ -452531,15 +453772,15 @@ Salting the Earth: installDir: Salting the Earth: {} launch: - /Contents/MacOS/SaltingtheEarth: + "/Contents/MacOS/SaltingtheEarth": - when: - os: mac store: steam - /SaltingtheEarth.exe: + "/SaltingtheEarth.exe": - when: - os: windows store: steam - /SaltingtheEarth.sh: + "/SaltingtheEarth.sh": - when: - os: linux store: steam @@ -452552,7 +453793,7 @@ Salty Seabird Bay: installDir: SSB: {} launch: - /Salty.exe: + "/Salty.exe": - when: - os: windows store: steam @@ -452567,7 +453808,7 @@ Salvaged: installDir: Salvaged: {} launch: - /Salvaged.exe: + "/Salvaged.exe": - when: - os: windows store: steam @@ -452575,17 +453816,17 @@ Salvaged: id: 504470 Salvation Prophecy: files: - /Salvation Prophecy/Saved Games: + "/Salvation Prophecy/Saved Games": tags: - save when: - os: windows - /Salvation Prophecy/Settings: + "/Salvation Prophecy/Settings": tags: - config when: - os: windows - /Salvation Prophecy/ogre.cfg: + "/Salvation Prophecy/ogre.cfg": tags: - config when: @@ -452593,23 +453834,23 @@ Salvation Prophecy: installDir: SalvationProphecy: {} launch: - /bin/release/SalvationProphecy.exe: + "/bin/release/SalvationProphecy.exe": - when: - os: windows store: steam - workingDir: /bin/release - /build/release/SalvationProphecy: + workingDir: "/bin/release" + "/build/release/SalvationProphecy": - when: - os: linux store: steam - workingDir: /build/release + workingDir: "/build/release" steam: id: 248450 Salvation in Corruption: installDir: Salvation in Corruption: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -452619,41 +453860,41 @@ Salvator: installDir: SALVATOR: {} launch: - /game.exe: + "/game.exe": - when: - bit: 64 os: windows store: steam steam: id: 795920 -'Sam & Dan: Floaty Flatmates': +"Sam & Dan: Floaty Flatmates": installDir: Floaty Flatmates: {} steam: id: 978270 Sam & Max Hit the Road: files: - /samnmax.ini: + "/samnmax.ini": tags: - config when: - os: windows - /samnmax.s**: + "/samnmax.s**": tags: - save when: - os: windows - /LucasArts/Sam & Max Hit the Road: + "/LucasArts/Sam & Max Hit the Road": tags: - save when: - os: windows - 'C:/SAMNMAX.CD/SAVEGAME.*': + "C:/SAMNMAX.CD/SAVEGAME.*": tags: - save when: - os: dos - 'C:/SAMNMAX.CD/SETMUSE.INI': + "C:/SAMNMAX.CD/SETMUSE.INI": tags: - config when: @@ -452663,18 +453904,18 @@ Sam & Max Hit the Road: installDir: Sam and Max Hit the Road: {} launch: - /ScummVM/scummvm: - - arguments: '-c ../samnmax.ini samnmax' + "/ScummVM/scummvm": + - arguments: "-c ../samnmax.ini samnmax" when: - os: mac store: steam - workingDir: /ScummVM - /ScummVM/scummvm.exe: - - arguments: '-c ../samnmax.ini samnmax' + workingDir: "/ScummVM" + "/ScummVM/scummvm.exe": + - arguments: "-c ../samnmax.ini samnmax" when: - os: windows store: steam - workingDir: /ScummVM + workingDir: "/ScummVM" registry: HKEY_CURRENT_USER/Software/LucasArts/Sam & Max Hit the Road: tags: @@ -452682,34 +453923,13 @@ Sam & Max Hit the Road: steam: id: 355170 Sam & Max Save the World: - files: - /*/*.save: - tags: - - save - when: - - os: windows - /*/prefs.prop: - tags: - - config - when: - - os: windows - /ep10*/*.save: - tags: - - save - when: - - store: steam - /ep10*/prefs.prop: - tags: - - config - when: - - store: steam gog: id: 1207659065 steam: id: 901660 Sam & Max Save the World (2020): files: - /Skunkape Games/Sam & Max Save the World: + "/Skunkape Games/Sam & Max Save the World": tags: - config - save @@ -452725,98 +453945,77 @@ Sam & Max Save the World (2020): installDir: Sam & Max Save the World: {} launch: - /Launcher/Launcher.exe: + "/Launcher/Launcher.exe": - when: - os: windows store: steam steam: id: 1440440 -'Sam & Max: Beyond Time and Space': - files: - /*/*.save: - tags: - - save - when: - - os: windows - /*/prefs.prop: - tags: - - config - when: - - os: windows - /ep20*/*.save: - tags: - - save - when: - - store: steam - /ep20*/prefs.prop: - tags: - - config - when: - - store: steam +"Sam & Max: Beyond Time and Space": gog: id: 1207659064 steam: id: 901663 -'Sam & Max: Beyond Time and Space (2021)': +"Sam & Max: Beyond Time and Space (2021)": gog: id: 1901266299 installDir: Sam & Max Beyond Time and Space: {} launch: - /Launcher/Launcher.exe: + "/Launcher/Launcher.exe": - when: - os: windows store: steam steam: id: 1747050 -'Sam & Max: The Devil''s Playhouse': +"Sam & Max: The Devil's Playhouse": files: - /Telltale Games/Beyond the Alley of the Dolls/*.save: + "/Telltale Games/Beyond the Alley of the Dolls/*.save": tags: - save when: - os: windows - /Telltale Games/Beyond the Alley of the Dolls/prefs.prop: + "/Telltale Games/Beyond the Alley of the Dolls/prefs.prop": tags: - config when: - os: windows - /Telltale Games/The City That Dares Not Sleep/*.save: + "/Telltale Games/The City That Dares Not Sleep/*.save": tags: - save when: - os: windows - /Telltale Games/The City That Dares Not Sleep/prefs.prop: + "/Telltale Games/The City That Dares Not Sleep/prefs.prop": tags: - config when: - os: windows - /Telltale Games/The Penal Zone/*.save: + "/Telltale Games/The Penal Zone/*.save": tags: - save when: - os: windows - /Telltale Games/The Penal Zone/prefs.prop: + "/Telltale Games/The Penal Zone/prefs.prop": tags: - config when: - os: windows - /Telltale Games/The Tomb of Sammun-Mak/*.save: + "/Telltale Games/The Tomb of Sammun-Mak/*.save": tags: - save when: - os: windows - /Telltale Games/The Tomb of Sammun-Mak/prefs.prop: + "/Telltale Games/The Tomb of Sammun-Mak/prefs.prop": tags: - config when: - os: windows - /Telltale Games/They Stole Maxs Brain/*.save: + "/Telltale Games/They Stole Maxs Brain/*.save": tags: - save when: - os: windows - /Telltale Games/They Stole Maxs Brain/prefs.prop: + "/Telltale Games/They Stole Maxs Brain/prefs.prop": tags: - config when: @@ -452832,16 +454031,16 @@ Sam & Max Save the World (2020): - 31260 steam: id: 901399 -'Sam & Max: This Time It''s Virtual!': +"Sam & Max: This Time It's Virtual!": installDir: - Sam & Max This Time It's Virtual!: {} + "Sam & Max This Time It's Virtual!": {} steam: id: 1431290 -'Sam Glyph: Private Eye!': +"Sam Glyph: Private Eye!": installDir: Sam Glyph Private Eye!: {} launch: - /SG.exe: + "/SG.exe": - when: - os: windows store: steam @@ -452854,7 +454053,7 @@ Samantha Swift and the Golden Touch: installDir: Samantha Swift and the Golden Touch: {} launch: - /Samantha Swift and the Golden Touch.exe: + "/Samantha Swift and the Golden Touch.exe": - when: - store: steam steam: @@ -452863,7 +454062,7 @@ Samantha Swift and the Hidden Roses of Athena: installDir: Samantha Swift and the Hidden Roses of Athena: {} launch: - /SamanthaSwiftAndTheHiddenRosesOfAthena.exe: + "/SamanthaSwiftAndTheHiddenRosesOfAthena.exe": - when: - store: steam steam: @@ -452872,7 +454071,7 @@ Samba Shooter: installDir: Samba Shooter: {} launch: - /game.exe: + "/game.exe": - when: - bit: 64 os: windows @@ -452883,7 +454082,7 @@ Samhain World: installDir: Samhain World: {} launch: - /SamhainWorld.exe: + "/SamhainWorld.exe": - when: - bit: 64 os: windows @@ -452894,7 +454093,7 @@ Samoliotik: installDir: samoliotikthegame: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -452902,7 +454101,7 @@ Samoliotik: id: 449680 Samorost 1: files: - /amanitadesign.samorost1/Local Store/#SharedObjects/Data/Main.swf/resume.sol: + "/amanitadesign.samorost1/Local Store/#SharedObjects/Data/Main.swf/resume.sol": tags: - save when: @@ -452912,11 +454111,11 @@ Samorost 1: installDir: Samorost 1: {} launch: - /Samorost1.app: + "/Samorost1.app": - when: - os: mac store: steam - /Samorost1.exe: + "/Samorost1.exe": - when: - os: windows store: steam @@ -452924,12 +454123,12 @@ Samorost 1: id: 1580970 Samorost 2: files: - /amanita-design.samorost3/Local Store: + "/amanita-design.samorost3/Local Store": tags: - config when: - os: windows - /amanita-design.samorost3/Local Store/s2save.bin: + "/amanita-design.samorost3/Local Store/s2save.bin": tags: - save when: @@ -452939,11 +454138,11 @@ Samorost 2: installDir: Samorost 2: {} launch: - /Samorost2.app: + "/Samorost2.app": - when: - os: mac store: steam - /Samorost2.exe: + "/Samorost2.exe": - when: - os: windows store: steam @@ -452951,7 +454150,7 @@ Samorost 2: id: 40720 Samorost 3: files: - /amanita-design.samorost3/Local Store: + "/amanita-design.samorost3/Local Store": tags: - config - save @@ -452962,11 +454161,11 @@ Samorost 3: installDir: Samorost 3: {} launch: - /Samorost3.app: + "/Samorost3.app": - when: - os: mac store: steam - /Samorost3.exe: + "/Samorost3.exe": - when: - os: windows store: steam @@ -452976,23 +454175,23 @@ Samosbor: installDir: Samosbor: {} launch: - /Samosbor.exe: - - arguments: '-popupwindow' + "/Samosbor.exe": + - arguments: "-popupwindow" when: - os: windows store: steam steam: id: 1034060 -'Samozbor: Rebellion': +"Samozbor: Rebellion": installDir: Samozbor Rebellion: {} launch: - /szr: + "/szr": - when: - bit: 64 os: linux store: steam - /szr.exe: + "/szr.exe": - when: - os: windows store: steam @@ -453005,7 +454204,7 @@ Samphi: installDir: Samphi: {} launch: - /Samphi.exe: + "/Samphi.exe": - when: - os: windows store: steam @@ -453015,11 +454214,11 @@ Sampling: installDir: Sampling: {} launch: - /Sampling.app/Contents/MacOS/Sampling: + "/Sampling.app/Contents/MacOS/Sampling": - when: - os: mac store: steam - /Sampling.exe: + "/Sampling.exe": - when: - os: windows store: steam @@ -453029,7 +454228,7 @@ Samsa and the Knights of Light: installDir: Samsa and the Knights of Light: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -453037,7 +454236,7 @@ Samsa and the Knights of Light: id: 371320 Samsara: files: - /AppData/LocalLow/Marker Studio/Samsara: + "/AppData/LocalLow/Marker Studio/Samsara": tags: - save when: @@ -453045,11 +454244,11 @@ Samsara: installDir: Samsara: {} launch: - /Samsara.app/Contents/MacOS/Samsara: + "/Samsara.app/Contents/MacOS/Samsara": - when: - os: mac store: steam - /Samsara.exe: + "/Samsara.exe": - when: - os: windows store: steam @@ -453061,7 +454260,7 @@ Samsara: id: 652880 Samsara Room: files: - /Rusty Lake/SamsaraRoom/saveGame.sav: + "/Rusty Lake/SamsaraRoom/saveGame.sav": tags: - config - save @@ -453070,11 +454269,11 @@ Samsara Room: installDir: Samsara Room: {} launch: - /SamsaraRoom.app: + "/SamsaraRoom.app": - when: - os: mac store: steam - /SamsaraRoom.exe: + "/SamsaraRoom.exe": - when: - os: windows store: steam @@ -453089,7 +454288,7 @@ Samudra: installDir: SAMUDRA: {} launch: - /Samudra.exe: + "/Samudra.exe": - when: - bit: 64 os: windows @@ -453100,24 +454299,24 @@ Samurai Aces: installDir: Samurai Aces: {} launch: - /saces.exe: + "/saces.exe": - when: - os: windows store: steam - /setting.exe: + "/setting.exe": - when: - os: windows store: steam steam: id: 1261980 -'Samurai Aces III: Sengoku Cannon': +"Samurai Aces III: Sengoku Cannon": files: - /scannon/savedata.bin: + "/scannon/savedata.bin": tags: - save when: - os: windows - /scannon/setting.bin: + "/scannon/setting.bin": tags: - config when: @@ -453125,11 +454324,11 @@ Samurai Aces: installDir: SENGOKU CANNON: {} launch: - /scannon.exe: + "/scannon.exe": - when: - os: windows store: steam - /setting.exe: + "/setting.exe": - when: - os: windows store: steam @@ -453142,24 +454341,24 @@ Samurai Gunn: installDir: Samurai Gunn: {} launch: - /SamuraiGunn.app: + "/SamuraiGunn.app": - when: - os: mac store: steam - /SamuraiGunn.exe: + "/SamuraiGunn.exe": - when: - os: windows store: steam steam: id: 239090 -'Samurai Jack: Battle through Time': +"Samurai Jack: Battle through Time": files: - /SJGAME/Saved/Config/WindowsNoEditor: + "/SJGAME/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /SJGAME/Saved/SaveGames: + "/SJGAME/Saved/SaveGames": tags: - save when: @@ -453167,7 +454366,7 @@ Samurai Gunn: installDir: SamuraiJack: {} launch: - /SJGAME/Binaries/Win64/SJGAME-Win64-Shipping.exe: + "/SJGAME/Binaries/Win64/SJGAME-Win64-Shipping.exe": - when: - bit: 64 os: windows @@ -453178,7 +454377,7 @@ Samurai Jazz: installDir: samurai_jazz: {} launch: - /samurai_jazz.exe: + "/samurai_jazz.exe": - when: - os: windows store: steam @@ -453186,12 +454385,12 @@ Samurai Jazz: id: 346450 Samurai Maiden: files: - /launcher/setting.txt: + "/launcher/setting.txt": tags: - config when: - os: windows - /appdata/locallow/D3 PUBLISHER/SAMURAI MAIDEN: + "/appdata/locallow/D3 PUBLISHER/SAMURAI MAIDEN": tags: - save when: @@ -453199,7 +454398,7 @@ Samurai Maiden: installDir: SAMURAI MAIDEN: {} launch: - /JKS_Win64.exe: + "/JKS_Win64.exe": - when: - os: windows store: steam @@ -453213,17 +454412,17 @@ Samurai Riot: installDir: Samurai Riot: {} launch: - /SamuraiRiot.x86: + "/SamuraiRiot.x86": - when: - bit: 32 os: linux store: steam - /SamuraiRiot.x86_64: + "/SamuraiRiot.x86_64": - when: - bit: 64 os: linux store: steam - /SamuraiRiot2.0.2PC/Samurai Riot.exe: + "/SamuraiRiot2.0.2PC/Samurai Riot.exe": - when: - os: windows store: steam @@ -453231,12 +454430,12 @@ Samurai Riot: id: 658790 Samurai Shodown (2020): files: - /SamuraiShodown/Saved/Config/WindowsNoEditor: + "/SamuraiShodown/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /SamuraiShodown/Saved/SaveGames: + "/SamuraiShodown/Saved/SaveGames": tags: - save when: @@ -453244,7 +454443,7 @@ Samurai Shodown (2020): installDir: SamuraiShodown: {} launch: - /SamuraiShodown.exe: + "/SamuraiShodown.exe": - when: - os: windows store: steam @@ -453252,7 +454451,7 @@ Samurai Shodown (2020): id: 1342260 Samurai Shodown II (2015): files: - /SNK/samsho2/OPTIONS: + "/SNK/samsho2/OPTIONS": tags: - config when: @@ -453261,7 +454460,7 @@ Samurai Shodown II (2015): id: 1263414276 Samurai Shodown NeoGeo Collection: files: - /Samurai Shodown NEOGEO Collection: + "/Samurai Shodown NEOGEO Collection": tags: - config - save @@ -453270,7 +454469,7 @@ Samurai Shodown NeoGeo Collection: installDir: SAMURAI SHODOWN NEOGEO COLLECTION: {} launch: - /Samurai Shodown Collection.exe: + "/Samurai Shodown Collection.exe": - when: - bit: 64 os: windows @@ -453283,7 +454482,7 @@ Samurai Shodown V Special: installDir: SAMURAI SHODOWN V SPECIAL: {} launch: - /SSVS.exe: + "/SSVS.exe": - when: - os: windows store: steam @@ -453299,24 +454498,24 @@ Samurai Sword VR: id: 574150 Samurai Warriors 2: files: - /KOEI/Samurai Warriors 2/Savedata/save.dat: + "/KOEI/Samurai Warriors 2/Savedata/save.dat": tags: - save when: - os: windows - /KOEI/Samurai Warriors 2/inputmap*.dat: + "/KOEI/Samurai Warriors 2/inputmap*.dat": tags: - config when: - os: windows Samurai Warriors 4-II: files: - /KoeiTecmo/SAMURAI WARRIORS 4-II/Savedata/save.dat: + "/KoeiTecmo/SAMURAI WARRIORS 4-II/Savedata/save.dat": tags: - save when: - os: windows - /KoeiTecmo/SAMURAI WARRIORS 4-II/inputmap*.dat: + "/KoeiTecmo/SAMURAI WARRIORS 4-II/inputmap*.dat": tags: - config when: @@ -453338,7 +454537,7 @@ Samurai Warriors 4-II: installDir: SAMURAI WARRIORS 4-II: {} launch: - /SW4II.exe: + "/SW4II.exe": - when: - os: windows store: steam @@ -453350,12 +454549,12 @@ Samurai Warriors 4-II: id: 348470 Samurai Warriors 5: files: - /KoeiTecmo/SAMURAI WARRIORS 5/Savedata: + "/KoeiTecmo/SAMURAI WARRIORS 5/Savedata": tags: - save when: - os: windows - /KoeiTecmo/SAMURAI WARRIORS 5/Savedata/inputmap*.dat: + "/KoeiTecmo/SAMURAI WARRIORS 5/Savedata/inputmap*.dat": tags: - config when: @@ -453363,7 +454562,7 @@ Samurai Warriors 5: installDir: SAMURAI WARRIORS 5: {} launch: - /SW5.exe: + "/SW5.exe": - when: - bit: 64 os: windows @@ -453374,9 +454573,9 @@ Samurai Warriors 5: - config steam: id: 1591530 -'Samurai Warriors: Spirit of Sanada': +"Samurai Warriors: Spirit of Sanada": files: - /KoeiTecmo/SW Spirit of Sanada/SAVEDATA: + "/KoeiTecmo/SW Spirit of Sanada/SAVEDATA": tags: - save when: @@ -453384,7 +454583,7 @@ Samurai Warriors 5: installDir: SAMURAI WARRIORS Spirit of Sanada: {} launch: - /SWSanada.exe: + "/SWSanada.exe": - when: - bit: 64 os: windows @@ -453398,7 +454597,7 @@ Samurai Wish: installDir: Samurai Wish: {} launch: - /Samurai Wish.exe: + "/Samurai Wish.exe": - when: - os: windows store: steam @@ -453411,15 +454610,15 @@ Samurai of Hyuga: installDir: Samurai of Hyuga: {} launch: - /Samurai: + "/Samurai": - when: - os: linux store: steam - /Samurai of Hyuga.app/Contents/MacOS/Samurai of Hyuga: + "/Samurai of Hyuga.app/Contents/MacOS/Samurai of Hyuga": - when: - os: mac store: steam - /Samurai.exe: + "/Samurai.exe": - when: - os: windows store: steam @@ -453429,15 +454628,15 @@ Samurai of Hyuga Book 2: installDir: Samurai of Hyuga Book 2: {} launch: - /Samurai of Hyuga Book 2.app/Contents/MacOS/Samurai of Hyuga Book 2: + "/Samurai of Hyuga Book 2.app/Contents/MacOS/Samurai of Hyuga Book 2": - when: - os: mac store: steam - /Samurai2: + "/Samurai2": - when: - os: linux store: steam - /Samurai2.exe: + "/Samurai2.exe": - when: - os: windows store: steam @@ -453447,15 +454646,15 @@ Samurai of Hyuga Book 3: installDir: Samurai of Hyuga Book 3: {} launch: - /Samurai of Hyuga Book 3.app/Contents/MacOS/Samurai of Hyuga Book 3: + "/Samurai of Hyuga Book 3.app/Contents/MacOS/Samurai of Hyuga Book 3": - when: - os: mac store: steam - /Samurai3: + "/Samurai3": - when: - os: linux store: steam - /Samurai3.exe: + "/Samurai3.exe": - when: - os: windows store: steam @@ -453465,15 +454664,15 @@ Samurai of Hyuga Book 4: installDir: Samurai of Hyuga Book 4: {} launch: - /Samurai of Hyuga Book 4.app/Contents/MacOS/Samurai of Hyuga Book 4: + "/Samurai of Hyuga Book 4.app/Contents/MacOS/Samurai of Hyuga Book 4": - when: - os: mac store: steam - /SamuraiofHyugaBook4: + "/SamuraiofHyugaBook4": - when: - os: linux store: steam - /SamuraiofHyugaBook4.exe: + "/SamuraiofHyugaBook4.exe": - when: - os: windows store: steam @@ -453488,7 +454687,7 @@ San Matias - Mafia City: installDir: San Matias - Mafia City: {} launch: - /windows_content/SanMatiasMafiaCity.exe: + "/windows_content/SanMatiasMafiaCity.exe": - when: - os: windows store: steam @@ -453496,7 +454695,7 @@ San Matias - Mafia City: id: 728830 Sanabi: files: - /AppData/LocalLow/WONDER POTION/SNB/*.data: + "/AppData/LocalLow/WONDER POTION/SNB/*.data": tags: - save when: @@ -453504,24 +454703,24 @@ Sanabi: installDir: SANABI: {} launch: - /SNB.exe: + "/SNB.exe": - when: - store: steam steam: id: 1562700 -'Sanator: Scarlet Scarf': +"Sanator: Scarlet Scarf": installDir: Sanator Scarlet Scarf: {} launch: - /ScarletScarf.app: + "/ScarletScarf.app": - when: - os: mac store: steam - /ScarletScarf.exe: + "/ScarletScarf.exe": - when: - os: windows store: steam - /ScarletScarf.sh: + "/ScarletScarf.sh": - when: - os: linux store: steam @@ -453531,15 +454730,15 @@ Sanatorium Purgatorium: installDir: Sanatorium Purgatorium: {} launch: - /Sanatorium-Purgatorium.exe: + "/Sanatorium-Purgatorium.exe": - when: - os: windows store: steam steam: id: 961220 -'Sanctuary RPG: Black Edition': +"Sanctuary RPG: Black Edition": files: - /Data: + "/Data": tags: - config - save @@ -453550,7 +454749,7 @@ Sanatorium Purgatorium: installDir: SanctuaryRPG - Black Edition: {} launch: - /SanctuaryRPG.exe: + "/SanctuaryRPG.exe": - when: - os: windows store: steam @@ -453560,7 +454759,7 @@ Sanctuary VR: installDir: Sanctuary VR: {} launch: - /Sanctuary_vr_non_VR_v4.exe: + "/Sanctuary_vr_non_VR_v4.exe": - when: - bit: 64 os: windows @@ -453569,13 +454768,13 @@ Sanctuary VR: id: 565730 Sanctum: files: - /userdata//91600/remote/games: + "/userdata//91600/remote/games": tags: - save when: - os: windows store: steam - /My Games/Sanctum/SanctumGame/Config: + "/My Games/Sanctum/SanctumGame/Config": tags: - config when: @@ -453583,13 +454782,13 @@ Sanctum: installDir: Sanctum: {} launch: - /Binaries/Win32/SanctumGame-Win32-Shipping.exe: + "/Binaries/Win32/SanctumGame-Win32-Shipping.exe": - when: - os: windows store: steam - workingDir: /Binaries/Win32 - /Sanctum.app: - - arguments: '-log' + workingDir: "/Binaries/Win32" + "/Sanctum.app": + - arguments: "-log" when: - os: mac store: steam @@ -453597,28 +454796,28 @@ Sanctum: id: 91600 Sanctum 2: files: - /steamapps/common/Sanctum2/SanctumGame/Config: + "/steamapps/common/Sanctum2/SanctumGame/Config": tags: - config when: - os: linux store: steam - /userdata//210770: + "/userdata//210770": tags: - save when: - store: steam - /My Games/Sanctum2/SanctumGame/Config: + "/My Games/Sanctum2/SanctumGame/Config": tags: - config when: - os: windows - /My Games/Sanctum2/SanctumGame/SaveData: + "/My Games/Sanctum2/SanctumGame/SaveData": tags: - save when: - os: windows - /Sanctum2: + "/Sanctum2": tags: - save when: @@ -453626,16 +454825,16 @@ Sanctum 2: installDir: Sanctum2: {} launch: - /Binaries/Win32/SanctumGame-Win32-Shipping.exe: + "/Binaries/Win32/SanctumGame-Win32-Shipping.exe": - when: - os: windows store: steam - workingDir: /Binaries/Win32 - /Sanctum2: + workingDir: "/Binaries/Win32" + "/Sanctum2": - when: - os: linux store: steam - /Sanctum2.app: + "/Sanctum2.app": - when: - os: mac store: steam @@ -453645,7 +454844,7 @@ Sanctum Breach: installDir: SanctumBreachReleaseVersion: {} launch: - /WindowsNoEditor/SanctumBreachBeta.exe: + "/WindowsNoEditor/SanctumBreachBeta.exe": - when: - bit: 64 os: windows @@ -453656,16 +454855,16 @@ Sanctus Mortem: installDir: Sanctus Mortem: {} launch: - /Game: + "/Game": - when: - os: linux store: steam - /Game.app: + "/Game.app": - when: - os: mac store: steam - /Sanctus Mortem.exe: - - arguments: '--in-process-gpu' + "/Sanctus Mortem.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam @@ -453679,7 +454878,7 @@ Sand Land: id: 1979440 Sandbox: files: - /core/cfg: + "/core/cfg": tags: - config when: @@ -453690,7 +454889,7 @@ Sandbox Anything: installDir: SandboxAnything: {} launch: - /SandboxAnything.exe: + "/SandboxAnything.exe": - when: - os: windows store: steam @@ -453700,7 +454899,7 @@ Sandbox Showdown: installDir: Sandbox Showdown: {} launch: - /Sandbox Showdown.exe: + "/Sandbox Showdown.exe": - when: - os: windows store: steam @@ -453710,15 +454909,15 @@ Sandhill Architectures: installDir: Sandhill Architectures: {} launch: - /SandhillArchitectures.app/Contents/MacOS/SandhillArchitectures: + "/SandhillArchitectures.app/Contents/MacOS/SandhillArchitectures": - when: - os: mac store: steam - /SandhillArchitectures.exe: + "/SandhillArchitectures.exe": - when: - os: windows store: steam - /SandhillArchitectures.x86: + "/SandhillArchitectures.x86": - when: - os: linux store: steam @@ -453728,7 +454927,7 @@ Sandmade: installDir: Sandmade: {} launch: - /Sandmade.exe: + "/Sandmade.exe": - when: - os: windows store: steam @@ -453738,7 +454937,7 @@ Sandmason: installDir: Sandmason: {} launch: - /Sandmason.exe: + "/Sandmason.exe": - when: - os: windows store: steam @@ -453748,11 +454947,11 @@ Sandra and Woo in the Cursed Adventure: installDir: Sandra and Woo in the Cursed Adventure: {} launch: - /SW.exe: + "/SW.exe": - when: - os: windows store: steam - /start: + "/start": - when: - os: linux store: steam @@ -453764,7 +454963,7 @@ Sands of Aura: installDir: SandsOfAura: {} launch: - /SandsOfAura.exe: + "/SandsOfAura.exe": - when: - bit: 64 os: windows @@ -453780,7 +454979,7 @@ Sands of Fire: id: 1568440 Sands of Salzaar: files: - /AppData/LocalLow/汉家松鼠/DesertLegend/Save/global.dat: + "/AppData/LocalLow/汉家松鼠/DesertLegend/Save/global.dat": tags: - config when: @@ -453788,7 +454987,7 @@ Sands of Salzaar: installDir: DesertLegend: {} launch: - /DesertLegend.exe: + "/DesertLegend.exe": - when: - os: windows store: steam @@ -453798,11 +454997,14 @@ Sandstorm: installDir: Sandstorm: {} launch: - /nw.exe: + "/nw.exe": - when: - bit: 32 os: windows store: steam + - bit: 64 + os: windows + store: steam steam: id: 548710 Sandwalkers: @@ -453814,24 +455016,24 @@ Sandwich Sudoku: installDir: Sandwich Sudoku: {} launch: - /Sandwich Sudoku.exe: + "/Sandwich Sudoku.exe": - when: - os: windows store: steam - /sandwich_sudoku.app: + "/sandwich_sudoku.app": - when: - os: mac store: steam steam: id: 1117310 -'Sandy & Junior: Aventura Virtual': +"Sandy & Junior: Aventura Virtual": files: - /config.cfg: + "/config.cfg": tags: - config when: - os: windows - /savegame/savegameXX.sav: + "/savegame/savegameXX.sav": tags: - save when: @@ -453839,14 +455041,14 @@ Sandwich Sudoku: Sandy Path: steam: id: 895360 -'Sang-Froid: Tales of Werewolves': +"Sang-Froid: Tales of Werewolves": files: - /sangFroidData: + "/sangFroidData": tags: - config when: - os: windows - /sangFroidData/SaveGames: + "/sangFroidData/SaveGames": tags: - save when: @@ -453856,7 +455058,7 @@ Sandy Path: installDir: Sang-Froid Tales of Werewolves: {} launch: - /SangFroid.exe: + "/SangFroid.exe": - when: - os: windows store: steam @@ -453864,7 +455066,7 @@ Sandy Path: id: 227220 Sango Fighter: files: - /SANGO.CFG: + "/SANGO.CFG": tags: - config when: @@ -453873,7 +455075,7 @@ Sango Guardian Chaos Generation Steamedition: installDir: SangoGuardianCG: {} launch: - /bin/Release/Fighter.exe: + "/bin/Release/Fighter.exe": - when: - os: windows store: steam @@ -453883,7 +455085,7 @@ Sangokushi Eiketsuden: installDir: Eiketsuden1: {} launch: - /Eiketsuden1_Launcher.exe: + "/Eiketsuden1_Launcher.exe": - when: - os: windows store: steam @@ -453893,11 +455095,11 @@ Sanguine Sanctum: installDir: Sanguine Sanctum: {} launch: - /Sanguine Sanctum.exe: + "/Sanguine Sanctum.exe": - when: - os: windows store: steam - /SanguineSanctum.app: + "/SanguineSanctum.app": - when: - os: mac store: steam @@ -453907,7 +455109,7 @@ Sanguine Soul: installDir: Sanguine Soul: {} launch: - /SanguineSoul.exe: + "/SanguineSoul.exe": - when: - bit: 64 os: windows @@ -453924,47 +455126,50 @@ Sanguo Warriors VR2: SanguoWarriorsVR2: {} steam: id: 944740 -'Sanic The Hawtdawg: Da Movie: Da Game 2.1: Electric Boogaloo 2.2 Version 4: The Squeakquel: VHS Edition: Directors cut: Special edition: The Musical & Knackles': +"Sanic The Hawtdawg: Da Movie: Da Game 2.1: Electric Boogaloo 2.2 Version 4: The Squeakquel: VHS Edition: Directors cut: Special edition: The Musical & Knackles": steam: id: 1192750 Sanitarium: files: - /SAVES: + "/SAVES": tags: - save when: - os: windows - /sanitarium.ini: + "/sanitarium.ini": tags: - config when: - store: gog - /userdata//284050/remote/EN: + "/userdata//284050/remote/EN": tags: - save when: - store: steam - /DotEmu/Sanitarium: + "/DotEmu/Sanitarium": tags: - config when: - - store: steam - /DotEmu/Sanitarium/SAVES/EN: + - os: windows + store: steam + "/DotEmu/Sanitarium/SAVES/EN": tags: - save when: - - store: steam - /DotEmu/Sanitarium: + - os: windows + store: steam + "/DotEmu/Sanitarium": tags: - config when: - - store: steam + - os: windows + store: steam gog: id: 1207658811 installDir: Sanitarium: {} launch: - /Asylum.exe: + "/Asylum.exe": - when: - os: windows store: steam @@ -453978,29 +455183,29 @@ Sanitarium Rush: installDir: Sanitarium Rush: {} launch: - /SR/SR.exe: + "/SR/SR.exe": - when: - os: windows store: steam steam: id: 1125450 -'Sanity: Aiken''s Artifact': +"Sanity: Aiken's Artifact": files: - /LITHTECH/autoexec.cfg: + "/LITHTECH/autoexec.cfg": tags: - config when: - os: windows - /save: + "/save": tags: - save when: - os: windows -'Sankaku Renai: Love Triangle Trouble': +"Sankaku Renai: Love Triangle Trouble": installDir: LoveTriangleTrouble: {} launch: - /sankaku.exe: + "/sankaku.exe": - when: - os: windows store: steam @@ -454008,12 +455213,12 @@ Sanitarium Rush: id: 1009450 Sans Logique: files: - /Base/Saved/Config/Windows: + "/Base/Saved/Config/Windows": tags: - save when: - os: windows - /Base/Saved/SaveGames: + "/Base/Saved/SaveGames": tags: - config when: @@ -454021,7 +455226,7 @@ Sans Logique: installDir: Sans Logique: {} launch: - /Sans Logique.exe: + "/Sans Logique.exe": - when: - os: windows store: steam @@ -454034,39 +455239,39 @@ Sansar: id: 586110 Santa Claus in Trouble: files: - /config.txt: + "/config.txt": tags: - config when: - os: windows - /score.dat: + "/score.dat": tags: - save when: - os: windows Santa Claus in Trouble (HD): files: - /config.txt: + "/config.txt": tags: - config when: - os: windows - /savegame0000.bin: + "/savegame0000.bin": tags: - save when: - os: windows - /useroptions.bin: + "/useroptions.bin": tags: - config when: - os: windows - /userdata//1431350/remote/savegame0000.bin: + "/userdata//1431350/remote/savegame0000.bin": tags: - save when: - store: steam - /userdata//1431350/remote/useroptions.bin: + "/userdata//1431350/remote/useroptions.bin": tags: - config when: @@ -454074,7 +455279,7 @@ Santa Claus in Trouble (HD): installDir: Santa Claus in Trouble: {} launch: - /SantaClausInTrouble.exe: + "/SantaClausInTrouble.exe": - when: - os: windows store: steam @@ -454082,12 +455287,12 @@ Santa Claus in Trouble (HD): id: 1431350 Santa Claus in Trouble ... Again!: files: - /config.txt: + "/config.txt": tags: - config when: - os: windows - /score.dat: + "/score.dat": tags: - save when: @@ -454096,15 +455301,15 @@ Santa Claws: installDir: Santa Claws: {} launch: - /Santa Claws Linux/Santa Claws.x86_64: + "/Santa Claws Linux/Santa Claws.x86_64": - when: - os: linux store: steam - /Santa Claws Mac/Santa Claws Mac.app: + "/Santa Claws Mac/Santa Claws Mac.app": - when: - os: mac store: steam - /Santa Claws Windows/Santa Claws.exe: + "/Santa Claws Windows/Santa Claws.exe": - when: - os: windows store: steam @@ -454114,7 +455319,7 @@ Santa Rockstar: installDir: Santa Rockstar Steam Edition: {} launch: - /santaRockstarHD.exe: + "/santaRockstarHD.exe": - when: - os: windows store: steam @@ -454124,7 +455329,7 @@ Santa Run: installDir: Santa Run: {} launch: - /Santa Run.exe: + "/Santa Run.exe": - when: - os: windows store: steam @@ -454147,17 +455352,17 @@ Santa Tracker: installDir: Santa Tracker: {} launch: - /santa.exe: + "/santa.exe": - when: - bit: 64 os: windows store: steam - /santa.x86_64: + "/santa.x86_64": - when: - bit: 64 os: linux store: steam - /santa2.app: + "/santa2.app": - when: - os: mac store: steam @@ -454167,149 +455372,149 @@ Santa in Search of Toys: installDir: Santa in search of toys: {} launch: - /Santa in search of toys.exe: + "/Santa in search of toys.exe": - when: - os: windows store: steam steam: id: 1007980 -Santa's Big Adventures: +"Santa's Big Adventures": installDir: - Santa's Big Adventures: {} + "Santa's Big Adventures": {} launch: - /Santabigadventures_linux: + "/Santabigadventures_linux": - when: - os: linux store: steam - /Santabigadventures_mac.app: + "/Santabigadventures_mac.app": - when: - os: mac store: steam - /Santabigadventures_windows.exe: + "/Santabigadventures_windows.exe": - when: - os: windows store: steam steam: id: 571020 -Santa's Big Sack: +"Santa's Big Sack": installDir: - Santa's Big Sack: {} + "Santa's Big Sack": {} launch: - /SantasBigSack.exe: + "/SantasBigSack.exe": - when: - os: windows store: steam steam: id: 1197350 -Santa's Christmas Solitaire: +"Santa's Christmas Solitaire": installDir: - Santa's Christmas Solitaire: {} + "Santa's Christmas Solitaire": {} launch: - /Santa's Christmas Solitaire.exe: + "/Santa's Christmas Solitaire.exe": - when: - store: steam steam: id: 561680 -Santa's Christmas Solitaire 2: +"Santa's Christmas Solitaire 2": installDir: - Santa's Christmas Solitaire 2: {} + "Santa's Christmas Solitaire 2": {} launch: - /SCS2/Santa's Christmas Solitaire 2.exe: + "/SCS2/Santa's Christmas Solitaire 2.exe": - when: - os: windows store: steam steam: id: 1202710 -Santa's Holiday: +"Santa's Holiday": installDir: - Santa's Holiday: {} + "Santa's Holiday": {} launch: - /Santa's Holiday.app: + "/Santa's Holiday.app": - when: - os: mac store: steam - /Santa's Holiday.exe: + "/Santa's Holiday.exe": - when: - os: windows store: steam - /Santa's Holiday.x86_64: + "/Santa's Holiday.x86_64": - when: - os: linux store: steam steam: id: 1199780 -Santa's Special Delivery: +"Santa's Special Delivery": installDir: - Santa's Special Delivery: {} + "Santa's Special Delivery": {} launch: - /SSD.app/Contents/MacOS/SSD: + "/SSD.app/Contents/MacOS/SSD": - when: - os: mac store: steam - /SSD.exe: + "/SSD.exe": - when: - os: windows store: steam - /SSD.x86: + "/SSD.x86": - when: - bit: 32 os: linux store: steam - /SSD.x86_64: + "/SSD.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 564420 -Santa's Story of Christmas: +"Santa's Story of Christmas": installDir: - Santa's Story of Christmas: {} + "Santa's Story of Christmas": {} launch: - /SantasStory.exe: + "/SantasStory.exe": - when: - os: windows store: steam steam: id: 920770 -Santa's Vacation: +"Santa's Vacation": installDir: SantasVacation: {} launch: - /SantasVacation.app: + "/SantasVacation.app": - when: - os: mac store: steam - /SantasVacation.exe: + "/SantasVacation.exe": - when: - os: windows store: steam steam: id: 741770 -Santa's Visit: +"Santa's Visit": installDir: - Santa's Visit: {} + "Santa's Visit": {} steam: id: 1155810 -Santa's Workshop: +"Santa's Workshop": installDir: - Santa's Workshop: {} + "Santa's Workshop": {} launch: - /Santa's Workshop.app: + "/Santa's Workshop.app": - when: - os: mac store: steam - /Santa's Workshop.exe: + "/Santa's Workshop.exe": - when: - os: windows store: steam steam: id: 727200 -Santa's Workshop (2018): +"Santa's Workshop (2018)": installDir: - Santa's Workshop: {} + "Santa's Workshop": {} launch: - /xmasHO.exe: + "/xmasHO.exe": - when: - os: windows store: steam @@ -454322,7 +455527,7 @@ Saper Hentai: installDir: Banzai Hentai!: {} launch: - /Banzai Hentai!.exe: + "/Banzai Hentai!.exe": - when: - store: steam steam: @@ -454331,11 +455536,11 @@ Sapiens: installDir: Sapiens: {} launch: - /Sapiens.app: + "/Sapiens.app": - when: - os: mac store: steam - /Sapiens.exe: + "/Sapiens.exe": - when: - bit: 64 os: windows @@ -454346,7 +455551,7 @@ Sapper: installDir: Sapper: {} launch: - /SAPPER.exe: + "/SAPPER.exe": - when: - os: windows store: steam @@ -454361,34 +455566,34 @@ Sapper Boom!: installDir: Sapper boom!: {} launch: - /Sapperboom.app: + "/Sapperboom.app": - when: - os: mac store: steam - /Sapperboom.exe: + "/Sapperboom.exe": - when: - os: windows store: steam - /Sapperboom.sh: + "/Sapperboom.sh": - when: - os: linux store: steam steam: id: 868190 -Sapper's Bad Dream: +"Sapper's Bad Dream": installDir: - Sapper's bad dream: {} + "Sapper's bad dream": {} launch: - /SBD.exe: + "/SBD.exe": - when: - os: windows store: steam - /SBDLinux.x86: + "/SBDLinux.x86": - when: - bit: 32 os: linux store: steam - /SBDLinux.x86_64: + "/SBDLinux.x86_64": - when: - bit: 64 os: linux @@ -454402,22 +455607,22 @@ Sapphire Yours: installDir: Ruby Hunter: {} launch: - /Ruby Hunter.app/Contents/MacOS/Ruby Hunter: + "/Ruby Hunter.app/Contents/MacOS/Ruby Hunter": - when: - os: mac store: steam - /Ruby Hunter.exe: + "/Ruby Hunter.exe": - when: - os: windows store: steam steam: id: 675870 -'Sarab: Duji Tower': +"Sarab: Duji Tower": installDir: Sarab Duji Tower: {} launch: - /Game.exe: - - arguments: '-windowed' + "/Game.exe": + - arguments: "-windowed" when: - os: windows store: steam @@ -454427,17 +455632,17 @@ Sarah in the Sky: installDir: Sarah in the Sky: {} launch: - /Sarah_in_the_Sky.exe: + "/Sarah_in_the_Sky.exe": - when: - os: windows store: steam steam: id: 878910 -'Sarah, you are way too heavy': +"Sarah, you are way too heavy": installDir: - 'sarah, youarewaytooheavy': {} + "sarah, youarewaytooheavy": {} launch: - /Gplay.exe: + "/Gplay.exe": - when: - os: windows store: steam @@ -454447,27 +455652,27 @@ Sarcophag: installDir: Sarcophag: {} launch: - /Sarcophag.exe: + "/Sarcophag.exe": - when: - os: windows store: steam steam: id: 631830 -Sargon's Lair: +"Sargon's Lair": installDir: - Sargon's Lair: {} + "Sargon's Lair": {} launch: - /Sargon's Lair.exe: + "/Sargon's Lair.exe": - when: - os: windows store: steam steam: id: 912810 -Satan's Castle: +"Satan's Castle": installDir: - Satan's Castle: {} + "Satan's Castle": {} launch: - /Satanscastle.exe: + "/Satanscastle.exe": - when: - os: windows store: steam @@ -454478,7 +455683,7 @@ Satanist: id: 480780 Satazius: files: - /Option: + "/Option": tags: - config when: @@ -454486,11 +455691,11 @@ Satazius: installDir: Satazius: {} launch: - /SATAZIUS.exe: + "/SATAZIUS.exe": - when: - os: windows store: steam - /Satazius: + "/Satazius": - when: - os: linux store: steam @@ -454500,15 +455705,15 @@ Satellite: installDir: Satellite: {} launch: - /Satellite.app: + "/Satellite.app": - when: - os: mac store: steam - /Satellite.exe: + "/Satellite.exe": - when: - os: windows store: steam - /Satellite.sh: + "/Satellite.sh": - when: - os: linux store: steam @@ -454516,7 +455721,7 @@ Satellite: id: 555310 Satellite Command: files: - /GESGame/Saved/SaveGames: + "/GESGame/Saved/SaveGames": tags: - save when: @@ -454524,8 +455729,8 @@ Satellite Command: installDir: Satellite Command: {} launch: - /GESGame.exe: - - arguments: '-SatComWithSteam' + "/GESGame.exe": + - arguments: "-SatComWithSteam" when: - bit: 64 os: windows @@ -454534,19 +455739,19 @@ Satellite Command: id: 514670 Satellite Reign: files: - /.local/share/SatelliteReign: + "/.local/share/SatelliteReign": tags: - config - save when: - os: mac - /SatelliteReign: + "/SatelliteReign": tags: - config - save when: - os: windows - /SatelliteReign: + "/SatelliteReign": tags: - config - save @@ -454557,33 +455762,33 @@ Satellite Reign: installDir: SatelliteReign: {} launch: - /SatelliteReignLinux.x86: - - arguments: '-force-glcore' + "/SatelliteReignLinux.x86": + - arguments: "-force-glcore" when: - bit: 32 os: linux store: steam - /SatelliteReignLinux.x86_64: - - arguments: '-force-glcore' + "/SatelliteReignLinux.x86_64": + - arguments: "-force-glcore" when: - bit: 64 os: linux store: steam - - arguments: '-force-opengl' + - arguments: "-force-opengl" when: - bit: 64 os: linux store: steam - /SatelliteReignMac.app: + "/SatelliteReignMac.app": - when: - os: mac store: steam - /SatelliteReignWindows.exe: - - arguments: '-force-d3d11' + "/SatelliteReignWindows.exe": + - arguments: "-force-d3d11" when: - os: windows store: steam - - arguments: '-force-d3d9' + - arguments: "-force-d3d9" when: - os: windows store: steam @@ -454593,15 +455798,15 @@ Satellite Repairman: installDir: Satellite Repairman: {} launch: - /Satellite Repairman.app/Contents/MacOS/Satellite Repairman: + "/Satellite Repairman.app/Contents/MacOS/Satellite Repairman": - when: - os: mac store: steam - /srm: + "/srm": - when: - os: linux store: steam - /srm.exe: + "/srm.exe": - when: - os: windows store: steam @@ -454611,16 +455816,16 @@ Satellite Rush: installDir: Satellite Rush: {} launch: - /satelliterush.app/Contents/MacOS/satelliterush: + "/satelliterush.app/Contents/MacOS/satelliterush": - when: - bit: 64 os: mac store: steam - /satelliterush.exe: + "/satelliterush.exe": - when: - os: windows store: steam - /satelliterush.x86_64: + "/satelliterush.x86_64": - when: - bit: 64 os: linux @@ -454629,12 +455834,12 @@ Satellite Rush: id: 429350 Satisfactory: files: - /FactoryGame/Saved/Config/Windows: + "/FactoryGame/Saved/Config/Windows": tags: - config when: - os: windows - /FactoryGame/Saved/SaveGames: + "/FactoryGame/Saved/SaveGames": tags: - save when: @@ -454642,14 +455847,14 @@ Satisfactory: installDir: Satisfactory: {} launch: - /FactoryGame.exe: - - arguments: '-NO_EOS_OVERLAY' + "/FactoryGame.exe": + - arguments: "-NO_EOS_OVERLAY" when: - bit: 64 os: windows store: steam - /FactoryGame.sh: - - arguments: '-NO_EOS_OVERLAY' + "/FactoryGame.sh": + - arguments: "-NO_EOS_OVERLAY" when: - bit: 64 os: linux @@ -454661,7 +455866,7 @@ Saturated Outer Space: id: 1054080 Saturday Morning RPG: files: - /SavedGames/SMRPG: + "/SavedGames/SMRPG": tags: - save when: @@ -454669,15 +455874,15 @@ Saturday Morning RPG: installDir: SaturdayMorningRPG: {} launch: - /SMRPG.app: + "/SMRPG.app": - when: - os: mac store: steam - /SMRPG.exe: + "/SMRPG.exe": - when: - os: windows store: steam - /SMRPG_Linux.x86: + "/SMRPG_Linux.x86": - when: - os: linux store: steam @@ -454687,15 +455892,15 @@ Saturday of Piercing Screams: installDir: Saturday of Piercing Screams: {} launch: - /Saturday of Piercing Screams.app: + "/Saturday of Piercing Screams.app": - when: - os: mac store: steam - /samozbor-revolution.exe: + "/samozbor-revolution.exe": - when: - os: windows store: steam - /samozbor-revolution.x86_64: + "/samozbor-revolution.x86_64": - when: - bit: 64 os: linux @@ -454704,7 +455909,7 @@ Saturday of Piercing Screams: id: 1128160 Saturnalia: files: - /AppData/LocalLow/Santa Ragione/Saturnalia/SaveFiles: + "/AppData/LocalLow/Santa Ragione/Saturnalia/SaveFiles": tags: - save when: @@ -454717,11 +455922,11 @@ Saturnine: installDir: Saturnine: {} launch: - /Saturnine.app: + "/Saturnine.app": - when: - os: mac store: steam - /Saturnine.exe: + "/Saturnine.exe": - when: - os: windows store: steam @@ -454731,7 +455936,7 @@ Saucer-Like: installDir: Saucer-Like: {} launch: - /Saucer-Like.exe: + "/Saucer-Like.exe": - when: - os: windows store: steam @@ -454741,17 +455946,17 @@ Saurian: installDir: Saurian: {} launch: - /Saurian.app: + "/Saurian.app": - when: - bit: 64 os: mac store: steam - /Saurian.exe: + "/Saurian.exe": - when: - bit: 64 os: windows store: steam - /Saurian.x86_64: + "/Saurian.x86_64": - when: - bit: 64 os: linux @@ -454762,11 +455967,11 @@ Sausage Sports Club: installDir: Sausage Sports Club: {} launch: - /SausageSportsClub.app/Contents/MacOS/SausageSportsClub: + "/SausageSportsClub.app/Contents/MacOS/SausageSportsClub": - when: - os: mac store: steam - /SausageSportsClub.exe: + "/SausageSportsClub.exe": - when: - os: windows store: steam @@ -454778,31 +455983,31 @@ Savage: installDir: Savage: {} launch: - /dosbox_windows/dosbox.exe: - - arguments: \"SAVAGE.exe\" -conf \"dosbox_savage.conf\" -noconsole + "/dosbox_windows/dosbox.exe": + - arguments: "\\\"SAVAGE.exe\\\" -conf \\\"dosbox_savage.conf\\\" -noconsole" when: - os: windows store: steam - /runSavage.sh: + "/runSavage.sh": - when: - os: linux store: steam steam: id: 1157870 -'Savage 2: A Tortured Soul': +"Savage 2: A Tortured Soul": installDir: Savage 2 A Tortured Soul: {} launch: - /Savage 2: + "/Savage 2": - arguments: set sys_useSteam True when: - os: mac store: steam - /runme.exe: + "/runme.exe": - when: - os: windows store: steam - /savage2.sh: + "/savage2.sh": - when: - os: linux store: steam @@ -454810,7 +456015,7 @@ Savage: id: 13700 Savage Lands: files: - /.config/.Unity/"Signal Studios & DigitalDNA Games"/"Savage Lands"/prefs: + "/.config/.Unity/\"Signal Studios & DigitalDNA Games\"/\"Savage Lands\"/prefs": tags: - config when: @@ -454818,15 +456023,15 @@ Savage Lands: installDir: Savage Lands: {} launch: - /SavageLands.app: + "/SavageLands.app": - when: - os: mac store: steam - /SavageLands.exe: + "/SavageLands.exe": - when: - os: windows store: steam - /SavageLands.x86_64: + "/SavageLands.x86_64": - when: - os: linux store: steam @@ -454840,7 +456045,7 @@ Savage Offroad: installDir: Savage Offroad: {} launch: - /Savage Offroad.exe: + "/Savage Offroad.exe": - when: - bit: 64 os: windows @@ -454851,7 +456056,7 @@ Savage Resurrection: installDir: Savage Resurrection: {} launch: - /Savage/Binaries/Win64/Savage-Win64-Shipping.exe: + "/Savage/Binaries/Win64/Savage-Win64-Shipping.exe": - when: - bit: 64 os: windows @@ -454862,20 +456067,20 @@ Savage Vessels: installDir: Savage Vessels: {} launch: - /Savage Vessels.exe: + "/Savage Vessels.exe": - when: - os: windows store: steam steam: id: 912550 -'Savage: The Shard of Gosen': +"Savage: The Shard of Gosen": files: - /SAVAGE_The_Shard_of_Gosen/Saves: + "/SAVAGE_The_Shard_of_Gosen/Saves": tags: - save when: - os: windows - /SAVAGE_The_Shard_of_Gosen/settings.ini: + "/SAVAGE_The_Shard_of_Gosen/settings.ini": tags: - config when: @@ -454888,15 +456093,15 @@ Savana: installDir: Savana: {} launch: - /Savana.app: + "/Savana.app": - when: - os: mac store: steam - /Savana.exe: + "/Savana.exe": - when: - os: windows store: steam - /Savana.x86: + "/Savana.x86": - when: - os: linux store: steam @@ -454909,13 +456114,13 @@ Savanna Shot VR: id: 864360 Savant - Ascent: files: - /Savant_Ascent: + "/Savant_Ascent": tags: - config - save when: - os: windows - /Savant_Ascent: + "/Savant_Ascent": tags: - config - save @@ -454924,15 +456129,15 @@ Savant - Ascent: installDir: SavantAscent: {} launch: - /Savant - Ascent.app: + "/Savant - Ascent.app": - when: - os: mac store: steam - /Savant_Ascent.exe: + "/Savant_Ascent.exe": - when: - os: windows store: steam - /run.sh: + "/run.sh": - when: - os: linux store: steam @@ -454949,7 +456154,7 @@ Save Daddy Trump: installDir: Save Daddy Trump: {} launch: - /SaveDaddyTrump.exe: + "/SaveDaddyTrump.exe": - when: - bit: 64 os: windows @@ -454960,35 +456165,35 @@ Save Dash: installDir: Save Dash: {} launch: - /SaveDash.exe: + "/SaveDash.exe": - when: - os: windows store: steam steam: id: 657020 -'Save Halloween: City of Witches': +"Save Halloween: City of Witches": installDir: Save Halloween City of Witches: {} launch: - /STEAM_WIN8_Helloween.exe: + "/STEAM_WIN8_Helloween.exe": - when: - os: windows store: steam steam: id: 428110 -'Save Her, from Dreams': +"Save Her, from Dreams": installDir: - 'Save her, from dreams': {} + "Save her, from dreams": {} launch: - '/Save her, from dreams.app/Contents/MacOS/Save her, from dreams': + "/Save her, from dreams.app/Contents/MacOS/Save her, from dreams": - when: - os: mac store: steam - '/Save her, from dreams.exe': + "/Save her, from dreams.exe": - when: - os: windows store: steam - '/Save her, from dreams.x86_64': + "/Save her, from dreams.x86_64": - when: - os: linux store: steam @@ -454998,7 +456203,7 @@ Save Home: installDir: Save Home: {} launch: - /Save Home.exe: + "/Save Home.exe": - when: - os: windows store: steam @@ -455008,7 +456213,7 @@ Save Jesus: installDir: Save Jesus: {} launch: - /Save Jesus.exe: + "/Save Jesus.exe": - when: - os: windows store: steam @@ -455018,16 +456223,16 @@ Save Koch: installDir: Save Koch: {} launch: - /Save Koch: + "/Save Koch": - when: - bit: 64 os: linux store: steam - /Save Koch.app: + "/Save Koch.app": - when: - os: mac store: steam - /Save Koch.exe: + "/Save Koch.exe": - when: - bit: 64 os: windows @@ -455038,23 +456243,26 @@ Save One More: installDir: Save One More: {} launch: - /Save One More.app: + "/Save One More.app": - when: - os: mac store: steam - /Save One More.exe: + "/Save One More.exe": - when: - bit: 64 os: windows store: steam steam: id: 820240 -'Save Our Souls: Episode I - The Absurd Hopes of Blessed Children': +"Save Our Souls: Episode I - The Absurd Hopes of Blessed Children": installDir: Save Our Souls Episode I - The Absurd Hopes Of Blessed Children: {} launch: - /SaveOurSouls.exe: + "/SaveOurSouls.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam @@ -455064,7 +456272,7 @@ Save President From Rebels: installDir: Save President From Rebels: {} launch: - /Rescuepresident.exe: + "/Rescuepresident.exe": - when: - bit: 64 os: windows @@ -455073,7 +456281,7 @@ Save President From Rebels: id: 889850 Save Room - Organization Puzzle: files: - /AppData/LocalLow/FractalProjects/Save Room: + "/AppData/LocalLow/FractalProjects/Save Room": tags: - save when: @@ -455083,11 +456291,11 @@ Save Room - Organization Puzzle: installDir: Save Room - Organization Puzzle: {} launch: - /Save Room.exe: + "/Save Room.exe": - when: - os: windows store: steam - /SaveRoom.x86_64: + "/SaveRoom.x86_64": - when: - os: linux store: steam @@ -455102,7 +456310,7 @@ Save The Cookie: installDir: Save the cookie: {} launch: - /STC.exe: + "/STC.exe": - when: - store: steam steam: @@ -455111,7 +456319,7 @@ Save The Forest: installDir: Save The Forest: {} launch: - /Forest Ranger.exe: + "/Forest Ranger.exe": - when: - os: windows store: steam @@ -455121,7 +456329,7 @@ Save Their Souls: installDir: Save Their Souls: {} launch: - /Save Their Souls .exe: + "/Save Their Souls .exe": - when: - os: windows store: steam @@ -455131,7 +456339,7 @@ Save Them: installDir: Save Them: {} launch: - /SaveThem.exe: + "/SaveThem.exe": - when: - os: windows store: steam @@ -455141,7 +456349,7 @@ Save Thine Kingdom: installDir: Save Thine Kingdom: {} launch: - /SaveThineKingdom.exe: + "/SaveThineKingdom.exe": - when: - os: windows store: steam @@ -455151,7 +456359,7 @@ Save Your Mother: installDir: Save Your Mother: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -455161,28 +456369,28 @@ Save Your Nuts: installDir: Save Your Nuts: {} launch: - /SaveYourNuts.app/Contents/MacOS/SaveYourNuts: + "/SaveYourNuts.app/Contents/MacOS/SaveYourNuts": - when: - os: mac store: steam - /SaveYourNuts.exe: + "/SaveYourNuts.exe": - when: - os: windows store: steam - /SaveYourNuts.sh: + "/SaveYourNuts.sh": - when: - os: linux store: steam steam: id: 752170 -'Save me Mr Tako: Tasukete Tako-San': +"Save me Mr Tako: Tasukete Tako-San": files: - /SaveMeMrTako_Data: + "/SaveMeMrTako_Data": tags: - save when: - os: windows - /SaveMeMrTako_Data/Settings.xml: + "/SaveMeMrTako_Data/Settings.xml": tags: - config when: @@ -455190,7 +456398,7 @@ Save Your Nuts: installDir: Save me Mr Tako Tasukete Tako-San: {} launch: - /SaveMeMrTako.exe: + "/SaveMeMrTako.exe": - when: - os: windows store: steam @@ -455205,7 +456413,7 @@ Save the Creatures: installDir: Save the Creatures: {} launch: - /Creatures.exe: + "/Creatures.exe": - when: - os: windows store: steam @@ -455215,15 +456423,15 @@ Save the Dodos: installDir: Save the Dodos: {} launch: - /nwjs.app: + "/nwjs.app": - when: - os: mac store: steam - /std: + "/std": - when: - os: linux store: steam - /std.exe: + "/std.exe": - when: - os: windows store: steam @@ -455233,7 +456441,7 @@ Save the Furries: installDir: Save the Furries: {} launch: - /SaveTheFurries.exe: + "/SaveTheFurries.exe": - when: - store: steam steam: @@ -455242,7 +456450,7 @@ Save the Halloween: installDir: Save the Halloween: {} launch: - /Save the Halloween.exe: + "/Save the Halloween.exe": - when: - os: windows store: steam @@ -455255,32 +456463,32 @@ Save the Ninja Clan: installDir: Save the Ninja Clan: {} launch: - /STNC.exe: + "/STNC.exe": - when: - os: windows store: steam - /SaveTheNinjaClan.app: + "/SaveTheNinjaClan.app": - when: - os: mac store: steam - /SaveTheNinjaClan.x86: + "/SaveTheNinjaClan.x86": - when: - bit: 32 os: linux store: steam - /SaveTheNinjaClan.x86_64: + "/SaveTheNinjaClan.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 566670 -'Save the Universe, Please!': +"Save the Universe, Please!": installDir: - 'Save the Universe, Please!': {} + "Save the Universe, Please!": {} launch: - /Game.exe: - - arguments: '-windowed' + "/Game.exe": + - arguments: "-windowed" when: - os: windows store: steam @@ -455302,7 +456510,7 @@ Saving Harmony: installDir: Saving Harmony: {} launch: - /Saving Harmony.exe: + "/Saving Harmony.exe": - when: - store: steam steam: @@ -455311,7 +456519,7 @@ Saving Simon: installDir: Saving Simon: {} launch: - /Simon.exe: + "/Simon.exe": - when: - os: windows store: steam @@ -455329,12 +456537,12 @@ Saviors of Sapphire Wings / Stranger of Sword City Revisited: id: 1363840 Saw: files: - /My Games/Saw/SawGame/Checkpoints/default_checkpoint.sav: + "/My Games/Saw/SawGame/Checkpoints/default_checkpoint.sav": tags: - save when: - os: windows - /My Games/Saw/SawGame/Config: + "/My Games/Saw/SawGame/Config": tags: - config when: @@ -455342,7 +456550,7 @@ Saw: installDir: Saw: {} launch: - /Binaries//SawGame.exe: + "/Binaries//SawGame.exe": - when: - store: steam steam: @@ -455351,15 +456559,15 @@ Say Goodbye: installDir: Say Goodbye: {} launch: - /nw.exe: - - arguments: '--in-process-gpu' + "/nw.exe": + - arguments: "--in-process-gpu" when: - store: steam steam: id: 557880 Say No! More: files: - /AppData/LocalLow/Thunderful Publishing/SayNoMore/: + "/AppData/LocalLow/Thunderful Publishing/SayNoMore/": tags: - config - save @@ -455368,11 +456576,11 @@ Say No! More: installDir: SayNo!More: {} launch: - /MacOS/SNM.app/Contents/MacOS/SayNoMore: + "/MacOS/SNM.app/Contents/MacOS/SayNoMore": - when: - os: mac store: steam - /SNM.exe: + "/SNM.exe": - when: - bit: 64 os: windows @@ -455385,7 +456593,7 @@ Say No! More: id: 1191900 Saya no Uta ~ The Song of Saya: files: - /Nitroplus/saya_en: + "/Nitroplus/saya_en": tags: - save when: @@ -455395,7 +456603,7 @@ Saya no Uta ~ The Song of Saya: installDir: The Song of Saya: {} launch: - /Saya_Steam.exe: + "/Saya_Steam.exe": - when: - store: steam steam: @@ -455411,12 +456619,12 @@ Saydi and the Ancient Forest: id: 911770 Sayonara Umihara Kawase: files: - /Sayonara Umihara Kawase/UmiProf00.bin: + "/Sayonara Umihara Kawase/UmiProf00.bin": tags: - save when: - os: windows - /Sayonara Umihara Kawase/hidconf.ini: + "/Sayonara Umihara Kawase/hidconf.ini": tags: - config when: @@ -455424,7 +456632,7 @@ Sayonara Umihara Kawase: installDir: Sayonara Umihara Kawase: {} launch: - /UmiByeWin.exe: + "/UmiByeWin.exe": - when: - os: windows store: steam @@ -455432,7 +456640,7 @@ Sayonara Umihara Kawase: id: 378750 Sayonara Wild Hearts: files: - /AppData/LocalLow/Simogo/Sayonara Wild Hearts/gamedata.bin: + "/AppData/LocalLow/Simogo/Sayonara Wild Hearts/gamedata.bin": tags: - save when: @@ -455440,7 +456648,7 @@ Sayonara Wild Hearts: installDir: Sayonara Wild Hearts: {} launch: - /Sayonara Wild Hearts.exe: + "/Sayonara Wild Hearts.exe": - when: - os: windows store: steam @@ -455452,7 +456660,7 @@ Sayonara Wild Hearts: id: 1122720 Scalak: files: - /AppData/LocalLow/Hamster On Coke Games/Scalak/Data/saveData.txt: + "/AppData/LocalLow/Hamster On Coke Games/Scalak/Data/saveData.txt": tags: - save when: @@ -455460,15 +456668,15 @@ Scalak: installDir: Scalak: {} launch: - /Scalak.app: + "/Scalak.app": - when: - os: mac store: steam - /Scalak.exe: + "/Scalak.exe": - when: - os: windows store: steam - /Scalak.x86_64: + "/Scalak.x86_64": - when: - os: linux store: steam @@ -455478,25 +456686,25 @@ Scalak: - config steam: id: 858760 -Scallywag's Honor: +"Scallywag's Honor": steam: id: 1083150 -'Scalpers: Turtle & the Moonshine Gang': +"Scalpers: Turtle & the Moonshine Gang": installDir: SCALPERS Turtle & the Moonshine Gang: {} launch: - /Scalpers.exe: - - arguments: '-popupwindow' + "/Scalpers.exe": + - arguments: "-popupwindow" when: - os: windows store: steam steam: id: 577280 -'Scamp: High Hat Havoc': +"Scamp: High Hat Havoc": installDir: Scamp High Hat Havoc: {} launch: - /Scamp High Hat Havoc.exe: + "/Scamp High Hat Havoc.exe": - when: - os: windows store: steam @@ -455504,17 +456712,17 @@ Scallywag's Honor: id: 942510 Scania Truck Driving Simulator: files: - /SCANIA Truck Driving Simulator/config.cfg: + "/SCANIA Truck Driving Simulator/config.cfg": tags: - config when: - os: windows - /SCANIA Truck Driving Simulator/leaderboards: + "/SCANIA Truck Driving Simulator/leaderboards": tags: - save when: - os: windows - /SCANIA Truck Driving Simulator/profile//config.cfg: + "/SCANIA Truck Driving Simulator/profile//config.cfg": tags: - config when: @@ -455522,46 +456730,46 @@ Scania Truck Driving Simulator: installDir: Scania Truck Driving Simulator: {} launch: - /bin/win_x86/scania_truck_driving_simulator.exe: + "/bin/win_x86/scania_truck_driving_simulator.exe": - when: - os: windows store: steam - - arguments: '-rdevice dx9' + - arguments: "-rdevice dx9" when: - os: windows store: steam - - arguments: '-rdevice gl' + - arguments: "-rdevice gl" when: - os: windows store: steam - - arguments: '-safe' + - arguments: "-safe" when: - store: steam steam: id: 258760 Scanner Sombre: files: - /AppData/LocalLow/Introversion Software/ScannerSombre: + "/AppData/LocalLow/Introversion Software/ScannerSombre": tags: - config when: - os: windows - /AppData/LocalLow/Introversion Software/ScannerSombre/saves: + "/AppData/LocalLow/Introversion Software/ScannerSombre/saves": tags: - save when: - os: windows - /Library/Application Support/unity.Introversion Software.ScannerSombre/saves: + "/Library/Application Support/unity.Introversion Software.ScannerSombre/saves": tags: - save when: - os: mac - /unity3d/Introversion Software/ScannerSombre: + "/unity3d/Introversion Software/ScannerSombre": tags: - config when: - os: linux - /unity3d/Introversion Software/ScannerSombre/saves: + "/unity3d/Introversion Software/ScannerSombre/saves": tags: - config when: @@ -455571,16 +456779,16 @@ Scanner Sombre: installDir: Scanner Sombre: {} launch: - /Scanner Sombre.app: + "/Scanner Sombre.app": - when: - bit: 64 os: mac store: steam - /scanner sombre.exe: + "/scanner sombre.exe": - when: - os: windows store: steam - /scanner sombre.x86_64: + "/scanner sombre.x86_64": - when: - bit: 64 os: linux @@ -455595,11 +456803,11 @@ Scapeland: installDir: Scapeland: {} launch: - /Scapeland.app/Contents/MacOS/Scapeland: + "/Scapeland.app/Contents/MacOS/Scapeland": - when: - os: mac store: steam - /Scapeland.exe: + "/Scapeland.exe": - when: - os: windows store: steam @@ -455609,7 +456817,7 @@ Scar of the Doll: installDir: Scar of the Doll: {} launch: - /Doll.exe: + "/Doll.exe": - when: - store: steam steam: @@ -455618,15 +456826,15 @@ Scarab Tales: installDir: Scarab Tales: {} launch: - /Scarab_Tales.app: + "/Scarab_Tales.app": - when: - os: mac store: steam - /Scarab_Tales.exe: + "/Scarab_Tales.exe": - when: - os: windows store: steam - /Scarab_Tales.x86: + "/Scarab_Tales.x86": - when: - os: linux store: steam @@ -455634,12 +456842,12 @@ Scarab Tales: id: 370050 Scarf: files: - /Scarf/Saved/Config/WindowsNoEditor: + "/Scarf/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /Scarf/Saved/SaveGames: + "/Scarf/Saved/SaveGames": tags: - save when: @@ -455649,14 +456857,14 @@ Scarf: installDir: Scarf: {} launch: - /Scarf.exe: + "/Scarf.exe": - when: - bit: 64 os: windows store: steam steam: id: 645320 -'Scarface: The World Is Yours': +"Scarface: The World Is Yours": registry: HKEY_LOCAL_MACHINE/SOFTWARE/WOW6432Node/VUGAMES/Scarface: tags: @@ -455665,7 +456873,7 @@ Scarlet Fantasy: installDir: Scarlet Fantasy: {} launch: - /Fareo Shadowlands.exe: + "/Fareo Shadowlands.exe": - when: - os: windows store: steam @@ -455677,15 +456885,15 @@ Scarlet Hollow: installDir: ScarletHollow: {} launch: - /ScarletHollow.app: + "/ScarletHollow.app": - when: - os: mac store: steam - /ScarletHollow.exe: + "/ScarletHollow.exe": - when: - os: windows store: steam - /ScarletHollow.sh: + "/ScarletHollow.sh": - when: - os: linux store: steam @@ -455693,7 +456901,7 @@ Scarlet Hollow: id: 1609230 Scarlet Hood and the Wicked Wood: files: - /AppData/LocalLow/DevespressoGames/ScarletHood: + "/AppData/LocalLow/DevespressoGames/ScarletHood": tags: - save when: @@ -455703,16 +456911,16 @@ Scarlet Hood and the Wicked Wood: installDir: ScarletHood: {} launch: - /ScarletHood.app/Contents/MacOS/ScarletHood: + "/ScarletHood.app/Contents/MacOS/ScarletHood": - when: - os: mac store: steam - /ScarletHood.exe: + "/ScarletHood.exe": - when: - bit: 64 os: windows store: steam - /ScarletHood.x86_64: + "/ScarletHood.x86_64": - when: - bit: 64 os: linux @@ -455721,20 +456929,22 @@ Scarlet Hood and the Wicked Wood: id: 1141120 Scarlet Maiden: files: - /AppData/LocalLow/OttersideGames/ScarletMaiden: + "/AppData/LocalLow/OttersideGames/ScarletMaiden": tags: - save when: - - store: steam - /AppData/LocalLow/OttersideGames/ScarletMaiden/settings: + - os: windows + store: steam + "/AppData/LocalLow/OttersideGames/ScarletMaiden/settings": tags: - config when: - - store: steam + - os: windows + store: steam installDir: Scarlet Maiden: {} launch: - /ScarletMaiden.exe: + "/ScarletMaiden.exe": - when: - os: windows store: steam @@ -455742,34 +456952,37 @@ Scarlet Maiden: id: 1968840 Scarlet Nexus: files: - /BANDAI NAMCO Entertainment/SCARLET NEXUS/Saved/SaveGames/: + "/BANDAI NAMCO Entertainment/SCARLET NEXUS/Saved/SaveGames/": tags: - save when: - - store: steam - /BANDAI NAMCO Entertainment/SCARLET NEXUS/Saved/SaveGames//SAVEDATA_SYSTEM.sav: + - os: windows + store: steam + "/BANDAI NAMCO Entertainment/SCARLET NEXUS/Saved/SaveGames//SAVEDATA_SYSTEM.sav": tags: - config when: - - store: steam - /Packages/NAMCOBANDAIGamesInc.CODERed_gdy2aq6ez762w/LocalCache/Local/ScarletNexus/Saved/Config/WinGDK: + - os: windows + store: steam + "/Packages/NAMCOBANDAIGamesInc.CODERed_gdy2aq6ez762w/LocalCache/Local/ScarletNexus/Saved/Config/WinGDK": tags: - config when: - os: windows store: microsoft - /Packages/NAMCOBANDAIGamesInc.CODERed_gdy2aq6ez762w/SystemAppData/wgs: + "/Packages/NAMCOBANDAIGamesInc.CODERed_gdy2aq6ez762w/SystemAppData/wgs": tags: - save when: - os: windows store: microsoft - /ScarletNexus/Saved/Config/WindowsNoEditor: + "/ScarletNexus/Saved/Config/WindowsNoEditor": tags: - config when: - - store: steam - /ScarletNexus/Saved/SaveGames: + - os: windows + store: steam + "/ScarletNexus/Saved/SaveGames": tags: - save when: @@ -455777,7 +456990,7 @@ Scarlet Nexus: installDir: ScarletNexus: {} launch: - /ScarletNexus.exe: + "/ScarletNexus.exe": - when: - bit: 64 os: windows @@ -455788,7 +457001,7 @@ Scarlet Smiling Skull: installDir: Scarlet Smiling Skull: {} launch: - /Game.exe: + "/Game.exe": - when: - bit: 64 os: windows @@ -455797,7 +457010,7 @@ Scarlet Smiling Skull: id: 930700 Scarlet Tower: files: - /AppData/LocalLow/Pyxeralia/The Scarlet Tower: + "/AppData/LocalLow/Pyxeralia/The Scarlet Tower": tags: - save when: @@ -455805,42 +457018,42 @@ Scarlet Tower: installDir: Scarlet Tower: {} launch: - /The Scarlet Tower.exe: + "/The Scarlet Tower.exe": - when: - bit: 64 os: windows store: steam steam: id: 2181720 -'Scarlett Mysteries: Cursed Child': +"Scarlett Mysteries: Cursed Child": installDir: Scarlett Mysteries Cursed Child: {} launch: - /ScarlettMysteries.exe: + "/ScarlettMysteries.exe": - when: - os: windows store: steam - /ScarlettMysteries_amd64: + "/ScarlettMysteries_amd64": - when: - bit: 64 os: linux store: steam - /ScarlettMysteries_i386: + "/ScarlettMysteries_i386": - when: - bit: 32 os: linux store: steam - /mac_steam.app/Contents/MacOS/mac_steam: + "/mac_steam.app/Contents/MacOS/mac_steam": - when: - os: mac store: steam steam: id: 615350 -Scarlett's Dungeon: +"Scarlett's Dungeon": installDir: - Scarlett's Dungeon: {} + "Scarlett's Dungeon": {} launch: - /Scarletts Dungeon.exe: + "/Scarletts Dungeon.exe": - when: - os: windows store: steam @@ -455848,12 +457061,12 @@ Scarlett's Dungeon: id: 704950 Scars Above: files: - /ScarsAbove/Saved/Config/WindowsNoEditor: + "/ScarsAbove/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /ScarsAbove/Saved/SaveGames: + "/ScarsAbove/Saved/SaveGames": tags: - save when: @@ -455861,7 +457074,7 @@ Scars Above: installDir: Scars Above: {} launch: - /ScarsAbove.exe: + "/ScarsAbove.exe": - when: - os: windows store: steam @@ -455873,7 +457086,7 @@ Scars of Summer: installDir: Scars of Summer: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: @@ -455882,7 +457095,7 @@ Scary Defense: installDir: Scary defense: {} launch: - /scary defense.exe: + "/scary defense.exe": - when: - os: windows store: steam @@ -455895,27 +457108,27 @@ Scary Humans: installDir: scaryHumans: {} launch: - /SHW_86.exe: + "/SHW_86.exe": - when: - bit: 32 os: windows store: steam - /SHWin_64.exe: + "/SHWin_64.exe": - when: - bit: 64 os: windows store: steam - /SH_Lin.x86: + "/SH_Lin.x86": - when: - bit: 32 os: linux store: steam - /SH_Lin.x86_64: + "/SH_Lin.x86_64": - when: - bit: 64 os: linux store: steam - /SH_Mac.app: + "/SH_Mac.app": - when: - bit: 64 os: mac @@ -455926,7 +457139,7 @@ Scary Maze: installDir: ScaryMaze: {} launch: - /scarymaze.exe: + "/scarymaze.exe": - when: - os: windows store: steam @@ -455936,15 +457149,15 @@ Scary New Year: installDir: Scary new year: {} launch: - /SCARY.app: + "/SCARY.app": - when: - os: mac store: steam - /SNY.exe: + "/SNY.exe": - when: - os: windows store: steam - /SNY.x86: + "/SNY.x86": - when: - os: linux store: steam @@ -455952,12 +457165,12 @@ Scary New Year: id: 776970 Scarygirl: files: - /Configurations/0000000100000001.cfg: + "/Configurations/0000000100000001.cfg": tags: - config when: - os: windows - /userdata//202370: + "/userdata//202370": tags: - save when: @@ -455966,16 +457179,16 @@ Scarygirl: installDir: Scarygirl: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: id: 202370 -'Scarytales: All Hail King Mongo': +"Scarytales: All Hail King Mongo": installDir: ScaryTales: {} launch: - /ScaryTales.exe: + "/ScaryTales.exe": - when: - os: windows store: steam @@ -455983,13 +457196,13 @@ Scarygirl: id: 1081240 Scathe: files: - /Scathe/Saved/Config/WindowsNoEditor: + "/Scathe/Saved/Config/WindowsNoEditor": tags: - config - save when: - os: windows - /Scathe/Saved/SaveGames: + "/Scathe/Saved/SaveGames": tags: - save when: @@ -455997,7 +457210,7 @@ Scathe: installDir: Scathe: {} launch: - /Scathe.exe: + "/Scathe.exe": - when: - bit: 64 os: windows @@ -456008,7 +457221,7 @@ Scatteria: installDir: Scatteria: {} launch: - /Scatteria.exe: + "/Scatteria.exe": - when: - os: windows store: steam @@ -456018,7 +457231,7 @@ Scavenger: installDir: Scavenger: {} launch: - /Scavenger.exe: + "/Scavenger.exe": - when: - os: windows store: steam @@ -456026,12 +457239,12 @@ Scavenger: id: 724340 Scavenger SV-4: files: - /Saves: + "/Saves": tags: - save when: - os: windows - /Scavenger.ini: + "/Scavenger.ini": tags: - config when: @@ -456039,24 +457252,24 @@ Scavenger SV-4: installDir: Scavenger SV-4: {} launch: - /Scavenger.exe: + "/Scavenger.exe": - when: - os: windows store: steam steam: id: 779590 -'Scavenger Skirmish: Mortal World': +"Scavenger Skirmish: Mortal World": installDir: BareBoobBrawlerz_PC: {} launch: - /PClaw_v05.exe: + "/PClaw_v05.exe": - when: - store: steam steam: id: 892160 Scavengers: files: - /Scavenger/Saved/Config/WindowsNoEditor: + "/Scavenger/Saved/Config/WindowsNoEditor": tags: - config when: @@ -456072,7 +457285,7 @@ Scenner: installDir: WindowsNoEditor: {} launch: - /WindowsNoEditor/Scenner.exe: + "/WindowsNoEditor/Scenner.exe": - when: - bit: 64 os: windows @@ -456083,18 +457296,18 @@ Schacht: installDir: Schacht: {} launch: - /Schacht.exe: + "/Schacht.exe": - when: - bit: 64 os: windows store: steam steam: id: 513300 -'Schatte: The Witch and the Fake Shadow': +"Schatte: The Witch and the Fake Shadow": installDir: WitchAndShadow: {} launch: - /shadow.exe: + "/shadow.exe": - when: - bit: 64 os: windows @@ -456103,12 +457316,12 @@ Schacht: id: 732290 Schein: files: - /Schein: + "/Schein": tags: - save when: - os: windows - /Schein/Schein.conf: + "/Schein/Schein.conf": tags: - config when: @@ -456118,18 +457331,18 @@ Schein: installDir: Schein: {} launch: - /SCHEINwin32.exe: + "/SCHEINwin32.exe": - when: - os: windows store: steam steam: id: 321920 -'Scheming through the Zombie Apocalypse Ep2: Caged': +"Scheming through the Zombie Apocalypse Ep2: Caged": steam: id: 946770 -'Scheming through the Zombie Apocalypse: The Beginning': +"Scheming through the Zombie Apocalypse: The Beginning": files: - /AppData/LocalLow/Entertainment Forge/Scheming Through The Zombie Apocalypse: + "/AppData/LocalLow/Entertainment Forge/Scheming Through The Zombie Apocalypse": tags: - config - save @@ -456138,24 +457351,24 @@ Schein: installDir: Scheming Through Ep1: {} launch: - /Scheming Through Ep1.app: + "/Scheming Through Ep1.app": - when: - os: mac store: steam - /Scheming Through Ep1.exe: + "/Scheming Through Ep1.exe": - when: - os: windows store: steam steam: id: 813540 -'Schizm: Mysterious Journey': +"Schizm: Mysterious Journey": files: - /Schizm.ini: + "/Schizm.ini": tags: - config when: - os: windows - /Schizm.s**: + "/Schizm.s**": tags: - save when: @@ -456165,7 +457378,7 @@ Schein: installDir: Schizm Mysterious Journey: {} launch: - /playgame.exe: + "/playgame.exe": - when: - os: windows store: steam @@ -456175,7 +457388,7 @@ Schlag den Star - Das Spiel: installDir: Schlag den Star: {} launch: - /SchlagDenStar.exe: + "/SchlagDenStar.exe": - when: - os: windows store: steam @@ -456190,19 +457403,19 @@ School Bus Fun: installDir: SchoolBusFun: {} launch: - /SchoolBusFunSteam.exe: + "/SchoolBusFunSteam.exe": - when: - store: steam steam: id: 301990 School Girl/Zombie Hunter: files: - /sgzh/Saved/Config/WindowsNoEditor: + "/sgzh/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /sgzh/Saved/SaveGames: + "/sgzh/Saved/SaveGames": tags: - save when: @@ -456210,7 +457423,7 @@ School Girl/Zombie Hunter: installDir: SGZH School Girl Zombie Hunter: {} launch: - /sgzh.exe: + "/sgzh.exe": - when: - bit: 64 os: windows @@ -456221,7 +457434,7 @@ School Grounds: installDir: School Grounds: {} launch: - /School Grounds.exe: + "/School Grounds.exe": - when: - os: windows store: steam @@ -456231,7 +457444,7 @@ School Idol: installDir: SchoolIdol: {} launch: - /School Idol.exe: + "/School Idol.exe": - when: - os: windows store: steam @@ -456241,15 +457454,15 @@ School Owner: installDir: School Owner: {} launch: - /School Owner.exe: + "/School Owner.exe": - when: - os: windows store: steam - /SchoolOwner.app: + "/SchoolOwner.app": - when: - os: mac store: steam - /SchoolOwner.x86: + "/SchoolOwner.x86": - when: - os: linux store: steam @@ -456259,11 +457472,11 @@ School Simulator Multiplayer: installDir: SCHOOL SIMULATOR: {} launch: - /SchoolSimulator.app: + "/SchoolSimulator.app": - when: - os: mac store: steam - /SchoolSimulator.exe: + "/SchoolSimulator.exe": - when: - os: windows store: steam @@ -456271,12 +457484,12 @@ School Simulator Multiplayer: id: 702430 School Tycoon: files: - /Data/saved_games: + "/Data/saved_games": tags: - save when: - os: windows - /settings.dat: + "/settings.dat": tags: - config when: @@ -456285,16 +457498,16 @@ School Wars!!: installDir: Kraken Academy: {} launch: - /Kraken Academy: + "/Kraken Academy": - when: - bit: 64 os: linux store: steam - /Kraken Academy.app/Contents/MacOS/Kraken Academy: + "/Kraken Academy.app/Contents/MacOS/Kraken Academy": - when: - os: mac store: steam - /Kraken Academy.exe: + "/Kraken Academy.exe": - when: - bit: 64 os: windows @@ -456305,7 +457518,7 @@ School Years: installDir: LoveDiary: {} launch: - /Diary.exe: + "/Diary.exe": - when: - os: windows store: steam @@ -456315,11 +457528,11 @@ School of Dragons: installDir: School of Dragons How to Train Your Dragon: {} launch: - /DOMain.app: + "/DOMain.app": - when: - os: mac store: steam - /DOMain.exe: + "/DOMain.exe": - when: - os: windows store: steam @@ -456329,20 +457542,20 @@ School of Horror: installDir: School of Horror: {} launch: - /School of Horror.app/Contents/MacOS/MacOs: + "/School of Horror.app/Contents/MacOS/MacOs": - when: - os: mac store: steam - /School of Horror.exe: + "/School of Horror.exe": - when: - os: windows store: steam - /SchoolofHorror.x86: + "/SchoolofHorror.x86": - when: - bit: 32 os: linux store: steam - /SchoolofHorror.x86_64: + "/SchoolofHorror.x86_64": - when: - bit: 64 os: linux @@ -456352,9 +457565,9 @@ School of Horror: School of Intellectual Gamers: steam: id: 1130760 -'School of Talent: Suzu-Route': +"School of Talent: Suzu-Route": files: - /AppData/LocalLow/MyDearest/School_of_Talent_SUZU-ROUTE/Utage/SaveSchool_of_Talent_SUZU-ROUTE: + "/AppData/LocalLow/MyDearest/School_of_Talent_SUZU-ROUTE/Utage/SaveSchool_of_Talent_SUZU-ROUTE": tags: - save when: @@ -456362,11 +457575,11 @@ School of Intellectual Gamers: installDir: School of Talent SUZU-ROUTE: {} launch: - /School_of_Talent_SUZU-ROUTE.app: + "/School_of_Talent_SUZU-ROUTE.app": - when: - os: mac store: steam - /School_of_Talent_SUZU-ROUTE.exe: + "/School_of_Talent_SUZU-ROUTE.exe": - when: - os: windows store: steam @@ -456376,11 +457589,11 @@ School of Intellectual Gamers: - config steam: id: 573040 -'School of the Dead: Anastasia': +"School of the Dead: Anastasia": installDir: School of the Dead Anastasia: {} launch: - /School of the Dead Anastasia.exe: + "/School of the Dead Anastasia.exe": - when: - os: windows store: steam @@ -456401,51 +457614,51 @@ Schoolbreak.io: installDir: schoolbreak.io: {} launch: - /schoolbreak.exe: - - arguments: '--disable-direct-composition --in-process-gpu' + "/schoolbreak.exe": + - arguments: "--disable-direct-composition --in-process-gpu" when: - bit: 64 os: windows store: steam steam: id: 1632980 -Schrodinger's cat simulator - PT: +"Schrodinger's cat simulator - PT": installDir: - Schrodinger's cat simulator - PT: {} + "Schrodinger's cat simulator - PT": {} launch: - /Schrodinger's cat simulator.exe: + "/Schrodinger's cat simulator.exe": - when: - os: windows store: steam steam: id: 1204870 -Schrödinger's Cat and the Raiders of the Lost Quark: +"Schrödinger's Cat and the Raiders of the Lost Quark": installDir: - Schrodinger's Cat And The Raiders Of The Lost Quark: {} + "Schrodinger's Cat And The Raiders Of The Lost Quark": {} launch: - /game.app: + "/game.app": - when: - os: mac store: steam - /game.exe: + "/game.exe": - when: - os: windows store: steam - /game.x86: + "/game.x86": - when: - bit: 32 os: linux store: steam - /game.x86_64: + "/game.x86_64": - when: - bit: 64 os: linux store: steam registry: - HKEY_CURRENT_USER/Software/Italic Pig/Schrödinger's Cat and the Raiders of the Lost Quark: + "HKEY_CURRENT_USER/Software/Italic Pig/Schrödinger's Cat and the Raiders of the Lost Quark": tags: - config - HKEY_CURRENT_USER/Software/Italic Pig/Schrödinger's Cat and the Raiders of the Lost Quark/catinfo_*: + "HKEY_CURRENT_USER/Software/Italic Pig/Schrödinger's Cat and the Raiders of the Lost Quark/catinfo_*": tags: - save steam: @@ -456454,7 +457667,7 @@ Sci-fi Chess: installDir: Sci-fi Chess: {} launch: - /Sci-fi Chess.exe: + "/Sci-fi Chess.exe": - when: - os: windows store: steam @@ -456470,21 +457683,21 @@ Science Girls: installDir: ScienceGirls: {} launch: - /ScienceGirls!.app: + "/ScienceGirls!.app": - when: - os: mac store: steam - /ScienceGirls!.exe: + "/ScienceGirls!.exe": - when: - os: windows store: steam - /ScienceGirls!.sh: + "/ScienceGirls!.sh": - when: - os: linux store: steam steam: id: 269010 -'Science:The world is in your hands': +"Science:The world is in your hands": installDir: ScienceThe world is in your hands: {} steam: @@ -456493,7 +457706,7 @@ Scikor - Final Scale: installDir: Scikor - Final Scale: {} launch: - /Scikor_FinalScale.exe: + "/Scikor_FinalScale.exe": - when: - os: windows store: steam @@ -456503,26 +457716,26 @@ Scions of Fate: installDir: Scions of Fate: {} launch: - /launcher.exe: + "/launcher.exe": - arguments: STEAMUSER when: - os: windows store: steam steam: id: 747970 -'Scooby Doo! & Looney Tunes Cartoon Universe: Adventure': +"Scooby Doo! & Looney Tunes Cartoon Universe: Adventure": installDir: Scooby-Doo! & Looney Tunes Cartoon Universe Adventure: {} launch: - /CartoonUniverse.exe: + "/CartoonUniverse.exe": - when: - os: windows store: steam steam: id: 294280 -'Scooby-Doo 2: Monsters Unleashed': +"Scooby-Doo 2: Monsters Unleashed": files: - /user*.too: + "/user*.too": tags: - save when: @@ -456534,7 +457747,7 @@ Scions of Fate: - os: windows Scooby-Doo! First Frights: files: - /My Games/Scooby/Save_Profile1.bin: + "/My Games/Scooby/Save_Profile1.bin": tags: - save when: @@ -456545,14 +457758,14 @@ Scooby-Doo! First Frights: - config Scooby-Doo! Jinx at the Sphinx: files: - /Documents/The Learning Company/Jinx At The Sphinx: + "/Documents/The Learning Company/Jinx At The Sphinx": tags: - save when: - os: windows Scooby-Doo! and the Spooky Swamp: files: - /My Games/Scooby2: + "/My Games/Scooby2": tags: - save when: @@ -456573,7 +457786,7 @@ Scorch (2018): installDir: Scorch: {} launch: - /scorch_final.exe: + "/scorch_final.exe": - when: - os: windows store: steam @@ -456581,19 +457794,19 @@ Scorch (2018): id: 875740 Scorched Earth: files: - /SCORCH.CFG: + "/SCORCH.CFG": tags: - config when: - os: dos Scorched Planet: files: - /SP0*.SAV: + "/SP0*.SAV": tags: - save when: - os: windows - /SPLANET.INI: + "/SPLANET.INI": tags: - config when: @@ -456603,12 +457816,12 @@ Score: installDir: SCORE: {} launch: - /SCORE.app: + "/SCORE.app": - when: - bit: 64 os: mac store: steam - /Score.exe: + "/Score.exe": - when: - bit: 64 os: windows @@ -456619,21 +457832,24 @@ Score a Goal: installDir: Score a goal (Physical football): {} launch: - /Score a goal.app/Contents/MacOS/Score a goal: + "/Score a goal.app/Contents/MacOS/Score a goal": - when: - os: mac store: steam - /Score a goal.exe: + "/Score a goal.exe": - when: - bit: 32 os: windows store: steam - /Score a goal.x86: + - bit: 64 + os: windows + store: steam + "/Score a goal.x86": - when: - bit: 32 os: linux store: steam - /Score a goal.x86_64: + "/Score a goal.x86_64": - when: - bit: 64 os: linux @@ -456644,21 +457860,24 @@ Score a Goal 2: installDir: Score a goal 2 (Physical football): {} launch: - /Score a goal 2.app/Contents/MacOS/Score a goal 2: + "/Score a goal 2.app/Contents/MacOS/Score a goal 2": - when: - os: mac store: steam - /Score a goal 2.exe: + "/Score a goal 2.exe": - when: - bit: 32 os: windows store: steam - /Score a goal 2.x86: + - bit: 64 + os: windows + store: steam + "/Score a goal 2.x86": - when: - bit: 32 os: linux store: steam - /Score a goal 2.x86_64: + "/Score a goal 2.x86_64": - when: - bit: 64 os: linux @@ -456669,11 +457888,11 @@ Scoregasm: installDir: Scoregasm: {} launch: - /Scoregasm.app: + "/Scoregasm.app": - when: - os: mac store: steam - /Scoregasm.exe: + "/Scoregasm.exe": - when: - os: windows store: steam @@ -456681,24 +457900,24 @@ Scoregasm: id: 202410 Scorn: files: - /Packages/KeplerInteractive.1439274AB3A46_ymj30pw7xe604/SystemAppData/wgs: + "/Packages/KeplerInteractive.1439274AB3A46_ymj30pw7xe604/SystemAppData/wgs": tags: - save when: - os: windows store: microsoft - /Scorn/Saved/Config/WinGDK: + "/Scorn/Saved/Config/WinGDK": tags: - config when: - os: windows store: microsoft - /Scorn/Saved/Config/WindowsNoEditor: + "/Scorn/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /Scorn/Saved/SaveGames: + "/Scorn/Saved/SaveGames": tags: - save when: @@ -456711,31 +457930,31 @@ Scorn: installDir: Scorn: {} launch: - /Scorn.exe: + "/Scorn.exe": - when: - store: steam steam: id: 698670 -'Scorpion: Disfigured': +"Scorpion: Disfigured": files: - /My Games/Atari/Scorpion-Disfigured/1_1_1_En: + "/My Games/Atari/Scorpion-Disfigured/1_1_1_En": tags: - config when: - os: windows - /My Games/Atari/Scorpion-Disfigured/1_1_1_En/Save: + "/My Games/Atari/Scorpion-Disfigured/1_1_1_En/Save": tags: - save when: - os: windows -'Scott Pilgrim vs. The World: The Game': +"Scott Pilgrim vs. The World: The Game": files: - /Saved Games/Scott: + "/Saved Games/Scott": tags: - config when: - os: windows - /Saved Games/Scott/Savegame: + "/Saved Games/Scott/Savegame": tags: - save when: @@ -456743,8 +457962,8 @@ Scorn: installDir: Scott Pilgrim vs The World: {} launch: - /Scott.exe: - - arguments: '-uplay_steam_mode' + "/Scott.exe": + - arguments: "-uplay_steam_mode" when: - os: windows store: steam @@ -456754,31 +457973,31 @@ Scott in Space: installDir: Scott in Space: {} launch: - /scottinspace.exe: + "/scottinspace.exe": - when: - os: windows store: steam steam: id: 385980 -'Scourge of War: Waterloo': +"Scourge of War: Waterloo": installDir: Scourge of War Waterloo: {} launch: - /sowwl.exe: + "/sowwl.exe": - when: - os: windows store: steam steam: id: 369390 -'Scourge: Outbreak': +"Scourge: Outbreak": installDir: Scourge Outbreak: {} launch: - /Binaries/Win32/ScourgeGame.exe: + "/Binaries/Win32/ScourgeGame.exe": - when: - os: windows store: steam - /Scourge Outbreak.app: + "/Scourge Outbreak.app": - when: - os: mac store: steam @@ -456786,47 +458005,47 @@ Scott in Space: id: 227560 ScourgeBringer: files: - /.scourgebringer/*.map: + "/.scourgebringer/*.map": tags: - config when: - os: linux - /.scourgebringer/*.sav: + "/.scourgebringer/*.sav": tags: - save when: - os: linux - /.scourgebringer/settings.ini: + "/.scourgebringer/settings.ini": tags: - config when: - os: linux - /AppData/LocalLow/Flying Oak Games/ScourgeBringer/*.map: + "/AppData/LocalLow/Flying Oak Games/ScourgeBringer/*.map": tags: - config when: - os: windows - /AppData/LocalLow/Flying Oak Games/ScourgeBringer/*.sav: + "/AppData/LocalLow/Flying Oak Games/ScourgeBringer/*.sav": tags: - save when: - os: windows - /AppData/LocalLow/Flying Oak Games/ScourgeBringer/settings.ini: + "/AppData/LocalLow/Flying Oak Games/ScourgeBringer/settings.ini": tags: - config when: - os: windows - /Library/Application Support/Flying Oak Games/ScourgeBringer/*.map: + "/Library/Application Support/Flying Oak Games/ScourgeBringer/*.map": tags: - config when: - os: mac - /Library/Application Support/Flying Oak Games/ScourgeBringer/*.sav: + "/Library/Application Support/Flying Oak Games/ScourgeBringer/*.sav": tags: - save when: - os: mac - /Library/Application Support/Flying Oak Games/ScourgeBringer/settings.ini: + "/Library/Application Support/Flying Oak Games/ScourgeBringer/settings.ini": tags: - config when: @@ -456836,29 +458055,29 @@ ScourgeBringer: installDir: ScourgeBringer: {} launch: - /Launch.sh: + "/Launch.sh": - when: - os: linux store: steam - /ScourgeBringer.app: + "/ScourgeBringer.app": - when: - os: mac store: steam - /ScourgeBringer.exe: + "/ScourgeBringer.exe": - when: - os: windows store: steam steam: id: 1037020 -Scout's Honor: +"Scout's Honor": installDir: Camped Out: {} launch: - /CampedOut.app/Contents/MacOS/CampedOut: + "/CampedOut.app/Contents/MacOS/CampedOut": - when: - os: mac store: steam - /CampedOut.exe: + "/CampedOut.exe": - when: - os: windows store: steam @@ -456867,7 +458086,7 @@ Scout's Honor: Scram: steam: id: 773920 -'Scramble: Battle of Britain': +"Scramble: Battle of Britain": gog: id: 1766004857 steam: @@ -456882,7 +458101,7 @@ Scrap: installDir: Scrap: {} launch: - /Scrap.exe: + "/Scrap.exe": - when: - os: windows store: steam @@ -456897,16 +458116,16 @@ Scrap Galaxy: installDir: Scrap Galaxy: {} launch: - /Scrap Galaxy.exe: + "/Scrap Galaxy.exe": - when: - os: windows store: steam - /ScrapGalaxy.x86: + "/ScrapGalaxy.x86": - when: - bit: 32 os: linux store: steam - /ScrapGalaxy.x86_64: + "/ScrapGalaxy.x86_64": - when: - bit: 64 os: linux @@ -456915,13 +458134,13 @@ Scrap Galaxy: id: 723110 Scrap Garden: files: - /.config/unity3d/Flazm/scrap-garden/prefs: + "/.config/unity3d/Flazm/scrap-garden/prefs": tags: - config - save when: - os: linux - /userdata//465760/remote/scrap-garden-storage.txt: + "/userdata//465760/remote/scrap-garden-storage.txt": tags: - save when: @@ -456929,20 +458148,20 @@ Scrap Garden: installDir: Scrap Garden: {} launch: - /scrap-garden.app: + "/scrap-garden.app": - when: - os: mac store: steam - /scrap-garden.exe: + "/scrap-garden.exe": - when: - os: windows store: steam - /scrap-garden.x86: + "/scrap-garden.x86": - when: - bit: 32 os: linux store: steam - /scrap-garden.x86_64: + "/scrap-garden.x86_64": - when: - bit: 64 os: linux @@ -456956,13 +458175,13 @@ Scrap Garden: id: 465760 Scrap Garden - The Day Before: files: - /.config/unity3d/Flazm/scrap-garden-tdb/prefs: + "/.config/unity3d/Flazm/scrap-garden-tdb/prefs": tags: - config - save when: - os: linux - /userdata//508390/remote/scrap-garden-tdb-storage.txt: + "/userdata//508390/remote/scrap-garden-tdb-storage.txt": tags: - save when: @@ -456970,20 +458189,20 @@ Scrap Garden - The Day Before: installDir: Scrap Garden - The Day Before: {} launch: - /scrap-garden-tdb.app: + "/scrap-garden-tdb.app": - when: - os: mac store: steam - /scrap-garden-tdb.exe: + "/scrap-garden-tdb.exe": - when: - os: windows store: steam - /scrap-garden-tdb.x86: + "/scrap-garden-tdb.x86": - when: - bit: 32 os: linux store: steam - /scrap-garden-tdb.x86_64: + "/scrap-garden-tdb.x86_64": - when: - bit: 64 os: linux @@ -456997,7 +458216,7 @@ Scrap Garden - The Day Before: id: 508390 Scrap Mechanic: files: - /Axolot Games/Scrap Mechanic: + "/Axolot Games/Scrap Mechanic": tags: - save when: @@ -457005,46 +458224,46 @@ Scrap Mechanic: installDir: Scrap Mechanic: {} launch: - /Release/ScrapMechanic.exe: + "/Release/ScrapMechanic.exe": - when: - bit: 32 os: windows store: steam - workingDir: /Release + workingDir: "/Release" steam: id: 387990 Scrap Riders: installDir: Scrap Riders: {} launch: - /Scrap Riders.exe: + "/Scrap Riders.exe": - when: - os: windows store: steam - /ScrapRiders.app: + "/ScrapRiders.app": - when: - os: mac store: steam steam: id: 1542550 -'Scraper: First Strike': +"Scraper: First Strike": installDir: Scraper The First Strike: {} steam: id: 909780 -'Scraper: Gauntlet': +"Scraper: Gauntlet": installDir: Scraper Gauntlet: {} steam: id: 1171130 Scrapland: files: - /Save: + "/Save": tags: - save when: - os: windows - /Scrap.cfg: + "/Scrap.cfg": tags: - config when: @@ -457055,7 +458274,7 @@ Scrapland Remastered: installDir: Scrapland: {} launch: - /Bin/Scrap.exe: + "/Bin/Scrap.exe": - when: - os: windows store: steam @@ -457067,7 +458286,7 @@ Scrapnaut: installDir: Scrapnaut: {} launch: - /Scrapnaut.exe: + "/Scrapnaut.exe": - when: - os: windows store: steam @@ -457077,7 +458296,7 @@ Scrapper: installDir: Scrapper: {} launch: - /Scrapper.exe: + "/Scrapper.exe": - when: - os: windows store: steam @@ -457087,21 +458306,21 @@ Scraps and Patches: installDir: Scraps and Patches: {} launch: - /mac/S&P.app: + "/mac/S&P.app": - when: - os: mac store: steam - /windows/S&P.exe: + "/windows/S&P.exe": - when: - os: windows store: steam steam: id: 941400 -'Scraps: Modular Vehicle Combat': +"Scraps: Modular Vehicle Combat": installDir: Scraps: {} launch: - /Scraps.app: + "/Scraps.app": - when: - os: mac store: steam @@ -457109,11 +458328,11 @@ Scraps and Patches: when: - os: mac store: steam - - arguments: '-batchmode +server' + - arguments: "-batchmode +server" when: - os: mac store: steam - /Scraps.exe: + "/Scraps.exe": - when: - os: windows store: steam @@ -457121,11 +458340,11 @@ Scraps and Patches: when: - os: windows store: steam - - arguments: '-batchmode +server' + - arguments: "-batchmode +server" when: - os: windows store: steam - /Scraps32.sh: + "/Scraps32.sh": - when: - bit: 32 os: linux @@ -457135,12 +458354,12 @@ Scraps and Patches: - bit: 32 os: linux store: steam - - arguments: '-batchmode +server' + - arguments: "-batchmode +server" when: - bit: 32 os: linux store: steam - /Scraps64.sh: + "/Scraps64.sh": - when: - bit: 64 os: linux @@ -457150,7 +458369,7 @@ Scraps and Patches: - bit: 64 os: linux store: steam - - arguments: '-batchmode +server' + - arguments: "-batchmode +server" when: - bit: 64 os: linux @@ -457161,7 +458380,7 @@ Scrapyard Robot Rampage: installDir: Scrapyard Robot Rampage: {} launch: - /ScrapyardRobotRampage.exe: + "/ScrapyardRobotRampage.exe": - when: - os: windows store: steam @@ -457171,15 +458390,15 @@ Scrash: installDir: Scrash: {} launch: - /Scrash.app: + "/Scrash.app": - when: - os: mac store: steam - /nw: + "/nw": - when: - os: linux store: steam - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -457187,13 +458406,13 @@ Scrash: id: 807050 Scratches: files: - /Nucleosys/Scratches: + "/Nucleosys/Scratches": tags: - config - save when: - os: windows - /Nucleosys/Scratches Director's Cut: + "/Nucleosys/Scratches Director's Cut": tags: - config - save @@ -457204,7 +458423,7 @@ Scratches: installDir: Scratches: {} launch: - /scream.exe: + "/scream.exe": - when: - store: steam steam: @@ -457213,7 +458432,7 @@ Scream Collector: installDir: Scream Collector: {} launch: - /ScreamCollector.exe: + "/ScreamCollector.exe": - when: - os: windows store: steam @@ -457238,12 +458457,12 @@ Scream of the Viking REDUX: id: 1062880 Screamer: files: - /CONFIG: + "/CONFIG": tags: - config when: - os: dos - /REPLAYS: + "/REPLAYS": tags: - save when: @@ -457253,17 +458472,17 @@ Screamer: installDir: Screamer: {} launch: - /DOSBox/dosbox.app/Contents/MacOS/DOSBox: - - arguments: '-conf \"./dosboxScreamer.conf\" -conf \"./dosboxScreamer_single.conf\" -noconsole' + "/DOSBox/dosbox.app/Contents/MacOS/DOSBox": + - arguments: "-conf \\\"./dosboxScreamer.conf\\\" -conf \\\"./dosboxScreamer_single.conf\\\" -noconsole" when: - os: mac store: steam - /Launch Screamer.bat: + "/Launch Screamer.bat": - when: - os: windows store: steam - /dosbox/dosbox: - - arguments: '-conf \"./dosboxScreamer.conf\" -conf \"./dosboxScreamer_single.conf\" -noconsole' + "/dosbox/dosbox": + - arguments: "-conf \\\"./dosboxScreamer.conf\\\" -conf \\\"./dosboxScreamer_single.conf\\\" -noconsole" when: - os: linux store: steam @@ -457271,12 +458490,12 @@ Screamer: id: 697580 Screamer 2: files: - /CONFIG: + "/CONFIG": tags: - config when: - os: dos - /REPLAYS: + "/REPLAYS": tags: - save when: @@ -457286,17 +458505,17 @@ Screamer 2: installDir: Screamer 2: {} launch: - /DOSBox/dosbox.app/Contents/MacOS/DOSBox: - - arguments: '-conf \"./dosbox_screamer2.conf\" -conf \"./dosbox_screamer2_single.conf\" -noconsole' + "/DOSBox/dosbox.app/Contents/MacOS/DOSBox": + - arguments: "-conf \\\"./dosbox_screamer2.conf\\\" -conf \\\"./dosbox_screamer2_single.conf\\\" -noconsole" when: - os: mac store: steam - /Launch Screamer 2.bat: + "/Launch Screamer 2.bat": - when: - os: windows store: steam - /dosbox/dosbox: - - arguments: '-conf \"./dosbox_screamer2.conf\" -conf \"./dosbox_screamer2_single.conf\" -noconsole' + "/dosbox/dosbox": + - arguments: "-conf \\\"./dosbox_screamer2.conf\\\" -conf \\\"./dosbox_screamer2_single.conf\\\" -noconsole" when: - os: linux store: steam @@ -457304,7 +458523,7 @@ Screamer 2: id: 698620 Screamer 4x4: files: - /Saved: + "/Saved": tags: - save when: @@ -457313,21 +458532,21 @@ Screamer 4x4: id: 1207664523 Screamer Rally: files: - /CONFIG: + "/CONFIG": tags: - config when: - os: dos - /REPLAYS: + "/REPLAYS": tags: - save when: - os: dos -'Screaming Chicken: Ultimate Showdown': +"Screaming Chicken: Ultimate Showdown": installDir: Screaming Chicken Ultimate Showdown: {} launch: - /Screaming Chicken Ultimate Showdown.exe: + "/Screaming Chicken Ultimate Showdown.exe": - when: - store: steam steam: @@ -457336,11 +458555,11 @@ Screaming Eagles: installDir: Screaming Eagles: {} launch: - /Screaming Eagles.app: + "/Screaming Eagles.app": - when: - os: mac store: steam - /Screaming Eagles.exe: + "/Screaming Eagles.exe": - when: - os: windows store: steam @@ -457353,12 +458572,12 @@ Screen VR: id: 1114170 Screencheat: files: - /profiles/profiles.dat: + "/profiles/profiles.dat": tags: - save when: - os: windows - /userdata//301970/remote/profiles/profiles.dat: + "/userdata//301970/remote/profiles/profiles.dat": tags: - save when: @@ -457368,15 +458587,15 @@ Screencheat: installDir: Screencheat: {} launch: - /screencheat.app: + "/screencheat.app": - when: - os: mac store: steam - /screencheat.exe: + "/screencheat.exe": - when: - os: windows store: steam - /screencheat.x86: + "/screencheat.x86": - when: - os: linux store: steam @@ -457395,15 +458614,15 @@ Screeps: installDir: Screeps: {} launch: - /nw: + "/nw": - when: - os: linux store: steam - /nw.exe: + "/nw.exe": - when: - os: windows store: steam - /nwjs.app: + "/nwjs.app": - when: - os: mac store: steam @@ -457413,16 +458632,16 @@ Screeps Arena: installDir: ScreepsArena: {} launch: - /arena: + "/arena": - when: - bit: 64 os: linux store: steam - /arena.app: + "/arena.app": - when: - os: mac store: steam - /arena.exe: + "/arena.exe": - when: - os: windows store: steam @@ -457433,7 +458652,7 @@ Screw-Nut: id: 775810 Scribble It!: files: - /ScribbleIt: + "/ScribbleIt": tags: - config when: @@ -457441,18 +458660,18 @@ Scribble It!: installDir: Scribble It!: {} launch: - /ScribbleIt.app: - - arguments: '-NOSPLASH' + "/ScribbleIt.app": + - arguments: "-NOSPLASH" when: - os: mac store: steam - /ScribbleIt.exe: - - arguments: '-NOSPLASH' + "/ScribbleIt.exe": + - arguments: "-NOSPLASH" when: - os: windows store: steam - /ScribbleIt.sh: - - arguments: '-NOSPLASH' + "/ScribbleIt.sh": + - arguments: "-NOSPLASH" when: - os: linux store: steam @@ -457462,15 +458681,15 @@ Scribble Ships: installDir: Scribble Ships: {} launch: - /ScribbleShips.app/Contents/MacOS/Mac_Runner: + "/ScribbleShips.app/Contents/MacOS/Mac_Runner": - when: - os: mac store: steam - /ScribbleShips.exe: + "/ScribbleShips.exe": - when: - os: windows store: steam - /ScribbleShips/runner: + "/ScribbleShips/runner": - when: - os: linux store: steam @@ -457480,15 +458699,15 @@ Scribble Space: installDir: Scribble Space: {} launch: - /ScribbleSpace.app: + "/ScribbleSpace.app": - when: - os: mac store: steam - /ScribbleSpace.exe: + "/ScribbleSpace.exe": - when: - os: windows store: steam - /run.sh: + "/run.sh": - when: - os: linux store: steam @@ -457498,7 +458717,7 @@ Scribble+: installDir: Scribble: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -457508,7 +458727,7 @@ ScribbleDude: installDir: ScribbleDude: {} launch: - /ScribbleDude.exe: + "/ScribbleDude.exe": - when: - os: windows store: steam @@ -457518,7 +458737,7 @@ Scribbled Arena: installDir: ScribbledArena: {} launch: - /ScribbledArena.exe: + "/ScribbledArena.exe": - when: - os: windows store: steam @@ -457526,12 +458745,12 @@ Scribbled Arena: id: 395940 Scribblenauts Unlimited: files: - /SAVEDATA: + "/SAVEDATA": tags: - save when: - os: windows - /SAVEDATA/Profile.dat: + "/SAVEDATA/Profile.dat": tags: - config when: @@ -457539,14 +458758,14 @@ Scribblenauts Unlimited: installDir: Scribblenauts: {} launch: - /Scribble.exe: + "/Scribble.exe": - when: - store: steam steam: id: 218680 -'Scribblenauts Unmasked: A DC Comics Adventure': +"Scribblenauts Unmasked: A DC Comics Adventure": files: - /userdata//249870/remote/savedata: + "/userdata//249870/remote/savedata": tags: - save when: @@ -457555,21 +458774,21 @@ Scribblenauts Unlimited: installDir: Scribblenauts Unmasked: {} launch: - /scribble.exe: + "/scribble.exe": - when: - store: steam steam: id: 249870 -'Scriptum VR: The Neighbor''s House Escape Room': +"Scriptum VR: The Neighbor's House Escape Room": installDir: - Scriptum VR The Neighbor's House Escape Room: {} + "Scriptum VR The Neighbor's House Escape Room": {} steam: id: 1190560 Scroll2Read: installDir: Scroll2Read: {} launch: - /Scrol2Read.exe: + "/Scrol2Read.exe": - when: - bit: 64 os: windows @@ -457580,7 +458799,7 @@ Scrollonoid: installDir: Scrollonoid: {} launch: - /scrollonoid.exe: + "/scrollonoid.exe": - when: - bit: 64 os: windows @@ -457591,7 +458810,7 @@ Scrolls of the Lord: installDir: Scrolls_of_the_Lord: {} launch: - /Scrolls_of_the_Lord.exe: + "/Scrolls_of_the_Lord.exe": - when: - bit: 64 os: windows @@ -457602,15 +458821,18 @@ Scrunk: installDir: Scrunk: {} launch: - /Scrunk.exe: + "/Scrunk.exe": - when: - os: windows store: steam - /run: + "/run": - when: - os: mac store: steam - /run64: + - bit: 32 + os: linux + store: steam + "/run64": - when: - bit: 64 os: linux @@ -457621,29 +458843,29 @@ Scrutinized: installDir: Scrutinized: {} launch: - /Scrutinized.exe: + "/Scrutinized.exe": - when: - bit: 64 os: windows store: steam steam: id: 1384770 -Scuba's Ocean Odyssey VR: +"Scuba's Ocean Odyssey VR": steam: id: 985150 -'ScubaVenture: The Search for Pirate''s Treasure': +"ScubaVenture: The Search for Pirate's Treasure": files: - /SCUBA.CFG: + "/SCUBA.CFG": tags: - config when: - os: dos - /SCUBA.HS: + "/SCUBA.HS": tags: - save when: - os: dos - /SCUBA.SV*: + "/SCUBA.SV*": tags: - save when: @@ -457651,14 +458873,14 @@ Scuba's Ocean Odyssey VR: gog: id: 1373133436 installDir: - ScubaVenture The Search for Pirate's Treasure: {} + "ScubaVenture The Search for Pirate's Treasure": {} steam: id: 1601930 Scud Frenzy: installDir: Scud Frenzy: {} launch: - /Scud Frenzy.exe: + "/Scud Frenzy.exe": - when: - os: windows store: steam @@ -457668,7 +458890,7 @@ ScudBuster: installDir: ScudBuster: {} launch: - /ScudBuster.exe: + "/ScudBuster.exe": - when: - store: steam steam: @@ -457677,7 +458899,7 @@ Scuffle Scoundrels: installDir: Scuffle Scoundrels: {} launch: - /ScuffleScoundrels.exe: + "/ScuffleScoundrels.exe": - when: - os: windows store: steam @@ -457690,12 +458912,12 @@ SculptrVR: id: 418520 Scum: files: - /SCUM/Saved/Config/WindowsNoEditor: + "/SCUM/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /SCUM/Saved/SaveFiles: + "/SCUM/Saved/SaveFiles": tags: - save when: @@ -457703,17 +458925,17 @@ Scum: installDir: SCUM: {} launch: - /SCUM_Launcher.exe: + "/SCUM_Launcher.exe": - when: - bit: 64 os: windows store: steam - - arguments: '-dx12' + - arguments: "-dx12" when: - bit: 64 os: windows store: steam - - arguments: '-vulkan' + - arguments: "-vulkan" when: - bit: 64 os: windows @@ -457724,15 +458946,15 @@ Scurvy Dogs: installDir: Scurvy Dogs: {} launch: - /Scurvy Dogs.app: + "/Scurvy Dogs.app": - when: - os: mac store: steam - /Scurvy Dogs.exe: + "/Scurvy Dogs.exe": - when: - os: windows store: steam - /Scurvy Dogs.x86_64: + "/Scurvy Dogs.x86_64": - when: - bit: 64 os: linux @@ -457748,26 +458970,26 @@ Scuttlers: installDir: Scuttlers: {} launch: - /Scuttlers.app: + "/Scuttlers.app": - when: - os: mac store: steam - /Scuttlers.exe: + "/Scuttlers.exe": - when: - bit: 64 os: windows store: steam - /scuttlers32.exe: + "/scuttlers32.exe": - when: - bit: 32 os: windows store: steam - /scuttlers_linux_universal.x86: + "/scuttlers_linux_universal.x86": - when: - bit: 32 os: linux store: steam - /scuttlers_linux_universal.x86_64: + "/scuttlers_linux_universal.x86_64": - when: - bit: 64 os: linux @@ -457778,19 +459000,19 @@ Scutum Phanti: installDir: Scutum Phanti: {} launch: - /Scutum Phanti: + "/Scutum Phanti": - when: - os: linux store: steam - /Scutum Phanti.exe: + "/Scutum Phanti.exe": - when: - os: windows store: steam steam: id: 1098750 -'Scythe: Digital Edition': +"Scythe: Digital Edition": files: - /AppData/LocalLow/TKoU/Scythe/Saves: + "/AppData/LocalLow/TKoU/Scythe/Saves": tags: - save when: @@ -457804,11 +459026,11 @@ Scutum Phanti: installDir: Scythe Digital Edition: {} launch: - /Scythe.app: + "/Scythe.app": - when: - os: mac store: steam - /Scythe.exe: + "/Scythe.exe": - when: - os: windows store: steam @@ -457822,7 +459044,7 @@ Scéal: installDir: Sceal: {} launch: - /Sceal.exe: + "/Sceal.exe": - when: - os: windows store: steam @@ -457833,29 +459055,29 @@ Sea Battle VR: ShipBattle: {} steam: id: 629640 -'Sea Battle: Through the Ages': +"Sea Battle: Through the Ages": installDir: Battle Sea 3D: {} launch: - /Sea Battle.app/Contents/MacOS/Sea Battle: + "/Sea Battle.app/Contents/MacOS/Sea Battle": - when: - os: mac store: steam - /Sea Battle.exe: + "/Sea Battle.exe": - when: - os: windows store: steam steam: id: 787440 -'Sea Birds: End of an Age': +"Sea Birds: End of an Age": installDir: Sea Birds End of an Age: {} launch: - /Sea Birds - End of an Age.exe: + "/Sea Birds - End of an Age.exe": - when: - os: windows store: steam - /Sea_Birds___End_of_an_Age: + "/Sea_Birds___End_of_an_Age": - when: - os: linux store: steam @@ -457865,7 +459087,7 @@ Sea Bubble: installDir: Sea Bubble: {} launch: - /Sea Bubble.exe: + "/Sea Bubble.exe": - when: - os: windows store: steam @@ -457876,12 +459098,12 @@ Sea Creatures: id: 983230 Sea Dogs: files: - /RESOURCE/SAVES: + "/RESOURCE/SAVES": tags: - save when: - os: windows - /engine.ini: + "/engine.ini": tags: - config when: @@ -457891,22 +459113,22 @@ Sea Dogs: installDir: Sea Dogs: {} launch: - /ENGINE.exe: + "/ENGINE.exe": - when: - store: steam steam: id: 764670 -'Sea Dogs: Legendary Edition': +"Sea Dogs: Legendary Edition": steam: id: 1456830 -'Sea Dogs: To Each His Own': +"Sea Dogs: To Each His Own": files: - /SAVE: + "/SAVE": tags: - save when: - os: windows - /engine.ini: + "/engine.ini": tags: - config when: @@ -457918,7 +459140,7 @@ Sea Dogs: installDir: Sea Dogs To Each His Own: {} launch: - /ENGINE.exe: + "/ENGINE.exe": - when: - store: steam steam: @@ -457927,11 +459149,11 @@ Sea Explorer: installDir: Sea Explorer: {} launch: - /SeaExplorer.app/Contents/MacOS/SeaExplorer: + "/SeaExplorer.app/Contents/MacOS/SeaExplorer": - when: - os: mac store: steam - /SeaExplorer.exe: + "/SeaExplorer.exe": - when: - os: windows store: steam @@ -457941,7 +459163,7 @@ Sea King: installDir: Sea King: {} launch: - /SeaKing.exe: + "/SeaKing.exe": - when: - os: windows store: steam @@ -457954,11 +459176,11 @@ Sea Legends: Sea Legends: {} steam: id: 1373770 -'Sea Legends: Phantasmal Light': +"Sea Legends: Phantasmal Light": installDir: - Sea Legends Phantasmal Light Collector's Edition: {} + "Sea Legends Phantasmal Light Collector's Edition": {} launch: - /SeaLegends_PhantasmalLight_CE.exe: + "/SeaLegends_PhantasmalLight_CE.exe": - when: - store: steam steam: @@ -457969,7 +459191,7 @@ Sea Salt: installDir: Sea Salt: {} launch: - /SeaSalt.exe: + "/SeaSalt.exe": - when: - os: windows store: steam @@ -457979,60 +459201,60 @@ Sea of Fatness: installDir: Sea Of Fatness: {} launch: - /sea of fatness.app: + "/sea of fatness.app": - when: - os: mac store: steam - /sea of fatness.exe: + "/sea of fatness.exe": - when: - os: windows store: steam - /sea of fatness.x86: + "/sea of fatness.x86": - when: - bit: 32 os: linux store: steam - /sea of fatness.x86_64: + "/sea of fatness.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 721740 -'Sea of Lies: Burning Coast': +"Sea of Lies: Burning Coast": installDir: - Sea of Lies Burning Coast Collector's Edition: {} + "Sea of Lies Burning Coast Collector's Edition": {} launch: - /SeaOfLies_BurningCoast_CE.exe: + "/SeaOfLies_BurningCoast_CE.exe": - when: - os: windows store: steam steam: id: 786060 -'Sea of Lies: Mutiny of the Heart': +"Sea of Lies: Mutiny of the Heart": installDir: - Sea of Lies Mutiny of the Heart Collector's Edition: {} + "Sea of Lies Mutiny of the Heart Collector's Edition": {} launch: - /Sea_of_Lies_Mutiny_of_the_Heart_CE.exe: + "/Sea_of_Lies_Mutiny_of_the_Heart_CE.exe": - when: - store: steam steam: id: 551330 -'Sea of Lies: Nemesis': +"Sea of Lies: Nemesis": installDir: - Sea of Lies Nemesis Collector's Edition: {} + "Sea of Lies Nemesis Collector's Edition": {} launch: - /SeaOfLies_NemesisCE.exe: + "/SeaOfLies_NemesisCE.exe": - when: - os: windows store: steam steam: id: 638250 -'Sea of Lies: Tide of Treachery': +"Sea of Lies: Tide of Treachery": installDir: - Sea of Lies Tide of Treachery Collector's Edition: {} + "Sea of Lies Tide of Treachery Collector's Edition": {} launch: - /SeaOfLies_TideOfTreachery_CE.exe: + "/SeaOfLies_TideOfTreachery_CE.exe": - when: - os: windows store: steam @@ -458045,12 +459267,12 @@ Sea of Memories: id: 863660 Sea of Solitude: files: - /AppData/LocalLow/Jo-Mei GmbH/SeaOfSolitude/SoS-Progress: + "/AppData/LocalLow/Jo-Mei GmbH/SeaOfSolitude/SoS-Progress": tags: - save when: - os: windows - /AppData/LocalLow/Jo-Mei GmbH/SeaOfSolitude/SoS-Settings: + "/AppData/LocalLow/Jo-Mei GmbH/SeaOfSolitude/SoS-Settings": tags: - config when: @@ -458065,12 +459287,12 @@ Sea of Solitude: id: 1225590 Sea of Stars: files: - /AppData/LocalLow/Sabotage Studio/Sea of Stars/*.sos: + "/AppData/LocalLow/Sabotage Studio/Sea of Stars/*.sos": tags: - save when: - os: windows - /Packages/SabotageStudio.SeaofStars_p3aneehax6csy/SystemAppData/wgs/: + "/Packages/SabotageStudio.SeaofStars_p3aneehax6csy/SystemAppData/wgs/": tags: - save when: @@ -458082,19 +459304,20 @@ Sea of Stars: installDir: Sea of Stars: {} launch: - /SeaOfStars.exe: + "/SeaOfStars.exe": - when: - store: steam steam: id: 1244090 Sea of Thieves: files: - /Athena/Saved/Config/WindowsClient: + "/Athena/Saved/Config/WindowsClient": tags: - config when: - - store: steam - /Packages/Microsoft.SeaofThieves_8wekyb3d8bbwe/LocalState/Athena/Saved/Config/UWP64: + - os: windows + store: steam + "/Packages/Microsoft.SeaofThieves_8wekyb3d8bbwe/LocalState/Athena/Saved/Config/UWP64": tags: - config when: @@ -458103,7 +459326,7 @@ Sea of Thieves: installDir: Sea of Thieves: {} launch: - /Athena/Binaries/Win64/SoTGame.exe: + "/Athena/Binaries/Win64/SoTGame.exe": - when: - bit: 64 os: windows @@ -458114,19 +459337,19 @@ SeaBed: installDir: SeaBed: {} launch: - /SeaBed.exe: + "/SeaBed.exe": - when: - store: steam steam: id: 583090 SeaWorld Adventure Parks Tycoon: files: - /SWT.ini: + "/SWT.ini": tags: - config when: - os: windows - /SaveGames: + "/SaveGames": tags: - save when: @@ -458140,7 +459363,7 @@ Seacurity Breach: installDir: Seacurity Breach: {} launch: - /Seacurity Breach.exe: + "/Seacurity Breach.exe": - when: - os: windows store: steam @@ -458150,7 +459373,7 @@ Seal Girl: installDir: Girl and Goblin: {} launch: - /Girl and Goblin.exe: + "/Girl and Goblin.exe": - when: - os: windows store: steam @@ -458160,11 +459383,11 @@ Seal Guardian: installDir: SealGuardian: {} launch: - /SealGuardian.app: + "/SealGuardian.app": - when: - os: mac store: steam - /SealGuardian.exe: + "/SealGuardian.exe": - when: - os: windows store: steam @@ -458176,7 +459399,7 @@ Seal of Evil: installDir: Seal of Evil: {} launch: - /SOE.EXE: + "/SOE.EXE": - when: - store: steam steam: @@ -458185,7 +459408,7 @@ Sealer Assist: installDir: Sealer Assist: {} launch: - /SealerAssist.exe: + "/SealerAssist.exe": - when: - os: windows store: steam @@ -458195,24 +459418,24 @@ Seals of the Bygone: installDir: Seals of the Bygone: {} launch: - /SotB.app: + "/SotB.app": - when: - os: mac store: steam - /SotB.exe: + "/SotB.exe": - when: - os: windows store: steam steam: id: 1093790 -'Seance: The Unquiet': +"Seance: The Unquiet": installDir: Seance The Unquiet (Preview): {} steam: id: 614710 -'Search and Rescue: Coastal Heroes': +"Search and Rescue: Coastal Heroes": files: - /Config.dat: + "/Config.dat": tags: - config when: @@ -458221,11 +459444,11 @@ Search for Surf: installDir: Search for Surf: {} launch: - /MAC.app/Contents/MacOS/MAC: + "/MAC.app/Contents/MacOS/MAC": - when: - os: mac store: steam - /SearchForSurf.exe: + "/SearchForSurf.exe": - when: - os: windows store: steam @@ -458245,7 +459468,7 @@ Season: installDir: Season: {} launch: - /Sea.exe: + "/Sea.exe": - when: - bit: 64 os: windows @@ -458256,7 +459479,7 @@ Season Match: installDir: Season Match: {} launch: - /SeasonMatch.exe: + "/SeasonMatch.exe": - when: - os: windows store: steam @@ -458266,7 +459489,7 @@ Season Match 2: installDir: Season Match 2: {} launch: - /SeasonMatch2.exe: + "/SeasonMatch2.exe": - when: - os: windows store: steam @@ -458276,11 +459499,11 @@ Season Match 3 - Curse of the Witch Crow: installDir: Season Match 3 - Curse of the Witch Crow: {} launch: - /SeasonMatch3.app: + "/SeasonMatch3.app": - when: - os: mac store: steam - /SeasonMatch3.exe: + "/SeasonMatch3.exe": - when: - os: windows store: steam @@ -458290,19 +459513,19 @@ Season Up: installDir: Season Up: {} launch: - /SeasonUp.exe: + "/SeasonUp.exe": - when: - store: steam steam: id: 832470 Season of 12 Colors: files: - /NVLMaker/Season of 12 Colors/savedata/*.bksav: + "/NVLMaker/Season of 12 Colors/savedata/*.bksav": tags: - save when: - os: windows - /NVLMaker/Season of 12 Colors/savedata/*.png: + "/NVLMaker/Season of 12 Colors/savedata/*.png": tags: - save when: @@ -458310,25 +459533,25 @@ Season of 12 Colors: installDir: Season of 12 Colors: {} launch: - /PaperPlane: + "/PaperPlane": - when: - os: linux store: steam - /PaperPlane.app/Contents/MacOS/PaperPlane: + "/PaperPlane.app/Contents/MacOS/PaperPlane": - when: - os: mac store: steam - /PaperPlane.exe: + "/PaperPlane.exe": - when: - os: windows store: steam steam: id: 370280 -'Season of Mystery: The Cherry Blossom Murders': +"Season of Mystery: The Cherry Blossom Murders": installDir: The Cherry Blossom Murders: {} launch: - /CherryBlossomMurders.exe: + "/CherryBlossomMurders.exe": - when: - store: steam steam: @@ -458337,25 +459560,25 @@ Season of War (Alpha): installDir: Sow_Windows_Content_Setup: {} launch: - /Season of War (Alpha).exe: + "/Season of War (Alpha).exe": - when: - os: windows store: steam steam: id: 957810 -Season's Beatings: +"Season's Beatings": installDir: - Season's Beatings: {} + "Season's Beatings": {} launch: - /Season's Beatings.app/Contents/MacOS/Mac: + "/Season's Beatings.app/Contents/MacOS/Mac": - when: - os: mac store: steam - /Season's Beatings.exe: + "/Season's Beatings.exe": - when: - os: windows store: steam - /Season's Beatings.x86: + "/Season's Beatings.x86": - when: - os: linux store: steam @@ -458365,11 +459588,11 @@ Seasonal Soccer: installDir: Seasonal Soccer: {} launch: - /SeasonalSoccer.exe: + "/SeasonalSoccer.exe": - when: - os: windows store: steam - /SeasonalSoccer28versionStable.app: + "/SeasonalSoccer28versionStable.app": - when: - os: mac store: steam @@ -458379,7 +459602,7 @@ Seasons Girls: installDir: Seasons Girls: {} launch: - /Seasons Girls.exe: + "/Seasons Girls.exe": - when: - bit: 64 os: windows @@ -458388,17 +459611,17 @@ Seasons Girls: id: 1146250 Seasons after Fall: files: - /Saved Games/Seasons after Fall: + "/Saved Games/Seasons after Fall": tags: - save when: - os: windows - /Saved Games/Seasons after Fall/UserOptions.json: + "/Saved Games/Seasons after Fall/UserOptions.json": tags: - config when: - os: windows - /userdata//366320/remote: + "/userdata//366320/remote": tags: - save when: @@ -458408,16 +459631,16 @@ Seasons after Fall: installDir: Seasons after Fall: {} launch: - /Seasons after Fall.app: + "/Seasons after Fall.app": - when: - os: mac store: steam - /Seasons after Fall.exe: + "/Seasons after Fall.exe": - when: - os: windows store: steam - /Seasons after Fall.x86: - - arguments: '-force-opengl' + "/Seasons after Fall.x86": + - arguments: "-force-opengl" when: - os: linux store: steam @@ -458427,7 +459650,7 @@ Seasteader: installDir: Seasteader: {} launch: - /Seasteader.exe: + "/Seasteader.exe": - when: - os: windows store: steam @@ -458437,7 +459660,7 @@ Seat of War: installDir: Seat of War: {} launch: - /Seat of War.exe: + "/Seat of War.exe": - when: - store: steam steam: @@ -458446,28 +459669,28 @@ Seclusion: installDir: SECLUSION: {} launch: - /SECLUSION.exe: + "/SECLUSION.exe": - when: - os: windows store: steam steam: id: 578740 -'Seclusion: Islesbury': +"Seclusion: Islesbury": steam: id: 702490 Second Chance: installDir: Second Chance: {} launch: - /SecondChance.app/Contents/MacOS/SecondChance: + "/SecondChance.app/Contents/MacOS/SecondChance": - when: - os: mac store: steam - /SecondChance.exe: + "/SecondChance.exe": - when: - os: windows store: steam - /SecondChance.sh: + "/SecondChance.sh": - when: - os: linux store: steam @@ -458477,22 +459700,22 @@ Second Coming: installDir: Second Coming: {} launch: - /Second Coming.app: + "/Second Coming.app": - when: - os: mac store: steam - /game.exe: + "/game.exe": - when: - bit: 64 os: windows store: steam steam: id: 474880 -'Second Coming: Tactical Training': +"Second Coming: Tactical Training": installDir: SCTT: {} launch: - /SCTT.exe: + "/SCTT.exe": - when: - store: steam steam: @@ -458501,7 +459724,7 @@ Second Death: installDir: Second Death: {} launch: - /Second Death.exe: + "/Second Death.exe": - when: - os: windows store: steam @@ -458511,7 +459734,7 @@ Second Dimension RetroPak Vol. 1: installDir: Second Dimension RetroPak Vol. 1: {} launch: - /RetroPak Vol 1.exe: + "/RetroPak Vol 1.exe": - when: - os: windows store: steam @@ -458519,12 +459742,12 @@ Second Dimension RetroPak Vol. 1: id: 1137930 Second Extinction: files: - /Saved Games/Avalanche Studios/Second Extinction: + "/Saved Games/Avalanche Studios/Second Extinction": tags: - config when: - os: windows - /Saved Games/Avalanche Studios/Second Extinction/Saves: + "/Saved Games/Avalanche Studios/Second Extinction/Saves": tags: - save when: @@ -458537,7 +459760,7 @@ Second Final: installDir: Second Final: {} launch: - /2ndFinal ND.exe: + "/2ndFinal ND.exe": - arguments: Launch Game when: - os: windows @@ -458546,7 +459769,7 @@ Second Final: id: 1107100 Second Front: files: - /Second Front_Data/StreamingAssets/AutoSave/*.scen: + "/Second Front_Data/StreamingAssets/AutoSave/*.scen": tags: - save when: @@ -458554,7 +459777,7 @@ Second Front: installDir: Second Front: {} launch: - /Second Front.exe: + "/Second Front.exe": - when: - os: windows store: steam @@ -458564,18 +459787,18 @@ Second Galaxy: installDir: Second Galaxy: {} launch: - /SecondGalaxy.exe: + "/SecondGalaxy.exe": - when: - bit: 32 os: windows store: steam steam: id: 1133730 -'Second Hand: Frankie''s Revenge': +"Second Hand: Frankie's Revenge": installDir: Robo Revenge Squad: {} launch: - /RoboRevengeSquad.exe: + "/RoboRevengeSquad.exe": - when: - bit: 64 os: windows @@ -458586,7 +459809,7 @@ Second Hazardous Course: installDir: content: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -458596,7 +459819,7 @@ Second Second: installDir: Second Second: {} launch: - /SecondSecond.exe: + "/SecondSecond.exe": - when: - os: windows store: steam @@ -458604,12 +459827,12 @@ Second Second: id: 918430 Second Sight: files: - /profiles: + "/profiles": tags: - save when: - os: windows - /secondsight.cfg: + "/secondsight.cfg": tags: - config when: @@ -458619,7 +459842,7 @@ Second Sight: installDir: Second Sight: {} launch: - /secondsight.exe: + "/secondsight.exe": - when: - store: steam steam: @@ -458628,32 +459851,35 @@ Second Warfare: installDir: Second Warfare: {} launch: - /Second Warfare.app/Contents/MacOS/Second Warfare: + "/Second Warfare.app/Contents/MacOS/Second Warfare": - when: - os: mac store: steam - /Second Warfare.exe: + "/Second Warfare.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam - /SecondWarfare.x86: + "/SecondWarfare.x86": - when: - bit: 32 os: linux store: steam - /SecondWarfare.x86_64: + "/SecondWarfare.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 372740 -'Second World: Air War S': +"Second World: Air War S": installDir: Second World Air War S: {} launch: - /SecondWorld.exe: + "/SecondWorld.exe": - when: - bit: 64 os: windows @@ -458667,7 +459893,7 @@ Secondhand Lands: installDir: Secondhand Lands: {} launch: - /Client.exe: + "/Client.exe": - arguments: steam 216.55.141.224 47727 when: - bit: 64 @@ -458679,11 +459905,11 @@ Seconds to Square: installDir: Seconds to Square: {} launch: - /SecondsToSquare.app: + "/SecondsToSquare.app": - when: - os: mac store: steam - /SecondsToSquare.exe: + "/SecondsToSquare.exe": - when: - os: windows store: steam @@ -458691,12 +459917,12 @@ Seconds to Square: id: 685200 Secret Agent: files: - /SAM1-*.SAV: + "/SAM1-*.SAV": tags: - save when: - os: dos - /SAM1.CFG: + "/SAM1.CFG": tags: - config when: @@ -458706,27 +459932,27 @@ Secret Agent: installDir: Secret Agent: {} launch: - /Dosbox/dosbox: - - arguments: osbox\\dosbox.exe + "/Dosbox/dosbox": + - arguments: "osbox\\\\dosbox.exe" when: - os: linux store: steam - workingDir: /Dosbox - /Secret Agent.app: + workingDir: "/Dosbox" + "/Secret Agent.app": - when: - os: mac store: steam - /Secret Agent/dosbox/dosbox.exe: - - arguments: '-conf \"..\\Agent.conf\" -noconsole -c' + "/Secret Agent/dosbox/dosbox.exe": + - arguments: "-conf \\\"..\\\\Agent.conf\\\" -noconsole -c" when: - os: windows store: steam - workingDir: /Secret Agent/dosbox + workingDir: "/Secret Agent/dosbox" steam: id: 358350 Secret Agent Barbie: files: - /Saves: + "/Saves": tags: - save when: @@ -458737,21 +459963,21 @@ Secret Agent HD: installDir: Secret Agent HD: {} launch: - /Secret Agent HD.exe: + "/Secret Agent HD.exe": - when: - os: windows store: steam - /SecretAgentHD.x86_64: + "/SecretAgentHD.x86_64": - when: - os: linux store: steam steam: id: 1607670 -'Secret City: The Human Threat': +"Secret City: The Human Threat": installDir: - Secret City The Human Threat Collector's Edition: {} + "Secret City The Human Threat Collector's Edition": {} launch: - /SecretCity_TheHumanThreat_CE.exe: + "/SecretCity_TheHumanThreat_CE.exe": - when: - os: windows store: steam @@ -458760,23 +459986,23 @@ Secret Agent HD: Secret Doctrine: steam: id: 645810 -'Secret Files 2: Puritas Cordis': +"Secret Files 2: Puritas Cordis": gog: id: 1425136034 installDir: Secret Files Puritas Cordis: {} launch: - /ConfigTool.exe: + "/ConfigTool.exe": - when: - store: steam - /fsasgame.exe: + "/fsasgame.exe": - when: - store: steam steam: id: 40340 Secret Files 3: files: - /Secret Files 3: + "/Secret Files 3": tags: - save when: @@ -458786,45 +460012,45 @@ Secret Files 3: installDir: SecretFiles3: {} launch: - /configtool.exe: + "/configtool.exe": - when: - os: windows store: steam - /fsasgame.exe: + "/fsasgame.exe": - when: - os: windows store: steam steam: id: 216210 -'Secret Files: Sam Peters': +"Secret Files: Sam Peters": gog: id: 1555921669 installDir: Secret Files Sam Peters: {} launch: - /configtool.exe: + "/configtool.exe": - when: - os: windows store: steam - /fsasgame.exe: + "/fsasgame.exe": - when: - os: windows store: steam steam: id: 257220 -'Secret Files: Tunguska': +"Secret Files: Tunguska": files: - /config.ini: + "/config.ini": tags: - config when: - os: windows - /savegame: + "/savegame": tags: - save when: - os: windows - /settings.ini: + "/settings.ini": tags: - config when: @@ -458834,10 +460060,10 @@ Secret Files 3: installDir: Secret Files Tunguska: {} launch: - /ConfigTool.exe: + "/ConfigTool.exe": - when: - store: steam - /Tunguska.exe: + "/Tunguska.exe": - when: - store: steam steam: @@ -458848,15 +460074,15 @@ Secret Government: installDir: Secret Government: {} launch: - /Secret Government.app/Contents/MacOS/Secret Government: + "/Secret Government.app/Contents/MacOS/Secret Government": - when: - os: mac store: steam - /Secret Government.exe: + "/Secret Government.exe": - when: - os: windows store: steam - /Secret Government.x86_64: + "/Secret Government.x86_64": - when: - bit: 64 os: linux @@ -458867,7 +460093,7 @@ Secret Laboratory: installDir: SecretLaboratory: {} launch: - /SecretLaboratory.exe: + "/SecretLaboratory.exe": - when: - os: windows store: steam @@ -458875,12 +460101,12 @@ Secret Laboratory: id: 821860 Secret Little Haven: files: - /.config/unity3d/Hummingwarp/Secret Little Haven: + "/.config/unity3d/Hummingwarp/Secret Little Haven": tags: - save when: - os: linux - /AppData/LocalLow/Hummingwarp/Secret Little Haven: + "/AppData/LocalLow/Hummingwarp/Secret Little Haven": tags: - save when: @@ -458888,15 +460114,15 @@ Secret Little Haven: installDir: Secret Little Haven: {} launch: - /Secret Little Haven.app: + "/Secret Little Haven.app": - when: - os: mac store: steam - /Secret Little Haven.exe: + "/Secret Little Haven.exe": - when: - os: windows store: steam - /Secret Little Haven.x86: + "/Secret Little Haven.x86": - when: - os: linux store: steam @@ -458906,26 +460132,26 @@ Secret Neighbor: installDir: Secret Neighbor: {} launch: - /Secret Neighbour.exe: + "/Secret Neighbour.exe": - when: - bit: 64 os: windows store: steam steam: id: 859570 -'Secret Ponchos: Most Wanted Edition': +"Secret Ponchos: Most Wanted Edition": installDir: SecretPonchos: {} launch: - /bin/secretponchosd3d11.exe: + "/bin/secretponchosd3d11.exe": - when: - os: windows store: steam steam: id: 265750 -'Secret Saga: Xamadeon Stone': +"Secret Saga: Xamadeon Stone": files: - /AppData/LocalLow/Halit Buyukyilmaz/HiddenSaga: + "/AppData/LocalLow/Halit Buyukyilmaz/HiddenSaga": tags: - config - save @@ -458934,15 +460160,15 @@ Secret Neighbor: installDir: Secret Saga: {} launch: - /SecretSaga.app: + "/SecretSaga.app": - when: - os: mac store: steam - /SecretSaga.exe: + "/SecretSaga.exe": - when: - os: windows store: steam - /SecretSaga.x86_64: + "/SecretSaga.x86_64": - when: - os: linux store: steam @@ -458952,11 +460178,11 @@ Secret Santa: installDir: Secret Santa: {} launch: - /linux32/nw: + "/linux32/nw": - when: - os: linux store: steam - /secretsanta.app: + "/secretsanta.app": - when: - os: mac store: steam @@ -458964,20 +460190,20 @@ Secret Santa: id: 500690 Secret Service: files: - /Profiles: + "/Profiles": tags: - config - save when: - os: windows -'Secret Service: Security Breach': +"Secret Service: Security Breach": files: - /ss2/settings: + "/ss2/settings": tags: - config when: - os: windows - /ss2/settings/levels.sav: + "/ss2/settings/levels.sav": tags: - save when: @@ -458986,15 +460212,15 @@ Secret in Story: installDir: Secret in Story: {} launch: - /SecretInStory.app: + "/SecretInStory.app": - when: - os: mac store: steam - /SecretInStory.exe: + "/SecretInStory.exe": - when: - os: windows store: steam - /SecretInStory.x86: + "/SecretInStory.x86": - when: - os: linux store: steam @@ -459004,31 +460230,31 @@ Secret of Harrow Manor: installDir: Secret of Harrow Manor: {} launch: - /HarrowManor.x86: + "/HarrowManor.x86": - when: - bit: 32 os: linux store: steam - /HarrowManor.x86_64: + "/HarrowManor.x86_64": - when: - bit: 64 os: linux store: steam - /SoHM-MacOSX.app: + "/SoHM-MacOSX.app": - when: - os: mac store: steam - /SoHM-WindowsVR/Secret of Harrow Manor.exe: - - arguments: '-vrmode none' + "/SoHM-WindowsVR/Secret of Harrow Manor.exe": + - arguments: "-vrmode none" when: - os: windows store: steam - workingDir: /SoHM-Windows + workingDir: "/SoHM-Windows" steam: id: 838840 Secret of Magia: files: - /*.rvdata2: + "/*.rvdata2": tags: - save when: @@ -459036,7 +460262,7 @@ Secret of Magia: installDir: Secret Of Magia: {} launch: - /EQLauncher.exe: + "/EQLauncher.exe": - when: - os: windows store: steam @@ -459044,7 +460270,7 @@ Secret of Magia: id: 396160 Secret of Mana: files: - /My Games/Secret of Mana: + "/My Games/Secret of Mana": tags: - config - save @@ -459053,31 +460279,25 @@ Secret of Mana: installDir: Secret of Mana: {} launch: - /Binary/Secret_of_Mana.exe: + "/Binary/Secret_of_Mana.exe": - when: - os: windows store: steam steam: id: 637670 Secret of the Magic Crystals: - files: - /userdata//45100/remote/save*.dat: - tags: - - save - when: - - store: steam installDir: Secret of the Magic Crystal: {} launch: - /Secret of the Magic Crystal: + "/Secret of the Magic Crystal": - when: - os: linux store: steam - /Secret of the Magic Crystal.app: + "/Secret of the Magic Crystal.app": - when: - os: mac store: steam - /Secret of the Magic Crystal.exe: + "/Secret of the Magic Crystal.exe": - when: - os: windows store: steam @@ -459091,11 +460311,11 @@ Secret of the Pendulum: installDir: Secret of the Pendulum: {} launch: - /Pendulum.app: + "/Pendulum.app": - when: - os: mac store: steam - /SecretOfThePendulum.exe: + "/SecretOfThePendulum.exe": - when: - os: windows store: steam @@ -459105,8 +460325,8 @@ Secret of the Rendrasha Blade: installDir: Secret of the Rendrasha Blade: {} launch: - /Game.exe: - - arguments: '--in-process-gpu' + "/Game.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam @@ -459116,7 +460336,7 @@ Secret of the Royal Throne: installDir: Secret Of The Royal Throne: {} launch: - /SORT.exe: + "/SORT.exe": - when: - os: windows store: steam @@ -459124,12 +460344,12 @@ Secret of the Royal Throne: id: 464630 Secret of the Silver Blades: files: - /BLADES.CFG: + "/BLADES.CFG": tags: - config when: - os: dos - /SAVE: + "/SAVE": tags: - save when: @@ -459145,16 +460365,16 @@ Secrets of Arcadia: installDir: Secrets of Arcadia: {} launch: - /osx64/secretsofarcadia.app: + "/osx64/secretsofarcadia.app": - when: - os: mac store: steam - /win32/nw.exe: + "/win32/nw.exe": - when: - bit: 32 os: windows store: steam - /win64/nw.exe: + "/win64/nw.exe": - when: - bit: 64 os: windows @@ -459165,11 +460385,11 @@ Secrets of Deep Earth Shrine: installDir: Secrets of Deep Earth Shrine: {} launch: - /Digger.app: + "/Digger.app": - when: - os: mac store: steam - /Digger.exe: + "/Digger.exe": - when: - os: windows store: steam @@ -459177,12 +460397,12 @@ Secrets of Deep Earth Shrine: id: 451700 Secrets of Grindea: files: - /Secrets of Grindea: + "/Secrets of Grindea": tags: - save when: - os: windows - /Secrets of Grindea/Config.txt: + "/Secrets of Grindea/Config.txt": tags: - config when: @@ -459190,53 +460410,53 @@ Secrets of Grindea: id: steamExtra: - 292050 - - 403220 - 372500 + - 403220 installDir: SecretsOfGrindea: {} launch: - /Secrets Of Grindea.exe: + "/Secrets Of Grindea.exe": - when: - bit: 32 store: steam steam: id: 269770 -'Secrets of Magic 2: Witches and Wizards': +"Secrets of Magic 2: Witches and Wizards": installDir: Secrets of Magic 2 - Witches and Wizards: {} launch: - /Secrets of Magic 2 - Witches and Wizards.app: + "/Secrets of Magic 2 - Witches and Wizards.app": - when: - os: mac store: steam - /Secrets of Magic 2 - Witches and Wizards.exe: + "/Secrets of Magic 2 - Witches and Wizards.exe": - when: - os: windows store: steam - /Secrets of Magic 2 - Witches and Wizards.x86_64: + "/Secrets of Magic 2 - Witches and Wizards.x86_64": - when: - os: linux store: steam steam: id: 713430 -'Secrets of Magic: The Book of Spells': +"Secrets of Magic: The Book of Spells": installDir: Secrets of Magic The Book of Spells: {} launch: - /Secrets of Magic - The Book of Spells.app: + "/Secrets of Magic - The Book of Spells.app": - when: - os: mac store: steam - /Secrets of Magic - The Book of Spells.exe: + "/Secrets of Magic - The Book of Spells.exe": - when: - os: windows store: steam - /Secrets of Magic - The Book of Spells.x86: + "/Secrets of Magic - The Book of Spells.x86": - when: - bit: 32 os: linux store: steam - /Secrets of Magic - The Book of Spells.x86_64: + "/Secrets of Magic - The Book of Spells.x86_64": - when: - bit: 64 os: linux @@ -459247,8 +460467,8 @@ Secrets of Me: installDir: Secrets of Me: {} launch: - /Secrets of Me.exe: - - arguments: '-windowed' + "/Secrets of Me.exe": + - arguments: "-windowed" when: - os: windows store: steam @@ -459256,27 +460476,27 @@ Secrets of Me: id: 505070 Secrets of Rætikon: files: - /save: + "/save": tags: - config when: - os: windows - /save/sync/master: + "/save/sync/master": tags: - save when: - os: windows - /.secrets-of-raetikon: + "/.secrets-of-raetikon": tags: - config when: - os: linux - /.secrets-of-raetikon/sync/master: + "/.secrets-of-raetikon/sync/master": tags: - save when: - os: linux - /Library/Application Support/Secrets of Raetikon: + "/Library/Application Support/Secrets of Raetikon": tags: - config - save @@ -459285,21 +460505,21 @@ Secrets of Rætikon: installDir: Secrets of Raetikon: {} launch: - /Raetikon: + "/Raetikon": - when: - bit: 32 os: linux store: steam - /Raetikon.exe: + "/Raetikon.exe": - when: - os: windows store: steam - /Raetikon64: + "/Raetikon64": - when: - bit: 64 os: linux store: steam - /Secrets of Raetikon.app: + "/Secrets of Raetikon.app": - when: - os: mac store: steam @@ -459309,21 +460529,21 @@ Secrets of War: installDir: SecretsOfWar: {} launch: - /Secrets of War.exe: + "/Secrets of War.exe": - when: - os: windows store: steam - /SoW.x86_64: + "/SoW.x86_64": - when: - os: linux store: steam steam: id: 1062050 -'Secrets of the Past: Dion': +"Secrets of the Past: Dion": installDir: Secrets of the Past Dion: {} launch: - /secrets-of-the-past-dion.exe: + "/secrets-of-the-past-dion.exe": - when: - os: windows store: steam @@ -459331,7 +460551,7 @@ Secrets of War: id: 860550 Section 8: files: - /My Games/Section8/S8Game/Config: + "/My Games/Section8/S8Game/Config": tags: - config when: @@ -459339,14 +460559,14 @@ Section 8: installDir: Section 8: {} launch: - /S8.exe: + "/S8.exe": - when: - store: steam steam: id: 38220 -'Section 8: Prejudice': +"Section 8: Prejudice": files: - /My Games/Section 8 Prejudice - PC/S9Game/Config: + "/My Games/Section 8 Prejudice - PC/S9Game/Config": tags: - config when: @@ -459354,8 +460574,8 @@ Section 8: installDir: Section 8 Prejudice: {} launch: - /S9.exe: - - arguments: '-noreloadenv' + "/S9.exe": + - arguments: "-noreloadenv" when: - store: steam steam: @@ -459364,7 +460584,7 @@ Sector: installDir: SECTOR: {} launch: - /SECTOR.exe: + "/SECTOR.exe": - when: - os: windows store: steam @@ -459377,12 +460597,12 @@ Sector 724: installDir: Sector 724: {} launch: - /Sector_724_002.exe: + "/Sector_724_002.exe": - when: - bit: 64 os: windows store: steam - /game.exe: + "/game.exe": - when: - store: steam steam: @@ -459391,11 +460611,11 @@ Sector Six: installDir: Sector Six: {} launch: - /SectorSix.exe: + "/SectorSix.exe": - when: - os: windows store: steam - /run.sh: + "/run.sh": - when: - os: linux store: steam @@ -459404,24 +460624,24 @@ Sector Six: Sector Zero: steam: id: 348580 -Sector's Edge: +"Sector's Edge": installDir: SectorsEdge: {} launch: - /sectorsedge.exe: + "/sectorsedge.exe": - when: - os: windows store: steam steam: id: 1024890 -'Security Booth: Director''s Cut': +"Security Booth: Director's Cut": files: - /SecurityBoothDC/Config/WindowsNoEditor: + "/SecurityBoothDC/Config/WindowsNoEditor": tags: - config when: - os: windows - /SecurityBoothDC/Saved/SaveGames: + "/SecurityBoothDC/Saved/SaveGames": tags: - save when: @@ -459429,16 +460649,16 @@ Sector's Edge: installDir: Security Booth Directors Cut: {} launch: - /WindowsNoEditor/SecurityBoothDC.exe: + "/WindowsNoEditor/SecurityBoothDC.exe": - when: - bit: 64 os: windows store: steam steam: id: 1828690 -'Security Breach: Fury''s Rage': +"Security Breach: Fury's Rage": files: - /MMFApplications/SB: + "/MMFApplications/SB": tags: - config when: @@ -459447,48 +460667,50 @@ Security Hole: installDir: SecurityHole: {} launch: - /SecurityHole.app/Contents/MacOS/SecurityHole: + "/SecurityHole.app/Contents/MacOS/SecurityHole": - when: - os: mac store: steam - /SecurityHole.exe: + "/SecurityHole.exe": - when: - os: windows store: steam - /SecurityHole.x86: + "/SecurityHole.x86": - when: - bit: 32 os: linux store: steam - /SecurityHole.x86_64: + "/SecurityHole.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 503460 -'Seduce Me 2: The Demon War': +"Seduce Me 2: The Demon War": installDir: Seduce Me 2 The Demon War: {} launch: - /SeduceMe2TheDemonWar.exe: + "/SeduceMe2TheDemonWar.exe": - when: - os: windows store: steam - /SeduceMe2TheDemonWar.sh: + "/SeduceMe2TheDemonWar.sh": - when: - os: mac store: steam + - os: linux + store: steam steam: id: 461700 Seduce Me the Otome: files: - /RenPy/SeduceMeOfficialGameData/*.save: + "/RenPy/SeduceMeOfficialGameData/*.save": tags: - save when: - os: windows - /RenPy/SeduceMeOfficialGameData/persistent: + "/RenPy/SeduceMeOfficialGameData/persistent": tags: - config when: @@ -459496,14 +460718,16 @@ Seduce Me the Otome: installDir: Seduce Me the Otome: {} launch: - /Seduce Me Official.exe: + "/Seduce Me Official.exe": - when: - os: windows store: steam - /Seduce Me Official.sh: + "/Seduce Me Official.sh": - when: - os: mac store: steam + - os: linux + store: steam steam: id: 367120 Seduction: @@ -459519,7 +460743,7 @@ See Me: id: 805990 See No Evil: files: - /See_No_Evil/gamedata.ini: + "/See_No_Evil/gamedata.ini": tags: - save when: @@ -459527,7 +460751,7 @@ See No Evil: installDir: SeeNoEvil: {} launch: - /See No Evil.exe: + "/See No Evil.exe": - when: - os: windows store: steam @@ -459537,7 +460761,7 @@ Seed Hunter: installDir: SeedHunter: {} launch: - /SeedHunter.exe: + "/SeedHunter.exe": - when: - os: windows store: steam @@ -459547,15 +460771,15 @@ Seed of Amaranth: installDir: Seed of Amaranth: {} launch: - /SeedOfAmaranth.app: + "/SeedOfAmaranth.app": - when: - os: mac store: steam - /SeedOfAmaranth.exe: + "/SeedOfAmaranth.exe": - when: - os: windows store: steam - /SeedOfAmaranth.sh: + "/SeedOfAmaranth.sh": - when: - os: linux store: steam @@ -459565,7 +460789,7 @@ Seed of Evil: installDir: Seed of Evil: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -459575,17 +460799,17 @@ Seed of Life: installDir: Seed of Life: {} launch: - /SeedOfLife.exe: + "/SeedOfLife.exe": - when: - os: windows store: steam steam: id: 1030060 -'Seed of the Arcane: Episode 1': +"Seed of the Arcane: Episode 1": installDir: - 'Seed Of The Arcane , Episode 1': {} + "Seed Of The Arcane , Episode 1": {} launch: - /Sota.exe: + "/Sota.exe": - when: - os: windows store: steam @@ -459593,7 +460817,7 @@ Seed of Life: id: 601020 Seed of the Dead: files: - /SeedOfTheDead/Saved/SaveGames/*.sav: + "/SeedOfTheDead/Saved/SaveGames/*.sav": tags: - save when: @@ -459603,37 +460827,37 @@ Seed of the Dead: installDir: Seed of the Dead: {} launch: - /SeedOfTheDead_32bit.exe: + "/SeedOfTheDead_32bit.exe": - when: - bit: 32 os: windows store: steam - /SeedOfTheDead_64bit.exe: + "/SeedOfTheDead_64bit.exe": - when: - bit: 64 os: windows store: steam steam: id: 958480 -'Seed of the Dead: Sweet Home': +"Seed of the Dead: Sweet Home": gog: id: 1455223208 installDir: SoD_SH: {} launch: - /SoD_SH.exe: + "/SoD_SH.exe": - when: - store: steam steam: id: 1566390 Seeders: files: - /Bigosaur/Seeders/checkpoint*.json: + "/Bigosaur/Seeders/checkpoint*.json": tags: - save when: - os: windows - /Bigosaur/Seeders/settings.json: + "/Bigosaur/Seeders/settings.json": tags: - config when: @@ -459646,15 +460870,15 @@ Seeds of Chaos: installDir: Seeds of Chaos: {} launch: - /seeds-of-chaos.app/Contents/MacOS/seeds-of-chaos: + "/seeds-of-chaos.app/Contents/MacOS/seeds-of-chaos": - when: - os: mac store: steam - /seeds-of-chaos.exe: + "/seeds-of-chaos.exe": - when: - os: windows store: steam - /seeds-of-chaos.sh: + "/seeds-of-chaos.sh": - when: - os: linux store: steam @@ -459664,15 +460888,15 @@ Seeds of Resilience: installDir: Seeds of Resilience: {} launch: - /Seeds of Resilience.app/Contents/MacOS/Seeds of Resilience: + "/Seeds of Resilience.app/Contents/MacOS/Seeds of Resilience": - when: - os: mac store: steam - /Seeds of Resilience.exe: + "/Seeds of Resilience.exe": - when: - os: windows store: steam - /Seeds of Resilience.x86_64: + "/Seeds of Resilience.x86_64": - when: - os: linux store: steam @@ -459687,16 +460911,16 @@ Seek Etyliv: installDir: Seek Etyliv: {} launch: - /Seek Etyliv: + "/Seek Etyliv": - when: - bit: 64 os: linux store: steam - /Seek Etyliv.app: + "/Seek Etyliv.app": - when: - os: mac store: steam - /Seek Etyliv.exe: + "/Seek Etyliv.exe": - when: - bit: 64 os: windows @@ -459705,7 +460929,7 @@ Seek Etyliv: id: 805920 Seek Girl: files: - /AppData/LocalLow/DSGame/SeekGirl/*.sav: + "/AppData/LocalLow/DSGame/SeekGirl/*.sav": tags: - save when: @@ -459713,7 +460937,7 @@ Seek Girl: installDir: SeekGirl: {} launch: - /SeekGirl.exe: + "/SeekGirl.exe": - when: - os: windows store: steam @@ -459721,7 +460945,7 @@ Seek Girl: id: 998930 Seek Girl II: files: - /AppData/LocalLow/DSGame/Seek Girl Two/save1_9.sav: + "/AppData/LocalLow/DSGame/Seek Girl Two/save1_9.sav": tags: - save when: @@ -459729,7 +460953,7 @@ Seek Girl II: installDir: SeekGirlTwo: {} launch: - /SeekGirlTwo.exe: + "/SeekGirlTwo.exe": - when: - os: windows store: steam @@ -459737,7 +460961,7 @@ Seek Girl II: id: 1149660 Seek Girl III: files: - /AppData/LocalLow/DSGame/Seek Girl Three/sg3_save1_6.sav: + "/AppData/LocalLow/DSGame/Seek Girl Three/sg3_save1_6.sav": tags: - save when: @@ -459745,7 +460969,7 @@ Seek Girl III: installDir: Seek Girl Ⅲ: {} launch: - /SeekGirlThree.exe: + "/SeekGirlThree.exe": - when: - os: windows store: steam @@ -459753,7 +460977,7 @@ Seek Girl III: id: 1191210 Seek Girl IV: files: - /AppData/LocalLow/DSGame/Seek Girl Four/sg4_1.sav: + "/AppData/LocalLow/DSGame/Seek Girl Four/sg4_1.sav": tags: - save when: @@ -459761,7 +460985,7 @@ Seek Girl IV: installDir: Seek Girl Ⅳ: {} launch: - /SeekGirlFour.exe: + "/SeekGirlFour.exe": - when: - os: windows store: steam @@ -459769,7 +460993,7 @@ Seek Girl IV: id: 1212830 Seek Girl V: files: - /AppData/LocalLow/DSGame/Seek Girl V/SaveData/Save.sav: + "/AppData/LocalLow/DSGame/Seek Girl V/SaveData/Save.sav": tags: - save when: @@ -459777,7 +461001,7 @@ Seek Girl V: installDir: Seek Girl V: {} launch: - /Seek Girl V.exe: + "/Seek Girl V.exe": - when: - os: windows store: steam @@ -459785,7 +461009,7 @@ Seek Girl V: id: 1393410 Seek Girl VI: files: - /AppData/LocalLow/DSGame/Seek Girl VI/SaveData/Save.sav: + "/AppData/LocalLow/DSGame/Seek Girl VI/SaveData/Save.sav": tags: - save when: @@ -459793,7 +461017,7 @@ Seek Girl VI: installDir: Seek Gril Ⅵ: {} launch: - /Seek Girl VI.exe: + "/Seek Girl VI.exe": - when: - os: windows store: steam @@ -459801,7 +461025,7 @@ Seek Girl VI: id: 1419730 Seek Girl VII: files: - /AppData/LocalLow/DSGame/Seek Girl VII/SaveData/Save0.sav: + "/AppData/LocalLow/DSGame/Seek Girl VII/SaveData/Save0.sav": tags: - save when: @@ -459809,14 +461033,14 @@ Seek Girl VII: installDir: Seek Girl Ⅶ: {} launch: - /Seek Girl VII.exe: + "/Seek Girl VII.exe": - when: - store: steam steam: id: 1464930 Seek Girl VIII: files: - /AppData/LocalLow/DSGame/Seek Girl ⅤⅢ/SaveData/Save0.sav: + "/AppData/LocalLow/DSGame/Seek Girl ⅤⅢ/SaveData/Save0.sav": tags: - save when: @@ -459824,14 +461048,14 @@ Seek Girl VIII: installDir: Seek Girl Ⅷ: {} launch: - /Seek Girl ⅤⅢ.exe: + "/Seek Girl ⅤⅢ.exe": - when: - store: steam steam: id: 1509090 -'Seek Girl: Fog I': +"Seek Girl: Fog I": files: - /AppData/LocalLow/DSGame/SeekGirlFogOne/*.sav: + "/AppData/LocalLow/DSGame/SeekGirlFogOne/*.sav": tags: - save when: @@ -459839,7 +461063,7 @@ Seek Girl VIII: installDir: Seek GirlFog Ⅰ: {} launch: - /SeekGirlFogOne.exe: + "/SeekGirlFogOne.exe": - when: - os: windows store: steam @@ -459849,7 +461073,7 @@ Seek Hearts: installDir: Seek Hearts: {} launch: - /Seek Hearts.exe: + "/Seek Hearts.exe": - when: - os: windows store: steam @@ -459859,11 +461083,11 @@ Seek Love: installDir: Seek Love: {} launch: - /Seek Love.app: + "/Seek Love.app": - when: - os: mac store: steam - /Seek Love.exe: + "/Seek Love.exe": - when: - os: windows store: steam @@ -459873,8 +461097,8 @@ Seek Not a Lighthouse: installDir: Seek Not a Lighthouse: {} launch: - /Seek Not a Lighthouse.exe: - - arguments: '-windowed' + "/Seek Not a Lighthouse.exe": + - arguments: "-windowed" when: - os: windows store: steam @@ -459884,7 +461108,7 @@ Seek or Die: installDir: Seek Or Die: {} launch: - /Seek Or Die.exe: + "/Seek Or Die.exe": - when: - os: windows store: steam @@ -459894,7 +461118,7 @@ Seeker: installDir: Seeker: {} launch: - /Seeker.exe: + "/Seeker.exe": - when: - os: windows store: steam @@ -459905,7 +461129,7 @@ Seeker of Adventures: id: 1083840 Seeking Dawn: files: - /AppData/LocalLow/Multiverse/SeekingDawn: + "/AppData/LocalLow/Multiverse/SeekingDawn": tags: - save when: @@ -459914,16 +461138,16 @@ Seeking Dawn: SeekingDawn: {} steam: id: 859340 -'Seeking Dawn: Free to Play Edition': +"Seeking Dawn: Free to Play Edition": installDir: Seeking Dawn - FTP Edition: {} steam: id: 793170 -'Seeking Evil: The Wendigo': +"Seeking Evil: The Wendigo": installDir: SeekingEvilWendigo: {} launch: - /SEW.exe: + "/SEW.exe": - when: - bit: 64 os: windows @@ -459934,7 +461158,7 @@ Seen: installDir: Seen: {} launch: - /MG3.exe: + "/MG3.exe": - when: - bit: 64 os: windows @@ -459945,7 +461169,7 @@ Seep Universe: installDir: SEEP Universe: {} launch: - /SEEP Universe.exe: + "/SEEP Universe.exe": - when: - os: windows store: steam @@ -459955,16 +461179,16 @@ Seers Isle: installDir: Seers Isle: {} launch: - /Seers Isle: + "/Seers Isle": - when: - bit: 64 os: linux store: steam - /Seers Isle.app: + "/Seers Isle.app": - when: - os: mac store: steam - /Seers-Isle.exe: + "/Seers-Isle.exe": - when: - os: windows store: steam @@ -459972,12 +461196,12 @@ Seers Isle: id: 738650 Sega Bass Fishing (Steam): files: - /*.xml: + "/*.xml": tags: - config when: - os: windows - /SEGA/Dreamcast Collection/SEGA Bass Fishing: + "/SEGA/Dreamcast Collection/SEGA Bass Fishing": tags: - save when: @@ -459985,60 +461209,60 @@ Sega Bass Fishing (Steam): installDir: SEGA Bass Fishing: {} launch: - /AppLauncher.exe: - - arguments: '-bootgame' + "/AppLauncher.exe": + - arguments: "-bootgame" when: - store: steam - - arguments: '-bootlauncher' + - arguments: "-bootlauncher" when: - store: steam steam: id: 71240 Sega GT: files: - /Segagt.sgs: + "/Segagt.sgs": tags: - save when: - os: windows - /config.sgs: + "/config.sgs": tags: - config when: - os: windows Sega Mega Drive and Genesis Classics: files: - /SEGA Mega Drive Classics/user_: + "/SEGA Mega Drive Classics/user_": tags: - save when: - os: linux - /SEGA Genesis Classics: + "/SEGA Genesis Classics": tags: - save when: - os: windows - /SEGA Genesis Classics Collection/setup.dat: + "/SEGA Genesis Classics Collection/setup.dat": tags: - config when: - os: windows - /SEGA Genesis Classics/setup.dat: + "/SEGA Genesis Classics/setup.dat": tags: - config when: - os: windows - /SEGA Mega Drive Classics: + "/SEGA Mega Drive Classics": tags: - save when: - os: windows - /SEGA Mega Drive Classics/setup.dat: + "/SEGA Mega Drive Classics/setup.dat": tags: - config when: - os: windows - /unity3d/Sega/SEGA Mega Drive Classics/prefs: + "/unity3d/Sega/SEGA Mega Drive Classics/prefs": tags: - config when: @@ -460046,20 +461270,20 @@ Sega Mega Drive and Genesis Classics: installDir: Sega Classics: {} launch: - /SEGAGameRoom: + "/SEGAGameRoom": - when: - bit: 64 os: linux store: steam - /SEGAGameRoom.app: + "/SEGAGameRoom.app": - when: - os: mac store: steam - /SEGAGameRoom.exe: + "/SEGAGameRoom.exe": - when: - os: windows store: steam - /SEGAGenesisClassics.exe: + "/SEGAGenesisClassics.exe": - when: - os: windows store: steam @@ -460071,26 +461295,26 @@ Sega Mega Drive and Genesis Classics: id: 34270 Sega Rally 2: files: - /SR2_SAVE.DAT: + "/SR2_SAVE.DAT": tags: - save when: - os: windows Sega Rally Championship: files: - /RALLY.INI: + "/RALLY.INI": tags: - config when: - os: windows - /SRALLY_0: + "/SRALLY_0": tags: - save when: - os: windows Sega Rally Revo: files: - /SEGA Rally/Saved Games: + "/SEGA Rally/Saved Games": tags: - config - save @@ -460102,14 +461326,14 @@ Sega Rally Revo: installDir: Sega Rally: {} launch: - /SEGARallyLauncher.exe: + "/SEGARallyLauncher.exe": - when: - store: steam steam: id: 10400 Sega Touring Car Championship: files: - /stcc.INI: + "/stcc.INI": tags: - config when: @@ -460118,7 +461342,7 @@ Segfault: installDir: SEGFAULT: {} launch: - /Segfault.exe: + "/Segfault.exe": - when: - os: windows store: steam @@ -460131,15 +461355,15 @@ Seiga Kaku uses her amazing Taoist arts and gives you a life lesson: installDir: Seiga_Kaku_uses_her_amazing_Taoist_arts_and_gives_you_a_life_lesson: {} launch: - /SeigaKakusAmazingTaoistArts.app: + "/SeigaKakusAmazingTaoistArts.app": - when: - os: mac store: steam - /SeigaKakusAmazingTaoistArts.exe: + "/SeigaKakusAmazingTaoistArts.exe": - when: - os: windows store: steam - /SeigaKakusAmazingTaoistArts.sh: + "/SeigaKakusAmazingTaoistArts.sh": - when: - os: linux store: steam @@ -460149,7 +461373,7 @@ Seinarukana -The Spirit of Eternity Sword 2-: installDir: Seinarukana -The Spirit of Eternity Sword 2-: {} launch: - /NarukanaDL.exe: + "/NarukanaDL.exe": - when: - os: windows store: steam @@ -460159,7 +461383,7 @@ Seirei: installDir: Seirei: {} launch: - /Seirei.exe: + "/Seirei.exe": - when: - os: windows store: steam @@ -460170,14 +461394,14 @@ Seishin - Virtual Rhythm: Seishin: {} steam: id: 770160 -'Sekiro: Shadows Die Twice': +"Sekiro: Shadows Die Twice": files: - /Sekiro//S0000.sl2: + "/Sekiro//S0000.sl2": tags: - save when: - os: windows - /Sekiro/GraphicsConfig.xml: + "/Sekiro/GraphicsConfig.xml": tags: - config when: @@ -460185,7 +461409,7 @@ Seishin - Virtual Rhythm: installDir: Sekiro: {} launch: - /sekiro.exe: + "/sekiro.exe": - when: - store: steam steam: @@ -460195,26 +461419,21 @@ Sekwere: id: 501720 Selaco: files: - /Save/*.zds: + "/Save/*.zds": tags: - save when: - os: windows - /selaco-demo-*: - tags: - - config - when: - - os: windows id: steamExtra: - 1966350 steam: id: 1592280 -'Selatria: Advent of the Dakk''rian Empire': +"Selatria: Advent of the Dakk'rian Empire": installDir: - Selatria Advent of the Dakk'rian Empire: {} + "Selatria Advent of the Dakk'rian Empire": {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: @@ -460223,15 +461442,15 @@ Selenon Rising: installDir: Selenon Rising: {} launch: - /Selenon Rising.app: + "/Selenon Rising.app": - when: - os: mac store: steam - /Selenon Rising.exe: + "/Selenon Rising.exe": - when: - os: windows store: steam - /Selenon Rising.sh: + "/Selenon Rising.sh": - when: - os: linux store: steam @@ -460241,7 +461460,7 @@ Selenophobia: installDir: Selenophobia: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -460251,7 +461470,7 @@ Self Shot: installDir: Self Shot: {} launch: - /Self Shot.exe: + "/Self Shot.exe": - when: - store: steam steam: @@ -460260,11 +461479,11 @@ Self-Checkout Unlimited: installDir: Self-Checkout Unlimited: {} launch: - /MacNoEditor/SCU.app: + "/MacNoEditor/SCU.app": - when: - os: mac store: steam - /WindowsNoEditor/SCU.exe: + "/WindowsNoEditor/SCU.exe": - when: - os: windows store: steam @@ -460274,11 +461493,11 @@ Self-Reliance 自我性赖: installDir: SelfReliance: {} launch: - /SelfReliance.app: + "/SelfReliance.app": - when: - os: mac store: steam - /SelfReliance.exe: + "/SelfReliance.exe": - when: - os: windows store: steam @@ -460289,18 +461508,18 @@ Self-knowledge VR: Self-knowledge VR: {} steam: id: 958680 -'Selfie Games: A Multiplayer Couch Party Game': +"Selfie Games: A Multiplayer Couch Party Game": steam: id: 897650 -'Selfie: Sisters of the Amniotic Lens': +"Selfie: Sisters of the Amniotic Lens": installDir: Selfie: {} launch: - /selfie.bat: + "/selfie.bat": - when: - os: windows store: steam - /selfiebuild15.03.exe: + "/selfiebuild15.03.exe": - when: - os: windows store: steam @@ -460308,7 +461527,7 @@ Self-knowledge VR: id: 287140 SelfieTennis: installDir: - 'VRUnicorns #SelfieTennis': {} + "VRUnicorns #SelfieTennis": {} steam: id: 392190 Selfloss: @@ -460320,11 +461539,11 @@ Selknam Defense: installDir: SelknamDefense: {} launch: - /SelknamDefense.app: + "/SelknamDefense.app": - when: - os: mac store: steam - /SelknamDefense.exe: + "/SelknamDefense.exe": - when: - os: windows store: steam @@ -460338,11 +461557,11 @@ Sellsword VR: Sellsword VR: {} steam: id: 676460 -'Sellswords: Ashen Company': +"Sellswords: Ashen Company": installDir: Sellswords Ashen Company: {} launch: - /Sellswords.exe: + "/Sellswords.exe": - when: - os: windows store: steam @@ -460352,15 +461571,15 @@ Selma and the Wisp: installDir: Selma and the Wisp: {} launch: - /SelmaAndTheWisp.app: + "/SelmaAndTheWisp.app": - when: - os: mac store: steam - /SelmaAndTheWisp.exe: + "/SelmaAndTheWisp.exe": - when: - os: windows store: steam - /SelmaAndTheWisp.x86: + "/SelmaAndTheWisp.x86": - when: - os: linux store: steam @@ -460368,7 +461587,7 @@ Selma and the Wisp: id: 495980 Semblance: files: - /AppData/LocalLow/NYAMAKOP/Semblance: + "/AppData/LocalLow/NYAMAKOP/Semblance": tags: - save when: @@ -460378,11 +461597,11 @@ Semblance: installDir: Semblance: {} launch: - /Semblance.app: + "/Semblance.app": - when: - os: mac store: steam - /Semblance.exe: + "/Semblance.exe": - when: - os: windows store: steam @@ -460392,7 +461611,7 @@ Semi-Sweet Tofu: installDir: Semi Sweet Tofu: {} launch: - /tofu.exe: + "/tofu.exe": - when: - os: windows store: steam @@ -460400,7 +461619,7 @@ Semi-Sweet Tofu: id: 841830 Semispheres: files: - /semispheres.sav3: + "/semispheres.sav3": tags: - save when: @@ -460408,20 +461627,20 @@ Semispheres: installDir: Semispheres: {} launch: - /semispheres.app: + "/semispheres.app": - when: - os: mac store: steam - /semispheres.exe: + "/semispheres.exe": - when: - os: windows store: steam - /semispheres.x86: + "/semispheres.x86": - when: - bit: 32 os: linux store: steam - /semispheres.x86_64: + "/semispheres.x86_64": - when: - bit: 64 os: linux @@ -460436,15 +461655,15 @@ Senalux: installDir: Senalux: {} launch: - /senalux: + "/senalux": - when: - os: linux store: steam - /senalux.app: + "/senalux.app": - when: - os: mac store: steam - /senalux.exe: + "/senalux.exe": - when: - os: windows store: steam @@ -460452,12 +461671,12 @@ Senalux: id: 654580 Sengoku: files: - /save games: + "/save games": tags: - save when: - os: windows - /settings.txt: + "/settings.txt": tags: - config when: @@ -460467,7 +461686,7 @@ Sengoku: installDir: Sengoku: {} launch: - /Sengoku.exe: + "/Sengoku.exe": - when: - store: steam steam: @@ -460481,20 +461700,20 @@ Sengoku Dynasty: installDir: Sengoku Dynasty: {} launch: - /SengokuDynasty.exe: - - arguments: '-PLATFORM=STEAM' + "/SengokuDynasty.exe": + - arguments: "-PLATFORM=STEAM" when: - os: windows store: steam steam: id: 1702010 -'Sengoku Jidai: Shadow of the Shogun': +"Sengoku Jidai: Shadow of the Shogun": gog: id: 2103245994 installDir: Sengoku Jidai: {} launch: - /autorun.exe: + "/autorun.exe": - when: - os: windows store: steam @@ -460504,7 +461723,7 @@ Sengoku Neet: installDir: SengokuNeet: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -460512,12 +461731,12 @@ Sengoku Neet: id: 959350 Sengoku Rance: files: - /SaveData: + "/SaveData": tags: - save when: - os: windows - /System40.ini: + "/System40.ini": tags: - config when: @@ -460529,7 +461748,7 @@ Senity: id: 1047600 Senko no Ronde 2: files: - /GAME.DAT: + "/GAME.DAT": tags: - save when: @@ -460537,7 +461756,7 @@ Senko no Ronde 2: installDir: Senko no Ronde 2: {} launch: - /Ronde2.exe: + "/Ronde2.exe": - when: - store: steam steam: @@ -460546,21 +461765,21 @@ Senna and the Forest: installDir: senna_forest: {} launch: - /Senna And The Forest.app/Contents/MacOS/Senna And The Forest: + "/Senna And The Forest.app/Contents/MacOS/Senna And The Forest": - when: - os: mac store: steam - /Senna and the Forest/Senna And The Forest.exe: + "/Senna and the Forest/Senna And The Forest.exe": - when: - os: windows store: steam steam: id: 1113690 -'Senpai Teaches Me Japanese: Part 1': +"Senpai Teaches Me Japanese: Part 1": installDir: Senpai Teaches Me Japanese Part 1: {} launch: - /Learn to read Japanese Part 1.exe: + "/Learn to read Japanese Part 1.exe": - when: - os: windows store: steam @@ -460568,7 +461787,7 @@ Senna and the Forest: id: 1037330 Senran Kagura Bon Appétit! - Full Course: files: - /DeploymentRoot/savedata: + "/DeploymentRoot/savedata": tags: - save when: @@ -460576,15 +461795,15 @@ Senran Kagura Bon Appétit! - Full Course: installDir: Senran Kagura Bon Appetit: {} launch: - /SKBonAppetit.exe: + "/SKBonAppetit.exe": - when: - os: windows store: steam steam: id: 514310 -'Senran Kagura Burst Re:Newal': +"Senran Kagura Burst Re:Newal": files: - /Senran Kagura Burst ReNewal: + "/Senran Kagura Burst ReNewal": tags: - config - save @@ -460593,7 +461812,7 @@ Senran Kagura Bon Appétit! - Full Course: installDir: Senran Kagura Burst ReNewal: {} launch: - /SKBurstReNewal.exe: + "/SKBurstReNewal.exe": - when: - os: windows store: steam @@ -460601,12 +461820,12 @@ Senran Kagura Bon Appétit! - Full Course: id: 889510 Senran Kagura Estival Versus: files: - /savedata/: + "/savedata/": tags: - save when: - store: steam - /savedata//config.dat: + "/savedata//config.dat": tags: - config when: @@ -460614,7 +461833,7 @@ Senran Kagura Estival Versus: installDir: Senran Kagura Estival Versus: {} launch: - /SKEstivalVersus.exe: + "/SKEstivalVersus.exe": - when: - os: windows store: steam @@ -460622,7 +461841,7 @@ Senran Kagura Estival Versus: id: 502800 Senran Kagura Peach Ball: files: - /savedata/: + "/savedata/": tags: - config - save @@ -460631,19 +461850,19 @@ Senran Kagura Peach Ball: installDir: Senran Kagura PeachBall: {} launch: - /SKPeachBall.exe: + "/SKPeachBall.exe": - when: - store: steam steam: id: 1074080 Senran Kagura Peach Beach Splash: files: - /savedata/: + "/savedata/": tags: - save when: - store: steam - /savedata//config.dat: + "/savedata//config.dat": tags: - config when: @@ -460651,7 +461870,7 @@ Senran Kagura Peach Beach Splash: installDir: Senran Kagura Peach Beach Splash: {} launch: - /SKPeachBeachSplash.exe: + "/SKPeachBeachSplash.exe": - when: - os: windows store: steam @@ -460659,7 +461878,7 @@ Senran Kagura Peach Beach Splash: id: 696170 Senran Kagura Reflexions: files: - /savedata: + "/savedata": tags: - save when: @@ -460667,19 +461886,19 @@ Senran Kagura Reflexions: installDir: Senran Kagura Reflexions: {} launch: - /SKReflexions.exe: + "/SKReflexions.exe": - when: - store: steam steam: id: 981770 Senran Kagura Shinovi Versus: files: - /savedata/senran2_*.dat: + "/savedata/senran2_*.dat": tags: - save when: - os: windows - /savedata/senran2_sys.dat: + "/savedata/senran2_sys.dat": tags: - config when: @@ -460689,7 +461908,7 @@ Senran Kagura Shinovi Versus: installDir: Senran Kagura Shinovi Versus: {} launch: - /SKShinoviVersus.exe: + "/SKShinoviVersus.exe": - when: - store: steam steam: @@ -460698,7 +461917,7 @@ Senran Meisuishu Tactics: installDir: thdx: {} launch: - /thdxsteam.exe: + "/thdxsteam.exe": - when: - os: windows store: steam @@ -460706,12 +461925,12 @@ Senran Meisuishu Tactics: id: 785750 Senren * Banka: files: - /userdata//1144400/remote: + "/userdata//1144400/remote": tags: - save when: - store: steam - /YuzuSoft/SenrenBanka: + "/YuzuSoft/SenrenBanka": tags: - config - save @@ -460722,7 +461941,7 @@ Senren * Banka: installDir: SenrenBanka: {} launch: - /SenrenBanka.exe: + "/SenrenBanka.exe": - when: - store: steam steam: @@ -460731,23 +461950,23 @@ Sense of the Devil: installDir: Sense of The Devil: {} launch: - /SenseofTheDevil.app/Contents/MacOS/SenseofTheDevil: + "/SenseofTheDevil.app/Contents/MacOS/SenseofTheDevil": - when: - os: mac store: steam - /SenseofTheDevil.exe: + "/SenseofTheDevil.exe": - when: - os: windows store: steam - /SenseofTheDevil.x86: + "/SenseofTheDevil.x86": - when: - os: linux store: steam steam: id: 705710 -'Sense: A Cyberpunk Ghost Story': +"Sense: A Cyberpunk Ghost Story": files: - /AppData/LocalLow/Suzaku/Sense - A Cyberpunk Ghost Story/settings0.dat: + "/AppData/LocalLow/Suzaku/Sense - A Cyberpunk Ghost Story/settings0.dat": tags: - config - save @@ -460756,21 +461975,24 @@ Sense of the Devil: installDir: SenseACPGS: {} launch: - /SenseACPGS.app: + "/SenseACPGS.app": - when: - os: mac store: steam - /SenseACPGS.exe: + "/SenseACPGS.exe": - when: - bit: 32 os: windows store: steam - /SenseACPGS.x86: + - bit: 64 + os: windows + store: steam + "/SenseACPGS.x86": - when: - bit: 32 os: linux store: steam - /SenseACPGS.x86_64: + "/SenseACPGS.x86_64": - when: - bit: 64 os: linux @@ -460785,15 +462007,15 @@ Sensible Blood Rugby Sevens: installDir: Sensible Blood Rugby Sevens: {} launch: - /SensibleBloodRugby.exe: + "/SensibleBloodRugby.exe": - when: - os: windows store: steam - /SensibleBloodRugby.x86_64: + "/SensibleBloodRugby.x86_64": - when: - os: linux store: steam - /SensibleBloodSoccer.app/Contents/MacOS/SensibleBloodSoccer: + "/SensibleBloodSoccer.app/Contents/MacOS/SensibleBloodSoccer": - when: - os: mac store: steam @@ -460807,12 +462029,12 @@ Sensible World of Soccer 96/97: id: 1207659176 Sensorium: files: - /Sensorium/Saved/Config/WindowsNoEditor: + "/Sensorium/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /Sensorium/Saves: + "/Sensorium/Saves": tags: - save when: @@ -460820,7 +462042,7 @@ Sensorium: installDir: Sensorium: {} launch: - /Sensorium.exe: + "/Sensorium.exe": - when: - bit: 64 os: windows @@ -460831,7 +462053,7 @@ Sensual Adventures - The Game: installDir: Sensual Adventures - The Game: {} launch: - /Sensual Adventures.exe: + "/Sensual Adventures.exe": - when: - bit: 64 os: windows @@ -460850,7 +462072,7 @@ Sentenced: installDir: Sentenced: {} launch: - /Sentenced.exe: + "/Sentenced.exe": - when: - bit: 64 os: windows @@ -460862,15 +462084,15 @@ Sentenced VR: SentencedVR: {} steam: id: 1111830 -'Sentience: The Android''s Tale': +"Sentience: The Android's Tale": installDir: - Sentience The Android's Tale: {} + "Sentience The Android's Tale": {} launch: - /Game.app: + "/Game.app": - when: - os: mac store: steam - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -460880,34 +462102,34 @@ Sentinel: installDir: Sentinel: {} launch: - /Sentinel.app: + "/Sentinel.app": - when: - os: mac store: steam - /Sentinel.exe: + "/Sentinel.exe": - when: - os: windows store: steam - /Sentinel.x86: + "/Sentinel.x86": - when: - os: linux store: steam steam: id: 293200 -'Sentinel 3: Homeworld': +"Sentinel 3: Homeworld": installDir: Sentinel 3: {} launch: - /Sentinel3.exe: + "/Sentinel3.exe": - when: - store: steam steam: id: 275350 -'Sentinel 4: Dark Star': +"Sentinel 4: Dark Star": installDir: Sentinel4: {} launch: - /Sentinel4.exe: + "/Sentinel4.exe": - when: - store: steam steam: @@ -460916,7 +462138,7 @@ Sentinel Zero: installDir: Cardinal Conclave: {} launch: - /Cardinal Conclave.exe: + "/Cardinal Conclave.exe": - when: - os: windows store: steam @@ -460926,7 +462148,7 @@ Sentinels: installDir: Sentinels: {} launch: - /Sentinels.exe: + "/Sentinels.exe": - when: - os: windows store: steam @@ -460936,11 +462158,11 @@ Sentinels of Freedom: installDir: Sentinels of Freedom: {} launch: - /Sentinels.app: + "/Sentinels.app": - when: - os: mac store: steam - /Sentinels.exe: + "/Sentinels.exe": - when: - os: windows store: steam @@ -460948,12 +462170,12 @@ Sentinels of Freedom: id: 812870 Sentinels of the Multiverse: files: - /AppData/LocalLow/Handelabra Games Inc_/Sentinels: + "/AppData/LocalLow/Handelabra Games Inc_/Sentinels": tags: - save when: - os: windows - /userdata//337150/remote: + "/userdata//337150/remote": tags: - save when: @@ -460961,34 +462183,34 @@ Sentinels of the Multiverse: id: steamExtra: - 344050 + - 348100 - 351390 - 369050 + - 382220 + - 396510 - 410480 - 429110 + - 443440 - 451710 - 467510 - - 348100 - - 396510 - - 382220 - - 443440 - 467516 installDir: Sentinels of the Multiverse: {} launch: - /Sentinels.app: + "/Sentinels.app": - when: - os: mac store: steam - /Sentinels.exe: + "/Sentinels.exe": - when: - os: windows store: steam - /Sentinels.x86: + "/Sentinels.x86": - when: - bit: 32 os: linux store: steam - /Sentinels.x86_64: + "/Sentinels.x86_64": - when: - bit: 64 os: linux @@ -461003,196 +462225,199 @@ Sento Stream: installDir: Sento Stream: {} launch: - /SentoStream.exe: + "/SentoStream.exe": - when: - bit: 64 os: windows store: steam steam: id: 1096970 -'Sentou Gakuen: Revival': +"Sentou Gakuen: Revival": steam: id: 405680 Sentris: installDir: Sentris: {} launch: - /Sentris.app: + "/Sentris.app": - when: - os: mac store: steam - /Sentris.exe: + "/Sentris.exe": - when: - bit: 32 os: windows store: steam - /Sentris.x86: + - bit: 64 + os: windows + store: steam + "/Sentris.x86": - when: - bit: 32 os: linux store: steam - /Sentris.x86_64: + "/Sentris.x86_64": - when: - bit: 64 os: linux store: steam - /alpha1/Sentris Alpha 1.app: + "/alpha1/Sentris Alpha 1.app": - when: - os: mac store: steam - /alpha1/Sentris Alpha 1.exe: + "/alpha1/Sentris Alpha 1.exe": - when: - os: windows store: steam - /alpha1/Sentris.Alpha.1.x86: + "/alpha1/Sentris.Alpha.1.x86": - when: - bit: 32 os: linux store: steam - /alpha1/Sentris.Alpha.1.x86_64: + "/alpha1/Sentris.Alpha.1.x86_64": - when: - bit: 64 os: linux store: steam - /alpha2/Sentris Alpha 2.app: + "/alpha2/Sentris Alpha 2.app": - when: - os: mac store: steam - /alpha2/Sentris Alpha 2.exe: + "/alpha2/Sentris Alpha 2.exe": - when: - os: windows store: steam - /alpha2/Sentris.Alpha.2.x86: + "/alpha2/Sentris.Alpha.2.x86": - when: - bit: 32 os: linux store: steam - /alpha2/Sentris.Alpha.2.x86_64: + "/alpha2/Sentris.Alpha.2.x86_64": - when: - bit: 64 os: linux store: steam - /debut/Sentris Debut Prototype.app: + "/debut/Sentris Debut Prototype.app": - when: - os: mac store: steam - /debut/Sentris Debut Prototype.exe: + "/debut/Sentris Debut Prototype.exe": - when: - os: windows store: steam - /debut/Sentris.Debut.Prototype.x86: + "/debut/Sentris.Debut.Prototype.x86": - when: - bit: 32 os: linux store: steam - /debut/Sentris.Debut.Prototype.x86_64: + "/debut/Sentris.Debut.Prototype.x86_64": - when: - bit: 64 os: linux store: steam - /donut/Sentris Donut Prototype.app: + "/donut/Sentris Donut Prototype.app": - when: - os: mac store: steam - /donut/Sentris Donut Prototype.exe: + "/donut/Sentris Donut Prototype.exe": - when: - os: windows store: steam - /donut/Sentris_Donut_Prototype.x86: + "/donut/Sentris_Donut_Prototype.x86": - when: - bit: 32 os: linux store: steam - /donut/Sentris_Donut_Prototype.x86_64: + "/donut/Sentris_Donut_Prototype.x86_64": - when: - bit: 64 os: linux store: steam - /glacier/Sentris Glacier.app: + "/glacier/Sentris Glacier.app": - when: - os: mac store: steam - /glacier/Sentris Glacier.exe: + "/glacier/Sentris Glacier.exe": - when: - os: windows store: steam - /glacier/Sentris.Glacier.x86: + "/glacier/Sentris.Glacier.x86": - when: - bit: 32 os: linux store: steam - /glacier/Sentris.Glacier.x86_64: + "/glacier/Sentris.Glacier.x86_64": - when: - bit: 64 os: linux store: steam - /honeycomb/Sentris Honeycomb.app: + "/honeycomb/Sentris Honeycomb.app": - when: - store: steam - /honeycomb/Sentris Honeycomb.exe: + "/honeycomb/Sentris Honeycomb.exe": - when: - os: windows store: steam - /honeycomb/Sentris.Honeycomb.x86: + "/honeycomb/Sentris.Honeycomb.x86": - when: - bit: 32 os: linux store: steam - /honeycomb/Sentris.Honeycomb.x86_64: + "/honeycomb/Sentris.Honeycomb.x86_64": - when: - bit: 64 os: linux store: steam - /prealpha1/Sentris Pre-Alpha 1.app: + "/prealpha1/Sentris Pre-Alpha 1.app": - when: - os: mac store: steam - /prealpha1/Sentris Pre-Alpha 1.exe: + "/prealpha1/Sentris Pre-Alpha 1.exe": - when: - os: windows store: steam - /prealpha1/Sentris.PreAlpha1.x86: + "/prealpha1/Sentris.PreAlpha1.x86": - when: - bit: 32 os: linux store: steam - /prealpha1/Sentris.PreAlpha1.x86_64: + "/prealpha1/Sentris.PreAlpha1.x86_64": - when: - bit: 64 os: linux store: steam - /prealpha2/Sentris Pre-Alpha 2.app: + "/prealpha2/Sentris Pre-Alpha 2.app": - when: - os: mac store: steam - /prealpha2/Sentris Pre-Alpha 2.exe: + "/prealpha2/Sentris Pre-Alpha 2.exe": - when: - os: windows store: steam - /prealpha2/Sentris.PreAlpha2.x86: + "/prealpha2/Sentris.PreAlpha2.x86": - when: - bit: 32 os: linux store: steam - /prealpha2/Sentris.PreAlpha2.x86_64: + "/prealpha2/Sentris.PreAlpha2.x86_64": - when: - bit: 64 os: linux store: steam - /tidepool/Sentris Tidepool Prototype.app: + "/tidepool/Sentris Tidepool Prototype.app": - when: - os: mac store: steam - /tidepool/Sentris Tidepool Prototype.exe: + "/tidepool/Sentris Tidepool Prototype.exe": - when: - os: windows store: steam - /tidepool/Sentris.Tidepool.Prototype.x86: + "/tidepool/Sentris.Tidepool.Prototype.x86": - when: - bit: 32 os: linux store: steam - /tidepool/Sentris.Tidepool.Prototype.x86_64: + "/tidepool/Sentris.Tidepool.Prototype.x86_64": - when: - bit: 64 os: linux @@ -461201,12 +462426,12 @@ Sentris: id: 303530 Sentry Knight Tactics: files: - /Sentry Knight Tactics/saves: + "/Sentry Knight Tactics/saves": tags: - save when: - os: windows - /Sentry Knight Tactics/settings: + "/Sentry Knight Tactics/settings": tags: - config when: @@ -461214,17 +462439,17 @@ Sentry Knight Tactics: installDir: Sentry Knight Tactics: {} launch: - /Sentry Knight Tactics.app: + "/Sentry Knight Tactics.app": - when: - os: mac store: steam - /Sentry Knight Tactics.exe: + "/Sentry Knight Tactics.exe": - when: - os: windows store: steam steam: id: 503210 -'Senua’s Saga: Hellblade II': +"Senua’s Saga: Hellblade II": steam: id: 2461850 Senza Peso: @@ -461236,7 +462461,7 @@ Sephirothic Stories: installDir: Sephirothic Stories: {} launch: - /Sephirothic Stories.exe: + "/Sephirothic Stories.exe": - when: - os: windows store: steam @@ -461248,11 +462473,11 @@ Sephonie: installDir: Sephonie: {} launch: - /Sephonie.app/Contents/MacOS/Sephonie: + "/Sephonie.app/Contents/MacOS/Sephonie": - when: - os: mac store: steam - /Sephonie.exe: + "/Sephonie.exe": - when: - os: windows store: steam @@ -461260,22 +462485,22 @@ Sephonie: id: 1248840 Sepia Tears: files: - /RepriseEdition/renpy/config.py: + "/RepriseEdition/renpy/config.py": tags: - config when: - os: windows - /renpy/config.py: + "/renpy/config.py": tags: - config when: - os: windows - /RenPy/Sepia Tears ~midwinter's reprise~-1251418373: + "/RenPy/Sepia Tears ~midwinter's reprise~-1251418373": tags: - save when: - os: windows - /RenPy/sepia-tears-reprise-edition: + "/RenPy/sepia-tears-reprise-edition": tags: - save when: @@ -461286,17 +462511,17 @@ Sepia Tears: id: 429300 September 7th: files: - /September_7th/Saved/Config/WindowsNoEditor: + "/September_7th/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /September_7th/Saved/SaveGames: + "/September_7th/Saved/SaveGames": tags: - save when: - os: windows - /September_7th/Saved/SaveGames/saved_namespace.sav: + "/September_7th/Saved/SaveGames/saved_namespace.sav": tags: - config when: @@ -461304,16 +462529,16 @@ September 7th: installDir: September 7th: {} launch: - /September_7th.exe: + "/September_7th.exe": - when: - bit: 64 os: windows store: steam steam: id: 2249160 -'Septerra Core: Legacy of the Creator': +"Septerra Core: Legacy of the Creator": files: - /savedata: + "/savedata": tags: - save when: @@ -461323,15 +462548,15 @@ September 7th: installDir: Septerra Core: {} launch: - /RunGame: + "/RunGame": - when: - os: linux store: steam - /Septerra Core.app: + "/Septerra Core.app": - when: - os: mac store: steam - /septerra.exe: + "/septerra.exe": - when: - os: windows store: steam @@ -461341,17 +462566,17 @@ Septic Savages: installDir: Septic Savages: {} launch: - /nw.app: + "/nw.app": - when: - os: mac store: steam - /nw.exe: + "/nw.exe": - when: - os: windows store: steam steam: id: 547000 -'Sequence: Robot Programming Simulator': +"Sequence: Robot Programming Simulator": steam: id: 933090 Serafina and the Key to the Egg: @@ -461360,24 +462585,24 @@ Serafina and the Key to the Egg: installDir: Serafina and the Key to the Egg: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: id: 1410980 -Serafina's Crown: +"Serafina's Crown": installDir: - Serafina's Crown: {} + "Serafina's Crown": {} launch: - /SerafinasCrown.app: + "/SerafinasCrown.app": - when: - os: mac store: steam - /SerafinasCrown.exe: + "/SerafinasCrown.exe": - when: - os: windows store: steam - /SerafinasCrown.sh: + "/SerafinasCrown.sh": - when: - os: linux store: steam @@ -461385,7 +462610,7 @@ Serafina's Crown: id: 449340 Seraph: files: - /Seraph: + "/Seraph": tags: - save when: @@ -461393,7 +462618,7 @@ Seraph: installDir: Seraph: {} launch: - /Seraph.exe: + "/Seraph.exe": - when: - store: steam steam: @@ -461402,7 +462627,7 @@ Seraphic Destroyer: installDir: Seraphic Destroyer: {} launch: - /Seraphic Destroyer.exe: + "/Seraphic Destroyer.exe": - when: - os: windows store: steam @@ -461412,7 +462637,7 @@ Seraphims of Astraeus: installDir: Seraphims of Astraeus: {} launch: - /Seraphims of Astraeus.exe: + "/Seraphims of Astraeus.exe": - when: - os: windows store: steam @@ -461425,7 +462650,7 @@ SereNest: id: 1139780 Serena: files: - /config.lua: + "/config.lua": tags: - config when: @@ -461433,26 +462658,26 @@ Serena: installDir: Serena: {} launch: - /Dagon.app/Contents/MacOS/Dagon: + "/Dagon.app/Contents/MacOS/Dagon": - when: - os: mac store: steam - /Dagon.exe: + "/Dagon.exe": - when: - bit: 32 os: windows store: steam - /Dagon64.exe: + "/Dagon64.exe": - when: - bit: 64 os: windows store: steam - /dagon: + "/dagon": - when: - bit: 32 os: linux store: steam - /dagon.64: + "/dagon.64": - when: - bit: 64 os: linux @@ -461463,15 +462688,15 @@ Serenade of the Sirens: installDir: Serenade_of_the_Sirens: {} launch: - /Serenade_of_the_Sirens: + "/Serenade_of_the_Sirens": - when: - os: mac store: steam - /Serenade_of_the_Sirens.exe: + "/Serenade_of_the_Sirens.exe": - when: - os: windows store: steam - /Serenade_of_the_Sirens.x86_64: + "/Serenade_of_the_Sirens.x86_64": - when: - bit: 64 os: linux @@ -461480,22 +462705,22 @@ Serenade of the Sirens: id: 901000 Serial Cleaner: files: - /AppData/LocalLow/iFun4all/Serial Cleaner/*.sav: + "/AppData/LocalLow/iFun4all/Serial Cleaner/*.sav": tags: - save when: - os: windows - /AppData/LocalLow/iFun4all/Serial Cleaner/settings.conf: + "/AppData/LocalLow/iFun4all/Serial Cleaner/settings.conf": tags: - config when: - os: windows - /Library/Application Support/ifun4all/Serial Cleaner/*.sav: + "/Library/Application Support/ifun4all/Serial Cleaner/*.sav": tags: - save when: - os: mac - /Library/Application Support/ifun4all/Serial Cleaner/settings.conf: + "/Library/Application Support/ifun4all/Serial Cleaner/settings.conf": tags: - config when: @@ -461505,15 +462730,15 @@ Serial Cleaner: installDir: Serial Cleaner: {} launch: - /Cleaner.app/Contents/MacOS/Cleaner: + "/Cleaner.app/Contents/MacOS/Cleaner": - when: - os: mac store: steam - /Cleaner.exe: + "/Cleaner.exe": - when: - os: windows store: steam - /Cleaner.x86: + "/Cleaner.x86": - when: - os: linux store: steam @@ -461521,12 +462746,12 @@ Serial Cleaner: id: 522210 Serial Cleaners: files: - /AppData/LocalLow/DrawDistance/SerialCleaners/*//Common: + "/AppData/LocalLow/DrawDistance/SerialCleaners/*//Common": tags: - config when: - os: windows - /AppData/LocalLow/DrawDistance/SerialCleaners/*//Slot*: + "/AppData/LocalLow/DrawDistance/SerialCleaners/*//Slot*": tags: - save when: @@ -461541,7 +462766,7 @@ Serial Cleaners: installDir: Serial Cleaners: {} launch: - /SerialCleaners.exe: + "/SerialCleaners.exe": - when: - bit: 64 os: windows @@ -461554,12 +462779,12 @@ Serial Cleaners: id: 1337920 Serin Fate: files: - /AppData/Local/Serin_Fate: + "/AppData/Local/Serin_Fate": tags: - save when: - os: windows - /AppData/Local/Serin_Fate/main.data: + "/AppData/Local/Serin_Fate/main.data": tags: - config when: @@ -461569,7 +462794,7 @@ Serin Fate: installDir: Serin Fate: {} launch: - /Serin Fate.exe: + "/Serin Fate.exe": - when: - os: windows store: steam @@ -461579,7 +462804,7 @@ Serious Metal Detecting: installDir: AwesomeMetalDetecting: {} launch: - /AwesomeMetalDetecting.exe: + "/AwesomeMetalDetecting.exe": - when: - os: windows store: steam @@ -461590,12 +462815,12 @@ Serious Office: id: 776170 Serious Sam 2: files: - /Content/SeriousSam2/PlayerProfiles: + "/Content/SeriousSam2/PlayerProfiles": tags: - save when: - os: windows - /Content/SeriousSam2/Sam2.ini: + "/Content/SeriousSam2/Sam2.ini": tags: - config when: @@ -461606,24 +462831,24 @@ Serious Sam 2: installDir: Serious Sam 2: {} launch: - /Bin/Sam2.exe: + "/Bin/Sam2.exe": - when: - store: steam steam: id: 204340 -'Serious Sam 3 VR: BFE': +"Serious Sam 3 VR: BFE": installDir: Serious Sam 3 VR BFE: {} steam: id: 567670 -'Serious Sam 3: BFE': +"Serious Sam 3: BFE": files: - /userdata//41070: + "/userdata//41070": tags: - save when: - store: steam - /userdata//41070/local/SeriousSam3.ini: + "/userdata//41070/local/SeriousSam3.ini": tags: - config when: @@ -461635,27 +462860,27 @@ Serious Sam 2: installDir: Serious Sam 3: {} launch: - /Bin/Sam3: + "/Bin/Sam3": - when: - os: mac store: steam - when: - os: linux store: steam - workingDir: /Bin - /Bin/Sam3.exe: + workingDir: "/Bin" + "/Bin/Sam3.exe": - when: - os: windows store: steam - /Bin/Sam3_Unrestricted: + "/Bin/Sam3_Unrestricted": - when: - os: mac store: steam - when: - os: linux store: steam - workingDir: /Bin - /Bin/Sam3_Unrestricted.exe: + workingDir: "/Bin" + "/Bin/Sam3_Unrestricted.exe": - when: - os: windows store: steam @@ -461663,17 +462888,17 @@ Serious Sam 2: id: 41070 Serious Sam 4: files: - /UserData//SeriousSam4: + "/UserData//SeriousSam4": tags: - save when: - os: windows - /userdata//257420/local/SeriousSam4.ini: + "/userdata//257420/local/SeriousSam4.ini": tags: - config when: - store: steam - /userdata//257420/remote: + "/userdata//257420/remote": tags: - save when: @@ -461683,33 +462908,33 @@ Serious Sam 4: installDir: Serious Sam 4: {} launch: - /Bin/x64/Sam4.exe: + "/Bin/x64/Sam4.exe": - when: - bit: 64 os: windows store: steam - /Bin/x64/Sam4_Unrestricted.exe: + "/Bin/x64/Sam4_Unrestricted.exe": - when: - bit: 64 os: windows store: steam steam: id: 257420 -'Serious Sam Classics: Revolution': +"Serious Sam Classics: Revolution": files: - /userdata//227780/local/Controls: + "/userdata//227780/local/Controls": tags: - config when: - os: windows store: steam - /userdata//227780/local/PersistentSymbols.ini: + "/userdata//227780/local/PersistentSymbols.ini": tags: - config when: - os: windows store: steam - /userdata//227780/local/SaveGame: + "/userdata//227780/local/SaveGame": tags: - save when: @@ -461718,7 +462943,7 @@ Serious Sam 4: installDir: Serious Sam Revolution: {} launch: - /Bin/SeriousSam.exe: + "/Bin/SeriousSam.exe": - when: - os: windows store: steam @@ -461728,44 +462953,44 @@ Serious Sam Double D: installDir: SeriousSamDoubleD: {} launch: - /SSLauncher.exe: + "/SSLauncher.exe": - when: - store: steam steam: id: 111600 Serious Sam Fusion 2017: files: - /userdata//564310/local: + "/userdata//564310/local": tags: - config when: - store: steam - /userdata//564310/remote/SavedGames: + "/userdata//564310/remote/SavedGames": tags: - save when: - store: steam id: steamExtra: - - 612560 - - 564323 - - 564324 - 564320 - 564321 - 564322 + - 564323 + - 564324 + - 612560 installDir: Serious Sam Fusion 2017: {} steam: id: 564310 -'Serious Sam HD: The First Encounter': +"Serious Sam HD: The First Encounter": files: - /userdata//41000/local: + "/userdata//41000/local": tags: - config when: - os: windows store: steam - /userdata//41000/local/SeriousSamHD/SavedGames: + "/userdata//41000/local/SeriousSamHD/SavedGames": tags: - save when: @@ -461777,20 +463002,20 @@ Serious Sam Fusion 2017: installDir: Serious Sam HD The First Encounter: {} launch: - /Bin/SamHD.exe: + "/Bin/SamHD.exe": - when: - store: steam steam: id: 41000 -'Serious Sam HD: The Second Encounter': +"Serious Sam HD: The Second Encounter": files: - /userdata//41010/local: + "/userdata//41010/local": tags: - config when: - os: windows store: steam - /userdata//41010/local/SeriousSamHD_TSE/SavedGames: + "/userdata//41010/local/SeriousSamHD_TSE/SavedGames": tags: - save when: @@ -461802,34 +463027,34 @@ Serious Sam Fusion 2017: - 41046 steam: id: 41014 -'Serious Sam VR: The First Encounter': +"Serious Sam VR: The First Encounter": installDir: Serious Sam VR The First Encounter: {} steam: id: 552450 -'Serious Sam VR: The Last Hope': +"Serious Sam VR: The Last Hope": installDir: Serious Sam VR The Last Hope: {} steam: id: 465240 -'Serious Sam VR: The Second Encounter': +"Serious Sam VR: The Second Encounter": installDir: Serious Sam VR The Second Encounter: {} steam: id: 552460 -Serious Sam's Bogus Detour: +"Serious Sam's Bogus Detour": files: - /SSBD.cfg: + "/SSBD.cfg": tags: - config when: - os: linux - /SSBD.exe.cfg: + "/SSBD.exe.cfg": tags: - config when: - os: windows - /saves: + "/saves": tags: - save when: @@ -461840,11 +463065,11 @@ Serious Sam's Bogus Detour: installDir: Serious Sams Bogus Detour: {} launch: - /SSBD: + "/SSBD": - when: - os: linux store: steam - /SSBD.exe: + "/SSBD.exe": - when: - os: windows store: steam @@ -461854,30 +463079,30 @@ Serious Sam's Bogus Detour: store: steam steam: id: 272620 -'Serious Sam: Kamikaze Attack!': +"Serious Sam: Kamikaze Attack!": installDir: Serious Sam Kamikaze Attack: {} launch: - /Serious Sam Kamikaze Attack!.exe: + "/Serious Sam Kamikaze Attack!.exe": - when: - bit: 64 os: windows store: steam registry: - 'HKEY_CURRENT_USER/Software/Devolver Digital/Serious Sam: Kamikaze Attack!': + "HKEY_CURRENT_USER/Software/Devolver Digital/Serious Sam: Kamikaze Attack!": tags: - config - save steam: id: 1623420 -'Serious Sam: Siberian Mayhem': +"Serious Sam: Siberian Mayhem": files: - /userdata//1792250/local/SeriousSamSM.ini: + "/userdata//1792250/local/SeriousSamSM.ini": tags: - config when: - store: steam - /userdata//1792250/remote/SavedGames: + "/userdata//1792250/remote/SavedGames": tags: - save when: @@ -461890,26 +463115,26 @@ Serious Sam's Bogus Detour: installDir: Siberian Mayhem: {} launch: - /Bin/x64/SamSM.exe: + "/Bin/x64/SamSM.exe": - when: - bit: 64 os: windows store: steam - /Bin/x64/SamSM_Unrestricted.exe: + "/Bin/x64/SamSM_Unrestricted.exe": - when: - bit: 64 os: windows store: steam steam: id: 1792250 -'Serious Sam: The First Encounter': +"Serious Sam: The First Encounter": files: - /SaveGame: + "/SaveGame": tags: - save when: - os: windows - /Scripts: + "/Scripts": tags: - config when: @@ -461919,30 +463144,30 @@ Serious Sam's Bogus Detour: installDir: Serious Sam Classic The First Encounter: {} launch: - /Bin/SeriousEditor.exe: + "/Bin/SeriousEditor.exe": - when: - store: steam - /Bin/SeriousModeler.exe: + "/Bin/SeriousModeler.exe": - when: - store: steam - /Bin/SeriousSam.exe: + "/Bin/SeriousSam.exe": - when: - store: steam steam: id: 41050 -'Serious Sam: The Random Encounter': +"Serious Sam: The Random Encounter": files: - /config.txt: + "/config.txt": tags: - config when: - os: windows - /sam*.sav: + "/sam*.sav": tags: - save when: - os: windows - /sam*i.sav: + "/sam*i.sav": tags: - save when: @@ -461950,19 +463175,19 @@ Serious Sam's Bogus Detour: installDir: Serious Sam The Random Encounter: {} launch: - /sstre.exe: + "/sstre.exe": - when: - store: steam steam: id: 201480 -'Serious Sam: The Second Encounter': +"Serious Sam: The Second Encounter": files: - /SaveGame: + "/SaveGame": tags: - save when: - os: windows - /Scripts: + "/Scripts": tags: - config when: @@ -461972,20 +463197,20 @@ Serious Sam's Bogus Detour: installDir: Serious Sam Classic The Second Encounter: {} launch: - /Bin/SeriousEditor.exe: + "/Bin/SeriousEditor.exe": - when: - store: steam - /Bin/SeriousModeler.exe: + "/Bin/SeriousModeler.exe": - when: - store: steam - /Bin/SeriousSam.exe: + "/Bin/SeriousSam.exe": - when: - store: steam steam: id: 41060 -'Serious Sam: Tormental': +"Serious Sam: Tormental": files: - /AppData/LocalLow/Gungrounds/Tormental/lol.sav: + "/AppData/LocalLow/Gungrounds/Tormental/lol.sav": tags: - save when: @@ -461993,7 +463218,7 @@ Serious Sam's Bogus Detour: installDir: Serious Sam Tormental: {} launch: - /Tormental.exe: + "/Tormental.exe": - when: - os: windows store: steam @@ -462007,11 +463232,11 @@ Serious Scramblers: installDir: Serious Scramblers: {} launch: - /SeriousScramblers.app: + "/SeriousScramblers.app": - when: - os: mac store: steam - /SeriousScramblers.exe: + "/SeriousScramblers.exe": - when: - os: windows store: steam @@ -462019,22 +463244,22 @@ Serious Scramblers: id: 1141130 Serment - Contract with a Devil: files: - /game/saves/*.save: + "/game/saves/*.save": tags: - save when: - os: windows - /game/saves/persistent: + "/game/saves/persistent": tags: - config when: - os: windows - /RenPy/SermentFinal/*.save: + "/RenPy/SermentFinal/*.save": tags: - save when: - os: windows - /RenPy/SermentFinal/persistent: + "/RenPy/SermentFinal/persistent": tags: - config when: @@ -462044,15 +463269,15 @@ Serment - Contract with a Devil: installDir: Serment - Contract with a Devil: {} launch: - /Serment.app: + "/Serment.app": - when: - os: mac store: steam - /Serment.exe: + "/Serment.exe": - when: - os: windows store: steam - /Serment.sh: + "/Serment.sh": - when: - os: linux store: steam @@ -462062,11 +463287,11 @@ Serpent Fusion: installDir: Serpent Fusion: {} launch: - /SerpentFusion.app: + "/SerpentFusion.app": - when: - os: mac store: steam - /SerpentFusion.exe: + "/SerpentFusion.exe": - when: - bit: 64 os: windows @@ -462079,21 +463304,24 @@ Serpent in the Staglands: installDir: Serpent in the Staglands: {} launch: - /Serpent in the Staglands.app: + "/Serpent in the Staglands.app": - when: - os: mac store: steam - /Serpent in the Staglands.exe: + "/Serpent in the Staglands.exe": - when: - bit: 32 os: windows store: steam - /Serpent in the Staglands.x86: + - bit: 64 + os: windows + store: steam + "/Serpent in the Staglands.x86": - when: - bit: 32 os: linux store: steam - /Serpent in the Staglands.x86_64: + "/Serpent in the Staglands.x86_64": - when: - bit: 64 os: linux @@ -462104,15 +463332,15 @@ Servant of The People: installDir: For the People: {} launch: - /ForThePeople.app: + "/ForThePeople.app": - when: - os: mac store: steam - /ForThePeople.exe: + "/ForThePeople.exe": - when: - os: windows store: steam - /ForThePeople.sh: + "/ForThePeople.sh": - when: - os: linux store: steam @@ -462122,11 +463350,11 @@ Servo: installDir: Servo: {} launch: - /Servo.app: + "/Servo.app": - when: - os: mac store: steam - /Servo.exe: + "/Servo.exe": - when: - os: windows store: steam @@ -462134,12 +463362,12 @@ Servo: id: 305510 Session: files: - /SessionGame/Saved/Config/WindowsNoEditor: + "/SessionGame/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /SessionGame/Saved/SaveGames: + "/SessionGame/Saved/SaveGames": tags: - save when: @@ -462147,7 +463375,7 @@ Session: installDir: Session: {} launch: - /SessionGame.exe: + "/SessionGame.exe": - when: - os: windows store: steam @@ -462157,11 +463385,11 @@ Session Seven: installDir: Session Seven: {} launch: - /SessionSeven: + "/SessionSeven": - when: - os: linux store: steam - /SessionSeven.exe: + "/SessionSeven.exe": - when: - os: windows store: steam @@ -462171,11 +463399,11 @@ Sethian: installDir: Sethian: {} launch: - /Sethian.app/Contents/MacOS/Sethian: + "/Sethian.app/Contents/MacOS/Sethian": - when: - os: mac store: steam - /Sethian.exe: + "/Sethian.exe": - when: - os: windows store: steam @@ -462188,7 +463416,7 @@ Settled: installDir: Settled: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -462203,7 +463431,7 @@ Settlements: installDir: Settlements: {} launch: - /Settlements.exe: + "/Settlements.exe": - when: - os: windows store: steam @@ -462218,45 +463446,45 @@ Setup Developer Tool 2018: installDir: Setup Developer Tool 2018: {} launch: - /SetupDev2018.exe: + "/SetupDev2018.exe": - when: - os: windows store: steam steam: id: 840690 -'Seul (Alone): The entrée': +"Seul (Alone): The entrée": installDir: Seul (Alone) The entrée: {} launch: - /Seul(Alone).exe: + "/Seul(Alone).exe": - when: - os: windows store: steam steam: id: 856310 -'Seum: Speedrunners from Hell': +"Seum: Speedrunners from Hell": files: - /.config/unity3d/Pine Studio/Seum: + "/.config/unity3d/Pine Studio/Seum": tags: - save when: - os: linux - /AppData/LocalLow/Pine Studio/Seum/SeumData-*.sav: + "/AppData/LocalLow/Pine Studio/Seum/SeumData-*.sav": tags: - save when: - os: windows - /AppData/LocalLow/Pine Studio/Seum/SeumKeybindings-*.bin: + "/AppData/LocalLow/Pine Studio/Seum/SeumKeybindings-*.bin": tags: - config when: - os: windows - /AppData/LocalLow/Pine Studio/Seum/SeumSettings-*.bin: + "/AppData/LocalLow/Pine Studio/Seum/SeumSettings-*.bin": tags: - config when: - os: windows - /userdata//457210/remote: + "/userdata//457210/remote": tags: - save when: @@ -462266,15 +463494,15 @@ Setup Developer Tool 2018: installDir: SEUM Speedrunners from Hell: {} launch: - /Seum: + "/Seum": - when: - os: linux store: steam - /Seum.app: + "/Seum.app": - when: - os: mac store: steam - /Seum.exe: + "/Seum.exe": - when: - os: windows store: steam @@ -462288,7 +463516,7 @@ Seven Boys 2: installDir: seven boys: {} launch: - /sevenboys.exe: + "/sevenboys.exe": - when: - os: windows store: steam @@ -462298,27 +463526,27 @@ Seven Bullets Zombie Apocalypse: installDir: SBZA: {} launch: - /SBZA.exe: + "/SBZA.exe": - when: - store: steam steam: id: 1036900 -'Seven Cities of Gold: Commemorative Edition': +"Seven Cities of Gold: Commemorative Edition": gog: id: 1207664773 Seven Days: files: - /savedata/*.bmp: + "/savedata/*.bmp": tags: - save when: - os: windows - /savedata/*.kep: + "/savedata/*.kep": tags: - save when: - os: windows - /savedata/*.ksd: + "/savedata/*.ksd": tags: - save when: @@ -462326,7 +463554,7 @@ Seven Days: installDir: Seven Days: {} launch: - /Seven Days.eXe: + "/Seven Days.eXe": - when: - store: steam steam: @@ -462337,7 +463565,7 @@ Seven Kingdoms: installDir: Seven Kingdoms Ancient Adversaries: {} launch: - /7k.exe: + "/7k.exe": - when: - os: windows store: steam @@ -462345,12 +463573,12 @@ Seven Kingdoms: id: 450140 Seven Kingdoms 2 HD: files: - /My Games/Seven Kingdoms 2 HD: + "/My Games/Seven Kingdoms 2 HD": tags: - config when: - os: windows - /My Games/Seven Kingdoms 2 HD/SAVE: + "/My Games/Seven Kingdoms 2 HD/SAVE": tags: - save when: @@ -462360,44 +463588,44 @@ Seven Kingdoms 2 HD: installDir: Seven Kingdoms 2 HD: {} launch: - /7K2.EXE: + "/7K2.EXE": - when: - os: windows store: steam steam: id: 338800 -'Seven Kingdoms II: The Fryhtan Wars': +"Seven Kingdoms II: The Fryhtan Wars": files: - /CONFIG.DAT: + "/CONFIG.DAT": tags: - config when: - os: windows - /Save: + "/Save": tags: - save when: - os: windows gog: id: 1207658723 -'Seven Kingdoms: Conquest': +"Seven Kingdoms: Conquest": files: - /Seven Kingdoms Conquest: + "/Seven Kingdoms Conquest": tags: - config when: - os: windows - /Seven Kingdoms Conquest/Saved Games: + "/Seven Kingdoms Conquest/Saved Games": tags: - save when: - os: windows -'Seven Mysteries: The Last Page': +"Seven Mysteries: The Last Page": installDir: Seven Mysteries - The Last Page: {} launch: - /Game.exe: - - arguments: '--in-process-gpu' + "/Game.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam @@ -462407,7 +463635,7 @@ Seven Nations: installDir: Seven Nations: {} launch: - /Seven Nations.exe: + "/Seven Nations.exe": - when: - store: steam steam: @@ -462416,7 +463644,7 @@ Seven Red Lines: installDir: Seven Red Lines: {} launch: - /Seven Red Lines.exe: + "/Seven Red Lines.exe": - when: - bit: 64 os: windows @@ -462427,7 +463655,7 @@ Seven Sacrifices: installDir: Seven Sacrifices: {} launch: - /SevenSacrifices.exe: + "/SevenSacrifices.exe": - when: - os: windows store: steam @@ -462437,11 +463665,11 @@ Seven Seas Solitaire: installDir: Seven Seas Solitaire: {} launch: - /Seven Seas Solitaire.app: + "/Seven Seas Solitaire.app": - when: - os: mac store: steam - /Seven Seas Solitaire.exe: + "/Seven Seas Solitaire.exe": - when: - os: windows store: steam @@ -462454,15 +463682,15 @@ Seven Wonders of St. Clementine: installDir: Seven Wonders of St. Clementine: {} launch: - /7Wonders.app: + "/7Wonders.app": - when: - os: mac store: steam - /7Wonders.exe: + "/7Wonders.exe": - when: - os: windows store: steam - /7Wonders.sh: + "/7Wonders.sh": - when: - os: linux store: steam @@ -462472,23 +463700,23 @@ Seven days with the Ghost: installDir: Seven days with the Ghost: {} launch: - /7days_with_the_Ghost.exe: + "/7days_with_the_Ghost.exe": - when: - os: windows store: steam steam: id: 946460 -'Seven: Reboot': +"Seven: Reboot": steam: id: 654200 -'Seven: The Days Long Gone': +"Seven: The Days Long Gone": files: - /Seven/Saved/Config/WindowsNoEditor: + "/Seven/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /Seven/Saved/SaveGames: + "/Seven/Saved/SaveGames": tags: - save when: @@ -462498,7 +463726,7 @@ Seven days with the Ghost: installDir: Seven The Days Long Gone: {} launch: - /Seven.exe: + "/Seven.exe": - when: - bit: 64 os: windows @@ -462509,11 +463737,11 @@ Seventh Circle: installDir: Seventh Circle: {} launch: - /Seventh Circle.app: + "/Seventh Circle.app": - when: - os: mac store: steam - /Seventh Circle.exe: + "/Seventh Circle.exe": - when: - os: windows store: steam @@ -462521,7 +463749,7 @@ Seventh Circle: id: 1030950 Severed Steel: files: - /ThankYouVeryCool/Saved/SaveGames: + "/ThankYouVeryCool/Saved/SaveGames": tags: - save when: @@ -462538,12 +463766,12 @@ Severed Steel: installDir: SeveredSteel: {} launch: - /SeveredSteel.exe: - - arguments: '-noraytracing -d3d12' + "/SeveredSteel.exe": + - arguments: "-noraytracing -d3d12" when: - os: windows store: steam - - arguments: '-dx12' + - arguments: "-dx12" when: - os: windows store: steam @@ -462556,7 +463784,7 @@ Sevgilim Olur Musun?: installDir: Sevgilim: {} launch: - /sevgilim.exe: + "/sevgilim.exe": - when: - os: windows store: steam @@ -462566,7 +463794,7 @@ Sex & Gun PC: installDir: Sex & Gun PC: {} launch: - /SnG.exe: + "/SnG.exe": - when: - os: windows store: steam @@ -462576,7 +463804,7 @@ Sex Adventure - The Board Game: installDir: Sex Adventure: {} launch: - /SexAdventure.exe: + "/SexAdventure.exe": - when: - os: windows store: steam @@ -462586,7 +463814,7 @@ Sex City: installDir: Sex City: {} launch: - /Sex City.exe: + "/Sex City.exe": - when: - store: steam steam: @@ -462595,7 +463823,7 @@ Sex Diary - Futanari Jail: installDir: Sex Diary - Futanari Jail: {} launch: - /SexDiary - FUTANARI JAIL.exe: + "/SexDiary - FUTANARI JAIL.exe": - when: - os: windows store: steam @@ -462608,19 +463836,19 @@ Sex Search: installDir: Sex Search: {} launch: - /Sex Search.exe: + "/Sex Search.exe": - when: - store: steam steam: id: 1914680 Sex with Devil: files: - /SexWithDevil/Saved/Config/WindowsNoEditor: + "/SexWithDevil/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /SexWithDevil/Saved/SaveGames: + "/SexWithDevil/Saved/SaveGames": tags: - save when: @@ -462628,7 +463856,7 @@ Sex with Devil: installDir: Sex with The Devil: {} launch: - /SexWithDevil.exe: + "/SexWithDevil.exe": - when: - bit: 64 os: windows @@ -462639,7 +463867,7 @@ Sex with Hitler: installDir: SEX with HITLER: {} launch: - /Build/SexWithHitler.exe: + "/Build/SexWithHitler.exe": - when: - os: windows store: steam @@ -462649,7 +463877,7 @@ Sex with Hitler 2: installDir: SEX with HITLER 2: {} launch: - /SexWithHitlerFutanari.exe: + "/SexWithHitlerFutanari.exe": - when: - store: steam steam: @@ -462658,19 +463886,19 @@ Sex with Stalin: installDir: Sex with Stalin: {} launch: - /SexWithStalin.exe: + "/SexWithStalin.exe": - when: - store: steam steam: id: 1085750 Sexbot Quality Assurance Simulator: files: - /SexBotQA_Assets/Saved/Config/WindowsNoEditor: + "/SexBotQA_Assets/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /SexBotQA_Assets/Saved/SaveGames: + "/SexBotQA_Assets/Saved/SaveGames": tags: - save when: @@ -462678,7 +463906,7 @@ Sexbot Quality Assurance Simulator: installDir: Sexbot Quality Assurance Simulator: {} launch: - /SexBotQA_Assets.exe: + "/SexBotQA_Assets.exe": - when: - bit: 64 os: windows @@ -462689,8 +463917,8 @@ Sextris Effect: installDir: SextrisEffect: {} launch: - /Sextris Effect.exe: - - arguments: '-novr' + "/Sextris Effect.exe": + - arguments: "-novr" when: - bit: 64 os: windows @@ -462704,7 +463932,7 @@ Sexy Airlines: installDir: SexyAirlines: {} launch: - /SexyAirlines.exe: + "/SexyAirlines.exe": - when: - os: windows store: steam @@ -462714,20 +463942,20 @@ Sexy Breakout: installDir: Sexy Breakout: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam steam: id: 1048270 -'Sexy Comedy: It Was a Mistake': +"Sexy Comedy: It Was a Mistake": steam: id: 943860 Sexy Girls Puzzle: installDir: Sexy Girls Puzzle: {} launch: - /Sexy Girls Puzzle.exe: + "/Sexy Girls Puzzle.exe": - when: - os: windows store: steam @@ -462737,7 +463965,7 @@ Sexy Heroine! Part 2: installDir: Sexy Heroine! Part 2: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: @@ -462746,7 +463974,7 @@ Sexy Jigsaw / Sexy Puzzle: installDir: Sexy Jigsaw: {} launch: - /Sexy Jigsaw.exe: + "/Sexy Jigsaw.exe": - when: - os: windows store: steam @@ -462766,7 +463994,7 @@ Sexy Serial Killer: installDir: Sexy Serial Killer: {} launch: - /ssk.exe: + "/ssk.exe": - when: - os: windows store: steam @@ -462776,7 +464004,7 @@ Sexy Space Airlines: installDir: SexySpaceAirlines: {} launch: - /SexySpaceAirlines.exe: + "/SexySpaceAirlines.exe": - when: - os: windows store: steam @@ -462786,7 +464014,7 @@ SexyHub ❤️: installDir: SexyHub: {} launch: - /White Liquid.exe: + "/White Liquid.exe": - when: - os: windows store: steam @@ -462794,34 +464022,34 @@ SexyHub ❤️: id: 1063800 Sfinx: files: - /*.SVG: + "/*.SVG": tags: - save when: - os: dos - /CGE.CFG: + "/CGE.CFG": tags: - config when: - os: dos -Shad'O: +"Shad'O": installDir: ShadO: {} launch: - /shado.exe: + "/shado.exe": - when: - os: windows store: steam steam: id: 215770 -'Shade: Wrath of Angels': +"Shade: Wrath of Angels": files: - /save: + "/save": tags: - save when: - os: windows - /settings.cfg: + "/settings.cfg": tags: - config when: @@ -462830,7 +464058,7 @@ Shades Of Heroes: installDir: SOH: {} launch: - /SOH_MAC.app: + "/SOH_MAC.app": - when: - os: mac store: steam @@ -462840,19 +464068,19 @@ Shades of Black: installDir: Shades of Black: {} launch: - /OptionLauncher.exe: + "/OptionLauncher.exe": - when: - os: windows store: steam - /Shades of Black.app: + "/Shades of Black.app": - when: - os: mac store: steam steam: id: 340370 -'Shadow Blade: Reload': +"Shadow Blade: Reload": files: - /userdata//272330: + "/userdata//272330": tags: - save when: @@ -462861,15 +464089,15 @@ Shades of Black: installDir: ShadowBlade: {} launch: - /ShadowBladeReload.app: + "/ShadowBladeReload.app": - when: - os: mac store: steam - /shadowblade.exe: + "/shadowblade.exe": - when: - os: windows store: steam - /shadowbladelinux.x86: + "/shadowbladelinux.x86": - when: - os: linux store: steam @@ -462888,11 +464116,11 @@ Shadow Brawlers: installDir: Shadow Brawlers: {} launch: - /sb.exe: + "/sb.exe": - when: - os: windows store: steam - /sb.x86_64: + "/sb.x86_64": - when: - os: linux store: steam @@ -462902,11 +464130,11 @@ Shadow Bug: installDir: Shadow Bug: {} launch: - /shadowbug.app: + "/shadowbug.app": - when: - os: mac store: steam - /shadowbug.exe: + "/shadowbug.exe": - when: - os: windows store: steam @@ -462922,9 +464150,9 @@ Shadow Circuit: Shadow Circuit: {} steam: id: 595470 -'Shadow Company: Left For Dead': +"Shadow Company: Left For Dead": files: - /save: + "/save": tags: - save when: @@ -462935,18 +464163,18 @@ Shadow Circuit: - config Shadow Complex Remastered: files: - /userdata//385560/remote: + "/userdata//385560/remote": tags: - config - save when: - store: steam - /My Games/Shadow Complex/EmpireGame/: + "/My Games/Shadow Complex/EmpireGame/": tags: - save when: - os: windows - /My Games/Shadow Complex/EmpireGame/Config: + "/My Games/Shadow Complex/EmpireGame/Config": tags: - config when: @@ -462954,11 +464182,11 @@ Shadow Complex Remastered: installDir: Shadow Complex Remastered: {} launch: - /Binaries/Win32/ShadowComplex-Win32.exe: + "/Binaries/Win32/ShadowComplex-Win32.exe": - when: - os: windows store: steam - /Shadow Complex Remastered.app/Contents/MacOS/ShadowComplexRemastered: + "/Shadow Complex Remastered.app/Contents/MacOS/ShadowComplexRemastered": - when: - os: mac store: steam @@ -462967,38 +464195,38 @@ Shadow Complex Remastered: Shadow Corps: steam: id: 409790 -'Shadow Council: The Puppeteers': +"Shadow Council: The Puppeteers": installDir: Shadow Council - The Puppeteers: {} launch: - /Shadow Council - The Puppeteers.app/Contents/MacOS/Shadow Council - The Puppeteers: + "/Shadow Council - The Puppeteers.app/Contents/MacOS/Shadow Council - The Puppeteers": - when: - os: mac store: steam - /Shadow Council - The Puppeteers.exe: + "/Shadow Council - The Puppeteers.exe": - when: - os: windows store: steam steam: id: 867610 -'Shadow Dancer: The Secret of Shinobi': +"Shadow Dancer: The Secret of Shinobi": files: - /SEGA Genesis Classics/0006: + "/SEGA Genesis Classics/0006": tags: - save when: - os: windows - /SEGA Genesis Classics/setup.dat: + "/SEGA Genesis Classics/setup.dat": tags: - config when: - os: windows - /SEGA Mega Drive Classics/0006: + "/SEGA Mega Drive Classics/0006": tags: - save when: - os: windows - /SEGA Mega Drive Classics/setup.dat: + "/SEGA Mega Drive Classics/setup.dat": tags: - config when: @@ -463011,7 +464239,7 @@ Shadow Empire: installDir: Shadow Empire: {} launch: - /Launcher.exe: + "/Launcher.exe": - when: - store: steam steam: @@ -463020,7 +464248,7 @@ Shadow Fear Path to Insanity: installDir: Shadow Fear Path to Insanity: {} launch: - /Shadow Fear Path to Insanity.exe: + "/Shadow Fear Path to Insanity.exe": - when: - os: windows store: steam @@ -463030,11 +464258,11 @@ Shadow Fencer Theatre: installDir: Shadow Fencer Theatre: {} launch: - /Shadow Fencer Theatre.app: + "/Shadow Fencer Theatre.app": - when: - os: mac store: steam - /Shadow Fencer Theatre.exe: + "/Shadow Fencer Theatre.exe": - when: - os: windows store: steam @@ -463043,24 +464271,26 @@ Shadow Fencer Theatre: Shadow Force: steam: id: 883750 -'Shadow Gambit: The Cursed Crew': +"Shadow Gambit: The Cursed Crew": files: - /AppData/Local/ShadowGambit_TCC/user_gog: - tags: - - config - when: - - store: gog - /AppData/Local/ShadowGambit_TCC/user_gog/gameState_00: - tags: - - save - when: - - store: gog - /AppData/Local/ShadowGambit_TCC/user_steam_xxxx: + "/AppData/Local/ShadowGambit_TCC/user_gog": tags: - config when: - os: windows - /AppData/Local/ShadowGambit_TCC/user_steam_xxxx/gameState_00: + store: gog + "/AppData/Local/ShadowGambit_TCC/user_gog/gameState_00": + tags: + - save + when: + - os: windows + store: gog + "/AppData/Local/ShadowGambit_TCC/user_steam_xxxx": + tags: + - config + when: + - os: windows + "/AppData/Local/ShadowGambit_TCC/user_steam_xxxx/gameState_00": tags: - save when: @@ -463069,10 +464299,10 @@ Shadow Force: id: 1889957442 id: gogExtra: - - 1377746485 - - 1346961749 - - 1881940917 - 1302728148 + - 1346961749 + - 1377746485 + - 1881940917 steamExtra: - 2369210 - 2504700 @@ -463080,8 +464310,8 @@ Shadow Force: installDir: Shadow Gambit The Cursed Crew: {} launch: - /ShadowGambit_TCC.exe: - - arguments: '-mimimi' + "/ShadowGambit_TCC.exe": + - arguments: "-mimimi" when: - os: windows store: steam @@ -463091,25 +464321,25 @@ Shadow Gangs: installDir: Shadow Gangs: {} launch: - /sg.exe: + "/sg.exe": - when: - os: windows store: steam steam: id: 1143430 -'Shadow Harvest: Phantom Ops': +"Shadow Harvest: Phantom Ops": files: - /Shadow Harvest/Controls.ini: + "/Shadow Harvest/Controls.ini": tags: - config when: - os: windows - /Shadow Harvest/SavedGames: + "/Shadow Harvest/SavedGames": tags: - save when: - os: windows - /Shadow Harvest/Shadow Harvest.ini: + "/Shadow Harvest/Shadow Harvest.ini": tags: - config when: @@ -463117,16 +464347,16 @@ Shadow Gangs: installDir: Shadow Harvest: {} launch: - /sh.exe: + "/sh.exe": - when: - store: steam steam: id: 92700 -'Shadow Heroes: Vengeance In Flames': +"Shadow Heroes: Vengeance In Flames": installDir: Shadow Heroes Vengeance In Flames: {} launch: - /ShadowHeroes.exe: + "/ShadowHeroes.exe": - when: - os: windows store: steam @@ -463136,7 +464366,7 @@ Shadow Hunter: installDir: Shadow Hunter: {} launch: - /shadowhunter.exe: + "/shadowhunter.exe": - when: - os: windows store: steam @@ -463156,12 +464386,12 @@ Shadow Madness: id: 1257940 Shadow Man: files: - /Grafix.Cfg: + "/Grafix.Cfg": tags: - config when: - os: windows - /Saves: + "/Saves": tags: - save when: @@ -463171,15 +464401,15 @@ Shadow Man: installDir: ShadowMan: {} launch: - /D3DConfigUtility.exe: + "/D3DConfigUtility.exe": - when: - os: windows store: steam - /Shadow Man.app: + "/Shadow Man.app": - when: - os: mac store: steam - /Shadowman.exe: + "/Shadowman.exe": - when: - os: windows store: steam @@ -463187,12 +464417,12 @@ Shadow Man: id: 251770 Shadow Man Remastered: files: - /Saved Games/Nightdive Studios/Shadowman EX/kexengine.cfg: + "/Saved Games/Nightdive Studios/Shadowman EX/kexengine.cfg": tags: - config when: - os: windows - /Saved Games/Nightdive Studios/Shadowman EX/saves: + "/Saved Games/Nightdive Studios/Shadowman EX/saves": tags: - save when: @@ -463202,7 +464432,7 @@ Shadow Man Remastered: installDir: Shadow Man Remastered: {} launch: - /thoth_x64.exe: + "/thoth_x64.exe": - when: - bit: 64 os: windows @@ -463213,43 +464443,43 @@ Shadow Mist: installDir: Shadow Mist: {} launch: - /ShadowMist.app: + "/ShadowMist.app": - when: - os: mac store: steam - /ShadowMist.exe: + "/ShadowMist.exe": - when: - os: windows store: steam steam: id: 617630 -'Shadow Ninja: Apocalypse': +"Shadow Ninja: Apocalypse": installDir: Shadow Ninja Apocalypse: {} launch: - /PTPlayer.exe: + "/PTPlayer.exe": - when: - os: windows store: steam - /Shadow Ninja Apocalypse.app/Contents/MacOS/PTPlayer: + "/Shadow Ninja Apocalypse.app/Contents/MacOS/PTPlayer": - when: - os: mac store: steam steam: id: 389160 -'Shadow Ops: Red Mercury': +"Shadow Ops: Red Mercury": files: - /Saves: + "/Saves": tags: - save when: - os: windows - /System: + "/System": tags: - config when: - os: windows - /Shadow Ops Profiles/: + "/Shadow Ops Profiles/": tags: - config when: @@ -463259,11 +464489,11 @@ Shadow Mist: installDir: Shadow Ops Red Mercury: {} launch: - /System/RM.exe: + "/System/RM.exe": - when: - os: windows store: steam - workingDir: /System + workingDir: "/System" steam: id: 286770 Shadow Over Isolation: @@ -463273,7 +464503,7 @@ Shadow Play: installDir: Shadow Play: {} launch: - /Shadow Play.exe: + "/Shadow Play.exe": - when: - os: windows store: steam @@ -463283,7 +464513,7 @@ Shadow Puppeteer: installDir: Shadow Puppeteer: {} launch: - /ShadowPuppeteer.exe: + "/ShadowPuppeteer.exe": - when: - os: windows store: steam @@ -463300,7 +464530,7 @@ Shadow Runner: installDir: Shadow Runner: {} launch: - /ShadowRunner.exe: + "/ShadowRunner.exe": - when: - os: windows store: steam @@ -463308,12 +464538,12 @@ Shadow Runner: id: 1046110 Shadow Sorcerer: files: - /SAVEGAME.DIR: + "/SAVEGAME.DIR": tags: - save when: - os: dos - /SAVEGAME._*_: + "/SAVEGAME._*_": tags: - save when: @@ -463323,39 +464553,39 @@ Shadow Sorcerer: installDir: Shadow Sorcerer: {} launch: - /Launcher/Launcher.exe: + "/Launcher/Launcher.exe": - when: - store: steam steam: id: 2344020 -'Shadow Tactics: Blades of the Shogun': +"Shadow Tactics: Blades of the Shogun": files: - /Library/Application Support/Daedalic Entertainment GmbH/: + "/Library/Application Support/Daedalic Entertainment GmbH/": tags: - config when: - os: mac - /Library/Application Support/Daedalic Entertainment GmbH//gameState_00: + "/Library/Application Support/Daedalic Entertainment GmbH//gameState_00": tags: - save when: - os: mac - /Daedalic Entertainment GmbH/Shadow Tactics Blades of the Shogun/: + "/Daedalic Entertainment GmbH/Shadow Tactics Blades of the Shogun/": tags: - config when: - os: windows - /Daedalic Entertainment GmbH/Shadow Tactics Blades of the Shogun//gameState_00: + "/Daedalic Entertainment GmbH/Shadow Tactics Blades of the Shogun//gameState_00": tags: - save when: - os: windows - /Daedalic Entertainment GmbH/Shadow Tactics Blades of the Shogun/: + "/Daedalic Entertainment GmbH/Shadow Tactics Blades of the Shogun/": tags: - config when: - os: linux - /Daedalic Entertainment GmbH/Shadow Tactics Blades of the Shogun//gameState_00: + "/Daedalic Entertainment GmbH/Shadow Tactics Blades of the Shogun//gameState_00": tags: - save when: @@ -463364,46 +464594,46 @@ Shadow Sorcerer: id: 1601442230 id: gogExtra: - - 1146045354 - 1120436601 + - 1146045354 - 1419503362 steamExtra: - 547490 installDir: Shadow Tactics: {} launch: - /Shadow Tactics: + "/Shadow Tactics": - when: - os: linux store: steam - /Shadow Tactics.app: + "/Shadow Tactics.app": - when: - os: mac store: steam - /Shadow Tactics.exe: + "/Shadow Tactics.exe": - when: - os: windows store: steam steam: id: 418240 -'Shadow Tactics: Blades of the Shogun - Aiko''s Choice': +"Shadow Tactics: Blades of the Shogun - Aiko's Choice": files: - /Daedalic Entertainment GmbH/Shadow Tactics Blades of the Shogun Aikos Choice/user: + "/Daedalic Entertainment GmbH/Shadow Tactics Blades of the Shogun Aikos Choice/user": tags: - config when: - os: windows - /Daedalic Entertainment GmbH/Shadow Tactics Blades of the Shogun Aikos Choice/user/gameState_00: + "/Daedalic Entertainment GmbH/Shadow Tactics Blades of the Shogun Aikos Choice/user/gameState_00": tags: - save when: - os: windows - /.local/share/Daedalic Entertainment GmbH/Shadow Tactics Blades of the Shogun Aikos Choice/user: + "/.local/share/Daedalic Entertainment GmbH/Shadow Tactics Blades of the Shogun Aikos Choice/user": tags: - config when: - os: linux - /.local/share/Daedalic Entertainment GmbH/Shadow Tactics Blades of the Shogun Aikos Choice/user/gameState_00: + "/.local/share/Daedalic Entertainment GmbH/Shadow Tactics Blades of the Shogun Aikos Choice/user/gameState_00": tags: - save when: @@ -463411,13 +464641,13 @@ Shadow Sorcerer: gog: id: 1468528987 installDir: - Shadow Tactics - Aiko's Choice: {} + "Shadow Tactics - Aiko's Choice": {} launch: - /Shadow Tactics: + "/Shadow Tactics": - when: - os: linux store: steam - /Shadow Tactics.exe: + "/Shadow Tactics.exe": - when: - os: windows store: steam @@ -463433,12 +464663,12 @@ Shadow Uprising: id: 987000 Shadow Warrior (1997): files: - /GAME*.SAV: + "/GAME*.SAV": tags: - save when: - os: dos - /SW.CFG: + "/SW.CFG": tags: - config when: @@ -463451,55 +464681,55 @@ Shadow Warrior (1997): installDir: Shadow Warrior Original: {} launch: - /bin/DOSBox.app/Contents/MacOS/DOSBox: - - arguments: '-conf dosbox_swarrior.conf -conf dosbox_swarrior_single.conf -noconsole -c exit' + "/bin/DOSBox.app/Contents/MacOS/DOSBox": + - arguments: "-conf dosbox_swarrior.conf -conf dosbox_swarrior_single.conf -noconsole -c exit" when: - os: mac store: steam - workingDir: /gameroot - /bin/DOSBox.exe: - - arguments: '-conf dosbox_swarrior.conf -conf dosbox_swarrior_single.conf -noconsole -c exit' + workingDir: "/gameroot" + "/bin/DOSBox.exe": + - arguments: "-conf dosbox_swarrior.conf -conf dosbox_swarrior_single.conf -noconsole -c exit" when: - os: windows store: steam - workingDir: /gameroot + workingDir: "/gameroot" steam: id: 238070 Shadow Warrior (2013): files: - /Library/Application Support/Flying Wild Hog/Shadow Warrior: + "/Library/Application Support/Flying Wild Hog/Shadow Warrior": tags: - config when: - os: mac - /userdata//233130: + "/userdata//233130": tags: - save when: - store: steam - /Shadow Warrior DX11/profiles: + "/Shadow Warrior DX11/profiles": tags: - config - save when: - os: windows - /Shadow Warrior DX11/profiles.cfg: + "/Shadow Warrior DX11/profiles.cfg": tags: - config when: - os: windows - /Shadow Warrior/profiles: + "/Shadow Warrior/profiles": tags: - config - save when: - os: windows - /Shadow Warrior/profiles.cfg: + "/Shadow Warrior/profiles.cfg": tags: - config when: - os: windows - /Flying Wild Hog/Shadow Warrior: + "/Flying Wild Hog/Shadow Warrior": tags: - config - save @@ -463509,38 +464739,38 @@ Shadow Warrior (2013): id: 1207659573 id: gogExtra: - - 1430392753 - 1429878383 + - 1430392753 installDir: Shadow Warrior: {} launch: - /RunGameNoSteamRT.sh: + "/RunGameNoSteamRT.sh": - when: - os: linux store: steam - /ShadowWarrior.app: + "/ShadowWarrior.app": - when: - os: mac store: steam - /ShadowWarrior.bin.x86: + "/ShadowWarrior.bin.x86": - when: - os: linux store: steam - /dx11//launcher.exe: + "/dx11//launcher.exe": - when: - os: windows store: steam - workingDir: /dx11 - - arguments: '-safe' + workingDir: "/dx11" + - arguments: "-safe" when: - os: windows store: steam - workingDir: /dx11 - /sw.exe: + workingDir: "/dx11" + "/sw.exe": - when: - os: windows store: steam - - arguments: '-safe' + - arguments: "-safe" when: - os: windows store: steam @@ -463548,14 +464778,14 @@ Shadow Warrior (2013): id: 233130 Shadow Warrior 2: files: - /Saved Games/Flying Wild Hog/Shadow Warrior 2/profiles: + "/Saved Games/Flying Wild Hog/Shadow Warrior 2/profiles": tags: - save when: - os: windows - os: windows store: microsoft - /Saved Games/Flying Wild Hog/Shadow Warrior 2/profiles//config.cfg: + "/Saved Games/Flying Wild Hog/Shadow Warrior 2/profiles//config.cfg": tags: - config when: @@ -463571,7 +464801,7 @@ Shadow Warrior 2: installDir: Shadow Warrior 2: {} launch: - /ShadowWarrior2.exe: + "/ShadowWarrior2.exe": - when: - bit: 64 os: windows @@ -463580,24 +464810,24 @@ Shadow Warrior 2: id: 324800 Shadow Warrior 3: files: - /Packages/DevolverDigital.ShadowWarrior3Win10_6kzv4j18v0c96/SystemAppData/wgs: + "/Packages/DevolverDigital.ShadowWarrior3Win10_6kzv4j18v0c96/SystemAppData/wgs": tags: - save when: - os: windows store: microsoft - /SW3/Saved/Config/WinGDK: + "/SW3/Saved/Config/WinGDK": tags: - config when: - os: windows store: microsoft - /SW3/Saved/Config/WindowsNoEditor: + "/SW3/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /SW3/Saved/SaveGames: + "/SW3/Saved/SaveGames": tags: - save when: @@ -463607,7 +464837,7 @@ Shadow Warrior 3: installDir: Shadow Warrior 3: {} launch: - /SW3.exe: + "/SW3.exe": - when: - bit: 64 os: windows @@ -463616,23 +464846,23 @@ Shadow Warrior 3: id: 1036890 Shadow Warrior Classic Redux: files: - /*.sav: + "/*.sav": tags: - save when: - store: gog - /gameroot/game0_#.sav: + "/gameroot/game0_#.sav": tags: - save when: - os: windows - /gameroot/sw-redux-local.cfg: + "/gameroot/sw-redux-local.cfg": tags: - config when: - os: windows - os: linux - /gameroot/sw-redux.cfg: + "/gameroot/sw-redux.cfg": tags: - config when: @@ -463643,114 +464873,122 @@ Shadow Warrior Classic Redux: installDir: Shadow Warrior Classic: {} launch: - /bin/build.exe: + "/bin/build.exe": - when: - os: windows store: steam - workingDir: /gameroot - /bin/build_linux.sh: + workingDir: "/gameroot" + "/bin/build_linux.sh": - when: - os: linux store: steam - workingDir: /gameroot - /bin/build_mac.sh: + workingDir: "/gameroot" + "/bin/build_mac.sh": - when: - os: mac store: steam - workingDir: /gameroot - /bin/dosbox/dosbox.exe: - - arguments: '-conf dosbox_swarrior.conf -conf dosbox_swarrior_single.conf -noconsole -c exit' + workingDir: "/gameroot" + "/bin/dosbox/dosbox.exe": + - arguments: "-conf dosbox_swarrior.conf -conf dosbox_swarrior_single.conf -noconsole -c exit" when: - os: windows store: steam - workingDir: /gameroot/classic - /bin/sw.exe: + workingDir: "/gameroot/classic" + "/bin/sw.exe": - when: - os: windows store: steam - workingDir: /gameroot - - arguments: '-addon1' + workingDir: "/gameroot" + - arguments: "-addon1" when: - os: windows store: steam - workingDir: /gameroot - - arguments: '-addon2' + workingDir: "/gameroot" + - arguments: "-addon2" when: - os: windows store: steam - workingDir: /gameroot - /bin/sw.sh: + workingDir: "/gameroot" + "/bin/sw.sh": - when: - os: mac store: steam - workingDir: /gameroot - - arguments: '-addon1' + - os: linux + store: steam + workingDir: "/gameroot" + - arguments: "-addon1" when: - os: mac store: steam - workingDir: /gameroot - - arguments: '-addon2' + - os: linux + store: steam + workingDir: "/gameroot" + - arguments: "-addon2" when: - os: mac store: steam - workingDir: /gameroot - /bin/sw_dosbox.sh: - - arguments: '-conf dosbox_swarrior.conf -conf dosbox_swarrior_single.conf -noconsole -c exit' + - os: linux + store: steam + workingDir: "/gameroot" + "/bin/sw_dosbox.sh": + - arguments: "-conf dosbox_swarrior.conf -conf dosbox_swarrior_single.conf -noconsole -c exit" when: - os: mac store: steam - workingDir: /gameroot/classic + - os: linux + store: steam + workingDir: "/gameroot/classic" steam: id: 225160 Shadow Watch: files: - /cfg/*.txt: + "/cfg/*.txt": tags: - config when: - os: windows - /save: + "/save": tags: - save when: - os: windows gog: id: 1438597383 -'Shadow Wolf Mysteries: Bane of the Family': +"Shadow Wolf Mysteries: Bane of the Family": installDir: - Shadow Wolf Mysteries Bane of the Family Collector's Edition: {} + "Shadow Wolf Mysteries Bane of the Family Collector's Edition": {} launch: - /ShadowWolfMysteries_BaneoftheFamilyCE.exe: + "/ShadowWolfMysteries_BaneoftheFamilyCE.exe": - when: - os: windows store: steam steam: id: 758620 -'Shadow Wolf Mysteries: Curse of the Full Moon': +"Shadow Wolf Mysteries: Curse of the Full Moon": installDir: - Shadow Wolf Mysteries Curse of the Full Moon Collector's Edition: {} + "Shadow Wolf Mysteries Curse of the Full Moon Collector's Edition": {} launch: - /Shadow Wolf Mysteries.exe: + "/Shadow Wolf Mysteries.exe": - when: - os: windows store: steam steam: id: 626840 -'Shadow Wolf Mysteries: Cursed Wedding': +"Shadow Wolf Mysteries: Cursed Wedding": installDir: - Shadow Wolf Mysteries Cursed Wedding Collector's Edition: {} + "Shadow Wolf Mysteries Cursed Wedding Collector's Edition": {} launch: - /ShadowWolfMysteries_CursedWedding_CE.exe: + "/ShadowWolfMysteries_CursedWedding_CE.exe": - when: - os: windows store: steam steam: id: 838750 -'Shadow Wolf Mysteries: Under the Crimson Moon': +"Shadow Wolf Mysteries: Under the Crimson Moon": installDir: - Shadow Wolf Mysteries Under the Crimson Moon Collector's Edition: {} + "Shadow Wolf Mysteries Under the Crimson Moon Collector's Edition": {} launch: - /ShadowWolfMysteries_UnderTheCrimsonMoonCE.exe: + "/ShadowWolfMysteries_UnderTheCrimsonMoonCE.exe": - when: - os: windows store: steam @@ -463761,7 +464999,7 @@ Shadow of Conquest: id: 603240 Shadow of Destiny: files: - /works/conv/SaveData: + "/works/conv/SaveData": tags: - config - save @@ -463771,7 +465009,7 @@ Shadow of Egypt: installDir: Shadow of Egypt: {} launch: - /Shadow of Egypt.exe: + "/Shadow of Egypt.exe": - when: - os: windows store: steam @@ -463781,7 +465019,7 @@ Shadow of Kingdoms: installDir: Shadow of Kingdoms: {} launch: - /ShadowOfKingdoms.exe: + "/ShadowOfKingdoms.exe": - when: - os: windows store: steam @@ -463791,7 +465029,7 @@ Shadow of Loot Box: installDir: Shadow of LootBox: {} launch: - /ShadowOfLootBox.exe: + "/ShadowOfLootBox.exe": - when: - os: windows store: steam @@ -463801,7 +465039,7 @@ Shadow of Nebula: installDir: Shadow Of Nebula: {} launch: - /shadow_of_nebula.exe: + "/shadow_of_nebula.exe": - when: - os: windows store: steam @@ -463811,7 +465049,7 @@ Shadow of Something: installDir: Shadow of Something: {} launch: - /sos.exe: + "/sos.exe": - when: - store: steam steam: @@ -463820,7 +465058,7 @@ Shadow of the Black Dragon: installDir: Shadow of the Black Dragon: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -463840,27 +465078,27 @@ Shadow of the Road: id: 1173980 Shadow of the Tomb Raider: files: - /Library/Application Support/Feral Interactive/Shadow of the Tomb Raider: + "/Library/Application Support/Feral Interactive/Shadow of the Tomb Raider": tags: - config when: - os: mac - /Shadow of the Tomb Raider/: + "/Shadow of the Tomb Raider/": tags: - save when: - os: windows - /feral-interactive/Shadow of the Tomb Raider/SaveData//profile.dat: + "/feral-interactive/Shadow of the Tomb Raider/SaveData//profile.dat": tags: - config when: - os: linux - /feral-interactive/Shadow of the Tomb Raider/SaveData//save*.dat: + "/feral-interactive/Shadow of the Tomb Raider/SaveData//save*.dat": tags: - save when: - os: linux - /feral-interactive/Shadow of the Tomb Raider/preferences: + "/feral-interactive/Shadow of the Tomb Raider/preferences": tags: - config when: @@ -463868,16 +465106,16 @@ Shadow of the Tomb Raider: installDir: Shadow of the Tomb Raider: {} launch: - /SOTTR.exe: + "/SOTTR.exe": - when: - bit: 64 os: windows store: steam - /Shadow of the Tomb Raider.app: + "/Shadow of the Tomb Raider.app": - when: - os: mac store: steam - /ShadowOfTheTombRaider.sh: + "/ShadowOfTheTombRaider.sh": - when: - bit: 64 os: linux @@ -463888,11 +465126,11 @@ Shadow of the Tomb Raider: - config steam: id: 750920 -'Shadow: Treachery Cannot Be Tolerated': +"Shadow: Treachery Cannot Be Tolerated": installDir: Shadow Treachery cannot be tolerated: {} launch: - /episode1.exe: + "/episode1.exe": - when: - os: windows store: steam @@ -463902,11 +465140,11 @@ ShadowCalls: installDir: shadowcalls: {} launch: - /shadowcalls.exe: + "/shadowcalls.exe": - when: - bit: 32 store: steam - /shadowcalls_x64.exe: + "/shadowcalls_x64.exe": - when: - bit: 64 store: steam @@ -463914,27 +465152,27 @@ ShadowCalls: id: 680500 ShadowCaster: files: - /DRIVERS.CFG: + "/DRIVERS.CFG": tags: - config when: - os: dos - /S1: + "/S1": tags: - save when: - os: dos - /S2: + "/S2": tags: - save when: - os: dos - /S3: + "/S3": tags: - save when: - os: dos - /S4: + "/S4": tags: - save when: @@ -463946,7 +465184,7 @@ ShadowSide: installDir: ShadowSide: {} launch: - /bin/win_x64/Shadowside.exe: + "/bin/win_x64/Shadowside.exe": - when: - os: windows store: steam @@ -463956,7 +465194,7 @@ Shadowcrawl: installDir: Shadowcrawl: {} launch: - /Shadowcrawl Beta Windows.exe: + "/Shadowcrawl Beta Windows.exe": - when: - os: windows store: steam @@ -463966,11 +465204,11 @@ Shadowcrypt: installDir: Shadowcrypt: {} launch: - /Shadowcrypt.app: + "/Shadowcrypt.app": - when: - os: mac store: steam - /Shadowcrypt.exe: + "/Shadowcrypt.exe": - when: - os: windows store: steam @@ -463978,7 +465216,7 @@ Shadowcrypt: id: 316810 Shadowgate: files: - /zojoi: + "/zojoi": tags: - config - save @@ -463987,15 +465225,15 @@ Shadowgate: installDir: Shadowgate MacVenture Series: {} launch: - /Shadowgate.app: + "/Shadowgate.app": - when: - os: mac store: steam - /shadowgate: + "/shadowgate": - when: - os: linux store: steam - /shadowgate.exe: + "/shadowgate.exe": - when: - os: windows store: steam @@ -464003,27 +465241,27 @@ Shadowgate: id: 343800 Shadowgate (2014): files: - /Zojoi/Shadowgate: + "/Zojoi/Shadowgate": tags: - save when: - os: mac - /Zojoi/Shadowgate/Settings.xml: + "/Zojoi/Shadowgate/Settings.xml": tags: - config when: - os: mac - /Zojoi/Shadowgate: + "/Zojoi/Shadowgate": tags: - save when: - os: windows - /.config/unity3d/Zojoi/Shadowgate: + "/.config/unity3d/Zojoi/Shadowgate": tags: - config when: - os: linux - /.local/share/Zojoi/Shadowgate: + "/.local/share/Zojoi/Shadowgate": tags: - save when: @@ -464033,15 +465271,15 @@ Shadowgate (2014): installDir: Shadowgate: {} launch: - /Shadowgate.app: + "/Shadowgate.app": - when: - os: mac store: steam - /Shadowgate.exe: + "/Shadowgate.exe": - when: - os: windows store: steam - /Shadowgate.x86: + "/Shadowgate.x86": - when: - os: linux store: steam @@ -464053,17 +465291,17 @@ Shadowgate (2014): id: 294440 Shadowgrounds: files: - /Config/options.txt: + "/Config/options.txt": tags: - config when: - os: windows - /Profiles/: + "/Profiles/": tags: - save when: - os: windows - /.frozenbyte/shadowgrounds: + "/.frozenbyte/shadowgrounds": tags: - config - save @@ -464074,33 +465312,33 @@ Shadowgrounds: installDir: Shadowgrounds: {} launch: - /Shadowgrounds.exe: + "/Shadowgrounds.exe": - when: - os: windows store: steam - /ShadowgroundsLauncher.exe: + "/ShadowgroundsLauncher.exe": - when: - os: windows store: steam - /shadowgrounds.app: + "/shadowgrounds.app": - when: - os: mac store: steam steam: id: 2500 -'Shadowgrounds: Survivor': +"Shadowgrounds: Survivor": files: - /Config: + "/Config": tags: - config when: - os: windows - /Profiles: + "/Profiles": tags: - save when: - os: windows - /.frozenbyte/survivor: + "/.frozenbyte/survivor": tags: - config - save @@ -464111,15 +465349,15 @@ Shadowgrounds: installDir: Shadowgrounds Survivor: {} launch: - /Shadowgrounds Survivor Launcher.exe: + "/Shadowgrounds Survivor Launcher.exe": - when: - os: windows store: steam - /survivor.app: + "/survivor.app": - when: - os: mac store: steam - /survivor.exe: + "/survivor.exe": - when: - os: windows store: steam @@ -464127,12 +465365,12 @@ Shadowgrounds: id: 11200 Shadowhand: files: - /Grey Alien Games/Shadowhand/Shadowhand.ini: + "/Grey Alien Games/Shadowhand/Shadowhand.ini": tags: - config when: - os: windows - /Grey Alien Games/Shadowhand/profiles: + "/Grey Alien Games/Shadowhand/profiles": tags: - save when: @@ -464142,11 +465380,11 @@ Shadowhand: installDir: Shadowhand: {} launch: - /Shadowhand.app: + "/Shadowhand.app": - when: - os: mac store: steam - /Shadowhand.exe: + "/Shadowhand.exe": - when: - os: windows store: steam @@ -464156,7 +465394,7 @@ Shadowland: installDir: Shadowland: {} launch: - /shadowland.exe: + "/shadowland.exe": - when: - store: steam steam: @@ -464165,7 +465403,7 @@ Shadowlings: installDir: Shadowlings: {} launch: - /Shadowlings.exe: + "/Shadowlings.exe": - when: - os: windows store: steam @@ -464178,11 +465416,11 @@ Shadoworlds: Shadoworlds: {} steam: id: 1627130 -'Shadowplay: Metropolis Foe': +"Shadowplay: Metropolis Foe": installDir: Shadowplay Metropolis Foe: {} launch: - /Cybertake.exe: + "/Cybertake.exe": - when: - os: windows store: steam @@ -464192,7 +465430,7 @@ Shadowrain: installDir: Shadowrain: {} launch: - /Shadowrain.exe: + "/Shadowrain.exe": - when: - os: windows store: steam @@ -464200,30 +465438,30 @@ Shadowrain: id: 1175480 Shadowrun Chronicles - Boston Lockdown: files: - /Library/Preferences/unity.Cliffhanger.Shadowrun Chronicles.plist: + "/Library/Preferences/unity.Cliffhanger.Shadowrun Chronicles.plist": tags: - config when: - os: mac id: steamExtra: - - 405730 - - 383660 - - 377730 - - 435190 - 324300 + - 377730 + - 383660 + - 405730 + - 435190 installDir: ShadowrunChronicles: {} launch: - /Shadowrun.app: + "/Shadowrun.app": - when: - os: mac store: steam - /Shadowrun.exe: + "/Shadowrun.exe": - when: - os: windows store: steam - /Shadowrun.x86: + "/Shadowrun.x86": - when: - os: linux store: steam @@ -464233,22 +465471,22 @@ Shadowrun Chronicles - Boston Lockdown: - config steam: id: 267750 -'Shadowrun Chronicles: INFECTED Director''s Cut': +"Shadowrun Chronicles: INFECTED Director's Cut": id: steamExtra: - 435200 installDir: Shadowrun Chronicles INFECTED!: {} launch: - /Shadowrun.app: + "/Shadowrun.app": - when: - os: mac store: steam - /Shadowrun.exe: + "/Shadowrun.exe": - when: - os: windows store: steam - /Shadowrun.x86: + "/Shadowrun.x86": - when: - os: linux store: steam @@ -464256,32 +465494,32 @@ Shadowrun Chronicles - Boston Lockdown: id: 421900 Shadowrun Returns: files: - /.config/Harebrained Schemes/Shadowrun Returns/Saves: + "/.config/Harebrained Schemes/Shadowrun Returns/Saves": tags: - save when: - os: linux - /.config/unity3d/Harebrained Schemes/Shadowrun/prefs: + "/.config/unity3d/Harebrained Schemes/Shadowrun/prefs": tags: - config when: - os: linux - /Library/Application Support/Harebrained Schemes/Shadowrun Returns/Saves: + "/Library/Application Support/Harebrained Schemes/Shadowrun Returns/Saves": tags: - save when: - os: mac - /Library/Preferences/unity.Harebrained Schemes.Shadowrun.plist: + "/Library/Preferences/unity.Harebrained Schemes.Shadowrun.plist": tags: - config when: - os: mac - /userdata//234650/remote/saves: + "/userdata//234650/remote/saves": tags: - save when: - store: steam - /Harebrained Schemes/Shadowrun Returns/Saves: + "/Harebrained Schemes/Shadowrun Returns/Saves": tags: - save when: @@ -464295,16 +465533,16 @@ Shadowrun Returns: installDir: Shadowrun Returns: {} launch: - /Shadowrun: - - arguments: '-logFile output.txt' + "/Shadowrun": + - arguments: "-logFile output.txt" when: - os: linux store: steam - /Shadowrun.app/Contents/MacOS/Shadowrun: + "/Shadowrun.app/Contents/MacOS/Shadowrun": - when: - os: mac store: steam - /Shadowrun.exe: + "/Shadowrun.exe": - when: - os: windows store: steam @@ -464314,34 +465552,34 @@ Shadowrun Returns: - config steam: id: 234650 -'Shadowrun: Dragonfall - Director''s Cut': +"Shadowrun: Dragonfall - Director's Cut": files: - /.config/Harebrained Schemes/Shadowrun Dragonfall/Saves: + "/.config/Harebrained Schemes/Shadowrun Dragonfall/Saves": tags: - save when: - os: linux - /.config/unity3d/Harebrained Schemes/Dragonfall: + "/.config/unity3d/Harebrained Schemes/Dragonfall": tags: - config when: - os: linux - /Library/Application Support/Steam/userdata//300550/remote/saves: + "/Library/Application Support/Steam/userdata//300550/remote/saves": tags: - save when: - os: mac - /Library/Preferences/unity.Harebrained Schemes.Dragonfall.plist: + "/Library/Preferences/unity.Harebrained Schemes.Dragonfall.plist": tags: - config when: - os: mac - /userdata//300550/remote/saves: + "/userdata//300550/remote/saves": tags: - save when: - store: steam - /Harebrained Schemes/Shadowrun Dragonfall/Saves: + "/Harebrained Schemes/Shadowrun Dragonfall/Saves": tags: - save when: @@ -464349,18 +465587,18 @@ Shadowrun Returns: gog: id: 1207660913 installDir: - Shadowrun Dragonfall Director's Cut: {} + "Shadowrun Dragonfall Director's Cut": {} launch: - /Dragonfall: - - arguments: '-logFile output.txt' + "/Dragonfall": + - arguments: "-logFile output.txt" when: - os: linux store: steam - /Dragonfall.app/Contents/MacOS/Dragonfall: + "/Dragonfall.app/Contents/MacOS/Dragonfall": - when: - os: mac store: steam - /Dragonfall.exe: + "/Dragonfall.exe": - when: - os: windows store: steam @@ -464370,24 +465608,24 @@ Shadowrun Returns: - config steam: id: 300550 -'Shadowrun: Hong Kong': +"Shadowrun: Hong Kong": files: - /.config/Harebrained Schemes/Shadowrun Hong Kong/Saves: + "/.config/Harebrained Schemes/Shadowrun Hong Kong/Saves": tags: - save when: - os: linux - /.config/unity3d/Harebrained Schemes/SRHK: + "/.config/unity3d/Harebrained Schemes/SRHK": tags: - config when: - os: linux - /userdata//346940/remote/saves: + "/userdata//346940/remote/saves": tags: - save when: - store: steam - /Local/Harebrained Schemes/Shadowrun Hong Kong/Saves: + "/Local/Harebrained Schemes/Shadowrun Hong Kong/Saves": tags: - save when: @@ -464396,21 +465634,21 @@ Shadowrun Returns: id: 1436866438 id: gogExtra: - - 1440061546 - 1439900139 + - 1440061546 installDir: Shadowrun Hong Kong: {} launch: - /SRHK: - - arguments: '-logFile output.txt' + "/SRHK": + - arguments: "-logFile output.txt" when: - os: linux store: steam - /SRHK.app/Contents/MacOS/SRHK: + "/SRHK.app/Contents/MacOS/SRHK": - when: - os: mac store: steam - /SRHK.exe: + "/SRHK.exe": - when: - os: windows store: steam @@ -464424,17 +465662,17 @@ Shadows: installDir: Shadows: {} launch: - /Shadows.exe: + "/Shadows.exe": - when: - os: windows store: steam steam: id: 563380 -'Shadows 2: Perfidia': +"Shadows 2: Perfidia": installDir: Shadows 2 Perfidia: {} launch: - /Shadows 2 Perfidia.exe: + "/Shadows 2 Perfidia.exe": - when: - os: windows store: steam @@ -464447,7 +465685,7 @@ Shadows Peak: installDir: Shadows Peak: {} launch: - /ShadowsPeak.exe: + "/ShadowsPeak.exe": - when: - os: windows store: steam @@ -464457,7 +465695,7 @@ Shadows and Dust: installDir: Shadows and Dust: {} launch: - /Shadows and Dust.exe: + "/Shadows and Dust.exe": - when: - os: windows store: steam @@ -464467,7 +465705,7 @@ Shadows and Lies: installDir: Shadows and Lies: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: @@ -464479,12 +465717,12 @@ Shadows in the Darkness: id: 626020 Shadows of Adam: files: - /Shadows of Adam/Local Storage: + "/Shadows of Adam/Local Storage": tags: - save when: - os: windows - /Shadows of Adam/Local Storage: + "/Shadows of Adam/Local Storage": tags: - save when: @@ -464492,15 +465730,15 @@ Shadows of Adam: installDir: Shadows of Adam: {} launch: - /Shadows of Adam.app/Contents/MacOS/Shadows of Adam: + "/Shadows of Adam.app/Contents/MacOS/Shadows of Adam": - when: - os: mac store: steam - /Shadows of Adam.exe: + "/Shadows of Adam.exe": - when: - os: windows store: steam - /shadowsofadam: + "/shadowsofadam": - when: - bit: 64 os: linux @@ -464509,12 +465747,12 @@ Shadows of Adam: id: 506510 Shadows of Doubt: files: - /AppData/LocalLow/ColePowered Games/Shadows of Doubt/Cities: + "/AppData/LocalLow/ColePowered Games/Shadows of Doubt/Cities": tags: - save when: - os: windows - /AppData/LocalLow/ColePowered Games/Shadows of Doubt/Save: + "/AppData/LocalLow/ColePowered Games/Shadows of Doubt/Save": tags: - save when: @@ -464522,7 +465760,7 @@ Shadows of Doubt: installDir: Shadows of Doubt: {} launch: - /Shadows of Doubt.exe: + "/Shadows of Doubt.exe": - when: - os: windows store: steam @@ -464537,7 +465775,7 @@ Shadows of Kepler: id: 1121510 Shadows of Kurgansk: files: - /Gaijin InCubator/Shadows of Kurgansk: + "/Gaijin InCubator/Shadows of Kurgansk": tags: - save when: @@ -464545,20 +465783,20 @@ Shadows of Kurgansk: installDir: ShadowsOfKurgansk: {} launch: - /ShadowsOfKurgansk.app/Contents/MacOS/ShadowsOfKurgansk: + "/ShadowsOfKurgansk.app/Contents/MacOS/ShadowsOfKurgansk": - when: - os: mac store: steam - /ShadowsOfKurgansk.exe: + "/ShadowsOfKurgansk.exe": - when: - os: windows store: steam - /ShadowsOfKurgansk.x86: + "/ShadowsOfKurgansk.x86": - when: - bit: 32 os: linux store: steam - /ShadowsOfKurgansk.x86_64: + "/ShadowsOfKurgansk.x86_64": - when: - bit: 64 os: linux @@ -464569,7 +465807,7 @@ Shadows of Larth: installDir: Shadows of Larth: {} launch: - /ShadowsofLarth.exe: + "/ShadowsofLarth.exe": - when: - bit: 64 os: windows @@ -464580,26 +465818,26 @@ Shadows of War: installDir: Shadows of War: {} launch: - /nw: - - arguments: '--ignore-gpu-blacklist' + "/nw": + - arguments: "--ignore-gpu-blacklist" when: - os: linux store: steam - - arguments: '--in-process-GPU --ignore-gpu-blacklist' + - arguments: "--in-process-GPU --ignore-gpu-blacklist" when: - os: linux store: steam - /nw.app: - - arguments: '--ignore-gpu-blacklist' + "/nw.app": + - arguments: "--ignore-gpu-blacklist" when: - os: mac store: steam - /nw.exe: - - arguments: '--ignore-gpu-blacklist' + "/nw.exe": + - arguments: "--ignore-gpu-blacklist" when: - os: windows store: steam - - arguments: '--in-process-GPU --ignore-gpu-blacklist' + - arguments: "--in-process-GPU --ignore-gpu-blacklist" when: - os: windows store: steam @@ -464609,21 +465847,21 @@ Shadows of time: installDir: Shadows of time: {} launch: - /ShadowsOfTime.exe: + "/ShadowsOfTime.exe": - when: - bit: 64 os: windows store: steam steam: id: 1155090 -'Shadows on the Vatican - Act I: Greed': +"Shadows on the Vatican - Act I: Greed": files: - /Saved Games/Shadows on the Vatican Act I HD/ (HD version): + "/Saved Games/Shadows on the Vatican Act I HD/ (HD version)": tags: - save when: - os: windows - /Saved Games/Shadows on the Vatican Act I/ (SD version): + "/Saved Games/Shadows on the Vatican Act I/ (SD version)": tags: - save when: @@ -464631,7 +465869,7 @@ Shadows of time: installDir: ShadowsOnTheVatican_1: {} launch: - /SotV_Launcher.exe: + "/SotV_Launcher.exe": - when: - os: windows store: steam @@ -464644,14 +465882,14 @@ Shadows of time: - config steam: id: 286360 -'Shadows on the Vatican - Act II: Wrath': +"Shadows on the Vatican - Act II: Wrath": files: - /Saved Games/Shadows on the Vatican Act II HD/ (HD version): + "/Saved Games/Shadows on the Vatican Act II HD/ (HD version)": tags: - save when: - os: windows - /Saved Games/Shadows on the Vatican Act II/ (SD version): + "/Saved Games/Shadows on the Vatican Act II/ (SD version)": tags: - save when: @@ -464659,7 +465897,7 @@ Shadows of time: installDir: ShadowsOnTheVatican_2: {} launch: - /SotV_Launcher.exe: + "/SotV_Launcher.exe": - when: - os: windows store: steam @@ -464674,12 +465912,12 @@ Shadows of time: id: 378630 Shadows over Loathing: files: - '/AppData/LocalLow/Asymmetric Games, LLC/Shadows Over Loathing/*.jso*': + "/AppData/LocalLow/Asymmetric Games, LLC/Shadows Over Loathing/*.jso*": tags: - save when: - os: windows - /Library/Application Support/com.AsymmetricGamesLLC.ShadowsOverLoathing/*.jso*: + "/Library/Application Support/com.AsymmetricGamesLLC.ShadowsOverLoathing/*.jso*": tags: - save when: @@ -464687,19 +465925,19 @@ Shadows over Loathing: installDir: Shadows Over Loathing: {} launch: - /Shadows Over Loathing.app/Contents/MacOS/Shadows Over Loathing: + "/Shadows Over Loathing.app/Contents/MacOS/Shadows Over Loathing": - when: - os: mac store: steam - /Shadows Over Loathing/Shadows Over Loathing.exe: + "/Shadows Over Loathing/Shadows Over Loathing.exe": - when: - os: windows store: steam steam: id: 1939160 -'Shadows: Awakening': +"Shadows: Awakening": files: - /AppData/LocalLow/Games Farm/Shadows_ Awakening/saves: + "/AppData/LocalLow/Games Farm/Shadows_ Awakening/saves": tags: - save when: @@ -464709,16 +465947,16 @@ Shadows over Loathing: installDir: Shadows Awakening: {} launch: - /shadows.exe: + "/shadows.exe": - when: - bit: 64 os: windows store: steam steam: id: 585450 -'Shadows: Heretic Kingdoms': +"Shadows: Heretic Kingdoms": files: - /save: + "/save": tags: - save when: @@ -464728,15 +465966,15 @@ Shadows over Loathing: installDir: Shadows - Heretic Kingdoms: {} launch: - /Shadows.exe: + "/Shadows.exe": - when: - os: windows store: steam steam: id: 256030 -'Shadows: Price for Our Sins': +"Shadows: Price for Our Sins": files: - /8floor/Shadowsv1.28: + "/8floor/Shadowsv1.28": tags: - save when: @@ -464744,7 +465982,7 @@ Shadows over Loathing: installDir: Shadows Price For Our Sins: {} launch: - /Shadows.exe: + "/Shadows.exe": - when: - store: steam steam: @@ -464753,11 +465991,11 @@ Shadowverse: installDir: Shadowverse: {} launch: - /Shadowverse.app/Contents/MacOS/Shadowverse: + "/Shadowverse.app/Contents/MacOS/Shadowverse": - when: - os: mac store: steam - /Shadowverse.exe: + "/Shadowverse.exe": - when: - os: windows store: steam @@ -464767,7 +466005,7 @@ Shadowy Contracts: installDir: Shadowy Contracts: {} launch: - /Shadowy Contracts.exe: + "/Shadowy Contracts.exe": - when: - os: windows store: steam @@ -464780,12 +466018,12 @@ Shadwen: - config when: - os: linux - /userdata//425210/remote: + "/userdata//425210/remote": tags: - save when: - store: steam - /Shadwen: + "/Shadwen": tags: - config - save @@ -464799,25 +466037,25 @@ Shadwen: installDir: Shadwen: {} launch: - /ShadwenLauncher.app: + "/ShadwenLauncher.app": - when: - os: mac store: steam - /shadwen.sh: + "/shadwen.sh": - when: - os: linux store: steam - /shadwen_launcher.exe: + "/shadwen_launcher.exe": - when: - os: windows store: steam steam: id: 425210 -'Shady Brook: A Dark Mystery Text Adventure': +"Shady Brook: A Dark Mystery Text Adventure": installDir: Shady Brook: {} launch: - /Shady Brook Steam.exe: + "/Shady Brook Steam.exe": - when: - os: windows store: steam @@ -464825,12 +466063,12 @@ Shadwen: id: 545850 Shady Knight: files: - /AppData/LocalLow/cptnsigh/Shady Knight: + "/AppData/LocalLow/cptnsigh/Shady Knight": tags: - config when: - os: windows - /AppData/LocalLow/cptnsigh/Shady Knight/savefile: + "/AppData/LocalLow/cptnsigh/Shady Knight/savefile": tags: - save when: @@ -464845,7 +466083,7 @@ Shady Lewd Kart: installDir: Shady Lewd Kart: {} launch: - /Shady Lewd Kart.exe: + "/Shady Lewd Kart.exe": - when: - os: windows store: steam @@ -464853,12 +466091,12 @@ Shady Lewd Kart: id: 1200730 Shady Part of Me: files: - /My Games/Shady Part of Me//save: + "/My Games/Shady Part of Me//save": tags: - save when: - os: windows - /My Games/Shady Part of Me/settings: + "/My Games/Shady Part of Me/settings": tags: - config when: @@ -464866,7 +466104,7 @@ Shady Part of Me: installDir: Shady Part of Me: {} launch: - /spom.exe: + "/spom.exe": - when: - bit: 64 os: windows @@ -464877,7 +466115,7 @@ Shahrzad - The Storyteller: installDir: Shahrzad - The Storyteller: {} launch: - /Shahrzad.exe: + "/Shahrzad.exe": - when: - store: steam steam: @@ -464892,19 +466130,19 @@ Shakedown Racing One: installDir: ShakedownRacing: {} launch: - /SR.app: + "/SR.app": - when: - os: mac store: steam - /SR.exe: + "/SR.exe": - when: - os: windows store: steam steam: id: 417730 -'Shakedown: Hawaii': +"Shakedown: Hawaii": files: - /ShakedownHawaii: + "/ShakedownHawaii": tags: - config - save @@ -464913,7 +466151,7 @@ Shakedown Racing One: installDir: Shakedown Hawaii: {} launch: - /shakedown.exe: + "/shakedown.exe": - when: - os: windows store: steam @@ -464923,11 +466161,11 @@ Shakes and Fidget: installDir: Shakes & Fidget: {} launch: - /shakesandfidget.app/Contents/MacOS/Shakes _ Fidget: + "/shakesandfidget.app/Contents/MacOS/Shakes _ Fidget": - when: - os: mac store: steam - /shakesandfidget.exe: + "/shakesandfidget.exe": - when: - os: windows store: steam @@ -464937,15 +466175,15 @@ Shakes and Fidget Remastered: installDir: Shakes and Fidget Remastered: {} launch: - /shakesandfidget.app/Contents/MacOS/shakesandfidget: + "/shakesandfidget.app/Contents/MacOS/shakesandfidget": - when: - os: mac store: steam - /shakesandfidget.exe: + "/shakesandfidget.exe": - when: - os: windows store: steam - /shakesandfidget.x86_64: + "/shakesandfidget.x86_64": - when: - bit: 64 os: linux @@ -464956,7 +466194,7 @@ Shakes on a Plane: installDir: Shakes on a Plane: {} launch: - /shakesdemo.exe: + "/shakesdemo.exe": - when: - os: windows store: steam @@ -464966,28 +466204,28 @@ Shallow Space: installDir: ShallowSpace: {} launch: - /sspace.app/Contents/MacOS/sspace: + "/sspace.app/Contents/MacOS/sspace": - when: - bit: 64 os: mac store: steam - /sspace.exe: + "/sspace.exe": - when: - bit: 64 os: windows store: steam - /sspace.x86_64: + "/sspace.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 305840 -'Shalnor Legends: Sacred Lands': +"Shalnor Legends: Sacred Lands": installDir: Shalnor Legends Sacred Lands: {} launch: - /ShalnorLegends.exe: + "/ShalnorLegends.exe": - when: - os: windows store: steam @@ -464998,22 +466236,22 @@ Shaman Flower: id: 657660 Shan Gui: files: - /game/saves/*.save: + "/game/saves/*.save": tags: - save when: - os: windows - /game/saves/persistent: + "/game/saves/persistent": tags: - config when: - os: windows - /RenPy/ShanGui/*.save: + "/RenPy/ShanGui/*.save": tags: - save when: - os: windows - /RenPy/ShanGui/persistent: + "/RenPy/ShanGui/persistent": tags: - config when: @@ -465021,33 +466259,33 @@ Shan Gui: installDir: Shan Gui: {} launch: - /ShanGui.app: + "/ShanGui.app": - when: - os: mac store: steam - /ShanGui.exe: + "/ShanGui.exe": - when: - os: windows store: steam - /ShanGui.sh: + "/ShanGui.sh": - when: - os: linux store: steam steam: id: 307050 -'Shan Gui II: Sweet Osmanthus II': +"Shan Gui II: Sweet Osmanthus II": files: - /ShanGuiDE/game/saves: + "/ShanGuiDE/game/saves": tags: - save when: - os: windows - /AppData/LocalLow/MagentaFactory/ShanGui2/Utage/Saveshangui2: + "/AppData/LocalLow/MagentaFactory/ShanGui2/Utage/Saveshangui2": tags: - save when: - os: windows - /AppData/LocalLow/MagentaFactory/ShanGui22/Utage/Saveshangui2: + "/AppData/LocalLow/MagentaFactory/ShanGui22/Utage/Saveshangui2": tags: - save when: @@ -465055,16 +466293,16 @@ Shan Gui: installDir: Shan Gui 2: {} launch: - /Episode1/ShanGui2.app: + "/Episode1/ShanGui2.app": - when: - os: mac store: steam - /Episode1/ShanGui2.exe: + "/Episode1/ShanGui2.exe": - when: - bit: 64 os: windows store: steam - /Episode1/ShanGui2.x86_64: + "/Episode1/ShanGui2.x86_64": - when: - bit: 64 os: linux @@ -465073,12 +466311,12 @@ Shan Gui: id: 952420 Shank: files: - /userdata//6120/remote: + "/userdata//6120/remote": tags: - save when: - store: steam - /Shank: + "/Shank": tags: - config - save @@ -465087,35 +466325,35 @@ Shank: installDir: Shank: {} launch: - /Shank: + "/Shank": - when: - os: linux store: steam - /Shank.app: + "/Shank.app": - when: - os: mac store: steam - /bin/Shank.exe: + "/bin/Shank.exe": - when: - os: windows store: steam - workingDir: /bin + workingDir: "/bin" steam: id: 6120 Shank 2: files: - /.klei/shank2: + "/.klei/shank2": tags: - config - save when: - os: linux - /userdata//102840: + "/userdata//102840": tags: - save when: - store: steam - /My Games/Shank 2: + "/My Games/Shank 2": tags: - config - save @@ -465124,56 +466362,56 @@ Shank 2: installDir: Shank 2: {} launch: - /Shank2.app: + "/Shank2.app": - when: - os: mac store: steam - /bin/shank2: + "/bin/shank2": - when: - os: linux store: steam - /bin/shank2.exe: + "/bin/shank2.exe": - when: - os: windows store: steam steam: id: 102840 -Shank n' Bake: +"Shank n' Bake": installDir: ShanknBake: {} launch: - /ShanknBake.app/Contents/MacOS/ShanknBake: + "/ShanknBake.app/Contents/MacOS/ShanknBake": - when: - os: mac store: steam - /ShanknBake.exe: + "/ShanknBake.exe": - when: - os: windows store: steam steam: id: 654400 -Shannon Tweed's Attack of the Groupies: +"Shannon Tweed's Attack of the Groupies": installDir: - Shannon Tweed's Attack Of The Groupies: {} + "Shannon Tweed's Attack Of The Groupies": {} launch: - /AttackOfTheGroupies.exe: + "/AttackOfTheGroupies.exe": - when: - store: steam steam: id: 289050 -Shantae and the Pirate's Curse: +"Shantae and the Pirate's Curse": files: - /Shantae and the Pirate's Curse.save: + "/Shantae and the Pirate's Curse.save": tags: - save when: - store: gog - /options.txt: + "/options.txt": tags: - config when: - os: windows - /userdata//345820/remote/save: + "/userdata//345820/remote/save": tags: - save when: @@ -465181,9 +466419,9 @@ Shantae and the Pirate's Curse: gog: id: 1456141287 installDir: - Shantae and the Pirate's Curse: {} + "Shantae and the Pirate's Curse": {} launch: - /ShantaeCurse.exe: + "/ShantaeCurse.exe": - when: - os: windows store: steam @@ -465191,22 +466429,22 @@ Shantae and the Pirate's Curse: id: 345820 Shantae and the Seven Sirens: files: - /Library/Containers/com.wayforward.shantae.sirens.Mac/Data/Library/Application Support/com.wayforward.shantae.sirens.Mac: + "/Library/Containers/com.wayforward.shantae.sirens.Mac/Data/Library/Application Support/com.wayforward.shantae.sirens.Mac": tags: - save when: - os: mac - /userdata//1191630/remote: + "/userdata//1191630/remote": tags: - save when: - store: steam - /Wayforward/ShantaeSiren/save*.sav: + "/Wayforward/ShantaeSiren/save*.sav": tags: - save when: - os: windows - /Wayforward/ShantaeSiren/wfEngine.ini: + "/Wayforward/ShantaeSiren/wfEngine.ini": tags: - config when: @@ -465216,32 +466454,32 @@ Shantae and the Seven Sirens: installDir: Shantae and the Seven Sirens: {} launch: - /executable/ShantaeSiren.exe: + "/executable/ShantaeSiren.exe": - when: - bit: 64 os: windows store: steam steam: id: 1191630 -'Shantae: Half-Genie Hero': +"Shantae: Half-Genie Hero": files: - /userdata//253840/remote: + "/userdata//253840/remote": tags: - save when: - store: steam - /userdata//764300/remote: + "/userdata//764300/remote": tags: - save when: - store: steam - /Wayforward/ShantaeHero: + "/Wayforward/ShantaeHero": tags: - config - save when: - os: windows - /Wayforward/ShantaeHeroUltimate: + "/Wayforward/ShantaeHeroUltimate": tags: - config - save @@ -465251,37 +466489,36 @@ Shantae and the Seven Sirens: id: 1277886679 id: steamExtra: - - 639310 - 639310 - 686711 - 764300 installDir: Shantae Half-Genie Hero: {} launch: - /executable/ShantaeHero.exe: + "/executable/ShantaeHero.exe": - when: - os: windows store: steam - /executable/ShantaeHero64.exe: + "/executable/ShantaeHero64.exe": - when: - bit: 64 os: windows store: steam steam: id: 253840 -'Shantae: Risky''s Revenge - Director''s Cut': +"Shantae: Risky's Revenge - Director's Cut": files: - /userdata//277890/remote: + "/userdata//277890/remote": tags: - save when: - store: steam - /Wayforward/riskysrevenge: + "/Wayforward/riskysrevenge": tags: - save when: - os: windows - /Wayforward/riskysrevenge/wfEngine.ini: + "/Wayforward/riskysrevenge/wfEngine.ini": tags: - config when: @@ -465291,7 +466528,7 @@ Shantae and the Seven Sirens: installDir: RiskysRevenge: {} launch: - /Executable/RiskysRevenge.exe: + "/Executable/RiskysRevenge.exe": - when: - store: steam steam: @@ -465300,7 +466537,7 @@ Shaolin vs Wutang: installDir: Shaolin vs Wutang: {} launch: - /SvW.exe: + "/SvW.exe": - when: - os: windows store: steam @@ -465310,7 +466547,7 @@ Shaolin vs Wutang 2: installDir: Shaolin vs Wutang 2: {} launch: - /SvW 2.exe: + "/SvW 2.exe": - when: - bit: 64 os: windows @@ -465321,7 +466558,7 @@ Shaoye: installDir: Shaoye: {} launch: - /Shaoye.exe: + "/Shaoye.exe": - when: - os: windows store: steam @@ -465331,11 +466568,11 @@ Shape Cascade: installDir: Shape Cascade: {} launch: - /ShapeCascade.app/Contents/MacOS/Mac_Runner: + "/ShapeCascade.app/Contents/MacOS/Mac_Runner": - when: - os: mac store: steam - /ShapeCascade.exe: + "/ShapeCascade.exe": - when: - bit: 64 os: windows @@ -465346,15 +466583,15 @@ Shape Palette: installDir: Shape Palette: {} launch: - /Shape Palette.app: + "/Shape Palette.app": - when: - os: mac store: steam - /Shape Palette.exe: + "/Shape Palette.exe": - when: - os: windows store: steam - /Shape Palette.x86_64: + "/Shape Palette.x86_64": - when: - bit: 64 os: linux @@ -465365,16 +466602,16 @@ Shape Shifter (2016): installDir: shapeshifter: {} launch: - /shapeshifter.exe: + "/shapeshifter.exe": - when: - store: steam steam: id: 497050 -'Shape of America: Episode One': +"Shape of America: Episode One": installDir: Shape of America: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -465382,12 +466619,12 @@ Shape Shifter (2016): id: 752330 Shape of the World: files: - /ShapeOfTheWorld/Saved/Config/WindowsNoEditor: + "/ShapeOfTheWorld/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /ShapeOfTheWorld/Saved/SaveGames/*.sav: + "/ShapeOfTheWorld/Saved/SaveGames/*.sav": tags: - save when: @@ -465395,7 +466632,7 @@ Shape of the World: installDir: Shape of the World: {} launch: - /ShapeOfTheWorld.exe: + "/ShapeOfTheWorld.exe": - when: - os: windows store: steam @@ -465405,7 +466642,7 @@ ShapeRockets: installDir: ShapeRockets: {} launch: - /ShapeRockets.exe: + "/ShapeRockets.exe": - when: - os: windows store: steam @@ -465415,7 +466652,7 @@ ShapeSim: installDir: ShapeSim: {} launch: - /ShapeSim.exe: + "/ShapeSim.exe": - when: - bit: 64 os: windows @@ -465453,7 +466690,7 @@ Shapeshooter: installDir: Shapeshooter: {} launch: - /Shapeshooter.exe: + "/Shapeshooter.exe": - when: - store: steam steam: @@ -465462,7 +466699,7 @@ Shapestorm: installDir: Shapestorm: {} launch: - /Shapestorm.exe: + "/Shapestorm.exe": - when: - os: windows store: steam @@ -465470,27 +466707,27 @@ Shapestorm: id: 818580 Shapez: files: - /Library/Preferences/shapez.io: + "/Library/Preferences/shapez.io": tags: - save when: - os: mac - /shapez.io/saves: + "/shapez.io/saves": tags: - save when: - os: windows - /shapez.io/saves/app_settings.bin: + "/shapez.io/saves/app_settings.bin": tags: - config when: - os: windows - /shapez.io/saves: + "/shapez.io/saves": tags: - save when: - os: linux - /shapez.io/saves/app_settings.bin: + "/shapez.io/saves/app_settings.bin": tags: - config when: @@ -465500,47 +466737,47 @@ Shapez: installDir: shapez.io: {} launch: - /play.sh: - - arguments: '--disable-direct-composition --in-process-gpu' + "/play.sh": + - arguments: "--disable-direct-composition --in-process-gpu" when: - bit: 64 os: linux store: steam - /shapez.io-standalone.app/Contents/MacOS/shapezio: - - arguments: '--disable-direct-composition --in-process-gpu' + "/shapez.io-standalone.app/Contents/MacOS/shapezio": + - arguments: "--disable-direct-composition --in-process-gpu" when: - os: mac store: steam - workingDir: /shapez.io-standalone.app/Contents/MacOS - /shapezio.exe: - - arguments: '--disable-direct-composition --in-process-gpu' + workingDir: "/shapez.io-standalone.app/Contents/MacOS" + "/shapezio.exe": + - arguments: "--disable-direct-composition --in-process-gpu" when: - bit: 64 os: windows store: steam steam: id: 1318690 -'Shapik: the moon quest': +"Shapik: the moon quest": installDir: Shapik the moon quest: {} launch: - /ShapikTMQ.app: + "/ShapikTMQ.app": - when: - os: mac store: steam - /ShapikTMQ.exe: + "/ShapikTMQ.exe": - when: - os: windows store: steam steam: id: 1073810 -'Shaq Fu: A Legend Reborn': +"Shaq Fu: A Legend Reborn": gog: id: 2088389040 installDir: Shaq Fu A Legend Reborn: {} launch: - /ShaqFu.exe: + "/ShaqFu.exe": - when: - store: steam steam: @@ -465549,7 +466786,7 @@ Shard: installDir: Shard: {} launch: - /Shard.exe: + "/Shard.exe": - when: - os: windows store: steam @@ -465559,7 +466796,7 @@ Shard Games: installDir: Shard Games: {} launch: - /shardgames.exe: + "/shardgames.exe": - when: - os: windows store: steam @@ -465572,14 +466809,14 @@ Shardbound: installDir: Shardbound: {} launch: - /Tactics/Binaries/Mac/Tactics-Mac-Shipping.app/Contents/MacOS/Tactics-Mac-Shipping: - - arguments: '-TacticsServer=https://st-george.spiritwalkgames.com -RequireSteam' + "/Tactics/Binaries/Mac/Tactics-Mac-Shipping.app/Contents/MacOS/Tactics-Mac-Shipping": + - arguments: "-TacticsServer=https://st-george.spiritwalkgames.com -RequireSteam" when: - bit: 64 os: mac store: steam - /Tactics/Binaries/Win64/Tactics-Win64-Shipping.exe: - - arguments: '-notinstalled -TacticsServer=https://st-george.spiritwalkgames.com -RequireSteam' + "/Tactics/Binaries/Win64/Tactics-Win64-Shipping.exe": + - arguments: "-notinstalled -TacticsServer=https://st-george.spiritwalkgames.com -RequireSteam" when: - bit: 64 os: windows @@ -465591,17 +466828,17 @@ Shardhunters: id: 817080 Shardlight: files: - /Saved Games/Shardlight: + "/Saved Games/Shardlight": tags: - save when: - os: windows - /Saved Games/Shardlight/acsetup.cfg: + "/Saved Games/Shardlight/acsetup.cfg": tags: - config when: - os: windows - /ags/Shardlight: + "/ags/Shardlight": tags: - config - save @@ -465614,29 +466851,32 @@ Shardlight: - 1456490013 - 1456490149 steamExtra: - - 447870 - 447840 + - 447870 installDir: Shardlight: {} launch: - /Shardlight.app/Contents/MacOS/AGS: + "/Shardlight.app/Contents/MacOS/AGS": - when: - os: mac store: steam - /Shardlight.exe: + "/Shardlight.exe": - when: - os: windows store: steam - /Start.sh: + "/Start.sh": - when: + - bit: 32 + os: linux + store: steam - bit: 64 os: linux store: steam steam: id: 336130 -'Shardpunk: Verminfall': +"Shardpunk: Verminfall": files: - /Profiles/*.xml: + "/Profiles/*.xml": tags: - save when: @@ -465645,12 +466885,12 @@ Shardlight: id: 1928341659 id: gogExtra: - - 1149708190 - - 1952794988 - 1107122135 + - 1149708190 + - 1268790027 - 1469728634 - 1702469610 - - 1268790027 + - 1952794988 steamExtra: - 1183860 - 2357190 @@ -465660,32 +466900,32 @@ Shardlight: installDir: Shardpunk Verminfall: {} launch: - /Shardpunk.exe: + "/Shardpunk.exe": - when: - os: windows store: steam - /This is The End/This is The End.exe: + "/This is The End/This is The End.exe": - when: - os: windows store: steam - workingDir: /This is The End + workingDir: "/This is The End" steam: id: 1183800 Shards of Azuria: installDir: Shards of Azuria: {} launch: - /GameData/ShardsOfAzuria.exe: + "/GameData/ShardsOfAzuria.exe": - when: - store: steam - workingDir: /GameData + workingDir: "/GameData" steam: id: 498340 Shards of Eradine: installDir: Shards of Eradine: {} launch: - /ShardsofEradine.exe: + "/ShardsofEradine.exe": - when: - os: windows store: steam @@ -465695,7 +466935,7 @@ Shards of Infinity: installDir: Shards of Infinity: {} launch: - /Shards.exe: + "/Shards.exe": - when: - os: windows store: steam @@ -465705,7 +466945,7 @@ Shards the Deckbuilder: installDir: Shards the Deckbuilder: {} launch: - /shards.exe: + "/shards.exe": - when: - store: steam steam: @@ -465714,15 +466954,15 @@ Share: installDir: Share: {} launch: - /Share.app: + "/Share.app": - when: - os: mac store: steam - /Share.exe: + "/Share.exe": - when: - os: windows store: steam - /Share.x86: + "/Share.x86": - when: - os: linux store: steam @@ -465738,7 +466978,7 @@ Shark Attack Deathmatch 2: installDir: Shark Attack Deathmatch 2: {} launch: - /Shark Attack Deathmatch 2.exe: + "/Shark Attack Deathmatch 2.exe": - when: - os: windows store: steam @@ -465748,7 +466988,7 @@ Shark Castle: installDir: Shark Castle: {} launch: - /Shark Castle.exe: + "/Shark Castle.exe": - when: - os: windows store: steam @@ -465758,11 +466998,11 @@ Shark Dating Simulator XL: installDir: Shark Dating Simulator XL: {} launch: - /original/sharkxl.exe: + "/original/sharkxl.exe": - when: - os: windows store: steam - /sdsxl-plus.exe: + "/sdsxl-plus.exe": - when: - os: windows store: steam @@ -465772,13 +467012,13 @@ Shark Simulator: installDir: Shark Simulator: {} launch: - /shark_simulator.exe: + "/shark_simulator.exe": - when: - os: windows store: steam steam: id: 708340 -'Sharknado VR: Eye of the Storm': +"Sharknado VR: Eye of the Storm": installDir: Sharknado VR: {} steam: @@ -465787,7 +467027,7 @@ Sharp: installDir: Sharp: {} launch: - /Sharp.exe: + "/Sharp.exe": - when: - bit: 64 os: windows @@ -465802,50 +467042,50 @@ Sharp X Mind: id: 1039650 SharpShooter3D: files: - /*.zds: + "/*.zds": tags: - save when: - os: windows - /gzdoom-*.ini: + "/gzdoom-*.ini": tags: - config when: - os: windows steam: id: 873150 -'Sharpe Investigations: Death on the Seine': +"Sharpe Investigations: Death on the Seine": installDir: Sharpe Investigations Death on the Seine: {} launch: - /foodcritic.exe: + "/foodcritic.exe": - when: - store: steam steam: id: 288630 Shatter: files: - /.sidhe/Shatter/application_parameters.xml: + "/.sidhe/Shatter/application_parameters.xml": tags: - config when: - os: linux - /.sidhe/Shatter/data/profiles/default_plr_profile.xml: + "/.sidhe/Shatter/data/profiles/default_plr_profile.xml": tags: - save when: - os: linux - /userdata//20820/remote/default_plr_profile: + "/userdata//20820/remote/default_plr_profile": tags: - save when: - store: steam - /Sidhe/SH/application_parameters.xml: + "/Sidhe/SH/application_parameters.xml": tags: - config when: - os: windows - /Sidhe/SH/data/profiles/default_plr_profile.xml: + "/Sidhe/SH/data/profiles/default_plr_profile.xml": tags: - save when: @@ -465853,19 +467093,19 @@ Shatter: installDir: Shatter: {} launch: - /SettingsEditor.bin.x86: + "/SettingsEditor.bin.x86": - when: - os: linux store: steam - /Shatter.app: + "/Shatter.app": - when: - os: mac store: steam - /Shatter.exe: + "/Shatter.exe": - when: - os: windows store: steam - /ShatterSettingsEditor.exe: + "/ShatterSettingsEditor.exe": - when: - os: windows store: steam @@ -465885,15 +467125,15 @@ Shatter Remastered Deluxe: installDir: Shatter Remaster: {} launch: - /Shatter.app/Contents/MacOS/Shatter: + "/Shatter.app/Contents/MacOS/Shatter": - when: - os: mac store: steam - /Shatter.exe: + "/Shatter.exe": - when: - os: windows store: steam - /Shatter.x86_64: + "/Shatter.x86_64": - when: - bit: 64 os: linux @@ -465904,11 +467144,11 @@ Shattered: installDir: Shattered: {} launch: - /Shattered.app/Contents/MacOS/Shattered: + "/Shattered.app/Contents/MacOS/Shattered": - when: - os: mac store: steam - /Shattered.exe: + "/Shattered.exe": - when: - os: windows store: steam @@ -465920,7 +467160,7 @@ Shattered - Tale of the Forgotten King: installDir: Shattered - Tale of the Forgotten King: {} launch: - /ShatteredTOTFK.exe: + "/ShatteredTOTFK.exe": - when: - bit: 64 os: windows @@ -465929,7 +467169,7 @@ Shattered - Tale of the Forgotten King: id: 1045180 Shattered God - Quest for the Divine Relic: files: - /Shattered_God: + "/Shattered_God": tags: - save when: @@ -465937,7 +467177,7 @@ Shattered God - Quest for the Divine Relic: installDir: Shattered God: {} launch: - /Shattered God.exe: + "/Shattered God.exe": - when: - os: windows store: steam @@ -465945,7 +467185,7 @@ Shattered God - Quest for the Divine Relic: id: 661110 Shattered Haven: files: - /RuntimeData: + "/RuntimeData": tags: - config - save @@ -465958,20 +467198,20 @@ Shattered Haven: installDir: Shattered Haven: {} launch: - /ShatteredHaven.app: + "/ShatteredHaven.app": - when: - os: mac store: steam - /ShatteredHaven.exe: + "/ShatteredHaven.exe": - when: - os: windows store: steam - /ShatteredHavenLinux.x86: + "/ShatteredHavenLinux.x86": - when: - bit: 32 os: linux store: steam - /ShatteredHavenLinux.x86_64: + "/ShatteredHavenLinux.x86_64": - when: - bit: 64 os: linux @@ -465982,14 +467222,14 @@ Shattered Horizon: installDir: Shattered_Horizon: {} launch: - /client_exe/shattered_horizon.exe: + "/client_exe/shattered_horizon.exe": - when: - store: steam steam: id: 18110 Shattered Light: files: - /Characters: + "/Characters": tags: - save when: @@ -466008,15 +467248,15 @@ Shattered Pixel Dungeon: installDir: Shattered Pixel Dungeon: {} launch: - /Shattered Pixel Dungeon.app: + "/Shattered Pixel Dungeon.app": - when: - os: mac store: steam - /Shattered Pixel Dungeon.exe: + "/Shattered Pixel Dungeon.exe": - when: - os: windows store: steam - /bin/Shattered Pixel Dungeon: + "/bin/Shattered Pixel Dungeon": - when: - os: linux store: steam @@ -466024,7 +467264,7 @@ Shattered Pixel Dungeon: id: 1769170 Shattered Planet: files: - /Shattered Planet/.sav: + "/Shattered Planet/.sav": tags: - save when: @@ -466032,11 +467272,11 @@ Shattered Planet: installDir: Shattered Planet: {} launch: - /shatteredPlanet.app: + "/shatteredPlanet.app": - when: - os: mac store: steam - /shatteredPlanet.exe: + "/shatteredPlanet.exe": - when: - os: windows store: steam @@ -466050,8 +467290,8 @@ Shattered Skies: installDir: ShatteredSkies: {} launch: - /Launcher.exe: - - arguments: '-steam -ss' + "/Launcher.exe": + - arguments: "-steam -ss" when: - os: windows store: steam @@ -466059,12 +467299,12 @@ Shattered Skies: id: 447500 Shattered Steel: files: - /OPTIONS.CFG: + "/OPTIONS.CFG": tags: - config when: - os: dos - /PLAYER.CFG: + "/PLAYER.CFG": tags: - save when: @@ -466074,21 +467314,21 @@ Shattered Steel: installDir: Shattered Steel: {} launch: - /DOSBox/dosbox.app/Contents/MacOS/DOSBox: - - arguments: '-conf \"./dosboxShatteredSteel.conf\" -conf \"./dosboxShatteredSteel_single.conf\" -noconsole' + "/DOSBox/dosbox.app/Contents/MacOS/DOSBox": + - arguments: "-conf \\\"./dosboxShatteredSteel.conf\\\" -conf \\\"./dosboxShatteredSteel_single.conf\\\" -noconsole" when: - os: mac store: steam - /Launch ShatteredSteel Host Server.bat: + "/Launch ShatteredSteel Host Server.bat": - when: - os: windows store: steam - /Launch ShatteredSteel Network Client.bat: + "/Launch ShatteredSteel Network Client.bat": - when: - os: windows store: steam - /dosbox/dosbox: - - arguments: '-conf \"./dosboxShatteredSteel.conf\" -conf \"./dosboxShatteredSteel_single.conf\" -noconsole' + "/dosbox/dosbox": + - arguments: "-conf \\\"./dosboxShatteredSteel.conf\\\" -conf \\\"./dosboxShatteredSteel_single.conf\\\" -noconsole" when: - os: linux store: steam @@ -466098,20 +467338,20 @@ Shattered Throne: installDir: Shattered Throne: {} launch: - /ShatteredThrone.app: + "/ShatteredThrone.app": - when: - os: mac store: steam - /ShatteredThrone.exe: + "/ShatteredThrone.exe": - when: - os: windows store: steam - /shatteredthrone.x86: + "/shatteredthrone.x86": - when: - bit: 32 os: linux store: steam - /shatteredthrone.x86_64: + "/shatteredthrone.x86_64": - when: - bit: 64 os: linux @@ -466122,7 +467362,7 @@ Shattered Union: installDir: Shattered Union: {} launch: - /ShatteredUnion.exe: + "/ShatteredUnion.exe": - when: - store: steam steam: @@ -466131,7 +467371,7 @@ Shattered Universe: installDir: Origin: {} launch: - /Origin.exe: + "/Origin.exe": - when: - os: windows store: steam @@ -466139,7 +467379,7 @@ Shattered Universe: id: 1179840 Shatterline: files: - /Shatterline/2961AB5C4C274EAB9B13CCC6A9306D6A: + "/Shatterline/2961AB5C4C274EAB9B13CCC6A9306D6A": tags: - config when: @@ -466147,8 +467387,8 @@ Shatterline: installDir: Shatterline: {} launch: - /Launch_Game.exe: - - arguments: '-platform_type Steam -bugsplat_enabled' + "/Launch_Game.exe": + - arguments: "-platform_type Steam -bugsplat_enabled" when: - bit: 64 os: windows @@ -466157,12 +467397,12 @@ Shatterline: id: 2087030 Shaun White Skateboarding: files: - /gamesettings.ini: + "/gamesettings.ini": tags: - config when: - os: windows - /savegames//20: + "/savegames//20": tags: - save when: @@ -466170,7 +467410,7 @@ Shaun White Skateboarding: store: uplay Shaun White Snowboarding: files: - /Ubisoft/SWSnow/saves: + "/Ubisoft/SWSnow/saves": tags: - save when: @@ -466178,16 +467418,16 @@ Shaun White Snowboarding: installDir: Shaun White Snowboarding: {} launch: - /ShaunWhiteSnowboarding.exe: + "/ShaunWhiteSnowboarding.exe": - when: - store: steam steam: id: 19990 -'Shaverma: Ravshan Edition': +"Shaverma: Ravshan Edition": installDir: Shaverma Ravshan Edition: {} launch: - /Shaverma.exe: + "/Shaverma.exe": - when: - store: steam steam: @@ -466196,15 +467436,15 @@ Shawy Adventures: installDir: ShawyAdventures: {} launch: - /ShawyAdventures.app/Contents/MacOS/ShawyAdventures: + "/ShawyAdventures.app/Contents/MacOS/ShawyAdventures": - when: - os: mac store: steam - /ShawyAdventures.exe: + "/ShawyAdventures.exe": - when: - os: windows store: steam - /ShawyAdventures.x86_64: + "/ShawyAdventures.x86_64": - when: - bit: 64 os: linux @@ -466218,11 +467458,11 @@ She Remembered Caterpillars: installDir: She Remembered Caterpillars: {} launch: - /She Remembered Caterpillars.app: + "/She Remembered Caterpillars.app": - when: - os: mac store: steam - /She Remembered Caterpillars.exe: + "/She Remembered Caterpillars.exe": - when: - os: windows store: steam @@ -466237,11 +467477,11 @@ She Save: installDir: SHE SAVE: {} launch: - /SHE SAVE.app: + "/SHE SAVE.app": - when: - os: mac store: steam - /SHE SAVE.exe: + "/SHE SAVE.exe": - when: - os: windows store: steam @@ -466249,7 +467489,7 @@ She Save: id: 657260 She Sees Red: files: - /SavesDir: + "/SavesDir": tags: - save when: @@ -466259,11 +467499,11 @@ She Sees Red: installDir: She Sees Red: {} launch: - /She Sees Red.app: + "/She Sees Red.app": - when: - os: mac store: steam - /She Sees Red.exe: + "/She Sees Red.exe": - when: - os: windows store: steam @@ -466273,11 +467513,11 @@ She Wants Me Dead: installDir: She Wants Me Dead: {} launch: - /swmd.app: + "/swmd.app": - when: - os: mac store: steam - /swmd.exe: + "/swmd.exe": - when: - os: windows store: steam @@ -466285,14 +467525,14 @@ She Wants Me Dead: id: 468310 She Who Fights Monsters: files: - /She Who Fights Monsters: + "/She Who Fights Monsters": tags: - save when: - os: windows She Will Punish Them: files: - /AppData/LocalLow/L2 Games/She Will Punish Them: + "/AppData/LocalLow/L2 Games/She Will Punish Them": tags: - config - save @@ -466301,7 +467541,7 @@ She Will Punish Them: installDir: She Will Punish Them: {} launch: - /She Will Punish Them.exe: + "/She Will Punish Them.exe": - when: - os: windows store: steam @@ -466309,7 +467549,7 @@ She Will Punish Them: id: 1213740 She and the Light Bearer: files: - /AppData/LocalLow/Mojiken/She and the Light Bearer/: + "/AppData/LocalLow/Mojiken/She and the Light Bearer/": tags: - save when: @@ -466317,11 +467557,11 @@ She and the Light Bearer: installDir: She and The Light Bearer: {} launch: - /She.app: + "/She.app": - when: - os: mac store: steam - /She.exe: + "/She.exe": - when: - os: windows store: steam @@ -466334,7 +467574,7 @@ Sheaf - Together EP: id: 1072530 Sheep: files: - /Saves: + "/Saves": tags: - save when: @@ -466345,7 +467585,7 @@ Sheep Collision: installDir: Sheep Collision: {} launch: - /Sheep_Collision.exe: + "/Sheep_Collision.exe": - when: - os: windows store: steam @@ -466355,11 +467595,11 @@ Sheep Game: installDir: Sheep Game: {} launch: - /Sheep Game.app: + "/Sheep Game.app": - when: - os: mac store: steam - /nw.exe: + "/nw.exe": - when: - bit: 64 os: windows @@ -466370,33 +467610,33 @@ Sheep Love: installDir: Sheep Love: {} launch: - /Sheep Love.exe: + "/Sheep Love.exe": - when: - os: windows store: steam steam: id: 1520060 -'Sheep, Dog, ''n'' Wolf': +"Sheep, Dog, 'n' Wolf": registry: - 'HKEY_LOCAL_MACHINE/Infogrames/Sheep, Dog''n Wolf DX7/CfgGame': + "HKEY_LOCAL_MACHINE/Infogrames/Sheep, Dog'n Wolf DX7/CfgGame": tags: - config - 'HKEY_LOCAL_MACHINE/Infogrames/Sheep, Dog''n Wolf DX7/Progress': + "HKEY_LOCAL_MACHINE/Infogrames/Sheep, Dog'n Wolf DX7/Progress": tags: - save Sheepageddon: installDir: Sheepageddon: {} launch: - /Contents/MacOS/Mac_Runner: + "/Contents/MacOS/Mac_Runner": - when: - os: mac store: steam - /Sheepageddon.exe: + "/Sheepageddon.exe": - when: - os: windows store: steam - /runner: + "/runner": - when: - os: linux store: steam @@ -466404,36 +467644,37 @@ Sheepageddon: id: 913000 Sheepo: files: - /Sheepo_NoSteam: + "/Sheepo_NoSteam": tags: - save when: - os: windows - /WIP: + "/WIP": tags: - save when: - - store: steam + - os: windows + store: steam gog: id: 2069785347 installDir: Sheepo: {} launch: - /Sheepo: + "/Sheepo": - when: - os: linux store: steam - /Sheepo.exe: + "/Sheepo.exe": - when: - os: windows store: steam steam: id: 1281790 -'ShellBlast: Legacy Edition': +"ShellBlast: Legacy Edition": installDir: ShellBlast Legacy Edition: {} launch: - /Shellblast.exe: + "/Shellblast.exe": - when: - os: windows store: steam @@ -466443,29 +467684,29 @@ ShellShock Live: installDir: ShellShock Live: {} launch: - /ShellShockLive.app: + "/ShellShockLive.app": - when: - os: mac store: steam - /ShellShockLive.exe: + "/ShellShockLive.exe": - when: - os: windows store: steam - /ShellShockLive.x86: + "/ShellShockLive.x86": - when: - bit: 32 os: linux store: steam - /ShellShockLive.x86_64: + "/ShellShockLive.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 326460 -'Shellshock 2: Blood Trails': +"Shellshock 2: Blood Trails": files: - /Eidos/Shellshock2: + "/Eidos/Shellshock2": tags: - config - save @@ -466474,36 +467715,36 @@ ShellShock Live: installDir: Shellshock 2: {} launch: - /Shellshock 2.exe: + "/Shellshock 2.exe": - when: - store: steam steam: id: 8160 -'Shellshock: Nam ''67': +"Shellshock: Nam '67": files: - /SHELLSHOCK_NAM67/Input_PC.ini: + "/SHELLSHOCK_NAM67/Input_PC.ini": tags: - config when: - os: windows - /SHELLSHOCK_NAM67/TOD_PC.ini: + "/SHELLSHOCK_NAM67/TOD_PC.ini": tags: - config when: - os: windows - /SHELLSHOCK_NAM67/profile: + "/SHELLSHOCK_NAM67/profile": tags: - save when: - os: windows Shelter: files: - /.config/Might and Delight/Shelter: + "/.config/Might and Delight/Shelter": tags: - save when: - os: mac - /Might and Delight/Shelter: + "/Might and Delight/Shelter": tags: - save when: @@ -466513,11 +467754,11 @@ Shelter: installDir: Shelter: {} launch: - /Shelter.app: + "/Shelter.app": - when: - os: mac store: steam - /Shelter.exe: + "/Shelter.exe": - when: - os: windows store: steam @@ -466529,7 +467770,7 @@ Shelter: id: 244710 Shelter 2: files: - /Shelter2_Data/shelter2.shelter2: + "/Shelter2_Data/shelter2.shelter2": tags: - save when: @@ -466539,15 +467780,15 @@ Shelter 2: installDir: Shelter2: {} launch: - /Shelter2.app: + "/Shelter2.app": - when: - os: mac store: steam - /Shelter2.exe: + "/Shelter2.exe": - when: - os: windows store: steam - /Shelter2.x86: + "/Shelter2.x86": - when: - os: linux store: steam @@ -466562,11 +467803,11 @@ Shelter 3: installDir: Shelter 3: {} launch: - /Shelter 3.app: + "/Shelter 3.app": - when: - os: mac store: steam - /Shelter 3.exe: + "/Shelter 3.exe": - when: - os: windows store: steam @@ -466576,7 +467817,7 @@ Shelter 69: installDir: Shelter 69: {} launch: - /Shelter69.exe: + "/Shelter69.exe": - when: - os: windows store: steam @@ -466589,7 +467830,7 @@ Shelter in Place: id: 1112840 Sheltered: files: - /saves: + "/saves": tags: - config - save @@ -466600,20 +467841,20 @@ Sheltered: installDir: Sheltered: {} launch: - /Sheltered.app: + "/Sheltered.app": - when: - os: mac store: steam - /Sheltered.exe: + "/Sheltered.exe": - when: - os: windows store: steam - /Sheltered.x86: + "/Sheltered.x86": - when: - bit: 32 os: linux store: steam - /Sheltered.x86_64: + "/Sheltered.x86_64": - when: - bit: 64 os: linux @@ -466622,7 +467863,7 @@ Sheltered: id: 356040 Sheltered 2: files: - /AppData/LocalLow/Unicube/Sheltered2: + "/AppData/LocalLow/Unicube/Sheltered2": tags: - save when: @@ -466632,34 +467873,34 @@ Sheltered 2: installDir: Sheltered 2: {} launch: - /Sheltered2.exe: + "/Sheltered2.exe": - when: - store: steam steam: id: 1289380 Shenmue I & II: files: - /userdata//758330/remote/sm1saves: + "/userdata//758330/remote/sm1saves": tags: - save when: - store: steam - /userdata//758330/remote/sm1saves/Settings: + "/userdata//758330/remote/sm1saves/Settings": tags: - config when: - store: steam - /userdata//758330/remote/sm2saves: + "/userdata//758330/remote/sm2saves": tags: - save when: - store: steam - /userdata//758330/remote/sm2saves/Settings: + "/userdata//758330/remote/sm2saves/Settings": tags: - config when: - store: steam - /Packages/7904SEGAEuropeLtd.Shenmue-GamePass_zs7esxpzd8d5c/SystemAppData/wgs: + "/Packages/7904SEGAEuropeLtd.Shenmue-GamePass_zs7esxpzd8d5c/SystemAppData/wgs": tags: - config - save @@ -466669,7 +467910,7 @@ Shenmue I & II: installDir: SMLaunch: {} launch: - /SteamLauncher.exe: + "/SteamLauncher.exe": - when: - os: windows store: steam @@ -466677,17 +467918,17 @@ Shenmue I & II: id: 758330 Shenmue III: files: - /Shenmue3/Saved/Config/WindowsNoEditor: + "/Shenmue3/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /Shenmue3/Saved/SaveGames: + "/Shenmue3/Saved/SaveGames": tags: - save when: - os: windows - /Shenmue3/Saved/SaveGames/Systemaa.sav: + "/Shenmue3/Saved/SaveGames/Systemaa.sav": tags: - config when: @@ -466697,42 +467938,42 @@ Shenmue III: installDir: ShenmueIII: {} launch: - /Shenmue3.exe: + "/Shenmue3.exe": - when: - store: steam steam: id: 878670 Shenzhen I/O: files: - /.local/share/SHENZHEN IO/: + "/.local/share/SHENZHEN IO/": tags: - config - save when: - os: linux - /Library/Application Support/SHENZHEN IO: + "/Library/Application Support/SHENZHEN IO": tags: - config - save when: - os: mac - /My Games/SHENZHEN IO/: + "/My Games/SHENZHEN IO/": tags: - save when: - os: windows - /My Games/SHENZHEN IO//config.cfg: + "/My Games/SHENZHEN IO//config.cfg": tags: - config when: - os: windows - /My Games/SHENZHEN IO/NonSteamUser/config.cfg: + "/My Games/SHENZHEN IO/NonSteamUser/config.cfg": tags: - config when: - os: windows store: microsoft - /Packages/58020AllianceMetaversalSt.ShenzhenIO_j78hpz8e66gfw/SystemAppData/xgs//all/save.dat: + "/Packages/58020AllianceMetaversalSt.ShenzhenIO_j78hpz8e66gfw/SystemAppData/xgs//all/save.dat": tags: - save when: @@ -466743,15 +467984,15 @@ Shenzhen I/O: installDir: SHENZHEN IO: {} launch: - /Shenzhen: + "/Shenzhen": - when: - os: linux store: steam - /Shenzhen IO.app/Contents/MacOS/Shenzhen: + "/Shenzhen IO.app/Contents/MacOS/Shenzhen": - when: - os: mac store: steam - /Shenzhen.exe: + "/Shenzhen.exe": - when: - os: windows store: steam @@ -466759,12 +468000,12 @@ Shenzhen I/O: id: 504210 Shenzhen Solitaire: files: - /My Games/SHENZHEN SOLITAIRE/: + "/My Games/SHENZHEN SOLITAIRE/": tags: - config when: - os: windows - /SHENZHEN SOLITAIRE/: + "/SHENZHEN SOLITAIRE/": tags: - config when: @@ -466772,15 +468013,15 @@ Shenzhen Solitaire: installDir: SHENZHEN SOLITAIRE: {} launch: - /Shenzhen: + "/Shenzhen": - when: - os: linux store: steam - /Shenzhen Solitaire.app/Contents/MacOS/Shenzhen: + "/Shenzhen Solitaire.app/Contents/MacOS/Shenzhen": - when: - os: mac store: steam - /Shenzhen.exe: + "/Shenzhen.exe": - when: - os: windows store: steam @@ -466790,7 +468031,7 @@ Sheol: installDir: Sheol: {} launch: - /sheol.exe: + "/sheol.exe": - when: - os: windows store: steam @@ -466803,17 +468044,17 @@ Shepard Fairey VR - DAMAGED: id: 871290 Shepherd of Light: files: - /ShepherdOfLight/Saved/Config/WindowsNoEditor: + "/ShepherdOfLight/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /ShepherdOfLight/Saved/SaveGames/SoLGameDataSlot.sav: + "/ShepherdOfLight/Saved/SaveGames/SoLGameDataSlot.sav": tags: - save when: - os: windows - /ShepherdOfLight/Saved/SaveGames/SoLGameSettingsSlot.sav: + "/ShepherdOfLight/Saved/SaveGames/SoLGameSettingsSlot.sav": tags: - config when: @@ -466821,22 +468062,22 @@ Shepherd of Light: installDir: Shepherd of Light: {} launch: - /ShepherdOfLight.app: + "/ShepherdOfLight.app": - when: - os: mac store: steam - /ShepherdOfLight.exe: + "/ShepherdOfLight.exe": - when: - bit: 64 os: windows store: steam steam: id: 1106770 -Shepherd's Crossing: +"Shepherd's Crossing": installDir: Shepherds Crossing: {} launch: - /SheepVillage.exe: + "/SheepVillage.exe": - when: - bit: 64 os: windows @@ -466847,7 +468088,7 @@ Shepherds of the Abyss: installDir: Shepherds of the Abyss: {} launch: - /GGTD.exe: + "/GGTD.exe": - when: - os: windows store: steam @@ -466857,7 +468098,7 @@ Shephy: installDir: Shephy: {} launch: - /Shephy.exe: + "/Shephy.exe": - when: - os: windows store: steam @@ -466867,28 +468108,28 @@ Shera and the Three Treasures: installDir: Shera and the Three Treasures: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: id: 1056750 -'Sherlock Holmes Consulting Detective: The Case of the Mummy''s Curse': +"Sherlock Holmes Consulting Detective: The Case of the Mummy's Curse": installDir: Sherlock Holmes Consulting Detective: {} launch: - /Case 1 Mummys Curse 2.app: + "/Case 1 Mummys Curse 2.app": - when: - os: mac store: steam - /MummysCurse.exe: + "/MummysCurse.exe": - when: - os: windows store: steam steam: id: 374010 -'Sherlock Holmes Consulting Detective: The Case of the Mystified Murderess': +"Sherlock Holmes Consulting Detective: The Case of the Mystified Murderess": files: - /Zojoi.Murderess/Local Store/#SharedObjects/SherlockMain.swf/SherLockMurderess.sol: + "/Zojoi.Murderess/Local Store/#SharedObjects/SherlockMain.swf/SherLockMurderess.sol": tags: - save when: @@ -466896,25 +468137,25 @@ Shera and the Three Treasures: installDir: Sherlock Holmes Consulting Detective The Case of the Mystified Murderess: {} launch: - /Case 3 Mystified Murderess.app: + "/Case 3 Mystified Murderess.app": - when: - os: mac store: steam - /MystifiedMurderess.exe: + "/MystifiedMurderess.exe": - when: - os: windows store: steam steam: id: 376790 -'Sherlock Holmes Consulting Detective: The Case of the Tin Soldier': +"Sherlock Holmes Consulting Detective: The Case of the Tin Soldier": installDir: Sherlock Holmes Consulting Detective The Case of the Tin Soldier: {} launch: - /TinSoldier.app: + "/TinSoldier.app": - when: - os: mac store: steam - /TinSoldier.exe: + "/TinSoldier.exe": - when: - os: windows store: steam @@ -466922,12 +468163,12 @@ Shera and the Three Treasures: id: 376780 Sherlock Holmes and the Hound of the Baskervilles: files: - /Frogwares/Sherlock Holmes and The Hound of the Baskervilles/save: + "/Frogwares/Sherlock Holmes and The Hound of the Baskervilles/save": tags: - save when: - os: windows - /Frogwares/Sherlock Holmes and The Hound of the Baskervilles/setup.ini: + "/Frogwares/Sherlock Holmes and The Hound of the Baskervilles/setup.ini": tags: - config when: @@ -466937,19 +468178,19 @@ Sherlock Holmes and the Hound of the Baskervilles: installDir: sh_thob: {} launch: - /The_Hound_of_The_Baskervilles.exe: + "/The_Hound_of_The_Baskervilles.exe": - when: - store: steam steam: id: 209230 Sherlock Holmes versus Jack the Ripper: files: - /Games/sherlock holmes versus jack the ripper/save: + "/Games/sherlock holmes versus jack the ripper/save": tags: - save when: - os: windows - /Games/sherlock holmes versus jack the ripper/setup.ini: + "/Games/sherlock holmes versus jack the ripper/setup.ini": tags: - config when: @@ -466959,24 +468200,24 @@ Sherlock Holmes versus Jack the Ripper: installDir: Sherlock Holmes versus Jack the Ripper: {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: id: 11190 -'Sherlock Holmes: Chapter One': +"Sherlock Holmes: Chapter One": files: - /SH9/Saved/Config/WindowsNoEditor/GameUserSettings.ini: + "/SH9/Saved/Config/WindowsNoEditor/GameUserSettings.ini": tags: - config when: - os: windows - /SH9/Saved/SaveGames: + "/SH9/Saved/SaveGames": tags: - save when: - os: windows - /SH9/Saved/SaveGames/Settings.sav: + "/SH9/Saved/SaveGames/Settings.sav": tags: - config when: @@ -466985,13 +468226,13 @@ Sherlock Holmes versus Jack the Ripper: id: 1505341785 id: gogExtra: + - 1184868315 + - 1187253124 - 1223626251 + - 1337456461 - 1724875775 - 1761741962 - - 1184868315 - 2032137685 - - 1187253124 - - 1337456461 steamExtra: - 1581901 - 1581931 @@ -467003,21 +468244,21 @@ Sherlock Holmes versus Jack the Ripper: installDir: Sherlock Holmes Chapter One: {} launch: - /SH9/Binaries/Win64/SHCO.exe: + "/SH9/Binaries/Win64/SHCO.exe": - when: - bit: 64 os: windows store: steam steam: id: 1137300 -'Sherlock Holmes: Crimes & Punishments': +"Sherlock Holmes: Crimes & Punishments": files: - /My Games/Sherlock Holmes - Crimes and Punishments/SH7Game: + "/My Games/Sherlock Holmes - Crimes and Punishments/SH7Game": tags: - save when: - os: windows - /My Games/Sherlock Holmes - Crimes and Punishments/SH7Game/Config: + "/My Games/Sherlock Holmes - Crimes and Punishments/SH7Game/Config": tags: - config when: @@ -467027,17 +468268,17 @@ Sherlock Holmes versus Jack the Ripper: installDir: Sherlock Holmes - Crimes and Punishments: {} launch: - /Binaries/Win32/Sherlock.exe: - - arguments: '-NOSCREENMESSAGES' + "/Binaries/Win32/Sherlock.exe": + - arguments: "-NOSCREENMESSAGES" when: - os: windows store: steam - workingDir: /Binaries/Win32 + workingDir: "/Binaries/Win32" steam: id: 241260 -'Sherlock Holmes: Nemesis - Remastered': +"Sherlock Holmes: Nemesis - Remastered": files: - /Games/sherlock holmes versus arsene lupin/setup.ini: + "/Games/sherlock holmes versus arsene lupin/setup.ini": tags: - config when: @@ -467047,24 +468288,24 @@ Sherlock Holmes versus Jack the Ripper: installDir: Sherlock Holmes Nemesis: {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: id: 11040 -'Sherlock Holmes: Secret of the Silver Earring': +"Sherlock Holmes: Secret of the Silver Earring": files: - /game.log: + "/game.log": tags: - save when: - os: windows - /save: + "/save": tags: - save when: - os: windows - /setup.ini: + "/setup.ini": tags: - config when: @@ -467074,19 +468315,19 @@ Sherlock Holmes versus Jack the Ripper: installDir: Sherlock Holmes The Secret of the Silver Earring: {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: id: 11150 -'Sherlock Holmes: The Awakened (2023)': +"Sherlock Holmes: The Awakened (2023)": files: - /SH3RE/Saved/Config/WindowsNoEditor: + "/SH3RE/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /SH3RE/Saved/SaveGames: + "/SH3RE/Saved/SaveGames": tags: - save when: @@ -467096,26 +468337,26 @@ Sherlock Holmes versus Jack the Ripper: installDir: Sherlock Holmes The Awakened: {} launch: - /SH3RE/Binaries/Win64/SHTA.exe: + "/SH3RE/Binaries/Win64/SHTA.exe": - when: - bit: 64 os: windows store: steam steam: id: 1949030 -'Sherlock Holmes: The Awakened - Remastered': +"Sherlock Holmes: The Awakened - Remastered": files: - /game.ini: + "/game.ini": tags: - config when: - os: windows - /Games/sherlock holmes - the awakened - remastered/save: + "/Games/sherlock holmes - the awakened - remastered/save": tags: - save when: - os: windows - /Games/sherlock holmes - the awakened - remastered/setup.ini: + "/Games/sherlock holmes - the awakened - remastered/setup.ini": tags: - config when: @@ -467125,19 +468366,19 @@ Sherlock Holmes versus Jack the Ripper: installDir: Sherlock Holmes The Awakened - Remastered: {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: id: 11140 -'Sherlock Holmes: The Devil''s Daughter': +"Sherlock Holmes: The Devil's Daughter": files: - /My Games/Sherlock Holmes - The Devil's Daughter: + "/My Games/Sherlock Holmes - The Devil's Daughter": tags: - save when: - os: windows - /My Games/Sherlock Holmes - The Devil's Daughter/SH8GAME/Config: + "/My Games/Sherlock Holmes - The Devil's Daughter/SH8GAME/Config": tags: - config when: @@ -467145,19 +468386,19 @@ Sherlock Holmes versus Jack the Ripper: gog: id: 1839766730 installDir: - Sherlock Holmes - The Devil's Daughter: {} + "Sherlock Holmes - The Devil's Daughter": {} launch: - /Binaries/Win64/Sherlock.exe: - - arguments: '-NOSCREENMESSAGES -SEEKFREELOADINGPCCONSOLE' + "/Binaries/Win64/Sherlock.exe": + - arguments: "-NOSCREENMESSAGES -SEEKFREELOADINGPCCONSOLE" when: - os: windows store: steam - workingDir: /Binaries/Win64 + workingDir: "/Binaries/Win64" steam: id: 350640 -'Sherlock Holmes: The Mystery of the Mummy': +"Sherlock Holmes: The Mystery of the Mummy": files: - /data: + "/data": tags: - save when: @@ -467165,29 +468406,29 @@ Sherlock Holmes versus Jack the Ripper: installDir: Sherlock Holmes The Mystery of The Mummy: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: id: 11130 -'Sherlock Holmes: The Mystery of the Persian Carpet': +"Sherlock Holmes: The Mystery of the Persian Carpet": installDir: Sherlock Holmes Mystery of the Persian Carpet: {} launch: - /casual.exe: + "/casual.exe": - when: - store: steam steam: id: 11180 -'Sherlock Holmes: Trap for the Hunter': +"Sherlock Holmes: Trap for the Hunter": installDir: Holmes 2: {} launch: - /Sherlock Holmes 2.app: + "/Sherlock Holmes 2.app": - when: - os: mac store: steam - /Sherlock Holmes 2.exe: + "/Sherlock Holmes 2.exe": - when: - os: windows store: steam @@ -467197,7 +468438,7 @@ Shi Yang teach you to prevent disaster prevention: installDir: Shi Yang teach you to learn disaster prevention: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -467207,7 +468448,7 @@ Shibui Coliseum: installDir: Shibui Coliseum: {} launch: - /Airstrike.exe: + "/Airstrike.exe": - when: - os: windows store: steam @@ -467217,21 +468458,24 @@ Shield Impact: installDir: Shield Impact: {} launch: - /Shield Impact.app/Contents/MacOS/Shield Impact: + "/Shield Impact.app/Contents/MacOS/Shield Impact": - when: - os: mac store: steam - /Shield Impact.exe: + "/Shield Impact.exe": - when: - os: windows store: steam + - bit: 64 + os: linux + store: steam steam: id: 771680 Shield Shock: installDir: Shield Shock: {} launch: - /ShieldShock.exe: + "/ShieldShock.exe": - when: - os: windows store: steam @@ -467240,11 +468484,11 @@ Shield Shock: Shields Up! VR: steam: id: 806650 -'Shieldwall Chronicles: Swords of the North': +"Shieldwall Chronicles: Swords of the North": installDir: Shieldwall Chronicles Swords of the North: {} launch: - /Shieldwall Chronicles Swords of the North.exe: + "/Shieldwall Chronicles Swords of the North.exe": - when: - bit: 64 os: windows @@ -467255,7 +468499,7 @@ Shift: installDir: Shift: {} launch: - /SHIFT.exe: + "/SHIFT.exe": - when: - os: windows store: steam @@ -467263,12 +468507,12 @@ Shift: id: 485730 Shift 2 Unleashed: files: - /SHIFT 2 UNLEASHED/graphicsconfig.xml: + "/SHIFT 2 UNLEASHED/graphicsconfig.xml": tags: - config when: - os: windows - /SHIFT 2 UNLEASHED/profiles/default.sav: + "/SHIFT 2 UNLEASHED/profiles/default.sav": tags: - save when: @@ -467276,10 +468520,10 @@ Shift 2 Unleashed: installDir: Need For Speed Shift 2: {} launch: - /SHIFT2U.exe: + "/SHIFT2U.exe": - when: - store: steam - /Support/EA Help/Electronic_Arts_Technical_Support.htm: + "/Support/EA Help/Electronic_Arts_Technical_Support.htm": - when: - store: steam steam: @@ -467288,16 +468532,16 @@ Shift Happens: installDir: Shift Happens: {} launch: - /Shift Happens.exe: + "/Shift Happens.exe": - when: - os: windows store: steam - /Shift Happens.x86: + "/Shift Happens.x86": - when: - bit: 32 os: linux store: steam - /Shift Happens.x86_64: + "/Shift Happens.x86_64": - when: - bit: 64 os: linux @@ -467308,15 +468552,15 @@ Shift Orb: installDir: shift-orb: {} launch: - /shiftorb.app: + "/shiftorb.app": - when: - os: mac store: steam - /shiftorb.exe: + "/shiftorb.exe": - when: - os: windows store: steam - /shiftorb.x86: + "/shiftorb.x86": - when: - bit: 32 os: linux @@ -467325,12 +468569,12 @@ Shift Orb: id: 455480 Shift Quantum: files: - /ShiftQuantum/Saved/Config/WindowsNoEditor: + "/ShiftQuantum/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /ShiftQuantum/Saved/SaveGames: + "/ShiftQuantum/Saved/SaveGames": tags: - save when: @@ -467343,7 +468587,7 @@ Shift Shaft: installDir: Shift Shafts: {} launch: - /Shift Shaft.exe: + "/Shift Shaft.exe": - when: - os: windows store: steam @@ -467353,7 +468597,7 @@ Shiftlings: installDir: Shiftlings: {} launch: - /Shiftlings.exe: + "/Shiftlings.exe": - when: - store: steam registry: @@ -467366,15 +468610,15 @@ Shigatari: installDir: Shigatari: {} launch: - /Shigatari.app: + "/Shigatari.app": - when: - os: mac store: steam - /Shigatari.exe: + "/Shigatari.exe": - when: - os: windows store: steam - /Shigatari.sh: + "/Shigatari.sh": - when: - os: linux store: steam @@ -467384,11 +468628,11 @@ Shiki: installDir: Shiki: {} launch: - /Shiki.app: + "/Shiki.app": - when: - os: mac store: steam - /Shiki.exe: + "/Shiki.exe": - when: - os: windows store: steam @@ -467398,7 +468642,7 @@ Shimmer: installDir: Shimmer: {} launch: - /Shimmer.exe: + "/Shimmer.exe": - when: - os: windows store: steam @@ -467406,12 +468650,12 @@ Shimmer: id: 883370 Shin Megami Tensei III Nocturne HD Remaster: files: - /SEGA/smt3hd//SMT3HDCONFIG: + "/SEGA/smt3hd//SMT3HDCONFIG": tags: - config when: - os: windows - /SEGA/smt3hd//SMT3HDDATA.sav: + "/SEGA/smt3hd//SMT3HDDATA.sav": tags: - save when: @@ -467419,16 +468663,16 @@ Shin Megami Tensei III Nocturne HD Remaster: installDir: smt3hd: {} launch: - /smt3hd.exe: + "/smt3hd.exe": - when: - bit: 64 os: windows store: steam steam: id: 1413480 -'Shin Megami Tensei: Synchronicity Prologue': +"Shin Megami Tensei: Synchronicity Prologue": files: - /config: + "/config": tags: - config - save @@ -467438,31 +468682,31 @@ Shin Samurai Jazz: installDir: Shin Samurai Jazz: {} launch: - /Shin Samurai Jazz.exe: + "/Shin Samurai Jazz.exe": - when: - store: steam steam: id: 354970 Shin Sangokumusou 4 Special: files: - /KOEI/Shin Sangokumusou 4 Special/Savedata/save.dat: + "/KOEI/Shin Sangokumusou 4 Special/Savedata/save.dat": tags: - save when: - os: windows - /KOEI/Shin Sangokumusou 4 Special/inputmap*.dat: + "/KOEI/Shin Sangokumusou 4 Special/inputmap*.dat": tags: - config when: - os: windows Shin Sangokumusou 6 with Moushouden: files: - /TecmoKoei/Shin Sangokumusou 6 with Moushouden/Savedata/save.dat: + "/TecmoKoei/Shin Sangokumusou 6 with Moushouden/Savedata/save.dat": tags: - save when: - os: windows - /TecmoKoei/Shin Sangokumusou 6 with Moushouden/inputmap*.dat: + "/TecmoKoei/Shin Sangokumusou 6 with Moushouden/inputmap*.dat": tags: - config when: @@ -467470,8 +468714,8 @@ Shin Sangokumusou 6 with Moushouden: installDir: Shin Sangokumusou 6 TC: {} launch: - /SM6TC.exe: - - arguments: '' + "/SM6TC.exe": + - arguments: "" when: - store: steam registry: @@ -467480,17 +468724,18 @@ Shin Sangokumusou 6 with Moushouden: - config steam: id: 211140 -'Shin-chan: Me and the Professor on Summer Vacation - The Endless Seven-Day Journey': +"Shin-chan: Me and the Professor on Summer Vacation - The Endless Seven-Day Journey": files: - /Documents/My Games/Shin chan Summer/Steam//CGP: + "/Documents/My Games/Shin chan Summer/Steam//CGP": tags: - save when: - - store: steam + - os: windows + store: steam installDir: Shin chan Summer Vacation: {} launch: - /Shin chan Summer.exe: + "/Shin chan Summer.exe": - when: - store: steam registry: @@ -467499,41 +468744,41 @@ Shin Sangokumusou 6 with Moushouden: - config steam: id: 2061250 -Shine's Adventures 2 (Zombie Attack): +"Shine's Adventures 2 (Zombie Attack)": installDir: - Shine's Adventures 2 (Zombie Attack): {} + "Shine's Adventures 2 (Zombie Attack)": {} launch: - /Shine2.exe: + "/Shine2.exe": - when: - os: windows store: steam steam: id: 1105410 -Shine's Adventures 3 (Sea Fight): +"Shine's Adventures 3 (Sea Fight)": installDir: - Shine's Adventures 3 (Sea Fight): {} + "Shine's Adventures 3 (Sea Fight)": {} launch: - /Shine3.exe: + "/Shine3.exe": - when: - os: windows store: steam steam: id: 1208050 -Shine's Adventures 5(World Of Box): +"Shine's Adventures 5(World Of Box)": installDir: - Shine's Adventures 5(World Of Box): {} + "Shine's Adventures 5(World Of Box)": {} launch: - /Shine5.exe: + "/Shine5.exe": - when: - os: windows store: steam steam: id: 1203990 -Shine's Adventures 6 (Go! Girls): +"Shine's Adventures 6 (Go! Girls)": installDir: - Shine's Adventures 6 (Go! Girls): {} + "Shine's Adventures 6 (Go! Girls)": {} launch: - /Shine6.exe: + "/Shine6.exe": - when: - os: windows store: steam @@ -467550,7 +468795,7 @@ ShineG In Bumpercat: id: 976440 ShineG In The Bullethell: files: - /AppData/LocalLow/DefaultCompany/ShineG_IB: + "/AppData/LocalLow/DefaultCompany/ShineG_IB": tags: - config when: @@ -467562,7 +468807,7 @@ ShineG In The SeaFight: id: 733650 ShineG In The Zombies: files: - /AppData/LocalLow/DefaultCompany/ShineGInTheZombies: + "/AppData/LocalLow/DefaultCompany/ShineGInTheZombies": tags: - save when: @@ -467572,14 +468817,14 @@ ShineG In The Zombies: ShineG in Future Factory: steam: id: 821730 -'Shiness: The Lightning Kingdom': +"Shiness: The Lightning Kingdom": files: - /My Games/Shiness/Binaries/Savegame: + "/My Games/Shiness/Binaries/Savegame": tags: - save when: - os: windows - /My Games/Shiness/ShinessGame/Config: + "/My Games/Shiness/ShinessGame/Config": tags: - config when: @@ -467590,7 +468835,7 @@ ShineG in Future Factory: id: 366640 Shing!: files: - /unity3d/MassCreation/Shing!/prefs: + "/unity3d/MassCreation/Shing!/prefs": tags: - config when: @@ -467608,16 +468853,19 @@ Shing!: installDir: Shing!: {} launch: - /Shing!.app/Contents/MacOS/Shing!: + "/Shing!.app/Contents/MacOS/Shing!": - when: - os: mac store: steam - /Shing!.exe: + "/Shing!.exe": - when: - bit: 32 os: windows store: steam - /Shing!.x86_64: + - bit: 64 + os: windows + store: steam + "/Shing!.x86_64": - when: - os: linux store: steam @@ -467627,11 +468875,11 @@ Shining City: installDir: Shining: {} launch: - /Shining.app: + "/Shining.app": - when: - os: mac store: steam - /Shining.exe: + "/Shining.exe": - when: - bit: 64 os: windows @@ -467640,22 +468888,22 @@ Shining City: id: 1133570 Shining Force: files: - /SEGA Genesis Classics/0038: + "/SEGA Genesis Classics/0038": tags: - save when: - os: windows - /SEGA Genesis Classics/setup.dat: + "/SEGA Genesis Classics/setup.dat": tags: - config when: - os: windows - /SEGA Mega Drive Classics/0038: + "/SEGA Mega Drive Classics/0038": tags: - save when: - os: windows - /SEGA Mega Drive Classics/setup.dat: + "/SEGA Mega Drive Classics/setup.dat": tags: - config when: @@ -467664,37 +468912,37 @@ Shining Force: id: 71120 Shining Force II: files: - /SEGA Genesis Classics/0039: + "/SEGA Genesis Classics/0039": tags: - save when: - os: windows - /SEGA Genesis Classics/setup.dat: + "/SEGA Genesis Classics/setup.dat": tags: - config when: - os: windows - /SEGA Mega Drive Classics/0039: + "/SEGA Mega Drive Classics/0039": tags: - save when: - os: windows - /SEGA Mega Drive Classics/setup.dat: + "/SEGA Mega Drive Classics/setup.dat": tags: - config when: - os: windows steam: id: 71160 -'Shining Hotel: Lost in Nowhere': +"Shining Hotel: Lost in Nowhere": installDir: Shining Hotel: {} launch: - /Shining Hotel - Lost in Nowhere.app/Contents/MacOS/Shining Hotel - Lost in Nowhere: + "/Shining Hotel - Lost in Nowhere.app/Contents/MacOS/Shining Hotel - Lost in Nowhere": - when: - os: mac store: steam - /Shining Hotel - Lost in Nowhere.exe: + "/Shining Hotel - Lost in Nowhere.exe": - when: - os: windows store: steam @@ -467704,7 +468952,7 @@ Shining Jump Jump: installDir: ShiningJumpJump: {} launch: - /ShiningJumpJump.exe: + "/ShiningJumpJump.exe": - when: - os: windows store: steam @@ -467714,8 +468962,8 @@ Shining Orb Prequel: installDir: Shining Orb Prequel: {} launch: - /Game.exe: - - arguments: '--in-process-gpu' + "/Game.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam @@ -467725,7 +468973,7 @@ Shining Plume: installDir: Shining Plume: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: @@ -467734,19 +468982,19 @@ Shining Plume 2: installDir: Shining Plume 2: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: id: 597810 Shining Resonance Refrain: files: - /configdata/GRAPHICCFG.DAT: + "/configdata/GRAPHICCFG.DAT": tags: - config when: - os: windows - /userdata//809890/remote/PLAYDATA0.DAT: + "/userdata//809890/remote/PLAYDATA0.DAT": tags: - save when: @@ -467754,14 +469002,14 @@ Shining Resonance Refrain: installDir: ShiningResonanceRefrain: {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: id: 809890 Shining Song Starnova: files: - /.renpy/ShiningSongStarnova-SaveData: + "/.renpy/ShiningSongStarnova-SaveData": tags: - save when: @@ -467771,27 +469019,27 @@ Shining Song Starnova: installDir: Shining Song Starnova: {} launch: - /ShiningSongStarnova.app: + "/ShiningSongStarnova.app": - when: - os: mac store: steam - /ShiningSongStarnova.exe: + "/ShiningSongStarnova.exe": - when: - os: windows store: steam - /ShiningSongStarnova.sh: + "/ShiningSongStarnova.sh": - when: - os: linux store: steam steam: id: 675240 -'Shining Song Starnova: Idol Empire': +"Shining Song Starnova: Idol Empire": gog: id: 1431825456 installDir: SHINING SONG STARNOVA IDOL EMPIRE: {} launch: - /Starnova Idol Empire.exe: + "/Starnova Idol Empire.exe": - when: - os: windows store: steam @@ -467801,7 +469049,7 @@ Shining Souls: installDir: ShiningSouls: {} launch: - /ShiningSouls.exe: + "/ShiningSouls.exe": - when: - bit: 64 os: windows @@ -467810,22 +469058,22 @@ Shining Souls: id: 910380 Shining in the Darkness: files: - /SEGA Genesis Classics/0040: + "/SEGA Genesis Classics/0040": tags: - save when: - os: windows - /SEGA Genesis Classics/setup.dat: + "/SEGA Genesis Classics/setup.dat": tags: - config when: - os: windows - /SEGA Mega Drive Classics/0040: + "/SEGA Mega Drive Classics/0040": tags: - save when: - os: windows - /SEGA Mega Drive Classics/setup.dat: + "/SEGA Mega Drive Classics/setup.dat": tags: - config when: @@ -467836,30 +469084,30 @@ Shinobi Bad Buddies: installDir: Shinobi Bad Buddies: {} launch: - /ShinobiBadBuddies.exe: + "/ShinobiBadBuddies.exe": - when: - os: windows store: steam steam: id: 786350 -'Shinobi III: Return of the Ninja Master': +"Shinobi III: Return of the Ninja Master": files: - /SEGA Genesis Classics/0007: + "/SEGA Genesis Classics/0007": tags: - save when: - os: windows - /SEGA Genesis Classics/setup.dat: + "/SEGA Genesis Classics/setup.dat": tags: - config when: - os: windows - /SEGA Mega Drive Classics/0007: + "/SEGA Mega Drive Classics/0007": tags: - save when: - os: windows - /SEGA Mega Drive Classics/setup.dat: + "/SEGA Mega Drive Classics/setup.dat": tags: - config when: @@ -467870,14 +469118,14 @@ Shinobi Spirits S Legend of Heroes/忍スピリッツS 真田獣勇士伝: installDir: Shinobi Spirits S Legend of Heroes: {} launch: - /Shinobi Spirits S Legend of Heroes.exe: + "/Shinobi Spirits S Legend of Heroes.exe": - when: - bit: 64 os: windows store: steam steam: id: 1110220 -'Shinrin-yoku: Forest Meditation and Relaxation': +"Shinrin-yoku: Forest Meditation and Relaxation": installDir: Shinrin-yoku: {} steam: @@ -467886,7 +469134,7 @@ Shiny: installDir: Shiny: {} launch: - /Shiny.exe: + "/Shiny.exe": - when: - store: steam steam: @@ -467895,7 +469143,7 @@ Shiny Gauntlet: installDir: Shiny Gauntlet: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -467908,15 +469156,15 @@ Shiny the Firefly: installDir: Shiny The Firefly: {} launch: - /Shiny.app: + "/Shiny.app": - when: - os: mac store: steam - /Shiny.exe: + "/Shiny.exe": - when: - os: windows store: steam - /Shiny.x86: + "/Shiny.x86": - when: - os: linux store: steam @@ -467924,7 +469172,7 @@ Shiny the Firefly: id: 277510 Shio: files: - /AppData/LocalLow/CoconutIslandStudio/SHIO/savedata.dat: + "/AppData/LocalLow/CoconutIslandStudio/SHIO/savedata.dat": tags: - save when: @@ -467932,11 +469180,11 @@ Shio: installDir: Shio: {} launch: - /Shio.app/Contents/MacOS/Shio: + "/Shio.app/Contents/MacOS/Shio": - when: - os: mac store: steam - /Shio.exe: + "/Shio.exe": - when: - os: windows store: steam @@ -467958,7 +469206,7 @@ Ship Fight: installDir: Ship Fight: {} launch: - /Ship Fight.exe: + "/Ship Fight.exe": - when: - os: windows store: steam @@ -467966,7 +469214,7 @@ Ship Fight: id: 997500 Ship Graveyard Simulator: files: - /ShipGraveyard/Saved/SaveGames/SGSGame1/*.sav: + "/ShipGraveyard/Saved/SaveGames/SGSGame1/*.sav": tags: - save when: @@ -467978,7 +469226,7 @@ Ship Graveyard Simulator: installDir: Ship Graveyard Simulator: {} launch: - /ShipGraveyard.exe: + "/ShipGraveyard.exe": - when: - bit: 64 os: windows @@ -467987,12 +469235,12 @@ Ship Graveyard Simulator: id: 1286880 Ship Graveyard Simulator 2: files: - /ShipGraveyard2/Saved/SaveGames/*.sav: + "/ShipGraveyard2/Saved/SaveGames/*.sav": tags: - save when: - os: windows - /ShipGraveyard2/Saved/SaveGames/Settings/*.sav: + "/ShipGraveyard2/Saved/SaveGames/Settings/*.sav": tags: - config when: @@ -468000,7 +469248,7 @@ Ship Graveyard Simulator 2: installDir: Ship Graveyard Simulator 2: {} launch: - /ShipGraveyard2.exe: + "/ShipGraveyard2.exe": - when: - os: windows store: steam @@ -468018,20 +469266,20 @@ Ship Simulator Extremes: installDir: Ship Simulator Extremes: {} launch: - /Steam.exe: + "/Steam.exe": - when: - store: steam steam: id: 48800 -'Ship Simulator: Maritime Search and Rescue': +"Ship Simulator: Maritime Search and Rescue": installDir: Ship Simulator Maritime Search and Rescue: {} launch: - /SARShipSimulator.exe: + "/SARShipSimulator.exe": - when: - os: windows store: steam - /Ship Simulator - Maritime Search and Rescue.app: + "/Ship Simulator - Maritime Search and Rescue.app": - when: - os: mac store: steam @@ -468039,7 +469287,7 @@ Ship Simulator Extremes: id: 274010 ShipLord: files: - /ShipLord/: + "/ShipLord/": tags: - config - save @@ -468048,22 +469296,28 @@ ShipLord: installDir: ShipLord: {} launch: - /Shiplord.app/Contents/MacOS/Shiplord: + "/Shiplord.app/Contents/MacOS/Shiplord": - when: - bit: 32 os: mac store: steam - /Shiplord.exe: + - bit: 64 + os: mac + store: steam + "/Shiplord.exe": - when: - bit: 32 os: windows store: steam - /Shiplord.x86: + - bit: 64 + os: windows + store: steam + "/Shiplord.x86": - when: - bit: 32 os: linux store: steam - /Shiplord.x86_64: + "/Shiplord.x86_64": - when: - bit: 64 os: linux @@ -468077,7 +469331,7 @@ Shiperoids: installDir: Shiperoids: {} launch: - /Shiperoids.exe: + "/Shiperoids.exe": - when: - os: windows store: steam @@ -468087,20 +469341,20 @@ Shipped: installDir: Shipped: {} launch: - /Shipped.app: + "/Shipped.app": - when: - os: mac store: steam - /Shipped.exe: + "/Shipped.exe": - when: - os: windows store: steam - /Shipped.x86: + "/Shipped.x86": - when: - bit: 32 os: linux store: steam - /Shipped.x86_64: + "/Shipped.x86_64": - when: - bit: 64 os: linux @@ -468111,7 +469365,7 @@ Ships 2017: installDir: Ship Special: {} launch: - /Ships2017.exe: + "/Ships2017.exe": - when: - os: windows store: steam @@ -468119,19 +469373,19 @@ Ships 2017: id: 439460 Shipwreck: files: - /Library/Application Support/Brushfire Games/Shipwreck: + "/Library/Application Support/Brushfire Games/Shipwreck": tags: - config - save when: - os: mac - /My Games/Shipwreck: + "/My Games/Shipwreck": tags: - config - save when: - os: windows - /Brushfire Games/Shipwreck: + "/Brushfire Games/Shipwreck": tags: - config - save @@ -468140,25 +469394,25 @@ Shipwreck: installDir: Shipwreck: {} launch: - /Shipwreck: + "/Shipwreck": - when: - os: linux store: steam - /Shipwreck.app/Contents/MacOS/Shipwreck: + "/Shipwreck.app/Contents/MacOS/Shipwreck": - when: - os: mac store: steam - /Shipwreck.exe: + "/Shipwreck.exe": - when: - os: windows store: steam steam: id: 342490 -'Shiren the Wanderer: The Tower of Fortune and the Dice of Fate': +"Shiren the Wanderer: The Tower of Fortune and the Dice of Fate": installDir: shirenthewanderer5plus: {} launch: - /ShirenTheWanderer5plusLauncher.exe: + "/ShirenTheWanderer5plusLauncher.exe": - when: - bit: 64 os: windows @@ -468169,8 +469423,8 @@ Shirina: installDir: Shirina: {} launch: - /nw.exe: - - arguments: '--in-process-gpu' + "/nw.exe": + - arguments: "--in-process-gpu" when: - bit: 64 os: windows @@ -468181,7 +469435,7 @@ Shiro 011: installDir: SHiRO 011: {} launch: - /SHiRO_011.exe: + "/SHiRO_011.exe": - when: - bit: 64 os: windows @@ -468192,20 +469446,20 @@ Shisensho Solitaire: installDir: Shisensho Solitaire: {} launch: - /ShisenshoSolitaire.exe: + "/ShisenshoSolitaire.exe": - when: - os: windows store: steam steam: id: 1161360 -'Shishi : Ballad of the Oracle': +"Shishi : Ballad of the Oracle": steam: id: 1104570 Shit Storm: installDir: Shit Storm: {} launch: - /Shit Storm.exe: + "/Shit Storm.exe": - when: - os: windows store: steam @@ -468213,17 +469467,17 @@ Shit Storm: id: 743110 Shiver: files: - /AppData/LocalLow/Kowai Sugoi Studios/Shiver/*.save: + "/AppData/LocalLow/Kowai Sugoi Studios/Shiver/*.save": tags: - save when: - os: windows - /unity3d/Kowai Sugoi Studios/Shiver/*.save: + "/unity3d/Kowai Sugoi Studios/Shiver/*.save": tags: - save when: - os: linux - /unity3d/Kowai Sugoi Studios/Shiver/prefs: + "/unity3d/Kowai Sugoi Studios/Shiver/prefs": tags: - config when: @@ -468231,15 +469485,15 @@ Shiver: installDir: Shiver: {} launch: - /Shiver.app: + "/Shiver.app": - when: - os: mac store: steam - /Shiver.exe: + "/Shiver.exe": - when: - os: windows store: steam - /Shiver.x86: + "/Shiver.x86": - when: - os: linux store: steam @@ -468249,30 +469503,30 @@ Shiver: - config steam: id: 727730 -'Shiver: Poltergeist': +"Shiver: Poltergeist": installDir: - Shiver Poltergeist Collector's Edition: {} + "Shiver Poltergeist Collector's Edition": {} launch: - /SHIVER_PoltergeistCE.exe: + "/SHIVER_PoltergeistCE.exe": - when: - store: steam steam: id: 545640 -'Shiver: The Lily''s Requiem': +"Shiver: The Lily's Requiem": installDir: - Shiver The Lily's Requiem Collector's Edition: {} + "Shiver The Lily's Requiem Collector's Edition": {} launch: - /Shiver_TheLilysRequiem_CE.exe: + "/Shiver_TheLilysRequiem_CE.exe": - when: - os: windows store: steam steam: id: 866710 -'Shiver: Vanishing Hitchhiker': +"Shiver: Vanishing Hitchhiker": installDir: - Shiver Vanishing Hitchhiker Collector's Edition: {} + "Shiver Vanishing Hitchhiker Collector's Edition": {} launch: - /SHIVER_VanishingHitchhiker.exe: + "/SHIVER_VanishingHitchhiker.exe": - when: - store: steam steam: @@ -468281,7 +469535,7 @@ Shivering Sky: installDir: B25Game: {} launch: - /B25A.exe: + "/B25A.exe": - when: - os: windows store: steam @@ -468290,30 +469544,30 @@ Shivering Sky: Shivers: gog: id: 2007520286 -'Shivers Two: Harvest of Souls': +"Shivers Two: Harvest of Souls": gog: id: 1883703475 -'Shizue: Innocent curse': +"Shizue: Innocent curse": steam: id: 1060340 Shmadow: installDir: Shmadow: {} launch: - /shmadow.app: + "/shmadow.app": - when: - os: mac store: steam - /shmadow.exe: + "/shmadow.exe": - when: - os: windows store: steam - /shmadow.x86: + "/shmadow.x86": - when: - bit: 32 os: linux store: steam - /shmadow.x86_64: + "/shmadow.x86_64": - when: - bit: 64 os: linux @@ -468324,7 +469578,7 @@ Shmup Arena: installDir: Shmup Arena: {} launch: - /Shmup Arena.exe: + "/Shmup Arena.exe": - when: - store: steam steam: @@ -468333,26 +469587,26 @@ Shmup Love Boom: installDir: Shmup Love Boom: {} launch: - /Shmup Love Boom.app: + "/Shmup Love Boom.app": - when: - os: mac store: steam - /Shmup Love Boom.exe: + "/Shmup Love Boom.exe": - when: - os: windows store: steam - /Shmup Love Boom.x86: + "/Shmup Love Boom.x86": - when: - os: linux store: steam - workingDir: /SLBLinux + workingDir: "/SLBLinux" steam: id: 387110 Shmup Moments: installDir: ShmupMoments: {} launch: - /ManyBullets.exe: + "/ManyBullets.exe": - when: - store: steam steam: @@ -468361,7 +469615,7 @@ Shmups Skill Test: installDir: Shmups Skill Test: {} launch: - /sst.exe: + "/sst.exe": - when: - store: steam steam: @@ -468370,15 +469624,15 @@ Shn!p: installDir: Shnip: {} launch: - /linux_content/Shnip.x86_64: + "/linux_content/Shnip.x86_64": - when: - os: linux store: steam - /macos_content/Shnip.app: + "/macos_content/Shnip.app": - when: - os: mac store: steam - /windows_content/Shnip.exe: + "/windows_content/Shnip.exe": - when: - os: windows store: steam @@ -468388,7 +469642,7 @@ Shock Tactics: installDir: Shock Tactics: {} launch: - /ShockTactics.exe: + "/ShockTactics.exe": - when: - bit: 64 os: windows @@ -468397,7 +469651,7 @@ Shock Tactics: id: 473610 Shock Troopers: files: - /shocktro: + "/shocktro": tags: - config when: @@ -468407,14 +469661,14 @@ Shock Troopers: installDir: SHOCK TROOPERS: {} launch: - /shocktro.exe: + "/shocktro.exe": - when: - store: steam steam: id: 366270 -'Shock Troopers: 2nd Squad': +"Shock Troopers: 2nd Squad": files: - /shocktr2: + "/shocktr2": tags: - config when: @@ -468424,7 +469678,7 @@ Shock Troopers: installDir: SHOCK TROOPERS 2nd Squad: {} launch: - /shocktr2.exe: + "/shocktr2.exe": - when: - os: windows store: steam @@ -468434,7 +469688,7 @@ ShockRods: installDir: ShockRods: {} launch: - /ShockRods.exe: + "/ShockRods.exe": - when: - os: windows store: steam @@ -468444,15 +469698,15 @@ Shoemaker: installDir: Shoemaker: {} launch: - /Shoemaker.app/Contents/MacOS/Shoemaker: + "/Shoemaker.app/Contents/MacOS/Shoemaker": - when: - os: mac store: steam - /Shoemaker.exe: + "/Shoemaker.exe": - when: - os: windows store: steam - /Shoemaker.x86: + "/Shoemaker.x86": - when: - os: linux store: steam @@ -468462,21 +469716,21 @@ Shofer Race Driver: installDir: SHOFER Race Driver: {} launch: - /SHOFER Race Driver.exe: + "/SHOFER Race Driver.exe": - when: - os: windows store: steam steam: id: 367700 -'Shogo: Mobile Armor Division': +"Shogo: Mobile Armor Division": files: - /Save: + "/Save": tags: - save when: - os: windows - os: linux - /autoexec.cfg: + "/autoexec.cfg": tags: - config when: @@ -468487,32 +469741,32 @@ Shofer Race Driver: installDir: Shogo Mobile Armor Division: {} launch: - /Start.exe: + "/Start.exe": - when: - store: steam steam: id: 610860 -'Shogun''s Empire: Hex Commander': +"Shogun's Empire: Hex Commander": installDir: - Shogun's Empire Hex Commander: {} + "Shogun's Empire Hex Commander": {} launch: - /Shogun.exe: + "/Shogun.exe": - when: - os: windows store: steam - /Shogun.x86_64: + "/Shogun.x86_64": - when: - os: linux store: steam - /ShogunOSX.app: + "/ShogunOSX.app": - when: - os: mac store: steam steam: id: 1093760 -'Shogun: Total War': +"Shogun: Total War": files: - /savegames: + "/savegames": tags: - save when: @@ -468520,14 +469774,14 @@ Shofer Race Driver: installDir: Total War Shogun 1 Gold: {} launch: - /launcher/launcher.exe: + "/launcher/launcher.exe": - when: - store: steam steam: id: 345240 Shonen Idle Z: files: - /shonenidlez: + "/shonenidlez": tags: - save when: @@ -468535,29 +469789,29 @@ Shonen Idle Z: installDir: Shonen Idle Z: {} launch: - /shonenidlez: + "/shonenidlez": - when: - os: linux store: steam - /shonenidlez.app: + "/shonenidlez.app": - when: - os: mac store: steam - /shonenidlez.exe: + "/shonenidlez.exe": - when: - os: windows store: steam steam: id: 492800 -Shoot 'm Up: +"Shoot 'm Up": installDir: shootmup: {} launch: - /ShootMUp: + "/ShootMUp": - when: - os: linux store: steam - /shootmup.exe: + "/shootmup.exe": - when: - os: windows store: steam @@ -468567,7 +469821,7 @@ Shoot 1UP: installDir: Shoot 1UP: {} launch: - /Shoot1UP.exe: + "/Shoot1UP.exe": - when: - store: steam steam: @@ -468580,7 +469834,7 @@ Shoot Loop VR: Shoot Loop VR: {} steam: id: 603970 -'Shoot Mania VR: Fun Zombies': +"Shoot Mania VR: Fun Zombies": installDir: Shoot Mania VR Fun Zombies: {} steam: @@ -468589,7 +469843,7 @@ Shoot Many Robots: installDir: Shoot Many Robots: {} launch: - /ShootManyRobots/Binaries/ShootManyRobots.exe: + "/ShootManyRobots/Binaries/ShootManyRobots.exe": - when: - store: steam steam: @@ -468604,11 +469858,11 @@ Shoot Shoot Mega Pack: installDir: Shoot Shoot Mega Pack: {} launch: - /ssmp.app/Contents/MacOS/ssmp: + "/ssmp.app/Contents/MacOS/ssmp": - when: - os: mac store: steam - /ssmp.exe: + "/ssmp.exe": - when: - os: windows store: steam @@ -468616,17 +469870,17 @@ Shoot Shoot Mega Pack: id: 467470 Shoot Shoot My Waifu: files: - /AppData/LocalLow/ZaiStudio/7SexySins Tadaima/PlayerData.dat: + "/AppData/LocalLow/ZaiStudio/7SexySins Tadaima/PlayerData.dat": tags: - save when: - os: windows - /unity3d/ZaiStudio/7SexySins Tadaima/PlayerData.dat: + "/unity3d/ZaiStudio/7SexySins Tadaima/PlayerData.dat": tags: - save when: - os: linux - /unity3d/ZaiStudio/7SexySins Tadaima/prefs: + "/unity3d/ZaiStudio/7SexySins Tadaima/prefs": tags: - config when: @@ -468634,15 +469888,15 @@ Shoot Shoot My Waifu: installDir: Shoot Shoot My Waifu: {} launch: - /Shoot Shoot My Waifu.app: + "/Shoot Shoot My Waifu.app": - when: - os: mac store: steam - /Shoot Shoot My Waifu.exe: + "/Shoot Shoot My Waifu.exe": - when: - os: windows store: steam - /Shoot Shoot My Waifu.x86_64: + "/Shoot Shoot My Waifu.x86_64": - when: - os: linux store: steam @@ -468657,7 +469911,7 @@ Shoot the Bullet: installDir: th95: {} launch: - /th095.exe: + "/th095.exe": - when: - os: windows store: steam @@ -468669,20 +469923,20 @@ Shoot the ball: Shoot!: steam: id: 1104200 -Shoot'n'Scroll 3D: +"Shoot'n'Scroll 3D": installDir: - Shoot'n'Scroll 3D: {} + "Shoot'n'Scroll 3D": {} launch: - /helic_P2.exe: + "/helic_P2.exe": - when: - store: steam steam: id: 936600 -'Shoot, push, portals': +"Shoot, push, portals": installDir: - 'Shoot, push, portals': {} + "Shoot, push, portals": {} launch: - /spp.exe: + "/spp.exe": - when: - os: windows store: steam @@ -468693,9 +469947,9 @@ Shoot-No-Shoot: Shoot-No-Shoot: {} steam: id: 923390 -'ShootMania: Storm': +"ShootMania: Storm": files: - /ManiaPlanet/Config: + "/ManiaPlanet/Config": tags: - config when: @@ -468703,7 +469957,7 @@ Shoot-No-Shoot: installDir: ManiaPlanet_SMStorm: {} launch: - /ManiaPlanetLauncher.exe: + "/ManiaPlanetLauncher.exe": - arguments: /silent /startuptitle=SMStorm when: - store: steam @@ -468715,7 +469969,7 @@ Shooter Game: installDir: Shooter Game: {} launch: - /ShooterGame.exe: + "/ShooterGame.exe": - when: - os: windows store: steam @@ -468725,7 +469979,7 @@ ShooterSpheres: installDir: ShooterSpheres: {} launch: - /Shoot.exe: + "/Shoot.exe": - when: - bit: 64 os: windows @@ -468739,7 +469993,7 @@ Shooting Chicken Brutal Suckers: installDir: SHOOTING CHICKEN BRUTAL SUCKERS: {} launch: - /ShootingChickenBS.exe: + "/ShootingChickenBS.exe": - when: - store: steam steam: @@ -468748,7 +470002,7 @@ Shooting Chicken Insanity Chickens: installDir: Shooting Chicken Insanity Chickens: {} launch: - /Shooting Chicken Insanity Chickens.exe: + "/Shooting Chicken Insanity Chickens.exe": - when: - os: windows store: steam @@ -468758,7 +470012,7 @@ Shooting Game KARI: installDir: Shooting Game KARI: {} launch: - /ShootingGameKari.exe: + "/ShootingGameKari.exe": - when: - store: steam steam: @@ -468767,15 +470021,15 @@ Shooting Hurts: installDir: ShootingHurts: {} launch: - /Shooting Hurts.exe: + "/Shooting Hurts.exe": - when: - os: windows store: steam - /ShootingHurts.app: + "/ShootingHurts.app": - when: - os: mac store: steam - /ShootingHurts.sh: + "/ShootingHurts.sh": - when: - os: linux store: steam @@ -468785,7 +470039,7 @@ Shooting Sports Gun Club: installDir: Gun Club: {} launch: - /Gun_Club.exe: + "/Gun_Club.exe": - when: - bit: 64 os: windows @@ -468796,14 +470050,14 @@ Shooting Star: installDir: Shooting Star: {} launch: - /Shooting Star.exe: + "/Shooting Star.exe": - when: - store: steam steam: id: 1180700 Shooting Stars!: files: - /Daedalic Entertainment GmbH/ShootingStars: + "/Daedalic Entertainment GmbH/ShootingStars": tags: - save when: @@ -468811,20 +470065,20 @@ Shooting Stars!: installDir: Shooting Stars: {} launch: - /ShootingStars.app: + "/ShootingStars.app": - when: - os: mac store: steam - /ShootingStars.exe: + "/ShootingStars.exe": - when: - bit: 64 os: windows store: steam - /ShootingStars.x86_64: + "/ShootingStars.x86_64": - when: - os: linux store: steam - /ShootingStars32.exe: + "/ShootingStars32.exe": - when: - bit: 32 os: windows @@ -468839,20 +470093,20 @@ Shootout on Cash Island: installDir: Shootout on Cash Island: {} launch: - /Shootout.app: + "/Shootout.app": - when: - os: mac store: steam - /Shootout.exe: + "/Shootout.exe": - when: - os: windows store: steam - /Shootout.x86: + "/Shootout.x86": - when: - bit: 32 os: linux store: steam - /Shootout.x86_64: + "/Shootout.x86_64": - when: - bit: 64 os: linux @@ -468863,17 +470117,17 @@ Shoottera: installDir: Shoottera: {} launch: - /start.exe: + "/start.exe": - when: - os: windows store: steam steam: id: 804970 -'Shoottris: Beyond the Classic Game': +"Shoottris: Beyond the Classic Game": installDir: Shottris Beyond the Classic Game: {} launch: - /Beyond the Classic Brick Game.exe: + "/Beyond the Classic Brick Game.exe": - when: - store: steam steam: @@ -468887,7 +470141,7 @@ Shooty Mine: installDir: Shooty Mine: {} launch: - /ShootyMine.exe: + "/ShootyMine.exe": - when: - os: windows store: steam @@ -468895,7 +470149,7 @@ Shooty Mine: id: 1167930 Shooty Skies: files: - /userdata//702810/remote/playerSave.txt: + "/userdata//702810/remote/playerSave.txt": tags: - save when: @@ -468903,16 +470157,16 @@ Shooty Skies: installDir: ShootySkies: {} launch: - /RunShooty.sh: + "/RunShooty.sh": - when: - bit: 64 os: linux store: steam - /ShootySkies.app/Contents/MacOS/ShootySkies: + "/ShootySkies.app/Contents/MacOS/ShootySkies": - when: - os: mac store: steam - /ShootySkies.exe: + "/ShootySkies.exe": - when: - bit: 64 os: windows @@ -468923,7 +470177,7 @@ Shooty Squad: installDir: Shooty Squad: {} launch: - /multiplayerTest.exe: + "/multiplayerTest.exe": - when: - bit: 64 os: windows @@ -468934,7 +470188,7 @@ Shop Battle: installDir: ShopBattle: {} launch: - /Shop battle.exe: + "/Shop battle.exe": - when: - store: steam steam: @@ -468943,18 +470197,18 @@ Shop Heroes: installDir: Shop Heroes: {} launch: - /shopheroes.exe: + "/shopheroes.exe": - when: - bit: 32 os: windows store: steam steam: id: 506140 -'Shop Manager : Video Game Tycoon': +"Shop Manager : Video Game Tycoon": installDir: Shop manager video game tycoon: {} launch: - /shopmanager.exe: + "/shopmanager.exe": - when: - os: windows store: steam @@ -468964,7 +470218,7 @@ Shop Titans: installDir: ShopTitan: {} launch: - /ShopTitan.exe: + "/ShopTitan.exe": - when: - bit: 32 os: windows @@ -468975,17 +470229,17 @@ Shop Tycoon The Boss: installDir: Shop Tycoon 2018: {} launch: - /Shoptycoon 3.2w.exe: + "/Shoptycoon 3.2w.exe": - when: - os: windows store: steam steam: id: 590660 -'Shop-n-Spree: Shopping Paradise': +"Shop-n-Spree: Shopping Paradise": installDir: Shop-n-Spree Shopping Paradise: {} launch: - /ShopNSpree_ShoppingParadise.exe: + "/ShopNSpree_ShoppingParadise.exe": - when: - store: steam steam: @@ -469002,8 +470256,8 @@ Shopkeepers Tale: installDir: Shopkeepers Tale: {} launch: - /Shopkeeper.exe: - - arguments: ' --in-process-gpu' + "/Shopkeeper.exe": + - arguments: " --in-process-gpu" when: - os: windows store: steam @@ -469011,7 +470265,7 @@ Shopkeepers Tale: id: 945950 Shoppe Keep: files: - /Shoppe Keep_Data/*.sk: + "/Shoppe Keep_Data/*.sk": tags: - config when: @@ -469019,22 +470273,28 @@ Shoppe Keep: installDir: Shoppe Keep: {} launch: - /Shoppe Keep.app: + "/Shoppe Keep.app": - when: - bit: 32 os: mac store: steam - /Shoppe Keep.exe: + - bit: 64 + os: mac + store: steam + "/Shoppe Keep.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam - /Shoppe Keep.x86: + "/Shoppe Keep.x86": - when: - bit: 32 os: linux store: steam - /Shoppe Keep.x86_64: + "/Shoppe Keep.x86_64": - when: - bit: 64 os: linux @@ -469043,7 +470303,7 @@ Shoppe Keep: id: 381120 Shoppe Keep 2: files: - /AppData/LocalLow/Strange Fire/Shoppe Keep 2/Saves: + "/AppData/LocalLow/Strange Fire/Shoppe Keep 2/Saves": tags: - save when: @@ -469056,15 +470316,15 @@ Shoppe Keep 2: - config steam: id: 684580 -'Shopping Clutter 2: Christmas Square': +"Shopping Clutter 2: Christmas Square": installDir: Shopping Clutter The Best Playground: {} launch: - /ShoppingClutter2_ChristmasSquare.app: + "/ShoppingClutter2_ChristmasSquare.app": - when: - os: mac store: steam - /ShoppingClutter2_ChristmasSquare.exe: + "/ShoppingClutter2_ChristmasSquare.exe": - when: - os: windows store: steam @@ -469074,11 +470334,11 @@ Shopping Simulator Multiplayer: installDir: SHOPPING SIMULATOR MULTIPLAYER: {} launch: - /shopSim.app: + "/shopSim.app": - when: - os: mac store: steam - /shopSim.exe: + "/shopSim.exe": - when: - os: windows store: steam @@ -469088,17 +470348,17 @@ Shopping Tycoon: installDir: Shopping Tycoon: {} launch: - /Shopping Tycoon.exe: + "/Shopping Tycoon.exe": - when: - os: windows store: steam steam: id: 659130 -'Shoppy Mart: Steam Edition': +"Shoppy Mart: Steam Edition": installDir: Shoppy Mart Steam Edition: {} launch: - /ShoppyMartSteamEdition.exe: + "/ShoppyMartSteamEdition.exe": - when: - os: windows store: steam @@ -469110,7 +470370,7 @@ Shores Unknown: installDir: Shores Unknown: {} launch: - /ProjectShore.exe: + "/ProjectShore.exe": - when: - bit: 64 os: windows @@ -469129,7 +470389,7 @@ Short Life: installDir: Short Life: {} launch: - /short_life.exe: + "/short_life.exe": - when: - os: windows store: steam @@ -469139,7 +470399,7 @@ Short Scary Stories: installDir: Short Scary Stories: {} launch: - /SSS.exe: + "/SSS.exe": - when: - os: windows store: steam @@ -469149,7 +470409,7 @@ Short Stories Collection of Class Tangerine: installDir: Short Stories Collection of Class Tangerine: {} launch: - /Tangerine.exe: + "/Tangerine.exe": - when: - os: windows store: steam @@ -469157,12 +470417,12 @@ Short Stories Collection of Class Tangerine: id: 701930 Shortest Trip to Earth: files: - /AppData/LocalLow/Interactive Fate/Shortest Trip To Earth/*.es2: + "/AppData/LocalLow/Interactive Fate/Shortest Trip To Earth/*.es2": tags: - save when: - os: windows - /Library/Application Support/Interactive Fate/Shortest Trip To Earth/*.es2: + "/Library/Application Support/Interactive Fate/Shortest Trip To Earth/*.es2": tags: - save when: @@ -469179,17 +470439,17 @@ Shortest Trip to Earth: installDir: Shortest Trip to Earth: {} launch: - /ST Earth.exe: + "/ST Earth.exe": - when: - bit: 64 os: windows store: steam - /STEarth: + "/STEarth": - when: - bit: 64 os: linux store: steam - /STEarth.app: + "/STEarth.app": - when: - os: mac store: steam @@ -469199,7 +470459,7 @@ Shot In The Dark: installDir: Shot In The Dark: {} launch: - /ShotInTheDark.exe: + "/ShotInTheDark.exe": - when: - bit: 64 os: windows @@ -469210,7 +470470,7 @@ Shot Online: installDir: ShotOnline: {} launch: - /ShotOnline.exe: + "/ShotOnline.exe": - when: - os: windows store: steam @@ -469230,7 +470490,7 @@ ShotKill: installDir: ShotKill: {} launch: - /ShotKill 1.0.0.exe: + "/ShotKill 1.0.0.exe": - when: - bit: 64 os: windows @@ -469241,26 +470501,29 @@ Shotgun Farmers: installDir: Shotgun Farmers: {} launch: - /Shotgun Farmers.app: + "/Shotgun Farmers.app": - when: - bit: 64 os: mac store: steam - /Shotgun Farmers.exe: + "/Shotgun Farmers.exe": - when: - bit: 32 os: windows store: steam - /Shotgun Farmers.x86_64: + - bit: 64 + os: windows + store: steam + "/Shotgun Farmers.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 604240 -'Shotgun King: The Final Checkmate': +"Shotgun King: The Final Checkmate": files: - /save: + "/save": tags: - save when: @@ -469273,7 +470536,7 @@ Shotgun Farmers: installDir: Shotgun King The Final Checkmate: {} launch: - /shotgun_king.exe: + "/shotgun_king.exe": - when: - os: windows store: steam @@ -469283,7 +470546,7 @@ Shotgun Legend: installDir: Shotgun Legend: {} launch: - /Shotgun Legend.exe: + "/Shotgun Legend.exe": - when: - os: windows store: steam @@ -469293,12 +470556,12 @@ Shotgun Raiders: installDir: Shotgun Raiders: {} launch: - /win32/ShotgunRaiders.exe: + "/win32/ShotgunRaiders.exe": - when: - bit: 32 os: windows store: steam - /win64/ShotgunRaiders.exe: + "/win64/ShotgunRaiders.exe": - when: - bit: 64 os: windows @@ -469312,11 +470575,11 @@ Shoujo City: installDir: Shoujo City: {} launch: - /ShoujoCity.app/Contents/MacOS/ShoujoCity: + "/ShoujoCity.app/Contents/MacOS/ShoujoCity": - when: - os: mac store: steam - /ShoujoCity.exe: + "/ShoujoCity.exe": - when: - os: windows store: steam @@ -469326,11 +470589,11 @@ Shout of Survival: installDir: SOS Shout Of Survival: {} launch: - /SOS.app: + "/SOS.app": - when: - os: mac store: steam - /SOS.exe: + "/SOS.exe": - when: - os: windows store: steam @@ -469340,7 +470603,7 @@ Shovel Knight Dig: installDir: Shovel Knight Dig: {} launch: - /skDig64.exe: + "/skDig64.exe": - when: - bit: 64 os: windows @@ -469351,12 +470614,12 @@ Shovel Knight Pocket Dungeon: installDir: Shovel Knight Pocket Dungeon: {} launch: - /Shovel Knight Pocket Dungeon.app: + "/Shovel Knight Pocket Dungeon.app": - when: - os: mac store: steam - /Shovel Knight Pocket Dungeon.exe: - - arguments: '-test' + "/Shovel Knight Pocket Dungeon.exe": + - arguments: "-test" when: - os: windows store: steam @@ -469368,31 +470631,31 @@ Shovel Knight Showdown: installDir: Shovel Knight Showdown: {} launch: - /32/ShovelKnightShowdown: + "/32/ShovelKnightShowdown": - when: - bit: 32 os: linux store: steam - workingDir: /32 - /64/ShovelKnightShowdown: + workingDir: "/32" + "/64/ShovelKnightShowdown": - when: - bit: 64 os: linux store: steam - workingDir: /64 - /ShovelKnightShowdown.app: + workingDir: "/64" + "/ShovelKnightShowdown.app": - when: - os: mac store: steam - /ShovelKnightShowdown.exe: + "/ShovelKnightShowdown.exe": - when: - os: windows store: steam steam: id: 1116770 -'Shovel Knight: King of Cards': +"Shovel Knight: King of Cards": files: - /Yacht Club Games/Shovel Knight - King of Cards: + "/Yacht Club Games/Shovel Knight - King of Cards": tags: - save when: @@ -469402,59 +470665,59 @@ Shovel Knight Showdown: installDir: Shovel Knight - King of Cards: {} launch: - /32/KingOfCards: + "/32/KingOfCards": - when: - bit: 32 os: linux store: steam - workingDir: /32 - /64/KingOfCards: + workingDir: "/32" + "/64/KingOfCards": - when: - bit: 64 os: linux store: steam - workingDir: /64 - /KingOfCards.app: + workingDir: "/64" + "/KingOfCards.app": - when: - os: mac store: steam - /KingOfCards.exe: + "/KingOfCards.exe": - when: - os: windows store: steam steam: id: 1116780 -'Shovel Knight: Shovel of Hope': +"Shovel Knight: Shovel of Hope": gog: id: 1441664298 installDir: Shovel Knight - Shovel of Hope: {} launch: - /32/ShovelOfHope: + "/32/ShovelOfHope": - when: - bit: 32 os: linux store: steam - workingDir: /32 - /64/ShovelOfHope: + workingDir: "/32" + "/64/ShovelOfHope": - when: - bit: 64 os: linux store: steam - workingDir: /64 - /ShovelOfHope.app: + workingDir: "/64" + "/ShovelOfHope.app": - when: - os: mac store: steam - /ShovelOfHope.exe: + "/ShovelOfHope.exe": - when: - os: windows store: steam steam: id: 589500 -'Shovel Knight: Specter of Torment': +"Shovel Knight: Specter of Torment": files: - /Yacht Club Games/Shovel Knight - Specter of Torment: + "/Yacht Club Games/Shovel Knight - Specter of Torment": tags: - save when: @@ -469464,57 +470727,57 @@ Shovel Knight Showdown: installDir: Shovel Knight - Specter of Torment: {} launch: - /32/SpecterOfTorment: + "/32/SpecterOfTorment": - when: - bit: 32 os: linux store: steam - workingDir: /32 - /64/SpecterOfTorment: + workingDir: "/32" + "/64/SpecterOfTorment": - when: - bit: 64 os: linux store: steam - workingDir: /64 - /SpecterOfTorment.app: + workingDir: "/64" + "/SpecterOfTorment.app": - when: - os: mac store: steam - /SpecterOfTorment.exe: + "/SpecterOfTorment.exe": - when: - os: windows store: steam steam: id: 589510 -'Shovel Knight: Treasure Trove': +"Shovel Knight: Treasure Trove": files: - /.local/share/Yacht Club Games/Shovel Knight: + "/.local/share/Yacht Club Games/Shovel Knight": tags: - config when: - os: linux - /Library/Application Support/Yacht Club Games/Shovel Knight: + "/Library/Application Support/Yacht Club Games/Shovel Knight": tags: - config - save when: - os: mac - /userdata//250760/remote/saveData.bin: + "/userdata//250760/remote/saveData.bin": tags: - save when: - store: steam - /Yacht Club Games/Shovel Knight/*.bin: + "/Yacht Club Games/Shovel Knight/*.bin": tags: - config when: - os: windows - /Yacht Club Games/Shovel Knight/saveData.bin: + "/Yacht Club Games/Shovel Knight/saveData.bin": tags: - save when: - os: windows - /Yacht Club Games/Shovel Knight: + "/Yacht Club Games/Shovel Knight": tags: - save when: @@ -469524,24 +470787,24 @@ Shovel Knight Showdown: installDir: Shovel Knight: {} launch: - /32/ShovelKnight: + "/32/ShovelKnight": - when: - bit: 32 os: linux store: steam - workingDir: /32 - /64/ShovelKnight: + workingDir: "/32" + "/64/ShovelKnight": - when: - bit: 64 os: linux store: steam - workingDir: /64 - /ShovelKnight.app: + workingDir: "/64" + "/ShovelKnight.app": - when: - os: mac store: steam - /ShovelKnight.exe: - - arguments: '-test' + "/ShovelKnight.exe": + - arguments: "-test" when: - os: windows store: steam @@ -469569,7 +470832,7 @@ Showdown Adventure: installDir: Showdown Adventure: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -469579,7 +470842,7 @@ Showdown Bandit: installDir: Showdown Bandit: {} launch: - /Showdown Bandit.exe: + "/Showdown Bandit.exe": - when: - os: windows store: steam @@ -469589,15 +470852,15 @@ Showdown at Willow Creek: installDir: Showdown at Willow Creek: {} launch: - /Showdown at Willow Creek.app/Contents/MacOS/Showdown at Willow Creek: + "/Showdown at Willow Creek.app/Contents/MacOS/Showdown at Willow Creek": - when: - os: mac store: steam - /ShowdownAtWillowCreek: + "/ShowdownAtWillowCreek": - when: - os: linux store: steam - /ShowdownAtWillowCreek.exe: + "/ShowdownAtWillowCreek.exe": - when: - os: windows store: steam @@ -469608,9 +470871,9 @@ ShowdownVR: ShowdownVR: {} steam: id: 529940 -'Shower With Your Dad Simulator 2015: Do You Still Shower With Your Dad': +"Shower With Your Dad Simulator 2015: Do You Still Shower With Your Dad": files: - /MMFApplications/SHOWERDAD.ini: + "/MMFApplications/SHOWERDAD.ini": tags: - config when: @@ -469618,7 +470881,7 @@ ShowdownVR: installDir: Showerdad: {} launch: - /showerdad.exe: + "/showerdad.exe": - when: - os: windows store: steam @@ -469626,7 +470889,7 @@ ShowdownVR: id: 359050 Showgunners: files: - /Showgunners/Saved/SaveGames/: + "/Showgunners/Saved/SaveGames/": tags: - save when: @@ -469636,30 +470899,30 @@ Showgunners: installDir: Showgunners: {} launch: - /Showgunners.exe: + "/Showgunners.exe": - when: - store: steam steam: id: 1155330 -'Showing Tonight: Mindhunters Incident': +"Showing Tonight: Mindhunters Incident": installDir: Showing Tonight Mindhunters Incident: {} launch: - /stmi.app/Contents/MacOS/stmi: + "/stmi.app/Contents/MacOS/stmi": - when: - os: mac store: steam - /stmi.exe: + "/stmi.exe": - when: - bit: 32 os: windows store: steam - /stmi.x86: + "/stmi.x86": - when: - bit: 32 os: linux store: steam - /stmi.x86_64: + "/stmi.x86_64": - when: - bit: 64 os: linux @@ -469670,7 +470933,7 @@ Showmaker: installDir: SHOWMAKER: {} launch: - /ShowMaker.exe: + "/ShowMaker.exe": - when: - os: windows store: steam @@ -469680,15 +470943,15 @@ Showtime 2073: installDir: SHOWTIME 2073: {} launch: - /ST2073.app/Contents/MacOS/ST2073: + "/ST2073.app/Contents/MacOS/ST2073": - when: - os: mac store: steam - /ST2073.exe: + "/ST2073.exe": - when: - os: windows store: steam - /ST2073.x86: + "/ST2073.x86": - when: - os: linux store: steam @@ -469698,11 +470961,11 @@ Showtime!: installDir: Showtime: {} launch: - /Showtime.exe: + "/Showtime.exe": - when: - os: windows store: steam - /editor.exe: + "/editor.exe": - when: - os: windows store: steam @@ -469715,7 +470978,7 @@ Shp Space: installDir: Mystic Space: {} launch: - /mystic space.exe: + "/mystic space.exe": - when: - os: windows store: steam @@ -469725,15 +470988,15 @@ Shred!: installDir: Shred! Remastered: {} launch: - /Shred! Remastered.app: + "/Shred! Remastered.app": - when: - os: mac store: steam - /Shred! Remastered.exe: + "/Shred! Remastered.exe": - when: - os: windows store: steam - /Shred1/Shred!DownhillMTB.exe: + "/Shred1/Shred!DownhillMTB.exe": - when: - os: windows store: steam @@ -469743,11 +471006,11 @@ Shred! 2: installDir: Shred! 2: {} launch: - /Shred!2.app: + "/Shred!2.app": - when: - os: mac store: steam - /Shred!2.exe: + "/Shred!2.exe": - when: - os: windows store: steam @@ -469755,7 +471018,7 @@ Shred! 2: id: 853200 Shredders: files: - /Packages/FoamPunch.Shredders_6gtbvqvkrbpn2/SystemAppData/wgs: + "/Packages/FoamPunch.Shredders_6gtbvqvkrbpn2/SystemAppData/wgs": tags: - config - save @@ -469765,7 +471028,7 @@ Shredders: installDir: Shredders: {} launch: - /Shredders.exe: + "/Shredders.exe": - when: - bit: 64 os: windows @@ -469776,9 +471039,9 @@ Shredders: - config steam: id: 1874170 -'Shrek 2: Team Action': +"Shrek 2: Team Action": files: - /Game/Save: + "/Game/Save": tags: - save when: @@ -469787,26 +471050,26 @@ Shredders: HKEY_CURRENT_USER/Software/Activision/Shrek 2 Team Action/Settings: tags: - config -'Shrek 2: The Game': +"Shrek 2: The Game": files: - /Shrek 2: + "/Shrek 2": tags: - config when: - os: windows - /Shrek 2/Save: + "/Shrek 2/Save": tags: - save when: - os: windows Shrek Forever After: files: - /Activision/Shrek Forever After/savegames: + "/Activision/Shrek Forever After/savegames": tags: - save when: - os: windows - /Activision/Shrek Forever After/user.cfg: + "/Activision/Shrek Forever After/user.cfg": tags: - config when: @@ -469814,31 +471077,31 @@ Shrek Forever After: installDir: Shrek Forever After: {} launch: - /ShrekForeverAfter.exe: + "/ShrekForeverAfter.exe": - when: - store: steam steam: id: 42660 Shrek SuperSlam: files: - /config.ini: + "/config.ini": tags: - config when: - os: windows - /data/saves/(username)-ShrekSuperSlam.sav: + "/data/saves/(username)-ShrekSuperSlam.sav": tags: - save when: - os: windows Shrek the Third: files: - /My Games/Activision/SHReK the THiRD/SHReK the THiRD.ini: + "/My Games/Activision/SHReK the THiRD/SHReK the THiRD.ini": tags: - config when: - os: windows - /My Games/Activision/SHReK the THiRD/SHReK the THiRD.s3b: + "/My Games/Activision/SHReK the THiRD/SHReK the THiRD.s3b": tags: - save when: @@ -469847,7 +471110,7 @@ Shrine of the God-Ape: installDir: Shrine of the God-Ape: {} launch: - /god_ape.exe: + "/god_ape.exe": - when: - os: windows store: steam @@ -469857,12 +471120,12 @@ Shrines Of Sacred Essenсe: installDir: Shrines Of Sacred Essenсe: {} launch: - /SoSE.exe: + "/SoSE.exe": - when: - bit: 64 os: windows store: steam - /SoSEx86.exe: + "/SoSEx86.exe": - when: - bit: 32 os: windows @@ -469873,7 +471136,7 @@ Shrinking Pains: installDir: Shrinking Pains: {} launch: - /Shrinking Pains.exe: + "/Shrinking Pains.exe": - when: - os: windows store: steam @@ -469883,7 +471146,7 @@ Shroom: installDir: Shroom: {} launch: - /Shroom.exe: + "/Shroom.exe": - when: - os: windows store: steam @@ -469893,22 +471156,22 @@ Shrooms: installDir: Shrooms: {} launch: - /shrooms_linux.x86: + "/shrooms_linux.x86": - when: - bit: 32 os: linux store: steam - /shrooms_linux.x86_64: + "/shrooms_linux.x86_64": - when: - bit: 64 os: linux store: steam - /shrooms_windows_32.exe: + "/shrooms_windows_32.exe": - when: - bit: 32 os: windows store: steam - /shrooms_windows_64.exe: + "/shrooms_windows_64.exe": - when: - bit: 64 os: windows @@ -469917,19 +471180,19 @@ Shrooms: id: 361330 Shroomscape Zone: files: - /.config/Epic/Shroomtopia/Saved/Config: + "/.config/Epic/Shroomtopia/Saved/Config": tags: - config when: - os: linux - /.config/Epic/Shroomtopia/Saved/SaveGames: + "/.config/Epic/Shroomtopia/Saved/SaveGames": tags: - save when: - os: linux -'Shroud of the Avatar: Forsaken Virtues': +"Shroud of the Avatar: Forsaken Virtues": files: - /Portalarium/Shroud of the Avatar/SavedGames: + "/Portalarium/Shroud of the Avatar/SavedGames": tags: - save when: @@ -469937,44 +471200,47 @@ Shroomscape Zone: installDir: SotA: {} launch: - /Shroud of the Avatar.app: + "/Shroud of the Avatar.app": - when: - os: mac store: steam - /Shroud of the Avatar.exe: + "/Shroud of the Avatar.exe": - when: - os: windows store: steam - - arguments: '-popupwindow' + - arguments: "-popupwindow" when: - os: windows store: steam - /ShroudOfTheAvatar.sh: + "/ShroudOfTheAvatar.sh": - when: - bit: 32 os: linux store: steam + - bit: 64 + os: linux + store: steam registry: HKEY_CURRENT_USER/Software/Portalarium/Shroud of the Avatar: tags: - config steam: id: 326160 -'Shrouded Tales: Revenge of Shadows': +"Shrouded Tales: Revenge of Shadows": installDir: - Shrouded Tales Revenge of Shadows Collector's Edition: {} + "Shrouded Tales Revenge of Shadows Collector's Edition": {} launch: - /ShroudedTales_RevengeOfShadows_CE.exe: + "/ShroudedTales_RevengeOfShadows_CE.exe": - when: - os: windows store: steam steam: id: 647940 -'Shrouded Tales: The Spellbound Land': +"Shrouded Tales: The Spellbound Land": installDir: - Shrouded Tales The Spellbound Land Collector's Edition: {} + "Shrouded Tales The Spellbound Land Collector's Edition": {} launch: - /Shrouded_Tales_The_Spellbound_Land_CE.exe: + "/Shrouded_Tales_The_Spellbound_Land_CE.exe": - when: - store: steam steam: @@ -469983,20 +471249,20 @@ Shrouded in Sanity: installDir: Shrouded in Sanity: {} launch: - /Shrouded in Sanity.exe: + "/Shrouded in Sanity.exe": - when: - os: windows store: steam steam: id: 444590 -'Shrouded in Sanity: Freebirth': +"Shrouded in Sanity: Freebirth": files: - /Shrouded_in_Sanity_Freebirth: + "/Shrouded_in_Sanity_Freebirth": tags: - save when: - os: windows - /Shrouded_in_Sanity_Freebirth/settings.sav: + "/Shrouded_in_Sanity_Freebirth/settings.sav": tags: - config when: @@ -470004,30 +471270,30 @@ Shrouded in Sanity: installDir: Shrouded in Sanity Freebirth: {} launch: - /Shrouded in Sanity Freebirth.exe: + "/Shrouded in Sanity Freebirth.exe": - when: - store: steam steam: id: 820400 -'Shrug Island: The Meeting': +"Shrug Island: The Meeting": installDir: Shrug Island - The Meeting: {} launch: - /ShrugIsland_Ch1.app: + "/ShrugIsland_Ch1.app": - when: - os: mac store: steam - /ShrugIsland_Ch1.exe: + "/ShrugIsland_Ch1.exe": - when: - os: windows store: steam steam: id: 420170 -'Shtriga: Summer Camp': +"Shtriga: Summer Camp": installDir: ShtrigaSummerCamp: {} launch: - /SummerCamp.exe: + "/SummerCamp.exe": - when: - os: windows store: steam @@ -470037,21 +471303,21 @@ Shu: installDir: Shu: {} launch: - /Shu.exe: + "/Shu.exe": - when: - os: windows store: steam steam: id: 528720 -Shu's Garden: +"Shu's Garden": installDir: ShusGarden: {} launch: - /Shu's Garden.app: + "/Shu's Garden.app": - when: - os: mac store: steam - /Shu's Garden.exe: + "/Shu's Garden.exe": - when: - os: windows store: steam @@ -470061,7 +471327,7 @@ Shudder: installDir: Shudder: {} launch: - /shudderGame.exe: + "/shudderGame.exe": - when: - os: windows store: steam @@ -470071,11 +471337,11 @@ Shuffle World: installDir: Shuffle World: {} launch: - /Shuffle World.exe: + "/Shuffle World.exe": - when: - os: windows store: steam - /Shuffle World.x86_64: + "/Shuffle World.x86_64": - when: - os: linux store: steam @@ -470083,7 +471349,7 @@ Shuffle World: id: 1165280 Shuffle!: files: - /AppData/LocalLow/YumeHaven/Shuffle!/save: + "/AppData/LocalLow/YumeHaven/Shuffle!/save": tags: - save when: @@ -470091,8 +471357,8 @@ Shuffle!: installDir: Shuffle!: {} launch: - /Shuffle!.exe: - - arguments: '-STEAM' + "/Shuffle!.exe": + - arguments: "-STEAM" when: - os: windows store: steam @@ -470106,15 +471372,15 @@ Shufflepuck Cantina Deluxe VR: installDir: ShufflepuckCantinaDeluxe: {} launch: - /Shufflepuck Cantina Deluxe Steam.app/Contents/MacOS/Shufflepuck Cantina Deluxe Steam: + "/Shufflepuck Cantina Deluxe Steam.app/Contents/MacOS/Shufflepuck Cantina Deluxe Steam": - when: - os: mac store: steam - /ShufflepuckCantinaDeluxe: + "/ShufflepuckCantinaDeluxe": - when: - os: linux store: steam - /ShufflepuckCantinaDeluxe.exe: + "/ShufflepuckCantinaDeluxe.exe": - when: - os: windows store: steam @@ -470124,11 +471390,11 @@ Shuriken and Aliens: installDir: Shuriken and Aliens: {} launch: - /ShurikenAndAliens_LINUX.x86_64: + "/ShurikenAndAliens_LINUX.x86_64": - when: - os: linux store: steam - /ShurikenAndAliens_Windows.exe: + "/ShurikenAndAliens_Windows.exe": - when: - os: windows store: steam @@ -470138,15 +471404,15 @@ Shut Eye: installDir: ShutEye: {} launch: - /ShutEye.app: + "/ShutEye.app": - when: - os: mac store: steam - /ShutEye.exe: + "/ShutEye.exe": - when: - os: windows store: steam - /ShutEye.x86: + "/ShutEye.x86": - when: - os: linux store: steam @@ -470159,15 +471425,15 @@ Shutshimi: installDir: Shutshimi: {} launch: - /Shutshimi.app: + "/Shutshimi.app": - when: - os: mac store: steam - /Shutshimi.exe: + "/Shutshimi.exe": - when: - os: windows store: steam - /Shutshimi.x86: + "/Shutshimi.x86": - when: - os: linux store: steam @@ -470181,7 +471447,7 @@ Shutter: installDir: Shutter: {} launch: - /Shutter.exe: + "/Shutter.exe": - when: - os: windows store: steam @@ -470189,7 +471455,7 @@ Shutter: id: 359560 Shuttle Siege: files: - /ShuttleSiege: + "/ShuttleSiege": tags: - save when: @@ -470197,7 +471463,7 @@ Shuttle Siege: installDir: Shuttle Siege: {} launch: - /win64/nw.exe: + "/win64/nw.exe": - when: - bit: 64 os: windows @@ -470208,21 +471474,21 @@ Shuttlecock-H: installDir: Shuttlecock-H: {} launch: - /Shuttlecock-H.exe: + "/Shuttlecock-H.exe": - when: - os: windows store: steam - /Shuttlecock_H: + "/Shuttlecock_H": - when: - os: linux store: steam steam: id: 1055590 -'Shuttlecock-H: Covered Rematch': +"Shuttlecock-H: Covered Rematch": installDir: Shuttlecock-H Covered Rematch: {} launch: - /Shuttlecock-H Covered Rematch.exe: + "/Shuttlecock-H Covered Rematch.exe": - when: - os: windows store: steam @@ -470230,7 +471496,7 @@ Shuttlecock-H: id: 1140350 Shuyan Saga: files: - /AppData/LocalLow/Lofty Sky Entertainment/Shuyan: + "/AppData/LocalLow/Lofty Sky Entertainment/Shuyan": tags: - save when: @@ -470238,11 +471504,11 @@ Shuyan Saga: installDir: Shuyan Saga: {} launch: - /Shuyan.app/Contents/MacOS/Shuyan: + "/Shuyan.app/Contents/MacOS/Shuyan": - when: - os: mac store: steam - /Shuyan.exe: + "/Shuyan.exe": - when: - os: windows store: steam @@ -470252,11 +471518,11 @@ Shwip: installDir: Shwip: {} launch: - /206cmac.app: + "/206cmac.app": - when: - os: mac store: steam - /Shwip.exe: + "/Shwip.exe": - when: - os: windows store: steam @@ -470266,17 +471532,17 @@ ShyChess: installDir: ShyChess: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam steam: id: 894540 -'Si Kancil: The Adventurous Mouse Deer': +"Si Kancil: The Adventurous Mouse Deer": installDir: Si Kancil The Adventurous Mouse Deer: {} launch: - /Kancil.exe: + "/Kancil.exe": - when: - os: windows store: steam @@ -470284,47 +471550,47 @@ ShyChess: id: 530530 SiN: files: - /2015/players//config.cfg: + "/2015/players//config.cfg": tags: - config when: - os: windows - /2015/players//save: + "/2015/players//save": tags: - save when: - os: windows - /base/players//config.cfg: + "/base/players//config.cfg": tags: - config when: - os: windows - /base/players//save: + "/base/players//save": tags: - save when: - os: windows - /.hyperion/Sin/players//config.cfg: + "/.hyperion/Sin/players//config.cfg": tags: - config when: - os: linux - /dominatrix/2015/config.cfg: + "/dominatrix/2015/config.cfg": tags: - config when: - os: windows - /dominatrix/2015/save: + "/dominatrix/2015/save": tags: - save when: - os: windows - /dominatrix/base/config.cfg: + "/dominatrix/base/config.cfg": tags: - config when: - os: windows - /dominatrix/base/save: + "/dominatrix/base/save": tags: - save when: @@ -470337,7 +471603,7 @@ SiN: installDir: SiN 1: {} launch: - /sin.exe: + "/sin.exe": - when: - os: windows store: steam @@ -470351,14 +471617,14 @@ SiN: store: steam steam: id: 1313 -'SiN Episodes: Emergence': +"SiN Episodes: Emergence": files: - /SE1/SAVE: + "/SE1/SAVE": tags: - save when: - os: windows - /SE1/cfg: + "/SE1/cfg": tags: - config when: @@ -470369,12 +471635,12 @@ SiN: installDir: SiN Episodes Emergence: {} launch: - /SinEpisodes.exe: + "/SinEpisodes.exe": - when: - store: steam steam: id: 1300 -'SiN: Reloaded': +"SiN: Reloaded": steam: id: 632950 SiNKR: @@ -470387,15 +471653,15 @@ SiNKR: installDir: SiNKR: {} launch: - /Sinkr.app/Contents/MacOS/SiNKR: + "/Sinkr.app/Contents/MacOS/SiNKR": - when: - os: mac store: steam - /Sinkr.exe: + "/Sinkr.exe": - when: - os: windows store: steam - /Sinkr.x86: + "/Sinkr.x86": - when: - os: linux store: steam @@ -470405,15 +471671,15 @@ SiNKR 2: installDir: SiNKR 2: {} launch: - /Sinkr2.app/Contents/MacOS/Sinkr2: + "/Sinkr2.app/Contents/MacOS/Sinkr2": - when: - os: mac store: steam - /Sinkr2.exe: + "/Sinkr2.exe": - when: - os: windows store: steam - /Sinkr2.x86: + "/Sinkr2.x86": - when: - os: linux store: steam @@ -470423,15 +471689,15 @@ SiNKR 3: installDir: SiNKR 3: {} launch: - /Sinkr3.app/Contents/MacOS/SiNKR 3: + "/Sinkr3.app/Contents/MacOS/SiNKR 3": - when: - os: mac store: steam - /Sinkr3.exe: + "/Sinkr3.exe": - when: - os: windows store: steam - /Sinkr3.x86: + "/Sinkr3.x86": - when: - os: linux store: steam @@ -470441,7 +471707,7 @@ Siam Twinstick: installDir: Siam Twinstick: {} launch: - /SiamTwinstick.exe: + "/SiamTwinstick.exe": - when: - os: windows store: steam @@ -470451,7 +471717,7 @@ Siberian Dawn: installDir: Siberian Dawn: {} launch: - /Siberian Dawn.exe: + "/Siberian Dawn.exe": - when: - os: windows store: steam @@ -470462,11 +471728,11 @@ Siberian Run VR: Siberian Run VR: {} steam: id: 1055870 -Sicier's Zweck: +"Sicier's Zweck": installDir: - Sicier's Zweck: {} + "Sicier's Zweck": {} launch: - /Sicier's Zweck.exe: + "/Sicier's Zweck.exe": - when: - os: windows store: steam @@ -470481,7 +471747,7 @@ Sick Love - An RPG Maker Novel: installDir: Sick Love: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -470491,7 +471757,7 @@ Sick Way: installDir: Sick Way: {} launch: - /Sick Way.exe: + "/Sick Way.exe": - when: - bit: 64 os: windows @@ -470502,20 +471768,20 @@ SickBrick: installDir: SickBrick: {} launch: - /SickBrick.app: + "/SickBrick.app": - when: - os: mac store: steam - /SickBrick.exe: + "/SickBrick.exe": - when: - os: windows store: steam - /SickBrick.x86: + "/SickBrick.x86": - when: - bit: 32 os: linux store: steam - /SickBrick.x86_64: + "/SickBrick.x86_64": - when: - bit: 64 os: linux @@ -470524,12 +471790,12 @@ SickBrick: id: 341860 Sickness: files: - /renpy/Sickness-1392699346/*.save: + "/renpy/Sickness-1392699346/*.save": tags: - save when: - os: windows - /renpy/Sickness-1392699346/persistent: + "/renpy/Sickness-1392699346/persistent": tags: - config when: @@ -470537,128 +471803,132 @@ Sickness: installDir: Sickness: {} launch: - /Sickness.app: + "/Sickness.app": - when: - os: mac store: steam - /Sickness.exe: + "/Sickness.exe": - when: - os: windows store: steam - /Sickness.sh: + "/Sickness.sh": - when: - os: linux store: steam steam: id: 413870 -Sid & Al's Incredible Toons: +"Sid & Al's Incredible Toons": files: - /*.ITL: + "/*.ITL": tags: - save when: - os: dos - /RESOURCE.CFG: + "/RESOURCE.CFG": tags: - config when: - os: dos - /TOONS.SAV: + "/TOONS.SAV": tags: - save when: - os: dos -Sid Meier's Ace Patrol: +"Sid Meier's Ace Patrol": installDir: - Sid Meier's Ace Patrol: {} + "Sid Meier's Ace Patrol": {} launch: - /AcePatrol.exe: + "/AcePatrol.exe": - when: - os: windows store: steam steam: id: 244070 -'Sid Meier''s Ace Patrol: Pacific Skies': +"Sid Meier's Ace Patrol: Pacific Skies": installDir: Pacific Skies: {} launch: - /AcePatrol2.exe: + "/AcePatrol2.exe": - when: - os: windows store: steam steam: id: 244090 -Sid Meier's Alpha Centauri: +"Sid Meier's Alpha Centauri": files: - /Alpha Centauri.ini: + "/Alpha Centauri.ini": tags: - config when: - os: windows - /saves: + "/saves": tags: - save when: - os: windows - /Library/Application Support/GOG.com/Sid Meier's Alpha Centauri/saves: + "/Library/Application Support/GOG.com/Sid Meier's Alpha Centauri/saves": tags: - save when: - os: mac gog: id: 1207658936 -Sid Meier's Civilization III: +"Sid Meier's Civilization III": gog: id: 1471405734 installDir: - Sid Meier's Civilization III Complete: {} + "Sid Meier's Civilization III Complete": {} launch: - /Conquests/Civ3Conquests.exe: + "/Conquests/Civ3Conquests.exe": - when: - store: steam - workingDir: /Conquests + workingDir: "/Conquests" steam: id: 3910 -Sid Meier's Civilization IV: +"Sid Meier's Civilization IV": files: - /My Games/Beyond the Sword: + "/My Games/Beyond the Sword": tags: - config when: - os: windows - /My Games/Beyond the Sword/Saves: + "/My Games/Beyond the Sword/Saves": tags: - save when: - os: windows - /My Games/Civ4: - tags: - - config - when: - - store: gog - /My Games/Civ4/Saves: - tags: - - save - when: - - store: gog - /My Games/Sid Meier's Civilization IV: + "/My Games/Civ4": tags: - config when: - os: windows - - store: steam - /My Games/Sid Meier's Civilization IV/Saves: + store: gog + "/My Games/Civ4/Saves": tags: - save when: - os: windows - - store: steam - /My Games/Warlords: + store: gog + "/My Games/Sid Meier's Civilization IV": tags: - config when: - os: windows - /My Games/Warlords/Saves: + - os: windows + store: steam + "/My Games/Sid Meier's Civilization IV/Saves": + tags: + - save + when: + - os: windows + - os: windows + store: steam + "/My Games/Warlords": + tags: + - config + when: + - os: windows + "/My Games/Warlords/Saves": tags: - save when: @@ -470673,27 +471943,27 @@ Sid Meier's Civilization IV: - 34450 - 34460 installDir: - Sid Meier's Civilization IV: {} + "Sid Meier's Civilization IV": {} launch: - /Civilization4.exe: + "/Civilization4.exe": - when: - os: windows store: steam steam: id: 3900 -'Sid Meier''s Civilization IV: Colonization': +"Sid Meier's Civilization IV: Colonization": files: - /My Games/Civilization IV Colonization: + "/My Games/Civilization IV Colonization": tags: - config when: - os: windows - /My Games/Civilization IV Colonization/Saves: + "/My Games/Civilization IV Colonization/Saves": tags: - save when: - os: windows - /My Games/Civilization IV Colonization/Profiles: + "/My Games/Civilization IV Colonization/Profiles": tags: - config when: @@ -470703,239 +471973,241 @@ Sid Meier's Civilization IV: installDir: Civilization IV Colonization: {} launch: - /Colonization.app: + "/Colonization.app": - when: - os: mac store: steam - /Colonization.exe: + "/Colonization.exe": - when: - os: windows store: steam steam: id: 16810 -Sid Meier's Civilization V: +"Sid Meier's Civilization V": files: - /Documents/Aspyr/Sid Meier's Civilization 5: + "/Documents/Aspyr/Sid Meier's Civilization 5": tags: - config when: - os: mac - /Documents/Aspyr/Sid Meier's Civilization 5/Saves: + "/Documents/Aspyr/Sid Meier's Civilization 5/Saves": tags: - save when: - os: mac - /userdata//8930: + "/userdata//8930": tags: - save when: - store: steam - /My Games/Sid Meier's Civilization 5/GraphicsSettingsDX11.ini: + "/My Games/Sid Meier's Civilization 5/GraphicsSettingsDX11.ini": tags: - config when: - os: windows - /My Games/Sid Meier's Civilization 5/GraphicsSettingsDX9.ini: + "/My Games/Sid Meier's Civilization 5/GraphicsSettingsDX9.ini": tags: - config when: - os: windows - /My Games/Sid Meier's Civilization 5/Saves: + "/My Games/Sid Meier's Civilization 5/Saves": tags: - save when: - os: windows - /My Games/Sid Meier's Civilization 5/UserSettings.ini: + "/My Games/Sid Meier's Civilization 5/UserSettings.ini": tags: - config when: - os: windows - /My Games/Sid Meier's Civilization 5/config.ini: + "/My Games/Sid Meier's Civilization 5/config.ini": tags: - config when: - os: windows - /Aspyr/Sid Meier's Civilization 5/GraphicsSettingsDX9.ini: + "/Aspyr/Sid Meier's Civilization 5/GraphicsSettingsDX9.ini": tags: - config when: - os: linux - /Aspyr/Sid Meier's Civilization 5/Saves: + "/Aspyr/Sid Meier's Civilization 5/Saves": tags: - save when: - os: linux - /Aspyr/Sid Meier's Civilization 5/UserSettings.ini: + "/Aspyr/Sid Meier's Civilization 5/UserSettings.ini": tags: - config when: - os: linux - /Aspyr/Sid Meier's Civilization 5/config.ini: + "/Aspyr/Sid Meier's Civilization 5/config.ini": tags: - config when: - os: linux id: steamExtra: - - 235580 - - 16870 - 16868 + - 16870 - 50100 + - 235580 installDir: - Sid Meier's Civilization V: {} + "Sid Meier's Civilization V": {} launch: - /Civ5XP: + "/Civ5XP": - when: - os: linux store: steam - /Civilization V.app: + "/Civilization V.app": - when: - os: mac store: steam - /LaunchPad/LaunchPad.exe: + "/LaunchPad/LaunchPad.exe": - when: - bit: 64 os: windows store: steam - workingDir: /LaunchPad + workingDir: "/LaunchPad" steam: id: 8930 -Sid Meier's Civilization VI: +"Sid Meier's Civilization VI": files: - /Library/Application Support/Sid Meier's Civilization VI: + "/Library/Application Support/Sid Meier's Civilization VI": tags: - config when: - os: mac - /Library/Application Support/Sid Meier's Civilization VI/Saves: + "/Library/Application Support/Sid Meier's Civilization VI/Saves": tags: - save when: - os: mac - /Library/Containers/Civilization VI/Data/Library/Application Support/Sid Meier’s Civilization VI/Saves: + "/Library/Containers/Civilization VI/Data/Library/Application Support/Sid Meier’s Civilization VI/Saves": tags: - save - /My Games/Sid Meier's Civilization VI: + when: + - os: mac + "/My Games/Sid Meier's Civilization VI": tags: - config when: - os: windows - /My Games/Sid Meier's Civilization VI/Saves: + "/My Games/Sid Meier's Civilization VI/Saves": tags: - save when: - os: windows - /aspyr-media/Sid Meier's Civilization VI: + "/aspyr-media/Sid Meier's Civilization VI": tags: - config when: - os: linux - /aspyr-media/Sid Meier's Civilization VI/Saves: + "/aspyr-media/Sid Meier's Civilization VI/Saves": tags: - save when: - os: linux id: steamExtra: - - 1308090 - - 1253990 - - 947510 - - 645402 - - 645401 - - 645400 - - 597260 - - 537570 - - 521770 - - 512035 - - 512034 - - 512033 - - 512032 - - 512031 - - 512030 - 404350 + - 512030 + - 512031 + - 512032 + - 512033 + - 512034 + - 512035 + - 521770 + - 537570 + - 597260 + - 645400 + - 645401 + - 645402 + - 947510 + - 1253990 + - 1308090 - 2158250 - 2173130 - 2173131 installDir: - Sid Meier's Civilization VI: {} + "Sid Meier's Civilization VI": {} launch: - /Civ6: + "/Civ6": - when: - os: linux store: steam - /Civ6.app: + "/Civ6.app": - when: - bit: 64 os: mac store: steam steam: id: 289070 -'Sid Meier''s Civilization: Beyond Earth': +"Sid Meier's Civilization: Beyond Earth": files: - /Library/Application Support/Sid Meier's Civilization Beyond Earth: + "/Library/Application Support/Sid Meier's Civilization Beyond Earth": tags: - config when: - os: mac - /Library/Application Support/Sid Meier's Civilization Beyond Earth/Saves: + "/Library/Application Support/Sid Meier's Civilization Beyond Earth/Saves": tags: - save when: - os: mac - /userdata//65980/remote: + "/userdata//65980/remote": tags: - save when: - store: steam - /My Games/Sid Meier's Civilization Beyond Earth: + "/My Games/Sid Meier's Civilization Beyond Earth": tags: - config when: - os: windows - /My Games/Sid Meier's Civilization Beyond Earth/Saves: + "/My Games/Sid Meier's Civilization Beyond Earth/Saves": tags: - save when: - os: windows - /aspyr-media/Sid Meier's Civilization Beyond Earth: + "/aspyr-media/Sid Meier's Civilization Beyond Earth": tags: - config when: - os: linux - /aspyr-media/Sid Meier's Civilization Beyond Earth/Saves: + "/aspyr-media/Sid Meier's Civilization Beyond Earth/Saves": tags: - save when: - os: linux installDir: - Sid Meier's Civilization Beyond Earth: {} + "Sid Meier's Civilization Beyond Earth": {} launch: - /CivBE: + "/CivBE": - when: - os: linux store: steam - /Civilization Beyond Earth.app: + "/Civilization Beyond Earth.app": - when: - os: mac store: steam - /civilizationbe_dx11.exe: + "/civilizationbe_dx11.exe": - when: - os: windows store: steam - /civilizationbe_mantle.exe: + "/civilizationbe_mantle.exe": - when: - os: windows store: steam steam: id: 65980 -Sid Meier's Colonization: +"Sid Meier's Colonization": files: - /MPS/COLONIZE: + "/MPS/COLONIZE": tags: - config when: - os: windows - /MPS/COLONIZE/COLONY0*.SAV: + "/MPS/COLONIZE/COLONY0*.SAV": tags: - save when: @@ -470943,59 +472215,59 @@ Sid Meier's Colonization: gog: id: 1207659051 installDir: - Sid Meier's Colonization: {} + "Sid Meier's Colonization": {} launch: - /Sid Meier's Colonization.app: + "/Sid Meier's Colonization.app": - when: - os: mac store: steam - /dosbox_linux/daum/launch_smcolonization_game_daum.sh: + "/dosbox_linux/daum/launch_smcolonization_game_daum.sh": - when: - os: linux store: steam - workingDir: /dosbox_linux/daum - /dosbox_linux/launch_smcolonization_config.sh: + workingDir: "/dosbox_linux/daum" + "/dosbox_linux/launch_smcolonization_config.sh": - when: - os: linux store: steam - workingDir: /dosbox_linux - /dosbox_linux/launch_smcolonization_editor.sh: + workingDir: "/dosbox_linux" + "/dosbox_linux/launch_smcolonization_editor.sh": - when: - os: linux store: steam - workingDir: /dosbox_linux - /dosbox_linux/launch_smcolonization_game.sh: + workingDir: "/dosbox_linux" + "/dosbox_linux/launch_smcolonization_game.sh": - when: - os: linux store: steam - workingDir: /dosbox_linux - /dosbox_windows/daum/dosbox.exe: - - arguments: '-conf dosbox_smcolonization.conf -conf dosbox_smcolonization_launch_windows.conf -noconsole' + workingDir: "/dosbox_linux" + "/dosbox_windows/daum/dosbox.exe": + - arguments: "-conf dosbox_smcolonization.conf -conf dosbox_smcolonization_launch_windows.conf -noconsole" when: - os: windows store: steam - workingDir: /dosbox_windows/daum - /dosbox_windows/dosbox.exe: - - arguments: '-conf dosbox_smcolonization.conf -conf dosbox_smcolonization_launch_windows.conf -noconsole' + workingDir: "/dosbox_windows/daum" + "/dosbox_windows/dosbox.exe": + - arguments: "-conf dosbox_smcolonization.conf -conf dosbox_smcolonization_launch_windows.conf -noconsole" when: - os: windows store: steam - workingDir: /dosbox_windows - - arguments: '-conf dosbox_smcolonization.conf -conf dosbox_smcolonization_editor_windows.conf -noconsole' + workingDir: "/dosbox_windows" + - arguments: "-conf dosbox_smcolonization.conf -conf dosbox_smcolonization_editor_windows.conf -noconsole" when: - os: windows store: steam - workingDir: /dosbox_windows - - arguments: '-conf dosbox_smcolonization.conf -conf dosbox_smcolonization_config_windows.conf -noconsole' + workingDir: "/dosbox_windows" + - arguments: "-conf dosbox_smcolonization.conf -conf dosbox_smcolonization_config_windows.conf -noconsole" when: - os: windows store: steam - workingDir: /dosbox_windows + workingDir: "/dosbox_windows" steam: id: 327400 -Sid Meier's Covert Action: +"Sid Meier's Covert Action": files: - /Covert/CV*.SVE: + "/Covert/CV*.SVE": tags: - save when: @@ -471003,39 +472275,39 @@ Sid Meier's Covert Action: gog: id: 1207660463 installDir: - Sid Meier's Covert Action: {} + "Sid Meier's Covert Action": {} launch: - /Sid Meier's Covert Action.app: + "/Sid Meier's Covert Action.app": - when: - os: mac store: steam - /dosbox_linux/daum/launch_smcovert_game_daum.sh: + "/dosbox_linux/daum/launch_smcovert_game_daum.sh": - when: - os: linux store: steam - workingDir: /dosbox_linux/daum - /dosbox_linux/launch_smcovert_game.sh: + workingDir: "/dosbox_linux/daum" + "/dosbox_linux/launch_smcovert_game.sh": - when: - os: linux store: steam - workingDir: /dosbox_linux - /dosbox_windows/daum/dosbox.exe: - - arguments: '-conf dosbox_smcovert.conf -conf dosbox_smcovert_launch_windows.conf -noconsole' + workingDir: "/dosbox_linux" + "/dosbox_windows/daum/dosbox.exe": + - arguments: "-conf dosbox_smcovert.conf -conf dosbox_smcovert_launch_windows.conf -noconsole" when: - os: windows store: steam - workingDir: /dosbox_windows/daum - /dosbox_windows/dosbox.exe: - - arguments: '-conf dosbox_smcovert.conf -conf dosbox_smcovert_launch_windows.conf -noconsole' + workingDir: "/dosbox_windows/daum" + "/dosbox_windows/dosbox.exe": + - arguments: "-conf dosbox_smcovert.conf -conf dosbox_smcovert_launch_windows.conf -noconsole" when: - os: windows store: steam - workingDir: /dosbox_windows + workingDir: "/dosbox_windows" steam: id: 327390 -Sid Meier's Pirates!: +"Sid Meier's Pirates!": files: - /disks: + "/disks": tags: - save when: @@ -471046,74 +472318,74 @@ Sid Meier's Pirates!: gogExtra: - 1207659060 installDir: - Sid Meier's Pirates! Gold: {} + "Sid Meier's Pirates! Gold": {} launch: - /Sid Meier's Pirates! Gold.app: + "/Sid Meier's Pirates! Gold.app": - when: - os: mac store: steam - /dosbox_linux/daum/launch_smpirates_game_daum.sh: + "/dosbox_linux/daum/launch_smpirates_game_daum.sh": - when: - os: linux store: steam - workingDir: /dosbox_linux/daum - /dosbox_linux/daum/launch_smpiratesgold_game_daum.sh: + workingDir: "/dosbox_linux/daum" + "/dosbox_linux/daum/launch_smpiratesgold_game_daum.sh": - when: - os: linux store: steam - workingDir: /dosbox_linux/daum - /dosbox_linux/launch_smpirates_game.sh: + workingDir: "/dosbox_linux/daum" + "/dosbox_linux/launch_smpirates_game.sh": - when: - os: linux store: steam - workingDir: /dosbox_linux - /dosbox_linux/launch_smpiratesgold_config.sh: + workingDir: "/dosbox_linux" + "/dosbox_linux/launch_smpiratesgold_config.sh": - when: - os: linux store: steam - workingDir: /dosbox_linux - /dosbox_linux/launch_smpiratesgold_game.sh: + workingDir: "/dosbox_linux" + "/dosbox_linux/launch_smpiratesgold_game.sh": - when: - os: linux store: steam - workingDir: /dosbox_linux - /dosbox_windows/daum/dosbox.exe: - - arguments: '-conf dosbox_smpiratesgold.conf -conf dosbox_smpiratesgold_launch_windows.conf -noconsole' + workingDir: "/dosbox_linux" + "/dosbox_windows/daum/dosbox.exe": + - arguments: "-conf dosbox_smpiratesgold.conf -conf dosbox_smpiratesgold_launch_windows.conf -noconsole" when: - os: windows store: steam - workingDir: /dosbox_windows/daum - - arguments: '-conf dosbox_smpirates.conf -conf dosbox_smpirates_launch_windows.conf -noconsole' + workingDir: "/dosbox_windows/daum" + - arguments: "-conf dosbox_smpirates.conf -conf dosbox_smpirates_launch_windows.conf -noconsole" when: - os: windows store: steam - workingDir: /dosbox_windows/daum - /dosbox_windows/dosbox.exe: - - arguments: '-conf dosbox_smpiratesgold.conf -conf dosbox_smpiratesgold_launch_windows.conf -noconsole' + workingDir: "/dosbox_windows/daum" + "/dosbox_windows/dosbox.exe": + - arguments: "-conf dosbox_smpiratesgold.conf -conf dosbox_smpiratesgold_launch_windows.conf -noconsole" when: - os: windows store: steam - workingDir: /dosbox_windows - - arguments: '-conf dosbox_smpiratesgold.conf -conf dosbox_smpiratesgold_config_windows.conf -noconsole' + workingDir: "/dosbox_windows" + - arguments: "-conf dosbox_smpiratesgold.conf -conf dosbox_smpiratesgold_config_windows.conf -noconsole" when: - os: windows store: steam - workingDir: /dosbox_windows - - arguments: '-conf dosbox_smpirates.conf -conf dosbox_smpirates_launch_windows.conf -noconsole' + workingDir: "/dosbox_windows" + - arguments: "-conf dosbox_smpirates.conf -conf dosbox_smpirates_launch_windows.conf -noconsole" when: - os: windows store: steam - workingDir: /dosbox_windows + workingDir: "/dosbox_windows" steam: id: 327380 -Sid Meier's Pirates! (2004): +"Sid Meier's Pirates! (2004)": files: - /My Games/Sid Meier's Pirates!: + "/My Games/Sid Meier's Pirates!": tags: - save when: - os: windows - /My Games/Sid Meier's Pirates!/Config.ini: + "/My Games/Sid Meier's Pirates!/Config.ini": tags: - config when: @@ -471121,38 +472393,38 @@ Sid Meier's Pirates! (2004): gog: id: 1445250653 installDir: - Sid Meier's Pirates!: {} + "Sid Meier's Pirates!": {} launch: - /Pirates!.exe: + "/Pirates!.exe": - when: - store: steam steam: id: 3920 -Sid Meier's Railroad Tycoon: +"Sid Meier's Railroad Tycoon": files: - /CONFIG.RRD: + "/CONFIG.RRD": tags: - config when: - os: dos -Sid Meier's Railroads!: +"Sid Meier's Railroads!": files: - /Library/Containers/com.feralinteractive/Data/Library/Application Support/Feral Interactive/Sid Meier's Railroads!: + "/Library/Containers/com.feralinteractive/Data/Library/Application Support/Feral Interactive/Sid Meier's Railroads!": tags: - config when: - os: mac - /Library/Containers/com.feralinteractive/Data/Library/Application Support/Feral Interactive/Sid Meier's Railroads!/Saves: + "/Library/Containers/com.feralinteractive/Data/Library/Application Support/Feral Interactive/Sid Meier's Railroads!/Saves": tags: - save when: - os: mac - /My Games/Sid Meier's Railroads!: + "/My Games/Sid Meier's Railroads!": tags: - config when: - os: windows - /My Games/Sid Meier's Railroads!/Saves: + "/My Games/Sid Meier's Railroads!/Saves": tags: - save when: @@ -471160,43 +472432,43 @@ Sid Meier's Railroads!: gog: id: 1445250539 installDir: - Sid Meier's Railroads: {} + "Sid Meier's Railroads": {} launch: - /RailRoads.exe: + "/RailRoads.exe": - when: - os: windows store: steam - /Sid Meiers Railroads.app: + "/Sid Meiers Railroads.app": - when: - os: mac store: steam steam: id: 7600 -Sid Meier's Starships: +"Sid Meier's Starships": files: - /Library/Containers/com.2k.starshipsmac/Data/Documents: + "/Library/Containers/com.2k.starshipsmac/Data/Documents": tags: - save when: - os: mac - /Sid Meier's Starships: + "/Sid Meier's Starships": tags: - save when: - os: windows installDir: - Sid Meier's Starships: {} + "Sid Meier's Starships": {} launch: - /Starships.app: + "/Starships.app": - when: - os: mac store: steam - /Starships.exe: + "/Starships.exe": - when: - bit: 32 os: windows store: steam - /Starships64.exe: + "/Starships64.exe": - when: - bit: 64 os: windows @@ -471207,7 +472479,7 @@ Side Decide: installDir: Side Decide: {} launch: - /Side Decide.exe: + "/Side Decide.exe": - when: - os: windows store: steam @@ -471217,7 +472489,7 @@ Side Quest: installDir: Side Quest: {} launch: - /sidequest.exe: + "/sidequest.exe": - when: - os: windows store: steam @@ -471227,11 +472499,11 @@ Sideral: installDir: Sideral: {} launch: - /Contents/MacOS/Sideral: + "/Contents/MacOS/Sideral": - when: - os: mac store: steam - /Sideral.exe: + "/Sideral.exe": - when: - os: windows store: steam @@ -471241,7 +472513,7 @@ Sideway New York: installDir: sideway: {} launch: - /Win32/Sideway_ShippingWin32Steam.exe: + "/Win32/Sideway_ShippingWin32Steam.exe": - when: - store: steam steam: @@ -471250,7 +472522,7 @@ Sidewords: installDir: Sidewords: {} launch: - /Sidewords.exe: + "/Sidewords.exe": - when: - os: windows store: steam @@ -471260,15 +472532,15 @@ Siege (2016): installDir: Siege: {} launch: - /Siege.app: + "/Siege.app": - when: - os: mac store: steam - /Siege.x86: + "/Siege.x86": - when: - os: linux store: steam - /siege.exe: + "/siege.exe": - when: - os: windows store: steam @@ -471288,7 +472560,7 @@ Siege Machines Builder: installDir: Gallic Wars Battle Simulator: {} launch: - /GallicWars.exe: + "/GallicWars.exe": - when: - os: windows store: steam @@ -471298,13 +472570,13 @@ Siege Saga: installDir: Siege Saga: {} launch: - /SiegeSaga.exe: + "/SiegeSaga.exe": - when: - os: windows store: steam steam: id: 559030 -'Siege Survival: Gloria Victis': +"Siege Survival: Gloria Victis": gog: id: 1991069301 id: @@ -471316,7 +472588,7 @@ Siege Saga: installDir: Gloria Victis Siege: {} launch: - /SiegeSurvival.exe: + "/SiegeSurvival.exe": - when: - store: steam steam: @@ -471325,15 +472597,15 @@ Siege Wars: installDir: Siege Wars: {} launch: - /SW.sh: + "/SW.sh": - when: - os: linux store: steam - /Siege Wars.app: + "/Siege Wars.app": - when: - os: mac store: steam - /SiegeWarsW7.exe: + "/SiegeWarsW7.exe": - when: - os: windows store: steam @@ -471350,7 +472622,7 @@ Siege and Destroy: id: 578050 Siege of Avalon: files: - /games: + "/games": tags: - save when: @@ -471360,7 +472632,7 @@ Siege of Avalon: installDir: Siege of Avalon Anthology: {} launch: - /Siege.exe: + "/Siege.exe": - when: - store: steam steam: @@ -471369,7 +472641,7 @@ Siege of Centauri: installDir: Siege of Centauri: {} launch: - /SiegeOfCentauri_DX11.exe: + "/SiegeOfCentauri_DX11.exe": - when: - store: steam steam: @@ -471378,28 +472650,31 @@ Siege of Inaolia: installDir: Siege of Inaolia Early Access: {} launch: - /Binaries/Win32/SoIGLAlpha1.exe: + "/Binaries/Win32/SoIGLAlpha1.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam - workingDir: /Binaries/Win32 + workingDir: "/Binaries/Win32" steam: id: 312270 Siege of Turtle Enclave: installDir: Siege of Turtle Enclave: {} launch: - /SoTE.exe: + "/SoTE.exe": - when: - os: windows store: steam - /SoTE.x86: + "/SoTE.x86": - when: - bit: 32 os: linux store: steam - /SoTE.x86_64: + "/SoTE.x86_64": - when: - bit: 64 os: linux @@ -471415,11 +472690,11 @@ Siegecraft Commander: installDir: Siegecraft Commander: {} launch: - /SiegecraftCommander.app: + "/SiegecraftCommander.app": - when: - os: mac store: steam - /SiegecraftCommander.exe: + "/SiegecraftCommander.exe": - when: - os: windows store: steam @@ -471429,7 +472704,7 @@ Sierra Madre: installDir: Sierra Madre: {} launch: - /Sierra Madre.exe: + "/Sierra Madre.exe": - when: - bit: 64 os: windows @@ -471440,7 +472715,7 @@ Sierra Ops: installDir: Sierra Ops: {} launch: - /SierraOps2019.exe: + "/SierraOps2019.exe": - when: - os: windows store: steam @@ -471451,12 +472726,12 @@ Sift Heads - Cartels 4: id: 1931380 Sifu: files: - /Sifu/Saved/Config/WindowsNoEditor: + "/Sifu/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /Sifu/Saved/SaveGames/: + "/Sifu/Saved/SaveGames/": tags: - save when: @@ -471464,7 +472739,7 @@ Sifu: installDir: Sifu: {} launch: - /Sifu.exe: + "/Sifu.exe": - when: - bit: 64 os: windows @@ -471475,7 +472750,7 @@ Sig.Null: installDir: SigNull: {} launch: - /SigNULL.exe: + "/SigNULL.exe": - when: - os: windows store: steam @@ -471486,11 +472761,11 @@ SightLineVR: SightLine: {} steam: id: 412360 -'Sigi: A Fart for Melusina': +"Sigi: A Fart for Melusina": installDir: Sigi: {} launch: - /Sigi.exe: + "/Sigi.exe": - when: - os: windows store: steam @@ -471503,15 +472778,15 @@ Sigils of Elohim: installDir: Sigils of Elohim: {} launch: - /Sigils.app: + "/Sigils.app": - when: - os: mac store: steam - /Sigils.exe: + "/Sigils.exe": - when: - os: windows store: steam - /Sigils.x86: + "/Sigils.x86": - when: - os: linux store: steam @@ -471522,19 +472797,19 @@ Sigils of Elohim: - save steam: id: 321480 -'Sigma Theory: Global Cold War': +"Sigma Theory: Global Cold War": files: - /.config/unity3d/MiClosStudio/sigma: + "/.config/unity3d/MiClosStudio/sigma": tags: - save when: - os: linux - /AppData/LocalLow/MiClosStudio/sigma: + "/AppData/LocalLow/MiClosStudio/sigma": tags: - save when: - os: windows - /AppData/LocalLow/MiClosStudio/sigma/settings.json: + "/AppData/LocalLow/MiClosStudio/sigma/settings.json": tags: - config when: @@ -471543,10 +472818,10 @@ Sigils of Elohim: id: 1986246769 id: gogExtra: - - 1697231883 - - 1477300900 - - 1706557751 - 1218136295 + - 1477300900 + - 1697231883 + - 1706557751 steamExtra: - 966710 - 1243710 @@ -471554,15 +472829,15 @@ Sigils of Elohim: installDir: SigmaTheory: {} launch: - /sigma.app: + "/sigma.app": - when: - os: mac store: steam - /sigma.exe: + "/sigma.exe": - when: - os: windows store: steam - /sigma.x86: + "/sigma.x86": - when: - os: linux store: steam @@ -471572,7 +472847,7 @@ Sigils of Elohim: - config steam: id: 716640 -'Sign Here:': +"Sign Here:": installDir: Sign Here _________: {} steam: @@ -471581,15 +472856,15 @@ Sign Motion: installDir: SignMotion: {} launch: - /SignMotion.app: + "/SignMotion.app": - when: - os: mac store: steam - /SignMotion.x86_64: + "/SignMotion.x86_64": - when: - os: linux store: steam - /signmotion.exe: + "/signmotion.exe": - when: - os: windows store: steam @@ -471599,11 +472874,11 @@ Signal Decay: installDir: Signal Decay: {} launch: - /Signal Decay.app/Contents/MacOS/Signal Decay: + "/Signal Decay.app/Contents/MacOS/Signal Decay": - when: - os: mac store: steam - /sd.exe: + "/sd.exe": - when: - os: windows store: steam @@ -471611,13 +472886,13 @@ Signal Decay: id: 508650 Signal Ops: files: - /.signalops: + "/.signalops": tags: - config - save when: - os: linux - /Signal Ops: + "/Signal Ops": tags: - config - save @@ -471628,11 +472903,13 @@ Signal Ops: installDir: Signal Ops: {} launch: - /signalops_client: + "/signalops_client": - when: + - os: mac + store: steam - os: linux store: steam - /signalops_client.exe: + "/signalops_client.exe": - when: - os: windows store: steam @@ -471640,13 +472917,13 @@ Signal Ops: id: 257770 Signal Simulator: files: - /.config/unity3d/SOL Games/Signal Simulator: + "/.config/unity3d/SOL Games/Signal Simulator": tags: - config - save when: - os: linux - /AppData/LocalLow/SOL Games/Signal Simulator: + "/AppData/LocalLow/SOL Games/Signal Simulator": tags: - save when: @@ -471654,11 +472931,11 @@ Signal Simulator: installDir: SignalSimulator: {} launch: - /SignalSimulator.exe: + "/SignalSimulator.exe": - when: - os: windows store: steam - /SignalSimulator.x86_64: + "/SignalSimulator.x86_64": - when: - os: linux store: steam @@ -471668,7 +472945,7 @@ Signal to Noise: installDir: Signal to Noise: {} launch: - /signal.exe: + "/signal.exe": - when: - os: windows store: steam @@ -471676,17 +472953,7 @@ Signal to Noise: id: 380210 Signalis: files: - /SIGNALIS_Data/save/*/lstr.replika: - tags: - - save - when: - - os: windows - /SIGNALIS_Data/save/*/settings.ini: - tags: - - config - when: - - os: windows - /Packages/HumbleBundle.SIGNALIS_q2mcdwmzx4qja/SystemAppData/wgs: + "/Packages/HumbleBundle.SIGNALIS_q2mcdwmzx4qja/SystemAppData/wgs": tags: - save when: @@ -471695,7 +472962,7 @@ Signalis: installDir: SIGNALIS: {} launch: - /SIGNALIS.exe: + "/SIGNALIS.exe": - when: - os: windows store: steam @@ -471705,15 +472972,15 @@ Signed and Sealed With a Kiss: installDir: Signed and Sealed With a Kiss: {} launch: - /Signed_and_Sealed_With_a_Kiss.app: + "/Signed_and_Sealed_With_a_Kiss.app": - when: - os: mac store: steam - /Signed_and_Sealed_With_a_Kiss.exe: + "/Signed_and_Sealed_With_a_Kiss.exe": - when: - os: windows store: steam - /Signed_and_Sealed_With_a_Kiss.sh: + "/Signed_and_Sealed_With_a_Kiss.sh": - when: - os: linux store: steam @@ -471723,7 +472990,7 @@ Signs of Darkness: installDir: Signs Of Darkness: {} launch: - /Signs.exe: + "/Signs.exe": - when: - bit: 64 os: windows @@ -471732,12 +472999,12 @@ Signs of Darkness: id: 715410 Signs of Life: files: - /My Games/Signs of Life/Saves: + "/My Games/Signs of Life/Saves": tags: - config when: - os: linux - /My Games/Signs of Life/Saves: + "/My Games/Signs of Life/Saves": tags: - config - save @@ -471746,11 +473013,11 @@ Signs of Life: installDir: Signs of Life: {} launch: - /Signs Of Life.exe: + "/Signs Of Life.exe": - when: - os: windows store: steam - /SignsOfLife.sh: + "/SignsOfLife.sh": - when: - os: linux store: steam @@ -471758,7 +473025,7 @@ Signs of Life: id: 263200 Signs of the Sojourner: files: - /AppData/LocalLow/Echodog Games/Signs of the Sojourner: + "/AppData/LocalLow/Echodog Games/Signs of the Sojourner": tags: - save when: @@ -471768,11 +473035,11 @@ Signs of the Sojourner: installDir: Signs of the Sojourner: {} launch: - /Signs of the Sojourner.app: + "/Signs of the Sojourner.app": - when: - os: mac store: steam - /Signs of the Sojourner.exe: + "/Signs of the Sojourner.exe": - when: - os: windows store: steam @@ -471783,22 +473050,22 @@ Sikanda: id: 921760 Silence - The Whispered World 2: files: - /Daedalic Entertainment GmbH/Silence/Savegames: + "/Daedalic Entertainment GmbH/Silence/Savegames": tags: - save when: - os: windows - /Daedalic Entertainment GmbH/Silence/Settings: + "/Daedalic Entertainment GmbH/Silence/Settings": tags: - config when: - os: windows - /Daedalic Entertainment GmbH/Silence/Savegames: + "/Daedalic Entertainment GmbH/Silence/Savegames": tags: - save when: - os: linux - /Daedalic Entertainment GmbH/Silence/Settings: + "/Daedalic Entertainment GmbH/Silence/Settings": tags: - config when: @@ -471808,15 +473075,15 @@ Silence - The Whispered World 2: installDir: Silence: {} launch: - /Silence.app: + "/Silence.app": - when: - os: mac store: steam - /Silence.exe: + "/Silence.exe": - when: - os: windows store: steam - /StartSilence_x86.sh: + "/StartSilence_x86.sh": - when: - os: linux store: steam @@ -471829,7 +473096,7 @@ Silence in Space - Season One: installDir: Silence in Space - Season One: {} launch: - /SISS1/SISS1.exe: + "/SISS1/SISS1.exe": - when: - os: windows store: steam @@ -471837,17 +473104,17 @@ Silence in Space - Season One: id: 598600 Silence of the Sleep: files: - /silenceofthesleep/controls.ini: + "/silenceofthesleep/controls.ini": tags: - config when: - os: windows - /silenceofthesleep/savedata.ini: + "/silenceofthesleep/savedata.ini": tags: - save when: - os: windows - /silenceofthesleep/settings.ini: + "/silenceofthesleep/settings.ini": tags: - config when: @@ -471855,7 +473122,7 @@ Silence of the Sleep: installDir: Silence of the Sleep: {} launch: - /sots.exe: + "/sots.exe": - when: - os: windows store: steam @@ -471864,21 +473131,21 @@ Silence of the Sleep: Silenced: steam: id: 988960 -'Silenced: The House': +"Silenced: The House": installDir: Silenced The House: {} launch: - /Silenced The House 32-bit.exe: + "/Silenced The House 32-bit.exe": - when: - bit: 32 os: windows store: steam - /Silenced The House 64-bit.exe: + "/Silenced The House 64-bit.exe": - when: - bit: 64 os: windows store: steam - /Silenced The House.app: + "/Silenced The House.app": - when: - os: mac store: steam @@ -471891,7 +473158,7 @@ Silent Depth 3D Submarine Simulation: installDir: SilentDepth: {} launch: - /SilentDepth.exe: + "/SilentDepth.exe": - when: - os: windows store: steam @@ -471901,7 +473168,7 @@ Silent Descent: installDir: Silent Descent: {} launch: - /Silent Descent.exe: + "/Silent Descent.exe": - when: - os: windows store: steam @@ -471915,7 +473182,7 @@ Silent Footsteps: installDir: Silent Footsteps: {} launch: - /Silent Footsteps.exe: + "/Silent Footsteps.exe": - when: - os: windows store: steam @@ -471925,19 +473192,19 @@ Silent Gentleman: installDir: Silent Gentleman: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: id: 636360 -'Silent Heroes: Elite Troops of WWII': +"Silent Heroes: Elite Troops of WWII": files: - /profiles/*/save: + "/profiles/*/save": tags: - save when: - os: windows - /profiles/*/settings: + "/profiles/*/settings": tags: - config when: @@ -471945,53 +473212,53 @@ Silent Gentleman: Silent Hill 2: steam: id: 2124490 -'Silent Hill 2: Director''s Cut': +"Silent Hill 2: Director's Cut": files: - /data/save/Folder 01: + "/data/save/Folder 01": tags: - save when: - os: windows Silent Hill 3: files: - /savedata: + "/savedata": tags: - config - save when: - os: windows -'Silent Hill 4: The Room': +"Silent Hill 4: The Room": files: - /input.ini: + "/input.ini": tags: - config when: - os: windows - /saves: + "/saves": tags: - save when: - os: windows gog: id: 1141086411 -'Silent Hill: Homecoming': +"Silent Hill: Homecoming": files: - /Engine/binds_pc_mjs.cfg: + "/Engine/binds_pc_mjs.cfg": tags: - config when: - os: windows - /Engine/default_pc.cfg: + "/Engine/default_pc.cfg": tags: - config when: - os: windows - /Engine/vars_pc.cfg: + "/Engine/vars_pc.cfg": tags: - config when: - os: windows - /Public Documents/Silent Hill Homecoming/shv_save.bin: + "/Public Documents/Silent Hill Homecoming/shv_save.bin": tags: - save when: @@ -471999,20 +473266,20 @@ Silent Hill 3: installDir: Silent Hill Homecoming: {} launch: - /Bin/SilentHill.exe: + "/Bin/SilentHill.exe": - when: - store: steam - workingDir: /Bin + workingDir: "/Bin" steam: id: 19000 Silent Hope: files: - /NR/Saved/Config/SaveGames/: + "/NR/Saved/Config/SaveGames/": tags: - save when: - os: windows - /NR/Saved/Config/WindowsNoEditor: + "/NR/Saved/Config/WindowsNoEditor": tags: - config when: @@ -472021,12 +473288,12 @@ Silent Hope: id: 1960110 Silent Hunter 2: files: - /Save: + "/Save": tags: - save when: - os: windows - /Sim/Config.ini: + "/Sim/Config.ini": tags: - config when: @@ -472037,28 +473304,28 @@ Silent Hunter 2: HKEY_LOCAL_MACHINE/SOFTWARE/WOW6432Node/Ultimation/SilentHunterII: tags: - config -'Silent Hunter 4: Wolves of the Pacific': +"Silent Hunter 4: Wolves of the Pacific": installDir: Silent Hunters Wolves of the Pacific: {} launch: - /sh4.exe: + "/sh4.exe": - when: - store: steam steam: id: 15200 -'Silent Hunter 5: Battle of the Atlantic': +"Silent Hunter 5: Battle of the Atlantic": installDir: Silent Hunter 5: {} launch: - /SH5.exe: - - arguments: '-uplay_steam_mode' + "/SH5.exe": + - arguments: "-uplay_steam_mode" when: - store: steam steam: id: 48110 Silent Hunter III: files: - /SH3: + "/SH3": tags: - config - save @@ -472067,7 +473334,7 @@ Silent Hunter III: installDir: Silent Hunter 3: {} launch: - /sh3.exe: + "/sh3.exe": - when: - store: steam steam: @@ -472085,7 +473352,7 @@ Silent Service: id: 329660 Silent Service II: files: - /SILENT: + "/SILENT": tags: - config - save @@ -472099,42 +473366,42 @@ Silent Service II: installDir: Silent Service 2: {} launch: - /Silent Service 2.app: + "/Silent Service 2.app": - when: - os: mac store: steam - /dosbox_linux/daum/launch_silentservice2_game_daum.sh: + "/dosbox_linux/daum/launch_silentservice2_game_daum.sh": - when: - os: linux store: steam - workingDir: /dosbox_linux/daum - /dosbox_linux/launch_silentservice2_config.sh: + workingDir: "/dosbox_linux/daum" + "/dosbox_linux/launch_silentservice2_config.sh": - when: - os: linux store: steam - workingDir: /dosbox_linux - /dosbox_linux/launch_silentservice2_game.sh: + workingDir: "/dosbox_linux" + "/dosbox_linux/launch_silentservice2_game.sh": - when: - os: linux store: steam - workingDir: /dosbox_linux - /dosbox_windows/daum/dosbox.exe: - - arguments: '-conf dosbox_silentservice2.conf -conf dosbox_silentservice2_launch_windows.conf -noconsole' + workingDir: "/dosbox_linux" + "/dosbox_windows/daum/dosbox.exe": + - arguments: "-conf dosbox_silentservice2.conf -conf dosbox_silentservice2_launch_windows.conf -noconsole" when: - os: windows store: steam - workingDir: /dosbox_windows/daum - /dosbox_windows/dosbox.exe: - - arguments: '-conf dosbox_silentservice2.conf -conf dosbox_silentservice2_launch_windows.conf -noconsole' + workingDir: "/dosbox_windows/daum" + "/dosbox_windows/dosbox.exe": + - arguments: "-conf dosbox_silentservice2.conf -conf dosbox_silentservice2_launch_windows.conf -noconsole" when: - os: windows store: steam - workingDir: /dosbox_windows - - arguments: '-conf dosbox_silentservice2.conf -conf dosbox_silentservice2_config_windows.conf -noconsole' + workingDir: "/dosbox_windows" + - arguments: "-conf dosbox_silentservice2.conf -conf dosbox_silentservice2_config_windows.conf -noconsole" when: - os: windows store: steam - workingDir: /dosbox_windows + workingDir: "/dosbox_windows" steam: id: 329670 Silent Space VR: @@ -472142,12 +473409,12 @@ Silent Space VR: id: 752370 Silent Storm: files: - /cfg: + "/cfg": tags: - config when: - os: windows - /save: + "/save": tags: - save when: @@ -472157,7 +473424,7 @@ Silent Storm: installDir: Silent Storm: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -472167,19 +473434,19 @@ Silent Tweets: installDir: Silent Tweets: {} launch: - /SilentTweets.app/Contents/MacOS/SilentTweets: + "/SilentTweets.app/Contents/MacOS/SilentTweets": - when: - os: mac store: steam - /SilentTweets.exe: + "/SilentTweets.exe": - when: - store: steam - /SilentTweets.x86: + "/SilentTweets.x86": - when: - bit: 32 os: linux store: steam - /SilentTweets.x86_64: + "/SilentTweets.x86_64": - when: - bit: 64 os: linux @@ -472190,7 +473457,7 @@ Silentium 2D: installDir: Silentium2D: {} launch: - /Silentium2D.exe: + "/Silentium2D.exe": - when: - os: windows store: steam @@ -472200,7 +473467,7 @@ Silhouette: installDir: Silhouette: {} launch: - /Silhouette.exe: + "/Silhouette.exe": - when: - os: windows store: steam @@ -472210,7 +473477,7 @@ Silica: installDir: Silica: {} launch: - /Silica.exe: + "/Silica.exe": - when: - store: steam steam: @@ -472222,11 +473489,11 @@ Silicon City: installDir: SiliconCity: {} launch: - /SiliconCity.app: + "/SiliconCity.app": - when: - os: mac store: steam - /SiliconCity.x86_64: + "/SiliconCity.x86_64": - when: - os: linux store: steam @@ -472234,12 +473501,12 @@ Silicon City: id: 1121200 Silicon Zeroes: files: - /profiles: + "/profiles": tags: - save when: - os: windows - /settings: + "/settings": tags: - config when: @@ -472247,15 +473514,15 @@ Silicon Zeroes: installDir: Silicon Zeroes: {} launch: - /Silicon Zeroes.app: + "/Silicon Zeroes.app": - when: - os: mac store: steam - /Silicon Zeroes.exe: + "/Silicon Zeroes.exe": - when: - os: windows store: steam - /SiliconZeroes.sh: + "/SiliconZeroes.sh": - when: - bit: 64 os: linux @@ -472266,16 +473533,16 @@ Silicone-2: installDir: Silicone-2: {} launch: - /Silicone-2.exe: + "/Silicone-2.exe": - when: - os: windows store: steam - /Silicone-2.x86: + "/Silicone-2.x86": - when: - bit: 32 os: linux store: steam - /Silicone-2.x86_64: + "/Silicone-2.x86_64": - when: - bit: 64 os: linux @@ -472286,36 +473553,36 @@ Silk: installDir: Silk: {} launch: - /Silk.app/Contents/MacOS/Silk: + "/Silk.app/Contents/MacOS/Silk": - when: - os: mac store: steam - /Silk.x86: + "/Silk.x86": - when: - bit: 64 os: linux store: steam - /Silk/Silk.exe: + "/Silk/Silk.exe": - when: - os: windows store: steam steam: id: 1132090 -'Silmaris: Dice Kingdom': +"Silmaris: Dice Kingdom": gog: id: 1272225512 installDir: Silmaris: {} launch: - /Silmaris.exe: + "/Silmaris.exe": - when: - os: windows store: steam - /silmaris.app/Contents/MacOS/Silmaris: + "/silmaris.app/Contents/MacOS/Silmaris": - when: - os: mac store: steam - /silmaris.x86_64: + "/silmaris.x86_64": - when: - os: linux store: steam @@ -472323,17 +473590,18 @@ Silk: id: 1293120 Silt: files: - /AppData/LocalLow/Spiral Circus/Silt/STEAMUSER/Saved Games: + "/AppData/LocalLow/Spiral Circus/Silt/STEAMUSER/Saved Games": tags: - save when: - - store: steam + - os: windows + store: steam gog: id: 1120916026 installDir: Silt: {} launch: - /Silt.exe: + "/Silt.exe": - when: - store: steam steam: @@ -472342,7 +473610,7 @@ Siluman Fantasy - First Half -: installDir: Siluman Fantasy - First Half: {} launch: - /Game/Game.exe: + "/Game/Game.exe": - when: - os: windows store: steam @@ -472350,32 +473618,32 @@ Siluman Fantasy - First Half -: id: 997240 Silver: files: - /SAVEGAME: + "/SAVEGAME": tags: - save when: - os: windows - /SAVEGAME/SILVER.OPT: + "/SAVEGAME/SILVER.OPT": tags: - config when: - os: windows - /THQNordic/Silver: + "/THQNordic/Silver": tags: - save when: - os: windows - /THQNordic/Silver/SAVEGAME/SILVER.OPT: + "/THQNordic/Silver/SAVEGAME/SILVER.OPT": tags: - config when: - os: windows - /THQNordic/Silver/*.sav: + "/THQNordic/Silver/*.sav": tags: - save when: - os: linux - /THQNordic/Silver/silver.opt: + "/THQNordic/Silver/silver.opt": tags: - config when: @@ -472385,25 +473653,25 @@ Silver: installDir: Silver: {} launch: - /Silver.app: + "/Silver.app": - when: - os: mac store: steam - /silver.exe: + "/silver.exe": - when: - os: windows store: steam - /silver32: + "/silver32": - when: - os: linux store: steam steam: id: 606680 -'Silver Bullet: Prometheus': +"Silver Bullet: Prometheus": installDir: SilverBullet: {} launch: - /SilverBullet.exe: + "/SilverBullet.exe": - when: - os: windows store: steam @@ -472411,7 +473679,7 @@ Silver: id: 446250 Silver Chains: files: - /SilverChains/Saved: + "/SilverChains/Saved": tags: - config - save @@ -472422,7 +473690,7 @@ Silver Chains: installDir: Silver Chains: {} launch: - /SilverChains.exe: + "/SilverChains.exe": - when: - os: windows store: steam @@ -472432,37 +473700,37 @@ Silver Child: installDir: Silver Child: {} launch: - /Silver Child.exe: + "/Silver Child.exe": - when: - os: windows store: steam steam: id: 958360 -'Silver Creek Falls: Chapter 1': +"Silver Creek Falls: Chapter 1": installDir: Silver Creek Falls Chapter 1: {} launch: - /Silver Creek Falls.exe: + "/Silver Creek Falls.exe": - when: - os: windows store: steam steam: id: 392450 -'Silver Creek Falls: Chapter 2': +"Silver Creek Falls: Chapter 2": installDir: Silver Creek Falls - Chapter 2: {} launch: - /Silver Creek Falls.exe: + "/Silver Creek Falls.exe": - when: - os: windows store: steam steam: id: 403070 -'Silver Creek Falls: Chapter 3': +"Silver Creek Falls: Chapter 3": installDir: Silver Creek Falls - Chapter 3: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -472472,7 +473740,7 @@ Silver Grapple: installDir: Silver Grapple: {} launch: - /Silver Grapple.exe: + "/Silver Grapple.exe": - when: - os: windows store: steam @@ -472482,7 +473750,7 @@ Silver Island: installDir: Silver Island: {} launch: - /Silver Island.exe: + "/Silver Island.exe": - when: - os: windows store: steam @@ -472492,7 +473760,7 @@ Silver Knight: installDir: Silver Knight: {} launch: - /Silverk Knight.exe: + "/Silverk Knight.exe": - when: - os: windows store: steam @@ -472502,7 +473770,7 @@ Silver Tale: installDir: Silver Tale: {} launch: - /SilverTale.exe: + "/SilverTale.exe": - when: - os: windows store: steam @@ -472512,17 +473780,17 @@ SilverFrame(纯白星原): installDir: silverframe: {} launch: - /silverframe.exe: + "/silverframe.exe": - when: - os: windows store: steam steam: id: 864430 -'SilverQuest: Gaiden': +"SilverQuest: Gaiden": installDir: SilverQuest Gaiden: {} launch: - /SilverQuest Gaiden.exe: + "/SilverQuest Gaiden.exe": - when: - os: windows store: steam @@ -472530,12 +473798,12 @@ SilverFrame(纯白星原): id: 333380 Silverball: files: - /CONFIG.PIN: + "/CONFIG.PIN": tags: - config when: - os: dos - /HISCORE.PIN: + "/HISCORE.PIN": tags: - save when: @@ -472546,30 +473814,30 @@ Silverfall: installDir: Silverfall: {} launch: - /GameSetup.exe: + "/GameSetup.exe": - when: - store: steam - /MC_GAME_LINK.htm: + "/MC_GAME_LINK.htm": - when: - store: steam - /Register/Register.htm: + "/Register/Register.htm": - when: - store: steam - /Silverfall.exe: + "/Silverfall.exe": - when: - store: steam steam: id: 4420 -'Silverfall: Earth Awakening': +"Silverfall: Earth Awakening": gog: id: 1284627191 installDir: Silverfall: {} launch: - /GameSetup.exe: + "/GameSetup.exe": - when: - store: steam - /silverfall.exe: + "/silverfall.exe": - when: - store: steam steam: @@ -472578,15 +473846,15 @@ Silverworld: installDir: Silverworld: {} launch: - /Silverworld: + "/Silverworld": - when: - os: linux store: steam - /Silverworld.app/Contents/MacOS/Silverworld: + "/Silverworld.app/Contents/MacOS/Silverworld": - when: - os: mac store: steam - /Silverworld.exe: + "/Silverworld.exe": - when: - os: windows store: steam @@ -472596,24 +473864,24 @@ Sim Junta: installDir: Sim Junta: {} launch: - /SimJunta.exe: + "/SimJunta.exe": - when: - store: steam steam: id: 390510 SimAirport: files: - /.config/unity3d/LVGameDev LLC/SimAirport/SavesDir: + "/.config/unity3d/LVGameDev LLC/SimAirport/SavesDir": tags: - save when: - os: linux - /AppData/LocalLow/LVGameDev LLC/SimAirport/SavesDir: + "/AppData/LocalLow/LVGameDev LLC/SimAirport/SavesDir": tags: - save when: - os: windows - /Library/Application Support/unity.LVGameDev LLC.SimAirport/SavesDir: + "/Library/Application Support/unity.LVGameDev LLC.SimAirport/SavesDir": tags: - save when: @@ -472621,20 +473889,20 @@ SimAirport: installDir: SimAirport: {} launch: - /SimAirport.app/Contents/MacOS/SimAirport: + "/SimAirport.app/Contents/MacOS/SimAirport": - when: - os: mac store: steam - /SimAirport.exe: + "/SimAirport.exe": - when: - os: windows store: steam - /SimAirport.x86: + "/SimAirport.x86": - when: - bit: 32 os: linux store: steam - /SimAirport.x86_64: + "/SimAirport.x86_64": - when: - bit: 64 os: linux @@ -472643,32 +473911,32 @@ SimAirport: id: 598330 SimAnt: files: - /*.ant: + "/*.ant": tags: - save when: - os: windows SimCity (2013): files: - /Documents/SimCity/Games: + "/Documents/SimCity/Games": tags: - save when: - os: mac - /SimCity/Games: + "/SimCity/Games": tags: - save when: - os: windows SimCity 2000: files: - /Cities/*.sc2: + "/Cities/*.sc2": tags: - save when: - os: dos - os: windows - /SC2000.CFG: + "/SC2000.CFG": tags: - config when: @@ -472677,24 +473945,24 @@ SimCity 2000: id: 1207658969 SimCity 2000 Network Edition: files: - /2KCLIENT.ini: + "/2KCLIENT.ini": tags: - config when: - os: windows SimCity 3000: files: - /Cities: + "/Cities": tags: - save when: - os: windows - /Game/SC3.cfg: + "/Game/SC3.cfg": tags: - config when: - os: windows - /Game/sc3.ini: + "/Game/sc3.ini": tags: - config when: @@ -472703,20 +473971,22 @@ SimCity 3000: id: 2086050016 SimCity 4: files: - /Documents/SimCity 4/Regions: + "/Documents/SimCity 4/Regions": tags: - save when: - os: mac - /Library/Containers/com.aspyr.simcity4.appstore/Data/Documents/SimCity 4/Regions: + "/Library/Containers/com.aspyr.simcity4.appstore/Data/Documents/SimCity 4/Regions": tags: - save - /SimCity 4: + when: + - os: mac + "/SimCity 4": tags: - config when: - os: windows - /SimCity 4/Regions: + "/SimCity 4/Regions": tags: - save when: @@ -472726,15 +473996,15 @@ SimCity 4: installDir: SimCity 4 Deluxe: {} launch: - /Apps/SimCity 4.exe: + "/Apps/SimCity 4.exe": - when: - os: windows store: steam - /Sim City 4 Deluxe Edition.app: + "/Sim City 4 Deluxe Edition.app": - when: - os: mac store: steam - /Support/EA Help/Electronic_Arts_Technical_Support.htm: + "/Support/EA Help/Electronic_Arts_Technical_Support.htm": - when: - os: windows store: steam @@ -472742,62 +474012,62 @@ SimCity 4: id: 24780 SimCity Societies: files: - /SimCity Societies/User Data: + "/SimCity Societies/User Data": tags: - save when: - os: windows - /SimCity Societies/Videosettings.xml: + "/SimCity Societies/Videosettings.xml": tags: - config when: - os: windows SimCopter: files: - /My Saved Cities/*.sc2: + "/My Saved Cities/*.sc2": tags: - save when: - os: windows SimFarm: files: - /*.sfm: + "/*.sfm": tags: - save when: - os: windows -'SimIsle: Missions in the Rainforest': +"SimIsle: Missions in the Rainforest": files: - /savegame: + "/savegame": tags: - save when: - os: windows SimPark: files: - /SimPark.ini: + "/SimPark.ini": tags: - config when: - os: windows - /SimPark.ini: + "/SimPark.ini": tags: - config when: - os: windows - /*.prk: + "/*.prk": tags: - save when: - os: windows SimRail - The Railway Simulator: files: - /AppData/LocalLow/SimKol/SimRail/buttons.conf: + "/AppData/LocalLow/SimKol/SimRail/buttons.conf": tags: - config when: - os: windows - /AppData/LocalLow/SimKol/SimRail/settings.conf: + "/AppData/LocalLow/SimKol/SimRail/settings.conf": tags: - config when: @@ -472805,7 +474075,7 @@ SimRail - The Railway Simulator: installDir: SimRail: {} launch: - /SimRail.exe: + "/SimRail.exe": - when: - bit: 64 os: windows @@ -472814,35 +474084,35 @@ SimRail - The Railway Simulator: id: 1422130 SimSafari: files: - /Savegame/*.saf: + "/Savegame/*.saf": tags: - save when: - os: windows - /smsafari.ini: + "/smsafari.ini": tags: - config when: - os: windows SimTown: files: - /*.twn: + "/*.twn": tags: - save when: - os: windows SimTunes: files: - /Tunes: + "/Tunes": tags: - save when: - os: windows -'Simgirls: Lovemore College RPG': +"Simgirls: Lovemore College RPG": installDir: Simgirls Lovemore College RPG: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -472852,7 +474122,7 @@ Simian Rising: installDir: SimianRising: {} launch: - /SimianRising.exe: + "/SimianRising.exe": - when: - bit: 64 os: windows @@ -472863,21 +474133,21 @@ Simian.interface++: installDir: simian.interface++: {} launch: - /simian++.app/Contents/MacOS/simian++: + "/simian++.app/Contents/MacOS/simian++": - when: - os: mac store: steam - /simian++.exe: + "/simian++.exe": - when: - os: windows store: steam steam: id: 467780 -'Similars: Climb': +"Similars: Climb": installDir: Similars Climb: {} launch: - /Similars Climb.exe: + "/Similars Climb.exe": - when: - os: windows store: steam @@ -472885,7 +474155,7 @@ Simian.interface++: id: 1036460 Simmiland: files: - /options.ini: + "/options.ini": tags: - config when: @@ -472893,11 +474163,11 @@ Simmiland: installDir: Simmiland: {} launch: - /simmiland.app: + "/simmiland.app": - when: - os: mac store: steam - /simmiland.exe: + "/simmiland.exe": - when: - os: windows store: steam @@ -472906,13 +474176,13 @@ Simmiland: Simon the Sorcerer: gog: id: 1207658699 -'Simon the Sorcerer 2: 25th Anniversary Edition': +"Simon the Sorcerer 2: 25th Anniversary Edition": gog: id: 1893480337 installDir: SimonTheSorcerer2: {} launch: - /simon2.exe: + "/simon2.exe": - when: - os: windows store: steam @@ -472920,42 +474190,42 @@ Simon the Sorcerer: id: 678760 Simon the Sorcerer 3D: files: - /Data: + "/Data": tags: - save when: - os: windows gog: id: 1207658701 -'Simon the Sorcerer 4: Chaos Happens': +"Simon the Sorcerer 4: Chaos Happens": files: - 'C:/Program Files/Simon the Sorcerer - Chaos happens': + "C:/Program Files/Simon the Sorcerer - Chaos happens": tags: - config when: - os: windows gog: id: 1433859761 -'Simon the Sorcerer II: The Lion, the Wizard and the Wardrobe': +"Simon the Sorcerer II: The Lion, the Wizard and the Wardrobe": gog: id: 1207658700 -'Simon the Sorcerer: 25th Anniversary Edition': +"Simon the Sorcerer: 25th Anniversary Edition": gog: id: 2134529414 installDir: SimonTheSorcerer: {} launch: - /simon.exe: + "/simon.exe": - when: - os: windows store: steam steam: id: 674150 -'Simple Ball: Extended Edition': +"Simple Ball: Extended Edition": installDir: Simple Ball Extended Edition: {} launch: - /SB.exe: + "/SB.exe": - when: - bit: 32 os: windows @@ -472969,21 +474239,21 @@ Simple Dot: installDir: Simple Dot: {} launch: - /Simple Dot.app: + "/Simple Dot.app": - when: - os: mac store: steam - /Simple Dot.x86: + "/Simple Dot.x86": - when: - bit: 32 os: linux store: steam - /Simple Dot.x86_64: + "/Simple Dot.x86_64": - when: - bit: 64 os: linux store: steam - /SimpleDot.exe: + "/SimpleDot.exe": - when: - os: windows store: steam @@ -472996,7 +474266,7 @@ Simple Light Cycles: installDir: Simple Light Cycles: {} launch: - /SimpleLightCycles.exe: + "/SimpleLightCycles.exe": - when: - os: windows store: steam @@ -473013,7 +474283,7 @@ Simple Machines: installDir: Simple Machines: {} launch: - /Simple Machines.exe: + "/Simple Machines.exe": - when: - store: steam steam: @@ -473022,7 +474292,7 @@ Simple Man: installDir: Simple Man: {} launch: - /Simple Man.exe: + "/Simple Man.exe": - when: - os: windows store: steam @@ -473032,7 +474302,7 @@ Simple RTS: installDir: Simple RTS: {} launch: - /SimpleRTS.exe: + "/SimpleRTS.exe": - when: - os: windows store: steam @@ -473042,15 +474312,15 @@ Simple Racing: installDir: Simple Racing: {} launch: - /Simple Racing.exe: + "/Simple Racing.exe": - when: - os: windows store: steam - /Simple Racing.x86: + "/Simple Racing.x86": - when: - os: linux store: steam - /SimpleRacing.app/Contents/MacOS/SimpleRacing: + "/SimpleRacing.app/Contents/MacOS/SimpleRacing": - when: - os: mac store: steam @@ -473060,20 +474330,20 @@ Simple Railroad: installDir: Simple Railroad: {} launch: - /SimpleRailroad.app/Contents/MacOS/SimpleRailroad: + "/SimpleRailroad.app/Contents/MacOS/SimpleRailroad": - when: - os: mac store: steam - /SimpleRailroad.exe: + "/SimpleRailroad.exe": - when: - os: windows store: steam - /SimpleRailroad.x86: + "/SimpleRailroad.x86": - when: - bit: 32 os: linux store: steam - /SimpleRailroad.x86_64: + "/SimpleRailroad.x86_64": - when: - bit: 64 os: linux @@ -473084,15 +474354,15 @@ Simple Sailing: installDir: Simple Sailing: {} launch: - /SimpleSailing.app/Contents/MacOS/SimpleSailing: + "/SimpleSailing.app/Contents/MacOS/SimpleSailing": - when: - os: mac store: steam - /SimpleSailing.exe: + "/SimpleSailing.exe": - when: - os: windows store: steam - /SimpleSailing.x86: + "/SimpleSailing.x86": - when: - os: linux store: steam @@ -473102,11 +474372,11 @@ Simple Spy: installDir: Simple Spy: {} launch: - /SimpleSpy.app/Contents/MacOS/SimpleSpy: + "/SimpleSpy.app/Contents/MacOS/SimpleSpy": - when: - os: mac store: steam - /SimpleSpy.exe: + "/SimpleSpy.exe": - when: - os: windows store: steam @@ -473116,7 +474386,7 @@ Simple Story - Alex: installDir: Simple Story - Alex: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: @@ -473125,7 +474395,7 @@ SimpleMovie: installDir: SimpleMovie: {} launch: - /SimpleMovie.exe: + "/SimpleMovie.exe": - when: - bit: 64 os: windows @@ -473134,17 +474404,17 @@ SimpleMovie: id: 997370 SimplePlanes: files: - /AppData/LocalLow/AppData/LocalLow/Jundroo/SimplePlanes: + "/AppData/LocalLow/AppData/LocalLow/Jundroo/SimplePlanes": tags: - save when: - os: windows - /AppData/LocalLow/Jundroo/SimplePlanes/Settings.xml: + "/AppData/LocalLow/Jundroo/SimplePlanes/Settings.xml": tags: - config when: - os: windows - /Library/Application Support/unity.Jundroo.SimplePlanes: + "/Library/Application Support/unity.Jundroo.SimplePlanes": tags: - save when: @@ -473154,11 +474424,11 @@ SimplePlanes: installDir: SimplePlanes: {} launch: - /SimplePlanes.app: + "/SimplePlanes.app": - when: - os: mac store: steam - /SimplePlanes.exe: + "/SimplePlanes.exe": - when: - os: windows store: steam @@ -473172,11 +474442,11 @@ SimpleRockets: installDir: SimpleRockets: {} launch: - /SimpleRockets.app: + "/SimpleRockets.app": - when: - os: mac store: steam - /SimpleRockets.exe: + "/SimpleRockets.exe": - when: - os: windows store: steam @@ -473186,7 +474456,7 @@ Simplefield: installDir: Simplefield: {} launch: - /Simplefield.exe: + "/Simplefield.exe": - when: - os: windows store: steam @@ -473196,7 +474466,7 @@ Simplex Mundi: installDir: Simplex Mundi: {} launch: - /SimplexMundiRelease1.1.5.exe: + "/SimplexMundiRelease1.1.5.exe": - when: - os: windows store: steam @@ -473206,15 +474476,15 @@ Simply Chess: installDir: Chess: {} launch: - /Chess: + "/Chess": - when: - os: linux store: steam - /Chess.app: + "/Chess.app": - when: - os: mac store: steam - /Chess.exe: + "/Chess.exe": - when: - os: windows store: steam @@ -473224,7 +474494,7 @@ SimplyTrivia: installDir: SimplyTrivia: {} launch: - /SimplyTrivia.exe: + "/SimplyTrivia.exe": - when: - store: steam steam: @@ -473233,13 +474503,13 @@ Simson Tuningwerkstatt 3D: installDir: Simson Tuningwerkstatt 3D: {} launch: - /Tuningwerkstatt.app/Contents/MacOS/Tuningwerkstatt: - - arguments: '-steam' + "/Tuningwerkstatt.app/Contents/MacOS/Tuningwerkstatt": + - arguments: "-steam" when: - os: mac store: steam - /Tuningwerkstatt.exe: - - arguments: '-steam' + "/Tuningwerkstatt.exe": + - arguments: "-steam" when: - os: windows store: steam @@ -473247,12 +474517,12 @@ Simson Tuningwerkstatt 3D: id: 956240 Simulacra: files: - /Saved Games/Kaigan Games/SIMULACRA: + "/Saved Games/Kaigan Games/SIMULACRA": tags: - save when: - os: windows - /userdata//712730/remote: + "/userdata//712730/remote": tags: - save when: @@ -473262,11 +474532,11 @@ Simulacra: installDir: SIMULACRA: {} launch: - /SIMULACRA.app/Contents/MacOS/SIMULACRA: + "/SIMULACRA.app/Contents/MacOS/SIMULACRA": - when: - os: mac store: steam - /simulacra.exe: + "/simulacra.exe": - when: - bit: 64 os: windows @@ -473275,7 +474545,7 @@ Simulacra: id: 712730 Simulacra 2: files: - /AppData/LocalLow/Kaigan Games/SIMULACRA 2: + "/AppData/LocalLow/Kaigan Games/SIMULACRA 2": tags: - save when: @@ -473285,7 +474555,7 @@ Simulacra 2: installDir: SIMULACRA 2: {} launch: - /simulacra2.exe: + "/simulacra2.exe": - when: - bit: 64 os: windows @@ -473296,9 +474566,9 @@ Simulacra 2: - config steam: id: 1011190 -'Simulacra: Pipe Dreams': +"Simulacra: Pipe Dreams": files: - /userdata//878320/remote: + "/userdata//878320/remote": tags: - save when: @@ -473307,7 +474577,7 @@ Simulacra 2: installDir: SIMULACRA Pipe Dreams: {} launch: - /pipedreams.exe: + "/pipedreams.exe": - when: - bit: 64 os: windows @@ -473322,18 +474592,18 @@ Simulator Hipstera 2k17: id: 699450 Simutrans: files: - /.simutrans: + "/.simutrans": tags: - config - save when: - os: linux - /Simutrans/save: + "/Simutrans/save": tags: - save when: - os: windows - /Simutrans/settings.xml: + "/Simutrans/settings.xml": tags: - config when: @@ -473341,16 +474611,16 @@ Simutrans: installDir: Simutrans: {} launch: - /simpreloader.exe: + "/simpreloader.exe": - when: - os: windows store: steam - /simutrans.app/Contents/MacOS/simutrans: - - arguments: '-nomidi' + "/simutrans.app/Contents/MacOS/simutrans": + - arguments: "-nomidi" when: - os: mac store: steam - /simutrans.sh: + "/simutrans.sh": - when: - os: linux store: steam @@ -473360,7 +474630,7 @@ Sin Castle: installDir: Sin Castle: {} launch: - /SinCastle.exe: + "/SinCastle.exe": - when: - os: windows store: steam @@ -473378,7 +474648,7 @@ Sin; Vengeance: installDir: Sin; Vengeance: {} launch: - /Sin; Vengeance.exe: + "/Sin; Vengeance.exe": - when: - os: windows store: steam @@ -473388,7 +474658,7 @@ SinVR: installDir: SinVR: {} launch: - /SinNoVR.exe: + "/SinNoVR.exe": - when: - os: windows store: steam @@ -473398,15 +474668,15 @@ SinaRun: installDir: SinaRun: {} launch: - /SinaRun.app: + "/SinaRun.app": - when: - os: mac store: steam - /SinaRun.exe: + "/SinaRun.exe": - when: - os: windows store: steam - /SinaRun.x86: + "/SinaRun.x86": - when: - os: linux store: steam @@ -473419,7 +474689,7 @@ SincereMen: id: 1115040 Sine Mora: files: - /userdata//207040/remote/Sine Mora.cfg: + "/userdata//207040/remote/Sine Mora.cfg": tags: - config - save @@ -473428,7 +474698,7 @@ Sine Mora: installDir: Sine Mora: {} launch: - /SineMora.exe: + "/SineMora.exe": - when: - os: windows store: steam @@ -473436,17 +474706,17 @@ Sine Mora: id: 207040 Sine Mora EX: files: - /*.settings: + "/*.settings": tags: - config when: - os: windows - /userdata//606730/remote/Sine Mora.cfg: + "/userdata//606730/remote/Sine Mora.cfg": tags: - save when: - store: steam - /SineMoraEX.dat: + "/SineMoraEX.dat": tags: - save when: @@ -473456,20 +474726,20 @@ Sine Mora EX: installDir: Sine Mora EX: {} launch: - /SineMoraEX.exe: + "/SineMoraEX.exe": - when: - os: windows store: steam steam: id: 606730 -'Sine Requie: Snake Eyes': +"Sine Requie: Snake Eyes": steam: id: 755390 Sinewave: installDir: Sinewave: {} launch: - /SineWave.exe: + "/SineWave.exe": - when: - os: windows store: steam @@ -473479,7 +474749,7 @@ Sinful Eden: installDir: Sinful Eden: {} launch: - /SinfulEdenB6.exe: + "/SinfulEdenB6.exe": - when: - os: windows store: steam @@ -473489,7 +474759,7 @@ Singaria: installDir: Singaria: {} launch: - /Singaria.exe: + "/Singaria.exe": - when: - os: windows store: steam @@ -473499,7 +474769,7 @@ Singaria - Prologue: installDir: Singaria - Prologue: {} launch: - /Singaria.exe: + "/Singaria.exe": - when: - store: steam steam: @@ -473508,19 +474778,19 @@ Singing Stones VR: installDir: Singing Stones VR: {} launch: - /SS_v2.3.exe: - - arguments: '123' + "/SS_v2.3.exe": + - arguments: "123" when: - bit: 64 os: windows store: steam steam: id: 560870 -'Single Diary: Fresh Graduate': +"Single Diary: Fresh Graduate": installDir: SingleDiary_FreshGraduate: {} launch: - /SingleDiary_FreshGraduate.exe: + "/SingleDiary_FreshGraduate.exe": - when: - bit: 64 os: windows @@ -473531,48 +474801,48 @@ Singled Out: installDir: Singled Out: {} launch: - /Singled Out.app: + "/Singled Out.app": - when: - os: mac store: steam - /Singled Out.exe: + "/Singled Out.exe": - when: - os: windows store: steam - /Singled Out.x86_64: + "/Singled Out.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 1144150 -'Singles 2: Triple Trouble': +"Singles 2: Triple Trouble": files: - /Config: + "/Config": tags: - config when: - os: windows - /Savegame: + "/Savegame": tags: - save when: - os: windows -'Singles: Flirt Up Your Life!': +"Singles: Flirt Up Your Life!": files: - /Config: + "/Config": tags: - config when: - os: windows - /Savegame: + "/Savegame": tags: - save when: - os: windows Singularity: files: - /Singularity/RvGame/SaveData: + "/Singularity/RvGame/SaveData": tags: - save when: @@ -473582,7 +474852,7 @@ Singularity: installDir: Singularity: {} launch: - /binaries/Singularity.exe: + "/binaries/Singularity.exe": - when: - store: steam registry: @@ -473600,42 +474870,42 @@ Singularity Roller: installDir: Singularity Roller: {} launch: - /QR/QR.exe: + "/QR/QR.exe": - when: - bit: 64 os: windows store: steam steam: id: 684820 -'Singularity: Tactics Arena': +"Singularity: Tactics Arena": installDir: Singularity Tactics Arena: {} launch: - /Game.app: + "/Game.app": - when: - os: mac store: steam - /Game.exe: + "/Game.exe": - when: - os: windows store: steam steam: id: 962220 -'Sinistar: Unleashed': +"Sinistar: Unleashed": files: - /save: + "/save": tags: - save when: - os: windows Sinister City: files: - /Jetdogs Studios/Sinister City/*.sav*: + "/Jetdogs Studios/Sinister City/*.sav*": tags: - save when: - os: windows - /Jetdogs Studios/Sinister City/options.cfg: + "/Jetdogs Studios/Sinister City/options.cfg": tags: - config when: @@ -473643,7 +474913,7 @@ Sinister City: installDir: Sinister City: {} launch: - /SinisterCity.exe: + "/SinisterCity.exe": - when: - os: windows store: steam @@ -473653,7 +474923,7 @@ Sinister Halloween: installDir: SinisterHalloween: {} launch: - /SHVR.exe: + "/SHVR.exe": - when: - bit: 64 os: windows @@ -473667,15 +474937,15 @@ Sink or Skim: installDir: Sink or Skim: {} launch: - /WindowsNoEditor/SinkOrSkim.exe: + "/WindowsNoEditor/SinkOrSkim.exe": - when: - store: steam - workingDir: /WindowsNoEditor + workingDir: "/WindowsNoEditor" steam: id: 761290 Sinking Island: files: - /Sinking Island: + "/Sinking Island": tags: - config - save @@ -473686,7 +474956,7 @@ Sinking Island: installDir: Sinking Island: {} launch: - /Sinking Island.exe: + "/Sinking Island.exe": - when: - os: windows store: steam @@ -473696,12 +474966,12 @@ Sinking Simulator: installDir: Sinking Simulator: {} launch: - /dist/jre/bin/java: - - arguments: '-XStartOnFirstThread -jar dist/libs/sinkingsimulator-4.0.jar' + "/dist/jre/bin/java": + - arguments: "-XStartOnFirstThread -jar dist/libs/sinkingsimulator-4.0.jar" when: - os: mac store: steam - /sinkingsimulator.exe: + "/sinkingsimulator.exe": - when: - os: windows store: steam @@ -473711,19 +474981,19 @@ Sinless: installDir: Sinless: {} launch: - /Sinless.app: + "/Sinless.app": - when: - os: mac store: steam - /Sinless.exe: + "/Sinless.exe": - when: - os: windows store: steam - /Sinless.x86: + "/Sinless.x86": - when: - os: linux store: steam - /Soundtrack.cmd: + "/Soundtrack.cmd": - when: - os: windows store: steam @@ -473732,26 +475002,26 @@ Sinless: Sinner: steam: id: 1086500 -'Sinner: Sacrifice for Redemption': +"Sinner: Sacrifice for Redemption": files: - /Packages/AnotherIndie.SINNERforWindows10_zrgg4v79ydekg/LocalCache/Local/blackstar_uproject/Saved/Config/WindowsNoEditor: + "/Packages/AnotherIndie.SINNERforWindows10_zrgg4v79ydekg/LocalCache/Local/blackstar_uproject/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows store: microsoft - /Packages/AnotherIndie.SINNERforWindows10_zrgg4v79ydekg/LocalCache/Local/blackstar_uproject/Saved/SaveGames: + "/Packages/AnotherIndie.SINNERforWindows10_zrgg4v79ydekg/LocalCache/Local/blackstar_uproject/Saved/SaveGames": tags: - save when: - os: windows store: microsoft - /blackstar_uproject/Saved/Config/WindowsNoEditor: + "/blackstar_uproject/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /blackstar_uproject/Saved/SaveGames: + "/blackstar_uproject/Saved/SaveGames": tags: - save when: @@ -473759,7 +475029,7 @@ Sinner: installDir: SINNER: {} launch: - /blackstar_uproject.exe: + "/blackstar_uproject.exe": - when: - bit: 64 os: windows @@ -473768,12 +475038,12 @@ Sinner: id: 691280 Sins of The Demon RPG: files: - /Game.ini: + "/Game.ini": tags: - config when: - os: windows - /Save*.rvdata2: + "/Save*.rvdata2": tags: - save when: @@ -473781,7 +475051,7 @@ Sins of The Demon RPG: installDir: Sins Of The Demon: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -473789,7 +475059,7 @@ Sins of The Demon RPG: id: 461640 Sins of a Solar Empire: files: - /Ironclad Games/Sins of a Solar Empire: + "/Ironclad Games/Sins of a Solar Empire": tags: - config - save @@ -473800,20 +475070,20 @@ Sins of a Solar Empire: installDir: Sins of a Solar Empire Trinity: {} launch: - /Sins of a Solar Empire Diplomacy.exe: + "/Sins of a Solar Empire Diplomacy.exe": - when: - store: steam - /Sins of a Solar Empire Entrenchment.exe: + "/Sins of a Solar Empire Entrenchment.exe": - when: - store: steam - /Sins of a Solar Empire.exe: + "/Sins of a Solar Empire.exe": - when: - store: steam steam: id: 201290 -'Sins of a Solar Empire: Rebellion': +"Sins of a Solar Empire: Rebellion": files: - /My Games/Ironclad Games/Sins of a Solar Empire Rebellion: + "/My Games/Ironclad Games/Sins of a Solar Empire Rebellion": tags: - config - save @@ -473824,8 +475094,8 @@ Sins of a Solar Empire: id: gogExtra: - 1449139823 - - 1559764443 - 1456024749 + - 1559764443 steamExtra: - 228600 - 228601 @@ -473835,7 +475105,7 @@ Sins of a Solar Empire: installDir: Sins of a Solar Empire Rebellion: {} launch: - /StardockLauncher.exe: + "/StardockLauncher.exe": - when: - store: steam steam: @@ -473844,7 +475114,7 @@ Sio And Mysterious Forest: installDir: Shio And Mysterious Forest: {} launch: - /Shio.exe: + "/Shio.exe": - when: - store: steam steam: @@ -473853,16 +475123,16 @@ Sipho: installDir: Sipho: {} launch: - /Sipho: + "/Sipho": - when: - bit: 64 os: linux store: steam - /Sipho.app: + "/Sipho.app": - when: - os: mac store: steam - /Sipho.exe: + "/Sipho.exe": - when: - os: windows store: steam @@ -473872,7 +475142,7 @@ Sir Lovelot: installDir: SirLovelot: {} launch: - /SirLovelot.exe: + "/SirLovelot.exe": - when: - os: windows store: steam @@ -473882,50 +475152,50 @@ Sir Smedieval: installDir: Sir Smedieval: {} launch: - /Sir_Smedieval.exe: + "/Sir_Smedieval.exe": - when: - os: windows store: steam steam: id: 1188020 -Sir! I'd Like To Report A Bug!: +"Sir! I'd Like To Report A Bug!": installDir: - Sir! I'd Like To Report A Bug!: {} + "Sir! I'd Like To Report A Bug!": {} launch: - /Sir.exe: + "/Sir.exe": - when: - os: windows store: steam steam: id: 393240 -'Sir, You Are Being Hunted': +"Sir, You Are Being Hunted": files: - /s/SaveGames: + "/s/SaveGames": tags: - config when: - os: linux - /s/SaveGames/World*: + "/s/SaveGames/World*": tags: - save when: - os: linux - /x64/s/SaveGames: + "/x64/s/SaveGames": tags: - config when: - os: windows - /x64/s/SaveGames/World*: + "/x64/s/SaveGames/World*": tags: - save when: - os: windows - /x86/s/SaveGames: + "/x86/s/SaveGames": tags: - config when: - os: windows - /x86/s/SaveGames/World*: + "/x86/s/SaveGames/World*": tags: - save when: @@ -473935,11 +475205,11 @@ Sir! I'd Like To Report A Bug!: installDir: SirYouAreBeingHunted: {} launch: - /multiplayer/sir.app/Contents/MacOS/sir: + "/multiplayer/sir.app/Contents/MacOS/sir": - when: - os: mac store: steam - workingDir: /multiplayer + workingDir: "/multiplayer" registry: HKEY_CURRENT_USER/SOFTWARE/Big Robot/SirYouAreBeingHunted: tags: @@ -473948,12 +475218,12 @@ Sir! I'd Like To Report A Bug!: id: 242880 Siralim: files: - /Siralim/config.ini: + "/Siralim/config.ini": tags: - config when: - os: windows - /Siralim/siralim*.ini: + "/Siralim/siralim*.ini": tags: - save when: @@ -473961,15 +475231,15 @@ Siralim: installDir: Siralim: {} launch: - /Siralim.app: + "/Siralim.app": - when: - os: mac store: steam - /Siralim.exe: + "/Siralim.exe": - when: - os: windows store: steam - /run.sh: + "/run.sh": - when: - os: linux store: steam @@ -473977,7 +475247,7 @@ Siralim: id: 362090 Siralim 2: files: - /Siralim/save/config.sav: + "/Siralim/save/config.sav": tags: - save when: @@ -473985,15 +475255,15 @@ Siralim 2: installDir: Siralim 2: {} launch: - /Siralim 2.app: + "/Siralim 2.app": - when: - os: mac store: steam - /Siralim2.exe: + "/Siralim2.exe": - when: - os: windows store: steam - /run.sh: + "/run.sh": - when: - os: linux store: steam @@ -474003,15 +475273,15 @@ Siralim 3: installDir: Siralim 3: {} launch: - /Siralim 3.app: + "/Siralim 3.app": - when: - os: mac store: steam - /Siralim3.exe: + "/Siralim3.exe": - when: - os: windows store: steam - /run.sh: + "/run.sh": - when: - os: linux store: steam @@ -474021,7 +475291,7 @@ Siren Head Hentai Edition: installDir: Siren Head Hentai Edition: {} launch: - /Siren Head Hentai Edition.exe: + "/Siren Head Hentai Edition.exe": - when: - os: windows store: steam @@ -474032,11 +475302,11 @@ Sirius Online: Sirius Online: {} steam: id: 368720 -'Sirius: Age of the Free Agents': +"Sirius: Age of the Free Agents": installDir: SiriusAOTFA: {} launch: - /launcher.exe: + "/launcher.exe": - when: - os: windows store: steam @@ -474049,19 +475319,19 @@ Sister Travel: installDir: Sister Travel: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: id: 959890 -Sister's Love: +"Sister's Love": steam: id: 771520 -'Sister''s Secrecy: Arcanum Bloodlines': +"Sister's Secrecy: Arcanum Bloodlines": installDir: Sister’s Secrecy: {} launch: - /SistersSecrecy_ArcanumBloodlines_Premium.exe: + "/SistersSecrecy_ArcanumBloodlines_Premium.exe": - when: - store: steam steam: @@ -474077,21 +475347,21 @@ Sisters: Sisters in Hotel: steam: id: 625400 -'Sisters in Hotel: Episode 2': +"Sisters in Hotel: Episode 2": steam: id: 816700 -'Sisters in Hotel: Episode 3': +"Sisters in Hotel: Episode 3": steam: id: 868860 Sisyphus Reborn: installDir: Sisyphus Reborn: {} launch: - /SisyphusReborn: + "/SisyphusReborn": - when: - os: linux store: steam - /SisyphusReborn.exe: + "/SisyphusReborn.exe": - when: - os: windows store: steam @@ -474105,17 +475375,17 @@ Sit on Bottle: Six: steam: id: 855920 -'Six Ages: Ride Like the Wind': +"Six Ages: Ride Like the Wind": gog: id: 1418278647 installDir: Six Ages Ride Like the Wind: {} launch: - /RLTW.app: + "/RLTW.app": - when: - os: mac store: steam - /Ride Like the Wind.exe: + "/Ride Like the Wind.exe": - when: - os: windows store: steam @@ -474125,7 +475395,7 @@ Six Days in Fallujah: installDir: Six Days in Fallujah: {} launch: - /SixDays.exe: + "/SixDays.exe": - when: - bit: 64 os: windows @@ -474134,17 +475404,17 @@ Six Days in Fallujah: id: 1548850 Six Days of Snow: files: - /game/saves: + "/game/saves": tags: - save when: - os: windows - /renpy/config.py: + "/renpy/config.py": tags: - config when: - os: windows - /renpy/Six Days of Snow-1474192931: + "/renpy/Six Days of Snow-1474192931": tags: - save when: @@ -474152,15 +475422,15 @@ Six Days of Snow: installDir: Six Days of Snow: {} launch: - /Six Days of Snow.app: + "/Six Days of Snow.app": - when: - os: mac store: steam - /Six Days of Snow.exe: + "/Six Days of Snow.exe": - when: - os: windows store: steam - /Six Days of Snow.sh: + "/Six Days of Snow.sh": - when: - os: linux store: steam @@ -474170,7 +475440,7 @@ Six Degrees of Damnation: installDir: Six Degrees of Damnation: {} launch: - /SixDegrees.exe: + "/SixDegrees.exe": - when: - bit: 64 os: windows @@ -474186,15 +475456,15 @@ Six Second Slam: installDir: Six Second Slam: {} launch: - /Six Second Slam.app: + "/Six Second Slam.app": - when: - os: mac store: steam - /Six Second Slam.exe: + "/Six Second Slam.exe": - when: - os: windows store: steam - /Six Second Slam.x86: + "/Six Second Slam.x86": - when: - os: linux store: steam @@ -474204,7 +475474,7 @@ Six Shots: installDir: SIX SHOTS: {} launch: - /SIX SHOTS.exe: + "/SIX SHOTS.exe": - when: - os: windows store: steam @@ -474214,20 +475484,20 @@ Six Sides of the World: installDir: SixSidesOfTheWorld: {} launch: - /SixSides.app: + "/SixSides.app": - when: - os: mac store: steam - /SixSides.exe: + "/SixSides.exe": - when: - os: windows store: steam - /SixSides.x86: + "/SixSides.x86": - when: - bit: 32 os: linux store: steam - /SixSides.x86_64: + "/SixSides.x86_64": - when: - bit: 64 os: linux @@ -474238,7 +475508,7 @@ Six Temples: installDir: Six Temples BETA: {} launch: - /SixTemples.exe: + "/SixTemples.exe": - when: - os: windows store: steam @@ -474258,15 +475528,15 @@ Sixth Grade Detective: installDir: Sixth Grade Detective: {} launch: - /Sixth Grade Detective.app/Contents/MacOS/Sixth Grade Detective: + "/Sixth Grade Detective.app/Contents/MacOS/Sixth Grade Detective": - when: - os: mac store: steam - /SixthGradeDetective: + "/SixthGradeDetective": - when: - os: linux store: steam - /SixthGradeDetective.exe: + "/SixthGradeDetective.exe": - when: - os: windows store: steam @@ -474276,11 +475546,11 @@ Sixtieth Kilometer: installDir: Sixtieth Kilometer: {} launch: - /60_km.exe: + "/60_km.exe": - when: - os: windows store: steam - /60_km.sh: + "/60_km.sh": - when: - os: linux store: steam @@ -474290,7 +475560,7 @@ Size Matters: installDir: SizeMatters: {} launch: - /Size Matters.exe: + "/Size Matters.exe": - when: - os: windows store: steam @@ -474299,7 +475569,7 @@ Size Matters: SizeBlock: steam: id: 508960 -'Skald: Against the Black Priory': +"Skald: Against the Black Priory": gog: id: 1514991646 steam: @@ -474308,8 +475578,8 @@ Skara - The Blade Remains: installDir: Skara The Blade Remains: {} launch: - /SkaraGame.exe: - - arguments: '-foo' + "/SkaraGame.exe": + - arguments: "-foo" when: - bit: 64 os: windows @@ -474320,7 +475590,7 @@ Skat 3D Premium: installDir: Skat 3D Premium: {} launch: - /Skat3D.exe: + "/Skat3D.exe": - when: - os: windows store: steam @@ -474330,7 +475600,7 @@ Skat Stammtisch: installDir: Skat Stammtisch: {} launch: - /skat.exe: + "/skat.exe": - when: - os: windows store: steam @@ -474343,7 +475613,7 @@ Skate City: installDir: Skate City: {} launch: - /SkateCitySteam_v1.0.0.144/Skate City.exe: + "/SkateCitySteam_v1.0.0.144/Skate City.exe": - when: - os: windows store: steam @@ -474361,7 +475631,7 @@ SkateBIRD: - config when: - os: linux - /AppData/LocalLow/Glass Bottom Games/SkateBIRD: + "/AppData/LocalLow/Glass Bottom Games/SkateBIRD": tags: - config - save @@ -474370,16 +475640,16 @@ SkateBIRD: installDir: SkateBIRD: {} launch: - /SkateBIRD.app: + "/SkateBIRD.app": - when: - os: mac store: steam - /SkateBIRD.exe: + "/SkateBIRD.exe": - when: - bit: 64 os: windows store: steam - /SkateBIRD.x86_64: + "/SkateBIRD.x86_64": - when: - bit: 64 os: linux @@ -474388,36 +475658,36 @@ SkateBIRD: id: 971030 Skateboard Park Tycoon: files: - /saved_games: + "/saved_games": tags: - save when: - os: windows - /settings.bin: + "/settings.bin": tags: - config when: - os: windows -'Skateboard Park Tycoon 2004: Back in the USA': +"Skateboard Park Tycoon 2004: Back in the USA": files: - /profiles: + "/profiles": tags: - save when: - os: windows - /settings.dat: + "/settings.dat": tags: - config when: - os: windows -'Skateboard Park Tycoon: World Tour 2003': +"Skateboard Park Tycoon: World Tour 2003": files: - /Profiles: + "/Profiles": tags: - save when: - os: windows - /settings.dat: + "/settings.dat": tags: - config when: @@ -474426,7 +475696,7 @@ Skateboarding pro: installDir: Skateboarding pro: {} launch: - /SkateboarindProParaSteamEste.exe: + "/SkateboarindProParaSteamEste.exe": - when: - os: windows store: steam @@ -474436,7 +475706,7 @@ Skatemasta Tcheco: installDir: Skatemasta Tcheco: {} launch: - /TCHECO2.exe: + "/TCHECO2.exe": - when: - store: steam steam: @@ -474445,7 +475715,7 @@ Skater Cally: installDir: Skater Cally: {} launch: - /Skater Cally.exe: + "/Skater Cally.exe": - when: - os: windows store: steam @@ -474455,11 +475725,11 @@ Skater Frog: installDir: Skater Frog: {} launch: - /Skater Frog 1.1.0.app/Contents/MacOS/Skater Frog 1.1.0: + "/Skater Frog 1.1.0.app/Contents/MacOS/Skater Frog 1.1.0": - when: - os: mac store: steam - /Skater Frog.exe: + "/Skater Frog.exe": - when: - os: windows store: steam @@ -474472,33 +475742,33 @@ Skater XL: id: 962730 Skaut Kwatermaster: files: - /AVALON.INI: + "/AVALON.INI": tags: - config when: - os: dos - /FDD/SAVEGAME/SAVEGAME.*: + "/FDD/SAVEGAME/SAVEGAME.*": tags: - save when: - os: dos - /SAVEGAME/SAVEGAME.*: + "/SAVEGAME/SAVEGAME.*": tags: - save when: - os: dos - /SOUND.CFG: + "/SOUND.CFG": tags: - config when: - os: dos gog: id: 2075976504 -'Skautfold: Moonless Knight': +"Skautfold: Moonless Knight": installDir: Moonless Knight: {} launch: - /Moonless Knight.exe: + "/Moonless Knight.exe": - when: - os: windows store: steam @@ -474508,13 +475778,13 @@ Skedaddling In Egypt: installDir: Skedaddling In Egypt: {} launch: - /Skeddadle.exe: + "/Skeddadle.exe": - when: - os: windows store: steam steam: id: 2342830 -'Skeet: VR Target Shooting': +"Skeet: VR Target Shooting": installDir: Skeet VR Target Shooting: {} steam: @@ -474523,15 +475793,15 @@ Skein: installDir: Skein: {} launch: - /Skein: + "/Skein": - when: - os: linux store: steam - /Skein.app/Contents/MacOS/Skein: + "/Skein.app/Contents/MacOS/Skein": - when: - os: mac store: steam - /Skein.exe: + "/Skein.exe": - when: - os: windows store: steam @@ -474541,7 +475811,7 @@ Skelattack: installDir: Skelattack: {} launch: - /Skelattack.exe: + "/Skelattack.exe": - when: - os: windows store: steam @@ -474553,11 +475823,11 @@ Skeletal Avenger: installDir: Skeletal Avenger: {} launch: - /SkeletalAvenger.app: + "/SkeletalAvenger.app": - when: - os: mac store: steam - /SkeletalAvenger.exe: + "/SkeletalAvenger.exe": - when: - os: windows store: steam @@ -474567,20 +475837,20 @@ Skeletal Dance Party: installDir: Skeletal Dance Party: {} launch: - /Skeletal Dance Party.app/Contents/MacOS/Skeletal Dance Party: + "/Skeletal Dance Party.app/Contents/MacOS/Skeletal Dance Party": - when: - os: mac store: steam - /Skeletal Dance Party.exe: + "/Skeletal Dance Party.exe": - when: - os: windows store: steam - /Skeletal Dance Party.x86: + "/Skeletal Dance Party.x86": - when: - bit: 32 os: linux store: steam - /Skeletal Dance Party.x86_64: + "/Skeletal Dance Party.x86_64": - when: - bit: 64 os: linux @@ -474595,7 +475865,7 @@ Skeleton Boomerang: installDir: Skeleton Boomerang: {} launch: - /skeletonboomerang.exe: + "/skeletonboomerang.exe": - when: - os: windows store: steam @@ -474605,11 +475875,11 @@ Skeleton Crew: installDir: Skeleton Crew: {} launch: - /Skeleton Crew.exe: + "/Skeleton Crew.exe": - when: - os: windows store: steam - /SkeletonCrew.app: + "/SkeletonCrew.app": - when: - os: mac store: steam @@ -474619,17 +475889,17 @@ Skeleton Sprint: installDir: Skeleton Sprint: {} launch: - /game/Skeleton Sprint.exe: + "/game/Skeleton Sprint.exe": - when: - os: windows store: steam steam: id: 690950 -'Skelittle: A Giant Party!!': +"Skelittle: A Giant Party!!": installDir: Skelittle: {} launch: - /Skelittle.exe: + "/Skelittle.exe": - when: - os: windows store: steam @@ -474639,15 +475909,15 @@ Skellboy Refractured: installDir: Skellboy: {} launch: - /Skellboy.app/Contents/MacOS/Skellboy: + "/Skellboy.app/Contents/MacOS/Skellboy": - when: - os: mac store: steam - /Skellboy.exe: + "/Skellboy.exe": - when: - os: windows store: steam - /Skellboy.x86_64: + "/Skellboy.x86_64": - when: - os: linux store: steam @@ -474657,7 +475927,7 @@ Skelleton vs zombies: installDir: SkelletonVsZombies: {} launch: - /BonesAgainstUndead.exe: + "/BonesAgainstUndead.exe": - when: - os: windows store: steam @@ -474667,7 +475937,7 @@ Skelli Tower Defense: installDir: STD Gamefiles: {} launch: - /STD.exe: + "/STD.exe": - when: - os: windows store: steam @@ -474677,7 +475947,7 @@ Skelly Selest: installDir: Skelly Selest: {} launch: - /Skelly Selest.exe: + "/Skelly Selest.exe": - when: - os: windows store: steam @@ -474687,11 +475957,11 @@ Sketch Tales: installDir: Sketch Tales: {} launch: - /SketchTales.app/Contents/MacOS/SketchTales: + "/SketchTales.app/Contents/MacOS/SketchTales": - when: - os: mac store: steam - /SketchTales.exe: + "/SketchTales.exe": - when: - os: windows store: steam @@ -474701,7 +475971,7 @@ Sketch! Run!: installDir: Sketch! Run!: {} launch: - /Sketch_Run.exe: + "/Sketch_Run.exe": - when: - bit: 64 os: windows @@ -474725,30 +475995,30 @@ Sketchy 3: Sketchy 4: steam: id: 694020 -'Ski Drive: Biathlon': +"Ski Drive: Biathlon": installDir: Ski Drive Biathlon: {} launch: - /Ski Drive Biathlon.app/Contents/MacOS/Ski Drive Biathlon: + "/Ski Drive Biathlon.app/Contents/MacOS/Ski Drive Biathlon": - when: - os: mac store: steam - /Ski Drive Biathlon.exe: + "/Ski Drive Biathlon.exe": - when: - os: windows store: steam steam: id: 987620 -'Ski Hard: Lorsbruck 1978': +"Ski Hard: Lorsbruck 1978": installDir: Ski Hard - Lorsbruck 1978: {} launch: - /SkiHardLorsbruck1978.app: + "/SkiHardLorsbruck1978.app": - arguments: stlaunch when: - os: mac store: steam - /SkiHardLorsbruck1978.exe: + "/SkiHardLorsbruck1978.exe": - arguments: stlaunch when: - os: windows @@ -474759,8 +476029,8 @@ Ski Jump VR: installDir: Ski Jump VR: {} launch: - /SkiJumpVR.exe: - - arguments: '-vrmode none' + "/SkiJumpVR.exe": + - arguments: "-vrmode none" when: - os: windows store: steam @@ -474773,24 +476043,24 @@ Ski Jumping Pro VR: id: 1063470 Ski Park Manager: files: - /Saved Games: + "/Saved Games": tags: - save when: - os: windows - /simski.cfg: + "/simski.cfg": tags: - config when: - os: windows Ski Park Tycoon: files: - /data.params.ini: + "/data.params.ini": tags: - config when: - os: windows - /save: + "/save": tags: - save when: @@ -474798,7 +476068,7 @@ Ski Park Tycoon: installDir: Ski Park Tycoon: {} launch: - /Ski Park Tycoon.exe: + "/Ski Park Tycoon.exe": - when: - os: windows store: steam @@ -474808,8 +476078,8 @@ Ski Region Simulator: installDir: Ski Region Simulator: {} launch: - /SkiRegionSimulator2012Game.exe: - - arguments: '-name SkiRegionSimulator2012' + "/SkiRegionSimulator2012Game.exe": + - arguments: "-name SkiRegionSimulator2012" when: - store: steam steam: @@ -474818,11 +476088,11 @@ Ski Sniper: installDir: Ski Sniper: {} launch: - /SkiSniper.exe: + "/SkiSniper.exe": - when: - os: windows store: steam - /mac_content.app: + "/mac_content.app": - when: - os: mac store: steam @@ -474832,7 +476102,7 @@ Ski Sniper: - save steam: id: 635310 -'Ski Sport: Jumping VR': +"Ski Sport: Jumping VR": installDir: Ski Sport Jumping VR: {} steam: @@ -474841,14 +476111,14 @@ Ski-World Simulator: installDir: Ski World Simulator: {} launch: - /skiresort2012.exe: + "/skiresort2012.exe": - when: - store: steam steam: id: 273850 SkiFree: files: - /entpack.ini: + "/entpack.ini": tags: - save when: @@ -474857,19 +476127,19 @@ SkiFy: installDir: SkiFy: {} launch: - /SkiFy.exe: + "/SkiFy.exe": - when: - store: steam steam: id: 656060 SkiJump: installDir: - 'VRUnicorns #SkiJump': {} + "VRUnicorns #SkiJump": {} launch: - /SkiJumpPlayTestingMac.app: + "/SkiJumpPlayTestingMac.app": - when: - store: steam - /SkiJumpPlayTestingWin.exe: + "/SkiJumpPlayTestingWin.exe": - when: - store: steam steam: @@ -474878,11 +476148,11 @@ Skidlocked: installDir: skidlocked: {} launch: - /skidlocked.app: + "/skidlocked.app": - when: - os: mac store: steam - /skidlocked.exe: + "/skidlocked.exe": - when: - os: windows store: steam @@ -474902,15 +476172,15 @@ Skilltree Saga: installDir: Skilltree Saga: {} launch: - /Skilltree.app: + "/Skilltree.app": - when: - os: mac store: steam - /Skilltree.exe: + "/Skilltree.exe": - when: - os: windows store: steam - /Skilltree.x86: + "/Skilltree.x86": - when: - os: linux store: steam @@ -474920,7 +476190,7 @@ Skimmerz: installDir: Skimmerz: {} launch: - /SKIMMERZv2.exe: + "/SKIMMERZv2.exe": - when: - os: windows store: steam @@ -474933,8 +476203,11 @@ Skin Stealers: installDir: Skin Stealers: {} launch: - /nw.exe: + "/nw.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam @@ -474944,7 +476217,7 @@ Skin Witch: installDir: Skin Witch: {} launch: - /game.exe: + "/game.exe": - when: - bit: 64 os: windows @@ -474955,7 +476228,7 @@ Skinny: installDir: Skinny: {} launch: - /windows_content/Skinny.exe: + "/windows_content/Skinny.exe": - when: - store: steam steam: @@ -474967,7 +476240,7 @@ Skinscape: id: 860730 Skinwalker Hunt: files: - /AppData/LocalLow/Andrii Vintsevych/Skinwalker Hunt: + "/AppData/LocalLow/Andrii Vintsevych/Skinwalker Hunt": tags: - save when: @@ -474975,7 +476248,7 @@ Skinwalker Hunt: installDir: Skinwalker Hunt: {} launch: - /Skinwalker Hunt.exe: + "/Skinwalker Hunt.exe": - when: - os: windows store: steam @@ -474985,11 +476258,11 @@ Skinwalker Hunt: - config steam: id: 993110 -Skip's Sanity: +"Skip's Sanity": installDir: - Skip's Sanity: {} + "Skip's Sanity": {} launch: - /Skip's Sanity.exe: + "/Skip's Sanity.exe": - when: - os: windows store: steam @@ -474999,11 +476272,11 @@ Skipchaser: installDir: SKIPCHASER: {} launch: - /Contents/MacOS/Skipchaser: + "/Contents/MacOS/Skipchaser": - when: - os: mac store: steam - /Contents/Resources/Corona/Skipchaser.exe: + "/Contents/Resources/Corona/Skipchaser.exe": - when: - os: windows store: steam @@ -475013,30 +476286,30 @@ Skipper: installDir: Skipper: {} launch: - /skipper.app: + "/skipper.app": - when: - os: mac store: steam - /skipper.exe: + "/skipper.exe": - when: - os: windows store: steam - /skipper.x86: + "/skipper.x86": - when: - os: linux store: steam steam: id: 674440 -'Skipper & Skeeto: Tales from Paradise Park': +"Skipper & Skeeto: Tales from Paradise Park": files: - /MAGNUS.INI: + "/MAGNUS.INI": tags: - save when: - os: windows -'Skipper & Skeeto: The Shadow of Mr. Shade': +"Skipper & Skeeto: The Shadow of Mr. Shade": files: - /Save Games: + "/Save Games": tags: - save when: @@ -475052,20 +476325,20 @@ Skirmish Line: installDir: Skirmish Line: {} launch: - /Skirmish Line Mac.app: + "/Skirmish Line Mac.app": - when: - os: mac store: steam - /Skirmish Line.exe: + "/Skirmish Line.exe": - when: - os: windows store: steam - /Skirmish Line.x86: + "/Skirmish Line.x86": - when: - bit: 32 os: linux store: steam - /Skirmish Line.x86_64: + "/Skirmish Line.x86_64": - when: - bit: 64 os: linux @@ -475076,7 +476349,7 @@ Skjoldur Story: installDir: Skjoldur Story: {} launch: - /SkjoldurStory.exe: + "/SkjoldurStory.exe": - when: - os: windows store: steam @@ -475086,11 +476359,11 @@ Skool Daze Reskooled: installDir: SkoolDaze_Reskooled: {} launch: - /SkoolDaze.app: + "/SkoolDaze.app": - when: - os: mac store: steam - /SkoolDaze.exe: + "/SkoolDaze.exe": - when: - os: windows store: steam @@ -475098,7 +476371,7 @@ Skool Daze Reskooled: id: 524430 Skout: files: - /options.txt: + "/options.txt": tags: - config when: @@ -475107,25 +476380,25 @@ Skript: installDir: Skript: {} launch: - /Skript.app/Contents/MacOS/Skript: + "/Skript.app/Contents/MacOS/Skript": - when: - os: mac store: steam - /Skript.exe: + "/Skript.exe": - when: - bit: 64 os: windows store: steam - /Skript.x86_64: + "/Skript.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 746890 -'Skul: The Hero Slayer': +"Skul: The Hero Slayer": files: - /AppData/LocalLow/Southpaw Games/Skul: + "/AppData/LocalLow/Southpaw Games/Skul": tags: - save when: @@ -475133,15 +476406,15 @@ Skript: installDir: Skul: {} launch: - /Skul.app/Contents/MacOS/Skul: + "/Skul.app/Contents/MacOS/Skul": - when: - os: mac store: steam - /Skul.exe: + "/Skul.exe": - when: - os: windows store: steam - /Skul.x86_64: + "/Skul.x86_64": - when: - os: linux store: steam @@ -475155,20 +476428,20 @@ Skull Feast: installDir: SKULL FEAST: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam steam: id: 815030 -'Skull Island: Rise of Kong': +"Skull Island: Rise of Kong": steam: id: 2097890 Skull Rogue: installDir: Skull Rogue: {} launch: - /Skull Rogue.exe: + "/Skull Rogue.exe": - when: - store: steam steam: @@ -475179,11 +476452,11 @@ Skull Rush: Skull and Bones: steam: id: 370010 -Skull's Solitude: +"Skull's Solitude": installDir: - Skull's Soliditude: {} + "Skull's Soliditude": {} launch: - /skull_solitude.exe: + "/skull_solitude.exe": - when: - os: windows store: steam @@ -475191,22 +476464,22 @@ Skull's Solitude: id: 1219180 Skullgirls 2nd Encore: files: - /Skullgirls: + "/Skullgirls": tags: - config when: - os: windows - /Skullgirls/Save Data: + "/Skullgirls/Save Data": tags: - save when: - os: windows - /Skullgirls: + "/Skullgirls": tags: - config when: - os: linux - /Skullgirls/SaveData: + "/Skullgirls/SaveData": tags: - save when: @@ -475221,13 +476494,13 @@ Skullgirls 2nd Encore: id: 245170 Skulls of the Shogun: files: - /Saved Games/SkullsOfTheShogun: + "/Saved Games/SkullsOfTheShogun": tags: - config - save when: - os: windows - /SkullsOfTheShogun: + "/SkullsOfTheShogun": tags: - config - save @@ -475238,15 +476511,15 @@ Skulls of the Shogun: installDir: Skulls of the Shogun: {} launch: - /Skulls of the Shogun.app: + "/Skulls of the Shogun.app": - when: - os: mac store: steam - /SkullsOfTheShogun: + "/SkullsOfTheShogun": - when: - os: linux store: steam - /SkullsOfTheShogun.exe: + "/SkullsOfTheShogun.exe": - when: - os: windows store: steam @@ -475254,12 +476527,12 @@ Skulls of the Shogun: id: 228960 Skully: files: - /Skully/Saved/Config: + "/Skully/Saved/Config": tags: - config when: - os: windows - /Skully/Saved/SaveGames: + "/Skully/Saved/SaveGames": tags: - save when: @@ -475267,7 +476540,7 @@ Skully: installDir: Skully: {} launch: - /Skully/Binaries/Win64/Skully.exe: + "/Skully/Binaries/Win64/Skully.exe": - when: - bit: 64 os: windows @@ -475278,7 +476551,7 @@ Skully Pinball: installDir: Skully Pinball: {} launch: - /Skully Pinball.exe: + "/Skully Pinball.exe": - when: - store: steam steam: @@ -475287,7 +476560,7 @@ Sky Ball: installDir: Sky Ball: {} launch: - /SkyBall.exe: + "/SkyBall.exe": - when: - bit: 64 os: windows @@ -475298,16 +476571,16 @@ Sky Battles: installDir: Sky Battles: {} launch: - /skybattles-mac.app: + "/skybattles-mac.app": - when: - os: mac store: steam - /skybattles-pc-x86.exe: + "/skybattles-pc-x86.exe": - when: - bit: 32 os: windows store: steam - /skybattles-pc64.exe: + "/skybattles-pc64.exe": - when: - bit: 64 os: windows @@ -475321,7 +476594,7 @@ Sky Brawl: id: 929450 Sky Break: files: - /AppData/LocalLow/Farsky Interactive/Sky Break: + "/AppData/LocalLow/Farsky Interactive/Sky Break": tags: - config - save @@ -475330,20 +476603,20 @@ Sky Break: installDir: Sky Break: {} launch: - /Sky Break.app: + "/Sky Break.app": - when: - os: mac store: steam - /Sky Break.exe: + "/Sky Break.exe": - when: - os: windows store: steam - /SkyBreak.x86: + "/SkyBreak.x86": - when: - bit: 32 os: linux store: steam - /SkyBreak.x86_64: + "/SkyBreak.x86_64": - when: - bit: 64 os: linux @@ -475356,21 +476629,21 @@ Sky Cannoneer: installDir: Sky Cannoneer: {} launch: - /Sky Cannoneer.exe: + "/Sky Cannoneer.exe": - when: - os: windows store: steam steam: id: 1141570 -'Sky Clash: Lords of Clans 3D': +"Sky Clash: Lords of Clans 3D": installDir: Sky Clash Lords of Clans: {} launch: - /SkyClash.app: + "/SkyClash.app": - when: - os: mac store: steam - /SkyClash.exe: + "/SkyClash.exe": - when: - os: windows store: steam @@ -475385,7 +476658,7 @@ Sky Conqueror: installDir: Sky Conqueror: {} launch: - /SkyConqueror.exe: + "/SkyConqueror.exe": - when: - os: windows store: steam @@ -475398,16 +476671,16 @@ Sky Fleet: installDir: SkyFleet: {} launch: - /SkyFleet: + "/SkyFleet": - when: - bit: 64 os: linux store: steam - /SkyFleet.app/Contents/MacOS/Sky Fleet: + "/SkyFleet.app/Contents/MacOS/Sky Fleet": - when: - os: mac store: steam - /launcher/freedom-launcher.exe: + "/launcher/freedom-launcher.exe": - when: - bit: 64 os: windows @@ -475418,30 +476691,23 @@ Sky Flight: steam: id: 960370 Sky Force Anniversary: - files: - SteamInstallFolder/UserData/*/355050/remote/CloudData.dat: - tags: - - config - - save - when: - - os: windows installDir: Sky Force Anniversary: {} launch: - /Sky Force Anniversary.app: + "/Sky Force Anniversary.app": - when: - os: mac store: steam - /Sky Force Anniversary.exe: + "/Sky Force Anniversary.exe": - when: - os: windows store: steam - /Sky Force Anniversary.x86: + "/Sky Force Anniversary.x86": - when: - bit: 32 os: linux store: steam - /Sky Force Anniversary.x86_64: + "/Sky Force Anniversary.x86_64": - when: - bit: 64 os: linux @@ -475450,13 +476716,13 @@ Sky Force Anniversary: id: 355050 Sky Force Reloaded: files: - /Save: + "/Save": tags: - config - save when: - os: windows - /steamapps/common/Sky Force Reloaded/Save: + "/steamapps/common/Sky Force Reloaded/Save": tags: - save when: @@ -475465,39 +476731,39 @@ Sky Force Reloaded: installDir: Sky Force Reloaded: {} launch: - /Sky Force Reloaded.app: + "/Sky Force Reloaded.app": - when: - os: mac store: steam - /Sky Force Reloaded.exe: + "/Sky Force Reloaded.exe": - when: - os: windows store: steam - /Sky Force Reloaded.x86: + "/Sky Force Reloaded.x86": - when: - bit: 32 os: linux store: steam - /Sky Force Reloaded.x86_64: + "/Sky Force Reloaded.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 667600 -'Sky Gamblers: Storm Raiders': +"Sky Gamblers: Storm Raiders": installDir: SGSR: {} launch: - /bin/game: + "/bin/game": - when: - os: mac store: steam - /bin32/game.exe: + "/bin32/game.exe": - when: - os: windows store: steam - /bin32/game.sh: + "/bin32/game.sh": - when: - os: linux store: steam @@ -475507,16 +476773,16 @@ Sky Haven: installDir: Sky Haven: {} launch: - /SkyHaven.app/Contents/MacOS/SkyHaven: + "/SkyHaven.app/Contents/MacOS/SkyHaven": - when: - os: mac store: steam - /SkyHaven.exe: - - arguments: '-windowed' + "/SkyHaven.exe": + - arguments: "-windowed" when: - os: windows store: steam - /SkyHaven.x64: + "/SkyHaven.x64": - when: - bit: 64 os: linux @@ -475527,11 +476793,11 @@ Sky Hawk: installDir: Sky Hawk: {} launch: - /Sky Hawk.app/Contents/MacOS/Sky Hawk: + "/Sky Hawk.app/Contents/MacOS/Sky Hawk": - when: - os: mac store: steam - /Sky Hawk.exe: + "/Sky Hawk.exe": - when: - os: windows store: steam @@ -475541,7 +476807,7 @@ Sky Hunter: installDir: Sky Hunter: {} launch: - /Sky Hunter.exe: + "/Sky Hunter.exe": - when: - os: windows store: steam @@ -475554,11 +476820,11 @@ Sky Is Arrows: installDir: Sky Is Arrows: {} launch: - /Sky Is Arrows.app/Contents/MacOS/Sky Is Arrows: + "/Sky Is Arrows.app/Contents/MacOS/Sky Is Arrows": - when: - os: mac store: steam - /Sky Is Arrows.exe: + "/Sky Is Arrows.exe": - when: - os: windows store: steam @@ -475573,8 +476839,8 @@ Sky Jump: installDir: Sky Jump: {} launch: - /Sky jump.exe: - - arguments: '-windowed' + "/Sky jump.exe": + - arguments: "-windowed" when: - os: windows store: steam @@ -475584,7 +476850,7 @@ Sky Knights: installDir: Sky Knights: {} launch: - /SkyKnights.exe: + "/SkyKnights.exe": - when: - os: windows store: steam @@ -475594,11 +476860,11 @@ Sky Labyrinth: installDir: Sky Labyrinth: {} launch: - /SkyLabyrinth.app/Contents/MacOS/SkyLabyrinth: + "/SkyLabyrinth.app/Contents/MacOS/SkyLabyrinth": - when: - os: mac store: steam - /SkyLabyrinth.exe: + "/SkyLabyrinth.exe": - when: - os: windows store: steam @@ -475608,11 +476874,11 @@ Sky Mercenaries: installDir: Sky Mercenaries: {} launch: - /SkyMercenariesPC1051.exe: + "/SkyMercenariesPC1051.exe": - when: - os: windows store: steam - /run.sh: + "/run.sh": - when: - os: linux store: steam @@ -475622,7 +476888,7 @@ Sky Nations: installDir: Sky Nations: {} launch: - /SkyNations.exe: + "/SkyNations.exe": - arguments: Launch when: - bit: 32 @@ -475634,7 +476900,7 @@ Sky Noon: installDir: Sky Noon: {} launch: - /SkyNoon.exe: + "/SkyNoon.exe": - when: - os: windows store: steam @@ -475644,15 +476910,15 @@ Sky Pirates of Actorius: installDir: Sky Pirates of Actorius: {} launch: - /Sky Pirates of Actorius.app/Contents/MacOS/Sky Pirates of Actorius: + "/Sky Pirates of Actorius.app/Contents/MacOS/Sky Pirates of Actorius": - when: - os: mac store: steam - /SkyPiratesOfActorius: + "/SkyPiratesOfActorius": - when: - os: linux store: steam - /SkyPiratesOfActorius.exe: + "/SkyPiratesOfActorius.exe": - when: - os: windows store: steam @@ -475662,25 +476928,25 @@ Sky Racket: installDir: Sky Racket: {} launch: - /SkyRacket.app: + "/SkyRacket.app": - when: - os: mac store: steam - /SkyRacket.exe: + "/SkyRacket.exe": - when: - os: windows store: steam - /SkyRacket.x86_64: + "/SkyRacket.x86_64": - when: - os: linux store: steam steam: id: 994500 -'Sky Realm: Essences': +"Sky Realm: Essences": installDir: Sky Realm Essences: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -475693,7 +476959,7 @@ Sky Road: installDir: Sky Road: {} launch: - /Sky Road.exe: + "/Sky Road.exe": - when: - os: windows store: steam @@ -475701,22 +476967,22 @@ Sky Road: id: 756190 Sky Rogue: files: - /Save: + "/Save": tags: - save when: - os: windows - /Save/GameOptions.sav: + "/Save/GameOptions.sav": tags: - config when: - os: windows - /unity3d/Fractal Phase/Sky Rogue: + "/unity3d/Fractal Phase/Sky Rogue": tags: - config when: - os: linux - /unity3d/Fractal Phase/Sky Rogue/Save: + "/unity3d/Fractal Phase/Sky Rogue/Save": tags: - save when: @@ -475724,15 +476990,15 @@ Sky Rogue: installDir: Sky Rogue: {} launch: - /skyrogue.app: + "/skyrogue.app": - when: - os: mac store: steam - /skyrogue.exe: + "/skyrogue.exe": - when: - os: windows store: steam - /skyrogue.x86: + "/skyrogue.x86": - when: - os: linux store: steam @@ -475747,7 +477013,7 @@ Sky Shepherd: installDir: Sky Shepherd: {} launch: - /SkyShepherd.exe: + "/SkyShepherd.exe": - when: - os: windows store: steam @@ -475768,11 +477034,11 @@ Sky Valley: installDir: SkyValleyGame: {} launch: - /Sky Valley.app/Contents/MacOS/Sky Valley: + "/Sky Valley.app/Contents/MacOS/Sky Valley": - when: - os: mac store: steam - /Sky Valley.exe: + "/Sky Valley.exe": - when: - os: windows store: steam @@ -475782,7 +477048,7 @@ Sky of Destruction: installDir: Sky Of Destruction: {} launch: - /Sky of Destruction.exe: + "/Sky of Destruction.exe": - when: - os: windows store: steam @@ -475791,48 +477057,48 @@ Sky of Destruction: Sky of Tides: steam: id: 1120330 -'Sky to Fly: Faster Than Wind': +"Sky to Fly: Faster Than Wind": installDir: Sky To Fly - Faster Than Wind: {} launch: - /SkyToFly.app: + "/SkyToFly.app": - when: - os: mac store: steam - /SkyTrek.exe: + "/SkyTrek.exe": - when: - os: windows store: steam - /SkyTrek.x86: + "/SkyTrek.x86": - when: - bit: 32 os: linux store: steam - /SkyTrek.x86_64: + "/SkyTrek.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 403850 -'Sky to Fly: Soulless Leviathan': +"Sky to Fly: Soulless Leviathan": installDir: Sky To Fly - Soulless Leviathan: {} launch: - /SkyToFly2.app: + "/SkyToFly2.app": - when: - os: mac store: steam - /SkyToFly2.exe: + "/SkyToFly2.exe": - when: - os: windows store: steam - /SkyToFly2.x86: + "/SkyToFly2.x86": - when: - bit: 32 os: linux store: steam - /SkyToFly2.x86_64: + "/SkyToFly2.x86_64": - when: - bit: 64 os: linux @@ -475843,23 +477109,23 @@ SkyBoats: installDir: SkyBoats: {} launch: - /SkyBoats.exe: + "/SkyBoats.exe": - when: - os: windows store: steam - /skyboats.app/Contents/MacOS/skyboats: - - arguments: '-force-opengl' + "/skyboats.app/Contents/MacOS/skyboats": + - arguments: "-force-opengl" when: - os: mac store: steam - /skyboats.x86: - - arguments: '-force-opengl' + "/skyboats.x86": + - arguments: "-force-opengl" when: - bit: 32 os: linux store: steam - /skyboats.x86_64: - - arguments: '-force-opengl' + "/skyboats.x86_64": + - arguments: "-force-opengl" when: - bit: 64 os: linux @@ -475870,10 +477136,10 @@ SkyDrift: installDir: SkyDrift: {} launch: - /SkyDrift.exe: + "/SkyDrift.exe": - when: - store: steam - - arguments: '-safemode' + - arguments: "-safemode" when: - store: steam steam: @@ -475884,7 +477150,7 @@ SkyDrift Infinity: installDir: SkyDriftInfinity: {} launch: - /SkydriftInfinity.exe: + "/SkydriftInfinity.exe": - when: - os: windows store: steam @@ -475894,11 +477160,11 @@ SkyGameChanger-AirCombat II-: installDir: SkyGameChanger-Air Combat II-: {} launch: - /Game.app/Contents/MacOS/SkyGameChanger: + "/Game.app/Contents/MacOS/SkyGameChanger": - when: - os: mac store: steam - /SkyGameChanger-Air Combat II-.exe: + "/SkyGameChanger-Air Combat II-.exe": - when: - os: windows store: steam @@ -475908,7 +477174,7 @@ SkyKeepers: installDir: SkyKeepers: {} launch: - /SkyKeepers.exe: + "/SkyKeepers.exe": - when: - bit: 64 os: windows @@ -475917,14 +477183,14 @@ SkyKeepers: id: 568180 SkyRoads: files: - /SKYROADS.CFG: + "/SKYROADS.CFG": tags: - save when: - os: dos -'SkyRoads: Xmas Special': +"SkyRoads: Xmas Special": files: - /SKYROADS.CFG: + "/SKYROADS.CFG": tags: - save when: @@ -475933,20 +477199,20 @@ SkyScrappers: installDir: SkyScrappers: {} launch: - /SkyScrappers.app: + "/SkyScrappers.app": - when: - os: mac store: steam - /SkyScrappers.exe: + "/SkyScrappers.exe": - when: - os: windows store: steam - /SkyScrappers.x86: + "/SkyScrappers.x86": - when: - bit: 32 os: linux store: steam - /SkyScrappers.x86_64: + "/SkyScrappers.x86_64": - when: - bit: 64 os: linux @@ -475957,20 +477223,20 @@ SkyTime: installDir: SkyTime: {} launch: - /SkyTime.app: + "/SkyTime.app": - when: - os: mac store: steam - /SkyTime.exe: + "/SkyTime.exe": - when: - os: windows store: steam - /SkyTime.x86: + "/SkyTime.x86": - when: - bit: 32 os: linux store: steam - /SkyTime.x86_64: + "/SkyTime.x86_64": - when: - bit: 64 os: linux @@ -475981,7 +477247,7 @@ Skybolt Zack: installDir: SkyboltZack: {} launch: - /SkyboltZack.exe: + "/SkyboltZack.exe": - when: - os: windows store: steam @@ -475989,17 +477255,17 @@ Skybolt Zack: id: 909670 Skyborn: files: - /Game.ini: + "/Game.ini": tags: - config when: - os: windows - /Skyborn: + "/Skyborn": tags: - save when: - os: windows - /dancingdragon/skyborn: + "/dancingdragon/skyborn": tags: - save when: @@ -476007,23 +477273,23 @@ Skyborn: installDir: Skyborn: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam - /Skyborn.app/Contents/MacOS/steamshim_parent: + "/Skyborn.app/Contents/MacOS/steamshim_parent": - arguments: Skyborn.app/Contents/MacOS/mkxp when: - os: mac store: steam - /steamshim/parent.amd64: - - arguments: ./Skyborn.amd64 + "/steamshim/parent.amd64": + - arguments: "./Skyborn.amd64" when: - bit: 64 os: linux store: steam - /steamshim/parent.x86: - - arguments: ./Skyborn.x86 + "/steamshim/parent.x86": + - arguments: "./Skyborn.x86" when: - bit: 32 os: linux @@ -476050,7 +477316,7 @@ Skyflower: installDir: Skyflower: {} launch: - /Skyflower.exe: + "/Skyflower.exe": - when: - os: windows store: steam @@ -476060,8 +477326,8 @@ Skyforge: installDir: Skyforge: {} launch: - /SkyforgeMycomSteamLoader.exe: - - arguments: '-FromSteam' + "/SkyforgeMycomSteamLoader.exe": + - arguments: "-FromSteam" when: - os: windows store: steam @@ -476078,31 +477344,31 @@ Skyhill: installDir: Skyhill: {} launch: - /Skyhill.app: + "/Skyhill.app": - when: - os: mac store: steam - /Skyhill.exe: + "/Skyhill.exe": - when: - os: windows store: steam - /Skyhill.x86: + "/Skyhill.x86": - when: - bit: 32 os: linux store: steam - /Skyhill.x86_64: + "/Skyhill.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 382140 -'Skyhill: Black Mist': +"Skyhill: Black Mist": installDir: SKYHILL Black Mist: {} launch: - /Skyhill Black Mist.exe: + "/Skyhill Black Mist.exe": - when: - os: windows store: steam @@ -476112,20 +477378,20 @@ Skyhook: installDir: Skyhook: {} launch: - /Skyhook.app: + "/Skyhook.app": - when: - os: mac store: steam - /Skyhook.exe: + "/Skyhook.exe": - when: - os: windows store: steam - /skyhook.x86: + "/skyhook.x86": - when: - bit: 32 os: linux store: steam - /skyhook.x86_64: + "/skyhook.x86_64": - when: - bit: 64 os: linux @@ -476136,7 +477402,7 @@ Skyland 1976: installDir: Skyland76: {} launch: - /Skyland76.exe: + "/Skyland76.exe": - when: - bit: 64 os: windows @@ -476147,14 +477413,14 @@ Skyland Defense: installDir: Skyland Defense: {} launch: - /Skyland Defense.exe: + "/Skyland Defense.exe": - when: - store: steam steam: id: 905960 -'Skyland: Heart of the Mountain': +"Skyland: Heart of the Mountain": files: - /userdata//949800/remote/profile: + "/userdata//949800/remote/profile": tags: - config - save @@ -476164,34 +477430,34 @@ Skyland Defense: installDir: Skyland: {} launch: - /Skyland.exe: + "/Skyland.exe": - when: - os: windows store: steam - /Skyland_amd64: + "/Skyland_amd64": - when: - bit: 64 os: linux store: steam - /Skyland_i386: + "/Skyland_i386": - when: - bit: 32 os: linux store: steam - /mac_steam.app/Contents/MacOS/mac_steam: + "/mac_steam.app/Contents/MacOS/mac_steam": - when: - os: mac store: steam steam: id: 949800 -'Skylanders: Spyro''s Adventure': +"Skylanders: Spyro's Adventure": files: - /Spyro/Save/global.dat: + "/Spyro/Save/global.dat": tags: - config when: - os: windows - /Spyro/Save/slot#: + "/Spyro/Save/slot#": tags: - save when: @@ -476200,25 +477466,25 @@ Skylands: installDir: Skylands: {} launch: - /Skylands.exe: + "/Skylands.exe": - when: - os: windows store: steam steam: id: 618200 -'Skylar & Plux: Adventure on Clover Island': +"Skylar & Plux: Adventure on Clover Island": files: - /CloverIsland/Saved/Config/WindowsNoEditor: + "/CloverIsland/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /CloverIsland/Saved/SaveGames: + "/CloverIsland/Saved/SaveGames": tags: - save when: - os: windows - /CloverIsland/Saved/SaveGames/SETTINGS.sav: + "/CloverIsland/Saved/SaveGames/SETTINGS.sav": tags: - config when: @@ -476228,7 +477494,7 @@ Skylands: installDir: Skylar & Plux Adventure On Clover Island: {} launch: - /CloverIsland/Binaries/Win64/CloverIsland-Win64-Shipping.exe: + "/CloverIsland/Binaries/Win64/CloverIsland-Win64-Shipping.exe": - when: - os: windows store: steam @@ -476238,10 +477504,10 @@ Skylight: installDir: Skylight: {} launch: - /SkylightRift36.exe: + "/SkylightRift36.exe": - when: - store: steam - /Skylight_NonVR.exe: + "/Skylight_NonVR.exe": - when: - os: windows store: steam @@ -476250,21 +477516,21 @@ Skylight: Skylight Racer: steam: id: 1071550 -'Skyling: Garden Defense': +"Skyling: Garden Defense": installDir: Skyling Garden Defense: {} launch: - /Skyling.exe: + "/Skyling.exe": - when: - os: windows store: steam steam: id: 577160 -'Skynet Rising: Portal to the Past': +"Skynet Rising: Portal to the Past": installDir: Skynet Rising - Portal to the Past: {} launch: - /Skynet Rising Launcher.exe: + "/Skynet Rising Launcher.exe": - when: - bit: 64 os: windows @@ -476275,7 +477541,7 @@ Skyous: installDir: Skyous: {} launch: - /Skyous.exe: + "/Skyous.exe": - when: - os: windows store: steam @@ -476285,7 +477551,7 @@ Skyraine: installDir: Skyraine: {} launch: - /Skyraine_v1p4p3.exe: + "/Skyraine_v1p4p3.exe": - when: - os: windows store: steam @@ -476295,7 +477561,7 @@ Skyreach: installDir: Skyreach: {} launch: - /Skyreach.exe: + "/Skyreach.exe": - when: - os: windows store: steam @@ -476305,7 +477571,7 @@ Skyrift: installDir: Skyrift: {} launch: - /Skyrift.exe: + "/Skyrift.exe": - when: - os: windows store: steam @@ -476320,32 +477586,32 @@ Skyscraper Simulator: installDir: Skyscraper Simulator: {} launch: - /skyscraper.exe: + "/skyscraper.exe": - when: - store: steam steam: id: 252910 -'Skyscrapers Puzzle: Airi''s tale': +"Skyscrapers Puzzle: Airi's tale": installDir: - Skyscrapers Puzzle Airi's tale: {} + "Skyscrapers Puzzle Airi's tale": {} launch: - /SkyscrapersPuzzle.exe: + "/SkyscrapersPuzzle.exe": - when: - os: windows store: steam steam: id: 876180 -Skyshine's Bedlam Redux!: +"Skyshine's Bedlam Redux!": gog: id: 1876268007 installDir: Skyshine: {} launch: - /Skyshines BEDLAM.app/Contents/MacOS/Skyshines BEDLAM: + "/Skyshines BEDLAM.app/Contents/MacOS/Skyshines BEDLAM": - when: - os: mac store: steam - /win32/Skyshines Bedlam.exe: + "/win32/Skyshines Bedlam.exe": - when: - os: windows store: steam @@ -476355,12 +477621,12 @@ Skytropolis: installDir: Skytropolis: {} launch: - /Skytropolis.app: + "/Skytropolis.app": - when: - os: mac store: steam - /Skytropolis.exe: - - arguments: '-vrmode none' + "/Skytropolis.exe": + - arguments: "-vrmode none" when: - os: windows store: steam @@ -476370,7 +477636,7 @@ Skywalk: installDir: Skywalk: {} launch: - /Skywalk.exe: + "/Skywalk.exe": - when: - bit: 64 os: windows @@ -476381,7 +477647,7 @@ Skyward: installDir: Skyward: {} launch: - /Skyward.exe: + "/Skyward.exe": - when: - os: windows store: steam @@ -476389,18 +477655,18 @@ Skyward: id: 1048160 Skyward Collapse: files: - /RuntimeData/Save: + "/RuntimeData/Save": tags: - save when: - os: windows - os: mac - '/.config/Arcen Games, LLC/Skyward Collapse': + "/.config/Arcen Games, LLC/Skyward Collapse": tags: - config when: - os: linux - '/Library/Preferences/unity.Arcen Games, LLC.Skyward Collapse.plist': + "/Library/Preferences/unity.Arcen Games, LLC.Skyward Collapse.plist": tags: - config when: @@ -476408,26 +477674,26 @@ Skyward Collapse: installDir: Skyward Collapse: {} launch: - /Collapse.app: + "/Collapse.app": - when: - os: mac store: steam - /Collapse.exe: + "/Collapse.exe": - when: - os: windows store: steam - /CollapseLinux.x86: + "/CollapseLinux.x86": - when: - bit: 32 os: linux store: steam - /CollapseLinux.x86_64: + "/CollapseLinux.x86_64": - when: - bit: 64 os: linux store: steam registry: - 'HKEY_CURRENT_USER/SOFTWARE/Arcen Games, LLC/Skyward Collapse': + "HKEY_CURRENT_USER/SOFTWARE/Arcen Games, LLC/Skyward Collapse": tags: - config steam: @@ -476436,20 +477702,20 @@ Skyway: installDir: Skyway: {} launch: - /Skyway.app/Contents/MacOS/Skyway: + "/Skyway.app/Contents/MacOS/Skyway": - when: - os: mac store: steam - /Skyway.exe: + "/Skyway.exe": - when: - os: windows store: steam - /Skyway.x86: + "/Skyway.x86": - when: - bit: 32 os: linux store: steam - /Skyway.x86_64: + "/Skyway.x86_64": - when: - bit: 64 os: linux @@ -476461,7 +477727,7 @@ Skyworld: Skyworld: {} steam: id: 342190 -'Skyworld: Kingdom Brawl': +"Skyworld: Kingdom Brawl": installDir: Skyworld Brawl: {} steam: @@ -476470,19 +477736,19 @@ Skywriter: installDir: Skywriter: {} launch: - /skywriter.exe: + "/skywriter.exe": - when: - os: windows store: steam steam: id: 919040 -'Skábma: Snowfall': +"Skábma: Snowfall": gog: id: 1604699879 installDir: Skábma: {} launch: - /Skábma - Snowfall.exe: + "/Skábma - Snowfall.exe": - when: - os: windows store: steam @@ -476492,15 +477758,15 @@ Slab: installDir: Slab: {} launch: - /Slab.app/Contents/MacOS/Slab: + "/Slab.app/Contents/MacOS/Slab": - when: - os: mac store: steam - /Slab.exe: + "/Slab.exe": - when: - os: windows store: steam - /Slab.x86.x86_64: + "/Slab.x86.x86_64": - when: - os: linux store: steam @@ -476513,25 +477779,25 @@ Slabs: installDir: Slabs: {} launch: - /Slabs.exe: + "/Slabs.exe": - when: - os: windows store: steam steam: id: 880590 -'Slain: Back from Hell': +"Slain: Back from Hell": files: - /AppData/LocalLow/Wolfbrew Games/Slain: + "/AppData/LocalLow/Wolfbrew Games/Slain": tags: - save when: - os: windows - /unity3d/Wolfbrew Games/Slain/*.dat: + "/unity3d/Wolfbrew Games/Slain/*.dat": tags: - save when: - os: linux - /unity3d/Wolfbrew Games/Slain/prefs: + "/unity3d/Wolfbrew Games/Slain/prefs": tags: - config when: @@ -476541,15 +477807,15 @@ Slabs: installDir: Slain!: {} launch: - /Slain.app: + "/Slain.app": - when: - os: mac store: steam - /Slain.exe: + "/Slain.exe": - when: - os: windows store: steam - /Slain.x86_64: + "/Slain.x86_64": - when: - os: linux store: steam @@ -476563,20 +477829,20 @@ Slam: installDir: Slam: {} launch: - /slam.app: + "/slam.app": - when: - os: mac store: steam - /slam.exe: + "/slam.exe": - when: - os: windows store: steam - /slam.x86: + "/slam.x86": - when: - bit: 32 os: linux store: steam - /slam.x86_64: + "/slam.x86_64": - when: - bit: 64 os: linux @@ -476587,7 +477853,7 @@ Slam Bolt Scrappers: installDir: Slam Bolt Scrappers: {} launch: - /SBS.exe: + "/SBS.exe": - when: - store: steam steam: @@ -476596,7 +477862,7 @@ Slam Fighter II Steam Edition: installDir: SlamFighterII: {} launch: - /SlamFighterII.exe: + "/SlamFighterII.exe": - when: - os: windows store: steam @@ -476606,11 +477872,11 @@ Slam Land: installDir: Slam Land: {} launch: - /slamland.app/Contents/MacOS/slamland: + "/slamland.app/Contents/MacOS/slamland": - when: - os: mac store: steam - /slamland.exe: + "/slamland.exe": - when: - os: windows store: steam @@ -476620,7 +477886,7 @@ SlamIt Pinball Big Score: installDir: SlamIt Pinball Big Score: {} launch: - /BigScore.exe: + "/BigScore.exe": - when: - store: steam steam: @@ -476634,15 +477900,15 @@ Slammed!: installDir: SLAMMED: {} launch: - /SLAMMED: + "/SLAMMED": - when: - os: linux store: steam - /SLAMMED.exe: + "/SLAMMED.exe": - when: - os: windows store: steam - /Slammed.app/Contents/MacOS/Slammed: + "/Slammed.app/Contents/MacOS/Slammed": - when: - os: mac store: steam @@ -476652,7 +477918,7 @@ Slamoids!: installDir: Slamoids!: {} launch: - /slamoids.exe: + "/slamoids.exe": - when: - os: windows store: steam @@ -476660,7 +477926,7 @@ Slamoids!: id: 837180 Slap City: files: - /AppData/LocalLow/Ludosity/Slap City: + "/AppData/LocalLow/Ludosity/Slap City": tags: - config - save @@ -476674,15 +477940,15 @@ Slap Fight: installDir: Slap Fight: {} launch: - /SlapFight.app: + "/SlapFight.app": - when: - os: mac store: steam - /SlapFight.exe: + "/SlapFight.exe": - when: - os: windows store: steam - /SlapFight.x64: + "/SlapFight.x64": - when: - os: linux store: steam @@ -476692,46 +477958,49 @@ Slap The Fly: installDir: Slap The Fly: {} launch: - /SlapTheFly.exe: + "/SlapTheFly.exe": - when: - bit: 64 os: windows store: steam steam: id: 543030 -'Slap Village: Reality Slap': +"Slap Village: Reality Slap": installDir: Slap Village Chapter 1: {} launch: - /SlapVillage.app/Contents/MacOS/SlapVillage: + "/SlapVillage.app/Contents/MacOS/SlapVillage": - when: - os: mac store: steam - /SlapVillage.exe: + "/SlapVillage.exe": - when: - bit: 32 os: windows store: steam + - bit: 64 + os: windows + store: steam steam: id: 480900 Slappy Ass: installDir: Slappy Ass: {} launch: - /Slappy Ass.app: + "/Slappy Ass.app": - when: - os: mac store: steam - /Slappy Ass.exe: + "/Slappy Ass.exe": - when: - os: windows store: steam - /Slappy Ass.x86: + "/Slappy Ass.x86": - when: - bit: 32 os: linux store: steam - /Slappy Ass.x86_64: + "/Slappy Ass.x86_64": - when: - bit: 64 os: linux @@ -476742,39 +478011,39 @@ Slapshot: installDir: Slapshot: {} launch: - /nwjs.app: + "/nwjs.app": - when: - os: mac store: steam - /slapshot.exe: + "/slapshot.exe": - when: - os: windows store: steam steam: id: 707680 -'Slapshot: Rebound': +"Slapshot: Rebound": installDir: SlapshotRebound: {} launch: - /Slapshot.exe: + "/Slapshot.exe": - when: - os: windows store: steam steam: id: 1173370 -'Slash Arena: Online': +"Slash Arena: Online": installDir: slash_arena: {} launch: - /slasharena_steam.app: + "/slasharena_steam.app": - when: - os: mac store: steam - /slasharena_steam.exe: + "/slasharena_steam.exe": - when: - os: windows store: steam - /slasharena_steam.x86_64: + "/slasharena_steam.x86_64": - when: - os: linux store: steam @@ -476782,7 +478051,7 @@ Slapshot: id: 578120 Slash It: files: - /.config/unity3d/KupiKey/Slash It: + "/.config/unity3d/KupiKey/Slash It": tags: - save when: @@ -476790,20 +478059,20 @@ Slash It: installDir: Slash It: {} launch: - /SlashIt.app: + "/SlashIt.app": - when: - os: mac store: steam - /SlashIt.exe: + "/SlashIt.exe": - when: - os: windows store: steam - /SlashIt.x86: + "/SlashIt.x86": - when: - bit: 32 os: linux store: steam - /SlashIt.x86_64: + "/SlashIt.x86_64": - when: - bit: 64 os: linux @@ -476816,7 +478085,7 @@ Slash It: id: 567290 Slash It 2: files: - /.config/unity3d/KupiKey/Slash It 2: + "/.config/unity3d/KupiKey/Slash It 2": tags: - save when: @@ -476824,20 +478093,20 @@ Slash It 2: installDir: Slash It 2: {} launch: - /Slash It 2.app: + "/Slash It 2.app": - when: - os: mac store: steam - /SlashIt2.exe: + "/SlashIt2.exe": - when: - os: windows store: steam - /SlashIt2.x86: + "/SlashIt2.x86": - when: - bit: 32 os: linux store: steam - /SlashIt2.x86_64: + "/SlashIt2.x86_64": - when: - bit: 64 os: linux @@ -476852,22 +478121,28 @@ Slash It Ultimate: installDir: Slash It Ultimate: {} launch: - /SlashItUltimate.app: + "/SlashItUltimate.app": - when: - bit: 32 os: mac store: steam - /SlashItUltimate.exe: + - bit: 64 + os: mac + store: steam + "/SlashItUltimate.exe": - when: - bit: 32 os: windows store: steam - /SlashItUltimate.x86: + - bit: 64 + os: windows + store: steam + "/SlashItUltimate.x86": - when: - bit: 32 os: linux store: steam - /SlashItUltimate.x86_64: + "/SlashItUltimate.x86_64": - when: - bit: 64 os: linux @@ -476878,7 +478153,7 @@ Slash or Die: installDir: Slash or Die: {} launch: - /SoD.exe: + "/SoD.exe": - when: - os: windows store: steam @@ -476888,15 +478163,15 @@ Slash or Die 2: installDir: Slash or Die 2: {} launch: - /Contents/MacOS/SOD2_Mac: + "/Contents/MacOS/SOD2_Mac": - when: - os: mac store: steam - /SoD2.exe: + "/SoD2.exe": - when: - os: windows store: steam - /SoD2.x86_64: + "/SoD2.x86_64": - when: - os: linux store: steam @@ -476906,11 +478181,11 @@ Slash/Dots.: installDir: Slash Dots: {} launch: - /slashdots.app/Contents/MacOS/mac_content: + "/slashdots.app/Contents/MacOS/mac_content": - when: - os: mac store: steam - /slashdots.exe: + "/slashdots.exe": - when: - os: windows store: steam @@ -476921,35 +478196,35 @@ Slasher VR: Slasher VR: {} steam: id: 674160 -Slasher's Keep: +"Slasher's Keep": files: - /AppData/LocalLow/Games Damian made/Slasher_s Keep: + "/AppData/LocalLow/Games Damian made/Slasher_s Keep": tags: - save when: - os: windows installDir: - Slasher's Keep: {} + "Slasher's Keep": {} launch: - /SlashersKeep.exe: + "/SlashersKeep.exe": - when: - os: windows store: steam steam: id: 598060 -'Slashers: The Power Battle': +"Slashers: The Power Battle": installDir: DualSouls: {} launch: - /DualSouls.app: + "/DualSouls.app": - when: - os: mac store: steam - /DualSouls.exe: + "/DualSouls.exe": - when: - os: windows store: steam - /DualSouls.x86_64: + "/DualSouls.x86_64": - when: - os: linux store: steam @@ -476959,7 +478234,7 @@ Slashvival: installDir: Slashvival: {} launch: - /Slashvival.exe: + "/Slashvival.exe": - when: - bit: 64 os: windows @@ -476970,27 +478245,27 @@ Slashy Hero: installDir: Slashy Hero: {} launch: - /bin/SlashyHero.app: + "/bin/SlashyHero.app": - when: - os: mac store: steam - workingDir: /gameroot - /bin/SlashyHero.exe: + workingDir: "/gameroot" + "/bin/SlashyHero.exe": - when: - os: windows store: steam - workingDir: /gameroot + workingDir: "/gameroot" steam: id: 525740 -'Slaughter 3: The Rebels': +"Slaughter 3: The Rebels": installDir: Slaughter 3 The Rebels: {} launch: - /LinuxRebels.x86_64: + "/LinuxRebels.x86_64": - when: - os: linux store: steam - /SL3.exe: + "/SL3.exe": - when: - bit: 64 os: windows @@ -477006,7 +478281,7 @@ Slava Ukraini!: installDir: Slava Ukraini: {} launch: - /Slava Ukraini/Slava Ukraini.exe: + "/Slava Ukraini/Slava Ukraini.exe": - when: - os: windows store: steam @@ -477016,7 +478291,7 @@ Slave Ghost: installDir: Slave Ghost: {} launch: - /SG.exe: + "/SG.exe": - when: - os: windows store: steam @@ -477025,11 +478300,11 @@ Slave Ghost: Slave Girl Reno: steam: id: 1198220 -'Slave Master: The Game': +"Slave Master: The Game": installDir: SlaveMasterTG: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -477039,15 +478314,15 @@ Slave RPG: installDir: Slave RPG: {} launch: - /slaveRPG.app/Contents/MacOS/slaveRPG: + "/slaveRPG.app/Contents/MacOS/slaveRPG": - when: - os: mac store: steam - /slaveRPG.exe: + "/slaveRPG.exe": - when: - os: windows store: steam - /slaveRPG.x86_64: + "/slaveRPG.x86_64": - when: - os: linux store: steam @@ -477058,7 +478333,7 @@ Slave Story: id: 736520 Slave Zero: files: - /savegame: + "/savegame": tags: - save when: @@ -477068,11 +478343,11 @@ Slave Zero: installDir: Slave Zero: {} launch: - /SlaveZero.exe: + "/SlaveZero.exe": - when: - os: windows store: steam - /nglide_config.exe: + "/nglide_config.exe": - when: - os: windows store: steam @@ -477083,25 +478358,25 @@ Slave Zero X: id: 1524645937 steam: id: 1903910 -Slave's Sword: +"Slave's Sword": gog: id: 1862194530 installDir: - Slave's Sword: {} + "Slave's Sword": {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam steam: id: 893010 -Slave's Sword 2: +"Slave's Sword 2": gog: id: 2067293148 installDir: - Slave's Sword 2: {} + "Slave's Sword 2": {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: @@ -477110,7 +478385,7 @@ Slaveblade: installDir: Slaveblade: {} launch: - /Slaveblade.exe: + "/Slaveblade.exe": - when: - os: windows store: steam @@ -477120,7 +478395,7 @@ Slavistan: installDir: Slavistan: {} launch: - /Slavistan.exe: + "/Slavistan.exe": - when: - os: windows store: steam @@ -477130,7 +478405,7 @@ Slavistan 2: installDir: Slavistan 2: {} launch: - /Slavistan 2.exe: + "/Slavistan 2.exe": - when: - os: windows store: steam @@ -477138,7 +478413,7 @@ Slavistan 2: id: 956990 Slay: files: - /Sean OConnors Games/Slay: + "/Sean OConnors Games/Slay": tags: - save when: @@ -477146,7 +478421,7 @@ Slay: installDir: Slay: {} launch: - /Slay.exe: + "/Slay.exe": - when: - os: windows store: steam @@ -477156,7 +478431,7 @@ Slay All Goblins: installDir: Slay All Goblins: {} launch: - /sag.exe: + "/sag.exe": - when: - bit: 64 os: windows @@ -477167,7 +478442,7 @@ Slay The Dragon: installDir: Slay The Dragon: {} launch: - /SlayTheDragon.exe: + "/SlayTheDragon.exe": - when: - os: windows store: steam @@ -477177,7 +478452,7 @@ Slay Together: installDir: Slay Together: {} launch: - /SlayTogether.exe: + "/SlayTogether.exe": - when: - bit: 64 os: windows @@ -477188,7 +478463,7 @@ Slay the Bigies: installDir: Slay The Bigies: {} launch: - /SlayTheBigies.exe: + "/SlayTheBigies.exe": - when: - bit: 64 os: windows @@ -477197,7 +478472,7 @@ Slay the Bigies: id: 1203810 Slay the Princess: files: - /RenPy/SlaythePrincess-1651597024: + "/RenPy/SlaythePrincess-1651597024": tags: - save when: @@ -477211,63 +478486,63 @@ Slay the Princess: id: 1989270 Slay the Spire: files: - /SlayTheSpire.app/Contents/Resources/preferences: + "/SlayTheSpire.app/Contents/Resources/preferences": tags: - save when: - os: mac - /SlayTheSpire.app/Contents/Resources/preferences/STSGameplaySettings: + "/SlayTheSpire.app/Contents/Resources/preferences/STSGameplaySettings": tags: - config when: - os: mac - /betaPreferences: + "/betaPreferences": tags: - config when: - os: linux - /info.displayconfig: + "/info.displayconfig": tags: - config when: - os: windows - os: linux - /preferences: + "/preferences": tags: - config when: - os: windows - /saves: + "/saves": tags: - save when: - os: windows - os: linux - /twitchconfig.txt: + "/twitchconfig.txt": tags: - config when: - os: windows - os: linux - /Packages/HumbleBundle.SlayTheSpire_q2mcdwmzx4qja/LocalCache/Local/Microsoft/WritablePackageRoot/info.displayconfig: + "/Packages/HumbleBundle.SlayTheSpire_q2mcdwmzx4qja/LocalCache/Local/Microsoft/WritablePackageRoot/info.displayconfig": tags: - config when: - os: windows store: microsoft - /Packages/HumbleBundle.SlayTheSpire_q2mcdwmzx4qja/LocalCache/Local/Microsoft/WritablePackageRoot/preferences: + "/Packages/HumbleBundle.SlayTheSpire_q2mcdwmzx4qja/LocalCache/Local/Microsoft/WritablePackageRoot/preferences": tags: - config when: - os: windows store: microsoft - /Packages/HumbleBundle.SlayTheSpire_q2mcdwmzx4qja/LocalCache/Local/Microsoft/WritablePackageRoot/saves: + "/Packages/HumbleBundle.SlayTheSpire_q2mcdwmzx4qja/LocalCache/Local/Microsoft/WritablePackageRoot/saves": tags: - save when: - os: windows store: microsoft - /Packages/HumbleBundle.SlayTheSpire_q2mcdwmzx4qja/LocalCache/Local/Microsoft/WritablePackageRoot/twitchconfig.txt: + "/Packages/HumbleBundle.SlayTheSpire_q2mcdwmzx4qja/LocalCache/Local/Microsoft/WritablePackageRoot/twitchconfig.txt": tags: - config when: @@ -477283,17 +478558,17 @@ Slay the Spire: installDir: SlayTheSpire: {} launch: - /SlayTheSpire: + "/SlayTheSpire": - when: - os: linux store: steam - /SlayTheSpire.app/Contents/MacOS/SlayTheSpire: + "/SlayTheSpire.app/Contents/MacOS/SlayTheSpire": - when: - os: mac store: steam - workingDir: /SlayTheSpire.app/Contents/Resources - /jre/bin/javaw.exe: - - arguments: '-jar desktop-1.0.jar' + workingDir: "/SlayTheSpire.app/Contents/Resources" + "/jre/bin/javaw.exe": + - arguments: "-jar desktop-1.0.jar" when: - os: windows store: steam @@ -477303,31 +478578,31 @@ Slay.one: installDir: Slay.one: {} launch: - /nwjs-linux32/nw: - - arguments: . + "/nwjs-linux32/nw": + - arguments: "." when: - bit: 32 os: linux store: steam - /nwjs-linux64/nw: - - arguments: . + "/nwjs-linux64/nw": + - arguments: "." when: - bit: 64 os: linux store: steam - /nwjs-mac64/nwjs.app/Contents/MacOS/nwjs: - - arguments: . + "/nwjs-mac64/nwjs.app/Contents/MacOS/nwjs": + - arguments: "." when: - os: mac store: steam - /nwjs-win32/nw.exe: - - arguments: . + "/nwjs-win32/nw.exe": + - arguments: "." when: - bit: 32 os: windows store: steam - /nwjs-win64/nw.exe: - - arguments: . + "/nwjs-win64/nw.exe": + - arguments: "." when: - bit: 64 os: windows @@ -477336,12 +478611,12 @@ Slay.one: id: 743350 Slayaway Camp: files: - /.config/unity3d/Blue Wizard/slayaway camp: + "/.config/unity3d/Blue Wizard/slayaway camp": tags: - save when: - os: linux - /AppData/LocalLow/Blue Wizard/slayaway camp: + "/AppData/LocalLow/Blue Wizard/slayaway camp": tags: - save when: @@ -477349,21 +478624,21 @@ Slayaway Camp: installDir: Slayaway Camp: {} launch: - /SlayawayCamp.app: + "/SlayawayCamp.app": - when: - os: mac store: steam - /SlayawayCamp.exe: + "/SlayawayCamp.exe": - when: - os: windows store: steam - /SlayawayCamp.x86: + "/SlayawayCamp.x86": - arguments: LC_ALL=C %command% when: - bit: 32 os: linux store: steam - /SlayawayCamp.x86_64: + "/SlayawayCamp.x86_64": - arguments: LC_ALL=C %command%_64 when: - bit: 64 @@ -477379,15 +478654,15 @@ Slayer Shock: installDir: Slayer Shock: {} launch: - /Vamp: + "/Vamp": - when: - os: linux store: steam - /Vamp.app: + "/Vamp.app": - when: - os: mac store: steam - /Vamp.exe: + "/Vamp.exe": - when: - os: windows store: steam @@ -477397,22 +478672,22 @@ Slayer of Traitors: installDir: Slayer Of Traitors: {} launch: - /softraitors.exe: + "/softraitors.exe": - when: - bit: 64 os: windows store: steam steam: id: 816670 -'Slayers X: Terminal Aftermath: Vengance of the Slayer': +"Slayers X: Terminal Aftermath: Vengance of the Slayer": files: - /Packages/NoMoreRobots.SlayersXTerminalAftermathVenganceofth_671zbmwb2bw9p/Settings/settings.dat: + "/Packages/NoMoreRobots.SlayersXTerminalAftermathVenganceofth_671zbmwb2bw9p/Settings/settings.dat": tags: - config when: - os: windows store: microsoft - /Packages/NoMoreRobots.SlayersXTerminalAftermathVenganceofth_671zbmwb2bw9p/SystemAppData/wgs: + "/Packages/NoMoreRobots.SlayersXTerminalAftermathVenganceofth_671zbmwb2bw9p/SystemAppData/wgs": tags: - save when: @@ -477421,7 +478696,7 @@ Slayer of Traitors: installDir: Slayers X: {} launch: - /Slayers X Terminal Aftermath Vengance of the Slayer.exe: + "/Slayers X Terminal Aftermath Vengance of the Slayer.exe": - when: - os: windows store: steam @@ -477440,17 +478715,17 @@ Sleep Attack: installDir: Sleep Attack: {} launch: - /Sleep Attack.app: + "/Sleep Attack.app": - when: - os: mac store: steam - /SleepAttack.exe: + "/SleepAttack.exe": - when: - os: windows store: steam steam: id: 366210 -'Sleep Paralysis : mystery of the mountain village': +"Sleep Paralysis : mystery of the mountain village": installDir: Sleep Paralysis: {} steam: @@ -477459,7 +478734,7 @@ Sleep Tight: installDir: Sleep Tight: {} launch: - /Sleep Tight.exe: + "/Sleep Tight.exe": - when: - os: windows store: steam @@ -477469,7 +478744,7 @@ SleepWalker: installDir: SleepWalker: {} launch: - /Sleepwalker.exe: + "/Sleepwalker.exe": - when: - os: windows store: steam @@ -477479,7 +478754,7 @@ Sleeping Dawn: installDir: Sleeping Dawn: {} launch: - /SleepingDawn.exe: + "/SleepingDawn.exe": - when: - bit: 64 os: windows @@ -477493,17 +478768,17 @@ Sleeping Dawn VR: id: 851250 Sleeping Dogs: files: - /Data/HK*Slot*: + "/Data/HK*Slot*": tags: - save when: - os: windows - /data/DisplaySettings.xml: + "/data/DisplaySettings.xml": tags: - config when: - os: windows - /data/HK Options: + "/data/HK Options": tags: - config when: @@ -477514,49 +478789,49 @@ Sleeping Dogs: installDir: SleepingDogs: {} launch: - /HKShip.exe: + "/HKShip.exe": - when: - os: windows store: steam - /Sleeping Dogs.app: + "/Sleeping Dogs.app": - when: - os: mac store: steam steam: id: 202170 -'Sleeping Dogs: Definitive Edition': +"Sleeping Dogs: Definitive Edition": files: - /Save: + "/Save": tags: - config when: - store: gog - /data/DisplaySettings.xml: + "/data/DisplaySettings.xml": tags: - config when: - os: windows - /data/HK Autosave*: + "/data/HK Autosave*": tags: - save when: - os: windows - /data/HK GameSlot*: + "/data/HK GameSlot*": tags: - save when: - os: windows - /data/HK Options: + "/data/HK Options": tags: - config when: - os: windows - /Library/Application Support/Feral Interactive/Sleeping Dogs Definitive Edition/VFS/Local/Saves: + "/Library/Application Support/Feral Interactive/Sleeping Dogs Definitive Edition/VFS/Local/Saves": tags: - save when: - os: mac - /Library/Application Support/Feral Interactive/Sleeping Dogs Definitive Edition/VFS/Local/Settings: + "/Library/Application Support/Feral Interactive/Sleeping Dogs Definitive Edition/VFS/Local/Settings": tags: - config when: @@ -477566,12 +478841,12 @@ Sleeping Dogs: installDir: SleepingDogsDefinitiveEdition: {} launch: - /SDHDShip.exe: + "/SDHDShip.exe": - when: - bit: 64 os: windows store: steam - /Sleeping Dogs Definitive Edition.app: + "/Sleeping Dogs Definitive Edition.app": - when: - bit: 64 os: mac @@ -477582,7 +478857,7 @@ Sleeping Valley: installDir: Sleeping Valley: {} launch: - /SleepingValley.exe: + "/SleepingValley.exe": - when: - os: windows store: steam @@ -477592,20 +478867,20 @@ Sleepwalker (1993): installDir: Sleepwalker: {} launch: - /dosbox.exe: + "/dosbox.exe": - when: - os: windows store: steam steam: id: 814640 -Sleepwalker's Journey: +"Sleepwalker's Journey": files: - /11bitstudios/Sleepwalker`s Journey/config.bin: + "/11bitstudios/Sleepwalker`s Journey/config.bin": tags: - config when: - os: windows - /11bitstudios/Sleepwalker`s Journey/iPhoneDefUser: + "/11bitstudios/Sleepwalker`s Journey/iPhoneDefUser": tags: - save when: @@ -477622,7 +478897,7 @@ Slender Hentai Edition: installDir: Slender Hentai Edition: {} launch: - /Slender Hentai Edition.exe: + "/Slender Hentai Edition.exe": - when: - os: windows store: steam @@ -477633,21 +478908,21 @@ Slender Threads: id: 1309298705 steam: id: 1116480 -'Slender: The Arrival': +"Slender: The Arrival": files: - /userdata//252330/remote/SteamCloud: + "/userdata//252330/remote/SteamCloud": tags: - config - save when: - os: windows store: steam - /SlenderTheArrival/Saved/Config/Windows: + "/SlenderTheArrival/Saved/Config/Windows": tags: - config when: - os: windows - /SlenderTheArrival/Saved/SaveGames: + "/SlenderTheArrival/Saved/SaveGames": tags: - save when: @@ -477657,11 +478932,11 @@ Slender Threads: installDir: Slender - The Arrival: {} launch: - /Slender - The Arrival.app: + "/Slender - The Arrival.app": - when: - os: mac store: steam - /Slender - The Arrival.exe: + "/Slender - The Arrival.exe": - when: - bit: 32 os: windows @@ -477673,40 +478948,40 @@ Slender Threads: - save steam: id: 252330 -'Slender: The Eight Pages': +"Slender: The Eight Pages": registry: HKEY_CURRENT_USER/Software/Parsec Productions/Slender: tags: - config -Slenderman's Shadow: +"Slenderman's Shadow": files: - /player: + "/player": tags: - save when: - os: windows registry: - HKEY_CURRENT_USER/Software/Dark Pathogen Studios/Slenderman's Shadow v1.3: + "HKEY_CURRENT_USER/Software/Dark Pathogen Studios/Slenderman's Shadow v1.3": tags: - config Slice: installDir: SLICE: {} launch: - /SLICE.app: + "/SLICE.app": - when: - os: mac store: steam - /SLICE.exe: + "/SLICE.exe": - when: - os: windows store: steam - /SLICE.x86: + "/SLICE.x86": - when: - bit: 32 os: linux store: steam - /SLICE.x86_64: + "/SLICE.x86_64": - when: - bit: 64 os: linux @@ -477717,7 +478992,7 @@ Slice of Life: installDir: Slice of Life: {} launch: - /Slice_of_Life.exe: + "/Slice_of_Life.exe": - when: - os: windows store: steam @@ -477727,11 +479002,11 @@ Slice the Ice: installDir: Slice the Ice: {} launch: - /Slice the Ice.app/Contents/MacOS/Slice the Ice: + "/Slice the Ice.app/Contents/MacOS/Slice the Ice": - when: - os: mac store: steam - /Slice the Ice.exe: + "/Slice the Ice.exe": - when: - os: windows store: steam @@ -477741,7 +479016,7 @@ Slice&Dice: installDir: Slice&DicePC: {} launch: - /SliceNDicePC.exe: + "/SliceNDicePC.exe": - when: - store: steam steam: @@ -477751,11 +479026,11 @@ Slice&Dice (VR): Slice&Dice: {} steam: id: 637870 -'Slice, Dice & Rice': +"Slice, Dice & Rice": installDir: - 'Slice, Dice & Rice': {} + "Slice, Dice & Rice": {} launch: - /SDR.exe: + "/SDR.exe": - when: - os: windows store: steam @@ -477765,7 +479040,7 @@ Slide Furry Futanari: installDir: Slide Furry Futanari: {} launch: - /Slide Furry Futanari.exe: + "/Slide Furry Futanari.exe": - when: - os: windows store: steam @@ -477775,7 +479050,7 @@ Slide Ride Arcade: installDir: SlideRideArcade: {} launch: - /SlideRide.exe: + "/SlideRide.exe": - when: - os: windows store: steam @@ -477785,7 +479060,7 @@ Slide to finish: installDir: Slide to finish: {} launch: - /SlideToFinish.exe: + "/SlideToFinish.exe": - when: - os: windows store: steam @@ -477795,25 +479070,25 @@ Slide!!: installDir: Slide!!: {} launch: - /Slide!!.app: + "/Slide!!.app": - when: - os: mac store: steam - /Slide!!.exe: + "/Slide!!.exe": - when: - os: windows store: steam - /Slide!!.x86: + "/Slide!!.x86": - when: - os: linux store: steam steam: id: 664190 -'Slide: Platformer': +"Slide: Platformer": installDir: SLIDE platformer: {} launch: - /slide_win32.exe: + "/slide_win32.exe": - when: - os: windows store: steam @@ -477823,7 +479098,7 @@ Slider: installDir: Slider: {} launch: - /Slider.exe: + "/Slider.exe": - when: - os: windows store: steam @@ -477838,7 +479113,7 @@ Sliding Blocks: installDir: Sliding Blocks: {} launch: - /Sliding Blocks.exe: + "/Sliding Blocks.exe": - when: - os: windows store: steam @@ -477848,7 +479123,7 @@ Sliding Fantasy - Fantasy 1: installDir: Sliding Fantasy - Fantasy 1: {} launch: - /Sliding Fantasy - Fantasy 1.exe: + "/Sliding Fantasy - Fantasy 1.exe": - when: - os: windows store: steam @@ -477858,7 +479133,7 @@ Sliding Puzzle Collection: installDir: Sliding Puzzle Collection: {} launch: - /Sliding Puzzle Collection.exe: + "/Sliding Puzzle Collection.exe": - when: - os: windows store: steam @@ -477873,15 +479148,15 @@ Slightly Magic - 8bit Legacy Edition: installDir: SlightlyMagic: {} launch: - /SlightlyMagic.exe: + "/SlightlyMagic.exe": - when: - os: windows store: steam - /nw: + "/nw": - when: - os: linux store: steam - /slightlymagic.app: + "/slightlymagic.app": - when: - bit: 64 os: mac @@ -477895,7 +479170,7 @@ Slime Adventure 2: installDir: Slime Adventure 2: {} launch: - /SlimeAdventure2.exe: + "/SlimeAdventure2.exe": - when: - store: steam steam: @@ -477904,20 +479179,20 @@ Slime Adventure Legacy: installDir: Slime Adventure Legacy: {} launch: - /SlimeAdventureLegacy.exe: + "/SlimeAdventureLegacy.exe": - when: - store: steam steam: id: 1138290 -'Slime Age: Parody MMORPG Clicker': +"Slime Age: Parody MMORPG Clicker": installDir: Slime Age Parody MMORPG Clicker: {} launch: - /SlimeAge.app: + "/SlimeAge.app": - when: - os: mac store: steam - /SlimeAge.exe: + "/SlimeAge.exe": - when: - os: windows store: steam @@ -477927,7 +479202,7 @@ Slime CCG: installDir: Slime CCG: {} launch: - /Slime CCG.exe: + "/Slime CCG.exe": - when: - os: windows store: steam @@ -477937,7 +479212,7 @@ Slime Crunch: installDir: Slime Crunch: {} launch: - /Slime Crunch.exe: + "/Slime Crunch.exe": - when: - store: steam steam: @@ -477946,15 +479221,15 @@ Slime Dad: installDir: Slime Dad: {} launch: - /SlimeDad.app/Contents/MacOS/SlimeDad: + "/SlimeDad.app/Contents/MacOS/SlimeDad": - when: - os: mac store: steam - /SlimeDad.exe: + "/SlimeDad.exe": - when: - os: windows store: steam - /SlimeDad.x86: + "/SlimeDad.x86": - when: - os: linux store: steam @@ -477969,7 +479244,7 @@ Slime Girl Smoothies: installDir: Slime Girl Smoothies: {} launch: - /SlimegirlMixer.exe: + "/SlimegirlMixer.exe": - when: - store: steam steam: @@ -477978,19 +479253,19 @@ Slime Jumper: installDir: Slime Jumper: {} launch: - /jre/Contents/Home/bin/java: - - arguments: '-XstartOnFirstThread -jar SlimeJumper.jar' + "/jre/Contents/Home/bin/java": + - arguments: "-XstartOnFirstThread -jar SlimeJumper.jar" when: - bit: 64 os: mac store: steam - /jre/bin/java: - - arguments: '-jar SlimeJumper.jar' + "/jre/bin/java": + - arguments: "-jar SlimeJumper.jar" when: - os: linux store: steam - /jre/bin/javaw.exe: - - arguments: '-jar SlimeJumper.jar' + "/jre/bin/javaw.exe": + - arguments: "-jar SlimeJumper.jar" when: - os: windows store: steam @@ -478000,7 +479275,7 @@ Slime Kingdom (Po-Jui Huang): installDir: Slime Kingdom: {} launch: - /Slime_Kingdom.exe: + "/Slime_Kingdom.exe": - when: - store: steam steam: @@ -478009,32 +479284,32 @@ Slime Quest: installDir: Slime Quest: {} launch: - /SlimeQuest.exe: + "/SlimeQuest.exe": - when: - store: steam steam: id: 946400 Slime Rancher: files: - /AppData/LocalLow/Monomi Park/Slime Rancher: + "/AppData/LocalLow/Monomi Park/Slime Rancher": tags: - config - save when: - os: windows - /Library/Application Support/Monomi Park/Slime Rancher: + "/Library/Application Support/Monomi Park/Slime Rancher": tags: - config - save when: - os: mac - /Packages/MonomiPark.SlimeRancher_9ahw7gx0g86p2/SystemAppData/wgs: + "/Packages/MonomiPark.SlimeRancher_9ahw7gx0g86p2/SystemAppData/wgs": tags: - save when: - os: windows store: microsoft - /unity3d/Monomi Park/Slime Rancher: + "/unity3d/Monomi Park/Slime Rancher": tags: - config - save @@ -478045,20 +479320,20 @@ Slime Rancher: installDir: Slime Rancher: {} launch: - /Contents/MacOS/SlimeRancher: + "/Contents/MacOS/SlimeRancher": - when: - os: mac store: steam - /SlimeRancher.exe: + "/SlimeRancher.exe": - when: - os: windows store: steam - /SlimeRancher.x86: + "/SlimeRancher.x86": - when: - bit: 32 os: linux store: steam - /SlimeRancher.x86_64: + "/SlimeRancher.x86_64": - when: - bit: 64 os: linux @@ -478067,7 +479342,7 @@ Slime Rancher: id: 433340 Slime Rancher 2: files: - /AppData/LocalLow/MonomiPark/SlimeRancher2: + "/AppData/LocalLow/MonomiPark/SlimeRancher2": tags: - config - save @@ -478076,7 +479351,7 @@ Slime Rancher 2: installDir: Slime Rancher 2: {} launch: - /SlimeRancher2.exe: + "/SlimeRancher2.exe": - when: - bit: 64 os: windows @@ -478087,16 +479362,16 @@ Slime Research: installDir: Slime Research: {} launch: - /SlimeResearch.app: + "/SlimeResearch.app": - when: - os: mac store: steam - /SlimeResearch.exe: + "/SlimeResearch.exe": - when: - bit: 64 os: windows store: steam - /SlimeResearch.x86_64: + "/SlimeResearch.x86_64": - when: - bit: 64 os: linux @@ -478107,11 +479382,11 @@ Slime Simulator Games: installDir: Slime Simulator Games: {} launch: - /Slime Simulator Games/Slime Simulator Games.exe: + "/Slime Simulator Games/Slime Simulator Games.exe": - when: - os: windows store: steam - /SlimeSimulatorGames.app: + "/SlimeSimulatorGames.app": - when: - os: mac store: steam @@ -478121,7 +479396,7 @@ Slime Slam: installDir: Slime Slam: {} launch: - /Slime Slam.exe: + "/Slime Slam.exe": - when: - os: windows store: steam @@ -478131,11 +479406,11 @@ Slime Sports: installDir: DribbleGames: {} launch: - /build-mac.app: + "/build-mac.app": - when: - os: mac store: steam - /slime-soccer-hd.exe: + "/slime-soccer-hd.exe": - when: - os: windows store: steam @@ -478145,7 +479420,7 @@ Slime!!!: installDir: Slime!!!: {} launch: - /Slime!!!.exe: + "/Slime!!!.exe": - when: - os: windows store: steam @@ -478157,92 +479432,92 @@ Slime-san: installDir: Slime-san: {} launch: - /Slime-san.app/Contents/MacOS/Slime-san: + "/Slime-san.app/Contents/MacOS/Slime-san": - when: - os: mac store: steam - /Slime-san.exe: + "/Slime-san.exe": - when: - os: windows store: steam - /Slime-san.x86: + "/Slime-san.x86": - when: - bit: 32 os: linux store: steam - /Slime-san.x86_64: + "/Slime-san.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 473530 -'Slime-san: Blackbird''s Kraken': +"Slime-san: Blackbird's Kraken": installDir: Slime-san Blackbirds Kraken: {} launch: - /Slime-san Blackbirds Kraken.app/Contents/MacOS/Slime-san Blackbirds Kraken: + "/Slime-san Blackbirds Kraken.app/Contents/MacOS/Slime-san Blackbirds Kraken": - when: - os: mac store: steam - /Slime-san Blackbirds Kraken.exe: + "/Slime-san Blackbirds Kraken.exe": - when: - os: windows store: steam - /Slime-san Blackbirds Kraken.x86: + "/Slime-san Blackbirds Kraken.x86": - when: - bit: 32 os: linux store: steam - /Slime-san Blackbirds Kraken.x86_64: + "/Slime-san Blackbirds Kraken.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 649820 -'Slime-san: Creator': +"Slime-san: Creator": installDir: Slime-san Creator: {} launch: - /Slime-san Creator.app/Contents/MacOS/Slime-san Creator: + "/Slime-san Creator.app/Contents/MacOS/Slime-san Creator": - when: - os: mac store: steam - /Slime-san Creator.exe: + "/Slime-san Creator.exe": - when: - os: windows store: steam - /Slime-san Creator.x86: + "/Slime-san Creator.x86": - when: - bit: 32 os: linux store: steam - /Slime-san Creator.x86_64: + "/Slime-san Creator.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 924130 -'Slime-san: Sheeple''s Sequel': +"Slime-san: Sheeple's Sequel": installDir: Slime-san Sheeples Sequel: {} launch: - /Slime-san Sheeples Sequel.app/Contents/MacOS/Slime-san Sheeples Sequel: + "/Slime-san Sheeples Sequel.app/Contents/MacOS/Slime-san Sheeples Sequel": - when: - os: mac store: steam - /Slime-san Sheeples Sequel.exe: + "/Slime-san Sheeples Sequel.exe": - when: - os: windows store: steam - /Slime-san Sheeples Sequel.x86: + "/Slime-san Sheeples Sequel.x86": - when: - bit: 32 os: linux store: steam - /Slime-san Sheeples Sequel.x86_64: + "/Slime-san Sheeples Sequel.x86_64": - when: - bit: 64 os: linux @@ -478253,7 +479528,7 @@ SlimeGear: installDir: SlimeGear: {} launch: - /SlimeGear.exe: + "/SlimeGear.exe": - when: - os: windows store: steam @@ -478263,7 +479538,7 @@ Slimebrawl: installDir: Slimebrawl: {} launch: - /Slimebrawl.exe: + "/Slimebrawl.exe": - when: - os: windows store: steam @@ -478276,23 +479551,23 @@ Sling Ming: installDir: Sling Ming: {} launch: - /Bin/SlingMing32.exe: + "/Bin/SlingMing32.exe": - when: - bit: 32 os: windows store: steam - workingDir: /Bin - /Bin/SlingMing64.exe: + workingDir: "/Bin" + "/Bin/SlingMing64.exe": - when: - bit: 64 os: windows store: steam - workingDir: /Bin - /SlingMing.app/Contents/MacOS/SlingMing: + workingDir: "/Bin" + "/SlingMing.app/Contents/MacOS/SlingMing": - when: - os: mac store: steam - workingDir: /SlingMing.app/Contents/MacOS + workingDir: "/SlingMing.app/Contents/MacOS" steam: id: 489120 SlingSkull Zombies: @@ -478301,13 +479576,13 @@ SlingSkull Zombies: SlingSkull Zombies 2: steam: id: 694040 -'SlingSkull Zombies: Gravedigger': +"SlingSkull Zombies: Gravedigger": steam: id: 694910 -'SlingSkull Zombies: Graveyard Shift': +"SlingSkull Zombies: Graveyard Shift": steam: id: 694900 -'SlingSkull Zombies: The Dawn': +"SlingSkull Zombies: The Dawn": steam: id: 694920 Slinger VR: @@ -478323,11 +479598,11 @@ Slingshot Cowboy VR: Slingshot Cowboy VR: {} steam: id: 681920 -'Slingshot Explorer: The Twelve Towers': +"Slingshot Explorer: The Twelve Towers": installDir: Slingshot Explorer The Twelve Tower: {} launch: - /slingshotexplorer.exe: + "/slingshotexplorer.exe": - when: - os: windows store: steam @@ -478337,7 +479612,7 @@ Slingshot Hero VR: installDir: Slingshot Hero: {} launch: - /Slingshot Hero.exe: + "/Slingshot Hero.exe": - when: - bit: 64 os: windows @@ -478348,7 +479623,7 @@ Slingshot People: installDir: windows_content: {} launch: - /slingshotpeople.exe: + "/slingshotpeople.exe": - when: - os: windows store: steam @@ -478358,11 +479633,11 @@ Slingshot Puzzle: installDir: Slingshot Puzzle: {} launch: - /SlingshotPuzzle.app/Contents/MacOS/SlingshotPuzzle: + "/SlingshotPuzzle.app/Contents/MacOS/SlingshotPuzzle": - when: - os: mac store: steam - /SlingshotPuzzle.exe: + "/SlingshotPuzzle.exe": - when: - os: windows store: steam @@ -478372,16 +479647,16 @@ Slinki: installDir: Slinki: {} launch: - /Slinki.exe: + "/Slinki.exe": - when: - os: windows store: steam - /Slinki.x86: + "/Slinki.x86": - when: - bit: 32 os: linux store: steam - /Slinki.x86_64: + "/Slinki.x86_64": - when: - bit: 64 os: linux @@ -478392,11 +479667,11 @@ Slip: installDir: Slip: {} launch: - /Binaries/Win32/UDK.exe: + "/Binaries/Win32/UDK.exe": - when: - os: windows store: steam - /Slip.app: + "/Slip.app": - when: - os: mac store: steam @@ -478406,20 +479681,20 @@ SlipDrive: installDir: SlipDrive: {} launch: - /Slipdrive.exe: + "/Slipdrive.exe": - when: - store: steam steam: id: 650720 -'SlipSlop: World''s Hardest Platformer Game': +"SlipSlop: World's Hardest Platformer Game": installDir: SlipSlop: {} launch: - /SlipSlop.exe: + "/SlipSlop.exe": - when: - os: windows store: steam - /SlipSlop.x86_64: + "/SlipSlop.x86_64": - when: - os: linux store: steam @@ -478429,11 +479704,11 @@ Slippery Sausage: installDir: Slippery Sausage: {} launch: - /Contents/MacOS/Slippery Sausage: + "/Contents/MacOS/Slippery Sausage": - when: - os: mac store: steam - /Slippery Sausage.exe: + "/Slippery Sausage.exe": - when: - os: windows store: steam @@ -478447,12 +479722,12 @@ Slippy Slug: id: 619520 Slipstream: files: - /ansdorGames/Slipstream: + "/ansdorGames/Slipstream": tags: - config when: - os: windows - /ansdorGames/Slipstream/saves: + "/ansdorGames/Slipstream/saves": tags: - save when: @@ -478462,12 +479737,14 @@ Slipstream: installDir: Slipstream: {} launch: - /slipstream: + "/slipstream": - when: + - os: mac + store: steam - bit: 64 os: linux store: steam - /slipstream.exe: + "/slipstream.exe": - when: - os: windows store: steam @@ -478475,17 +479752,17 @@ Slipstream: id: 732810 Slipstream 5000: files: - /CONFIG.INI: + "/CONFIG.INI": tags: - config when: - os: dos - /SLIPSTRM.CFG: + "/SLIPSTRM.CFG": tags: - config when: - os: dos - /SLIPSTRM.SAV: + "/SLIPSTRM.SAV": tags: - save when: @@ -478495,20 +479772,20 @@ Slipstream 5000: installDir: Slipstream 5000: {} launch: - /dosbox.exe: - - arguments: ' -conf SS5000.conf' + "/dosbox.exe": + - arguments: " -conf SS5000.conf" when: - store: steam steam: id: 306350 Slipways: files: - /AppData/LocalLow/Beetlewing/Slipways/saves: + "/AppData/LocalLow/Beetlewing/Slipways/saves": tags: - save when: - os: windows - /Library/Application Support/Beetlewing/Slipways/saves: + "/Library/Application Support/Beetlewing/Slipways/saves": tags: - save when: @@ -478518,19 +479795,19 @@ Slipways: installDir: Slipways: {} launch: - /Slipways.app: + "/Slipways.app": - when: - os: mac store: steam - - arguments: '-low' + - arguments: "-low" when: - os: mac store: steam - /Slipways.exe: + "/Slipways.exe": - when: - os: windows store: steam - - arguments: '-low' + - arguments: "-low" when: - os: windows store: steam @@ -478540,7 +479817,7 @@ Slither Link: installDir: Slither_Link: {} launch: - /SlitherLink.exe: + "/SlitherLink.exe": - when: - os: windows store: steam @@ -478558,13 +479835,13 @@ Sloppy Goat: installDir: Sloppy Goat: {} launch: - /Sloppy goat.exe: + "/Sloppy goat.exe": - when: - os: windows store: steam steam: id: 823360 -'Slordax: The Unknown Enemy': +"Slordax: The Unknown Enemy": gog: id: 1855221507 installDir: @@ -478575,36 +479852,36 @@ Sloth Quest: installDir: Sloth Quest: {} launch: - /SlothQuest.exe: + "/SlothQuest.exe": - when: - bit: 64 os: windows store: steam steam: id: 1141300 -'Sloth: Heart to Heart': +"Sloth: Heart to Heart": installDir: Heart to Heart: {} launch: - /H2H.exe: + "/H2H.exe": - when: - os: windows store: steam steam: id: 1015100 -'Slow Down, Bull': +"Slow Down, Bull": installDir: - 'Slow Down, Bull': {} + "Slow Down, Bull": {} launch: - /SlowDownBull.app: + "/SlowDownBull.app": - when: - os: mac store: steam - /SlowDownBull.exe: + "/SlowDownBull.exe": - when: - os: windows store: steam - /SlowDownBull.x86: + "/SlowDownBull.x86": - when: - os: linux store: steam @@ -478614,7 +479891,7 @@ Slow.Bullet VR: installDir: Slow.Bullet VR: {} launch: - /SlowBulletVR.exe: + "/SlowBulletVR.exe": - when: - os: windows store: steam @@ -478624,20 +479901,20 @@ Slowdrive: installDir: Slowdrive: {} launch: - /Slowdrive.app: + "/Slowdrive.app": - when: - os: mac store: steam - /Slowdrive.exe: + "/Slowdrive.exe": - when: - os: windows store: steam - /Slowdrive.x86: + "/Slowdrive.x86": - when: - bit: 32 os: linux store: steam - /Slowdrive.x86_64: + "/Slowdrive.x86_64": - when: - bit: 64 os: linux @@ -478646,7 +479923,7 @@ Slowdrive: id: 592300 Sludge Life: files: - /save.txt: + "/save.txt": tags: - save when: @@ -478656,11 +479933,11 @@ Sludge Life: installDir: Sludge Life: {} launch: - /SludgeLife.app: + "/SludgeLife.app": - when: - os: mac store: steam - /SludgeLife.exe: + "/SludgeLife.exe": - when: - os: windows store: steam @@ -478672,7 +479949,7 @@ Sludge Life: id: 1144770 Sludge Life 2: files: - /*.txt: + "/*.txt": tags: - save when: @@ -478682,7 +479959,7 @@ Sludge Life 2: installDir: SLUDGE LIFE 2: {} launch: - /SludgeLife2.exe: + "/SludgeLife2.exe": - when: - os: windows store: steam @@ -478694,17 +479971,17 @@ Slug Blast: Slug Slasher: steam: id: 823590 -'Sluggish Morss: Days of the Purple Sun': +"Sluggish Morss: Days of the Purple Sun": installDir: Sluggish Morss Days of the Purple Sun: {} launch: - /sluggishmorssdaysofthepurplesun.exe: + "/sluggishmorssdaysofthepurplesun.exe": - when: - os: windows store: steam steam: id: 546440 -Sluggy's Fruit Emporium: +"Sluggy's Fruit Emporium": steam: id: 447330 Slugs Destroyer: @@ -478719,7 +479996,7 @@ Slumlord Simulator: installDir: Slumlord Simulator: {} launch: - /SlumLord_Simulator.exe: + "/SlumLord_Simulator.exe": - when: - os: windows store: steam @@ -478728,25 +480005,28 @@ Slumlord Simulator: Sly Pigs: steam: id: 999170 -'Slybots: Frantic Zone': +"Slybots: Frantic Zone": installDir: Slybots Frantic Zone: {} launch: - /Slybots.app: + "/Slybots.app": - when: - os: mac store: steam - /Slybots.exe: + "/Slybots.exe": - when: - bit: 32 os: windows store: steam - /Slybots.x86: + - bit: 64 + os: windows + store: steam + "/Slybots.x86": - when: - bit: 32 os: linux store: steam - /Slybots.x86_64: + "/Slybots.x86_64": - when: - bit: 64 os: linux @@ -478757,11 +480037,11 @@ Slymes: installDir: Slymes: {} launch: - /Slymes.app: + "/Slymes.app": - when: - os: mac store: steam - /Slymes.exe: + "/Slymes.exe": - when: - os: windows store: steam @@ -478771,11 +480051,11 @@ Smackhead: installDir: SMACKHEAD: {} launch: - /SMACKHEAD: + "/SMACKHEAD": - when: - os: linux store: steam - /SMACKHEAD.exe: + "/SMACKHEAD.exe": - when: - os: windows store: steam @@ -478793,7 +480073,7 @@ Small Radios Big Televisions: installDir: Small Radios Big Televisions: {} launch: - /SRBT.exe: + "/SRBT.exe": - when: - os: windows store: steam @@ -478803,48 +480083,48 @@ Small Sister: installDir: Small Sister: {} launch: - /sister.exe: + "/sister.exe": - when: - os: windows store: steam steam: id: 904600 -'Small Town Terrors: Galdor''s Bluff': +"Small Town Terrors: Galdor's Bluff": installDir: - Small Town Terrors Galdor's Bluff Collector's Edition: {} + "Small Town Terrors Galdor's Bluff Collector's Edition": {} launch: - /SmallTownTerrors_GaldorsBluff_CE.exe: + "/SmallTownTerrors_GaldorsBluff_CE.exe": - when: - os: windows store: steam steam: id: 432760 -'Small Town Terrors: Livingston': +"Small Town Terrors: Livingston": installDir: Small Town Terrors Livingston: {} launch: - /SmallTownTerrors_Livingston.exe: + "/SmallTownTerrors_Livingston.exe": - when: - store: steam steam: id: 432770 -'Small Town Terrors: Pilgrim''s Hook': +"Small Town Terrors: Pilgrim's Hook": installDir: Small Town Terrors Pilgrims Hook CE: {} launch: - /SmallTownTerrors_PilgrimsHookCE.exe: + "/SmallTownTerrors_PilgrimsHookCE.exe": - when: - store: steam steam: id: 302110 Small World: files: - /Days of Wonder/SmallWorld/*_SavedGame.pbbin: + "/Days of Wonder/SmallWorld/*_SavedGame.pbbin": tags: - save when: - os: windows - /Days of Wonder/SmallWorld/UserDefault.xml: + "/Days of Wonder/SmallWorld/UserDefault.xml": tags: - config when: @@ -478852,17 +480132,17 @@ Small World: installDir: SmallWorld2: {} launch: - /Small World 2: + "/Small World 2": - arguments: steam when: - os: linux store: steam - /Small World.app/Contents/MacOS/Small World: + "/Small World.app/Contents/MacOS/Small World": - arguments: steam when: - os: mac store: steam - /SmallWorld.exe: + "/SmallWorld.exe": - arguments: steam when: - os: windows @@ -478873,7 +480153,7 @@ Small person: installDir: Small person: {} launch: - /TwoNightsOneday.exe: + "/TwoNightsOneday.exe": - when: - bit: 64 os: windows @@ -478882,15 +480162,16 @@ Small person: id: 859460 Smalland: files: - /SMALLAND/Saved/Config/WindowsNoEditor: + "/SMALLAND/Saved/Config/WindowsNoEditor": tags: - config when: - - store: steam + - os: windows + store: steam installDir: SMALLAND: {} launch: - /SMALLAND.exe: + "/SMALLAND.exe": - when: - bit: 64 os: windows @@ -478901,7 +480182,7 @@ Smaller: installDir: Smaller: {} launch: - /Smaller.exe: + "/Smaller.exe": - when: - os: windows store: steam @@ -478913,7 +480194,7 @@ Smart City Plan: installDir: Smart City Plan: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -478923,7 +480204,7 @@ Smart Cube: installDir: Smart Cube: {} launch: - /SmartCube/Binaries/Win64/SmartCube-Win64-Shipping.exe: + "/SmartCube/Binaries/Win64/SmartCube-Win64-Shipping.exe": - when: - os: windows store: steam @@ -478936,7 +480217,7 @@ Smart Factory Tycoon: installDir: Smart Factory Tycoon: {} launch: - /ToysWorkshop.exe: + "/ToysWorkshop.exe": - when: - bit: 64 os: windows @@ -478947,7 +480228,7 @@ Smart Gecko: installDir: Smart Gecko: {} launch: - /SmartGecko.exe: + "/SmartGecko.exe": - when: - os: windows store: steam @@ -478957,7 +480238,7 @@ Smart Junior Academy - Autumn: installDir: Smart Junior Academy: {} launch: - /sja_autumn.exe: + "/sja_autumn.exe": - when: - bit: 32 os: windows @@ -478968,7 +480249,7 @@ Smart Junior Academy - Spring: installDir: Smart Junior Academy - Spring: {} launch: - /sja_spring.exe: + "/sja_spring.exe": - when: - bit: 32 os: windows @@ -478979,7 +480260,7 @@ Smart Moves: installDir: Smart Moves: {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: @@ -478991,7 +480272,7 @@ SmartBoy: installDir: SmartBoy: {} launch: - /SmartBoy.exe: + "/SmartBoy.exe": - when: - os: windows store: steam @@ -479001,7 +480282,7 @@ Smartphone Tycoon: installDir: Smartphone Tycoon: {} launch: - /Smartphone Tycoon.exe: + "/Smartphone Tycoon.exe": - when: - os: windows store: steam @@ -479011,7 +480292,7 @@ SmartyTale 2D: installDir: SmartyTale 2D: {} launch: - /smtale2d.exe: + "/smtale2d.exe": - when: - os: windows store: steam @@ -479021,7 +480302,7 @@ Smash Bash Crash: installDir: Smash Bash Crash: {} launch: - /SBC.exe: + "/SBC.exe": - when: - os: windows store: steam @@ -479031,7 +480312,7 @@ Smash Boy Ver.KZ: installDir: SMASHBOY_KZ: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -479041,10 +480322,10 @@ Smash Cars: installDir: Smash Cars: {} launch: - /SCGamepadConfigLauncher.exe: + "/SCGamepadConfigLauncher.exe": - when: - store: steam - /SmashCars.exe: + "/SmashCars.exe": - when: - store: steam steam: @@ -479053,20 +480334,20 @@ Smash Dungeon: installDir: Smash Dungeon: {} launch: - /SmashDungeon.exe: + "/SmashDungeon.exe": - when: - store: steam steam: id: 1144130 -'Smash Halloween Pumpkins: The Challenge': +"Smash Halloween Pumpkins: The Challenge": installDir: Smash Halloween Pumpkins The Challenge: {} launch: - /SmashHalloweenPumpkinsTheChallenge: + "/SmashHalloweenPumpkinsTheChallenge": - when: - os: linux store: steam - /SmashHalloweenPumpkinsTheChallenge.exe: + "/SmashHalloweenPumpkinsTheChallenge.exe": - when: - os: windows store: steam @@ -479076,7 +480357,7 @@ Smash It: installDir: Junk Smasher: {} launch: - /SMASH IT.exe: + "/SMASH IT.exe": - when: - os: windows store: steam @@ -479086,7 +480367,7 @@ Smash Legends: installDir: Smash Legends: {} launch: - /Smash_Legends.exe: + "/Smash_Legends.exe": - when: - bit: 64 os: windows @@ -479102,18 +480383,18 @@ Smash Pixel Racing: installDir: Smash Pixel Racing: {} launch: - /SmashPixelRacing: - - arguments: '-window' + "/SmashPixelRacing": + - arguments: "-window" when: - os: linux store: steam - /SmashPixelRacing.exe: - - arguments: '-window' + "/SmashPixelRacing.exe": + - arguments: "-window" when: - os: windows store: steam - /smashpixelracing.app: - - arguments: '-window' + "/smashpixelracing.app": + - arguments: "-window" when: - os: mac store: steam @@ -479123,7 +480404,7 @@ Smash Team: installDir: Smash team: {} launch: - /Smash team.exe: + "/Smash team.exe": - when: - os: windows store: steam @@ -479133,19 +480414,19 @@ Smash Up: installDir: Smash Up: {} launch: - /SmashUp.exe: + "/SmashUp.exe": - when: - store: steam steam: id: 446540 Smash up Derby: files: - /RenderEngines: + "/RenderEngines": tags: - save when: - os: windows - /resources/save: + "/resources/save": tags: - save when: @@ -479154,7 +480435,7 @@ Smash+Grab: installDir: SMASH+GRAB: {} launch: - /Bootstrapper.exe: + "/Bootstrapper.exe": - arguments: ufgruntime.exe -authmethod session -ui_mode on -logFile UFGRuntime_log.txt when: - store: steam @@ -479167,8 +480448,8 @@ Smashball: installDir: Source SDK Base 2007: {} launch: - /hl2.exe: - - arguments: '-game smashball' + "/hl2.exe": + - arguments: "-game smashball" when: - store: steam steam: @@ -479185,7 +480466,7 @@ Smashing the Battle: installDir: SMASHING THE BATTLE: {} launch: - /STB.exe: + "/STB.exe": - when: - os: windows store: steam @@ -479204,11 +480485,11 @@ Smashmuck Champions: installDir: TGT Season 2: {} launch: - /TGT.app/Contents/MacOS/TGT: + "/TGT.app/Contents/MacOS/TGT": - when: - os: mac store: steam - /TGT.exe: + "/TGT.exe": - when: - os: windows store: steam @@ -479225,7 +480506,7 @@ Smelter: installDir: Smelter: {} launch: - /Smelter.exe: + "/Smelter.exe": - when: - os: windows store: steam @@ -479235,19 +480516,19 @@ Smile To Fly: installDir: Smile To Fly: {} launch: - /STF.exe: + "/STF.exe": - when: - store: steam steam: id: 1164330 Smile for Me: files: - /AppData/LocalLow/LimboLane/Smile For Me/*.dat: + "/AppData/LocalLow/LimboLane/Smile For Me/*.dat": tags: - save when: - os: windows - /AppData/LocalLow/LimboLane/Smile For Me/MetaSave/*.dat: + "/AppData/LocalLow/LimboLane/Smile For Me/MetaSave/*.dat": tags: - save when: @@ -479255,21 +480536,21 @@ Smile for Me: installDir: Smile For Me: {} launch: - /Smile For Me.exe: + "/Smile For Me.exe": - when: - os: windows store: steam - /SmileForMe.app/Contents/MacOS/SmileForMe: + "/SmileForMe.app/Contents/MacOS/SmileForMe": - when: - os: mac store: steam steam: id: 1018850 -Smile'N'Slide: +"Smile'N'Slide": installDir: - Smile'N'Slide: {} + "Smile'N'Slide": {} launch: - /PLAY.exe: + "/PLAY.exe": - when: - os: windows store: steam @@ -479279,14 +480560,14 @@ Smisl 2 gravity: installDir: infinity pipe: {} launch: - /levels maker uu smils 2.exe: + "/levels maker uu smils 2.exe": - when: - store: steam steam: id: 1072720 Smite: files: - /My Games/Smite/BattleGame/Config: + "/My Games/Smite/BattleGame/Config": tags: - config when: @@ -479297,7 +480578,7 @@ Smite: id: 386360 Smith and Winston: files: - /data/settings.ini: + "/data/settings.ini": tags: - config when: @@ -479306,16 +480587,16 @@ Smith and Winston: installDir: Smith and Winston: {} launch: - /SmithAndWinston: + "/SmithAndWinston": - when: - bit: 64 os: linux store: steam - /SmithAndWinston.app/Contents/MacOS/SmithAndWinston: + "/SmithAndWinston.app/Contents/MacOS/SmithAndWinston": - when: - os: mac store: steam - /SmithAndWinston.exe: + "/SmithAndWinston.exe": - when: - bit: 64 os: windows @@ -479326,7 +480607,7 @@ Smithy: installDir: Smithy: {} launch: - /smithy.exe: + "/smithy.exe": - when: - os: windows store: steam @@ -479336,7 +480617,7 @@ Smogland: installDir: Smogland: {} launch: - /Smogpunk.exe: + "/Smogpunk.exe": - when: - bit: 64 os: windows @@ -479348,7 +480629,7 @@ Smogpunk 湮霾之地: id: 918160 Smoke and Sacrifice: files: - /AppData/LocalLow/Solar Sail Games/Smoke and Sacrifice: + "/AppData/LocalLow/Solar Sail Games/Smoke and Sacrifice": tags: - save when: @@ -479356,7 +480637,7 @@ Smoke and Sacrifice: installDir: Smoke and Sacrifice: {} launch: - /shade.exe: + "/shade.exe": - when: - store: steam steam: @@ -479365,7 +480646,7 @@ Smoker The Car Game: installDir: Smoker The Car Game: {} launch: - /SmokersCar.exe: + "/SmokersCar.exe": - when: - store: steam steam: @@ -479374,24 +480655,24 @@ Smooth Mover: installDir: Smooth Mover: {} launch: - /Contents/MacOS/Mac: + "/Contents/MacOS/Mac": - when: - os: mac store: steam - /Smooth Mover.exe: + "/Smooth Mover.exe": - when: - os: windows store: steam steam: id: 1121120 -'Smooth Operators: Call Center Chaos': +"Smooth Operators: Call Center Chaos": files: - /SOCCC/SaveGames: + "/SOCCC/SaveGames": tags: - save when: - os: windows - /SOCCC/settings: + "/SOCCC/settings": tags: - config when: @@ -479399,7 +480680,7 @@ Smooth Mover: installDir: SmoothOperators: {} launch: - /Smooth Operators.exe: + "/Smooth Operators.exe": - when: - os: windows store: steam @@ -479414,11 +480695,11 @@ Smoots World Cup Tennis: installDir: Smoots World Cup Tennis: {} launch: - /SmootsTennisMac.app: + "/SmootsTennisMac.app": - when: - os: mac store: steam - /SmootsWCT.exe: + "/SmootsWCT.exe": - when: - os: windows store: steam @@ -479431,21 +480712,21 @@ SmuggleCraft: installDir: SmuggleCraft: {} launch: - /SmuggleCraft.app: + "/SmuggleCraft.app": - when: - os: mac store: steam - /SmuggleCraft.exe: - - arguments: '-show-screen-selector' + "/SmuggleCraft.exe": + - arguments: "-show-screen-selector" when: - os: windows store: steam - /SmuggleCraft.x86: + "/SmuggleCraft.x86": - when: - bit: 32 os: linux store: steam - /SmuggleCraft.x86_64: + "/SmuggleCraft.x86_64": - when: - bit: 64 os: linux @@ -479458,19 +480739,19 @@ Smugglers V: installDir: Smugglers5: {} launch: - /Smugglers5.exe: + "/Smugglers5.exe": - when: - os: windows store: steam steam: id: 291450 -'Smugglers V: Invasion': +"Smugglers V: Invasion": gog: id: 1207666453 installDir: Smugglers 5 Invasion: {} launch: - /Smugglers5Invasion.exe: + "/Smugglers5Invasion.exe": - when: - store: steam steam: @@ -479479,7 +480760,7 @@ Smurfs Kart: installDir: Smurfs Kart: {} launch: - /Smurfs Kart.exe: + "/Smurfs Kart.exe": - when: - store: steam steam: @@ -479488,7 +480769,7 @@ Smush: installDir: Smush: {} launch: - /Smush.exe: + "/Smush.exe": - when: - os: windows store: steam @@ -479496,12 +480777,12 @@ Smush: id: 1089250 Smushi Come Home: files: - /AppData/LocalLow/SomeHumbleOnion/Smushi Come Home: + "/AppData/LocalLow/SomeHumbleOnion/Smushi Come Home": tags: - save when: - os: windows - /Library/Application Support/SomeHumbleOnion/Smushi Come Home: + "/Library/Application Support/SomeHumbleOnion/Smushi Come Home": tags: - save when: @@ -479511,11 +480792,11 @@ Smushi Come Home: installDir: Smushi Come Home: {} launch: - /Smushi Come Home.app: + "/Smushi Come Home.app": - when: - os: mac store: steam - /Smushi Come Home.exe: + "/Smushi Come Home.exe": - when: - os: windows store: steam @@ -479525,20 +480806,20 @@ SnL: installDir: SnL: {} launch: - /SnL.exe: + "/SnL.exe": - when: - store: steam steam: id: 1147200 -'Snail Bob 2: Tiny Troubles': +"Snail Bob 2: Tiny Troubles": installDir: SnailBob2: {} launch: - /SnailBob2.app: + "/SnailBob2.app": - when: - os: mac store: steam - /SnailBob2.exe: + "/SnailBob2.exe": - when: - os: windows store: steam @@ -479548,29 +480829,29 @@ Snail Racer Extreme: installDir: Snail Racer EXTREME: {} launch: - /Snail_Racer_Extreme: + "/Snail_Racer_Extreme": - when: - os: linux store: steam - /Snail_Racer_Extreme.exe: + "/Snail_Racer_Extreme.exe": - when: - os: windows store: steam steam: id: 854150 -'Snail Trek - Chapter 1: Intershellar': +"Snail Trek - Chapter 1: Intershellar": installDir: Snail Trek Chapter 1: {} launch: - /SnailTrek.app: + "/SnailTrek.app": - when: - os: mac store: steam - /SnailTrek.exe: + "/SnailTrek.exe": - when: - os: windows store: steam - /SnailTrek.x86_64: + "/SnailTrek.x86_64": - when: - bit: 64 os: linux @@ -479582,57 +480863,57 @@ Snail Racer Extreme: - save steam: id: 751280 -'Snail Trek - Chapter 2: A Snail of Two Worlds': +"Snail Trek - Chapter 2: A Snail of Two Worlds": installDir: Snail Trek Chapter 2: {} launch: - /SnailTrek2.app: + "/SnailTrek2.app": - when: - os: mac store: steam - /SnailTrek2.exe: + "/SnailTrek2.exe": - when: - os: windows store: steam - /SnailTrek2.x86_64: + "/SnailTrek2.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 756320 -'Snail Trek - Chapter 3: Lettuce Be': +"Snail Trek - Chapter 3: Lettuce Be": installDir: Snail Trek Chapter 3: {} launch: - /SnailTrek3.app: + "/SnailTrek3.app": - when: - os: mac store: steam - /SnailTrek3.exe: + "/SnailTrek3.exe": - when: - os: windows store: steam - /SnailTrek3.x86_64: + "/SnailTrek3.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 761480 -'Snail Trek - Chapter 4: The Final Fondue': +"Snail Trek - Chapter 4: The Final Fondue": installDir: Snail Trek 4: {} launch: - /SnailTrek4.app: + "/SnailTrek4.app": - when: - os: mac store: steam - /SnailTrek4.exe: + "/SnailTrek4.exe": - when: - os: windows store: steam - /SnailTrek4.x86_64: + "/SnailTrek4.x86_64": - when: - bit: 64 os: linux @@ -479648,7 +480929,7 @@ Snails: installDir: Snails: {} launch: - /snails.exe: + "/snails.exe": - when: - bit: 32 os: windows @@ -479658,14 +480939,14 @@ Snails: SnakEscape: steam: id: 409440 -'SnakEscape: Remastered': +"SnakEscape: Remastered": steam: id: 1188190 Snake 3D Adventures: installDir: Snake3D: {} launch: - /Snake3D.exe: + "/Snake3D.exe": - when: - store: steam steam: @@ -479674,15 +480955,15 @@ Snake Blocks: installDir: Snake Blocks: {} launch: - /SnakeBlocks.app: + "/SnakeBlocks.app": - when: - os: mac store: steam - /SnakeBlocks.exe: + "/SnakeBlocks.exe": - when: - os: windows store: steam - /SnakeBlocks.x86: + "/SnakeBlocks.x86": - when: - os: linux store: steam @@ -479692,20 +480973,20 @@ Snake Charmer - TPS Snek: installDir: Snake Charmer: {} launch: - /snake_linux.x86: + "/snake_linux.x86": - when: - bit: 32 os: linux store: steam - /snake_linux.x86_64: + "/snake_linux.x86_64": - when: - os: linux store: steam - /snake_osx100.app/Contents/MacOS/snake_osx100: + "/snake_osx100.app/Contents/MacOS/snake_osx100": - when: - os: mac store: steam - /snake_win_100.exe: + "/snake_win_100.exe": - when: - os: windows store: steam @@ -479715,7 +480996,7 @@ Snake Classic: installDir: Snake Classic: {} launch: - /Snake Classic.exe: + "/Snake Classic.exe": - when: - store: steam steam: @@ -479727,7 +481008,7 @@ Snake Cubed: installDir: SnakeCubed: {} launch: - /SnakeCubed.exe: + "/SnakeCubed.exe": - when: - os: windows store: steam @@ -479737,7 +481018,7 @@ Snake Eyes Dungeon: installDir: Snake Eyes Dungeon: {} launch: - /Snake Eyes Dungeon.exe: + "/Snake Eyes Dungeon.exe": - when: - os: windows store: steam @@ -479747,11 +481028,11 @@ Snake Party: installDir: Snake Party: {} launch: - /Snake_Party.exe: + "/Snake_Party.exe": - when: - os: windows store: steam - /run.sh: + "/run.sh": - when: - os: linux store: steam @@ -479759,24 +481040,24 @@ Snake Party: id: 576660 Snake Pass: files: - /Packages/SumoDigitalLtd.48576635C2674_fxgztw5m4nn00/LocalState: + "/Packages/SumoDigitalLtd.48576635C2674_fxgztw5m4nn00/LocalState": tags: - config when: - os: windows store: microsoft - /Packages/SumoDigitalLtd.48576635C2674_fxgztw5m4nn00/SystemAppData/wgs: + "/Packages/SumoDigitalLtd.48576635C2674_fxgztw5m4nn00/SystemAppData/wgs": tags: - save when: - os: windows store: microsoft - /SnakeSimulator/Saved/Config/WindowsNoEditor: + "/SnakeSimulator/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /SnakeSimulator/Saved/SaveGames: + "/SnakeSimulator/Saved/SaveGames": tags: - save when: @@ -479784,7 +481065,7 @@ Snake Pass: installDir: Snake Pass: {} launch: - /SnakePass.exe: + "/SnakePass.exe": - when: - bit: 64 os: windows @@ -479795,7 +481076,7 @@ Snake Treasure Chest: installDir: Snake Treasure Chest: {} launch: - /SnakeTC.exe: + "/SnakeTC.exe": - when: - os: windows store: steam @@ -479805,7 +481086,7 @@ Snake VR: installDir: Snake VR: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -479818,46 +481099,46 @@ Snake vs Snake: installDir: Snake vs Snake: {} launch: - /Contents/MacOS/SnakeVsSnake_Mac: + "/Contents/MacOS/SnakeVsSnake_Mac": - when: - os: mac store: steam - /Snake vs Snake.exe: + "/Snake vs Snake.exe": - when: - os: windows store: steam - /SnakevsSnake.x86_64: + "/SnakevsSnake.x86_64": - when: - os: linux store: steam steam: id: 1005310 -'Snake, Snake, Snake!': +"Snake, Snake, Snake!": installDir: - 'Snake, snake, snake!': {} + "Snake, snake, snake!": {} launch: - /SnakeSnakeSnake/Binaries/Win64/SnakeSnakeSnake.exe: + "/SnakeSnakeSnake/Binaries/Win64/SnakeSnakeSnake.exe": - when: - bit: 64 os: windows store: steam steam: id: 857140 -'Snake: Road to apple': +"Snake: Road to apple": installDir: Snake Road to apple: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam steam: id: 731230 -'Snake: The Elder Forest': +"Snake: The Elder Forest": installDir: The Elder Forest: {} launch: - /Snake.exe: + "/Snake.exe": - arguments: Snake -fullscreen when: - os: windows @@ -479866,22 +481147,22 @@ Snake vs Snake: id: 1152640 Snakebird: files: - /SavesDir/*.dat: + "/SavesDir/*.dat": tags: - config when: - os: windows - /SavesDir/*.sav: + "/SavesDir/*.sav": tags: - save when: - os: windows - /.config/unity3d/Noumenon Games: + "/.config/unity3d/Noumenon Games": tags: - config when: - os: linux - /.config/unity3d/Noumenon Games/SavesDir: + "/.config/unity3d/Noumenon Games/SavesDir": tags: - save when: @@ -479889,15 +481170,15 @@ Snakebird: installDir: Snakebird: {} launch: - /Snakebird.app: + "/Snakebird.app": - when: - os: mac store: steam - /Snakebird.exe: + "/Snakebird.exe": - when: - os: windows store: steam - /Snakebird.x86: + "/Snakebird.x86": - when: - os: linux store: steam @@ -479909,13 +481190,13 @@ Snakebird: id: 357300 Snakebird Primer: files: - /SavesDir: + "/SavesDir": tags: - save when: - os: windows - os: linux - /unity3d/Noumenon Games/Snakebird Primer: + "/unity3d/Noumenon Games/Snakebird Primer": tags: - config when: @@ -479923,15 +481204,15 @@ Snakebird Primer: installDir: Snakebird Primer: {} launch: - /SnakebirdPrimer.app: + "/SnakebirdPrimer.app": - when: - os: mac store: steam - /SnakebirdPrimer.exe: + "/SnakebirdPrimer.exe": - when: - os: windows store: steam - /SnakebirdPrimer.x86: + "/SnakebirdPrimer.x86": - when: - os: linux store: steam @@ -479941,7 +481222,7 @@ Snakeez: installDir: Snakeez: {} launch: - /Snakeez.exe: + "/Snakeez.exe": - when: - os: windows store: steam @@ -479951,22 +481232,25 @@ Snakelike: installDir: Snakelike: {} launch: - /Snakelike.app: + "/Snakelike.app": - when: - os: mac store: steam - /Snakelike.exe: + "/Snakelike.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam steam: id: 845110 -'Snakes - N - Ladders: Origins - Episode 1': +"Snakes - N - Ladders: Origins - Episode 1": installDir: SnakesNLadders Origins Ep1: {} launch: - /SnakesNLadders Origins Ep1/SnakesNLadders.exe: + "/SnakesNLadders Origins Ep1/SnakesNLadders.exe": - when: - bit: 64 os: windows @@ -479982,19 +481266,19 @@ Snakest: installDir: Snakest: {} launch: - /Snakest.exe: + "/Snakest.exe": - when: - store: steam steam: id: 940350 Snakeybus: files: - /Snakeybus: + "/Snakeybus": tags: - config when: - os: windows - /Snakeybus/saves: + "/Snakeybus/saves": tags: - save when: @@ -480002,11 +481286,11 @@ Snakeybus: installDir: Snakeybus: {} launch: - /snakeybus.app: + "/snakeybus.app": - when: - os: mac store: steam - /snakeybus.exe: + "/snakeybus.exe": - when: - os: windows store: steam @@ -480014,7 +481298,7 @@ Snakeybus: id: 1012560 Snaliens: files: - /AppData/LocalLow/JFerreira/Snaliens: + "/AppData/LocalLow/JFerreira/Snaliens": tags: - save when: @@ -480022,11 +481306,11 @@ Snaliens: installDir: Snaliens: {} launch: - /Snaliens.exe: + "/Snaliens.exe": - when: - os: windows store: steam - /Snaliens.x86_64: + "/Snaliens.x86_64": - when: - os: linux store: steam @@ -480039,7 +481323,7 @@ Snappy Turtle Ultimate: installDir: Snappy Turtle Ultimate: {} launch: - /Snappy_Turtle_Ultimate.exe: + "/Snappy_Turtle_Ultimate.exe": - when: - os: windows store: steam @@ -480047,18 +481331,18 @@ Snappy Turtle Ultimate: id: 670240 Snapshot: files: - /Documents/Snapshot: + "/Documents/Snapshot": tags: - config - save when: - os: windows - /Snapshot: + "/Snapshot": tags: - config when: - os: linux - /Snapshot: + "/Snapshot": tags: - save when: @@ -480068,15 +481352,15 @@ Snapshot: installDir: snapshot: {} launch: - /Snapshot.app: + "/Snapshot.app": - when: - os: mac store: steam - /snapshot: + "/snapshot": - when: - os: linux store: steam - /snapshot.exe: + "/snapshot.exe": - when: - os: windows store: steam @@ -480086,7 +481370,7 @@ Snares of Ruin: installDir: Snares of Ruin: {} launch: - /SnaresOfRuin.exe: + "/SnaresOfRuin.exe": - when: - os: windows store: steam @@ -480096,7 +481380,7 @@ Snares of Ruin 2: installDir: Snares of Ruin 2: {} launch: - /SoR2.exe: + "/SoR2.exe": - when: - os: windows store: steam @@ -480106,7 +481390,7 @@ Snares of Ruin Zero: installDir: Snares of Ruin Zero: {} launch: - /SoR_Zero.exe: + "/SoR_Zero.exe": - when: - os: windows store: steam @@ -480116,33 +481400,33 @@ SnarfQuest Tales: installDir: SnarfQuest Tales: {} launch: - /SnarfQuest_Tales.app/Contents/MacOS/SnarfQuest_Tales: + "/SnarfQuest_Tales.app/Contents/MacOS/SnarfQuest_Tales": - when: - os: mac store: steam - /SnarfQuest_Tales.exe: + "/SnarfQuest_Tales.exe": - when: - os: windows store: steam - /SnarfQuest_Tales.x86_64: + "/SnarfQuest_Tales.x86_64": - when: - os: linux store: steam steam: id: 372340 -'SnarfQuest Tales, Episode 1: The Beginning': +"SnarfQuest Tales, Episode 1: The Beginning": installDir: - 'SnarfQuest Tales, Episode 1 The Beginning': {} + "SnarfQuest Tales, Episode 1 The Beginning": {} launch: - /SnarfQuest_Tales.app/Contents/MacOS/SnarfQuest_Tales: + "/SnarfQuest_Tales.app/Contents/MacOS/SnarfQuest_Tales": - when: - os: mac store: steam - /SnarfQuest_Tales.exe: + "/SnarfQuest_Tales.exe": - when: - os: windows store: steam - /SnarfQuest_Tales.x86_64: + "/SnarfQuest_Tales.x86_64": - when: - os: linux store: steam @@ -480152,20 +481436,20 @@ Sneak In: installDir: Sneak In: {} launch: - /SneakIn.app: + "/SneakIn.app": - when: - os: mac store: steam - /SneakIn.sh: + "/SneakIn.sh": - when: - os: linux store: steam - /SneakIn32.exe: + "/SneakIn32.exe": - when: - bit: 32 os: windows store: steam - /SneakIn64.exe: + "/SneakIn64.exe": - when: - bit: 64 os: windows @@ -480176,7 +481460,7 @@ Sneak Thief: installDir: Sneak Thief: {} launch: - /SneakThief01.exe: + "/SneakThief01.exe": - when: - os: windows store: steam @@ -480190,7 +481474,7 @@ Sneaker: installDir: Sneaker: {} launch: - /Sneaker.exe: + "/Sneaker.exe": - when: - store: steam steam: @@ -480208,14 +481492,14 @@ Sneaky Ninja: id: 352450 Sneaky Sasquatch: files: - /Library/Containers/Sasquatch/data/Library/SyncedPreferences/com.rac7.SneakSasquatchMac.plist: + "/Library/Containers/Sasquatch/data/Library/SyncedPreferences/com.rac7.SneakSasquatchMac.plist": tags: - save when: - os: mac Sneaky Sneaky: files: - /Naiad Entertainment/Sneaky: + "/Naiad Entertainment/Sneaky": tags: - save when: @@ -480223,11 +481507,11 @@ Sneaky Sneaky: installDir: SneakySneaky: {} launch: - /Sneaky.app: + "/Sneaky.app": - when: - os: mac store: steam - /sneaky.exe: + "/sneaky.exe": - when: - os: windows store: steam @@ -480237,20 +481521,20 @@ Snik: installDir: Snik: {} launch: - /snik.app: + "/snik.app": - when: - os: mac store: steam - /snik.exe: + "/snik.exe": - when: - os: windows store: steam - /snik.x86: + "/snik.x86": - when: - bit: 32 os: linux store: steam - /snik.x86_64: + "/snik.x86_64": - when: - bit: 64 os: linux @@ -480261,21 +481545,21 @@ SnipZ: installDir: SnipZ: {} launch: - /Snipz.exe: + "/Snipz.exe": - when: - os: windows store: steam steam: id: 549030 -'Sniper 3D Assassin: Free to Play': +"Sniper 3D Assassin: Free to Play": installDir: Sniper3D: {} launch: - /Sniper3D.app: + "/Sniper3D.app": - when: - os: mac store: steam - /Sniper3D.exe: + "/Sniper3D.exe": - when: - os: windows store: steam @@ -480285,7 +481569,7 @@ Sniper Blacklist: installDir: SNIPER BLACKLIST: {} launch: - /SniperBlacklist.exe: + "/SniperBlacklist.exe": - when: - bit: 64 os: windows @@ -480296,7 +481580,7 @@ Sniper Commando Attack: installDir: Sniper Commando Strike: {} launch: - /SniperCommandoAttack.exe: + "/SniperCommandoAttack.exe": - when: - bit: 64 os: windows @@ -480305,7 +481589,7 @@ Sniper Commando Attack: id: 1076950 Sniper Elite: files: - /Prof/: + "/Prof/": tags: - config - save @@ -480316,19 +481600,19 @@ Sniper Elite: installDir: Sniper Elite: {} launch: - /SniperElite.exe: + "/SniperElite.exe": - when: - store: steam steam: id: 3700 Sniper Elite 4: files: - /SniperElite4: + "/SniperElite4": tags: - config when: - os: windows - /SniperElite4/PC_ProfileSaves: + "/SniperElite4/PC_ProfileSaves": tags: - save when: @@ -480336,54 +481620,54 @@ Sniper Elite 4: installDir: Sniper Elite 4: {} launch: - /Launcher/SniperElite4.exe: + "/Launcher/SniperElite4.exe": - when: - store: steam steam: id: 312660 Sniper Elite 5: files: - /Packages/Rebellion.52602B995C00E_2vbwqmt31j4mr/SystemAppData/wgs: + "/Packages/Rebellion.52602B995C00E_2vbwqmt31j4mr/SystemAppData/wgs": tags: - save when: - os: windows store: microsoft - /Sniper Elite 5: + "/Sniper Elite 5": tags: - config when: - os: windows - /Sniper Elite 5/PC_ProfileSaves: + "/Sniper Elite 5/PC_ProfileSaves": tags: - save when: - os: windows id: steamExtra: - - 1875170 - - 1872751 - - 1872750 - - 1724942 - - 1724941 - - 1724940 - 1363480 + - 1724940 + - 1724941 + - 1724942 + - 1872750 + - 1872751 + - 1875170 installDir: Sniper Elite 5: {} launch: - /launcher/sniperelite5.exe: + "/launcher/sniperelite5.exe": - when: - store: steam steam: id: 1029690 Sniper Elite III: files: - /Sniper3/PC_ProfileSaves: + "/Sniper3/PC_ProfileSaves": tags: - save when: - os: windows - /Sniper3/settings.ini: + "/Sniper3/settings.ini": tags: - config when: @@ -480391,19 +481675,19 @@ Sniper Elite III: installDir: Sniper Elite 3: {} launch: - /Launcher/Sniper3Launcher.exe: + "/Launcher/Sniper3Launcher.exe": - when: - store: steam steam: id: 238090 Sniper Elite V2: files: - /SniperV2/PC_ProfileSaves: + "/SniperV2/PC_ProfileSaves": tags: - save when: - os: windows - /SniperV2/settings.ini: + "/SniperV2/settings.ini": tags: - config when: @@ -480411,14 +481695,14 @@ Sniper Elite V2: installDir: Sniper Elite V2: {} launch: - /Launcher/SniperV2Launcher.exe: + "/Launcher/SniperV2Launcher.exe": - when: - store: steam steam: id: 63380 Sniper Elite V2 Remastered: files: - /Sniper Elite V2 Remastered/PC_ProfileSaves/: + "/Sniper Elite V2 Remastered/PC_ProfileSaves/": tags: - save when: @@ -480428,12 +481712,12 @@ Sniper Elite V2 Remastered: installDir: Sniper Elite V2 Remastered: {} launch: - /Launcher/SEV2RLauncher.exe: + "/Launcher/SEV2RLauncher.exe": - when: - bit: 64 os: windows store: steam - workingDir: /Launcher + workingDir: "/Launcher" steam: id: 728740 Sniper Elite VR: @@ -480441,14 +481725,14 @@ Sniper Elite VR: Sniper Elite VR: {} steam: id: 752480 -'Sniper Elite: Nazi Zombie Army': +"Sniper Elite: Nazi Zombie Army": files: - /Sniper Elite Nazi Zombie Army/settings.ini: + "/Sniper Elite Nazi Zombie Army/settings.ini": tags: - config when: - os: windows - /Sniper Elite Nazi Zombie/PC_ProfileSaves: + "/Sniper Elite Nazi Zombie/PC_ProfileSaves": tags: - save when: @@ -480456,19 +481740,19 @@ Sniper Elite VR: installDir: NZA: {} launch: - /bin/NZA.exe: + "/bin/NZA.exe": - when: - store: steam steam: id: 227100 -'Sniper Elite: Nazi Zombie Army 2': +"Sniper Elite: Nazi Zombie Army 2": files: - /Sniper Elite Nazi Zombie Army 2/PC_ProfileSaves: + "/Sniper Elite Nazi Zombie Army 2/PC_ProfileSaves": tags: - save when: - os: windows - /Sniper Elite Nazi Zombie Army 2/settings.ini: + "/Sniper Elite Nazi Zombie Army 2/settings.ini": tags: - config when: @@ -480476,7 +481760,7 @@ Sniper Elite VR: installDir: Sniper Elite Nazi Zombie Army 2: {} launch: - /bin/NZA2.exe: + "/bin/NZA2.exe": - when: - store: steam steam: @@ -480485,7 +481769,7 @@ Sniper Fodder: installDir: Sniper Fodder: {} launch: - /sniperfodder.exe: + "/sniperfodder.exe": - when: - os: windows store: steam @@ -480495,7 +481779,7 @@ Sniper Fury: installDir: Sniper Fury: {} launch: - /mcfw.exe: + "/mcfw.exe": - when: - os: windows store: steam @@ -480505,7 +481789,7 @@ Sniper Hunter Adventure 3D: installDir: Sniper Hunter Adventure 3D: {} launch: - /Sniper Hunter Adventure 3D.exe: + "/Sniper Hunter Adventure 3D.exe": - when: - os: windows store: steam @@ -480520,21 +481804,21 @@ Sniper Squad Mission: installDir: Sniper Squad Mission: {} launch: - /Sniper Squad Mission.app/Contents/MacOS/Sniper Squad Mission: + "/Sniper Squad Mission.app/Contents/MacOS/Sniper Squad Mission": - when: - os: mac store: steam - /Sniper Squad Mission.exe: + "/Sniper Squad Mission.exe": - when: - os: windows store: steam steam: id: 844290 -'Sniper Strike: Special Ops': +"Sniper Strike: Special Ops": installDir: Sniper Strike Special Ops: {} launch: - /Sniper Strike.exe: + "/Sniper Strike.exe": - when: - bit: 64 os: windows @@ -480545,7 +481829,7 @@ Sniper Tactical: installDir: Sniper Tactical: {} launch: - /SniperTactical.exe: + "/SniperTactical.exe": - when: - store: steam steam: @@ -480556,9 +481840,9 @@ Sniper Tanks: Sniper Zombie Killer: steam: id: 882570 -'Sniper: Art of Victory': +"Sniper: Art of Victory": files: - /Data: + "/Data": tags: - config when: @@ -480566,29 +481850,29 @@ Sniper Zombie Killer: installDir: Sniper Art of Victory: {} launch: - /Sniper.exe: + "/Sniper.exe": - when: - store: steam steam: id: 271500 -'Sniper: Ghost Warrior': +"Sniper: Ghost Warrior": files: - /Game/out/Settings: + "/Game/out/Settings": tags: - config when: - os: windows - /Game/out/profiles: + "/Game/out/profiles": tags: - save when: - os: windows - /Sniper - Ghost Warrior/out/Settings: + "/Sniper - Ghost Warrior/out/Settings": tags: - config when: - os: windows - /Sniper - Ghost Warrior/out/save: + "/Sniper - Ghost Warrior/out/save": tags: - save when: @@ -480598,19 +481882,19 @@ Sniper Zombie Killer: installDir: Sniper Ghost Warrior: {} launch: - /Sniper_x86.exe: + "/Sniper_x86.exe": - when: - store: steam steam: id: 34830 -'Sniper: Ghost Warrior 2': +"Sniper: Ghost Warrior 2": files: - /system.cfg: + "/system.cfg": tags: - config when: - os: windows - /Saved Games/SniperGhostWarrior2: + "/Saved Games/SniperGhostWarrior2": tags: - save when: @@ -480620,21 +481904,21 @@ Sniper Zombie Killer: installDir: SniperGhostWarrior2: {} launch: - /Bin32/SniperGhostWarrior2.exe: + "/Bin32/SniperGhostWarrior2.exe": - when: - os: windows store: steam - workingDir: /Bin32 + workingDir: "/Bin32" steam: id: 34870 -'Sniper: Ghost Warrior 3': +"Sniper: Ghost Warrior 3": files: - /userdata//368070/remote/profiles/default: + "/userdata//368070/remote/profiles/default": tags: - config when: - store: steam - /userdata//368070/remote/savegames: + "/userdata//368070/remote/savegames": tags: - save when: @@ -480644,30 +481928,30 @@ Sniper Zombie Killer: installDir: Sniper Ghost Warrior 3: {} launch: - /win_x64/SGW3.exe: + "/win_x64/SGW3.exe": - when: - os: windows store: steam steam: id: 368070 -'Sniper: Ghost Warrior Contracts': +"Sniper: Ghost Warrior Contracts": files: - /Saved Games/Sniper Ghost Warrior Contracts/Profiles/default: + "/Saved Games/Sniper Ghost Warrior Contracts/Profiles/default": tags: - config when: - os: windows - /Saved Games/Sniper Ghost Warrior Contracts/SaveGames: + "/Saved Games/Sniper Ghost Warrior Contracts/SaveGames": tags: - save when: - os: windows - /userdata//973580/remote/profiles/default: + "/userdata//973580/remote/profiles/default": tags: - config when: - store: steam - /userdata//973580/remote/savegames: + "/userdata//973580/remote/savegames": tags: - save when: @@ -480677,33 +481961,33 @@ Sniper Zombie Killer: installDir: Sniper Ghost Warrior Contracts: {} launch: - /win_x64/SGWContracts.exe: + "/win_x64/SGWContracts.exe": - when: - store: steam steam: id: 973580 -'Sniper: Ghost Warrior Contracts 2': +"Sniper: Ghost Warrior Contracts 2": installDir: Sniper Ghost Warrior Contracts 2: {} launch: - /win_x64/SGWContracts2.exe: + "/win_x64/SGWContracts2.exe": - when: - store: steam steam: id: 1338770 -'Sniper: Path of Vengeance': +"Sniper: Path of Vengeance": files: - /autoexec.cfg: + "/autoexec.cfg": tags: - config when: - os: windows - /lanuchp.txt: + "/lanuchp.txt": tags: - config when: - os: windows - /save: + "/save": tags: - save when: @@ -480712,7 +481996,7 @@ Snipiyo / スナイピヨ: installDir: Snipiyo: {} launch: - /Sniper.exe: + "/Sniper.exe": - when: - bit: 64 os: windows @@ -480721,12 +482005,12 @@ Snipiyo / スナイピヨ: id: 1049680 Sno-Cross Extreme: files: - /snow.cfg: + "/snow.cfg": tags: - config when: - os: windows - /snowkarp.cfg: + "/snowkarp.cfg": tags: - save when: @@ -480735,7 +482019,7 @@ Snoobli: installDir: Snoobli: {} launch: - /Snoobli.exe: + "/Snoobli.exe": - when: - os: windows store: steam @@ -480745,11 +482029,11 @@ Snood: installDir: Snood: {} launch: - /Snood.app: + "/Snood.app": - when: - os: mac store: steam - /Snood.exe: + "/Snood.exe": - when: - os: windows store: steam @@ -480757,12 +482041,12 @@ Snood: id: 964040 Snooker 19: files: - /AppData/Local/Unreal/Saved/Config/WindowsNoEditor: + "/AppData/Local/Unreal/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /AppData/Local/Unreal/Saved/SaveGames: + "/AppData/Local/Unreal/Saved/SaveGames": tags: - save when: @@ -480770,7 +482054,7 @@ Snooker 19: installDir: Snooker 19: {} launch: - /Snooker19.exe: + "/Snooker19.exe": - when: - os: windows store: steam @@ -480778,12 +482062,12 @@ Snooker 19: id: 887800 Snooker Nation Championship: files: - /SnookerNation/Saved/Config/WindowsNoEditor: + "/SnookerNation/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /SnookerNation/Saved/SaveGames: + "/SnookerNation/Saved/SaveGames": tags: - save when: @@ -480791,7 +482075,7 @@ Snooker Nation Championship: installDir: Snooker Nation Championship: {} launch: - /SnookerNation.exe: + "/SnookerNation.exe": - when: - bit: 64 os: windows @@ -480802,11 +482086,11 @@ SnookerWorld-Best online multiplayer snooker game!: installDir: SnookerWorld: {} launch: - /SNOK.app/Contents/MacOS/SNOK: + "/SNOK.app/Contents/MacOS/SNOK": - when: - os: mac store: steam - /SNOK.exe: + "/SNOK.exe": - when: - os: windows store: steam @@ -480814,39 +482098,39 @@ SnookerWorld-Best online multiplayer snooker game!: id: 522660 Snoot Game: files: - /.renpy/CavemanonSnootGame/*.save: + "/.renpy/CavemanonSnootGame/*.save": tags: - save when: - os: linux - /.renpy/CavemanonSnootGame/persistent: + "/.renpy/CavemanonSnootGame/persistent": tags: - config when: - os: linux - /Library/RenPy/CavemanonSnootGame/*.save: + "/Library/RenPy/CavemanonSnootGame/*.save": tags: - save when: - os: mac - /Library/RenPy/CavemanonSnootGame/persistent: + "/Library/RenPy/CavemanonSnootGame/persistent": tags: - config when: - os: mac - /RenPy/CavemanonSnootGame/*.save: + "/RenPy/CavemanonSnootGame/*.save": tags: - save when: - os: windows - /RenPy/CavemanonSnootGame/persistent: + "/RenPy/CavemanonSnootGame/persistent": tags: - config when: - os: windows Snow: files: - /system.cfg: + "/system.cfg": tags: - config when: @@ -480854,19 +482138,19 @@ Snow: installDir: SNOW: {} launch: - /bin/win_x64/GameLauncher.exe: + "/bin/win_x64/GameLauncher.exe": - when: - bit: 64 os: windows store: steam - workingDir: /bin/win_x64 + workingDir: "/bin/win_x64" steam: id: 244930 Snow Arena: installDir: Snow Arena: {} launch: - /Snow Arena.exe: + "/Snow Arena.exe": - when: - os: windows store: steam @@ -480876,7 +482160,7 @@ Snow Ash Land: installDir: Snow Ash Land: {} launch: - /snoweater.exe: + "/snoweater.exe": - when: - os: windows store: steam @@ -480884,7 +482168,7 @@ Snow Ash Land: id: 977670 Snow Battle Princess Sayuki: files: - /AppData/LocalLow/DefaultCompany/Snow_Battle_Princess_SAYUKI: + "/AppData/LocalLow/DefaultCompany/Snow_Battle_Princess_SAYUKI": tags: - config - save @@ -480893,7 +482177,7 @@ Snow Battle Princess Sayuki: installDir: Snow Battle Princess SAYUKI: {} launch: - /Snow_Battle_Princess_SAYUKI.exe: + "/Snow_Battle_Princess_SAYUKI.exe": - when: - os: windows store: steam @@ -480903,15 +482187,15 @@ Snow Clearing Driving Simulator: installDir: Snow Clearing Driving Simulator: {} launch: - /Snow Jeep Driving.exe: + "/Snow Jeep Driving.exe": - when: - os: windows store: steam steam: id: 1155920 -'Snow Daze: The Music of Winter Special Edition': +"Snow Daze: The Music of Winter Special Edition": files: - /game/saves: + "/game/saves": tags: - save when: @@ -480919,15 +482203,15 @@ Snow Clearing Driving Simulator: installDir: Snow Daze: {} launch: - /SnowDaze.app: + "/SnowDaze.app": - when: - os: mac store: steam - /SnowDaze.exe: + "/SnowDaze.exe": - when: - os: windows store: steam - /SnowDaze.sh: + "/SnowDaze.sh": - when: - os: linux store: steam @@ -480950,15 +482234,15 @@ Snow Horse: installDir: SnowHorse: {} launch: - /SNOWHORSE.app: + "/SNOWHORSE.app": - when: - os: mac store: steam - /SNOWHORSE.exe: + "/SNOWHORSE.exe": - when: - os: windows store: steam - /SNOWHORSE.x86: + "/SNOWHORSE.x86": - when: - os: linux store: steam @@ -480968,7 +482252,7 @@ Snow Island: installDir: Snow Island: {} launch: - /Snow Island.exe: + "/Snow Island.exe": - when: - store: steam steam: @@ -480977,7 +482261,7 @@ Snow Jewels: installDir: Snow Jewels: {} launch: - /SnowJewels_Steam.exe: + "/SnowJewels_Steam.exe": - when: - os: windows store: steam @@ -480987,11 +482271,11 @@ Snow Light: installDir: Snow Light: {} launch: - /Snow Light: + "/Snow Light": - when: - os: linux store: steam - /Snow Light.exe: + "/Snow Light.exe": - when: - os: windows store: steam @@ -481004,12 +482288,12 @@ Snow Moto Racing Freedom: installDir: Snow Moto Racing Freedom: {} launch: - /SnowMotoRacingFreedom: + "/SnowMotoRacingFreedom": - when: - bit: 64 os: linux store: steam - /SnowMotoRacingFreedom.exe: + "/SnowMotoRacingFreedom.exe": - when: - bit: 64 os: windows @@ -481020,11 +482304,11 @@ Snow White Solitaire. Charmed Kingdom: installDir: Snow White Solitaire. Charmed Kingdom: {} launch: - /Snow White Solitaire. Charmed Kingdom.app: + "/Snow White Solitaire. Charmed Kingdom.app": - when: - os: mac store: steam - /Snow White Solitaire. Charmed Kingdom.exe: + "/Snow White Solitaire. Charmed Kingdom.exe": - when: - os: windows store: steam @@ -481034,11 +482318,11 @@ Snow White Solitaire. Legacy of Dwarves: installDir: Snow White Solitaire. Legacy of Dwarves: {} launch: - /Snow White Solitaire. Legacy of Dwarves.app: + "/Snow White Solitaire. Legacy of Dwarves.app": - when: - os: mac store: steam - /Snow White Solitaire. Legacy of Dwarves.exe: + "/Snow White Solitaire. Legacy of Dwarves.exe": - when: - os: windows store: steam @@ -481048,7 +482332,7 @@ SnowBall FPS: installDir: SnowBall FPS: {} launch: - /SnowBallFPS.exe: + "/SnowBallFPS.exe": - when: - os: windows store: steam @@ -481058,7 +482342,7 @@ SnowBrawl: installDir: SnowBrawl: {} launch: - /SnowballProject.exe: + "/SnowballProject.exe": - when: - bit: 64 os: windows @@ -481069,7 +482353,7 @@ SnowNight: installDir: SnowNight: {} launch: - /SnowNight.exe: + "/SnowNight.exe": - when: - os: windows store: steam @@ -481077,13 +482361,13 @@ SnowNight: id: 965860 SnowRunner: files: - /My Games/SnowRunner/base/storage: + "/My Games/SnowRunner/base/storage": tags: - config - save when: - os: windows - /Packages/FocusHomeInteractiveSA.SnowRunnerWindows10_4hny5m903y3g0/SystemAppData/wgs: + "/Packages/FocusHomeInteractiveSA.SnowRunnerWindows10_4hny5m903y3g0/SystemAppData/wgs": tags: - save when: @@ -481092,19 +482376,19 @@ SnowRunner: installDir: SnowRunner: {} launch: - /Sources/Bin/SnowRunner.exe: + "/Sources/Bin/SnowRunner.exe": - when: - bit: 64 os: windows store: steam - workingDir: /Sources/Bin + workingDir: "/Sources/Bin" steam: id: 1465360 Snowball Rush: installDir: Snowball Rush: {} launch: - /snowballrush.exe: + "/snowballrush.exe": - when: - os: windows store: steam @@ -481114,20 +482398,20 @@ Snowball Saves Summer: installDir: Snowball Saves Summer: {} launch: - /SnowballSavesSummer.app/Contents/MacOS/SnowballSavesSummer: + "/SnowballSavesSummer.app/Contents/MacOS/SnowballSavesSummer": - when: - os: mac store: steam - /SnowballSavesSummer.exe: + "/SnowballSavesSummer.exe": - when: - os: windows store: steam - /SnowballSavesSummer.x86: + "/SnowballSavesSummer.x86": - when: - bit: 32 os: linux store: steam - /SnowballSavesSummer.x86_64: + "/SnowballSavesSummer.x86_64": - when: - bit: 64 os: linux @@ -481136,7 +482420,7 @@ Snowball Saves Summer: id: 839130 Snowball!: files: - /com.pixeljam.snowball/Local Store/#SharedObjects: + "/com.pixeljam.snowball/Local Store/#SharedObjects": tags: - save when: @@ -481144,25 +482428,25 @@ Snowball!: installDir: Snowball!: {} launch: - /Snowball!.exe: + "/Snowball!.exe": - when: - os: windows store: steam - /Snowball.app: + "/Snowball.app": - when: - os: mac store: steam steam: id: 546550 -'Snowballed: Crazy Downhill': +"Snowballed: Crazy Downhill": installDir: Snow Rush: {} launch: - /Snowballed - Crazy Downhill.app/Contents/MacOS/Snowballed - Crazy Downhill: + "/Snowballed - Crazy Downhill.app/Contents/MacOS/Snowballed - Crazy Downhill": - when: - os: mac store: steam - /Snowballed - Crazy Downhill.exe: + "/Snowballed - Crazy Downhill.exe": - when: - os: windows store: steam @@ -481172,7 +482456,7 @@ Snowballs: installDir: Snowballs: {} launch: - /Snowballs.exe: + "/Snowballs.exe": - when: - bit: 64 os: windows @@ -481183,7 +482467,7 @@ Snowcat Simulator: installDir: Snowcat Simulator: {} launch: - /snowcat.exe: + "/snowcat.exe": - when: - store: steam steam: @@ -481197,11 +482481,11 @@ Snowdome: installDir: Qing Xiang: {} launch: - /Qing Xiang.app/Contents/MacOS/Qing Xiang: + "/Qing Xiang.app/Contents/MacOS/Qing Xiang": - when: - os: mac store: steam - /Qing Xiang.exe: + "/Qing Xiang.exe": - when: - os: windows store: steam @@ -481211,8 +482495,8 @@ Snowdrop Escape: installDir: Snowdrop Escape: {} launch: - /hl2.exe: - - arguments: '-steam -nohmd -game \"snowdrop_escape\"' + "/hl2.exe": + - arguments: "-steam -nohmd -game \\\"snowdrop_escape\\\"" when: - os: windows store: steam @@ -481222,13 +482506,13 @@ Snowed IN: installDir: Snowed IN: {} launch: - /nw.exe: - - arguments: '--in-process-gpu' + "/nw.exe": + - arguments: "--in-process-gpu" when: - bit: 32 os: windows store: steam - - arguments: ' --in-process-gpu' + - arguments: " --in-process-gpu" when: - bit: 64 os: windows @@ -481239,18 +482523,18 @@ Snowflake Tattoo: installDir: Snowflake Tattoo: {} launch: - /snowflaketattoo.exe: + "/snowflaketattoo.exe": - when: - bit: 32 os: windows store: steam steam: id: 355430 -Snowflake's Chance: +"Snowflake's Chance": installDir: - Snowflake's Chance: {} + "Snowflake's Chance": {} launch: - /sfc.exe: + "/sfc.exe": - when: - os: windows store: steam @@ -481276,7 +482560,7 @@ Snowrifters VEX: id: 1020420 Snowtopia: files: - /AppData/LocalLow/Tea For Two/Snowtopia/Config/user_config.json: + "/AppData/LocalLow/Tea For Two/Snowtopia/Config/user_config.json": tags: - config when: @@ -481286,15 +482570,15 @@ Snowtopia: installDir: Snowtopia: {} launch: - /Snowtopia.app: + "/Snowtopia.app": - when: - os: mac store: steam - /Snowtopia.exe: + "/Snowtopia.exe": - when: - os: windows store: steam - /Snowtopia.x86_64: + "/Snowtopia.x86_64": - when: - os: linux store: steam @@ -481308,18 +482592,18 @@ Snuffles and Co.: installDir: Snuffles & Co: {} launch: - /jre1.8.0_181.jre/Contents/Home/bin/java: - - arguments: '-jar Snuffles.jar' + "/jre1.8.0_181.jre/Contents/Home/bin/java": + - arguments: "-jar Snuffles.jar" when: - os: mac store: steam - /jre1.8.0_181/bin/java: - - arguments: '-jar Snuffles.jar' + "/jre1.8.0_181/bin/java": + - arguments: "-jar Snuffles.jar" when: - os: linux store: steam - /jre1.8.0_181/bin/java.exe: - - arguments: '-jar Snuffles.jar' + "/jre1.8.0_181/bin/java.exe": + - arguments: "-jar Snuffles.jar" when: - os: windows store: steam @@ -481327,7 +482611,7 @@ Snuffles and Co.: id: 733560 Snuggle Truck: files: - /.config/unity3d/Owlchemy Labs/Snuggle Truck: + "/.config/unity3d/Owlchemy Labs/Snuggle Truck": tags: - config - save @@ -481336,27 +482620,27 @@ Snuggle Truck: installDir: Snuggle Truck: {} launch: - /Snuggle Truck.app: + "/Snuggle Truck.app": - when: - os: mac store: steam - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" when: - os: mac store: steam - /Snuggle Truck.exe: + "/Snuggle Truck.exe": - when: - os: windows store: steam - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" when: - os: windows store: steam - /startgame.sh: + "/startgame.sh": - when: - os: linux store: steam - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" when: - os: linux store: steam @@ -481369,7 +482653,7 @@ Snuggle Truck: id: 111100 So Blonde: files: - /saves: + "/saves": tags: - save when: @@ -481382,7 +482666,7 @@ So Long Earth: installDir: So Long Earth: {} launch: - /SLE.exe: + "/SLE.exe": - when: - os: windows store: steam @@ -481392,7 +482676,7 @@ So Long Grandma: installDir: SoLongGrandma: {} launch: - /SoLongGrandma.exe: + "/SoLongGrandma.exe": - when: - bit: 64 os: windows @@ -481403,7 +482687,7 @@ So Many Cubes: installDir: So Many Cubes: {} launch: - /so many cubes.exe: + "/so many cubes.exe": - when: - os: windows store: steam @@ -481413,20 +482697,20 @@ So Many Me: installDir: So Many Me: {} launch: - /SoManyMe.app: + "/SoManyMe.app": - when: - os: mac store: steam - /SoManyMe.exe: + "/SoManyMe.exe": - when: - os: windows store: steam - /SoManyMe.x86: + "/SoManyMe.x86": - when: - bit: 32 os: linux store: steam - /SoManyMe.x86_64: + "/SoManyMe.x86_64": - when: - bit: 64 os: linux @@ -481437,31 +482721,31 @@ So Much Blood: installDir: So Much Blood: {} launch: - /SoMuchBlood.exe: + "/SoMuchBlood.exe": - when: - os: windows store: steam steam: id: 476450 -'So, uh... a spaceship crashed in my yard.': +"So, uh... a spaceship crashed in my yard.": installDir: Spaceship Crashed: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam steam: id: 899610 -'SoM: Soul of Mask': +"SoM: Soul of Mask": installDir: SoM: {} launch: - /SoM.exe: + "/SoM.exe": - when: - os: windows store: steam - /som: + "/som": - when: - os: linux store: steam @@ -481479,7 +482763,7 @@ Sobreviva: installDir: Sobreviva: {} launch: - /sobreviva_LP.exe: + "/sobreviva_LP.exe": - when: - os: windows store: steam @@ -481489,7 +482773,7 @@ Soccer Battle Royale: installDir: Soccer Battle Royale: {} launch: - /Soccer Battle Royale.exe: + "/Soccer Battle Royale.exe": - when: - os: windows store: steam @@ -481501,7 +482785,7 @@ Soccer Kid: installDir: Soccer Kid: {} launch: - /dosbox.exe: + "/dosbox.exe": - when: - os: windows store: steam @@ -481511,7 +482795,7 @@ Soccer Legends: installDir: Soccer Legends: {} launch: - /SoccerLegends.exe: + "/SoccerLegends.exe": - when: - os: windows store: steam @@ -481521,11 +482805,11 @@ Soccer Manager: installDir: Soccer Manager: {} launch: - /Soccer Manager.app: + "/Soccer Manager.app": - when: - os: mac store: steam - /Soccer Manager.exe: + "/Soccer Manager.exe": - when: - os: windows store: steam @@ -481535,11 +482819,11 @@ Soccer Manager 2015: installDir: Soccer Manager 2015: {} launch: - /Soccer Manager 2015.app: + "/Soccer Manager 2015.app": - when: - os: mac store: steam - /Soccer Manager 2015.exe: + "/Soccer Manager 2015.exe": - when: - os: windows store: steam @@ -481549,11 +482833,11 @@ Soccer Manager 2016: installDir: Soccer Manager 2016: {} launch: - /Soccer Manager 2016.app: + "/Soccer Manager 2016.app": - when: - os: mac store: steam - /Soccer Manager 2016.exe: + "/Soccer Manager 2016.exe": - when: - os: windows store: steam @@ -481563,11 +482847,11 @@ Soccer Manager 2017: installDir: Soccer Manager 2017: {} launch: - /Soccer Manager 2017.app: + "/Soccer Manager 2017.app": - when: - os: mac store: steam - /Soccer Manager 2017.exe: + "/Soccer Manager 2017.exe": - when: - os: windows store: steam @@ -481577,7 +482861,7 @@ Soccer Manager 2018: installDir: Soccer Manager 2018: {} launch: - /Soccer Manager 2018.exe: + "/Soccer Manager 2018.exe": - when: - os: windows store: steam @@ -481587,7 +482871,7 @@ Soccer Manager 2019: installDir: Soccer Manager 2019: {} launch: - /Soccer Manager 2019.exe: + "/Soccer Manager 2019.exe": - when: - os: windows store: steam @@ -481595,7 +482879,7 @@ Soccer Manager 2019: id: 994930 Soccer Manager 2020: files: - /AppData/LocalLow/Soccer Manager Ltd/SM20: + "/AppData/LocalLow/Soccer Manager Ltd/SM20": tags: - save when: @@ -481603,7 +482887,7 @@ Soccer Manager 2020: installDir: Soccer Manager 2020: {} launch: - /SM20.exe: + "/SM20.exe": - when: - os: windows store: steam @@ -481613,7 +482897,7 @@ Soccer Manager 2021: installDir: Soccer Manager 2021: {} launch: - /SM21.exe: + "/SM21.exe": - when: - os: windows store: steam @@ -481623,11 +482907,11 @@ Soccer Manager Arena: installDir: Soccer Manager Arena: {} launch: - /Soccer Manager Arena.app: + "/Soccer Manager Arena.app": - when: - os: mac store: steam - /Soccer Manager Arena.exe: + "/Soccer Manager Arena.exe": - when: - os: windows store: steam @@ -481635,7 +482919,7 @@ Soccer Manager Arena: id: 628870 Soccer Mania: files: - /LEGO Media/Soccer Mania/Dev0: + "/LEGO Media/Soccer Mania/Dev0": tags: - save when: @@ -481644,11 +482928,11 @@ Soccer Nations Battle: installDir: Soccer Nations Battle: {} launch: - /Soccer Nations Battle.exe: + "/Soccer Nations Battle.exe": - when: - os: windows store: steam - /SoccerNationsBattle.app: + "/SoccerNationsBattle.app": - when: - os: mac store: steam @@ -481658,7 +482942,7 @@ Soccer Pinball Thrills: installDir: Soccer Pinball Thrills: {} launch: - /SoccerPinballThrills.exe: + "/SoccerPinballThrills.exe": - when: - os: windows store: steam @@ -481668,7 +482952,7 @@ Soccer Player Simulator: installDir: Soccer Player Simulator: {} launch: - /SoccerPlayerSimulator.exe: + "/SoccerPlayerSimulator.exe": - when: - os: windows store: steam @@ -481678,7 +482962,7 @@ Soccer Rage: installDir: Soccer Rage: {} launch: - /soccer_rage.exe: + "/soccer_rage.exe": - when: - os: windows store: steam @@ -481688,7 +482972,7 @@ Soccer Simulation: installDir: Soccer Simulation: {} launch: - /Soccer Simulation.exe: + "/Soccer Simulation.exe": - when: - os: windows store: steam @@ -481696,7 +482980,7 @@ Soccer Simulation: id: 719970 Soccer Story: files: - /SavesDir: + "/SavesDir": tags: - save when: @@ -481704,7 +482988,7 @@ Soccer Story: installDir: Soccer Story: {} launch: - /Soccer Story.exe: + "/Soccer Story.exe": - when: - os: windows store: steam @@ -481714,11 +482998,11 @@ Soccering: installDir: Soccering: {} launch: - /Soccering.exe: + "/Soccering.exe": - when: - os: windows store: steam - /play: + "/play": - when: - bit: 64 os: linux @@ -481729,20 +483013,20 @@ Soccertron: installDir: Soccertron: {} launch: - /Soccertron.app: + "/Soccertron.app": - when: - os: mac store: steam - /Soccertron.exe: + "/Soccertron.exe": - when: - os: windows store: steam - /Soccertron.x86: + "/Soccertron.x86": - when: - bit: 32 os: linux store: steam - /Soccertron.x86_64: + "/Soccertron.x86_64": - when: - bit: 64 os: linux @@ -481753,13 +483037,13 @@ Sociable Soccer: installDir: Sociable Soccer: {} launch: - /ss_steam.exe: + "/ss_steam.exe": - when: - os: windows store: steam steam: id: 636690 -'Social Club VR: Casino Nights': +"Social Club VR: Casino Nights": installDir: SocialClubVR: {} steam: @@ -481768,20 +483052,20 @@ Social Interaction Trainer: installDir: Social Interaction Trainer: {} launch: - /Social Interaction Trainer.app: + "/Social Interaction Trainer.app": - when: - os: mac store: steam - /Social Interaction Trainer.exe: + "/Social Interaction Trainer.exe": - when: - os: windows store: steam - /Social Interaction Trainer.x86: + "/Social Interaction Trainer.x86": - when: - bit: 32 os: linux store: steam - /Social Interaction Trainer.x86_64: + "/Social Interaction Trainer.x86_64": - when: - bit: 64 os: linux @@ -481792,20 +483076,20 @@ Social Justice Warriors: installDir: Social Justice Warriors: {} launch: - /AutomataEmpire.x86_64: + "/AutomataEmpire.x86_64": - when: - bit: 64 os: linux store: steam - /SocialJusticeWarriors.app/Contents/MacOS/SocialJusticeWarriors: + "/SocialJusticeWarriors.app/Contents/MacOS/SocialJusticeWarriors": - when: - os: mac store: steam - /SocialJusticeWarriors.exe: + "/SocialJusticeWarriors.exe": - when: - os: windows store: steam - /SocialJusticeWarriors.x86: + "/SocialJusticeWarriors.x86": - when: - bit: 32 os: linux @@ -481816,16 +483100,16 @@ Socketeer: installDir: Socketeer: {} launch: - /Socketeer.app/Contents/MacOS/Socketeer: + "/Socketeer.app/Contents/MacOS/Socketeer": - when: - os: mac store: steam - /Socketeer_x64.exe: + "/Socketeer_x64.exe": - when: - bit: 64 os: windows store: steam - /Socketeer_x86.exe: + "/Socketeer_x86.exe": - when: - bit: 32 os: windows @@ -481836,7 +483120,7 @@ Sockman: installDir: Sockman: {} launch: - /Sockman.exe: + "/Sockman.exe": - when: - os: windows store: steam @@ -481848,7 +483132,7 @@ Sockventure: installDir: Sockventure: {} launch: - /Sockventure.exe: + "/Sockventure.exe": - when: - os: windows store: steam @@ -481861,8 +483145,8 @@ Soda Drinker Pro: installDir: Soda Drinker Pro: {} launch: - /SodaDrinkerPro.exe: - - arguments: '-logFile log.log' + "/SodaDrinkerPro.exe": + - arguments: "-logFile log.log" when: - bit: 32 os: windows @@ -481875,7 +483159,7 @@ Soda Drinker Pro: id: 347720 Soda Dungeon: files: - /dungeon/POX_DUNGEON.sol: + "/dungeon/POX_DUNGEON.sol": tags: - save when: @@ -481883,7 +483167,7 @@ Soda Dungeon: installDir: Soda Dungeon: {} launch: - /dungeon.exe: + "/dungeon.exe": - when: - os: windows store: steam @@ -481891,7 +483175,7 @@ Soda Dungeon: id: 564710 Soda Dungeon 2: files: - /AppData/LocalLow/ANProductions/SodaDungeon2/soda_dungeon_2_save_data.dat: + "/AppData/LocalLow/ANProductions/SodaDungeon2/soda_dungeon_2_save_data.dat": tags: - save when: @@ -481899,11 +483183,11 @@ Soda Dungeon 2: installDir: Soda Dungeon 2: {} launch: - /SodaDungeon2.app: + "/SodaDungeon2.app": - when: - os: mac store: steam - /SodaDungeon2.exe: + "/SodaDungeon2.exe": - when: - os: windows store: steam @@ -481913,20 +483197,20 @@ Soda Girls: installDir: SodaGirls: {} launch: - /SodaGirls.app/Contents/MacOS/SodaGirls: + "/SodaGirls.app/Contents/MacOS/SodaGirls": - when: - os: mac store: steam - /SodaGirls.exe: + "/SodaGirls.exe": - when: - os: windows store: steam - /SodaGirls.x86: + "/SodaGirls.x86": - when: - bit: 32 os: linux store: steam - /SodaGirls.x86_64: + "/SodaGirls.x86_64": - when: - bit: 64 os: linux @@ -481937,15 +483221,15 @@ Soda Star: installDir: Soda Star: {} launch: - /SodaStar.app: + "/SodaStar.app": - when: - os: mac store: steam - /SodaStar.x86: + "/SodaStar.x86": - when: - os: linux store: steam - /Soda_Star.exe: + "/Soda_Star.exe": - when: - os: windows store: steam @@ -481955,7 +483239,7 @@ Soda Story - Brewing Tycoon: installDir: Soda Story - Brewing Tycoon: {} launch: - /Soda Story - Brewing Tycoon.exe: + "/Soda Story - Brewing Tycoon.exe": - when: - os: windows store: steam @@ -481965,15 +483249,15 @@ SodaCity: installDir: SodaCity: {} launch: - /SodaCity.app/Contents/MacOS/SodaCity: + "/SodaCity.app/Contents/MacOS/SodaCity": - when: - os: mac store: steam - /SodaCity.exe: + "/SodaCity.exe": - when: - os: windows store: steam - /SodaCity.x86_64: + "/SodaCity.x86_64": - when: - os: linux store: steam @@ -481981,7 +483265,7 @@ SodaCity: id: 424210 Soft Body: files: - /Soft_Body/asyncsavegroup/softbodysave.sav: + "/Soft_Body/asyncsavegroup/softbodysave.sav": tags: - save when: @@ -481989,11 +483273,11 @@ Soft Body: installDir: Soft Body: {} launch: - /Soft_Body.app: + "/Soft_Body.app": - when: - os: mac store: steam - /softbody.exe: + "/softbody.exe": - when: - os: windows store: steam @@ -482010,7 +483294,7 @@ Softporn Adventure: - 1207659158 Software Inc.: files: - /Saves: + "/Saves": tags: - save when: @@ -482018,21 +483302,21 @@ Software Inc.: installDir: Software Inc: {} launch: - /Software Inc.app/Contents/MacOS/Software Inc: + "/Software Inc.app/Contents/MacOS/Software Inc": - when: - os: mac store: steam - /Software Inc.exe: - - arguments: '-logfile output_log.txt' + "/Software Inc.exe": + - arguments: "-logfile output_log.txt" when: - os: windows store: steam - /Software Inc.x86: + "/Software Inc.x86": - when: - bit: 32 os: linux store: steam - /Software Inc.x86_64: + "/Software Inc.x86_64": - when: - bit: 64 os: linux @@ -482048,7 +483332,7 @@ Sojourner: installDir: Sojourner: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -482058,7 +483342,7 @@ Sok: installDir: SOK: {} launch: - /SOK.exe: + "/SOK.exe": - when: - store: steam steam: @@ -482067,7 +483351,7 @@ Sok Izi: installDir: SOK MIN: {} launch: - /SOK_MIN.exe: + "/SOK_MIN.exe": - when: - store: steam steam: @@ -482076,7 +483360,7 @@ Sok Max: installDir: SOK MAX: {} launch: - /SOK_MAX.exe: + "/SOK_MAX.exe": - when: - store: steam steam: @@ -482085,11 +483369,11 @@ Sok-stories: installDir: sokstories: {} launch: - /sokstories.app: + "/sokstories.app": - when: - os: mac store: steam - /sokstories.exe: + "/sokstories.exe": - when: - os: windows store: steam @@ -482099,11 +483383,11 @@ Sokbots: installDir: sokbots: {} launch: - /sokbots.app: + "/sokbots.app": - when: - os: mac store: steam - /sokbots.exe: + "/sokbots.exe": - when: - os: windows store: steam @@ -482113,11 +483397,11 @@ Soko Loco: installDir: soko loco: {} launch: - /soko loco.app: + "/soko loco.app": - when: - os: mac store: steam - /soko loco.exe: + "/soko loco.exe": - when: - os: windows store: steam @@ -482127,11 +483411,11 @@ Soko Loco Deluxe: installDir: soko loco deluxe: {} launch: - /sokoloco.app: + "/sokoloco.app": - when: - os: mac store: steam - /sokoloco.exe: + "/sokoloco.exe": - when: - os: windows store: steam @@ -482141,7 +483425,7 @@ Soko Match: installDir: Soko Match: {} launch: - /SokoMatch.exe: + "/SokoMatch.exe": - when: - store: steam steam: @@ -482150,21 +483434,21 @@ Sokoban Land DX: installDir: Sokoban Land DX: {} launch: - /SokobanLandDeluxePC_Steam.exe: + "/SokobanLandDeluxePC_Steam.exe": - when: - os: windows store: steam steam: id: 670850 -'Sokoban: The RPG': +"Sokoban: The RPG": installDir: Sokoban The RPG: {} launch: - /SokobanMV/Game: + "/SokobanMV/Game": - when: - os: linux store: steam - /SokobanMV/Game.app: + "/SokobanMV/Game.app": - when: - os: mac store: steam @@ -482172,18 +483456,18 @@ Sokoban Land DX: id: 915080 Sokobond: files: - /.appdata/com.sokobond/Local Store/#SharedObjects/sokobond.sol: + "/.appdata/com.sokobond/Local Store/#SharedObjects/sokobond.sol": tags: - save when: - os: linux - /Library/Application Support/com.sokobond/Local Store/#SharedObjects/sokobond.sol: + "/Library/Application Support/com.sokobond/Local Store/#SharedObjects/sokobond.sol": tags: - config - save when: - os: mac - /com.sokobond/Local Store/#SharedObjects/sokobond.sol: + "/com.sokobond/Local Store/#SharedObjects/sokobond.sol": tags: - config - save @@ -482194,15 +483478,15 @@ Sokobond: installDir: Sokobond: {} launch: - /Sokobond.exe: + "/Sokobond.exe": - when: - os: windows store: steam - /sokobond.app: + "/sokobond.app": - when: - os: mac store: steam - /sokobond/run-sokobond.sh: + "/sokobond/run-sokobond.sh": - when: - os: linux store: steam @@ -482211,20 +483495,20 @@ Sokobond: Sokos: steam: id: 459900 -'Sol 0: Mars Colonization': +"Sol 0: Mars Colonization": installDir: Sol 0 Mars Colonization: {} launch: - /Sol 0.exe: + "/Sol 0.exe": - when: - os: windows store: steam - /Sol 0.x86: + "/Sol 0.x86": - when: - bit: 32 os: linux store: steam - /Sol 0.x86_64: + "/Sol 0.x86_64": - when: - bit: 64 os: linux @@ -482233,7 +483517,7 @@ Sokos: id: 387370 Sol Cresta: files: - /AppData/LocalLow/PlatinumGames/SolCresta: + "/AppData/LocalLow/PlatinumGames/SolCresta": tags: - save when: @@ -482241,7 +483525,7 @@ Sol Cresta: installDir: SOL CRESTA: {} launch: - /SolCresta.exe: + "/SolCresta.exe": - when: - os: windows store: steam @@ -482255,20 +483539,20 @@ Sol Divide: installDir: Sol Divide: {} launch: - /Sol Divide.exe: + "/Sol Divide.exe": - when: - store: steam steam: id: 379350 -'Sol Divide: Sword of Darkness': +"Sol Divide: Sword of Darkness": installDir: SOL DIVIDE -SWORD OF DARKNESS-: {} launch: - /setting.exe: + "/setting.exe": - when: - os: windows store: steam - /soldivide.exe: + "/soldivide.exe": - when: - os: windows store: steam @@ -482278,11 +483562,11 @@ Sol Galaxy Defender: installDir: Sol Galaxy Defender: {} launch: - /SGD_Macv1.5.app: + "/SGD_Macv1.5.app": - when: - os: mac store: steam - /SGD_WIN_FUL_Folder/SGD_Win.exe: + "/SGD_WIN_FUL_Folder/SGD_Win.exe": - when: - os: windows store: steam @@ -482290,7 +483574,7 @@ Sol Galaxy Defender: id: 769160 Sol Survivor: files: - /Cadenza/SolSurvivor.exe_Url_kk2kolf32br34iyn2nvxhiojvswfgh4i/1.0.0.0: + "/Cadenza/SolSurvivor.exe_Url_kk2kolf32br34iyn2nvxhiojvswfgh4i/1.0.0.0": tags: - config when: @@ -482298,7 +483582,7 @@ Sol Survivor: installDir: SolSurvivor: {} launch: - /SolSurvivor.exe: + "/SolSurvivor.exe": - when: - store: steam steam: @@ -482307,16 +483591,18 @@ Sol Trader: installDir: Sol Trader: {} launch: - /sol: + "/sol": - when: - os: mac store: steam - /sol.exe: + - os: linux + store: steam + "/sol.exe": - when: - bit: 64 os: windows store: steam - /sol32.exe: + "/sol32.exe": - when: - bit: 32 os: windows @@ -482327,11 +483613,11 @@ Sol705: installDir: Sol705: {} launch: - /Sol705.app/Contents/MacOS/Sol705: + "/Sol705.app/Contents/MacOS/Sol705": - when: - os: mac store: steam - /Sol705.exe: + "/Sol705.exe": - when: - bit: 64 os: windows @@ -482342,21 +483628,21 @@ SolForge: installDir: SolForge: {} launch: - /solforge.exe: + "/solforge.exe": - when: - os: windows store: steam - /solforge_standalonelinux_Final_Live_0.x86: + "/solforge_standalonelinux_Final_Live_0.x86": - when: - bit: 32 os: linux store: steam - /solforge_standalonelinux_Final_Live_0.x86_64: + "/solforge_standalonelinux_Final_Live_0.x86_64": - when: - bit: 64 os: linux store: steam - /solforge_standalonemac_Final_Live_0.app: + "/solforge_standalonemac_Final_Live_0.app": - when: - os: mac store: steam @@ -482364,12 +483650,12 @@ SolForge: id: 232450 SolSeraph: files: - /Empyrean/Saved/Config/WindowsNoEditor: + "/Empyrean/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /Empyrean/Saved/SaveGames: + "/Empyrean/Saved/SaveGames": tags: - save when: @@ -482377,7 +483663,7 @@ SolSeraph: installDir: SolSeraph: {} launch: - /Empyrean.exe: + "/Empyrean.exe": - when: - bit: 64 os: windows @@ -482388,11 +483674,11 @@ Solace Crafting: installDir: Solace Crafting: {} launch: - /Solace Crafting.exe: + "/Solace Crafting.exe": - when: - os: windows store: steam - /Solace Crafting.x86_64: + "/Solace Crafting.x86_64": - when: - bit: 64 os: linux @@ -482403,7 +483689,7 @@ Solace State: installDir: Solace State: {} launch: - /Solace State.exe: + "/Solace State.exe": - when: - bit: 64 os: windows @@ -482412,13 +483698,13 @@ Solace State: id: 928000 Solar 2: files: - /.solar2: + "/.solar2": tags: - config - save when: - os: linux - /userdata//97000: + "/userdata//97000": tags: - save when: @@ -482426,15 +483712,15 @@ Solar 2: installDir: Solar 2: {} launch: - /Solar2: + "/Solar2": - when: - os: linux store: steam - /Solar2.app: + "/Solar2.app": - when: - os: mac store: steam - /Solar2.exe: + "/Solar2.exe": - when: - os: windows store: steam @@ -482442,12 +483728,12 @@ Solar 2: id: 97000 Solar Ash: files: - /Solar/EGS//SaveGames: + "/Solar/EGS//SaveGames": tags: - save when: - os: windows - /Solar/Saved/Config/WindowsNoEditor: + "/Solar/Saved/Config/WindowsNoEditor": tags: - config when: @@ -482455,7 +483741,7 @@ Solar Ash: installDir: Solar Ash: {} launch: - /Solar.exe: + "/Solar.exe": - when: - store: steam steam: @@ -482464,7 +483750,7 @@ Solar Battalion: installDir: SOLAR BATTALION: {} launch: - /SOLAR BATTALION.exe: + "/SOLAR BATTALION.exe": - when: - os: windows store: steam @@ -482477,11 +483763,11 @@ Solar Collector: installDir: Solar Collector: {} launch: - /SolarCollector-mac.app/Contents/MacOS/SolarCollector-mac: + "/SolarCollector-mac.app/Contents/MacOS/SolarCollector-mac": - when: - os: mac store: steam - /SolarCollector-win.exe: + "/SolarCollector-win.exe": - when: - os: windows store: steam @@ -482493,11 +483779,11 @@ Solar Command: Solar Core: steam: id: 637340 -'Solar Explorer: New Dawn': +"Solar Explorer: New Dawn": installDir: Solar Explorer - New Dawn: {} launch: - /Solar Explorer - New Dawn.exe: + "/Solar Explorer - New Dawn.exe": - when: - os: windows store: steam @@ -482507,7 +483793,7 @@ Solar Fighters: installDir: Solar Fighters: {} launch: - /SolarFightersBetaVersion.exe: + "/SolarFightersBetaVersion.exe": - when: - os: windows store: steam @@ -482515,12 +483801,12 @@ Solar Fighters: id: 897770 Solar Flux: files: - /userdata//251910/remote/save.bin: + "/userdata//251910/remote/save.bin": tags: - save when: - store: steam - /Firebrand Games/Solar Flux/save.bin: + "/Firebrand Games/Solar Flux/save.bin": tags: - save when: @@ -482528,15 +483814,15 @@ Solar Flux: installDir: Solar Flux: {} launch: - /SolarFlux.app: + "/SolarFlux.app": - when: - os: mac store: steam - /game.exe: + "/game.exe": - when: - os: windows store: steam - /runme.sh: + "/runme.sh": - when: - os: linux store: steam @@ -482546,23 +483832,23 @@ Solar Lander: installDir: Solar Lander: {} launch: - /Solar Lander.exe: + "/Solar Lander.exe": - when: - bit: 64 os: windows store: steam - /Solar Lander.x86_64: + "/Solar Lander.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 724170 -'Solar Panic: Utter Distress': +"Solar Panic: Utter Distress": installDir: Solar Panic Utter Distress: {} launch: - /SolarPanic.exe: + "/SolarPanic.exe": - when: - os: windows store: steam @@ -482572,8 +483858,8 @@ Solar Purge: installDir: Solar Purge: {} launch: - /SolarPurgeLauncher.bat: - - arguments: '-nohmd' + "/SolarPurgeLauncher.bat": + - arguments: "-nohmd" when: - bit: 64 os: windows @@ -482584,23 +483870,23 @@ Solar Settlers: installDir: Solar Settlers: {} launch: - /solar.app/Contents/MacOS/solar: - - arguments: '-force-opengl' + "/solar.app/Contents/MacOS/solar": + - arguments: "-force-opengl" when: - os: mac store: steam - /solar.exe: + "/solar.exe": - when: - os: windows store: steam - /solar.x86: - - arguments: '-force-opengl -show-screen-selector' + "/solar.x86": + - arguments: "-force-opengl -show-screen-selector" when: - bit: 32 os: linux store: steam - /solar.x86_64: - - arguments: '-force-opengl -show-screen-selector' + "/solar.x86_64": + - arguments: "-force-opengl -show-screen-selector" when: - bit: 64 os: linux @@ -482611,15 +483897,15 @@ Solar Shifter EX: installDir: Solar Shifter EX: {} launch: - /SolarShifter.app: + "/SolarShifter.app": - when: - os: mac store: steam - /SolarShifter.exe: + "/SolarShifter.exe": - when: - os: windows store: steam - /SolarShifter.x86: + "/SolarShifter.x86": - when: - os: linux store: steam @@ -482629,7 +483915,7 @@ Solar Struggle: installDir: Solar Struggle: {} launch: - /SolarStruggle.exe: + "/SolarStruggle.exe": - when: - os: windows store: steam @@ -482639,7 +483925,7 @@ Solar System: installDir: Solar System: {} launch: - /Solar System.exe: + "/Solar System.exe": - when: - store: steam steam: @@ -482648,7 +483934,7 @@ Solar System Conflict: installDir: Solar System Conflict: {} launch: - /SSC.exe: + "/SSC.exe": - when: - store: steam steam: @@ -482657,7 +483943,7 @@ Solar System Journey VR: installDir: Solar System Journey VR: {} launch: - /Solar System Journey.exe: + "/Solar System Journey.exe": - when: - bit: 64 os: windows @@ -482668,11 +483954,11 @@ Solar War: installDir: Solar War: {} launch: - /solarwar.exe: + "/solarwar.exe": - when: - os: windows store: steam - /solarwar.sh: + "/solarwar.sh": - when: - os: linux store: steam @@ -482685,7 +483971,7 @@ Solar Wind: installDir: Solar Wind: {} launch: - /solarwind.exe: + "/solarwind.exe": - when: - os: windows store: steam @@ -482695,17 +483981,17 @@ SolarGun: installDir: Solar Gun: {} launch: - /SolarGun.app/Contents/MacOS/SolarGun14: + "/SolarGun.app/Contents/MacOS/SolarGun14": - when: - bit: 64 os: mac store: steam - /SolarGun.exe: + "/SolarGun.exe": - when: - bit: 64 os: windows store: steam - /SolarGun.sh: + "/SolarGun.sh": - when: - bit: 64 os: linux @@ -482716,12 +484002,12 @@ Solaria Moon: installDir: Solaria Moon: {} launch: - /SolariaMoon.app/Contents/MacOS/SolariaMoon: + "/SolariaMoon.app/Contents/MacOS/SolariaMoon": - when: - bit: 64 os: mac store: steam - /SolariaMoon.exe: + "/SolariaMoon.exe": - when: - os: windows store: steam @@ -482736,7 +484022,7 @@ Solarium: installDir: Solarium: {} launch: - /Solarium.exe: + "/Solarium.exe": - when: - os: windows store: steam @@ -482744,12 +484030,12 @@ Solarium: id: 668770 Solarix: files: - /UDKGame/Config/UDKSystemSettings.ini: + "/UDKGame/Config/UDKSystemSettings.ini": tags: - config when: - os: windows - /UDKGame/Saves: + "/UDKGame/Saves": tags: - save when: @@ -482757,25 +484043,25 @@ Solarix: installDir: Solarix: {} launch: - /Binaries/Win32/UDK.exe: + "/Binaries/Win32/UDK.exe": - when: - os: windows store: steam steam: id: 284990 -'Solaroids: Prologue': +"Solaroids: Prologue": installDir: Solaroids: {} launch: - /Solaroids: + "/Solaroids": - when: - os: linux store: steam - /Solaroids.app/Contents/MacOS/Solaroids: + "/Solaroids.app/Contents/MacOS/Solaroids": - when: - os: mac store: steam - /Solaroids.exe: + "/Solaroids.exe": - when: - os: windows store: steam @@ -482786,7 +484072,7 @@ Solarpower: id: 852870 Solas 128: files: - /AppData/LocalLow/AmicableAnimal/SOLAS 128: + "/AppData/LocalLow/AmicableAnimal/SOLAS 128": tags: - save when: @@ -482794,7 +484080,7 @@ Solas 128: installDir: SOLAS 128: {} launch: - /SOLAS 128.exe: + "/SOLAS 128.exe": - when: - os: windows store: steam @@ -482804,26 +484090,26 @@ Solas and the White Winter: installDir: Solas and the White Winter: {} launch: - /Solas and the White Winter - Win S 64.exe: + "/Solas and the White Winter - Win S 64.exe": - when: - bit: 64 os: windows store: steam - /Solas and the White Winter - Win S.exe: + "/Solas and the White Winter - Win S.exe": - when: - bit: 32 os: windows store: steam steam: id: 813590 -'Solasta: Crown of the Magister': +"Solasta: Crown of the Magister": files: - /AppData/LocalLow/Tactical Adventures/Solasta/Saves: + "/AppData/LocalLow/Tactical Adventures/Solasta/Saves": tags: - save when: - os: windows - /AppData/LocalLow/Tactical Adventures/Solasta/UserPreferences.xml: + "/AppData/LocalLow/Tactical Adventures/Solasta/UserPreferences.xml": tags: - config when: @@ -482832,18 +484118,16 @@ Solas and the White Winter: id: 2035493674 id: gogExtra: - - 1202735427 - - 1833217038 - - 1633155096 - - 1783075991 - - 1468845014 - - 1437401972 - - 1437401972 - 1151974417 - - 1991455750 + - 1202735427 - 1373567597 - 1437401972 + - 1468845014 + - 1633155096 - 1735910522 + - 1783075991 + - 1833217038 + - 1991455750 steamExtra: - 1438980 - 1581690 @@ -482857,11 +484141,11 @@ Solas and the White Winter: installDir: Slasta_COTM: {} launch: - /Solasta.app: + "/Solasta.app": - when: - os: mac store: steam - /Solasta.exe: + "/Solasta.exe": - when: - os: windows store: steam @@ -482871,7 +484155,7 @@ Soldat: installDir: Soldat: {} launch: - /soldat.exe: + "/soldat.exe": - when: - os: windows store: steam @@ -482881,13 +484165,13 @@ Soldier Killer: installDir: Soldier Killer: {} launch: - /soldier_killer.exe: + "/soldier_killer.exe": - when: - os: windows store: steam steam: id: 675160 -'Soldier Sortie: VR Agent 006': +"Soldier Sortie: VR Agent 006": installDir: Soldier Sortie-VR Agent 006: {} steam: @@ -482898,55 +484182,55 @@ Soldier of Failure: Soldier of Failure 2: steam: id: 729170 -'Soldier of Failure: Operation Zombie': +"Soldier of Failure: Operation Zombie": steam: id: 748760 Soldier of Fortune: files: - /user/config.cfg: + "/user/config.cfg": tags: - config when: - os: windows - /user/save: + "/user/save": tags: - save when: - os: windows - /.loki/sof/config.cfg: + "/.loki/sof/config.cfg": tags: - config when: - os: linux - /.loki/sof/save: + "/.loki/sof/save": tags: - save when: - os: linux gog: id: 1828104558 -'Soldier of Fortune II: Double Helix': +"Soldier of Fortune II: Double Helix": files: - /base: + "/base": tags: - config when: - os: windows - /base/save: + "/base/save": tags: - save when: - os: windows gog: id: 1228964594 -'Soldier of Fortune: Payback': +"Soldier of Fortune: Payback": files: - /Config/key_binding.txt: + "/Config/key_binding.txt": tags: - config when: - os: windows - /Save/profile.dat: + "/Save/profile.dat": tags: - config when: @@ -482956,7 +484240,7 @@ Soldier of Fortune: installDir: Soldier of Fortune Payback: {} launch: - /sof3.exe: + "/sof3.exe": - when: - store: steam steam: @@ -482965,7 +484249,7 @@ Soldiers Lost Forever (1914-1918): installDir: soldiers lost forever: {} launch: - /soldiers lost forever.exe: + "/soldiers lost forever.exe": - when: - os: windows store: steam @@ -482978,38 +484262,27 @@ Soldiers of Freedom: id: 696500 Soldiers of Heaven VR: installDir: - '#SOHVR': {} + "#SOHVR": {} steam: id: 384970 Soldiers of the Universe: installDir: Soldiers of the Universe: {} launch: - /Sotu00.exe: + "/Sotu00.exe": - when: - bit: 64 os: windows store: steam steam: id: 640050 -'Soldiers: Heroes of World War II': - files: - /profiles/*/save: - tags: - - save - when: - - os: windows - /profiles/*/settings: - tags: - - config - when: - - os: windows +"Soldiers: Heroes of World War II": gog: id: 1207658664 installDir: Soldiers Heroes of World War 2: {} launch: - /soldiers.exe: + "/soldiers.exe": - when: - store: steam steam: @@ -483018,11 +484291,11 @@ Sole: installDir: Sole: {} launch: - /Contents/MacOS/Sole: + "/Contents/MacOS/Sole": - when: - os: mac store: steam - /Sole.exe: + "/Sole.exe": - when: - os: windows store: steam @@ -483032,7 +484305,7 @@ Solenars Edge Heroes: installDir: Solenars Edge Heroes: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -483042,8 +484315,8 @@ Solenars Edge Rebirth: installDir: Solenars Edge Rebirth: {} launch: - /Game.exe: - - arguments: '--in-process-gpu' + "/Game.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam @@ -483053,11 +484326,11 @@ Solid Aether: installDir: Solid Aether: {} launch: - /solid_aether.app: + "/solid_aether.app": - when: - os: mac store: steam - /solid_aether.exe: + "/solid_aether.exe": - when: - os: windows store: steam @@ -483065,12 +484338,12 @@ Solid Aether: id: 910730 Solitaire: files: - /Saved Games/Microsoft Games/Solitaire: + "/Saved Games/Microsoft Games/Solitaire": tags: - save when: - os: windows - /Microsoft Games/Solitaire: + "/Microsoft Games/Solitaire": tags: - config when: @@ -483079,7 +484352,7 @@ Solitaire (Sanuk Games): installDir: Solitaire: {} launch: - /Solitaire.exe: + "/Solitaire.exe": - when: - os: windows store: steam @@ -483089,16 +484362,16 @@ Solitaire (baKno Games): installDir: Solitaire: {} launch: - /Solitaire.app/Contents/MacOS/Solitaire: + "/Solitaire.app/Contents/MacOS/Solitaire": - when: - os: mac store: steam - /Solitaire.exe: + "/Solitaire.exe": - when: - bit: 64 os: windows store: steam - /Solitaire.x86_64: + "/Solitaire.x86_64": - when: - bit: 64 os: linux @@ -483109,7 +484382,7 @@ Solitaire - Cat Pirate Portrait: installDir: Solitaire - Cat Pirate Portrait: {} launch: - /Solitaire - Cat Pirate Portrait.exe: + "/Solitaire - Cat Pirate Portrait.exe": - when: - os: windows store: steam @@ -483119,7 +484392,7 @@ Solitaire 220 Plus: installDir: Solitaire 220 Plus: {} launch: - /Solitaire 220 Plus_oal_steam.exe: + "/Solitaire 220 Plus_oal_steam.exe": - when: - os: windows store: steam @@ -483129,7 +484402,7 @@ Solitaire Beach Season: installDir: Solitaire Game Beach Season: {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: @@ -483138,15 +484411,15 @@ Solitaire Bliss Collection: installDir: Solitaire Bliss Collection: {} launch: - /Solitaire Bliss Collection.exe: + "/Solitaire Bliss Collection.exe": - when: - os: windows store: steam - /Solitaire Bliss Collection.x86_64: + "/Solitaire Bliss Collection.x86_64": - when: - os: linux store: steam - /SolitaireBlissCollection.app: + "/SolitaireBlissCollection.app": - when: - os: mac store: steam @@ -483156,11 +484429,11 @@ Solitaire Call of Honor: installDir: Solitaire Call of Honor: {} launch: - /Solitaire Call of Honor.app: + "/Solitaire Call of Honor.app": - when: - os: mac store: steam - /Solitaire Call of Honor.exe: + "/Solitaire Call of Honor.exe": - when: - os: windows store: steam @@ -483170,7 +484443,7 @@ Solitaire Christmas. Match 2 Cards: installDir: Solitaire Christmas. Match 2 Cards: {} launch: - /Solitaire.exe: + "/Solitaire.exe": - when: - os: windows store: steam @@ -483180,7 +484453,7 @@ Solitaire Club: installDir: Solitaire Club: {} launch: - /SolitaireClub.exe: + "/SolitaireClub.exe": - when: - store: steam steam: @@ -483189,11 +484462,11 @@ Solitaire Game Halloween: installDir: Solitaire Game Halloween: {} launch: - /Solitaire Game. Halloween.exe: + "/Solitaire Game. Halloween.exe": - when: - os: windows store: steam - /Solitaire Game.Halloween.app: + "/Solitaire Game.Halloween.app": - when: - os: mac store: steam @@ -483203,11 +484476,11 @@ Solitaire Jack Frost Winter Adventures: installDir: Solitaire Jack Frost Winter Adventures: {} launch: - /Solitaire Jack Frost Winter Adventures.app: + "/Solitaire Jack Frost Winter Adventures.app": - when: - os: mac store: steam - /Solitaire JackFrost Winter Adventures.exe: + "/Solitaire JackFrost Winter Adventures.exe": - when: - os: windows store: steam @@ -483217,11 +484490,11 @@ Solitaire Knights: installDir: Solitaire Knights: {} launch: - /MedievalSolitaire.app: + "/MedievalSolitaire.app": - when: - os: mac store: steam - /MedievalSolitaire.exe: + "/MedievalSolitaire.exe": - when: - bit: 64 os: windows @@ -483232,53 +484505,53 @@ Solitaire Legend of the Pirates: installDir: Solitaire Legend of the Pirates: {} launch: - /Solitaire Legend of the Pirates.app: + "/Solitaire Legend of the Pirates.app": - when: - os: mac store: steam - /Solitaire Legend of the Pirates.exe: + "/Solitaire Legend of the Pirates.exe": - when: - os: windows store: steam steam: id: 1128440 -Solitaire Match 2 Cards. Valentine's Day: +"Solitaire Match 2 Cards. Valentine's Day": installDir: - Solitaire Match 2 Cards. Valentine's Day: {} + "Solitaire Match 2 Cards. Valentine's Day": {} launch: - /Solitaire Match 2 Cards. Valentine's Day.app: + "/Solitaire Match 2 Cards. Valentine's Day.app": - when: - os: mac store: steam - /Solitaire Match 2 Cards. Valentine's Day.exe: + "/Solitaire Match 2 Cards. Valentine's Day.exe": - when: - os: windows store: steam steam: id: 1128430 -'Solitaire Mystery: Four Seasons': +"Solitaire Mystery: Four Seasons": installDir: Solitaire Mystery Four Seasons: {} launch: - /SolitaireMysteryFourSeasons.app: + "/SolitaireMysteryFourSeasons.app": - when: - os: mac store: steam - /SolitaireMysteryFourSeasons.exe: + "/SolitaireMysteryFourSeasons.exe": - when: - os: windows store: steam steam: id: 971880 -'Solitaire Mystery: Stolen Power': +"Solitaire Mystery: Stolen Power": installDir: Solitaire Mystery Stolen Power: {} launch: - /Solitaire Mystery Stolen Power (Full).app: + "/Solitaire Mystery Stolen Power (Full).app": - when: - os: mac store: steam - /SolitaireMystery.exe: + "/SolitaireMystery.exe": - when: - os: windows store: steam @@ -483288,7 +484561,7 @@ Solitaire Royale: installDir: Solitaire Royale: {} launch: - /SolitaireRoyale.exe: + "/SolitaireRoyale.exe": - when: - os: windows store: steam @@ -483298,7 +484571,7 @@ Solitaire Ultra: installDir: SolitaireUltra: {} launch: - /SolitaireUltra.exe: + "/SolitaireUltra.exe": - when: - os: windows store: steam @@ -483313,11 +484586,11 @@ Solitaire Victorian Picnic: installDir: Solitaire Victorian Picnic: {} launch: - /Solitaire Victorian Picnic.app: + "/Solitaire Victorian Picnic.app": - when: - os: mac store: steam - /Solitaire Victorian Picnic.exe: + "/Solitaire Victorian Picnic.exe": - when: - os: windows store: steam @@ -483327,30 +484600,30 @@ Solitaire. Dragon Light: installDir: Solitaire. Dragon Light: {} launch: - /Solitaire. Dragon Light.app: + "/Solitaire. Dragon Light.app": - when: - os: mac store: steam - /Solitaire. Dragon Light.exe: + "/Solitaire. Dragon Light.exe": - when: - os: windows store: steam steam: id: 990400 -'Solitaire: Learn Chemistry!': +"Solitaire: Learn Chemistry!": installDir: Solitaire Learn Chemistry!: {} launch: - /Solitaire Learn Chemistry.exe: + "/Solitaire Learn Chemistry.exe": - when: - store: steam steam: id: 1007440 -'Solitaire: Learn the Flags!': +"Solitaire: Learn the Flags!": installDir: Solitaire Learn the Flags: {} launch: - /Solitaire Learn the Flags.exe: + "/Solitaire Learn the Flags.exe": - when: - os: windows store: steam @@ -483358,17 +484631,17 @@ Solitaire. Dragon Light: id: 962250 Solitairica: files: - /Solitairica/Saved/Config/WindowsNoEditor: + "/Solitairica/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /Solitairica/Saved/SaveGames: + "/Solitairica/Saved/SaveGames": tags: - save when: - os: windows - /Solitairica/Saved/SaveGames/Settings.sav: + "/Solitairica/Saved/SaveGames/Settings.sav": tags: - config when: @@ -483376,11 +484649,11 @@ Solitairica: installDir: Solitairica: {} launch: - /Solitairica.app: + "/Solitairica.app": - when: - os: mac store: steam - /Solitairica.exe: + "/Solitairica.exe": - when: - os: windows store: steam @@ -483390,7 +484663,7 @@ Solitude - Escape of Head: installDir: Solitude Escape of Head: {} launch: - /Solitude - Escape of Head.exe: + "/Solitude - Escape of Head.exe": - when: - os: windows store: steam @@ -483400,52 +484673,52 @@ Solitune: installDir: SOLITUNE: {} launch: - /Solitune.app: + "/Solitune.app": - when: - bit: 64 os: mac store: steam - /Solitune.exe: + "/Solitune.exe": - when: - os: windows store: steam - /Solitune.x86: + "/Solitune.x86": - when: - bit: 32 os: linux store: steam - /Solitune.x86_64: + "/Solitune.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 615670 -'Solmec: Among Stars': +"Solmec: Among Stars": installDir: SolmecAmongStars: {} launch: - /Solmec_Among_Stars.exe: + "/Solmec_Among_Stars.exe": - when: - os: windows store: steam steam: id: 682000 -'Solmec: Colony Adrift': +"Solmec: Colony Adrift": installDir: SolmecColonyAdrift: {} launch: - /Solmec_Colony_Adrift.exe: + "/Solmec_Colony_Adrift.exe": - when: - os: windows store: steam steam: id: 682010 -'Solmec: Hollow Planet': +"Solmec: Hollow Planet": installDir: SolmecHollowPlanet: {} launch: - /Solmec_Hollow_Planet.exe: + "/Solmec_Hollow_Planet.exe": - when: - os: windows store: steam @@ -483453,12 +484726,12 @@ Solitune: id: 678880 Solo: files: - /AppData/LocalLow/Team Gotham/Solo/OptionsData.solo: + "/AppData/LocalLow/Team Gotham/Solo/OptionsData.solo": tags: - config when: - os: windows - /AppData/LocalLow/Team Gotham/Solo/SaveData: + "/AppData/LocalLow/Team Gotham/Solo/SaveData": tags: - save when: @@ -483468,25 +484741,25 @@ Solo: installDir: Solo: {} launch: - /Solo.exe: + "/Solo.exe": - when: - os: windows store: steam steam: id: 591750 -'Solo Flight: 2nd Edition': +"Solo Flight: 2nd Edition": gog: id: 1471633117 installDir: Solo Flight: {} launch: - /DOSBox/dosbox.app/Contents/MacOS/DOSBox: - - arguments: '-conf dosbox.conf -conf osx.conf -noconsole' + "/DOSBox/dosbox.app/Contents/MacOS/DOSBox": + - arguments: "-conf dosbox.conf -conf osx.conf -noconsole" when: - os: mac store: steam - /dosbox/dosbox.exe: - - arguments: '-conf dosbox.conf -conf win.conf -noconsole' + "/dosbox/dosbox.exe": + - arguments: "-conf dosbox.conf -conf win.conf -noconsole" when: - os: windows store: steam @@ -483499,7 +484772,7 @@ Solraven: installDir: SOLRAVEN: {} launch: - /SOLRAVEN.exe: + "/SOLRAVEN.exe": - when: - os: windows store: steam @@ -483507,12 +484780,12 @@ Solraven: id: 437400 Solstice: files: - /Solstice: + "/Solstice": tags: - save when: - os: windows - /Solstice/settings.sav: + "/Solstice/settings.sav": tags: - config when: @@ -483522,11 +484795,11 @@ Solstice: installDir: Solstice: {} launch: - /Solstice.app/Contents/MacOS/Mac_Runner: + "/Solstice.app/Contents/MacOS/Mac_Runner": - when: - os: mac store: steam - /Solstice.exe: + "/Solstice.exe": - when: - os: windows store: steam @@ -483536,7 +484809,7 @@ Solstice (2019): installDir: Solstice: {} launch: - /Solstice.exe: + "/Solstice.exe": - when: - os: windows store: steam @@ -483546,19 +484819,19 @@ Solstice Arena: installDir: SolsticeArena: {} launch: - /SolsticeArena.exe: + "/SolsticeArena.exe": - when: - store: steam steam: id: 240380 -'Solstice Chronicles: MIA': +"Solstice Chronicles: MIA": files: - /TwinStick/Config/WindowsNoEditor: + "/TwinStick/Config/WindowsNoEditor": tags: - config when: - os: windows - /TwinStick/Saved/SaveGames: + "/TwinStick/Saved/SaveGames": tags: - save when: @@ -483566,33 +484839,33 @@ Solstice Arena: installDir: Solstice Chronicles MIA: {} launch: - /TwinStick.exe: + "/TwinStick.exe": - when: - bit: 64 os: windows store: steam - /TwinStick.sh: + "/TwinStick.sh": - when: - bit: 64 os: linux store: steam steam: id: 528160 -'Soma Spirits: Rebalance': +"Soma Spirits: Rebalance": installDir: Soma Spirits Rebalance: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam steam: id: 587310 -'Sombrero: Spaghetti Western Mayhem': +"Sombrero: Spaghetti Western Mayhem": installDir: Sombrero Spaghetti Western Mayhem: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -483602,11 +484875,11 @@ Some Distant Memory: installDir: Some Distant Memory: {} launch: - /SDM.app/Contents/MacOS/SDM: + "/SDM.app/Contents/MacOS/SDM": - when: - os: mac store: steam - /SDM.exe: + "/SDM.exe": - when: - os: windows store: steam @@ -483616,7 +484889,7 @@ Some some convenience store 썸썸 편의점: installDir: somesome: {} launch: - /somesome.exe: + "/somesome.exe": - when: - os: windows store: steam @@ -483625,13 +484898,13 @@ Some some convenience store 썸썸 편의점: Someday: steam: id: 1117620 -Someday You'll Return: +"Someday You'll Return": gog: id: 2107162474 installDir: - Someday You'll Return: {} + "Someday You'll Return": {} launch: - /TheForest.exe: + "/TheForest.exe": - when: - bit: 64 os: windows @@ -483642,7 +484915,7 @@ Someone Cloned The President: installDir: Someone Cloned The President: {} launch: - /player.exe: + "/player.exe": - when: - os: windows store: steam @@ -483650,7 +484923,7 @@ Someone Cloned The President: id: 1136820 Somerville: files: - /Packages/JUMPSHIP.23864955D3E5D_hmzc8fdgbvf8c/SystemAppData: + "/Packages/JUMPSHIP.23864955D3E5D_hmzc8fdgbvf8c/SystemAppData": tags: - save when: @@ -483659,7 +484932,7 @@ Somerville: installDir: Somerville: {} launch: - /Somerville.exe: + "/Somerville.exe": - when: - bit: 64 os: windows @@ -483668,32 +484941,32 @@ Somerville: id: 1671410 Something Ate My Alien: files: - /.local/share/Something-Ate-My-Alien/GameData: + "/.local/share/Something-Ate-My-Alien/GameData": tags: - config when: - os: linux - /.local/share/Something-Ate-My-Alien/GameSaves: + "/.local/share/Something-Ate-My-Alien/GameSaves": tags: - save when: - os: linux - /Library/Application Support/Something-Ate-My-Alien/GameData: + "/Library/Application Support/Something-Ate-My-Alien/GameData": tags: - config when: - os: mac - /Library/Application Support/Something-Ate-My-Alien/GameSaves: + "/Library/Application Support/Something-Ate-My-Alien/GameSaves": tags: - save when: - os: mac - /My Games/Something Ate My Alien/GameData: + "/My Games/Something Ate My Alien/GameData": tags: - config when: - os: windows - /My Games/Something Ate My Alien/GameSaves: + "/My Games/Something Ate My Alien/GameSaves": tags: - save when: @@ -483701,16 +484974,16 @@ Something Ate My Alien: installDir: Something Ate My Alien: {} launch: - /SAMA.app: + "/SAMA.app": - when: - os: mac store: steam - /SAMA.exe: + "/SAMA.exe": - when: - bit: 64 os: windows store: steam - /SAMA.x86_64: + "/SAMA.x86_64": - when: - bit: 64 os: linux @@ -483721,7 +484994,7 @@ Something To Do With Love: installDir: Something To Do With Love: {} launch: - /Something To Do With Love.exe: + "/Something To Do With Love.exe": - when: - os: windows store: steam @@ -483731,7 +485004,7 @@ Something for Someone Else: installDir: Something for Someone Else: {} launch: - /Something for Someone Else.exe: + "/Something for Someone Else.exe": - when: - os: windows store: steam @@ -483741,7 +485014,7 @@ Something is wrong/有毛病: installDir: Something is wrong有毛病: {} launch: - /SIW.exe: + "/SIW.exe": - when: - store: steam steam: @@ -483750,28 +485023,28 @@ Sometimes Always Monsters: installDir: Sometimes Always Monsters: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam steam: id: 441440 -'Sometimes to Deal with the Difficulty of Being Alive, I Need to Believe There Is a Possibility That Life Is Not Real.': +"Sometimes to Deal with the Difficulty of Being Alive, I Need to Believe There Is a Possibility That Life Is Not Real.": installDir: InstallFolder: {} launch: - /ScrumProject.exe: + "/ScrumProject.exe": - when: - bit: 64 os: windows store: steam steam: id: 789380 -'Sometimes: Success Requires Sacrifice': +"Sometimes: Success Requires Sacrifice": installDir: Sometimes Success Requires Sacrifice: {} launch: - /Sometimes.exe: + "/Sometimes.exe": - when: - os: windows store: steam @@ -483781,21 +485054,23 @@ Somewhere: installDir: Somewhere Sect of Relic: {} launch: - /SomewhereSectofRelic.app: + "/SomewhereSectofRelic.app": - when: - os: mac store: steam - /SomewhereSectofRelic.exe: + "/SomewhereSectofRelic.exe": - when: - os: windows store: steam + - os: linux + store: steam steam: id: 1224380 Somewhere inside: installDir: Somewhere inside: {} launch: - /SomewhereInside.exe: + "/SomewhereInside.exe": - when: - bit: 64 os: windows @@ -483806,7 +485081,7 @@ Somewhere on Zibylon: installDir: Somewhere on Zibylon: {} launch: - /PLAY.exe: + "/PLAY.exe": - when: - os: windows store: steam @@ -483821,7 +485096,7 @@ Somnium Space: installDir: Somnium Space: {} launch: - /SomniumLauncher.exe: + "/SomniumLauncher.exe": - when: - os: windows store: steam @@ -483831,15 +485106,15 @@ Somos: installDir: SOMOS: {} launch: - /Mac.app/Contents/MacOS/Mac: + "/Mac.app/Contents/MacOS/Mac": - when: - os: mac store: steam - /SOMOS.exe: + "/SOMOS.exe": - when: - os: windows store: steam - /SOMOS.x86: + "/SOMOS.x86": - when: - os: linux store: steam @@ -483849,7 +485124,7 @@ Son Korsan: installDir: SonKorsan: {} launch: - /SonKorsan.exe: + "/SonKorsan.exe": - when: - os: windows store: steam @@ -483859,15 +485134,15 @@ Son of Nor: installDir: Son of Nor: {} launch: - /SON.app: + "/SON.app": - when: - os: mac store: steam - /SON.exe: + "/SON.exe": - when: - os: windows store: steam - /SON.x86: + "/SON.x86": - when: - os: linux store: steam @@ -483877,15 +485152,15 @@ Son of Scoregasm: installDir: Son of Scoregasm: {} launch: - /Son of Scoregasm.app: + "/Son of Scoregasm.app": - when: - os: mac store: steam - /Son of Scoregasm.exe: + "/Son of Scoregasm.exe": - when: - os: windows store: steam - /start.sh: + "/start.sh": - when: - bit: 64 os: linux @@ -483896,11 +485171,11 @@ Son of a Witch: installDir: My Mom is a Witch: {} launch: - /Witch.app/Contents/MacOS/game: + "/Witch.app/Contents/MacOS/game": - when: - os: mac store: steam - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -483910,11 +485185,11 @@ Son.Light.Sleepwalker: installDir: SonLightSleepwalker: {} launch: - /Son.Light.Sleepwalker.exe: + "/Son.Light.Sleepwalker.exe": - when: - os: windows store: steam - /sls.x86_64: + "/sls.x86_64": - when: - os: linux store: steam @@ -483924,11 +485199,11 @@ Sonar Beat: installDir: Sonar Beat: {} launch: - /Sonar Beat.app: + "/Sonar Beat.app": - when: - os: mac store: steam - /Sonar Beat.exe: + "/Sonar Beat.exe": - when: - os: windows store: steam @@ -483938,7 +485213,7 @@ Sonder. Episode ONE: installDir: SonderEP01: {} launch: - /SonderEP01.exe: + "/SonderEP01.exe": - when: - os: windows store: steam @@ -483948,13 +485223,13 @@ Song Animals: installDir: Song Animals: {} launch: - /SongAnimals.exe: + "/SongAnimals.exe": - when: - os: windows store: steam steam: id: 1036200 -'Song Beater: Quite My Tempo!': +"Song Beater: Quite My Tempo!": installDir: Song Beater: {} steam: @@ -483966,17 +485241,17 @@ Song Samurai: id: 681360 Song of Farca: files: - /.config/unity3d/Wooden Monkeys/Song of Farca: + "/.config/unity3d/Wooden Monkeys/Song of Farca": tags: - save when: - os: linux - /AppData/LocalLow/Wooden Monkeys/Song of Farca: + "/AppData/LocalLow/Wooden Monkeys/Song of Farca": tags: - save when: - os: windows - /Library/Application Support/com.WoodenMonkeys.SongofFarca: + "/Library/Application Support/com.WoodenMonkeys.SongofFarca": tags: - save when: @@ -483986,15 +485261,15 @@ Song of Farca: installDir: Song of Farca: {} launch: - /Song of Farca: + "/Song of Farca": - when: - os: linux store: steam - /Song of Farca.app: + "/Song of Farca.app": - when: - os: mac store: steam - /Song of Farca.exe: + "/Song of Farca.exe": - when: - os: windows store: steam @@ -484002,12 +485277,12 @@ Song of Farca: id: 1435670 Song of Horror: files: - /SongOfHorror/Saved/Config/WindowsNoEditor: + "/SongOfHorror/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /SongOfHorror/Saved/SaveGames: + "/SongOfHorror/Saved/SaveGames": tags: - save when: @@ -484017,8 +485292,8 @@ Song of Horror: installDir: SongOfHorror: {} launch: - /SongOfHorror.exe: - - arguments: '-fullscreen' + "/SongOfHorror.exe": + - arguments: "-fullscreen" when: - bit: 64 os: windows @@ -484040,7 +485315,7 @@ Song of Iron: installDir: Song of Iron: {} launch: - /SONG_of_IRON.exe: + "/SONG_of_IRON.exe": - when: - bit: 64 os: windows @@ -484049,7 +485324,7 @@ Song of Iron: id: 1258220 Song of Memories: files: - /Song of Memories: + "/Song of Memories": tags: - config - save @@ -484059,9 +485334,9 @@ Song of Memories: Song of Memories: {} steam: id: 752570 -'Song of Nunu: A League of Legends Story': +"Song of Nunu: A League of Legends Story": files: - /Local/SongOfNunu/Saved/Config/Windows: + "/Local/SongOfNunu/Saved/Config/Windows": tags: - config when: @@ -484074,7 +485349,7 @@ Song of a Spirit: installDir: Song of a Spirit: {} launch: - /SongOfASpirit.exe: + "/SongOfASpirit.exe": - when: - os: windows store: steam @@ -484082,7 +485357,7 @@ Song of a Spirit: id: 1111130 Song of the Deep: files: - /AppData/LocalLow/Insomniac Games/Song of the Deep/*.sav: + "/AppData/LocalLow/Insomniac Games/Song of the Deep/*.sav": tags: - save when: @@ -484090,7 +485365,7 @@ Song of the Deep: installDir: Song of the Deep: {} launch: - /SOTD.exe: + "/SOTD.exe": - when: - bit: 64 os: windows @@ -484101,9 +485376,9 @@ Song of the Deep: - config steam: id: 460700 -'Song of the Myrne: What Lies Beneath': +"Song of the Myrne: What Lies Beneath": files: - /Saves: + "/Saves": tags: - save when: @@ -484111,15 +485386,15 @@ Song of the Deep: installDir: Song of the Myrne What Lies Beneath: {} launch: - /WLB.x86: + "/WLB.x86": - when: - os: linux store: steam - /WhatLiesBeneath.app: + "/WhatLiesBeneath.app": - when: - os: mac store: steam - /wlb.exe: + "/wlb.exe": - when: - os: windows store: steam @@ -484133,7 +485408,7 @@ Song of the Prairie: installDir: Song Of The Prairie: {} launch: - /SoP.exe: + "/SoP.exe": - when: - os: windows store: steam @@ -484141,7 +485416,7 @@ Song of the Prairie: id: 1350840 SongPop Party: files: - /Library/Containers/SongPop Party/Data/Library/Preferences/com.gameloft.SongPopParty.plist: + "/Library/Containers/SongPop Party/Data/Library/Preferences/com.gameloft.SongPopParty.plist": tags: - save when: @@ -484150,11 +485425,11 @@ Songbird Symphony: installDir: Songbird Symphony: {} launch: - /Songbird Symphony.app: + "/Songbird Symphony.app": - when: - os: mac store: steam - /Songbird Symphony.exe: + "/Songbird Symphony.exe": - when: - os: windows store: steam @@ -484166,16 +485441,16 @@ Songbringer: installDir: Songbringer: {} launch: - /linux/Songbringer: + "/linux/Songbringer": - arguments: linux when: - os: linux store: steam - /mac/Songbringer.app: + "/mac/Songbringer.app": - when: - os: mac store: steam - /windows/Songbringer.exe: + "/windows/Songbringer.exe": - when: - os: windows store: steam @@ -484185,7 +485460,7 @@ Songs Of Wuxia: installDir: SongsOfWuxia: {} launch: - /Songs_Of_WuXia.exe: + "/Songs_Of_WuXia.exe": - when: - os: windows store: steam @@ -484193,12 +485468,12 @@ Songs Of Wuxia: id: 1186460 Songs for a Hero: files: - /.config/SongsForAHero: + "/.config/SongsForAHero": tags: - save when: - os: linux - /SongsForAHero: + "/SongsForAHero": tags: - config - save @@ -484207,35 +485482,35 @@ Songs for a Hero: installDir: A Lenda do Herói - O Jogo: {} launch: - /DumaLegend.bin.osx: + "/DumaLegend.bin.osx": - when: - os: mac store: steam - /DumaLegend.bin.x86_64: + "/DumaLegend.bin.x86_64": - when: - os: linux store: steam - /DumaLegend.exe: + "/DumaLegend.exe": - when: - os: windows store: steam steam: id: 389170 -'Songs of Araiah: Re-Mastered Edition': +"Songs of Araiah: Re-Mastered Edition": installDir: Songs of Araiah Re-Mastered Edition: {} launch: - /Songs of Araiah.app: + "/Songs of Araiah.app": - when: - os: mac store: steam - /prism.exe: - - arguments: '-webapp \"Songs of Araiah.webapp\"' + "/prism.exe": + - arguments: "-webapp \\\"Songs of Araiah.webapp\\\"" when: - bit: 64 os: windows store: steam - - arguments: '-webapp \"Songs of Araiah x86.webapp\"' + - arguments: "-webapp \\\"Songs of Araiah x86.webapp\\\"" when: - bit: 32 os: windows @@ -484244,7 +485519,7 @@ Songs for a Hero: id: 567690 Songs of Conquest: files: - /AppData/LocalLow/Lavapotion/SongsOfConquest/Savegames: + "/AppData/LocalLow/Lavapotion/SongsOfConquest/Savegames": tags: - save when: @@ -484254,11 +485529,11 @@ Songs of Conquest: installDir: SongsOfConquest: {} launch: - /SongsOfConquest.app/Contents/MacOS/SongsOfConquest: + "/SongsOfConquest.app/Contents/MacOS/SongsOfConquest": - when: - os: mac store: steam - /SongsOfConquest.exe: + "/SongsOfConquest.exe": - when: - os: windows store: steam @@ -484268,7 +485543,7 @@ Songs of Skydale: installDir: Songs of Skydale: {} launch: - /Songs of Skydale.exe: + "/Songs of Skydale.exe": - when: - os: windows store: steam @@ -484276,17 +485551,17 @@ Songs of Skydale: id: 1062480 Songs of Syx: files: - /songsofsyx/saves: + "/songsofsyx/saves": tags: - save when: - os: windows - /songsofsyx/saves: + "/songsofsyx/saves": tags: - save when: - os: linux - /songsofsyx/settings: + "/songsofsyx/settings": tags: - config when: @@ -484296,15 +485571,15 @@ Songs of Syx: installDir: Songs of Syx: {} launch: - /SongsOfSyx.exe: + "/SongsOfSyx.exe": - when: - os: windows store: steam - /SongsOfSyxMac.app: + "/SongsOfSyxMac.app": - when: - os: mac store: steam - /songsofsyx: + "/songsofsyx": - when: - bit: 64 os: linux @@ -484315,23 +485590,23 @@ Songs2See: installDir: Songs2See: {} launch: - /Songs2See Game/Songs2See Game.app/Contents/MacOS/Songs2See Game: + "/Songs2See Game/Songs2See Game.app/Contents/MacOS/Songs2See Game": - arguments: 6zu78uimmn32p9 when: - os: mac store: steam - workingDir: /Songs2See Game - /Songs2See Game/Songs2See Game.exe: + workingDir: "/Songs2See Game" + "/Songs2See Game/Songs2See Game.exe": - arguments: 6zu78uimmn32p9 when: - os: windows store: steam - workingDir: /Songs2See Game + workingDir: "/Songs2See Game" steam: id: 248270 -'SoniComi: Communication with Sonico': +"SoniComi: Communication with Sonico": files: - /Nitroplus/SONICOMI_en: + "/Nitroplus/SONICOMI_en": tags: - config - save @@ -484342,7 +485617,7 @@ Songs2See: installDir: Sonicomi: {} launch: - /Sonicomi_Steam.exe: + "/Sonicomi_Steam.exe": - when: - store: steam steam: @@ -484353,20 +485628,20 @@ Sonia and the Hypnotic City: installDir: Sonia and the Hypnotic City: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: id: 1287140 Sonic & All-Stars Racing Transformed: files: - /userdata//212480/remote: + "/userdata//212480/remote": tags: - save when: - os: windows store: steam - /SART: + "/SART": tags: - config when: @@ -484374,22 +485649,22 @@ Sonic & All-Stars Racing Transformed: id: steamExtra: - 229660 - - 271030 - 264600 + - 271030 installDir: Sonic & All-Stars Racing Transformed: {} launch: - /ASN_App_PcDx9_Final.exe: + "/ASN_App_PcDx9_Final.exe": - when: - store: steam - /Launcher.exe: + "/Launcher.exe": - when: - store: steam steam: id: 212480 Sonic & Knuckles Collection: files: - /SONIC3K.BIN: + "/SONIC3K.BIN": tags: - save when: @@ -484400,12 +485675,12 @@ Sonic & Knuckles Collection: - config Sonic & Sega All-Stars Racing: files: - /settings.ini: + "/settings.ini": tags: - config when: - os: windows - /ssr_save.bin: + "/ssr_save.bin": tags: - save when: @@ -484413,38 +485688,38 @@ Sonic & Sega All-Stars Racing: installDir: Sonic and SEGA All Stars Racing: {} launch: - /Config.exe: + "/Config.exe": - when: - store: steam - /Sonic & SEGA All-Stars Racing.exe: + "/Sonic & SEGA All-Stars Racing.exe": - when: - store: steam steam: id: 34190 Sonic 3 & Knuckles: files: - /SEGA Mega Drive Classics/user_/Sonic 3 & Knuckles: + "/SEGA Mega Drive Classics/user_/Sonic 3 & Knuckles": tags: - save when: - os: mac - os: linux - /SEGA Genesis Classics/0042: + "/SEGA Genesis Classics/0042": tags: - save when: - os: windows - /SEGA Genesis Classics/setup.dat: + "/SEGA Genesis Classics/setup.dat": tags: - config when: - os: windows - /SEGA Mega Drive Classics/0042: + "/SEGA Mega Drive Classics/0042": tags: - save when: - os: windows - /SEGA Mega Drive Classics/setup.dat: + "/SEGA Mega Drive Classics/setup.dat": tags: - config when: @@ -484453,34 +485728,34 @@ Sonic 3 & Knuckles: id: 71162 Sonic 3D Blast: files: - /PCSONIC.ini: + "/PCSONIC.ini": tags: - config when: - os: windows - /pcsonic.sav: + "/pcsonic.sav": tags: - save when: - os: windows Sonic 3D Blast (Genesis): files: - /SEGA Genesis Classics/0008: + "/SEGA Genesis Classics/0008": tags: - save when: - os: windows - /SEGA Genesis Classics/setup.dat: + "/SEGA Genesis Classics/setup.dat": tags: - config when: - os: windows - /SEGA Mega Drive Classics/0008: + "/SEGA Mega Drive Classics/0008": tags: - save when: - os: windows - /SEGA Mega Drive Classics/setup.dat: + "/SEGA Mega Drive Classics/setup.dat": tags: - config when: @@ -484489,17 +485764,17 @@ Sonic 3D Blast (Genesis): id: 34278 Sonic Adventure 2: files: - /Config/Keyboard.cfg: + "/Config/Keyboard.cfg": tags: - config when: - os: windows - /Config/UserConfig.cfg: + "/Config/UserConfig.cfg": tags: - config when: - os: windows - /resource/gd_PC/SAVEDATA: + "/resource/gd_PC/SAVEDATA": tags: - save when: @@ -484510,7 +485785,7 @@ Sonic Adventure 2: installDir: Sonic Adventure 2: {} launch: - /launcher.exe: + "/launcher.exe": - when: - os: windows store: steam @@ -484518,34 +485793,34 @@ Sonic Adventure 2: id: 213610 Sonic Adventure DX: files: - /savedata: + "/savedata": tags: - save when: - os: windows - /sonicDX.ini: + "/sonicDX.ini": tags: - config when: - os: windows Sonic Adventure DX (2011): files: - /SEGA/Dreamcast Collection/Sonic Adventure DX/SAVEDATA: + "/SEGA/Dreamcast Collection/Sonic Adventure DX/SAVEDATA": tags: - save when: - os: windows - /SEGA/Dreamcast Collection/Sonic Adventure DX/config.ini: + "/SEGA/Dreamcast Collection/Sonic Adventure DX/config.ini": tags: - config when: - os: windows - /SEGA/Sonic Adventure DX/SAVEDATA: + "/SEGA/Sonic Adventure DX/SAVEDATA": tags: - save when: - os: windows - /SEGA/Sonic Adventure DX/config.ini: + "/SEGA/Sonic Adventure DX/config.ini": tags: - config when: @@ -484556,33 +485831,33 @@ Sonic Adventure DX (2011): installDir: Sonic Adventure DX: {} launch: - /AppLauncher.exe: - - arguments: '-bootgame' + "/AppLauncher.exe": + - arguments: "-bootgame" when: - store: steam - - arguments: '-bootlauncher' + - arguments: "-bootlauncher" when: - store: steam steam: id: 71250 Sonic Adventure DX (Steam): files: - /input_config.xml: + "/input_config.xml": tags: - config when: - os: windows - /keycap_config.xml: + "/keycap_config.xml": tags: - config when: - os: windows - /system_config.xml: + "/system_config.xml": tags: - config when: - os: windows - /SEGA/Sonic Adventure DX/SAVEDATA: + "/SEGA/Sonic Adventure DX/SAVEDATA": tags: - save when: @@ -484593,18 +485868,18 @@ Sonic Adventure DX (Steam): installDir: Sonic Adventure DX: {} launch: - /AppLauncher.exe: - - arguments: '-bootgame' + "/AppLauncher.exe": + - arguments: "-bootgame" when: - store: steam - - arguments: '-bootlauncher' + - arguments: "-bootlauncher" when: - store: steam steam: id: 71250 Sonic CD: files: - /S_SCORE.DAT: + "/S_SCORE.DAT": tags: - save when: @@ -484615,7 +485890,7 @@ Sonic CD: - config Sonic CD (2012): files: - /userdata//200940: + "/userdata//200940": tags: - config - save @@ -484625,42 +485900,43 @@ Sonic CD (2012): installDir: Sonic CD: {} launch: - /setup.exe: + "/setup.exe": - when: - store: steam - /soniccd.exe: + "/soniccd.exe": - when: - store: steam steam: id: 200940 -'Sonic Colors: Ultimate': +"Sonic Colors: Ultimate": files: - /Sega/SonicColorsUltimate/Steam//savedData: + "/Sega/SonicColorsUltimate/Steam//savedData": tags: - config - save when: - - store: steam - /Sonic Colors/app_userdata/Sonic Colors- Ultimate/savedData: + - os: windows + store: steam + "/Sonic Colors/app_userdata/Sonic Colors- Ultimate/savedData": tags: - config - save when: - - store: epic + - os: windows installDir: SonicColorsUltimate: {} launch: - /exec/SonicColorsUltimate.exe: + "/exec/SonicColorsUltimate.exe": - when: - bit: 64 os: windows store: steam - workingDir: /exec + workingDir: "/exec" steam: id: 2055290 Sonic Dash: files: - /Packages/SegaNetworksInc.56538047DFC80_as33fap47kd3c: + "/Packages/SegaNetworksInc.56538047DFC80_as33fap47kd3c": tags: - config - save @@ -484669,12 +485945,12 @@ Sonic Dash: store: microsoft Sonic Forces: files: - /savedata//savedata.xml: + "/savedata//savedata.xml": tags: - save when: - os: windows - /savedata/GraphicsConfig.txt: + "/savedata/GraphicsConfig.txt": tags: - config when: @@ -484682,33 +485958,33 @@ Sonic Forces: id: steamExtra: - 715850 - - 715900 - - 715870 - - 715910 - 715860 + - 715870 + - 715900 + - 715910 installDir: SonicForces: {} launch: - /build/main/projects/exec/Sonic Forces.exe: + "/build/main/projects/exec/Sonic Forces.exe": - when: - os: windows store: steam - workingDir: /build/main/projects/exec + workingDir: "/build/main/projects/exec" steam: id: 637100 Sonic Frontiers: files: - /SEGA/SonicFrontiers/steam/: + "/SEGA/SonicFrontiers/steam/": tags: - save when: - os: windows - /SEGA/SonicFrontiers/steam//option/optiondata: + "/SEGA/SonicFrontiers/steam//option/optiondata": tags: - config when: - os: windows - /SEGA/SonicFrontiers/steam/x64/screen_setting.xml: + "/SEGA/SonicFrontiers/steam/x64/screen_setting.xml": tags: - config when: @@ -484716,7 +485992,7 @@ Sonic Frontiers: installDir: SonicFrontiers: {} launch: - /SonicFrontiers.exe: + "/SonicFrontiers.exe": - when: - bit: 64 os: windows @@ -484725,12 +486001,12 @@ Sonic Frontiers: id: 1237320 Sonic Generations: files: - /*.cfg: + "/*.cfg": tags: - config when: - os: windows - /userdata//71340: + "/userdata//71340": tags: - save when: @@ -484742,22 +486018,22 @@ Sonic Generations: installDir: Sonic Generations: {} launch: - /ConfigurationTool.exe: + "/ConfigurationTool.exe": - when: - store: steam - /SonicGenerations.exe: + "/SonicGenerations.exe": - when: - store: steam steam: id: 71340 Sonic Heroes: files: - /Sega/SONICHEROES/SONICHEROES_*: + "/Sega/SONICHEROES/SONICHEROES_*": tags: - save when: - os: windows - /Sega/SONICHEROES/sonic_h.ini: + "/Sega/SONICHEROES/sonic_h.ini": tags: - config when: @@ -484769,7 +486045,7 @@ Sonic Hunter VR: id: 555130 Sonic Lost World: files: - /.sdat: + "/.sdat": tags: - save when: @@ -484780,7 +486056,7 @@ Sonic Lost World: installDir: Sonic Lost World: {} launch: - /slw.exe: + "/slw.exe": - when: - store: steam registry: @@ -484791,28 +486067,28 @@ Sonic Lost World: id: 329440 Sonic Mania: files: - /Settings.ini: + "/Settings.ini": tags: - config when: - store: steam - /userdata//584400/remote: + "/userdata//584400/remote": tags: - save when: - store: steam - /Sega/SonicMania/Settings.ini: + "/Sega/SonicMania/Settings.ini": tags: - config when: - - store: epic + - os: windows id: steamExtra: - 845640 installDir: Sonic Mania: {} launch: - /SonicMania.exe: + "/SonicMania.exe": - when: - os: windows store: steam @@ -484820,109 +486096,111 @@ Sonic Mania: id: 584400 Sonic Mega Collection Plus: files: - /SEGA/MegaCollectionPlus/SAVEDATA: + "/SEGA/MegaCollectionPlus/SAVEDATA": tags: - save when: - os: windows - /SEGA/MegaCollectionPlus/SETTING.INI: + "/SEGA/MegaCollectionPlus/SETTING.INI": tags: - config when: - os: windows Sonic Origins: files: - /Sega/SonicOrigins/epic//game/data.dat: + "/Sega/SonicOrigins/epic//game/data.dat": tags: - save when: - - store: epic - /Sega/SonicOrigins/steam//game/data.dat: + - os: windows + "/Sega/SonicOrigins/steam//game/data.dat": tags: - save when: - - store: steam - /Sega/SonicOrigins/steam/x64/screen_setting.xml: + - os: windows + store: steam + "/Sega/SonicOrigins/steam/x64/screen_setting.xml": tags: - config when: - - store: steam + - os: windows + store: steam installDir: SonicOrigins: {} launch: - /build/main/projects/exec/SonicOrigins.exe: + "/build/main/projects/exec/SonicOrigins.exe": - when: - os: windows store: steam - workingDir: /build/main/projects/exec + workingDir: "/build/main/projects/exec" steam: id: 1794960 Sonic P-06: files: - /SaveFiles: + "/SaveFiles": tags: - save when: - os: windows Sonic R: files: - /sonicr.inf: + "/sonicr.inf": tags: - config when: - os: windows Sonic R (2004): files: - /bin/demos: + "/bin/demos": tags: - save when: - os: windows - /ghost: + "/ghost": tags: - save when: - os: windows - /joystick.inf: + "/joystick.inf": tags: - config when: - os: windows - /keys.bin: + "/keys.bin": tags: - config when: - os: windows - /save: + "/save": tags: - save when: - os: windows - /sonicr.inf: + "/sonicr.inf": tags: - config when: - os: windows Sonic Riders: files: - /Save/Config.ini: + "/Save/Config.ini": tags: - config when: - os: windows - /Save/Game Data*/save.dat: + "/Save/Game Data*/save.dat": tags: - save when: - os: windows Sonic Robo Blast 2: files: - /config.cfg: + "/config.cfg": tags: - config when: - os: windows - /gamedata.dat: + "/gamedata.dat": tags: - save when: @@ -484941,22 +486219,22 @@ Sonic Robo Blast 2 Kart: - os: windows Sonic Spinball: files: - /SEGA Genesis Classics/0021: + "/SEGA Genesis Classics/0021": tags: - save when: - os: windows - /SEGA Genesis Classics/setup.dat: + "/SEGA Genesis Classics/setup.dat": tags: - config when: - os: windows - /SEGA Mega Drive Classics/0021: + "/SEGA Mega Drive Classics/0021": tags: - save when: - os: windows - /SEGA Mega Drive Classics/setup.dat: + "/SEGA Mega Drive Classics/setup.dat": tags: - config when: @@ -484965,21 +486243,24 @@ Sonic Spinball: id: 34313 Sonic Superstars: files: - /SEGA/SonicSuperstars/Steam//SonicSuperstarsStoryData.bin: + "/SEGA/SonicSuperstars/Steam//SonicSuperstarsStoryData.bin": tags: - save when: - - store: steam - /SEGA/SonicSuperstars/Steam//SonicSuperstarsSystemData.bin: + - os: windows + store: steam + "/SEGA/SonicSuperstars/Steam//SonicSuperstarsSystemData.bin": tags: - save when: - - store: steam - /SEGA/SonicSuperstars/Steam//SonicSuperstarsTimeAttackData_*.bin: + - os: windows + store: steam + "/SEGA/SonicSuperstars/Steam//SonicSuperstarsTimeAttackData_*.bin": tags: - save when: - - store: steam + - os: windows + store: steam registry: HKEY_CURRENT_USER/Software/sega co. ltd/SonicSuperstars: tags: @@ -484988,22 +486269,22 @@ Sonic Superstars: id: 2022670 Sonic the Hedgehog: files: - /SEGA Genesis Classics/0031: + "/SEGA Genesis Classics/0031": tags: - save when: - os: windows - /SEGA Genesis Classics/setup.dat: + "/SEGA Genesis Classics/setup.dat": tags: - config when: - os: windows - /SEGA Mega Drive Classics/0031: + "/SEGA Mega Drive Classics/0031": tags: - save when: - os: windows - /SEGA Mega Drive Classics/setup.dat: + "/SEGA Mega Drive Classics/setup.dat": tags: - config when: @@ -485012,59 +486293,59 @@ Sonic the Hedgehog: id: 71113 Sonic the Hedgehog (Mobile Decompilation): files: - /SData.bin: + "/SData.bin": tags: - save when: - os: windows - /UData.bin: + "/UData.bin": tags: - save when: - os: windows - /mods/modconfig.ini: + "/mods/modconfig.ini": tags: - config when: - os: windows - /settings.ini: + "/settings.ini": tags: - config when: - os: windows - /RSDKv4/SData.bin: + "/RSDKv4/SData.bin": tags: - save when: - os: linux - /RSDKv4/UData.bin: + "/RSDKv4/UData.bin": tags: - save when: - os: linux - /RSDKv4/settings.ini: + "/RSDKv4/settings.ini": tags: - config when: - os: linux Sonic the Hedgehog 2: files: - /SEGA Genesis Classics/0041: + "/SEGA Genesis Classics/0041": tags: - save when: - os: windows - /SEGA Genesis Classics/setup.dat: + "/SEGA Genesis Classics/setup.dat": tags: - config when: - os: windows - /SEGA Mega Drive Classics/0041: + "/SEGA Mega Drive Classics/0041": tags: - save when: - os: windows - /SEGA Mega Drive Classics/setup.dat: + "/SEGA Mega Drive Classics/setup.dat": tags: - config when: @@ -485073,54 +486354,54 @@ Sonic the Hedgehog 2: id: 71163 Sonic the Hedgehog 2 (Mobile Decompilation): files: - /SData.bin: + "/SData.bin": tags: - save when: - os: windows - /UData.bin: + "/UData.bin": tags: - save when: - os: windows - /mods/modconfig.ini: + "/mods/modconfig.ini": tags: - config when: - os: windows - /settings.ini: + "/settings.ini": tags: - config when: - os: windows - /RSDKv4/SData.bin: + "/RSDKv4/SData.bin": tags: - save when: - os: linux - /RSDKv4/UData.bin: + "/RSDKv4/UData.bin": tags: - save when: - os: linux - /RSDKv4/settings.ini: + "/RSDKv4/settings.ini": tags: - config when: - os: linux -'Sonic the Hedgehog 4: Episode I': +"Sonic the Hedgehog 4: Episode I": files: - /Sonic_vis_save.dat: + "/Sonic_vis_save.dat": tags: - save when: - os: windows - /data.txt: + "/data.txt": tags: - save when: - os: windows - /main.conf: + "/main.conf": tags: - config when: @@ -485128,22 +486409,22 @@ Sonic the Hedgehog 2 (Mobile Decompilation): installDir: Sonic the Hedgehog 4 EP 1: {} launch: - /SonicLauncher.exe: - - arguments: '-QuickBoot' + "/SonicLauncher.exe": + - arguments: "-QuickBoot" when: - store: steam - when: - store: steam steam: id: 202530 -'Sonic the Hedgehog 4: Episode II': +"Sonic the Hedgehog 4: Episode II": files: - /Config: + "/Config": tags: - config when: - os: windows - /Sonic_save.dat: + "/Sonic_save.dat": tags: - save when: @@ -485151,17 +486432,17 @@ Sonic the Hedgehog 2 (Mobile Decompilation): installDir: Sonic the Hedgehog 4 - EP 2: {} launch: - /Launcher.exe: - - arguments: '-q' + "/Launcher.exe": + - arguments: "-q" when: - store: steam - when: - store: steam steam: id: 203650 -Sonic's Schoolhouse: +"Sonic's Schoolhouse": files: - /SONICSH.INI: + "/SONICSH.INI": tags: - config - save @@ -485171,11 +486452,11 @@ Sonny: installDir: Sonny: {} launch: - /SonnyOSX.app/Contents/MacOS/SonnyOSX: + "/SonnyOSX.app/Contents/MacOS/SonnyOSX": - when: - os: mac store: steam - /SonnyWindows.exe: + "/SonnyWindows.exe": - when: - os: windows store: steam @@ -485187,16 +486468,16 @@ Sonority: installDir: Sonority_Alpha: {} launch: - /Sonority.app: + "/Sonority.app": - when: - os: mac store: steam - /Sonority.exe: + "/Sonority.exe": - when: - bit: 64 os: windows store: steam - /Sonority.x86_64: + "/Sonority.x86_64": - when: - bit: 64 os: linux @@ -485207,7 +486488,7 @@ Sons of Ra: installDir: Sons of Ra: {} launch: - /Sons of Ra.exe: + "/Sons of Ra.exe": - when: - os: windows store: steam @@ -485217,19 +486498,19 @@ Sons of Triskelion: installDir: Sons of Triskelion: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: id: 592060 Sons of the Forest: files: - /AppData/LocalLow/Endnight/SonsOfTheForest/Saves: + "/AppData/LocalLow/Endnight/SonsOfTheForest/Saves": tags: - save when: - os: windows - /AppData/LocalLow/Endnight/SonsOfTheForest/SonsGameSettings.cfg: + "/AppData/LocalLow/Endnight/SonsOfTheForest/SonsGameSettings.cfg": tags: - config when: @@ -485237,15 +486518,15 @@ Sons of the Forest: installDir: Sons Of The Forest: {} launch: - /SonsOfTheForest.exe: + "/SonsOfTheForest.exe": - when: - os: windows store: steam steam: id: 1326470 -'Sonya: The Great Adventure': +"Sonya: The Great Adventure": files: - /Sonya: + "/Sonya": tags: - config - save @@ -485254,11 +486535,11 @@ Sons of the Forest: installDir: Sonya The Great Adventure: {} launch: - /Sonya Steam.app: + "/Sonya Steam.app": - when: - os: mac store: steam - /Sonya.exe: + "/Sonya.exe": - when: - os: windows store: steam @@ -485268,51 +486549,51 @@ Sophica - Temples Of Mystery: installDir: Sophica Temples Of Mystery: {} launch: - /Sophica.exe: + "/Sophica.exe": - when: - os: windows store: steam steam: id: 1017600 -Sophie's Curse: +"Sophie's Curse": installDir: - Sophie's Curse: {} + "Sophie's Curse": {} launch: - /Sophies Curse.exe: + "/Sophies Curse.exe": - when: - bit: 64 os: windows store: steam steam: id: 446380 -Sophie's Dice: +"Sophie's Dice": installDir: Sophies Dice: {} launch: - /Sophie's Dice.exe: + "/Sophie's Dice.exe": - when: - os: windows store: steam - /Sophies Dice.x86_64: + "/Sophies Dice.x86_64": - when: - os: linux store: steam - /SophiesDice.app: + "/SophiesDice.app": - when: - os: mac store: steam steam: id: 1067350 -Sophie's Guardian: +"Sophie's Guardian": installDir: - Sophie's Guardian: {} + "Sophie's Guardian": {} steam: id: 530830 Sophont: installDir: Sophont: {} launch: - /WindowsNoEditor/Sophont.exe: + "/WindowsNoEditor/Sophont.exe": - when: - bit: 64 os: windows @@ -485326,17 +486607,17 @@ Sopwith VR: id: 998660 Sora: files: - /Fruitbat Factory/Sora/game.cfg: + "/Fruitbat Factory/Sora/game.cfg": tags: - config when: - os: windows - /Fruitbat Factory/Sora/game.rkg: + "/Fruitbat Factory/Sora/game.rkg": tags: - save when: - os: windows - /Fruitbat Factory/Sora/game.sys: + "/Fruitbat Factory/Sora/game.sys": tags: - save when: @@ -485344,14 +486625,14 @@ Sora: installDir: Sora: {} launch: - /sora.exe: + "/sora.exe": - when: - store: steam steam: id: 390730 Sorcerer King: files: - /My Games/SorcererKing: + "/My Games/SorcererKing": tags: - save when: @@ -485361,20 +486642,20 @@ Sorcerer King: installDir: Sorcerer King: {} launch: - /SorcererKing.exe: + "/SorcererKing.exe": - when: - os: windows store: steam steam: id: 241990 -'Sorcerer King: Rivals': +"Sorcerer King: Rivals": files: - /My Games/SorcererKingRivals/Prefs.ini: + "/My Games/SorcererKingRivals/Prefs.ini": tags: - config when: - os: windows - /My Games/SorcererKingRivals/Saves: + "/My Games/SorcererKingRivals/Saves": tags: - save when: @@ -485384,7 +486665,7 @@ Sorcerer King: installDir: Sorcerer King - Rivals: {} launch: - /SorcererKing-Rivals.exe: + "/SorcererKing-Rivals.exe": - when: - store: steam steam: @@ -485395,38 +486676,38 @@ Sorcerer Lord: installDir: SorcererLord: {} launch: - /dosbox_windows/dosbox.exe: - - arguments: \"SOR_LOR.EXE\" -conf \"dosbox_sorcerer_lord.conf\" -exit -noconsole -fullscreen + "/dosbox_windows/dosbox.exe": + - arguments: "\\\"SOR_LOR.EXE\\\" -conf \\\"dosbox_sorcerer_lord.conf\\\" -exit -noconsole -fullscreen" when: - os: windows store: steam - /runsorcererlord.sh: + "/runsorcererlord.sh": - when: - os: linux store: steam steam: id: 1150670 -Sorcerer's Dream: +"Sorcerer's Dream": installDir: - Sorcerer's Dream: {} + "Sorcerer's Dream": {} launch: - /mahoyume.exe: + "/mahoyume.exe": - when: - bit: 64 os: windows store: steam - /mahoyume_x86.exe: + "/mahoyume_x86.exe": - when: - bit: 32 os: windows store: steam steam: id: 656220 -Sorcerer's Path: +"Sorcerer's Path": installDir: - Sorcerer's Path: {} + "Sorcerer's Path": {} launch: - /Sorcerer's Path.exe: + "/Sorcerer's Path.exe": - when: - store: steam steam: @@ -485435,15 +486716,15 @@ Sorcery Is for Saps: installDir: Sorcery Is for Saps: {} launch: - /Sorcery Is for Saps.app/Contents/MacOS/Sorcery Is for Saps: + "/Sorcery Is for Saps.app/Contents/MacOS/Sorcery Is for Saps": - when: - os: mac store: steam - /SorceryIsForSaps: + "/SorceryIsForSaps": - when: - os: linux store: steam - /SorceryIsForSaps.exe: + "/SorceryIsForSaps.exe": - when: - os: windows store: steam @@ -485453,19 +486734,19 @@ Sorcery Jokers All Ages Version: installDir: Sorcery Jokers: {} launch: - /SJSEz.exe: + "/SJSEz.exe": - when: - store: steam steam: id: 703730 -'Sorcery Saga: Curse of the Great Curry God': +"Sorcery Saga: Curse of the Great Curry God": files: - /SorcerySaga.ini: + "/SorcerySaga.ini": tags: - config when: - os: windows - /My Games/Ghostlight Ltd/Sorcery Saga: + "/My Games/Ghostlight Ltd/Sorcery Saga": tags: - save when: @@ -485476,7 +486757,7 @@ Sorcery Jokers All Ages Version: installDir: Sorcery Saga Curse of the Great Curry God: {} launch: - /SorcerySaga.exe: + "/SorcerySaga.exe": - when: - os: windows store: steam @@ -485486,11 +486767,11 @@ Sorcery! Part 3: installDir: Sorcery! 3: {} launch: - /Sorcery! 3.app: + "/Sorcery! 3.app": - when: - os: mac store: steam - /Sorcery! 3.exe: + "/Sorcery! 3.exe": - when: - os: windows store: steam @@ -485500,11 +486781,11 @@ Sorcery! Part 4: installDir: Sorcery! 4: {} launch: - /Sorcery! 4.app: + "/Sorcery! 4.app": - when: - os: mac store: steam - /Sorcery! 4.exe: + "/Sorcery! 4.exe": - when: - os: windows store: steam @@ -485512,7 +486793,7 @@ Sorcery! Part 4: id: 504800 Sorcery! Parts 1 and 2: files: - /inkle/Sorcery: + "/inkle/Sorcery": tags: - save when: @@ -485520,29 +486801,29 @@ Sorcery! Parts 1 and 2: installDir: Sorcery!: {} launch: - /Sorcery!.app: + "/Sorcery!.app": - when: - os: mac store: steam - /Sorcery!.exe: + "/Sorcery!.exe": - when: - os: windows store: steam steam: id: 411000 -'Sordwin: The Evertree Saga': +"Sordwin: The Evertree Saga": installDir: Sordwin The Evertree Saga: {} launch: - /Sordwin The Evertree Saga.app/Contents/MacOS/Sordwin The Evertree Saga: + "/Sordwin The Evertree Saga.app/Contents/MacOS/Sordwin The Evertree Saga": - when: - os: mac store: steam - /SordwinTheEvertreeSaga: + "/SordwinTheEvertreeSaga": - when: - os: linux store: steam - /SordwinTheEvertreeSaga.exe: + "/SordwinTheEvertreeSaga.exe": - when: - os: windows store: steam @@ -485552,42 +486833,42 @@ Sore: installDir: SORE: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam steam: id: 690060 -'Sorgina: A Tale of Witches': +"Sorgina: A Tale of Witches": installDir: Sorgina A Tale of Witches: {} launch: - /SorginaATaleOfWitches.exe: + "/SorginaATaleOfWitches.exe": - when: - os: windows store: steam steam: id: 627420 -'Sorry, James': +"Sorry, James": installDir: SorryJames: {} launch: - '/Sorry, James.exe': + "/Sorry, James.exe": - when: - os: windows store: steam steam: id: 659190 -Sort 'Em: +"Sort 'Em": installDir: SortEm: {} steam: id: 594360 -'Sort Battle: Dungeon': +"Sort Battle: Dungeon": installDir: Sort Battle Dungeon: {} launch: - /SortBattle-x64-release.exe: + "/SortBattle-x64-release.exe": - when: - bit: 64 os: windows @@ -485598,11 +486879,11 @@ Sort the Cube: installDir: Sort the Cube: {} launch: - /sortthecube: + "/sortthecube": - when: - os: linux store: steam - /sortthecube.exe: + "/sortthecube.exe": - when: - os: windows store: steam @@ -485612,7 +486893,7 @@ Sos I Pie Sos: installDir: Mouse (Sneaking): {} launch: - /mouse.exe: + "/mouse.exe": - when: - os: windows store: steam @@ -485622,7 +486903,7 @@ Sos i pie sos 2 kycb edition: installDir: K-9 Dog Job: {} launch: - /dog.exe: + "/dog.exe": - when: - store: steam steam: @@ -485632,23 +486913,23 @@ SosSurvival: SosSurvival: {} steam: id: 528970 -'Sougetsu Ninja: Kikyou': +"Sougetsu Ninja: Kikyou": installDir: Sougetsu Ninja: {} launch: - /Kikyou.exe: + "/Kikyou.exe": - when: - store: steam steam: id: 1091040 Soul Axiom: files: - /userdata//279900/remote/GameData: + "/userdata//279900/remote/GameData": tags: - save when: - store: steam - /userdata//279900/remote/OptionsData: + "/userdata//279900/remote/OptionsData": tags: - config when: @@ -485656,20 +486937,20 @@ Soul Axiom: installDir: Soul Axiom: {} launch: - /SoulAxiom.app: + "/SoulAxiom.app": - when: - os: mac store: steam - /SoulAxiom.exe: + "/SoulAxiom.exe": - when: - os: windows store: steam - /SoulAxiom.x86: + "/SoulAxiom.x86": - when: - bit: 32 os: linux store: steam - /SoulAxiom.x86_64: + "/SoulAxiom.x86_64": - when: - bit: 64 os: linux @@ -485684,7 +486965,7 @@ Soul Eater: installDir: Shikhondo: {} launch: - /Shikhondo.exe: + "/Shikhondo.exe": - when: - os: windows store: steam @@ -485692,7 +486973,7 @@ Soul Eater: id: 720150 Soul Gambler: files: - /Soul Gambler/Local Storage: + "/Soul Gambler/Local Storage": tags: - save when: @@ -485700,7 +486981,7 @@ Soul Gambler: installDir: Soul Gambler: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -485710,7 +486991,7 @@ Soul Grabber: installDir: SoulGrabber: {} launch: - /SoulGrabber.exe: + "/SoulGrabber.exe": - when: - os: windows store: steam @@ -485718,23 +486999,23 @@ Soul Grabber: id: 788250 Soul Hackers 2: files: - /SEGA/SOULHACKERS2/Microsoft/SaveData/SYSTEM3DATA: + "/SEGA/SOULHACKERS2/Microsoft/SaveData/SYSTEM3DATA": tags: - config when: - os: windows store: microsoft - /SEGA/SOULHACKERS2/Steam//SaveData: + "/SEGA/SOULHACKERS2/Steam//SaveData": tags: - save when: - os: windows - /SEGA/SOULHACKERS2/Steam//SaveData/SYSTEMDATA: + "/SEGA/SOULHACKERS2/Steam//SaveData/SYSTEMDATA": tags: - config when: - os: windows - /Packages/SEGAofAmericaInc.ScarletPen_s751p9cej88mt/SystemAppData/wgs: + "/Packages/SEGAofAmericaInc.ScarletPen_s751p9cej88mt/SystemAppData/wgs": tags: - save when: @@ -485743,7 +487024,7 @@ Soul Hackers 2: installDir: SOUL HACKERS2: {} launch: - /SOUL HACKERS2.exe: + "/SOUL HACKERS2.exe": - when: - os: windows store: steam @@ -485753,15 +487034,15 @@ Soul Harvest: installDir: Soul Harvest: {} launch: - /soul-harvest.app: + "/soul-harvest.app": - when: - os: mac store: steam - /soul-harvest.exe: + "/soul-harvest.exe": - when: - os: windows store: steam - /start_linux32.sh: + "/start_linux32.sh": - when: - os: linux store: steam @@ -485771,24 +487052,24 @@ Soul Island: installDir: Soul Island: {} launch: - /Soul Island.exe: + "/Soul Island.exe": - when: - store: steam steam: id: 1056290 Soul King: files: - /Library/Application Support/soulking/*.dat: + "/Library/Application Support/soulking/*.dat": tags: - save when: - os: mac - /SavesDir/*.sav: + "/SavesDir/*.sav": tags: - save when: - os: linux - /soulking_source/sav0/*.dat: + "/soulking_source/sav0/*.dat": tags: - save when: @@ -485796,15 +487077,15 @@ Soul King: installDir: Soul King: {} launch: - /Soul King.app: + "/Soul King.app": - when: - os: mac store: steam - /Soul King.exe: + "/Soul King.exe": - when: - os: windows store: steam - /run.sh: + "/run.sh": - when: - os: linux store: steam @@ -485814,17 +487095,17 @@ Soul Locus: installDir: Soul Locus: {} launch: - /Soul Locus 64.exe: + "/Soul Locus 64.exe": - when: - bit: 64 os: windows store: steam - /Soul Locus.app: + "/Soul Locus.app": - when: - bit: 64 os: mac store: steam - /Soul Locus.exe: + "/Soul Locus.exe": - when: - bit: 32 os: windows @@ -485835,34 +487116,34 @@ Soul Nomad & the World Eaters: installDir: Soul Nomad & the World Eaters: {} launch: - /SoulNomad/SoulNomad.exe: + "/SoulNomad/SoulNomad.exe": - when: - bit: 64 os: windows store: steam - workingDir: /SoulNomad + workingDir: "/SoulNomad" steam: id: 1535610 Soul Reaper: installDir: Soul Reaper: {} launch: - /Soul Reaper.exe: + "/Soul Reaper.exe": - when: - bit: 64 os: windows store: steam steam: id: 1163660 -'Soul Reaper: Unreap Commander': +"Soul Reaper: Unreap Commander": installDir: Soul Reaper Unreap Commander: {} launch: - /Soul Reaper Unreap Commander.app: + "/Soul Reaper Unreap Commander.app": - when: - os: mac store: steam - /Soul Reaper Unreap Commander.exe: + "/Soul Reaper Unreap Commander.exe": - when: - os: windows store: steam @@ -485873,7 +487154,7 @@ Soul Rebellion: id: 918980 Soul Saber 2: files: - /save: + "/save": tags: - save when: @@ -485881,7 +487162,7 @@ Soul Saber 2: installDir: Soul Saber 2: {} launch: - /soulsaber2.exe: + "/soulsaber2.exe": - when: - store: steam steam: @@ -485892,12 +487173,12 @@ Soul Saga: installDir: Soul Saga: {} launch: - /Soul Saga.exe: + "/Soul Saga.exe": - when: - bit: 64 os: windows store: steam - /Soul Saga.x86_64: + "/Soul Saga.x86_64": - when: - bit: 64 os: linux @@ -485913,20 +487194,20 @@ Soul Searching: installDir: Soul Searching: {} launch: - /Soul Searching.app: + "/Soul Searching.app": - when: - os: mac store: steam - /Soul Searching.exe: + "/Soul Searching.exe": - when: - os: windows store: steam - /Soul Searching.x86: + "/Soul Searching.x86": - when: - bit: 32 os: linux store: steam - /Soul Searching.x86_64: + "/Soul Searching.x86_64": - when: - bit: 64 os: linux @@ -485946,17 +487227,17 @@ Soul Survival: Soul Survival: {} steam: id: 745620 -'Soul Tech: Millennium': +"Soul Tech: Millennium": steam: id: 967950 Soul Valley: files: - /soulvalley/Saved/Config: + "/soulvalley/Saved/Config": tags: - config when: - os: windows - /soulvalley/Saved/SaveGames: + "/soulvalley/Saved/SaveGames": tags: - save when: @@ -485964,7 +487245,7 @@ Soul Valley: installDir: Soul Valley: {} launch: - /soulvalley.exe: + "/soulvalley.exe": - when: - bit: 64 os: windows @@ -485975,7 +487256,7 @@ Soul at Stake: installDir: Soul at Stake: {} launch: - /SaS.exe: + "/SaS.exe": - when: - bit: 64 os: windows @@ -485986,12 +487267,12 @@ Soul for Two: installDir: Soul for two: {} launch: - /Game.exe: - - arguments: '--in-process-gpu' + "/Game.exe": + - arguments: "--in-process-gpu" when: - store: steam - /Soulfortwo.exe: - - arguments: '--in-process-gpu' + "/Soulfortwo.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam @@ -486004,21 +487285,21 @@ Soul room: installDir: soul_room: {} launch: - /soul_room.exe: + "/soul_room.exe": - when: - os: windows store: steam steam: id: 999360 -'Soul-Ivy: C0': +"Soul-Ivy: C0": installDir: Soul-Ivy C0: {} launch: - /Game.app: + "/Game.app": - when: - os: mac store: steam - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -486028,7 +487309,7 @@ SoulCraft: installDir: Soulcraft: {} launch: - /Soulcraft.exe: + "/Soulcraft.exe": - when: - os: windows store: steam @@ -486038,7 +487319,7 @@ SoulFrost: installDir: SoulFrost: {} launch: - /SoulFrost.exe: + "/SoulFrost.exe": - when: - store: steam steam: @@ -486047,20 +487328,20 @@ SoulHunt: installDir: SoulHunt: {} launch: - /SoulHunt.app/Contents/MacOS/SoulHunt: + "/SoulHunt.app/Contents/MacOS/SoulHunt": - when: - os: mac store: steam - /SoulHunt.exe: + "/SoulHunt.exe": - when: - os: windows store: steam - /SoulHunt.x86: + "/SoulHunt.x86": - when: - bit: 32 os: linux store: steam - /SoulHunt.x86_64: + "/SoulHunt.x86_64": - when: - bit: 64 os: linux @@ -486071,8 +487352,8 @@ SoulSaverOnline: installDir: SoulSaverOnline: {} launch: - /SoulSaver.exe: - - arguments: '-Steam_Login' + "/SoulSaver.exe": + - arguments: "-Steam_Login" when: - os: windows store: steam @@ -486082,15 +487363,15 @@ SoulSet: installDir: SoulSet: {} launch: - /SoulSet.app: + "/SoulSet.app": - when: - os: mac store: steam - /SoulSet.exe: + "/SoulSet.exe": - when: - os: windows store: steam - /SoulSet.sh: + "/SoulSet.sh": - when: - os: linux store: steam @@ -486100,7 +487381,7 @@ SoulWorker: installDir: Soulworker_TWN: {} launch: - /Soulworker_Launcher.exe: + "/Soulworker_Launcher.exe": - arguments: SoulWorker.exe --ip 20.94.35.245 --ip 20.88.118.59 --port 10000 when: - os: windows @@ -486111,7 +487392,7 @@ Souland: installDir: Souland: {} launch: - /Souland.exe: + "/Souland.exe": - when: - store: steam steam: @@ -486122,7 +487403,7 @@ Soulash: installDir: Soulash: {} launch: - /Soulash.exe: + "/Soulash.exe": - when: - os: windows store: steam @@ -486130,7 +487411,7 @@ Soulash: id: 1623210 Soulblight: files: - /Soulblight_Saves: + "/Soulblight_Saves": tags: - save when: @@ -486138,7 +487419,7 @@ Soulblight: installDir: Soulblight: {} launch: - /Soulblight.exe: + "/Soulblight.exe": - when: - os: windows store: steam @@ -486146,17 +487427,17 @@ Soulblight: id: 530930 Soulbringer: files: - /data/save: + "/data/save": tags: - save when: - os: windows - /soul.opt: + "/soul.opt": tags: - config when: - os: windows - /GOG/SoulBringer/LauncherConfig.ini: + "/GOG/SoulBringer/LauncherConfig.ini": tags: - config when: @@ -486166,22 +487447,22 @@ Soulbringer: installDir: Soulbringer: {} launch: - /SBLang.exe: + "/SBLang.exe": - when: - store: steam - /Soulbringer.exe: + "/Soulbringer.exe": - when: - store: steam steam: id: 283310 Soulcalibur VI: files: - /SoulcaliburVI/Saved/Config: + "/SoulcaliburVI/Saved/Config": tags: - config when: - os: windows - /SoulcaliburVI/Saved/SaveGames: + "/SoulcaliburVI/Saved/SaveGames": tags: - save when: @@ -486189,7 +487470,7 @@ Soulcalibur VI: installDir: SoulcaliburVI: {} launch: - /SoulcaliburVI/Binaries/Win64/SoulcaliburVI.exe: + "/SoulcaliburVI/Binaries/Win64/SoulcaliburVI.exe": - when: - bit: 64 os: windows @@ -486198,18 +487479,18 @@ Soulcalibur VI: id: 544750 Soulcaster: files: - /Library/Application Support/Soulcaster: + "/Library/Application Support/Soulcaster": tags: - config - save when: - os: mac - /SavedGames/Soulcaster/Soulcaster/AllPlayers: + "/SavedGames/Soulcaster/Soulcaster/AllPlayers": tags: - config when: - os: windows - /Soulcaster: + "/Soulcaster": tags: - config - save @@ -486221,19 +487502,19 @@ Soulcaster: id: 460970 Soulcaster II: files: - /Library/Application Support/Soulcaster2: + "/Library/Application Support/Soulcaster2": tags: - config - save when: - os: mac - /SavedGames/Soulcaster2/Soulcaster2/AllPlayers: + "/SavedGames/Soulcaster2/Soulcaster2/AllPlayers": tags: - config - save when: - os: windows - /Soulcaster2: + "/Soulcaster2": tags: - config - save @@ -486245,7 +487526,7 @@ Soulcaster II: id: 460970 Souldiers: files: - /AppData/LocalLow/RetroForgeGames/Souldiers: + "/AppData/LocalLow/RetroForgeGames/Souldiers": tags: - save when: @@ -486262,7 +487543,7 @@ Souldiers: installDir: Souldiers: {} launch: - /Souldiers.exe: + "/Souldiers.exe": - when: - os: windows store: steam @@ -486276,7 +487557,7 @@ Soulfire: installDir: Soulfire: {} launch: - /Soulfire.exe: + "/Soulfire.exe": - when: - bit: 64 os: windows @@ -486291,27 +487572,27 @@ SoulfulLand: installDir: SoulfulLand: {} launch: - /SoulfulLand.exe: + "/SoulfulLand.exe": - when: - os: windows store: steam steam: id: 1180840 -'Soulless: Ray of Hope': +"Soulless: Ray of Hope": gog: id: 1899751691 installDir: content: {} launch: - /Soulless.app: + "/Soulless.app": - when: - os: mac store: steam - /Soulless.exe: + "/Soulless.exe": - when: - os: windows store: steam - /Soulless.x86: + "/Soulless.x86": - when: - os: linux store: steam @@ -486321,8 +487602,8 @@ Soulmate: installDir: Soulmate: {} launch: - /Soulmate.exe: - - arguments: ' -NotInstalled' + "/Soulmate.exe": + - arguments: " -NotInstalled" when: - bit: 64 os: windows @@ -486336,7 +487617,7 @@ Souls: installDir: SOULS: {} launch: - /SOULS.exe: + "/SOULS.exe": - when: - bit: 64 os: windows @@ -486347,7 +487628,7 @@ Souls of Chronos: installDir: ChronosSouls: {} launch: - /ShiLing.exe: + "/ShiLing.exe": - when: - os: windows store: steam @@ -486357,7 +487638,7 @@ Soulscape: installDir: Soulscape: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -486367,15 +487648,15 @@ Soulslayer: installDir: Soulslayer: {} launch: - /Soulslayer: + "/Soulslayer": - when: - os: linux store: steam - /Soulslayer.app/Contents/MacOS/Soulslayer: + "/Soulslayer.app/Contents/MacOS/Soulslayer": - when: - os: mac store: steam - /Soulslayer.exe: + "/Soulslayer.exe": - when: - os: windows store: steam @@ -486383,12 +487664,12 @@ Soulslayer: id: 466810 Soulstice: files: - /Soulstice/Saved/Config/WindowsNoEditor: + "/Soulstice/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /Soulstice/Saved/SaveGames: + "/Soulstice/Saved/SaveGames": tags: - save when: @@ -486399,7 +487680,7 @@ Soulstice: installDir: Soulstice: {} launch: - /Soulstice/Binaries/Win64/Soulstice.exe: + "/Soulstice/Binaries/Win64/Soulstice.exe": - when: - bit: 64 os: windows @@ -486419,7 +487700,7 @@ Sound Shift: installDir: Sound Shift: {} launch: - /Sound Shift.exe: + "/Sound Shift.exe": - when: - store: steam steam: @@ -486428,7 +487709,7 @@ Sound Slide: installDir: Sound Slide: {} launch: - /SoundSlide.exe: + "/SoundSlide.exe": - when: - os: windows store: steam @@ -486438,7 +487719,7 @@ Sound Soarer: installDir: Sound Soarer: {} launch: - /Sound Soarer.exe: + "/Sound Soarer.exe": - when: - bit: 64 os: windows @@ -486447,17 +487728,17 @@ Sound Soarer: id: 729130 Sound of Drop - fall into poison -: files: - /game/saves: + "/game/saves": tags: - save when: - os: windows - /renpy/config.py: + "/renpy/config.py": tags: - config when: - os: windows - /renpy/Sound_of_Drop_FIP: + "/renpy/Sound_of_Drop_FIP": tags: - save when: @@ -486467,15 +487748,15 @@ Sound of Drop - fall into poison -: installDir: Sound of Drop - fall into poison -: {} launch: - /shizuku.app: + "/shizuku.app": - when: - os: mac store: steam - /shizuku.exe: + "/shizuku.exe": - when: - os: windows store: steam - /shizuku.sh: + "/shizuku.sh": - when: - os: linux store: steam @@ -486490,13 +487771,13 @@ SoundSelf: installDir: SoundSelf: {} launch: - /SoundSelf.exe: - - arguments: '-ini soundself\\ss_steam.ini' + "/SoundSelf.exe": + - arguments: "-ini soundself\\\\ss_steam.ini" when: - bit: 64 os: windows store: steam - /soundself_steam.app/Contents/MacOS/soundself_steam: + "/soundself_steam.app/Contents/MacOS/soundself_steam": - when: - os: mac store: steam @@ -486514,12 +487795,12 @@ Soundboxing: id: 517130 Soundfall: files: - /BeatShooter/Saved/Config/WindowsNoEditor/GameUserSettings.ini: + "/BeatShooter/Saved/Config/WindowsNoEditor/GameUserSettings.ini": tags: - config when: - os: windows - /BeatShooter/Saved/SaveGames//Autosave.sav: + "/BeatShooter/Saved/SaveGames//Autosave.sav": tags: - save when: @@ -486527,7 +487808,7 @@ Soundfall: installDir: SoundfallGame: {} launch: - /BeatShooter.exe: + "/BeatShooter.exe": - when: - bit: 64 os: windows @@ -486536,13 +487817,13 @@ Soundfall: id: 1608700 Soundodger+: files: - /com.onemrbean.soundodgerplus/Local Store: + "/com.onemrbean.soundodgerplus/Local Store": tags: - config - save when: - os: windows - /soundodger: + "/soundodger": tags: - save when: @@ -486550,11 +487831,11 @@ Soundodger+: installDir: Soundodger: {} launch: - /soundodgerplus.app: + "/soundodgerplus.app": - when: - os: mac store: steam - /soundodgerplus.exe: + "/soundodgerplus.exe": - when: - os: windows store: steam @@ -486564,15 +487845,15 @@ Sounds of Her Love: installDir: Sounds of Her Love: {} launch: - /Sounds of Her Love.app: + "/Sounds of Her Love.app": - when: - os: mac store: steam - /Sounds of Her Love.exe: + "/Sounds of Her Love.exe": - when: - os: windows store: steam - /Sounds of Her Love.sh: + "/Sounds of Her Love.sh": - when: - os: linux store: steam @@ -486582,21 +487863,21 @@ Sounds of Music: installDir: SoundsofMusic: {} launch: - /som.app/Contents/MacOS/som: + "/som.app/Contents/MacOS/som": - when: - os: mac store: steam - /som.exe: + "/som.exe": - when: - os: windows store: steam steam: id: 752880 -'Sounds of Talent: Kpop Adventure': +"Sounds of Talent: Kpop Adventure": installDir: Sounds of Talent Kpop Adventure: {} launch: - /Sounds of Talent.exe: + "/Sounds of Talent.exe": - when: - os: windows store: steam @@ -486606,15 +487887,15 @@ Sounds of Verity: installDir: Sounds of Verity: {} launch: - /SoundsOfVerity.app: + "/SoundsOfVerity.app": - when: - os: mac store: steam - /SoundsOfVerity.exe: + "/SoundsOfVerity.exe": - when: - os: windows store: steam - /SoundsOfVerity.sh: + "/SoundsOfVerity.sh": - when: - os: linux store: steam @@ -486630,25 +487911,25 @@ Soundscape VR: SoundscapeVR: {} steam: id: 636930 -Souno's Curse: +"Souno's Curse": gog: id: 2091609572 steam: id: 1711700 -'Soup: The Game': +"Soup: The Game": installDir: Soup: {} launch: - /Soup.app/Contents/MacOS/soup: + "/Soup.app/Contents/MacOS/soup": - when: - os: mac store: steam - /soup: + "/soup": - when: - bit: 64 os: linux store: steam - /soup.exe: + "/soup.exe": - when: - os: windows store: steam @@ -486656,7 +487937,7 @@ Souno's Curse: id: 436480 Source of Madness: files: - /AppData/LocalLow/Carry Castle/Source of Madness/saveslots//saveslot_*.sav: + "/AppData/LocalLow/Carry Castle/Source of Madness/saveslots//saveslot_*.sav": tags: - save when: @@ -486670,25 +487951,25 @@ Source of Madness: installDir: Source of Madness: {} launch: - /MAC BUILD.app/Contents/MacOS/Source of Madness: + "/MAC BUILD.app/Contents/MacOS/Source of Madness": - when: - os: mac store: steam - /Source of Madness.exe: + "/Source of Madness.exe": - when: - os: windows store: steam - /Source of Madness.x86_64: + "/Source of Madness.x86_64": - when: - os: linux store: steam steam: id: 1315610 -'Source: Beginning': +"Source: Beginning": installDir: Source beginning: {} launch: - /Source beginning/Game.exe: + "/Source beginning/Game.exe": - when: - os: windows store: steam @@ -486696,29 +487977,29 @@ Source of Madness: id: 936890 South Park: files: - /savegame.008: + "/savegame.008": tags: - save when: - os: windows South Park Rally: files: - /debug.log: + "/debug.log": tags: - config when: - os: windows - /sprally2.dat: + "/sprally2.dat": tags: - save when: - os: windows -'South Park: Snow Day!': +"South Park: Snow Day!": steam: id: 1214650 -'South Park: The Fractured but Whole': +"South Park: The Fractured but Whole": files: - /My Games/SouthPark - The Fractured but Whole: + "/My Games/SouthPark - The Fractured but Whole": tags: - config when: @@ -486726,15 +488007,15 @@ South Park Rally: installDir: South Park The Fractured But Whole: {} launch: - /SouthPark_TFBW.exe: - - arguments: '-uplay_steam_mode' + "/SouthPark_TFBW.exe": + - arguments: "-uplay_steam_mode" when: - store: steam steam: id: 488790 -'South Park: The Stick of Truth': +"South Park: The Stick of Truth": files: - /My Games/South Park - The Stick of Truth: + "/My Games/South Park - The Stick of Truth": tags: - config when: @@ -486742,8 +488023,8 @@ South Park Rally: installDir: South Park - The Stick of Truth: {} launch: - /South Park - The Stick of Truth.exe: - - arguments: '-steam' + "/South Park - The Stick of Truth.exe": + - arguments: "-steam" when: - store: steam steam: @@ -486757,7 +488038,7 @@ South of the Circle: installDir: South of the Circle: {} launch: - /SouthOfTheCircle.exe: + "/SouthOfTheCircle.exe": - when: - os: windows store: steam @@ -486767,20 +488048,20 @@ Southbound: installDir: SOUTHBOUND: {} launch: - /SOUTHBOUND/SOUTHBOUND.exe: + "/SOUTHBOUND/SOUTHBOUND.exe": - when: - os: windows store: steam steam: id: 1084730 -Sovereign's Will: +"Sovereign's Will": steam: id: 1047560 -'Sovereignty: Crown of Kings': +"Sovereignty: Crown of Kings": installDir: Sovereignty Crown of Kings: {} launch: - /autorun.exe: + "/autorun.exe": - when: - os: windows store: steam @@ -486790,7 +488071,7 @@ Soviet Bear Uni Adventure: installDir: Soviet Bear Uni Adventure: {} launch: - /Soviet Bear Uni Adventure.exe: + "/Soviet Bear Uni Adventure.exe": - when: - os: windows store: steam @@ -486800,7 +488081,7 @@ Soviet City: installDir: Soviet City: {} launch: - /sovietcity.exe: + "/sovietcity.exe": - when: - os: windows store: steam @@ -486810,11 +488091,11 @@ Soviet Jump Game: installDir: Soviet Jump Game: {} launch: - /SovietJumpGame.app: + "/SovietJumpGame.app": - when: - os: mac store: steam - /SovietJumpGame.exe: + "/SovietJumpGame.exe": - when: - bit: 64 os: windows @@ -486826,15 +488107,15 @@ Soviet Luna Park VR: Atomic Heart VR Adventures: {} steam: id: 811310 -'Soviet Monsters: Ekranoplans': +"Soviet Monsters: Ekranoplans": installDir: Soviet Monsters Ekranoplan: {} launch: - /ekranoplan.exe: + "/ekranoplan.exe": - when: - os: windows store: steam - /ekranoplans.app: + "/ekranoplans.app": - when: - os: mac store: steam @@ -486844,15 +488125,15 @@ Soviet Souls: installDir: Soviet Souls: {} launch: - /SS.app: + "/SS.app": - when: - os: mac store: steam - /SS.x86_64: + "/SS.x86_64": - when: - os: linux store: steam - /Soviet Souls.exe: + "/Soviet Souls.exe": - when: - os: windows store: steam @@ -486863,22 +488144,22 @@ Soyuz Constructors: id: 1120220 Sołtys: files: - /*.SVG: + "/*.SVG": tags: - save when: - os: dos - /CGE.CFG: + "/CGE.CFG": tags: - config when: - os: dos - /soltys.00*: + "/soltys.00*": tags: - save when: - os: windows - /soltys.ini: + "/soltys.ini": tags: - config when: @@ -486889,7 +488170,7 @@ Spa Mania: installDir: Spa Mania: {} launch: - /spamania.exe: + "/spamania.exe": - when: - store: steam steam: @@ -486898,7 +488179,7 @@ Spa Mania 2: installDir: Spa Mania 2: {} launch: - /spamania2.exe: + "/spamania2.exe": - when: - store: steam steam: @@ -486907,7 +488188,7 @@ Space - The Return of the Pixxelfrazzer: installDir: Space - The Return Of The Pixxelfrazzer: {} launch: - /Space.exe: + "/Space.exe": - when: - os: windows store: steam @@ -486919,7 +488200,7 @@ Space Accident: installDir: SPACE ACCIDENT: {} launch: - /SpaceAccident.exe: + "/SpaceAccident.exe": - when: - bit: 64 os: windows @@ -486932,15 +488213,15 @@ Space Ace: installDir: Space Ace: {} launch: - /Space Ace.app: + "/Space Ace.app": - when: - os: mac store: steam - /SpaceAce.exe: + "/SpaceAce.exe": - when: - os: windows store: steam - /SpaceAce.x86: + "/SpaceAce.x86": - when: - os: linux store: steam @@ -486950,7 +488231,7 @@ Space Adventure TD: installDir: Space Adventure TD: {} launch: - /Space Adventure TD.exe: + "/Space Adventure TD.exe": - when: - os: windows store: steam @@ -486960,7 +488241,7 @@ Space Ark: installDir: Space Ark: {} launch: - /SpaceArk.exe: + "/SpaceArk.exe": - when: - os: windows store: steam @@ -486970,7 +488251,7 @@ Space Armor 2: installDir: Space Armor 2: {} launch: - /SpaceArmor2.exe: + "/SpaceArmor2.exe": - when: - os: windows store: steam @@ -486980,13 +488261,13 @@ Space Ashes: installDir: Space Ashes: {} launch: - /space_ashes.exe: + "/space_ashes.exe": - when: - os: windows store: steam steam: id: 939540 -'Space Asteroid Shooter: Retro Achievement Hunter': +"Space Asteroid Shooter: Retro Achievement Hunter": steam: id: 699460 Space Badminton VR: @@ -486998,7 +488279,7 @@ Space Ball: installDir: Space Ball: {} launch: - /SpaceBall.exe: + "/SpaceBall.exe": - when: - os: windows store: steam @@ -487012,11 +488293,11 @@ Space Battle VR: Space Battle VR: {} steam: id: 982700 -'Space Battle: Humanity': +"Space Battle: Humanity": installDir: SPACE BATTLE Humanity: {} launch: - /start.bat: + "/start.bat": - when: - os: windows store: steam @@ -487026,7 +488307,7 @@ Space Battlecruiser: installDir: Space Battlecruiser: {} launch: - /SpaceBattlecruiser.exe: + "/SpaceBattlecruiser.exe": - when: - os: windows store: steam @@ -487034,7 +488315,7 @@ Space Battlecruiser: id: 673740 Space Beast Terror Fright: files: - /nornware/sbtf: + "/nornware/sbtf": tags: - save when: @@ -487042,7 +488323,7 @@ Space Beast Terror Fright: installDir: Space Beast Terror Fright: {} launch: - /sbtf_pub.exe: + "/sbtf_pub.exe": - when: - os: windows store: steam @@ -487052,7 +488333,7 @@ Space Beret: installDir: Space Beret: {} launch: - /Space Beret.exe: + "/Space Beret.exe": - when: - os: windows store: steam @@ -487062,7 +488343,7 @@ Space Between Worlds: installDir: Space Between Worlds: {} launch: - /Space Between Worlds.exe: + "/Space Between Worlds.exe": - when: - os: windows store: steam @@ -487077,7 +488358,7 @@ Space Blaster 8 Bit: installDir: SPACE BLASTER 8 BIT: {} launch: - /SPACE BLASTER 8 BIT.exe: + "/SPACE BLASTER 8 BIT.exe": - when: - store: steam steam: @@ -487086,15 +488367,15 @@ Space BloX: installDir: Space BloX: {} launch: - /Space_BloX: + "/Space_BloX": - when: - os: linux store: steam - /Space_BloX.app/Contents/MacOS/Space_BloX: + "/Space_BloX.app/Contents/MacOS/Space_BloX": - when: - os: mac store: steam - /Space_BloX.exe: + "/Space_BloX.exe": - when: - os: windows store: steam @@ -487109,15 +488390,15 @@ Space Bob vs. The Replicons: installDir: Space Bob vs. The Replicons: {} launch: - /SpaceBob.app: + "/SpaceBob.app": - when: - os: mac store: steam - /SpaceBob.exe: + "/SpaceBob.exe": - when: - os: windows store: steam - /SpaceBob.x86_64: + "/SpaceBob.x86_64": - when: - bit: 64 os: linux @@ -487128,7 +488409,7 @@ Space Bomb: installDir: Space Bomb: {} launch: - /Space Bomb.exe: + "/Space Bomb.exe": - when: - os: windows store: steam @@ -487138,7 +488419,7 @@ Space Bound: installDir: Space Bound: {} launch: - /SpaceBound2.0.exe: + "/SpaceBound2.0.exe": - when: - os: windows store: steam @@ -487148,7 +488429,7 @@ Space Break: installDir: Space Break: {} launch: - /space_break reload 2.blend.exe: + "/space_break reload 2.blend.exe": - when: - os: windows store: steam @@ -487158,7 +488439,7 @@ Space Bugs: installDir: Space Bugs: {} launch: - /Space Bugs.exe: + "/Space Bugs.exe": - when: - store: steam steam: @@ -487167,35 +488448,35 @@ Space Candy: installDir: Space Candy: {} launch: - /SpaceCandy.exe: + "/SpaceCandy.exe": - when: - os: windows store: steam steam: id: 1176190 -'Space Captain McCallery - Episode 1: Crash Landing': +"Space Captain McCallery - Episode 1: Crash Landing": installDir: Space Captain McCallery - Episode 1 Crash Landing: {} launch: - /CaptainMcCallery.app: + "/CaptainMcCallery.app": - when: - os: mac store: steam - /CaptainMcCallery.exe: + "/CaptainMcCallery.exe": - when: - os: windows store: steam steam: id: 852900 -'Space Captain McCallery - Episode 2: Pilgrims in Purple Moss': +"Space Captain McCallery - Episode 2: Pilgrims in Purple Moss": installDir: Space Captain McCallery - Episode 2 Pilgrims in Purple Moss: {} launch: - /Pilgrims in Purple Moss.exe: + "/Pilgrims in Purple Moss.exe": - when: - os: windows store: steam - /PurpleMoss.app: + "/PurpleMoss.app": - when: - os: mac store: steam @@ -487205,12 +488486,12 @@ Space Carrot: installDir: Space Carrot: {} launch: - /Space Carrot.exe: + "/Space Carrot.exe": - when: - bit: 64 os: windows store: steam - /Space Carrot.x86_64: + "/Space Carrot.x86_64": - when: - bit: 64 os: linux @@ -487221,7 +488502,7 @@ Space Cat: installDir: Space Cat: {} launch: - /Space Cat.app: + "/Space Cat.app": - when: - os: mac store: steam @@ -487230,31 +488511,31 @@ Space Cat: Space Challenge: steam: id: 836010 -'Space Channel 5 VR: Kinda Funky News Flash': +"Space Channel 5 VR: Kinda Funky News Flash": installDir: ch5vr: {} steam: id: 879140 -'Space Channel 5: Part 2': +"Space Channel 5: Part 2": files: - /SEGA/Space Channel 5 Part 2/SC5PART2_DAT: + "/SEGA/Space Channel 5 Part 2/SC5PART2_DAT": tags: - save when: - os: windows - /SEGA/Space Channel 5 Part 2/config.ini: + "/SEGA/Space Channel 5 Part 2/config.ini": tags: - config when: - os: windows -'Space Channel 5: Part 2 (Steam)': +"Space Channel 5: Part 2 (Steam)": files: - /*.xml: + "/*.xml": tags: - config when: - os: windows - /SEGA/Dreamcast Collection/Space Channel 5 Part 2/SC5PART2_DAT: + "/SEGA/Dreamcast Collection/Space Channel 5 Part 2/SC5PART2_DAT": tags: - save when: @@ -487262,11 +488543,11 @@ Space Challenge: installDir: Space Channel 5 Part 2: {} launch: - /AppLauncher.exe: - - arguments: '-bootgame' + "/AppLauncher.exe": + - arguments: "-bootgame" when: - store: steam - - arguments: '-bootlauncher' + - arguments: "-bootlauncher" when: - store: steam steam: @@ -487278,7 +488559,7 @@ Space Chip: installDir: Space Chip: {} launch: - /SpaceChip.exe: + "/SpaceChip.exe": - when: - bit: 64 os: windows @@ -487289,7 +488570,7 @@ Space Climber: installDir: Space Climber: {} launch: - /spaceclimber.exe: + "/spaceclimber.exe": - when: - store: steam steam: @@ -487298,7 +488579,7 @@ Space Codex: installDir: Space Codex: {} launch: - /nw.exe: + "/nw.exe": - when: - store: steam steam: @@ -487307,11 +488588,11 @@ Space Colonizers: installDir: Space Colonizers: {} launch: - /Space Colonizers!.exe: + "/Space Colonizers!.exe": - when: - os: windows store: steam - /Space Colonizers.app/Contents/MacOS/Space Colonizers!: + "/Space Colonizers.app/Contents/MacOS/Space Colonizers!": - when: - os: mac store: steam @@ -487319,12 +488600,12 @@ Space Colonizers: id: 850940 Space Colony: files: - /Space Colony: + "/Space Colony": tags: - config when: - os: windows - /Space Colony/users: + "/Space Colony/users": tags: - save when: @@ -487334,7 +488615,7 @@ Space Colony: installDir: Space Colony: {} launch: - /FFLauncher.exe: + "/FFLauncher.exe": - when: - os: windows store: steam @@ -487344,7 +488625,7 @@ Space Commander 9: installDir: Space Commander 9: {} launch: - /Space Commander 9.exe: + "/Space Commander 9.exe": - when: - os: windows store: steam @@ -487354,7 +488635,7 @@ Space Company Simulator: installDir: Space Company Simulator: {} launch: - /scs.exe: + "/scs.exe": - when: - store: steam steam: @@ -487368,7 +488649,7 @@ Space Cowboy: installDir: Space Cowboy: {} launch: - /spacecowboy.exe: + "/spacecowboy.exe": - when: - os: windows store: steam @@ -487378,7 +488659,7 @@ Space Cows: installDir: Space Cows: {} launch: - /SpaceCows.exe: + "/SpaceCows.exe": - when: - bit: 64 os: windows @@ -487390,17 +488671,17 @@ Space Crawl: id: 675330 Space Crew: files: - /.config/unity3d/Runner Duck/Space Crew: + "/.config/unity3d/Runner Duck/Space Crew": tags: - save when: - os: linux - /AppData/LocalLow/Runner Duck/Space Crew: + "/AppData/LocalLow/Runner Duck/Space Crew": tags: - save when: - os: windows - /Library/Application Support/Runner Duck/Space Crew: + "/Library/Application Support/Runner Duck/Space Crew": tags: - save when: @@ -487410,15 +488691,15 @@ Space Crew: installDir: SpaceCrew: {} launch: - /SpaceCrew.app/Contents/MacOS/SpaceCrew: + "/SpaceCrew.app/Contents/MacOS/SpaceCrew": - when: - os: mac store: steam - /SpaceCrew.exe: + "/SpaceCrew.exe": - when: - os: windows store: steam - /SpaceCrew.x86_64: + "/SpaceCrew.x86_64": - when: - bit: 64 os: linux @@ -487433,7 +488714,7 @@ Space Cruise: installDir: Space Cruise: {} launch: - /SpaceCruise.exe: + "/SpaceCruise.exe": - when: - os: windows store: steam @@ -487448,7 +488729,7 @@ Space Dance: installDir: Space Dance: {} launch: - /Space Dance.exe: + "/Space Dance.exe": - when: - os: windows store: steam @@ -487458,12 +488739,12 @@ Space Defenders: installDir: Kronorite: {} launch: - /Kronorite.exe: + "/Kronorite.exe": - when: - bit: 64 os: windows store: steam - /Kronorite.sh: + "/Kronorite.sh": - when: - bit: 64 os: linux @@ -487474,7 +488755,7 @@ Space Digger: installDir: Space Digger: {} launch: - /SpaceDigger.exe: + "/SpaceDigger.exe": - when: - os: windows store: steam @@ -487492,7 +488773,7 @@ Space Drift Squad: installDir: Space Drift Squad: {} launch: - /SpaceDriftSquad.exe: + "/SpaceDriftSquad.exe": - when: - os: windows store: steam @@ -487502,15 +488783,15 @@ Space Drifters 2D: installDir: Space Drifters 2D: {} launch: - /Space Drifters 2D.app: + "/Space Drifters 2D.app": - when: - os: mac store: steam - /Space Drifters 2D.exe: + "/Space Drifters 2D.exe": - when: - os: windows store: steam - /Space Drifters 2D.x86: + "/Space Drifters 2D.x86": - when: - os: linux store: steam @@ -487520,7 +488801,7 @@ Space Drop: installDir: Space Drop: {} launch: - /SpaceDrop.exe: + "/SpaceDrop.exe": - when: - os: windows store: steam @@ -487530,7 +488811,7 @@ Space Duke: installDir: Space Duke: {} launch: - /SpaceDuke.exe: + "/SpaceDuke.exe": - when: - bit: 64 os: windows @@ -487541,7 +488822,7 @@ Space Duty: installDir: Space Duty: {} launch: - /space_duty.exe: + "/space_duty.exe": - when: - os: windows store: steam @@ -487551,11 +488832,11 @@ Space Elite Force: installDir: Space Elite Force: {} launch: - /Space Elite Force.exe: + "/Space Elite Force.exe": - when: - os: windows store: steam - /Space Elite Force.x86_64: + "/Space Elite Force.x86_64": - when: - bit: 64 os: linux @@ -487566,11 +488847,11 @@ Space Elite Force II: installDir: Space Elite Force II: {} launch: - /SPACE ELITE FORCE II.exe: + "/SPACE ELITE FORCE II.exe": - when: - os: windows store: steam - /SPACE ELITE FORCE II.x86_64: + "/SPACE ELITE FORCE II.x86_64": - when: - bit: 64 os: linux @@ -487583,7 +488864,7 @@ Space Empires I: installDir: Space Empires I: {} launch: - /otvdm.exe: + "/otvdm.exe": - arguments: Space_Em/SPACEMP.EXE >nul 2>&1 when: - os: windows @@ -487596,7 +488877,7 @@ Space Empires II: installDir: Space Empires II: {} launch: - /otvdm.exe: + "/otvdm.exe": - arguments: Space_Em2/SPACEMP2.EXE when: - os: windows @@ -487609,7 +488890,7 @@ Space Empires III: installDir: Space Empires III: {} launch: - /SE3.EXE: + "/SE3.EXE": - when: - os: windows store: steam @@ -487617,12 +488898,12 @@ Space Empires III: id: 1430200 Space Empires IV: files: - /data: + "/data": tags: - config when: - os: windows - /savegame: + "/savegame": tags: - save when: @@ -487632,19 +488913,19 @@ Space Empires IV: installDir: Space Empires IV Deluxe: {} launch: - /se4/se4.exe: + "/se4/se4.exe": - when: - store: steam steam: id: 1610 Space Empires V: files: - /data: + "/data": tags: - config when: - os: windows - /savegame: + "/savegame": tags: - save when: @@ -487654,16 +488935,16 @@ Space Empires V: installDir: SpaceEmpiresV: {} launch: - /se5/se5.exe: + "/se5/se5.exe": - when: - store: steam steam: id: 1690 -'Space Empires: Starfury': +"Space Empires: Starfury": installDir: Space Empires Starfury: {} launch: - /starfury.exe: + "/starfury.exe": - when: - os: windows store: steam @@ -487671,12 +488952,12 @@ Space Empires V: id: 1380260 Space Engineers: files: - /SpaceEngineers/Saves: + "/SpaceEngineers/Saves": tags: - save when: - os: windows - /SpaceEngineers/SpaceEngineers.cfg: + "/SpaceEngineers/SpaceEngineers.cfg": tags: - config when: @@ -487684,25 +488965,25 @@ Space Engineers: installDir: SpaceEngineers: {} launch: - /Bin/SpaceEngineers.exe: + "/Bin/SpaceEngineers.exe": - when: - bit: 32 store: steam - workingDir: /Bin - /Bin64/SpaceEngineers.exe: + workingDir: "/Bin" + "/Bin64/SpaceEngineers.exe": - when: - bit: 64 os: windows store: steam - workingDir: /Bin64 + workingDir: "/Bin64" steam: id: 244850 Space Epic Untitled - Season 1: installDir: Space Epic Untitled: {} launch: - /SpaceEpicUntitled.exe: - - arguments: '-player' + "/SpaceEpicUntitled.exe": + - arguments: "-player" when: - os: windows store: steam @@ -487712,7 +488993,7 @@ Space Escape!: installDir: Space Escape: {} launch: - /Space Escape.exe: + "/Space Escape.exe": - when: - bit: 64 os: windows @@ -487723,7 +489004,7 @@ Space Expand: installDir: Space Expand: {} launch: - /Spaceexpand.exe: + "/Spaceexpand.exe": - when: - store: steam steam: @@ -487731,18 +489012,18 @@ Space Expand: Space Explorers: steam: id: 694170 -'Space Explorers: Reload': +"Space Explorers: Reload": steam: id: 896320 Space Farm: installDir: spacefarm: {} launch: - /SPACEFARM.app: + "/SPACEFARM.app": - when: - os: mac store: steam - /spacefarm.exe: + "/spacefarm.exe": - when: - os: windows store: steam @@ -487750,7 +489031,7 @@ Space Farm: id: 785430 Space Farmers: files: - /AppData/LocalLow/Bumpkin Brothers/Space Farmers/usersettings.xml: + "/AppData/LocalLow/Bumpkin Brothers/Space Farmers/usersettings.xml": tags: - config - save @@ -487759,15 +489040,15 @@ Space Farmers: installDir: SpaceFarmers: {} launch: - /SpaceFarmers.app: + "/SpaceFarmers.app": - when: - os: mac store: steam - /SpaceFarmers.exe: + "/SpaceFarmers.exe": - when: - os: windows store: steam - /SpaceFarmers.x86: + "/SpaceFarmers.x86": - when: - os: linux store: steam @@ -487781,21 +489062,24 @@ Space Fighter: installDir: Space Fighter: {} launch: - /Space Fighter.app: + "/Space Fighter.app": - when: - os: mac store: steam - /Space Fighter.exe: + "/Space Fighter.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam - /Space Fighter.x86: + "/Space Fighter.x86": - when: - bit: 32 os: linux store: steam - /Space Fighter.x86_64: + "/Space Fighter.x86_64": - when: - bit: 64 os: linux @@ -487806,7 +489090,7 @@ Space Fighters: installDir: Space Fighters: {} launch: - /Space Fighters.exe: + "/Space Fighters.exe": - when: - os: windows store: steam @@ -487821,7 +489105,7 @@ Space Flowers: installDir: Space Flowers: {} launch: - /rainbow.exe: + "/rainbow.exe": - when: - os: windows store: steam @@ -487829,7 +489113,7 @@ Space Flowers: id: 821480 Space Food Truck: files: - /AppData/LocalLow/One Man Left Studios/Space Food Truck: + "/AppData/LocalLow/One Man Left Studios/Space Food Truck": tags: - save when: @@ -487837,20 +489121,20 @@ Space Food Truck: installDir: Space Food Truck: {} launch: - /SFT.app: + "/SFT.app": - when: - os: mac store: steam - /SFT.exe: + "/SFT.exe": - when: - os: windows store: steam - /SFT.x86: + "/SFT.x86": - when: - bit: 32 os: linux store: steam - /SFT.x86_64: + "/SFT.x86_64": - when: - bit: 64 os: linux @@ -487861,7 +489145,7 @@ Space Force: installDir: Space Force: {} launch: - /SpaceForce.exe: + "/SpaceForce.exe": - when: - os: windows store: steam @@ -487871,8 +489155,8 @@ Space Fox Kimi: installDir: Space Fox Kimi: {} launch: - /Space Fox Kimi.exe: - - arguments: '--in-process-gpu' + "/Space Fox Kimi.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam @@ -487882,7 +489166,7 @@ Space Geekz - The Crunchy Flakes Conspiracy: installDir: Space Geekz - The Crunchy Flakes Conspiracy: {} launch: - /Space Geekz Launcher.exe: + "/Space Geekz Launcher.exe": - when: - os: windows store: steam @@ -487892,7 +489176,7 @@ Space Ghost Pirate Zombie Slayer: installDir: Space Ghost Pirate Zombie Slayer: {} launch: - /SGPZS.exe: + "/SGPZS.exe": - when: - store: steam steam: @@ -487901,7 +489185,7 @@ Space Giraffe: installDir: Space Giraffe: {} launch: - /SpaceGiraffePC.exe: + "/SpaceGiraffePC.exe": - when: - store: steam steam: @@ -487913,17 +489197,17 @@ Space Gladiator: installDir: Space Gladiator: {} launch: - /space_gladiator.exe: + "/space_gladiator.exe": - when: - os: windows store: steam steam: id: 965110 -'Space Gladiators: Escaping Tartarus': +"Space Gladiators: Escaping Tartarus": installDir: Space Gladiators: {} launch: - /SpaceGladiators.exe: + "/SpaceGladiators.exe": - when: - os: windows store: steam @@ -487933,16 +489217,19 @@ Space God: installDir: SpaceGod: {} launch: - /SpaceGod.app: + "/SpaceGod.app": - when: - os: mac store: steam - /SpaceGod.exe: + "/SpaceGod.exe": - when: - bit: 32 os: windows store: steam - /SpaceGod.sh: + - bit: 64 + os: windows + store: steam + "/SpaceGod.sh": - when: - os: linux store: steam @@ -487955,15 +489242,15 @@ Space Grunts: installDir: SpaceGrunts: {} launch: - /spacegrunts: + "/spacegrunts": - when: - os: linux store: steam - /spacegrunts.app: + "/spacegrunts.app": - when: - os: mac store: steam - /spacegrunts.exe: + "/spacegrunts.exe": - when: - os: windows store: steam @@ -487973,15 +489260,15 @@ Space Grunts 2: installDir: Space Grunts 2: {} launch: - /spacegrunts2: + "/spacegrunts2": - when: - os: linux store: steam - /spacegrunts2.app: + "/spacegrunts2.app": - when: - os: mac store: steam - /spacegrunts2.exe: + "/spacegrunts2.exe": - when: - os: windows store: steam @@ -487992,12 +489279,12 @@ Space Guard: id: 975010 Space Hack: files: - /save: + "/save": tags: - save when: - os: windows - /save/config: + "/save/config": tags: - config when: @@ -488007,7 +489294,7 @@ Space Hack: installDir: Space Hack: {} launch: - /main.exe: + "/main.exe": - when: - os: windows store: steam @@ -488021,15 +489308,15 @@ Space Hamster in Turmoil: installDir: Space Hamster in Turmoil: {} launch: - /Space_Hamster_in_Turmoil.app: + "/Space_Hamster_in_Turmoil.app": - when: - os: mac store: steam - /Space_Hamster_in_Turmoil.exe: + "/Space_Hamster_in_Turmoil.exe": - when: - os: windows store: steam - /Space_Hamster_in_Turmoil.sh: + "/Space_Hamster_in_Turmoil.sh": - when: - os: linux store: steam @@ -488037,22 +489324,22 @@ Space Hamster in Turmoil: id: 888150 Space Harrier II: files: - /SEGA Genesis Classics/0009: + "/SEGA Genesis Classics/0009": tags: - save when: - os: windows - /SEGA Genesis Classics/setup.dat: + "/SEGA Genesis Classics/setup.dat": tags: - config when: - os: windows - /SEGA Mega Drive Classics/0009: + "/SEGA Mega Drive Classics/0009": tags: - save when: - os: windows - /SEGA Mega Drive Classics/setup.dat: + "/SEGA Mega Drive Classics/setup.dat": tags: - config when: @@ -488063,7 +489350,7 @@ Space Haste 2001: installDir: Space Haste 2: {} launch: - /SpaceHaste.exe: + "/SpaceHaste.exe": - when: - os: windows store: steam @@ -488071,17 +489358,17 @@ Space Haste 2001: id: 2226940 Space Haven: files: - /savegames: + "/savegames": tags: - save when: - os: windows - /settings.xml: + "/settings.xml": tags: - config when: - os: windows - /Library/Application Support/SpaceHaven/settings.xml: + "/Library/Application Support/SpaceHaven/settings.xml": tags: - config when: @@ -488091,15 +489378,15 @@ Space Haven: installDir: SpaceHaven: {} launch: - /spacehaven: + "/spacehaven": - when: - os: linux store: steam - /spacehaven.app: + "/spacehaven.app": - when: - os: mac store: steam - /spacehaven.exe: + "/spacehaven.exe": - when: - os: windows store: steam @@ -488114,7 +489401,7 @@ Space Hit: installDir: Space Hit: {} launch: - /game.exe: + "/game.exe": - when: - bit: 64 os: windows @@ -488131,7 +489418,7 @@ Space Hole: installDir: Space Hole: {} launch: - /SpaceHole.exe: + "/SpaceHole.exe": - when: - os: windows store: steam @@ -488145,7 +489432,7 @@ Space Hole 2018: installDir: Space Hole 2018: {} launch: - /SpaceHole2018.exe: + "/SpaceHole2018.exe": - when: - bit: 64 os: windows @@ -488156,7 +489443,7 @@ Space Hotel: installDir: Space Hotel: {} launch: - /SpaceHotel.exe: + "/SpaceHotel.exe": - when: - bit: 64 os: windows @@ -488165,12 +489452,12 @@ Space Hotel: id: 564900 Space Hulk (2013): files: - /.config/Full Control/SpaceHulk: + "/.config/Full Control/SpaceHulk": tags: - save when: - os: linux - /Full Control/SpaceHulk: + "/Full Control/SpaceHulk": tags: - save when: @@ -488178,23 +489465,23 @@ Space Hulk (2013): installDir: Space Hulk: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam - /game.x86: + "/game.x86": - when: - os: linux store: steam - /sh.app: + "/sh.app": - when: - os: mac store: steam steam: id: 242570 -'Space Hulk: Ascension': +"Space Hulk: Ascension": files: - /Full Control/SpaceHulkAscension: + "/Full Control/SpaceHulkAscension": tags: - save when: @@ -488208,15 +489495,15 @@ Space Hulk (2013): installDir: Space Hulk Ascension: {} launch: - /game.app: + "/game.app": - when: - os: mac store: steam - /game.exe: + "/game.exe": - when: - os: windows store: steam - /game.x86: + "/game.x86": - when: - os: linux store: steam @@ -488226,14 +489513,14 @@ Space Hulk (2013): - config steam: id: 317620 -'Space Hulk: Deathwing': +"Space Hulk: Deathwing": files: - /SpaceHulkGame/Saved/Config/WindowsNoEditor: + "/SpaceHulkGame/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /SpaceHulkGame/Saved/SaveGames: + "/SpaceHulkGame/Saved/SaveGames": tags: - save when: @@ -488241,19 +489528,19 @@ Space Hulk (2013): installDir: Space Hulk Deathwing: {} launch: - /SpaceHulkGame.exe: + "/SpaceHulkGame.exe": - when: - store: steam steam: id: 298900 -'Space Hulk: Deathwing - Enhanced Edition': +"Space Hulk: Deathwing - Enhanced Edition": files: - /SpaceHulkEnhanced/Saved/Config/WindowsNoEditor: + "/SpaceHulkEnhanced/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /SpaceHulkEnhanced/Saved/SaveGames: + "/SpaceHulkEnhanced/Saved/SaveGames": tags: - save when: @@ -488263,19 +489550,19 @@ Space Hulk (2013): installDir: Space Hulk Deathwing - Enhanced Edition: {} launch: - /SpaceHulkGame.exe: + "/SpaceHulkGame.exe": - when: - store: steam steam: id: 816090 -'Space Hulk: Tactics': +"Space Hulk: Tactics": files: - /SpaceHulk2/Saved/Config: + "/SpaceHulk2/Saved/Config": tags: - config when: - os: windows - /SpaceHulk2/Saved/SaveGames: + "/SpaceHulk2/Saved/SaveGames": tags: - save when: @@ -488283,13 +489570,13 @@ Space Hulk (2013): installDir: Space Hulk Tactics: {} launch: - /SpaceHulk2.exe: + "/SpaceHulk2.exe": - when: - os: windows store: steam steam: id: 492230 -'Space Hulk: Vengeance of the Blood Angels': +"Space Hulk: Vengeance of the Blood Angels": registry: HKEY_CURRENT_USER/Software/Electronic Arts/Key Game/Space Hulk - VOTBA/1.4: tags: @@ -488298,7 +489585,7 @@ Space Hunt: installDir: SPACEHUNT: {} launch: - /SPACEHUNT.exe: + "/SPACEHUNT.exe": - when: - os: windows store: steam @@ -488307,7 +489594,7 @@ Space Hunt: Space Hurricane Storm: steam: id: 864260 -'Space Hurricane Storm: 2 Edition': +"Space Hurricane Storm: 2 Edition": steam: id: 904350 Space Impact Glitch: @@ -488317,15 +489604,15 @@ Space Impossible: installDir: Space Impossible: {} launch: - /SpaceImpossible.app: + "/SpaceImpossible.app": - when: - os: mac store: steam - /SpaceImpossible.exe: + "/SpaceImpossible.exe": - when: - os: windows store: steam - /SpaceImpossible.x86_64: + "/SpaceImpossible.x86_64": - when: - os: linux store: steam @@ -488336,7 +489623,7 @@ Space Incident: id: 521940 Space Invaders Extreme: files: - /AppData/LocalLow/TAITO Corporation_/SPACE INVADERS EXTREME: + "/AppData/LocalLow/TAITO Corporation_/SPACE INVADERS EXTREME": tags: - save when: @@ -488344,7 +489631,7 @@ Space Invaders Extreme: installDir: Space Invaders Extreme: {} launch: - /SIE_x64.exe: + "/SIE_x64.exe": - when: - bit: 64 os: windows @@ -488359,15 +489646,15 @@ Space Jammers: installDir: Space Jammers: {} launch: - /Space Jammers.app/Contents/MacOS/Mac_Runner: + "/Space Jammers.app/Contents/MacOS/Mac_Runner": - when: - os: mac store: steam - /SpaceJammers.exe: + "/SpaceJammers.exe": - when: - os: windows store: steam - /SpaceJammers/runner: + "/SpaceJammers/runner": - when: - os: linux store: steam @@ -488385,11 +489672,11 @@ Space Journey (2019): installDir: Spacecell: {} launch: - /Spacecell/Spacecell.app: + "/Spacecell/Spacecell.app": - when: - os: mac store: steam - /Spacecell/Spacecell.exe: + "/Spacecell/Spacecell.exe": - when: - bit: 64 os: windows @@ -488417,25 +489704,25 @@ Space Launch Engineer: installDir: Space Launch Engineer: {} launch: - /Space Launch Engineer.app/Contents/MacOS/Space Launch Engineer: + "/Space Launch Engineer.app/Contents/MacOS/Space Launch Engineer": - when: - os: mac store: steam - /Space Launch Engineer.exe: + "/Space Launch Engineer.exe": - when: - os: windows store: steam steam: id: 785680 -'Space Legends: At the Edge of the Universe': +"Space Legends: At the Edge of the Universe": installDir: Space Legends At the Edge of the Universe: {} launch: - /Space Legends.app: + "/Space Legends.app": - when: - os: mac store: steam - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -488448,7 +489735,7 @@ Space Live - Advent of the Net Idols: installDir: Space Live - Advent of the Net Idols: {} launch: - /SL.exe: + "/SL.exe": - when: - store: steam steam: @@ -488457,7 +489744,7 @@ Space Love Delta: installDir: Space Love Delta: {} launch: - /SpaceLoveDelta.exe: + "/SpaceLoveDelta.exe": - when: - os: windows store: steam @@ -488470,7 +489757,7 @@ Space Mayhem: installDir: Space Mayhem: {} launch: - /Space Mayhem.exe: + "/Space Mayhem.exe": - when: - os: windows store: steam @@ -488480,7 +489767,7 @@ Space Maze: installDir: Space Maze: {} launch: - /Maze.exe: + "/Maze.exe": - when: - os: windows store: steam @@ -488495,7 +489782,7 @@ Space Mechanic Simulator: installDir: Space Mechanic Simulator: {} launch: - /SpaceMechanicSimulator.exe: + "/SpaceMechanicSimulator.exe": - when: - os: windows store: steam @@ -488505,31 +489792,31 @@ Space Mega Force Man: installDir: Space Mega Force Man: {} launch: - /SpaceShip.exe: + "/SpaceShip.exe": - when: - os: windows store: steam steam: id: 1232260 -'Space Mercenary Shooter : Episode 1': +"Space Mercenary Shooter : Episode 1": installDir: Space Mercenary Shooter Episode 1: {} launch: - /SMS.exe: + "/SMS.exe": - when: - os: windows store: steam steam: id: 1096630 -'Space Merchants: Arena': +"Space Merchants: Arena": installDir: Space Merchants Arena: {} launch: - /SMA.app: + "/SMA.app": - when: - os: mac store: steam - /SMA.x86: + "/SMA.x86": - when: - os: linux store: steam @@ -488537,12 +489824,12 @@ Space Mega Force Man: id: 548080 Space Mercs: files: - /unity3d/BeardedGiantGames/SpaceMercs/*.data: + "/unity3d/BeardedGiantGames/SpaceMercs/*.data": tags: - save when: - os: linux - /unity3d/BeardedGiantGames/SpaceMercs/prefs: + "/unity3d/BeardedGiantGames/SpaceMercs/prefs": tags: - config when: @@ -488550,11 +489837,11 @@ Space Mercs: installDir: SpaceMercs: {} launch: - /SpaceMercs.exe: + "/SpaceMercs.exe": - when: - os: windows store: steam - /Space_Mercs.x86_64: + "/Space_Mercs.x86_64": - when: - os: linux store: steam @@ -488568,7 +489855,7 @@ Space Mining Clicker: id: 1027980 Space Moth DX: files: - /Space_Moth_DX/space_moth.ini: + "/Space_Moth_DX/space_moth.ini": tags: - config when: @@ -488576,7 +489863,7 @@ Space Moth DX: installDir: Space Moth DX: {} launch: - /Space Moth DX.exe: + "/Space Moth DX.exe": - when: - os: windows store: steam @@ -488586,19 +489873,19 @@ Space Mouse 2: installDir: Space Mouse 2: {} launch: - /LRUDYAM.exe: + "/LRUDYAM.exe": - when: - store: steam - /PC8001/SPACEMOUSE.exe: + "/PC8001/SPACEMOUSE.exe": - when: - store: steam steam: id: 1282890 -'Space Mouse: 35th Anniversary Edition': +"Space Mouse: 35th Anniversary Edition": installDir: SPACE MOUSE: {} launch: - /SPACEMOUSE.exe: + "/SPACEMOUSE.exe": - when: - store: steam steam: @@ -488620,7 +489907,7 @@ Space Orb: installDir: Space Orb: {} launch: - /Spaceorb.exe: + "/Spaceorb.exe": - when: - os: windows store: steam @@ -488630,7 +489917,7 @@ Space Overlords: installDir: Space Overlords: {} launch: - /SpaceOverlords/SpaceOverlords.exe: + "/SpaceOverlords/SpaceOverlords.exe": - when: - os: windows store: steam @@ -488645,20 +489932,20 @@ Space Panic Defense: installDir: Space Panic Defense: {} launch: - /Space Panic Defense.app: + "/Space Panic Defense.app": - when: - os: mac store: steam - /Space Panic Defense.exe: + "/Space Panic Defense.exe": - when: - os: windows store: steam - /Space Panic Defense.x86: + "/Space Panic Defense.x86": - when: - bit: 32 os: linux store: steam - /Space Panic Defense.x86_64: + "/Space Panic Defense.x86_64": - when: - bit: 64 os: linux @@ -488674,47 +489961,47 @@ Space Pilgrim Academy: installDir: Space Pilgrim Academy: {} launch: - /nw.exe: - - arguments: '--in-process-gpu' + "/nw.exe": + - arguments: "--in-process-gpu" when: - store: steam steam: id: 694370 -'Space Pilgrim Academy: Reunion': +"Space Pilgrim Academy: Reunion": installDir: Space Pilgrim Academy Reunion: {} launch: - /nw.exe: + "/nw.exe": - when: - store: steam steam: id: 1020590 -'Space Pilgrim Academy: Year 2': +"Space Pilgrim Academy: Year 2": installDir: Space Pilgrim Academy Year 2: {} launch: - /nw.exe: + "/nw.exe": - when: - store: steam steam: id: 831120 -'Space Pilgrim Academy: Year 3': +"Space Pilgrim Academy: Year 3": installDir: Space Pilgrim Academy Year 3: {} launch: - /nw.exe: + "/nw.exe": - when: - store: steam steam: id: 936650 -'Space Pilgrim Episode I: Alpha Centauri': +"Space Pilgrim Episode I: Alpha Centauri": files: - /Game.ini: + "/Game.ini": tags: - config when: - os: windows - /Save*.rvdata2: + "/Save*.rvdata2": tags: - save when: @@ -488722,34 +490009,34 @@ Space Pilgrim Academy: installDir: Space Pilgrim Episode One Alpha Centauri: {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: id: 429470 -'Space Pilgrim Episode II: Epsilon Indi': +"Space Pilgrim Episode II: Epsilon Indi": installDir: Space Pilgrim Episode Two: {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: id: 431710 -'Space Pilgrim Episode III: Delta Pavonis': +"Space Pilgrim Episode III: Delta Pavonis": installDir: Space Pilgrim Episode III Delta Pavonis: {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: id: 439250 -'Space Pilgrim Episode IV: Sol': +"Space Pilgrim Episode IV: Sol": installDir: Space Pilgrim Episode IV Sol: {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: @@ -488758,7 +490045,7 @@ Space Pirate Amai: installDir: Space Pirate Amai: {} launch: - /Amai.exe: + "/Amai.exe": - when: - os: windows store: steam @@ -488771,13 +490058,13 @@ Space Pirate Trainer: id: 418650 Space Pirates and Zombies: files: - /MinMaxGames/SpacePiratesAndZombies: + "/MinMaxGames/SpacePiratesAndZombies": tags: - config - save when: - os: windows - /SpacePiratesAndZombies: + "/SpacePiratesAndZombies": tags: - config - save @@ -488788,15 +490075,15 @@ Space Pirates and Zombies: installDir: Space Pirates and Zombies: {} launch: - /SPAZ: + "/SPAZ": - when: - os: linux store: steam - /SPAZ.app: + "/SPAZ.app": - when: - os: mac store: steam - /SpazGame.exe: + "/SpazGame.exe": - when: - os: windows store: steam @@ -488804,17 +490091,17 @@ Space Pirates and Zombies: id: 107200 Space Pirates and Zombies 2: files: - /.config/unity3d/MinMax Games/SPAZ 2/Cloud: + "/.config/unity3d/MinMax Games/SPAZ 2/Cloud": tags: - config when: - os: linux - /AppData/LocalLow/MinMax Games/SPAZ 2/Cloud: + "/AppData/LocalLow/MinMax Games/SPAZ 2/Cloud": tags: - save when: - os: windows - /AppData/LocalLow/MinMax Games/SPAZ 2/Options/Options.opt: + "/AppData/LocalLow/MinMax Games/SPAZ 2/Options/Options.opt": tags: - config when: @@ -488827,24 +490114,24 @@ Space Pirates and Zombies 2: installDir: SPAZ2: {} launch: - /SPAZ2_32.exe: - - arguments: '-vrmode none' + "/SPAZ2_32.exe": + - arguments: "-vrmode none" when: - bit: 32 os: windows store: steam - /SPAZ2_64.exe: - - arguments: '-vrmode none' + "/SPAZ2_64.exe": + - arguments: "-vrmode none" when: - bit: 64 os: windows store: steam - /SPAZ2_Linux.x86_64: + "/SPAZ2_Linux.x86_64": - when: - bit: 64 os: linux store: steam - /SPAZ2_Mac.app: + "/SPAZ2_Mac.app": - when: - os: mac store: steam @@ -488852,19 +490139,19 @@ Space Pirates and Zombies 2: id: 252470 Space Punks: files: - /K1/Saved/Config/WindowsNoEditor: + "/K1/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows -'Space Quest 6: Roger Wilco in The Spinal Frontier': +"Space Quest 6: Roger Wilco in The Spinal Frontier": files: - /sq6: + "/sq6": tags: - config when: - os: windows - /sq6/SQ6SG.***: + "/sq6/SQ6SG.***": tags: - save when: @@ -488874,25 +490161,25 @@ Space Punks: installDir: Space Quest Collection: {} launch: - /2016_SpaceQuestCollection/SierraLauncher.exe: + "/2016_SpaceQuestCollection/SierraLauncher.exe": - when: - store: steam - workingDir: /2016_SpaceQuestCollection + workingDir: "/2016_SpaceQuestCollection" steam: id: 10110 -'Space Quest I: Roger Wilco in The Sarien Encounter': +"Space Quest I: Roger Wilco in The Sarien Encounter": installDir: Space Quest Collection: {} launch: - /2016_SpaceQuestCollection/SierraLauncher.exe: + "/2016_SpaceQuestCollection/SierraLauncher.exe": - when: - store: steam - workingDir: /2016_SpaceQuestCollection + workingDir: "/2016_SpaceQuestCollection" steam: id: 10110 -'Space Quest II: Chapter II - Vohaul''s Revenge': +"Space Quest II: Chapter II - Vohaul's Revenge": files: - /sq2: + "/sq2": tags: - config - save @@ -488903,32 +490190,32 @@ Space Punks: installDir: Space Quest Collection: {} launch: - /2016_SpaceQuestCollection/SierraLauncher.exe: + "/2016_SpaceQuestCollection/SierraLauncher.exe": - when: - store: steam - workingDir: /2016_SpaceQuestCollection + workingDir: "/2016_SpaceQuestCollection" steam: id: 10110 -'Space Quest II: Roger Wilco in Vohaul''s Revenge': +"Space Quest II: Roger Wilco in Vohaul's Revenge": files: - /acsetup.cfg: + "/acsetup.cfg": tags: - config when: - os: windows - /sq2.cfg: + "/sq2.cfg": tags: - config when: - os: windows - /Saved Games/Space Quest 2 VGA: + "/Saved Games/Space Quest 2 VGA": tags: - save when: - os: windows -'Space Quest III: The Pirates of Pestulon': +"Space Quest III: The Pirates of Pestulon": files: - /sq3: + "/sq3": tags: - config - save @@ -488939,20 +490226,20 @@ Space Punks: installDir: Space Quest Collection: {} launch: - /2016_SpaceQuestCollection/SierraLauncher.exe: + "/2016_SpaceQuestCollection/SierraLauncher.exe": - when: - store: steam - workingDir: /2016_SpaceQuestCollection + workingDir: "/2016_SpaceQuestCollection" steam: id: 10110 -'Space Quest IV: Roger Wilco and the Time Rippers': +"Space Quest IV: Roger Wilco and the Time Rippers": files: - /sq4: + "/sq4": tags: - config when: - os: windows - /sq4/SQ4SG.***: + "/sq4/SQ4SG.***": tags: - save when: @@ -488962,20 +490249,20 @@ Space Punks: installDir: Space Quest Collection: {} launch: - /2016_SpaceQuestCollection/SierraLauncher.exe: + "/2016_SpaceQuestCollection/SierraLauncher.exe": - when: - store: steam - workingDir: /2016_SpaceQuestCollection + workingDir: "/2016_SpaceQuestCollection" steam: id: 10110 -'Space Quest V: Roger Wilco - The Next Mutation': +"Space Quest V: Roger Wilco - The Next Mutation": files: - /sq5: + "/sq5": tags: - config when: - os: windows - /sq5/SQ5SG.***: + "/sq5/SQ5SG.***": tags: - save when: @@ -488985,15 +490272,15 @@ Space Punks: installDir: Space Quest Collection: {} launch: - /2016_SpaceQuestCollection/SierraLauncher.exe: + "/2016_SpaceQuestCollection/SierraLauncher.exe": - when: - store: steam - workingDir: /2016_SpaceQuestCollection + workingDir: "/2016_SpaceQuestCollection" steam: id: 10110 -'Space Quest: Chapter I - The Sarien Encounter': +"Space Quest: Chapter I - The Sarien Encounter": files: - /SQ1SG.***: + "/SQ1SG.***": tags: - save when: @@ -489003,21 +490290,21 @@ Space Punks: installDir: Space Quest Collection: {} launch: - /2016_SpaceQuestCollection/SierraLauncher.exe: + "/2016_SpaceQuestCollection/SierraLauncher.exe": - when: - store: steam - workingDir: /2016_SpaceQuestCollection + workingDir: "/2016_SpaceQuestCollection" steam: id: 10110 Space Quiz: installDir: Space Quiz: {} launch: - /spacequiz.app/Contents/MacOS/spacequiz: + "/spacequiz.app/Contents/MacOS/spacequiz": - when: - os: mac store: steam - /spacequiz.exe: + "/spacequiz.exe": - when: - os: windows store: steam @@ -489027,15 +490314,15 @@ Space Rabbits in Space: installDir: Space Rabbits in Space: {} launch: - /Space Rabbits in Space.app/Contents/MacOS/Space Rabbits in Space: + "/Space Rabbits in Space.app/Contents/MacOS/Space Rabbits in Space": - when: - os: mac store: steam - /Space Rabbits in Space.exe: + "/Space Rabbits in Space.exe": - when: - os: windows store: steam - /Space Rabbits in Space.x86_64: + "/Space Rabbits in Space.x86_64": - when: - os: linux store: steam @@ -489048,7 +490335,7 @@ Space Raiders: installDir: Space Raiders RPG: {} launch: - /SpaceRaiders.exe: + "/SpaceRaiders.exe": - when: - os: windows store: steam @@ -489058,7 +490345,7 @@ Space Ranger ASK: installDir: Space Ranger ASK: {} launch: - /Space_Ranger_ASK.exe: + "/Space_Ranger_ASK.exe": - when: - os: windows store: steam @@ -489067,17 +490354,17 @@ Space Ranger ASK: Space Ranger vs. Reptiloids: steam: id: 876600 -'Space Ranger vs. Reptiloids: 2 Edition': +"Space Ranger vs. Reptiloids: 2 Edition": steam: id: 911600 Space Rangers: files: - /Save: + "/Save": tags: - save when: - os: windows - /cfg.txt: + "/cfg.txt": tags: - config when: @@ -489087,29 +490374,29 @@ Space Rangers: installDir: Space Rangers: {} launch: - /Rangers.exe: + "/Rangers.exe": - when: - store: steam steam: id: 46320 -'Space Rangers 2: Dominators': +"Space Rangers 2: Dominators": files: - /Save: + "/Save": tags: - save when: - os: windows - /cfg.txt: + "/cfg.txt": tags: - config when: - os: windows - /questcomplete.dat: + "/questcomplete.dat": tags: - save when: - os: windows - /robotcomplete.dat: + "/robotcomplete.dat": tags: - save when: @@ -489119,19 +490406,19 @@ Space Rangers: installDir: Space Rangers 2 Reboot: {} launch: - /Rangers.exe: + "/Rangers.exe": - when: - store: steam steam: id: 46330 -'Space Rangers HD: A War Apart': +"Space Rangers HD: A War Apart": files: - /SpaceRangersHD/CFG.TXT: + "/SpaceRangersHD/CFG.TXT": tags: - config when: - os: windows - /SpaceRangersHD/Save: + "/SpaceRangersHD/Save": tags: - save when: @@ -489141,19 +490428,19 @@ Space Rangers: installDir: Space Rangers HD A War Apart: {} launch: - /Rangers.exe: + "/Rangers.exe": - when: - os: windows store: steam steam: id: 214730 -'Space Rangers: Quest': +"Space Rangers: Quest": gog: id: 2085898015 installDir: Space Rangers Quest: {} launch: - /SRQuest.exe: + "/SRQuest.exe": - when: - os: windows store: steam @@ -489161,7 +490448,7 @@ Space Rangers: id: 503450 Space Reign: files: - /AppData/LocalLow/Propulsive Games/Space Reign: + "/AppData/LocalLow/Propulsive Games/Space Reign": tags: - save when: @@ -489169,7 +490456,7 @@ Space Reign: installDir: Space Reign: {} launch: - /Space Reign.exe: + "/Space Reign.exe": - when: - store: steam registry: @@ -489182,15 +490469,15 @@ Space Ribbon: installDir: Space_Ribbon: {} launch: - /SpaceRibbon.app: + "/SpaceRibbon.app": - when: - os: mac store: steam - /SpaceRibbon.exe: + "/SpaceRibbon.exe": - when: - os: windows store: steam - /SpaceRibbon.x86_64: + "/SpaceRibbon.x86_64": - when: - bit: 64 os: linux @@ -489204,14 +490491,14 @@ Space Rift NON-VR - Episode 1: installDir: Space Rift NON-VR - Episode 1: {} launch: - /SpaceRiftNVR.exe: + "/SpaceRiftNVR.exe": - when: - bit: 64 os: windows store: steam steam: id: 552550 -'Space Rift: Episode 1': +"Space Rift: Episode 1": installDir: Space Rift: {} steam: @@ -489226,14 +490513,14 @@ Space Road: installDir: Space Road: {} launch: - /Space Road.exe: + "/Space Road.exe": - when: - store: steam steam: id: 1174120 Space Robinson: files: - /Space_Robinson/steam/: + "/Space_Robinson/steam/": tags: - config - save @@ -489244,15 +490531,15 @@ Space Robinson: installDir: Space Robinson: {} launch: - /Space Robinson.app: + "/Space Robinson.app": - when: - os: mac store: steam - /Space Robinson.exe: + "/Space Robinson.exe": - when: - os: windows store: steam - /Space_Robinson: + "/Space_Robinson": - when: - os: linux store: steam @@ -489262,11 +490549,11 @@ Space Robot Samurai Zombie Slayer: installDir: SRSZS: {} launch: - /SRSZS.app: + "/SRSZS.app": - when: - os: mac store: steam - /SRSZS.exe: + "/SRSZS.exe": - when: - os: windows store: steam @@ -489276,7 +490563,7 @@ Space Rocket: installDir: Space Rocket: {} launch: - /Space Rocket.exe: + "/Space Rocket.exe": - when: - store: steam steam: @@ -489285,7 +490572,7 @@ Space Rocks: installDir: Space Rocks: {} launch: - /SpaceRocks.exe: + "/SpaceRocks.exe": - when: - os: windows store: steam @@ -489293,7 +490580,7 @@ Space Rocks: id: 748010 Space Rogue: files: - /*.SAV: + "/*.SAV": tags: - save when: @@ -489303,33 +490590,33 @@ Space Rogue: installDir: Space Rogue Classic: {} launch: - /dosbox_linux/daum/launch_src_game_daum.sh: + "/dosbox_linux/daum/launch_src_game_daum.sh": - when: - os: linux store: steam - workingDir: /dosbox_linux/daum - /dosbox_linux/launch_src_game.sh: + workingDir: "/dosbox_linux/daum" + "/dosbox_linux/launch_src_game.sh": - when: - os: linux store: steam - workingDir: /dosbox_linux - /dosbox_windows/daum/dosbox.exe: - - arguments: '-conf dosbox_src.conf -conf dosbox_src_launch_windows.conf -noconsole' + workingDir: "/dosbox_linux" + "/dosbox_windows/daum/dosbox.exe": + - arguments: "-conf dosbox_src.conf -conf dosbox_src_launch_windows.conf -noconsole" when: - os: windows store: steam - workingDir: /dosbox_windows/daum - /dosbox_windows/dosbox.exe: - - arguments: '-conf dosbox_src.conf -conf dosbox_src_launch_windows.conf -noconsole' + workingDir: "/dosbox_windows/daum" + "/dosbox_windows/dosbox.exe": + - arguments: "-conf dosbox_src.conf -conf dosbox_src_launch_windows.conf -noconsole" when: - os: windows store: steam - workingDir: /dosbox_windows + workingDir: "/dosbox_windows" steam: id: 569200 Space Rogue (2016): files: - /AppData/LocalLow/Red Beat LTD/Space Rogue: + "/AppData/LocalLow/Red Beat LTD/Space Rogue": tags: - save when: @@ -489339,11 +490626,11 @@ Space Rogue (2016): installDir: Space Rogue: {} launch: - /SpaceRogue.app: + "/SpaceRogue.app": - when: - os: mac store: steam - /SpaceRogue.exe: + "/SpaceRogue.exe": - when: - os: windows store: steam @@ -489351,12 +490638,12 @@ Space Rogue (2016): id: 364300 Space Run: files: - /Save/LocalSettings.sav: + "/Save/LocalSettings.sav": tags: - config when: - os: windows - /Save/Player: + "/Save/Player": tags: - save when: @@ -489366,15 +490653,15 @@ Space Run: installDir: Space Run: {} launch: - /oSpaceGame.exe: + "/oSpaceGame.exe": - when: - os: windows store: steam - /oSpaceGameMerged: + "/oSpaceGameMerged": - when: - os: linux store: steam - /oSpaceGameMerged.app: + "/oSpaceGameMerged.app": - when: - os: mac store: steam @@ -489384,7 +490671,7 @@ Space Run Galaxy: installDir: Space Run Galaxy: {} launch: - /oSRGalaxyGame.exe: + "/oSRGalaxyGame.exe": - when: - os: windows store: steam @@ -489394,7 +490681,7 @@ Space Salvager: installDir: SpaceSalvager: {} launch: - /SpaceSalvager.exe: + "/SpaceSalvager.exe": - when: - os: windows store: steam @@ -489404,11 +490691,11 @@ Space Scaven: installDir: Space Scaven: {} launch: - /Space Scaven.exe: + "/Space Scaven.exe": - when: - os: windows store: steam - /Space Scaven.sh: + "/Space Scaven.sh": - when: - os: linux store: steam @@ -489418,11 +490705,11 @@ Space Scavenger: installDir: Space Scavenger: {} launch: - /Space Scavenger.exe: + "/Space Scavenger.exe": - when: - os: windows store: steam - /SpaceScavengerMac.app/Contents/MacOS/SpaceScavengerMac: + "/SpaceScavengerMac.app/Contents/MacOS/SpaceScavengerMac": - when: - os: mac store: steam @@ -489432,7 +490719,7 @@ Space Scumbags: installDir: Space Scumbags: {} launch: - /Space Scumbags.exe: + "/Space Scumbags.exe": - when: - store: steam steam: @@ -489441,7 +490728,7 @@ Space Shaft: installDir: Space Shaft: {} launch: - /fo/Dreaming.exe: + "/fo/Dreaming.exe": - when: - bit: 64 os: windows @@ -489452,11 +490739,11 @@ Space Shapes: installDir: Space Shapes: {} launch: - /Space Shapes.exe: + "/Space Shapes.exe": - when: - os: windows store: steam - /Space_Shapes: + "/Space_Shapes": - when: - os: linux store: steam @@ -489466,7 +490753,7 @@ Space Ship Commander: installDir: Space Ship Commander: {} launch: - /SpaceShipCommander.exe: + "/SpaceShipCommander.exe": - when: - os: windows store: steam @@ -489477,12 +490764,12 @@ Space Shock 3: id: 662560 Space Siege: files: - /My Games/Space Siege/Save: + "/My Games/Space Siege/Save": tags: - save when: - os: windows - /My Games/Space Siege/SpaceSiege.ini: + "/My Games/Space Siege/SpaceSiege.ini": tags: - config when: @@ -489490,17 +490777,17 @@ Space Siege: installDir: Space Siege: {} launch: - /Space Siege/SpaceSiege.exe: + "/Space Siege/SpaceSiege.exe": - when: - store: steam - workingDir: /Space Siege + workingDir: "/Space Siege" steam: id: 10530 Space Simulator: installDir: Space Simulator: {} launch: - /StandaloneBuild.exe: + "/StandaloneBuild.exe": - when: - os: windows store: steam @@ -489510,7 +490797,7 @@ Space Slam: installDir: SpaceSlam: {} launch: - /Space Slam 1.01.exe: + "/Space Slam 1.01.exe": - when: - bit: 64 os: windows @@ -489526,11 +490813,11 @@ Space Smash: installDir: Space Smash: {} launch: - /SPACE SMASH.exe: + "/SPACE SMASH.exe": - when: - os: windows store: steam - /Space Smash.x86: + "/Space Smash.x86": - when: - os: linux store: steam @@ -489540,7 +490827,7 @@ Space Space: installDir: Space Space: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -489557,20 +490844,20 @@ Space Station Alpha: installDir: Space Station Alpha: {} launch: - /Space Station Alpha.app: + "/Space Station Alpha.app": - when: - os: mac store: steam - /SpaceStationAlpha.exe: + "/SpaceStationAlpha.exe": - when: - os: windows store: steam - /SpaceStationAlpha.x86: + "/SpaceStationAlpha.x86": - when: - bit: 32 os: linux store: steam - /SpaceStationAlpha.x86_64: + "/SpaceStationAlpha.x86_64": - when: - bit: 64 os: linux @@ -489581,7 +490868,7 @@ Space Station Continuum: installDir: Space Station Continuum: {} launch: - /Space Station Continuum.exe: + "/Space Station Continuum.exe": - when: - os: windows store: steam @@ -489592,7 +490879,7 @@ Space Station Invader VR: Space Station Invader VR: {} steam: id: 1178480 -'Space Station Loma: Operations': +"Space Station Loma: Operations": installDir: Space Station Loma OPERATIONS: {} steam: @@ -489601,20 +490888,20 @@ Space Struck Run: installDir: Space Struck Run: {} launch: - /SpaceStruckRun.app/Contents/MacOS/SpaceStruckRun: + "/SpaceStruckRun.app/Contents/MacOS/SpaceStruckRun": - when: - os: mac store: steam - /SpaceStruckRun.exe: + "/SpaceStruckRun.exe": - when: - os: windows store: steam - /SpaceStruckRun.x86: + "/SpaceStruckRun.x86": - when: - bit: 32 os: linux store: steam - /SpaceStruckRun.x86_64: + "/SpaceStruckRun.x86_64": - when: - bit: 64 os: linux @@ -489625,7 +490912,7 @@ Space Survival: installDir: Space Survival: {} launch: - /SpaceSurvival.exe: + "/SpaceSurvival.exe": - when: - os: windows store: steam @@ -489635,25 +490922,25 @@ Space Survivors Shooter: installDir: Space Survivors Shooter: {} launch: - /SpaceSurvivorsShoote.exe: + "/SpaceSurvivorsShoote.exe": - when: - bit: 64 os: windows store: steam steam: id: 704430 -'Space Tail: Every Journey Leads Home': +"Space Tail: Every Journey Leads Home": gog: id: 1436065482 installDir: Space Tail Every Journey Leads Home: {} launch: - /Space Tail.exe: + "/Space Tail.exe": - when: - bit: 64 os: windows store: steam - /Space Tail.x86_64: + "/Space Tail.x86_64": - when: - os: linux store: steam @@ -489666,17 +490953,17 @@ Space Thinger: installDir: Space Thinger: {} launch: - /Space Thinger.x86: + "/Space Thinger.x86": - when: - bit: 32 os: linux store: steam - /Space Thinger.x86_64: + "/Space Thinger.x86_64": - when: - bit: 64 os: linux store: steam - /SpaceThinger.exe: + "/SpaceThinger.exe": - when: - os: windows store: steam @@ -489686,16 +490973,16 @@ Space Toads Mayhem: installDir: SpaceToadsMayhem: {} launch: - /mac/SpaceToadsMayhem.app/Contents/MacOS/SpaceToadsMayhem: + "/mac/SpaceToadsMayhem.app/Contents/MacOS/SpaceToadsMayhem": - when: - os: mac store: steam - /win64/SpaceToadsMayhem.exe: + "/win64/SpaceToadsMayhem.exe": - when: - bit: 64 os: windows store: steam - /windows/SpaceToadsMayhem.exe: + "/windows/SpaceToadsMayhem.exe": - when: - bit: 32 os: windows @@ -489706,7 +490993,7 @@ Space Tower: installDir: Space Tower: {} launch: - /Space Tower.exe: + "/Space Tower.exe": - when: - os: windows store: steam @@ -489716,15 +491003,15 @@ Space Trade Fleet 1.5: installDir: Space Trade Fleet 1.5: {} launch: - /Space Trade Fleet 1.5.exe: + "/Space Trade Fleet 1.5.exe": - when: - os: windows store: steam steam: id: 1060110 -'Space Trader: Merchant Marine': +"Space Trader: Merchant Marine": files: - /st/st/stxp.cfg: + "/st/st/stxp.cfg": tags: - config - save @@ -489735,7 +491022,7 @@ Space Trade Fleet 1.5: installDir: Space Trader: {} launch: - /spacetrader.exe: + "/spacetrader.exe": - when: - store: steam steam: @@ -489745,12 +491032,12 @@ Space Transfer: id: 938570 Space Trash Scavenger: files: - /AppData/LocalLow/SquarePlay/SpaceTrashScavenger: + "/AppData/LocalLow/SquarePlay/SpaceTrashScavenger": tags: - save when: - os: windows - /AppData/LocalLow/SquarePlay/SpaceTrashScavenger/settings.json: + "/AppData/LocalLow/SquarePlay/SpaceTrashScavenger/settings.json": tags: - config when: @@ -489758,11 +491045,11 @@ Space Trash Scavenger: installDir: Space Trash Scavenger: {} launch: - /SpaceTrashScavenger.exe: + "/SpaceTrashScavenger.exe": - when: - os: windows store: steam - /SpaceTrashScavengerLR/SpaceTrashScavenger.exe: + "/SpaceTrashScavengerLR/SpaceTrashScavenger.exe": - when: - os: windows store: steam @@ -489775,7 +491062,7 @@ Space Trucker: installDir: SpaceTrucker: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -489788,7 +491075,7 @@ Space Turret Gunner: id: 798180 Space Tyrant: files: - /AppData/LocalLow/Blue Wizard/Space Tyrant: + "/AppData/LocalLow/Blue Wizard/Space Tyrant": tags: - save when: @@ -489796,15 +491083,15 @@ Space Tyrant: installDir: Space Tyrant: {} launch: - /SpaceTyrant.app: + "/SpaceTyrant.app": - when: - os: mac store: steam - /SpaceTyrant.exe: + "/SpaceTyrant.exe": - when: - os: windows store: steam - /SpaceTyrant.x86: + "/SpaceTyrant.x86": - when: - os: linux store: steam @@ -489814,21 +491101,23 @@ Space Universe: installDir: Space Universe: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam + - os: mac + store: steam steam: id: 479180 Space Viking Raiders: installDir: Space Viking Raiders: {} launch: - /MAC.app: + "/MAC.app": - when: - os: mac store: steam - /SpaceVikingRaiders.exe: + "/SpaceVikingRaiders.exe": - when: - bit: 64 os: windows @@ -489843,15 +491132,15 @@ Space Viking Raiders VR: Space Vomit: steam: id: 763980 -'Space War: Infinity': +"Space War: Infinity": installDir: Space War - Infinity: {} launch: - /SPACE WAR - INFINITY.exe: + "/SPACE WAR - INFINITY.exe": - when: - os: windows store: steam - /SPACE WAR - INFINITY.x86_64: + "/SPACE WAR - INFINITY.x86_64": - when: - bit: 64 os: linux @@ -489862,15 +491151,15 @@ Space Warfare: installDir: Space Warfare: {} launch: - /SpaceWarfare.exe: + "/SpaceWarfare.exe": - when: - os: windows store: steam - /SpaceWarfare.x86_64: + "/SpaceWarfare.x86_64": - when: - os: linux store: steam - /SpaceWarfareMac.app/Contents/MacOS/SpaceWarfare: + "/SpaceWarfareMac.app/Contents/MacOS/SpaceWarfare": - when: - os: mac store: steam @@ -489880,7 +491169,7 @@ Space Warlord Organ Trading Simulator: installDir: Space Warlord Organ Trading Simulator: {} launch: - /Space Warlord Organ Trading Simulator.exe: + "/Space Warlord Organ Trading Simulator.exe": - when: - bit: 64 os: windows @@ -489891,11 +491180,11 @@ Space Warp: installDir: Space Warp: {} launch: - /Space Warp.app: + "/Space Warp.app": - when: - os: mac store: steam - /SpaceWarp.exe: + "/SpaceWarp.exe": - when: - os: windows store: steam @@ -489905,45 +491194,45 @@ Space Wars: installDir: Space Wars: {} launch: - /Space_Wars.exe: + "/Space_Wars.exe": - when: - os: windows store: steam - /Space_Wars.x86: + "/Space_Wars.x86": - when: - bit: 32 os: linux store: steam - /Space_Wars.x86_64: + "/Space_Wars.x86_64": - when: - bit: 64 os: linux store: steam - /lastmac.app/Contents/MacOS/lastmac: + "/lastmac.app/Contents/MacOS/lastmac": - when: - os: mac store: steam steam: id: 892910 -'Space Wars: Darth Star': +"Space Wars: Darth Star": installDir: Space Stories - Darth Star: {} launch: - /Space Stories - Darth Star.app/Contents/MacOS/Space Stories - Darth Star: + "/Space Stories - Darth Star.app/Contents/MacOS/Space Stories - Darth Star": - when: - os: mac store: steam - /Space Stories - Darth Star.exe: + "/Space Stories - Darth Star.exe": - when: - os: windows store: steam - /Space Stories - Darth Star.x86: + "/Space Stories - Darth Star.x86": - when: - os: linux store: steam steam: id: 763770 -'Space Wars: Interstellar Empires': +"Space Wars: Interstellar Empires": installDir: Space Wars Interstellar Empires: {} steam: @@ -489952,7 +491241,7 @@ Space Waver: installDir: Space Waver: {} launch: - /Space Waver.exe: + "/Space Waver.exe": - when: - os: windows store: steam @@ -489962,7 +491251,7 @@ Space Way: installDir: Space Way: {} launch: - /Space Way.exe: + "/Space Way.exe": - when: - store: steam steam: @@ -489971,7 +491260,7 @@ Space Whip: installDir: Space Whip: {} launch: - /Space Whip.exe: + "/Space Whip.exe": - when: - os: windows store: steam @@ -489981,7 +491270,7 @@ Space Wrangler: installDir: Space Wrangler: {} launch: - /SpaceWrangler.exe: + "/SpaceWrangler.exe": - when: - bit: 32 os: windows @@ -489990,7 +491279,7 @@ Space Wrangler: id: 697490 Space Wreck: files: - /Space Wreck Saves/: + "/Space Wreck Saves/": tags: - save when: @@ -489998,8 +491287,8 @@ Space Wreck: installDir: Space Wreck: {} launch: - /space-wreck.exe: - - arguments: '--in-process-gpu' + "/space-wreck.exe": + - arguments: "--in-process-gpu" when: - bit: 64 os: windows @@ -490014,15 +491303,15 @@ Space Xonix: installDir: SpaceXonix: {} launch: - /SpaceXonixQt.app: + "/SpaceXonixQt.app": - when: - os: mac store: steam - /SpaceXonixQt.exe: + "/SpaceXonixQt.exe": - when: - os: windows store: steam - /SpaceXonixQtLinux.sh: + "/SpaceXonixQtLinux.sh": - when: - bit: 64 os: linux @@ -490033,7 +491322,7 @@ Space Zombies Invasion: installDir: Space Zombies Invasion: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: @@ -490042,7 +491331,7 @@ Space electrician: installDir: Space electrician: {} launch: - /Space electrician.exe: + "/Space electrician.exe": - when: - store: steam steam: @@ -490054,7 +491343,7 @@ Space of Darkness: installDir: Space of Darkness: {} launch: - /Space of Darkness.exe: + "/Space of Darkness.exe": - when: - os: windows store: steam @@ -490071,7 +491360,7 @@ Space raven quest - Tiny planet: installDir: Space raven quest - Tiny planet: {} launch: - /Tiny Planet.exe: + "/Tiny Planet.exe": - when: - os: windows store: steam @@ -490081,22 +491370,22 @@ Space zone defender: installDir: Space zone defender: {} launch: - /Space zone defender.exe: + "/Space zone defender.exe": - when: - os: windows store: steam steam: id: 1177300 -'Space, VR!': +"Space, VR!": installDir: - 'Space, VR!': {} + "Space, VR!": {} steam: id: 496080 Space-Fright: installDir: SPACE-FRIGHT: {} launch: - /SPACE-FRIGHT.exe: + "/SPACE-FRIGHT.exe": - when: - os: windows store: steam @@ -490106,15 +491395,15 @@ SpaceBOUND: installDir: spaceBOUND: {} launch: - /sbLinux.x86: + "/sbLinux.x86": - when: - os: linux store: steam - /spaceBOUND_mac.app/Contents/MacOS/spaceBOUND_mac: + "/spaceBOUND_mac.app/Contents/MacOS/spaceBOUND_mac": - when: - os: mac store: steam - /steamBuild.exe: + "/steamBuild.exe": - when: - os: windows store: steam @@ -490124,7 +491413,7 @@ SpaceBall in Cube: installDir: SpaceBall in Cube: {} launch: - /SpaceBallInCube.exe: + "/SpaceBallInCube.exe": - when: - os: windows store: steam @@ -490134,7 +491423,7 @@ SpaceBourne: installDir: Spacebourne: {} launch: - /SpaceBourne.exe: + "/SpaceBourne.exe": - when: - os: windows store: steam @@ -490144,7 +491433,7 @@ SpaceBullet: installDir: SpaceBullet: {} launch: - /ReGameship.exe: + "/ReGameship.exe": - when: - os: windows store: steam @@ -490152,19 +491441,19 @@ SpaceBullet: id: 1040000 SpaceChem: files: - /.local/share/Zachtronics Industries/SpaceChem: + "/.local/share/Zachtronics Industries/SpaceChem": tags: - config - save when: - os: mac - /Zachtronics Industries/SpaceChem: + "/Zachtronics Industries/SpaceChem": tags: - config - save when: - os: windows - /Zachtronics Industries/SpaceChem: + "/Zachtronics Industries/SpaceChem": tags: - config - save @@ -490178,15 +491467,15 @@ SpaceChem: installDir: SpaceChem: {} launch: - /SpaceChem: + "/SpaceChem": - when: - os: linux store: steam - /SpaceChem.app: + "/SpaceChem.app": - when: - os: mac store: steam - /SpaceChem.exe: + "/SpaceChem.exe": - when: - os: windows store: steam @@ -490201,7 +491490,7 @@ SpaceCorn: installDir: SpaceCorn: {} launch: - /CSpacecorn.exe: + "/CSpacecorn.exe": - when: - os: windows store: steam @@ -490211,11 +491500,11 @@ SpaceDweller: installDir: SpaceDweller: {} launch: - /SpaceDweller_W.exe: + "/SpaceDweller_W.exe": - when: - os: windows store: steam - /runner: + "/runner": - when: - os: linux store: steam @@ -490223,7 +491512,7 @@ SpaceDweller: id: 599510 SpaceEngine: files: - /config: + "/config": tags: - config - save @@ -490234,12 +491523,12 @@ SpaceEngine: installDir: SpaceEngine: {} launch: - /system/SpaceEngine.exe: + "/system/SpaceEngine.exe": - when: - bit: 64 os: windows store: steam - workingDir: /system + workingDir: "/system" steam: id: 314650 SpaceEscapeVR: @@ -490251,11 +491540,11 @@ SpaceExcavators: installDir: SpaceExcavators: {} launch: - /game.app: + "/game.app": - when: - os: mac store: steam - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -490265,7 +491554,7 @@ SpaceExile: installDir: SpaceExile: {} launch: - /Space_Exile.exe: + "/Space_Exile.exe": - when: - bit: 64 os: windows @@ -490281,7 +491570,7 @@ SpaceFuss: installDir: SpaceFuss: {} launch: - /spacefuss.exe: + "/spacefuss.exe": - when: - os: windows store: steam @@ -490291,7 +491580,7 @@ SpaceGeon: installDir: SpaceGeon: {} launch: - /SpaceGeon.exe: + "/SpaceGeon.exe": - when: - os: windows store: steam @@ -490306,11 +491595,11 @@ SpaceMerc: installDir: SpaceMerc: {} launch: - /SpaceMerc.exe: + "/SpaceMerc.exe": - when: - os: windows store: steam - /SpaceMerc.sh: + "/SpaceMerc.sh": - when: - os: linux store: steam @@ -490320,16 +491609,16 @@ SpacePig: installDir: SpacePig: {} launch: - /SpacePig.app/Contents/MacOS/SpacePig: + "/SpacePig.app/Contents/MacOS/SpacePig": - when: - os: mac store: steam - /SpacePig.exe: + "/SpacePig.exe": - when: - bit: 64 os: windows store: steam - /SpacePig.x86_64: + "/SpacePig.x86_64": - when: - bit: 64 os: linux @@ -490340,11 +491629,11 @@ SpaceRoads: installDir: SpaceRoads: {} launch: - /OSX.app: + "/OSX.app": - when: - os: mac store: steam - /SpaceRoads.exe: + "/SpaceRoads.exe": - when: - bit: 64 os: windows @@ -490355,7 +491644,7 @@ SpaceShot: installDir: SpaceShot: {} launch: - /SpaceShot.exe: + "/SpaceShot.exe": - when: - os: windows store: steam @@ -490365,11 +491654,11 @@ SpaceTone: installDir: SpaceTone: {} launch: - /SpaceTone.app/Contents/MacOS/SpaceTone: + "/SpaceTone.app/Contents/MacOS/SpaceTone": - when: - os: mac store: steam - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -490389,7 +491678,7 @@ SpaceWorms: installDir: SpaceWorms: {} launch: - /SpaceWormsDX.exe: + "/SpaceWormsDX.exe": - when: - os: windows store: steam @@ -490399,11 +491688,11 @@ Spaceball!: installDir: Spaceball: {} launch: - /Spaceball.app: + "/Spaceball.app": - when: - os: mac store: steam - /Spaceball.exe: + "/Spaceball.exe": - when: - bit: 64 os: windows @@ -490412,19 +491701,19 @@ Spaceball!: id: 899930 Spacebase DF-9: files: - /Documents/SpaceBaseDF9: + "/Documents/SpaceBaseDF9": tags: - config - save when: - os: mac - /SpaceBaseDF9: + "/SpaceBaseDF9": tags: - config - save when: - os: windows - /doublefine/spacebasedf9: + "/doublefine/spacebasedf9": tags: - config - save @@ -490433,15 +491722,15 @@ Spacebase DF-9: installDir: SpacebaseDF9: {} launch: - /Space: + "/Space": - when: - os: linux store: steam - /Space.app: + "/Space.app": - when: - os: mac store: steam - /Space.exe: + "/Space.exe": - when: - os: windows store: steam @@ -490449,12 +491738,12 @@ Spacebase DF-9: id: 246090 Spacebase Startopia: files: - /Kalypso Media/Spacebase Startopia/*.cfg: + "/Kalypso Media/Spacebase Startopia/*.cfg": tags: - config when: - os: windows - /Kalypso Media/Spacebase Startopia/savegames/*.sbsz: + "/Kalypso Media/Spacebase Startopia/savegames/*.sbsz": tags: - save when: @@ -490470,15 +491759,15 @@ Spacebase Startopia: installDir: Spacebase Startopia: {} launch: - /SpacebaseStartopia.app: + "/SpacebaseStartopia.app": - when: - os: mac store: steam - /SpacebaseStartopia.x86_64: + "/SpacebaseStartopia.x86_64": - when: - os: linux store: steam - /sbs.exe: + "/sbs.exe": - when: - os: windows store: steam @@ -490489,23 +491778,23 @@ Spacecats with Lasers VR: Spacecats with Lasers VR: {} steam: id: 565190 -'Spacecats with Lasers: The Outerspace': +"Spacecats with Lasers: The Outerspace": installDir: Spacecats with Lasers: {} launch: - /Spacecats.app: + "/Spacecats.app": - when: - os: mac store: steam - /Spacecats.exe: + "/Spacecats.exe": - when: - os: windows store: steam - /Spacecats.x86: + "/Spacecats.x86": - when: - os: linux store: steam - /Spacecats.x86_64: + "/Spacecats.x86_64": - when: - bit: 64 os: linux @@ -490518,16 +491807,16 @@ Spacecom: installDir: SPACECOM: {} launch: - /SPACECOM.app/Contents/MacOS/SPACECOM: + "/SPACECOM.app/Contents/MacOS/SPACECOM": - when: - os: mac store: steam - /SPACECOM.exe: + "/SPACECOM.exe": - when: - bit: 32 os: windows store: steam - /SPACECOM.x86: + "/SPACECOM.x86": - when: - os: linux store: steam @@ -490547,40 +491836,40 @@ Spacefarers!: installDir: Spacefarers!: {} launch: - /Spacefarers.exe: + "/Spacefarers.exe": - when: - os: windows store: steam steam: id: 947540 -'Spaceforce: Constellations': +"Spaceforce: Constellations": installDir: Spaceforce Constellations: {} launch: - /Constellations.exe: + "/Constellations.exe": - when: - os: windows store: steam steam: id: 263800 -'Spaceforce: Homeworld': +"Spaceforce: Homeworld": installDir: SpaceforceHomeworld: {} launch: - /Start.exe: + "/Start.exe": - when: - os: windows store: steam steam: id: 278850 -'Spaceforce: Rogue Universe': +"Spaceforce: Rogue Universe": files: - /Profiles: + "/Profiles": tags: - save when: - os: windows - /System/Config.cfg: + "/System/Config.cfg": tags: - config when: @@ -490591,17 +491880,17 @@ Spacefarers!: installDir: Spaceforce Rogue Universe HD: {} launch: - /System/Start.exe: + "/System/Start.exe": - when: - store: steam - workingDir: /System + workingDir: "/System" steam: id: 372480 Spaceguard 80: installDir: Spaceguard 80: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -490611,7 +491900,7 @@ Spaceguy: installDir: Spaceguy: {} launch: - /SG.exe: + "/SG.exe": - when: - store: steam steam: @@ -490619,11 +491908,11 @@ Spaceguy: Spaceguy 2: steam: id: 852140 -'Spaceguy: Red Space': +"Spaceguy: Red Space": installDir: Spaceguy Red Space: {} launch: - /Spaceguy Red Space.exe: + "/Spaceguy Red Space.exe": - when: - os: windows store: steam @@ -490633,17 +491922,17 @@ Spacejacked: installDir: Spacejacked: {} launch: - /SPACEJACKED: + "/SPACEJACKED": - when: - bit: 64 os: linux store: steam - /SPACEJACKED.app: + "/SPACEJACKED.app": - when: - bit: 64 os: mac store: steam - /SPACEJACKED.exe: + "/SPACEJACKED.exe": - when: - os: windows store: steam @@ -490653,14 +491942,14 @@ Spacelair: installDir: Spacelair: {} launch: - /Spacelair.exe: - - arguments: '-windowed' + "/Spacelair.exe": + - arguments: "-windowed" when: - bit: 64 os: windows store: steam - /Spacelair.py: - - arguments: '-windowed' + "/Spacelair.py": + - arguments: "-windowed" when: - os: linux store: steam @@ -490670,7 +491959,7 @@ Spaceland: installDir: Spaceland: {} launch: - /spaceland.exe: + "/spaceland.exe": - when: - os: windows store: steam @@ -490680,15 +491969,15 @@ Spacelines from the Far Out: installDir: Spacelines from the Far Out: {} launch: - /Spacelines From The Far Out.app/Contents/MacOS/Spacelines from the Far Out: + "/Spacelines From The Far Out.app/Contents/MacOS/Spacelines from the Far Out": - when: - os: mac store: steam - /Spacelines from the Far Out.exe: + "/Spacelines from the Far Out.exe": - when: - os: windows store: steam - /SpacelinesFromTheFarOut.x86_64: + "/SpacelinesFromTheFarOut.x86_64": - when: - os: linux store: steam @@ -490696,15 +491985,16 @@ Spacelines from the Far Out: id: 1412850 Spacelords: files: - /MercurySteam/Raiders of the Broken Planet/: + "/MercurySteam/Raiders of the Broken Planet/": tags: - config when: - - store: steam + - os: windows + store: steam installDir: Spacelords: {} launch: - /bin/Spacelords.exe: + "/bin/Spacelords.exe": - when: - os: windows store: steam @@ -490714,11 +492004,11 @@ Spaceman: installDir: Spaceman: {} launch: - /Contents/MacOS/spacemanprelude: + "/Contents/MacOS/spacemanprelude": - when: - os: mac store: steam - /spacemanprelude.exe: + "/spacemanprelude.exe": - when: - os: windows store: steam @@ -490728,7 +492018,7 @@ Spaceman Defender: installDir: Spaceman Defender: {} launch: - /SpacemanDefender.exe: + "/SpacemanDefender.exe": - when: - os: windows store: steam @@ -490738,7 +492028,7 @@ Spaceman Sparkles 2: installDir: Spaceman Sparkles 2: {} launch: - /Spaceman Sparkles 2 - v1.4.exe: + "/Spaceman Sparkles 2 - v1.4.exe": - when: - os: windows store: steam @@ -490748,26 +492038,26 @@ Spaceman Sparkles 3: installDir: Spaceman Sparkles 3: {} launch: - /Spaceman Sparkles 3D.exe: + "/Spaceman Sparkles 3D.exe": - when: - os: windows store: steam - /Spaceman_Sparkles_3Dv1.1.x86: + "/Spaceman_Sparkles_3Dv1.1.x86": - when: - bit: 32 os: linux store: steam - /Spaceman_Sparkles_3Dv1.1.x86_64: + "/Spaceman_Sparkles_3Dv1.1.x86_64": - when: - bit: 64 os: linux store: steam - /Spaceman_Sparkles_3_5.exe: + "/Spaceman_Sparkles_3_5.exe": - when: - bit: 64 os: windows store: steam - /Spaceman_Sparkles_3_5.x86_64: + "/Spaceman_Sparkles_3_5.x86_64": - when: - bit: 64 os: linux @@ -490776,7 +492066,7 @@ Spaceman Sparkles 3: id: 453740 Spaceplan: files: - /AppData/LocalLow/That Silly Studio/SPACEPLAN: + "/AppData/LocalLow/That Silly Studio/SPACEPLAN": tags: - config - save @@ -490785,11 +492075,11 @@ Spaceplan: installDir: SPACEPLAN: {} launch: - /SPACEPLAN.app: + "/SPACEPLAN.app": - when: - os: mac store: steam - /SPACEPLAN.exe: + "/SPACEPLAN.exe": - when: - os: windows store: steam @@ -490801,12 +492091,12 @@ Spaceplan: id: 616110 Spaceport Hope: files: - /resources/files/*.tmp: + "/resources/files/*.tmp": tags: - config when: - os: windows - /resources/files/sve*: + "/resources/files/sve*": tags: - save when: @@ -490814,16 +492104,16 @@ Spaceport Hope: installDir: Spaceport Hope: {} launch: - /EQLauncher.exe: + "/EQLauncher.exe": - when: - os: windows store: steam - /bin/spaceport_hope: + "/bin/spaceport_hope": - when: - os: linux store: steam - workingDir: /bin - /space.jar: + workingDir: "/bin" + "/space.jar": - when: - os: mac store: steam @@ -490833,11 +492123,11 @@ Spacepowers: installDir: Spacepowers: {} launch: - /Spacepowers.app/Contents/MacOS/Spacepowers: + "/Spacepowers.app/Contents/MacOS/Spacepowers": - when: - os: mac store: steam - /Spacepowers.exe: + "/Spacepowers.exe": - when: - os: windows store: steam @@ -490847,12 +492137,12 @@ Spacer Project: installDir: Spacer Project: {} launch: - /SpacerProject_Steam_1.4_win/Project Spacer.exe: + "/SpacerProject_Steam_1.4_win/Project Spacer.exe": - when: - bit: 32 os: windows store: steam - /SpacerProject_Steam_1.4_win64/Project Spacer.exe: + "/SpacerProject_Steam_1.4_win64/Project Spacer.exe": - when: - bit: 64 os: windows @@ -490876,7 +492166,7 @@ Spaceship Looter: installDir: Spaceship Looter: {} launch: - /Spaceship_Looter.exe: + "/Spaceship_Looter.exe": - when: - os: windows store: steam @@ -490886,7 +492176,7 @@ Spaceship Trucker: installDir: Spaceship Trucker: {} launch: - /SpaceshipTrucker.exe: + "/SpaceshipTrucker.exe": - when: - os: windows store: steam @@ -490906,7 +492196,7 @@ Spacewar: installDir: Spacewar: {} launch: - /SteamWorksExample.exe: + "/SteamWorksExample.exe": - when: - store: steam steam: @@ -490920,7 +492210,7 @@ Spadyssey: installDir: Spadyssey: {} launch: - /Spadyssey.exe: + "/Spadyssey.exe": - when: - os: windows store: steam @@ -490930,7 +492220,7 @@ Spaera: installDir: Spaera: {} launch: - /Spaera.exe: + "/Spaera.exe": - when: - os: windows store: steam @@ -490940,27 +492230,27 @@ Spaghet: installDir: SPAGHET: {} launch: - /Spaghet.exe: + "/Spaghet.exe": - when: - bit: 64 os: windows store: steam steam: id: 821320 -'Spakoyno: Back to the USSR 2.0': +"Spakoyno: Back to the USSR 2.0": files: - /game/saves: + "/game/saves": tags: - save when: - store: steam steam: id: 388120 -'Spandex Force: Champion Rising': +"Spandex Force: Champion Rising": installDir: Spandex Force - Champion Rising: {} launch: - /SpandexForceChampionRising.exe: + "/SpandexForceChampionRising.exe": - when: - os: windows store: steam @@ -490968,17 +492258,17 @@ Spaghet: id: 380560 Spanking Runners: files: - /Resource/Options.ini: + "/Resource/Options.ini": tags: - config when: - os: windows - /game.ini: + "/game.ini": tags: - config when: - os: windows - /save00.dat: + "/save00.dat": tags: - save when: @@ -490997,7 +492287,7 @@ Spareware: installDir: Spareware: {} launch: - /Spareware.exe: + "/Spareware.exe": - when: - os: windows store: steam @@ -491007,11 +492297,11 @@ Spark: installDir: Spark: {} launch: - /Spark.exe: + "/Spark.exe": - when: - os: windows store: steam - /Spark_Knightmare_Games.app/Contents/MacOS/Mac_Runner: + "/Spark_Knightmare_Games.app/Contents/MacOS/Mac_Runner": - when: - os: mac store: steam @@ -491021,7 +492311,7 @@ Spark & Sparkle: installDir: Spark & Sparkle: {} launch: - /Spark & Sparkle.exe: + "/Spark & Sparkle.exe": - when: - os: windows store: steam @@ -491031,16 +492321,16 @@ Spark Five: installDir: Spark Five: {} launch: - /Spark Five.exe: + "/Spark Five.exe": - when: - bit: 64 os: windows store: steam - /SparkFive.app/Contents/MacOS/Spark Five: + "/SparkFive.app/Contents/MacOS/Spark Five": - when: - os: mac store: steam - /SparkFive.x86_64: + "/SparkFive.x86_64": - when: - bit: 64 os: linux @@ -491051,15 +492341,15 @@ Spark Rising: installDir: sparkrising: {} launch: - /Retro Rising Rampage Alpha 34/RRR Alpha 34.exe: + "/Retro Rising Rampage Alpha 34/RRR Alpha 34.exe": - when: - os: windows store: steam - /SR 1.2.6/Spark Rising.exe: + "/SR 1.2.6/Spark Rising.exe": - when: - os: windows store: steam - /Spark Rising/SparkRising.exe: + "/Spark Rising/SparkRising.exe": - when: - os: windows store: steam @@ -491069,11 +492359,11 @@ Spark and The Digital Daydream: installDir: Spark and The Digital Daydream: {} launch: - /Spark and The Digital Daydream.app: + "/Spark and The Digital Daydream.app": - when: - os: mac store: steam - /Spark and The Digital Daydream.exe: + "/Spark and The Digital Daydream.exe": - when: - os: windows store: steam @@ -491086,7 +492376,7 @@ Spark of Light: id: 1029070 Spark the Electric Jester: files: - /save.bin: + "/save.bin": tags: - save when: @@ -491094,7 +492384,7 @@ Spark the Electric Jester: installDir: Spark the Electric Jester: {} launch: - /Spark The Electric Jester.exe: + "/Spark The Electric Jester.exe": - when: - os: windows store: steam @@ -491104,7 +492394,7 @@ Spark the Electric Jester 2: installDir: Spark the Electric Jester 2: {} launch: - /SparkTwo.exe: + "/SparkTwo.exe": - when: - bit: 64 os: windows @@ -491117,7 +492407,7 @@ Spark the Electric Jester 2: id: 1079210 Spark the Electric Jester 3: files: - /Spark the Electric Jester 3_Data/*.save: + "/Spark the Electric Jester 3_Data/*.save": tags: - save when: @@ -491125,7 +492415,7 @@ Spark the Electric Jester 3: installDir: Spark the Electric Jester 3: {} launch: - /Spark the Electric Jester 3.exe: + "/Spark the Electric Jester 3.exe": - when: - store: steam registry: @@ -491138,7 +492428,7 @@ SparkChess: installDir: SparkChess: {} launch: - /SparkChess.exe: + "/SparkChess.exe": - when: - os: windows store: steam @@ -491148,7 +492438,7 @@ SparkDimension: installDir: SparkDimension: {} launch: - /SparkDimension.exe: + "/SparkDimension.exe": - when: - os: windows store: steam @@ -491158,7 +492448,7 @@ Sparkle 2: installDir: Sparkle 2: {} launch: - /Sparkle2.exe: + "/Sparkle2.exe": - when: - store: steam steam: @@ -491167,15 +492457,15 @@ Sparkle 2 Evo: installDir: Sparkle2: {} launch: - /sparkle2evo.app: + "/sparkle2evo.app": - when: - os: mac store: steam - /sparkle2evo.exe: + "/sparkle2evo.exe": - when: - os: windows store: steam - /sparkle2evo.x86: + "/sparkle2evo.x86": - when: - os: linux store: steam @@ -491185,19 +492475,19 @@ Sparkle 3 Genesis: installDir: Sparkle 3 Genesis: {} launch: - /SE3Genesis.app: + "/SE3Genesis.app": - when: - os: mac store: steam - /SE3Genesis.exe: + "/SE3Genesis.exe": - when: - os: windows store: steam - /SE3Genesis.x86: + "/SE3Genesis.x86": - when: - os: linux store: steam - /soundtrack.cmd: + "/soundtrack.cmd": - when: - os: windows store: steam @@ -491207,7 +492497,7 @@ Sparkle 4 Tales: installDir: Sparkle 4 Tales: {} launch: - /Tales.exe: + "/Tales.exe": - when: - os: windows store: steam @@ -491217,7 +492507,7 @@ Sparkle Unleashed: installDir: SparkleUnleashed: {} launch: - /SparkleUnleashed.exe: + "/SparkleUnleashed.exe": - when: - os: windows store: steam @@ -491227,15 +492517,15 @@ Sparkle Zero: installDir: Sparkle ZERO: {} launch: - /SparkleZero.app: + "/SparkleZero.app": - when: - os: mac store: steam - /SparkleZero.exe: + "/SparkleZero.exe": - when: - os: windows store: steam - /SparkleZero.x86: + "/SparkleZero.x86": - when: - os: linux store: steam @@ -491243,22 +492533,22 @@ Sparkle Zero: id: 448000 Sparklite: files: - /.config/unity3d/Red Blue Games/Sparklite/Profile.save: + "/.config/unity3d/Red Blue Games/Sparklite/Profile.save": tags: - config when: - os: linux - /.config/unity3d/Red Blue Games/Sparklite/SaveSlot*.save: + "/.config/unity3d/Red Blue Games/Sparklite/SaveSlot*.save": tags: - save when: - os: linux - /AppData/LocalLow/Red Blue Games/Sparklite/Profile.save: + "/AppData/LocalLow/Red Blue Games/Sparklite/Profile.save": tags: - config when: - os: windows - /AppData/LocalLow/Red Blue Games/Sparklite/SaveSlot*.save: + "/AppData/LocalLow/Red Blue Games/Sparklite/SaveSlot*.save": tags: - save when: @@ -491270,20 +492560,20 @@ Sparklite: - 1299365106 - 2039600634 steamExtra: - - 1191360 - 1183620 + - 1191360 installDir: Sparklite: {} launch: - /Sparklite.app: + "/Sparklite.app": - when: - os: mac store: steam - /Sparklite.exe: + "/Sparklite.exe": - when: - os: windows store: steam - /Sparklite.x86_64: + "/Sparklite.x86_64": - when: - os: linux store: steam @@ -491296,11 +492586,11 @@ Sparklite: Sparkour: steam: id: 386470 -Sparky's Hunt: +"Sparky's Hunt": installDir: - Sparky's Hunt: {} + "Sparky's Hunt": {} launch: - /Sparky's Hunt Game.exe: + "/Sparky's Hunt Game.exe": - when: - os: windows store: steam @@ -491315,7 +492605,7 @@ Spartan: installDir: Spartan: {} launch: - /Spartan.exe: + "/Spartan.exe": - when: - os: windows store: steam @@ -491325,15 +492615,15 @@ Spartan Fist: installDir: Spartan Fist: {} launch: - /SpartanFist.app: + "/SpartanFist.app": - when: - os: mac store: steam - /SpartanFist.exe: + "/SpartanFist.exe": - when: - os: windows store: steam - /SpartanFist.x86: + "/SpartanFist.x86": - when: - os: linux store: steam @@ -491348,26 +492638,26 @@ Spartans Vs Zombies Defense: installDir: Spartans Vs Zombies Defense: {} launch: - /svz.app: + "/svz.app": - when: - os: mac store: steam - /svz.exe: + "/svz.exe": - when: - bit: 64 os: windows store: steam - /svz.x86: + "/svz.x86": - when: - bit: 32 os: linux store: steam - /svz.x86_64: + "/svz.x86_64": - when: - bit: 64 os: linux store: steam - /svz32.exe: + "/svz32.exe": - when: - bit: 32 os: windows @@ -491378,7 +492668,7 @@ Sparticles: installDir: Sparticles: {} launch: - /Sparticles.exe: + "/Sparticles.exe": - when: - bit: 64 os: windows @@ -491389,20 +492679,20 @@ Spate: installDir: Spate: {} launch: - /Spate.app: + "/Spate.app": - when: - os: mac store: steam - /Spate.exe: + "/Spate.exe": - when: - os: windows store: steam - /Spate.x86: + "/Spate.x86": - when: - bit: 32 os: linux store: steam - /Spate.x86_64: + "/Spate.x86_64": - when: - bit: 64 os: linux @@ -491416,8 +492706,8 @@ Spaß Taxi: installDir: SpassTaxi: {} launch: - /SpassTaxi.exe: - - arguments: '-steam' + "/SpassTaxi.exe": + - arguments: "-steam" when: - os: windows store: steam @@ -491430,7 +492720,7 @@ Speakerman: installDir: Speakerman: {} launch: - /Speakerman.exe: + "/Speakerman.exe": - when: - store: steam steam: @@ -491439,7 +492729,7 @@ Speakerman 2: installDir: Speakerman 2: {} launch: - /Speakerman2.exe: + "/Speakerman2.exe": - when: - store: steam steam: @@ -491448,7 +492738,7 @@ Speaking Simulator: installDir: Speaking Simulator: {} launch: - /SpeakingSimulator.exe: + "/SpeakingSimulator.exe": - when: - os: windows store: steam @@ -491458,7 +492748,7 @@ Spear Master: installDir: SpearMaster: {} launch: - /SpearMaster.exe: + "/SpearMaster.exe": - when: - os: windows store: steam @@ -491466,12 +492756,12 @@ Spear Master: id: 878770 Spear of Destiny: files: - /base: + "/base": tags: - config when: - os: windows - /base/SAVEGAM*.SOD: + "/base/SAVEGAM*.SOD": tags: - save when: @@ -491486,45 +492776,45 @@ Spear of Destiny: installDir: Wolfenstein 3D: {} launch: - /base/dosbox.exe: - - arguments: base\\Wolf3d.exe -conf base\\wolf3d.conf -fullscreen -exit + "/base/dosbox.exe": + - arguments: "base\\\\Wolf3d.exe -conf base\\\\wolf3d.conf -fullscreen -exit" when: - store: steam steam: id: 2270 -Spears 'n' Spades: +"Spears 'n' Spades": installDir: - Spears 'n' Spades: {} + "Spears 'n' Spades": {} launch: - /SnS.exe: + "/SnS.exe": - when: - os: windows store: steam steam: id: 673980 -'Spec Ops: The Line': +"Spec Ops: The Line": files: - /Library/Application Support/Spec Ops The Line/GameDocuments/My Games/SpecOps-TheLine/SRGame/Config: + "/Library/Application Support/Spec Ops The Line/GameDocuments/My Games/SpecOps-TheLine/SRGame/Config": tags: - config when: - os: mac - /userdata//50300/remote: + "/userdata//50300/remote": tags: - save when: - store: steam - /My Games/SpecOps-TheLine/SRGame/Config: + "/My Games/SpecOps-TheLine/SRGame/Config": tags: - config when: - os: windows - /My Games/SpecOps-TheLine/SRGame/SaveData: + "/My Games/SpecOps-TheLine/SRGame/SaveData": tags: - save when: - os: windows - /yager/specops/GameDocuments/My Games/SpecOps-TheLine/SRGame/Config: + "/yager/specops/GameDocuments/My Games/SpecOps-TheLine/SRGame/Config": tags: - config when: @@ -491537,15 +492827,15 @@ Spears 'n' Spades: installDir: SpecOps_TheLine: {} launch: - /Binaries/Win32/SpecOpsTheLine.exe: + "/Binaries/Win32/SpecOpsTheLine.exe": - when: - os: windows store: steam - /SpecOps - The Line.app: + "/SpecOps - The Line.app": - when: - os: mac store: steam - /specops: + "/specops": - when: - os: linux store: steam @@ -491553,12 +492843,12 @@ Spears 'n' Spades: id: 50300 SpecNaz 2: files: - /specnaz/config.ini: + "/specnaz/config.ini": tags: - config when: - os: windows - /specnaz/saves: + "/specnaz/saves": tags: - save when: @@ -491570,7 +492860,7 @@ Special Counter Force Attack: installDir: Special Counter Force Attack: {} launch: - /Special Counter Force Attack.exe: + "/Special Counter Force Attack.exe": - when: - os: windows store: steam @@ -491586,14 +492876,14 @@ Special Force VR: Special Force VR: {} steam: id: 673380 -'Special Force VR: Infinity War': +"Special Force VR: Infinity War": installDir: Special Force IW: {} steam: id: 1049130 -'Special Forces: Team X': +"Special Forces: Team X": files: - /SealTeamXGame/Config/PCConsole/Cooked: + "/SealTeamXGame/Config/PCConsole/Cooked": tags: - config when: @@ -491601,17 +492891,17 @@ Special Force VR: installDir: Special Forces Team X: {} launch: - /Binaries/Win32/SealTeamXGame-Win32-Shipping.exe: + "/Binaries/Win32/SealTeamXGame-Win32-Shipping.exe": - when: - store: steam - workingDir: /Binaries + workingDir: "/Binaries" steam: id: 217860 Special Tactics: installDir: STO: {} launch: - /STO.exe: + "/STO.exe": - when: - os: windows store: steam @@ -491621,29 +492911,29 @@ Special Warfare: installDir: Special Warfare: {} launch: - /SpecialWarfare.exe: + "/SpecialWarfare.exe": - when: - os: windows store: steam - /SpecialWarfareMac.app/Contents/MacOS/SpecialWarfareMac: + "/SpecialWarfareMac.app/Contents/MacOS/SpecialWarfareMac": - when: - os: mac store: steam steam: id: 919200 -'Species: Artificial Life, Real Evolution': +"Species: Artificial Life, Real Evolution": installDir: Species ALRE: {} launch: - /Species.exe: + "/Species.exe": - when: - os: windows store: steam - /SpeciesOSX64: + "/SpeciesOSX64": - when: - os: mac store: steam - /SpeciesUbuntuX64: + "/SpeciesUbuntuX64": - when: - bit: 64 os: linux @@ -491654,11 +492944,11 @@ Speckle: installDir: Speckle: {} launch: - /Speckle.app: + "/Speckle.app": - when: - os: mac store: steam - /WindowsNoEditor/Speckle.exe: + "/WindowsNoEditor/Speckle.exe": - when: - bit: 64 os: windows @@ -491667,7 +492957,7 @@ Speckle: id: 873160 Spectacular Sparky: files: - '/AppData/LocalLow/Nicalis, Inc_/Spectacular Sparky/Player.log': + "/AppData/LocalLow/Nicalis, Inc_/Spectacular Sparky/Player.log": tags: - config - save @@ -491678,11 +492968,11 @@ Spectacular Sparky: installDir: Spectacular Sparky: {} launch: - /Spectacular Sparky.app/Contents/MacOS/Spectacular Sparky: + "/Spectacular Sparky.app/Contents/MacOS/Spectacular Sparky": - when: - os: mac store: steam - /Spectacular Sparky.exe: + "/Spectacular Sparky.exe": - when: - os: windows store: steam @@ -491692,7 +492982,7 @@ Spectating Simulator The Racing: installDir: Spectator Simulator The Racing: {} launch: - /car spectator.exe: + "/car spectator.exe": - when: - os: windows store: steam @@ -491702,15 +492992,15 @@ Spectra: installDir: Spectra: {} launch: - /spectra.app: + "/spectra.app": - when: - os: mac store: steam - /spectra.exe: + "/spectra.exe": - when: - os: windows store: steam - /spectra.x86: + "/spectra.x86": - when: - os: linux store: steam @@ -491720,15 +493010,15 @@ Spectraball: installDir: Spectraball: {} launch: - /Spectraball: + "/Spectraball": - when: - os: linux store: steam - /Spectraball.app: + "/Spectraball.app": - when: - os: mac store: steam - /Spectraball.exe: + "/Spectraball.exe": - when: - os: windows store: steam @@ -491743,15 +493033,15 @@ Spectre (2016): installDir: Spectre: {} launch: - /Spectre.app: + "/Spectre.app": - when: - os: mac store: steam - /Spectre.exe: + "/Spectre.exe": - when: - os: windows store: steam - /Spectre.x86_64: + "/Spectre.x86_64": - when: - bit: 64 os: linux @@ -491767,7 +493057,7 @@ Spectromancer: installDir: Spectromancer: {} launch: - /Spectromancer.exe: + "/Spectromancer.exe": - when: - store: steam steam: @@ -491776,15 +493066,15 @@ Spectrubes: installDir: Spectrubes: {} launch: - /spectrubes: + "/spectrubes": - when: - os: linux store: steam - /spectrubes.app: + "/spectrubes.app": - when: - os: mac store: steam - /spectrubes.exe: + "/spectrubes.exe": - when: - os: windows store: steam @@ -491794,15 +493084,15 @@ Spectrubes Infinity: installDir: Spectrubes Infinity: {} launch: - /Spectrubes Infinity.app: + "/Spectrubes Infinity.app": - when: - os: mac store: steam - /spectrubes_infinity: + "/spectrubes_infinity": - when: - os: linux store: steam - /spectrubes_infinity.exe: + "/spectrubes_infinity.exe": - when: - os: windows store: steam @@ -491812,15 +493102,15 @@ Spectrum: installDir: Spectrum: {} launch: - /Spectrum.app: + "/Spectrum.app": - when: - os: mac store: steam - /Spectrum.exe: + "/Spectrum.exe": - when: - os: windows store: steam - /linux_content/Spectrum.x86: + "/linux_content/Spectrum.x86": - when: - os: linux store: steam @@ -491830,32 +493120,32 @@ Spectrum Break: installDir: Spectrum Break: {} launch: - /SpectrumBreak.app: + "/SpectrumBreak.app": - when: - os: mac store: steam - /SpectrumBreak.exe: + "/SpectrumBreak.exe": - when: - os: windows store: steam steam: id: 765490 -Spectrum's Path: +"Spectrum's Path": steam: id: 1005100 -'Spectrum: First Light': +"Spectrum: First Light": installDir: Spectrum First Light: {} launch: - /Spectrum.app: + "/Spectrum.app": - when: - os: mac store: steam - /Spectrum.exe: + "/Spectrum.exe": - when: - os: windows store: steam - /Spectrum.x86: + "/Spectrum.x86": - when: - os: linux store: steam @@ -491865,7 +493155,7 @@ SpedV: installDir: FPH SpedV: {} launch: - /Launcher.exe: + "/Launcher.exe": - when: - os: windows store: steam @@ -491875,20 +493165,20 @@ Speebot: installDir: Speebot: {} launch: - /Speebot.exe: + "/Speebot.exe": - when: - os: windows store: steam steam: id: 731320 -'Speed 3: Grand Prix': +"Speed 3: Grand Prix": files: - /Speed/Saved/Config/WindowsNoEditor: + "/Speed/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /Speed/Saved/SaveGames: + "/Speed/Saved/SaveGames": tags: - save when: @@ -491896,7 +493186,7 @@ Speebot: installDir: Speed 3 Grand Prix: {} launch: - /Speed/Binaries/Win64/Speed-Win64-Shipping.exe: + "/Speed/Binaries/Win64/Speed-Win64-Shipping.exe": - when: - bit: 64 os: windows @@ -491907,14 +493197,14 @@ Speed Box: installDir: SPEED BOX: {} launch: - /SPEED BOX/SPEED BOX English.exe: + "/SPEED BOX/SPEED BOX English.exe": - when: - store: steam steam: id: 886490 Speed Brawl: files: - /AppData/LocalLow/Double Stallion/SpeedBrawl: + "/AppData/LocalLow/Double Stallion/SpeedBrawl": tags: - config - save @@ -491925,15 +493215,15 @@ Speed Brawl: installDir: SpeedBrawl: {} launch: - /SpeedBrawl.exe: + "/SpeedBrawl.exe": - when: - os: windows store: steam steam: id: 468670 -'Speed Busters: American Highways': +"Speed Busters: American Highways": files: - /SPB.ini: + "/SPB.ini": tags: - config when: @@ -491944,7 +493234,7 @@ Speed Car Fighter: installDir: Speed Car Fighter: {} launch: - /speedcar.exe: + "/speedcar.exe": - when: - os: windows store: steam @@ -491952,7 +493242,7 @@ Speed Car Fighter: id: 833800 Speed Crew: files: - /AppData/LocalLow/Wild Fields/Speed Crew Demo/Saves/*.jsv: + "/AppData/LocalLow/Wild Fields/Speed Crew Demo/Saves/*.jsv": tags: - save when: @@ -491966,11 +493256,11 @@ Speed Dating for Ghosts: installDir: Speed Dating for Ghosts: {} launch: - /Speed Dating for Ghosts.app: + "/Speed Dating for Ghosts.app": - when: - os: mac store: steam - /Speed Dating for Ghosts.exe: + "/Speed Dating for Ghosts.exe": - when: - os: windows store: steam @@ -491978,14 +493268,14 @@ Speed Dating for Ghosts: id: 746400 Speed Haste: files: - /speed.cfg: + "/speed.cfg": tags: - config when: - os: dos Speed Kills: files: - /Binaries/Win32/Profile 1: + "/Binaries/Win32/Profile 1": tags: - save when: @@ -491993,7 +493283,7 @@ Speed Kills: installDir: Speed Kills: {} launch: - /Binaries/Win32/SKGame.exe: + "/Binaries/Win32/SKGame.exe": - when: - store: steam steam: @@ -492004,7 +493294,7 @@ Speed Limit: installDir: Speed Limit: {} launch: - /SpeedLimitGame.exe: + "/SpeedLimitGame.exe": - when: - os: windows store: steam @@ -492014,7 +493304,7 @@ Speed Masters ASD: installDir: Speed Masters ASD: {} launch: - /speed_masters.exe: + "/speed_masters.exe": - when: - store: steam steam: @@ -492032,22 +493322,22 @@ SpeedJumper: id: 855200 SpeedRunners: files: - /Library/Application Support/SpeedRunners: + "/Library/Application Support/SpeedRunners": tags: - config when: - os: mac - /userdata//207140/remote: + "/userdata//207140/remote": tags: - save when: - store: steam - /SavedGames/SpeedRunners: + "/SavedGames/SpeedRunners": tags: - config when: - os: windows - /SpeedRunners: + "/SpeedRunners": tags: - config when: @@ -492055,21 +493345,21 @@ SpeedRunners: installDir: SpeedRunners: {} launch: - /SpeedRunners.app/Contents/MacOS/SpeedRunners: + "/SpeedRunners.app/Contents/MacOS/SpeedRunners": - when: - os: mac store: steam - /SpeedRunners.bin.x86: + "/SpeedRunners.bin.x86": - when: - bit: 32 os: linux store: steam - /SpeedRunners.bin.x86_64: + "/SpeedRunners.bin.x86_64": - when: - bit: 64 os: linux store: steam - /SpeedRunners.exe: + "/SpeedRunners.exe": - when: - os: windows store: steam @@ -492077,17 +493367,18 @@ SpeedRunners: id: 207140 Speedball 2 HD: files: - /Speedball2_steam: + "/Speedball2_steam": tags: - save when: - - store: steam + - os: windows + store: steam gog: id: 1207660393 installDir: Speedball 2 HD: {} launch: - /Speedball2_steam.exe: + "/Speedball2_steam.exe": - when: - os: windows store: steam @@ -492097,8 +493388,8 @@ Speedball Arena: installDir: SpeedBallArena: {} launch: - /SpeedBallArena.exe: - - arguments: '-nonvr' + "/SpeedBallArena.exe": + - arguments: "-nonvr" when: - bit: 64 os: windows @@ -492109,7 +493400,7 @@ Speedrun Ninja: installDir: Speedrun Ninja: {} launch: - /Speedrun Ninja.exe: + "/Speedrun Ninja.exe": - when: - os: windows store: steam @@ -492119,7 +493410,7 @@ Speedrun Squad: installDir: Speedrun Squad: {} launch: - /Speedrun Squad.exe: + "/Speedrun Squad.exe": - when: - os: windows store: steam @@ -492129,7 +493420,7 @@ Speedway Challenge 2019: installDir: Speedway Challenge 2019: {} launch: - /SC19.exe: + "/SC19.exe": - when: - os: windows store: steam @@ -492139,7 +493430,7 @@ Speedway Challenge Career: installDir: Speedway Challenge Career: {} launch: - /SpeedwayChallengeCareer.exe: + "/SpeedwayChallengeCareer.exe": - when: - os: windows store: steam @@ -492149,7 +493440,7 @@ Speedway Challenge League: installDir: Speedway Challenge League: {} launch: - /SpeedwayChallengeLeague.exe: + "/SpeedwayChallengeLeague.exe": - when: - os: windows store: steam @@ -492163,21 +493454,21 @@ Speedy Girls - Dream Team: installDir: Speedy Girls - Dream Team: {} launch: - /Speedy Girls - Dream Team.app/Contents/MacOS/Speedy Girls - Dream Team: + "/Speedy Girls - Dream Team.app/Contents/MacOS/Speedy Girls - Dream Team": - when: - os: mac store: steam - /Speedy Girls - Dream Team.exe: + "/Speedy Girls - Dream Team.exe": - when: - os: windows store: steam steam: id: 894900 -'Spell Casting: Meowgically Enhanced Edition': +"Spell Casting: Meowgically Enhanced Edition": installDir: SpellCastingMEE: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -492188,14 +493479,14 @@ Spell Fighter VR: Spell Fighter VR: {} steam: id: 455440 -'SpellForce 2: Demons of the Past': +"SpellForce 2: Demons of the Past": files: - /SpellForce2/config_dotp.xml: + "/SpellForce2/config_dotp.xml": tags: - config when: - os: windows - /SpellForce2/save: + "/SpellForce2/save": tags: - save when: @@ -492205,24 +493496,24 @@ Spell Fighter VR: installDir: SpellForce 2 - Demons of the Past: {} launch: - /SpellForce2DemonsOfThePastEditor.exe: + "/SpellForce2DemonsOfThePastEditor.exe": - when: - os: windows store: steam - /SpellForce2DemonsofthePast.exe: + "/SpellForce2DemonsofthePast.exe": - when: - os: windows store: steam steam: id: 245050 -'SpellForce 2: Faith in Destiny': +"SpellForce 2: Faith in Destiny": files: - /SpellForce2: + "/SpellForce2": tags: - config when: - os: windows - /SpellForce2/save: + "/SpellForce2/save": tags: - save when: @@ -492244,32 +493535,32 @@ Spell Fighter VR: installDir: Spellforce 2 - Faith in Destiny: {} launch: - /Docs/MapEditorFirstSteps.pdf: - - arguments: '' + "/Docs/MapEditorFirstSteps.pdf": + - arguments: "" when: - store: steam - /Docs/SF2_FiD_Manual.pdf: - - arguments: '' + "/Docs/SF2_FiD_Manual.pdf": + - arguments: "" when: - store: steam - /SpellForce2FaithInDestiny.exe: - - arguments: '' + "/SpellForce2FaithInDestiny.exe": + - arguments: "" when: - store: steam - /SpellForce2FaithinDestinyEditor.exe: - - arguments: '' + "/SpellForce2FaithinDestinyEditor.exe": + - arguments: "" when: - store: steam steam: id: 65530 -'SpellForce 2: Shadow Wars': +"SpellForce 2: Shadow Wars": files: - /SpellForce2: + "/SpellForce2": tags: - config when: - os: windows - /SpellForce2/save: + "/SpellForce2/save": tags: - save when: @@ -492283,39 +493574,39 @@ Spell Fighter VR: installDir: Spellforce 2 Gold Edition: {} launch: - /spellforce2.exe: + "/spellforce2.exe": - when: - store: steam steam: id: 39550 SpellForce 3: files: - /config_*.txt: + "/config_*.txt": tags: - config when: - os: windows - /save: + "/save": tags: - save when: - os: windows - /My Games/SpellForce 3 SH/characters: + "/My Games/SpellForce 3 SH/characters": tags: - save when: - os: windows - /My Games/SpellForce 3 SH/config_system.txt: + "/My Games/SpellForce 3 SH/config_system.txt": tags: - config when: - os: windows - /My Games/SpellForce 3 SH/config_user.txt: + "/My Games/SpellForce 3 SH/config_user.txt": tags: - config when: - os: windows - /My Games/SpellForce 3 SH/save: + "/My Games/SpellForce 3 SH/save": tags: - save when: @@ -492325,89 +493616,89 @@ SpellForce 3: id: gogExtra: - 1419313792 - - 1818736081 - - 1957394745 - 1434717372 - 1816339092 + - 1818736081 - 1929113855 + - 1957394745 steamExtra: - - 751610 - 732890 + - 751610 - 817540 - 1093260 - - 1161740 - 1154040 - - 1453890 + - 1161740 - 1415390 - 1416260 + - 1453890 - 1460150 installDir: SpellForceThree: {} launch: - /launcher/SF3/Launcher.exe: - - arguments: '-launch SF3Final' + "/launcher/SF3/Launcher.exe": + - arguments: "-launch SF3Final" when: - os: windows store: steam - - arguments: '-launch ModdingDocs' + - arguments: "-launch ModdingDocs" when: - os: windows store: steam steam: id: 311290 -'SpellForce 3: Fallen God': +"SpellForce 3: Fallen God": installDir: SpellForceThree: {} launch: - /launcher/FG/Launcher.exe: - - arguments: '-launch SF3Final' + "/launcher/FG/Launcher.exe": + - arguments: "-launch SF3Final" when: - os: windows store: steam - - arguments: '-launch ModdingDocs' + - arguments: "-launch ModdingDocs" when: - os: windows store: steam steam: id: 1154040 -'SpellForce 3: Soul Harvest': +"SpellForce 3: Soul Harvest": installDir: SpellForceThree: {} launch: - /launcher/SH/Launcher.exe: - - arguments: '-launch SF3Final' + "/launcher/SH/Launcher.exe": + - arguments: "-launch SF3Final" when: - os: windows store: steam - - arguments: '-launch ModdingDocs' + - arguments: "-launch ModdingDocs" when: - os: windows store: steam steam: id: 817540 -'SpellForce 3: Versus Edition': +"SpellForce 3: Versus Edition": installDir: SpellForceThree: {} launch: - /launcher/Versus/Launcher.exe: - - arguments: '-launch SF3Final' + "/launcher/Versus/Launcher.exe": + - arguments: "-launch SF3Final" when: - os: windows store: steam - - arguments: '-launch ModdingDocs' + - arguments: "-launch ModdingDocs" when: - os: windows store: steam steam: id: 1416260 -'SpellForce: Conquest of Eo': +"SpellForce: Conquest of Eo": files: - /My Games/Spellforce - Conquest of Eo/Custom.sfcoeSettings: + "/My Games/Spellforce - Conquest of Eo/Custom.sfcoeSettings": tags: - config when: - os: windows - /My Games/Spellforce - Conquest of Eo/Savegames//*.sfcoesav: + "/My Games/Spellforce - Conquest of Eo/Savegames//*.sfcoesav": tags: - save when: @@ -492417,21 +493708,21 @@ SpellForce 3: installDir: SpellForce Conquest of Eo: {} launch: - /SFCoE.exe: + "/SFCoE.exe": - when: - bit: 64 os: windows store: steam steam: id: 1581770 -'SpellForce: The Order of Dawn': +"SpellForce: The Order of Dawn": files: - /config.lua: + "/config.lua": tags: - config when: - os: windows - /SpellForce/SAVE: + "/SpellForce/SAVE": tags: - save when: @@ -492441,7 +493732,7 @@ SpellForce 3: installDir: Spellforce Platinum Edition: {} launch: - /Spellforce.exe: + "/Spellforce.exe": - when: - store: steam steam: @@ -492450,7 +493741,7 @@ SpellFront: installDir: SpellFront: {} launch: - /SpellFront.exe: + "/SpellFront.exe": - when: - bit: 64 os: windows @@ -492461,11 +493752,11 @@ SpellKeeper: installDir: SpellKeeper: {} launch: - /SpellKeeper.app: + "/SpellKeeper.app": - when: - os: mac store: steam - /SpellKeeper.exe: + "/SpellKeeper.exe": - when: - os: windows store: steam @@ -492475,7 +493766,7 @@ SpellKnights: installDir: SpellKnights: {} launch: - /SpellKnigths.exe: + "/SpellKnigths.exe": - when: - os: windows store: steam @@ -492490,11 +493781,11 @@ Spellbind: installDir: Spellbind: {} launch: - /Spellbind.app/Contents/MacOS/Spellbind: + "/Spellbind.app/Contents/MacOS/Spellbind": - when: - os: mac store: steam - /Spellbind.exe: + "/Spellbind.exe": - when: - os: windows store: steam @@ -492504,7 +493795,7 @@ Spellbind (2015): installDir: Spellbind: {} launch: - /Spellbind.exe: + "/Spellbind.exe": - when: - store: steam registry: @@ -492518,7 +493809,7 @@ Spellbook Demonslayers: installDir: Spellbook Demonslayers: {} launch: - /Spellbook Demonslayers.exe: + "/Spellbook Demonslayers.exe": - when: - store: steam steam: @@ -492530,7 +493821,7 @@ Spellbound: id: 463400 Spellbreak: files: - /g3/Saved/Config/WindowsNoEditor: + "/g3/Saved/Config/WindowsNoEditor": tags: - config when: @@ -492538,8 +493829,8 @@ Spellbreak: installDir: Spellbreak: {} launch: - /Launch_Spellbreak.exe: - - arguments: '-UseSteamAuth' + "/Launch_Spellbreak.exe": + - arguments: "-UseSteamAuth" when: - bit: 64 os: windows @@ -492548,7 +493839,7 @@ Spellbreak: id: 1399780 Spellcaster University: files: - /AppData/LocalLow/Sneaky Yak Studio/Spellcaster University/PlayerFolder/Saves: + "/AppData/LocalLow/Sneaky Yak Studio/Spellcaster University/PlayerFolder/Saves": tags: - save when: @@ -492558,11 +493849,11 @@ Spellcaster University: installDir: Spellcaster University: {} launch: - /Spellcaster University.app: + "/Spellcaster University.app": - when: - os: mac store: steam - /Spellcaster University.exe: + "/Spellcaster University.exe": - when: - os: windows store: steam @@ -492573,9 +493864,9 @@ Spellcastia: Spellcastia: {} steam: id: 858090 -'Spellcasting 101: Sorcerers Get All the Girls': +"Spellcasting 101: Sorcerers Get All the Girls": files: - /LEGEND.BAT: + "/LEGEND.BAT": tags: - config when: @@ -492586,14 +493877,14 @@ Spellcastia: Spellcasting Collection: {} steam: id: 1028460 -'Spellcasting 201: The Sorcerer''s Appliance': +"Spellcasting 201: The Sorcerer's Appliance": gog: id: 1995040607 installDir: Spellcasting Collection: {} steam: id: 1028460 -'Spellcasting 301: Spring Break': +"Spellcasting 301: Spring Break": gog: id: 1995040607 installDir: @@ -492604,15 +493895,15 @@ Spellcrafter: installDir: Spellcrafter: {} launch: - /Spellcrafter: + "/Spellcrafter": - when: - os: linux store: steam - /Spellcrafter.app: + "/Spellcrafter.app": - when: - os: mac store: steam - /Spellcrafter.exe: + "/Spellcrafter.exe": - when: - os: windows store: steam @@ -492622,7 +493913,7 @@ Spelldrifter: installDir: Spelldrifter: {} launch: - /spelldrifter.exe: + "/spelldrifter.exe": - when: - os: windows store: steam @@ -492632,7 +493923,7 @@ Spellforge: installDir: Spellforge Beta: {} launch: - /Spellforge.exe: + "/Spellforge.exe": - when: - os: windows store: steam @@ -492642,7 +493933,7 @@ Spellgear: installDir: Spellgear: {} launch: - /SGL.exe: + "/SGL.exe": - when: - os: windows store: steam @@ -492652,7 +493943,7 @@ Spelling Quest Online: installDir: Spelling Quest Online: {} launch: - /sqo-desktop.exe: + "/sqo-desktop.exe": - when: - os: windows store: steam @@ -492662,30 +493953,30 @@ Spellinkers: installDir: Spellinkers: {} launch: - /Spellinkers.exe: + "/Spellinkers.exe": - when: - os: windows store: steam steam: id: 1180940 -'Spelljammer: Pirates of Realmspace': +"Spelljammer: Pirates of Realmspace": files: - /*.GSF: + "/*.GSF": tags: - save when: - os: dos - /*.PTY: + "/*.PTY": tags: - save when: - os: dos - /*.SFI: + "/*.SFI": tags: - save when: - os: dos - /PREFS.DAT: + "/PREFS.DAT": tags: - config when: @@ -492695,22 +493986,22 @@ Spellinkers: installDir: Spelljammer Pirates of Realmspace: {} launch: - /Launcher/Launcher.exe: + "/Launcher/Launcher.exe": - when: - store: steam steam: id: 2350550 -'Spellrune: Realm of Portals': +"Spellrune: Realm of Portals": installDir: Spellrune: {} launch: - /Spellrune.exe: + "/Spellrune.exe": - when: - os: windows store: steam steam: id: 924020 -Spells 'n' Stuff: +"Spells 'n' Stuff": installDir: SpellsnStuff: {} steam: @@ -492719,7 +494010,7 @@ Spellspire: installDir: Spellspire: {} launch: - /Spellspire.exe: + "/Spellspire.exe": - when: - os: windows store: steam @@ -492729,32 +494020,32 @@ Spellstone: installDir: Spellstone: {} launch: - /Spellstone.app/Contents/MacOS/Spellstone: + "/Spellstone.app/Contents/MacOS/Spellstone": - when: - os: mac store: steam - /Spellstone.exe: + "/Spellstone.exe": - when: - os: windows store: steam steam: id: 452230 -'Spellsword Cards: Demontide': +"Spellsword Cards: Demontide": installDir: Demontide: {} launch: - /Demontide.exe: + "/Demontide.exe": - when: - bit: 64 os: windows store: steam steam: id: 801210 -'Spellsword Cards: Origins': +"Spellsword Cards: Origins": installDir: Spellsword Cards Origins: {} launch: - /Origins.exe: + "/Origins.exe": - when: - os: windows store: steam @@ -492764,11 +494055,11 @@ Spellsworn: installDir: Spellsworn: {} launch: - /Spellsworn.exe: + "/Spellsworn.exe": - when: - os: windows store: steam - /Spellsworn/Binaries/Linux/Spellsworn-Linux-Test: + "/Spellsworn/Binaries/Linux/Spellsworn-Linux-Test": - when: - os: linux store: steam @@ -492778,18 +494069,18 @@ Spellwake: installDir: Spellwake: {} launch: - /Spellwake/Code/Current/Release/Spellwake.exe: + "/Spellwake/Code/Current/Release/Spellwake.exe": - when: - os: windows store: steam - workingDir: /Spellwake/Code/Current/Release + workingDir: "/Spellwake/Code/Current/Release" steam: id: 921070 Spellweaver: installDir: Spellweaver: {} launch: - /Spellweaver.exe: + "/Spellweaver.exe": - when: - os: windows store: steam @@ -492799,19 +494090,19 @@ Spelunker Party!: installDir: Spelunker Party!: {} launch: - /Spelunker Party.exe: + "/Spelunker Party.exe": - when: - store: steam steam: id: 629860 Spelunky: files: - /Data/config.txt: + "/Data/config.txt": tags: - config when: - os: windows - /Data/spelunky_save.sav: + "/Data/spelunky_save.sav": tags: - save when: @@ -492821,7 +494112,7 @@ Spelunky: installDir: Spelunky: {} launch: - /Spelunky.exe: + "/Spelunky.exe": - when: - os: windows store: steam @@ -492829,23 +494120,23 @@ Spelunky: id: 239350 Spelunky 2: files: - /*.cfg: + "/*.cfg": tags: - config when: - os: windows - /savegame.sav: + "/savegame.sav": tags: - save when: - os: windows - /Spelunky2/*.cfg: + "/Spelunky2/*.cfg": tags: - config when: - os: windows store: microsoft - /Packages/MossmouthLLC.Spelunky2_as5w07d1cr6c0/SystemAppData/wgs: + "/Packages/MossmouthLLC.Spelunky2_as5w07d1cr6c0/SystemAppData/wgs": tags: - save when: @@ -492854,7 +494145,7 @@ Spelunky 2: installDir: Spelunky 2: {} launch: - /Spel2.exe: + "/Spel2.exe": - arguments: random when: - bit: 64 @@ -492866,7 +494157,7 @@ Spelunx and the Caves of Mr. Seudo: installDir: Spelunx: {} launch: - /Spelunx.exe: + "/Spelunx.exe": - when: - store: steam steam: @@ -492875,7 +494166,7 @@ Spencer: installDir: Spencer: {} launch: - /Spencer.exe: + "/Spencer.exe": - when: - os: windows store: steam @@ -492885,15 +494176,15 @@ Spermination: installDir: Spermination: {} launch: - /Spermination-novr.bat: + "/Spermination-novr.bat": - when: - os: windows store: steam - /Spermination.sh: + "/Spermination.sh": - when: - os: linux store: steam - /launchme.sh: + "/launchme.sh": - when: - os: mac store: steam @@ -492906,7 +494197,7 @@ Sphera Turris: installDir: Sphera Turris: {} launch: - /SpheraTurris.exe: + "/SpheraTurris.exe": - when: - os: windows store: steam @@ -492916,7 +494207,7 @@ Sphere Complex: installDir: Sphere Complex: {} launch: - /SphereComplex.exe: + "/SphereComplex.exe": - when: - os: windows store: steam @@ -492926,17 +494217,17 @@ Sphere Frustration: installDir: Sphere Frustration: {} launch: - /Sphere Frustration.exe: + "/Sphere Frustration.exe": - when: - os: windows store: steam steam: id: 667160 -'Sphere III: Enchanted World': +"Sphere III: Enchanted World": installDir: Sphere III: {} launch: - /launchpoint.exe: + "/launchpoint.exe": - when: - os: windows store: steam @@ -492954,13 +494245,13 @@ Sphere Toss 3: Sphere Toss 4: steam: id: 682210 -'Sphere: Flying Cities': +"Sphere: Flying Cities": gog: id: 1482802044 installDir: Sphere Flying Cities: {} launch: - /Sphere - Flying Cities.exe: + "/Sphere - Flying Cities.exe": - when: - os: windows store: steam @@ -492968,14 +494259,14 @@ Sphere Toss 4: id: 1273220 SphereFACE: files: - /sphereFACE.cfg: + "/sphereFACE.cfg": tags: - config when: - os: windows - os: mac - os: linux - /sphereFACE.save: + "/sphereFACE.save": tags: - save when: @@ -492985,38 +494276,41 @@ SphereFACE: installDir: sphereFACE: {} launch: - /sphereFACE.app/Contents/MacOS/run.sh: + "/sphereFACE.app/Contents/MacOS/run.sh": - when: - os: mac store: steam - /sphereFACE.exe: + "/sphereFACE.exe": - when: - os: windows store: steam - /start_linux.sh: + "/start_linux.sh": - when: - bit: 32 os: linux store: steam + - bit: 64 + os: linux + store: steam steam: id: 485680 Spherecraft: installDir: Spherecraft: {} launch: - /Spherecraft.exe: + "/Spherecraft.exe": - when: - store: steam steam: id: 1074370 -'Spheres: The Ancient Fuses': +"Spheres: The Ancient Fuses": steam: id: 1072070 Spheria: installDir: Spheria: {} launch: - /Spheria.exe: + "/Spheria.exe": - when: - os: windows store: steam @@ -493026,16 +494320,16 @@ Spheritis: installDir: Spheritis: {} launch: - /spheritis.exe: + "/spheritis.exe": - when: - os: windows store: steam - /spheritis.x86: + "/spheritis.x86": - when: - bit: 32 os: linux store: steam - /spheritis.x86_64: + "/spheritis.x86_64": - when: - bit: 64 os: linux @@ -493046,7 +494340,7 @@ Spheroid: installDir: Spheroid: {} launch: - '/Spheroid[FSS].exe': + "/Spheroid[FSS].exe": - when: - os: windows store: steam @@ -493061,7 +494355,7 @@ Spheroids: installDir: Spheroids: {} launch: - /Spheroids.exe: + "/Spheroids.exe": - when: - os: windows store: steam @@ -493069,32 +494363,32 @@ Spheroids: id: 586430 Sphinx and the Cursed Mummy: files: - /Library/Application Support/Sphinx: + "/Library/Application Support/Sphinx": tags: - save when: - os: mac - /Library/Application Support/Sphinx/Sphinx.ini: + "/Library/Application Support/Sphinx/Sphinx.ini": tags: - config when: - os: mac - /Saved Games/Sphinx: + "/Saved Games/Sphinx": tags: - save when: - os: windows - /Sphinx/Sphinx.ini: + "/Sphinx/Sphinx.ini": tags: - config when: - os: windows - /Sphinx: + "/Sphinx": tags: - save when: - os: linux - /Sphinx/Sphinx.ini: + "/Sphinx/Sphinx.ini": tags: - config when: @@ -493111,15 +494405,15 @@ Sphinx and the Cursed Mummy: installDir: Sphinx and the Cursed Mummy: {} launch: - /Sphinx.app: + "/Sphinx.app": - when: - os: mac store: steam - /Sphinx.elf: + "/Sphinx.elf": - when: - os: linux store: steam - /SphinxD_GL.exe: + "/SphinxD_GL.exe": - when: - os: windows store: steam @@ -493129,7 +494423,7 @@ Sphoxie: installDir: Sphoxie: {} launch: - /Sphoxie.exe: + "/Sphoxie.exe": - when: - bit: 64 os: windows @@ -493146,11 +494440,11 @@ Spice & Wolf VR 2: Spice&Wolf VR2: {} steam: id: 1348700 -'Spice Pirates in Space: A Retro RPG': +"Spice Pirates in Space: A Retro RPG": installDir: SPiS: {} launch: - /SPiS.exe: + "/SPiS.exe": - when: - os: windows store: steam @@ -493160,7 +494454,7 @@ Spice Road: installDir: Spice Road: {} launch: - /SpiceRoad.exe: + "/SpiceRoad.exe": - when: - os: windows store: steam @@ -493170,7 +494464,7 @@ Spicy Deck: installDir: Spicy Deck: {} launch: - /Spicy Deck Hardcore.exe: + "/Spicy Deck Hardcore.exe": - when: - os: windows store: steam @@ -493178,13 +494472,13 @@ Spicy Deck: id: 953240 Spider Derby: installDir: - '打豹虎 [Spider Derby]': {} + "打豹虎 [Spider Derby]": {} launch: - /SPF.app/Contents/MacOS/SPF: + "/SPF.app/Contents/MacOS/SPF": - when: - os: mac store: steam - /Spider Derby.exe: + "/Spider Derby.exe": - when: - os: windows store: steam @@ -493199,7 +494493,7 @@ Spider Lander: installDir: Spider Lander: {} launch: - /SpiderLanderDX.exe: + "/SpiderLanderDX.exe": - when: - os: windows store: steam @@ -493209,7 +494503,7 @@ Spider Solitaire F: installDir: Spider Solitaire F: {} launch: - /Spider Solitaire F.exe: + "/Spider Solitaire F.exe": - when: - os: windows store: steam @@ -493219,7 +494513,7 @@ Spider Wars: installDir: Spider Wars: {} launch: - /SpiderWars.exe: + "/SpiderWars.exe": - when: - os: windows store: steam @@ -493229,11 +494523,11 @@ Spider ponds: installDir: spider ponds: {} launch: - /spider ponds.exe: + "/spider ponds.exe": - when: - os: windows store: steam - /spiderponds.app: + "/spiderponds.app": - when: - os: mac store: steam @@ -493243,67 +494537,67 @@ Spider shooting bee: installDir: Spider shooting bee: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: id: 1098440 Spider-Man (2001): files: - /Spidey.cfg: + "/Spidey.cfg": tags: - config when: - os: windows - /save: + "/save": tags: - save when: - os: windows Spider-Man (2002): files: - /SavedGames0: + "/SavedGames0": tags: - save when: - os: windows - /game.ini: + "/game.ini": tags: - config when: - os: windows -'Spider-Man 2: The Game': +"Spider-Man 2: The Game": files: - /System: + "/System": tags: - save when: - os: windows - /System/*.ini: + "/System/*.ini": tags: - config when: - os: windows Spider-Man 3: files: - /Activision/Spider-Man 3: + "/Activision/Spider-Man 3": tags: - config when: - os: windows - /Activision/Spider-Man 3: + "/Activision/Spider-Man 3": tags: - save when: - os: windows -'Spider-Man: Far From Home - Virtual Reality Experience': +"Spider-Man: Far From Home - Virtual Reality Experience": installDir: Spider-Man Far From Home VR: {} steam: id: 1067800 -'Spider-Man: Friend or Foe': +"Spider-Man: Friend or Foe": files: - /Activision/Spider-Man FoF/Saved Games: + "/Activision/Spider-Man FoF/Saved Games": tags: - save when: @@ -493312,14 +494606,14 @@ Spider-Man 3: HKEY_CURRENT_USER/Software/Activision/Spider-Man FoF/Settings: tags: - config -'Spider-Man: Homecoming - Virtual Reality Experience': +"Spider-Man: Homecoming - Virtual Reality Experience": installDir: SpiderManHCVR: {} steam: id: 645480 -'Spider-Man: Shattered Dimensions': +"Spider-Man: Shattered Dimensions": files: - /Activision/Spider-Man (TM) SD/Save: + "/Activision/Spider-Man (TM) SD/Save": tags: - save when: @@ -493327,36 +494621,36 @@ Spider-Man 3: installDir: Spider-Man (TM) SD: {} launch: - /Launcher.exe: + "/Launcher.exe": - when: - store: steam steam: id: 231990 -'Spider-Man: Web of Shadows': +"Spider-Man: Web of Shadows": files: - /Activision/Spider-Man Web of Shadows: + "/Activision/Spider-Man Web of Shadows": tags: - save when: - os: windows - /Activision/Spider-Man Web of Shadows/Config.xml: + "/Activision/Spider-Man Web of Shadows/Config.xml": tags: - config when: - os: windows -'Spider: Rite of the Shrouded Moon': +"Spider: Rite of the Shrouded Moon": installDir: Spider Rite of the Shrouded Moon: {} launch: - /Spider2: + "/Spider2": - when: - os: linux store: steam - /Spider2.app: + "/Spider2.app": - when: - os: mac store: steam - /Spider2.exe: + "/Spider2.exe": - when: - os: windows store: steam @@ -493364,18 +494658,18 @@ Spider-Man 3: id: 278420 Spidersaurs: files: - /steamapps/compatdata/1191620/pfx/drive_c/users/steamuser/AppData/Roaming/Wayforward/Spidersaurs/wfEngine.ini: + "/steamapps/compatdata/1191620/pfx/drive_c/users/steamuser/AppData/Roaming/Wayforward/Spidersaurs/wfEngine.ini": tags: - config when: - os: linux store: steam - /userdata//1191620/remote: + "/userdata//1191620/remote": tags: - save when: - store: steam - /Wayforward/Spidersaurs/wfEngine.ini: + "/Wayforward/Spidersaurs/wfEngine.ini": tags: - config when: @@ -493383,7 +494677,7 @@ Spidersaurs: installDir: Spidersaurs: {} launch: - /Final-DX11/Spidersaurs.exe: + "/Final-DX11/Spidersaurs.exe": - when: - store: steam steam: @@ -493392,7 +494686,7 @@ Spiiiders: installDir: SPIIIDERS: {} launch: - /SPIIIDERS.exe: + "/SPIIIDERS.exe": - when: - os: windows store: steam @@ -493402,7 +494696,7 @@ Spike Volleyball: installDir: Spike Volleyball: {} launch: - /ProVolley.exe: + "/ProVolley.exe": - when: - os: windows store: steam @@ -493412,7 +494706,7 @@ Spikes Are Dangerous: installDir: Spikes Are Dangerous: {} launch: - /Spikes Are Dangerous.exe: + "/Spikes Are Dangerous.exe": - when: - os: windows store: steam @@ -493422,7 +494716,7 @@ Spiki Game Box: installDir: Spiki Game Box: {} launch: - /Launch.exe: + "/Launch.exe": - when: - os: windows store: steam @@ -493432,7 +494726,7 @@ Spikit: installDir: Spikit: {} launch: - /Spikit.exe: + "/Spikit.exe": - when: - os: windows store: steam @@ -493446,10 +494740,9 @@ Spin Rhythm XD: /Users/USER/Library/Application Support/Super Spin Digital/Spin Rhythm XD: tags: - config - - save when: - os: mac - /AppData/LocalLow/Super Spin Digital/Spin Rhythm XD/: + "/AppData/LocalLow/Super Spin Digital/Spin Rhythm XD/": tags: - save when: @@ -493457,11 +494750,11 @@ Spin Rhythm XD: installDir: Spin Rhythm: {} launch: - /SpinRhythm.app/Contents/MacOS/Spin Rhythm XD: + "/SpinRhythm.app/Contents/MacOS/Spin Rhythm XD": - when: - os: mac store: steam - /SpinRhythm.exe: + "/SpinRhythm.exe": - when: - os: windows store: steam @@ -493475,20 +494768,20 @@ Spin Rush: installDir: Spin Rush: {} launch: - /SpinRush.app: + "/SpinRush.app": - when: - os: mac store: steam - /SpinRush.exe: + "/SpinRush.exe": - when: - os: windows store: steam - /SpinRush.x86: + "/SpinRush.x86": - when: - bit: 32 os: linux store: steam - /SpinRush.x86_64: + "/SpinRush.x86_64": - when: - bit: 64 os: linux @@ -493499,11 +494792,11 @@ Spin the Beat: installDir: Spin the Beat: {} launch: - /SpinTheBeat.exe: + "/SpinTheBeat.exe": - when: - os: windows store: steam - /SpinTheBeat_Mac.app: + "/SpinTheBeat_Mac.app": - when: - os: mac store: steam @@ -493513,11 +494806,11 @@ Spinball: installDir: Spinball: {} launch: - /Spinball.exe: + "/Spinball.exe": - when: - os: windows store: steam - /spinball: + "/spinball": - when: - os: linux store: steam @@ -493525,12 +494818,12 @@ Spinball: id: 943920 Spinch: files: - /Spinch/game_save_*.ini: + "/Spinch/game_save_*.ini": tags: - save when: - os: windows - /Spinch/settings.ini: + "/Spinch/settings.ini": tags: - config when: @@ -493540,11 +494833,11 @@ Spinch: installDir: Spinch: {} launch: - /Spinch.app: + "/Spinch.app": - when: - os: mac store: steam - /Spinch.exe: + "/Spinch.exe": - when: - os: windows store: steam @@ -493559,15 +494852,15 @@ Spingun: installDir: SPINGUN: {} launch: - /SPINGUN.app/Contents/MacOS/Mac_Runner: + "/SPINGUN.app/Contents/MacOS/Mac_Runner": - when: - os: mac store: steam - /SPINGUN.exe: + "/SPINGUN.exe": - when: - os: windows store: steam - /run.sh: + "/run.sh": - when: - os: linux store: steam @@ -493577,11 +494870,11 @@ Spinheads: installDir: Spinheads: {} launch: - /Spinheads.app/Contents/MacOS/Spinheads: + "/Spinheads.app/Contents/MacOS/Spinheads": - when: - os: mac store: steam - /Spinheads.exe: + "/Spinheads.exe": - when: - os: windows store: steam @@ -493591,15 +494884,15 @@ Spinning Around: installDir: Spinning Around: {} launch: - /Linux-Universal/SpinningAround.x86: + "/Linux-Universal/SpinningAround.x86": - when: - os: linux store: steam - /Mac-Universal.app/Contents/MacOS/Mac-Universal: + "/Mac-Universal.app/Contents/MacOS/Mac-Universal": - when: - os: mac store: steam - /win32/SpinningAround.exe: + "/win32/SpinningAround.exe": - when: - os: windows store: steam @@ -493609,11 +494902,11 @@ Spinning Maze: installDir: Spinning Maze: {} launch: - /Box.exe: + "/Box.exe": - when: - os: windows store: steam - /Spinning Maze.app/Contents/MacOS/Spinning Maze: + "/Spinning Maze.app/Contents/MacOS/Spinning Maze": - when: - os: mac store: steam @@ -493621,7 +494914,7 @@ Spinning Maze: id: 517230 Spinnortality: files: - /AppData/LocalLow/James Patton/Spinnortality: + "/AppData/LocalLow/James Patton/Spinnortality": tags: - save when: @@ -493629,20 +494922,20 @@ Spinnortality: installDir: Spinnortality: {} launch: - /Spinnortality.app: + "/Spinnortality.app": - when: - os: mac store: steam - /Spinnortality.exe: + "/Spinnortality.exe": - when: - os: windows store: steam - /Spinnortality.x86: + "/Spinnortality.x86": - when: - bit: 32 os: linux store: steam - /Spinnortality.x86_64: + "/Spinnortality.x86_64": - when: - bit: 64 os: linux @@ -493651,12 +494944,12 @@ Spinnortality: id: 822990 Spintires: files: - /SpinTires/Config.xml: + "/SpinTires/Config.xml": tags: - config when: - os: windows - /SpinTires/UserSaves/.sts: + "/SpinTires/UserSaves/.sts": tags: - save when: @@ -493664,7 +494957,7 @@ Spintires: installDir: Spintires: {} launch: - /SpinTires.exe: + "/SpinTires.exe": - when: - os: windows store: steam @@ -493675,7 +494968,7 @@ Spiny Adventures: id: 628850 Spiral Clicker: files: - /Stencyl/Spiral Clicker Resized/*.sol: + "/Stencyl/Spiral Clicker Resized/*.sol": tags: - save when: @@ -493686,7 +494979,7 @@ Spiral Clicker: installDir: Spiral Clicker: {} launch: - /Spiral Clicker.exe: + "/Spiral Clicker.exe": - when: - os: windows store: steam @@ -493694,7 +494987,7 @@ Spiral Clicker: id: 950860 Spiral Knights: files: - /Spiral Knights: + "/Spiral Knights": tags: - config when: @@ -493702,12 +494995,12 @@ Spiral Knights: installDir: Spiral Knights: {} launch: - /Spiral Knights.app: + "/Spiral Knights.app": - when: - os: mac store: steam - /java_vm/bin/javaw.exe: - - arguments: '-Dsun.java2d.d3d=false -Dcheck_unpacked=true -jar getdown-pro.jar . client' + "/java_vm/bin/javaw.exe": + - arguments: "-Dsun.java2d.d3d=false -Dcheck_unpacked=true -jar getdown-pro.jar . client" when: - os: windows store: steam @@ -493717,21 +495010,21 @@ Spiral Splatter: installDir: Spiral Splatter: {} launch: - /Spiral Splatter.exe: + "/Spiral Splatter.exe": - when: - os: windows store: steam - /Spiral Splatter.x86: + "/Spiral Splatter.x86": - when: - bit: 32 os: linux store: steam - /Spiral Splatter.x86_64: + "/Spiral Splatter.x86_64": - when: - bit: 64 os: linux store: steam - /SpiralSplatter.app: + "/SpiralSplatter.app": - when: - os: mac store: steam @@ -493741,8 +495034,8 @@ Spiralagon: installDir: Spiralagon: {} launch: - /Spiralagon.exe: - - arguments: '-vr' + "/Spiralagon.exe": + - arguments: "-vr" when: - store: steam steam: @@ -493751,7 +495044,7 @@ Spire of Sorcery: installDir: Spire of Sorcery: {} launch: - /SpireOfSorcery.exe: + "/SpireOfSorcery.exe": - when: - os: windows store: steam @@ -493761,7 +495054,7 @@ Spirit: installDir: Spirit: {} launch: - /Spirit.exe: + "/Spirit.exe": - when: - os: windows store: steam @@ -493771,7 +495064,7 @@ Spirit Animal Survival: installDir: Spirit Animal Survival: {} launch: - /SAS.exe: + "/SAS.exe": - when: - bit: 64 os: windows @@ -493782,7 +495075,7 @@ Spirit Arena: installDir: Spirit Arena: {} launch: - /Spirit Arena.exe: + "/Spirit Arena.exe": - when: - os: windows store: steam @@ -493792,11 +495085,11 @@ Spirit Fighters: installDir: Spirit Fighters: {} launch: - /Spirit Fighters.exe: + "/Spirit Fighters.exe": - when: - os: windows store: steam - /Spirit Fighters.x86_64: + "/Spirit Fighters.x86_64": - when: - os: linux store: steam @@ -493807,11 +495100,11 @@ Spirit Guide Crucible: Spirit Guide Crucible: {} steam: id: 619100 -'Spirit Hunter: NG': +"Spirit Hunter: NG": installDir: Spirit Hunter NG: {} launch: - /SpiritHunterNG.exe: + "/SpiritHunterNG.exe": - when: - os: windows store: steam @@ -493821,7 +495114,7 @@ Spirit Oath: installDir: Spirit Oath: {} launch: - /SpiritOath.exe: + "/SpiritOath.exe": - when: - os: windows store: steam @@ -493836,7 +495129,7 @@ Spirit Roots: installDir: Spirit Roots: {} launch: - /Spirit Roots.exe: + "/Spirit Roots.exe": - when: - os: windows store: steam @@ -493846,7 +495139,7 @@ Spirit Run - Fire vs. Ice: installDir: Spirit Run: {} launch: - /SpiritRun.exe: + "/SpiritRun.exe": - when: - os: windows store: steam @@ -493854,7 +495147,7 @@ Spirit Run - Fire vs. Ice: id: 311490 Spirit of Adventure: files: - /GAME: + "/GAME": tags: - save when: @@ -493864,11 +495157,11 @@ Spirit of Adventure: installDir: soa: {} launch: - /game.bat: + "/game.bat": - when: - os: windows store: steam - /game.sh: + "/game.sh": - when: - os: linux store: steam @@ -493876,12 +495169,12 @@ Spirit of Adventure: id: 1260920 Spirit of Excalibur: files: - /*.SAV: + "/*.SAV": tags: - save when: - os: dos - /GAME.CFG: + "/GAME.CFG": tags: - config when: @@ -493890,7 +495183,7 @@ Spirit of Maya: installDir: Spirit of maya: {} launch: - /SOM.exe: + "/SOM.exe": - when: - os: windows store: steam @@ -493899,11 +495192,11 @@ Spirit of Maya: Spirit of Midnight: steam: id: 1141060 -'Spirit of Revenge: Cursed Castle': +"Spirit of Revenge: Cursed Castle": installDir: - Spirit of Revenge Cursed Castle Collector's Edition: {} + "Spirit of Revenge Cursed Castle Collector's Edition": {} launch: - /SpiritOfRevenge_CursedCastle_CE.exe: + "/SpiritOfRevenge_CursedCastle_CE.exe": - when: - store: steam steam: @@ -493912,11 +495205,11 @@ Spirit of War: installDir: Spirit Of War: {} launch: - /SpiritOfWar.app: + "/SpiritOfWar.app": - when: - os: mac store: steam - /SpiritOfWar.exe: + "/SpiritOfWar.exe": - when: - os: windows store: steam @@ -493926,11 +495219,11 @@ Spirit of the Ancient Forest: installDir: Spirit of the Ancient Forest: {} launch: - /ancientforest.app: + "/ancientforest.app": - when: - os: mac store: steam - /ancientforest.exe: + "/ancientforest.exe": - when: - os: windows store: steam @@ -493942,7 +495235,7 @@ Spirit of the Island: installDir: Spirit Of The Island: {} launch: - /SOTI.exe: + "/SOTI.exe": - when: - os: windows store: steam @@ -493950,12 +495243,12 @@ Spirit of the Island: id: 1592110 Spirit of the North: files: - /Infused/Saved/Config/WindowsNoEditor: + "/Infused/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /Infused/Saved/SaveGames: + "/Infused/Saved/SaveGames": tags: - save when: @@ -493963,7 +495256,7 @@ Spirit of the North: installDir: Spirit of the North: {} launch: - /Infused.exe: + "/Infused.exe": - when: - bit: 64 os: windows @@ -493977,7 +495270,7 @@ SpiritSphere: installDir: SpiritSphere: {} launch: - /SpiritSphere.exe: + "/SpiritSphere.exe": - when: - os: windows store: steam @@ -493987,15 +495280,15 @@ Spirited Heart Deluxe: installDir: SpiritedHeart: {} launch: - /SpiritedHeartDeluxe.app: + "/SpiritedHeartDeluxe.app": - when: - os: mac store: steam - /SpiritedHeartDeluxe.exe: + "/SpiritedHeartDeluxe.exe": - when: - os: windows store: steam - /SpiritedHeartDeluxe.sh: + "/SpiritedHeartDeluxe.sh": - when: - os: linux store: steam @@ -494003,12 +495296,12 @@ Spirited Heart Deluxe: id: 293920 Spiritfall: files: - /Prefs/*.dat: + "/Prefs/*.dat": tags: - config when: - os: windows - /SavedGames//save*.dat: + "/SavedGames//save*.dat": tags: - save when: @@ -494016,45 +495309,47 @@ Spiritfall: installDir: Spiritfall: {} launch: - /Spiritfall.app: + "/Spiritfall.app": - when: - os: mac store: steam - /Spiritfall.exe: + "/Spiritfall.exe": - when: - os: windows store: steam + - os: linux + store: steam steam: id: 1835240 Spiritfarer: files: - /AppData/LocalLow/Thunder Lotus Games/Spiritfarer: + "/AppData/LocalLow/Thunder Lotus Games/Spiritfarer": tags: - save when: - os: windows - /AppData/LocalLow/Thunder Lotus Games/Spiritfarer/SAVE_OPTIONS.sav: + "/AppData/LocalLow/Thunder Lotus Games/Spiritfarer/SAVE_OPTIONS.sav": tags: - config when: - os: windows - /Library/Application Support/Thunder Lotus Games/Spiritfarer: + "/Library/Application Support/Thunder Lotus Games/Spiritfarer": tags: - save when: - os: mac - /Packages/44905ThunderLotusGames.40196900AE792_hbhkcnqstm4gr/SystemAppData/wgs: + "/Packages/44905ThunderLotusGames.40196900AE792_hbhkcnqstm4gr/SystemAppData/wgs": tags: - save when: - os: windows store: microsoft - /unity3d/Thunder Lotus Games/Spiritfarer: + "/unity3d/Thunder Lotus Games/Spiritfarer": tags: - save when: - os: linux - /unity3d/Thunder Lotus Games/Spiritfarer/prefs: + "/unity3d/Thunder Lotus Games/Spiritfarer/prefs": tags: - config when: @@ -494067,15 +495362,17 @@ Spiritfarer: installDir: Kami: {} launch: - /Spiritfarer.app: + "/Spiritfarer.app": - when: - os: mac store: steam - /Spiritfarer.exe: + "/Spiritfarer.exe": - when: - os: windows store: steam - /Spiritfarer.x86_64: + - os: linux + store: steam + "/Spiritfarer.x86_64": - when: - bit: 64 os: linux @@ -494090,7 +495387,7 @@ Spiritlands: installDir: Spiritlands: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -494098,13 +495395,13 @@ Spiritlands: id: 618270 Spirits: files: - /.spirits: + "/.spirits": tags: - config - save when: - os: linux - /userdata//210170/remote/playerslot_*: + "/userdata//210170/remote/playerslot_*": tags: - config - save @@ -494113,15 +495410,15 @@ Spirits: installDir: Spirits: {} launch: - /Spirits: + "/Spirits": - when: - os: linux store: steam - /Spirits.app: + "/Spirits.app": - when: - os: mac store: steam - /Spirits.exe: + "/Spirits.exe": - when: - os: windows store: steam @@ -494131,65 +495428,65 @@ Spirits Abyss: installDir: Spirits Abyss: {} launch: - /Spirits Abyss.exe: + "/Spirits Abyss.exe": - when: - os: windows store: steam steam: id: 1078200 -'Spirits of Metropolis: Legacy Edition': +"Spirits of Metropolis: Legacy Edition": installDir: SpiritsofMetropolis: {} launch: - /SpiritsofMetropolis1_10.exe: + "/SpiritsofMetropolis1_10.exe": - when: - os: windows store: steam steam: id: 840940 -'Spirits of Mystery: Amber Maiden': +"Spirits of Mystery: Amber Maiden": installDir: - Spirits of Mystery Amber Maiden Collector's Edition: {} + "Spirits of Mystery Amber Maiden Collector's Edition": {} launch: - /SpiritsOfMystery_AmberMaidenCE.exe: + "/SpiritsOfMystery_AmberMaidenCE.exe": - when: - store: steam steam: id: 514760 -'Spirits of Mystery: Chains of Promise': +"Spirits of Mystery: Chains of Promise": installDir: - Spirits of Mystery Chains of Promise Collector's Edition: {} + "Spirits of Mystery Chains of Promise Collector's Edition": {} launch: - /SpiritsOfMystery_ChainsOfPromise_CE.exe: + "/SpiritsOfMystery_ChainsOfPromise_CE.exe": - when: - os: windows store: steam steam: id: 941030 -'Spirits of Mystery: Song of the Phoenix': +"Spirits of Mystery: Song of the Phoenix": installDir: - Spirits of Mystery Song of the Phoenix Collector's Edition: {} + "Spirits of Mystery Song of the Phoenix Collector's Edition": {} launch: - /SpiritsOfMystery_SongOfThePhoenixCE.exe: + "/SpiritsOfMystery_SongOfThePhoenixCE.exe": - when: - store: steam steam: id: 586740 -'Spirits of Mystery: The Dark Minotaur': +"Spirits of Mystery: The Dark Minotaur": installDir: - Spirits of Mystery The Dark Minotaur Collector's Edition: {} + "Spirits of Mystery The Dark Minotaur Collector's Edition": {} launch: - /SpiritsOfMystery_DarkMinotaur_CE.exe: + "/SpiritsOfMystery_DarkMinotaur_CE.exe": - when: - os: windows store: steam steam: id: 709340 -'Spirits of Mystery: The Silver Arrow': +"Spirits of Mystery: The Silver Arrow": installDir: - Spirits of Mystery The Silver Arrow Collector's Edition: {} + "Spirits of Mystery The Silver Arrow Collector's Edition": {} launch: - /SpiritsOfMystery_TheSilverArrow_CE.exe: + "/SpiritsOfMystery_TheSilverArrow_CE.exe": - when: - os: windows store: steam @@ -494199,34 +495496,34 @@ Spirits of Xanadu: installDir: Spirits of Xanadu: {} launch: - /Spirits of Xanadu.app: + "/Spirits of Xanadu.app": - when: - os: mac store: steam - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" when: - os: mac store: steam - /Spirits of Xanadu.exe: + "/Spirits of Xanadu.exe": - when: - os: windows store: steam - /Spirits of Xanadu.x86: + "/Spirits of Xanadu.x86": - when: - bit: 32 os: linux store: steam - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" when: - bit: 32 os: linux store: steam - /Spirits of Xanadu.x86_64: + "/Spirits of Xanadu.x86_64": - when: - bit: 64 os: linux store: steam - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" when: - bit: 64 os: linux @@ -494238,19 +495535,19 @@ Spirits of Xanadu: - save steam: id: 312230 -'Spirits: Ciel Bleu': +"Spirits: Ciel Bleu": installDir: Spirits Ciel Bleu: {} launch: - /Spirits.app: + "/Spirits.app": - when: - os: mac store: steam - /Spirits.exe: + "/Spirits.exe": - when: - os: windows store: steam - /Spirits.sh: + "/Spirits.sh": - when: - os: linux store: steam @@ -494258,7 +495555,7 @@ Spirits of Xanadu: id: 671230 Spiritual Warfare: files: - /SPIRIT.SAV: + "/SPIRIT.SAV": tags: - save when: @@ -494266,77 +495563,80 @@ Spiritual Warfare: installDir: Spiritual Warfare & Wisdom Tree Collection: {} launch: - /DOSBox.app/Contents/MacOS/DOSBox: - - arguments: '-conf ../Conf/spirit.cfg -noconsole' + "/DOSBox.app/Contents/MacOS/DOSBox": + - arguments: "-conf ../Conf/spirit.cfg -noconsole" when: - os: mac store: steam - workingDir: /DOS - - arguments: '-conf ../Conf/bibleunix.cfg -noconsole' + workingDir: "/DOS" + - arguments: "-conf ../Conf/bibleunix.cfg -noconsole" when: - os: mac store: steam - workingDir: /DOS - - arguments: '-conf ../Conf/exodus.cfg -noconsole' + workingDir: "/DOS" + - arguments: "-conf ../Conf/exodus.cfg -noconsole" when: - os: mac store: steam - workingDir: /DOS - - arguments: '-conf ../Conf/joshua.cfg -noconsole' + workingDir: "/DOS" + - arguments: "-conf ../Conf/joshua.cfg -noconsole" when: - os: mac store: steam - workingDir: /DOS - /dosbox: - - arguments: '-conf ../Conf/spirit.cfg -noconsole' + workingDir: "/DOS" + "/dosbox": + - arguments: "-conf ../Conf/spirit.cfg -noconsole" when: - os: linux store: steam - workingDir: /DOS - - arguments: '-conf ../Conf/bibleunix.cfg -noconsole' + workingDir: "/DOS" + - arguments: "-conf ../Conf/bibleunix.cfg -noconsole" when: - os: linux store: steam - workingDir: /DOS - - arguments: '-conf ../Conf/exodus.cfg -noconsole' + workingDir: "/DOS" + - arguments: "-conf ../Conf/exodus.cfg -noconsole" when: - os: linux store: steam - workingDir: /DOS - - arguments: '-conf ../Conf/joshua.cfg -noconsole' + workingDir: "/DOS" + - arguments: "-conf ../Conf/joshua.cfg -noconsole" when: - os: linux store: steam - workingDir: /DOS - /dosbox.exe: - - arguments: '-conf ../Conf/spirit.cfg -noconsole' + workingDir: "/DOS" + "/dosbox.exe": + - arguments: "-conf ../Conf/spirit.cfg -noconsole" when: - os: windows store: steam - workingDir: /DOS - - arguments: '-conf ../Conf/bible.cfg -noconsole' + workingDir: "/DOS" + - arguments: "-conf ../Conf/bible.cfg -noconsole" when: - os: windows store: steam - workingDir: /DOS - - arguments: '-conf ../Conf/exodus.cfg -noconsole' + workingDir: "/DOS" + - arguments: "-conf ../Conf/exodus.cfg -noconsole" when: - os: windows store: steam - workingDir: /DOS - - arguments: '-conf ../Conf/joshua.cfg -noconsole' + workingDir: "/DOS" + - arguments: "-conf ../Conf/joshua.cfg -noconsole" when: - os: windows store: steam - workingDir: /DOS + workingDir: "/DOS" steam: id: 624550 Spitkiss: installDir: Spitkiss: {} launch: - /Spitkiss.exe: + "/Spitkiss.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam @@ -494351,7 +495651,7 @@ Spitlings: installDir: Spitlings: {} launch: - /Spitlings.exe: + "/Spitlings.exe": - when: - os: windows store: steam @@ -494361,21 +495661,21 @@ Splash: installDir: Splash: {} launch: - /Splash.app/Contents/MacOS/Splash: + "/Splash.app/Contents/MacOS/Splash": - when: - os: mac store: steam - /Splash.exe: + "/Splash.exe": - when: - os: windows store: steam steam: id: 853980 -'Splash Adventure: The Maze of Morla': +"Splash Adventure: The Maze of Morla": installDir: Splash Adventure - The Maze of Morla: {} launch: - /Splash Adventure - The Maze of Morla.exe: + "/Splash Adventure - The Maze of Morla.exe": - when: - os: windows store: steam @@ -494385,7 +495685,7 @@ Splash Bash: installDir: Splash Bash: {} launch: - /SplashBash.exe: + "/SplashBash.exe": - when: - os: windows store: steam @@ -494395,20 +495695,20 @@ Splash Blast Panic: installDir: Splash Blast Panic: {} launch: - /SBP.app/Contents/MacOS/SBP: + "/SBP.app/Contents/MacOS/SBP": - when: - os: mac store: steam - /SBP.exe: + "/SBP.exe": - when: - os: windows store: steam - /SBP.x86: + "/SBP.x86": - when: - bit: 32 os: linux store: steam - /SBP.x86_64: + "/SBP.x86_64": - when: - bit: 64 os: linux @@ -494420,22 +495720,22 @@ Splash Wars: id: 989720 Splasher: files: - /userdata//446840/remote: + "/userdata//446840/remote": tags: - save when: - store: steam - /My Games/Splasher/AutoSave/PlayerPrefs/save.dat: + "/My Games/Splasher/AutoSave/PlayerPrefs/save.dat": tags: - config when: - os: windows - /My Games/Splasher/AutoSave/Save1/save.dat: + "/My Games/Splasher/AutoSave/Save1/save.dat": tags: - save when: - os: windows - /unity3d/Splashteam/Splasher/perfs: + "/unity3d/Splashteam/Splasher/perfs": tags: - config when: @@ -494443,15 +495743,15 @@ Splasher: installDir: Splasher: {} launch: - /Splasher.app: + "/Splasher.app": - when: - os: mac store: steam - /Splasher.exe: + "/Splasher.exe": - when: - os: windows store: steam - /Splasher.x86: + "/Splasher.x86": - when: - os: linux store: steam @@ -494465,36 +495765,39 @@ Splat the Blob: installDir: Splat the Blob: {} launch: - /SplatTheBlob.app/Contents/MacOS/SplatTheBlob: + "/SplatTheBlob.app/Contents/MacOS/SplatTheBlob": - when: - os: mac store: steam - /SplatTheBlob.exe: + "/SplatTheBlob.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam - /SplatTheBlob.x86: + "/SplatTheBlob.x86": - when: - os: linux store: steam steam: id: 701900 -'Splatter: Zombiecalypse Now': +"Splatter: Zombiecalypse Now": gog: id: 1795553213 installDir: Splatter: {} launch: - /Splatter_Linux: + "/Splatter_Linux": - when: - os: linux store: steam - /Splatter_OSX: + "/Splatter_OSX": - when: - os: mac store: steam - /Splatter_Steam.exe: + "/Splatter_Steam.exe": - when: - os: windows store: steam @@ -494502,12 +495805,12 @@ Splat the Blob: id: 281920 Splatterhouse: files: - /SPLATTER.INI: + "/SPLATTER.INI": tags: - save when: - os: windows - /USERRANK.DAT: + "/USERRANK.DAT": tags: - save when: @@ -494519,7 +495822,7 @@ Splendor: installDir: Splendor: {} launch: - /Splendor.exe: + "/Splendor.exe": - when: - os: windows store: steam @@ -494527,7 +495830,7 @@ Splendor: id: 376680 Splice: files: - '/.config/unity3d/Cipher Prime Studios, Inc./Splice': + "/.config/unity3d/Cipher Prime Studios, Inc./Splice": tags: - config - save @@ -494536,20 +495839,20 @@ Splice: installDir: Splice: {} launch: - /Splice: + "/Splice": - when: - os: linux store: steam - /Splice.app: + "/Splice.app": - when: - os: mac store: steam - /Splice.exe: + "/Splice.exe": - when: - os: windows store: steam registry: - 'HKEY_CURRENT_USER/Software/Cipher Prime Studios, Inc./Splice': + "HKEY_CURRENT_USER/Software/Cipher Prime Studios, Inc./Splice": tags: - config - save @@ -494559,7 +495862,7 @@ Splinter Zone: installDir: Splinter Zone: {} launch: - /Splinter_Zone.exe: + "/Splinter_Zone.exe": - when: - os: windows store: steam @@ -494569,7 +495872,7 @@ Split: installDir: Split: {} launch: - /Split.exe: + "/Split.exe": - when: - bit: 64 os: windows @@ -494578,12 +495881,12 @@ Split: id: 444860 Split (2019): files: - /AppData/LocalLow/Garlic Jam/Split/settings.ini: + "/AppData/LocalLow/Garlic Jam/Split/settings.ini": tags: - config when: - os: windows - /AppData/LocalLow/Garlic Jam/save.split: + "/AppData/LocalLow/Garlic Jam/save.split": tags: - save when: @@ -494593,7 +495896,7 @@ Split (2019): installDir: Split: {} launch: - /Split.exe: + "/Split.exe": - when: - os: windows store: steam @@ -494607,11 +495910,11 @@ Split Bullet: installDir: SPLIT BULLET: {} launch: - /SPLIT-BULLET_install.sh: + "/SPLIT-BULLET_install.sh": - when: - os: linux store: steam - /SPLIT_BULLET.exe: + "/SPLIT_BULLET.exe": - when: - os: windows store: steam @@ -494622,7 +495925,7 @@ Split Signal: id: 289980 Split of Knight: files: - /www/save: + "/www/save": tags: - config - save @@ -494634,7 +495937,7 @@ Split or Steal: installDir: Split or Steal: {} launch: - /Split Or Steal.exe: + "/Split Or Steal.exe": - when: - os: windows store: steam @@ -494642,7 +495945,7 @@ Split or Steal: id: 1162930 Split/Second: files: - /Disney Interactive Studios/Split Second: + "/Disney Interactive Studios/Split Second": tags: - config - save @@ -494651,7 +495954,7 @@ Split/Second: installDir: SplitSecond: {} launch: - /SplitSecond.exe: + "/SplitSecond.exe": - when: - os: windows store: steam @@ -494659,12 +495962,12 @@ Split/Second: id: 297860 Splitgate: files: - /.config/Epic/PortalWars/Saved/Config/LinuxNoEditor: + "/.config/Epic/PortalWars/Saved/Config/LinuxNoEditor": tags: - config when: - os: linux - /PortalWars/Saved/Config/WindowsNoEditor: + "/PortalWars/Saved/Config/WindowsNoEditor": tags: - config when: @@ -494676,13 +495979,13 @@ Splitgate: installDir: Splitgate: {} launch: - /PortalWars.sh: + "/PortalWars.sh": - when: - bit: 64 os: linux store: steam - /equ8-launcher.exe: - - arguments: '--config_equ8_ue4_crc=0' + "/equ8-launcher.exe": + - arguments: "--config_equ8_ue4_crc=0" when: - bit: 64 os: windows @@ -494696,11 +495999,11 @@ Splitter Critters: installDir: Splitter Critters: {} launch: - /SplitterCritters.app: + "/SplitterCritters.app": - when: - os: mac store: steam - /SplitterCritters.exe: + "/SplitterCritters.exe": - when: - os: windows store: steam @@ -494710,16 +496013,16 @@ Splody: installDir: Splody: {} launch: - /Splody.exe: + "/Splody.exe": - when: - os: windows store: steam - /SplodyDarwin64: + "/SplodyDarwin64": - when: - bit: 64 os: mac store: steam - /SplodyLinux.sh: + "/SplodyLinux.sh": - when: - os: linux store: steam @@ -494729,7 +496032,7 @@ Splotches: installDir: Splotches: {} launch: - /Splotches.exe: + "/Splotches.exe": - when: - os: windows store: steam @@ -494739,7 +496042,7 @@ Spoids: installDir: Spoids: {} launch: - /Spoids.exe: + "/Spoids.exe": - when: - os: windows store: steam @@ -494747,7 +496050,7 @@ Spoids: id: 589640 Spoiler Alert: files: - /Spoiler_Alert: + "/Spoiler_Alert": tags: - config - save @@ -494756,15 +496059,15 @@ Spoiler Alert: installDir: Spoiler Alert: {} launch: - /Spoiler Alert.app: + "/Spoiler Alert.app": - when: - os: mac store: steam - /Spoiler Alert.exe: + "/Spoiler Alert.exe": - when: - os: windows store: steam - /Spoiler_Alert/runner: + "/Spoiler_Alert/runner": - when: - os: linux store: steam @@ -494774,11 +496077,11 @@ Spoko and Poko: installDir: Spoko and Poko: {} launch: - /spoko&poko.app: + "/spoko&poko.app": - when: - os: mac store: steam - /spoko&poko.exe: + "/spoko&poko.exe": - when: - os: windows store: steam @@ -494788,20 +496091,20 @@ Sponchies: installDir: Sponchies: {} launch: - /Sponchies.exe: + "/Sponchies.exe": - when: - os: windows store: steam steam: id: 593670 -'SpongeBob SquarePants: Battle for Bikini Bottom - Rehydrated': +"SpongeBob SquarePants: Battle for Bikini Bottom - Rehydrated": files: - /Pineapple/Saved/Config/WindowsNoEditor: + "/Pineapple/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /Pineapple/Saved/SaveGames: + "/Pineapple/Saved/SaveGames": tags: - save when: @@ -494811,16 +496114,16 @@ Sponchies: installDir: SpongeBob SquarePants Battle for Bikini Bottom - Rehydrated: {} launch: - /SpongeBob_BFBB_R.exe: + "/SpongeBob_BFBB_R.exe": - when: - bit: 64 os: windows store: steam steam: id: 969990 -'SpongeBob SquarePants: Employee of the Month': +"SpongeBob SquarePants: Employee of the Month": files: - /saved: + "/saved": tags: - save when: @@ -494829,41 +496132,41 @@ Sponchies: HKEY_CURRENT_USER/Software/THQ/SpongeBob 2/Settings: tags: - config -'SpongeBob SquarePants: Lights, Camera, Pants!': +"SpongeBob SquarePants: Lights, Camera, Pants!": registry: HKEY_CURRENT_USER/Software/THQ/SpongeBob 5/Settings: tags: - config -'SpongeBob SquarePants: Operation Krabby Patty': +"SpongeBob SquarePants: Operation Krabby Patty": files: - /options.dat: + "/options.dat": tags: - config when: - os: windows - /users.dat: + "/users.dat": tags: - save when: - os: windows -'SpongeBob SquarePants: The Cosmic Shake': +"SpongeBob SquarePants: The Cosmic Shake": files: - /CosmicShake/Saved//SaveGames/*.sav: + "/CosmicShake/Saved//SaveGames/*.sav": tags: - save when: - os: windows - /CosmicShake/Saved//SaveGames/*.sav: + "/CosmicShake/Saved//SaveGames/*.sav": tags: - save when: - os: windows - /CosmicShake/Saved//SaveGames/UserSettings.sav: + "/CosmicShake/Saved//SaveGames/UserSettings.sav": tags: - config when: - os: windows - /CosmicShake/Saved/Config/WindowsNoEditor: + "/CosmicShake/Saved/Config/WindowsNoEditor": tags: - config when: @@ -494873,7 +496176,7 @@ Sponchies: installDir: SpongeBob SquarePants The Cosmic Shake: {} launch: - /CosmicShake.exe: + "/CosmicShake.exe": - when: - bit: 64 os: windows @@ -494882,7 +496185,7 @@ Sponchies: id: 1282150 Spookware: files: - /AppData/LocalLow/BEESWAX GAMES/SPOOKWARE/SPOOKWARESaveData.txt: + "/AppData/LocalLow/BEESWAX GAMES/SPOOKWARE/SPOOKWARESaveData.txt": tags: - save when: @@ -494890,7 +496193,7 @@ Spookware: installDir: Spookware: {} launch: - /SPOOKWARE.exe: + "/SPOOKWARE.exe": - when: - store: steam registry: @@ -494903,11 +496206,11 @@ Spooky Bonus: installDir: Spooky Bonus: {} launch: - /SpookyBonus.app: + "/SpookyBonus.app": - when: - os: mac store: steam - /SpookyBonus.exe: + "/SpookyBonus.exe": - when: - os: windows store: steam @@ -494917,11 +496220,11 @@ Spooky Cats: installDir: Spooky Cats: {} launch: - /spookycats.app: + "/spookycats.app": - when: - os: mac store: steam - /spookycats.exe: + "/spookycats.exe": - when: - os: windows store: steam @@ -494931,11 +496234,11 @@ Spooky Ghosts Dot Com: installDir: Spooky Ghosts Dot Com: {} launch: - /SpookyGhostsDotCom: + "/SpookyGhostsDotCom": - when: - os: linux store: steam - /SpookyGhostsDotCom.exe: + "/SpookyGhostsDotCom.exe": - when: - os: windows store: steam @@ -494945,11 +496248,11 @@ Spooky Heroes: installDir: Spooky Heroes: {} launch: - /nw: + "/nw": - when: - os: linux store: steam - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -494965,11 +496268,11 @@ Spooky Night 2: Spooky Night 2: {} steam: id: 1178060 -'Spooky Starlets: Movie Maker': +"Spooky Starlets: Movie Maker": installDir: Spooky Starlets: {} launch: - /Spooky Starlets.exe: + "/Spooky Starlets.exe": - when: - store: steam steam: @@ -494978,53 +496281,53 @@ Spooky Station: installDir: Spooky Station: {} launch: - /GameLauncher.exe: + "/GameLauncher.exe": - when: - store: steam steam: id: 700100 -Spooky's Jump Scare Mansion: +"Spooky's Jump Scare Mansion": files: - /save_data_main.ini: + "/save_data_main.ini": tags: - config - save when: - os: windows installDir: - Spooky's House of Jump Scares: {} + "Spooky's House of Jump Scares": {} launch: - /SPOOKY.exe: + "/SPOOKY.exe": - when: - os: windows store: steam steam: id: 356670 -'Spooky''s Jump Scare Mansion: HD Renovation': +"Spooky's Jump Scare Mansion: HD Renovation": files: - /AppData/LocalLow/Albino Moose Games/SpookyHD/KHMansion.txt: + "/AppData/LocalLow/Albino Moose Games/SpookyHD/KHMansion.txt": tags: - save when: - os: windows - /AppData/LocalLow/Albino Moose Games/SpookyHD/global.txt: + "/AppData/LocalLow/Albino Moose Games/SpookyHD/global.txt": tags: - save when: - os: windows - /AppData/LocalLow/Albino Moose Games/SpookyHD/save.txt: + "/AppData/LocalLow/Albino Moose Games/SpookyHD/save.txt": tags: - save when: - os: windows installDir: - Spooky's Jump Scare Mansion HD Renovation: {} + "Spooky's Jump Scare Mansion HD Renovation": {} launch: - /SpookyUnity.app: + "/SpookyUnity.app": - when: - os: mac store: steam - /SpookyUnity.exe: + "/SpookyUnity.exe": - when: - os: windows store: steam @@ -495038,11 +496341,11 @@ Spoorky: installDir: Spoorky: {} launch: - /Spoorky.app/Contents/MacOS/Spoorky: + "/Spoorky.app/Contents/MacOS/Spoorky": - when: - os: mac store: steam - /Spoorky.exe: + "/Spoorky.exe": - when: - os: windows store: steam @@ -495050,17 +496353,17 @@ Spoorky: id: 858080 Spore: files: - /SPORE/Preferences: + "/SPORE/Preferences": tags: - config when: - os: windows - /Spore/Games: + "/Spore/Games": tags: - save when: - os: windows - /My Spore Creations: + "/My Spore Creations": tags: - save when: @@ -495074,29 +496377,29 @@ Spore: installDir: Spore: {} launch: - /SporeBin/SporeApp.exe: + "/SporeBin/SporeApp.exe": - when: - store: steam - /Support/EA Help/Electronic_Arts_Technical_Support.htm: + "/Support/EA Help/Electronic_Arts_Technical_Support.htm": - when: - store: steam steam: id: 17390 -'Spork: The Manic Utensil Storm': +"Spork: The Manic Utensil Storm": installDir: Spork: {} launch: - /Spork The manic utensil storm.exe: + "/Spork The manic utensil storm.exe": - when: - os: windows store: steam steam: id: 775590 -'Sport1 Live: Duel': +"Sport1 Live: Duel": installDir: Live Duel: {} launch: - /LIVE-DUELL.exe: + "/LIVE-DUELL.exe": - when: - os: windows store: steam @@ -495109,32 +496412,32 @@ SportsBar VR: id: 269170 Sportsfriends: files: - /Library/Application Support/sportsfriends/config.ini: + "/Library/Application Support/sportsfriends/config.ini": tags: - config when: - os: mac - /Library/Application Support/sportsfriends/save.dat: + "/Library/Application Support/sportsfriends/save.dat": tags: - save when: - os: mac - /sportsfriends/config.ini: + "/sportsfriends/config.ini": tags: - config when: - os: windows - /sportsfriends/save.dat: + "/sportsfriends/save.dat": tags: - save when: - os: windows - /sportsfriends/config.ini: + "/sportsfriends/config.ini": tags: - config when: - os: linux - /sportsfriends/save.dat: + "/sportsfriends/save.dat": tags: - save when: @@ -495142,15 +496445,15 @@ Sportsfriends: installDir: Sportsfriends: {} launch: - /Sportsfriends.app: + "/Sportsfriends.app": - when: - os: mac store: steam - - arguments: '-windowed 1' + - arguments: "-windowed 1" when: - os: mac store: steam - /Sportsfriends.exe: + "/Sportsfriends.exe": - arguments: fakefullscreen when: - os: windows @@ -495159,7 +496462,7 @@ Sportsfriends: when: - os: windows store: steam - /Sportsfriends32: + "/Sportsfriends32": - when: - bit: 32 os: linux @@ -495169,7 +496472,7 @@ Sportsfriends: - bit: 32 os: linux store: steam - /Sportsfriends64: + "/Sportsfriends64": - when: - bit: 64 os: linux @@ -495185,7 +496488,7 @@ Spot Girls Difference: installDir: SpotGirlsDifference: {} launch: - /SpotGirlsDifference.exe: + "/SpotGirlsDifference.exe": - when: - store: steam steam: @@ -495194,7 +496497,7 @@ Spot The Oddity: installDir: Spot The Oddity: {} launch: - /Spot The Oddity.exe: + "/Spot The Oddity.exe": - when: - os: windows store: steam @@ -495204,16 +496507,16 @@ Spotter: installDir: Spotter: {} launch: - /Spotter.app/Contents/MacOS/Spotter: + "/Spotter.app/Contents/MacOS/Spotter": - when: - os: mac store: steam - /Spotter.exe: + "/Spotter.exe": - when: - bit: 64 os: windows store: steam - /Spotter.x86_64: + "/Spotter.x86_64": - when: - bit: 64 os: linux @@ -495224,19 +496527,17 @@ Spoxel: installDir: Spoxel: {} launch: - /Spoxel: + "/Spoxel": - when: - bit: 64 os: linux store: steam - /Spoxel.app/Contents/Resources/jre/bin/java: - - arguments: >- - -jar Spoxel.app/Contents/Resources/SpoxelClientLib.jar -Xmx2g -Xms1G -Xmn768m -XX:+UseConcMarkSweepGC - -Dorg.lwjgl.system.allocator=system + "/Spoxel.app/Contents/Resources/jre/bin/java": + - arguments: "-jar Spoxel.app/Contents/Resources/SpoxelClientLib.jar -Xmx2g -Xms1G -Xmn768m -XX:+UseConcMarkSweepGC -Dorg.lwjgl.system.allocator=system" when: - os: mac store: steam - /Spoxel.exe: + "/Spoxel.exe": - when: - bit: 64 os: windows @@ -495247,7 +496548,7 @@ Spray Dynamite X Radioactive Insects: installDir: Spray Dynamite X Radioactive Insects: {} launch: - /ContentBuilder/content/windows_content/Spray Dinamite X Insetos Radioativos.exe: + "/ContentBuilder/content/windows_content/Spray Dinamite X Insetos Radioativos.exe": - when: - os: windows store: steam @@ -495260,16 +496561,16 @@ Spreadstorm: installDir: Spreadstorm: {} launch: - /Spreadstorm.app: + "/Spreadstorm.app": - when: - os: mac store: steam - /Spreadstorm.exe: + "/Spreadstorm.exe": - when: - bit: 64 os: windows store: steam - /Spreadstorm.x86_64: + "/Spreadstorm.x86_64": - when: - bit: 64 os: linux @@ -495280,16 +496581,16 @@ Spring & Flow: installDir: Spring Falls: {} launch: - /Spring Falls.app: + "/Spring Falls.app": - when: - os: mac store: steam - /Spring Falls.exe: + "/Spring Falls.exe": - when: - bit: 64 os: windows store: steam - /SpringFalls.x86_64: + "/SpringFalls.x86_64": - when: - bit: 64 os: linux @@ -495300,11 +496601,11 @@ Spring Bonus: installDir: Spring Bonus: {} launch: - /SpringBonus.app: + "/SpringBonus.app": - when: - os: mac store: steam - /SpringBonus.exe: + "/SpringBonus.exe": - when: - os: windows store: steam @@ -495314,7 +496615,7 @@ Spring Breeze: installDir: Spring Breez: {} launch: - /Spring.exe: + "/Spring.exe": - when: - store: steam steam: @@ -495323,15 +496624,15 @@ Spring City Tales: installDir: Void Monsters: {} launch: - /Game: + "/Game": - when: - os: linux store: steam - /Game.app/Contents/MacOS/nwjs: + "/Game.app/Contents/MacOS/nwjs": - when: - os: mac store: steam - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -495339,7 +496640,7 @@ Spring City Tales: id: 807060 Spring Falls: files: - /AppData/LocalLow/SPARSE__GameDev/Spring Falls/savedata.txt: + "/AppData/LocalLow/SPARSE__GameDev/Spring Falls/savedata.txt": tags: - save when: @@ -495350,16 +496651,16 @@ Spring Falls: installDir: Spring Falls: {} launch: - /Spring Falls.app: + "/Spring Falls.app": - when: - os: mac store: steam - /Spring Falls.exe: + "/Spring Falls.exe": - when: - bit: 64 os: windows store: steam - /SpringFalls.x86_64: + "/SpringFalls.x86_64": - when: - bit: 64 os: linux @@ -495374,11 +496675,11 @@ Spring It!: installDir: Spring It!: {} launch: - /SpringIt-Mac.app: + "/SpringIt-Mac.app": - when: - os: mac store: steam - /SpringIt-Windows.exe: + "/SpringIt-Windows.exe": - when: - os: windows store: steam @@ -495387,9 +496688,9 @@ Spring It!: Spring of Decadence: steam: id: 884050 -'Sprint Cars: Road to Knoxville': +"Sprint Cars: Road to Knoxville": files: - /save_data: + "/save_data": tags: - save when: @@ -495397,7 +496698,7 @@ Spring of Decadence: installDir: Sprint Cars 2007: {} launch: - /sc2007.exe: + "/sc2007.exe": - when: - store: steam steam: @@ -495411,15 +496712,15 @@ Sprinter: installDir: Sprinter: {} launch: - /Sprinter.app/Contents/MacOS/Sprinter: + "/Sprinter.app/Contents/MacOS/Sprinter": - when: - os: mac store: steam - /Sprinter.exe: + "/Sprinter.exe": - when: - os: windows store: steam - /Sprinter.x86: + "/Sprinter.x86": - when: - os: linux store: steam @@ -495430,7 +496731,7 @@ Sprocket Rocket Rumble: id: 1078270 Sproggiwood: files: - /AppData/LocalLow/Freehold Games/Sproggiwood: + "/AppData/LocalLow/Freehold Games/Sproggiwood": tags: - save when: @@ -495438,20 +496739,20 @@ Sproggiwood: installDir: Sproggiwood: {} launch: - /Sproggiwood.app: + "/Sproggiwood.app": - when: - os: mac store: steam - /Sproggiwood.exe: + "/Sproggiwood.exe": - when: - os: windows store: steam - /Sproggiwood.x86: + "/Sproggiwood.x86": - when: - bit: 32 os: linux store: steam - /Sproggiwood.x86_64: + "/Sproggiwood.x86_64": - when: - bit: 64 os: linux @@ -495466,11 +496767,11 @@ Sproots: installDir: Sokpop S06 Sproots: {} launch: - /Sproots.app: + "/Sproots.app": - when: - os: mac store: steam - /Sproots.exe: + "/Sproots.exe": - when: - os: windows store: steam @@ -495480,11 +496781,11 @@ Sprout: installDir: Sprout: {} launch: - /Sprout.app: + "/Sprout.app": - when: - os: mac store: steam - /Sprout.exe: + "/Sprout.exe": - when: - os: windows store: steam @@ -495499,17 +496800,17 @@ Spud!: installDir: Spud!: {} launch: - /SpudMenu.exe: + "/SpudMenu.exe": - when: - os: windows store: steam steam: id: 353790 -Spud's Quest: +"Spud's Quest": installDir: - Spud's Quest: {} + "Spud's Quest": {} launch: - /SpudsQuest.exe: + "/SpudsQuest.exe": - when: - os: windows store: steam @@ -495524,7 +496825,7 @@ Spunk and Moxie: installDir: Spunk and Moxie: {} launch: - /SpunkAndMoxie.exe: + "/SpunkAndMoxie.exe": - when: - os: windows store: steam @@ -495534,20 +496835,20 @@ Spy Bugs: installDir: Spy Bugs: {} launch: - /SpyBugs.app: + "/SpyBugs.app": - when: - os: mac store: steam - /SpyBugs.exe: + "/SpyBugs.exe": - when: - os: windows store: steam - /SpyBugs.x86: + "/SpyBugs.x86": - when: - bit: 32 os: linux store: steam - /SpyBugs.x86_64: + "/SpyBugs.x86_64": - when: - bit: 64 os: linux @@ -495558,15 +496859,15 @@ Spy Chameleon - RGB Agent: installDir: Spy Chameleon RGB Agent: {} launch: - /Spy Chameleon RGB Agent.app: + "/Spy Chameleon RGB Agent.app": - when: - os: mac store: steam - /Spy Chameleon RGB Agent.exe: + "/Spy Chameleon RGB Agent.exe": - when: - os: windows store: steam - /Spy Chameleon RGB Agent.x86: + "/Spy Chameleon RGB Agent.x86": - when: - os: linux store: steam @@ -495575,77 +496876,77 @@ Spy Chameleon - RGB Agent: Spy DNA: steam: id: 614730 -'Spy Fox 2: Some Assembly Required': +"Spy Fox 2: Some Assembly Required": installDir: Spy Fox 2: {} launch: - /ScummVM_Linux/launch_spyfox2.sh: + "/ScummVM_Linux/launch_spyfox2.sh": - when: - os: linux store: steam - workingDir: /ScummVM_Linux - /ScummVM_Mac/ScummVM.app/Contents/MacOS/scummvm: - - arguments: '-c scummvm-spyfox2.ini spyfox2' + workingDir: "/ScummVM_Linux" + "/ScummVM_Mac/ScummVM.app/Contents/MacOS/scummvm": + - arguments: "-c scummvm-spyfox2.ini spyfox2" when: - os: mac store: steam - workingDir: /ScummVM_Mac - /ScummVM_Windows/scummvm.exe: - - arguments: '--no-console -c scummvm-spyfox2.ini spyfox2' + workingDir: "/ScummVM_Mac" + "/ScummVM_Windows/scummvm.exe": + - arguments: "--no-console -c scummvm-spyfox2.ini spyfox2" when: - os: windows store: steam - workingDir: /ScummVM_Windows + workingDir: "/ScummVM_Windows" steam: id: 292240 -'Spy Fox 3: Operation Ozone': +"Spy Fox 3: Operation Ozone": installDir: Spy Fox 3: {} launch: - /ScummVM_Linux/launch_spyfox3_opengl.sh: + "/ScummVM_Linux/launch_spyfox3_opengl.sh": - when: - bit: 64 os: linux store: steam - workingDir: /ScummVM_Linux - /ScummVM_Linux/launch_spyfox3_safe.sh: + workingDir: "/ScummVM_Linux" + "/ScummVM_Linux/launch_spyfox3_safe.sh": - when: - bit: 64 os: linux store: steam - workingDir: /ScummVM_Linux - /ScummVM_Mac/ScummVM.app/Contents/MacOS/scummvm: - - arguments: '-c scummvm-spyfox3-opengl.ini spyozon' + workingDir: "/ScummVM_Linux" + "/ScummVM_Mac/ScummVM.app/Contents/MacOS/scummvm": + - arguments: "-c scummvm-spyfox3-opengl.ini spyozon" when: - os: mac store: steam - workingDir: /ScummVM_Mac - - arguments: '-c scummvm-spyfox3-safe.ini spyozon' + workingDir: "/ScummVM_Mac" + - arguments: "-c scummvm-spyfox3-safe.ini spyozon" when: - os: mac store: steam - workingDir: /ScummVM_Mac - /ScummVM_Windows/scummvm.exe: - - arguments: '--no-console -c scummvm-spyfox3-opengl.ini spyozon' + workingDir: "/ScummVM_Mac" + "/ScummVM_Windows/scummvm.exe": + - arguments: "--no-console -c scummvm-spyfox3-opengl.ini spyozon" when: - os: windows store: steam - workingDir: /ScummVM_Windows - - arguments: '--no-console -c scummvm-spyfox3-safe.ini spyozon' + workingDir: "/ScummVM_Windows" + - arguments: "--no-console -c scummvm-spyfox3-safe.ini spyozon" when: - os: windows store: steam - workingDir: /ScummVM_Windows + workingDir: "/ScummVM_Windows" steam: id: 292260 -'Spy Fox in: Cheese Chase': +"Spy Fox in: Cheese Chase": files: - /Saves: + "/Saves": tags: - save when: - os: windows - /ScummVM_Windows/scummvm-spyfoxcheesechase.ini: + "/ScummVM_Windows/scummvm-spyfoxcheesechase.ini": tags: - config when: @@ -495653,61 +496954,61 @@ Spy DNA: installDir: Spy Fox In Cheese Chase: {} launch: - /ScummVM_Linux/launch_spyfoxcheesechase.sh: + "/ScummVM_Linux/launch_spyfoxcheesechase.sh": - when: - os: linux store: steam - workingDir: /ScummVM_Linux - /ScummVM_Mac/ScummVM.app/Contents/MacOS/scummvm: - - arguments: '-c scummvm-spyfoxcheesechase.ini chase' + workingDir: "/ScummVM_Linux" + "/ScummVM_Mac/ScummVM.app/Contents/MacOS/scummvm": + - arguments: "-c scummvm-spyfoxcheesechase.ini chase" when: - os: mac store: steam - workingDir: /ScummVM_Mac - /ScummVM_Windows/scummvm.exe: - - arguments: '--no-console -c scummvm-spyfoxcheesechase.ini chase' + workingDir: "/ScummVM_Mac" + "/ScummVM_Windows/scummvm.exe": + - arguments: "--no-console -c scummvm-spyfoxcheesechase.ini chase" when: - os: windows store: steam - workingDir: /ScummVM_Windows + workingDir: "/ScummVM_Windows" steam: id: 292280 -'Spy Fox in: Hold the Mustard': +"Spy Fox in: Hold the Mustard": installDir: Spy Fox In Hold the Mustard: {} launch: - /ScummVM_Linux/launch_spyfoxholdthemustard.sh: + "/ScummVM_Linux/launch_spyfoxholdthemustard.sh": - when: - os: linux store: steam - workingDir: /ScummVM_Linux - /ScummVM_Mac/ScummVM.app/Contents/MacOS/scummvm: - - arguments: '-c scummvm-spyfoxholdthemustard.ini mustard' + workingDir: "/ScummVM_Linux" + "/ScummVM_Mac/ScummVM.app/Contents/MacOS/scummvm": + - arguments: "-c scummvm-spyfoxholdthemustard.ini mustard" when: - os: mac store: steam - workingDir: /ScummVM_Mac - /ScummVM_Windows/scummvm.exe: - - arguments: '--no-console -c scummvm-spyfoxholdthemustard.ini mustard' + workingDir: "/ScummVM_Mac" + "/ScummVM_Windows/scummvm.exe": + - arguments: "--no-console -c scummvm-spyfoxholdthemustard.ini mustard" when: - os: windows store: steam - workingDir: /ScummVM_Windows + workingDir: "/ScummVM_Windows" steam: id: 292300 -'Spy Fox: Dry Cereal': +"Spy Fox: Dry Cereal": files: - /Saves/spyfox.sg*: + "/Saves/spyfox.sg*": tags: - save when: - os: windows - /hegames.ini: + "/hegames.ini": tags: - config when: - os: windows - 'C:/hegames/spyfox.sg*': + "C:/hegames/spyfox.sg*": tags: - save when: @@ -495715,28 +497016,28 @@ Spy DNA: installDir: Spy Fox 1: {} launch: - /ScummVM_Linux/launch_spyfox1.sh: + "/ScummVM_Linux/launch_spyfox1.sh": - when: - os: linux store: steam - workingDir: /ScummVM_Linux - /ScummVM_Mac/ScummVM.app/Contents/MacOS/scummvm: - - arguments: '-c scummvm-spyfox1.ini spyfox' + workingDir: "/ScummVM_Linux" + "/ScummVM_Mac/ScummVM.app/Contents/MacOS/scummvm": + - arguments: "-c scummvm-spyfox1.ini spyfox" when: - os: mac store: steam - workingDir: /ScummVM_Mac - /ScummVM_Windows/scummvm.exe: - - arguments: '--no-console -c scummvm-spyfox1.ini spyfox' + workingDir: "/ScummVM_Mac" + "/ScummVM_Windows/scummvm.exe": + - arguments: "--no-console -c scummvm-spyfox1.ini spyfox" when: - os: windows store: steam - workingDir: /ScummVM_Windows + workingDir: "/ScummVM_Windows" steam: id: 283980 Spy Hunter (2003): files: - /SPYHUNTER_PROFILES.DAT: + "/SPYHUNTER_PROFILES.DAT": tags: - save when: @@ -495745,14 +497046,14 @@ Spy Hunter (2003): HKEY_CURRENT_USER/Software/Midway/SpyHunter: tags: - config -'Spy Hunter: Nowhere to Run': +"Spy Hunter: Nowhere to Run": files: - /CONFIG: + "/CONFIG": tags: - config when: - os: windows - /savegame: + "/savegame": tags: - config when: @@ -495761,11 +497062,11 @@ Spy Tactics: installDir: Spy Tactics: {} launch: - /SpyTactics.app/Contents/MacOS/SpyTactics: + "/SpyTactics.app/Contents/MacOS/SpyTactics": - when: - os: mac store: steam - /SpyTactics.exe: + "/SpyTactics.exe": - when: - bit: 64 os: windows @@ -495777,7 +497078,7 @@ Spy of Deimos: id: 689820 SpyParty: files: - /SpyParty: + "/SpyParty": tags: - config - save @@ -495786,16 +497087,16 @@ SpyParty: installDir: SpyParty: {} launch: - /SpyPartyProgramFiles/spyparty.exe: + "/SpyPartyProgramFiles/spyparty.exe": - when: - os: windows store: steam - workingDir: /SpyPartyProgramFiles + workingDir: "/SpyPartyProgramFiles" steam: id: 329070 -'Spycraft: The Great Game': +"Spycraft: The Great Game": files: - /GAME_*.SGM: + "/GAME_*.SGM": tags: - save when: @@ -495805,16 +497106,16 @@ SpyParty: installDir: Spycraft - The Great Game: {} launch: - /SierraLauncher.exe: + "/SierraLauncher.exe": - when: - store: steam steam: id: 569220 -'Spyhack: Episode 1': +"Spyhack: Episode 1": installDir: Spyhack: {} launch: - /SpyHack.exe: + "/SpyHack.exe": - when: - os: windows store: steam @@ -495824,7 +497125,7 @@ Spykebots: installDir: Spykebots: {} launch: - /Spykebots.exe: + "/Spykebots.exe": - when: - os: windows store: steam @@ -495832,17 +497133,17 @@ Spykebots: id: 1008010 Spyro Reignited Trilogy: files: - /userdata//996580/remote/Falcon/Saved/SaveGames: + "/userdata//996580/remote/Falcon/Saved/SaveGames": tags: - save when: - store: steam - /Falcon/Saved/Config/WindowsNoEditor: + "/Falcon/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /Falcon/Saved/SaveGames: + "/Falcon/Saved/SaveGames": tags: - save when: @@ -495850,19 +497151,19 @@ Spyro Reignited Trilogy: installDir: Spyro Reignited Trilogy: {} launch: - /Spyro.exe: + "/Spyro.exe": - when: - store: steam steam: id: 996580 Squad: files: - /SquadGame/Saved/Config/WindowsNoEditor: + "/SquadGame/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /SquadGame/Saved/SaveGames: + "/SquadGame/Saved/SaveGames": tags: - save when: @@ -495874,12 +497175,12 @@ Squad: - 2222340 - 2222341 - 2222342 - - 2417351 - 2417350 + - 2417351 installDir: Squad: {} launch: - /squad_launcher.exe: + "/squad_launcher.exe": - when: - bit: 64 os: windows @@ -495894,11 +497195,11 @@ Squadron 51: Squadron 51: {} steam: id: 1378800 -'Squadron: Sky Guardians': +"Squadron: Sky Guardians": installDir: Squadron Sky Guardians: {} launch: - /skadran.exe: + "/skadran.exe": - when: - store: steam steam: @@ -495907,11 +497208,11 @@ Squake: installDir: SQUAKE: {} launch: - /GameClient.exe: + "/GameClient.exe": - when: - os: windows store: steam - /Squake.app: + "/Squake.app": - when: - bit: 64 os: mac @@ -495922,17 +497223,17 @@ Squally: installDir: Squally: {} launch: - /Launcher.exe: + "/Launcher.exe": - when: - bit: 32 os: windows store: steam - /LauncherLauncher: + "/LauncherLauncher": - when: - bit: 64 os: linux store: steam - /Squally.app/Contents/MacOS/Launcher: + "/Squally.app/Contents/MacOS/Launcher": - when: - os: mac store: steam @@ -495942,7 +497243,7 @@ Square Arena: installDir: SquareArena: {} launch: - /SquareArena.exe: + "/SquareArena.exe": - when: - os: windows store: steam @@ -495952,7 +497253,7 @@ Square Box: installDir: SQUARE BOX: {} launch: - /SQUAREBOX.exe: + "/SQUAREBOX.exe": - when: - bit: 64 os: windows @@ -495963,15 +497264,15 @@ Square Brawl: installDir: Square Brawl: {} launch: - /Square Brawl.app: + "/Square Brawl.app": - when: - os: mac store: steam - /Square Brawl.exe: + "/Square Brawl.exe": - when: - os: windows store: steam - /Square Brawl.x86: + "/Square Brawl.x86": - when: - os: linux store: steam @@ -495981,7 +497282,7 @@ Square Head Zombies: installDir: SquareHeads: {} launch: - /SquareHeads.exe: + "/SquareHeads.exe": - when: - bit: 64 os: windows @@ -495992,7 +497293,7 @@ Square Head Zombies 2: installDir: Square Head Zombies 2 - FPS Game: {} launch: - /SquareHeadsZombies2.exe: + "/SquareHeadsZombies2.exe": - when: - os: windows store: steam @@ -496002,16 +497303,16 @@ Square Heroes: installDir: Square Heroes: {} launch: - /SquareHeroes.app: + "/SquareHeroes.app": - when: - os: mac store: steam - /SquareHeroes.bin.x86_64: + "/SquareHeroes.bin.x86_64": - when: - bit: 64 os: linux store: steam - /SquareHeroes.exe: + "/SquareHeroes.exe": - when: - os: windows store: steam @@ -496021,7 +497322,7 @@ Square Massacre: installDir: Square Massacre: {} launch: - /nw.exe: + "/nw.exe": - when: - bit: 64 os: windows @@ -496032,7 +497333,7 @@ Square Norm: installDir: Square Norm: {} launch: - /nw.exe: + "/nw.exe": - when: - bit: 64 os: windows @@ -496043,15 +497344,15 @@ Square Route: installDir: Square Route: {} launch: - /Square Route/Square Route.app: + "/Square Route/Square Route.app": - when: - os: mac store: steam - /Square Route/Square Route.exe: + "/Square Route/Square Route.exe": - when: - os: windows store: steam - /Square Route/Square Route.x86: + "/Square Route/Square Route.x86": - when: - os: linux store: steam @@ -496061,7 +497362,7 @@ Square Weapons Dungeon: installDir: Square Weapons Dungeon: {} launch: - /swd.exe: + "/swd.exe": - when: - os: windows store: steam @@ -496071,7 +497372,7 @@ Square n Fair: installDir: Square n Fair: {} launch: - /SquareAndFair.exe: + "/SquareAndFair.exe": - when: - os: windows store: steam @@ -496081,21 +497382,21 @@ Square x Square: installDir: Square x Square: {} launch: - /Square x Square.exe: + "/Square x Square.exe": - when: - os: windows store: steam steam: id: 654750 -Square's Route: +"Square's Route": installDir: - Square's Root: {} + "Square's Root": {} launch: - /SquaresRoute.app: + "/SquaresRoute.app": - when: - os: mac store: steam - /SquaresRoute.exe: + "/SquaresRoute.exe": - when: - os: windows store: steam @@ -496103,7 +497404,7 @@ Square's Route: id: 448530 SquareCells: files: - /saves: + "/saves": tags: - save when: @@ -496111,15 +497412,15 @@ SquareCells: installDir: SquareCells: {} launch: - /SquareCells.app: + "/SquareCells.app": - when: - os: mac store: steam - /SquareCells.exe: + "/SquareCells.exe": - when: - os: windows store: steam - /SquareCells.x86: + "/SquareCells.x86": - when: - os: linux store: steam @@ -496133,7 +497434,7 @@ SquareWorld: installDir: SquareWorld: {} launch: - /squareworld.exe: + "/squareworld.exe": - when: - os: windows store: steam @@ -496143,13 +497444,13 @@ SquareWorld Unpixeled: installDir: SquareWorld Unpixeled: {} launch: - /win32/SquareWorld.exe: + "/win32/SquareWorld.exe": - when: - os: windows store: steam steam: id: 950810 -'Squareboy vs Bullies: Arena Edition': +"Squareboy vs Bullies: Arena Edition": installDir: Squareboy vs Bullies Arena Edition: {} steam: @@ -496158,12 +497459,12 @@ Squareface: installDir: Squareface: {} launch: - /Binaries/Win32/Squareface.exe: - - arguments: '-D3D11' + "/Binaries/Win32/Squareface.exe": + - arguments: "-D3D11" when: - os: windows store: steam - /Squareface.app: + "/Squareface.app": - when: - os: mac store: steam @@ -496173,7 +497474,7 @@ Squarehead: installDir: SQUAREHEAD: {} launch: - /Squarehead.exe: + "/Squarehead.exe": - when: - os: windows store: steam @@ -496183,7 +497484,7 @@ Squarelands: installDir: Squarelands: {} launch: - /Squarelands.exe: + "/Squarelands.exe": - when: - os: windows store: steam @@ -496193,15 +497494,15 @@ Squares: installDir: Squares: {} launch: - /Squares.app: + "/Squares.app": - when: - os: mac store: steam - /Squares.exe: + "/Squares.exe": - when: - os: windows store: steam - /Squares.x86: + "/Squares.x86": - when: - os: linux store: steam @@ -496211,11 +497512,11 @@ Squares (Advanced Gaming): installDir: Squares: {} launch: - /Squares.app: + "/Squares.app": - when: - os: mac store: steam - /Squares.exe: + "/Squares.exe": - when: - os: windows store: steam @@ -496229,12 +497530,12 @@ Squarewave Maker: id: 737100 Squarez Deluxe: files: - /SQUAREZ.CFG: + "/SQUAREZ.CFG": tags: - config when: - os: dos - /SQUAREZ.HIS: + "/SQUAREZ.HIS": tags: - save when: @@ -496243,7 +497544,7 @@ Squarism: installDir: Squarism: {} launch: - /Squarism.exe: + "/Squarism.exe": - when: - os: windows store: steam @@ -496258,15 +497559,15 @@ Squeakers: installDir: Squeakers: {} launch: - /Squeakers.app/Contents/MacOS/Squeakers: + "/Squeakers.app/Contents/MacOS/Squeakers": - when: - os: mac store: steam - /Squeakers.exe: + "/Squeakers.exe": - when: - os: windows store: steam - /Squeakers.x86_64: + "/Squeakers.x86_64": - when: - os: linux store: steam @@ -496279,7 +497580,7 @@ Squid Vs Vexus: installDir: Squid Vs Vexus: {} launch: - /SquidVsVexus.exe: + "/SquidVsVexus.exe": - when: - os: windows store: steam @@ -496289,7 +497590,7 @@ Squidlit: installDir: Squidlit: {} launch: - /Squidlit.exe: + "/Squidlit.exe": - when: - store: steam steam: @@ -496298,7 +497599,7 @@ Squids Odyssey: installDir: Squids Odyssey: {} launch: - /SquidsDeluxe.exe: + "/SquidsDeluxe.exe": - when: - os: windows store: steam @@ -496306,7 +497607,7 @@ Squids Odyssey: id: 822640 Squids from Space: files: - /Squid/Saved/Config/WindowsNoEditor: + "/Squid/Saved/Config/WindowsNoEditor": tags: - config when: @@ -496314,10 +497615,8 @@ Squids from Space: installDir: SQUIDS FROM SPACE: {} launch: - /Client/Squid/Binaries/Win64/Squid-Win64-Shipping.exe: - - arguments: >- - -GameLiftClient -GameLiftAccessKeyId=AKIAJGIPJXREKHYHX2LQ - -GameLiftSecretKey=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 -GameLiftOverrideRegion=us-east-1 + "/Client/Squid/Binaries/Win64/Squid-Win64-Shipping.exe": + - arguments: "-GameLiftClient -GameLiftAccessKeyId=AKIAJGIPJXREKHYHX2LQ -GameLiftSecretKey=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 -GameLiftOverrideRegion=us-east-1" when: - store: steam steam: @@ -496326,7 +497625,7 @@ Squillamorph: installDir: Squillamorph: {} launch: - /Squillamorph.exe: + "/Squillamorph.exe": - when: - os: windows store: steam @@ -496336,7 +497635,7 @@ Squirbs: installDir: Squirbs: {} launch: - /Squirbs.exe: + "/Squirbs.exe": - when: - os: windows store: steam @@ -496346,16 +497645,16 @@ Squirgle: installDir: Squirgle: {} launch: - /squirgle.app/Contents/MacOS/squirgle: + "/squirgle.app/Contents/MacOS/squirgle": - when: - os: mac store: steam - /squirgle.exe: + "/squirgle.exe": - when: - bit: 64 os: windows store: steam - /squirgle.x64: + "/squirgle.x64": - when: - bit: 64 os: linux @@ -496371,8 +497670,8 @@ Squirrel Legacy: installDir: Squirrel Legacy: {} launch: - /Game.exe: - - arguments: '--in-process-gpu to Arguments' + "/Game.exe": + - arguments: "--in-process-gpu to Arguments" when: - os: windows store: steam @@ -496382,7 +497681,7 @@ Squirrel Sphere: installDir: Squirrel Sphere: {} launch: - /Squirrel_Sphere_Build/WindowsNoEditor/Squirrel_Sphere.exe: + "/Squirrel_Sphere_Build/WindowsNoEditor/Squirrel_Sphere.exe": - when: - os: windows store: steam @@ -496390,7 +497689,7 @@ Squirrel Sphere: id: 776790 Squirreltopia: files: - /Squirreltopia/savedata.ini: + "/Squirreltopia/savedata.ini": tags: - config - save @@ -496399,21 +497698,21 @@ Squirreltopia: installDir: Squirreltopia: {} launch: - /Squirreltopia.exe: + "/Squirreltopia.exe": - when: - os: windows store: steam steam: id: 334690 -Squirt's Adventure: +"Squirt's Adventure": installDir: Squirts Adventure: {} launch: - /squirt_osx.app: + "/squirt_osx.app": - when: - os: mac store: steam - /squirt_win.exe: + "/squirt_win.exe": - when: - os: windows store: steam @@ -496423,7 +497722,7 @@ Squish and the Corrupted Crystal: installDir: Squish and the Corrupted Crystal: {} launch: - /Squish.exe: + "/Squish.exe": - when: - os: windows store: steam @@ -496436,7 +497735,7 @@ Squishies: id: 593060 Squishy the Suicidal Pig: files: - /squishy/squishy.pas: + "/squishy/squishy.pas": tags: - save when: @@ -496444,23 +497743,23 @@ Squishy the Suicidal Pig: installDir: Squishy: {} launch: - /bin/squishy.exe: + "/bin/squishy.exe": - when: - os: windows store: steam - workingDir: /bin - /mac/Squishy the Suicidal Pig.app: + workingDir: "/bin" + "/mac/Squishy the Suicidal Pig.app": - when: - os: mac store: steam - workingDir: /mac + workingDir: "/mac" steam: id: 318430 Sqvishy: installDir: Sqvishy: {} launch: - /Sqvishy.exe: + "/Sqvishy.exe": - when: - os: windows store: steam @@ -496470,7 +497769,7 @@ Stabby Machine: installDir: Stabby Machine: {} launch: - /Stabby Machine.exe: + "/Stabby Machine.exe": - when: - os: windows store: steam @@ -496483,17 +497782,17 @@ Stable Orbit: installDir: Stable Orbit: {} launch: - /Stable Orbit.app/Contents/MacOS/Stable Orbit: + "/Stable Orbit.app/Contents/MacOS/Stable Orbit": - when: - bit: 64 os: mac store: steam - /StableOrbit.exe: + "/StableOrbit.exe": - when: - bit: 64 os: windows store: steam - /StableOrbit.x86_64: + "/StableOrbit.x86_64": - when: - bit: 64 os: linux @@ -496509,15 +497808,15 @@ Stack & Crack: installDir: Stack & Crack: {} launch: - /Stack & Crack.app/Contents/MacOS/Stack: + "/Stack & Crack.app/Contents/MacOS/Stack": - when: - os: mac store: steam - /Stack & Crack.exe: + "/Stack & Crack.exe": - when: - os: windows store: steam - /Stack & Crack.x86_64: + "/Stack & Crack.x86_64": - when: - bit: 64 os: linux @@ -496534,7 +497833,7 @@ StackFortress: installDir: StackFortress: {} launch: - /StackFortress.exe: + "/StackFortress.exe": - when: - os: windows store: steam @@ -496544,7 +497843,7 @@ Stackems: installDir: Stackems: {} launch: - /Stackems.exe: + "/Stackems.exe": - when: - os: windows store: steam @@ -496554,7 +497853,7 @@ Stacker: installDir: Stacker: {} launch: - /Shooter2D.exe: + "/Shooter2D.exe": - when: - bit: 64 os: windows @@ -496563,24 +497862,24 @@ Stacker: id: 749430 Stacking: files: - /Library/Application Support/doublefine/stacking: + "/Library/Application Support/doublefine/stacking": tags: - config - save when: - os: mac - /userdata//115110: + "/userdata//115110": tags: - save when: - store: steam - /Doublefine/Stacking: + "/Doublefine/Stacking": tags: - config - save when: - os: windows - /doublefine/stacking: + "/doublefine/stacking": tags: - config - save @@ -496591,15 +497890,15 @@ Stacking: installDir: Stacking: {} launch: - /Stack.app: + "/Stack.app": - when: - os: mac store: steam - /Stack.bin.x86: + "/Stack.bin.x86": - when: - os: linux store: steam - /Stack.exe: + "/Stack.exe": - when: - os: windows store: steam @@ -496607,7 +497906,7 @@ Stacking: id: 115110 Stacklands: files: - /AppData/LocalLow/sokpop/Stacklands: + "/AppData/LocalLow/sokpop/Stacklands": tags: - save when: @@ -496615,11 +497914,11 @@ Stacklands: installDir: Stacklands: {} launch: - /Stacklands.app: + "/Stacklands.app": - when: - os: mac store: steam - /Stacklands.exe: + "/Stacklands.exe": - when: - os: windows store: steam @@ -496633,7 +497932,7 @@ Stacks On Stacks (On Stacks): installDir: Stacks On Stacks (On Stacks): {} launch: - /SoSoS.exe: + "/SoSoS.exe": - when: - bit: 64 os: windows @@ -496642,7 +497941,7 @@ Stacks On Stacks (On Stacks): id: 510430 Stacks TNT: files: - /Stacks TNT: + "/Stacks TNT": tags: - save when: @@ -496650,7 +497949,7 @@ Stacks TNT: installDir: Stacks TNT: {} launch: - /stacks.exe: + "/stacks.exe": - when: - os: windows store: steam @@ -496665,7 +497964,7 @@ Staden under Gamlestaden: installDir: Staden under Gamlestaden: {} launch: - /NL-2019-05-01T1620-steam-release-candidate-v1.exe: + "/NL-2019-05-01T1620-steam-release-candidate-v1.exe": - when: - os: windows store: steam @@ -496675,23 +497974,23 @@ Stadium Renovator: installDir: Arena Renovation: {} launch: - /Arena Renovation.exe: + "/Arena Renovation.exe": - when: - os: windows store: steam steam: id: 948880 -'Staff Wars: Wizard Rumble': +"Staff Wars: Wizard Rumble": installDir: Staff Wars Wizard Rumble: {} launch: - /StaffWars.exe: + "/StaffWars.exe": - when: - os: windows store: steam steam: id: 664040 -'Stage 3: Azaria': +"Stage 3: Azaria": installDir: Stage3 Azaria: {} steam: @@ -496700,11 +497999,11 @@ Stage Fright: installDir: Stage Fright: {} launch: - /StageFrightMac.app: + "/StageFrightMac.app": - when: - os: mac store: steam - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -496714,7 +498013,7 @@ Stage Presence: installDir: Stage Presence: {} launch: - /Stage Presence.exe: + "/Stage Presence.exe": - when: - bit: 64 os: windows @@ -496725,7 +498024,7 @@ Stage of Light: installDir: Stage of Light: {} launch: - /StageOfLight.exe: + "/StageOfLight.exe": - when: - bit: 64 os: windows @@ -496739,7 +498038,7 @@ Stained: installDir: StainedGame: {} launch: - /StainedGame.exe: + "/StainedGame.exe": - when: - bit: 32 os: windows @@ -496753,7 +498052,7 @@ Stairs: installDir: Stairs: {} launch: - /Binaries/Win32/UDK.exe: + "/Binaries/Win32/UDK.exe": - when: - os: windows store: steam @@ -496763,10 +498062,10 @@ Stalin vs. Martians: installDir: Stalin vs Martians: {} launch: - /bin/Game.exe: + "/bin/Game.exe": - when: - store: steam - workingDir: /bin + workingDir: "/bin" steam: id: 25870 StalinGulag: @@ -496774,7 +498073,7 @@ StalinGulag: id: 1058890 Stalingrad: files: - /saves: + "/saves": tags: - save when: @@ -496782,7 +498081,7 @@ Stalingrad: installDir: Stalingrad: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -496792,7 +498091,7 @@ Stalked at Night: installDir: Stalked at Night: {} launch: - /SaN/SaN.exe: + "/SaN/SaN.exe": - when: - os: windows store: steam @@ -496802,11 +498101,11 @@ Stalker Crab Simulator: installDir: Stalker Crab Simulator: {} launch: - /Stalker Crab Simulator.app/Contents/MacOS/Stalker Crab Simulator: + "/Stalker Crab Simulator.app/Contents/MacOS/Stalker Crab Simulator": - when: - os: mac store: steam - /Stalker Crab Simulator.exe: + "/Stalker Crab Simulator.exe": - when: - os: windows store: steam @@ -496816,22 +498115,22 @@ Stamp Boy: installDir: StampBoy: {} launch: - /Stamp Boy.exe: + "/Stamp Boy.exe": - when: - os: windows store: steam - /StampBoy.app: + "/StampBoy.app": - when: - os: mac store: steam - /StampBoyLinux.x86_64: + "/StampBoyLinux.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 946860 -'Stand Out: VR Battle Royale': +"Stand Out: VR Battle Royale": installDir: STAND OUT: {} steam: @@ -496840,7 +498139,7 @@ Stand by You: installDir: Stand by you: {} launch: - /Standbyyou.exe: + "/Standbyyou.exe": - when: - os: windows store: steam @@ -496850,15 +498149,15 @@ StandPoint: installDir: Standpoint: {} launch: - /Standpoint: + "/Standpoint": - when: - os: linux store: steam - /Standpoint.app: + "/Standpoint.app": - when: - os: mac store: steam - /Standpoint.exe: + "/Standpoint.exe": - when: - os: windows store: steam @@ -496868,7 +498167,7 @@ Standard Legend: installDir: Standard Legend: {} launch: - /SL.exe: + "/SL.exe": - when: - os: windows store: steam @@ -496878,7 +498177,7 @@ Standball: installDir: Standball: {} launch: - /Standball.exe: + "/Standball.exe": - when: - store: steam steam: @@ -496887,11 +498186,11 @@ Standby: installDir: STANDBY: {} launch: - /Standby.app/Contents/MacOS/Standby: + "/Standby.app/Contents/MacOS/Standby": - when: - os: mac store: steam - /Standby.exe: + "/Standby.exe": - when: - os: windows store: steam @@ -496916,7 +498215,7 @@ Star Advent: installDir: Star Advent: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -496926,16 +498225,22 @@ Star Balls: installDir: Star Balls: {} launch: - /StarBalls.app: + "/StarBalls.app": - when: - bit: 32 os: mac store: steam - /StarBalls.exe: + - bit: 64 + os: mac + store: steam + "/StarBalls.exe": - when: - bit: 32 os: windows store: steam + - bit: 64 + os: windows + store: steam steam: id: 366050 Star Baron: @@ -496947,15 +498252,15 @@ Star Boss: installDir: Star Boss: {} launch: - /%command%: + "/%command%": - when: - os: linux store: steam - /game.exe: + "/game.exe": - when: - os: mac store: steam - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -496965,8 +498270,8 @@ Star Boy: installDir: Star Boy: {} launch: - /StarboyBetaVI.exe: - - arguments: '-windowed' + "/StarboyBetaVI.exe": + - arguments: "-windowed" when: - os: windows store: steam @@ -496976,13 +498281,13 @@ Star Chart: installDir: Star Chart: {} launch: - /StarChart.app: + "/StarChart.app": - when: - bit: 64 os: mac store: steam - /StarChartVR.exe: - - arguments: '-steamnonvr' + "/StarChartVR.exe": + - arguments: "-steamnonvr" when: - bit: 64 os: windows @@ -496994,21 +498299,21 @@ Star Chef 2: Star Chef 2 Cooking Game: {} steam: id: 1612810 -'Star Chef: Cooking & Restaurant Game': +"Star Chef: Cooking & Restaurant Game": installDir: Star Chef Cooking & Restaurant Game: {} launch: - /Star Chef.exe: + "/Star Chef.exe": - when: - os: windows store: steam steam: id: 1028860 -'Star Chronicles: Delta Quadrant': +"Star Chronicles: Delta Quadrant": installDir: Star Chronicles Delta Quadrant: {} launch: - /Delta Quadrant.exe: + "/Delta Quadrant.exe": - when: - os: windows store: steam @@ -497016,7 +498321,7 @@ Star Chef 2: id: 383330 Star Citizen: files: - /LIVE/USER: + "/LIVE/USER": tags: - config when: @@ -497025,7 +498330,7 @@ Star Clash: installDir: Star Clash: {} launch: - /StarClash.exe: + "/StarClash.exe": - when: - os: windows store: steam @@ -497035,21 +498340,21 @@ Star Command Galaxies: installDir: Star Command Galaxies: {} launch: - /StarCommandGalaxies.app: + "/StarCommandGalaxies.app": - when: - os: mac store: steam - /StarCommandGalaxies.exe: + "/StarCommandGalaxies.exe": - when: - bit: 64 os: windows store: steam - /StarCommandGalaxies.x86: + "/StarCommandGalaxies.x86": - when: - bit: 32 os: linux store: steam - /StarCommandGalaxies.x86_64: + "/StarCommandGalaxies.x86_64": - when: - bit: 64 os: linux @@ -497058,19 +498363,19 @@ Star Command Galaxies: id: 402160 Star Conflict: files: - /.local/share/starconflict: + "/.local/share/starconflict": tags: - config - save when: - os: linux - /Library/Application Support/Star Conflict: + "/Library/Application Support/Star Conflict": tags: - config - save when: - os: mac - /My Games/Star Conflict: + "/My Games/Star Conflict": tags: - config - save @@ -497079,15 +498384,15 @@ Star Conflict: installDir: star conflict: {} launch: - /StarConflict: + "/StarConflict": - when: - os: linux store: steam - /StarConflict.app: + "/StarConflict.app": - when: - os: mac store: steam - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -497099,11 +498404,11 @@ Star Control: installDir: Star Control Classic: {} launch: - /Star Control 2/DOSBOX/DOSBox.exe: - - arguments: ' -conf \"dosboxSC2.conf\" -conf \"dosboxSC2_single.conf\" -noconsole -c exit' + "/Star Control 2/DOSBOX/DOSBox.exe": + - arguments: " -conf \\\"dosboxSC2.conf\\\" -conf \\\"dosboxSC2_single.conf\\\" -noconsole -c exit" when: - store: steam - workingDir: /Star Control 2 + workingDir: "/Star Control 2" steam: id: 358920 Star Control 3: @@ -497112,11 +498417,11 @@ Star Control 3: installDir: Star Control 3: {} launch: - /DOSBOX/DOSBox.exe: - - arguments: '-conf \"dosboxSC3.conf\" -conf \"dosboxSC3_single.conf\" -noconsole -c exit' + "/DOSBOX/DOSBox.exe": + - arguments: "-conf \\\"dosboxSC3.conf\\\" -conf \\\"dosboxSC3_single.conf\\\" -noconsole -c exit" when: - store: steam - workingDir: /DOSBOX + workingDir: "/DOSBOX" steam: id: 358930 Star Control II: @@ -497125,21 +498430,21 @@ Star Control II: installDir: Star Control Classic: {} launch: - /Star Control 2/DOSBOX/DOSBox.exe: - - arguments: ' -conf \"dosboxSC2.conf\" -conf \"dosboxSC2_single.conf\" -noconsole -c exit' + "/Star Control 2/DOSBOX/DOSBox.exe": + - arguments: " -conf \\\"dosboxSC2.conf\\\" -conf \\\"dosboxSC2_single.conf\\\" -noconsole -c exit" when: - store: steam - workingDir: /Star Control 2 + workingDir: "/Star Control 2" steam: id: 358920 -'Star Control: Origins': +"Star Control: Origins": files: - /My Games/Star Control/Saves: + "/My Games/Star Control/Saves": tags: - save when: - os: windows - /My Games/Star Control/settings.ini: + "/My Games/Star Control/settings.ini": tags: - config when: @@ -497149,25 +498454,25 @@ Star Control II: installDir: Star Control - Origins: {} launch: - /Game/StardockLauncher.exe: + "/Game/StardockLauncher.exe": - when: - store: steam - workingDir: /Game + workingDir: "/Game" steam: id: 271260 Star Crusade CCG: installDir: Star Crusade CCG: {} launch: - /app.app.zip: + "/app.app.zip": - when: - os: mac store: steam - /app.exe: + "/app.exe": - when: - os: windows store: steam - /app.x86: + "/app.x86": - when: - os: linux store: steam @@ -497177,7 +498482,7 @@ Star Destroyer: installDir: Star Destroyer: {} launch: - /Star Destroyer.exe: + "/Star Destroyer.exe": - when: - os: windows store: steam @@ -497187,11 +498492,11 @@ Star Drift: installDir: Star Drift: {} launch: - /StarDrift.app/Contents/MacOS/StarDrift: + "/StarDrift.app/Contents/MacOS/StarDrift": - when: - os: mac store: steam - /StarDrift.exe: + "/StarDrift.exe": - when: - os: windows store: steam @@ -497201,11 +498506,11 @@ Star Drift Evolution: installDir: Star Drift Evolution: {} launch: - /StarDriftEvolution.app/Contents/MacOS/StarDriftEvolution: + "/StarDriftEvolution.app/Contents/MacOS/StarDriftEvolution": - when: - os: mac store: steam - /StarDriftEvolution.exe: + "/StarDriftEvolution.exe": - when: - os: windows store: steam @@ -497215,12 +498520,12 @@ Star Drifter: installDir: Star Drifter: {} launch: - /StarDrifter.exe: + "/StarDrifter.exe": - when: - store: steam steam: id: 485330 -'Star Dust: The Book of Earth': +"Star Dust: The Book of Earth": installDir: Star Dust The Book of Earth (VR): {} steam: @@ -497236,7 +498541,7 @@ Star Dynasties: installDir: Star Dynasties: {} launch: - /StarDynasties.exe: + "/StarDynasties.exe": - when: - bit: 64 os: windows @@ -497252,7 +498557,7 @@ Star Explorers: installDir: Star Explorers: {} launch: - /Star_Explorers.exe: + "/Star_Explorers.exe": - when: - os: windows store: steam @@ -497262,18 +498567,18 @@ Star Fetchers: installDir: Star Fetchers Pilot: {} launch: - /SF/Star Fetchers Pilot.exe: + "/SF/Star Fetchers Pilot.exe": - when: - os: windows store: steam - workingDir: /SF + workingDir: "/SF" steam: id: 1178030 Star Fields: installDir: Star Fields: {} launch: - /StarF1.exe: + "/StarF1.exe": - when: - store: steam steam: @@ -497282,8 +498587,11 @@ Star Fight: installDir: Star Fight: {} launch: - /Star Fight 0.5.exe: + "/Star Fight 0.5.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam @@ -497297,24 +498605,24 @@ Star Fleet Armada Rogue Adventures: Star Fleet Armada: {} steam: id: 459610 -'Star Fleet II: Krellan Commander': +"Star Fleet II: Krellan Commander": gog: id: 1187946593 steam: id: 1470940 Star General: files: - /LOG/PREFDOS.DAT: + "/LOG/PREFDOS.DAT": tags: - config when: - os: dos - /LOG/pref.dat: + "/LOG/pref.dat": tags: - config when: - os: windows - /SAVE: + "/SAVE": tags: - save when: @@ -497325,21 +498633,21 @@ Star General: installDir: Star General: {} launch: - /STARGEN.EXE: + "/STARGEN.EXE": - when: - store: steam - /Star General - ENG/DOSBOX/ConfigTool.exe: - - arguments: '-conf stargen-eng-graphics.conf' + "/Star General - ENG/DOSBOX/ConfigTool.exe": + - arguments: "-conf stargen-eng-graphics.conf" when: - store: steam - workingDir: /Star General - ENG + workingDir: "/Star General - ENG" steam: id: 2414340 Star Girl Proxima: installDir: Star Girl Proxima: {} launch: - /Star Girl Proxima.exe: + "/Star Girl Proxima.exe": - when: - store: steam steam: @@ -497348,11 +498656,11 @@ Star Girls: installDir: StarGirls: {} launch: - /StarGirls.app/Contents/MacOS/StarGirls: + "/StarGirls.app/Contents/MacOS/StarGirls": - when: - os: mac store: steam - /StarGirls.exe: + "/StarGirls.exe": - when: - os: windows store: steam @@ -497362,7 +498670,7 @@ Star Goddess: installDir: Star Goddess: {} launch: - /Star Goddess.exe: + "/Star Goddess.exe": - when: - os: windows store: steam @@ -497372,20 +498680,20 @@ Star Gods: installDir: Star Gods: {} launch: - /Star Gods.exe: + "/Star Gods.exe": - when: - os: windows store: steam steam: id: 1179500 -'Star Hammer: The Vanguard Prophecy': +"Star Hammer: The Vanguard Prophecy": files: - /userdata//337680/remote: + "/userdata//337680/remote": tags: - save when: - store: steam - /userdata//337680/remote/config.txt: + "/userdata//337680/remote/config.txt": tags: - config when: @@ -497395,11 +498703,11 @@ Star Gods: installDir: Star Hammer: {} launch: - /StarHammerVP.app: + "/StarHammerVP.app": - when: - os: mac store: steam - /autorun.exe: + "/autorun.exe": - when: - os: windows store: steam @@ -497409,20 +498717,20 @@ Star Horizon: installDir: Star Horizon: {} launch: - /starhorizon.app: + "/starhorizon.app": - when: - os: mac store: steam - /starhorizon.exe: + "/starhorizon.exe": - when: - os: windows store: steam - /starhorizon.x86: + "/starhorizon.x86": - when: - bit: 32 os: linux store: steam - /starhorizon.x86_64: + "/starhorizon.x86_64": - when: - bit: 64 os: linux @@ -497438,17 +498746,17 @@ Star Impact: installDir: StarImpactByMeGames: {} launch: - /StarImpact.app/Contents/MacOS/StarImpact: + "/StarImpact.app/Contents/MacOS/StarImpact": - when: - os: mac store: steam - /StarImpact.exe: + "/StarImpact.exe": - when: - os: windows store: steam steam: id: 1052030 -'Star Kingdom: The Elements': +"Star Kingdom: The Elements": installDir: StarKingdom: {} steam: @@ -497457,7 +498765,7 @@ Star Merc: installDir: Star Merc: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: @@ -497466,7 +498774,7 @@ Star Merchant: installDir: Star Merchant: {} launch: - /starmerchant.exe: + "/starmerchant.exe": - when: - os: windows store: steam @@ -497476,11 +498784,11 @@ Star Nomad: installDir: Star Nomad: {} launch: - /nw.app: + "/nw.app": - when: - os: mac store: steam - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -497490,19 +498798,19 @@ Star Nomad 2: installDir: Star Nomad 2: {} launch: - /nw.app: + "/nw.app": - when: - os: mac store: steam - /nw.exe: + "/nw.exe": - when: - os: windows store: steam steam: id: 414950 -'Star Ocean: The Divine Force': +"Star Ocean: The Divine Force": files: - /My Games/STAR OCEAN THE DIVINE FORCE/Steam/: + "/My Games/STAR OCEAN THE DIVINE FORCE/Steam/": tags: - config - save @@ -497511,16 +498819,16 @@ Star Nomad 2: installDir: STAR OCEAN THE DIVINE FORCE: {} launch: - /SO6.exe: + "/SO6.exe": - when: - bit: 64 os: windows store: steam steam: id: 1776380 -'Star Ocean: The Last Hope 4K & Full HD Remaster': +"Star Ocean: The Last Hope 4K & Full HD Remaster": files: - /My Games/STAR OCEAN - THE LAST HOPE - 4K & Full HD Remaster: + "/My Games/STAR OCEAN - THE LAST HOPE - 4K & Full HD Remaster": tags: - save when: @@ -497528,16 +498836,16 @@ Star Nomad 2: installDir: STAR OCEAN - THE LAST HOPE - 4K & Full HD Remaster: {} launch: - /StarOceanTheLastHope.exe: + "/StarOceanTheLastHope.exe": - when: - bit: 64 os: windows store: steam steam: id: 609150 -'Star Ocean: The Second Story R': +"Star Ocean: The Second Story R": files: - /My Games/STAR OCEAN THE SECOND STORY R/Steam/: + "/My Games/STAR OCEAN THE SECOND STORY R/Steam/": tags: - config - save @@ -497554,7 +498862,7 @@ Star Plantation: installDir: Star Plantation: {} launch: - /StarPlantationV0.1.36B.exe: + "/StarPlantationV0.1.36B.exe": - when: - os: windows store: steam @@ -497564,7 +498872,7 @@ Star Police: installDir: Star Police: {} launch: - /StartPolice.exe: + "/StartPolice.exe": - when: - os: windows store: steam @@ -497580,13 +498888,13 @@ Star Rage VR: id: 615270 Star Raiders: files: - /userdata//9970/local/StarRaiders1: + "/userdata//9970/local/StarRaiders1": tags: - save when: - os: windows store: steam - /userdata//9970/local/StarRaiders1/PRO-DATA.DAT: + "/userdata//9970/local/StarRaiders1/PRO-DATA.DAT": tags: - config when: @@ -497595,19 +498903,19 @@ Star Raiders: installDir: Star Raiders: {} launch: - /StarRaiders.exe: + "/StarRaiders.exe": - when: - store: steam steam: id: 9970 Star Rangers: files: - /MAIN/SRANGER.CFG: + "/MAIN/SRANGER.CFG": tags: - config when: - os: dos - /MAIN/SRSAVE*.SAV: + "/MAIN/SRSAVE*.SAV": tags: - save when: @@ -497616,20 +498924,20 @@ Star Rangers (2017): installDir: StarRangers: {} launch: - /Star Rangers.app: + "/Star Rangers.app": - when: - os: mac store: steam - /Star Rangers.exe: + "/Star Rangers.exe": - when: - os: windows store: steam - /Star Rangers.x86: + "/Star Rangers.x86": - when: - bit: 32 os: linux store: steam - /Star Rangers.x86_64: + "/Star Rangers.x86_64": - when: - bit: 64 os: linux @@ -497645,11 +498953,11 @@ Star Realms: installDir: Star Realms: {} launch: - /StarRealms.app/Contents/MacOS/StarRealms: + "/StarRealms.app/Contents/MacOS/StarRealms": - when: - os: mac store: steam - /StarRealms.exe: + "/StarRealms.exe": - when: - os: windows store: steam @@ -497657,12 +498965,12 @@ Star Realms: id: 438140 Star Renegades: files: - /Star Renegades/SRRWSlot*.mdi: + "/Star Renegades/SRRWSlot*.mdi": tags: - save when: - os: windows - /Star Renegades/profile.mdi: + "/Star Renegades/profile.mdi": tags: - config when: @@ -497672,7 +498980,7 @@ Star Renegades: installDir: Star Renegades: {} launch: - /Star Renegades.exe: + "/Star Renegades.exe": - when: - store: steam registry: @@ -497685,11 +498993,11 @@ Star Rogue: installDir: Star Rogue: {} launch: - /Star Rogue.exe: + "/Star Rogue.exe": - when: - os: windows store: steam - /runner: + "/runner": - when: - os: linux store: steam @@ -497697,12 +499005,12 @@ Star Rogue: id: 438440 Star Ruler: files: - /My Games/Star Ruler: + "/My Games/Star Ruler": tags: - config when: - os: windows - /My Games/Star Ruler/Saves: + "/My Games/Star Ruler/Saves": tags: - save when: @@ -497710,25 +499018,25 @@ Star Ruler: installDir: Star Ruler: {} launch: - /StarRuler.exe: - - arguments: '' + "/StarRuler.exe": + - arguments: "" when: - store: steam steam: id: 70900 Star Ruler 2: files: - /.starruler2: + "/.starruler2": tags: - config when: - os: linux - /.starruler2/saves: + "/.starruler2/saves": tags: - save when: - os: linux - /My Games/Star Ruler 2: + "/My Games/Star Ruler 2": tags: - config - save @@ -497739,17 +499047,17 @@ Star Ruler 2: installDir: Star Ruler 2: {} launch: - /Star Ruler 2.exe: + "/Star Ruler 2.exe": - when: - os: windows store: steam - /StarRuler2.sh: + "/StarRuler2.sh": - when: - os: linux store: steam steam: id: 282590 -'Star Saga One: Rise of the Dominators': +"Star Saga One: Rise of the Dominators": installDir: STAR SAGA ONE - RISE OF THE DOMINATORS: {} steam: @@ -497758,15 +499066,15 @@ Star Saviors: installDir: Saviors: {} launch: - /Saviors.app: + "/Saviors.app": - when: - os: mac store: steam - /Saviors.exe: + "/Saviors.exe": - when: - os: windows store: steam - /run_steam.sh: + "/run_steam.sh": - when: - os: linux store: steam @@ -497787,7 +499095,7 @@ Star Shredders: installDir: Star Shredders: {} launch: - /STAR SHREDDERS.exe: + "/STAR SHREDDERS.exe": - when: - os: windows store: steam @@ -497797,7 +499105,7 @@ Star Singularity: installDir: Star Singularity: {} launch: - /StarSingularity.exe: + "/StarSingularity.exe": - when: - os: windows store: steam @@ -497805,7 +499113,7 @@ Star Singularity: id: 808800 Star Sky: files: - /StarSky: + "/StarSky": tags: - config - save @@ -497814,15 +499122,15 @@ Star Sky: installDir: Star Sky: {} launch: - /nw: + "/nw": - when: - os: linux store: steam - /nw.exe: + "/nw.exe": - when: - os: windows store: steam - /starsky.app: + "/starsky.app": - when: - os: mac store: steam @@ -497830,7 +499138,7 @@ Star Sky: id: 407020 Star Sky 2: files: - /StarSky2: + "/StarSky2": tags: - config - save @@ -497839,15 +499147,15 @@ Star Sky 2: installDir: Star Sky 2: {} launch: - /nw: + "/nw": - when: - os: linux store: steam - /nw.exe: + "/nw.exe": - when: - os: windows store: steam - /starsky2.app: + "/starsky2.app": - when: - bit: 64 os: mac @@ -497856,7 +499164,7 @@ Star Sky 2: id: 443460 Star Sky 3: files: - /StarSky3: + "/StarSky3": tags: - config - save @@ -497865,7 +499173,7 @@ Star Sky 3: installDir: Star Sky 3 - ブルームーン 3: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -497875,13 +499183,13 @@ Star Sonata 2: installDir: StarSonata2: {} launch: - /Star Sonata.exe: - - arguments: '-steam' + "/Star Sonata.exe": + - arguments: "-steam" when: - os: windows store: steam - /patchbot.exe: - - arguments: '-autostart -steam' + "/patchbot.exe": + - arguments: "-autostart -steam" when: - os: windows store: steam @@ -497891,7 +499199,7 @@ Star Souls: installDir: Star Souls: {} launch: - /Star Souls.exe: + "/Star Souls.exe": - when: - store: steam steam: @@ -497900,7 +499208,7 @@ Star Speeder: installDir: StarSpeeder: {} launch: - /StarSpeeder.exe: + "/StarSpeeder.exe": - when: - os: windows store: steam @@ -497908,20 +499216,20 @@ Star Speeder: id: 847490 Star Stable: files: - /Star Stable: + "/Star Stable": tags: - config when: - os: windows -'Star Story: The Horizon Escape': +"Star Story: The Horizon Escape": installDir: Star Story The Horizon Escape: {} launch: - /StarStory.app: + "/StarStory.app": - when: - os: mac store: steam - /StarStory.exe: + "/StarStory.exe": - when: - os: windows store: steam @@ -497934,15 +499242,15 @@ Star Swapper: installDir: Star Swapper: {} launch: - /StarSwapper.app/Contents/MacOS/StarSwapper: + "/StarSwapper.app/Contents/MacOS/StarSwapper": - when: - os: mac store: steam - /StarSwapper.exe: + "/StarSwapper.exe": - when: - os: windows store: steam - /StarSwapper.x86: + "/StarSwapper.x86": - when: - os: linux store: steam @@ -497952,7 +499260,7 @@ Star Sweet: installDir: Star Sweet: {} launch: - /StarSweet.exe: + "/StarSweet.exe": - when: - os: windows store: steam @@ -497962,20 +499270,20 @@ Star Tactics: installDir: Star Tactics: {} launch: - /StarTactics.app: + "/StarTactics.app": - when: - os: mac store: steam - /StarTactics.exe: + "/StarTactics.exe": - when: - os: windows store: steam - /StarTactics.x86: + "/StarTactics.x86": - when: - bit: 32 os: linux store: steam - /StarTactics.x86_64: + "/StarTactics.x86_64": - when: - bit: 64 os: linux @@ -497989,55 +499297,55 @@ Star Tower: installDir: Star Tower: {} launch: - /StarTower.exe: + "/StarTower.exe": - when: - bit: 64 os: windows store: steam - /StarTower.x86_64: + "/StarTower.x86_64": - when: - bit: 64 os: linux store: steam - /StarTowerBuildMac.app: + "/StarTowerBuildMac.app": - when: - os: mac store: steam steam: id: 848780 -'Star Traders: 4X Empires': +"Star Traders: 4X Empires": installDir: Star Traders 4X Empires: {} launch: - /FactionWars.exe: + "/FactionWars.exe": - when: - os: windows store: steam - /Star Traders 4X.app/Contents/MacOS/Star Traders 4X: + "/Star Traders 4X.app/Contents/MacOS/Star Traders 4X": - when: - os: mac store: steam - /factionwars: + "/factionwars": - when: - os: linux store: steam steam: id: 334270 -'Star Traders: Frontiers': +"Star Traders: Frontiers": files: - /.config/startraders2: + "/.config/startraders2": tags: - config - save when: - os: linux - /Library/StarTradersFrontiers: + "/Library/StarTradersFrontiers": tags: - config - save when: - os: mac - /StarTradersFrontiers: + "/StarTradersFrontiers": tags: - config - save @@ -498046,15 +499354,15 @@ Star Tower: installDir: Star Traders Frontiers: {} launch: - /StarTradersFrontiers.app/Contents/MacOS/StarTradersFrontiers: + "/StarTradersFrontiers.app/Contents/MacOS/StarTradersFrontiers": - when: - os: mac store: steam - /StarTradersFrontiers.exe: + "/StarTradersFrontiers.exe": - when: - os: windows store: steam - /startraders2: + "/startraders2": - when: - os: linux store: steam @@ -498062,17 +499370,17 @@ Star Tower: id: 335620 Star Trek (2013): files: - /userdata//203250/remote/CONTINUE.SAV: + "/userdata//203250/remote/CONTINUE.SAV": tags: - save when: - store: steam - /userdata//203250/remote/settings: + "/userdata//203250/remote/settings": tags: - config when: - store: steam - /StarTrekPC: + "/StarTrekPC": tags: - config when: @@ -498080,8 +499388,8 @@ Star Trek (2013): installDir: StarTrek: {} launch: - /ST.exe: - - arguments: '-stripped' + "/ST.exe": + - arguments: "-stripped" when: - os: windows store: steam @@ -498091,11 +499399,11 @@ Star Trek Adversaries: installDir: Star Trek Adversaries: {} launch: - /STA_Mac_Alpha_v03.6.app/Contents/MacOS/STA_Mac_Alpha_v03.6: + "/STA_Mac_Alpha_v03.6.app/Contents/MacOS/STA_Mac_Alpha_v03.6": - when: - os: mac store: steam - /game.exe: + "/game.exe": - when: - bit: 64 os: windows @@ -498106,14 +499414,14 @@ Star Trek DAC: installDir: StarTrekDAC: {} launch: - /Bin/StarTrekDAC.exe: + "/Bin/StarTrekDAC.exe": - when: - store: steam steam: id: 4320 Star Trek Online: files: - /Star Trek Online/Live/localdata: + "/Star Trek Online/Live/localdata": tags: - config when: @@ -498121,18 +499429,18 @@ Star Trek Online: installDir: Star Trek Online: {} launch: - /Star Trek Online.exe: - - arguments: '-affiliate \"appid=9900\" -launchedfrom steam - ' + "/Star Trek Online.exe": + - arguments: "-affiliate \\\"appid=9900\\\" -launchedfrom steam - " when: - os: windows store: steam steam: id: 9900 -'Star Trek Prodigy: Supernova': +"Star Trek Prodigy: Supernova": installDir: Star Trek Prodigy: {} launch: - /StarTrekProdigy.exe: + "/StarTrekProdigy.exe": - when: - bit: 64 os: windows @@ -498143,21 +499451,24 @@ Star Trek Timelines: installDir: Star Trek Timelines: {} launch: - /Timelines.exe: + "/Timelines.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam steam: id: 600750 -'Star Trek: 25th Anniversary': +"Star Trek: 25th Anniversary": files: - 'C:/TREKCD': + "C:/TREKCD": tags: - save when: - os: dos - 'C:/TREKCD/INTRPLAY.CFG': + "C:/TREKCD/INTRPLAY.CFG": tags: - config when: @@ -498167,71 +499478,71 @@ Star Trek Timelines: installDir: Star Trek 25th Anniversary: {} launch: - /Launch Star Trek 25th Anniversary.cmd: + "/Launch Star Trek 25th Anniversary.cmd": - when: - os: windows store: steam steam: id: 359650 -'Star Trek: Armada': +"Star Trek: Armada": files: - /ARMADA.PRF: + "/ARMADA.PRF": tags: - config when: - os: windows - /save: + "/save": tags: - save when: - os: windows gog: id: 1582325353 -'Star Trek: Armada II': +"Star Trek: Armada II": files: - /ARMADA.PRF: + "/ARMADA.PRF": tags: - config when: - os: windows - /save: + "/save": tags: - save when: - os: windows gog: id: 1174788223 -'Star Trek: Away Team': +"Star Trek: Away Team": files: - /AwayTeam.cfg: + "/AwayTeam.cfg": tags: - config when: - os: windows - /Save Game: + "/Save Game": tags: - save when: - os: windows gog: id: 1321659450 -'Star Trek: Bridge Commander': +"Star Trek: Bridge Commander": files: - /options.cfg: + "/options.cfg": tags: - config when: - os: windows - /saves: + "/saves": tags: - save when: - os: windows gog: id: 1478736295 -'Star Trek: Bridge Crew': +"Star Trek: Bridge Crew": files: - /graphics.config: + "/graphics.config": tags: - config when: @@ -498239,87 +499550,87 @@ Star Trek Timelines: installDir: Star Trek Bridge Crew: {} launch: - /stbc.exe: - - arguments: '-uplay_steam_mode -non_vr' + "/stbc.exe": + - arguments: "-uplay_steam_mode -non_vr" when: - bit: 64 os: windows store: steam steam: id: 527100 -'Star Trek: Deep Space Nine - The Fallen': +"Star Trek: Deep Space Nine - The Fallen": files: - /Save: + "/Save": tags: - save when: - os: windows - /system/Ds9.ini: + "/system/Ds9.ini": tags: - config when: - os: windows -'Star Trek: Elite Force II': +"Star Trek: Elite Force II": files: - /base/.cfg: + "/base/.cfg": tags: - config when: - os: windows - /base/save: + "/base/save": tags: - save when: - os: windows gog: id: 2125201406 -'Star Trek: En Territoire Alien': +"Star Trek: En Territoire Alien": installDir: Star Trek En Territoire Alien: {} launch: - /Star Trek En Territoire Alien.app: + "/Star Trek En Territoire Alien.app": - when: - os: mac store: steam - /Star Trek En Territoire Alien.exe: + "/Star Trek En Territoire Alien.exe": - when: - os: windows store: steam - /star-trek-en-territoire-alien: + "/star-trek-en-territoire-alien": - when: - os: linux store: steam steam: id: 943630 -'Star Trek: Generations': +"Star Trek: Generations": files: - /SAVEGAME: + "/SAVEGAME": tags: - save when: - os: windows - /Sgens.cfg: + "/Sgens.cfg": tags: - config when: - os: windows -'Star Trek: Hidden Evil': +"Star Trek: Hidden Evil": files: - /Save: + "/Save": tags: - save when: - os: windows gog: id: 1365309818 -'Star Trek: Infinite': +"Star Trek: Infinite": files: - /Paradox Interactive/Infinite/save games: + "/Paradox Interactive/Infinite/save games": tags: - save when: - os: windows - /Paradox Interactive/Infinite/settings.txt: + "/Paradox Interactive/Infinite/settings.txt": tags: - config when: @@ -498329,9 +499640,9 @@ Star Trek Timelines: - 2595340 steam: id: 1622900 -'Star Trek: Judgment Rites': +"Star Trek: Judgment Rites": files: - 'C:/TREK2': + "C:/TREK2": tags: - save when: @@ -498341,52 +499652,52 @@ Star Trek Timelines: installDir: Star Trek Judgment Rights: {} launch: - /launch judgment rites.cmd: + "/launch judgment rites.cmd": - when: - os: windows store: steam steam: id: 364800 -'Star Trek: Legacy': +"Star Trek: Legacy": files: - /Admiral.PRF: + "/Admiral.PRF": tags: - config when: - os: windows - /STLSave: + "/STLSave": tags: - save when: - os: windows -'Star Trek: New Worlds': +"Star Trek: New Worlds": files: - /game.ini: + "/game.ini": tags: - config - save when: - os: windows -'Star Trek: Resurgence': +"Star Trek: Resurgence": files: - /StarTrekGame/Saved/Config/WindowsNoEditor: + "/StarTrekGame/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /StarTrekGame/Saved/SaveGames: + "/StarTrekGame/Saved/SaveGames": tags: - save when: - os: windows -'Star Trek: Starfleet Academy': +"Star Trek: Starfleet Academy": files: - /options.cfg: + "/options.cfg": tags: - config when: - os: windows - /savegame/*.sav: + "/savegame/*.sav": tags: - save when: @@ -498396,15 +499707,15 @@ Star Trek Timelines: installDir: Star Trek Starfleet Academy: {} launch: - /sfad3d.exe: + "/sfad3d.exe": - when: - os: windows store: steam steam: id: 364810 -'Star Trek: Starfleet Command': +"Star Trek: Starfleet Command": files: - /sfc.ini: + "/sfc.ini": tags: - config when: @@ -498414,96 +499725,96 @@ Star Trek Timelines: installDir: Star Trek Starfleet Command Gold Edition: {} launch: - /sfc.exe: + "/sfc.exe": - when: - os: windows store: steam steam: id: 364820 -'Star Trek: Starfleet Command - Orion Pirates': +"Star Trek: Starfleet Command - Orion Pirates": files: - /sfc.ini: + "/sfc.ini": tags: - config when: - os: windows -'Star Trek: Starfleet Command II - Empires at War': +"Star Trek: Starfleet Command II - Empires at War": files: - /sfc.ini: + "/sfc.ini": tags: - config when: - os: windows -'Star Trek: Starfleet Command III': +"Star Trek: Starfleet Command III": files: - /Saves: + "/Saves": tags: - save when: - os: windows - /sfc.ini: + "/sfc.ini": tags: - config when: - os: windows gog: id: 1156468375 -'Star Trek: Starship Creator Warp II': +"Star Trek: Starship Creator Warp II": files: - 'C:/Program Files (x86)/Warp2/ShipMain/PREFS.cxt': + "C:/Program Files (x86)/Warp2/ShipMain/PREFS.cxt": tags: - config when: - os: windows - 'C:/Program Files (x86)/Warp2/ShipMain/USR': + "C:/Program Files (x86)/Warp2/ShipMain/USR": tags: - save when: - os: windows -'Star Trek: The Next Generation - A Final Unity': +"Star Trek: The Next Generation - A Final Unity": files: - /SAVEGAME/SAVEGAME.*: + "/SAVEGAME/SAVEGAME.*": tags: - save when: - os: dos - /STTNG.INI: + "/STTNG.INI": tags: - config when: - os: dos -'Star Trek: The Next Generation - Birth of the Federation': +"Star Trek: The Next Generation - Birth of the Federation": files: - /game*.sav: + "/game*.sav": tags: - save when: - os: windows - /stbof.ini: + "/stbof.ini": tags: - config when: - os: windows -'Star Trek: The Next Generation - Klingon Honor Guard': +"Star Trek: The Next Generation - Klingon Honor Guard": files: - /Save: + "/Save": tags: - save when: - os: windows - /System/khg.ini: + "/System/khg.ini": tags: - config when: - os: windows -'Star Trek: Voyager - Elite Force': +"Star Trek: Voyager - Elite Force": files: - /BaseEF/efconfig.cfg: + "/BaseEF/efconfig.cfg": tags: - config when: - os: windows - /BaseEF/saves: + "/BaseEF/saves": tags: - save when: @@ -498512,33 +499823,39 @@ Star Trek Timelines: id: 1581756945 Star Trigon: files: - /*0.usr: + "/*0.usr": tags: - save when: - os: windows - /gamedata.dat: + "/gamedata.dat": tags: - save when: - os: windows - /gameoption.dat: + "/gameoption.dat": tags: - config when: - os: windows Star Valor: + files: + /steamapps/common/Star Valor/Save_Data: + tags: + - config + when: + - os: windows installDir: Star Valor: {} launch: - /Star Valor.exe: + "/Star Valor.exe": - when: - store: steam steam: id: 833360 Star Vikings Forever: files: - /AppData/LocalLow/com_RogueSnail/StarVikings: + "/AppData/LocalLow/com_RogueSnail/StarVikings": tags: - save when: @@ -498548,15 +499865,15 @@ Star Vikings Forever: installDir: Star Vikings: {} launch: - /StarVikings.app: + "/StarVikings.app": - when: - os: mac store: steam - /StarVikings.exe: + "/StarVikings.exe": - when: - os: windows store: steam - /StarVikings.x86: + "/StarVikings.x86": - when: - os: linux store: steam @@ -498570,14 +499887,14 @@ Star Waker: installDir: Star Waker: {} launch: - /Star Waker.exe: + "/Star Waker.exe": - when: - store: steam steam: id: 693090 Star Wars Battlefront (2015): files: - /STAR WARS Battlefront/settings: + "/STAR WARS Battlefront/settings": tags: - config - save @@ -498589,7 +499906,7 @@ Star Wars Battlefront (2015): id: 1237980 Star Wars Battlefront II (2017): files: - /STAR WARS Battlefront II/settings: + "/STAR WARS Battlefront II/settings": tags: - config - save @@ -498603,24 +499920,24 @@ Star Wars Galaxies: installDir: Star Wars Galaxies: {} launch: - /LaunchPad.exe: + "/LaunchPad.exe": - when: - store: steam steam: id: 24170 -'Star Wars Jedi: Fallen Order': +"Star Wars Jedi: Fallen Order": files: - /Saved Games/Respawn/JediFallenOrder: + "/Saved Games/Respawn/JediFallenOrder": tags: - save when: - os: windows - /Saved Games/Respawn/JediFallenOrder/GameUserSettings.sav: + "/Saved Games/Respawn/JediFallenOrder/GameUserSettings.sav": tags: - config when: - os: windows - /SwGame/Saved/Config/WindowsNoEditor/GameUserSettings.ini: + "/SwGame/Saved/Config/WindowsNoEditor/GameUserSettings.ini": tags: - config when: @@ -498637,19 +499954,19 @@ Star Wars Galaxies: Jedi Fallen Order: {} steam: id: 1172380 -'Star Wars Jedi: Survivor': +"Star Wars Jedi: Survivor": files: - /Saved Games/Respawn/JediSurvivor: + "/Saved Games/Respawn/JediSurvivor": tags: - save when: - os: windows - /Saved Games/Respawn/JediSurvivor/GameUserSettings.sav: + "/Saved Games/Respawn/JediSurvivor/GameUserSettings.sav": tags: - config when: - os: windows - /SwGame/Saved/Config/WindowsNoEditor/GameUserSettings.ini: + "/SwGame/Saved/Config/WindowsNoEditor/GameUserSettings.ini": tags: - config when: @@ -498658,14 +499975,14 @@ Star Wars Galaxies: Jedi Survivor: {} steam: id: 1774580 -'Star Wars: Battlefront': +"Star Wars: Battlefront": files: - /GameData/SaveGames: + "/GameData/SaveGames": tags: - save when: - os: windows - /GameData/SaveGames/*.profile: + "/GameData/SaveGames/*.profile": tags: - config when: @@ -498675,16 +499992,16 @@ Star Wars Galaxies: installDir: Star Wars Battlefront (Classic 2004): {} launch: - /GameData/battlefront.exe: + "/GameData/battlefront.exe": - when: - os: windows store: steam - workingDir: /GameData + workingDir: "/GameData" steam: id: 1058020 -'Star Wars: Battlefront II': +"Star Wars: Battlefront II": files: - /GameData/SaveGames: + "/GameData/SaveGames": tags: - config - save @@ -498695,20 +500012,20 @@ Star Wars Galaxies: installDir: Star Wars Battlefront II Classic: {} launch: - /GameData/BattlefrontII.exe: + "/GameData/BattlefrontII.exe": - when: - store: steam - workingDir: /GameData + workingDir: "/GameData" steam: id: 6060 -'Star Wars: Dark Forces': +"Star Wars: Dark Forces": files: - /DARKPILO.CFG: + "/DARKPILO.CFG": tags: - save when: - os: dos - /JEDI.CFG: + "/JEDI.CFG": tags: - config when: @@ -498724,37 +500041,37 @@ Star Wars Galaxies: installDir: Dark Forces: {} launch: - /DosBox//dosbox.exe: - - arguments: \"Game\\\\dark.exe\" + "/DosBox//dosbox.exe": + - arguments: "\\\"Game\\\\\\\\dark.exe\\\"" when: - os: windows store: steam - /Star Wars Dark Forces.app: + "/Star Wars Dark Forces.app": - when: - os: mac store: steam steam: id: 32400 -'Star Wars: Dark Forces Remaster': +"Star Wars: Dark Forces Remaster": gog: id: 1853348102 steam: id: 2292260 -'Star Wars: Droid Repair Bay': +"Star Wars: Droid Repair Bay": installDir: DRDR: {} steam: id: 726910 -'Star Wars: DroidWorks': +"Star Wars: DroidWorks": files: - /player: + "/player": tags: - save when: - os: windows -'Star Wars: Empire at War': +"Star Wars: Empire at War": files: - /Saved Games/Petroglyph/Empire At War/Save: + "/Saved Games/Petroglyph/Empire At War/Save": tags: - save when: @@ -498767,10 +500084,10 @@ Star Wars Galaxies: installDir: Star Wars Empire at War: {} launch: - /runme.exe: + "/runme.exe": - when: - store: steam - /runme2.exe: + "/runme2.exe": - when: - store: steam registry: @@ -498779,16 +500096,16 @@ Star Wars Galaxies: - config steam: id: 32470 -'Star Wars: Episode I - Battle for Naboo': +"Star Wars: Episode I - Battle for Naboo": files: - /data_pc/saves: + "/data_pc/saves": tags: - save when: - os: windows -'Star Wars: Episode I - Racer': +"Star Wars: Episode I - Racer": files: - /data/player: + "/data/player": tags: - save when: @@ -498798,48 +500115,48 @@ Star Wars Galaxies: installDir: Star Wars Episode I Racer: {} launch: - /SWEP1RCR.EXE: + "/SWEP1RCR.EXE": - when: - os: windows store: steam registry: - 'HKEY_LOCAL_MACHINE/SOFTWARE/WOW6432Node/LucasArts Entertainment Company LLC/Star Wars: Episode I Racer/v1.0': + "HKEY_LOCAL_MACHINE/SOFTWARE/WOW6432Node/LucasArts Entertainment Company LLC/Star Wars: Episode I Racer/v1.0": tags: - config steam: id: 808910 -'Star Wars: Episode I - The Gungan Frontier': +"Star Wars: Episode I - The Gungan Frontier": files: - /Saved Games: + "/Saved Games": tags: - save when: - os: windows -'Star Wars: Episode I - The Phantom Menace': +"Star Wars: Episode I - The Phantom Menace": files: - /Save: + "/Save": tags: - save when: - os: windows - /obi.ini: + "/obi.ini": tags: - config when: - os: windows -'Star Wars: Force Commander': +"Star Wars: Force Commander": files: - /Resource/GameFiles/save.sav: + "/Resource/GameFiles/save.sav": tags: - save when: - os: windows - /Resource/Options/FoCom.opt: + "/Resource/Options/FoCom.opt": tags: - config when: - os: windows - /Resource/Players/FoCom.sfe: + "/Resource/Players/FoCom.sfe": tags: - save when: @@ -498848,19 +500165,19 @@ Star Wars Galaxies: HKEY_LOCAL_MACHINE/SOFTWARE/WOW6432Node/LucasArts Entertainment Company LLC/Force Commander/v1.0/Settings: tags: - config -'Star Wars: Galactic Battlegrounds': +"Star Wars: Galactic Battlegrounds": files: - /Game/SaveGame: + "/Game/SaveGame": tags: - save when: - os: windows - /Game/player.nf1: + "/Game/player.nf1": tags: - config when: - os: windows - /Game/player.nfx: + "/Game/player.nfx": tags: - config when: @@ -498870,20 +500187,20 @@ Star Wars Galaxies: installDir: STAR WARS - Galactic Battlegrounds Saga: {} launch: - /Game/player.exe: + "/Game/player.exe": - arguments: xlogo1.avi xintro.avi battlegrounds_x1.exe when: - store: steam - workingDir: /Game + workingDir: "/Game" registry: - 'HKEY_CURRENT_USER/Software/LucasArts Entertainment Company LLC/Star Wars Galactic Battlegrounds: Clone Campaigns/1.0': + "HKEY_CURRENT_USER/Software/LucasArts Entertainment Company LLC/Star Wars Galactic Battlegrounds: Clone Campaigns/1.0": tags: - config steam: id: 356500 -'Star Wars: Imperial Assault - Legends of the Alliance': +"Star Wars: Imperial Assault - Legends of the Alliance": files: - /Imperial Assault_Data/SavedGames: + "/Imperial Assault_Data/SavedGames": tags: - save when: @@ -498891,11 +500208,11 @@ Star Wars Galaxies: installDir: Imperial Assault: {} launch: - /Imperial Assault.app: + "/Imperial Assault.app": - when: - os: mac store: steam - /Imperial Assault.exe: + "/Imperial Assault.exe": - when: - os: windows store: steam @@ -498905,14 +500222,14 @@ Star Wars Galaxies: - config steam: id: 703980 -'Star Wars: Jedi Knight - Dark Forces II': +"Star Wars: Jedi Knight - Dark Forces II": files: - /Controls: + "/Controls": tags: - config when: - os: windows - /player: + "/player": tags: - save when: @@ -498925,8 +500242,8 @@ Star Wars Galaxies: installDir: Star Wars Jedi Knight: {} launch: - /JediKnight.exe: - - arguments: '-windowGUI' + "/JediKnight.exe": + - arguments: "-windowGUI" when: - store: steam registry: @@ -498935,24 +500252,24 @@ Star Wars Galaxies: - config steam: id: 32380 -'Star Wars: Jedi Knight - Jedi Academy': +"Star Wars: Jedi Knight - Jedi Academy": files: - /GameData/base/*.cfg: + "/GameData/base/*.cfg": tags: - config when: - os: windows - /GameData/base/saves: + "/GameData/base/saves": tags: - save when: - os: windows - /Library/Application Support/Jedi Academy/base/*.cfg: + "/Library/Application Support/Jedi Academy/base/*.cfg": tags: - config when: - os: mac - /Library/Application Support/Jedi Academy/base/saves: + "/Library/Application Support/Jedi Academy/base/saves": tags: - save when: @@ -498962,30 +500279,30 @@ Star Wars Galaxies: installDir: Jedi Academy: {} launch: - /GameData/jamp.exe: + "/GameData/jamp.exe": - when: - os: windows store: steam - workingDir: /GameData - /GameData/jasp.exe: + workingDir: "/GameData" + "/GameData/jasp.exe": - when: - os: windows store: steam - workingDir: /GameData - /SWJKJA.app: + workingDir: "/GameData" + "/SWJKJA.app": - when: - os: mac store: steam steam: id: 6020 -'Star Wars: Jedi Knight - Mysteries of the Sith': +"Star Wars: Jedi Knight - Mysteries of the Sith": files: - /Controls: + "/Controls": tags: - config when: - os: windows - /player: + "/player": tags: - save when: @@ -498998,8 +500315,8 @@ Star Wars Galaxies: installDir: Jedi Knight Mysteries of the Sith: {} launch: - /JediKnightM.exe: - - arguments: '-windowGUI' + "/JediKnightM.exe": + - arguments: "-windowGUI" when: - store: steam registry: @@ -499008,24 +500325,24 @@ Star Wars Galaxies: - config steam: id: 32390 -'Star Wars: Jedi Knight II - Jedi Outcast': +"Star Wars: Jedi Knight II - Jedi Outcast": files: - /GameData/base/*.cfg: + "/GameData/base/*.cfg": tags: - config when: - os: windows - /GameData/base/saves: + "/GameData/base/saves": tags: - save when: - os: windows - /Library/Application Support/Jedi Knight II/base/*.cfg: + "/Library/Application Support/Jedi Knight II/base/*.cfg": tags: - config when: - os: mac - /Library/Application Support/Jedi Knight II/base/saves: + "/Library/Application Support/Jedi Knight II/base/saves": tags: - save when: @@ -499035,45 +500352,45 @@ Star Wars Galaxies: installDir: Jedi Outcast: {} launch: - /GameData/jk2mp.exe: + "/GameData/jk2mp.exe": - when: - os: windows store: steam - workingDir: /GameData - /GameData/jk2sp.exe: + workingDir: "/GameData" + "/GameData/jk2sp.exe": - when: - os: windows store: steam - workingDir: /GameData - /Jedi Knight II.app: + workingDir: "/GameData" + "/Jedi Knight II.app": - when: - os: mac store: steam steam: id: 6030 -'Star Wars: Knights of the Old Republic': +"Star Wars: Knights of the Old Republic": files: - /saves: + "/saves": tags: - save when: - os: windows - /swconfig.ini: + "/swconfig.ini": tags: - config when: - os: windows - /swkotor.ini: + "/swkotor.ini": tags: - config when: - os: windows - /Library/Application Support/Knights of the Old Republic: + "/Library/Application Support/Knights of the Old Republic": tags: - config when: - os: mac - /Library/Application Support/Knights of the Old Republic/saves: + "/Library/Application Support/Knights of the Old Republic/saves": tags: - save when: @@ -499083,52 +500400,54 @@ Star Wars Galaxies: installDir: swkotor: {} launch: - /Knights of the Old Republic.app: + "/Knights of the Old Republic.app": - when: - os: mac store: steam - /swkotor.exe: + "/swkotor.exe": - when: - os: windows store: steam steam: id: 32370 -'Star Wars: Knights of the Old Republic II - The Sith Lords': +"Star Wars: Knights of the Old Republic II - The Sith Lords": files: - /Saves: + "/Saves": tags: - save when: - os: windows - /swkotor2.ini: + "/swkotor2.ini": tags: - config when: - os: windows - /Library/Application Support/Star Wars Knights of the Old Republic II/saves: + "/Library/Application Support/Star Wars Knights of the Old Republic II/saves": tags: - save when: - os: mac - /Library/Application Support/Star Wars Knights of the Old Republic II/swkotor2.ini: + "/Library/Application Support/Star Wars Knights of the Old Republic II/swkotor2.ini": tags: - config when: - os: mac - /Library/Containers/com.aspyr.kotor2.appstore/Data/Library/Application Support/Star Wars Knights of the Old Republic II/saves: + "/Library/Containers/com.aspyr.kotor2.appstore/Data/Library/Application Support/Star Wars Knights of the Old Republic II/saves": tags: - save - /aspyr-media/kotor2: + when: + - os: mac + "/aspyr-media/kotor2": tags: - config when: - os: linux - /aspyr-media/kotor2/saves: + "/aspyr-media/kotor2/saves": tags: - save when: - os: linux - 'C:/Users/(username)/AppData/Local/VirtualStore/(''Program Files'' or ''Program Files (x86)'')/LucasArts/SWKotOR2/saves': + "C:/Users/(username)/AppData/Local/VirtualStore/('Program Files' or 'Program Files (x86)')/LucasArts/SWKotOR2/saves": tags: - save when: @@ -499138,23 +500457,23 @@ Star Wars Galaxies: installDir: Knights of the Old Republic II: {} launch: - /KOTOR2: + "/KOTOR2": - when: - os: linux store: steam - /KOTOR2.app: + "/KOTOR2.app": - when: - os: mac store: steam - /swkotor2.exe: + "/swkotor2.exe": - when: - os: windows store: steam steam: id: 208580 -'Star Wars: Rebel Assault': +"Star Wars: Rebel Assault": files: - /REBEL.CFG: + "/REBEL.CFG": tags: - config when: @@ -499168,14 +500487,14 @@ Star Wars Galaxies: Star Wars - Rebel Assault 1 and 2: {} steam: id: 456540 -'Star Wars: Rebel Assault II: The Hidden Empire': +"Star Wars: Rebel Assault II: The Hidden Empire": files: - /REBEL2.CFG: + "/REBEL2.CFG": tags: - config when: - os: dos - /REBEL2.PIL: + "/REBEL2.PIL": tags: - save when: @@ -499189,9 +500508,9 @@ Star Wars Galaxies: Star Wars - Rebel Assault 1 and 2: {} steam: id: 456540 -'Star Wars: Rebellion': +"Star Wars: Rebellion": files: - /SaveGame: + "/SaveGame": tags: - save when: @@ -499201,21 +500520,21 @@ Star Wars Galaxies: installDir: Star Wars - Rebellion: {} launch: - /REBEXE.EXE: - - arguments: '-w' + "/REBEXE.EXE": + - arguments: "-w" when: - os: windows store: steam steam: id: 441550 -'Star Wars: Republic Commando': +"Star Wars: Republic Commando": files: - /GameData/Save: + "/GameData/Save": tags: - save when: - os: windows - /GameData/System/system.ini: + "/GameData/System/system.ini": tags: - config when: @@ -499225,14 +500544,14 @@ Star Wars Galaxies: installDir: Star Wars Republic Commando: {} launch: - /GameData/System/SWRepublicCommando.exe: + "/GameData/System/SWRepublicCommando.exe": - when: - store: steam steam: id: 6000 -'Star Wars: Rogue Squadron 3D': +"Star Wars: Rogue Squadron 3D": files: - /PlayerProfiles: + "/PlayerProfiles": tags: - save when: @@ -499242,7 +500561,7 @@ Star Wars Galaxies: installDir: RogueSquadron: {} launch: - /ROGUE/ROGUE.EXE: + "/ROGUE/ROGUE.EXE": - when: - os: windows store: steam @@ -499252,9 +500571,9 @@ Star Wars Galaxies: - config steam: id: 455910 -'Star Wars: Shadows of the Empire': +"Star Wars: Shadows of the Empire": files: - /*.soe: + "/*.soe": tags: - save when: @@ -499264,25 +500583,26 @@ Star Wars Galaxies: installDir: Star Wars Shadows of the Empire: {} launch: - /Sdata/Shadows.exe: + "/Sdata/Shadows.exe": - when: - store: steam - workingDir: /Sdata + workingDir: "/Sdata" registry: HKEY_LOCAL_MACHINE/SOFTWARE/LucasArts Entertainment Company/Shadows of the Empire: tags: - config steam: id: 560170 -'Star Wars: Squadrons': +"Star Wars: Squadrons": files: - /STAR WARS Squadrons Steam/settings: + "/STAR WARS Squadrons Steam/settings": tags: - config - save when: - - store: steam - /STAR WARS Squadrons/settings: + - os: windows + store: steam + "/STAR WARS Squadrons/settings": tags: - config - save @@ -499291,16 +500611,16 @@ Star Wars Galaxies: installDir: STAR WARS Squadrons: {} launch: - /starwarssquadrons_launcher.exe: + "/starwarssquadrons_launcher.exe": - when: - bit: 64 os: windows store: steam steam: id: 1222730 -'Star Wars: Starfighter': +"Star Wars: Starfighter": files: - /Game/Save Games: + "/Game/Save Games": tags: - save when: @@ -499310,7 +500630,7 @@ Star Wars Galaxies: installDir: Star Wars Starfighter: {} launch: - /Starfighter.exe: + "/Starfighter.exe": - when: - store: steam registry: @@ -499319,9 +500639,9 @@ Star Wars Galaxies: - config steam: id: 32350 -'Star Wars: TIE Fighter': +"Star Wars: TIE Fighter": files: - /.tfr: + "/.tfr": tags: - save when: @@ -499331,28 +500651,28 @@ Star Wars Galaxies: installDir: STAR WARS Tie Fighter: {} launch: - /classic/DOSBOX/dosbox.exe: - - arguments: '-conf \"..\\dosbox_tie.conf\" -conf \"..\\dosbox_tie_single.conf\" -noconsole -c exit' + "/classic/DOSBOX/dosbox.exe": + - arguments: "-conf \\\"..\\\\dosbox_tie.conf\\\" -conf \\\"..\\\\dosbox_tie_single.conf\\\" -noconsole -c exit" when: - os: windows store: steam - workingDir: /classic/DOSBOX - /collectors_cd/DOSBOX/dosbox.exe: - - arguments: '-conf \"..\\dosbox_tiecd.conf\" -conf \"..\\dosbox_tiecd_single.conf\" -noconsole -c exit\"' + workingDir: "/classic/DOSBOX" + "/collectors_cd/DOSBOX/dosbox.exe": + - arguments: "-conf \\\"..\\\\dosbox_tiecd.conf\\\" -conf \\\"..\\\\dosbox_tiecd_single.conf\\\" -noconsole -c exit\\\"" when: - os: windows store: steam - workingDir: /collectors_cd/DOSBOX - /remastered/TIE95.EXE: + workingDir: "/collectors_cd/DOSBOX" + "/remastered/TIE95.EXE": - when: - os: windows store: steam - workingDir: /remastered + workingDir: "/remastered" steam: id: 355250 -'Star Wars: The Clone Wars - Republic Heroes': +"Star Wars: The Clone Wars - Republic Heroes": files: - /SWTCWRH: + "/SWTCWRH": tags: - config - save @@ -499361,29 +500681,29 @@ Star Wars Galaxies: installDir: Star Wars The Clone Wars: {} launch: - /RepublicHeroesLauncher.exe: + "/RepublicHeroesLauncher.exe": - when: - store: steam steam: id: 32420 -'Star Wars: The Force Unleashed': +"Star Wars: The Force Unleashed": files: - /Library/Application Support/Star Wars The Force Unleashed/SWTFU.BIN: + "/Library/Application Support/Star Wars The Force Unleashed/SWTFU.BIN": tags: - save when: - os: mac - /Library/Preferences/com.aspyr.swtfu.steam.plist: + "/Library/Preferences/com.aspyr.swtfu.steam.plist": tags: - config when: - os: mac - /Aspyr/Star Wars The Force Unleashed: + "/Aspyr/Star Wars The Force Unleashed": tags: - save when: - os: windows - /Aspyr/Star Wars The Force Unleashed: + "/Aspyr/Star Wars The Force Unleashed": tags: - config when: @@ -499393,11 +500713,11 @@ Star Wars Galaxies: installDir: Star Wars The Force Unleashed: {} launch: - /SWTFU Launcher.exe: + "/SWTFU Launcher.exe": - when: - os: windows store: steam - /Star Wars The Force Unleashed.app: + "/Star Wars The Force Unleashed.app": - when: - os: mac store: steam @@ -499407,14 +500727,14 @@ Star Wars Galaxies: - config steam: id: 32430 -'Star Wars: The Force Unleashed II': +"Star Wars: The Force Unleashed II": files: - /LucasArts/Star Wars The Force Unleashed 2/Saves: + "/LucasArts/Star Wars The Force Unleashed 2/Saves": tags: - save when: - os: windows - /LucasArts/Star Wars The Force Unleashed 2: + "/LucasArts/Star Wars The Force Unleashed 2": tags: - config when: @@ -499424,14 +500744,14 @@ Star Wars Galaxies: installDir: Star Wars The Force Unleashed 2: {} launch: - /SWTFU2.exe: + "/SWTFU2.exe": - when: - store: steam steam: id: 32500 -'Star Wars: The Old Republic': +"Star Wars: The Old Republic": files: - /SWTOR: + "/SWTOR": tags: - config when: @@ -499439,25 +500759,25 @@ Star Wars Galaxies: id: steamExtra: - 1303891 - - 1346541 - 1346540 + - 1346541 installDir: Star Wars - The Old Republic: {} launch: - /launcher.exe: + "/launcher.exe": - when: - os: windows store: steam steam: id: 1286830 -'Star Wars: Trials on Tatooine': +"Star Wars: Trials on Tatooine": installDir: Trials on Tatooine: {} steam: id: 381940 -'Star Wars: X-Wing': +"Star Wars: X-Wing": files: - /*.PLT: + "/*.PLT": tags: - save when: @@ -499467,33 +500787,33 @@ Star Wars Galaxies: installDir: STAR WARS X-Wing: {} launch: - /classic/DOSBOX/DOSBox.exe: - - arguments: '-conf \"..\\dosbox_xwing.conf\" -conf \"..\\dosbox_xwing_single.conf\" -noconsole -c exit' + "/classic/DOSBOX/DOSBox.exe": + - arguments: "-conf \\\"..\\\\dosbox_xwing.conf\\\" -conf \\\"..\\\\dosbox_xwing_single.conf\\\" -noconsole -c exit" when: - os: windows store: steam - workingDir: /classic/DOSBOX - /collectors_cd/DOSBOX/DOSBox.exe: - - arguments: '-conf \"..\\dosbox_xwingcd.conf\" -conf \"..\\dosbox_xwingcd_single.conf\" -noconsole -c exit' + workingDir: "/classic/DOSBOX" + "/collectors_cd/DOSBOX/DOSBox.exe": + - arguments: "-conf \\\"..\\\\dosbox_xwingcd.conf\\\" -conf \\\"..\\\\dosbox_xwingcd_single.conf\\\" -noconsole -c exit" when: - os: windows store: steam - workingDir: /collectors_cd/DOSBOX - /remastered/XWING95.EXE: + workingDir: "/collectors_cd/DOSBOX" + "/remastered/XWING95.EXE": - when: - os: windows store: steam - workingDir: /remastered + workingDir: "/remastered" steam: id: 354430 -'Star Wars: X-Wing Alliance': +"Star Wars: X-Wing Alliance": files: - /.plt: + "/.plt": tags: - save when: - os: windows - /config.cfg: + "/config.cfg": tags: - config when: @@ -499503,29 +500823,29 @@ Star Wars Galaxies: installDir: Star Wars X-Wing Alliance: {} launch: - /Alliance.EXE: + "/Alliance.EXE": - when: - store: steam steam: id: 361670 -'Star Wars: X-Wing vs. TIE Fighter': +"Star Wars: X-Wing vs. TIE Fighter": files: - /*.plt: + "/*.plt": tags: - save when: - os: windows - /BalanceOfPower/*.pl2: + "/BalanceOfPower/*.pl2": tags: - save when: - os: windows - /BalanceOfPower/config2.cfg: + "/BalanceOfPower/config2.cfg": tags: - config when: - os: windows - /Config.cfg: + "/Config.cfg": tags: - config when: @@ -499535,41 +500855,41 @@ Star Wars Galaxies: installDir: STAR WARS X-Wing vs TIE Fighter: {} launch: - /XWINGTIE.EXE: + "/XWINGTIE.EXE": - when: - store: steam steam: id: 361690 -'Star Wars: Yoda Stories': +"Star Wars: Yoda Stories": files: - /Yodesk.ini: + "/Yodesk.ini": tags: - config when: - os: windows Star Wolves: files: - /Main.ini: + "/Main.ini": tags: - config when: - os: windows - /Profiles/*/*.cfg: + "/Profiles/*/*.cfg": tags: - config when: - os: windows - /Profiles/*/Save: + "/Profiles/*/Save": tags: - save when: - os: windows - /Profiles/*/profile.info: + "/Profiles/*/profile.info": tags: - config when: - os: windows - /default.cfg: + "/default.cfg": tags: - config when: @@ -499579,34 +500899,34 @@ Star Wolves: installDir: Star Wolves: {} launch: - /StarWolves.exe: + "/StarWolves.exe": - when: - store: steam steam: id: 46270 Star Wolves 2: files: - /Main.ini: + "/Main.ini": tags: - config when: - os: windows - /Profiles//.cfg: + "/Profiles//.cfg": tags: - config when: - os: windows - /Profiles//Save: + "/Profiles//Save": tags: - save when: - os: windows - /Profiles//profile.info: + "/Profiles//profile.info": tags: - config when: - os: windows - /default.cfg: + "/default.cfg": tags: - config when: @@ -499616,34 +500936,34 @@ Star Wolves 2: installDir: Star Wolves 2: {} launch: - /Star Wolves 2.exe: + "/Star Wolves 2.exe": - when: - store: steam steam: id: 46280 -'Star Wolves 3: Civil War': +"Star Wolves 3: Civil War": files: - /Main.ini: + "/Main.ini": tags: - config when: - os: windows - /Profiles/*/*.cfg: + "/Profiles/*/*.cfg": tags: - config when: - os: windows - /Profiles/*/Save: + "/Profiles/*/Save": tags: - save when: - os: windows - /Profiles/*/profile.info: + "/Profiles/*/profile.info": tags: - config when: - os: windows - /default.cfg: + "/default.cfg": tags: - config when: @@ -499653,43 +500973,43 @@ Star Wolves 2: installDir: Star Wolves 3 Civil War: {} launch: - /sw3cw.exe: + "/sw3cw.exe": - when: - store: steam steam: id: 46260 Star Wraith 2: files: - /*.sw: + "/*.sw": tags: - save when: - os: windows - /sw.cfg: + "/sw.cfg": tags: - config when: - os: windows -'Star Wraith IV: Reviction': +"Star Wraith IV: Reviction": files: - /pilot*.sw: + "/pilot*.sw": tags: - save when: - os: windows - /sw.cfg: + "/sw.cfg": tags: - config when: - os: windows -'Star Wraith: Shadows of Orion': +"Star Wraith: Shadows of Orion": files: - /pilot.sw: + "/pilot.sw": tags: - save when: - os: windows - /sw.cfg: + "/sw.cfg": tags: - config when: @@ -499701,17 +501021,17 @@ Star of Lemutia: installDir: star of lemutia: {} launch: - /Star Of Lemutia.exe: + "/Star Of Lemutia.exe": - when: - os: windows store: steam steam: id: 740560 -'Star of Lemutia : Reborn': +"Star of Lemutia : Reborn": installDir: Star of Lemutia Reborn: {} launch: - /Star_Of_Lemutia_R.exe: + "/Star_Of_Lemutia_R.exe": - when: - os: windows store: steam @@ -499719,13 +501039,13 @@ Star of Lemutia: id: 1194890 Star of Providence: files: - /Monolith: + "/Monolith": tags: - config - save when: - os: windows - /Monolith: + "/Monolith": tags: - config - save @@ -499736,31 +501056,31 @@ Star of Providence: installDir: Monolith: {} launch: - /Monolith.exe: + "/Monolith.exe": - when: - os: windows store: steam - /run.sh: + "/run.sh": - when: - os: linux store: steam steam: id: 603960 -Star'Shoot: +"Star'Shoot": installDir: - Star'Shoot: {} + "Star'Shoot": {} launch: - /StarShoot.exe: + "/StarShoot.exe": - when: - os: windows store: steam steam: id: 882080 -'Star-Box: RPG Adventures in Space': +"Star-Box: RPG Adventures in Space": installDir: STAR-BOX: {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: @@ -499769,7 +501089,7 @@ Star-Pit Starship: installDir: Star-Pit Starship: {} launch: - /star-pit_starship.exe: + "/star-pit_starship.exe": - when: - os: windows store: steam @@ -499779,7 +501099,7 @@ Star-Rocket Strike: installDir: StarRocket: {} launch: - /StarRocket.exe: + "/StarRocket.exe": - when: - os: windows store: steam @@ -499787,19 +501107,19 @@ Star-Rocket Strike: id: 665900 Star-Twine: files: - /Library/Application Support/Star-Twine: + "/Library/Application Support/Star-Twine": tags: - config - save when: - os: mac - /Star-Twine: + "/Star-Twine": tags: - config - save when: - os: windows - /Star-Twine: + "/Star-Twine": tags: - config - save @@ -499808,15 +501128,15 @@ Star-Twine: installDir: Star-Twine: {} launch: - /Star-Twine: + "/Star-Twine": - when: - os: linux store: steam - /Star-Twine.app: + "/Star-Twine.app": - when: - os: mac store: steam - /Star-Twine.exe: + "/Star-Twine.exe": - when: - os: windows store: steam @@ -499826,16 +501146,16 @@ Star99: installDir: Star99: {} launch: - /Contents/MacOS/Star99: + "/Contents/MacOS/Star99": - when: - os: mac store: steam - /Star99.exe: + "/Star99.exe": - when: - bit: 64 os: windows store: steam - /Star99.x86_64: + "/Star99.x86_64": - when: - bit: 64 os: linux @@ -499851,17 +501171,17 @@ StarBreak: installDir: StarBreak: {} launch: - /MVMMOClient.app/Contents/MacOS/mvmmoclient.sh: + "/MVMMOClient.app/Contents/MacOS/mvmmoclient.sh": - when: - bit: 64 os: mac store: steam - /mvmmoclient: + "/mvmmoclient": - when: - bit: 64 os: linux store: steam - /mvmmoclient.exe: + "/mvmmoclient.exe": - when: - os: windows store: steam @@ -499869,34 +501189,34 @@ StarBreak: id: 420790 StarCraft: files: - /Library/Application Support/Blizzard/StarCraft/CSettings.json: + "/Library/Application Support/Blizzard/StarCraft/CSettings.json": tags: - config when: - os: mac - /Library/Application Support/Blizzard/StarCraft/Characters/: + "/Library/Application Support/Blizzard/StarCraft/Characters/": tags: - save when: - os: mac - /Starcraft/CSettings.json: + "/Starcraft/CSettings.json": tags: - config when: - os: windows - /Starcraft/Characters/: + "/Starcraft/Characters/": tags: - save when: - os: windows StarCraft II: files: - /Library/Application Support/Blizzard/StarCraft II/Accounts: + "/Library/Application Support/Blizzard/StarCraft II/Accounts": tags: - save when: - os: mac - /StarCraft II/Accounts: + "/StarCraft II/Accounts": tags: - config - save @@ -499904,22 +501224,22 @@ StarCraft II: - os: windows StarCrawlers: files: - /AppData/LocalLow/Juggernaut Games/Starcrawlers: + "/AppData/LocalLow/Juggernaut Games/Starcrawlers": tags: - config when: - os: windows - /AppData/LocalLow/Juggernaut Games/Starcrawlers/SaveGame: + "/AppData/LocalLow/Juggernaut Games/Starcrawlers/SaveGame": tags: - save when: - os: windows - /unity3d/Juggernaut Games/StarCrawlers: + "/unity3d/Juggernaut Games/StarCrawlers": tags: - config when: - os: linux - /unity3d/Juggernaut Games/StarCrawlers/SaveGame: + "/unity3d/Juggernaut Games/StarCrawlers/SaveGame": tags: - save when: @@ -499929,7 +501249,7 @@ StarCrawlers: installDir: StarCrawlers: {} launch: - /StarCrawlers.app: + "/StarCrawlers.app": - when: - os: mac store: steam @@ -499941,7 +501261,7 @@ StarCrawlers Chimera: installDir: StarCrawlers Chimera: {} launch: - /StarCrawlers Chimera.exe: + "/StarCrawlers Chimera.exe": - when: - bit: 64 os: windows @@ -499952,15 +501272,15 @@ StarCrossed: installDir: StarCrossed: {} launch: - /StarCrossed.app/Contents/MacOS/StarCrossed: + "/StarCrossed.app/Contents/MacOS/StarCrossed": - when: - os: mac store: steam - /StarCrossed.exe: + "/StarCrossed.exe": - when: - os: windows store: steam - /StarCrossed.x86_64: + "/StarCrossed.x86_64": - when: - os: linux store: steam @@ -499968,12 +501288,12 @@ StarCrossed: id: 956560 StarDrive: files: - /StarDrive: + "/StarDrive": tags: - config when: - os: windows - /StarDrive/Saved Games: + "/StarDrive/Saved Games": tags: - save when: @@ -499981,7 +501301,7 @@ StarDrive: installDir: StarDrive: {} launch: - /StarDrive.exe: + "/StarDrive.exe": - when: - os: windows store: steam @@ -499989,22 +501309,22 @@ StarDrive: id: 220660 StarDrive 2: files: - /.config/unity3D/Zero Sum Games/StarDrive 2/SavedGames: + "/.config/unity3D/Zero Sum Games/StarDrive 2/SavedGames": tags: - save when: - os: linux - /.config/unity3d/Zero Sum Games/StarDrive 2: + "/.config/unity3d/Zero Sum Games/StarDrive 2": tags: - config when: - os: linux - /AppData/LocalLow/Zero Sum Games/StarDrive 2: + "/AppData/LocalLow/Zero Sum Games/StarDrive 2": tags: - config when: - os: windows - /AppData/LocalLow/Zero Sum Games/StarDrive 2/SavedGames: + "/AppData/LocalLow/Zero Sum Games/StarDrive 2/SavedGames": tags: - save when: @@ -500012,16 +501332,16 @@ StarDrive 2: installDir: StarDrive 2: {} launch: - /SD2.App: + "/SD2.App": - when: - os: mac store: steam - /SD2.exe: + "/SD2.exe": - when: - bit: 32 os: windows store: steam - /SD2.x86_64: + "/SD2.x86_64": - when: - os: linux store: steam @@ -500031,21 +501351,21 @@ StarDrone VR: installDir: StarDroneVR: {} launch: - /StarDrone.run: + "/StarDrone.run": - when: - bit: 64 os: linux store: steam steam: id: 523890 -'StarFence: Heroic Edition': +"StarFence: Heroic Edition": steam: id: 360750 -'StarForce 2193: The Hotep Controversy': +"StarForce 2193: The Hotep Controversy": installDir: StarForce 2193: {} launch: - /StarForce2193.exe: + "/StarForce2193.exe": - when: - os: windows store: steam @@ -500055,18 +501375,18 @@ StarForge: installDir: StarForge: {} launch: - /StarForge.exe: - - arguments: '-nolog' + "/StarForge.exe": + - arguments: "-nolog" when: - os: windows store: steam steam: id: 227680 -'StarFringe: Adversus': +"StarFringe: Adversus": installDir: StarFringe: {} launch: - /StarFringe.exe: + "/StarFringe.exe": - when: - os: windows store: steam @@ -500074,27 +501394,27 @@ StarForge: id: 458030 StarLancer: files: - /SAVES: + "/SAVES": tags: - save when: - os: windows - /starlancer.ini: + "/starlancer.ini": tags: - config when: - os: windows -'StarLightRiders: HyperJump': +"StarLightRiders: HyperJump": steam: id: 605980 StarMade: files: - /Starmade: + "/Starmade": tags: - config when: - os: windows - /Starmade/server-database: + "/Starmade/server-database": tags: - save when: @@ -500102,18 +501422,18 @@ StarMade: installDir: StarMade: {} launch: - /starmade-launcher: - - arguments: '--steam' + "/starmade-launcher": + - arguments: "--steam" when: - os: linux store: steam - /starmade-launcher.app/Contents/MacOS/Electron: - - arguments: '--steam' + "/starmade-launcher.app/Contents/MacOS/Electron": + - arguments: "--steam" when: - os: mac store: steam - /starmade-launcher.exe: - - arguments: '--steam' + "/starmade-launcher.exe": + - arguments: "--steam" when: - bit: 64 os: windows @@ -500124,7 +501444,7 @@ StarShip Constructor: installDir: StarShip Constructor: {} launch: - /SSC.exe: + "/SSC.exe": - when: - os: windows store: steam @@ -500134,7 +501454,7 @@ StarSmashers: installDir: StarSmashers: {} launch: - /StarSmashers.exe: + "/StarSmashers.exe": - when: - os: windows store: steam @@ -500144,7 +501464,7 @@ StarWheels: installDir: StarWheels: {} launch: - /StarWheels.exe: + "/StarWheels.exe": - when: - os: windows store: steam @@ -500154,11 +501474,11 @@ Starazius: installDir: Starazius: {} launch: - /Starazius.app: + "/Starazius.app": - when: - os: mac store: steam - /Starazius.exe: + "/Starazius.exe": - when: - os: windows store: steam @@ -500166,7 +501486,7 @@ Starazius: id: 1157100 Starbase: files: - /Starbase: + "/Starbase": tags: - config when: @@ -500174,7 +501494,7 @@ Starbase: installDir: Starbase: {} launch: - /starbase.exe: + "/starbase.exe": - when: - os: windows store: steam @@ -500184,13 +501504,13 @@ Starbase Admiral: installDir: Stellar Warfare: {} launch: - /Stellar Warfare.exe: + "/Stellar Warfare.exe": - when: - os: windows store: steam steam: id: 1113030 -'Starbear: Taxi': +"Starbear: Taxi": installDir: StarbearTaxi: {} steam: @@ -500199,15 +501519,15 @@ Starblast: installDir: Starblast: {} launch: - /Starblast.app: + "/Starblast.app": - when: - os: mac store: steam - /Starblast.exe: + "/Starblast.exe": - when: - os: windows store: steam - /starblast: + "/starblast": - when: - bit: 64 os: linux @@ -500223,20 +501543,20 @@ Starbo: installDir: STARBO: {} launch: - /STARBO.app: + "/STARBO.app": - when: - os: mac store: steam - /STARBO.exe: + "/STARBO.exe": - when: - os: windows store: steam - /STARBO.x86: + "/STARBO.x86": - when: - bit: 32 os: linux store: steam - /STARBO.x86_64: + "/STARBO.x86_64": - when: - bit: 64 os: linux @@ -500245,27 +501565,27 @@ Starbo: id: 774321 Starbound: files: - /storage: + "/storage": tags: - save when: - os: windows - os: mac - os: linux - /storage/starbound.config: + "/storage/starbound.config": tags: - config when: - os: windows - os: mac - os: linux - /Starbound: + "/Starbound": tags: - save when: - os: windows store: microsoft - /Starbound/starbound.config: + "/Starbound/starbound.config": tags: - config when: @@ -500279,46 +501599,49 @@ Starbound: installDir: Starbound: {} launch: - /linux/run-client.sh: + "/linux/run-client.sh": - when: - bit: 64 os: linux store: steam - workingDir: /linux - /osx/Starbound.app: + workingDir: "/linux" + "/osx/Starbound.app": - when: - bit: 64 os: mac store: steam - workingDir: /osx - /win32/starbound.exe: + workingDir: "/osx" + "/win32/starbound.exe": - when: - bit: 32 os: windows store: steam - workingDir: /win32 - /win64/mod_uploader.exe: + - bit: 64 + os: windows + store: steam + workingDir: "/win32" + "/win64/mod_uploader.exe": - when: - bit: 64 os: windows store: steam - /win64/starbound.exe: + "/win64/starbound.exe": - when: - bit: 64 os: windows store: steam - workingDir: /win64 + workingDir: "/win64" steam: id: 211820 Starbucket: installDir: Starbucket: {} launch: - /Starbucket.app/Contents/MacOS/Starbucket: + "/Starbucket.app/Contents/MacOS/Starbucket": - when: - os: mac store: steam - /Starbucket.exe: + "/Starbucket.exe": - when: - bit: 64 os: windows @@ -500329,8 +501652,8 @@ Starcaster: installDir: Starcaster: {} launch: - /jre/bin/java.exe: - - arguments: '-jar Starcaster.jar' + "/jre/bin/java.exe": + - arguments: "-jar Starcaster.jar" when: - store: steam steam: @@ -500342,25 +501665,25 @@ Starcats: installDir: Starcats: {} launch: - /Starcats.exe: + "/Starcats.exe": - when: - os: windows store: steam steam: id: 724920 -'Starchaser: Priestess of the Night Sky': +"Starchaser: Priestess of the Night Sky": installDir: Starchaser Priestess of the Night Sky: {} launch: - /Hoshimiko.exe: + "/Hoshimiko.exe": - when: - os: windows store: steam steam: id: 365850 -'Starcom: Nexus': +"Starcom: Nexus": files: - '/AppData/LocalLow/Wx3 Labs, LLC/Starcom Nexus/saves': + "/AppData/LocalLow/Wx3 Labs, LLC/Starcom Nexus/saves": tags: - save when: @@ -500370,11 +501693,11 @@ Starcats: installDir: Starcom Nexus: {} launch: - /StarcomNexus.exe: + "/StarcomNexus.exe": - when: - os: windows store: steam - /StarcomNexus.x86_64: + "/StarcomNexus.x86_64": - when: - bit: 64 os: linux @@ -500385,12 +501708,12 @@ Starcross Arena: installDir: Starcross Arena: {} launch: - /StarcrossArena.exe: + "/StarcrossArena.exe": - when: - bit: 64 os: windows store: steam - /StarcrossArena.sh: + "/StarcrossArena.sh": - when: - os: linux store: steam @@ -500398,17 +501721,17 @@ Starcross Arena: id: 945870 Stardeus: files: - /.config/unity3d/Kodo Linija/Stardeus/Saves: + "/.config/unity3d/Kodo Linija/Stardeus/Saves": tags: - save when: - os: linux - /AppData/LocalLow/Kodo Linija/Stardeus/Saves: + "/AppData/LocalLow/Kodo Linija/Stardeus/Saves": tags: - save when: - os: windows - /Library/Application Support/Kodo Linija/Stardeus/Saves: + "/Library/Application Support/Kodo Linija/Stardeus/Saves": tags: - save when: @@ -500418,16 +501741,16 @@ Stardeus: installDir: Stardeus: {} launch: - /Stardeus: + "/Stardeus": - when: - bit: 64 os: linux store: steam - /Stardeus.app: + "/Stardeus.app": - when: - os: mac store: steam - /Stardeus.exe: + "/Stardeus.exe": - when: - os: windows store: steam @@ -500435,32 +501758,32 @@ Stardeus: id: 1380910 Stardew Valley: files: - /.config/StardewValley: + "/.config/StardewValley": tags: - config when: - os: mac - /.config/StardewValley/Saves: + "/.config/StardewValley/Saves": tags: - save when: - os: mac - /StardewValley: + "/StardewValley": tags: - config when: - os: windows - /StardewValley/Saves: + "/StardewValley/Saves": tags: - save when: - os: windows - /StardewValley: + "/StardewValley": tags: - config when: - os: linux - /StardewValley/Saves: + "/StardewValley/Saves": tags: - save when: @@ -500470,16 +501793,16 @@ Stardew Valley: installDir: Stardew Valley: {} launch: - /Contents/MacOS/StardewValley: + "/Contents/MacOS/StardewValley": - when: - os: mac store: steam - workingDir: /Contents - /Stardew Valley.exe: + workingDir: "/Contents" + "/Stardew Valley.exe": - when: - os: windows store: steam - /StardewValley: + "/StardewValley": - arguments: STEAM_RUNTIME=0 when: - os: linux @@ -500490,20 +501813,20 @@ Stardrift Nomads: installDir: Stardrift Nomads: {} launch: - /stardrift_nomads.app: + "/stardrift_nomads.app": - when: - os: mac store: steam - /stardrift_nomads.exe: + "/stardrift_nomads.exe": - when: - bit: 64 os: windows store: steam - /stardrift_nomads.x86: + "/stardrift_nomads.x86": - when: - os: linux store: steam - /stardrift_nomads32.exe: + "/stardrift_nomads32.exe": - when: - bit: 32 os: windows @@ -500512,12 +501835,12 @@ Stardrift Nomads: id: 381250 Stardrop: files: - /STARDROP/Saved/Config/WindowsNoEditor: + "/STARDROP/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /STARDROP/Saved/SaveGames: + "/STARDROP/Saved/SaveGames": tags: - save when: @@ -500525,12 +501848,12 @@ Stardrop: installDir: STARDROP: {} launch: - /STARDROP/Binaries/Win32/STARDROP-Win32-Shipping.exe: + "/STARDROP/Binaries/Win32/STARDROP-Win32-Shipping.exe": - when: - bit: 32 os: windows store: steam - /STARDROP/Binaries/Win64/STARDROP-Win64-Shipping.exe: + "/STARDROP/Binaries/Win64/STARDROP-Win64-Shipping.exe": - when: - bit: 64 os: windows @@ -500541,32 +501864,32 @@ Stardust Galaxy Warriors: installDir: Stardust Galaxy Warriors: {} launch: - /Stardust Galaxy Warriors Lin32.x86: + "/Stardust Galaxy Warriors Lin32.x86": - when: - bit: 32 os: linux store: steam - /Stardust Galaxy Warriors Lin64.x86_64: + "/Stardust Galaxy Warriors Lin64.x86_64": - when: - bit: 64 os: linux store: steam - /Stardust Galaxy Warriors Mac32.app: + "/Stardust Galaxy Warriors Mac32.app": - when: - bit: 32 os: mac store: steam - /Stardust Galaxy Warriors Mac64.app: + "/Stardust Galaxy Warriors Mac64.app": - when: - bit: 64 os: mac store: steam - /Stardust Galaxy Warriors Win32.exe: + "/Stardust Galaxy Warriors Win32.exe": - when: - bit: 32 os: windows store: steam - /Stardust Galaxy Warriors Win64.exe: + "/Stardust Galaxy Warriors Win64.exe": - when: - bit: 64 os: windows @@ -500577,7 +501900,7 @@ Stardust Tycoon: installDir: Stardust Origins: {} launch: - /Stardust.exe: + "/Stardust.exe": - when: - os: windows store: steam @@ -500590,12 +501913,12 @@ Stardust VR: id: 820530 Stardust Vanguards: files: - /settings.cfg: + "/settings.cfg": tags: - config when: - os: windows - /AppData/LocalLow/Zanrai Interactive/Stardust Vanguards: + "/AppData/LocalLow/Zanrai Interactive/Stardust Vanguards": tags: - save when: @@ -500603,11 +501926,11 @@ Stardust Vanguards: installDir: Stardust Vanguards: {} launch: - /StardustVanguards.exe: + "/StardustVanguards.exe": - when: - os: windows store: steam - /StardustVanguards.sh: + "/StardustVanguards.sh": - when: - os: linux store: steam @@ -500617,14 +501940,14 @@ Stardust Vanguards: - config steam: id: 341530 -'Stare : Block Breaker': +"Stare : Block Breaker": steam: id: 1146450 Starena: installDir: Starena: {} launch: - /Starena.exe: + "/Starena.exe": - when: - os: windows store: steam @@ -500634,7 +501957,7 @@ Starexcess: installDir: Starexcess: {} launch: - /starexcess.exe: + "/starexcess.exe": - when: - os: windows store: steam @@ -500642,19 +501965,19 @@ Starexcess: id: 1163990 Starfield: files: - /My Games/Starfield: + "/My Games/Starfield": tags: - config when: - os: windows - os: windows store: microsoft - /My Games/Starfield/Saves: + "/My Games/Starfield/Saves": tags: - save when: - os: windows - /Packages/BethesdaSoftworks.ProjectGold_3275kfvn8vcwc/SystemAppData/wgs/: + "/Packages/BethesdaSoftworks.ProjectGold_3275kfvn8vcwc/SystemAppData/wgs/": tags: - save when: @@ -500663,7 +501986,7 @@ Starfield: installDir: Starfield: {} launch: - /Starfield.exe: + "/Starfield.exe": - when: - store: steam steam: @@ -500672,7 +501995,7 @@ Starfield Wars: installDir: Starfield Wars: {} launch: - /StarfieldWars.exe: + "/StarfieldWars.exe": - when: - store: steam steam: @@ -500686,7 +502009,7 @@ Starfighter General: installDir: StarfighterGeneral: {} launch: - /Starfighter.exe: + "/Starfighter.exe": - when: - bit: 64 os: windows @@ -500697,11 +502020,11 @@ Starfighter Neon: installDir: Starfighter Neon: {} launch: - /sfn.app/Contents/MacOS/sfn: + "/sfn.app/Contents/MacOS/sfn": - when: - os: mac store: steam - /sfn.exe: + "/sfn.exe": - when: - os: windows store: steam @@ -500711,7 +502034,7 @@ Starfighter Origins: installDir: Starfighter Origins: {} launch: - /StarfighterOriginsRM.exe: + "/StarfighterOriginsRM.exe": - when: - bit: 64 os: windows @@ -500721,19 +502044,19 @@ Starfighter Origins: Starfighter X: steam: id: 854990 -'Starfighter: Infinity': +"Starfighter: Infinity": installDir: Starfighter Infinity: {} launch: - /Starfighter Infinity.exe: + "/Starfighter Infinity.exe": - when: - os: windows store: steam - /StarfighterInfinity.app/Contents/MacOS/Starfighter Infinity: + "/StarfighterInfinity.app/Contents/MacOS/Starfighter Infinity": - when: - os: mac store: steam - /StarfighterInfinity.x86_64: + "/StarfighterInfinity.x86_64": - when: - bit: 64 os: linux @@ -500743,10 +502066,10 @@ Starfighter X: Starflight: gog: id: 1207662393 -'Starflight 2: Trade Routes of the Cloud Nebula': +"Starflight 2: Trade Routes of the Cloud Nebula": gog: id: 1207662403 -'Stargate: Timekeepers': +"Stargate: Timekeepers": gog: id: 1728174162 steam: @@ -500755,7 +502078,7 @@ Stargazer: installDir: Stargazer: {} launch: - /Stargazer.exe: + "/Stargazer.exe": - when: - os: windows store: steam @@ -500765,7 +502088,7 @@ Stargazer Christmas: installDir: Stargazer Christmas: {} launch: - /StargazerChristmas.exe: + "/StargazerChristmas.exe": - when: - store: steam steam: @@ -500774,7 +502097,7 @@ Stargazer Program: installDir: Stargazer program: {} launch: - /stargazer_program.exe: + "/stargazer_program.exe": - when: - os: windows store: steam @@ -500782,17 +502105,17 @@ Stargazer Program: id: 828250 Stargunner: files: - /STARGUN.CFG: + "/STARGUN.CFG": tags: - config when: - os: dos - /STARGUN.HI: + "/STARGUN.HI": tags: - save when: - os: dos - /STARGUN.SAV: + "/STARGUN.SAV": tags: - save when: @@ -500802,39 +502125,39 @@ Stargunner: installDir: Stargunner: {} launch: - /Dosbox/dosbox: - - arguments: '-conf \"..\\STARGUN.conf\" -noconsole -c' + "/Dosbox/dosbox": + - arguments: "-conf \\\"..\\\\STARGUN.conf\\\" -noconsole -c" when: - os: linux store: steam - workingDir: /Dosbox - /Stargunner.app: + workingDir: "/Dosbox" + "/Stargunner.app": - when: - os: mac store: steam - /Stargunner/Dosbox/dosbox.exe: - - arguments: '-conf \"..\\STARGUN.conf\" -noconsole -c' + "/Stargunner/Dosbox/dosbox.exe": + - arguments: "-conf \\\"..\\\\STARGUN.conf\\\" -noconsole -c" when: - os: windows store: steam - workingDir: /Stargunner/Dosbox + workingDir: "/Stargunner/Dosbox" steam: id: 358390 Starion Tactics: installDir: Starion Tactics: {} launch: - /Starion.exe: + "/Starion.exe": - when: - os: windows store: steam steam: id: 312960 -Starkid's Obstacle Course: +"Starkid's Obstacle Course": installDir: - Starkid's Obstacle Course: {} + "Starkid's Obstacle Course": {} launch: - /Starkid's Obstacle Course.exe: + "/Starkid's Obstacle Course.exe": - when: - store: steam steam: @@ -500843,7 +502166,7 @@ Starlaxis Supernova Edition: installDir: Starlaxis: {} launch: - /starlaxis.exe: + "/starlaxis.exe": - when: - os: windows store: steam @@ -500853,7 +502176,7 @@ Starless Night: installDir: Starless Night: {} launch: - /Starless Night.exe: + "/Starless Night.exe": - when: - os: windows store: steam @@ -500863,7 +502186,7 @@ Starlight: installDir: Starlight: {} launch: - /Starlight.exe: + "/Starlight.exe": - when: - os: windows store: steam @@ -500871,7 +502194,7 @@ Starlight: id: 1182760 Starlight Drifter: files: - /game/saves: + "/game/saves": tags: - save when: @@ -500879,15 +502202,15 @@ Starlight Drifter: installDir: Starlight Drifter: {} launch: - /Starlight Drifter.app: + "/Starlight Drifter.app": - when: - os: mac store: steam - /Starlight Drifter.exe: + "/Starlight Drifter.exe": - when: - os: windows store: steam - /Starlight Drifter.sh: + "/Starlight Drifter.sh": - when: - os: linux store: steam @@ -500897,7 +502220,7 @@ Starlight Inception: installDir: StarlightInception: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -500907,7 +502230,7 @@ Starlight Tactics: installDir: Starlight Tactics: {} launch: - /starlighttacticspc.exe: + "/starlighttacticspc.exe": - when: - os: windows store: steam @@ -500917,15 +502240,15 @@ Starlight Vega: installDir: Starlight Vega: {} launch: - /StarlightVega-1.2-all/Starlight Vega.app: + "/StarlightVega-1.2-all/Starlight Vega.app": - when: - os: mac store: steam - /StarlightVega-1.2-all/Starlight Vega.exe: + "/StarlightVega-1.2-all/Starlight Vega.exe": - when: - os: windows store: steam - /StarlightVega-1.2-all/Starlight Vega.sh: + "/StarlightVega-1.2-all/Starlight Vega.sh": - when: - os: linux store: steam @@ -500935,21 +502258,21 @@ Starlight of Aeons: installDir: Starlight of Aeons: {} launch: - /stars.exe: + "/stars.exe": - when: - os: windows store: steam steam: id: 644200 -'Starlink: Battle for Atlas': +"Starlink: Battle for Atlas": files: - /savegames//5277: + "/savegames//5277": tags: - save when: - os: windows store: uplay - /My Games/Starlink - Battle For Atlas: + "/My Games/Starlink - Battle For Atlas": tags: - config when: @@ -500957,26 +502280,26 @@ Starlight of Aeons: installDir: Starlink Battle for Atlas: {} launch: - /Starlink.exe: - - arguments: '-uplay_steam_mode' + "/Starlink.exe": + - arguments: "-uplay_steam_mode" when: - os: windows store: steam steam: id: 950050 -'Starlite: Astronaut Rescue': +"Starlite: Astronaut Rescue": installDir: StarliteAR: {} launch: - /StarliteAstronautRescue.app: + "/StarliteAstronautRescue.app": - when: - os: mac store: steam - /StarliteAstronautRescue.exe: + "/StarliteAstronautRescue.exe": - when: - os: windows store: steam - /StarliteAstronautRescue.x86: + "/StarliteAstronautRescue.x86": - when: - os: linux store: steam @@ -500984,12 +502307,12 @@ Starlight of Aeons: id: 266090 Starlord: files: - /*.SAV: + "/*.SAV": tags: - save when: - os: dos - /SOUND.DAT: + "/SOUND.DAT": tags: - config when: @@ -500999,49 +502322,49 @@ Starlord: installDir: Starlord: {} launch: - /dosbox_linux/daum/launch_starlord_game_daum.sh: + "/dosbox_linux/daum/launch_starlord_game_daum.sh": - when: - os: linux store: steam - workingDir: /dosbox_linux/daum - /dosbox_linux/launch_starlord_config.sh: + workingDir: "/dosbox_linux/daum" + "/dosbox_linux/launch_starlord_config.sh": - when: - os: linux store: steam - workingDir: /dosbox_linux - /dosbox_linux/launch_starlord_game.sh: + workingDir: "/dosbox_linux" + "/dosbox_linux/launch_starlord_game.sh": - when: - os: linux store: steam - workingDir: /dosbox_linux - /dosbox_windows/daum/dosbox.exe: - - arguments: '-conf dosbox_starlord.conf -conf dosbox_starlord_launch_windows.conf -noconsole' + workingDir: "/dosbox_linux" + "/dosbox_windows/daum/dosbox.exe": + - arguments: "-conf dosbox_starlord.conf -conf dosbox_starlord_launch_windows.conf -noconsole" when: - os: windows store: steam - workingDir: /dosbox_windows/daum - /dosbox_windows/dosbox.exe: - - arguments: '-conf dosbox_starlord.conf -conf dosbox_starlord_launch_windows.conf -noconsole' + workingDir: "/dosbox_windows/daum" + "/dosbox_windows/dosbox.exe": + - arguments: "-conf dosbox_starlord.conf -conf dosbox_starlord_launch_windows.conf -noconsole" when: - os: windows store: steam - workingDir: /dosbox_windows - - arguments: '-conf dosbox_starlord.conf -conf dosbox_starlord_config_windows.conf -noconsole' + workingDir: "/dosbox_windows" + - arguments: "-conf dosbox_starlord.conf -conf dosbox_starlord_config_windows.conf -noconsole" when: - os: windows store: steam - workingDir: /dosbox_windows + workingDir: "/dosbox_windows" steam: id: 410540 Starman: installDir: Starman: {} launch: - /Starman.app: + "/Starman.app": - when: - os: mac store: steam - /Starman.exe: + "/Starman.exe": - when: - os: windows store: steam @@ -501052,7 +502375,7 @@ Starman in Space: Starman in space: {} steam: id: 804440 -Starman's VR Experience: +"Starman's VR Experience": installDir: StarmansVRExperience: {} steam: @@ -501063,15 +502386,15 @@ Starmancer: installDir: Starmancer: {} launch: - /Starmancer.app/Contents/MacOS/Starmancer: + "/Starmancer.app/Contents/MacOS/Starmancer": - when: - os: mac store: steam - /Starmancer.exe: + "/Starmancer.exe": - when: - os: windows store: steam - /Starmancer.x86_64: + "/Starmancer.x86_64": - when: - os: linux store: steam @@ -501079,12 +502402,12 @@ Starmancer: id: 1062000 Starpoint Gemini: files: - /GameConfiguration.cfg: + "/GameConfiguration.cfg": tags: - config when: - os: windows - /Saves: + "/Saves": tags: - save when: @@ -501092,14 +502415,14 @@ Starpoint Gemini: installDir: StarpointGemini: {} launch: - /StarpointGemini.exe: + "/StarpointGemini.exe": - when: - store: steam steam: id: 108110 Starpoint Gemini 2: files: - /Saves: + "/Saves": tags: - save when: @@ -501113,7 +502436,7 @@ Starpoint Gemini 2: installDir: Starpoint Gemini 2: {} launch: - /StarpointGemini2.exe: + "/StarpointGemini2.exe": - when: - os: windows store: steam @@ -501121,12 +502444,12 @@ Starpoint Gemini 2: id: 236150 Starpoint Gemini 3: files: - /Saves: + "/Saves": tags: - save when: - os: windows - /StarpointGemini3Configuration.cfg: + "/StarpointGemini3Configuration.cfg": tags: - config when: @@ -501139,7 +502462,7 @@ Starpoint Gemini 3: installDir: Starpoint Gemini 3: {} launch: - /GameLauncher.exe: + "/GameLauncher.exe": - when: - bit: 64 os: windows @@ -501148,12 +502471,12 @@ Starpoint Gemini 3: id: 977720 Starpoint Gemini Warlords: files: - /Saves: + "/Saves": tags: - save when: - os: windows - /StarpointGeminiWarlordsConfiguration.cfg: + "/StarpointGeminiWarlordsConfiguration.cfg": tags: - config when: @@ -501162,16 +502485,16 @@ Starpoint Gemini Warlords: id: 2086603499 id: gogExtra: - - 1790238622 - 1154080035 - - 1370908628 - 1171355317 - - 1688887856 + - 1370908628 - 1498330776 + - 1688887856 + - 1790238622 installDir: Starpoint Gemini Warlords: {} launch: - /GameLauncher.exe: + "/GameLauncher.exe": - when: - os: windows store: steam @@ -501181,7 +502504,7 @@ Starport Delta: installDir: Starport Delta: {} launch: - /StarportDelta.exe: + "/StarportDelta.exe": - when: - os: windows store: steam @@ -501191,39 +502514,39 @@ Starquake Academy: installDir: StarquakeAcademy: {} launch: - /SQA-Ep1.app: + "/SQA-Ep1.app": - when: - os: mac store: steam - /SQA-Ep1.exe: + "/SQA-Ep1.exe": - when: - os: windows store: steam steam: id: 978040 -'Starr Mazer: DSP': +"Starr Mazer: DSP": installDir: Starr Mazer DSP: {} launch: - /DSP: + "/DSP": - when: - os: linux store: steam - /DSP.app: + "/DSP.app": - when: - os: mac store: steam - /DSP.exe: + "/DSP.exe": - when: - os: windows store: steam steam: id: 462100 -'Starry Nights: Helix': +"Starry Nights: Helix": installDir: Starry Nights Helix: {} launch: - /StarryNightsHelix.exe: + "/StarryNightsHelix.exe": - when: - os: windows store: steam @@ -501241,7 +502564,7 @@ Stars End: installDir: Stars End: {} launch: - /Stars End.exe: + "/Stars End.exe": - when: - bit: 64 os: windows @@ -501257,11 +502580,11 @@ Stars and Snowdrops: installDir: Stars and Snowdrops: {} launch: - /Stars_and_Snowdrops.exe: + "/Stars_and_Snowdrops.exe": - when: - os: windows store: steam - /Stars_and_Snowdrops.sh: + "/Stars_and_Snowdrops.sh": - when: - os: linux store: steam @@ -501273,14 +502596,14 @@ Stars in Shadow: installDir: Stars in Shadow: {} launch: - /sis.exe: - - arguments: '-noupdate' + "/sis.exe": + - arguments: "-noupdate" when: - bit: 32 os: windows store: steam - /sis64.exe: - - arguments: '-noupdate' + "/sis64.exe": + - arguments: "-noupdate" when: - bit: 64 os: windows @@ -501291,16 +502614,16 @@ StarsOne: installDir: StarsOne: {} launch: - /StarsOne.app/Contents/MacOS/StarsOne: + "/StarsOne.app/Contents/MacOS/StarsOne": - when: - os: mac store: steam - /StarsOne.exe: - - arguments: '-force-D3D9' + "/StarsOne.exe": + - arguments: "-force-D3D9" when: - os: windows store: steam - /StarsOne.x86_64: + "/StarsOne.x86_64": - when: - os: linux store: steam @@ -501308,17 +502631,18 @@ StarsOne: id: 457010 Starsand: files: - /AppData/LocalLow/Tunnel Vision Studio/Starsand/: + "/AppData/LocalLow/Tunnel Vision Studio/Starsand/": tags: - save when: - - store: steam + - os: windows + store: steam gog: id: 1551994672 installDir: Starsand: {} launch: - /Starsand.exe: + "/Starsand.exe": - when: - os: windows store: steam @@ -501326,22 +502650,22 @@ Starsand: id: 1380220 Starscape: files: - /Starscape/Starscape.cfg: + "/Starscape/Starscape.cfg": tags: - config when: - os: windows - /Starscape/data/keymap.dat: + "/Starscape/data/keymap.dat": tags: - config when: - os: windows - /Starscape/data/records.bin: + "/Starscape/data/records.bin": tags: - save when: - os: windows - /Starscape/data/saves: + "/Starscape/data/saves": tags: - save when: @@ -501349,33 +502673,33 @@ Starscape: installDir: Starscape: {} launch: - /Starscape.exe: + "/Starscape.exe": - when: - store: steam steam: id: 20700 Starsector: files: - /Starsector/saves/: + "/Starsector/saves/": tags: - save when: - os: windows Starseed Pilgrim: files: - /.appdata/StarseedPilgrim/Local Store/Starseed Pilgrim: + "/.appdata/StarseedPilgrim/Local Store/Starseed Pilgrim": tags: - config - save when: - os: linux - /Library/Preferences/StarseedPilgrim: + "/Library/Preferences/StarseedPilgrim": tags: - config - save when: - os: mac - /StarseedPilgrim/Local Store/Starseed Pilgrim: + "/StarseedPilgrim/Local Store/Starseed Pilgrim": tags: - config - save @@ -501384,43 +502708,43 @@ Starseed Pilgrim: installDir: Starseed Pilgrim: {} launch: - /Starseed Pilgrim.???: + "/Starseed Pilgrim.???": - when: - os: linux store: steam - /Starseed Pilgrim.app: + "/Starseed Pilgrim.app": - when: - os: mac store: steam - /Starseed Pilgrim.exe: + "/Starseed Pilgrim.exe": - when: - os: windows store: steam steam: id: 230980 -'Starshatter: The Gathering Storm': +"Starshatter: The Gathering Storm": files: - /SaveGame: + "/SaveGame": tags: - save when: - os: windows - /audio.cfg: + "/audio.cfg": tags: - config when: - os: windows - /key.cfg: + "/key.cfg": tags: - config when: - os: windows - /player.cfg: + "/player.cfg": tags: - config when: - os: windows - /video.cfg: + "/video.cfg": tags: - config when: @@ -501429,17 +502753,17 @@ Starship Annihilator: installDir: Starship Annihilator: {} launch: - /STARSHIP.exe: + "/STARSHIP.exe": - when: - os: windows store: steam steam: id: 525300 -'Starship Avenger Operation: Take Back Earth': +"Starship Avenger Operation: Take Back Earth": installDir: STARSHIP AVENGER Operation Take Back Earth: {} launch: - /StarshipAvenger.exe: + "/StarshipAvenger.exe": - when: - bit: 64 os: windows @@ -501450,32 +502774,32 @@ Starship Clicker: installDir: Starship Clicker: {} launch: - /light.exe: + "/light.exe": - when: - os: windows store: steam steam: id: 744590 -'Starship Commander: Arcade': +"Starship Commander: Arcade": installDir: Starship Commander: {} steam: id: 598400 Starship Corporation: files: - /steamapps/common/Starship Corporation/profiles.ini: + "/steamapps/common/Starship Corporation/profiles.ini": tags: - config when: - os: windows store: steam - /steamapps/common/Starship Corporation/saves/autousave.sav: + "/steamapps/common/Starship Corporation/saves/autousave.sav": tags: - save when: - os: windows store: steam - /steamapps/common/Starship Corporation/settings.ini: + "/steamapps/common/Starship Corporation/settings.ini": tags: - config when: @@ -501484,7 +502808,7 @@ Starship Corporation: installDir: Starship Corporation: {} launch: - /StarshipCorporation.exe: + "/StarshipCorporation.exe": - when: - os: windows store: steam @@ -501499,7 +502823,7 @@ Starship Helmet: installDir: Folding Edge: {} launch: - /Hemlet.exe: + "/Hemlet.exe": - when: - os: windows store: steam @@ -501509,7 +502833,7 @@ Starship Horizons Bridge Simulator: installDir: Starship Horizons: {} launch: - /Bin/Horizons.exe: + "/Bin/Horizons.exe": - when: - bit: 64 os: windows @@ -501520,7 +502844,7 @@ Starship Inspector: installDir: Starship_Inspector: {} launch: - /StarshipInspector.exe: + "/StarshipInspector.exe": - when: - os: windows store: steam @@ -501530,15 +502854,15 @@ Starship Rubicon: installDir: Starship Rubicon: {} launch: - /Rubicon: + "/Rubicon": - when: - os: linux store: steam - /Rubicon.app: + "/Rubicon.app": - when: - os: mac store: steam - /Rubicon.exe: + "/Rubicon.exe": - when: - os: windows store: steam @@ -501551,7 +502875,7 @@ Starship Survivor: id: 560010 Starship Theory: files: - /SaveData: + "/SaveData": tags: - save when: @@ -501559,16 +502883,16 @@ Starship Theory: installDir: Starship Theory: {} launch: - /Starship Theory.x86_64: + "/Starship Theory.x86_64": - when: - bit: 64 os: linux store: steam - /StarshipTheory.exe: + "/StarshipTheory.exe": - when: - os: windows store: steam - /starshiptheory.app: + "/starshiptheory.app": - when: - os: mac store: steam @@ -501576,7 +502900,7 @@ Starship Theory: id: 574760 Starship Titanic: files: - /SaveGames: + "/SaveGames": tags: - save when: @@ -501586,45 +502910,45 @@ Starship Titanic: installDir: Starship Titanic: {} launch: - /ScummVM_Linux/launch_titanic_opengl.sh: + "/ScummVM_Linux/launch_titanic_opengl.sh": - when: - bit: 64 os: linux store: steam - workingDir: /ScummVM_Linux - /ScummVM_Linux/launch_titanic_safe.sh: + workingDir: "/ScummVM_Linux" + "/ScummVM_Linux/launch_titanic_safe.sh": - when: - bit: 64 os: linux store: steam - workingDir: /ScummVM_Linux - /ScummVM_Mac/ScummVM.app/Contents/MacOS/scummvm: - - arguments: '-c scummvm-titanic-opengl.ini titanic-win' + workingDir: "/ScummVM_Linux" + "/ScummVM_Mac/ScummVM.app/Contents/MacOS/scummvm": + - arguments: "-c scummvm-titanic-opengl.ini titanic-win" when: - os: mac store: steam - workingDir: /ScummVM_Mac - - arguments: '-c scummvm-titanic-safe.ini titanic-win' + workingDir: "/ScummVM_Mac" + - arguments: "-c scummvm-titanic-safe.ini titanic-win" when: - os: mac store: steam - workingDir: /ScummVM_Mac - /ScummVM_Windows/scummvm.exe: - - arguments: '--no-console -c \"scummvm-titanic-opengl.ini\" titanic-win' + workingDir: "/ScummVM_Mac" + "/ScummVM_Windows/scummvm.exe": + - arguments: "--no-console -c \\\"scummvm-titanic-opengl.ini\\\" titanic-win" when: - os: windows store: steam - workingDir: /ScummVM_Windows - - arguments: '--no-console -c \"scummvm-titanic-safe.ini\" titanic-win' + workingDir: "/ScummVM_Windows" + - arguments: "--no-console -c \\\"scummvm-titanic-safe.ini\\\" titanic-win" when: - os: windows store: steam - workingDir: /ScummVM_Windows + workingDir: "/ScummVM_Windows" steam: id: 467290 Starship Traveller: files: - /Documents: + "/Documents": tags: - save when: @@ -501632,51 +502956,51 @@ Starship Traveller: installDir: Starship Traveller: {} launch: - /Starship Traveller.app: + "/Starship Traveller.app": - when: - bit: 64 os: mac store: steam - /Starship Traveller.exe: + "/Starship Traveller.exe": - when: - os: windows store: steam - /Starship Traveller.x86: + "/Starship Traveller.x86": - when: - bit: 32 os: linux store: steam - /Starship Traveller.x86_64: + "/Starship Traveller.x86_64": - when: - bit: 64 os: linux store: steam registry: - 'HKEY_CURRENT_USER/Software/Tin Man Games/FF: Starship': + "HKEY_CURRENT_USER/Software/Tin Man Games/FF: Starship": tags: - config steam: id: 348180 Starship Troopers: files: - /Empire Interactive/SST/Saves: + "/Empire Interactive/SST/Saves": tags: - save when: - os: windows - /Empire Interactive/SST/Settings: + "/Empire Interactive/SST/Settings": tags: - config when: - os: windows -'Starship Troopers: Extermination': +"Starship Troopers: Extermination": files: - /Yakisoba/Saved/Config/WindowsNoEditor: + "/Yakisoba/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /Yakisoba/Saved/SaveGames: + "/Yakisoba/Saved/SaveGames": tags: - save when: @@ -501684,28 +503008,28 @@ Starship Troopers: installDir: StarshipTroopersExtermination: {} launch: - /Yakisoba.exe: + "/Yakisoba.exe": - when: - bit: 64 os: windows store: steam steam: id: 1268750 -'Starship Troopers: Terran Ascendancy': +"Starship Troopers: Terran Ascendancy": files: - /platoons: + "/platoons": tags: - save when: - os: windows -'Starship Troopers: Terran Command': +"Starship Troopers: Terran Command": files: - /My Games/Starship Troopers/Saves: + "/My Games/Starship Troopers/Saves": tags: - save when: - os: windows - /My Games/Starship Troopers/Settings: + "/My Games/Starship Troopers/Settings": tags: - config when: @@ -501719,19 +503043,19 @@ Starship Troopers: installDir: Starship Troopers - Terran Command: {} launch: - /Launcher.exe: + "/Launcher.exe": - when: - store: steam steam: id: 1202130 -'Starship: Nova Strike': +"Starship: Nova Strike": steam: id: 457930 -'Starshot: Space Circus Fever': +"Starshot: Space Circus Fever": installDir: Starshot: {} launch: - /SpaceCircus.exe: + "/SpaceCircus.exe": - when: - os: windows store: steam @@ -501744,19 +503068,19 @@ Starship Troopers: id: 1437040 Starsiege: files: - /defaultPrefs.cs: + "/defaultPrefs.cs": tags: - config when: - os: windows - /savedGames: + "/savedGames": tags: - save when: - os: windows -'Starsiege: Tribes': +"Starsiege: Tribes": files: - /config/ClientPrefs.cs: + "/config/ClientPrefs.cs": tags: - config when: @@ -501773,7 +503097,7 @@ Starsphere: installDir: Starsphere: {} launch: - /StarSphereSteam.exe: + "/StarSphereSteam.exe": - when: - os: windows store: steam @@ -501789,16 +503113,16 @@ StartBolita: installDir: StartBolita: {} launch: - /Laucher/LaucherStartBolita.exe: + "/Laucher/LaucherStartBolita.exe": - when: - bit: 64 os: windows store: steam - /StartBolita.app: + "/StartBolita.app": - when: - os: mac store: steam - /StartBolita.sh: + "/StartBolita.sh": - when: - os: linux store: steam @@ -501808,7 +503132,7 @@ Starters Orders 6 Horse Racing: installDir: Starters Orders 6: {} launch: - /so6.exe: + "/so6.exe": - when: - os: windows store: steam @@ -501818,7 +503142,7 @@ Starters Orders 7 Horse Racing: installDir: Starters Orders 7 Horse Racing: {} launch: - /so7.exe: + "/so7.exe": - when: - os: windows store: steam @@ -501828,15 +503152,15 @@ Startide: installDir: Startide: {} launch: - /Startide.app: + "/Startide.app": - when: - os: mac store: steam - /Startide.exe: + "/Startide.exe": - when: - os: windows store: steam - /Startide.x86: + "/Startide.x86": - when: - os: linux store: steam @@ -501846,7 +503170,7 @@ Starting the Game: installDir: Starting The Game: {} launch: - /respawn.exe: + "/respawn.exe": - when: - os: windows store: steam @@ -501854,12 +503178,12 @@ Starting the Game: id: 850630 Startopia: files: - /Profiles: + "/Profiles": tags: - save when: - os: windows - /startopia.ini: + "/startopia.ini": tags: - config when: @@ -501869,24 +503193,24 @@ Startopia: installDir: Startopia: {} launch: - /Startopia.exe: + "/Startopia.exe": - when: - store: steam steam: id: 243040 Startup Company: files: - ./StartupCompany: + "./StartupCompany": tags: - save when: - os: linux - /Library/Application Support/Startup Company/SaveData: + "/Library/Application Support/Startup Company/SaveData": tags: - save when: - os: mac - /Saved Games/Startup Company: + "/Saved Games/Startup Company": tags: - save when: @@ -501896,15 +503220,15 @@ Startup Company: installDir: Startup Company: {} launch: - /StartupCompany: + "/StartupCompany": - when: - os: linux store: steam - /StartupCompany.app: + "/StartupCompany.app": - when: - os: mac store: steam - /StartupCompany.exe: + "/StartupCompany.exe": - when: - os: windows store: steam @@ -501914,7 +503238,7 @@ Startup Freak: installDir: Startup Freak: {} launch: - /StartupFreak.exe: + "/StartupFreak.exe": - when: - os: windows store: steam @@ -501922,12 +503246,12 @@ Startup Freak: id: 722660 Startup Panic: files: - /AppData/LocalLow/Algorock/Startup Panic: + "/AppData/LocalLow/Algorock/Startup Panic": tags: - save when: - os: windows - /AppData/LocalLow/Algorock/Startup Panic/Unity/18055e08-ad1d-4098-b10b-9a01243c783e/Analytics: + "/AppData/LocalLow/Algorock/Startup Panic/Unity/18055e08-ad1d-4098-b10b-9a01243c783e/Analytics": tags: - config when: @@ -501937,7 +503261,7 @@ Startup Panic: installDir: Startup Panic: {} launch: - /Startup Panic.exe: + "/Startup Panic.exe": - when: - os: windows store: steam @@ -501947,7 +503271,7 @@ Startup Valley Adventure - Episode 1: installDir: Startup Valley Adventure - Episode 1: {} launch: - /Startup Valley Adventure.exe: + "/Startup Valley Adventure.exe": - when: - os: windows store: steam @@ -501963,8 +503287,8 @@ Starvoid: installDir: Project Silverado: {} launch: - /starvoid.exe: - - arguments: '-bundle-dir .' + "/starvoid.exe": + - arguments: "-bundle-dir ." when: - store: steam steam: @@ -501973,7 +503297,7 @@ Starwalker: installDir: Starwalker: {} launch: - /Starwalker.exe: + "/Starwalker.exe": - when: - os: windows store: steam @@ -501981,22 +503305,22 @@ Starwalker: id: 339820 Starward Rogue: files: - /RuntimeData/Save: + "/RuntimeData/Save": tags: - save when: - os: windows - /RuntimeData/inputbindings.dat: + "/RuntimeData/inputbindings.dat": tags: - config when: - os: windows - /RuntimeData/settings.dat: + "/RuntimeData/settings.dat": tags: - config when: - os: windows - '/.config/unity3d/Arcen Games, LLC/Starward Rogue': + "/.config/unity3d/Arcen Games, LLC/Starward Rogue": tags: - config when: @@ -502004,15 +503328,15 @@ Starward Rogue: installDir: Starward Rogue: {} launch: - /StarwardRogue.app: + "/StarwardRogue.app": - when: - os: mac store: steam - /StarwardRogue.exe: + "/StarwardRogue.exe": - when: - os: windows store: steam - /StarwardRogueLinux.x86: + "/StarwardRogueLinux.x86": - when: - bit: 32 os: linux @@ -502023,7 +503347,7 @@ Starway Fleet: installDir: Starway Fleet: {} launch: - /Starway Fleet.exe: + "/Starway Fleet.exe": - when: - os: windows store: steam @@ -502036,7 +503360,7 @@ Starway VR: id: 818400 Starwhal: files: - /.config/unity3d/Breakfall/STARWHAL: + "/.config/unity3d/Breakfall/STARWHAL": tags: - config when: @@ -502044,15 +503368,15 @@ Starwhal: installDir: Starwhal: {} launch: - /Starwhal.app: + "/Starwhal.app": - when: - os: mac store: steam - /Starwhal.exe: + "/Starwhal.exe": - when: - os: windows store: steam - /Starwhal.x86: + "/Starwhal.x86": - when: - os: linux store: steam @@ -502069,12 +503393,12 @@ Stary: installDir: Stary: {} launch: - /Neurosis/Neurosis.exe: + "/Neurosis/Neurosis.exe": - when: - bit: 64 os: windows store: steam - /Stary.exe: + "/Stary.exe": - when: - bit: 64 os: windows @@ -502085,7 +503409,7 @@ Starzine: installDir: Starzine: {} launch: - /Starzine.exe: + "/Starzine.exe": - when: - bit: 64 os: windows @@ -502096,19 +503420,22 @@ Stash: installDir: Stash: {} launch: - /Stash: + "/Stash": - when: - os: linux store: steam - /Stash.app: + "/Stash.app": - when: - os: mac store: steam - /Stash.exe: + "/Stash.exe": - when: - bit: 32 os: windows store: steam + - bit: 64 + os: windows + store: steam steam: id: 466660 Stasis: @@ -502123,22 +503450,22 @@ Stasis: - save when: - os: linux - /Library/Application Support/The Brotherhood/Stasis: + "/Library/Application Support/The Brotherhood/Stasis": tags: - config when: - os: mac - /Library/Application Support/The Brotherhood/Stasis/Savegames: + "/Library/Application Support/The Brotherhood/Stasis/Savegames": tags: - save when: - os: mac - /The Brotherhood/Stasis: + "/The Brotherhood/Stasis": tags: - config when: - os: windows - /The Brotherhood/Stasis/Savegames: + "/The Brotherhood/Stasis/Savegames": tags: - save when: @@ -502152,39 +503479,39 @@ Stasis: installDir: STASIS: {} launch: - /STASIS.exe: + "/STASIS.exe": - when: - os: windows store: steam - /StasisLauncher.app: + "/StasisLauncher.app": - when: - os: mac store: steam - /start: + "/start": - when: - bit: 64 os: linux store: steam steam: id: 380150 -'Stasis: Bone Totem': +"Stasis: Bone Totem": files: - /THE BROTHERHOOD/STASIS2/*.bt: + "/THE BROTHERHOOD/STASIS2/*.bt": tags: - save when: - os: windows - /THE BROTHERHOOD/STASIS2/*.dat: + "/THE BROTHERHOOD/STASIS2/*.dat": tags: - save when: - os: windows - /THE BROTHERHOOD/STASIS2/*.old: + "/THE BROTHERHOOD/STASIS2/*.old": tags: - save when: - os: windows - /THE BROTHERHOOD/STASIS2/configuration.ini: + "/THE BROTHERHOOD/STASIS2/configuration.ini": tags: - config when: @@ -502199,11 +503526,11 @@ Stasis: installDir: stasis2: {} launch: - /STASIS2.app: + "/STASIS2.app": - when: - os: mac store: steam - /STASIS2.exe: + "/STASIS2.exe": - when: - bit: 64 os: windows @@ -502214,33 +503541,33 @@ State of Anarchy: installDir: State of Anarchy: {} launch: - /State of Anarchy.app: + "/State of Anarchy.app": - when: - os: mac store: steam - /State of Anarchy.exe: + "/State of Anarchy.exe": - when: - os: windows store: steam - /State of Anarchy.x86_64: + "/State of Anarchy.x86_64": - when: - os: linux store: steam steam: id: 463210 -'State of Anarchy: Master of Mayhem': +"State of Anarchy: Master of Mayhem": installDir: SOA Master of Mayhem: {} launch: - /Master of Mayhem.exe: + "/Master of Mayhem.exe": - when: - os: windows store: steam - /MasterofMayhem.x86: + "/MasterofMayhem.x86": - when: - os: linux store: steam - /StateofAnarchyMasterofMayhem.app: + "/StateofAnarchyMasterofMayhem.app": - when: - os: mac store: steam @@ -502248,12 +503575,12 @@ State of Anarchy: id: 576130 State of Decay: files: - /Engine/config.pak: + "/Engine/config.pak": tags: - config when: - os: windows - /userdata//241540/local: + "/userdata//241540/local": tags: - save when: @@ -502262,7 +503589,7 @@ State of Decay: installDir: State of Decay: {} launch: - /StateOfDecay.exe: + "/StateOfDecay.exe": - when: - os: windows store: steam @@ -502270,49 +503597,50 @@ State of Decay: id: 241540 State of Decay 2: files: - /Packages/Microsoft.Dayton_8wekyb3d8bbwe/LocalCache/Local/StateOfDecay2/Saved/Config/WindowsNoEditor: + "/Packages/Microsoft.Dayton_8wekyb3d8bbwe/LocalCache/Local/StateOfDecay2/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows store: microsoft - /Packages/Microsoft.Dayton_8wekyb3d8bbwe/SystemAppData/wgs: + "/Packages/Microsoft.Dayton_8wekyb3d8bbwe/SystemAppData/wgs": tags: - save when: - os: windows store: microsoft - /StateOfDecay2/Saved: + "/StateOfDecay2/Saved": tags: - save when: - os: windows - /StateOfDecay2/Saved/Config/WindowsNoEditor: + "/StateOfDecay2/Saved/Config/WindowsNoEditor": tags: - config when: - - store: steam + - os: windows + store: steam id: steamExtra: - 1249770 installDir: StateOfDecay2: {} launch: - /StateOfDecay2/Binaries/Win64/StateOfDecay2-Win64-Shipping.exe: - - arguments: '-steamlaunch' + "/StateOfDecay2/Binaries/Win64/StateOfDecay2-Win64-Shipping.exe": + - arguments: "-steamlaunch" when: - os: windows store: steam steam: id: 495420 -'State of Decay: Year-One Survival Edition': +"State of Decay: Year-One Survival Edition": files: - /Engine/config.pak: + "/Engine/config.pak": tags: - config when: - os: windows - /USER//*.ulsave: + "/USER//*.ulsave": tags: - save when: @@ -502320,7 +503648,7 @@ State of Decay 2: installDir: State of Decay YOSE: {} launch: - /StateOfDecay.exe: + "/StateOfDecay.exe": - when: - os: windows store: steam @@ -502328,7 +503656,7 @@ State of Decay 2: id: 329430 State of Emergency: files: - /SaveGames: + "/SaveGames": tags: - save when: @@ -502337,7 +503665,7 @@ State of Extinction: installDir: State of Extinction: {} launch: - /State of Extinction - Early Access.exe: + "/State of Extinction - Early Access.exe": - when: - os: windows store: steam @@ -502345,43 +503673,40 @@ State of Extinction: id: 411520 State of Mind: files: - /Daedalic Entertainment GmbH/StateOfMind/Saved//Data: + "/Daedalic Entertainment GmbH/StateOfMind/Saved//Data": tags: - save when: - - store: steam - /Daedalic Entertainment GmbH/StateOfMind/Saved//SaveGames: + - os: windows + store: steam + "/Daedalic Entertainment GmbH/StateOfMind/Saved//SaveGames": tags: - save when: - - store: steam - /Daedalic Entertainment GmbH/StateOfMind/Saved/Config/WindowsNoEditor: + - os: windows + store: steam + "/Daedalic Entertainment GmbH/StateOfMind/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /Daedalic Entertainment GmbH/StateOfMind/Saved/Data: + "/Daedalic Entertainment GmbH/StateOfMind/Saved/Data": tags: - save when: - os: windows - /Daedalic Entertainment GmbH/StateOfMind/Saved/SaveGames: + "/Daedalic Entertainment GmbH/StateOfMind/Saved/SaveGames": tags: - save when: - os: windows - /Packages/DaedalicEntertainment.StateofMindPC_9w6n57xt7hhbc/LocalCache/Local/Daedalic Entertainment GmbH/StateOfMind/Saved/SaveGames: + "/Packages/DaedalicEntertainment.StateofMindPC_9w6n57xt7hhbc/LocalCache/Local/Daedalic Entertainment GmbH/StateOfMind/Saved/SaveGames": tags: - save when: - os: windows store: microsoft - /Daedalic Entertainment GmbH/StateOfMind/Saved/*/SaveGames: - tags: - - save - when: - - os: linux - /Daedalic Entertainment GmbH/StateOfMind/Saved/Config/LinuxNoEditor: + "/Daedalic Entertainment GmbH/StateOfMind/Saved/Config/LinuxNoEditor": tags: - config when: @@ -502391,15 +503716,15 @@ State of Mind: installDir: State of Mind: {} launch: - /State Of Mind.app: + "/State Of Mind.app": - when: - os: mac store: steam - /StateOfMind.exe: + "/StateOfMind.exe": - when: - os: windows store: steam - /StateOfMind.sh: + "/StateOfMind.sh": - when: - os: linux store: steam @@ -502412,12 +503737,12 @@ State of Survival: - config State of War: files: - /Savegame: + "/Savegame": tags: - save when: - os: windows - /State of War_1.cfg: + "/State of War_1.cfg": tags: - config when: @@ -502426,11 +503751,11 @@ State of War: State of War and Warmonger Classic 2001: {} steam: id: 748040 -'States, Firms, & Households': +"States, Firms, & Households": installDir: - 'States, Firms, & Households': {} + "States, Firms, & Households": {} launch: - /sf.exe: + "/sf.exe": - when: - os: windows store: steam @@ -502440,18 +503765,18 @@ Static: installDir: Static: {} launch: - /Personal.exe: + "/Personal.exe": - when: - bit: 64 os: windows store: steam steam: id: 1043560 -'Static: Investigator Training': +"Static: Investigator Training": installDir: STATIC Investigator Training: {} launch: - /SeleniteWin32.exe: + "/SeleniteWin32.exe": - when: - store: steam steam: @@ -502460,7 +503785,7 @@ Station 21 - Space Station Simulator: installDir: Station 21 - Space Station Simulator: {} launch: - /Station21.exe: + "/Station21.exe": - when: - os: windows store: steam @@ -502470,7 +503795,7 @@ Station 228: installDir: Station 228: {} launch: - /Station 228.exe: + "/Station 228.exe": - when: - os: windows store: steam @@ -502480,36 +503805,36 @@ Station Commander: installDir: Station Commander: {} launch: - /statc_lin_x86.x86: + "/statc_lin_x86.x86": - when: - os: linux store: steam - /statc_lin_x86_64.x86_64: + "/statc_lin_x86_64.x86_64": - when: - bit: 64 os: linux store: steam - /statc_lin_x86_universal.x86: + "/statc_lin_x86_universal.x86": - when: - os: linux store: steam - /statc_osx_x86.app: + "/statc_osx_x86.app": - when: - os: mac store: steam - /statc_osx_x86_64.app: + "/statc_osx_x86_64.app": - when: - os: mac store: steam - /statc_osx_x86_universal.app: + "/statc_osx_x86_universal.app": - when: - os: mac store: steam - /statc_win_x86.exe: + "/statc_win_x86.exe": - when: - os: windows store: steam - /statc_win_x86_64.exe: + "/statc_win_x86_64.exe": - when: - bit: 64 os: windows @@ -502521,12 +503846,12 @@ Stationary: id: 955820 Stationeers: files: - /setting.xml: + "/setting.xml": tags: - config when: - os: windows - /My Games/Stationeers: + "/My Games/Stationeers": tags: - save when: @@ -502534,7 +503859,7 @@ Stationeers: installDir: Stationeers: {} launch: - /rocketstation.exe: + "/rocketstation.exe": - when: - bit: 64 os: windows @@ -502545,7 +503870,7 @@ Statue Defender: installDir: Statue Defender: {} launch: - /Statue Defender.exe: + "/Statue Defender.exe": - when: - os: windows store: steam @@ -502555,45 +503880,45 @@ Statues: installDir: Statues: {} launch: - /Statues.exe: + "/Statues.exe": - when: - os: windows store: steam steam: id: 413680 -'Status: Insane': +"Status: Insane": installDir: STATUS INSANE: {} launch: - /STATUS INSANE.exe: + "/STATUS INSANE.exe": - when: - os: windows store: steam steam: id: 654430 -StaudSoft's Synthetic World: +"StaudSoft's Synthetic World": installDir: SynWorld: {} launch: - /SynSDK/Editor3D/EditorUti.exe: + "/SynSDK/Editor3D/EditorUti.exe": - when: - os: windows store: steam - workingDir: /SynSDK/Editor3D - /SynSDK/RapidPainter/textureeditor.exe: + workingDir: "/SynSDK/Editor3D" + "/SynSDK/RapidPainter/textureeditor.exe": - when: - os: windows store: steam - workingDir: /SynSDK/RapidPainter - /synworld: + workingDir: "/SynSDK/RapidPainter" + "/synworld": - when: - os: mac store: steam - /synworld.sh: + "/synworld.sh": - when: - os: linux store: steam - /synworldloader.exe: + "/synworldloader.exe": - when: - os: windows store: steam @@ -502603,11 +503928,11 @@ Stax: installDir: STAX: {} launch: - /STAX.exe: + "/STAX.exe": - when: - os: windows store: steam - /STAX_mac.app: + "/STAX_mac.app": - when: - os: mac store: steam @@ -502615,7 +503940,7 @@ Stax: id: 766780 Staxel: files: - /LocalContent: + "/LocalContent": tags: - config - save @@ -502626,39 +503951,39 @@ Staxel: installDir: Staxel: {} launch: - /StaxelCE/Linux_64bit_FNA/StaxelCE: + "/StaxelCE/Linux_64bit_FNA/StaxelCE": - when: - bit: 64 os: linux store: steam - /StaxelCE/MacOSX_64bit_FNA/StaxelCE.app/Contents/MacOS/StaxelCE: - - arguments: '/gldevice:Vulkan' + "/StaxelCE/MacOSX_64bit_FNA/StaxelCE.app/Contents/MacOS/StaxelCE": + - arguments: "/gldevice:Vulkan" when: - os: mac store: steam - /bin/Staxel.ModManager.exe: + "/bin/Staxel.ModManager.exe": - when: - bit: 64 os: windows store: steam - workingDir: /bin - /bin/Staxel.SteamLauncher.exe: + workingDir: "/bin" + "/bin/Staxel.SteamLauncher.exe": - when: - bit: 64 os: windows store: steam - workingDir: /bin + workingDir: "/bin" steam: id: 405710 Stay: installDir: STAY: {} launch: - /STAY.app/Contents/MacOS/STAY: + "/STAY.app/Contents/MacOS/STAY": - when: - os: mac store: steam - /stay.exe: + "/stay.exe": - when: - os: windows store: steam @@ -502668,17 +503993,17 @@ Stay Alight: installDir: Stay Alight: {} launch: - /Stay Alight.exe: + "/Stay Alight.exe": - when: - os: windows store: steam steam: id: 345060 -'Stay Alive: Apocalypse': +"Stay Alive: Apocalypse": installDir: Stay Alive Apocalypse: {} launch: - /Stay Alive Apocalypse.exe: + "/Stay Alive Apocalypse.exe": - when: - bit: 64 os: windows @@ -502689,19 +504014,19 @@ Stay At Home: installDir: Stay At Home: {} launch: - /Stay At Home.exe: + "/Stay At Home.exe": - when: - store: steam steam: id: 1158040 Stay Close: files: - /StayClose/Saved/Config/WindowsNoEditor: + "/StayClose/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /StayClose/Saved/SaveGames: + "/StayClose/Saved/SaveGames": tags: - save when: @@ -502709,18 +504034,18 @@ Stay Close: installDir: Stay Close: {} launch: - /StayClose.exe: + "/StayClose.exe": - when: - bit: 64 os: windows store: steam steam: id: 455120 -'Stay Cool, Kobayashi-San!: A River City Ransom Story': +"Stay Cool, Kobayashi-San!: A River City Ransom Story": installDir: Stay Cool Kobayashi San: {} launch: - '/STAY COOL, KOBAYASHI-SAN!.exe': + "/STAY COOL, KOBAYASHI-SAN!.exe": - when: - os: windows store: steam @@ -502730,7 +504055,7 @@ Stay Dead Evolution: installDir: Stay Dead Evolution: {} launch: - /Stay Dead Evolution.exe: + "/Stay Dead Evolution.exe": - when: - os: windows store: steam @@ -502740,11 +504065,11 @@ Stay Out: installDir: sogame: {} launch: - /game/sogame.exe: + "/game/sogame.exe": - when: - os: windows store: steam - workingDir: /game + workingDir: "/game" steam: id: 1180380 Stay Out of the House: @@ -502753,11 +504078,11 @@ Stay Out of the House: installDir: Stay Out of the House: {} launch: - /Stay out of the House.app: + "/Stay out of the House.app": - when: - os: mac store: steam - /Stay out of the House.exe: + "/Stay out of the House.exe": - when: - os: windows store: steam @@ -502767,30 +504092,30 @@ Stay Safe: installDir: Stay Safe: {} launch: - /StaySafe.exe: + "/StaySafe.exe": - when: - os: windows store: steam steam: id: 818140 -'Stay Safe: Labyrinth of the Mad': +"Stay Safe: Labyrinth of the Mad": files: - /My Games/Stay Safe/*db.dat: + "/My Games/Stay Safe/*db.dat": tags: - save when: - os: windows - /My Games/Stay Safe/llb.dat: + "/My Games/Stay Safe/llb.dat": tags: - save when: - os: windows - /My Games/Stay Safe/quick-save.dat: + "/My Games/Stay Safe/quick-save.dat": tags: - save when: - os: windows - /My Games/Stay Safe/settings.dat: + "/My Games/Stay Safe/settings.dat": tags: - config when: @@ -502798,15 +504123,15 @@ Stay Safe: installDir: Stay Safe Labyrinth of the Mad: {} launch: - /Stay Safe.exe: + "/Stay Safe.exe": - when: - os: windows store: steam - /StaySafe: + "/StaySafe": - when: - os: linux store: steam - /StaySafe.app/Contents/MacOS/StaySafe: + "/StaySafe.app/Contents/MacOS/StaySafe": - when: - os: mac store: steam @@ -502821,7 +504146,7 @@ Stay Woke Etheral Edition: installDir: Stay Woke Etheral Edition: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -502829,7 +504154,7 @@ Stay Woke Etheral Edition: id: 740350 Stay in the Light: files: - /TheLight/Saved: + "/TheLight/Saved": tags: - config - save @@ -502841,33 +504166,33 @@ Stay or Leave / 留离: installDir: Stay_or_Leave: {} launch: - /SOL.exe: + "/SOL.exe": - when: - store: steam steam: id: 910390 -Stay! Stay! Democratic People's Republic of Korea!: +"Stay! Stay! Democratic People's Republic of Korea!": installDir: Stay Stay DPRK: {} launch: - /Stay! Stay! DPRK.app: + "/Stay! Stay! DPRK.app": - when: - os: mac store: steam - /Stay! Stay! DPRK.exe: + "/Stay! Stay! DPRK.exe": - when: - store: steam steam: id: 512060 -Stayin' Alive: +"Stayin' Alive": installDir: StayinAlive: {} launch: - /StayinAlive.app: + "/StayinAlive.app": - when: - os: mac store: steam - /StayinAlive.exe: + "/StayinAlive.exe": - when: - os: windows store: steam @@ -502875,57 +504200,59 @@ Stayin' Alive: id: 584890 Stealth Bastard Deluxe: files: - /.config/StealthBastard: + "/.config/StealthBastard": tags: - config - save when: - os: linux - /StealthBastard: + "/StealthBastard": tags: - config - save when: - os: windows - '/StealthBastard[Steam]': + "/StealthBastard[Steam]": tags: - config - save when: - - store: steam - /Stealth_Bastard_Deluxe: + - os: windows + store: steam + "/Stealth_Bastard_Deluxe": tags: - config - save when: - - store: gog + - os: windows + store: gog gog: id: 1430239690 installDir: StealthBastardDeluxe: {} launch: - /StealthBastardDeluxe.app: + "/StealthBastardDeluxe.app": - when: - os: mac store: steam - '/StealthBastard[Steam].exe': + "/StealthBastard[Steam].exe": - when: - os: windows store: steam - /run.sh: + "/run.sh": - when: - os: linux store: steam steam: id: 209190 -'Stealth Inc. 2: A Game of Clones': +"Stealth Inc. 2: A Game of Clones": files: - /Curve Digital/Stealth Inc. 2: + "/Curve Digital/Stealth Inc. 2": tags: - config when: - os: windows - /Curve Digital/Stealth Inc. 2/savedata: + "/Curve Digital/Stealth Inc. 2/savedata": tags: - save when: @@ -502935,7 +504262,7 @@ Stealth Bastard Deluxe: installDir: Stealth Inc 2: {} launch: - /settings/settings.exe: + "/settings/settings.exe": - when: - store: steam steam: @@ -502944,7 +504271,7 @@ Stealth Labyrinth: installDir: Stealth Labyrinth: {} launch: - /StealthLabyrinth.exe: + "/StealthLabyrinth.exe": - when: - os: windows store: steam @@ -502954,31 +504281,31 @@ Stealthscape: installDir: Stealthscape: {} launch: - /Stealthscape.exe: + "/Stealthscape.exe": - when: - os: windows store: steam steam: id: 670720 -'Steam Bandits: Outpost': +"Steam Bandits: Outpost": installDir: Steam Bandits Outpost: {} launch: - /SteamBanditsOutpost.app: + "/SteamBanditsOutpost.app": - when: - os: mac store: steam - /SteamBanditsOutpost.x86: + "/SteamBanditsOutpost.x86": - when: - bit: 32 os: linux store: steam - /SteamBanditsOutpost.x86_64: + "/SteamBanditsOutpost.x86_64": - when: - bit: 64 os: linux store: steam - /sbo.exe: + "/sbo.exe": - when: - bit: 32 os: windows @@ -502989,7 +504316,7 @@ Steam Hammer: installDir: STEAM HAMMER: {} launch: - /sh_client.exe: + "/sh_client.exe": - when: - os: windows store: steam @@ -502999,19 +504326,19 @@ Steam Heroes: installDir: Steam Heroes: {} launch: - /SteamHeroes(x86).exe: + "/SteamHeroes(x86).exe": - when: - store: steam steam: id: 341160 Steam Marines: files: - /Worthless Bums/Steam Marines: + "/Worthless Bums/Steam Marines": tags: - config when: - os: windows - /Worthless Bums/Steam Marines/save.sav: + "/Worthless Bums/Steam Marines/save.sav": tags: - save when: @@ -503019,15 +504346,15 @@ Steam Marines: installDir: Steam Marines: {} launch: - /Steam Marines.exe: + "/Steam Marines.exe": - when: - os: windows store: steam - /run.sh: + "/run.sh": - when: - os: linux store: steam - /runMac.sh: + "/runMac.sh": - when: - os: mac store: steam @@ -503037,15 +504364,15 @@ Steam Marines 2: installDir: Steam Marines 2: {} launch: - /SM2.app: + "/SM2.app": - when: - os: mac store: steam - /SM2.exe: + "/SM2.exe": - when: - os: windows store: steam - /SM2.x86_64: + "/SM2.x86_64": - when: - os: linux store: steam @@ -503055,7 +504382,7 @@ Steam Prison: installDir: Steam Prison: {} launch: - /BGI.exe: + "/BGI.exe": - when: - store: steam steam: @@ -503064,20 +504391,20 @@ Steam Squad: installDir: Steam Squad: {} launch: - /Steam Squad.app: + "/Steam Squad.app": - when: - os: mac store: steam - /SteamSquad.exe: + "/SteamSquad.exe": - when: - os: windows store: steam - /SteamSquad.x86: + "/SteamSquad.x86": - when: - bit: 32 os: linux store: steam - /SteamSquad.x86_64: + "/SteamSquad.x86_64": - when: - bit: 64 os: linux @@ -503088,11 +504415,11 @@ Steam Tactics: installDir: Steam Tactics: {} launch: - /mac_content/Steam Tactics.app: + "/mac_content/Steam Tactics.app": - when: - os: mac store: steam - /windows_content/Steam Tactics.exe: + "/windows_content/Steam Tactics.exe": - when: - os: windows store: steam @@ -503102,7 +504429,7 @@ Steam and Metal: installDir: Steam and Metal: {} launch: - /Steam and Metal.exe: + "/Steam and Metal.exe": - when: - os: windows store: steam @@ -503111,25 +504438,25 @@ Steam and Metal: Steam and Silk: steam: id: 1030810 -'Steam: Rails to Riches': +"Steam: Rails to Riches": installDir: Steam Rails to Riches: {} launch: - /Steam Rails to Riches/Steam Rails to Riches.exe: + "/Steam Rails to Riches/Steam Rails to Riches.exe": - when: - os: windows store: steam - /Steam_Rails_to_Riches_Linux.x86: + "/Steam_Rails_to_Riches_Linux.x86": - when: - bit: 32 os: linux store: steam - /Steam_Rails_to_Riches_Linux.x86_64: + "/Steam_Rails_to_Riches_Linux.x86_64": - when: - bit: 64 os: linux store: steam - /Steam_Rails_to_Riches_Mac.app/Contents/MacOS/Steam_Rails_to_Riches_Mac: + "/Steam_Rails_to_Riches_Mac.app/Contents/MacOS/Steam_Rails_to_Riches_Mac": - when: - os: mac store: steam @@ -503139,8 +504466,8 @@ SteamCity Chronicles - Rise Of The Rose: installDir: SteamCity Chronicles - Rise Of The Rose: {} launch: - /SteamCity.exe: - - arguments: '-logFile game.log' + "/SteamCity.exe": + - arguments: "-logFile game.log" when: - bit: 64 os: windows @@ -503151,7 +504478,7 @@ SteamDolls - Order Of Chaos: installDir: SteamDolls - Order Of Chaos - Free: {} launch: - /SteamDolls2D.exe: + "/SteamDolls2D.exe": - when: - os: windows store: steam @@ -503169,15 +504496,15 @@ SteamVR Driver for FOVE: installDir: fove: {} launch: - /bin/linux64/SteamLauncher: + "/bin/linux64/SteamLauncher": - when: - os: linux store: steam - /bin/osx32/SteamLauncher: + "/bin/osx32/SteamLauncher": - when: - os: mac store: steam - /bin/win64/SteamLauncher.exe: + "/bin/win64/SteamLauncher.exe": - when: - os: windows store: steam @@ -503193,33 +504520,33 @@ SteamWorld Build: id: 2134770 SteamWorld Dig: files: - /Library/Application Support/SteamWorld Dig: + "/Library/Application Support/SteamWorld Dig": tags: - config - save when: - os: mac - /My Games/SteamWorld Dig/*.cfg: + "/My Games/SteamWorld Dig/*.cfg": tags: - config when: - os: windows - /My Games/SteamWorld Dig/*.xml: + "/My Games/SteamWorld Dig/*.xml": tags: - save when: - os: windows - /My Games/SteamWorld Dig/savegame_*.dat: + "/My Games/SteamWorld Dig/savegame_*.dat": tags: - save when: - os: windows - /My Games/SteamWorld Dig/settings.xml: + "/My Games/SteamWorld Dig/settings.xml": tags: - config when: - os: windows - /SteamWorldDig: + "/SteamWorldDig": tags: - config - save @@ -503233,15 +504560,15 @@ SteamWorld Dig: installDir: SteamWorld Dig: {} launch: - /SteamWorld Dig.app: + "/SteamWorld Dig.app": - when: - os: mac store: steam - /SteamWorldDig: + "/SteamWorldDig": - when: - os: linux store: steam - /SteamWorldDig.exe: + "/SteamWorldDig.exe": - when: - os: windows store: steam @@ -503255,12 +504582,12 @@ SteamWorld Dig 2: - save when: - os: linux - /Library/Application Support/SteamWorld Dig 2/: + "/Library/Application Support/SteamWorld Dig 2/": tags: - save when: - os: mac - /My Games/SteamWorld Dig 2: + "/My Games/SteamWorld Dig 2": tags: - config - save @@ -503274,16 +504601,16 @@ SteamWorld Dig 2: installDir: SteamWorld Dig 2: {} launch: - /Dig2: + "/Dig2": - when: - bit: 64 os: linux store: steam - /Dig2.exe: + "/Dig2.exe": - when: - os: windows store: steam - /SteamWorld Dig 2.app: + "/SteamWorld Dig 2.app": - when: - os: mac store: steam @@ -503291,19 +504618,19 @@ SteamWorld Dig 2: id: 571310 SteamWorld Heist: files: - /Library/Application Support/SteamWorld Heist: + "/Library/Application Support/SteamWorld Heist": tags: - config - save when: - os: mac - /My Games/SteamWorld Heist: + "/My Games/SteamWorld Heist": tags: - config - save when: - os: windows - /SteamWorld Heist: + "/SteamWorld Heist": tags: - config - save @@ -503314,33 +504641,33 @@ SteamWorld Heist: installDir: SteamWorld Heist: {} launch: - /Heist: + "/Heist": - when: - os: linux store: steam - /Heist.exe: + "/Heist.exe": - when: - os: windows store: steam - /SteamWorld Heist.app: + "/SteamWorld Heist.app": - when: - os: mac store: steam steam: id: 322190 -'SteamWorld Quest: Hand of Gilgamech': +"SteamWorld Quest: Hand of Gilgamech": files: - /My Games/SteamWorld Quest//*.cfg: + "/My Games/SteamWorld Quest//*.cfg": tags: - config when: - os: windows - /My Games/SteamWorld Quest//*.xml: + "/My Games/SteamWorld Quest//*.xml": tags: - config when: - os: windows - /My Games/SteamWorld Quest//savegame_*.dat: + "/My Games/SteamWorld Quest//savegame_*.dat": tags: - save when: @@ -503350,30 +504677,30 @@ SteamWorld Heist: installDir: SteamWorld Quest: {} launch: - /Quest: + "/Quest": - when: - bit: 64 os: linux store: steam - /Quest.exe: + "/Quest.exe": - when: - os: windows store: steam - /SteamWorld Quest.app: + "/SteamWorld Quest.app": - when: - os: mac store: steam steam: id: 804010 -'Steamalot: Epoch''s Journey': +"Steamalot: Epoch's Journey": installDir: - Steamalot Epoch's Journey: {} + "Steamalot Epoch's Journey": {} launch: - /Steamalot_Epochs_Journey.app: + "/Steamalot_Epochs_Journey.app": - when: - os: mac store: steam - /Steamalot_Epochs_Journey.exe: + "/Steamalot_Epochs_Journey.exe": - when: - os: windows store: steam @@ -503383,15 +504710,15 @@ Steambirds Alliance: installDir: Steambirds Alliance: {} launch: - /Steambirds.app/Contents/MacOS/Steambirds Alliance: + "/Steambirds.app/Contents/MacOS/Steambirds Alliance": - when: - os: mac store: steam - /Steambirds.exe: + "/Steambirds.exe": - when: - os: windows store: steam - /Steambirds.x86_64: + "/Steambirds.x86_64": - when: - os: linux store: steam @@ -503405,11 +504732,11 @@ Steamburg: installDir: Steamburg: {} launch: - /Steamburg.app: + "/Steamburg.app": - when: - os: mac store: steam - /Steamburg.exe: + "/Steamburg.exe": - when: - os: windows store: steam @@ -503424,15 +504751,15 @@ Steamcraft: installDir: Steamcraft: {} launch: - /SteamCraft.exe: + "/SteamCraft.exe": - when: - os: windows store: steam steam: id: 735660 -'Steamed Hams: The Graphic Adventure': +"Steamed Hams: The Graphic Adventure": files: - /Saved Games/Steamed Hams/acsetup.cfg: + "/Saved Games/Steamed Hams/acsetup.cfg": tags: - config when: @@ -503445,24 +504772,24 @@ Steamliner: Steamliner: {} steam: id: 1209190 -'Steampuff: Phinnegan''s Factory': +"Steampuff: Phinnegan's Factory": installDir: - Steampuff Phinnegan's Factory: {} + "Steampuff Phinnegan's Factory": {} steam: id: 493410 Steampunk Action Battle Simulator: installDir: Steampunk Action Battle Simulator: {} launch: - /sabs.app: + "/sabs.app": - when: - os: mac store: steam - /sabs.exe: + "/sabs.exe": - when: - os: windows store: steam - /sabs.sh: + "/sabs.sh": - when: - os: linux store: steam @@ -503472,11 +504799,11 @@ Steampunk Graveyard: installDir: Steampunk Graveyard: {} launch: - /nw: + "/nw": - when: - os: linux store: steam - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -503486,18 +504813,18 @@ Steampunk Syndicate: installDir: Steampunk Syndicate: {} launch: - /bin/SteampunkSyndicate.exe: + "/bin/SteampunkSyndicate.exe": - when: - os: windows store: steam - workingDir: /bin + workingDir: "/bin" steam: id: 585360 Steampunk Syndicate 2: installDir: Steampunk Syndicate 2: {} launch: - /Bin/Syndicate2.exe: + "/Bin/Syndicate2.exe": - when: - os: windows store: steam @@ -503507,11 +504834,11 @@ Steampunk Tower 2: installDir: Steampunk tower 2: {} launch: - /steampunktower2.app: + "/steampunktower2.app": - when: - os: mac store: steam - /steampunktower2.exe: + "/steampunktower2.exe": - when: - os: windows store: steam @@ -503521,7 +504848,7 @@ Steampunker: installDir: Steampunker: {} launch: - /Steampunker.exe: + "/Steampunker.exe": - when: - store: steam steam: @@ -503530,17 +504857,17 @@ Steamroll: installDir: Steamroll: {} launch: - /LinuxNoEditor/Steamroll/Binaries/Linux/Steamroll-Linux-Shipping: - - arguments: '-opengl4' + "/LinuxNoEditor/Steamroll/Binaries/Linux/Steamroll-Linux-Shipping": + - arguments: "-opengl4" when: - os: linux store: steam - /Steamroll.app: - - arguments: '-opengl' + "/Steamroll.app": + - arguments: "-opengl" when: - os: mac store: steam - /Steamroll.exe: + "/Steamroll.exe": - when: - os: windows store: steam @@ -503555,31 +504882,31 @@ Steamy Sextet: installDir: Steamy Sextet: {} launch: - /Steamy_Sextet-32.exe: + "/Steamy_Sextet-32.exe": - when: - bit: 32 os: windows store: steam - /Steamy_Sextet.app: + "/Steamy_Sextet.app": - when: - os: mac store: steam - /Steamy_Sextet.exe: + "/Steamy_Sextet.exe": - when: - bit: 64 os: windows store: steam - /Steamy_Sextet.sh: + "/Steamy_Sextet.sh": - when: - os: linux store: steam steam: id: 1154110 -'Steel & Steam: Episode 1': +"Steel & Steam: Episode 1": installDir: Steel & Steam Episode 1: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -503589,31 +504916,31 @@ Steel Alcimus: installDir: Steel Alcimus: {} launch: - /Steel_Alcimus.exe: + "/Steel_Alcimus.exe": - when: - os: windows store: steam steam: id: 983990 -'Steel Arena: Robot War': +"Steel Arena: Robot War": installDir: Warrior Robots 3D: {} launch: - /Steel Arena.app/Contents/MacOS/Steel Arena: + "/Steel Arena.app/Contents/MacOS/Steel Arena": - when: - os: mac store: steam - /Steel Arena.exe: + "/Steel Arena.exe": - when: - os: windows store: steam steam: id: 787430 -'Steel Armor: Blaze of War': +"Steel Armor: Blaze of War": installDir: Steel Armor Blaze of War: {} launch: - /starter.exe: + "/starter.exe": - when: - os: windows store: steam @@ -503621,7 +504948,7 @@ Steel Alcimus: id: 286280 Steel Assault: files: - /config.json: + "/config.json": tags: - config when: @@ -503629,15 +504956,15 @@ Steel Assault: installDir: Steel Assault: {} launch: - /Steel Assault.app: + "/Steel Assault.app": - when: - os: mac store: steam - /SteelAssaultCs: + "/SteelAssaultCs": - when: - os: linux store: steam - /SteelAssaultCs.exe: + "/SteelAssaultCs.exe": - when: - os: windows store: steam @@ -503647,7 +504974,7 @@ Steel Circus: installDir: Steel_Circus: {} launch: - /sc.exe: + "/sc.exe": - when: - os: windows store: steam @@ -503662,41 +504989,41 @@ Steel Division 2: id: 1911255510 id: gogExtra: - - 1229028381 - - 2006750224 - - 1664660009 - - 1701786910 - - 1340415250 - - 2004486580 - - 2060522919 - - 1701852763 - - 1343257421 - - 1265646092 - - 1713226472 - - 1283288291 - - 1652541440 - - 1192901304 - 1149134893 - - 1901139519 - - 1871238984 - - 1385484190 - - 1857913249 - - 1647352276 + - 1192901304 - 1201099610 - - 1477740150 + - 1203230635 + - 1229028381 + - 1265646092 + - 1283288291 + - 1295820685 - 1311918010 + - 1340415250 + - 1343257421 + - 1385484190 + - 1427680721 + - 1443081419 + - 1477740150 + - 1499422518 + - 1589182480 + - 1647352276 + - 1652541440 + - 1664660009 + - 1667732483 - 1687785331 - 1697942209 - - 1427680721 - - 2074308559 - - 1295820685 - - 1916363443 - - 1499422518 + - 1701786910 + - 1701852763 + - 1713226472 - 1806984812 - - 1203230635 - - 1667732483 - - 1589182480 - - 1443081419 + - 1857913249 + - 1871238984 + - 1901139519 + - 1916363443 + - 2004486580 + - 2006750224 + - 2060522919 + - 2074308559 steamExtra: - 988170 - 988171 @@ -503733,26 +505060,26 @@ Steel Division 2: installDir: Steel Division 2: {} launch: - /SteelDivision2.exe: + "/SteelDivision2.exe": - when: - bit: 64 os: windows store: steam steam: id: 919640 -'Steel Division: Normandy 44': +"Steel Division: Normandy 44": files: - /Saved Games/EugenSystems/SteelDivision: + "/Saved Games/EugenSystems/SteelDivision": tags: - save when: - os: windows - /Saved Games/EugenSystems/SteelDivision/Option.ini: + "/Saved Games/EugenSystems/SteelDivision/Option.ini": tags: - config when: - os: windows - /userdata//572410/remote: + "/userdata//572410/remote": tags: - save when: @@ -503780,7 +505107,7 @@ Steel Division 2: installDir: Steel Division: {} launch: - /SteelDivision.exe: + "/SteelDivision.exe": - when: - bit: 64 os: windows @@ -503791,7 +505118,7 @@ Steel Dungeon 钢铁地牢: installDir: Steel Dungeon: {} launch: - /SteelDungeon.exe: + "/SteelDungeon.exe": - when: - bit: 64 os: windows @@ -503802,7 +505129,7 @@ Steel Eagle: installDir: Steel Eagle: {} launch: - /Steel_Eagle.exe: + "/Steel_Eagle.exe": - when: - os: windows store: steam @@ -503812,7 +505139,7 @@ Steel Empire: installDir: Steel Empire: {} launch: - /Steel Empire.exe: + "/Steel Empire.exe": - when: - os: windows store: steam @@ -503822,17 +505149,17 @@ Steel Fight: installDir: Steel Fight: {} launch: - /Steel Fight.exe: + "/Steel Fight.exe": - when: - os: windows store: steam steam: id: 994450 -'Steel Fury: Kharkov 1942': +"Steel Fury: Kharkov 1942": installDir: Steel Fury Kharkov 1942: {} launch: - /starter.exe: + "/starter.exe": - when: - os: windows store: steam @@ -503845,7 +505172,7 @@ Steel Knight 1513: installDir: Steel Knight 1513: {} launch: - /STEEL_KNIGHT_1513.exe: + "/STEEL_KNIGHT_1513.exe": - when: - os: windows store: steam @@ -503855,10 +505182,8 @@ Steel Ocean: installDir: Steel Ocean: {} launch: - /Binaries/win32/SeaGame.exe: - - arguments: >- - -log -AgentAddr=10.12.28.216:1002 -Addr=10.12.28.216:4001 -MaxClientNumber=10 -TServerName=\"Cyou Server\" - -server=errorreport.steam.zj.playcool.com/dumplog/zj + "/Binaries/win32/SeaGame.exe": + - arguments: "-log -AgentAddr=10.12.28.216:1002 -Addr=10.12.28.216:4001 -MaxClientNumber=10 -TServerName=\\\"Cyou Server\\\" -server=errorreport.steam.zj.playcool.com/dumplog/zj" when: - os: windows store: steam @@ -503868,7 +505193,7 @@ Steel Punk Ball: installDir: Steel Punk Ball: {} launch: - /Steel Punk Ball.exe: + "/Steel Punk Ball.exe": - when: - os: windows store: steam @@ -503878,11 +505203,11 @@ Steel Rain: installDir: STEELRAIN: {} launch: - /STEELRAIN.exe: + "/STEELRAIN.exe": - when: - os: windows store: steam - /run.sh: + "/run.sh": - when: - os: linux store: steam @@ -503890,12 +505215,12 @@ Steel Rain: id: 387240 Steel Rats: files: - /SteelRats/Saved/Config/WindowsNoEditor: + "/SteelRats/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /SteelRats/Saved/SaveGames: + "/SteelRats/Saved/SaveGames": tags: - save when: @@ -503904,25 +505229,25 @@ Steel Rats: id: 1452983471 id: gogExtra: + - 1263375863 - 1519056121 - 1701970660 - - 1263375863 steamExtra: - - 1021990 - 969100 - 969110 + - 1021990 installDir: Steel Rats: {} launch: - /SteelRats.app/Contents/MacOS/SteelRats: + "/SteelRats.app/Contents/MacOS/SteelRats": - when: - os: mac store: steam - /SteelRats.exe: + "/SteelRats.exe": - when: - os: windows store: steam - /SteelRats.sh: + "/SteelRats.sh": - when: - os: linux store: steam @@ -503935,15 +505260,15 @@ Steel Seraph: installDir: Steel Seraph: {} launch: - /Steel Seraph 180M.app/Contents/MacOS/Steel Seraph: + "/Steel Seraph 180M.app/Contents/MacOS/Steel Seraph": - when: - os: mac store: steam - /Steel Seraph.exe: + "/Steel Seraph.exe": - when: - os: windows store: steam - /Steel Seraph/start.sh: + "/Steel Seraph/start.sh": - when: - os: linux store: steam @@ -503953,21 +505278,21 @@ Steel Storm A.M.M.O.: installDir: steelstorm-ammo: {} launch: - /steelstorm-ammo.exe: + "/steelstorm-ammo.exe": - when: - os: windows store: steam steam: id: 251790 -'Steel Storm: Burning Retribution': +"Steel Storm: Burning Retribution": files: - /.steelstorm: + "/.steelstorm": tags: - config - save when: - os: linux - /Saved Games/steelstorm/gamedata: + "/Saved Games/steelstorm/gamedata": tags: - config - save @@ -503976,31 +505301,31 @@ Steel Storm A.M.M.O.: installDir: steelstorm: {} launch: - /netradiant_win32/radiant.exe: + "/netradiant_win32/radiant.exe": - when: - os: windows store: steam - /steelstorm: + "/steelstorm": - when: - os: linux store: steam - - arguments: '-game dlc2' + - arguments: "-game dlc2" when: - os: linux store: steam - /steelstorm.app: + "/steelstorm.app": - when: - os: mac store: steam - /steelstorm.exe: + "/steelstorm.exe": - when: - os: windows store: steam - - arguments: '-game dlc2' + - arguments: "-game dlc2" when: - os: windows store: steam - /steelstorm64: + "/steelstorm64": - when: - os: linux store: steam @@ -504008,13 +505333,13 @@ Steel Storm A.M.M.O.: id: 96200 Steel Strider: files: - /option: + "/option": tags: - config when: - os: windows - os: linux - /option/sav: + "/option/sav": tags: - save when: @@ -504023,11 +505348,11 @@ Steel Strider: installDir: Steel Strider: {} launch: - /SteelStrider: + "/SteelStrider": - when: - os: linux store: steam - /SteelStrider.exe: + "/SteelStrider.exe": - when: - os: windows store: steam @@ -504037,7 +505362,7 @@ Steel Sword Story: installDir: Steel Sword Story: {} launch: - /player.exe: + "/player.exe": - when: - store: steam steam: @@ -504053,7 +505378,7 @@ Steel Vampire / 鋼鉄のヴァンパイア: installDir: Steel Vampire: {} launch: - /steel_vampire.exe: + "/steel_vampire.exe": - when: - store: steam steam: @@ -504065,15 +505390,15 @@ SteelLIFE: installDir: SteelLIFE: {} launch: - /SteelLIFE.app: + "/SteelLIFE.app": - when: - os: mac store: steam - /SteelLIFE.exe: + "/SteelLIFE.exe": - when: - os: windows store: steam - /SteelLIFE.x86: + "/SteelLIFE.x86": - when: - os: linux store: steam @@ -504081,32 +505406,34 @@ SteelLIFE: id: 439420 Steelrising: files: - /Steelrising: + "/Steelrising": tags: - config - save when: - - store: steam - /SteelrisingGOG: + - os: windows + store: steam + "/SteelrisingGOG": tags: - config - save when: - - store: gog + - os: windows + store: gog gog: id: 1778470094 id: gogExtra: - 1149994065 - - 1859288464 - 1160980912 + - 1859288464 steamExtra: - 2004260 - 2021370 installDir: Steelrising: {} launch: - /Steelrising.exe: + "/Steelrising.exe": - when: - bit: 64 os: windows @@ -504115,17 +505442,17 @@ Steelrising: id: 1283400 Steep: files: - /savegames//3279: + "/savegames//3279": tags: - save when: - store: uplay - /savegames//3280: + "/savegames//3280": tags: - save when: - - store: uplay - /My Games/STEEP/Default/STEEP.ini: + - store: steam + "/My Games/STEEP/Default/STEEP.ini": tags: - config when: @@ -504133,8 +505460,8 @@ Steep: installDir: Steep: {} launch: - /steep.exe: - - arguments: '-uplay_steam_mode' + "/steep.exe": + - arguments: "-uplay_steam_mode" when: - bit: 64 os: windows @@ -504148,7 +505475,7 @@ Stein.world: installDir: stein.world: {} launch: - /stein.world.exe: + "/stein.world.exe": - when: - os: windows store: steam @@ -504156,22 +505483,23 @@ Stein.world: id: 1049660 Steins;Gate: files: - /Nitroplus/STEINS;GATE: + "/Nitroplus/STEINS;GATE": tags: - config - save when: - os: windows - /My Games/mages_steam/STEINS;GATE/eng: + "/My Games/mages_steam/STEINS;GATE/eng": tags: - config - save when: - - store: steam + - os: windows + store: steam installDir: STEINS;GATE: {} launch: - /Launcher.exe: + "/Launcher.exe": - when: - os: windows store: steam @@ -504179,22 +505507,23 @@ Steins;Gate: id: 412830 Steins;Gate 0: files: - /My Games/mages_dmm/STEINS GATE 0: + "/My Games/mages_dmm/STEINS GATE 0": tags: - config - save when: - os: windows - /My Games/mages_steam/STEINS GATE 0: + "/My Games/mages_steam/STEINS GATE 0": tags: - config - save when: - - store: steam + - os: windows + store: steam installDir: STEINS;GATE 0: {} launch: - /boot.bat: + "/boot.bat": - when: - os: windows store: steam @@ -504202,7 +505531,7 @@ Steins;Gate 0: id: 825630 Steins;Gate Elite: files: - /My Games/mages_steam/Steins Gate ELITE: + "/My Games/mages_steam/Steins Gate ELITE": tags: - config - save @@ -504211,15 +505540,15 @@ Steins;Gate Elite: installDir: SG_ELITE: {} launch: - /boot.bat: + "/boot.bat": - when: - os: windows store: steam steam: id: 819030 -'Steins;Gate: Linear Bounded Phenogram': +"Steins;Gate: Linear Bounded Phenogram": files: - /My Games/mages_steam/SG_Phenogram/eng: + "/My Games/mages_steam/SG_Phenogram/eng": tags: - config - save @@ -504228,24 +505557,24 @@ Steins;Gate Elite: installDir: SG_Phenogram: {} launch: - /Launcher.exe: + "/Launcher.exe": - when: - os: windows store: steam steam: id: 930910 -'Steins;Gate: My Darling''s Embrace': +"Steins;Gate: My Darling's Embrace": files: - /My Games/mages_steam/SG_Darling/eng: + "/My Games/mages_steam/SG_Darling/eng": tags: - config - save when: - os: windows installDir: - SG_My Darling's Embrace: {} + "SG_My Darling's Embrace": {} launch: - /Launcher.exe: + "/Launcher.exe": - when: - os: windows store: steam @@ -504253,12 +505582,12 @@ Steins;Gate Elite: id: 970560 Stela: files: - /Stela/Saved/Config/WindowsNoEditor: + "/Stela/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /Stela/Saved/SaveGames: + "/Stela/Saved/SaveGames": tags: - save when: @@ -504266,7 +505595,7 @@ Stela: installDir: Stela: {} launch: - /Stela.exe: + "/Stela.exe": - when: - bit: 64 os: windows @@ -504277,7 +505606,7 @@ Stellar 2D: installDir: Stellar 2D: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -504287,18 +505616,18 @@ Stellar Commanders: installDir: Stellar Commanders: {} launch: - /Stellar/Stellar.exe: + "/Stellar/Stellar.exe": - when: - os: windows store: steam - workingDir: /Stellar + workingDir: "/Stellar" steam: id: 1165400 Stellar Impact: installDir: Stellar Impact: {} launch: - /StellarImpact.exe: + "/StellarImpact.exe": - when: - store: steam steam: @@ -504307,23 +505636,23 @@ Stellar Interface: installDir: Stellar Interface: {} launch: - /StellarInterface.app: + "/StellarInterface.app": - when: - os: mac store: steam - /StellarInterface.exe: + "/StellarInterface.exe": - when: - os: windows store: steam - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" when: - os: windows store: steam - /StellarInterface.sh: + "/StellarInterface.sh": - when: - os: linux store: steam - - arguments: '-force-opengl' + - arguments: "-force-opengl" when: - os: linux store: steam @@ -504333,7 +505662,7 @@ Stellar Monarch: installDir: Stellar Monarch: {} launch: - /StellarMonarch.exe: + "/StellarMonarch.exe": - when: - os: windows store: steam @@ -504341,12 +505670,12 @@ Stellar Monarch: id: 446000 Stellar Overload: files: - /StellarOverloadEA1/Saved/Config/WindowsNoEditor: + "/StellarOverloadEA1/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /StellarOverloadEA1/Saved/Saves/Universes: + "/StellarOverloadEA1/Saved/Saves/Universes": tags: - save when: @@ -504354,30 +505683,30 @@ Stellar Overload: installDir: Stellar Overload: {} launch: - /StellarOverload.exe: + "/StellarOverload.exe": - when: - os: windows store: steam - /StellarOverload.sh: + "/StellarOverload.sh": - when: - os: mac store: steam - when: - os: linux store: steam - workingDir: /StellarOverloadEA5/Binaries/Linux + workingDir: "/StellarOverloadEA5/Binaries/Linux" steam: id: 397150 Stellar Sphere: installDir: Stellar Sphere: {} launch: - /stellar sphere.exe: + "/stellar sphere.exe": - when: - bit: 64 os: windows store: steam - /stellarsphere.app/Contents/MacOS/stellarsphere: + "/stellarsphere.app/Contents/MacOS/stellarsphere": - when: - os: mac store: steam @@ -504387,20 +505716,20 @@ Stellar Stars: installDir: Stellar Stars: {} launch: - /Stellar Stars.app: + "/Stellar Stars.app": - when: - os: mac store: steam - /Stellar Stars.exe: + "/Stellar Stars.exe": - when: - os: windows store: steam - /Stellar Stars.x86: + "/Stellar Stars.x86": - when: - bit: 32 os: linux store: steam - /Stellar Stars.x86_64: + "/Stellar Stars.x86_64": - when: - bit: 64 os: linux @@ -504411,7 +505740,7 @@ Stellar Survivor: installDir: StellarSurvivor: {} launch: - /SurvivalGame.exe: + "/SurvivalGame.exe": - when: - bit: 64 os: windows @@ -504424,16 +505753,16 @@ Stellar Tactics: installDir: Stellar Tactics: {} launch: - /Abyss.sh: + "/Abyss.sh": - when: - bit: 64 os: linux store: steam - /StellarTactics.app: + "/StellarTactics.app": - when: - os: mac store: steam - /StellarTactics.exe: + "/StellarTactics.exe": - arguments: Abyss.stk when: - os: windows @@ -504452,7 +505781,7 @@ StellarHub: installDir: StellarHub: {} launch: - /StellarHub.exe: + "/StellarHub.exe": - when: - os: windows store: steam @@ -504460,25 +505789,25 @@ StellarHub: id: 672860 Stellaris: files: - /Documents/Paradox Interactive/Stellaris: + "/Documents/Paradox Interactive/Stellaris": tags: - config - save when: - os: mac - /Paradox Interactive/Stellaris: + "/Paradox Interactive/Stellaris": tags: - config - save when: - os: windows - /Paradox Interactive/Stellaris GamePass/save games: + "/Paradox Interactive/Stellaris GamePass/save games": tags: - save when: - os: windows store: microsoft - /Paradox Interactive/Stellaris: + "/Paradox Interactive/Stellaris": tags: - config - save @@ -504488,33 +505817,33 @@ Stellaris: id: 1508702879 id: gogExtra: - - 1468493317 - - 1696339098 - 1122806862 - 1209094315 + - 1210745577 - 1253915653 - 1292954230 - 1316465607 - 1319768827 + - 1414149508 - 1420212493 - 1439311238 + - 1468493317 - 1488827509 - 1490429179 + - 1558204482 - 1602382142 - 1619776270 + - 1696339098 - 1790030450 - 1863527056 - 1892453534 - 1978231244 - 1988097366 - 1999794856 + - 2048809075 - 2062279897 - 2106739867 - 2112845659 - - 1414149508 - - 1210745577 - - 2048809075 - - 1558204482 steamExtra: - 447680 - 447681 @@ -504556,8 +505885,10 @@ Stellaris: installDir: Stellaris: {} launch: - /dowser: + "/dowser": - when: + - os: mac + store: steam - os: linux store: steam steam: @@ -504569,7 +505900,7 @@ Stellatum: installDir: Stellatum: {} launch: - /Stellatum.exe: + "/Stellatum.exe": - when: - os: windows store: steam @@ -504579,21 +505910,21 @@ Steno Arcade: installDir: Steno Arcade: {} launch: - /Steno Arcade_Linux.32: + "/Steno Arcade_Linux.32": - when: - bit: 32 os: linux store: steam - /Steno Arcade_Linux.64: + "/Steno Arcade_Linux.64": - when: - bit: 64 os: linux store: steam - /Steno Arcade_OSX32.app: + "/Steno Arcade_OSX32.app": - when: - os: mac store: steam - /StenoArcade_Win32.exe: + "/StenoArcade_Win32.exe": - when: - os: windows store: steam @@ -504602,10 +505933,10 @@ Steno Arcade: Step by Step: steam: id: 913460 -'Step sisters: Episode 1': +"Step sisters: Episode 1": steam: id: 912860 -'Step sisters: Episode 2': +"Step sisters: Episode 2": steam: id: 915880 StepMania: @@ -504615,7 +505946,7 @@ StepX: installDir: StepX: {} launch: - /StepX.exe: + "/StepX.exe": - when: - os: windows store: steam @@ -504625,51 +505956,54 @@ Stepbystep: installDir: stepbystep: {} launch: - /stepbystep: + "/stepbystep": - when: - os: linux store: steam - /stepbystep.exe: + "/stepbystep.exe": - when: - os: windows store: steam steam: id: 972940 -Stephen's Sausage Roll: +"Stephen's Sausage Roll": files: - /.config/increpare games/Sausage: + "/.config/increpare games/Sausage": tags: - save when: - os: linux - /.config/unity3d/increpare games/Sausage: + "/.config/unity3d/increpare games/Sausage": tags: - config when: - os: linux - /AppData/LocalLow/increpare games/Sausage: + "/AppData/LocalLow/increpare games/Sausage": tags: - save when: - os: windows installDir: - Stephen's Sausage Roll: {} + "Stephen's Sausage Roll": {} launch: - /Sausage.app/Contents/MacOS/Sausage: + "/Sausage.app/Contents/MacOS/Sausage": - when: - os: mac store: steam - /Sausage.exe: + "/Sausage.exe": - when: - bit: 32 os: windows store: steam - /Sausage.x86: + - bit: 64 + os: windows + store: steam + "/Sausage.x86": - when: - bit: 32 os: linux store: steam - /Sausage.x86_64: + "/Sausage.x86_64": - when: - bit: 64 os: linux @@ -504682,7 +506016,7 @@ Stephen's Sausage Roll: id: 353540 Steredenn: files: - /AppData/LocalLow/Pixelnest Studio/Steredenn/steredennou.sav: + "/AppData/LocalLow/Pixelnest Studio/Steredenn/steredennou.sav": tags: - save when: @@ -504690,20 +506024,20 @@ Steredenn: installDir: Steredenn: {} launch: - /Steredenn.app: + "/Steredenn.app": - when: - os: mac store: steam - /Steredenn.exe: + "/Steredenn.exe": - when: - os: windows store: steam - /Steredenn.x86: + "/Steredenn.x86": - when: - bit: 32 os: linux store: steam - /Steredenn.x86_64: + "/Steredenn.x86_64": - when: - bit: 64 os: linux @@ -504718,20 +506052,20 @@ Stereo Aereo: installDir: Stereo Aereo: {} launch: - /Stereo Aereo.app/Contents/MacOS/Stereo Aereo: + "/Stereo Aereo.app/Contents/MacOS/Stereo Aereo": - when: - os: mac store: steam - /Stereo Aereo.exe: + "/Stereo Aereo.exe": - when: - os: windows store: steam - /Stereo Aereo.x86: + "/Stereo Aereo.x86": - when: - bit: 32 os: linux store: steam - /Stereo Aereo.x86_64: + "/Stereo Aereo.x86_64": - when: - bit: 64 os: linux @@ -504742,11 +506076,11 @@ Stereo Boy: installDir: Stereo Boy: {} launch: - /StereoBoy.app: + "/StereoBoy.app": - when: - os: mac store: steam - /StereoBoy.exe: + "/StereoBoy.exe": - when: - bit: 64 os: windows @@ -504757,44 +506091,44 @@ Stern Pinball Arcade: installDir: Stern Pinball Arcade: {} launch: - /PBAConfig.exe: + "/PBAConfig.exe": - when: - os: windows store: steam - /SternPinballArcade.exe: + "/SternPinballArcade.exe": - when: - os: windows store: steam steam: id: 564010 -Steve's Pub - Soda on Tap: +"Steve's Pub - Soda on Tap": installDir: StevesPub: {} steam: id: 688940 -'Steven Universe: Save the Light': +"Steven Universe: Save the Light": installDir: Steven Universe Save the Light: {} launch: - /Save the Light.app/Contents/MacOS/Save the Light: + "/Save the Light.app/Contents/MacOS/Save the Light": - when: - os: mac store: steam - /Save the Light.exe: + "/Save the Light.exe": - when: - os: windows store: steam steam: id: 821890 -'Steven Universe: Unleash the Light': +"Steven Universe: Unleash the Light": installDir: Steven Universe Unleash the Light: {} launch: - /Unleash the Light.app/Contents/MacOS/Unleash the Light: + "/Unleash the Light.app/Contents/MacOS/Unleash the Light": - when: - os: mac store: steam - /utl.exe: + "/utl.exe": - when: - os: windows store: steam @@ -504804,45 +506138,45 @@ Steven the Sperm: installDir: Steven the Sperm: {} launch: - /Steven the Sperm.app: + "/Steven the Sperm.app": - when: - os: mac store: steam - /Steven the Sperm.exe: + "/Steven the Sperm.exe": - when: - os: windows store: steam steam: id: 928350 -'Stick ''Em Up 2: Paper Adventures': +"Stick 'Em Up 2: Paper Adventures": installDir: - Stick 'Em Up 2: {} + "Stick 'Em Up 2": {} launch: - /SEU2.exe: + "/SEU2.exe": - when: - os: windows store: steam - /SEU2.x86: + "/SEU2.x86": - when: - bit: 32 os: linux store: steam - /SEU2.x86_64: + "/SEU2.x86_64": - when: - bit: 64 os: linux store: steam - /Stick 'Em Up 2.app: + "/Stick 'Em Up 2.app": - when: - os: mac store: steam steam: id: 282780 -'Stick Adventures: Wizard Madness: Chapter 1': +"Stick Adventures: Wizard Madness: Chapter 1": installDir: Stick Adventures Wizard Madness Chapter 1: {} launch: - /RUN_GAME.exe: + "/RUN_GAME.exe": - when: - os: windows store: steam @@ -504852,7 +506186,7 @@ Stick Arena: installDir: Stick Arena: {} launch: - /StickArena.exe: + "/StickArena.exe": - when: - os: windows store: steam @@ -504862,7 +506196,7 @@ Stick Em Up: installDir: Stick em Up: {} launch: - /Stick Em Up!.exe: + "/Stick Em Up!.exe": - when: - store: steam steam: @@ -504871,26 +506205,26 @@ Stick Engine: installDir: STICK ENGINE: {} launch: - /stickengine.exe: + "/stickengine.exe": - when: - os: windows store: steam steam: id: 654740 -'Stick Fight: The Game': +"Stick Fight: The Game": installDir: StickFightTheGame: {} launch: - /StickFight.app/Contents/MacOS/StickFight: + "/StickFight.app/Contents/MacOS/StickFight": - when: - os: mac store: steam - /StickFight.exe: + "/StickFight.exe": - when: - os: windows store: steam registry: - 'HKEY_CURRENT_USER/Software/Landfall West/Stick Fight: The Game': + "HKEY_CURRENT_USER/Software/Landfall West/Stick Fight: The Game": tags: - config steam: @@ -504904,11 +506238,11 @@ Stick It to the Man!: installDir: StickItToTheMan: {} launch: - /StickIt.exe: + "/StickIt.exe": - when: - os: windows store: steam - /StickItToTheMan.app: + "/StickItToTheMan.app": - when: - bit: 32 os: mac @@ -504924,22 +506258,22 @@ Stick Nightmare: installDir: Stick Nightmare: {} launch: - /SNLinux32b: + "/SNLinux32b": - when: - bit: 32 os: linux store: steam - /SNLinux64b: + "/SNLinux64b": - when: - bit: 64 os: linux store: steam - /SNWin32b.exe: + "/SNWin32b.exe": - when: - bit: 32 os: windows store: steam - /SNWin64b.exe: + "/SNWin64b.exe": - when: - bit: 64 os: windows @@ -504950,16 +506284,16 @@ Stick Ninja: installDir: Stick Ninja: {} launch: - /MyProject2.exe: + "/MyProject2.exe": - when: - bit: 64 os: windows store: steam steam: id: 1076060 -'Stick RPG 2: Director''s Cut': +"Stick RPG 2: Director's Cut": files: - /Roaming/Macromedia/Flash Player/#Shared Objects: + "/Roaming/Macromedia/Flash Player/#Shared Objects": tags: - save when: @@ -504967,11 +506301,11 @@ Stick Ninja: installDir: Stick RPG 2: {} launch: - /Stick RPG 2 Director's Cut.app: + "/Stick RPG 2 Director's Cut.app": - when: - os: mac store: steam - /Stick RPG 2 Director's Cut.exe: + "/Stick RPG 2 Director's Cut.exe": - when: - os: windows store: steam @@ -504984,17 +506318,17 @@ Stick Spartans: installDir: Stick Spartans: {} launch: - /Stick Spartans.exe: + "/Stick Spartans.exe": - when: - os: windows store: steam steam: id: 868040 -'Stick War: Castle Defence': +"Stick War: Castle Defence": installDir: Stick War Castle Defence: {} launch: - /StickWar.exe: + "/StickWar.exe": - when: - os: windows store: steam @@ -505007,7 +506341,7 @@ Stick to the end: installDir: Stick_to_the_end: {} launch: - /stte.exe: + "/stte.exe": - when: - os: windows store: steam @@ -505022,7 +506356,7 @@ Sticker Craft: installDir: Sticker Craft: {} launch: - /StickerCraft_Steam.exe: + "/StickerCraft_Steam.exe": - when: - os: windows store: steam @@ -505038,7 +506372,7 @@ Stickman Annihilation 2: installDir: Stickman Annihilation 2: {} launch: - /Stickman Annihilation 2.exe: + "/Stickman Annihilation 2.exe": - when: - os: windows store: steam @@ -505057,15 +506391,15 @@ Stickman Destruction 2: installDir: Stickman Destruction 2: {} launch: - /StickmanDestruction2.Linux/StickmanDestruction2.x86: + "/StickmanDestruction2.Linux/StickmanDestruction2.x86": - when: - os: linux store: steam - /StickmanDestruction2.app/Contents/MacOS/StickmanDestruction2: + "/StickmanDestruction2.app/Contents/MacOS/StickmanDestruction2": - when: - os: mac store: steam - /win32/StickmanDestruction2.exe: + "/win32/StickmanDestruction2.exe": - when: - os: windows store: steam @@ -505075,11 +506409,11 @@ Stickman Fighting: installDir: Stickman Fighting: {} launch: - /Stickman Fighting.app/Contents/MacOS/Stickman Fighting: + "/Stickman Fighting.app/Contents/MacOS/Stickman Fighting": - when: - os: mac store: steam - /Stickman Fighting.exe: + "/Stickman Fighting.exe": - when: - os: windows store: steam @@ -505089,25 +506423,25 @@ Stickman Jetpack: installDir: Stickman Jetpack: {} launch: - /StickmanJetpack.Linux/StickmanJetpack.x86: + "/StickmanJetpack.Linux/StickmanJetpack.x86": - when: - os: linux store: steam - /StickmanJetpack.app/Contents/MacOS/StickmanJetpack: + "/StickmanJetpack.app/Contents/MacOS/StickmanJetpack": - when: - os: mac store: steam - /win32/StickmanJetpack.exe: + "/win32/StickmanJetpack.exe": - when: - os: windows store: steam steam: id: 764490 -'Stickman Maverick : Bad Boys Killer': +"Stickman Maverick : Bad Boys Killer": installDir: stickmanMaverickBBK: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -505120,7 +506454,7 @@ Stickman Racer Road Draw 2: installDir: Stickman Racer Road Draw 2 Heroes: {} launch: - /StickRoadDraw.exe: + "/StickRoadDraw.exe": - when: - store: steam steam: @@ -505138,7 +506472,7 @@ Stickman go: installDir: Stickman go: {} launch: - /Stickman go.exe: + "/Stickman go.exe": - when: - os: windows store: steam @@ -505148,7 +506482,7 @@ Stickman in the portal: installDir: Stickman in the portal: {} launch: - /Stickman In The Portal.exe: + "/Stickman In The Portal.exe": - when: - os: windows store: steam @@ -505157,11 +506491,11 @@ Stickman in the portal: Stickman.io: steam: id: 841420 -'Stickman: Fidget Spinner Rush': +"Stickman: Fidget Spinner Rush": installDir: Stickman_Fidget_Spinner_Rush: {} launch: - /stickman-fsr.exe: + "/stickman-fsr.exe": - when: - os: windows store: steam @@ -505174,7 +506508,7 @@ Sticks And Bones: installDir: Sticks And Bones: {} launch: - /Sticks And Bones.exe: + "/Sticks And Bones.exe": - when: - os: windows store: steam @@ -505184,7 +506518,7 @@ Sticky Dildo Man: installDir: Sticky Dildo Man: {} launch: - /Sticky Dildo Man.exe: + "/Sticky Dildo Man.exe": - when: - os: windows store: steam @@ -505194,21 +506528,21 @@ Sticky Paws: installDir: Sticky Paws: {} launch: - /Sticky Paws.exe: + "/Sticky Paws.exe": - when: - bit: 64 os: windows store: steam - /Sticky Paws32.exe: + "/Sticky Paws32.exe": - when: - bit: 32 os: windows store: steam - /StickyPaws.app: + "/StickyPaws.app": - when: - os: mac store: steam - /Sticky_Paws_DX: + "/Sticky_Paws_DX": - when: - os: linux store: steam @@ -505218,11 +506552,11 @@ StickyBots: installDir: StickyBots: {} launch: - /blank1/Binaries/Mac/blank1-Mac-Shipping.app: + "/blank1/Binaries/Mac/blank1-Mac-Shipping.app": - when: - os: mac store: steam - /blank1/Binaries/Win64/blank1-Win64-Shipping.exe: + "/blank1/Binaries/Win64/blank1-Win64-Shipping.exe": - when: - os: windows store: steam @@ -505232,15 +506566,15 @@ Stifled: installDir: Stifled: {} launch: - /Stifled.app: + "/Stifled.app": - when: - os: mac store: steam - /Stifled.exe: + "/Stifled.exe": - when: - os: windows store: steam - - arguments: '-NoVR' + - arguments: "-NoVR" when: - os: windows store: steam @@ -505250,7 +506584,7 @@ Stigfinnare: installDir: Stigfinnare: {} launch: - /Stigfinnare.exe: + "/Stigfinnare.exe": - when: - os: windows store: steam @@ -505263,7 +506597,7 @@ Stigmatized Property: installDir: Stigmatized Property 事故物件: {} launch: - /Stigmatized Property.exe: + "/Stigmatized Property.exe": - when: - store: steam steam: @@ -505272,11 +506606,11 @@ Stikbold! A Dodgeball Adventure: installDir: Stikbold: {} launch: - /Stikbold.app: + "/Stikbold.app": - when: - os: mac store: steam - /stikbold.exe: + "/stikbold.exe": - when: - os: windows store: steam @@ -505286,7 +506620,7 @@ Stikir: installDir: stikir: {} launch: - /stikir.exe: + "/stikir.exe": - when: - os: windows store: steam @@ -505300,7 +506634,7 @@ Still Dark At Dawn: id: 717230 Still Life: files: - /Save: + "/Save": tags: - save when: @@ -505310,14 +506644,14 @@ Still Life: installDir: Still Life: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: id: 46480 Still Life 2: files: - /EXTDataSave: + "/EXTDataSave": tags: - config - save @@ -505328,7 +506662,7 @@ Still Life 2: installDir: Still life 2: {} launch: - /SL2.exe: + "/SL2.exe": - when: - store: steam steam: @@ -505337,7 +506671,7 @@ Still Not Dead: installDir: Still Not Dead: {} launch: - /SND.exe: + "/SND.exe": - when: - os: windows store: steam @@ -505345,7 +506679,7 @@ Still Not Dead: id: 337290 Still There: files: - /AppData/LocalLow/GhostShark Games/Still There/Savegame: + "/AppData/LocalLow/GhostShark Games/Still There/Savegame": tags: - save when: @@ -505355,12 +506689,12 @@ Still There: installDir: Still There: {} launch: - /Still There.exe: + "/Still There.exe": - when: - bit: 64 os: windows store: steam - /StillThere.app: + "/StillThere.app": - when: - os: mac store: steam @@ -505374,7 +506708,7 @@ Stilt Fella: installDir: Stilt Fella: {} launch: - /Stilt Fella.exe: + "/Stilt Fella.exe": - when: - os: windows store: steam @@ -505391,7 +506725,7 @@ Stirring Abyss: installDir: Stirring Abyss: {} launch: - /Launcher.exe: + "/Launcher.exe": - when: - store: steam steam: @@ -505403,7 +506737,7 @@ Stitched: installDir: Stitched: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -505411,12 +506745,12 @@ Stitched: id: 727340 Stock Car Extreme: files: - /Config.ini: + "/Config.ini": tags: - config when: - os: windows - /UserData//.plr: + "/UserData//.plr": tags: - save when: @@ -505424,7 +506758,7 @@ Stock Car Extreme: installDir: Stock Car Extreme: {} launch: - /GSC.exe: + "/GSC.exe": - when: - store: steam steam: @@ -505433,7 +506767,7 @@ StockUp: installDir: StockUp: {} launch: - /StockUp.exe: + "/StockUp.exe": - when: - os: windows store: steam @@ -505443,20 +506777,20 @@ Stockpile: installDir: Stockpile: {} launch: - /sxp.app: + "/sxp.app": - when: - os: mac store: steam - /sxp.exe: + "/sxp.exe": - when: - os: windows store: steam - /sxp.x86: + "/sxp.x86": - when: - bit: 32 os: linux store: steam - /sxp.x86_64: + "/sxp.x86_64": - when: - bit: 64 os: linux @@ -505473,12 +506807,12 @@ Stoire: id: 622530 Stolen: files: - /StolenRetail.ini: + "/StolenRetail.ini": tags: - config when: - os: windows - /save.dat: + "/save.dat": tags: - save when: @@ -505495,7 +506829,7 @@ Stone Age Wars: installDir: Stone Age Wars: {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: @@ -505504,7 +506838,7 @@ Stone Defence: installDir: StoneDefence_Steam32bit: {} launch: - /StoneDefence.exe: + "/StoneDefence.exe": - when: - os: windows store: steam @@ -505514,7 +506848,7 @@ Stone Flower: installDir: Stone Flower: {} launch: - /StoneFlower.exe: + "/StoneFlower.exe": - when: - os: windows store: steam @@ -505524,12 +506858,12 @@ Stone Rage: installDir: StoneRage: {} launch: - /StoneRageClient.exe: + "/StoneRageClient.exe": - when: - bit: 64 os: windows store: steam - - arguments: '-d3d11' + - arguments: "-d3d11" when: - bit: 64 os: windows @@ -505540,16 +506874,16 @@ Stone Story RPG: installDir: Stone Story RPG: {} launch: - /Stone Story.exe: + "/Stone Story.exe": - when: - os: windows store: steam - /stone_story_linux.x86_64: + "/stone_story_linux.x86_64": - when: - bit: 64 os: linux store: steam - /stone_story_osx.app: + "/stone_story_osx.app": - when: - os: mac store: steam @@ -505559,7 +506893,7 @@ Stone Tales: installDir: Stone Tales: {} launch: - /StoneTales.exe: + "/StoneTales.exe": - when: - bit: 64 os: windows @@ -505570,7 +506904,7 @@ Stone in Galaxy: installDir: Stone In Galaxy: {} launch: - /nw.exe: + "/nw.exe": - when: - store: steam steam: @@ -505582,31 +506916,31 @@ StoneDeep: installDir: StoneDeep: {} launch: - /StoneDeep.exe: + "/StoneDeep.exe": - when: - bit: 64 os: windows store: steam steam: id: 1094760 -'StoneTide: Age of Pirates': +"StoneTide: Age of Pirates": installDir: Stonetide_content: {} launch: - /StoneTide Age of Pirates.exe: + "/StoneTide Age of Pirates.exe": - when: - store: steam steam: id: 1039350 -'Stonebond: The Gargoyle''s Domain': +"Stonebond: The Gargoyle's Domain": installDir: Stonebond: {} launch: - /Stonebond.app: + "/Stonebond.app": - when: - os: mac store: steam - /Stonebond.exe: + "/Stonebond.exe": - when: - os: windows store: steam @@ -505614,12 +506948,12 @@ StoneDeep: id: 524240 Stonefly: files: - /Acorn/Saved/Config: + "/Acorn/Saved/Config": tags: - config when: - os: windows - /Acorn/Saved/SaveGames: + "/Acorn/Saved/SaveGames": tags: - save when: @@ -505629,7 +506963,7 @@ Stonefly: installDir: Stonefly: {} launch: - /Stonefly.exe: + "/Stonefly.exe": - when: - os: windows store: steam @@ -505639,11 +506973,11 @@ Stonehearth: installDir: Stonehearth: {} launch: - /Stonehearth.app/Contents/MacOS/Stonehearth: + "/Stonehearth.app/Contents/MacOS/Stonehearth": - when: - os: mac store: steam - /Stonehearth.exe: + "/Stonehearth.exe": - when: - os: windows store: steam @@ -505656,12 +506990,12 @@ Stonehenge VR: id: 457650 Stonekeep: files: - /CONFIG: + "/CONFIG": tags: - config when: - os: dos - /SAVEGAME: + "/SAVEGAME": tags: - save when: @@ -505671,17 +507005,17 @@ Stonekeep: installDir: Stonekeep: {} launch: - /DOSBox/dosbox.app/Contents/MacOS/DOSBox: - - arguments: '-conf \"./dosboxStonekeep.conf\" -conf \"./dosboxStonekeep_single.conf\" -noconsole' + "/DOSBox/dosbox.app/Contents/MacOS/DOSBox": + - arguments: "-conf \\\"./dosboxStonekeep.conf\\\" -conf \\\"./dosboxStonekeep_single.conf\\\" -noconsole" when: - os: mac store: steam - /Launch Stonekeep.bat: + "/Launch Stonekeep.bat": - when: - os: windows store: steam - /dosbox/dosbox: - - arguments: '-conf \"./dosboxStonekeep.conf\" -conf \"./dosboxStonekeep_single.conf\" -noconsole' + "/dosbox/dosbox": + - arguments: "-conf \\\"./dosboxStonekeep.conf\\\" -conf \\\"./dosboxStonekeep_single.conf\\\" -noconsole" when: - os: linux store: steam @@ -505691,7 +507025,7 @@ Stonerid: installDir: Stonerid: {} launch: - /StoneRid.exe: + "/StoneRid.exe": - when: - store: steam steam: @@ -505700,7 +507034,7 @@ Stones of Rome: installDir: Stones of Rome: {} launch: - /Stones of Rome.exe: + "/Stones of Rome.exe": - when: - os: windows store: steam @@ -505710,11 +507044,11 @@ Stones of Solace: installDir: Stones Of Solace: {} launch: - /Stones of Solace.app: + "/Stones of Solace.app": - when: - os: mac store: steam - /Stones of Solace.exe: + "/Stones of Solace.exe": - when: - bit: 64 os: windows @@ -505725,20 +507059,20 @@ Stones of Sorrow: installDir: Stones of Sorrow: {} launch: - /StonesofSorrow.app: + "/StonesofSorrow.app": - when: - os: mac store: steam - /StonesofSorrow.exe: + "/StonesofSorrow.exe": - when: - os: windows store: steam - /StonesofSorrow.x86: + "/StonesofSorrow.x86": - when: - bit: 32 os: linux store: steam - /StonesofSorrow.x86_64: + "/StonesofSorrow.x86_64": - when: - bit: 64 os: linux @@ -505749,12 +507083,12 @@ Stones of Yalmrith: installDir: SOY: {} launch: - /SOY.exe: + "/SOY.exe": - when: - bit: 64 os: windows store: steam - /SOY.sh: + "/SOY.sh": - when: - os: linux store: steam @@ -505762,7 +507096,7 @@ Stones of Yalmrith: id: 867080 Stoneshard: files: - /.config/StoneShard: + "/.config/StoneShard": tags: - config - save @@ -505773,11 +507107,11 @@ Stoneshard: installDir: Stoneshard: {} launch: - /StoneShard: + "/StoneShard": - when: - os: linux store: steam - /StoneShard.exe: + "/StoneShard.exe": - when: - os: windows store: steam @@ -505787,7 +507121,7 @@ Stonetowers: installDir: Stonetowers: {} launch: - /Stonetowers.exe: + "/Stonetowers.exe": - when: - bit: 64 os: windows @@ -505798,7 +507132,7 @@ Stonewall Penitentiary: installDir: Stonewall Penitentiary: {} launch: - /Stonewall Penitentiary Steam.exe: + "/Stonewall Penitentiary Steam.exe": - when: - os: windows store: steam @@ -505808,7 +507142,7 @@ Stonies: installDir: Stonies: {} launch: - /Stonies.exe: + "/Stonies.exe": - when: - os: windows store: steam @@ -505818,7 +507152,7 @@ Stoorm: installDir: STOORM - Yellow Edition: {} launch: - /STOORM-Game.exe: + "/STOORM-Game.exe": - when: - os: windows store: steam @@ -505828,7 +507162,7 @@ Stop Cats: installDir: Stop Cats: {} launch: - /StopCats.exe: + "/StopCats.exe": - when: - os: windows store: steam @@ -505838,15 +507172,15 @@ Stop Online - Battle of Words: installDir: Stop Online - Battle of Words: {} launch: - /Stop.app: + "/Stop.app": - when: - os: mac store: steam - /Stop.exe: + "/Stop.exe": - when: - os: windows store: steam - /Stop.x86: + "/Stop.x86": - when: - os: linux store: steam @@ -505856,7 +507190,7 @@ Stop Santa - Tower Defense: installDir: Stop Santa: {} launch: - /StopSanta-TowerDefense.exe: + "/StopSanta-TowerDefense.exe": - when: - os: windows store: steam @@ -505876,7 +507210,7 @@ Stop! Dictator: installDir: StopDictator: {} launch: - /stopdictator.exe: + "/stopdictator.exe": - when: - os: windows store: steam @@ -505886,11 +507220,11 @@ StopTime Drive: installDir: StopTime Drive: {} launch: - /StopTime Drive.exe: + "/StopTime Drive.exe": - when: - os: windows store: steam - /run.sh: + "/run.sh": - when: - os: linux store: steam @@ -505900,7 +507234,7 @@ Stophat: installDir: Stophat: {} launch: - /Stophat.exe: + "/Stophat.exe": - when: - os: windows store: steam @@ -505910,11 +507244,11 @@ Stoppa!: installDir: Stoppa!: {} launch: - /Stoppa!: + "/Stoppa!": - when: - os: linux store: steam - /Stoppa!.exe: + "/Stoppa!.exe": - when: - os: windows store: steam @@ -505924,7 +507258,7 @@ Storage Inc 2: installDir: StorageInc2: {} launch: - /StorageInc2.exe: + "/StorageInc2.exe": - when: - os: windows store: steam @@ -505937,25 +507271,25 @@ Store Crasher: installDir: Store Crasher: {} launch: - /Store Crasher.exe: + "/Store Crasher.exe": - when: - os: windows store: steam steam: id: 886300 -'Store Manager: Cellular Edition': +"Store Manager: Cellular Edition": installDir: Store Manager Cellular Edition: {} launch: - /StoreManagerLin.x86: + "/StoreManagerLin.x86": - when: - os: linux store: steam - /StoreManagerx64.app: + "/StoreManagerx64.app": - when: - os: mac store: steam - /StoreManagerx64.exe: + "/StoreManagerx64.exe": - when: - os: windows store: steam @@ -505968,11 +507302,11 @@ Stories In Stone: installDir: Stories In Stone: {} launch: - /Game.app: + "/Game.app": - when: - os: mac store: steam - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -505980,7 +507314,7 @@ Stories In Stone: id: 908000 Stories Untold: files: - /AppData/LocalLow/No Code: + "/AppData/LocalLow/No Code": tags: - save when: @@ -505995,24 +507329,27 @@ Stories Untold: installDir: Stories Untold: {} launch: - /Stories Untold 1.3 OSX 64 Steam/Stories Untold OSX 64 Steam.app: + "/Stories Untold 1.3 OSX 64 Steam/Stories Untold OSX 64 Steam.app": - when: - os: mac store: steam - /Stories Untold.exe: + "/Stories Untold.exe": - when: - bit: 32 os: windows store: steam + - bit: 64 + os: windows + store: steam registry: HKEY_CURRENT_USER/Software/No Code/Stories Untold: tags: - config steam: id: 558420 -'Stories of Bethem: Full Moon': +"Stories of Bethem: Full Moon": files: - /StoriesOfBethemFullMoon/saved: + "/StoriesOfBethemFullMoon/saved": tags: - save when: @@ -506020,28 +507357,28 @@ Stories Untold: installDir: Stories of Bethem Full Moon Edition: {} launch: - /StoriesOfBethemFullMoon: + "/StoriesOfBethemFullMoon": - when: - os: linux store: steam - /StoriesOfBethemFullMoon.app/Contents/MacOS/StoriesOfBethemFullMoon: + "/StoriesOfBethemFullMoon.app/Contents/MacOS/StoriesOfBethemFullMoon": - when: - os: mac store: steam - /StoriesOfBethemFullMoon.exe: + "/StoriesOfBethemFullMoon.exe": - when: - os: windows store: steam steam: id: 412270 -'Stories: The Path of Destinies': +"Stories: The Path of Destinies": files: - /Stories/Saved/Config/WindowsNoEditor: + "/Stories/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /Stories/Saved/SaveGames: + "/Stories/Saved/SaveGames": tags: - save when: @@ -506051,7 +507388,7 @@ Stories Untold: installDir: Stories Path of Destinies: {} launch: - /Stories/Binaries/Win64/Stories.exe: + "/Stories/Binaries/Win64/Stories.exe": - when: - os: windows store: steam @@ -506059,12 +507396,12 @@ Stories Untold: id: 439190 Storm: files: - /Storm Saves/Storm.sav: + "/Storm Saves/Storm.sav": tags: - save when: - os: windows - /Storm Saves/general.cfg: + "/Storm Saves/general.cfg": tags: - config when: @@ -506072,21 +507409,21 @@ Storm: installDir: Storm: {} launch: - /StormExe/DetectVideo.exe: + "/StormExe/DetectVideo.exe": - when: - store: steam - workingDir: /StormExe - /StormExe/StormTheGame.exe: + workingDir: "/StormExe" + "/StormExe/StormTheGame.exe": - when: - store: steam - workingDir: /StormExe + workingDir: "/StormExe" steam: id: 231020 -'Storm Area 51: September 20th 2019': +"Storm Area 51: September 20th 2019": installDir: StormArea51: {} launch: - /Area51.exe: + "/Area51.exe": - when: - store: steam steam: @@ -506095,11 +507432,11 @@ Storm Boy: installDir: Storm Boy: {} launch: - /StormBoy.app: + "/StormBoy.app": - when: - os: mac store: steam - /StormBoy.exe: + "/StormBoy.exe": - when: - os: windows store: steam @@ -506107,7 +507444,7 @@ Storm Boy: id: 964990 Storm Chasers: files: - /AppData/LocalLow/Little Cloud Games/Storm Chasers: + "/AppData/LocalLow/Little Cloud Games/Storm Chasers": tags: - config when: @@ -506115,7 +507452,7 @@ Storm Chasers: installDir: Storm Chasers: {} launch: - /Storm Chasers.exe: + "/Storm Chasers.exe": - when: - os: windows store: steam @@ -506126,11 +507463,11 @@ Storm Chasers: - save steam: id: 862800 -'Storm Chasers: Tornado Islands': +"Storm Chasers: Tornado Islands": installDir: Storm Chasers Tornado Islands: {} launch: - /TornadoIslands.exe: + "/TornadoIslands.exe": - when: - os: windows store: steam @@ -506138,12 +507475,12 @@ Storm Chasers: id: 1226010 Storm Master: files: - 'A:/*.SAV': + "A:/*.SAV": tags: - save when: - os: dos - 'B:/*.SAV': + "B:/*.SAV": tags: - save when: @@ -506152,8 +507489,8 @@ Storm Riders: installDir: Storm Riders: {} launch: - /stormriders.exe: - - arguments: '--in-process-gpu --disable-transparency' + "/stormriders.exe": + - arguments: "--in-process-gpu --disable-transparency" when: - os: windows store: steam @@ -506163,15 +507500,15 @@ Storm Tale: installDir: Storm Tale: {} launch: - /Storm Tale.app: + "/Storm Tale.app": - when: - os: mac store: steam - /Storm Tale.exe: + "/Storm Tale.exe": - when: - os: windows store: steam - /Storm Tale.x86_64: + "/Storm Tale.x86_64": - when: - os: linux store: steam @@ -506181,15 +507518,15 @@ Storm Tale 2: installDir: Storm Tale 2: {} launch: - /Storm Tale 2.app: + "/Storm Tale 2.app": - when: - os: mac store: steam - /Storm Tale 2.exe: + "/Storm Tale 2.exe": - when: - os: windows store: steam - /Storm Tale 2.x86_64: + "/Storm Tale 2.x86_64": - when: - os: linux store: steam @@ -506199,29 +507536,29 @@ Storm United: installDir: Storm United: {} launch: - /LinuxClient/StormUnited/Binaries/Linux/StormUnitedClient-Linux-Shipping: + "/LinuxClient/StormUnited/Binaries/Linux/StormUnitedClient-Linux-Shipping": - when: - bit: 64 os: linux store: steam - workingDir: /LinuxClient/StormUnited/Binaries/Linux - /MacClient/StormUnited.app/Contents/MacOS/StormUnited: + workingDir: "/LinuxClient/StormUnited/Binaries/Linux" + "/MacClient/StormUnited.app/Contents/MacOS/StormUnited": - when: - os: mac store: steam - workingDir: /StormUnited.app/Contents/MacOS - /WindowsClient/StormUnited/Binaries/Win32/StormUnitedClient-Win32-Shipping.exe: + workingDir: "/StormUnited.app/Contents/MacOS" + "/WindowsClient/StormUnited/Binaries/Win32/StormUnitedClient-Win32-Shipping.exe": - when: - bit: 32 os: windows store: steam - workingDir: /WindowsClient/StormUnited/Binaries/Win32 - /WindowsClient/StormUnited/Binaries/Win64/StormUnitedClient-Win64-Shipping.exe: + workingDir: "/WindowsClient/StormUnited/Binaries/Win32" + "/WindowsClient/StormUnited/Binaries/Win64/StormUnitedClient-Win64-Shipping.exe": - when: - bit: 64 os: windows store: steam - workingDir: /WindowsClient/StormUnited/Binaries/Win64 + workingDir: "/WindowsClient/StormUnited/Binaries/Win64" steam: id: 332970 Storm VR: @@ -506236,11 +507573,11 @@ Storm in a Teacup: installDir: storm in a teacup: {} launch: - /Storm in a Teacup.app: + "/Storm in a Teacup.app": - when: - os: mac store: steam - /StorminaTeacup.exe: + "/StorminaTeacup.exe": - when: - os: windows store: steam @@ -506250,8 +507587,11 @@ Storm of Jigsaw Puzzles: installDir: Storm Of Jigsaw Puzzles: {} launch: - /StormOfJigsawPuzzles.exe: + "/StormOfJigsawPuzzles.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam @@ -506259,7 +507599,7 @@ Storm of Jigsaw Puzzles: id: 830620 Storm of Spears: files: - /Vendetta/*.rvdata: + "/Vendetta/*.rvdata": tags: - save when: @@ -506267,7 +507607,7 @@ Storm of Spears: installDir: Storm of Spears: {} launch: - /Storm of Spears.exe: + "/Storm of Spears.exe": - when: - os: windows store: steam @@ -506277,16 +507617,16 @@ Storm over the Pacific: installDir: Storm over the Pacific: {} launch: - /sop_setup.exe: + "/sop_setup.exe": - when: - store: steam steam: id: 302320 -'Storm: Frontline Nation': +"Storm: Frontline Nation": installDir: STORM - Frontline Nation: {} launch: - /STORM.exe: + "/STORM.exe": - when: - store: steam steam: @@ -506295,11 +507635,11 @@ Stormbound: installDir: Stormbound Kingdom Wars: {} launch: - /Stormbound.app/Contents/MacOS/Stormbound: + "/Stormbound.app/Contents/MacOS/Stormbound": - when: - os: mac store: steam - /Stormbound.exe: + "/Stormbound.exe": - when: - os: windows store: steam @@ -506311,15 +507651,15 @@ Stormdivers: Stormgate: steam: id: 2012510 -'Stormhill Mystery: Family Shadows': +"Stormhill Mystery: Family Shadows": files: - /Library/Application Support/com.specialbit.lurking.steam: + "/Library/Application Support/com.specialbit.lurking.steam": tags: - config - save when: - os: mac - /StormhillMystery: + "/StormhillMystery": tags: - config - save @@ -506328,11 +507668,11 @@ Stormgate: installDir: Stormhill Mystery: {} launch: - /Stormhill Mystery Steam.app: + "/Stormhill Mystery Steam.app": - when: - os: mac store: steam - /StormhillMystery.exe: + "/StormhillMystery.exe": - when: - os: windows store: steam @@ -506342,7 +507682,7 @@ Stormrise: installDir: Stormrise: {} launch: - /stormrise.exe: + "/stormrise.exe": - when: - store: steam steam: @@ -506351,7 +507691,7 @@ Storms: installDir: Storms: {} launch: - /Storms/Storms.exe: + "/Storms/Storms.exe": - when: - os: windows store: steam @@ -506361,30 +507701,30 @@ Storms of Shambhala: installDir: Storms of Shambhala: {} launch: - /StormsOfShambhala.exe: + "/StormsOfShambhala.exe": - when: - os: windows store: steam steam: id: 686580 -'Stormworks: Build and Rescue': +"Stormworks: Build and Rescue": files: - /Stormworks/data: + "/Stormworks/data": tags: - save when: - os: windows - /Stormworks/graphics_config.xml: + "/Stormworks/graphics_config.xml": tags: - config when: - os: windows - /Stormworks/save.xml: + "/Stormworks/save.xml": tags: - config when: - os: windows - /Stormworks/saves: + "/Stormworks/saves": tags: - save when: @@ -506392,16 +507732,16 @@ Storms of Shambhala: installDir: Stormworks: {} launch: - /stormworks.app: + "/stormworks.app": - when: - os: mac store: steam - /stormworks.exe: + "/stormworks.exe": - when: - bit: 32 os: windows store: steam - /stormworks64.exe: + "/stormworks64.exe": - when: - bit: 64 os: windows @@ -506412,7 +507752,7 @@ Stormworm+: installDir: Stormworm+: {} launch: - /stormworm+.exe: + "/stormworm+.exe": - when: - os: windows store: steam @@ -506422,7 +507762,7 @@ Story About Times: installDir: Story About Times: {} launch: - /Story About Times.exe: + "/Story About Times.exe": - when: - os: windows store: steam @@ -506438,7 +507778,7 @@ Story in the Dream World -Volcano And Possession-: installDir: Story in the Dream World 1: {} launch: - /Story in the Dream World -VaP-.exe: + "/Story in the Dream World -VaP-.exe": - when: - os: windows store: steam @@ -506448,15 +507788,15 @@ Story in the Dream World -Volcano and Possession-: installDir: Story in the Dream World 1 Demo: {} launch: - /Story in the Dream World -VaP- Demo.exe: + "/Story in the Dream World -VaP- Demo.exe": - when: - os: windows store: steam steam: id: 1202760 -Story of Eve - A Hero's Study: +"Story of Eve - A Hero's Study": files: - /Eve Story of HT_1.13_Data/Resources/*.json: + "/Eve Story of HT_1.13_Data/Resources/*.json": tags: - save when: @@ -506464,7 +507804,7 @@ Story of Eve - A Hero's Study: installDir: Eve Story of HT: {} launch: - /Eve Story of HT_1.13.exe: + "/Eve Story of HT_1.13.exe": - when: - os: windows store: steam @@ -506473,14 +507813,14 @@ Story of Eve - A Hero's Study: Story of Monster: steam: id: 1082100 -'Story of Seasons: A Wonderful Life': +"Story of Seasons: A Wonderful Life": files: - /Config/SystemConfig.cfg: + "/Config/SystemConfig.cfg": tags: - config when: - os: windows - /SOSAWL/: + "/SOSAWL/": tags: - save when: @@ -506488,26 +507828,26 @@ Story of Monster: installDir: STORY OF SEASONS A Wonderful Life: {} launch: - /SOSAWLLauncher.exe: + "/SOSAWLLauncher.exe": - when: - bit: 64 os: windows store: steam - /STORY OF SEASONS A Wonderful Life.exe: + "/STORY OF SEASONS A Wonderful Life.exe": - when: - bit: 64 os: windows store: steam steam: id: 2111170 -'Story of Seasons: Friends of Mineral Town': +"Story of Seasons: Friends of Mineral Town": files: - /Config: + "/Config": tags: - config when: - os: windows - /SOSFoMT: + "/SOSFoMT": tags: - save when: @@ -506515,21 +507855,21 @@ Story of Monster: installDir: STORY OF SEASONS Friends of Mineral Town: {} launch: - /STORY OF SEASONS Friends of Mineral Town.exe: + "/STORY OF SEASONS Friends of Mineral Town.exe": - when: - bit: 64 os: windows store: steam steam: id: 978780 -'Story of Seasons: Pioneers of Olive Town': +"Story of Seasons: Pioneers of Olive Town": files: - /STORY OF SEASONS Pioneers of Olive Town/Config: + "/STORY OF SEASONS Pioneers of Olive Town/Config": tags: - config when: - os: windows - /SOSPoOT/: + "/SOSPoOT/": tags: - save when: @@ -506537,7 +507877,7 @@ Story of Monster: installDir: STORY OF SEASONS Pioneers of Olive Town: {} launch: - /STORY OF SEASONS Pioneers of Olive Town.exe: + "/STORY OF SEASONS Pioneers of Olive Town.exe": - when: - bit: 64 os: windows @@ -506548,22 +507888,22 @@ Story of a Cube: installDir: Story of a Cube: {} launch: - /Story of a Cube.app/Contents/MacOS/Story of a Cube: + "/Story of a Cube.app/Contents/MacOS/Story of a Cube": - when: - os: mac store: steam - /Story of a Cube.exe: + "/Story of a Cube.exe": - when: - os: windows store: steam - /Story of a Cube.x86: - - arguments: '-force-opengl' + "/Story of a Cube.x86": + - arguments: "-force-opengl" when: - bit: 32 os: linux store: steam - /Story of a Cube.x86_64: - - arguments: '-force-opengl' + "/Story of a Cube.x86_64": + - arguments: "-force-opengl" when: - bit: 64 os: linux @@ -506574,11 +507914,11 @@ Story of a Gladiator: installDir: Story of a Gladiator: {} launch: - /Story of a Gladiator.exe: + "/Story of a Gladiator.exe": - when: - os: windows store: steam - /StoryofaGladiatorOSX.app/Contents/MacOS/Story of a Gladiator: + "/StoryofaGladiatorOSX.app/Contents/MacOS/Story of a Gladiator": - when: - os: mac store: steam @@ -506588,7 +507928,7 @@ Story of one Night: installDir: Story of one night: {} launch: - /StoryOfOneNight.exe: + "/StoryOfOneNight.exe": - when: - bit: 64 os: windows @@ -506599,10 +507939,10 @@ Story of the Green Dragon: installDir: Green Dragon: {} launch: - /GreenDragon.exe: + "/GreenDragon.exe": - when: - store: steam - /GreenDragonMac.app: + "/GreenDragonMac.app": - when: - os: mac store: steam @@ -506612,27 +507952,27 @@ Story of the Survivor: installDir: Story Of the Survivor: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam steam: id: 440950 -'Story of the Survivor: Prisoner': +"Story of the Survivor: Prisoner": installDir: Story of the Surviuvor Prisoner: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam steam: id: 676210 -'Story: Heaven & Hell': +"Story: Heaven & Hell": installDir: Story - Heaven & Hell: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: @@ -506641,14 +507981,16 @@ StoryMode - A Game About Crafting: installDir: c_raft: {} launch: - /craft.exe: + "/craft.exe": - when: - bit: 64 os: windows store: steam - /jre/bin/java: - - arguments: '-cp ./:craft.jar:lib/* com.nhydock.storymode.DesktopLauncher' + "/jre/bin/java": + - arguments: "-cp ./:craft.jar:lib/* com.nhydock.storymode.DesktopLauncher" when: + - os: mac + store: steam - bit: 64 os: linux store: steam @@ -506656,7 +507998,7 @@ StoryMode - A Game About Crafting: id: 386710 Storyteller: files: - /AppData/LocalLow/storyteller/Storyteller: + "/AppData/LocalLow/storyteller/Storyteller": tags: - config - save @@ -506665,11 +508007,11 @@ Storyteller: installDir: Storyteller: {} launch: - /Storyteller.app/Contents/MacOS/Storyteller: + "/Storyteller.app/Contents/MacOS/Storyteller": - when: - os: mac store: steam - /Storyteller.exe: + "/Storyteller.exe": - when: - os: windows store: steam @@ -506681,19 +508023,19 @@ Storyteller: id: 1624540 Strafe: files: - /.config/unity3d/Pixel Titans/STRAFE: + "/.config/unity3d/Pixel Titans/STRAFE": tags: - config - save when: - os: linux - /AppData/LocalLow/Pixel Titans/Strafe: + "/AppData/LocalLow/Pixel Titans/Strafe": tags: - config - save when: - os: windows - /Library/Application Support/unity.Pixel Titans.STRAFE: + "/Library/Application Support/unity.Pixel Titans.STRAFE": tags: - config - save @@ -506704,11 +508046,11 @@ Strafe: installDir: STRAFE: {} launch: - /STRAFE.app: + "/STRAFE.app": - when: - os: mac store: steam - /STRAFE.x86_64: + "/STRAFE.x86_64": - when: - os: linux store: steam @@ -506718,7 +508060,7 @@ Straima: installDir: Straima: {} launch: - /Straima.exe: + "/Straima.exe": - when: - os: windows store: steam @@ -506726,7 +508068,7 @@ Straima: id: 399140 Straimium Immortaly: files: - /Straimium_Immortaly: + "/Straimium_Immortaly": tags: - config - save @@ -506735,7 +508077,7 @@ Straimium Immortaly: installDir: Straimium Immortaly: {} launch: - /Straimium Immortaly.exe: + "/Straimium Immortaly.exe": - when: - os: windows store: steam @@ -506743,7 +508085,7 @@ Straimium Immortaly: id: 515650 Strain Tactics: files: - /AppData/LocalLow/TouchDimensions/Strain Tactics: + "/AppData/LocalLow/TouchDimensions/Strain Tactics": tags: - save when: @@ -506751,28 +508093,28 @@ Strain Tactics: installDir: Strain Tactics: {} launch: - /strain.exe: + "/strain.exe": - when: - os: windows store: steam steam: id: 621810 -'StrainZ-1: Elimination': +"StrainZ-1: Elimination": steam: id: 728660 Stranded: installDir: Stranded: {} launch: - /Stranded.sh: + "/Stranded.sh": - when: - os: linux store: steam - /stranded.app: + "/stranded.app": - when: - os: mac store: steam - /stranded.exe: + "/stranded.exe": - when: - os: windows store: steam @@ -506782,15 +508124,15 @@ Stranded Alone: installDir: Stranded Alone: {} launch: - /Stranded Alone.app/Contents/MacOS/Stranded Alone: + "/Stranded Alone.app/Contents/MacOS/Stranded Alone": - when: - os: mac store: steam - /Stranded Alone.exe: + "/Stranded Alone.exe": - when: - os: windows store: steam - /Stranded Alone.x86_64: + "/Stranded Alone.x86_64": - when: - bit: 64 os: linux @@ -506799,22 +508141,22 @@ Stranded Alone: id: 780260 Stranded Deep: files: - /AppData/LocalLow/Beam Team Games/Stranded Deep/Data: + "/AppData/LocalLow/Beam Team Games/Stranded Deep/Data": tags: - save when: - os: windows - /AppData/LocalLow/Beam Team Games/Stranded Deep/Data/Options.json: + "/AppData/LocalLow/Beam Team Games/Stranded Deep/Data/Options.json": tags: - config when: - os: windows - /unity3d/Beam Team Games/Stranded Deep/Data: + "/unity3d/Beam Team Games/Stranded Deep/Data": tags: - save when: - os: linux - /unity3d/Beam Team Games/Stranded Deep/Data/Options.json: + "/unity3d/Beam Team Games/Stranded Deep/Data/Options.json": tags: - config when: @@ -506822,21 +508164,21 @@ Stranded Deep: installDir: Stranded Deep: {} launch: - /Stranded_Deep: + "/Stranded_Deep": - when: - bit: 64 os: linux store: steam - /Stranded_Deep_x64.app: + "/Stranded_Deep_x64.app": - when: - os: mac store: steam - /Stranded_Deep_x64.exe: + "/Stranded_Deep_x64.exe": - when: - bit: 64 os: windows store: steam - /Stranded_Deep_x86.exe: + "/Stranded_Deep_x86.exe": - when: - bit: 32 os: windows @@ -506845,12 +508187,12 @@ Stranded Deep: id: 313120 Stranded II: files: - /mods/Stranded II/saves: + "/mods/Stranded II/saves": tags: - save when: - os: windows - /mods/Stranded II/sys: + "/mods/Stranded II/sys": tags: - config when: @@ -506859,15 +508201,15 @@ Stranded In Time: installDir: Stranded In Time: {} launch: - /StrandedInTime.app: + "/StrandedInTime.app": - when: - os: mac store: steam - /StrandedInTime_Linux.x86: + "/StrandedInTime_Linux.x86": - when: - os: linux store: steam - /StrandedInTime_Win.exe: + "/StrandedInTime_Win.exe": - when: - os: windows store: steam @@ -506875,22 +508217,24 @@ Stranded In Time: id: 385150 Stranded Sails - Explorers of the Cursed Islands: files: - /GOG.com/Galaxy/Applications/52376752511298509/Storage/Shared/Files/*_SaveDataSlot: + "/GOG.com/Galaxy/Applications/52376752511298509/Storage/Shared/Files/*_SaveDataSlot": tags: - save when: - - store: gog - /GOG.com/Galaxy/Applications/52376752511298509/Storage/Shared/Files/MenuSettings: + - os: windows + store: gog + "/GOG.com/Galaxy/Applications/52376752511298509/Storage/Shared/Files/MenuSettings": tags: - config when: - - store: gog + - os: windows + store: gog gog: id: 1498542499 installDir: Stranded Sails: {} launch: - /StrandedSails.exe: + "/StrandedSails.exe": - when: - os: windows store: steam @@ -506900,14 +508244,14 @@ Stranded Sails - Explorers of the Cursed Islands: - config steam: id: 943260 -'Stranded: Alien Dawn': +"Stranded: Alien Dawn": files: - /Saved Games/Stranded - Alien Dawn/: + "/Saved Games/Stranded - Alien Dawn/": tags: - save when: - os: windows - /Stranded - Alien Dawn/LocalStorage.lua: + "/Stranded - Alien Dawn/LocalStorage.lua": tags: - config when: @@ -506915,7 +508259,7 @@ Stranded Sails - Explorers of the Cursed Islands: installDir: Stranded Alien Dawn: {} launch: - /StrandedSteam.exe: + "/StrandedSteam.exe": - when: - bit: 64 os: windows @@ -506924,12 +508268,12 @@ Stranded Sails - Explorers of the Cursed Islands: id: 1324130 Strange Brigade: files: - /Strange Brigade: + "/Strange Brigade": tags: - config when: - os: windows - /Strange Brigade/PC_ProfileSaves/: + "/Strange Brigade/PC_ProfileSaves/": tags: - save when: @@ -506937,7 +508281,7 @@ Strange Brigade: installDir: StrangeBrigade: {} launch: - /bin/StrangeBrigade.exe: + "/bin/StrangeBrigade.exe": - when: - store: steam steam: @@ -506946,7 +508290,7 @@ Strange Encounter: installDir: Strange Encounter: {} launch: - /Strange_Encounter.exe: + "/Strange_Encounter.exe": - when: - os: windows store: steam @@ -506957,7 +508301,7 @@ Strange Girl Beside: id: 709100 Strange Horticulture: files: - /AppData/LocalLow/BadVikingLtd/Strange Horticulture: + "/AppData/LocalLow/BadVikingLtd/Strange Horticulture": tags: - save when: @@ -506970,7 +508314,7 @@ Strange Horticulture: installDir: Strange Horticulture: {} launch: - /Strange Horticulture.exe: + "/Strange Horticulture.exe": - when: - os: windows store: steam @@ -506980,7 +508324,7 @@ Strange Night: installDir: Strange Night: {} launch: - /strangenight.exe: + "/strangenight.exe": - when: - os: windows store: steam @@ -506990,17 +508334,17 @@ Strange Night II: installDir: Strange Night 2: {} launch: - /strangenight2.exe: + "/strangenight2.exe": - when: - os: windows store: steam steam: id: 767910 -'Strange Passion - My Boss, My Mistress': +"Strange Passion - My Boss, My Mistress": installDir: - 'Strange Passion - My Boss, My Mistress': {} + "Strange Passion - My Boss, My Mistress": {} launch: - /StrangePassion.exe: + "/StrangePassion.exe": - when: - store: steam steam: @@ -507009,7 +508353,7 @@ Strange Space: installDir: Strange Space: {} launch: - /Strange Space.exe: + "/Strange Space.exe": - when: - os: windows store: steam @@ -507019,7 +508363,7 @@ Strange Telephone: installDir: Strange Telephone: {} launch: - /StrangeTelephone2.0.exe: + "/StrangeTelephone2.0.exe": - when: - os: windows store: steam @@ -507038,32 +508382,32 @@ Strange planet: id: 1108940 Strangeland: files: - /Saved Games/Strangeland: + "/Saved Games/Strangeland": tags: - save when: - os: windows - /Saved Games/Strangeland/acsetup.cfg: + "/Saved Games/Strangeland/acsetup.cfg": tags: - config when: - os: windows - /Saved Games/Strangeland/settings.ini: + "/Saved Games/Strangeland/settings.ini": tags: - config when: - os: windows - /ags/Strangeland: + "/ags/Strangeland": tags: - save when: - os: linux - /ags/Strangeland/acsetup.cfg: + "/ags/Strangeland/acsetup.cfg": tags: - config when: - os: linux - /ags/Strangeland/settings.ini: + "/ags/Strangeland/settings.ini": tags: - config when: @@ -507073,41 +508417,41 @@ Strangeland: installDir: Strangeland: {} launch: - /Strangeland: + "/Strangeland": - when: - os: linux store: steam - /Strangeland.app/Contents/MacOS/AGS: + "/Strangeland.app/Contents/MacOS/AGS": - when: - os: mac store: steam - /Strangeland.exe: + "/Strangeland.exe": - when: - os: windows store: steam steam: id: 1369520 -Stranger Things - Will's Side Quest: +"Stranger Things - Will's Side Quest": steam: id: 1119540 -'Stranger Things 3: The Game': +"Stranger Things 3: The Game": files: - /AppData/LocalLow/BonusXP/ST3TG/PlayerData_Online.xml.*: + "/AppData/LocalLow/BonusXP/ST3TG/PlayerData_Online.xml.*": tags: - config when: - os: windows - /AppData/LocalLow/BonusXP/ST3TG/Savegames: + "/AppData/LocalLow/BonusXP/ST3TG/Savegames": tags: - save when: - os: windows - /userdata//1097800/remote/PlayerData_Online.xml: + "/userdata//1097800/remote/PlayerData_Online.xml": tags: - config when: - store: steam - /userdata//1097800/remote/Savegames: + "/userdata//1097800/remote/Savegames": tags: - save when: @@ -507117,11 +508461,11 @@ Stranger Things - Will's Side Quest: installDir: Stranger Things 3 The Game: {} launch: - /fate.app/Contents/MacOS/Fate: + "/fate.app/Contents/MacOS/Fate": - when: - os: mac store: steam - /fate.exe: + "/fate.exe": - when: - os: windows store: steam @@ -507131,32 +508475,34 @@ Stranger Things - Will's Side Quest: - config steam: id: 1097800 -'Stranger of Paradise: Final Fantasy Origin': +"Stranger of Paradise: Final Fantasy Origin": files: - /My Games/STRANGER OF PARADISE FINAL FANTASY ORIGIN/EOS/: + "/My Games/STRANGER OF PARADISE FINAL FANTASY ORIGIN/EOS/": tags: - save when: - - store: epic - /My Games/STRANGER OF PARADISE FINAL FANTASY ORIGIN/EOS//config.xml: + - os: windows + "/My Games/STRANGER OF PARADISE FINAL FANTASY ORIGIN/EOS//config.xml": tags: - config when: - - store: epic - /My Games/STRANGER OF PARADISE FINAL FANTASY ORIGIN/Steam/: + - os: windows + "/My Games/STRANGER OF PARADISE FINAL FANTASY ORIGIN/Steam/": tags: - save when: - - store: steam - /My Games/STRANGER OF PARADISE FINAL FANTASY ORIGIN/Steam//config.xml: + - os: windows + store: steam + "/My Games/STRANGER OF PARADISE FINAL FANTASY ORIGIN/Steam//config.xml": tags: - config when: - - store: steam + - os: windows + store: steam installDir: STRANGER OF PARADISE FINAL FANTASY ORIGIN: {} launch: - /SOPFFO.exe: + "/SOPFFO.exe": - when: - bit: 64 os: windows @@ -507165,7 +508511,7 @@ Stranger Things - Will's Side Quest: id: 1358700 Stranger of Sword City: files: - /SAVEDATA: + "/SAVEDATA": tags: - save when: @@ -507173,7 +508519,7 @@ Stranger of Sword City: installDir: Stranger of Sword City: {} launch: - /StrangerOfSwordCity.exe: + "/StrangerOfSwordCity.exe": - when: - os: windows store: steam @@ -507183,7 +508529,7 @@ Strangers in a Strange Land: installDir: Strangers in a Strange Land: {} launch: - /Strangers.exe: + "/Strangers.exe": - when: - os: windows store: steam @@ -507193,12 +508539,12 @@ Strangers of the Power: installDir: Strangers of the Power: {} launch: - /Game.app: + "/Game.app": - when: - os: mac store: steam - /nw.exe: - - arguments: '--in-process-gpu' + "/nw.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam @@ -507208,13 +508554,13 @@ Strangers of the Power 2: installDir: Strangers of the Power 2: {} launch: - /Game.app: - - arguments: '--in-process-gpu' + "/Game.app": + - arguments: "--in-process-gpu" when: - os: mac store: steam - /nw.exe: - - arguments: '--in-process-gpu' + "/nw.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam @@ -507224,15 +508570,15 @@ Strangers of the Power 3: installDir: Strangers of the Power 3: {} launch: - /Mac.app: + "/Mac.app": - when: - os: mac store: steam - /Strangers of the Power 3.exe: + "/Strangers of the Power 3.exe": - when: - os: windows store: steam - /Strangers3.x86: + "/Strangers3.x86": - when: - os: linux store: steam @@ -507240,7 +508586,7 @@ Strangers of the Power 3: id: 1019270 Stranglehold: files: - /Stranglehold: + "/Stranglehold": tags: - save when: @@ -507249,12 +508595,12 @@ Stranglehold: id: 1928816144 Strania - The Stella Machina -: files: - /game.ini: + "/game.ini": tags: - save when: - os: windows - /strania.ini: + "/strania.ini": tags: - config when: @@ -507262,7 +508608,7 @@ Strania - The Stella Machina -: installDir: Strania - The Stella Machina -: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -507272,16 +508618,16 @@ StratO: installDir: stratO: {} launch: - /stratO.exe: + "/stratO.exe": - when: - os: windows store: steam - /stratOLinux.x86: + "/stratOLinux.x86": - when: - bit: 32 os: linux store: steam - /strato.app: + "/strato.app": - when: - os: mac store: steam @@ -507289,7 +508635,7 @@ StratO: id: 341680 Strata: files: - /userdata//286380/remote/strata.prefs: + "/userdata//286380/remote/strata.prefs": tags: - save when: @@ -507297,15 +508643,15 @@ Strata: installDir: Strata: {} launch: - /Strata.app: + "/Strata.app": - when: - os: mac store: steam - /Strata.exe: + "/Strata.exe": - when: - os: windows store: steam - /Strata.x86: + "/Strata.x86": - when: - os: linux store: steam @@ -507319,93 +508665,93 @@ Strata: Strategeist: steam: id: 662440 -'Strategic Command Classic: Global Conflict': +"Strategic Command Classic: Global Conflict": gog: id: 1107785727 installDir: Strategic Command Classic Global Conflict: {} launch: - /autorun.exe: + "/autorun.exe": - when: - os: windows store: steam steam: id: 785940 -'Strategic Command Classic: WWI': +"Strategic Command Classic: WWI": gog: id: 1623727353 installDir: Strategic Command Classic WWI: {} launch: - /autorun.exe: + "/autorun.exe": - when: - os: windows store: steam steam: id: 388140 -'Strategic Command Classic: WWII': +"Strategic Command Classic: WWII": gog: id: 2103848294 installDir: Strategic Command Classic WWII: {} launch: - /autorun.exe: + "/autorun.exe": - when: - os: windows store: steam steam: id: 812930 -'Strategic Command WWII: War in Europe': +"Strategic Command WWII: War in Europe": gog: id: 1774970049 installDir: Strategic Command WWII War in Europe: {} launch: - /autorun.exe: + "/autorun.exe": - when: - store: steam steam: id: 593030 -'Strategic Command WWII: World at War': +"Strategic Command WWII: World at War": gog: id: 1830818352 installDir: Strategic Command WWII World at War: {} launch: - /autorun.exe: + "/autorun.exe": - when: - os: windows store: steam steam: id: 957720 -'Strategic Command: American Civil War': +"Strategic Command: American Civil War": gog: id: 1825087693 installDir: Strategic Command American Civil War: {} launch: - /Launcher.exe: + "/Launcher.exe": - when: - store: steam steam: id: 1966130 -'Strategic Command: European Theater': +"Strategic Command: European Theater": files: - /Save: + "/Save": tags: - save when: - os: windows gog: id: 1207658822 -'Strategic Command: World War I': +"Strategic Command: World War I": files: - /My Games/Strategic Command WWI/*.ini: + "/My Games/Strategic Command WWI/*.ini": tags: - config when: - os: windows - /My Games/Strategic Command WWI/Save: + "/My Games/Strategic Command WWI/Save": tags: - save when: @@ -507415,57 +508761,57 @@ Strategeist: installDir: Strategic Command World War I: {} launch: - /Launcher.exe: + "/Launcher.exe": - when: - store: steam steam: id: 1096930 -'Strategic Mind: Blitzkrieg': +"Strategic Mind: Blitzkrieg": gog: id: 1126865870 installDir: Strategic Mind Blitzkrieg: {} launch: - /StrategicMind.exe: + "/StrategicMind.exe": - when: - bit: 64 os: windows store: steam steam: id: 1200330 -'Strategic Mind: Fight for Freedom': +"Strategic Mind: Fight for Freedom": gog: id: 1390159891 installDir: Strategic Mind Fight for Freedom: {} launch: - /StrategicMind.exe: + "/StrategicMind.exe": - when: - bit: 64 os: windows store: steam steam: id: 1381850 -'Strategic Mind: Spectre of Communism': +"Strategic Mind: Spectre of Communism": gog: id: 2106088488 installDir: Strategic Mind Spectre of Communism: {} launch: - /StrategicMind.exe: + "/StrategicMind.exe": - when: - bit: 64 os: windows store: steam steam: id: 1341170 -'Strategic Mind: The Pacific': +"Strategic Mind: The Pacific": gog: id: 1961554687 installDir: Strategic Mind The Pacific: {} launch: - /StrategicMind.exe: + "/StrategicMind.exe": - when: - bit: 64 os: windows @@ -507474,7 +508820,7 @@ Strategeist: id: 991810 Strategic War in Europe: files: - /My Games/Strategic War in Europe/Settings.ini: + "/My Games/Strategic War in Europe/Settings.ini": tags: - config when: @@ -507482,7 +508828,7 @@ Strategic War in Europe: installDir: StrategicWarInEurope: {} launch: - /setup_swie.exe: + "/setup_swie.exe": - when: - bit: 32 os: windows @@ -507493,7 +508839,7 @@ Strategist: installDir: Strategist: {} launch: - /Strategist.exe: + "/Strategist.exe": - when: - os: windows store: steam @@ -507503,7 +508849,7 @@ Stratego Multiplayer: installDir: Stratego® Multiplayer: {} launch: - /strategoMP_steam.exe: + "/strategoMP_steam.exe": - when: - store: steam steam: @@ -507512,35 +508858,35 @@ Stratego Single Player: installDir: Stratego® Single Player: {} launch: - /Mac_OS_X_Universal.app/Contents/MacOS/Mac_OS_X_Universal: + "/Mac_OS_X_Universal.app/Contents/MacOS/Mac_OS_X_Universal": - when: - os: mac store: steam - /Windows_X86_Build.exe: + "/Windows_X86_Build.exe": - when: - os: windows store: steam steam: id: 491670 -'Strategy & Tactics: Dark Ages': +"Strategy & Tactics: Dark Ages": installDir: Dark Ages: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam steam: id: 508300 -'Strategy & Tactics: Wargame Collection': +"Strategy & Tactics: Wargame Collection": installDir: Strategy & Tactics: {} launch: - /S&T.exe: + "/S&T.exe": - when: - os: windows store: steam - /ST.app: + "/ST.app": - when: - os: mac store: steam @@ -507550,24 +508896,24 @@ StratoBash: installDir: StratoBash: {} launch: - /StratoBash.app: - - arguments: '-show-screen-selector -vrmode none' + "/StratoBash.app": + - arguments: "-show-screen-selector -vrmode none" when: - os: mac store: steam - /StratoBash.exe: - - arguments: '-show-screen-selector -vrmode none' + "/StratoBash.exe": + - arguments: "-show-screen-selector -vrmode none" when: - os: windows store: steam - /StratoBash.x86: - - arguments: '-show-screen-selector -vrmode none' + "/StratoBash.x86": + - arguments: "-show-screen-selector -vrmode none" when: - bit: 32 os: linux store: steam - /StratoBash.x86_64: - - arguments: '-show-screen-selector -vrmode none' + "/StratoBash.x86_64": + - arguments: "-show-screen-selector -vrmode none" when: - bit: 64 os: linux @@ -507578,7 +508924,7 @@ Stratos: installDir: Azure: {} launch: - /Stratos.exe: + "/Stratos.exe": - when: - bit: 64 os: windows @@ -507587,14 +508933,14 @@ Stratos: id: 1144510 Stratoscape: installDir: - ']': {} + "]": {} steam: id: 1143130 -'Stratus: Battle For The Sky': +"Stratus: Battle For The Sky": installDir: Stratus: {} launch: - /stratus.exe: + "/stratus.exe": - when: - os: windows store: steam @@ -507602,17 +508948,17 @@ Stratoscape: id: 355490 Strawberry Vinegar: files: - /game/saves: + "/game/saves": tags: - save when: - os: windows - /renpy/config.py: + "/renpy/config.py": tags: - config when: - os: windows - /renpy/Strawberry Vinegar: + "/renpy/Strawberry Vinegar": tags: - save when: @@ -507620,15 +508966,15 @@ Strawberry Vinegar: installDir: Strawberry Vinegar: {} launch: - /Strawberry Vinegar.app: + "/Strawberry Vinegar.app": - when: - os: mac store: steam - /Strawberry Vinegar.exe: + "/Strawberry Vinegar.exe": - when: - os: windows store: steam - /Strawberry Vinegar.sh: + "/Strawberry Vinegar.sh": - when: - os: linux store: steam @@ -507638,7 +508984,7 @@ Strawhart: installDir: Strawhart: {} launch: - /Strawhart.exe: + "/Strawhart.exe": - when: - os: windows store: steam @@ -507646,12 +508992,12 @@ Strawhart: id: 1085070 Stray: files: - /Hk_project/Saved/Config/WindowsNoEditor: + "/Hk_project/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /Hk_project/Saved/SaveGames: + "/Hk_project/Saved/SaveGames": tags: - save when: @@ -507659,7 +509005,7 @@ Stray: installDir: Stray: {} launch: - /Stray.exe: + "/Stray.exe": - when: - bit: 64 os: windows @@ -507677,7 +509023,7 @@ Stray Blade: installDir: Stray Blade: {} launch: - /Stray Blade.exe: + "/Stray Blade.exe": - when: - bit: 64 os: windows @@ -507686,7 +509032,7 @@ Stray Blade: id: 1621990 Stray Cat Crossing: files: - /Save*.rvdata2: + "/Save*.rvdata2": tags: - save when: @@ -507694,20 +509040,20 @@ Stray Cat Crossing: installDir: Stray Cat Crossing: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam steam: id: 385330 -'Stray Gods: The Roleplaying Musical': +"Stray Gods: The Roleplaying Musical": files: - /Chorus/Saved/Config/WindowsNoEditor: + "/Chorus/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /Chorus/Saved/SaveGames: + "/Chorus/Saved/SaveGames": tags: - config when: @@ -507715,7 +509061,7 @@ Stray Cat Crossing: installDir: Stray Gods: {} launch: - /StrayGods.exe: + "/StrayGods.exe": - when: - store: steam steam: @@ -507729,7 +509075,7 @@ Strayed Lights: installDir: Strayed Lights: {} launch: - /Strayed Lights.exe: + "/Strayed Lights.exe": - when: - store: steam steam: @@ -507743,11 +509089,11 @@ Strazeal: installDir: Strazeal: {} launch: - /Strazeal.exe: + "/Strazeal.exe": - when: - os: windows store: steam - /strazeal: + "/strazeal": - when: - os: linux store: steam @@ -507757,11 +509103,11 @@ Stream Animals: installDir: Stream Animals: {} launch: - /Stream Animals.app/Contents/MacOS/Stream Animals: + "/Stream Animals.app/Contents/MacOS/Stream Animals": - when: - os: mac store: steam - /Stream Animals.exe: + "/Stream Animals.exe": - when: - os: windows store: steam @@ -507771,7 +509117,7 @@ Stream Battlecards: installDir: Stream Battlecards: {} launch: - /stream-battlecards.exe: + "/stream-battlecards.exe": - when: - bit: 64 os: windows @@ -507782,7 +509128,7 @@ Stream Fighters: installDir: Stream Fighters: {} launch: - /Stream Fighters.exe: + "/Stream Fighters.exe": - when: - os: windows store: steam @@ -507792,7 +509138,7 @@ Stream Games: installDir: StreamGames: {} launch: - /STREAMGAMES.exe: + "/STREAMGAMES.exe": - when: - os: windows store: steam @@ -507805,15 +509151,15 @@ Streamer Shall Not Pass!: installDir: Streamer Shall Not Pass!: {} launch: - /Streamer Shall Not Pass.app/Contents/MacOS/Streamer Shall Not Pass: + "/Streamer Shall Not Pass.app/Contents/MacOS/Streamer Shall Not Pass": - when: - os: mac store: steam - /Streamer Shall Not Pass.exe: + "/Streamer Shall Not Pass.exe": - when: - os: windows store: steam - /Streamer Shall Not Pass.linux/Streamer Shall Not Pass.x86_64: + "/Streamer Shall Not Pass.linux/Streamer Shall Not Pass.x86_64": - when: - os: linux store: steam @@ -507823,17 +509169,17 @@ Streamer Simulator: installDir: Streamer Simulator: {} launch: - /Streamer Simulator.exe: + "/Streamer Simulator.exe": - when: - os: windows store: steam steam: id: 519180 -Streamer's Life: +"Streamer's Life": installDir: - Streamer's Life: {} + "Streamer's Life": {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -507843,7 +509189,7 @@ Streamline: installDir: Streamline: {} launch: - /Streamline.exe: + "/Streamline.exe": - when: - os: windows store: steam @@ -507853,7 +509199,7 @@ Streamline (Proletariat): installDir: Streamline: {} launch: - /hns/Binaries/Win64/Streamline.exe: + "/hns/Binaries/Win64/Streamline.exe": - when: - os: windows store: steam @@ -507863,11 +509209,13 @@ Street Arena: installDir: Street Arena: {} launch: - /sa-game-startup: + "/sa-game-startup": - when: + - os: mac + store: steam - os: linux store: steam - /sa-game-startup_Release.exe: + "/sa-game-startup_Release.exe": - when: - os: windows store: steam @@ -507880,13 +509228,13 @@ Street Champ VR: id: 550160 Street Fighter 30th Anniversary Collection: files: - /userdata//586200: + "/userdata//586200": tags: - save when: - os: windows store: steam - /userdata//586200/remote: + "/userdata//586200/remote": tags: - config when: @@ -507895,7 +509243,7 @@ Street Fighter 30th Anniversary Collection: installDir: Street Fighter 30th Anniversary Collection: {} launch: - /SF30thAnniversaryCollection.exe: + "/SF30thAnniversaryCollection.exe": - when: - os: windows store: steam @@ -507903,12 +509251,12 @@ Street Fighter 30th Anniversary Collection: id: 586200 Street Fighter 6: files: - /config.ini: + "/config.ini": tags: - config when: - os: windows - /userdata//1364780/remote/win64_save: + "/userdata//1364780/remote/win64_save": tags: - save when: @@ -507924,14 +509272,14 @@ Street Fighter 6: installDir: Street Fighter 6: {} launch: - /StreetFighter6.exe: + "/StreetFighter6.exe": - when: - store: steam steam: id: 1364780 Street Fighter Alpha 2: files: - /Z.SV: + "/Z.SV": tags: - config - save @@ -507941,12 +509289,12 @@ Street Fighter Alpha 2: id: 1207659134 Street Fighter II: files: - /CONFIG.SF2: + "/CONFIG.SF2": tags: - config when: - os: dos - /HIGHSCOR.SF2: + "/HIGHSCOR.SF2": tags: - save when: @@ -507955,19 +509303,19 @@ Street Fighter IV: installDir: Street Fighter IV: {} launch: - /SF4Launcher.exe: + "/SF4Launcher.exe": - when: - store: steam steam: id: 21660 Street Fighter V: files: - /StreetFighterV/Saved/Config/WindowsNoEditor: + "/StreetFighterV/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /StreetFighterV/Saved/SaveGames: + "/StreetFighterV/Saved/SaveGames": tags: - save when: @@ -507978,7 +509326,7 @@ Street Fighter V: installDir: StreetFighterV: {} launch: - /StreetFighterV.exe: + "/StreetFighterV.exe": - when: - bit: 64 os: windows @@ -507987,19 +509335,19 @@ Street Fighter V: id: 310950 Street Fighter X Mega Man: files: - /keyconfig.txt: + "/keyconfig.txt": tags: - config when: - os: windows Street Fighter X Tekken: files: - /CAPCOM/SFTK/*.ini: + "/CAPCOM/SFTK/*.ini": tags: - config when: - os: windows - /CAPCOM/SFTK/savedata/: + "/CAPCOM/SFTK/savedata/": tags: - save when: @@ -508007,7 +509355,7 @@ Street Fighter X Tekken: installDir: Street Fighter X Tekken: {} launch: - /SFTK.exe: + "/SFTK.exe": - when: - store: steam steam: @@ -508016,7 +509364,7 @@ Street Heat: installDir: Street Heat: {} launch: - /streetheat.exe: + "/streetheat.exe": - when: - bit: 64 os: windows @@ -508027,25 +509375,25 @@ Street Hoop: installDir: Street Hoop: {} launch: - /StreetHoop.exe: + "/StreetHoop.exe": - when: - os: windows store: steam steam: id: 1189520 -'Street Jam: The Rise': +"Street Jam: The Rise": installDir: Street Jam The Rise: {} launch: - /Street Jam The Rise.app/Contents/MacOS/Street Jam The Rise: + "/Street Jam The Rise.app/Contents/MacOS/Street Jam The Rise": - when: - os: mac store: steam - /StreetJamTheRise: + "/StreetJamTheRise": - when: - os: linux store: steam - /StreetJamTheRise.exe: + "/StreetJamTheRise.exe": - when: - os: windows store: steam @@ -508060,48 +509408,48 @@ Street Legal: installDir: Street Legal 1 REVision: {} launch: - /SL_Launcher.exe: + "/SL_Launcher.exe": - when: - os: windows store: steam steam: id: 1571280 -'Street Legal Racing: Redline v2.3.1': +"Street Legal Racing: Redline v2.3.1": installDir: Street Legal Racing Redline: {} launch: - /StreetLegal_Redline.exe: + "/StreetLegal_Redline.exe": - when: - os: windows store: steam steam: id: 497180 -'Street Level: Windows Edition': +"Street Level: Windows Edition": installDir: Street Level Windows Edition: {} launch: - /StreetLevel.exe: + "/StreetLevel.exe": - when: - os: windows store: steam steam: id: 861670 -'Street Outlaws 2: Winner Takes All': +"Street Outlaws 2: Winner Takes All": installDir: Street Outlaws 2 Winner Takes All: {} launch: - /StreetOutlaws/Binaries/Win64/StreetOutlaws-Win64-Shipping.exe: + "/StreetOutlaws/Binaries/Win64/StreetOutlaws-Win64-Shipping.exe": - when: - bit: 64 os: windows store: steam steam: id: 1451950 -'Street Outlaws: The List': +"Street Outlaws: The List": installDir: Street Outlaws: {} launch: - /Street Outlaws The List_US.exe: + "/Street Outlaws The List_US.exe": - when: - bit: 64 os: windows @@ -508112,7 +509460,7 @@ Street Posse Showdown: installDir: Street Posse Showdown: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -508120,12 +509468,12 @@ Street Posse Showdown: id: 438770 Street Power Football: files: - /SFL/Saved: + "/SFL/Saved": tags: - save when: - os: windows - /SFL/Saved/Config/WindowsNoEditor: + "/SFL/Saved/Config/WindowsNoEditor": tags: - config when: @@ -508133,7 +509481,7 @@ Street Power Football: installDir: Street Power Football: {} launch: - /SFL/Binaries/Win64/SFL.exe: + "/SFL/Binaries/Win64/SFL.exe": - when: - bit: 64 os: windows @@ -508152,7 +509500,7 @@ Street Racing: id: 796270 Street Racing Syndicate: files: - /Street Racing Syndicate: + "/Street Racing Syndicate": tags: - config - save @@ -508163,18 +509511,18 @@ Street Racing Syndicate: installDir: Street Racing Syndicate: {} launch: - /bin/SRS.exe: + "/bin/SRS.exe": - when: - os: windows store: steam - workingDir: /bin + workingDir: "/bin" steam: id: 292410 Street Striker: installDir: Street Striker: {} launch: - /Street Striker.exe: + "/Street Striker.exe": - when: - os: windows store: steam @@ -508187,7 +509535,7 @@ Street Warriors Online: installDir: StreetWarriorsOnline: {} launch: - /StreetWarriorsOnline.exe: + "/StreetWarriorsOnline.exe": - when: - bit: 32 os: windows @@ -508203,17 +509551,17 @@ StreetCraft: installDir: StreetCraft: {} launch: - /StreetCraft: + "/StreetCraft": - when: - bit: 64 os: linux store: steam - /StreetCraft.app/Contents/MacOS/ClientMac: + "/StreetCraft.app/Contents/MacOS/ClientMac": - when: - bit: 64 os: mac store: steam - /StreetCraft.exe: + "/StreetCraft.exe": - when: - os: windows store: steam @@ -508223,7 +509571,7 @@ StreetRoyaleZ: installDir: StreetRoyaleZ: {} launch: - /StreetRoyaleZ.exe: + "/StreetRoyaleZ.exe": - when: - os: windows store: steam @@ -508238,7 +509586,7 @@ Streets Ablaze: installDir: Streets Ablaze: {} launch: - /StreetsAblaze.exe: + "/StreetsAblaze.exe": - when: - os: windows store: steam @@ -508248,7 +509596,7 @@ Streets of Chaos: installDir: Streets of Chaos: {} launch: - /streetschaos.exe: + "/streetschaos.exe": - when: - os: windows store: steam @@ -508256,12 +509604,12 @@ Streets of Chaos: id: 346320 Streets of Fury EX: files: - /Streets of Fury Save and Config/Config.xml: + "/Streets of Fury Save and Config/Config.xml": tags: - config when: - os: windows - /Streets of Fury Save and Config/Save.sav: + "/Streets of Fury Save and Config/Save.sav": tags: - save when: @@ -508272,7 +509620,7 @@ Streets of Fury EX: id: 350910 Streets of Kamurocho: files: - /Sega/Streets Of Kamurocho/USR-DATA: + "/Sega/Streets Of Kamurocho/USR-DATA": tags: - config - save @@ -508281,7 +509629,7 @@ Streets of Kamurocho: installDir: Streets Of Kamurocho: {} launch: - /Streets Of Kamurocho.exe: + "/Streets Of Kamurocho.exe": - when: - os: windows store: steam @@ -508291,7 +509639,7 @@ Streets of Neotokio: installDir: Streets of Neotokio: {} launch: - /StreetsOfNeotokio.exe: + "/StreetsOfNeotokio.exe": - when: - os: windows store: steam @@ -508299,22 +509647,22 @@ Streets of Neotokio: id: 1124130 Streets of Rage: files: - /SEGA Genesis Classics/0043: + "/SEGA Genesis Classics/0043": tags: - save when: - os: windows - /SEGA Genesis Classics/setup.dat: + "/SEGA Genesis Classics/setup.dat": tags: - config when: - os: windows - /SEGA Mega Drive Classics/0043: + "/SEGA Mega Drive Classics/0043": tags: - save when: - os: windows - /SEGA Mega Drive Classics/setup.dat: + "/SEGA Mega Drive Classics/setup.dat": tags: - config when: @@ -508323,22 +509671,22 @@ Streets of Rage: id: 71164 Streets of Rage 2: files: - /SEGA Genesis Classics/0044: + "/SEGA Genesis Classics/0044": tags: - save when: - os: windows - /SEGA Genesis Classics/setup.dat: + "/SEGA Genesis Classics/setup.dat": tags: - config when: - os: windows - /SEGA Mega Drive Classics/0044: + "/SEGA Mega Drive Classics/0044": tags: - save when: - os: windows - /SEGA Mega Drive Classics/setup.dat: + "/SEGA Mega Drive Classics/setup.dat": tags: - config when: @@ -508347,22 +509695,22 @@ Streets of Rage 2: id: 71165 Streets of Rage 3: files: - /SEGA Genesis Classics/0054: + "/SEGA Genesis Classics/0054": tags: - save when: - os: windows - /SEGA Genesis Classics/setup.dat: + "/SEGA Genesis Classics/setup.dat": tags: - config when: - os: windows - /SEGA Mega Drive Classics/0054: + "/SEGA Mega Drive Classics/0054": tags: - save when: - os: windows - /SEGA Mega Drive Classics/setup.dat: + "/SEGA Mega Drive Classics/setup.dat": tags: - config when: @@ -508371,31 +509719,31 @@ Streets of Rage 3: id: 211206 Streets of Rage 4: files: - /Library/Application Support/Streets of Rage 4 Save and Config: + "/Library/Application Support/Streets of Rage 4 Save and Config": tags: - config - save when: - os: mac - /Streets of Rage 4 Save and Config: + "/Streets of Rage 4 Save and Config": tags: - config - save when: - os: windows - /Streets of Rage 4/Config.txt: + "/Streets of Rage 4/Config.txt": tags: - config when: - os: windows store: microsoft - /Packages/DotEmu.StreetsofRage4_map6zyh9ym1xy/SystemAppData/wgs/: + "/Packages/DotEmu.StreetsofRage4_map6zyh9ym1xy/SystemAppData/wgs/": tags: - save when: - os: windows store: microsoft - /Streets of Rage 4 Save and Config: + "/Streets of Rage 4 Save and Config": tags: - config - save @@ -508406,76 +509754,76 @@ Streets of Rage 4: installDir: Streets of Rage 4: {} launch: - /SOR4: + "/SOR4": - when: - os: linux store: steam - /Streets of Rage 4.app/Contents/MacOS/SOR4: + "/Streets of Rage 4.app/Contents/MacOS/SOR4": - when: - os: mac store: steam - /x64/SOR4.exe: + "/x64/SOR4.exe": - when: - bit: 64 os: windows store: steam - workingDir: /x64 + workingDir: "/x64" steam: id: 985890 Streets of Rage Remake: files: - /savegame/savegame.sor: + "/savegame/savegame.sor": tags: - config when: - os: windows -'Streets of Red: Devil''s Dare Deluxe': +"Streets of Red: Devil's Dare Deluxe": installDir: - Streets of Red Devil's Dare Deluxe: {} + "Streets of Red Devil's Dare Deluxe": {} launch: - /StreetsOfRed.app: + "/StreetsOfRed.app": - when: - os: mac store: steam - /StreetsOfRed.exe: + "/StreetsOfRed.exe": - when: - os: windows store: steam - /StreetsOfRed.x86: + "/StreetsOfRed.x86": - when: - os: linux store: steam registry: - HKEY_CURRENT_USER/Software/SecretBase/Streets of Red - Devil's Dare Deluxe: + "HKEY_CURRENT_USER/Software/SecretBase/Streets of Red - Devil's Dare Deluxe": tags: - config steam: id: 946650 Streets of Rogue: files: - /.config/unity3d/Streets of Rogue/Streets of Rogue: + "/.config/unity3d/Streets of Rogue/Streets of Rogue": tags: - config - save when: - os: linux - /Library/ApplicationSupport/unity.streetsofrogue.streetsofrogue: + "/Library/ApplicationSupport/unity.streetsofrogue.streetsofrogue": tags: - config - save when: - os: mac - /Streets of Rogue/CloudData: + "/Streets of Rogue/CloudData": tags: - save when: - os: windows - /Streets of Rogue/CloudData/GameSettings.dat: + "/Streets of Rogue/CloudData/GameSettings.dat": tags: - config when: - os: windows - /Streets of Rogue/TechSettings.dat: + "/Streets of Rogue/TechSettings.dat": tags: - config when: @@ -508488,27 +509836,27 @@ Streets of Rogue: installDir: Streets of Rogue: {} launch: - /StreetsOfRogue.exe: + "/StreetsOfRogue.exe": - when: - bit: 64 os: windows store: steam - /StreetsOfRogue32.exe: + "/StreetsOfRogue32.exe": - when: - bit: 32 os: windows store: steam - /StreetsOfRogueLinux.x86: + "/StreetsOfRogueLinux.x86": - when: - bit: 32 os: linux store: steam - /StreetsOfRogueLinux.x86_64: + "/StreetsOfRogueLinux.x86_64": - when: - bit: 64 os: linux store: steam - /StreetsOfRogueMac.app/Contents/MacOS/Streets of Rogue: + "/StreetsOfRogueMac.app/Contents/MacOS/Streets of Rogue": - when: - os: mac store: steam @@ -508516,17 +509864,17 @@ Streets of Rogue: id: 512900 Streets of SimCity: files: - /IP.cfg: + "/IP.cfg": tags: - config when: - os: windows - /games/careers: + "/games/careers": tags: - save when: - os: windows - /streets.cfg: + "/streets.cfg": tags: - config when: @@ -508535,7 +509883,7 @@ Streng Check: installDir: StrengCheck: {} launch: - /StrengCheck.exe: + "/StrengCheck.exe": - when: - bit: 64 os: windows @@ -508546,7 +509894,7 @@ Strength of the Sword ULTIMATE: installDir: SOTSwordUltimate: {} launch: - /SwordUltimate.exe: + "/SwordUltimate.exe": - when: - bit: 64 os: windows @@ -508557,13 +509905,13 @@ StretchBot: installDir: StretchBot: {} launch: - /StretchBot.app: - - arguments: '-fullscreen' + "/StretchBot.app": + - arguments: "-fullscreen" when: - os: mac store: steam - /StretchBot.exe: - - arguments: '-fullscreen' + "/StretchBot.exe": + - arguments: "-fullscreen" when: - os: windows store: steam @@ -508576,18 +509924,18 @@ Strid: id: 765010 Strider (2014): files: - /*.cfg: + "/*.cfg": tags: - config when: - os: windows - /userdata//235210/local/vars_pc.cfg: + "/userdata//235210/local/vars_pc.cfg": tags: - config when: - os: windows store: steam - /userdata//235210/remote: + "/userdata//235210/remote": tags: - save when: @@ -508595,7 +509943,7 @@ Strider (2014): installDir: Strider: {} launch: - /Strider.exe: + "/Strider.exe": - when: - os: windows store: steam @@ -508603,7 +509951,7 @@ Strider (2014): id: 235210 Strife: files: - /strfsav*.ssg: + "/strfsav*.ssg": tags: - save when: @@ -508613,26 +509961,26 @@ Strife: installDir: Strife: {} launch: - /DOS/DOSBox.exe: - - arguments: '-conf .\\dosbox_strife.conf' + "/DOS/DOSBox.exe": + - arguments: "-conf .\\\\dosbox_strife.conf" when: - os: windows store: steam - workingDir: /DOS - - arguments: '-conf .\\dosbox_strifebeta.conf' + workingDir: "/DOS" + - arguments: "-conf .\\\\dosbox_strifebeta.conf" when: - os: windows store: steam - workingDir: /DOS - /Strife-VE.app: + workingDir: "/DOS" + "/Strife-VE.app": - when: - os: mac store: steam - /strife-ve.exe: + "/strife-ve.exe": - when: - os: windows store: steam - /strife-ve.sh: + "/strife-ve.sh": - when: - os: linux store: steam @@ -508640,7 +509988,7 @@ Strife: id: 317040 Strife (MOBA): files: - /Strife/game/startup.cfg: + "/Strife/game/startup.cfg": tags: - config when: @@ -508648,33 +509996,33 @@ Strife (MOBA): installDir: strife: {} launch: - /MacOS/strife: - - arguments: '-steam' + "/MacOS/strife": + - arguments: "-steam" when: - os: mac store: steam - /bin/strife-steam.sh: - - arguments: '-steam' + "/bin/strife-steam.sh": + - arguments: "-steam" when: - os: linux store: steam - /bin/strife.exe: - - arguments: '-steam' + "/bin/strife.exe": + - arguments: "-steam" when: - os: windows store: steam steam: id: 339280 -'Strife: Veteran Edition': +"Strife: Veteran Edition": files: - /*.cfg: + "/*.cfg": tags: - config when: - os: windows - os: mac - os: linux - /strfsav*.ssg: + "/strfsav*.ssg": tags: - save when: @@ -508686,26 +510034,26 @@ Strife (MOBA): installDir: Strife: {} launch: - /DOS/DOSBox.exe: - - arguments: '-conf .\\dosbox_strife.conf' + "/DOS/DOSBox.exe": + - arguments: "-conf .\\\\dosbox_strife.conf" when: - os: windows store: steam - workingDir: /DOS - - arguments: '-conf .\\dosbox_strifebeta.conf' + workingDir: "/DOS" + - arguments: "-conf .\\\\dosbox_strifebeta.conf" when: - os: windows store: steam - workingDir: /DOS - /Strife-VE.app: + workingDir: "/DOS" + "/Strife-VE.app": - when: - os: mac store: steam - /strife-ve.exe: + "/strife-ve.exe": - when: - os: windows store: steam - /strife-ve.sh: + "/strife-ve.sh": - when: - os: linux store: steam @@ -508715,11 +510063,11 @@ Strike Cars: installDir: Strike Cars - Armed & Armored: {} launch: - /Strike Cars.app/Contents/MacOS/Strike Cars: + "/Strike Cars.app/Contents/MacOS/Strike Cars": - when: - os: mac store: steam - /Strike Cars.exe: + "/Strike Cars.exe": - when: - os: windows store: steam @@ -508727,17 +510075,17 @@ Strike Cars: id: 906020 Strike Commander: files: - /*.SAV: + "/*.SAV": tags: - save when: - os: dos - /*.TO1: + "/*.TO1": tags: - save when: - os: dos - /SC.CFG: + "/SC.CFG": tags: - config when: @@ -508748,28 +510096,28 @@ Strike Force Remastered: installDir: Strike Force Remastered: {} launch: - /StrikeForce.exe: + "/StrikeForce.exe": - when: - bit: 64 os: windows store: steam steam: id: 860260 -'Strike Force: Arctic Storm': +"Strike Force: Arctic Storm": installDir: Strike Force Arctic Storm: {} launch: - /StrikeForce.exe: + "/StrikeForce.exe": - when: - os: windows store: steam steam: id: 527520 -'Strike Force: Desert Thunder': +"Strike Force: Desert Thunder": installDir: Strike Force Desert Thunder: {} launch: - /DesertThunder.exe: + "/DesertThunder.exe": - when: - os: windows store: steam @@ -508779,7 +510127,7 @@ Strike Master Apocalypse: installDir: StrikeMasterApocalypse: {} launch: - /Strike Master 2 Real Not Fake.exe: + "/Strike Master 2 Real Not Fake.exe": - when: - os: windows store: steam @@ -508789,17 +510137,17 @@ Strike Solitaire: installDir: Strike Solitaire: {} launch: - /Strike Solitaire.exe: + "/Strike Solitaire.exe": - when: - os: windows store: steam steam: id: 1034410 -'Strike Squadron: Caracará': +"Strike Squadron: Caracará": installDir: Strike Squadron Caracara: {} launch: - /nw.exe: + "/nw.exe": - when: - bit: 64 os: windows @@ -508808,7 +510156,7 @@ Strike Solitaire: id: 507340 Strike Suit Infinity: files: - /userdata//234160/remote: + "/userdata//234160/remote": tags: - save when: @@ -508816,21 +510164,21 @@ Strike Suit Infinity: installDir: Strike Suit Infinity: {} launch: - /pc/main/Binary/SSZ.exe: + "/pc/main/Binary/SSZ.exe": - when: - store: steam - workingDir: /pc/main/Binary + workingDir: "/pc/main/Binary" steam: id: 234160 Strike Suit Zero: files: - /binary: + "/binary": tags: - config - save when: - os: linux - /userdata//209540/remote: + "/userdata//209540/remote": tags: - save when: @@ -508840,36 +510188,36 @@ Strike Suit Zero: installDir: strikesuitzero: {} launch: - /StrikeSuitZero.app: + "/StrikeSuitZero.app": - when: - os: mac store: steam - workingDir: /pc/main/Binary - /linux/main/binary/StrikeSuitZero: + workingDir: "/pc/main/Binary" + "/linux/main/binary/StrikeSuitZero": - when: - os: linux store: steam - workingDir: /linux/main/binary - /pc/main/Binary/ssz.exe: + workingDir: "/linux/main/binary" + "/pc/main/Binary/ssz.exe": - when: - os: windows store: steam - workingDir: /pc/main/Binary + workingDir: "/pc/main/Binary" steam: id: 209540 -'Strike Suit Zero: Director''s Cut': +"Strike Suit Zero: Director's Cut": files: - /pc/main/Binary/Main.sav: + "/pc/main/Binary/Main.sav": tags: - save when: - os: windows - /pc/main/Binary/settings.sav: + "/pc/main/Binary/settings.sav": tags: - config when: - os: windows - /userdata//288370/remote: + "/userdata//288370/remote": tags: - save when: @@ -508879,50 +510227,50 @@ Strike Suit Zero: installDir: SSZ Directors Cut: {} launch: - /linux/main/Binary32/SSZ: + "/linux/main/Binary32/SSZ": - when: - bit: 32 os: linux store: steam - workingDir: /linux/main/Binary32 + workingDir: "/linux/main/Binary32" - arguments: nothreadedload when: - bit: 32 os: linux store: steam - workingDir: /linux/main/Binary32 - /linux/main/Binary64/SSZ: + workingDir: "/linux/main/Binary32" + "/linux/main/Binary64/SSZ": - when: - bit: 64 os: linux store: steam - workingDir: /linux/main/Binary64 + workingDir: "/linux/main/Binary64" - arguments: nothreadedload when: - bit: 64 os: linux store: steam - workingDir: /linux/main/Binary64 - /pc/main/Binary/SSZ.exe: + workingDir: "/linux/main/Binary64" + "/pc/main/Binary/SSZ.exe": - arguments: asd when: - bit: 64 os: windows store: steam - workingDir: /pc/main/Binary - /pc/main/Binary/SSZ32.exe: + workingDir: "/pc/main/Binary" + "/pc/main/Binary/SSZ32.exe": - when: - bit: 32 os: windows store: steam - workingDir: /pc/main/Binary + workingDir: "/pc/main/Binary" steam: id: 288370 Strike Team Hydra: installDir: Strike Team Hydra: {} launch: - /Strike Team Hydra.exe: + "/Strike Team Hydra.exe": - when: - bit: 64 os: windows @@ -508931,7 +510279,7 @@ Strike Team Hydra: id: 716050 Strike Vector: files: - /UDKGame/Config/UDK*.ini: + "/UDKGame/Config/UDK*.ini": tags: - config when: @@ -508939,22 +510287,22 @@ Strike Vector: installDir: StrikeVector: {} launch: - /Binaries/Win32/udk.exe: + "/Binaries/Win32/udk.exe": - arguments: SW_02 when: - os: windows store: steam - workingDir: /Binaries/Win32 + workingDir: "/Binaries/Win32" steam: id: 246700 Strike Vector EX: files: - /SVEX/Saved/Config/WindowsNoEditor: + "/SVEX/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /SVEX/Saved/SaveGames: + "/SVEX/Saved/SaveGames": tags: - save when: @@ -508966,7 +510314,7 @@ Strike Vector EX: installDir: StrikeVectorEX: {} launch: - /SVEX.exe: + "/SVEX.exe": - when: - os: windows store: steam @@ -508979,25 +510327,25 @@ Strike!OvulationDivine Fist! Rebellion to Extinction!: installDir: Strike!OvulationDivine Fist! Rebellion to Extinction!: {} launch: - /Strike!OvulationDivine Fist! Rebellion to Extinction!.exe: + "/Strike!OvulationDivine Fist! Rebellion to Extinction!.exe": - when: - os: windows store: steam - /mac.app: + "/mac.app": - when: - os: mac store: steam steam: id: 847550 -'Strike.is: The Game': +"Strike.is: The Game": installDir: Strike.is The Game: {} launch: - /Strikeis.app/Contents/MacOS/Strikeis: + "/Strikeis.app/Contents/MacOS/Strikeis": - when: - os: mac store: steam - /Strikeis.exe: + "/Strikeis.exe": - when: - os: windows store: steam @@ -509007,11 +510355,11 @@ StrikeForce Kitty: installDir: StrikeForce Kitty: {} launch: - /StrikeForce Kitty.app: + "/StrikeForce Kitty.app": - when: - os: mac store: steam - /StrikeForce Kitty.exe: + "/StrikeForce Kitty.exe": - when: - os: windows store: steam @@ -509024,11 +510372,11 @@ Strikers 1945: installDir: STRIKERS1945: {} launch: - /s1945.exe: + "/s1945.exe": - when: - os: windows store: steam - /setting.exe: + "/setting.exe": - when: - os: windows store: steam @@ -509038,11 +510386,11 @@ Strikers 1945 II: installDir: STRIKERS1945 Ⅱ: {} launch: - /s1945ii.exe: + "/s1945ii.exe": - when: - os: windows store: steam - /setting.exe: + "/setting.exe": - when: - os: windows store: steam @@ -509052,11 +510400,11 @@ Strikers 1945 III: installDir: STRIKERS1945 III: {} launch: - /s1945iii.exe: + "/s1945iii.exe": - when: - os: windows store: steam - /setting.exe: + "/setting.exe": - when: - os: windows store: steam @@ -509066,11 +510414,11 @@ Strikers Edge: installDir: Strikers Edge: {} launch: - /StrikersEdge.app: + "/StrikersEdge.app": - when: - os: mac store: steam - /StrikersEdge.exe: + "/StrikersEdge.exe": - when: - os: windows store: steam @@ -509084,16 +510432,16 @@ Strikey Sisters: installDir: Strikey Sisters: {} launch: - /runner: + "/runner": - when: - bit: 64 os: linux store: steam - /strikey_sisters.app: + "/strikey_sisters.app": - when: - os: mac store: steam - /strikey_sisters.exe: + "/strikey_sisters.exe": - when: - os: windows store: steam @@ -509103,7 +510451,7 @@ String Theory: installDir: String Theory: {} launch: - /StringTheory.exe: + "/StringTheory.exe": - when: - os: windows store: steam @@ -509114,11 +510462,11 @@ Strings: Strings: {} steam: id: 1213810 -'Strip Breaker : Hentai Girls': +"Strip Breaker : Hentai Girls": installDir: stripBreakerHG: {} launch: - /nw.exe: + "/nw.exe": - when: - store: steam steam: @@ -509127,7 +510475,7 @@ Strip Shooter: installDir: StripShooter: {} launch: - /StripShooter.exe: + "/StripShooter.exe": - when: - os: windows store: steam @@ -509137,27 +510485,27 @@ Strip Slot Sonja: installDir: Strip Slot Sonja: {} launch: - /stripslotsonja.exe: + "/stripslotsonja.exe": - when: - os: windows store: steam steam: id: 1027140 -'Stripper Anya: Christmas Special': +"Stripper Anya: Christmas Special": installDir: Stripper Anya Christmas Special: {} launch: - /Stripper Anya XMAS.exe: + "/Stripper Anya XMAS.exe": - when: - os: windows store: steam steam: id: 1193450 -'Stripper Anya: Demon Slayer': +"Stripper Anya: Demon Slayer": installDir: STRIPPERANYA_DS: {} launch: - /StripperAnya_DS.exe: + "/StripperAnya_DS.exe": - when: - os: windows store: steam @@ -509167,7 +510515,7 @@ Strive: installDir: Strive: {} launch: - /Strive.exe: + "/Strive.exe": - when: - os: windows store: steam @@ -509180,7 +510528,7 @@ Strobophagia Rave Horror: installDir: Strobophagia Rave Horror: {} launch: - /Strobophagia.exe: + "/Strobophagia.exe": - when: - os: windows store: steam @@ -509190,123 +510538,133 @@ Stroke Fill: installDir: Stroke Fill: {} launch: - /StrokeFill.exe: + "/StrokeFill.exe": - when: - store: steam steam: id: 1089140 -Strong Bad's Cool Game for Attractive People: +"Strong Bad's Cool Game for Attractive People": files: - /Telltale Games/8-bit is Enough/*.save: - tags: - - save - when: - - store: steam - /Telltale Games/8-bit is Enough/prefs.prop: - tags: - - config - when: - - store: steam - /Telltale Games/Baddest of the Bands/*.save: - tags: - - save - when: - - store: steam - /Telltale Games/Baddest of the Bands/prefs.prop: - tags: - - config - when: - - store: steam - /Telltale Games/Dangeresque 3/*.save: - tags: - - save - when: - - store: steam - /Telltale Games/Dangeresque 3/prefs.prop: - tags: - - config - when: - - store: steam - /Telltale Games/Episode 1 - Homestar Ruiner/*.save: + "/Telltale Games/8-bit is Enough/*.save": tags: - save when: - os: windows - /Telltale Games/Episode 1 - Homestar Ruiner/prefs.prop: + store: steam + "/Telltale Games/8-bit is Enough/prefs.prop": tags: - config when: - os: windows - /Telltale Games/Episode 2 - Strong Badia the Free/*.save: + store: steam + "/Telltale Games/Baddest of the Bands/*.save": tags: - save when: - os: windows - /Telltale Games/Episode 2 - Strong Badia the Free/prefs.prop: + store: steam + "/Telltale Games/Baddest of the Bands/prefs.prop": tags: - config when: - os: windows - /Telltale Games/Episode 3 - Baddest of the Bands/*.save: + store: steam + "/Telltale Games/Dangeresque 3/*.save": tags: - save when: - os: windows - /Telltale Games/Episode 3 - Baddest of the Bands/prefs.prop: + store: steam + "/Telltale Games/Dangeresque 3/prefs.prop": tags: - config when: - os: windows - /Telltale Games/Episode 4 - Dangeresque 3/*.save: + store: steam + "/Telltale Games/Episode 1 - Homestar Ruiner/*.save": tags: - save when: - os: windows - /Telltale Games/Episode 4 - Dangeresque 3/prefs.prop: + "/Telltale Games/Episode 1 - Homestar Ruiner/prefs.prop": tags: - config when: - os: windows - /Telltale Games/Episode 5 - 8-bit is Enough/*.save: + "/Telltale Games/Episode 2 - Strong Badia the Free/*.save": tags: - save when: - os: windows - /Telltale Games/Episode 5 - 8-bit is Enough/prefs.prop: + "/Telltale Games/Episode 2 - Strong Badia the Free/prefs.prop": tags: - config when: - os: windows - /Telltale Games/Homestar Ruiner/*.save: + "/Telltale Games/Episode 3 - Baddest of the Bands/*.save": tags: - save when: - - store: steam - /Telltale Games/Homestar Ruiner/prefs.prop: + - os: windows + "/Telltale Games/Episode 3 - Baddest of the Bands/prefs.prop": tags: - config when: - - store: steam - /Telltale Games/Strong Badia the Free/*.save: + - os: windows + "/Telltale Games/Episode 4 - Dangeresque 3/*.save": tags: - save when: - - store: steam - /Telltale Games/Strong Badia the Free/prefs.prop: + - os: windows + "/Telltale Games/Episode 4 - Dangeresque 3/prefs.prop": tags: - config when: - - store: steam + - os: windows + "/Telltale Games/Episode 5 - 8-bit is Enough/*.save": + tags: + - save + when: + - os: windows + "/Telltale Games/Episode 5 - 8-bit is Enough/prefs.prop": + tags: + - config + when: + - os: windows + "/Telltale Games/Homestar Ruiner/*.save": + tags: + - save + when: + - os: windows + store: steam + "/Telltale Games/Homestar Ruiner/prefs.prop": + tags: + - config + when: + - os: windows + store: steam + "/Telltale Games/Strong Badia the Free/*.save": + tags: + - save + when: + - os: windows + store: steam + "/Telltale Games/Strong Badia the Free/prefs.prop": + tags: + - config + when: + - os: windows + store: steam gog: id: 1441707255 installDir: Homestar Ruiner: {} launch: - /Homestar 101.app: + "/Homestar 101.app": - when: - os: mac store: steam - /Homestar101.exe: + "/Homestar101.exe": - when: - os: windows store: steam @@ -509314,22 +510672,22 @@ Strong Bad's Cool Game for Attractive People: id: 8340 Stronghold: files: - /GAME.CFG: + "/GAME.CFG": tags: - config when: - os: dos - /HIGH.TXT: + "/HIGH.TXT": tags: - save when: - os: dos - /STRONG.SAV/SAVE.***: + "/STRONG.SAV/SAVE.***": tags: - save when: - os: dos - /STRONG.SAV/SAVES.TXT: + "/STRONG.SAV/SAVES.TXT": tags: - save when: @@ -509339,19 +510697,19 @@ Stronghold: installDir: D&D Stronghold Kingdom Simulator: {} launch: - /Launcher/Launcher.exe: + "/Launcher/Launcher.exe": - when: - store: steam steam: id: 1904650 Stronghold (2001): files: - /Stronghold/Saves: + "/Stronghold/Saves": tags: - save when: - os: windows - /Stronghold/stronghold.cfg: + "/Stronghold/stronghold.cfg": tags: - config when: @@ -509364,19 +510722,19 @@ Stronghold (2001): installDir: Stronghold: {} launch: - /Stronghold.exe: + "/Stronghold.exe": - when: - store: steam steam: id: 40950 Stronghold 2: files: - /Stronghold 2/Saves: + "/Stronghold 2/Saves": tags: - save when: - os: windows - /Stronghold 2/Stronghold2.GraphicsSettings.xml: + "/Stronghold 2/Stronghold2.GraphicsSettings.xml": tags: - config when: @@ -509387,7 +510745,7 @@ Stronghold 2: installDir: Stronghold 2: {} launch: - /FFLauncher.exe: + "/FFLauncher.exe": - when: - os: windows store: steam @@ -509395,17 +510753,17 @@ Stronghold 2: id: 40960 Stronghold 3: files: - /Stronghold 3/Profiles/options.xml: + "/Stronghold 3/Profiles/options.xml": tags: - config when: - os: windows - /Stronghold 3/Saved Games: + "/Stronghold 3/Saved Games": tags: - save when: - os: windows - /firefly/stronghold3: + "/firefly/stronghold3": tags: - config - save @@ -509423,17 +510781,17 @@ Stronghold 3: installDir: Stronghold3: {} launch: - /Stronghold 3.app: + "/Stronghold 3.app": - when: - os: mac store: steam - workingDir: /bin/win32_release - /bin/win32_release/Stronghold3.exe: + workingDir: "/bin/win32_release" + "/bin/win32_release/Stronghold3.exe": - when: - os: windows store: steam - workingDir: /bin/win32_release - /stronghold3: + workingDir: "/bin/win32_release" + "/stronghold3": - when: - os: linux store: steam @@ -509441,22 +510799,22 @@ Stronghold 3: id: 47400 Stronghold Crusader: files: - /Stronghold Crusader Extreme/Saves: + "/Stronghold Crusader Extreme/Saves": tags: - save when: - os: windows - /Stronghold Crusader Extreme/crusader.cfg: + "/Stronghold Crusader Extreme/crusader.cfg": tags: - config when: - os: windows - /Stronghold Crusader/Saves: + "/Stronghold Crusader/Saves": tags: - save when: - os: windows - /Stronghold Crusader/crusader.cfg: + "/Stronghold Crusader/crusader.cfg": tags: - config when: @@ -509469,7 +510827,7 @@ Stronghold Crusader: installDir: Stronghold Crusader Extreme: {} launch: - /Stronghold Crusader.exe: + "/Stronghold Crusader.exe": - when: - os: windows store: steam @@ -509477,12 +510835,12 @@ Stronghold Crusader: id: 40970 Stronghold Crusader 2: files: - /Stronghold Crusader 2/Profiles/options.xml: + "/Stronghold Crusader 2/Profiles/options.xml": tags: - config when: - os: windows - /Stronghold Crusader 2/Saved Games: + "/Stronghold Crusader 2/Saved Games": tags: - save when: @@ -509491,13 +510849,13 @@ Stronghold Crusader 2: id: 1433852499 id: gogExtra: - - 1443001674 - - 1443001244 - - 1443000530 - 1443000342 + - 1443000530 + - 1443001244 - 1443001420 - - 1450362950 + - 1443001674 - 1450362827 + - 1450362950 steamExtra: - 316470 - 317590 @@ -509516,11 +510874,11 @@ Stronghold Crusader 2: installDir: Stronghold Crusader 2: {} launch: - /bin/win32_release/Crusader2.exe: + "/bin/win32_release/Crusader2.exe": - when: - os: windows store: steam - workingDir: /bin/win32_release + workingDir: "/bin/win32_release" steam: id: 232890 Stronghold Kingdoms: @@ -509530,20 +510888,20 @@ Stronghold Kingdoms: installDir: Stronghold Kingdoms: {} launch: - /StrongholdKingdoms.exe: - - arguments: '-steam' + "/StrongholdKingdoms.exe": + - arguments: "-steam" when: - store: steam steam: id: 47410 Stronghold Legends: files: - /Stronghold Legends/Saves: + "/Stronghold Legends/Saves": tags: - save when: - os: windows - /Stronghold Legends/StrongholdLegends.GraphicsSettings.xml: + "/Stronghold Legends/StrongholdLegends.GraphicsSettings.xml": tags: - config when: @@ -509554,48 +510912,48 @@ Stronghold Legends: installDir: Stronghold Legends: {} launch: - /FFLauncher.exe: + "/FFLauncher.exe": - when: - os: windows store: steam steam: id: 40980 -'Stronghold: A Hero''s Fate': +"Stronghold: A Hero's Fate": installDir: Stronghold A Heros Fate: {} launch: - /Stronghold A Heros Fate.app/Contents/MacOS/Stronghold A Heros Fate: + "/Stronghold A Heros Fate.app/Contents/MacOS/Stronghold A Heros Fate": - when: - os: mac store: steam - /StrongholdAHerosFate: + "/StrongholdAHerosFate": - when: - os: linux store: steam - /StrongholdAHerosFate.exe: + "/StrongholdAHerosFate.exe": - when: - os: windows store: steam steam: id: 955360 -'Stronghold: Definitive Edition': +"Stronghold: Definitive Edition": files: - /AppData/LocalLow/Firefly Studios/Stronghold 1 Definitive Edition/*.cfg: + "/AppData/LocalLow/Firefly Studios/Stronghold 1 Definitive Edition/*.cfg": tags: - config when: - os: windows - /AppData/LocalLow/Firefly Studios/Stronghold 1 Definitive Edition/Maps: + "/AppData/LocalLow/Firefly Studios/Stronghold 1 Definitive Edition/Maps": tags: - save when: - os: windows - /AppData/LocalLow/Firefly Studios/Stronghold 1 Definitive Edition/Saves: + "/AppData/LocalLow/Firefly Studios/Stronghold 1 Definitive Edition/Saves": tags: - save when: - os: windows - /AppData/LocalLow/Firefly Studios/Stronghold 1 Definitive Edition/UserWorkshopMaps: + "/AppData/LocalLow/Firefly Studios/Stronghold 1 Definitive Edition/UserWorkshopMaps": tags: - save when: @@ -509605,14 +510963,14 @@ Stronghold Legends: - 2433890 steam: id: 2140020 -'Stronghold: Warlords': +"Stronghold: Warlords": files: - /Stronghold Warlords/Profiles/options.xml: + "/Stronghold Warlords/Profiles/options.xml": tags: - config when: - os: windows - /Stronghold Warlords/Saved Games: + "/Stronghold Warlords/Saved Games": tags: - save when: @@ -509621,11 +510979,11 @@ Stronghold Legends: id: 1491012905 id: gogExtra: - - 1153246314 - 1114792710 - - 2066158581 + - 1153246314 - 1658261489 - 2005777684 + - 2066158581 steamExtra: - 1575250 - 1615010 @@ -509635,11 +510993,11 @@ Stronghold Legends: installDir: Stronghold Warlords: {} launch: - /bin/win32_release/StrongholdWarlords.exe: + "/bin/win32_release/StrongholdWarlords.exe": - when: - os: windows store: steam - workingDir: /bin/win32_release + workingDir: "/bin/win32_release" steam: id: 907650 Strongmind: @@ -509654,11 +511012,14 @@ Struckd - 3D Game Creator: installDir: Struckd - 3D Game Creator: {} launch: - /Struckd.exe: + "/Struckd.exe": - when: - bit: 32 os: windows store: steam + - bit: 64 + os: windows + store: steam steam: id: 759530 Structure: @@ -509673,7 +511034,7 @@ Struggle For Light: installDir: Struggle For Light: {} launch: - /Struggle For Light.exe: + "/Struggle For Light.exe": - when: - os: windows store: steam @@ -509686,12 +511047,12 @@ Struggle for Survival VR: id: 822510 Struggling: files: - /AppData/LocalLow/ChasingRatsGames/Struggling//save-global.json: + "/AppData/LocalLow/ChasingRatsGames/Struggling//save-global.json": tags: - config when: - os: windows - /AppData/LocalLow/ChasingRatsGames/Struggling//save-slot-*.json: + "/AppData/LocalLow/ChasingRatsGames/Struggling//save-slot-*.json": tags: - save when: @@ -509699,7 +511060,7 @@ Struggling: installDir: Struggling: {} launch: - /Struggling.exe: + "/Struggling.exe": - when: - bit: 64 os: windows @@ -509712,12 +511073,12 @@ Struggling: id: 1035560 Stubbs the Zombie in Rebel Without a Pulse: files: - /userdata//7800: + "/userdata//7800": tags: - save when: - store: steam - /My Games/Stubbs the Zombie: + "/My Games/Stubbs the Zombie": tags: - config - save @@ -509728,17 +511089,17 @@ Stubbs the Zombie in Rebel Without a Pulse: installDir: Stubbs the Zombie: {} launch: - /StubbsTheZombie.exe: + "/StubbsTheZombie.exe": - when: - bit: 64 store: steam steam: id: 7800 -'Study of Unusual: Forest of Secrets': +"Study of Unusual: Forest of Secrets": installDir: Study of Unusual Forest of Secrets: {} launch: - /StudyOfUnusual.exe: + "/StudyOfUnusual.exe": - when: - os: windows store: steam @@ -509748,12 +511109,12 @@ Stumble Guys: installDir: Stumble Guys: {} launch: - /Stumble Guys.exe: + "/Stumble Guys.exe": - when: - bit: 64 os: windows store: steam - /stumble.app: + "/stumble.app": - when: - os: mac store: steam @@ -509770,12 +511131,12 @@ Stunt Corgi VR: id: 665080 Stunt GP: files: - /*.cfg: + "/*.cfg": tags: - config when: - os: windows - /save: + "/save": tags: - save when: @@ -509784,7 +511145,7 @@ Stunt Hill: installDir: Stunt Hill: {} launch: - /StuntHill.exe: + "/StuntHill.exe": - when: - store: steam steam: @@ -509805,24 +511166,24 @@ Stunt Kite Party: installDir: StuntKiteParty: {} launch: - /StuntKiteParty.exe: + "/StuntKiteParty.exe": - when: - store: steam steam: id: 960240 Stunt Rally: files: - '/Stunt Rally [version number]/config': + "/Stunt Rally [version number]/config": tags: - config when: - os: windows - /stuntrally: + "/stuntrally": tags: - save when: - os: windows - /stuntrally: + "/stuntrally": tags: - save when: @@ -509831,7 +511192,7 @@ Stunt Simulator Multiplayer: installDir: Stunt Simulator Multiplayer: {} launch: - /StuntSimulatorMultiplayer.exe: + "/StuntSimulatorMultiplayer.exe": - when: - os: windows store: steam @@ -509841,7 +511202,7 @@ Stunt Toys: installDir: Stunt Toys: {} launch: - /WindowsNoEditor/StuntToysGame.exe: + "/WindowsNoEditor/StuntToysGame.exe": - when: - os: windows store: steam @@ -509851,11 +511212,11 @@ StuntMania Reloaded: installDir: StuntMANIA Reloaded: {} launch: - /StuntMANIA Reloaded.app: + "/StuntMANIA Reloaded.app": - when: - os: mac store: steam - /StuntMANIA Reloaded.exe: + "/StuntMANIA Reloaded.exe": - when: - os: windows store: steam @@ -509865,11 +511226,11 @@ Stupid Bat: installDir: Stupid Bat: {} launch: - /Stupid-Bat.app: + "/Stupid-Bat.app": - when: - os: mac store: steam - /Stupid-Bat.exe: + "/Stupid-Bat.exe": - when: - os: windows store: steam @@ -509882,12 +511243,12 @@ Stupid Cupid: id: 974160 Stupid Invaders: files: - /Save/*.dat: + "/Save/*.dat": tags: - save when: - os: windows - /Save/config.dat: + "/Save/config.dat": tags: - config when: @@ -509896,11 +511257,11 @@ Stupid Quest - Medieval Adventures: installDir: Stupid Quest: {} launch: - /Stupid Quest.app: + "/Stupid Quest.app": - when: - os: mac store: steam - /Stupid Quest.exe: + "/Stupid Quest.exe": - when: - os: windows store: steam @@ -509910,37 +511271,37 @@ Stupid Raft Battle Simulator: installDir: Stupid Raft Battle Simulator: {} launch: - /SRBS.app: + "/SRBS.app": - when: - os: mac store: steam - /SRBS.exe: + "/SRBS.exe": - when: - os: windows store: steam - /SRBS.sh: + "/SRBS.sh": - when: - os: linux store: steam steam: id: 598240 -'SturmFront - The Mutant War: Übel Edition': +"SturmFront - The Mutant War: Übel Edition": installDir: SturmFront - The Mutant War Übel Edition: {} launch: - /SturmFront_TheMutantWar_ÜbelEdition.exe: + "/SturmFront_TheMutantWar_ÜbelEdition.exe": - when: - store: steam steam: id: 501530 -'Stygian: Reign of the Old Ones': +"Stygian: Reign of the Old Ones": files: - /AppData/LocalLow/Cultic Games/STYGIAN/SavedGames: + "/AppData/LocalLow/Cultic Games/STYGIAN/SavedGames": tags: - save when: - os: windows - /AppData/LocalLow/Cultic Games/STYGIAN/Settings.dat: + "/AppData/LocalLow/Cultic Games/STYGIAN/Settings.dat": tags: - config when: @@ -509950,15 +511311,15 @@ Stupid Raft Battle Simulator: installDir: Stygian Reign of the Old Ones: {} launch: - /STYGIAN.app/Contents/MacOS/STEAM: + "/STYGIAN.app/Contents/MacOS/STEAM": - when: - os: mac store: steam - /STYGIAN.exe: + "/STYGIAN.exe": - when: - os: windows store: steam - /STYGIAN.x86_64: + "/STYGIAN.x86_64": - when: - bit: 64 os: linux @@ -509969,14 +511330,14 @@ Stupid Raft Battle Simulator: - config steam: id: 779290 -'Styx: Master of Shadows': +"Styx: Master of Shadows": files: - /My Games/Styx/Save: + "/My Games/Styx/Save": tags: - save when: - os: windows - /My Games/Styx/StyxGame/Config: + "/My Games/Styx/StyxGame/Config": tags: - config when: @@ -509986,28 +511347,28 @@ Stupid Raft Battle Simulator: installDir: Styx: {} launch: - /Binaries/Win32/StyxGame.exe: + "/Binaries/Win32/StyxGame.exe": - when: - bit: 32 os: windows store: steam - workingDir: /Binaries/Win32 - /Binaries/Win64/StyxGame.exe: + workingDir: "/Binaries/Win32" + "/Binaries/Win64/StyxGame.exe": - when: - bit: 64 os: windows store: steam - workingDir: /Binaries/Win64 + workingDir: "/Binaries/Win64" steam: id: 242640 -'Styx: Shards of Darkness': +"Styx: Shards of Darkness": files: - /Styx2/Saved/Config/WindowsNoEditor: + "/Styx2/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /Styx2/Saved/SaveGames: + "/Styx2/Saved/SaveGames": tags: - save when: @@ -510020,8 +511381,8 @@ Stupid Raft Battle Simulator: installDir: Styx Shards of Darkness: {} launch: - /Styx2.exe: - - arguments: '-SaveToUserDir' + "/Styx2.exe": + - arguments: "-SaveToUserDir" when: - bit: 64 os: windows @@ -510032,8 +511393,8 @@ Su Hack: installDir: Su Hack: {} launch: - /suhack.exe: - - arguments: '-windowed' + "/suhack.exe": + - arguments: "-windowed" when: - os: windows store: steam @@ -510043,7 +511404,7 @@ Sub Chase Online: installDir: Sub Chase Online: {} launch: - /subchase-client-v2.13.0.0.exe: + "/subchase-client-v2.13.0.0.exe": - when: - bit: 64 os: windows @@ -510052,12 +511413,12 @@ Sub Chase Online: id: 1077360 Sub Command: files: - /scenario/*.mcs: + "/scenario/*.mcs": tags: - save when: - os: windows - /subcommand.ini: + "/subcommand.ini": tags: - config when: @@ -510065,7 +511426,7 @@ Sub Command: installDir: Sub Command: {} launch: - /SteamRun.exe: + "/SteamRun.exe": - when: - store: steam steam: @@ -510074,15 +511435,15 @@ Sub Rosa: installDir: Sub Rosa: {} launch: - /subrosa.app: + "/subrosa.app": - when: - os: mac store: steam - /subrosa.exe: + "/subrosa.exe": - when: - os: windows store: steam - /subrosa.x64: + "/subrosa.x64": - when: - bit: 64 os: linux @@ -510093,7 +511454,7 @@ Sub Terra Draconis: installDir: Sub Terra Draconis: {} launch: - /Draconis.exe: + "/Draconis.exe": - when: - os: windows store: steam @@ -510103,7 +511464,7 @@ Subaeria: installDir: Subaeria: {} launch: - /Subaeria.exe: + "/Subaeria.exe": - when: - os: windows store: steam @@ -510113,7 +511474,7 @@ SubaraCity: installDir: SUBARACITY: {} launch: - /SubaraCity.exe: + "/SubaraCity.exe": - when: - os: windows store: steam @@ -510123,12 +511484,12 @@ Subcube: installDir: Subcube: {} launch: - /subcube.exe: + "/subcube.exe": - when: - bit: 64 os: windows store: steam - /subcube.x86_64: + "/subcube.x86_64": - when: - bit: 64 os: linux @@ -510139,7 +511500,7 @@ Subdivision Infinity DX: installDir: Subdivision Infinity: {} launch: - /Subdivision.exe: + "/Subdivision.exe": - when: - bit: 64 os: windows @@ -510148,13 +511509,13 @@ Subdivision Infinity DX: id: 908790 Subject 13: files: - /AppData/LocalLow/Microids/Subject13: + "/AppData/LocalLow/Microids/Subject13": tags: - config - save when: - os: windows - /Library/Application Support/unity.Microids.Subject13: + "/Library/Application Support/unity.Microids.Subject13": tags: - save when: @@ -510164,11 +511525,11 @@ Subject 13: installDir: Subject 13: {} launch: - /Subject13.app: + "/Subject13.app": - when: - os: mac store: steam - /Subject13.exe: + "/Subject13.exe": - when: - os: windows store: steam @@ -510183,11 +511544,11 @@ Subject 9: installDir: Subject 9: {} launch: - /Subject9.app: + "/Subject9.app": - when: - os: mac store: steam - /Subject9.exe: + "/Subject9.exe": - when: - os: windows store: steam @@ -510197,7 +511558,7 @@ Subject A-119: installDir: Subject A-119: {} launch: - /Subject_A119.exe: + "/Subject_A119.exe": - when: - os: windows store: steam @@ -510205,19 +511566,19 @@ Subject A-119: id: 530820 Sublevel Zero Redux: files: - /PlayerData/Control: + "/PlayerData/Control": tags: - config when: - os: windows - /PlayerData/Save: + "/PlayerData/Save": tags: - save when: - os: windows - os: mac - os: linux - /PlayerData/Settings: + "/PlayerData/Settings": tags: - config when: @@ -510227,16 +511588,16 @@ Sublevel Zero Redux: installDir: Sublevel Zero: {} launch: - /SublevelZero.app: + "/SublevelZero.app": - when: - os: mac store: steam - /SublevelZero.exe: - - arguments: '-vrmode none' + "/SublevelZero.exe": + - arguments: "-vrmode none" when: - os: windows store: steam - /SublevelZero.x86: + "/SublevelZero.x86": - when: - os: linux store: steam @@ -510246,20 +511607,20 @@ Sublevel Zero Redux: - config steam: id: 327880 -'Subliminal Realms: The Masterpiece': +"Subliminal Realms: The Masterpiece": installDir: - Subliminal Realms The Masterpiece Collector's Edition: {} + "Subliminal Realms The Masterpiece Collector's Edition": {} launch: - /SubliminalRealms_TheMasterpiece_CE.exe: + "/SubliminalRealms_TheMasterpiece_CE.exe": - when: - store: steam steam: id: 565100 -'Submachine: Legacy': +"Submachine: Legacy": installDir: submachine: {} launch: - /submachine.exe: + "/submachine.exe": - when: - os: windows store: steam @@ -510269,11 +511630,11 @@ Submarine Attack!: installDir: Submarine Attack!: {} launch: - /MacOS.app/Contents/MacOS/MacOS: + "/MacOS.app/Contents/MacOS/MacOS": - when: - os: mac store: steam - /SubmarineAttack.exe: + "/SubmarineAttack.exe": - when: - os: windows store: steam @@ -510281,12 +511642,12 @@ Submarine Attack!: id: 1068910 Submarine Titans: files: - /savegame/(profile): + "/savegame/(profile)": tags: - save when: - os: windows - /savegame/(profile)/PL_LOG.DK*: + "/savegame/(profile)/PL_LOG.DK*": tags: - config when: @@ -510296,7 +511657,7 @@ Submarine Titans: installDir: Submarine Titans: {} launch: - /ST.exe: + "/ST.exe": - when: - os: windows store: steam @@ -510306,7 +511667,7 @@ SubmarineCraft: installDir: SubmarineCraft: {} launch: - /SubmarineCraft.exe: + "/SubmarineCraft.exe": - when: - bit: 64 os: windows @@ -510315,12 +511676,12 @@ SubmarineCraft: id: 965250 Submerged: files: - /Submerged/Saved/Config/WindowsNoEditor: + "/Submerged/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /Submerged/Saved/SaveGames: + "/Submerged/Saved/SaveGames": tags: - save when: @@ -510328,42 +511689,44 @@ Submerged: installDir: Submerged: {} launch: - /Submerged/Binaries/Linux/Submerged: + "/Submerged/Binaries/Linux/Submerged": - when: - bit: 64 os: linux store: steam - workingDir: /Submerged/Binaries/Linux - /Submerged/Binaries/Win64/Submerged-Win64-Shipping.exe: + workingDir: "/Submerged/Binaries/Linux" + "/Submerged/Binaries/Win64/Submerged-Win64-Shipping.exe": - when: - bit: 64 os: windows store: steam - workingDir: /Submerged/Binaries/Win64 + workingDir: "/Submerged/Binaries/Win64" steam: id: 301860 -'Submerged: Hidden Depths': +"Submerged: Hidden Depths": files: - /SubmergedHiddenDepths/EGS/Saved/Config/WindowsNoEditor: + "/SubmergedHiddenDepths/EGS/Saved/Config/WindowsNoEditor": tags: - config when: - - store: epic - /SubmergedHiddenDepths/EGS/Saved/SaveGames: + - os: windows + "/SubmergedHiddenDepths/EGS/Saved/SaveGames": tags: - save when: - - store: epic - /SubmergedHiddenDepths/Steam/Saved/Config/WindowsNoEditor: + - os: windows + "/SubmergedHiddenDepths/Steam/Saved/Config/WindowsNoEditor": tags: - config when: - - store: steam - /SubmergedHiddenDepths/Steam/Saved/SaveGames: + - os: windows + store: steam + "/SubmergedHiddenDepths/Steam/Saved/SaveGames": tags: - save when: - - store: steam + - os: windows + store: steam id: steamExtra: - 1732080 @@ -510371,7 +511734,7 @@ Submerged: Submerged Hidden Depths: {} steam: id: 1614270 -'Submerged: VR Escape the Room': +"Submerged: VR Escape the Room": installDir: Submerged VR Escape the Room: {} steam: @@ -510380,7 +511743,7 @@ Submersed: installDir: Submersed: {} launch: - /Submersed.exe: + "/Submersed.exe": - when: - os: windows store: steam @@ -510393,32 +511756,32 @@ Submersed: id: 1210060 Subnautica: files: - /SNAppData/SavedGames: + "/SNAppData/SavedGames": tags: - save when: - os: windows - /SNAppData/SavedGames/options/options.bin: + "/SNAppData/SavedGames/options/options.bin": tags: - config when: - os: windows - /AppData/LocalLow/Unknown Worlds/Subnautica/Subnautica/SavedGames: + "/AppData/LocalLow/Unknown Worlds/Subnautica/Subnautica/SavedGames": tags: - save when: - - store: epic - /AppData/LocalLow/Unknown Worlds/Subnautica/Subnautica/SavedGames/options/options.bin: + - os: windows + "/AppData/LocalLow/Unknown Worlds/Subnautica/Subnautica/SavedGames/options/options.bin": tags: - config when: - - store: epic - /Library/Application Support/unity.Unknown Worlds.Subnautica/Subnautica/SavedGames: + - os: windows + "/Library/Application Support/unity.Unknown Worlds.Subnautica/Subnautica/SavedGames": tags: - save when: - os: mac - /Library/Application Support/unity.Unknown Worlds.Subnautica/Subnautica/SavedGames/options/options.bin: + "/Library/Application Support/unity.Unknown Worlds.Subnautica/Subnautica/SavedGames/options/options.bin": tags: - config when: @@ -510426,41 +511789,41 @@ Subnautica: installDir: Subnautica: {} launch: - /Subnautica.app: + "/Subnautica.app": - when: - os: mac store: steam - /Subnautica.exe: - - arguments: '-silent-crashes -vrmode none' + "/Subnautica.exe": + - arguments: "-silent-crashes -vrmode none" when: - bit: 64 os: windows store: steam - /Subnautica32.exe: + "/Subnautica32.exe": - when: - bit: 32 os: windows store: steam steam: id: 264710 -'Subnautica: Below Zero': +"Subnautica: Below Zero": files: - /SNAppData/SavedGames: + "/SNAppData/SavedGames": tags: - save when: - os: windows - /AppData/LocalLow/Unknown Worlds/Subnautica Below Zero: + "/AppData/LocalLow/Unknown Worlds/Subnautica Below Zero": tags: - config when: - os: windows - /AppData/LocalLow/Unknown Worlds/Subnautica Below Zero/SubnauticaZero/SavedGames: + "/AppData/LocalLow/Unknown Worlds/Subnautica Below Zero/SubnauticaZero/SavedGames": tags: - save when: - - store: epic - /Library/Application Support/unity.Unknown Worlds.SubnauticaZero/SubnauticaZero/SavedGames: + - os: windows + "/Library/Application Support/unity.Unknown Worlds.SubnauticaZero/SubnauticaZero/SavedGames": tags: - save when: @@ -510468,17 +511831,17 @@ Subnautica: installDir: SubnauticaZero: {} launch: - /Subnautica32.exe: + "/Subnautica32.exe": - when: - bit: 32 os: windows store: steam - /SubnauticaZero.app: + "/SubnauticaZero.app": - when: - os: mac store: steam - /SubnauticaZero.exe: - - arguments: '-silent-crashes -vrmode none' + "/SubnauticaZero.exe": + - arguments: "-silent-crashes -vrmode none" when: - bit: 64 os: windows @@ -510489,7 +511852,7 @@ Subscribe & Punch!: installDir: Subscribe & Punch!: {} launch: - /Subscribe&Punch.exe: + "/Subscribe&Punch.exe": - when: - os: windows store: steam @@ -510499,26 +511862,26 @@ Subsideria: installDir: Subsideria: {} launch: - /Subsideria.app: + "/Subsideria.app": - when: - os: mac store: steam - /Subsideria_32.exe: + "/Subsideria_32.exe": - when: - bit: 32 os: windows store: steam - /Subsideria_64.exe: + "/Subsideria_64.exe": - when: - bit: 64 os: windows store: steam - /Subsideria_Linux_32.x86: + "/Subsideria_Linux_32.x86": - when: - bit: 32 os: linux store: steam - /Subsideria_Linux_64.x86_64: + "/Subsideria_Linux_64.x86_64": - when: - bit: 64 os: linux @@ -510529,7 +511892,7 @@ Subsiege: installDir: Subsiege: {} launch: - /Submerge.exe: + "/Submerge.exe": - when: - bit: 64 os: windows @@ -510538,12 +511901,12 @@ Subsiege: id: 338640 Subsistence: files: - /Subsistence/Binaries/Win32: + "/Subsistence/Binaries/Win32": tags: - save when: - os: windows - /Subsistence/UDKGame/Config: + "/Subsistence/UDKGame/Config": tags: - config when: @@ -510551,14 +511914,14 @@ Subsistence: installDir: Subsistence: {} launch: - /Binaries/Win32/UDK.exe: - - arguments: '-forcelogflush' + "/Binaries/Win32/UDK.exe": + - arguments: "-forcelogflush" when: - bit: 32 os: windows store: steam - /Binaries/Win64/UDK.exe: - - arguments: '-forcelogflush' + "/Binaries/Win64/UDK.exe": + - arguments: "-forcelogflush" when: - bit: 64 os: windows @@ -510569,11 +511932,11 @@ Subspace Continuum: installDir: Continuum: {} launch: - /Continuum.exe: + "/Continuum.exe": - when: - os: windows store: steam - /run.sh: + "/run.sh": - when: - os: linux store: steam @@ -510581,17 +511944,17 @@ Subspace Continuum: id: 352700 Subsurface Circular: files: - /AppData/LocalLow/Bithell Games/Subsurface Circular: + "/AppData/LocalLow/Bithell Games/Subsurface Circular": tags: - save when: - os: windows - /AppData/LocalLow/Bithell Games/Subsurface Circular/macrosave.sav: + "/AppData/LocalLow/Bithell Games/Subsurface Circular/macrosave.sav": tags: - config when: - os: windows - /Library/Application Support/Bithell Games/Subsurface Circular: + "/Library/Application Support/Bithell Games/Subsurface Circular": tags: - save when: @@ -510599,11 +511962,11 @@ Subsurface Circular: installDir: Subsurface Circular: {} launch: - /Subsurface Circular.app: + "/Subsurface Circular.app": - when: - os: mac store: steam - /Subsurface Circular.exe: + "/Subsurface Circular.exe": - when: - os: windows store: steam @@ -510615,12 +511978,12 @@ Subsurface Circular: id: 676820 Subterra: files: - /Game.ini: + "/Game.ini": tags: - config when: - os: windows - /Subterra: + "/Subterra": tags: - save when: @@ -510628,7 +511991,7 @@ Subterra: installDir: Subterra: {} launch: - /Subterra.exe: + "/Subterra.exe": - when: - os: windows store: steam @@ -510636,12 +511999,12 @@ Subterra: id: 521590 Subterrain: files: - /AppData/LocalLow/Pixellore/Subterrain/Saves: + "/AppData/LocalLow/Pixellore/Subterrain/Saves": tags: - save when: - os: windows - /AppData/LocalLow/Pixellore/Subterrain/Settings: + "/AppData/LocalLow/Pixellore/Subterrain/Settings": tags: - config when: @@ -510654,15 +512017,15 @@ Subterrain: installDir: Subterrain: {} launch: - /Subterrain.exe: + "/Subterrain.exe": - when: - os: windows store: steam - - arguments: '-popupwindow' + - arguments: "-popupwindow" when: - os: windows store: steam - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" when: - os: windows store: steam @@ -510672,7 +512035,7 @@ Subterranean Animism: installDir: th11: {} launch: - /th11.exe: + "/th11.exe": - when: - os: windows store: steam @@ -510682,7 +512045,7 @@ Subterraneus: installDir: Subterraneus: {} launch: - /Subterraneus.exe: + "/Subterraneus.exe": - when: - store: steam steam: @@ -510691,11 +512054,11 @@ Subterrarium: installDir: Subterrarium: {} launch: - /Subterrarium.app: + "/Subterrarium.app": - when: - os: mac store: steam - /Subterrarium.exe: + "/Subterrarium.exe": - when: - os: windows store: steam @@ -510709,12 +512072,12 @@ Suburban Scavengers: id: 687950 Subverse: files: - /Subverse/Saved/Config/WindowsNoEditor: + "/Subverse/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /Subverse/Saved/SaveGames: + "/Subverse/Saved/SaveGames": tags: - save when: @@ -510724,7 +512087,7 @@ Subverse: installDir: Subverse: {} launch: - /Subverse.exe: + "/Subverse.exe": - when: - store: steam steam: @@ -510735,17 +512098,17 @@ Subwar 2050: installDir: Subwar 2050: {} launch: - /DOSBox/dosbox.app/Contents/MacOS/DOSBox: - - arguments: '-conf \"./dosboxSUBWAR.conf\" -conf \"./dosboxSUBWAR_single.conf\" -noconsole' + "/DOSBox/dosbox.app/Contents/MacOS/DOSBox": + - arguments: "-conf \\\"./dosboxSUBWAR.conf\\\" -conf \\\"./dosboxSUBWAR_single.conf\\\" -noconsole" when: - os: mac store: steam - /Launch Subwar 2050.bat: + "/Launch Subwar 2050.bat": - when: - os: windows store: steam - /dosbox/dosbox: - - arguments: '-conf \"./dosboxSUBWAR.conf\" -conf \"./dosboxSUBWAR_single.conf\" -noconsole' + "/dosbox/dosbox": + - arguments: "-conf \\\"./dosboxSUBWAR.conf\\\" -conf \\\"./dosboxSUBWAR_single.conf\\\" -noconsole" when: - os: linux store: steam @@ -510755,11 +512118,11 @@ Subway Construction Simulator 2018: installDir: SUBWAY CONSTRUCTION SIMULATOR 2017: {} launch: - /CONSTR_MAC_STEAM_LAST.app: + "/CONSTR_MAC_STEAM_LAST.app": - when: - os: mac store: steam - /CONSTR_WIN_STEAM_LAST.exe: + "/CONSTR_WIN_STEAM_LAST.exe": - when: - os: windows store: steam @@ -510767,12 +512130,12 @@ Subway Construction Simulator 2018: id: 730380 Subway Midnight: files: - /SubwayAfterMidnight/Saved/Config/WindowsNoEditor: + "/SubwayAfterMidnight/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /SubwayAfterMidnight/Saved/SaveGames: + "/SubwayAfterMidnight/Saved/SaveGames": tags: - save when: @@ -510780,7 +512143,7 @@ Subway Midnight: installDir: Subway Midnight: {} launch: - /SubwayMidnight/SubwayAfterMidnight.exe: + "/SubwayMidnight/SubwayAfterMidnight.exe": - when: - os: windows store: steam @@ -510790,11 +512153,11 @@ Subway Simulator: installDir: Subway Simulator: {} launch: - /Subway Simulator.app/Contents/MacOS/Subway Simulator: + "/Subway Simulator.app/Contents/MacOS/Subway Simulator": - when: - os: mac store: steam - /Subway Simulator.exe: + "/Subway Simulator.exe": - when: - os: windows store: steam @@ -510804,7 +512167,7 @@ Subway Surfers 2018 - Pet vs Police: installDir: Subway Surfers 2018 - Pet vs Police: {} launch: - /PetSurfer.exe: + "/PetSurfer.exe": - when: - os: windows store: steam @@ -510814,7 +512177,7 @@ Successor of the Moon: installDir: SuccessorOfTheMoon: {} launch: - /sotm.exe: + "/sotm.exe": - when: - os: windows store: steam @@ -510822,12 +512185,12 @@ Successor of the Moon: id: 1014020 Succubus: files: - /Succubus/Saved/Config/WindowsNoEditor: + "/Succubus/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /Succubus/Saved/SaveGames: + "/Succubus/Saved/SaveGames": tags: - save when: @@ -510837,7 +512200,7 @@ Succubus: installDir: SUCCUBUS: {} launch: - /Succubus.exe: + "/Succubus.exe": - when: - bit: 64 os: windows @@ -510850,14 +512213,14 @@ Succubus Affection: installDir: Succubus Affection: {} launch: - /SuccubusAffection.exe: + "/SuccubusAffection.exe": - when: - store: steam steam: id: 1328890 Succubus Rem: files: - /www/save: + "/www/save": tags: - save when: @@ -510865,7 +512228,7 @@ Succubus Rem: installDir: Succubus Rem: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -510875,11 +512238,11 @@ Succubus Waifu: installDir: SuccubusWaifu: {} launch: - /Succubus Waifu.app/Contents/MacOS/Succubus Waifu: + "/Succubus Waifu.app/Contents/MacOS/Succubus Waifu": - when: - os: mac store: steam - /Succubus Waifu.exe: + "/Succubus Waifu.exe": - when: - os: windows store: steam @@ -510889,7 +512252,7 @@ Succubus With Guns: installDir: Succubus With Guns: {} launch: - /Succubus With Guns.exe: + "/Succubus With Guns.exe": - when: - os: windows store: steam @@ -510901,7 +512264,7 @@ Succubus x Saint: installDir: Succubus x Saint: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: @@ -510912,14 +512275,14 @@ Succumate: installDir: Succumate: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: id: 1278390 -'SuchArt: Genius Artist Simulator': +"SuchArt: Genius Artist Simulator": files: - /AppData/LocalLow/Voolgi/saves: + "/AppData/LocalLow/Voolgi/saves": tags: - save when: @@ -510931,7 +512294,7 @@ Succumate: installDir: SuchArt: {} launch: - /SuchArt.exe: + "/SuchArt.exe": - when: - os: windows store: steam @@ -510940,14 +512303,14 @@ Succumate: Suchawira World Traveler: steam: id: 1007380 -'Sucker for Love: First Date': +"Sucker for Love: First Date": files: - /efs_data/*.dat: + "/efs_data/*.dat": tags: - save when: - os: windows - /SuckerforLoveBackup/efs_data/*.dat: + "/SuckerforLoveBackup/efs_data/*.dat": tags: - save when: @@ -510957,7 +512320,7 @@ Suchawira World Traveler: installDir: Sucker for Love: {} launch: - /SUCKER FOR LOVE.exe: + "/SUCKER FOR LOVE.exe": - when: - os: windows store: steam @@ -510965,12 +512328,12 @@ Suchawira World Traveler: id: 1574270 Sudden Strike: files: - /SaveGames: + "/SaveGames": tags: - save when: - os: windows - /sudtest.ini: + "/sudtest.ini": tags: - config when: @@ -510980,7 +512343,7 @@ Sudden Strike: installDir: Sudden Strike Gold: {} launch: - /game_exe.exe: + "/game_exe.exe": - when: - os: windows store: steam @@ -510988,7 +512351,7 @@ Sudden Strike: id: 612300 Sudden Strike 2: files: - /*.plr: + "/*.plr": tags: - save when: @@ -510998,25 +512361,25 @@ Sudden Strike 2: installDir: Sudden Strike 2 Gold: {} launch: - /Sudden Strike II.bat: + "/Sudden Strike II.bat": - when: - os: windows store: steam steam: id: 612520 -'Sudden Strike 3: Arms for Victory': +"Sudden Strike 3: Arms for Victory": files: - /SS3.ini: + "/SS3.ini": tags: - config when: - os: windows - /Fireglow Games/Sudden Strike 3: + "/Fireglow Games/Sudden Strike 3": tags: - save when: - os: windows - /Fireglow Games/Sudden Strike The Last Stand: + "/Fireglow Games/Sudden Strike The Last Stand": tags: - save when: @@ -511026,7 +512389,7 @@ Sudden Strike 2: installDir: Sudden Strike 3: {} launch: - /SS3Game.exe: + "/SS3Game.exe": - when: - os: windows store: steam @@ -511034,12 +512397,12 @@ Sudden Strike 2: id: 612540 Sudden Strike 4: files: - /.config/unity3d/Kite Games/Sudden Strike 4/SaveGames: + "/.config/unity3d/Kite Games/Sudden Strike 4/SaveGames": tags: - save when: - os: linux - /AppData/LocalLow/Kite Games/Sudden Strike 4/SaveGames: + "/AppData/LocalLow/Kite Games/Sudden Strike 4/SaveGames": tags: - save when: @@ -511049,17 +512412,17 @@ Sudden Strike 4: installDir: Sudden Strike 4: {} launch: - /SuddenStrike4.app/Contents/MacOS/SuddenStrike4: + "/SuddenStrike4.app/Contents/MacOS/SuddenStrike4": - when: - bit: 64 os: mac store: steam - /SuddenStrike4.exe: + "/SuddenStrike4.exe": - when: - bit: 64 os: windows store: steam - /SuddenStrike4.x86_64: + "/SuddenStrike4.x86_64": - when: - bit: 64 os: linux @@ -511072,12 +512435,12 @@ Sudden Strike 4: id: 373930 Sudeki: files: - /Sudeki/PlayerOptions.xml: + "/Sudeki/PlayerOptions.xml": tags: - config when: - os: windows - /Sudeki/Save: + "/Sudeki/Save": tags: - save when: @@ -511087,7 +512450,7 @@ Sudeki: installDir: Sudeki: {} launch: - /SudekiLauncher.exe: + "/SudekiLauncher.exe": - when: - os: windows store: steam @@ -511103,7 +512466,7 @@ Sudoku 9X16X25: installDir: Sudoku 9X16X25: {} launch: - /Sudoku 9X16X25.exe: + "/Sudoku 9X16X25.exe": - when: - os: windows store: steam @@ -511113,15 +512476,15 @@ Sudoku Jigsaw: installDir: Sudoku Jigsaw: {} launch: - /Sudoku Jigsaw.app: + "/Sudoku Jigsaw.app": - when: - os: mac store: steam - /Sudoku Jigsaw.exe: + "/Sudoku Jigsaw.exe": - when: - os: windows store: steam - /Sudoku Jigsaw.x86_64: + "/Sudoku Jigsaw.x86_64": - when: - os: linux store: steam @@ -511131,36 +512494,36 @@ Sudoku Killer: installDir: Sudoku Killer: {} launch: - /Sudoku Killer.app: + "/Sudoku Killer.app": - when: - os: mac store: steam - /Sudoku Killer.exe: + "/Sudoku Killer.exe": - when: - os: windows store: steam - /Sudoku Killer.x86_64: + "/Sudoku Killer.x86_64": - when: - os: linux store: steam steam: id: 861270 -'Sudoku Monster - 49,151 Hardest Puzzles': +"Sudoku Monster - 49,151 Hardest Puzzles": steam: id: 1082900 Sudoku Original: installDir: Sudoku Original: {} launch: - /Sudoku Original.app/Contents/MacOS/Sudoku Original: + "/Sudoku Original.app/Contents/MacOS/Sudoku Original": - when: - os: mac store: steam - /Sudoku Original.exe: + "/Sudoku Original.exe": - when: - os: windows store: steam - /Sudoku Original.x86: + "/Sudoku Original.x86": - when: - os: linux store: steam @@ -511170,7 +512533,7 @@ Sudoku Quest: installDir: SudokuQuest: {} launch: - /HarbingerBeard.SudokuQuest.exe: + "/HarbingerBeard.SudokuQuest.exe": - when: - os: windows store: steam @@ -511180,15 +512543,15 @@ Sudoku Zenkai: installDir: Sudoku Zenkai: {} launch: - /SudokuZenkai.app: + "/SudokuZenkai.app": - when: - os: mac store: steam - /SudokuZenkai.exe: + "/SudokuZenkai.exe": - when: - os: windows store: steam - /SudokuZenkai.x86_64: + "/SudokuZenkai.x86_64": - when: - os: linux store: steam @@ -511198,25 +512561,25 @@ Sudoku by Nestor Yavorskyy: installDir: Sudoku Universe: {} launch: - /Sudoku Universe.app: + "/Sudoku Universe.app": - when: - os: mac store: steam - /Sudoku Universe.exe: + "/Sudoku Universe.exe": - when: - os: windows store: steam - /Sudoku Universe.x86_64: + "/Sudoku Universe.x86_64": - when: - os: linux store: steam steam: id: 733070 -'Sudoku3D 2: The Cube': +"Sudoku3D 2: The Cube": installDir: Sudoku3D 2 The Cube: {} launch: - /Sudoku3D2.exe: + "/Sudoku3D2.exe": - when: - bit: 64 os: windows @@ -511227,7 +512590,7 @@ Sudokuball Detective: installDir: Sudokuball Detective: {} launch: - /sudokuball.exe: + "/sudokuball.exe": - when: - os: windows store: steam @@ -511237,7 +512600,7 @@ Sudokube: installDir: Sudokube: {} launch: - /Sudokube.exe: + "/Sudokube.exe": - when: - store: steam steam: @@ -511246,24 +512609,27 @@ Sufoco: installDir: Sufoco: {} launch: - /Sufoco.app/Contents/MacOS/Sufoco: + "/Sufoco.app/Contents/MacOS/Sufoco": - when: - os: mac store: steam - /Sufoco.exe: + "/Sufoco.exe": - when: - os: windows store: steam + - bit: 64 + os: linux + store: steam steam: id: 930110 Sugar Box: steam: id: 610390 -'Sugar Cube: Bittersweet Factory': +"Sugar Cube: Bittersweet Factory": installDir: Sugar Cube Bittersweet Factory: {} launch: - /SugarCube-BF.exe: + "/SugarCube-BF.exe": - when: - os: windows store: steam @@ -511276,7 +512642,7 @@ SugarMill: installDir: SugarMill: {} launch: - /SugarMill.exe: + "/SugarMill.exe": - when: - os: windows store: steam @@ -511286,16 +512652,16 @@ Sugy the Christmas Elf: installDir: Sugy the Christmas elf: {} launch: - /Game: + "/Game": - when: - os: linux store: steam - /Game.app/Contents/MacOS/nwjs: + "/Game.app/Contents/MacOS/nwjs": - when: - os: mac store: steam - workingDir: /Game.app/Contents/MacOS - /Game.exe: + workingDir: "/Game.app/Contents/MacOS" + "/Game.exe": - when: - os: windows store: steam @@ -511305,15 +512671,15 @@ Suicide Adventures: installDir: Suicide Adventures: {} launch: - /Suicide Adventures.app: + "/Suicide Adventures.app": - when: - os: mac store: steam - /Suicide Adventures.exe: + "/Suicide Adventures.exe": - when: - os: windows store: steam - /Suicide Adventures.x86: + "/Suicide Adventures.x86": - when: - os: linux store: steam @@ -511323,15 +512689,15 @@ Suicide Guy: installDir: Suicide Guy: {} launch: - /SuicideGuy.app: + "/SuicideGuy.app": - when: - os: mac store: steam - /SuicideGuy.exe: + "/SuicideGuy.exe": - when: - os: windows store: steam - /SuicideGuy.x86_64: + "/SuicideGuy.x86_64": - when: - os: linux store: steam @@ -511342,9 +512708,9 @@ Suicide Guy: - save steam: id: 303610 -'Suicide Guy: Sleepin'' Deeply': +"Suicide Guy: Sleepin' Deeply": files: - HKEY_CURRENT_USER/Software/Chubby Pixel/Suicide Guy Sleepin' Deeply: + "HKEY_CURRENT_USER/Software/Chubby Pixel/Suicide Guy Sleepin' Deeply": tags: - config - save @@ -511353,15 +512719,15 @@ Suicide Guy: installDir: Suicide Guy Sleepin Deeply: {} launch: - /SuicideGuySleepinDeeply.app: + "/SuicideGuySleepinDeeply.app": - when: - os: mac store: steam - /SuicideGuySleepinDeeply.exe: + "/SuicideGuySleepinDeeply.exe": - when: - os: windows store: steam - /SuicideGuySleepinDeeply.x86_64: + "/SuicideGuySleepinDeeply.x86_64": - when: - os: linux store: steam @@ -511370,7 +512736,7 @@ Suicide Guy: Suicide Simulator: steam: id: 703810 -'Suicide Squad: Kill the Justice League': +"Suicide Squad: Kill the Justice League": steam: id: 315210 Suicideville: @@ -511383,11 +512749,11 @@ Suitchi: installDir: Suitchi: {} launch: - /Suitchi.app/Contents/MacOS/full: + "/Suitchi.app/Contents/MacOS/full": - when: - os: mac store: steam - /windows/Suitchi_windows.exe: + "/windows/Suitchi_windows.exe": - when: - os: windows store: steam @@ -511397,37 +512763,37 @@ Suite 776: installDir: Suite 776: {} launch: - /Suite 776 Launcher.exe: + "/Suite 776 Launcher.exe": - when: - os: windows store: steam steam: id: 1197370 -'Suits: A Business RPG': +"Suits: A Business RPG": installDir: Suits: {} launch: - /Game: + "/Game": - when: - os: linux store: steam steam: id: 410670 -'Suits: Absolute Power': +"Suits: Absolute Power": installDir: Suits Absolute Power: {} steam: id: 1210230 -Suka's Escape: +"Suka's Escape": installDir: - Suka's Escape: {} + "Suka's Escape": {} steam: id: 1171250 -Suki's Spooky Romance: +"Suki's Spooky Romance": installDir: Sukis Spooky Romance: {} launch: - /SukiSR.exe: + "/SukiSR.exe": - when: - os: windows store: steam @@ -511437,70 +512803,70 @@ Sullen: installDir: Sullen: {} launch: - /Contents/MacOS/Sullen: + "/Contents/MacOS/Sullen": - when: - os: mac store: steam - /Sullen: + "/Sullen": - when: - os: linux store: steam - /Sullen.exe: + "/Sullen.exe": - when: - os: windows store: steam steam: id: 547210 -'Sullen: Light is Your Friend': +"Sullen: Light is Your Friend": installDir: Sullen LIF: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam steam: id: 525460 -'Sulphur Nimbus: Hel''s Elixir': +"Sulphur Nimbus: Hel's Elixir": files: - /audio.txt: + "/audio.txt": tags: - config when: - os: windows - os: linux - /controls.txt: + "/controls.txt": tags: - config when: - os: windows - os: linux - /graphics.txt: + "/graphics.txt": tags: - config when: - os: windows - os: linux - /save: + "/save": tags: - save when: - os: windows - os: linux - /window.txt: + "/window.txt": tags: - config when: - os: windows - os: linux -'Sumatra: Fate of Yandi': +"Sumatra: Fate of Yandi": files: - /Saved Games/Sumatra Fate of Yandi: + "/Saved Games/Sumatra Fate of Yandi": tags: - save when: - os: windows - /Saved Games/Sumatra Fate of Yandi/acsetup.cfg: + "/Saved Games/Sumatra Fate of Yandi/acsetup.cfg": tags: - config when: @@ -511510,7 +512876,7 @@ Sullen: installDir: Sumatra Fate of Yandi: {} launch: - /Sumatra Fate of Yandi.exe: + "/Sumatra Fate of Yandi.exe": - when: - store: steam steam: @@ -511519,25 +512885,25 @@ Sumer: installDir: Sumer: {} launch: - /Sumer.app: + "/Sumer.app": - when: - os: mac store: steam - /Sumer.exe: + "/Sumer.exe": - when: - os: windows store: steam - /Sumer.x86: + "/Sumer.x86": - when: - os: linux store: steam steam: id: 464950 -'Sumerian Blood: Gilgamesh against the Gods': +"Sumerian Blood: Gilgamesh against the Gods": installDir: Sumerian Blood Gilgamesh against the Gods: {} launch: - /SumerianBlood.exe: + "/SumerianBlood.exe": - when: - bit: 64 os: windows @@ -511548,7 +512914,7 @@ Sumerians: installDir: Sumerians: {} launch: - /Sumerians.exe: + "/Sumerians.exe": - when: - bit: 64 os: windows @@ -511559,20 +512925,20 @@ Sumeru: installDir: Sumeru: {} launch: - /Sumeru.app/Contents/MacOS/Sumeru: + "/Sumeru.app/Contents/MacOS/Sumeru": - when: - os: mac store: steam - /Sumeru.exe: + "/Sumeru.exe": - when: - os: windows store: steam - /Sumeru.x86: + "/Sumeru.x86": - when: - bit: 32 os: linux store: steam - /Sumeru.x86_64: + "/Sumeru.x86_64": - when: - bit: 64 os: linux @@ -511583,11 +512949,11 @@ Sumetrick: installDir: SUMETRICK: {} launch: - /SUMETRICK.exe: + "/SUMETRICK.exe": - when: - os: windows store: steam - /SUMETRICK.x86: + "/SUMETRICK.x86": - when: - os: linux store: steam @@ -511595,19 +512961,19 @@ Sumetrick: id: 771950 Sumico - The Numbers Game: files: - /Library/Application Support/SumicoGame/Local/AllPlayers/settings.dat: + "/Library/Application Support/SumicoGame/Local/AllPlayers/settings.dat": tags: - config - save when: - os: mac - /SavedGames/SumicoGame/Local/AllPlayers/settings.dat: + "/SavedGames/SumicoGame/Local/AllPlayers/settings.dat": tags: - config - save when: - os: windows - /SumicoGame/Local/AllPlayers/settings.dat: + "/SumicoGame/Local/AllPlayers/settings.dat": tags: - config - save @@ -511616,15 +512982,15 @@ Sumico - The Numbers Game: installDir: SUMICO - The Numbers Game: {} launch: - /Sumico: + "/Sumico": - when: - os: linux store: steam - /Sumico.app/Contents/MacOS/Sumico: + "/Sumico.app/Contents/MacOS/Sumico": - when: - os: mac store: steam - /Sumico.exe: + "/Sumico.exe": - when: - os: windows store: steam @@ -511632,7 +512998,7 @@ Sumico - The Numbers Game: id: 383190 Sumire: files: - /AppData/LocalLow/GameTomo/Sumire: + "/AppData/LocalLow/GameTomo/Sumire": tags: - save when: @@ -511640,11 +513006,11 @@ Sumire: installDir: Sumire: {} launch: - /Sumire.app/Contents/MacOS/Sumire: + "/Sumire.app/Contents/MacOS/Sumire": - when: - os: mac store: steam - /Sumire.exe: + "/Sumire.exe": - when: - bit: 64 os: windows @@ -511655,7 +513021,7 @@ Summer Athletics: installDir: Summer Athletics: {} launch: - /summerathletics.exe: + "/summerathletics.exe": - when: - store: steam steam: @@ -511664,16 +513030,16 @@ Summer Catchers: installDir: Summer Catchers: {} launch: - /Summer Catchers.app: + "/Summer Catchers.app": - when: - os: mac store: steam - /Summer Catchers.exe: + "/Summer Catchers.exe": - when: - bit: 64 os: windows store: steam - /Summer Catchers.x86_64: + "/Summer Catchers.x86_64": - when: - bit: 64 os: linux @@ -511682,12 +513048,12 @@ Summer Catchers: id: 908050 Summer Challenge: files: - /*.RP?: + "/*.RP?": tags: - save when: - os: dos - /*.SGL: + "/*.SGL": tags: - save when: @@ -511701,18 +513067,18 @@ Summer Daze at Hero-U: installDir: Summer Daze at Hero-U: {} launch: - /TillysTale.app/Contents/MacOS/Tilly's Tale: - - arguments: '-steam' + "/TillysTale.app/Contents/MacOS/Tilly's Tale": + - arguments: "-steam" when: - os: mac store: steam - /TillysTale.exe: - - arguments: '-steam' + "/TillysTale.exe": + - arguments: "-steam" when: - os: windows store: steam - /TillysTale.x86_64: - - arguments: '-steam' + "/TillysTale.x86_64": + - arguments: "-steam" when: - os: linux store: steam @@ -511722,15 +513088,15 @@ Summer Fling: installDir: Summer Fling: {} launch: - /Summer Fling.app: + "/Summer Fling.app": - when: - os: mac store: steam - /Summer Fling.exe: + "/Summer Fling.exe": - when: - os: windows store: steam - /Summer Fling.sh: + "/Summer Fling.sh": - when: - os: linux store: steam @@ -511745,7 +513111,7 @@ Summer Games Heroes: installDir: Summer Games Heroes: {} launch: - /SummerGamesHeroes.exe: + "/SummerGamesHeroes.exe": - when: - bit: 64 os: windows @@ -511764,16 +513130,16 @@ Summer Islands: installDir: Summer Islands: {} launch: - /linux-x64/SummerIslands: + "/linux-x64/SummerIslands": - when: - bit: 64 os: linux store: steam - /mac-x64/SummerIslands.app: + "/mac-x64/SummerIslands.app": - when: - os: mac store: steam - /windows-x64/SummerIslands.exe: + "/windows-x64/SummerIslands.exe": - when: - os: windows store: steam @@ -511783,7 +513149,7 @@ Summer Knights: installDir: Summer Knights: {} launch: - /Summer Knights.exe: + "/Summer Knights.exe": - when: - os: windows store: steam @@ -511793,15 +513159,15 @@ Summer Meetings: installDir: SummerMeetings: {} launch: - /SummerMeetings.app: + "/SummerMeetings.app": - when: - os: mac store: steam - /SummerMeetings.exe: + "/SummerMeetings.exe": - when: - os: windows store: steam - /SummerMeetings.sh: + "/SummerMeetings.sh": - when: - os: linux store: steam @@ -511813,7 +513179,7 @@ Summer Memories: installDir: Summer Memories: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: @@ -511822,15 +513188,15 @@ Summer Memory of Bell: installDir: Summer Memory of Bell: {} launch: - /Bell.exe: + "/Bell.exe": - when: - os: windows store: steam - /lib/linux-x86_64/renpy: + "/lib/linux-x86_64/renpy": - when: - os: linux store: steam - /lib/mac-x86_64/renpy: + "/lib/mac-x86_64/renpy": - when: - os: mac store: steam @@ -511840,15 +513206,15 @@ Summer Nightmare: installDir: Summer Nightmare: {} launch: - /SummerNightmare.app: + "/SummerNightmare.app": - when: - os: mac store: steam - /SummerNightmare.exe: + "/SummerNightmare.exe": - when: - os: windows store: steam - /SummerNightmare.sh: + "/SummerNightmare.sh": - when: - os: linux store: steam @@ -511858,7 +513224,7 @@ Summer Paws: installDir: Summer Paws: {} launch: - /SummerPaws.exe: + "/SummerPaws.exe": - when: - os: windows store: steam @@ -511868,7 +513234,7 @@ Summer Rain: installDir: fuyulu: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -511878,7 +513244,7 @@ Summer Resort Mogul: installDir: Summer Resort Mogul: {} launch: - /SummerResortMogul.exe: + "/SummerResortMogul.exe": - when: - os: windows store: steam @@ -511888,7 +513254,7 @@ Summer Rush: installDir: Summer Rush: {} launch: - /SummerRush.exe: + "/SummerRush.exe": - when: - os: windows store: steam @@ -511898,8 +513264,11 @@ Summer Sale: installDir: Summer Sale: {} launch: - /Summer_Sale.exe: + "/Summer_Sale.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam @@ -511909,7 +513278,7 @@ Summer Sports Games: installDir: Summer Sports Games: {} launch: - /summersportsgames.exe: + "/summersportsgames.exe": - when: - store: steam steam: @@ -511921,7 +513290,7 @@ Summer Vacation: id: 658360 Summer in Mara: files: - /AppData/LocalLow/Chibig/Summer in Mara/Save/Main: + "/AppData/LocalLow/Chibig/Summer in Mara/Save/Main": tags: - config - save @@ -511935,11 +513304,11 @@ Summer in Mara: installDir: Summer in Mara: {} launch: - /Summer in Mara.app: + "/Summer in Mara.app": - when: - os: mac store: steam - /Summer in Mara.exe: + "/Summer in Mara.exe": - when: - os: windows store: steam @@ -511949,27 +513318,27 @@ Summer in Mara: - config steam: id: 962580 -Summer of '58: +"Summer of '58": files: - /Summer_of_58/Saved/Config/WindowsNoEditor: + "/Summer_of_58/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /Summer_of_58/Saved/SaveGames/*Slot*.sav: + "/Summer_of_58/Saved/SaveGames/*Slot*.sav": tags: - save when: - os: windows - /Summer_of_58/Saved/SaveGames/saved_namespace.sav: + "/Summer_of_58/Saved/SaveGames/saved_namespace.sav": tags: - config when: - os: windows installDir: - Summer of '58: {} + "Summer of '58": {} launch: - /Summer_of_58.exe: + "/Summer_of_58.exe": - when: - bit: 64 os: windows @@ -511987,25 +513356,25 @@ Summer with Mia: installDir: Summer with Mia Season 1: {} launch: - /SummerWithMiaS1.app: + "/SummerWithMiaS1.app": - when: - os: mac store: steam - /SummerWithMiaS1.exe: + "/SummerWithMiaS1.exe": - when: - os: windows store: steam - /SummerWithMiaS1.sh: + "/SummerWithMiaS1.sh": - when: - os: linux store: steam steam: id: 1571170 -'Summer: Jigsaw Puzzles': +"Summer: Jigsaw Puzzles": installDir: Summer Jigsaw Puzzles: {} launch: - /Summer Jigsaw Puzzles.exe: + "/Summer Jigsaw Puzzles.exe": - when: - os: windows store: steam @@ -512018,7 +513387,7 @@ Summit of the Wolf: installDir: Summit of the Wolf: {} launch: - /Summit of the Wolf Steam.exe: + "/Summit of the Wolf Steam.exe": - when: - os: windows store: steam @@ -512028,7 +513397,7 @@ Summon: installDir: Povestka: {} launch: - /Povestka.exe: + "/Povestka.exe": - when: - os: windows store: steam @@ -512038,7 +513407,7 @@ Summon of Asmodeus: installDir: Summon of asmodeus: {} launch: - /Summon of Asmodeus.exe: + "/Summon of Asmodeus.exe": - when: - os: windows store: steam @@ -512046,12 +513415,12 @@ Summon of Asmodeus: id: 1042170 Summoner: files: - /savegame: + "/savegame": tags: - save when: - os: windows - /summoner.cfg: + "/summoner.cfg": tags: - config when: @@ -512061,7 +513430,7 @@ Summoner: installDir: Summoner: {} launch: - /Summoner.exe: + "/Summoner.exe": - when: - os: windows store: steam @@ -512085,7 +513454,7 @@ Sumo: installDir: Sumo: {} launch: - /Sumo.exe: + "/Sumo.exe": - when: - os: windows store: steam @@ -512095,11 +513464,11 @@ Sumo Revise: installDir: Sumo Revise: {} launch: - /Sumo Revise.exe: + "/Sumo Revise.exe": - when: - os: windows store: steam - /SumoModeEditor.exe: + "/SumoModeEditor.exe": - when: - os: windows store: steam @@ -512109,7 +513478,7 @@ Sumocrats: installDir: SUMOCRATS: {} launch: - /SumologyThrowBall.exe: + "/SumologyThrowBall.exe": - when: - os: windows store: steam @@ -512119,38 +513488,38 @@ Sumoman: installDir: Sumoman: {} launch: - /bin/sumoman_x64.exe: + "/bin/sumoman_x64.exe": - when: - bit: 64 os: windows store: steam - /bin/sumoman_x64.macos: + "/bin/sumoman_x64.macos": - when: - bit: 64 os: mac store: steam - workingDir: /bin - /bin/sumoman_x86.exe: + workingDir: "/bin" + "/bin/sumoman_x86.exe": - when: - bit: 32 os: windows store: steam - /sumoman_x64.sh: + "/sumoman_x64.sh": - when: - bit: 64 os: linux store: steam steam: id: 552970 -'Sun Blast: Star Fighter': +"Sun Blast: Star Fighter": files: - /userdata//344910/remote: + "/userdata//344910/remote": tags: - config - save when: - store: steam - /Oblone/sunblast: + "/Oblone/sunblast": tags: - config - save @@ -512159,15 +513528,15 @@ Sumoman: installDir: SunBlast: {} launch: - /Sun Blast.app/Contents/MacOS/Sun Blast: + "/Sun Blast.app/Contents/MacOS/Sun Blast": - when: - os: mac store: steam - /sunblast.bin.x86: + "/sunblast.bin.x86": - when: - os: linux store: steam - /sunblast.exe: + "/sunblast.exe": - when: - os: windows store: steam @@ -512177,11 +513546,11 @@ Sun Dogs: installDir: Sun Dogs: {} launch: - /Sun Dogs.app: + "/Sun Dogs.app": - when: - os: mac store: steam - /sundogs.exe: + "/sundogs.exe": - when: - os: windows store: steam @@ -512191,33 +513560,33 @@ Sun Wukong VS Robot: installDir: Sun Wukong VS Robot: {} launch: - /Sun Wukong VS Robot.app: + "/Sun Wukong VS Robot.app": - when: - os: mac store: steam - /svr.exe: + "/svr.exe": - when: - os: windows store: steam steam: id: 1008830 -'SunAge: Battle for Elysium': +"SunAge: Battle for Elysium": installDir: SunAgeBattleForElysium: {} launch: - /SunAge - Battle for Elysium.app: + "/SunAge - Battle for Elysium.app": - when: - os: mac store: steam - - arguments: '-win:1024x768' + - arguments: "-win:1024x768" when: - os: mac store: steam - /sunage_win7_steam.exe: + "/sunage_win7_steam.exe": - when: - os: windows store: steam - - arguments: '-windowed' + - arguments: "-windowed" when: - os: windows store: steam @@ -512227,11 +513596,11 @@ SunMeiQi: installDir: Athome: {} launch: - /AtHome.app: + "/AtHome.app": - when: - os: mac store: steam - /孙美琪.exe: + "/孙美琪.exe": - when: - os: windows store: steam @@ -512239,7 +513608,7 @@ SunMeiQi: id: 1159360 Suna: files: - /Suna/Saved/Config/WindowsNoEditor: + "/Suna/Saved/Config/WindowsNoEditor": tags: - config when: @@ -512247,7 +513616,7 @@ Suna: installDir: Suna: {} launch: - /Suna/Suna/Binaries/Win64/Suna.exe: + "/Suna/Suna/Binaries/Win64/Suna.exe": - when: - os: windows store: steam @@ -512255,12 +513624,12 @@ Suna: id: 803920 Sunblaze: files: - /AppData/LocalLow/Games From Earth/Sunblaze/Player: + "/AppData/LocalLow/Games From Earth/Sunblaze/Player": tags: - config when: - os: windows - /AppData/LocalLow/Games From Earth/Sunblaze/slot_*.sunblaze: + "/AppData/LocalLow/Games From Earth/Sunblaze/slot_*.sunblaze": tags: - save when: @@ -512275,15 +513644,15 @@ Sunblaze: installDir: Sunblaze: {} launch: - /Sunblaze: + "/Sunblaze": - when: - os: linux store: steam - /Sunblaze.app: + "/Sunblaze.app": - when: - os: mac store: steam - /Sunblaze.exe: + "/Sunblaze.exe": - when: - os: windows store: steam @@ -512293,27 +513662,27 @@ Sunburnt: installDir: Sunburnt: {} launch: - /Sunburnt/Binaries/Linux/Sunburnt-Linux-Shipping: + "/Sunburnt/Binaries/Linux/Sunburnt-Linux-Shipping": - when: - os: linux store: steam - /Sunburnt/Binaries/Win32/Sunburnt-Win32-Shipping.exe: + "/Sunburnt/Binaries/Win32/Sunburnt-Win32-Shipping.exe": - when: - bit: 32 os: windows store: steam - /Sunburnt/Binaries/Win64/Sunburnt-Win64-Shipping.exe: + "/Sunburnt/Binaries/Win64/Sunburnt-Win64-Shipping.exe": - when: - bit: 64 os: windows store: steam steam: id: 792320 -'Suncore Chronicles: The Tower': +"Suncore Chronicles: The Tower": installDir: The Tower: {} launch: - /The Tower.exe: + "/The Tower.exe": - when: - os: windows store: steam @@ -512321,7 +513690,7 @@ Sunburnt: id: 634090 Sunday Gold: files: - /AppData/LocalLow/Bkom/Sunday Gold: + "/AppData/LocalLow/Bkom/Sunday Gold": tags: - save when: @@ -512329,7 +513698,7 @@ Sunday Gold: installDir: Sunday Gold: {} launch: - /Sunday_Gold.exe: + "/Sunday_Gold.exe": - when: - os: windows store: steam @@ -512337,22 +513706,22 @@ Sunday Gold: id: 1969440 Sundered: files: - /AppData/LocalLow/Thunder Lotus Games/Sundered: + "/AppData/LocalLow/Thunder Lotus Games/Sundered": tags: - save when: - os: windows - /AppData/LocalLow/Thunder Lotus Games/Sundered/SAVE_OPTIONS.sav: + "/AppData/LocalLow/Thunder Lotus Games/Sundered/SAVE_OPTIONS.sav": tags: - config when: - os: windows - /Library/Application Support/unity.Thunder Lotus Games.Sundered: + "/Library/Application Support/unity.Thunder Lotus Games.Sundered": tags: - save when: - os: mac - /unity3d/Thunder Lotus Games/Sundered: + "/unity3d/Thunder Lotus Games/Sundered": tags: - config - save @@ -512369,20 +513738,20 @@ Sundered: installDir: Sundered: {} launch: - /Sundered.app: + "/Sundered.app": - when: - os: mac store: steam - /Sundered.exe: + "/Sundered.exe": - when: - os: windows store: steam - /Sundered.x86: + "/Sundered.x86": - when: - bit: 32 os: linux store: steam - /Sundered.x86_64: + "/Sundered.x86_64": - when: - bit: 64 os: linux @@ -512396,7 +513765,7 @@ Sunflower: installDir: Sunflower: {} launch: - /nw.exe: + "/nw.exe": - when: - store: steam steam: @@ -512405,12 +513774,12 @@ Sunken: installDir: Sunken: {} launch: - /Sunken_Steam_Test_Build.exe: + "/Sunken_Steam_Test_Build.exe": - when: - bit: 64 os: windows store: steam - /Sunken_linux_build.x86_64: + "/Sunken_linux_build.x86_64": - when: - os: linux store: steam @@ -512420,29 +513789,29 @@ Sunken (2018): installDir: Sunken: {} launch: - /Pirates.exe: + "/Pirates.exe": - when: - store: steam steam: id: 884470 Sunless Sea: files: - /.config/unity3d/Failbetter Games/Sunless Sea: + "/.config/unity3d/Failbetter Games/Sunless Sea": tags: - config when: - os: linux - /.config/unity3d/Failbetter Games/Sunless Sea/saves: + "/.config/unity3d/Failbetter Games/Sunless Sea/saves": tags: - save when: - os: linux - /AppData/LocalLow/Failbetter Games/Sunless Sea: + "/AppData/LocalLow/Failbetter Games/Sunless Sea": tags: - save when: - os: windows - /Library/Application Support/Unity.Failbetter Games.Sunless Sea/saves: + "/Library/Application Support/Unity.Failbetter Games.Sunless Sea/saves": tags: - save when: @@ -512452,20 +513821,20 @@ Sunless Sea: installDir: SunlessSea: {} launch: - /Sunless Sea.app: + "/Sunless Sea.app": - when: - os: mac store: steam - /Sunless Sea.exe: + "/Sunless Sea.exe": - when: - os: windows store: steam - /Sunless Sea.x86: + "/Sunless Sea.x86": - when: - bit: 32 os: linux store: steam - /Sunless Sea.x86_64: + "/Sunless Sea.x86_64": - when: - bit: 64 os: linux @@ -512478,13 +513847,13 @@ Sunless Sea: id: 304650 Sunless Skies: files: - '${XDG_CONFIG_HOME:-$HOME/.config}/unity3d/Failbetter Games/Sunless Skies': + "${XDG_CONFIG_HOME:-$HOME/.config}/unity3d/Failbetter Games/Sunless Skies": tags: - config - save when: - os: linux - /AppData/LocalLow/Failbetter Games/Sunless Skies/storage: + "/AppData/LocalLow/Failbetter Games/Sunless Skies/storage": tags: - save when: @@ -512494,20 +513863,20 @@ Sunless Skies: installDir: Sunless Skies: {} launch: - /Sunless Skies.app: + "/Sunless Skies.app": - when: - os: mac store: steam - /Sunless Skies.exe: + "/Sunless Skies.exe": - when: - os: windows store: steam - /Sunless Skies.x86: + "/Sunless Skies.x86": - when: - bit: 32 os: linux store: steam - /Sunless Skies.x86_64: + "/Sunless Skies.x86_64": - when: - bit: 64 os: linux @@ -512522,7 +513891,7 @@ Sunline: installDir: Sunline: {} launch: - /Sunline.exe: + "/Sunline.exe": - when: - os: windows store: steam @@ -512532,7 +513901,7 @@ Sunny Hillride: installDir: Sunny Hillride: {} launch: - /SunnyHillride.exe: + "/SunnyHillride.exe": - when: - os: windows store: steam @@ -512542,7 +513911,7 @@ Sunny Shine Funland!: installDir: Sunny Shine Funland!: {} launch: - /Sunny_Shine_Funland!.exe: + "/Sunny_Shine_Funland!.exe": - when: - os: windows store: steam @@ -512552,7 +513921,7 @@ Sunny Smiles: installDir: Sunny Smiles: {} launch: - /GameSmail: + "/GameSmail": - when: - bit: 64 os: windows @@ -512561,12 +513930,12 @@ Sunny Smiles: id: 842130 Sunrider Academy: files: - /renpy/SHINRAI - Broken Beyond Despair-1413934444/*.save: + "/renpy/SHINRAI - Broken Beyond Despair-1413934444/*.save": tags: - save when: - os: windows - /renpy/SunriderAcademy-1416887014/persistent: + "/renpy/SunriderAcademy-1416887014/persistent": tags: - config when: @@ -512576,28 +513945,28 @@ Sunrider Academy: installDir: Sunrider Academy: {} launch: - /SunriderAcademy.app/Contents/MacOS/SunriderAcademy: + "/SunriderAcademy.app/Contents/MacOS/SunriderAcademy": - when: - os: mac store: steam - /SunriderAcademy.exe: + "/SunriderAcademy.exe": - when: - os: windows store: steam - /SunriderAcademy.sh: + "/SunriderAcademy.sh": - when: - os: linux store: steam steam: id: 340730 -'Sunrider: Liberation Day': +"Sunrider: Liberation Day": files: - /renpy/config.py: + "/renpy/config.py": tags: - config when: - os: windows - /renpy/Sunrider Liberation Day-1433059539: + "/renpy/Sunrider Liberation Day-1433059539": tags: - save when: @@ -512607,29 +513976,29 @@ Sunrider Academy: installDir: Sunrider Liberation Day: {} launch: - /Sunrider Liberation Day.app: + "/Sunrider Liberation Day.app": - when: - os: mac store: steam - /Sunrider Liberation Day.exe: + "/Sunrider Liberation Day.exe": - when: - os: windows store: steam - /Sunrider Liberation Day.sh: + "/Sunrider Liberation Day.sh": - when: - os: linux store: steam steam: id: 358750 -'Sunrider: Mask of Arcadius': +"Sunrider: Mask of Arcadius": files: - /game/saves: + "/game/saves": tags: - save when: - os: windows - os: linux - /RenPy/Sunrider Episode 2 Save Data: + "/RenPy/Sunrider Episode 2 Save Data": tags: - save when: @@ -512639,25 +514008,25 @@ Sunrider Academy: installDir: Sunrider: {} launch: - /SunriderMaskofArcadius-Steam.app/Contents/MacOS/SunriderMaskofArcadius-Steam: + "/SunriderMaskofArcadius-Steam.app/Contents/MacOS/SunriderMaskofArcadius-Steam": - when: - os: mac store: steam - /SunriderMaskofArcadius-Steam.exe: + "/SunriderMaskofArcadius-Steam.exe": - when: - os: windows store: steam - /SunriderMaskofArcadius-Steam.sh: + "/SunriderMaskofArcadius-Steam.sh": - when: - os: linux store: steam steam: id: 313730 -'Sunrise: survival': +"Sunrise: survival": installDir: Sunrise: {} launch: - /Sunrise.exe: + "/Sunrise.exe": - when: - os: windows store: steam @@ -512665,7 +514034,7 @@ Sunrider Academy: id: 663110 Sunset: files: - /Sunset: + "/Sunset": tags: - config when: @@ -512673,26 +514042,26 @@ Sunset: installDir: Sunset: {} launch: - /Sunset.app: + "/Sunset.app": - when: - os: mac store: steam - /Sunset.exe: + "/Sunset.exe": - when: - bit: 64 os: windows store: steam - /Sunset.x86: + "/Sunset.x86": - when: - bit: 32 os: linux store: steam - /Sunset.x86_64: + "/Sunset.x86_64": - when: - bit: 64 os: linux store: steam - /Sunset_32.exe: + "/Sunset_32.exe": - when: - bit: 32 os: windows @@ -512708,11 +514077,11 @@ Sunset Kingdom: installDir: Sunset Kingdom: {} launch: - /SunsetKingdom.app: + "/SunsetKingdom.app": - when: - os: mac store: steam - /SunsetKingdom.exe: + "/SunsetKingdom.exe": - when: - os: windows store: steam @@ -512720,33 +514089,35 @@ Sunset Kingdom: id: 1218920 Sunset Overdrive: files: - /Packages/Microsoft.Sunflower_8wekyb3d8bbwe/LocalState/Saves/: + "/Packages/Microsoft.Sunflower_8wekyb3d8bbwe/LocalState/Saves/": tags: - save when: - os: windows store: microsoft - /Packages/Microsoft.Sunflower_8wekyb3d8bbwe/LocalState/Saves//Sunset_userprefs.save: + "/Packages/Microsoft.Sunflower_8wekyb3d8bbwe/LocalState/Saves//Sunset_userprefs.save": tags: - config when: - os: windows store: microsoft - /Sunset/Saves/: + "/Sunset/Saves/": tags: - save when: - - store: steam - /Sunset/Saves//Sunset_userprefs.save: + - os: windows + store: steam + "/Sunset/Saves//Sunset_userprefs.save": tags: - config when: - - store: steam + - os: windows + store: steam installDir: SunsetOverdrive: {} launch: - /Sunset.exe: - - arguments: '-warn review' + "/Sunset.exe": + - arguments: "-warn review" when: - store: steam steam: @@ -512755,7 +514126,7 @@ Sunset Planet: installDir: Sunset Planet: {} launch: - /SunsetPlanet.exe: + "/SunsetPlanet.exe": - when: - bit: 64 os: windows @@ -512766,29 +514137,29 @@ Sunset Rangers: installDir: Sunset Rangers: {} launch: - /SunsetRangers.exe: + "/SunsetRangers.exe": - when: - os: windows store: steam - /sunset_reset_fix.bat: + "/sunset_reset_fix.bat": - when: - os: windows store: steam steam: id: 559340 -Sunset's Ashes: +"Sunset's Ashes": installDir: - Sunset's Ashes: {} + "Sunset's Ashes": {} launch: - /SunsetsAshes.app: + "/SunsetsAshes.app": - when: - os: mac store: steam - /SunsetsAshes.exe: + "/SunsetsAshes.exe": - when: - os: windows store: steam - /SunsetsAshes.x86: + "/SunsetsAshes.x86": - when: - os: linux store: steam @@ -512798,7 +514169,7 @@ Sunshine & Overcast: installDir: Sunshine & Overcast: {} launch: - /SandO.exe: + "/SandO.exe": - when: - os: windows store: steam @@ -512806,12 +514177,12 @@ Sunshine & Overcast: id: 964910 Sunshine Heavy Industries: files: - /sunshine-heavy-industries: + "/sunshine-heavy-industries": tags: - config when: - os: windows - /sunshine-heavy-industries/Local Storage/leveldb: + "/sunshine-heavy-industries/Local Storage/leveldb": tags: - save when: @@ -512819,11 +514190,11 @@ Sunshine Heavy Industries: installDir: Sunshine Heavy Industries: {} launch: - /SUNSHINE HEAVY INDUSTRIES.app/Contents/MacOS/SUNSHINE HEAVY INDUSTRIES: + "/SUNSHINE HEAVY INDUSTRIES.app/Contents/MacOS/SUNSHINE HEAVY INDUSTRIES": - when: - os: mac store: steam - /SUNSHINE HEAVY INDUSTRIES.exe: + "/SUNSHINE HEAVY INDUSTRIES.exe": - when: - os: windows store: steam @@ -512833,15 +514204,15 @@ Sunshine Manor: installDir: Sunshine Manor: {} launch: - /Sunshine Manor: + "/Sunshine Manor": - when: - os: linux store: steam - /Sunshine Manor.app: + "/Sunshine Manor.app": - when: - os: mac store: steam - /Sunshine Manor.exe: + "/Sunshine Manor.exe": - when: - os: windows store: steam @@ -512859,16 +514230,19 @@ Supaplex: installDir: Supaplex: {} launch: - /Supaplex.app: + "/Supaplex.app": - when: - os: mac store: steam - /Supaplex.exe: + "/Supaplex.exe": - when: - bit: 32 os: windows store: steam - /Supaplex.x86_64: + - bit: 64 + os: windows + store: steam + "/Supaplex.x86_64": - when: - bit: 64 os: linux @@ -512879,7 +514253,7 @@ Supaplex 3D: installDir: Hyperplex 3D: {} launch: - /Hyperplex 3D.exe: + "/Hyperplex 3D.exe": - when: - os: windows store: steam @@ -512889,16 +514263,19 @@ Supaplex GO!: installDir: Supaplex GO!: {} launch: - /SupaplexGo.app: + "/SupaplexGo.app": - when: - os: mac store: steam - /SupaplexGo.exe: + "/SupaplexGo.exe": - when: - bit: 32 os: windows store: steam - /SupaplexGo.x86_64: + - bit: 64 + os: windows + store: steam + "/SupaplexGo.x86_64": - when: - bit: 64 os: linux @@ -512909,16 +514286,19 @@ Supaplex HARD: installDir: Supaplex HARD: {} launch: - /SupaplexHard.app: + "/SupaplexHard.app": - when: - os: mac store: steam - /SupaplexHard.exe: + "/SupaplexHard.exe": - when: - bit: 32 os: windows store: steam - /SupaplexHard.x86_64: + - bit: 64 + os: windows + store: steam + "/SupaplexHard.x86_64": - when: - bit: 64 os: linux @@ -512929,16 +514309,19 @@ Supaplex SQUARES: installDir: Supaplex SQUARES: {} launch: - /SupaplexSquares.app: + "/SupaplexSquares.app": - when: - os: mac store: steam - /SupaplexSquares.exe: + "/SupaplexSquares.exe": - when: - bit: 32 os: windows store: steam - /SupaplexSquares.x86_64: + - bit: 64 + os: windows + store: steam + "/SupaplexSquares.x86_64": - when: - bit: 64 os: linux @@ -512949,16 +514332,19 @@ Supaplex THINK!: installDir: Supaplex THINK!: {} launch: - /SupaplexThink.app: + "/SupaplexThink.app": - when: - os: mac store: steam - /SupaplexThink.exe: + "/SupaplexThink.exe": - when: - bit: 32 os: windows store: steam - /SupaplexThink.x86_64: + - bit: 64 + os: windows + store: steam + "/SupaplexThink.x86_64": - when: - bit: 64 os: linux @@ -512969,16 +514355,19 @@ Supaplex WOW!: installDir: Supaplex WOW!: {} launch: - /SupaplexWow.app: + "/SupaplexWow.app": - when: - os: mac store: steam - /SupaplexWow.exe: + "/SupaplexWow.exe": - when: - bit: 32 os: windows store: steam - /SupaplexWow.x86_64: + - bit: 64 + os: windows + store: steam + "/SupaplexWow.x86_64": - when: - bit: 64 os: linux @@ -512989,7 +514378,7 @@ Super: installDir: Super: {} launch: - /Super.exe: + "/Super.exe": - when: - os: windows store: steam @@ -512999,25 +514388,25 @@ Super 123: installDir: Derpy Fight: {} launch: - /DerpyFight.exe: + "/DerpyFight.exe": - when: - os: windows store: steam steam: id: 711700 -Super 3-D Noah's Ark: +"Super 3-D Noah's Ark": files: - /SAVEGAM#.N3D: + "/SAVEGAM#.N3D": tags: - save when: - os: dos - /Saved Games/Noah3D: + "/Saved Games/Noah3D": tags: - save when: - os: windows - /Noah3D/noah3d.cfg: + "/Noah3D/noah3d.cfg": tags: - config when: @@ -513025,27 +514414,27 @@ Super 3-D Noah's Ark: gog: id: 1672565562 installDir: - Super 3-D Noah's Ark: {} + "Super 3-D Noah's Ark": {} launch: - /Super 3D Noah's Ark.app/Contents/MacOS/noah3d: + "/Super 3D Noah's Ark.app/Contents/MacOS/noah3d": - when: - os: mac store: steam - /noah3d: + "/noah3d": - when: - os: linux store: steam - /noah3d.exe: + "/noah3d.exe": - when: - os: windows store: steam steam: id: 371180 -'Super Agent: Drunk Kent': +"Super Agent: Drunk Kent": installDir: Super Agent Drunk Kent: {} launch: - /Super Agent Drunk Kent.exe: + "/Super Agent Drunk Kent.exe": - when: - os: windows store: steam @@ -513055,7 +514444,7 @@ Super Alpaca Bros.: installDir: Super Alpaca Bros: {} launch: - /super-alpaca-bros.exe: + "/super-alpaca-bros.exe": - when: - bit: 64 os: windows @@ -513066,7 +514455,7 @@ Super Amazeballs: installDir: Super Amazeballs: {} launch: - /SuperAmazeballs.exe: + "/SuperAmazeballs.exe": - when: - os: windows store: steam @@ -513074,7 +514463,7 @@ Super Amazeballs: id: 594980 Super Amazing Wagon Adventure: files: - /SavedGames/WagonAdventure/WagonAdventure/AllPlayers: + "/SavedGames/WagonAdventure/WagonAdventure/AllPlayers": tags: - config when: @@ -513082,7 +514471,7 @@ Super Amazing Wagon Adventure: installDir: Super Amazing Wagon Adventure: {} launch: - /WagonAdventure.exe: + "/WagonAdventure.exe": - when: - store: steam steam: @@ -513091,7 +514480,7 @@ Super Angling: installDir: Super Angling: {} launch: - /Super Angling.exe: + "/Super Angling.exe": - when: - bit: 64 os: windows @@ -513102,11 +514491,11 @@ Super Animal Royale: installDir: Super Animal Royale: {} launch: - /Super Animal Royale.app/Contents/MacOS/Super Animal Royale: + "/Super Animal Royale.app/Contents/MacOS/Super Animal Royale": - when: - os: mac store: steam - /Super Animal Royale.exe: + "/Super Animal Royale.exe": - when: - bit: 64 os: windows @@ -513122,20 +514511,20 @@ Super Arcade Boy in Defender of Planet Earth: installDir: Super Arcade Boy in Defender of Planet Earth: {} launch: - /Super Arcade Boy in Defender of Planet Earth.app: + "/Super Arcade Boy in Defender of Planet Earth.app": - when: - os: mac store: steam - /game.exe: + "/game.exe": - when: - os: windows store: steam - /game.x86: + "/game.x86": - when: - bit: 32 os: linux store: steam - /game.x86_64: + "/game.x86_64": - when: - bit: 64 os: linux @@ -513146,7 +514535,7 @@ Super Arcade Boy in Goodbye Greenies: installDir: Super Arcade Boy in Goodbye Greenies: {} launch: - /GoodbyeGreenies.exe: + "/GoodbyeGreenies.exe": - when: - os: windows store: steam @@ -513156,11 +514545,11 @@ Super Arcade Football: installDir: SuperArcadeFootball: {} launch: - /SuperArcadeFootball.app: + "/SuperArcadeFootball.app": - when: - os: mac store: steam - /SuperArcadeFootball.exe: + "/SuperArcadeFootball.exe": - when: - os: windows store: steam @@ -513170,11 +514559,11 @@ Super Arcade Racing: installDir: Super Arcade Racing: {} launch: - /SuperArcadeRacing.app: + "/SuperArcadeRacing.app": - when: - os: mac store: steam - /SuperArcadeRacing.exe: + "/SuperArcadeRacing.exe": - when: - os: windows store: steam @@ -513184,47 +514573,47 @@ Super Arcade Soccer: installDir: Super Arcade Soccer: {} launch: - /SAS.app/Contents/MacOS/SAS: + "/SAS.app/Contents/MacOS/SAS": - when: - os: mac store: steam - /SuperArcadeSoccer.exe: + "/SuperArcadeSoccer.exe": - when: - os: windows store: steam steam: id: 1024430 -'Super Army of Tentacles 3: The Search for Army of Tentacles 2': +"Super Army of Tentacles 3: The Search for Army of Tentacles 2": installDir: Super Army of Tentacles 3: {} launch: - /SUPERARMY3.app/Contents/MacOS/SUPERARMY3: + "/SUPERARMY3.app/Contents/MacOS/SUPERARMY3": - when: - os: mac store: steam - /SUPERARMY3.exe: + "/SUPERARMY3.exe": - when: - os: windows store: steam - /SUPERARMY3.sh: + "/SUPERARMY3.sh": - when: - os: linux store: steam steam: id: 592200 -'Super Army of Tentacles 3: The Search for Army of Tentacles 2: Black GOAT of the Woods Edition': +"Super Army of Tentacles 3: The Search for Army of Tentacles 2: Black GOAT of the Woods Edition": installDir: Super Army of Tentacles 2 BGWE: {} launch: - /AoT3BlackGOATEdition.app/Contents/MacOS/AoT3BlackGOATEdition: + "/AoT3BlackGOATEdition.app/Contents/MacOS/AoT3BlackGOATEdition": - when: - os: mac store: steam - /AoT3BlackGOATEdition.exe: + "/AoT3BlackGOATEdition.exe": - when: - os: windows store: steam - /AoT3BlackGOATEdition.sh: + "/AoT3BlackGOATEdition.sh": - when: - os: linux store: steam @@ -513234,7 +514623,7 @@ Super Asteroids: installDir: Super Asteroids: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -513244,11 +514633,11 @@ Super Auto Pets: installDir: Super Auto Pets: {} launch: - /Super Auto Pets.exe: + "/Super Auto Pets.exe": - when: - os: windows store: steam - /superautopets.x86_64: + "/superautopets.x86_64": - when: - bit: 64 os: linux @@ -513259,14 +514648,14 @@ Super Auto Pets: - config steam: id: 1714040 -Super B-Dino's adventures: +"Super B-Dino's adventures": steam: id: 860200 Super BOO Quest: installDir: Super BOO Quest: {} launch: - /Super BOO Quest.exe: + "/Super BOO Quest.exe": - when: - os: windows store: steam @@ -513276,11 +514665,11 @@ Super Ball Wrestle Yes: installDir: SUPER BALL WRESTLE YES: {} launch: - /SUPER BALL WRESTLE YES.exe: + "/SUPER BALL WRESTLE YES.exe": - when: - os: windows store: steam - /game.app/Contents/MacOS/game: + "/game.app/Contents/MacOS/game": - when: - os: mac store: steam @@ -513291,32 +514680,32 @@ Super Beam: SuperBeam: {} steam: id: 1019500 -'Super Benbo Quest: Turbo Deluxe': +"Super Benbo Quest: Turbo Deluxe": steam: id: 793740 Super Bernie World: installDir: SuperBernieWorld: {} launch: - /Super Bernie World.app/Contents/MacOS/SuperBernieWorld: + "/Super Bernie World.app/Contents/MacOS/SuperBernieWorld": - when: - os: mac store: steam - /SuperBernieWorld: + "/SuperBernieWorld": - when: - os: linux store: steam - /SuperBernieWorld.exe: + "/SuperBernieWorld.exe": - when: - os: windows store: steam steam: id: 1258040 -'Super Bit Adventure: Paragons of Life': +"Super Bit Adventure: Paragons of Life": installDir: Super Bit Adventure Paragons of Life: {} launch: - /SBA.exe: + "/SBA.exe": - when: - os: windows store: steam @@ -513326,16 +514715,19 @@ Super Bit Blaster XL: installDir: Super Bit Blaster XL: {} launch: - /Super Bit Blaster XL.exe: + "/Super Bit Blaster XL.exe": - when: - bit: 32 os: windows store: steam - /Super Bit Blaster XL.x86_64: + - bit: 64 + os: windows + store: steam + "/Super Bit Blaster XL.x86_64": - when: - os: linux store: steam - /SuperBitBlasterXL.app: + "/SuperBitBlasterXL.app": - when: - os: mac store: steam @@ -513345,7 +514737,7 @@ Super Blackjack Battle 2 Turbo Edition - The Card Warriors: installDir: Super Blackjack Battle 2 Turbo Edition - The Card Warriors: {} launch: - /SBJB2TE.exe: + "/SBJB2TE.exe": - when: - os: windows store: steam @@ -513355,7 +514747,7 @@ Super Blackout: installDir: Super Blackout: {} launch: - /SuperBlackout.exe: + "/SuperBlackout.exe": - when: - os: windows store: steam @@ -513365,7 +514757,7 @@ Super Blasting Boy: installDir: Super Blasting Boy: {} launch: - /SuperBlastingBoy.exe: + "/SuperBlastingBoy.exe": - when: - os: windows store: steam @@ -513375,7 +514767,7 @@ Super Blockbreak 3D: installDir: Super Blockbreak 3D: {} launch: - /SuperBlockBreak3D.exe: + "/SuperBlockBreak3D.exe": - when: - os: windows store: steam @@ -513383,12 +514775,12 @@ Super Blockbreak 3D: id: 684470 Super Blood Hockey: files: - /Franchises: + "/Franchises": tags: - save when: - os: windows - /SubparBloopHokeyCon.fig: + "/SubparBloopHokeyCon.fig": tags: - config when: @@ -513396,15 +514788,15 @@ Super Blood Hockey: installDir: Super Blood Hockey: {} launch: - /SuperBloodHockey: + "/SuperBloodHockey": - when: - os: linux store: steam - /SuperBloodHockey.app/Contents/MacOS/SuperBloodHockey: + "/SuperBloodHockey.app/Contents/MacOS/SuperBloodHockey": - when: - os: mac store: steam - /SuperBloodHockey.exe: + "/SuperBloodHockey.exe": - when: - os: windows store: steam @@ -513414,11 +514806,11 @@ Super Blue Boy Planet: installDir: Super Blue Boy Planet: {} launch: - /Super Blue Boy Planet.app/Contents/MacOS/Mac_Runner: + "/Super Blue Boy Planet.app/Contents/MacOS/Mac_Runner": - when: - os: mac store: steam - /Super Blue Boy Planet.exe: + "/Super Blue Boy Planet.exe": - when: - os: windows store: steam @@ -513428,15 +514820,15 @@ Super Blue Fighter: installDir: Super Blue Fighter: {} launch: - /Resources/SuperBlueFighter: + "/Resources/SuperBlueFighter": - when: - os: mac store: steam - /Super Blue Fighter.exe: + "/Super Blue Fighter.exe": - when: - os: windows store: steam - /SuperBlueFighter: + "/SuperBlueFighter": - when: - os: linux store: steam @@ -513446,7 +514838,7 @@ Super Bomb Rush!: installDir: Super Bomb Rush: {} launch: - /SBR.exe: + "/SBR.exe": - when: - os: windows store: steam @@ -513454,7 +514846,7 @@ Super Bomb Rush!: id: 397810 Super Bomberman R: files: - /savedata.bin: + "/savedata.bin": tags: - save when: @@ -513462,7 +514854,7 @@ Super Bomberman R: installDir: Super Bomberman R: {} launch: - /SuperBombermanR.exe: + "/SuperBombermanR.exe": - when: - os: windows store: steam @@ -513474,7 +514866,7 @@ Super Bomberman R: id: 702700 Super Bomberman R 2: files: - '/AppData/LocalLow/Konami Digital Entertainment Co_, Ltd_/SUPER BOMBERMAN R 2/': + "/AppData/LocalLow/Konami Digital Entertainment Co_, Ltd_/SUPER BOMBERMAN R 2/": tags: - config - save @@ -513483,7 +514875,7 @@ Super Bomberman R 2: installDir: SUPER BOMBERMAN R2: {} launch: - /SuperBombermanR2.exe: + "/SuperBombermanR2.exe": - when: - os: windows store: steam @@ -513491,7 +514883,7 @@ Super Bomberman R 2: id: 1913740 Super Bomberman R Online: files: - /AppData/LocalLow/Konami Digital Entertainment/Super Bomberman R Online: + "/AppData/LocalLow/Konami Digital Entertainment/Super Bomberman R Online": tags: - save when: @@ -513499,7 +514891,7 @@ Super Bomberman R Online: installDir: Super Bomberman R Online: {} launch: - /SuperBombermanR_Online.exe: + "/SuperBombermanR_Online.exe": - when: - os: windows store: steam @@ -513513,7 +514905,7 @@ Super Bora Dragon Eyes: installDir: Super Bora Dragon Eyes: {} launch: - /Super Bora Dragon Eyes.exe: + "/Super Bora Dragon Eyes.exe": - when: - os: windows store: steam @@ -513523,11 +514915,11 @@ Super BoxMan Ultra: installDir: Super BoxMan Ultra: {} launch: - /Super BoxMan Ultra.app: + "/Super BoxMan Ultra.app": - when: - os: mac store: steam - /Super BoxMax Ultra.exe: + "/Super BoxMax Ultra.exe": - when: - os: windows store: steam @@ -513540,7 +514932,7 @@ Super Bugman Extreme Ultra: installDir: Super Bugman Extreme Ultra: {} launch: - /Super Bugman Extreme Ultra.exe: + "/Super Bugman Extreme Ultra.exe": - when: - os: windows store: steam @@ -513548,22 +514940,22 @@ Super Bugman Extreme Ultra: id: 756380 Super Bullet Break: files: - )/userdata//1767170/remote: + ")/userdata//1767170/remote": tags: - config - save when: + - store: steam - os: windows store: steam - - store: steam installDir: Super Bullet Break: {} launch: - /SuperBulletBreak.app: + "/SuperBulletBreak.app": - when: - os: mac store: steam - /SuperBulletBreak.exe: + "/SuperBulletBreak.exe": - when: - bit: 64 os: windows @@ -513574,15 +514966,15 @@ Super Bunny Man: installDir: Super Bunny Man: {} launch: - /Super Bunny Man.app: + "/Super Bunny Man.app": - when: - os: mac store: steam - /Super Bunny Man.exe: + "/Super Bunny Man.exe": - when: - os: windows store: steam - /Super Bunny Man.sh: + "/Super Bunny Man.sh": - when: - os: linux store: steam @@ -513594,7 +514986,7 @@ Super BurgerTime: installDir: Retro Classix Super BurgerTime: {} launch: - /Retro Classix Super BurgerTime.exe: + "/Retro Classix Super BurgerTime.exe": - when: - os: windows store: steam @@ -513604,20 +514996,20 @@ Super Button Soccer: installDir: Super Button Soccer: {} launch: - /SuperButtonSoccer.app: + "/SuperButtonSoccer.app": - when: - os: mac store: steam - /SuperButtonSoccer.exe: + "/SuperButtonSoccer.exe": - when: - os: windows store: steam - /SuperButtonSoccer.x86: + "/SuperButtonSoccer.x86": - when: - bit: 32 os: linux store: steam - /SuperButtonSoccer.x86_64: + "/SuperButtonSoccer.x86_64": - when: - bit: 64 os: linux @@ -513626,7 +515018,7 @@ Super Button Soccer: id: 425300 Super Cane Magic ZERO: files: - /SavesDir: + "/SavesDir": tags: - save when: @@ -513634,16 +515026,16 @@ Super Cane Magic ZERO: installDir: Super Cane Magic ZERO: {} launch: - /canemagic: + "/canemagic": - when: - bit: 64 os: linux store: steam - /canemagic.app: + "/canemagic.app": - when: - os: mac store: steam - /canemagic.exe: + "/canemagic.exe": - when: - os: windows store: steam @@ -513657,17 +515049,17 @@ Super Captain 3D: installDir: Super Captain 3D: {} launch: - /supercap3D.exe: + "/supercap3D.exe": - when: - os: windows store: steam steam: id: 972050 -'Super Cat Herding: Totally Awesome Edition': +"Super Cat Herding: Totally Awesome Edition": installDir: Super Cat Herding Totally Awesome Edition: {} launch: - /Super Cat Herding - Totally Awesome Edition.exe: + "/Super Cat Herding - Totally Awesome Edition.exe": - when: - bit: 64 os: windows @@ -513680,11 +515072,11 @@ Super Catboy: installDir: Super_Catboy: {} launch: - /Super_Catboy.app: + "/Super_Catboy.app": - when: - os: mac store: steam - /Super_Catboy.exe: + "/Super_Catboy.exe": - when: - os: windows store: steam @@ -513694,11 +515086,11 @@ Super Catscape: installDir: Super Catscape: {} launch: - /Super Catscape (OSX).app: + "/Super Catscape (OSX).app": - when: - os: mac store: steam - /Super Catscape.exe: + "/Super Catscape.exe": - when: - os: windows store: steam @@ -513708,7 +515100,7 @@ Super Chain Crusher Horizon: installDir: SuperChainCrusherHorizon: {} launch: - /SuperChainCrusherHorizon.exe: + "/SuperChainCrusherHorizon.exe": - when: - os: windows store: steam @@ -513718,18 +515110,18 @@ Super Chains: installDir: superchains: {} launch: - /Contents/MacOS/love: + "/Contents/MacOS/love": - arguments: chains.love --fused when: - os: mac store: steam - /love: + "/love": - arguments: chains.love --fused when: - bit: 64 os: linux store: steam - /love.exe: + "/love.exe": - arguments: chains.love --fused when: - os: windows @@ -513740,15 +515132,15 @@ Super Chibi Knight: installDir: SuperChibiKnight: {} launch: - /SCK.app: + "/SCK.app": - when: - os: mac store: steam - /SuperChibiKnight.exe: + "/SuperChibiKnight.exe": - when: - os: windows store: steam - /run.sh: + "/run.sh": - when: - os: linux store: steam @@ -513758,7 +515150,7 @@ Super Chicken Catchers: installDir: Super Chicken Catchers: {} launch: - /SCC.exe: + "/SCC.exe": - when: - bit: 64 os: windows @@ -513767,7 +515159,7 @@ Super Chicken Catchers: id: 869750 Super Chopper: files: - /Webfoot/SuperChopper/Settings.json: + "/Webfoot/SuperChopper/Settings.json": tags: - config - save @@ -513778,11 +515170,11 @@ Super Chopper: installDir: Super Chopper: {} launch: - /SuperChopper.exe: + "/SuperChopper.exe": - when: - os: windows store: steam - /SuperChopperEditor.exe: + "/SuperChopperEditor.exe": - when: - store: steam steam: @@ -513792,7 +515184,7 @@ Super Clash Crossover - Steam Edition: id: 1054440 Super Cloudbuilt: files: - /SuperCloudbuilt: + "/SuperCloudbuilt": tags: - config - save @@ -513801,7 +515193,7 @@ Super Cloudbuilt: installDir: Super Cloudbuilt: {} launch: - /PummelGame.exe: + "/PummelGame.exe": - when: - store: steam steam: @@ -513810,20 +515202,20 @@ Super Club Soccer: installDir: Super Club Soccer: {} launch: - /SuperClubSoccer.app/Contents/MacOS/SuperClubSoccer: + "/SuperClubSoccer.app/Contents/MacOS/SuperClubSoccer": - when: - os: mac store: steam - /SuperClubSoccer.exe: + "/SuperClubSoccer.exe": - when: - os: windows store: steam - /SuperClubSoccer.x86: + "/SuperClubSoccer.x86": - when: - bit: 32 os: linux store: steam - /SuperClubSoccer.x86_64: + "/SuperClubSoccer.x86_64": - when: - bit: 64 os: linux @@ -513832,16 +515224,16 @@ Super Club Soccer: id: 744980 Super Columbine Massacre RPG!: files: - /Save*.lsd: + "/Save*.lsd": tags: - save when: - os: windows -'Super ComboMan: Smash Edition': +"Super ComboMan: Smash Edition": installDir: Super Comboman Smash Edition: {} launch: - /SCM.exe: + "/SCM.exe": - when: - os: windows store: steam @@ -513855,11 +515247,11 @@ Super Comboman: installDir: Super Comboman: {} launch: - /SCM.app: + "/SCM.app": - when: - os: mac store: steam - /SCM.exe: + "/SCM.exe": - when: - os: windows store: steam @@ -513873,7 +515265,7 @@ Super Commander XL: installDir: Super Commander XL: {} launch: - /SCXL.exe: + "/SCXL.exe": - when: - os: windows store: steam @@ -513881,12 +515273,12 @@ Super Commander XL: id: 939240 Super Crate Box: files: - /options.ini: + "/options.ini": tags: - config when: - os: windows - /SuperCrateBox_YoYo/crates110.sav: + "/SuperCrateBox_YoYo/crates110.sav": tags: - save when: @@ -513894,29 +515286,29 @@ Super Crate Box: installDir: supercratebox: {} launch: - /SuperCrateBox.app: + "/SuperCrateBox.app": - when: - os: mac store: steam - /runner: + "/runner": - when: - os: linux store: steam - /supercratebox.exe: + "/supercratebox.exe": - when: - os: windows store: steam steam: id: 212800 -'Super Crome: Bullet Purgatory': +"Super Crome: Bullet Purgatory": installDir: Super Crome Bullet Purgatory: {} launch: - /Super Crome.exe: + "/Super Crome.exe": - when: - os: windows store: steam - /SuperCrome.app/Contents/MacOS/SuperCrome: + "/SuperCrome.app/Contents/MacOS/SuperCrome": - when: - os: mac store: steam @@ -513926,7 +515318,7 @@ Super Crush KO: installDir: Super Crush KO: {} launch: - /SuperCrushKO.exe: + "/SuperCrushKO.exe": - when: - bit: 64 os: windows @@ -513937,16 +515329,16 @@ Super Crystal Hunter: installDir: Super Crystal Hunter: {} launch: - /game.app/Contents/MacOS/parent: + "/game.app/Contents/MacOS/parent": - arguments: game.app/Contents/MacOS/runtime when: - os: mac store: steam - /game.exe: + "/game.exe": - when: - os: windows store: steam - /game.x64: + "/game.x64": - when: - bit: 64 os: linux @@ -513957,11 +515349,11 @@ Super Cube Smash: installDir: Super Cube Smash: {} launch: - /SCS_1.0.exe: + "/SCS_1.0.exe": - when: - os: windows store: steam - /SuperCubeSmash_V1.0.app: + "/SuperCubeSmash_V1.0.app": - when: - os: mac store: steam @@ -513974,15 +515366,15 @@ Super Cucho: installDir: Super Cucho: {} launch: - /supercucho.app/Contents/MacOS/supercucho: + "/supercucho.app/Contents/MacOS/supercucho": - when: - os: mac store: steam - /supercucho.exe: + "/supercucho.exe": - when: - os: windows store: steam - /supercucho.sh: + "/supercucho.sh": - when: - os: linux store: steam @@ -513992,7 +515384,7 @@ Super Cyborg: installDir: Super Cyborg: {} launch: - /Super Cyborg.exe: + "/Super Cyborg.exe": - when: - os: windows store: steam @@ -514000,7 +515392,7 @@ Super Cyborg: id: 341550 Super DX-Ball: files: - /My Games/Super DX-Ball *: + "/My Games/Super DX-Ball *": tags: - config - save @@ -514008,7 +515400,7 @@ Super DX-Ball: - os: windows Super Dangerous Dungeons: files: - /Stencyl/Super Dangerous Dungeons: + "/Stencyl/Super Dangerous Dungeons": tags: - save when: @@ -514016,11 +515408,11 @@ Super Dangerous Dungeons: installDir: Super Dangerous Dungeons: {} launch: - /Super Dangerous Dungeons.app: + "/Super Dangerous Dungeons.app": - when: - os: mac store: steam - /Super Dangerous Dungeons.exe: + "/Super Dangerous Dungeons.exe": - when: - os: windows store: steam @@ -514033,7 +515425,7 @@ Super Darts VR: id: 965760 Super Daryl Deluxe: files: - /userdata//361230/remote/save*.sav: + "/userdata//361230/remote/save*.sav": tags: - save when: @@ -514044,7 +515436,7 @@ Super Daryl Deluxe: installDir: Super Daryl Deluxe: {} launch: - /Super Daryl Deluxe.exe: + "/Super Daryl Deluxe.exe": - when: - os: windows store: steam @@ -514054,15 +515446,15 @@ Super Dashmatch: installDir: Super Dashmatch: {} launch: - /SDM.exe: + "/SDM.exe": - when: - os: windows store: steam - /SuperDashmatch.app: + "/SuperDashmatch.app": - when: - os: mac store: steam - /SuperDashmatch.x86_64: + "/SuperDashmatch.x86_64": - when: - os: linux store: steam @@ -514072,7 +515464,7 @@ Super Death Arena: installDir: Super Death Arena: {} launch: - /SDA.exe: + "/SDA.exe": - when: - bit: 64 os: windows @@ -514083,7 +515475,7 @@ Super Demon Boy: installDir: Super Demon Boy: {} launch: - /Super Demon Boy.exe: + "/Super Demon Boy.exe": - when: - os: windows store: steam @@ -514093,15 +515485,15 @@ Super Destronaut: installDir: Super Destronaut: {} launch: - /super_destronaut: + "/super_destronaut": - when: - os: linux store: steam - /super_destronaut.app: + "/super_destronaut.app": - when: - os: mac store: steam - /super_destronaut.exe: + "/super_destronaut.exe": - when: - os: windows store: steam @@ -514111,7 +515503,7 @@ Super Destronaut DX: installDir: Super Destronaut DX: {} launch: - /SuperDestronautDX.exe: + "/SuperDestronautDX.exe": - when: - os: windows store: steam @@ -514119,7 +515511,7 @@ Super Destronaut DX: id: 848520 Super Distro: files: - /SUPERDITROXXL/Saved/Config/WindowsNoEditor/Engine.ini: + "/SUPERDITROXXL/Saved/Config/WindowsNoEditor/Engine.ini": tags: - config when: @@ -514127,7 +515519,7 @@ Super Distro: installDir: SUPER DISTRO: {} launch: - /SUPERDITROXXL.exe: + "/SUPERDITROXXL.exe": - when: - os: windows store: steam @@ -514137,7 +515529,7 @@ Super Dodgeball Beats: installDir: Super Dodgeball Beats: {} launch: - /Super Dodgeball Beats.exe: + "/Super Dodgeball Beats.exe": - when: - os: windows store: steam @@ -514146,14 +515538,14 @@ Super Dodgeball Beats: Super Double Dragon: steam: id: 2086370 -'Super Dragon Ball Heroes: World Mission': +"Super Dragon Ball Heroes: World Mission": files: - /BANDAI NAMCO Entertainment/SUPER DRAGON BALL HEROES WORLD MISSION/Saved/SaveGames/: + "/BANDAI NAMCO Entertainment/SUPER DRAGON BALL HEROES WORLD MISSION/Saved/SaveGames/": tags: - save when: - os: windows - /BANDAI NAMCO Entertainment/SUPER DRAGON BALL HEROES WORLD MISSION/Saved/SaveGames//config.ini: + "/BANDAI NAMCO Entertainment/SUPER DRAGON BALL HEROES WORLD MISSION/Saved/SaveGames//config.ini": tags: - config when: @@ -514161,7 +515553,7 @@ Super Double Dragon: installDir: SUPER DRAGON BALL HEROES WORLD MISSION: {} launch: - /Launch_Game.exe: + "/Launch_Game.exe": - when: - os: windows store: steam @@ -514171,32 +515563,32 @@ Super Dungeon Boy: installDir: Super Dungeon Boy: {} launch: - /superDungeonBoy.app/Contents/MacOS/superDungeonBoy: + "/superDungeonBoy.app/Contents/MacOS/superDungeonBoy": - when: - os: mac store: steam - /superDungeonBoy.bin: + "/superDungeonBoy.bin": - when: - os: linux store: steam - /superDungeonBoy.exe: + "/superDungeonBoy.exe": - when: - os: windows store: steam steam: id: 718180 -'Super Dungeon Boy: Mega Fire': +"Super Dungeon Boy: Mega Fire": steam: id: 799540 Super Dungeon Bros: installDir: Super Dungeon Bros: {} launch: - /SDB.app: + "/SDB.app": - when: - os: mac store: steam - /SuperDungeonBros.exe: + "/SuperDungeonBros.exe": - when: - os: windows store: steam @@ -514207,7 +515599,7 @@ Super Dungeon Designer: id: 1172920 Super Dungeon Master: files: - /Game.ini: + "/Game.ini": tags: - config when: @@ -514215,7 +515607,7 @@ Super Dungeon Master: installDir: Super Dungeon Master: {} launch: - /go.bat: + "/go.bat": - when: - os: windows store: steam @@ -514225,22 +515617,28 @@ Super Dungeon Run: installDir: Super Dungeon Run: {} launch: - /DungeonRun.app: + "/DungeonRun.app": - when: - bit: 32 os: mac store: steam - /DungeonRun.exe: + - bit: 64 + os: mac + store: steam + "/DungeonRun.exe": - when: - bit: 32 os: windows store: steam - /DungeonRun.x86: + - bit: 64 + os: windows + store: steam + "/DungeonRun.x86": - when: - bit: 32 os: linux store: steam - /DungeonRun.x86_64: + "/DungeonRun.x86_64": - when: - bit: 64 os: linux @@ -514249,7 +515647,7 @@ Super Dungeon Run: id: 382480 Super Dungeon Tactics: files: - /AppData/LocalLow/Soda Pop Minatures and Underbite Games/Super Dungeon Tactics: + "/AppData/LocalLow/Soda Pop Minatures and Underbite Games/Super Dungeon Tactics": tags: - save when: @@ -514257,11 +515655,11 @@ Super Dungeon Tactics: installDir: Super Dungeon Tactics: {} launch: - /SDT.app: + "/SDT.app": - when: - os: mac store: steam - /SDT.exe: + "/SDT.exe": - when: - os: windows store: steam @@ -514274,11 +515672,11 @@ Super Duper Party Pooper: installDir: Super Duper Party Pooper: {} launch: - /SuperDuperPartyPooper.app: + "/SuperDuperPartyPooper.app": - when: - os: mac store: steam - /SuperDuperPartyPooper.exe: + "/SuperDuperPartyPooper.exe": - when: - os: windows store: steam @@ -514286,19 +515684,19 @@ Super Duper Party Pooper: id: 485870 Super Fancy Pants Adventure: files: - /Users/YourName/Library/Application Support/Steam/userdata//668210/remote: + "/Users/YourName/Library/Application Support/Steam/userdata//668210/remote": tags: - config when: - os: mac store: steam - /userdata//668210/remote: + "/userdata//668210/remote": tags: - config when: - os: windows store: steam - /com.bornegames.FPAWorld4/Local Store/#SharedObjects/SFPA.swf/SFPA.sol: + "/com.bornegames.FPAWorld4/Local Store/#SharedObjects/SFPA.swf/SFPA.sol": tags: - save when: @@ -514306,11 +515704,11 @@ Super Fancy Pants Adventure: installDir: Super Fancy Pants Adventure: {} launch: - /SFPA.app: + "/SFPA.app": - when: - os: mac store: steam - /SFPA.exe: + "/SFPA.exe": - when: - os: windows store: steam @@ -514320,17 +515718,17 @@ Super Flail: installDir: SUPER FLAIL: {} launch: - /SuperFlail.exe: + "/SuperFlail.exe": - when: - os: windows store: steam steam: id: 891130 -Super Flippin' Phones: +"Super Flippin' Phones": installDir: - Super Flippin' Phones: {} + "Super Flippin' Phones": {} launch: - /Super Flippin' Phones.exe: + "/Super Flippin' Phones.exe": - when: - os: windows store: steam @@ -514340,11 +515738,11 @@ Super Flipside: installDir: Super Flipside: {} launch: - /Super Flipside.app: + "/Super Flipside.app": - when: - os: mac store: steam - /Super Flipside.exe: + "/Super Flipside.exe": - when: - os: windows store: steam @@ -514354,17 +515752,17 @@ Super Friends Party: installDir: Super Friends Party: {} launch: - /SuperFriendsParty.exe: + "/SuperFriendsParty.exe": - when: - os: windows store: steam steam: id: 1075140 -Super Frog's Quest: +"Super Frog's Quest": installDir: - Super Frog's Quest: {} + "Super Frog's Quest": {} launch: - /Super Frog's Quest.exe: + "/Super Frog's Quest.exe": - when: - os: windows store: steam @@ -514374,7 +515772,7 @@ Super Furball: installDir: Super Furball: {} launch: - /SuperFurball.exe: + "/SuperFurball.exe": - when: - os: windows store: steam @@ -514387,7 +515785,7 @@ Super GMA: installDir: SUPER GMA: {} launch: - /SUPER GMA.exe: + "/SUPER GMA.exe": - when: - os: windows store: steam @@ -514397,15 +515795,15 @@ Super GTR Racing: installDir: Super GTR Racing: {} launch: - /Super GTR Racing.app/Contents/MacOS/Super GTR Racing: + "/Super GTR Racing.app/Contents/MacOS/Super GTR Racing": - when: - os: mac store: steam - /Super GTR Racing.exe: + "/Super GTR Racing.exe": - when: - os: windows store: steam - /Super GTR Racing.x86: + "/Super GTR Racing.x86": - when: - os: linux store: steam @@ -514426,7 +515824,7 @@ Super Gerry: installDir: Super Gerry: {} launch: - /SuperViolin.exe: + "/SuperViolin.exe": - when: - os: windows store: steam @@ -514439,14 +515837,14 @@ Super Golf 2018: installDir: Super Golf 2018: {} launch: - /Super Golf 2018.app/Contents/MacOS/Super Golf 2018: + "/Super Golf 2018.app/Contents/MacOS/Super Golf 2018": - when: - os: mac store: steam - /Super Golf 2018.exe: + "/Super Golf 2018.exe": - when: - store: steam - /Super Golf 2018.x86: + "/Super Golf 2018.x86": - when: - os: linux store: steam @@ -514456,11 +515854,11 @@ Super Goo Goo: installDir: Super Goo Goo: {} launch: - /Mac/SuperGooGoo.app: + "/Mac/SuperGooGoo.app": - when: - os: mac store: steam - /PC/SuperGooGoo.exe: + "/PC/SuperGooGoo.exe": - when: - os: windows store: steam @@ -514470,7 +515868,7 @@ Super Goribei: installDir: Super Goribei: {} launch: - /Super Goribei.exe: + "/Super Goribei.exe": - when: - os: windows store: steam @@ -514480,7 +515878,7 @@ Super Granny Collection: installDir: Granny in Paradise: {} launch: - /GrannyInParadise.exe: + "/GrannyInParadise.exe": - when: - store: steam steam: @@ -514489,15 +515887,15 @@ Super Grav: installDir: Super Grav: {} launch: - /Super Grav.app/Contents/MacOS/Super Grav: + "/Super Grav.app/Contents/MacOS/Super Grav": - when: - os: mac store: steam - /Super Grav.exe: + "/Super Grav.exe": - when: - os: windows store: steam - /Super Grav.x86: + "/Super Grav.x86": - when: - os: linux store: steam @@ -514507,20 +515905,20 @@ Super Gravity Ball: installDir: Super Gravity Ball: {} launch: - /Super Gravity Ball.app: + "/Super Gravity Ball.app": - when: - os: mac store: steam - /Super Gravity Ball.exe: + "/Super Gravity Ball.exe": - when: - os: windows store: steam - /Super Gravity Ball.x86: + "/Super Gravity Ball.x86": - when: - bit: 32 os: linux store: steam - /Super Gravity Ball.x86_64: + "/Super Gravity Ball.x86_64": - when: - bit: 64 os: linux @@ -514534,7 +515932,7 @@ Super GunWorld 2: installDir: GunWorld 2: {} launch: - /Super GunWorld 2 XB1 PS4.exe: + "/Super GunWorld 2 XB1 PS4.exe": - when: - os: windows store: steam @@ -514547,7 +515945,7 @@ Super Hardcore: installDir: Super Hardcore: {} launch: - /SuperHardcore.exe: + "/SuperHardcore.exe": - when: - os: windows store: steam @@ -514557,21 +515955,24 @@ Super Helmets on Fire DX Ultra Edition Plus Alpha: installDir: Super Helmets on Fire DX Ultra Edition Plus Alpha: {} launch: - /SHOFDX.app/Contents/MacOS/SHOFDX: + "/SHOFDX.app/Contents/MacOS/SHOFDX": - when: - os: mac store: steam - /SHOFDX.exe: + "/SHOFDX.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam - /SHOFDX.x86: + "/SHOFDX.x86": - when: - bit: 32 os: linux store: steam - /SHOFDX.x86_64: + "/SHOFDX.x86_64": - when: - bit: 64 os: linux @@ -514581,41 +515982,41 @@ Super Helmets on Fire DX Ultra Edition Plus Alpha: Super Helpful Man: steam: id: 851210 -'Super Heroes: Men in VR Beta': +"Super Heroes: Men in VR Beta": installDir: Super Hero VR: {} steam: id: 841800 Super Hexagon: files: - /data/scores.dat: + "/data/scores.dat": tags: - save when: - os: windows - /data/settings.dat: + "/data/settings.dat": tags: - config when: - os: windows - /data/suphex.dat: + "/data/suphex.dat": tags: - save when: - os: windows - /Library/Application Support/SuperHexagon: + "/Library/Application Support/SuperHexagon": tags: - config - save when: - os: mac - /userdata//221640/remote: + "/userdata//221640/remote": tags: - config - save when: - store: steam - /SuperHexagon: + "/SuperHexagon": tags: - config - save @@ -514626,15 +516027,15 @@ Super Hexagon: installDir: Super Hexagon: {} launch: - /Super Hexagon.app: + "/Super Hexagon.app": - when: - os: mac store: steam - /SuperHexagon: + "/SuperHexagon": - when: - os: linux store: steam - /superhexagon.exe: + "/superhexagon.exe": - when: - os: windows store: steam @@ -514644,7 +516045,7 @@ Super Hiking League DX: installDir: Super Hiking League: {} launch: - /Super Hiking League.exe: + "/Super Hiking League.exe": - when: - os: windows store: steam @@ -514654,7 +516055,7 @@ Super Hipster Lumberjack: installDir: Super Hipster Lumberjack: {} launch: - /SuperHipsterLumberjackV2.exe: + "/SuperHipsterLumberjackV2.exe": - when: - store: steam steam: @@ -514662,18 +516063,18 @@ Super Hipster Lumberjack: Super Hockey Ball: steam: id: 738950 -Super Hop 'N' Bop ULTRA: +"Super Hop 'N' Bop ULTRA": installDir: - Super Hop 'N' Bop ULTRA: {} + "Super Hop 'N' Bop ULTRA": {} launch: - /Super Hop N Bop ULTRA.exe: + "/Super Hop N Bop ULTRA.exe": - when: - store: steam steam: id: 514930 Super House of Dead Ninjas: files: - /userdata//224820/remote/shodn_data: + "/userdata//224820/remote/shodn_data": tags: - save when: @@ -514681,7 +516082,7 @@ Super House of Dead Ninjas: installDir: super house of dead ninjas: {} launch: - /SHODN.exe: + "/SHODN.exe": - when: - os: windows store: steam @@ -514693,7 +516094,7 @@ Super Huey II: installDir: Super Huey™ 1 & 2 Airdrop: {} launch: - /ConsoleLauncher.exe: + "/ConsoleLauncher.exe": - when: - os: windows store: steam @@ -514705,7 +516106,7 @@ Super Huey III: installDir: Super Huey III: {} launch: - /SuperHuey03.exe: + "/SuperHuey03.exe": - when: - os: windows store: steam @@ -514717,7 +516118,7 @@ Super Huey UH-IX: installDir: Super Huey™ 1 & 2 Airdrop: {} launch: - /ConsoleLauncher.exe: + "/ConsoleLauncher.exe": - when: - os: windows store: steam @@ -514725,12 +516126,12 @@ Super Huey UH-IX: id: 1484980 Super Hydorah: files: - /Super_Hydorah/local_controls.ini: + "/Super_Hydorah/local_controls.ini": tags: - config when: - os: windows - /Super_Hydorah/super_hydorah.sav: + "/Super_Hydorah/super_hydorah.sav": tags: - save when: @@ -514738,7 +516139,7 @@ Super Hydorah: installDir: Super Hydorah: {} launch: - /Super_Hydorah.exe: + "/Super_Hydorah.exe": - when: - os: windows store: steam @@ -514748,16 +516149,16 @@ Super Hyperactive Ninja: installDir: SuperHyperactiveNinja: {} launch: - /HyperactiveNinja: + "/HyperactiveNinja": - when: - os: linux store: steam - /Super Hyperactive Ninja.app/Contents/MacOS/Mac_Runner: + "/Super Hyperactive Ninja.app/Contents/MacOS/Mac_Runner": - when: - os: mac store: steam - workingDir: /Super Hyperactive Ninja.app/Contents/Resources - /SuperHyperactiveNinja.exe: + workingDir: "/Super Hyperactive Ninja.app/Contents/Resources" + "/SuperHyperactiveNinja.exe": - when: - os: windows store: steam @@ -514767,11 +516168,11 @@ Super Impossible Road: installDir: SUPER IMPOSSIBLE ROAD: {} launch: - /SIR_OSX.app: + "/SIR_OSX.app": - when: - os: mac store: steam - /SUPER IMPOSSIBLE ROAD.exe: + "/SUPER IMPOSSIBLE ROAD.exe": - when: - os: windows store: steam @@ -514781,20 +516182,20 @@ Super Indie Karts: installDir: Super Indie Karts: {} launch: - /SuperIndieKarts.app: + "/SuperIndieKarts.app": - when: - os: mac store: steam - /SuperIndieKarts.exe: + "/SuperIndieKarts.exe": - when: - os: windows store: steam - /SuperIndieKarts.x86: + "/SuperIndieKarts.x86": - when: - bit: 32 os: linux store: steam - /SuperIndieKarts.x86_64: + "/SuperIndieKarts.x86_64": - when: - bit: 64 os: linux @@ -514805,7 +516206,7 @@ Super Indie Square: installDir: Super Indie Square: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -514813,12 +516214,12 @@ Super Indie Square: id: 1076140 Super Inefficient Golf: files: - /stickysnowball/Saved/Config/WindowsNoEditor: + "/stickysnowball/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /stickysnowball/Saved/SaveGames: + "/stickysnowball/Saved/SaveGames": tags: - save when: @@ -514826,19 +516227,19 @@ Super Inefficient Golf: installDir: Super Inefficient Golf: {} launch: - /Super Inefficient Golf.exe: - - arguments: '-fullscreen' + "/Super Inefficient Golf.exe": + - arguments: "-fullscreen" when: - bit: 64 os: windows store: steam - /SuperInefficientGolf.app: - - arguments: '-fullscreen' + "/SuperInefficientGolf.app": + - arguments: "-fullscreen" when: - os: mac store: steam - /SuperInefficientGolf.sh: - - arguments: '-fullscreen' + "/SuperInefficientGolf.sh": + - arguments: "-fullscreen" when: - os: linux store: steam @@ -514848,7 +516249,7 @@ Super Intergalactic Gang: installDir: Super Intergalactic Gang: {} launch: - /SIG.exe: + "/SIG.exe": - when: - os: windows store: steam @@ -514863,15 +516264,15 @@ Super Jagua: installDir: SuperJagua: {} launch: - /SuperJagua.app/Contents/MacOS/Mac_Runner: + "/SuperJagua.app/Contents/MacOS/Mac_Runner": - when: - os: mac store: steam - /SuperJagua.exe: + "/SuperJagua.exe": - when: - os: windows store: steam - /run.sh: + "/run.sh": - when: - os: linux store: steam @@ -514886,67 +516287,67 @@ Super Jigsaw Puzzle: installDir: Super Jigsaw Puzzle: {} launch: - /Super Jigsaw Puzzle.exe: + "/Super Jigsaw Puzzle.exe": - when: - os: windows store: steam steam: id: 792650 -'Super Jigsaw Puzzle: Anime': +"Super Jigsaw Puzzle: Anime": installDir: Super Jigsaw Puzzle Anime: {} launch: - /Super Jigsaw Puzzle Anime.exe: + "/Super Jigsaw Puzzle Anime.exe": - when: - os: windows store: steam steam: id: 972430 -'Super Jigsaw Puzzle: Anime Reloaded': +"Super Jigsaw Puzzle: Anime Reloaded": installDir: Super Jigsaw Puzzle Anime Reloaded: {} launch: - /Super Jigsaw Puzzle Anime Reloaded.exe: + "/Super Jigsaw Puzzle Anime Reloaded.exe": - when: - os: windows store: steam steam: id: 1024490 -'Super Jigsaw Puzzle: Cities': +"Super Jigsaw Puzzle: Cities": installDir: Super Jigsaw Puzzle Cities: {} launch: - /Super Jigsaw Puzzle Cities.exe: + "/Super Jigsaw Puzzle Cities.exe": - when: - os: windows store: steam steam: id: 862110 -'Super Jigsaw Puzzle: Generations': +"Super Jigsaw Puzzle: Generations": installDir: Super Jigsaw Puzzle Generations: {} launch: - /Super Jigsaw Puzzle Generations.exe: + "/Super Jigsaw Puzzle Generations.exe": - when: - os: windows store: steam steam: id: 1036950 -'Super Jigsaw Puzzle: Monuments': +"Super Jigsaw Puzzle: Monuments": installDir: Super Jigsaw Puzzle Monuments: {} launch: - /Super Jigsaw Puzzle Monuments.exe: + "/Super Jigsaw Puzzle Monuments.exe": - when: - os: windows store: steam steam: id: 878250 -'Super Jigsaw Puzzle: Space': +"Super Jigsaw Puzzle: Space": installDir: Super Jigsaw Puzzle Space: {} launch: - /Super Jigsaw Puzzle Space.exe: + "/Super Jigsaw Puzzle Space.exe": - when: - os: windows store: steam @@ -514961,22 +516362,25 @@ Super Keepy Ups: installDir: Super Keepy Ups: {} launch: - /Super Keepy Ups.app: + "/Super Keepy Ups.app": - when: - os: mac store: steam - /Super Keepy Ups.exe: + "/Super Keepy Ups.exe": - when: - bit: 32 os: windows store: steam + - bit: 64 + os: windows + store: steam steam: id: 959590 Super Kickers League: installDir: Super Kickers League: {} launch: - /SuperKickersLeague.exe: + "/SuperKickersLeague.exe": - when: - bit: 64 os: windows @@ -514987,20 +516391,20 @@ Super Kids Racing: installDir: Super Kids Racing: {} launch: - /superkids.exe: + "/superkids.exe": - when: - os: windows store: steam steam: id: 793970 -'Super Killer Hornet: Resurrection': +"Super Killer Hornet: Resurrection": installDir: SuperKillerHornet: {} launch: - /SKH/Hornet.exe: + "/SKH/Hornet.exe": - when: - store: steam - /SKHR.exe: + "/SKHR.exe": - when: - store: steam steam: @@ -515012,15 +516416,15 @@ Super Kittens: installDir: Super Kittens: {} launch: - /SKL.x86: + "/SKL.x86": - when: - os: linux store: steam - /SKM.app: + "/SKM.app": - when: - os: mac store: steam - /SKW.exe: + "/SKW.exe": - when: - os: windows store: steam @@ -515030,7 +516434,7 @@ Super Kitty Boing Boing: installDir: Super Kitty Boing Boing: {} launch: - /SKBB.exe: + "/SKBB.exe": - when: - os: windows store: steam @@ -515038,7 +516442,7 @@ Super Kitty Boing Boing: id: 440380 Super Kiwi 64: files: - /AppData/LocalLow/Siactro/SuperKiwi64/*.sav: + "/AppData/LocalLow/Siactro/SuperKiwi64/*.sav": tags: - save when: @@ -515046,7 +516450,7 @@ Super Kiwi 64: installDir: Super Kiwi 64: {} launch: - /SuperKiwi64.exe: + "/SuperKiwi64.exe": - when: - os: windows store: steam @@ -515060,7 +516464,7 @@ Super Knockoff! VS: installDir: Super Knockoff! VS: {} launch: - /skovs.exe: + "/skovs.exe": - when: - os: windows store: steam @@ -515070,16 +516474,16 @@ Super Korotama: installDir: Super Korotama: {} launch: - /BallMachine.app: + "/BallMachine.app": - when: - os: mac store: steam - /BallMachine.exe: + "/BallMachine.exe": - when: - bit: 64 os: windows store: steam - /BallMachine.sh: + "/BallMachine.sh": - when: - bit: 64 os: linux @@ -515090,21 +516494,21 @@ Super Laser Racer: installDir: super laser racer: {} launch: - /Super Laser Racer.exe: + "/Super Laser Racer.exe": - when: - os: windows store: steam - /Super Laser Racer.mt.app: + "/Super Laser Racer.mt.app": - when: - os: mac store: steam steam: id: 44100 -'Super Ledgehop: Double Laser': +"Super Ledgehop: Double Laser": installDir: Super Ledgehop Double Laser: {} launch: - /SuperLedgehop.exe: + "/SuperLedgehop.exe": - when: - store: steam steam: @@ -515113,7 +516517,7 @@ Super Lee World: installDir: Super Lee World: {} launch: - /Super Lee World.exe: + "/Super Lee World.exe": - when: - os: windows store: steam @@ -515123,11 +516527,11 @@ Super Lemonade Factory: installDir: SuperLemonadeFactory: {} launch: - /SuperLemonadeFactory.app: + "/SuperLemonadeFactory.app": - when: - os: mac store: steam - /SuperLemonadeFactory.exe: + "/SuperLemonadeFactory.exe": - when: - os: windows store: steam @@ -515137,7 +516541,7 @@ Super Lesbian Animal RPG: installDir: Super Lesbian Animal RPG: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -515145,7 +516549,7 @@ Super Lesbian Animal RPG: id: 2124380 Super Life (RPG): files: - /SuperLife/Saved/SaveGames: + "/SuperLife/Saved/SaveGames": tags: - save when: @@ -515153,11 +516557,11 @@ Super Life (RPG): installDir: Super Life (RPG): {} launch: - /SuperLife.app/Contents/MacOS/SuperLife: + "/SuperLife.app/Contents/MacOS/SuperLife": - when: - os: mac store: steam - /SuperLife.exe: + "/SuperLife.exe": - when: - os: windows store: steam @@ -515165,7 +516569,7 @@ Super Life (RPG): id: 1087460 Super Life of Pixel: files: - /SavesDir/.prf: + "/SavesDir/.prf": tags: - save when: @@ -515173,15 +516577,15 @@ Super Life of Pixel: installDir: Life of Pixel: {} launch: - /LifeOfPixel.exe: + "/LifeOfPixel.exe": - when: - os: windows store: steam - /lifeofpixel.app: + "/lifeofpixel.app": - when: - os: mac store: steam - /lifeofpixel.x86: + "/lifeofpixel.x86": - when: - os: linux store: steam @@ -515198,7 +516602,7 @@ Super Lobster Run: installDir: Super Lobster Run: {} launch: - /Super Lobster Run.exe: + "/Super Lobster Run.exe": - when: - store: steam steam: @@ -515207,7 +516611,7 @@ Super Lolicon Puzzle Simulator 2019: installDir: Super Lolicon Puzzle Simulator 2019: {} launch: - /PicturePuzzle.exe: + "/PicturePuzzle.exe": - when: - os: windows store: steam @@ -515215,7 +516619,7 @@ Super Lolicon Puzzle Simulator 2019: id: 973300 Super Lone Survivor: files: - /AppData/LocalLow/Superflat Games/Super Lone Survivor: + "/AppData/LocalLow/Superflat Games/Super Lone Survivor": tags: - save when: @@ -515223,7 +516627,7 @@ Super Lone Survivor: installDir: Super Lone Survivor: {} launch: - /Super Lone Survivor.exe: + "/Super Lone Survivor.exe": - when: - os: windows store: steam @@ -515233,48 +516637,49 @@ Super Lovely Planet: installDir: Super Lovely Planet: {} launch: - /SuperLovelyPlanet.app: + "/SuperLovelyPlanet.app": - when: - os: mac store: steam - /SuperLovelyPlanet.exe: + "/SuperLovelyPlanet.exe": - when: - os: windows store: steam - /SuperLovelyPlanet.x86: + "/SuperLovelyPlanet.x86": - when: - os: linux store: steam steam: id: 588540 -Super Lucky's Tale: +"Super Lucky's Tale": files: - /SLT_Data/SavesDir/: + "/SLT_Data/SavesDir/": tags: - save when: - store: steam - /AppData/LocalLow/Microsoft Studios/SuperLucky: + "/AppData/LocalLow/Microsoft Studios/SuperLucky": tags: - config when: - - store: steam - /Packages/Microsoft.AcornUWP_8wekyb3d8bbwe/LocalState: + - os: windows + store: steam + "/Packages/Microsoft.AcornUWP_8wekyb3d8bbwe/LocalState": tags: - config when: - os: windows store: microsoft - /Packages/Microsoft.AcornUWP_8wekyb3d8bbwe/SystemAppData/wgs: + "/Packages/Microsoft.AcornUWP_8wekyb3d8bbwe/SystemAppData/wgs": tags: - save when: - os: windows store: microsoft installDir: - Super Lucky's Tale: {} + "Super Lucky's Tale": {} launch: - /SLT.exe: + "/SLT.exe": - when: - store: steam steam: @@ -515286,11 +516691,11 @@ Super Lumberjack: installDir: Super Lumberjack: {} launch: - /Super Lumberjack.app: + "/Super Lumberjack.app": - when: - os: mac store: steam - /Super Lumberjack.exe: + "/Super Lumberjack.exe": - when: - os: windows store: steam @@ -515300,7 +516705,7 @@ Super Lumi Live: installDir: Super Lumi Live: {} launch: - /Super Lumi Live.exe: + "/Super Lumi Live.exe": - when: - os: windows store: steam @@ -515310,7 +516715,7 @@ Super Man Or Monster: installDir: Super Man Or Monster: {} launch: - /SuperManOrMonster.exe: + "/SuperManOrMonster.exe": - when: - os: windows store: steam @@ -515318,12 +516723,12 @@ Super Man Or Monster: id: 393220 Super Mario 64: files: - /sm64_save_file.bin: + "/sm64_save_file.bin": tags: - save when: - os: windows - /sm64config.txt: + "/sm64config.txt": tags: - config when: @@ -515332,17 +516737,17 @@ Super Markup Man: installDir: Super Markup Man: {} launch: - /launch.sh: + "/launch.sh": - when: - bit: 64 os: linux store: steam - /markup-man.app: + "/markup-man.app": - when: - os: mac store: steam - /markup-man.exe: - - arguments: '--in-process-gpu --disable-windows10-custom-titlebar' + "/markup-man.exe": + - arguments: "--in-process-gpu --disable-windows10-custom-titlebar" when: - os: windows store: steam @@ -515350,19 +516755,19 @@ Super Markup Man: id: 502210 Super Meat Boy: files: - /UserData: + "/UserData": tags: - config - save when: - os: windows - /Library/Application Support/Super Meat Boy: + "/Library/Application Support/Super Meat Boy": tags: - config - save when: - os: mac - /SuperMeatBoy: + "/SuperMeatBoy": tags: - config - save @@ -515374,15 +516779,15 @@ Super Meat Boy: installDir: Super Meat Boy: {} launch: - /SuperMeatBoy: + "/SuperMeatBoy": - when: - os: linux store: steam - /SuperMeatBoy.app: + "/SuperMeatBoy.app": - when: - os: mac store: steam - /SuperMeatBoy.exe: + "/SuperMeatBoy.exe": - when: - os: windows store: steam @@ -515390,12 +516795,12 @@ Super Meat Boy: id: 40800 Super Meat Boy Forever: files: - /My Games/Super Meat Boy Forever/Save: + "/My Games/Super Meat Boy Forever/Save": tags: - save when: - os: windows - /My Games/Super Meat Boy Forever/Save/settings.config: + "/My Games/Super Meat Boy Forever/Save/settings.config": tags: - config when: @@ -515403,7 +516808,7 @@ Super Meat Boy Forever: installDir: Super Meat Boy Forever: {} launch: - /SuperMeatBoyForever.exe: + "/SuperMeatBoyForever.exe": - when: - store: steam steam: @@ -515412,7 +516817,7 @@ Super Meat Shooter: installDir: Super Meat Shooter: {} launch: - /Super meat shooter.exe: + "/Super meat shooter.exe": - when: - os: windows store: steam @@ -515420,7 +516825,7 @@ Super Meat Shooter: id: 745340 Super Mecha Champions: files: - /package/user-settings.xml: + "/package/user-settings.xml": tags: - config when: @@ -515428,7 +516833,7 @@ Super Mecha Champions: installDir: Super Mecha Champions: {} launch: - /launcher.exe: + "/launcher.exe": - when: - store: steam steam: @@ -515437,7 +516842,7 @@ Super Mega Baseball 2: installDir: Super Mega Baseball 2: {} launch: - /supermegabaseball.exe: + "/supermegabaseball.exe": - when: - store: steam steam: @@ -515449,7 +516854,7 @@ Super Mega Baseball 3: installDir: Super Mega Baseball 3: {} launch: - /supermegabaseball.exe: + "/supermegabaseball.exe": - when: - os: windows store: steam @@ -515457,7 +516862,7 @@ Super Mega Baseball 3: id: 988910 Super Mega Baseball 4: files: - /Metalhead/Super Mega Baseball 4//*s.av: + "/Metalhead/Super Mega Baseball 4//*s.av": tags: - save when: @@ -515465,21 +516870,21 @@ Super Mega Baseball 4: installDir: Super Mega Baseball 4: {} launch: - /supermegabaseball.exe: + "/supermegabaseball.exe": - when: - os: windows store: steam steam: id: 1487210 -'Super Mega Baseball: Extra Innings': +"Super Mega Baseball: Extra Innings": files: - /userdata//314070/remote: + "/userdata//314070/remote": tags: - save when: - os: windows store: steam - /Metalhead/Super Mega Baseball: + "/Metalhead/Super Mega Baseball": tags: - config when: @@ -515487,7 +516892,7 @@ Super Mega Baseball 4: installDir: Super Mega Baseball: {} launch: - /supermegabaseball.exe: + "/supermegabaseball.exe": - when: - os: windows store: steam @@ -515497,7 +516902,7 @@ Super Mega Bob: installDir: Super Mega Bob: {} launch: - /Super Mega Bob.exe: + "/Super Mega Bob.exe": - when: - os: windows store: steam @@ -515507,8 +516912,11 @@ Super Mega Neo Pug: installDir: Super Mega Neo Pug: {} launch: - /SuperNeoPug.exe: + "/SuperNeoPug.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam @@ -515518,21 +516926,24 @@ Super Mega Space Blaster Special: installDir: SM Space Blaster Sp: {} launch: - /SMSBSpMac.app/Contents/MacOS/SMSBSpMac: + "/SMSBSpMac.app/Contents/MacOS/SMSBSpMac": - when: - os: mac store: steam - /SuperMegaSpaceBlasterSpecial.exe: + "/SuperMegaSpaceBlasterSpecial.exe": - when: - bit: 32 os: windows store: steam - /SuperMegaSpaceBlasterSpecial.x86: + - bit: 64 + os: windows + store: steam + "/SuperMegaSpaceBlasterSpecial.x86": - when: - bit: 32 os: linux store: steam - /SuperMegaSpaceBlasterSpecial.x86_64: + "/SuperMegaSpaceBlasterSpecial.x86_64": - when: - bit: 64 os: linux @@ -515543,21 +516954,24 @@ Super Mega Space Blaster Special Turbo: installDir: Space Blaster Turbo: {} launch: - /SMSBSTMac.app/Contents/MacOS/SMSBSTMac: + "/SMSBSTMac.app/Contents/MacOS/SMSBSTMac": - when: - os: mac store: steam - /SuperMegaSpaceBlasterSpecialTurbo.exe: + "/SuperMegaSpaceBlasterSpecialTurbo.exe": - when: - bit: 32 os: windows store: steam - /SuperMegaSpaceBlasterSpecialTurbo.x86: + - bit: 64 + os: windows + store: steam + "/SuperMegaSpaceBlasterSpecialTurbo.x86": - when: - bit: 32 os: linux store: steam - /SuperMegaSpaceBlasterSpecialTurbo.x86_64: + "/SuperMegaSpaceBlasterSpecialTurbo.x86_64": - when: - bit: 64 os: linux @@ -515568,11 +516982,11 @@ Super Mega Zero: installDir: Super Mega Zero: {} launch: - /supermegazero.app: + "/supermegazero.app": - when: - os: mac store: steam - /supermegazero.exe: + "/supermegazero.exe": - when: - store: steam steam: @@ -515581,7 +516995,7 @@ Super Minesweeper attACK: installDir: SuperMinesweeperattACK: {} launch: - /sma.exe: + "/sma.exe": - when: - os: windows store: steam @@ -515591,7 +517005,7 @@ Super Mixtape: installDir: SuperMixtape: {} launch: - /SuperMixtape.exe: + "/SuperMixtape.exe": - when: - os: windows store: steam @@ -515599,7 +517013,7 @@ Super Mixtape: id: 486660 Super Monday Night Combat: files: - /My Games/UnrealEngine3/MNCGame/Config: + "/My Games/UnrealEngine3/MNCGame/Config": tags: - config when: @@ -515607,7 +517021,7 @@ Super Monday Night Combat: installDir: SuperMNC: {} launch: - /Binaries/Win32/SuperMNCGameClient.exe: + "/Binaries/Win32/SuperMNCGameClient.exe": - when: - store: steam steam: @@ -515616,14 +517030,14 @@ Super Monkey: installDir: Super Monkey: {} launch: - /Super Monkey.exe: + "/Super Monkey.exe": - when: - store: steam steam: id: 1142460 -'Super Monkey Ball: Banana Blitz HD': +"Super Monkey Ball: Banana Blitz HD": files: - /SEGA/SuperMonkeyBallBananaBlitzHD/SAVE: + "/SEGA/SuperMonkeyBallBananaBlitzHD/SAVE": tags: - save when: @@ -515631,15 +517045,15 @@ Super Monkey: installDir: SMBBBHD: {} launch: - /SMBBBHD.exe: + "/SMBBBHD.exe": - when: - os: windows store: steam steam: id: 1061730 -'Super Monkey Ball: Banana Mania': +"Super Monkey Ball: Banana Mania": files: - /SEGA/SuperMonkeyBallBananaMania/SAVE: + "/SEGA/SuperMonkeyBallBananaMania/SAVE": tags: - save when: @@ -515647,7 +517061,7 @@ Super Monkey: installDir: smbbm: {} launch: - /smbbm.exe: + "/smbbm.exe": - when: - bit: 64 os: windows @@ -515660,12 +517074,12 @@ Super Monkey: id: 1316910 Super Motherload: files: - '/XGen Studios, Inc/Super Motherload/savedata': + "/XGen Studios, Inc/Super Motherload/savedata": tags: - save when: - os: windows - '/XGen Studios, Inc/Super Motherload/savedata/common': + "/XGen Studios, Inc/Super Motherload/savedata/common": tags: - config when: @@ -515673,11 +517087,11 @@ Super Motherload: installDir: Super Motherload: {} launch: - /Goldium/Motherload Goldium.exe: + "/Goldium/Motherload Goldium.exe": - when: - os: windows store: steam - /launcher.exe: + "/launcher.exe": - when: - os: windows store: steam @@ -515687,7 +517101,7 @@ Super Mr. Kake: installDir: Super Mr. Kake: {} launch: - /mrKake.exe: + "/mrKake.exe": - when: - store: steam steam: @@ -515696,11 +517110,11 @@ Super Multitasking: installDir: Super Multitasking: {} launch: - /Super Multitasking.app: + "/Super Multitasking.app": - when: - os: mac store: steam - /SuperMultitasking.exe: + "/SuperMultitasking.exe": - when: - os: windows store: steam @@ -515710,14 +517124,14 @@ Super Mustache: installDir: Super Mustache: {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: id: 438180 Super Mutant Alien Assault: files: - /SuperMutantAlienAssault/SMAA_SAVES: + "/SuperMutantAlienAssault/SMAA_SAVES": tags: - save when: @@ -515725,7 +517139,7 @@ Super Mutant Alien Assault: installDir: Super Mutant Alien Assault: {} launch: - /SuperMutantAlienAssault.exe: + "/SuperMutantAlienAssault.exe": - when: - store: steam steam: @@ -515735,7 +517149,7 @@ Super Navecitas 2: id: 935550 Super Neptunia RPG: files: - /AppData/LocalLow/Artisan Studios/Super Neptunia™ RPG: + "/AppData/LocalLow/Artisan Studios/Super Neptunia™ RPG": tags: - save when: @@ -515745,7 +517159,7 @@ Super Neptunia RPG: installDir: Super Neptunia RPG: {} launch: - /SuperNeptuniaRPG.exe: + "/SuperNeptuniaRPG.exe": - when: - os: windows store: steam @@ -515759,15 +517173,15 @@ Super Night Riders: installDir: Super Night Riders: {} launch: - /super_night_riders.app/Contents/MacOS/super_night_riders: + "/super_night_riders.app/Contents/MacOS/super_night_riders": - when: - os: mac store: steam - /super_night_riders.exe: + "/super_night_riders.exe": - when: - os: windows store: steam - /super_night_riders.x86: + "/super_night_riders.x86": - when: - os: linux store: steam @@ -515782,11 +517196,11 @@ Super Ninja Meow Cat: installDir: Super Ninja Meow Cat: {} launch: - /Super Ninja Meow Cat.app: + "/Super Ninja Meow Cat.app": - when: - os: mac store: steam - /Super Ninja Meow Cat.exe: + "/Super Ninja Meow Cat.exe": - when: - os: windows store: steam @@ -515799,7 +517213,7 @@ Super Nosebleed Land: installDir: Super Nosebleed Land: {} launch: - /SuperNosebleedLand.exe: + "/SuperNosebleedLand.exe": - when: - store: steam steam: @@ -515808,7 +517222,7 @@ Super Novel Collector (Speedrun Edition): installDir: Super Novel Collector (Speedrun Edition): {} launch: - /Super Novel Collector (Speedrun Edition).exe: + "/Super Novel Collector (Speedrun Edition).exe": - when: - os: windows store: steam @@ -515818,11 +517232,11 @@ Super Orb Collector: installDir: Super Orb Collector: {} launch: - /Super Orb Collector.exe: + "/Super Orb Collector.exe": - when: - os: windows store: steam - /Super Orb Collector.x86_64: + "/Super Orb Collector.x86_64": - when: - os: linux store: steam @@ -515830,12 +517244,12 @@ Super Orb Collector: id: 1031640 Super Panda Adventures: files: - /config.cfg: + "/config.cfg": tags: - config when: - os: windows - /save*.dat: + "/save*.dat": tags: - save when: @@ -515843,7 +517257,7 @@ Super Panda Adventures: installDir: Super Panda Adventures: {} launch: - /Super Panda Adventures.exe: + "/Super Panda Adventures.exe": - when: - os: windows store: steam @@ -515853,8 +517267,8 @@ Super People: installDir: SUPER PEOPLE: {} launch: - /geegeerun.exe: - - arguments: 103 /BravoHotelClient.exe -ApiPhase=\"prod\" -ServicePlatform=GeeGeeWithSteam -IgnoreCatalogue + "/geegeerun.exe": + - arguments: "103 /BravoHotelClient.exe -ApiPhase=\\\"prod\\\" -ServicePlatform=GeeGeeWithSteam -IgnoreCatalogue" when: - bit: 64 os: windows @@ -515865,11 +517279,11 @@ Super Perspective: installDir: Super Perspective: {} launch: - /SuperPerspective.app: + "/SuperPerspective.app": - when: - os: mac store: steam - /SuperPerspective.exe: + "/SuperPerspective.exe": - when: - os: windows store: steam @@ -515879,7 +517293,7 @@ Super Phantom Cat: installDir: Super Phantom Cat: {} launch: - /SPC_REMAKE_STEAM.exe: + "/SPC_REMAKE_STEAM.exe": - when: - os: windows store: steam @@ -515889,7 +517303,7 @@ Super Pig: installDir: Super Pig: {} launch: - /Super Pig.exe: + "/Super Pig.exe": - when: - store: steam steam: @@ -515898,7 +517312,7 @@ Super Pig X: installDir: Super Pig X: {} launch: - /SuperPigX.exe: + "/SuperPigX.exe": - when: - os: windows store: steam @@ -515908,7 +517322,7 @@ Super Pillow Fight: installDir: SuperPillowFight: {} launch: - /SuperPillowFight.exe: + "/SuperPillowFight.exe": - when: - os: windows store: steam @@ -515918,7 +517332,7 @@ Super Pilot: installDir: Super Pilot: {} launch: - /SuperPilot.exe: + "/SuperPilot.exe": - when: - os: windows store: steam @@ -515928,21 +517342,21 @@ Super Pixalo: installDir: Super Pixalo: {} launch: - /Linux32/SuperPixalo: + "/Linux32/SuperPixalo": - when: - bit: 32 os: linux store: steam - /Linux64/SuperPixalo: + "/Linux64/SuperPixalo": - when: - bit: 64 os: linux store: steam - /Mac/SuperPixalo.app: + "/Mac/SuperPixalo.app": - when: - os: mac store: steam - /Windows/SuperPixalo.exe: + "/Windows/SuperPixalo.exe": - when: - os: windows store: steam @@ -515952,7 +517366,7 @@ Super Pixel Racers: installDir: Super Pixel Racers: {} launch: - /SuperPixelRacers.exe: + "/SuperPixelRacers.exe": - when: - os: windows store: steam @@ -515967,11 +517381,11 @@ Super Platformer Gun: installDir: Super Platformer Gun: {} launch: - /SUPERPLATGUN: + "/SUPERPLATGUN": - when: - os: linux store: steam - /Super Platformer Gun.exe: + "/Super Platformer Gun.exe": - when: - os: windows store: steam @@ -515984,7 +517398,7 @@ Super Poop: installDir: Super Poop: {} launch: - /Super Poop.exe: + "/Super Poop.exe": - when: - os: windows store: steam @@ -515994,11 +517408,11 @@ Super Potato Bruh: installDir: Super Potato Bruh: {} launch: - /Super Potato Bruh: + "/Super Potato Bruh": - when: - os: linux store: steam - /Super Potato Bruh.exe: + "/Super Potato Bruh.exe": - when: - os: windows store: steam @@ -516008,7 +517422,7 @@ Super Potus Trump: installDir: Super POTUS Trump: {} launch: - /SuperPotusTrump.exe: + "/SuperPotusTrump.exe": - when: - os: windows store: steam @@ -516018,12 +517432,12 @@ Super Powered Battle Friends: installDir: Super Powered Battle Friends: {} launch: - /SPBF.exe: + "/SPBF.exe": - when: - bit: 64 os: windows store: steam - /SPBF.sh: + "/SPBF.sh": - when: - bit: 64 os: linux @@ -516034,21 +517448,21 @@ Super Punchman: installDir: Super Punchman: {} launch: - /Mac.app: + "/Mac.app": - when: - os: mac store: steam - /Super Punchman.exe: + "/Super Punchman.exe": - when: - bit: 64 os: windows store: steam - /game.x86: + "/game.x86": - when: - bit: 32 os: linux store: steam - /game.x86_64: + "/game.x86_64": - when: - bit: 64 os: linux @@ -516057,19 +517471,19 @@ Super Punchman: id: 845570 Super Puzzle Bobble: files: - /KeySetting.dat: + "/KeySetting.dat": tags: - config when: - os: windows - /SaveData.dat: + "/SaveData.dat": tags: - save when: - os: windows Super Puzzle Fighter II Turbo: files: - /REC_DATA*: + "/REC_DATA*": tags: - save when: @@ -516085,7 +517499,7 @@ Super Puzzle Galaxy: id: 464020 Super Puzzle Platformer Deluxe: files: - /userdata//238530/remote/savegame.sav: + "/userdata//238530/remote/savegame.sav": tags: - save when: @@ -516095,11 +517509,11 @@ Super Puzzle Platformer Deluxe: installDir: Super Puzzle Platformer Deluxe: {} launch: - /Super Puzzle Platformer Deluxe.app: + "/Super Puzzle Platformer Deluxe.app": - when: - os: mac store: steam - /SuperPuzzlePlatformerDeluxe.exe: + "/SuperPuzzlePlatformerDeluxe.exe": - when: - os: windows store: steam @@ -516109,7 +517523,7 @@ Super Puzzle Sisters: installDir: Super Puzzle Sisters: {} launch: - /SuperPuzzleSisters.exe: + "/SuperPuzzleSisters.exe": - when: - store: steam steam: @@ -516118,7 +517532,7 @@ Super Racha: installDir: Super Racha: {} launch: - /Super Racha.exe: + "/Super Racha.exe": - when: - os: windows store: steam @@ -516128,15 +517542,15 @@ Super Rad Raygun: installDir: Super Rad Raygun: {} launch: - /SuperRadRaygun: + "/SuperRadRaygun": - when: - os: linux store: steam - /SuperRadRaygun.app: + "/SuperRadRaygun.app": - when: - os: mac store: steam - /SuperRadRaygun.exe: + "/SuperRadRaygun.exe": - when: - os: windows store: steam @@ -516146,7 +517560,7 @@ Super Realistic Autocross: installDir: Super Realistic Autocross: {} launch: - /Super Realistic Autocross.exe: + "/Super Realistic Autocross.exe": - when: - os: windows store: steam @@ -516159,11 +517573,11 @@ Super Rebellion: installDir: Super Rebellion: {} launch: - /Super Rebellion - Mac.app/Contents/MacOS/Super Rebellion: + "/Super Rebellion - Mac.app/Contents/MacOS/Super Rebellion": - when: - os: mac store: steam - /Super Rebellion.exe: + "/Super Rebellion.exe": - when: - os: windows store: steam @@ -516173,11 +517587,11 @@ Super Red-Hot Hero: installDir: SuperRedHotHero: {} launch: - /SuperRedHotHero.app/Contents/MacOS/SuperRedHotHero: + "/SuperRedHotHero.app/Contents/MacOS/SuperRedHotHero": - when: - os: mac store: steam - /SuperRedHotHero.exe: + "/SuperRedHotHero.exe": - when: - bit: 64 os: windows @@ -516191,7 +517605,7 @@ Super Rhythm Duel ~ 节奏极道: installDir: Super Rhythm Duel: {} launch: - /srd/SRD.exe: + "/srd/SRD.exe": - when: - os: windows store: steam @@ -516201,7 +517615,7 @@ Super Robo Mouse: installDir: SUPER ROBO MOUSE: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -516211,7 +517625,7 @@ Super Robolom: installDir: Super Robolom: {} launch: - /SuperRobolom.exe: + "/SuperRobolom.exe": - when: - os: windows store: steam @@ -516221,7 +517635,7 @@ Super Robot Jump Jump: installDir: Super Robot Jump Jump: {} launch: - /Super Robot Jump Jump.exe: + "/Super Robot Jump Jump.exe": - when: - os: windows store: steam @@ -516229,12 +517643,12 @@ Super Robot Jump Jump: id: 422980 Super Robot Wars 30: files: - /SRW30: + "/SRW30": tags: - config when: - os: windows - /SRW30/Saves: + "/SRW30/Saves": tags: - save when: @@ -516242,7 +517656,7 @@ Super Robot Wars 30: installDir: SRW30: {} launch: - /srw30.exe: + "/srw30.exe": - when: - bit: 64 os: windows @@ -516251,12 +517665,12 @@ Super Robot Wars 30: id: 898750 Super Robot Wars V: files: - /GameOptions.ini: + "/GameOptions.ini": tags: - config when: - os: windows - /SRWV/Saves: + "/SRWV/Saves": tags: - save when: @@ -516264,7 +517678,7 @@ Super Robot Wars V: installDir: SUPER ROBOT WARS V: {} launch: - /SRWV.EXE: + "/SRWV.EXE": - when: - bit: 64 os: windows @@ -516273,12 +517687,12 @@ Super Robot Wars V: id: 1031500 Super Robot Wars X: files: - /GameOptions.ini: + "/GameOptions.ini": tags: - config when: - os: windows - /SRWX/Saves: + "/SRWX/Saves": tags: - save when: @@ -516286,7 +517700,7 @@ Super Robot Wars X: installDir: SUPER ROBOT WARS X: {} launch: - /SRWX.EXE: + "/SRWX.EXE": - when: - bit: 64 os: windows @@ -516297,20 +517711,20 @@ Super Rock Blasters!: installDir: Super Rock Blasters!: {} launch: - /Super Rock Blasters.app: + "/Super Rock Blasters.app": - when: - os: mac store: steam - /Super Rock Blasters.exe: + "/Super Rock Blasters.exe": - when: - os: windows store: steam - /Super Rock Blasters.x86: + "/Super Rock Blasters.x86": - when: - bit: 32 os: linux store: steam - /Super Rock Blasters.x86_64: + "/Super Rock Blasters.x86_64": - when: - bit: 64 os: linux @@ -516321,7 +517735,7 @@ Super Rocket Ride: installDir: Super Rocket Ride: {} launch: - /SRR.exe: + "/SRR.exe": - when: - os: windows store: steam @@ -516331,21 +517745,24 @@ Super Rocket Shootout: installDir: Super Rocket Shootout: {} launch: - /SRS.app: + "/SRS.app": - when: - os: mac store: steam - /SRS.exe: + "/SRS.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam - /SRS.x86: + "/SRS.x86": - when: - bit: 32 os: linux store: steam - /SRS.x86_64: + "/SRS.x86_64": - when: - bit: 64 os: linux @@ -516354,7 +517771,7 @@ Super Rocket Shootout: id: 630160 Super Rude Bear Resurrection: files: - /userdata//384250/remote: + "/userdata//384250/remote": tags: - save when: @@ -516362,7 +517779,7 @@ Super Rude Bear Resurrection: installDir: Super Rude Bear Resurrection: {} launch: - /SRBR.exe: + "/SRBR.exe": - when: - os: windows store: steam @@ -516376,7 +517793,7 @@ Super Sami Roll: installDir: Super Sami Roll: {} launch: - /Super Sami Roll.exe: + "/Super Sami Roll.exe": - when: - os: windows store: steam @@ -516386,7 +517803,7 @@ Super Samurai Rampage: installDir: Super Samurai Rampage: {} launch: - /SuperSamuraiRampage.exe: + "/SuperSamuraiRampage.exe": - when: - os: windows store: steam @@ -516394,13 +517811,13 @@ Super Samurai Rampage: id: 675030 Super Sanctum TD: files: - /userdata//235250: + "/userdata//235250": tags: - save when: - os: windows store: steam - /userdata//235250/remote/gameconfig.dat: + "/userdata//235250/remote/gameconfig.dat": tags: - config when: @@ -516409,11 +517826,11 @@ Super Sanctum TD: installDir: SanctumTD: {} launch: - /Super Sanctum TD.app: + "/Super Sanctum TD.app": - when: - os: mac store: steam - /SuperSanctumTD.exe: + "/SuperSanctumTD.exe": - when: - os: windows store: steam @@ -516423,7 +517840,7 @@ Super Saurio Fly: installDir: Super Saurio Fly: {} launch: - /SuperSaurioFly.exe: + "/SuperSaurioFly.exe": - when: - os: windows store: steam @@ -516433,11 +517850,11 @@ Super Seducer: installDir: Super Seducer: {} launch: - /SuperSeducer.app: + "/SuperSeducer.app": - when: - os: mac store: steam - /SuperSeducer.exe: + "/SuperSeducer.exe": - when: - os: windows store: steam @@ -516447,11 +517864,11 @@ Super Seducer 2: installDir: Super Seducer 2: {} launch: - /SuperSeducer2.app: + "/SuperSeducer2.app": - when: - os: mac store: steam - /SuperSeducer2.exe: + "/SuperSeducer2.exe": - when: - os: windows store: steam @@ -516464,7 +517881,7 @@ Super Seeker: installDir: Super Seeker: {} launch: - /Super Seeker.exe: + "/Super Seeker.exe": - when: - os: windows store: steam @@ -516474,7 +517891,7 @@ Super Shoot Owl: installDir: Super Shoot Owl: {} launch: - /SuperShootOwl.exe: + "/SuperShootOwl.exe": - when: - os: windows store: steam @@ -516484,11 +517901,11 @@ Super Shopper: installDir: Super Shopper: {} launch: - /MacBuild.app: + "/MacBuild.app": - when: - os: mac store: steam - /WindowsBuild.exe: + "/WindowsBuild.exe": - when: - os: windows store: steam @@ -516496,7 +517913,7 @@ Super Shopper: id: 923670 Super Skelemania: files: - /SuperSkelemania: + "/SuperSkelemania": tags: - config - save @@ -516505,7 +517922,7 @@ Super Skelemania: installDir: Super Skelemania: {} launch: - /SuperSkelemania.exe: + "/SuperSkelemania.exe": - when: - os: windows store: steam @@ -516515,11 +517932,11 @@ Super Sketch Bob: installDir: Super Sketch Bob: {} launch: - /Super Sketch Bob.app: + "/Super Sketch Bob.app": - when: - os: mac store: steam - /Super Sketch Bob.exe: + "/Super Sketch Bob.exe": - when: - bit: 64 os: windows @@ -516530,11 +517947,11 @@ Super Skull Smash GO! 2 Turbo: installDir: SSSG2T: {} launch: - /SSSG2T.app/Contents/MacOS/Mac_Runner: + "/SSSG2T.app/Contents/MacOS/Mac_Runner": - when: - os: mac store: steam - /SSSG2T_nms.exe: + "/SSSG2T_nms.exe": - when: - os: windows store: steam @@ -516544,15 +517961,15 @@ Super Sky Arena: installDir: Super Sky Arena: {} launch: - /Super Sky Arena.exe: + "/Super Sky Arena.exe": - when: - os: windows store: steam - /SuperSkyArena.app: + "/SuperSkyArena.app": - when: - os: mac store: steam - /SuperSkyArena.x86_64: + "/SuperSkyArena.x86_64": - when: - os: linux store: steam @@ -516562,7 +517979,7 @@ Super Slam Dunk Touchdown: installDir: Super Slam Dunk Touchdown: {} launch: - /SSDT.exe: + "/SSDT.exe": - when: - os: windows store: steam @@ -516570,17 +517987,17 @@ Super Slam Dunk Touchdown: id: 388260 Super Slime Arena: files: - /assets/controllers/custombindings.xml: + "/assets/controllers/custombindings.xml": tags: - config when: - os: linux - /assets/options/options.xml: + "/assets/options/options.xml": tags: - config when: - os: linux - /assets/options/vidoptions.xml: + "/assets/options/vidoptions.xml": tags: - config when: @@ -516588,15 +518005,15 @@ Super Slime Arena: installDir: Super_Slime_Arena: {} launch: - /SlimeGame: + "/SlimeGame": - when: - os: linux store: steam - /SlimeGame.app/Contents/MacOS/SlimeGame: + "/SlimeGame.app/Contents/MacOS/SlimeGame": - when: - os: mac store: steam - /SlimeGame.exe: + "/SlimeGame.exe": - when: - os: windows store: steam @@ -516611,12 +518028,12 @@ Super Snow Fight: installDir: Super Snow Fight: {} launch: - /SuperSnowFight.exe: + "/SuperSnowFight.exe": - when: - bit: 64 os: windows store: steam - /SuperSnowFightx86.exe: + "/SuperSnowFightx86.exe": - when: - bit: 32 os: windows @@ -516627,7 +518044,7 @@ Super Sonic Racer: installDir: Super Sonic Racer: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -516637,7 +518054,7 @@ Super Space Club: installDir: Super Space Club: {} launch: - /Super Space Club.exe: + "/Super Space Club.exe": - when: - os: windows store: steam @@ -516647,11 +518064,11 @@ Super Space Jump Man: installDir: Super Space Jump Man: {} launch: - /Super Space Jump Man.exe: + "/Super Space Jump Man.exe": - when: - os: windows store: steam - /Super Space Jump Man.x86_64: + "/Super Space Jump Man.x86_64": - when: - os: linux store: steam @@ -516661,7 +518078,7 @@ Super Space Meltdown: installDir: Super Space Meltdown: {} launch: - /Super Space Meltdown.exe: + "/Super Space Meltdown.exe": - when: - os: windows store: steam @@ -516671,7 +518088,7 @@ Super Space Pug: installDir: Super Space Pug: {} launch: - /SuperSpacePug.exe: + "/SuperSpacePug.exe": - when: - os: windows store: steam @@ -516681,7 +518098,7 @@ Super Space Shooter Arena: installDir: SuperSpaceShooterArena: {} launch: - /Super Space Shooter Arena.exe: + "/Super Space Shooter Arena.exe": - when: - os: windows store: steam @@ -516691,7 +518108,7 @@ Super Space Slayer 2: installDir: Super Space Slayer 2: {} launch: - /Super_Space_Slayer_2.exe: + "/Super_Space_Slayer_2.exe": - when: - os: windows store: steam @@ -516699,17 +518116,17 @@ Super Space Slayer 2: id: 1141280 Super Splatters: files: - /userdata//95000: + "/userdata//95000": tags: - save when: - store: steam - /SuperSplatters: + "/SuperSplatters": tags: - config when: - os: windows - /SpikySnail/Splatters: + "/SpikySnail/Splatters": tags: - config - save @@ -516718,19 +518135,19 @@ Super Splatters: installDir: SuperSplatters: {} launch: - /RunGameNoSteamRT.sh: + "/RunGameNoSteamRT.sh": - when: - os: linux store: steam - /Splatters.bin.x86: + "/Splatters.bin.x86": - when: - os: linux store: steam - /Splatters.exe: + "/Splatters.exe": - when: - os: windows store: steam - /SuperSplatters.app: + "/SuperSplatters.app": - when: - os: mac store: steam @@ -516740,7 +518157,7 @@ Super Sportmatchen: installDir: Super Sportmatchen: {} launch: - /sportmatchen.exe: + "/sportmatchen.exe": - when: - bit: 64 os: windows @@ -516751,11 +518168,11 @@ Super Sports Surgery: installDir: Super Sports Surgery: {} launch: - /Super Sports Surgery.app/Contents/MacOS/Super Sports Surgery: + "/Super Sports Surgery.app/Contents/MacOS/Super Sports Surgery": - when: - os: mac store: steam - /Surgeon.exe: + "/Surgeon.exe": - when: - os: windows store: steam @@ -516768,7 +518185,7 @@ Super Squad: installDir: SuperSquad: {} launch: - /SuperSquad.exe: + "/SuperSquad.exe": - when: - bit: 64 os: windows @@ -516777,7 +518194,7 @@ Super Squad: id: 1124940 Super Star: files: - /save/*.db: + "/save/*.db": tags: - save when: @@ -516785,11 +518202,11 @@ Super Star: installDir: Super Star: {} launch: - /game.app/Contents/MacOS/game: + "/game.app/Contents/MacOS/game": - when: - os: mac store: steam - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -516799,7 +518216,7 @@ Super Star Blast: installDir: Super Star Blast: {} launch: - /SuperStarBlast.exe: + "/SuperStarBlast.exe": - when: - os: windows store: steam @@ -516809,7 +518226,7 @@ Super Star Panda: installDir: Super Star Panda: {} launch: - /Panda.exe: + "/Panda.exe": - when: - os: windows store: steam @@ -516819,16 +518236,16 @@ Super Star Path: installDir: Super Star Path: {} launch: - /runner: + "/runner": - when: - bit: 64 os: linux store: steam - /super_star_path.app: + "/super_star_path.app": - when: - os: mac store: steam - /super_star_path.exe: + "/super_star_path.exe": - when: - os: windows store: steam @@ -516838,20 +518255,20 @@ Super Steampunk Pinball 2D: installDir: SSP2D: {} launch: - /Super Steampunk Pinball 2D.exe: + "/Super Steampunk Pinball 2D.exe": - when: - os: windows store: steam - /ssp2d.app/Contents/MacOS/ssp2d: + "/ssp2d.app/Contents/MacOS/ssp2d": - when: - os: mac store: steam - /ssp2d.x86: + "/ssp2d.x86": - when: - bit: 32 os: linux store: steam - /ssp2d.x86_64: + "/ssp2d.x86_64": - when: - bit: 64 os: linux @@ -516862,7 +518279,7 @@ Super Stone Legacy: installDir: Super Stone Legacy: {} launch: - /Super Stone Legacy.exe: + "/Super Stone Legacy.exe": - when: - os: windows store: steam @@ -516872,11 +518289,11 @@ Super Strawberry Man: installDir: Super Strawberry Man: {} launch: - /SuperStrawberryMan: + "/SuperStrawberryMan": - when: - os: linux store: steam - /SuperStrawberryMan.exe: + "/SuperStrawberryMan.exe": - when: - os: windows store: steam @@ -516886,15 +518303,15 @@ Super Streaker Plus: installDir: SuperStreakerPlus: {} launch: - /SuperStreakerPlusiOSTestDemo v2.0.app: + "/SuperStreakerPlusiOSTestDemo v2.0.app": - when: - os: mac store: steam - /SuperStreakerPlusiOSTestDemo v2.0.exe: + "/SuperStreakerPlusiOSTestDemo v2.0.exe": - when: - os: windows store: steam - /SuperStreakerPlusiOSTestDemo v2.0.x86_64: + "/SuperStreakerPlusiOSTestDemo v2.0.x86_64": - when: - os: linux store: steam @@ -516902,26 +518319,26 @@ Super Streaker Plus: id: 911240 Super Street Fighter II: files: - /SSF2.OPT: + "/SSF2.OPT": tags: - config when: - os: dos Super Street Fighter II Turbo: files: - /SF2HISCR.DAT: + "/SF2HISCR.DAT": tags: - save when: - os: dos -'Super Street Fighter IV: Arcade Edition': +"Super Street Fighter IV: Arcade Edition": files: - /CAPCOM/SUPERSTREETFIGHTERIV: + "/CAPCOM/SUPERSTREETFIGHTERIV": tags: - save when: - os: windows - /CAPCOM/SUPERSTREETFIGHTERIV/config.ini: + "/CAPCOM/SUPERSTREETFIGHTERIV/config.ini": tags: - config when: @@ -516929,16 +518346,16 @@ Super Street Fighter II Turbo: installDir: Super Street Fighter IV - Arcade Edition: {} launch: - /SSFIV.exe: + "/SSFIV.exe": - when: - store: steam steam: id: 45760 -'Super Street: The Game': +"Super Street: The Game": installDir: Super Street: {} launch: - /SuperStreet.exe: + "/SuperStreet.exe": - when: - bit: 64 os: windows @@ -516947,7 +518364,7 @@ Super Street Fighter II Turbo: id: 611180 Super Stunt Spectacular: files: - /StuntMan.cfg: + "/StuntMan.cfg": tags: - config when: @@ -516956,7 +518373,7 @@ Super Switch: installDir: Super Switch: {} launch: - /superswitch.exe: + "/superswitch.exe": - when: - os: windows store: steam @@ -516966,7 +518383,7 @@ Super Tennis Blast: installDir: Super Tennis Blast: {} launch: - /Super Tennis Blast.exe: + "/Super Tennis Blast.exe": - when: - os: windows store: steam @@ -516974,22 +518391,22 @@ Super Tennis Blast: id: 1050510 Super Thunder Blade: files: - /SEGA Genesis Classics/0022: + "/SEGA Genesis Classics/0022": tags: - save when: - os: windows - /SEGA Genesis Classics/setup.dat: + "/SEGA Genesis Classics/setup.dat": tags: - config when: - os: windows - /SEGA Mega Drive Classics/0022: + "/SEGA Mega Drive Classics/0022": tags: - save when: - os: windows - /SEGA Mega Drive Classics/setup.dat: + "/SEGA Mega Drive Classics/setup.dat": tags: - config when: @@ -516998,27 +518415,27 @@ Super Thunder Blade: id: 34314 Super Time Force Ultra: files: - /userdata//250700/local/config.txt: + "/userdata//250700/local/config.txt": tags: - config when: - store: steam - /userdata//250700/remote/save.bin: + "/userdata//250700/remote/save.bin": tags: - save when: - store: steam - /capy/SuperTimeForce/config.txt: + "/capy/SuperTimeForce/config.txt": tags: - config when: - os: windows - /capy/SuperTimeForce/save.dat: + "/capy/SuperTimeForce/save.dat": tags: - save when: - os: windows - /capy/SuperTimeForce: + "/capy/SuperTimeForce": tags: - config - save @@ -517029,21 +518446,21 @@ Super Time Force Ultra: installDir: SuperTimeForceUltra: {} launch: - /STFU.app: + "/STFU.app": - when: - os: mac store: steam - /STFU.bin.x86: + "/STFU.bin.x86": - when: - bit: 32 os: linux store: steam - /STFU.bin.x86_64: + "/STFU.bin.x86_64": - when: - bit: 64 os: linux store: steam - /STF_win32.exe: + "/STF_win32.exe": - when: - os: windows store: steam @@ -517052,11 +518469,11 @@ Super Time Force Ultra: Super Tits Rush: steam: id: 791030 -'Super Toaster X: Learn Japanese RPG': +"Super Toaster X: Learn Japanese RPG": installDir: Super Toaster X Learn Japanese RPG: {} launch: - /Super Toaster X.exe: + "/Super Toaster X.exe": - when: - os: windows store: steam @@ -517066,7 +518483,7 @@ Super Tony Land: installDir: Super Tony Land: {} launch: - /SuperTonyLand.exe: + "/SuperTonyLand.exe": - when: - os: windows store: steam @@ -517076,11 +518493,11 @@ Super Toy Cars: installDir: Super Toy Cars: {} launch: - /SuperToyCars.exe: + "/SuperToyCars.exe": - when: - os: windows store: steam - /osx/SuperToyCars.app: + "/osx/SuperToyCars.app": - when: - os: mac store: steam @@ -517094,7 +518511,7 @@ Super Toy Cars 2: installDir: Super Toy Cars 2: {} launch: - /Super Toy Cars 2.exe: + "/Super Toy Cars 2.exe": - when: - os: windows store: steam @@ -517104,7 +518521,7 @@ Super Trashforce: installDir: Super Trashforce: {} launch: - /Super Trashforce.exe: + "/Super Trashforce.exe": - when: - store: steam steam: @@ -517113,11 +518530,11 @@ Super Treasure Arena: installDir: Super Treasure Arena: {} launch: - /Super Treasure Arena.app: + "/Super Treasure Arena.app": - when: - os: mac store: steam - /Super Treasure Arena.exe: + "/Super Treasure Arena.exe": - when: - os: windows store: steam @@ -517127,7 +518544,7 @@ Super Trench Attack 2: installDir: Super Trench Attack 2: {} launch: - /sta2.exe: + "/sta2.exe": - when: - os: windows store: steam @@ -517135,12 +518552,12 @@ Super Trench Attack 2: id: 385360 Super Trench Attack!: files: - /data/save/fragfile*.sav: + "/data/save/fragfile*.sav": tags: - save when: - os: windows - /data/save/fragv3.5.cfg: + "/data/save/fragv3.5.cfg": tags: - config when: @@ -517148,7 +518565,7 @@ Super Trench Attack!: installDir: Super Trench Attack!: {} launch: - /Super Trench Attack.exe: + "/Super Trench Attack.exe": - when: - os: windows store: steam @@ -517158,7 +518575,7 @@ Super Troopers: installDir: SuperSquad: {} launch: - /SuperSquad.exe: + "/SuperSquad.exe": - when: - bit: 64 os: windows @@ -517169,7 +518586,7 @@ Super Turbo Demon Busters!: installDir: Super Turbo Demon Busters!: {} launch: - /stdb.exe: + "/stdb.exe": - when: - os: windows store: steam @@ -517179,7 +518596,7 @@ Super Turbo Sudoku: installDir: Super Turbo Sudoku: {} launch: - /Super Turbo Sudoku.exe: + "/Super Turbo Sudoku.exe": - when: - os: windows store: steam @@ -517189,18 +518606,18 @@ Super Ubie Island REMIX: installDir: Super Ubie Island REMIX: {} launch: - /win32/SuperUbieIslandREMIX.exe: + "/win32/SuperUbieIslandREMIX.exe": - when: - bit: 32 os: windows store: steam - workingDir: /win32 - /win64/SuperUbieIslandREMIX.exe: + workingDir: "/win32" + "/win64/SuperUbieIslandREMIX.exe": - when: - bit: 64 os: windows store: steam - workingDir: /win64 + workingDir: "/win64" steam: id: 405860 Super Ultra Monster Smash!: @@ -517212,7 +518629,7 @@ Super Urban Wizard: installDir: SuperUrbanWizard: {} launch: - /gamewin10.exe: + "/gamewin10.exe": - when: - os: windows store: steam @@ -517230,24 +518647,24 @@ Super Volley Blast: installDir: Super Volley Blast: {} launch: - /SuperVolleyBlast.exe: + "/SuperVolleyBlast.exe": - when: - store: steam steam: id: 822040 -'Super Web Kittens: Act I': +"Super Web Kittens: Act I": installDir: Super Web Kittens: {} launch: - /Super Web Kittens.app: + "/Super Web Kittens.app": - when: - os: mac store: steam - /SuperWebKittens.exe: + "/SuperWebKittens.exe": - when: - os: windows store: steam - /SuperWebKittens.sh: + "/SuperWebKittens.sh": - when: - os: linux store: steam @@ -517257,11 +518674,11 @@ Super Weekend Mode: installDir: Super Weekend Mode - EXTEND: {} launch: - /Super_Weekend_Mode_Mac.app/Contents/MacOS/Super_Weekend_Mode_Mac: + "/Super_Weekend_Mode_Mac.app/Contents/MacOS/Super_Weekend_Mode_Mac": - when: - os: mac store: steam - /Windows_Build/Super_Weekend_Mode_Windows.exe: + "/Windows_Build/Super_Weekend_Mode_Windows.exe": - when: - bit: 64 os: windows @@ -517272,7 +518689,7 @@ Super Welder: installDir: Super Welder: {} launch: - /Super Welder.exe: + "/Super Welder.exe": - when: - os: windows store: steam @@ -517280,22 +518697,22 @@ Super Welder: id: 1039580 Super Win the Game: files: - /My Games/Super Win the Game/Config: + "/My Games/Super Win the Game/Config": tags: - config when: - os: windows - /My Games/Super Win the Game/Saves: + "/My Games/Super Win the Game/Saves": tags: - save when: - os: windows - /Minor Key Games/Super Win the Game/Config: + "/Minor Key Games/Super Win the Game/Config": tags: - config when: - os: linux - /Minor Key Games/Super Win the Game/Saves: + "/Minor Key Games/Super Win the Game/Saves": tags: - save when: @@ -517303,15 +518720,15 @@ Super Win the Game: installDir: Super Win the Game: {} launch: - /SuperGame.app: + "/SuperGame.app": - when: - os: mac store: steam - /SuperGame.exe: + "/SuperGame.exe": - when: - os: windows store: steam - /SuperGame_NFML: + "/SuperGame_NFML": - when: - os: linux store: steam @@ -517321,15 +518738,15 @@ Super X Chess: installDir: Super X Chess: {} launch: - /chessbuildMac.app: + "/chessbuildMac.app": - when: - os: mac store: steam - /linuxbuild.x86_64: + "/linuxbuild.x86_64": - when: - os: linux store: steam - /superxchess.exe: + "/superxchess.exe": - when: - os: windows store: steam @@ -517344,7 +518761,7 @@ Super gamebear with its three girlfriends: installDir: SJX: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -517354,7 +518771,7 @@ Super president How to rule the country: installDir: Super president How to rule the country: {} launch: - /Super President.exe: + "/Super President.exe": - when: - bit: 64 os: windows @@ -517365,17 +518782,17 @@ SuperBike TT: installDir: SuperBike TT: {} launch: - /Superbike_SteamVR.exe: + "/Superbike_SteamVR.exe": - when: - os: windows store: steam steam: id: 340410 -'SuperCluster: Void': +"SuperCluster: Void": installDir: SuperCluster Void: {} launch: - /SuperCluster Void.exe: + "/SuperCluster Void.exe": - when: - os: windows store: steam @@ -517384,11 +518801,11 @@ SuperBike TT: SuperDriver: steam: id: 1145160 -'SuperEpic: The Entertainment War': +"SuperEpic: The Entertainment War": installDir: SuperEpic The Entertainment War: {} launch: - /Superepic.exe: + "/Superepic.exe": - when: - os: windows store: steam @@ -517406,11 +518823,11 @@ SuperLuminauts: installDir: SuperLuminauts: {} launch: - /SuperLuminauts.app: + "/SuperLuminauts.app": - when: - os: mac store: steam - /SuperLuminauts.exe: + "/SuperLuminauts.exe": - when: - os: windows store: steam @@ -517420,11 +518837,11 @@ SuperMash: installDir: SuperMash: {} launch: - /SuperMash.exe: + "/SuperMash.exe": - when: - os: windows store: steam - /SuperMash.x86_64: + "/SuperMash.x86_64": - when: - os: linux store: steam @@ -517434,15 +518851,15 @@ SuperMoose: installDir: SuperMoose: {} launch: - /SuperMoose.app: + "/SuperMoose.app": - when: - os: mac store: steam - /SuperMoose.exe: + "/SuperMoose.exe": - when: - os: windows store: steam - /SuperMoose.x86: + "/SuperMoose.x86": - when: - os: linux store: steam @@ -517450,12 +518867,12 @@ SuperMoose: id: 543160 SuperPower 2: files: - /SP2/save: + "/SP2/save": tags: - save when: - os: windows - /joshua.cfg: + "/joshua.cfg": tags: - config when: @@ -517465,15 +518882,15 @@ SuperPower 2: installDir: SuperPower 2: {} launch: - /Extras/GLEditor.exe: + "/Extras/GLEditor.exe": - when: - os: windows store: steam - /joshua.exe: + "/joshua.exe": - when: - os: windows store: steam - /video_config.exe: + "/video_config.exe": - when: - os: windows store: steam @@ -517485,7 +518902,7 @@ SuperPower 3: installDir: SuperPower3: {} launch: - /Exec/ClientUE4.exe: + "/Exec/ClientUE4.exe": - when: - os: windows store: steam @@ -517495,7 +518912,7 @@ SuperSmash: installDir: SuperSmash: {} launch: - /SuperSmash/SuperSmash.exe: + "/SuperSmash/SuperSmash.exe": - when: - bit: 64 os: windows @@ -517506,7 +518923,7 @@ SuperTrucks Offroad: installDir: SuperTrucks Offroad: {} launch: - /supertrucks.exe: + "/supertrucks.exe": - when: - os: windows store: steam @@ -517514,17 +518931,17 @@ SuperTrucks Offroad: id: 743830 SuperTux: files: - /.local/share/supertux2: + "/.local/share/supertux2": tags: - config when: - os: linux - /Library/Application Support/SuperTux: + "/Library/Application Support/SuperTux": tags: - config when: - os: mac - /SuperTux/supertux2: + "/SuperTux/supertux2": tags: - config - save @@ -517533,15 +518950,15 @@ SuperTux: installDir: SuperTux: {} launch: - /SuperTux.AppImage: + "/SuperTux.AppImage": - when: - os: linux store: steam - /SuperTux.app: + "/SuperTux.app": - when: - os: mac store: steam - /bin/supertux2.exe: + "/bin/supertux2.exe": - when: - os: windows store: steam @@ -517549,19 +518966,19 @@ SuperTux: id: 1572920 SuperTuxKart: files: - /Library/Application Support/SuperTuxKart/config-0.10: + "/Library/Application Support/SuperTuxKart/config-0.10": tags: - config - save when: - os: mac - /supertuxkart/config-0.10: + "/supertuxkart/config-0.10": tags: - config - save when: - os: windows - /SuperTuxKart/config-0.10: + "/SuperTuxKart/config-0.10": tags: - config - save @@ -517571,45 +518988,45 @@ SuperWurfels: installDir: SuperWurfels: {} launch: - /Contents/MacOS/super_mac: + "/Contents/MacOS/super_mac": - when: - os: mac store: steam - /SuperWurfels.exe: + "/SuperWurfels.exe": - when: - os: windows store: steam - /superWurfels.x86: + "/superWurfels.x86": - when: - os: linux store: steam steam: id: 672880 -'Superbrothers: Sword & Sworcery EP': +"Superbrothers: Sword & Sworcery EP": files: - /.capy/SwordAndSworcery: + "/.capy/SwordAndSworcery": tags: - config - save when: - os: linux - /Library/Application Support/capy/SwordAndSworcery: + "/Library/Application Support/capy/SwordAndSworcery": tags: - config - save when: - os: mac - /userdata//204060/local: + "/userdata//204060/local": tags: - config when: - store: steam - /userdata//204060/remote: + "/userdata//204060/remote": tags: - save when: - store: steam - /capy/SwordAndSworcery: + "/capy/SwordAndSworcery": tags: - config - save @@ -517618,15 +519035,15 @@ SuperWurfels: installDir: Superbrothers Sword & Sworcery EP: {} launch: - /run.sh: + "/run.sh": - when: - os: linux store: steam - /swordandsworcery_pc.app/Contents/MacOS/swordandsworcery_pc: + "/swordandsworcery_pc.app/Contents/MacOS/swordandsworcery_pc": - when: - os: mac store: steam - /swordandsworcery_pc.exe: + "/swordandsworcery_pc.exe": - when: - os: windows store: steam @@ -517636,7 +519053,7 @@ Supercar Drift: installDir: SuperCarDrift: {} launch: - /SuperCarDrift.exe: + "/SuperCarDrift.exe": - when: - os: windows store: steam @@ -517649,7 +519066,7 @@ Supercar Drift: id: 1159890 Supercharged Robot VULKAISER: files: - /*.dat: + "/*.dat": tags: - save when: @@ -517657,11 +519074,11 @@ Supercharged Robot VULKAISER: installDir: Supercharged Robot Vulkaiser: {} launch: - /Vulkaiser: + "/Vulkaiser": - when: - os: linux store: steam - /vulkaiser.exe: + "/vulkaiser.exe": - when: - os: windows store: steam @@ -517669,12 +519086,12 @@ Supercharged Robot VULKAISER: id: 349680 Superdimension Neptune VS Sega Hard Girls: files: - /userdata//571530/remote: + "/userdata//571530/remote": tags: - save when: - store: steam - /userdata//571530/remote/NeptuneVS.ini: + "/userdata//571530/remote/NeptuneVS.ini": tags: - config when: @@ -517682,7 +519099,7 @@ Superdimension Neptune VS Sega Hard Girls: installDir: Superdimension Neptune VS Sega Hard Girls: {} launch: - /Neptune VSSega Hard Girls.exe: + "/Neptune VSSega Hard Girls.exe": - when: - os: windows store: steam @@ -517692,7 +519109,7 @@ Superfight: installDir: SUPERFIGHT: {} launch: - /Superfight.exe: + "/Superfight.exe": - when: - os: windows store: steam @@ -517702,7 +519119,7 @@ Superfighters Deluxe: installDir: Superfighters Deluxe: {} launch: - /Superfighters Deluxe.exe: + "/Superfighters Deluxe.exe": - when: - os: windows store: steam @@ -517710,7 +519127,7 @@ Superfighters Deluxe: id: 855860 Superflight: files: - /AppData/LocalLow/Grizzly Games/SUPERFLIGHT/saveGame.gd: + "/AppData/LocalLow/Grizzly Games/SUPERFLIGHT/saveGame.gd": tags: - save when: @@ -517718,7 +519135,7 @@ Superflight: installDir: SuperFlight: {} launch: - /superflight.exe: + "/superflight.exe": - when: - os: windows store: steam @@ -517729,7 +519146,7 @@ Superfrog: id: 1207658989 Superfrog HD: files: - /Saves: + "/Saves": tags: - config - save @@ -517741,15 +519158,15 @@ Superfrog HD: installDir: Superfrog: {} launch: - /Superfrog HD.app: + "/Superfrog HD.app": - when: - os: mac store: steam - /Superfrog.exe: + "/Superfrog.exe": - when: - os: windows store: steam - /superfrog.sh: + "/superfrog.sh": - when: - os: linux store: steam @@ -517757,7 +519174,7 @@ Superfrog HD: id: 234000 Superfuse: files: - /Superfuse/Saved/SaveGames/SuperfuseSaveGame_*.sav: + "/Superfuse/Saved/SaveGames/SuperfuseSaveGame_*.sav": tags: - save when: @@ -517765,7 +519182,7 @@ Superfuse: installDir: Superfuse: {} launch: - /Superfuse.exe: + "/Superfuse.exe": - when: - bit: 64 os: windows @@ -517778,7 +519195,7 @@ Superhero League of Hoboken: installDir: Super Hero League of Hoboken: {} launch: - /dosbox.exe: + "/dosbox.exe": - when: - os: windows store: steam @@ -517786,42 +519203,42 @@ Superhero League of Hoboken: id: 1104470 Superhot: files: - /.config/unity3d/SUPERHOT_Team/SUPERHOT/config.cfg: + "/.config/unity3d/SUPERHOT_Team/SUPERHOT/config.cfg": tags: - config when: - os: linux - /.config/unity3d/SUPERHOT_Team/SUPERHOT/super.hot: + "/.config/unity3d/SUPERHOT_Team/SUPERHOT/super.hot": tags: - save when: - os: linux - /AppData/LocalLow/SUPERHOT_Team/SUPERHOT/Screenshots/Replays: + "/AppData/LocalLow/SUPERHOT_Team/SUPERHOT/Screenshots/Replays": tags: - save when: - os: windows - /AppData/LocalLow/SUPERHOT_Team/SUPERHOT/config.cfg: + "/AppData/LocalLow/SUPERHOT_Team/SUPERHOT/config.cfg": tags: - config when: - os: windows - /AppData/LocalLow/SUPERHOT_Team/SUPERHOT/super.hot: + "/AppData/LocalLow/SUPERHOT_Team/SUPERHOT/super.hot": tags: - save when: - os: windows - /Library/Application Support/unity.SUPERHOT_Team.SUPERHOT/Screenshots/Replays: + "/Library/Application Support/unity.SUPERHOT_Team.SUPERHOT/Screenshots/Replays": tags: - save when: - os: mac - /Library/Application Support/unity.SUPERHOT_Team.SUPERHOT/config.cfg: + "/Library/Application Support/unity.SUPERHOT_Team.SUPERHOT/config.cfg": tags: - config when: - os: mac - /Library/Application Support/unity.SUPERHOT_Team.SUPERHOT/super.hot: + "/Library/Application Support/unity.SUPERHOT_Team.SUPERHOT/super.hot": tags: - save when: @@ -517831,15 +519248,15 @@ Superhot: installDir: SUPERHOT: {} launch: - /SUPERHOT.exe: + "/SUPERHOT.exe": - when: - os: windows store: steam - /SUPERHOT.x86_64: + "/SUPERHOT.x86_64": - when: - os: linux store: steam - /SUPERHOTLAUNCHER.app: + "/SUPERHOTLAUNCHER.app": - when: - os: mac store: steam @@ -517847,7 +519264,7 @@ Superhot: id: 322500 Superhot VR: files: - /AppData/LocalLow/SUPERHOT_Team/SUPERHOT_VR: + "/AppData/LocalLow/SUPERHOT_Team/SUPERHOT_VR": tags: - save when: @@ -517856,34 +519273,34 @@ Superhot VR: SUPERHOT VR: {} steam: id: 617830 -'Superhot: Mind Control Delete': +"Superhot: Mind Control Delete": files: - /.config/unity3d/SUPERHOT_Team/SHMCD: + "/.config/unity3d/SUPERHOT_Team/SHMCD": tags: - save when: - os: linux - /.config/unity3d/SUPERHOT_Team/SHMCD/config.cfg: + "/.config/unity3d/SUPERHOT_Team/SHMCD/config.cfg": tags: - config when: - os: linux - /AppData/LocalLow/SUPERHOT_Team/SHMCD/Screenshots/Replays: + "/AppData/LocalLow/SUPERHOT_Team/SHMCD/Screenshots/Replays": tags: - save when: - os: windows - /AppData/LocalLow/SUPERHOT_Team/SHMCD/config.cfg: + "/AppData/LocalLow/SUPERHOT_Team/SHMCD/config.cfg": tags: - config when: - os: windows - /AppData/LocalLow/SUPERHOT_Team/SHMCD/launcher-game-settings.json: + "/AppData/LocalLow/SUPERHOT_Team/SHMCD/launcher-game-settings.json": tags: - config when: - os: windows - /AppData/LocalLow/SUPERHOT_Team/SHMCD/sh.mcd: + "/AppData/LocalLow/SUPERHOT_Team/SHMCD/sh.mcd": tags: - save when: @@ -517893,15 +519310,15 @@ Superhot VR: installDir: SUPERHOTMCD: {} launch: - /SUPERHOTMCD.app: + "/SUPERHOTMCD.app": - when: - os: mac store: steam - /SUPERHOTMCD.exe: + "/SUPERHOTMCD.exe": - when: - os: windows store: steam - /SUPERHOTMCD.x86_64: + "/SUPERHOTMCD.x86_64": - when: - os: linux store: steam @@ -517911,15 +519328,15 @@ Superior Wizards: installDir: Superior Wizards: {} launch: - /SuperiorWizards.app: + "/SuperiorWizards.app": - when: - os: mac store: steam - /SuperiorWizards.exe: + "/SuperiorWizards.exe": - when: - os: windows store: steam - /SuperiorWizards.x86_64: + "/SuperiorWizards.x86_64": - when: - os: linux store: steam @@ -517928,44 +519345,45 @@ Superior Wizards: Superku: steam: id: 407570 -'Superleague Formula 2009: The Game': +"Superleague Formula 2009: The Game": files: - /Config.ini: + "/Config.ini": tags: - config when: - os: windows - /UserData//.plr: + "/UserData//.plr": tags: - save when: - os: windows Superliminal: files: - /AppData/LocalLow/PillowCastle/Superliminal: + "/AppData/LocalLow/PillowCastle/Superliminal": tags: - save when: - os: windows - /AppData/LocalLow/PillowCastle/SuperliminalSteam: + "/AppData/LocalLow/PillowCastle/SuperliminalSteam": tags: - save when: - - store: steam - /Library/Application Support/PillowCastle/SuperliminalSteam: + - os: windows + store: steam + "/Library/Application Support/PillowCastle/SuperliminalSteam": tags: - config - save when: - os: mac - /Packages/PillowCastle.Superliminal_r6zr3eg4hg8h4/SystemAppData/wgs: + "/Packages/PillowCastle.Superliminal_r6zr3eg4hg8h4/SystemAppData/wgs": tags: - config - save when: - os: windows store: microsoft - /unity3d/PillowCastle/SuperliminalSteam: + "/unity3d/PillowCastle/SuperliminalSteam": tags: - config - save @@ -517976,16 +519394,16 @@ Superliminal: installDir: Superliminal: {} launch: - /Superliminal: + "/Superliminal": - when: - bit: 64 os: linux store: steam - /Superliminal.app: + "/Superliminal.app": - when: - os: mac store: steam - /SuperliminalSteam.exe: + "/SuperliminalSteam.exe": - when: - bit: 64 os: windows @@ -517994,16 +519412,20 @@ Superliminal: HKEY_CURRENT_USER/Software/PillowCastle/Superliminal: tags: - config + when: + - store: microsoft HKEY_CURRENT_USER/Software/PillowCastle/SuperliminalSteam: tags: - config + when: + - store: steam steam: id: 1049410 Supermagical: installDir: Supermagical: {} launch: - /Supermagical.exe: + "/Supermagical.exe": - when: - bit: 64 os: windows @@ -518014,7 +519436,7 @@ Supermarket Shriek: installDir: Supermarket Shriek: {} launch: - /Supermarket Shriek.exe: + "/Supermarket Shriek.exe": - when: - os: windows store: steam @@ -518024,7 +519446,7 @@ Supermarket Tycoon: installDir: Supermarket Tycoon: {} launch: - /SuperMarketTycoon.exe: + "/SuperMarketTycoon.exe": - when: - store: steam steam: @@ -518043,18 +519465,21 @@ Supernatural Super Squad Fight!: installDir: Supernatural Super Squad Fight!: {} launch: - /SSSFight.exe: + "/SSSFight.exe": - when: - bit: 32 os: windows store: steam - /SSSFight.x86_64: - - arguments: '-screen-fullscreen 0' + - bit: 64 + os: windows + store: steam + "/SSSFight.x86_64": + - arguments: "-screen-fullscreen 0" when: - bit: 64 os: linux store: steam - /SSS_Fight.app: + "/SSS_Fight.app": - when: - os: mac store: steam @@ -518067,7 +519492,7 @@ Supersonic Tank Cats: installDir: Supersonic Tank Cats: {} launch: - /windows.exe: + "/windows.exe": - when: - os: windows store: steam @@ -518077,7 +519502,7 @@ Superstar Dance Club: installDir: Superstar Dance Club: {} launch: - /Superstar Dance Club.exe: + "/Superstar Dance Club.exe": - when: - os: windows store: steam @@ -518087,29 +519512,29 @@ Superstar Hero: installDir: Superstar Hero: {} launch: - /RPG_RT.exe: + "/RPG_RT.exe": - when: - os: windows store: steam - /easyrpg-player: + "/easyrpg-player": - when: - os: mac store: steam - /easyrpg-player-linux: + "/easyrpg-player-linux": - when: - bit: 64 os: linux store: steam steam: id: 1089080 -'Superstars V8: Next Challenge': +"Superstars V8: Next Challenge": files: - /BlackBean/Superstars2010: + "/BlackBean/Superstars2010": tags: - config when: - os: windows - /BlackBean/Superstars2010/Saves: + "/BlackBean/Superstars2010/Saves": tags: - save when: @@ -518118,7 +519543,7 @@ Superstatic: installDir: Superstatic: {} launch: - /Superstatic.vbs: + "/Superstatic.vbs": - when: - os: windows store: steam @@ -518128,7 +519553,7 @@ Superverse: installDir: SUPERVERSE: {} launch: - /superverse.exe: + "/superverse.exe": - when: - os: windows store: steam @@ -518136,22 +519561,22 @@ Superverse: id: 1056170 Supesu: files: - /Supesu/Saved/Config/WindowsNoEditor: + "/Supesu/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /Supesu/Saved/SaveGames/Progress.sav: + "/Supesu/Saved/SaveGames/Progress.sav": tags: - save when: - os: windows - /Supesu/Saved/SaveGames/Quality.sav: + "/Supesu/Saved/SaveGames/Quality.sav": tags: - config when: - os: windows - /Supesu/Saved/SaveGames/ScreenMode.sav: + "/Supesu/Saved/SaveGames/ScreenMode.sav": tags: - config when: @@ -518159,7 +519584,7 @@ Supesu: installDir: Supesu: {} launch: - /Supesu/Binaries/Win64/Supesu-Win64-Shipping.exe: + "/Supesu/Binaries/Win64/Supesu-Win64-Shipping.exe": - when: - store: steam steam: @@ -518168,7 +519593,7 @@ Supesu 2: installDir: Supesu 2: {} launch: - /Supesu2/Binaries/Win64/Supesu2-Win64-Shipping.exe: + "/Supesu2/Binaries/Win64/Supesu2-Win64-Shipping.exe": - when: - store: steam steam: @@ -518177,7 +519602,7 @@ Supipara - Chapter 1 Spring Has Come!: installDir: Supipara - Alice the magical conductor. Chapter 01 - Spring Has Come!: {} launch: - /sppl1_en.exe: + "/sppl1_en.exe": - when: - store: steam steam: @@ -518186,30 +519611,30 @@ Supipara - Chapter 2 Spring Has Come!: installDir: Supipara - Chapter 2: {} launch: - /sppl2_en.exe: + "/sppl2_en.exe": - when: - store: steam steam: id: 762930 Supplice: files: - /Saved Games/Supplice/Supplice: - tags: - - save - when: - - os: windows - /My Games/Supplice: + "/Documents/My Games/Supplice": tags: - config when: - os: windows + "/Saved Games/Supplice/Supplice": + tags: + - save + when: + - os: windows id: steamExtra: - 1767410 installDir: Supplice: {} launch: - /supplice.exe: + "/supplice.exe": - when: - store: steam steam: @@ -518218,15 +519643,15 @@ Supply Chain Idle: installDir: Supply Chain Idle: {} launch: - /SupplyChainIdle.app: + "/SupplyChainIdle.app": - when: - os: mac store: steam - /SupplyChainIdle.exe: + "/SupplyChainIdle.exe": - when: - os: windows store: steam - /SupplyChainIdle.x86: + "/SupplyChainIdle.x86": - when: - os: linux store: steam @@ -518240,15 +519665,15 @@ Supposedly Wonderful Future: installDir: Supposedly Wonderful Future: {} launch: - /SupposedlyWonderfulFuture.app/Contents/MacOS/SupposedlyWonderfulFuture: + "/SupposedlyWonderfulFuture.app/Contents/MacOS/SupposedlyWonderfulFuture": - when: - os: mac store: steam - /SupposedlyWonderfulFuture.exe: + "/SupposedlyWonderfulFuture.exe": - when: - os: windows store: steam - /SupposedlyWonderfulFuture.x86: + "/SupposedlyWonderfulFuture.x86": - when: - os: linux store: steam @@ -518258,15 +519683,15 @@ Suppressed: installDir: Suppressed: {} launch: - /Suppressed.app: + "/Suppressed.app": - when: - os: mac store: steam - /Suppressed.exe: + "/Suppressed.exe": - when: - os: windows store: steam - /Suppressed.x86: + "/Suppressed.x86": - when: - os: linux store: steam @@ -518279,12 +519704,12 @@ Suppressor: id: 1218590 Supraball: files: - /UDKGame/Config: + "/UDKGame/Config": tags: - config when: - os: windows - /userdata//321400/remote/guisettings.bson: + "/userdata//321400/remote/guisettings.bson": tags: - config when: @@ -518292,7 +519717,7 @@ Supraball: installDir: Supraball: {} launch: - /launcher/supraball-launcher.exe: + "/launcher/supraball-launcher.exe": - when: - os: windows store: steam @@ -518300,34 +519725,34 @@ Supraball: id: 321400 Supraland: files: - /Packages/HumbleBundle.SupralandWin10_q2mcdwmzx4qja/LocalCache/Local/Supraland/Saved/Config/WinGDK: + "/Packages/HumbleBundle.SupralandWin10_q2mcdwmzx4qja/LocalCache/Local/Supraland/Saved/Config/WinGDK": tags: - config when: - os: windows store: microsoft - /Packages/HumbleBundle.SupralandWin10_q2mcdwmzx4qja/SystemAppData/wgs: + "/Packages/HumbleBundle.SupralandWin10_q2mcdwmzx4qja/SystemAppData/wgs": tags: - save when: - os: windows store: microsoft - /Supraland/Saved/Config/WindowsNoEditor: + "/Supraland/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /Supraland/Saved/SaveGames: + "/Supraland/Saved/SaveGames": tags: - save when: - os: windows - /Epic/Supraland/Saved/Config: + "/Epic/Supraland/Saved/Config": tags: - config when: - os: linux - /Epic/Supraland/Saved/SaveGames: + "/Epic/Supraland/Saved/SaveGames": tags: - save when: @@ -518342,12 +519767,12 @@ Supraland: installDir: Supraland: {} launch: - /Supraland.exe: + "/Supraland.exe": - when: - bit: 64 os: windows store: steam - /Supraland.sh: + "/Supraland.sh": - when: - bit: 64 os: linux @@ -518356,17 +519781,17 @@ Supraland: id: 813630 Supraland Six Inches Under: files: - /SupralandSIU/Saved/Config/WindowsNoEditor: + "/SupralandSIU/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /SupralandSIU/Saved/SaveGames: + "/SupralandSIU/Saved/SaveGames": tags: - save when: - os: windows - /SupralandSIU/Saved/SaveGames/GameSettingsSave.sav: + "/SupralandSIU/Saved/SaveGames/GameSettingsSave.sav": tags: - config when: @@ -518379,7 +519804,7 @@ Supralympic Runners: installDir: Supralympic Runners: {} launch: - /SupralympicRunners.exe: + "/SupralympicRunners.exe": - when: - os: windows store: steam @@ -518389,7 +519814,7 @@ Suprapong: installDir: Suprapong: {} launch: - /Suprapong.exe: + "/Suprapong.exe": - when: - store: steam steam: @@ -518401,11 +519826,11 @@ Supremacy 1914: installDir: Supremacy 1914: {} launch: - /Supremacy 1914.app/Contents/MacOS/Supremacy 1914: + "/Supremacy 1914.app/Contents/MacOS/Supremacy 1914": - when: - os: mac store: steam - /Supremacy 1914.exe: + "/Supremacy 1914.exe": - when: - os: windows store: steam @@ -518415,7 +519840,7 @@ Supreme Casino City: installDir: Supreme Casino City: {} launch: - /supreme_casino_city.exe: + "/supreme_casino_city.exe": - when: - os: windows store: steam @@ -518423,12 +519848,12 @@ Supreme Casino City: id: 982480 Supreme Commander: files: - /Gas Powered Games/SupremeCommander/Game.prefs: + "/Gas Powered Games/SupremeCommander/Game.prefs": tags: - config when: - os: windows - /Gas Powered Games/SupremeCommander/savegames: + "/Gas Powered Games/SupremeCommander/savegames": tags: - save when: @@ -518441,19 +519866,19 @@ Supreme Commander: installDir: Supreme Commander: {} launch: - /bin/SupremeCommander.exe: + "/bin/SupremeCommander.exe": - when: - store: steam steam: id: 9350 Supreme Commander 2: files: - /My Games/SquareEnix/Supreme Commander 2/savegames: + "/My Games/SquareEnix/Supreme Commander 2/savegames": tags: - save when: - os: windows - /Gas Powered Games/Supreme Commander 2/Game.prefs: + "/Gas Powered Games/Supreme Commander 2/Game.prefs": tags: - config when: @@ -518476,24 +519901,24 @@ Supreme Commander 2: installDir: Supreme Commander 2: {} launch: - /Supreme Commander 2.app: + "/Supreme Commander 2.app": - when: - os: mac store: steam - /bin/SupremeCommander2.exe: + "/bin/SupremeCommander2.exe": - when: - os: windows store: steam steam: id: 40100 -'Supreme Commander: Forged Alliance': +"Supreme Commander: Forged Alliance": files: - /Gas Powered Games/Supreme Commander Forged Alliance/Game.prefs: + "/Gas Powered Games/Supreme Commander Forged Alliance/Game.prefs": tags: - config when: - os: windows - /Gas Powered Games/Supreme Commander Forged Alliance/SAVEGAME: + "/Gas Powered Games/Supreme Commander Forged Alliance/SAVEGAME": tags: - save when: @@ -518506,7 +519931,7 @@ Supreme Commander 2: installDir: Supreme Commander Forged Alliance: {} launch: - /bin/SupremeCommander.exe: + "/bin/SupremeCommander.exe": - when: - store: steam steam: @@ -518518,8 +519943,8 @@ Supreme Destiny: installDir: With Your Destiny: {} launch: - /SDLauncher.exe: - - arguments: '-steam' + "/SDLauncher.exe": + - arguments: "-steam" when: - os: windows store: steam @@ -518527,12 +519952,12 @@ Supreme Destiny: id: 360700 Supreme League of Patriots: files: - /AppData/LocalLow/No Bull Intentions/LeagueOfPatriots Episode 1/Profile.xml: + "/AppData/LocalLow/No Bull Intentions/LeagueOfPatriots Episode 1/Profile.xml": tags: - config when: - os: windows - /userdata//331760/remote/Saves: + "/userdata//331760/remote/Saves": tags: - save when: @@ -518542,21 +519967,21 @@ Supreme League of Patriots: installDir: Supreme League of Patriots Issue 1: {} launch: - /Ep1Linux.x86: + "/Ep1Linux.x86": - when: - bit: 32 os: linux store: steam - /Ep1Linux.x86_64: + "/Ep1Linux.x86_64": - when: - bit: 64 os: linux store: steam - /Ep1Mac.app: + "/Ep1Mac.app": - when: - os: mac store: steam - /Ep1Win.exe: + "/Ep1Win.exe": - when: - os: windows store: steam @@ -518566,11 +519991,11 @@ Supreme Ruler 1936: installDir: Supreme Ruler 1936: {} launch: - /SupremeRuler1936.app: + "/SupremeRuler1936.app": - when: - os: mac store: steam - /SupremeRuler1936.exe: + "/SupremeRuler1936.exe": - when: - os: windows store: steam @@ -518585,7 +520010,7 @@ Supreme Ruler 2020: installDir: Supreme Ruler 2020: {} launch: - /SupremeRuler2020GC.exe: + "/SupremeRuler2020GC.exe": - when: - store: steam steam: @@ -518600,11 +520025,11 @@ Supreme Ruler The Great War: installDir: Supreme Ruler Great War: {} launch: - /SupremeRulerGreatWar.app: + "/SupremeRulerGreatWar.app": - when: - os: mac store: steam - /SupremeRulerGreatWar.exe: + "/SupremeRulerGreatWar.exe": - when: - os: windows store: steam @@ -518614,43 +520039,43 @@ Supreme Ruler Ultimate: installDir: Supreme Ruler Ultimate: {} launch: - /SupremeRulerUltimate.app: + "/SupremeRulerUltimate.app": - when: - os: mac store: steam - /SupremeRulerUltimate.exe: + "/SupremeRulerUltimate.exe": - when: - os: windows store: steam steam: id: 314980 -'Supreme Ruler: Cold War': +"Supreme Ruler: Cold War": installDir: Supreme Ruler Cold War: {} launch: - /SupremeRulerCW.exe: + "/SupremeRulerCW.exe": - when: - store: steam steam: id: 73220 -'Supreme: Pizza Empire': +"Supreme: Pizza Empire": installDir: Supreme: {} launch: - /Supreme.app: + "/Supreme.app": - when: - os: mac store: steam - /Supreme.exe: + "/Supreme.exe": - when: - os: windows store: steam - /Supreme.x86: + "/Supreme.x86": - when: - bit: 32 os: linux store: steam - /Supreme.x86_64: + "/Supreme.x86_64": - when: - bit: 64 os: linux @@ -518666,7 +520091,7 @@ Sure Footing: installDir: Sure Footing: {} launch: - /Sure Footing.exe: + "/Sure Footing.exe": - when: - os: windows store: steam @@ -518676,77 +520101,77 @@ Surf World Series: installDir: Surf World Series: {} launch: - /SWS.exe: + "/SWS.exe": - when: - os: windows store: steam steam: id: 462640 -Surf's Up: +"Surf's Up": files: - /System/SurfsUpDX9.ini: + "/System/SurfsUpDX9.ini": tags: - config when: - os: windows - /My Games/Surf's Up: + "/My Games/Surf's Up": tags: - save when: - os: windows -'Surface: Alone in the Mist': +"Surface: Alone in the Mist": installDir: - Surface Alone in the Mist Collector's Edition: {} + "Surface Alone in the Mist Collector's Edition": {} launch: - /Surface_Alone_in_the_Mist_CE.exe: + "/Surface_Alone_in_the_Mist_CE.exe": - when: - os: windows store: steam steam: id: 815550 -'Surface: Game of Gods': +"Surface: Game of Gods": installDir: - Surface Game of Gods Collector's Edition: {} + "Surface Game of Gods Collector's Edition": {} launch: - /Surface_Game_of_Gods.exe: + "/Surface_Game_of_Gods.exe": - when: - os: windows store: steam steam: id: 696020 -'Surface: Reel Life': +"Surface: Reel Life": installDir: - Surface Reel Life Collector's Edition: {} + "Surface Reel Life Collector's Edition": {} launch: - /Surface_ReelLifeCE.exe: + "/Surface_ReelLifeCE.exe": - when: - store: steam steam: id: 586720 -'Surface: Return to Another World': +"Surface: Return to Another World": installDir: - Surface Return to Another World Collector's Edition: {} + "Surface Return to Another World Collector's Edition": {} launch: - /Surface_ReturntoAnotherWorld_CE.exe: + "/Surface_ReturntoAnotherWorld_CE.exe": - when: - os: windows store: steam steam: id: 897010 -'Surface: The Pantheon': +"Surface: The Pantheon": installDir: - Surface The Pantheon Collector's Edition: {} + "Surface The Pantheon Collector's Edition": {} launch: - /Surface_ThePantheonCE.exe: + "/Surface_ThePantheonCE.exe": - when: - store: steam steam: id: 466080 -'Surface: The Soaring City': +"Surface: The Soaring City": installDir: - Surface The Soaring City Collector's Edition: {} + "Surface The Soaring City Collector's Edition": {} launch: - /Surface_TheSoaringCity.exe: + "/Surface_TheSoaringCity.exe": - when: - os: windows store: steam @@ -518756,7 +520181,7 @@ Surfasaurus: installDir: Surfasaurus: {} launch: - /Surfasaurus.exe: + "/Surfasaurus.exe": - when: - os: windows store: steam @@ -518764,7 +520189,7 @@ Surfasaurus: id: 584860 Surfingers: files: - /userdata//438080/remote/Surfingers.savegame: + "/userdata//438080/remote/Surfingers.savegame": tags: - save when: @@ -518773,15 +520198,15 @@ Surfingers: installDir: Surfingers: {} launch: - /Surfingers.app: + "/Surfingers.app": - when: - os: mac store: steam - /Surfingers.exe: + "/Surfingers.exe": - when: - os: windows store: steam - /Surfingers.x86: + "/Surfingers.x86": - when: - os: linux store: steam @@ -518800,7 +520225,7 @@ Surge (2018): installDir: Surge: {} launch: - /Surge.exe: + "/Surge.exe": - when: - store: steam steam: @@ -518809,7 +520234,7 @@ Surge (Campus ADN): installDir: Surge: {} launch: - /Surge.exe: + "/Surge.exe": - when: - os: windows store: steam @@ -518819,7 +520244,7 @@ Surge Radio: installDir: Surge Radio: {} launch: - /SurgeRadio.exe: + "/SurgeRadio.exe": - when: - os: windows store: steam @@ -518827,13 +520252,13 @@ Surge Radio: id: 958190 Surgeon Simulator: files: - /.config/unity3d/Bossa Studios/Surgeon Simulator 2013: + "/.config/unity3d/Bossa Studios/Surgeon Simulator 2013": tags: - config - save when: - os: linux - /Library/Saved Application State/unity.Bossa Studios.Surgeon Simulator 2013.savedState: + "/Library/Saved Application State/unity.Bossa Studios.Surgeon Simulator 2013.savedState": tags: - config - save @@ -518844,15 +520269,15 @@ Surgeon Simulator: installDir: Surgeon Simulator: {} launch: - /ss2013.app: + "/ss2013.app": - when: - os: mac store: steam - /ss2013.bin: + "/ss2013.bin": - when: - os: linux store: steam - /ss2013.exe: + "/ss2013.exe": - when: - os: windows store: steam @@ -518867,22 +520292,22 @@ Surgeon Simulator 2: installDir: Surgeon Simulator 2: {} launch: - /Surgeon Simulator 2.exe: + "/Surgeon Simulator 2.exe": - when: - store: steam steam: id: 774791 -'Surgeon Simulator VR: Meet The Medic': +"Surgeon Simulator VR: Meet The Medic": installDir: Surgeon Simulator VR Meet The Medic: {} registry: - 'HKEY_CURRENT_USER/Software/Bossa Studios/Surgeon Simulator VR: Meet the Medic': + "HKEY_CURRENT_USER/Software/Bossa Studios/Surgeon Simulator VR: Meet the Medic": tags: - config - save steam: id: 457420 -'Surgeon Simulator: Experience Reality': +"Surgeon Simulator: Experience Reality": installDir: Surgeon Simulator Experience Reality: {} steam: @@ -518894,7 +520319,7 @@ Surprising My Neighbors: installDir: Surprising My Neighbors: {} launch: - /SurprisingMyNeighbors.exe: + "/SurprisingMyNeighbors.exe": - when: - os: windows store: steam @@ -518904,7 +520329,7 @@ SurrealVR: installDir: SurrealVR: {} launch: - /surrealvr.exe: + "/surrealvr.exe": - when: - store: steam steam: @@ -518913,7 +520338,7 @@ Surrogate: installDir: Surrogate: {} launch: - /surrogate.exe: + "/surrogate.exe": - when: - os: windows store: steam @@ -518923,7 +520348,7 @@ Surrounded by mice: installDir: Surrounded by mice: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: @@ -518932,7 +520357,7 @@ SurvHive: installDir: SurvHive: {} launch: - /SurvHive.exe: + "/SurvHive.exe": - when: - os: windows store: steam @@ -518940,7 +520365,7 @@ SurvHive: id: 499230 Survarium: files: - /Survarium-Steam: + "/Survarium-Steam": tags: - config when: @@ -518948,7 +520373,7 @@ Survarium: installDir: Survarium: {} launch: - /game/binaries/x64/survarium_launcher.exe: + "/game/binaries/x64/survarium_launcher.exe": - when: - os: windows store: steam @@ -518963,7 +520388,7 @@ Survirus: installDir: Survirus: {} launch: - /survirus.exe: + "/survirus.exe": - when: - store: steam steam: @@ -518972,7 +520397,7 @@ Survisland: installDir: Survisland: {} launch: - /Survisland.exe: + "/Survisland.exe": - when: - bit: 64 os: windows @@ -518988,11 +520413,11 @@ Survival Ball: installDir: SurvivalBall: {} launch: - /survivalball.app/Contents/MacOS/survivalball: + "/survivalball.app/Contents/MacOS/survivalball": - when: - os: mac store: steam - /survivalball.exe: + "/survivalball.exe": - when: - os: windows store: steam @@ -519002,7 +520427,7 @@ Survival Camp: installDir: SurvivalCamp: {} launch: - /SurvivalCamp.exe: + "/SurvivalCamp.exe": - when: - os: windows store: steam @@ -519012,12 +520437,12 @@ Survival Classic: installDir: Survival Classic: {} launch: - /Cv2_Base/Binaries/Win32/Cv2_BaseClient_Shipping.exe: + "/Cv2_Base/Binaries/Win32/Cv2_BaseClient_Shipping.exe": - when: - bit: 32 os: windows store: steam - /Cv2_Base/Binaries/Win64/Cv2_BaseClient_Shipping.exe: + "/Cv2_Base/Binaries/Win64/Cv2_BaseClient_Shipping.exe": - when: - bit: 64 os: windows @@ -519026,7 +520451,7 @@ Survival Classic: id: 1203370 Survival Crisis Z: files: - /saves: + "/saves": tags: - save when: @@ -519035,22 +520460,22 @@ Survival Diary: installDir: Survival Diary: {} launch: - /Lin_32.sh: + "/Lin_32.sh": - when: - bit: 32 os: linux store: steam - /Lin_64.sh: + "/Lin_64.sh": - when: - bit: 64 os: linux store: steam - /Win_32.bat: + "/Win_32.bat": - when: - bit: 32 os: windows store: steam - /Win_64.bat: + "/Win_64.bat": - when: - bit: 64 os: windows @@ -519061,17 +520486,17 @@ Survival Driver: installDir: STD: {} launch: - /STD.exe: + "/STD.exe": - when: - os: windows store: steam steam: id: 586130 -'Survival Driver 2: Heavy Vehicles': +"Survival Driver 2: Heavy Vehicles": installDir: SDHeavy: {} launch: - /SDHEAVY.exe: + "/SDHEAVY.exe": - when: - bit: 64 os: windows @@ -519082,7 +520507,7 @@ Survival Frenzy: installDir: SURF: {} launch: - /SURF.exe: + "/SURF.exe": - when: - bit: 64 os: windows @@ -519093,7 +520518,7 @@ Survival Games: installDir: Survival Games: {} launch: - /BlockGame.exe: + "/BlockGame.exe": - when: - bit: 64 os: windows @@ -519104,7 +520529,7 @@ Survival Hell: installDir: Survival Hell: {} launch: - /SurvivalHell.exe: + "/SurvivalHell.exe": - when: - os: windows store: steam @@ -519114,22 +520539,28 @@ Survival Is Not Enough: installDir: SurvivalIsNotEnough: {} launch: - /SurvivalIsNotEnough.app/Contents/MacOS/SurvivalIsNotEnough: + "/SurvivalIsNotEnough.app/Contents/MacOS/SurvivalIsNotEnough": - when: - bit: 32 os: mac store: steam - /SurvivalIsNotEnough.exe: + - bit: 64 + os: mac + store: steam + "/SurvivalIsNotEnough.exe": - when: - bit: 32 os: windows store: steam - /SurvivalIsNotEnough.x86: + - bit: 64 + os: windows + store: steam + "/SurvivalIsNotEnough.x86": - when: - bit: 32 os: linux store: steam - /SurvivalIsNotEnough.x86_64: + "/SurvivalIsNotEnough.x86_64": - when: - bit: 64 os: linux @@ -519143,11 +520574,11 @@ Survival Kingdom: installDir: Survival Kingdom: {} launch: - /SurvivalKingdom.exe: + "/SurvivalKingdom.exe": - when: - os: windows store: steam - /run.sh: + "/run.sh": - when: - os: linux store: steam @@ -519157,7 +520588,7 @@ Survival Maze: installDir: Survival Maze: {} launch: - /SurvivalMaze.exe: + "/SurvivalMaze.exe": - when: - os: windows store: steam @@ -519167,7 +520598,7 @@ Survival Method: installDir: Survival Method: {} launch: - /Survival Method_beta0.2.7.exe: + "/Survival Method_beta0.2.7.exe": - when: - os: windows store: steam @@ -519177,7 +520608,7 @@ Survival Planet: installDir: Survival Planet: {} launch: - /Survival Planet D 3.2.exe: + "/Survival Planet D 3.2.exe": - when: - os: windows store: steam @@ -519188,11 +520619,11 @@ Survival Simulator: Survival Simulator: {} steam: id: 701950 -'Survival Space: Unlimited Shooting': +"Survival Space: Unlimited Shooting": installDir: Survival_Space_Unlimited_Shooting: {} launch: - /ssus.exe: + "/ssus.exe": - when: - os: windows store: steam @@ -519202,7 +520633,7 @@ Survival Tycoon: installDir: Survival Tycoon: {} launch: - /Survival_Tycoon.exe: + "/Survival_Tycoon.exe": - when: - os: windows store: steam @@ -519217,15 +520648,15 @@ Survival Vacancy: installDir: Survival Vacancy: {} launch: - /Survival Vacancy.exe: + "/Survival Vacancy.exe": - when: - os: windows store: steam - /SurvivalVacancy.app: + "/SurvivalVacancy.app": - when: - os: mac store: steam - /SurvivalVacancy.x86_64: + "/SurvivalVacancy.x86_64": - when: - os: linux store: steam @@ -519235,11 +520666,11 @@ Survival Z: installDir: Survival Z: {} launch: - /Survival Z.app: + "/Survival Z.app": - when: - os: mac store: steam - /Survival Z.exe: + "/Survival Z.exe": - when: - os: windows store: steam @@ -519249,15 +520680,15 @@ Survival Zombies The Inverted Evolution: installDir: Inverted Evolution: {} launch: - /TheInvertedEvolution.app/Contents/MacOS/TheInvertedEvolution: + "/TheInvertedEvolution.app/Contents/MacOS/TheInvertedEvolution": - when: - os: mac store: steam - /TheInvertedEvolution.exe: + "/TheInvertedEvolution.exe": - when: - os: windows store: steam - /TheInvertedEvolutionLinux.x86: + "/TheInvertedEvolutionLinux.x86": - when: - os: linux store: steam @@ -519266,30 +520697,30 @@ Survival Zombies The Inverted Evolution: Survival or Die: steam: id: 1110290 -'Survival: Last Day': +"Survival: Last Day": steam: id: 851080 -'Survival: Postapocalypse Now': +"Survival: Postapocalypse Now": installDir: Survival Postapocalypse Now: {} launch: - /Cv2_Base/Binaries/Win32/Cv2_BaseClient_Shipping.exe: + "/Cv2_Base/Binaries/Win32/Cv2_BaseClient_Shipping.exe": - when: - bit: 32 os: windows store: steam - /start_protected_game.exe: + "/start_protected_game.exe": - when: - bit: 64 os: windows store: steam steam: id: 351290 -'Survival: Revelation': +"Survival: Revelation": installDir: survival: {} launch: - /survival/WeaponSystem.exe: + "/survival/WeaponSystem.exe": - when: - bit: 64 os: windows @@ -519300,7 +520731,7 @@ SurvivalZ: installDir: SurvivalZ: {} launch: - /SurvivalZ.exe: + "/SurvivalZ.exe": - when: - store: steam steam: @@ -519309,19 +520740,19 @@ SurvivalZ Battlegrounds: installDir: SurvivalZ Battlegrounds: {} launch: - /SurvivalZ Battlegrounds.exe: + "/SurvivalZ Battlegrounds.exe": - when: - store: steam steam: id: 873220 Survivalist: files: - /SavedGames/Survivalist/Survivalist - Saved Data/Player1: + "/SavedGames/Survivalist/Survivalist - Saved Data/Player1": tags: - save when: - os: windows - /SavedGames/Survivalist/Survivalist - Saved Data/Player1/settings.xml: + "/SavedGames/Survivalist/Survivalist - Saved Data/Player1/settings.xml": tags: - config when: @@ -519332,17 +520763,17 @@ Survivalist: installDir: Survivalist: {} launch: - /Survivalist.exe: + "/Survivalist.exe": - when: - os: windows store: steam steam: id: 340050 -'Survivalist: Invisible Strain': +"Survivalist: Invisible Strain": installDir: Survivalist Invisible Strain: {} launch: - /Survivalist Invisible Strain.exe: + "/Survivalist Invisible Strain.exe": - when: - bit: 64 os: windows @@ -519353,7 +520784,7 @@ Survivalizm - The Animal Simulator: installDir: Survivalizm - The Animal Simulator: {} launch: - /MSurvivalizm.exe: + "/MSurvivalizm.exe": - when: - bit: 64 os: windows @@ -519364,7 +520795,7 @@ Survive: installDir: Survive: {} launch: - /Survive.exe: + "/Survive.exe": - when: - bit: 64 os: windows @@ -519375,7 +520806,7 @@ Survive Me Miolhr: installDir: Survive Me Miolhr: {} launch: - /game2.exe: + "/game2.exe": - when: - bit: 32 os: windows @@ -519386,7 +520817,7 @@ Survive Together: installDir: Survive Together: {} launch: - /Survive Together.exe: + "/Survive Together.exe": - when: - os: windows store: steam @@ -519401,8 +520832,8 @@ Survive in Angaria: installDir: Survive in Angaria: {} launch: - /Survive in Angaria.exe: - - arguments: '--in-process-gpu' + "/Survive in Angaria.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam @@ -519412,8 +520843,8 @@ Survive in Angaria 2: installDir: Survive in Angaria TWO: {} launch: - /surviveia.exe: - - arguments: '--in-process-gpu' + "/surviveia.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam @@ -519423,8 +520854,11 @@ Survive in Debris: installDir: Debris: {} launch: - /nw.exe: + "/nw.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam @@ -519432,7 +520866,7 @@ Survive in Debris: id: 866180 Survive in Space: files: - /SurviveInSpace//userData.bin: + "/SurviveInSpace//userData.bin": tags: - save when: @@ -519440,21 +520874,21 @@ Survive in Space: installDir: Survive in Space: {} launch: - /SIS.app: + "/SIS.app": - when: - bit: 64 os: mac store: steam - /SIS.exe: + "/SIS.exe": - when: - os: windows store: steam - /SIS.x86: + "/SIS.x86": - when: - bit: 32 os: linux store: steam - /SIS.x86_64: + "/SIS.x86_64": - when: - bit: 64 os: linux @@ -519472,7 +520906,7 @@ Survive on Raft: installDir: Survive on Raft: {} launch: - /Survive on Raft.exe: + "/Survive on Raft.exe": - when: - store: steam steam: @@ -519481,7 +520915,7 @@ Survive the Blackout: installDir: Survive the Blackout: {} launch: - /Survive the Blackout.exe: + "/Survive the Blackout.exe": - when: - store: steam steam: @@ -519490,11 +520924,11 @@ Survive the Nights: installDir: Survive the Nights: {} launch: - /SurviveTheNights_Mac.app: + "/SurviveTheNights_Mac.app": - when: - os: mac store: steam - /SurviveTheNights_Win.exe: + "/SurviveTheNights_Win.exe": - when: - bit: 64 os: windows @@ -519509,18 +520943,18 @@ Survive the West: installDir: SurviveTheWest: {} launch: - /SurviveTheWest.exe: + "/SurviveTheWest.exe": - when: - bit: 64 os: windows store: steam steam: id: 862990 -'Survive: The King Killer': +"Survive: The King Killer": installDir: Survive The king killer: {} launch: - /polygon2.exe: + "/polygon2.exe": - when: - os: windows store: steam @@ -519541,44 +520975,44 @@ Surviving Deponia: id: 2464520 Surviving Mars: files: - /Library/Application Support/Surviving Mars: + "/Library/Application Support/Surviving Mars": tags: - config when: - os: mac - /Library/Application Support/Surviving Mars/Save: + "/Library/Application Support/Surviving Mars/Save": tags: - save when: - os: mac - /Surviving Mars: + "/Surviving Mars": tags: - config when: - os: windows - /Surviving Mars/Save: + "/Surviving Mars/Save": tags: - save when: - os: windows - /Packages/ParadoxInteractive.SurvivingMars_zfnrdv2de78ny/LocalCache/Roaming/Surviving Mars: + "/Packages/ParadoxInteractive.SurvivingMars_zfnrdv2de78ny/LocalCache/Roaming/Surviving Mars": tags: - config when: - os: windows store: microsoft - /Packages/ParadoxInteractive.SurvivingMars_zfnrdv2de78ny/LocalCache/Roaming/Surviving Mars/Save: + "/Packages/ParadoxInteractive.SurvivingMars_zfnrdv2de78ny/LocalCache/Roaming/Surviving Mars/Save": tags: - save when: - os: windows store: microsoft - /Surviving Mars: + "/Surviving Mars": tags: - config when: - os: linux - /Surviving Mars/Save: + "/Surviving Mars/Save": tags: - save when: @@ -519587,40 +521021,40 @@ Surviving Mars: id: 1450731245 id: gogExtra: - - 1736837628 - - 1629272021 - - 1617277701 - 1424717003 - 1507812678 - - 1990927897 - - 1683782840 - - 1908011586 - - 1833146547 - - 1968222224 + - 1617277701 + - 1629272021 - 1641787812 + - 1683782840 + - 1736837628 + - 1833146547 + - 1908011586 + - 1968222224 + - 1990927897 steamExtra: - - 802700 - 801650 - - 801710 - - 801690 - 801670 + - 801690 + - 801710 + - 802700 + - 952890 - 952891 - 952892 - - 952890 - 1042360 installDir: Surviving Mars: {} launch: - /MarsSteam: + "/MarsSteam": - when: - bit: 64 os: linux store: steam - /MarsSteam.app: + "/MarsSteam.app": - when: - os: mac store: steam - /MarsSteam.exe: + "/MarsSteam.exe": - when: - bit: 64 os: windows @@ -519631,7 +521065,7 @@ Surviving Medieval: installDir: Surviving Medieval: {} launch: - /SM.exe: + "/SM.exe": - when: - os: windows store: steam @@ -519642,7 +521076,7 @@ Surviving in the Forest: id: 704460 Surviving the Aftermath: files: - /Paradox Interactive/Surviving the Aftermath: + "/Paradox Interactive/Surviving the Aftermath": tags: - config - save @@ -519652,11 +521086,11 @@ Surviving the Aftermath: id: 1379411738 id: gogExtra: - - 1395053666 - - 1922426825 - - 1777595887 - 1130706763 - 1253637599 + - 1395053666 + - 1777595887 + - 1922426825 steamExtra: - 1766280 - 1803780 @@ -519671,11 +521105,11 @@ Survivor: installDir: Survivor: {} launch: - /desktop_survivor2_mac.app/Contents/MacOS/desktop_penkkisurvivor2_mac: + "/desktop_survivor2_mac.app/Contents/MacOS/desktop_penkkisurvivor2_mac": - when: - os: mac store: steam - /desktop_survivor2_pc/desktop_survivor2_pc.exe: + "/desktop_survivor2_pc/desktop_survivor2_pc.exe": - when: - os: windows store: steam @@ -519685,11 +521119,11 @@ Survivor Island: installDir: Survivor island: {} launch: - /Survivor Island.exe: + "/Survivor Island.exe": - when: - os: windows store: steam - /Survivor Island.x86_64: + "/Survivor Island.x86_64": - when: - os: linux store: steam @@ -519699,7 +521133,7 @@ Survivor Mercs: installDir: SurvivorMercs: {} launch: - /SurvivorMercs.exe: + "/SurvivorMercs.exe": - when: - os: windows store: steam @@ -519707,7 +521141,7 @@ Survivor Mercs: id: 2141520 Survivor Squad: files: - /.config/unity3d/Endless Loop Studios/Survivor Squad: + "/.config/unity3d/Endless Loop Studios/Survivor Squad": tags: - config - save @@ -519716,15 +521150,15 @@ Survivor Squad: installDir: Survivor Squad: {} launch: - /Survivor_Squad.app: + "/Survivor_Squad.app": - when: - os: mac store: steam - /Survivor_Squad.exe: + "/Survivor_Squad.exe": - when: - os: windows store: steam - /Survivor_Squad.x86: + "/Survivor_Squad.x86": - when: - os: linux store: steam @@ -519735,14 +521169,14 @@ Survivor Squad: - save steam: id: 258050 -'Survivor Squad: Gauntlets': +"Survivor Squad: Gauntlets": files: - /.config/unity3d/Endless Loop Studios/Survivor Squad Gauntlets/prefs: + "/.config/unity3d/Endless Loop Studios/Survivor Squad Gauntlets/prefs": tags: - config when: - os: linux - /userdata//331720/remote: + "/userdata//331720/remote": tags: - save when: @@ -519750,15 +521184,15 @@ Survivor Squad: installDir: Survivor Squad Gauntlets: {} launch: - /SurvivorSquad_Gauntlets.app: + "/SurvivorSquad_Gauntlets.app": - when: - os: mac store: steam - /SurvivorSquad_Gauntlets.exe: + "/SurvivorSquad_Gauntlets.exe": - when: - os: windows store: steam - /SurvivorSquad_Gauntlets.x86: + "/SurvivorSquad_Gauntlets.x86": - when: - os: linux store: steam @@ -519773,7 +521207,7 @@ Survivor in Summer: installDir: Survivor in Summer: {} launch: - /Survivor in Summer.exe: + "/Survivor in Summer.exe": - when: - os: windows store: steam @@ -519783,28 +521217,28 @@ Survivor of Eschewal: installDir: Survivor of Eschewal: {} launch: - /Survivor of Eschewal.exe: + "/Survivor of Eschewal.exe": - when: - bit: 64 os: windows store: steam steam: id: 738260 -'Survivor: The Living Dead': +"Survivor: The Living Dead": installDir: Survivor The Living Dead: {} launch: - /STLD Redux Ep 2.exe: + "/STLD Redux Ep 2.exe": - when: - os: windows store: steam steam: id: 386200 -'Survivors Left: X': +"Survivors Left: X": installDir: SURVIVERS LEFT X: {} launch: - /SURVIVORS LEFT X.exe: + "/SURVIVORS LEFT X.exe": - when: - os: windows store: steam @@ -519814,16 +521248,16 @@ Survivors of Borridor: installDir: Survivors of Borridor: {} launch: - /SoB.exe: + "/SoB.exe": - when: - os: windows store: steam - /SoB.x86: + "/SoB.x86": - when: - bit: 32 os: linux store: steam - /SoB.x86_64: + "/SoB.x86_64": - when: - bit: 64 os: linux @@ -519834,7 +521268,7 @@ Sushi Pachi Panic: installDir: Sushi Pachi Panic: {} launch: - /Sushi Pachi Panic.exe: + "/Sushi Pachi Panic.exe": - when: - os: windows store: steam @@ -519847,7 +521281,7 @@ Sushi girl: installDir: Sushi girl: {} launch: - /FlyBoy.exe: + "/FlyBoy.exe": - when: - os: windows store: steam @@ -519857,7 +521291,7 @@ SushiParty: installDir: SushiParty_Ver1.00_Data: {} launch: - /SushiParty_Ver1.00.exe: + "/SushiParty_Ver1.00.exe": - when: - os: windows store: steam @@ -519867,7 +521301,7 @@ SushiParty2: installDir: SushiParty2: {} launch: - /SushiParty2.exe: + "/SushiParty2.exe": - when: - os: windows store: steam @@ -519885,11 +521319,11 @@ Suspicious Slide: installDir: Suspicious Slide: {} launch: - /SSlide_Mac.app: + "/SSlide_Mac.app": - when: - os: mac store: steam - /Suspicious Slide.exe: + "/Suspicious Slide.exe": - when: - os: windows store: steam @@ -519899,7 +521333,7 @@ Suwarudo: installDir: Suwarudo: {} launch: - /Suwarudo.exe: + "/Suwarudo.exe": - when: - os: windows store: steam @@ -519907,12 +521341,12 @@ Suwarudo: id: 1013970 Suzerain: files: - /AppData/LocalLow/TorporGames/Suzerain/Suzerain: + "/AppData/LocalLow/TorporGames/Suzerain/Suzerain": tags: - save when: - os: windows - /Library/Application Support/Suzerain/unity.TorporGames.Suzerain: + "/Library/Application Support/Suzerain/unity.TorporGames.Suzerain": tags: - save when: @@ -519921,8 +521355,8 @@ Suzerain: id: 1963625960 id: gogExtra: - - 1359273744 - 1223586991 + - 1359273744 - 1727282816 steamExtra: - 1252140 @@ -519930,11 +521364,11 @@ Suzerain: installDir: Suzerain: {} launch: - /Suzerain.exe: + "/Suzerain.exe": - when: - os: windows store: steam - /SuzerainMac.app: + "/SuzerainMac.app": - when: - os: mac store: steam @@ -519946,12 +521380,12 @@ Suzerain: id: 1207650 Suzuki Alstare Extreme Racing: files: - /menudata.ini: + "/menudata.ini": tags: - config when: - os: windows - /misc/datebase.ddb: + "/misc/datebase.ddb": tags: - save when: @@ -519960,7 +521394,7 @@ Suzunaan on Fire: installDir: Suzunaan on Fire: {} launch: - /SGGameLauncher.exe: + "/SGGameLauncher.exe": - when: - bit: 64 os: windows @@ -519971,11 +521405,11 @@ Suzy Cube: installDir: Suzy Cube: {} launch: - /SuzyCube.app: + "/SuzyCube.app": - when: - os: mac store: steam - /SuzyCube.exe: + "/SuzyCube.exe": - when: - os: windows store: steam @@ -519986,12 +521420,12 @@ Suzy Cube: - save steam: id: 780500 -Svarog's Dream: +"Svarog's Dream": steam: id: 2004640 Sven Co-op: files: - /svencoop/*.cfg: + "/svencoop/*.cfg": tags: - config when: @@ -520000,11 +521434,11 @@ Sven Co-op: installDir: Sven Co-op: {} launch: - /svencoop.exe: + "/svencoop.exe": - when: - os: windows store: steam - /svencoop.sh: + "/svencoop.sh": - when: - os: linux store: steam @@ -520013,21 +521447,21 @@ Sven Co-op: Svoboda: steam: id: 848640 -'Svoboda 1945: Liberation': +"Svoboda 1945: Liberation": gog: id: 1947080977 installDir: Svoboda 1945: {} launch: - /Svoboda1945: + "/Svoboda1945": - when: - os: linux store: steam - /Svoboda1945.app/Contents/MacOS/Svoboda1945: + "/Svoboda1945.app/Contents/MacOS/Svoboda1945": - when: - os: mac store: steam - /Svoboda1945.exe: + "/Svoboda1945.exe": - when: - os: windows store: steam @@ -520035,7 +521469,7 @@ Svoboda: id: 1076620 Swag and Sorcery: files: - /AppData/LocalLow/Lazy Bear Games/Swag and Sorcery/*.dat: + "/AppData/LocalLow/Lazy Bear Games/Swag and Sorcery/*.dat": tags: - save when: @@ -520045,7 +521479,7 @@ Swag and Sorcery: installDir: Swag and Sorcery: {} launch: - /Swag and Sorcery.exe: + "/Swag and Sorcery.exe": - when: - os: windows store: steam @@ -520055,7 +521489,7 @@ Swallow Homing: installDir: 旅燕归航 Shallow Homing: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: @@ -520064,15 +521498,15 @@ Swamp Jump: installDir: Swamp Jump: {} launch: - /Swamp Jump.app/Contents/MacOS/Swamp Jump: + "/Swamp Jump.app/Contents/MacOS/Swamp Jump": - when: - os: mac store: steam - /Swamp Jump.exe: + "/Swamp Jump.exe": - when: - os: windows store: steam - /Swamp Jump.x86: + "/Swamp Jump.x86": - when: - os: linux store: steam @@ -520082,7 +521516,7 @@ Swap Blocks: installDir: Swap Blocks: {} launch: - /Base_Content/Swap Blocks.exe: + "/Base_Content/Swap Blocks.exe": - when: - bit: 64 os: windows @@ -520096,11 +521530,11 @@ Swap Swap: installDir: Swap Swap: {} launch: - /Swap Swap.exe: + "/Swap Swap.exe": - when: - os: windows store: steam - /swapswap.app: + "/swapswap.app": - when: - os: mac store: steam @@ -520110,7 +521544,7 @@ Swap! Swap! Swap!: installDir: Swap Swap Swap: {} launch: - /Swap Swap Swap.exe: + "/Swap Swap Swap.exe": - when: - os: windows store: steam @@ -520120,7 +521554,7 @@ SwapQuest: installDir: SwapQuest: {} launch: - /SwapQuest.exe: + "/SwapQuest.exe": - when: - os: windows store: steam @@ -520133,7 +521567,7 @@ Swapper Tiles: installDir: Swapper Tiles: {} launch: - /Swapper Tiles.exe: + "/Swapper Tiles.exe": - when: - store: steam steam: @@ -520142,7 +521576,7 @@ Swapperoo: installDir: Swapperoo: {} launch: - /Swapperoo.exe: + "/Swapperoo.exe": - when: - store: steam steam: @@ -520151,7 +521585,7 @@ Swaps and Traps: installDir: Swaps and Traps: {} launch: - /Swaps And Traps.exe: + "/Swaps And Traps.exe": - when: - os: windows store: steam @@ -520161,7 +521595,7 @@ Swarm Arena: installDir: Swarm Arena: {} launch: - /swarm.exe: + "/swarm.exe": - when: - store: steam steam: @@ -520170,21 +521604,21 @@ Swarm Queen: installDir: Swarm Queen: {} launch: - /Swarm Queen.exe: + "/Swarm Queen.exe": - when: - os: windows store: steam steam: id: 701870 -'Swarm Simulator: Evolution': +"Swarm Simulator: Evolution": installDir: Swarm Simulator Evolution: {} launch: - /Swarm Sim.exe: + "/Swarm Sim.exe": - when: - os: windows store: steam - /Swarm Simulator.app: + "/Swarm Simulator.app": - when: - os: mac store: steam @@ -520194,7 +521628,7 @@ Swarm Universe: installDir: Swarm Universe: {} launch: - /Swarm Universe.exe: + "/Swarm Universe.exe": - when: - os: windows store: steam @@ -520204,7 +521638,7 @@ SwarmZ: installDir: SwarmZ: {} launch: - /SwarmZ.exe: + "/SwarmZ.exe": - when: - os: windows store: steam @@ -520212,7 +521646,7 @@ SwarmZ: id: 1174720 Swarmlake: files: - /Swarmlake/settings: + "/Swarmlake/settings": tags: - config when: @@ -520220,7 +521654,7 @@ Swarmlake: installDir: Swarmlake: {} launch: - /Swarmlake.exe: + "/Swarmlake.exe": - when: - store: steam steam: @@ -520229,11 +521663,11 @@ Swarmrider Omega: installDir: SWARMRIDER OMEGA: {} launch: - /SWARMRIDER OMEGA.exe: + "/SWARMRIDER OMEGA.exe": - when: - os: windows store: steam - /run.sh: + "/run.sh": - when: - os: linux store: steam @@ -520241,7 +521675,7 @@ Swarmrider Omega: id: 714240 Swarmriders: files: - /SWARMRIDERS: + "/SWARMRIDERS": tags: - save when: @@ -520249,11 +521683,11 @@ Swarmriders: installDir: SWARMRIDERS: {} launch: - /SWARMRIDERS.exe: + "/SWARMRIDERS.exe": - when: - os: windows store: steam - /run.sh: + "/run.sh": - when: - os: linux store: steam @@ -520261,7 +521695,7 @@ Swarmriders: id: 490230 SweatShop: files: - /AppData/LocalLow/DucksLab/SweatShop/persistentData/default: + "/AppData/LocalLow/DucksLab/SweatShop/persistentData/default": tags: - save when: @@ -520269,20 +521703,20 @@ SweatShop: installDir: SweatShop: {} launch: - /SweatShop.app: + "/SweatShop.app": - when: - os: mac store: steam - /SweatShop.exe: + "/SweatShop.exe": - when: - os: windows store: steam - /SweatShop.x86: + "/SweatShop.x86": - when: - bit: 32 os: linux store: steam - /SweatShop.x86_64: + "/SweatShop.x86_64": - when: - bit: 64 os: linux @@ -520299,7 +521733,7 @@ Sweaty Palms: id: 694760 Swedish Touring Car Championship: files: - /SavedGames: + "/SavedGames": tags: - save when: @@ -520310,7 +521744,7 @@ Swedish Touring Car Championship: - config Swedish Touring Car Championship 2: files: - /SavedGames: + "/SavedGames": tags: - save when: @@ -520319,19 +521753,19 @@ Swedish Touring Car Championship 2: HKEY_CURRENT_USER/SOFTWARE/Digital Illusions/STCC 2/Configurations/Default: tags: - config -Sweep'n'Sweep: +"Sweep'n'Sweep": installDir: - Sweep'n'Sweep: {} + "Sweep'n'Sweep": {} launch: - /sweep.app: + "/sweep.app": - when: - os: mac store: steam - /sweep.exe: + "/sweep.exe": - when: - os: windows store: steam - /sweep.x86: + "/sweep.x86": - when: - os: linux store: steam @@ -520354,7 +521788,7 @@ Sweet Candy Mahjong: installDir: Sweet Candy Mahjong: {} launch: - /SweetCandyMahjong.exe: + "/SweetCandyMahjong.exe": - when: - os: windows store: steam @@ -520364,7 +521798,7 @@ Sweet Dream Succubus - Nightmare Edition: installDir: Sweet Dream Succubus - Nightmare Edition: {} launch: - /Sweet Dream Succubus.exe: + "/Sweet Dream Succubus.exe": - when: - os: windows store: steam @@ -520379,15 +521813,15 @@ Sweet Fantasy: installDir: Sweet fantasy: {} launch: - /SweetFantasy.app: + "/SweetFantasy.app": - when: - os: mac store: steam - /SweetFantasy.exe: + "/SweetFantasy.exe": - when: - os: windows store: steam - /SweetFantasy.sh: + "/SweetFantasy.sh": - when: - os: linux store: steam @@ -520397,7 +521831,7 @@ Sweet Fruitcake: installDir: Sweet F. Cake: {} launch: - /Sweet Fruitcake.exe: + "/Sweet Fruitcake.exe": - when: - os: windows store: steam @@ -520407,15 +521841,15 @@ Sweet Galaxy Adventure!: installDir: Sweet Galaxy Adventure!: {} launch: - /SweetGalaxyAdventure.app: + "/SweetGalaxyAdventure.app": - when: - os: mac store: steam - /SweetGalaxyAdventure.exe: + "/SweetGalaxyAdventure.exe": - when: - os: windows store: steam - /SweetGalaxyAdventure.sh: + "/SweetGalaxyAdventure.sh": - when: - os: linux store: steam @@ -520431,7 +521865,7 @@ Sweet Lily Dreams: installDir: Sweet Lily Dreams: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: @@ -520440,11 +521874,11 @@ Sweet Magic Madness: installDir: Sweet Magic Madness: {} launch: - /Sweet Magic Madness.exe: + "/Sweet Magic Madness.exe": - when: - os: windows store: steam - /runner: + "/runner": - when: - os: linux store: steam @@ -520456,7 +521890,7 @@ Sweet Pool: installDir: sweet pool: {} launch: - /sweetpool.exe: + "/sweetpool.exe": - when: - store: steam steam: @@ -520465,7 +521899,7 @@ Sweet Seasons: installDir: Sweet Seasons: {} launch: - /Sweet Seasons.exe: + "/Sweet Seasons.exe": - when: - os: windows store: steam @@ -520480,11 +521914,11 @@ Sweet Treats: installDir: Sweet Treats: {} launch: - /Sweet Treats.app: + "/Sweet Treats.app": - when: - os: mac store: steam - /Sweet Treats.exe: + "/Sweet Treats.exe": - when: - os: windows store: steam @@ -520494,15 +521928,15 @@ Sweet Volley High: installDir: Sweet Volley High: {} launch: - /Sweet_Volley_High.app: + "/Sweet_Volley_High.app": - when: - os: mac store: steam - /Sweet_Volley_High.exe: + "/Sweet_Volley_High.exe": - when: - os: windows store: steam - /Sweet_Volley_High.sh: + "/Sweet_Volley_High.sh": - when: - os: linux store: steam @@ -520510,17 +521944,17 @@ Sweet Volley High: id: 523730 Sweetest Monster: files: - /game/saves/*.save: + "/game/saves/*.save": tags: - save when: - os: windows - /RenPy/Sweetest Monster-1453027400/*.save: + "/RenPy/Sweetest Monster-1453027400/*.save": tags: - save when: - os: windows - /renpy/Sweetest Monster-1453027400/persistent: + "/renpy/Sweetest Monster-1453027400/persistent": tags: - config when: @@ -520528,15 +521962,15 @@ Sweetest Monster: installDir: Sweetest Monster: {} launch: - /Sweetest Monster.app: + "/Sweetest Monster.app": - when: - os: mac store: steam - /Sweetest Monster.exe: + "/Sweetest Monster.exe": - when: - os: windows store: steam - /Sweetest Monster.sh: + "/Sweetest Monster.sh": - when: - os: linux store: steam @@ -520544,12 +521978,12 @@ Sweetest Monster: id: 585890 Sweezy Gunner: files: - /Save Files: + "/Save Files": tags: - save when: - os: windows - /Save Files/settings.ini: + "/Save Files/settings.ini": tags: - config when: @@ -520557,7 +521991,7 @@ Sweezy Gunner: installDir: Sweezy Gunner: {} launch: - /Sweezy Gunner.exe: + "/Sweezy Gunner.exe": - when: - os: windows store: steam @@ -520567,8 +522001,8 @@ Swelter: installDir: Swelter: {} launch: - /hl2.exe: - - arguments: '-steam -nohmd -game \"Swelter\"' + "/hl2.exe": + - arguments: "-steam -nohmd -game \\\"Swelter\\\"" when: - os: windows store: steam @@ -520578,15 +522012,15 @@ Sweven: installDir: Sweven: {} launch: - /Sweven.app/Contents/MacOS/Sweven: + "/Sweven.app/Contents/MacOS/Sweven": - when: - os: mac store: steam - /Sweven.exe: + "/Sweven.exe": - when: - os: windows store: steam - /Sweven.x86_64: + "/Sweven.x86_64": - when: - os: linux store: steam @@ -520596,11 +522030,11 @@ Swift: installDir: Swift: {} launch: - /Swift.app: + "/Swift.app": - when: - os: mac store: steam - /Swift.exe: + "/Swift.exe": - when: - os: windows store: steam @@ -520610,20 +522044,20 @@ Swiftly: installDir: Swiftly: {} launch: - /Swiftly.app: + "/Swiftly.app": - when: - os: mac store: steam - /Swiftly.exe: + "/Swiftly.exe": - when: - os: windows store: steam - /Swiftly.x86: + "/Swiftly.x86": - when: - bit: 32 os: linux store: steam - /Swiftly.x86_64: + "/Swiftly.x86_64": - when: - bit: 64 os: linux @@ -520632,7 +522066,7 @@ Swiftly: id: 418610 Swim Out: files: - /AppData/LocalLow/Lozange Lab/Swim Out/UserCompletion.bin: + "/AppData/LocalLow/Lozange Lab/Swim Out/UserCompletion.bin": tags: - save when: @@ -520640,20 +522074,20 @@ Swim Out: installDir: Swim Out: {} launch: - /Swim Out.app/Contents/MacOS/Swim Out: + "/Swim Out.app/Contents/MacOS/Swim Out": - when: - os: mac store: steam - /Swim Out.exe: + "/Swim Out.exe": - when: - os: windows store: steam - /SwimOut.x86: + "/SwimOut.x86": - when: - bit: 32 os: linux store: steam - /SwimOut.x86_64: + "/SwimOut.x86_64": - when: - bit: 64 os: linux @@ -520667,7 +522101,7 @@ Swimsanity!: installDir: Swimsanity!: {} launch: - /Swimsanity.exe: + "/Swimsanity.exe": - when: - os: windows store: steam @@ -520681,7 +522115,7 @@ Swing Dunk (Beta): installDir: Swing Dunk: {} launch: - /Swing Dunk.exe: + "/Swing Dunk.exe": - when: - os: windows store: steam @@ -520706,7 +522140,7 @@ Swingin Swiggins: installDir: Swingin Swiggins: {} launch: - /Binaries/Win32/UDK.exe: + "/Binaries/Win32/UDK.exe": - when: - os: windows store: steam @@ -520716,11 +522150,11 @@ Swingy Sword: installDir: Swingy Sword: {} launch: - /Swingy Sword Mac.app: + "/Swingy Sword Mac.app": - when: - os: mac store: steam - /Swingy Sword.exe: + "/Swingy Sword.exe": - when: - os: windows store: steam @@ -520730,7 +522164,7 @@ Swipe Fruit Smash: installDir: Swipe Fruit Smash: {} launch: - /SwipeFruitSmash.exe: + "/SwipeFruitSmash.exe": - when: - os: windows store: steam @@ -520740,7 +522174,7 @@ Swipecart: installDir: Swipecart: {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: @@ -520752,7 +522186,7 @@ Swiss Knife: installDir: Swiss Knife: {} launch: - /SwissKnife.exe: + "/SwissKnife.exe": - when: - os: windows store: steam @@ -520762,20 +522196,20 @@ Switch: installDir: Switch: {} launch: - /Switch.app: + "/Switch.app": - when: - os: mac store: steam - /Switch.exe: + "/Switch.exe": - when: - os: windows store: steam - /Switch.x86: + "/Switch.x86": - when: - bit: 32 os: linux store: steam - /Switch.x86_64: + "/Switch.x86_64": - when: - bit: 64 os: linux @@ -520786,40 +522220,40 @@ Switch & Ditch: installDir: Switch & Ditch: {} launch: - /Switch&Ditch.exe: + "/Switch&Ditch.exe": - when: - os: windows store: steam - /Switch_Ditch-Mac.app: + "/Switch_Ditch-Mac.app": - when: - os: mac store: steam steam: id: 992790 -Switch 'N' Shoot: +"Switch 'N' Shoot": installDir: - Switch 'N' Shoot: {} + "Switch 'N' Shoot": {} launch: - /Switch 'N' Shoot.app: + "/Switch 'N' Shoot.app": - when: - os: mac store: steam - /Switch 'N' Shoot.exe: + "/Switch 'N' Shoot.exe": - when: - os: windows store: steam - /Switch 'N' Shoot.x86: + "/Switch 'N' Shoot.x86": - when: - bit: 32 os: linux store: steam - /Switch 'N' Shoot.x86_64: + "/Switch 'N' Shoot.x86_64": - when: - bit: 64 os: linux store: steam registry: - HKEY_CURRENT_USER/Software/Matt Glanville/Switch 'N' Shoot: + "HKEY_CURRENT_USER/Software/Matt Glanville/Switch 'N' Shoot": tags: - config steam: @@ -520828,19 +522262,19 @@ Switch - Black & White: installDir: Switch - Black & White: {} launch: - /Switch.exe: + "/Switch.exe": - when: - store: steam steam: id: 879430 Switch Galaxy Ultra: files: - /Atomicom/Switch Galaxy/savedata-*.dat: + "/Atomicom/Switch Galaxy/savedata-*.dat": tags: - save when: - os: windows - /Atomicom/Switch Galaxy/settings.cfg: + "/Atomicom/Switch Galaxy/settings.cfg": tags: - config when: @@ -520852,17 +522286,17 @@ Switch Galaxy Ultra: installDir: Switch Galaxy Ultra: {} launch: - /switch_galaxy: + "/switch_galaxy": - when: - os: linux store: steam - /switch_galaxy.app: + "/switch_galaxy.app": - when: - bit: 64 os: mac store: steam - workingDir: /switch_galaxy.app/Contents/MacOS - /switch_galaxy.exe: + workingDir: "/switch_galaxy.app/Contents/MacOS" + "/switch_galaxy.exe": - when: - os: windows store: steam @@ -520874,7 +522308,7 @@ Switchblade: installDir: Switchblade: {} launch: - /switchblade.exe: + "/switchblade.exe": - when: - os: windows store: steam @@ -520884,7 +522318,7 @@ Switchblade (Lucid Games): installDir: SwitchBlade: {} launch: - /Switchblade.exe: + "/Switchblade.exe": - when: - os: windows store: steam @@ -520894,11 +522328,11 @@ Switchcars: installDir: Switchcars: {} launch: - /switchcars: + "/switchcars": - when: - os: linux store: steam - /switchcars.exe: + "/switchcars.exe": - when: - os: windows store: steam @@ -520908,7 +522342,7 @@ Switcher: installDir: Switcher: {} launch: - /Switcher.exe: + "/Switcher.exe": - when: - os: windows store: steam @@ -520918,25 +522352,25 @@ Swoon! Earth Escape: installDir: Swoon!: {} launch: - /SWOON MAC OS.app/Contents/MacOS/Swoon! Earth Escape: + "/SWOON MAC OS.app/Contents/MacOS/Swoon! Earth Escape": - when: - os: mac store: steam - /Swoon! Earth Escape.exe: + "/Swoon! Earth Escape.exe": - when: - os: windows store: steam steam: id: 1673460 -Sword 'N' Board: +"Sword 'N' Board": installDir: Sword N Board: {} launch: - /swordnboard.app: + "/swordnboard.app": - when: - os: mac store: steam - /swordnboard.exe: + "/swordnboard.exe": - when: - os: windows store: steam @@ -520944,13 +522378,13 @@ Sword 'N' Board: id: 425230 Sword Art Online Alicization Lycoris: files: - /userdata//1009290/remote: + "/userdata//1009290/remote": tags: - save when: - os: windows store: steam - /sao_al/userdata/GRPCFG.bin: + "/sao_al/userdata/GRPCFG.bin": tags: - config when: @@ -520958,14 +522392,14 @@ Sword Art Online Alicization Lycoris: installDir: SWORD ART ONLINE Alicization Lycoris: {} launch: - /Launch_Game.exe: + "/Launch_Game.exe": - when: - store: steam steam: id: 1009290 -'Sword Art Online Re: Hollow Fragment': +"Sword Art Online Re: Hollow Fragment": files: - /userdata//638650/remote: + "/userdata//638650/remote": tags: - save when: @@ -520974,21 +522408,21 @@ Sword Art Online Alicization Lycoris: installDir: SAOHF: {} launch: - /SAOHF.exe: + "/SAOHF.exe": - when: - bit: 64 os: windows store: steam steam: id: 638650 -'Sword Art Online: Fatal Bullet': +"Sword Art Online: Fatal Bullet": files: - /SAOFB/Saved/Config/WindowsNoEditor: + "/SAOFB/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /SAOFB/Saved/SaveGames: + "/SAOFB/Saved/SaveGames": tags: - save when: @@ -520996,21 +522430,21 @@ Sword Art Online Alicization Lycoris: installDir: SWORD ART ONLINE FATAL BULLET: {} launch: - /SAOFB_Launcher.exe: + "/SAOFB_Launcher.exe": - when: - bit: 64 os: windows store: steam steam: id: 626690 -'Sword Art Online: Hollow Realization': +"Sword Art Online: Hollow Realization": files: - /userdata: + "/userdata": tags: - config when: - os: windows - /userdata//607890/remote: + "/userdata//607890/remote": tags: - save when: @@ -521019,40 +522453,40 @@ Sword Art Online Alicization Lycoris: installDir: SAOHR: {} launch: - /sao_hr.exe: + "/sao_hr.exe": - when: - bit: 64 os: windows store: steam steam: id: 607890 -'Sword Art Online: Integral Factor': +"Sword Art Online: Integral Factor": installDir: SAOIF: {} launch: - /SAOIF.exe: + "/SAOIF.exe": - when: - os: windows store: steam steam: id: 2371630 -'Sword Art Online: Last Recollection': +"Sword Art Online: Last Recollection": files: - /BANDAI NAMCO Entertainment/SAO Last Recollection/Saved/Config/WindowsNoEditor: + "/BANDAI NAMCO Entertainment/SAO Last Recollection/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /BANDAI NAMCO Entertainment/SAO Last Recollection/Saved/SaveGames/: + "/BANDAI NAMCO Entertainment/SAO Last Recollection/Saved/SaveGames/": tags: - save when: - os: windows steam: id: 1566880 -'Sword Art Online: Lost Song': +"Sword Art Online: Lost Song": files: - /userdata//840720/remote: + "/userdata//840720/remote": tags: - save when: @@ -521060,7 +522494,7 @@ Sword Art Online Alicization Lycoris: installDir: Sword Art Online Lost Song: {} launch: - /SAOLS.exe: + "/SAOLS.exe": - when: - bit: 64 os: windows @@ -521071,7 +522505,7 @@ Sword Bros: installDir: SwordBros: {} launch: - /SwordBros.exe: + "/SwordBros.exe": - when: - os: windows store: steam @@ -521079,7 +522513,7 @@ Sword Bros: id: 680990 Sword Coast Legends: files: - /userdata//325600/remote: + "/userdata//325600/remote": tags: - config - save @@ -521089,16 +522523,16 @@ Sword Coast Legends: installDir: Sword Coast Legends: {} launch: - /SwordCoast.app: + "/SwordCoast.app": - when: - bit: 64 os: mac store: steam - /SwordCoast.exe: + "/SwordCoast.exe": - when: - os: windows store: steam - /SwordCoast.x86_64: + "/SwordCoast.x86_64": - when: - bit: 64 os: linux @@ -521107,17 +522541,17 @@ Sword Coast Legends: id: 325600 Sword Daughter: files: - /game/saves: + "/game/saves": tags: - save when: - os: windows - /renpy/config.py: + "/renpy/config.py": tags: - config when: - os: windows - /renpy/Sword Daughter: + "/renpy/Sword Daughter": tags: - save when: @@ -521125,15 +522559,15 @@ Sword Daughter: installDir: Sword Daughter: {} launch: - /SwordDaughter.app: + "/SwordDaughter.app": - when: - os: mac store: steam - /SwordDaughter.exe: + "/SwordDaughter.exe": - when: - os: windows store: steam - /SwordDaughter.sh: + "/SwordDaughter.sh": - when: - os: linux store: steam @@ -521146,12 +522580,12 @@ Sword Defense: id: 1031090 Sword Legacy Omen: files: - /Options.cfg: + "/Options.cfg": tags: - config when: - os: windows - /SaveFiles/SaveFile.sav: + "/SaveFiles/SaveFile.sav": tags: - save when: @@ -521161,7 +522595,7 @@ Sword Legacy Omen: installDir: Sword Legacy Omen: {} launch: - /SLO.exe: + "/SLO.exe": - when: - bit: 64 os: windows @@ -521176,21 +522610,21 @@ Sword Mans: installDir: Sword Mans: {} launch: - /Sword Mans.exe: + "/Sword Mans.exe": - when: - os: windows store: steam - /Sword Mans.x86: + "/Sword Mans.x86": - when: - bit: 32 os: linux store: steam - /Sword Mans.x86_64: + "/Sword Mans.x86_64": - when: - bit: 64 os: linux store: steam - /SwordMans.app/Contents/MacOS/SwordMans: + "/SwordMans.app/Contents/MacOS/SwordMans": - when: - os: mac store: steam @@ -521200,11 +522634,11 @@ Sword Master: installDir: sWORD MASTER: {} launch: - /Contents/MacOS/mac: + "/Contents/MacOS/mac": - when: - os: mac store: steam - /sWORDMASTER.exe: + "/sWORDMASTER.exe": - when: - os: windows store: steam @@ -521217,12 +522651,12 @@ Sword Master VR: id: 523710 Sword With Sauce: files: - /SwordWithSauce/Saved/Config/WindowsNoEditor: + "/SwordWithSauce/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /SwordWithSauce/Saved/SaveGames: + "/SwordWithSauce/Saved/SaveGames": tags: - save when: @@ -521230,7 +522664,7 @@ Sword With Sauce: installDir: Sword With Sauce Alpha: {} launch: - /SwordWithSauce.exe: + "/SwordWithSauce.exe": - when: - os: windows store: steam @@ -521238,7 +522672,7 @@ Sword With Sauce: id: 581630 Sword and Fairy 7: files: - /Pal7/Saved/Config/WindowsNoEditor: + "/Pal7/Saved/Config/WindowsNoEditor": tags: - config when: @@ -521246,7 +522680,7 @@ Sword and Fairy 7: installDir: 仙剑奇侠传七: {} launch: - /Pal7.exe: + "/Pal7.exe": - when: - os: windows store: steam @@ -521264,15 +522698,15 @@ Sword of Asumi: installDir: Sword of Asumi: {} launch: - /Sword of Asumi.app: + "/Sword of Asumi.app": - when: - os: mac store: steam - /Sword of Asumi.exe: + "/Sword of Asumi.exe": - when: - os: windows store: steam - /Sword of Asumi.sh: + "/Sword of Asumi.sh": - when: - os: linux store: steam @@ -521282,7 +522716,7 @@ Sword of Fargoal: installDir: Sword of Fargoal: {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: @@ -521292,7 +522726,7 @@ Sword of Fireheart - The Awakening Element: id: 503490 Sword of Rapier: files: - /AppData/LocalLow/vDog/Sword of Rapier/SaveData.dat: + "/AppData/LocalLow/vDog/Sword of Rapier/SaveData.dat": tags: - save when: @@ -521300,7 +522734,7 @@ Sword of Rapier: installDir: Sword of Rapier: {} launch: - /SofR.exe: + "/SofR.exe": - when: - os: windows store: steam @@ -521312,22 +522746,22 @@ Sword of Rapier: id: 933430 Sword of Vermilion: files: - /SEGA Genesis Classics/0032: + "/SEGA Genesis Classics/0032": tags: - save when: - os: windows - /SEGA Genesis Classics/setup.dat: + "/SEGA Genesis Classics/setup.dat": tags: - config when: - os: windows - /SEGA Mega Drive Classics/0032: + "/SEGA Mega Drive Classics/0032": tags: - save when: - os: windows - /SEGA Mega Drive Classics/setup.dat: + "/SEGA Mega Drive Classics/setup.dat": tags: - config when: @@ -521338,7 +522772,7 @@ Sword of the Black Stone: installDir: Sword of the Black Stone: {} launch: - /Sword Of The Black Stone.exe: + "/Sword Of The Black Stone.exe": - when: - os: windows store: steam @@ -521348,7 +522782,7 @@ Sword of the Guardian: installDir: Sword of the Guardian: {} launch: - /Sword of the Guardian.exe: + "/Sword of the Guardian.exe": - when: - os: windows store: steam @@ -521360,11 +522794,11 @@ Sword of the Necromancer: installDir: SwordOfTheNecromancer: {} launch: - /SOTN.exe: + "/SOTN.exe": - when: - os: windows store: steam - /SwordOfTheNecromancer: + "/SwordOfTheNecromancer": - when: - os: linux store: steam @@ -521376,47 +522810,47 @@ Sword of the Samurai: installDir: Sword of the Samurai: {} launch: - /Sword of the Samurai.app: + "/Sword of the Samurai.app": - when: - os: mac store: steam - /dosbox_linux/daum/launch_swordofthesamurai_game_daum.sh: + "/dosbox_linux/daum/launch_swordofthesamurai_game_daum.sh": - when: - os: linux store: steam - workingDir: /dosbox_linux/daum - /dosbox_linux/launch_swordofthesamurai_game.sh: + workingDir: "/dosbox_linux/daum" + "/dosbox_linux/launch_swordofthesamurai_game.sh": - when: - os: linux store: steam - workingDir: /dosbox_linux - /dosbox_windows/daum/dosbox.exe: - - arguments: '-conf dosbox_swordofthesamurai.conf -conf dosbox_swordofthesamurai_launch_windows.conf -noconsole' + workingDir: "/dosbox_linux" + "/dosbox_windows/daum/dosbox.exe": + - arguments: "-conf dosbox_swordofthesamurai.conf -conf dosbox_swordofthesamurai_launch_windows.conf -noconsole" when: - os: windows store: steam - workingDir: /dosbox_windows/daum - /dosbox_windows/dosbox.exe: - - arguments: '-conf dosbox_swordofthesamurai.conf -conf dosbox_swordofthesamurai_launch_windows.conf -noconsole' + workingDir: "/dosbox_windows/daum" + "/dosbox_windows/dosbox.exe": + - arguments: "-conf dosbox_swordofthesamurai.conf -conf dosbox_swordofthesamurai_launch_windows.conf -noconsole" when: - os: windows store: steam - workingDir: /dosbox_windows + workingDir: "/dosbox_windows" steam: id: 327950 Sword of the Slayer: installDir: Sword of the Slayer: {} launch: - /Sword of the Slayer.app/Contents/MacOS/Sword of the Slayer: + "/Sword of the Slayer.app/Contents/MacOS/Sword of the Slayer": - when: - os: mac store: steam - /SwordOfTheSlayer: + "/SwordOfTheSlayer": - when: - os: linux store: steam - /SwordOfTheSlayer.exe: + "/SwordOfTheSlayer.exe": - when: - os: windows store: steam @@ -521424,12 +522858,12 @@ Sword of the Slayer: id: 1152050 Sword of the Stars: files: - /Profiles: + "/Profiles": tags: - config when: - os: windows - /SavedGames: + "/SavedGames": tags: - save when: @@ -521439,57 +522873,57 @@ Sword of the Stars: installDir: Sword of the Stars Complete Collection: {} launch: - /Sword of the Stars.exe: + "/Sword of the Stars.exe": - when: - store: steam steam: id: 42890 -'Sword of the Stars II: Lords of Winter': +"Sword of the Stars II: Lords of Winter": installDir: Sword of the Stars II: {} launch: - /bin/x86/sots2.exe: + "/bin/x86/sots2.exe": - when: - os: windows store: steam - workingDir: /bin/x86 + workingDir: "/bin/x86" steam: id: 42990 -'Sword of the Stars: Ground Pounders': +"Sword of the Stars: Ground Pounders": installDir: Ground Pounders: {} launch: - /bin/gp.win32.exe: + "/bin/gp.win32.exe": - when: - os: windows store: steam - workingDir: /bin - /gp.linux32/start_game.sh: + workingDir: "/bin" + "/gp.linux32/start_game.sh": - when: - os: linux store: steam - workingDir: /gp.linux32 - /gp.mac32/Ground Pounders.app: + workingDir: "/gp.linux32" + "/gp.mac32/Ground Pounders.app": - when: - os: mac store: steam - workingDir: /gp.mac32 + workingDir: "/gp.mac32" steam: id: 267730 -'Sword of the Stars: The Pit': +"Sword of the Stars: The Pit": files: - /userdata//233700/remote: + "/userdata//233700/remote": tags: - save when: - store: steam - /Sword of the Stars - The Pit: + "/Sword of the Stars - The Pit": tags: - config - save when: - os: windows - /ThePit: + "/ThePit": tags: - config - save @@ -521500,15 +522934,15 @@ Sword of the Stars: installDir: The Pit: {} launch: - /The Pit.app: + "/The Pit.app": - when: - os: mac store: steam - /ThePit: + "/ThePit": - when: - os: linux store: steam - /ThePit.exe: + "/ThePit.exe": - when: - os: windows store: steam @@ -521518,7 +522952,7 @@ SwordBounce: installDir: SwordBounce: {} launch: - /Swordbounce.exe: + "/Swordbounce.exe": - when: - os: windows store: steam @@ -521528,35 +522962,35 @@ Swordbreaker The Game: installDir: Swordbreaker The Game: {} launch: - /Swordbreaker The Game.app: + "/Swordbreaker The Game.app": - when: - os: mac store: steam - /SwordbreakerTheGame.exe: + "/SwordbreakerTheGame.exe": - when: - os: windows store: steam steam: id: 411760 -'Swordbreaker: Back to The Castle': +"Swordbreaker: Back to The Castle": installDir: Swordbreaker Back to The Castle: {} launch: - /Swordbreaker Back to The Castle.exe: + "/Swordbreaker Back to The Castle.exe": - when: - os: windows store: steam steam: id: 1005990 -'Swordbreaker: Origins': +"Swordbreaker: Origins": installDir: Swordbreaker Origins: {} launch: - /SwordBreakerOrigin.exe: + "/SwordBreakerOrigin.exe": - when: - os: windows store: steam - /SwordBreakerOriginLinux.x86_64: + "/SwordBreakerOriginLinux.x86_64": - when: - bit: 64 os: linux @@ -521567,15 +523001,15 @@ Swordia: installDir: Norse: {} launch: - /Client.exe: + "/Client.exe": - when: - os: windows store: steam - /LinuxLauncher: + "/LinuxLauncher": - when: - os: linux store: steam - /MacLauncher: + "/MacLauncher": - when: - os: mac store: steam @@ -521585,7 +523019,7 @@ Swordlord: installDir: Swordlord: {} launch: - /Main.exe: + "/Main.exe": - when: - os: windows store: steam @@ -521595,21 +523029,21 @@ Swordrite: installDir: Swordrite: {} launch: - /Swordrite.exe: + "/Swordrite.exe": - when: - os: windows store: steam steam: id: 1169770 -'Swords & Crossbones: An Epic Pirate Story': +"Swords & Crossbones: An Epic Pirate Story": files: - /userdata//383720/remote: + "/userdata//383720/remote": tags: - save when: - os: windows store: steam - /userdata//383720/remote/game_settings.xml: + "/userdata//383720/remote/game_settings.xml": tags: - config when: @@ -521618,11 +523052,11 @@ Swordrite: installDir: Swords and Crossbones: {} launch: - /sacaeps: + "/sacaeps": - when: - os: linux store: steam - /sacaeps.exe: + "/sacaeps.exe": - when: - os: windows store: steam @@ -521630,25 +523064,25 @@ Swordrite: id: 383720 Swords & Soldiers: files: - /.ronimo-games/swords_and_soldiers: + "/.ronimo-games/swords_and_soldiers": tags: - config - save when: - os: linux - /steamapps/common/SwordsAndSoldiersHD/Data/Save.txt: + "/steamapps/common/SwordsAndSoldiersHD/Data/Save.txt": tags: - save when: - os: windows store: steam - /steamapps/common/SwordsAndSoldiersHD/Data/Settings: + "/steamapps/common/SwordsAndSoldiersHD/Data/Settings": tags: - config when: - os: windows store: steam - /userdata//63500: + "/userdata//63500": tags: - save when: @@ -521656,28 +523090,28 @@ Swords & Soldiers: installDir: SwordsAndSoldiersHD: {} launch: - /Swords and Soldiers Launcher.exe: + "/Swords and Soldiers Launcher.exe": - when: - os: windows store: steam - /SwordsAndSoldiers.app/Contents/MacOS/SwordsAndSoldiers: + "/SwordsAndSoldiers.app/Contents/MacOS/SwordsAndSoldiers": - when: - os: mac store: steam - /awesomeLauncher.app/Contents/MacOS/awesomeLauncher: + "/awesomeLauncher.app/Contents/MacOS/awesomeLauncher": - when: - os: mac store: steam steam: id: 63500 -'Swords & Soldiers II: Shawarmageddon': +"Swords & Soldiers II: Shawarmageddon": files: - /Config.txt: + "/Config.txt": tags: - config when: - os: windows - /userdata//703880/remote: + "/userdata//703880/remote": tags: - save when: @@ -521686,15 +523120,15 @@ Swords & Soldiers: installDir: Swords and Soldiers 2: {} launch: - /Swords and Soldiers 2.exe: + "/Swords and Soldiers 2.exe": - when: - os: windows store: steam steam: id: 703880 -'Swords & Souls: Neverseen': +"Swords & Souls: Neverseen": files: - /AppData/LocalLow/SoulGame/Swords _ Souls Neverseen/slot*: + "/AppData/LocalLow/SoulGame/Swords _ Souls Neverseen/slot*": tags: - save when: @@ -521704,11 +523138,11 @@ Swords & Soldiers: installDir: Swords & Souls Neverseen: {} launch: - /Contents/MacOS/Swords & Souls Neverseen: + "/Contents/MacOS/Swords & Souls Neverseen": - when: - os: mac store: steam - /Swords & Souls Neverseen.exe: + "/Swords & Souls Neverseen.exe": - when: - os: windows store: steam @@ -521718,15 +523152,15 @@ Swords & Soldiers: - config steam: id: 679900 -Swords 'n Magic and Stuff: +"Swords 'n Magic and Stuff": installDir: SwordsNMagicAndStuff_PreAlpha: {} launch: - /SNMAS-Mac-Shipping.app: + "/SNMAS-Mac-Shipping.app": - when: - os: mac store: steam - /SNMAS.exe: + "/SNMAS.exe": - when: - os: windows store: steam @@ -521736,11 +523170,11 @@ Swords and Sandals 2 Redux: installDir: Swords and Sandals 2 Redux: {} launch: - /Swords and Sandals 2 Redux.exe: + "/Swords and Sandals 2 Redux.exe": - when: - os: windows store: steam - /swords_and_sandals_2.app/Contents/MacOS/Swords and Sandals 2 Redux: + "/swords_and_sandals_2.app/Contents/MacOS/Swords and Sandals 2 Redux": - when: - os: mac store: steam @@ -521750,11 +523184,11 @@ Swords and Sandals 5 Redux: installDir: Swords and Sandals 5 Redux: {} launch: - /Swords and Sandals 5 Redux.exe: + "/Swords and Sandals 5 Redux.exe": - when: - os: windows store: steam - /swords_and_sandals_5.app/Contents/MacOS/Swords and Sandals 5 Redux: + "/swords_and_sandals_5.app/Contents/MacOS/Swords and Sandals 5 Redux": - when: - os: mac store: steam @@ -521764,11 +523198,11 @@ Swords and Sandals Classic Collection: installDir: Swords and Sandals Classic Collection: {} launch: - /Swords and Sandals Classic Collection.exe: + "/Swords and Sandals Classic Collection.exe": - when: - os: windows store: steam - /swords_and_sandals_classic.app/Contents/MacOS/Swords and Sandals Classic Collection: + "/swords_and_sandals_classic.app/Contents/MacOS/Swords and Sandals Classic Collection": - when: - os: mac store: steam @@ -521778,11 +523212,11 @@ Swords and Sandals Medieval: installDir: Swords and Sandals Medieval: {} launch: - /Swords and Sandals Medieval.exe: + "/Swords and Sandals Medieval.exe": - when: - os: windows store: steam - /swords_and_sandals_medieval.app/Contents/MacOS/Swords and Sandals Medieval: + "/swords_and_sandals_medieval.app/Contents/MacOS/Swords and Sandals Medieval": - when: - os: mac store: steam @@ -521792,11 +523226,11 @@ Swords and Sandals Pirates: installDir: Swords and Sandals Pirates: {} launch: - /Swords and Sandals Pirates.exe: + "/Swords and Sandals Pirates.exe": - when: - os: windows store: steam - /swords_and_sandals_pirates.app/Contents/MacOS/Swords and Sandals Pirates: + "/swords_and_sandals_pirates.app/Contents/MacOS/Swords and Sandals Pirates": - when: - os: mac store: steam @@ -521806,11 +523240,11 @@ Swords and Sandals Spartacus: installDir: Swords and Sandals Spartacus: {} launch: - /Swords and Sandals Spartacus.app/Contents/MacOS/Swords and Sandals Spartacus: + "/Swords and Sandals Spartacus.app/Contents/MacOS/Swords and Sandals Spartacus": - when: - os: mac store: steam - /Swords and Sandals Spartacus.exe: + "/Swords and Sandals Spartacus.exe": - when: - os: windows store: steam @@ -521820,7 +523254,7 @@ Swords and Sorcery - Underworld - Definitive Edition: installDir: Swords and Sorcery - Underworld - Definitive Edition: {} launch: - /ssude.exe: + "/ssude.exe": - when: - os: windows store: steam @@ -521844,22 +523278,20 @@ Swords of Legends Online: installDir: Swords of Legends Online: {} launch: - /bin64/SOLO_Launcher.exe: - - arguments: >- - --fs=data:_index:_index serverlist_url_na=https://serverlist-gujian.gfsrv.net/na_s2.json - serverlist_url_eu=https://serverlist-gujian.gfsrv.net/eu_e2.json --gf-sdk=steam + "/bin64/SOLO_Launcher.exe": + - arguments: "--fs=data:_index:_index serverlist_url_na=https://serverlist-gujian.gfsrv.net/na_s2.json serverlist_url_eu=https://serverlist-gujian.gfsrv.net/eu_e2.json --gf-sdk=steam" when: - store: steam steam: id: 1418100 Swords of Xeen: files: - /SWRD**.SAV: + "/SWRD**.SAV": tags: - save when: - os: dos - /XEEN.CFG: + "/XEEN.CFG": tags: - config when: @@ -521873,7 +523305,7 @@ Swords with spice: installDir: Swords with spice: {} launch: - /Survival.exe: + "/Survival.exe": - when: - os: windows store: steam @@ -521883,40 +523315,40 @@ Swordsman: installDir: Swordsman: {} launch: - /patcher/patcher.exe: - - arguments: 'steam:1' + "/patcher/patcher.exe": + - arguments: "steam:1" when: - store: steam - workingDir: /bin + workingDir: "/bin" steam: id: 364110 Swordy: installDir: SWORDY: {} launch: - /SWORDY.exe: + "/SWORDY.exe": - when: - store: steam steam: id: 467900 Syberia: files: - /Library/Application Support/Syberia: + "/Library/Application Support/Syberia": tags: - config when: - os: mac - /Library/Containers/com.microids.syberia.univ/Data/Library/Application Support/Syberia: + "/Library/Containers/com.microids.syberia.univ/Data/Library/Application Support/Syberia": tags: - save when: - os: mac - /Syberia Saves: + "/Syberia Saves": tags: - save when: - os: windows - /Syberia Saves/Config.dat: + "/Syberia Saves/Config.dat": tags: - config when: @@ -521926,11 +523358,11 @@ Syberia: installDir: Syberia: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam - /Syberia.app: + "/Syberia.app": - when: - os: mac store: steam @@ -521938,12 +523370,12 @@ Syberia: id: 46500 Syberia 3: files: - /AppData/LocalLow/Microids/Syberia3: + "/AppData/LocalLow/Microids/Syberia3": tags: - save when: - os: windows - /AppData/LocalLow/Microids/Syberia3/Options: + "/AppData/LocalLow/Microids/Syberia3/Options": tags: - config when: @@ -521953,12 +523385,12 @@ Syberia 3: installDir: Syberia3: {} launch: - /Syberia3.app: + "/Syberia3.app": - when: - bit: 64 os: mac store: steam - /Syberia3.exe: + "/Syberia3.exe": - when: - os: windows store: steam @@ -521966,17 +523398,17 @@ Syberia 3: id: 464340 Syberia II: files: - /Library/Containers/com.microids.syberia2.univ/Data/Library/Application Support/Syberia 2: + "/Library/Containers/com.microids.syberia2.univ/Data/Library/Application Support/Syberia 2": tags: - save when: - os: mac - /Library/Containers/com.microids.syberia2.univ/Data/Library/Application Support/Syberia 2/options.xml: + "/Library/Containers/com.microids.syberia2.univ/Data/Library/Application Support/Syberia 2/options.xml": tags: - config when: - os: mac - /Syberia 2 Saves: + "/Syberia 2 Saves": tags: - config - save @@ -521987,23 +523419,23 @@ Syberia II: installDir: Syberia 2: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam - /Syberia 2.app: + "/Syberia 2.app": - when: - os: mac store: steam - /Syberia2.exe: + "/Syberia2.exe": - when: - os: windows store: steam steam: id: 46510 -'Syberia: The World Before': +"Syberia: The World Before": files: - /SyberiaTWB: + "/SyberiaTWB": tags: - config - save @@ -522019,7 +523451,7 @@ Syberia II: installDir: Syberia - The World Before: {} launch: - /SyberiaTWB.exe: + "/SyberiaTWB.exe": - when: - os: windows store: steam @@ -522029,17 +523461,17 @@ Syder Arcade: installDir: SyderArcade: {} launch: - /SyderArcade.exe: - - arguments: '-console' + "/SyderArcade.exe": + - arguments: "-console" when: - os: windows store: steam - /SyderArcade.x86: + "/SyderArcade.x86": - arguments: LC_ALL=C %command% when: - os: linux store: steam - /SyderArcadeSteam.app: + "/SyderArcadeSteam.app": - when: - os: mac store: steam @@ -522049,21 +523481,21 @@ Sydney Hunter and the Curse of the Mayan: installDir: Sydney Hunter COTM: {} launch: - /cotm.app: + "/cotm.app": - when: - os: mac store: steam - /cotm.exe: + "/cotm.exe": - when: - os: windows store: steam steam: id: 931860 -Sydney's World: +"Sydney's World": installDir: - Sydney's World: {} + "Sydney's World": {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -522073,11 +523505,11 @@ Syko Swinger: installDir: Syko Swinger: {} launch: - /Game17.exe: + "/Game17.exe": - when: - os: windows store: steam - /Syko Swinger.app: + "/Syko Swinger.app": - when: - os: mac store: steam @@ -522089,7 +523521,7 @@ Sylphy and the Sleepless Island: installDir: Sylphy and the Sleepless Island: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: @@ -522098,11 +523530,11 @@ Sylvio: installDir: Sylvio: {} launch: - /sylvio_mac.app: + "/sylvio_mac.app": - when: - os: mac store: steam - /sylvio_win.exe: + "/sylvio_win.exe": - when: - os: windows store: steam @@ -522112,11 +523544,11 @@ Sylvio 2: installDir: Sylvio 2: {} launch: - /sylvio2_mac.app: + "/sylvio2_mac.app": - when: - os: mac store: steam - /sylvio2_win.exe: + "/sylvio2_win.exe": - when: - os: windows store: steam @@ -522126,11 +523558,11 @@ Sym: installDir: Sym: {} launch: - /Sym.exe: + "/Sym.exe": - when: - os: windows store: steam - /SymMac.app: + "/SymMac.app": - when: - os: mac store: steam @@ -522140,7 +523572,7 @@ Symbiotic: installDir: Symbiotic: {} launch: - /Symbiotic/Symbiotic/RLFPS.exe: + "/Symbiotic/Symbiotic/RLFPS.exe": - when: - bit: 64 os: windows @@ -522154,7 +523586,7 @@ SymeCu8e: installDir: symeCu8e: {} launch: - /symecu8e.exe: + "/symecu8e.exe": - when: - os: windows store: steam @@ -522162,32 +523594,32 @@ SymeCu8e: id: 641870 Symmetry: files: - /Library/Application Support/com.sleeplessclinic.symmetry/achievments.ini: + "/Library/Application Support/com.sleeplessclinic.symmetry/achievments.ini": tags: - save when: - os: mac - /Library/Application Support/com.sleeplessclinic.symmetry/continue.ini: + "/Library/Application Support/com.sleeplessclinic.symmetry/continue.ini": tags: - save when: - os: mac - /Library/Application Support/com.sleeplessclinic.symmetry/settings.ini: + "/Library/Application Support/com.sleeplessclinic.symmetry/settings.ini": tags: - config when: - os: mac - /Symmetry/achievments.ini: + "/Symmetry/achievments.ini": tags: - save when: - os: windows - /Symmetry/continue.ini: + "/Symmetry/continue.ini": tags: - save when: - os: windows - /Symmetry/settings.ini: + "/Symmetry/settings.ini": tags: - config when: @@ -522197,21 +523629,21 @@ Symmetry: installDir: SYMMETRY: {} launch: - /Symmetry.app: + "/Symmetry.app": - when: - os: mac store: steam - /Symmetry.exe: + "/Symmetry.exe": - when: - os: windows store: steam steam: id: 537520 -'Symmetry: Early Access': +"Symmetry: Early Access": installDir: Symmetry: {} launch: - /Symmetry.exe: + "/Symmetry.exe": - when: - bit: 64 os: windows @@ -522229,7 +523661,7 @@ Symphonic Mayhem: installDir: Symphonic Mayhem: {} launch: - /Symphonic Mayhem.exe: + "/Symphonic Mayhem.exe": - when: - os: windows store: steam @@ -522237,12 +523669,12 @@ Symphonic Mayhem: id: 954210 Symphonic Rain: files: - /KOGADO/SRIntl/*.ini: + "/KOGADO/SRIntl/*.ini": tags: - config when: - os: windows - /KOGADO/SRIntl/*.sav: + "/KOGADO/SRIntl/*.sav": tags: - save when: @@ -522250,7 +523682,7 @@ Symphonic Rain: installDir: Symphonic Rain: {} launch: - /SR.exe: + "/SR.exe": - when: - store: steam steam: @@ -522262,13 +523694,13 @@ Symphonics: id: 896350 Symphony: files: - /Empty Clip Studios/Symphony: + "/Empty Clip Studios/Symphony": tags: - config - save when: - os: windows - /Empty Clip Studios/Symphony: + "/Empty Clip Studios/Symphony": tags: - config - save @@ -522279,21 +523711,21 @@ Symphony: installDir: Symphony: {} launch: - /Symphony.app: + "/Symphony.app": - when: - os: mac store: steam - /Symphony.bin.x86: + "/Symphony.bin.x86": - when: - bit: 32 os: linux store: steam - /Symphony.bin.x86_64: + "/Symphony.bin.x86_64": - when: - bit: 64 os: linux store: steam - /Symphony.exe: + "/Symphony.exe": - when: - os: windows store: steam @@ -522303,37 +523735,37 @@ Symphony of Stars: installDir: Symphony of Stars: {} launch: - /SymphonyOfStars-OSX.app: + "/SymphonyOfStars-OSX.app": - when: - os: mac store: steam - /SymphonyOfStars-WindowsVR/Symphony of Stars.exe: - - arguments: '-vrmode none' + "/SymphonyOfStars-WindowsVR/Symphony of Stars.exe": + - arguments: "-vrmode none" when: - bit: 64 os: windows store: steam - workingDir: /SymphonyOfStars-WindowsVR - /SymphonyOfStars.x86: + workingDir: "/SymphonyOfStars-WindowsVR" + "/SymphonyOfStars.x86": - when: - bit: 32 os: linux store: steam - /SymphonyOfStars.x86_64: + "/SymphonyOfStars.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 973310 -'Symphony of War: The Nephilim Saga': +"Symphony of War: The Nephilim Saga": files: - /savedata/*.rvdata2: + "/savedata/*.rvdata2": tags: - save when: - os: windows - /Nephilim/*.rvdata2: + "/Nephilim/*.rvdata2": tags: - save when: @@ -522343,7 +523775,7 @@ Symphony of Stars: installDir: SoW1 Project: {} launch: - /steamshim.exe: + "/steamshim.exe": - when: - store: steam steam: @@ -522353,14 +523785,14 @@ Symphony of the Machine: Symphony of the Machine: {} steam: id: 540010 -'Symploke: Legend of Gustavo Bueno (Chapter 1)': +"Symploke: Legend of Gustavo Bueno (Chapter 1)": files: - /Saved Games/Symploke. Legend of Gustavo Bueno. Chapter 1/acsetup.cfg: + "/Saved Games/Symploke. Legend of Gustavo Bueno. Chapter 1/acsetup.cfg": tags: - config when: - os: windows - /Saved Games/Symploke. Legend of Gustavo Bueno. Chapter 1/agssave.*: + "/Saved Games/Symploke. Legend of Gustavo Bueno. Chapter 1/agssave.*": tags: - save when: @@ -522368,27 +523800,27 @@ Symphony of the Machine: installDir: SymplokeSteam: {} launch: - /symploke1.exe: + "/symploke1.exe": - when: - os: windows store: steam steam: id: 678090 -'Symploke: Legend of Gustavo Bueno (Chapter 2)': +"Symploke: Legend of Gustavo Bueno (Chapter 2)": installDir: SymplokeSteam2: {} launch: - /winsetup.exe: + "/winsetup.exe": - when: - os: windows store: steam steam: id: 678920 -'Symploke: Legend of Gustavo Bueno (Chapter 3)': +"Symploke: Legend of Gustavo Bueno (Chapter 3)": installDir: SymplokeSteam3: {} launch: - /winsetup.exe: + "/winsetup.exe": - when: - os: windows store: steam @@ -522396,7 +523828,7 @@ Symphony of the Machine: id: 1002980 Synced: files: - /ArkGame/Saved/SaveGames: + "/ArkGame/Saved/SaveGames": tags: - save when: @@ -522404,8 +523836,8 @@ Synced: installDir: SYNCED: {} launch: - /Launcher/sop_launcher.exe: - - arguments: '-LoginPlatform=2 -culture=en -language=en -locale=en' + "/Launcher/sop_launcher.exe": + - arguments: "-LoginPlatform=2 -culture=en -language=en -locale=en" when: - store: steam steam: @@ -522414,7 +523846,7 @@ Synced Warriors: installDir: Synced Warriors: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -522424,7 +523856,7 @@ Synch: installDir: SYNCH: {} launch: - /SYNCH.exe: + "/SYNCH.exe": - when: - os: windows store: steam @@ -522434,15 +523866,15 @@ Synchrom: installDir: Synchrom: {} launch: - /Synchrom: + "/Synchrom": - when: - os: linux store: steam - /Synchrom.app: + "/Synchrom.app": - when: - os: mac store: steam - /Synchrom.exe: + "/Synchrom.exe": - when: - os: windows store: steam @@ -522450,12 +523882,12 @@ Synchrom: id: 393740 Syndicate: files: - /SAVE: + "/SAVE": tags: - save when: - os: dos - /SAVE2: + "/SAVE2": tags: - save when: @@ -522464,24 +523896,24 @@ Syndicate: id: 1207658992 Syndicate (2012): files: - /Syndicate: + "/Syndicate": tags: - config when: - os: windows - /Syndicate/SaveGames/default: + "/Syndicate/SaveGames/default": tags: - save when: - os: windows Syndicate Wars: files: - /SWARS: + "/SWARS": tags: - config when: - os: windows - /SWARS/QDATA/SAVEGAME: + "/SWARS/QDATA/SAVEGAME": tags: - save when: @@ -522490,7 +523922,7 @@ Syndicate Wars: id: 1207659193 Syndrome: files: - /AppData/LocalLow/Camel101/Syndrome/MySaves: + "/AppData/LocalLow/Camel101/Syndrome/MySaves": tags: - save when: @@ -522498,20 +523930,20 @@ Syndrome: installDir: Syndrome: {} launch: - /Syndrome.app: - - arguments: 1245huix++#$512cvf + "/Syndrome.app": + - arguments: "1245huix++#$512cvf" when: - bit: 64 os: mac store: steam - /syndrome.exe: - - arguments: 1245huix++#$512cvf + "/syndrome.exe": + - arguments: "1245huix++#$512cvf" when: - bit: 64 os: windows store: steam - /syndrome.x86_64: - - arguments: 1245huix++#$512cvf + "/syndrome.x86_64": + - arguments: "1245huix++#$512cvf" when: - bit: 64 os: linux @@ -522524,7 +523956,7 @@ Syndrome: id: 409320 Syndrome VR: files: - /AppData/LocalLow/BIGMOON ENTERTAINMENT/Syndrome: + "/AppData/LocalLow/BIGMOON ENTERTAINMENT/Syndrome": tags: - save when: @@ -522532,7 +523964,7 @@ Syndrome VR: installDir: Syndrome VR (Retail): {} launch: - /Syndrome.exe: + "/Syndrome.exe": - when: - store: steam registry: @@ -522541,17 +523973,17 @@ Syndrome VR: - config steam: id: 579210 -'Synduality: Echo of Ada': +"Synduality: Echo of Ada": steam: id: 1245480 Synergia: files: - /RenPy/Synergia-1529537386/*.save: + "/RenPy/Synergia-1529537386/*.save": tags: - save when: - os: windows - /RenPy/Synergia-1529537386/persistent: + "/RenPy/Synergia-1529537386/persistent": tags: - config when: @@ -522561,15 +523993,15 @@ Synergia: installDir: Synergia: {} launch: - /Synergia.app: + "/Synergia.app": - when: - os: mac store: steam - /Synergia.exe: + "/Synergia.exe": - when: - os: windows store: steam - /Synergia.sh: + "/Synergia.sh": - when: - os: linux store: steam @@ -522579,13 +524011,15 @@ Synergy: installDir: Synergy: {} launch: - /hl2.sh: - - arguments: '-game synergy -steam -novid' + "/hl2.sh": + - arguments: "-game synergy -steam -novid" when: + - os: mac + store: steam - os: linux store: steam - /synergy.exe: - - arguments: '-game synergy -steam -novid' + "/synergy.exe": + - arguments: "-game synergy -steam -novid" when: - os: windows store: steam @@ -522595,11 +524029,11 @@ Synonymy: installDir: Synonymy: {} launch: - /Synonymy.app: + "/Synonymy.app": - when: - os: mac store: steam - /Synonymy.exe: + "/Synonymy.exe": - when: - os: windows store: steam @@ -522625,15 +524059,15 @@ Syntherapy: installDir: Syntherapy: {} launch: - /SYNTHERAPY.exe: + "/SYNTHERAPY.exe": - when: - os: windows store: steam - /Syntherapy_GOLD: + "/Syntherapy_GOLD": - when: - os: linux store: steam - /Syntherapy_GOLD.app: + "/Syntherapy_GOLD.app": - when: - os: mac store: steam @@ -522653,11 +524087,11 @@ Synthetic Love: installDir: Synthetic Love: {} launch: - /macOS/Visionaire Player.app: + "/macOS/Visionaire Player.app": - when: - os: mac store: steam - /win/SynLove.exe: + "/win/SynLove.exe": - when: - os: windows store: steam @@ -522665,7 +524099,7 @@ Synthetic Love: id: 861260 Synthetik 2: files: - /../LocalLow/FlowFire/Synthetik2/Settings.json: + "/../LocalLow/FlowFire/Synthetik2/Settings.json": tags: - config when: @@ -522673,19 +524107,19 @@ Synthetik 2: installDir: SYNTHETIK 2: {} launch: - /Synthetik2.exe: + "/Synthetik2.exe": - when: - store: steam steam: id: 1471410 -'Synthetik: Legion Rising': +"Synthetik: Legion Rising": files: - /Synthetik/Save.sav: + "/Synthetik/Save.sav": tags: - save when: - os: windows - /Synthetik/Settings.sav: + "/Synthetik/Settings.sav": tags: - config when: @@ -522695,7 +524129,7 @@ Synthetik 2: installDir: Synthetik: {} launch: - /Synthetik.exe: + "/Synthetik.exe": - when: - os: windows store: steam @@ -522705,16 +524139,16 @@ Synthrally: installDir: Synthrally: {} launch: - /synthrally.app: + "/synthrally.app": - when: - os: mac store: steam - /synthrally.exe: + "/synthrally.exe": - when: - bit: 64 os: windows store: steam - /synthrally.x86_64: + "/synthrally.x86_64": - when: - bit: 64 os: linux @@ -522725,17 +524159,17 @@ Synthrun: installDir: Synthrun: {} launch: - /Synthrun.exe: + "/Synthrun.exe": - when: - os: windows store: steam steam: id: 893120 -Synthwave Dream '85: +"Synthwave Dream '85": installDir: SynthwaveDream85: {} launch: - /Synthwave Dream '85.exe: + "/Synthwave Dream '85.exe": - when: - os: windows store: steam @@ -522745,7 +524179,7 @@ Synzzball: installDir: Synzzball: {} launch: - /Synzzball.exe: + "/Synzzball.exe": - when: - bit: 64 os: windows @@ -522759,7 +524193,7 @@ Syren: id: 553320 Syrian Warfare: files: - /SyrianWarfare/profiles: + "/SyrianWarfare/profiles": tags: - config - save @@ -522768,7 +524202,7 @@ Syrian Warfare: installDir: Syrian Warfare: {} launch: - /bin/SyrianWarfare.exe: + "/bin/SyrianWarfare.exe": - when: - os: windows store: steam @@ -522778,7 +524212,7 @@ System Crash: installDir: System Crash: {} launch: - /System Crash.exe: + "/System Crash.exe": - when: - os: windows store: steam @@ -522788,7 +524222,7 @@ System Goose Overload: installDir: System Goose Overload: {} launch: - /System Goose Overload.exe: + "/System Goose Overload.exe": - when: - os: windows store: steam @@ -522796,12 +524230,12 @@ System Goose Overload: id: 672000 System Shock: files: - /CYB.CFG: + "/CYB.CFG": tags: - config when: - os: dos - /DATA: + "/DATA": tags: - save when: @@ -522811,72 +524245,72 @@ System Shock: installDir: SS1: {} launch: - /System Shock Classic.app: + "/System Shock Classic.app": - when: - os: mac store: steam - /dosbox_linux/daum/launch_systemshockcd_game_daum.sh: + "/dosbox_linux/daum/launch_systemshockcd_game_daum.sh": - when: - os: linux store: steam - workingDir: /dosbox_linux/daum - /dosbox_linux/daum/launch_systemshockfd_game_daum.sh: + workingDir: "/dosbox_linux/daum" + "/dosbox_linux/daum/launch_systemshockfd_game_daum.sh": - when: - os: linux store: steam - workingDir: /dosbox_linux/daum - /dosbox_linux/launch_systemshock_config.sh: + workingDir: "/dosbox_linux/daum" + "/dosbox_linux/launch_systemshock_config.sh": - when: - os: linux store: steam - workingDir: /dosbox_linux - /dosbox_linux/launch_systemshockcd_game.sh: + workingDir: "/dosbox_linux" + "/dosbox_linux/launch_systemshockcd_game.sh": - when: - os: linux store: steam - workingDir: /dosbox_linux - /dosbox_linux/launch_systemshockfd_game.sh: + workingDir: "/dosbox_linux" + "/dosbox_linux/launch_systemshockfd_game.sh": - when: - os: linux store: steam - workingDir: /dosbox_linux - /dosbox_windows/daum/dosbox.exe: - - arguments: '-conf dosbox_systemshock.conf -conf dosbox_systemshockcd_launch_windows.conf -noconsole' + workingDir: "/dosbox_linux" + "/dosbox_windows/daum/dosbox.exe": + - arguments: "-conf dosbox_systemshock.conf -conf dosbox_systemshockcd_launch_windows.conf -noconsole" when: - os: windows store: steam - workingDir: /dosbox_windows/daum - - arguments: '-conf dosbox_systemshock.conf -conf dosbox_systemshockfd_launch_windows.conf -noconsole' + workingDir: "/dosbox_windows/daum" + - arguments: "-conf dosbox_systemshock.conf -conf dosbox_systemshockfd_launch_windows.conf -noconsole" when: - os: windows store: steam - workingDir: /dosbox_windows/daum - /dosbox_windows/dosbox.exe: - - arguments: '-conf dosbox_systemshock.conf -conf dosbox_systemshockcd_launch_windows.conf -noconsole' + workingDir: "/dosbox_windows/daum" + "/dosbox_windows/dosbox.exe": + - arguments: "-conf dosbox_systemshock.conf -conf dosbox_systemshockcd_launch_windows.conf -noconsole" when: - os: windows store: steam - workingDir: /dosbox_windows - - arguments: '-conf dosbox_systemshock.conf -conf dosbox_systemshockfd_launch_windows.conf -noconsole' + workingDir: "/dosbox_windows" + - arguments: "-conf dosbox_systemshock.conf -conf dosbox_systemshockfd_launch_windows.conf -noconsole" when: - os: windows store: steam - workingDir: /dosbox_windows - - arguments: '-conf dosbox_systemshock.conf -conf dosbox_systemshock_config_windows.conf -noconsole' + workingDir: "/dosbox_windows" + - arguments: "-conf dosbox_systemshock.conf -conf dosbox_systemshock_config_windows.conf -noconsole" when: - os: windows store: steam - workingDir: /dosbox_windows + workingDir: "/dosbox_windows" steam: id: 410700 System Shock (2023): files: - /Saved Games/Nightdive Studios/SystemShock/Saved/Config/WindowsNoEditor: + "/Saved Games/Nightdive Studios/SystemShock/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /Saved Games/Nightdive Studios/SystemShock/Saved/SaveGames: + "/Saved Games/Nightdive Studios/SystemShock/Saved/SaveGames": tags: - save when: @@ -522891,7 +524325,7 @@ System Shock (2023): installDir: System Shock Remake: {} launch: - /SystemShock.exe: + "/SystemShock.exe": - when: - bit: 64 os: windows @@ -522900,27 +524334,27 @@ System Shock (2023): id: 482400 System Shock 2: files: - /*.cfg: + "/*.cfg": tags: - config when: - os: windows - /Contents/Resources/drive_c/Games/System Shock 2: + "/Contents/Resources/drive_c/Games/System Shock 2": tags: - config when: - os: mac - /save_*: + "/save_*": tags: - save when: - os: windows - /.systemshock2/systemshock2/drive_c/Program Files/SystemShock2/*.cfg: + "/.systemshock2/systemshock2/drive_c/Program Files/SystemShock2/*.cfg": tags: - config when: - os: linux - /.systemshock2/systemshock2/drive_c/Program Files/SystemShock2/save_*: + "/.systemshock2/systemshock2/drive_c/Program Files/SystemShock2/save_*": tags: - save when: @@ -522930,20 +524364,20 @@ System Shock 2: installDir: SS2: {} launch: - /SS2.exe: - - arguments: '-console' + "/SS2.exe": + - arguments: "-console" when: - os: windows store: steam - - arguments: '-fm' + - arguments: "-fm" when: - os: windows store: steam - /System Shock 2.app: + "/System Shock 2.app": - when: - os: mac store: steam - /bin/cxsteamwrapper: + "/bin/cxsteamwrapper": - when: - os: linux store: steam @@ -522952,19 +524386,19 @@ System Shock 2: System Shock 2 Enhanced Edition: gog: id: 1448370350 -'System Shock: Enhanced Edition': +"System Shock: Enhanced Edition": files: - /Nightdive Studios/System Shock EE/kexengine.cfg: + "/Nightdive Studios/System Shock EE/kexengine.cfg": tags: - config when: - os: windows - /Nightdive Studios/System Shock EE/savegame/archive/currsave.dat: + "/Nightdive Studios/System Shock EE/savegame/archive/currsave.dat": tags: - save when: - os: windows - /Nightdive Studios/System Shock EE/savegame/archive/savgam**.dat: + "/Nightdive Studios/System Shock EE/savegame/archive/savgam**.dat": tags: - save when: @@ -522977,11 +524411,11 @@ System Shock 2 Enhanced Edition: installDir: SS1EE: {} launch: - /System Shock.app: + "/System Shock.app": - when: - os: mac store: steam - /sekhmet_x64.exe: + "/sekhmet_x64.exe": - when: - bit: 64 os: windows @@ -522992,11 +524426,11 @@ System Siege: installDir: System Siege: {} launch: - /System Siege.app: + "/System Siege.app": - when: - os: mac store: steam - /System Siege.exe: + "/System Siege.exe": - when: - os: windows store: steam @@ -523011,7 +524445,7 @@ Systematic Immunity: installDir: Systematic Immunity: {} launch: - /Systematic Immunity.exe: + "/Systematic Immunity.exe": - when: - os: windows store: steam @@ -523021,7 +524455,7 @@ Systematic Insanity: installDir: Systematic Insanity: {} launch: - /SI_Enhanced_EX/Systematic Insanity.exe: + "/SI_Enhanced_EX/Systematic Insanity.exe": - when: - bit: 64 os: windows @@ -523035,16 +524469,16 @@ SÆLIG: installDir: SÆLIG: {} launch: - /SAELIG.exe: + "/SAELIG.exe": - when: - bit: 64 os: windows store: steam - /SAELIG.x86_64: + "/SAELIG.x86_64": - when: - os: linux store: steam - /saelig.app/Contents/MacOS/SAELIG: + "/saelig.app/Contents/MacOS/SAELIG": - when: - os: mac store: steam @@ -523052,12 +524486,12 @@ SÆLIG: id: 612720 Sébastien Loeb Rally EVO: files: - /Milestone/SLREVO/Config.ini: + "/Milestone/SLREVO/Config.ini": tags: - save when: - os: windows - /Milestone/SLREVO/Saves: + "/Milestone/SLREVO/Saves": tags: - config when: @@ -523065,17 +524499,17 @@ Sébastien Loeb Rally EVO: installDir: Sébastien Loeb Rally EVO: {} launch: - /SLR.exe: + "/SLR.exe": - when: - bit: 32 store: steam - /SLRX64.exe: + "/SLRX64.exe": - when: - bit: 64 store: steam steam: id: 355060 -'Söldner-X: Himmelsstürmer': +"Söldner-X: Himmelsstürmer": registry: HKEY_CURRENT_USER/Software/SideQuest Studios/SoldnerX: tags: @@ -523085,7 +524519,7 @@ T Simulator: installDir: Tシミュレータ: {} launch: - /Tシミュレーター.exe: + "/Tシミュレーター.exe": - when: - os: windows store: steam @@ -523095,11 +524529,11 @@ T-Kara Puzzles: installDir: T-Kara Puzzles: {} launch: - /TKara: + "/TKara": - when: - os: linux store: steam - /tkara.exe: + "/tkara.exe": - when: - os: windows store: steam @@ -523107,22 +524541,22 @@ T-Kara Puzzles: id: 423220 T-MEK: files: - /TMEK.USR: + "/TMEK.USR": tags: - config when: - os: dos - /TMEKHIGH.BAK: + "/TMEKHIGH.BAK": tags: - save when: - os: dos - /TMEKHIGH.BK*: + "/TMEKHIGH.BK*": tags: - save when: - os: dos - /TMEKHIGH.HGS: + "/TMEKHIGH.HGS": tags: - save when: @@ -523131,15 +524565,15 @@ T-Rex Time Machine: installDir: T-Rex Time Machine: {} launch: - /TRex Time Machine.app/Contents/MacOS/TRex Time Machine: + "/TRex Time Machine.app/Contents/MacOS/TRex Time Machine": - when: - os: mac store: steam - /TRexTimeMachine: + "/TRexTimeMachine": - when: - os: linux store: steam - /TRexTimeMachine.exe: + "/TRexTimeMachine.exe": - when: - os: windows store: steam @@ -523149,8 +524583,8 @@ T.A.P.: installDir: TAP: {} launch: - /TAP.exe: - - arguments: '-popupwindow -windowed' + "/TAP.exe": + - arguments: "-popupwindow -windowed" when: - bit: 64 os: windows @@ -523161,15 +524595,15 @@ T.E.C. 3001: installDir: TEC3001: {} launch: - /TEC3001: + "/TEC3001": - when: - os: linux store: steam - /TEC3001.app: + "/TEC3001.app": - when: - os: mac store: steam - /TEC3001.exe: + "/TEC3001.exe": - when: - os: windows store: steam @@ -523179,25 +524613,25 @@ T3 - Take the Turn: installDir: TakeTheTurn: {} launch: - /T3 - Take The Turn.exe: + "/T3 - Take The Turn.exe": - when: - os: windows store: steam steam: id: 939210 -'TAD: That Alien Dude': +"TAD: That Alien Dude": installDir: TAD That Alien Dude: {} launch: - /game-linux-alpha.x86_64: + "/game-linux-alpha.x86_64": - when: - os: linux store: steam - /game-mac-alpha.app: + "/game-mac-alpha.app": - when: - os: mac store: steam - /game-windows-alpha.exe: + "/game-windows-alpha.exe": - when: - os: windows store: steam @@ -523207,7 +524641,7 @@ TAG WAR: installDir: TAG WAR NonVR: {} launch: - /TAGWAR.exe: + "/TAGWAR.exe": - when: - os: windows store: steam @@ -523222,53 +524656,53 @@ TAKANARIA: installDir: TAKANARIA: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam steam: id: 1005910 -'TAL: Arctic': +"TAL: Arctic": installDir: TAL Arctic: {} launch: - /TALarctic.exe: + "/TALarctic.exe": - when: - store: steam steam: id: 887850 -'TAL: Arctic 2': +"TAL: Arctic 2": installDir: TAL Arctic 2: {} launch: - /TALArctic2.exe: + "/TALArctic2.exe": - when: - store: steam steam: id: 906010 -'TAL: Arctic 3': +"TAL: Arctic 3": installDir: TAL Arctic 3: {} launch: - /TALArctic3.exe: + "/TALArctic3.exe": - when: - store: steam steam: id: 932120 -'TAL: Jungle': +"TAL: Jungle": installDir: TAL Jungle: {} launch: - /TALJungle.exe: + "/TALJungle.exe": - when: - store: steam steam: id: 978210 -'TAL: Wizard''s Adventures': +"TAL: Wizard's Adventures": installDir: - TAL Wizard's Adventures: {} + "TAL Wizard's Adventures": {} launch: - /TAL Wizard's Adventures.exe: + "/TAL Wizard's Adventures.exe": - when: - store: steam steam: @@ -523277,7 +524711,7 @@ TANKNAROK: installDir: Tanknarok: {} launch: - /Tanknarok.exe: + "/Tanknarok.exe": - when: - os: windows store: steam @@ -523287,7 +524721,7 @@ TAOTH - The Adventures of the Herkulez: installDir: TAOTH: {} launch: - /TAOTH.exe: + "/TAOTH.exe": - when: - os: windows store: steam @@ -523297,23 +524731,23 @@ TAPSONIC BOLD: installDir: TAPSONIC BOLD: {} launch: - /Bold.exe: - - arguments: '-force-d3d11-no-singlethreaded' + "/Bold.exe": + - arguments: "-force-d3d11-no-singlethreaded" when: - bit: 64 os: windows store: steam steam: id: 938220 -'TASTEE: Lethal Tactics': +"TASTEE: Lethal Tactics": installDir: Lethal Tactics: {} launch: - /LethalTactics.app: + "/LethalTactics.app": - when: - os: mac store: steam - /LethalTactics.exe: + "/LethalTactics.exe": - when: - os: windows store: steam @@ -523321,12 +524755,12 @@ TAPSONIC BOLD: id: 365190 TAXINAUT: files: - /taxinaut: + "/taxinaut": tags: - config when: - os: windows - /taxinaut/sav: + "/taxinaut/sav": tags: - save when: @@ -523334,7 +524768,7 @@ TAXINAUT: installDir: TAXINAUT: {} launch: - /taxinaut.exe: + "/taxinaut.exe": - when: - store: steam steam: @@ -523343,7 +524777,7 @@ TAYAL: installDir: TAYAL: {} launch: - /TAYAL.exe: + "/TAYAL.exe": - when: - os: windows store: steam @@ -523353,20 +524787,20 @@ TD Heroes: installDir: TD Strategy of Three kingdoms塔防三国: {} launch: - /threeTower.exe: + "/threeTower.exe": - when: - os: windows store: steam steam: id: 1168290 -'TD Overdrive: The Brotherhood of Speed': +"TD Overdrive: The Brotherhood of Speed": files: - /GameSaves: + "/GameSaves": tags: - config when: - os: windows - /GameSaves/*.sav: + "/GameSaves/*.sav": tags: - save when: @@ -523375,17 +524809,17 @@ TD Ultimate: installDir: Tower Defense Ultimate (Restocked): {} launch: - /Tower Defense Ultimate.exe: + "/Tower Defense Ultimate.exe": - when: - os: windows store: steam steam: id: 855980 -'TDP4:Team Battle': +"TDP4:Team Battle": installDir: TDP4Team Battle: {} launch: - /tdp4air.exe: + "/tdp4air.exe": - when: - os: windows store: steam @@ -523395,7 +524829,7 @@ TDP5 Arena 3D: installDir: TDP5 Arena 3D: {} launch: - /tdp5.exe: + "/tdp5.exe": - when: - os: windows store: steam @@ -523408,7 +524842,7 @@ TECHNOSPHERE RELOAD: installDir: TECHNOSPHERE RELOAD: {} launch: - /Technosphere Reload.exe: + "/Technosphere Reload.exe": - when: - bit: 64 os: windows @@ -523419,7 +524853,7 @@ TENET: installDir: TENET: {} launch: - /TENET.exe: + "/TENET.exe": - when: - bit: 64 os: windows @@ -523433,7 +524867,7 @@ TEOT - The End OF Tomorrow: id: 529280 TERA: files: - /Client/S1Game/Config: + "/Client/S1Game/Config": tags: - config when: @@ -523441,7 +524875,7 @@ TERA: installDir: TERA: {} launch: - /launcher.exe: + "/launcher.exe": - when: - os: windows store: steam @@ -523456,25 +524890,25 @@ TERROR SQUID: installDir: TERROR SQUID: {} launch: - /TerrorSquid.app/Contents/MacOS/TERROR SQUID: + "/TerrorSquid.app/Contents/MacOS/TERROR SQUID": - when: - os: mac store: steam - /TerrorSquid.exe: + "/TerrorSquid.exe": - when: - os: windows store: steam steam: id: 1148550 -TERRORhythm TRRT - Music Powered Beat 'em Up: +"TERRORhythm TRRT - Music Powered Beat 'em Up": installDir: Terrorhythm: {} launch: - /TRRT.app: + "/TRRT.app": - when: - os: mac store: steam - /TRRT.exe: + "/TRRT.exe": - when: - os: windows store: steam @@ -523484,11 +524918,11 @@ TERRORhythm TRRT - Music Powered Beat 'em Up: - save steam: id: 752380 -'TETRUX: Online': +"TETRUX: Online": installDir: TETRUX Online: {} launch: - /TETRUXOnline/TETRUXOnline.exe: + "/TETRUXOnline/TETRUXOnline.exe": - when: - os: windows store: steam @@ -523501,30 +524935,30 @@ TEXT: installDir: TEXT: {} launch: - /TEXT.exe: + "/TEXT.exe": - when: - os: windows store: steam steam: id: 954590 -'TFC: The Fertile Crescent': +"TFC: The Fertile Crescent": files: - /AppData/LocalLow/Wield Interactive/The Fertile Crescent/Saves/*.txt: + "/AppData/LocalLow/Wield Interactive/The Fertile Crescent/Saves/*.txt": tags: - save when: - os: windows - /Library/Application Support/Wield Interactive/The Fertile Crescent/Saves/*.txt: + "/Library/Application Support/Wield Interactive/The Fertile Crescent/Saves/*.txt": tags: - save when: - os: mac - /unity3d/Wield Interactive/The Fertile Crescent/Saves/*.txt: + "/unity3d/Wield Interactive/The Fertile Crescent/Saves/*.txt": tags: - save when: - os: linux - /unity3d/Wield Interactive/The Fertile Crescent/prefs: + "/unity3d/Wield Interactive/The Fertile Crescent/prefs": tags: - config when: @@ -523532,16 +524966,16 @@ TEXT: installDir: TFC The Fertile Crescent: {} launch: - /Build/game.app: + "/Build/game.app": - when: - os: mac store: steam - /The Fertile Crescent.exe: + "/The Fertile Crescent.exe": - when: - bit: 64 os: windows store: steam - /game.x86_64: + "/game.x86_64": - when: - bit: 64 os: linux @@ -523552,7 +524986,7 @@ TGV Voyages Train Simulator: installDir: TGVVoyages: {} launch: - /Standalone.exe: + "/Standalone.exe": - when: - store: steam steam: @@ -523561,7 +524995,7 @@ THE ART - Metamorphosis: installDir: THE ART - Metamorphosis: {} launch: - /THE ART - Metamorphosis.exe: + "/THE ART - Metamorphosis.exe": - when: - store: steam steam: @@ -523570,11 +525004,11 @@ THE BALDINA: installDir: THE BALDINA: {} launch: - /THE BALDINA.app: + "/THE BALDINA.app": - when: - os: mac store: steam - /THE BALDINA.exe: + "/THE BALDINA.exe": - when: - os: windows store: steam @@ -523584,7 +525018,7 @@ THE E BALL: installDir: THE E BALL: {} launch: - /THE E BALL.exe: + "/THE E BALL.exe": - when: - os: windows store: steam @@ -523594,11 +525028,11 @@ THE ENIGMA MACHINE: installDir: THE ENIGMA MACHINE: {} launch: - /THE ENIGMA MACHINE.app: + "/THE ENIGMA MACHINE.app": - when: - os: mac store: steam - /THE ENIGMA MACHINE.exe: + "/THE ENIGMA MACHINE.exe": - when: - os: windows store: steam @@ -523613,7 +525047,7 @@ THE FATE OF THE BULLY: installDir: THE FATE OF THE BULLY: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -523628,7 +525062,7 @@ THE NED BALLS: installDir: THE NED BALLS: {} launch: - /THE NED BALLS.exe: + "/THE NED BALLS.exe": - when: - store: steam steam: @@ -523637,7 +525071,7 @@ THE UNCLEARNESS: installDir: THE UNCLEARNESS: {} launch: - /UNCLEARNESS.exe: + "/UNCLEARNESS.exe": - when: - bit: 64 os: windows @@ -523653,7 +525087,7 @@ TILE: installDir: TILE: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -523663,7 +525097,7 @@ TILTit: installDir: TILTit: {} launch: - /TILTit.exe: + "/TILTit.exe": - when: - os: windows store: steam @@ -523673,16 +525107,16 @@ TIME BREAKER: installDir: TimeBreaker: {} launch: - /TimeBreaker.exe: - - arguments: '-dx12' + "/TimeBreaker.exe": + - arguments: "-dx12" when: - os: windows store: steam - - arguments: '-dx11' + - arguments: "-dx11" when: - os: windows store: steam - - arguments: '-vulkan' + - arguments: "-vulkan" when: - os: windows store: steam @@ -523692,32 +525126,32 @@ TIMEframe: installDir: TIMEframe: {} launch: - /TIMEframe.app: + "/TIMEframe.app": - when: - os: mac store: steam - /TIMEframe.exe: + "/TIMEframe.exe": - when: - os: windows store: steam steam: id: 340270 -'TIRELESS: Prepare for the Adrenaline': +"TIRELESS: Prepare for the Adrenaline": steam: id: 959800 TIS-100: files: - /Library/Application Support/TIS-100: + "/Library/Application Support/TIS-100": tags: - save when: - os: mac - /My Games/TIS-100: + "/My Games/TIS-100": tags: - save when: - os: windows - /TIS-100: + "/TIS-100": tags: - save when: @@ -523727,20 +525161,20 @@ TIS-100: installDir: TIS-100: {} launch: - /TIS-100.app: + "/TIS-100.app": - when: - os: mac store: steam - /tis100.exe: + "/tis100.exe": - when: - os: windows store: steam - /tis100.x86: + "/tis100.x86": - when: - bit: 32 os: linux store: steam - /tis100.x86_64: + "/tis100.x86_64": - when: - bit: 64 os: linux @@ -523751,7 +525185,7 @@ TITAN HUNTER: installDir: TITAN HUNTER: {} launch: - /TITAN HUNTER.exe: + "/TITAN HUNTER.exe": - when: - os: windows store: steam @@ -523761,7 +525195,7 @@ TITANIC Shipwreck Exploration: installDir: TITANIC Shipwreck Exploration: {} launch: - /TitanicDesktop_1.0.exe: + "/TitanicDesktop_1.0.exe": - when: - bit: 64 os: windows @@ -523772,11 +525206,11 @@ TKKG - Die Feuerprobe: installDir: TKKG - Die Feuerprobe: {} launch: - /TKKG - Die Feuerprobe.app: + "/TKKG - Die Feuerprobe.app": - when: - os: mac store: steam - /tkkg1.exe: + "/tkkg1.exe": - when: - os: windows store: steam @@ -523789,20 +525223,20 @@ TKO: TKO: {} steam: id: 1297550 -'TMM: Entourage': +"TMM: Entourage": installDir: TMM Entourage: {} launch: - /TMMEntourage64.app: + "/TMMEntourage64.app": - when: - os: mac store: steam - /TMMEntourage64.exe: + "/TMMEntourage64.exe": - when: - bit: 64 os: windows store: steam - /TMMEntourage64.x86_64: + "/TMMEntourage64.x86_64": - when: - os: linux store: steam @@ -523810,12 +525244,12 @@ TKO: id: 556310 TMNT: files: - /TMNTConfig.ini: + "/TMNTConfig.ini": tags: - config when: - os: windows - /TMNT: + "/TMNT": tags: - save when: @@ -523823,7 +525257,7 @@ TMNT: installDir: Teenage Mutant Ninja Turtles: {} launch: - /TMNT.exe: + "/TMNT.exe": - when: - store: steam steam: @@ -523832,7 +525266,7 @@ TNN Motorsports Hardcore TR: installDir: TNN Motorsports Hardcore TR: {} launch: - /TNN Motorsports Hardcore TR.exe: + "/TNN Motorsports Hardcore TR.exe": - when: - os: windows store: steam @@ -523841,16 +525275,16 @@ TNN Motorsports Hardcore TR: TNT!: steam: id: 1086430 -'TO4: Tactical Operations': +"TO4: Tactical Operations": installDir: TO4: {} launch: - /TO.exe: + "/TO.exe": - when: - bit: 64 os: windows store: steam - /TO.sh: + "/TO.sh": - when: - bit: 64 os: linux @@ -523859,48 +525293,48 @@ TNT!: id: 690980 TOCA 2 Touring Cars: files: - /Game/TOURCARS.CFG: + "/Game/TOURCARS.CFG": tags: - config when: - os: windows - /Game/loads: + "/Game/loads": tags: - save when: - os: windows TOCA Race Driver: files: - /pchardwareconfig.ini: + "/pchardwareconfig.ini": tags: - config when: - os: windows - /save: + "/save": tags: - save when: - os: windows TOCA Race Driver 2: files: - /SaveData_*_*.rd2: + "/SaveData_*_*.rd2": tags: - save when: - os: windows - /pchardwareconfig.ini: + "/pchardwareconfig.ini": tags: - config when: - os: windows TOCA Race Driver 3: files: - /savedata: + "/savedata": tags: - save when: - os: windows - /savedata/pchardwareconfig.ini: + "/savedata/pchardwareconfig.ini": tags: - config when: @@ -523910,52 +525344,52 @@ TOCA Race Driver 3: installDir: Race Driver 3: {} launch: - /RD3.exe: + "/RD3.exe": - when: - store: steam steam: id: 11500 TOCA Touring Car Championship: files: - /saves.dat: + "/saves.dat": tags: - save when: - os: windows TOEM: files: - /AppData/LocalLow/Something We Made/TOEM/Save: + "/AppData/LocalLow/Something We Made/TOEM/Save": tags: - save when: - os: windows - /AppData/LocalLow/Something We Made/TOEM/Save/Settings.json: + "/AppData/LocalLow/Something We Made/TOEM/Save/Settings.json": tags: - config when: - os: windows - /Library/Application Support/se.SomethingWeMade.TOEM/Save: + "/Library/Application Support/se.SomethingWeMade.TOEM/Save": tags: - save when: - os: mac - /Library/Application Support/se.SomethingWeMade.TOEM/Save/Settings.json: + "/Library/Application Support/se.SomethingWeMade.TOEM/Save/Settings.json": tags: - config when: - os: mac - /Packages/SomethingWeMade.TOEM_3b9evzcrg4em8/SystemAppData/wgs: + "/Packages/SomethingWeMade.TOEM_3b9evzcrg4em8/SystemAppData/wgs": tags: - save when: - os: windows store: microsoft - /unity3d/Something We Made/TOEM/Save: + "/unity3d/Something We Made/TOEM/Save": tags: - save when: - os: linux - /unity3d/Something We Made/TOEM/Save/Settings.json: + "/unity3d/Something We Made/TOEM/Save/Settings.json": tags: - config when: @@ -523968,11 +525402,11 @@ TOEM: installDir: TOEM: {} launch: - /TOEM.app: + "/TOEM.app": - when: - os: mac store: steam - /TOEM.exe: + "/TOEM.exe": - when: - os: windows store: steam @@ -523982,7 +525416,7 @@ TOGETHER BnB: installDir: TOGETHER BnB: {} launch: - /TogetherBNB.exe: + "/TogetherBNB.exe": - when: - os: windows store: steam @@ -523992,7 +525426,7 @@ TOK: installDir: TOK: {} launch: - /TOK.exe: + "/TOK.exe": - when: - os: windows store: steam @@ -524002,7 +525436,7 @@ TOK 2: installDir: TOK 2: {} launch: - /TOK2.exe: + "/TOK2.exe": - when: - os: windows store: steam @@ -524012,24 +525446,24 @@ TOK HARDCORE: installDir: TOK HARDCORE: {} launch: - /TOKH.exe: + "/TOKH.exe": - when: - os: windows store: steam steam: id: 1053250 -'TOKOYO: The Tower of Perpetuity': +"TOKOYO: The Tower of Perpetuity": installDir: Tokoyo no Tou: {} launch: - /TOKOYO NO TOU.exe: + "/TOKOYO NO TOU.exe": - when: - store: steam steam: id: 1393420 TORCS: files: - /torcs/config: + "/torcs/config": tags: - config when: @@ -524046,14 +525480,14 @@ TOREj 3: TOREj 4: steam: id: 702400 -'TOREj: Red Cubes': +"TOREj: Red Cubes": steam: id: 706740 TORINTO: installDir: tw: {} launch: - /TORINTO.exe: + "/TORINTO.exe": - when: - os: windows store: steam @@ -524063,7 +525497,7 @@ TOTM: installDir: TOTM: {} launch: - /Totem.exe: + "/Totem.exe": - when: - bit: 64 os: windows @@ -524074,7 +525508,7 @@ TOTOBALL: installDir: TOTOBALL: {} launch: - /game.exe: + "/game.exe": - when: - bit: 64 os: windows @@ -524090,7 +525524,7 @@ TRACKER《追踪者》: installDir: TRACKER: {} launch: - /TRACKER.exe: + "/TRACKER.exe": - when: - os: windows store: steam @@ -524105,27 +525539,27 @@ TRANSIT: installDir: TRANSIT: {} launch: - /Apocars.exe: + "/Apocars.exe": - when: - os: windows store: steam steam: id: 1003150 -'TRE HUN: Unity-Chan x Action': +"TRE HUN: Unity-Chan x Action": installDir: TREHUN: {} launch: - /UCAct.exe: + "/UCAct.exe": - when: - os: windows store: steam steam: id: 1010480 -'TREE HOUSE : AVOCADO MAYHEM': +"TREE HOUSE : AVOCADO MAYHEM": installDir: TREE HOUSE AVOCADO MAYHEM: {} launch: - /TH_AVOCADO_MAYHEM.exe: + "/TH_AVOCADO_MAYHEM.exe": - when: - os: windows store: steam @@ -524133,46 +525567,41 @@ TRANSIT: id: 1127520 TRI: files: - /.config/unity3d/Rat King Entertainment/TRI/prefs: + "/.config/unity3d/Rat King Entertainment/TRI/prefs": tags: - config when: - os: linux - /.config/unity3d/Rat King Entertainment/TRI/saves: + "/.config/unity3d/Rat King Entertainment/TRI/saves": tags: - save when: - os: linux - /AppData/LocalLow/Rat King Entertainment/TRI/saves: + "/AppData/LocalLow/Rat King Entertainment/TRI/saves": tags: - save when: - os: windows - /Library/Application Support/unity.Rat King Entertainment.TRI/saves: - tags: - - save - when: - - os: mac gog: id: 1207666243 installDir: TRI: {} launch: - /tri.app: + "/tri.app": - when: - bit: 64 os: mac store: steam - /tri.exe: + "/tri.exe": - when: - os: windows store: steam - /tri.x86: + "/tri.x86": - when: - bit: 32 os: linux store: steam - /tri.x86_64: + "/tri.x86_64": - when: - bit: 64 os: linux @@ -524187,7 +525616,7 @@ TRI.DEFENDER: installDir: TRI.DEFENDER: {} launch: - /TriDefender.exe: + "/TriDefender.exe": - when: - os: windows store: steam @@ -524197,16 +525626,16 @@ TRIOS - lofi beats / numbers to chill to: installDir: TRIOS: {} launch: - /TRIOS.app: + "/TRIOS.app": - when: - os: mac store: steam - /TRIOS.exe: + "/TRIOS.exe": - when: - bit: 64 os: windows store: steam - /TRIOS.x86: + "/TRIOS.x86": - when: - bit: 64 os: linux @@ -524217,7 +525646,7 @@ TRIP: installDir: TRIP: {} launch: - /Trip.exe: + "/Trip.exe": - when: - os: windows store: steam @@ -524227,11 +525656,11 @@ TRIP Steam Edition: installDir: TRIP: {} launch: - /TRIP_SE.app: + "/TRIP_SE.app": - when: - os: mac store: steam - /trip.exe: + "/trip.exe": - when: - os: windows store: steam @@ -524241,7 +525670,7 @@ TRIUMPH ACTION: installDir: TRIUMPHACTION: {} launch: - /WindowsNoEditor/TRIUMPHACTION/Binaries/Win64/MMO-Win64-Shipping.exe: + "/WindowsNoEditor/TRIUMPHACTION/Binaries/Win64/MMO-Win64-Shipping.exe": - when: - bit: 64 os: windows @@ -524252,19 +525681,19 @@ TRIZEAL Remix: installDir: TRIZEAL Remix: {} launch: - /TriZeal.exe: + "/TriZeal.exe": - when: - store: steam steam: id: 465070 TRON RUN/r: files: - /TronGame/Saved/Config/WindowsNoEditor: + "/TronGame/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /TronGame/Saved/SaveGames: + "/TronGame/Saved/SaveGames": tags: - save when: @@ -524272,7 +525701,7 @@ TRON RUN/r: installDir: Tron Escape: {} launch: - /TronGame.exe: + "/TronGame.exe": - when: - os: windows store: steam @@ -524287,7 +525716,7 @@ TRYON: installDir: TRYON: {} launch: - /TRYON.exe: + "/TRYON.exe": - when: - os: windows store: steam @@ -524298,11 +525727,11 @@ TSA Frisky: TSA Frisky: {} steam: id: 805150 -'TSM3:Gemini Strategy/双子战纪': +"TSM3:Gemini Strategy/双子战纪": installDir: TSM3Gemini Strategy双子战纪: {} launch: - /game.exe: + "/game.exe": - when: - bit: 64 os: windows @@ -524311,7 +525740,7 @@ TSA Frisky: id: 1155440 TT Isle of Man: files: - /My Games/TouristTrophy: + "/My Games/TouristTrophy": tags: - config when: @@ -524320,9 +525749,9 @@ TT Isle of Man: TT_IOM: {} steam: id: 626610 -'TT Isle of Man: Ride on the Edge 2': +"TT Isle of Man: Ride on the Edge 2": files: - /My Games/TT Isle of Man 2: + "/My Games/TT Isle of Man 2": tags: - config when: @@ -524330,17 +525759,17 @@ TT Isle of Man: installDir: TT Isle of Man 2: {} launch: - /TT2.exe: + "/TT2.exe": - when: - os: windows store: steam steam: id: 1082180 -'TT Isle of Man: Ride on the Edge 3': +"TT Isle of Man: Ride on the Edge 3": installDir: TT3: {} launch: - /TT3.exe: + "/TT3.exe": - when: - bit: 64 os: windows @@ -524349,7 +525778,7 @@ TT Isle of Man: id: 1924170 TTV2: files: - /TTV2: + "/TTV2": tags: - save when: @@ -524357,11 +525786,11 @@ TTV2: installDir: TTV2: {} launch: - /TTV2.exe: + "/TTV2.exe": - when: - os: windows store: steam - /run.sh: + "/run.sh": - when: - os: linux store: steam @@ -524371,7 +525800,7 @@ TTV3: installDir: TTV3: {} launch: - /TTV3.exe: + "/TTV3.exe": - when: - os: windows store: steam @@ -524381,7 +525810,7 @@ TUBWT: installDir: TUBWT: {} launch: - /TUBWT.exe: + "/TUBWT.exe": - when: - bit: 64 os: windows @@ -524392,11 +525821,11 @@ TUTUTUTU - Tea party: installDir: TUTUTUTU - Tea party: {} launch: - /TUTUTUTU - Tea party.exe: + "/TUTUTUTU - Tea party.exe": - when: - os: windows store: steam - /TeaParty_Mac.app/Contents/MacOS/TeaParty_Mac: + "/TeaParty_Mac.app/Contents/MacOS/TeaParty_Mac": - when: - os: mac store: steam @@ -524406,7 +525835,7 @@ TV Trouble: installDir: TV Trouble: {} launch: - /TVTrouble.exe: + "/TVTrouble.exe": - when: - os: windows store: steam @@ -524416,20 +525845,20 @@ TV189: installDir: TV189: {} launch: - /TV189.exe: + "/TV189.exe": - when: - store: steam steam: id: 976230 TY the Tasmanian Tiger: files: - /userdata//411960/remote: + "/userdata//411960/remote": tags: - save when: - os: windows store: steam - /Ty the Tasmanian Tiger: + "/Ty the Tasmanian Tiger": tags: - config when: @@ -524437,11 +525866,11 @@ TY the Tasmanian Tiger: installDir: TY the Tasmanian Tiger: {} launch: - /TY: + "/TY": - when: - os: linux store: steam - /TY.exe: + "/TY.exe": - when: - os: windows store: steam @@ -524449,13 +525878,13 @@ TY the Tasmanian Tiger: id: 411960 TY the Tasmanian Tiger 2: files: - /userdata//411970/remote: + "/userdata//411970/remote": tags: - save when: - os: windows store: steam - /Ty the Tasmanian Tiger 2: + "/Ty the Tasmanian Tiger 2": tags: - config when: @@ -524463,7 +525892,7 @@ TY the Tasmanian Tiger 2: installDir: TY the Tasmanian Tiger 2: {} launch: - /TY2.exe: + "/TY2.exe": - when: - os: windows store: steam @@ -524471,13 +525900,13 @@ TY the Tasmanian Tiger 2: id: 411970 TY the Tasmanian Tiger 3: files: - /userdata//411980/remote: + "/userdata//411980/remote": tags: - save when: - os: windows store: steam - /Ty the Tasmanian Tiger 3: + "/Ty the Tasmanian Tiger 3": tags: - config when: @@ -524485,7 +525914,7 @@ TY the Tasmanian Tiger 3: installDir: TY the Tasmanian Tiger 3: {} launch: - /TY3.exe: + "/TY3.exe": - when: - os: windows store: steam @@ -524493,14 +525922,14 @@ TY the Tasmanian Tiger 3: id: 411980 TY the Tasmanian Tiger 4: files: - /userdata//287840/remote: + "/userdata//287840/remote": tags: - config - save when: - os: windows store: steam - /Packages/Microsoft.TYtheTasmanianTiger_8wekyb3d8bbwe: + "/Packages/Microsoft.TYtheTasmanianTiger_8wekyb3d8bbwe": tags: - config - save @@ -524510,7 +525939,7 @@ TY the Tasmanian Tiger 4: installDir: TY the Tasmanian Tiger 4: {} launch: - /TY4.exe: + "/TY4.exe": - when: - bit: 32 os: windows @@ -524519,17 +525948,17 @@ TY the Tasmanian Tiger 4: id: 287840 Table Ball: files: - /.config/unity3d/Lockyz Dev/Table Ball: + "/.config/unity3d/Lockyz Dev/Table Ball": tags: - save when: - os: linux - /Library/Application Support/Lockyz Dev/Table Ball: + "/Library/Application Support/Lockyz Dev/Table Ball": tags: - save when: - os: mac - /LocalLow/Lockyz Dev/Table Ball: + "/LocalLow/Lockyz Dev/Table Ball": tags: - save when: @@ -524537,15 +525966,15 @@ Table Ball: installDir: Table Ball: {} launch: - /Table Ball.app: + "/Table Ball.app": - when: - os: mac store: steam - /Table Ball.exe: + "/Table Ball.exe": - when: - os: windows store: steam - /Table Ball.x86_64: + "/Table Ball.x86_64": - when: - os: linux store: steam @@ -524555,7 +525984,7 @@ Table Football Pro: installDir: Table Football Pro: {} launch: - /football.exe: + "/football.exe": - when: - os: windows store: steam @@ -524574,7 +526003,7 @@ Table Manners: installDir: Table Manners: {} launch: - /TableManners.exe: + "/TableManners.exe": - when: - os: windows store: steam @@ -524585,9 +526014,9 @@ Table Tennis VR: Table Tennis VR: {} steam: id: 495060 -'Table Top Racing: World Tour': +"Table Top Racing: World Tour": files: - /AppData/LocalLow/Playrise Digital/Table Top Racing World Tour: + "/AppData/LocalLow/Playrise Digital/Table Top Racing World Tour": tags: - save when: @@ -524595,7 +526024,7 @@ Table Tennis VR: installDir: TTR World Tour: {} launch: - /TTRWorldTour.exe: + "/TTRWorldTour.exe": - when: - os: windows store: steam @@ -524609,7 +526038,7 @@ TableTop Cricket: installDir: TableTop Cricket: {} launch: - /tdcricket.exe: + "/tdcricket.exe": - when: - os: windows store: steam @@ -524619,20 +526048,20 @@ TableTop Soccer: installDir: TableTop Soccer: {} launch: - /TableTopSoccer.app/Contents/MacOS/TableTopSoccer: + "/TableTopSoccer.app/Contents/MacOS/TableTopSoccer": - when: - os: mac store: steam - /TableTopSoccer.exe: + "/TableTopSoccer.exe": - when: - os: windows store: steam - /TableTopSoccer.x86: + "/TableTopSoccer.x86": - when: - bit: 32 os: linux store: steam - /TableTopSoccer.x86_64: + "/TableTopSoccer.x86_64": - when: - bit: 64 os: linux @@ -524651,8 +526080,8 @@ Tabletop Gods: installDir: Tabletop Gods: {} launch: - /ttg.exe: - - arguments: '-NONVR -logFile log.log' + "/ttg.exe": + - arguments: "-NONVR -logFile log.log" when: - os: windows store: steam @@ -524660,17 +526089,17 @@ Tabletop Gods: id: 858860 Tabletop Playground: files: - /TabletopPlayground/Saved/Config: + "/TabletopPlayground/Saved/Config": tags: - config when: - os: windows - /TabletopPlayground/Saved/SavedStates/*.vts: + "/TabletopPlayground/Saved/SavedStates/*.vts": tags: - save when: - os: windows - /TabletopPlayground/Saved/StoredObjects/*.tpo: + "/TabletopPlayground/Saved/StoredObjects/*.tpo": tags: - save when: @@ -524678,17 +526107,17 @@ Tabletop Playground: installDir: TabletopPlayground: {} launch: - /Tabletop Playground.app: + "/Tabletop Playground.app": - when: - os: mac store: steam - /TabletopPlayground.exe: - - arguments: '-nohmd' + "/TabletopPlayground.exe": + - arguments: "-nohmd" when: - bit: 64 os: windows store: steam - /TabletopPlayground.sh: + "/TabletopPlayground.sh": - when: - os: linux store: steam @@ -524696,34 +526125,34 @@ Tabletop Playground: id: 838410 Tabletop Simulator: files: - /Tabletop Simulator_Data/Mods: + "/Tabletop Simulator_Data/Mods": tags: - save when: - os: windows - /.local/share/Tabletop Simulator: + "/.local/share/Tabletop Simulator": tags: - config - save when: - os: linux - /Library/Tabletop Simulator: + "/Library/Tabletop Simulator": tags: - config - save when: - os: mac - /My Games/Tabletop Simulator/Graphics.json: + "/My Games/Tabletop Simulator/Graphics.json": tags: - config when: - os: windows - /My Games/Tabletop Simulator/Mods: + "/My Games/Tabletop Simulator/Mods": tags: - save when: - os: windows - /My Games/Tabletop Simulator/Saves: + "/My Games/Tabletop Simulator/Saves": tags: - save when: @@ -524783,23 +526212,23 @@ Tabletop Simulator: installDir: Tabletop Simulator: {} launch: - /Tabletop Simulator.app: + "/Tabletop Simulator.app": - when: - os: mac store: steam - - arguments: '-force-metal' + - arguments: "-force-metal" when: - os: mac store: steam - /Tabletop Simulator.exe: + "/Tabletop Simulator.exe": - when: - os: windows store: steam - - arguments: '-force-glcore' + - arguments: "-force-glcore" when: - os: windows store: steam - /Tabletop Simulator.x86_64: + "/Tabletop Simulator.x86_64": - when: - bit: 64 os: linux @@ -524810,19 +526239,19 @@ Tabletopia: installDir: Tabletopia: {} launch: - /Tabletopia.app: + "/Tabletopia.app": - when: - os: mac store: steam - /Tabletopia.exe: + "/Tabletopia.exe": - when: - os: windows store: steam steam: id: 402560 -'Taboos: Cracks': +"Taboos: Cracks": files: - /AppData/LocalLow/DSGame/Taboos Cracks/*.sav: + "/AppData/LocalLow/DSGame/Taboos Cracks/*.sav": tags: - save when: @@ -524830,17 +526259,17 @@ Tabletopia: installDir: TaboosCracks: {} launch: - /TaboosCracks.exe: + "/TaboosCracks.exe": - when: - os: windows store: steam steam: id: 1060670 -'Taboos: Flower': +"Taboos: Flower": installDir: TaboosFlower: {} launch: - /TaboosFlower.exe: + "/TaboosFlower.exe": - when: - os: windows store: steam @@ -524850,20 +526279,20 @@ Tachyon Project: installDir: Tachyon Project: {} launch: - /Tachyon.exe: + "/Tachyon.exe": - when: - os: windows store: steam steam: id: 385860 -'Tachyon: The Fringe': +"Tachyon: The Fringe": files: - /Tachyon.cfg: + "/Tachyon.cfg": tags: - config when: - os: windows - /player00.sav: + "/player00.sav": tags: - save when: @@ -524873,7 +526302,7 @@ Tachyon Project: installDir: Tachyon The Fringe: {} launch: - /Tachyon.exe: + "/Tachyon.exe": - when: - store: steam steam: @@ -524882,7 +526311,7 @@ Taco Gun: installDir: Taco Gun: {} launch: - /Taco Gun.exe: + "/Taco Gun.exe": - when: - os: windows store: steam @@ -524892,11 +526321,11 @@ Taco Tom 2: installDir: Taco Tom 2: {} launch: - /Taco Tom 2.app/Contents/MacOS/nwjs: + "/Taco Tom 2.app/Contents/MacOS/nwjs": - when: - os: mac store: steam - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -524906,11 +526335,11 @@ Taco Truck Madness: installDir: Taco Truck Madness: {} launch: - /Taco Truck Madness.app: + "/Taco Truck Madness.app": - when: - os: mac store: steam - /Taco Truck Madness.exe: + "/Taco Truck Madness.exe": - when: - bit: 64 os: windows @@ -524924,33 +526353,33 @@ TacoFace: id: 570060 Tacoma: files: - /AppData/Local/Packages/Fullbright.Tacoma_rb9a42dn7yypw/SystemAppData/wgs: + "/AppData/Local/Packages/Fullbright.Tacoma_rb9a42dn7yypw/SystemAppData/wgs": tags: - save when: - os: windows store: microsoft - /AppData/LocalLow/Fullbright/Tacoma: + "/AppData/LocalLow/Fullbright/Tacoma": tags: - save when: - os: windows - /AppData/LocalLow/Fullbright/Tacoma/TacomaOptions.json: + "/AppData/LocalLow/Fullbright/Tacoma/TacomaOptions.json": tags: - config when: - os: windows - /unity3d/Fullbright/Tacoma/TacomaOptions.json: + "/unity3d/Fullbright/Tacoma/TacomaOptions.json": tags: - config when: - os: linux - /unity3d/Fullbright/Tacoma/TacomaSave*.json: + "/unity3d/Fullbright/Tacoma/TacomaSave*.json": tags: - save when: - os: linux - /unity3d/Fullbright/Tacoma/prefs: + "/unity3d/Fullbright/Tacoma/prefs": tags: - config when: @@ -524960,17 +526389,17 @@ Tacoma: installDir: Tacoma: {} launch: - /Launch.sh: + "/Launch.sh": - when: - bit: 64 os: linux store: steam - /Tacoma.app: + "/Tacoma.app": - when: - bit: 64 os: mac store: steam - /Tacoma.exe: + "/Tacoma.exe": - when: - bit: 64 os: windows @@ -524983,7 +526412,7 @@ Tacoma: id: 343860 Tacopocalypse: files: - /Tacopocalypse/Saved/Config/WindowsNoEditor: + "/Tacopocalypse/Saved/Config/WindowsNoEditor": tags: - config when: @@ -524991,17 +526420,17 @@ Tacopocalypse: installDir: Tacopocalypse: {} launch: - /Tacopocalypse/Binaries/Linux/Tacopocalypse-Linux-Shipping: - - arguments: '-opengl4' + "/Tacopocalypse/Binaries/Linux/Tacopocalypse-Linux-Shipping": + - arguments: "-opengl4" when: - os: linux store: steam - /Tacopocalypse/Binaries/Mac/Tacopocalypse-Mac-Shipping.app: - - arguments: '-opengl4' + "/Tacopocalypse/Binaries/Mac/Tacopocalypse-Mac-Shipping.app": + - arguments: "-opengl4" when: - os: mac store: steam - /Tacopocalypse/Binaries/Win32/Tacopocalypse-Win32-Shipping.exe: + "/Tacopocalypse/Binaries/Win32/Tacopocalypse-Win32-Shipping.exe": - when: - os: windows store: steam @@ -525011,10 +526440,10 @@ Tactera: installDir: Tactera: {} launch: - /TacteraRift7.exe: + "/TacteraRift7.exe": - when: - store: steam - /Tactera_NonVR.exe: + "/Tactera_NonVR.exe": - when: - os: windows store: steam @@ -525024,7 +526453,7 @@ Tactic Code: installDir: Tactic Code: {} launch: - /Tactic Code.exe: + "/Tactic Code.exe": - when: - os: windows store: steam @@ -525034,7 +526463,7 @@ Tactical: installDir: TACTICAL: {} launch: - /TACTICAL.exe: + "/TACTICAL.exe": - when: - os: windows store: steam @@ -525052,7 +526481,7 @@ Tactical Chronicle: installDir: Tactical Chronicle: {} launch: - /DirTest.exe: + "/DirTest.exe": - when: - store: steam steam: @@ -525061,7 +526490,7 @@ Tactical Control: installDir: Tactical Control: {} launch: - /TacticalControl.exe: + "/TacticalControl.exe": - when: - os: windows store: steam @@ -525071,7 +526500,7 @@ Tactical Craft Online: installDir: Tactical Craft Online: {} launch: - /TC.exe: + "/TC.exe": - when: - os: windows store: steam @@ -525084,14 +526513,14 @@ Tactical Genius: installDir: Tactical Genius: {} launch: - /TacticalGenius.exe: + "/TacticalGenius.exe": - when: - store: steam steam: id: 377150 Tactical Intervention: files: - /TacticalIntervention/tacint/cfg: + "/TacticalIntervention/tacint/cfg": tags: - config when: @@ -525099,11 +526528,11 @@ Tactical Intervention: installDir: TacticalIntervention: {} launch: - /bin/tacint.exe: + "/bin/tacint.exe": - when: - os: windows store: steam - /tacint_osx: + "/tacint_osx": - when: - os: mac store: steam @@ -525113,7 +526542,7 @@ Tactical Mind: installDir: Tactical Mind: {} launch: - /TacticalMind.exe: + "/TacticalMind.exe": - when: - os: windows store: steam @@ -525123,11 +526552,11 @@ Tactical Monsters Rumble Arena: installDir: Tactical Monsters: {} launch: - /Tactical Monsters.app/Contents/MacOS/Tactical Monsters: + "/Tactical Monsters.app/Contents/MacOS/Tactical Monsters": - when: - os: mac store: steam - /Tactical Monsters.exe: + "/Tactical Monsters.exe": - when: - os: windows store: steam @@ -525137,7 +526566,7 @@ Tactical Nexus: installDir: Tactical Nexus: {} launch: - /tacticalnexus.exe: + "/tacticalnexus.exe": - when: - os: windows store: steam @@ -525147,7 +526576,7 @@ Tactical Operations: installDir: Tactical Operations: {} launch: - /Tactical Ops.exe: + "/Tactical Ops.exe": - when: - os: windows store: steam @@ -525157,31 +526586,31 @@ Tactical Soccer The New Season: installDir: Tactical Soccer The New Season: {} launch: - /TacticalSoccerTheNewSeason.app: + "/TacticalSoccerTheNewSeason.app": - when: - os: mac store: steam - /TacticalSoccerTheNewSeason.exe: + "/TacticalSoccerTheNewSeason.exe": - when: - os: windows store: steam steam: id: 400380 -'Tactics & Strategy Master:Princess of Holy Light': +"Tactics & Strategy Master:Princess of Holy Light": installDir: TSM2: {} launch: - /sangirl.exe: + "/sangirl.exe": - when: - os: windows store: steam steam: id: 950370 -'Tactics 2: War': +"Tactics 2: War": installDir: Tactics 2 war: {} launch: - /myGame1.exe: + "/myGame1.exe": - when: - os: windows store: steam @@ -525194,41 +526623,41 @@ Tactics Maiden Remastered: installDir: Tactics Maiden: {} launch: - /TacticsMaiden.app/Contents/MacOS/TacticsMaiden: + "/TacticsMaiden.app/Contents/MacOS/TacticsMaiden": - when: - os: mac store: steam - /TacticsMaiden.exe: + "/TacticsMaiden.exe": - when: - os: windows store: steam - /TacticsMaiden.x86: - - arguments: '-show-screen-selector' + "/TacticsMaiden.x86": + - arguments: "-show-screen-selector" when: - bit: 32 os: linux store: steam - /TacticsMaiden.x86_64: - - arguments: '-show-screen-selector' + "/TacticsMaiden.x86_64": + - arguments: "-show-screen-selector" when: - bit: 64 os: linux store: steam steam: id: 835710 -'Tactics Ogre: Reborn': +"Tactics Ogre: Reborn": files: - /My Games/Tactics Ogre Reborn/Steam//GAME-*.SAV: + "/My Games/Tactics Ogre Reborn/Steam//GAME-*.SAV": tags: - save when: - os: windows - /My Games/Tactics Ogre Reborn/Steam//SYSTEM-00000000.SAV: + "/My Games/Tactics Ogre Reborn/Steam//SYSTEM-00000000.SAV": tags: - save when: - os: windows - /My Games/Tactics Ogre Reborn/Steam//config.ini: + "/My Games/Tactics Ogre Reborn/Steam//config.ini": tags: - config when: @@ -525236,7 +526665,7 @@ Tactics Maiden Remastered: installDir: Tactics Ogre Reborn: {} launch: - /Tactics Ogre Reborn.exe: + "/Tactics Ogre Reborn.exe": - when: - bit: 64 os: windows @@ -525247,28 +526676,28 @@ Tactics Rogue: installDir: Tactics Rogue: {} launch: - /TacticsRogue.exe: + "/TacticsRogue.exe": - when: - bit: 64 os: windows store: steam steam: id: 934250 -'Tactics V: "Obsidian Brigade"': +"Tactics V: \"Obsidian Brigade\"": installDir: Tactics V: {} launch: - /TacticsV.app/Contents/MacOS/TacticsV: + "/TacticsV.app/Contents/MacOS/TacticsV": - when: - os: mac store: steam steam: id: 962150 -'Tactics: Bludgeons Blessing': +"Tactics: Bludgeons Blessing": installDir: Tactics Bludgeons Blessing: {} launch: - /myGame1.exe: + "/myGame1.exe": - when: - os: windows store: steam @@ -525278,7 +526707,7 @@ Tactikk: installDir: Tactikk: {} launch: - /Tactikk.exe: + "/Tactikk.exe": - when: - store: steam steam: @@ -525287,7 +526716,7 @@ Tadpole Swimmer: installDir: Tadpole Swimmer: {} launch: - /Tadpole Swimmer.exe: + "/Tadpole Swimmer.exe": - when: - os: windows store: steam @@ -525295,12 +526724,12 @@ Tadpole Swimmer: id: 945620 Tadpole Treble: files: - /Tadpole Treble win_Data: + "/Tadpole Treble win_Data": tags: - save when: - os: windows - /steam_api.dll: + "/steam_api.dll": tags: - config when: @@ -525308,21 +526737,21 @@ Tadpole Treble: installDir: Tadpole Treble: {} launch: - /Tadpole Treble lin.x86: + "/Tadpole Treble lin.x86": - when: - bit: 32 os: linux store: steam - /Tadpole Treble lin.x86_64: + "/Tadpole Treble lin.x86_64": - when: - bit: 64 os: linux store: steam - /Tadpole Treble mac.app: + "/Tadpole Treble mac.app": - when: - os: mac store: steam - /Tadpole Treble win.exe: + "/Tadpole Treble win.exe": - when: - os: windows store: steam @@ -525332,15 +526761,15 @@ Taekwondo Grand Prix: installDir: Taekwondo Grand Prix: {} launch: - /Taekwondo Grand Prix.exe: + "/Taekwondo Grand Prix.exe": - when: - os: windows store: steam steam: id: 462590 -'Tag: The Power of Paint': +"Tag: The Power of Paint": files: - /Game Data/TAG.ini: + "/Game Data/TAG.ini": tags: - config when: @@ -525348,31 +526777,31 @@ Taekwondo Grand Prix: installDir: Tag The Power of Paint: {} launch: - /Tag.exe: + "/Tag.exe": - when: - store: steam steam: id: 1808400 -'Tahira: Echoes of the Astral Empire': +"Tahira: Echoes of the Astral Empire": gog: id: 1852379375 installDir: Tahira: {} launch: - /Tahira.app: + "/Tahira.app": - when: - os: mac store: steam - /Tahira.exe: + "/Tahira.exe": - when: - os: windows store: steam - /Tahira.x86: + "/Tahira.x86": - when: - bit: 32 os: linux store: steam - /Tahira.x86_64: + "/Tahira.x86_64": - when: - bit: 64 os: linux @@ -525386,12 +526815,12 @@ Tahko Alpine Ski: id: 1028170 Taiji: files: - /AppData/LocalLow/Matthew VanDevander/Taiji/config.cfg: + "/AppData/LocalLow/Matthew VanDevander/Taiji/config.cfg": tags: - config when: - os: windows - /AppData/LocalLow/Matthew VanDevander/Taiji/saves: + "/AppData/LocalLow/Matthew VanDevander/Taiji/saves": tags: - save when: @@ -525399,7 +526828,7 @@ Taiji: installDir: Taiji: {} launch: - /Taiji.exe: + "/Taiji.exe": - when: - os: windows store: steam @@ -525409,15 +526838,15 @@ Taiker: installDir: TAIKER: {} launch: - /Contents/MacOS/taiker_mac: + "/Contents/MacOS/taiker_mac": - when: - os: mac store: steam - /taiker.exe: + "/taiker.exe": - when: - os: windows store: steam - /taiker.x86: + "/taiker.x86": - when: - os: linux store: steam @@ -525427,7 +526856,7 @@ Taiko Risshiden: installDir: Taikou1: {} launch: - /Taikou1_Launcher.exe: + "/Taikou1_Launcher.exe": - when: - os: windows store: steam @@ -525437,24 +526866,24 @@ Taiko Risshiden V DX: installDir: Taiko5DX: {} launch: - /Taiko5DXLauncher.exe: + "/Taiko5DXLauncher.exe": - when: - bit: 64 os: windows store: steam steam: id: 1842810 -'Taiko no Tatsujin: Pop Tap Beat': +"Taiko no Tatsujin: Pop Tap Beat": files: - /Library/Containers/jp.co.bandainamcoent.BNEI0361/Data/Library/Application Support: + "/Library/Containers/jp.co.bandainamcoent.BNEI0361/Data/Library/Application Support": tags: - config - save when: - os: mac -'Taiko no Tatsujin: The Drum Master!': +"Taiko no Tatsujin: The Drum Master!": files: - /Packages/NAMCOBANDAIGamesInc.TTablet_gdy2aq6ez762w/SystemAppData: + "/Packages/NAMCOBANDAIGamesInc.TTablet_gdy2aq6ez762w/SystemAppData": tags: - save when: @@ -525467,7 +526896,7 @@ Taiku Mansion: installDir: TAIKUMANSION: {} launch: - /TaikuAdventure.exe: + "/TaikuAdventure.exe": - when: - os: windows store: steam @@ -525477,7 +526906,7 @@ Tail Drift: installDir: Tail Drift: {} launch: - /taildrift.exe: + "/taildrift.exe": - when: - store: steam steam: @@ -525491,11 +526920,11 @@ TailQuest Defense: installDir: TailQuest: {} launch: - /tq.64: + "/tq.64": - when: - os: linux store: steam - /tq.exe: + "/tq.exe": - when: - os: windows store: steam @@ -525503,12 +526932,12 @@ TailQuest Defense: id: 824090 Tailor Tales: files: - /Tailor Tales/www/save/config.rpgsave: + "/Tailor Tales/www/save/config.rpgsave": tags: - config when: - os: windows - /Tailor Tales/www/save/file*.rpgsave: + "/Tailor Tales/www/save/file*.rpgsave": tags: - save when: @@ -525516,8 +526945,8 @@ Tailor Tales: installDir: Tailor Tales: {} launch: - /Tailor Tales/nw.exe: - - arguments: '--in-process-gpu' + "/Tailor Tales/nw.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam @@ -525530,17 +526959,17 @@ Tails: id: 500880 Tails Noir: files: - /Detective/Saved/Config/WindowsNoEditor: + "/Detective/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /Detective/Saved/SaveGames: + "/Detective/Saved/SaveGames": tags: - save when: - os: windows - /Packages/RawFury.Backbone_9s0pnehqffj7t/LocalCache/Local/Detective/Saved/Config/WinGDK: + "/Packages/RawFury.Backbone_9s0pnehqffj7t/LocalCache/Local/Detective/Saved/Config/WinGDK": tags: - config when: @@ -525556,11 +526985,11 @@ Tails Noir: installDir: Backbone: {} launch: - /Detective-Mac-Shipping.app: + "/Detective-Mac-Shipping.app": - when: - os: mac store: steam - /Detective.exe: + "/Detective.exe": - when: - bit: 64 os: windows @@ -525571,28 +527000,28 @@ Tails of Iron: installDir: Tails of Iron: {} launch: - /TOI.app/Contents/MacOS/Tails of Iron: + "/TOI.app/Contents/MacOS/Tails of Iron": - when: - os: mac store: steam - /TOI.exe: + "/TOI.exe": - when: - os: windows store: steam - /TOI.x86_64: + "/TOI.x86_64": - when: - os: linux store: steam steam: id: 1283410 -'Tails: The Backbone Preludes': +"Tails: The Backbone Preludes": files: - /BackboneStories/Saved: + "/BackboneStories/Saved": tags: - config when: - os: windows - /BackboneStories/Saved/SaveGames: + "/BackboneStories/Saved/SaveGames": tags: - save when: @@ -525600,7 +527029,7 @@ Tails of Iron: installDir: Tails The Backbone Preludes: {} launch: - /BackboneStories.exe: + "/BackboneStories.exe": - when: - bit: 64 os: windows @@ -525611,17 +527040,17 @@ Tailwind: installDir: Tailwind: {} launch: - /TailWind.exe: + "/TailWind.exe": - when: - os: windows store: steam steam: id: 674800 -'Tailypo: The Game': +"Tailypo: The Game": installDir: Tailypo: {} launch: - /Tailypo.exe: + "/Tailypo.exe": - when: - os: windows store: steam @@ -525631,7 +527060,7 @@ TailzFromTheGrave: installDir: TailzFromTheGrave: {} launch: - /TailzFromTheGrave.exe: + "/TailzFromTheGrave.exe": - when: - os: windows store: steam @@ -525639,7 +527068,7 @@ TailzFromTheGrave: id: 918300 Taima Miko Yuugi: files: - /*.rvdata*: + "/*.rvdata*": tags: - save when: @@ -525647,42 +527076,42 @@ Taima Miko Yuugi: installDir: Taima Miko Yuugi: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam steam: id: 719430 -'Taimanin Asagi 1: Trial': +"Taimanin Asagi 1: Trial": installDir: Taimanin Asagi Trial: {} launch: - /VinosWinPlayer.exe: + "/VinosWinPlayer.exe": - when: - bit: 32 os: windows store: steam steam: id: 1152100 -'Taimanin Collection: Battle Arena': +"Taimanin Collection: Battle Arena": installDir: Taimanin Collection: {} launch: - /TaimaninCollection.app: + "/TaimaninCollection.app": - when: - os: mac store: steam - /TaimaninCollection.exe: + "/TaimaninCollection.exe": - when: - os: windows store: steam steam: id: 1330250 -'Taimanin Yukikaze 1: Trial': +"Taimanin Yukikaze 1: Trial": installDir: Taimanin Yukikaze Trial: {} launch: - /VinosWinPlayer.exe: + "/VinosWinPlayer.exe": - when: - bit: 32 os: windows @@ -525691,7 +527120,7 @@ Taima Miko Yuugi: id: 1205560 Taimumari: files: - /Time: + "/Time": tags: - config - save @@ -525700,19 +527129,19 @@ Taimumari: installDir: Taimumari: {} launch: - /Classic/game.exe: + "/Classic/game.exe": - when: - os: windows store: steam - /Taimumari.app: + "/Taimumari.app": - when: - os: mac store: steam - /Taimumari_DefinitiveEdition.exe: + "/Taimumari_DefinitiveEdition.exe": - when: - os: windows store: steam - /run.sh: + "/run.sh": - when: - bit: 64 os: linux @@ -525724,25 +527153,25 @@ Tainted Fate: Tainted Fate: {} steam: id: 858250 -'Tainted Grail: Conquest': +"Tainted Grail: Conquest": gog: id: 1257094744 installDir: Tainted Grail: {} launch: - /Tainted Grail.exe: + "/Tainted Grail.exe": - when: - os: windows store: steam - /Tainted_Grail.x86_64: + "/Tainted_Grail.x86_64": - when: - os: linux store: steam steam: id: 1199030 -'Tainted Grail: The Fall of Avalon': +"Tainted Grail: The Fall of Avalon": files: - /AppData/LocalLow/Questline/Fall of Avalon: + "/AppData/LocalLow/Questline/Fall of Avalon": tags: - config - save @@ -525753,7 +527182,7 @@ Tainted Fate: installDir: Tainted Grail FoA: {} launch: - /Fall of Avalon.exe: + "/Fall of Avalon.exe": - when: - store: steam steam: @@ -525762,7 +527191,7 @@ Taisho x Alice episode 1: installDir: taishoalice1: {} launch: - /ADVStarter.exe: + "/ADVStarter.exe": - when: - os: windows store: steam @@ -525770,14 +527199,14 @@ Taisho x Alice episode 1: id: 1056570 Taito Legends: files: - /Taito Legends/autosave/savedata: + "/Taito Legends/autosave/savedata": tags: - save when: - os: windows Taito Legends 2: files: - /Taito Legends 2/autosave/savedata: + "/Taito Legends 2/autosave/savedata": tags: - save when: @@ -525786,21 +527215,21 @@ Take Care of the Paperwork: installDir: Take Care of the Paperwork: {} launch: - /TCOTP: + "/TCOTP": - when: - bit: 32 os: linux store: steam - /TCOTP Standalone: + "/TCOTP Standalone": - when: - bit: 64 os: linux store: steam - /TCOTP.app/Contents/MacOS/TCOTP: + "/TCOTP.app/Contents/MacOS/TCOTP": - when: - os: mac store: steam - /TCOTP.exe: + "/TCOTP.exe": - when: - os: windows store: steam @@ -525808,7 +527237,7 @@ Take Care of the Paperwork: id: 882290 Take Command - 2nd Manassas: files: - /Saved Games: + "/Saved Games": tags: - save when: @@ -525816,7 +527245,7 @@ Take Command - 2nd Manassas: installDir: Take Command - 2nd Manassas: {} launch: - /TC2M.exe: + "/TC2M.exe": - when: - os: windows store: steam @@ -525824,7 +527253,12 @@ Take Command - 2nd Manassas: id: 392330 Take No Prisoners: files: - /userdef.cfg: + "/[0-9]": + tags: + - save + when: + - os: windows + "/userdef.cfg": tags: - config when: @@ -525834,7 +527268,7 @@ Take No Prisoners: installDir: Take No Prisoners: {} launch: - /tnp.exe: + "/tnp.exe": - when: - store: steam steam: @@ -525843,11 +527277,11 @@ Take Off - The Flight Simulator: installDir: Take Off - The Flight Simulator: {} launch: - /TakeOff.app: + "/TakeOff.app": - when: - os: mac store: steam - /TakeOff.exe: + "/TakeOff.exe": - when: - bit: 64 os: windows @@ -525856,12 +527290,12 @@ Take Off - The Flight Simulator: id: 657470 Take On Helicopters: files: - /Take On Helicopters: + "/Take On Helicopters": tags: - save when: - os: windows - /Take On Helicopters/TakeOnH.cfg: + "/Take On Helicopters/TakeOnH.cfg": tags: - config when: @@ -525869,23 +527303,23 @@ Take On Helicopters: installDir: Take On Helicopters: {} launch: - /TakeOnH.exe: + "/TakeOnH.exe": - when: - store: steam - - arguments: '-window' + - arguments: "-window" when: - store: steam steam: id: 65730 Take On Mars: files: - /userdata//244030/local: + "/userdata//244030/local": tags: - config when: - os: windows store: steam - /userdata//244030/local/: + "/userdata//244030/local/": tags: - save when: @@ -525894,13 +527328,13 @@ Take On Mars: installDir: Take On Mars: {} launch: - /TKOM.exe: + "/TKOM.exe": - when: - store: steam - /TKOM_Loader.exe: + "/TKOM_Loader.exe": - when: - store: steam - /TKOM_dev.exe: + "/TKOM_dev.exe": - when: - store: steam steam: @@ -525909,11 +527343,11 @@ Take That: installDir: Take That: {} launch: - /Take That.exe: + "/Take That.exe": - when: - os: windows store: steam - /Take_That_Mac.app: + "/Take_That_Mac.app": - when: - os: mac store: steam @@ -525923,11 +527357,11 @@ Take Thy Throne: installDir: Take Thy Throne: {} launch: - /TakeThyThrone.exe: + "/TakeThyThrone.exe": - when: - os: windows store: steam - /TakeThyThrone1: + "/TakeThyThrone1": - when: - os: linux store: steam @@ -525937,11 +527371,11 @@ Take the Cake: installDir: Take the Cake: {} launch: - /Take the Cake.exe: + "/Take the Cake.exe": - when: - os: windows store: steam - /runner: + "/runner": - when: - os: linux store: steam @@ -525951,19 +527385,19 @@ Take the Dream IX: installDir: Take the Dream IX: {} launch: - /Game.app: + "/Game.app": - when: - os: mac store: steam - /game.exe: + "/game.exe": - when: - os: windows store: steam steam: id: 428870 -'Takedown: Red Sabre': +"Takedown: Red Sabre": files: - /My Games/UnrealEngine3/TakedownGame/Config: + "/My Games/UnrealEngine3/TakedownGame/Config": tags: - config when: @@ -525971,18 +527405,18 @@ Take the Dream IX: installDir: Takedown Red Sabre Early Access: {} launch: - /Binaries/Win32/TakedownGame-Win32-Shipping.exe: + "/Binaries/Win32/TakedownGame-Win32-Shipping.exe": - when: - bit: 32 os: windows store: steam - workingDir: /Binaries/Win32 - /Binaries/Win64/TakedownGame-Win64-Shipping.exe: + workingDir: "/Binaries/Win32" + "/Binaries/Win64/TakedownGame-Win64-Shipping.exe": - when: - bit: 64 os: windows store: steam - workingDir: /Binaries/Win64 + workingDir: "/Binaries/Win64" steam: id: 236510 Takelings House Party: @@ -525994,27 +527428,30 @@ Taken: installDir: TAKEN: {} launch: - /TAKEN.app: + "/TAKEN.app": - when: - os: mac store: steam - /TAKEN.exe: + "/TAKEN.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam - /TAKEN_BP: + "/TAKEN_BP": - when: - os: linux store: steam - workingDir: /TAKEN_BP/Binaries/Linux + workingDir: "/TAKEN_BP/Binaries/Linux" steam: id: 359160 -'Taken Souls: Blood Ritual': +"Taken Souls: Blood Ritual": installDir: Taken Souls Blood Ritual: {} launch: - /Taken Souls Blood Ritual.exe: + "/Taken Souls Blood Ritual.exe": - when: - os: windows store: steam @@ -526024,7 +527461,7 @@ Takenoko: installDir: Takenoko: {} launch: - /takenoko.exe: + "/takenoko.exe": - when: - os: windows store: steam @@ -526038,11 +527475,11 @@ Taking Valhalla VR: Taking Valhalla VR: {} steam: id: 693400 -'Takkyu Tournament Re:Serve': +"Takkyu Tournament Re:Serve": installDir: Takkyu Tournament ReServe: {} launch: - /Takkyu Tournament.exe: + "/Takkyu Tournament.exe": - when: - os: windows store: steam @@ -526052,7 +527489,7 @@ Tale Of Starship: installDir: Tale Of Starship: {} launch: - /Tale of Starship.exe: + "/Tale of Starship.exe": - when: - os: windows store: steam @@ -526062,17 +527499,17 @@ Tale of Alamar: installDir: Tale of Alamar: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam steam: id: 746270 -'Tale of Enki: Pilgrimage': +"Tale of Enki: Pilgrimage": installDir: Tale of Enki Pilgrimage: {} launch: - /Enki.exe: + "/Enki.exe": - when: - os: windows store: steam @@ -526082,7 +527519,7 @@ Tale of Fallen Dragons: installDir: Tale of Fallen Dragons: {} launch: - /FallenDragons.exe: + "/FallenDragons.exe": - when: - os: windows store: steam @@ -526092,7 +527529,7 @@ Tale of Fortune: installDir: Tale of Fortune: {} launch: - /taleoffortune.exe: + "/taleoffortune.exe": - when: - bit: 64 os: windows @@ -526106,7 +527543,7 @@ Tale of Legends -伝創記-: installDir: Tale of Legends: {} launch: - /Tale of Legends.exe: + "/Tale of Legends.exe": - when: - os: windows store: steam @@ -526116,7 +527553,7 @@ Tale of Legends IV ~if~: installDir: 伝創記IV ~if~: {} launch: - /sgb_rpgplayer.exe: + "/sgb_rpgplayer.exe": - when: - os: windows store: steam @@ -526126,7 +527563,7 @@ Tale of Palmi: installDir: TaleOfPalmi: {} launch: - /TaleOfPalmi.exe: + "/TaleOfPalmi.exe": - when: - bit: 64 os: windows @@ -526140,16 +527577,16 @@ Tale of Swords: installDir: 牧剑: {} launch: - /MuJian.exe: + "/MuJian.exe": - when: - store: steam steam: id: 992260 -'Tale of Swords: Mystery Scroll': +"Tale of Swords: Mystery Scroll": installDir: 牧剑:化神书(Tale Of Swords Mystery Scroll): {} launch: - /MJ_HuaShenShu.exe: + "/MJ_HuaShenShu.exe": - when: - store: steam steam: @@ -526158,15 +527595,15 @@ Tale of Toast: installDir: Tale of Toast: {} launch: - /ToT.app: + "/ToT.app": - when: - os: mac store: steam - /ToT.bin: + "/ToT.bin": - when: - os: linux store: steam - /ToT.exe: + "/ToT.exe": - when: - os: windows store: steam @@ -526176,34 +527613,34 @@ Tale of Wuxia: installDir: Tale of Wuxia: {} launch: - /wuxia.exe: - - arguments: '-launch' + "/wuxia.exe": + - arguments: "-launch" when: - os: windows store: steam steam: id: 377530 -'Tale of Wuxia: The Pre-Sequel': +"Tale of Wuxia: The Pre-Sequel": installDir: Tale of WuxiaThe Pre-Sequel: {} launch: - /YoungHero.exe: + "/YoungHero.exe": - when: - os: windows store: steam steam: id: 650760 -'Tale of the Fragmented Star: Single Fragment Version / 星の欠片の物語、ひとかけら版': +"Tale of the Fragmented Star: Single Fragment Version / 星の欠片の物語、ひとかけら版": installDir: Tale of the Fragmented Star Single Fragment Version: {} steam: id: 930850 Tale of the Gallant Jiraiya: installDir: - BRG's Tale of the Gallant Jiraiya: {} + "BRG's Tale of the Gallant Jiraiya": {} launch: - /nw.exe: - - arguments: '--in-process-gpu' + "/nw.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam @@ -526213,7 +527650,7 @@ TaleSpire: installDir: TaleSpire: {} launch: - /TaleSpire.exe: + "/TaleSpire.exe": - when: - os: windows store: steam @@ -526223,11 +527660,11 @@ Talent Not Included: installDir: Talent Not Included: {} launch: - /game.app/Contents/MacOS/game: + "/game.app/Contents/MacOS/game": - when: - os: mac store: steam - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -526235,12 +527672,12 @@ Talent Not Included: id: 485260 Tales: files: - /Saved Games/Tales STEAM/acsetup.cfg: + "/Saved Games/Tales STEAM/acsetup.cfg": tags: - config when: - os: windows - /Saved Games/Tales STEAM/agssave.*: + "/Saved Games/Tales STEAM/agssave.*": tags: - save when: @@ -526248,11 +527685,11 @@ Tales: installDir: Tales: {} launch: - /Tales.exe: + "/Tales.exe": - when: - os: windows store: steam - - arguments: '--setup' + - arguments: "--setup" when: - os: windows store: steam @@ -526262,7 +527699,7 @@ Tales Across Time: installDir: Tales Across Time: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -526271,14 +527708,14 @@ Tales Across Time: Tales From Galaxy 34: steam: id: 989150 -'Tales From The Dragon Mountain: The Strix': +"Tales From The Dragon Mountain: The Strix": files: - /Cateia Games/The Strix/: + "/Cateia Games/The Strix/": tags: - save when: - os: windows - /Cateia Games/The Strix//cage.cfg: + "/Cateia Games/The Strix//cage.cfg": tags: - config when: @@ -526286,12 +527723,12 @@ Tales From Galaxy 34: installDir: Tales From The Dragon Mountain The Strix: {} launch: - /The Strix.app/Contents/MacOS/The Strix: + "/The Strix.app/Contents/MacOS/The Strix": - when: - os: mac store: steam - workingDir: /The Strix.app/Contents/MacOS - /strix.exe: + workingDir: "/The Strix.app/Contents/MacOS" + "/strix.exe": - when: - os: windows store: steam @@ -526301,7 +527738,7 @@ Tales From Windy Meadow: installDir: Tales From Windy Meadow: {} launch: - /TalesFromWindyMeadow.exe: + "/TalesFromWindyMeadow.exe": - when: - os: windows store: steam @@ -526311,15 +527748,15 @@ Tales Runner: installDir: Tales Runner: {} launch: - /ogpsteam.exe: + "/ogpsteam.exe": - when: - os: windows store: steam steam: id: 328060 -'Tales from Candlekeep: Tomb of Annihilation': +"Tales from Candlekeep: Tomb of Annihilation": files: - /AppData/LocalLow/Bkom Studios/TalesCandlekeep/Save: + "/AppData/LocalLow/Bkom Studios/TalesCandlekeep/Save": tags: - save when: @@ -526327,11 +527764,11 @@ Tales Runner: installDir: Tales from Candlekeep: {} launch: - /TalesCandlekeep.app: + "/TalesCandlekeep.app": - when: - os: mac store: steam - /TalesCandlekeep.exe: + "/TalesCandlekeep.exe": - when: - os: windows store: steam @@ -526345,39 +527782,39 @@ Tales from Off-Peak City Vol. 1: installDir: Tales From Off-Peak City: {} launch: - /Tales From Off-Peak City Mac Steam.app: + "/Tales From Off-Peak City Mac Steam.app": - when: - os: mac store: steam - /Tales From Off-Peak City Vol. 1.x86_64: + "/Tales From Off-Peak City Vol. 1.x86_64": - when: - os: linux store: steam - /Tales From Off-Peak City.exe: + "/Tales From Off-Peak City.exe": - when: - os: windows store: steam steam: id: 1129920 -'Tales from Space: Mutant Blobs Attack': +"Tales from Space: Mutant Blobs Attack": files: - /Documents/Drinkbox Studios/Mutant Blobs Attack: + "/Documents/Drinkbox Studios/Mutant Blobs Attack": tags: - config when: - os: mac - /userdata//206370/remote: + "/userdata//206370/remote": tags: - save when: - store: steam - /Mutant Blobs Attack: + "/Mutant Blobs Attack": tags: - config - save when: - os: windows - /Drinkbox Studios/Mutant Blobs Attack: + "/Drinkbox Studios/Mutant Blobs Attack": tags: - config - save @@ -526388,15 +527825,15 @@ Tales from Off-Peak City Vol. 1: installDir: Tales from Space Mutant Blobs Attack: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam - /MutantBlobsAttack_Steam.app: + "/MutantBlobsAttack_Steam.app": - when: - os: mac store: steam - /game: + "/game": - when: - os: linux store: steam @@ -526404,13 +527841,13 @@ Tales from Off-Peak City Vol. 1: id: 206370 Tales from the Borderlands: files: - /Library/Application Support/Telltale Games/Tales from the Borderlands: + "/Library/Application Support/Telltale Games/Tales from the Borderlands": tags: - config - save when: - os: mac - /Telltale Games/Tales from the Borderlands: + "/Telltale Games/Tales from the Borderlands": tags: - config - save @@ -526421,39 +527858,39 @@ Tales from the Borderlands: installDir: Tales from the Borderlands: {} launch: - /Borderlands.exe: + "/Borderlands.exe": - when: - os: windows store: steam - /Tales from the Borderlands.app: + "/Tales from the Borderlands.app": - when: - os: mac store: steam steam: id: 330830 -'Tales from the Dragon Mountain 2: The Lair': +"Tales from the Dragon Mountain 2: The Lair": installDir: Tales From The Dragon Mountain 2 The Lair: {} launch: - /Tales from the Dragon Mountain - The Lair.app/Contents/MacOS/cageplayer_cateia_cpromo: + "/Tales from the Dragon Mountain - The Lair.app/Contents/MacOS/cageplayer_cateia_cpromo": - when: - os: mac store: steam - workingDir: /Tales from the Dragon Mountain - The Lair.app/Contents/MacOS - /lair.exe: + workingDir: "/Tales from the Dragon Mountain - The Lair.app/Contents/MacOS" + "/lair.exe": - when: - os: windows store: steam steam: id: 276460 -'Tales from the Dragon Mountain: The Strix': +"Tales from the Dragon Mountain: The Strix": files: - /Cateia Games/The Strix/: + "/Cateia Games/The Strix/": tags: - save when: - os: windows - /Cateia Games/The Strix//cage.cfg: + "/Cateia Games/The Strix//cage.cfg": tags: - config when: @@ -526461,12 +527898,12 @@ Tales from the Borderlands: installDir: Tales From The Dragon Mountain The Strix: {} launch: - /The Strix.app/Contents/MacOS/The Strix: + "/The Strix.app/Contents/MacOS/The Strix": - when: - os: mac store: steam - workingDir: /The Strix.app/Contents/MacOS - /strix.exe: + workingDir: "/The Strix.app/Contents/MacOS" + "/strix.exe": - when: - os: windows store: steam @@ -526476,11 +527913,11 @@ Tales from the Void: installDir: Tales from the Void: {} launch: - /tales_from_the_void.app: + "/tales_from_the_void.app": - when: - os: mac store: steam - /tales_from_the_void.exe: + "/tales_from_the_void.exe": - when: - os: windows store: steam @@ -526490,7 +527927,7 @@ Tales of Adventure 2: installDir: Tales of Adventure 2: {} launch: - /talesofadwenture2.exe: + "/talesofadwenture2.exe": - when: - store: steam steam: @@ -526499,25 +527936,25 @@ Tales of Ancient Nights: installDir: Tales of Ancient Nights: {} launch: - /Test.exe: + "/Test.exe": - when: - os: windows store: steam steam: id: 1010380 -'Tales of Aravorn: Seasons of the Wolf': +"Tales of Aravorn: Seasons of the Wolf": installDir: Tales of Aravorn Seasons Of The Wolf: {} launch: - /SOTW.app: + "/SOTW.app": - when: - os: mac store: steam - /SOTW.exe: + "/SOTW.exe": - when: - os: windows store: steam - /SOTW.sh: + "/SOTW.sh": - when: - os: linux store: steam @@ -526525,12 +527962,12 @@ Tales of Ancient Nights: id: 333390 Tales of Arise: files: - /BANDAI NAMCO Entertainment/Tales of Arise/Config/WindowsNoEditor: + "/BANDAI NAMCO Entertainment/Tales of Arise/Config/WindowsNoEditor": tags: - config when: - os: windows - /BANDAI NAMCO Entertainment/Tales of Arise/Saved/SaveGames: + "/BANDAI NAMCO Entertainment/Tales of Arise/Saved/SaveGames": tags: - save when: @@ -526538,7 +527975,7 @@ Tales of Arise: installDir: Tales of Arise: {} launch: - /Arise/Binaries/Win64/Tales of Arise.exe: + "/Arise/Binaries/Win64/Tales of Arise.exe": - when: - store: steam steam: @@ -526547,8 +527984,8 @@ Tales of Beasteria: installDir: Tales of Beasteria: {} launch: - /game.exe: - - arguments: '--in-process-gpu' + "/game.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam @@ -526556,13 +527993,13 @@ Tales of Beasteria: id: 1203030 Tales of Berseria: files: - /userdata//429660/remote: + "/userdata//429660/remote": tags: - save when: - os: windows store: steam - /BANDAI NAMCO Entertainment/Tales of Berseria: + "/BANDAI NAMCO Entertainment/Tales of Berseria": tags: - config when: @@ -526570,7 +528007,7 @@ Tales of Berseria: installDir: Tales of Berseria: {} launch: - /Tales of Berseria.exe: + "/Tales of Berseria.exe": - when: - store: steam steam: @@ -526579,7 +528016,7 @@ Tales of Blood and Sand: installDir: Tales of Blood and Sand: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: @@ -526588,11 +528025,11 @@ Tales of Cosmos: installDir: Tales of Cosmos: {} launch: - /TalesOfCosmos.app: + "/TalesOfCosmos.app": - when: - os: mac store: steam - /TalesOfCosmos.exe: + "/TalesOfCosmos.exe": - when: - os: windows store: steam @@ -526602,7 +528039,7 @@ Tales of Destruction: installDir: TOD: {} launch: - /TOD.exe: + "/TOD.exe": - when: - bit: 64 os: windows @@ -526613,7 +528050,7 @@ Tales of Escape: installDir: Tales of Escape: {} launch: - /TalesOfEscape.exe: + "/TalesOfEscape.exe": - when: - os: windows store: steam @@ -526631,7 +528068,7 @@ Tales of Glory: id: 636970 Tales of Hongyuan: files: - /HYZJ_Data/Config/GameSetting.ini: + "/HYZJ_Data/Config/GameSetting.ini": tags: - config when: @@ -526639,7 +528076,7 @@ Tales of Hongyuan: installDir: 鸿源战纪: {} launch: - /HYZJ.exe: + "/HYZJ.exe": - when: - os: windows store: steam @@ -526649,7 +528086,7 @@ Tales of Inca - Lost Land: installDir: Tales of Inca - Lost Land: {} launch: - /Tales of Inca_steam.exe: + "/Tales of Inca_steam.exe": - when: - os: windows store: steam @@ -526659,7 +528096,7 @@ Tales of Lazo: installDir: Tales of Lazo: {} launch: - /Tales of Lazo.exe: + "/Tales of Lazo.exe": - when: - os: windows store: steam @@ -526669,7 +528106,7 @@ Tales of Legends: installDir: Tales of Legends: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -526679,40 +528116,40 @@ Tales of Mahabharata: installDir: Tales of Mahabharata: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam steam: id: 867920 -Tales of Maj'Eyal: +"Tales of Maj'Eyal": files: - /.t-engine/4.0/tome/save: + "/.t-engine/4.0/tome/save": tags: - save when: - os: linux - /.t-engine/4.0/tome/settings: + "/.t-engine/4.0/tome/settings": tags: - config when: - os: linux - /Library/Application Support/T-Engine/4.0/tome/save: + "/Library/Application Support/T-Engine/4.0/tome/save": tags: - save when: - os: mac - /Library/Application Support/T-Engine/4.0/tome/settings: + "/Library/Application Support/T-Engine/4.0/tome/settings": tags: - config when: - os: mac - /T-Engine/4.0/tome/save: + "/T-Engine/4.0/tome/save": tags: - save when: - os: windows - /T-Engine/4.0/tome/settings: + "/T-Engine/4.0/tome/settings": tags: - config when: @@ -526722,20 +528159,20 @@ Tales of Maj'Eyal: installDir: TalesMajEyal: {} launch: - /T-Engine.app/Contents/MacOS/t-engine: + "/T-Engine.app/Contents/MacOS/t-engine": - when: - os: mac store: steam - /t-engine: + "/t-engine": - when: - bit: 32 os: linux store: steam - /t-engine.exe: + "/t-engine.exe": - when: - os: windows store: steam - /t-engine64: + "/t-engine64": - when: - bit: 64 os: linux @@ -526744,72 +528181,72 @@ Tales of Maj'Eyal: id: 259680 Tales of Monkey Island: files: - /Library/Application Support/Telltale Games: + "/Library/Application Support/Telltale Games": tags: - config - save when: - os: mac - /Telltale Games/Lair of the Leviathan/*.save: - tags: - - save - when: - - store: steam - /Telltale Games/Lair of the Leviathan/prefs.prop: - tags: - - config - when: - - store: steam - /Telltale Games/Launch of the Screaming Narwhal/*.save: - tags: - - save - when: - - store: steam - /Telltale Games/Launch of the Screaming Narwhal/prefs.prop: - tags: - - config - when: - - store: steam - /Telltale Games/Rise of the Pirate God/*.save: - tags: - - save - when: - - store: steam - /Telltale Games/Rise of the Pirate God/prefs.prop: - tags: - - config - when: - - store: steam - /Telltale Games/Tales of Monkey Island - Chapter */*.save: + "/Telltale Games/Lair of the Leviathan/*.save": tags: - save when: - os: windows - /Telltale Games/Tales of Monkey Island - Chapter */prefs.prop: + store: steam + "/Telltale Games/Lair of the Leviathan/prefs.prop": tags: - config when: - os: windows - /Telltale Games/The Siege of Spinner Cay/*.save: + store: steam + "/Telltale Games/Launch of the Screaming Narwhal/*.save": tags: - save when: - - store: steam - /Telltale Games/The Siege of Spinner Cay/prefs.prop: + - os: windows + store: steam + "/Telltale Games/Launch of the Screaming Narwhal/prefs.prop": tags: - config when: - - store: steam - /Telltale Games/The Trial and Execution of Guybrush Threepwood/*.save: + - os: windows + store: steam + "/Telltale Games/Rise of the Pirate God/*.save": tags: - save when: - - store: steam - /Telltale Games/The Trial and Execution of Guybrush Threepwood/prefs.prop: + - os: windows + store: steam + "/Telltale Games/Rise of the Pirate God/prefs.prop": tags: - config when: - - store: steam + - os: windows + store: steam + "/Telltale Games/The Siege of Spinner Cay/*.save": + tags: + - save + when: + - os: windows + store: steam + "/Telltale Games/The Siege of Spinner Cay/prefs.prop": + tags: + - config + when: + - os: windows + store: steam + "/Telltale Games/The Trial and Execution of Guybrush Threepwood/*.save": + tags: + - save + when: + - os: windows + store: steam + "/Telltale Games/The Trial and Execution of Guybrush Threepwood/prefs.prop": + tags: + - config + when: + - os: windows + store: steam gog: id: 1207659066 id: @@ -526821,49 +528258,49 @@ Tales of Monkey Island: installDir: Tales of Monkey Island - Chapter 1: {} launch: - /MonkeyIsland101.app: + "/MonkeyIsland101.app": - when: - os: mac store: steam - /MonkeyIsland101.exe: + "/MonkeyIsland101.exe": - when: - os: windows store: steam steam: id: 31170 -'Tales of Nebezem: Elemental Link': +"Tales of Nebezem: Elemental Link": installDir: Tales of Nebezem - Elemental Link: {} launch: - /Game.app: + "/Game.app": - when: - os: mac store: steam - /Game.exe: + "/Game.exe": - when: - os: windows store: steam - /game: + "/game": - when: - bit: 64 os: linux store: steam steam: id: 788410 -'Tales of Nebezem: Red Peril': +"Tales of Nebezem: Red Peril": installDir: Tales of Nebezem RPG Red Peril: {} launch: - /Game: + "/Game": - when: - bit: 64 os: linux store: steam - /Game.app: + "/Game.app": - when: - os: mac store: steam - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -526871,12 +528308,12 @@ Tales of Monkey Island: id: 1034560 Tales of Symphonia: files: - /*.conf: + "/*.conf": tags: - config when: - os: windows - /userdata//372360/remote: + "/userdata//372360/remote": tags: - save when: @@ -526885,62 +528322,62 @@ Tales of Symphonia: installDir: Tales of Symphonia: {} launch: - /TOS.exe: + "/TOS.exe": - when: - os: windows store: steam steam: id: 372360 -'Tales of Terror: Crimson Dawn': +"Tales of Terror: Crimson Dawn": installDir: Tales of Terror Crimson Dawn: {} launch: - /TalesOfTerror_CrimsonDawn.exe: + "/TalesOfTerror_CrimsonDawn.exe": - when: - os: windows store: steam steam: id: 596270 -'Tales of Terror: House on the Hill': +"Tales of Terror: House on the Hill": installDir: - Tales of Terror House on the Hill Collector's Edition: {} + "Tales of Terror House on the Hill Collector's Edition": {} launch: - /TalesOfTerror_HouseOnTheHill_CE.exe: + "/TalesOfTerror_HouseOnTheHill_CE.exe": - when: - os: windows store: steam steam: id: 729930 -'Tales of Tomorrow: Experiment': +"Tales of Tomorrow: Experiment": installDir: Tales of Tomorrow Experiment: {} launch: - /ToT.exe: + "/ToT.exe": - when: - bit: 64 os: windows store: steam steam: id: 1189730 -'Tales of Vesperia: Definitive Edition': +"Tales of Vesperia: Definitive Edition": files: - /userdata//738540/remote: + "/userdata//738540/remote": tags: - save when: - store: steam - /BANDAI NAMCO Entertainment/Tales of Vesperia: + "/BANDAI NAMCO Entertainment/Tales of Vesperia": tags: - config when: - os: windows - /Packages/NAMCOBANDAIGamesInc.TalesofVesperiaPCBaseGame_gdy2aq6ez762w/LocalCache/Local/BANDAI NAMCO Entertainment/Tales of Vesperia: + "/Packages/NAMCOBANDAIGamesInc.TalesofVesperiaPCBaseGame_gdy2aq6ez762w/LocalCache/Local/BANDAI NAMCO Entertainment/Tales of Vesperia": tags: - config when: - os: windows store: microsoft - /Packages/NAMCOBANDAIGamesInc.TalesofVesperiaPCBaseGame_gdy2aq6ez762w/SystemAppData/wgs: + "/Packages/NAMCOBANDAIGamesInc.TalesofVesperiaPCBaseGame_gdy2aq6ez762w/SystemAppData/wgs": tags: - save when: @@ -526949,18 +528386,18 @@ Tales of Symphonia: installDir: Tales of Vesperia Definitive Edition: {} launch: - /TOV_DE.exe: + "/TOV_DE.exe": - when: - bit: 64 os: windows store: steam steam: id: 738540 -'Tales of Winds: Tomb of the Sol Empire': +"Tales of Winds: Tomb of the Sol Empire": installDir: Tales of Winds Tomb of the Sol Empire: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -526968,12 +528405,12 @@ Tales of Symphonia: id: 733610 Tales of Zestiria: files: - /userdata//351970/remote: + "/userdata//351970/remote": tags: - save when: - store: steam - /BANDAI NAMCO Games/Tales of Zestiria: + "/BANDAI NAMCO Games/Tales of Zestiria": tags: - config when: @@ -526981,7 +528418,7 @@ Tales of Zestiria: installDir: Tales of Zestiria: {} launch: - /Tales of Zestiria.exe: + "/Tales of Zestiria.exe": - when: - store: steam steam: @@ -526990,15 +528427,15 @@ Tales of a Spymaster: installDir: Tales of a Spymaster: {} launch: - /ToaS.app: + "/ToaS.app": - when: - os: mac store: steam - /ToaS.exe: + "/ToaS.exe": - when: - os: windows store: steam - /ToaS.x86_64: + "/ToaS.x86_64": - when: - bit: 64 os: linux @@ -527010,7 +528447,7 @@ Tales of the Aswang VR: id: 969180 Tales of the Black Forest: files: - /www/save/*.*: + "/www/save/*.*": tags: - save when: @@ -527018,7 +528455,7 @@ Tales of the Black Forest: installDir: Tales of the Black Forest: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -527028,11 +528465,11 @@ Tales of the Deck: installDir: Tales of the Deck: {} launch: - /TotD.app: + "/TotD.app": - when: - os: mac store: steam - /TotD/Tales of the Deck.exe: + "/TotD/Tales of the Deck.exe": - when: - store: steam steam: @@ -527041,8 +528478,8 @@ Tales of the Elements: installDir: Tales of the Elements: {} launch: - /TotE.exe: - - arguments: '/user:administrator' + "/TotE.exe": + - arguments: "/user:administrator" when: - os: windows store: steam @@ -527052,7 +528489,7 @@ Tales of the Lumminai: installDir: Tales of the Lumminai: {} launch: - /TOTL.exe: + "/TOTL.exe": - when: - os: windows store: steam @@ -527060,7 +528497,7 @@ Tales of the Lumminai: id: 610560 Tales of the Neon Sea: files: - /AppData/LocalLow/palmpioneer/TalesoftheNeonSea/TalesoftheNeonSea.sav: + "/AppData/LocalLow/palmpioneer/TalesoftheNeonSea/TalesoftheNeonSea.sav": tags: - save when: @@ -527070,7 +528507,7 @@ Tales of the Neon Sea: installDir: Tales of the Neon Sea: {} launch: - /TalesoftheNeonSea.exe: + "/TalesoftheNeonSea.exe": - when: - os: windows store: steam @@ -527080,14 +528517,14 @@ Tales of the Neon Sea: - config steam: id: 828740 -'Tales of the Orient: The Rising Sun': +"Tales of the Orient: The Rising Sun": files: - /Green Sauce Games/Tales of the Orient - The Rising Sun: + "/Green Sauce Games/Tales of the Orient - The Rising Sun": tags: - save when: - os: windows - /Green Sauce Games/Tales of the Orient - The Rising Sun: + "/Green Sauce Games/Tales of the Orient - The Rising Sun": tags: - save when: @@ -527095,15 +528532,15 @@ Tales of the Neon Sea: installDir: Tales of the Orient - The Rising Sun: {} launch: - /Tales of the Orient - The Rising Sun.app: + "/Tales of the Orient - The Rising Sun.app": - when: - os: mac store: steam - /Tales of the Orient - The Rising Sun.exe: + "/Tales of the Orient - The Rising Sun.exe": - when: - os: windows store: steam - /Tales of the Orient - The Rising Sun.x86_64: + "/Tales of the Orient - The Rising Sun.x86_64": - when: - os: linux store: steam @@ -527113,11 +528550,11 @@ Tales of the Tiny Planet: installDir: Tales of the Tiny Planet: {} launch: - /Tiny Planet.app/Contents/MacOS/Tiny Planet: + "/Tiny Planet.app/Contents/MacOS/Tiny Planet": - when: - os: mac store: steam - /Tiny Planet.exe: + "/Tiny Planet.exe": - when: - os: windows store: steam @@ -527132,7 +528569,7 @@ Talesshop puzzle 테일즈샵 퍼즐: installDir: talesshoppuzzle: {} launch: - /talesshoppuzzle.exe: + "/talesshoppuzzle.exe": - when: - os: windows store: steam @@ -527142,22 +528579,22 @@ Talewind: installDir: Talewind: {} launch: - /WindGame.app: + "/WindGame.app": - when: - os: mac store: steam - /WindGame.exe: + "/WindGame.exe": - when: - os: windows store: steam steam: id: 441250 -Talif's Journey: +"Talif's Journey": steam: id: 1145400 -'Talisman: Digital Edition': +"Talisman: Digital Edition": files: - /Nomad Games/Talisman: + "/Nomad Games/Talisman": tags: - config - save @@ -527168,19 +528605,19 @@ Talif's Journey: installDir: Talisman: {} launch: - /Talisman.exe: + "/Talisman.exe": - when: - os: windows store: steam - /talisman.app: + "/talisman.app": - when: - os: mac store: steam steam: id: 247000 -'Talisman: Origins': +"Talisman: Origins": files: - /Nomad Games/TalismanOrigins/saved_game/_progress/savestatus.xml: + "/Nomad Games/TalismanOrigins/saved_game/_progress/savestatus.xml": tags: - save when: @@ -527190,35 +528627,35 @@ Talif's Journey: installDir: Talisman Origins: {} launch: - /Origins.app: + "/Origins.app": - when: - os: mac store: steam - /origins.exe: + "/origins.exe": - when: - os: windows store: steam steam: id: 1033170 -'Talisman: Prologue': +"Talisman: Prologue": installDir: Talisman Prologue: {} launch: - /Talisman.exe: + "/Talisman.exe": - when: - os: windows store: steam steam: id: 258200 -'Talisman: The Horus Heresy': +"Talisman: The Horus Heresy": installDir: Talisman Horus Heresy: {} launch: - /horus.app: + "/horus.app": - when: - os: mac store: steam - /horus.exe: + "/horus.exe": - when: - os: windows store: steam @@ -527228,7 +528665,7 @@ Talismania: installDir: Talismania Deluxe: {} launch: - /Talismania.exe: + "/Talismania.exe": - when: - store: steam steam: @@ -527237,15 +528674,15 @@ Talk to Aya: installDir: Talk to Aya: {} launch: - /Aya.app: + "/Aya.app": - when: - os: mac store: steam - /Aya.exe: + "/Aya.exe": - when: - os: windows store: steam - /Aya.sh: + "/Aya.sh": - when: - os: linux store: steam @@ -527255,15 +528692,15 @@ Talk to Saki: installDir: Talk to Saki: {} launch: - /Saki.app: + "/Saki.app": - when: - os: mac store: steam - /Saki.exe: + "/Saki.exe": - when: - os: windows store: steam - /Saki.sh: + "/Saki.sh": - when: - os: linux store: steam @@ -527273,15 +528710,15 @@ Talk to Strangers: installDir: Talk to Strangers: {} launch: - /Talk to Strangers: + "/Talk to Strangers": - when: - os: linux store: steam - /Talk to Strangers.app/Contents/MacOS/Talk to Strangers: + "/Talk to Strangers.app/Contents/MacOS/Talk to Strangers": - when: - os: mac store: steam - /Talk to Strangers.exe: + "/Talk to Strangers.exe": - when: - os: windows store: steam @@ -527291,15 +528728,15 @@ Talk to Yuno: installDir: Talk to Yuno: {} launch: - /Yuno.app: + "/Yuno.app": - when: - os: mac store: steam - /Yuno.exe: + "/Yuno.exe": - when: - os: windows store: steam - /Yuno.sh: + "/Yuno.sh": - when: - os: linux store: steam @@ -527309,20 +528746,20 @@ Tallowmere: installDir: Tallowmere: {} launch: - /Tallowmere.app: + "/Tallowmere.app": - when: - os: mac store: steam - /Tallowmere.exe: + "/Tallowmere.exe": - when: - os: windows store: steam - /Tallowmere.x86: + "/Tallowmere.x86": - when: - bit: 32 os: linux store: steam - /Tallowmere.x86_64: + "/Tallowmere.x86_64": - when: - bit: 64 os: linux @@ -527333,15 +528770,15 @@ Tally Ho: installDir: Tally Ho: {} launch: - /Tally Ho.app/Contents/MacOS/Tally Ho: + "/Tally Ho.app/Contents/MacOS/Tally Ho": - when: - os: mac store: steam - /TallyHo: + "/TallyHo": - when: - os: linux store: steam - /TallyHo.exe: + "/TallyHo.exe": - when: - os: windows store: steam @@ -527352,11 +528789,11 @@ Talos VR: Talos VR: {} steam: id: 862500 -'Talsaluq: Tower of Infinity': +"Talsaluq: Tower of Infinity": installDir: Talsaluq Tower of Infinity: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -527366,7 +528803,7 @@ Talshard: installDir: Talshard: {} launch: - /Talshard.exe: + "/Talshard.exe": - when: - bit: 64 os: windows @@ -527377,7 +528814,7 @@ Tamarin: installDir: Tamarin: {} launch: - /Tamarin.exe: + "/Tamarin.exe": - when: - bit: 64 os: windows @@ -527386,7 +528823,7 @@ Tamarin: id: 1064840 Tamashii: files: - /TAMASHII/savedata.sav: + "/TAMASHII/savedata.sav": tags: - save when: @@ -527394,7 +528831,7 @@ Tamashii: installDir: Tamashii: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -527404,20 +528841,20 @@ Tametsi: installDir: Tametsi: {} launch: - /tametsi.exe: + "/tametsi.exe": - when: - os: windows store: steam steam: id: 709920 -'Tandem: A Tale of Shadows': +"Tandem: A Tale of Shadows": files: - /Shadows/Saved/Config/WindowsNoEditor/GameUserSettings.ini: + "/Shadows/Saved/Config/WindowsNoEditor/GameUserSettings.ini": tags: - config when: - os: windows - /Shadows/Saved/SaveGames: + "/Shadows/Saved/SaveGames": tags: - save when: @@ -527430,11 +528867,11 @@ Tametsi: installDir: Tandem a tale of shadows: {} launch: - /Shadows.exe: + "/Shadows.exe": - when: - os: windows store: steam - /Shadows.sh: + "/Shadows.sh": - when: - os: linux store: steam @@ -527442,7 +528879,7 @@ Tametsi: id: 1436920 Tangle Tower: files: - /Saves/*.sav: + "/Saves/*.sav": tags: - save when: @@ -527452,11 +528889,11 @@ Tangle Tower: installDir: Tangle Tower: {} launch: - /Tangle Tower.exe: + "/Tangle Tower.exe": - when: - os: windows store: steam - /TangleTowerSteamMac.app: + "/TangleTowerSteamMac.app": - when: - os: mac store: steam @@ -527464,7 +528901,7 @@ Tangle Tower: id: 359510 Tangled: files: - /Disney Interactive Studios/Tangled/savedata: + "/Disney Interactive Studios/Tangled/savedata": tags: - config - save @@ -527473,7 +528910,7 @@ Tangled: installDir: Disney Tangled: {} launch: - /Rapunzel.exe: + "/Rapunzel.exe": - when: - os: windows store: steam @@ -527483,15 +528920,15 @@ Tangled Up!: installDir: Tangled Up!: {} launch: - /Play.app: + "/Play.app": - when: - os: mac store: steam - /Play.exe: + "/Play.exe": - when: - os: windows store: steam - /Play.x86: + "/Play.x86": - when: - os: linux store: steam @@ -527499,27 +528936,27 @@ Tangled Up!: id: 502380 Tangledeep: files: - /AppData/LocalLow/ImpactGameworks/Tangledeep/*.dat: + "/AppData/LocalLow/ImpactGameworks/Tangledeep/*.dat": tags: - save when: - os: windows - /AppData/LocalLow/ImpactGameworks/Tangledeep/*.xml: + "/AppData/LocalLow/ImpactGameworks/Tangledeep/*.xml": tags: - save when: - os: windows - /AppData/LocalLow/ImpactGameworks/Tangledeep/preferences.xml: + "/AppData/LocalLow/ImpactGameworks/Tangledeep/preferences.xml": tags: - config when: - os: windows - /Library/Application Support/unity.ImpactGameworks.Tangledeep: + "/Library/Application Support/unity.ImpactGameworks.Tangledeep": tags: - save when: - os: mac - /unity3d/ImpactGameworks/Tangledeep: + "/unity3d/ImpactGameworks/Tangledeep": tags: - config - save @@ -527530,20 +528967,22 @@ Tangledeep: installDir: Tangledeep: {} launch: - /Tangledeep.app: + "/Tangledeep.app": - when: - os: mac store: steam - /Tangledeep.exe: + "/Tangledeep.exe": - when: - os: windows store: steam - /Tangledeep.x86: + "/Tangledeep.x86": - when: + - os: linux + store: steam - bit: 32 os: linux store: steam - /Tangledeep.x86_64: + "/Tangledeep.x86_64": - when: - bit: 64 os: linux @@ -527552,7 +528991,7 @@ Tangledeep: id: 628770 Tanglewood: files: - /tanglewood: + "/tanglewood": tags: - config - save @@ -527563,33 +529002,33 @@ Tanglewood: installDir: TANGLEWOOD: {} launch: - /tanglewd_linux_64.sh: + "/tanglewd_linux_64.sh": - when: - bit: 64 os: linux store: steam - /tanglewd_win_32.exe: + "/tanglewd_win_32.exe": - when: - bit: 32 os: windows store: steam - /tanglewd_win_64.exe: + "/tanglewd_win_64.exe": - when: - bit: 64 os: windows store: steam - /tanglewood.app/Contents/MacOS/tanglewd_osx_64: + "/tanglewood.app/Contents/MacOS/tanglewd_osx_64": - when: - os: mac store: steam steam: id: 837190 -'Tango 5 Reloaded: Grid Action Heroes': +"Tango 5 Reloaded: Grid Action Heroes": installDir: Tango5Reloaded: {} launch: - /nxsteam/nxsteam.exe: - - arguments: ./nxsteam/src/ + "/nxsteam/nxsteam.exe": + - arguments: "./nxsteam/src/" when: - store: steam steam: @@ -527598,25 +529037,25 @@ Tango Fiesta: installDir: Tango Fiesta: {} launch: - /TangoFiesta.app/Contents/MacOS/Tango Fiesta: + "/TangoFiesta.app/Contents/MacOS/Tango Fiesta": - when: - os: mac store: steam - /TangoFiesta.exe: + "/TangoFiesta.exe": - when: - os: windows store: steam steam: id: 276730 -'Tango: The Adventure Game': +"Tango: The Adventure Game": installDir: Tango The Adventure Game: {} launch: - /Tango.app/Contents/MacOS/Tango: + "/Tango.app/Contents/MacOS/Tango": - when: - os: mac store: steam - /Tango.exe: + "/Tango.exe": - when: - os: windows store: steam @@ -527626,11 +529065,11 @@ Tangrams Deluxe: installDir: Tangrams Deluxe: {} launch: - /TangramDeluxe.app: + "/TangramDeluxe.app": - when: - os: mac store: steam - /TangramDeluxe.exe: + "/TangramDeluxe.exe": - when: - os: windows store: steam @@ -527645,31 +529084,31 @@ TaniNani: installDir: TaniNani: {} launch: - /TaniNani.app: + "/TaniNani.app": - when: - os: mac store: steam - /TaniNani.exe: + "/TaniNani.exe": - when: - os: windows store: steam - /TaniNani.x86: + "/TaniNani.x86": - when: - bit: 32 os: linux store: steam - /TaniNani.x86_64: + "/TaniNani.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 1196800 -'Tanita: A Plasticine Dream': +"Tanita: A Plasticine Dream": installDir: Tanita a plasticine dream: {} launch: - /Tanita.exe: + "/Tanita.exe": - when: - store: steam steam: @@ -527678,7 +529117,7 @@ Tank 51: installDir: Tank 51: {} launch: - /Tank 51.exe: + "/Tank 51.exe": - when: - os: windows store: steam @@ -527688,15 +529127,15 @@ Tank Assault X: installDir: Tank Assault X: {} launch: - /TankAssaultX: + "/TankAssaultX": - when: - os: linux store: steam - /TankAssaultX.app: + "/TankAssaultX.app": - when: - os: mac store: steam - /TankAssaultX.exe: + "/TankAssaultX.exe": - when: - os: windows store: steam @@ -527706,7 +529145,7 @@ Tank Ball: installDir: Tank Ball: {} launch: - /TankBall.exe: + "/TankBall.exe": - when: - os: windows store: steam @@ -527716,11 +529155,11 @@ Tank Battle Heroes: installDir: Tank Battle Heroes: {} launch: - /TankBattleHeroes.app: + "/TankBattleHeroes.app": - when: - os: mac store: steam - /TankBattleHeroes.exe: + "/TankBattleHeroes.exe": - when: - bit: 64 os: windows @@ -527730,99 +529169,99 @@ Tank Battle Heroes: Tank Battle Mania: steam: id: 661090 -'Tank Battle: 1944': +"Tank Battle: 1944": installDir: Tank Battle 1944: {} launch: - /TankBattle1944.app: + "/TankBattle1944.app": - when: - os: mac store: steam - /TankBattle1944.exe: + "/TankBattle1944.exe": - when: - os: windows store: steam steam: id: 396320 -'Tank Battle: 1945': +"Tank Battle: 1945": installDir: Tank Battle 1945: {} launch: - /TankBattle1945.app: + "/TankBattle1945.app": - when: - os: mac store: steam - /TankBattle1945.exe: + "/TankBattle1945.exe": - when: - os: windows store: steam steam: id: 540250 -'Tank Battle: Blitzkrieg': +"Tank Battle: Blitzkrieg": installDir: Tank Battle Blitzkrieg: {} launch: - /Blitzkrieg.app: + "/Blitzkrieg.app": - when: - os: mac store: steam - /Blitzkrieg.exe: + "/Blitzkrieg.exe": - when: - os: windows store: steam steam: id: 540150 -'Tank Battle: East Front': +"Tank Battle: East Front": installDir: Tank Battle East Front: {} launch: - /TankBattleEastFront.app: + "/TankBattleEastFront.app": - when: - os: mac store: steam - /TankBattleEastFront.exe: + "/TankBattleEastFront.exe": - when: - os: windows store: steam steam: id: 613120 -'Tank Battle: Normandy': +"Tank Battle: Normandy": installDir: Tank Battle Normandy: {} launch: - /TankBattleNormandy.app: + "/TankBattleNormandy.app": - when: - os: mac store: steam - /TankBattleNormandy.exe: + "/TankBattleNormandy.exe": - when: - os: windows store: steam steam: id: 374940 -'Tank Battle: North Africa': +"Tank Battle: North Africa": installDir: Tank Battle North Africa: {} launch: - /TankBattleNorthAfrica.app: + "/TankBattleNorthAfrica.app": - when: - os: mac store: steam - /TankBattleNorthAfrica.exe: + "/TankBattleNorthAfrica.exe": - when: - os: windows store: steam steam: id: 465750 -'Tank Battle: Pacific': +"Tank Battle: Pacific": installDir: Tank Battle Pacific: {} launch: - /TankBattlePacific.app: + "/TankBattlePacific.app": - when: - os: mac store: steam - /TankBattlePacific.exe: + "/TankBattlePacific.exe": - when: - os: windows store: steam @@ -527835,7 +529274,7 @@ Tank Blazers: installDir: Tank Blazers: {} launch: - /TankBlazers.exe: + "/TankBlazers.exe": - when: - os: windows store: steam @@ -527845,20 +529284,20 @@ Tank Brawl: installDir: Tank Brawl: {} launch: - /binaries/win32/udk.exe: - - arguments: '-d3d11 -windowed' + "/binaries/win32/udk.exe": + - arguments: "-d3d11 -windowed" when: - os: windows store: steam - - arguments: '-d3d11 -fullscreen' + - arguments: "-d3d11 -fullscreen" when: - os: windows store: steam - - arguments: '-d3d9 -windowed' + - arguments: "-d3d9 -windowed" when: - os: windows store: steam - - arguments: '-d3d9 -fullscreen' + - arguments: "-d3d9 -fullscreen" when: - os: windows store: steam @@ -527868,10 +529307,10 @@ Tank Brawl 2: installDir: Tank Brawl 2: {} launch: - /Arm.exe: + "/Arm.exe": - when: - store: steam - - arguments: '-dx11' + - arguments: "-dx11" when: - os: windows store: steam @@ -527884,8 +529323,11 @@ Tank Defense Division: installDir: Tank Defense Division: {} launch: - /TankDefenseDivision.exe: + "/TankDefenseDivision.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam @@ -527895,7 +529337,7 @@ Tank Destroyer: installDir: Tank Destroyer: {} launch: - /Tank Destroyer.exe: + "/Tank Destroyer.exe": - when: - os: windows store: steam @@ -527905,15 +529347,15 @@ Tank Force: installDir: Tank Force: {} launch: - /TankForce.app: + "/TankForce.app": - when: - os: mac store: steam - /TankForce.exe: + "/TankForce.exe": - when: - os: windows store: steam - /TankForce.x86_64: + "/TankForce.x86_64": - when: - os: linux store: steam @@ -527931,7 +529373,7 @@ Tank Hurricane: installDir: Tank Hurricane: {} launch: - /Tank Hurricane.exe: + "/Tank Hurricane.exe": - when: - store: steam steam: @@ -527940,7 +529382,7 @@ Tank Impact: installDir: Tank Impact: {} launch: - /Tank Impact.exe: + "/Tank Impact.exe": - when: - store: steam steam: @@ -527952,20 +529394,20 @@ Tank Maniacs: installDir: Tank Maniacs: {} launch: - /TankManiacs.exe: + "/TankManiacs.exe": - when: - os: windows store: steam - /tankmaniacs.app/Contents/MacOS/tankmaniacs: + "/tankmaniacs.app/Contents/MacOS/tankmaniacs": - when: - os: mac store: steam - /tankmaniacs.x86: + "/tankmaniacs.x86": - when: - bit: 32 os: linux store: steam - /tankmaniacs.x86_64: + "/tankmaniacs.x86_64": - when: - bit: 64 os: linux @@ -527976,11 +529418,11 @@ Tank Mechanic Simulator: installDir: TankMechanicSimulator: {} launch: - /TankMechanicSimulator.app/Contents/MacOS/TankMechanicSimulator: + "/TankMechanicSimulator.app/Contents/MacOS/TankMechanicSimulator": - when: - os: mac store: steam - /TankMechanicSimulator.exe: + "/TankMechanicSimulator.exe": - when: - os: windows store: steam @@ -527995,15 +529437,15 @@ Tank Nova: installDir: Tank Nova: {} launch: - /Mac.app/Contents/MacOS/Tank Nova: + "/Mac.app/Contents/MacOS/Tank Nova": - when: - os: mac store: steam - /Tank Nova.exe: + "/Tank Nova.exe": - when: - os: windows store: steam - /Tank Nova.x86_64: + "/Tank Nova.x86_64": - when: - os: linux store: steam @@ -528013,24 +529455,24 @@ Tank On Tank Digital - West Front: installDir: Tank On Tank Digital - West Front: {} launch: - /TankOnTank.app: + "/TankOnTank.app": - when: - os: mac store: steam - /TonT.exe: + "/TonT.exe": - when: - os: windows store: steam steam: id: 613860 -'Tank Operations: European Campaign': +"Tank Operations: European Campaign": files: - /Linked Dimensions/Tank Operations - European Campaign/saves: + "/Linked Dimensions/Tank Operations - European Campaign/saves": tags: - save when: - os: windows - /Linked Dimensions/Tank Operations - European Campaign/settings.tec: + "/Linked Dimensions/Tank Operations - European Campaign/settings.tec": tags: - config when: @@ -528038,13 +529480,13 @@ Tank On Tank Digital - West Front: installDir: Tank Operations European Campaign: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam steam: id: 258240 -'Tank Operations: European Campaign REMASTERED': +"Tank Operations: European Campaign REMASTERED": installDir: Tank Operations: {} steam: @@ -528053,11 +529495,11 @@ Tank Royale: installDir: Tank Royale: {} launch: - /TankRoyale.app/Contents/MacOS/TankRoyale: + "/TankRoyale.app/Contents/MacOS/TankRoyale": - when: - os: mac store: steam - /TankRoyale.exe: + "/TankRoyale.exe": - when: - os: windows store: steam @@ -528067,7 +529509,7 @@ Tank Rush: installDir: Tank rush: {} launch: - /tank.exe: + "/tank.exe": - when: - os: windows store: steam @@ -528077,7 +529519,7 @@ Tank Slam: installDir: Tank Slam: {} launch: - /TankSlam.exe: + "/TankSlam.exe": - when: - os: windows store: steam @@ -528087,7 +529529,7 @@ Tank Souls: installDir: TANK_SOULS: {} launch: - /TANK SOULS.exe: + "/TANK SOULS.exe": - when: - store: steam steam: @@ -528096,12 +529538,12 @@ Tank Tread: installDir: Tank Tread: {} launch: - /TankTread.app/Contents/MacOS/TankTread: + "/TankTread.app/Contents/MacOS/TankTread": - when: - bit: 64 os: mac store: steam - /TankTread.exe: + "/TankTread.exe": - when: - bit: 64 os: windows @@ -528112,7 +529554,7 @@ Tank Universal: installDir: Tank Universal SteamWorks Edition: {} launch: - /TU.exe: + "/TU.exe": - when: - store: steam steam: @@ -528121,13 +529563,13 @@ Tank Universal 2: installDir: Tank Universal 2: {} launch: - /BIN/TU2_GAME.exe: + "/BIN/TU2_GAME.exe": - when: - os: windows store: steam steam: id: 523030 -'Tank Warfare: Tunisia 1943': +"Tank Warfare: Tunisia 1943": gog: id: 2000269982 id: @@ -528143,18 +529585,18 @@ Tank Universal 2: installDir: Tank Warfare Tunisia 1943: {} launch: - /starter_x64.exe: + "/starter_x64.exe": - when: - bit: 64 os: windows store: steam steam: id: 549080 -'Tank Wars: Anniversary Edition': +"Tank Wars: Anniversary Edition": installDir: TankWars Anniversary Edition: {} launch: - /tankwars.exe: + "/tankwars.exe": - when: - os: windows store: steam @@ -528164,7 +529606,7 @@ Tank Warz!: installDir: Tank Warz!: {} launch: - /Tank Warz!.exe: + "/Tank Warz!.exe": - when: - os: windows store: steam @@ -528174,7 +529616,7 @@ Tank battle: installDir: Tank battle: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: @@ -528188,7 +529630,7 @@ Tank raid: installDir: Tank raid: {} launch: - /Tank raid.exe: + "/Tank raid.exe": - when: - store: steam steam: @@ -528197,44 +529639,44 @@ Tank survival game: installDir: GoGoGo: {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: id: 946690 -'Tank: M1A1 Abrams Battle Simulation': +"Tank: M1A1 Abrams Battle Simulation": installDir: Tank The M1A1 ABTS: {} launch: - /dosbox_linux/daum/launch_m1a1abs_game_daum.sh: + "/dosbox_linux/daum/launch_m1a1abs_game_daum.sh": - when: - os: linux store: steam - workingDir: /dosbox_linux/daum - /dosbox_linux/launch_m1a1abs_game.sh: + workingDir: "/dosbox_linux/daum" + "/dosbox_linux/launch_m1a1abs_game.sh": - when: - os: linux store: steam - workingDir: /dosbox_linux - /dosbox_windows/daum/dosbox.exe: - - arguments: '-conf dosbox_m1a1abs.conf -conf dosbox_m1a1abs_launch_windows.conf -noconsole' + workingDir: "/dosbox_linux" + "/dosbox_windows/daum/dosbox.exe": + - arguments: "-conf dosbox_m1a1abs.conf -conf dosbox_m1a1abs_launch_windows.conf -noconsole" when: - os: windows store: steam - workingDir: /dosbox_windows/daum - /dosbox_windows/dosbox.exe: - - arguments: '-conf dosbox_m1a1abs.conf -conf dosbox_m1a1abs_launch_windows.conf -noconsole' + workingDir: "/dosbox_windows/daum" + "/dosbox_windows/dosbox.exe": + - arguments: "-conf dosbox_m1a1abs.conf -conf dosbox_m1a1abs_launch_windows.conf -noconsole" when: - os: windows store: steam - workingDir: /dosbox_windows + workingDir: "/dosbox_windows" steam: id: 410550 TankBlitz: installDir: TankBlitz: {} launch: - /TankBlitz.exe: + "/TankBlitz.exe": - when: - os: windows store: steam @@ -528244,7 +529686,7 @@ TankCraft: installDir: TankCraft: {} launch: - /tankcraft.exe: + "/tankcraft.exe": - when: - os: windows store: steam @@ -528254,8 +529696,8 @@ TankDestruction: installDir: TankDestruction: {} launch: - /TankDestruction.exe: - - arguments: '-steam' + "/TankDestruction.exe": + - arguments: "-steam" when: - bit: 64 os: windows @@ -528271,8 +529713,11 @@ TankYou!: installDir: TankYou!: {} launch: - /TankYou.exe: + "/TankYou.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam @@ -528282,7 +529727,7 @@ TankZone Battle: installDir: TankZoneBattle: {} launch: - /TankZoneBattle.exe: + "/TankZoneBattle.exe": - when: - os: windows store: steam @@ -528295,7 +529740,7 @@ Tankex: installDir: Tankex: {} launch: - /Tankex.exe: + "/Tankex.exe": - when: - store: steam steam: @@ -528304,12 +529749,12 @@ Tanki Online: installDir: Tanki Online: {} launch: - /Tanki Online.app: + "/Tanki Online.app": - when: - os: mac store: steam - workingDir: /Tanki Online - /Tanki Online.exe: + workingDir: "/Tanki Online" + "/Tanki Online.exe": - when: - os: windows store: steam @@ -528319,11 +529764,11 @@ Tanki X: installDir: Tanki X: {} launch: - /tankix.app: + "/tankix.app": - when: - os: mac store: steam - /tankix.exe: + "/tankix.exe": - when: - os: windows store: steam @@ -528339,7 +529784,7 @@ Tankorama: installDir: Tankorama: {} launch: - /TankoramaTheGame.exe: + "/TankoramaTheGame.exe": - when: - os: windows store: steam @@ -528352,20 +529797,20 @@ Tankr: installDir: Tankr: {} launch: - /Tankr.app/Contents/MacOS/Tankr: + "/Tankr.app/Contents/MacOS/Tankr": - when: - os: mac store: steam - /Tankr.exe: + "/Tankr.exe": - when: - os: windows store: steam - /Tankr.x86: + "/Tankr.x86": - when: - bit: 32 os: linux store: steam - /Tankr.x86_64: + "/Tankr.x86_64": - when: - bit: 64 os: linux @@ -528376,7 +529821,7 @@ Tankrovia: installDir: Tankrovia: {} launch: - /Tankrovia.exe: + "/Tankrovia.exe": - when: - bit: 64 os: windows @@ -528387,7 +529832,7 @@ Tanks: installDir: TANKS: {} launch: - /TANKS.exe: + "/TANKS.exe": - when: - os: windows store: steam @@ -528397,7 +529842,7 @@ Tanks 2020: installDir: Tanks 2020: {} launch: - /tanks 2020.exe: + "/tanks 2020.exe": - when: - os: windows store: steam @@ -528407,7 +529852,7 @@ Tanks Endeavor: installDir: Tanks Endeavor: {} launch: - /Tanks Endeavor.exe: + "/Tanks Endeavor.exe": - when: - os: windows store: steam @@ -528417,7 +529862,7 @@ Tanks Meet Zombies: installDir: Tanks Meet Zombies: {} launch: - /TanksMeetZombies.exe: + "/TanksMeetZombies.exe": - when: - os: windows store: steam @@ -528431,21 +529876,21 @@ Tanks VR: Tanks VS Demons: steam: id: 1073690 -'Tanks With Hands: Armed and Treaded': +"Tanks With Hands: Armed and Treaded": installDir: Tanks With Hands Armed and Treaded: {} launch: - /TanksWithHands/TanksWithHands.exe: + "/TanksWithHands/TanksWithHands.exe": - when: - os: windows store: steam steam: id: 920580 -'Tanks and Guns : Battle Supreme': +"Tanks and Guns : Battle Supreme": installDir: TanksAndGuns: {} launch: - /TanksAndGuns.exe: + "/TanksAndGuns.exe": - when: - bit: 64 os: windows @@ -528459,11 +529904,11 @@ Tanks vs Aliens: installDir: Tanks vs Aliens: {} launch: - /Tanks.app/Contents/MacOS/Tanks: + "/Tanks.app/Contents/MacOS/Tanks": - when: - os: mac store: steam - /Tanks.exe: + "/Tanks.exe": - when: - os: windows store: steam @@ -528473,12 +529918,12 @@ Tanks2.DE: installDir: Tanks2de: {} launch: - /t2d.exe: + "/t2d.exe": - when: - bit: 64 os: windows store: steam - /t2d.x86_64: + "/t2d.x86_64": - when: - bit: 64 os: linux @@ -528490,12 +529935,12 @@ Tanky Tanks: id: 1112410 Tannenberg: files: - /.config/unity3d/WW1 Game Series/WW1 Game Series: + "/.config/unity3d/WW1 Game Series/WW1 Game Series": tags: - config when: - os: linux - /userdata//633460/remote: + "/userdata//633460/remote": tags: - save when: @@ -528503,18 +529948,18 @@ Tannenberg: installDir: WW1GameSeries: {} launch: - /Tannenberg/Tannenberg: + "/Tannenberg/Tannenberg": - arguments: tannenberg when: - bit: 64 os: linux store: steam - /Tannenberg/Tannenberg.app/Contents/MacOS/WW1 Game Series: + "/Tannenberg/Tannenberg.app/Contents/MacOS/WW1 Game Series": - arguments: tannenberg when: - os: mac store: steam - /Tannenberg/Tannenberg.exe: + "/Tannenberg/Tannenberg.exe": - arguments: tannenberg when: - os: windows @@ -528525,14 +529970,14 @@ Tannenberg: - config steam: id: 633460 -Tano's Fate: +"Tano's Fate": steam: id: 888910 Tanzia: installDir: Tanzia: {} launch: - /Tanzia.exe: + "/Tanzia.exe": - when: - os: windows store: steam @@ -528541,34 +529986,34 @@ Tanzia: Tap & Clapp: steam: id: 770740 -'Tap Adventure: Time Travel': +"Tap Adventure: Time Travel": installDir: Tap Adventure Time Travel: {} launch: - /TapAdventure: + "/TapAdventure": - when: - bit: 64 os: linux store: steam - /TapAdventure.app: + "/TapAdventure.app": - when: - os: mac store: steam - /TapAdventure.exe: + "/TapAdventure.exe": - when: - os: windows store: steam steam: id: 596650 -'Tap Cats: Battle Arena': +"Tap Cats: Battle Arena": installDir: Tap Cats Battle Arena: {} launch: - /Battle Arena.exe: + "/Battle Arena.exe": - when: - os: windows store: steam - /TCCG_OSX.app: + "/TCCG_OSX.app": - when: - os: mac store: steam @@ -528576,7 +530021,7 @@ Tap & Clapp: id: 864920 Tap Heroes: files: - /MMFApplications/x1nntp.ini: + "/MMFApplications/x1nntp.ini": tags: - config - save @@ -528585,7 +530030,7 @@ Tap Heroes: installDir: Tap Heroes: {} launch: - /Tap Heroes.exe: + "/Tap Heroes.exe": - when: - os: windows store: steam @@ -528595,11 +530040,11 @@ Tap Tap Infinity: installDir: Tap Tap Infinity: {} launch: - /Tap Tap Infinity.app: + "/Tap Tap Infinity.app": - when: - os: mac store: steam - /TapTapInfinity.exe: + "/TapTapInfinity.exe": - when: - os: windows store: steam @@ -528614,15 +530059,15 @@ Tap Tap Legions - Epic battles within 5 seconds!: installDir: Tap Tap Legions - Epic battles within 5 seconds!: {} launch: - /TapTapLegions.app: + "/TapTapLegions.app": - when: - os: mac store: steam - /TapTapLegions.exe: + "/TapTapLegions.exe": - when: - os: windows store: steam - /TapTapLegions.x86: + "/TapTapLegions.x86": - when: - os: linux store: steam @@ -528635,7 +530080,7 @@ TapRPG - Homeland: installDir: TapRPG - Homeland: {} launch: - /TapRPGPC.exe: + "/TapRPGPC.exe": - when: - os: windows store: steam @@ -528645,7 +530090,7 @@ TapRPG 2 - The Second One: installDir: TapRPG - The Second One: {} launch: - /TapRPG2.exe: + "/TapRPG2.exe": - when: - store: steam steam: @@ -528659,12 +530104,12 @@ Tape to Tape: installDir: Tape to Tape: {} launch: - /Tape to Tape.exe: + "/Tape to Tape.exe": - when: - store: steam steam: id: 1566200 -'Taphouse 2: The Taphousening': +"Taphouse 2: The Taphousening": steam: id: 1008900 Taphouse VR: @@ -528679,8 +530124,8 @@ Taptiles: installDir: Taptiles: {} launch: - /Taptiles.exe: - - arguments: '-screen-fullscreen' + "/Taptiles.exe": + - arguments: "-screen-fullscreen" when: - os: windows store: steam @@ -528690,7 +530135,7 @@ Taras Bulba and platforms of Hoolion: installDir: Taras Bulba and platforms of Hoolion: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -528698,12 +530143,12 @@ Taras Bulba and platforms of Hoolion: id: 688780 Tardy: files: - /AppData/LocalLow/Tardy Team/Tardy/Config.cnfg: + "/AppData/LocalLow/Tardy Team/Tardy/Config.cnfg": tags: - config when: - os: windows - /AppData/LocalLow/Tardy Team/Tardy/Saves: + "/AppData/LocalLow/Tardy Team/Tardy/Saves": tags: - save when: @@ -528711,20 +530156,20 @@ Tardy: installDir: Tardy: {} launch: - /Tardy.app: + "/Tardy.app": - when: - os: mac store: steam - /Tardy.exe: + "/Tardy.exe": - when: - os: windows store: steam - /Tardy.x86: + "/Tardy.x86": - when: - bit: 32 os: linux store: steam - /Tardy.x86_64: + "/Tardy.x86_64": - when: - bit: 64 os: linux @@ -528737,7 +530182,7 @@ Tardy: id: 815000 Target (1998): files: - /chr: + "/chr": tags: - config - save @@ -528750,21 +530195,21 @@ Target Speed: installDir: Target speed: {} launch: - /Target speed.exe: + "/Target speed.exe": - when: - os: windows store: steam steam: id: 755230 -'Target of Desire: Episode 1': +"Target of Desire: Episode 1": files: - /Osgoode_Media/TargetOfDesireEpisode1.ex_StrongName_yzz1cgmyc0znge4meeuoojar2pvvurew/1.0.0.0/user.config: + "/Osgoode_Media/TargetOfDesireEpisode1.ex_StrongName_yzz1cgmyc0znge4meeuoojar2pvvurew/1.0.0.0/user.config": tags: - config - save when: - os: windows - /Packages/16591Monstrous.TargetofDesireEpisode1_skedv6py88bbr/Settings/settings.dat: + "/Packages/16591Monstrous.TargetofDesireEpisode1_skedv6py88bbr/Settings/settings.dat": tags: - config - save @@ -528775,28 +530220,28 @@ Tarim: installDir: Tarim: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam - /tarim_the_guardians.app/Contents/MacOS/nwjs: + "/tarim_the_guardians.app/Contents/MacOS/nwjs": - when: - os: mac store: steam steam: id: 603060 -'Taro: a fluffy visual novel': +"Taro: a fluffy visual novel": steam: id: 1178890 Tarotica Voo Doo: installDir: TAROTICA VOO DOO: {} launch: - /180621/TaroticaVooDoo.exe: + "/180621/TaroticaVooDoo.exe": - when: - os: windows store: steam - /TaroticaVooDoo.exe: + "/TaroticaVooDoo.exe": - when: - os: windows store: steam @@ -528806,7 +530251,7 @@ Tartapolis: installDir: Tartapolis: {} launch: - /Tartapolis.exe: + "/Tartapolis.exe": - when: - os: windows store: steam @@ -528814,12 +530259,12 @@ Tartapolis: id: 1072110 Tartarus: files: - /TARTARUS/Saved/Config/WindowsNoEditor: + "/TARTARUS/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /TARTARUS/Saved/SaveGames: + "/TARTARUS/Saved/SaveGames": tags: - save when: @@ -528827,12 +530272,12 @@ Tartarus: installDir: TARTARUS: {} launch: - /TARTARUS.exe: + "/TARTARUS.exe": - when: - bit: 64 os: windows store: steam - /TARTARUS.sh: + "/TARTARUS.sh": - when: - bit: 64 os: linux @@ -528841,7 +530286,7 @@ Tartarus: id: 608530 Tarzan (1999): files: - /tarzan.cfg: + "/tarzan.cfg": tags: - config - save @@ -528856,61 +530301,61 @@ Task Force: installDir: Task Force: {} launch: - /TaskForce.app/Contents/MacOS/TaskForce: + "/TaskForce.app/Contents/MacOS/TaskForce": - when: - os: mac store: steam - /TaskForce.exe: + "/TaskForce.exe": - when: - bit: 64 os: windows store: steam - /TaskForce.sh: + "/TaskForce.sh": - when: - os: linux store: steam steam: id: 611300 -'Task Force 1942: Surface Naval Action in the South Pacific': +"Task Force 1942: Surface Naval Action in the South Pacific": installDir: Task Force 1942: {} launch: - /Task Force 1942.app: + "/Task Force 1942.app": - when: - os: mac store: steam - /dosbox_linux/daum/launch_taskforce1942_game_daum.sh: + "/dosbox_linux/daum/launch_taskforce1942_game_daum.sh": - when: - os: linux store: steam - workingDir: /dosbox_linux/daum - /dosbox_linux/launch_taskforce1942_config.sh: + workingDir: "/dosbox_linux/daum" + "/dosbox_linux/launch_taskforce1942_config.sh": - when: - os: linux store: steam - workingDir: /dosbox_linux - /dosbox_linux/launch_taskforce1942_game.sh: + workingDir: "/dosbox_linux" + "/dosbox_linux/launch_taskforce1942_game.sh": - when: - os: linux store: steam - workingDir: /dosbox_linux - /dosbox_windows/daum/dosbox.exe: - - arguments: '-conf dosbox_taskforce1942.conf -conf dosbox_taskforce1942_launch_windows.conf -noconsole' + workingDir: "/dosbox_linux" + "/dosbox_windows/daum/dosbox.exe": + - arguments: "-conf dosbox_taskforce1942.conf -conf dosbox_taskforce1942_launch_windows.conf -noconsole" when: - os: windows store: steam - workingDir: /dosbox_windows/daum - /dosbox_windows/dosbox.exe: - - arguments: '-conf dosbox_taskforce1942.conf -conf dosbox_taskforce1942_launch_windows.conf -noconsole' + workingDir: "/dosbox_windows/daum" + "/dosbox_windows/dosbox.exe": + - arguments: "-conf dosbox_taskforce1942.conf -conf dosbox_taskforce1942_launch_windows.conf -noconsole" when: - os: windows store: steam - workingDir: /dosbox_windows - - arguments: '-conf dosbox_taskforce1942.conf -conf dosbox_taskforce1942_config_windows.conf -noconsole' + workingDir: "/dosbox_windows" + - arguments: "-conf dosbox_taskforce1942.conf -conf dosbox_taskforce1942_config_windows.conf -noconsole" when: - os: windows store: steam - workingDir: /dosbox_windows + workingDir: "/dosbox_windows" steam: id: 329680 Task is to Survive: @@ -528918,28 +530363,28 @@ Task is to Survive: Task is to Survive: {} steam: id: 735410 -'TaskForce Gamma-13: An SCP Tale': +"TaskForce Gamma-13: An SCP Tale": installDir: MTF Gamma-13: {} launch: - /MTF_G13.exe: + "/MTF_G13.exe": - when: - os: windows store: steam - /MTF_G13.sh: + "/MTF_G13.sh": - when: - bit: 64 os: linux store: steam steam: id: 1199770 -'Tasomachi: Behind the Twilight': +"Tasomachi: Behind the Twilight": gog: id: 1584589683 installDir: TASOMACHI: {} launch: - /tasomachi.exe: + "/tasomachi.exe": - when: - store: steam steam: @@ -528948,15 +530393,15 @@ Taste of Power: installDir: Taste of Power: {} launch: - /Taste of Power Early access Linux.x86_64: + "/Taste of Power Early access Linux.x86_64": - when: - os: linux store: steam - /Taste of Power Early access MAC.app/Contents/MacOS/Taste of Power Early access MAC: + "/Taste of Power Early access MAC.app/Contents/MacOS/Taste of Power Early access MAC": - when: - os: mac store: steam - /Taste of Power.exe: + "/Taste of Power.exe": - when: - bit: 64 os: windows @@ -528969,7 +530414,7 @@ TasteMaker: installDir: Tastemaker: {} launch: - /TasteMaker.exe: + "/TasteMaker.exe": - when: - os: windows store: steam @@ -528979,11 +530424,11 @@ Tasty Blue: installDir: Tasty Blue: {} launch: - /Tasty Blue.app: + "/Tasty Blue.app": - when: - os: mac store: steam - /tastyblue.exe: + "/tastyblue.exe": - when: - os: windows store: steam @@ -528993,11 +530438,11 @@ Tasty Planet: installDir: Tasty Planet: {} launch: - /Tasty Planet.app: + "/Tasty Planet.app": - when: - os: mac store: steam - /tastyplanet.exe: + "/tastyplanet.exe": - when: - os: windows store: steam @@ -529007,25 +530452,25 @@ Tasty Planet Forever: installDir: Tasty Planet Forever: {} launch: - /Tasty Planet Forever.app: + "/Tasty Planet Forever.app": - when: - os: mac store: steam - /tastyplanet4.exe: + "/tastyplanet4.exe": - when: - os: windows store: steam steam: id: 946010 -'Tasty Planet: Back for Seconds': +"Tasty Planet: Back for Seconds": installDir: Tasty Planet Back for Seconds: {} launch: - /Tasty Planet 2.app: + "/Tasty Planet 2.app": - when: - os: mac store: steam - /tastyplanet2.exe: + "/tastyplanet2.exe": - when: - os: windows store: steam @@ -529038,15 +530483,15 @@ Tatsu: installDir: Tatsu: {} launch: - /Tatsu: + "/Tatsu": - when: - os: linux store: steam - /Tatsu.app: + "/Tatsu.app": - when: - os: mac store: steam - /Tatsu.exe: + "/Tatsu.exe": - when: - os: windows store: steam @@ -529056,26 +530501,21 @@ Tattletail: installDir: Tattletail: {} launch: - /tattletailMac.app: + "/tattletailMac.app": - when: - os: mac store: steam - /tattletailWindows.exe: + "/tattletailWindows.exe": - when: - os: windows store: steam - registry: - HKEY_CURRENT_USER/Software/Waygetter Electronics/Tattletail: - tags: - - config - - save steam: id: 568090 Tau Defense: installDir: Dofense: {} launch: - /Dofense.exe: + "/Dofense.exe": - when: - os: windows store: steam @@ -529085,7 +530525,7 @@ Taur: installDir: Taur: {} launch: - /Taur.exe: + "/Taur.exe": - when: - os: windows store: steam @@ -529095,7 +530535,7 @@ Tauronos: installDir: TAURONOS: {} launch: - /TAURONOS.exe: + "/TAURONOS.exe": - when: - os: windows store: steam @@ -529110,17 +530550,17 @@ Tavern Cards: installDir: Tavern Cards: {} launch: - /TAVERNACARDS.exe: + "/TAVERNACARDS.exe": - when: - os: windows store: steam steam: id: 1221240 -'Tavern Guardians: Banquet': +"Tavern Guardians: Banquet": installDir: TAVERN GUARDIANS BANQUET: {} launch: - /TAVERN_GUARDIANS_BANQUET.exe: + "/TAVERN_GUARDIANS_BANQUET.exe": - when: - os: windows store: steam @@ -529128,14 +530568,17 @@ Tavern Cards: id: 878350 Tavern Keep: installDir: - The Fiend's Tavern: {} + "The Fiend's Tavern": {} launch: - /The Fiend's Tavern.app/Contents/MacOS/The Fiend's Tavern: + "/The Fiend's Tavern.app/Contents/MacOS/The Fiend's Tavern": - when: - os: mac store: steam - /The Fiend's Tavern.exe: + "/The Fiend's Tavern.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam @@ -529143,22 +530586,22 @@ Tavern Keep: id: 870510 Tavern Master: files: - /.config/unity3d/Untitled Studio/Tavern Master: + "/.config/unity3d/Untitled Studio/Tavern Master": tags: - save when: - os: linux - /AppData/LocalLow/Untitled Studio/Tavern Master/CustomSave/*.json: + "/AppData/LocalLow/Untitled Studio/Tavern Master/CustomSave/*.json": tags: - save when: - os: windows - /AppData/LocalLow/Untitled Studio/Tavern Master/save_autosave_full.json: + "/AppData/LocalLow/Untitled Studio/Tavern Master/save_autosave_full.json": tags: - save when: - os: windows - /Library/Application Support/com.UntitledStudio.TavernMaster: + "/Library/Application Support/com.UntitledStudio.TavernMaster": tags: - save when: @@ -529174,15 +530617,15 @@ Tavern Master: installDir: Tavern Master: {} launch: - /Tavern Master.exe: + "/Tavern Master.exe": - when: - os: windows store: steam - /TavernMaster.x86_64: + "/TavernMaster.x86_64": - when: - os: linux store: steam - /TavernMaster_Mac.app/Contents/MacOS/Tavern Master: + "/TavernMaster_Mac.app/Contents/MacOS/Tavern Master": - when: - os: mac store: steam @@ -529196,17 +530639,17 @@ Tavern Table Tactics: installDir: TavernTableTactics: {} launch: - /TavernTableTactics.exe: + "/TavernTableTactics.exe": - when: - os: windows store: steam steam: id: 782290 -Tavern Tycoon - Dragon's Hangover: +"Tavern Tycoon - Dragon's Hangover": installDir: Tavern Tycoon: {} launch: - /TavernTycoon.exe: + "/TavernTycoon.exe": - when: - store: steam steam: @@ -529215,7 +530658,7 @@ Tavernier: installDir: Tavernier: {} launch: - /Tavernier.exe: + "/Tavernier.exe": - when: - os: windows store: steam @@ -529225,7 +530668,7 @@ Taxi: installDir: Taxi: {} launch: - /taxi.exe: + "/taxi.exe": - when: - os: windows store: steam @@ -529235,7 +530678,7 @@ Taxi (2016): installDir: Taxi: {} launch: - /Taxi.exe: + "/Taxi.exe": - when: - os: windows store: steam @@ -529245,7 +530688,7 @@ Taxi Chaos: installDir: Taxi Chaos: {} launch: - /Taxi/Binaries/Win64/Taxi-Win64-Shipping.exe: + "/Taxi/Binaries/Win64/Taxi-Win64-Shipping.exe": - when: - bit: 64 os: windows @@ -529259,23 +530702,23 @@ Taxidermy: installDir: TAXIDERMY: {} launch: - /HORROR.exe: + "/HORROR.exe": - when: - os: windows store: steam steam: id: 1208490 -Tayutama 2 -You're the Only One-: +"Tayutama 2 -You're the Only One-": steam: id: 705570 -'Taz: Wanted': +"Taz: Wanted": files: - /Taz.dat: + "/Taz.dat": tags: - config when: - os: windows - /TazWanted.sav: + "/TazWanted.sav": tags: - save when: @@ -529284,7 +530727,7 @@ Tcheco in the Castle of Lucio: installDir: Tcheco in the Castle of Lucio: {} launch: - /TCHECO.exe: + "/TCHECO.exe": - when: - os: windows store: steam @@ -529292,12 +530735,12 @@ Tcheco in the Castle of Lucio: id: 377600 Tchia: files: - /Tchia/Saved/Config/WindowsNoEditor: + "/Tchia/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /Tchia/Saved/SaveGames: + "/Tchia/Saved/SaveGames": tags: - save when: @@ -529308,24 +530751,24 @@ Tea Party Simulator 2015: installDir: Tea Party Simulator 2015: {} launch: - /TeaPartySimulator.app: + "/TeaPartySimulator.app": - when: - os: mac store: steam - /TeaPartySimulator.exe: + "/TeaPartySimulator.exe": - when: - os: windows store: steam - - arguments: '-force-d3d9' + - arguments: "-force-d3d9" when: - os: windows store: steam - /TeaPartySimulator.x86: + "/TeaPartySimulator.x86": - when: - bit: 32 os: linux store: steam - /TeaPartySimulator.x86_64: + "/TeaPartySimulator.x86_64": - when: - bit: 64 os: linux @@ -529336,7 +530779,7 @@ Teacup: installDir: Teacup: {} launch: - /Teacup.exe: + "/Teacup.exe": - when: - store: steam steam: @@ -529345,12 +530788,12 @@ Teal: installDir: Teal: {} launch: - /Teal.exe: + "/Teal.exe": - when: - bit: 64 os: windows store: steam - /Teal.sh: + "/Teal.sh": - when: - bit: 64 os: linux @@ -529361,16 +530804,16 @@ Team A.R.G. Anthology: installDir: Team A.R.G. Anthology: {} launch: - /anthology: + "/anthology": - when: - bit: 64 os: linux store: steam - /anthology-osx: + "/anthology-osx": - when: - os: mac store: steam - /anthology.exe: + "/anthology.exe": - when: - bit: 64 os: windows @@ -529379,7 +530822,7 @@ Team A.R.G. Anthology: id: 893490 Team Fortress 2: files: - /tf/cfg: + "/tf/cfg": tags: - config when: @@ -529387,18 +530830,18 @@ Team Fortress 2: installDir: Team Fortress 2: {} launch: - /hl2.exe: - - arguments: '-steam -game tf' + "/hl2.exe": + - arguments: "-steam -game tf" when: - os: windows store: steam - /hl2.sh: - - arguments: '-game tf -steam' + "/hl2.sh": + - arguments: "-game tf -steam" when: - os: linux store: steam - /hl2_osx: - - arguments: '-steam -game tf' + "/hl2_osx": + - arguments: "-steam -game tf" when: - os: mac store: steam @@ -529406,7 +530849,7 @@ Team Fortress 2: id: 440 Team Fortress Classic: files: - /Half-Life/tfc: + "/Half-Life/tfc": tags: - config when: @@ -529416,23 +530859,25 @@ Team Fortress Classic: installDir: Half-Life: {} launch: - /hl.exe: - - arguments: '-steam -game tfc' + "/hl.exe": + - arguments: "-steam -game tfc" when: - os: windows store: steam - /hl.sh: - - arguments: '-steam -game tfc' + "/hl.sh": + - arguments: "-steam -game tfc" when: - os: mac store: steam + - os: linux + store: steam steam: id: 20 Team Four Star RPG: installDir: TFS RPG: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -529440,7 +530885,7 @@ Team Four Star RPG: id: 712390 Team Indie: files: - /game.cfg: + "/game.cfg": tags: - config when: @@ -529448,11 +530893,11 @@ Team Indie: installDir: TeamIndie: {} launch: - /TeamIndie.app: + "/TeamIndie.app": - when: - os: mac store: steam - /TeamIndie.exe: + "/TeamIndie.exe": - when: - os: windows store: steam @@ -529467,7 +530912,7 @@ Team Racing League: installDir: Team Racing League: {} launch: - /TRL.exe: + "/TRL.exe": - when: - os: windows store: steam @@ -529475,12 +530920,12 @@ Team Racing League: id: 504460 Team Sonic Racing: files: - /Sumo Digital Ltd//TSR/Config: + "/Sumo Digital Ltd//TSR/Config": tags: - config when: - os: windows - /Sumo Digital Ltd//TSR/Profiles: + "/Sumo Digital Ltd//TSR/Profiles": tags: - save when: @@ -529488,7 +530933,7 @@ Team Sonic Racing: installDir: Team Sonic Racing: {} launch: - /GameApp_PcDx11_x64Final.exe: + "/GameApp_PcDx11_x64Final.exe": - when: - bit: 64 os: windows @@ -529506,11 +530951,11 @@ Teamfight Manager: installDir: Teamfight Manager: {} launch: - /Teamfight Manager.app: + "/Teamfight Manager.app": - when: - os: mac store: steam - /Teamfight Manager.exe: + "/Teamfight Manager.exe": - when: - os: windows store: steam @@ -529518,7 +530963,7 @@ Teamfight Manager: id: 1372810 Teamkill: files: - /Godot/app_userdata/Teamkill: + "/Godot/app_userdata/Teamkill": tags: - config when: @@ -529526,7 +530971,7 @@ Teamkill: installDir: Teamkill: {} launch: - /TK.exe: + "/TK.exe": - when: - store: steam steam: @@ -529537,29 +530982,29 @@ Tear and the Library of Labyrinths: installDir: Tear and the Library of Labyrinths: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: id: 1378040 Teardown: files: - /Teardown: + "/Teardown": tags: - save when: - os: windows - /Teardown/options.xml: + "/Teardown/options.xml": tags: - config when: - os: windows - /Teardown: + "/Teardown": tags: - save when: - os: windows - /Teardown/options.xml: + "/Teardown/options.xml": tags: - config when: @@ -529567,16 +531012,16 @@ Teardown: installDir: Teardown: {} launch: - /teardown.exe: + "/teardown.exe": - when: - store: steam steam: id: 1167630 -'Tears - 9, 10': +"Tears - 9, 10": installDir: tears910: {} launch: - /tears910.exe: + "/tears910.exe": - when: - os: windows store: steam @@ -529586,24 +531031,24 @@ Tears Revolude: installDir: Tears Revolude: {} launch: - /Tears Revolude.app: - - arguments: '-fullscreen' + "/Tears Revolude.app": + - arguments: "-fullscreen" when: - os: mac store: steam - /Tears Revolude.exe: - - arguments: '-fullscreen' + "/Tears Revolude.exe": + - arguments: "-fullscreen" when: - os: windows store: steam - /Tears Revolude.x86: - - arguments: '-fullscreen' + "/Tears Revolude.x86": + - arguments: "-fullscreen" when: - bit: 32 os: linux store: steam - /Tears Revolude.x86_64: - - arguments: '-fullscreen' + "/Tears Revolude.x86_64": + - arguments: "-fullscreen" when: - bit: 64 os: linux @@ -529614,7 +531059,7 @@ Tears of Avia: installDir: Tears of Avia: {} launch: - /ToA.exe: + "/ToA.exe": - when: - os: windows store: steam @@ -529624,7 +531069,7 @@ Tears of a Dragon: installDir: Tears of a Dragon: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -529634,7 +531079,7 @@ Tearstone: installDir: Tearstone: {} launch: - /Tearstone.exe: + "/Tearstone.exe": - when: - os: windows store: steam @@ -529644,7 +531089,7 @@ Tech Corp.: installDir: TechCorp: {} launch: - /TechCorp.exe: + "/TechCorp.exe": - when: - os: windows store: steam @@ -529654,7 +531099,7 @@ Tech Executive Tycoon: installDir: Tech Executive Tycoon: {} launch: - /Tech Executive Tycoon.exe: + "/Tech Executive Tycoon.exe": - when: - os: windows store: steam @@ -529665,14 +531110,14 @@ Tech Support 2077: Tech Support 2077: {} steam: id: 1154420 -'Tech Support: Error Unknown': +"Tech Support: Error Unknown": files: - /.config/unity3d/DragonSlumber/TechSupport/techsupport.sav: + "/.config/unity3d/DragonSlumber/TechSupport/techsupport.sav": tags: - save when: - os: linux - /AppData/LocalLow/DragonSlumber/TechSupport/techsupport.sav: + "/AppData/LocalLow/DragonSlumber/TechSupport/techsupport.sav": tags: - save when: @@ -529680,15 +531125,15 @@ Tech Support 2077: installDir: Tech Support Error Unknown: {} launch: - /techsupport.app/Contents/MacOS/techsupport: + "/techsupport.app/Contents/MacOS/techsupport": - when: - os: mac store: steam - /techsupport.exe: + "/techsupport.exe": - when: - os: windows store: steam - /techsupport.x86: + "/techsupport.x86": - when: - os: linux store: steam @@ -529701,14 +531146,14 @@ Techno Boy: installDir: TechnoBoy: {} launch: - /TechnoBoy.exe: + "/TechnoBoy.exe": - when: - store: steam steam: id: 795050 TechnoMage: files: - /Saves: + "/Saves": tags: - save when: @@ -529717,11 +531162,11 @@ TechnoRunner: installDir: TechnoRunner: {} launch: - /TechnoRunner.exe: + "/TechnoRunner.exe": - when: - os: windows store: steam - /TechnoRunner.x86_64: + "/TechnoRunner.x86_64": - when: - os: linux store: steam @@ -529729,22 +531174,22 @@ TechnoRunner: id: 1454930 Technobabylon: files: - /.local/share/ags/Technobabylon: + "/.local/share/ags/Technobabylon": tags: - save when: - os: linux - /Library/Application Support/Technobabylon: + "/Library/Application Support/Technobabylon": tags: - save when: - os: mac - /Saved Games/Technobabylon/acsetup.cfg: + "/Saved Games/Technobabylon/acsetup.cfg": tags: - config when: - os: windows - /Saved Games/Technobabylon/agssave.*: + "/Saved Games/Technobabylon/agssave.*": tags: - save when: @@ -529758,20 +531203,23 @@ Technobabylon: installDir: Technobabylon: {} launch: - /Start.sh: + "/Start.sh": - when: + - bit: 32 + os: linux + store: steam - bit: 64 os: linux store: steam - /Technobabylon.app/Contents/MacOS/AGS: + "/Technobabylon.app/Contents/MacOS/AGS": - when: - os: mac store: steam - /Technobabylon.exe: + "/Technobabylon.exe": - when: - os: windows store: steam - /winsetup.exe: + "/winsetup.exe": - when: - os: windows store: steam @@ -529781,7 +531229,7 @@ Technoball: installDir: Technoball: {} launch: - /Technoball.exe: + "/Technoball.exe": - when: - bit: 64 os: windows @@ -529791,11 +531239,11 @@ Technoball: Technojuice: steam: id: 1165150 -'Technolites: Episode 1': +"Technolites: Episode 1": installDir: Technolites_E1: {} launch: - /Technolites_E1.exe: + "/Technolites_E1.exe": - when: - os: windows store: steam @@ -529810,7 +531258,7 @@ Technosphere: installDir: Technosphere: {} launch: - /TECHNOSPHERE.exe: + "/TECHNOSPHERE.exe": - when: - store: steam steam: @@ -529819,7 +531267,7 @@ Technotron Defense: installDir: Techotron Defense: {} launch: - /Technotron Defense.exe: + "/Technotron Defense.exe": - when: - os: windows store: steam @@ -529827,7 +531275,7 @@ Technotron Defense: id: 767460 Techtonica: files: - /AppData/LocalLow/Fire Hose Games/Techtonica: + "/AppData/LocalLow/Fire Hose Games/Techtonica": tags: - save when: @@ -529840,7 +531288,7 @@ Techwars Deathmatch: installDir: Techwars Deathmatch: {} launch: - /Techwars Deathmatch.exe: + "/Techwars Deathmatch.exe": - when: - os: windows store: steam @@ -529850,7 +531298,7 @@ Techwars Online: installDir: Techwars Online: {} launch: - /TechWars.exe: + "/TechWars.exe": - when: - os: windows store: steam @@ -529860,7 +531308,7 @@ Techwars Online 2: installDir: Techwars Global Conflict: {} launch: - /Techwars Global Conflict.exe: + "/Techwars Global Conflict.exe": - when: - os: windows store: steam @@ -529870,7 +531318,7 @@ Teck Boxing 3D: installDir: Teck Boxing 3D: {} launch: - /Teck Boxing 3D.exe: + "/Teck Boxing 3D.exe": - when: - os: windows store: steam @@ -529880,7 +531328,7 @@ Tecroroid Assault: installDir: Tecroroid Assault: {} launch: - /Tecroroid Assault.exe: + "/Tecroroid Assault.exe": - when: - os: windows store: steam @@ -529890,61 +531338,61 @@ Ted by Dawn: installDir: Ted by Dawn: {} launch: - /tedbydawn.exe: + "/tedbydawn.exe": - when: - os: windows store: steam steam: id: 381090 -'Teddy Floppy Ear: Kayaking': +"Teddy Floppy Ear: Kayaking": installDir: Teddy Floppy Ear - Kayaking: {} launch: - /Teddy Floppy Ear - Kayaking.app: + "/Teddy Floppy Ear - Kayaking.app": - when: - os: mac store: steam - /Teddy Floppy Ear - Kayaking.exe: + "/Teddy Floppy Ear - Kayaking.exe": - when: - os: windows store: steam - /Teddy Floppy Ear - Kayaking.x86: + "/Teddy Floppy Ear - Kayaking.x86": - when: - os: linux store: steam steam: id: 340310 -'Teddy Floppy Ear: Mountain Adventure': +"Teddy Floppy Ear: Mountain Adventure": installDir: Teddy Floppy Ear - Mountain Adventure: {} launch: - /Teddy Floppy Ear - Mountain Adventure.app: + "/Teddy Floppy Ear - Mountain Adventure.app": - when: - os: mac store: steam - /Teddy Floppy Ear - Mountain Adventure.exe: + "/Teddy Floppy Ear - Mountain Adventure.exe": - when: - os: windows store: steam - /Teddy Floppy Ear - Mountain Adventure.x86: + "/Teddy Floppy Ear - Mountain Adventure.x86": - when: - os: linux store: steam steam: id: 340300 -'Teddy Floppy Ear: The Race': +"Teddy Floppy Ear: The Race": installDir: TeddyFloppyEar_TheRace: {} launch: - /Teddy Floppy Ear - The Race.app: + "/Teddy Floppy Ear - The Race.app": - when: - os: mac store: steam - /Teddy Floppy Ear - The Race.exe: + "/Teddy Floppy Ear - The Race.exe": - when: - os: windows store: steam - /Teddy Floppy Ear - The Race.x86: + "/Teddy Floppy Ear - The Race.x86": - when: - os: linux store: steam @@ -529954,7 +531402,7 @@ Teddy Terror: installDir: Teddy Terror Early Access: {} launch: - /TeddyTerror_EarlyAccessVersion1_10_1.exe: + "/TeddyTerror_EarlyAccessVersion1_10_1.exe": - when: - os: windows store: steam @@ -529964,7 +531412,7 @@ Tee Time Golf: installDir: Tee Time Golf: {} launch: - /Tee Time Golf.exe: + "/Tee Time Golf.exe": - when: - bit: 64 os: windows @@ -529975,11 +531423,11 @@ Teen Date Simulator: installDir: TEEN DATE SIMULATOR: {} launch: - /teendate.app: + "/teendate.app": - when: - os: mac store: steam - /teendate.exe: + "/teendate.exe": - when: - os: windows store: steam @@ -529987,43 +531435,43 @@ Teen Date Simulator: id: 744890 Teenage Mutant Ninja Turtles: files: - /HISCORES: + "/HISCORES": tags: - save when: - os: dos - /SAVEGAME: + "/SAVEGAME": tags: - save when: - os: dos Teenage Mutant Ninja Turtles (2003): files: - /SaveGame.dat: + "/SaveGame.dat": tags: - save when: - os: windows - /SaveSetting.dat: + "/SaveSetting.dat": tags: - config when: - os: windows -'Teenage Mutant Ninja Turtles 2: Battle Nexus': +"Teenage Mutant Ninja Turtles 2: Battle Nexus": files: - /TMNT2.ini: + "/TMNT2.ini": tags: - config when: - os: windows - /tmntsave.dat: + "/tmntsave.dat": tags: - save when: - os: windows -'Teenage Mutant Ninja Turtles: Mutants in Manhattan': +"Teenage Mutant Ninja Turtles: Mutants in Manhattan": files: - /TMNT_MiM: + "/TMNT_MiM": tags: - config - save @@ -530032,19 +531480,19 @@ Teenage Mutant Ninja Turtles (2003): installDir: Teenage Mutant Ninja Turtles - Mutants in Manhattan: {} launch: - /TMNT_MiM.exe: + "/TMNT_MiM.exe": - when: - store: steam steam: id: 338400 -'Teenage Mutant Ninja Turtles: Out of the Shadows': +"Teenage Mutant Ninja Turtles: Out of the Shadows": files: - /Engine/Config: + "/Engine/Config": tags: - config when: - os: windows - /Saves: + "/Saves": tags: - save when: @@ -530052,41 +531500,41 @@ Teenage Mutant Ninja Turtles (2003): installDir: TMNT-OotS: {} launch: - /Binaries/Win32/TMNT-OotS.exe: + "/Binaries/Win32/TMNT-OotS.exe": - when: - store: steam - workingDir: /Binaries/Win32 + workingDir: "/Binaries/Win32" steam: id: 228560 -'Teenage Mutant Ninja Turtles: Portal Power': +"Teenage Mutant Ninja Turtles: Portal Power": installDir: Teenage Mutant Ninja Turtles Portal Power: {} launch: - /PortalPower.app: + "/PortalPower.app": - when: - bit: 64 os: mac store: steam - /PortalPower.exe: + "/PortalPower.exe": - when: - bit: 64 os: windows store: steam steam: id: 700740 -'Teenage Mutant Ninja Turtles: Shredder''s Revenge': +"Teenage Mutant Ninja Turtles: Shredder's Revenge": files: - /userdata//1361510/remote/GameSave.sav: + "/userdata//1361510/remote/GameSave.sav": tags: - save when: - store: steam - /Tribute Games/TMNT/Settings.cfg: + "/Tribute Games/TMNT/Settings.cfg": tags: - config when: - os: windows - /Packages/DotEmu.TeenageMutantNinjaTurtlesShreddersRevenge_map6zyh9ym1xy/SystemAppData/wgs: + "/Packages/DotEmu.TeenageMutantNinjaTurtlesShreddersRevenge_map6zyh9ym1xy/SystemAppData/wgs": tags: - save when: @@ -530095,19 +531543,19 @@ Teenage Mutant Ninja Turtles (2003): installDir: TMNT: {} launch: - /TMNT: + "/TMNT": - when: - os: linux store: steam - /TMNT.exe: + "/TMNT.exe": - when: - os: windows store: steam steam: id: 1361510 -'Teenage Mutant Ninja Turtles: The Cowabunga Collection': +"Teenage Mutant Ninja Turtles: The Cowabunga Collection": files: - /Teenage Mutant Ninja Turles - The Cowabunga Collection: + "/Teenage Mutant Ninja Turles - The Cowabunga Collection": tags: - config - save @@ -530116,14 +531564,14 @@ Teenage Mutant Ninja Turtles (2003): installDir: TMNT Cowabunga: {} launch: - /tmnt_cowabunga.exe: + "/tmnt_cowabunga.exe": - when: - store: steam steam: id: 1659600 Teenagent: files: - /TEENAGE*.SAV: + "/TEENAGE*.SAV": tags: - save when: @@ -530137,7 +531585,7 @@ Teeny Heist: installDir: Teeny Heist: {} launch: - /TeenyHeist.exe: + "/TeenyHeist.exe": - when: - os: windows store: steam @@ -530147,7 +531595,7 @@ Teeth Brushing Simulator: installDir: Teeth Brushing Simulator: {} launch: - /Teeth Brushing Simulator.exe: + "/Teeth Brushing Simulator.exe": - when: - bit: 64 os: windows @@ -530156,22 +531604,22 @@ Teeth Brushing Simulator: id: 1073220 Teeworlds: files: - /.teeworlds: + "/.teeworlds": tags: - save when: - os: linux - /.teeworlds/settings.cfg: + "/.teeworlds/settings.cfg": tags: - config when: - os: linux - /Teeworlds: + "/Teeworlds": tags: - save when: - os: windows - /Teeworlds/settings.cfg: + "/Teeworlds/settings.cfg": tags: - config when: @@ -530179,15 +531627,15 @@ Teeworlds: installDir: Teeworlds: {} launch: - /tw/teeworlds: + "/tw/teeworlds": - when: - os: linux store: steam - when: - os: mac store: steam - workingDir: /MacOS - /tw/teeworlds.exe: + workingDir: "/MacOS" + "/tw/teeworlds.exe": - when: - os: windows store: steam @@ -530195,12 +531643,12 @@ Teeworlds: id: 380840 Tekken 7: files: - /TekkenGame/Saved/Config: + "/TekkenGame/Saved/Config": tags: - config when: - os: windows - /TekkenGame/Saved/SaveGames: + "/TekkenGame/Saved/SaveGames": tags: - save when: @@ -530208,7 +531656,7 @@ Tekken 7: installDir: TEKKEN 7: {} launch: - /TEKKEN 7.exe: + "/TEKKEN 7.exe": - when: - bit: 64 os: windows @@ -530217,12 +531665,12 @@ Tekken 7: id: 389730 Tekken 8: files: - /Polaris/Saved/Config/Windows: + "/Polaris/Saved/Config/Windows": tags: - config when: - os: windows - /Polaris/Saved/SaveGames: + "/Polaris/Saved/SaveGames": tags: - save when: @@ -530233,7 +531681,7 @@ Tekling: installDir: Tekling: {} launch: - /Tekling.exe: + "/Tekling.exe": - when: - bit: 64 os: windows @@ -530244,7 +531692,7 @@ Tekling 2: installDir: Tekling 2: {} launch: - /Tekling_Unreal.exe: + "/Tekling_Unreal.exe": - when: - os: windows store: steam @@ -530254,15 +531702,15 @@ TeleBlast: installDir: TeleBlast: {} launch: - /TeleBlast: + "/TeleBlast": - when: - os: linux store: steam - /TeleBlast.app/Contents/MacOS/TeleBlast: + "/TeleBlast.app/Contents/MacOS/TeleBlast": - when: - os: mac store: steam - /TeleBlast.exe: + "/TeleBlast.exe": - when: - os: windows store: steam @@ -530272,20 +531720,20 @@ Telecube Halloween: installDir: Telecube Nightmare: {} launch: - /Telecube Nightmare.app/Contents/MacOS/Telecube Nightmare: + "/Telecube Nightmare.app/Contents/MacOS/Telecube Nightmare": - when: - os: mac store: steam - /Telecube Nightmare.exe: + "/Telecube Nightmare.exe": - when: - os: windows store: steam - /Telecube Nightmare.x86: + "/Telecube Nightmare.x86": - when: - bit: 32 os: linux store: steam - /Telecube Nightmare.x86_64: + "/Telecube Nightmare.x86_64": - when: - bit: 64 os: linux @@ -530297,21 +531745,21 @@ Telefrag VR: Telefrag VR: {} steam: id: 916100 -'Teleglitch: Die More Edition': +"Teleglitch: Die More Edition": files: - /Saves: + "/Saves": tags: - save when: - os: windows - /exitsave*: + "/exitsave*": tags: - save when: - os: windows - os: mac - os: linux - /settings.lua: + "/settings.lua": tags: - config when: @@ -530323,16 +531771,16 @@ Telefrag VR: installDir: TeleglitchDME: {} launch: - /Teleglitch.app/Contents/MacOS/Teleglitch: + "/Teleglitch.app/Contents/MacOS/Teleglitch": - when: - os: mac store: steam - workingDir: /Teleglitch.app/Contents/Resources - /runme: + workingDir: "/Teleglitch.app/Contents/Resources" + "/runme": - when: - os: linux store: steam - /teleglitch.exe: + "/teleglitch.exe": - when: - os: windows store: steam @@ -530345,21 +531793,21 @@ Telekinetic: installDir: Telekinetic: {} launch: - /Telekinetic/Telekinetic.exe: + "/Telekinetic/Telekinetic.exe": - when: - store: steam steam: id: 992000 Telengard: files: - /*.PLR: + "/*.PLR": tags: - save when: - os: dos Telepath Tactics: files: - /My Games/Telepath Tactics/Saved Games: + "/My Games/Telepath Tactics/Saved Games": tags: - save when: @@ -530369,7 +531817,7 @@ Telepath Tactics: installDir: Telepath Tactics: {} launch: - /Telepath Tactics.exe: + "/Telepath Tactics.exe": - when: - os: windows store: steam @@ -530379,21 +531827,21 @@ Telepathy Zero: installDir: Telepathy Zero: {} launch: - /TelepathyZero.app: + "/TelepathyZero.app": - when: - os: mac store: steam - /TelepathyZero.exe: + "/TelepathyZero.exe": - when: - os: windows store: steam steam: id: 655170 -Teleportals. I swear it's a nice game.: +"Teleportals. I swear it's a nice game.": installDir: - Teleportals. I swear it's a nice game: {} + "Teleportals. I swear it's a nice game": {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -530408,7 +531856,7 @@ Television Trivia: installDir: Television Trivia: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -530418,15 +531866,15 @@ Tell Me Everything: installDir: TellMeEverything: {} launch: - /TellMeEverything.exe: + "/TellMeEverything.exe": - when: - os: windows store: steam - /TellMeLinux.x86_64: + "/TellMeLinux.x86_64": - when: - os: linux store: steam - /TellMeMac.app: + "/TellMeMac.app": - when: - os: mac store: steam @@ -530434,23 +531882,24 @@ Tell Me Everything: id: 846820 Tell Me Why: files: - /userdata//1180660/remote: + "/userdata//1180660/remote": tags: - save when: - store: steam - /Dontnod//TME/Saved/Config/WindowsNoEditor: + "/Dontnod//TME/Saved/Config/WindowsNoEditor": tags: - config when: - - store: steam - /Packages/Microsoft.Breathless_8wekyb3d8bbwe/SystemAppData/wgs: + - os: windows + store: steam + "/Packages/Microsoft.Breathless_8wekyb3d8bbwe/SystemAppData/wgs": tags: - save when: - os: windows store: microsoft - /TME/Saved/Config/WindowsNoEditor: + "/TME/Saved/Config/WindowsNoEditor": tags: - config when: @@ -530459,7 +531908,7 @@ Tell Me Why: installDir: TellMeWhy: {} launch: - /TME-Win64-Shipping.exe: + "/TME-Win64-Shipping.exe": - when: - bit: 64 os: windows @@ -530470,15 +531919,15 @@ Tell a Demon: installDir: TAD: {} launch: - /TellaDemon.app: + "/TellaDemon.app": - when: - os: mac store: steam - /TellaDemon.exe: + "/TellaDemon.exe": - when: - os: windows store: steam - /TellaDemon.sh: + "/TellaDemon.sh": - when: - os: linux store: steam @@ -530486,12 +531935,12 @@ Tell a Demon: id: 679230 Telling Lies: files: - /AppData/LocalLow/Annapurna Interactive/Telling Lies/SaveGame.hst: + "/AppData/LocalLow/Annapurna Interactive/Telling Lies/SaveGame.hst": tags: - save when: - os: windows - /Packages/AnnapurnaInteractive.TellingLies_c96c51jf6wkvm/SystemAppData/wgs: + "/Packages/AnnapurnaInteractive.TellingLies_c96c51jf6wkvm/SystemAppData/wgs": tags: - save when: @@ -530502,11 +531951,11 @@ Telling Lies: installDir: Telling Lies: {} launch: - /TellingLies.app: + "/TellingLies.app": - when: - os: mac store: steam - /TellingLies.exe: + "/TellingLies.exe": - when: - bit: 64 os: windows @@ -530517,9 +531966,9 @@ Telling Lies: - config steam: id: 762830 -Telltale Texas Hold 'Em: +"Telltale Texas Hold 'Em": files: - /prefs.prop: + "/prefs.prop": tags: - config when: @@ -530529,14 +531978,14 @@ Telltale Texas Hold 'Em: installDir: Telltale Games Poker: {} launch: - /poker.exe: + "/poker.exe": - when: - store: steam steam: id: 8330 Telophase: files: - /AppData/LocalLow/TelophaseStudio/Telophase: + "/AppData/LocalLow/TelophaseStudio/Telophase": tags: - config when: @@ -530544,11 +531993,11 @@ Telophase: installDir: Telophase: {} launch: - /Telophase.app: + "/Telophase.app": - when: - os: mac store: steam - /Telophase.exe: + "/Telophase.exe": - when: - os: windows store: steam @@ -530556,7 +532005,7 @@ Telophase: id: 837310 Tembo the Badass Elephant: files: - /Tembo The Badass Elephant: + "/Tembo The Badass Elephant": tags: - save when: @@ -530564,7 +532013,7 @@ Tembo the Badass Elephant: installDir: Tembo The Badass Elephant: {} launch: - /Tembo The Badass Elephant.exe: + "/Tembo The Badass Elephant.exe": - when: - os: windows store: steam @@ -530577,16 +532026,19 @@ Tembo the Badass Elephant: Temper Tantrum: steam: id: 373110 -'Temperia: Soul of Majestic': +"Temperia: Soul of Majestic": installDir: TemperiaSoulofMajestic: {} launch: - /Majestic.app/Contents/MacOS/Majestic: + "/Majestic.app/Contents/MacOS/Majestic": - when: - os: mac store: steam - /Temperia Soul of Majestic.exe: + "/Temperia Soul of Majestic.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam @@ -530594,12 +532046,12 @@ Temper Tantrum: id: 852780 Tempest: files: - /AppData/LocalLow/LionsShade/Tempest: + "/AppData/LocalLow/LionsShade/Tempest": tags: - save when: - os: windows - /AppData/LocalLow/LionsShade/Tempest/Settings/settings.tsf: + "/AppData/LocalLow/LionsShade/Tempest/Settings/settings.tsf": tags: - config when: @@ -530609,15 +532061,15 @@ Tempest: installDir: Tempest: {} launch: - /Tempest.app: + "/Tempest.app": - when: - os: mac store: steam - /Tempest.exe: + "/Tempest.exe": - when: - os: windows store: steam - /Tempest.x86_64: + "/Tempest.x86_64": - when: - bit: 64 os: linux @@ -530630,7 +532082,7 @@ Tempest: id: 418180 Tempest 4000: files: - /Tempest4000_Savedata: + "/Tempest4000_Savedata": tags: - config - save @@ -530641,21 +532093,21 @@ Tempest 4000: installDir: Tempest 4000: {} launch: - /Win10/Tempest4000.exe: + "/Win10/Tempest4000.exe": - when: - store: steam - workingDir: /Win10 - /Win7-8/Tempest4000.exe: + workingDir: "/Win10" + "/Win7-8/Tempest4000.exe": - when: - store: steam - workingDir: /Win7-8 + workingDir: "/Win7-8" steam: id: 688140 Tempest Citadel: installDir: Tempest Citadel: {} launch: - /TempestCitadel.exe: + "/TempestCitadel.exe": - when: - os: windows store: steam @@ -530672,7 +532124,7 @@ Tempest of the Heavens and Earth: installDir: Tempest of the Heavens and Earth: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -530680,7 +532132,7 @@ Tempest of the Heavens and Earth: id: 994020 Templar Battleforce: files: - /TemplarBattleforce: + "/TemplarBattleforce": tags: - config - save @@ -530689,15 +532141,15 @@ Templar Battleforce: installDir: Templar Battleforce: {} launch: - /TemplarBattleforce.app/Contents/MacOS/TemplarBattleforce: + "/TemplarBattleforce.app/Contents/MacOS/TemplarBattleforce": - when: - os: mac store: steam - /TemplarBattleforce.exe: + "/TemplarBattleforce.exe": - when: - os: windows store: steam - /battlefront: + "/battlefront": - when: - os: linux store: steam @@ -530707,15 +532159,15 @@ Temple Escape: installDir: Temple Escape: {} launch: - /Linux/Temple Escape.x86: + "/Linux/Temple Escape.x86": - when: - os: linux store: steam - /MacOS/Temple Escape.app/Contents/MacOS/Temple Escape: + "/MacOS/Temple Escape.app/Contents/MacOS/Temple Escape": - when: - os: mac store: steam - /Windows/Temple Escape.exe: + "/Windows/Temple Escape.exe": - when: - os: windows store: steam @@ -530730,15 +532182,15 @@ Temple Scramble: installDir: Temple Scramble: {} launch: - /TempleScramble.app: + "/TempleScramble.app": - when: - os: mac store: steam - /TempleScramble.exe: + "/TempleScramble.exe": - when: - os: windows store: steam - /launch.sh: + "/launch.sh": - when: - os: linux store: steam @@ -530753,7 +532205,7 @@ Temple of Pizza: installDir: Temple of Pizza: {} launch: - /Temple of Pizza.exe: + "/Temple of Pizza.exe": - when: - os: windows store: steam @@ -530763,7 +532215,7 @@ Temple of Rust: installDir: Temple of Rust: {} launch: - /TempleOfRust.exe: + "/TempleOfRust.exe": - when: - store: steam steam: @@ -530772,7 +532224,7 @@ Temple of Snek: installDir: Temple Of Snek: {} launch: - /Snek.exe: + "/Snek.exe": - when: - os: windows store: steam @@ -530782,7 +532234,7 @@ Temple of Spikes: installDir: Temple of Spikes: {} launch: - /Temple of Spikes.exe: + "/Temple of Spikes.exe": - when: - bit: 64 os: windows @@ -530793,7 +532245,7 @@ Temple of Xiala: installDir: Temple of Xiala: {} launch: - /Xiala.exe: + "/Xiala.exe": - when: - os: windows store: steam @@ -530808,7 +532260,7 @@ Temple of the Lost: installDir: Temple of the Lost: {} launch: - /TempleOfLost.exe: + "/TempleOfLost.exe": - when: - os: windows store: steam @@ -530818,7 +532270,7 @@ Templum de Malum: installDir: Templum de Malum: {} launch: - /tdm.exe: + "/tdm.exe": - when: - bit: 64 os: windows @@ -530829,7 +532281,7 @@ Temply Girls: installDir: Temply Girls: {} launch: - /TEMPLY GIRL 2.0.exe: + "/TEMPLY GIRL 2.0.exe": - when: - store: steam steam: @@ -530838,7 +532290,7 @@ Tempo Wizard: installDir: Tempo Wizard: {} launch: - /Tempo Wizard.exe: + "/Tempo Wizard.exe": - when: - store: steam steam: @@ -530847,16 +532299,16 @@ Temporal Shift: installDir: Temporal Shift: {} launch: - /ts.exe: + "/ts.exe": - when: - store: steam steam: id: 384900 -'Temporal Storm X: Hyperspace Dream': +"Temporal Storm X: Hyperspace Dream": installDir: TSHDX: {} launch: - /Temporal_Storm_HDX.exe: + "/Temporal_Storm_HDX.exe": - when: - bit: 64 os: windows @@ -530867,11 +532319,11 @@ Temporal Temple: installDir: Temporal Temple: {} launch: - /temporaltemple.app: + "/temporaltemple.app": - when: - os: mac store: steam - /temporaltemple.exe: + "/temporaltemple.exe": - when: - os: windows store: steam @@ -530881,7 +532333,7 @@ Temporality: installDir: Temporality: {} launch: - /Temporality.exe: + "/Temporality.exe": - when: - os: windows store: steam @@ -530891,7 +532343,7 @@ Temptation: installDir: Temptation: {} launch: - /Temptation.exe: + "/Temptation.exe": - when: - os: windows store: steam @@ -530899,17 +532351,17 @@ Temptation: id: 825000 Temtem: files: - /AppData/LocalLow/Crema/Temtem/graphics.dat: + "/AppData/LocalLow/Crema/Temtem/graphics.dat": tags: - config when: - os: windows - /AppData/LocalLow/Crema/Temtem/savegame.dat: + "/AppData/LocalLow/Crema/Temtem/savegame.dat": tags: - save when: - os: windows - /AppData/LocalLow/Crema/Temtem/settings.dat: + "/AppData/LocalLow/Crema/Temtem/settings.dat": tags: - config when: @@ -530917,7 +532369,7 @@ Temtem: installDir: Temtem: {} launch: - /Temtem.exe: + "/Temtem.exe": - when: - bit: 64 os: windows @@ -530930,12 +532382,12 @@ Temtem: id: 745920 Ten Dates: files: - /userdata//1946070/remote/OptionsData: + "/userdata//1946070/remote/OptionsData": tags: - config when: - store: steam - /userdata//1946070/remote/StoryData: + "/userdata//1946070/remote/StoryData": tags: - save when: @@ -530943,11 +532395,11 @@ Ten Dates: installDir: Ten Dates: {} launch: - /TenDates.app: + "/TenDates.app": - when: - os: mac store: steam - /TenDates.exe: + "/TenDates.exe": - when: - os: windows store: steam @@ -530957,7 +532409,7 @@ Ten Days to War: installDir: Ten Days to War: {} launch: - /Ten Days To War.exe: + "/Ten Days To War.exe": - when: - os: windows store: steam @@ -530967,7 +532419,7 @@ Ten Desires: installDir: th13: {} launch: - /th13.exe: + "/th13.exe": - when: - os: windows store: steam @@ -530980,7 +532432,7 @@ TenMinions: installDir: TenMinions: {} launch: - /TenMinions.exe: + "/TenMinions.exe": - when: - store: steam steam: @@ -530989,15 +532441,15 @@ Tenacious: installDir: Tenacious: {} launch: - /Tenacious.exe: + "/Tenacious.exe": - when: - os: windows store: steam - /Tenacious.x86_64: + "/Tenacious.x86_64": - when: - os: linux store: steam - /Tenacious/Tenacious.app/Contents/MacOS/Tenacious: + "/Tenacious/Tenacious.app/Contents/MacOS/Tenacious": - when: - os: mac store: steam @@ -531009,7 +532461,7 @@ Tender Loving Care: installDir: Tender Loving Care: {} launch: - /TLC.exe: + "/TLC.exe": - when: - os: windows store: steam @@ -531019,15 +532471,15 @@ Tenderfoot Tactics: installDir: Tenderfoot Tactics: {} launch: - /Tenderfoot Tactics.app: + "/Tenderfoot Tactics.app": - when: - os: mac store: steam - /Tenderfoot Tactics.exe: + "/Tenderfoot Tactics.exe": - when: - os: windows store: steam - /Tenderfoot Tactics.x86_64: + "/Tenderfoot Tactics.x86_64": - when: - os: linux store: steam @@ -531048,7 +532500,7 @@ Tenebrous Dungeon: installDir: Tenebrous Dungeon: {} launch: - /Tenebrous Dungeon.exe: + "/Tenebrous Dungeon.exe": - when: - os: windows store: steam @@ -531058,11 +532510,11 @@ Tengai: installDir: TENGAI: {} launch: - /sblade.exe: + "/sblade.exe": - when: - os: windows store: steam - /setting.exe: + "/setting.exe": - when: - os: windows store: steam @@ -531070,12 +532522,12 @@ Tengai: id: 1279370 Tengami: files: - /Save/TengamiSaveData.bin: + "/Save/TengamiSaveData.bin": tags: - save when: - os: windows - /Save/TengamiSettingData.bin: + "/Save/TengamiSettingData.bin": tags: - config when: @@ -531083,11 +532535,11 @@ Tengami: installDir: Tengami: {} launch: - /Tengami.app: + "/Tengami.app": - when: - os: mac store: steam - /Tengami.exe: + "/Tengami.exe": - when: - os: windows store: steam @@ -531100,7 +532552,7 @@ Tengutana: id: 630070 Tenis PC3: files: - 'C:/pc3/drakssen/tennis/keywiz.cfg': + "C:/pc3/drakssen/tennis/keywiz.cfg": tags: - config when: @@ -531109,11 +532561,11 @@ Tenkyu: installDir: tenkyu: {} launch: - /tenkyu.app: + "/tenkyu.app": - when: - os: mac store: steam - /tenkyu.exe: + "/tenkyu.exe": - when: - os: windows store: steam @@ -531128,15 +532580,15 @@ Tennis Elbow 2013: installDir: Tennis Elbow 2013: {} launch: - /Tennis Elbow 2013.app: + "/Tennis Elbow 2013.app": - when: - os: mac store: steam - /TennisElbow.exe: + "/TennisElbow.exe": - when: - os: windows store: steam - /TennisElbow2013: + "/TennisElbow2013": - when: - os: linux store: steam @@ -531146,11 +532598,11 @@ Tennis Elbow 4: installDir: Tennis Elbow 4: {} launch: - /Tennis Elbow 4.app: + "/Tennis Elbow 4.app": - when: - os: mac store: steam - /Tennis Elbow 4.exe: + "/Tennis Elbow 4.exe": - when: - bit: 64 os: windows @@ -531161,11 +532613,11 @@ Tennis Elbow Manager: installDir: Tennis Elbow Manager: {} launch: - /TeManager.exe: + "/TeManager.exe": - when: - os: windows store: steam - /Tennis Elbow Manager.app: + "/Tennis Elbow Manager.app": - when: - os: mac store: steam @@ -531175,11 +532627,11 @@ Tennis Elbow Manager 2: installDir: Tennis Elbow Manager 2: {} launch: - /Tennis Elbow Manager 2.app: + "/Tennis Elbow Manager 2.app": - when: - os: mac store: steam - /Tennis Elbow Manager 2.exe: + "/Tennis Elbow Manager 2.exe": - when: - os: windows store: steam @@ -531189,7 +532641,7 @@ Tennis Fighters: installDir: Tennis Fighters: {} launch: - /TennisFighters.exe: + "/TennisFighters.exe": - when: - os: windows store: steam @@ -531206,11 +532658,11 @@ Tennis Manager 2021: installDir: Tennis Manager 2021: {} launch: - /Tennis Manager 2021.app: + "/Tennis Manager 2021.app": - when: - os: mac store: steam - /Tennis Manager 2021.exe: + "/Tennis Manager 2021.exe": - when: - os: windows store: steam @@ -531222,11 +532674,11 @@ Tennis Manager 2022: installDir: Tennis Manager 2022: {} launch: - /Tennis Manager 2022.app: + "/Tennis Manager 2022.app": - when: - os: mac store: steam - /Tennis Manager 2022.exe: + "/Tennis Manager 2022.exe": - when: - os: windows store: steam @@ -531238,11 +532690,11 @@ Tennis Manager 2023: installDir: Tennis Manager 2023: {} launch: - /Tennis Manager 2023.app: + "/Tennis Manager 2023.app": - when: - os: mac store: steam - /Tennis Manager 2023.exe: + "/Tennis Manager 2023.exe": - when: - os: windows store: steam @@ -531252,7 +532704,7 @@ Tennis Story: installDir: Tennis Story: {} launch: - /ArtExplorations.exe: + "/ArtExplorations.exe": - when: - os: windows store: steam @@ -531265,7 +532717,7 @@ Tennis Tune-Up: id: 867900 Tennis World Tour: files: - /Tennis World Tour: + "/Tennis World Tour": tags: - config - save @@ -531279,7 +532731,7 @@ Tennis World Tour 2: installDir: Tennis World Tour 2: {} launch: - /twt2.exe: + "/twt2.exe": - when: - bit: 64 os: windows @@ -531290,7 +532742,7 @@ Tennis in the Face: installDir: Tennis in the Face: {} launch: - /TennisInTheFace.exe: + "/TennisInTheFace.exe": - when: - os: windows store: steam @@ -531310,20 +532762,20 @@ Tenrow: installDir: Tenrow: {} launch: - /Tenrow.app: + "/Tenrow.app": - when: - os: mac store: steam - /Tenrow.exe: + "/Tenrow.exe": - when: - os: windows store: steam - /Tenrow.x86: + "/Tenrow.x86": - when: - bit: 32 os: linux store: steam - /Tenrow.x86_64: + "/Tenrow.x86_64": - when: - bit: 64 os: linux @@ -531337,11 +532789,13 @@ Tenshu General: installDir: tenshuGeneral: {} launch: - /TenshuGeneral.sh: + "/TenshuGeneral.sh": - when: + - os: mac + store: steam - os: linux store: steam - /tg.exe: + "/tg.exe": - when: - os: windows store: steam @@ -531351,7 +532805,7 @@ Tenta Shooter: installDir: Tenta Shooter: {} launch: - /KeyConfig.exe: + "/KeyConfig.exe": - when: - store: steam steam: @@ -531360,11 +532814,11 @@ Tentacle Girl: installDir: Tentacle Girl: {} launch: - /Tentacle Girl.exe: + "/Tentacle Girl.exe": - when: - os: windows store: steam - /Tentacle.app: + "/Tentacle.app": - when: - os: mac store: steam @@ -531374,11 +532828,11 @@ Tentacult!: installDir: Tentacult!: {} launch: - /Tentacult.app: + "/Tentacult.app": - when: - os: mac store: steam - /Tentacult.exe: + "/Tentacult.exe": - when: - os: windows store: steam @@ -531388,7 +532842,7 @@ Tentlan: installDir: Tentlan: {} launch: - /Tentlan.exe: + "/Tentlan.exe": - when: - os: windows store: steam @@ -531398,7 +532852,7 @@ Tequila Zombies 3: installDir: TequilaZombies3: {} launch: - /TequilaZombies3.exe: + "/TequilaZombies3.exe": - when: - os: windows store: steam @@ -531408,7 +532862,7 @@ TerTD: installDir: TerTD: {} launch: - /TerTD.exe: + "/TerTD.exe": - when: - os: windows store: steam @@ -531418,11 +532872,11 @@ TeraBlaster: installDir: TeraBlaster: {} launch: - /TeraBlaster.app/Contents/MacOS/Mac_Runner: + "/TeraBlaster.app/Contents/MacOS/Mac_Runner": - when: - os: mac store: steam - /TeraBlaster.exe: + "/TeraBlaster.exe": - when: - os: windows store: steam @@ -531432,7 +532886,7 @@ Teragard: installDir: Teragard: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -531447,11 +532901,11 @@ Teria: installDir: Teria: {} launch: - /Teria for OSX/Teria.app/Contents/MacOS/Teria: + "/Teria for OSX/Teria.app/Contents/MacOS/Teria": - when: - os: mac store: steam - /Teria.exe: + "/Teria.exe": - when: - os: windows store: steam @@ -531461,16 +532915,16 @@ Terminal Conflict: installDir: Terminal Conflict: {} launch: - /Game/TerminalConflict.exe: + "/Game/TerminalConflict.exe": - when: - os: windows store: steam - /Game/TerminalConflict.x86_64: + "/Game/TerminalConflict.x86_64": - when: - bit: 64 os: linux store: steam - /TerminalConflict.app/Contents/MacOS/TerminalConflict: + "/TerminalConflict.app/Contents/MacOS/TerminalConflict": - when: - os: mac store: steam @@ -531480,15 +532934,15 @@ Terminal Hacker: installDir: TerminalHacker: {} launch: - /TerminalHacker.app/Contents/MacOS/TerminalHacker: + "/TerminalHacker.app/Contents/MacOS/TerminalHacker": - when: - os: mac store: steam - /TerminalHacker.exe: + "/TerminalHacker.exe": - when: - os: windows store: steam - /TerminalHacker.x86: + "/TerminalHacker.x86": - when: - os: linux store: steam @@ -531498,11 +532952,11 @@ Terminal Hacker - Into the Deep: installDir: TerminalHacker01: {} launch: - /thacker01.exe: + "/thacker01.exe": - when: - os: windows store: steam - /thackerLinux.x86_64: + "/thackerLinux.x86_64": - when: - os: linux store: steam @@ -531511,23 +532965,23 @@ Terminal Hacker - Into the Deep: Terminal Protocol: steam: id: 1146070 -'Terminal Squad: Swarmites': +"Terminal Squad: Swarmites": installDir: Terminal squad Swarmites: {} launch: - /base_to_base_reborn.exe: + "/base_to_base_reborn.exe": - when: - store: steam steam: id: 1217330 Terminal Velocity: files: - /SAVE*.DAT: + "/SAVE*.DAT": tags: - save when: - os: dos - /VOX.INI: + "/VOX.INI": tags: - config when: @@ -531537,37 +532991,37 @@ Terminal Velocity: installDir: Terminal Velocity: {} launch: - /Dosbox/dosbox: - - arguments: '-conf \"..\\TV.conf\" -noconsole -c' + "/Dosbox/dosbox": + - arguments: "-conf \\\"..\\\\TV.conf\\\" -noconsole -c" when: - os: linux store: steam - workingDir: /Dosbox - /Terminal Velocity.app: + workingDir: "/Dosbox" + "/Terminal Velocity.app": - when: - os: mac store: steam - /Terminal Velocity/dosbox/dosbox.exe: - - arguments: '-conf \"..\\TV.conf\" -noconsole -c' + "/Terminal Velocity/dosbox/dosbox.exe": + - arguments: "-conf \\\"..\\\\TV.conf\\\" -noconsole -c" when: - os: windows store: steam - workingDir: /Terminal Velocity/dosbox + workingDir: "/Terminal Velocity/dosbox" steam: id: 358370 -'Terminal Velocity: Boosted Edition': +"Terminal Velocity: Boosted Edition": files: - /Terminal_Velocity_Boosted_Edition/save0.dat: + "/Terminal_Velocity_Boosted_Edition/save0.dat": tags: - save when: - os: windows - /Terminal_Velocity_Boosted_Edition/save_achiev.dat: + "/Terminal_Velocity_Boosted_Edition/save_achiev.dat": tags: - save when: - os: windows - /Terminal_Velocity_Boosted_Edition/system/settings.ini: + "/Terminal_Velocity_Boosted_Edition/system/settings.ini": tags: - config when: @@ -531577,33 +533031,33 @@ Terminal Velocity: installDir: Terminal_Velocity_Boosted_Edition: {} launch: - /terminal_velocity.exe: + "/terminal_velocity.exe": - when: - store: steam steam: id: 1956430 -'Terminal squad: Sentinel': +"Terminal squad: Sentinel": installDir: Terminal squad Sentinel: {} launch: - /game_3vryad.exe: + "/game_3vryad.exe": - when: - store: steam steam: id: 1118050 -'Terminator: Dark Fate - Defiance': +"Terminator: Dark Fate - Defiance": gog: id: 1678779214 steam: id: 1839950 -'Terminator: Resistance': +"Terminator: Resistance": files: - /Terminator/Saved/Config/WindowsNoEditor: + "/Terminator/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /Terminator/Saved/SaveGames: + "/Terminator/Saved/SaveGames": tags: - save when: @@ -531613,21 +533067,21 @@ Terminal Velocity: installDir: Terminator Resistance: {} launch: - /Terminator.exe: + "/Terminator.exe": - when: - bit: 64 os: windows store: steam steam: id: 954740 -'Terminator: Salvation': +"Terminator: Salvation": files: - /salvation/data/saves: + "/salvation/data/saves": tags: - save when: - os: windows - /salvation/data/settings: + "/salvation/data/settings": tags: - config when: @@ -531635,16 +533089,16 @@ Terminal Velocity: installDir: Terminator Salvation: {} launch: - /TerminatorSalvation.exe: + "/TerminatorSalvation.exe": - when: - store: steam steam: id: 21080 -'Terminus: Survival': +"Terminus: Survival": installDir: Terminus Survival: {} launch: - /Terminus.exe: + "/Terminus.exe": - when: - os: windows store: steam @@ -531654,15 +533108,15 @@ Termite: installDir: Termite: {} launch: - /Termite.app: + "/Termite.app": - when: - os: mac store: steam - /termite: + "/termite": - when: - os: linux store: steam - /termite.exe: + "/termite.exe": - when: - os: windows store: steam @@ -531672,7 +533126,7 @@ Terra Alia: installDir: TerraAlia: {} launch: - /Terra Alia.exe: + "/Terra Alia.exe": - when: - os: windows store: steam @@ -531684,7 +533138,7 @@ Terra Bomber: installDir: Terra Bomber: {} launch: - /terraBomber.exe: + "/terraBomber.exe": - when: - os: windows store: steam @@ -531694,7 +533148,7 @@ Terra Farmers: installDir: Farming 6-in-1 bundle: {} launch: - /Farm6in1Bundle.exe: + "/Farm6in1Bundle.exe": - when: - os: windows store: steam @@ -531704,7 +533158,7 @@ Terra Feminarum: installDir: TerraFeminarum: {} launch: - /terra_feminarum.exe: + "/terra_feminarum.exe": - when: - os: windows store: steam @@ -531715,11 +533169,11 @@ Terra Incognita: Terra Incognita: {} steam: id: 1194520 -'Terra Incognita - Chapter One: The Descendant': +"Terra Incognita - Chapter One: The Descendant": installDir: Terra Incognita ~ Chapter One The Descendant: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -531729,7 +533183,7 @@ Terra Incognito - Antarctica 1911: installDir: Terra Incognito - Antarctica 1911: {} launch: - /Terra Incognito.exe: + "/Terra Incognito.exe": - when: - os: windows store: steam @@ -531737,7 +533191,7 @@ Terra Incognito - Antarctica 1911: id: 911420 Terra Invicta: files: - /My Games/TerraInvicta/Saves: + "/My Games/TerraInvicta/Saves": tags: - save when: @@ -531747,7 +533201,7 @@ Terra Invicta: installDir: Terra Invicta: {} launch: - /TerraInvicta.exe: + "/TerraInvicta.exe": - when: - bit: 64 os: windows @@ -531756,12 +533210,12 @@ Terra Invicta: id: 1176470 Terra Lander: files: - /terraLander/lander: + "/terraLander/lander": tags: - save when: - os: windows - /terraLander/preferences.xml: + "/terraLander/preferences.xml": tags: - config when: @@ -531771,18 +533225,18 @@ Terra Lander: installDir: Terra Lander Remastered: {} launch: - /terraLander.exe: + "/terraLander.exe": - when: - store: steam steam: id: 338550 -'Terra Lander II: Rockslide Rescue': +"Terra Lander II: Rockslide Rescue": gog: id: 2012018643 installDir: Terra Lander II - Rockslide Rescue: {} launch: - /terraLander2.exe: + "/terraLander2.exe": - when: - os: windows store: steam @@ -531792,20 +533246,20 @@ Terra Mystica: installDir: Terra Mystica: {} launch: - /txm.app: + "/txm.app": - when: - os: mac store: steam - /txm.exe: + "/txm.exe": - when: - os: windows store: steam - /txm.x86: + "/txm.x86": - when: - bit: 32 os: linux store: steam - /txm.x86_64: + "/txm.x86_64": - when: - bit: 64 os: linux @@ -531814,7 +533268,7 @@ Terra Mystica: id: 628900 Terra Nil: files: - /AppData/LocalLow/Free Lives/Terra Nil: + "/AppData/LocalLow/Free Lives/Terra Nil": tags: - config - save @@ -531824,9 +533278,9 @@ Terra Nil: id: 1376417835 id: gogExtra: - - 1715616555 - - 1551711366 - 1424513925 + - 1551711366 + - 1715616555 steamExtra: - 1642370 - 2321920 @@ -531834,81 +533288,81 @@ Terra Nil: installDir: Terra Nil: {} launch: - /Terra Nil.app: + "/Terra Nil.app": - when: - os: mac store: steam - /Terra Nil.exe: + "/Terra Nil.exe": - when: - os: windows store: steam - /Terra Nil.x86_64: + "/Terra Nil.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 1593030 -'Terra Nova: Strike Force Centauri': +"Terra Nova: Strike Force Centauri": gog: id: 1434984562 installDir: Terra Nova Strike Force Centauri: {} launch: - /Terra Nova.app: + "/Terra Nova.app": - when: - os: mac store: steam - /dosbox_linux/daum/launch_terranova_game_daum.sh: + "/dosbox_linux/daum/launch_terranova_game_daum.sh": - when: - os: linux store: steam - workingDir: /dosbox_linux/daum - /dosbox_linux/launch_terranova_config.sh: + workingDir: "/dosbox_linux/daum" + "/dosbox_linux/launch_terranova_config.sh": - when: - os: linux store: steam - workingDir: /dosbox_linux - /dosbox_linux/launch_terranova_game.sh: + workingDir: "/dosbox_linux" + "/dosbox_linux/launch_terranova_game.sh": - when: - os: linux store: steam - workingDir: /dosbox_linux - /dosbox_windows/daum/dosbox.exe: - - arguments: '-conf dosbox_terranova.conf -conf dosbox_terranova_launch_windows.conf -noconsole' + workingDir: "/dosbox_linux" + "/dosbox_windows/daum/dosbox.exe": + - arguments: "-conf dosbox_terranova.conf -conf dosbox_terranova_launch_windows.conf -noconsole" when: - os: windows store: steam - workingDir: /dosbox_windows/daum - /dosbox_windows/dosbox.exe: - - arguments: '-conf dosbox_terranova.conf -conf dosbox_terranova_launch_windows.conf -noconsole' + workingDir: "/dosbox_windows/daum" + "/dosbox_windows/dosbox.exe": + - arguments: "-conf dosbox_terranova.conf -conf dosbox_terranova_launch_windows.conf -noconsole" when: - os: windows store: steam - workingDir: /dosbox_windows - - arguments: '-conf dosbox_terranova.conf -conf dosbox_terranova_config_windows.conf -noconsole' + workingDir: "/dosbox_windows" + - arguments: "-conf dosbox_terranova.conf -conf dosbox_terranova_config_windows.conf -noconsole" when: - os: windows store: steam - workingDir: /dosbox_windows + workingDir: "/dosbox_windows" steam: id: 368600 Terra Randoma: installDir: Terra Randoma: {} launch: - /TerraRandomaGame.exe: + "/TerraRandomaGame.exe": - when: - bit: 64 os: windows store: steam steam: id: 1120400 -'Terra Tanks: Defenders of the Earth': +"Terra Tanks: Defenders of the Earth": installDir: Terra Tanks: {} launch: - /TerraTanks.exe: + "/TerraTanks.exe": - when: - os: windows store: steam @@ -531916,22 +533370,22 @@ Terra Randoma: id: 747820 TerraTech: files: - /.config/unity3d/Payload/TerraTech: + "/.config/unity3d/Payload/TerraTech": tags: - config when: - os: linux - /.local/share/TerraTech: + "/.local/share/TerraTech": tags: - save when: - os: linux - /Library/Application Support/TerraTech: + "/Library/Application Support/TerraTech": tags: - save when: - os: mac - /My Games/TerraTech: + "/My Games/TerraTech": tags: - save when: @@ -531941,17 +533395,17 @@ TerraTech: installDir: TerraTech: {} launch: - /TerraTechLinux64.x86_64: + "/TerraTechLinux64.x86_64": - when: - bit: 64 os: linux store: steam - /TerraTechOSX64.app: + "/TerraTechOSX64.app": - when: - bit: 64 os: mac store: steam - /TerraTechWin64.exe: + "/TerraTechWin64.exe": - when: - bit: 64 os: windows @@ -531962,7 +533416,7 @@ Terracotta - Shards of Doom: installDir: Terracotta - Shards of Doom: {} launch: - /Terracotta.exe: + "/Terracotta.exe": - when: - os: windows store: steam @@ -531972,7 +533426,7 @@ Terraform: installDir: Terraform: {} launch: - /Terraform.exe: + "/Terraform.exe": - when: - os: windows store: steam @@ -531982,7 +533436,7 @@ Terraformer Expedition to Mars: installDir: Terraformer Expedition to Mars: {} launch: - /Terraformer.exe: + "/Terraformer.exe": - when: - os: windows store: steam @@ -531990,7 +533444,7 @@ Terraformer Expedition to Mars: id: 298220 Terraformers: files: - /AppData/LocalLow/Asteroid Lab/Terraformers/SavedGames: + "/AppData/LocalLow/Asteroid Lab/Terraformers/SavedGames": tags: - save when: @@ -532000,16 +533454,16 @@ Terraformers: installDir: Terraformers: {} launch: - /Terraformers.app/Contents/MacOS/Terraformers: + "/Terraformers.app/Contents/MacOS/Terraformers": - when: - os: mac store: steam - /Terraformers.exe: + "/Terraformers.exe": - when: - bit: 64 os: windows store: steam - /terraformers.x86_64: + "/terraformers.x86_64": - when: - os: linux store: steam @@ -532017,7 +533471,7 @@ Terraformers: id: 1244800 Terraformers (2003): files: - /Prefs: + "/Prefs": tags: - config - save @@ -532027,12 +533481,12 @@ Terraforming Earth: installDir: Terraforming Earth: {} launch: - /Contents/MacOS/love: + "/Contents/MacOS/love": - when: - os: mac store: steam - workingDir: /Contents/MacOS - /TerraformingEarth.exe: + workingDir: "/Contents/MacOS" + "/TerraformingEarth.exe": - when: - os: windows store: steam @@ -532040,12 +533494,12 @@ Terraforming Earth: id: 1029220 Terraforming Mars: files: - /AppData/LocalLow/LuckyHammers/Terraforming Mars/Saves/BaseConfiguration/Configuration: + "/AppData/LocalLow/LuckyHammers/Terraforming Mars/Saves/BaseConfiguration/Configuration": tags: - config when: - os: windows - /AppData/LocalLow/LuckyHammers/Terraforming Mars/Saves/LocalGameSave: + "/AppData/LocalLow/LuckyHammers/Terraforming Mars/Saves/LocalGameSave": tags: - save when: @@ -532054,10 +533508,10 @@ Terraforming Mars: id: 2013033253 id: gogExtra: - - 2010739260 + - 1337100717 - 1504654780 - 1908827032 - - 1337100717 + - 2010739260 steamExtra: - 1245590 - 1785010 @@ -532065,11 +533519,11 @@ Terraforming Mars: installDir: Terraforming Mars: {} launch: - /TerraformingMars.app: + "/TerraformingMars.app": - when: - os: mac store: steam - /TerraformingMars.exe: + "/TerraformingMars.exe": - when: - os: windows store: steam @@ -532083,7 +533537,7 @@ Terragearth: installDir: TERRAGEARTH: {} launch: - /TERRAGEARTH.exe: + "/TERRAGEARTH.exe": - when: - os: windows store: steam @@ -532095,7 +533549,7 @@ Terrain of Magical Expertise: installDir: Terrain of Magical Expertise: {} launch: - /TOMERPG.exe: + "/TOMERPG.exe": - when: - os: windows store: steam @@ -532105,35 +533559,35 @@ Terramancer: installDir: Terramancer: {} launch: - /Terramancers.exe: + "/Terramancers.exe": - when: - store: steam steam: id: 1050170 Terraria: files: - /Library/Application Support/Terraria: + "/Library/Application Support/Terraria": tags: - config - save when: - os: mac - /My Games/Terraria: + "/My Games/Terraria": tags: - save when: - os: windows - /My Games/Terraria/config.json: + "/My Games/Terraria/config.json": tags: - config when: - os: windows - /My Games/Terraria/input profiles.json: + "/My Games/Terraria/input profiles.json": tags: - config when: - os: windows - /Terraria: + "/Terraria": tags: - config - save @@ -532144,15 +533598,15 @@ Terraria: installDir: Terraria: {} launch: - /Terraria: + "/Terraria": - when: - os: linux store: steam - /Terraria.app/Contents/MacOS/Terraria: + "/Terraria.app/Contents/MacOS/Terraria": - when: - os: mac store: steam - /Terraria.exe: + "/Terraria.exe": - when: - os: windows store: steam @@ -532162,19 +533616,19 @@ Terrarium Land: installDir: Terrarium Land: {} launch: - /TerrariumLand.exe: + "/TerrariumLand.exe": - when: - os: windows store: steam - /TerrariumLand.x86_64: + "/TerrariumLand.x86_64": - when: - os: linux store: steam steam: id: 438780 -'Terrawars: New York Invasion': +"Terrawars: New York Invasion": files: - /Save: + "/Save": tags: - save when: @@ -532183,25 +533637,25 @@ Terrawurm: installDir: Terrawurm: {} launch: - /Terrawurm.exe: + "/Terrawurm.exe": - when: - os: windows store: steam steam: id: 907560 -'Terrian Saga: KR-17': +"Terrian Saga: KR-17": installDir: KR17: {} launch: - /KR-17.app: + "/KR-17.app": - when: - os: mac store: steam - /KR17.exe: + "/KR17.exe": - when: - os: windows store: steam - /run.sh: + "/run.sh": - when: - os: linux store: steam @@ -532211,7 +533665,7 @@ Terrible Beast from the East: installDir: Terrible Beast from the East: {} launch: - /The Terrible Beast from the East.exe: + "/The Terrible Beast from the East.exe": - when: - store: steam steam: @@ -532220,7 +533674,7 @@ Terrible Laboratory: installDir: Terrible Laboratory: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -532228,7 +533682,7 @@ Terrible Laboratory: id: 985430 Territory Idle: files: - /TerritoryIdl2_2: + "/TerritoryIdl2_2": tags: - config - save @@ -532237,7 +533691,7 @@ Territory Idle: installDir: Territory Idle: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -532247,7 +533701,7 @@ Terro Lunkka Adventures: installDir: Terro Lunkka Adventures: {} launch: - /TERROLUNKKANEW.exe: + "/TERROLUNKKANEW.exe": - when: - bit: 64 os: windows @@ -532263,20 +533717,20 @@ Terroir: installDir: Terroir: {} launch: - /Terroir.app/Contents/MacOS/Terroir: + "/Terroir.app/Contents/MacOS/Terroir": - when: - os: mac store: steam - /Terroir.exe: + "/Terroir.exe": - when: - os: windows store: steam - /Terroir.x86: + "/Terroir.x86": - when: - bit: 32 os: linux store: steam - /Terroir.x86_64: + "/Terroir.x86_64": - when: - bit: 64 os: linux @@ -532287,7 +533741,7 @@ Terror: installDir: Terror: {} launch: - /Terror/HorrorGame.exe: + "/Terror/HorrorGame.exe": - when: - store: steam steam: @@ -532296,7 +533750,7 @@ Terror In The Atomic Desert: installDir: Terror In The Atomic Desert: {} launch: - /Terror.exe: + "/Terror.exe": - when: - store: steam steam: @@ -532305,15 +533759,15 @@ Terror Lab: installDir: TERROR LAB: {} launch: - /TL.app/Contents/MacOS/TL: + "/TL.app/Contents/MacOS/TL": - when: - os: mac store: steam - /TL.exe: + "/TL.exe": - when: - os: windows store: steam - /TL.x86: + "/TL.x86": - when: - os: linux store: steam @@ -532323,7 +533777,7 @@ Terror World: installDir: Terror World: {} launch: - /Terror World.exe: + "/Terror World.exe": - when: - os: windows store: steam @@ -532333,11 +533787,11 @@ Terror for Two: installDir: TerrorForTwo: {} launch: - /TerrorForTwo.exe: + "/TerrorForTwo.exe": - when: - os: windows store: steam - /TerrorForTwoMacOSX.app: + "/TerrorForTwoMacOSX.app": - when: - os: mac store: steam @@ -532345,7 +533799,7 @@ Terror for Two: id: 945910 Terror of Hemasaurus: files: - /Digerati/TerrorOfHemasaurus/data.sav: + "/Digerati/TerrorOfHemasaurus/data.sav": tags: - config - save @@ -532356,7 +533810,7 @@ Terror of Hemasaurus: installDir: Terror of Hemasaurus: {} launch: - /TerrorOfHemasaurus.exe: + "/TerrorOfHemasaurus.exe": - when: - store: steam steam: @@ -532365,7 +533819,7 @@ Terrorarium: installDir: Terrorarium: {} launch: - /Terrorarium.exe: + "/Terrorarium.exe": - when: - os: windows store: steam @@ -532375,7 +533829,7 @@ Terrorhedron: installDir: Terrorhedron: {} launch: - /terrorhedron.exe: + "/terrorhedron.exe": - when: - os: windows store: steam @@ -532388,7 +533842,7 @@ Terrorist Elimination: installDir: Terrorist Elimination: {} launch: - /terroristelimination.exe: + "/terroristelimination.exe": - when: - os: windows store: steam @@ -532401,43 +533855,43 @@ Terrorist Takedown: - config Terrorist Takedown 2: files: - /Documents/City Interactive/Terrorist Takedown 2: + "/Documents/City Interactive/Terrorist Takedown 2": tags: - config when: - os: windows - /Documents/City Interactive/Terrorist Takedown 2/save: + "/Documents/City Interactive/Terrorist Takedown 2/save": tags: - save when: - os: windows Terrorist Takedown 3: files: - /Documents/City Interactive/Terrorist Takedown 3: + "/Documents/City Interactive/Terrorist Takedown 3": tags: - config when: - os: windows - /Documents/City Interactive/Terrorist Takedown 3/save: + "/Documents/City Interactive/Terrorist Takedown 3/save": tags: - save when: - os: windows -'Terrorist Takedown: Covert Operations': +"Terrorist Takedown: Covert Operations": files: - /Data: + "/Data": tags: - config when: - os: windows -'Terrorist Takedown: Payback': +"Terrorist Takedown: Payback": registry: HKEY_CURRENT_USER/Software/City Interactive/TTP_eng: tags: - config -'Terrorist Takedown: War in Colombia': +"Terrorist Takedown: War in Colombia": files: - /Data: + "/Data": tags: - config when: @@ -532446,44 +533900,34 @@ Tesla Breaks the World!: installDir: Tesla Breaks the World: {} launch: - /TBTW-Linux.x86: + "/TBTW-Linux.x86": - when: - bit: 32 os: linux store: steam - /TBTW-Linux.x86_64: + "/TBTW-Linux.x86_64": - when: - bit: 64 os: linux store: steam - /TBTW-OSX.app: + "/TBTW-OSX.app": - when: - os: mac store: steam - /TBTW-x86.exe: + "/TBTW-x86.exe": - when: - os: windows store: steam steam: id: 314210 -'Tesla Effect: A Tex Murphy Adventure': +"Tesla Effect: A Tex Murphy Adventure": files: - '/Library/Application/ Support/[I/]/*/[/I/]/BigFinishGames/TeslaEffect': - tags: - - save - when: - - os: mac - '/Library/Application/ Support/[I/]/*/[/I/]/BigFinishGames/TeslaEffect/SettingsDB.sav': - tags: - - config - when: - - os: mac - /BigFinishGames/TeslaEffect//*.sav: + "/BigFinishGames/TeslaEffect//*.sav": tags: - save when: - os: windows - /BigFinishGames/TeslaEffect/SettingsDB.sav: + "/BigFinishGames/TeslaEffect/SettingsDB.sav": tags: - config when: @@ -532493,11 +533937,11 @@ Tesla Breaks the World!: installDir: Tesla Effect: {} launch: - /TeslaEffect.app: + "/TeslaEffect.app": - when: - os: mac store: steam - /TeslaEffect.exe: + "/TeslaEffect.exe": - when: - os: windows store: steam @@ -532509,7 +533953,7 @@ Tesla Force: installDir: Tesla Force: {} launch: - /TF.exe: + "/TF.exe": - when: - os: windows store: steam @@ -532525,17 +533969,17 @@ Tesla VR: id: 512710 Tesla vs Lovecraft: files: - /prog.xml: + "/prog.xml": tags: - config when: - os: windows - /10tons/Tesla_vs_Lovecraft/profiles: + "/10tons/Tesla_vs_Lovecraft/profiles": tags: - save when: - os: windows - /10tons/Tesla_vs_Lovecraft/profiles: + "/10tons/Tesla_vs_Lovecraft/profiles": tags: - save when: @@ -532545,37 +533989,37 @@ Tesla vs Lovecraft: installDir: Tesla vs Lovecraft: {} launch: - /Tesla vs Lovecraft.app: + "/Tesla vs Lovecraft.app": - when: - os: mac store: steam - /TvsL: + "/TvsL": - when: - os: linux store: steam - /TvsL.exe: + "/TvsL.exe": - when: - os: windows store: steam steam: id: 636100 -Tesla's Best Friend: +"Tesla's Best Friend": steam: id: 545950 -'Tesla''s Tower: The Wardenclyffe Mystery': +"Tesla's Tower: The Wardenclyffe Mystery": installDir: - Tesla's Tower The Wardenclyffe Mystery: {} + "Tesla's Tower The Wardenclyffe Mystery": {} launch: - /TeslasTower_TheWardenclyffeMystery.exe: + "/TeslasTower_TheWardenclyffeMystery.exe": - when: - store: steam steam: id: 507140 -'Tesla: The Weather Man': +"Tesla: The Weather Man": installDir: Tesla The Weather Man: {} launch: - /WeatherMan.exe: + "/WeatherMan.exe": - when: - os: windows store: steam @@ -532583,32 +534027,32 @@ Tesla's Best Friend: id: 544380 Teslagrad: files: - /.config/unity3d/Rain/Teslagrad: + "/.config/unity3d/Rain/Teslagrad": tags: - save when: - os: linux - /AppData/LocalLow/Rain/Teslagrad: + "/AppData/LocalLow/Rain/Teslagrad": tags: - save when: - os: windows - /AppData/LocalLow/Rain/Teslagrad/ConfiguredGamepads: + "/AppData/LocalLow/Rain/Teslagrad/ConfiguredGamepads": tags: - config when: - os: windows - /AppData/LocalLow/Rain/Teslagrad/Settings: + "/AppData/LocalLow/Rain/Teslagrad/Settings": tags: - config when: - os: windows - /Library/Caches/unity.Rain.Teslagrad: + "/Library/Caches/unity.Rain.Teslagrad": tags: - save when: - os: mac - /userdata//249590/remote: + "/userdata//249590/remote": tags: - save when: @@ -532622,15 +534066,15 @@ Teslagrad: installDir: Teslagrad: {} launch: - /Teslagrad: + "/Teslagrad": - when: - os: linux store: steam - /Teslagrad.app: + "/Teslagrad.app": - when: - os: mac store: steam - /Teslagrad.exe: + "/Teslagrad.exe": - when: - os: windows store: steam @@ -532642,12 +534086,12 @@ Teslagrad: id: 249590 Teslagrad 2: files: - /.config/unity3d/Rain/Teslagrad 2: + "/.config/unity3d/Rain/Teslagrad 2": tags: - save when: - os: linux - /AppData/LocalLow/Rain/Teslagrad 2/Saves.yaml: + "/AppData/LocalLow/Rain/Teslagrad 2/Saves.yaml": tags: - save when: @@ -532655,11 +534099,11 @@ Teslagrad 2: installDir: Teslagrad 2: {} launch: - /Teslagrad 2.exe: + "/Teslagrad 2.exe": - when: - os: windows store: steam - /Teslagrad 2.x86_64: + "/Teslagrad 2.x86_64": - when: - bit: 64 os: linux @@ -532670,16 +534114,16 @@ Teslagrad Remastered: installDir: Teslagrad 1 Remake: {} launch: - /Teslagrad.app: + "/Teslagrad.app": - when: - os: mac store: steam - /Teslagrad.exe: + "/Teslagrad.exe": - when: - bit: 64 os: windows store: steam - /Teslagrad.x86_64: + "/Teslagrad.x86_64": - when: - os: linux store: steam @@ -532689,17 +534133,17 @@ Tess Elated: installDir: Tess Elated: {} launch: - /TessElated.exe: + "/TessElated.exe": - when: - os: windows store: steam steam: id: 982850 -Tessa's Ark: +"Tessa's Ark": installDir: Tessas Ark: {} launch: - /qta_steam.exe: + "/qta_steam.exe": - when: - os: windows store: steam @@ -532709,27 +534153,27 @@ TesserAct (Propelled Bird Software): installDir: TesserAct: {} launch: - /Binaries/Win32/UDK.exe: - - arguments: '-seekfreeloading' + "/Binaries/Win32/UDK.exe": + - arguments: "-seekfreeloading" when: - os: windows store: steam - workingDir: /Binaries/Win32 + workingDir: "/Binaries/Win32" steam: id: 304810 Tesseract: files: - /.tesseract: + "/.tesseract": tags: - save when: - os: linux - /.tesseract/config: + "/.tesseract/config": tags: - config when: - os: linux - /My Games/Tesseract: + "/My Games/Tesseract": tags: - config - save @@ -532742,20 +534186,20 @@ Tesseract VR: id: 809150 Test Drive 6: files: - /PlayerData: + "/PlayerData": tags: - config - save when: - os: windows - /Replay.*: + "/Replay.*": tags: - save when: - os: windows Test Drive Le Mans: files: - /save: + "/save": tags: - config - save @@ -532763,19 +534207,19 @@ Test Drive Le Mans: - os: windows Test Drive Unlimited: files: - /Test Drive Unlimited/savegame/: + "/Test Drive Unlimited/savegame/": tags: - config when: - os: windows - /Test Drive Unlimited/savegame//playersave: + "/Test Drive Unlimited/savegame//playersave": tags: - save when: - os: windows Test Drive Unlimited 2: files: - /Eden Games/Test Drive Unlimited 2/savegame/: + "/Eden Games/Test Drive Unlimited 2/savegame/": tags: - save when: @@ -532783,7 +534227,7 @@ Test Drive Unlimited 2: installDir: Test Drive Unlimited 2: {} launch: - /UpLauncher.exe: + "/UpLauncher.exe": - when: - store: steam steam: @@ -532791,14 +534235,14 @@ Test Drive Unlimited 2: Test Drive Unlimited Solar Crown: steam: id: 1249970 -'Test Drive: Ferrari Racing Legends': +"Test Drive: Ferrari Racing Legends": files: - /Test Drive Ferrari Racing Legends/graphicsconfig.xml: + "/Test Drive Ferrari Racing Legends/graphicsconfig.xml": tags: - config when: - os: windows - /Test Drive Ferrari Racing Legends/profiles/.sav: + "/Test Drive Ferrari Racing Legends/profiles/.sav": tags: - save when: @@ -532806,20 +534250,20 @@ Test Drive Unlimited Solar Crown: installDir: TDFerrari: {} launch: - /TDFerrari.exe: - - arguments: '' + "/TDFerrari.exe": + - arguments: "" when: - store: steam steam: id: 211970 -'Test Drive: Off-Road 3': +"Test Drive: Off-Road 3": files: - /SaveData: + "/SaveData": tags: - save when: - os: windows - /tdor3.cfg: + "/tdor3.cfg": tags: - config when: @@ -532829,26 +534273,26 @@ Test Subject 901: Horror Game: {} steam: id: 914450 -'Test your knowledge: Cats': +"Test your knowledge: Cats": installDir: Test your knowledge Cats: {} launch: - /Test your knowledge - Cats.exe: + "/Test your knowledge - Cats.exe": - when: - os: windows store: steam steam: id: 918180 -'Test your knowledge: Cities': +"Test your knowledge: Cities": installDir: Test your knowledge Cities: {} steam: id: 872730 -'Test your knowledge: Dogs': +"Test your knowledge: Dogs": installDir: Test your knowledge Dogs: {} launch: - /Test your knowledge - Dogs.exe: + "/Test your knowledge - Dogs.exe": - when: - os: windows store: steam @@ -532858,7 +534302,7 @@ Testbed Terror: installDir: Testbed Terror: {} launch: - /TBTEST.exe: + "/TBTEST.exe": - when: - os: windows store: steam @@ -532876,11 +534320,11 @@ Tether Together: installDir: Lover Bands: {} launch: - /Windows Build/Lover Bands.exe: + "/Windows Build/Lover Bands.exe": - when: - os: windows store: steam - /game.app/Contents/MacOS/game: + "/game.app/Contents/MacOS/game": - when: - os: mac store: steam @@ -532890,7 +534334,7 @@ Tethered: installDir: Tethered: {} launch: - /Tethered_NONVR.bat: + "/Tethered_NONVR.bat": - when: - bit: 64 os: windows @@ -532901,16 +534345,16 @@ Tetra Project - 原石计划: installDir: Tetra Project: {} launch: - /TetraProject.exe: + "/TetraProject.exe": - when: - store: steam steam: id: 1017410 -Tetra's Escape: +"Tetra's Escape": installDir: - TETRA's Escape: {} + "TETRA's Escape": {} launch: - /TETRAsEscape.exe: + "/TETRAsEscape.exe": - when: - os: windows store: steam @@ -532925,18 +534369,18 @@ Tetradecagon: installDir: Tetradecagon: {} launch: - /jre/Contents/Home/bin/java: - - arguments: '-jar tetradecagon.jar' + "/jre/Contents/Home/bin/java": + - arguments: "-jar tetradecagon.jar" when: - os: mac store: steam - /jre/bin/java: - - arguments: '-jar tetradecagon.jar' + "/jre/bin/java": + - arguments: "-jar tetradecagon.jar" when: - os: linux store: steam - /jre/bin/javaw.exe: - - arguments: '-jar tetradecagon.jar' + "/jre/bin/javaw.exe": + - arguments: "-jar tetradecagon.jar" when: - os: windows store: steam @@ -532946,7 +534390,7 @@ Tetraminos: installDir: Tetraminos: {} launch: - /Tetraminos.exe: + "/Tetraminos.exe": - when: - os: windows store: steam @@ -532959,7 +534403,7 @@ Tetripank: installDir: Tetripank: {} launch: - /tetripank.exe: + "/tetripank.exe": - when: - os: windows store: steam @@ -532967,30 +534411,30 @@ Tetripank: id: 832550 Tetris (AcademySoft): files: - /TETRIS.RES: + "/TETRIS.RES": tags: - save when: - os: dos -'Tetris Effect: Connected': +"Tetris Effect: Connected": files: - /TetrisEffect/Saved/Config: + "/TetrisEffect/Saved/Config": tags: - config when: - os: windows - /TetrisEffect/Saved/SaveGames: + "/TetrisEffect/Saved/SaveGames": tags: - save when: - os: windows - /Packages/48710EnhanceIncorporated.TRIP2.0_63vy8jfbpt4dt/LocalCache/LocalSaveGames/CONF.json: + "/Packages/48710EnhanceIncorporated.TRIP2.0_63vy8jfbpt4dt/LocalCache/LocalSaveGames/CONF.json": tags: - config when: - os: windows store: microsoft - /Packages/48710EnhanceIncorporated.TRIP2.0_63vy8jfbpt4dt/SystemAppData/wgs: + "/Packages/48710EnhanceIncorporated.TRIP2.0_63vy8jfbpt4dt/SystemAppData/wgs": tags: - save when: @@ -532999,7 +534443,7 @@ Tetris (AcademySoft): installDir: Tetris Effect Connected: {} launch: - /TetrisEffect.exe: + "/TetrisEffect.exe": - arguments: 2D when: - bit: 64 @@ -533009,7 +534453,7 @@ Tetris (AcademySoft): id: 1003590 Tetris Ultimate: files: - /userdata//316750/remote/tetrisUltimateSave.dat: + "/userdata//316750/remote/tetrisUltimateSave.dat": tags: - save when: @@ -533017,8 +534461,8 @@ Tetris Ultimate: installDir: Tetris Ultimate: {} launch: - /TetrisUltimate.exe: - - arguments: '-uplay_steam_mode' + "/TetrisUltimate.exe": + - arguments: "-uplay_steam_mode" when: - os: windows store: steam @@ -533030,12 +534474,12 @@ Tetris Ultimate: id: 316750 Tetris Worlds: files: - /ASSETS/PC/ANY_LANG/MISC/TWConfig.ini: + "/ASSETS/PC/ANY_LANG/MISC/TWConfig.ini": tags: - config when: - os: windows - /Save/TWPLINFO.dat: + "/Save/TWPLINFO.dat": tags: - save when: @@ -533044,11 +534488,13 @@ Tetris for Two: installDir: Tetris_for_Two: {} launch: - /game: + "/game": - when: - os: mac store: steam - /game.exe: + - os: linux + store: steam + "/game.exe": - when: - os: windows store: steam @@ -533056,19 +534502,19 @@ Tetris for Two: id: 1862940 Tetrobot and Co.: files: - /.config/unity3d/Swing Swing Submarine/Tetrobot and Co: + "/.config/unity3d/Swing Swing Submarine/Tetrobot and Co": tags: - config - save when: - os: linux - /Library/Caches/Swing Swing Submarine/Tetrobot and Co: + "/Library/Caches/Swing Swing Submarine/Tetrobot and Co": tags: - config - save when: - os: mac - /Saved Games/Tetrobot and Co: + "/Saved Games/Tetrobot and Co": tags: - save when: @@ -533078,15 +534524,15 @@ Tetrobot and Co.: installDir: Tetrobot and Co: {} launch: - /Tetrobot and Co.app: + "/Tetrobot and Co.app": - when: - os: mac store: steam - /Tetrobot and Co.exe: + "/Tetrobot and Co.exe": - when: - os: windows store: steam - /Tetrobot and Co.x86: + "/Tetrobot and Co.x86": - when: - os: linux store: steam @@ -533103,7 +534549,7 @@ Tetropunk: installDir: Tetro: {} launch: - /Tetropunk.exe: + "/Tetropunk.exe": - when: - os: windows store: steam @@ -533118,7 +534564,7 @@ Tetsoidea Eternal: installDir: Tetsoidea Eternal: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -533128,7 +534574,7 @@ Tetsumo Party: installDir: Tetsumo: {} launch: - /TetsumoParty.exe: + "/TetsumoParty.exe": - when: - os: windows store: steam @@ -533145,48 +534591,48 @@ Tevris: Tevris: {} steam: id: 748520 -'Tex Murphy: Martian Memorandum': +"Tex Murphy: Martian Memorandum": gog: id: 1207660943 installDir: Tex Murphy 2: {} launch: - /Tex Murphy Martian Memorandum.app: + "/Tex Murphy Martian Memorandum.app": - when: - os: mac store: steam - /dosbox_linux/daum/launch_texmurphy2_game_daum.sh: + "/dosbox_linux/daum/launch_texmurphy2_game_daum.sh": - when: - os: linux store: steam - workingDir: /dosbox_linux/daum - /dosbox_linux/launch_texmurphy2_game.sh: + workingDir: "/dosbox_linux/daum" + "/dosbox_linux/launch_texmurphy2_game.sh": - when: - os: linux store: steam - workingDir: /dosbox_linux - /dosbox_windows/daum/dosbox.exe: - - arguments: '-conf dosbox_texmurphy2.conf -conf dosbox_texmurphy2_launch_windows.conf -noconsole' + workingDir: "/dosbox_linux" + "/dosbox_windows/daum/dosbox.exe": + - arguments: "-conf dosbox_texmurphy2.conf -conf dosbox_texmurphy2_launch_windows.conf -noconsole" when: - os: windows store: steam - workingDir: /dosbox_windows/daum - /dosbox_windows/dosbox.exe: - - arguments: '-conf dosbox_texmurphy2.conf -conf dosbox_texmurphy2_launch_windows.conf -noconsole' + workingDir: "/dosbox_windows/daum" + "/dosbox_windows/dosbox.exe": + - arguments: "-conf dosbox_texmurphy2.conf -conf dosbox_texmurphy2_launch_windows.conf -noconsole" when: - os: windows store: steam - workingDir: /dosbox_windows + workingDir: "/dosbox_windows" steam: id: 302340 -'Tex Murphy: Mean Streets': +"Tex Murphy: Mean Streets": files: - /*.GAM: + "/*.GAM": tags: - save when: - os: windows - /cloud_saves/*.GAM: + "/cloud_saves/*.GAM": tags: - save when: @@ -533199,36 +534645,36 @@ Tevris: installDir: Tex Murphy 1: {} launch: - /Tex Murphy Mean Streets.app: + "/Tex Murphy Mean Streets.app": - when: - os: mac store: steam - /dosbox_linux/daum/launch_texmurphy1_game_daum.sh: + "/dosbox_linux/daum/launch_texmurphy1_game_daum.sh": - when: - os: linux store: steam - workingDir: /dosbox_linux/daum - /dosbox_linux/launch_texmurphy1_game.sh: + workingDir: "/dosbox_linux/daum" + "/dosbox_linux/launch_texmurphy1_game.sh": - when: - os: linux store: steam - workingDir: /dosbox_linux - /dosbox_windows/dosbox.exe: - - arguments: '-conf dosbox_texmurphy1.conf -conf dosbox_texmurphy1_launch_windows.conf -noconsole' + workingDir: "/dosbox_linux" + "/dosbox_windows/dosbox.exe": + - arguments: "-conf dosbox_texmurphy1.conf -conf dosbox_texmurphy1_launch_windows.conf -noconsole" when: - os: windows store: steam - workingDir: /dosbox_windows + workingDir: "/dosbox_windows" steam: id: 302330 -'Tex Murphy: Overseer': +"Tex Murphy: Overseer": files: - /games: + "/games": tags: - save when: - os: windows - /tex.ini: + "/tex.ini": tags: - config when: @@ -533238,69 +534684,69 @@ Tevris: installDir: Overseer: {} launch: - /OVERSEER.EXE: + "/OVERSEER.EXE": - when: - os: windows store: steam steam: id: 302370 -'Tex Murphy: The Pandora Directive': +"Tex Murphy: The Pandora Directive": gog: id: 1207658768 installDir: Tex Murphy 4: {} launch: - /Tex Murphy The Pandora Directive.app: + "/Tex Murphy The Pandora Directive.app": - when: - os: mac store: steam - /dosbox_linux/daum/launch_texmurphy4_game_daum.sh: + "/dosbox_linux/daum/launch_texmurphy4_game_daum.sh": - when: - os: linux store: steam - workingDir: /dosbox_linux/daum - /dosbox_linux/launch_texmurphy4_game.sh: + workingDir: "/dosbox_linux/daum" + "/dosbox_linux/launch_texmurphy4_game.sh": - when: - os: linux store: steam - workingDir: /dosbox_linux - /dosbox_windows/daum/dosbox.exe: - - arguments: '-conf dosbox_texmurphy4.conf -conf dosbox_texmurphy4_launch_windows.conf -noconsole' + workingDir: "/dosbox_linux" + "/dosbox_windows/daum/dosbox.exe": + - arguments: "-conf dosbox_texmurphy4.conf -conf dosbox_texmurphy4_launch_windows.conf -noconsole" when: - os: windows store: steam - workingDir: /dosbox_windows/daum - /dosbox_windows/dosbox.exe: - - arguments: '-conf dosbox_texmurphy4.conf -conf dosbox_texmurphy4_launch_windows.conf -noconsole' + workingDir: "/dosbox_windows/daum" + "/dosbox_windows/dosbox.exe": + - arguments: "-conf dosbox_texmurphy4.conf -conf dosbox_texmurphy4_launch_windows.conf -noconsole" when: - os: windows store: steam - workingDir: /dosbox_windows + workingDir: "/dosbox_windows" steam: id: 302360 -'Tex Murphy: Under a Killing Moon': +"Tex Murphy: Under a Killing Moon": files: - /CONFIG.INI: + "/CONFIG.INI": tags: - config when: - os: dos - /PLAYERS/*.PLR: + "/PLAYERS/*.PLR": tags: - save when: - os: dos - /TEX3/CONFIG.INI: + "/TEX3/CONFIG.INI": tags: - config when: - os: windows - /TEX3/GAMES: + "/TEX3/GAMES": tags: - save when: - os: windows - /TEX3/PLAYERS: + "/TEX3/PLAYERS": tags: - save when: @@ -533310,56 +534756,56 @@ Tevris: installDir: Tex Murphy 3: {} launch: - /Tex Murphy Under a Killing Moon.app: + "/Tex Murphy Under a Killing Moon.app": - when: - os: mac store: steam - /dosbox_linux/daum/launch_texmurphy3_game_daum.sh: + "/dosbox_linux/daum/launch_texmurphy3_game_daum.sh": - when: - os: linux store: steam - workingDir: /dosbox_linux/daum - /dosbox_linux/launch_texmurphy3_game.sh: + workingDir: "/dosbox_linux/daum" + "/dosbox_linux/launch_texmurphy3_game.sh": - when: - os: linux store: steam - workingDir: /dosbox_linux - /dosbox_windows/daum/dosbox.exe: - - arguments: '-conf dosbox_texmurphy3.conf -conf dosbox_texmurphy3_launch_windows.conf -noconsole' + workingDir: "/dosbox_linux" + "/dosbox_windows/daum/dosbox.exe": + - arguments: "-conf dosbox_texmurphy3.conf -conf dosbox_texmurphy3_launch_windows.conf -noconsole" when: - os: windows store: steam - workingDir: /dosbox_windows/daum - /dosbox_windows/dosbox.exe: - - arguments: '-conf dosbox_texmurphy3.conf -conf dosbox_texmurphy3_launch_windows.conf -noconsole' + workingDir: "/dosbox_windows/daum" + "/dosbox_windows/dosbox.exe": + - arguments: "-conf dosbox_texmurphy3.conf -conf dosbox_texmurphy3_launch_windows.conf -noconsole" when: - os: windows store: steam - workingDir: /dosbox_windows + workingDir: "/dosbox_windows" steam: id: 302350 Texas Tango: installDir: Texas Tango: {} launch: - /TexasTango.exe: + "/TexasTango.exe": - when: - os: windows store: steam steam: id: 572230 -'Text Adventure: Dungeon Empire': +"Text Adventure: Dungeon Empire": steam: id: 601210 Text Wormhole: installDir: Text Wormhole: {} launch: - /Text Wormhole.app: + "/Text Wormhole.app": - when: - os: mac store: steam - /Text Wormhole.exe: + "/Text Wormhole.exe": - when: - bit: 64 os: windows @@ -533368,17 +534814,17 @@ Text Wormhole: id: 708260 Th3 Plan: files: - /Settings.ini: + "/Settings.ini": tags: - config when: - os: windows - /game.sav: + "/game.sav": tags: - save when: - os: windows -'Thalu: Dreamtime is Now': +"Thalu: Dreamtime is Now": installDir: Thalu Dreamtime is Now: {} steam: @@ -533387,18 +534833,18 @@ Thanatos: installDir: Thanatos: {} launch: - /bin/ThanatosLauncher.exe: + "/bin/ThanatosLauncher.exe": - when: - os: windows store: steam - workingDir: /bin + workingDir: "/bin" steam: id: 493440 Thanks For Listening: installDir: Thanks for Listening: {} launch: - /TFL.exe: + "/TFL.exe": - when: - os: windows store: steam @@ -533408,11 +534854,11 @@ Thanksgiving Day Mosaic: installDir: Thanksgiving Day Mosaic: {} launch: - /Thanksgiving Day Mosaic.app: + "/Thanksgiving Day Mosaic.app": - when: - os: mac store: steam - /Thanksgiving Day Mosaic.exe: + "/Thanksgiving Day Mosaic.exe": - when: - os: windows store: steam @@ -533422,7 +534868,7 @@ Thanksgivingistry: installDir: Thanksgivingistry: {} launch: - /Thanksgivingistry.exe: + "/Thanksgivingistry.exe": - when: - store: steam steam: @@ -533431,7 +534877,7 @@ Tharn: installDir: Tharn: {} launch: - /Tharn_V1.5.exe: + "/Tharn_V1.5.exe": - when: - os: windows store: steam @@ -533439,7 +534885,7 @@ Tharn: id: 837270 Tharsis: files: - /Tharsis Data/savedata.sav: + "/Tharsis Data/savedata.sav": tags: - save when: @@ -533449,11 +534895,11 @@ Tharsis: installDir: Tharsis: {} launch: - /Tharsis.app/Contents/MacOS/osx: + "/Tharsis.app/Contents/MacOS/osx": - when: - os: mac store: steam - /tharsis.exe: + "/tharsis.exe": - when: - bit: 64 os: windows @@ -533464,32 +534910,35 @@ That Dam Level redux: installDir: That Dam Level: {} launch: - /TDLr.exe: + "/TDLr.exe": - when: - os: windows store: steam steam: id: 434970 -'That Dragon, Cancer': +"That Dragon, Cancer": installDir: - 'That Dragon, Cancer': {} + "That Dragon, Cancer": {} launch: - /TDC.app/Contents/MacOS/TDC: + "/TDC.app/Contents/MacOS/TDC": - when: - bit: 64 os: mac store: steam - /TDC.exe: + "/TDC.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam - /TDC.x86: + "/TDC.x86": - when: - bit: 32 os: linux store: steam - /TDC.x86_64: + "/TDC.x86_64": - when: - bit: 64 os: linux @@ -533500,7 +534949,7 @@ That Lava Escape Game: installDir: That Lava Escape Game: {} launch: - /ThatLavaEscapeGame.exe: + "/ThatLavaEscapeGame.exe": - when: - os: windows store: steam @@ -533510,7 +534959,7 @@ That Red Button: installDir: That Red Button: {} launch: - /ThatRedButton.exe: + "/ThatRedButton.exe": - when: - os: windows store: steam @@ -533523,52 +534972,52 @@ That Which Binds Us: installDir: That Which Binds Us: {} launch: - /TWBU.app/Contents/MacOS/TWBU: + "/TWBU.app/Contents/MacOS/TWBU": - when: - os: mac store: steam - /TWBU.exe: + "/TWBU.exe": - when: - os: windows store: steam - /TWBU.sh: + "/TWBU.sh": - when: - os: linux store: steam steam: id: 870190 -That's Mahjong!: +"That's Mahjong!": installDir: thatsmahjong: {} launch: - /MMahjong.exe: + "/MMahjong.exe": - when: - os: windows store: steam steam: id: 547310 -That's Pretty Clever: +"That's Pretty Clever": installDir: ThatsPrettyClever: {} launch: - /ganzclever.app/Contents/MacOS/ganzclever: + "/ganzclever.app/Contents/MacOS/ganzclever": - when: - os: mac store: steam - /ganzclever.exe: + "/ganzclever.exe": - when: - os: windows store: steam steam: id: 1065410 -'Thaumistry: In Charm''s Way': +"Thaumistry: In Charm's Way": files: - /Bob Bates LLC/Thaumistry.conf: + "/Bob Bates LLC/Thaumistry.conf": tags: - config when: - os: linux - /Bob Bates LLC/Thaumistry/saves: + "/Bob Bates LLC/Thaumistry/saves": tags: - save when: @@ -533576,27 +535025,30 @@ That's Pretty Clever: installDir: Thaumistry: {} launch: - /Thaumistry: + "/Thaumistry": - when: + - bit: 32 + os: linux + store: steam - bit: 64 os: linux store: steam - /Thaumistry.app/Contents/MacOS/Thaumistry: + "/Thaumistry.app/Contents/MacOS/Thaumistry": - when: - bit: 64 os: mac store: steam - /ThaumistryLauncher.exe: + "/ThaumistryLauncher.exe": - when: - os: windows store: steam steam: id: 532980 -'The "Quiet, Please!" Collection': +"The \"Quiet, Please!\" Collection": installDir: The Quiet Please Collection: {} launch: - /QuietPleaseCollection.exe: + "/QuietPleaseCollection.exe": - when: - os: windows store: steam @@ -533606,7 +535058,7 @@ The 111th Soul: installDir: The 111th Soul: {} launch: - /The 111th Soul.exe: + "/The 111th Soul.exe": - when: - store: steam registry: @@ -533617,12 +535069,12 @@ The 111th Soul: id: 749050 The 11th Hour: files: - /*.ini: + "/*.ini": tags: - config when: - os: windows - /s11h.*: + "/s11h.*": tags: - save when: @@ -533632,34 +535084,34 @@ The 11th Hour: installDir: The11thHour: {} launch: - /The 11th Hour.app: + "/The 11th Hour.app": - when: - os: mac store: steam - /v32win.exe: + "/v32win.exe": - when: - os: windows store: steam steam: id: 255940 -'The 13th Doll: A Fan Game of The 7th Guest': +"The 13th Doll: A Fan Game of The 7th Guest": gog: id: 1365954542 installDir: The 13th Doll A Fan Game of The 7th Guest: {} launch: - /The13thDoll.app: - - arguments: '-executionType STEAM' + "/The13thDoll.app": + - arguments: "-executionType STEAM" when: - os: mac store: steam - /The13thDoll.exe: - - arguments: '-executionType STEAM' + "/The13thDoll.exe": + - arguments: "-executionType STEAM" when: - os: windows store: steam - /The13thDoll.x86_64: - - arguments: '-executionType STEAM' + "/The13thDoll.x86_64": + - arguments: "-executionType STEAM" when: - os: linux store: steam @@ -533677,15 +535129,15 @@ The 2048: installDir: THE 2048: {} launch: - /The_2048.exe: + "/The_2048.exe": - when: - os: windows store: steam steam: id: 674310 -'The 25th Ward: The Silver Case': +"The 25th Ward: The Silver Case": files: - /save: + "/save": tags: - save when: @@ -533697,26 +535149,26 @@ The 2048: installDir: The 25th Ward The Silver Case: {} launch: - /The25thWard.app: + "/The25thWard.app": - when: - os: mac store: steam - /The25thWard.exe: + "/The25thWard.exe": - when: - os: windows store: steam - /The25thWard.x86: + "/The25thWard.x86": - when: - bit: 32 os: linux store: steam - /The25thWard.x86_64: + "/The25thWard.x86_64": - when: - bit: 64 os: linux store: steam registry: - 'HKEY_CURRENT_USER/Software/ActiveGamingMedia/The 25th Ward: The Silver Case': + "HKEY_CURRENT_USER/Software/ActiveGamingMedia/The 25th Ward: The Silver Case": tags: - config steam: @@ -533728,12 +535180,12 @@ The 37th Week: id: 733060 The 39 Steps: files: - /.config/unity3d/The Story Mechanics/The 39 Steps: + "/.config/unity3d/The Story Mechanics/The 39 Steps": tags: - config when: - os: linux - /AppData/LocalLow/The Story Mechanics/The 39 Steps: + "/AppData/LocalLow/The Story Mechanics/The 39 Steps": tags: - save when: @@ -533741,18 +535193,18 @@ The 39 Steps: installDir: The39Steps: {} launch: - /39Steps.app: - - arguments: '-console' + "/39Steps.app": + - arguments: "-console" when: - os: mac store: steam - /39steps.exe: - - arguments: '-console' + "/39steps.exe": + - arguments: "-console" when: - os: windows store: steam - /39stepslinux.x86: - - arguments: '-console' + "/39stepslinux.x86": + - arguments: "-console" when: - os: linux store: steam @@ -533766,7 +535218,7 @@ The 3rd Building 三教: installDir: The Third Building: {} launch: - /WindowsNoEditor/HorrorEngineV424.exe: + "/WindowsNoEditor/HorrorEngineV424.exe": - when: - os: windows store: steam @@ -533776,7 +535228,7 @@ The 50 States Quiz: installDir: The 50 States Quiz: {} launch: - /The 50 States Quiz.exe: + "/The 50 States Quiz.exe": - when: - os: windows store: steam @@ -533788,15 +535240,15 @@ The 7th Circle - Endless Nightmare: installDir: The 7th Circle: {} launch: - /The7thCircle: + "/The7thCircle": - when: - os: linux store: steam - /The7thCircle.exe: + "/The7thCircle.exe": - when: - os: windows store: steam - /the7thcircle.app/Contents/MacOS/nwjs: + "/the7thcircle.app/Contents/MacOS/nwjs": - when: - os: mac store: steam @@ -533804,12 +535256,12 @@ The 7th Circle - Endless Nightmare: id: 832710 The 7th Guest: files: - /GROOVIE.INI: + "/GROOVIE.INI": tags: - config when: - os: dos - /t7g.*: + "/t7g.*": tags: - save when: @@ -533820,46 +535272,46 @@ The 7th Guest: installDir: The 7th Guest: {} launch: - /ScummVM_Linux/launch_the7thguest_opengl.sh: + "/ScummVM_Linux/launch_the7thguest_opengl.sh": - when: - os: linux store: steam - workingDir: /ScummVM_Linux - /ScummVM_Linux/launch_the7thguest_safe.sh: + workingDir: "/ScummVM_Linux" + "/ScummVM_Linux/launch_the7thguest_safe.sh": - when: - os: linux store: steam - workingDir: /ScummVM_Linux - /ScummVM_Mac/ScummVM.app/Contents/MacOS/scummvm: - - arguments: '-c scummvm-t7g-opengl.ini t7g' + workingDir: "/ScummVM_Linux" + "/ScummVM_Mac/ScummVM.app/Contents/MacOS/scummvm": + - arguments: "-c scummvm-t7g-opengl.ini t7g" when: - os: mac store: steam - workingDir: /ScummVM_Mac - - arguments: '-c scummvm-t7g-safe.ini t7g' + workingDir: "/ScummVM_Mac" + - arguments: "-c scummvm-t7g-safe.ini t7g" when: - os: mac store: steam - workingDir: /ScummVM_Mac - /ScummVM_Windows/scummvm.exe: - - arguments: '--no-console -c scummvm-t7g-opengl.ini t7g' + workingDir: "/ScummVM_Mac" + "/ScummVM_Windows/scummvm.exe": + - arguments: "--no-console -c scummvm-t7g-opengl.ini t7g" when: - os: windows store: steam - workingDir: /ScummVM_Windows - - arguments: '--no-console -c scummvm-t7g-safe.ini t7g' + workingDir: "/ScummVM_Windows" + - arguments: "--no-console -c scummvm-t7g-safe.ini t7g" when: - os: windows store: steam - workingDir: /ScummVM_Windows + workingDir: "/ScummVM_Windows" steam: id: 255920 The 7th Guest VR: steam: id: 2456960 -'The 7th Guest: 25th Anniversary Edition': +"The 7th Guest: 25th Anniversary Edition": files: - /Saved games: + "/Saved games": tags: - config - save @@ -533873,7 +535325,7 @@ The 7th Guest VR: installDir: The7thGuest: {} launch: - /t7g.exe: + "/t7g.exe": - when: - os: windows store: steam @@ -533883,7 +535335,7 @@ The 8th Day: installDir: The 8th Day: {} launch: - /The8thDay.exe: + "/The8thDay.exe": - when: - bit: 64 os: windows @@ -533894,7 +535346,7 @@ The 9th Day: installDir: the 9th day: {} launch: - /The9thday.exe: + "/The9thday.exe": - when: - os: windows store: steam @@ -533904,7 +535356,7 @@ The 9th Gate: installDir: The 9th Gate: {} launch: - /The 9th Gate.exe: + "/The 9th Gate.exe": - when: - os: windows store: steam @@ -533917,16 +535369,16 @@ The Abbey: installDir: The Abbey: {} launch: - /TheAbbeyGame.exe: + "/TheAbbeyGame.exe": - when: - store: steam steam: id: 313200 -The Abbey - Director's cut: +"The Abbey - Director's cut": installDir: - The Abbey - Director's cut: {} + "The Abbey - Director's cut": {} launch: - /The Abbey.exe: + "/The Abbey.exe": - when: - os: windows store: steam @@ -533936,58 +535388,60 @@ The Abbey of Crime Extensum: installDir: The Abbey of Crime Extensum: {} launch: - /TheAbbeyOfCrimeExtensum.bat: + "/TheAbbeyOfCrimeExtensum.bat": - when: - os: windows store: steam - /TheAbbeyOfCrimeExtensum.sh: + "/TheAbbeyOfCrimeExtensum.sh": - when: - os: mac store: steam + - os: linux + store: steam steam: id: 474030 -'The Ables: Freepoint High': +"The Ables: Freepoint High": installDir: The Ables Freepoint High: {} launch: - /Ables.app: + "/Ables.app": - when: - os: mac store: steam - /Ables.exe: + "/Ables.exe": - when: - os: windows store: steam - /Ables.x86: + "/Ables.x86": - when: - os: linux store: steam steam: id: 427640 -'The Academy: The First Riddle': +"The Academy: The First Riddle": installDir: The Academy: {} launch: - /The Academy.app: + "/The Academy.app": - when: - os: mac store: steam - /The Academy.exe: + "/The Academy.exe": - when: - os: windows store: steam steam: id: 1155460 -'The Addams Family: Mansion Mayhem': +"The Addams Family: Mansion Mayhem": installDir: Addams Family: {} launch: - /The Addams Family.exe: + "/The Addams Family.exe": - when: - os: windows store: steam registry: - 'HKEY_CURRENT_USER/Software/Outright Games Ltd/The Addams Family: Mansion Mayhem': + "HKEY_CURRENT_USER/Software/Outright Games Ltd/The Addams Family: Mansion Mayhem": tags: - config steam: @@ -533996,7 +535450,7 @@ The Adliberum Engine: installDir: The Adliberum Engine (ADLENGINE): {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -534004,7 +535458,7 @@ The Adliberum Engine: id: 657180 The Admin: files: - '".../steamapps/common/The Admin/Engine/Config/Windows"': + "\".../steamapps/common/The Admin/Engine/Config/Windows\"": tags: - config when: @@ -534012,7 +535466,7 @@ The Admin: installDir: The Admin: {} launch: - /TheAdmin.exe: + "/TheAdmin.exe": - when: - os: windows store: steam @@ -534020,12 +535474,12 @@ The Admin: id: 420300 The Adventure Pals: files: - /AppData/LocalLow/Massive Monster/The Adventure Pals/: + "/AppData/LocalLow/Massive Monster/The Adventure Pals/": tags: - config when: - os: windows - /AppData/LocalLow/Massive Monster/The Adventure Pals//saves: + "/AppData/LocalLow/Massive Monster/The Adventure Pals//saves": tags: - save when: @@ -534035,11 +535489,11 @@ The Adventure Pals: installDir: The Adventure Pals: {} launch: - /Adventure Pals.app: + "/Adventure Pals.app": - when: - os: mac store: steam - /Adventure Pals.exe: + "/Adventure Pals.exe": - when: - os: windows store: steam @@ -534049,7 +535503,7 @@ The Adventure of Kroos: installDir: The adventure of Kroos: {} launch: - /The adventure of Kroos.exe: + "/The adventure of Kroos.exe": - when: - os: windows store: steam @@ -534059,7 +535513,7 @@ The Adventure of Magical Girl: installDir: The Adventure of Magical Girl: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -534067,17 +535521,17 @@ The Adventure of Magical Girl: id: 852790 The Adventure of Nayu: files: - /TheAdventureOfNayu/achievement.dat: + "/TheAdventureOfNayu/achievement.dat": tags: - save when: - os: windows - /TheAdventureOfNayu/config.dat: + "/TheAdventureOfNayu/config.dat": tags: - config when: - os: windows - /TheAdventureOfNayu/party_data.dat: + "/TheAdventureOfNayu/party_data.dat": tags: - save when: @@ -534085,31 +535539,31 @@ The Adventure of Nayu: installDir: TheAdventureOfNayu: {} launch: - /The_Adventure_of_NAYU.app: + "/The_Adventure_of_NAYU.app": - when: - os: mac store: steam - /contents/The_Adventure_of_NAYU.exe: + "/contents/The_Adventure_of_NAYU.exe": - when: - os: windows store: steam steam: id: 1476340 -'The Adventurer - Episode 1: Beginning of the End': +"The Adventurer - Episode 1: Beginning of the End": installDir: The Adventurer - Episode 1 Beginning of the End: {} launch: - /sgb_rpgplayer.exe: + "/sgb_rpgplayer.exe": - when: - os: windows store: steam steam: id: 628760 -'The Adventurer - Episode 2: New Dreams': +"The Adventurer - Episode 2: New Dreams": installDir: Adventure2: {} launch: - /The Adventurer.exe: + "/The Adventurer.exe": - when: - store: steam steam: @@ -534118,7 +535572,7 @@ The Adventurer and His Backpack: installDir: The Adventurer and His Backpack: {} launch: - /TAandHB.exe: + "/TAandHB.exe": - when: - os: windows store: steam @@ -534128,16 +535582,16 @@ The Adventures of 00 Dilly: installDir: The Adventures of 00 Dilly: {} launch: - /dilly.exe: + "/dilly.exe": - when: - os: windows store: steam - /dilly.x86: + "/dilly.x86": - when: - bit: 32 os: linux store: steam - /dilly.x86_64: + "/dilly.x86_64": - when: - bit: 64 os: linux @@ -534148,7 +535602,7 @@ The Adventures of Alvis: installDir: The Adventures of Alvis: {} launch: - /The Adventures of Alvis.exe: + "/The Adventures of Alvis.exe": - when: - os: windows store: steam @@ -534158,20 +535612,20 @@ The Adventures of Capitano Navarro: installDir: The Adventures of Capitano Navarro: {} launch: - /Capitano.app: + "/Capitano.app": - when: - os: mac store: steam - /The Adventures of Capitano Navarro.exe: + "/The Adventures of Capitano Navarro.exe": - when: - os: windows store: steam - /The Adventures of Capitano Navarro.x86: + "/The Adventures of Capitano Navarro.x86": - when: - bit: 32 os: linux store: steam - /The Adventures of Capitano Navarro.x86_64: + "/The Adventures of Capitano Navarro.x86_64": - when: - bit: 64 os: linux @@ -534182,7 +535636,7 @@ The Adventures of Captain Potato: installDir: The Adventures of Captain Potato: {} launch: - /taocp.exe: + "/taocp.exe": - when: - os: windows store: steam @@ -534192,7 +535646,7 @@ The Adventures of Clive McMulligan on Planet Zeta Four: installDir: The Adventures of Clive McMulligan on Planet Zeta Four: {} launch: - /CliveMcMulligan.exe: + "/CliveMcMulligan.exe": - when: - os: windows store: steam @@ -534200,12 +535654,12 @@ The Adventures of Clive McMulligan on Planet Zeta Four: id: 679410 The Adventures of Commander Shepard: files: - /Kung-Fu Circus Games/The Adventures of Commander Shepard/Savegames: + "/Kung-Fu Circus Games/The Adventures of Commander Shepard/Savegames": tags: - save when: - os: windows - /Kung-Fu Circus Games/The Adventures of Commander Shepard/config.ini: + "/Kung-Fu Circus Games/The Adventures of Commander Shepard/config.ini": tags: - config when: @@ -534217,11 +535671,11 @@ The Adventures of Elena Temple: installDir: The Adventures of Elena Temple: {} launch: - /ElenaTemple.app/Contents/MacOS/ElenaTemple: + "/ElenaTemple.app/Contents/MacOS/ElenaTemple": - when: - os: mac store: steam - /ElenaTemple.exe: + "/ElenaTemple.exe": - when: - os: windows store: steam @@ -534229,12 +535683,12 @@ The Adventures of Elena Temple: id: 800190 The Adventures of Fatman: files: - /Saved Games/The Adventures of Fatman/acsetup.cfg: + "/Saved Games/The Adventures of Fatman/acsetup.cfg": tags: - config when: - os: windows - /Saved Games/The Adventures of Fatman/agssave.*: + "/Saved Games/The Adventures of Fatman/agssave.*": tags: - save when: @@ -534242,15 +535696,15 @@ The Adventures of Fatman: installDir: The Adventures of Fatman: {} launch: - /Fatman_.exe: + "/Fatman_.exe": - when: - os: windows store: steam - - arguments: '--setup' + - arguments: "--setup" when: - os: windows store: steam - /specialfeatures/Special_Features.exe: + "/specialfeatures/Special_Features.exe": - when: - os: windows store: steam @@ -534260,15 +535714,15 @@ The Adventures of Fei Duanmu: installDir: DMF: {} launch: - /DMF.app: + "/DMF.app": - when: - os: mac store: steam - /DMF.exe: + "/DMF.exe": - when: - os: windows store: steam - /DMF.sh: + "/DMF.sh": - when: - os: linux store: steam @@ -534278,7 +535732,7 @@ The Adventures of Fluffy: installDir: Adventures of Fluffy: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: @@ -534290,7 +535744,7 @@ The Adventures of Jason and the Argonauts: installDir: The Adventures of Jason and the Argonauts: {} launch: - /Jason.exe: + "/Jason.exe": - when: - os: windows store: steam @@ -534300,7 +535754,7 @@ The Adventures of Kusoge: installDir: The Adventures of Kusoge: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: @@ -534309,7 +535763,7 @@ The Adventures of Looppy: installDir: The Adventures of Looppy: {} launch: - /The Adventures of Looppy.exe: + "/The Adventures of Looppy.exe": - when: - os: windows store: steam @@ -534319,15 +535773,15 @@ The Adventures of Mr. Bobley: installDir: The Adventures of Mr. Bobley: {} launch: - /Bobley.app: + "/Bobley.app": - when: - os: mac store: steam - /Bobley.exe: + "/Bobley.exe": - when: - os: windows store: steam - /Bobley.x86: + "/Bobley.x86": - when: - os: linux store: steam @@ -534337,7 +535791,7 @@ The Adventures of Mr. Fluffykins: installDir: The Adventures of Mr. Fluffykins: {} launch: - /MrFluffykins.exe: + "/MrFluffykins.exe": - when: - bit: 64 os: windows @@ -534348,7 +535802,7 @@ The Adventures of Nick & Willikins: installDir: The Adventures of Nick & Willikins: {} launch: - /Nick_and_Willikins.exe: + "/Nick_and_Willikins.exe": - when: - os: windows store: steam @@ -534358,25 +535812,25 @@ The Adventures of Perseus: installDir: The Adventures of Perseus: {} launch: - /Perseus.exe: + "/Perseus.exe": - when: - os: windows store: steam steam: id: 1031590 -'The Adventures of Sam Carlisle: The Hunt for the Lost Treasure': +"The Adventures of Sam Carlisle: The Hunt for the Lost Treasure": installDir: The Adventures of Sam Carlisle The Hunt for the Lost Treasure: {} launch: - /The Hunt for the Lost Treasure.app: + "/The Hunt for the Lost Treasure.app": - when: - os: mac store: steam - /The_Hunt_for_the_Lost_Treasure.exe: + "/The_Hunt_for_the_Lost_Treasure.exe": - when: - os: windows store: steam - /The_Hunt_for_the_Lost_Treasure_install.sh: + "/The_Hunt_for_the_Lost_Treasure_install.sh": - when: - os: linux store: steam @@ -534384,25 +535838,25 @@ The Adventures of Perseus: id: 726500 The Adventures of Shuggy: files: - /Library/Application Support/Shuggy: + "/Library/Application Support/Shuggy": tags: - config - save when: - os: mac - /userdata//211440: + "/userdata//211440": tags: - config - save when: - store: steam - /SavedGames/Shuggy: + "/SavedGames/Shuggy": tags: - config - save when: - os: windows - /Shuggy: + "/Shuggy": tags: - config - save @@ -534413,15 +535867,15 @@ The Adventures of Shuggy: installDir: Adventures Of Shuggy: {} launch: - /Shuggy: + "/Shuggy": - when: - os: linux store: steam - /Shuggy.app/Contents/MacOS/Shuggy: + "/Shuggy.app/Contents/MacOS/Shuggy": - when: - os: mac store: steam - /Shuggy.exe: + "/Shuggy.exe": - when: - os: windows store: steam @@ -534429,7 +535883,7 @@ The Adventures of Shuggy: id: 211440 The Adventures of Sullivan: files: - /The_Adventures_of_Sullivan: + "/The_Adventures_of_Sullivan": tags: - save when: @@ -534437,7 +535891,7 @@ The Adventures of Sullivan: installDir: The Adventures of Sullivan: {} launch: - /The Adventures of Sullivan.exe: + "/The Adventures of Sullivan.exe": - when: - os: windows store: steam @@ -534447,21 +535901,21 @@ The Adventures of Team Australia: installDir: The Adventures of Team Australia: {} launch: - /nw.exe: - - arguments: '--in-process-gpu' + "/nw.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam steam: id: 951100 -'The Adventures of Tintin: The Game': +"The Adventures of Tintin: The Game": files: - /The Adventures of Tintin: + "/The Adventures of Tintin": tags: - save when: - os: windows - /The Adventures of Tintin/Tintin.config: + "/The Adventures of Tintin/Tintin.config": tags: - config when: @@ -534470,12 +535924,12 @@ The Adventures of Team Australia: id: 202330 The Adventures of Tree: files: - /TheAdventuresOfTree_Data/Save data: + "/TheAdventuresOfTree_Data/Save data": tags: - save when: - os: windows - /AppData/LocalLow/Tiger Studios/The Adventures Of Tree: + "/AppData/LocalLow/Tiger Studios/The Adventures Of Tree": tags: - save when: @@ -534483,16 +535937,16 @@ The Adventures of Tree: installDir: The Adventures of Tree: {} launch: - /TheAdventuresOfTree.app: + "/TheAdventuresOfTree.app": - when: - os: mac store: steam - /TheAdventuresOfTree.exe: + "/TheAdventuresOfTree.exe": - when: - os: windows store: steam - /TheAdventuresOfTree.run: - - arguments: '-force-opengl' + "/TheAdventuresOfTree.run": + - arguments: "-force-opengl" when: - os: linux store: steam @@ -534506,7 +535960,7 @@ The Adventures of Willow and Ash: installDir: The Adventures of Willow and Ash: {} launch: - /Test_Build2.0/The Adventures of Willow and Ash.exe: + "/Test_Build2.0/The Adventures of Willow and Ash.exe": - when: - os: windows store: steam @@ -534519,39 +535973,39 @@ The Adventurous Four: installDir: The_Adventurous_Four: {} launch: - /AdventurousFour.app/Contents/MacOS/sdl-instead: + "/AdventurousFour.app/Contents/MacOS/sdl-instead": - when: - os: mac store: steam - /advfour: + "/advfour": - when: - os: linux store: steam - /advfour.exe: + "/advfour.exe": - when: - bit: 32 os: windows store: steam - - arguments: '-fullscreen -standalone -game adventurous_four' + - arguments: "-fullscreen -standalone -game adventurous_four" when: - bit: 64 os: windows store: steam steam: id: 815070 -'The Aether: Life as a God': +"The Aether: Life as a God": installDir: The Aether Life as a God: {} launch: - /The Aether Life as a God.app/Contents/MacOS/The Aether Life as a God: + "/The Aether Life as a God.app/Contents/MacOS/The Aether Life as a God": - when: - os: mac store: steam - /TheAetherLifeAsAGod: + "/TheAetherLifeAsAGod": - when: - os: linux store: steam - /TheAetherLifeAsAGod.exe: + "/TheAetherLifeAsAGod.exe": - when: - os: windows store: steam @@ -534561,13 +536015,13 @@ The Afterglow of Grisaia: installDir: The Afterglow of Grisaia: {} launch: - /GrisaiaAno2.exe: + "/GrisaiaAno2.exe": - when: - os: windows store: steam steam: id: 464490 -'The Aftermath: Unnatural Selection': +"The Aftermath: Unnatural Selection": steam: id: 1193620 The Afterwoods: @@ -534575,7 +536029,7 @@ The Afterwoods: id: 657210 The Age of Decadence: files: - /My Games/Age Of Decadence: + "/My Games/Age Of Decadence": tags: - config - save @@ -534586,80 +536040,80 @@ The Age of Decadence: installDir: Age of Decadence: {} launch: - /AoD64.exe: + "/AoD64.exe": - when: - bit: 64 os: windows store: steam steam: id: 230070 -'The Agency of Anomalies: Cinderstone Orphanage': +"The Agency of Anomalies: Cinderstone Orphanage": installDir: - The Agency of Anomalies Cinderstone Orphanage Collector's Edition: {} + "The Agency of Anomalies Cinderstone Orphanage Collector's Edition": {} launch: - /The Agency of Anomalies 2 CE.exe: + "/The Agency of Anomalies 2 CE.exe": - when: - store: steam steam: id: 558670 -'The Agency of Anomalies: Mind Invasion': +"The Agency of Anomalies: Mind Invasion": installDir: - The Agency of Anomalies Mind Invasion Collector's Edition: {} + "The Agency of Anomalies Mind Invasion Collector's Edition": {} launch: - /AgencyofAnomalies_MindInvasion_CE.exe: + "/AgencyofAnomalies_MindInvasion_CE.exe": - when: - os: windows store: steam steam: id: 796050 -'The Agency of Anomalies: Mystic Hospital': +"The Agency of Anomalies: Mystic Hospital": installDir: - The Agency of Anomalies Mystic Hospital Collector's Edition: {} + "The Agency of Anomalies Mystic Hospital Collector's Edition": {} launch: - /AgencyofAnomalies_Mystic.exe: + "/AgencyofAnomalies_Mystic.exe": - when: - store: steam steam: id: 503060 -'The Agency of Anomalies: The Last Performance': +"The Agency of Anomalies: The Last Performance": installDir: - The Agency of Anomalies The Last Performance Collector's Edition: {} + "The Agency of Anomalies The Last Performance Collector's Edition": {} launch: - /TheAgencyofAnomalies_TheLastPerformanceCE.exe: + "/TheAgencyofAnomalies_TheLastPerformanceCE.exe": - when: - os: windows store: steam steam: id: 647890 -'The Agency: Chapter 1': +"The Agency: Chapter 1": installDir: The Agency - Chapter 1: {} launch: - /nw: + "/nw": - when: - os: linux store: steam - /nw.exe: - - arguments: '--in-process-gpu' + "/nw.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam - /nwjs.app: + "/nwjs.app": - when: - os: mac store: steam steam: id: 492280 -'The Agency: Chapter 2': +"The Agency: Chapter 2": installDir: The Agency - Chapter 2: {} launch: - /nw.exe: - - arguments: '--in-process-gpu' + "/nw.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam - /nwjs.app: + "/nwjs.app": - when: - os: mac store: steam @@ -534669,11 +536123,11 @@ The Agony: installDir: The Agony: {} launch: - /Agony.exe: + "/Agony.exe": - when: - os: windows store: steam - /Agony.sh: + "/Agony.sh": - when: - os: linux store: steam @@ -534683,7 +536137,7 @@ The Ai Games: installDir: The Ai Games: {} launch: - /The_AI_Games.exe: + "/The_AI_Games.exe": - when: - os: windows store: steam @@ -534693,7 +536147,7 @@ The Airship Designer: installDir: The Airship Designer: {} launch: - /Blimpdesigner.exe: + "/Blimpdesigner.exe": - when: - bit: 64 os: windows @@ -534704,7 +536158,7 @@ The Albatross: installDir: TheAlbatross: {} launch: - /TheAlbatross.exe: + "/TheAlbatross.exe": - when: - os: windows store: steam @@ -534712,12 +536166,12 @@ The Albatross: id: 581600 The Albino Hunter: files: - /Game.ini: + "/Game.ini": tags: - config when: - os: windows - /Save01.rvdata2: + "/Save01.rvdata2": tags: - save when: @@ -534725,7 +536179,7 @@ The Albino Hunter: installDir: The Albino Hunter: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -534734,11 +536188,11 @@ The Albino Hunter: The Alchemist: steam: id: 762000 -The Alchemist's House: +"The Alchemist's House": installDir: - The Alchemist's House: {} + "The Alchemist's House": {} launch: - /TheAlchemist.exe: + "/TheAlchemist.exe": - when: - bit: 64 os: windows @@ -534749,7 +536203,7 @@ The Alien Cube: installDir: The Alien Cube: {} launch: - /bin/win_x64/TheAlienCube.exe: + "/bin/win_x64/TheAlienCube.exe": - when: - bit: 64 os: windows @@ -534758,7 +536212,7 @@ The Alien Cube: id: 1099220 The Alliance Alive HD Remastered: files: - /Saved Games/TheAllianceAliveHD: + "/Saved Games/TheAllianceAliveHD": tags: - save when: @@ -534768,7 +536222,7 @@ The Alliance Alive HD Remastered: installDir: TheAllianceAliveHD: {} launch: - /TheAllianceAliveHD.exe: + "/TheAllianceAliveHD.exe": - when: - bit: 64 os: windows @@ -534777,12 +536231,12 @@ The Alliance Alive HD Remastered: id: 1027250 The Almost Gone: files: - /AppData/LocalLow/Happy Volcano/The Almost Gone/SaveData*.dat: + "/AppData/LocalLow/Happy Volcano/The Almost Gone/SaveData*.dat": tags: - save when: - os: windows - /AppData/LocalLow/Happy Volcano/The Almost Gone/SaveFiles.dat: + "/AppData/LocalLow/Happy Volcano/The Almost Gone/SaveFiles.dat": tags: - config - save @@ -534791,11 +536245,11 @@ The Almost Gone: installDir: The Almost Gone: {} launch: - /TheAlmostGone.app: + "/TheAlmostGone.app": - when: - os: mac store: steam - /TheAlmostGone.exe: + "/TheAlmostGone.exe": - when: - os: windows store: steam @@ -534809,11 +536263,11 @@ The Alpha Device: installDir: The Alpha Device: {} launch: - /AlphaDevice.app: + "/AlphaDevice.app": - when: - os: mac store: steam - /AlphaDevice.exe: + "/AlphaDevice.exe": - when: - os: windows store: steam @@ -534829,7 +536283,7 @@ The Amazing Adventures of Ash - Afterparty: installDir: The Amazing Adventures of Ash - Afterparty: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -534839,14 +536293,14 @@ The Amazing Adventures of Lady Fanny Featherstone: installDir: The Amazing Adventures of Lady Fanny Featherstone: {} launch: - /fannyfeatherstone.exe: + "/fannyfeatherstone.exe": - when: - store: steam steam: id: 851490 The Amazing American Circus: files: - /AppData/LocalLow/Klabater/The Amazing American Circus/Saves: + "/AppData/LocalLow/Klabater/The Amazing American Circus/Saves": tags: - save when: @@ -534856,7 +536310,7 @@ The Amazing American Circus: installDir: The Amazing American Circus: {} launch: - /The Amazing American Circus.exe: + "/The Amazing American Circus.exe": - when: - os: windows store: steam @@ -534866,18 +536320,18 @@ The Amazing Bernard: installDir: The Amazing Bernard: {} launch: - /The Amazing Bernard.exe: + "/The Amazing Bernard.exe": - when: - os: windows store: steam steam: id: 822720 -'The Amazing Shinsengumi: Heroes in Love': +"The Amazing Shinsengumi: Heroes in Love": installDir: The Amazing Shinsengumi Heroes in Love: {} launch: - /The Amazing Shinsengumi.exe: - - arguments: '-windowed' + "/The Amazing Shinsengumi.exe": + - arguments: "-windowed" when: - os: windows store: steam @@ -534887,7 +536341,7 @@ The Amazing Shrinking Giraffe: installDir: Shrink: {} launch: - /Shrink.exe: + "/Shrink.exe": - when: - os: windows store: steam @@ -534895,7 +536349,7 @@ The Amazing Shrinking Giraffe: id: 1033220 The Amazing Spider-Man (2012): files: - /userdata//212580/remote: + "/userdata//212580/remote": tags: - save when: @@ -534904,8 +536358,8 @@ The Amazing Spider-Man (2012): installDir: The Amazing Spider-Man: {} launch: - /ASMLauncher.exe: - - arguments: '' + "/ASMLauncher.exe": + - arguments: "" when: - store: steam registry: @@ -534916,7 +536370,7 @@ The Amazing Spider-Man (2012): id: 212580 The Amazing Spider-Man 2: files: - /userdata//267550: + "/userdata//267550": tags: - save when: @@ -534925,7 +536379,7 @@ The Amazing Spider-Man 2: installDir: The Amazing Spider-Man 2: {} launch: - /ASM2Launcher.exe: + "/ASM2Launcher.exe": - when: - store: steam registry: @@ -534934,11 +536388,11 @@ The Amazing Spider-Man 2: - config steam: id: 267550 -The Amazing T.K's Suburban Nightmares: +"The Amazing T.K's Suburban Nightmares": installDir: - The Amazing T.K's Suburban Nightmares: {} + "The Amazing T.K's Suburban Nightmares": {} launch: - /TKSN.exe: + "/TKSN.exe": - when: - bit: 64 os: windows @@ -534949,18 +536403,18 @@ The Amazonian Dread: installDir: The Amazonian Dread: {} launch: - /TheAmazonianDread.exe: + "/TheAmazonianDread.exe": - when: - bit: 64 os: windows store: steam steam: id: 933900 -'The Ambassador: Fractured Timelines': +"The Ambassador: Fractured Timelines": installDir: The Ambassador: {} launch: - /The Ambassador Fractured Timelines.exe: + "/The Ambassador Fractured Timelines.exe": - when: - os: windows store: steam @@ -534970,7 +536424,7 @@ The Amber Throne: installDir: The Amber Throne: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -534981,26 +536435,26 @@ The American Dream: AmericanDream: {} steam: id: 456180 -'The American Girls: Dress Designer': +"The American Girls: Dress Designer": files: - /Data: + "/Data": tags: - save when: - os: windows - /Dress Designer.ini: + "/Dress Designer.ini": tags: - config when: - os: windows The Anacrusis: files: - /Anacrusis/Saved/Config/WindowsNoEditor: + "/Anacrusis/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /Packages/StrayBombayCompany.TheAnacrusisGamePreview_wshdcf4tacg46/LocalCache/Local/Anacrusis/Saved/Config/WinGDK: + "/Packages/StrayBombayCompany.TheAnacrusisGamePreview_wshdcf4tacg46/LocalCache/Local/Anacrusis/Saved/Config/WinGDK": tags: - config when: @@ -535014,11 +536468,11 @@ The Ancient Labyrinth: installDir: The Ancient Labyrinth: {} launch: - /The Ancient Labyrinth.app/Contents/MacOS/The Ancient Labyrinth: + "/The Ancient Labyrinth.app/Contents/MacOS/The Ancient Labyrinth": - when: - os: mac store: steam - /The Ancient Labyrinth.exe: + "/The Ancient Labyrinth.exe": - when: - os: windows store: steam @@ -535033,11 +536487,11 @@ The Angel Inn: installDir: The Angel Inn: {} launch: - /Game.app: + "/Game.app": - when: - os: mac store: steam - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -535047,7 +536501,7 @@ The Angry Banana: installDir: The Angry Banana: {} launch: - /The Angry Banana.exe: + "/The Angry Banana.exe": - when: - os: windows store: steam @@ -535057,15 +536511,15 @@ The Anomaly: installDir: The Anomaly Demo: {} launch: - /The Anomaly Demo.app/Contents/MacOS/The Anomaly Demo: + "/The Anomaly Demo.app/Contents/MacOS/The Anomaly Demo": - when: - os: mac store: steam - /The Anomaly Demo.exe: + "/The Anomaly Demo.exe": - when: - os: windows store: steam - /The Anomaly Demo.sh: + "/The Anomaly Demo.sh": - when: - os: linux store: steam @@ -535075,11 +536529,11 @@ The Answer Is 42: installDir: The Answer Is 42: {} launch: - /The Answer Is 42.exe: + "/The Answer Is 42.exe": - when: - os: windows store: steam - /TheAnswerIs42.app/Contents/MacOS/The Answer Is 42: + "/TheAnswerIs42.app/Contents/MacOS/The Answer Is 42": - when: - os: mac store: steam @@ -535089,7 +536543,7 @@ The Antidote: installDir: The Antidote: {} launch: - /The Antidote.exe: + "/The Antidote.exe": - when: - store: steam steam: @@ -535098,7 +536552,7 @@ The Apartment: installDir: TheApartmentGame: {} launch: - /TheApartment.exe: + "/TheApartment.exe": - when: - bit: 64 os: windows @@ -535109,15 +536563,15 @@ The Apotheosis Project: installDir: TheApotheosisProject: {} launch: - /The Apotheosis Project.exe: + "/The Apotheosis Project.exe": - when: - os: windows store: steam - - arguments: '--setup' + - arguments: "--setup" when: - os: windows store: steam - /TheApotheosisProject: + "/TheApotheosisProject": - when: - os: linux store: steam @@ -535125,7 +536579,7 @@ The Apotheosis Project: id: 364350 The Aquatic Adventure of the Last Human: files: - /TheAquaticAdventureOfTheLastHuman: + "/TheAquaticAdventureOfTheLastHuman": tags: - config - save @@ -535136,15 +536590,15 @@ The Aquatic Adventure of the Last Human: installDir: The Aquatic Adventure of the Last Human: {} launch: - /TheAquaticAdventureOfTheLastHuman: + "/TheAquaticAdventureOfTheLastHuman": - when: - os: linux store: steam - /TheAquaticAdventureOfTheLastHuman.app/Contents/MacOS/Mac_Runner: + "/TheAquaticAdventureOfTheLastHuman.app/Contents/MacOS/Mac_Runner": - when: - os: mac store: steam - /TheAquaticAdventureOfTheLastHuman.exe: + "/TheAquaticAdventureOfTheLastHuman.exe": - when: - os: windows store: steam @@ -535154,17 +536608,17 @@ The Arab Republic of Taghia: installDir: taghiaexe: {} launch: - /taghia.exe: + "/taghia.exe": - when: - os: windows store: steam steam: id: 796590 -'The Archer: Dead Hunt': +"The Archer: Dead Hunt": installDir: THE ARCHER Dead Hunt: {} launch: - /THE_ARCHER_DEAD_HUNT.exe: + "/THE_ARCHER_DEAD_HUNT.exe": - when: - os: windows store: steam @@ -535174,7 +536628,7 @@ The Archetype: installDir: The Archetype: {} launch: - /The Archetype.exe: + "/The Archetype.exe": - when: - os: windows store: steam @@ -535184,23 +536638,23 @@ The Architect: installDir: The Architect: {} launch: - /TheArchitect.app: + "/TheArchitect.app": - when: - os: mac store: steam - /TheArchitect.exe: + "/TheArchitect.exe": - when: - os: windows store: steam steam: id: 375420 -'The Architect: Paris': +"The Architect: Paris": gog: id: 1646541845 installDir: The Architect Paris: {} launch: - /The Architect Paris.exe: + "/The Architect Paris.exe": - when: - bit: 64 os: windows @@ -535209,7 +536663,7 @@ The Architect: id: 1525620 The Archotek Project: files: - /ATP/Saved/Config/WindowsNoEditor: + "/ATP/Saved/Config/WindowsNoEditor": tags: - config when: @@ -535217,17 +536671,17 @@ The Archotek Project: installDir: The Archotek Project: {} launch: - /ATP.app: + "/ATP.app": - when: - bit: 64 os: mac store: steam - /ATP.exe: + "/ATP.exe": - when: - bit: 64 os: windows store: steam - /ATP.sh: + "/ATP.sh": - when: - bit: 64 os: linux @@ -535239,7 +536693,7 @@ The Arcslinger: Arcslinger: {} steam: id: 381550 -'The Area 51 Secret: Boombox Killer': +"The Area 51 Secret: Boombox Killer": steam: id: 1154440 The Arena of Gladiators: @@ -535251,7 +536705,7 @@ The Armament Project: installDir: The Armament Project: {} launch: - /TheArmamentProject.exe: + "/TheArmamentProject.exe": - when: - bit: 64 os: windows @@ -535283,7 +536737,7 @@ The Artefacts lost in the Galaxy: installDir: The Artefacts lost in the Galaxy: {} launch: - /the-artefact-lost-in-the-galaxy.exe: + "/the-artefact-lost-in-the-galaxy.exe": - when: - os: windows store: steam @@ -535291,23 +536745,23 @@ The Artefacts lost in the Galaxy: id: 1052750 The Artful Escape: files: - /ArtfulEscape/Saved/Config/WindowsNoEditor: + "/ArtfulEscape/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /ArtfulEscape/Saved/SaveGames/Steam: + "/ArtfulEscape/Saved/SaveGames/Steam": tags: - save when: - os: windows - /Packages/AnnapurnaInteractive.TheArtfulEscape_c96c51jf6wkvm/LocalCache/Local/ArtfulEscape/Saved/Config/WinGDK: + "/Packages/AnnapurnaInteractive.TheArtfulEscape_c96c51jf6wkvm/LocalCache/Local/ArtfulEscape/Saved/Config/WinGDK": tags: - config when: - os: windows store: microsoft - /Packages/AnnapurnaInteractive.TheArtfulEscape_c96c51jf6wkvm/SystemAppData/wgs: + "/Packages/AnnapurnaInteractive.TheArtfulEscape_c96c51jf6wkvm/SystemAppData/wgs": tags: - save when: @@ -535316,7 +536770,7 @@ The Artful Escape: installDir: The Artful Escape: {} launch: - /ArtfulEscape.exe: + "/ArtfulEscape.exe": - when: - os: windows store: steam @@ -535326,7 +536780,7 @@ The Artifact: installDir: The Artifact: {} launch: - /TheArtifact.exe: + "/TheArtifact.exe": - when: - os: windows store: steam @@ -535336,7 +536790,7 @@ The Artifacts: installDir: The Artifacts: {} launch: - /TheArtifacts.exe: + "/TheArtifacts.exe": - when: - os: windows store: steam @@ -535346,7 +536800,7 @@ The Artist: installDir: The Artist: {} launch: - /artist.exe: + "/artist.exe": - when: - os: windows store: steam @@ -535356,7 +536810,7 @@ The Ascension: installDir: Beyond Extinct: {} launch: - /BeyondExtinct.exe: + "/BeyondExtinct.exe": - when: - bit: 64 os: windows @@ -535365,27 +536819,28 @@ The Ascension: id: 992990 The Ascent: files: - /Packages/CurveDigital.TheAscent_1ezqdnbhnc70m/LocalCache/Local/TheAscent/Saved/Config/WinGDK: + "/Packages/CurveDigital.TheAscent_1ezqdnbhnc70m/LocalCache/Local/TheAscent/Saved/Config/WinGDK": tags: - config when: - os: windows store: microsoft - /TheAscent/Saved/Config/WindowsNoEditor: + "/TheAscent/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /TheAscent/Saved/SaveGames: + "/TheAscent/Saved/SaveGames": tags: - save when: - - store: steam + - os: windows + store: steam installDir: The Ascent: {} launch: - /TheAscent.exe: - - arguments: '-Installed' + "/TheAscent.exe": + - arguments: "-Installed" when: - os: windows store: steam @@ -535400,17 +536855,17 @@ The Asskickers: installDir: The Asskickers: {} launch: - /TheAsskickers.exe: + "/TheAsskickers.exe": - when: - os: windows store: steam steam: id: 348650 -The Asteroid Belt's Trial: +"The Asteroid Belt's Trial": installDir: - The Asteroid Belt's Trial: {} + "The Asteroid Belt's Trial": {} launch: - /The Asteroid Belt's Trial.exe: + "/The Asteroid Belt's Trial.exe": - when: - os: windows store: steam @@ -535420,20 +536875,20 @@ The Astonishing Game: installDir: The Astonishing Game: {} launch: - /TheAstonishingGame.app: + "/TheAstonishingGame.app": - when: - os: mac store: steam - /TheAstonishingGame.exe: + "/TheAstonishingGame.exe": - when: - os: windows store: steam - /TheAstonishingGame.x86: + "/TheAstonishingGame.x86": - when: - bit: 32 os: linux store: steam - /TheAstonishingGame.x86_64: + "/TheAstonishingGame.x86_64": - when: - bit: 64 os: linux @@ -535444,7 +536899,7 @@ The Astral Hero: installDir: The Astral Hero: {} launch: - /The Astral Hero.exe: + "/The Astral Hero.exe": - when: - os: windows store: steam @@ -535454,8 +536909,8 @@ The Astrolarix: installDir: The Astrolarix: {} launch: - /Game.exe: - - arguments: '--in-process-gpu' + "/Game.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam @@ -535465,7 +536920,7 @@ The Atlas Legend Pack: installDir: Atlas_LP: {} launch: - /ATLAS_LP.exe: + "/ATLAS_LP.exe": - when: - store: steam steam: @@ -535477,7 +536932,7 @@ The Aura Warrior: installDir: Aura: {} launch: - /Aura.exe: + "/Aura.exe": - when: - os: windows store: steam @@ -535487,7 +536942,7 @@ The Automatician: installDir: The Automatician: {} launch: - /IncredibleHeist.exe: + "/IncredibleHeist.exe": - when: - os: windows store: steam @@ -535497,15 +536952,15 @@ The Average Everyday Adventures of Samantha Browne: installDir: The Average Everyday Adventures of Samantha Browne: {} launch: - /Samantha Browne.app: + "/Samantha Browne.app": - when: - os: mac store: steam - /Samantha Browne.exe: + "/Samantha Browne.exe": - when: - os: windows store: steam - /Samantha Browne.sh: + "/Samantha Browne.sh": - when: - os: linux store: steam @@ -535513,12 +536968,12 @@ The Average Everyday Adventures of Samantha Browne: id: 445130 The Away Team: files: - /options.json: + "/options.json": tags: - config when: - os: windows - /save.json: + "/save.json": tags: - save when: @@ -535526,15 +536981,15 @@ The Away Team: installDir: The Away Team: {} launch: - /The Away Team.app: + "/The Away Team.app": - when: - os: mac store: steam - /The Away Team.exe: + "/The Away Team.exe": - when: - os: windows store: steam - /theawayteam_launcher.sh: + "/theawayteam_launcher.sh": - when: - os: linux store: steam @@ -535542,12 +536997,12 @@ The Away Team: id: 426290 The Awesome Adventures of Captain Spirit: files: - /Dontnod//CaptainSpirit/Saved/Config/WindowsNoEditor: + "/Dontnod//CaptainSpirit/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /Dontnod//CaptainSpirit/Saved/SaveGames: + "/Dontnod//CaptainSpirit/Saved/SaveGames": tags: - save when: @@ -535560,15 +537015,15 @@ The Awkward Steve Duology: installDir: The Awkward Steve Duology: {} launch: - /The Awkward Steve Duology.app: + "/The Awkward Steve Duology.app": - when: - os: mac store: steam - /The Awkward Steve Duology.exe: + "/The Awkward Steve Duology.exe": - when: - os: windows store: steam - /The Awkward Steve Duology.sh: + "/The Awkward Steve Duology.sh": - when: - os: linux store: steam @@ -535578,7 +537033,7 @@ The Backroom - Lost and Found: installDir: The Backroom - Lost and Found: {} launch: - /TheBackroom.exe: + "/TheBackroom.exe": - when: - os: windows store: steam @@ -535588,7 +537043,7 @@ The Backrooms: installDir: The Backrooms: {} launch: - /The Backrooms.exe: + "/The Backrooms.exe": - when: - os: windows store: steam @@ -535598,12 +537053,12 @@ The Backrooms Game: installDir: The Backrooms Game: {} launch: - /The Backrooms Game 1.02.003_Linux.x86_64: + "/The Backrooms Game 1.02.003_Linux.x86_64": - when: - bit: 64 os: linux store: steam - /The Backrooms Game.exe: + "/The Backrooms Game.exe": - when: - bit: 64 os: windows @@ -535614,7 +537069,7 @@ The Backrooms Simulator: installDir: The Backrooms Simulator: {} launch: - /Backrooms/The Backrooms Simulator.exe: + "/Backrooms/The Backrooms Simulator.exe": - when: - os: windows store: steam @@ -535622,13 +537077,13 @@ The Backrooms Simulator: id: 1119430 The Baconing: files: - /userdata//18070: + "/userdata//18070": tags: - config - save when: - store: steam - /Hothead Games/TheBaconing: + "/Hothead Games/TheBaconing": tags: - config - save @@ -535637,11 +537092,11 @@ The Baconing: installDir: TheBaconing: {} launch: - /The Baconing.app: + "/The Baconing.app": - when: - os: mac store: steam - /TheBaconing.exe: + "/TheBaconing.exe": - when: - os: windows store: steam @@ -535651,7 +537106,7 @@ The Bad Gravedigger: installDir: The Bad Gravedigger: {} launch: - /The Bad Gravedigger.exe: + "/The Bad Gravedigger.exe": - when: - bit: 64 os: windows @@ -535662,16 +537117,16 @@ The Balcony: installDir: The Balcony: {} launch: - /The Balcony.exe: + "/The Balcony.exe": - when: - os: windows store: steam - /The Balcony.x86: + "/The Balcony.x86": - when: - bit: 32 os: linux store: steam - /The Balcony.x86_64: + "/The Balcony.x86_64": - when: - bit: 64 os: linux @@ -535680,24 +537135,25 @@ The Balcony: id: 816210 The Ball: files: - /UDKGame/Config: + "/UDKGame/Config": tags: - save when: - os: windows - /My Games/The Ball/UDKGame/Config: + "/My Games/The Ball/UDKGame/Config": tags: - config - save when: - os: windows - - store: steam + - os: windows + store: steam gog: id: 1207659086 installDir: The Ball: {} launch: - /Binaries/Win32/TheBall.exe: + "/Binaries/Win32/TheBall.exe": - when: - store: steam steam: @@ -535706,7 +537162,7 @@ The Ball Encounter: installDir: TheBallEncounter: {} launch: - /The Ball Encounter.exe: + "/The Ball Encounter.exe": - when: - bit: 64 os: windows @@ -535717,56 +537173,56 @@ The Ballad Singer: installDir: The Ballad Singer: {} launch: - /The Ballad Singer.app: + "/The Ballad Singer.app": - when: - os: mac store: steam - /windows_content/TBS_1_8.exe: + "/windows_content/TBS_1_8.exe": - when: - bit: 64 os: windows store: steam - /windows_content_x86/TBS_1_8_x86.exe: + "/windows_content_x86/TBS_1_8_x86.exe": - when: - bit: 32 os: windows store: steam steam: id: 907380 -'The Ballad Singer: Knights Templar': +"The Ballad Singer: Knights Templar": steam: id: 1820400 -'The Ballads of Reemus: When the Bed Bites': +"The Ballads of Reemus: When the Bed Bites": gog: id: 1207660373 installDir: Ballads of Reemus When the Bed Bites: {} launch: - /ballads-of-reemus.exe: + "/ballads-of-reemus.exe": - when: - os: windows store: steam steam: id: 327450 -'The Balloonist: Beyond the Clouds': +"The Balloonist: Beyond the Clouds": installDir: The Balloonist Beyond the Clouds: {} launch: - /The Balloonist Beyond the Clouds.app/Contents/MacOS/Default Mac desktop Universal: + "/The Balloonist Beyond the Clouds.app/Contents/MacOS/Default Mac desktop Universal": - when: - os: mac store: steam - /The Balloonist Beyond the Clouds.exe: + "/The Balloonist Beyond the Clouds.exe": - when: - os: windows store: steam - workingDir: /The Balloonist Beyond the Clouds_Data - /The Balloonist Beyond the Clouds.x86: + workingDir: "/The Balloonist Beyond the Clouds_Data" + "/The Balloonist Beyond the Clouds.x86": - when: - bit: 32 os: linux store: steam - /The Balloonist Beyond the Clouds.x86_64: + "/The Balloonist Beyond the Clouds.x86_64": - when: - bit: 64 os: linux @@ -535775,27 +537231,27 @@ The Ballad Singer: id: 681380 The Banner Saga: files: - /.local/share/Steam/userdata//237990/remote/save/saga1: + "/.local/share/Steam/userdata//237990/remote/save/saga1": tags: - save when: - os: linux - /Library/Application Support/TheBannerSaga/Local Store: + "/Library/Application Support/TheBannerSaga/Local Store": tags: - config when: - os: mac - /Library/Application Support/TheBannerSaga/Local Store/save/saga1: + "/Library/Application Support/TheBannerSaga/Local Store/save/saga1": tags: - save when: - os: mac - /TheBannerSaga/Local Store: + "/TheBannerSaga/Local Store": tags: - config when: - os: windows - /TheBannerSaga/Local Store/save/saga1: + "/TheBannerSaga/Local Store/save/saga1": tags: - save when: @@ -535808,11 +537264,11 @@ The Banner Saga: installDir: tbs: {} launch: - /The Banner Saga.app/Contents/MacOS/The Banner Saga: + "/The Banner Saga.app/Contents/MacOS/The Banner Saga": - when: - os: mac store: steam - /win32/The Banner Saga.exe: + "/win32/The Banner Saga.exe": - when: - os: windows store: steam @@ -535820,22 +537276,22 @@ The Banner Saga: id: 237990 The Banner Saga 2: files: - /Library/Application Support/TheBannerSaga2/Local Store: + "/Library/Application Support/TheBannerSaga2/Local Store": tags: - config when: - os: mac - /Library/Application Support/TheBannerSaga2/Local Store/save/saga2: + "/Library/Application Support/TheBannerSaga2/Local Store/save/saga2": tags: - save when: - os: mac - /TheBannerSaga2/Local Store: + "/TheBannerSaga2/Local Store": tags: - config when: - os: windows - /TheBannerSaga2/Local Store/save/saga2: + "/TheBannerSaga2/Local Store/save/saga2": tags: - save when: @@ -535844,16 +537300,16 @@ The Banner Saga 2: id: 1775067436 id: gogExtra: - - 1750475420 - 1312830628 + - 1750475420 installDir: tbs2: {} launch: - /The Banner Saga 2.app/Contents/MacOS/The Banner Saga 2: + "/The Banner Saga 2.app/Contents/MacOS/The Banner Saga 2": - when: - os: mac store: steam - /win32/The Banner Saga 2.exe: + "/win32/The Banner Saga 2.exe": - when: - os: windows store: steam @@ -535861,12 +537317,12 @@ The Banner Saga 2: id: 281640 The Banner Saga 3: files: - /TheBannerSaga3/Local Store: + "/TheBannerSaga3/Local Store": tags: - config when: - os: windows - /TheBannerSaga3/Local Store/save/saga3: + "/TheBannerSaga3/Local Store/save/saga3": tags: - save when: @@ -535876,44 +537332,44 @@ The Banner Saga 3: id: gogExtra: - 1127573289 - - 1875032085 - - 1634400583 - - 1840677940 + - 1140895842 - 1399959690 - 1552123654 - - 1140895842 - - 2134354904 + - 1634400583 + - 1840677940 + - 1875032085 - 1954833607 + - 2134354904 steamExtra: - - 911590 - - 958730 - 509590 - 907120 - 911000 + - 911590 + - 958730 installDir: tbs3: {} launch: - /The Banner Saga 3.app/Contents/MacOS/The Banner Saga 3: + "/The Banner Saga 3.app/Contents/MacOS/The Banner Saga 3": - when: - os: mac store: steam - /win32/The Banner Saga 3.exe: + "/win32/The Banner Saga 3.exe": - when: - os: windows store: steam steam: id: 485460 -'The Banner Saga: Factions': +"The Banner Saga: Factions": installDir: the banner saga factions: {} launch: - /The Banner Saga Factions.app/Contents/MacOS/The Banner Saga Factions: - - arguments: '--factions' + "/The Banner Saga Factions.app/Contents/MacOS/The Banner Saga Factions": + - arguments: "--factions" when: - os: mac store: steam - /win32/The Banner Saga Factions.exe: - - arguments: '--factions' + "/win32/The Banner Saga Factions.exe": + - arguments: "--factions" when: - os: windows store: steam @@ -535926,61 +537382,61 @@ The Barbarian and the Subterranean Caves: installDir: The_Barbarian_and_the_Subterranean_Caves: {} launch: - /BarbarianCaves.app/Contents/MacOS/sdl-instead: + "/BarbarianCaves.app/Contents/MacOS/sdl-instead": - when: - os: mac store: steam - /barbsc: + "/barbsc": - when: - os: linux store: steam - /barbsc.exe: + "/barbsc.exe": - when: - bit: 32 os: windows store: steam - - arguments: '-fullscreen -standalone -game barbarian_caves' + - arguments: "-fullscreen -standalone -game barbarian_caves" when: - bit: 64 os: windows store: steam steam: id: 490690 -The Bard's Tale: +"The Bard's Tale": files: - /*.TPW: + "/*.TPW": tags: - save when: - os: dos - 'A:/*.TPW': + "A:/*.TPW": tags: - save when: - os: dos -The Bard's Tale (2005): +"The Bard's Tale (2005)": files: - /Library/Application Support/The Bard's Tale/SavedGames: + "/Library/Application Support/The Bard's Tale/SavedGames": tags: - save when: - os: mac - /Library/Application Support/The Bard's Tale/settings.bin: + "/Library/Application Support/The Bard's Tale/settings.bin": tags: - config when: - os: mac - /inXile entertainment/*.bin: + "/inXile entertainment/*.bin": tags: - config when: - os: windows - /inXile entertainment/The Bard's Tale/Saved Games: + "/inXile entertainment/The Bard's Tale/Saved Games": tags: - save when: - os: windows - /BardTale: + "/BardTale": tags: - config - save @@ -535991,76 +537447,76 @@ The Bard's Tale (2005): installDir: The Bards Tale: {} launch: - /BardTale: + "/BardTale": - when: - os: linux store: steam - /Config/The Bard's Setup.exe: + "/Config/The Bard's Setup.exe": - when: - os: windows store: steam - /The Bard's Tale.app/Contents/MacOS/The Bard's Tale: + "/The Bard's Tale.app/Contents/MacOS/The Bard's Tale": - when: - os: mac store: steam - workingDir: /The Bard's Tale.app - /The Bard's Tale.exe: + workingDir: "/The Bard's Tale.app" + "/The Bard's Tale.exe": - when: - os: windows store: steam registry: - HKEY_CURRENT_USER/Software/inXile Entertainment/The Bard's Tale: + "HKEY_CURRENT_USER/Software/inXile Entertainment/The Bard's Tale": tags: - config steam: id: 41900 -'The Bard''s Tale II: The Destiny Knight': +"The Bard's Tale II: The Destiny Knight": files: - /*.TW: + "/*.TW": tags: - save when: - os: dos - /SAVE.GAM: + "/SAVE.GAM": tags: - save when: - os: dos - 'A:/*.TW': + "A:/*.TW": tags: - save when: - os: dos - 'A:/SAVE.GAM': + "A:/SAVE.GAM": tags: - save when: - os: dos -'The Bard''s Tale III: Thief of Fate': +"The Bard's Tale III: Thief of Fate": files: - /PARTIES.INF: + "/PARTIES.INF": tags: - save when: - os: dos - /SAVE.GAM: + "/SAVE.GAM": tags: - save when: - os: dos - /THIEF.CFG: + "/THIEF.CFG": tags: - config when: - os: dos - /THIEVES.INF: + "/THIEVES.INF": tags: - save when: - os: dos -'The Bard''s Tale IV: Barrows Deep': +"The Bard's Tale IV: Barrows Deep": files: - /Packages/181CBCCD.TheBardsTaleIV_9y3t8zad226mc/LocalCache/Local/BardsTale4DC/Saved/Config/WindowsNoEditor: + "/Packages/181CBCCD.TheBardsTaleIV_9y3t8zad226mc/LocalCache/Local/BardsTale4DC/Saved/Config/WindowsNoEditor": tags: - config when: @@ -536068,37 +537524,37 @@ The Bard's Tale (2005): gog: id: 1178190421 installDir: - The Bard's Tale IV: {} + "The Bard's Tale IV": {} steam: id: 566090 -'The Bard''s Tale IV: Director''s Cut': +"The Bard's Tale IV: Director's Cut": files: - /.config/Epic/BardsTale4DC/Saved/Config/LinuxNoEditor: + "/.config/Epic/BardsTale4DC/Saved/Config/LinuxNoEditor": tags: - config when: - os: linux - /.config/Epic/BardsTale4DC/Saved/SaveGames: + "/.config/Epic/BardsTale4DC/Saved/SaveGames": tags: - save when: - os: linux - /.config/Epic/BardsTale4DC/Saved/SaveGames/BT_Prefs.sav: + "/.config/Epic/BardsTale4DC/Saved/SaveGames/BT_Prefs.sav": tags: - config when: - os: linux - /BardsTale4DC/Saved/Config/WindowsNoEditor: + "/BardsTale4DC/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /BardsTale4DC/Saved/SaveGames: + "/BardsTale4DC/Saved/SaveGames": tags: - save when: - os: windows - /BardsTale4DC/Saved/SaveGames/BT_Prefs.sav: + "/BardsTale4DC/Saved/SaveGames/BT_Prefs.sav": tags: - config when: @@ -536106,26 +537562,26 @@ The Bard's Tale (2005): gog: id: 1487730861 installDir: - The Bard's Tale IV Director's Cut: {} + "The Bard's Tale IV Director's Cut": {} launch: - /BardsTale4.app: + "/BardsTale4.app": - when: - os: mac store: steam - /BardsTale4.exe: + "/BardsTale4.exe": - when: - bit: 64 os: windows store: steam - /BardsTale4.sh: + "/BardsTale4.sh": - when: - os: linux store: steam steam: id: 1091980 -The Bard's Tale Trilogy: +"The Bard's Tale Trilogy": files: - /AppData/LocalLow/InXile Entertainment/The Bard's Tale Trilogy/saves: + "/AppData/LocalLow/InXile Entertainment/The Bard's Tale Trilogy/saves": tags: - save when: @@ -536133,18 +537589,18 @@ The Bard's Tale Trilogy: gog: id: 2147483059 installDir: - The Bard's Tale Trilogy: {} + "The Bard's Tale Trilogy": {} launch: - /TheBardsTaleTrilogy.app: + "/TheBardsTaleTrilogy.app": - when: - os: mac store: steam - /TheBardsTaleTrilogy.exe: + "/TheBardsTaleTrilogy.exe": - when: - os: windows store: steam registry: - HKEY_CURRENT_USER/Software/InXile Entertainment/The Bard's Tale Trilogy: + "HKEY_CURRENT_USER/Software/InXile Entertainment/The Bard's Tale Trilogy": tags: - config steam: @@ -536158,7 +537614,7 @@ The Base: installDir: The Base: {} launch: - /base.exe: + "/base.exe": - when: - os: windows store: steam @@ -536166,17 +537622,17 @@ The Base: id: 707220 The Basement Collection: files: - /META-INF/AIR: + "/META-INF/AIR": tags: - config when: - os: windows - /Library/Preferences/collection/Local Store/#SharedObjects: + "/Library/Preferences/collection/Local Store/#SharedObjects": tags: - save when: - os: mac - /collection: + "/collection": tags: - save when: @@ -536184,11 +537640,11 @@ The Basement Collection: installDir: basement: {} launch: - /The Basement Collection.exe: + "/The Basement Collection.exe": - when: - os: windows store: steam - /collectionMac.app: + "/collectionMac.app": - when: - os: mac store: steam @@ -536198,12 +537654,12 @@ The Basilisk: installDir: The Basilisk: {} launch: - /The Basilisk.exe: + "/The Basilisk.exe": - when: - bit: 64 os: windows store: steam - /thebasilisk.app/Contents/MacOS/nwjs: + "/thebasilisk.app/Contents/MacOS/nwjs": - when: - os: mac store: steam @@ -536213,7 +537669,7 @@ The Bathhouse: installDir: The Bathhouse 地獄銭湯: {} launch: - /TheBathhouse.exe: + "/TheBathhouse.exe": - when: - store: steam steam: @@ -536222,7 +537678,7 @@ The Battle Of Ages: installDir: The Battle Of Ages: {} launch: - /TheBattleOfAges.exe: + "/TheBattleOfAges.exe": - when: - bit: 64 os: windows @@ -536238,46 +537694,30 @@ The Battle for Sector 219: installDir: The Battle for Sector 219: {} launch: - /Sector219.app/Contents/MacOS/Sector219: + "/Sector219.app/Contents/MacOS/Sector219": - when: - os: mac store: steam - /Sector219.exe: + "/Sector219.exe": - when: - os: windows store: steam steam: id: 455200 The Battle for Wesnoth: - files: - /Library/Application Support/Wesnoth_*: - tags: - - save - when: - - os: mac - /Wesnoth_*: - tags: - - save - when: - - os: windows - /wesnoth: - tags: - - save - when: - - os: linux installDir: wesnoth: {} launch: - /The Battle for Wesnoth.app/Contents/MacOS/The Battle for Wesnoth: + "/The Battle for Wesnoth.app/Contents/MacOS/The Battle for Wesnoth": - when: - os: mac store: steam - /start.sh: + "/start.sh": - when: - bit: 64 os: linux store: steam - /wesnoth.exe: + "/wesnoth.exe": - when: - os: windows store: steam @@ -536290,16 +537730,16 @@ The Battle of Mahjong: installDir: The Battle Of Mahjong: {} launch: - /MJ.app: + "/MJ.app": - when: - os: mac store: steam - /MJ.exe: + "/MJ.exe": - when: - bit: 32 os: windows store: steam - /MJ64.exe: + "/MJ64.exe": - when: - bit: 64 os: windows @@ -536308,7 +537748,7 @@ The Battle of Mahjong: id: 700750 The Battle of Polytopia: files: - /AppData/LocalLow/Midjiwan/Polytopia: + "/AppData/LocalLow/Midjiwan/Polytopia": tags: - save when: @@ -536316,15 +537756,15 @@ The Battle of Polytopia: installDir: The Battle of Polytopia: {} launch: - /Polytopia.app/Contents/MacOS/Polytopia: + "/Polytopia.app/Contents/MacOS/Polytopia": - when: - os: mac store: steam - /Polytopia.exe: + "/Polytopia.exe": - when: - os: windows store: steam - /Polytopia.x86_64: + "/Polytopia.x86_64": - when: - bit: 64 os: linux @@ -536335,7 +537775,7 @@ The Battle of Sol: installDir: The Battle of Sol: {} launch: - /Binaries/Win32/TheBattleOfSol.exe: + "/Binaries/Win32/TheBattleOfSol.exe": - when: - store: steam steam: @@ -536344,7 +537784,7 @@ The Battles of Spwak: installDir: The Battles of Spwak: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -536354,7 +537794,7 @@ The Battles of Spwak 2: installDir: The Battles of Spwak 2: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -536364,7 +537804,7 @@ The Battles of Spwak 3: installDir: The Battles of Spwak 3: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -536379,7 +537819,7 @@ The Beard in the Mirror: installDir: The Beard in the Mirror: {} launch: - /The Beard in the Mirror.exe: + "/The Beard in the Mirror.exe": - when: - os: windows store: steam @@ -536389,7 +537829,7 @@ The Bears and the Bees: installDir: The Bears And The Bees: {} launch: - /The Bears And The Bees.exe: + "/The Bears And The Bees.exe": - when: - os: windows store: steam @@ -536397,12 +537837,12 @@ The Bears and the Bees: id: 709080 The Beast Inside: files: - /TheBeastInside/Saved/Config/WindowsNoEditor: + "/TheBeastInside/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /TheBeastInside/Saved/SaveGames: + "/TheBeastInside/Saved/SaveGames": tags: - save when: @@ -536412,26 +537852,26 @@ The Beast Inside: installDir: The Beast Inside: {} launch: - /TheBeastInside.exe: + "/TheBeastInside.exe": - when: - os: windows store: steam steam: id: 792300 -'The Beast Within: A Gabriel Knight Mystery': +"The Beast Within: A Gabriel Knight Mystery": files: - /GK2SG.*: + "/GK2SG.*": tags: - save when: - os: dos - os: windows - /RESOURCE.CFG: + "/RESOURCE.CFG": tags: - config when: - os: dos - /RESOURCE.WIN: + "/RESOURCE.WIN": tags: - config when: @@ -536441,7 +537881,7 @@ The Beast Inside: installDir: Gabriel Knight 2: {} launch: - /SierraLauncher.exe: + "/SierraLauncher.exe": - when: - store: steam steam: @@ -536450,25 +537890,25 @@ The Beast of Gevaudan: installDir: The Beast of Gevaudan: {} launch: - /The_Beast_of_Gevaudan.exe: + "/The_Beast_of_Gevaudan.exe": - when: - os: windows store: steam steam: id: 1106740 -'The Beat: A Glam Noir Game': +"The Beat: A Glam Noir Game": installDir: The Beat A Glam Noir Game: {} launch: - /TheBeat.app: + "/TheBeat.app": - when: - os: mac store: steam - /TheBeat.exe: + "/TheBeat.exe": - when: - os: windows store: steam - /TheBeat.x86_64: + "/TheBeat.x86_64": - when: - os: linux store: steam @@ -536478,35 +537918,35 @@ The Bedtime Story: installDir: TheBedtimeStory: {} launch: - /TheBedtimeStory.exe: + "/TheBedtimeStory.exe": - when: - os: windows store: steam steam: id: 551650 -The Beggar's Ride: +"The Beggar's Ride": installDir: The Beggars Ride: {} launch: - /TBR.app: + "/TBR.app": - when: - os: mac store: steam - /TBR_x64.exe: + "/TBR_x64.exe": - when: - bit: 64 os: windows store: steam - /TBR_x86.exe: + "/TBR_x86.exe": - when: - bit: 32 os: windows store: steam steam: id: 463760 -The Beginner's Guide: +"The Beginner's Guide": files: - /beginnersguide/cfg: + "/beginnersguide/cfg": tags: - config - save @@ -536518,22 +537958,24 @@ The Beginner's Guide: installDir: The Beginners Guide: {} launch: - /beginnersguide.exe: + "/beginnersguide.exe": - when: - os: windows store: steam - /launchit.sh: - - arguments: '-game beginnersguide' + "/launchit.sh": + - arguments: "-game beginnersguide" when: - os: mac store: steam + - os: linux + store: steam steam: id: 303210 The Behind - The Beyond: installDir: Behind The Beyond: {} launch: - /BTB.exe: + "/BTB.exe": - when: - bit: 64 os: windows @@ -536544,7 +537986,7 @@ The Bell Chimes for Gold: installDir: The Bell Chimes for Gold: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: @@ -536559,7 +538001,7 @@ The Berlin Wall: id: 836880 The Big Con: files: - /AppData/LocalLow/Mighty Yell Studios/The Big Con/SaveGameData: + "/AppData/LocalLow/Mighty Yell Studios/The Big Con/SaveGameData": tags: - save when: @@ -536567,7 +538009,7 @@ The Big Con: installDir: The Big Con: {} launch: - /The Big Con.exe: + "/The Big Con.exe": - when: - bit: 64 os: windows @@ -536579,7 +538021,7 @@ The Big Elk: id: 449440 The Big Journey: files: - /userdata//742480/remote/SavedGames: + "/userdata//742480/remote/SavedGames": tags: - save when: @@ -536588,11 +538030,11 @@ The Big Journey: installDir: The Big Journey: {} launch: - /The Big Journey.app: + "/The Big Journey.app": - when: - os: mac store: steam - /The Big Journey.exe: + "/The Big Journey.exe": - when: - os: windows store: steam @@ -536604,12 +538046,12 @@ The Big Journey: id: 742480 The Big Red Adventure: files: - /SAVE: + "/SAVE": tags: - save when: - os: dos - /TBRA.BAT: + "/TBRA.BAT": tags: - config when: @@ -536618,7 +538060,7 @@ The Big Secret of a Small Town: installDir: The Big Secret of a Small Town: {} launch: - /TheBigSecret.exe: + "/TheBigSecret.exe": - when: - os: windows store: steam @@ -536628,7 +538070,7 @@ The Big SokoBang: installDir: The Big SokoBang: {} launch: - /the_big_sokobang.exe: + "/the_big_sokobang.exe": - when: - bit: 64 os: windows @@ -536640,14 +538082,14 @@ The Big Three: id: 823390 The Binding of Isaac: files: - /serial.txt: + "/serial.txt": tags: - config - save when: - os: windows - os: mac - /.macromedia/Flash_Player/#SharedObjects/WGGUXPNQ/localhost/so.sol: + "/.macromedia/Flash_Player/#SharedObjects/WGGUXPNQ/localhost/so.sol": tags: - config - save @@ -536656,55 +538098,55 @@ The Binding of Isaac: installDir: The Binding Of Isaac: {} launch: - /Isaac.app: + "/Isaac.app": - when: - os: mac store: steam - /Isaac.exe: + "/Isaac.exe": - when: - os: windows store: steam steam: id: 113200 -'The Binding of Isaac: Rebirth': +"The Binding of Isaac: Rebirth": files: - /Library/Application Support/Binding of Isaac Rebirth: + "/Library/Application Support/Binding of Isaac Rebirth": tags: - config - save when: - os: mac - /userdata//250900/remote: + "/userdata//250900/remote": tags: - config - save when: - store: steam - /My Games/Binding of Isaac Afterbirth: + "/My Games/Binding of Isaac Afterbirth": tags: - config - save when: - os: windows - /My Games/Binding of Isaac Afterbirth+: + "/My Games/Binding of Isaac Afterbirth+": tags: - config - save when: - os: windows - /My Games/Binding of Isaac Rebirth: + "/My Games/Binding of Isaac Rebirth": tags: - config - save when: - os: windows - /My Games/Binding of Isaac Repentance: + "/My Games/Binding of Isaac Repentance": tags: - config - save when: - os: windows - /binding of isaac rebirth: + "/binding of isaac rebirth": tags: - config - save @@ -536722,20 +538164,20 @@ The Binding of Isaac: installDir: The Binding of Isaac Rebirth: {} launch: - /The Binding of Isaac Rebirth.app: + "/The Binding of Isaac Rebirth.app": - when: - os: mac store: steam - /isaac-ng.exe: + "/isaac-ng.exe": - when: - os: windows store: steam - /run-i386.sh: + "/run-i386.sh": - when: - bit: 32 os: linux store: steam - /run-x64.sh: + "/run-x64.sh": - when: - bit: 64 os: linux @@ -536744,18 +538186,18 @@ The Binding of Isaac: id: 250900 The Binding of YOU (2019): installDir: - The Binding of 'YOU': {} + "The Binding of 'YOU'": {} launch: - /TBOY.exe: + "/TBOY.exe": - when: - store: steam steam: id: 1157890 The Binding of You: installDir: - The Binding of 'YOU': {} + "The Binding of 'YOU'": {} launch: - /TBOY.exe: + "/TBOY.exe": - when: - store: steam steam: @@ -536764,7 +538206,7 @@ The Bits That Saved the Universe: installDir: The Bits That Saved The Universe: {} launch: - /TheBitsThatSavedTheUniverse-1.1.exe: + "/TheBitsThatSavedTheUniverse-1.1.exe": - when: - os: windows store: steam @@ -536772,7 +538214,7 @@ The Bits That Saved the Universe: id: 574910 The Bizarre Adventures of Woodruff and the Schnibble: files: - /SAVE: + "/SAVE": tags: - save when: @@ -536782,7 +538224,7 @@ The Bizarre Creations of Keith the Magnificent: id: 392730 The Black Death: files: - /Plague/Config: + "/Plague/Config": tags: - config when: @@ -536790,7 +538232,7 @@ The Black Death: installDir: BlackDeath: {} launch: - /plague.exe: + "/plague.exe": - when: - os: windows store: steam @@ -536800,7 +538242,7 @@ The Black Knight: installDir: The Black Knight: {} launch: - /TheBlackKnight.exe: + "/TheBlackKnight.exe": - when: - os: windows store: steam @@ -536810,7 +538252,7 @@ The Black Masses: installDir: The Black Masses: {} launch: - /The Black Masses.exe: + "/The Black Masses.exe": - when: - bit: 64 os: windows @@ -536819,7 +538261,7 @@ The Black Masses: id: 992910 The Black Mirror: files: - /agds.cfg: + "/agds.cfg": tags: - config when: @@ -536829,7 +538271,7 @@ The Black Mirror: installDir: Black Mirror: {} launch: - /agds.exe: + "/agds.exe": - when: - os: windows store: steam @@ -536839,15 +538281,15 @@ The Black Watchmen: installDir: The Black Watchmen: {} launch: - /tbw.app: + "/tbw.app": - when: - os: mac store: steam - /tbw.exe: + "/tbw.exe": - when: - os: windows store: steam - /tbw.x86: + "/tbw.x86": - when: - os: linux store: steam @@ -536861,11 +538303,11 @@ The Black Widow: installDir: The Black Widow: {} launch: - /The Black Widow.app: + "/The Black Widow.app": - when: - os: mac store: steam - /The Black Widow.exe: + "/The Black Widow.exe": - when: - os: windows store: steam @@ -536875,7 +538317,7 @@ The Blackbird of Amor: installDir: The Blackbird of Amor: {} launch: - /BlackbirdOA.exe: + "/BlackbirdOA.exe": - when: - bit: 64 os: windows @@ -536884,22 +538326,22 @@ The Blackbird of Amor: id: 1208860 The Blackout Club: files: - /TheBlackoutClub/Saved/Config/WindowsNoEditor: + "/TheBlackoutClub/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /TheBlackoutClub/Saved/SaveData//Options.cloud.dbags: + "/TheBlackoutClub/Saved/SaveData//Options.cloud.dbags": tags: - config when: - os: windows - /TheBlackoutClub/Saved/SaveData//Options.local.dbags: + "/TheBlackoutClub/Saved/SaveData//Options.local.dbags": tags: - config when: - os: windows - /TheBlackoutClub/Saved/SaveData//Progress.cloud.dbags: + "/TheBlackoutClub/Saved/SaveData//Progress.cloud.dbags": tags: - save when: @@ -536907,7 +538349,7 @@ The Blackout Club: installDir: TheBlackoutClub: {} launch: - /TheBlackoutClub.exe: + "/TheBlackoutClub.exe": - when: - os: windows store: steam @@ -536915,23 +538357,23 @@ The Blackout Club: id: 599080 The Blackwell Convergence: files: - /acsetup.cfg: + "/acsetup.cfg": tags: - config when: - os: mac - os: linux - /Saved Games/Blackwell Convergence: + "/Saved Games/Blackwell Convergence": tags: - save when: - os: windows - /Saved Games/Blackwell Convergence/acsetup.cfg: + "/Saved Games/Blackwell Convergence/acsetup.cfg": tags: - config when: - os: windows - /ags/Blackwell Convergence: + "/ags/Blackwell Convergence": tags: - save when: @@ -536944,20 +538386,23 @@ The Blackwell Convergence: installDir: Blackwell Convergence: {} launch: - /Convergence.app/Contents/MacOS/AGS: + "/Convergence.app/Contents/MacOS/AGS": - when: - os: mac store: steam - /Convergence.exe: + "/Convergence.exe": - when: - os: windows store: steam - /Start.sh: + "/Start.sh": - when: + - bit: 32 + os: linux + store: steam - bit: 64 os: linux store: steam - /winsetup.exe: + "/winsetup.exe": - when: - os: windows store: steam @@ -536965,28 +538410,28 @@ The Blackwell Convergence: id: 80350 The Blackwell Deception: files: - /acsetup.cfg: + "/acsetup.cfg": tags: - config when: - os: mac - os: linux - /Library/Application Support/Blackwell Deception: + "/Library/Application Support/Blackwell Deception": tags: - save when: - os: mac - /Saved Games/Blackwell Deception: + "/Saved Games/Blackwell Deception": tags: - save when: - os: windows - /Saved Games/Blackwell Deception/acsetup.cfg: + "/Saved Games/Blackwell Deception/acsetup.cfg": tags: - config when: - os: windows - /ags/Blackwell Deception: + "/ags/Blackwell Deception": tags: - save when: @@ -536999,20 +538444,23 @@ The Blackwell Deception: installDir: Blackwell Deception: {} launch: - /Deception.app/Contents/MacOS/AGS: + "/Deception.app/Contents/MacOS/AGS": - when: - os: mac store: steam - /Deception.exe: + "/Deception.exe": - when: - os: windows store: steam - /Start.sh: + "/Start.sh": - when: + - bit: 32 + os: linux + store: steam - bit: 64 os: linux store: steam - /winsetup.exe: + "/winsetup.exe": - when: - os: windows store: steam @@ -537020,27 +538468,27 @@ The Blackwell Deception: id: 80360 The Blackwell Epiphany: files: - /acsetup.cfg: + "/acsetup.cfg": tags: - config when: - os: linux - /Library/Application Support/Blackwell Epiphany: + "/Library/Application Support/Blackwell Epiphany": tags: - save when: - os: mac - /Saved Games/Blackwell Epiphany: + "/Saved Games/Blackwell Epiphany": tags: - save when: - os: windows - /Saved Games/Blackwell Epiphany/acsetup.cfg: + "/Saved Games/Blackwell Epiphany/acsetup.cfg": tags: - config when: - os: windows - /ags/Blackwell Epiphany: + "/ags/Blackwell Epiphany": tags: - save when: @@ -537050,20 +538498,23 @@ The Blackwell Epiphany: installDir: Blackwell Epiphany: {} launch: - /Epiphany.app/Contents/MacOS/AGS: + "/Epiphany.app/Contents/MacOS/AGS": - when: - os: mac store: steam - /Start.sh: + "/Start.sh": - when: + - bit: 32 + os: linux + store: steam - bit: 64 os: linux store: steam - /epiphany.exe: + "/epiphany.exe": - when: - os: windows store: steam - /winsetup.exe: + "/winsetup.exe": - when: - os: windows store: steam @@ -537071,28 +538522,28 @@ The Blackwell Epiphany: id: 236930 The Blackwell Legacy: files: - /acsetup.cfg: + "/acsetup.cfg": tags: - config when: - os: mac - os: linux - /Documents/My Saved Games/Blackwell Legacy v1.7: + "/Documents/My Saved Games/Blackwell Legacy v1.7": tags: - save when: - os: mac - /Saved Games/Blackwell Legacy: + "/Saved Games/Blackwell Legacy": tags: - save when: - os: windows - /Saved Games/Blackwell Legacy/acsetup.cfg: + "/Saved Games/Blackwell Legacy/acsetup.cfg": tags: - config when: - os: windows - /ags/Blackwell Legacy: + "/ags/Blackwell Legacy": tags: - save when: @@ -537105,19 +538556,22 @@ The Blackwell Legacy: installDir: Blackwell Legacy: {} launch: - /Blackwell Legacy.exe: + "/Blackwell Legacy.exe": - when: - os: windows store: steam - /Legacy.app/Contents/MacOS/AGS: + "/Legacy.app/Contents/MacOS/AGS": - when: - os: mac store: steam - /Start.sh: + "/Start.sh": - when: - bit: 32 os: linux store: steam + - bit: 64 + os: linux + store: steam steam: id: 80330 The Blight: @@ -537129,7 +538583,7 @@ The Blind Prophet: installDir: The Blind Prophet: {} launch: - /The Blind Prophet.exe: + "/The Blind Prophet.exe": - when: - os: windows store: steam @@ -537139,7 +538593,7 @@ The Blobs Fight: installDir: The Blobs Fight: {} launch: - /TheBlobsFight.exe: + "/TheBlobsFight.exe": - when: - os: windows store: steam @@ -537149,7 +538603,7 @@ The Block Box: installDir: The Block Box: {} launch: - /TheBlockBox.exe: + "/TheBlockBox.exe": - when: - store: steam steam: @@ -537158,7 +538612,7 @@ The Bloobles and the Quest for Chocolate: installDir: The Bloobles and the Quest for Chocolate: {} launch: - /The Bloobles.exe: + "/The Bloobles.exe": - when: - os: windows store: steam @@ -537168,37 +538622,37 @@ The Blood Eclipse: installDir: The Blood Eclipse: {} launch: - /Blood Eclipse.x86: + "/Blood Eclipse.x86": - when: - bit: 32 os: linux store: steam - /Blood Eclipse.x86_64: + "/Blood Eclipse.x86_64": - when: - bit: 64 os: linux store: steam - /BloodEclipse-OSX.app: + "/BloodEclipse-OSX.app": - when: - os: mac store: steam - /BloodEclipse-WindowsVR/The Blood Eclipse.exe: - - arguments: '-vrmode none' + "/BloodEclipse-WindowsVR/The Blood Eclipse.exe": + - arguments: "-vrmode none" when: - bit: 64 os: windows store: steam - workingDir: /BloodEclipse-WindowsVR + workingDir: "/BloodEclipse-WindowsVR" steam: id: 955290 The Bloodline: files: - /TheBloodline/Saved/Config/WindowsNoEditor: + "/TheBloodline/Saved/Config/WindowsNoEditor": tags: - save when: - os: windows - /TheBloodline/Saved/SaveGames: + "/TheBloodline/Saved/SaveGames": tags: - save when: @@ -537209,15 +538663,15 @@ The Blue Box: installDir: The Blue Box: {} launch: - /TheBlueBox: + "/TheBlueBox": - when: - os: linux store: steam - /TheBlueBox.app: + "/TheBlueBox.app": - when: - os: mac store: steam - /TheBlueBox.exe: + "/TheBlueBox.exe": - when: - bit: 64 os: windows @@ -537228,11 +538682,11 @@ The Blue Flamingo: installDir: TheBlueFlamingo: {} launch: - /TheBlueFlamingo.app: + "/TheBlueFlamingo.app": - when: - os: mac store: steam - /TheBlueFlamingo.exe: + "/TheBlueFlamingo.exe": - when: - os: windows store: steam @@ -537243,31 +538697,31 @@ The Blue Zula VR Concert Series: The Blue Zula VR Concert Series: {} steam: id: 799660 -'The Bluecoats: North & South': +"The Bluecoats: North & South": gog: id: 1441968425 installDir: Les Tuniques Bleues Nord & Sud: {} launch: - /NorthSouth.app/Contents/MacOS/N_S: + "/NorthSouth.app/Contents/MacOS/N_S": - when: - os: mac store: steam - /NorthSouth.exe: + "/NorthSouth.exe": - when: - os: windows store: steam steam: id: 963220 -'The Bluecoats: North vs South': +"The Bluecoats: North vs South": installDir: The Bluecoats North vs South: {} launch: - /NAS.exe: + "/NAS.exe": - when: - os: windows store: steam - /NorthVsSouth.app: + "/NorthVsSouth.app": - when: - os: mac store: steam @@ -537277,7 +538731,7 @@ The Blueness of a Wound: installDir: The Blueness of a Wound: {} launch: - /The Blueness of a Wound.exe: + "/The Blueness of a Wound.exe": - when: - store: steam steam: @@ -537286,11 +538740,11 @@ The BoX: installDir: The BoX: {} launch: - /Mac_content/TheBoX.app: + "/Mac_content/TheBoX.app": - when: - os: mac store: steam - /TheBoX.exe: + "/TheBoX.exe": - when: - os: windows store: steam @@ -537300,12 +538754,12 @@ The Body Changer: installDir: The Body Changer: {} launch: - /TheBodyChanger: - - arguments: ' > TheBodyChanger.log 2>&1' + "/TheBodyChanger": + - arguments: " > TheBodyChanger.log 2>&1" when: - os: linux store: steam - /TheBodyChanger.exe: + "/TheBodyChanger.exe": - when: - os: windows store: steam @@ -537319,23 +538773,23 @@ The Body VR: The Bomb Project: steam: id: 841330 -'The Bonfire 2: Uncharted Shores': +"The Bonfire 2: Uncharted Shores": installDir: The Bonfire 2 Uncharted Shores: {} launch: - /TheBonfire2.app/Contents/MacOS/TheBonfire2: + "/TheBonfire2.app/Contents/MacOS/TheBonfire2": - when: - os: mac store: steam - /TheBonfire2.exe: + "/TheBonfire2.exe": - when: - os: windows store: steam steam: id: 1155880 -'The Bonfire: Forsaken Lands': +"The Bonfire: Forsaken Lands": files: - /AppData/LocalLow/xigmagames/The Bonfire: + "/AppData/LocalLow/xigmagames/The Bonfire": tags: - config when: @@ -537343,11 +538797,11 @@ The Bomb Project: installDir: The Bonfire Forsaken Lands: {} launch: - /The Bonfire.app/Contents/MacOS/The Bonfire: + "/The Bonfire.app/Contents/MacOS/The Bonfire": - when: - os: mac store: steam - /The Bonfire.exe: + "/The Bonfire.exe": - when: - os: windows store: steam @@ -537357,27 +538811,27 @@ The Boogie Man: installDir: The Boogie Man: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: id: 749840 -'The Book Of Yorle: Save The Church': +"The Book Of Yorle: Save The Church": installDir: The Book Of Yorle: {} launch: - /The_Book_Of_Yorle.exe: + "/The_Book_Of_Yorle.exe": - when: - bit: 64 os: windows store: steam steam: id: 1164520 -'The Book of Commands: Lost Symbol': +"The Book of Commands: Lost Symbol": installDir: The book of commands Lost Symbol: {} launch: - /LostSymbol.exe: + "/LostSymbol.exe": - when: - os: windows store: steam @@ -537385,7 +538839,7 @@ The Boogie Man: id: 488500 The Book of Desires: files: - /Meridian93/MagicBook/bigfish_ce: + "/Meridian93/MagicBook/bigfish_ce": tags: - config - save @@ -537394,7 +538848,7 @@ The Book of Desires: installDir: The Book of Desires: {} launch: - /magic_book.exe: + "/magic_book.exe": - when: - store: steam steam: @@ -537403,7 +538857,7 @@ The Book of Legends: installDir: The Book of Legends: {} launch: - /TheBookOfLegends.exe: + "/TheBookOfLegends.exe": - when: - os: windows store: steam @@ -537413,11 +538867,11 @@ The Book of Regrets: installDir: The Book of Regrets: {} launch: - /thebookofregrets.app: + "/thebookofregrets.app": - when: - os: mac store: steam - /thebookofregrets.exe: + "/thebookofregrets.exe": - when: - os: windows store: steam @@ -537425,32 +538879,32 @@ The Book of Regrets: id: 869500 The Book of Unwritten Tales: files: - /.bout: + "/.bout": tags: - config when: - os: linux - /.bout/savegames: + "/.bout/savegames": tags: - save when: - os: linux - /Library/Application Support/Unwritten Tales: + "/Library/Application Support/Unwritten Tales": tags: - config when: - os: mac - /Library/Application Support/Unwritten Tales/savegames: + "/Library/Application Support/Unwritten Tales/savegames": tags: - save when: - os: mac - /Book of Unwritten Tales: + "/Book of Unwritten Tales": tags: - config when: - os: windows - /Book of Unwritten Tales/savegames: + "/Book of Unwritten Tales/savegames": tags: - save when: @@ -537463,19 +538917,19 @@ The Book of Unwritten Tales: installDir: The Book of Unwritten Tales: {} launch: - /Book of Unwritten Tales.app: + "/Book of Unwritten Tales.app": - when: - os: mac store: steam - /Docs/BOUT_Manual.pdf: + "/Docs/BOUT_Manual.pdf": - when: - os: mac store: steam - /bout.exe: + "/bout.exe": - when: - os: windows store: steam - /bout.sh: + "/bout.sh": - when: - os: linux store: steam @@ -537483,28 +538937,28 @@ The Book of Unwritten Tales: id: 215160 The Book of Unwritten Tales 2: files: - /Bout2: + "/Bout2": tags: - config - save when: - os: linux - /Bout2/config.xml: + "/Bout2/config.xml": tags: - config when: - os: mac - /Bout2/savegames: + "/Bout2/savegames": tags: - save when: - os: mac - /Bout2/config.xml: + "/Bout2/config.xml": tags: - config when: - os: windows - /Bout2/savegames: + "/Bout2/savegames": tags: - save when: @@ -537514,21 +538968,21 @@ The Book of Unwritten Tales 2: installDir: The Book of Unwritten Tales 2: {} launch: - /Linux/BouT2.x86: + "/Linux/BouT2.x86": - when: - bit: 32 os: linux store: steam - /Linux/BouT2.x86_64: + "/Linux/BouT2.x86_64": - when: - bit: 64 os: linux store: steam - /Osx/BouT2.app: + "/Osx/BouT2.app": - when: - os: mac store: steam - /Windows/BouT2.exe: + "/Windows/BouT2.exe": - when: - os: windows store: steam @@ -537538,34 +538992,34 @@ The Book of Unwritten Tales 2: - config steam: id: 279940 -'The Book of Unwritten Tales: The Critter Chronicles': +"The Book of Unwritten Tales: The Critter Chronicles": files: - /.boutvc: + "/.boutvc": tags: - config when: - os: linux - /.boutvc/savegames: + "/.boutvc/savegames": tags: - save when: - os: linux - /Library/Application Support/Book of Unwritten Tales/savegames: + "/Library/Application Support/Book of Unwritten Tales/savegames": tags: - save when: - os: mac - /userdata//221830: + "/userdata//221830": tags: - save when: - store: steam - /Unwritten Tales - Critter Chronicles: + "/Unwritten Tales - Critter Chronicles": tags: - config when: - os: windows - /Unwritten Tales - Critter Chronicles/savegames: + "/Unwritten Tales - Critter Chronicles/savegames": tags: - save when: @@ -537575,15 +539029,15 @@ The Book of Unwritten Tales 2: installDir: The Critter Chronicles: {} launch: - /Critter Chronicles.app: + "/Critter Chronicles.app": - when: - os: mac store: steam - /CritterChronicles.exe: + "/CritterChronicles.exe": - when: - os: windows store: steam - /boutvc.sh: + "/boutvc.sh": - when: - os: linux store: steam @@ -537593,7 +539047,7 @@ The Botanist: installDir: The Botanist: {} launch: - /TheBotanist.exe: + "/TheBotanist.exe": - when: - os: windows store: steam @@ -537603,18 +539057,18 @@ The Bottom of the Well: installDir: The Bottom of the Well: {} launch: - /bottomofthewell.exe: + "/bottomofthewell.exe": - when: - os: windows store: steam steam: id: 449020 -'The Bounty: Deluxe Edition': +"The Bounty: Deluxe Edition": installDir: The Bounty Deluxe Edition: {} launch: - /nw.exe: - - arguments: '--in-process-gpu' + "/nw.exe": + - arguments: "--in-process-gpu" when: - bit: 64 os: windows @@ -537630,7 +539084,7 @@ The Boy Who Typed Wolf: installDir: The Boy Who Typed Wolf: {} launch: - /theboywhotypedwolf.exe: + "/theboywhotypedwolf.exe": - when: - os: windows store: steam @@ -537640,7 +539094,7 @@ The Bradwell Conspiracy: installDir: TheBradwellConspiracy: {} launch: - /TheBradwellConspiracy.exe: + "/TheBradwellConspiracy.exe": - when: - bit: 64 os: windows @@ -537652,14 +539106,14 @@ The Brave Mouse: id: 671940 The Braves & Bows: files: - /TheBravesAndBowsENG: + "/TheBravesAndBowsENG": tags: - save when: - os: windows steam: id: 495120 -'The Breach: A VR Escape Game': +"The Breach: A VR Escape Game": installDir: The Breach VR Escape Game: {} steam: @@ -537668,7 +539122,7 @@ The Breakfast Club: installDir: Brunch Club: {} launch: - /Brunch Club.exe: + "/Brunch Club.exe": - when: - store: steam steam: @@ -537677,17 +539131,17 @@ The Breath: installDir: the Breath: {} launch: - /Breath.exe: + "/Breath.exe": - when: - os: windows store: steam steam: id: 699970 -'The Breeding: The Fog': +"The Breeding: The Fog": installDir: The Breeding The Fog: {} launch: - /TheBreeding_TheFog.exe: + "/TheBreeding_TheFog.exe": - when: - bit: 64 os: windows @@ -537696,28 +539150,28 @@ The Breath: id: 744440 The Bridge: files: - /.config/unity3d/The Quantum Astrophysicists Guild/The Bridge: + "/.config/unity3d/The Quantum Astrophysicists Guild/The Bridge": tags: - config - save when: - os: linux - /AppData/LocalLow/The Quantum Astrophysicists Guild/The Bridge/settingssave.sav: + "/AppData/LocalLow/The Quantum Astrophysicists Guild/The Bridge/settingssave.sav": tags: - config when: - - store: epic - /AppData/LocalLow/The Quantum Astrophysicists Guild/The Bridge/thebridgesave.sav: + - os: windows + "/AppData/LocalLow/The Quantum Astrophysicists Guild/The Bridge/thebridgesave.sav": tags: - save when: - - store: epic - /userdata//204240: + - os: windows + "/userdata//204240": tags: - save when: - store: steam - /SavedGames/The Bridge: + "/SavedGames/The Bridge": tags: - config - save @@ -537726,15 +539180,15 @@ The Bridge: installDir: TheBridge: {} launch: - /The Bridge.exe: + "/The Bridge.exe": - when: - os: windows store: steam - /TheBridge.app/Contents/MacOS/The Bridge: + "/TheBridge.app/Contents/MacOS/The Bridge": - when: - os: mac store: steam - /run.sh: + "/run.sh": - when: - os: linux store: steam @@ -537744,7 +539198,7 @@ The Bridge: - config steam: id: 204240 -'The Bridge Curse: Road to Salvation': +"The Bridge Curse: Road to Salvation": installDir: TheBridgeCurse: {} steam: @@ -537753,7 +539207,7 @@ The Brink 尘与土: installDir: The Brink 尘与土: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: @@ -537763,7 +539217,7 @@ The Broken Seal: The Broken Seal: {} steam: id: 710170 -'The Broken Seal: Arena': +"The Broken Seal: Arena": installDir: The Broken Seal Arena: {} steam: @@ -537777,15 +539231,15 @@ The Bug Butcher: installDir: TheBugButcher: {} launch: - /TheBugButcher.app: + "/TheBugButcher.app": - when: - os: mac store: steam - /TheBugButcher.exe: + "/TheBugButcher.exe": - when: - os: windows store: steam - /TheBugButcher.x86: + "/TheBugButcher.x86": - when: - os: linux store: steam @@ -537797,7 +539251,7 @@ The Bug Butcher: id: 350740 The Bunker: files: - /userdata//481110/remote: + "/userdata//481110/remote": tags: - save when: @@ -537805,11 +539259,11 @@ The Bunker: installDir: The Bunker: {} launch: - /TheBunker.app: + "/TheBunker.app": - when: - os: mac store: steam - /TheBunker.exe: + "/TheBunker.exe": - when: - os: windows store: steam @@ -537819,8 +539273,8 @@ The Bunker 69: installDir: The Bunker 69: {} launch: - /game.exe: - - arguments: '--in-process-gpu' + "/game.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam @@ -537829,14 +539283,14 @@ The Bunker 69: The Bunny Graveyard: steam: id: 1892420 -'The Bureau: XCOM Declassified': +"The Bureau: XCOM Declassified": files: - /XGame/Config: + "/XGame/Config": tags: - config when: - os: windows - /userdata//65930: + "/userdata//65930": tags: - save when: @@ -537851,23 +539305,23 @@ The Bunny Graveyard: installDir: The Bureau: {} launch: - /The Bureau - XCOM Declassified.app/Contents/MacOS/cider: - - arguments: '-psn' + "/The Bureau - XCOM Declassified.app/Contents/MacOS/cider": + - arguments: "-psn" when: - os: mac store: steam - workingDir: /The Bureau - /binaries/win32/thebureau.exe: - - arguments: '-seekfreeloadingpcconsole -steam -showbuildversion=1 -noscreenmessages -skipallnotifies' + workingDir: "/The Bureau" + "/binaries/win32/thebureau.exe": + - arguments: "-seekfreeloadingpcconsole -steam -showbuildversion=1 -noscreenmessages -skipallnotifies" when: - os: windows store: steam - workingDir: /binaries/win32 - - arguments: '-seekfreeloadingpcconsole -steam -showbuildversion=1 -dx11 -noscreenmessages -skipallnotifies' + workingDir: "/binaries/win32" + - arguments: "-seekfreeloadingpcconsole -steam -showbuildversion=1 -dx11 -noscreenmessages -skipallnotifies" when: - os: windows store: steam - workingDir: /binaries/win32 + workingDir: "/binaries/win32" steam: id: 65930 The Burned Ground: @@ -537882,16 +539336,16 @@ The Butterfly Sign: installDir: TheButterflySign: {} launch: - /tbs1.5/W3/Binaries/Win64/W3-Win64-Shipping.exe: + "/tbs1.5/W3/Binaries/Win64/W3-Win64-Shipping.exe": - when: - bit: 64 os: windows store: steam steam: id: 546700 -'The Butterfly Sign: Human Error': +"The Butterfly Sign: Human Error": files: - /tbs2/W3_2/Saved: + "/tbs2/W3_2/Saved": tags: - config - save @@ -537900,7 +539354,7 @@ The Butterfly Sign: installDir: TheButterflySignHE: {} launch: - /tbs2/W3_2/Binaries/Win64/W3_2.exe: + "/tbs2/W3_2/Binaries/Win64/W3_2.exe": - when: - bit: 64 os: windows @@ -537911,7 +539365,7 @@ The Button: installDir: button pusher: {} launch: - /button pusher.exe: + "/button pusher.exe": - when: - os: windows store: steam @@ -537921,13 +539375,13 @@ The Button Witch: installDir: The Button Witch: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam steam: id: 1198270 -'The Cabin: VR Escape the Room': +"The Cabin: VR Escape the Room": installDir: Cabin VR Escape the Room: {} steam: @@ -537936,11 +539390,11 @@ The Cabinets of Doctor Arcana: installDir: The Cabinets of Doctor Arcana: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam - /The Cabinets of Doctor Arcana.app: + "/The Cabinets of Doctor Arcana.app": - when: - os: mac store: steam @@ -537958,33 +539412,35 @@ The Cage 笼: id: 894930 The Caligula Effect 2: files: - /TheCaligulaEffect2ForSteam/Saved/Config/WindowsNoEditor: - tags: - - config - when: - - store: steam - /TheCaligulaEffect2ForSteam/Saved/SaveGames/*.sav: - tags: - - save - when: - - store: steam - installDir: - The Caligula Effect 2: {} - launch: - /TheCaligulaEffect2.exe: - - arguments: '-savefolder=steam' - when: - - store: steam - steam: - id: 1933740 -'The Caligula Effect: Overdose': - files: - /COD/Saved/Config/WindowsNoEditor: + "/TheCaligulaEffect2ForSteam/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /COD/Saved/SaveGames: + store: steam + "/TheCaligulaEffect2ForSteam/Saved/SaveGames/*.sav": + tags: + - save + when: + - os: windows + store: steam + installDir: + The Caligula Effect 2: {} + launch: + "/TheCaligulaEffect2.exe": + - arguments: "-savefolder=steam" + when: + - store: steam + steam: + id: 1933740 +"The Caligula Effect: Overdose": + files: + "/COD/Saved/Config/WindowsNoEditor": + tags: + - config + when: + - os: windows + "/COD/Saved/SaveGames": tags: - save when: @@ -537994,7 +539450,7 @@ The Caligula Effect 2: installDir: The Caligula Effect: {} launch: - /COD.exe: + "/COD.exe": - when: - bit: 64 os: windows @@ -538005,7 +539461,7 @@ The Call: installDir: The Call: {} launch: - /The Call.exe: + "/The Call.exe": - when: - os: windows store: steam @@ -538013,12 +539469,12 @@ The Call: id: 908310 The Callisto Protocol: files: - /CallistoProtocol/Saved/Config/WindowsNoEditor: + "/CallistoProtocol/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /CallistoProtocol/Saved/SaveGames: + "/CallistoProtocol/Saved/SaveGames": tags: - save when: @@ -538035,27 +539491,27 @@ The Callisto Protocol: installDir: The Callisto Protocol: {} launch: - /TheCallistoProtocol.exe: + "/TheCallistoProtocol.exe": - when: - os: windows store: steam steam: id: 1544020 -'The Cameron Files: The Secret at Loch Ness': +"The Cameron Files: The Secret at Loch Ness": installDir: The Cameron Files The Secret at Loch Ness: {} launch: - /Lochness.exe: + "/Lochness.exe": - when: - os: windows store: steam steam: id: 302170 -'The Campaign Series: Fall Weiss': +"The Campaign Series: Fall Weiss": installDir: FallWeiss: {} launch: - /fw_setup.exe: + "/fw_setup.exe": - when: - os: windows store: steam @@ -538063,39 +539519,39 @@ The Callisto Protocol: id: 283020 The Camy Collection: files: - /Options_c2.dat: + "/Options_c2.dat": tags: - config when: - os: windows - /Options_c2_e.dat: + "/Options_c2_e.dat": tags: - config when: - os: windows - /Options_dc.dat: + "/Options_dc.dat": tags: - config when: - os: windows - /Options_dcr.dat: + "/Options_dcr.dat": tags: - config when: - os: windows The Captain: files: - /.config/unity3d/Sysiac Games/The Captain/Saves_v1: + "/.config/unity3d/Sysiac Games/The Captain/Saves_v1": tags: - save when: - os: linux - /AppData/LocalLow/Sysiac Games/The Captain/Saves_v1: + "/AppData/LocalLow/Sysiac Games/The Captain/Saves_v1": tags: - save when: - os: windows - /Library/Application Support/unity.Sysiac Games.The Captain/Saves_v1: + "/Library/Application Support/unity.Sysiac Games.The Captain/Saves_v1": tags: - save when: @@ -538105,15 +539561,15 @@ The Captain: installDir: The Captain: {} launch: - /TheCaptain: + "/TheCaptain": - when: - os: linux store: steam - /TheCaptain.app: + "/TheCaptain.app": - when: - os: mac store: steam - /TheCaptain.exe: + "/TheCaptain.exe": - when: - os: windows store: steam @@ -538123,26 +539579,26 @@ The Captain is Dead: installDir: The Captain is Dead: {} launch: - /TCID.app: + "/TCID.app": - when: - os: mac store: steam - /The Captain is Dead.exe: + "/The Captain is Dead.exe": - when: - os: windows store: steam steam: id: 1126580 -'The Captives: Plot of the Demiurge': +"The Captives: Plot of the Demiurge": installDir: The Captives: {} launch: - /Captives.exe: + "/Captives.exe": - when: - bit: 64 os: windows store: steam - /Captives.x86_64: + "/Captives.x86_64": - when: - bit: 64 os: linux @@ -538153,7 +539609,7 @@ The Capture Worlds: installDir: The Capture Worlds: {} launch: - /TheCaptureWorlds.exe: + "/TheCaptureWorlds.exe": - when: - os: windows store: steam @@ -538163,11 +539619,11 @@ The Caretaker - Dungeon Nightshift: installDir: The Caretaker: {} launch: - /TheCaretaker.app: + "/TheCaretaker.app": - when: - os: mac store: steam - /TheCaretaker.exe: + "/TheCaretaker.exe": - when: - os: windows store: steam @@ -538177,15 +539633,15 @@ The Caribbean Sail: installDir: The Caribbean Sail: {} launch: - /Caribbean_Sail_AG.exe: + "/Caribbean_Sail_AG.exe": - when: - os: windows store: steam - /Contents/MacOS/Mac_Runner: + "/Contents/MacOS/Mac_Runner": - when: - os: mac store: steam - /The Caribbean Sail: + "/The Caribbean Sail": - when: - os: linux store: steam @@ -538195,19 +539651,19 @@ The Case Book of Arne: installDir: The Case Book of Arne: {} launch: - /Arne_Launcher.exe: + "/Arne_Launcher.exe": - when: - store: steam steam: id: 1322290 The Case of the Golden Idol: files: - /Godot/app_userdata/The Case of The Golden Idol/local_savegame.save: + "/Godot/app_userdata/The Case of The Golden Idol/local_savegame.save": tags: - save when: - os: windows - /Godot/app_userdata/The Case of The Golden Idol/local_settings.cfg: + "/Godot/app_userdata/The Case of The Golden Idol/local_settings.cfg": tags: - config when: @@ -538217,14 +539673,14 @@ The Case of the Golden Idol: installDir: The Case of the Golden Idol: {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: id: 1677770 The Casebook of Arkady Smith: files: - /AppData/LocalLow/City2: + "/AppData/LocalLow/City2": tags: - config - save @@ -538233,7 +539689,7 @@ The Casebook of Arkady Smith: installDir: The Casebook of Arkady Smith: {} launch: - /ArkadySmith.exe: + "/ArkadySmith.exe": - when: - bit: 64 os: windows @@ -538242,12 +539698,12 @@ The Casebook of Arkady Smith: id: 1260840 The Castle: files: - /Saved Games/The castle: + "/Saved Games/The castle": tags: - save when: - os: windows - /The castle: + "/The castle": tags: - save when: @@ -538257,11 +539713,11 @@ The Castle: installDir: The Castle: {} launch: - /maniac.exe: + "/maniac.exe": - when: - os: windows store: steam - /winsetup.exe: + "/winsetup.exe": - when: - os: windows store: steam @@ -538271,7 +539727,7 @@ The Castle Disaster: installDir: The Castle Disaster: {} launch: - /Castles.exe: + "/Castles.exe": - when: - os: windows store: steam @@ -538281,14 +539737,14 @@ The Castle Disaster 2: installDir: The Castle Disaster 2: {} launch: - /CasDis2.exe: + "/CasDis2.exe": - when: - store: steam steam: id: 878820 The Castle Doctrine: files: - /settings: + "/settings": tags: - config when: @@ -538298,11 +539754,13 @@ The Castle Doctrine: installDir: CastleDoctrine: {} launch: - /steamGateClient: + "/steamGateClient": - when: - os: mac store: steam - /steamGateClient.exe: + - os: linux + store: steam + "/steamGateClient.exe": - when: - os: windows store: steam @@ -538312,20 +539770,20 @@ The Castles of Burgundy: installDir: Castles of Burgundy: {} launch: - /bvb.app: + "/bvb.app": - when: - os: mac store: steam - /bvb.exe: + "/bvb.exe": - when: - os: windows store: steam - /bvb.x86: + "/bvb.x86": - when: - bit: 32 os: linux store: steam - /bvb.x86_64: + "/bvb.x86_64": - when: - bit: 64 os: linux @@ -538336,15 +539794,15 @@ The Castles of Dr. Creep: installDir: The Castles of Dr. Creep: {} launch: - /DrCreep: + "/DrCreep": - when: - os: mac store: steam - /creep: + "/creep": - when: - os: linux store: steam - /creep.exe: + "/creep.exe": - when: - os: windows store: steam @@ -538354,7 +539812,7 @@ The Cat Games: installDir: The Cat Games: {} launch: - /The Cat Games.exe: + "/The Cat Games.exe": - when: - os: windows store: steam @@ -538362,37 +539820,39 @@ The Cat Games: id: 603260 The Cat Lady: files: - /acsetup.cfg: + "/acsetup.cfg": tags: - config when: - os: linux - /Saved Games/Cat Lady/agssave.*: + "/Saved Games/Cat Lady/agssave.*": tags: - save when: - os: windows - /Saved Games/The Cat Lady - Steam/acsetup.cfg: - tags: - - config - when: - - store: steam - /Saved Games/The Cat Lady - Steam/agssave.*: - tags: - - save - when: - - store: steam - /Saved Games/The Cat Lady/acsetup.cfg: + "/Saved Games/The Cat Lady - Steam/acsetup.cfg": tags: - config when: - os: windows - /Saved Games/The Cat Lady/agssave.*: + store: steam + "/Saved Games/The Cat Lady - Steam/agssave.*": tags: - save when: - os: windows - /ags/Cat Lady: + store: steam + "/Saved Games/The Cat Lady/acsetup.cfg": + tags: + - config + when: + - os: windows + "/Saved Games/The Cat Lady/agssave.*": + tags: + - save + when: + - os: windows + "/ags/Cat Lady": tags: - save when: @@ -538402,11 +539862,11 @@ The Cat Lady: installDir: TheCatLady: {} launch: - /TheCatLady.exe: + "/TheCatLady.exe": - when: - os: windows store: steam - - arguments: '--setup' + - arguments: "--setup" when: - os: windows store: steam @@ -538423,15 +539883,15 @@ The Cat Machine: installDir: The Cat Machine: {} launch: - /TheCatMachine.app: + "/TheCatMachine.app": - when: - os: mac store: steam - /TheCatMachine.exe: + "/TheCatMachine.exe": - when: - os: windows store: steam - /TheCatMachine.x86: + "/TheCatMachine.x86": - when: - os: linux store: steam @@ -538441,11 +539901,11 @@ The Cat and the Box: installDir: The Cat and the Box: {} launch: - /thebox.app: + "/thebox.app": - when: - os: mac store: steam - /thebox.exe: + "/thebox.exe": - when: - os: windows store: steam @@ -538453,7 +539913,7 @@ The Cat and the Box: id: 1054980 The Cat and the Coup: files: - /Peter Brinson and Kurosh ValaNejad/The Cat and the Coup (Beta)/common/commonConfig.xml: + "/Peter Brinson and Kurosh ValaNejad/The Cat and the Coup (Beta)/common/commonConfig.xml": tags: - config when: @@ -538461,11 +539921,11 @@ The Cat and the Coup: installDir: The Cat and the Coup: {} launch: - /TheCatAndTheCoup.app: + "/TheCatAndTheCoup.app": - when: - os: mac store: steam - /TheCatAndTheCoup.exe: + "/TheCatAndTheCoup.exe": - when: - os: windows store: steam @@ -538475,11 +539935,11 @@ The Cat and the Coup (4K Remaster): installDir: The Cat and the Coup (4K Remaster): {} launch: - /TheCatAndTheCoup.app: + "/TheCatAndTheCoup.app": - when: - os: mac store: steam - /TheCatAndTheCoup.exe: + "/TheCatAndTheCoup.exe": - when: - bit: 64 os: windows @@ -538493,11 +539953,11 @@ The Cat and the Coup (4K Remaster): The Cat in 14a: steam: id: 1075350 -The Cat! Porfirio's Adventure: +"The Cat! Porfirio's Adventure": installDir: - The Cat! Porfirio's Adventure: {} + "The Cat! Porfirio's Adventure": {} launch: - /bin/Game.exe: + "/bin/Game.exe": - when: - os: windows store: steam @@ -538505,51 +539965,51 @@ The Cat! Porfirio's Adventure: id: 492270 The Catacomb: files: - /CTLPANEL.CA2: + "/CTLPANEL.CA2": tags: - config when: - os: dos - /GAME*.CA2: + "/GAME*.CA2": tags: - save when: - os: dos gog: id: 1207659189 -'The Cathedral: Allison''s Diary': +"The Cathedral: Allison's Diary": installDir: - The Cathedral Allison's Diary: {} + "The Cathedral Allison's Diary": {} steam: id: 793210 The Cave: files: - /Library/Application Support/doublefine/thecave/*.save: + "/Library/Application Support/doublefine/thecave/*.save": tags: - save when: - os: mac - /Library/Application Support/doublefine/thecave/screen.dat: + "/Library/Application Support/doublefine/thecave/screen.dat": tags: - config when: - os: mac - /Doublefine/TheCave/*.save: + "/Doublefine/TheCave/*.save": tags: - save when: - os: windows - /Doublefine/TheCave/screen.dat: + "/Doublefine/TheCave/screen.dat": tags: - config when: - os: windows - /doublefine/thecave/*.save: + "/doublefine/thecave/*.save": tags: - save when: - os: linux - /doublefine/thecave/screen.dat: + "/doublefine/thecave/screen.dat": tags: - config when: @@ -538562,15 +540022,15 @@ The Cave: installDir: TheCave: {} launch: - /Cave.app: + "/Cave.app": - when: - os: mac store: steam - /Cave.bin.x86: + "/Cave.bin.x86": - when: - os: linux store: steam - /Cave.exe: + "/Cave.exe": - when: - os: windows store: steam @@ -538593,29 +540053,29 @@ The Cells: installDir: The Cells: {} launch: - /Cells.exe: + "/Cells.exe": - when: - store: steam steam: id: 954760 -'The Centennial Case: A Shijima Story': +"The Centennial Case: A Shijima Story": files: - /My Games/CCSS/Steam//AchievementSaveData: + "/My Games/CCSS/Steam//AchievementSaveData": tags: - config when: - os: windows - /My Games/CCSS/Steam//GameCommonSaveData: + "/My Games/CCSS/Steam//GameCommonSaveData": tags: - config when: - os: windows - /My Games/CCSS/Steam//GameSaveData: + "/My Games/CCSS/Steam//GameSaveData": tags: - config when: - os: windows - /My Games/CCSS/Steam//SystemSaveData: + "/My Games/CCSS/Steam//SystemSaveData": tags: - config when: @@ -538627,18 +540087,18 @@ The Cells: installDir: The Centennial Case: {} launch: - /CCSS.exe: + "/CCSS.exe": - when: - bit: 64 os: windows store: steam steam: id: 1612780 -'The Cerberus Project: Horde Arena FPS': +"The Cerberus Project: Horde Arena FPS": installDir: The Cerberus Project: {} launch: - /The_Cerberus_Project.exe: + "/The_Cerberus_Project.exe": - when: - os: windows store: steam @@ -538651,15 +540111,15 @@ The Challenge: installDir: The Challenge: {} launch: - /Challenge.app: + "/Challenge.app": - when: - os: mac store: steam - /Challenge.exe: + "/Challenge.exe": - when: - os: windows store: steam - /Challenge.sh: + "/Challenge.sh": - when: - os: linux store: steam @@ -538667,7 +540127,7 @@ The Challenge: id: 496440 The Chambers: files: - /AppData/LocalLow/KrutovGames/Chambers/saves: + "/AppData/LocalLow/KrutovGames/Chambers/saves": tags: - save when: @@ -538675,11 +540135,11 @@ The Chambers: installDir: The Chambers: {} launch: - /Chambers.exe: + "/Chambers.exe": - when: - os: windows store: steam - /The Chambers.app/Contents/MacOS/Chambers: + "/The Chambers.app/Contents/MacOS/Chambers": - when: - os: mac store: steam @@ -538689,7 +540149,7 @@ The Chameleon: installDir: The Chameleon: {} launch: - /Chameleon_Steam.exe: + "/Chameleon_Steam.exe": - when: - bit: 64 os: windows @@ -538700,7 +540160,7 @@ The Change: installDir: The change: {} launch: - /The changeDEMO.exe: + "/The changeDEMO.exe": - when: - os: windows store: steam @@ -538708,12 +540168,12 @@ The Change: id: 872270 The Chant: files: - /Chant/Saved/Config/WindowsNoEditor: + "/Chant/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /Chant/Saved/SaveGames: + "/Chant/Saved/SaveGames": tags: - save when: @@ -538721,8 +540181,8 @@ The Chant: installDir: The Chant: {} launch: - /Chant.exe: - - arguments: '-NoVerifyGC' + "/Chant.exe": + - arguments: "-NoVerifyGC" when: - store: steam steam: @@ -538733,15 +540193,15 @@ The Chaos Engine (2013): installDir: Chaos engine: {} launch: - /The Chaos Engine - Remastered Steam.app/Contents/MacOS/The Chaos Engine - Remastered Steam: + "/The Chaos Engine - Remastered Steam.app/Contents/MacOS/The Chaos Engine - Remastered Steam": - when: - os: mac store: steam - /The Chaos Engine - Remastered.exe: + "/The Chaos Engine - Remastered.exe": - when: - os: windows store: steam - /TheChaosEngineSteam: + "/TheChaosEngineSteam": - when: - os: linux store: steam @@ -538751,16 +540211,16 @@ The Chaotic Workshop: installDir: The Chaotic Workshop: {} launch: - /The Chaotic Workshop.app: + "/The Chaotic Workshop.app": - when: - os: mac store: steam - /The Chaotic Workshop.exe: + "/The Chaotic Workshop.exe": - when: - bit: 64 os: windows store: steam - /cws_startup: + "/cws_startup": - when: - os: linux store: steam @@ -538770,7 +540230,7 @@ The Charm of Love: installDir: The Charm of Love: {} launch: - /CharmOfLove.exe: + "/CharmOfLove.exe": - when: - os: windows store: steam @@ -538780,8 +540240,8 @@ The Charming Empire: installDir: The Charming Empire: {} launch: - /TheCharmingEmpire.exe: - - arguments: '-windowed' + "/TheCharmingEmpire.exe": + - arguments: "-windowed" when: - os: windows store: steam @@ -538789,12 +540249,12 @@ The Charming Empire: id: 505090 The Charnel House Trilogy: files: - /acsetup.cfg: + "/acsetup.cfg": tags: - config when: - os: windows - /Saved Games/The Charnel House Trilogy: + "/Saved Games/The Charnel House Trilogy": tags: - save when: @@ -538802,19 +540262,19 @@ The Charnel House Trilogy: installDir: The Charnel House Trilogy: {} launch: - /CHT: + "/CHT": - when: - os: linux store: steam - /CHT.exe: + "/CHT.exe": - when: - os: windows store: steam - /data/acsetup.cfg: + "/data/acsetup.cfg": - when: - os: linux store: steam - /winsetup.exe: + "/winsetup.exe": - when: - os: windows store: steam @@ -538824,7 +540284,7 @@ The Chasm: installDir: The_Chasm: {} launch: - /The_Chasm.exe: + "/The_Chasm.exe": - when: - os: windows store: steam @@ -538834,12 +540294,12 @@ The Chemist: installDir: The Chemist: {} launch: - /Chemist/Binaries/Win32/Chemist-Win32-Shipping.exe: + "/Chemist/Binaries/Win32/Chemist-Win32-Shipping.exe": - when: - bit: 32 os: windows store: steam - /Chemist/Binaries/Win64/Chemist-Win64-Shipping.exe: + "/Chemist/Binaries/Win64/Chemist-Win64-Shipping.exe": - when: - bit: 64 os: windows @@ -538850,7 +540310,7 @@ The Childs Sight: installDir: The Childs Sight: {} launch: - /The Child's Sight.exe: + "/The Child's Sight.exe": - when: - os: windows store: steam @@ -538860,11 +540320,11 @@ The Chills: installDir: The Chills: {} launch: - /TheChills: + "/TheChills": - when: - os: linux store: steam - /TheChills.exe: + "/TheChills.exe": - when: - os: windows store: steam @@ -538874,7 +540334,7 @@ The Choice of Sand: installDir: THE CHOICE OF SAND: {} launch: - /freedom.exe: + "/freedom.exe": - when: - os: windows store: steam @@ -538882,7 +540342,7 @@ The Choice of Sand: id: 977210 The Chosen RPG: files: - /*.rvdata2: + "/*.rvdata2": tags: - save when: @@ -538890,7 +540350,7 @@ The Chosen RPG: installDir: The Chosen RPG: {} launch: - /EQLauncher.exe: + "/EQLauncher.exe": - when: - os: windows store: steam @@ -538900,7 +540360,7 @@ The Chosen Warriors: installDir: The Chosen Warriors: {} launch: - /TheChosenWarriors.exe: + "/TheChosenWarriors.exe": - when: - os: windows store: steam @@ -538910,21 +540370,21 @@ The Christmas Gifts: installDir: The Christmas Gifts: {} launch: - /TheChristmasGifts: + "/TheChristmasGifts": - when: - os: linux store: steam - /TheChristmasGifts.exe: + "/TheChristmasGifts.exe": - when: - os: windows store: steam steam: id: 897420 -'The Christmas Spirit: Grimm Tales': +"The Christmas Spirit: Grimm Tales": installDir: - The Christmas Spirit Grimm Tales Collector's Edition: {} + "The Christmas Spirit Grimm Tales Collector's Edition": {} launch: - /TheChristmasSpirit_GrimmTales_CE.exe: + "/TheChristmasSpirit_GrimmTales_CE.exe": - when: - os: windows store: steam @@ -538934,20 +540394,20 @@ The Chronicles of Dragon Wing - Reborn: installDir: The Chronicles of Dragon Wing - Reborn: {} launch: - /bin/lybnsClient.exe: + "/bin/lybnsClient.exe": - when: - os: windows store: steam steam: id: 613670 -'The Chronicles of Emerland: Solitaire': +"The Chronicles of Emerland: Solitaire": files: - /Rainbow/Solitair/profiles.xml: + "/Rainbow/Solitair/profiles.xml": tags: - save when: - os: windows - /Rainbow/Solitair/settings.xml: + "/Rainbow/Solitair/settings.xml": tags: - config when: @@ -538955,7 +540415,7 @@ The Chronicles of Dragon Wing - Reborn: installDir: The chronicles of Emerland Solitaire: {} launch: - /solitaire.exe: + "/solitaire.exe": - when: - os: windows store: steam @@ -538965,7 +540425,7 @@ The Chronicles of Jonah and the Whale: installDir: The Chronicles of Jonah and the Whale: {} launch: - /JonahAndTheWhale.exe: + "/JonahAndTheWhale.exe": - when: - os: windows store: steam @@ -538975,30 +540435,30 @@ The Chronicles of Joseph of Egypt: installDir: The Chronicles of Joseph of Egypt: {} launch: - /JosephOfEgypt.exe: + "/JosephOfEgypt.exe": - when: - os: windows store: steam steam: id: 1169310 -'The Chronicles of King Arthur: Episode 2 - Knights of the Round Table': +"The Chronicles of King Arthur: Episode 2 - Knights of the Round Table": installDir: The Chronicles of King Arthur Episode 2: {} launch: - /The Chronicles of King Arthur Episode 2 - Knights of the Round Table.exe: + "/The Chronicles of King Arthur Episode 2 - Knights of the Round Table.exe": - when: - os: windows store: steam steam: id: 1065680 -'The Chronicles of Myrtana: Archolos': +"The Chronicles of Myrtana: Archolos": files: - /saves_thechroniclesofmyrtana: + "/saves_thechroniclesofmyrtana": tags: - save when: - os: windows - /system/*.ini: + "/system/*.ini": tags: - config when: @@ -539008,20 +540468,20 @@ The Chronicles of Joseph of Egypt: installDir: TheChroniclesOfMyrtana: {} launch: - /System/Gothic2.exe: - - arguments: '-game:TheChroniclesOfMyrtana.ini' + "/System/Gothic2.exe": + - arguments: "-game:TheChroniclesOfMyrtana.ini" when: - store: steam steam: id: 1467450 -'The Chronicles of Narnia: Prince Caspian': +"The Chronicles of Narnia: Prince Caspian": files: - /Disney Interactive Studios/Prince Caspian: + "/Disney Interactive Studios/Prince Caspian": tags: - config when: - os: windows - /Disney Interactive Studios/Prince Caspian/SavedGames: + "/Disney Interactive Studios/Prince Caspian/SavedGames": tags: - save when: @@ -539029,29 +540489,29 @@ The Chronicles of Joseph of Egypt: installDir: The Chronicles of Narnia - Prince Caspian: {} launch: - /Caspian.exe: + "/Caspian.exe": - when: - os: windows store: steam steam: id: 320890 -'The Chronicles of Narnia: The Lion, the Witch and the Wardrobe': +"The Chronicles of Narnia: The Lion, the Witch and the Wardrobe": files: - /Buena Vista Games/Narnia/narnia_?: + "/Buena Vista Games/Narnia/narnia_?": tags: - save when: - os: windows - /Buena Vista Games/Narnia/nuconfig.txt: + "/Buena Vista Games/Narnia/nuconfig.txt": tags: - config when: - os: windows -The Chronicles of Noah's Ark: +"The Chronicles of Noah's Ark": installDir: Windows Content: {} launch: - /NoahsArk.exe: + "/NoahsArk.exe": - when: - os: windows store: steam @@ -539061,13 +540521,13 @@ The Chronicles of Nyanya: installDir: The Chronicles of Nyanya: {} launch: - /LauncherNNG.exe: - - arguments: '--in-process-gpu' + "/LauncherNNG.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam - /Nyanya.app/Contents/MacOS/nwjs: - - arguments: '--in-process-gpu' + "/Nyanya.app/Contents/MacOS/nwjs": + - arguments: "--in-process-gpu" when: - os: mac store: steam @@ -539077,31 +540537,31 @@ The Chronicles of Quiver Dick: installDir: The Chronicles of Quiver Dick: {} launch: - /Game.exe: - - arguments: '--in-process-gpu' + "/Game.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam steam: id: 846880 -'The Chronicles of Riddick: Assault on Dark Athena': +"The Chronicles of Riddick: Assault on Dark Athena": files: - /Library/Application Support/Dark Athena: + "/Library/Application Support/Dark Athena": tags: - config when: - os: mac - /Library/Application Support/Dark Athena/Application Data/Atari/The Chronicles of Riddick - Assault on Dark Athena/SaveGames: + "/Library/Application Support/Dark Athena/Application Data/Atari/The Chronicles of Riddick - Assault on Dark Athena/SaveGames": tags: - save when: - os: mac - /Atari/The Chronicles of Riddick - Assault on Dark Athena/SaveGames/: + "/Atari/The Chronicles of Riddick - Assault on Dark Athena/SaveGames/": tags: - save when: - os: windows - /Atari/The Chronicles of Riddick - Assault on Dark Athena: + "/Atari/The Chronicles of Riddick - Assault on Dark Athena": tags: - config when: @@ -539111,47 +540571,47 @@ The Chronicles of Quiver Dick: installDir: Chronicles of Riddick - Assault on Dark Athena: {} launch: - /System/Win32_x86/DarkAthena.exe: + "/System/Win32_x86/DarkAthena.exe": - when: - store: steam - workingDir: /System/Win32_x86 + workingDir: "/System/Win32_x86" steam: id: 9860 -'The Chronicles of Riddick: Escape from Butcher Bay': +"The Chronicles of Riddick: Escape from Butcher Bay": files: - /Content/Save: + "/Content/Save": tags: - save when: - os: windows - /Content/Save//_profile: + "/Content/Save//_profile": tags: - config when: - os: windows - /Content/User.cfg: + "/Content/User.cfg": tags: - config when: - os: windows - /Environment.cfg: + "/Environment.cfg": tags: - config when: - os: windows - /Starbreeze/Riddick/Content/Save: + "/Starbreeze/Riddick/Content/Save": tags: - save when: - os: windows The Church in the Darkness: files: - /AppData/LocalLow/Paranoid Productions/TheChurchInTheDarkness/TheChurchInTheDarknessPrefs.dat: + "/AppData/LocalLow/Paranoid Productions/TheChurchInTheDarkness/TheChurchInTheDarknessPrefs.dat": tags: - config when: - os: windows - /AppData/LocalLow/Paranoid Productions/TheChurchInTheDarkness/TheChurchInTheDarknessSave.dat: + "/AppData/LocalLow/Paranoid Productions/TheChurchInTheDarkness/TheChurchInTheDarknessSave.dat": tags: - save when: @@ -539161,11 +540621,11 @@ The Church in the Darkness: installDir: TheChurchInTheDarkness: {} launch: - /TheChurchInTheDarkness-Mac.app/Contents/MacOS/TheChurchInTheDarkness-Mac: + "/TheChurchInTheDarkness-Mac.app/Contents/MacOS/TheChurchInTheDarkness-Mac": - when: - os: mac store: steam - /TheChurchInTheDarkness.exe: + "/TheChurchInTheDarkness.exe": - when: - os: windows store: steam @@ -539179,7 +540639,7 @@ The Cinema Rosa: installDir: The Cinema Rosa: {} launch: - /TheCinemaRosa.exe: + "/TheCinemaRosa.exe": - when: - bit: 64 os: windows @@ -539188,12 +540648,12 @@ The Cinema Rosa: id: 1049140 The Citadel: files: - /Citadel_186/Saved: + "/Citadel_186/Saved": tags: - save when: - os: windows - /the_citadel/Saved/Config/WindowsNoEditor: + "/the_citadel/Saved/Config/WindowsNoEditor": tags: - config when: @@ -539201,7 +540661,7 @@ The Citadel: installDir: The Citadel: {} launch: - /the_citadel.exe: + "/the_citadel.exe": - when: - os: windows store: steam @@ -539211,7 +540671,7 @@ The Clans - Saga of the Twins: installDir: The Clans - Saga of the Twins: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -539221,7 +540681,7 @@ The Clean Up Clyde Collection: installDir: CleanUpClydeCollection: {} launch: - /cleanupclyde.exe: + "/cleanupclyde.exe": - when: - os: windows store: steam @@ -539231,7 +540691,7 @@ The Cleaner: installDir: The Cleaner: {} launch: - /The Cleaner.exe: + "/The Cleaner.exe": - when: - store: steam steam: @@ -539240,11 +540700,8 @@ The Cleansing - Versus: installDir: The Cleansing: {} launch: - /Jackers.exe: - - arguments: >- - -FULLSCREEN - -RestHost=https://backend-dot-masterservertc-165908.appspot.com/_ah/api/gameclientservicesinterface/v0.3/ - -GameMode=Shipping + "/Jackers.exe": + - arguments: "-FULLSCREEN -RestHost=https://backend-dot-masterservertc-165908.appspot.com/_ah/api/gameclientservicesinterface/v0.3/ -GameMode=Shipping" when: - os: windows store: steam @@ -539254,7 +540711,7 @@ The Climate Trail: installDir: The Climate Trail: {} launch: - /ClimateTrail.exe: + "/ClimateTrail.exe": - when: - os: windows store: steam @@ -539264,7 +540721,7 @@ The Climber: installDir: sdk: {} launch: - /The Climber Adventure.exe: + "/The Climber Adventure.exe": - when: - bit: 64 os: windows @@ -539275,33 +540732,33 @@ The Clockwork Man: installDir: The Clockwork Man: {} launch: - /The Clockwork Man: + "/The Clockwork Man": - when: - os: linux store: steam - /The Clockwork Man.app: + "/The Clockwork Man.app": - when: - os: mac store: steam - /The Clockwork Man.exe: + "/The Clockwork Man.exe": - when: - os: windows store: steam steam: id: 111000 -'The Clockwork Man: The Hidden World': +"The Clockwork Man: The Hidden World": installDir: The Clockwork Man 2: {} launch: - /The Clockwork Man - The Hidden World: + "/The Clockwork Man - The Hidden World": - when: - os: linux store: steam - /The Clockwork Man - The Hidden World.app: + "/The Clockwork Man - The Hidden World.app": - when: - os: mac store: steam - /The Clockwork Man - The Hidden World.exe: + "/The Clockwork Man - The Hidden World.exe": - when: - os: windows store: steam @@ -539309,7 +540766,7 @@ The Clockwork Man: id: 111010 The Club: files: - /Documents/The Club Game Save Data: + "/Documents/The Club Game Save Data": tags: - config - save @@ -539318,7 +540775,7 @@ The Club: installDir: The Club: {} launch: - /launcher.exe: + "/launcher.exe": - when: - store: steam steam: @@ -539327,8 +540784,8 @@ The Coffin of Andy and Leyley: installDir: The Coffin of Andy and Leyley: {} launch: - /Game.exe: - - arguments: '--in-process-gpu' + "/Game.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam @@ -539336,7 +540793,7 @@ The Coffin of Andy and Leyley: id: 2378900 The Coin Game: files: - /AppData/LocalLow/devotid/TheCoinGame: + "/AppData/LocalLow/devotid/TheCoinGame": tags: - save when: @@ -539344,18 +540801,21 @@ The Coin Game: installDir: TheCoinGame: {} launch: - /TheCoinGame.exe: + "/TheCoinGame.exe": - when: - bit: 32 os: windows store: steam + - bit: 64 + os: windows + store: steam steam: id: 598980 The Cold War Era: installDir: The Cold War Era: {} launch: - /TCWE.exe: + "/TCWE.exe": - when: - os: windows store: steam @@ -539365,21 +540825,21 @@ The Collider: installDir: The Collider: {} launch: - /Collider.app: + "/Collider.app": - when: - os: mac store: steam - /Collider.exe: + "/Collider.exe": - when: - bit: 32 os: windows store: steam - /Collider.x86: + "/Collider.x86": - when: - bit: 32 os: linux store: steam - /Collider.x86_64: + "/Collider.x86_64": - when: - bit: 64 os: linux @@ -539390,25 +540850,25 @@ The Collider 2: installDir: The Collider 2: {} launch: - /DontCollide/Binaries/Linux/TheCollider2: + "/DontCollide/Binaries/Linux/TheCollider2": - when: - os: linux store: steam - /TheCollider2.exe: + "/TheCollider2.exe": - when: - bit: 64 os: windows store: steam steam: id: 357010 -The Colonel's Bequest: +"The Colonel's Bequest": files: - /CB1SG.***: + "/CB1SG.***": tags: - save when: - os: dos - /RESOURCE.CFG: + "/RESOURCE.CFG": tags: - config when: @@ -539417,7 +540877,7 @@ The Colonel's Bequest: id: 2108578958 The Colonists: files: - /AppData/LocalLow/Codebyfire Ltd/The Colonists/SaveGames: + "/AppData/LocalLow/Codebyfire Ltd/The Colonists/SaveGames": tags: - save when: @@ -539427,16 +540887,16 @@ The Colonists: installDir: The Colonists: {} launch: - /TheColonists.app: + "/TheColonists.app": - when: - os: mac store: steam - /TheColonists.exe: + "/TheColonists.exe": - when: - bit: 64 os: windows store: steam - /TheColonists.x86: + "/TheColonists.x86": - when: - os: linux store: steam @@ -539446,7 +540906,7 @@ The Colony (Monkeystein Games): installDir: The Colony: {} launch: - /TheColony.exe: + "/TheColony.exe": - when: - os: windows store: steam @@ -539456,19 +540916,19 @@ The Colony (Rusty Swain): installDir: The Colony: {} launch: - /Release/TheColony.exe: + "/Release/TheColony.exe": - when: - bit: 64 os: windows store: steam - workingDir: /Release + workingDir: "/Release" steam: id: 913370 The Color of the Roses: installDir: THE COLOR OF THE ROSES: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: @@ -539476,19 +540936,19 @@ The Color of the Roses: The Coma: steam: id: 705470 -'The Coma 2: Vicious Sisters': +"The Coma 2: Vicious Sisters": files: - /.config/unity3d/DevespressoGames/TheComa2ViciousSisters: + "/.config/unity3d/DevespressoGames/TheComa2ViciousSisters": tags: - config when: - os: linux - /.config/unity3d/DevespressoGames/TheComa2ViciousSisters/Coma2.save: + "/.config/unity3d/DevespressoGames/TheComa2ViciousSisters/Coma2.save": tags: - save when: - os: linux - /AppData/LocalLow/DevespressoGames/TheComa2ViciousSisters/Coma2.save: + "/AppData/LocalLow/DevespressoGames/TheComa2ViciousSisters/Coma2.save": tags: - save when: @@ -539498,16 +540958,16 @@ The Coma: installDir: The Coma 2 Vicious Sisters: {} launch: - /TheComa2ViciousSisters.app/Contents/MacOS/TheComa2ViciousSisters: + "/TheComa2ViciousSisters.app/Contents/MacOS/TheComa2ViciousSisters": - when: - os: mac store: steam - /TheComa2ViciousSisters.exe: + "/TheComa2ViciousSisters.exe": - when: - bit: 64 os: windows store: steam - /TheComa2ViciousSisters.x86_64: + "/TheComa2ViciousSisters.x86_64": - when: - bit: 64 os: linux @@ -539518,23 +540978,23 @@ The Coma: - config steam: id: 1045720 -'The Coma: Cutting Class': +"The Coma: Cutting Class": installDir: The Coma: {} launch: - /TheComa.app/Contents/MacOS/TheComa: + "/TheComa.app/Contents/MacOS/TheComa": - when: - os: mac store: steam - /TheComa.exe: + "/TheComa.exe": - when: - os: windows store: steam steam: id: 402630 -'The Coma: Recut': +"The Coma: Recut": files: - /unity3d/DevespressoGames/TheComaRecut/prefs: + "/unity3d/DevespressoGames/TheComaRecut/prefs": tags: - config - save @@ -539545,15 +541005,15 @@ The Coma: installDir: The Coma Recut: {} launch: - /TheComaRecut.app/Contents/MacOS/TheComaRecut: + "/TheComaRecut.app/Contents/MacOS/TheComaRecut": - when: - os: mac store: steam - /TheComaRecut.exe: + "/TheComaRecut.exe": - when: - os: windows store: steam - /TheComaRecut.x86_64: + "/TheComaRecut.x86_64": - when: - os: linux store: steam @@ -539564,15 +541024,15 @@ The Coma: - save steam: id: 600090 -'The Commission: Organized Crime Grand Strategy': +"The Commission: Organized Crime Grand Strategy": installDir: The Commission Organized Crime Grand Strategy: {} launch: - /The Commission.app: + "/The Commission.app": - when: - os: mac store: steam - /The Commission.exe: + "/The Commission.exe": - when: - os: windows store: steam @@ -539582,12 +541042,12 @@ The Communist Dogifesto: installDir: The Communist Dogifesto: {} launch: - /TheCommunistDogifesto.exe: + "/TheCommunistDogifesto.exe": - when: - bit: 64 os: windows store: steam - /TheCommunistDogifesto.x86_64: + "/TheCommunistDogifesto.x86_64": - when: - bit: 64 os: linux @@ -539598,21 +541058,21 @@ The Complex: installDir: The Complex: {} launch: - /TheComplex.app/Contents/MacOS/The Complex: + "/TheComplex.app/Contents/MacOS/The Complex": - when: - os: mac store: steam - /TheComplex.exe: + "/TheComplex.exe": - when: - os: windows store: steam steam: id: 1107790 -'The Complex: Found Footage': +"The Complex: Found Footage": installDir: The Complex Found Footage: {} launch: - /TheComplexFF.exe: + "/TheComplexFF.exe": - when: - bit: 64 os: windows @@ -539623,11 +541083,11 @@ The Con Simulator: installDir: The Con Simulator: {} launch: - /The Con Simulator.exe: + "/The Con Simulator.exe": - when: - os: windows store: steam - /TheConSimulator.app: + "/TheConSimulator.app": - when: - os: mac store: steam @@ -539637,7 +541097,7 @@ The Concourse: installDir: The Concourse: {} launch: - /TheConcourse.exe: + "/TheConcourse.exe": - when: - os: windows store: steam @@ -539647,15 +541107,15 @@ The Confines of the Crown: installDir: The Royal Trap: {} launch: - /The Royal Trap HD.app: + "/The Royal Trap HD.app": - when: - os: mac store: steam - /The Royal Trap HD.exe: + "/The Royal Trap HD.exe": - when: - os: windows store: steam - /The Royal Trap HD.sh: + "/The Royal Trap HD.sh": - when: - os: linux store: steam @@ -539665,7 +541125,7 @@ The Construct: installDir: The Construct: {} launch: - /The Construct.exe: + "/The Construct.exe": - when: - os: windows store: steam @@ -539673,7 +541133,7 @@ The Construct: id: 525190 The Consuming Shadow: files: - /conshadow_steam/*.dat: + "/conshadow_steam/*.dat": tags: - save when: @@ -539681,7 +541141,7 @@ The Consuming Shadow: installDir: The Consuming Shadow: {} launch: - /consumingshadow.exe: + "/consumingshadow.exe": - when: - os: windows store: steam @@ -539691,7 +541151,7 @@ The Contact: installDir: The Contact: {} launch: - /contact.exe: + "/contact.exe": - when: - os: windows store: steam @@ -539704,7 +541164,7 @@ The Convenience Store: installDir: The Convenience Store Yakin Jiken: {} launch: - /The Convenience Store Yakin Jiken.exe: + "/The Convenience Store Yakin Jiken.exe": - when: - store: steam steam: @@ -539713,11 +541173,11 @@ The Cooking Game: installDir: TheCookingGame: {} launch: - /CookingGame.app/Contents/MacOS/CookingGame: + "/CookingGame.app/Contents/MacOS/CookingGame": - when: - os: mac store: steam - /CookingGame.exe: + "/CookingGame.exe": - when: - os: windows store: steam @@ -539737,15 +541197,15 @@ The Coroner Saga: installDir: The Coroner Saga: {} launch: - /TCS.app: + "/TCS.app": - when: - os: mac store: steam - /TCS.exe: + "/TCS.exe": - when: - os: windows store: steam - /TCS.sh: + "/TCS.sh": - when: - os: linux store: steam @@ -539755,16 +541215,16 @@ The Corporate Machine: installDir: The Corporate Machine: {} launch: - /machine.exe: + "/machine.exe": - when: - store: steam steam: id: 351080 -'The Corridor: On Behalf Of The Dead': +"The Corridor: On Behalf Of The Dead": installDir: The Corridor On Behalf Of The Dead: {} launch: - /The Corridor.exe: + "/The Corridor.exe": - when: - os: windows store: steam @@ -539776,7 +541236,7 @@ The Cosmic Wheel Sisterhood: installDir: The Cosmic Wheel Sisterhood: {} launch: - /The_Cosmic_Wheel_Sisterhood.exe: + "/The_Cosmic_Wheel_Sisterhood.exe": - when: - os: windows store: steam @@ -539786,13 +541246,16 @@ The Cosmos is Mine!: installDir: The Cosmos Is Mine!: {} launch: - /Cosmos.app: + "/Cosmos.app": - when: - bit: 64 os: mac store: steam - /Cosmos.exe: + "/Cosmos.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam @@ -539800,12 +541263,12 @@ The Cosmos is Mine!: id: 347220 The Council: files: - /My Games/The Council/*.conf: + "/My Games/The Council/*.conf": tags: - config when: - os: windows - /My Games/The Council/: + "/My Games/The Council/": tags: - save when: @@ -539815,7 +541278,7 @@ The Council: installDir: The Council: {} launch: - /The Council.exe: + "/The Council.exe": - when: - bit: 64 os: windows @@ -539826,7 +541289,7 @@ The Council of Hanwell: installDir: The Council: {} launch: - /TheCouncil.exe: + "/TheCouncil.exe": - when: - bit: 64 store: steam @@ -539834,12 +541297,12 @@ The Council of Hanwell: id: 816330 The Count Lucanor: files: - /res/db: + "/res/db": tags: - save when: - os: windows - /res/settings/settings.properties: + "/res/settings/settings.properties": tags: - config when: @@ -539849,16 +541312,16 @@ The Count Lucanor: installDir: The Count Lucanor: {} launch: - /lucanor.command: + "/lucanor.command": - when: - bit: 64 os: mac store: steam - /lucanor.exe: + "/lucanor.exe": - when: - os: windows store: steam - /lucanor.sh: + "/lucanor.sh": - when: - bit: 64 os: linux @@ -539872,11 +541335,11 @@ The Counting Kingdom: installDir: CountingKingdom: {} launch: - /CKMac.app: + "/CKMac.app": - when: - os: mac store: steam - /CKWindows.exe: + "/CKWindows.exe": - when: - os: windows store: steam @@ -539886,7 +541349,7 @@ The Cows Are Watching: installDir: The Cows Are Watching: {} launch: - /TheCowsAreWatching.exe: + "/TheCowsAreWatching.exe": - when: - os: windows store: steam @@ -539895,7 +541358,7 @@ The Cows Are Watching: The Cradle of Ruin/毁灭的摇篮/ほろびのゆりかご: steam: id: 1024280 -'The Crane Trials: Red Edition': +"The Crane Trials: Red Edition": installDir: The Crane Trials Red Edition: {} steam: @@ -539904,7 +541367,7 @@ The Crater: installDir: TheCrater: {} launch: - /Crater.exe: + "/Crater.exe": - when: - store: steam steam: @@ -539913,7 +541376,7 @@ The Crazy Cookies!: installDir: The Crazy Cookies!: {} launch: - /The Crazy Cookies!.exe: + "/The Crazy Cookies!.exe": - when: - os: windows store: steam @@ -539923,7 +541386,7 @@ The Creature: installDir: The Creature: {} launch: - /TheCreature.exe: + "/TheCreature.exe": - when: - bit: 64 os: windows @@ -539932,7 +541395,7 @@ The Creature: id: 1119110 The Crew: files: - /The Crew: + "/The Crew": tags: - config when: @@ -539940,8 +541403,8 @@ The Crew: installDir: The Crew: {} launch: - /TheCrew.exe: - - arguments: '-uplay_steam_mode' + "/TheCrew.exe": + - arguments: "-uplay_steam_mode" when: - os: windows store: steam @@ -539949,7 +541412,7 @@ The Crew: id: 241560 The Crew 2: files: - /The Crew 2: + "/The Crew 2": tags: - config when: @@ -539964,7 +541427,7 @@ The Crew 2: id: 646910 The Crew Motorfest: files: - /TheCrewMotorfest: + "/TheCrewMotorfest": tags: - save when: @@ -539974,12 +541437,12 @@ The Crimson Diamond: id: 1098770 The Crooked Man: files: - /Game.ini: + "/Game.ini": tags: - config when: - os: windows - /Save/*.sav: + "/Save/*.sav": tags: - save when: @@ -539987,7 +541450,7 @@ The Crooked Man: installDir: The Crooked Man: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: @@ -539996,13 +541459,13 @@ The Cross Horror Game: installDir: The Cross: {} launch: - /thecross.exe: + "/thecross.exe": - when: - os: windows store: steam steam: id: 1117120 -The Crow's Eye: +"The Crow's Eye": gog: id: 1110057117 id: @@ -540012,17 +541475,17 @@ The Crow's Eye: steamExtra: - 585730 installDir: - The Crow's Eye: {} + "The Crow's Eye": {} launch: - /TheCrowsEye.app: + "/TheCrowsEye.app": - when: - os: mac store: steam - /TheCrowsEye.exe: + "/TheCrowsEye.exe": - when: - os: windows store: steam - /full_OpenGL5.5.x86_64: + "/full_OpenGL5.5.x86_64": - when: - os: linux store: steam @@ -540032,13 +541495,13 @@ The Crowded Party Game Collection: installDir: TheCrowdedPartyGameCollection: {} launch: - /bin/java: - - arguments: '-Xmx1024m -Djava.library.path=./natives/ -jar crowded.jar' + "/bin/java": + - arguments: "-Xmx1024m -Djava.library.path=./natives/ -jar crowded.jar" when: - os: linux store: steam - /bin/javaw.exe: - - arguments: '-Xmx128m -jar crowded.jar' + "/bin/javaw.exe": + - arguments: "-Xmx128m -jar crowded.jar" when: - os: windows store: steam @@ -540046,17 +541509,17 @@ The Crowded Party Game Collection: id: 618640 The Crown of Leaves: files: - /.config/The_Crown_of_Leaves/game_info: + "/.config/The_Crown_of_Leaves/game_info": tags: - save when: - os: linux - /.config/The_Crown_of_Leaves/saves: + "/.config/The_Crown_of_Leaves/saves": tags: - save when: - os: linux - /.config/The_Crown_of_Leaves/tcol.ini: + "/.config/The_Crown_of_Leaves/tcol.ini": tags: - config when: @@ -540064,11 +541527,11 @@ The Crown of Leaves: installDir: The Crown of Leaves: {} launch: - /The Crown of Leaves.exe: + "/The Crown of Leaves.exe": - when: - os: windows store: steam - /The Crown of Leaves.sh: + "/The Crown of Leaves.sh": - when: - os: linux store: steam @@ -540078,7 +541541,7 @@ The Cruxis Sword: installDir: The Cruxis Sword: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -540088,15 +541551,15 @@ The Cryptkeepers of Hallowford: installDir: The Cryptkeepers of Hallowford: {} launch: - /The Cryptkeepers of Hallowford.app/Contents/MacOS/The Cryptkeepers of Hallowford: + "/The Cryptkeepers of Hallowford.app/Contents/MacOS/The Cryptkeepers of Hallowford": - when: - os: mac store: steam - /TheCryptkeepersOfHallowford: + "/TheCryptkeepersOfHallowford": - when: - os: linux store: steam - /TheCryptkeepersOfHallowford.exe: + "/TheCryptkeepersOfHallowford.exe": - when: - os: windows store: steam @@ -540112,7 +541575,7 @@ The Crystal Nebula: id: 505660 The Crystal Rain Forest V2: files: - /Saves: + "/Saves": tags: - config - save @@ -540121,15 +541584,15 @@ The Crystal Rain Forest V2: The Cube: steam: id: 726650 -The Cube Hotel (Ning's Wing 2): +"The Cube Hotel (Ning's Wing 2)": installDir: - The Cube Hotel(Ning's Wing 2): {} + "The Cube Hotel(Ning's Wing 2)": {} launch: - /Chinese version.exe: + "/Chinese version.exe": - when: - os: windows store: steam - /English version.exe: + "/English version.exe": - when: - os: windows store: steam @@ -540142,22 +541605,22 @@ The Cubicle: id: 452490 The Culling: files: - /TheCulling/Saved/Config/WindowsClient: + "/TheCulling/Saved/Config/WindowsClient": tags: - config when: - os: windows - /TheCulling/Saved/SaveGames: + "/TheCulling/Saved/SaveGames": tags: - save when: - os: windows - /Epic/TheCulling/Saved/Config/LinuxClient: + "/Epic/TheCulling/Saved/Config/LinuxClient": tags: - config when: - os: linux - /Epic/TheCulling/Saved/SaveGames: + "/Epic/TheCulling/Saved/SaveGames": tags: - save when: @@ -540165,13 +541628,13 @@ The Culling: installDir: TheCulling: {} launch: - /Launch_TheCulling.exe: + "/Launch_TheCulling.exe": - when: - bit: 64 os: windows store: steam - /Victory/Binaries/Linux/Victory: - - arguments: '-opengl3' + "/Victory/Binaries/Linux/Victory": + - arguments: "-opengl3" when: - bit: 64 os: linux @@ -540182,7 +541645,7 @@ The Culling 2: installDir: TheCulling2: {} launch: - /Launch_TheCulling2.exe: + "/Launch_TheCulling2.exe": - when: - bit: 64 os: windows @@ -540193,17 +541656,17 @@ The Culling of the Cows: installDir: Culling Of The Cows: {} launch: - /Culling Of The Cows.exe: + "/Culling Of The Cows.exe": - when: - os: windows store: steam steam: id: 297020 -'The Cult: Marduk''s Longest Night': +"The Cult: Marduk's Longest Night": installDir: - The Cult - Marduk's Longest Night: {} + "The Cult - Marduk's Longest Night": {} launch: - /Marduk's Longest Night.exe: + "/Marduk's Longest Night.exe": - when: - os: windows store: steam @@ -540213,13 +541676,13 @@ The Cup: installDir: The Cup: {} launch: - /TheCup.exe: + "/TheCup.exe": - when: - os: windows store: steam steam: id: 947530 -'The Curious Study of Dr. Blackwood: A VR Tech Demo': +"The Curious Study of Dr. Blackwood: A VR Tech Demo": installDir: CuriousStudy: {} steam: @@ -540231,7 +541694,7 @@ The Curious Tale of the Stolen Pets: id: 1099500 The Curse of Issyos: files: - /Curse_of_Issyos/config.ini: + "/Curse_of_Issyos/config.ini": tags: - config when: @@ -540240,39 +541703,39 @@ The Curse of Kubel: installDir: The Curse of Kubel: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: id: 1269810 The Curse of Monkey Island: files: - /Saves: + "/Saves": tags: - save when: - store: gog - /Saves/monkey3.c*: + "/Saves/monkey3.c*": tags: - save when: - os: windows - /Saves/monkey3.c01: + "/Saves/monkey3.c01": tags: - config when: - os: windows - /Saves/monkey3.s*: + "/Saves/monkey3.s*": tags: - save when: - store: gog - /monkey3.ini: + "/monkey3.ini": tags: - config when: - store: gog - /ScummVM/Saved Games: + "/ScummVM/Saved Games": tags: - save when: @@ -540282,33 +541745,33 @@ The Curse of Monkey Island: installDir: The Curse of Monkey Island: {} launch: - /ScummVM/scummvm: - - arguments: '-c monkey3.ini monkey3' + "/ScummVM/scummvm": + - arguments: "-c monkey3.ini monkey3" when: - os: mac store: steam - workingDir: /ScummVM - /ScummVM/scummvm.exe: - - arguments: '-c monkey3.ini monkey3' + workingDir: "/ScummVM" + "/ScummVM/scummvm.exe": + - arguments: "-c monkey3.ini monkey3" when: - os: windows store: steam - workingDir: /ScummVM + workingDir: "/ScummVM" steam: id: 730820 The Curse of Nordic Cove: installDir: The Curse of Nordic Cove: {} launch: - /TheCurseOfNordicCove: + "/TheCurseOfNordicCove": - when: - os: linux store: steam - /TheCurseOfNordicCove.app: + "/TheCurseOfNordicCove.app": - when: - os: mac store: steam - /TheCurseOfNordicCove.exe: + "/TheCurseOfNordicCove.exe": - when: - os: windows store: steam @@ -540318,7 +541781,7 @@ The Curse of Yendor: installDir: The Curse Of Yendor: {} launch: - /The Curse Of Yendor.exe: + "/The Curse Of Yendor.exe": - when: - os: windows store: steam @@ -540328,11 +541791,11 @@ The Curse of the Werewolves: installDir: The Curse of the Werewolves: {} launch: - /The Curse of the Werewolves.app: + "/The Curse of the Werewolves.app": - when: - os: mac store: steam - /The Curse of the Werewolves.exe: + "/The Curse of the Werewolves.exe": - when: - os: windows store: steam @@ -540340,7 +541803,7 @@ The Curse of the Werewolves: id: 316420 The Cursed Crusade: files: - /My Games/TheCursedCrusade: + "/My Games/TheCursedCrusade": tags: - config when: @@ -540348,29 +541811,29 @@ The Cursed Crusade: installDir: The Cursed Crusade: {} launch: - /TCC.exe: + "/TCC.exe": - when: - store: steam steam: id: 106000 The Cursed Forest: files: - /assets/Libs/Config/*.xml: + "/assets/Libs/Config/*.xml": tags: - config when: - os: windows - /assets/game.cfg: + "/assets/game.cfg": tags: - config when: - os: windows - /assets/hud_settings.xml: + "/assets/hud_settings.xml": tags: - config when: - os: windows - /user/savegames: + "/user/savegames": tags: - save when: @@ -540378,7 +541841,7 @@ The Cursed Forest: installDir: The Cursed Forest: {} launch: - /bin/win_x64/TCF.exe: + "/bin/win_x64/TCF.exe": - when: - bit: 64 os: windows @@ -540392,7 +541855,7 @@ The Cursed Revolver: installDir: The Cursed Revolver: {} launch: - /TheCursedRevolver.exe: + "/TheCursedRevolver.exe": - when: - os: windows store: steam @@ -540402,15 +541865,15 @@ The Cursed Tower: installDir: The Cursed Tower: {} launch: - /The Cursed Tower.app/Contents/MacOS/The Cursed Tower: + "/The Cursed Tower.app/Contents/MacOS/The Cursed Tower": - when: - os: mac store: steam - /The Cursed Tower.exe: + "/The Cursed Tower.exe": - when: - os: windows store: steam - /The Cursed Tower.x86: + "/The Cursed Tower.x86": - when: - os: linux store: steam @@ -540418,14 +541881,14 @@ The Cursed Tower: id: 705370 The Cycle: files: - /Prospect/Saved/Config/WindowsNoEditor: + "/Prospect/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows -'The Cycle: Frontier': +"The Cycle: Frontier": files: - /Prospect/Saved: + "/Prospect/Saved": tags: - config when: @@ -540439,7 +541902,7 @@ The Cycle: installDir: The Cycle: {} launch: - /Prospect_BE.exe: + "/Prospect_BE.exe": - arguments: PF_TITLEID=D82BF -steam_auth when: - os: windows @@ -540450,7 +541913,7 @@ The D.R.G. Initiative: installDir: The DRG Initiative: {} launch: - /Bin64.Release/DRG.exe: + "/Bin64.Release/DRG.exe": - arguments: +gm_netsec_enable 0 when: - bit: 64 @@ -540458,17 +541921,17 @@ The D.R.G. Initiative: store: steam steam: id: 613580 -'The DOCS: Department of Creatures': +"The DOCS: Department of Creatures": steam: id: 674200 The Da Vinci Code: files: - /engine: + "/engine": tags: - config when: - os: windows - /Documents/the da vinci code: + "/Documents/the da vinci code": tags: - save when: @@ -540482,17 +541945,17 @@ The Dame Was Loaded: installDir: The Dame Was Loaded: {} launch: - /start.bat: + "/start.bat": - when: - os: windows store: steam steam: id: 1006440 -'The Dandelion Girl: Don''t You Remember Me?': +"The Dandelion Girl: Don't You Remember Me?": installDir: The Dandelion Girl: {} launch: - /dggame.exe: + "/dggame.exe": - when: - os: windows store: steam @@ -540502,28 +541965,28 @@ The Daring Mermaid Expedition: installDir: The Daring Mermaid Expedition: {} launch: - /DaringMermaidExpedition: + "/DaringMermaidExpedition": - when: - os: linux store: steam - /DaringMermaidExpedition.exe: + "/DaringMermaidExpedition.exe": - when: - os: windows store: steam - /The Daring Mermaid Expedition.app/Contents/MacOS/The Daring Mermaid Expedition: + "/The Daring Mermaid Expedition.app/Contents/MacOS/The Daring Mermaid Expedition": - when: - os: mac store: steam steam: id: 443830 -'The Dark Crystal: Age of Resistance Tactics': +"The Dark Crystal: Age of Resistance Tactics": files: - /AppData/LocalLow/BonusXP/DCAORTactics/ClientData/PlayerData.xml: + "/AppData/LocalLow/BonusXP/DCAORTactics/ClientData/PlayerData.xml": tags: - config when: - os: windows - /AppData/LocalLow/BonusXP/DCAORTactics/SaveData: + "/AppData/LocalLow/BonusXP/DCAORTactics/SaveData": tags: - save when: @@ -540533,11 +541996,11 @@ The Daring Mermaid Expedition: installDir: The Dark Crystal Age of Resistance - Tactics: {} launch: - /DCAORTactics.exe: + "/DCAORTactics.exe": - when: - os: windows store: steam - /DCAORTactics_Steam.app: + "/DCAORTactics_Steam.app": - when: - os: mac store: steam @@ -540547,20 +542010,20 @@ The Daring Mermaid Expedition: - config steam: id: 1097790 -'The Dark Eye: Book of Heroes': +"The Dark Eye: Book of Heroes": installDir: TDE Book of Heroes: {} launch: - /Book of Heroes.exe: + "/Book of Heroes.exe": - when: - bit: 64 os: windows store: steam steam: id: 1139870 -'The Dark Eye: Chains of Satinav': +"The Dark Eye: Chains of Satinav": files: - /Daedalic Entertainment/Satinav/Savegames: + "/Daedalic Entertainment/Satinav/Savegames": tags: - config - save @@ -540571,15 +542034,15 @@ The Daring Mermaid Expedition: installDir: TheDarkEye Cos: {} launch: - /Satinav.app: + "/Satinav.app": - when: - os: mac store: steam - /VisionaireConfigurationTool.exe: + "/VisionaireConfigurationTool.exe": - when: - os: windows store: steam - /satinav.exe: + "/satinav.exe": - when: - os: windows store: steam @@ -540587,12 +542050,12 @@ The Daring Mermaid Expedition: id: 203830 The Dark Heart of Uukrul: files: - /*.GMI: + "/*.GMI": tags: - save when: - os: dos - /*.IMG: + "/*.IMG": tags: - save when: @@ -540603,7 +542066,7 @@ The Dark Inside Me: installDir: The Dark Inside Me: {} launch: - /The Dark Inside Me.exe: + "/The Dark Inside Me.exe": - when: - os: windows store: steam @@ -540613,7 +542076,7 @@ The Dark Legions: installDir: The Dark Legions: {} launch: - /TheDarkLegions.exe: + "/TheDarkLegions.exe": - when: - os: windows store: steam @@ -540621,25 +542084,25 @@ The Dark Legions: id: 492530 The Dark Mod: files: - /Darkmod.cfg: + "/Darkmod.cfg": tags: - config when: - os: windows - os: linux - /fms: + "/fms": tags: - save when: - os: windows The Dark Occult: files: - /The_Dark_Occult/Saved/Config/WindowsNoEditor: + "/The_Dark_Occult/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /The_Dark_Occult/Saved/SaveGames: + "/The_Dark_Occult/Saved/SaveGames": tags: - save when: @@ -540647,7 +542110,7 @@ The Dark Occult: installDir: The Dark Occult: {} launch: - /The_Dark_Occult.exe: + "/The_Dark_Occult.exe": - when: - bit: 64 os: windows @@ -540660,11 +542123,11 @@ The Dark Prophecy: installDir: The Prophecy: {} launch: - /MacBuild.app: + "/MacBuild.app": - when: - os: mac store: steam - /WinBuild/Prophecy Quest.exe: + "/WinBuild/Prophecy Quest.exe": - when: - os: windows store: steam @@ -540672,12 +542135,12 @@ The Dark Prophecy: id: 1565680 The Dark Queen of Krynn: files: - /DQK.CFG: + "/DQK.CFG": tags: - config when: - os: dos - /SAVE: + "/SAVE": tags: - save when: @@ -540690,11 +542153,11 @@ The Dark Room: installDir: The Dark Room: {} launch: - /DarkRoomUnreal.app: + "/DarkRoomUnreal.app": - when: - os: mac store: steam - /DarkRoomUnreal.exe: + "/DarkRoomUnreal.exe": - when: - bit: 64 os: windows @@ -540705,7 +542168,7 @@ The Dark Side: installDir: The Dark Side: {} launch: - /TheDarkSide.exe: + "/TheDarkSide.exe": - when: - os: windows store: steam @@ -540713,9 +542176,9 @@ The Dark Side: id: 1017880 The Dark Side of the Moon: installDir: - ' The Dark Side Of The Moon': {} + " The Dark Side Of The Moon": {} launch: - /TheDarkSideOfTheMoon.exe: + "/TheDarkSideOfTheMoon.exe": - when: - os: windows store: steam @@ -540725,7 +542188,7 @@ The Dark Stone from Mebara: installDir: The Dark Stone from Mebara: {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: @@ -540733,7 +542196,7 @@ The Dark Stone from Mebara: The Dark Tales of Katarina: steam: id: 617330 -'The Dark Veil: West Haven': +"The Dark Veil: West Haven": steam: id: 1085620 The Dark Wish: @@ -540741,12 +542204,12 @@ The Dark Wish: id: 1141540 The Darkest Tales: files: - /AppData/LocalLow/TrinityTeam/DarkestTales/GAMESTATE*.txt: + "/AppData/LocalLow/TrinityTeam/DarkestTales/GAMESTATE*.txt": tags: - save when: - os: windows - /AppData/LocalLow/TrinityTeam/DarkestTales/OPTIONS.txt: + "/AppData/LocalLow/TrinityTeam/DarkestTales/OPTIONS.txt": tags: - config when: @@ -540756,7 +542219,7 @@ The Darkest Tales: installDir: The Darkest Tales: {} launch: - /DarkestTales.exe: + "/DarkestTales.exe": - when: - os: windows store: steam @@ -540770,16 +542233,19 @@ The Darkest Woods: installDir: The Darkest Woods: {} launch: - /The Darkest Woods.app/Contents/MacOS/The Darkest Woods: + "/The Darkest Woods.app/Contents/MacOS/The Darkest Woods": - when: - os: mac store: steam - /The Darkest Woods.exe: + "/The Darkest Woods.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam - /The Darkest Woods.x86_64: + "/The Darkest Woods.x86_64": - when: - bit: 64 os: linux @@ -540790,16 +542256,19 @@ The Darkest Woods 2: installDir: The Darkest Woods 2: {} launch: - /The Darkest Woods 2.app/Contents/MacOS/The Darkest Woods 2: + "/The Darkest Woods 2.app/Contents/MacOS/The Darkest Woods 2": - when: - os: mac store: steam - /The Darkest Woods 2.exe: + "/The Darkest Woods 2.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam - /The Darkest Woods 2.x86_64: + "/The Darkest Woods 2.x86_64": - when: - bit: 64 os: linux @@ -540810,7 +542279,7 @@ The Darkness: installDir: The Darkness: {} launch: - /The Darkness.exe: + "/The Darkness.exe": - when: - os: windows store: steam @@ -540818,7 +542287,7 @@ The Darkness: id: 765390 The Darkness II: files: - /DarknessII: + "/DarknessII": tags: - config - save @@ -540827,12 +542296,12 @@ The Darkness II: installDir: Darkness II: {} launch: - /DarknessII.exe: + "/DarknessII.exe": - when: - os: windows store: steam - /The Darkness II.app/Contents/MacOS/cider: - - arguments: '-psn' + "/The Darkness II.app/Contents/MacOS/cider": + - arguments: "-psn" when: - os: mac store: steam @@ -540840,17 +542309,17 @@ The Darkness II: id: 67370 The Darkside Detective: files: - /AppData/LocalLow/Spooky Doorway/The Darkside Detective: + "/AppData/LocalLow/Spooky Doorway/The Darkside Detective": tags: - save when: - os: windows - /unity3d/Spooky Doorway/The Darkside Detective/*.save: + "/unity3d/Spooky Doorway/The Darkside Detective/*.save": tags: - save when: - os: linux - /unity3d/Spooky Doorway/The Darkside Detective/prefs: + "/unity3d/Spooky Doorway/The Darkside Detective/prefs": tags: - config when: @@ -540864,20 +542333,20 @@ The Darkside Detective: installDir: The Darkside Detective: {} launch: - /thedarksidedetective.app/Contents/MacOS/thedarksidedetective: + "/thedarksidedetective.app/Contents/MacOS/thedarksidedetective": - when: - os: mac store: steam - /thedarksidedetective.exe: + "/thedarksidedetective.exe": - when: - os: windows store: steam - /thedarksidedetective.x86: + "/thedarksidedetective.x86": - when: - bit: 32 os: linux store: steam - /thedarksidedetective.x86_64: + "/thedarksidedetective.x86_64": - when: - bit: 64 os: linux @@ -540888,29 +542357,29 @@ The Darkside Detective: - config steam: id: 368390 -'The Darkside Detective: A Fumble in the Dark': +"The Darkside Detective: A Fumble in the Dark": files: - /AppData/LocalLow/Spooky Doorway/The Darkside Detective 2/*.save: + "/AppData/LocalLow/Spooky Doorway/The Darkside Detective 2/*.save": tags: - save when: - os: windows - /AppData/LocalLow/Spooky Doorway/The Darkside Detective 2/DarksideOptions: + "/AppData/LocalLow/Spooky Doorway/The Darkside Detective 2/DarksideOptions": tags: - config when: - os: windows - /unity3d/Spooky Doorway/The Darkside Detective 2/*.save: + "/unity3d/Spooky Doorway/The Darkside Detective 2/*.save": tags: - save when: - os: linux - /unity3d/Spooky Doorway/The Darkside Detective 2/DarksideOptions: + "/unity3d/Spooky Doorway/The Darkside Detective 2/DarksideOptions": tags: - config when: - os: linux - /unity3d/Spooky Doorway/The Darkside Detective 2/prefs: + "/unity3d/Spooky Doorway/The Darkside Detective 2/prefs": tags: - config when: @@ -540920,15 +542389,15 @@ The Darkside Detective: installDir: The Darkside Detective Season 2: {} launch: - /The Darkside Detective 2.app/Contents/MacOS/The Darkside Detective 2: + "/The Darkside Detective 2.app/Contents/MacOS/The Darkside Detective 2": - when: - os: mac store: steam - /The Darkside Detective 2.exe: + "/The Darkside Detective 2.exe": - when: - os: windows store: steam - /The Darkside Detective 2.x86_64: + "/The Darkside Detective 2.x86_64": - when: - bit: 64 os: linux @@ -540939,25 +542408,25 @@ The Darkside Detective: - config steam: id: 795420 -'The Dawn: First War': +"The Dawn: First War": steam: id: 574510 -'The Dawn: Sniper''s Way': +"The Dawn: Sniper's Way": installDir: TheDawn: {} launch: - /TheDawn.exe: + "/TheDawn.exe": - when: - bit: 64 os: windows store: steam steam: id: 1035600 -'The Day After: Origins': +"The Day After: Origins": installDir: TheDayAfterOrigins: {} launch: - /TheDayAfter.exe: + "/TheDayAfter.exe": - when: - os: windows store: steam @@ -540970,7 +542439,7 @@ The Day I Died: installDir: TDID: {} launch: - /TDID.exe: + "/TDID.exe": - when: - bit: 64 os: windows @@ -540981,7 +542450,7 @@ The Day Online: installDir: THE DAY Online: {} launch: - /Launcher.exe: + "/Launcher.exe": - when: - bit: 64 os: windows @@ -541002,7 +542471,7 @@ The Dead Cloud Forest: installDir: The Dead Cloud Forest: {} launch: - /The Dead Cloud Forest.exe: + "/The Dead Cloud Forest.exe": - when: - os: windows store: steam @@ -541014,7 +542483,7 @@ The Dead End: installDir: The Dead End: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: @@ -541023,7 +542492,7 @@ The Dead Tree of Ranchiuna: installDir: The Dead Tree of Ranchiuna: {} launch: - /Ranchiuna.exe: + "/Ranchiuna.exe": - when: - bit: 64 os: windows @@ -541032,7 +542501,7 @@ The Dead Tree of Ranchiuna: id: 1015430 The Deadly Tower of Monsters: files: - /My Games/TowerOfMonsters: + "/My Games/TowerOfMonsters": tags: - config - save @@ -541043,7 +542512,7 @@ The Deadly Tower of Monsters: installDir: the_deadly_tower_of_monsters: {} launch: - /Binaries/Win32/TS.exe: + "/Binaries/Win32/TS.exe": - when: - os: windows store: steam @@ -541053,7 +542522,7 @@ The Deal: installDir: The Deal: {} launch: - /The Deal.exe: + "/The Deal.exe": - when: - store: steam steam: @@ -541062,15 +542531,15 @@ The Dealer: installDir: The Dealer: {} launch: - /The Dealer.app/Contents/MacOS/The Dealer: + "/The Dealer.app/Contents/MacOS/The Dealer": - when: - os: mac store: steam - /The Dealer.exe: + "/The Dealer.exe": - when: - os: windows store: steam - /The Dealer.x86_64: + "/The Dealer.x86_64": - when: - os: linux store: steam @@ -541080,15 +542549,15 @@ The Death Into Trouble: installDir: TDIT: {} launch: - /TheDeathIntoTrouble: + "/TheDeathIntoTrouble": - when: - os: linux store: steam - /TheDeathIntoTrouble.app: + "/TheDeathIntoTrouble.app": - when: - os: mac store: steam - /TheDeathIntoTrouble.exe: + "/TheDeathIntoTrouble.exe": - when: - os: windows store: steam @@ -541098,7 +542567,7 @@ The Death of Erin Myers: installDir: The Death of Erin Myers: {} launch: - /erin_myers_pc_en_1280.exe: + "/erin_myers_pc_en_1280.exe": - when: - store: steam steam: @@ -541110,7 +542579,7 @@ The Deed: installDir: The Deed: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -541120,16 +542589,16 @@ The Deed II: installDir: The Deed II: {} launch: - /nw.exe: - - arguments: '--in-process-gpu' + "/nw.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam steam: id: 1155660 -'The Deed: Dynasty': +"The Deed: Dynasty": files: - /SteamApps/common/The Deed Dynasty/Save*.rvdata2: + "/SteamApps/common/The Deed Dynasty/Save*.rvdata2": tags: - save when: @@ -541138,21 +542607,21 @@ The Deed II: installDir: The Deed Dynasty: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam steam: id: 460960 -'The Deep Paths: Labyrinth of Andokost': +"The Deep Paths: Labyrinth of Andokost": installDir: The Deep Paths Labyrinth Of Andokost: {} launch: - /TheDeepPaths.app: + "/TheDeepPaths.app": - when: - os: mac store: steam - /TheDeepPaths.exe: + "/TheDeepPaths.exe": - when: - os: windows store: steam @@ -541162,11 +542631,11 @@ The Deepest House: installDir: The Deepest House: {} launch: - /TDH.app/Contents/MacOS/TDH: + "/TDH.app/Contents/MacOS/TDH": - when: - os: mac store: steam - /TDH.exe: + "/TDH.exe": - when: - os: windows store: steam @@ -541176,15 +542645,15 @@ The Deer: installDir: TheDeer: {} launch: - /TheDeer.app: + "/TheDeer.app": - when: - os: mac store: steam - /TheDeer.exe: + "/TheDeer.exe": - when: - os: windows store: steam - /TheDeer.x86: + "/TheDeer.x86": - when: - os: linux store: steam @@ -541194,7 +542663,7 @@ The Deer (2019): installDir: The Deer: {} launch: - /The Deer.exe: + "/The Deer.exe": - when: - os: windows store: steam @@ -541204,25 +542673,25 @@ The Deer God: installDir: The Deer God: {} launch: - /thedeergod.app: + "/thedeergod.app": - when: - os: mac store: steam - /thedeergod.exe: + "/thedeergod.exe": - when: - os: windows store: steam - /thedeergod.x86: + "/thedeergod.x86": - when: - os: linux store: steam steam: id: 328940 -'The Defender: Farm and Castle': +"The Defender: Farm and Castle": installDir: The Defender FAC: {} launch: - /TheDefenderFAC.exe: + "/TheDefenderFAC.exe": - when: - bit: 64 os: windows @@ -541234,22 +542703,22 @@ The Deer God: - save steam: id: 1067600 -'The Defender: Farm and Castle 2': +"The Defender: Farm and Castle 2": installDir: The Defender FAC2: {} launch: - /TheDefenderFAC2.exe: + "/TheDefenderFAC2.exe": - when: - bit: 64 os: windows store: steam steam: id: 1141150 -'The Defenders: The Second Wave': +"The Defenders: The Second Wave": installDir: The Defenders The Second Wave: {} launch: - /TheDefenders.exe: + "/TheDefenders.exe": - when: - os: windows store: steam @@ -541259,11 +542728,11 @@ The Deletion: installDir: The Deletion: {} launch: - /thedeletion.app: + "/thedeletion.app": - when: - os: mac store: steam - /thedeletion.exe: + "/thedeletion.exe": - when: - os: windows store: steam @@ -541273,7 +542742,7 @@ The Delirium Vacation: installDir: The Delirium Vacation: {} launch: - /dvgame.exe: + "/dvgame.exe": - when: - os: windows store: steam @@ -541283,11 +542752,11 @@ The Demon - Nicolas Eymerich Inquisitor Audiogame: installDir: The Demon - Nicolas Eymerich Inquisitor Audiogame: {} launch: - /Eymerich Il Demone.exe: + "/Eymerich Il Demone.exe": - when: - os: windows store: steam - /The Demon - Nicolas Eymerich Inquisitor Audiogame.app: + "/The Demon - Nicolas Eymerich Inquisitor Audiogame.app": - when: - os: mac store: steam @@ -541297,7 +542766,7 @@ The Demon Crystal: installDir: The Demon Crystal: {} launch: - /DC1_STEAM.exe: + "/DC1_STEAM.exe": - when: - store: steam steam: @@ -541308,7 +542777,7 @@ The Demon Lord Is New in Town!: installDir: The Demon Lord Is New in Town!: {} launch: - /Demon Lord.exe: + "/Demon Lord.exe": - when: - store: steam steam: @@ -541317,7 +542786,7 @@ The Den of Chaos - 混沌の魔窟殿~アヒアハン19世の指令編~: installDir: The Den of Chaos ~Order of Ahiahan the 19th~: {} launch: - /The Den of Chaos.exe: + "/The Den of Chaos.exe": - when: - os: windows store: steam @@ -541327,14 +542796,14 @@ The Departure: installDir: The Departure: {} launch: - /The Departure.exe: + "/The Departure.exe": - when: - store: steam steam: id: 777900 The Depths of Tolagal: files: - /depths-of-tolagal/Local Storage: + "/depths-of-tolagal/Local Storage": tags: - save when: @@ -541342,21 +542811,21 @@ The Depths of Tolagal: installDir: The Depths of Tolagal: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam - /tolagal: + "/tolagal": - when: - bit: 32 os: linux store: steam - /tolagal-wrapper.sh: + "/tolagal-wrapper.sh": - when: - bit: 64 os: linux store: steam - /tolagal.app: + "/tolagal.app": - when: - os: mac store: steam @@ -541364,7 +542833,7 @@ The Depths of Tolagal: id: 340600 The Descendant: files: - /My Games/The Descendant: + "/My Games/The Descendant": tags: - save when: @@ -541372,11 +542841,11 @@ The Descendant: installDir: The Descendant: {} launch: - /Descendant_Windows.exe: + "/Descendant_Windows.exe": - when: - os: windows store: steam - /The Descendant.app: + "/The Descendant.app": - when: - os: mac store: steam @@ -541386,21 +542855,21 @@ The Descendant: - config steam: id: 351940 -The Desert's Rose: +"The Desert's Rose": installDir: - The Desert's Rose: {} + "The Desert's Rose": {} steam: id: 935110 -The Designer's Curse: +"The Designer's Curse": installDir: - The Designer's Curse: {} + "The Designer's Curse": {} launch: - /The Designer's Curse Chapter One.exe: + "/The Designer's Curse Chapter One.exe": - when: - bit: 64 os: windows store: steam - /The Designers Curse Chapter One.app: + "/The Designers Curse Chapter One.app": - when: - os: mac store: steam @@ -541408,7 +542877,7 @@ The Designer's Curse: id: 1119060 The Desolate Hope: files: - /tdh*.txt: + "/tdh*.txt": tags: - save when: @@ -541416,7 +542885,7 @@ The Desolate Hope: installDir: The Desolate Hope: {} launch: - /The Desolate Hope.exe: + "/The Desolate Hope.exe": - when: - os: windows store: steam @@ -541424,17 +542893,17 @@ The Desolate Hope: id: 298180 The Detail: files: - /The Detail_Data/Saves: + "/The Detail_Data/Saves": tags: - save when: - os: linux - /My Games/Rival Games/The Detail/Saves: + "/My Games/Rival Games/The Detail/Saves": tags: - save when: - os: windows - /unity3d/Rival Games/The Detail/prefs: + "/unity3d/Rival Games/The Detail/prefs": tags: - config when: @@ -541442,15 +542911,15 @@ The Detail: installDir: The Detail: {} launch: - /The Detail.app: + "/The Detail.app": - when: - os: mac store: steam - /The Detail.exe: + "/The Detail.exe": - when: - os: windows store: steam - /The Detail.x86: + "/The Detail.x86": - when: - os: linux store: steam @@ -541460,11 +542929,11 @@ The Detail: - config steam: id: 319970 -'The Detective Chapters: Part One': +"The Detective Chapters: Part One": installDir: The Detective Chapters Part One: {} launch: - /The_Detective_Chapters_v1.6.2.exe: + "/The_Detective_Chapters_v1.6.2.exe": - when: - os: windows store: steam @@ -541474,20 +542943,20 @@ The Devil Haunts Me: installDir: THE DEVIL HAUNTS ME: {} launch: - /THE DEVIL HAUNTS ME (linux).x86: + "/THE DEVIL HAUNTS ME (linux).x86": - when: - os: linux store: steam - /THE DEVIL HAUNTS ME (linux).x86_64: + "/THE DEVIL HAUNTS ME (linux).x86_64": - when: - bit: 64 os: linux store: steam - /THE DEVIL HAUNTS ME (mac).app: + "/THE DEVIL HAUNTS ME (mac).app": - when: - os: mac store: steam - /THE DEVIL HAUNTS ME (windows).exe: + "/THE DEVIL HAUNTS ME (windows).exe": - when: - os: windows store: steam @@ -541499,24 +542968,24 @@ The Devil Haunts Me: id: 993170 The Devil Inside: files: - /Config.ini: + "/Config.ini": tags: - config when: - os: windows - /slot*.tdi: + "/slot*.tdi": tags: - save when: - os: windows The Devil in Me: files: - /TheDevilInMe/Saved/Config/WindowsNoEditor: + "/TheDevilInMe/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /TheDevilInMe/Saved/SaveGames: + "/TheDevilInMe/Saved/SaveGames": tags: - config - save @@ -541525,8 +542994,8 @@ The Devil in Me: installDir: The Dark Pictures Anthology - The Devil In Me: {} launch: - /TheDevilInMe.exe: - - arguments: '-dx11' + "/TheDevilInMe.exe": + - arguments: "-dx11" when: - bit: 64 os: windows @@ -541535,19 +543004,19 @@ The Devil in Me: id: 1567020 The Devil on G-String: files: - /AkabeiSoft2/G_Senjou_no_Maou: + "/AkabeiSoft2/G_Senjou_no_Maou": tags: - config - save when: - os: windows - /g-senjou no maou english savedata: + "/g-senjou no maou english savedata": tags: - config - save when: - os: windows - /あかべぇそふとつぅセーブデータ/G線上の魔王セーブデータ: + "/あかべぇそふとつぅセーブデータ/G線上の魔王セーブデータ": tags: - config - save @@ -541556,44 +543025,44 @@ The Devil on G-String: installDir: G-senjou no Maou - The Devil on G-String: {} launch: - /g_senjou_no_maou.exe: + "/g_senjou_no_maou.exe": - when: - os: windows store: steam steam: id: 377670 -The Devil's Calculator: +"The Devil's Calculator": installDir: - The Devil's Calculator: {} + "The Devil's Calculator": {} launch: - /calculator: + "/calculator": - when: - os: linux store: steam - /calculator.app: + "/calculator.app": - when: - os: mac store: steam - /calculator.exe: + "/calculator.exe": - when: - os: windows store: steam steam: id: 1014280 -The Devil's Garden: +"The Devil's Garden": installDir: TDG: {} launch: - /TDG2.exe: + "/TDG2.exe": - when: - store: steam steam: id: 838790 -The Devil's Womb: +"The Devil's Womb": installDir: tdw_win: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -541603,7 +543072,7 @@ The Dew: installDir: The Dew: {} launch: - /The_Dew.exe: + "/The_Dew.exe": - when: - os: windows store: steam @@ -541611,28 +543080,28 @@ The Dew: id: 692950 The Dig: files: - /dig.ini: + "/dig.ini": tags: - config when: - os: windows - /dig.s??: + "/dig.s??": tags: - save when: - os: windows - /LucasArts/The Dig: + "/LucasArts/The Dig": tags: - config - save when: - os: windows - 'C:/DIG/IMUSE.INI': + "C:/DIG/IMUSE.INI": tags: - config when: - os: dos - 'C:/DIG/SAVEGAME.*': + "C:/DIG/SAVEGAME.*": tags: - save when: @@ -541642,11 +543111,11 @@ The Dig: installDir: The Dig: {} launch: - /The Dig.app: + "/The Dig.app": - when: - os: mac store: steam - /The Dig.exe: + "/The Dig.exe": - when: - os: windows store: steam @@ -541657,12 +543126,12 @@ The Dinosaur Operation: id: 603640 The DioField Chronicle: files: - /My Games/DFC/Steam/: + "/My Games/DFC/Steam/": tags: - save when: - os: windows - /DFC/Saved/Config/WindowsNoEditor: + "/DFC/Saved/Config/WindowsNoEditor": tags: - config when: @@ -541670,13 +543139,13 @@ The DioField Chronicle: installDir: DFC: {} launch: - /DFC.exe: - - arguments: '-dx12' + "/DFC.exe": + - arguments: "-dx12" when: - bit: 64 os: windows store: steam - - arguments: '-dx11' + - arguments: "-dx11" when: - bit: 64 os: windows @@ -541687,7 +543156,7 @@ The Directed: installDir: the_directed: {} launch: - /directed.exe: + "/directed.exe": - when: - os: windows store: steam @@ -541697,16 +543166,16 @@ The Dis-United States Of America: installDir: The DisUnited States Of America: {} launch: - /The Dis-United States Of America.exe: + "/The Dis-United States Of America.exe": - when: - os: windows store: steam - /The Dis-United States Of America.x86: + "/The Dis-United States Of America.x86": - when: - bit: 32 os: linux store: steam - /The Dis-United States Of America.x86_64: + "/The Dis-United States Of America.x86_64": - when: - bit: 64 os: linux @@ -541715,13 +543184,13 @@ The Dis-United States Of America: id: 1193420 The Disappearing of Gensokyo: files: - /userdata//776490/remote: + "/userdata//776490/remote": tags: - save when: - os: windows store: steam - /userdata//776490/remote/config.xml: + "/userdata//776490/remote/config.xml": tags: - config when: @@ -541730,7 +543199,7 @@ The Disappearing of Gensokyo: installDir: The Disappearing of Gensokyo: {} launch: - /The Disappearing of Gensokyo.exe: + "/The Disappearing of Gensokyo.exe": - when: - os: windows store: steam @@ -541740,7 +543209,7 @@ The Disguiser Of Fate: installDir: The Disguiser Of Fate: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -541750,33 +543219,33 @@ The Disgusting Slaughterman: installDir: Slaughterman: {} launch: - /DSM.exe: + "/DSM.exe": - when: - bit: 64 os: windows store: steam steam: id: 886210 -'The Dishwasher: Vampire Smile': +"The Dishwasher: Vampire Smile": files: - /Library/Application Support/VampireSmile: + "/Library/Application Support/VampireSmile": tags: - config - save when: - os: mac - /VampireSmile: + "/VampireSmile": tags: - config - save when: - os: windows - /VampireSmile: + "/VampireSmile": tags: - config when: - os: linux - /VampireSmile: + "/VampireSmile": tags: - save when: @@ -541784,16 +543253,16 @@ The Disgusting Slaughterman: installDir: TheDishwasherVampireSmile: {} launch: - /Vampire Smile.app/Contents/MacOS/VampireSmile: + "/Vampire Smile.app/Contents/MacOS/VampireSmile": - when: - os: mac store: steam - /VampireSmile: + "/VampireSmile": - when: - os: linux store: steam - /VampireSmile.exe: - - arguments: '-dsound' + "/VampireSmile.exe": + - arguments: "-dsound" when: - os: windows store: steam @@ -541803,7 +543272,7 @@ The Disney Afternoon Collection: installDir: DisneyAfternoon: {} launch: - /capcom_disney_afternoon.exe: + "/capcom_disney_afternoon.exe": - when: - os: windows store: steam @@ -541814,12 +543283,12 @@ The District: id: 357770 The Ditzy Demons Are in Love With Me: files: - /savedata: + "/savedata": tags: - save when: - os: windows - /savedata/ditzydemons.cfu: + "/savedata/ditzydemons.cfu": tags: - config when: @@ -541829,13 +543298,13 @@ The Ditzy Demons Are in Love With Me: installDir: The Ditzy Demons Are in Love With Me: {} launch: - /DitzyDemons.exe: - - arguments: '-steam' + "/DitzyDemons.exe": + - arguments: "-steam" when: - store: steam steam: id: 802870 -'The Divergent Series: Allegiant VR': +"The Divergent Series: Allegiant VR": installDir: The Divergent Series Allegiant VR: {} steam: @@ -541843,19 +543312,19 @@ The Ditzy Demons Are in Love With Me: The Divine Paradox: steam: id: 495630 -'The Dolls: Reborn': +"The Dolls: Reborn": installDir: TheDolls: {} launch: - /TheDolls.app: + "/TheDolls.app": - when: - os: mac store: steam - /TheDolls.exe: + "/TheDolls.exe": - when: - os: windows store: steam - /TheDolls.x86: + "/TheDolls.x86": - when: - os: linux store: steam @@ -541865,7 +543334,7 @@ The Donnerwald Experiment: installDir: TheDonnerwaldExperiment: {} launch: - /The Donnerwald Experiment.exe: + "/The Donnerwald Experiment.exe": - when: - os: windows store: steam @@ -541875,8 +543344,8 @@ The Doorbreaker: installDir: The Doorbreaker: {} launch: - /game.exe: - - arguments: '--in-process-gpu' + "/game.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam @@ -541886,15 +543355,15 @@ The Dope Game: installDir: The Dope Game: {} launch: - /The Dope Game.app: + "/The Dope Game.app": - when: - os: mac store: steam - /dope: + "/dope": - when: - os: linux store: steam - /dope.exe: + "/dope.exe": - when: - os: windows store: steam @@ -541904,25 +543373,25 @@ The Doulos Study: installDir: The Doulos Study: {} launch: - /Contents/MacOS/The Doulos Study Mac: + "/Contents/MacOS/The Doulos Study Mac": - when: - os: mac store: steam - /The Doulos Study linux.x86_64: + "/The Doulos Study linux.x86_64": - when: - os: linux store: steam - /The Doulos Study.exe: + "/The Doulos Study.exe": - when: - os: windows store: steam steam: id: 1110010 -The Dragons' Twilight II: +"The Dragons' Twilight II": installDir: - The Dragons' Twilight 2: {} + "The Dragons' Twilight 2": {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -541932,15 +543401,15 @@ The Drain Collector: installDir: The Drain Collector: {} launch: - /TheDrainCollector.exe: + "/TheDrainCollector.exe": - when: - os: windows store: steam - /TheDrainCollector.x86_64: + "/TheDrainCollector.x86_64": - when: - os: linux store: steam - /macTheDrainCollector: + "/macTheDrainCollector": - when: - os: mac store: steam @@ -541950,7 +543419,7 @@ The Dreadful Whispers: installDir: The Dreadful Whispers: {} launch: - /The Dreadful Whispers.exe: + "/The Dreadful Whispers.exe": - when: - os: windows store: steam @@ -541963,12 +543432,12 @@ The Dream Collector: id: 750850 The Dream Machine: files: - /saveGames: + "/saveGames": tags: - save when: - os: windows - /saveGames/settings.txt: + "/saveGames/settings.txt": tags: - config when: @@ -541978,11 +543447,11 @@ The Dream Machine: installDir: The Dream Machine: {} launch: - /steamwrapper.exe: + "/steamwrapper.exe": - when: - os: windows store: steam - /the_dream_machine.app: + "/the_dream_machine.app": - when: - os: mac store: steam @@ -541992,21 +543461,21 @@ The Dreamatorium of Dr. Magnus 2: installDir: The Dreamatorium of Dr. Magnus 2: {} launch: - /Dreamatorium2.exe: + "/Dreamatorium2.exe": - when: - os: windows store: steam - /Dreamatorium2_amd64: + "/Dreamatorium2_amd64": - when: - bit: 64 os: linux store: steam - /Dreamatorium2_i386: + "/Dreamatorium2_i386": - when: - bit: 32 os: linux store: steam - /mac_steam.app: + "/mac_steam.app": - when: - os: mac store: steam @@ -542016,21 +543485,21 @@ The Dreamcatcher: installDir: TheDreamcatcher: {} launch: - /Dream.exe: + "/Dream.exe": - when: - os: windows store: steam steam: id: 1056590 -'The Dreamlands: Aisling''s Quest': +"The Dreamlands: Aisling's Quest": installDir: AislingQuest: {} launch: - /AislingQuest.app: + "/AislingQuest.app": - when: - os: mac store: steam - /AislingQuest.exe: + "/AislingQuest.exe": - when: - os: windows store: steam @@ -542040,7 +543509,7 @@ The Dreamlord: installDir: The Dreamlord: {} launch: - /TheDreamlord.exe: + "/TheDreamlord.exe": - when: - os: windows store: steam @@ -542050,11 +543519,11 @@ The Dreams of Candlelight: installDir: The Dreams of Candlelight: {} launch: - /Candlelight.app: + "/Candlelight.app": - when: - os: mac store: steam - /Candlelight.exe: + "/Candlelight.exe": - when: - os: windows store: steam @@ -542065,21 +543534,21 @@ The Dreamwalkers: id: 1175400 The Driver Syndicate: files: - /GameData/cfg: + "/GameData/cfg": tags: - config when: - os: windows - /SavedGames: + "/SavedGames": tags: - save when: - os: windows -The Driver's Mission: +"The Driver's Mission": installDir: - The Driver's Mission: {} + "The Driver's Mission": {} launch: - /TheDriversMission.exe: + "/TheDriversMission.exe": - when: - os: windows store: steam @@ -542087,7 +543556,7 @@ The Driver's Mission: id: 1041070 The Drone Racing League Simulator: files: - /DRL Simulator_Data/StreamingAssets/game/storage/offline/state/player/player-state.json: + "/DRL Simulator_Data/StreamingAssets/game/storage/offline/state/player/player-state.json": tags: - config when: @@ -542095,11 +543564,11 @@ The Drone Racing League Simulator: installDir: DRL Simulator: {} launch: - /DRL Simulator.app: + "/DRL Simulator.app": - when: - os: mac store: steam - /DRL Simulator.exe: + "/DRL Simulator.exe": - when: - bit: 64 os: windows @@ -542113,7 +543582,7 @@ The Drone Racing League Simulator: The Dropping of The Dead: steam: id: 691130 -'The Dukes of Hazzard: Racing for Home': +"The Dukes of Hazzard: Racing for Home": registry: HKEY_LOCAL_MACHINE/Software/WOW6432Node/SouthPeak Interactive/Dukes of Hazzard: tags: @@ -542128,11 +543597,11 @@ The Dummy Experiment: installDir: The Dummy Experiment: {} launch: - /thedummyexperiment.app: + "/thedummyexperiment.app": - when: - os: mac store: steam - /thedummyexperiment.exe: + "/thedummyexperiment.exe": - when: - os: windows store: steam @@ -542145,7 +543614,7 @@ The Dungeon Paradox: installDir: The Dungeon Paradox: {} launch: - /The Dungeon Paradox.exe: + "/The Dungeon Paradox.exe": - when: - store: steam steam: @@ -542154,7 +543623,7 @@ The Dungeon Power: installDir: The Dungeon Power: {} launch: - /dungeonpower.exe: + "/dungeonpower.exe": - when: - bit: 64 os: windows @@ -542168,15 +543637,15 @@ The Dungeon of Lulu Farea: installDir: The Dungeon of Lulu Farea: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam steam: id: 998220 -'The Dungeon of Naheulbeuk: The Amulet of Chaos': +"The Dungeon of Naheulbeuk: The Amulet of Chaos": files: - /AppData/LocalLow/Artefacts Studio/Naheulbeuk/Save: + "/AppData/LocalLow/Artefacts Studio/Naheulbeuk/Save": tags: - save when: @@ -542186,11 +543655,11 @@ The Dungeon of Lulu Farea: installDir: The Dungeon Of Naheulbeuk The Amulet Of Chaos: {} launch: - /Naheulbeuk.app/Contents/MacOS/Naheulbeuk: + "/Naheulbeuk.app/Contents/MacOS/Naheulbeuk": - when: - os: mac store: steam - /Naheulbeuk.exe: + "/Naheulbeuk.exe": - when: - bit: 64 os: windows @@ -542201,19 +543670,19 @@ The Dungeoning: installDir: The Dungeoning: {} launch: - /TheDungeoning.app: + "/TheDungeoning.app": - when: - os: mac store: steam - /TheDungeoning_107.exe: + "/TheDungeoning_107.exe": - when: - os: windows store: steam - /start.bat: + "/start.bat": - when: - os: windows store: steam - /start.sh: + "/start.sh": - when: - os: linux store: steam @@ -542223,7 +543692,7 @@ The Dungeons of Castle Madness: installDir: The Dungeons of Castle Madness: {} launch: - /DungeonsOfCastleMadness229.exe: + "/DungeonsOfCastleMadness229.exe": - when: - os: windows store: steam @@ -542236,15 +543705,15 @@ The Dwarf Run: installDir: The Dwarf Run: {} launch: - /The Dwarf Run.app: + "/The Dwarf Run.app": - when: - os: mac store: steam - /The Dwarf Run.exe: + "/The Dwarf Run.exe": - when: - os: windows store: steam - /The Dwarf Run.x86: + "/The Dwarf Run.x86": - when: - os: linux store: steam @@ -542252,17 +543721,17 @@ The Dwarf Run: id: 395420 The Dwarves: files: - /.local/share/dwarves: + "/.local/share/dwarves": tags: - config when: - os: linux - /dwarves: + "/dwarves": tags: - save when: - os: windows - /dwarves/*.cfg: + "/dwarves/*.cfg": tags: - config when: @@ -542272,16 +543741,16 @@ The Dwarves: installDir: The Dwarves: {} launch: - /Dwarves: + "/Dwarves": - when: - bit: 64 os: linux store: steam - /Dwarves.app: + "/Dwarves.app": - when: - os: mac store: steam - /Dwarves.exe: + "/Dwarves.exe": - when: - os: windows store: steam @@ -542291,15 +543760,15 @@ The Dwarves of Glistenveld: installDir: The Dwarves of Glistenveld: {} launch: - /Dwarves.sh: + "/Dwarves.sh": - when: - os: linux store: steam - /DwarvesMac.sh: + "/DwarvesMac.sh": - when: - os: mac store: steam - /The Dwarves of Glistenveld.exe: + "/The Dwarves of Glistenveld.exe": - when: - os: windows store: steam @@ -542309,30 +543778,30 @@ The Dweller: installDir: The Dweller: {} launch: - /The Dweller.exe: + "/The Dweller.exe": - when: - os: windows store: steam - /TheDweller.x86_64: + "/TheDweller.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 463930 -The Eagle's Heir: +"The Eagle's Heir": installDir: - The Eagle's Heir: {} + "The Eagle's Heir": {} launch: - /The Eagle's Heir.app/Contents/MacOS/The Eagle's Heir: + "/The Eagle's Heir.app/Contents/MacOS/The Eagle's Heir": - when: - os: mac store: steam - /TheEaglesHeir: + "/TheEaglesHeir": - when: - os: linux store: steam - /TheEaglesHeir.exe: + "/TheEaglesHeir.exe": - when: - os: windows store: steam @@ -542342,11 +543811,11 @@ The Earth Dies Screaming: installDir: The Earth Dies Screaming: {} launch: - /EDS.app: + "/EDS.app": - when: - os: mac store: steam - /nw.exe: + "/nw.exe": - when: - bit: 64 os: windows @@ -542357,15 +543826,15 @@ The East New World: installDir: The East New World: {} launch: - /tenw.app: + "/tenw.app": - when: - os: mac store: steam - /tenw.exe: + "/tenw.exe": - when: - os: windows store: steam - /tenw.x86: + "/tenw.x86": - when: - os: linux store: steam @@ -542375,7 +543844,7 @@ The Eden of Grisaia: installDir: The Eden of Grisaia: {} launch: - /Grisaia3.exe: + "/Grisaia3.exe": - when: - store: steam steam: @@ -542384,8 +543853,8 @@ The Edge Ball: installDir: TheEdgeBall: {} launch: - /TheEdgeBall.exe: - - arguments: '-windowed' + "/TheEdgeBall.exe": + - arguments: "-windowed" when: - os: windows store: steam @@ -542395,7 +543864,7 @@ The Edgelands: installDir: The Edgelands: {} launch: - /the_edgelands.exe: + "/the_edgelands.exe": - when: - os: windows store: steam @@ -542405,7 +543874,7 @@ The Eerie Adventures of Kally: installDir: The Eerie Adventures Of Kally: {} launch: - /TheEerieAdventuresOfKally.exe: + "/TheEerieAdventuresOfKally.exe": - when: - os: windows store: steam @@ -542415,7 +543884,7 @@ The Eerie Inn: installDir: The Eerie Inn: {} launch: - /TheEerieInn.exe: + "/TheEerieInn.exe": - when: - os: windows store: steam @@ -542426,11 +543895,11 @@ The Eerie Inn VR: The Eerie Inn VR: {} steam: id: 910530 -'The Egyptian Prophecy: The Fate of Ramses': +"The Egyptian Prophecy: The Fate of Ramses": installDir: The Egyptian Prophecy: {} launch: - /Egypt3.exe: + "/Egypt3.exe": - when: - os: windows store: steam @@ -542440,24 +543909,24 @@ The Eigengrau Menagerie: installDir: the_eigengrau_menagerie: {} launch: - /The Eigengrau Menagerie.app: + "/The Eigengrau Menagerie.app": - when: - os: mac store: steam - /The Eigengrau Menagerie.exe: + "/The Eigengrau Menagerie.exe": - when: - os: windows store: steam steam: id: 375090 -'The Elder Scrolls Adventures: Redguard': +"The Elder Scrolls Adventures: Redguard": files: - /SAVEGAME: + "/SAVEGAME": tags: - save when: - os: dos - /SYSTEM.INI: + "/SYSTEM.INI": tags: - config when: @@ -542471,19 +543940,19 @@ The Eigengrau Menagerie: The Elder Scrolls Adventures Redguard: {} steam: id: 1812410 -'The Elder Scrolls II: Daggerfall': +"The Elder Scrolls II: Daggerfall": files: - /ARENA2/BETAPLYR.DAT: + "/ARENA2/BETAPLYR.DAT": tags: - config when: - os: dos - /ARENA2/DAGGER.GRD: + "/ARENA2/DAGGER.GRD": tags: - config when: - os: dos - /SAVE*: + "/SAVE*": tags: - save when: @@ -542497,16 +543966,16 @@ The Eigengrau Menagerie: The Elder Scrolls Daggerfall: {} steam: id: 1812390 -'The Elder Scrolls III: Morrowind': +"The Elder Scrolls III: Morrowind": files: - /Morrowind.ini: + "/Morrowind.ini": tags: - config when: - os: windows - os: windows store: microsoft - /Saves: + "/Saves": tags: - save when: @@ -542521,23 +543990,25 @@ The Eigengrau Menagerie: installDir: Morrowind: {} launch: - /Morrowind Launcher.exe: + "/Morrowind Launcher.exe": - when: - store: steam registry: HKEY_LOCAL_MACHINE/SOFTWARE/WOW6432Node/Bethesda Softworks/Morrowind: tags: - config + when: + - store: microsoft steam: id: 22320 -'The Elder Scrolls IV: Oblivion': +"The Elder Scrolls IV: Oblivion": files: - /My Games/Oblivion: + "/My Games/Oblivion": tags: - config when: - os: windows - /My Games/Oblivion/Saves: + "/My Games/Oblivion/Saves": tags: - save when: @@ -542553,19 +544024,19 @@ The Eigengrau Menagerie: installDir: Oblivion: {} launch: - /OblivionLauncher.exe: + "/OblivionLauncher.exe": - when: - store: steam steam: id: 22330 The Elder Scrolls Online: files: - /Documents/Elder Scrolls Online/live: + "/Documents/Elder Scrolls Online/live": tags: - config when: - os: mac - /Elder Scrolls Online/live: + "/Elder Scrolls Online/live": tags: - config when: @@ -542580,24 +544051,24 @@ The Elder Scrolls Online: installDir: Zenimax Online: {} launch: - /The Elder Scrolls Online (Steam).app: + "/The Elder Scrolls Online (Steam).app": - when: - os: mac store: steam - /zosSteamStarter.exe: + "/zosSteamStarter.exe": - when: - os: windows store: steam steam: id: 306130 -'The Elder Scrolls V: Skyrim': +"The Elder Scrolls V: Skyrim": files: - /My Games/Skyrim: + "/My Games/Skyrim": tags: - config when: - os: windows - /My Games/Skyrim/Saves: + "/My Games/Skyrim/Saves": tags: - save when: @@ -542612,33 +544083,37 @@ The Elder Scrolls Online: installDir: Skyrim: {} launch: - /SkyrimLauncher.exe: + "/SkyrimLauncher.exe": - when: - store: steam steam: id: 72850 -'The Elder Scrolls V: Skyrim Special Edition': +"The Elder Scrolls V: Skyrim Special Edition": files: - /My Games/Skyrim Special Edition: + "/My Games/Skyrim Special Edition": tags: - config when: - - store: steam - /My Games/Skyrim Special Edition GOG: + - os: windows + store: steam + "/My Games/Skyrim Special Edition GOG": tags: - config when: - - store: gog - /My Games/Skyrim Special Edition GOG/Saves: + - os: windows + store: gog + "/My Games/Skyrim Special Edition GOG/Saves": tags: - save when: - - store: gog - /My Games/Skyrim Special Edition/Saves: + - os: windows + store: gog + "/My Games/Skyrim Special Edition/Saves": tags: - save when: - - store: steam + - os: windows + store: steam gog: id: 1711230643 id: @@ -542650,20 +544125,20 @@ The Elder Scrolls Online: installDir: Skyrim Special Edition: {} launch: - /SkyrimSELauncher.exe: + "/SkyrimSELauncher.exe": - when: - bit: 64 store: steam steam: id: 489830 -'The Elder Scrolls V: Skyrim VR': +"The Elder Scrolls V: Skyrim VR": files: - /My Games/Skyrim VR: + "/My Games/Skyrim VR": tags: - config when: - os: windows - /My Games/Skyrim VR/Saves: + "/My Games/Skyrim VR/Saves": tags: - save when: @@ -542672,14 +544147,14 @@ The Elder Scrolls Online: SkyrimVR: {} steam: id: 611670 -'The Elder Scrolls: Arena': +"The Elder Scrolls: Arena": files: - /*.0*: + "/*.0*": tags: - save when: - os: dos - /NAMES.DAT: + "/NAMES.DAT": tags: - save when: @@ -542690,15 +544165,15 @@ The Elder Scrolls Online: The Elder Scrolls Arena: {} steam: id: 1812290 -'The Elder Scrolls: Legends': +"The Elder Scrolls: Legends": installDir: The Elder Scrolls Legends: {} launch: - /The Elder Scrolls Legends.exe: + "/The Elder Scrolls Legends.exe": - when: - os: windows store: steam - /app.app/Contents/MacOS/app: + "/app.app/Contents/MacOS/app": - when: - os: mac store: steam @@ -542715,20 +544190,20 @@ The Electric Shocktopus: installDir: The Electric Shocktopus: {} launch: - /Shocktopus.app: + "/Shocktopus.app": - when: - os: mac store: steam - /Shocktopus.exe: + "/Shocktopus.exe": - when: - os: windows store: steam - /Shocktopus.x86: + "/Shocktopus.x86": - when: - bit: 32 os: linux store: steam - /Shocktopus.x86_64: + "/Shocktopus.x86_64": - when: - bit: 64 os: linux @@ -542739,7 +544214,7 @@ The Elemental Heart: installDir: The Elemental Heart: {} launch: - /The Elemental Heart.exe: + "/The Elemental Heart.exe": - when: - os: windows store: steam @@ -542749,21 +544224,21 @@ The Elementalist: installDir: The Elementalist: {} launch: - /The Elementalist.app/Contents/MacOS/The Elementalist: + "/The Elementalist.app/Contents/MacOS/The Elementalist": - when: - os: mac store: steam - /The Elementalist.exe: + "/The Elementalist.exe": - when: - bit: 32 os: windows store: steam - /TheElementalist.exe: + "/TheElementalist.exe": - when: - bit: 64 os: windows store: steam - /elementalist: + "/elementalist": - when: - os: linux store: steam @@ -542774,36 +544249,36 @@ The Elmian Warrior: The Elmian Warrior: {} steam: id: 667510 -'The Ember Saga: A New Fire': +"The Ember Saga: A New Fire": installDir: ANF: {} launch: - /ANF.exe: - - arguments: '--in-process-gpu' + "/ANF.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam steam: id: 498700 -'The Emerald Maiden: Symphony of Dreams': +"The Emerald Maiden: Symphony of Dreams": installDir: The Emerald Maiden: {} launch: - /EmeraldMaiden.exe: + "/EmeraldMaiden.exe": - when: - os: windows store: steam - /EmeraldMaiden_amd64: + "/EmeraldMaiden_amd64": - when: - bit: 64 os: linux store: steam - /EmeraldMaiden_i386: + "/EmeraldMaiden_i386": - when: - bit: 32 os: linux store: steam - /mac_steam.app/Contents/MacOS/mac_steam: + "/mac_steam.app/Contents/MacOS/mac_steam": - when: - os: mac store: steam @@ -542813,26 +544288,26 @@ The Emerald Tablet: installDir: The Emerald Tablet: {} launch: - /The Emerald Tablet.exe: + "/The Emerald Tablet.exe": - when: - os: windows store: steam - /theemeraldtablet.app: + "/theemeraldtablet.app": - when: - os: mac store: steam steam: id: 289060 -The Emperor's New Groove: +"The Emperor's New Groove": registry: - HKEY_LOCAL_MACHINE/SOFTWARE/WOW6432Node/Disney Interactive/Emperor's New Groove/1.0: + "HKEY_LOCAL_MACHINE/SOFTWARE/WOW6432Node/Disney Interactive/Emperor's New Groove/1.0": tags: - config -The Empire's Crisis: +"The Empire's Crisis": installDir: - The Empire's Crisis: {} + "The Empire's Crisis": {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -542842,7 +544317,7 @@ The Emptiness Deluxe Edition: installDir: The Emptiness Deluxe Edition: {} launch: - /TheEmptiness.exe: + "/TheEmptiness.exe": - when: - store: steam steam: @@ -542851,7 +544326,7 @@ The Empty Inn: installDir: The Empty Inn: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -542861,11 +544336,11 @@ The Emulator: installDir: The Emulator: {} launch: - /Mac.app: + "/Mac.app": - when: - os: mac store: steam - /TheEmulator.exe: + "/TheEmulator.exe": - when: - os: windows store: steam @@ -542873,22 +544348,22 @@ The Emulator: id: 989490 The Enchanted Cave 2: files: - /.local/share/okshur/Enchanted/ Cave/ 2/TEC2GameData.sol: + "/.local/share/okshur/Enchanted/ Cave/ 2/TEC2GameData.sol": tags: - config when: - os: linux - '/.local/share/okshur/Enchanted/ Cave/ 2/TEC2Slot[0-3].sol': + "/.local/share/okshur/Enchanted/ Cave/ 2/TEC2Slot[0-3].sol": tags: - save when: - os: linux - /okshur/Enchanted Cave 2/TEC2GameData.sol: + "/okshur/Enchanted Cave 2/TEC2GameData.sol": tags: - config when: - os: windows - '/okshur/Enchanted Cave 2/TEC2Slot[0-3].sol': + "/okshur/Enchanted Cave 2/TEC2Slot[0-3].sol": tags: - save when: @@ -542896,15 +544371,15 @@ The Enchanted Cave 2: installDir: The Enchanted Cave 2: {} launch: - /Enchanted Cave 2: + "/Enchanted Cave 2": - when: - os: linux store: steam - /Enchanted Cave 2.app: + "/Enchanted Cave 2.app": - when: - os: mac store: steam - /Enchanted Cave 2.exe: + "/Enchanted Cave 2.exe": - when: - os: windows store: steam @@ -542912,22 +544387,22 @@ The Enchanted Cave 2: id: 368610 The End Is Nigh: files: - /saves: + "/saves": tags: - save when: - os: windows - /settings.txt: + "/settings.txt": tags: - config when: - os: windows - /.local/share/The End is Nigh/settings.txt: + "/.local/share/The End is Nigh/settings.txt": tags: - config when: - os: linux - /userdata//583470/remote: + "/userdata//583470/remote": tags: - save when: @@ -542935,25 +544410,25 @@ The End Is Nigh: installDir: theendisnigh: {} launch: - /TheEndIsNigh: + "/TheEndIsNigh": - when: - os: linux store: steam - /TheEndIsNigh.app: + "/TheEndIsNigh.app": - when: - os: mac store: steam - /TheEndIsNigh.exe: + "/TheEndIsNigh.exe": - when: - os: windows store: steam steam: id: 583470 -'The End o,,,o': +"The End o,,,o": installDir: the_end_oo: {} launch: - /the_end_oo.exe: + "/the_end_oo.exe": - when: - os: windows store: steam @@ -542963,11 +544438,11 @@ The End of Dyeus: installDir: The End of Dyeus: {} launch: - /dyeus: + "/dyeus": - when: - os: linux store: steam - /dyeus.exe: + "/dyeus.exe": - when: - os: windows store: steam @@ -542977,21 +544452,21 @@ The End of an Actress: installDir: The End of an Actress: {} launch: - /The_End_of_an_Actress.exe: + "/The_End_of_an_Actress.exe": - when: - os: windows store: steam - /The_End_of_an_Actress.sh: + "/The_End_of_an_Actress.sh": - when: - os: linux store: steam steam: id: 1147760 -'The End of an Age: Fading Remnants': +"The End of an Age: Fading Remnants": installDir: The End of an Age Fading Remnants: {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: @@ -542999,11 +544474,11 @@ The End of an Actress: The End of the Sun: steam: id: 912840 -'The End: Inari''s Quest': +"The End: Inari's Quest": installDir: The End: {} launch: - /the_end_.exe: + "/the_end_.exe": - when: - os: windows store: steam @@ -543013,7 +544488,7 @@ The Endless Empty: installDir: The Endless Empty: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -543023,7 +544498,7 @@ The Endless Journey: installDir: The Endless Journey: {} launch: - /The Endless Journey.exe: + "/The Endless Journey.exe": - when: - os: windows store: steam @@ -543033,13 +544508,13 @@ The Endless Mission: installDir: The Endless Mission: {} launch: - /Endless.app: - - arguments: '-prod' + "/Endless.app": + - arguments: "-prod" when: - os: mac store: steam - /Endless.exe: - - arguments: '-prod' + "/Endless.exe": + - arguments: "-prod" when: - os: windows store: steam @@ -543047,7 +544522,7 @@ The Endless Mission: id: 827880 The Endless Stairwell: files: - /settings.cfg: + "/settings.cfg": tags: - config when: @@ -543056,7 +544531,7 @@ The Endless White: installDir: The Endless White: {} launch: - /The Endless White.exe: + "/The Endless White.exe": - when: - os: windows store: steam @@ -543071,11 +544546,11 @@ The Enigma Machine: installDir: THE ENIGMA MACHINE: {} launch: - /THE ENIGMA MACHINE.app: + "/THE ENIGMA MACHINE.app": - when: - os: mac store: steam - /THE ENIGMA MACHINE.exe: + "/THE ENIGMA MACHINE.exe": - when: - os: windows store: steam @@ -543095,7 +544570,7 @@ The Entente Gold: installDir: The Entente Gold: {} launch: - /Antanta.exe: + "/Antanta.exe": - when: - store: steam steam: @@ -543104,17 +544579,17 @@ The Enthralling Realms: installDir: The Enthralling Realms: {} launch: - /TheEnthrallingRealms.exe: + "/TheEnthrallingRealms.exe": - when: - os: windows store: steam steam: id: 859950 -'The Enthralling Realms: An Alchemist''s Tale': +"The Enthralling Realms: An Alchemist's Tale": installDir: TheEnthrallingRealms2: {} launch: - /AlchemistsTale.exe: + "/AlchemistsTale.exe": - when: - os: windows store: steam @@ -543124,11 +544599,11 @@ The Entity: installDir: The Entity: {} launch: - /The Entity Mac.app: + "/The Entity Mac.app": - when: - os: mac store: steam - /The Entity.exe: + "/The Entity.exe": - when: - os: windows store: steam @@ -543140,7 +544615,7 @@ The Entropy Centre: installDir: The Entropy Centre: {} launch: - /EntropyCentre.exe: + "/EntropyCentre.exe": - when: - os: windows store: steam @@ -543150,7 +544625,7 @@ The Epic Bang Theory: installDir: The Epic Bang Theory: {} launch: - /TEBT.exe: + "/TEBT.exe": - when: - store: steam steam: @@ -543159,11 +544634,11 @@ The Equinox Hunt: installDir: The Equinox Hunt: {} launch: - /The Equinox Hunt.exe: + "/The Equinox Hunt.exe": - when: - os: windows store: steam - /TheEquinoxHunt-Linux-Latest.x86_64: + "/TheEquinoxHunt-Linux-Latest.x86_64": - when: - os: linux store: steam @@ -543173,7 +544648,7 @@ The Escape: installDir: The Escape: {} launch: - /The Escape.exe: + "/The Escape.exe": - when: - os: windows store: steam @@ -543183,7 +544658,7 @@ The Escape (DRproject): installDir: the Escape: {} launch: - /The escape.exe: + "/The escape.exe": - when: - bit: 64 os: windows @@ -543194,20 +544669,20 @@ The Escapist: installDir: The Escapist: {} launch: - /The Escapist v1.1.app: + "/The Escapist v1.1.app": - when: - os: mac store: steam - /The Escapist v1.1.exe: + "/The Escapist v1.1.exe": - when: - os: windows store: steam - /The Escapist v1.1.x86: + "/The Escapist v1.1.x86": - when: - bit: 32 os: linux store: steam - /The Escapist v1.1.x86_64: + "/The Escapist v1.1.x86_64": - when: - bit: 64 os: linux @@ -543216,22 +544691,22 @@ The Escapist: id: 315480 The Escapists: files: - /The Escapists: + "/The Escapists": tags: - save when: - os: linux - /The Escapists/settings.cfg: + "/The Escapists/settings.cfg": tags: - config when: - os: linux - /The Escapists: + "/The Escapists": tags: - save when: - os: windows - /The Escapists/settings.cfg: + "/The Escapists/settings.cfg": tags: - config when: @@ -543241,19 +544716,19 @@ The Escapists: installDir: The Escapists: {} launch: - /Map Editor/run.sh: + "/Map Editor/run.sh": - when: - os: linux store: steam - /The Escapists.app: + "/The Escapists.app": - when: - os: mac store: steam - /TheEscapists.exe: + "/TheEscapists.exe": - when: - os: windows store: steam - /run.sh: + "/run.sh": - when: - os: linux store: steam @@ -543261,12 +544736,12 @@ The Escapists: id: 298630 The Escapists 2: files: - /AppData/LocalLow/Team 17 Digital ltd_/The Escapists 2/Saves: + "/AppData/LocalLow/Team 17 Digital ltd_/The Escapists 2/Saves": tags: - save when: - os: windows - /unity3d/Team 17 Digital ltd_/The Escapists 2/Saves: + "/unity3d/Team 17 Digital ltd_/The Escapists 2/Saves": tags: - save when: @@ -543276,20 +544751,20 @@ The Escapists 2: installDir: The Escapists 2: {} launch: - /TheEscapists2.app: + "/TheEscapists2.app": - when: - os: mac store: steam - /TheEscapists2.exe: + "/TheEscapists2.exe": - when: - os: windows store: steam - /TheEscapists2.x86: + "/TheEscapists2.x86": - when: - bit: 32 os: linux store: steam - /TheEscapists2.x86_64: + "/TheEscapists2.x86_64": - when: - bit: 64 os: linux @@ -543300,35 +544775,35 @@ The Escapists 2: - config steam: id: 641990 -'The Escapists: The Walking Dead': +"The Escapists: The Walking Dead": gog: id: 1441717336 installDir: The Escapists The Walking Dead: {} launch: - /The Escapists - The Walking Dead.app: + "/The Escapists - The Walking Dead.app": - when: - os: mac store: steam - /The Escapists - The Walking Dead.exe: + "/The Escapists - The Walking Dead.exe": - when: - os: windows store: steam - /The Escapists - The Walking Dead.x86: + "/The Escapists - The Walking Dead.x86": - when: - bit: 32 os: linux store: steam - /The Escapists - The Walking Dead.x86_64: + "/The Escapists - The Walking Dead.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 388060 -'The Esoterica: Hollow Earth': +"The Esoterica: Hollow Earth": files: - /AlawarEntertainment/AlawarStargaze/Esoterica_Hollow_Earth: + "/AlawarEntertainment/AlawarStargaze/Esoterica_Hollow_Earth": tags: - config - save @@ -543337,7 +544812,7 @@ The Escapists 2: installDir: The Esoterica Hollow Earth: {} launch: - /Esoterica_HollowEarth.exe: + "/Esoterica_HollowEarth.exe": - when: - os: windows store: steam @@ -543347,31 +544822,31 @@ The Essence Reaper Ritual: installDir: The Essence Reaper Ritual: {} launch: - /content.exe: + "/content.exe": - when: - os: windows store: steam steam: id: 674840 -'The Eternal Castle: Remastered': +"The Eternal Castle: Remastered": files: - /TEC_Project_GM2: + "/TEC_Project_GM2": tags: - save when: - os: windows installDir: - 'The Eternal Castle [REMASTERED]': {} + "The Eternal Castle [REMASTERED]": {} launch: - /ETERNAL.exe: + "/ETERNAL.exe": - when: - os: windows store: steam - '/The Eternal Castle [REMASTERED].app': + "/The Eternal Castle [REMASTERED].app": - when: - os: mac store: steam - /TheEternalCastle: + "/TheEternalCastle": - when: - bit: 64 os: linux @@ -543380,12 +544855,12 @@ The Essence Reaper Ritual: id: 963450 The Eternal Cylinder: files: - /TheEternalCylinder/Saved/Config/WindowsNoEditor: + "/TheEternalCylinder/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /TheEternalCylinder/Saved/SaveGames: + "/TheEternalCylinder/Saved/SaveGames": tags: - save when: @@ -543393,12 +544868,12 @@ The Eternal Cylinder: installDir: TheEternalCylinder: {} launch: - /TheEternalCylinder.exe: + "/TheEternalCylinder.exe": - when: - bit: 64 os: windows store: steam - - arguments: '-d3d11' + - arguments: "-d3d11" when: - bit: 64 os: windows @@ -543407,17 +544882,17 @@ The Eternal Cylinder: id: 865680 The Even More Incredible Machine: files: - /*.TIM: + "/*.TIM": tags: - save when: - os: dos - /RESOURCE.CFG: + "/RESOURCE.CFG": tags: - config when: - os: dos - /TIM.CFG: + "/TIM.CFG": tags: - save when: @@ -543428,7 +544903,7 @@ The Evil Party: installDir: The Evil Party: {} launch: - /theevilparty.exe: + "/theevilparty.exe": - when: - os: windows store: steam @@ -543436,19 +544911,19 @@ The Evil Party: id: 773230 The Evil Within: files: - /Saved Games/TangoGameworks/The Evil Within/base/savegame: + "/Saved Games/TangoGameworks/The Evil Within/base/savegame": tags: - save when: - os: windows - /Saved Games/TangoGameworks/The Evil Within/base/the evil withinConfig.cfg: + "/Saved Games/TangoGameworks/The Evil Within/base/the evil withinConfig.cfg": tags: - config when: - os: windows - os: windows store: microsoft - /Packages/BethesdaSoftworks.TheEvilWithin-PC_3275kfvn8vcwc/SystemAppData/wgs: + "/Packages/BethesdaSoftworks.TheEvilWithin-PC_3275kfvn8vcwc/SystemAppData/wgs": tags: - save when: @@ -543460,17 +544935,17 @@ The Evil Within: gogExtra: - 1237841007 - 1260430475 - - 1636306436 - - 2145506737 - - 1781874100 - 1434200125 + - 1636306436 + - 1781874100 + - 2145506737 steamExtra: - 318750 - 318751 installDir: TheEvilWithin: {} launch: - /evilwithin.exe: + "/evilwithin.exe": - when: - bit: 64 os: windows @@ -543479,22 +544954,22 @@ The Evil Within: id: 268050 The Evil Within 2: files: - /Saved Games/TangoGameworks/The Evil Within 2 (Epic)/base/savegame: + "/Saved Games/TangoGameworks/The Evil Within 2 (Epic)/base/savegame": tags: - config when: - - store: epic - /Saved Games/TangoGameworks/The Evil Within 2 (Epic)/base/the_evil_within_2Config.cfg: + - os: windows + "/Saved Games/TangoGameworks/The Evil Within 2 (Epic)/base/the_evil_within_2Config.cfg": tags: - config when: - - store: epic - /Saved Games/TangoGameworks/The Evil Within 2/base/savegame: + - os: windows + "/Saved Games/TangoGameworks/The Evil Within 2/base/savegame": tags: - save when: - os: windows - /Saved Games/TangoGameworks/The Evil Within 2/base/the_evil_within2Config.cfg: + "/Saved Games/TangoGameworks/The Evil Within 2/base/the_evil_within2Config.cfg": tags: - config when: @@ -543504,21 +544979,21 @@ The Evil Within 2: installDir: TheEvilWithin2: {} launch: - /TEW2.exe: + "/TEW2.exe": - when: - bit: 64 os: windows store: steam steam: id: 601430 -The Excavation of Hob's Barrow: +"The Excavation of Hob's Barrow": files: - /Saved Games/The Excavation of Hob's Barrow: + "/Saved Games/The Excavation of Hob's Barrow": tags: - save when: - os: windows - /Saved Games/The Excavation of Hob's Barrow/acsetup.cfg: + "/Saved Games/The Excavation of Hob's Barrow/acsetup.cfg": tags: - config when: @@ -543530,18 +545005,21 @@ The Excavation of Hob's Barrow: - 2143560 - 2143570 installDir: - The Excavation of Hob's Barrow: {} + "The Excavation of Hob's Barrow": {} launch: - /Start.sh: + "/Start.sh": - when: - bit: 32 os: linux store: steam - /TEOHB.app/Contents/MacOS/AGS: + - bit: 64 + os: linux + store: steam + "/TEOHB.app/Contents/MacOS/AGS": - when: - os: mac store: steam - /TEOHB.exe: + "/TEOHB.exe": - when: - os: windows store: steam @@ -543551,28 +545029,28 @@ The Executioner: installDir: The Executioner: {} launch: - /TheExecutioner.exe: + "/TheExecutioner.exe": - when: - os: windows store: steam steam: id: 739130 -'The Executioner: Prologue': +"The Executioner: Prologue": steam: id: 674760 The Exiled: installDir: The Exiled: {} launch: - /exiled.app/Contents/MacOS/exiled: + "/exiled.app/Contents/MacOS/exiled": - when: - os: mac store: steam - /exiled.exe: + "/exiled.exe": - when: - os: windows store: steam - /exiled.x86: + "/exiled.x86": - when: - os: linux store: steam @@ -543586,24 +545064,24 @@ The Existence Abstract: The Exorcist: steam: id: 683160 -'The Exorcist: Legion VR': +"The Exorcist: Legion VR": installDir: Exorcist Legion VR: {} steam: id: 708580 -'The Exorcist: Legion VR (Deluxe Edition)': +"The Exorcist: Legion VR (Deluxe Edition)": installDir: The Exorcist Legion VR (Deluxe Complete Series): {} steam: id: 1156250 -'The Expanse: A Telltale Series': +"The Expanse: A Telltale Series": id: steamExtra: - 2632830 installDir: Artemis: {} launch: - /Artemis.exe: + "/Artemis.exe": - when: - bit: 64 os: windows @@ -543614,7 +545092,7 @@ The Expedition: installDir: The Expedition: {} launch: - /The Expedition.exe: + "/The Expedition.exe": - when: - os: windows store: steam @@ -543622,12 +545100,12 @@ The Expedition: id: 1015240 The Expendabros: files: - /Saves/.sav: + "/Saves/.sav": tags: - save when: - os: windows - /Saves/Options.xml: + "/Saves/Options.xml": tags: - config when: @@ -543635,21 +545113,21 @@ The Expendabros: installDir: Broforce The Expendables Missions: {} launch: - /Expendabros.app: + "/Expendabros.app": - when: - os: mac store: steam - /Expendabros.exe: + "/Expendabros.exe": - when: - os: windows store: steam steam: id: 312990 -'The Experiment: Escape Room': +"The Experiment: Escape Room": installDir: TheExperimentEscapeRoom: {} launch: - /The Experiment.exe: + "/The Experiment.exe": - when: - os: windows store: steam @@ -543661,15 +545139,15 @@ The Expression Amrilato: installDir: The Expression Amrilato: {} launch: - /TheExpressionAmrilato.app: + "/TheExpressionAmrilato.app": - when: - os: mac store: steam - /TheExpressionAmrilato.exe: + "/TheExpressionAmrilato.exe": - when: - os: windows store: steam - /TheExpressionAmrilato.sh: + "/TheExpressionAmrilato.sh": - when: - os: linux store: steam @@ -543682,7 +545160,7 @@ The Eye of Borrack: installDir: The Eye of Borrack: {} launch: - /Adventure2.exe: + "/Adventure2.exe": - when: - os: windows store: steam @@ -543693,7 +545171,7 @@ The Eye of Modern Mali: id: 872140 The Eyes of Ara: files: - /AppData/LocalLow/100 Stones Interactive/The Eyes of Ara: + "/AppData/LocalLow/100 Stones Interactive/The Eyes of Ara": tags: - config - save @@ -543702,11 +545180,11 @@ The Eyes of Ara: installDir: The Eyes of Ara: {} launch: - /The Eyes of Ara.app: + "/The Eyes of Ara.app": - when: - os: mac store: steam - /The Eyes of Ara.exe: + "/The Eyes of Ara.exe": - when: - os: windows store: steam @@ -543718,43 +545196,43 @@ The Eyes of Ara: id: 454250 The F.A. Premier League Football Manager 2000: files: - /games: + "/games": tags: - save when: - os: windows - /setup: + "/setup": tags: - config when: - os: windows The F.A. Premier League Football Manager 2001: files: - /games: + "/games": tags: - save when: - os: windows - /setup: + "/setup": tags: - config when: - os: windows The F.A. Premier League Football Manager 99: files: - /games: + "/games": tags: - save when: - os: windows The F.A. Premier League Manager 2002: files: - /games: + "/games": tags: - save when: - os: windows - /setup: + "/setup": tags: - config when: @@ -543768,7 +545246,7 @@ The Fabled Woods: installDir: The Fabled Woods: {} launch: - /TheFabledWoods.exe: + "/TheFabledWoods.exe": - when: - os: windows store: steam @@ -543779,7 +545257,7 @@ The Fabulous Fear Machine: id: 1354195656 steam: id: 1540350 -'The Face of Hope: Underground': +"The Face of Hope: Underground": steam: id: 545280 The Faceless Double: @@ -543789,27 +545267,27 @@ The Facility: installDir: The Facility: {} launch: - /thefacility.exe: + "/thefacility.exe": - when: - os: windows store: steam steam: id: 394960 -'The Faery Tale Adventure: Book I': +"The Faery Tale Adventure: Book I": files: - /*.FAE: + "/*.FAE": tags: - save when: - os: dos The Falconeer: files: - /AppData/LocalLow/WiredProductions/TheFalconeer/save.dat: + "/AppData/LocalLow/WiredProductions/TheFalconeer/save.dat": tags: - save when: - os: windows - /AppData/LocalLow/WiredProductions/TheFalconeer/settings.dat: + "/AppData/LocalLow/WiredProductions/TheFalconeer/settings.dat": tags: - config when: @@ -543819,32 +545297,32 @@ The Falconeer: installDir: TheFalconeer: {} launch: - /TheFalconeer.exe: + "/TheFalconeer.exe": - when: - os: windows store: steam - /TheFalconeer.x86_64: + "/TheFalconeer.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 1135260 -'The Falconers: Moonlight': +"The Falconers: Moonlight": gog: id: 1300178735 installDir: The Falconers Moonlight: {} launch: - /moonlight.app/Contents/MacOS/moonlight: + "/moonlight.app/Contents/MacOS/moonlight": - when: - os: mac store: steam - /moonlight.exe: + "/moonlight.exe": - when: - os: windows store: steam - /moonlight.sh: + "/moonlight.sh": - when: - os: linux store: steam @@ -543852,22 +545330,22 @@ The Falconeer: id: 589480 The Fall: files: - /.config/unity3d/Over The Moon/The Fall/TheFallSavedData.txt: + "/.config/unity3d/Over The Moon/The Fall/TheFallSavedData.txt": tags: - save when: - os: linux - /.config/unity3d/Over/ The/ Moon/The/ Fall/prefs: + "/.config/unity3d/Over/ The/ Moon/The/ Fall/prefs": tags: - config when: - os: linux - /AppData/LocalLow/Over The Moon/The Fall/TheFallSavedData.txt: + "/AppData/LocalLow/Over The Moon/The Fall/TheFallSavedData.txt": tags: - save when: - os: windows - /Library/Preferences/unity.Over/ The/ Moon.The/ Fall.plist: + "/Library/Preferences/unity.Over/ The/ Moon.The/ Fall.plist": tags: - config when: @@ -543877,15 +545355,15 @@ The Fall: installDir: TheFall: {} launch: - /TheFall.app: + "/TheFall.app": - when: - os: mac store: steam - /TheFall.exe: + "/TheFall.exe": - when: - os: windows store: steam - /TheFall.x86: + "/TheFall.x86": - when: - os: linux store: steam @@ -543895,9 +545373,9 @@ The Fall: - config steam: id: 290770 -'The Fall Part 2: Unbound': +"The Fall Part 2: Unbound": files: - /AppData/LocalLow/Over The Moon/TheFallPart2Unbound: + "/AppData/LocalLow/Over The Moon/TheFallPart2Unbound": tags: - save when: @@ -543907,15 +545385,15 @@ The Fall: installDir: The Fall Part 2 Unbound: {} launch: - /TheFallPart2Unbound.app: + "/TheFallPart2Unbound.app": - when: - os: mac store: steam - /TheFallPart2Unbound.exe: + "/TheFallPart2Unbound.exe": - when: - os: windows store: steam - /TheFallPart2Unbound.x86: + "/TheFallPart2Unbound.x86": - when: - os: linux store: steam @@ -543927,12 +545405,12 @@ The Fall: id: 510490 The Fall of Lazarus: files: - /TheFallofLazarus/Saved/Config/WindowsNoEditor: + "/TheFallofLazarus/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /TheFallofLazarus/Saved/SaveGames: + "/TheFallofLazarus/Saved/SaveGames": tags: - save when: @@ -543940,7 +545418,7 @@ The Fall of Lazarus: installDir: The Fall of Lazarus: {} launch: - /Lazarus.exe: + "/Lazarus.exe": - when: - bit: 64 os: windows @@ -543949,7 +545427,7 @@ The Fall of Lazarus: id: 622010 The Fall of the Dungeon Guardians: files: - /unity3d/Mana Games/DungeonGuardians/Saves: + "/unity3d/Mana Games/DungeonGuardians/Saves": tags: - save when: @@ -543962,29 +545440,29 @@ The Fall of the Dungeon Guardians: installDir: The Fall of the Dungeon Guardians: {} launch: - /DungeonGuardians.exe: + "/DungeonGuardians.exe": - when: - os: windows store: steam - /The Fall of the Dungeon Guardians.app: + "/The Fall of the Dungeon Guardians.app": - when: - os: mac store: steam - /The Fall of the Dungeon Guardians.x86: + "/The Fall of the Dungeon Guardians.x86": - when: - bit: 32 os: linux store: steam - /The Fall of the Dungeon Guardians.x86_64: + "/The Fall of the Dungeon Guardians.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 409450 -'The Fall: Last Days of Gaia': +"The Fall: Last Days of Gaia": files: - /Silver Style Entertainment/The Fall - Last Days of Gaia/savegames: + "/Silver Style Entertainment/The Fall - Last Days of Gaia/savegames": tags: - save when: @@ -543993,7 +545471,7 @@ The Fallen Kingdom: installDir: The Fallen Kingdom: {} launch: - /Version 1.0.6.exe: + "/Version 1.0.6.exe": - when: - os: windows store: steam @@ -544001,12 +545479,12 @@ The Fallen Kingdom: id: 503530 The Falling Nights: files: - /The_Falling_Nights/Saved/Config/WindowsNoEditor: + "/The_Falling_Nights/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /The_Falling_Nights/Saved/SaveGames: + "/The_Falling_Nights/Saved/SaveGames": tags: - save when: @@ -544014,7 +545492,7 @@ The Falling Nights: installDir: The Falling Nights: {} launch: - /The_Falling_Nights.exe: + "/The_Falling_Nights.exe": - when: - os: windows store: steam @@ -544024,7 +545502,7 @@ The Falling Sun: installDir: The Falling Sun: {} launch: - /The Falling Sun.exe: + "/The Falling Sun.exe": - when: - os: windows store: steam @@ -544042,7 +545520,7 @@ The Fan: installDir: The Fan: {} launch: - /TheFan.exe: + "/TheFan.exe": - when: - os: windows store: steam @@ -544052,59 +545530,59 @@ The Far Frontier: installDir: The Far Frontier: {} launch: - /TheFarFrontier.app: + "/TheFarFrontier.app": - when: - os: mac store: steam - /TheFarFrontier.exe: + "/TheFarFrontier.exe": - when: - os: windows store: steam - /TheFarFrontier.x86_64: + "/TheFarFrontier.x86_64": - when: - os: linux store: steam steam: id: 612510 -'The Far Kingdoms: Awakening Solitaire': +"The Far Kingdoms: Awakening Solitaire": installDir: The Far Kingdoms Awakening Solitaire: {} launch: - /AwakeningSolitaire.exe: + "/AwakeningSolitaire.exe": - when: - os: windows store: steam steam: id: 1034240 -'The Far Kingdoms: Elements': +"The Far Kingdoms: Elements": installDir: The Far Kingdoms Elements: {} launch: - /The Far Kingdoms Elements.exe: + "/The Far Kingdoms Elements.exe": - when: - os: windows store: steam steam: id: 1002280 -'The Far Kingdoms: Sacred Grove Solitaire': +"The Far Kingdoms: Sacred Grove Solitaire": installDir: Sacred Grove Solitaire: {} launch: - /SacredGroveSolitaire.exe: + "/SacredGroveSolitaire.exe": - when: - os: windows store: steam steam: id: 1034260 -'The Far Rings: A Space Opera Visual Novella': +"The Far Rings: A Space Opera Visual Novella": installDir: The Far Rings A Space Opera Visual Novella: {} launch: - /TheFarRings.app: + "/TheFarRings.app": - when: - os: mac store: steam - /TheFarRings.exe: + "/TheFarRings.exe": - when: - os: windows store: steam @@ -544128,7 +545606,7 @@ The Feast: installDir: The Feast: {} launch: - /The Feast.exe: + "/The Feast.exe": - when: - store: steam steam: @@ -544137,7 +545615,7 @@ The Federal Rescue: installDir: TheFederalRescue: {} launch: - /The Federal Rescue.exe: + "/The Federal Rescue.exe": - when: - os: windows store: steam @@ -544149,15 +545627,15 @@ The Feeble Files: installDir: TheFeebleFiles: {} launch: - /launch_game_linux-voiceonly.sh: + "/launch_game_linux-voiceonly.sh": - when: - os: linux store: steam - /launch_game_mac-voiceonly.sh: + "/launch_game_mac-voiceonly.sh": - when: - os: mac store: steam - /launch_game_win-voiceonly.bat: + "/launch_game_win-voiceonly.bat": - when: - os: windows store: steam @@ -544169,18 +545647,18 @@ The Fermi Paradox: installDir: The Fermi Paradox: {} launch: - /The Fermi Paradox.exe: + "/The Fermi Paradox.exe": - when: - bit: 64 os: windows store: steam steam: id: 1543150 -'The Feud: Wild West Tactics': +"The Feud: Wild West Tactics": installDir: The Feud: {} launch: - /Feud.exe: + "/Feud.exe": - when: - os: windows store: steam @@ -544190,11 +545668,11 @@ The Few: installDir: TheFew: {} launch: - /The Few.exe: + "/The Few.exe": - when: - os: windows store: steam - /TheFew.app: + "/TheFew.app": - when: - os: mac store: steam @@ -544202,12 +545680,12 @@ The Few: id: 300320 The Fidelio Incident: files: - /TheFidelioIncident/Saved/Config/WindowsNoEditor: + "/TheFidelioIncident/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /TheFidelioIncident/Saved/SaveGames: + "/TheFidelioIncident/Saved/SaveGames": tags: - save when: @@ -544215,26 +545693,26 @@ The Fidelio Incident: installDir: The Fidelio Incident: {} launch: - /TheFidelioIncident.exe: + "/TheFidelioIncident.exe": - when: - bit: 64 os: windows store: steam steam: id: 632070 -The Fielder's Choice: +"The Fielder's Choice": installDir: The Fielder’s Choice: {} launch: - /The Fielders Choice.app/Contents/MacOS/The Fielders Choice: + "/The Fielders Choice.app/Contents/MacOS/The Fielders Choice": - when: - os: mac store: steam - /TheFieldersChoice: + "/TheFieldersChoice": - when: - os: linux store: steam - /TheFieldersChoice.exe: + "/TheFieldersChoice.exe": - when: - os: windows store: steam @@ -544244,11 +545722,11 @@ The Fifth Day: installDir: The Fifth Day: {} launch: - /TheFifthDay.app: + "/TheFifthDay.app": - when: - os: mac store: steam - /TheFifthDay.exe: + "/TheFifthDay.exe": - when: - os: windows store: steam @@ -544258,11 +545736,11 @@ The Fifth Expedition: installDir: The Fifth Expedition: {} launch: - /TheFifthExpedition.exe: + "/TheFifthExpedition.exe": - when: - os: windows store: steam - /TheFifthExpedition.x86: + "/TheFifthExpedition.x86": - when: - os: linux store: steam @@ -544272,8 +545750,8 @@ The Fifth Horseman: installDir: The Fifth Horseman: {} launch: - /nw.exe: - - arguments: '--in-process-gpu' + "/nw.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam @@ -544283,7 +545761,7 @@ The Filmmaker - A Text Adventure: installDir: The Filmmaker - A Text Adventure: {} launch: - /The Filmmaker Steam.exe: + "/The Filmmaker Steam.exe": - when: - store: steam steam: @@ -544294,14 +545772,12 @@ The Final Battle: installDir: thefinalbattle: {} launch: - /dosbox_windows/dosbox.exe: - - arguments: >- - .\\dosbox_windows\\dosbox -conf \"dosbox_the_final_battle.conf\" -exit ^ -c \"mount c ..\\thefinalbattle\" ^ - -c \"c:\" ^ -c \"TFB.exe /e\" -noconsole -fullscreen -exit ^ + "/dosbox_windows/dosbox.exe": + - arguments: ".\\\\dosbox_windows\\\\dosbox -conf \\\"dosbox_the_final_battle.conf\\\" -exit ^ -c \\\"mount c ..\\\\thefinalbattle\\\" ^ -c \\\"c:\\\" ^ -c \\\"TFB.exe /e\\\" -noconsole -fullscreen -exit ^" when: - os: windows store: steam - /runthefinalbattle.sh: + "/runthefinalbattle.sh": - when: - os: linux store: steam @@ -544311,43 +545787,43 @@ The Final Boss: installDir: The Final Boss: {} launch: - /TheFinalBoss: + "/TheFinalBoss": - when: - os: linux store: steam - /TheFinalBoss.app/Contents/MacOS/Mac_Runner: + "/TheFinalBoss.app/Contents/MacOS/Mac_Runner": - when: - os: mac store: steam - /TheFinalBoss.exe: + "/TheFinalBoss.exe": - when: - os: windows store: steam steam: id: 1049670 -'The Final Days: Blood Dawn': +"The Final Days: Blood Dawn": installDir: The Final Days Blood Dawn: {} launch: - /Blood_Dawn/The Final Days_ Blood Dawn.exe: + "/Blood_Dawn/The Final Days_ Blood Dawn.exe": - when: - store: steam steam: id: 810700 -'The Final Days: Eternal Night': +"The Final Days: Eternal Night": installDir: The Final Days Eternal Night: {} launch: - /EternalNight.exe: + "/EternalNight.exe": - when: - store: steam steam: id: 696050 -'The Final Days: I''m Still Alive': +"The Final Days: I'm Still Alive": installDir: - The Final Days I'm Still Alive: {} + "The Final Days I'm Still Alive": {} launch: - /Survive This_ I'm Still Alive!.exe: + "/Survive This_ I'm Still Alive!.exe": - when: - os: windows store: steam @@ -544357,7 +545833,7 @@ The Final Earth 2: installDir: The_Final_Earth_2: {} launch: - /the-final-earth-2.exe: + "/the-final-earth-2.exe": - when: - store: steam steam: @@ -544365,7 +545841,7 @@ The Final Earth 2: The Final Frontier: steam: id: 711590 -'The Final Frontier: Space Simulator': +"The Final Frontier: Space Simulator": steam: id: 416140 The Final Image: @@ -544373,11 +545849,11 @@ The Final Image: The Final Image: {} steam: id: 1083400 -'The Final Specimen: Arrival': +"The Final Specimen: Arrival": installDir: The Final Specimen Arrival: {} launch: - /TFSA.exe: + "/TFSA.exe": - when: - os: windows store: steam @@ -544386,11 +545862,11 @@ The Final Image: The Final Stand: steam: id: 296750 -'The Final Stand: Breakout': +"The Final Stand: Breakout": installDir: The Final Stand Breakout: {} launch: - /TFSB.exe: + "/TFSB.exe": - when: - os: windows store: steam @@ -544398,7 +545874,7 @@ The Final Stand: id: 1215980 The Final Station: files: - /AppData/LocalLow/DoMyBest/TheFinalStation: + "/AppData/LocalLow/DoMyBest/TheFinalStation": tags: - save when: @@ -544408,15 +545884,15 @@ The Final Station: installDir: TheFinalStation: {} launch: - /TheFinalStation.app: + "/TheFinalStation.app": - when: - os: mac store: steam - /TheFinalStation.exe: + "/TheFinalStation.exe": - when: - os: windows store: steam - /TheFinalStation.run: + "/TheFinalStation.run": - when: - os: linux store: steam @@ -544430,15 +545906,15 @@ The Final Take: installDir: FinalTake: {} launch: - /FinalTake.app: + "/FinalTake.app": - when: - os: mac store: steam - /FinalTake.exe: + "/FinalTake.exe": - when: - os: windows store: steam - /FinalTake.x86: + "/FinalTake.x86": - when: - os: linux store: steam @@ -544446,12 +545922,12 @@ The Final Take: id: 400510 The Finals: files: - /Discovery/Saved/Config/WindowsClient: + "/Discovery/Saved/Config/WindowsClient": tags: - config when: - os: windows - /Discovery/Saved/SaveGames: + "/Discovery/Saved/SaveGames": tags: - save when: @@ -544467,7 +545943,7 @@ The Firlyn Stones: installDir: The_Firlyn_Stones: {} launch: - /windows_content/The_Firlyn_Stones/TFS_Multiplayer.exe: + "/windows_content/The_Firlyn_Stones/TFS_Multiplayer.exe": - when: - os: windows store: steam @@ -544482,7 +545958,7 @@ The First Day: installDir: First Day: {} launch: - /TheFirstDay.exe: + "/TheFirstDay.exe": - when: - os: windows store: steam @@ -544490,7 +545966,7 @@ The First Day: id: 1084420 The First Descendant: files: - /M1/Saved/Config/Windows: + "/M1/Saved/Config/Windows": tags: - config when: @@ -544501,7 +545977,7 @@ The First Men: installDir: The First Men: {} launch: - /tfm.exe: + "/tfm.exe": - when: - os: windows store: steam @@ -544516,7 +545992,7 @@ The First Samurai (2021): installDir: First Samurai: {} launch: - /first samurai.exe: + "/first samurai.exe": - when: - os: windows store: steam @@ -544527,7 +546003,7 @@ The First Spark: id: 488200 The First Templar: files: - /The First Templar: + "/The First Templar": tags: - save when: @@ -544537,7 +546013,7 @@ The First Templar: installDir: The First Templar: {} launch: - /TFT.exe: + "/TFT.exe": - when: - store: steam steam: @@ -544546,11 +546022,11 @@ The First Thrust of God: installDir: The first thrust of God: {} launch: - /The first thrust of God.app: + "/The first thrust of God.app": - when: - os: mac store: steam - /The first thrust of God.exe: + "/The first thrust of God.exe": - when: - os: windows store: steam @@ -544560,8 +546036,9 @@ The First Time I Died: installDir: The First Time I Died: {} launch: - /Game.exe: + "/Game.exe": - when: + - store: steam - os: windows store: steam steam: @@ -544570,7 +546047,7 @@ The First Track: installDir: The First Track: {} launch: - /The First Track.exe: + "/The First Track.exe": - when: - os: windows store: steam @@ -544578,17 +546055,17 @@ The First Track: id: 1005730 The First Tree: files: - /AppData/LocalLow/David Wehle/The First Tree/Save.txt: + "/AppData/LocalLow/David Wehle/The First Tree/Save.txt": tags: - save when: - os: windows - /unity3d/David Wehle/The First Tree: + "/unity3d/David Wehle/The First Tree": tags: - config when: - os: linux - /unity3d/David Wehle/The First Tree/Save.txt: + "/unity3d/David Wehle/The First Tree/Save.txt": tags: - save when: @@ -544598,15 +546075,15 @@ The First Tree: installDir: The First Tree: {} launch: - /TheFirstTree.app: + "/TheFirstTree.app": - when: - os: mac store: steam - /TheFirstTree.exe: + "/TheFirstTree.exe": - when: - os: windows store: steam - /TheFirstTree.x86_64: + "/TheFirstTree.x86_64": - when: - bit: 64 os: linux @@ -544621,7 +546098,7 @@ The Fisherman - Fishing Planet: installDir: The Fisherman - Fishing Planet: {} launch: - /FishingPlanet.exe: + "/FishingPlanet.exe": - when: - bit: 64 os: windows @@ -544632,11 +546109,11 @@ The Fishing Club 3D: installDir: The Fishing Club 3D: {} launch: - /The Fishing Club 3D.app: + "/The Fishing Club 3D.app": - when: - os: mac store: steam - /The Fishing Club 3D.exe: + "/The Fishing Club 3D.exe": - when: - os: windows store: steam @@ -544644,12 +546121,12 @@ The Fishing Club 3D: id: 522230 The Five Cores Remastered: files: - /AppData/Local/T5CR/Saved/Config: + "/AppData/Local/T5CR/Saved/Config": tags: - config when: - os: windows - /AppData/Local/T5CR/Saved/SaveGames: + "/AppData/Local/T5CR/Saved/SaveGames": tags: - save when: @@ -544657,16 +546134,16 @@ The Five Cores Remastered: installDir: The Five Cores Remastered: {} launch: - /T5CR.app/Contents/MacOS/T5CR: + "/T5CR.app/Contents/MacOS/T5CR": - when: - os: mac store: steam - /T5CR.exe: + "/T5CR.exe": - when: - bit: 64 os: windows store: steam - /T5CR.sh: + "/T5CR.sh": - when: - bit: 64 os: linux @@ -544675,12 +546152,12 @@ The Five Cores Remastered: id: 1002410 The Flame in the Flood: files: - /RiverGame/Saved/Config/WindowsNoEditor: + "/RiverGame/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /RiverGame/Saved/SaveGames: + "/RiverGame/Saved/SaveGames": tags: - save when: @@ -544690,26 +546167,26 @@ The Flame in the Flood: installDir: FlameInTheFlood: {} launch: - /RiverGame.app: - - arguments: '-pak' + "/RiverGame.app": + - arguments: "-pak" when: - os: mac store: steam - /RiverGame.exe: + "/RiverGame.exe": - when: - bit: 64 os: windows store: steam steam: id: 318600 -'The Flawless: Art''s Tale': +"The Flawless: Art's Tale": steam: id: 748320 The Flaws of Gravity: installDir: The Flaws of Gravity: {} launch: - /current_build/FoG.exe: + "/current_build/FoG.exe": - when: - os: windows store: steam @@ -544719,15 +546196,15 @@ The Fleet: installDir: The Fleet: {} launch: - /The Fleet.app/Contents/MacOS/The Fleet: + "/The Fleet.app/Contents/MacOS/The Fleet": - when: - os: mac store: steam - /TheFleet: + "/TheFleet": - when: - os: linux store: steam - /TheFleet.exe: + "/TheFleet.exe": - when: - os: windows store: steam @@ -544737,7 +546214,7 @@ The Fleets of Sol: installDir: The Fleets of Sol: {} launch: - /Binaries/Win32/TheFleetsOfSol.exe: + "/Binaries/Win32/TheFleetsOfSol.exe": - when: - store: steam steam: @@ -544746,7 +546223,7 @@ The Flesh God: installDir: TheFleshGod: {} launch: - /TheFleshGod.exe: + "/TheFleshGod.exe": - when: - os: windows store: steam @@ -544756,7 +546233,7 @@ The Flight of Dowran: installDir: The Flight Of Dowran: {} launch: - /The Fly of Dowran.exe: + "/The Fly of Dowran.exe": - when: - store: steam steam: @@ -544765,20 +546242,20 @@ The Flock: installDir: TheFlock: {} launch: - /flock.app: + "/flock.app": - when: - os: mac store: steam - /flock.exe: + "/flock.exe": - when: - os: windows store: steam - /flock.x86: + "/flock.x86": - when: - bit: 32 os: linux store: steam - /flock.x86_64: + "/flock.x86_64": - when: - bit: 64 os: linux @@ -544789,25 +546266,25 @@ The Flood: installDir: The Flood: {} launch: - /The Flood.exe: - - arguments: '-show-screen-selector' + "/The Flood.exe": + - arguments: "-show-screen-selector" when: - os: windows store: steam - /TheFlood_Linux.x86: - - arguments: '-show-screen-selector' + "/TheFlood_Linux.x86": + - arguments: "-show-screen-selector" when: - bit: 32 os: linux store: steam - /TheFlood_Linux.x86_64: - - arguments: '-show-screen-selector' + "/TheFlood_Linux.x86_64": + - arguments: "-show-screen-selector" when: - bit: 64 os: linux store: steam - /TheFlood_Mac.app: - - arguments: '-show-screen-selector' + "/TheFlood_Mac.app": + - arguments: "-show-screen-selector" when: - os: mac store: steam @@ -544823,7 +546300,7 @@ The Floor Is Really Cheap Lava: installDir: The Floor Is Really Cheap Lava: {} launch: - /The Floor Is Really Cheap Lava.exe: + "/The Floor Is Really Cheap Lava.exe": - when: - store: steam steam: @@ -544832,19 +546309,14 @@ The Floor Is Still Really Cheap Lava: installDir: The Floor Is Still Really Cheap Lava: {} launch: - /The Floor Is Still Really Cheap Lava.exe: + "/The Floor Is Still Really Cheap Lava.exe": - when: - store: steam steam: id: 1189060 The Floor is Jelly: files: - /TheFloorIsJelly/Local Store: - tags: - - save - when: - - os: windows - /jelly/Local Store: + "/TheFloorIsJelly/Local Store": tags: - save when: @@ -544852,11 +546324,11 @@ The Floor is Jelly: installDir: TheFloorIsJelly: {} launch: - /jelly.app: + "/jelly.app": - when: - os: mac store: steam - /jelly.exe: + "/jelly.exe": - when: - os: windows store: steam @@ -544868,44 +546340,44 @@ The Flower Collectors: installDir: TheFlowerCollectors: {} launch: - /TheFlowerCollectors.exe: + "/TheFlowerCollectors.exe": - when: - bit: 64 os: windows store: steam steam: id: 1034750 -'The Flower Shop: Summer in Fairbrook': +"The Flower Shop: Summer in Fairbrook": installDir: FlowerShopSIF: {} launch: - /Summer In Fairbrook.app: + "/Summer In Fairbrook.app": - when: - os: mac store: steam - /Summer In Fairbrook.exe: + "/Summer In Fairbrook.exe": - when: - os: windows store: steam - /Summer In Fairbrook.sh: + "/Summer In Fairbrook.sh": - when: - os: linux store: steam steam: id: 290990 -'The Flower Shop: Winter in Fairbrook': +"The Flower Shop: Winter in Fairbrook": installDir: Flower Shop Winter In Fairbrook: {} launch: - /Winter In Fairbrook.app: + "/Winter In Fairbrook.app": - when: - os: mac store: steam - /Winter In Fairbrook.exe: + "/Winter In Fairbrook.exe": - when: - os: windows store: steam - /Winter In Fairbrook.sh: + "/Winter In Fairbrook.sh": - when: - os: linux store: steam @@ -544915,7 +546387,7 @@ The Flying Dutchman: installDir: The Flying Dutchman: {} launch: - /TheFlyingDutchman.exe: + "/TheFlyingDutchman.exe": - when: - store: steam steam: @@ -544924,7 +546396,7 @@ The Flying Turtle Jewel Quest: installDir: The Flying Turtle Jewel Quest: {} launch: - /The Flying Turtle Jewel Quest.exe: + "/The Flying Turtle Jewel Quest.exe": - when: - os: windows store: steam @@ -544934,7 +546406,7 @@ The Fog: installDir: The Fog: {} launch: - /The Fog.exe: + "/The Fog.exe": - when: - os: windows store: steam @@ -544944,25 +546416,25 @@ The Fog Knows Your Name: installDir: Fog Knows Your Name: {} launch: - /FogKnowsYourName: + "/FogKnowsYourName": - when: - os: linux store: steam - /FogKnowsYourName.exe: + "/FogKnowsYourName.exe": - when: - os: windows store: steam - /The Fog Knows Your Name.app/Contents/MacOS/The Fog Knows Your Name: + "/The Fog Knows Your Name.app/Contents/MacOS/The Fog Knows Your Name": - when: - os: mac store: steam steam: id: 1166600 -'The Fog: Trap for Moths': +"The Fog: Trap for Moths": installDir: The Fog Trap for Moths: {} launch: - /TheFog.exe: + "/TheFog.exe": - when: - os: windows store: steam @@ -544972,15 +546444,15 @@ The Food Run: installDir: The Food Run: {} launch: - /The Food Run/The Food Run.app: + "/The Food Run/The Food Run.app": - when: - os: mac store: steam - /The Food Run/The Food Run.exe: + "/The Food Run/The Food Run.exe": - when: - os: windows store: steam - /The Food Run/The Food Run.x86_64: + "/The Food Run/The Food Run.x86_64": - when: - os: linux store: steam @@ -544990,7 +546462,7 @@ The Fool: installDir: The Fool: {} launch: - /TheFool.exe: + "/TheFool.exe": - when: - store: steam steam: @@ -544999,11 +546471,11 @@ The Forbidden Arts: installDir: The Forbidden Arts: {} launch: - /The Forbidden Arts.app: + "/The Forbidden Arts.app": - when: - os: mac store: steam - /The Forbidden Arts.exe: + "/The Forbidden Arts.exe": - when: - os: windows store: steam @@ -545011,7 +546483,7 @@ The Forbidden Arts: id: 735060 The Forest: files: - /AppData/LocalLow/SKS/TheForest: + "/AppData/LocalLow/SKS/TheForest": tags: - save when: @@ -545019,11 +546491,11 @@ The Forest: installDir: The Forest: {} launch: - /TheForest.exe: + "/TheForest.exe": - when: - os: windows store: steam - /TheForest32.exe: + "/TheForest32.exe": - when: - bit: 32 store: steam @@ -545037,7 +546509,7 @@ The Forest Below: installDir: The Forest Below: {} launch: - /ForestBelow.exe: + "/ForestBelow.exe": - when: - os: windows store: steam @@ -545051,7 +546523,7 @@ The Forest Quartet: installDir: The Forest Quartet: {} launch: - /The Forest Quartet.exe: + "/The Forest Quartet.exe": - when: - store: steam registry: @@ -545063,7 +546535,7 @@ The Forest Quartet: id: 1620720 The Forest of Doom: files: - /Documents: + "/Documents": tags: - save when: @@ -545071,27 +546543,27 @@ The Forest of Doom: installDir: The Forest of Doom: {} launch: - /The Forest of Doom.app: + "/The Forest of Doom.app": - when: - bit: 64 os: mac store: steam - /The Forest of Doom.exe: + "/The Forest of Doom.exe": - when: - os: windows store: steam - /The Forest of Doom.x86: + "/The Forest of Doom.x86": - when: - bit: 32 os: linux store: steam - /The Forest of Doom.x86_64: + "/The Forest of Doom.x86_64": - when: - bit: 64 os: linux store: steam registry: - 'HKEY_CURRENT_USER/Software/Tin Man Games/FF: FoD': + "HKEY_CURRENT_USER/Software/Tin Man Games/FF: FoD": tags: - config steam: @@ -545100,7 +546572,7 @@ The Forestale: installDir: TheForestale: {} launch: - /TheForestale.exe: + "/TheForestale.exe": - when: - os: windows store: steam @@ -545111,17 +546583,17 @@ The Forge Arena: id: 780110 The Forgettable Dungeon: files: - /base/client: + "/base/client": tags: - config when: - os: windows - /base/data/save: + "/base/data/save": tags: - save when: - os: windows - /base/server: + "/base/server": tags: - config when: @@ -545129,7 +546601,7 @@ The Forgettable Dungeon: installDir: ForgettableDungeon: {} launch: - /ForgettableDungeon.exe: + "/ForgettableDungeon.exe": - when: - os: windows store: steam @@ -545139,7 +546611,7 @@ The Forgotten: installDir: The Forgotten: {} launch: - /The Forgotten.exe: + "/The Forgotten.exe": - when: - os: windows store: steam @@ -545147,23 +546619,23 @@ The Forgotten: id: 1126640 The Forgotten City: files: - /ModernStoryteller01/Saved/Config/WindowsNoEditor: + "/ModernStoryteller01/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /ModernStoryteller01/Saved/SaveGames: + "/ModernStoryteller01/Saved/SaveGames": tags: - save when: - os: windows - /Packages/PlugInDigital.TheForgottenCity_9e3ank8rmgj0t/LocalCache/Local/ModernStoryteller01/Saved/Config/WinGDK: + "/Packages/PlugInDigital.TheForgottenCity_9e3ank8rmgj0t/LocalCache/Local/ModernStoryteller01/Saved/Config/WinGDK": tags: - config when: - os: windows store: microsoft - /Packages/PlugInDigital.TheForgottenCity_9e3ank8rmgj0t/SystemAppData/wgs: + "/Packages/PlugInDigital.TheForgottenCity_9e3ank8rmgj0t/SystemAppData/wgs": tags: - save when: @@ -545181,7 +546653,7 @@ The Forgotten City: installDir: The Forgotten City: {} launch: - /ModernStoryteller01.exe: + "/ModernStoryteller01.exe": - when: - os: windows store: steam @@ -545191,7 +546663,7 @@ The Forgotten Forest: installDir: The Forgotten Forest: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -545201,11 +546673,11 @@ The Forgotten Land: installDir: The Forgotten Land: {} launch: - /The Forgotten Land.app: + "/The Forgotten Land.app": - when: - os: mac store: steam - /The Forgotten Land.exe: + "/The Forgotten Land.exe": - when: - os: windows store: steam @@ -545215,14 +546687,16 @@ The Forgotten Ones: installDir: tfo: {} launch: - /hl2.exe: - - arguments: '-game tfo -steam' + "/hl2.exe": + - arguments: "-game tfo -steam" when: - os: windows store: steam - /hl2.sh: - - arguments: '-game tfo -steam' + "/hl2.sh": + - arguments: "-game tfo -steam" when: + - os: mac + store: steam - os: linux store: steam steam: @@ -545234,7 +546708,7 @@ The Forgotten Void: installDir: The Forgotten Void: {} launch: - /The Forgotten Void.exe: + "/The Forgotten Void.exe": - when: - os: windows store: steam @@ -545242,12 +546716,12 @@ The Forgotten Void: id: 600290 The Fortress of Dr. Radiaki: files: - /RADIAKI.CFG: + "/RADIAKI.CFG": tags: - config when: - os: dos - /SAVE: + "/SAVE": tags: - save when: @@ -545256,11 +546730,13 @@ The Four Colour Theorem: installDir: The Four Colour Theorem: {} launch: - /TheFourColourTheorem: + "/TheFourColourTheorem": - when: + - os: mac + store: steam - os: linux store: steam - /TheFourColourTheorem.exe: + "/TheFourColourTheorem.exe": - when: - os: windows store: steam @@ -545270,11 +546746,11 @@ The Four Kings Casino and Slots: installDir: The Four Kings Casino and Slots: {} launch: - /The Four Kings Casino and Slots.app/Contents/MacOS/The Four Kings Casino and Slots: + "/The Four Kings Casino and Slots.app/Contents/MacOS/The Four Kings Casino and Slots": - when: - os: mac store: steam - /The Four Kings Casino and Slots.exe: + "/The Four Kings Casino and Slots.exe": - when: - os: windows store: steam @@ -545284,7 +546760,7 @@ The Fragment: installDir: The Fragment: {} launch: - /The Fragment.exe: + "/The Fragment.exe": - when: - store: steam steam: @@ -545296,7 +546772,7 @@ The Francy Droo & Friends Collection: id: 734890 The Franz Kafka Videogame: files: - /Daedalic Entertainment GmbH/The Franz Kafka Videogame: + "/Daedalic Entertainment GmbH/The Franz Kafka Videogame": tags: - config - save @@ -545305,7 +546781,7 @@ The Franz Kafka Videogame: installDir: The Franz Kafka Videogame: {} launch: - /kafka.exe: + "/kafka.exe": - when: - os: windows store: steam @@ -545313,12 +546789,12 @@ The Franz Kafka Videogame: id: 392280 The Free Ones: files: - /AppData/LocalLow/Farsky Interactive/The Free Ones/*.sav: + "/AppData/LocalLow/Farsky Interactive/The Free Ones/*.sav": tags: - save when: - os: windows - /AppData/LocalLow/Farsky Interactive/The Free Ones/settings.dat: + "/AppData/LocalLow/Farsky Interactive/The Free Ones/settings.dat": tags: - config when: @@ -545326,26 +546802,26 @@ The Free Ones: installDir: The Free Ones: {} launch: - /TheFreeOnes_Linux.x86: + "/TheFreeOnes_Linux.x86": - when: - bit: 32 os: linux store: steam - /TheFreeOnes_Linux.x86_64: + "/TheFreeOnes_Linux.x86_64": - when: - bit: 64 os: linux store: steam - /TheFreeOnes_Mac.app: + "/TheFreeOnes_Mac.app": - when: - os: mac store: steam - /TheFreeOnes_Windows32.exe: + "/TheFreeOnes_Windows32.exe": - when: - bit: 32 os: windows store: steam - /TheFreeOnes_Windows64.exe: + "/TheFreeOnes_Windows64.exe": - when: - bit: 64 os: windows @@ -545358,7 +546834,7 @@ The Free Ones: id: 670350 The Friends of Ringo Ishikawa: files: - /the_friends_of_ringo_ishikawa: + "/the_friends_of_ringo_ishikawa": tags: - config - save @@ -545369,11 +546845,11 @@ The Friends of Ringo Ishikawa: installDir: The friends of Ringo Ishikawa: {} launch: - /The_friends_of_Ringo_Ishikawa.app/Contents/MacOS/Mac_Runner: + "/The_friends_of_Ringo_Ishikawa.app/Contents/MacOS/Mac_Runner": - when: - os: mac store: steam - /the friends of ringo ishikawa.exe: + "/the friends of ringo ishikawa.exe": - when: - os: windows store: steam @@ -545383,8 +546859,8 @@ The Front of Greed: installDir: The Front of Greed: {} launch: - /Binaries/Win32/Greed.exe: - - arguments: '-SEEKFREELOADINGPCCONSOLE' + "/Binaries/Win32/Greed.exe": + - arguments: "-SEEKFREELOADINGPCCONSOLE" when: - os: windows store: steam @@ -545394,7 +546870,7 @@ The Frontier: installDir: The Frontier: {} launch: - /TheFrontier.exe: + "/TheFrontier.exe": - when: - os: windows store: steam @@ -545409,12 +546885,12 @@ The Frost: installDir: The Frost: {} launch: - /bin/win_x64/Launcher.exe: + "/bin/win_x64/Launcher.exe": - when: - bit: 64 os: windows store: steam - /bin/win_x86/Launcher.exe: + "/bin/win_x86/Launcher.exe": - when: - bit: 32 os: windows @@ -545423,7 +546899,7 @@ The Frost: id: 622540 The Frostrune: files: - /AppData/LocalLow/Grimnir AS/The Frostrune/save_slot_1.txt: + "/AppData/LocalLow/Grimnir AS/The Frostrune/save_slot_1.txt": tags: - save when: @@ -545431,11 +546907,11 @@ The Frostrune: installDir: The Frostrune: {} launch: - /The Frostrune.app/Contents/MacOS/The Frostrune: + "/The Frostrune.app/Contents/MacOS/The Frostrune": - when: - os: mac store: steam - /The Frostrune.exe: + "/The Frostrune.exe": - when: - os: windows store: steam @@ -545449,7 +546925,7 @@ The Frosty Leaves: installDir: TheFrostyLeaves: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -545457,22 +546933,22 @@ The Frosty Leaves: id: 794950 The Fruit of Grisaia: files: - /Frontwing/The Fruit of Grisaia Unrated Version/*.dat: + "/Frontwing/The Fruit of Grisaia Unrated Version/*.dat": tags: - save when: - os: windows - /Frontwing/The Fruit of Grisaia Unrated Version/setup.xml: + "/Frontwing/The Fruit of Grisaia Unrated Version/setup.xml": tags: - config when: - os: windows - /Frontwing/The Fruit of Grisaia/*.dat: + "/Frontwing/The Fruit of Grisaia/*.dat": tags: - save when: - os: windows - /Frontwing/The Fruit of Grisaia/setup.xml: + "/Frontwing/The Fruit of Grisaia/setup.xml": tags: - config when: @@ -545480,7 +546956,7 @@ The Fruit of Grisaia: installDir: The Fruit of Grisaia: {} launch: - /GrisaiaLauncher.exe: + "/GrisaiaLauncher.exe": - when: - store: steam steam: @@ -545489,7 +546965,7 @@ The Fruitless Flower: installDir: TheFruitlessFlower: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -545502,12 +546978,12 @@ The Futanati: installDir: The Futanati: {} launch: - /TheFutanati-32.exe: + "/TheFutanati-32.exe": - when: - bit: 32 os: windows store: steam - /TheFutanati.exe: + "/TheFutanati.exe": - when: - bit: 64 os: windows @@ -545520,18 +546996,18 @@ The Gadget Twins: installDir: The Gadget Twins: {} launch: - /gadget twins.exe: + "/gadget twins.exe": - when: - os: windows store: steam steam: id: 1136090 -'The Gallery - Episode 1: Call of the Starseed': +"The Gallery - Episode 1: Call of the Starseed": installDir: The Gallery Call of the Starseed: {} steam: id: 270130 -'The Gallery - Episode 2: Heart of the Emberstone': +"The Gallery - Episode 2: Heart of the Emberstone": installDir: The Gallery - Episode 2 Heart of the Emberstone: {} steam: @@ -545540,7 +547016,7 @@ The Game We All Have To Play: installDir: The Game We All Have To Play: {} launch: - /The Game We All Have To Play.exe: + "/The Game We All Have To Play.exe": - when: - os: windows store: steam @@ -545553,19 +547029,19 @@ The Game of Life (2013): installDir: The Game of Life: {} launch: - /The Game of Life.exe: + "/The Game of Life.exe": - when: - store: steam steam: id: 224700 The Game of Life - The Official 2016 Edition: files: - /configdata: + "/configdata": tags: - config when: - store: steam - /savedata: + "/savedata": tags: - save when: @@ -545573,11 +547049,11 @@ The Game of Life - The Official 2016 Edition: installDir: THE GAME OF LIFE - The Official 2016 Edition: {} launch: - /TheGameOfLife.app: + "/TheGameOfLife.app": - when: - os: mac store: steam - /TheGameOfLife.exe: + "/TheGameOfLife.exe": - when: - os: windows store: steam @@ -545585,7 +547061,7 @@ The Game of Life - The Official 2016 Edition: id: 403120 The Game of Life 2: files: - /AppData/LocalLow/Marmalade Game Studio/Game Of Life 2: + "/AppData/LocalLow/Marmalade Game Studio/Game Of Life 2": tags: - save when: @@ -545593,7 +547069,7 @@ The Game of Life 2: installDir: The Game of Life 2: {} launch: - /GameOfLife2.exe: + "/GameOfLife2.exe": - when: - os: windows store: steam @@ -545603,34 +547079,34 @@ The Gamer Challenge: installDir: The Gamer Challenge: {} launch: - /TGC.app: + "/TGC.app": - when: - os: mac store: steam - /TGC.exe: + "/TGC.exe": - when: - os: windows store: steam - /TGC.x86: + "/TGC.x86": - when: - bit: 32 os: linux store: steam - /TGC.x86_64: + "/TGC.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 671460 -'The Games: Winter Challenge': +"The Games: Winter Challenge": files: - /*.RP?: + "/*.RP?": tags: - save when: - os: dos - /*.WGL: + "/*.WGL": tags: - save when: @@ -545641,7 +547117,7 @@ The Gameshow: installDir: The Gameshow: {} launch: - /TheGameshow.exe: + "/TheGameshow.exe": - when: - os: windows store: steam @@ -545654,7 +547130,7 @@ The Garden: installDir: The Garden: {} launch: - /TheGarden.exe: + "/TheGarden.exe": - when: - os: windows store: steam @@ -545664,7 +547140,7 @@ The Garden Pub: installDir: The Garden Pub: {} launch: - /The Garden Pub.exe: + "/The Garden Pub.exe": - when: - os: windows store: steam @@ -545672,17 +547148,17 @@ The Garden Pub: id: 1056480 The Gardens Between: files: - /.config/unity3d/The Voxel Agents/The Gardens Between: + "/.config/unity3d/The Voxel Agents/The Gardens Between": tags: - save when: - os: linux - /Library/Preferences/com.thevoxelagents.thegardensbetween.mac.plist: + "/Library/Preferences/com.thevoxelagents.thegardensbetween.mac.plist": tags: - save when: - os: mac - /Packages/40632TheVoxelAgents.147198BA2FF5B_h7sr7gn9kt1nj/SystemAppData/wgs: + "/Packages/40632TheVoxelAgents.147198BA2FF5B_h7sr7gn9kt1nj/SystemAppData/wgs": tags: - save when: @@ -545691,20 +547167,20 @@ The Gardens Between: installDir: The Gardens Between: {} launch: - /TheGardensBetween.app/Contents/MacOS/TheGardensBetween: + "/TheGardensBetween.app/Contents/MacOS/TheGardensBetween": - when: - os: mac store: steam - /TheGardensBetween.exe: + "/TheGardensBetween.exe": - when: - os: windows store: steam - /TheGardensBetween.x86: + "/TheGardensBetween.x86": - when: - bit: 32 os: linux store: steam - /TheGardensBetween.x86_64: + "/TheGardensBetween.x86_64": - when: - bit: 64 os: linux @@ -545719,15 +547195,15 @@ The Gate: installDir: The Gate: {} launch: - /The Gate: + "/The Gate": - when: - os: linux store: steam - /The Gate.app: + "/The Gate.app": - when: - os: mac store: steam - /The Gate.exe: + "/The Gate.exe": - when: - os: windows store: steam @@ -545739,11 +547215,11 @@ The Gateway Trilogy: installDir: The Gateway Trilogy: {} launch: - /gateway.app: + "/gateway.app": - when: - os: mac store: steam - /steamwrapper.exe: + "/steamwrapper.exe": - when: - os: windows store: steam @@ -545753,7 +547229,7 @@ The General Retreats: installDir: The-General-Retreats: {} launch: - /GeneralRetreats.bat: + "/GeneralRetreats.bat": - when: - bit: 64 os: windows @@ -545762,7 +547238,7 @@ The General Retreats: id: 863120 The Genesis Project: files: - /The Genesis Project/The Genesis Project_Data/StreamingAssets/SaveData: + "/The Genesis Project/The Genesis Project_Data/StreamingAssets/SaveData": tags: - save when: @@ -545770,16 +547246,16 @@ The Genesis Project: installDir: The Genesis Project: {} launch: - /The Genesis Project: + "/The Genesis Project": - when: - os: linux store: steam - /The Genesis Project.app/Contents/MacOS/The Genesis Project: + "/The Genesis Project.app/Contents/MacOS/The Genesis Project": - arguments: The Genesis Project.app/Contents/MacOS when: - os: mac store: steam - /The Genesis Project.exe: + "/The Genesis Project.exe": - when: - os: windows store: steam @@ -545789,22 +547265,22 @@ The Geology Game: installDir: The Geology Game: {} launch: - /geogame_en32.exe: + "/geogame_en32.exe": - when: - bit: 32 os: windows store: steam - /geogame_en32.run: + "/geogame_en32.run": - when: - bit: 32 os: linux store: steam - /geogame_en64.exe: + "/geogame_en64.exe": - when: - bit: 64 os: windows store: steam - /geogame_en64.run: + "/geogame_en64.run": - when: - bit: 64 os: linux @@ -545815,29 +547291,29 @@ The Ghost of Joe Papp: installDir: JOE_PAPP: {} launch: - /TheGhostofJoePapp.app/Contents/MacOS/TheGhostofJoePapp: + "/TheGhostofJoePapp.app/Contents/MacOS/TheGhostofJoePapp": - when: - os: mac store: steam - /TheGhostofJoePapp.exe: + "/TheGhostofJoePapp.exe": - when: - os: windows store: steam - /TheGhostofJoePapp.sh: + "/TheGhostofJoePapp.sh": - when: - os: linux store: steam steam: id: 696310 -'The Ghost of Joe Papp: 101 Ways To Kill Writer''s Block': +"The Ghost of Joe Papp: 101 Ways To Kill Writer's Block": installDir: JOE_PAPP_2: {} launch: - /TheGhostofJoePapp2.exe: + "/TheGhostofJoePapp2.exe": - when: - os: windows store: steam - /TheGhostofJoePapp2.sh: + "/TheGhostofJoePapp2.sh": - when: - os: linux store: steam @@ -545847,7 +547323,7 @@ The Ghost of You: installDir: The Ghost of You: {} launch: - /TheGhostofYou.exe: + "/TheGhostofYou.exe": - when: - os: windows store: steam @@ -545857,11 +547333,11 @@ The Ghosts of Hackney Mills: installDir: The Ghosts of Hackney Mills: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam - /nwjs.app: + "/nwjs.app": - when: - os: mac store: steam @@ -545871,26 +547347,26 @@ The Girl and the Robot: installDir: TheGirlAndTheRobot: {} launch: - /LINUX/GirlAndRobot.x86: + "/LINUX/GirlAndRobot.x86": - when: - bit: 32 os: linux store: steam - /LINUX/GirlAndRobot.x86_64: + "/LINUX/GirlAndRobot.x86_64": - when: - bit: 64 os: linux store: steam - /MAC/GirlAndRobot.app: + "/MAC/GirlAndRobot.app": - when: - os: mac store: steam - /WINDOWS(64BITS)/GirlAndRobot.exe: + "/WINDOWS(64BITS)/GirlAndRobot.exe": - when: - bit: 64 os: windows store: steam - /WINDOWS/GirlAndRobot.exe: + "/WINDOWS/GirlAndRobot.exe": - when: - bit: 32 os: windows @@ -545901,15 +547377,15 @@ The Girl on the Train: installDir: The Girl on the Train: {} launch: - /The_Girl_On_The_Train.app: + "/The_Girl_On_The_Train.app": - when: - os: mac store: steam - /The_Girl_On_The_Train.exe: + "/The_Girl_On_The_Train.exe": - when: - os: windows store: steam - /The_Girl_On_The_Train.sh: + "/The_Girl_On_The_Train.sh": - when: - os: linux store: steam @@ -545925,12 +547401,12 @@ The Gladhollow Nasties: id: 1209870 The Gladiators of Rome: files: - /DATA: + "/DATA": tags: - save when: - os: windows -'The Gleam: VR Escape the Room': +"The Gleam: VR Escape the Room": installDir: The Gleam VR Escape the Room: {} steam: @@ -545939,7 +547415,7 @@ The Glow: installDir: The Glow: {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: @@ -545948,12 +547424,12 @@ The GoD Unit: installDir: The GoD Unit: {} launch: - /TheGoDUnit.exe: + "/TheGoDUnit.exe": - when: - bit: 64 os: windows store: steam - /TheGoDUnit.sh: + "/TheGoDUnit.sh": - when: - bit: 64 os: linux @@ -545964,7 +547440,7 @@ The Goatman: installDir: The Goatman: {} launch: - /The Goatman.exe: + "/The Goatman.exe": - when: - os: windows store: steam @@ -545974,15 +547450,15 @@ The God: installDir: The God: {} launch: - /TheGod_Linux_Steam/TheGod/TheGod.x86: + "/TheGod_Linux_Steam/TheGod/TheGod.x86": - when: - os: linux store: steam - /TheGod_OSX_Steam/TheGod.app/Contents/MacOS/TheGod: + "/TheGod_OSX_Steam/TheGod.app/Contents/MacOS/TheGod": - when: - os: mac store: steam - /TheGod_PC_Steam/TheGod/TheGod.exe: + "/TheGod_PC_Steam/TheGod/TheGod.exe": - when: - os: windows store: steam @@ -545992,35 +547468,35 @@ The God Paradox: installDir: The God Paradox: {} launch: - /TheGodParadox.app: + "/TheGodParadox.app": - when: - os: mac store: steam - /TheGodParadox.exe: + "/TheGodParadox.exe": - when: - os: windows store: steam steam: id: 636330 -The God's Chain: +"The God's Chain": installDir: - The God's Chain: {} + "The God's Chain": {} launch: - /The God's Chain (Linux).x86: + "/The God's Chain (Linux).x86": - when: - bit: 32 os: linux store: steam - /The God's Chain (Linux).x86_64: + "/The God's Chain (Linux).x86_64": - when: - bit: 64 os: linux store: steam - /The God's Chain - Windows PC.exe: + "/The God's Chain - Windows PC.exe": - when: - os: windows store: steam - /The God's Chain(Mac OSX).app/Contents/MacOS/The God's Chain(Mac OSX): + "/The God's Chain(Mac OSX).app/Contents/MacOS/The God's Chain(Mac OSX)": - when: - os: mac store: steam @@ -546030,7 +547506,7 @@ The Godbeast: installDir: The Godbeast: {} launch: - /tg1.exe: + "/tg1.exe": - when: - os: windows store: steam @@ -546038,12 +547514,12 @@ The Godbeast: id: 736470 The Godfather II: files: - /EA Games/The Godfather™ II: + "/EA Games/The Godfather™ II": tags: - save when: - os: windows - /EA Games/The Godfather™ II: + "/EA Games/The Godfather™ II": tags: - config when: @@ -546051,22 +547527,22 @@ The Godfather II: installDir: Godfather 2: {} launch: - /Support/EA Help/Electronic_Arts_Technical_Support.htm: + "/Support/EA Help/Electronic_Arts_Technical_Support.htm": - when: - store: steam - /godfather2.exe: + "/godfather2.exe": - when: - store: steam steam: id: 24830 -'The Godfather: The Game': +"The Godfather: The Game": files: - /GF/SG: + "/GF/SG": tags: - save when: - os: windows - /GF/settings.ini: + "/GF/settings.ini": tags: - config when: @@ -546074,10 +547550,10 @@ The Godfather II: installDir: The Godfather: {} launch: - /Support/EA Help/Electronic_Arts_Technical_Support.htm: + "/Support/EA Help/Electronic_Arts_Technical_Support.htm": - when: - store: steam - /The Godfather The Game.exe: + "/The Godfather The Game.exe": - when: - store: steam registry: @@ -546090,7 +547566,7 @@ The Golden Compass: installDir: The Golden Compass: {} launch: - /compassw32.exe: + "/compassw32.exe": - when: - store: steam steam: @@ -546099,12 +547575,12 @@ The Golf Club: installDir: TheGolfClub: {} launch: - /golf.exe: + "/golf.exe": - arguments: Server=AWS when: - os: windows store: steam - - arguments: '-show-screen-selector Server=AWS' + - arguments: "-show-screen-selector Server=AWS" when: - os: windows store: steam @@ -546114,12 +547590,12 @@ The Golf Club 2: installDir: TheGolfClub2: {} launch: - /golf.exe: + "/golf.exe": - arguments: Server=AWS when: - os: windows store: steam - - arguments: '-show-screen-selector Server=AWS' + - arguments: "-show-screen-selector Server=AWS" when: - store: steam steam: @@ -546128,7 +547604,7 @@ The Golf Club 2019 featuring PGA Tour: installDir: The Golf Club™ 2019 Featuring PGA TOUR: {} launch: - /golf.exe: + "/golf.exe": - when: - os: windows store: steam @@ -546139,9 +547615,9 @@ The Golf Club VR: The Golf Club VR: {} steam: id: 489600 -'The Golf Pro 2: Wentworth Edition': +"The Golf Pro 2: Wentworth Edition": files: - /saved: + "/saved": tags: - save when: @@ -546150,11 +547626,11 @@ The Good Life: installDir: The Good Life: {} launch: - /TGL.app: + "/TGL.app": - when: - os: mac store: steam - /TGL.exe: + "/TGL.exe": - when: - os: windows store: steam @@ -546162,7 +547638,7 @@ The Good Life: id: 293340 The Good Life (2021): files: - /Packages/ActiveGamingMediaInc.TheGoodLife_4tj796bhrrsp0: + "/Packages/ActiveGamingMediaInc.TheGoodLife_4tj796bhrrsp0": tags: - config - save @@ -546172,7 +547648,7 @@ The Good Life (2021): installDir: The Good Life: {} launch: - /StandaloneWindows64.exe: + "/StandaloneWindows64.exe": - when: - os: windows store: steam @@ -546182,11 +547658,11 @@ The Good Time Garden: installDir: The Good Time Garden: {} launch: - /The Good Time Garden.exe: + "/The Good Time Garden.exe": - when: - os: windows store: steam - /mac_content/The Good Time Garden v1.1 (Mac).app: + "/mac_content/The Good Time Garden v1.1 (Mac).app": - when: - os: mac store: steam @@ -546196,11 +547672,11 @@ The Goracle: installDir: The Goracle: {} launch: - /Game.app: + "/Game.app": - when: - os: mac store: steam - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -546213,12 +547689,12 @@ The Governor: id: 1109350 The Grand Ball: files: - /The_Grand_Ball_tyrano_data.sav: + "/The_Grand_Ball_tyrano_data.sav": tags: - save when: - os: windows - /data/system/Config.tjs: + "/data/system/Config.tjs": tags: - config when: @@ -546226,12 +547702,12 @@ The Grand Ball: installDir: The Grand Ball: {} launch: - /nw.exe: - - arguments: '--in-process-gpu' + "/nw.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam - /nwjs.app: + "/nwjs.app": - when: - os: mac store: steam @@ -546241,7 +547717,7 @@ The Grand Block Odyssey - Chapter 1: installDir: Crew 167 - The Grand Block Odyssey: {} launch: - /GrandBlockOdyssey.exe: + "/GrandBlockOdyssey.exe": - when: - os: windows store: steam @@ -546264,11 +547740,11 @@ The Grandfather: installDir: The Grandfather: {} launch: - /The Grandfather Mac.app: + "/The Grandfather Mac.app": - when: - os: mac store: steam - /The Grandfather.exe: + "/The Grandfather.exe": - when: - os: windows store: steam @@ -546278,7 +547754,7 @@ The Grandmaster: installDir: The Grandmaster: {} launch: - /The Grandmaster.exe: + "/The Grandmaster.exe": - when: - bit: 64 os: windows @@ -546289,16 +547765,16 @@ The Grave Digger: installDir: The Grave Digger: {} launch: - /TheGraveDigger.exe: + "/TheGraveDigger.exe": - when: - os: windows store: steam - /TheGraveDigger.x86: + "/TheGraveDigger.x86": - when: - bit: 32 os: linux store: steam - /TheGraveDigger.x86_64: + "/TheGraveDigger.x86_64": - when: - bit: 64 os: linux @@ -546309,20 +547785,20 @@ The Graveyard: installDir: The Graveyard: {} launch: - /The Graveyard.app: + "/The Graveyard.app": - when: - os: mac store: steam - /TheGraveyard.exe: + "/TheGraveyard.exe": - when: - os: windows store: steam - /TheGraveyard.x86: + "/TheGraveyard.x86": - when: - bit: 32 os: linux store: steam - /TheGraveyard.x86_64: + "/TheGraveyard.x86_64": - when: - bit: 64 os: linux @@ -546331,12 +547807,12 @@ The Graveyard: id: 27020 The Great Ace Attorney Chronicles: files: - /*.ini: + "/*.ini": tags: - config when: - os: windows - /userdata//1158850/remote: + "/userdata//1158850/remote": tags: - save when: @@ -546345,7 +547821,7 @@ The Great Ace Attorney Chronicles: installDir: TGAAC: {} launch: - /TGAAC.exe: + "/TGAAC.exe": - when: - os: windows store: steam @@ -546355,7 +547831,7 @@ The Great Art Race: installDir: The Great Art Race: {} launch: - /TGAR.exe: + "/TGAR.exe": - when: - store: steam steam: @@ -546374,11 +547850,11 @@ The Great C: The Great C: {} steam: id: 841460 -'The Great Empire: Relic of Egypt': +"The Great Empire: Relic of Egypt": installDir: The Great Empire Relic of Egypt: {} launch: - /The Great Empire Relic of Egypt.exe: + "/The Great Empire Relic of Egypt.exe": - when: - os: windows store: steam @@ -546388,7 +547864,7 @@ The Great Emu War: installDir: The Great Emu War: {} launch: - /TheGreatEmuWars.exe: + "/TheGreatEmuWars.exe": - when: - bit: 64 os: windows @@ -546399,7 +547875,7 @@ The Great Emu War Of 1932: installDir: The Great Emu War Of 1932: {} launch: - /TheWarOf1932.exe: + "/TheWarOf1932.exe": - when: - os: windows store: steam @@ -546409,7 +547885,7 @@ The Great Escape: installDir: The Great Escape: {} launch: - /dosbox.exe: + "/dosbox.exe": - when: - os: windows store: steam @@ -546424,7 +547900,7 @@ The Great Escape (2016): installDir: TheGreatEscape: {} launch: - /theGreatEscape.exe: + "/theGreatEscape.exe": - when: - os: windows store: steam @@ -546434,7 +547910,7 @@ The Great Fantasy Struggle: installDir: The Great Fantasy Struggle: {} launch: - /FantasyStruggle.exe: + "/FantasyStruggle.exe": - when: - store: steam steam: @@ -546443,20 +547919,20 @@ The Great Fusion: installDir: The Great Fusion: {} launch: - /The Great Fusion.app: + "/The Great Fusion.app": - when: - os: mac store: steam - /The Great Fusion.exe: + "/The Great Fusion.exe": - when: - os: windows store: steam - /The Great Fusion.x86: + "/The Great Fusion.x86": - when: - bit: 32 os: linux store: steam - /The Great Fusion.x86_64: + "/The Great Fusion.x86_64": - when: - bit: 64 os: linux @@ -546467,22 +547943,22 @@ The Great Gaias: installDir: The Great Gaias: {} launch: - /Game.app/Contents/MacOS/nwjs: + "/Game.app/Contents/MacOS/nwjs": - when: - os: mac store: steam - /nw.exe: + "/nw.exe": - when: - bit: 64 os: windows store: steam steam: id: 818610 -'The Great Gatsby: Secret Treasure': +"The Great Gatsby: Secret Treasure": installDir: TheGreatGatsby: {} launch: - /GatsbyWin32.exe: + "/GatsbyWin32.exe": - when: - bit: 32 os: windows @@ -546493,29 +547969,29 @@ The Great Geometric Multiverse Tour: installDir: The Great Geometric Multiverse Tour: {} launch: - /The Great Geometric Multiverse Tour.app: + "/The Great Geometric Multiverse Tour.app": - when: - os: mac store: steam - /The Great Geometric Multiverse Tour.exe: + "/The Great Geometric Multiverse Tour.exe": - when: - os: windows store: steam - /The Great Geometric Multiverse Tour.x86_64: + "/The Great Geometric Multiverse Tour.x86_64": - when: - os: linux store: steam steam: id: 887400 -'The Great Jitters: Pudding Panic': +"The Great Jitters: Pudding Panic": installDir: PuddingPanic: {} launch: - /PuddingPanic.app: + "/PuddingPanic.app": - when: - os: mac store: steam - /PuddingPanic.exe: + "/PuddingPanic.exe": - when: - os: windows store: steam @@ -546525,7 +548001,7 @@ The Great Mushroom Hunt: installDir: The Great Mushroom Hunt: {} launch: - /MushroomHunt.exe: + "/MushroomHunt.exe": - when: - os: windows store: steam @@ -546533,22 +548009,22 @@ The Great Mushroom Hunt: id: 1012120 The Great Perhaps: files: - /Daedalic Entertainment GmbH/TheGreatPerhaps: + "/Daedalic Entertainment GmbH/TheGreatPerhaps": tags: - config when: - os: windows - /Daedalic Entertainment GmbH/TheGreatPerhaps/Saves: + "/Daedalic Entertainment GmbH/TheGreatPerhaps/Saves": tags: - save when: - os: windows - /Daedalic Entertainment GmbH/TheGreatPerhaps/*.json: + "/Daedalic Entertainment GmbH/TheGreatPerhaps/*.json": tags: - config when: - os: linux - /Daedalic Entertainment GmbH/TheGreatPerhaps/Saves: + "/Daedalic Entertainment GmbH/TheGreatPerhaps/Saves": tags: - save when: @@ -546558,16 +548034,16 @@ The Great Perhaps: installDir: The Great Perhaps: {} launch: - /TheGreatPerhaps.app: + "/TheGreatPerhaps.app": - when: - os: mac store: steam - /TheGreatPerhaps.exe: + "/TheGreatPerhaps.exe": - when: - bit: 64 os: windows store: steam - /TheGreatPerhaps.x86_64: + "/TheGreatPerhaps.x86_64": - when: - bit: 64 os: linux @@ -546578,7 +548054,7 @@ The Great Race: installDir: The Great Race: {} launch: - /RaceNChase.exe: + "/RaceNChase.exe": - when: - bit: 64 os: windows @@ -546589,7 +548065,7 @@ The Great Story of a Mighty Hero - Remastered: installDir: The Great Story of a Mighty Hero - Remastered: {} launch: - /GSMH-R.exe: + "/GSMH-R.exe": - when: - os: windows store: steam @@ -546599,15 +548075,15 @@ The Great Tournament: installDir: The Great Tournament: {} launch: - /The Great Tournament.app/Contents/MacOS/The Great Tournament: + "/The Great Tournament.app/Contents/MacOS/The Great Tournament": - when: - os: mac store: steam - /TheGreatTournament: + "/TheGreatTournament": - when: - os: linux store: steam - /TheGreatTournament.exe: + "/TheGreatTournament.exe": - when: - os: windows store: steam @@ -546617,15 +548093,15 @@ The Great Tournament 2: installDir: The Great Tournament 2: {} launch: - /The Great Tournament 2.app/Contents/MacOS/The Great Tournament 2: + "/The Great Tournament 2.app/Contents/MacOS/The Great Tournament 2": - when: - os: mac store: steam - /TheGreatTournament2: + "/TheGreatTournament2": - when: - os: linux store: steam - /TheGreatTournament2.exe: + "/TheGreatTournament2.exe": - when: - os: windows store: steam @@ -546635,11 +548111,11 @@ The Great Voyage - Visual Novel: installDir: The Great Voyage: {} launch: - /TheGreatVoyage.app/Contents/MacOS/TheGreatVoyage: + "/TheGreatVoyage.app/Contents/MacOS/TheGreatVoyage": - when: - os: mac store: steam - /TheGreatVoyage.exe: + "/TheGreatVoyage.exe": - when: - os: windows store: steam @@ -546649,24 +548125,24 @@ The Great War 1918: installDir: Company of Heroes Relaunch: {} launch: - /tgw1918.bat: + "/tgw1918.bat": - when: - os: windows store: steam - /tgw1918dev.bat: + "/tgw1918dev.bat": - when: - os: windows store: steam steam: id: 314420 -'The Great War: Western Front': +"The Great War: Western Front": files: - /Data: + "/Data": tags: - config when: - os: windows - /Petroglyph/TheGreatWar/Save: + "/Petroglyph/TheGreatWar/Save": tags: - save when: @@ -546677,7 +548153,7 @@ The Great War 1918: installDir: TheGreatWar: {} launch: - /ClientLauncherG64.exe: + "/ClientLauncherG64.exe": - arguments: DUMP_MINI IGNOREASSERTS when: - bit: 64 @@ -546693,20 +548169,20 @@ The Great Whale Road: installDir: The Great Whale Road: {} launch: - /greatwhaleroad.app/Contents/MacOS/greatwhaleroad: + "/greatwhaleroad.app/Contents/MacOS/greatwhaleroad": - when: - os: mac store: steam - /greatwhaleroad.exe: + "/greatwhaleroad.exe": - when: - os: windows store: steam - /greatwhaleroad.x86: + "/greatwhaleroad.x86": - when: - bit: 32 os: linux store: steam - /greatwhaleroad.x86_64: + "/greatwhaleroad.x86_64": - when: - bit: 64 os: linux @@ -546717,7 +548193,7 @@ The Great Wobo Escape: installDir: The Great Wobo Escape: {} launch: - /tgwe_steam.exe: + "/tgwe_steam.exe": - when: - bit: 64 os: windows @@ -546728,7 +548204,7 @@ The Greater Good: installDir: The Greater Good: {} launch: - /The Greater Good.exe: + "/The Greater Good.exe": - when: - os: windows store: steam @@ -546736,7 +548212,7 @@ The Greater Good: id: 899960 The Greatest Penguin Heist of All Time: files: - /AppData/LocalLow/FishSoft/Penguin Heist: + "/AppData/LocalLow/FishSoft/Penguin Heist": tags: - config - save @@ -546745,16 +548221,16 @@ The Greatest Penguin Heist of All Time: installDir: The Greatest Penguin Heist of All Time: {} launch: - /Penguin Heist.app/Contents/MacOS/Penguin Heist: + "/Penguin Heist.app/Contents/MacOS/Penguin Heist": - when: - os: mac store: steam - /Penguin Heist.exe: + "/Penguin Heist.exe": - when: - bit: 64 os: windows store: steam - /PenguinHeist.x86_64: + "/PenguinHeist.x86_64": - when: - bit: 64 os: linux @@ -546776,7 +548252,7 @@ The Grey Man: installDir: THE GREY MAN: {} launch: - /THE GREY MAN.exe: + "/THE GREY MAN.exe": - when: - os: windows store: steam @@ -546786,7 +548262,7 @@ The Grid: installDir: Interlude: {} launch: - /Universal Shooter.exe: + "/Universal Shooter.exe": - when: - os: windows store: steam @@ -546794,12 +548270,12 @@ The Grid: id: 884910 The Griffon Legend: files: - /config.ini: + "/config.ini": tags: - config when: - os: windows - /data/player*.sav: + "/data/player*.sav": tags: - save when: @@ -546808,34 +548284,34 @@ The Grim and I: installDir: The Grim and I: {} launch: - /The Grim and I.app/Contents/MacOS/The Grim and I: + "/The Grim and I.app/Contents/MacOS/The Grim and I": - when: - os: mac store: steam - /TheGrimAndI: + "/TheGrimAndI": - when: - os: linux store: steam - /TheGrimAndI.exe: + "/TheGrimAndI.exe": - when: - os: windows store: steam steam: id: 1097710 -'The Grimsworth Reports: Woodfall': +"The Grimsworth Reports: Woodfall": installDir: The Grimsworth Reports Woodfall: {} launch: - /nw.exe: + "/nw.exe": - when: - store: steam steam: id: 737980 -'The Grinch: Christmas Adventures': +"The Grinch: Christmas Adventures": installDir: The Grinch: {} launch: - /TheGrinch.exe: + "/TheGrinch.exe": - when: - os: windows store: steam @@ -546845,20 +548321,20 @@ The Growth Journey: installDir: The Growth Journey: {} launch: - /tgj.app: + "/tgj.app": - when: - os: mac store: steam - /tgj.exe: + "/tgj.exe": - when: - os: windows store: steam - /tgj.x86: + "/tgj.x86": - when: - bit: 32 os: linux store: steam - /tgj.x86_64: + "/tgj.x86_64": - when: - bit: 64 os: linux @@ -546872,12 +548348,12 @@ The Guard of Dungeon: id: 601640 The Guest: files: - /TheGuestSteam_Test_Data/SavedDir/save_data.xml: + "/TheGuestSteam_Test_Data/SavedDir/save_data.xml": tags: - save when: - os: windows - /TheGuest_Data/options_data.xml: + "/TheGuest_Data/options_data.xml": tags: - config when: @@ -546886,16 +548362,16 @@ The Guest: id: 1491580335 id: steamExtra: - - 464580 - 438590 + - 464580 installDir: The Guest: {} launch: - /TheGuestMac.app: + "/TheGuestMac.app": - when: - os: mac store: steam - /TheGuestSteam_Test.exe: + "/TheGuestSteam_Test.exe": - when: - os: windows store: steam @@ -546907,12 +548383,12 @@ The Guest: id: 402040 The Guild 3: files: - /Saved Games/Guild3: + "/Saved Games/Guild3": tags: - save when: - os: windows - /Guild3: + "/Guild3": tags: - config when: @@ -546922,7 +548398,7 @@ The Guild 3: installDir: The Guild 3: {} launch: - /Guild3.exe: + "/Guild3.exe": - when: - bit: 64 os: windows @@ -546931,12 +548407,12 @@ The Guild 3: id: 311260 The Guild II: files: - /Savegames: + "/Savegames": tags: - save when: - os: windows - /userconfig.ini: + "/userconfig.ini": tags: - config when: @@ -546946,19 +548422,19 @@ The Guild II: installDir: The Guild II: {} launch: - /GuildII.exe: + "/GuildII.exe": - when: - store: steam steam: id: 39650 -'The Guild II: Pirates of the European Seas': +"The Guild II: Pirates of the European Seas": files: - /savegames: + "/savegames": tags: - save when: - os: windows - /userconfig.ini: + "/userconfig.ini": tags: - config when: @@ -546968,19 +548444,19 @@ The Guild II: installDir: The Guild II - Pirates of the European Seas: {} launch: - /GuildII.exe: + "/GuildII.exe": - when: - store: steam steam: id: 39660 -'The Guild II: Renaissance': +"The Guild II: Renaissance": files: - /savegames: + "/savegames": tags: - save when: - os: windows - /userconfig.ini: + "/userconfig.ini": tags: - config when: @@ -546990,7 +548466,7 @@ The Guild II: installDir: The Guild 2 Renaissance: {} launch: - /GuildII.exe: + "/GuildII.exe": - when: - store: steam steam: @@ -546999,11 +548475,11 @@ The Guilt and the Shadow: installDir: The Guilt and the Shadow: {} launch: - /TGATSmac.app: + "/TGATSmac.app": - when: - os: mac store: steam - /TGATSwin.exe: + "/TGATSwin.exe": - when: - os: windows store: steam @@ -547013,7 +548489,7 @@ The Guise: installDir: The Guise: {} launch: - /The Guise.exe: + "/The Guise.exe": - when: - os: windows store: steam @@ -547023,11 +548499,11 @@ The Gun Knight: installDir: The Gun Knight: {} launch: - /The Gun Knight.app: + "/The Gun Knight.app": - when: - os: mac store: steam - /The Gun Knight.exe: + "/The Gun Knight.exe": - when: - os: windows store: steam @@ -547035,18 +548511,18 @@ The Gun Knight: id: 1116860 The Gunk: files: - /Dust/Saved/Config/WinGDK: + "/Dust/Saved/Config/WinGDK": tags: - config when: - os: windows store: microsoft - /Dust/Saved/Config/WindowsNoEditor: + "/Dust/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /Dust/Saved/SaveGames: + "/Dust/Saved/SaveGames": tags: - save when: @@ -547054,7 +548530,7 @@ The Gunk: installDir: The Gunk: {} launch: - /Dust.exe: + "/Dust.exe": - when: - os: windows store: steam @@ -547064,7 +548540,7 @@ The HARDEST BrickBreaker: installDir: The HARDEST BrickBreaker: {} launch: - /BrickBreaker.exe: + "/BrickBreaker.exe": - when: - os: windows store: steam @@ -547079,15 +548555,15 @@ The Hand of Glory: installDir: The Hand of Glory: {} launch: - /The Hand of Glory.app: + "/The Hand of Glory.app": - when: - os: mac store: steam - /start: + "/start": - when: - os: linux store: steam - /the hand of glory.exe: + "/the hand of glory.exe": - when: - os: windows store: steam @@ -547095,7 +548571,7 @@ The Hand of Glory: id: 961010 The Hand of Merlin: files: - /UserData/Merlin.ini: + "/UserData/Merlin.ini": tags: - config when: @@ -547105,12 +548581,14 @@ The Hand of Merlin: installDir: The Hand of Merlin: {} launch: - /Bin/x64/Merlin: + "/Bin/x64/Merlin": - when: + - os: mac + store: steam - bit: 64 os: linux store: steam - /Bin/x64/Merlin.exe: + "/Bin/x64/Merlin.exe": - when: - bit: 64 os: windows @@ -547121,7 +548599,7 @@ The Handler of Dragons: installDir: The Handler of Dragons: {} launch: - /TheHandlerofDragons.exe: + "/TheHandlerofDragons.exe": - when: - os: windows store: steam @@ -547131,14 +548609,14 @@ The Hanged Man: installDir: The Hanged Man: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: id: 749890 The Happy Hereafter: files: - /AlawarEntertainment/Mirball/TheHappyHereafter: + "/AlawarEntertainment/Mirball/TheHappyHereafter": tags: - save when: @@ -547146,25 +548624,25 @@ The Happy Hereafter: installDir: Happy Hereafter: {} launch: - /TheHappyHereafter.exe: + "/TheHappyHereafter.exe": - when: - os: windows store: steam steam: id: 306200 -The Harbinger's Head: +"The Harbinger's Head": installDir: - The Harbinger's Head: {} + "The Harbinger's Head": {} launch: - /The Harbinger's Head.app/Contents/MacOS/The Harbinger's Head: + "/The Harbinger's Head.app/Contents/MacOS/The Harbinger's Head": - when: - os: mac store: steam - /TheHarbingersHead: + "/TheHarbingersHead": - when: - os: linux store: steam - /TheHarbingersHead.exe: + "/TheHarbingersHead.exe": - when: - os: windows store: steam @@ -547174,7 +548652,7 @@ The Hardest Dungeon: installDir: The Hardest Dungeon: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -547184,7 +548662,7 @@ The Hardest Thing: installDir: The Hardest Thing: {} launch: - /THT.exe: + "/THT.exe": - when: - os: windows store: steam @@ -547193,9 +548671,9 @@ The Hardest Thing: The Harvest VR: steam: id: 569510 -'The Hat Man: Shadow Ward': +"The Hat Man: Shadow Ward": files: - /AppData/LocalLow/GameMechanics/The Hat Man _ Shadow Ward: + "/AppData/LocalLow/GameMechanics/The Hat Man _ Shadow Ward": tags: - save when: @@ -547203,11 +548681,11 @@ The Harvest VR: installDir: The Hat Man Shadow Ward: {} launch: - /The Hat Man.app: + "/The Hat Man.app": - when: - os: mac store: steam - /The Hat Man.exe: + "/The Hat Man.exe": - when: - os: windows store: steam @@ -547221,7 +548699,7 @@ The Hateful Dead: installDir: The Hateful Dead: {} launch: - /The Hateful Dead.exe: + "/The Hateful Dead.exe": - when: - os: windows store: steam @@ -547235,12 +548713,12 @@ The Haunted Graveyard: The Haunted House VR Ep. 1: steam: id: 1166140 -The Haunted House VR Movie Ep. 1 "Missing": +"The Haunted House VR Movie Ep. 1 \"Missing\"": steam: id: 1178260 -'The Haunted Island, a Frog Detective Game': +"The Haunted Island, a Frog Detective Game": files: - /saves: + "/saves": tags: - save when: @@ -547248,11 +548726,11 @@ The Haunted House VR Movie Ep. 1 "Missing": installDir: The Haunted Island a Frog Detective Game: {} launch: - /The_Haunted_Island.app: + "/The_Haunted_Island.app": - when: - os: mac store: steam - /The_Haunted_Island.exe: + "/The_Haunted_Island.exe": - when: - os: windows store: steam @@ -547262,9 +548740,9 @@ The Haunted House VR Movie Ep. 1 "Missing": - config steam: id: 963000 -'The Haunted: Hells Reach': +"The Haunted: Hells Reach": files: - /My Games/the-haunted-hells-reach/UDKGame/Config: + "/My Games/the-haunted-hells-reach/UDKGame/Config": tags: - config when: @@ -547272,7 +548750,7 @@ The Haunted House VR Movie Ep. 1 "Missing": installDir: the-haunted-hells-reach: {} launch: - /Binaries/Win32/HauntedGame.exe: + "/Binaries/Win32/HauntedGame.exe": - when: - store: steam steam: @@ -547281,7 +548759,7 @@ The Haunting of Baskerville: installDir: The haunting of Baskerville: {} launch: - /Ghoststory.exe: + "/Ghoststory.exe": - when: - os: windows store: steam @@ -547291,7 +548769,7 @@ The Haunting of Billy: installDir: The Haunting of Billy HD: {} launch: - /The Haunting of Billy HD.exe: + "/The Haunting of Billy HD.exe": - when: - os: windows store: steam @@ -547301,7 +548779,7 @@ The Haunting of Billy Classic: installDir: The Haunting of Billy: {} launch: - /The Haunting of Billy.exe: + "/The Haunting of Billy.exe": - when: - os: windows store: steam @@ -547313,7 +548791,7 @@ The Heart of Darkness: installDir: The Heart of Darkness: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: @@ -547327,7 +548805,7 @@ The HeartBeat: installDir: TheHeartBeat: {} launch: - /TheHeartBeat.exe: + "/TheHeartBeat.exe": - when: - os: windows store: steam @@ -547340,7 +548818,7 @@ The Heiress: installDir: The Heiress: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -547351,7 +548829,7 @@ The Heist: id: 1065860 The Henry Stickmin Collection: files: - /com.innersloth.henry.HenryFlash/Local Store: + "/com.innersloth.henry.HenryFlash/Local Store": tags: - config - save @@ -547360,11 +548838,11 @@ The Henry Stickmin Collection: installDir: HenryStickmin: {} launch: - /HenryStickmin.app: + "/HenryStickmin.app": - when: - os: mac store: steam - /HenryStickmin.exe: + "/HenryStickmin.exe": - when: - os: windows store: steam @@ -547374,15 +548852,15 @@ The Herbalist: installDir: Herbalist: {} launch: - /travnica.app: + "/travnica.app": - when: - os: mac store: steam - /travnica.exe: + "/travnica.exe": - when: - os: windows store: steam - /travnica.sh: + "/travnica.sh": - when: - os: linux store: steam @@ -547398,44 +548876,44 @@ The Hero: installDir: The Hero: {} launch: - /Binaries/Win64/The Hero.exe: + "/Binaries/Win64/The Hero.exe": - when: - bit: 64 os: windows store: steam steam: id: 547130 -'The Hero Project: Open Season': +"The Hero Project: Open Season": installDir: The Hero Project Open Season: {} launch: - /The Hero Project Open Season.app/Contents/MacOS/The Hero Project Open Season: + "/The Hero Project Open Season.app/Contents/MacOS/The Hero Project Open Season": - when: - os: mac store: steam - /TheHeroProjectOpenSeason: + "/TheHeroProjectOpenSeason": - when: - os: linux store: steam - /TheHeroProjectOpenSeason.exe: + "/TheHeroProjectOpenSeason.exe": - when: - os: windows store: steam steam: id: 838050 -'The Hero Project: Redemption Season': +"The Hero Project: Redemption Season": installDir: The Hero Project Redemption Season: {} launch: - /RedemptionSeason: + "/RedemptionSeason": - when: - os: linux store: steam - /RedemptionSeason.exe: + "/RedemptionSeason.exe": - when: - os: windows store: steam - /The Hero Project Redemption Season.app/Contents/MacOS/The Hero Project Redemption Season: + "/The Hero Project Redemption Season.app/Contents/MacOS/The Hero Project Redemption Season": - when: - os: mac store: steam @@ -547445,15 +548923,15 @@ The Hero Unmasked!: installDir: The Hero Unmasked!: {} launch: - /The Hero Unmasked.app/Contents/MacOS/The Hero Unmasked: + "/The Hero Unmasked.app/Contents/MacOS/The Hero Unmasked": - when: - os: mac store: steam - /TheHeroUnmasked: + "/TheHeroUnmasked": - when: - os: linux store: steam - /TheHeroUnmasked.exe: + "/TheHeroUnmasked.exe": - when: - os: windows store: steam @@ -547463,15 +548941,15 @@ The Hero of Kendrickstone: installDir: TheHeroOfKendrickstone: {} launch: - /The Hero of Kendrickstone.app/Contents/MacOS/The Hero of Kendrickstone: + "/The Hero of Kendrickstone.app/Contents/MacOS/The Hero of Kendrickstone": - when: - os: mac store: steam - /TheHeroOfKendrickstone: + "/TheHeroOfKendrickstone": - when: - os: linux store: steam - /TheHeroOfKendrickstone.exe: + "/TheHeroOfKendrickstone.exe": - when: - os: windows store: steam @@ -547481,7 +548959,7 @@ The Heroic Legend of Eagarlnia: installDir: The Heroic Legend Of Eagarlnia: {} launch: - /Eagarlnia.exe: + "/Eagarlnia.exe": - when: - os: windows store: steam @@ -547489,7 +548967,7 @@ The Heroic Legend of Eagarlnia: id: 1116880 The Hex: files: - /AppData/LocalLow/Daniel Mullins Games/The Hex/SaveData.hexsave: + "/AppData/LocalLow/Daniel Mullins Games/The Hex/SaveData.hexsave": tags: - save when: @@ -547505,15 +548983,15 @@ The Hex: installDir: The Hex: {} launch: - /TheHex.app: + "/TheHex.app": - when: - os: mac store: steam - /TheHex.exe: + "/TheHex.exe": - when: - os: windows store: steam - /TheHex.x86: + "/TheHex.x86": - when: - os: linux store: steam @@ -547527,7 +549005,7 @@ The Hidden Dragon: installDir: The Hidden Dragon: {} launch: - /TheHiddenDragon.exe: + "/TheHiddenDragon.exe": - when: - os: windows store: steam @@ -547537,15 +549015,15 @@ The Hidden and Unknown: installDir: The Hidden and Unknown: {} launch: - /TheHiddenandUnknown.app: + "/TheHiddenandUnknown.app": - when: - os: mac store: steam - /TheHiddenandUnknown.exe: + "/TheHiddenandUnknown.exe": - when: - os: windows store: steam - /TheHiddenandUnknown.sh: + "/TheHiddenandUnknown.sh": - when: - os: linux store: steam @@ -547555,7 +549033,7 @@ The Highscore: installDir: The Highscore: {} launch: - /The Highscore.exe: + "/The Highscore.exe": - when: - os: windows store: steam @@ -547565,20 +549043,20 @@ The HinterLands: installDir: The HinterLands: {} launch: - /TheHinterLands.exe: + "/TheHinterLands.exe": - when: - os: windows store: steam steam: id: 454260 -'The History Channel: Battle for the Pacific': +"The History Channel: Battle for the Pacific": files: - /Config/key_binding.txt: + "/Config/key_binding.txt": tags: - config when: - os: windows - /Save/profile.dat: + "/Save/profile.dat": tags: - config when: @@ -547586,24 +549064,24 @@ The HinterLands: installDir: History Channel Battle for the Pacific: {} launch: - /bftp.exe: + "/bftp.exe": - when: - store: steam steam: id: 10040 -'The History Channel: Civil War - A Nation Divided': +"The History Channel: Civil War - A Nation Divided": files: - /civilwar.cfg: + "/civilwar.cfg": tags: - config when: - os: windows - /controls.cfg: + "/controls.cfg": tags: - config when: - os: windows - /saved_games: + "/saved_games": tags: - save when: @@ -547611,26 +549089,26 @@ The HinterLands: installDir: The History Channel Civil War: {} launch: - /cw.exe: + "/cw.exe": - when: - store: steam steam: id: 2680 -'The History Channel: Civil War - Secret Missions': +"The History Channel: Civil War - Secret Missions": files: - /Config/key_binding.txt: + "/Config/key_binding.txt": tags: - config when: - os: windows - /Profiles: + "/Profiles": tags: - save when: - os: windows The Hive (2016): files: - /AppData/LocalLow/Skydome Entertainment/The Hive/options.ini: + "/AppData/LocalLow/Skydome Entertainment/The Hive/options.ini": tags: - config when: @@ -547638,20 +549116,20 @@ The Hive (2016): installDir: The Hive: {} launch: - /hive.app: + "/hive.app": - when: - os: mac store: steam - /hive.exe: + "/hive.exe": - when: - os: windows store: steam - /hive.x86: + "/hive.x86": - when: - bit: 32 os: linux store: steam - /hive.x86_64: + "/hive.x86_64": - when: - bit: 64 os: linux @@ -547660,7 +549138,7 @@ The Hive (2016): id: 325730 The Hobbit (2003): files: - /The Hobbit: + "/The Hobbit": tags: - save when: @@ -547669,15 +549147,15 @@ The Hole Story: installDir: The Hole Story: {} launch: - /TheHoleStory.app: + "/TheHoleStory.app": - when: - os: mac store: steam - /TheHoleStory.exe: + "/TheHoleStory.exe": - when: - os: windows store: steam - /TheHoleStory.x86: + "/TheHoleStory.x86": - when: - os: linux store: steam @@ -547695,7 +549173,7 @@ The Homestead Invasion: id: 588990 The Hong Kong Massacre: files: - /AppData/LocalLow/VRESKI/The Hong Kong Massacre/playerSave.thkm: + "/AppData/LocalLow/VRESKI/The Hong Kong Massacre/playerSave.thkm": tags: - config - save @@ -547706,22 +549184,22 @@ The Hong Kong Massacre: installDir: The Hong Kong Massacre: {} launch: - /THKM.exe: + "/THKM.exe": - when: - bit: 64 os: windows store: steam steam: id: 741510 -The Horologist's Legacy: +"The Horologist's Legacy": installDir: The Horologists Legacy: {} launch: - /THL_Mac.app: + "/THL_Mac.app": - when: - os: mac store: steam - /The Horologists Legacy.exe: + "/The Horologists Legacy.exe": - when: - os: windows store: steam @@ -547731,60 +549209,60 @@ The Horror of Secret Experiments: installDir: The horror of secret experiments: {} launch: - /The horror of secret experiments.exe: + "/The horror of secret experiments.exe": - when: - store: steam steam: id: 2293380 -'The Horus Heresy: Battle of Tallarn': +"The Horus Heresy: Battle of Tallarn": installDir: The Horus Heresy Battle for Tallarn: {} launch: - /BattleOfTallarn.app: + "/BattleOfTallarn.app": - when: - os: mac store: steam - /BattleOfTallarn.exe: + "/BattleOfTallarn.exe": - when: - os: windows store: steam steam: id: 515980 -'The Horus Heresy: Betrayal at Calth': +"The Horus Heresy: Betrayal at Calth": installDir: Betrayal At Calth: {} launch: - /Calth.exe: + "/Calth.exe": - when: - bit: 64 os: windows store: steam steam: id: 556550 -'The Horus Heresy: Legions': +"The Horus Heresy: Legions": installDir: The Horus Heresy Legions: {} launch: - /HorusHeresyLegions.app/Contents/MacOS/Legions: + "/HorusHeresyLegions.app/Contents/MacOS/Legions": - when: - os: mac store: steam - /HorusHeresyLegions.exe: + "/HorusHeresyLegions.exe": - when: - os: windows store: steam steam: id: 1031140 -'The Hospital: Allison''s Diary': +"The Hospital: Allison's Diary": installDir: - The Hospital Allison's Diary: {} + "The Hospital Allison's Diary": {} steam: id: 733690 The Hot Dog would Explode: installDir: HotDog: {} launch: - /TheHotDogWouldExplode.exe: + "/TheHotDogWouldExplode.exe": - when: - bit: 64 os: windows @@ -547795,11 +549273,11 @@ The Hotel: installDir: The Hotel: {} launch: - /THGOSX.app: + "/THGOSX.app": - when: - os: mac store: steam - /theHotel.exe: + "/theHotel.exe": - when: - os: windows store: steam @@ -547809,7 +549287,7 @@ The Houchi Play: installDir: THE HOUCHI PLAY -THE 放置プレイ-: {} launch: - /The Houchi Play.exe: + "/The Houchi Play.exe": - when: - os: windows store: steam @@ -547819,7 +549297,7 @@ The Hour Has Come: installDir: The Hour Has Come: {} launch: - /TheHourHasCome.exe: + "/TheHourHasCome.exe": - when: - os: windows store: steam @@ -547829,11 +549307,11 @@ The Hour of the Rat: installDir: Sokpop S05 The Hour of the Rat: {} launch: - /HourOfTheRat.app: + "/HourOfTheRat.app": - when: - os: mac store: steam - /HourOfTheRat.exe: + "/HourOfTheRat.exe": - when: - os: windows store: steam @@ -547843,7 +549321,7 @@ The House: installDir: The House: {} launch: - /TheHouse.exe: + "/TheHouse.exe": - when: - os: windows store: steam @@ -547854,7 +549332,7 @@ The House In The Hollow: id: 1152710 The House in Fata Morgana: files: - /Mangagamer/The House in Fata Morgana: + "/Mangagamer/The House in Fata Morgana": tags: - config - save @@ -547865,28 +549343,28 @@ The House in Fata Morgana: installDir: The House in Fata Morgana: {} launch: - /fata.exe: + "/fata.exe": - when: - store: steam steam: id: 303310 -'The House in Fata Morgana: A Requiem for Innocence': +"The House in Fata Morgana: A Requiem for Innocence": installDir: The House in Fata Morgana - A Requiem for Innocence: {} launch: - /requiem.exe: + "/requiem.exe": - when: - store: steam steam: id: 804700 The House of Da Vinci: files: - /AppData/LocalLow/Blue Brain Games/The House of da Vinci/Profiles: + "/AppData/LocalLow/Blue Brain Games/The House of da Vinci/Profiles": tags: - save when: - os: windows - /AppData/LocalLow/Blue Brain Games/The House of da Vinci/Profiles/plist: + "/AppData/LocalLow/Blue Brain Games/The House of da Vinci/Profiles/plist": tags: - config when: @@ -547901,11 +549379,11 @@ The House of Da Vinci: installDir: The House of Da Vinci: {} launch: - /The House of da Vinci.app/Contents/MacOS/The House of da Vinci: + "/The House of da Vinci.app/Contents/MacOS/The House of da Vinci": - when: - os: mac store: steam - /The House of da Vinci.exe: + "/The House of da Vinci.exe": - when: - os: windows store: steam @@ -547921,11 +549399,11 @@ The House of Da Vinci 2: installDir: The House of Da Vinci 2: {} launch: - /THODV2.app/Contents/MacOS/THODV2: + "/THODV2.app/Contents/MacOS/THODV2": - when: - os: mac store: steam - /THODV2.exe: + "/THODV2.exe": - when: - bit: 64 os: windows @@ -547938,11 +549416,11 @@ The House of Da Vinci 3: installDir: The House of Da Vinci 3: {} launch: - /The House of da Vinci 3.app/Contents/MacOS/The House of da Vinci 3: + "/The House of da Vinci 3.app/Contents/MacOS/The House of da Vinci 3": - when: - os: mac store: steam - /The House of da Vinci 3.exe: + "/The House of da Vinci 3.exe": - when: - bit: 64 os: windows @@ -547951,27 +549429,27 @@ The House of Da Vinci 3: id: 1603640 The House of the Dead: files: - /scores.cfg: + "/scores.cfg": tags: - save when: - os: windows - /thotd.cfg: + "/thotd.cfg": tags: - config when: - os: windows The House of the Dead III: files: - /Application Data/SEGA/THE HOUSE OF THE DEAD3: + "/Application Data/SEGA/THE HOUSE OF THE DEAD3": tags: - config - save when: - os: windows -'The House of the Dead: Remake': +"The House of the Dead: Remake": files: - /TheHouseOfTheDead_Remake: + "/TheHouseOfTheDead_Remake": tags: - save when: @@ -547981,7 +549459,7 @@ The House of the Dead III: installDir: THE HOUSE OF THE DEAD Remake: {} launch: - /The House of the Dead Remake.exe: + "/The House of the Dead Remake.exe": - when: - bit: 64 os: windows @@ -547996,7 +549474,7 @@ The Housewife: installDir: The Housewife: {} launch: - /The Housewife.exe: + "/The Housewife.exe": - when: - os: windows store: steam @@ -548004,7 +549482,7 @@ The Housewife: id: 496750 The Howler: files: - /com.marcelionis.howler/Local Store/#SharedObjects: + "/com.marcelionis.howler/Local Store/#SharedObjects": tags: - config - save @@ -548013,11 +549491,11 @@ The Howler: installDir: Howler: {} launch: - /howler.dmg: + "/howler.dmg": - when: - os: mac store: steam - /howler.exe: + "/howler.exe": - when: - os: windows store: steam @@ -548030,13 +549508,13 @@ The Humans: The Humans Collection Bundle: {} steam: id: 719320 -'The Humans: Meet the Ancestors!': +"The Humans: Meet the Ancestors!": gog: id: 1861080426 installDir: The Humans Meet the Ancestors: {} launch: - /Humans.exe: + "/Humans.exe": - when: - os: windows store: steam @@ -548046,7 +549524,7 @@ The Hunt: installDir: The Hunt: {} launch: - /Hunt.exe: + "/Hunt.exe": - when: - os: windows store: steam @@ -548056,17 +549534,17 @@ The Hunt - Rebuilt: installDir: The Hunt - Rebuilt: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam steam: id: 686010 -The Hunt - Sophie's Journey: +"The Hunt - Sophie's Journey": installDir: - The Hunt - Sophie's Journey: {} + "The Hunt - Sophie's Journey": {} launch: - /The Hunt - Sophie's Journey/Game.exe: + "/The Hunt - Sophie's Journey/Game.exe": - when: - os: windows store: steam @@ -548076,7 +549554,7 @@ The Hunt in the Forest: installDir: The Hunt in the Forest: {} launch: - /The Hunt in the Forest.exe: + "/The Hunt in the Forest.exe": - when: - os: windows store: steam @@ -548091,59 +549569,58 @@ The Hunter: installDir: theHunter: {} launch: - /launcher/launcher.exe: + "/launcher/launcher.exe": - arguments: steam when: - os: windows store: steam - workingDir: /launcher + workingDir: "/launcher" steam: id: 253710 -The Hunter's Journals - Blissful Ignorance: +"The Hunter's Journals - Blissful Ignorance": installDir: - The Hunter's Journals - Blissful Ignorance: {} + "The Hunter's Journals - Blissful Ignorance": {} launch: - /The Hunter's Journals - Blissful Ignorance.exe: + "/The Hunter's Journals - Blissful Ignorance.exe": - when: - os: windows store: steam steam: id: 1168550 -The Hunter's Journals - Pale Harbour: +"The Hunter's Journals - Pale Harbour": installDir: The Hunters Journals; Pale Harbour: {} launch: - /The Hunters Journals; Pale Harbour.exe: + "/The Hunters Journals; Pale Harbour.exe": - when: - os: windows store: steam steam: id: 1094170 -The Hunter's Journals - Vile Philosophy: +"The Hunter's Journals - Vile Philosophy": installDir: The Hunters Journals; Vile Philosophy: {} launch: - /The Hunters Journals; Vile Philosophy.exe: + "/The Hunters Journals; Vile Philosophy.exe": - when: - os: windows store: steam steam: id: 1097570 -'The Hunter: Call of the Wild': +"The Hunter: Call of the Wild": files: - /Avalanche Studios/COTW/Saves/: + "/Avalanche Studios/COTW/Saves/": tags: - save when: - - store: epic - os: windows - /Avalanche Studios/Epic Games Store/theHunter Call of the Wild/Saves/: + "/Avalanche Studios/Epic Games Store/theHunter Call of the Wild/Saves/": tags: - config - save when: - - store: epic - /Avalanche Studios/theHunter Call of the Wild/Saves/: + - os: windows + "/Avalanche Studios/theHunter Call of the Wild/Saves/": tags: - config - save @@ -548152,17 +549629,17 @@ The Hunter's Journals - Vile Philosophy: installDir: theHunterCotW: {} launch: - /theHunterCotW_F.exe: - - arguments: '--enable-crash-reporter' + "/theHunterCotW_F.exe": + - arguments: "--enable-crash-reporter" when: - bit: 64 os: windows store: steam steam: id: 518790 -'The Hunter: Primal': +"The Hunter: Primal": files: - /userdata//322920/remote/tHPsave.sav: + "/userdata//322920/remote/tHPsave.sav": tags: - save when: @@ -548170,21 +549647,21 @@ The Hunter's Journals - Vile Philosophy: installDir: theHunterPrimal: {} launch: - /launcher/launcher.exe: + "/launcher/launcher.exe": - when: - os: windows store: steam - workingDir: /launcher + workingDir: "/launcher" steam: id: 322920 The Hunting God: files: - /TheHuntingGod/Saved/SaveGames/Level.sav: + "/TheHuntingGod/Saved/SaveGames/Level.sav": tags: - save when: - os: windows - /TheHuntingGod/Saved/SaveGames/Settings.sav: + "/TheHuntingGod/Saved/SaveGames/Settings.sav": tags: - config when: @@ -548192,22 +549669,22 @@ The Hunting God: installDir: The Hunting God: {} launch: - /TheHuntingGod.exe: + "/TheHuntingGod.exe": - when: - bit: 64 os: windows store: steam steam: id: 679190 -'The Huntsman: Winter''s Curse': +"The Huntsman: Winter's Curse": installDir: - The Huntsman Winter's Curse: {} + "The Huntsman Winter's Curse": {} launch: - /Huntsman.app: + "/Huntsman.app": - when: - os: mac store: steam - /Huntsman.exe: + "/Huntsman.exe": - when: - os: windows store: steam @@ -548215,17 +549692,17 @@ The Hunting God: id: 446990 The Hurricane of the Varstray -Collateral hazard-: files: - /Varystray/Config.dat: + "/Varystray/Config.dat": tags: - config when: - os: windows - /Varystray/Data.dat: + "/Varystray/Data.dat": tags: - save when: - os: windows - /Varystray/Score.dat: + "/Varystray/Score.dat": tags: - save when: @@ -548233,7 +549710,7 @@ The Hurricane of the Varstray -Collateral hazard-: installDir: The hurricane of the Varstray -Collateral hazard-: {} launch: - /Varstray_steam.exe: + "/Varstray_steam.exe": - when: - os: windows store: steam @@ -548241,7 +549718,7 @@ The Hurricane of the Varstray -Collateral hazard-: id: 416380 The I of the Dragon: files: - /Saves/*.sav: + "/Saves/*.sav": tags: - save when: @@ -548251,15 +549728,15 @@ The I of the Dragon: installDir: The I of the Dragon: {} launch: - /RunGame: + "/RunGame": - when: - os: linux store: steam - /The I of the Dragon.app: + "/The I of the Dragon.app": - when: - os: mac store: steam - /TheIOfTheDragon.exe: + "/TheIOfTheDragon.exe": - when: - os: windows store: steam @@ -548273,7 +549750,7 @@ The IL Tempo Game: installDir: The Build And Race Car Game: {} launch: - /The_Build-Race_Game: + "/The_Build-Race_Game": - when: - os: windows store: steam @@ -548284,29 +549761,29 @@ The IOTA Project: WELD: {} steam: id: 660520 -The Idiot's Tale: +"The Idiot's Tale": installDir: - The Idiot's Tale: {} + "The Idiot's Tale": {} launch: - /idiotstale.exe: + "/idiotstale.exe": - when: - os: windows store: steam steam: id: 810450 -'The Idolmaster: Starlit Season': +"The Idolmaster: Starlit Season": files: - /StarlitSeason/Saved/Config/WindowsNoEditor: + "/StarlitSeason/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /StarlitSeason/Saved/SaveGames/: + "/StarlitSeason/Saved/SaveGames/": tags: - save when: - os: windows - /StarlitSeason/Saved/SaveGames//GraphicSetting.sav: + "/StarlitSeason/Saved/SaveGames//GraphicSetting.sav": tags: - config when: @@ -548314,7 +549791,7 @@ The Idiot's Tale: installDir: StarlitSeason: {} launch: - /StarlitSeason.exe: + "/StarlitSeason.exe": - when: - store: steam steam: @@ -548323,7 +549800,7 @@ The Illusory Abyss: installDir: The Illusory abyss: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -548336,22 +549813,22 @@ The Immortal: id: 1539081 The Imperial Gatekeeper: files: - /Game.ini: + "/Game.ini": tags: - config when: - os: windows - /save/Record.sav: + "/save/Record.sav": tags: - save when: - os: windows - /save/Sandbox.sav**: + "/save/Sandbox.sav**": tags: - save when: - os: windows - /save/SaveData*.sav: + "/save/SaveData*.sav": tags: - save when: @@ -548361,19 +549838,19 @@ The Imperial Gatekeeper: installDir: The Imperial Gatekeeper: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: id: 1933650 The Impossible Game: files: - /save.bin: + "/save.bin": tags: - save when: - os: windows - /settings.ini: + "/settings.ini": tags: - config when: @@ -548381,27 +549858,27 @@ The Impossible Game: installDir: TheImpossibleGame: {} launch: - /Editor.bat: + "/Editor.bat": - when: - os: windows store: steam - /Editor.sh: + "/Editor.sh": - when: - os: linux store: steam - /ImpossibleGame: + "/ImpossibleGame": - when: - os: linux store: steam - /ImpossibleGame.exe: + "/ImpossibleGame.exe": - when: - os: windows store: steam - /TheImpossibleGame.app: + "/TheImpossibleGame.app": - when: - os: mac store: steam - /TheImpossibleGame.app/Contents/Resources/Editor.sh: + "/TheImpossibleGame.app/Contents/Resources/Editor.sh": - when: - os: mac store: steam @@ -548416,7 +549893,7 @@ The Impure: installDir: The Impure: {} launch: - /Impure.exe: + "/Impure.exe": - when: - os: windows store: steam @@ -548426,7 +549903,7 @@ The Incredible Adventures of Super Panda: installDir: The Incredible Adventures of Super Panda: {} launch: - /Super Panda's Incredible Adventure.exe: + "/Super Panda's Incredible Adventure.exe": - when: - os: windows store: steam @@ -548434,7 +549911,7 @@ The Incredible Adventures of Super Panda: id: 1080930 The Incredible Adventures of Van Helsing: files: - /NeocoreGames/Van Helsing/SaveGame: + "/NeocoreGames/Van Helsing/SaveGame": tags: - save when: @@ -548449,11 +549926,11 @@ The Incredible Adventures of Van Helsing: installDir: The Incredible Adventures of Van Helsing: {} launch: - /TIAOVH.app: + "/TIAOVH.app": - when: - os: mac store: steam - /VanHelsing.exe: + "/VanHelsing.exe": - when: - os: windows store: steam @@ -548465,7 +549942,7 @@ The Incredible Adventures of Van Helsing: id: 215530 The Incredible Adventures of Van Helsing II: files: - /userdata//272470/remote/save: + "/userdata//272470/remote/save": tags: - save when: @@ -548474,17 +549951,17 @@ The Incredible Adventures of Van Helsing II: id: 1432137148 id: steamExtra: + - 307750 - 313260 - 324290 - - 307750 installDir: The Incredible Adventures of Van Helsing II: {} launch: - /TIAOVH2.app: + "/TIAOVH2.app": - when: - os: mac store: steam - /VanHelsing.exe: + "/VanHelsing.exe": - when: - os: windows store: steam @@ -548496,7 +549973,7 @@ The Incredible Adventures of Van Helsing II: id: 272470 The Incredible Adventures of Van Helsing III: files: - /NeocoreGames/Van Helsing 3/SaveGame/: + "/NeocoreGames/Van Helsing 3/SaveGame/": tags: - save when: @@ -548506,11 +549983,11 @@ The Incredible Adventures of Van Helsing III: installDir: The Incredible Adventures of Van Helsing III: {} launch: - /TIAOVH3.app: + "/TIAOVH3.app": - when: - os: mac store: steam - /VanHelsing.exe: + "/VanHelsing.exe": - when: - os: windows store: steam @@ -548520,9 +549997,9 @@ The Incredible Adventures of Van Helsing III: - config steam: id: 359900 -'The Incredible Adventures of Van Helsing: Final Cut': +"The Incredible Adventures of Van Helsing: Final Cut": files: - /NeocoreGames/Van Helsing Final Cut/SaveGame: + "/NeocoreGames/Van Helsing Final Cut/SaveGame": tags: - save when: @@ -548535,11 +550012,11 @@ The Incredible Adventures of Van Helsing III: installDir: The Incredible Adventures of Van Helsing Final Cut: {} launch: - /TIAOVHFC.app: + "/TIAOVHFC.app": - when: - os: mac store: steam - /VanHelsing.exe: + "/VanHelsing.exe": - when: - os: windows store: steam @@ -548553,7 +550030,7 @@ The Incredible Baron: installDir: The Incredible Baron: {} launch: - /IncredibleBaron.exe: + "/IncredibleBaron.exe": - when: - os: windows store: steam @@ -548563,14 +550040,14 @@ The Incredible Friends: installDir: The incredible friends: {} launch: - /TheIncredibleFriends.exe: + "/TheIncredibleFriends.exe": - when: - store: steam steam: id: 1197840 The Incredible Hulk: files: - /The Incredible Hulk: + "/The Incredible Hulk": tags: - save when: @@ -548578,7 +550055,7 @@ The Incredible Hulk: installDir: The Incredible Hulk: {} launch: - /Launcher.exe: + "/Launcher.exe": - when: - store: steam registry: @@ -548589,56 +550066,56 @@ The Incredible Hulk: id: 10510 The Incredible Machine: files: - /*.TIM: + "/*.TIM": tags: - save when: - os: dos - /RESOURCE.CFG: + "/RESOURCE.CFG": tags: - config when: - os: dos - /TIM.CFG: + "/TIM.CFG": tags: - save when: - os: dos The Incredible Machine 2: files: - /*.TIM: + "/*.TIM": tags: - save when: - os: dos - /RESOURCE.CFG: + "/RESOURCE.CFG": tags: - config when: - os: dos - /TIM.SAV: + "/TIM.SAV": tags: - save when: - os: dos The Incredible Machine 3: files: - 'C:/*.TIM': + "C:/*.TIM": tags: - save when: - os: windows - 'C:/SIGNIN.RES': + "C:/SIGNIN.RES": tags: - config when: - os: windows - 'C:/TIM.SAV': + "C:/TIM.SAV": tags: - save when: - os: windows - 'C:/timwin.ini': + "C:/timwin.ini": tags: - config when: @@ -548648,19 +550125,19 @@ The Incredible Machine 3: id: gogExtra: - 1207658799 -'The Incredible Machine: Even More Contraptions': +"The Incredible Machine: Even More Contraptions": files: - /EvenMore.ini: + "/EvenMore.ini": tags: - config when: - os: windows - /Homemade: + "/Homemade": tags: - save when: - os: windows - /Saved Games: + "/Saved Games": tags: - save when: @@ -548669,17 +550146,17 @@ The Incredible Machine 3: id: 1207664043 The Incredible Toon Machine: files: - /*.ITL: + "/*.ITL": tags: - save when: - os: windows - /TOON.INI: + "/TOON.INI": tags: - config when: - os: windows - /TOONS.SAV: + "/TOONS.SAV": tags: - save when: @@ -548691,7 +550168,7 @@ The Incredible VR Game Show: id: 626730 The Incredibles: files: - '/The Incredibles/Incredibles ##/GameData.xsv': + "/The Incredibles/Incredibles ##/GameData.xsv": tags: - save when: @@ -548700,9 +550177,9 @@ The Incredibles: HKEY_CURRENT_USER/Software/THQ/The Incredibles/Settings: tags: - config -'The Incredibles: Rise of the Underminer': +"The Incredibles: Rise of the Underminer": files: - /My Games/THQ/The_Incredibles_Rise_of_the_Underminer/Save/Incredibles_##/GameData.xsv: + "/My Games/THQ/The_Incredibles_Rise_of_the_Underminer/Save/Incredibles_##/GameData.xsv": tags: - save when: @@ -548711,9 +550188,9 @@ The Incredibles: HKEY_CURRENT_USER/Software/THQ/The Incredibles Rise of the Underminer: tags: - config -'The Incredibles: When Danger Calls': +"The Incredibles: When Danger Calls": files: - /THQ/The Incredibles/gamedata.ini: + "/THQ/The Incredibles/gamedata.ini": tags: - save when: @@ -548722,11 +550199,11 @@ The Indie Game Legend 3D: installDir: TIGL3D: {} launch: - /TIGL3D.app/Contents/MacOS/TIGL3D: + "/TIGL3D.app/Contents/MacOS/TIGL3D": - when: - os: mac store: steam - /TIGL3D.exe: + "/TIGL3D.exe": - when: - bit: 64 os: windows @@ -548737,7 +550214,7 @@ The Indie Mixtape: installDir: The Indie Mixtape: {} launch: - /Mixtape.exe: + "/Mixtape.exe": - when: - os: windows store: steam @@ -548747,7 +550224,7 @@ The Inevitability: installDir: The Inevitability: {} launch: - /The Inevitability.exe: + "/The Inevitability.exe": - when: - os: windows store: steam @@ -548757,7 +550234,7 @@ The Infected: installDir: The Infected: {} launch: - /TheInfected.exe: + "/TheInfected.exe": - when: - os: windows store: steam @@ -548765,7 +550242,7 @@ The Infected: id: 1360000 The Infectious Madness of Doctor Dekker: files: - /timodd: + "/timodd": tags: - config - save @@ -548776,17 +550253,17 @@ The Infectious Madness of Doctor Dekker: installDir: The Infectious Madness of Doctor Dekker: {} launch: - /timodd: + "/timodd": - when: - bit: 64 os: linux store: steam - /timodd.app: + "/timodd.app": - when: - bit: 64 os: mac store: steam - /timodd.exe: + "/timodd.exe": - when: - os: windows store: steam @@ -548796,35 +550273,35 @@ The Infinite Black: installDir: TheInfiniteBlack: {} launch: - /tib-unity-linux.x86: + "/tib-unity-linux.x86": - when: - bit: 32 os: linux store: steam - /tib-unity-linux.x86_64: + "/tib-unity-linux.x86_64": - when: - bit: 64 os: linux store: steam - /tib-unity-osx.app: + "/tib-unity-osx.app": - when: - os: mac store: steam - /tib-windows.exe: + "/tib-windows.exe": - when: - os: windows store: steam steam: id: 489000 -'The Ingenious Machine: New and Improved Edition': +"The Ingenious Machine: New and Improved Edition": installDir: The Ingenious Machine New and Improved Edition: {} launch: - /Mac/IngeniousMachine.app: + "/Mac/IngeniousMachine.app": - when: - os: mac store: steam - /PC/IngeniousMachine.exe: + "/PC/IngeniousMachine.exe": - when: - os: windows store: steam @@ -548832,7 +550309,7 @@ The Infinite Black: id: 334930 The Inheritance of Crimson Manor: files: - /AppData/LocalLow/MediaCity Games/CrimsonManor/datos.es3: + "/AppData/LocalLow/MediaCity Games/CrimsonManor/datos.es3": tags: - config - save @@ -548846,7 +550323,7 @@ The Inheritance of Crimson Manor: installDir: The Inheritance of Crimson Manor: {} launch: - /CrimsonManor.exe: + "/CrimsonManor.exe": - when: - store: steam registry: @@ -548862,11 +550339,11 @@ The Initial: installDir: The Initial: {} launch: - /The Initial.app: + "/The Initial.app": - when: - os: mac store: steam - /TheInitial.exe: + "/TheInitial.exe": - when: - os: windows store: steam @@ -548880,11 +550357,11 @@ The Initiate: installDir: The Initiate: {} launch: - /The Initiate.app: + "/The Initiate.app": - when: - os: mac store: steam - /The Initiate.exe: + "/The Initiate.exe": - when: - os: windows store: steam @@ -548895,15 +550372,15 @@ The Initiate: - save steam: id: 659480 -'The Initiate 2: The First Interviews': +"The Initiate 2: The First Interviews": installDir: The Initiate 2 The First Interviews: {} launch: - /The Initiate 2.app: + "/The Initiate 2.app": - when: - os: mac store: steam - /The Initiate 2.exe: + "/The Initiate 2.exe": - when: - os: windows store: steam @@ -548918,7 +550395,7 @@ The Inner Darkness: installDir: The Inner Darkness: {} launch: - /TheInnerDarkness.exe: + "/TheInnerDarkness.exe": - when: - os: windows store: steam @@ -548928,7 +550405,7 @@ The Inner Friend: installDir: The InnerFriend: {} launch: - /TheInnerfriend.exe: + "/TheInnerfriend.exe": - when: - os: windows store: steam @@ -548938,12 +550415,12 @@ The Inner Sea: installDir: The Inner Sea: {} launch: - /The Inner Sea.app: + "/The Inner Sea.app": - when: - bit: 64 os: mac store: steam - /innersea.exe: + "/innersea.exe": - when: - bit: 64 os: windows @@ -548952,17 +550429,17 @@ The Inner Sea: id: 443700 The Inner World: files: - /TheInnerWorld/savegames: + "/TheInnerWorld/savegames": tags: - save when: - os: linux - /com.headupgames.theinnerworld: + "/com.headupgames.theinnerworld": tags: - config when: - os: windows - /TheInnerWorld/savegames: + "/TheInnerWorld/savegames": tags: - save when: @@ -548975,33 +550452,33 @@ The Inner World: installDir: TheInnerWorld: {} launch: - /TIW_start.sh: + "/TIW_start.sh": - when: - os: linux store: steam - /TheInnerWorld.exe: + "/TheInnerWorld.exe": - when: - os: windows store: steam - /TheInnerWorldSteam.app: + "/TheInnerWorldSteam.app": - when: - os: mac store: steam steam: id: 251430 -'The Inner World: The Last Wind Monk': +"The Inner World: The Last Wind Monk": files: - /.config/unity3d/Studio Fizbin/The Last Windmonk/TheInnerWorld2/savegames: + "/.config/unity3d/Studio Fizbin/The Last Windmonk/TheInnerWorld2/savegames": tags: - save when: - os: linux - /AppData/LocalLow/Studio Fizbin/The Last Wind Monk/TheInnerWorld2/savegames: + "/AppData/LocalLow/Studio Fizbin/The Last Wind Monk/TheInnerWorld2/savegames": tags: - save when: - os: windows - /AppData/LocalLow/Studio Fizbin/The Last Wind Monk/TheInnerWorld2/settings.tiw2: + "/AppData/LocalLow/Studio Fizbin/The Last Wind Monk/TheInnerWorld2/settings.tiw2": tags: - config when: @@ -549011,31 +550488,31 @@ The Inner World: installDir: The Last Wind Monk: {} launch: - /The Last Wind Monk.app/Contents/MacOS/The Last Wind Monk: + "/The Last Wind Monk.app/Contents/MacOS/The Last Wind Monk": - when: - os: mac store: steam - /The Last Wind Monk.exe: + "/The Last Wind Monk.exe": - when: - os: windows store: steam - /The Last Wind Monk.x86: + "/The Last Wind Monk.x86": - when: - bit: 32 os: linux store: steam - /The Last Wind Monk.x86_64: + "/The Last Wind Monk.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 613470 -'The Ino Chronicles: Ascension': +"The Ino Chronicles: Ascension": installDir: The Ino Chronicles - Ascension: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -549045,7 +550522,7 @@ The Inquisitor: installDir: Inquisitor: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -549056,12 +550533,12 @@ The Inquisitor (2024): id: 1880470 The Interactive Adventures of Dog Mendonça and Pizzaboy: files: - /Godot/app_userdata/The Interactive Adventures of Dog Mendonça & Pizzaboy: + "/Godot/app_userdata/The Interactive Adventures of Dog Mendonça & Pizzaboy": tags: - config when: - os: windows - /Godot/app_userdata/The Interactive Adventures of Dog Mendonça & Pizzaboy/dmpb_saves: + "/Godot/app_userdata/The Interactive Adventures of Dog Mendonça & Pizzaboy/dmpb_saves": tags: - save when: @@ -549071,15 +550548,15 @@ The Interactive Adventures of Dog Mendonça and Pizzaboy: installDir: The Interactive Adventures of Dog Mendonça and Pizzaboy: {} launch: - /godot.osx.opt.32: + "/godot.osx.opt.32": - when: - os: mac store: steam - /godot.windows.opt.32.exe: + "/godot.windows.opt.32.exe": - when: - os: windows store: steam - /godot.x11.opt.32: + "/godot.x11.opt.32": - when: - os: linux store: steam @@ -549089,12 +550566,12 @@ The Intern - O Estágio: installDir: The Intern: {} launch: - /TheIntern.Exe: + "/TheIntern.Exe": - when: - bit: 64 os: windows store: steam - /TheIntern.exe: + "/TheIntern.exe": - when: - bit: 32 os: windows @@ -549108,7 +550585,7 @@ The Interview: installDir: The Interview: {} launch: - /The Interview.exe: + "/The Interview.exe": - when: - os: windows store: steam @@ -549118,8 +550595,11 @@ The Invasion of Area 51: installDir: Invasion of Area 51: {} launch: - /Area_51.exe: + "/Area_51.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam @@ -549127,12 +550607,12 @@ The Invasion of Area 51: id: 413650 The Invincible: files: - /TheInvincible/Saved/Config/SaveGames: + "/TheInvincible/Saved/Config/SaveGames": tags: - save when: - os: windows - /TheInvincible/Saved/Config/WindowsNoEditor: + "/TheInvincible/Saved/Config/WindowsNoEditor": tags: - config when: @@ -549145,12 +550625,15 @@ The Invisible Guardian: installDir: The Invisible Guardian: {} launch: - /TheInvisibleGuardian.app/Contents/MacOS/TheInvisibleGuardian: + "/TheInvisibleGuardian.app/Contents/MacOS/TheInvisibleGuardian": - when: - os: mac store: steam - /TheInvisibleGuardian.exe: + "/TheInvisibleGuardian.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam @@ -549162,11 +550645,11 @@ The Invisible Hand: installDir: The Invisible Hand: {} launch: - /TIH.x86_64: + "/TIH.x86_64": - when: - os: linux store: steam - /The Invisible Hand.exe: + "/The Invisible Hand.exe": - when: - os: windows store: steam @@ -549174,12 +550657,12 @@ The Invisible Hand: id: 628200 The Invisible Hours: files: - /Tequila Works/The Invisible Hours: + "/Tequila Works/The Invisible Hours": tags: - save when: - os: windows - /CTRLroom/Saved/Config/WindowsNoEditor: + "/CTRLroom/Saved/Config/WindowsNoEditor": tags: - config when: @@ -549187,7 +550670,7 @@ The Invisible Hours: installDir: TheInvisibleHours: {} launch: - /TheInvisibleHours.exe: + "/TheInvisibleHours.exe": - arguments: NoVRLaunch when: - bit: 64 @@ -549197,7 +550680,7 @@ The Invisible Hours: id: 582560 The Iron Oath: files: - /LocalLow/Curious Panda Games/The Iron Oath/saves: + "/LocalLow/Curious Panda Games/The Iron Oath/saves": tags: - save when: @@ -549207,11 +550690,11 @@ The Iron Oath: installDir: The Iron Oath: {} launch: - /The Iron Oath.exe: + "/The Iron Oath.exe": - when: - os: windows store: steam - /TheIronOath.app: + "/TheIronOath.app": - when: - os: mac store: steam @@ -549221,7 +550704,7 @@ The Island Combat: installDir: The Island Combat: {} launch: - /The Island Combat.exe: + "/The Island Combat.exe": - when: - os: windows store: steam @@ -549231,7 +550714,7 @@ The Island Story: installDir: The Island Story: {} launch: - /The Island Story.exe: + "/The Island Story.exe": - when: - os: windows store: steam @@ -549241,24 +550724,24 @@ The Island of Eternal Struggle: installDir: The Island of Eternal Struggle: {} launch: - /The Island of Eternal Struggle.exe: + "/The Island of Eternal Struggle.exe": - when: - os: windows store: steam steam: id: 534240 -'The Island: In To The Mist 그 섬': +"The Island: In To The Mist 그 섬": installDir: The Island In To The Mist: {} launch: - /TheIsland.exe: + "/TheIsland.exe": - when: - store: steam steam: id: 941650 The Islander: files: - /The_Islander: + "/The_Islander": tags: - save when: @@ -549266,24 +550749,24 @@ The Islander: installDir: Islander: {} launch: - /The Islander.exe: + "/The Islander.exe": - when: - os: windows store: steam steam: id: 715050 -'The Islander: Landscape Designer': +"The Islander: Landscape Designer": installDir: The Islander Town Architect: {} launch: - /The Islander - Town Architect.exe: + "/The Islander - Town Architect.exe": - when: - store: steam steam: id: 1042160 The Isle: files: - /TheIsle: + "/TheIsle": tags: - config when: @@ -549291,16 +550774,16 @@ The Isle: installDir: The Isle: {} launch: - /TheIsle.app: + "/TheIsle.app": - when: - os: mac store: steam - /TheIsle.exe: + "/TheIsle.exe": - when: - bit: 64 os: windows store: steam - /TheIsle.sh: + "/TheIsle.sh": - when: - bit: 64 os: linux @@ -549314,14 +550797,14 @@ The Isle of the Dead: id: 1071320 The Italian Job: files: - /res_data.dat: + "/res_data.dat": tags: - save when: - os: windows The Itch: files: - /AppData/LocalLow/Dane Sherman/The Itch/SaveFile*: + "/AppData/LocalLow/Dane Sherman/The Itch/SaveFile*": tags: - save when: @@ -549329,7 +550812,7 @@ The Itch: installDir: The Itch: {} launch: - /The Itch.exe: + "/The Itch.exe": - when: - bit: 64 os: windows @@ -549338,18 +550821,18 @@ The Itch: id: 1095520 The Jackbox Party Pack: files: - /Library/Application Support/Jackbox Games/The Jackbox Party Pack/UserData.sav: + "/Library/Application Support/Jackbox Games/The Jackbox Party Pack/UserData.sav": tags: - config - save when: - os: mac - /userdata//331670/remote/UserData.sav_: + "/userdata//331670/remote/UserData.sav_": tags: - save when: - store: steam - /Jackbox Games/The Jackbox Party Pack/UserData.sav: + "/Jackbox Games/The Jackbox Party Pack/UserData.sav": tags: - save when: @@ -549357,16 +550840,16 @@ The Jackbox Party Pack: installDir: The Jackbox Party Pack: {} launch: - /Launcher.sh: + "/Launcher.sh": - when: - bit: 64 os: linux store: steam - /The Jackbox Party Pack.app: + "/The Jackbox Party Pack.app": - when: - os: mac store: steam - /The Jackbox Party Pack.exe: + "/The Jackbox Party Pack.exe": - when: - os: windows store: steam @@ -549374,7 +550857,7 @@ The Jackbox Party Pack: id: 331670 The Jackbox Party Pack 2: files: - /Jackbox Games/The Jackbox Party Pack 2/UserData.sav: + "/Jackbox Games/The Jackbox Party Pack 2/UserData.sav": tags: - save when: @@ -549382,16 +550865,16 @@ The Jackbox Party Pack 2: installDir: The Jackbox Party Pack 2: {} launch: - /Launcher.sh: + "/Launcher.sh": - when: - bit: 64 os: linux store: steam - /The Jackbox Party Pack 2.app: + "/The Jackbox Party Pack 2.app": - when: - os: mac store: steam - /The Jackbox Party Pack 2.exe: + "/The Jackbox Party Pack 2.exe": - when: - os: windows store: steam @@ -549399,12 +550882,12 @@ The Jackbox Party Pack 2: id: 397460 The Jackbox Party Pack 3: files: - /Library/Application Support/com.jackboxgames.jackboxpartypack3/Local Store: + "/Library/Application Support/com.jackboxgames.jackboxpartypack3/Local Store": tags: - save when: - os: mac - /Library/Application Support/com.jackboxgames.jackboxpartypack3/Local Store/#SharedObjects/TJPP3Loader.swf/SETTINGS_MANAGER_KEY.sol: + "/Library/Application Support/com.jackboxgames.jackboxpartypack3/Local Store/#SharedObjects/TJPP3Loader.swf/SETTINGS_MANAGER_KEY.sol": tags: - config when: @@ -549412,17 +550895,17 @@ The Jackbox Party Pack 3: installDir: The Jackbox Party Pack 3: {} launch: - /Launcher.sh: + "/Launcher.sh": - when: - bit: 64 os: linux store: steam - /The Jackbox Party Pack 3.app: + "/The Jackbox Party Pack 3.app": - when: - os: mac store: steam - /The Jackbox Party Pack 3.exe: - - arguments: '-jbg.config serverUrl=ecast.jackboxgames.com' + "/The Jackbox Party Pack 3.exe": + - arguments: "-jbg.config serverUrl=ecast.jackboxgames.com" when: - os: windows store: steam @@ -549430,7 +550913,7 @@ The Jackbox Party Pack 3: id: 434170 The Jackbox Party Pack 4: files: - /Jackbox Games/The Jackbox Party Pack 4/UserData.sav: + "/Jackbox Games/The Jackbox Party Pack 4/UserData.sav": tags: - config - save @@ -549439,17 +550922,17 @@ The Jackbox Party Pack 4: installDir: The Jackbox Party Pack 4: {} launch: - /Launcher.sh: + "/Launcher.sh": - when: - bit: 64 os: linux store: steam - /The Jackbox Party Pack 4.app: + "/The Jackbox Party Pack 4.app": - when: - os: mac store: steam - /The Jackbox Party Pack 4.exe: - - arguments: '-jbg.config serverUrl=ecast.jackboxgames.com' + "/The Jackbox Party Pack 4.exe": + - arguments: "-jbg.config serverUrl=ecast.jackboxgames.com" when: - os: windows store: steam @@ -549457,13 +550940,13 @@ The Jackbox Party Pack 4: id: 610180 The Jackbox Party Pack 5: files: - /Library/Application Support/Jackbox Games/The Jackbox Party Pack 5/UserData.sav: + "/Library/Application Support/Jackbox Games/The Jackbox Party Pack 5/UserData.sav": tags: - config - save when: - os: mac - /Jackbox Games/The Jackbox Party Pack 5/UserData.sav: + "/Jackbox Games/The Jackbox Party Pack 5/UserData.sav": tags: - config - save @@ -549475,17 +550958,17 @@ The Jackbox Party Pack 5: installDir: The Jackbox Party Pack 5: {} launch: - /Launcher.sh: + "/Launcher.sh": - when: - bit: 64 os: linux store: steam - /The Jackbox Party Pack 5.app: + "/The Jackbox Party Pack 5.app": - when: - os: mac store: steam - /The Jackbox Party Pack 5.exe: - - arguments: '-jbg.config serverUrl=ecast.jackboxgames.com' + "/The Jackbox Party Pack 5.exe": + - arguments: "-jbg.config serverUrl=ecast.jackboxgames.com" when: - os: windows store: steam @@ -549493,7 +550976,7 @@ The Jackbox Party Pack 5: id: 774461 The Jackbox Party Pack 6: files: - /Jackbox Games/The Jackbox Party Pack 6/UserData.sav: + "/Jackbox Games/The Jackbox Party Pack 6/UserData.sav": tags: - config - save @@ -549502,16 +550985,16 @@ The Jackbox Party Pack 6: installDir: The Jackbox Party Pack 6: {} launch: - /Launcher.sh: + "/Launcher.sh": - when: - bit: 64 os: linux store: steam - /The Jackbox Party Pack 6.app: + "/The Jackbox Party Pack 6.app": - when: - os: mac store: steam - /The Jackbox Party Pack 6.exe: + "/The Jackbox Party Pack 6.exe": - when: - os: windows store: steam @@ -549519,7 +551002,7 @@ The Jackbox Party Pack 6: id: 1005300 The Jackbox Party Pack 7: files: - /Library/Application Support/Jackbox Games/The Jackbox Party Pack 7/UserData.sav: + "/Library/Application Support/Jackbox Games/The Jackbox Party Pack 7/UserData.sav": tags: - config - save @@ -549528,16 +551011,16 @@ The Jackbox Party Pack 7: installDir: The Jackbox Party Pack 7: {} launch: - /Launcher.sh: + "/Launcher.sh": - when: - bit: 64 os: linux store: steam - /The Jackbox Party Pack 7.app: + "/The Jackbox Party Pack 7.app": - when: - os: mac store: steam - /The Jackbox Party Pack 7.exe: + "/The Jackbox Party Pack 7.exe": - when: - os: windows store: steam @@ -549547,16 +551030,16 @@ The Jackbox Party Pack 8: installDir: The Jackbox Party Pack 8: {} launch: - /Launcher.sh: + "/Launcher.sh": - when: - bit: 64 os: linux store: steam - /The Jackbox Party Pack 8.app: + "/The Jackbox Party Pack 8.app": - when: - os: mac store: steam - /The Jackbox Party Pack 8.exe: + "/The Jackbox Party Pack 8.exe": - when: - bit: 64 os: windows @@ -549565,7 +551048,7 @@ The Jackbox Party Pack 8: id: 1552350 The Jackbox Party Pack 9: files: - /Library/Application Support/Jackbox Games/The Jackbox Party Pack 9/UserData.sav: + "/Library/Application Support/Jackbox Games/The Jackbox Party Pack 9/UserData.sav": tags: - config - save @@ -549577,16 +551060,16 @@ The Jackbox Party Pack 9: installDir: The Jackbox Party Pack 9: {} launch: - /Launcher.sh: + "/Launcher.sh": - when: - bit: 64 os: linux store: steam - /The Jackbox Party Pack 9.app: + "/The Jackbox Party Pack 9.app": - when: - os: mac store: steam - /The Jackbox Party Pack 9.exe: + "/The Jackbox Party Pack 9.exe": - when: - bit: 64 os: windows @@ -549597,16 +551080,16 @@ The Jackbox Party Starter: installDir: The Jackbox Party Starter: {} launch: - /Launcher.sh: + "/Launcher.sh": - when: - bit: 64 os: linux store: steam - /The Jackbox Party Starter.app: + "/The Jackbox Party Starter.app": - when: - os: mac store: steam - /The Jackbox Party Starter.exe: + "/The Jackbox Party Starter.exe": - when: - bit: 64 os: windows @@ -549617,7 +551100,7 @@ The Janitor: installDir: The Janitor: {} launch: - /TheJanitor.exe: + "/TheJanitor.exe": - when: - os: windows store: steam @@ -549634,11 +551117,11 @@ The Jigsaw Puzzle Room: The Jimmy´s Souls: steam: id: 879080 -The Jolly Gang's Misadventures in Africa: +"The Jolly Gang's Misadventures in Africa": installDir: - The Jolly Gang's Misadventures in Africa: {} + "The Jolly Gang's Misadventures in Africa": {} launch: - /TheJollyGangsMisadventuresinAfrica.exe: + "/TheJollyGangsMisadventuresinAfrica.exe": - when: - os: windows store: steam @@ -549653,35 +551136,35 @@ The Journey Back: installDir: The Journey Back: {} launch: - /TheJourneyBack.app: + "/TheJourneyBack.app": - when: - os: mac store: steam - /TheJourneyBack.exe: + "/TheJourneyBack.exe": - when: - bit: 64 os: windows store: steam - /TheJourneyBack.x86_64: + "/TheJourneyBack.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 393550 -'The Journey Down: Chapter One': +"The Journey Down: Chapter One": files: - /SkyGoblin/TheJourneyDown1: + "/SkyGoblin/TheJourneyDown1": tags: - save when: - os: windows - /SkyGoblin/TheJourneyDown1/settings.cfg: + "/SkyGoblin/TheJourneyDown1/settings.cfg": tags: - config when: - os: windows - /JourneyDownOne: + "/JourneyDownOne": tags: - config - save @@ -549692,28 +551175,28 @@ The Journey Back: installDir: The Journey Down: {} launch: - /JourneyDown1: + "/JourneyDown1": - when: - os: linux store: steam - /JourneyDown1.app/Contents/MacOS/JourneyDown1: + "/JourneyDown1.app/Contents/MacOS/JourneyDown1": - when: - os: mac store: steam - /JourneyDown1.exe: + "/JourneyDown1.exe": - when: - os: windows store: steam steam: id: 220090 -'The Journey Down: Chapter Three': +"The Journey Down: Chapter Three": files: - /SkyGoblin/TheJourneyDown3: + "/SkyGoblin/TheJourneyDown3": tags: - save when: - os: windows - /SkyGoblin/TheJourneyDown3/settings.cfg: + "/SkyGoblin/TheJourneyDown3/settings.cfg": tags: - config when: @@ -549723,33 +551206,33 @@ The Journey Back: installDir: The Journey Down Chapter Three: {} launch: - /JourneyDown3: + "/JourneyDown3": - when: - os: linux store: steam - /JourneyDown3.app/Contents/MacOS/JourneyDown3: + "/JourneyDown3.app/Contents/MacOS/JourneyDown3": - when: - os: mac store: steam - /JourneyDown3.exe: + "/JourneyDown3.exe": - when: - os: windows store: steam steam: id: 579760 -'The Journey Down: Chapter Two': +"The Journey Down: Chapter Two": files: - /SkyGoblin/TheJourneyDown2: + "/SkyGoblin/TheJourneyDown2": tags: - save when: - os: windows - /SkyGoblin/TheJourneyDown2/settings.cfg: + "/SkyGoblin/TheJourneyDown2/settings.cfg": tags: - config when: - os: windows - /JourneyDownTwo: + "/JourneyDownTwo": tags: - config - save @@ -549760,15 +551243,15 @@ The Journey Back: installDir: The Journey Down Chapter Two: {} launch: - /JourneyDown2: + "/JourneyDown2": - when: - os: linux store: steam - /JourneyDown2.app/Contents/MacOS/JourneyDown2: + "/JourneyDown2.app/Contents/MacOS/JourneyDown2": - when: - os: mac store: steam - /JourneyDown2.exe: + "/JourneyDown2.exe": - when: - os: windows store: steam @@ -549783,7 +551266,7 @@ The Journey of Forgotten Memories: installDir: The Journey Of Forgotten Memories: {} launch: - /TheJourney.exe: + "/TheJourney.exe": - when: - bit: 32 os: windows @@ -549794,46 +551277,57 @@ The Journey to Fairytales: installDir: The Journey to Fairytales: {} launch: - /The Journey to Fairytales.app/Contents/MacOS/The Journey to Fairytales: + "/The Journey to Fairytales.app/Contents/MacOS/The Journey to Fairytales": - when: - os: mac store: steam - /The Journey to Fairytales.exe: + "/The Journey to Fairytales.exe": - when: - os: windows store: steam steam: id: 879480 -'The Journey: Bob''s Story': +"The Journey: Bob's Story": installDir: The Journey: {} launch: - /The Journey Bobs Story.exe: + "/The Journey Bobs Story.exe": - when: - os: windows store: steam steam: id: 385410 -'The Journeyman Project 2: Buried in Time': +"The Journeyman Project 2: Buried in Time": + files: + "*.btg": + tags: + - save + when: + - os: windows + "*.sav": + tags: + - save + when: + - os: windows gog: id: 1207658872 -'The Journeyman Project 3: Legacy of Time': +"The Journeyman Project 3: Legacy of Time": files: - /j3prefs.fil: + "/j3prefs.fil": tags: - config when: - os: windows gog: id: 1207659009 -'The Journeyman Project: Pegasus Prime': +"The Journeyman Project: Pegasus Prime": files: - /Pegasus Prime/Pegasus Prime.ini: + "/Pegasus Prime/Pegasus Prime.ini": tags: - config when: - os: windows - /Pegasus Prime/Saved games: + "/Pegasus Prime/Saved games": tags: - save when: @@ -549843,20 +551337,20 @@ The Journey to Fairytales: installDir: The Journeyman Project 1 Pegasus Prime: {} launch: - /pegasusMessageProxy.exe: + "/pegasusMessageProxy.exe": - when: - os: windows store: steam steam: id: 359420 -'The Joylancer: Legendary Motor Knight': +"The Joylancer: Legendary Motor Knight": files: - /JOYLANCER/options.ini: + "/JOYLANCER/options.ini": tags: - config when: - os: windows - /JOYLANCER/profiles: + "/JOYLANCER/profiles": tags: - save when: @@ -549864,7 +551358,7 @@ The Journey to Fairytales: installDir: Joylancer: {} launch: - /JOYLANCER.exe: + "/JOYLANCER.exe": - when: - os: windows store: steam @@ -549872,12 +551366,12 @@ The Journey to Fairytales: id: 315540 The Juicer: files: - /Anvate Games/The Juicer: + "/Anvate Games/The Juicer": tags: - config when: - os: windows - /Anvate Games/The Juicer/Profiles.cfg: + "/Anvate Games/The Juicer/Profiles.cfg": tags: - save when: @@ -549885,7 +551379,7 @@ The Juicer: installDir: The Juicer: {} launch: - /TheJuicer.exe: + "/TheJuicer.exe": - when: - os: windows store: steam @@ -549895,12 +551389,12 @@ The Jungle Book: gog: id: 1121892325 installDir: - Disney's The Jungle Book: {} + "Disney's The Jungle Book": {} steam: id: 561110 -'The Jungle Book: Groove Party': +"The Jungle Book: Groove Party": files: - /osr.ini: + "/osr.ini": tags: - config when: @@ -549909,7 +551403,7 @@ The Kaiju Offensive: installDir: The Kaiju Offensive: {} launch: - /TheKaijuOffensive.exe: + "/TheKaijuOffensive.exe": - when: - os: windows store: steam @@ -549919,14 +551413,14 @@ The Karters: installDir: The Karters: {} launch: - /TheKarters.exe: + "/TheKarters.exe": - when: - store: steam steam: id: 488350 The Keep: files: - '/AppData/LocalLow/CINEMAX, s_r_o_/The Keep': + "/AppData/LocalLow/CINEMAX, s_r_o_/The Keep": tags: - config - save @@ -549935,46 +551429,46 @@ The Keep: installDir: The Keep: {} launch: - /TheKeep.app: + "/TheKeep.app": - when: - os: mac store: steam - /thekeep.exe: + "/thekeep.exe": - when: - os: windows store: steam steam: id: 317370 -'The Keepers of Pages: Chevengur': +"The Keepers of Pages: Chevengur": steam: id: 935380 The Keys to Maramon: files: - /KMCONFIG.MCC: + "/KMCONFIG.MCC": tags: - config when: - os: dos - /KMSAV*.MCS: + "/KMSAV*.MCS": tags: - save when: - os: dos - /KMSAV.MCI: + "/KMSAV.MCI": tags: - save when: - os: dos - /KMSCOR.MCS: + "/KMSCOR.MCS": tags: - save when: - os: dos -'The Killbox: Arena Combat': +"The Killbox: Arena Combat": installDir: The Killbox: {} launch: - /The Killbox Aries 2.0.exe: + "/The Killbox Aries 2.0.exe": - when: - os: windows store: steam @@ -549987,17 +551481,17 @@ The Kindeman Remedy: id: 2055410 The Kindred: files: - /AppData/LocalLow/Persistent Studios/The Kindred/Saves: + "/AppData/LocalLow/Persistent Studios/The Kindred/Saves": tags: - save when: - os: windows - /Library/Application Support/Persistent Studios/The Kindred/Saves: + "/Library/Application Support/Persistent Studios/The Kindred/Saves": tags: - save when: - os: mac - /unity3d/Persistent Studios/The Kindred/Saves: + "/unity3d/Persistent Studios/The Kindred/Saves": tags: - save when: @@ -550005,40 +551499,40 @@ The Kindred: installDir: TheKindred: {} launch: - /TheKindred.App/Contents/MacOS/TheKindred: + "/TheKindred.App/Contents/MacOS/TheKindred": - when: - os: mac store: steam - /TheKindred.exe: + "/TheKindred.exe": - when: - bit: 64 os: windows store: steam - /TheKindred.x86: + "/TheKindred.x86": - when: - bit: 32 os: linux store: steam - /TheKindred.x86_64: + "/TheKindred.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 373410 -The King of Fighters '97 Global Match: +"The King of Fighters '97 Global Match": installDir: - THE KING OF FIGHTERS '97 GLOBAL MATCH: {} + "THE KING OF FIGHTERS '97 GLOBAL MATCH": {} launch: - /KOF97.exe: + "/KOF97.exe": - when: - os: windows store: steam steam: id: 702120 -The King of Fighters '98 Ultimate Match Final Edition: +"The King of Fighters '98 Ultimate Match Final Edition": files: - /Data/~options.bin: + "/Data/~options.bin": tags: - config when: @@ -550046,14 +551540,14 @@ The King of Fighters '98 Ultimate Match Final Edition: gog: id: 2097726164 installDir: - The King of Fighters'98 Ultimate Match: {} + "The King of Fighters'98 Ultimate Match": {} launch: - /KingOfFighters98UM.exe: + "/KingOfFighters98UM.exe": - when: - bit: 32 os: windows store: steam - /KingOfFighters98UM_x64.exe: + "/KingOfFighters98UM_x64.exe": - when: - bit: 64 os: windows @@ -550062,12 +551556,12 @@ The King of Fighters '98 Ultimate Match Final Edition: id: 222420 The King of Fighters 2000: files: - /SNK/kof2k/OPTIONS: + "/SNK/kof2k/OPTIONS": tags: - config when: - os: windows - /SNK/kof2k/SAVEGAME: + "/SNK/kof2k/SAVEGAME": tags: - save when: @@ -550076,12 +551570,12 @@ The King of Fighters 2000: id: 2092821172 The King of Fighters 2002: files: - /SNK/kof2k2nd/OPTIONS: + "/SNK/kof2k2nd/OPTIONS": tags: - config when: - os: windows - /SNK/kof2k2nd/SAVEGAME: + "/SNK/kof2k2nd/SAVEGAME": tags: - save when: @@ -550090,7 +551584,7 @@ The King of Fighters 2002: id: 2114035213 The King of Fighters 2002 Unlimited Match: files: - /Data/~settings.bin: + "/Data/~settings.bin": tags: - config when: @@ -550100,12 +551594,12 @@ The King of Fighters 2002 Unlimited Match: installDir: The King of Fighters 2002 Unlimited Match: {} launch: - /KingOfFighters2002UM.exe: + "/KingOfFighters2002UM.exe": - when: - bit: 32 os: windows store: steam - /KingOfFighters2002UM_x64.exe: + "/KingOfFighters2002UM_x64.exe": - when: - bit: 64 os: windows @@ -550119,7 +551613,7 @@ The King of Fighters All Star: - config The King of Fighters XIII: files: - /userdata//222940/remote/kofxiii: + "/userdata//222940/remote/kofxiii": tags: - save when: @@ -550129,8 +551623,8 @@ The King of Fighters XIII: installDir: King of Fighters XIII: {} launch: - /kofxiii.exe: - - arguments: '-console' + "/kofxiii.exe": + - arguments: "-console" when: - os: windows store: steam @@ -550138,13 +551632,13 @@ The King of Fighters XIII: id: 222940 The King of Fighters XIV: files: - /userdata//571260: + "/userdata//571260": tags: - save when: - os: windows store: steam - /King of Fighters XIV/graphics_option.json: + "/King of Fighters XIV/graphics_option.json": tags: - config when: @@ -550154,19 +551648,19 @@ The King of Fighters XIV: installDir: THE KING OF FIGHTERS XIV: {} launch: - /kofxiv.exe: + "/kofxiv.exe": - when: - store: steam steam: id: 571260 The King of Fighters XV: files: - /KOFXV/Saved/Config/WindowsNoEditor: + "/KOFXV/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /KOFXV/Saved/SaveGames: + "/KOFXV/Saved/SaveGames": tags: - save when: @@ -550174,67 +551668,67 @@ The King of Fighters XV: installDir: THE KING OF FIGHTERS XV: {} launch: - /KOFXV_Steam.exe: + "/KOFXV_Steam.exe": - when: - os: windows store: steam steam: id: 1498570 -The King's Bird: +"The King's Bird": files: - /AppData/LocalLow/Serenity Forge/The King's Bird/Controls.dat: + "/AppData/LocalLow/Serenity Forge/The King's Bird/Controls.dat": tags: - config when: - os: windows - /AppData/LocalLow/Serenity Forge/The King's Bird/Save_*.sav: + "/AppData/LocalLow/Serenity Forge/The King's Bird/Save_*.sav": tags: - save when: - os: windows - /AppData/LocalLow/Serenity Forge/The King's Bird/Settings.dat: + "/AppData/LocalLow/Serenity Forge/The King's Bird/Settings.dat": tags: - config when: - os: windows installDir: - The King's Bird: {} + "The King's Bird": {} launch: - /TheKingsBird.exe: + "/TheKingsBird.exe": - when: - os: windows store: steam registry: - HKEY_CURRENT_USER/Software/Serenity Forge/The King's Bird: + "HKEY_CURRENT_USER/Software/Serenity Forge/The King's Bird": tags: - config steam: id: 812550 -The King's Heroes: +"The King's Heroes": installDir: - The King's Heroes: {} + "The King's Heroes": {} launch: - /KingsHeroes.exe: + "/KingsHeroes.exe": - when: - store: steam steam: id: 461350 -The King's New Castle: +"The King's New Castle": steam: id: 1040450 -'The King''s Request: Physiology and Anatomy Revision Game': +"The King's Request: Physiology and Anatomy Revision Game": installDir: TheKingsRequest: {} launch: - /Game.app: + "/Game.app": - when: - os: mac store: steam - /Game.exe: + "/Game.exe": - when: - os: windows store: steam - /www/index.html: + "/www/index.html": - when: - os: linux store: steam @@ -550243,14 +551737,14 @@ The King's New Castle: The Kings Destiny: steam: id: 990970 -The Kings' Crusade: +"The Kings' Crusade": installDir: - Lionheart - King's Crusade: {} + "Lionheart - King's Crusade": {} launch: - /LionHeartMulti.exe: + "/LionHeartMulti.exe": - when: - store: steam - /Lionheart.exe: + "/Lionheart.exe": - when: - store: steam steam: @@ -550259,12 +551753,15 @@ The Kite: installDir: The Kite: {} launch: - /The Kite.exe: + "/The Kite.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam - /The_Kite.app/Contents/MacOS/The_Kite: + "/The_Kite.app/Contents/MacOS/The_Kite": - when: - os: mac store: steam @@ -550272,12 +551769,12 @@ The Kite: id: 968700 The Knight Witch: files: - /AppData/LocalLow/SuperMegaTeam/TheKnightWitch/GameSlot_*.data: + "/AppData/LocalLow/SuperMegaTeam/TheKnightWitch/GameSlot_*.data": tags: - save when: - os: windows - /AppData/LocalLow/SuperMegaTeam/TheKnightWitch/TKWUserSettings.data: + "/AppData/LocalLow/SuperMegaTeam/TheKnightWitch/TKWUserSettings.data": tags: - config when: @@ -550287,7 +551784,7 @@ The Knight Witch: installDir: The Knight Witch: {} launch: - /TheKnightWitch.exe: + "/TheKnightWitch.exe": - when: - store: steam steam: @@ -550296,17 +551793,17 @@ The Knight of the Crimson Tower: installDir: The Knight of the Crimson Tower: {} launch: - /TheKnightoftheCrimsonTower.exe: + "/TheKnightoftheCrimsonTower.exe": - when: - os: windows store: steam steam: id: 1187190 -'The Knobbly Crook: Chapter I - The Horse You Sailed In On': +"The Knobbly Crook: Chapter I - The Horse You Sailed In On": installDir: The Knobbly Crook: {} launch: - /Knobbly Crook.exe: + "/Knobbly Crook.exe": - when: - os: windows store: steam @@ -550319,7 +551816,7 @@ The Kremer Collection VR Museum: id: 774231 The Lab: files: - /AppData/LocalLow/Valve/TheLab/PlayerData.txt: + "/AppData/LocalLow/Valve/TheLab/PlayerData.txt": tags: - config - save @@ -550333,11 +551830,11 @@ The Labyrinth: installDir: The Labyrinth: {} launch: - /The Labyrinth.exe: + "/The Labyrinth.exe": - when: - os: windows store: steam - /TheLabyrinth.app: + "/TheLabyrinth.app": - when: - os: mac store: steam @@ -550347,14 +551844,14 @@ The Labyrinth of Grisaia: installDir: The Labyrinth of Grisaia: {} launch: - /GrisaiaLauncher.exe: + "/GrisaiaLauncher.exe": - when: - store: steam steam: id: 345620 The Labyrinth of Time: files: - /Wyrmkeep/The Labyrinth of Time Saved Games: + "/Wyrmkeep/The Labyrinth of Time Saved Games": tags: - save when: @@ -550364,15 +551861,15 @@ The Labyrinth of Time: installDir: The Labyrinth of Time: {} launch: - /The Labyrinth of Time.app: + "/The Labyrinth of Time.app": - when: - os: mac store: steam - /labw.exe: + "/labw.exe": - when: - os: windows store: steam - /labyrinth.bin: + "/labyrinth.bin": - when: - os: linux store: steam @@ -550386,7 +551883,7 @@ The Lady: installDir: The Lady: {} launch: - /TheLady.exe: + "/TheLady.exe": - when: - os: windows store: steam @@ -550401,7 +551898,7 @@ The Land of Crows: installDir: The Land of Crows: {} launch: - /TheLandOfCrows.exe: + "/TheLandOfCrows.exe": - when: - os: windows store: steam @@ -550411,7 +551908,7 @@ The Land of Dasthir: installDir: The Land of Dasthir: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: @@ -550420,7 +551917,7 @@ The Land of Exile: installDir: The Land of Exile: {} launch: - /MOSExample.exe: + "/MOSExample.exe": - when: - os: windows store: steam @@ -550430,7 +551927,7 @@ The Land of Eyas: installDir: The Land Of Eyas: {} launch: - /Eyas.exe: + "/Eyas.exe": - when: - os: windows store: steam @@ -550440,7 +551937,7 @@ The Land of Glass: installDir: Land of Glass: {} launch: - /The Land of Glass.exe: + "/The Land of Glass.exe": - when: - os: windows store: steam @@ -550450,15 +551947,15 @@ The Land of Lamia: installDir: The Land Of Lamia: {} launch: - /Linux.x86_64: + "/Linux.x86_64": - when: - os: linux store: steam - /Windows_Build.exe: + "/Windows_Build.exe": - when: - os: windows store: steam - /mac_universal.app: + "/mac_universal.app": - when: - os: mac store: steam @@ -550468,7 +551965,7 @@ The Land of Pain: installDir: The Land of Pain: {} launch: - /bin/win_x64/The Land Of Pain.exe: + "/bin/win_x64/The Land Of Pain.exe": - when: - bit: 64 os: windows @@ -550479,11 +551976,11 @@ The Land of the Seazogs: installDir: The Land of the Seazogs: {} launch: - /LandOfSeazogs.app: + "/LandOfSeazogs.app": - when: - os: mac store: steam - /TheLandOfSeazogs.exe: + "/TheLandOfSeazogs.exe": - when: - os: windows store: steam @@ -550493,26 +551990,26 @@ The Language Game: installDir: The Language Game: {} launch: - /Bin/Lingo.exe: + "/Bin/Lingo.exe": - when: - os: windows store: steam - workingDir: /Bin + workingDir: "/Bin" steam: id: 372720 The Language of Love: installDir: The Language of Love: {} launch: - /lovelanguage.app: + "/lovelanguage.app": - when: - os: mac store: steam - /lovelanguage.exe: + "/lovelanguage.exe": - when: - os: windows store: steam - /lovelanguage.sh: + "/lovelanguage.sh": - when: - os: linux store: steam @@ -550527,7 +552024,7 @@ The Last: installDir: The Last: {} launch: - /TheLast.exe: + "/TheLast.exe": - when: - os: windows store: steam @@ -550537,32 +552034,32 @@ The Last AntLion: installDir: The Last AntLion: {} launch: - /steamworks_sdk_144/sdk/tools/ContentBuilder/content/mac_content/The Last AntLion.app/Contents/MacOS/TheLastAntLion: + "/steamworks_sdk_144/sdk/tools/ContentBuilder/content/mac_content/The Last AntLion.app/Contents/MacOS/TheLastAntLion": - when: - os: mac store: steam - workingDir: /steamworks_sdk_144/sdk/tools/ContentBuilder/content/mac_content - /steamworks_sdk_144/sdk/tools/ContentBuilder/content/windows_content/The Last AntLion.exe: + workingDir: "/steamworks_sdk_144/sdk/tools/ContentBuilder/content/mac_content" + "/steamworks_sdk_144/sdk/tools/ContentBuilder/content/windows_content/The Last AntLion.exe": - when: - bit: 64 os: windows store: steam - workingDir: /steamworks_sdk_144/sdk/tools/ContentBuilder/content/windows_content + workingDir: "/steamworks_sdk_144/sdk/tools/ContentBuilder/content/windows_content" steam: id: 1108130 The Last Aura: installDir: The Last Aura: {} launch: - /The Last Aura.app: + "/The Last Aura.app": - when: - os: mac store: steam - /The Last Aura.exe: + "/The Last Aura.exe": - when: - os: windows store: steam - /The Last Aura.x86_64: + "/The Last Aura.x86_64": - when: - os: linux store: steam @@ -550571,11 +552068,11 @@ The Last Aura: The Last Barbarian: steam: id: 828470 -The Last Baron's Stunt: +"The Last Baron's Stunt": installDir: - The last Baron's stunt: {} + "The last Baron's stunt": {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: @@ -550584,15 +552081,15 @@ The Last Birdling: installDir: The Last Birdling: {} launch: - /birdling.app: + "/birdling.app": - when: - os: mac store: steam - /birdling.exe: + "/birdling.exe": - when: - os: windows store: steam - /birdling.sh: + "/birdling.sh": - when: - os: linux store: steam @@ -550600,12 +552097,12 @@ The Last Birdling: id: 629430 The Last Blade: files: - /LastBlade/: + "/LastBlade/": tags: - save when: - os: windows - /LastBlade//UserDefault.xml: + "/LastBlade//UserDefault.xml": tags: - config when: @@ -550615,7 +552112,7 @@ The Last Blade: installDir: THE LAST BLADE: {} launch: - /LastBlade.exe: + "/LastBlade.exe": - when: - os: windows store: steam @@ -550627,7 +552124,7 @@ The Last Blade 2: installDir: THE LAST BLADE 2: {} launch: - /LastBlade2App.exe: + "/LastBlade2App.exe": - when: - os: windows store: steam @@ -550637,14 +552134,14 @@ The Last Bullet: installDir: The Last Piece of Bacon Exe Files: {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: id: 811500 The Last Campfire: files: - /AppData/LocalLow/Hello Games/The Last Campfire/JSONSaveData.json: + "/AppData/LocalLow/Hello Games/The Last Campfire/JSONSaveData.json": tags: - save when: @@ -550652,7 +552149,7 @@ The Last Campfire: installDir: The Last Campfire: {} launch: - /The Last Campfire.exe: + "/The Last Campfire.exe": - when: - store: steam registry: @@ -550663,7 +552160,7 @@ The Last Campfire: id: 990630 The Last Cargo: files: - /Data/Other/TLC_.ini: + "/Data/Other/TLC_.ini": tags: - config when: @@ -550671,7 +552168,7 @@ The Last Cargo: installDir: The Last Cargo: {} launch: - /TLC Launcher.exe: + "/TLC Launcher.exe": - when: - os: windows store: steam @@ -550681,7 +552178,7 @@ The Last Case of Benedict Fox: installDir: The Last Case of Benedict Fox: {} launch: - /The Last Case of Benedict Fox.exe: + "/The Last Case of Benedict Fox.exe": - when: - store: steam steam: @@ -550690,7 +552187,7 @@ The Last Companion-我与我行将离去的小友。: installDir: The Last Companion: {} launch: - /LittleFriend.exe: + "/LittleFriend.exe": - when: - store: steam steam: @@ -550699,7 +552196,7 @@ The Last Conflict: installDir: The Last Conflict: {} launch: - /The Last Conflict.exe: + "/The Last Conflict.exe": - when: - os: windows store: steam @@ -550712,19 +552209,19 @@ The Last Cowboy: installDir: The Last Cowboy: {} launch: - /The last cowboy.exe: + "/The last cowboy.exe": - when: - bit: 64 os: windows store: steam steam: id: 1087100 -'The Last Crown: Blackenrock': +"The Last Crown: Blackenrock": steam: id: 291750 -'The Last Crown: Midnight Horror': +"The Last Crown: Midnight Horror": files: - /Saved Games/Midnight Horror: + "/Saved Games/Midnight Horror": tags: - save when: @@ -550732,7 +552229,7 @@ The Last Cowboy: installDir: Midnight Horror: {} launch: - /Launcher.exe: + "/Launcher.exe": - when: - store: steam registry: @@ -550745,16 +552242,16 @@ The Last Cube: installDir: The Last Cube: {} launch: - /The Last Cube.exe: + "/The Last Cube.exe": - when: - bit: 64 os: windows store: steam - /the_last_cube.x86_64: + "/the_last_cube.x86_64": - when: - os: linux store: steam - /thelastcube.app: + "/thelastcube.app": - when: - os: mac store: steam @@ -550767,7 +552264,7 @@ The Last DeadEnd: installDir: The Last DeadEnd: {} launch: - /TheLastDeadEnd.exe: + "/TheLastDeadEnd.exe": - when: - bit: 64 os: windows @@ -550783,40 +552280,40 @@ The Last Dogma: installDir: The Last Dogma: {} launch: - /TLD.exe: + "/TLD.exe": - when: - os: windows store: steam - /TLD.x86: + "/TLD.x86": - when: - os: linux store: steam steam: id: 374510 -'The Last Door: Collector''s Edition': +"The Last Door: Collector's Edition": files: - /.appdata/TLDCEPC/Local Store/#SharedObjects/TLDCEPC.swf: + "/.appdata/TLDCEPC/Local Store/#SharedObjects/TLDCEPC.swf": tags: - save when: - os: linux - /TLDCEPC/Local Store/#SharedObjects/TLDCEPC.swf/episode*.sol: + "/TLDCEPC/Local Store/#SharedObjects/TLDCEPC.swf/episode*.sol": tags: - save when: - os: windows - /TLDCEPC/Local Store/#SharedObjects/TLDCEPC.swf/system_data.sol: + "/TLDCEPC/Local Store/#SharedObjects/TLDCEPC.swf/system_data.sol": tags: - config when: - os: windows - /Packages/GAMETROOPERS.TheLastDoorCollectorsEdition_334sksj6ker18/LocalState/episode*.sox3: + "/Packages/GAMETROOPERS.TheLastDoorCollectorsEdition_334sksj6ker18/LocalState/episode*.sox3": tags: - save when: - os: windows store: microsoft - /Packages/GAMETROOPERS.TheLastDoorCollectorsEdition_334sksj6ker18/LocalState/system_data.sox3: + "/Packages/GAMETROOPERS.TheLastDoorCollectorsEdition_334sksj6ker18/LocalState/system_data.sox3": tags: - config when: @@ -550827,34 +552324,34 @@ The Last Dogma: installDir: The Last Door CE: {} launch: - /TLDCEPC.app: + "/TLDCEPC.app": - when: - os: mac store: steam - /The Last Door CE.exe: + "/The Last Door CE.exe": - when: - os: windows store: steam - /run.sh: + "/run.sh": - when: - os: linux store: steam steam: id: 284390 -'The Last Door: Season 2 Collector''s Edition': +"The Last Door: Season 2 Collector's Edition": files: - /.config/unity3d/DefaultCompany/TLDCE2: + "/.config/unity3d/DefaultCompany/TLDCE2": tags: - config - save when: - os: linux - /AppData/LocalLow/DefaultCompany/TLDCE2/OPTIONS.json: + "/AppData/LocalLow/DefaultCompany/TLDCE2/OPTIONS.json": tags: - config when: - os: windows - /AppData/LocalLow/TheGameKitchen/TLDCE2: + "/AppData/LocalLow/TheGameKitchen/TLDCE2": tags: - config - save @@ -550865,21 +552362,21 @@ The Last Dogma: installDir: TLDCE2: {} launch: - /TLDCE2.exe: + "/TLDCE2.exe": - when: - os: windows store: steam - /TLDCE2.x86: + "/TLDCE2.x86": - when: - bit: 32 os: linux store: steam - /TLDCE2.x86_64: + "/TLDCE2.x86_64": - when: - bit: 64 os: linux store: steam - /tldce2.app: + "/tldce2.app": - when: - os: mac store: steam @@ -550891,20 +552388,20 @@ The Last Dogma: id: 402530 The Last Dream: files: - /TheLastDream: + "/TheLastDream": tags: - config - save when: - os: windows installDir: - The Last Dream Developer's edition: {} + "The Last Dream Developer's edition": {} launch: - /The Last Dream Steam.app: + "/The Last Dream Steam.app": - when: - os: mac store: steam - /TheLastDream.exe: + "/TheLastDream.exe": - when: - os: windows store: steam @@ -550917,7 +552414,7 @@ The Last Escape of Yeti: installDir: The Last Escape of Yeti: {} launch: - /Big-run.exe: + "/Big-run.exe": - when: - os: windows store: steam @@ -550925,17 +552422,17 @@ The Last Escape of Yeti: id: 1104230 The Last Express: files: - /userdata//252710/remote/*.egg: + "/userdata//252710/remote/*.egg": tags: - save when: - store: steam - /TheLastExpressSteam: + "/TheLastExpressSteam": tags: - config when: - os: windows - /TheLastExpressSteam/*.egg: + "/TheLastExpressSteam/*.egg": tags: - save when: @@ -550945,11 +552442,11 @@ The Last Express: installDir: LastExpress: {} launch: - /TheLastExpressSteam.app: + "/TheLastExpressSteam.app": - when: - os: mac store: steam - /TheLastExpressSteam.exe: + "/TheLastExpressSteam.exe": - when: - os: windows store: steam @@ -550957,22 +552454,22 @@ The Last Express: id: 252710 The Last Federation: files: - /RuntimeData/Save: + "/RuntimeData/Save": tags: - save when: - os: windows - /RuntimeData/inputbindings.dat: + "/RuntimeData/inputbindings.dat": tags: - config when: - os: windows - /RuntimeData/settings.dat: + "/RuntimeData/settings.dat": tags: - config when: - os: windows - /Library/Application Support/Steam/steamapps/common/The Last Federation/RuntimeData/Save: + "/Library/Application Support/Steam/steamapps/common/The Last Federation/RuntimeData/Save": tags: - save when: @@ -550982,20 +552479,20 @@ The Last Federation: installDir: The Last Federation: {} launch: - /LastFederation.app: + "/LastFederation.app": - when: - os: mac store: steam - /LastFederation.exe: + "/LastFederation.exe": - when: - os: windows store: steam - /LastFederationLinux.x86: + "/LastFederationLinux.x86": - when: - bit: 32 os: linux store: steam - /LastFederationLinux.x86_64: + "/LastFederationLinux.x86_64": - when: - bit: 64 os: linux @@ -551006,7 +552503,7 @@ The Last Friend: installDir: The Last Friend: {} launch: - /The Last Friend.exe: + "/The Last Friend.exe": - when: - os: windows store: steam @@ -551016,7 +552513,7 @@ The Last Front: installDir: The Last Front: {} launch: - /The Last Front.exe: + "/The Last Front.exe": - when: - os: windows store: steam @@ -551026,12 +552523,12 @@ The Last Haven: installDir: The Last Haven: {} launch: - /TheLastHaven/Binaries/Win32/TheLastHaven-Win32-Shipping.exe: + "/TheLastHaven/Binaries/Win32/TheLastHaven-Win32-Shipping.exe": - when: - bit: 32 os: windows store: steam - /TheLastHaven/Binaries/Win64/TheLastHaven-Win64-Shipping.exe: + "/TheLastHaven/Binaries/Win64/TheLastHaven-Win64-Shipping.exe": - when: - bit: 64 os: windows @@ -551045,7 +552542,7 @@ The Last Hex: installDir: The Last Hex: {} launch: - /TheLastHex.exe: + "/TheLastHex.exe": - when: - os: windows store: steam @@ -551053,7 +552550,7 @@ The Last Hex: id: 891370 The Last Hope: files: - LocalLow/TheLastHopeCloud/PlayerSaves: + "LocalLow/TheLastHopeCloud/PlayerSaves": tags: - save when: @@ -551061,26 +552558,26 @@ The Last Hope: installDir: The Last Hope: {} launch: - /The Last Hope.exe: + "/The Last Hope.exe": - when: - os: windows store: steam steam: id: 522570 -'The Last Hope: Atomic Bomb - Crypto War': +"The Last Hope: Atomic Bomb - Crypto War": installDir: The Last Hope Atomic Bomb: {} launch: - /The Last Hope Atomic Bomb Crypto War.exe: + "/The Last Hope Atomic Bomb Crypto War.exe": - when: - store: steam steam: id: 801320 -'The Last Hope: Trump vs Mafia': +"The Last Hope: Trump vs Mafia": installDir: The Last Hope Trump vs Mafia: {} launch: - /The Last Hope Trump vs Mafia.exe: + "/The Last Hope Trump vs Mafia.exe": - when: - os: windows store: steam @@ -551090,7 +552587,7 @@ The Last Hunt: installDir: THE LAST HUNT: {} launch: - /THE LAST HUNT.exe: + "/THE LAST HUNT.exe": - when: - os: windows store: steam @@ -551100,15 +552597,15 @@ The Last Journey: installDir: The Last Journey: {} launch: - /The Last Journey 1.1.app: + "/The Last Journey 1.1.app": - when: - os: mac store: steam - /The Last Journey 1.1.exe: + "/The Last Journey 1.1.exe": - when: - os: windows store: steam - /the-last-journey.deb: + "/the-last-journey.deb": - when: - os: linux store: steam @@ -551125,27 +552622,27 @@ The Last Leviathan: installDir: The Last Leviathan: {} launch: - /TheLastLeviathan.app: + "/TheLastLeviathan.app": - when: - bit: 64 os: mac store: steam - /TheLastLeviathan.exe: + "/TheLastLeviathan.exe": - when: - bit: 64 os: windows store: steam - /TheLastLeviathan.x86: + "/TheLastLeviathan.x86": - when: - bit: 32 os: linux store: steam - /TheLastLeviathan.x86_64: + "/TheLastLeviathan.x86_64": - when: - bit: 64 os: linux store: steam - /TheLastLeviathan32.exe: + "/TheLastLeviathan32.exe": - when: - bit: 32 os: windows @@ -551156,12 +552653,12 @@ The Last Look: installDir: The Last Look: {} launch: - /TheLastLook/Binaries/Win32/TheLastLook-Win32-Shipping.exe: + "/TheLastLook/Binaries/Win32/TheLastLook-Win32-Shipping.exe": - when: - bit: 32 os: windows store: steam - /TheLastLook/Binaries/Win64/TheLastLook-Win64-Shipping.exe: + "/TheLastLook/Binaries/Win64/TheLastLook-Win64-Shipping.exe": - when: - bit: 64 os: windows @@ -551175,15 +552672,15 @@ The Last Monster Master: installDir: The Last Monster Master: {} launch: - /The Last Monster Master.app/Contents/MacOS/The Last Monster Master: + "/The Last Monster Master.app/Contents/MacOS/The Last Monster Master": - when: - os: mac store: steam - /TheLastMonsterMaster: + "/TheLastMonsterMaster": - when: - os: linux store: steam - /TheLastMonsterMaster.exe: + "/TheLastMonsterMaster.exe": - when: - os: windows store: steam @@ -551192,26 +552689,26 @@ The Last Monster Master: The Last Night: steam: id: 612400 -'The Last Night: The First Invation': +"The Last Night: The First Invation": steam: id: 662600 The Last NightMary - A Lenda do Cabeça de Cuia: installDir: The Last NightMary - A Lenda do Cabeça de Cuia: {} launch: - /TheLastNightMary.app/Contents/MacOS/TheLastNightMary: + "/TheLastNightMary.app/Contents/MacOS/TheLastNightMary": - when: - os: mac store: steam - /TheLastNightMary.exe: + "/TheLastNightMary.exe": - when: - os: windows store: steam - /TheLastNightMary.x86: + "/TheLastNightMary.x86": - when: - os: linux store: steam - /game.exe: + "/game.exe": - when: - store: steam steam: @@ -551230,7 +552727,7 @@ The Last Patient: installDir: The Last Patient: {} launch: - /The Last Patient.exe: + "/The Last Patient.exe": - when: - os: windows store: steam @@ -551243,7 +552740,7 @@ The Last Pixel: installDir: The Last Pixel: {} launch: - /TheLastPixel.exe: + "/TheLastPixel.exe": - when: - os: windows store: steam @@ -551253,20 +552750,20 @@ The Last Promise: installDir: The Last Promise: {} launch: - /Game.exe: - - arguments: '--in-process-gpu' + "/Game.exe": + - arguments: "--in-process-gpu" when: - store: steam steam: id: 1149180 The Last Remnant: files: - /My Games/The last remnant/RushGame/Config: + "/My Games/The last remnant/RushGame/Config": tags: - config when: - os: windows - /My Games/The last remnant/RushGame/Save: + "/My Games/The last remnant/RushGame/Save": tags: - save when: @@ -551274,7 +552771,7 @@ The Last Remnant: installDir: The Last Remnant: {} launch: - /Binaries/TLR.exe: + "/Binaries/TLR.exe": - when: - store: steam steam: @@ -551283,7 +552780,7 @@ The Last Rolling Hero: installDir: TheLastRollingHero: {} launch: - /TheLastRollingHero.exe: + "/TheLastRollingHero.exe": - when: - os: windows store: steam @@ -551293,15 +552790,15 @@ The Last Roman Village: installDir: The Last Roman Village: {} launch: - /TLRV.exe: + "/TLRV.exe": - when: - os: windows store: steam - /TLRV.x86_64: + "/TLRV.x86_64": - when: - os: linux store: steam - /The Last Roman Village.app/Contents/MacOS/The Last Roman Village: + "/The Last Roman Village.app/Contents/MacOS/The Last Roman Village": - when: - os: mac store: steam @@ -551318,7 +552815,7 @@ The Last Show of Mr. Chardish: installDir: Ars Fabulae: {} launch: - /The Last Show of Mr. Chardish.exe: + "/The Last Show of Mr. Chardish.exe": - when: - store: steam steam: @@ -551327,7 +552824,7 @@ The Last Sigil: installDir: The Last Sigil: {} launch: - /The Last Sigil.exe: + "/The Last Sigil.exe": - when: - os: windows store: steam @@ -551337,7 +552834,7 @@ The Last Sin: installDir: The Last Sin: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -551347,11 +552844,11 @@ The Last Sky: installDir: The Last Sky: {} launch: - /TheLastSky.app/Contents/MacOS/TheLastSky: + "/TheLastSky.app/Contents/MacOS/TheLastSky": - when: - os: mac store: steam - /TheLastSky.exe: + "/TheLastSky.exe": - when: - os: windows store: steam @@ -551369,7 +552866,7 @@ The Last Sorcerer: id: 672320 The Last Sovereign: files: - /*.rvdata2: + "/*.rvdata2": tags: - save when: @@ -551377,14 +552874,14 @@ The Last Sovereign: installDir: The Last Sovereign: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: id: 951830 The Last Spell: files: - /AppData/LocalLow/Ishtar Games/The Last Spell/Save: + "/AppData/LocalLow/Ishtar Games/The Last Spell/Save": tags: - save when: @@ -551394,7 +552891,7 @@ The Last Spell: installDir: The Last Spell: {} launch: - /The Last Spell.exe: + "/The Last Spell.exe": - when: - os: windows store: steam @@ -551404,14 +552901,14 @@ The Last Sphinx ARG: installDir: The Last Sphinx ARG: {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: id: 970360 -'The Last Stand: Aftermath': +"The Last Stand: Aftermath": files: - /AppData/LocalLow/Con Artist Games/The Last Stand_ Aftermath/: + "/AppData/LocalLow/Con Artist Games/The Last Stand_ Aftermath/": tags: - config - save @@ -551422,21 +552919,21 @@ The Last Sphinx ARG: installDir: The Last Stand Aftermath: {} launch: - /TLSA.exe: + "/TLSA.exe": - when: - bit: 64 os: windows store: steam steam: id: 1266840 -'The Last Stand: Legacy Collection': +"The Last Stand: Legacy Collection": files: - /TheLastStandLegacyCollection/Local Store/#SharedObjects/TheLastStandLegacyCollection.swf: + "/TheLastStandLegacyCollection/Local Store/#SharedObjects/TheLastStandLegacyCollection.swf": tags: - config when: - os: windows - /TheLastStandLegacyCollection/Local Store/#SharedObjects/gamefiles: + "/TheLastStandLegacyCollection/Local Store/#SharedObjects/gamefiles": tags: - save when: @@ -551446,11 +552943,11 @@ The Last Sphinx ARG: installDir: The Last Stand Trilogy: {} launch: - /TheLastStandLegacyCollection.app: + "/TheLastStandLegacyCollection.app": - when: - os: mac store: steam - /TheLastStandLegacyCollection.app/TheLastStandLegacyCollection.exe: + "/TheLastStandLegacyCollection.app/TheLastStandLegacyCollection.exe": - when: - os: windows store: steam @@ -551462,11 +552959,11 @@ The Last Starship: installDir: The Last Starship: {} launch: - /Last Starship.app: + "/Last Starship.app": - when: - os: mac store: steam - /LastStarship64.exe: + "/LastStarship64.exe": - when: - bit: 64 os: windows @@ -551480,7 +552977,7 @@ The Last Sunshine: installDir: The Last Sunshine: {} launch: - /The Last Sunshine.exe: + "/The Last Sunshine.exe": - when: - os: windows store: steam @@ -551495,28 +552992,28 @@ The Last Time: installDir: The Last Time: {} launch: - /The Last Time.app/Contents/MacOS/The Last Time: + "/The Last Time.app/Contents/MacOS/The Last Time": - when: - os: mac store: steam - /The Last Time.exe: + "/The Last Time.exe": - when: - os: windows store: steam - /The Last Time.x86: + "/The Last Time.x86": - when: - os: linux store: steam steam: id: 468050 -'The Last Tinker: City of Colors': +"The Last Tinker: City of Colors": files: - /Mimimi Productions/The Last Tinker/GameState*.tnk: + "/Mimimi Productions/The Last Tinker/GameState*.tnk": tags: - save when: - os: windows - /Mimimi Productions/The Last Tinker/GlobalData.tnk: + "/Mimimi Productions/The Last Tinker/GlobalData.tnk": tags: - config when: @@ -551526,15 +553023,15 @@ The Last Time: installDir: The Last Tinker City of Colors: {} launch: - /the last tinker.app: + "/the last tinker.app": - when: - os: mac store: steam - /the last tinker.exe: + "/the last tinker.exe": - when: - os: windows store: steam - /the last tinker.x86: + "/the last tinker.x86": - when: - os: linux store: steam @@ -551544,7 +553041,7 @@ The Last Tower: installDir: The Last Tower: {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: @@ -551553,7 +553050,7 @@ The Last Town: installDir: The Last Town: {} launch: - /The Last Town.exe: + "/The Last Town.exe": - when: - os: windows store: steam @@ -551563,21 +553060,21 @@ The Last Train: installDir: The Last Train: {} launch: - /Mac.app: + "/Mac.app": - when: - os: mac store: steam - /The Last Train.exe: + "/The Last Train.exe": - when: - bit: 64 os: windows store: steam - /The Last Train.x86: + "/The Last Train.x86": - when: - bit: 32 os: linux store: steam - /The Last Train.x86_64: + "/The Last Train.x86_64": - when: - bit: 64 os: linux @@ -551588,7 +553085,7 @@ The Last Tree: installDir: The Last Tree: {} launch: - /TheLastTree.exe: + "/TheLastTree.exe": - when: - os: windows store: steam @@ -551601,38 +553098,38 @@ The Last Warlock: installDir: The Last Warlock: {} launch: - /TheLastWarlock.app: - - arguments: '-fullscreen' + "/TheLastWarlock.app": + - arguments: "-fullscreen" when: - os: mac store: steam - - arguments: '-windowed' + - arguments: "-windowed" when: - os: mac store: steam - /TheLastWarlock.exe: - - arguments: '-fullscreen' + "/TheLastWarlock.exe": + - arguments: "-fullscreen" when: - os: windows store: steam - - arguments: '-windowed' + - arguments: "-windowed" when: - os: windows store: steam - - arguments: '-fullscreen -opengl' + - arguments: "-fullscreen -opengl" when: - os: windows store: steam - - arguments: '-windowed -opengl' + - arguments: "-windowed -opengl" when: - os: windows store: steam - /TheLastWarlock.sh: - - arguments: '-fullscreen' + "/TheLastWarlock.sh": + - arguments: "-fullscreen" when: - os: linux store: steam - - arguments: '-windowed' + - arguments: "-windowed" when: - os: linux store: steam @@ -551642,15 +553139,15 @@ The Last Weekend: installDir: The Last Weekend: {} launch: - /The_Last_Weekend.app: + "/The_Last_Weekend.app": - when: - os: mac store: steam - /The_Last_Weekend.exe: + "/The_Last_Weekend.exe": - when: - os: windows store: steam - /The_Last_Weekend.sh: + "/The_Last_Weekend.sh": - when: - os: linux store: steam @@ -551660,15 +553157,15 @@ The Last Wizard: installDir: The Last Wizard: {} launch: - /The Last Wizard.app/Contents/MacOS/The Last Wizard: + "/The Last Wizard.app/Contents/MacOS/The Last Wizard": - when: - os: mac store: steam - /TheLastWizard: + "/TheLastWizard": - when: - os: linux store: steam - /TheLastWizard.exe: + "/TheLastWizard.exe": - when: - os: windows store: steam @@ -551680,19 +553177,19 @@ The Last Worker: installDir: The Last Worker: {} launch: - /The Last Worker.exe: + "/The Last Worker.exe": - when: - store: steam steam: id: 1579280 The Last of Us Part I: files: - /Saved Games/The Last of Us Part I/users//savedata: + "/Saved Games/The Last of Us Part I/users//savedata": tags: - save when: - os: windows - /Saved Games/The Last of Us Part I/users//screeninfo.cfg: + "/Saved Games/The Last of Us Part I/users//screeninfo.cfg": tags: - config when: @@ -551700,7 +553197,7 @@ The Last of Us Part I: installDir: The Last of Us Part I: {} launch: - /launcher.exe: + "/launcher.exe": - arguments: service steam when: - store: steam @@ -551710,11 +553207,11 @@ The Lattice Grimoire: installDir: The Lattice Grimoire: {} launch: - /The Lattice Grimoire.app/Contents/MacOS/The Lattice Grimoire: + "/The Lattice Grimoire.app/Contents/MacOS/The Lattice Grimoire": - when: - os: mac store: steam - /The Lattice Grimoire.exe: + "/The Lattice Grimoire.exe": - when: - os: windows store: steam @@ -551724,49 +553221,49 @@ The Legacy of Music: installDir: The Legacy of Music: {} launch: - /VOT.exe: + "/VOT.exe": - when: - bit: 64 os: windows store: steam steam: id: 1006470 -'The Legacy: Forgotten Gates': +"The Legacy: Forgotten Gates": installDir: The Legacy Forgotten Gates: {} launch: - /The Legacy Forgotten Gates.app: + "/The Legacy Forgotten Gates.app": - when: - os: mac store: steam - /TheLegacy_ForgottenGates.exe: + "/TheLegacy_ForgottenGates.exe": - when: - os: windows store: steam steam: id: 630830 -'The Legacy: Prisoner': +"The Legacy: Prisoner": installDir: The Legacy Prisoner: {} launch: - /The Legacy Prisoner.app: + "/The Legacy Prisoner.app": - when: - os: mac store: steam - /TheLegacy_Prisoner.exe: + "/TheLegacy_Prisoner.exe": - when: - os: windows store: steam steam: id: 846700 -'The Legacy: Realm of Terror': +"The Legacy: Realm of Terror": files: - /*.LAY: + "/*.LAY": tags: - config when: - os: dos - /*.SAV: + "/*.SAV": tags: - save when: @@ -551776,19 +553273,19 @@ The Legacy of Music: installDir: The Legacy Realm of Terror: {} launch: - /dosbox_windows/dosbox.exe: - - arguments: '-conf dosbox.conf' + "/dosbox_windows/dosbox.exe": + - arguments: "-conf dosbox.conf" when: - os: windows store: steam - workingDir: /dosbox_windows + workingDir: "/dosbox_windows" steam: id: 1257890 The Legend Of Vraz: installDir: The Legend Of Vraz: {} launch: - /The Legend of Vraz.exe: + "/The Legend of Vraz.exe": - when: - os: windows store: steam @@ -551798,7 +553295,7 @@ The Legend of Arcadieu: installDir: The Legend of Arcadieu: {} launch: - /Arcadieu.exe: + "/Arcadieu.exe": - when: - os: windows store: steam @@ -551808,14 +553305,14 @@ The Legend of Arcadieu 2: installDir: The Legend of Arcadieu 2: {} launch: - /Arcadieu2.exe: + "/Arcadieu2.exe": - when: - store: steam steam: id: 1445110 The Legend of Bum-Bo: files: - /AppData/LocalLow/Edmund McMillen Games/The Legend of Bum-bo/progression.sav: + "/AppData/LocalLow/Edmund McMillen Games/The Legend of Bum-bo/progression.sav": tags: - save when: @@ -551825,7 +553322,7 @@ The Legend of Bum-Bo: installDir: The Legend of Bum-Bo: {} launch: - /the legend of bum-bo.exe: + "/the legend of bum-bo.exe": - when: - bit: 64 os: windows @@ -551836,11 +553333,11 @@ The Legend of Bum-Bo: - config steam: id: 1148650 -'The Legend of Candlewind: Nights & Candles': +"The Legend of Candlewind: Nights & Candles": installDir: - ' The Legend of Candlewind': {} + " The Legend of Candlewind": {} launch: - /Candlewind.exe: + "/Candlewind.exe": - arguments: candle when: - os: windows @@ -551851,7 +553348,7 @@ The Legend of Crystal Valley: installDir: The Legend of Crystal Valley: {} launch: - /locv.exe: + "/locv.exe": - when: - os: windows store: steam @@ -551861,17 +553358,17 @@ The Legend of Dark Witch: installDir: The Legend of Dark Witch: {} launch: - /The_Legend_of_Dark_Witch.exe: + "/The_Legend_of_Dark_Witch.exe": - when: - os: windows store: steam steam: id: 420770 -'The Legend of Dark Witch - Episode 2: The Price of Desire': +"The Legend of Dark Witch - Episode 2: The Price of Desire": installDir: The Legend of Dark Witch 2: {} launch: - /TLoDW2_JP_00.exe: + "/TLoDW2_JP_00.exe": - when: - os: windows store: steam @@ -551881,7 +553378,7 @@ The Legend of Dark Witch Renovation: installDir: The Legend of Dark Witch Renovation: {} launch: - /Ep1Switch_for_Steam.exe: + "/Ep1Switch_for_Steam.exe": - when: - os: windows store: steam @@ -551891,7 +553388,7 @@ The Legend of Evil: installDir: The Legend of Evil: {} launch: - /The Legend of Evil.exe: + "/The Legend of Evil.exe": - when: - os: windows store: steam @@ -551900,48 +553397,48 @@ The Legend of Evil: The Legend of Excalipurr: steam: id: 618560 -'The Legend of Heroes III: Shiroki Majo': +"The Legend of Heroes III: Shiroki Majo": files: - /SAVE: + "/SAVE": tags: - save when: - os: dos -'The Legend of Heroes IV: Akai Shizuku': +"The Legend of Heroes IV: Akai Shizuku": files: - /SAVE: + "/SAVE": tags: - save when: - os: dos - os: windows -'The Legend of Heroes V: Umi no Oriuta': +"The Legend of Heroes V: Umi no Oriuta": files: - /ED5_CFG.EXE: + "/ED5_CFG.EXE": tags: - config when: - os: windows - /SAVEDATA: + "/SAVEDATA": tags: - save when: - os: windows -'The Legend of Heroes: Ao no Kiseki': +"The Legend of Heroes: Ao no Kiseki": files: - /savefile: + "/savefile": tags: - save when: - os: windows -'The Legend of Heroes: Kuro no Kiseki II - Crimson Sin': +"The Legend of Heroes: Kuro no Kiseki II - Crimson Sin": files: - /Saved Games/CLE/Kuro_no_Kiseki2: + "/Saved Games/CLE/Kuro_no_Kiseki2": tags: - config when: - os: windows - /Saved Games/CLE/Kuro_no_Kiseki2/savedata: + "/Saved Games/CLE/Kuro_no_Kiseki2/savedata": tags: - save when: @@ -551949,20 +553446,20 @@ The Legend of Excalipurr: installDir: THE LEGEND OF HEROES KURO NO KISEKI2: {} launch: - /ed9.exe: + "/ed9.exe": - when: - os: windows store: steam steam: id: 2113920 -'The Legend of Heroes: Trails from Zero': +"The Legend of Heroes: Trails from Zero": files: - /Saved Games/Falcom/Zero: + "/Saved Games/Falcom/Zero": tags: - save when: - os: windows - /Falcom/Zero: + "/Falcom/Zero": tags: - config when: @@ -551975,37 +553472,37 @@ The Legend of Excalipurr: installDir: The Legend of Heroes Trails from Zero: {} launch: - /zero.exe: + "/zero.exe": - when: - store: steam - - arguments: '-latest' + - arguments: "-latest" when: - store: steam steam: id: 1668510 -'The Legend of Heroes: Trails in the Sky': +"The Legend of Heroes: Trails in the Sky": files: - /Saved Games/FALCOM/ED6: + "/Saved Games/FALCOM/ED6": tags: - save when: - os: windows - /Saved Games/FALCOM/ED6/config.ini: + "/Saved Games/FALCOM/ED6/config.ini": tags: - config when: - os: windows - /userdata//251150/remote/FC: + "/userdata//251150/remote/FC": tags: - save when: - store: steam - /userdata//251150/remote/config.ini: + "/userdata//251150/remote/config.ini": tags: - config when: - store: steam - /userdata//251150/remote/save: + "/userdata//251150/remote/save": tags: - save when: @@ -552015,24 +553512,24 @@ The Legend of Excalipurr: installDir: Trails in the Sky FC: {} launch: - /ed6_win_DX9.exe: + "/ed6_win_DX9.exe": - when: - store: steam steam: id: 251150 -'The Legend of Heroes: Trails in the Sky SC': +"The Legend of Heroes: Trails in the Sky SC": files: - /Saved Games/FALCOM/ED_SORA2: + "/Saved Games/FALCOM/ED_SORA2": tags: - save when: - os: windows - /Saved Games/FALCOM/ED_SORA2/ed6_win2.ini: + "/Saved Games/FALCOM/ED_SORA2/ed6_win2.ini": tags: - config when: - os: windows - /userdata//251150/remote/SC: + "/userdata//251150/remote/SC": tags: - save when: @@ -552042,19 +553539,19 @@ The Legend of Excalipurr: installDir: Trails in the Sky SC: {} launch: - /ed6_win2_DX9.exe: + "/ed6_win2_DX9.exe": - when: - store: steam steam: id: 251290 -'The Legend of Heroes: Trails in the Sky the 3rd': +"The Legend of Heroes: Trails in the Sky the 3rd": files: - /Saved Games/FALCOM/ED_SORA3: + "/Saved Games/FALCOM/ED_SORA3": tags: - save when: - os: windows - /userdata//251150/remote/TC: + "/userdata//251150/remote/TC": tags: - save when: @@ -552064,19 +553561,19 @@ The Legend of Excalipurr: installDir: Trails in the Sky the 3rd: {} launch: - /ed6_win3_DX9.exe: + "/ed6_win3_DX9.exe": - when: - store: steam steam: id: 436670 -'The Legend of Heroes: Trails into Reverie': +"The Legend of Heroes: Trails into Reverie": files: - /Saved Games/Falcom/ed8_psv5: + "/Saved Games/Falcom/ed8_psv5": tags: - save when: - os: windows - /Falcom/ed8_psv5: + "/Falcom/ed8_psv5": tags: - config when: @@ -552089,22 +553586,22 @@ The Legend of Excalipurr: installDir: The Legend of Heroes Trails into Reverie: {} launch: - /bin/Win64/hnk.exe: + "/bin/Win64/hnk.exe": - when: - store: steam - - arguments: '-latest' + - arguments: "-latest" when: - store: steam steam: id: 1668540 -'The Legend of Heroes: Trails of Cold Steel': +"The Legend of Heroes: Trails of Cold Steel": files: - /Saved Games/Falcom/ed8: + "/Saved Games/Falcom/ed8": tags: - save when: - os: windows - /TrailsOfColdSteel1/settings: + "/TrailsOfColdSteel1/settings": tags: - config when: @@ -552113,25 +553610,25 @@ The Legend of Excalipurr: id: 2029703882 id: gogExtra: + - 1414963737 - 1887831823 - 1920604877 - - 1414963737 installDir: Trails of Cold Steel: {} launch: - /ed8.exe: + "/ed8.exe": - when: - store: steam steam: id: 538680 -'The Legend of Heroes: Trails of Cold Steel II': +"The Legend of Heroes: Trails of Cold Steel II": files: - /Saved Games/FALCOM/ed8_2: + "/Saved Games/FALCOM/ed8_2": tags: - save when: - os: windows - /TrailsOfColdSteel2/settings.xml: + "/TrailsOfColdSteel2/settings.xml": tags: - config when: @@ -552140,38 +553637,38 @@ The Legend of Excalipurr: id: 1451952142 id: gogExtra: - - 1807569574 - - 1822223632 - - 1267549157 - - 2065861584 - - 1413588880 - - 1831828821 - - 1926151271 - - 1830460798 - 1125362036 - - 1940798188 + - 1267549157 + - 1396660388 + - 1413588880 - 1489496730 - 1723105806 - - 1396660388 + - 1807569574 + - 1822223632 + - 1830460798 + - 1831828821 + - 1926151271 + - 1940798188 + - 2065861584 installDir: Trails of Cold Steel II: {} launch: - /bin/Win32/ed8_2_PC_US.exe: + "/bin/Win32/ed8_2_PC_US.exe": - when: - store: steam - - arguments: '-latest' + - arguments: "-latest" when: - store: steam steam: id: 748490 -'The Legend of Heroes: Trails of Cold Steel III': +"The Legend of Heroes: Trails of Cold Steel III": files: - /Saved Games/FALCOM/ed8_psv3: + "/Saved Games/FALCOM/ed8_psv3": tags: - save when: - os: windows - /TrailsOfColdSteel3/settings.xml: + "/TrailsOfColdSteel3/settings.xml": tags: - config when: @@ -552181,22 +553678,22 @@ The Legend of Excalipurr: installDir: The Legend of Heroes Trails of Cold Steel III: {} launch: - /bin/x64/ed8_3_PC.exe: + "/bin/x64/ed8_3_PC.exe": - when: - store: steam - - arguments: '-latest' + - arguments: "-latest" when: - store: steam steam: id: 991270 -'The Legend of Heroes: Trails of Cold Steel IV': +"The Legend of Heroes: Trails of Cold Steel IV": files: - /Saved Games/FALCOM/ed8_psv4: + "/Saved Games/FALCOM/ed8_psv4": tags: - save when: - os: windows - /TrailsOfColdSteel4/settings.xml: + "/TrailsOfColdSteel4/settings.xml": tags: - config when: @@ -552206,22 +553703,22 @@ The Legend of Excalipurr: installDir: The Legend of Heroes Trails of Cold Steel IV: {} launch: - /bin/Win64/ed8_4_PC.exe: + "/bin/Win64/ed8_4_PC.exe": - when: - store: steam - - arguments: '-latest' + - arguments: "-latest" when: - store: steam steam: id: 1198090 -'The Legend of Heroes: Trails through Daybreak': +"The Legend of Heroes: Trails through Daybreak": files: - /Saved Games/Falcom/Kuro: + "/Saved Games/Falcom/Kuro": tags: - save when: - os: windows - /Falcom/Kuro: + "/Falcom/Kuro": tags: - config when: @@ -552231,20 +553728,20 @@ The Legend of Excalipurr: installDir: THE LEGEND OF HEROES KURO NO KISEKI: {} launch: - /ed9.exe: + "/ed9.exe": - when: - os: windows store: steam steam: id: 1811950 -'The Legend of Heroes: Trails to Azure': +"The Legend of Heroes: Trails to Azure": files: - /Saved Games/FALCOM/Ao: + "/Saved Games/FALCOM/Ao": tags: - save when: - os: windows - /Falcom/Ao: + "/Falcom/Ao": tags: - config when: @@ -552257,29 +553754,29 @@ The Legend of Excalipurr: installDir: The Legend of Heroes Trails to Azure: {} launch: - /ao.exe: + "/ao.exe": - when: - store: steam - - arguments: '-latest' + - arguments: "-latest" when: - store: steam steam: id: 1668520 -'The Legend of Heroes: Zero no Kiseki': +"The Legend of Heroes: Zero no Kiseki": files: - /savefile: + "/savefile": tags: - save when: - os: windows The Legend of Korra: files: - /Korra/GameData.dat: + "/Korra/GameData.dat": tags: - save when: - os: windows - /Korra/SystemData.dat: + "/Korra/SystemData.dat": tags: - config when: @@ -552287,7 +553784,7 @@ The Legend of Korra: installDir: The Legend of Korra: {} launch: - /LoK.exe: + "/LoK.exe": - when: - os: windows store: steam @@ -552295,40 +553792,40 @@ The Legend of Korra: id: 281690 The Legend of Kyrandia: files: - /WWSETUP.CFG: + "/WWSETUP.CFG": tags: - config when: - os: dos - /_KYRA???.SAV: + "/_KYRA???.SAV": tags: - save when: - os: dos gog: id: 1207659683 -'The Legend of Kyrandia: Hand of Fate': +"The Legend of Kyrandia: Hand of Fate": files: - /FATE_???.SAV: + "/FATE_???.SAV": tags: - save when: - os: dos - /HOF.CFG: + "/HOF.CFG": tags: - config when: - os: dos gog: id: 1207659813 -'The Legend of Kyrandia: Malcolm''s Revenge': +"The Legend of Kyrandia: Malcolm's Revenge": files: - /MALC_???.SAV: + "/MALC_???.SAV": tags: - save when: - os: dos - /PLAYER.INI: + "/PLAYER.INI": tags: - config when: @@ -552339,20 +553836,20 @@ The Legend of Monster Mountain: installDir: The Legend of Monster Mountain: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam steam: id: 877960 -'The Legend of Nayuta: Boundless Trails': +"The Legend of Nayuta: Boundless Trails": files: - /Saved Games/FALCOM/Nayuta: + "/Saved Games/FALCOM/Nayuta": tags: - save when: - os: windows - /Nayuta: + "/Nayuta": tags: - config when: @@ -552367,12 +553864,12 @@ The Legend of Protey: installDir: The Legend of Protey: {} launch: - /Game.app: + "/Game.app": - when: - os: mac store: steam - /nw.exe: - - arguments: '--in-process-gpu' + "/nw.exe": + - arguments: "--in-process-gpu" when: - store: steam steam: @@ -552381,7 +553878,7 @@ The Legend of Slime: installDir: The Legend of Slime: {} launch: - /tlos.exe: + "/tlos.exe": - when: - store: steam steam: @@ -552390,7 +553887,7 @@ The Legend of Sword and Fairy: installDir: PAL: {} launch: - /PalWorks.exe: + "/PalWorks.exe": - when: - os: windows store: steam @@ -552400,7 +553897,7 @@ The Legend of Tango: installDir: The Legend of Tango: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -552408,7 +553905,7 @@ The Legend of Tango: id: 394720 The Legend of Three Kingdoms: files: - /SAVES: + "/SAVES": tags: - save when: @@ -552416,14 +553913,14 @@ The Legend of Three Kingdoms: installDir: Sango1: {} launch: - /Sango.exe: + "/Sango.exe": - when: - store: steam steam: id: 1437820 The Legend of Three Kingdoms 2: files: - /SAVES: + "/SAVES": tags: - save when: @@ -552431,14 +553928,14 @@ The Legend of Three Kingdoms 2: installDir: Sango2: {} launch: - /Sango2.exe: + "/Sango2.exe": - when: - store: steam steam: id: 1437830 The Legend of Three Kingdoms 3: files: - /Save: + "/Save": tags: - config - save @@ -552447,14 +553944,14 @@ The Legend of Three Kingdoms 3: installDir: Sango3: {} launch: - /Sango3.exe: + "/Sango3.exe": - when: - store: steam steam: id: 1437840 The Legend of Three Kingdoms 4: files: - /Save: + "/Save": tags: - config - save @@ -552463,14 +553960,14 @@ The Legend of Three Kingdoms 4: installDir: Sango4: {} launch: - /Sango4.exe: + "/Sango4.exe": - when: - store: steam steam: id: 1437850 The Legend of Three Kingdoms 5: files: - /Save: + "/Save": tags: - config - save @@ -552479,14 +553976,14 @@ The Legend of Three Kingdoms 5: installDir: Sango5: {} launch: - /Sango5.exe: + "/Sango5.exe": - when: - store: steam steam: id: 1437860 The Legend of Three Kingdoms 6: files: - /Save: + "/Save": tags: - config - save @@ -552495,14 +553992,14 @@ The Legend of Three Kingdoms 6: installDir: Sango6: {} launch: - /Sango6.exe: + "/Sango6.exe": - when: - store: steam steam: id: 1437870 The Legend of Three Kingdoms 7: files: - /Save: + "/Save": tags: - config - save @@ -552511,14 +554008,14 @@ The Legend of Three Kingdoms 7: installDir: Sango7: {} launch: - /Sango7.exe: + "/Sango7.exe": - when: - store: steam steam: id: 1437880 The Legend of Tianding: files: - /AppData/LocalLow/CGCG/Zebra/*.sav: + "/AppData/LocalLow/CGCG/Zebra/*.sav": tags: - save when: @@ -552531,11 +554028,11 @@ The Legend of Tianding: installDir: The Legend of Liāu Thiam Ting: {} launch: - /Zebra.exe: + "/Zebra.exe": - when: - os: windows store: steam - /zebra.app/Contents/MacOS/Zebra: + "/zebra.app/Contents/MacOS/Zebra": - when: - os: mac store: steam @@ -552552,20 +554049,20 @@ The Legend of Viccess: installDir: TheLegendofViccess: {} launch: - /TheLegendofViccess.exe: + "/TheLegendofViccess.exe": - when: - os: windows store: steam steam: id: 1102210 -'The Legend of Zelda: Ocarina of Time (Ship of Harkinian)': +"The Legend of Zelda: Ocarina of Time (Ship of Harkinian)": files: - /Save/fileX.sav: + "/Save/fileX.sav": tags: - save when: - os: windows - /shipofharkinian.json: + "/shipofharkinian.json": tags: - config when: @@ -552574,7 +554071,7 @@ The Legend of the Dragonflame High School: installDir: The Legend of the Dragonflame High School: {} launch: - /Dragonflamehighschool.exe: + "/Dragonflamehighschool.exe": - when: - store: steam steam: @@ -552583,22 +554080,22 @@ The Legend of the Dragonflame High School 2: installDir: Dragonflamehighschool2: {} launch: - /Dragonflamehighschool2.exe: + "/Dragonflamehighschool2.exe": - when: - os: windows store: steam steam: id: 1032040 -'The Legend: A University Story': +"The Legend: A University Story": installDir: TLAUS: {} launch: - /bin/win_x64/TLAUS.exe: + "/bin/win_x64/TLAUS.exe": - when: - bit: 64 os: windows store: steam - /bin/win_x86/TLAUS.exe: + "/bin/win_x86/TLAUS.exe": - when: - bit: 32 store: steam @@ -552611,7 +554108,7 @@ The Legendary Player - Make Your Reputation: installDir: The Legendary Player - Make Your Reputation: {} launch: - /The Legendary Player.exe: + "/The Legendary Player.exe": - when: - os: windows store: steam @@ -552621,7 +554118,7 @@ The Legendary of Bean: installDir: The Legend of Bean: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -552631,7 +554128,7 @@ The Legends of Class one 嗨哥一班大冒险: installDir: TheLegendsofClassone: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -552641,18 +554138,18 @@ The Legends of Owlia: installDir: The Legends of Owlia: {} launch: - /owlia-1.1.2.exe: + "/owlia-1.1.2.exe": - when: - bit: 64 os: windows store: steam steam: id: 569590 -'The Legion: FringeBound': +"The Legion: FringeBound": installDir: The Legion FringeBound: {} launch: - /The Legion FringeBound.exe: + "/The Legion FringeBound.exe": - when: - os: windows store: steam @@ -552662,7 +554159,7 @@ The Legions of Rome: installDir: The Legions of Rome: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -552670,22 +554167,22 @@ The Legions of Rome: id: 527510 The Lego Movie 2 Videogame: files: - /Library/Application Support/Feral Interactive/The LEGO Movie 2: + "/Library/Application Support/Feral Interactive/The LEGO Movie 2": tags: - config when: - os: mac - /Library/Application Support/Feral Interactive/The LEGO Movie 2/SaveData/SAVEDGAMES: + "/Library/Application Support/Feral Interactive/The LEGO Movie 2/SaveData/SAVEDGAMES": tags: - save when: - os: mac - /Warner Bros. Interactive Entertainment/LEGO The LEGO Movie 2/PCCONFIG.TXT: + "/Warner Bros. Interactive Entertainment/LEGO The LEGO Movie 2/PCCONFIG.TXT": tags: - config when: - os: windows - /Warner Bros. Interactive Entertainment/LEGO The LEGO Movie 2/SAVEDGAMES: + "/Warner Bros. Interactive Entertainment/LEGO The LEGO Movie 2/SAVEDGAMES": tags: - save when: @@ -552693,12 +554190,12 @@ The Lego Movie 2 Videogame: installDir: The LEGO Movie 2 Videogame: {} launch: - /LEGO The LEGO Movie 2_DX11.exe: + "/LEGO The LEGO Movie 2_DX11.exe": - when: - bit: 64 os: windows store: steam - /The LEGO Movie 2.app: + "/The LEGO Movie 2.app": - when: - os: mac store: steam @@ -552706,22 +554203,22 @@ The Lego Movie 2 Videogame: id: 881320 The Lego Movie Videogame: files: - /Library/Application Support/Feral Interactive/The LEGO Movie: + "/Library/Application Support/Feral Interactive/The LEGO Movie": tags: - config when: - os: mac - /Library/Application Support/Feral Interactive/The LEGO Movie/SaveData: + "/Library/Application Support/Feral Interactive/The LEGO Movie/SaveData": tags: - save when: - os: mac - /userdata//267530/savedgames: + "/userdata//267530/savedgames": tags: - save when: - store: steam - /ttales/The LEGO Movie - Videogame: + "/ttales/The LEGO Movie - Videogame": tags: - config when: @@ -552729,11 +554226,11 @@ The Lego Movie Videogame: installDir: The LEGO Movie - Videogame: {} launch: - /The LEGO Movie.app: + "/The LEGO Movie.app": - when: - os: mac store: steam - /legoemmet.exe: + "/legoemmet.exe": - when: - os: windows store: steam @@ -552741,13 +554238,13 @@ The Lego Movie Videogame: id: 267530 The Lego Ninjago Movie Video Game: files: - /userdata//640590/remote/savedgames: + "/userdata//640590/remote/savedgames": tags: - save when: - os: windows store: steam - /Warner Bros. Interactive Entertainment/The LEGO Ninjago Movie Video Game/PCCONFIG.TXT: + "/Warner Bros. Interactive Entertainment/The LEGO Ninjago Movie Video Game/PCCONFIG.TXT": tags: - config when: @@ -552755,12 +554252,12 @@ The Lego Ninjago Movie Video Game: installDir: LEGONinjago: {} launch: - /LEGONINJAGO.exe: + "/LEGONINJAGO.exe": - when: - bit: 32 os: windows store: steam - /LEGONINJAGO_DX11.exe: + "/LEGONINJAGO_DX11.exe": - when: - bit: 64 os: windows @@ -552769,13 +554266,13 @@ The Lego Ninjago Movie Video Game: id: 640590 The Leisure of Grisaia: files: - /Frontwing/The Fruit of Grisaia -The Leisure of Grisaia-/*.dat: + "/Frontwing/The Fruit of Grisaia -The Leisure of Grisaia-/*.dat": tags: - config - save when: - os: windows - /フロントウイング/グリザイアの果実 ~グリザイアの有閑~/*.dat: + "/フロントウイング/グリザイアの果実 ~グリザイアの有閑~/*.dat": tags: - config - save @@ -552784,7 +554281,7 @@ The Leisure of Grisaia: installDir: The Leisure of Grisaia: {} launch: - /GrisaiaAno1.exe: + "/GrisaiaAno1.exe": - when: - os: windows store: steam @@ -552794,7 +554291,7 @@ The Leopard Catgirl in Miaoli: installDir: The Leopard Catgirl in Miaoli: {} launch: - /lib/windows-i686/The Leopard Catgirl in Miaoli.exe: + "/lib/windows-i686/The Leopard Catgirl in Miaoli.exe": - when: - os: windows store: steam @@ -552802,7 +554299,7 @@ The Leopard Catgirl in Miaoli: id: 1149510 The Letter: files: - /AppData/LocalLow/Yangyang Mobile/The Letter/State: + "/AppData/LocalLow/Yangyang Mobile/The Letter/State": tags: - save when: @@ -552810,15 +554307,15 @@ The Letter: installDir: The Letter: {} launch: - /The Letter.app: + "/The Letter.app": - when: - os: mac store: steam - /The Letter.exe: + "/The Letter.exe": - when: - os: windows store: steam - /The Letter.x86_64: + "/The Letter.x86_64": - when: - bit: 64 os: linux @@ -552830,12 +554327,12 @@ The Lewd Knight: id: 1129520 The Life and Suffering of Sir Brante: files: - /AppData/LocalLow/SEVER/The Life and Suffering of Sir Brante/GameSettings.txt: + "/AppData/LocalLow/SEVER/The Life and Suffering of Sir Brante/GameSettings.txt": tags: - config when: - os: windows - /AppData/LocalLow/SEVER/The Life and Suffering of Sir Brante/Saves: + "/AppData/LocalLow/SEVER/The Life and Suffering of Sir Brante/Saves": tags: - save when: @@ -552850,7 +554347,7 @@ The Life and Suffering of Sir Brante: installDir: The Life and Suffering of Sir Brante: {} launch: - /The Life and Suffering of Sir Brante.exe: + "/The Life and Suffering of Sir Brante.exe": - when: - os: windows store: steam @@ -552864,7 +554361,7 @@ The Life of Greather: installDir: The Life Of Greather: {} launch: - /The Life Of Greather.exe: + "/The Life Of Greather.exe": - when: - os: windows store: steam @@ -552874,16 +554371,16 @@ The Life of One Dog: installDir: The Life of One Dog: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: id: 939390 -The Life's Lane: +"The Life's Lane": installDir: - The Life's Lane: {} + "The Life's Lane": {} launch: - /LL.exe: + "/LL.exe": - when: - os: windows store: steam @@ -552893,7 +554390,7 @@ The Lift: installDir: The Lift: {} launch: - /The Lift.exe: + "/The Lift.exe": - when: - bit: 64 os: windows @@ -552901,6 +554398,12 @@ The Lift: steam: id: 843160 The Light Brigade: + files: + /Steam/steamapps/common/The Light Brigade/saves: + tags: + - save + when: + - os: windows installDir: The Light Brigade: {} steam: @@ -552909,7 +554412,7 @@ The Light Empire: installDir: TLE (The Light Empire): {} launch: - /The Light Empire V2.0.exe: + "/The Light Empire V2.0.exe": - when: - os: windows store: steam @@ -552917,12 +554420,12 @@ The Light Empire: id: 416220 The Light Keeps Us Safe: files: - /AppData/LocalLow/Big Robot Ltd/The Light Keeps Us Safe/Settings: + "/AppData/LocalLow/Big Robot Ltd/The Light Keeps Us Safe/Settings": tags: - config when: - os: windows - /userdata//853240/remote: + "/userdata//853240/remote": tags: - save when: @@ -552931,12 +554434,12 @@ The Light Keeps Us Safe: installDir: The Light Keeps Us Safe: {} launch: - /light.exe: + "/light.exe": - when: - bit: 64 os: windows store: steam - - arguments: '-window-mode borderless' + - arguments: "-window-mode borderless" when: - bit: 64 os: windows @@ -552947,7 +554450,7 @@ The Light Remake: installDir: The Light Remake: {} launch: - /Light Remake.exe: + "/Light Remake.exe": - when: - os: windows store: steam @@ -552960,7 +554463,7 @@ The Light Remake: id: 1077520 The Lightbringer: files: - /AppData/LocalLow/Rock Square Thunder/Lightbringer/DataSaves: + "/AppData/LocalLow/Rock Square Thunder/Lightbringer/DataSaves": tags: - save when: @@ -552970,12 +554473,12 @@ The Lightbringer: installDir: The Lightbringer: {} launch: - /Lightbringer.exe: + "/Lightbringer.exe": - when: - bit: 64 os: windows store: steam - /Lightbringer.x86_64: + "/Lightbringer.x86_64": - when: - os: linux store: steam @@ -552989,7 +554492,7 @@ The Lightbringers: installDir: The Lightbringers: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: @@ -552998,29 +554501,29 @@ The Lighthouse: installDir: The Lighthouse: {} launch: - /The_Lighthouse.exe: + "/The_Lighthouse.exe": - when: - bit: 64 os: windows store: steam steam: id: 661450 -'The Lighthouse: VR Escape Room': +"The Lighthouse: VR Escape Room": steam: id: 957270 The Line: installDir: the Line: {} launch: - /theLine.app/Contents/MacOS/theLine: + "/theLine.app/Contents/MacOS/theLine": - when: - os: mac store: steam - /theLine.exe: + "/theLine.exe": - when: - os: windows store: steam - /theLine.x86: + "/theLine.x86": - when: - os: linux store: steam @@ -553028,7 +554531,7 @@ The Line: id: 738760 The Lion King: files: - /LIONKING.CFG: + "/LIONKING.CFG": tags: - config when: @@ -553036,22 +554539,22 @@ The Lion King: gog: id: 1545282199 installDir: - Disney's The Lion King: {} + "Disney's The Lion King": {} steam: id: 561120 -'The Lion King II: Simba''s Pride GameBreak!': +"The Lion King II: Simba's Pride GameBreak!": registry: HKEY_LOCAL_MACHINE/SOFTWARE/WOW6432Node/Disney Interactive/SPAG**: tags: - config -The Lion's Song: +"The Lion's Song": files: - /Mipumi/TLS/*.save: + "/Mipumi/TLS/*.save": tags: - save when: - os: windows - /Mipumi/TLS/options.bin: + "/Mipumi/TLS/options.bin": tags: - config when: @@ -553059,17 +554562,17 @@ The Lion's Song: gog: id: 1740490644 installDir: - The Lion's Song: {} + "The Lion's Song": {} launch: - /TLS.app: + "/TLS.app": - when: - os: mac store: steam - /TLS.exe: + "/TLS.exe": - when: - os: windows store: steam - /runTLS.sh: + "/runTLS.sh": - when: - os: linux store: steam @@ -553077,22 +554580,22 @@ The Lion's Song: id: 437160 The Little Acre: files: - /userdata//423590/remote/save_games: + "/userdata//423590/remote/save_games": tags: - save when: - store: steam - /userdata//423590/remote/settings.dat: + "/userdata//423590/remote/settings.dat": tags: - config when: - store: steam - /My Games/TheLittleAcre: + "/My Games/TheLittleAcre": tags: - config when: - os: windows - /My Games/TheLittleAcre/SaveGames: + "/My Games/TheLittleAcre/SaveGames": tags: - save when: @@ -553102,15 +554605,15 @@ The Little Acre: installDir: The Little Acre: {} launch: - /TheLittleAcre.app: + "/TheLittleAcre.app": - when: - os: mac store: steam - /TheLittleAcre.exe: + "/TheLittleAcre.exe": - when: - os: windows store: steam - /TheLittleAcre.x86: + "/TheLittleAcre.x86": - when: - os: linux store: steam @@ -553124,20 +554627,20 @@ The Little Ball That Could: installDir: The Little Ball That Could: {} launch: - /TLBTC.app: + "/TLBTC.app": - when: - os: mac store: steam - /TLBTC.exe: + "/TLBTC.exe": - when: - os: windows store: steam - /TLBTC.x86: + "/TLBTC.x86": - when: - bit: 32 os: linux store: steam - /TLBTC.x86_64: + "/TLBTC.x86_64": - when: - bit: 64 os: linux @@ -553148,16 +554651,16 @@ The Little Crane That Could: installDir: The Little Crane That Could: {} launch: - /Dig.exe: + "/Dig.exe": - when: - os: windows store: steam - /Little Crane.app/Contents/MacOS/Little Crane: + "/Little Crane.app/Contents/MacOS/Little Crane": - when: - bit: 64 os: mac store: steam - /dig: + "/dig": - when: - bit: 64 os: linux @@ -553171,11 +554674,11 @@ The Little Slime: installDir: The Little Slime: {} launch: - /The Little Slime(Piece of Memory).app: + "/The Little Slime(Piece of Memory).app": - when: - os: mac store: steam - /The Little Slime(Piece of Memory).exe: + "/The Little Slime(Piece of Memory).exe": - when: - os: windows store: steam @@ -553185,7 +554688,7 @@ The Little Vampir: installDir: The little vampir: {} launch: - /The little vampir.exe: + "/The little vampir.exe": - when: - bit: 64 os: windows @@ -553196,7 +554699,7 @@ The Little War: installDir: Hexagons: {} launch: - /FinalBattle.exe: + "/FinalBattle.exe": - when: - os: windows store: steam @@ -553206,7 +554709,7 @@ The Lives: installDir: The Lives: {} launch: - /The Lives.exe: + "/The Lives.exe": - when: - os: windows store: steam @@ -553216,20 +554719,20 @@ The Living Dungeon: installDir: The Living Dungeon: {} launch: - /TheLivingDungeon.app: + "/TheLivingDungeon.app": - when: - os: mac store: steam - /TheLivingDungeon.exe: + "/TheLivingDungeon.exe": - when: - os: windows store: steam - /TheLivingDungeon.x86: + "/TheLivingDungeon.x86": - when: - bit: 32 os: linux store: steam - /thelivingdungeon.x86_64: + "/thelivingdungeon.x86_64": - when: - bit: 64 os: linux @@ -553240,7 +554743,7 @@ The Logomancer: installDir: Logomancer: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -553250,7 +554753,7 @@ The Lone Chameleon: installDir: The Lone Chameleon: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -553260,11 +554763,11 @@ The Lone Island Survival: installDir: THE LONE ISLAND SURVIVAL: {} launch: - /THE LONE ISLAND SURVIVAL.app: + "/THE LONE ISLAND SURVIVAL.app": - when: - os: mac store: steam - /THE LONE ISLAND SURVIVAL.exe: + "/THE LONE ISLAND SURVIVAL.exe": - when: - os: windows store: steam @@ -553274,7 +554777,7 @@ The Lonely Gorilla: installDir: The Lonely Gorilla: {} launch: - /Gorilla.exe: + "/Gorilla.exe": - when: - bit: 64 os: windows @@ -553286,19 +554789,19 @@ The Loner: id: 581890 The Long Dark: files: - /Hinterland/TheLongDark: + "/Hinterland/TheLongDark": tags: - config - save when: - os: windows - /Packages/27620HinterlandStudio.30233944AADE4_y1bt56c4151zw/SystemAppData/wgs: + "/Packages/27620HinterlandStudio.30233944AADE4_y1bt56c4151zw/SystemAppData/wgs": tags: - config when: - os: windows store: microsoft - /Hinterland/TheLongDark: + "/Hinterland/TheLongDark": tags: - config - save @@ -553308,27 +554811,27 @@ The Long Dark: id: 1447763046 id: steamExtra: - - 2091330 - - 2095000 - 690180 - 1328170 + - 2091330 + - 2095000 installDir: TheLongDark: {} launch: - /tld.app: + "/tld.app": - when: - os: mac store: steam - /tld.exe: + "/tld.exe": - when: - os: windows store: steam - /tld.x86: + "/tld.x86": - when: - bit: 32 os: linux store: steam - /tld.x86_64: + "/tld.x86_64": - when: - bit: 64 os: linux @@ -553337,12 +554840,12 @@ The Long Dark: id: 305620 The Long Drive: files: - /TheLongDrive: + "/TheLongDrive": tags: - config when: - os: windows - /TheLongDrive/Saves: + "/TheLongDrive/Saves": tags: - save when: @@ -553350,7 +554853,7 @@ The Long Drive: installDir: The Long Drive: {} launch: - /TheLongDrive.exe: + "/TheLongDrive.exe": - when: - os: windows store: steam @@ -553360,11 +554863,11 @@ The Long Gate: installDir: The Long Gate: {} launch: - /TheLongGate.exe: + "/TheLongGate.exe": - when: - os: windows store: steam - /TheLongGate.sh: + "/TheLongGate.sh": - when: - os: linux store: steam @@ -553372,7 +554875,7 @@ The Long Gate: id: 1147110 The Long Journey Home: files: - /tljh/Saved/Config/WindowsNoEditor: + "/tljh/Saved/Config/WindowsNoEditor": tags: - config when: @@ -553382,12 +554885,12 @@ The Long Journey Home: installDir: The Long Journey Home: {} launch: - /The Long Journey Home.app: + "/The Long Journey Home.app": - when: - os: mac store: steam - /tljh.exe: - - arguments: '-NOEPICREPORT' + "/tljh.exe": + - arguments: "-NOEPICREPORT" when: - bit: 64 os: windows @@ -553396,12 +554899,12 @@ The Long Journey Home: id: 366910 The Long Reach: files: - /AppData/LocalLow/The Long Reach Team/The Long Reach: + "/AppData/LocalLow/The Long Reach Team/The Long Reach": tags: - save when: - os: windows - /AppData/LocalLow/The Long Reach Team/The Long Reach/tlr_configuration_0001.sav: + "/AppData/LocalLow/The Long Reach Team/The Long Reach/tlr_configuration_0001.sav": tags: - config when: @@ -553411,20 +554914,20 @@ The Long Reach: installDir: The Long Reach: {} launch: - /The Long Reach.app: + "/The Long Reach.app": - when: - os: mac store: steam - /The Long Reach.exe: + "/The Long Reach.exe": - when: - os: windows store: steam - /The Long Reach.x86: + "/The Long Reach.x86": - when: - bit: 32 os: linux store: steam - /The Long Reach.x86_64: + "/The Long Reach.x86_64": - when: - bit: 64 os: linux @@ -553437,7 +554940,7 @@ The Long Reach: id: 584990 The Long Return: files: - /AppData/LocalLow/Max Nielsen/The Long Return: + "/AppData/LocalLow/Max Nielsen/The Long Return": tags: - save when: @@ -553445,7 +554948,7 @@ The Long Return: installDir: The Long Return: {} launch: - /The Long Return.exe: + "/The Long Return.exe": - when: - os: windows store: steam @@ -553455,7 +554958,7 @@ The Longest Five Minutes: installDir: The Longest Five Minutes: {} launch: - /game_steam.exe: + "/game_steam.exe": - when: - os: windows store: steam @@ -553463,18 +554966,18 @@ The Longest Five Minutes: id: 504110 The Longest Journey: files: - /Save: + "/Save": tags: - save when: - os: windows - /Funcom/TLJ: + "/Funcom/TLJ": tags: - config - save when: - os: windows - /The Longest Journey/Save: + "/The Longest Journey/Save": tags: - save when: @@ -553487,11 +554990,11 @@ The Longest Journey: installDir: The Longest Journey: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam - /tlj.app: + "/tlj.app": - when: - os: mac store: steam @@ -553503,19 +555006,19 @@ The Longest Road on Earth: installDir: The Longest Road on Earth: {} launch: - /The Longest Road on Earth.exe: + "/The Longest Road on Earth.exe": - when: - store: steam steam: id: 1295790 The Longing: files: - .config/unity3d/Studio Seufz/The Longing: + ".config/unity3d/Studio Seufz/The Longing": tags: - save when: - os: linux - /AppData/LocalLow/Studio Seufz/The Longing/saveData.txt: + "/AppData/LocalLow/Studio Seufz/The Longing/saveData.txt": tags: - save when: @@ -553525,15 +555028,15 @@ The Longing: installDir: The Longing: {} launch: - /The Longing.app: + "/The Longing.app": - when: - os: mac store: steam - /The Longing.exe: + "/The Longing.exe": - when: - os: windows store: steam - /The Longing.x86: + "/The Longing.x86": - when: - os: linux store: steam @@ -553545,7 +555048,7 @@ The Longing: id: 893850 The Looker: files: - /AppData/LocalLow/Subcreation/The Looker/savegame.lkr: + "/AppData/LocalLow/Subcreation/The Looker/savegame.lkr": tags: - save when: @@ -553553,7 +555056,7 @@ The Looker: installDir: The Looker: {} launch: - /The Looker.exe: + "/The Looker.exe": - when: - bit: 64 os: windows @@ -553579,7 +555082,7 @@ The Looter: id: 1163020 The Lord of the Rings Online: files: - /The Lord of the Rings Online: + "/The Lord of the Rings Online": tags: - config when: @@ -553587,21 +555090,21 @@ The Lord of the Rings Online: installDir: Lord of the Rings Online: {} launch: - /LotroLauncher.app: - - arguments: '-steam' + "/LotroLauncher.app": + - arguments: "-steam" when: - os: mac store: steam - /lotrolauncher.exe: - - arguments: '-steam' + "/lotrolauncher.exe": + - arguments: "-steam" when: - os: windows store: steam steam: id: 212500 -'The Lord of the Rings: Adventure Card Game': +"The Lord of the Rings: Adventure Card Game": files: - /AppData/LocalLow/Fantasy Flight Games/The Lord of the Rings - Adventure Card Game/Saves: + "/AppData/LocalLow/Fantasy Flight Games/The Lord of the Rings - Adventure Card Game/Saves": tags: - save when: @@ -553609,11 +555112,11 @@ The Lord of the Rings Online: installDir: The Lord of the Rings - LCG: {} launch: - /Lord of the Rings - LCG.app/Contents/MacOS/The Lord of the Rings - Adventure Card Game: + "/Lord of the Rings - LCG.app/Contents/MacOS/The Lord of the Rings - Adventure Card Game": - when: - os: mac store: steam - /Lord of the Rings - LCG.exe: + "/Lord of the Rings - LCG.exe": - when: - os: windows store: steam @@ -553623,27 +555126,27 @@ The Lord of the Rings Online: - config steam: id: 509580 -'The Lord of the Rings: Conquest': +"The Lord of the Rings: Conquest": files: - /The Lord of the Rings - Conquest/_Save.dat: + "/The Lord of the Rings - Conquest/_Save.dat": tags: - save when: - os: windows - /The Lord of the Rings - Conquest/pc.ini: + "/The Lord of the Rings - Conquest/pc.ini": tags: - config when: - os: windows -'The Lord of the Rings: Gollum': +"The Lord of the Rings: Gollum": files: - /Daedalic Entertainment GmbH/Gollum/Saved//SaveGames: + "/Daedalic Entertainment GmbH/Gollum/Saved//SaveGames": tags: - config - save when: - os: windows - /Daedalic Entertainment GmbH/Gollum/Saved/Config/WindowsNoEditor: + "/Daedalic Entertainment GmbH/Gollum/Saved/Config/WindowsNoEditor": tags: - config when: @@ -553662,22 +555165,22 @@ The Lord of the Rings Online: installDir: Gollum: {} launch: - /Gollum.exe: + "/Gollum.exe": - when: - bit: 64 os: windows store: steam steam: id: 1265780 -'The Lord of the Rings: Journeys in Middle-earth': +"The Lord of the Rings: Journeys in Middle-earth": installDir: Journeys in Middle-earth: {} launch: - /JiME.app: + "/JiME.app": - when: - os: mac store: steam - /JiME.exe: + "/JiME.exe": - when: - os: windows store: steam @@ -553687,76 +555190,76 @@ The Lord of the Rings Online: - config steam: id: 1003400 -'The Lord of the Rings: Return to Moria': +"The Lord of the Rings: Return to Moria": files: - /Moria/Saved/Config/WindowsNoEditor: + "/Moria/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /Moria/Saved/SaveGames: + "/Moria/Saved/SaveGames": tags: - save when: - os: windows -'The Lord of the Rings: The Battle for Middle-earth': +"The Lord of the Rings: The Battle for Middle-earth": files: - /My Battle for Middle-earth Files: + "/My Battle for Middle-earth Files": tags: - config - save when: - os: windows -'The Lord of the Rings: The Battle for Middle-earth II': +"The Lord of the Rings: The Battle for Middle-earth II": files: - /My Battle for Middle-earth(tm) II Files/options.ini: + "/My Battle for Middle-earth(tm) II Files/options.ini": tags: - config when: - os: windows - /My Battle for Middle-earth(tm) II Files/save: + "/My Battle for Middle-earth(tm) II Files/save": tags: - save when: - os: windows - '/My The Lord of the Rings, The Rise of the Witch-king Files/options.ini': + "/My The Lord of the Rings, The Rise of the Witch-king Files/options.ini": tags: - config when: - os: windows - '/My The Lord of the Rings, The Rise of the Witch-king Files/save': + "/My The Lord of the Rings, The Rise of the Witch-king Files/save": tags: - save when: - os: windows -'The Lord of the Rings: The Fellowship of the Ring (2002)': +"The Lord of the Rings: The Fellowship of the Ring (2002)": files: - /Saves: + "/Saves": tags: - save when: - os: windows -'The Lord of the Rings: The Return of the King': +"The Lord of the Rings: The Return of the King": files: - /LOTR Return of the King Data: + "/LOTR Return of the King Data": tags: - save when: - os: windows - /LOTR Return of the King Data/ROTK.ini: + "/LOTR Return of the King Data/ROTK.ini": tags: - config when: - os: windows -'The Lord of the Rings: War in the North': +"The Lord of the Rings: War in the North": files: - /userdata//32800/local: + "/userdata//32800/local": tags: - config when: - os: windows store: steam - /WB Games/War in the North/*.sav: + "/WB Games/War in the North/*.sav": tags: - save when: @@ -553764,37 +555267,37 @@ The Lord of the Rings Online: installDir: War in the North: {} launch: - /witn.exe: - - arguments: '-disc 1 -paq 1' + "/witn.exe": + - arguments: "-disc 1 -paq 1" when: - store: steam steam: id: 32800 -'The Lord of the Rings: War of the Ring': +"The Lord of the Rings: War of the Ring": files: - /Rings.ini: + "/Rings.ini": tags: - config when: - os: windows - /Saves: + "/Saves": tags: - save when: - os: windows The Lords of Midnight: files: - /LOM-*.GAM: + "/LOM-*.GAM": tags: - save when: - os: dos - /settings.cfg: + "/settings.cfg": tags: - config when: - os: windows - /story: + "/story": tags: - save when: @@ -553805,11 +555308,11 @@ The Lords of the Earth Flame: installDir: The Lords of the Earth Flame: {} launch: - /The Lords of the Earth Flame.app/Contents/MacOS/The Lords of the Earth Flame: + "/The Lords of the Earth Flame.app/Contents/MacOS/The Lords of the Earth Flame": - when: - os: mac store: steam - /The Lords of the Earth Flame.exe: + "/The Lords of the Earth Flame.exe": - when: - os: windows store: steam @@ -553819,7 +555322,7 @@ The Lost: installDir: The Lost: {} launch: - /qian.exe: + "/qian.exe": - when: - os: windows store: steam @@ -553830,11 +555333,11 @@ The Lost And Forgotten: The Lost And Forgotten: {} steam: id: 883960 -'The Lost Battalion: All Out Warfare': +"The Lost Battalion: All Out Warfare": installDir: The Lost Battalion All Out Warfare: {} launch: - /The Lost Battalion All Out Warfare.exe: + "/The Lost Battalion All Out Warfare.exe": - when: - os: windows store: steam @@ -553844,7 +555347,7 @@ The Lost Brewery: installDir: The Lost Brewery: {} launch: - /tlb.exe: + "/tlb.exe": - when: - store: steam steam: @@ -553853,7 +555356,7 @@ The Lost Cave of the Ozarks: installDir: The Lost Cave of the Ozarks: {} launch: - /lostcaveoftheozarks.exe: + "/lostcaveoftheozarks.exe": - when: - bit: 64 os: windows @@ -553864,14 +555367,14 @@ The Lost City of Malathedra: installDir: The Lost City Of Malathedra: {} launch: - /S3Engine.exe: + "/S3Engine.exe": - when: - store: steam steam: id: 354690 The Lost Crown: files: - /Saved Games/The Lost Crown: + "/Saved Games/The Lost Crown": tags: - save when: @@ -553879,7 +555382,7 @@ The Lost Crown: installDir: The Lost Crown: {} launch: - /TheLostCrown.exe: + "/TheLostCrown.exe": - when: - os: windows store: steam @@ -553893,31 +555396,31 @@ The Lost Dungeon Of Knight: installDir: The lost dungeon of knight: {} launch: - /The Lost Dungeon Of Knight.exe: + "/The Lost Dungeon Of Knight.exe": - when: - store: steam steam: id: 1147620 -'The Lost Files of Sherlock Holmes: Case of the Rose Tattoo': +"The Lost Files of Sherlock Holmes: Case of the Rose Tattoo": files: - /HOLMES2.SAV: + "/HOLMES2.SAV": tags: - save when: - os: dos - /MYTHOS.CFG: + "/MYTHOS.CFG": tags: - config when: - os: dos -'The Lost Files of Sherlock Holmes: The Case of the Serrated Scalpel': +"The Lost Files of Sherlock Holmes: The Case of the Serrated Scalpel": files: - /HOLMES.CFG: + "/HOLMES.CFG": tags: - config when: - os: dos - /HOLMES.SAV: + "/HOLMES.SAV": tags: - save when: @@ -553926,11 +555429,11 @@ The Lost Gardens: installDir: The Lost Gardens: {} launch: - /TheLostGardens.app: + "/TheLostGardens.app": - when: - os: mac store: steam - /TheLostGardens.exe: + "/TheLostGardens.exe": - when: - os: windows store: steam @@ -553939,55 +555442,55 @@ The Lost Gardens: The Lost Goblin Tower: steam: id: 973140 -'The Lost Heir 2: Forging a Kingdom': +"The Lost Heir 2: Forging a Kingdom": installDir: The Lost Heir 2 Forging a Kingdom: {} launch: - /LostHeir2: + "/LostHeir2": - when: - os: linux store: steam - /LostHeir2.exe: + "/LostHeir2.exe": - when: - os: windows store: steam - /The Lost Heir 2 Forging a Kingdom.app/Contents/MacOS/The Lost Heir 2 Forging a Kingdom: + "/The Lost Heir 2 Forging a Kingdom.app/Contents/MacOS/The Lost Heir 2 Forging a Kingdom": - when: - os: mac store: steam steam: id: 439750 -'The Lost Heir 3: Demon War': +"The Lost Heir 3: Demon War": installDir: The Lost Heir 3 Demon War: {} launch: - /LostHeir3: + "/LostHeir3": - when: - os: linux store: steam - /LostHeir3.exe: + "/LostHeir3.exe": - when: - os: windows store: steam - /The Lost Heir 3 Demon War.app/Contents/MacOS/The Lost Heir 3 Demon War: + "/The Lost Heir 3 Demon War.app/Contents/MacOS/The Lost Heir 3 Demon War": - when: - os: mac store: steam steam: id: 596540 -'The Lost Heir: The Fall of Daria': +"The Lost Heir: The Fall of Daria": installDir: The Lost Heir The Fall of Daria: {} launch: - /LostHeir1: + "/LostHeir1": - when: - os: linux store: steam - /LostHeir1.exe: + "/LostHeir1.exe": - when: - os: windows store: steam - /The Lost Heir The Fall of Daria.app/Contents/MacOS/The Lost Heir The Fall of Daria: + "/The Lost Heir The Fall of Daria.app/Contents/MacOS/The Lost Heir The Fall of Daria": - when: - os: mac store: steam @@ -553997,42 +555500,42 @@ The Lost Island: installDir: The Lost Island: {} launch: - /TheLostIsland.exe: + "/TheLostIsland.exe": - when: - bit: 64 os: windows store: steam steam: id: 416260 -'The Lost Island:Battle Royale': +"The Lost Island:Battle Royale": steam: id: 1147270 The Lost Joystick: steam: id: 766810 -'The Lost Legends of Redwall: Escape the Gloomer': +"The Lost Legends of Redwall: Escape the Gloomer": installDir: The Lost Legends of Redwall Escape the Gloomer: {} launch: - /Escape The Gloomer.exe: + "/Escape The Gloomer.exe": - when: - os: windows store: steam - /Escape the Gloomer Mac.app: + "/Escape the Gloomer Mac.app": - when: - os: mac store: steam steam: id: 930630 -'The Lost Legends of Redwall: The Scout Act I': +"The Lost Legends of Redwall: The Scout Act I": installDir: Redwall The Scout: {} launch: - /redwall_scout.app: + "/redwall_scout.app": - when: - os: mac store: steam - /redwall_scout.exe: + "/redwall_scout.exe": - when: - os: windows store: steam @@ -554042,7 +555545,7 @@ The Lost Light of Sisu: installDir: The Lost Light of Sisu: {} launch: - /Sisu.exe: + "/Sisu.exe": - when: - os: windows store: steam @@ -554052,7 +555555,7 @@ The Lost Mythologies: installDir: The Lost Mythologies: {} launch: - /Basaltic.exe: + "/Basaltic.exe": - when: - os: windows store: steam @@ -554065,7 +555568,7 @@ The Lost Sergeant: installDir: The Lost Sergeant: {} launch: - /Beta.exe: + "/Beta.exe": - when: - bit: 64 os: windows @@ -554076,11 +555579,11 @@ The Lost Sky: installDir: The Lost Sky: {} launch: - /The Lost Sky.app: + "/The Lost Sky.app": - when: - os: mac store: steam - /lostsky.exe: + "/lostsky.exe": - when: - os: windows store: steam @@ -554090,7 +555593,7 @@ The Lost Soul: installDir: The Lost Soul: {} launch: - /The Lost Soul.exe: + "/The Lost Soul.exe": - when: - os: windows store: steam @@ -554100,7 +555603,7 @@ The Lost Souls: installDir: The Lost Souls: {} launch: - /The Lost Souls.exe: + "/The Lost Souls.exe": - when: - os: windows store: steam @@ -554110,7 +555613,7 @@ The Lost Valley: installDir: The Lost Valley: {} launch: - /LV/Bin64/LV.exe: + "/LV/Bin64/LV.exe": - when: - os: windows store: steam @@ -554120,7 +555623,7 @@ The Lost Wizard: installDir: The Lost Wizard: {} launch: - /thelostwizard.exe: + "/thelostwizard.exe": - when: - os: windows store: steam @@ -554138,11 +555641,11 @@ The Love Boat: installDir: The Love Boat: {} launch: - /loveboat.app: + "/loveboat.app": - when: - os: mac store: steam - /loveboat.exe: + "/loveboat.exe": - when: - os: windows store: steam @@ -554152,11 +555655,11 @@ The Love Boat - Second Chances: installDir: The Love Boat - Second Chances: {} launch: - /love.app/Contents/MacOS/love: + "/love.app/Contents/MacOS/love": - when: - os: mac store: steam - /love.exe: + "/love.exe": - when: - os: windows store: steam @@ -554166,7 +555669,7 @@ The Lovebirds: installDir: The_Lovebirds: {} launch: - /The_Lovebirds.exe: + "/The_Lovebirds.exe": - when: - os: windows store: steam @@ -554176,15 +555679,15 @@ The Low Road: installDir: The Low Road: {} launch: - /The Low Road.app: + "/The Low Road.app": - when: - os: mac store: steam - /The Low Road.exe: + "/The Low Road.exe": - when: - os: windows store: steam - /The Low Road.x86: + "/The Low Road.x86": - when: - os: linux store: steam @@ -554194,7 +555697,7 @@ The Luminist: installDir: The Luminist: {} launch: - /The Luminist.exe: + "/The Luminist.exe": - when: - store: steam steam: @@ -554204,7 +555707,7 @@ The Machine That Breathes: id: 1126210 The Madness of Little Emma: files: - /.steam/steam/steamapps/common/The Madness of Little Emma/settings: + "/.steam/steam/steamapps/common/The Madness of Little Emma/settings": tags: - config when: @@ -554212,11 +555715,13 @@ The Madness of Little Emma: installDir: The Madness of Little Emma: {} launch: - /emma: + "/emma": - when: + - os: mac + store: steam - os: linux store: steam - /start.bat: + "/start.bat": - when: - os: windows store: steam @@ -554226,25 +555731,25 @@ The Maestros: installDir: The Maestros: {} launch: - /Binaries/Win32/UDK.exe: + "/Binaries/Win32/UDK.exe": - when: - os: windows store: steam steam: id: 553560 -The Mage's Tale: +"The Mage's Tale": installDir: - The Mage's Tale: {} + "The Mage's Tale": {} steam: id: 766320 -'The Mageseeker: A League of Legends Story': +"The Mageseeker: A League of Legends Story": files: - /AppData/LocalLow/DigitalSun/The Mageseeker/*.data: + "/AppData/LocalLow/DigitalSun/The Mageseeker/*.data": tags: - save when: - os: windows - /AppData/LocalLow/DigitalSun/The Mageseeker/settings.data: + "/AppData/LocalLow/DigitalSun/The Mageseeker/settings.data": tags: - config when: @@ -554254,26 +555759,26 @@ The Mage's Tale: installDir: The Mageseeker: {} launch: - /The Mageseeker.exe: + "/The Mageseeker.exe": - when: - store: steam steam: id: 1457080 The Magic Circle: files: - /.config/unity3d/Question/The Magic Circle/: + "/.config/unity3d/Question/The Magic Circle/": tags: - config - save when: - os: linux - /Library/Application Support/Question/The Magic Circle/: + "/Library/Application Support/Question/The Magic Circle/": tags: - config - save when: - os: mac - /Question/The Magic Circle/: + "/Question/The Magic Circle/": tags: - config - save @@ -554282,20 +555787,20 @@ The Magic Circle: installDir: The Magic Circle: {} launch: - /TheMagicCircle.app: + "/TheMagicCircle.app": - when: - os: mac store: steam - /TheMagicCircle.exe: + "/TheMagicCircle.exe": - when: - os: windows store: steam - /TheMagicCircle.x86: + "/TheMagicCircle.x86": - when: - bit: 32 os: linux store: steam - /TheMagicCircle.x86_64: + "/TheMagicCircle.x86_64": - when: - bit: 64 os: linux @@ -554309,47 +555814,47 @@ The Magic Circle: The Magical Silence: steam: id: 474820 -The Magician's Burden: +"The Magician's Burden": installDir: - The Magician's Burden: {} + "The Magician's Burden": {} launch: - /The Magician's Burden.app/Contents/MacOS/The Magician's Burden: + "/The Magician's Burden.app/Contents/MacOS/The Magician's Burden": - when: - os: mac store: steam - /TheMagiciansBurden: + "/TheMagiciansBurden": - when: - os: linux store: steam - /TheMagiciansBurden.exe: + "/TheMagiciansBurden.exe": - when: - os: windows store: steam steam: id: 884430 -The Magician's Research: +"The Magician's Research": installDir: - The Magician's Research: {} + "The Magician's Research": {} launch: - /The Magicians Research.exe: + "/The Magicians Research.exe": - when: - os: windows store: steam steam: id: 1155120 -The Magician's Workshop: +"The Magician's Workshop": installDir: - The Magician's Workshop: {} + "The Magician's Workshop": {} launch: - /The Magician's Workshop.app/Contents/MacOS/The Magician's Workshop: + "/The Magician's Workshop.app/Contents/MacOS/The Magician's Workshop": - when: - os: mac store: steam - /TheMagiciansWorkshop: + "/TheMagiciansWorkshop": - when: - os: linux store: steam - /TheMagiciansWorkshop.exe: + "/TheMagiciansWorkshop.exe": - when: - os: windows store: steam @@ -554361,7 +555866,7 @@ The Magister: installDir: The Magister: {} launch: - /The Magister.exe: + "/The Magister.exe": - when: - store: steam steam: @@ -554370,7 +555875,7 @@ The Magnet Trials: installDir: The Magnet Trials: {} launch: - /WindowsNoEditor/Magnet.exe: + "/WindowsNoEditor/Magnet.exe": - when: - bit: 64 os: windows @@ -554381,7 +555886,7 @@ The Magnificent Trufflepigs: installDir: The Magnificent Trufflepigs: {} launch: - /Trufflepigs.exe: + "/Trufflepigs.exe": - when: - bit: 64 os: windows @@ -554392,25 +555897,25 @@ The Mahjong Huntress: installDir: Mahjongg Huntress: {} launch: - /mahjonghuntress.app: + "/mahjonghuntress.app": - when: - os: mac store: steam - /mahjonghuntress.exe: + "/mahjonghuntress.exe": - when: - os: windows store: steam - /mahjonghuntress.x86: + "/mahjonghuntress.x86": - when: - os: linux store: steam steam: id: 474910 -The Maid-san's Caving Adventure: +"The Maid-san's Caving Adventure": installDir: - The Maid_san's Caving Adventure - メイドさん洞窟探検 -: {} + "The Maid_san's Caving Adventure - メイドさん洞窟探検 -": {} launch: - /Maid_san's Caving Adventure.exe: + "/Maid_san's Caving Adventure.exe": - when: - os: windows store: steam @@ -554420,38 +555925,38 @@ The Majesty of Colors Remastered: installDir: The Majesty of Colors Remastered: {} launch: - /MajestyOfColors.app: + "/MajestyOfColors.app": - when: - os: mac store: steam - /The Majesty of Colors Remastered.exe: + "/The Majesty of Colors Remastered.exe": - when: - os: windows store: steam - /majesty-of-colors.x86_64: + "/majesty-of-colors.x86_64": - when: - os: linux store: steam steam: id: 632880 -The Maker's Eden: +"The Maker's Eden": installDir: - The Maker's Eden: {} + "The Maker's Eden": {} launch: - /run.app: + "/run.app": - when: - os: mac store: steam - /run.exe: + "/run.exe": - when: - os: windows store: steam - /run.sh: + "/run.sh": - when: - os: linux store: steam registry: - HKEY_CURRENT_USER/Software/Screwy Lightbulb Entertainment/The Maker's Eden: + "HKEY_CURRENT_USER/Software/Screwy Lightbulb Entertainment/The Maker's Eden": tags: - config - save @@ -554463,34 +555968,34 @@ The Making of Karateka: installDir: The Making of Karateka: {} launch: - /making_of_karateka.exe: + "/making_of_karateka.exe": - when: - store: steam steam: id: 1163060 -'The Mammoth: A Cave Painting': +"The Mammoth: A Cave Painting": installDir: The Mammoth: {} launch: - /TheMammoth.app: + "/TheMammoth.app": - when: - os: mac store: steam - /TheMammoth.exe: + "/TheMammoth.exe": - when: - os: windows store: steam - /TheMammoth.sh: + "/TheMammoth.sh": - when: - os: linux store: steam steam: id: 751690 -'The Man in the Cape: Special Edition': +"The Man in the Cape: Special Edition": installDir: The Man in the Cape Special Edition: {} launch: - /CapeManConfig.exe: + "/CapeManConfig.exe": - when: - store: steam steam: @@ -554499,7 +556004,7 @@ The Man with the Dog: installDir: TheManWithTheDog: {} launch: - /TMWTD.exe: + "/TMWTD.exe": - when: - os: windows store: steam @@ -554509,7 +556014,7 @@ The Man with the Ivory Cane: installDir: The Man with the Ivory Cane: {} launch: - /ivorycane.exe: + "/ivorycane.exe": - when: - os: windows store: steam @@ -554521,7 +556026,7 @@ The Manhole: installDir: Manhole: {} launch: - /Manhole.exe: + "/Manhole.exe": - when: - store: steam steam: @@ -554530,7 +556035,7 @@ The Manse on Soracca: installDir: The Manse on Soracca: {} launch: - /soracca.exe: + "/soracca.exe": - when: - os: windows store: steam @@ -554542,7 +556047,7 @@ The Mansion: installDir: TheMansion: {} launch: - /TheMansion.exe: + "/TheMansion.exe": - when: - os: windows store: steam @@ -554550,17 +556055,17 @@ The Mansion: id: 1294650 The Mansion (Triority): files: - /game/saves: + "/game/saves": tags: - save when: - os: windows - /renpy/config.py: + "/renpy/config.py": tags: - config when: - os: windows - /renpy/TheMansion-1518382168: + "/renpy/TheMansion-1518382168": tags: - save when: @@ -554568,11 +556073,11 @@ The Mansion (Triority): installDir: The Mansion: {} launch: - /TheMansion.exe: + "/TheMansion.exe": - when: - os: windows store: steam - /TheMansion.sh: + "/TheMansion.sh": - when: - os: linux store: steam @@ -554582,7 +556087,7 @@ The Mark of Robot: installDir: The Mark of Robot: {} launch: - /The Mark of Robot.exe: + "/The Mark of Robot.exe": - when: - os: windows store: steam @@ -554592,7 +556097,7 @@ The Market Trader: installDir: The market trader: {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: @@ -554601,7 +556106,7 @@ The Mars Agenda: installDir: The Mars Agenda: {} launch: - /The Mars Agenda.exe: + "/The Mars Agenda.exe": - when: - bit: 64 os: windows @@ -554612,15 +556117,15 @@ The Martian Job: installDir: The Martian Job: {} launch: - /The Martian Job.app/Contents/MacOS/The Martian Job: + "/The Martian Job.app/Contents/MacOS/The Martian Job": - when: - os: mac store: steam - /TheMartianJob: + "/TheMartianJob": - when: - os: linux store: steam - /TheMartianJob.exe: + "/TheMartianJob.exe": - when: - os: windows store: steam @@ -554633,23 +556138,23 @@ The Martian VR Experience: id: 350380 The Marvellous Miss Take: files: - /userdata//327310: + "/userdata//327310": tags: - save when: - store: steam - /userdata//327310/local/static-cache: + "/userdata//327310/local/static-cache": tags: - config when: - store: steam - /The Marvellous Miss Take: + "/The Marvellous Miss Take": tags: - config - save when: - os: windows - /Turbulenz/The Marvellous Miss Take/static-cache: + "/Turbulenz/The Marvellous Miss Take/static-cache": tags: - config when: @@ -554659,11 +556164,11 @@ The Marvellous Miss Take: installDir: The Marvellous Miss Take: {} launch: - /Miss Take.app: + "/Miss Take.app": - when: - os: mac store: steam - /misstake.exe: + "/misstake.exe": - when: - os: windows store: steam @@ -554673,11 +556178,11 @@ The Masked Mage: installDir: The Masked Mage: {} launch: - /The Masked Mage: + "/The Masked Mage": - when: - os: linux store: steam - /The Masked Mage.exe: + "/The Masked Mage.exe": - when: - os: windows store: steam @@ -554687,7 +556192,7 @@ The Master: installDir: The Master: {} launch: - /Stairs.exe: + "/Stairs.exe": - when: - bit: 64 os: windows @@ -554696,7 +556201,7 @@ The Master: id: 774911 The Masterplan: files: - /Shark Punch/The Masterplan: + "/Shark Punch/The Masterplan": tags: - config - save @@ -554707,29 +556212,29 @@ The Masterplan: installDir: The Masterplan: {} launch: - /The Masterplan: + "/The Masterplan": - when: - os: linux store: steam - /The Masterplan.app: + "/The Masterplan.app": - when: - bit: 64 os: mac store: steam - /The Masterplan.exe: + "/The Masterplan.exe": - when: - os: windows store: steam steam: id: 313080 -'The Matrix: Path of Neo': +"The Matrix: Path of Neo": files: - /MatrixConfig.ini: + "/MatrixConfig.ini": tags: - config when: - os: windows - /saved: + "/saved": tags: - save when: @@ -554738,7 +556243,7 @@ The Maw: installDir: The Maw: {} launch: - /TheMaw.exe: + "/TheMaw.exe": - when: - store: steam steam: @@ -554746,17 +556251,17 @@ The Maw: The Maze of Horror: steam: id: 1170560 -'The Maze: Endless Nightmare': +"The Maze: Endless Nightmare": steam: id: 580970 The Mean Greens - Plastic Warfare: files: - /TheMeanGreens/Saved/Config/WindowsNoEditor: + "/TheMeanGreens/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /TheMeanGreens/Saved/SaveGames: + "/TheMeanGreens/Saved/SaveGames": tags: - save when: @@ -554764,20 +556269,20 @@ The Mean Greens - Plastic Warfare: installDir: The Mean Greens - Plastic Warfare: {} launch: - /TheMeanGreens.app: + "/TheMeanGreens.app": - when: - os: mac store: steam - /TheMeanGreens/Binaries/Linux/TheMeanGreens-Linux-Shipping: + "/TheMeanGreens/Binaries/Linux/TheMeanGreens-Linux-Shipping": - when: - os: linux store: steam - /TheMeanGreens/Binaries/Win32/TheMeanGreens-Win32-Shipping.exe: + "/TheMeanGreens/Binaries/Win32/TheMeanGreens-Win32-Shipping.exe": - when: - bit: 32 os: windows store: steam - /TheMeanGreens/Binaries/Win64/TheMeanGreens-Win64-Shipping.exe: + "/TheMeanGreens/Binaries/Win64/TheMeanGreens-Win64-Shipping.exe": - when: - bit: 64 os: windows @@ -554794,23 +556299,23 @@ The Mechanical World of Dr. Gearbox: id: 1218220 The Medium: files: - /Medium/Saved/Config/WindowsNoEditor: + "/Medium/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /Medium/Saved/SaveGames: + "/Medium/Saved/SaveGames": tags: - save when: - os: windows - /Packages/3951BlooberTeamS.A.TheMedium_myqva651hxz16/LocalCache/Local/Medium/Saved/Config/WinGDK: + "/Packages/3951BlooberTeamS.A.TheMedium_myqva651hxz16/LocalCache/Local/Medium/Saved/Config/WinGDK": tags: - config when: - os: windows store: microsoft - /Packages/3951BlooberTeamS.A.TheMedium_myqva651hxz16/SystemAppData/wgs: + "/Packages/3951BlooberTeamS.A.TheMedium_myqva651hxz16/SystemAppData/wgs": tags: - save when: @@ -554821,7 +556326,7 @@ The Medium: installDir: The Medium: {} launch: - /Medium.exe: + "/Medium.exe": - when: - bit: 64 os: windows @@ -554840,7 +556345,7 @@ The Melody of Grisaia: installDir: The Melody of Grisaia: {} launch: - /GrisaiaAno3.exe: + "/GrisaiaAno3.exe": - when: - os: windows store: steam @@ -554850,29 +556355,29 @@ The Memory of Eldurim: installDir: The Memory of Eldurim: {} launch: - /EldurimLauncher.exe: + "/EldurimLauncher.exe": - when: - os: windows store: steam steam: id: 268670 -'The Men of Yoshiwara: Kikuya': +"The Men of Yoshiwara: Kikuya": installDir: The Men of Yoshiwara Kikuya: {} launch: - /kikuya.exe: - - arguments: '-windowed' + "/kikuya.exe": + - arguments: "-windowed" when: - os: windows store: steam steam: id: 381100 -'The Men of Yoshiwara: Ohgiya': +"The Men of Yoshiwara: Ohgiya": installDir: The Men of Yoshiwara Ohgiya: {} launch: - /ohgiya.exe: - - arguments: '-windowed' + "/ohgiya.exe": + - arguments: "-windowed" when: - os: windows store: steam @@ -554882,7 +556387,7 @@ The Mercenary Rise: installDir: The Mercenary Rise: {} launch: - /佣兵崛起.exe: + "/佣兵崛起.exe": - when: - os: windows store: steam @@ -554892,11 +556397,11 @@ The Merchant Memoirs: installDir: The Merchant Memoirs: {} launch: - /Merchant_Memoirs.app/Contents/MacOS/Merchant_Memoirs: + "/Merchant_Memoirs.app/Contents/MacOS/Merchant_Memoirs": - when: - os: mac store: steam - /Merchant_Memoirs.exe: + "/Merchant_Memoirs.exe": - when: - os: windows store: steam @@ -554906,7 +556411,7 @@ The Mercury Man: installDir: The Mercury Man: {} launch: - /Mercury man.exe: + "/Mercury man.exe": - when: - os: windows store: steam @@ -554914,12 +556419,12 @@ The Mercury Man: id: 740200 The Messenger: files: - /AppData/LocalLow/Sabotage Studio/The Messenger/SaveGame.txt: + "/AppData/LocalLow/Sabotage Studio/The Messenger/SaveGame.txt": tags: - save when: - os: windows - /Packages/DevolverDigital.TheMessenger_6kzv4j18v0c96/SystemAppData/wgs: + "/Packages/DevolverDigital.TheMessenger_6kzv4j18v0c96/SystemAppData/wgs": tags: - save when: @@ -554930,7 +556435,7 @@ The Messenger: installDir: The Messenger: {} launch: - /TheMessenger.exe: + "/TheMessenger.exe": - when: - store: steam registry: @@ -554939,19 +556444,19 @@ The Messenger: - config steam: id: 764790 -'The Metronomicon: Slay the Dance Floor': +"The Metronomicon: Slay the Dance Floor": files: - /MetronomiconSaves/ControllerMappings*/*.mtn: + "/MetronomiconSaves/ControllerMappings*/*.mtn": tags: - config when: - os: windows - /MetronomiconSaves/Progress.*tn: + "/MetronomiconSaves/Progress.*tn": tags: - save when: - os: windows - /MetronomiconSaves/Settings.*tn: + "/MetronomiconSaves/Settings.*tn": tags: - config when: @@ -554960,55 +556465,55 @@ The Messenger: id: 2023488780 id: gogExtra: + - 1094368489 + - 1170025678 - 1312439301 - 1381069348 - - 1995567033 - - 1170025678 - - 1094368489 - 1737559098 + - 1995567033 steamExtra: - 488050 installDir: Metronomicon: {} launch: - /Metronomicon.app: + "/Metronomicon.app": - when: - os: mac store: steam - /Metronomicon/Metronomicon.exe: + "/Metronomicon/Metronomicon.exe": - when: - os: windows store: steam - workingDir: /Metronomicon + workingDir: "/Metronomicon" steam: id: 416790 The Mexican Dream: installDir: The Mexican Dream: {} launch: - /The Mexican Dream Linux.x86: + "/The Mexican Dream Linux.x86": - when: - os: linux store: steam - /The Mexican Dream Windows.exe: + "/The Mexican Dream Windows.exe": - when: - os: windows store: steam - /The Mexican Dream.app: + "/The Mexican Dream.app": - when: - os: mac store: steam steam: id: 664290 -'The Mice of Riddle Place: The Incident of Izzy Ramirez': +"The Mice of Riddle Place: The Incident of Izzy Ramirez": installDir: The Mice of Riddle Place - The Incident of Izzy Ramirez: {} launch: - /The Mice of Riddle Place - The Incident of Izzy Ramirez (Extended Edition).app: + "/The Mice of Riddle Place - The Incident of Izzy Ramirez (Extended Edition).app": - when: - os: mac store: steam - /The Mice of Riddle Place - The Incident of Izzy Ramirez EE.exe: + "/The Mice of Riddle Place - The Incident of Izzy Ramirez EE.exe": - when: - os: windows store: steam @@ -555018,14 +556523,14 @@ The Midnight Sanctuary: installDir: The Midnight Sanctuary: {} launch: - /Garan_VR.exe: + "/Garan_VR.exe": - when: - store: steam steam: id: 610980 The Mighty Quest for Epic Loot: files: - /GameData/Config/Game: + "/GameData/Config/Game": tags: - config when: @@ -555033,21 +556538,21 @@ The Mighty Quest for Epic Loot: installDir: The Mighty Quest For Epic Loot: {} launch: - /Launcher/MQELDiagnostics.exe: + "/Launcher/MQELDiagnostics.exe": - when: - store: steam - workingDir: /Launcher - /Launcher/PublicLauncher.exe: + workingDir: "/Launcher" + "/Launcher/PublicLauncher.exe": - when: - store: steam - workingDir: /Launcher + workingDir: "/Launcher" steam: id: 239220 The Mimic: installDir: The Mimic: {} launch: - /TheMimic.exe: + "/TheMimic.exe": - when: - os: windows store: steam @@ -555057,20 +556562,20 @@ The Mims Beginning: installDir: The Mims Beginning: {} launch: - /TheMimsBeginning.app: + "/TheMimsBeginning.app": - when: - os: mac store: steam - /TheMimsBeginning.exe: + "/TheMimsBeginning.exe": - when: - os: windows store: steam - /TheMimsBeginning.x86: + "/TheMimsBeginning.x86": - when: - bit: 32 os: linux store: steam - /TheMimsBeginning.x86_64: + "/TheMimsBeginning.x86_64": - when: - bit: 64 os: linux @@ -555082,12 +556587,12 @@ The Mind Hero: id: 502050 The Mind of Marlo: files: - /AppData/LocalLow/PointBleepStudios/Point Bleep TV/MOM: + "/AppData/LocalLow/PointBleepStudios/Point Bleep TV/MOM": tags: - save when: - os: windows - /AppData/LocalLow/PointBleepStudios/Point Bleep TV/MOM/Settings: + "/AppData/LocalLow/PointBleepStudios/Point Bleep TV/MOM/Settings": tags: - config when: @@ -555095,11 +556600,11 @@ The Mind of Marlo: installDir: The Mind of Marlo: {} launch: - /MOM.exe: + "/MOM.exe": - when: - os: windows store: steam - /MOM.x86: + "/MOM.x86": - when: - os: linux store: steam @@ -555109,19 +556614,19 @@ The Mind of Marlo: - config steam: id: 722870 -The Mind's Eclipse: +"The Mind's Eclipse": installDir: - The Mind's Eclipse: {} + "The Mind's Eclipse": {} launch: - /TheMindsEclipse.app/Contents/MacOS/TheMindsEclipse: + "/TheMindsEclipse.app/Contents/MacOS/TheMindsEclipse": - when: - os: mac store: steam - /TheMindsEclipse.exe: + "/TheMindsEclipse.exe": - when: - os: windows store: steam - /TheMindsEclipse.sh: + "/TheMindsEclipse.sh": - when: - os: linux store: steam @@ -555131,7 +556636,7 @@ The Mine: installDir: The Mine: {} launch: - /TheMine.exe: + "/TheMine.exe": - when: - os: windows store: steam @@ -555141,7 +556646,7 @@ The Mine (2018): installDir: The Mine: {} launch: - /TheMine.exe: + "/TheMine.exe": - when: - os: windows store: steam @@ -555151,15 +556656,15 @@ The Miners: installDir: The Miners: {} launch: - /Campaign Editor.exe: + "/Campaign Editor.exe": - when: - os: windows store: steam - /Map Editor.exe: + "/Map Editor.exe": - when: - os: windows store: steam - /The Miners.exe: + "/The Miners.exe": - when: - os: windows store: steam @@ -555169,7 +556674,7 @@ The Mines of Morseph: installDir: The Mines of Morseph: {} launch: - /mines.exe: + "/mines.exe": - when: - os: windows store: steam @@ -555179,21 +556684,24 @@ The Minims: installDir: Minims: {} launch: - /Minims.app/Contents/MacOS/Minims: + "/Minims.app/Contents/MacOS/Minims": - when: - os: mac store: steam - /Minims.exe: + "/Minims.exe": - when: - bit: 32 os: windows store: steam - /Minims.x86: + - bit: 64 + os: windows + store: steam + "/Minims.x86": - when: - bit: 32 os: linux store: steam - /Minims.x86_64: + "/Minims.x86_64": - when: - bit: 64 os: linux @@ -555204,21 +556712,21 @@ The Minotaur: installDir: The Minotaur: {} launch: - /TheMinotaur.app/Contents/MacOS/TheMinotaur: + "/TheMinotaur.app/Contents/MacOS/TheMinotaur": - when: - os: mac store: steam - /TheMinotaur.exe: + "/TheMinotaur.exe": - when: - os: windows store: steam steam: id: 412540 -'The Mirage: Illusion of Wish': +"The Mirage: Illusion of Wish": installDir: TheMirage: {} launch: - /TheMirage.exe: + "/TheMirage.exe": - when: - bit: 64 os: windows @@ -555227,13 +556735,13 @@ The Minotaur: id: 680250 The Mirror Lied: files: - /The Mirror Lied: + "/The Mirror Lied": tags: - config - save when: - os: windows - /The Mirror Lied - Freebird Games: + "/The Mirror Lied - Freebird Games": tags: - save when: @@ -555243,35 +556751,35 @@ The Mirror Lied: installDir: The Mirror Lied: {} launch: - /The Mirror Lied/The Mirror Lied.exe: + "/The Mirror Lied/The Mirror Lied.exe": - when: - os: windows store: steam - workingDir: /The Mirror Lied - /TheMirrorLied.amd64: + workingDir: "/The Mirror Lied" + "/TheMirrorLied.amd64": - when: - bit: 64 os: linux store: steam - /TheMirrorLied.app: + "/TheMirrorLied.app": - when: - os: mac store: steam - /TheMirrorLied.x86: + "/TheMirrorLied.x86": - when: - bit: 32 os: linux store: steam steam: id: 828050 -The Mirror's End: +"The Mirror's End": steam: id: 853460 The Mirum: installDir: The Mirum: {} launch: - /Mirum.exe: + "/Mirum.exe": - when: - os: windows store: steam @@ -555281,7 +556789,7 @@ The Misadventure Of Melon: installDir: The Misadventure Of Melon: {} launch: - /The Misadventure Of Melon.exe: + "/The Misadventure Of Melon.exe": - when: - bit: 64 os: windows @@ -555292,7 +556800,7 @@ The Misadventures of Botsworth: installDir: The Misadventures of Botsworth: {} launch: - /TMOB.exe: + "/TMOB.exe": - when: - os: windows store: steam @@ -555302,7 +556810,7 @@ The Misadventures of Denniz & Diana: installDir: DennizAndDiana: {} launch: - /DennizAndDiana.exe: + "/DennizAndDiana.exe": - when: - os: windows store: steam @@ -555310,7 +556818,7 @@ The Misadventures of Denniz & Diana: id: 903700 The Misadventures of P.B. Winterbottom: files: - /2K Play/The Misadventures of P.B. Winterbottom: + "/2K Play/The Misadventures of P.B. Winterbottom": tags: - save when: @@ -555318,7 +556826,7 @@ The Misadventures of P.B. Winterbottom: installDir: WinterBottom: {} launch: - /WinterBottom.exe: + "/WinterBottom.exe": - when: - store: steam steam: @@ -555327,8 +556835,8 @@ The Miserable Crimson Hooded Girl: installDir: The Miserable Crimson Hooded Girl: {} launch: - /Game.exe: - - arguments: '--in-process-gpu' + "/Game.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam @@ -555338,21 +556846,21 @@ The Misfits: installDir: The Misfits: {} launch: - /TheMisfits: - - arguments: '-screen-fullscreen 0' + "/TheMisfits": + - arguments: "-screen-fullscreen 0" when: - os: linux store: steam - /TheMisfits.app/Contents/MacOS/TheMisfits: + "/TheMisfits.app/Contents/MacOS/TheMisfits": - when: - os: mac store: steam - /TheMisfits.exe: + "/TheMisfits.exe": - when: - bit: 64 os: windows store: steam - /TheMisfits32.exe: + "/TheMisfits32.exe": - when: - bit: 32 os: windows @@ -555363,11 +556871,11 @@ The Miskatonic: installDir: The Miskatonic: {} launch: - /The Miskatonic.app: + "/The Miskatonic.app": - when: - os: mac store: steam - /The Miskatonic.exe: + "/The Miskatonic.exe": - when: - os: windows store: steam @@ -555377,15 +556885,15 @@ The Missing Few: installDir: The Missing Few: {} launch: - /TheMissingFew.exe: + "/TheMissingFew.exe": - when: - os: windows store: steam steam: id: 1103960 -'The Missing: J.J. Macfield and the Island of Memories': +"The Missing: J.J. Macfield and the Island of Memories": files: - '/AppData/LocalLow/ARC SYSTEM WORKS CO_,LTD_/The MISSING/SaveData': + "/AppData/LocalLow/ARC SYSTEM WORKS CO_,LTD_/The MISSING/SaveData": tags: - config - save @@ -555394,13 +556902,13 @@ The Missing Few: installDir: The Missing: {} launch: - /TheMISSING.exe: + "/TheMISSING.exe": - when: - bit: 64 os: windows store: steam registry: - 'HKEY_CURRENT_USER/SOFTWARE/ARC SYSTEM WORKS CO.,LTD./The MISSING': + "HKEY_CURRENT_USER/SOFTWARE/ARC SYSTEM WORKS CO.,LTD./The MISSING": tags: - config steam: @@ -555412,7 +556920,7 @@ The Moment We Met: installDir: The Moment We Met: {} launch: - /TTWM.exe: + "/TTWM.exe": - when: - os: windows store: steam @@ -555420,7 +556928,7 @@ The Moment We Met: id: 882940 The Moment of Silence: files: - /House of Tales/The Moment of Silence/savegames: + "/House of Tales/The Moment of Silence/savegames": tags: - save when: @@ -555430,7 +556938,7 @@ The Moment of Silence: installDir: The Moment of Silence: {} launch: - /mos.exe: + "/mos.exe": - when: - os: windows store: steam @@ -555440,16 +556948,16 @@ The Momo Game: installDir: Momo: {} launch: - /windows_content/Momo.exe: + "/windows_content/Momo.exe": - when: - store: steam steam: id: 954530 -'The Monk and the Warrior: The Heart of the King': +"The Monk and the Warrior: The Heart of the King": installDir: The Monk and the Warrior - The Heart of the King: {} launch: - /Monk&Warrior.exe: + "/Monk&Warrior.exe": - when: - os: windows store: steam @@ -555464,7 +556972,7 @@ The Monster Breeder: installDir: The Monster Breeder: {} launch: - /The Monster Breeder.exe: + "/The Monster Breeder.exe": - when: - store: steam steam: @@ -555473,34 +556981,34 @@ The Monster Inside: installDir: TheMonsterInside: {} launch: - /The Monster Inside.exe: + "/The Monster Inside.exe": - when: - os: windows store: steam - /The Monster Inside.x86: + "/The Monster Inside.x86": - when: - os: linux store: steam - /TheMonsterInside.app/Contents/MacOS/TheMonsterInside: + "/TheMonsterInside.app/Contents/MacOS/TheMonsterInside": - when: - os: mac store: steam steam: id: 665490 -The Monsters' History Book: +"The Monsters' History Book": installDir: - The Monsters' History Book: {} + "The Monsters' History Book": {} steam: id: 870110 -'The Montana Chronicles: Montana''s Croatoa': +"The Montana Chronicles: Montana's Croatoa": installDir: - The Montana Chronicles Montana's Croatoa: {} + "The Montana Chronicles Montana's Croatoa": {} launch: - /MontanasCroatoa.exe: + "/MontanasCroatoa.exe": - when: - os: windows store: steam - /MontanasCroatoaFinalBuild.app: + "/MontanasCroatoaFinalBuild.app": - when: - os: mac store: steam @@ -555513,7 +557021,7 @@ The Moon Sliver: installDir: The Moon Sliver: {} launch: - /The Moon Sliver.exe: + "/The Moon Sliver.exe": - when: - os: windows store: steam @@ -555523,7 +557031,7 @@ The Moonstone Equation: installDir: The Moonstone Equation: {} launch: - /Moon.exe: + "/Moon.exe": - when: - os: windows store: steam @@ -555531,17 +557039,17 @@ The Moonstone Equation: id: 589100 The Mooseman: files: - /.config/unity3d/Morteshka/Mooseman/mooseman_v3.save: + "/.config/unity3d/Morteshka/Mooseman/mooseman_v3.save": tags: - save when: - os: linux - /.config/unity3d/Morteshka/Mooseman/prefs: + "/.config/unity3d/Morteshka/Mooseman/prefs": tags: - config when: - os: linux - /AppData/LocalLow/Morteshka/Mooseman: + "/AppData/LocalLow/Morteshka/Mooseman": tags: - config - save @@ -555550,15 +557058,15 @@ The Mooseman: installDir: The Mooseman: {} launch: - /Mooseman.app: + "/Mooseman.app": - when: - os: mac store: steam - /Mooseman.exe: + "/Mooseman.exe": - when: - os: windows store: steam - /Mooseman.x86: + "/Mooseman.x86": - when: - os: linux store: steam @@ -555568,7 +557076,7 @@ The Morgue Fissure Between Worlds: installDir: The Morgue: {} launch: - /TheMorgue.exe: + "/TheMorgue.exe": - when: - os: windows store: steam @@ -555583,7 +557091,7 @@ The Mors: installDir: The Mors: {} launch: - /The Mors.exe: + "/The Mors.exe": - when: - os: windows store: steam @@ -555591,7 +557099,7 @@ The Mors: id: 378240 The Mortuary Assistant: files: - /AppData/LocalLow/DarkStone Digital/The Mortuary Assistant: + "/AppData/LocalLow/DarkStone Digital/The Mortuary Assistant": tags: - save when: @@ -555601,7 +557109,7 @@ The Mortuary Assistant: installDir: The Mortuary Assistant: {} launch: - /The Mortuary Assistant.exe: + "/The Mortuary Assistant.exe": - when: - os: windows store: steam @@ -555611,7 +557119,7 @@ The Most Challenging Game: installDir: The Most Challenging Game: {} launch: - /The Most Challenging Game FULL GAME V.exe: + "/The Most Challenging Game FULL GAME V.exe": - when: - store: steam steam: @@ -555620,20 +557128,20 @@ The Movie Trivia Challenge: installDir: The Movie Trivia Challenge: {} launch: - /The Movie Trivia Challenge.app: + "/The Movie Trivia Challenge.app": - when: - os: mac store: steam - /game.exe: + "/game.exe": - when: - os: windows store: steam - /game.x86: + "/game.x86": - when: - bit: 32 os: linux store: steam - /game.x86_64: + "/game.x86_64": - when: - bit: 64 os: linux @@ -555642,17 +557150,17 @@ The Movie Trivia Challenge: id: 875790 The Movies: files: - /Library/Application Support/Feral Interactive/The Movies Superstar/Preferences Data: + "/Library/Application Support/Feral Interactive/The Movies Superstar/Preferences Data": tags: - config when: - os: mac - /Library/Application Support/Feral Interactive/The Movies Superstar/Saved Games: + "/Library/Application Support/Feral Interactive/The Movies Superstar/Saved Games": tags: - save when: - os: mac - /The Movies/Saved Games: + "/The Movies/Saved Games": tags: - save when: @@ -555663,10 +557171,10 @@ The Movies: installDir: The Movies: {} launch: - /Movies.exe: + "/Movies.exe": - when: - store: steam - /StarMaker.exe: + "/StarMaker.exe": - when: - store: steam registry: @@ -555679,8 +557187,8 @@ The Multidimensional Underwear Drawer: installDir: The Multidimensional Underwear Drawer: {} launch: - /nw.exe: - - arguments: '--in-process-gpu' + "/nw.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam @@ -555688,7 +557196,7 @@ The Multidimensional Underwear Drawer: id: 502600 The Mummy: files: - /Save: + "/Save": tags: - save when: @@ -555699,12 +557207,12 @@ The Mummy: - config The Mummy Demastered: files: - /settings.txt: + "/settings.txt": tags: - config when: - os: windows - /slot*.save: + "/slot*.save": tags: - save when: @@ -555714,7 +557222,7 @@ The Mummy Demastered: installDir: The Mummy: {} launch: - /Mummy.exe: + "/Mummy.exe": - when: - os: windows store: steam @@ -555728,7 +557236,7 @@ The Mummy Pharaoh: installDir: IGS: {} launch: - /TheMummyPharaoh.exe: + "/TheMummyPharaoh.exe": - when: - bit: 64 os: windows @@ -555742,7 +557250,7 @@ The Murder Room VR: id: 642700 The Murder of Sonic the Hedgehog: files: - /AppData/LocalLow/Sonic Social/The Murder of Sonic The Hedgehog/SaveData.data: + "/AppData/LocalLow/Sonic Social/The Murder of Sonic The Hedgehog/SaveData.data": tags: - config - save @@ -555751,11 +557259,11 @@ The Murder of Sonic the Hedgehog: installDir: Themurderofsonicthehedgehog: {} launch: - /The Murder of Sonic The Hedgehog.app: + "/The Murder of Sonic The Hedgehog.app": - when: - os: mac store: steam - /The Murder of Sonic The Hedgehog/The Murder of Sonic The Hedgehog.exe: + "/The Murder of Sonic The Hedgehog/The Murder of Sonic The Hedgehog.exe": - when: - bit: 64 os: windows @@ -555775,7 +557283,7 @@ The Music Machine: installDir: The Music Machine: {} launch: - /The Music Machine.exe: + "/The Music Machine.exe": - when: - store: steam steam: @@ -555784,16 +557292,16 @@ The Music Trivia Challenge: installDir: The Music Trivia Challenge: {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: id: 2182930 -'The Musketeers: Victoria''s Quest': +"The Musketeers: Victoria's Quest": installDir: - The Musketeers Victoria's Quest: {} + "The Musketeers Victoria's Quest": {} launch: - /The Musketeers. Victoria's Quest.exe: + "/The Musketeers. Victoria's Quest.exe": - when: - os: windows store: steam @@ -555803,7 +557311,7 @@ The Mutational: installDir: The Mutational: {} launch: - /The Mutational/The Mutational.exe: + "/The Mutational/The Mutational.exe": - when: - bit: 64 os: windows @@ -555822,15 +557330,15 @@ The Mysteries of Baroque: installDir: The Mysteries of Baroque: {} launch: - /MysteriesOfBaroque: + "/MysteriesOfBaroque": - when: - os: linux store: steam - /MysteriesOfBaroque.exe: + "/MysteriesOfBaroque.exe": - when: - os: windows store: steam - /The Mysteries of Baroque.app/Contents/MacOS/The Mysteries of Baroque: + "/The Mysteries of Baroque.app/Contents/MacOS/The Mysteries of Baroque": - when: - os: mac store: steam @@ -555838,7 +557346,7 @@ The Mysteries of Baroque: id: 944650 The Mysterious Cities of Gold: files: - /Ynnis Interactive/MCO - Mondes Secrets: + "/Ynnis Interactive/MCO - Mondes Secrets": tags: - config - save @@ -555847,7 +557355,7 @@ The Mysterious Cities of Gold: installDir: MCO - Secret Paths: {} launch: - /Launcher.exe: + "/Launcher.exe": - when: - bit: 32 os: windows @@ -555856,7 +557364,7 @@ The Mysterious Cities of Gold: id: 261940 The Mysterious Island: files: - /Mysterious Island/Data/*.sav: + "/Mysterious Island/Data/*.sav": tags: - save when: @@ -555865,7 +557373,7 @@ The Mysterious Ship: installDir: Theship: {} launch: - /ship.exe: + "/ship.exe": - when: - os: windows store: steam @@ -555875,7 +557383,7 @@ The Mystery Room: installDir: The Mystery Room: {} launch: - /The Mystery Room.exe: + "/The Mystery Room.exe": - when: - os: windows store: steam @@ -555885,7 +557393,7 @@ The Mystery of Bikini Island: installDir: The Mystery of Bikini Island: {} launch: - /The Mystery of Bikini Island.exe: + "/The Mystery of Bikini Island.exe": - when: - os: windows store: steam @@ -555895,11 +557403,11 @@ The Mystery of Devils House: installDir: The Mystery of Devils House: {} launch: - /TheMysteryofDevilsHouse: + "/TheMysteryofDevilsHouse": - when: - os: linux store: steam - /TheMysteryofDevilsHouse.exe: + "/TheMysteryofDevilsHouse.exe": - when: - os: windows store: steam @@ -555909,7 +557417,7 @@ The Mystery of Happyville: installDir: The Mystery of Happyville: {} launch: - /The Mystery of Happyville.exe: + "/The Mystery of Happyville.exe": - when: - os: windows store: steam @@ -555919,11 +557427,11 @@ The Mystery of Woolley Mountain: installDir: The Mystery Of Woolley Mountain: {} launch: - /The Mystery Of Woolley Mountain.app/Contents/MacOS/The Mystery Of Woolley Mountain: + "/The Mystery Of Woolley Mountain.app/Contents/MacOS/The Mystery Of Woolley Mountain": - when: - os: mac store: steam - /The Mystery Of Woolley Mountain/The Mystery Of Woolley Mountain.exe: + "/The Mystery Of Woolley Mountain/The Mystery Of Woolley Mountain.exe": - when: - os: windows store: steam @@ -555933,7 +557441,7 @@ The Mystery of a Lost Planet: installDir: The Mystery of a Lost Planet: {} launch: - /Planet.exe: + "/Planet.exe": - when: - os: windows store: steam @@ -555941,12 +557449,12 @@ The Mystery of a Lost Planet: id: 400200 The Mystery of the Druids: files: - /SAVEGAME: + "/SAVEGAME": tags: - save when: - os: windows - /lastgame: + "/lastgame": tags: - save when: @@ -555956,7 +557464,7 @@ The Mystery of the Druids: installDir: The Mystery of the Druids: {} launch: - /edd.exe: + "/edd.exe": - when: - store: steam registry: @@ -555965,49 +557473,49 @@ The Mystery of the Druids: - config steam: id: 343000 -'The Myth Seekers 2: The Sunken City': +"The Myth Seekers 2: The Sunken City": installDir: The Myth Seekers 2: {} launch: - /TheMythSeekers2.exe: + "/TheMythSeekers2.exe": - when: - os: windows store: steam - /TheMythSeekers2_amd64: + "/TheMythSeekers2_amd64": - when: - bit: 64 os: linux store: steam - /TheMythSeekers2_i386: + "/TheMythSeekers2_i386": - when: - bit: 32 os: linux store: steam - /mac_steam.app/Contents/MacOS/mac_steam: + "/mac_steam.app/Contents/MacOS/mac_steam": - when: - os: mac store: steam steam: id: 1055310 -'The Myth Seekers: The Legacy of Vulcan': +"The Myth Seekers: The Legacy of Vulcan": installDir: The Myth Seekers The Legacy of Vulcan: {} launch: - /MythSeekers.exe: + "/MythSeekers.exe": - when: - os: windows store: steam - /MythSeekers_amd64: + "/MythSeekers_amd64": - when: - bit: 64 os: linux store: steam - /MythSeekers_i386: + "/MythSeekers_i386": - when: - bit: 32 os: linux store: steam - /mac_steam.app/Contents/MacOS/mac_steam: + "/mac_steam.app/Contents/MacOS/mac_steam": - when: - os: mac store: steam @@ -556015,7 +557523,7 @@ The Mystery of the Druids: id: 657040 The Nadi Project: files: - /AppData/LocalLow/Monkeys Tales Studio/The Nadi Project: + "/AppData/LocalLow/Monkeys Tales Studio/The Nadi Project": tags: - save when: @@ -556023,27 +557531,27 @@ The Nadi Project: installDir: The NADI Project: {} launch: - /TNP.exe: + "/TNP.exe": - when: - bit: 64 os: windows store: steam - /TNP.x86: + "/TNP.x86": - when: - bit: 32 os: linux store: steam - /TNP.x86_64: + "/TNP.x86_64": - when: - bit: 64 os: linux store: steam - /TNP_32.exe: + "/TNP_32.exe": - when: - bit: 32 os: windows store: steam - /TNP_osx.app: + "/TNP_osx.app": - when: - os: mac store: steam @@ -556057,7 +557565,7 @@ The Naked Game: installDir: The Naked Game: {} launch: - /TheNakedGame.exe: + "/TheNakedGame.exe": - when: - os: windows store: steam @@ -556067,15 +557575,15 @@ The Narrator Is a DICK: installDir: The Narrator is a DICK: {} launch: - /TheNarratorIsADick.app: + "/TheNarratorIsADick.app": - when: - os: mac store: steam - /TheNarratorIsADick.exe: + "/TheNarratorIsADick.exe": - when: - os: windows store: steam - /TheNarratorIsaDick.x86: + "/TheNarratorIsaDick.x86": - when: - os: linux store: steam @@ -556088,11 +557596,11 @@ The Nature: installDir: The Nature: {} launch: - /TN.exe: + "/TN.exe": - when: - os: windows store: steam - /runTN.sh: + "/runTN.sh": - when: - os: linux store: steam @@ -556102,11 +557610,11 @@ The Navigator: installDir: The Navigator: {} launch: - /TheNavigator.app: + "/TheNavigator.app": - when: - os: mac store: steam - /TheNavigator.exe: + "/TheNavigator.exe": - when: - os: windows store: steam @@ -556116,15 +557624,15 @@ The Necklace Of Blood Part II: installDir: The Necklace Of Blood Part II: {} launch: - /NecklaceOfBloodII.app: + "/NecklaceOfBloodII.app": - when: - os: mac store: steam - /NecklaceOfBloodII.exe: + "/NecklaceOfBloodII.exe": - when: - os: windows store: steam - /NecklaceOfBloodII.sh: + "/NecklaceOfBloodII.sh": - when: - os: linux store: steam @@ -556134,25 +557642,25 @@ The Necklace of Blood: installDir: The Necklace Of Blood: {} launch: - /NecklaceOfBlood.app: + "/NecklaceOfBlood.app": - when: - os: mac store: steam - /NecklaceOfBlood.exe: + "/NecklaceOfBlood.exe": - when: - os: windows store: steam - /NecklaceOfBlood.sh: + "/NecklaceOfBlood.sh": - when: - os: linux store: steam steam: id: 792760 -The Necromancer's Castle: +"The Necromancer's Castle": installDir: - The Necromancer's Castle: {} + "The Necromancer's Castle": {} launch: - /TNC.exe: + "/TNC.exe": - when: - os: windows store: steam @@ -556160,13 +557668,13 @@ The Necromancer's Castle: id: 669620 The Need for Speed: files: - /GAMEDATA/CONFIG: + "/GAMEDATA/CONFIG": tags: - config when: - os: dos - os: windows - /GAMEDATA/SAVEGAME: + "/GAMEDATA/SAVEGAME": tags: - save when: @@ -556176,7 +557684,7 @@ The Neon Boy: installDir: The Neon Boy: {} launch: - /TheNeonBoy.exe: + "/TheNeonBoy.exe": - when: - os: windows store: steam @@ -556197,12 +557705,12 @@ The Neverhood: - save The New Adventures of the Time Machine: files: - /Save: + "/Save": tags: - save when: - os: windows - /timequake.ini: + "/timequake.ini": tags: - config when: @@ -556214,30 +557722,30 @@ The New Queen: installDir: The New Queen: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: id: 552570 -'The New Universes: ~ Eine Neue Reise Beginnt ~ Chapter 1': +"The New Universes: ~ Eine Neue Reise Beginnt ~ Chapter 1": installDir: tnu-enrb-c1: {} steam: id: 1073990 The Next Big Thing: files: - /userdata//58570/remote: + "/userdata//58570/remote": tags: - config - save when: - store: steam - /Pendulo Studios/HM2/SAVEGAME: + "/Pendulo Studios/HM2/SAVEGAME": tags: - save when: - os: windows - /Pendulo Studios/HM2/ps.config: + "/Pendulo Studios/HM2/ps.config": tags: - config when: @@ -556247,15 +557755,15 @@ The Next Big Thing: installDir: The Next BIG Thing: {} launch: - /TNBT_Config.exe: + "/TNBT_Config.exe": - when: - os: windows store: steam - /The Next BIG Thing.app: + "/The Next BIG Thing.app": - when: - os: mac store: steam - /The Next Big Thing.exe: + "/The Next Big Thing.exe": - when: - os: windows store: steam @@ -556270,7 +557778,7 @@ The Next Door: installDir: The Next Door: {} launch: - /The Next Door.exe: + "/The Next Door.exe": - when: - os: windows store: steam @@ -556278,7 +557786,7 @@ The Next Door: id: 447850 The Next Penelope: files: - /nw: + "/nw": tags: - config - save @@ -556287,20 +557795,17 @@ The Next Penelope: installDir: The Next Penelope: {} launch: - /nw: + "/nw": - when: - bit: 64 os: linux store: steam - /nw.app: - - arguments: >- - --disable-extensions --disable-plugins --disable-internal-flash --disable-popup-blocking --enable-gamepad - --enable-html5-camera --ignore-gpu-blacklist --file-descriptor-limit<40000> --allow-file-access-from-files - --disable-software-rasterizer + "/nw.app": + - arguments: "--disable-extensions --disable-plugins --disable-internal-flash --disable-popup-blocking --enable-gamepad --enable-html5-camera --ignore-gpu-blacklist --file-descriptor-limit<40000> --allow-file-access-from-files --disable-software-rasterizer" when: - os: mac store: steam - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -556311,7 +557816,7 @@ The Next World: The Next World: {} steam: id: 427860 -'The Night Cafe: A VR Tribute to Vincent Van Gogh': +"The Night Cafe: A VR Tribute to Vincent Van Gogh": installDir: The Night Cafe: {} steam: @@ -556320,7 +557825,7 @@ The Night Christmas Ended: installDir: The Night Christmas Ended: {} launch: - /The Night Christmas Ended.exe: + "/The Night Christmas Ended.exe": - when: - os: windows store: steam @@ -556328,26 +557833,26 @@ The Night Christmas Ended: id: 558440 The Night The Carsons Disappeared: installDir: - The Night The Carson's Disappeared: {} + "The Night The Carson's Disappeared": {} steam: id: 543350 The Night of Fire Stealing: installDir: The night of fire stealing: {} launch: - /TNOFS.exe: + "/TNOFS.exe": - when: - store: steam steam: id: 899290 The Night of the Rabbit: files: - /Daedalic Entertainment/The Night of the Rabbit/Savegames: + "/Daedalic Entertainment/The Night of the Rabbit/Savegames": tags: - save when: - os: windows - /Daedalic Entertainment/The Night of the Rabbit/config.ini: + "/Daedalic Entertainment/The Night of the Rabbit/config.ini": tags: - config when: @@ -556360,19 +557865,19 @@ The Night of the Rabbit: installDir: The Night of the Rabbit: {} launch: - /The Night of the Rabbit.app: + "/The Night of the Rabbit.app": - when: - os: mac store: steam - /VisionaireConfigurationTool.exe: + "/VisionaireConfigurationTool.exe": - when: - os: windows store: steam - /rabbit.exe: + "/rabbit.exe": - when: - os: windows store: steam - /start: + "/start": - when: - bit: 64 os: linux @@ -556383,7 +557888,7 @@ The Nightmare Catcher: installDir: The Nightmare Catcher: {} launch: - /NightmareCatcher.exe: + "/NightmareCatcher.exe": - when: - os: windows store: steam @@ -556393,20 +557898,20 @@ The Nightmare Cooperative: installDir: The Nightmare Cooperative: {} launch: - /nightmareCoop.app: + "/nightmareCoop.app": - when: - os: mac store: steam - /nightmareCoop.exe: + "/nightmareCoop.exe": - when: - os: windows store: steam - /nightmareCoop.x86: + "/nightmareCoop.x86": - when: - bit: 32 os: linux store: steam - /nightmareCoop.x86_64: + "/nightmareCoop.x86_64": - when: - bit: 64 os: linux @@ -556417,7 +557922,7 @@ The Nightmare from Beyond: installDir: FaceTheNightmare: {} launch: - /FaceTheNightmare.exe: + "/FaceTheNightmare.exe": - when: - os: windows store: steam @@ -556427,11 +557932,11 @@ The Nightshift Code: installDir: Nightshift Code: {} launch: - /NightShiftCode.app: + "/NightShiftCode.app": - when: - os: mac store: steam - /nightshiftcode.exe: + "/nightshiftcode.exe": - when: - os: windows store: steam @@ -556440,9 +557945,9 @@ The Nightshift Code: The Ninja Path: steam: id: 934020 -'The Ninja Saviors: Return of the Warriors': +"The Ninja Saviors: Return of the Warriors": files: - /LocalLow/TAITO CORPORATION/The Ninja Saviors Return of the Warriors//SaveData.dat: + "/LocalLow/TAITO CORPORATION/The Ninja Saviors Return of the Warriors//SaveData.dat": tags: - save when: @@ -556450,7 +557955,7 @@ The Ninja Path: installDir: The Ninja Saviors Return of the Warriors: {} launch: - /The Ninja Saviors Return of the Warriors.exe: + "/The Ninja Saviors Return of the Warriors.exe": - when: - os: windows store: steam @@ -556462,7 +557967,7 @@ The Ninja Path: id: 2288070 The Nonomancer: files: - /Graybeard Games: + "/Graybeard Games": tags: - save when: @@ -556471,7 +557976,7 @@ The Normal Day: installDir: The Normal Day: {} launch: - /TheNormalDay.exe: + "/TheNormalDay.exe": - when: - os: windows store: steam @@ -556481,7 +557986,7 @@ The North Pole: installDir: The North Pole: {} launch: - /Northpole.exe: + "/Northpole.exe": - when: - os: windows store: steam @@ -556489,7 +557994,7 @@ The North Pole: id: 1201880 The Norwood Suite: files: - /AppData/LocalLow/Cosmo D Studios LLC/The Norwood Suite: + "/AppData/LocalLow/Cosmo D Studios LLC/The Norwood Suite": tags: - save when: @@ -556500,12 +558005,15 @@ The Norwood Suite: installDir: The Norwood Suite: {} launch: - /The Norwood Suite.app: + "/The Norwood Suite.app": - when: - os: mac store: steam - /The Norwood Suite.exe: + "/The Norwood Suite.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam @@ -556519,21 +558027,24 @@ The Nose: installDir: The Nose: {} launch: - /Contents/MacOS/The Nose: + "/Contents/MacOS/The Nose": - when: - os: mac store: steam - /The Nose.exe: + "/The Nose.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam - /The Nose.x86: + "/The Nose.x86": - when: - bit: 32 os: linux store: steam - /The Nose.x86_64: + "/The Nose.x86_64": - when: - bit: 64 os: linux @@ -556547,7 +558058,7 @@ The Nothing: installDir: The Nothing: {} launch: - /The Nothing.exe: + "/The Nothing.exe": - when: - os: windows store: steam @@ -556555,19 +558066,19 @@ The Nothing: id: 672690 The Novelist: files: - /.config/unity3d/Orthogonal Games/The Novelist/Kaplans.fate: + "/.config/unity3d/Orthogonal Games/The Novelist/Kaplans.fate": tags: - config - save when: - os: linux - /AppData/LocalLow/Orthogonal Games/The Novelist/Kaplans.fate: + "/AppData/LocalLow/Orthogonal Games/The Novelist/Kaplans.fate": tags: - config - save when: - os: windows - /Library/Application Support/Orthogonal Games/The Novelist/Kaplans.fate: + "/Library/Application Support/Orthogonal Games/The Novelist/Kaplans.fate": tags: - config - save @@ -556576,20 +558087,20 @@ The Novelist: installDir: The Novelist: {} launch: - /The Novelist.app: + "/The Novelist.app": - when: - os: mac store: steam - /The Novelist.exe: + "/The Novelist.exe": - when: - os: windows store: steam - /The Novelist.x86: + "/The Novelist.x86": - when: - bit: 32 os: linux store: steam - /The Novelist.x86_64: + "/The Novelist.x86_64": - when: - bit: 64 os: linux @@ -556600,7 +558111,7 @@ The Occluder: installDir: The Occluder: {} launch: - /The Occluder.exe: + "/The Occluder.exe": - when: - os: windows store: steam @@ -556610,7 +558121,7 @@ The Occupant: installDir: The Occupant: {} launch: - /Binaries/Win32/UDK.exe: + "/Binaries/Win32/UDK.exe": - when: - os: windows store: steam @@ -556618,12 +558129,12 @@ The Occupant: id: 717670 The Occupation: files: - /My Games/TheOccupation/Saved/Config/WindowsNoEditor: + "/My Games/TheOccupation/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /My Games/TheOccupation/Saved/SaveGames: + "/My Games/TheOccupation/Saved/SaveGames": tags: - save when: @@ -556633,7 +558144,7 @@ The Occupation: installDir: The Occupation: {} launch: - /TheOccupation.exe: + "/TheOccupation.exe": - when: - bit: 64 os: windows @@ -556644,7 +558155,7 @@ The Odd Battle: installDir: The Odd Battle: {} launch: - /TheOddBattleVer1.0.1.exe: + "/TheOddBattleVer1.0.1.exe": - when: - bit: 64 os: windows @@ -556655,25 +558166,25 @@ The Odyssey: installDir: The Odyssey: {} launch: - /The Odyssey.app/Contents/MacOS/The Odyssey: + "/The Odyssey.app/Contents/MacOS/The Odyssey": - when: - os: mac store: steam - /The Odyssey.exe: + "/The Odyssey.exe": - when: - os: windows store: steam - /TheOdyssey: + "/TheOdyssey": - when: - os: linux store: steam steam: id: 516560 -'The Odyssey: Winds of Athena': +"The Odyssey: Winds of Athena": installDir: The Odyssey: {} launch: - /The Odyssey.exe: + "/The Odyssey.exe": - when: - os: windows store: steam @@ -556683,7 +558194,7 @@ The Office: installDir: The Office: {} launch: - /TheOffice.exe: + "/TheOffice.exe": - when: - store: steam steam: @@ -556692,25 +558203,25 @@ The Office Quest: installDir: The Office Quest: {} launch: - /toq.exe: + "/toq.exe": - when: - os: windows store: steam steam: id: 810660 -'The Official GamingTaylor Game, Great Job!': +"The Official GamingTaylor Game, Great Job!": installDir: - 'The Official GamingTaylor Game, Great Job!': {} + "The Official GamingTaylor Game, Great Job!": {} launch: - /OfficialGamingTaylorGame.exe: + "/OfficialGamingTaylorGame.exe": - when: - os: windows store: steam steam: id: 881510 -'The Oil Blue: Steam Legacy Edition': +"The Oil Blue: Steam Legacy Edition": files: - /datafiles/island*outline.gsmpr: + "/datafiles/island*outline.gsmpr": tags: - save when: @@ -556718,25 +558229,25 @@ The Office Quest: installDir: The Oil Blue: {} launch: - /TOB1_041.exe: + "/TOB1_041.exe": - arguments: set __COMPAT_LAYER=WIN7RTM when: - os: windows store: steam - /datafiles/TOBHelperApp.exe: + "/datafiles/TOBHelperApp.exe": - when: - os: windows store: steam steam: id: 386700 -'The Old City: Leviathan': +"The Old City: Leviathan": files: - /Binaries/Win32/SaveData.bin: + "/Binaries/Win32/SaveData.bin": tags: - save when: - os: windows - /UDKGame/Config: + "/UDKGame/Config": tags: - config when: @@ -556744,7 +558255,7 @@ The Office Quest: installDir: Old City: {} launch: - /Binaries/Win32/UDK.exe: + "/Binaries/Win32/UDK.exe": - when: - os: windows store: steam @@ -556754,11 +558265,11 @@ The Old Empire: installDir: Loneliness: {} launch: - /Loneliness.exe: + "/Loneliness.exe": - when: - os: windows store: steam - /The Empire Online.exe: + "/The Empire Online.exe": - when: - os: windows store: steam @@ -556771,11 +558282,11 @@ The Old Tree: installDir: The Old Tree: {} launch: - /TheOldTree.app: + "/TheOldTree.app": - when: - os: mac store: steam - /TheOldTree.exe: + "/TheOldTree.exe": - when: - os: windows store: steam @@ -556788,7 +558299,7 @@ The One We Found: installDir: The One We Found: {} launch: - /TheOneWefoundBuild1.exe: + "/TheOneWefoundBuild1.exe": - when: - os: windows store: steam @@ -556798,7 +558309,7 @@ The Oni Sellsword: installDir: The Oni Sellsword: {} launch: - /windows_content/Game.exe: + "/windows_content/Game.exe": - when: - os: windows store: steam @@ -556811,21 +558322,21 @@ The Operational Art of War IV: installDir: The Operational Art of War IV: {} launch: - /autorun.exe: - - arguments: '-steam' + "/autorun.exe": + - arguments: "-steam" when: - os: windows store: steam steam: id: 792660 -'The Operative: No One Lives Forever': +"The Operative: No One Lives Forever": files: - /Save: + "/Save": tags: - save when: - os: windows - /autoexec.cfg: + "/autoexec.cfg": tags: - config when: @@ -556840,22 +558351,22 @@ The Orchard of Stray Sheep: installDir: The Orchard of Stray Sheep: {} launch: - /Mayoi_Hitsuji.app: + "/Mayoi_Hitsuji.app": - when: - os: mac store: steam - /Mayoi_Hitsuji.exe: + "/Mayoi_Hitsuji.exe": - when: - os: windows store: steam - /Mayoi_Hitsuji.x86: - - arguments: '-force-opengl' + "/Mayoi_Hitsuji.x86": + - arguments: "-force-opengl" when: - bit: 32 os: linux store: steam - /Mayoi_Hitsuji.x86_64: - - arguments: '-force-opengl' + "/Mayoi_Hitsuji.x86_64": + - arguments: "-force-opengl" when: - bit: 64 os: linux @@ -556867,12 +558378,12 @@ The Orcs Strike Back!: id: 911790 The Oregon Trail (2021): files: - /Library/Containers/TheOregonTrail/Data/Documents/Savegames: + "/Library/Containers/TheOregonTrail/Data/Documents/Savegames": tags: - save when: - os: mac - /Library/Containers/TheOregonTrail/Data/Library/Application Support/Savegames: + "/Library/Containers/TheOregonTrail/Data/Library/Application Support/Savegames": tags: - save when: @@ -556880,8 +558391,8 @@ The Oregon Trail (2021): installDir: The Oregon Trail: {} launch: - /TheOregonTrail.exe: - - arguments: '-dx12' + "/TheOregonTrail.exe": + - arguments: "-dx12" when: - bit: 64 os: windows @@ -556895,7 +558406,7 @@ The Orphan A Tale of An Errant Ghost - Hidden Object Game: installDir: The Orphan A Tale of An Errant Ghost - Hidden Object Game: {} launch: - /The Orphan - A Tale of An Errant Ghost.exe: + "/The Orphan - A Tale of An Errant Ghost.exe": - when: - os: windows store: steam @@ -556905,7 +558416,7 @@ The Orphan Dreams: installDir: The Orphan Dreams: {} launch: - /The Orphan Dreams.exe: + "/The Orphan Dreams.exe": - when: - store: steam steam: @@ -556914,11 +558425,11 @@ The Orphaned Soul: installDir: The Orphaned Soul: {} launch: - /Game.app: + "/Game.app": - when: - os: mac store: steam - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -556928,15 +558439,15 @@ The Orpheus Ruse: installDir: The ORPHEUS Ruse: {} launch: - /The ORPHEUS Ruse.app/Contents/MacOS/The ORPHEUS Ruse: + "/The ORPHEUS Ruse.app/Contents/MacOS/The ORPHEUS Ruse": - when: - os: mac store: steam - /TheORPHEUSRuse: + "/TheORPHEUSRuse": - when: - os: linux store: steam - /TheORPHEUSRuse.exe: + "/TheORPHEUSRuse.exe": - when: - os: windows store: steam @@ -556946,7 +558457,7 @@ The Orville - Interactive Fan Experience: installDir: The Orville - Interactive Fan Experience: {} launch: - /OrvilleFanGame.app/Contents/MacOS/OrvilleFanGame: + "/OrvilleFanGame.app/Contents/MacOS/OrvilleFanGame": - when: - os: mac store: steam @@ -556956,8 +558467,8 @@ The Other 99: installDir: The Other 99: {} launch: - /Under.exe: - - arguments: '-fullscreen -UnderWithSteam' + "/Under.exe": + - arguments: "-fullscreen -UnderWithSteam" when: - bit: 64 os: windows @@ -556966,9 +558477,9 @@ The Other 99: id: 415010 The Other Adventure: installDir: - The Other Airi's Adventure: {} + "The Other Airi's Adventure": {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -556978,15 +558489,15 @@ The Other Half: installDir: The Other Half: {} launch: - /The Other Half.app/Contents/MacOS/The Other Half: + "/The Other Half.app/Contents/MacOS/The Other Half": - when: - os: mac store: steam - /The Other Half.exe: + "/The Other Half.exe": - when: - os: windows store: steam - /The Other Half.x86: + "/The Other Half.x86": - when: - os: linux store: steam @@ -556996,7 +558507,7 @@ The Other Side of the Screen: installDir: The other side of the screen: {} launch: - /The other side of the screen.exe: + "/The other side of the screen.exe": - when: - os: windows store: steam @@ -557005,11 +558516,11 @@ The Other Side of the Screen: The Others: steam: id: 792530 -'The Otherside: Realm of Eons': +"The Otherside: Realm of Eons": installDir: The Otherside: {} launch: - /TheOtherside.exe: + "/TheOtherside.exe": - when: - store: steam steam: @@ -557018,7 +558529,7 @@ The Otterman Empire: installDir: The Otterman Empire: {} launch: - /WindowsNoEditor/TheOttermanEmpire.exe: + "/WindowsNoEditor/TheOttermanEmpire.exe": - when: - os: windows store: steam @@ -557026,17 +558537,17 @@ The Otterman Empire: id: 1016940 The Outbound Ghost: files: - /AppData/LocalLow/Conradical Games/The Outbound Ghost/MMData/MMSoundManager/mmsound.settings: + "/AppData/LocalLow/Conradical Games/The Outbound Ghost/MMData/MMSoundManager/mmsound.settings": tags: - config when: - os: windows - /AppData/LocalLow/Conradical Games/The Outbound Ghost/beta*.es3: + "/AppData/LocalLow/Conradical Games/The Outbound Ghost/beta*.es3": tags: - save when: - os: windows - /AppData/LocalLow/Conradical Games/The Outbound Ghost/settings.es3: + "/AppData/LocalLow/Conradical Games/The Outbound Ghost/settings.es3": tags: - config when: @@ -557050,16 +558561,18 @@ The Outbound Ghost: installDir: The Outbound Ghost: {} launch: - /The Outbound Ghost.exe: + "/The Outbound Ghost.exe": - when: - store: steam + - os: linux + store: steam steam: id: 1276810 -'The Outer Rim: Survivor': +"The Outer Rim: Survivor": installDir: Outer Rim Survivor: {} launch: - /Outer Rim.exe: + "/Outer Rim.exe": - when: - os: windows store: steam @@ -557067,29 +558580,29 @@ The Outbound Ghost: id: 817360 The Outer Worlds: files: - /Saved Games/The Outer Worlds: + "/Saved Games/The Outer Worlds": tags: - save when: - os: windows - /Saved Games/The Outer Worlds Windows 10/: + "/Saved Games/The Outer Worlds Windows 10/": tags: - save when: - os: windows store: microsoft - /Indiana/Saved/Config/WindowsNoEditor: + "/Indiana/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /Packages/PrivateDivision.TheOuterWorldsWindows10_hv3d7yfbgr2rp/LocalCache/Local/Indiana/Saved/Config/WindowsNoEditor: + "/Packages/PrivateDivision.TheOuterWorldsWindows10_hv3d7yfbgr2rp/LocalCache/Local/Indiana/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows store: microsoft - /Packages/PrivateDivision.TheOuterWorldsWindows10_hv3d7yfbgr2rp/SystemAppData/wgs/: + "/Packages/PrivateDivision.TheOuterWorldsWindows10_hv3d7yfbgr2rp/SystemAppData/wgs/": tags: - save when: @@ -557099,27 +558612,27 @@ The Outer Worlds: id: 1242541569 id: gogExtra: - - 2139865411 - - 1745362009 - 1413082838 + - 1745362009 - 2085332045 + - 2139865411 steamExtra: - - 1425450 - 1393110 - 1393111 + - 1425450 - 1920490 installDir: TheOuterWorlds: {} steam: id: 578650 -'The Outer Worlds: Spacer''s Choice Edition': +"The Outer Worlds: Spacer's Choice Edition": files: - /Saved Games/The Outer Worlds Spacers Choice/: + "/Saved Games/The Outer Worlds Spacers Choice/": tags: - save when: - os: windows - /Indiana/Saved/Config/WindowsNoEditor: + "/Indiana/Saved/Config/WindowsNoEditor": tags: - config when: @@ -557127,9 +558640,9 @@ The Outer Worlds: gog: id: 1986509485 installDir: - The Outer Worlds Spacer's Choice: {} + "The Outer Worlds Spacer's Choice": {} launch: - /TheOuterWorldsSpacersChoiceEdition.exe: + "/TheOuterWorldsSpacersChoiceEdition.exe": - when: - os: windows store: steam @@ -557137,19 +558650,19 @@ The Outer Worlds: id: 1920490 The Outforce: files: - /Outforce/Scripts: + "/Outforce/Scripts": tags: - config when: - os: windows The Outlast Trials: files: - /OPP/Saved/Config/WindowsClient: + "/OPP/Saved/Config/WindowsClient": tags: - config when: - os: windows - /OPP/Saved/SaveGames: + "/OPP/Saved/SaveGames": tags: - save when: @@ -557157,30 +558670,30 @@ The Outlast Trials: installDir: The Outlast Trials: {} launch: - /TOTClient.exe: + "/TOTClient.exe": - when: - store: steam steam: id: 1304930 -'The Outlaw, The Drunk, & The Whore': +"The Outlaw, The Drunk, & The Whore": installDir: - 'The Outlaw, The Drunk, & The Whore': {} + "The Outlaw, The Drunk, & The Whore": {} launch: - /ODW.exe: + "/ODW.exe": - when: - os: windows store: steam steam: id: 853610 -'The Outpost Nine: Episode 1': +"The Outpost Nine: Episode 1": installDir: The Outpost Nine: {} launch: - /The Outpost Nine Mac.app: + "/The Outpost Nine Mac.app": - when: - os: mac store: steam - /o9.exe: + "/o9.exe": - when: - os: windows store: steam @@ -557190,7 +558703,7 @@ The Outsiders: installDir: The Outsiders: {} launch: - /TheOutsiders.exe: + "/TheOutsiders.exe": - when: - os: windows store: steam @@ -557200,7 +558713,7 @@ The Overdreamer: installDir: TheOverdreamer: {} launch: - /TheOverdreamer.exe: + "/TheOverdreamer.exe": - when: - store: steam steam: @@ -557212,7 +558725,7 @@ The Pack: installDir: The Pack: {} launch: - /The_Pack.exe: + "/The_Pack.exe": - when: - os: windows store: steam @@ -557222,20 +558735,20 @@ The Padre: installDir: The Padre: {} launch: - /ThePadre.app/Contents/MacOS/ThePadre: + "/ThePadre.app/Contents/MacOS/ThePadre": - when: - os: mac store: steam - /ThePadre.exe: + "/ThePadre.exe": - when: - os: windows store: steam - /ThePadre.x86: + "/ThePadre.x86": - when: - bit: 32 os: linux store: steam - /ThePadre.x86_64: + "/ThePadre.x86_64": - when: - bit: 64 os: linux @@ -557244,12 +558757,12 @@ The Padre: id: 747650 The Painscreek Killings: files: - /AppData/LocalLow/EQ Studios/The Painscreek Killings/SaveData/saveData.txt: + "/AppData/LocalLow/EQ Studios/The Painscreek Killings/SaveData/saveData.txt": tags: - save when: - os: windows - /AppData/LocalLow/EQ Studios/The Painscreek Killings/SaveData/saveOptionData.txt: + "/AppData/LocalLow/EQ Studios/The Painscreek Killings/SaveData/saveOptionData.txt": tags: - config when: @@ -557259,7 +558772,7 @@ The Painscreek Killings: installDir: The Painscreek Killings: {} launch: - /Painscreek.exe: + "/Painscreek.exe": - when: - store: steam registry: @@ -557268,21 +558781,21 @@ The Painscreek Killings: - config steam: id: 624270 -The Painter's Apprentice: +"The Painter's Apprentice": installDir: - The Painter's Apprentice: {} + "The Painter's Apprentice": {} launch: - /the_painters_apprentice.exe: + "/the_painters_apprentice.exe": - when: - os: windows store: steam steam: id: 780630 -The Painter's Playground: +"The Painter's Playground": installDir: - The Painter's Playground: {} + "The Painter's Playground": {} launch: - /The Painter's Playground.exe: + "/The Painter's Playground.exe": - when: - os: windows store: steam @@ -557290,7 +558803,7 @@ The Painter's Playground: id: 722330 The Pale Beyond: files: - /AppData/LocalLow/BellularStudios/The Pale Beyond: + "/AppData/LocalLow/BellularStudios/The Pale Beyond": tags: - save when: @@ -557300,11 +558813,11 @@ The Pale Beyond: installDir: The Pale Beyond: {} launch: - /The Pale Beyond.app: + "/The Pale Beyond.app": - when: - os: mac store: steam - /The Pale Beyond.exe: + "/The Pale Beyond.exe": - when: - os: windows store: steam @@ -557314,7 +558827,7 @@ The Pale City: installDir: The Pale City: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -557324,15 +558837,15 @@ The Panel DC: installDir: The Panel Remake: {} launch: - /ThePanelRemake: + "/ThePanelRemake": - when: - os: linux store: steam - /ThePanelRemake.app: + "/ThePanelRemake.app": - when: - os: mac store: steam - /ThePanelRemake.exe: + "/ThePanelRemake.exe": - when: - os: windows store: steam @@ -557342,11 +558855,11 @@ The Panic Room: installDir: The Panic Room: {} launch: - /Freedom.app/Contents/MacOS/game: + "/Freedom.app/Contents/MacOS/game": - when: - os: mac store: steam - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -557356,7 +558869,7 @@ The Paperman: installDir: The Paperman: {} launch: - /ThePaperman.exe: + "/ThePaperman.exe": - when: - os: windows store: steam @@ -557366,7 +558879,7 @@ The Parallax Effect: installDir: TheParallaxEffect: {} launch: - /TheParallaxEffect.exe: + "/TheParallaxEffect.exe": - when: - bit: 64 os: windows @@ -557378,12 +558891,12 @@ The Parchment - For The Realm: id: 942840 The Park: files: - /AtlanticIslandPark/Saved/Config/WindowsNoEditor: + "/AtlanticIslandPark/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /AtlanticIslandPark/Saved/SaveGames: + "/AtlanticIslandPark/Saved/SaveGames": tags: - save when: @@ -557393,17 +558906,17 @@ The Park: installDir: The Park: {} launch: - /AtlanticIslandPark.app/Contents/MacOS/AtlanticIslandPark: + "/AtlanticIslandPark.app/Contents/MacOS/AtlanticIslandPark": - when: - bit: 64 os: mac store: steam - /AtlanticIslandPark/Binaries/Linux/AtlanticIslandPark-Linux-Shipping: + "/AtlanticIslandPark/Binaries/Linux/AtlanticIslandPark-Linux-Shipping": - when: - bit: 64 os: linux store: steam - /AtlanticIslandPark/Binaries/Win64/ThePark.exe: + "/AtlanticIslandPark/Binaries/Win64/ThePark.exe": - when: - bit: 64 os: windows @@ -557414,7 +558927,7 @@ The Party of Demons: installDir: The Party of Demons: {} launch: - /Party.exe: + "/Party.exe": - when: - os: windows store: steam @@ -557424,7 +558937,7 @@ The Past Rhapsody: installDir: The Past Rhapsody: {} launch: - /ThePastRhapsody.exe: + "/ThePastRhapsody.exe": - when: - store: steam steam: @@ -557435,11 +558948,11 @@ The Past Within: installDir: The Past Within: {} launch: - /The Past Within.exe: + "/The Past Within.exe": - when: - os: windows store: steam - /ThePastWithin.app: + "/ThePastWithin.app": - when: - os: mac store: steam @@ -557449,11 +558962,11 @@ The Pasture: installDir: The Pasture: {} launch: - /Disabled_local.app: + "/Disabled_local.app": - when: - os: mac store: steam - /Disabled_local.exe: + "/Disabled_local.exe": - when: - os: windows store: steam @@ -557461,7 +558974,7 @@ The Pasture: id: 567680 The Path: files: - /The Path: + "/The Path": tags: - config - save @@ -557470,24 +558983,24 @@ The Path: installDir: The Path: {} launch: - /PathViewer.exe: + "/PathViewer.exe": - arguments: Q3DStart.q3d when: - os: windows store: steam - /The Path.app/Contents/MacOS/cider: - - arguments: '-psn' + "/The Path.app/Contents/MacOS/cider": + - arguments: "-psn" when: - os: mac store: steam - workingDir: /The Path + workingDir: "/The Path" steam: id: 27000 The Path To Die: installDir: ThePathToDie: {} launch: - /ThePathToDie.exe: + "/ThePathToDie.exe": - when: - os: windows store: steam @@ -557502,7 +559015,7 @@ The Path of Motus: installDir: The Path of Motus: {} launch: - /The Path of Motus.exe: + "/The Path of Motus.exe": - when: - os: windows store: steam @@ -557512,8 +559025,8 @@ The Path to Domination: installDir: The path to domination: {} launch: - /Game.exe: - - arguments: '--in-process-gpu' + "/Game.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam @@ -557521,12 +559034,12 @@ The Path to Domination: id: 912590 The Pathless: files: - /Pathless/Saved/Config/WindowsNoEditor: + "/Pathless/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /Pathless/Saved/SaveGames: + "/Pathless/Saved/SaveGames": tags: - save when: @@ -557534,7 +559047,7 @@ The Pathless: installDir: The Pathless: {} launch: - /Pathless.exe: + "/Pathless.exe": - when: - os: windows store: steam @@ -557542,12 +559055,12 @@ The Pathless: id: 1492680 The Patrician: files: - /SPIELE.DAT: + "/SPIELE.DAT": tags: - config when: - os: dos - /SPIELE.SAV: + "/SPIELE.SAV": tags: - save when: @@ -557559,22 +559072,22 @@ The Patrician: - 1207658802 The Pedestrian: files: - /.config/unity3d/Skookum Arts/The Pedestrian: + "/.config/unity3d/Skookum Arts/The Pedestrian": tags: - save when: - os: linux - /AppData/LocalLow/Skookum Arts/The Pedestrian: + "/AppData/LocalLow/Skookum Arts/The Pedestrian": tags: - save when: - os: windows - /Library/Application Support/Skookum Arts/The Pedestrian: + "/Library/Application Support/Skookum Arts/The Pedestrian": tags: - save when: - os: mac - /Packages/SkookumArts.ThePedestrian_8d90466zrmk3y/SystemAppData/wgs: + "/Packages/SkookumArts.ThePedestrian_8d90466zrmk3y/SystemAppData/wgs": tags: - save when: @@ -557585,16 +559098,16 @@ The Pedestrian: installDir: The Pedestrian: {} launch: - /ThePed_Linux_64.x86_64: + "/ThePed_Linux_64.x86_64": - when: - bit: 64 os: linux store: steam - /ThePed_Mac_64.app: + "/ThePed_Mac_64.app": - when: - os: mac store: steam - /ThePed_Win_64.exe: + "/ThePed_Win_64.exe": - when: - bit: 64 os: windows @@ -557603,22 +559116,22 @@ The Pedestrian: id: 466630 The Pegasus Expedition: files: - /AppData/LocalLow/Kalla Gameworks/The Pegasus Expedition/SaveMetaInformation.json: + "/AppData/LocalLow/Kalla Gameworks/The Pegasus Expedition/SaveMetaInformation.json": tags: - save when: - os: windows - /AppData/LocalLow/Kalla Gameworks/The Pegasus Expedition/Saves: + "/AppData/LocalLow/Kalla Gameworks/The Pegasus Expedition/Saves": tags: - save when: - os: windows - /AppData/LocalLow/Kalla Gameworks/The Pegasus Expedition/Settings.json: + "/AppData/LocalLow/Kalla Gameworks/The Pegasus Expedition/Settings.json": tags: - config when: - os: windows - /AppData/LocalLow/Kalla Gameworks/The Pegasus Expedition/TutorialProgress.json: + "/AppData/LocalLow/Kalla Gameworks/The Pegasus Expedition/TutorialProgress.json": tags: - save when: @@ -557628,7 +559141,7 @@ The Pegasus Expedition: installDir: The Pegasus Expedition: {} launch: - /The Pegasus Expedition.exe: + "/The Pegasus Expedition.exe": - when: - os: windows store: steam @@ -557638,25 +559151,25 @@ The Penguin Factory: installDir: The Penguin Factory: {} launch: - /The Penguin Factory/The Penguin Factory.app: + "/The Penguin Factory/The Penguin Factory.app": - when: - os: mac store: steam - /The Penguin Factory/The Penguin Factory.exe: + "/The Penguin Factory/The Penguin Factory.exe": - when: - os: windows store: steam - /The Penguin Factory/The Penguin Factory.x86_64: + "/The Penguin Factory/The Penguin Factory.x86_64": - when: - os: linux store: steam steam: id: 486180 -'The Pepper Prince: Seasoning 1': +"The Pepper Prince: Seasoning 1": installDir: The Pepper Prince - Seasoning 1: {} launch: - /The Pepper Prince - Seasoning 1.exe: + "/The Pepper Prince - Seasoning 1.exe": - when: - os: windows store: steam @@ -557674,7 +559187,7 @@ The Perfectionist: installDir: The Perfectionist: {} launch: - /ThePerfectionist.exe: + "/ThePerfectionist.exe": - when: - os: windows store: steam @@ -557684,8 +559197,8 @@ The Persistence: installDir: The Persistence: {} launch: - /Persistence.exe: - - arguments: '-2d' + "/Persistence.exe": + - arguments: "-2d" when: - bit: 64 os: windows @@ -557696,7 +559209,7 @@ The Phantom of the City: installDir: The phantom of the city: {} launch: - /The phantom of the city.exe: + "/The phantom of the city.exe": - when: - os: windows store: steam @@ -557711,7 +559224,7 @@ The Piano: installDir: The Piano: {} launch: - /ThePiano.exe: + "/ThePiano.exe": - when: - bit: 64 os: windows @@ -557722,7 +559235,7 @@ The Pilgrim: installDir: The Pilgrim: {} launch: - /The Pilgrim.exe: + "/The Pilgrim.exe": - when: - store: steam steam: @@ -557731,20 +559244,20 @@ The Pilgrimage I: installDir: Pilgrimage: {} launch: - /Pilgrimage.app/Contents/MacOS/Pilgrimage: + "/Pilgrimage.app/Contents/MacOS/Pilgrimage": - when: - os: mac store: steam - /Pilgrimage/pilgrimage.exe: + "/Pilgrimage/pilgrimage.exe": - when: - os: windows store: steam - /Pilgrimage/pilgrimage.x86: + "/Pilgrimage/pilgrimage.x86": - when: - bit: 32 os: linux store: steam - /Pilgrimage/pilgrimage.x86_64: + "/Pilgrimage/pilgrimage.x86_64": - when: - bit: 64 os: linux @@ -557755,7 +559268,7 @@ The Pillage: installDir: The Pillage: {} launch: - /Organs.exe: + "/Organs.exe": - when: - os: windows store: steam @@ -557765,11 +559278,11 @@ The Pillar: installDir: The Pillar: {} launch: - /The Pillar.exe: + "/The Pillar.exe": - when: - os: windows store: steam - /ThePillar.app: + "/ThePillar.app": - when: - os: mac store: steam @@ -557777,7 +559290,7 @@ The Pillar: id: 1126130 The Pinball Arcade: files: - /My Games/Pinball Arcade: + "/My Games/Pinball Arcade": tags: - config - save @@ -557786,23 +559299,23 @@ The Pinball Arcade: installDir: PinballArcade: {} launch: - /PBAConfig.exe: + "/PBAConfig.exe": - when: - os: windows store: steam - /PinballArcade.exe: + "/PinballArcade.exe": - when: - os: windows store: steam - /PinballArcade11.exe: + "/PinballArcade11.exe": - when: - os: windows store: steam - /PinballArcadeCabinet.exe: + "/PinballArcadeCabinet.exe": - when: - os: windows store: steam - /PinballArcadeSteam.app: + "/PinballArcadeSteam.app": - when: - os: mac store: steam @@ -557812,11 +559325,11 @@ The Pinball Wizard: installDir: The Pinball Wizard: {} launch: - /Pinball Wizard.exe: + "/Pinball Wizard.exe": - when: - os: windows store: steam - /ThePinballWizard.app: + "/ThePinballWizard.app": - when: - os: mac store: steam @@ -557824,7 +559337,7 @@ The Pinball Wizard: id: 2101800 The Pink Panther in Hokus Pokus Pink: files: - /*.pk2: + "/*.pk2": tags: - save when: @@ -557833,22 +559346,22 @@ The Pink Panther in Hokus Pokus Pink: HKEY_CURRENT_USER/Software/Wanderlust/The Pink Panther in Hokus Pokus Pink: tags: - config -The Pink Panther's Passport to Peril: +"The Pink Panther's Passport to Peril": files: - /*.ptp: + "/*.ptp": tags: - save when: - os: windows registry: - HKEY_CURRENT_USER/Software/Wanderlust/The Pink Panther's Passport to Peril: + "HKEY_CURRENT_USER/Software/Wanderlust/The Pink Panther's Passport to Peril": tags: - config -'The Pioneers: Surviving Desolation': +"The Pioneers: Surviving Desolation": installDir: The Pioneers surviving desolation: {} launch: - /The Pioneers.exe: + "/The Pioneers.exe": - when: - store: steam steam: @@ -557857,15 +559370,15 @@ The Pirate Queen: installDir: The Pirate Queen: {} launch: - /The Pirate Queen.exe: + "/The Pirate Queen.exe": - when: - os: windows store: steam steam: id: 1108780 -The Pirate's Fate: +"The Pirate's Fate": files: - /Pirate's Fate Dev/User Data/Default: + "/Pirate's Fate Dev/User Data/Default": tags: - save when: @@ -557873,25 +559386,25 @@ The Pirate's Fate: gog: id: 1898584026 installDir: - The Pirate's Fate: {} + "The Pirate's Fate": {} launch: - /Game.app/Contents/MacOS/nwjs: + "/Game.app/Contents/MacOS/nwjs": - when: - os: mac store: steam - /game: + "/game": - when: - os: linux store: steam - /game.exe: + "/game.exe": - when: - os: windows store: steam steam: id: 553480 -'The Pirate: Caribbean Hunt': +"The Pirate: Caribbean Hunt": files: - /userdata//512470/remote: + "/userdata//512470/remote": tags: - save when: @@ -557900,33 +559413,33 @@ The Pirate's Fate: installDir: The Pirate Caribbean Hunt: {} launch: - /ThePirate.exe: + "/ThePirate.exe": - when: - os: windows store: steam - /ThePirate.x86_64: + "/ThePirate.x86_64": - when: - os: linux store: steam - /ThePirateOSX.app: + "/ThePirateOSX.app": - when: - os: mac store: steam steam: id: 512470 -'The Pirate: Plague of the Dead': +"The Pirate: Plague of the Dead": installDir: The Pirate Plague of the Dead: {} launch: - /ThePirate2.exe: + "/ThePirate2.exe": - when: - os: windows store: steam - /ThePirate2.x86_64: + "/ThePirate2.x86_64": - when: - os: linux store: steam - /ThePirate2OSX.app: + "/ThePirate2OSX.app": - when: - os: mac store: steam @@ -557936,7 +559449,7 @@ The Pirates of Sector 7: installDir: The Pirates of Sector 7: {} launch: - /Sector7.exe: + "/Sector7.exe": - when: - os: windows store: steam @@ -557948,26 +559461,27 @@ The Pit: The Pit and the Pendulum: steam: id: 463050 -'The Pit: Broken Bones': +"The Pit: Broken Bones": steam: id: 1066380 -'The Pit: Infinity': +"The Pit: Infinity": files: - /userdata//577410/remote: + "/userdata//577410/remote": tags: - save when: - os: windows store: steam - /Pit/Saved/Config/WindowsNoEditor: + "/Pit/Saved/Config/WindowsNoEditor": tags: - config when: - - store: steam + - os: windows + store: steam installDir: The Pit - Infinity: {} launch: - /Pit.exe: + "/Pit.exe": - when: - store: steam steam: @@ -557976,15 +559490,15 @@ The Pizza Delivery Boy Who Saved the World: installDir: Pizza Delivery Boy: {} launch: - /The_Pizza_Delivery_Boy_Who_Saved_the_World.app: + "/The_Pizza_Delivery_Boy_Who_Saved_the_World.app": - when: - os: mac store: steam - /The_Pizza_Delivery_Boy_Who_Saved_the_World.exe: + "/The_Pizza_Delivery_Boy_Who_Saved_the_World.exe": - when: - os: windows store: steam - /The_Pizza_Delivery_Boy_Who_Saved_the_World.sh: + "/The_Pizza_Delivery_Boy_Who_Saved_the_World.sh": - when: - os: linux store: steam @@ -557994,7 +559508,7 @@ The Placebos: installDir: The Placebos: {} launch: - /ThePlacebos.exe: + "/ThePlacebos.exe": - when: - bit: 64 os: windows @@ -558005,7 +559519,7 @@ The Plague: installDir: WarFallen: {} launch: - /TPgame.exe: + "/TPgame.exe": - when: - bit: 64 os: windows @@ -558016,7 +559530,7 @@ The Plague (Nalu Zou): installDir: The Plague: {} launch: - /Plague.exe: + "/Plague.exe": - when: - os: windows store: steam @@ -558028,15 +559542,15 @@ The Plague Doctor of Wippra: installDir: The Plague Doctor of Wippra: {} launch: - /The Plague Doctor of Wippra.app: + "/The Plague Doctor of Wippra.app": - when: - os: mac store: steam - /The Plague Doctor of Wippra.exe: + "/The Plague Doctor of Wippra.exe": - when: - os: windows store: steam - /The Plague Doctor of Wippra.x86_64: + "/The Plague Doctor of Wippra.x86_64": - when: - bit: 64 os: linux @@ -558047,15 +559561,15 @@ The Plan (2013): installDir: The Plan: {} launch: - /The Plan.app: + "/The Plan.app": - when: - os: mac store: steam - /The Plan.exe: + "/The Plan.exe": - when: - os: windows store: steam - /The Plan.x86: + "/The Plan.x86": - when: - os: linux store: steam @@ -558070,12 +559584,12 @@ The Plan (2013): id: 250600 The Plane Effect: files: - /THE_PLANE_EFFECT/Saved/Config/WindowsNoEditor: + "/THE_PLANE_EFFECT/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /THE_PLANE_EFFECT/Saved/SaveGames: + "/THE_PLANE_EFFECT/Saved/SaveGames": tags: - save when: @@ -558085,7 +559599,7 @@ The Plane Effect: installDir: The Plane Effect: {} launch: - /THE_PLANE_EFFECT.exe: + "/THE_PLANE_EFFECT.exe": - when: - bit: 64 os: windows @@ -558094,7 +559608,7 @@ The Plane Effect: id: 1448760 The Planet Crafter: files: - /AppData/LocalLow/MijuGames/Planet Crafter: + "/AppData/LocalLow/MijuGames/Planet Crafter": tags: - save when: @@ -558104,7 +559618,7 @@ The Planet Crafter: installDir: The Planet Crafter: {} launch: - /Planet Crafter.exe: + "/Planet Crafter.exe": - when: - os: windows store: steam @@ -558114,7 +559628,7 @@ The Planet of the Vicious Creatures: installDir: Planet Vicious Creatures: {} launch: - /planetvc.exe: + "/planetvc.exe": - when: - os: windows store: steam @@ -558124,7 +559638,7 @@ The Plant: installDir: The Plant: {} launch: - /Plant.exe: + "/Plant.exe": - when: - os: windows store: steam @@ -558134,7 +559648,7 @@ The Platformer Gun: installDir: The Platformer Gun: {} launch: - /The Platformer Gun.exe: + "/The Platformer Gun.exe": - when: - store: steam steam: @@ -558149,7 +559663,7 @@ The Ploshers: installDir: The Ploshers: {} launch: - /theploshers.exe: + "/theploshers.exe": - when: - os: windows store: steam @@ -558159,7 +559673,7 @@ The Plus Point: installDir: The Plus Point: {} launch: - /The Plus Point.exe: + "/The Plus Point.exe": - when: - os: windows store: steam @@ -558172,7 +559686,7 @@ The Pointless Car Chase: installDir: The Pointless Car Chase: {} launch: - /The Pointless Car Chase.exe: + "/The Pointless Car Chase.exe": - when: - os: windows store: steam @@ -558185,7 +559699,7 @@ The Poisoner: id: 1076290 The Polar Express: files: - /Save: + "/Save": tags: - save when: @@ -558198,7 +559712,7 @@ The Political Machine 2012: installDir: The Political Machine 2012: {} launch: - /PolMachine2012.exe: + "/PolMachine2012.exe": - when: - store: steam steam: @@ -558207,7 +559721,7 @@ The Political Machine 2016: installDir: Political Machine 2016: {} launch: - /PM2016.exe: + "/PM2016.exe": - when: - os: windows store: steam @@ -558217,11 +559731,11 @@ The Political Machine 2020: installDir: The Political Machine 2020: {} launch: - /StardockLauncher.exe: + "/StardockLauncher.exe": - when: - os: windows store: steam - /The Political Machine 2020.app: + "/The Political Machine 2020.app": - when: - os: mac store: steam @@ -558229,17 +559743,17 @@ The Political Machine 2020: id: 1188680 The Political Process: files: - /the_political_process/User Data/Default/saveFiles/campaignSaves: + "/the_political_process/User Data/Default/saveFiles/campaignSaves": tags: - save when: - os: windows - /the_political_process/User Data/Default/saveFiles/dictatorSaves: + "/the_political_process/User Data/Default/saveFiles/dictatorSaves": tags: - save when: - os: windows - /the_political_process/User Data/Default/saveFiles/playerSettings.json: + "/the_political_process/User Data/Default/saveFiles/playerSettings.json": tags: - config when: @@ -558247,7 +559761,7 @@ The Political Process: installDir: The Political Process: {} launch: - /ThePoliticalProcess.exe: + "/ThePoliticalProcess.exe": - when: - bit: 64 os: windows @@ -558259,9 +559773,9 @@ The Polynesian Cultural Center VR Experience: PCCVR: {} steam: id: 1005330 -'The Polynomial: Space of the Music': +"The Polynomial: Space of the Music": files: - /.polynomial: + "/.polynomial": tags: - config - save @@ -558270,31 +559784,31 @@ The Polynesian Cultural Center VR Experience: installDir: ThePolynomial: {} launch: - /Polynomial.exe: + "/Polynomial.exe": - when: - os: windows store: steam - - arguments: '--use_default_settings=1' + - arguments: "--use_default_settings=1" when: - os: windows store: steam - /Polynomial32: + "/Polynomial32": - when: - os: linux store: steam - - arguments: '--use_default_settings=1' + - arguments: "--use_default_settings=1" when: - os: linux store: steam - /Polynomial64: + "/Polynomial64": - when: - os: linux store: steam - /Polynomial_osx.app: + "/Polynomial_osx.app": - when: - os: mac store: steam - - arguments: '--use_default_settings=1' + - arguments: "--use_default_settings=1" when: - os: mac store: steam @@ -558304,7 +559818,7 @@ The Portal Dimension - Bizarre Huntseeker: installDir: The Portal Dimension: {} launch: - /The Portal Dimension.exe: + "/The Portal Dimension.exe": - when: - os: windows store: steam @@ -558314,32 +559828,32 @@ The Power Factory: installDir: The Power Factory: {} launch: - /The Power Factory.exe: + "/The Power Factory.exe": - when: - bit: 32 os: windows store: steam - /The Power Factory.x86: + "/The Power Factory.x86": - when: - bit: 32 os: linux store: steam - /The Power Factory.x86_64: + "/The Power Factory.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 707860 -'The Powerpuff Girls: Defenders of Townsville': +"The Powerpuff Girls: Defenders of Townsville": files: - /.config/unity3d/Cartoon Network/PPG Defenders of Townsville: + "/.config/unity3d/Cartoon Network/PPG Defenders of Townsville": tags: - config - save when: - os: linux - /AppData/LocalLow/Cartoon Network/PPG Defenders of Townsville: + "/AppData/LocalLow/Cartoon Network/PPG Defenders of Townsville": tags: - save when: @@ -558347,15 +559861,15 @@ The Power Factory: installDir: Powerpuff Girls: {} launch: - /ppg_linux: + "/ppg_linux": - when: - os: linux store: steam - /ppg_mac_steam.app: + "/ppg_mac_steam.app": - when: - os: mac store: steam - /ppg_win_steam.exe: + "/ppg_win_steam.exe": - when: - os: windows store: steam @@ -558369,7 +559883,7 @@ The Preposterous Awesomeness of Everything: installDir: The Preposterous Awesomeness of Everything: {} launch: - /TPAoE.exe: + "/TPAoE.exe": - when: - os: windows store: steam @@ -558379,11 +559893,11 @@ The President: installDir: The President: {} launch: - /The President.exe: + "/The President.exe": - when: - os: windows store: steam - /ThePresident.app: + "/ThePresident.app": - when: - os: mac store: steam @@ -558401,11 +559915,11 @@ The Princess Adventure: installDir: The Princess Adventure: {} launch: - /the-princess-adventure.exe: + "/the-princess-adventure.exe": - when: - os: windows store: steam - /the-princess-adventure.x86: + "/the-princess-adventure.x86": - when: - os: linux store: steam @@ -558415,7 +559929,7 @@ The Princess and the Frog: installDir: Princess and The Frog: {} launch: - /PrincessAndFrog.exe: + "/PrincessAndFrog.exe": - when: - store: steam steam: @@ -558423,30 +559937,30 @@ The Princess and the Frog: The Princess is in Another Castle: steam: id: 723750 -The Princess' Heart: +"The Princess' Heart": installDir: - The Princess' Heart: {} + "The Princess' Heart": {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: id: 378830 -'The Princess, the Stray Cat, and Matters of the Heart': +"The Princess, the Stray Cat, and Matters of the Heart": installDir: - 'The Princess, the Stray Cat, and Matters of the Heart': {} + "The Princess, the Stray Cat, and Matters of the Heart": {} launch: - /noratoto1.exe: + "/noratoto1.exe": - when: - os: windows store: steam steam: id: 1010600 -'The Princess, the Stray Cat, and Matters of the Heart 2': +"The Princess, the Stray Cat, and Matters of the Heart 2": installDir: - 'The Princess, the Stray Cat, and Matters of the Heart 2': {} + "The Princess, the Stray Cat, and Matters of the Heart 2": {} launch: - /noratoto2.exe: + "/noratoto2.exe": - when: - os: windows store: steam @@ -558456,7 +559970,7 @@ The Prism: installDir: The Prism: {} launch: - /The_Prism.exe: + "/The_Prism.exe": - when: - os: windows store: steam @@ -558466,11 +559980,11 @@ The Prison: installDir: The Prison: {} launch: - /Prison.app: + "/Prison.app": - when: - os: mac store: steam - /The Prison.exe: + "/The Prison.exe": - when: - os: windows store: steam @@ -558480,7 +559994,7 @@ The Prison Experiment: installDir: The Prison Experiment: {} launch: - /BattleRoyale.exe: + "/BattleRoyale.exe": - when: - bit: 64 os: windows @@ -558491,11 +560005,11 @@ The Prison Game: installDir: The Prison Game: {} launch: - /ThePrisonGame.exe: + "/ThePrisonGame.exe": - when: - os: windows store: steam - /ThePrisonGame.sh: + "/ThePrisonGame.sh": - when: - os: linux store: steam @@ -558503,7 +560017,7 @@ The Prison Game: id: 461990 The Procession to Calvary: files: - /AppData/LocalLow/Joe Richardson/The Procession to Calvary: + "/AppData/LocalLow/Joe Richardson/The Procession to Calvary": tags: - save when: @@ -558511,23 +560025,23 @@ The Procession to Calvary: installDir: The Procession to Calvary: {} launch: - /The Procession to Calvary.app: + "/The Procession to Calvary.app": - when: - os: mac store: steam - /The Procession to Calvary.exe: - - arguments: '-popupwindow' + "/The Procession to Calvary.exe": + - arguments: "-popupwindow" when: - os: windows store: steam - /TheProcessionToCalvary.x86_64: - - arguments: '-force-glcore42 -force-clamped' + "/TheProcessionToCalvary.x86_64": + - arguments: "-force-glcore42 -force-clamped" when: - os: linux store: steam steam: id: 1071130 -'The Professor Presents: GotHandles': +"The Professor Presents: GotHandles": installDir: TheProfessorPresentsGotHandles: {} steam: @@ -558536,7 +560050,7 @@ The Prometheus Secret Noohra: installDir: The Prometheus Secret Noohra: {} launch: - /ThePrometheusSecret.exe: + "/ThePrometheusSecret.exe": - when: - bit: 64 os: windows @@ -558547,11 +560061,11 @@ The Promethium Effect: installDir: The Promethium Effect: {} launch: - /PromethiumEffect.app: + "/PromethiumEffect.app": - when: - os: mac store: steam - /PromethiumEffect.exe: + "/PromethiumEffect.exe": - when: - os: windows store: steam @@ -558561,11 +560075,11 @@ The Promised Land: installDir: The Promised Land: {} launch: - /The Promised Land.app: + "/The Promised Land.app": - when: - os: mac store: steam - /ThePromisedLand.exe: + "/ThePromisedLand.exe": - when: - os: windows store: steam @@ -558575,7 +560089,7 @@ The Prophecy Lies!: installDir: The Prophecy Lies!: {} launch: - /nw.exe: + "/nw.exe": - when: - bit: 64 os: windows @@ -558586,18 +560100,18 @@ The Prophecy of Statues: installDir: The prophecy of statues: {} launch: - /The prophecy of statues.exe: + "/The prophecy of statues.exe": - when: - bit: 64 os: windows store: steam steam: id: 923180 -'The Protagonist: EX-1': +"The Protagonist: EX-1": installDir: The Protagonist EX-1: {} launch: - /The_Protagonist.exe: + "/The_Protagonist.exe": - when: - bit: 64 os: windows @@ -558608,7 +560122,7 @@ The Protocons: installDir: The Protocons: {} launch: - /Protocons.exe: + "/Protocons.exe": - when: - os: windows store: steam @@ -558618,22 +560132,22 @@ The Prototype: installDir: 初颜: {} launch: - /Game.app: + "/Game.app": - when: - os: mac store: steam - /Game.exe: - - arguments: '--in-process-gpu --disable-transparency' + "/Game.exe": + - arguments: "--in-process-gpu --disable-transparency" when: - os: windows store: steam steam: id: 682670 -'The Psychiatrist: Major Depression': +"The Psychiatrist: Major Depression": installDir: The Psychiatrist: {} launch: - /thepsych.exe: + "/thepsych.exe": - when: - os: windows store: steam @@ -558644,7 +560158,7 @@ The Psychic: id: 876240 The Punisher (2005): files: - /profiles: + "/profiles": tags: - save when: @@ -558653,21 +560167,21 @@ The Puppet Master: installDir: The Puppet Master: {} launch: - /Default Linux desktop Universal.x86: + "/Default Linux desktop Universal.x86": - when: - bit: 32 os: linux store: steam - /Default Linux desktop Universal.x86_64: + "/Default Linux desktop Universal.x86_64": - when: - bit: 64 os: linux store: steam - /Default Mac desktop Universal.app: + "/Default Mac desktop Universal.app": - when: - os: mac store: steam - /windows.exe: + "/windows.exe": - when: - os: windows store: steam @@ -558677,11 +560191,11 @@ The Puppet of Tersa: installDir: ThePuppetofTersa: {} launch: - /ThePuppetofTersa.app: + "/ThePuppetofTersa.app": - when: - os: mac store: steam - /ThePuppetofTersa.exe: + "/ThePuppetofTersa.exe": - when: - os: windows store: steam @@ -558701,7 +560215,7 @@ The Purring Quest: installDir: The Purring Quest: {} launch: - /ThePurringQuest.exe: + "/ThePurringQuest.exe": - when: - os: windows store: steam @@ -558711,18 +560225,18 @@ The Pusher: installDir: The Pusher: {} launch: - /ThePusher.exe: + "/ThePusher.exe": - when: - bit: 64 os: windows store: steam steam: id: 950830 -'The Putinland: Divide & Conquer': +"The Putinland: Divide & Conquer": installDir: The Putinland Divide & Conquer: {} launch: - /Putinland.exe: + "/Putinland.exe": - when: - bit: 64 os: windows @@ -558733,7 +560247,7 @@ The Puzzle Box Society: installDir: The Puzzle Box Society: {} launch: - /PuzzleBox.exe: + "/PuzzleBox.exe": - when: - bit: 64 os: windows @@ -558753,19 +560267,19 @@ The Qaedon Wars - The Story Begins: installDir: The Qaedon Wars - The Story Begins: {} launch: - /The Story Begins.exe: + "/The Story Begins.exe": - when: - store: steam steam: id: 957570 The Quarry: files: - /TheQuarry/Saved/Config/WindowsNoEditor: + "/TheQuarry/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /TheQuarry/Saved/SaveGames: + "/TheQuarry/Saved/SaveGames": tags: - save when: @@ -558784,7 +560298,7 @@ The Quarter Game: installDir: The Quarter Game: {} launch: - /TheQuarterGame.exe: + "/TheQuarterGame.exe": - when: - os: windows store: steam @@ -558794,15 +560308,15 @@ The Queen of Blackwood High: installDir: The Queen of Blackwood High: {} launch: - /TQoBH.app/Contents/MacOS/TQoBH: + "/TQoBH.app/Contents/MacOS/TQoBH": - when: - os: mac store: steam - /TQoBH.exe: + "/TQoBH.exe": - when: - os: windows store: steam - /TQoBH.sh: + "/TQoBH.sh": - when: - os: linux store: steam @@ -558810,12 +560324,12 @@ The Queen of Blackwood High: id: 897830 The Quest: files: - /Saved Games/The Quest/Save*.save: + "/Saved Games/The Quest/Save*.save": tags: - save when: - os: windows - /Saved Games/The Quest/config.ini: + "/Saved Games/The Quest/config.ini": tags: - config when: @@ -558825,11 +560339,11 @@ The Quest: installDir: The Quest: {} launch: - /The Quest.app/Contents/MacOS/The Quest: + "/The Quest.app/Contents/MacOS/The Quest": - when: - os: mac store: steam - /TheQuest.exe: + "/TheQuest.exe": - when: - os: windows store: steam @@ -558848,7 +560362,7 @@ The Quest for Achievements Remix: installDir: The Quest for Achievements Remix: {} launch: - /TQFA.exe: + "/TQFA.exe": - when: - os: windows store: steam @@ -558858,7 +560372,7 @@ The Quest for the Big Key: installDir: BigKey: {} launch: - /BigKey.exe: + "/BigKey.exe": - when: - os: windows store: steam @@ -558866,12 +560380,12 @@ The Quest for the Big Key: id: 777820 The Quiet Man: files: - /Moon/Saved/Config/WindowsNoEditor: + "/Moon/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /Moon/Saved/SaveGames/LevelProgression.sav: + "/Moon/Saved/SaveGames/LevelProgression.sav": tags: - save when: @@ -558879,7 +560393,7 @@ The Quiet Man: installDir: THE QUIET MAN: {} launch: - /Moon.exe: + "/Moon.exe": - when: - os: windows store: steam @@ -558889,15 +560403,15 @@ The Quiet Sleep: installDir: The Quiet Sleep: {} launch: - /nw: + "/nw": - when: - os: linux store: steam - /nw.exe: + "/nw.exe": - when: - os: windows store: steam - /quietsleep.app/Contents/MacOS/nwjs: + "/quietsleep.app/Contents/MacOS/nwjs": - when: - os: mac store: steam @@ -558907,7 +560421,7 @@ The Quivering: installDir: The Quivering: {} launch: - /QuivMenu.exe: + "/QuivMenu.exe": - when: - os: windows store: steam @@ -558922,31 +560436,31 @@ The Rabbit and The Owl: installDir: The Rabbit and The Owl: {} launch: - /The Rabbit and The Owl.app: + "/The Rabbit and The Owl.app": - when: - os: mac store: steam - /The Rabbit and The Owl.exe: + "/The Rabbit and The Owl.exe": - when: - os: windows store: steam steam: id: 561260 -The Rabbit's Scroll: +"The Rabbit's Scroll": installDir: - The Rabbit's Scroll: {} + "The Rabbit's Scroll": {} launch: - /exe/The Rabbit's Scroll.exe: + "/exe/The Rabbit's Scroll.exe": - when: - store: steam - workingDir: /exe + workingDir: "/exe" steam: id: 2005950 The Race for the White House: installDir: The Race for the White House: {} launch: - /_start.exe: + "/_start.exe": - when: - os: windows store: steam @@ -558956,7 +560470,7 @@ The Race for the White House 2016: installDir: The Race for the White House 2016: {} launch: - /_start.exe: + "/_start.exe": - when: - os: windows store: steam @@ -558966,14 +560480,14 @@ The Ragdoll: installDir: The Ragdoll: {} launch: - /TheRagDoll.exe: + "/TheRagDoll.exe": - when: - store: steam steam: id: 693820 The Rage: files: - /Data/settings.bin: + "/Data/settings.bin": tags: - config when: @@ -558983,14 +560497,14 @@ The Raiders: TheRaiders: {} steam: id: 599420 -'The Rain Spirit: Code Breaker': +"The Rain Spirit: Code Breaker": steam: id: 582860 The Rainbow World: installDir: The Rainbow World: {} launch: - /The Rainbow World.exe: + "/The Rainbow World.exe": - when: - os: windows store: steam @@ -559000,11 +560514,11 @@ The Rainsdowne Players: installDir: The Rainsdowne Players: {} launch: - /The Rainsdowne Players.app: + "/The Rainsdowne Players.app": - when: - os: mac store: steam - /The Rainsdowne Players/The Rainsdowne Players.exe: + "/The Rainsdowne Players/The Rainsdowne Players.exe": - when: - os: windows store: steam @@ -559014,11 +560528,11 @@ The Raintime: installDir: The Raintime: {} launch: - /raintime.app: + "/raintime.app": - when: - os: mac store: steam - /raintime.exe: + "/raintime.exe": - when: - os: windows store: steam @@ -559028,7 +560542,7 @@ The Rainy Port Keelung: installDir: The Rainy Port Keelung: {} launch: - /RainyKeelung.exe: + "/RainyKeelung.exe": - when: - os: windows store: steam @@ -559036,7 +560550,7 @@ The Rainy Port Keelung: id: 349320 The Ramp: files: - /appdata/locallow/Hyperparadise/The Ramp: + "/appdata/locallow/Hyperparadise/The Ramp": tags: - save when: @@ -559044,7 +560558,7 @@ The Ramp: installDir: The Ramp: {} launch: - /The Ramp.exe: + "/The Ramp.exe": - when: - bit: 64 os: windows @@ -559059,14 +560573,14 @@ The Ranch of Rivershine: installDir: The Ranch of Rivershine: {} launch: - /TheRanchOfRivershine.exe: + "/TheRanchOfRivershine.exe": - when: - bit: 64 os: windows store: steam steam: id: 1559600 -'The Ranger: Lost Tribe': +"The Ranger: Lost Tribe": installDir: The Ranger Lost Tribe: {} steam: @@ -559075,7 +560589,7 @@ The Rare Nine: installDir: The Rare Nine: {} launch: - /TheRareNine.exe: + "/TheRareNine.exe": - when: - os: windows store: steam @@ -559086,18 +560600,18 @@ The Rat Project: id: 1205270 The Raven Remastered: files: - /userdata//736810/remote: + "/userdata//736810/remote": tags: - save when: - store: steam - /Raven: + "/Raven": tags: - config - save when: - os: windows - /raven: + "/raven": tags: - config - save @@ -559108,16 +560622,16 @@ The Raven Remastered: installDir: The Raven Remastered: {} launch: - /Linux/Raven: + "/Linux/Raven": - when: - bit: 64 os: linux store: steam - /The Raven Remastered.app: + "/The Raven Remastered.app": - when: - os: mac store: steam - /raven_game/Raven.exe: + "/raven_game/Raven.exe": - when: - os: windows store: steam @@ -559127,29 +560641,29 @@ The Raven Remastered: - config steam: id: 736810 -'The Raven: Legacy of a Master Thief': +"The Raven: Legacy of a Master Thief": files: - /The Raven/config.xml: + "/The Raven/config.xml": tags: - config when: - os: linux - /The Raven/savegames: + "/The Raven/savegames": tags: - save when: - os: linux - /userdata//233370/remote: + "/userdata//233370/remote": tags: - save when: - store: steam - /The Raven: + "/The Raven": tags: - config when: - os: windows - /The Raven/savegames: + "/The Raven/savegames": tags: - save when: @@ -559159,25 +560673,25 @@ The Raven Remastered: installDir: The Raven: {} launch: - /launcher/TheRavenLauncher.exe: + "/launcher/TheRavenLauncher.exe": - when: - os: windows store: steam - /raven/raven_game.app: - - arguments: '-launched' + "/raven/raven_game.app": + - arguments: "-launched" when: - os: mac store: steam - /raven/real_raven_game_32.sh: + "/raven/real_raven_game_32.sh": - when: - os: linux store: steam - workingDir: /raven - /raven/real_raven_game_64.sh: + workingDir: "/raven" + "/raven/real_raven_game_64.sh": - when: - os: linux store: steam - workingDir: /raven + workingDir: "/raven" registry: HKEY_CURRENT_USER/Software/KingArt/The Raven: tags: @@ -559188,16 +560702,16 @@ The Reaction: installDir: The Reaction: {} launch: - /TheReaction.exe: + "/TheReaction.exe": - when: - os: windows store: steam - /TheReaction.x86: + "/TheReaction.x86": - when: - bit: 32 os: linux store: steam - /TheReaction.x86_64: + "/TheReaction.x86_64": - when: - bit: 64 os: linux @@ -559208,7 +560722,7 @@ The Real Laser Ball: installDir: The Real Laser Ball: {} launch: - /TRLB.exe: + "/TRLB.exe": - when: - os: windows store: steam @@ -559218,7 +560732,7 @@ The Real Man Summer Championship 2019: installDir: The Real Man Summer Championship 2019: {} launch: - /SO2019.exe: + "/SO2019.exe": - when: - os: windows store: steam @@ -559226,12 +560740,12 @@ The Real Man Summer Championship 2019: id: 1074310 The Real Texas: files: - /The Real Texas/2002: + "/The Real Texas/2002": tags: - save when: - os: windows - /The Real Texas/options.txt: + "/The Real Texas/options.txt": tags: - config when: @@ -559241,20 +560755,20 @@ The Real Texas: installDir: The Real Texas: {} launch: - /texas: + "/texas": - when: - os: mac store: steam - /texas.exe: + "/texas.exe": - when: - os: windows store: steam - /texas_steam_linux32.sh: + "/texas_steam_linux32.sh": - when: - bit: 32 os: linux store: steam - /texas_steam_linux64.sh: + "/texas_steam_linux64.sh": - when: - bit: 64 os: linux @@ -559265,7 +560779,7 @@ The Rebel: installDir: The Rebel: {} launch: - /rebel.exe: + "/rebel.exe": - when: - os: windows store: steam @@ -559278,7 +560792,7 @@ The Red Front: installDir: The Red Front: {} launch: - /The Red Front.exe: + "/The Red Front.exe": - when: - os: windows store: steam @@ -559288,7 +560802,7 @@ The Red Lantern: installDir: The Red Lantern: {} launch: - /TheRedLantern_sw.exe: + "/TheRedLantern_sw.exe": - when: - os: windows store: steam @@ -559298,7 +560812,7 @@ The Red Moon: installDir: The Red Moon: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -559308,7 +560822,7 @@ The Red Prison: installDir: The Red Prison: {} launch: - /TheRedPrison.exe: + "/TheRedPrison.exe": - when: - store: steam steam: @@ -559317,7 +560831,7 @@ The Red Reactor: installDir: The Red Reactor: {} launch: - /The Red Reactor.exe: + "/The Red Reactor.exe": - when: - os: windows store: steam @@ -559325,12 +560839,12 @@ The Red Reactor: id: 1053750 The Red Solstice: files: - /TheRedSolstice/save: + "/TheRedSolstice/save": tags: - save when: - os: windows - /TheRedSolstice/settings.ini: + "/TheRedSolstice/settings.ini": tags: - config when: @@ -559338,21 +560852,21 @@ The Red Solstice: installDir: TheRedSolstice: {} launch: - /bin/game.exe: + "/bin/game.exe": - when: - os: windows store: steam - workingDir: /bin + workingDir: "/bin" steam: id: 265590 The Red Stare: files: - /TheRedStare/Saved/Config: + "/TheRedStare/Saved/Config": tags: - config when: - os: windows - /TheRedStare/Saved/SaveGames: + "/TheRedStare/Saved/SaveGames": tags: - save when: @@ -559363,44 +560877,44 @@ The Red Stare: id: 625470 The Red Strings Club: files: - /.config/TRSC2017/config.ini: + "/.config/TRSC2017/config.ini": tags: - config when: - os: linux - /.config/TRSC2017/savedata.ini: + "/.config/TRSC2017/savedata.ini": tags: - save when: - os: linux - /Library/Application Support/com.yoyogames.macyoyorunner//config.ini: + "/Library/Application Support/com.yoyogames.macyoyorunner//config.ini": tags: - config when: - os: mac - /Library/Application Support/com.yoyogames.macyoyorunner//savedata.ini: + "/Library/Application Support/com.yoyogames.macyoyorunner//savedata.ini": tags: - save when: - os: mac - /Packages/DevolverDigital.TheRedStringsClub_6kzv4j18v0c96/LocalCache/Local/TRSC2017/config.ini: + "/Packages/DevolverDigital.TheRedStringsClub_6kzv4j18v0c96/LocalCache/Local/TRSC2017/config.ini": tags: - config when: - os: windows store: microsoft - /Packages/DevolverDigital.TheRedStringsClub_6kzv4j18v0c96/LocalCache/Local/TRSC2017/savedata.ini: + "/Packages/DevolverDigital.TheRedStringsClub_6kzv4j18v0c96/LocalCache/Local/TRSC2017/savedata.ini": tags: - save when: - os: windows store: microsoft - /TRSC2017//config.ini: + "/TRSC2017//config.ini": tags: - config when: - os: windows - /TRSC2017//savedata.ini: + "/TRSC2017//savedata.ini": tags: - save when: @@ -559410,15 +560924,15 @@ The Red Strings Club: installDir: The Red Strings Club: {} launch: - /TRSC2017.exe: + "/TRSC2017.exe": - when: - os: windows store: steam - /The Red Strings Club.app: + "/The Red Strings Club.app": - when: - os: mac store: steam - /runner: + "/runner": - when: - os: linux store: steam @@ -559428,19 +560942,19 @@ The Redemption of Pancakes: installDir: The redemption of pancakes: {} launch: - /The redemption of pancakes.exe: + "/The redemption of pancakes.exe": - when: - store: steam steam: id: 745630 The Redress of Mira: files: - /Mira/Saved/Config/WindowsNoEditor: + "/Mira/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /Mira/Saved/SaveGames: + "/Mira/Saved/SaveGames": tags: - save when: @@ -559448,7 +560962,7 @@ The Redress of Mira: installDir: The Redress of Mira: {} launch: - /Mira.exe: + "/Mira.exe": - when: - bit: 64 os: windows @@ -559459,7 +560973,7 @@ The Refuge: installDir: The Refuge: {} launch: - /TheRefuge.exe: + "/TheRefuge.exe": - when: - os: windows store: steam @@ -559467,12 +560981,12 @@ The Refuge: id: 1128650 The Regiment: files: - /save: + "/save": tags: - save when: - os: windows - /system: + "/system": tags: - config when: @@ -559481,26 +560995,26 @@ The Region: installDir: The Region: {} launch: - /The Region.exe: + "/The Region.exe": - when: - bit: 64 os: windows store: steam steam: id: 1021780 -'The Reject Demon: Toko Chapter 0 - Prelude': +"The Reject Demon: Toko Chapter 0 - Prelude": installDir: The Reject Demon Toko Chapter 0 - Prelude: {} launch: - /The Reject Demon_ Toko - ch0 Remix.app/Contents/MacOS/The Reject Demon_ Toko - ch0 Remix: + "/The Reject Demon_ Toko - ch0 Remix.app/Contents/MacOS/The Reject Demon_ Toko - ch0 Remix": - when: - os: mac store: steam - /The Reject Demon_ Toko - ch0 Remix.exe: + "/The Reject Demon_ Toko - ch0 Remix.exe": - when: - os: windows store: steam - /The Reject Demon_ Toko - ch0 Remix.sh: + "/The Reject Demon_ Toko - ch0 Remix.sh": - when: - os: linux store: steam @@ -559518,7 +561032,7 @@ The Renovator: installDir: The Renovator: {} launch: - /TheRenovator.exe: + "/TheRenovator.exe": - when: - os: windows store: steam @@ -559528,14 +561042,14 @@ The Repopulation: installDir: The Repopulation: {} launch: - /Launcher.exe: + "/Launcher.exe": - when: - store: steam steam: id: 322300 The Rescue of Mermaids: files: - /Saved Games/rescueofmermaids/*.sav: + "/Saved Games/rescueofmermaids/*.sav": tags: - save when: @@ -559543,7 +561057,7 @@ The Rescue of Mermaids: installDir: The Rescue of Mermaids: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -559553,7 +561067,7 @@ The Research Facility NO.507: installDir: The research facility No.507: {} launch: - /507game.exe: + "/507game.exe": - when: - os: windows store: steam @@ -559563,7 +561077,7 @@ The Resistance: installDir: The Resistance: {} launch: - /The Resistance.exe: + "/The Resistance.exe": - when: - os: windows store: steam @@ -559573,7 +561087,7 @@ The Rest of Our Lives: installDir: The Rest of Our Lives: {} launch: - /TheRestofOurLives.exe: + "/TheRestofOurLives.exe": - when: - os: windows store: steam @@ -559583,7 +561097,7 @@ The Return Home: installDir: The Return Home: {} launch: - /The Return Home.exe: + "/The Return Home.exe": - when: - os: windows store: steam @@ -559592,61 +561106,61 @@ The Return Home: The Return of Bantara: steam: id: 664220 -'The Return: Survival': +"The Return: Survival": steam: id: 959210 The Revenge of Johnny Bonasera: installDir: Johnny Bonasera: {} launch: - /Johnny Bonasera.app/Contents/MacOS/jbonasera: + "/Johnny Bonasera.app/Contents/MacOS/jbonasera": - when: - os: mac store: steam - /jbonasera: + "/jbonasera": - when: - bit: 64 os: linux store: steam - /jbonasera.exe: + "/jbonasera.exe": - when: - os: windows store: steam steam: id: 536430 -'The Revenge of Johnny Bonasera: Episode 2': +"The Revenge of Johnny Bonasera: Episode 2": installDir: Johnny Bonasera 2: {} launch: - /Johnny Bonasera2.app/Contents/MacOS/bonasera2: + "/Johnny Bonasera2.app/Contents/MacOS/bonasera2": - when: - os: mac store: steam - /bonasera2: + "/bonasera2": - when: - bit: 64 os: linux store: steam - /bonasera2.exe: + "/bonasera2.exe": - when: - os: windows store: steam steam: id: 790390 -'The Revenge of Johnny Bonasera: Episode 3': +"The Revenge of Johnny Bonasera: Episode 3": installDir: Johnny Bonasera 3: {} launch: - /Johnny Bonasera3.app/Contents/MacOS/bonasera3: + "/Johnny Bonasera3.app/Contents/MacOS/bonasera3": - when: - os: mac store: steam - /bonasera3: + "/bonasera3": - when: - bit: 64 os: linux store: steam - /bonasera3.exe: + "/bonasera3.exe": - when: - os: windows store: steam @@ -559654,33 +561168,33 @@ The Revenge of Johnny Bonasera: id: 1004230 The Revenge of Shinobi: files: - /SEGA Genesis Classics/0055: + "/SEGA Genesis Classics/0055": tags: - save when: - os: windows - /SEGA Genesis Classics/setup.dat: + "/SEGA Genesis Classics/setup.dat": tags: - config when: - os: windows - /SEGA Mega Drive Classics/0055: + "/SEGA Mega Drive Classics/0055": tags: - save when: - os: windows - /SEGA Mega Drive Classics/setup.dat: + "/SEGA Mega Drive Classics/setup.dat": tags: - config when: - os: windows steam: id: 211207 -'The Revolt: Awakening': +"The Revolt: Awakening": installDir: The Revolt Awakening: {} launch: - /TheRevolt.exe: + "/TheRevolt.exe": - when: - os: windows store: steam @@ -559690,11 +561204,11 @@ The Rewinder / 山海旅人: installDir: The Rewinder: {} launch: - /Rewinder.app/Contents/MacOS/Rewinder: + "/Rewinder.app/Contents/MacOS/Rewinder": - when: - os: mac store: steam - /Rewinder.exe: + "/Rewinder.exe": - when: - os: windows store: steam @@ -559704,7 +561218,7 @@ The Rhys510 Flash Back: installDir: The Rhys510 Flash Back: {} launch: - /The Rhys510 Flash Back.exe: + "/The Rhys510 Flash Back.exe": - when: - os: windows store: steam @@ -559714,7 +561228,7 @@ The Rift: installDir: The Rift: {} launch: - /TheRiftv2: + "/TheRiftv2": - when: - bit: 64 os: windows @@ -559723,18 +561237,18 @@ The Rift: id: 723180 The Riftbreaker: files: - /Documents/The Riftbreaker/campaignV2: + "/Documents/The Riftbreaker/campaignV2": tags: - save when: - os: windows - /Documents/The Riftbreaker/config: + "/Documents/The Riftbreaker/config": tags: - config when: - os: windows store: microsoft - /Packages/EXORStudios.TheRiftbreakerPC_9y41ntp9cv1jj/SystemAppData/wgs: + "/Packages/EXORStudios.TheRiftbreakerPC_9y41ntp9cv1jj/SystemAppData/wgs": tags: - save when: @@ -559744,21 +561258,21 @@ The Riftbreaker: id: 2147483111 id: gogExtra: + - 1165918628 - 1315197539 - 1374227826 - 1779532777 - - 1165918628 steamExtra: - - 1945600 - 1788250 + - 1945600 - 2108630 installDir: Riftbreaker: {} launch: - /bin/riftbreaker_win_release.exe: + "/bin/riftbreaker_win_release.exe": - when: - store: steam - workingDir: /bin + workingDir: "/bin" steam: id: 780310 The Rig: @@ -559770,7 +561284,7 @@ The Ring of Truth: installDir: The Ring of Truth: {} launch: - /TheRingOfTruth.exe: + "/TheRingOfTruth.exe": - when: - os: windows store: steam @@ -559785,7 +561299,7 @@ The Rise of Chubtan: installDir: The Rise of Chubtan: {} launch: - /roc.exe: + "/roc.exe": - when: - os: windows store: steam @@ -559800,7 +561314,7 @@ The Risers: installDir: The Risers: {} launch: - /The Risers.exe: + "/The Risers.exe": - when: - os: windows store: steam @@ -559810,15 +561324,15 @@ The Rising of the Rose Ocelot: installDir: The Rising of the Rose Ocelot: {} launch: - /runGame.exe: + "/runGame.exe": - when: - os: windows store: steam steam: id: 779550 -'The Rising of the Shield Hero: Relive the Animation': +"The Rising of the Shield Hero: Relive the Animation": files: - /www/save: + "/www/save": tags: - config - save @@ -559827,7 +561341,7 @@ The Rising of the Rose Ocelot: installDir: The Rising of the Shield Hero Relive The Animation: {} launch: - /TheRisingOfTheShieldHero ReliveTheAnimation.exe: + "/TheRisingOfTheShieldHero ReliveTheAnimation.exe": - when: - os: windows store: steam @@ -559837,7 +561351,7 @@ The Ritual: installDir: THE RITUAL (2019 Indie Horror Game): {} launch: - /chapter1.exe: + "/chapter1.exe": - when: - os: windows store: steam @@ -559847,11 +561361,11 @@ The Ritual on Weylyn Island: installDir: The Ritual on Weylyn Island: {} launch: - /Ritual.app: + "/Ritual.app": - when: - os: mac store: steam - /Ritual.exe: + "/Ritual.exe": - when: - os: windows store: steam @@ -559861,7 +561375,7 @@ The River: installDir: The River: {} launch: - /The_River.exe: + "/The_River.exe": - when: - bit: 64 os: windows @@ -559872,11 +561386,11 @@ The Rivers of Alice - Extended Version: installDir: Rivers of Alice: {} launch: - /Alice.app: + "/Alice.app": - when: - os: mac store: steam - /Alice.exe: + "/Alice.exe": - when: - os: windows store: steam @@ -559886,7 +561400,7 @@ The Road Trip: installDir: The Road Trip: {} launch: - /The Road Trip.exe: + "/The Road Trip.exe": - when: - bit: 64 os: windows @@ -559897,15 +561411,15 @@ The Road to Canterbury: installDir: The Road to Canterbury: {} launch: - /The Road to Canterbury.app/Contents/MacOS/The Road to Canterbury: + "/The Road to Canterbury.app/Contents/MacOS/The Road to Canterbury": - when: - os: mac store: steam - /TheRoadToCanterbury: + "/TheRoadToCanterbury": - when: - os: linux store: steam - /TheRoadToCanterbury.exe: + "/TheRoadToCanterbury.exe": - when: - os: windows store: steam @@ -559915,7 +561429,7 @@ The Road to Hades: installDir: The Road to Hades: {} launch: - /TheRoadToHades.exe: + "/TheRoadToHades.exe": - when: - os: windows store: steam @@ -559925,16 +561439,16 @@ The Rodinia Project: installDir: The Rodinia Project: {} launch: - /The Rodinia Project.exe: + "/The Rodinia Project.exe": - when: - store: steam steam: id: 681520 -The Rollingball's Melody: +"The Rollingball's Melody": installDir: - The Rollingball's Melody: {} + "The Rollingball's Melody": {} launch: - /TRBM.exe: + "/TRBM.exe": - when: - os: windows store: steam @@ -559942,17 +561456,17 @@ The Rollingball's Melody: id: 409310 The Room: files: - /AppData/LocalLow/Fireproof Games/The Room/CustomGfxSettings.xml: + "/AppData/LocalLow/Fireproof Games/The Room/CustomGfxSettings.xml": tags: - config when: - os: windows - /userdata//288160/remote/GlobalData.sav: + "/userdata//288160/remote/GlobalData.sav": tags: - config when: - store: steam - /userdata//288160/remote/Safe.save: + "/userdata//288160/remote/Safe.save": tags: - save when: @@ -559960,7 +561474,7 @@ The Room: installDir: TheRoom: {} launch: - /TheRoom.exe: + "/TheRoom.exe": - when: - os: windows store: steam @@ -559970,14 +561484,14 @@ The Room: - config steam: id: 288160 -'The Room 4: Old Sins': +"The Room 4: Old Sins": files: - /AppData/LocalLow/Fireproof Studios/Old Sins/*.save: + "/AppData/LocalLow/Fireproof Studios/Old Sins/*.save": tags: - save when: - os: windows - /AppData/LocalLow/Fireproof Studios/Old Sins/CustomGfxSettings.xml: + "/AppData/LocalLow/Fireproof Studios/Old Sins/CustomGfxSettings.xml": tags: - config when: @@ -559985,7 +561499,7 @@ The Room: installDir: The Room Old Sins: {} launch: - /OldSins.exe: + "/OldSins.exe": - when: - os: windows store: steam @@ -559997,7 +561511,7 @@ The Room: id: 1361320 The Room Syndrome: files: - /The_Room_Syndrome: + "/The_Room_Syndrome": tags: - save when: @@ -560005,19 +561519,19 @@ The Room Syndrome: installDir: The Room Syndrome: {} launch: - /The Room Syndrome.exe: + "/The Room Syndrome.exe": - when: - store: steam steam: id: 1114030 The Room Three: files: - /AppData/LocalLow/Fireproof Games/The Room Three/CustomGfxSettings.xml: + "/AppData/LocalLow/Fireproof Games/The Room Three/CustomGfxSettings.xml": tags: - config when: - os: windows - /AppData/LocalLow/Fireproof Games/The Room Three/Slot_*.save: + "/AppData/LocalLow/Fireproof Games/The Room Three/Slot_*.save": tags: - save when: @@ -560025,7 +561539,7 @@ The Room Three: installDir: TheRoomThree: {} launch: - /TheRoomThree.exe: + "/TheRoomThree.exe": - when: - os: windows store: steam @@ -560037,12 +561551,12 @@ The Room Three: id: 456750 The Room Two: files: - /AppData/LocalLow/Fireproof Games/The Room Two/CustomGfxSettings.xml: + "/AppData/LocalLow/Fireproof Games/The Room Two/CustomGfxSettings.xml": tags: - config when: - os: windows - /AppData/LocalLow/Fireproof Games/The Room Two/Slot_0.save: + "/AppData/LocalLow/Fireproof Games/The Room Two/Slot_0.save": tags: - save when: @@ -560050,7 +561564,7 @@ The Room Two: installDir: TheRoomTwo: {} launch: - /TheRoomTwo.exe: + "/TheRoomTwo.exe": - when: - os: windows store: steam @@ -560060,9 +561574,9 @@ The Room Two: - config steam: id: 425580 -'The Room VR: A Dark Matter': +"The Room VR: A Dark Matter": files: - /AppData/LocalLow/Fireproof Games/The Room VR/*.save: + "/AppData/LocalLow/Fireproof Games/The Room VR/*.save": tags: - save when: @@ -560079,7 +561593,7 @@ The Room of Black & White: installDir: The Room of Black & White: {} launch: - /The room of black & white.exe: + "/The room of black & white.exe": - when: - os: windows store: steam @@ -560094,7 +561608,7 @@ The Rose of Segunda: installDir: The Rose of Segunda: {} launch: - /TROS.exe: + "/TROS.exe": - when: - os: windows store: steam @@ -560104,21 +561618,21 @@ The Rosebud Condominium: installDir: The Rosebud Condominium: {} launch: - /The Rosebud Condominium.exe: + "/The Rosebud Condominium.exe": - when: - os: windows store: steam steam: id: 663120 -The Rosefinch Curse (Ning's Wing 1): +"The Rosefinch Curse (Ning's Wing 1)": installDir: - The Rosefinch Curse(Ning's Wing 1): {} + "The Rosefinch Curse(Ning's Wing 1)": {} launch: - /Chinese version.exe: + "/Chinese version.exe": - when: - os: windows store: steam - /English version.exe: + "/English version.exe": - when: - os: windows store: steam @@ -560128,11 +561642,11 @@ The Royal Cosmonautical Society: installDir: The Royal Cosmonautical Society: {} launch: - /RoyalCosmoSociety.app: + "/RoyalCosmoSociety.app": - when: - os: mac store: steam - /RoyalCosmoSociety.exe: + "/RoyalCosmoSociety.exe": - when: - os: windows store: steam @@ -560142,7 +561656,7 @@ The Royal Game of Ur: installDir: The Royal Game of Ur: {} launch: - /ur.exe: + "/ur.exe": - when: - os: windows store: steam @@ -560150,17 +561664,17 @@ The Royal Game of Ur: id: 955470 The Royal Marines Commando: files: - /Documents/City Interactive/Royal Marines Commando/Profiles: + "/Documents/City Interactive/Royal Marines Commando/Profiles": tags: - save when: - os: windows - /Documents/City Interactive/Royal Marines Commando/Save: + "/Documents/City Interactive/Royal Marines Commando/Save": tags: - save when: - os: windows - /Documents/City Interactive/Royal Marines Commando/settings.cfg: + "/Documents/City Interactive/Royal Marines Commando/settings.cfg": tags: - config when: @@ -560168,12 +561682,12 @@ The Royal Marines Commando: installDir: The Royal Marines Commando: {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: id: 837600 -'The Ruins: VR Escape the Room': +"The Ruins: VR Escape the Room": installDir: The Ruins VR Escape the Room: {} steam: @@ -560182,7 +561696,7 @@ The Rumble Fish 2: installDir: The Rumble Fish 2: {} launch: - /TRF2.exe: + "/TRF2.exe": - when: - store: steam steam: @@ -560191,15 +561705,15 @@ The SOL Device: installDir: The SOL Device: {} launch: - /SolGame.exe: + "/SolGame.exe": - when: - os: windows store: steam - /TheSOLDevice.app/Contents/MacOS/Mac_Runner: + "/TheSOLDevice.app/Contents/MacOS/Mac_Runner": - when: - os: mac store: steam - /The_SOL_Device: + "/The_SOL_Device": - when: - os: linux store: steam @@ -560207,7 +561721,7 @@ The SOL Device: id: 778000 The Saboteur: files: - /My Games/The Saboteur™/SaveGames: + "/My Games/The Saboteur™/SaveGames": tags: - config - save @@ -560215,14 +561729,14 @@ The Saboteur: - os: windows gog: id: 1403000599 -'The Sacred Stone: A Story Adventure': +"The Sacred Stone: A Story Adventure": installDir: The Sacred Stone A Story Adventure: {} launch: - /SacredStoneMultiplayer.exe: + "/SacredStoneMultiplayer.exe": - when: - store: steam - /TheSacredStone.exe: + "/TheSacredStone.exe": - when: - os: windows store: steam @@ -560230,7 +561744,7 @@ The Saboteur: id: 432410 The Sacred Tears TRUE: files: - /Game_Files/*.lsd: + "/Game_Files/*.lsd": tags: - save when: @@ -560238,24 +561752,24 @@ The Sacred Tears TRUE: installDir: Sacred Tears True: {} launch: - /The Sacred Tears TRUE.exe: + "/The Sacred Tears TRUE.exe": - when: - store: steam steam: id: 316840 The Sad Story of Emmeline Burns: files: - /game/saves: + "/game/saves": tags: - save when: - os: windows - /renpy/config.py: + "/renpy/config.py": tags: - config when: - os: windows - /renpy/The Sad Story of Emmeline Burns-1443035376: + "/renpy/The Sad Story of Emmeline Burns-1443035376": tags: - save when: @@ -560263,15 +561777,15 @@ The Sad Story of Emmeline Burns: installDir: The Sad Story of Emmeline Burns: {} launch: - /The Sad Story of Emmeline Burns.app: + "/The Sad Story of Emmeline Burns.app": - when: - os: mac store: steam - /The Sad Story of Emmeline Burns.exe: + "/The Sad Story of Emmeline Burns.exe": - when: - os: windows store: steam - /The Sad Story of Emmeline Burns.sh: + "/The Sad Story of Emmeline Burns.sh": - when: - os: linux store: steam @@ -560283,17 +561797,17 @@ The Safeguard Garrison: The Safeguard Garrison 2: steam: id: 618340 -'The Safeguard Garrison: Space Colonies': +"The Safeguard Garrison: Space Colonies": steam: id: 665390 The Sage of Twilight: steam: id: 692880 -'The Saint: Abyss of Despair': +"The Saint: Abyss of Despair": installDir: The Saint Abyss of Despair: {} launch: - /TheSaint.exe: + "/TheSaint.exe": - when: - os: windows store: steam @@ -560301,23 +561815,23 @@ The Sage of Twilight: id: 560820 The Samaritan Paradox: files: - /Saved Games/The Samaritan Paradox/acsetup.cfg: + "/Saved Games/The Samaritan Paradox/acsetup.cfg": tags: - config when: - os: windows - /Saved Games/The Samaritan Paradox/agssave.*: + "/Saved Games/The Samaritan Paradox/agssave.*": tags: - save when: - os: windows - /steamapps/common/TheSamaritanParadox/data/acsetup.cfg: + "/steamapps/common/TheSamaritanParadox/data/acsetup.cfg": tags: - config when: - os: linux store: steam - /ags/The Samaritan Paradox/aggsave.*: + "/ags/The Samaritan Paradox/aggsave.*": tags: - save when: @@ -560327,15 +561841,15 @@ The Samaritan Paradox: installDir: TheSamaritanParadox: {} launch: - /Samaritan: + "/Samaritan": - when: - os: linux store: steam - /samaritan.exe: + "/samaritan.exe": - when: - os: windows store: steam - - arguments: '--setup' + - arguments: "--setup" when: - os: windows store: steam @@ -560350,14 +561864,14 @@ The Sand Man: installDir: The Sand Man: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: id: 741250 The Sandbox: files: - /userdata//265810/remote/User/*.sav: + "/userdata//265810/remote/User/*.sav": tags: - save when: @@ -560366,7 +561880,7 @@ The Sandbox: installDir: TheSandbox: {} launch: - /The Sandbox.exe: + "/The Sandbox.exe": - when: - os: windows store: steam @@ -560376,17 +561890,17 @@ The Sandbox Evolution: installDir: The Sandbox Evolution: {} launch: - /TheSandbox2.exe: + "/TheSandbox2.exe": - when: - os: windows store: steam steam: id: 466940 -'The Sandbox of God: Remastered Edition': +"The Sandbox of God: Remastered Edition": installDir: The Sandbox of God Legacy Edition: {} launch: - /SOG_R.exe: + "/SOG_R.exe": - when: - os: windows store: steam @@ -560396,15 +561910,15 @@ The Santa Challenge: installDir: Santa Challenge: {} launch: - /The Santa Challenge.app: + "/The Santa Challenge.app": - when: - os: mac store: steam - /The Santa Challenge.exe: + "/The Santa Challenge.exe": - when: - os: windows store: steam - /TheSantaChallenge.x86_64: + "/TheSantaChallenge.x86_64": - when: - os: linux store: steam @@ -560414,11 +561928,11 @@ The Sapling: installDir: The Sapling: {} launch: - /the_sapling.exe: + "/the_sapling.exe": - when: - os: windows store: steam - /the_sapling.x86_64: + "/the_sapling.x86_64": - when: - bit: 64 os: linux @@ -560429,34 +561943,34 @@ The Sapper: installDir: The Sapper: {} launch: - /TheSapper.app/Contents/MacOS/TheSapper: + "/TheSapper.app/Contents/MacOS/TheSapper": - when: - os: mac store: steam - /TheSapper.exe: + "/TheSapper.exe": - when: - os: windows store: steam - /TheSapper.x86: + "/TheSapper.x86": - when: - os: linux store: steam steam: id: 734540 -The Savior's Gang: +"The Savior's Gang": installDir: - The Savior's Gang: {} + "The Savior's Gang": {} launch: - /TheSaviorsGang.app: + "/TheSaviorsGang.app": - when: - os: mac store: steam - /TheSaviorsGang.exe: + "/TheSaviorsGang.exe": - when: - bit: 64 os: windows store: steam - /TheSaviorsGang.sh: + "/TheSaviorsGang.sh": - when: - bit: 64 os: linux @@ -560470,11 +561984,11 @@ The Scenic Treasures - Japanese Learning: installDir: The Scenic Treasures - Japanese Learning: {} launch: - /The_Scenic_Treasures.app: + "/The_Scenic_Treasures.app": - when: - os: mac store: steam - /The_Scenic_Treasures.exe: + "/The_Scenic_Treasures.exe": - when: - os: windows store: steam @@ -560489,18 +562003,18 @@ The Scorchfarer: installDir: The Scorchfarer: {} launch: - /The Scorchfarer.exe: + "/The Scorchfarer.exe": - when: - os: windows store: steam steam: id: 1617580 -'The Scourge Project: Episode 1 and 2': +"The Scourge Project: Episode 1 and 2": installDir: The Scourge Project Ep 1 - 2: {} launch: - /Binaries/Win32/ScourgeGame.exe: - - arguments: '-seekfreeloading -fullscreen -installed' + "/Binaries/Win32/ScourgeGame.exe": + - arguments: "-seekfreeloading -fullscreen -installed" when: - store: steam steam: @@ -560512,7 +562026,7 @@ The ScreaMaze: installDir: The ScreaMaze: {} launch: - /TheScreaMaze.exe: + "/TheScreaMaze.exe": - when: - bit: 64 os: windows @@ -560528,7 +562042,7 @@ The Scroll of Taiwu: installDir: The Scroll Of Taiwu: {} launch: - /The Scroll Of Taiwu Alpha V1.0.exe: + "/The Scroll Of Taiwu Alpha V1.0.exe": - when: - bit: 64 os: windows @@ -560542,11 +562056,11 @@ The Scrungeon Depths: installDir: The Scrungeon Depths: {} launch: - /Scrungeon_Windows.exe: + "/Scrungeon_Windows.exe": - when: - os: windows store: steam - /Scrungeon_mac.app: + "/Scrungeon_mac.app": - when: - os: mac store: steam @@ -560556,7 +562070,7 @@ The Scuttle: installDir: The Scuttle: {} launch: - /TheScuttle.exe: + "/TheScuttle.exe": - when: - os: windows store: steam @@ -560566,32 +562080,32 @@ The Sea Between: installDir: The Sea Between: {} launch: - /mac_content/Game.app: + "/mac_content/Game.app": - when: - os: mac store: steam - workingDir: /mac_content - /windows_content/Game.exe: - - arguments: '--in-process-gpu' + workingDir: "/mac_content" + "/windows_content/Game.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam - workingDir: /windows_content + workingDir: "/windows_content" steam: id: 896550 The Sea Eternal: installDir: The Sea Eternal: {} launch: - /SeaEternal: + "/SeaEternal": - when: - os: linux store: steam - /SeaEternal.exe: + "/SeaEternal.exe": - when: - os: windows store: steam - /The Sea Eternal.app/Contents/MacOS/The Sea Eternal: + "/The Sea Eternal.app/Contents/MacOS/The Sea Eternal": - when: - os: mac store: steam @@ -560599,7 +562113,7 @@ The Sea Eternal: id: 463320 The Sea Will Claim Everything: files: - /The Sea Will Claim Everything: + "/The Sea Will Claim Everything": tags: - save when: @@ -560607,7 +562121,7 @@ The Sea Will Claim Everything: installDir: The Sea Will Claim Everything: {} launch: - /TSWCE.exe: + "/TSWCE.exe": - when: - os: windows store: steam @@ -560615,7 +562129,7 @@ The Sea Will Claim Everything: id: 337720 The Search: files: - /AppData/LocalLow/Jason Godbey/The Search: + "/AppData/LocalLow/Jason Godbey/The Search": tags: - config - save @@ -560624,7 +562138,7 @@ The Search: installDir: The Search: {} launch: - /TheSearch.exe: + "/TheSearch.exe": - when: - os: windows store: steam @@ -560634,7 +562148,7 @@ The Search for Amelia Earhart: installDir: Amelia Earhart: {} launch: - /amelia.exe: + "/amelia.exe": - when: - store: steam steam: @@ -560643,18 +562157,18 @@ The Searcher Wild West Adventure: installDir: The Searcher Wild West Adventure: {} launch: - /TSWWA.exe: + "/TSWWA.exe": - when: - bit: 64 os: windows store: steam steam: id: 892130 -'The Searchers of Legends : Origin': +"The Searchers of Legends : Origin": installDir: The Searchers of Legends Origin: {} launch: - /TSOL.exe: + "/TSOL.exe": - when: - os: windows store: steam @@ -560664,11 +562178,11 @@ The Seasons: installDir: the-seasons: {} launch: - /the-seasons.app: + "/the-seasons.app": - when: - os: mac store: steam - /the-seasons.exe: + "/the-seasons.exe": - when: - os: windows store: steam @@ -560676,7 +562190,7 @@ The Seasons: id: 649170 The Second Chance Strip Club: files: - /The_Second_Chance_Strip_Club: + "/The_Second_Chance_Strip_Club": tags: - save when: @@ -560684,7 +562198,7 @@ The Second Chance Strip Club: installDir: The Second Chance Strip Club: {} launch: - /The Second Chance Strip Club.exe: + "/The Second Chance Strip Club.exe": - when: - os: windows store: steam @@ -560696,7 +562210,7 @@ The Second Samurai: installDir: Second Samurai: {} launch: - /second samurai.exe: + "/second samurai.exe": - when: - os: windows store: steam @@ -560706,178 +562220,178 @@ The Secret Monster Society: installDir: The Secret Monster Society Chapter One: {} launch: - /The Secret Monster Society C1.app: + "/The Secret Monster Society C1.app": - when: - os: mac store: steam - /The Secret Monster Society C1.exe: + "/The Secret Monster Society C1.exe": - when: - os: windows store: steam steam: id: 495960 -'The Secret Order 2: Masked Intent': +"The Secret Order 2: Masked Intent": installDir: The Secret Order 2 Masked Intent: {} launch: - /TheSecretOrder1.exe: + "/TheSecretOrder1.exe": - when: - os: windows store: steam - /TheSecretOrder1_amd64: + "/TheSecretOrder1_amd64": - when: - bit: 64 os: linux store: steam - /TheSecretOrder1_i386: + "/TheSecretOrder1_i386": - when: - bit: 32 os: linux store: steam - /mac_steam.app/Contents/MacOS/mac_steam: + "/mac_steam.app/Contents/MacOS/mac_steam": - when: - os: mac store: steam steam: id: 399890 -'The Secret Order 3: Ancient Times': +"The Secret Order 3: Ancient Times": installDir: The Secret Order 3 Ancient Times: {} launch: - /TheSecretOrder3.exe: + "/TheSecretOrder3.exe": - when: - os: windows store: steam - /TheSecretOrder3_amd64: + "/TheSecretOrder3_amd64": - when: - bit: 64 os: linux store: steam - /TheSecretOrder3_i386: + "/TheSecretOrder3_i386": - when: - bit: 32 os: linux store: steam - /mac_steam.app/Contents/MacOS/mac_steam: + "/mac_steam.app/Contents/MacOS/mac_steam": - when: - os: mac store: steam steam: id: 437420 -'The Secret Order 4: Beyond Time': +"The Secret Order 4: Beyond Time": installDir: The Secret Order 4: {} launch: - /TheSecretOrder4.exe: + "/TheSecretOrder4.exe": - when: - os: windows store: steam - /TheSecretOrder4_amd64: + "/TheSecretOrder4_amd64": - when: - bit: 64 os: linux store: steam - /TheSecretOrder4_i386: + "/TheSecretOrder4_i386": - when: - bit: 32 os: linux store: steam - /mac_steam.app/Contents/MacOS/mac_steam: + "/mac_steam.app/Contents/MacOS/mac_steam": - when: - os: mac store: steam steam: id: 517360 -'The Secret Order 5: The Buried Kingdom': +"The Secret Order 5: The Buried Kingdom": installDir: The Secret Order 5: {} launch: - /TheSecretOrder5.exe: + "/TheSecretOrder5.exe": - when: - os: windows store: steam - /TheSecretOrder5_amd64: + "/TheSecretOrder5_amd64": - when: - bit: 64 os: linux store: steam - /TheSecretOrder5_i386: + "/TheSecretOrder5_i386": - when: - bit: 32 os: linux store: steam - /mac_steam.app/Contents/MacOS/mac_steam: + "/mac_steam.app/Contents/MacOS/mac_steam": - when: - os: mac store: steam steam: id: 574260 -'The Secret Order 6: Bloodline': +"The Secret Order 6: Bloodline": installDir: The Secret Order 6 Bloodline: {} launch: - /SecretOrder6.exe: + "/SecretOrder6.exe": - when: - os: windows store: steam - /SecretOrder6_amd64: + "/SecretOrder6_amd64": - when: - bit: 64 os: linux store: steam - /SecretOrder6_i386: + "/SecretOrder6_i386": - when: - bit: 32 os: linux store: steam - /mac_steam.app/Contents/MacOS/mac_steam: + "/mac_steam.app/Contents/MacOS/mac_steam": - when: - os: mac store: steam steam: id: 662190 -'The Secret Order 7: Shadow Breach': +"The Secret Order 7: Shadow Breach": installDir: The Secret Order 7: {} launch: - /SecretOrder7.exe: + "/SecretOrder7.exe": - when: - os: windows store: steam - /SecretOrder7_amd64: + "/SecretOrder7_amd64": - when: - bit: 64 os: linux store: steam - /SecretOrder7_i386: + "/SecretOrder7_i386": - when: - bit: 32 os: linux store: steam - /mac_steam.app/Contents/MacOS/mac_steam: + "/mac_steam.app/Contents/MacOS/mac_steam": - when: - os: mac store: steam steam: id: 1004860 -'The Secret Order 8: Return to the Buried Kingdom': +"The Secret Order 8: Return to the Buried Kingdom": installDir: The Secret Order 8: {} launch: - /TheSecretOrder8.app/Contents/MacOS/TheSecretOrder8: + "/TheSecretOrder8.app/Contents/MacOS/TheSecretOrder8": - when: - os: mac store: steam - /TheSecretOrder8.exe: + "/TheSecretOrder8.exe": - when: - os: windows store: steam - /TheSecretOrder8_amd64: + "/TheSecretOrder8_amd64": - when: - bit: 64 os: linux store: steam - /TheSecretOrder8_i386: + "/TheSecretOrder8_i386": - when: - bit: 32 os: linux @@ -560886,7 +562400,7 @@ The Secret Monster Society: id: 1198450 The Secret World: files: - /Funcom/TSW/Prefs: + "/Funcom/TSW/Prefs": tags: - config when: @@ -560894,8 +562408,8 @@ The Secret World: installDir: Secret World Legends: {} launch: - /ClientPatcher.exe: - - arguments: '-normal' + "/ClientPatcher.exe": + - arguments: "-normal" when: - store: steam steam: @@ -560904,7 +562418,7 @@ The Secret of Gillwood: installDir: The Secret of Gillwood: {} launch: - /TSOG.exe: + "/TSOG.exe": - when: - bit: 64 os: windows @@ -560915,7 +562429,7 @@ The Secret of Hildegards: installDir: The Secret Of Hildegards: {} launch: - /Hildegards.exe: + "/Hildegards.exe": - when: - os: windows store: steam @@ -560925,7 +562439,7 @@ The Secret of Hutton Grammar School: installDir: The Secret of Hutton Grammar School: {} launch: - /The Secret of Hutton Grammar School VGA.exe: + "/The Secret of Hutton Grammar School VGA.exe": - when: - os: windows store: steam @@ -560935,11 +562449,11 @@ The Secret of Middle City: installDir: The Secret of Middle City: {} launch: - /TSMC.app/Contents/MacOS/TSMC: + "/TSMC.app/Contents/MacOS/TSMC": - when: - os: mac store: steam - /TSMC.exe: + "/TSMC.exe": - when: - os: windows store: steam @@ -560947,24 +562461,24 @@ The Secret of Middle City: id: 535370 The Secret of Monkey Island: files: - /SAVEGAME.*: + "/SAVEGAME.*": tags: - save when: - os: dos -'The Secret of Monkey Island: Special Edition': +"The Secret of Monkey Island: Special Edition": files: - /Library/Application Support/The Secret of Monkey Island Special Edition/Settings.ini: + "/Library/Application Support/The Secret of Monkey Island Special Edition/Settings.ini": tags: - config when: - os: mac - /Library/Application Support/The Secret of Monkey Island Special Edition/savegame.*: + "/Library/Application Support/The Secret of Monkey Island Special Edition/savegame.*": tags: - save when: - os: mac - /LucasArts/The Secret of Monkey Island Special Edition: + "/LucasArts/The Secret of Monkey Island Special Edition": tags: - config - save @@ -560975,14 +562489,14 @@ The Secret of Monkey Island: installDir: The Secret of Monkey Island Special Edition: {} launch: - /MISE.exe: + "/MISE.exe": - when: - store: steam steam: id: 32360 The Secret of Pineview Forest: files: - /AppData/LocalLow/VIS_Games/TheSecretOfPineviewForest: + "/AppData/LocalLow/VIS_Games/TheSecretOfPineviewForest": tags: - config when: @@ -560990,7 +562504,7 @@ The Secret of Pineview Forest: installDir: The Secret of Pineview Forest: {} launch: - /TheSecretOfPineviewForest.exe: + "/TheSecretOfPineviewForest.exe": - when: - os: windows store: steam @@ -561009,16 +562523,16 @@ The Secret of Tremendous Corporation: installDir: The Secret of Tremendous Corporation: {} launch: - /TSoTC.exe: + "/TSoTC.exe": - when: - os: windows store: steam - /The Secret of Tremendous Corporation.app/Contents/MacOS/SLUDGE: + "/The Secret of Tremendous Corporation.app/Contents/MacOS/SLUDGE": - when: - os: mac store: steam - /launcher: - - arguments: '-f -a1' + "/launcher": + - arguments: "-f -a1" when: - os: linux store: steam @@ -561028,7 +562542,7 @@ The Secrets of Jesus: installDir: The Secrets of Jesus: {} launch: - /The secrets of Jesus.exe: + "/The secrets of Jesus.exe": - when: - os: windows store: steam @@ -561038,31 +562552,31 @@ The Secrets of The Forest: installDir: The Secrets of the Forest: {} launch: - /TSOTF.x86_64: + "/TSOTF.x86_64": - when: - bit: 64 os: linux store: steam - /The Secrets of The Forest.exe: + "/The Secrets of The Forest.exe": - when: - bit: 64 os: windows store: steam steam: id: 822770 -'The Secrets of da Vinci: The Forbidden Manuscript': +"The Secrets of da Vinci: The Forbidden Manuscript": files: - /Users: + "/Users": tags: - save when: - os: windows - /Users//config.ini: + "/Users//config.ini": tags: - config when: - os: windows - /config.ini: + "/config.ini": tags: - config when: @@ -561071,7 +562585,7 @@ The Seduction of Shaqeera: installDir: The Seduction of Shaqeera: {} launch: - /The Seduction of Shaqeera.exe: + "/The Seduction of Shaqeera.exe": - when: - os: windows store: steam @@ -561086,15 +562600,15 @@ The Seeker: installDir: The Seeker: {} launch: - /The_Seeker.exe: + "/The_Seeker.exe": - when: - os: windows store: steam steam: id: 503680 -'The Sekimeiya: Spun Glass': +"The Sekimeiya: Spun Glass": files: - /game/saves/*.save: + "/game/saves/*.save": tags: - save when: @@ -561102,15 +562616,15 @@ The Seeker: installDir: The Sekimeiya Spun Glass: {} launch: - /The_Sekimeiya_Spun_Glass.app/Contents/MacOS/The_Sekimeiya_Spun_Glass: + "/The_Sekimeiya_Spun_Glass.app/Contents/MacOS/The_Sekimeiya_Spun_Glass": - when: - os: mac store: steam - /The_Sekimeiya_Spun_Glass.exe: + "/The_Sekimeiya_Spun_Glass.exe": - when: - os: windows store: steam - /The_Sekimeiya_Spun_Glass.sh: + "/The_Sekimeiya_Spun_Glass.sh": - when: - os: linux store: steam @@ -561120,7 +562634,7 @@ The Sentient: installDir: The Sentient: {} launch: - /TheSentient.exe: + "/TheSentient.exe": - when: - os: windows store: steam @@ -561130,7 +562644,7 @@ The Sequence: installDir: the Sequence: {} launch: - /theSequence.exe: + "/theSequence.exe": - when: - os: windows store: steam @@ -561142,31 +562656,31 @@ The Sequence: id: 454320 The Settlers: files: - /*.DS: + "/*.DS": tags: - save when: - os: dos - /SNDSTUP.DAT: + "/SNDSTUP.DAT": tags: - config when: - os: dos The Settlers - History Edition: files: - /TheSettlers/SAVE: + "/TheSettlers/SAVE": tags: - save when: - os: windows - /TheSettlers/game.ini: + "/TheSettlers/game.ini": tags: - config when: - os: windows -'The Settlers 7: History Edition': +"The Settlers 7: History Edition": files: - /THE SETTLERS 7 - History Edition: + "/THE SETTLERS 7 - History Edition": tags: - config when: @@ -561174,21 +562688,21 @@ The Settlers - History Edition: installDir: The Settlers 7 - History Edition: {} launch: - /Data/Base/Bin/Settlers7R.exe: - - arguments: '-uplay_steam_mode' + "/Data/Base/Bin/Settlers7R.exe": + - arguments: "-uplay_steam_mode" when: - os: windows store: steam steam: id: 965320 -'The Settlers 7: Paths to a Kingdom': +"The Settlers 7: Paths to a Kingdom": files: - /Settlers7: + "/Settlers7": tags: - config when: - os: windows - /Settlers7/Savegames: + "/Settlers7/Savegames": tags: - save when: @@ -561196,55 +562710,55 @@ The Settlers - History Edition: installDir: The Settlers 7 Paths to a Kingdom: {} launch: - /Data/Base/_Dbg/Bin/Release/Settlers7R.exe: - - arguments: '-uplay_steam_mode' + "/Data/Base/_Dbg/Bin/Release/Settlers7R.exe": + - arguments: "-uplay_steam_mode" when: - store: steam steam: id: 48120 -'The Settlers II: 10th Anniversary': +"The Settlers II: 10th Anniversary": files: - /data/settings: + "/data/settings": tags: - config when: - os: windows - /S2/saves: + "/S2/saves": tags: - save when: - os: windows gog: id: 1207659163 -'The Settlers II: Veni, Vidi, Vici': +"The Settlers II: Veni, Vidi, Vici": files: - /SAVE: + "/SAVE": tags: - save when: - os: dos - /SETUP.INI: + "/SETUP.INI": tags: - config when: - os: dos gog: id: 1207658786 -'The Settlers II: Veni, Vidi, Vici - History Edition': +"The Settlers II: Veni, Vidi, Vici - History Edition": files: - /TheSettlers2/SAVE: + "/TheSettlers2/SAVE": tags: - save when: - os: windows - /TheSettlers2/config.json: + "/TheSettlers2/config.json": tags: - config when: - os: windows The Settlers III: files: - /Save: + "/Save": tags: - save when: @@ -561255,26 +562769,26 @@ The Settlers III: HKEY_LOCAL_MACHINE/SOFTWARE/WOW6432Node/Bluebyte/Siedler3/1.0/General: tags: - config -'The Settlers III: History Edition': +"The Settlers III: History Edition": files: - /TheSettlers3/SAVE: + "/TheSettlers3/SAVE": tags: - save when: - os: windows - /TheSettlers3/config.json: + "/TheSettlers3/config.json": tags: - config when: - os: windows The Settlers IV: files: - /Config/GameSettings.cfg: + "/Config/GameSettings.cfg": tags: - config when: - os: windows - /Save: + "/Save": tags: - save when: @@ -561283,12 +562797,12 @@ The Settlers IV: id: 1207659254 The Settlers IV - History Edition: files: - /TheSettlers4/GameSettings.cfg: + "/TheSettlers4/GameSettings.cfg": tags: - config when: - os: windows - /TheSettlers4/Save: + "/TheSettlers4/Save": tags: - save when: @@ -561297,28 +562811,28 @@ The Settlers Online: installDir: The Settlers Online: {} launch: - /The Settlers Online.app: + "/The Settlers Online.app": - when: - os: mac store: steam - /nw: + "/nw": - when: - os: linux store: steam - /nw.exe: + "/nw.exe": - when: - os: windows store: steam steam: id: 354640 -'The Settlers: Heritage of Kings': +"The Settlers: Heritage of Kings": files: - /THE SETTLERS - Heritage of Kings/Data/GDB.bin: + "/THE SETTLERS - Heritage of Kings/Data/GDB.bin": tags: - config when: - os: windows - /THE SETTLERS - Heritage of Kings/SaveGames: + "/THE SETTLERS - Heritage of Kings/SaveGames": tags: - save when: @@ -561328,20 +562842,20 @@ The Settlers Online: installDir: The Settlers Heritage of Kings: {} launch: - /bin/SettlersHoK.exe: + "/bin/SettlersHoK.exe": - when: - store: steam - workingDir: /bin + workingDir: "/bin" steam: id: 15310 -'The Settlers: Heritage of Kings - History Edition': +"The Settlers: Heritage of Kings - History Edition": files: - /THE SETTLERS 5 - History Edition/Data/GDB.xml: + "/THE SETTLERS 5 - History Edition/Data/GDB.xml": tags: - config when: - os: windows - /THE SETTLERS 5 - History Edition/SaveGames: + "/THE SETTLERS 5 - History Edition/SaveGames": tags: - save when: @@ -561349,28 +562863,28 @@ The Settlers Online: installDir: The Settlers - Heritage of Kings - History Edition: {} launch: - /bin/SettlersHoK.exe: - - arguments: '-uplay_steam_mode' + "/bin/SettlersHoK.exe": + - arguments: "-uplay_steam_mode" when: - os: windows store: steam steam: id: 965300 -'The Settlers: New Allies': +"The Settlers: New Allies": files: - /savegames//3037: + "/savegames//3037": tags: - save when: - store: uplay -'The Settlers: Rise of an Empire': +"The Settlers: Rise of an Empire": files: - /THE SETTLERS - Rise of an Empire/Config: + "/THE SETTLERS - Rise of an Empire/Config": tags: - config when: - os: windows - /THE SETTLERS - Rise of an Empire/SaveGames: + "/THE SETTLERS - Rise of an Empire/SaveGames": tags: - save when: @@ -561383,17 +562897,17 @@ The Settlers Online: installDir: The Settlers Rise of an Empire: {} launch: - /Play Settlers 6.exe: + "/Play Settlers 6.exe": - when: - store: steam steam: id: 15330 -'The Settlers: Rise of an Empire - History Edition': +"The Settlers: Rise of an Empire - History Edition": installDir: The Settlers - Rise of an Empire - History Edition: {} launch: - /Data/base/bin/Settlers6R.exe: - - arguments: '-uplay_steam_mode' + "/Data/base/bin/Settlers6R.exe": + - arguments: "-uplay_steam_mode" when: - os: windows store: steam @@ -561403,7 +562917,7 @@ The Seven: installDir: The Seven: {} launch: - /The seven.exe: + "/The seven.exe": - when: - store: steam steam: @@ -561412,11 +562926,11 @@ The Seven Chambers: installDir: The Seven Chambers: {} launch: - /sevenchambers.app: + "/sevenchambers.app": - when: - os: mac store: steam - /sevenchambers.exe: + "/sevenchambers.exe": - when: - os: windows store: steam @@ -561426,26 +562940,26 @@ The Seven Deadly Seas: installDir: The seven deadly seas: {} launch: - /The seven deadly seas 2D.exe: + "/The seven deadly seas 2D.exe": - when: - bit: 64 os: windows store: steam steam: id: 1021220 -'The Seven Districts of Sin: The Tail Makes the Fox - Episode 1': +"The Seven Districts of Sin: The Tail Makes the Fox - Episode 1": installDir: The Tail Makes the Fox - Episode 1: {} launch: - /The_Tail_Makes_the_Fox.app: + "/The_Tail_Makes_the_Fox.app": - when: - os: mac store: steam - /The_Tail_Makes_the_Fox.exe: + "/The_Tail_Makes_the_Fox.exe": - when: - os: windows store: steam - /The_Tail_Makes_the_Fox.sh: + "/The_Tail_Makes_the_Fox.sh": - when: - os: linux store: steam @@ -561463,28 +562977,29 @@ The Seven Years War (1756-1763): installDir: The Seven Years War (1756-1763): {} launch: - /thesevenyearswar.exe: + "/thesevenyearswar.exe": - when: - os: windows store: steam steam: id: 400470 -'The Seventh Sign: Mr. Sister': +"The Seventh Sign: Mr. Sister": gog: id: 1827581176 The Sexy Brutale: files: - /AppData/LocalLow/CGS/TSB: - tags: - - save - when: - - store: origin - /AppData/LocalLow/Cavalier Game Studios/The Sexy Brutale: + "/AppData/LocalLow/CGS/TSB": tags: - save when: - os: windows - /userdata//552590/remote: + store: origin + "/AppData/LocalLow/Cavalier Game Studios/The Sexy Brutale": + tags: + - save + when: + - os: windows + "/userdata//552590/remote": tags: - save when: @@ -561494,16 +563009,18 @@ The Sexy Brutale: installDir: The Sexy Brutale: {} launch: - /game/game.exe: + "/game/game.exe": - when: - bit: 64 os: windows store: steam - workingDir: /game + workingDir: "/game" registry: HKEY_CURRENT_USER/Software/CGS/TSB: tags: - config + when: + - store: origin HKEY_CURRENT_USER/Software/Cavalier Game Studios/The Sexy Brutale: tags: - config @@ -561514,7 +563031,7 @@ The Shadow of Hell: id: 878480 The Shadow of Yidhra: files: - /AppData/LocalLow/WhitePeach/The Shadow of Yidhra/Save: + "/AppData/LocalLow/WhitePeach/The Shadow of Yidhra/Save": tags: - save when: @@ -561522,7 +563039,7 @@ The Shadow of Yidhra: installDir: The Shadow of Yidhra: {} launch: - /The Shadow of Yidhra.exe: + "/The Shadow of Yidhra.exe": - when: - os: windows store: steam @@ -561537,7 +563054,7 @@ The Shadows of Pygmalion: installDir: The Shadows of Pygmalion: {} launch: - /Agreement.exe: + "/Agreement.exe": - when: - os: windows store: steam @@ -561547,12 +563064,12 @@ The Shape of Heart: installDir: The Shape Of Heart: {} launch: - /TheShapeOfHeart.app: + "/TheShapeOfHeart.app": - when: - bit: 64 os: mac store: steam - /TheShapeOfHeart.exe: + "/TheShapeOfHeart.exe": - when: - bit: 64 os: windows @@ -561561,12 +563078,12 @@ The Shape of Heart: id: 511090 The Shapeshifting Detective: files: - /userdata//898650/remote/OptionsData: + "/userdata//898650/remote/OptionsData": tags: - config when: - store: steam - /userdata//898650/remote/SaveData: + "/userdata//898650/remote/SaveData": tags: - save when: @@ -561574,11 +563091,11 @@ The Shapeshifting Detective: installDir: The Shapeshifting Detective: {} launch: - /ShapeshiftingDetective.app: + "/ShapeshiftingDetective.app": - when: - os: mac store: steam - /ShapeshiftingDetective.exe: + "/ShapeshiftingDetective.exe": - when: - os: windows store: steam @@ -561592,7 +563109,7 @@ The Shattered Blade: installDir: The Shattered Blade: {} launch: - /The Shattered Blade.exe: + "/The Shattered Blade.exe": - when: - os: windows store: steam @@ -561600,12 +563117,12 @@ The Shattered Blade: id: 1129410 The Shattering: files: - /Shattering_Data: + "/Shattering_Data": tags: - config when: - os: windows - /AppData/LocalLow/Super Sexy Software/The Shattering/SaveSlots: + "/AppData/LocalLow/Super Sexy Software/The Shattering/SaveSlots": tags: - save when: @@ -561615,7 +563132,7 @@ The Shattering: installDir: The Shattering: {} launch: - /Shattering.exe: + "/Shattering.exe": - when: - os: windows store: steam @@ -561625,16 +563142,16 @@ The Shedding: installDir: The Shedding: {} launch: - /TheShedding.exe: + "/TheShedding.exe": - when: - bit: 64 os: windows store: steam steam: id: 954720 -'The Shell Part I: Inferno': +"The Shell Part I: Inferno": files: - /savedata/*.*: + "/savedata/*.*": tags: - save when: @@ -561642,7 +563159,7 @@ The Shedding: installDir: The Shell Part I: {} launch: - /TheShell.exe: + "/TheShell.exe": - when: - bit: 64 os: windows @@ -561658,7 +563175,7 @@ The Sheltered: installDir: The Sheltered: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -561668,31 +563185,31 @@ The Shenanigans of Cherry and Trix: installDir: The Shenanigans of Cherry and Trix: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: id: 1192840 The Shield: files: - /Aspyr/The Shield: + "/Aspyr/The Shield": tags: - config when: - os: windows - /Aspyr/The Shield/Save: + "/Aspyr/The Shield/Save": tags: - save when: - os: windows The Ship: files: - /ship/SAVE: + "/ship/SAVE": tags: - save when: - os: windows - /ship/cfg: + "/ship/cfg": tags: - config when: @@ -561704,15 +563221,15 @@ The Ship: installDir: The Ship: {} launch: - /ship.exe: - - arguments: '-steam' + "/ship.exe": + - arguments: "-steam" when: - store: steam steam: id: 2400 -'The Ship: Remasted': +"The Ship: Remasted": files: - /.config/unity3d/Blazing Griffin/The Ship Remasted: + "/.config/unity3d/Blazing Griffin/The Ship Remasted": tags: - config - save @@ -561721,45 +563238,45 @@ The Ship: installDir: The Ship Remasted: {} launch: - /TheShipRemasted.app/Contents/MacOS/TheShipRemasted: + "/TheShipRemasted.app/Contents/MacOS/TheShipRemasted": - when: - os: mac store: steam - /TheShipRemasted.exe: + "/TheShipRemasted.exe": - when: - os: windows store: steam - /TheShipRemasted.x86_64: + "/TheShipRemasted.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 383790 -'The Shivah: Kosher Edition': +"The Shivah: Kosher Edition": files: - /acsetup.cfg: + "/acsetup.cfg": tags: - config when: - os: mac - os: linux - /Library/Application Support/Shivah: + "/Library/Application Support/Shivah": tags: - save when: - os: mac - /Saved Games/Shivah: + "/Saved Games/Shivah": tags: - save when: - os: windows - /Saved Games/Shivah/acsetup.cfg: + "/Saved Games/Shivah/acsetup.cfg": tags: - config when: - os: windows - /ags/Shivah: + "/ags/Shivah": tags: - save when: @@ -561769,34 +563286,37 @@ The Ship: installDir: Shivah: {} launch: - /Shivah.app/Contents/MacOS/AGS: + "/Shivah.app/Contents/MacOS/AGS": - when: - os: mac store: steam - /Shivah.exe: + "/Shivah.exe": - when: - os: windows store: steam - /Start.sh: + "/Start.sh": - when: - bit: 32 os: linux store: steam + - bit: 64 + os: linux + store: steam steam: id: 252370 The Shopkeeper: installDir: The Shopkeeper: {} launch: - /TheShopkeeper.app: + "/TheShopkeeper.app": - when: - os: mac store: steam - /TheShopkeeper.exe: + "/TheShopkeeper.exe": - when: - os: windows store: steam - /TheShopkeeper.x86: + "/TheShopkeeper.x86": - when: - os: linux store: steam @@ -561804,12 +563324,12 @@ The Shopkeeper: id: 324610 The Shore: files: - /Theisland/Saved/Config/WindowsNoEditor: + "/Theisland/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /Theisland/Saved/SaveGames: + "/Theisland/Saved/SaveGames": tags: - save when: @@ -561819,8 +563339,8 @@ The Shore: installDir: TheShore: {} launch: - /TheShore.exe: - - arguments: '-nohmd' + "/TheShore.exe": + - arguments: "-nohmd" when: - os: windows store: steam @@ -561830,7 +563350,7 @@ The Short Story of a Drifting Labyrinth: installDir: The Short Story of a Drifting Labyrinth: {} launch: - /The_Short_Story_of_a_Drifting_Labyrinth.exe: + "/The_Short_Story_of_a_Drifting_Labyrinth.exe": - when: - bit: 64 os: windows @@ -561839,27 +563359,27 @@ The Short Story of a Drifting Labyrinth: id: 773910 The Showdown Effect: files: - /Library/Application Support/Arrowhead/TheShowdownEffect: + "/Library/Application Support/Arrowhead/TheShowdownEffect": tags: - save when: - os: mac - /Library/Application Support/Arrowhead/TheShowdownEffect/user_settings.config: + "/Library/Application Support/Arrowhead/TheShowdownEffect/user_settings.config": tags: - config when: - os: mac - /userdata//204080/remote/saves: + "/userdata//204080/remote/saves": tags: - save when: - store: steam - /Arrowhead/TheShowdownEffect: + "/Arrowhead/TheShowdownEffect": tags: - save when: - os: windows - /Arrowhead/TheShowdownEffect/user_settings.conf: + "/Arrowhead/TheShowdownEffect/user_settings.conf": tags: - config when: @@ -561867,13 +563387,13 @@ The Showdown Effect: installDir: Showdown: {} launch: - /binaries/showdown.exe: - - arguments: '-bundle-dir \".\" -ini settings -window-title \"The Showdown Effect\"' + "/binaries/showdown.exe": + - arguments: "-bundle-dir \\\".\\\" -ini settings -window-title \\\"The Showdown Effect\\\"" when: - os: windows store: steam - workingDir: /contents - /showdown.app: + workingDir: "/contents" + "/showdown.app": - when: - os: mac store: steam @@ -561881,12 +563401,12 @@ The Showdown Effect: id: 204080 The Shrouded Isle: files: - /AppData/LocalLow/Kitfox Games/The Shrouded Isle/SaveData: + "/AppData/LocalLow/Kitfox Games/The Shrouded Isle/SaveData": tags: - save when: - os: windows - /AppData/LocalLow/Kitfox Games/The Shrouded Isle/SaveData/settings.tsi: + "/AppData/LocalLow/Kitfox Games/The Shrouded Isle/SaveData/settings.tsi": tags: - config when: @@ -561894,11 +563414,11 @@ The Shrouded Isle: installDir: The Shrouded Isle: {} launch: - /TheShroudedIsle - OSX.app/Contents/MacOS/TheShroudedIsle - OSX: + "/TheShroudedIsle - OSX.app/Contents/MacOS/TheShroudedIsle - OSX": - when: - os: mac store: steam - /TheShroudedIsle.exe: + "/TheShroudedIsle.exe": - when: - os: windows store: steam @@ -561912,15 +563432,15 @@ The Sibling Experiment: installDir: The Sibling Experiment: {} launch: - /The_Sibling_Experiment.app: + "/The_Sibling_Experiment.app": - when: - os: mac store: steam - /The_Sibling_Experiment.exe: + "/The_Sibling_Experiment.exe": - when: - os: windows store: steam - /The_Sibling_Experiment.sh: + "/The_Sibling_Experiment.sh": - when: - os: linux store: steam @@ -561933,7 +563453,7 @@ The Siege and the Sandfox: id: 653060 The Signal State: files: - /AppData/LocalLow/Reckoner Industries/The Signal State/profiles/: + "/AppData/LocalLow/Reckoner Industries/The Signal State/profiles/": tags: - save when: @@ -561943,11 +563463,11 @@ The Signal State: installDir: The Signal State: {} launch: - /TheSignalState.app: + "/TheSignalState.app": - when: - os: mac store: steam - /thesignalstate.exe: + "/thesignalstate.exe": - when: - os: windows store: steam @@ -561959,22 +563479,22 @@ The Signal State: id: 1577620 The Signal from Tölva: files: - /.config/unity3d/Big Robot Ltd/The Signal From Tölva/Settings: + "/.config/unity3d/Big Robot Ltd/The Signal From Tölva/Settings": tags: - config when: - os: linux - /.steam/steam/userdata//457760/remote/SavedGames: + "/.steam/steam/userdata//457760/remote/SavedGames": tags: - save when: - os: linux - /AppData/LocalLow/Big Robot Ltd/The Signal From Tölva/Settings: + "/AppData/LocalLow/Big Robot Ltd/The Signal From Tölva/Settings": tags: - config when: - os: windows - /userdata//457760/remote: + "/userdata//457760/remote": tags: - save when: @@ -561985,17 +563505,17 @@ The Signal from Tölva: installDir: TheSignalFrom: {} launch: - /thesignalfrom: + "/thesignalfrom": - when: - bit: 64 os: linux store: steam - /thesignalfrom.app/Contents/MacOS/thesignalfrom: + "/thesignalfrom.app/Contents/MacOS/thesignalfrom": - when: - bit: 64 os: mac store: steam - /thesignalfrom.exe: + "/thesignalfrom.exe": - when: - bit: 64 os: windows @@ -562008,15 +563528,15 @@ The Signifier: installDir: The Signifier: {} launch: - /Contents/MacOS/thesignifier: + "/Contents/MacOS/thesignifier": - when: - os: mac store: steam - /TheSignifierDC.x86_64: + "/TheSignifierDC.x86_64": - when: - os: linux store: steam - /thesignifier.exe: + "/thesignifier.exe": - when: - os: windows store: steam @@ -562026,7 +563546,7 @@ The Silence Outside: installDir: The Silence Outside: {} launch: - /TheSilenceOutside.exe: + "/TheSilenceOutside.exe": - when: - os: windows store: steam @@ -562037,7 +563557,7 @@ The Silence of Darkness: id: 565890 The Silent Age: files: - /userdata//352520/remote: + "/userdata//352520/remote": tags: - save when: @@ -562047,20 +563567,20 @@ The Silent Age: installDir: The Silent Age: {} launch: - /TheSilentAge.app: + "/TheSilentAge.app": - when: - os: mac store: steam - /TheSilentAge.exe: + "/TheSilentAge.exe": - when: - os: windows store: steam - /TheSilentAge.x86: + "/TheSilentAge.x86": - when: - bit: 32 os: linux store: steam - /TheSilentAge.x86_64: + "/TheSilentAge.x86_64": - when: - bit: 64 os: linux @@ -562074,17 +563594,17 @@ The Silent Age: id: 352520 The Silver Case: files: - /AppData/LocalLow/ActiveGamingMedia/TheSilverCase/save: + "/AppData/LocalLow/ActiveGamingMedia/TheSilverCase/save": tags: - save when: - os: windows - /unity3d/ActiveGamingMedia/TheSilverCase: + "/unity3d/ActiveGamingMedia/TheSilverCase": tags: - config when: - os: linux - /unity3d/ActiveGamingMedia/TheSilverCase/save: + "/unity3d/ActiveGamingMedia/TheSilverCase/save": tags: - save when: @@ -562094,20 +563614,20 @@ The Silver Case: installDir: The Silver Case: {} launch: - /TheSilverCase.app: + "/TheSilverCase.app": - when: - os: mac store: steam - /TheSilverCase.exe: + "/TheSilverCase.exe": - when: - os: windows store: steam - /TheSilverCase.x86: + "/TheSilverCase.x86": - when: - bit: 32 os: linux store: steam - /TheSilverCase.x86_64: + "/TheSilverCase.x86_64": - when: - bit: 64 os: linux @@ -562118,11 +563638,11 @@ The Silver Case: - config steam: id: 476650 -'The Silver Crusade: Aoorha Axeman': +"The Silver Crusade: Aoorha Axeman": installDir: Silc Aoorha-Axeman: {} launch: - /Axeman.exe: + "/Axeman.exe": - when: - os: windows store: steam @@ -562130,17 +563650,17 @@ The Silver Case: id: 962370 The Silver Lining: files: - /game/keymap.cs: + "/game/keymap.cs": tags: - config when: - os: windows - /game/saves: + "/game/saves": tags: - save when: - os: windows - /game/settings.cs: + "/game/settings.cs": tags: - config when: @@ -562149,7 +563669,7 @@ The Simple Apocalypse: installDir: The Simple Apocalypse: {} launch: - /TSA.exe: + "/TSA.exe": - when: - bit: 64 os: windows @@ -562158,85 +563678,90 @@ The Simple Apocalypse: id: 693430 The Simpsons Arcade Game: files: - /PRG/SIMPSONS.CFG: + "/PRG/SIMPSONS.CFG": tags: - config when: - os: dos -'The Simpsons: Hit & Run': +"The Simpsons: Hit & Run": files: - /Save*: + "/Save*": tags: - save when: - os: windows - /simpsons.ini: + "/simpsons.ini": tags: - config when: - os: windows The Sims: files: - /UserData: + "/UserData": tags: - save when: - os: windows - /UserData*: + "/UserData*": tags: - save when: - os: windows - /UserData/Options.iff: + "/UserData/Options.iff": tags: - config when: - os: windows The Sims 2: files: - /TSData/Res/Config: + "/TSData/Res/Config": tags: - config when: - os: windows - /Library/Application Support/Aspyr/The Sims 2: + "/Library/Application Support/Aspyr/The Sims 2": tags: - save when: - os: mac - /EA Games/The Sims 2: + "/Library/Containers/com.aspyr.sims2.appstore/Data/Library/Application Support/Aspyr/The Sims 2 (Mac App Store version)": + tags: + - save + when: + - os: mac + "/EA Games/The Sims 2": tags: - save when: - os: windows - /EA Games/The Sims™ 2 Ultimate Collection: + "/EA Games/The Sims™ 2 Ultimate Collection": tags: - save when: - os: windows The Sims 3: files: - /Game/Bin/Default.ini: + "/Game/Bin/Default.ini": tags: - config when: - os: windows - /Game/Bin/GraphicsRules.sgr: + "/Game/Bin/GraphicsRules.sgr": tags: - config when: - os: windows - /Game/Bin/Sims3.ini: + "/Game/Bin/Sims3.ini": tags: - config when: - os: windows - /Documents/Electronic Arts/The Sims 3/Saves: + "/Documents/Electronic Arts/The Sims 3/Saves": tags: - save when: - os: mac - /Electronic Arts/The Sims 3/Saves: + "/Electronic Arts/The Sims 3/Saves": tags: - save when: @@ -562244,32 +563769,32 @@ The Sims 3: installDir: The Sims 3: {} launch: - /Game/Bin/Sims3Launcher.exe: + "/Game/Bin/Sims3Launcher.exe": - when: - store: steam - /Support/EA Help/Electronic_Arts_Technical_Support.htm: + "/Support/EA Help/Electronic_Arts_Technical_Support.htm": - when: - store: steam steam: id: 47890 The Sims 4: files: - /Documents/Electronic Arts/The Sims 4/Options.ini: + "/Documents/Electronic Arts/The Sims 4/Options.ini": tags: - config when: - os: mac - /Documents/Electronic Arts/The Sims 4/saves: + "/Documents/Electronic Arts/The Sims 4/saves": tags: - save when: - os: mac - /Electronic Arts/The Sims 4: + "/Electronic Arts/The Sims 4": tags: - config when: - os: windows - /Electronic Arts/The Sims 4/saves: + "/Electronic Arts/The Sims 4/saves": tags: - save when: @@ -562280,46 +563805,46 @@ The Sims 4: id: 1222670 The Sims Castaway Stories: files: - /TSData/Res/Config: + "/TSData/Res/Config": tags: - config when: - os: windows - /Electronic Arts/The Sims™ Castaway Stories: + "/Electronic Arts/The Sims™ Castaway Stories": tags: - save when: - os: windows The Sims Life Stories: files: - /TSData/Res/Config: + "/TSData/Res/Config": tags: - config when: - os: windows - /Electronic Arts/The Sims™ Life Stories: + "/Electronic Arts/The Sims™ Life Stories": tags: - save when: - os: windows The Sims Medieval: files: - /Documents/Electronic Arts/The Sims Medieval: + "/Documents/Electronic Arts/The Sims Medieval": tags: - config when: - os: mac - /Documents/Electronic Arts/The Sims Medieval/Saves: + "/Documents/Electronic Arts/The Sims Medieval/Saves": tags: - save when: - os: mac - /Electronic Arts/The Sims Medieval: + "/Electronic Arts/The Sims Medieval": tags: - config when: - os: windows - /Electronic Arts/The Sims Medieval/Saves: + "/Electronic Arts/The Sims Medieval/Saves": tags: - save when: @@ -562327,33 +563852,33 @@ The Sims Medieval: installDir: The Sims Medieval: {} launch: - /Game/Bin/TSM.exe: + "/Game/Bin/TSM.exe": - when: - store: steam - /Support/EA Help/Electronic_Arts_Technical_Support.htm: + "/Support/EA Help/Electronic_Arts_Technical_Support.htm": - when: - store: steam steam: id: 102820 The Sims Pet Stories: files: - /TSData/Res/Config: + "/TSData/Res/Config": tags: - config when: - os: windows - /Electronic Arts/The Sims™ Pet Stories: + "/Electronic Arts/The Sims™ Pet Stories": tags: - save when: - os: windows -'The Sin Collector: Repentless': +"The Sin Collector: Repentless": gog: id: 1500643916 installDir: The Sin Collector Repentless: {} launch: - /Sin Collector - Repentless.exe: + "/Sin Collector - Repentless.exe": - when: - os: windows store: steam @@ -562363,11 +563888,11 @@ The Singularity Wish: installDir: The Singularity Wish: {} launch: - /Game.app: + "/Game.app": - when: - os: mac store: steam - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -562375,12 +563900,12 @@ The Singularity Wish: id: 819780 The Sinking City: files: - /TSCGame/Saved/Config/WindowsNoEditor: + "/TSCGame/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /TSCGame/Saved/SaveGames: + "/TSCGame/Saved/SaveGames": tags: - save when: @@ -562393,22 +563918,22 @@ The Sinking City: installDir: The Sinking City: {} launch: - /TSCGame.exe: + "/TSCGame.exe": - when: - bit: 64 os: windows store: steam steam: id: 750130 -'The Sisters: Party of the Year': +"The Sisters: Party of the Year": installDir: Sisters: {} launch: - /Sisters Party Of The Year.exe: + "/Sisters Party Of The Year.exe": - when: - os: windows store: steam - /Sisters_MacOSX.app: + "/Sisters_MacOSX.app": - when: - os: mac store: steam @@ -562421,18 +563946,18 @@ The Skeleton: installDir: The Skeleton: {} launch: - /The Skeleton.exe: + "/The Skeleton.exe": - when: - os: windows store: steam - /game.exe: + "/game.exe": - when: - store: steam steam: id: 883330 The Skies: files: - /AppData/LocalLow/eforb: + "/AppData/LocalLow/eforb": tags: - config when: @@ -562440,7 +563965,7 @@ The Skies: installDir: The SKIES: {} launch: - /TheSkies.exe: + "/TheSkies.exe": - when: - store: steam steam: @@ -562449,20 +563974,20 @@ The Sky Climber: installDir: The Sky Climber: {} launch: - /TheSkyClimber.app/Contents/MacOS/TheSkyClimber: + "/TheSkyClimber.app/Contents/MacOS/TheSkyClimber": - when: - os: mac store: steam - /TheSkyClimber.exe: + "/TheSkyClimber.exe": - when: - os: windows store: steam - /TheSkyClimber.x86: + "/TheSkyClimber.x86": - when: - bit: 32 os: linux store: steam - /TheSkyClimber.x86_64: + "/TheSkyClimber.x86_64": - when: - bit: 64 os: linux @@ -562473,7 +563998,7 @@ The Slater: installDir: The Slater: {} launch: - /TheSlater.exe: + "/TheSlater.exe": - when: - os: windows store: steam @@ -562484,19 +564009,19 @@ The Slater: - save steam: id: 881690 -'The Slaughter: Act One': +"The Slaughter: Act One": installDir: The Slaughter Act One: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam - /theslaughteractone: + "/theslaughteractone": - when: - os: linux store: steam - /theslaughteractone.app: + "/theslaughteractone.app": - when: - os: mac store: steam @@ -562505,11 +564030,11 @@ The Slater: The Slaughtering Grounds: steam: id: 329950 -The Slimeking's Tower: +"The Slimeking's Tower": installDir: The Slimekings Tower: {} launch: - /tst.exe: + "/tst.exe": - when: - os: windows store: steam @@ -562527,12 +564052,12 @@ The Slopes: id: 620790 The Slormancer: files: - /The_Slormancer: + "/The_Slormancer": tags: - save when: - os: windows - /The_Slormancer/config.ini: + "/The_Slormancer/config.ini": tags: - config when: @@ -562542,7 +564067,7 @@ The Slormancer: installDir: The Slormancer: {} launch: - /The Slormancer.exe: + "/The Slormancer.exe": - when: - os: windows store: steam @@ -562551,13 +564076,13 @@ The Slormancer: The Slug: steam: id: 681070 -'The Smurfs: Mission Vileaf': +"The Smurfs: Mission Vileaf": gog: id: 1162916148 installDir: Smurfs: {} launch: - /TheSmurfsMissionVileaf.exe: + "/TheSmurfsMissionVileaf.exe": - when: - store: steam steam: @@ -562571,42 +564096,42 @@ The Snowboard Game: installDir: thesnowboardgame: {} launch: - /tsg.exe: - - arguments: '-window-mode exclusive' + "/tsg.exe": + - arguments: "-window-mode exclusive" when: - store: steam steam: id: 803830 -The Software Toolworks' Star Wars Chess: +"The Software Toolworks' Star Wars Chess": files: - /STARWARS.CMG: + "/STARWARS.CMG": tags: - save when: - os: windows - /SWCHESS.CFG: + "/SWCHESS.CFG": tags: - config when: - os: dos - /SWCHESS.SAV: + "/SWCHESS.SAV": tags: - save when: - os: dos The Sojourn: files: - /TheSojourn/Saved/Config/WindowsNoEditor: + "/TheSojourn/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /TheSojourn/Saved/SaveGames/Settings.sav: + "/TheSojourn/Saved/SaveGames/Settings.sav": tags: - config when: - os: windows - /TheSojourn/Saved/SaveGames/Sojourn.sav: + "/TheSojourn/Saved/SaveGames/Sojourn.sav": tags: - save when: @@ -562616,7 +564141,7 @@ The Sojourn: installDir: The Sojourn: {} launch: - /TheSojourn.exe: + "/TheSojourn.exe": - when: - os: windows store: steam @@ -562629,7 +564154,7 @@ The Soldier in the Mine: id: 685750 The Solitaire Conspiracy: files: - /AppData/LocalLow/Bithell Games/The Solitaire Conspiracy/saveData.dat: + "/AppData/LocalLow/Bithell Games/The Solitaire Conspiracy/saveData.dat": tags: - save when: @@ -562637,11 +564162,11 @@ The Solitaire Conspiracy: installDir: The Solitaire Conspiracy: {} launch: - /The Solitaire Conspiracy.app/Contents/MacOS/The Solitaire Conspiracy: + "/The Solitaire Conspiracy.app/Contents/MacOS/The Solitaire Conspiracy": - when: - os: mac store: steam - /The Solitaire Conspiracy.exe: + "/The Solitaire Conspiracy.exe": - when: - os: windows store: steam @@ -562653,12 +564178,12 @@ The Solitaire Conspiracy: id: 1424980 The Solus Project: files: - /TheSolusProject/SolusProfile: + "/TheSolusProject/SolusProfile": tags: - save when: - os: windows - /Solus/Saved/Config/WindowsNoEditor: + "/Solus/Saved/Config/WindowsNoEditor": tags: - config when: @@ -562668,28 +564193,28 @@ The Solus Project: installDir: TheSolusProject: {} launch: - /Solus/Binaries/Win64/Solus-Win64-Shipping.exe: - - arguments: '-nohmd' + "/Solus/Binaries/Win64/Solus-Win64-Shipping.exe": + - arguments: "-nohmd" when: - bit: 64 os: windows store: steam - workingDir: /Solus/Binaries/Win64 + workingDir: "/Solus/Binaries/Win64" steam: id: 313630 -'The Song of Seven: Overture': +"The Song of Seven: Overture": installDir: The Song of Seven Chapter One: {} launch: - /S07_C1.app/Contents/MacOS/S07_C1: + "/S07_C1.app/Contents/MacOS/S07_C1": - when: - os: mac store: steam - /S07_C1.exe: + "/S07_C1.exe": - when: - os: windows store: steam - /So7_C1.x86_64: + "/So7_C1.x86_64": - when: - os: linux store: steam @@ -562699,7 +564224,7 @@ The Song of Terminus: installDir: The Song of Terminus 終焉的迴響護界者之歌: {} launch: - /TheSongOfTerminus.exe: + "/TheSongOfTerminus.exe": - when: - bit: 64 os: windows @@ -562710,7 +564235,7 @@ The Sorceress: installDir: The Sorceress: {} launch: - /The_Sorceress.exe: + "/The_Sorceress.exe": - when: - os: windows store: steam @@ -562720,7 +564245,7 @@ The Sorrowvirus: installDir: The Sorrowvirus - A Faceless Short Story: {} launch: - /flts.exe: + "/flts.exe": - when: - bit: 64 os: windows @@ -562731,11 +564256,11 @@ The Soul Hunter: installDir: THE SOUL HUNTER: {} launch: - /TSH.app/Contents/MacOS/TSH: + "/TSH.app/Contents/MacOS/TSH": - when: - os: mac store: steam - /The Soul Hunter.exe: + "/The Soul Hunter.exe": - when: - os: windows store: steam @@ -562755,7 +564280,7 @@ The Source of the Nightmare Storms: installDir: The Source of the Nightmare Storms: {} launch: - /The_Source_of_the_Nightmare_Storms.exe: + "/The_Source_of_the_Nightmare_Storms.exe": - when: - os: windows store: steam @@ -562763,7 +564288,7 @@ The Source of the Nightmare Storms: id: 1178390 The Space Bar: files: - /SPACEBAR.SAV: + "/SPACEBAR.SAV": tags: - save when: @@ -562771,7 +564296,7 @@ The Space Bar: installDir: The Space Bar: {} launch: - /SPACEBAR.EXE: + "/SPACEBAR.EXE": - when: - store: steam steam: @@ -562780,7 +564305,7 @@ The Space Garden: installDir: The Space Garden: {} launch: - /TSG.exe: + "/TSG.exe": - when: - os: windows store: steam @@ -562790,24 +564315,24 @@ The Spatials: installDir: The Spatials: {} launch: - /The Spatials.app: + "/The Spatials.app": - when: - os: mac store: steam - /The Spatials.exe: + "/The Spatials.exe": - when: - os: windows store: steam - /run-thespatials.sh: + "/run-thespatials.sh": - when: - bit: 64 os: linux store: steam steam: id: 346420 -'The Spatials: Galactology': +"The Spatials: Galactology": files: - /TSGalactology: + "/TSGalactology": tags: - config - save @@ -562816,15 +564341,15 @@ The Spatials: installDir: The Spatials Galactology: {} launch: - /TSGalactology.exe: + "/TSGalactology.exe": - when: - os: windows store: steam - /The Spatials Galactology.app: + "/The Spatials Galactology.app": - when: - os: mac store: steam - /run-thespatials.sh: + "/run-thespatials.sh": - when: - os: linux store: steam @@ -562832,20 +564357,21 @@ The Spatials: id: 450700 The Spectrum Retreat: files: - /My Games/TheSpectrumRetreat/Saves/SpectrumData: + "/My Games/TheSpectrumRetreat/Saves/SpectrumData": tags: - save when: - os: windows - /Documents/Steam//763250: + "/Documents/Steam//763250": tags: - save when: - - store: steam + - os: windows + store: steam installDir: Spectrum: {} launch: - /Spectrum.exe: + "/Spectrum.exe": - when: - store: steam registry: @@ -562858,15 +564384,15 @@ The Spell - A Kinetic Novel: installDir: The Spell: {} launch: - /TheSpell.app: + "/TheSpell.app": - when: - os: mac store: steam - /TheSpell.exe: + "/TheSpell.exe": - when: - os: windows store: steam - /TheSpell.sh: + "/TheSpell.sh": - when: - os: linux store: steam @@ -562876,7 +564402,7 @@ The Sphere of Abyss: installDir: The Sphere of Abyss: {} launch: - /SOA.exe: + "/SOA.exe": - when: - os: windows store: steam @@ -562884,14 +564410,14 @@ The Sphere of Abyss: id: 1060810 The Spiderwick Chronicles: files: - /Sierra/The Spiderwick Chronicles: + "/Sierra/The Spiderwick Chronicles": tags: - save when: - os: windows The Spiral Scouts: files: - /AppData/LocalLow/CantaloupeKids/TheSpiralScouts: + "/AppData/LocalLow/CantaloupeKids/TheSpiralScouts": tags: - save when: @@ -562899,15 +564425,18 @@ The Spiral Scouts: installDir: The Spiral Scouts: {} launch: - /TheSpiralScouts.app: + "/TheSpiralScouts.app": - when: - os: mac store: steam - /TheSpiralScouts.exe: + "/TheSpiralScouts.exe": - when: - bit: 32 os: windows store: steam + - bit: 64 + os: windows + store: steam registry: HKEY_CURRENT_USER/Software/CantaloupeKids/TheSpiralScouts: tags: @@ -562918,7 +564447,7 @@ The Spirit Master of Retarnia -Conqueror of the Labyrinth-: installDir: The Spirit Master of Retarnia -Conqueror of the Labyrinth-: {} launch: - /Retarnia.exe: + "/Retarnia.exe": - when: - os: windows store: steam @@ -562928,7 +564457,7 @@ The Spirit Underneath: installDir: The Spirit Underneath: {} launch: - /TheSpirit.exe: + "/TheSpirit.exe": - when: - os: windows store: steam @@ -562936,7 +564465,7 @@ The Spirit Underneath: id: 562240 The Spirit and the Mouse: files: - /AppData/LocalLow/Alblune/TheSpiritAndTheMouse/saves: + "/AppData/LocalLow/Alblune/TheSpiritAndTheMouse/saves": tags: - config - save @@ -562947,11 +564476,11 @@ The Spirit and the Mouse: installDir: The Spirit And The Mouse: {} launch: - /TheSpiritAndTheMouse.app/Contents/MacOS/TheSpiritAndTheMouse: + "/TheSpiritAndTheMouse.app/Contents/MacOS/TheSpiritAndTheMouse": - when: - os: mac store: steam - /TheSpiritAndTheMouse.exe: + "/TheSpiritAndTheMouse.exe": - when: - os: windows store: steam @@ -562964,11 +564493,11 @@ The Spirits of Kelley Family: installDir: The Spirits of Kelley Family: {} launch: - /The Spirits of Kelley Family.app: + "/The Spirits of Kelley Family.app": - when: - os: mac store: steam - /The Spirits of Kelley Family.exe: + "/The Spirits of Kelley Family.exe": - when: - bit: 64 os: windows @@ -562977,7 +564506,7 @@ The Spirits of Kelley Family: id: 1215710 The SpongeBob SquarePants Movie: files: - /saved: + "/saved": tags: - save when: @@ -562990,7 +564519,7 @@ The Spookening: installDir: The Spookening: {} launch: - /bin/Spookening.exe: + "/bin/Spookening.exe": - when: - os: windows store: steam @@ -563000,14 +564529,14 @@ The Sports Trivia Challenge: installDir: The Sports Trivia Challenge: {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: id: 2182970 The Spy Who Shot Me: files: - /Saves: + "/Saves": tags: - save when: @@ -563015,7 +564544,7 @@ The Spy Who Shot Me: installDir: The spy who shot me™: {} launch: - /TSWSM.exe: + "/TSWSM.exe": - when: - os: windows store: steam @@ -563027,12 +564556,12 @@ The Spy Who Shot Me: id: 771810 The Spy Who Shrunk Me: files: - /AppData/LocalLow/Catland/The Spy Who Shrunk Me: + "/AppData/LocalLow/Catland/The Spy Who Shrunk Me": tags: - save when: - os: windows - /AppData/LocalLow/Catland/The Spy Who Shrunk Me/settings.json: + "/AppData/LocalLow/Catland/The Spy Who Shrunk Me/settings.json": tags: - config when: @@ -563040,7 +564569,7 @@ The Spy Who Shrunk Me: installDir: The Spy Who Shrunk Me: {} launch: - /The Spy Who Shrunk Me.exe: + "/The Spy Who Shrunk Me.exe": - when: - os: windows store: steam @@ -563050,25 +564579,25 @@ The Square Game: installDir: The Square Game: {} launch: - /The Square Game.exe: + "/The Square Game.exe": - when: - os: windows store: steam steam: id: 1209160 -The St Christopher's School Lockdown: +"The St Christopher's School Lockdown": installDir: - The St Christopher's School Lockdown: {} + "The St Christopher's School Lockdown": {} launch: - /St Christopher's School Lockdown.x86: + "/St Christopher's School Lockdown.x86": - when: - os: linux store: steam - /SteamBuilds.app/Contents/MacOS/St Christopher's School Lockdown: + "/SteamBuilds.app/Contents/MacOS/St Christopher's School Lockdown": - when: - os: mac store: steam - /The St Christopher's School Lockdown.exe: + "/The St Christopher's School Lockdown.exe": - when: - os: windows store: steam @@ -563076,12 +564605,12 @@ The St Christopher's School Lockdown: id: 600000 The Stalin Subway: files: - /SAVES: + "/SAVES": tags: - save when: - os: windows - /SAVES/config.cfg: + "/SAVES/config.cfg": tags: - config when: @@ -563089,20 +564618,20 @@ The Stalin Subway: installDir: The Stalin Subway: {} launch: - /metro2.exe: + "/metro2.exe": - when: - os: windows store: steam steam: id: 311140 -'The Stalin Subway: Red Veil': +"The Stalin Subway: Red Veil": files: - /SAVES: + "/SAVES": tags: - save when: - os: windows - /SAVES/config.cfg: + "/SAVES/config.cfg": tags: - config when: @@ -563110,55 +564639,57 @@ The Stalin Subway: installDir: The Stalin Subway Red Veil: {} launch: - /metro25.exe: + "/metro25.exe": - when: - store: steam steam: id: 311120 The Stanley Parable: files: - /thestanleyparable/cfg: + "/thestanleyparable/cfg": tags: - config when: - os: windows - - os: linux - os: mac - /thestanleyparable/save: + - os: linux + "/thestanleyparable/save": tags: - save when: - os: windows - - os: linux - os: mac + - os: linux installDir: The Stanley Parable: {} launch: - /stanley: - - arguments: '-game thestanleyparable' + "/stanley": + - arguments: "-game thestanleyparable" when: - os: mac store: steam - /stanley.exe: - - arguments: '-game thestanleyparable' + - os: linux + store: steam + "/stanley.exe": + - arguments: "-game thestanleyparable" when: - os: windows store: steam steam: id: 221910 -'The Stanley Parable: Ultra Deluxe': +"The Stanley Parable: Ultra Deluxe": files: - /.config/unity3d/Crows Crows Crows/The Stanley Parable_ Ultra Deluxe: + "/.config/unity3d/Crows Crows Crows/The Stanley Parable_ Ultra Deluxe": tags: - save when: - os: linux - /AppData/LocalLow/Crows Crows Crows/The Stanley Parable_ Ultra Deluxe: + "/AppData/LocalLow/Crows Crows Crows/The Stanley Parable_ Ultra Deluxe": tags: - save when: - os: windows - /Library/Application Support/Crows Crows Crows/The Stanley Parable_ Ultra Deluxe: + "/Library/Application Support/Crows Crows Crows/The Stanley Parable_ Ultra Deluxe": tags: - save when: @@ -563166,20 +564697,20 @@ The Stanley Parable: installDir: The Stanley Parable Ultra Deluxe: {} launch: - /TSPUD.app/Contents/MacOS/The Stanley Parable_ Ultra Deluxe: + "/TSPUD.app/Contents/MacOS/The Stanley Parable_ Ultra Deluxe": - when: - os: mac store: steam - /The Stanley Parable Ultra Deluxe.exe: + "/The Stanley Parable Ultra Deluxe.exe": - when: - os: windows store: steam - /The Stanley Parable Ultra Deluxe.x86_64: + "/The Stanley Parable Ultra Deluxe.x86_64": - when: - os: linux store: steam registry: - 'HKEY_CURRENT_USER/Software/Crows Crows Crows/The Stanley Parable: Ultra Deluxe': + "HKEY_CURRENT_USER/Software/Crows Crows Crows/The Stanley Parable: Ultra Deluxe": tags: - config steam: @@ -563188,15 +564719,15 @@ The Stargazers: installDir: The Stargazers: {} launch: - /Stargazers.app: + "/Stargazers.app": - when: - os: mac store: steam - /Stargazers.exe: + "/Stargazers.exe": - when: - os: windows store: steam - /Stargazers.sh: + "/Stargazers.sh": - when: - os: linux store: steam @@ -563209,15 +564740,15 @@ The Static Speaks My Name: installDir: the static speaks my name: {} launch: - /thestatic_linux.x86: + "/thestatic_linux.x86": - when: - os: linux store: steam - /thestatic_mac.app: + "/thestatic_mac.app": - when: - os: mac store: steam - /thestatic_win.exe: + "/thestatic_win.exe": - when: - os: windows store: steam @@ -563229,13 +564760,13 @@ The Static Speaks My Name: id: 387860 The Station: files: - /.config/unity3d/The Station Game Ltd/The Station: + "/.config/unity3d/The Station Game Ltd/The Station": tags: - config - save when: - os: linux - /AppData/LocalLow/The Station Game Ltd/The Station: + "/AppData/LocalLow/The Station Game Ltd/The Station": tags: - save when: @@ -563243,15 +564774,15 @@ The Station: installDir: The Station: {} launch: - /The Station.app/Contents/MacOS/The Station: + "/The Station.app/Contents/MacOS/The Station": - when: - os: mac store: steam - /The Station.exe: + "/The Station.exe": - when: - os: windows store: steam - /The Station.x86_64: + "/The Station.x86_64": - when: - os: linux store: steam @@ -563273,7 +564804,7 @@ The Steadfast VR Challenge: id: 833110 The Stillness of the Wind: files: - /AppData/LocalLow/Memory of God/The Stillness of the Wind: + "/AppData/LocalLow/Memory of God/The Stillness of the Wind": tags: - save when: @@ -563283,11 +564814,11 @@ The Stillness of the Wind: installDir: The Stillness of the Wind: {} launch: - /StillnessMac.app: + "/StillnessMac.app": - when: - os: mac store: steam - /StillnessWin.exe: + "/StillnessWin.exe": - when: - os: windows store: steam @@ -563299,7 +564830,7 @@ The Stillness of the Wind: id: 828900 The Sting!: files: - /Savegame: + "/Savegame": tags: - save when: @@ -563313,16 +564844,16 @@ The Stone: TheStone: {} steam: id: 676990 -'The Storm Guard: Darkness is Coming': +"The Storm Guard: Darkness is Coming": installDir: The Storm Guard: {} launch: - /The Storm Guard.app: + "/The Storm Guard.app": - when: - bit: 64 os: mac store: steam - /The Storm Guard.exe: + "/The Storm Guard.exe": - when: - bit: 64 os: windows @@ -563331,12 +564862,12 @@ The Stone: id: 409910 The Story Goes On: files: - /TSGO/save.mltdakap: + "/TSGO/save.mltdakap": tags: - save when: - os: windows - /TSGO/settings.mltdakap: + "/TSGO/settings.mltdakap": tags: - config when: @@ -563344,15 +564875,15 @@ The Story Goes On: installDir: The Story Goes On: {} launch: - /TSGO.exe: + "/TSGO.exe": - when: - os: windows store: steam - /The Story Goes On.app: + "/The Story Goes On.app": - when: - os: mac store: steam - /runner: + "/runner": - when: - os: linux store: steam @@ -563362,7 +564893,7 @@ The Story of Gods: installDir: qs: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -563372,7 +564903,7 @@ The Story of Henry Bishop: installDir: TSOHB_steamworks_sdk_146: {} launch: - /TSOHB.exe: + "/TSOHB.exe": - when: - os: windows store: steam @@ -563382,7 +564913,7 @@ The Story of My Life: installDir: The Story of My Life: {} launch: - /TheStoryofMyLife.exe: + "/TheStoryofMyLife.exe": - when: - os: windows store: steam @@ -563392,34 +564923,34 @@ The Storytale: installDir: TheStoryTale: {} launch: - /TheStorytale_0_40: + "/TheStorytale_0_40": - when: - os: linux store: steam - /TheStorytale_0_40.exe: + "/TheStorytale_0_40.exe": - when: - os: windows store: steam steam: id: 629230 -'The Strange Story Of Brian Fisher: Chapter 1': +"The Strange Story Of Brian Fisher: Chapter 1": installDir: The Strange Story Of Brian Fisher Chapter 1: {} launch: - /tssobfchapter1.exe: + "/tssobfchapter1.exe": - when: - store: steam steam: id: 1165840 -'The Stranger: Interactive Game': +"The Stranger: Interactive Game": installDir: The Stranger Interactive Game: {} launch: - /The Stranger.app: + "/The Stranger.app": - when: - os: mac store: steam - /The Stranger.exe: + "/The Stranger.exe": - when: - os: windows store: steam @@ -563437,7 +564968,7 @@ The Strayed: installDir: TheStrayed: {} launch: - /TheStrayed_v1.01.exe: + "/TheStrayed_v1.01.exe": - when: - os: windows store: steam @@ -563447,7 +564978,7 @@ The Strike: installDir: Strike: {} launch: - /strike_release.exe: + "/strike_release.exe": - when: - store: steam steam: @@ -563456,15 +564987,15 @@ The Stroke of Midnight: installDir: The Stroke of Midnight: {} launch: - /The Stroke of Midnight.app/Contents/MacOS/The Stroke of Midnight: + "/The Stroke of Midnight.app/Contents/MacOS/The Stroke of Midnight": - when: - os: mac store: steam - /The Stroke of Midnight.exe: + "/The Stroke of Midnight.exe": - when: - os: windows store: steam - /The Stroke of Midnight.sh: + "/The Stroke of Midnight.sh": - when: - os: linux store: steam @@ -563474,7 +565005,7 @@ The Studio: installDir: TheStudio: {} launch: - /TheStudio.exe: + "/TheStudio.exe": - when: - os: windows store: steam @@ -563484,16 +565015,16 @@ The Subject: installDir: The Subject: {} launch: - /TheSubject.exe: + "/TheSubject.exe": - when: - os: windows store: steam - /TheSubject.x86: + "/TheSubject.x86": - when: - bit: 32 os: linux store: steam - /TheSubject.x86_64: + "/TheSubject.x86_64": - when: - bit: 64 os: linux @@ -563504,7 +565035,7 @@ The Succubi Trap: installDir: The Succubi Trap: {} launch: - /Succubiyz.exe: + "/Succubiyz.exe": - when: - os: windows store: steam @@ -563512,22 +565043,22 @@ The Succubi Trap: id: 729320 The Suffering: files: - /GameConfig.ini: + "/GameConfig.ini": tags: - config when: - os: windows - /Saves: + "/Saves": tags: - save when: - os: windows - /My Games/The Suffering/Saves: + "/My Games/The Suffering/Saves": tags: - save when: - os: windows - /My Games/The Suffering/Torque.ini: + "/My Games/The Suffering/Torque.ini": tags: - config when: @@ -563537,9 +565068,9 @@ The Suffering: The Suffering of Larina: steam: id: 690090 -'The Suffering: Ties That Bind': +"The Suffering: Ties That Bind": files: - /Saves: + "/Saves": tags: - save when: @@ -563548,17 +565079,17 @@ The Suffering of Larina: id: 1578481504 The Suicide of Rachel Foster: files: - /Daedalic Entertainment GmbH/The Suicide of Rachel Foster/Saved/Config/WindowsNoEditor: + "/Daedalic Entertainment GmbH/The Suicide of Rachel Foster/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /Daedalic Entertainment GmbH/The Suicide of Rachel Foster/Saved/SaveGames/GameOption.sav: + "/Daedalic Entertainment GmbH/The Suicide of Rachel Foster/Saved/SaveGames/GameOption.sav": tags: - config when: - os: windows - /Daedalic Entertainment GmbH/The Suicide of Rachel Foster/Saved/SaveGames/OverlookSave.sav: + "/Daedalic Entertainment GmbH/The Suicide of Rachel Foster/Saved/SaveGames/OverlookSave.sav": tags: - save when: @@ -563568,7 +565099,7 @@ The Suicide of Rachel Foster: installDir: The Suicide of Rachel Foster: {} launch: - /TSORF.exe: + "/TSORF.exe": - when: - bit: 64 os: windows @@ -563577,12 +565108,12 @@ The Suicide of Rachel Foster: id: 1057750 The Sum of All Fears: files: - /Data/Save/game: + "/Data/Save/game": tags: - save when: - os: windows - /options.xml: + "/options.xml": tags: - config when: @@ -563590,14 +565121,14 @@ The Sum of All Fears: installDir: The Sum of All Fears: {} launch: - /SOAF.exe: + "/SOAF.exe": - when: - store: steam steam: id: 19810 The Summoning: files: - /SAVES: + "/SAVES": tags: - save when: @@ -563607,8 +565138,8 @@ The Summoning: installDir: The Summoning: {} launch: - /DOSBOX/DOSBox.exe: - - arguments: '-noconsole -conf summon-eng-base.conf -conf summon-eng-graphics.conf -conf summon-eng-game.conf' + "/DOSBOX/DOSBox.exe": + - arguments: "-noconsole -conf summon-eng-base.conf -conf summon-eng-graphics.conf -conf summon-eng-game.conf" when: - store: steam steam: @@ -563617,7 +565148,7 @@ The Sun Never Sets: installDir: The Sun Never Sets: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: @@ -563626,11 +565157,11 @@ The Sun Will Rise: installDir: The Sun Will Rise: {} launch: - /Game.app/Contents/MacOS/nwjs: + "/Game.app/Contents/MacOS/nwjs": - when: - os: mac store: steam - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -563640,11 +565171,11 @@ The Sun and Moon: installDir: TheSunAndMoon: {} launch: - /The Sun And Moon.app: + "/The Sun And Moon.app": - when: - os: mac store: steam - /The Sun And Moon.exe: + "/The Sun And Moon.exe": - when: - os: windows store: steam @@ -563654,7 +565185,7 @@ The Sun at Night: installDir: The Sun at Night: {} launch: - /TheSunAtNight-ST.exe: + "/TheSunAtNight-ST.exe": - when: - os: windows store: steam @@ -563664,7 +565195,7 @@ The Sunny Day: installDir: TheSunnyDay: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -563677,7 +565208,7 @@ The Sunset 2096: installDir: The Sunset 2096: {} launch: - /The Sunset 2096/MyProject3.exe: + "/The Sunset 2096/MyProject3.exe": - when: - store: steam steam: @@ -563686,51 +565217,51 @@ The Superfluous: installDir: The Superfluous: {} launch: - /The Superfluous.app: + "/The Superfluous.app": - when: - os: mac store: steam - /TheSuperfluous: + "/TheSuperfluous": - when: - os: linux store: steam - /TheSuperfluous.exe: + "/TheSuperfluous.exe": - when: - os: windows store: steam steam: id: 507120 -'The Superlatives: Aetherfall': +"The Superlatives: Aetherfall": installDir: The Superlatives Aetherfall: {} launch: - /The Superlatives Aetherfall.app/Contents/MacOS/The Superlatives Aetherfall: + "/The Superlatives Aetherfall.app/Contents/MacOS/The Superlatives Aetherfall": - when: - os: mac store: steam - /TheSuperlativesAetherfall: + "/TheSuperlativesAetherfall": - when: - os: linux store: steam - /TheSuperlativesAetherfall.exe: + "/TheSuperlativesAetherfall.exe": - when: - os: windows store: steam steam: id: 726230 -'The Superlatives: Shattered Worlds': +"The Superlatives: Shattered Worlds": installDir: The Superlatives Shattered Worlds: {} launch: - /The Superlatives Shattered Worlds.app/Contents/MacOS/The Superlatives Shattered Worlds: + "/The Superlatives Shattered Worlds.app/Contents/MacOS/The Superlatives Shattered Worlds": - when: - os: mac store: steam - /TheSuperlativesShatteredWorlds: + "/TheSuperlativesShatteredWorlds": - when: - os: linux store: steam - /TheSuperlativesShatteredWorlds.exe: + "/TheSuperlativesShatteredWorlds.exe": - when: - os: windows store: steam @@ -563740,17 +565271,17 @@ The Supper: installDir: The Supper: {} launch: - /The Supper.exe: + "/The Supper.exe": - when: - os: windows store: steam steam: id: 1171370 -'The Surfeit: Episode 1': +"The Surfeit: Episode 1": installDir: The Surfeit Episode 1: {} launch: - /Surfeit1VNU.exe: + "/Surfeit1VNU.exe": - when: - os: windows store: steam @@ -563758,18 +565289,18 @@ The Supper: id: 1432260 The Surge: files: - /userdata//378540/remote: + "/userdata//378540/remote": tags: - save when: - os: windows store: steam - /The Surge: + "/The Surge": tags: - config when: - os: windows - /The Surge/save: + "/The Surge/save": tags: - save when: @@ -563783,90 +565314,94 @@ The Surge: installDir: The Surge: {} launch: - /bin/TheSurge.exe: + "/bin/TheSurge.exe": - when: - store: steam - workingDir: /bin + workingDir: "/bin" steam: id: 378540 The Surge 2: files: - /userdata//644830/remote: + "/userdata//644830/remote": tags: - save when: - store: steam - /userdata//644830/remote/userbindings.json: + "/userdata//644830/remote/userbindings.json": tags: - config when: - store: steam - /The Surge 2/save: + "/The Surge 2/save": tags: - save when: - os: windows - os: windows store: microsoft - - store: origin - /The Surge 2/settings.ini: + - os: windows + store: origin + "/The Surge 2/settings.ini": tags: - config when: - os: windows - os: windows store: microsoft - - store: origin - - store: steam - /The Surge 2/userbindings.json: + - os: windows + store: origin + - os: windows + store: steam + "/The Surge 2/userbindings.json": tags: - config when: - os: windows - os: windows store: microsoft - - store: origin + - os: windows + store: origin gog: id: 1825987761 id: gogExtra: - - 1940158994 - - 1650269977 + - 1096417304 - 1474822137 - 1522454794 - - 1840201291 - - 1096417304 - 1632664975 + - 1650269977 + - 1840201291 + - 1940158994 steamExtra: - - 1162230 - - 1137641 - 1068260 - 1135970 - 1135971 - 1135972 - 1137640 + - 1137641 + - 1162230 installDir: The Surge 2: {} launch: - /bin/TheSurge2.exe: + "/bin/TheSurge2.exe": - when: - store: steam - workingDir: /bin - /launcher/surge2-launcher.exe: + workingDir: "/bin" + "/launcher/surge2-launcher.exe": - when: - store: steam - workingDir: /bin + workingDir: "/bin" steam: id: 644830 The Surprising Adventures of Munchausen: installDir: The Surprising Adventures of Munchausen: {} launch: - /Munchausen.exe: + "/Munchausen.exe": - when: - os: windows store: steam - /The Surprising Adventures of Munchausen (Full).app: + "/The Surprising Adventures of Munchausen (Full).app": - when: - os: mac store: steam @@ -563879,20 +565414,20 @@ The Survey: installDir: The Survey: {} launch: - /Visibility03.exe: + "/Visibility03.exe": - when: - os: windows store: steam steam: id: 547910 -'The Survival Test VR: Defend To Death': +"The Survival Test VR: Defend To Death": installDir: The Survival Test VR Defend To Death: {} steam: id: 718530 The Survivalists: files: - /AppData/LocalLow/Team17 Digital Ltd_/The Survivalists: + "/AppData/LocalLow/Team17 Digital Ltd_/The Survivalists": tags: - save when: @@ -563906,19 +565441,19 @@ The Survivors: id: 746070 The Swapper: files: - /Library/Application Support/Facepalm Games/The Swapper 1000: + "/Library/Application Support/Facepalm Games/The Swapper 1000": tags: - config - save when: - os: mac - /Facepalm Games/The Swapper 1000: + "/Facepalm Games/The Swapper 1000": tags: - config - save when: - os: windows - /Facepalm Games/The Swapper 1000: + "/Facepalm Games/The Swapper 1000": tags: - config - save @@ -563929,16 +565464,19 @@ The Swapper: installDir: The Swapper: {} launch: - /RunTheSwapper: + "/RunTheSwapper": - when: - os: mac store: steam - /TheSwapper: + "/TheSwapper": - when: + - bit: 32 + os: linux + store: steam - bit: 64 os: linux store: steam - /TheSwapper.exe: + "/TheSwapper.exe": - when: - os: windows store: steam @@ -563946,12 +565484,12 @@ The Swapper: id: 231160 The Swindle: files: - /AppData/LocalLow/Size Five Games/The Swindle/SwindleData.txt: + "/AppData/LocalLow/Size Five Games/The Swindle/SwindleData.txt": tags: - save when: - os: windows - /AppData/LocalLow/Size Five Games/The Swindle/SwindleSystemData.txt: + "/AppData/LocalLow/Size Five Games/The Swindle/SwindleSystemData.txt": tags: - config when: @@ -563961,15 +565499,15 @@ The Swindle: installDir: The Swindle: {} launch: - /TheSwindle.app: + "/TheSwindle.app": - when: - os: mac store: steam - /TheSwindle.exe: + "/TheSwindle.exe": - when: - os: windows store: steam - /TheSwindle.x86: + "/TheSwindle.x86": - when: - os: linux store: steam @@ -563983,7 +565521,7 @@ The Sword: installDir: The Sword: {} launch: - /The Sword.exe: + "/The Sword.exe": - when: - os: windows store: steam @@ -563993,7 +565531,7 @@ The Sword and the Slime: installDir: The Sword and the Slime: {} launch: - /theswordandtheslime.exe: + "/theswordandtheslime.exe": - when: - bit: 64 os: windows @@ -564002,17 +565540,17 @@ The Sword and the Slime: id: 1130570 The Swords of Ditto: files: - /userdata//619780/remote: + "/userdata//619780/remote": tags: - save when: - store: steam - /The_Swords_of_Ditto//Slot *: + "/The_Swords_of_Ditto//Slot *": tags: - save when: - os: windows - /The_Swords_of_Ditto//preferences: + "/The_Swords_of_Ditto//preferences": tags: - config when: @@ -564022,15 +565560,15 @@ The Swords of Ditto: installDir: The Swords of Ditto: {} launch: - /The_Swords_of_Ditto.app/Contents/MacOS/The_Swords_of_Ditto: + "/The_Swords_of_Ditto.app/Contents/MacOS/The_Swords_of_Ditto": - when: - os: mac store: steam - /The_Swords_of_Ditto.exe: + "/The_Swords_of_Ditto.exe": - when: - os: windows store: steam - /The_Swords_of_Ditto.sh: + "/The_Swords_of_Ditto.sh": - when: - os: linux store: steam @@ -564040,7 +565578,7 @@ The Swordsmen X: installDir: wuxiax: {} launch: - /WuXiaXClient.exe: + "/WuXiaXClient.exe": - when: - bit: 64 os: windows @@ -564061,7 +565599,7 @@ The TakeOver: installDir: TheTakeOver: {} launch: - /The TakeOver.exe: + "/The TakeOver.exe": - when: - os: windows store: steam @@ -564073,7 +565611,7 @@ The Tale of Bistun: installDir: The Tale of Bistun: {} launch: - /The Tale of Bistun.exe: + "/The Tale of Bistun.exe": - when: - store: steam steam: @@ -564082,15 +565620,15 @@ The Tale of Doris and the Dragon - Episode 1: installDir: The Tale of Doris and the Dragon - Episode I: {} launch: - /The Tale of Doris and the Dragon - Episode I.app: + "/The Tale of Doris and the Dragon - Episode I.app": - when: - os: mac store: steam - /The Tale of Doris and the Dragon - Episode I.exe: + "/The Tale of Doris and the Dragon - Episode I.exe": - when: - os: windows store: steam - /The Tale of Doris and the Dragon - Episode I.x86: + "/The Tale of Doris and the Dragon - Episode I.x86": - when: - os: linux store: steam @@ -564100,20 +565638,20 @@ The Tale of Doris and the Dragon - Episode 2: installDir: The Tale of Doris and the Dragon - Episode 2: {} launch: - /ttodatd2.app: + "/ttodatd2.app": - when: - os: mac store: steam - /ttodatd2.exe: + "/ttodatd2.exe": - when: - os: windows store: steam - /ttodatd2.x86: + "/ttodatd2.x86": - when: - bit: 32 os: linux store: steam - /ttodatd2.x86_64: + "/ttodatd2.x86_64": - when: - bit: 64 os: linux @@ -564127,7 +565665,7 @@ The Tale of a Common Man: installDir: The Tale of a Common Man: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: @@ -564136,15 +565674,15 @@ The Tales of Epicton Kingdom: installDir: The Tales of Epicton Kingdom: {} launch: - /The Tale of Epicton Kingdom.app/Contents/MacOS/nwjs: + "/The Tale of Epicton Kingdom.app/Contents/MacOS/nwjs": - when: - os: mac store: steam - /The Tales of Epicton Kingdom: + "/The Tales of Epicton Kingdom": - when: - os: linux store: steam - /The Tales of Epicton Kingdom.exe: + "/The Tales of Epicton Kingdom.exe": - when: - os: windows store: steam @@ -564152,24 +565690,22 @@ The Tales of Epicton Kingdom: id: 1109960 The Talos Principle: files: - /UserData//Talos/PlayerProfile.dat: + "/UserData//Talos/PlayerProfile.dat": tags: - save when: - - store: epic - store: gog - /UserData/Talos.ini: + "/UserData/Talos.ini": tags: - config when: - - store: epic - store: gog - /userdata//257510/local/Talos.ini: + "/userdata//257510/local/Talos.ini": tags: - config when: - store: steam - /userdata//257510/remote/PlayerProfile.dat: + "/userdata//257510/remote/PlayerProfile.dat": tags: - save when: @@ -564181,54 +565717,54 @@ The Talos Principle: - 322020 - 322021 - 322022 + - 330710 - 358470 - 360820 - - 330710 installDir: The Talos Principle: {} launch: - /Bin/Talos: + "/Bin/Talos": - when: - os: linux store: steam - workingDir: /Bin - /Bin/Talos.exe: + workingDir: "/Bin" + "/Bin/Talos.exe": - when: - os: windows store: steam - /Bin/Talos_Unrestricted: + "/Bin/Talos_Unrestricted": - when: - os: linux store: steam - workingDir: /Bin - /Bin/Talos_Unrestricted.exe: + workingDir: "/Bin" + "/Bin/Talos_Unrestricted.exe": - when: - os: windows store: steam - /Bin/x64/Talos: + "/Bin/x64/Talos": - when: - bit: 64 os: linux store: steam - workingDir: /Bin/x64 + workingDir: "/Bin/x64" - when: - os: mac store: steam - /Bin/x64/Talos.exe: + "/Bin/x64/Talos.exe": - when: - bit: 64 os: windows store: steam - /Bin/x64/Talos_Unrestricted: + "/Bin/x64/Talos_Unrestricted": - when: - bit: 64 os: linux store: steam - workingDir: /Bin/x64 + workingDir: "/Bin/x64" - when: - os: mac store: steam - /Bin/x64/Talos_Unrestricted.exe: + "/Bin/x64/Talos_Unrestricted.exe": - when: - bit: 64 os: windows @@ -564237,12 +565773,12 @@ The Talos Principle: id: 257510 The Talos Principle 2: files: - /Talos2/Saved/Config/Windows: + "/Talos2/Saved/Config/Windows": tags: - config when: - os: windows - /Talos2/Saved/SaveGames: + "/Talos2/Saved/SaveGames": tags: - save when: @@ -564254,12 +565790,12 @@ The Talos Principle 2: id: 835960 The Talos Principle VR: files: - /userdata//552440/local: + "/userdata//552440/local": tags: - config when: - store: steam - /userdata//552440/remote: + "/userdata//552440/remote": tags: - save when: @@ -564272,7 +565808,7 @@ The Tape: installDir: The Tape: {} launch: - /The Tape.exe: + "/The Tape.exe": - when: - os: windows store: steam @@ -564289,7 +565825,7 @@ The Tavern: installDir: The Tavern: {} launch: - /The Tavern.exe: + "/The Tavern.exe": - when: - store: steam steam: @@ -564303,7 +565839,7 @@ The Tawashi: installDir: tawashi: {} launch: - /tawashi.exe: + "/tawashi.exe": - when: - os: windows store: steam @@ -564321,12 +565857,12 @@ The Technician: id: 839960 The Technomancer: files: - /The Technomancer: + "/The Technomancer": tags: - config when: - os: windows - /The Technomancer/*.fsav: + "/The Technomancer/*.fsav": tags: - save when: @@ -564336,7 +565872,7 @@ The Technomancer: installDir: The Technomancer: {} launch: - /TheTechnomancer.exe: + "/TheTechnomancer.exe": - when: - os: windows store: steam @@ -564344,12 +565880,12 @@ The Technomancer: id: 338390 The Temple of Elemental Evil: files: - /ToEE.cfg: + "/ToEE.cfg": tags: - config when: - os: windows - /modules/ToEE/Save: + "/modules/ToEE/Save": tags: - save when: @@ -564358,7 +565894,7 @@ The Temple of Elemental Evil: id: 1207658889 The Temporal Invasion: files: - /AppData/LocalLow/Hybriona Labs: + "/AppData/LocalLow/Hybriona Labs": tags: - save when: @@ -564366,16 +565902,16 @@ The Temporal Invasion: installDir: TheTemporalInvasion: {} launch: - /The Temporal Invasion: + "/The Temporal Invasion": - when: - bit: 64 os: linux store: steam - /The Temporal Invasion.app: + "/The Temporal Invasion.app": - when: - os: mac store: steam - /The Temporal Invasion.exe: + "/The Temporal Invasion.exe": - when: - os: windows store: steam @@ -564383,7 +565919,7 @@ The Temporal Invasion: id: 454220 The Tenants: files: - /AppData/LocalLow/Ancient Forge Studio/The Tenants/Save Files: + "/AppData/LocalLow/Ancient Forge Studio/The Tenants/Save Files": tags: - save when: @@ -564393,7 +565929,7 @@ The Tenants: installDir: The Tenants: {} launch: - /The Tenants.exe: + "/The Tenants.exe": - when: - os: windows store: steam @@ -564407,15 +565943,15 @@ The Tension: installDir: The Tension: {} launch: - /The Tension.exe: + "/The Tension.exe": - when: - os: windows store: steam - /The Tension.x86: + "/The Tension.x86": - when: - os: linux store: steam - /mAC.app: + "/mAC.app": - when: - os: mac store: steam @@ -564425,11 +565961,11 @@ The Tenth Line: installDir: The Tenth Line: {} launch: - /TTL.app: + "/TTL.app": - when: - os: mac store: steam - /ttl.exe: + "/ttl.exe": - when: - bit: 64 os: windows @@ -564440,65 +565976,65 @@ The Terminal 2: installDir: The Terminal 2: {} launch: - /The_Terminal_2.exe: + "/The_Terminal_2.exe": - when: - os: windows store: steam - /The_Terminal_2_MAC_OS_X.app.zip: + "/The_Terminal_2_MAC_OS_X.app.zip": - when: - os: mac store: steam steam: id: 313620 -'The Terminator: Future Shock': +"The Terminator: Future Shock": files: - /CONTROLS.DAT: + "/CONTROLS.DAT": tags: - config when: - os: dos - /TFS_SAVE.*: + "/TFS_SAVE.*": tags: - save when: - os: dos -'The Terminator: Rampage': +"The Terminator: Rampage": files: - /DEFAULT.CFG: + "/DEFAULT.CFG": tags: - config when: - os: dos - /GAME*.SAE: + "/GAME*.SAE": tags: - save when: - os: dos - /GAME*.SAV: + "/GAME*.SAV": tags: - save when: - os: dos -'The Terminator: SkyNET': +"The Terminator: SkyNET": files: - /CONTROLS.DAT: + "/CONTROLS.DAT": tags: - config when: - os: dos - /TFS_SAVE.*: + "/TFS_SAVE.*": tags: - save when: - os: dos The Terrible Old Man: files: - /Saved Games/The Terrible Old Man/acsetup.cfg: + "/Saved Games/The Terrible Old Man/acsetup.cfg": tags: - config when: - os: windows - /Saved Games/The Terrible Old Man/agssave.*: + "/Saved Games/The Terrible Old Man/agssave.*": tags: - save when: @@ -564509,19 +566045,19 @@ The Terrible Old Man: installDir: The Terrible Old Man: {} launch: - /The Terrible OId Man.exe: + "/The Terrible OId Man.exe": - when: - store: steam steam: id: 1147030 The Testament of Sherlock Holmes: files: - /Frogwares/The Testament of Sherlock Holmes/save: + "/Frogwares/The Testament of Sherlock Holmes/save": tags: - save when: - os: windows - /Frogwares/The Testament of Sherlock Holmes/setup.ini: + "/Frogwares/The Testament of Sherlock Holmes/setup.ini": tags: - config when: @@ -564531,7 +566067,7 @@ The Testament of Sherlock Holmes: installDir: The Testament of Sherlock Holmes: {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: @@ -564541,12 +566077,12 @@ The Testing Floor: id: 952560 The Texas Chain Saw Massacre: files: - /BBQGame/Saved/Config: + "/BBQGame/Saved/Config": tags: - config when: - os: windows - /BBQGame/Saved/SaveGames: + "/BBQGame/Saved/SaveGames": tags: - save when: @@ -564554,16 +566090,16 @@ The Texas Chain Saw Massacre: installDir: TCSM: {} launch: - /start_protected_game.exe: + "/start_protected_game.exe": - when: - bit: 64 os: windows store: steam steam: id: 1433140 -'The Textorcist: The Story of Ray Bibbia': +"The Textorcist: The Story of Ray Bibbia": files: - /Textorcist: + "/Textorcist": tags: - save when: @@ -564573,11 +566109,11 @@ The Texas Chain Saw Massacre: installDir: Textorcist: {} launch: - /Textorcist.app: + "/Textorcist.app": - when: - os: mac store: steam - /Textorcist.exe: + "/Textorcist.exe": - when: - os: windows store: steam @@ -564587,7 +566123,7 @@ The Theodore Adventures: installDir: thetheodoreadventures: {} launch: - /thetheodoreadventure.exe: + "/thetheodoreadventure.exe": - when: - os: windows store: steam @@ -564597,11 +566133,11 @@ The Thin Silence: installDir: the thin silence: {} launch: - /TTS-OSX/TTS.app: + "/TTS-OSX/TTS.app": - when: - os: mac store: steam - /TTS-WIN/TTS/TTS.exe: + "/TTS-WIN/TTS/TTS.exe": - when: - os: windows store: steam @@ -564609,7 +566145,7 @@ The Thin Silence: id: 314630 The Thing: files: - /bin: + "/bin": tags: - save when: @@ -564620,17 +566156,17 @@ The Thing: - config The Thing With Mistletoes: files: - /game/saves: + "/game/saves": tags: - save when: - os: windows - /renpy/config.py: + "/renpy/config.py": tags: - config when: - os: windows - /renpy/The Thing With Mistletoes-1387675185: + "/renpy/The Thing With Mistletoes-1387675185": tags: - save when: @@ -564638,25 +566174,25 @@ The Thing With Mistletoes: installDir: The Thing With Mistletoes: {} launch: - /The Thing With Mistletoes.app: + "/The Thing With Mistletoes.app": - when: - os: mac store: steam - /The Thing With Mistletoes.exe: + "/The Thing With Mistletoes.exe": - when: - os: windows store: steam - /The Thing With Mistletoes.sh: + "/The Thing With Mistletoes.sh": - when: - os: linux store: steam steam: id: 587290 -'The Thing: Space X': +"The Thing: Space X": installDir: The Thing Space X: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -564666,25 +566202,25 @@ The Thirst of Hearts: installDir: The Thirst of Hearts: {} launch: - /The Thirst of Hearts.app: + "/The Thirst of Hearts.app": - when: - os: mac store: steam - /The Thirst of Hearts.exe: + "/The Thirst of Hearts.exe": - when: - os: windows store: steam - /The Thirst of Hearts.x86: + "/The Thirst of Hearts.x86": - when: - os: linux store: steam steam: id: 689360 -The Three Musketeers - D'Artagnan & The 12 Jewels: +"The Three Musketeers - D'Artagnan & The 12 Jewels": installDir: - The Three Musketeers - D'Artagnan & the 12 Jewels: {} + "The Three Musketeers - D'Artagnan & the 12 Jewels": {} launch: - /3Musketeers.exe: + "/3Musketeers.exe": - when: - os: windows store: steam @@ -564702,7 +566238,7 @@ The Time of Awakening: installDir: The Time of Awakening: {} launch: - /JXZK.exe: + "/JXZK.exe": - when: - bit: 64 os: windows @@ -564711,23 +566247,23 @@ The Time of Awakening: id: 1200250 The Tiny Bang Story: files: - /*.sav: + "/*.sav": tags: - config - save when: - os: linux - /fullscreen.dat: + "/fullscreen.dat": tags: - config when: - os: linux - /Library/Application Support/The Tiny Bang Story/*.sav: + "/Library/Application Support/The Tiny Bang Story/*.sav": tags: - save when: - os: mac - /Colibri Games/The Tiny Bang Story/prefsdb.dat: + "/Colibri Games/The Tiny Bang Story/prefsdb.dat": tags: - config - save @@ -564738,15 +566274,15 @@ The Tiny Bang Story: installDir: The Tiny Bang Story: {} launch: - /TTBS: + "/TTBS": - when: - os: linux store: steam - /The Tiny Bang Story.app: + "/The Tiny Bang Story.app": - when: - os: mac store: steam - /ttbs.exe: + "/ttbs.exe": - when: - os: windows store: steam @@ -564756,11 +566292,11 @@ The Tiny Tale 2: installDir: The Tiny Tale 2: {} launch: - /TTT2.app: + "/TTT2.app": - when: - os: mac store: steam - /TTT2.exe: + "/TTT2.exe": - when: - os: windows store: steam @@ -564770,7 +566306,7 @@ The Tomb of Argazfell: installDir: The Tomb of Argazfell: {} launch: - /The_Tomb_of_Argazfell.exe: + "/The_Tomb_of_Argazfell.exe": - when: - os: windows store: steam @@ -564778,12 +566314,12 @@ The Tomb of Argazfell: id: 1146160 The Tomorrow War: files: - /SavedGames/: + "/SavedGames/": tags: - save when: - os: windows - /SavedGames//Settings.ini: + "/SavedGames//Settings.ini": tags: - config when: @@ -564791,7 +566327,7 @@ The Tomorrow War: installDir: TW: {} launch: - /ZV.exe: + "/ZV.exe": - when: - os: windows store: steam @@ -564799,12 +566335,12 @@ The Tomorrow War: id: 289480 The Tone Rebellion: files: - /*.cfg: + "/*.cfg": tags: - config when: - os: windows - /*.sav: + "/*.sav": tags: - save when: @@ -564818,7 +566354,7 @@ The Tourist Trap: installDir: The Tourist Trap: {} launch: - /The Tourist Trap.exe: + "/The Tourist Trap.exe": - when: - os: windows store: steam @@ -564826,13 +566362,13 @@ The Tourist Trap: id: 985870 The Touryst: files: - /userdata//1796410/remote: + "/userdata//1796410/remote": tags: - config - save when: - store: steam - /Packages/Shinen.TheTouryst_9y1eezmggh3fe/SystemAppData/wgs: + "/Packages/Shinen.TheTouryst_9y1eezmggh3fe/SystemAppData/wgs": tags: - save when: @@ -564841,7 +566377,7 @@ The Touryst: installDir: The Touryst: {} launch: - /cengine.exe: + "/cengine.exe": - when: - os: windows store: steam @@ -564864,7 +566400,7 @@ The Tower - Fantogame: installDir: The Tower: {} launch: - /TheTower.exe: + "/TheTower.exe": - when: - os: windows store: steam @@ -564879,7 +566415,7 @@ The Tower Of TigerQiuQiu: installDir: The Tower Of TigerQiuQiu: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -564889,7 +566425,7 @@ The Tower of Beatrice: installDir: The Tower of Beatrice: {} launch: - /TheTowerofBeatrice.exe: + "/TheTowerofBeatrice.exe": - when: - os: windows store: steam @@ -564899,15 +566435,15 @@ The Tower of Elements: installDir: The Tower Of Elements: {} launch: - /TheTowerOfElements.app/Contents/MacOS/TheTowerOfElements: + "/TheTowerOfElements.app/Contents/MacOS/TheTowerOfElements": - when: - os: mac store: steam - /TheTowerOfElements.x86: + "/TheTowerOfElements.x86": - when: - os: linux store: steam - /TowerOfElements.exe: + "/TowerOfElements.exe": - when: - os: windows store: steam @@ -564917,20 +566453,20 @@ The Tower of Five Hearts: installDir: The Tower Of Five Hearts: {} launch: - /Tower of Five Hearts.app: + "/Tower of Five Hearts.app": - when: - os: mac store: steam - /Tower of Five Hearts.exe: + "/Tower of Five Hearts.exe": - when: - os: windows store: steam - /Tower of Five Hearts.x86: + "/Tower of Five Hearts.x86": - when: - bit: 32 os: linux store: steam - /Tower of Five Hearts.x86_64: + "/Tower of Five Hearts.x86_64": - when: - bit: 64 os: linux @@ -564941,23 +566477,23 @@ The Tower of Worth: installDir: The Tower of Worth: {} launch: - /TheTower.exe: + "/TheTower.exe": - when: - bit: 64 os: windows store: steam steam: id: 1054640 -'The Tower: Last Stand': +"The Tower: Last Stand": installDir: The Tower Last Stand: {} steam: id: 513170 -'The Tower: The Order of XII': +"The Tower: The Order of XII": installDir: The Tower The Order of XII: {} launch: - /The Tower The Order of XII.exe: + "/The Tower The Order of XII.exe": - when: - os: windows store: steam @@ -564967,7 +566503,7 @@ The Town: installDir: The Town: {} launch: - /The Town.exe: + "/The Town.exe": - when: - os: windows store: steam @@ -564975,12 +566511,12 @@ The Town: id: 1001450 The Town of Light: files: - /ttol_Data/config.xml: + "/ttol_Data/config.xml": tags: - config when: - os: windows - /ttol_Data/extra.ettol: + "/ttol_Data/extra.ettol": tags: - save when: @@ -564990,7 +566526,7 @@ The Town of Light: installDir: The Town Of Light: {} launch: - /ttol.exe: + "/ttol.exe": - when: - os: windows store: steam @@ -565000,7 +566536,7 @@ The Town of Light: - config steam: id: 433100 -The Toymaker's Apprentice: +"The Toymaker's Apprentice": installDir: The Toymakers Apprentice: {} steam: @@ -565010,9 +566546,9 @@ The Trace: The Trace: {} steam: id: 705930 -'The Trail: Frontier Challenge': +"The Trail: Frontier Challenge": files: - /AppData/LocalLow/22cans/The Trail_ Frontier Challenge: + "/AppData/LocalLow/22cans/The Trail_ Frontier Challenge": tags: - save when: @@ -565020,21 +566556,21 @@ The Trace: installDir: The Trail: {} launch: - /TheTrail.app: + "/TheTrail.app": - when: - os: mac store: steam - /TheTrail.exe: + "/TheTrail.exe": - when: - os: windows store: steam registry: - 'HKEY_CURRENT_USER/Software/22cans/The Trail: Frontier Challenge': + "HKEY_CURRENT_USER/Software/22cans/The Trail: Frontier Challenge": tags: - config steam: id: 584370 -'The Train: Escape to Normandy': +"The Train: Escape to Normandy": gog: id: 1192250281 installDir: @@ -565047,7 +566583,7 @@ The Trasamire Campaigns: installDir: Trasamire: {} launch: - /Trasamire.exe: + "/Trasamire.exe": - when: - os: windows store: steam @@ -565057,11 +566593,11 @@ The Travels of Marco Polo: installDir: The Travels of Marco Polo: {} launch: - /Marco Polo.app: + "/Marco Polo.app": - when: - os: mac store: steam - /Marco Polo.exe: + "/Marco Polo.exe": - when: - os: windows store: steam @@ -565071,15 +566607,15 @@ The Treasure Seekers of Lady Luck: installDir: The Treasure Seekers of Lady Luck: {} launch: - /The Treasure Seekers of Lady Luck.app/Contents/MacOS/The Treasure Seekers of Lady Luck: + "/The Treasure Seekers of Lady Luck.app/Contents/MacOS/The Treasure Seekers of Lady Luck": - when: - os: mac store: steam - /TheTreasureSeekersOfLadyLuck: + "/TheTreasureSeekersOfLadyLuck": - when: - os: linux store: steam - /TheTreasureSeekersOfLadyLuck.exe: + "/TheTreasureSeekersOfLadyLuck.exe": - when: - os: windows store: steam @@ -565089,7 +566625,7 @@ The Treasure of the Lost Temple: installDir: The treasure of the lost temple: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -565099,7 +566635,7 @@ The Treasures of Montezuma 3: installDir: The Treasures of Montezuma 3: {} launch: - /TreasuresOfMontezuma3.exe: + "/TreasuresOfMontezuma3.exe": - when: - os: windows store: steam @@ -565109,11 +566645,11 @@ The Treasures of Montezuma 4: installDir: Montezuma 4: {} launch: - /TheTreasuresOfMontezuma4.exe: + "/TheTreasuresOfMontezuma4.exe": - when: - os: windows store: steam - /The_Treasures_Of_Montezuma_4.app: + "/The_Treasures_Of_Montezuma_4.app": - when: - os: mac store: steam @@ -565123,7 +566659,7 @@ The Treasures of Montezuma 5: installDir: The Treasures of Montezuma 5: {} launch: - /TheTreasuresOfMontezuma5.exe: + "/TheTreasuresOfMontezuma5.exe": - when: - os: windows store: steam @@ -565133,15 +566669,15 @@ The Treehouse Man: installDir: The Treehouse Man: {} launch: - /run.sh: + "/run.sh": - when: - os: linux store: steam - /thetreehouseman.app/Contents/MacOS/Mac_Runner: + "/thetreehouseman.app/Contents/MacOS/Mac_Runner": - when: - os: mac store: steam - /treehouseman.exe: + "/treehouseman.exe": - when: - os: windows store: steam @@ -565151,11 +566687,11 @@ The Trial of Witch: installDir: The trial of witch: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam - /Game_cn.exe: + "/Game_cn.exe": - when: - os: windows store: steam @@ -565163,12 +566699,12 @@ The Trial of Witch: id: 622910 The Trials: files: - /TheTrials/Saved/Config/Windows: + "/TheTrials/Saved/Config/Windows": tags: - config when: - os: windows - /TheTrials/Saved/SaveGames: + "/TheTrials/Saved/SaveGames": tags: - save when: @@ -565176,7 +566712,7 @@ The Trials: installDir: The Trials: {} launch: - /TheTrials.exe: + "/TheTrials.exe": - when: - bit: 64 os: windows @@ -565187,17 +566723,17 @@ The Trials of Olympus: installDir: The Trials of Olympus: {} launch: - /TheTrialsOfOlympus.exe: + "/TheTrialsOfOlympus.exe": - when: - os: windows store: steam steam: id: 985280 -'The Trials of Olympus III: King of the World': +"The Trials of Olympus III: King of the World": installDir: The Trials of Olympus III: {} launch: - /OlympusIII.exe: + "/OlympusIII.exe": - when: - os: windows store: steam @@ -565212,7 +566748,7 @@ The Triumphant Return of Diabolos: installDir: The Triumphant Return of Diabolos: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: @@ -565226,7 +566762,7 @@ The Truck Game: installDir: The Truck Game: {} launch: - /TheTruckGame.exe: + "/TheTruckGame.exe": - when: - os: windows store: steam @@ -565236,7 +566772,7 @@ The True Slime King: installDir: The True Slime King: {} launch: - /The True Slime King.exe: + "/The True Slime King.exe": - when: - os: windows store: steam @@ -565246,11 +566782,11 @@ The True Tales of Bloodstreet 13 - Chapter 1: installDir: The True Tales of Bloodstreet 13: {} launch: - /True Tales of Bloodstreet 13 - Chapter 1.app: + "/True Tales of Bloodstreet 13 - Chapter 1.app": - when: - os: mac store: steam - /True Tales of Bloodstreet 13 - Chapter 1.exe: + "/True Tales of Bloodstreet 13 - Chapter 1.exe": - when: - os: windows store: steam @@ -565263,18 +566799,18 @@ The Turdler: id: 751400 The Turing Test: files: - /TheTuringTest/savedata.sav: + "/TheTuringTest/savedata.sav": tags: - save when: - os: windows - /Packages/BulkheadInteractive.TheTuringTest_es3fzbrr4bc5r/SystemAppData/wgs: + "/Packages/BulkheadInteractive.TheTuringTest_es3fzbrr4bc5r/SystemAppData/wgs": tags: - save when: - os: windows store: microsoft - /VenusPrototype/Saved/Config/WindowsNoEditor: + "/VenusPrototype/Saved/Config/WindowsNoEditor": tags: - config when: @@ -565285,12 +566821,12 @@ The Turing Test: installDir: The Turing Test: {} launch: - /TheTuringTest/Binaries/Win64/TheTuringTest.exe: + "/TheTuringTest/Binaries/Win64/TheTuringTest.exe": - when: - bit: 64 os: windows store: steam - - arguments: '-dx12' + - arguments: "-dx12" when: - bit: 64 os: windows @@ -565301,7 +566837,7 @@ The Turkey of Christmas Past: installDir: The Turkey of Christmas Past: {} launch: - /The Turkey of Christmas Past.exe: + "/The Turkey of Christmas Past.exe": - when: - os: windows store: steam @@ -565311,15 +566847,15 @@ The Twelve Trials: installDir: The Twelve Trials: {} launch: - /The Twelve Trials.app/Contents/MacOS/The Twelve Trials: + "/The Twelve Trials.app/Contents/MacOS/The Twelve Trials": - when: - os: mac store: steam - /TheTwelveTrials: + "/TheTwelveTrials": - when: - os: linux store: steam - /TheTwelveTrials.exe: + "/TheTwelveTrials.exe": - when: - os: windows store: steam @@ -565334,15 +566870,15 @@ The Twins: installDir: The Twins: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam steam: id: 1218570 -'The Typing of The Dead: Overkill': +"The Typing of The Dead: Overkill": files: - /Sega/Typing of the Dead Overkill: + "/Sega/Typing of the Dead Overkill": tags: - config - save @@ -565351,21 +566887,21 @@ The Twins: installDir: Typing of the Dead Overkill: {} launch: - /HOTD_NG.exe: + "/HOTD_NG.exe": - when: - store: steam steam: id: 246580 The Typing of the Dead: files: - The 'pol' directory where you installed the game.: + "The 'pol' directory where you installed the game.": tags: - save when: - os: windows The Typing of the Dead 2: files: - /SEGA/THE TYPING OF THE DEAD II: + "/SEGA/THE TYPING OF THE DEAD II": tags: - config - save @@ -565375,7 +566911,7 @@ The USB Stick Found in the Grass: installDir: TUSFitG: {} launch: - /TUSFitG.exe: + "/TUSFitG.exe": - when: - os: windows store: steam @@ -565394,15 +566930,15 @@ The Ultimate Heist: installDir: The Ultimate Heist: {} launch: - /TheUltimateHeist.app: + "/TheUltimateHeist.app": - when: - os: mac store: steam - /TheUltimateHeist.exe: + "/TheUltimateHeist.exe": - when: - os: windows store: steam - /TheUltimateHeist.x86: + "/TheUltimateHeist.x86": - when: - os: linux store: steam @@ -565412,7 +566948,7 @@ The Ultimate Showdown: installDir: The Ultimate Showdown: {} launch: - /UltimateShowdown.exe: + "/UltimateShowdown.exe": - when: - os: windows store: steam @@ -565422,20 +566958,20 @@ The Ultimate Trivia Challenge: installDir: The Ultimate Trivia Challenge: {} launch: - /The Ultimate Trivia Challenge.app: + "/The Ultimate Trivia Challenge.app": - when: - os: mac store: steam - /game.exe: + "/game.exe": - when: - os: windows store: steam - /game.x86: + "/game.x86": - when: - bit: 32 os: linux store: steam - /game.x86_64: + "/game.x86_64": - when: - bit: 64 os: linux @@ -565446,13 +566982,13 @@ The Ultimatest Battle: installDir: UB: {} launch: - /UB.exe: - - arguments: '-steam' + "/UB.exe": + - arguments: "-steam" when: - os: windows store: steam - /UB2_steam.app: - - arguments: '-steam' + "/UB2_steam.app": + - arguments: "-steam" when: - os: mac store: steam @@ -565462,11 +566998,11 @@ The Ultra Code: installDir: The Ultra Code: {} launch: - /RUNGAME: + "/RUNGAME": - when: - os: mac store: steam - /Release/Sigma.exe: + "/Release/Sigma.exe": - when: - os: windows store: steam @@ -565475,9 +567011,9 @@ The Ultra Code: The Unbreakable Gumball: steam: id: 833870 -'The Uncertain: Last Quiet Day': +"The Uncertain: Last Quiet Day": files: - /TheUncertain: + "/TheUncertain": tags: - save when: @@ -565487,16 +567023,16 @@ The Unbreakable Gumball: installDir: The Uncertain: {} launch: - /TUE1.app: + "/TUE1.app": - when: - os: mac store: steam - /TUE1.x86_64: + "/TUE1.x86_64": - when: - bit: 64 os: linux store: steam - /splash.exe: + "/splash.exe": - when: - os: windows store: steam @@ -565506,29 +567042,29 @@ The Unbreakable Gumball: - config steam: id: 406970 -'The Uncertain: Light at the End': +"The Uncertain: Light at the End": gog: id: 1272776844 installDir: The Uncertain - Light At The End: {} launch: - /splash.exe: + "/splash.exe": - when: - bit: 64 os: windows store: steam steam: id: 925570 -'The Uncertain: VR Experience': +"The Uncertain: VR Experience": installDir: The Uncertain VR Experience: {} steam: id: 602140 -'The Unclogging: An Unsanitary Saga': +"The Unclogging: An Unsanitary Saga": installDir: The Unclogging An Unsanitary Saga: {} launch: - /TheUnclogging.exe: + "/TheUnclogging.exe": - when: - os: windows store: steam @@ -565538,8 +567074,8 @@ The Under: installDir: The Under: {} launch: - /TheUnder.exe: - - arguments: '-fullscreen' + "/TheUnder.exe": + - arguments: "-fullscreen" when: - os: windows store: steam @@ -565547,7 +567083,7 @@ The Under: id: 726160 The UnderGarden: files: - /My Games/UnderGarden: + "/My Games/UnderGarden": tags: - save when: @@ -565555,7 +567091,7 @@ The UnderGarden: installDir: The UnderGarden: {} launch: - /TheUndergarden.exe: + "/TheUndergarden.exe": - when: - store: steam steam: @@ -565564,11 +567100,11 @@ The Underground Man: installDir: The Underground Man: {} launch: - /The Underground man.app: + "/The Underground man.app": - when: - os: mac store: steam - /The underground man.exe: + "/The underground man.exe": - when: - os: windows store: steam @@ -565578,7 +567114,7 @@ The Underground Watcher/地下监察员: installDir: The Underground Watcher: {} launch: - /Underground Watcher.exe: + "/Underground Watcher.exe": - when: - os: windows store: steam @@ -565588,7 +567124,7 @@ The Undying Plague: installDir: The Undying Plague: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -565596,30 +567132,32 @@ The Undying Plague: id: 349440 The Unfinished Swan: files: - /Annapurna Interactive/The Unfinished Swan/Steam//Config.xml: + "/Annapurna Interactive/The Unfinished Swan/Steam//Config.xml": tags: - config when: - - store: steam - /Annapurna Interactive/The Unfinished Swan/Steam//SAVE.BIN: + - os: windows + store: steam + "/Annapurna Interactive/The Unfinished Swan/Steam//SAVE.BIN": tags: - save when: - - store: steam + - os: windows + store: steam installDir: The Unfinished Swan: {} launch: - /TUS.exe: + "/TUS.exe": - when: - os: windows store: steam steam: id: 1206430 -'The Unfolding Engine: Paint a Game': +"The Unfolding Engine: Paint a Game": installDir: UnfoldingEngine: {} launch: - /UnfoldingEngine.exe: + "/UnfoldingEngine.exe": - when: - os: windows store: steam @@ -565629,13 +567167,13 @@ The Unholy Society: installDir: The Unholy Society: {} launch: - /run.sh: - - arguments: '--log-file=unholy_society.log' + "/run.sh": + - arguments: "--log-file=unholy_society.log" when: - bit: 64 os: linux store: steam - /unholy_society.exe: + "/unholy_society.exe": - when: - bit: 64 os: windows @@ -565646,7 +567184,7 @@ The Unicorn Princess: installDir: Unicorn Princess: {} launch: - /rlup.exe: + "/rlup.exe": - when: - store: steam steam: @@ -565655,14 +567193,14 @@ The Unintended Consequences of Curiosity: installDir: The Unintended Consequences of Curiosity: {} launch: - /Unintended.exe: + "/Unintended.exe": - when: - store: steam steam: id: 814660 The Universim: files: - /AppData/LocalLow/Crytivo Games Inc_/The Universim: + "/AppData/LocalLow/Crytivo Games Inc_/The Universim": tags: - save when: @@ -565672,15 +567210,15 @@ The Universim: installDir: The Universim: {} launch: - /The Universim.app: + "/The Universim.app": - when: - os: mac store: steam - /The Universim.exe: + "/The Universim.exe": - when: - os: windows store: steam - /The Universim.x86_64: + "/The Universim.x86_64": - when: - bit: 64 os: linux @@ -565691,7 +567229,7 @@ The Unknown City (Horror Begins Now.....Episode 1): installDir: Windows_Content: {} launch: - /The Unknown City.exe: + "/The Unknown City.exe": - when: - os: windows store: steam @@ -565701,7 +567239,7 @@ The Unlikely Legend of Rusty Pup: installDir: Rusty Pup: {} launch: - /RustyPupLauncher.exe: + "/RustyPupLauncher.exe": - when: - os: windows store: steam @@ -565710,12 +567248,12 @@ The Unlikely Legend of Rusty Pup: The Unliving: id: steamExtra: - - 2190670 - 2190660 + - 2190670 installDir: The Unliving: {} launch: - /The Unliving.exe: + "/The Unliving.exe": - when: - os: windows store: steam @@ -565728,7 +567266,7 @@ The Unseen: installDir: The Unseen: {} launch: - /The_Unseen.exe: + "/The_Unseen.exe": - when: - os: windows store: steam @@ -565738,7 +567276,7 @@ The Untold Story of Hengshui School: installDir: the untold story of hengshui school: {} launch: - /theuntoldstoryofhengshuischool.exe: + "/theuntoldstoryofhengshuischool.exe": - when: - os: windows store: steam @@ -565748,11 +567286,11 @@ The Unwelcomed: installDir: The Unwelcomed: {} launch: - /TheUnwelcomed_v1.7.app: + "/TheUnwelcomed_v1.7.app": - when: - os: mac store: steam - /TheUnwelcomed_v1.7.x86: + "/TheUnwelcomed_v1.7.x86": - arguments: FPSMode -show-screen-selector when: - bit: 32 @@ -565762,24 +567300,24 @@ The Unwelcomed: id: 504560 The Ur-Quan Masters: files: - /.uqm: + "/.uqm": tags: - config when: - os: mac - os: linux - /.uqm/save: + "/.uqm/save": tags: - save when: - os: mac - os: linux - /uqm: + "/uqm": tags: - config when: - os: windows - /uqm/save: + "/uqm/save": tags: - save when: @@ -565791,12 +567329,12 @@ The VR Museum of Fine Art: id: 515020 The Vagrant: files: - /TheVagrant/Saved/Config/WindowsNoEditor/*.ini: + "/TheVagrant/Saved/Config/WindowsNoEditor/*.ini": tags: - config when: - os: windows - /TheVagrant/Saved/SaveGames/*.sav: + "/TheVagrant/Saved/SaveGames/*.sav": tags: - save when: @@ -565804,18 +567342,18 @@ The Vagrant: installDir: The Vagrant: {} launch: - /TheVagrant.exe: + "/TheVagrant.exe": - when: - bit: 64 os: windows store: steam steam: id: 598700 -'The Vale: Shadow of the Crown': +"The Vale: Shadow of the Crown": installDir: The Vale: {} launch: - /TheVale.exe: + "/TheVale.exe": - when: - bit: 64 os: windows @@ -565824,7 +567362,7 @@ The Vagrant: id: 989790 The Valiant: files: - /AppData/LocalLow/Kite Games/The Valiant/SaveGames: + "/AppData/LocalLow/Kite Games/The Valiant/SaveGames": tags: - save when: @@ -565835,12 +567373,12 @@ The Valiant: gogExtra: - 1186453061 steamExtra: - - 2392910 - 2182280 + - 2392910 installDir: The Valiant: {} launch: - /The Valiant.exe: + "/The Valiant.exe": - when: - bit: 64 os: windows @@ -565859,7 +567397,7 @@ The Valley: installDir: The Valley: {} launch: - /The Valley.exe: + "/The Valley.exe": - when: - os: windows store: steam @@ -565869,7 +567407,7 @@ The Valley in My Mind: installDir: TheValleyInMyMind: {} launch: - /The Valley In My Mind.exe: + "/The Valley In My Mind.exe": - when: - bit: 64 os: windows @@ -565880,11 +567418,11 @@ The Van Game: installDir: The Van Game: {} launch: - /TheVanGame.app: + "/TheVanGame.app": - when: - os: mac store: steam - /TheVanGame.exe: + "/TheVanGame.exe": - when: - os: windows store: steam @@ -565894,11 +567432,11 @@ The Vanished Dragon: installDir: No-brainer Heroes: {} launch: - /Dragonkiller.app/Contents/MacOS/Dragonkiller: + "/Dragonkiller.app/Contents/MacOS/Dragonkiller": - when: - os: mac store: steam - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -565906,12 +567444,12 @@ The Vanished Dragon: id: 1097420 The Vanishing of Ethan Carter: files: - /My Games/The Vanishing of Ethan Carter/AstronautsGame/Config: + "/My Games/The Vanishing of Ethan Carter/AstronautsGame/Config": tags: - config when: - os: windows - /My Games/The Vanishing of Ethan Carter/AstronautsGame/SaveData/SaveGame_0.sav: + "/My Games/The Vanishing of Ethan Carter/AstronautsGame/SaveData/SaveGame_0.sav": tags: - save when: @@ -565921,7 +567459,7 @@ The Vanishing of Ethan Carter: installDir: The Vanishing of Ethan Carter: {} launch: - /Binaries/Launcher.exe: + "/Binaries/Launcher.exe": - when: - os: windows store: steam @@ -565929,12 +567467,12 @@ The Vanishing of Ethan Carter: id: 258520 The Vanishing of Ethan Carter Redux: files: - /My Games/The Vanishing of Ethan Carter Redux/SavedGames: + "/My Games/The Vanishing of Ethan Carter Redux/SavedGames": tags: - save when: - os: windows - /EthanCarter/Saved/Config/WindowsNoEditor: + "/EthanCarter/Saved/Config/WindowsNoEditor": tags: - config when: @@ -565944,7 +567482,7 @@ The Vanishing of Ethan Carter Redux: installDir: The Vanishing of Ethan Carter Redux: {} launch: - /EthanCarter.exe: + "/EthanCarter.exe": - when: - bit: 64 os: windows @@ -565953,12 +567491,12 @@ The Vanishing of Ethan Carter Redux: id: 400430 The Vanishing of Ethan Carter VR: files: - /My Games/The Vanishing of Ethan Carter VR/SavedGames: + "/My Games/The Vanishing of Ethan Carter VR/SavedGames": tags: - save when: - os: windows - /EthanCarterVR/Saved/Config/WindowsNoEditor: + "/EthanCarterVR/Saved/Config/WindowsNoEditor": tags: - config when: @@ -565967,12 +567505,12 @@ The Vanishing of Ethan Carter VR: id: 457880 The Varginha Incident: files: - 'C:/IV': + "C:/IV": tags: - save when: - os: dos - 'C:/IV/INFO0.SAV': + "C:/IV/INFO0.SAV": tags: - config when: @@ -565986,7 +567524,7 @@ The Viceroy: installDir: The Viceroy: {} launch: - /The Viceroy.exe: + "/The Viceroy.exe": - when: - store: steam steam: @@ -565995,7 +567533,7 @@ The Videokid: installDir: THE VIDEOKID: {} launch: - /VideoKid.exe: + "/VideoKid.exe": - when: - os: windows store: steam @@ -566005,22 +567543,22 @@ The Vigilant Villa: installDir: FogSummer: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam steam: id: 1254900 -'The Villa: Allison''s Diary': +"The Villa: Allison's Diary": installDir: - The Villa Allison's Diary: {} + "The Villa Allison's Diary": {} steam: id: 808210 The Village: installDir: TheVillage: {} launch: - /The Village.exe: + "/The Village.exe": - when: - os: windows store: steam @@ -566040,7 +567578,7 @@ The Visitors: installDir: The Visitors: {} launch: - /The Visitors 2.exe: + "/The Visitors 2.exe": - when: - store: steam steam: @@ -566052,7 +567590,7 @@ The Voice from Heaven: installDir: The Voice from Heaven: {} launch: - /VoiceFromHeaven.exe: + "/VoiceFromHeaven.exe": - when: - os: windows store: steam @@ -566062,7 +567600,7 @@ The Voice in the Void: installDir: The Voice in the Void: {} launch: - /The Voice in the Void.exe: + "/The Voice in the Void.exe": - when: - os: windows store: steam @@ -566070,17 +567608,17 @@ The Voice in the Void: id: 670940 The Void: files: - /data/settings.xml: + "/data/settings.xml": tags: - config when: - os: windows - /Ice-pick Lodge/Void: + "/Ice-pick Lodge/Void": tags: - config when: - os: windows - /Documents/My Games/Void: + "/Documents/My Games/Void": tags: - save when: @@ -566090,17 +567628,17 @@ The Void: installDir: The Void: {} launch: - /bin/win32/Config.exe: + "/bin/win32/Config.exe": - when: - store: steam - /bin/win32/Game.exe: + "/bin/win32/Game.exe": - when: - store: steam steam: id: 37000 The Void Rains upon Her Heart: files: - /The_Void_Rains_Upon_Her_Heart/save files: + "/The_Void_Rains_Upon_Her_Heart/save files": tags: - save when: @@ -566108,7 +567646,7 @@ The Void Rains upon Her Heart: installDir: The Void Rains Upon Her Heart: {} launch: - /The Void Rains Upon Her Heart.exe: + "/The Void Rains Upon Her Heart.exe": - when: - os: windows store: steam @@ -566118,7 +567656,7 @@ The Void of Desires: installDir: The Void of Desires: {} launch: - /TVOD.exe: + "/TVOD.exe": - when: - os: windows store: steam @@ -566126,7 +567664,7 @@ The Void of Desires: id: 1152230 The Voidness: files: - /AppData/LocalLow/Steelkrill Studio/The Voidness: + "/AppData/LocalLow/Steelkrill Studio/The Voidness": tags: - config when: @@ -566134,7 +567672,7 @@ The Voidness: installDir: The Voidness - LIDAR Horror Survival Game: {} launch: - /The Voidness.exe: + "/The Voidness.exe": - when: - store: steam registry: @@ -566147,15 +567685,15 @@ The Volcano: installDir: The Volcano: {} launch: - /The Volcano.app: + "/The Volcano.app": - when: - os: mac store: steam - /The Volcano.exe: + "/The Volcano.exe": - when: - os: windows store: steam - /The Volcano.x86: + "/The Volcano.x86": - when: - os: linux store: steam @@ -566177,14 +567715,14 @@ The Walking Dead Onslaught: The Walking Dead Onslaught: {} steam: id: 1082680 -'The Walking Dead: A New Frontier': +"The Walking Dead: A New Frontier": files: - /Telltale Games/The Walking Dead - A New Frontier (Season 3): + "/Telltale Games/The Walking Dead - A New Frontier (Season 3)": tags: - save when: - os: windows - /Telltale Games/The Walking Dead A New Frontier: + "/Telltale Games/The Walking Dead A New Frontier": tags: - save when: @@ -566194,35 +567732,35 @@ The Walking Dead Onslaught: installDir: The Walking Dead - A New Frontier (Season 3): {} launch: - /The Walking Dead - A New Frontier.app: + "/The Walking Dead - A New Frontier.app": - when: - bit: 64 os: mac store: steam - /WalkingDead3.exe: + "/WalkingDead3.exe": - when: - bit: 64 os: windows store: steam steam: id: 536220 -'The Walking Dead: Betrayal': +"The Walking Dead: Betrayal": installDir: The Walking Dead Betrayal: {} launch: - /WalkingDeadBetrayal.exe: + "/WalkingDeadBetrayal.exe": - when: - store: steam steam: id: 1877320 -'The Walking Dead: Michonne': +"The Walking Dead: Michonne": files: - /Library/Application Support/Telltale Games/The Walking Dead Michonne: + "/Library/Application Support/Telltale Games/The Walking Dead Michonne": tags: - save when: - os: mac - /Telltale Games/The Walking Dead Michonne: + "/Telltale Games/The Walking Dead Michonne": tags: - save when: @@ -566232,24 +567770,24 @@ The Walking Dead Onslaught: installDir: The Walking Dead Michonne: {} launch: - /Walking Dead Michonne.app: + "/Walking Dead Michonne.app": - when: - os: mac store: steam - /WalkingDeadMichonne.exe: + "/WalkingDeadMichonne.exe": - when: - os: windows store: steam steam: id: 429570 -'The Walking Dead: Saints & Sinners': +"The Walking Dead: Saints & Sinners": files: - /TWD/Saved/Config/WindowsNoEditor: + "/TWD/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /TWD/Saved/SaveGames: + "/TWD/Saved/SaveGames": tags: - save when: @@ -566258,20 +567796,20 @@ The Walking Dead Onslaught: TWDSaintsAndSinners: {} steam: id: 916840 -'The Walking Dead: Saints & Sinners - Chapter 2: Retribution': +"The Walking Dead: Saints & Sinners - Chapter 2: Retribution": installDir: The Walking Dead Saints & Sinners - Chapter 2 Retribution: {} steam: id: 1947500 -'The Walking Dead: Season One': +"The Walking Dead: Season One": files: - /Library/Application Support/Telltale Games/TheWalkingDead: + "/Library/Application Support/Telltale Games/TheWalkingDead": tags: - config - save when: - os: mac - /Telltale Games/The Walking Dead: + "/Telltale Games/The Walking Dead": tags: - config - save @@ -566287,24 +567825,24 @@ The Walking Dead Onslaught: installDir: The Walking Dead: {} launch: - /TheWalkingDead.app: + "/TheWalkingDead.app": - when: - os: mac store: steam - /WalkingDead101.exe: + "/WalkingDead101.exe": - when: - os: windows store: steam steam: id: 207610 -'The Walking Dead: Season Two': +"The Walking Dead: Season Two": files: - /Library/Application Support/Telltale Games/The Walking Dead - Season Two: + "/Library/Application Support/Telltale Games/The Walking Dead - Season Two": tags: - save when: - os: mac - /Telltale Games/The Walking Dead Season Two: + "/Telltale Games/The Walking Dead Season Two": tags: - save when: @@ -566314,24 +567852,24 @@ The Walking Dead Onslaught: installDir: The Walking Dead Season Two: {} launch: - /The Walking Dead 2.app: + "/The Walking Dead 2.app": - when: - os: mac store: steam - /TheWalkingDead2.exe: + "/TheWalkingDead2.exe": - when: - os: windows store: steam steam: id: 261030 -'The Walking Dead: Survival Instinct': +"The Walking Dead: Survival Instinct": files: - /SavedData: + "/SavedData": tags: - save when: - os: windows - /editdata/system: + "/editdata/system": tags: - config when: @@ -566339,14 +567877,14 @@ The Walking Dead Onslaught: installDir: The Walking Dead - Survival Instinct: {} launch: - /WalkingDead.exe: + "/WalkingDead.exe": - when: - store: steam steam: id: 220050 -'The Walking Dead: The Final Season': +"The Walking Dead: The Final Season": files: - /Telltale Games/The Walking Dead The Final Season: + "/Telltale Games/The Walking Dead The Final Season": tags: - save when: @@ -566356,21 +567894,21 @@ The Walking Dead Onslaught: installDir: The Walking Dead The Final Season: {} launch: - /WalkingDead4.exe: + "/WalkingDead4.exe": - when: - bit: 64 os: windows store: steam steam: id: 866800 -'The Walking Dead: The Telltale Definitive Series': +"The Walking Dead: The Telltale Definitive Series": files: - /Telltale Games/TWDTTDS: + "/Telltale Games/TWDTTDS": tags: - save when: - os: windows - /Telltale Games/The Walking Dead The Telltale Definitive Series/prefs.prop: + "/Telltale Games/The Walking Dead The Telltale Definitive Series/prefs.prop": tags: - config when: @@ -566380,7 +567918,7 @@ The Walking Dead Onslaught: installDir: The Walking Dead The Telltale Definitive Series: {} launch: - /WDC.exe: + "/WDC.exe": - when: - bit: 64 os: windows @@ -566391,7 +567929,7 @@ The Walking Evil: installDir: The Walking Evil: {} launch: - /The Walking Evil.exe: + "/The Walking Evil.exe": - when: - bit: 64 os: windows @@ -566402,21 +567940,21 @@ The Walking Vegetables: installDir: The Walking Vegetables: {} launch: - /The Walking Vegetables.app: + "/The Walking Vegetables.app": - when: - os: mac store: steam - /TheWalkingVegetables.exe: + "/TheWalkingVegetables.exe": - when: - os: windows store: steam steam: id: 704840 -'The Walking Zombie: Dead City': +"The Walking Zombie: Dead City": installDir: The walking zombie Dead city: {} launch: - /zk.exe: + "/zk.exe": - when: - bit: 64 os: windows @@ -566430,7 +567968,7 @@ The Wall (2018): installDir: The Wall: {} launch: - /The Wall.exe: + "/The Wall.exe": - when: - os: windows store: steam @@ -566440,12 +567978,12 @@ The Walsingham Files - Chapter 1: installDir: The Walsingham Files - Chapter 1: {} launch: - /nw.exe: - - arguments: '--in-process-gpu' + "/nw.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam - /nwjs.app: + "/nwjs.app": - when: - os: mac store: steam @@ -566455,11 +567993,11 @@ The Walsingham Files - Chapter 2: installDir: The Walsingham Files - Chapter 2: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam - /nwjs.app: + "/nwjs.app": - when: - os: mac store: steam @@ -566469,28 +568007,28 @@ The Wanderer: installDir: The Wanderer: {} launch: - /The Wanderer.exe: + "/The Wanderer.exe": - when: - bit: 64 os: windows store: steam steam: id: 530860 -'The Wanderer: Frankenstein’s Creature': +"The Wanderer: Frankenstein’s Creature": files: - /AppData/LocalLow/Arte/Frankenstein/gdata.bytes: + "/AppData/LocalLow/Arte/Frankenstein/gdata.bytes": tags: - save when: - os: windows installDir: - 'Frankenstein, Naissance d''un mythe': {} + "Frankenstein, Naissance d'un mythe": {} launch: - /Frankenstein.exe: + "/Frankenstein.exe": - when: - os: windows store: steam - /The Wanderer.app: + "/The Wanderer.app": - when: - os: mac store: steam @@ -566502,32 +568040,34 @@ The Wanderer: id: 966670 The Wandering Village: files: - /.config/unity3d/Stray Fawn Studio/The Wandering Village: + "/.config/unity3d/Stray Fawn Studio/The Wandering Village": tags: - config when: - os: linux - /.config/unity3d/Stray Fawn Studio/The Wandering Village/Saves: + "/.config/unity3d/Stray Fawn Studio/The Wandering Village/Saves": tags: - save when: - os: linux - /AppData/LocalLow/Stray Fawn Studio/The Wandering Village: + "/AppData/LocalLow/Stray Fawn Studio/The Wandering Village": tags: - config when: - - store: steam - /AppData/LocalLow/Stray Fawn Studio/The Wandering Village/Saves: + - os: windows + store: steam + "/AppData/LocalLow/Stray Fawn Studio/The Wandering Village/Saves": tags: - save when: - - store: steam - /Library/Application Support/com.strayfawnstudio.thewanderingvillage: + - os: windows + store: steam + "/Library/Application Support/com.strayfawnstudio.thewanderingvillage": tags: - config when: - os: mac - /Library/Application Support/com.strayfawnstudio.thewanderingvillage/Saves: + "/Library/Application Support/com.strayfawnstudio.thewanderingvillage/Saves": tags: - save when: @@ -566535,21 +568075,21 @@ The Wandering Village: installDir: The Wandering Village: {} launch: - /Linux/WanderingVillage.x86_64: + "/Linux/WanderingVillage.x86_64": - when: - bit: 64 os: linux store: steam - /Mac/WanderingVillage.app/Contents/MacOS/The Wandering Village: + "/Mac/WanderingVillage.app/Contents/MacOS/The Wandering Village": - when: - os: mac store: steam - /Windows32/WanderingVillage.exe: + "/Windows32/WanderingVillage.exe": - when: - bit: 32 os: windows store: steam - /Windows64/WanderingVillage.exe: + "/Windows64/WanderingVillage.exe": - when: - bit: 64 os: windows @@ -566559,21 +568099,21 @@ The Wandering Village: The Wanderings Dragon: steam: id: 913310 -'The War God: The Artifact': +"The War God: The Artifact": installDir: LLW: {} steam: id: 659830 -'The War of the Worlds: Andromeda': +"The War of the Worlds: Andromeda": installDir: The War of the Worlds Andromeda: {} launch: - /Andromeda.exe: + "/Andromeda.exe": - when: - bit: 64 os: windows store: steam - /Andromeda.x64: + "/Andromeda.x64": - when: - bit: 64 os: linux @@ -566584,7 +568124,7 @@ The Warden: installDir: The Warden: {} launch: - /The Warden.exe: + "/The Warden.exe": - when: - bit: 64 os: windows @@ -566595,11 +568135,11 @@ The Wardrobe: installDir: The Wardrobe: {} launch: - /The Wardrobe.app: + "/The Wardrobe.app": - when: - os: mac store: steam - /The Wardrobe.exe: + "/The Wardrobe.exe": - when: - os: windows store: steam @@ -566609,8 +568149,8 @@ The Warhorn: installDir: The Warhorn: {} launch: - /TheWarhorn.exe: - - arguments: '-fullscreen' + "/TheWarhorn.exe": + - arguments: "-fullscreen" when: - os: windows store: steam @@ -566618,17 +568158,17 @@ The Warhorn: id: 660920 The Warlock of Firetop Mountain: files: - /Documents: + "/Documents": tags: - save when: - os: windows - /.config/unity3d/Tin Man Games/The Warlock of Firetop Mountain: + "/.config/unity3d/Tin Man Games/The Warlock of Firetop Mountain": tags: - config when: - os: linux - /Warlock of Firetop Mountain Save Data: + "/Warlock of Firetop Mountain Save Data": tags: - save when: @@ -566636,21 +568176,21 @@ The Warlock of Firetop Mountain: installDir: The Warlock of Firetop Mountain: {} launch: - /The Warlock of Firetop Mountain.app: + "/The Warlock of Firetop Mountain.app": - when: - bit: 64 os: mac store: steam - /The Warlock of Firetop Mountain.exe: + "/The Warlock of Firetop Mountain.exe": - when: - os: windows store: steam - /The Warlock of Firetop Mountain.x86: + "/The Warlock of Firetop Mountain.x86": - when: - bit: 32 os: linux store: steam - /The Warlock of Firetop Mountain.x86_64: + "/The Warlock of Firetop Mountain.x86_64": - when: - bit: 64 os: linux @@ -566665,7 +568205,7 @@ The Warrior War: installDir: The Warrior War: {} launch: - /The Warrior War.exe: + "/The Warrior War.exe": - when: - os: windows store: steam @@ -566675,18 +568215,18 @@ The Warrior of Treasures: installDir: The Warrior Of Treasures: {} launch: - /Medieval.exe: + "/Medieval.exe": - when: - bit: 64 os: windows store: steam steam: id: 768060 -'The Warrior of Treasures 2: Skull Hunter': +"The Warrior of Treasures 2: Skull Hunter": installDir: The Warrior Of Treasures 2 Skull Hunter: {} launch: - /Warrior2treasures: + "/Warrior2treasures": - when: - bit: 64 os: windows @@ -566697,7 +568237,7 @@ The Warriorlock: installDir: The Warriorlock™: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -566707,7 +568247,7 @@ The Waste Land: installDir: The Waste Land: {} launch: - /TheWasteLand.exe: + "/TheWasteLand.exe": - when: - os: windows store: steam @@ -566717,22 +568257,22 @@ The Wastes: installDir: The Wastes: {} launch: - /wastes.amd64: + "/wastes.amd64": - when: - bit: 64 os: linux store: steam - /wastes.i486: + "/wastes.i486": - when: - bit: 32 os: linux store: steam - /wastes32.exe: + "/wastes32.exe": - when: - bit: 32 os: windows store: steam - /wastes64.exe: + "/wastes64.exe": - when: - bit: 64 os: windows @@ -566743,12 +568283,12 @@ The Watchers: installDir: The Watchers: {} launch: - /TheWatchers.exe: + "/TheWatchers.exe": - when: - bit: 64 os: windows store: steam - /Watchers.app/Contents/MacOS/TheWatchers: + "/Watchers.app/Contents/MacOS/TheWatchers": - when: - os: mac store: steam @@ -566756,24 +568296,24 @@ The Watchers: id: 1112830 The Watchmaker: files: - /Saves/Options.dat: + "/Saves/Options.dat": tags: - config when: - os: windows - /Saves/Wm##.sav: + "/Saves/Wm##.sav": tags: - save when: - os: windows - /Saves/WmSav##.tga: + "/Saves/WmSav##.tga": tags: - save when: - os: windows The Watchmaker (2018): files: - /AppData/Local/TheWatchmaker/Saved/SaveGames: + "/AppData/Local/TheWatchmaker/Saved/SaveGames": tags: - save when: @@ -566781,25 +568321,25 @@ The Watchmaker (2018): installDir: The Watchmaker: {} launch: - /TheWatchmaker.exe: + "/TheWatchmaker.exe": - when: - os: windows store: steam steam: id: 504430 -'The Waters Above: Prelude': +"The Waters Above: Prelude": installDir: The Waters Above Prelude: {} launch: - /twap.app: + "/twap.app": - when: - os: mac store: steam - /twap.exe: + "/twap.exe": - when: - os: windows store: steam - /twap.sh: + "/twap.sh": - when: - os: linux store: steam @@ -566809,11 +568349,11 @@ The Watson-Scott Test: installDir: WatsonScott: {} launch: - /WatsonScott.exe: + "/WatsonScott.exe": - when: - os: windows store: steam - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" when: - os: windows store: steam @@ -566821,12 +568361,12 @@ The Watson-Scott Test: id: 955060 The Way: files: - /.theway/savedata.sav: + "/.theway/savedata.sav": tags: - save when: - os: linux - /.theway/settings.pref: + "/.theway/settings.pref": tags: - config when: @@ -566836,15 +568376,15 @@ The Way: installDir: The Way: {} launch: - /TheWay: + "/TheWay": - when: - os: linux store: steam - /theway.app: + "/theway.app": - when: - os: mac store: steam - /theway.exe: + "/theway.exe": - when: - os: windows store: steam @@ -566854,15 +568394,15 @@ The Way We All Go: installDir: The Way We All Go: {} launch: - /The way we all go.app/Contents/MacOS/The way we all go: + "/The way we all go.app/Contents/MacOS/The way we all go": - when: - os: mac store: steam - /The way we all go.exe: + "/The way we all go.exe": - when: - os: windows store: steam - /The way we all go.sh: + "/The way we all go.sh": - when: - os: linux store: steam @@ -566872,21 +568412,21 @@ The Way of Cinnamon: installDir: The Way of Cinnamon: {} launch: - /TWoC.exe: + "/TWoC.exe": - when: - bit: 64 os: windows store: steam steam: id: 1107130 -'The Way of Kings: Escape the Shattered Plains': +"The Way of Kings: Escape the Shattered Plains": installDir: The Way of Kings Escape the Shattered Plains!: {} steam: id: 773770 The Way of Life: files: - /AppData/LocalLow/CyberCoconut: + "/AppData/LocalLow/CyberCoconut": tags: - save when: @@ -566894,52 +568434,55 @@ The Way of Life: installDir: The Way of Life: {} launch: - /TheWayOfLifeDemoLinux.x86_64.X86_64: + "/TheWayOfLifeDemoLinux.x86_64.X86_64": - when: - bit: 64 os: linux store: steam - /TheWayOfLifeDemoLinux.x86_64.x86: + "/TheWayOfLifeDemoLinux.x86_64.x86": - when: - bit: 32 os: linux store: steam - /TheWayOfLifeDemoMac.app: + "/TheWayOfLifeDemoMac.app": - when: - os: mac store: steam - /TheWayOfLifeDemoWindows.exe: + "/TheWayOfLifeDemoWindows.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam steam: id: 310370 -'The Way of Life: Definitive Edition': +"The Way of Life: Definitive Edition": installDir: The Way of Life DEFINITIVE EDITION: {} launch: - /The Way Of Life DEFINITIVE EDITION.exe: + "/The Way Of Life DEFINITIVE EDITION.exe": - when: - bit: 64 os: windows store: steam - /The Way of Life DEFINITIVE EDITION.app: + "/The Way of Life DEFINITIVE EDITION.app": - when: - os: mac store: steam - /The Way of Life DEFINITIVE EDITION.x86_64: + "/The Way of Life DEFINITIVE EDITION.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 404960 -'The Way of Love: Sub Zero': +"The Way of Love: Sub Zero": installDir: The Way Of Love Sub Zero: {} launch: - /TheWayOfLoveSubZero.exe: + "/TheWayOfLoveSubZero.exe": - when: - store: steam steam: @@ -566951,7 +568494,7 @@ The Way of Wrath: id: 969330 The Way of the Pixelated Fist: files: - /The_Way_of_the_Pixelated_Fist/saves: + "/The_Way_of_the_Pixelated_Fist/saves": tags: - save when: @@ -566959,7 +568502,7 @@ The Way of the Pixelated Fist: installDir: The Way of the Pixelated Fist: {} launch: - /The Way of the Pixelated Fist.exe: + "/The Way of the Pixelated Fist.exe": - when: - os: windows store: steam @@ -566969,7 +568512,7 @@ The Way to Defeat the Archfiend: installDir: defeat_devil: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -566977,12 +568520,12 @@ The Way to Defeat the Archfiend: id: 782180 The Waylanders: files: - /Waylanders/Saved/Config/WindowsNoEditor: + "/Waylanders/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /Waylanders/Saved/SaveGames: + "/Waylanders/Saved/SaveGames": tags: - save when: @@ -566992,7 +568535,7 @@ The Waylanders: installDir: THE WAYLANDERS: {} launch: - /Waylanders.exe: + "/Waylanders.exe": - when: - bit: 64 os: windows @@ -567001,13 +568544,13 @@ The Waylanders: id: 957710 The Weaponographist: files: - /WeaponographistSaves: + "/WeaponographistSaves": tags: - config - save when: - os: mac - /WeaponographistSaves: + "/WeaponographistSaves": tags: - config - save @@ -567016,22 +568559,22 @@ The Weaponographist: installDir: Weaponographist: {} launch: - /Weaponographist.app: + "/Weaponographist.app": - when: - os: mac store: steam - /Weaponographist/Weaponographist.exe: + "/Weaponographist/Weaponographist.exe": - when: - os: windows store: steam - workingDir: /Weaponographist + workingDir: "/Weaponographist" steam: id: 329240 The Wendigo: installDir: The Wendigo: {} launch: - /TheWendigo.exe: + "/TheWendigo.exe": - when: - bit: 64 os: windows @@ -567042,15 +568585,15 @@ The Werewolf Hills: installDir: The Werewolf Hills: {} launch: - /The Werewolf Hills.app: + "/The Werewolf Hills.app": - when: - os: mac store: steam - /The Werewolf Hills.exe: + "/The Werewolf Hills.exe": - when: - os: windows store: steam - /The Werewolf Hills.x86_64: + "/The Werewolf Hills.x86_64": - when: - os: linux store: steam @@ -567060,7 +568603,7 @@ The West: installDir: The West: {} launch: - /TheWest.exe: + "/TheWest.exe": - when: - os: windows store: steam @@ -567077,16 +568620,19 @@ The Westport Independent: installDir: The Westport Independent: {} launch: - /the_westport_independent: + "/the_westport_independent": - when: - bit: 32 os: linux store: steam - /the_westport_independent.app: + - bit: 64 + os: linux + store: steam + "/the_westport_independent.app": - when: - os: mac store: steam - /the_westport_independent.exe: + "/the_westport_independent.exe": - when: - os: windows store: steam @@ -567094,17 +568640,17 @@ The Westport Independent: id: 352240 The Wheel of Fortune: files: - /game/saves/persistent: + "/game/saves/persistent": tags: - config when: - os: windows - /renpy/TheWheelofFortune-1500377632/*.save: + "/renpy/TheWheelofFortune-1500377632/*.save": tags: - save when: - os: windows - /renpy/TheWheelofFortune-1500377632/persistent: + "/renpy/TheWheelofFortune-1500377632/persistent": tags: - config when: @@ -567112,20 +568658,20 @@ The Wheel of Fortune: installDir: The Wheel of Fortune: {} launch: - /The_Wheel_of_Fortune-32.exe: + "/The_Wheel_of_Fortune-32.exe": - when: - bit: 32 os: windows store: steam - /The_Wheel_of_Fortune.app/Contents/MacOS/The_Wheel_of_Fortune: + "/The_Wheel_of_Fortune.app/Contents/MacOS/The_Wheel_of_Fortune": - when: - os: mac store: steam - /The_Wheel_of_Fortune.exe: + "/The_Wheel_of_Fortune.exe": - when: - os: windows store: steam - /The_Wheel_of_Fortune.sh: + "/The_Wheel_of_Fortune.sh": - when: - os: linux store: steam @@ -567133,12 +568679,12 @@ The Wheel of Fortune: id: 1810230 The Wheel of Time: files: - /Save: + "/Save": tags: - save when: - os: windows - /System/WoT.ini: + "/System/WoT.ini": tags: - config when: @@ -567147,32 +568693,32 @@ The Wheel of Time: id: 1584652180 The Whispered World: files: - /Library/Application Support/Daedalic Entertainment GmbH/The Whispered World Special Edition/Savegames: + "/Library/Application Support/Daedalic Entertainment GmbH/The Whispered World Special Edition/Savegames": tags: - save when: - os: mac - /Library/Application Support/Daedalic Entertainment GmbH/The Whispered World Special Edition/config.ini: + "/Library/Application Support/Daedalic Entertainment GmbH/The Whispered World Special Edition/config.ini": tags: - config when: - os: mac - /Daedalic Entertainment GmbH/The Whispered World Special Edition/Savegames: + "/Daedalic Entertainment GmbH/The Whispered World Special Edition/Savegames": tags: - save when: - os: windows - /Daedalic Entertainment GmbH/The Whispered World Special Edition/config.ini: + "/Daedalic Entertainment GmbH/The Whispered World Special Edition/config.ini": tags: - config when: - os: windows - /Daedalic Entertainment GmbH/The Whispered World Special Edition/Savegames: + "/Daedalic Entertainment GmbH/The Whispered World Special Edition/Savegames": tags: - save when: - os: linux - /Daedalic Entertainment GmbH/The Whispered World Special Edition/config.ini: + "/Daedalic Entertainment GmbH/The Whispered World Special Edition/config.ini": tags: - config when: @@ -567182,33 +568728,33 @@ The Whispered World: installDir: The Whispered World Special Edition: {} launch: - /TWWSE.app: + "/TWWSE.app": - when: - bit: 64 os: mac store: steam - /VisionaireConfigurationTool.exe: + "/VisionaireConfigurationTool.exe": - when: - os: windows store: steam - /open_bonus_lin.sh: + "/open_bonus_lin.sh": - when: - os: linux store: steam - /open_bonus_osx.sh: + "/open_bonus_osx.sh": - when: - os: mac store: steam - /open_bonus_win.bat: + "/open_bonus_win.bat": - when: - os: windows store: steam - /start: + "/start": - when: - bit: 64 os: linux store: steam - /twwse.exe: + "/twwse.exe": - when: - os: windows store: steam @@ -567216,12 +568762,12 @@ The Whispered World: id: 268540 The Whisperer: files: - /AppData/LocalLow/Studio Chien d'Or/The Whisperer/data/ini.es3: + "/AppData/LocalLow/Studio Chien d'Or/The Whisperer/data/ini.es3": tags: - config when: - os: windows - /AppData/LocalLow/Studio Chien d'Or/The Whisperer/data/save.es3: + "/AppData/LocalLow/Studio Chien d'Or/The Whisperer/data/save.es3": tags: - save when: @@ -567231,16 +568777,16 @@ The Whisperer: installDir: The Whisperer: {} launch: - /Contents/MacOS/The Whisperer: + "/Contents/MacOS/The Whisperer": - when: - os: mac store: steam - /The Whisperer.exe: + "/The Whisperer.exe": - when: - os: windows store: steam registry: - HKEY_CURRENT_USER/Software/Studio Chien d'Or/The Whisperer: + "HKEY_CURRENT_USER/Software/Studio Chien d'Or/The Whisperer": tags: - config steam: @@ -567249,16 +568795,16 @@ The Whisperer in Darkness: installDir: The Whisperer in Darkness: {} launch: - /The Whisperer in Darkness.app: + "/The Whisperer in Darkness.app": - when: - os: mac store: steam - /Whisperer: + "/Whisperer": - arguments: log when: - os: linux store: steam - /Whisperer.exe: + "/Whisperer.exe": - arguments: log when: - os: windows @@ -567271,11 +568817,11 @@ The Whispering Valley: installDir: The Whispering Valley: {} launch: - /Contents/MacOS/The Whispering Valley: + "/Contents/MacOS/The Whispering Valley": - when: - os: mac store: steam - /The Whispering Valley.exe: + "/The Whispering Valley.exe": - when: - os: windows store: steam @@ -567283,7 +568829,7 @@ The Whispering Valley: id: 1512390 The White Chamber: files: - /saves: + "/saves": tags: - save when: @@ -567291,7 +568837,7 @@ The White Chamber: installDir: the white chamber: {} launch: - /game.exe: + "/game.exe": - when: - store: steam registry: @@ -567302,12 +568848,12 @@ The White Chamber: id: 299080 The White Door: files: - /Rusty Lake/TheWhiteDoor: + "/Rusty Lake/TheWhiteDoor": tags: - config when: - os: windows - /Rusty Lake/TheWhiteDoor/saveGame.sav: + "/Rusty Lake/TheWhiteDoor/saveGame.sav": tags: - save when: @@ -567317,11 +568863,11 @@ The White Door: installDir: The White Door: {} launch: - /TheWhiteDoor.app: + "/TheWhiteDoor.app": - when: - os: mac store: steam - /TheWhiteDoor.exe: + "/TheWhiteDoor.exe": - when: - os: windows store: steam @@ -567331,21 +568877,21 @@ The White Laboratory: installDir: TheWhiteLaboratory: {} launch: - /TheWhiteLaboratory_x64.exe: + "/TheWhiteLaboratory_x64.exe": - when: - bit: 64 os: windows store: steam - /TheWhiteLaboratory_x86.exe: + "/TheWhiteLaboratory_x86.exe": - when: - bit: 32 os: windows store: steam steam: id: 235520 -'The Wiggles: Wiggle Bay': +"The Wiggles: Wiggle Bay": files: - /WiggleBay.ini: + "/WiggleBay.ini": tags: - config when: @@ -567354,7 +568900,7 @@ The Wild Age: installDir: The Wild Age: {} launch: - /thewildage.exe: + "/thewildage.exe": - when: - bit: 64 os: windows @@ -567365,15 +568911,15 @@ The Wild Case: installDir: The Wild Case: {} launch: - /The Wild Case.app: + "/The Wild Case.app": - when: - os: mac store: steam - /The Wild Case.exe: + "/The Wild Case.exe": - when: - os: windows store: steam - /The Wild Case.x86_64: + "/The Wild Case.x86_64": - when: - bit: 64 os: linux @@ -567382,7 +568928,7 @@ The Wild Case: id: 1178230 The Wild Eight: files: - /TheWildEight: + "/TheWildEight": tags: - save when: @@ -567390,11 +568936,11 @@ The Wild Eight: installDir: The Wild Eight: {} launch: - /wildeight.app: + "/wildeight.app": - when: - os: mac store: steam - /wildeight.exe: + "/wildeight.exe": - when: - os: windows store: steam @@ -567406,15 +568952,16 @@ The Wild Eight: id: 526160 The Wild Eternal: files: - /My Games/The Wild Eternal/.saves: + "/My Games/The Wild Eternal/.saves": tags: - save when: - - store: steam + - os: windows + store: steam installDir: The Wild Eternal: {} launch: - /the_wild_eternal_win32.exe: + "/the_wild_eternal_win32.exe": - when: - os: windows store: steam @@ -567422,12 +568969,12 @@ The Wild Eternal: id: 554810 The Wild at Heart: files: - /AppData/LocalLow/Moonlight Kids/The Wild At Heart: + "/AppData/LocalLow/Moonlight Kids/The Wild At Heart": tags: - save when: - os: windows - /Library/Application Support/Moonlight Kids/The Wild At Heart: + "/Library/Application Support/Moonlight Kids/The Wild At Heart": tags: - save when: @@ -567437,11 +568984,11 @@ The Wild at Heart: installDir: The Wild at Heart: {} launch: - /The Wild at Heart.app/Contents/MacOS/The Wild at Heart: + "/The Wild at Heart.app/Contents/MacOS/The Wild at Heart": - when: - os: mac store: steam - /The Wild at Heart.exe: + "/The Wild at Heart.exe": - when: - os: windows store: steam @@ -567451,7 +568998,7 @@ The Will of a Single Tale: installDir: 【SCP】器関ノ彷徨 -The will of a single Tale-【DEMOver.】: {} launch: - /kikan no kanata.exe: + "/kikan no kanata.exe": - when: - os: windows store: steam @@ -567461,15 +569008,15 @@ The Wilting Amaranth: installDir: The Wilting Amaranth: {} launch: - /TheWiltingAmaranth.app: + "/TheWiltingAmaranth.app": - when: - os: mac store: steam - /TheWiltingAmaranth.exe: + "/TheWiltingAmaranth.exe": - when: - os: windows store: steam - /TheWiltingAmaranth.sh: + "/TheWiltingAmaranth.sh": - when: - os: linux store: steam @@ -567479,11 +569026,11 @@ The Wind and Wilting Blossom: installDir: The Wind and Wilting Blossom: {} launch: - /The Wind and Wilting Blossom.app: + "/The Wind and Wilting Blossom.app": - when: - os: mac store: steam - /The Wind and Wilting Blossom.exe: + "/The Wind and Wilting Blossom.exe": - when: - os: windows store: steam @@ -567493,11 +569040,11 @@ The Window Box: installDir: The Window Box: {} launch: - /TWB_Windows1.6.1.exe: + "/TWB_Windows1.6.1.exe": - when: - os: windows store: steam - /The Window Box.app: + "/The Window Box.app": - when: - os: mac store: steam @@ -567508,11 +569055,11 @@ The Window Box: - save steam: id: 950850 -The Winter's Deal - Frosty Edition: +"The Winter's Deal - Frosty Edition": installDir: - The Winter's Deal - Frosty Edition: {} + "The Winter's Deal - Frosty Edition": {} launch: - /nw.exe: + "/nw.exe": - when: - bit: 64 os: windows @@ -567533,11 +569080,11 @@ The Wisbey Mystery: installDir: The Wisbey Mystery: {} launch: - /The Wisbey Mystery.app: + "/The Wisbey Mystery.app": - when: - os: mac store: steam - /WisbeyMystery.exe: + "/WisbeyMystery.exe": - when: - os: windows store: steam @@ -567547,19 +569094,19 @@ The Witch & the 66 Mushrooms: installDir: Witch & 66 Mushrooms: {} launch: - /player.exe: + "/player.exe": - when: - store: steam steam: id: 891170 -The Witch's House MV: +"The Witch's House MV": files: - /save/config.rpgsave: + "/save/config.rpgsave": tags: - config when: - os: windows - /save/save*.rpgsave: + "/save/save*.rpgsave": tags: - save when: @@ -567567,36 +569114,36 @@ The Witch's House MV: gog: id: 1813215380 installDir: - The Witch's House MV: {} + "The Witch's House MV": {} launch: - /Game.app: + "/Game.app": - when: - os: mac store: steam - /game.exe: + "/game.exe": - when: - os: windows store: steam steam: id: 885810 -The Witch's Isle: +"The Witch's Isle": installDir: TheWitchsIsle: {} launch: - /Noma.app: + "/Noma.app": - when: - os: mac store: steam - /Noma.exe: + "/Noma.exe": - when: - bit: 64 os: windows store: steam steam: id: 701860 -The Witch's Love Diary: +"The Witch's Love Diary": files: - /save: + "/save": tags: - save when: @@ -567604,23 +569151,23 @@ The Witch's Love Diary: gog: id: 1868296162 installDir: - The Witch's Love Diary: {} + "The Witch's Love Diary": {} The Witch’s Love Diary: {} launch: - /The Witch's Love Diary.exe: + "/The Witch's Love Diary.exe": - when: - store: steam steam: id: 972160 -The Witch's Yarn: +"The Witch's Yarn": installDir: - The Witch's Yarn: {} + "The Witch's Yarn": {} launch: - /the witchs yarn.app: + "/the witchs yarn.app": - when: - os: mac store: steam - /witchsYarn.exe: + "/witchsYarn.exe": - when: - os: windows store: steam @@ -567630,7 +569177,7 @@ The Witchcraft of Skysword - 天翔と剣のウィッチクラフト: installDir: the_witchcraft_of_skysword: {} launch: - /witchcraft-of-skysword.exe: + "/witchcraft-of-skysword.exe": - when: - bit: 64 os: windows @@ -567639,12 +569186,12 @@ The Witchcraft of Skysword - 天翔と剣のウィッチクラフト: id: 1031850 The Witcher: files: - /Library/Application Support/com.cdprojektred.TheWitcher/GameDocuments/The Witcher/saves: + "/Library/Application Support/com.cdprojektred.TheWitcher/GameDocuments/The Witcher/saves": tags: - save when: - os: mac - /The Witcher/saves: + "/The Witcher/saves": tags: - save when: @@ -567657,19 +569204,19 @@ The Witcher: installDir: The Witcher Enhanced Edition: {} launch: - /Digital Comic/DigitalComic.exe: + "/Digital Comic/DigitalComic.exe": - when: - os: windows store: steam - /The Witcher.app: + "/The Witcher.app": - when: - os: mac store: steam - /system/djinni!.exe: + "/system/djinni!.exe": - when: - os: windows store: steam - /system/witcher.exe: + "/system/witcher.exe": - when: - os: windows store: steam @@ -567679,39 +569226,39 @@ The Witcher: - config steam: id: 20900 -'The Witcher 2: Assassins of Kings': +"The Witcher 2: Assassins of Kings": files: - /Library/Application Support/com.vpltd.TheWitcher2/GameDocuments/Witcher 2/config: + "/Library/Application Support/com.vpltd.TheWitcher2/GameDocuments/Witcher 2/config": tags: - config when: - os: mac - /Library/Application Support/com.vpltd.TheWitcher2/GameDocuments/Witcher 2/gamesaves: + "/Library/Application Support/com.vpltd.TheWitcher2/GameDocuments/Witcher 2/gamesaves": tags: - save when: - os: mac - /userdata//20920/remote: + "/userdata//20920/remote": tags: - save when: - store: steam - /Witcher 2/Config: + "/Witcher 2/Config": tags: - config when: - os: windows - /Witcher 2/gamesaves: + "/Witcher 2/gamesaves": tags: - save when: - os: windows - /cdprojektred/witcher2/GameDocuments/Witcher 2/config: + "/cdprojektred/witcher2/GameDocuments/Witcher 2/config": tags: - config when: - os: linux - /cdprojektred/witcher2/GameDocuments/Witcher 2/gamesaves: + "/cdprojektred/witcher2/GameDocuments/Witcher 2/gamesaves": tags: - save when: @@ -567721,28 +569268,28 @@ The Witcher: installDir: the witcher 2: {} launch: - /The Witcher 2.app: + "/The Witcher 2.app": - when: - os: mac store: steam - /launcher: + "/launcher": - when: - os: linux store: steam - /launcher.exe: + "/launcher.exe": - when: - os: windows store: steam steam: id: 20920 -'The Witcher 3: Wild Hunt': +"The Witcher 3: Wild Hunt": files: - /The Witcher 3: + "/The Witcher 3": tags: - config when: - os: windows - /The Witcher 3/gamesaves: + "/The Witcher 3/gamesaves": tags: - save when: @@ -567751,28 +569298,28 @@ The Witcher: id: 1495134320 id: gogExtra: - - 1207664663 - 1207664643 + - 1207664663 - 1427195509 - - 1441620909 - - 1441355562 - 1427206931 + - 1430743168 + - 1441355562 + - 1441620909 - 1636895344 - 1640424747 - - 1430743168 steamExtra: - 355880 - - 499450 - 378648 + - 499450 installDir: The Witcher 3: {} launch: - /bin/x64/witcher3.exe: + "/bin/x64/witcher3.exe": - when: - bit: 64 os: windows store: steam - workingDir: /bin/x64 + workingDir: "/bin/x64" steam: id: 292030 The Witcher Adventure Game: @@ -567781,11 +569328,11 @@ The Witcher Adventure Game: installDir: The Witcher Adventure Game: {} launch: - /TheWitcherAdventureGame.app: + "/TheWitcherAdventureGame.app": - when: - os: mac store: steam - /TheWitcherAdventureGame.exe: + "/TheWitcherAdventureGame.exe": - when: - os: windows store: steam @@ -567798,11 +569345,11 @@ The Witcher Adventure Game: - config steam: id: 303800 -The Witches' Tea Party: +"The Witches' Tea Party": installDir: - The Witches' Tea Party: {} + "The Witches' Tea Party": {} launch: - /Tea Party.exe: + "/Tea Party.exe": - when: - os: windows store: steam @@ -567812,7 +569359,7 @@ The Withering: installDir: The Withering: {} launch: - /TheWithering.exe: + "/TheWithering.exe": - when: - bit: 64 os: windows @@ -567821,32 +569368,32 @@ The Withering: id: 427950 The Witness: files: - /The Witness.app/Contents/Resources/data/Local.variables: + "/The Witness.app/Contents/Resources/data/Local.variables": tags: - config when: - os: mac - /data/Local.variables: + "/data/Local.variables": tags: - config when: - os: windows - /Library/Application Support/The Witness: + "/Library/Application Support/The Witness": tags: - save when: - os: mac - /Library/Application Support/The Witness/Launcher.variables: + "/Library/Application Support/The Witness/Launcher.variables": tags: - config when: - os: mac - /The Witness: + "/The Witness": tags: - save when: - os: windows - /The Witness/Launcher.variables: + "/The Witness/Launcher.variables": tags: - config when: @@ -567856,11 +569403,11 @@ The Witness: installDir: The Witness: {} launch: - /The Witness.app: + "/The Witness.app": - when: - os: mac store: steam - /witness_d3d11.exe: + "/witness_d3d11.exe": - when: - os: windows store: steam @@ -567872,45 +569419,45 @@ The Wizard and the Slug: installDir: The Wizard and The Slug: {} launch: - /wizlug.exe: + "/wizlug.exe": - when: - os: windows store: steam steam: id: 1271170 -The Wizard's Lair: +"The Wizard's Lair": installDir: - The Wizard's Lair: {} + "The Wizard's Lair": {} launch: - /twl: + "/twl": - when: - os: linux store: steam - /twl.exe: + "/twl.exe": - when: - os: windows store: steam steam: id: 507360 -The Wizard's Pen: +"The Wizard's Pen": installDir: The Wizards Pen: {} launch: - /wizardspen.exe: - - arguments: ' ' + "/wizardspen.exe": + - arguments: " " when: - store: steam steam: id: 3580 -The Wizard's Tower: +"The Wizard's Tower": installDir: - The Wizard's Tower: {} + "The Wizard's Tower": {} launch: - /TWT.app/Contents/MacOS/TWTMac: + "/TWT.app/Contents/MacOS/TWTMac": - when: - os: mac store: steam - /TWT.exe: + "/TWT.exe": - when: - os: windows store: steam @@ -567930,15 +569477,15 @@ The Wizards Who Fell in a Hole: installDir: The Wizards Who Fell In A Hole: {} launch: - /The Wizards Who Fell In A Hole/The Wizards Who Fell In A Hole.app: + "/The Wizards Who Fell In A Hole/The Wizards Who Fell In A Hole.app": - when: - os: mac store: steam - /The Wizards Who Fell In A Hole/The Wizards Who Fell In A Hole.exe: + "/The Wizards Who Fell In A Hole/The Wizards Who Fell In A Hole.exe": - when: - os: windows store: steam - /The Wizards Who Fell In A Hole/The Wizards Who Fell In A Hole.x86_64: + "/The Wizards Who Fell In A Hole/The Wizards Who Fell In A Hole.x86_64": - when: - os: linux store: steam @@ -567946,13 +569493,13 @@ The Wizards Who Fell in a Hole: id: 562680 The Wolf Among Us: files: - /Library/Application Support/Telltale Games/TheWolfAmongUs: + "/Library/Application Support/Telltale Games/TheWolfAmongUs": tags: - config - save when: - os: mac - /Telltale Games/TheWolfAmongUs: + "/Telltale Games/TheWolfAmongUs": tags: - config - save @@ -567963,39 +569510,39 @@ The Wolf Among Us: installDir: The Wolf Among Us: {} launch: - /The Wolf Among Us.app: + "/The Wolf Among Us.app": - when: - os: mac store: steam - /TheWolfAmongUs.exe: + "/TheWolfAmongUs.exe": - when: - os: windows store: steam steam: id: 250320 -The Wolf's Bite: +"The Wolf's Bite": files: - '/Eric Bernier, David Coughlin, Karen Teixeira, Fat Bard/WolfsBite': + "/Eric Bernier, David Coughlin, Karen Teixeira, Fat Bard/WolfsBite": tags: - save when: - os: windows installDir: - The Wolf's Bite: {} + "The Wolf's Bite": {} launch: - /WolfsBite.app/Contents/MacOS/WolfsBite: + "/WolfsBite.app/Contents/MacOS/WolfsBite": - when: - os: mac store: steam - /WolfsBite.exe: + "/WolfsBite.exe": - when: - os: windows store: steam steam: id: 656040 -'The Wonderful 101: Remastered': +"The Wonderful 101: Remastered": files: - /My Games/TheWonderful101: + "/My Games/TheWonderful101": tags: - config - save @@ -568004,7 +569551,7 @@ The Wolf's Bite: installDir: The Wonderful 101 Remastered: {} launch: - /exe/TheWonderful101.exe: + "/exe/TheWonderful101.exe": - when: - os: windows store: steam @@ -568012,7 +569559,7 @@ The Wolf's Bite: id: 1190400 The Wonderful End of the World: files: - /The Wonderful End of the World/prefs.dat: + "/The Wonderful End of the World/prefs.dat": tags: - config - save @@ -568021,7 +569568,7 @@ The Wonderful End of the World: installDir: The Wonderful End of the World: {} launch: - /main.exe: + "/main.exe": - when: - store: steam steam: @@ -568030,14 +569577,14 @@ The Woods: installDir: The Woods: {} launch: - /TheWoods.exe: + "/TheWoods.exe": - when: - bit: 64 os: windows store: steam steam: id: 792670 -'The Woods: VR Escape the Room': +"The Woods: VR Escape the Room": installDir: The Woods VR Escape the Room: {} steam: @@ -568046,11 +569593,11 @@ The Word Is Not the Thing: installDir: The Word Is Not The Thing: {} launch: - /The Word Is Not The Thing.app: + "/The Word Is Not The Thing.app": - when: - os: mac store: steam - /The Word Is Not The Thing.exe: + "/The Word Is Not The Thing.exe": - when: - os: windows store: steam @@ -568060,34 +569607,34 @@ The Works of Mercy: installDir: The Works of Mercy: {} launch: - /TheWorksOfMercy/Binaries/Win64/TheWorksOfMercy-Win64-Shipping.exe: + "/TheWorksOfMercy/Binaries/Win64/TheWorksOfMercy-Win64-Shipping.exe": - when: - os: windows store: steam steam: id: 523640 -'The World 3: Rise of Demon': +"The World 3: Rise of Demon": steam: id: 563730 -'The World II: Hunting Boss': +"The World II: Hunting Boss": installDir: The World II: {} launch: - /World2.exe: + "/World2.exe": - when: - os: windows store: steam - /world2_mac.app: + "/world2_mac.app": - when: - os: mac store: steam steam: id: 323240 -The World Is Ruled According to Sexual Prowess So I'm Playing Dirty to Get My Harem Episode 1: +"The World Is Ruled According to Sexual Prowess So I'm Playing Dirty to Get My Harem Episode 1": installDir: sexualprowess: {} launch: - /ExHIBIT.exe: + "/ExHIBIT.exe": - when: - os: windows store: steam @@ -568097,11 +569644,11 @@ The World Named Fred: installDir: The World Named Fred: {} launch: - /The World Named Fred.app: + "/The World Named Fred.app": - when: - os: mac store: steam - /The World Named Fred.exe: + "/The World Named Fred.exe": - when: - os: windows store: steam @@ -568109,7 +569656,7 @@ The World Named Fred: id: 352030 The World Next Door: files: - /AppData/LocalLow/RoseCityGames/TheWorldNextDoor: + "/AppData/LocalLow/RoseCityGames/TheWorldNextDoor": tags: - save when: @@ -568119,11 +569666,11 @@ The World Next Door: installDir: The World Next Door: {} launch: - /TheWorldNextDoor.app: + "/TheWorldNextDoor.app": - when: - os: mac store: steam - /TheWorldNextDoor.exe: + "/TheWorldNextDoor.exe": - when: - os: windows store: steam @@ -568137,23 +569684,23 @@ The World is Your Weapon: installDir: weapon_steam: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam steam: id: 1056490 -'The World of Labyrinths: Labyronia': +"The World of Labyrinths: Labyronia": installDir: The World of Labyrinths Labyronia: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam steam: id: 864740 -'The World of Legend VR: Episode 1': +"The World of Legend VR: Episode 1": installDir: The World of Legend VR: {} steam: @@ -568162,7 +569709,7 @@ The Worm: installDir: The Worm: {} launch: - /the_worm.exe: + "/the_worm.exe": - when: - store: steam steam: @@ -568174,17 +569721,17 @@ The Wranglers: installDir: The Wranglers: {} launch: - /The_Wranglers.exe: + "/The_Wranglers.exe": - when: - os: windows store: steam steam: id: 817600 -'The Writer: A Change of Identity': +"The Writer: A Change of Identity": installDir: THE WRITER A CHANGE OF IDENTITY: {} launch: - /The Writer.exe: + "/The Writer.exe": - when: - os: windows store: steam @@ -568192,7 +569739,7 @@ The Wranglers: id: 533770 The X-Files Game: files: - /*.x: + "/*.x": tags: - save when: @@ -568203,7 +569750,7 @@ The X-Files Game: - config The Yawhg: files: - /settings.ini: + "/settings.ini": tags: - config when: @@ -568211,7 +569758,7 @@ The Yawhg: installDir: The Yawhg: {} launch: - /the yawhg.exe: + "/the yawhg.exe": - when: - os: windows store: steam @@ -568221,16 +569768,16 @@ The Yellow King: installDir: TheYellowKing: {} launch: - /TheYellowKing.exe: + "/TheYellowKing.exe": - when: - os: windows store: steam - /TheYellowKing.x86_64: + "/TheYellowKing.x86_64": - when: - bit: 64 os: linux store: steam - /YellowKing-Mac.app: + "/YellowKing-Mac.app": - when: - os: mac store: steam @@ -568240,7 +569787,7 @@ The Yellow Ladder: installDir: The Yellow Ladder: {} launch: - /theyellowladder_executable.exe: + "/theyellowladder_executable.exe": - when: - bit: 64 os: windows @@ -568251,11 +569798,11 @@ The Yellow Quiz: installDir: The Yellow Quiz: {} launch: - /Contents/MacOS/The Yellow Quiz: + "/Contents/MacOS/The Yellow Quiz": - when: - os: mac store: steam - /The Yellow Quiz.exe: + "/The Yellow Quiz.exe": - when: - bit: 64 os: windows @@ -568264,7 +569811,7 @@ The Yellow Quiz: id: 966760 The You Testament: files: - /Options.dat: + "/Options.dat": tags: - config when: @@ -568273,17 +569820,17 @@ The Youthdrainers: installDir: The Youthdrainers content: {} launch: - /The_youthdrainers_1.0.exe: + "/The_youthdrainers_1.0.exe": - when: - os: windows store: steam steam: id: 393230 -'The Z Axis: Continuum': +"The Z Axis: Continuum": installDir: The Z Axis Continuum: {} launch: - /TheZAxisContinuum.exe: + "/TheZAxisContinuum.exe": - when: - os: windows store: steam @@ -568295,15 +569842,15 @@ The Zachtronics Solitaire Collection: installDir: The Zachtronics Solitaire Collection: {} launch: - /The Zachtronics Solitaire Collection.app/Contents/MacOS/TheZachtronicsSolitaireCollection: + "/The Zachtronics Solitaire Collection.app/Contents/MacOS/TheZachtronicsSolitaireCollection": - when: - os: mac store: steam - /The Zachtronics Solitaire Collection.exe: + "/The Zachtronics Solitaire Collection.exe": - when: - os: windows store: steam - /TheZachtronicsSolitaireCollection: + "/TheZachtronicsSolitaireCollection": - when: - os: linux store: steam @@ -568317,12 +569864,12 @@ The Zeta Orbital: id: 1185930 The Zodiac Trial: files: - /RenPy/TheNewImprovedZodiacTrial-1597461491/*.save: + "/RenPy/TheNewImprovedZodiacTrial-1597461491/*.save": tags: - save when: - os: windows - /renpy/TheNewImprovedZodiacTrial-1597461491/persistent: + "/renpy/TheNewImprovedZodiacTrial-1597461491/persistent": tags: - config when: @@ -568330,11 +569877,11 @@ The Zodiac Trial: installDir: The Zodiac Trial: {} launch: - /TheNewImprovedZodiacTrial.app: + "/TheNewImprovedZodiacTrial.app": - when: - os: mac store: steam - /TheNewImprovedZodiacTrial.exe: + "/TheNewImprovedZodiacTrial.exe": - when: - os: windows store: steam @@ -568344,7 +569891,7 @@ The Zombie Killing Cyborg: installDir: TheZombieKillingCyborg: {} launch: - /TheZombieKillingCyborg/The Zombie Killing Cyborg.exe: + "/TheZombieKillingCyborg/The Zombie Killing Cyborg.exe": - when: - os: windows store: steam @@ -568354,7 +569901,7 @@ The Zombiest Adventures in the Perverted Age of Enlightenment with a Pinch of Wo installDir: The Zombiest Times: {} launch: - /zombiest.exe: + "/zombiest.exe": - when: - store: steam steam: @@ -568363,11 +569910,11 @@ The Zwuggels - A Beach Holiday Adventure for Kids: installDir: Zwuggels - Beach Holidays: {} launch: - /zwuggels.app/Contents/MacOS/zwuggels: + "/zwuggels.app/Contents/MacOS/zwuggels": - when: - os: mac store: steam - /zwuggels_beach_holidays.exe: + "/zwuggels_beach_holidays.exe": - when: - os: windows store: steam @@ -568385,23 +569932,23 @@ The detective ChuLin: installDir: The detective ChuLin: {} launch: - /The detective ChuLin.exe: + "/The detective ChuLin.exe": - when: - os: windows store: steam steam: id: 941330 -'The diary of the cheating young married woman, Yuka.': +"The diary of the cheating young married woman, Yuka.": steam: id: 1154700 The earth is a better person than me: files: - /game/saves/*.save: + "/game/saves/*.save": tags: - save when: - os: windows - /renpy/config.py: + "/renpy/config.py": tags: - config when: @@ -568409,11 +569956,11 @@ The earth is a better person than me: installDir: the earth is a better person than me: {} launch: - /theearthisabetterpersonthanme.app: + "/theearthisabetterpersonthanme.app": - when: - os: mac store: steam - /theearthisabetterpersonthanme.exe: + "/theearthisabetterpersonthanme.exe": - when: - os: windows store: steam @@ -568423,7 +569970,7 @@ The explorer of night: installDir: The explorer of night: {} launch: - /the_explorer_of_night.exe: + "/the_explorer_of_night.exe": - when: - os: windows store: steam @@ -568433,11 +569980,11 @@ The fairytale of DEATH: installDir: the fairytale of DEATH: {} launch: - /theTale.app/Contents/MacOS/theTale: + "/theTale.app/Contents/MacOS/theTale": - when: - os: mac store: steam - /theTale.exe: + "/theTale.exe": - when: - os: windows store: steam @@ -568447,7 +569994,7 @@ The fall of gods: installDir: TheFallOfGods2_1_0_0_0: {} launch: - /TheFallOfGods2.exe: + "/TheFallOfGods2.exe": - when: - os: windows store: steam @@ -568457,7 +570004,7 @@ The inside of a drawer: installDir: 20.01.06: {} launch: - /shadow.exe: + "/shadow.exe": - when: - os: windows store: steam @@ -568467,7 +570014,7 @@ The jungle: installDir: YAGZZ!: {} launch: - /YAGZZ!.exe: + "/YAGZZ!.exe": - when: - os: windows store: steam @@ -568480,7 +570027,7 @@ The last soldier: installDir: The last soldier: {} launch: - /game.exe: + "/game.exe": - when: - bit: 64 os: windows @@ -568491,7 +570038,7 @@ The logic of the miniature garden: installDir: The logic of the miniature garden: {} launch: - /ExHIBIT.exe: + "/ExHIBIT.exe": - when: - os: windows store: steam @@ -568501,7 +570048,7 @@ The m0rg VS keys: installDir: The m0rg VS keys: {} launch: - /TMVSK.exe: + "/TMVSK.exe": - when: - store: steam steam: @@ -568510,17 +570057,17 @@ The mysterious Case of Dr. Jekyll and Mr. Hyde: installDir: Jekyll: {} launch: - /JekyllAndHydePC.exe: + "/JekyllAndHydePC.exe": - when: - os: windows store: steam steam: id: 1215900 -The planet's rescuer: +"The planet's rescuer": installDir: - The planet's rescuer: {} + "The planet's rescuer": {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -568532,11 +570079,11 @@ The point G. How to find?: The power of chaos: steam: id: 1079040 -'The young mathematician: Easy difficulty': +"The young mathematician: Easy difficulty": installDir: The young mathematician Easy difficulty: {} launch: - /The young mathematician - Easy difficulty.exe: + "/The young mathematician - Easy difficulty.exe": - when: - os: windows store: steam @@ -568546,7 +570093,7 @@ The.Thend.End: installDir: The.Thend.End: {} launch: - /The.Thend.End.exe: + "/The.Thend.End.exe": - when: - os: windows store: steam @@ -568556,7 +570103,7 @@ TheBlu: installDir: theBlu_VR: {} registry: - 'HKEY_CURRENT_USER/Software/Wevr, Inc./theBlu': + "HKEY_CURRENT_USER/Software/Wevr, Inc./theBlu": tags: - config steam: @@ -568565,7 +570112,7 @@ TheFisher Online: installDir: theFisher Online: {} launch: - /theFisher.exe: + "/theFisher.exe": - when: - bit: 64 os: windows @@ -568576,7 +570123,7 @@ TheGunRunner: installDir: TheGunRunner: {} launch: - /gunrunner.exe: + "/gunrunner.exe": - when: - store: steam steam: @@ -568588,7 +570135,7 @@ TheMemory: installDir: TheMemory: {} launch: - /StMors.exe: + "/StMors.exe": - when: - bit: 64 os: windows @@ -568599,7 +570146,7 @@ TheMovingMaze: installDir: TheMovingMaze: {} launch: - /TheMovingMaze/TheMovingMaze.exe: + "/TheMovingMaze/TheMovingMaze.exe": - when: - store: steam steam: @@ -568608,7 +570155,7 @@ TheNightfall: installDir: TheNightfall: {} launch: - /TheNightfall.exe: + "/TheNightfall.exe": - when: - os: windows store: steam @@ -568624,7 +570171,7 @@ TheShooterGame: installDir: TheShootOutGame: {} launch: - /theshootoutgame.exe: + "/theshootoutgame.exe": - when: - store: steam steam: @@ -568636,7 +570183,7 @@ TheVeryHardPuzzleGame&Editor: installDir: TheVeryHardPuzzleGame&Editor: {} launch: - /TheVeryHardPuzzleGameAndEditor.exe: + "/TheVeryHardPuzzleGameAndEditor.exe": - when: - bit: 64 os: windows @@ -568665,15 +570212,15 @@ TheWraithTrails: installDir: TheWraithTrials: {} launch: - /TheWraithTrials.exe: + "/TheWraithTrials.exe": - when: - os: windows store: steam steam: id: 809800 -'Thea 2: The Shattering': +"Thea 2: The Shattering": files: - /Thea2_Data/Profiles: + "/Thea2_Data/Profiles": tags: - save when: @@ -568683,8 +570230,8 @@ TheWraithTrails: installDir: Thea 2 The Shattering: {} launch: - /Thea2.exe: - - arguments: '-ConnectToSteam' + "/Thea2.exe": + - arguments: "-ConnectToSteam" when: - bit: 64 os: windows @@ -568695,9 +570242,9 @@ TheWraithTrails: - config steam: id: 606230 -'Thea: The Awakening': +"Thea: The Awakening": files: - /Thea_Data/Saves: + "/Thea_Data/Saves": tags: - save when: @@ -568713,31 +570260,31 @@ TheWraithTrails: installDir: Thea The Awakening: {} launch: - /Thea.app: + "/Thea.app": - when: - bit: 64 os: mac store: steam - /Thea.exe: + "/Thea.exe": - when: - os: windows store: steam - /Thea.x86_64: + "/Thea.x86_64": - when: - bit: 64 os: linux store: steam registry: - 'HKEY_CURRENT_USER/Software/MuHa Games/Thea: The Awakening': + "HKEY_CURRENT_USER/Software/MuHa Games/Thea: The Awakening": tags: - config steam: id: 378720 -'Theater Commander: The Coming Wars, Modern Warfare': +"Theater Commander: The Coming Wars, Modern Warfare": installDir: Theater Command The Coming Wars: {} launch: - /TheaterCommander.exe: + "/TheaterCommander.exe": - when: - bit: 64 os: windows @@ -568748,16 +570295,16 @@ Theatre of Doom: installDir: Theatre of Doom: {} launch: - /ToD.exe: + "/ToD.exe": - when: - os: windows store: steam - /ToD.x86: + "/ToD.x86": - when: - bit: 32 os: linux store: steam - /ToD.x86_64: + "/ToD.x86_64": - when: - bit: 64 os: linux @@ -568775,95 +570322,95 @@ Theatre of War (2006): installDir: Theatre of War: {} launch: - /Builder.exe: + "/Builder.exe": - when: - os: windows store: steam - /MissionEditor/Editor.exe: + "/MissionEditor/Editor.exe": - when: - os: windows store: steam - workingDir: /MissionEditor - /MissionEditor/MissionGen.exe: + workingDir: "/MissionEditor" + "/MissionEditor/MissionGen.exe": - when: - os: windows store: steam - workingDir: /MissionEditor - /tow.exe: + workingDir: "/MissionEditor" + "/tow.exe": - when: - os: windows store: steam - /towsetup.exe: + "/towsetup.exe": - when: - os: windows store: steam steam: id: 46290 -'Theatre of War 2: Africa 1943': +"Theatre of War 2: Africa 1943": installDir: Theatre of War 2 Africa 1943: {} launch: - /Africa1943.exe: + "/Africa1943.exe": - when: - os: windows store: steam - /Builder.exe: + "/Builder.exe": - when: - os: windows store: steam - /MissionEditor/Editor.exe: + "/MissionEditor/Editor.exe": - when: - os: windows store: steam - workingDir: /MissionEditor - /MissionEditor/MissionGen.exe: + workingDir: "/MissionEditor" + "/MissionEditor/MissionGen.exe": - when: - os: windows store: steam - workingDir: /MissionEditor - /options.exe: + workingDir: "/MissionEditor" + "/options.exe": - when: - os: windows store: steam steam: id: 46340 -'Theatre of War 2: Kursk 1943': +"Theatre of War 2: Kursk 1943": installDir: Theatre of War II Kursk 1943: {} launch: - /Builder.exe: + "/Builder.exe": - when: - os: windows store: steam - /Kursk1943.exe: + "/Kursk1943.exe": - when: - os: windows store: steam - /MissionEditor/Editor.exe: + "/MissionEditor/Editor.exe": - when: - os: windows store: steam - workingDir: /MissionEditor - /MissionEditor/SimpleEditor.exe: + workingDir: "/MissionEditor" + "/MissionEditor/SimpleEditor.exe": - when: - os: windows store: steam - workingDir: /MissionEditor - /options.exe: + workingDir: "/MissionEditor" + "/options.exe": - when: - os: windows store: steam steam: id: 46360 -'Theatre of War 3: Korea': +"Theatre of War 3: Korea": installDir: Theatre of War 3 Korea: {} launch: - /Builder.exe: + "/Builder.exe": - when: - os: windows store: steam - /Korea.exe: + "/Korea.exe": - when: - os: windows store: steam @@ -568871,17 +570418,17 @@ Theatre of War (2006): when: - os: windows store: steam - /MissionEditor/Editor.exe: + "/MissionEditor/Editor.exe": - when: - os: windows store: steam - workingDir: /MissionEditor - /MissionEditor/SimpleEditor.exe: + workingDir: "/MissionEditor" + "/MissionEditor/SimpleEditor.exe": - when: - os: windows store: steam - workingDir: /MissionEditor - /options.exe: + workingDir: "/MissionEditor" + "/options.exe": - when: - os: windows store: steam @@ -568891,7 +570438,7 @@ Theatre of the Absurd: installDir: Theatre Of The Absurd: {} launch: - /Theatre of the Absurd CE.exe: + "/Theatre of the Absurd CE.exe": - when: - store: steam steam: @@ -568900,7 +570447,7 @@ Them - The Summoning: installDir: Them - The Summoning: {} launch: - /Them_1_20120412_MULTI.exe: + "/Them_1_20120412_MULTI.exe": - when: - os: windows store: steam @@ -568910,11 +570457,11 @@ Them Bombs: installDir: Them Bombs: {} launch: - /Them Bombs.app: + "/Them Bombs.app": - when: - os: mac store: steam - /Them Bombs.exe: + "/Them Bombs.exe": - when: - os: windows store: steam @@ -568922,12 +570469,12 @@ Them Bombs: id: 806900 Them and Us: files: - /Binaries/SaveData: + "/Binaries/SaveData": tags: - save when: - os: windows - /UDKGame/Config: + "/UDKGame/Config": tags: - config when: @@ -568937,33 +570484,33 @@ Them and Us: installDir: Them & Us: {} launch: - /Binaries/Win64/UDK.exe: - - arguments: ' -seekfreeloading -dx9' + "/Binaries/Win64/UDK.exe": + - arguments: " -seekfreeloading -dx9" when: - bit: 64 os: windows store: steam steam: id: 915600 -Them's Fightin' Herds: +"Them's Fightin' Herds": files: - /My Games/Them's Fightin' Herds: + "/My Games/Them's Fightin' Herds": tags: - save when: - os: windows installDir: - Them's Fightin' Herds: {} + "Them's Fightin' Herds": {} launch: - /Them's Fightin' Herds.exe: + "/Them's Fightin' Herds.exe": - when: - os: windows store: steam - /Them's Fighting Herds.app/Contents/MacOS/Them's Fighting Herds: + "/Them's Fighting Herds.app/Contents/MacOS/Them's Fighting Herds": - when: - os: mac store: steam - /ThemsFightinHerds.Linux.x64: + "/ThemsFightinHerds.Linux.x64": - when: - bit: 64 os: linux @@ -568972,13 +570519,13 @@ Them's Fightin' Herds: id: 574980 Theme Hospital: files: - /HOSPITAL.CFG: + "/HOSPITAL.CFG": tags: - config when: - os: dos - os: windows - /Save: + "/Save": tags: - save when: @@ -568988,7 +570535,7 @@ Theme Hospital: id: 1207659026 Theme Park: files: - /SAVE: + "/SAVE": tags: - save when: @@ -568997,12 +570544,12 @@ Theme Park: id: 1207660423 Theme Park Inc.: files: - /data: + "/data": tags: - config when: - os: windows - /save: + "/save": tags: - save when: @@ -569011,7 +570558,7 @@ Theme Park Simulator: installDir: Theme Park Simulator: {} launch: - /Theme Park Simulator.exe: + "/Theme Park Simulator.exe": - when: - os: windows store: steam @@ -569021,22 +570568,22 @@ Theme Park Studio: installDir: Theme Park Studio: {} launch: - /ThemeParkStudio.exe: + "/ThemeParkStudio.exe": - when: - store: steam - - arguments: '-fr' + - arguments: "-fr" when: - store: steam - - arguments: '-ge' + - arguments: "-ge" when: - store: steam - - arguments: '-it' + - arguments: "-it" when: - store: steam - - arguments: '-po' + - arguments: "-po" when: - store: steam - - arguments: '-sp' + - arguments: "-sp" when: - store: steam steam: @@ -569045,7 +570592,7 @@ Theme Park Worker: installDir: Theme Park Worker: {} launch: - /ThemePark.exe: + "/ThemePark.exe": - when: - os: windows store: steam @@ -569053,7 +570600,7 @@ Theme Park Worker: id: 1020560 TheoTown: files: - 'C:/Users/your username/TheoTown': + "C:/Users/your username/TheoTown": tags: - config - save @@ -569062,20 +570609,20 @@ TheoTown: installDir: TheoTown: {} launch: - /TheoTown: + "/TheoTown": - when: - os: mac store: steam - /TheoTown.exe: + "/TheoTown.exe": - when: - os: windows store: steam - /TheoTown32: + "/TheoTown32": - when: - bit: 32 os: linux store: steam - /TheoTown64: + "/TheoTown64": - when: - bit: 64 os: linux @@ -569084,29 +570631,29 @@ TheoTown: id: 1084020 Theocracy: files: - /.gamesettings: + "/.gamesettings": tags: - config when: - os: windows - /mvos.cfg: + "/mvos.cfg": tags: - config when: - os: windows - /save/*.tsg: + "/save/*.tsg": tags: - save when: - os: windows Theocracy (2022): files: - /DATA/options.dat: + "/DATA/options.dat": tags: - config when: - os: windows - /SAVEGAME: + "/SAVEGAME": tags: - save when: @@ -569114,7 +570661,7 @@ Theocracy (2022): installDir: Theocracy: {} launch: - /theocracy.exe: + "/theocracy.exe": - when: - os: windows store: steam @@ -569124,7 +570671,7 @@ Theorem: installDir: Theorem: {} launch: - /Theorem.exe: + "/Theorem.exe": - when: - os: windows store: steam @@ -569134,7 +570681,7 @@ Theory of Fear: installDir: Theory of Fear: {} launch: - /FearTheory12.exe: + "/FearTheory12.exe": - when: - os: windows store: steam @@ -569144,21 +570691,21 @@ There Came an Echo: installDir: There Came an Echo: {} launch: - /therecameanecho.exe: + "/therecameanecho.exe": - when: - os: windows store: steam steam: id: 319740 -'There Is No Game: Jam Edition 2015': +"There Is No Game: Jam Edition 2015": installDir: There is no game Jam Edition 2015: {} launch: - /TingJAM.app: + "/TingJAM.app": - when: - os: mac store: steam - /Ting_Jam.exe: + "/Ting_Jam.exe": - when: - os: windows store: steam @@ -569168,19 +570715,19 @@ There Came an Echo: - config steam: id: 1241700 -'There Is No Game: Wrong Dimension': +"There Is No Game: Wrong Dimension": files: - /AppData/LocalLow/DrawMeAPixel/Ting//Global.dat: + "/AppData/LocalLow/DrawMeAPixel/Ting//Global.dat": tags: - config when: - os: windows - /AppData/LocalLow/DrawMeAPixel/Ting//SaveFile.dat: + "/AppData/LocalLow/DrawMeAPixel/Ting//SaveFile.dat": tags: - save when: - os: windows - /Library/Application Support/DrawMeAPixel/Ting/: + "/Library/Application Support/DrawMeAPixel/Ting/": tags: - save when: @@ -569190,11 +570737,11 @@ There Came an Echo: installDir: There is no game - Wrong dimension: {} launch: - /Ting.app: + "/Ting.app": - when: - os: mac store: steam - /Ting.exe: + "/Ting.exe": - when: - os: windows store: steam @@ -569206,7 +570753,7 @@ There Came an Echo: id: 1240210 There Is No Light: files: - /AppData/LocalLow/ZelartGames/ThereIsNoLight: + "/AppData/LocalLow/ZelartGames/ThereIsNoLight": tags: - save when: @@ -569216,7 +570763,7 @@ There Is No Light: installDir: There’s no Light: {} launch: - /ThereIsNoLight.exe: + "/ThereIsNoLight.exe": - when: - store: steam steam: @@ -569225,7 +570772,7 @@ There Is No Tomorrow: installDir: There Is No Tomorrow: {} launch: - /TINT.exe: + "/TINT.exe": - when: - os: windows store: steam @@ -569235,7 +570782,7 @@ There Is No Turning Back!: installDir: NoTurningBack: {} launch: - /There Is No Turning Back!.exe: + "/There Is No Turning Back!.exe": - when: - os: windows store: steam @@ -569248,16 +570795,16 @@ There Is a Way: installDir: There Is a Way: {} launch: - /Contents/MacOS/There Is a Way: + "/Contents/MacOS/There Is a Way": - when: - os: mac store: steam - /There Is a Way.exe: + "/There Is a Way.exe": - when: - bit: 64 os: windows store: steam - /There Is a Way.x86_64: + "/There Is a Way.x86_64": - when: - bit: 64 os: linux @@ -569268,11 +570815,11 @@ There The Light: installDir: There The Light: {} launch: - /ThereTheLight.app/Contents/MacOS/ThereTheLight: + "/ThereTheLight.app/Contents/MacOS/ThereTheLight": - when: - os: mac store: steam - /ThereTheLight.exe: + "/ThereTheLight.exe": - when: - bit: 64 os: windows @@ -569283,7 +570830,7 @@ There Was A Caveman: installDir: There Was a Caveman: {} launch: - /ThereWasACaveman.exe: + "/ThereWasACaveman.exe": - when: - os: windows store: steam @@ -569293,18 +570840,18 @@ There Will Be Ink: installDir: There Will Be Ink: {} launch: - /ThereWillBeInk.exe: + "/ThereWillBeInk.exe": - when: - os: windows store: steam steam: id: 1020450 -There Won't be Light: +"There Won't be Light": installDir: - There Won't Be Light: {} + "There Won't Be Light": {} launch: - /BHG_4.exe: - - arguments: '-d3d11' + "/BHG_4.exe": + - arguments: "-d3d11" when: - bit: 64 os: windows @@ -569315,7 +570862,7 @@ There is No GreenDam: installDir: There is No GreenDam: {} launch: - /There is No GreenDam.exe: + "/There is No GreenDam.exe": - when: - os: windows store: steam @@ -569326,34 +570873,34 @@ There is a Thief in my House: There is a Thief in my House: {} steam: id: 1160050 -There's Poop In My Soup: +"There's Poop In My Soup": installDir: - There's Poop In My Soup: {} + "There's Poop In My Soup": {} launch: - /PoopInMySoup.exe: + "/PoopInMySoup.exe": - when: - os: windows store: steam - /TheresPoopInMySoup_32Bit.app: + "/TheresPoopInMySoup_32Bit.app": - when: - bit: 32 os: mac store: steam - /TheresPoopInMySoup_64Bit.app: + "/TheresPoopInMySoup_64Bit.app": - when: - bit: 64 os: mac store: steam steam: id: 449540 -There's Poop In My Soup - Pooping with Friends: +"There's Poop In My Soup - Pooping with Friends": steam: id: 603720 -There's a Butcher Around: +"There's a Butcher Around": installDir: - There's a Butcher Around: {} + "There's a Butcher Around": {} launch: - /There's a Butcher Around.exe: + "/There's a Butcher Around.exe": - when: - store: steam steam: @@ -569362,7 +570909,7 @@ Therian Saga: installDir: Therian Saga: {} launch: - /Utopia.Steam.Launcher.exe: + "/Utopia.Steam.Launcher.exe": - when: - os: windows store: steam @@ -569380,15 +570927,15 @@ These Nights in Cairo: installDir: TheseNightsInCairo: {} launch: - /These_nights_in_Cairo.app: + "/These_nights_in_Cairo.app": - when: - os: mac store: steam - /These_nights_in_Cairo.exe: + "/These_nights_in_Cairo.exe": - when: - os: windows store: steam - /These_nights_in_Cairo.sh: + "/These_nights_in_Cairo.sh": - when: - os: linux store: steam @@ -569399,11 +570946,11 @@ Theseus: Theseus: {} steam: id: 677330 -'Theseus: Journey to Athens': +"Theseus: Journey to Athens": installDir: Theseus Journey to Athens: {} launch: - /Theseus.exe: + "/Theseus.exe": - when: - os: windows store: steam @@ -569413,7 +570960,7 @@ Thetaball: installDir: Thetaball: {} launch: - /ThetaBall.Win32.Application.exe: + "/ThetaBall.Win32.Application.exe": - when: - os: windows store: steam @@ -569421,7 +570968,7 @@ Thetaball: id: 770660 They Always Run: files: - /Alawar/They Always Run/Saves: + "/Alawar/They Always Run/Saves": tags: - save when: @@ -569431,7 +570978,7 @@ They Always Run: installDir: They Always Run: {} launch: - /They Always Run.exe: + "/They Always Run.exe": - when: - bit: 64 os: windows @@ -569446,7 +570993,7 @@ They Are Beasts: installDir: They Are Beasts: {} launch: - /TheyAreBeasts.exe: + "/TheyAreBeasts.exe": - when: - os: windows store: steam @@ -569454,12 +571001,12 @@ They Are Beasts: id: 1091090 They Are Billions: files: - /My Games/They Are Billions/Configuration.txt: + "/My Games/They Are Billions/Configuration.txt": tags: - config when: - os: windows - /My Games/They Are Billions/Saves: + "/My Games/They Are Billions/Saves": tags: - save when: @@ -569469,12 +571016,12 @@ They Are Billions: installDir: They Are Billions: {} launch: - /TheyAreBillions.exe: + "/TheyAreBillions.exe": - when: - bit: 64 os: windows store: steam - /TheyAreBillions_x86.exe: + "/TheyAreBillions_x86.exe": - when: - bit: 32 os: windows @@ -569485,7 +571032,7 @@ They Are Coming!: installDir: They are coming: {} launch: - /They Are Coming!.exe: + "/They Are Coming!.exe": - when: - os: windows store: steam @@ -569495,7 +571042,7 @@ They Are Hundreds: installDir: They Are Hundreds: {} launch: - /FirstpersonZombie.exe: + "/FirstpersonZombie.exe": - when: - os: windows store: steam @@ -569503,34 +571050,34 @@ They Are Hundreds: id: 806860 They Bleed Pixels: files: - /config.txt: + "/config.txt": tags: - config when: - os: windows - /savedata: + "/savedata": tags: - save when: - - os: windows - store: steam - /Library/Application Support/TheyBleedPixels: + - os: windows + "/Library/Application Support/TheyBleedPixels": tags: - config - save when: - os: mac - /userdata//211260/remote: + "/userdata//211260/remote": tags: - save when: - store: steam - /TheyBleedPixels: + "/TheyBleedPixels": tags: - config when: - os: linux - /TheyBleedPixels: + "/TheyBleedPixels": tags: - save when: @@ -569538,15 +571085,15 @@ They Bleed Pixels: installDir: they bleed pixels: {} launch: - /They Bleed Pixels PC.exe: + "/They Bleed Pixels PC.exe": - when: - os: windows store: steam - /They Bleed Pixels.app: + "/They Bleed Pixels.app": - when: - os: mac store: steam - /TheyBleedPixels: + "/TheyBleedPixels": - when: - os: linux store: steam @@ -569554,7 +571101,7 @@ They Bleed Pixels: id: 211260 They Breathe: files: - /My Games/The Working Parts/They Breathe/theybreathe.sav: + "/My Games/The Working Parts/They Breathe/theybreathe.sav": tags: - save when: @@ -569562,16 +571109,16 @@ They Breathe: installDir: They Breathe: {} launch: - /Classic/They Breathe.exe: + "/Classic/They Breathe.exe": - when: - os: windows store: steam - workingDir: /Classic - /Mac/TheyBreathe.app/Contents/MacOS/They Breathe: + workingDir: "/Classic" + "/Mac/TheyBreathe.app/Contents/MacOS/They Breathe": - when: - os: mac store: steam - /Remastered/They Breathe.exe: + "/Remastered/They Breathe.exe": - when: - os: windows store: steam @@ -569584,7 +571131,7 @@ They Came From the Sky: installDir: They Came From the Sky: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -569594,17 +571141,17 @@ They Came from a Communist Planet: installDir: They Came From a Communist Planet: {} launch: - /They Came From a Communist Planet.exe: + "/They Came From a Communist Planet.exe": - when: - os: windows store: steam steam: id: 1176460 -They Can't Stop All Of Us: +"They Can't Stop All Of Us": installDir: - They Can't Stop All Of Us: {} + "They Can't Stop All Of Us": {} launch: - /They Cant Stop All Of Us.exe: + "/They Cant Stop All Of Us.exe": - when: - bit: 64 os: windows @@ -569615,7 +571162,7 @@ They Have Horns: installDir: They have HORNS: {} launch: - /TheyHaveHORNS.exe: + "/TheyHaveHORNS.exe": - when: - os: windows store: steam @@ -569625,36 +571172,40 @@ They That Feast: installDir: They That Feast: {} launch: - /They That Feast.exe: + "/They That Feast.exe": - when: - os: windows store: steam steam: id: 963910 -They'll Find You: +"They'll Find You": installDir: - They'll Find You: {} + "They'll Find You": {} launch: - /They'llFindYou.exe: + "/They'llFindYou.exe": - when: - os: windows store: steam + - os: mac + store: steam + - os: linux + store: steam steam: id: 1129670 Thibalryn: installDir: Thibalryn: {} launch: - /Thibalryn/Thibalryn.app: + "/Thibalryn/Thibalryn.app": - when: - os: mac store: steam - /Thibalryn/Thibalryn.exe: + "/Thibalryn/Thibalryn.exe": - when: - bit: 64 os: windows store: steam - /Thibalryn/Thibalryn.x86_64: + "/Thibalryn/Thibalryn.x86_64": - when: - bit: 64 os: linux @@ -569665,7 +571216,7 @@ Thick Air: installDir: Thick Air: {} launch: - /ThickAir.exe: + "/ThickAir.exe": - when: - bit: 64 os: windows @@ -569683,27 +571234,28 @@ Thick Light 3: id: 993970 Thief: files: - /ThiefGame/Config: + "/ThiefGame/Config": tags: - config when: - os: windows - /Documents/My Games/Thief: + "/Documents/My Games/Thief": tags: - save when: - - store: gog - /Library/Containers/com.feralinteractive.thief/Data/Library/Application Support/Feral Interactive/Thief - Shadow Edition/VFS/Local/Config/ThiefGame.ini: + - os: windows + store: gog + "/Library/Containers/com.feralinteractive.thief/Data/Library/Application Support/Feral Interactive/Thief - Shadow Edition/VFS/Local/Config/ThiefGame.ini": tags: - config when: - os: mac - /Library/Containers/com.feralinteractive.thief/Data/Library/Application Support/Feral Interactive/Thief - Shadow Edition/VFS/Storage: + "/Library/Containers/com.feralinteractive.thief/Data/Library/Application Support/Feral Interactive/Thief - Shadow Edition/VFS/Storage": tags: - save when: - os: mac - /userdata//239160/remote: + "/userdata//239160/remote": tags: - save when: @@ -569721,17 +571273,17 @@ Thief: installDir: Thief: {} launch: - /Thief.app: + "/Thief.app": - when: - bit: 64 os: mac store: steam - /binaries/win32/shipping-thiefgame.exe: + "/binaries/win32/shipping-thiefgame.exe": - when: - bit: 32 os: windows store: steam - /binaries/win64/shipping-thiefgame.exe: + "/binaries/win64/shipping-thiefgame.exe": - when: - bit: 64 os: windows @@ -569742,9 +571294,9 @@ Thief: - config steam: id: 239160 -'Thief II: The Metal Age': +"Thief II: The Metal Age": files: - /SAVES: + "/SAVES": tags: - save when: @@ -569754,15 +571306,15 @@ Thief: installDir: thief_2: {} launch: - /thief2.exe: - - arguments: '' + "/thief2.exe": + - arguments: "" when: - store: steam steam: id: 211740 Thief Simulator: files: - /AppData/LocalLow/Noble Muffins/Thief Simulator: + "/AppData/LocalLow/Noble Muffins/Thief Simulator": tags: - save when: @@ -569777,11 +571329,11 @@ Thief Simulator: installDir: Thief Simulator: {} launch: - /thief.app/Contents/MacOS/thief: + "/thief.app/Contents/MacOS/thief": - when: - os: mac store: steam - /thief.exe: + "/thief.exe": - when: - bit: 64 os: windows @@ -569794,7 +571346,7 @@ Thief Simulator: id: 704850 Thief Simulator 2: files: - /AppData/LocalLow/CookieDev/Thief Simulator 2: + "/AppData/LocalLow/CookieDev/Thief Simulator 2": tags: - save when: @@ -569802,14 +571354,14 @@ Thief Simulator 2: installDir: Thief Simulator 2: {} launch: - /Thief Simulator 2.exe: + "/Thief Simulator 2.exe": - when: - store: steam steam: id: 1332720 Thief Simulator VR: files: - /AppData/LocalLow/Game Boom VR/Thief Simulator VR/Profile_0: + "/AppData/LocalLow/Game Boom VR/Thief Simulator VR/Profile_0": tags: - config - save @@ -569823,20 +571375,23 @@ Thief Town: installDir: Thief Town: {} launch: - /run.sh: + "/run.sh": - when: - bit: 64 os: mac store: steam - /run.vbs: + - bit: 64 + os: linux + store: steam + "/run.vbs": - when: - os: windows store: steam steam: id: 331220 -'Thief of Thieves: Season One': +"Thief of Thieves: Season One": files: - /My Games/Rival Games/ToT/SaveGames/: + "/My Games/Rival Games/ToT/SaveGames/": tags: - save when: @@ -569844,7 +571399,7 @@ Thief Town: installDir: Thief of Thieves: {} launch: - /tot.exe: + "/tot.exe": - when: - os: windows store: steam @@ -569854,14 +571409,14 @@ Thief Town: - config steam: id: 635390 -'Thief: Deadly Shadows': +"Thief: Deadly Shadows": files: - /System/Default.ini: + "/System/Default.ini": tags: - config when: - os: windows - /save/SaveGames: + "/save/SaveGames": tags: - save when: @@ -569871,15 +571426,15 @@ Thief Town: installDir: Thief Deadly Shadows: {} launch: - /system/runme.exe: + "/system/runme.exe": - when: - store: steam - workingDir: /System + workingDir: "/System" steam: id: 6980 -'Thief: The Dark Project': +"Thief: The Dark Project": files: - /SAVES: + "/SAVES": tags: - save when: @@ -569889,8 +571444,8 @@ Thief Town: installDir: thief_gold: {} launch: - /thief.exe: - - arguments: '' + "/thief.exe": + - arguments: "" when: - store: steam steam: @@ -569899,25 +571454,25 @@ Thievery: installDir: Thievery: {} launch: - /Thievery.exe: + "/Thievery.exe": - when: - os: windows store: steam steam: id: 882700 -'Thieves'' Gambit: The Curse of the Black Cat': +"Thieves' Gambit: The Curse of the Black Cat": installDir: ThievesGambitCurseOfTheBlackCat: {} launch: - /Thieves Gambit Curse of the Black Cat.app/Contents/MacOS/Thieves Gambit Curse of the Black Cat: + "/Thieves Gambit Curse of the Black Cat.app/Contents/MacOS/Thieves Gambit Curse of the Black Cat": - when: - os: mac store: steam - /ThievesGambitCurseOfTheBlackCat: + "/ThievesGambitCurseOfTheBlackCat": - when: - os: linux store: steam - /ThievesGambitCurseOfTheBlackCat.exe: + "/ThievesGambitCurseOfTheBlackCat.exe": - when: - os: windows store: steam @@ -569927,7 +571482,7 @@ Thigh Climbers: installDir: ThighClimbers: {} launch: - /ThighClimbers.exe: + "/ThighClimbers.exe": - when: - bit: 64 os: windows @@ -569936,32 +571491,32 @@ Thigh Climbers: id: 1040370 Thimbleweed Park: files: - /Library/Application Support/Terrible Toybox/Thimbleweed Park: + "/Library/Application Support/Terrible Toybox/Thimbleweed Park": tags: - save when: - os: mac - /Library/Application Support/Terrible Toybox/Thimbleweed Park/Prefs.json: + "/Library/Application Support/Terrible Toybox/Thimbleweed Park/Prefs.json": tags: - config when: - os: mac - /Terrible Toybox/Thimbleweed Park: + "/Terrible Toybox/Thimbleweed Park": tags: - save when: - os: windows - /Terrible Toybox/Thimbleweed Park/Prefs.json: + "/Terrible Toybox/Thimbleweed Park/Prefs.json": tags: - config when: - os: windows - /Terrible Toybox/Thimbleweed Park: + "/Terrible Toybox/Thimbleweed Park": tags: - save when: - os: linux - /Terrible Toybox/Thimbleweed Park/Prefs.json: + "/Terrible Toybox/Thimbleweed Park/Prefs.json": tags: - config when: @@ -569976,16 +571531,16 @@ Thimbleweed Park: installDir: Thimbleweed Park: {} launch: - /ThimbleweedPark: + "/ThimbleweedPark": - when: - bit: 64 os: linux store: steam - /ThimbleweedPark.app/Contents/MacOS/ThimbleweedPark: + "/ThimbleweedPark.app/Contents/MacOS/ThimbleweedPark": - when: - os: mac store: steam - /ThimbleweedPark.exe: + "/ThimbleweedPark.exe": - when: - os: windows store: steam @@ -569995,11 +571550,11 @@ Thin Judgment: installDir: Thin Judgment: {} launch: - /Thin Judgment.exe: + "/Thin Judgment.exe": - when: - os: windows store: steam - /Thin Judgment.x86: + "/Thin Judgment.x86": - when: - os: linux store: steam @@ -570009,11 +571564,11 @@ Thing-in-Itself: installDir: Thing-in-Itself: {} launch: - /Thing-in-Itself.app: + "/Thing-in-Itself.app": - when: - os: mac store: steam - /Thing-in-Itself.exe: + "/Thing-in-Itself.exe": - when: - os: windows store: steam @@ -570028,7 +571583,7 @@ Think: installDir: Think_: {} launch: - /Think_.exe: + "/Think_.exe": - when: - os: windows store: steam @@ -570038,22 +571593,22 @@ Think To Die: installDir: Think To Die: {} launch: - /Contents/MacOS/Mac: + "/Contents/MacOS/Mac": - when: - bit: 64 os: mac store: steam - '/ThinkToDie[1].exe': + "/ThinkToDie[1].exe": - when: - bit: 64 os: windows store: steam - '/ThinkToDie[Linux].x86_64': + "/ThinkToDie[Linux].x86_64": - when: - bit: 64 os: linux store: steam - '/ThinkToDie[Win32].exe': + "/ThinkToDie[Win32].exe": - when: - bit: 32 os: windows @@ -570064,22 +571619,22 @@ Think To Die 2: installDir: Think To Die 2: {} launch: - /Contents/MacOS/TTD-Mac64: + "/Contents/MacOS/TTD-Mac64": - when: - bit: 64 os: mac store: steam - /ThinkToDie2_LINUX_64.x86_64: + "/ThinkToDie2_LINUX_64.x86_64": - when: - bit: 64 os: linux store: steam - /ThinkToDie2_WIN_32.exe: + "/ThinkToDie2_WIN_32.exe": - when: - bit: 32 os: windows store: steam - /ThinkToDie2_WIN_64.exe: + "/ThinkToDie2_WIN_64.exe": - when: - bit: 64 os: windows @@ -570090,22 +571645,22 @@ Think To Die 3: installDir: Think To Die 3: {} launch: - /Contents/MacOS/TTD3-Mac64: + "/Contents/MacOS/TTD3-Mac64": - when: - bit: 64 os: mac store: steam - /ThinkToDie3_Linux64.x86_64: + "/ThinkToDie3_Linux64.x86_64": - when: - bit: 64 os: linux store: steam - /ThinkToDie3_Win_32.exe: + "/ThinkToDie3_Win_32.exe": - when: - bit: 32 os: windows store: steam - /ThinkToDie3_Win_64.exe: + "/ThinkToDie3_Win_64.exe": - when: - bit: 64 os: windows @@ -570114,17 +571669,17 @@ Think To Die 3: id: 611320 Think of the Children: files: - /AppData/LocalLow/Jammed Up Studios/Think of the Children/BetaSave.TOTC: + "/AppData/LocalLow/Jammed Up Studios/Think of the Children/BetaSave.TOTC": tags: - save when: - os: windows - /AppData/LocalLow/Jammed Up Studios/Think of the Children/BetaSettings.TOTC: + "/AppData/LocalLow/Jammed Up Studios/Think of the Children/BetaSettings.TOTC": tags: - config when: - os: windows - /AppData/LocalLow/Jammed Up Studios/Think of the Children/ControllerSettings.TOTC: + "/AppData/LocalLow/Jammed Up Studios/Think of the Children/ControllerSettings.TOTC": tags: - config when: @@ -570134,7 +571689,7 @@ Think of the Children: installDir: Think of the Children: {} launch: - /Think of the Children.exe: + "/Think of the Children.exe": - when: - os: windows store: steam @@ -570148,14 +571703,14 @@ ThinkAhead: installDir: ThinkAhead: {} launch: - /nw.exe: + "/nw.exe": - when: - store: steam steam: id: 655180 Thinking with Time Machine: files: - /TWTM/save: + "/TWTM/save": tags: - save when: @@ -570163,18 +571718,18 @@ Thinking with Time Machine: installDir: Thinking with Time Machine: {} launch: - /TWTM.sh: - - arguments: '-game TWTM -steam' + "/TWTM.sh": + - arguments: "-game TWTM -steam" when: - os: linux store: steam - /TWTM_osx: - - arguments: '-game TWTM -steam' + "/TWTM_osx": + - arguments: "-game TWTM -steam" when: - os: mac store: steam - /portal2.exe: - - arguments: '-game TWTM -steam' + "/portal2.exe": + - arguments: "-game TWTM -steam" when: - os: windows store: steam @@ -570190,7 +571745,7 @@ Third Eye: installDir: Third Eye: {} launch: - /Launcher.exe: + "/Launcher.exe": - when: - os: windows store: steam @@ -570200,7 +571755,7 @@ Third Eye Crime: installDir: ThirdEyeCrime: {} launch: - /ThirdEyeCrime.exe: + "/ThirdEyeCrime.exe": - when: - os: windows store: steam @@ -570210,7 +571765,7 @@ Third Front: installDir: Third Front: {} launch: - /ThirdFront.exe: + "/ThirdFront.exe": - when: - os: windows store: steam @@ -570220,7 +571775,7 @@ Third Rule of Universe.: installDir: Third Rule of Universe: {} launch: - /nw.exe: + "/nw.exe": - when: - store: steam steam: @@ -570229,7 +571784,7 @@ Thirdmage: installDir: Thirdmage: {} launch: - /Thirdmage.exe: + "/Thirdmage.exe": - when: - store: steam steam: @@ -570246,7 +571801,7 @@ Thirsty Bubble: installDir: Thirsty Bubble: {} launch: - /thirstyball.exe: + "/thirstyball.exe": - when: - bit: 64 os: windows @@ -570255,12 +571810,12 @@ Thirsty Bubble: id: 777270 Thirty Flights of Loving: files: - /baseq2/kmq2config.cfg: + "/baseq2/kmq2config.cfg": tags: - config when: - os: windows - /baseq2/save: + "/baseq2/save": tags: - save when: @@ -570268,15 +571823,15 @@ Thirty Flights of Loving: installDir: thirty_flights_of_loving: {} launch: - /Thirty Flights of Loving.app: + "/Thirty Flights of Loving.app": - when: - os: mac store: steam - /tfol: + "/tfol": - when: - os: linux store: steam - /tfol.exe: + "/tfol.exe": - when: - os: windows store: steam @@ -570286,16 +571841,16 @@ Thirty Two: installDir: Thirty Two: {} launch: - /ThirtyTwo.exe: + "/ThirtyTwo.exe": - when: - store: steam steam: id: 977290 -Thirty Years' War: +"Thirty Years' War": installDir: - Thirty Years' War: {} + "Thirty Years' War": {} launch: - /autorun.exe: + "/autorun.exe": - when: - os: windows store: steam @@ -570305,7 +571860,7 @@ This Book Is a Dungeon: installDir: This Book Is A Dungeon: {} launch: - /thisbookisadungeon.exe: + "/thisbookisadungeon.exe": - when: - os: windows store: steam @@ -570315,7 +571870,7 @@ This Child of Mine: installDir: This Child Of Mine: {} launch: - /ThisChildOfMine.exe: + "/ThisChildOfMine.exe": - when: - os: windows store: steam @@ -570325,7 +571880,7 @@ This Grand Life: installDir: This Grand Life: {} launch: - /ThisGrandLife.exe: + "/ThisGrandLife.exe": - when: - os: windows store: steam @@ -570335,7 +571890,7 @@ This Is Not a Jumping Game: installDir: This Is Not A Jumping Game: {} launch: - /ThisIsNotAJumpingGame.exe: + "/ThisIsNotAJumpingGame.exe": - when: - bit: 64 os: windows @@ -570346,7 +571901,7 @@ This Is Space: installDir: This Is Space: {} launch: - /ThisIsSpace.exe: + "/ThisIsSpace.exe": - when: - os: windows store: steam @@ -570354,17 +571909,17 @@ This Is Space: id: 1110470 This Is the Police: files: - /AppData/LocalLow/Weappy/This Is The Police: + "/AppData/LocalLow/Weappy/This Is The Police": tags: - save when: - os: windows - /AppData/LocalLow/Weappy/This Is The Police/Settings.xml: + "/AppData/LocalLow/Weappy/This Is The Police/Settings.xml": tags: - config when: - os: windows - /unity3d/Weappy/This Is The Police: + "/unity3d/Weappy/This Is The Police": tags: - config - save @@ -570375,17 +571930,17 @@ This Is the Police: installDir: This is the Police: {} launch: - /Police.app: + "/Police.app": - when: - bit: 64 os: mac store: steam - /Police.exe: + "/Police.exe": - when: - bit: 64 os: windows store: steam - /Police.x86_64: + "/Police.x86_64": - when: - bit: 64 os: linux @@ -570398,12 +571953,12 @@ This Is the Police: id: 443810 This Is the Police 2: files: - /AppData/LocalLow/Weappy/This Is The Police 2/Save.xml: + "/AppData/LocalLow/Weappy/This Is The Police 2/Save.xml": tags: - save when: - os: windows - /AppData/LocalLow/Weappy/This Is The Police 2/Settings.xml: + "/AppData/LocalLow/Weappy/This Is The Police 2/Settings.xml": tags: - config when: @@ -570413,16 +571968,16 @@ This Is the Police 2: installDir: This Is the Police 2: {} launch: - /Police2.app: + "/Police2.app": - when: - os: mac store: steam - /Police2.exe: + "/Police2.exe": - when: - bit: 64 os: windows store: steam - /Police2.x86_64: + "/Police2.x86_64": - when: - bit: 64 os: linux @@ -570439,15 +571994,15 @@ This Is the President: installDir: This Is the President: {} launch: - /This Is the President.exe: + "/This Is the President.exe": - when: - os: windows store: steam - /ThisIsThePresident.app: + "/ThisIsThePresident.app": - when: - os: mac store: steam - /ThisIsThePresident.x86_64: + "/ThisIsThePresident.x86_64": - when: - os: linux store: steam @@ -570455,12 +572010,12 @@ This Is the President: id: 730430 This Land Is My Land: files: - /AppData/LocalLow/Game Labs/This Land Is My Land: + "/AppData/LocalLow/Game Labs/This Land Is My Land": tags: - config when: - os: windows - /AppData/LocalLow/Game Labs/This Land Is My Land/SavedGames: + "/AppData/LocalLow/Game Labs/This Land Is My Land/SavedGames": tags: - save when: @@ -570468,11 +572023,11 @@ This Land Is My Land: installDir: This Land Is My Land: {} launch: - /This Land Is My Land.exe: + "/This Land Is My Land.exe": - when: - os: windows store: steam - - arguments: '-window-mode exclusive' + - arguments: "-window-mode exclusive" when: - store: steam registry: @@ -570483,7 +572038,7 @@ This Land Is My Land: id: 1069640 This Means War!: files: - /Maps/Tmw*.sav: + "/Maps/Tmw*.sav": tags: - save when: @@ -570492,7 +572047,7 @@ This Merchant Life: installDir: This Merchant Life: {} launch: - /Merchant.exe: + "/Merchant.exe": - when: - os: windows store: steam @@ -570502,7 +572057,7 @@ This Picture: installDir: This Picture: {} launch: - /ThisPicture.exe: + "/ThisPicture.exe": - when: - store: steam steam: @@ -570511,7 +572066,7 @@ This Side: installDir: This Side: {} launch: - /ThisSide.exe: + "/ThisSide.exe": - when: - os: windows store: steam @@ -570521,7 +572076,7 @@ This Starry Midnight We Make: installDir: This Starry Midnight We Make: {} launch: - /StarryMidnight.exe: + "/StarryMidnight.exe": - when: - store: steam steam: @@ -570530,11 +572085,11 @@ This Strange Realm of Mine: installDir: REALM: {} launch: - /Realm.exe: + "/Realm.exe": - when: - os: windows store: steam - /Realm_Mac.app: + "/Realm_Mac.app": - when: - os: mac store: steam @@ -570542,24 +572097,24 @@ This Strange Realm of Mine: id: 655730 This War of Mine: files: - /.This War of Mine: + "/.This War of Mine": tags: - config - save when: - os: linux - /Library/Application Support/This War of Mine: + "/Library/Application Support/This War of Mine": tags: - config - save when: - os: mac - /userdata//282070/remote: + "/userdata//282070/remote": tags: - save when: - store: steam - /11bitstudios/This War Of Mine: + "/11bitstudios/This War Of Mine": tags: - config - save @@ -570570,34 +572125,34 @@ This War of Mine: id: gogExtra: - 1109065057 + - 1195141526 - 1224169156 - 1513615737 - - 1195141526 - - 1722846437 - 1689362899 + - 1722846437 steamExtra: - - 481090 - 348040 + - 481090 - 750030 + - 750031 - 974610 - 1125630 - - 750031 installDir: This War of Mine: {} launch: - /Storyteller.exe: + "/Storyteller.exe": - when: - os: windows store: steam - /This War of Mine: + "/This War of Mine": - when: - os: linux store: steam - /This War of Mine.app: + "/This War of Mine.app": - when: - os: mac store: steam - /This War of Mine.exe: + "/This War of Mine.exe": - when: - os: windows store: steam @@ -570605,7 +572160,7 @@ This War of Mine: id: 282070 This World Unknown: files: - /RenPy/This-World-Unknown-1.0: + "/RenPy/This-World-Unknown-1.0": tags: - save when: @@ -570613,15 +572168,15 @@ This World Unknown: installDir: This World Unknown: {} launch: - /This World Unknown.app: + "/This World Unknown.app": - when: - os: mac store: steam - /This World Unknown.exe: + "/This World Unknown.exe": - when: - os: windows store: steam - /This World Unknown.sh: + "/This World Unknown.sh": - when: - os: linux store: steam @@ -570640,7 +572195,7 @@ This is not RPG: installDir: This is not RPG: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -570650,7 +572205,7 @@ This is the Zodiac Speaking: installDir: This Is the Zodiac Speaking: {} launch: - /Zodiac.exe: + "/Zodiac.exe": - when: - os: windows store: steam @@ -570660,29 +572215,29 @@ This was for you.: installDir: this was for you: {} launch: - /ThisWasForYou.app: + "/ThisWasForYou.app": - when: - os: mac store: steam - /ThisWasForYou.exe: + "/ThisWasForYou.exe": - when: - os: windows store: steam - /ThisWasForYou.sh: + "/ThisWasForYou.sh": - when: - os: linux store: steam steam: id: 1067930 -'Thistledown: A Tragedy of Blood.': +"Thistledown: A Tragedy of Blood.": installDir: Thistledown A Tragedy of Blood: {} launch: - /Thistledown.app: + "/Thistledown.app": - when: - os: mac store: steam - /Thistledown_1.1.exe: + "/Thistledown_1.1.exe": - when: - os: windows store: steam @@ -570692,7 +572247,7 @@ Tho maz: installDir: tho_maz: {} launch: - /thomaz.exe: + "/thomaz.exe": - when: - bit: 64 os: windows @@ -570701,13 +572256,13 @@ Tho maz: id: 668560 Thomas Was Alone: files: - /.config/unity3d/Mike Bithell/Thomas Was Alone: + "/.config/unity3d/Mike Bithell/Thomas Was Alone": tags: - config - save when: - os: linux - /Library/Preferences/unity.Mike Bithel.Thomas Was Alone.plist: + "/Library/Preferences/unity.Mike Bithel.Thomas Was Alone.plist": tags: - config - save @@ -570716,15 +572271,15 @@ Thomas Was Alone: installDir: thomaswasalone: {} launch: - /thomasWasAlone: + "/thomasWasAlone": - when: - os: linux store: steam - /thomasWasAlone.app: + "/thomasWasAlone.app": - when: - os: mac store: steam - /thomaswasalone.exe: + "/thomaswasalone.exe": - when: - os: windows store: steam @@ -570735,14 +572290,14 @@ Thomas Was Alone: - save steam: id: 220780 -Thor's Hammer: +"Thor's Hammer": files: - /THOR*.SAV: + "/THOR*.SAV": tags: - save when: - os: dos - /THOR.CFG: + "/THOR.CFG": tags: - config when: @@ -570751,7 +572306,7 @@ Thorne - Death Merchants: installDir: Thorne: {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: @@ -570760,7 +572315,7 @@ Thorne - Son of Slaves (Ep.2): installDir: Thorne - Son of Slaves (Ep.2): {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: @@ -570769,12 +572324,12 @@ Thornyway: installDir: THORNYWAY - The Game: {} launch: - /TH_GAME_x64.exe: + "/TH_GAME_x64.exe": - when: - bit: 64 os: windows store: steam - /TH_GAME_x86.exe: + "/TH_GAME_x86.exe": - when: - bit: 32 os: windows @@ -570793,12 +572348,12 @@ Those Damn Aliens! VR: id: 573260 Those Who Remain: files: - /AppData/LocalLow/Camel101/Those Who Remain/MyConfig: + "/AppData/LocalLow/Camel101/Those Who Remain/MyConfig": tags: - config when: - os: windows - /AppData/LocalLow/Camel101/Those Who Remain/MySave: + "/AppData/LocalLow/Camel101/Those Who Remain/MySave": tags: - save when: @@ -570808,7 +572363,7 @@ Those Who Remain: installDir: Those Who Remain: {} launch: - /ThoseWhoRemain.exe: + "/ThoseWhoRemain.exe": - arguments: 1875bvhj4yudAwhPo9r when: - bit: 64 @@ -570820,19 +572375,19 @@ Those crazy crows: installDir: Those crazy crows: {} launch: - /Stinky Doo Doo Boy.exe: + "/Stinky Doo Doo Boy.exe": - when: - store: steam steam: id: 1149340 Thoth: files: - /THOTH.sav: + "/THOTH.sav": tags: - save when: - os: windows - /settings.txt: + "/settings.txt": tags: - config when: @@ -570840,11 +572395,11 @@ Thoth: installDir: THOTH: {} launch: - /THOTH.app: + "/THOTH.app": - when: - os: mac store: steam - /THOTH.exe: + "/THOTH.exe": - when: - os: windows store: steam @@ -570858,11 +572413,11 @@ Thousand Threads: installDir: Thousand Threads: {} launch: - /Thousand Threads.app: + "/Thousand Threads.app": - when: - os: mac store: steam - /Thousand Threads.exe: + "/Thousand Threads.exe": - when: - os: windows store: steam @@ -570871,11 +572426,11 @@ Thousand Threads: Thousands of Years Later: steam: id: 453900 -'ThreadSpace: Hyperbol': +"ThreadSpace: Hyperbol": installDir: tshb: {} launch: - /Hyperbol.exe: + "/Hyperbol.exe": - when: - store: steam steam: @@ -570884,25 +572439,25 @@ Threads of Destiny: installDir: Threads of Destiny: {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: id: 424870 -'ThreatGEN: Red vs. Blue': +"ThreatGEN: Red vs. Blue": installDir: ThreatGEN: {} launch: - /ThreatGEN Red vs. Blue.exe: + "/ThreatGEN Red vs. Blue.exe": - when: - bit: 64 os: windows store: steam - /ThreatGENRvB.app: + "/ThreatGENRvB.app": - when: - os: mac store: steam - /ThreatGENRvB.x86_64: + "/ThreatGENRvB.x86_64": - when: - bit: 64 os: linux @@ -570914,7 +572469,7 @@ Three Candyberry Match: id: 677050 Three Cards to Midnight: files: - /save: + "/save": tags: - save when: @@ -570923,7 +572478,7 @@ Three Days: installDir: Three Days: {} launch: - /Threedays.exe: + "/Threedays.exe": - when: - os: windows store: steam @@ -570931,12 +572486,12 @@ Three Days: id: 375580 Three Dead Zed: files: - /SavedGames/Three Dead Zed/3DZ/Player1/3dz.sav: + "/SavedGames/Three Dead Zed/3DZ/Player1/3dz.sav": tags: - save when: - os: windows - /ThreeDeadZed/3DZ/Player1/3dz.sav: + "/ThreeDeadZed/3DZ/Player1/3dz.sav": tags: - save when: @@ -570944,11 +572499,11 @@ Three Dead Zed: installDir: Three Dead Zed: {} launch: - /3dz: + "/3dz": - when: - os: linux store: steam - /Three Dead Zed.exe: + "/Three Dead Zed.exe": - when: - os: windows store: steam @@ -570958,44 +572513,44 @@ Three Digits: installDir: Three Digits: {} launch: - /ThreeDigits.app: + "/ThreeDigits.app": - when: - os: mac store: steam - /ThreeDigits.exe: + "/ThreeDigits.exe": - when: - os: windows store: steam - /ThreeDigits.x86: + "/ThreeDigits.x86": - when: - bit: 32 os: linux store: steam - /ThreeDigits.x86_64: + "/ThreeDigits.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 390570 -'Three Fourths Home: Extended Edition': +"Three Fourths Home: Extended Edition": installDir: Three Fourths Home: {} launch: - /Three Fourths Home Extended Edition.app: + "/Three Fourths Home Extended Edition.app": - when: - os: mac store: steam - /Three Fourths Home Extended Edition.exe: + "/Three Fourths Home Extended Edition.exe": - when: - os: windows store: steam - /Three Fourths Home Extended Edition.x86: + "/Three Fourths Home Extended Edition.x86": - when: - bit: 32 os: linux store: steam - /Three Fourths Home Extended Edition.x86_64: + "/Three Fourths Home Extended Edition.x86_64": - when: - bit: 64 os: linux @@ -571006,7 +572561,7 @@ Three Heroes: installDir: Fairytales Three Heroes: {} launch: - /bin/game.exe: + "/bin/game.exe": - when: - os: windows store: steam @@ -571016,22 +572571,22 @@ Three Kingdoms 2019: installDir: adasanguozhi2018_shuban: {} launch: - /sanguo.exe: + "/sanguo.exe": - when: - os: windows store: steam steam: id: 952120 -'Three Kingdoms VR: Jade Knight': +"Three Kingdoms VR: Jade Knight": installDir: Three Kingdoms VR - Jade Knight: {} steam: id: 731120 -'Three Kingdoms: The Last Warlord': +"Three Kingdoms: The Last Warlord": installDir: Three Kingdoms The Last Warlord: {} launch: - /The Last Warlord.app: + "/The Last Warlord.app": - when: - os: mac store: steam @@ -571049,7 +572604,7 @@ Three Of a Fish: installDir: Three Of a Fish: {} launch: - /Three Of a Fish.exe: + "/Three Of a Fish.exe": - when: - os: windows store: steam @@ -571062,17 +572617,17 @@ Three Twenty One: installDir: Three Twenty One: {} launch: - /321.app: + "/321.app": - when: - bit: 64 os: mac store: steam - /321.exe: + "/321.exe": - when: - bit: 64 os: windows store: steam - /321.game: + "/321.game": - when: - bit: 64 os: linux @@ -571083,7 +572638,7 @@ ThreeStep: installDir: ThreeStep: {} launch: - /ThreeStep.exe: + "/ThreeStep.exe": - when: - os: windows store: steam @@ -571099,19 +572654,20 @@ Thrills & Chills - Roller Coasters: ThrillsAndChillsCoaster: {} steam: id: 520270 -'Thrillville: Off the Rails': +"Thrillville: Off the Rails": files: - /LucasArts/Thrillville 07: + "/LucasArts/Thrillville 07": tags: - save when: - - store: steam + - os: windows + store: steam gog: id: 1505509034 installDir: Thrillville Off the Rails: {} launch: - /Thrillville07.exe: + "/Thrillville07.exe": - when: - store: steam steam: @@ -571120,11 +572676,11 @@ Thrive: installDir: Thrive: {} launch: - /Thrive Launcher.exe: + "/Thrive Launcher.exe": - when: - os: windows store: steam - /launch.sh: + "/launch.sh": - when: - os: linux store: steam @@ -571134,11 +572690,11 @@ Throbax TD: installDir: Throbax TD: {} launch: - /ThrobaxTD.exe: + "/ThrobaxTD.exe": - when: - os: windows store: steam - /mono: + "/mono": - arguments: ThrobaxTD.exe when: - os: linux @@ -571149,7 +572705,7 @@ Throne Quest: installDir: Throne Quest: {} launch: - /Throne Quest.exe: + "/Throne Quest.exe": - when: - os: windows store: steam @@ -571160,12 +572716,12 @@ Throne Rushers: id: 492830 Throne of Darkness: files: - /Config: + "/Config": tags: - config when: - os: windows - /Saved: + "/Saved": tags: - save when: @@ -571176,7 +572732,7 @@ Throne of Lies: installDir: Throne of Lies: {} launch: - /ThroneOfLies.app/Contents/MacOS/ThroneOfLies: + "/ThroneOfLies.app/Contents/MacOS/ThroneOfLies": - when: - os: mac store: steam @@ -571187,9 +572743,9 @@ Throne of the Dead: Throne of the Dead: {} steam: id: 681020 -'Thronebreaker: The Witcher Tales': +"Thronebreaker: The Witcher Tales": files: - /AppData/LocalLow/CDProjektRED/Thronebreaker/SaveData: + "/AppData/LocalLow/CDProjektRED/Thronebreaker/SaveData": tags: - save when: @@ -571199,7 +572755,7 @@ Throne of the Dead: installDir: Thronebreaker The Witcher Tales: {} launch: - /Thronebreaker.exe: + "/Thronebreaker.exe": - when: - bit: 64 os: windows @@ -571212,12 +572768,12 @@ Throne of the Dead: id: 973760 Thronefall: files: - /AppData/LocalLow/Grizzly Games/Thronefall/ThroneSave.sav: + "/AppData/LocalLow/Grizzly Games/Thronefall/ThroneSave.sav": tags: - save when: - os: windows - /Library/Application Support/Grizzly Games/Thronefall/ThroneSave.sav: + "/Library/Application Support/Grizzly Games/Thronefall/ThroneSave.sav": tags: - save when: @@ -571225,11 +572781,11 @@ Thronefall: installDir: Thronefall: {} launch: - /Thronefall.app: + "/Thronefall.app": - when: - os: mac store: steam - /Thronefall.exe: + "/Thronefall.exe": - when: - os: windows store: steam @@ -571242,7 +572798,7 @@ Throttle Powah VR: id: 639220 Through Abandoned: files: - /AppData/LocalLow/KrutovGames/1 Through Abandoned - The Underground City/saves: + "/AppData/LocalLow/KrutovGames/1 Through Abandoned - The Underground City/saves": tags: - save when: @@ -571250,7 +572806,7 @@ Through Abandoned: installDir: Through Abandoned - The Underground City: {} launch: - /1 Through Abandoned - The Underground City.exe: + "/1 Through Abandoned - The Underground City.exe": - when: - os: windows store: steam @@ -571258,7 +572814,7 @@ Through Abandoned: id: 389270 Through Abandoned 2. The Forest: files: - /AppData/LocalLow/KrutovGames/2 Through Abandoned - The Forest/saves: + "/AppData/LocalLow/KrutovGames/2 Through Abandoned - The Forest/saves": tags: - save when: @@ -571266,16 +572822,16 @@ Through Abandoned 2. The Forest: installDir: Through Abandoned 2. The Forest: {} launch: - /2 Through Abandoned - The Forest.exe: + "/2 Through Abandoned - The Forest.exe": - when: - store: steam steam: id: 513340 -'Through Abandoned: The Refuge': +"Through Abandoned: The Refuge": installDir: Through Abandoned 3 The Refuge: {} launch: - /ta3.exe: + "/ta3.exe": - when: - store: steam steam: @@ -571284,13 +572840,13 @@ Through Blocks: installDir: ThroughBlocks: {} launch: - /ThroughBlocks.exe: + "/ThroughBlocks.exe": - when: - os: windows store: steam steam: id: 698610 -'Through The Dark: Prologue': +"Through The Dark: Prologue": installDir: Through The Dark: {} steam: @@ -571299,7 +572855,7 @@ Through The Dust: installDir: Through The Dust: {} launch: - /ThroughTheDust.exe: + "/ThroughTheDust.exe": - when: - bit: 64 os: windows @@ -571310,7 +572866,7 @@ Through The Tomb: installDir: Through The Tomb: {} launch: - /Through_The_Tomb.exe: + "/Through_The_Tomb.exe": - when: - os: windows store: steam @@ -571320,7 +572876,7 @@ Through The Unknown: installDir: Through The Unknown: {} launch: - /Through The Unknown.exe: + "/Through The Unknown.exe": - when: - os: windows store: steam @@ -571332,11 +572888,11 @@ Through the Ages: installDir: Through the Ages: {} launch: - /ThroughTheAges_steam.app/Contents/MacOS/ThroughTheAges_steam: + "/ThroughTheAges_steam.app/Contents/MacOS/ThroughTheAges_steam": - when: - os: mac store: steam - /ThroughTheAges_steam.exe: + "/ThroughTheAges_steam.exe": - when: - os: windows store: steam @@ -571344,17 +572900,17 @@ Through the Ages: id: 758370 Through the Darkest of Times: files: - /TtDoT_Data/StreamingAssets/SaveGames: + "/TtDoT_Data/StreamingAssets/SaveGames": tags: - save when: - os: windows - /TtDoT_Data/StreamingAssets/SaveGames/settings.json: + "/TtDoT_Data/StreamingAssets/SaveGames/settings.json": tags: - config when: - os: windows - /userdata//1003090/remote/settings.json: + "/userdata//1003090/remote/settings.json": tags: - config when: @@ -571364,11 +572920,11 @@ Through the Darkest of Times: installDir: Through The Darkest of Times: {} launch: - /TTDOT.app/Contents/MacOS/TTDOT: + "/TTDOT.app/Contents/MacOS/TTDOT": - when: - os: mac store: steam - /TtDoT.exe: + "/TtDoT.exe": - when: - os: windows store: steam @@ -571382,7 +572938,7 @@ Through the Mirror: installDir: Through the Mirror: {} launch: - /nw.exe: + "/nw.exe": - when: - bit: 64 os: windows @@ -571393,7 +572949,7 @@ Through the Mist and Sky: installDir: tianlanxing: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -571401,12 +572957,12 @@ Through the Mist and Sky: id: 865880 Through the Woods: files: - /Through the Woods_Data: + "/Through the Woods_Data": tags: - config when: - os: windows - /Through the Woods_Data/Savefile.json: + "/Through the Woods_Data/Savefile.json": tags: - save when: @@ -571416,7 +572972,7 @@ Through the Woods: installDir: Through the Woods: {} launch: - /Through the Woods.exe: + "/Through the Woods.exe": - when: - store: steam registry: @@ -571447,17 +573003,17 @@ Thrushbriar Hall: installDir: ThrushbriarHall: {} launch: - /ThrushbriarHall.exe: + "/ThrushbriarHall.exe": - when: - os: windows store: steam steam: id: 749150 -'Thrust & Shoot: Flight School': +"Thrust & Shoot: Flight School": installDir: Thrust & Shoot - Flight School: {} launch: - /Delta4.exe: + "/Delta4.exe": - when: - os: windows store: steam @@ -571467,21 +573023,21 @@ Thrusty Ship: installDir: Thrusty Ship: {} launch: - /Thrusty Ship.exe: + "/Thrusty Ship.exe": - when: - bit: 64 os: windows store: steam - /ThrustyShip.app: + "/ThrustyShip.app": - when: - os: mac store: steam - /ThrustyShip.x86: + "/ThrustyShip.x86": - when: - bit: 32 os: linux store: steam - /ThrustyShip.x86_64: + "/ThrustyShip.x86_64": - when: - bit: 64 os: linux @@ -571497,7 +573053,7 @@ Thugs Law: installDir: Thugs Law: {} launch: - /ThugsLaw.exe: + "/ThugsLaw.exe": - when: - bit: 64 os: windows @@ -571508,7 +573064,7 @@ Thugsters Battle Royale: installDir: Thugsters Battle Royale: {} launch: - /WindowsNoEditor/ThugstersBR.exe: + "/WindowsNoEditor/ThugstersBR.exe": - when: - bit: 64 os: windows @@ -571517,17 +573073,17 @@ Thugsters Battle Royale: id: 1118500 Thumper: files: - /savedata/: + "/savedata/": tags: - save when: - os: windows - /settings.sav: + "/settings.sav": tags: - config when: - os: windows - /Packages/DroolLLC.Thumper_4a0z1ykhafvhy/SystemAppData/wgs: + "/Packages/DroolLLC.Thumper_4a0z1ykhafvhy/SystemAppData/wgs": tags: - save when: @@ -571539,12 +573095,12 @@ Thumper: id: 356400 Thunder Brigade: files: - /Campaign Savegames: + "/Campaign Savegames": tags: - save when: - os: windows - /tbrigade.ini: + "/tbrigade.ini": tags: - config when: @@ -571553,26 +573109,29 @@ Thunder Chase: installDir: ThunderChase: {} launch: - /ThunderChaseMac.app/Contents/MacOS/ThunderChaseMac: + "/ThunderChaseMac.app/Contents/MacOS/ThunderChaseMac": - when: - os: mac store: steam - /ThunderChaseWin.exe: + "/ThunderChaseWin.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam steam: id: 762270 -'Thunder Gun: Revenge of the Mutants': +"Thunder Gun: Revenge of the Mutants": installDir: Thunder Gun Revenge of the Mutants: {} launch: - /TGRotM.app: + "/TGRotM.app": - when: - os: mac store: steam - /TGRotM.exe: + "/TGRotM.exe": - when: - os: windows store: steam @@ -571582,21 +573141,21 @@ Thunder Kid: installDir: Thunder Kid: {} launch: - /Thunder Kid.app: + "/Thunder Kid.app": - when: - os: mac store: steam - /Thunder Kid.exe: + "/Thunder Kid.exe": - when: - os: windows store: steam steam: id: 944590 -'Thunder Kid II: Null Mission': +"Thunder Kid II: Null Mission": installDir: Thunder Kid II: {} launch: - /Thunder Kid 2.exe: + "/Thunder Kid 2.exe": - when: - store: steam steam: @@ -571605,7 +573164,7 @@ Thunder Paw: installDir: Thunder Paw: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -571615,7 +573174,7 @@ Thunder Rally: installDir: Thunder Rally: {} launch: - /ThunderRally.exe: + "/ThunderRally.exe": - when: - os: windows store: steam @@ -571628,7 +573187,7 @@ Thunder Spheres: id: 559300 Thunder Tier One: files: - /Thunder2305/Saved: + "/Thunder2305/Saved": tags: - save when: @@ -571639,7 +573198,7 @@ Thunder Tier One: id: 377300 Thunder Wolves: files: - /Thunder Wolves: + "/Thunder Wolves": tags: - save when: @@ -571647,12 +573206,12 @@ Thunder Wolves: installDir: Thunder Wolves: {} launch: - /ThunderWolves.exe: + "/ThunderWolves.exe": - when: - store: steam steam: id: 232970 -Thunder's Leaves: +"Thunder's Leaves": steam: id: 1129150 ThunderGod: @@ -571664,7 +573223,7 @@ ThunderWheels: installDir: ThunderWheels: {} launch: - /ThunderWheels.exe: + "/ThunderWheels.exe": - when: - store: steam steam: @@ -571674,7 +573233,7 @@ Thunderballs: Thunderballs: {} steam: id: 886220 -'Thunderbird: The Legend Begins': +"Thunderbird: The Legend Begins": installDir: Thunderbird: {} steam: @@ -571683,7 +573242,7 @@ Thunderbolt: installDir: Thunderbolt: {} launch: - /Thunderbolt.exe: + "/Thunderbolt.exe": - when: - store: steam steam: @@ -571692,7 +573251,7 @@ Thunderbolt 2: installDir: Thunderbolt 2: {} launch: - /Thunderbolt2.exe: + "/Thunderbolt2.exe": - when: - store: steam steam: @@ -571701,7 +573260,7 @@ Thunderbowl: installDir: Thunderbowl: {} launch: - /ThunderBowl.exe: + "/ThunderBowl.exe": - when: - os: windows store: steam @@ -571711,7 +573270,7 @@ Thunderflash: installDir: Thunderflash: {} launch: - /Thunderflash.exe: + "/Thunderflash.exe": - when: - os: windows store: steam @@ -571721,7 +573280,7 @@ Thundering Skies: installDir: Thundering Skies: {} launch: - /ThunderingSkies.exe: + "/ThunderingSkies.exe": - when: - os: windows store: steam @@ -571729,12 +573288,12 @@ Thundering Skies: id: 725660 Thunderscape: files: - /OPTIONS.BIN: + "/OPTIONS.BIN": tags: - config when: - os: dos - /SAVE*: + "/SAVE*": tags: - save when: @@ -571745,16 +573304,19 @@ Thy Kingdom Crumble: installDir: Thy Kingdom Crumble: {} launch: - /Thy Kingdom Crumble.app/Contents/MacOS/Thy Kingdom Crumble: + "/Thy Kingdom Crumble.app/Contents/MacOS/Thy Kingdom Crumble": - when: - os: mac store: steam - /Thy Kingdom Crumble.exe: + "/Thy Kingdom Crumble.exe": - when: - bit: 32 os: windows store: steam - /Thy Kingdom Crumble.x86_64: + - bit: 64 + os: windows + store: steam + "/Thy Kingdom Crumble.x86_64": - when: - os: linux store: steam @@ -571764,7 +573326,7 @@ Thy Knights Of Climbalot: installDir: Thy Knights Of Climbalot: {} launch: - /Thy Knights Of Climbalot.exe: + "/Thy Knights Of Climbalot.exe": - when: - os: windows store: steam @@ -571774,7 +573336,7 @@ Thy Sword: installDir: ThySword: {} launch: - /ThySword.exe: + "/ThySword.exe": - when: - os: windows store: steam @@ -571782,32 +573344,34 @@ Thy Sword: id: 560300 Thymesia: files: - /PlagueProject/Saved/Config/WindowsNoEditor: + "/PlagueProject/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /PlagueProject/Saved/SaveGames/: + "/PlagueProject/Saved/SaveGames/": tags: - save when: - os: windows - /Team17/Thymesia/Saved/Config/WindowsNoEditor: + "/Team17/Thymesia/Saved/Config/WindowsNoEditor": tags: - config when: - - store: gog - /Team17/Thymesia/Saved/SaveGames: + - os: windows + store: gog + "/Team17/Thymesia/Saved/SaveGames": tags: - save when: - - store: gog + - os: windows + store: gog gog: id: 1284626411 installDir: Thymesia: {} launch: - /PlagueProject.exe: + "/PlagueProject.exe": - when: - store: steam steam: @@ -571816,7 +573380,7 @@ Tia.sav: installDir: tia.sav: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -571826,25 +573390,25 @@ Tiamat X: installDir: Tiamat X: {} launch: - /Tiamat X.exe: + "/Tiamat X.exe": - when: - os: windows store: steam - /TiamatX: + "/TiamatX": - when: - os: linux store: steam steam: id: 343340 -Tiamat's Drink: +"Tiamat's Drink": installDir: - Tiamat's Drink: {} + "Tiamat's Drink": {} launch: - /Tiamat's Drink.exe: + "/Tiamat's Drink.exe": - when: - os: windows store: steam - /Tiamat's Drink.x86: + "/Tiamat's Drink.x86": - when: - os: linux store: steam @@ -571853,25 +573417,25 @@ Tiamat's Drink: Tiara the Deceiving Crown: steam: id: 1058340 -'Tibetan Quest: Beyond the World''s End': +"Tibetan Quest: Beyond the World's End": installDir: - Tibetan Quest Beyond the World's End: {} + "Tibetan Quest Beyond the World's End": {} launch: - /BWE.exe: + "/BWE.exe": - when: - os: windows store: steam - /BWE_amd64: + "/BWE_amd64": - when: - bit: 64 os: linux store: steam - /BWE_i386: + "/BWE_i386": - when: - bit: 32 os: linux store: steam - /mac_steam.app/Contents/MacOS/mac_steam: + "/mac_steam.app/Contents/MacOS/mac_steam": - when: - os: mac store: steam @@ -571879,12 +573443,12 @@ Tiara the Deceiving Crown: id: 427550 Tibia: files: - /Tibia/packages/Tibia/characterdata: + "/Tibia/packages/Tibia/characterdata": tags: - save when: - os: windows - /Tibia/packages/Tibia/conf: + "/Tibia/packages/Tibia/conf": tags: - config when: @@ -571893,7 +573457,7 @@ Tic Tac Toe Lounge: installDir: Tic Tac Toe Lounge: {} launch: - /TicTacToeLounge.exe: + "/TicTacToeLounge.exe": - when: - os: windows store: steam @@ -571903,20 +573467,20 @@ Tic-Toc-Tower: installDir: Tic-Toc-Tower: {} launch: - /Tic-Toc-Tower.app: + "/Tic-Toc-Tower.app": - when: - os: mac store: steam - /Tic-Toc-Tower.exe: + "/Tic-Toc-Tower.exe": - when: - os: windows store: steam - /Tic-Toc-Tower.x86: + "/Tic-Toc-Tower.x86": - when: - bit: 32 os: linux store: steam - /Tic-Toc-Tower.x86_64: + "/Tic-Toc-Tower.x86_64": - when: - bit: 64 os: linux @@ -571927,7 +573491,7 @@ Tick Hunter: installDir: tick-hunter: {} launch: - /tick-hunter.exe: + "/tick-hunter.exe": - when: - os: windows store: steam @@ -571940,7 +573504,7 @@ Tick Tock Bang Bang: installDir: Tick Tock Bang Bang: {} launch: - /DRTB.exe: + "/DRTB.exe": - when: - os: windows store: steam @@ -571948,7 +573512,7 @@ Tick Tock Bang Bang: id: 460650 Tick Tock Isle: files: - /TTI.sav: + "/TTI.sav": tags: - save when: @@ -571956,15 +573520,15 @@ Tick Tock Isle: installDir: Tick Tock Isle: {} launch: - /Tick Tock Isle.exe: + "/Tick Tock Isle.exe": - when: - os: windows store: steam steam: id: 418440 -'Tick Tock: A Tale for Two': +"Tick Tock: A Tale for Two": files: - /OtherTales/Tick Tock: + "/OtherTales/Tick Tock": tags: - save when: @@ -571972,52 +573536,52 @@ Tick Tock Isle: installDir: TickTock: {} launch: - /Tick Tock.app/Contents/MacOS/Tick Tock: + "/Tick Tock.app/Contents/MacOS/Tick Tock": - when: - os: mac store: steam - /Tick Tock.exe: + "/Tick Tock.exe": - when: - bit: 64 os: windows store: steam steam: id: 790740 -Tick's Tales: +"Tick's Tales": files: - /.prefs/ticks-tales-saves: + "/.prefs/ticks-tales-saves": tags: - save when: - os: windows installDir: - Tick's Tales: {} + "Tick's Tales": {} launch: - /Tick's Tales.app/Contents/MacOS/Tick's Tales: + "/Tick's Tales.app/Contents/MacOS/Tick's Tales": - when: - os: mac store: steam - /TicksTales.exe: + "/TicksTales.exe": - when: - os: windows store: steam - /amd64/Tick's Tales: + "/amd64/Tick's Tales": - when: - bit: 64 os: linux store: steam - /i586/Tick's Tales: + "/i586/Tick's Tales": - when: - bit: 32 os: linux store: steam steam: id: 411610 -'Tick: The Time Based Puzzle Game': +"Tick: The Time Based Puzzle Game": installDir: Tick - The Time Based Puzzle Game: {} launch: - /Tick_V2.exe: + "/Tick_V2.exe": - when: - os: windows store: steam @@ -572027,11 +573591,11 @@ Ticket: installDir: Ticket: {} launch: - /TICKET_mac.app: + "/TICKET_mac.app": - when: - os: mac store: steam - /TICKET_win.exe: + "/TICKET_win.exe": - when: - os: windows store: steam @@ -572043,25 +573607,25 @@ Ticket to Earth: installDir: Ticket to Earth: {} launch: - /Ticket to Earth.app/Contents/MacOS/Ticket to Earth: + "/Ticket to Earth.app/Contents/MacOS/Ticket to Earth": - when: - os: mac store: steam - /Ticket to Earth.exe: + "/Ticket to Earth.exe": - when: - os: windows store: steam steam: id: 636390 -'Ticket to Ride: Classic Edition': +"Ticket to Ride: Classic Edition": files: - /.Ticket to Ride: + "/.Ticket to Ride": tags: - config - save when: - os: linux - /Days of Wonder/Ticket to Ride: + "/Days of Wonder/Ticket to Ride": tags: - config - save @@ -572071,36 +573635,39 @@ Ticket to Earth: id: 1797477952 id: steamExtra: - - 108233 - 108230 - 108231 - 108232 + - 108233 - 350270 - 819410 installDir: Ticket to Ride: {} launch: - /Ticket to Ride: + "/Ticket to Ride": - arguments: steam when: - bit: 32 os: linux store: steam - /Ticket to Ride.app: + - bit: 64 + os: linux + store: steam + "/Ticket to Ride.app": - arguments: steam when: - os: mac store: steam - /Ticket to Ride.exe: + "/Ticket to Ride.exe": - arguments: steam when: - os: windows store: steam steam: id: 108200 -'Ticket to Ride: First Journey': +"Ticket to Ride: First Journey": files: - /AppData/LocalLow/Asmodee Digital/TTR1J/playerparameters.json: + "/AppData/LocalLow/Asmodee Digital/TTR1J/playerparameters.json": tags: - config when: @@ -572108,11 +573675,11 @@ Ticket to Earth: installDir: Ticket to Ride First Journey: {} launch: - /TTR1J.app: + "/TTR1J.app": - when: - os: mac store: steam - /TTR1J.exe: + "/TTR1J.exe": - when: - os: windows store: steam @@ -572126,7 +573693,7 @@ Ticktock: installDir: Ticktock: {} launch: - /ticktock.exe: + "/ticktock.exe": - when: - os: windows store: steam @@ -572136,31 +573703,31 @@ Tico: installDir: Tico: {} launch: - /Tico.app/Contents/MacOS/Tico: + "/Tico.app/Contents/MacOS/Tico": - when: - os: mac store: steam - /Tico.exe: + "/Tico.exe": - when: - bit: 64 os: windows store: steam - /Tico.x86_64: + "/Tico.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 748980 -'Tidal Affair: Before The Storm': +"Tidal Affair: Before The Storm": installDir: Tidal Affair Before The Storm: {} launch: - /TidalAffairBeforeTheStorm.app: + "/TidalAffairBeforeTheStorm.app": - when: - os: mac store: steam - /TidalAffairBeforeTheStorm.exe: + "/TidalAffairBeforeTheStorm.exe": - when: - os: windows store: steam @@ -572170,7 +573737,7 @@ Tidal Shock: installDir: Tidal Shock: {} launch: - /Tidal Shock.exe: + "/Tidal Shock.exe": - when: - os: windows store: steam @@ -572180,7 +573747,7 @@ Tidal Tribe: installDir: Tidal Tribe: {} launch: - /TidalTribe.exe: + "/TidalTribe.exe": - when: - os: windows store: steam @@ -572188,12 +573755,12 @@ Tidal Tribe: id: 1043430 Tidalis: files: - /RuntimeData/settings.dat: + "/RuntimeData/settings.dat": tags: - save when: - os: windows - '/.config/Arcen Games, LLC/Tidalis': + "/.config/Arcen Games, LLC/Tidalis": tags: - config - save @@ -572202,20 +573769,20 @@ Tidalis: installDir: Tidalis: {} launch: - /Tidalis.app: + "/Tidalis.app": - when: - os: mac store: steam - /Tidalis.exe: + "/Tidalis.exe": - when: - os: windows store: steam - /TidalisLinux.x86: + "/TidalisLinux.x86": - when: - bit: 32 os: linux store: steam - /TidalisLinux.x86_64: + "/TidalisLinux.x86_64": - when: - bit: 64 os: linux @@ -572226,7 +573793,7 @@ Tides of Existence: installDir: Tides of Existence: {} launch: - /TIDES OF EXISTENCE.exe: + "/TIDES OF EXISTENCE.exe": - when: - os: windows store: steam @@ -572236,7 +573803,7 @@ Tidy Your Room Simulator: installDir: Tidy Your Room: {} launch: - /TYR.exe: + "/TYR.exe": - when: - os: windows store: steam @@ -572246,7 +573813,7 @@ Tier 1: installDir: Tier 1: {} launch: - /Tier1.exe: + "/Tier1.exe": - when: - os: windows store: steam @@ -572256,7 +573823,7 @@ Tiestru: installDir: Tiestru: {} launch: - /Tiestru.exe: + "/Tiestru.exe": - when: - os: windows store: steam @@ -572266,7 +573833,7 @@ Tiger Fighter 1931: installDir: Tiger Fighter 1931: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -572276,7 +573843,7 @@ Tiger Fighter 1931 Sunset: installDir: Tiger Fighter 1931 Sunset: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -572286,7 +573853,7 @@ Tiger Fighter 1931 Tora!: installDir: Tiger Fighter 1931 Tora: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -572296,7 +573863,7 @@ Tiger Fighter 1931 Tora!Tora!: installDir: Tiger Fighter 1931 Tora!Tora!: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -572306,7 +573873,7 @@ Tiger Fighter 1931 Tora!Tora!Tora!: installDir: Tiger Fighter 1931 Tora!Tora!Tora!: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -572316,7 +573883,7 @@ Tiger Hunt: installDir: Tiger Hunt: {} launch: - /TigerHunt.exe: + "/TigerHunt.exe": - when: - os: windows store: steam @@ -572326,28 +573893,28 @@ Tiger Knight: installDir: Tiger Knight: {} launch: - /frontend/bin/frontend.exe: + "/frontend/bin/frontend.exe": - when: - os: windows store: steam - workingDir: /frontend/bin + workingDir: "/frontend/bin" steam: id: 415660 -'Tiger Knight: Empire War': +"Tiger Knight: Empire War": installDir: TigerKnight_EW: {} launch: - /frontend/bin/frontend.exe: + "/frontend/bin/frontend.exe": - when: - store: steam - workingDir: /frontend/bin + workingDir: "/frontend/bin" steam: id: 534500 Tiger Striker: installDir: Tiger Striker: {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: @@ -572356,7 +573923,7 @@ Tiger Tank 59 A-Gun: installDir: Tiger Tank 59 A-Gun: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -572366,7 +573933,7 @@ Tiger Tank 59 Ⅰ: installDir: Tiger Tank 59 Ⅰ: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -572376,7 +573943,7 @@ Tiger Tank 59 Ⅰ Air Strike: installDir: Tiger Tank 59 Ⅰ Air Strike: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -572386,7 +573953,7 @@ Tiger Tank 59 Ⅰ Battleship: installDir: Tiger Tank 59 Ⅰ Battleship: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -572396,7 +573963,7 @@ Tiger Tank 59 Ⅰ Black Hill Fortress: installDir: Tiger Tank 59 Ⅰ Black Hill Fortress: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -572406,7 +573973,7 @@ Tiger Tank 59 Ⅰ Break The Fog: installDir: Tiger Tank 59 Ⅰ Break The Fog: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -572416,7 +573983,7 @@ Tiger Tank 59 Ⅰ Rainstorm: installDir: Tiger Tank 59 Ⅰ Rainstorm: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -572426,7 +573993,7 @@ Tiger Tank 59 Ⅰ Super Tank: installDir: Tiger Tank 59 Ⅰ Super Tank: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -572436,7 +574003,7 @@ Tiger Tank 59 Ⅰ Volcano: installDir: Tiger Tank 59 Ⅰ Volcano: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -572446,7 +574013,7 @@ Tiger Tank 59 Ⅰ Winter Assault: installDir: Tiger Tank 59 Ⅰ Winter Assault: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -572454,7 +574021,7 @@ Tiger Tank 59 Ⅰ Winter Assault: id: 1073400 Tiger Woods PGA Tour 12: files: - /Tiger Woods PGA TOUR 12 The Masters/UserProfiles/: + "/Tiger Woods PGA TOUR 12 The Masters/UserProfiles/": tags: - config - save @@ -572467,11 +574034,11 @@ Tiki Galore: installDir: Tiki Galore: {} launch: - /TikiGalore.app: + "/TikiGalore.app": - when: - os: mac store: steam - /TikiGalore.exe: + "/TikiGalore.exe": - when: - os: windows store: steam @@ -572481,15 +574048,15 @@ Tiki Man: installDir: Tiki Man: {} launch: - /TikiMan-Steam-Linux.x86: + "/TikiMan-Steam-Linux.x86": - when: - os: linux store: steam - /TikiMan-Steam-Mac.app: + "/TikiMan-Steam-Mac.app": - when: - os: mac store: steam - /TikiMan-Steam-Win.exe: + "/TikiMan-Steam-Win.exe": - when: - os: windows store: steam @@ -572503,7 +574070,7 @@ Tiki Trials: installDir: Tiki Trials: {} launch: - /Tiki Trials.exe: + "/Tiki Trials.exe": - when: - store: steam steam: @@ -572512,15 +574079,15 @@ Tile Battle: installDir: Tile Battle: {} launch: - /TileBattle.app/Contents/MacOS/TileBattle: + "/TileBattle.app/Contents/MacOS/TileBattle": - when: - os: mac store: steam - /TileBattle.exe: + "/TileBattle.exe": - when: - os: windows store: steam - /TileBattle.x86: + "/TileBattle.x86": - when: - os: linux store: steam @@ -572530,7 +574097,7 @@ Tile Conqueror: installDir: Tile Conqueror: {} launch: - /Tile Conqueror.exe: + "/Tile Conqueror.exe": - when: - os: windows store: steam @@ -572540,11 +574107,11 @@ Tile Miner: installDir: Tile Miner: {} launch: - /TileMiner.app: + "/TileMiner.app": - when: - os: mac store: steam - /tileminer.exe: + "/tileminer.exe": - when: - os: windows store: steam @@ -572554,20 +574121,20 @@ Tile Rider: installDir: Tile Rider: {} launch: - /TileRider: - - arguments: '-invertGamePadY' + "/TileRider": + - arguments: "-invertGamePadY" when: - os: linux store: steam - - arguments: '-window -noantialis -invertGamePadY' + - arguments: "-window -noantialis -invertGamePadY" when: - os: linux store: steam - /TileRider.exe: + "/TileRider.exe": - when: - os: windows store: steam - - arguments: '-window -noantialis' + - arguments: "-window -noantialis" when: - os: windows store: steam @@ -572577,7 +574144,7 @@ Tile Typer: installDir: Tile Typer: {} launch: - /TileTyper.exe: + "/TileTyper.exe": - when: - os: windows store: steam @@ -572587,12 +574154,12 @@ TileDynasty FPS Arena: installDir: TileDynasty FPS Arena: {} launch: - /TileDynasty_OSX.app/Contents/MacOS/TileDynasty_OSX: + "/TileDynasty_OSX.app/Contents/MacOS/TileDynasty_OSX": - when: - bit: 64 os: mac store: steam - /TileDynasty_Windows.exe: + "/TileDynasty_Windows.exe": - when: - bit: 64 os: windows @@ -572603,11 +574170,13 @@ Tiles: installDir: Tiles: {} launch: - /Tiles: + "/Tiles": - when: - os: mac store: steam - /Tiles.exe: + - os: linux + store: steam + "/Tiles.exe": - when: - os: windows store: steam @@ -572617,7 +574186,7 @@ Tiles & Tales: installDir: TilesAndTales: {} launch: - /TilesAndTales.exe: + "/TilesAndTales.exe": - when: - os: windows store: steam @@ -572627,11 +574196,11 @@ Tiles Shooter Puzzle Cube: installDir: Tiles Shooter Puzzle Cube: {} launch: - /game: + "/game": - when: - os: linux store: steam - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -572641,25 +574210,25 @@ Tilesweeper: installDir: Tilesweeper: {} launch: - /Tilesweeper.app/Contents/MacOS/Tilesweeper: + "/Tilesweeper.app/Contents/MacOS/Tilesweeper": - when: - os: mac store: steam - /Tilesweeper.exe: + "/Tilesweeper.exe": - when: - os: windows store: steam steam: id: 867180 -'Till the Dawn, Waiting': +"Till the Dawn, Waiting": installDir: TTDW: {} launch: - /TTDW.app/Contents/MacOS/TTDW: + "/TTDW.app/Contents/MacOS/TTDW": - when: - os: mac store: steam - /TTDW.exe: + "/TTDW.exe": - when: - os: windows store: steam @@ -572674,20 +574243,20 @@ Tiltagon: installDir: Tiltagon: {} launch: - /tiltagon.app/Contents/MacOS/tiltagon: + "/tiltagon.app/Contents/MacOS/tiltagon": - when: - os: mac store: steam - /tiltagon.exe: + "/tiltagon.exe": - when: - os: windows store: steam - /tiltagon.x86: + "/tiltagon.x86": - when: - bit: 32 os: linux store: steam - /tiltagon.x86_64: + "/tiltagon.x86_64": - when: - bit: 64 os: linux @@ -572699,15 +574268,15 @@ Tilted Mind: Tilted Mind: {} steam: id: 630260 -'Timber Tennis: Versus': +"Timber Tennis: Versus": installDir: TimberTennisVersus: {} launch: - /timbertennisvs.app: + "/timbertennisvs.app": - when: - os: mac store: steam - /timbertennisvs.exe: + "/timbertennisvs.exe": - when: - os: windows store: steam @@ -572715,7 +574284,7 @@ Tilted Mind: id: 321160 Timber and Stone: files: - /saves: + "/saves": tags: - save when: @@ -572723,11 +574292,11 @@ Timber and Stone: installDir: Timber and Stone: {} launch: - /Timber and Stone.app: + "/Timber and Stone.app": - when: - os: mac store: steam - /Timber and Stone.exe: + "/Timber and Stone.exe": - when: - os: windows store: steam @@ -572737,7 +574306,7 @@ Timber! The Logging Experts: installDir: Timber! The Logging Experts: {} launch: - /Timber.exe: + "/Timber.exe": - when: - os: windows store: steam @@ -572745,7 +574314,7 @@ Timber! The Logging Experts: id: 553100 Timberborn: files: - /Timberborn/Saves: + "/Timberborn/Saves": tags: - save when: @@ -572755,11 +574324,11 @@ Timberborn: installDir: Timberborn: {} launch: - /Timberborn.app: + "/Timberborn.app": - when: - os: mac store: steam - /Timberborn.exe: + "/Timberborn.exe": - when: - bit: 64 os: windows @@ -572770,15 +574339,15 @@ Timberman: installDir: Timberman: {} launch: - /Timberman.app: + "/Timberman.app": - when: - os: mac store: steam - /Timberman.exe: + "/Timberman.exe": - when: - os: windows store: steam - /Timberman.x86_64: + "/Timberman.x86_64": - when: - os: linux store: steam @@ -572788,11 +574357,11 @@ Timberman VS: installDir: TimbermanVS: {} launch: - /TimbermanVS.app: + "/TimbermanVS.app": - when: - os: mac store: steam - /TimbermanVS.exe: + "/TimbermanVS.exe": - when: - os: windows store: steam @@ -572802,15 +574371,15 @@ Timbertales: installDir: Timbertales: {} launch: - /Contents/MacOS/timbertales-steam-osx: + "/Contents/MacOS/timbertales-steam-osx": - when: - os: mac store: steam - /timbertales-steam-linux: + "/timbertales-steam-linux": - when: - os: linux store: steam - /timbertales-steam-win32.exe: + "/timbertales-steam-win32.exe": - when: - os: windows store: steam @@ -572825,7 +574394,7 @@ Time Barbarian Extreme!!: installDir: Time Barbarian Extreme!!: {} launch: - /Time Barbarian Extreme.exe: + "/Time Barbarian Extreme.exe": - when: - os: windows store: steam @@ -572835,7 +574404,7 @@ Time Break: installDir: Time Break: {} launch: - /Time Break.exe: + "/Time Break.exe": - when: - os: windows store: steam @@ -572843,12 +574412,12 @@ Time Break: id: 1056860 Time Break 2121: files: - /TimeBreak2121/Saved/Config/WindowsNoEditor: + "/TimeBreak2121/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /TimeBreak2121/Saved/SaveGames: + "/TimeBreak2121/Saved/SaveGames": tags: - save when: @@ -572856,7 +574425,7 @@ Time Break 2121: installDir: Time Break 2121: {} launch: - /TimeBreak2121.exe: + "/TimeBreak2121.exe": - when: - bit: 64 os: windows @@ -572867,11 +574436,11 @@ Time Carnage: installDir: Time Carnage Classic: {} launch: - /TimeCarnage.app: + "/TimeCarnage.app": - when: - os: mac store: steam - /TimeCarnage.exe: + "/TimeCarnage.exe": - when: - bit: 64 os: windows @@ -572885,7 +574454,7 @@ Time Carnage VR: id: 554280 Time Clickers: files: - /Backups: + "/Backups": tags: - save when: @@ -572893,20 +574462,20 @@ Time Clickers: installDir: TimeClickers: {} launch: - /TimeClickers.app: + "/TimeClickers.app": - when: - os: mac store: steam - /TimeClickers.exe: + "/TimeClickers.exe": - when: - os: windows store: steam - /TimeClickers.x86: + "/TimeClickers.x86": - when: - bit: 32 os: linux store: steam - /TimeClickers.x86_64: + "/TimeClickers.x86_64": - when: - bit: 64 os: linux @@ -572923,11 +574492,11 @@ Time Commando: installDir: Time Commando: {} launch: - /Contents/MacOS/Launcher: + "/Contents/MacOS/Launcher": - when: - os: mac store: steam - /LaunchTimeCommando.bat: + "/LaunchTimeCommando.bat": - when: - os: windows store: steam @@ -572940,7 +574509,7 @@ Time Drifter: installDir: Time Drifter: {} launch: - /TimeDrifter-1.8.exe: + "/TimeDrifter-1.8.exe": - when: - os: windows store: steam @@ -572950,16 +574519,16 @@ Time For Quest: installDir: Time For Quest: {} launch: - /Game.app/Contents/MacOS/nwjs: + "/Game.app/Contents/MacOS/nwjs": - when: - os: mac store: steam - /Game.exe: - - arguments: '--in-process-gpu' + "/Game.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam - /nw: + "/nw": - when: - os: linux store: steam @@ -572969,48 +574538,48 @@ Time For You - Chapter 01: installDir: Time For You: {} launch: - /TIME_FOR_YOU(0.10.0).app: + "/TIME_FOR_YOU(0.10.0).app": - when: - os: mac store: steam - /TIME_FOR_YOU(0.10.0).exe: + "/TIME_FOR_YOU(0.10.0).exe": - when: - os: windows store: steam - /TIME_FOR_YOU(0.10.0).sh: + "/TIME_FOR_YOU(0.10.0).sh": - when: - os: linux store: steam steam: id: 1371660 -'Time Fragments: 24h in Capua': +"Time Fragments: 24h in Capua": steam: id: 1163920 Time Gap Mystery: installDir: Time Gap Mystery: {} launch: - /TimeGap.exe: + "/TimeGap.exe": - when: - os: windows store: steam steam: id: 500150 -'Time Gate: Knight''s Chase': +"Time Gate: Knight's Chase": gog: id: 1365065972 installDir: Time Gate Knight Chase: {} launch: - /dosbox.exe: + "/dosbox.exe": - when: - os: windows store: steam steam: id: 781280 -'Time Gentlemen, Please!': +"Time Gentlemen, Please!": files: - '/Saved Games/Time Gentlemen, Please': + "/Saved Games/Time Gentlemen, Please": tags: - config - save @@ -573019,12 +574588,12 @@ Time Gap Mystery: gog: id: 1207662993 installDir: - 'Time Gentlemen, Please!': {} + "Time Gentlemen, Please!": {} launch: - /TGP.exe: + "/TGP.exe": - when: - store: steam - /winsetup.exe: + "/winsetup.exe": - when: - store: steam steam: @@ -573036,31 +574605,31 @@ Time Gun: installDir: Time Gun: {} launch: - /Time Gun.app: + "/Time Gun.app": - when: - os: mac store: steam - /Time Gun.exe: + "/Time Gun.exe": - when: - os: windows store: steam steam: id: 650770 -'Time Killers: CatchOut': +"Time Killers: CatchOut": installDir: Time Killers CatchOut: {} launch: - /CatchOut.exe: + "/CatchOut.exe": - when: - os: windows store: steam steam: id: 735520 -'Time Killers: Spot Race': +"Time Killers: Spot Race": installDir: Time Killers Spot Race: {} launch: - /SpotRace.exe: + "/SpotRace.exe": - when: - store: steam steam: @@ -573069,7 +574638,7 @@ Time Leap Paradise Super Live!: installDir: Time Leap Paradise SUPER LIVE!: {} launch: - /tlpsl.exe: + "/tlpsl.exe": - when: - store: steam steam: @@ -573080,7 +574649,7 @@ Time Loader: installDir: Time Loader: {} launch: - /Time Loader.exe: + "/Time Loader.exe": - when: - store: steam steam: @@ -573094,11 +574663,11 @@ Time Loop Fighter: installDir: Time Loop Fighter: {} launch: - /Time_Loop_Fighter.exe: + "/Time_Loop_Fighter.exe": - when: - os: windows store: steam - /Time_Loop_Fighter.x86_64: + "/Time_Loop_Fighter.x86_64": - when: - os: linux store: steam @@ -573109,75 +574678,75 @@ Time Machine VR: Time Machine VR: {} steam: id: 356180 -'Time Mysteries 2: The Ancient Spectres': +"Time Mysteries 2: The Ancient Spectres": installDir: Time Mysteries The Ancient Spectres: {} launch: - /TimeMysteries_TheAncientSpectres.exe: + "/TimeMysteries_TheAncientSpectres.exe": - when: - bit: 32 os: windows store: steam - /TimeMysteries_TheAncientSpectres_amd64: + "/TimeMysteries_TheAncientSpectres_amd64": - when: - bit: 64 os: linux store: steam - /TimeMysteries_TheAncientSpectres_i386: + "/TimeMysteries_TheAncientSpectres_i386": - when: - bit: 32 os: linux store: steam - /mac_steam.app/Contents/MacOS/mac_steam: + "/mac_steam.app/Contents/MacOS/mac_steam": - when: - os: mac store: steam steam: id: 313650 -'Time Mysteries 3: The Final Enigma': +"Time Mysteries 3: The Final Enigma": installDir: Time Mysteries The Final Enigma: {} launch: - /TimeMysteries_TheFinalEnigma.exe: + "/TimeMysteries_TheFinalEnigma.exe": - when: - bit: 32 os: windows store: steam - /TimeMysteries_TheFinalEnigma_amd64: + "/TimeMysteries_TheFinalEnigma_amd64": - when: - bit: 64 os: linux store: steam - /TimeMysteries_TheFinalEnigma_i386: + "/TimeMysteries_TheFinalEnigma_i386": - when: - bit: 32 os: linux store: steam - /mac_steam.app/Contents/MacOS/mac_steam: + "/mac_steam.app/Contents/MacOS/mac_steam": - when: - os: mac store: steam steam: id: 319320 -'Time Mysteries: Inheritance - Remastered': +"Time Mysteries: Inheritance - Remastered": installDir: Time Mysteries Inheritance Remastered: {} launch: - /TimeMysteries_Inheritance.exe: + "/TimeMysteries_Inheritance.exe": - when: - os: windows store: steam - /TimeMysteries_Inheritance_amd64: + "/TimeMysteries_Inheritance_amd64": - when: - bit: 64 os: linux store: steam - /TimeMysteries_Inheritance_i386: + "/TimeMysteries_Inheritance_i386": - when: - bit: 32 os: linux store: steam - /mac_steam.app/Contents/MacOS/mac_steam: + "/mac_steam.app/Contents/MacOS/mac_steam": - when: - os: mac store: steam @@ -573190,14 +574759,14 @@ Time Ramesside: installDir: Time Ramesside: {} launch: - /TimeRammeside.exe: + "/TimeRammeside.exe": - when: - store: steam steam: id: 290650 Time Recoil: files: - /10tons/Time_Recoil: + "/10tons/Time_Recoil": tags: - config when: @@ -573205,15 +574774,15 @@ Time Recoil: installDir: Time Recoil: {} launch: - /TimeRecoil: + "/TimeRecoil": - when: - os: linux store: steam - /TimeRecoil.app: + "/TimeRecoil.app": - when: - os: mac store: steam - /TimeRecoil.exe: + "/TimeRecoil.exe": - when: - os: windows store: steam @@ -573223,21 +574792,21 @@ Time Rifters: installDir: TimeRifters: {} launch: - /TimeRifters.app: + "/TimeRifters.app": - when: - os: mac store: steam - - arguments: '-UseRift' + - arguments: "-UseRift" when: - os: linux store: steam - /TimeRifters.exe: - - arguments: '-force-d3d9' + "/TimeRifters.exe": + - arguments: "-force-d3d9" when: - os: windows store: steam - /TimeRifters_DirectToRift.exe: - - arguments: '-UseRift' + "/TimeRifters_DirectToRift.exe": + - arguments: "-UseRift" when: - os: linux store: steam @@ -573247,12 +574816,12 @@ Time Skip: installDir: Time Skip: {} launch: - /Windows32/ParadoxParadigm2.exe: - - arguments: '-fullscreen' + "/Windows32/ParadoxParadigm2.exe": + - arguments: "-fullscreen" when: - store: steam - /Windows64/ParadoxParadigm2.exe: - - arguments: '-fullscreen' + "/Windows64/ParadoxParadigm2.exe": + - arguments: "-fullscreen" when: - store: steam steam: @@ -573261,20 +574830,20 @@ Time Splatter: installDir: Time Splatter: {} launch: - /TimeSplatter.app/Contents/MacOS/TimeSplatter: + "/TimeSplatter.app/Contents/MacOS/TimeSplatter": - when: - os: mac store: steam - /TimeSplatter.exe: + "/TimeSplatter.exe": - when: - os: windows store: steam - /TimeSplatter.x86: + "/TimeSplatter.x86": - when: - bit: 32 os: linux store: steam - /TimeSplatter.x86_64: + "/TimeSplatter.x86_64": - when: - bit: 64 os: linux @@ -573285,7 +574854,7 @@ Time Squared: installDir: Time Squared: {} launch: - /bin/win_x64_release/TimeSquared.exe: + "/bin/win_x64_release/TimeSquared.exe": - when: - bit: 64 os: windows @@ -573296,15 +574865,15 @@ Time Tenshi: installDir: Time Tenshi: {} launch: - /Time Tenshi.app/Contents/MacOS/Time Tenshi: + "/Time Tenshi.app/Contents/MacOS/Time Tenshi": - when: - os: mac store: steam - /Time Tenshi.exe: + "/Time Tenshi.exe": - when: - os: windows store: steam - /Time Tenshi.sh: + "/Time Tenshi.sh": - when: - os: linux store: steam @@ -573314,51 +574883,51 @@ Time Tenshi 2: installDir: Time Tenshi 2: {} launch: - /Time Tenshi 2.app/Contents/MacOS/Time Tenshi 2: + "/Time Tenshi 2.app/Contents/MacOS/Time Tenshi 2": - when: - os: mac store: steam - /Time Tenshi 2.exe: + "/Time Tenshi 2.exe": - when: - os: windows store: steam - /Time Tenshi 2.sh: + "/Time Tenshi 2.sh": - when: - os: linux store: steam steam: id: 490160 -'Time Tenshi Paradox: Episode 1': +"Time Tenshi Paradox: Episode 1": installDir: Time Tenshi Paradox Episode 1: {} launch: - /Time Tenshi Paradox Episode 1.app/Contents/MacOS/Time Tenshi Paradox Episode 1: + "/Time Tenshi Paradox Episode 1.app/Contents/MacOS/Time Tenshi Paradox Episode 1": - when: - os: mac store: steam - /Time Tenshi Paradox Episode 1.exe: + "/Time Tenshi Paradox Episode 1.exe": - when: - os: windows store: steam - /Time Tenshi Paradox Episode 1.sh: + "/Time Tenshi Paradox Episode 1.sh": - when: - os: linux store: steam steam: id: 763910 -'Time Tenshi Paradox: Episode 2': +"Time Tenshi Paradox: Episode 2": installDir: Time Tenshi Paradox Episode 2: {} launch: - /Time Tenshi Paradox Episode 2.app/Contents/MacOS/Time Tenshi Paradox Episode 2: + "/Time Tenshi Paradox Episode 2.app/Contents/MacOS/Time Tenshi Paradox Episode 2": - when: - os: mac store: steam - /Time Tenshi Paradox Episode 2.exe: + "/Time Tenshi Paradox Episode 2.exe": - when: - os: windows store: steam - /Time Tenshi Paradox Episode 2.sh: + "/Time Tenshi Paradox Episode 2.sh": - when: - os: linux store: steam @@ -573368,7 +574937,7 @@ Time To Parkour: installDir: Time To Parkour: {} launch: - /Time To Parkour.exe: + "/Time To Parkour.exe": - when: - os: windows store: steam @@ -573378,7 +574947,7 @@ Time To Stop Time: installDir: Time To Stop Time: {} launch: - /TimeToStopTime.exe: + "/TimeToStopTime.exe": - when: - store: steam steam: @@ -573387,7 +574956,7 @@ Time To Walk Alone: installDir: Time_To_Walk_Alone: {} launch: - /AITD.exe: + "/AITD.exe": - when: - os: windows store: steam @@ -573402,11 +574971,11 @@ Time Trap - Hidden Objects: installDir: Time Trap - Hidden Objects: {} launch: - /Time Trap x86.exe: + "/Time Trap x86.exe": - when: - os: windows store: steam - /TimeTrapX.app: + "/TimeTrapX.app": - when: - os: mac store: steam @@ -573416,7 +574985,7 @@ Time Travel Trainer: installDir: Time Travel Trainer: {} launch: - /ttt_windows.exe: + "/ttt_windows.exe": - when: - os: windows store: steam @@ -573440,11 +575009,11 @@ Time Up: installDir: Time Up: {} launch: - /Time Up.app: + "/Time Up.app": - when: - os: mac store: steam - /TimeUp.exe: + "/TimeUp.exe": - when: - os: windows store: steam @@ -573454,7 +575023,7 @@ Time Virus: installDir: Time Virus: {} launch: - /Time Virus.exe: + "/Time Virus.exe": - when: - store: steam steam: @@ -573466,11 +575035,11 @@ Time Warpers: installDir: Time Warpers: {} launch: - /TimeWarpers.app: + "/TimeWarpers.app": - when: - os: mac store: steam - /TimeWarpers.exe: + "/TimeWarpers.exe": - when: - os: windows store: steam @@ -573483,27 +575052,27 @@ Time Warrior Z VR: id: 1041650 Time Warriors: files: - /HISTORY.DAT: + "/HISTORY.DAT": tags: - save when: - os: dos - /START.STP: + "/START.STP": tags: - config when: - os: dos - /WARTIM.DEF: + "/WARTIM.DEF": tags: - config when: - os: dos - /history.dat: + "/history.dat": tags: - save when: - os: windows - /wartim.def: + "/wartim.def": tags: - config when: @@ -573512,7 +575081,7 @@ Time in Time: installDir: Time in Time: {} launch: - /timeintime.exe: + "/timeintime.exe": - when: - os: windows store: steam @@ -573522,20 +575091,20 @@ Time of Dragons: installDir: TimeOfDragons: {} launch: - /tod.app: + "/tod.app": - when: - os: mac store: steam - /tod.exe: + "/tod.exe": - when: - os: windows store: steam - /tod.x86: + "/tod.x86": - when: - bit: 32 os: linux store: steam - /tod.x86_64: + "/tod.x86_64": - when: - bit: 64 os: linux @@ -573546,7 +575115,7 @@ Time of Fury: installDir: Time of Fury: {} launch: - /tof_setup.exe: + "/tof_setup.exe": - when: - store: steam steam: @@ -573558,7 +575127,7 @@ Time of the Moon: installDir: Time of the Moon: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -573568,7 +575137,7 @@ Time of the zombies: installDir: time of the zombies: {} launch: - /time_of_the_zombies.exe: + "/time_of_the_zombies.exe": - when: - store: steam steam: @@ -573577,7 +575146,7 @@ Time on Frog Island: installDir: Time On Frog Island: {} launch: - /TimeOnFrogIsland.exe: + "/TimeOnFrogIsland.exe": - when: - os: windows store: steam @@ -573587,7 +575156,7 @@ Time to Fight: installDir: Time to Fight: {} launch: - /timetofight.exe: + "/timetofight.exe": - when: - os: windows store: steam @@ -573596,25 +575165,25 @@ Time to Fight: Time traveler Marie: steam: id: 1170630 -'Time, Space and Matter': +"Time, Space and Matter": installDir: - 'Time, Space and Matter': {} + "Time, Space and Matter": {} launch: - '/TSM.app/Contents/MacOS/Time, Space and Matter': + "/TSM.app/Contents/MacOS/Time, Space and Matter": - when: - os: mac store: steam - /TSM.exe: + "/TSM.exe": - when: - os: windows store: steam steam: id: 639180 -'Time-Crosser: Joan of Arc': +"Time-Crosser: Joan of Arc": installDir: TC-JOA: {} launch: - /sangirl.exe: + "/sangirl.exe": - when: - os: windows store: steam @@ -573629,11 +575198,11 @@ TimeFall: installDir: TimeFall: {} launch: - /TimeFall.app: + "/TimeFall.app": - when: - os: mac store: steam - /TimeFall.exe: + "/TimeFall.exe": - when: - os: windows store: steam @@ -573643,7 +575212,7 @@ TimeMelters - Challenges: installDir: TimeMelters - Challenges: {} launch: - /TimemeltersChallenges.exe: + "/TimemeltersChallenges.exe": - when: - bit: 64 os: windows @@ -573654,21 +575223,21 @@ TimeOver: installDir: Timeover: {} launch: - /Timeover.exe: + "/Timeover.exe": - when: - os: windows store: steam steam: id: 911320 -'TimeScar: Hyperion': +"TimeScar: Hyperion": installDir: TimeScar Hyperion: {} launch: - /TimeScar_Hyperion.app/Contents/MacOS/TimeScar_Hyperion: + "/TimeScar_Hyperion.app/Contents/MacOS/TimeScar_Hyperion": - when: - os: mac store: steam - /TimeScar_Hyperion.exe: + "/TimeScar_Hyperion.exe": - when: - os: windows store: steam @@ -573676,7 +575245,7 @@ TimeOver: id: 908730 TimeShift: files: - /UserConfigs: + "/UserConfigs": tags: - config - save @@ -573687,17 +575256,17 @@ TimeShift: installDir: TimeShift: {} launch: - /bin/TimeShift.Exe: + "/bin/TimeShift.Exe": - when: - store: steam - workingDir: /bin + workingDir: "/bin" steam: id: 10130 TimeShifters: installDir: TimeShifters: {} launch: - /TimeShifters.exe: + "/TimeShifters.exe": - when: - os: windows store: steam @@ -573707,15 +575276,15 @@ TimeTekker: installDir: TimeTekker: {} launch: - /TimeTekker Linux/TimeTekker.x86: + "/TimeTekker Linux/TimeTekker.x86": - when: - os: linux store: steam - /TimeTekker Mac/TimeTekker.app: + "/TimeTekker Mac/TimeTekker.app": - when: - os: mac store: steam - /TimeTekker Windows/TimeTekker.exe: + "/TimeTekker Windows/TimeTekker.exe": - when: - os: windows store: steam @@ -573738,16 +575307,19 @@ Timeflow - Time and Money Simulator: installDir: Timeflow: {} launch: - /Timeflow.app: + "/Timeflow.app": - when: - os: mac store: steam - /Timeflow.exe: + "/Timeflow.exe": - when: - bit: 32 os: windows store: steam - /Timeflow.x86_64: + - bit: 64 + os: windows + store: steam + "/Timeflow.x86_64": - when: - bit: 64 os: linux @@ -573760,7 +575332,7 @@ Timelapse: installDir: Timelapse: {} launch: - /TL_Launcher.exe: + "/TL_Launcher.exe": - when: - os: windows store: steam @@ -573770,25 +575342,25 @@ Timeless: installDir: Timeless: {} launch: - /Timeless.exe: + "/Timeless.exe": - when: - store: steam steam: id: 1091690 -'Timeless: The Forgotten Town': +"Timeless: The Forgotten Town": installDir: - Timeless The Forgotten Town Collector's Edition: {} + "Timeless The Forgotten Town Collector's Edition": {} launch: - /TheTimelessTownCE.exe: + "/TheTimelessTownCE.exe": - when: - store: steam steam: id: 569900 -'Timeless: The Lost Castle': +"Timeless: The Lost Castle": installDir: Timeless The Lost Castle: {} launch: - /Timeless_The_Lost_Castle.exe: + "/Timeless_The_Lost_Castle.exe": - when: - os: windows store: steam @@ -573796,7 +575368,7 @@ Timeless: id: 729780 Timelie: files: - /AppData/LocalLow/Urnique Studio/Timelie: + "/AppData/LocalLow/Urnique Studio/Timelie": tags: - save when: @@ -573806,11 +575378,11 @@ Timelie: installDir: Timelie: {} launch: - /Timelie.app/Contents/MacOS/Timelie: + "/Timelie.app/Contents/MacOS/Timelie": - when: - os: mac store: steam - /Timelie.exe: + "/Timelie.exe": - when: - os: windows store: steam @@ -573822,47 +575394,47 @@ Timelie: id: 1150950 Timeline: files: - /Content/config.cfg: + "/Content/config.cfg": tags: - config when: - os: windows - /SavedGames: + "/SavedGames": tags: - save when: - os: windows - /content.ini: + "/content.ini": tags: - config when: - os: windows -'Timelines: Assault on America': +"Timelines: Assault on America": installDir: Timelines - Assault on America: {} launch: - /bin/rts_game.exe: + "/bin/rts_game.exe": - when: - os: windows store: steam - workingDir: /bin - /bin/rts_game_linux32: + workingDir: "/bin" + "/bin/rts_game_linux32": - when: - os: linux store: steam - workingDir: /bin - /bin/rts_game_osx: + workingDir: "/bin" + "/bin/rts_game_osx": - when: - os: mac store: steam - workingDir: /bin + workingDir: "/bin" steam: id: 234060 Timen Runner: installDir: Timen runner: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -573872,7 +575444,7 @@ Timension: installDir: Timension: {} launch: - /Timension.exe: + "/Timension.exe": - when: - os: windows store: steam @@ -573887,45 +575459,45 @@ Timequest: id: 1297560 Times of Lore: files: - /SAVED.GAM: + "/SAVED.GAM": tags: - save when: - os: dos Timespinner: files: - /Library/Application Support/Timespinner/Timespinner/AllPlayers/Config.sav: + "/Library/Application Support/Timespinner/Timespinner/AllPlayers/Config.sav": tags: - config when: - os: mac - /Library/Application Support/Timespinner/Timespinner/AllPlayers/TSSave.sav: + "/Library/Application Support/Timespinner/Timespinner/AllPlayers/TSSave.sav": tags: - save when: - os: mac - /SavedGames/Timespinner/Timespinner/AllPlayers/Config.sav: + "/SavedGames/Timespinner/Timespinner/AllPlayers/Config.sav": tags: - config when: - os: windows - /SavedGames/Timespinner/Timespinner/AllPlayers/TSSave.sav: + "/SavedGames/Timespinner/Timespinner/AllPlayers/TSSave.sav": tags: - save when: - os: windows - /Packages/Chucklefish.Timespinner_ywkyrypjzhpx8/SystemAppData/wgs/000901F1D18A9CED_000000000000000000000000647449F5/910BFBDB2003453BB0562B831A897F8E: + "/Packages/Chucklefish.Timespinner_ywkyrypjzhpx8/SystemAppData/wgs/000901F1D18A9CED_000000000000000000000000647449F5/910BFBDB2003453BB0562B831A897F8E": tags: - save when: - os: windows store: microsoft - /Timespinner/Timespinner/AllPlayers/Config.sav: + "/Timespinner/Timespinner/AllPlayers/Config.sav": tags: - config when: - os: linux - /Timespinner/Timespinner/AllPlayers/TSSave.sav: + "/Timespinner/Timespinner/AllPlayers/TSSave.sav": tags: - save when: @@ -573935,36 +575507,36 @@ Timespinner: installDir: Timespinner: {} launch: - /Timespinner: + "/Timespinner": - when: - os: linux store: steam - /Timespinner.app: + "/Timespinner.app": - when: - os: mac store: steam - /Timespinner.exe: + "/Timespinner.exe": - when: - os: windows store: steam steam: id: 368620 -Timmy's Cooking Show: +"Timmy's Cooking Show": steam: id: 1143460 -'Timmy''s adventures : VerbMon': +"Timmy's adventures : VerbMon": installDir: - Timmy's adventures VerbMon: {} + "Timmy's adventures VerbMon": {} launch: - /Timmy's Adventures VerbMon.exe: + "/Timmy's Adventures VerbMon.exe": - when: - os: windows store: steam steam: id: 1152570 -Timon & Pumbaa's Jungle Games: +"Timon & Pumbaa's Jungle Games": files: - /7THLEVEL.INI: + "/7THLEVEL.INI": tags: - config - save @@ -573974,7 +575546,7 @@ Timore 5: installDir: Timore 5: {} launch: - /Timore 5.exe: + "/Timore 5.exe": - when: - os: windows store: steam @@ -573984,7 +575556,7 @@ Timore 6: installDir: Timore 6: {} launch: - /Timore 6.exe: + "/Timore 6.exe": - when: - os: windows store: steam @@ -573994,19 +575566,19 @@ Timore Inferno: installDir: Timore Inferno: {} launch: - /Timore Inferno.exe: + "/Timore Inferno.exe": - when: - os: windows store: steam steam: id: 486360 -Timothy Leary's Mind Mirror: +"Timothy Leary's Mind Mirror": gog: id: 1317760810 installDir: Timothy Learys Mind MIrror: {} launch: - /mm.bat: + "/mm.bat": - when: - store: steam steam: @@ -574015,7 +575587,7 @@ Timothy and the Mysterious Forest: installDir: Timothy and the Mysterious Forest: {} launch: - /Timothy and the Mysterious Forest.exe: + "/Timothy and the Mysterious Forest.exe": - when: - os: windows store: steam @@ -574023,7 +575595,7 @@ Timothy and the Mysterious Forest: id: 1096980 Tin Can: files: - /AppData/LocalLow/Tin Can Studio/Tin Can: + "/AppData/LocalLow/Tin Can Studio/Tin Can": tags: - config when: @@ -574036,7 +575608,7 @@ Tin Can: installDir: Tin Can: {} launch: - /Tin Can Main/Tin Can/Tin Can.exe: + "/Tin Can Main/Tin Can/Tin Can.exe": - when: - bit: 64 os: windows @@ -574045,7 +575617,7 @@ Tin Can: id: 1315980 Tin Hearts: files: - /AppData/LocalLow/Rogue Sun/Tin Hearts/PlayerProfiles/: + "/AppData/LocalLow/Rogue Sun/Tin Hearts/PlayerProfiles/": tags: - save when: @@ -574058,8 +575630,8 @@ Tin Hearts: installDir: Tin Hearts: {} launch: - /Tin Hearts.exe: - - arguments: '-vrmode None' + "/Tin Hearts.exe": + - arguments: "-vrmode None" when: - os: windows store: steam @@ -574069,25 +575641,25 @@ Tin Star: installDir: TinStar: {} launch: - /Tin Star.app/Contents/MacOS/Tin Star: + "/Tin Star.app/Contents/MacOS/Tin Star": - when: - os: mac store: steam - /TinStar: + "/TinStar": - when: - os: linux store: steam - /TinStar.exe: + "/TinStar.exe": - when: - os: windows store: steam steam: id: 375130 -'Tina: Swordswoman of the Scarlet Prison': +"Tina: Swordswoman of the Scarlet Prison": installDir: Tina Swordswoman of the Scarlet Prison: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -574097,15 +575669,15 @@ Tinboy: installDir: Tinboy: {} launch: - /Tinboy.app: + "/Tinboy.app": - when: - os: mac store: steam - /Tinboy.exe: + "/Tinboy.exe": - when: - os: windows store: steam - /Tinboy.x86_64: + "/Tinboy.x86_64": - when: - os: linux store: steam @@ -574115,21 +575687,21 @@ Tinertia: installDir: Tinertia: {} launch: - /Tinertia-LinuxUniversal.x86: + "/Tinertia-LinuxUniversal.x86": - when: - bit: 32 os: linux store: steam - /Tinertia-LinuxUniversal.x86_64: + "/Tinertia-LinuxUniversal.x86_64": - when: - bit: 64 os: linux store: steam - /Tinertia-OSX.app: + "/Tinertia-OSX.app": - when: - os: mac store: steam - /Tinertia-Windows.exe: + "/Tinertia-Windows.exe": - when: - os: windows store: steam @@ -574145,7 +575717,7 @@ Tinhead: installDir: Tinhead: {} launch: - /tinhead.exe: + "/tinhead.exe": - when: - os: windows store: steam @@ -574158,7 +575730,7 @@ TinkerQuarry: installDir: TinkerQuarry: {} launch: - /TinkerQuarry/RPG_RT.exe: + "/TinkerQuarry/RPG_RT.exe": - when: - os: windows store: steam @@ -574168,7 +575740,7 @@ Tinkr Garage: installDir: TinkrGarage: {} launch: - /TinkrGarage/TinkrGarage.exe: + "/TinkrGarage/TinkrGarage.exe": - when: - bit: 64 os: windows @@ -574178,32 +575750,32 @@ Tinkr Garage: Tinselfly: steam: id: 1113840 -'Tintin Reporter: Cigars of the Pharaoh': +"Tintin Reporter: Cigars of the Pharaoh": gog: id: 1538541953 installDir: Tintin - Cigars of the Pharaoh: {} launch: - /Cigars.exe: + "/Cigars.exe": - when: - store: steam steam: id: 2125090 -Tiny & Big in Grandpa's Leftovers: +"Tiny & Big in Grandpa's Leftovers": files: - /.tinyandbiggrandpasleftovers: + "/.tinyandbiggrandpasleftovers": tags: - config - save when: - os: linux - /Library/Application Support/TinyAndBigGrandpasLeftovers: + "/Library/Application Support/TinyAndBigGrandpasLeftovers": tags: - config - save when: - os: mac - /userdata//205910: + "/userdata//205910": tags: - config - save @@ -574214,39 +575786,39 @@ Tiny & Big in Grandpa's Leftovers: installDir: TinyAndBig: {} launch: - /bin64/tinyandbig.exe: - - arguments: '--dialog=0' + "/bin64/tinyandbig.exe": + - arguments: "--dialog=0" when: - bit: 64 os: windows store: steam - /tinyandbig: - - arguments: '--dialog=0' + "/tinyandbig": + - arguments: "--dialog=0" when: - os: linux store: steam - /tinyandbig.app/Contents/MacOS/tinyandbig: - - arguments: '--dialog=0' + "/tinyandbig.app/Contents/MacOS/tinyandbig": + - arguments: "--dialog=0" when: - os: mac store: steam - /tinyandbig.exe: - - arguments: '--dialog=0' + "/tinyandbig.exe": + - arguments: "--dialog=0" when: - bit: 32 os: windows store: steam steam: id: 205910 -'Tiny & Tall: Gleipnir': +"Tiny & Tall: Gleipnir": installDir: Tiny and tall: {} launch: - /Gleipnir.exe: + "/Gleipnir.exe": - when: - os: windows store: steam - /Visionaire Player.app: + "/Visionaire Player.app": - when: - os: mac store: steam @@ -574256,20 +575828,20 @@ Tiny Barbarian DX: installDir: TinyBarbarianDX: {} launch: - /TinyBarbarian.app/Contents/MacOS/TinyBarbarian: + "/TinyBarbarian.app/Contents/MacOS/TinyBarbarian": - when: - os: mac store: steam - /TinyBarbarianDX.exe: + "/TinyBarbarianDX.exe": - when: - os: windows store: steam - /run-i386.sh: + "/run-i386.sh": - when: - bit: 32 os: linux store: steam - /run-x64.sh: + "/run-x64.sh": - when: - bit: 64 os: linux @@ -574280,11 +575852,11 @@ Tiny Battle Simulator: installDir: TinyBattleSimulator: {} launch: - /TinyBattleSimulator.app/Contents/MacOS/TinyBattleSimulator: + "/TinyBattleSimulator.app/Contents/MacOS/TinyBattleSimulator": - when: - os: mac store: steam - /TinyBattleSimulator.exe: + "/TinyBattleSimulator.exe": - when: - os: windows store: steam @@ -574294,11 +575866,11 @@ Tiny Bird Garden Deluxe: installDir: Tiny Bird Garden: {} launch: - /Tiny Bird Garden Deluxe.app: + "/Tiny Bird Garden Deluxe.app": - when: - os: mac store: steam - /Tiny Bird Garden.exe: + "/Tiny Bird Garden.exe": - when: - os: windows store: steam @@ -574306,12 +575878,12 @@ Tiny Bird Garden Deluxe: id: 945440 Tiny Brains: files: - /Binaries/Win32: + "/Binaries/Win32": tags: - save when: - os: windows - /My Games/TinyBrains/QuadForceGame: + "/My Games/TinyBrains/QuadForceGame": tags: - config when: @@ -574319,15 +575891,15 @@ Tiny Brains: installDir: tinybrains: {} launch: - /Binaries/Win32/TinyBrains.exe: + "/Binaries/Win32/TinyBrains.exe": - when: - os: windows store: steam steam: id: 253690 -'Tiny Bridge: Ratventure': +"Tiny Bridge: Ratventure": files: - /Tiny Bridge Ratventure: + "/Tiny Bridge Ratventure": tags: - save when: @@ -574335,11 +575907,11 @@ Tiny Brains: installDir: Ratventure Challenge: {} launch: - /Tiny Bridge Ratventure.app: + "/Tiny Bridge Ratventure.app": - when: - os: mac store: steam - /Tiny Bridge Ratventure.exe: + "/Tiny Bridge Ratventure.exe": - when: - os: windows store: steam @@ -574349,15 +575921,15 @@ Tiny Bubbles: installDir: Tiny Bubbles: {} launch: - /Tiny Bubbles.app: + "/Tiny Bubbles.app": - when: - os: mac store: steam - /Tiny Bubbles.exe: + "/Tiny Bubbles.exe": - when: - os: windows store: steam - /TinyBubbles.x86_64: + "/TinyBubbles.x86_64": - when: - bit: 64 os: linux @@ -574368,7 +575940,7 @@ Tiny Combat Arena: installDir: TinyCombatArena: {} launch: - /Arena.exe: + "/Arena.exe": - when: - os: windows store: steam @@ -574376,7 +575948,7 @@ Tiny Combat Arena: id: 1347550 Tiny Dangerous Dungeons: files: - /Stencyl/Tiny Dangerous Dungeons: + "/Stencyl/Tiny Dangerous Dungeons": tags: - save when: @@ -574384,11 +575956,11 @@ Tiny Dangerous Dungeons: installDir: Tiny Dangerous Dungeons: {} launch: - /Tiny Dangerous Dungeons.app: + "/Tiny Dangerous Dungeons.app": - when: - os: mac store: steam - /Tiny Dangerous Dungeons.exe: + "/Tiny Dangerous Dungeons.exe": - when: - os: windows store: steam @@ -574398,15 +575970,15 @@ Tiny Echo: installDir: Tiny Echo: {} launch: - /TinyEcho.app: + "/TinyEcho.app": - when: - os: mac store: steam - /TinyEcho.exe: + "/TinyEcho.exe": - when: - os: windows store: steam - /TinyEcho.x86: + "/TinyEcho.x86": - when: - os: linux store: steam @@ -574421,7 +575993,7 @@ Tiny Football: installDir: Tiny Football: {} launch: - /tinyfootball.exe: + "/tinyfootball.exe": - when: - bit: 64 os: windows @@ -574432,15 +576004,15 @@ Tiny Force Deluxe: installDir: Tiny Force Deluxe: {} launch: - /Tiny Force Mac.app/Contents/MacOS/Tiny Force Mac: + "/Tiny Force Mac.app/Contents/MacOS/Tiny Force Mac": - when: - os: mac store: steam - /Tiny Force.exe: + "/Tiny Force.exe": - when: - os: windows store: steam - /Tiny Force.x86_64: + "/Tiny Force.x86_64": - when: - os: linux store: steam @@ -574448,12 +576020,12 @@ Tiny Force Deluxe: id: 688620 Tiny Guardians: files: - /AppData/LocalLow/Kurechii/Tiny Guardians: + "/AppData/LocalLow/Kurechii/Tiny Guardians": tags: - save when: - os: windows - /Library/Application Support/unity.Kurechii.Tiny Guardians: + "/Library/Application Support/unity.Kurechii.Tiny Guardians": tags: - save when: @@ -574461,11 +576033,11 @@ Tiny Guardians: installDir: Tiny Guardians: {} launch: - /tiny_guardians.app: + "/tiny_guardians.app": - when: - os: mac store: steam - /tiny_guardians.exe: + "/tiny_guardians.exe": - when: - os: windows store: steam @@ -574479,7 +576051,7 @@ Tiny Hands Adventure: installDir: Tiny Hands Adventure: {} launch: - /tha.exe: + "/tha.exe": - when: - store: steam steam: @@ -574488,17 +576060,17 @@ Tiny Knight: installDir: Tiny Knight: {} launch: - /TinyKnight.app: + "/TinyKnight.app": - when: - bit: 64 os: mac store: steam - /TinyKnight.exe: + "/TinyKnight.exe": - when: - bit: 64 os: windows store: steam - /TinyKnight.x86: + "/TinyKnight.x86": - when: - bit: 64 os: linux @@ -574509,7 +576081,7 @@ Tiny Lands: installDir: Tiny Lands: {} launch: - /Tiny Lands.exe: + "/Tiny Lands.exe": - when: - os: windows store: steam @@ -574527,21 +576099,21 @@ Tiny Metal: installDir: TINY METAL: {} launch: - /Milk.app/Contents/MacOS/Milk: + "/Milk.app/Contents/MacOS/Milk": - when: - os: mac store: steam - /Milk.exe: + "/Milk.exe": - when: - os: windows store: steam steam: id: 751500 -'Tiny Metal: Full Metal Rumble': +"Tiny Metal: Full Metal Rumble": installDir: TINY METAL FULL METAL RUMBLE: {} launch: - /Milk.exe: + "/Milk.exe": - when: - os: windows store: steam @@ -574556,11 +576128,11 @@ Tiny Rails: installDir: Tiny Rails: {} launch: - /TinyRails.app: + "/TinyRails.app": - when: - os: mac store: steam - /TinyRails.exe: + "/TinyRails.exe": - when: - os: windows store: steam @@ -574568,7 +576140,7 @@ Tiny Rails: id: 614630 Tiny Skweeks: files: - /FILE.CFG: + "/FILE.CFG": tags: - config when: @@ -574577,30 +576149,30 @@ Tiny Snow: installDir: Tiny Snow: {} launch: - /TinySnow.exe: + "/TinySnow.exe": - when: - store: steam steam: id: 1002560 -'Tiny Tales: Heart of the Forest': +"Tiny Tales: Heart of the Forest": installDir: Tiny Tales: {} launch: - /TinyTales.exe: + "/TinyTales.exe": - when: - os: windows store: steam - /TinyTales_amd64: + "/TinyTales_amd64": - when: - bit: 64 os: linux store: steam - /TinyTales_i386: + "/TinyTales_i386": - when: - bit: 32 os: linux store: steam - /mac_steam.app/Contents/MacOS/mac_steam: + "/mac_steam.app/Contents/MacOS/mac_steam": - when: - os: mac store: steam @@ -574610,7 +576182,7 @@ Tiny Tanks: installDir: Tiny Tanks: {} launch: - /TinyTanks.exe: + "/TinyTanks.exe": - when: - os: windows store: steam @@ -574618,7 +576190,7 @@ Tiny Tanks: id: 836850 Tiny Thief: files: - /com.roviostars.tinythiefsteam/Local Store/#SharedObjects/Main.swf: + "/com.roviostars.tinythiefsteam/Local Store/#SharedObjects/Main.swf": tags: - config - save @@ -574627,11 +576199,11 @@ Tiny Thief: installDir: Tiny Thief: {} launch: - /Tiny Thief.app/tiny_thief.sh: + "/Tiny Thief.app/tiny_thief.sh": - when: - os: mac store: steam - /tiny_thief.bat: + "/tiny_thief.bat": - when: - os: windows store: steam @@ -574641,11 +576213,11 @@ Tiny Thief (2017): installDir: TinyThief: {} launch: - /TinyThief.app: + "/TinyThief.app": - when: - os: mac store: steam - /TinyThief.exe: + "/TinyThief.exe": - when: - os: windows store: steam @@ -574653,7 +576225,7 @@ Tiny Thief (2017): id: 669650 Tiny Thor: files: - /internal: + "/internal": tags: - save when: @@ -574663,20 +576235,20 @@ Tiny Thor: installDir: Tiny Thor: {} launch: - /TinyThor.exe: + "/TinyThor.exe": - when: - os: windows store: steam steam: id: 541310 -'Tiny Tina''s Assault on Dragon Keep: A Wonderlands One-Shot Adventure': +"Tiny Tina's Assault on Dragon Keep: A Wonderlands One-Shot Adventure": files: - /My Games/Tiny Tina's Assault On Dragon Keep/WillowGame/Config: + "/My Games/Tiny Tina's Assault On Dragon Keep/WillowGame/Config": tags: - config when: - os: windows - /My Games/Tiny Tina's Assault On Dragon Keep/WillowGame/SaveData/: + "/My Games/Tiny Tina's Assault On Dragon Keep/WillowGame/SaveData/": tags: - save when: @@ -574685,22 +576257,22 @@ Tiny Thor: Pawpaw: {} steam: id: 1712840 -Tiny Tina's Wonderlands: +"Tiny Tina's Wonderlands": files: - /My Games/Tiny Tina's Wonderlands/Saved/Config/WindowsNoEditor: + "/My Games/Tiny Tina's Wonderlands/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /My Games/Tiny Tina's Wonderlands/Saved/SaveGames/: + "/My Games/Tiny Tina's Wonderlands/Saved/SaveGames/": tags: - save when: - os: windows installDir: - Tiny Tina's Wonderlands: {} + "Tiny Tina's Wonderlands": {} launch: - /OakGame/Binaries/Win64/Wonderlands.exe: + "/OakGame/Binaries/Win64/Wonderlands.exe": - when: - bit: 64 os: windows @@ -574719,7 +576291,7 @@ Tiny Toyfare: installDir: Tiny Toyfare: {} launch: - /Tiny Toyfare.exe: + "/Tiny Toyfare.exe": - when: - bit: 64 os: windows @@ -574728,7 +576300,7 @@ Tiny Toyfare: id: 659630 Tiny Troopers: files: - /AppData/LocalLow/Kukouri/Tiny Troopers: + "/AppData/LocalLow/Kukouri/Tiny Troopers": tags: - save when: @@ -574736,11 +576308,11 @@ Tiny Troopers: installDir: tinytroopers: {} launch: - /TinyTroopers.exe: + "/TinyTroopers.exe": - when: - os: windows store: steam - /tiny_troopers_mac.app: + "/tiny_troopers_mac.app": - when: - os: mac store: steam @@ -574750,23 +576322,23 @@ Tiny Troopers 2: installDir: Tiny Troopers 2: {} launch: - /TinyTroopers2.app/Contents/MacOS/TinyTroopers2: + "/TinyTroopers2.app/Contents/MacOS/TinyTroopers2": - when: - os: mac store: steam - /TinyTroopers2.exe: + "/TinyTroopers2.exe": - when: - os: windows store: steam steam: id: 590370 -'Tiny Troopers: Global Ops': +"Tiny Troopers: Global Ops": gog: id: 2056392064 installDir: Tiny Troopers Global Ops: {} launch: - /Tiny Troopers Global Ops.exe: + "/Tiny Troopers Global Ops.exe": - when: - store: steam steam: @@ -574780,7 +576352,7 @@ Tiny World: installDir: Tiny World: {} launch: - /tinyworld.exe: + "/tinyworld.exe": - when: - os: windows store: steam @@ -574790,12 +576362,15 @@ Tiny-Tasy Town: installDir: TinyTasyTown: {} launch: - /Loat.exe: + "/Loat.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam - /Loat_Mac.sh: + "/Loat_Mac.sh": - when: - os: mac store: steam @@ -574805,15 +576380,15 @@ TinyKeep: installDir: TinyKeep: {} launch: - /tinykeep.app: + "/tinykeep.app": - when: - os: mac store: steam - /tinykeep.exe: + "/tinykeep.exe": - when: - os: windows store: steam - /tinykeep.x86: + "/tinykeep.x86": - when: - os: linux store: steam @@ -574828,7 +576403,7 @@ TinyWar high-speed: installDir: TinyWar high-speed: {} launch: - /bin/TinyWar.exe: + "/bin/TinyWar.exe": - when: - os: windows store: steam @@ -574836,23 +576411,23 @@ TinyWar high-speed: id: 797020 Tinykin: files: - /AppData/LocalLow/tinyBuild Games/Tinykin/*.save: + "/AppData/LocalLow/tinyBuild Games/Tinykin/*.save": tags: - save when: - os: windows - /AppData/LocalLow/tinyBuild Games/Tinykin/Tinykin.settings: + "/AppData/LocalLow/tinyBuild Games/Tinykin/Tinykin.settings": tags: - config when: - os: windows - /Packages/tinyBuildGames.Tinykin_3sz1pp2ynv2xe/Settings/settings.dat: + "/Packages/tinyBuildGames.Tinykin_3sz1pp2ynv2xe/Settings/settings.dat": tags: - config when: - os: windows store: microsoft - /Packages/tinyBuildGames.Tinykin_3sz1pp2ynv2xe/SystemAppData/wgs: + "/Packages/tinyBuildGames.Tinykin_3sz1pp2ynv2xe/SystemAppData/wgs": tags: - save when: @@ -574863,14 +576438,14 @@ Tinykin: installDir: Tinykin: {} launch: - /Tinykin.exe: + "/Tinykin.exe": - when: - store: steam steam: id: 1599020 Tinytopia: files: - /AppData/LocalLow/MeNic Games/Tinytopia: + "/AppData/LocalLow/MeNic Games/Tinytopia": tags: - save when: @@ -574880,15 +576455,15 @@ Tinytopia: installDir: Tinytopia: {} launch: - /Tinytopia.app/Contents/MacOS/Tinytopia: + "/Tinytopia.app/Contents/MacOS/Tinytopia": - when: - os: mac store: steam - /Tinytopia.exe: + "/Tinytopia.exe": - when: - os: windows store: steam - /Tinytopia.x86_64: + "/Tinytopia.x86_64": - when: - bit: 64 os: linux @@ -574899,11 +576474,11 @@ Tinytopia: - config steam: id: 968550 -'Tip of the Spear: Task Force Elite': +"Tip of the Spear: Task Force Elite": installDir: TaskForceElite: {} launch: - /TaskForceElite.exe: + "/TaskForceElite.exe": - when: - bit: 64 os: windows @@ -574914,11 +576489,11 @@ Tipping Point: installDir: Tipping Point: {} launch: - /Tipping Point.exe: + "/Tipping Point.exe": - when: - os: windows store: steam - /TippingPoint.app: + "/TippingPoint.app": - when: - os: mac store: steam @@ -574936,7 +576511,7 @@ Tiska Buska: installDir: Tiska Buska: {} launch: - /TiskaBuska.exe: + "/TiskaBuska.exe": - when: - os: windows store: steam @@ -574946,7 +576521,7 @@ Tisnart Shapes: installDir: Tisnart Shapes: {} launch: - /Tisnart Shapes 1.1.exe: + "/Tisnart Shapes 1.1.exe": - when: - os: windows store: steam @@ -574956,7 +576531,7 @@ Tisnart Tiles: installDir: Tisnart Tiles: {} launch: - /Tisnart Tiles.exe: + "/Tisnart Tiles.exe": - when: - os: windows store: steam @@ -574967,13 +576542,13 @@ Titan Arena: id: 872390 Titan Attacks!: files: - /.titan_attacks: + "/.titan_attacks": tags: - config - save when: - os: linux - /userdata//203210/remote: + "/userdata//203210/remote": tags: - config - save @@ -574982,15 +576557,15 @@ Titan Attacks!: installDir: Titan Attacks: {} launch: - /TitanAttacks.app: + "/TitanAttacks.app": - when: - os: mac store: steam - /TitanAttacks.exe: + "/TitanAttacks.exe": - when: - os: windows store: steam - /titanattacks.sh: + "/titanattacks.sh": - when: - os: linux store: steam @@ -575000,20 +576575,20 @@ Titan Outpost: installDir: Titan Outpost: {} launch: - /TitanOutpost.app: + "/TitanOutpost.app": - when: - os: mac store: steam - /TitanOutpost.exe: + "/TitanOutpost.exe": - when: - os: windows store: steam - /TitanOutpost.x86_64: + "/TitanOutpost.x86_64": - when: - bit: 32 os: linux store: steam - /TitanOutpostL.x86_64: + "/TitanOutpostL.x86_64": - when: - bit: 64 os: linux @@ -575022,13 +576597,13 @@ Titan Outpost: id: 944180 Titan Quest: files: - /My Games/Titan Quest: + "/My Games/Titan Quest": tags: - config - save when: - os: windows - /My Games/Titan Quest - Immortal Throne: + "/My Games/Titan Quest - Immortal Throne": tags: - config - save @@ -575040,19 +576615,19 @@ Titan Quest: installDir: Titan Quest: {} launch: - /Titan Quest.exe: + "/Titan Quest.exe": - when: - store: steam steam: id: 4540 Titan Quest Anniversary Edition: files: - /My Games/Titan Quest - Immortal Throne/SaveData: + "/My Games/Titan Quest - Immortal Throne/SaveData": tags: - save when: - os: windows - /My Games/Titan Quest - Immortal Throne/Settings: + "/My Games/Titan Quest - Immortal Throne/Settings": tags: - config when: @@ -575061,9 +576636,9 @@ Titan Quest Anniversary Edition: id: 1196955511 id: gogExtra: - - 1945314081 - 1486258753 - 1635839065 + - 1945314081 steamExtra: - 741350 - 1071200 @@ -575071,7 +576646,7 @@ Titan Quest Anniversary Edition: installDir: Titan Quest Anniversary Edition: {} launch: - /TQ.exe: + "/TQ.exe": - arguments: /dx11 when: - os: windows @@ -575084,14 +576659,14 @@ Titan Quest Anniversary Edition: when: - os: windows store: steam - - arguments: '-nohwcursor' + - arguments: "-nohwcursor" when: - os: windows store: steam - when: - os: windows store: steam - /WorkshopTool/TQWorkshopTool.exe: + "/WorkshopTool/TQWorkshopTool.exe": - when: - os: windows store: steam @@ -575100,14 +576675,14 @@ Titan Quest Anniversary Edition: Titan Quest II: steam: id: 1154030 -'Titan Saga: Chains of Kronos': +"Titan Saga: Chains of Kronos": steam: id: 659140 Titan Shield: installDir: Titan shield: {} launch: - /Titan shield.exe: + "/Titan shield.exe": - when: - os: windows store: steam @@ -575128,17 +576703,17 @@ Titan Slayer II: id: 906770 Titan Souls: files: - /data/SAVE: + "/data/SAVE": tags: - save when: - os: windows - /data/config.txt: + "/data/config.txt": tags: - config when: - os: windows - /data/control.xml: + "/data/control.xml": tags: - config when: @@ -575148,11 +576723,11 @@ Titan Souls: installDir: Titan Souls: {} launch: - /TITAN.exe: + "/TITAN.exe": - when: - os: windows store: steam - /Titan Souls.app: + "/Titan Souls.app": - when: - os: mac store: steam @@ -575160,12 +576735,12 @@ Titan Souls: id: 297130 Titan Station: files: - /titanstation/Saved/Config/WindowsNoEditor: + "/titanstation/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /titanstation/Saved/SaveGames: + "/titanstation/Saved/SaveGames": tags: - save when: @@ -575173,22 +576748,22 @@ Titan Station: installDir: TRS: {} launch: - /titanstation.exe: + "/titanstation.exe": - when: - bit: 64 os: windows store: steam steam: id: 1881120 -'Titan: Escape the Tower': +"Titan: Escape the Tower": installDir: Titan: {} launch: - /Titan.exe: + "/Titan.exe": - when: - os: windows store: steam - /titan.app: + "/titan.app": - when: - os: mac store: steam @@ -575196,7 +576771,7 @@ Titan Station: id: 403170 Titanfall: files: - /Respawn/Titanfall: + "/Respawn/Titanfall": tags: - config when: @@ -575207,17 +576782,17 @@ Titanfall: id: 1454890 Titanfall 2: files: - /Respawn/Titanfall2/local: + "/Respawn/Titanfall2/local": tags: - config when: - os: windows - /Respawn/Titanfall2/profile/profile.cfg: + "/Respawn/Titanfall2/profile/profile.cfg": tags: - config when: - os: windows - /Respawn/Titanfall2/profile/savegames: + "/Respawn/Titanfall2/profile/savegames": tags: - save when: @@ -575230,7 +576805,7 @@ Titanic: installDir: Titanic: {} launch: - /Titanic The Experience.exe: + "/Titanic The Experience.exe": - when: - bit: 64 os: windows @@ -575239,7 +576814,7 @@ Titanic: id: 727910 Titanic VR: files: - /AppData/LocalLow/Immersive VR Education Ltd/Titanic VR: + "/AppData/LocalLow/Immersive VR Education Ltd/Titanic VR": tags: - config when: @@ -575247,14 +576822,14 @@ Titanic VR: installDir: Titanic VR: {} launch: - /TitanicVR.exe: + "/TitanicVR.exe": - when: - bit: 64 os: windows store: steam steam: id: 741430 -'Titanic: Adventure Out of Time': +"Titanic: Adventure Out of Time": gog: id: 1792718486 installDir: @@ -575265,7 +576840,7 @@ Titanis: installDir: Titanis: {} launch: - /Titanis.exe: + "/Titanis.exe": - when: - os: windows store: steam @@ -575275,31 +576850,31 @@ Titans of Space 2.0: installDir: Titans of Space 2.0: {} launch: - /TitansOfSpace2_0.exe: - - arguments: '-platform_steam -sdk_nonvr -hardware_monitor' + "/TitansOfSpace2_0.exe": + - arguments: "-platform_steam -sdk_nonvr -hardware_monitor" when: - store: steam steam: id: 468820 -'Titans: Dawn of Tribes': +"Titans: Dawn of Tribes": installDir: TITANS: {} launch: - /TITANS.exe: + "/TITANS.exe": - when: - os: windows store: steam steam: id: 467570 -'Titeuf: Mega Party': +"Titeuf: Mega Party": installDir: Titeuf Mega Party: {} launch: - /TiteufMegaParty.app: + "/TiteufMegaParty.app": - when: - os: mac store: steam - /Titeuf_Mega_Party.exe: + "/Titeuf_Mega_Party.exe": - when: - os: windows store: steam @@ -575307,12 +576882,12 @@ Titans of Space 2.0: id: 1165610 Title Pending: files: - /Title_Pending/Saved/Config: + "/Title_Pending/Saved/Config": tags: - config when: - os: windows - /Title_Pending/Saved/SaveGames: + "/Title_Pending/Saved/SaveGames": tags: - save when: @@ -575320,12 +576895,12 @@ Title Pending: installDir: Title_Pending: {} launch: - /Title_Pending.exe: + "/Title_Pending.exe": - when: - bit: 64 os: windows store: steam - /Title_Pending.sh: + "/Title_Pending.sh": - when: - bit: 64 os: linux @@ -575336,38 +576911,38 @@ Titty Crush: installDir: Titty Crush: {} launch: - /TittyCrush.app/Contents/MacOS/TittyCrush: + "/TittyCrush.app/Contents/MacOS/TittyCrush": - when: - os: mac store: steam - /TittyCrush.exe: + "/TittyCrush.exe": - when: - os: windows store: steam - /TittyCrush.x64: + "/TittyCrush.x64": - when: - os: linux store: steam steam: id: 844210 -'Titus the Fox: To Marrakech and Back': +"Titus the Fox: To Marrakech and Back": gog: id: 1828289583 installDir: Titus the Fox: {} launch: - /DOSBox/dosbox.app/Contents/MacOS/DOSBox: - - arguments: '-conf \"./dosbox_titus.conf\" -conf \"./dosbox_titus_single.conf\" -noconsole' + "/DOSBox/dosbox.app/Contents/MacOS/DOSBox": + - arguments: "-conf \\\"./dosbox_titus.conf\\\" -conf \\\"./dosbox_titus_single.conf\\\" -noconsole" when: - os: mac store: steam - /DOSBox/dosbox.exe: - - arguments: '-conf \"./dosbox_titus.conf\" -conf \"./dosbox_titus_single.conf\" -noconsole' + "/DOSBox/dosbox.exe": + - arguments: "-conf \\\"./dosbox_titus.conf\\\" -conf \\\"./dosbox_titus_single.conf\\\" -noconsole" when: - os: windows store: steam - /dosbox/dosbox: - - arguments: '-conf \"./dosbox_titus.conf\" -conf \"./dosbox_titus_single.conf\" -noconsole' + "/dosbox/dosbox": + - arguments: "-conf \\\"./dosbox_titus.conf\\\" -conf \\\"./dosbox_titus_single.conf\\\" -noconsole" when: - os: linux store: steam @@ -575377,7 +576952,7 @@ Tkl Online: installDir: Tkl Online: {} launch: - /start.exe: + "/start.exe": - when: - os: windows store: steam @@ -575387,27 +576962,27 @@ To Ash: installDir: To Ash: {} launch: - /To Ash ADVENTURE MODE/Game: + "/To Ash ADVENTURE MODE/Game": - when: - os: linux store: steam - /To Ash ADVENTURE MODE/Game.app: + "/To Ash ADVENTURE MODE/Game.app": - when: - os: mac store: steam - /To Ash ADVENTURE MODE/Game.exe: + "/To Ash ADVENTURE MODE/Game.exe": - when: - os: windows store: steam - /To Ash FULL MODE/Game: + "/To Ash FULL MODE/Game": - when: - os: linux store: steam - /To Ash FULL MODE/Game.app: + "/To Ash FULL MODE/Game.app": - when: - os: mac store: steam - /To Ash FULL MODE/Game.exe: + "/To Ash FULL MODE/Game.exe": - when: - os: windows store: steam @@ -575416,11 +576991,11 @@ To Ash: To Azimuth: steam: id: 404380 -'To Battle!: Hell''s Crusade': +"To Battle!: Hell's Crusade": installDir: - To Battle! Hell's Crusade: {} + "To Battle! Hell's Crusade": {} launch: - /ToBattleHellsCrusade.exe: + "/ToBattleHellsCrusade.exe": - when: - os: windows store: steam @@ -575428,7 +577003,7 @@ To Azimuth: id: 1113300 To Be Headed Or Not To Be: files: - /ToBeHeadedOrNotToBe/Saved: + "/ToBeHeadedOrNotToBe/Saved": tags: - config - save @@ -575437,7 +577012,7 @@ To Be Headed Or Not To Be: installDir: ToBeHeadedOrNotToBe: {} launch: - /ToBeHeadedOrNotToBe.exe: + "/ToBeHeadedOrNotToBe.exe": - when: - os: windows store: steam @@ -575447,21 +577022,21 @@ To Be or Not To Be: installDir: To Be or Not To Be: {} launch: - /To Be or Not To Be.app: + "/To Be or Not To Be.app": - when: - bit: 64 os: mac store: steam - /To Be or Not To Be.exe: + "/To Be or Not To Be.exe": - when: - os: windows store: steam - /To Be or Not To Be.x86: + "/To Be or Not To Be.x86": - when: - bit: 32 os: linux store: steam - /To Be or Not To Be.x86_64: + "/To Be or Not To Be.x86_64": - when: - bit: 64 os: linux @@ -575472,16 +577047,19 @@ To Burn in Memory: installDir: To Burn in Memory: {} launch: - /nw: + "/nw": - when: - os: linux store: steam - /nw.exe: + "/nw.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam - /toburninmemory.app: + "/toburninmemory.app": - when: - bit: 64 os: mac @@ -575492,15 +577070,15 @@ To Burn in Memory (Anniversary Edition): installDir: To Burn in Memory (Anniversary Edition): {} launch: - /toburninmemory: + "/toburninmemory": - when: - os: linux store: steam - /toburninmemory.app: + "/toburninmemory.app": - when: - os: mac store: steam - /toburninmemory.exe: + "/toburninmemory.exe": - when: - os: windows store: steam @@ -575510,7 +577088,7 @@ To Catch a Monkey: installDir: To Catch a Monkey: {} launch: - /TCAM.exe: + "/TCAM.exe": - when: - os: windows store: steam @@ -575520,7 +577098,7 @@ To End All Wars: installDir: To End All Wars: {} launch: - /autorun.exe: + "/autorun.exe": - when: - store: steam steam: @@ -575537,7 +577115,7 @@ To Hell with Hell: installDir: ToHellWithHell: {} launch: - /ToHellWithHell.exe: + "/ToHellWithHell.exe": - when: - os: windows store: steam @@ -575547,29 +577125,29 @@ To Leave: installDir: To Leave: {} launch: - /To Leave.app/Contents/MacOS/To Leave: + "/To Leave.app/Contents/MacOS/To Leave": - when: - os: mac store: steam - /To Leave.exe: + "/To Leave.exe": - when: - os: windows store: steam - /To Leave.x86_64: + "/To Leave.x86_64": - when: - os: linux store: steam steam: id: 896340 -'To Light: Ex Umbra': +"To Light: Ex Umbra": installDir: To Light Ex Umbra: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam - /To Light.app: + "/To Light.app": - when: - os: mac store: steam @@ -575582,17 +577160,17 @@ To The Light: installDir: To_The_Light: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam steam: id: 618050 -'To The Sea : The Courier': +"To The Sea : The Courier": installDir: To the sea: {} launch: - /Courier.exe: + "/Courier.exe": - when: - bit: 64 os: windows @@ -575603,15 +577181,15 @@ To Trust an Incubus: installDir: To Trust an Incubus: {} launch: - /ToTrustAnIncubus.app/Contents/MacOS/ToTrustAnIncubus: + "/ToTrustAnIncubus.app/Contents/MacOS/ToTrustAnIncubus": - when: - os: mac store: steam - /ToTrustAnIncubus.exe: + "/ToTrustAnIncubus.exe": - when: - os: windows store: steam - /ToTrustAnIncubus.sh: + "/ToTrustAnIncubus.sh": - when: - os: linux store: steam @@ -575621,11 +577199,11 @@ To the Capital: installDir: to_the_capital: {} launch: - /To The Capital: + "/To The Capital": - when: - os: linux store: steam - /To The Capital.exe: + "/To The Capital.exe": - when: - os: windows store: steam @@ -575635,11 +577213,11 @@ To the Capital 2: installDir: to_the_capital_2: {} launch: - /To The Capital 2: + "/To The Capital 2": - when: - os: linux store: steam - /To The Capital 2.exe: + "/To The Capital 2.exe": - when: - os: windows store: steam @@ -575649,15 +577227,15 @@ To the City of the Clouds: installDir: To the City of the Clouds: {} launch: - /To the City of the Clouds.app/Contents/MacOS/To the City of the Clouds: + "/To the City of the Clouds.app/Contents/MacOS/To the City of the Clouds": - when: - os: mac store: steam - /ToTheCityOfTheClouds: + "/ToTheCityOfTheClouds": - when: - os: linux store: steam - /ToTheCityOfTheClouds.exe: + "/ToTheCityOfTheClouds.exe": - when: - os: windows store: steam @@ -575667,7 +577245,7 @@ To the Core: installDir: To the Core: {} launch: - /ToTheCore.exe: + "/ToTheCore.exe": - when: - os: windows store: steam @@ -575677,7 +577255,7 @@ To the Hell: installDir: To the Hell: {} launch: - /tothehell.exe: + "/tothehell.exe": - when: - os: windows store: steam @@ -575688,38 +577266,38 @@ To the Home: id: 581680 To the Moon: files: - /Library/Application Support/freebirdgames/tothemoon: + "/Library/Application Support/freebirdgames/tothemoon": tags: - config - save when: - os: mac - /SigCorp Minisode 2 - Freebird Games: + "/SigCorp Minisode 2 - Freebird Games": tags: - config when: - os: windows - /Siggy Holiday - Freebird Games: + "/Siggy Holiday - Freebird Games": tags: - config when: - os: windows - /To the Moon - Freebird Games/Save*.rxdata: + "/To the Moon - Freebird Games/Save*.rxdata": tags: - save when: - os: windows - /To the Moon - Freebird Games/music.txt: + "/To the Moon - Freebird Games/music.txt": tags: - config when: - os: windows - /To the Moon - Freebird Games/window.txt: + "/To the Moon - Freebird Games/window.txt": tags: - config when: - os: windows - /freebirdgames/tothemoon: + "/freebirdgames/tothemoon": tags: - config - save @@ -575736,25 +577314,25 @@ To the Moon: installDir: To the Moon: {} launch: - /To the Moon/To the Moon.exe: - - arguments: '-console' + "/To the Moon/To the Moon.exe": + - arguments: "-console" when: - os: windows store: steam - workingDir: /To the Moon - /ToTheMoon.app/Contents/MacOS/steamshim_parent: + workingDir: "/To the Moon" + "/ToTheMoon.app/Contents/MacOS/steamshim_parent": - arguments: ToTheMoon.app/Contents/MacOS/mkxp when: - os: mac store: steam - /steamshim/parent.amd64: - - arguments: ./ToTheMoon.bin.x86_64 --enableReset=false + "/steamshim/parent.amd64": + - arguments: "./ToTheMoon.bin.x86_64 --enableReset=false" when: - bit: 64 os: linux store: steam - /steamshim/parent.x86: - - arguments: ./ToTheMoon.bin.x86 --enableReset=false + "/steamshim/parent.x86": + - arguments: "./ToTheMoon.bin.x86 --enableReset=false" when: - bit: 32 os: linux @@ -575767,7 +577345,7 @@ To the Rescue!: installDir: To The Rescue!: {} launch: - /To The Rescue!.app: + "/To The Rescue!.app": - when: - os: mac store: steam @@ -575777,7 +577355,7 @@ To the Stars and Beyond!: installDir: To the Stars and Beyond!: {} launch: - /To the Stars and Beyond!.exe: + "/To the Stars and Beyond!.exe": - when: - os: windows store: steam @@ -575788,11 +577366,11 @@ To the Top: To The Top: {} steam: id: 509250 -'ToGather:Island': +"ToGather:Island": installDir: ToGather Island: {} launch: - /ToGather_Island.exe: + "/ToGather_Island.exe": - when: - bit: 64 os: windows @@ -575803,11 +577381,11 @@ ToaZZle: installDir: ToaZZle: {} launch: - /osx64/toazzlepremium.app/Contents/MacOS/nwjs: + "/osx64/toazzlepremium.app/Contents/MacOS/nwjs": - when: - os: mac store: steam - /win64/tzzl.exe: + "/win64/tzzl.exe": - when: - os: windows store: steam @@ -575820,11 +577398,11 @@ Toadled: installDir: Toadled: {} launch: - /ToadledMac.app: + "/ToadledMac.app": - when: - os: mac store: steam - /ToadledWindows.exe: + "/ToadledWindows.exe": - when: - os: windows store: steam @@ -575832,7 +577410,7 @@ Toadled: id: 521630 Toast Time: files: - /data/save.json: + "/data/save.json": tags: - save when: @@ -575840,16 +577418,16 @@ Toast Time: installDir: Toast Time: {} launch: - /Toast Time.app/Contents/MacOS/Toast Time: + "/Toast Time.app/Contents/MacOS/Toast Time": - when: - os: mac store: steam - /game: + "/game": - when: - bit: 64 os: linux store: steam - /toasttime.exe: + "/toasttime.exe": - when: - os: windows store: steam @@ -575859,7 +577437,7 @@ Toaster Jam: installDir: Toaster Jam: {} launch: - /Toaster.exe: + "/Toaster.exe": - when: - os: windows store: steam @@ -575869,7 +577447,7 @@ Toasterball: installDir: Toasterball: {} launch: - /Toasterball.exe: + "/Toasterball.exe": - when: - os: windows store: steam @@ -575879,19 +577457,19 @@ Tobari and the Night of the Curious Moon: installDir: Tobari and the Night of the Curious Moon: {} launch: - /Tobari: + "/Tobari": - when: - os: linux store: steam - /tobari.exe: + "/tobari.exe": - when: - os: windows store: steam steam: id: 368140 -Tobe's Vertical Adventure: +"Tobe's Vertical Adventure": files: - /userdata//105700/remote: + "/userdata//105700/remote": tags: - config - save @@ -575899,16 +577477,16 @@ Tobe's Vertical Adventure: - os: windows store: steam installDir: - Tobe's Vertical Adventure: {} + "Tobe's Vertical Adventure": {} launch: - /Tobe's Vertical Adventure.exe: + "/Tobe's Vertical Adventure.exe": - when: - store: steam steam: id: 105700 Tobit: files: - /Tobit/Saved/Config/WindowsNoEditor/*.ini: + "/Tobit/Saved/Config/WindowsNoEditor/*.ini": tags: - config when: @@ -575916,40 +577494,40 @@ Tobit: installDir: Tobit: {} launch: - /Tobit.exe: + "/Tobit.exe": - when: - bit: 64 os: windows store: steam steam: id: 1018730 -Toby's Island: +"Toby's Island": installDir: - Toby's Island: {} + "Toby's Island": {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: id: 331430 -'Toby: The Secret Mine': +"Toby: The Secret Mine": installDir: Toby The Secret Mine: {} launch: - /Toby.app: + "/Toby.app": - when: - os: mac store: steam - /Toby.exe: + "/Toby.exe": - when: - os: windows store: steam - /Toby.x86: + "/Toby.x86": - when: - os: linux store: steam registry: - 'HKEY_CURRENT_USER/Software/navratillukas.com/Toby: The Secret Mine': + "HKEY_CURRENT_USER/Software/navratillukas.com/Toby: The Secret Mine": tags: - config steam: @@ -575958,7 +577536,7 @@ Tock: installDir: Tock: {} launch: - /Tock.exe: + "/Tock.exe": - when: - store: steam steam: @@ -575970,7 +577548,7 @@ Today Is My Birthday: installDir: Today Is My Birthday: {} launch: - /timb.exe: + "/timb.exe": - when: - os: windows store: steam @@ -575980,7 +577558,7 @@ Toddler Shooter: installDir: Toddler Shooter: {} launch: - /Toddler Shooter.exe: + "/Toddler Shooter.exe": - when: - store: steam steam: @@ -575989,15 +577567,15 @@ Toddler Simulator: installDir: Toddler Simulator: {} launch: - /TodSim.app: + "/TodSim.app": - when: - os: mac store: steam - /TodSim.exe: + "/TodSim.exe": - when: - os: windows store: steam - /TodSim.x64: + "/TodSim.x64": - when: - os: linux store: steam @@ -576005,22 +577583,22 @@ Toddler Simulator: id: 796770 ToeJam & Earl: files: - /SEGA Genesis Classics/0046: + "/SEGA Genesis Classics/0046": tags: - save when: - os: windows - /SEGA Genesis Classics/setup.dat: + "/SEGA Genesis Classics/setup.dat": tags: - config when: - os: windows - /SEGA Mega Drive Classics/0046: + "/SEGA Mega Drive Classics/0046": tags: - save when: - os: windows - /SEGA Mega Drive Classics/setup.dat: + "/SEGA Mega Drive Classics/setup.dat": tags: - config when: @@ -576029,36 +577607,36 @@ ToeJam & Earl: id: 71166 ToeJam & Earl in Panic on Funkotron: files: - /SEGA Genesis Classics/0047: + "/SEGA Genesis Classics/0047": tags: - save when: - os: windows - /SEGA Genesis Classics/setup.dat: + "/SEGA Genesis Classics/setup.dat": tags: - config when: - os: windows - /SEGA Mega Drive Classics/0047: + "/SEGA Mega Drive Classics/0047": tags: - save when: - os: windows - /SEGA Mega Drive Classics/setup.dat: + "/SEGA Mega Drive Classics/setup.dat": tags: - config when: - os: windows steam: id: 71167 -'ToeJam & Earl: Back in the Groove': +"ToeJam & Earl: Back in the Groove": files: - /AppData/LocalLow/HumaNature Studios/ToeJam & Earl_ Back in the Groove!: + "/AppData/LocalLow/HumaNature Studios/ToeJam & Earl_ Back in the Groove!": tags: - save when: - os: windows - /AppData/LocalLow/HumaNature Studios/ToeJam & Earl_ Back in the Groove!/saved_prefs.json: + "/AppData/LocalLow/HumaNature Studios/ToeJam & Earl_ Back in the Groove!/saved_prefs.json": tags: - config when: @@ -576066,20 +577644,20 @@ ToeJam & Earl in Panic on Funkotron: installDir: ToeJam & Earl Back In The Groove: {} launch: - /backinthegroove.app/Contents/MacOS/backinthegroove: + "/backinthegroove.app/Contents/MacOS/backinthegroove": - when: - os: mac store: steam - /backinthegroove.exe: + "/backinthegroove.exe": - when: - os: windows store: steam - /backinthegroove.x86_64: + "/backinthegroove.x86_64": - when: - os: linux store: steam registry: - 'HKEY_CURRENT_USER/Software/HumaNature Studios/ToeJam & Earl: Back in the Groove!': + "HKEY_CURRENT_USER/Software/HumaNature Studios/ToeJam & Earl: Back in the Groove!": tags: - config steam: @@ -576088,11 +577666,11 @@ Tofu Pudding Simulator: installDir: Tofu Pudding Simulator: {} launch: - /Tofu_Pudding_Simulator.app: + "/Tofu_Pudding_Simulator.app": - when: - os: mac store: steam - /Tofu_Pudding_Simulator.exe: + "/Tofu_Pudding_Simulator.exe": - when: - os: windows store: steam @@ -576102,7 +577680,7 @@ Togainu no Chi ~Lost Blood~: installDir: Togainu no Chi ~Lost Blood~: {} launch: - /togainunochi.exe: + "/togainunochi.exe": - when: - store: steam steam: @@ -576114,11 +577692,11 @@ Together (2018): installDir: Together: {} launch: - /Together.app/Contents/MacOS/Together: + "/Together.app/Contents/MacOS/Together": - when: - os: mac store: steam - /Together.exe: + "/Together.exe": - when: - os: windows store: steam @@ -576128,15 +577706,15 @@ Together - A Wish No One Remembers: installDir: Together - A Wish No One Remembers: {} launch: - /AWishNoOneRemembers.app: + "/AWishNoOneRemembers.app": - when: - os: mac store: steam - /AWishNoOneRemembers.exe: + "/AWishNoOneRemembers.exe": - when: - os: windows store: steam - /AWishNoOneRemembers.sh: + "/AWishNoOneRemembers.sh": - when: - os: linux store: steam @@ -576149,7 +577727,7 @@ Together VR: id: 771920 Togges: files: - /Togges/Saved/SaveGames: + "/Togges/Saved/SaveGames": tags: - save when: @@ -576159,14 +577737,14 @@ Togges: installDir: Togges: {} launch: - /Togges.exe: + "/Togges.exe": - when: - store: steam steam: id: 1550270 Tohu: files: - /AppData/LocalLow/Fireart Games/TOHU: + "/AppData/LocalLow/Fireart Games/TOHU": tags: - save when: @@ -576176,11 +577754,11 @@ Tohu: installDir: TOHU: {} launch: - /TOHU.exe: + "/TOHU.exe": - when: - os: windows store: steam - /tohu.app: + "/tohu.app": - when: - os: mac store: steam @@ -576194,7 +577772,7 @@ Toilet Run: installDir: ToiletRun: {} launch: - /Toilet Run.exe: + "/Toilet Run.exe": - when: - os: windows store: steam @@ -576204,7 +577782,7 @@ Toilet Simulator: installDir: Toilet Simulator: {} launch: - /Launcher.exe: + "/Launcher.exe": - when: - bit: 64 os: windows @@ -576213,9 +577791,9 @@ Toilet Simulator: id: 973090 Toilet Tycoon: installDir: - SteamApps\\common\\Toilet Tycoon\\: {} + "SteamApps\\\\common\\\\Toilet Tycoon\\\\": {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -576225,11 +577803,11 @@ Tokaido: installDir: Tokaido: {} launch: - /TokaidoOSX.app: + "/TokaidoOSX.app": - when: - os: mac store: steam - /TokaidoPC.exe: + "/TokaidoPC.exe": - when: - os: windows store: steam @@ -576239,11 +577817,11 @@ Toki: installDir: Toki: {} launch: - /Toki.app: + "/Toki.app": - when: - os: mac store: steam - /Toki.exe: + "/Toki.exe": - when: - os: windows store: steam @@ -576253,7 +577831,7 @@ Toki Time Trial: installDir: Toki Time Trial: {} launch: - /TokiTimeTrial.exe: + "/TokiTimeTrial.exe": - when: - os: windows store: steam @@ -576261,18 +577839,18 @@ Toki Time Trial: id: 848700 Toki Tori: files: - /.twotribes/toki_tori: + "/.twotribes/toki_tori": tags: - save when: - os: linux - /userdata//38700/remote: + "/userdata//38700/remote": tags: - config - save when: - store: steam - /.twotribes/toki_tori: + "/.twotribes/toki_tori": tags: - config when: @@ -576280,15 +577858,15 @@ Toki Tori: installDir: Toki Tori: {} launch: - /Toki Tori.app: + "/Toki Tori.app": - when: - os: mac store: steam - /TokiTori.bin.x86: + "/TokiTori.bin.x86": - when: - os: linux store: steam - /tokitori.exe: + "/tokitori.exe": - when: - os: windows store: steam @@ -576296,22 +577874,22 @@ Toki Tori: id: 38700 Toki Tori 2+: files: - /Library/com.twotribes.tokitori2: + "/Library/com.twotribes.tokitori2": tags: - config when: - os: mac - /userdata//201420: + "/userdata//201420": tags: - save when: - store: steam - /Two Tribes/Toki Tori 2+: + "/Two Tribes/Toki Tori 2+": tags: - config when: - os: windows - /twotribes/toki_tori_2+: + "/twotribes/toki_tori_2+": tags: - config - save @@ -576320,21 +577898,21 @@ Toki Tori 2+: installDir: Toki Tori 2: {} launch: - /Toki Tori 2+.app: + "/Toki Tori 2+.app": - when: - os: mac store: steam - /TokiTori2.bin.x86: + "/TokiTori2.bin.x86": - when: - bit: 32 os: linux store: steam - /TokiTori2.bin.x86_64: + "/TokiTori2.bin.x86_64": - when: - bit: 64 os: linux store: steam - /tokitori2.exe: + "/tokitori2.exe": - when: - os: windows store: steam @@ -576342,7 +577920,7 @@ Toki Tori 2+: id: 201420 Tokyo 42: files: - /T42_Data/Managed/TOKYO42/: + "/T42_Data/Managed/TOKYO42/": tags: - save when: @@ -576352,15 +577930,15 @@ Tokyo 42: installDir: Tokyo 42: {} launch: - /PlayTokyo42.sh: + "/PlayTokyo42.sh": - when: - os: linux store: steam - /T42.exe: + "/T42.exe": - when: - os: windows store: steam - /Tokyo42.app: + "/Tokyo42.app": - when: - os: mac store: steam @@ -576374,7 +577952,7 @@ Tokyo Babel: installDir: Tokyo Babel: {} launch: - /tokyobabel.exe: + "/tokyobabel.exe": - when: - store: steam steam: @@ -576386,7 +577964,7 @@ Tokyo Chronos: id: 1031440 Tokyo Dark: files: - /TokyoDark/User Data/Default: + "/TokyoDark/User Data/Default": tags: - config - save @@ -576395,16 +577973,16 @@ Tokyo Dark: installDir: Tokyo Dark: {} launch: - /nw.exe: + "/nw.exe": - when: - bit: 64 os: windows store: steam steam: id: 687260 -'Tokyo Ghoul: re Call to Exist': +"Tokyo Ghoul: re Call to Exist": files: - /BANDAI NAMCO Entertainment/Tokyo Ghoul re CALL to EXIST: + "/BANDAI NAMCO Entertainment/Tokyo Ghoul re CALL to EXIST": tags: - save when: @@ -576412,7 +577990,7 @@ Tokyo Dark: installDir: CALL to EXIST: {} launch: - /CALL to EXIST.exe: + "/CALL to EXIST.exe": - when: - bit: 64 os: windows @@ -576423,7 +578001,7 @@ Tokyo Hosto: installDir: Tokyo Hosto: {} launch: - /TokyoHosto.exe: + "/TokyoHosto.exe": - when: - store: steam steam: @@ -576432,7 +578010,7 @@ Tokyo School Life: installDir: Tokyo School Life: {} launch: - /TSL.exe: + "/TSL.exe": - when: - os: windows store: steam @@ -576442,21 +578020,21 @@ Tokyo Snap (Cozy Pitch): installDir: Tokyo Snap: {} launch: - /TokyoSnap.app: + "/TokyoSnap.app": - when: - os: mac store: steam - /TokyoSnap.x86: + "/TokyoSnap.x86": - when: - bit: 32 os: linux store: steam - /TokyoSnap.x86_64: + "/TokyoSnap.x86_64": - when: - bit: 64 os: linux store: steam - /ToykoSnap.exe: + "/ToykoSnap.exe": - when: - os: windows store: steam @@ -576464,7 +578042,7 @@ Tokyo Snap (Cozy Pitch): id: 1016430 Tokyo Tattoo Girls: files: - /AppData/LocalLow/Sushi Typhoon Games/TOKYO TATTOO GIRLS: + "/AppData/LocalLow/Sushi Typhoon Games/TOKYO TATTOO GIRLS": tags: - save when: @@ -576472,18 +578050,18 @@ Tokyo Tattoo Girls: installDir: World of Tattoo: {} launch: - /WOT.exe: + "/WOT.exe": - when: - bit: 32 os: windows store: steam steam: id: 552910 -'Tokyo Twilight Ghost Hunters Daybreak: Special Gigs': +"Tokyo Twilight Ghost Hunters Daybreak: Special Gigs": installDir: Tokyo Twilight Ghost Hunters Daybreak Special Gigs: {} launch: - /Tokyo Twilight Ghost Hunters Daybreak Special Gigs.exe: + "/Tokyo Twilight Ghost Hunters Daybreak Special Gigs.exe": - when: - os: windows store: steam @@ -576491,7 +578069,7 @@ Tokyo Tattoo Girls: id: 425460 Tokyo Warfare: files: - /AppData/LocalLow/Tokyo Warfare Project/TokyoWarfareTurbo: + "/AppData/LocalLow/Tokyo Warfare Project/TokyoWarfareTurbo": tags: - save when: @@ -576499,7 +578077,7 @@ Tokyo Warfare: installDir: TOKYO WARFARE: {} launch: - /TokyoWarfare.exe: + "/TokyoWarfare.exe": - when: - os: windows store: steam @@ -576509,7 +578087,7 @@ Tokyo Warfare Turbo: installDir: Tokyo Warfare Turbo: {} launch: - /TokyoWarfareTurbo.exe: + "/TokyoWarfareTurbo.exe": - when: - os: windows store: steam @@ -576519,15 +578097,15 @@ Tokyo Wizard: installDir: Tokyo Wizard: {} launch: - /Tokyo Wizard.app/Contents/MacOS/Tokyo Wizard: + "/Tokyo Wizard.app/Contents/MacOS/Tokyo Wizard": - when: - os: mac store: steam - /TokyoWizard: + "/TokyoWizard": - when: - os: linux store: steam - /TokyoWizard.exe: + "/TokyoWizard.exe": - when: - os: windows store: steam @@ -576535,12 +578113,12 @@ Tokyo Wizard: id: 1124410 Tokyo Xanadu eX+: files: - /TokyoXanadu.ini: + "/TokyoXanadu.ini": tags: - config when: - os: windows - /My Games/Aksys Games/Tokyo Xanadu eX+: + "/My Games/Aksys Games/Tokyo Xanadu eX+": tags: - save when: @@ -576550,7 +578128,7 @@ Tokyo Xanadu eX+: installDir: Tokyo Xanadu eX+: {} launch: - /TokyoXanadu.exe: + "/TokyoXanadu.exe": - when: - store: steam steam: @@ -576564,20 +578142,20 @@ Toltec and the mysteries of the Secret Island: installDir: TOLTEC AND THE MYSTERIES OF THE SECRET ISLAND: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam steam: id: 961870 -Tom Clancy's EndWar: +"Tom Clancy's EndWar": files: - /OfGame/Config: + "/OfGame/Config": tags: - config when: - os: windows - /Saved Games/Tom Clancy's EndWar/Saved Games: + "/Saved Games/Tom Clancy's EndWar/Saved Games": tags: - save when: @@ -576585,23 +578163,23 @@ Tom Clancy's EndWar: installDir: Tom Clancys Endwar: {} launch: - /binaries/endwar.exe: + "/binaries/endwar.exe": - when: - store: steam - workingDir: /binaries + workingDir: "/binaries" steam: id: 21800 -Tom Clancy's EndWar Online: +"Tom Clancy's EndWar Online": steam: id: 381810 -Tom Clancy's Ghost Recon: +"Tom Clancy's Ghost Recon": files: - /Mods/Origmiss/save: + "/Mods/Origmiss/save": tags: - save when: - os: windows - /options.xml: + "/options.xml": tags: - config when: @@ -576615,14 +578193,14 @@ Tom Clancy's Ghost Recon: installDir: Ghost Recon: {} launch: - /ghostrecon.exe: + "/ghostrecon.exe": - when: - store: steam steam: id: 15300 -Tom Clancy's Ghost Recon Advanced Warfighter: +"Tom Clancy's Ghost Recon Advanced Warfighter": files: - /Settings/profiles: + "/Settings/profiles": tags: - save when: @@ -576630,14 +578208,14 @@ Tom Clancy's Ghost Recon Advanced Warfighter: installDir: Ghost Recon Advanced Warfighter: {} launch: - /graw.exe: + "/graw.exe": - when: - store: steam steam: id: 13640 -Tom Clancy's Ghost Recon Advanced Warfighter 2: +"Tom Clancy's Ghost Recon Advanced Warfighter 2": files: - /GRAW2/settings/profiles//savegames: + "/GRAW2/settings/profiles//savegames": tags: - save when: @@ -576645,20 +578223,20 @@ Tom Clancy's Ghost Recon Advanced Warfighter 2: installDir: Ghost Recon Advanced Warfighter 2: {} launch: - /graw2.exe: + "/graw2.exe": - when: - store: steam steam: id: 13510 -Tom Clancy's Ghost Recon Breakpoint: +"Tom Clancy's Ghost Recon Breakpoint": files: - /savegames//11903: + "/savegames//11903": tags: - save when: - os: windows store: uplay - /My Games/Ghost Recon Breakpoint: + "/My Games/Ghost Recon Breakpoint": tags: - config when: @@ -576670,43 +578248,43 @@ Tom Clancy's Ghost Recon Breakpoint: Ghost Recon Breakpoint: {} steam: id: 2231380 -Tom Clancy's Ghost Recon Phantoms: +"Tom Clancy's Ghost Recon Phantoms": files: - /Game/NCSA-live/*.ini: + "/Game/NCSA-live/*.ini": tags: - config when: - store: steam - /Game/PDC-live/*.ini: + "/Game/PDC-live/*.ini": tags: - config when: - store: steam - /NCSA-Live/*.ini: + "/NCSA-Live/*.ini": tags: - config when: - os: windows - /PDC-Live/*.ini: + "/PDC-Live/*.ini": tags: - config when: - os: windows steam: id: 243870 -Tom Clancy's Ghost Recon Wildlands: +"Tom Clancy's Ghost Recon Wildlands": files: - /savegames//1771: + "/savegames//1771": tags: - save when: - store: uplay - /savegames//3559: + "/savegames//3559": tags: - save when: - - store: uplay - /My Games/Ghost Recon Wildlands: + - store: steam + "/My Games/Ghost Recon Wildlands": tags: - config when: @@ -576715,9 +578293,9 @@ Tom Clancy's Ghost Recon Wildlands: Wildlands: {} steam: id: 460930 -'Tom Clancy''s Ghost Recon: Future Soldier': +"Tom Clancy's Ghost Recon: Future Soldier": files: - /Ubisoft/Tom Clancy's Ghost Recon Future Soldier: + "/Ubisoft/Tom Clancy's Ghost Recon Future Soldier": tags: - config - save @@ -576725,74 +578303,74 @@ Tom Clancy's Ghost Recon Wildlands: - os: windows id: steamExtra: - - 2028055 - - 212673 - - 212672 - 212671 + - 212672 + - 212673 + - 2028055 installDir: - Tom Clancy's Ghost Recon Future Soldier: {} + "Tom Clancy's Ghost Recon Future Soldier": {} launch: - /Future Soldier.exe: - - arguments: '-uplay_steam_mode' + "/Future Soldier.exe": + - arguments: "-uplay_steam_mode" when: - store: steam steam: id: 212630 -Tom Clancy's H.A.W.X: +"Tom Clancy's H.A.W.X": files: - /Saved Games/Tom Clancy's H.A.W.X/Profiles: + "/Saved Games/Tom Clancy's H.A.W.X/Profiles": tags: - config - save when: - os: windows installDir: - Tom Clany's HAWX: {} + "Tom Clany's HAWX": {} launch: - /HAWX.exe: + "/HAWX.exe": - when: - store: steam - /HAWX_dx10.exe: + "/HAWX_dx10.exe": - when: - store: steam steam: id: 21900 -Tom Clancy's H.A.W.X. 2: +"Tom Clancy's H.A.W.X. 2": files: - /Saved Games/Tom Clancy's H.A.W.X 2/Profiles: + "/Saved Games/Tom Clancy's H.A.W.X 2/Profiles": tags: - config - save when: - os: windows installDir: - Tom Clancy's HAWX 2 EMEA: {} + "Tom Clancy's HAWX 2 EMEA": {} launch: - /HAWX2.exe: - - arguments: '-uplay_steam_mode' + "/HAWX2.exe": + - arguments: "-uplay_steam_mode" when: - store: steam - /HAWX2_DX11.exe: - - arguments: '-uplay_steam_mode' + "/HAWX2_DX11.exe": + - arguments: "-uplay_steam_mode" when: - store: steam steam: id: 48180 -Tom Clancy's Politika: +"Tom Clancy's Politika": files: - /save: + "/save": tags: - save when: - os: windows - /settings.txt: + "/settings.txt": tags: - config when: - os: windows -Tom Clancy's Rainbow Six: +"Tom Clancy's Rainbow Six": files: - /data/save: + "/data/save": tags: - save when: @@ -576802,28 +578380,28 @@ Tom Clancy's Rainbow Six: installDir: Rainbow Six: {} launch: - /rainbowsix.exe: + "/rainbowsix.exe": - when: - store: steam registry: - HKEY_LOCAL_MACHINE/SOFTWARE/WOW6432Node/Red Storm Entertainment/Tom Clancy's Rainbow Six: + "HKEY_LOCAL_MACHINE/SOFTWARE/WOW6432Node/Red Storm Entertainment/Tom Clancy's Rainbow Six": tags: - config steam: id: 13650 -'Tom Clancy''s Rainbow Six 3: Raven Shield': +"Tom Clancy's Rainbow Six 3: Raven Shield": files: - /Save: + "/Save": tags: - save when: - os: windows - /Save/Profiles/.ini: + "/Save/Profiles/.ini": tags: - config when: - os: windows - /system/*.ini: + "/system/*.ini": tags: - config when: @@ -576834,20 +578412,20 @@ Tom Clancy's Rainbow Six: installDir: Rainbow Six 3 Gold: {} launch: - /system/ravenshield.exe: + "/system/ravenshield.exe": - when: - store: steam steam: id: 19830 -Tom Clancy's Rainbow Six Extraction: +"Tom Clancy's Rainbow Six Extraction": files: - /savegames//5271: + "/savegames//5271": tags: - save when: - os: windows store: uplay - /My Games/Rainbow Six - Extraction//GameSettings.ini: + "/My Games/Rainbow Six - Extraction//GameSettings.ini": tags: - config when: @@ -576855,8 +578433,8 @@ Tom Clancy's Rainbow Six Extraction: installDir: Tom Clancy’s Rainbow Six Extraction: {} launch: - /R6-Extraction.exe: - - arguments: '-uplay_steam_mode' + "/R6-Extraction.exe": + - arguments: "-uplay_steam_mode" when: - bit: 64 os: windows @@ -576867,30 +578445,30 @@ Tom Clancy's Rainbow Six Extraction: - config steam: id: 2379390 -Tom Clancy's Rainbow Six Siege: +"Tom Clancy's Rainbow Six Siege": files: - /savegames//635: + "/savegames//635": tags: - save when: - os: windows store: uplay - /My Games/Rainbow Six - Siege//GameSettings.ini: + "/My Games/Rainbow Six - Siege//GameSettings.ini": tags: - config when: - os: windows installDir: - Tom Clancy's Rainbow Six Siege: {} + "Tom Clancy's Rainbow Six Siege": {} registry: HKEY_CURRENT_USER/Software/Ubisoft/Rainbow Six - Siege: tags: - config steam: id: 359550 -'Tom Clancy''s Rainbow Six: Covert Ops Essentials': +"Tom Clancy's Rainbow Six: Covert Ops Essentials": files: - /data/Save: + "/data/Save": tags: - save when: @@ -576899,14 +578477,14 @@ Tom Clancy's Rainbow Six Siege: HKEY_LOCAL_MACHINE/SOFTWARE/WOW6432Node/Red Storm Entertainment/Rogue Spear: tags: - config -'Tom Clancy''s Rainbow Six: Lockdown': +"Tom Clancy's Rainbow Six: Lockdown": files: - /data: + "/data": tags: - config when: - os: windows - /data/save: + "/data/save": tags: - save when: @@ -576914,14 +578492,14 @@ Tom Clancy's Rainbow Six Siege: installDir: Rainbow Six Lockdown: {} launch: - /lockdown.exe: + "/lockdown.exe": - when: - store: steam steam: id: 15000 -'Tom Clancy''s Rainbow Six: Rogue Spear': +"Tom Clancy's Rainbow Six: Rogue Spear": files: - /data/save: + "/data/save": tags: - save when: @@ -576932,7 +578510,7 @@ Tom Clancy's Rainbow Six Siege: installDir: Rainbow Six 2 Rogue Spear: {} launch: - /roguespear.exe: + "/roguespear.exe": - when: - store: steam registry: @@ -576941,9 +578519,9 @@ Tom Clancy's Rainbow Six Siege: - config steam: id: 13660 -'Tom Clancy''s Rainbow Six: Rogue Spear: Black Thorn': +"Tom Clancy's Rainbow Six: Rogue Spear: Black Thorn": files: - /data/Save: + "/data/Save": tags: - save when: @@ -576952,14 +578530,14 @@ Tom Clancy's Rainbow Six Siege: HKEY_LOCAL_MACHINE/SOFTWARE/WOW6432Node/Red Storm Entertainment/Rogue Spear: tags: - config -'Tom Clancy''s Rainbow Six: Vegas': +"Tom Clancy's Rainbow Six: Vegas": files: - /Engine/Config: + "/Engine/Config": tags: - config when: - os: windows - /Ubisoft/R6Vegas: + "/Ubisoft/R6Vegas": tags: - config - save @@ -576968,20 +578546,20 @@ Tom Clancy's Rainbow Six Siege: installDir: Rainbow Six Vegas: {} launch: - /Binaries/R6Vegas_Game.exe: + "/Binaries/R6Vegas_Game.exe": - when: - store: steam - workingDir: /Binaries + workingDir: "/Binaries" steam: id: 13540 -'Tom Clancy''s Rainbow Six: Vegas 2': +"Tom Clancy's Rainbow Six: Vegas 2": files: - /KellerGame/Config: + "/KellerGame/Config": tags: - config when: - os: windows - /My Games/Ubisoft/R6Vegas2: + "/My Games/Ubisoft/R6Vegas2": tags: - config - save @@ -576990,20 +578568,20 @@ Tom Clancy's Rainbow Six Siege: installDir: Rainbow Six Vegas 2: {} launch: - /binaries/R6Vegas2_Game.exe: + "/binaries/R6Vegas2_Game.exe": - when: - store: steam - workingDir: /binaries + workingDir: "/binaries" steam: id: 15120 -Tom Clancy's Splinter Cell: +"Tom Clancy's Splinter Cell": files: - /Save/: + "/Save/": tags: - save when: - os: windows - /system/*.ini: + "/system/*.ini": tags: - config when: @@ -577013,49 +578591,49 @@ Tom Clancy's Splinter Cell: installDir: Splinter Cell: {} launch: - /system/splintercell.exe: + "/system/splintercell.exe": - when: - store: steam - workingDir: /system + workingDir: "/system" steam: id: 13560 -'Tom Clancy''s Splinter Cell: Blacklist': +"Tom Clancy's Splinter Cell: Blacklist": files: - /savegames//449: + "/savegames//449": tags: - save when: - os: windows store: uplay - /savegames//91: + "/savegames//91": tags: - save when: - os: windows store: uplay - /Ubisoft/Blacklist: + "/Ubisoft/Blacklist": tags: - config when: - os: windows installDir: - Tom Clancy's Splinter Cell Blacklist: {} + "Tom Clancy's Splinter Cell Blacklist": {} launch: - /Blacklist_Launcher.exe: - - arguments: ' -uplay_steam_mode' + "/Blacklist_Launcher.exe": + - arguments: " -uplay_steam_mode" when: - os: windows store: steam steam: id: 235600 -'Tom Clancy''s Splinter Cell: Chaos Theory': +"Tom Clancy's Splinter Cell: Chaos Theory": files: - /Ubisoft/Tom Clancy's Splinter Cell Chaos Theory: + "/Ubisoft/Tom Clancy's Splinter Cell Chaos Theory": tags: - config when: - os: windows - /Ubisoft/Tom Clancy's Splinter Cell Chaos Theory/Profiles: + "/Ubisoft/Tom Clancy's Splinter Cell Chaos Theory/Profiles": tags: - save when: @@ -577063,21 +578641,21 @@ Tom Clancy's Splinter Cell: installDir: Splintercell Chaos Theory: {} launch: - /system/splintercell3.exe: + "/system/splintercell3.exe": - when: - store: steam - workingDir: /system + workingDir: "/system" steam: id: 13570 -'Tom Clancy''s Splinter Cell: Conviction': +"Tom Clancy's Splinter Cell: Conviction": files: - /savegames//2: + "/savegames//2": tags: - save when: - os: windows store: uplay - /Ubisoft/Conviction/ConvictionUserPC.ini: + "/Ubisoft/Conviction/ConvictionUserPC.ini": tags: - config when: @@ -577088,24 +578666,24 @@ Tom Clancy's Splinter Cell: - 33372 steam: id: 33229 -'Tom Clancy''s Splinter Cell: Double Agent': +"Tom Clancy's Splinter Cell: Double Agent": files: - /SCDA-Offline/System/SplinterCell4.ini: + "/SCDA-Offline/System/SplinterCell4.ini": tags: - config when: - os: windows - /SCDA-Online/System/Default.ini: + "/SCDA-Online/System/Default.ini": tags: - config when: - os: windows - /Application Data/Ubisoft/SplinterCell4/: + "/Application Data/Ubisoft/SplinterCell4/": tags: - save when: - os: windows - /Application Data/Ubisoft/SplinterCell4/save/Offline/: + "/Application Data/Ubisoft/SplinterCell4/save/Offline/": tags: - save when: @@ -577113,58 +578691,58 @@ Tom Clancy's Splinter Cell: installDir: Splinter Cell - Double Agent: {} launch: - /SCDALauncher.exe: + "/SCDALauncher.exe": - when: - store: steam steam: id: 13580 -'Tom Clancy''s Splinter Cell: Pandora Tomorrow': +"Tom Clancy's Splinter Cell: Pandora Tomorrow": files: - /offline/Save: + "/offline/Save": tags: - save when: - os: windows - /offline/system: + "/offline/system": tags: - config when: - os: windows - /online/system: + "/online/system": tags: - config when: - os: windows -Tom Clancy's The Division: +"Tom Clancy's The Division": files: - /My Games/Tom Clancy's The Division: + "/My Games/Tom Clancy's The Division": tags: - config when: - os: windows installDir: - Tom Clancy's The Division: {} + "Tom Clancy's The Division": {} steam: id: 365590 -Tom Clancy's The Division 2: +"Tom Clancy's The Division 2": files: - /My Games/Tom Clancy's The Division 2: + "/My Games/Tom Clancy's The Division 2": tags: - config when: - os: windows installDir: - Tom Clancy's The Division 2: {} + "Tom Clancy's The Division 2": {} steam: id: 2221490 -Tom Clancy's ruthless.com: +"Tom Clancy's ruthless.com": files: - /prefs.cfg: + "/prefs.cfg": tags: - config when: - os: windows - /save: + "/save": tags: - save when: @@ -577173,22 +578751,22 @@ Tom vs. The Armies of Hell: installDir: ArmiesOfHell: {} launch: - /ArmiesOfHell.app: + "/ArmiesOfHell.app": - when: - os: mac store: steam - /ArmiesOfHell.exe: + "/ArmiesOfHell.exe": - when: - os: windows store: steam steam: id: 262630 -Tom's Mansion: +"Tom's Mansion": installDir: - Tom'sMansion: {} + "Tom'sMansion": {} launch: - /RealTMBuild.exe: - - arguments: '-windowed' + "/RealTMBuild.exe": + - arguments: "-windowed" when: - os: windows store: steam @@ -577198,11 +578776,11 @@ Tomai: installDir: Tomai: {} launch: - /TOMAI.exe: + "/TOMAI.exe": - when: - os: windows store: steam - /TOMAI.sh: + "/TOMAI.sh": - when: - os: linux store: steam @@ -577212,40 +578790,40 @@ Tomato Jones: installDir: Tomato Jones: {} launch: - /system/Tomato Jones.exe: + "/system/Tomato Jones.exe": - when: - os: windows store: steam - workingDir: /system + workingDir: "/system" steam: id: 499460 Tomato Jones 2: installDir: Tomato Jones 2: {} launch: - /system/Tomato Jones II.exe: + "/system/Tomato Jones II.exe": - when: - os: windows store: steam - workingDir: /system + workingDir: "/system" steam: id: 625940 Tomato Jones 3: installDir: Tomato Jones 3: {} launch: - /system/Tomato Jones III.exe: + "/system/Tomato Jones III.exe": - when: - os: windows store: steam - workingDir: /system + workingDir: "/system" steam: id: 788890 Tomato Way: installDir: Tomato Way: {} launch: - /TW.exe: + "/TW.exe": - when: - os: windows store: steam @@ -577255,7 +578833,7 @@ Tomato Way 2: installDir: Tomato Way 2: {} launch: - /TW2.exe: + "/TW2.exe": - when: - bit: 64 os: windows @@ -577266,7 +578844,7 @@ Tomato Way 3: installDir: Tomato Way 3: {} launch: - /TW3.exe: + "/TW3.exe": - when: - bit: 64 os: windows @@ -577282,35 +578860,35 @@ Tomb Joe: installDir: Tomb Joe: {} launch: - /Tomb Joe.exe: + "/Tomb Joe.exe": - when: - store: steam steam: id: 575860 Tomb Raider (1996): files: - /ATISET.DAT: + "/ATISET.DAT": tags: - config when: - os: windows - /SAVEGAME.*: + "/SAVEGAME.*": tags: - save when: - os: dos - /SETTINGS.DAT: + "/SETTINGS.DAT": tags: - config when: - os: dos - os: windows - /TOMBRAID/SAVEGAME.*: + "/TOMBRAID/SAVEGAME.*": tags: - save when: - store: steam - /TOMBRAID/saveati.*: + "/TOMBRAID/saveati.*": tags: - save when: @@ -577323,38 +578901,39 @@ Tomb Raider (1996): installDir: Tomb Raider (I): {} launch: - /DOSBox.exe: - - arguments: '-conf dosboxtr.conf' + "/DOSBox.exe": + - arguments: "-conf dosboxtr.conf" when: - store: steam - - arguments: '-conf dosboxtrWindowed.conf' + - arguments: "-conf dosboxtrWindowed.conf" when: - store: steam steam: id: 224960 Tomb Raider (2013): files: - /Library/Application Support/Feral Interactive/Tomb Raider: + "/Library/Application Support/Feral Interactive/Tomb Raider": tags: - config when: - os: mac - /userdata//203160: + "/userdata//203160": tags: - save when: - store: steam - /My Games/Tomb Raider: + "/My Games/Tomb Raider": tags: - save when: - - store: gog - /Tomb Raider/: + - os: windows + store: gog + "/Tomb Raider/": tags: - save when: - - store: epic - /feral-interactive/Tomb Raider: + - os: windows + "/feral-interactive/Tomb Raider": tags: - config when: @@ -577393,15 +578972,15 @@ Tomb Raider (2013): installDir: Tomb Raider: {} launch: - /Tomb Raider.app: + "/Tomb Raider.app": - when: - os: mac store: steam - /TombRaider.exe: + "/TombRaider.exe": - when: - os: windows store: steam - /TombRaider.sh: + "/TombRaider.sh": - when: - os: linux store: steam @@ -577415,11 +578994,11 @@ Tomb Raider - The Final Hours Digital Book: installDir: Final Hours of Tomb Raider: {} launch: - /Final Hours Of Tomb Raider.app: + "/Final Hours Of Tomb Raider.app": - when: - os: mac store: steam - /The Final Hours of Tomb Raider.exe: + "/The Final Hours of Tomb Raider.exe": - when: - os: windows store: steam @@ -577434,7 +579013,7 @@ Tomb Raider Chronicles: installDir: Tomb Raider (V) Chronicles: {} launch: - /PCTomb5.exe: + "/PCTomb5.exe": - when: - store: steam - arguments: Setup @@ -577447,7 +579026,7 @@ Tomb Raider I-III Remastered: id: 2478970 Tomb Raider II: files: - /savegame.*: + "/savegame.*": tags: - save when: @@ -577460,7 +579039,7 @@ Tomb Raider II: installDir: Tomb Raider (II): {} launch: - /Tomb2.exe: + "/Tomb2.exe": - when: - store: steam registry: @@ -577469,14 +579048,14 @@ Tomb Raider II: - config steam: id: 225300 -'Tomb Raider III: Adventures of Lara Croft': +"Tomb Raider III: Adventures of Lara Croft": files: - /config.txt: + "/config.txt": tags: - config when: - os: windows - /savegame.*: + "/savegame.*": tags: - save when: @@ -577489,7 +579068,7 @@ Tomb Raider II: installDir: TombRaider (III): {} launch: - /tomb3.exe: + "/tomb3.exe": - when: - store: steam - arguments: setup @@ -577497,19 +579076,19 @@ Tomb Raider II: - store: steam steam: id: 225320 -'Tomb Raider: Anniversary': +"Tomb Raider: Anniversary": files: - /Library/Application Support/Feral Interactive/Tomb Raider Anniversary/Preferences Data: + "/Library/Application Support/Feral Interactive/Tomb Raider Anniversary/Preferences Data": tags: - config when: - os: mac - /Library/Application Support/Feral Interactive/Tomb Raider Anniversary/profiles: + "/Library/Application Support/Feral Interactive/Tomb Raider Anniversary/profiles": tags: - save when: - os: mac - /Eidos/Tomb Raider - Anniversary: + "/Eidos/Tomb Raider - Anniversary": tags: - save when: @@ -577519,27 +579098,27 @@ Tomb Raider II: installDir: Tomb Raider Anniversary: {} launch: - /Tomb Raider Anniversary.app: + "/Tomb Raider Anniversary.app": - when: - os: mac store: steam - /tra.exe: + "/tra.exe": - when: - os: windows store: steam - - arguments: '-setup' + - arguments: "-setup" when: - os: windows store: steam registry: - 'HKEY_CURRENT_USER/Software/Crystal Dynamics/Tomb Raider: Anniversary': + "HKEY_CURRENT_USER/Software/Crystal Dynamics/Tomb Raider: Anniversary": tags: - config steam: id: 8000 -'Tomb Raider: Legend': +"Tomb Raider: Legend": files: - /Tomb Raider - Legend: + "/Tomb Raider - Legend": tags: - save when: @@ -577549,21 +579128,21 @@ Tomb Raider II: installDir: Tomb Raider Legend: {} launch: - /trl.exe: + "/trl.exe": - when: - store: steam - - arguments: '-setup' + - arguments: "-setup" when: - store: steam registry: - 'HKEY_CURRENT_USER/Software/Crystal Dynamics/Tomb Raider: Legend': + "HKEY_CURRENT_USER/Software/Crystal Dynamics/Tomb Raider: Legend": tags: - config steam: id: 7000 -'Tomb Raider: The Angel of Darkness': +"Tomb Raider: The Angel of Darkness": files: - /SaveGame: + "/SaveGame": tags: - save when: @@ -577573,7 +579152,7 @@ Tomb Raider II: installDir: Tomb Raider (VI) The Angel of Darkness: {} launch: - /Launcher.exe: + "/Launcher.exe": - when: - store: steam registry: @@ -577582,7 +579161,7 @@ Tomb Raider II: - config steam: id: 225020 -'Tomb Raider: The Last Revelation': +"Tomb Raider: The Last Revelation": gog: id: 1207663513 id: @@ -577591,14 +579170,14 @@ Tomb Raider II: installDir: Tomb Raider (IV) The Last Revelation: {} launch: - /Tomb4.exe: + "/Tomb4.exe": - when: - store: steam steam: id: 224980 -'Tomb Raider: Underworld': +"Tomb Raider: Underworld": files: - /Eidos/Tomb Raider - Underworld: + "/Eidos/Tomb Raider - Underworld": tags: - save when: @@ -577608,20 +579187,20 @@ Tomb Raider II: installDir: Tomb Raider Underworld: {} launch: - /tru.exe: + "/tru.exe": - when: - store: steam registry: - 'HKEY_CURRENT_USER/Software/Crystal Dynamics/Tomb Raider: Underworld': + "HKEY_CURRENT_USER/Software/Crystal Dynamics/Tomb Raider: Underworld": tags: - config steam: id: 8140 -'Tomb Reader: TrapLand': +"Tomb Reader: TrapLand": installDir: Tomb Reader TrapLand: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -577631,7 +579210,7 @@ Tomb Robber: installDir: SweedBed: {} launch: - /SweetBed/MyProject.exe: + "/SweetBed/MyProject.exe": - when: - os: windows store: steam @@ -577641,20 +579220,20 @@ Tomb Towers: installDir: Tomb Towers: {} launch: - /Tomb Towers.app: + "/Tomb Towers.app": - when: - os: mac store: steam - /Tomb Towers.exe: + "/Tomb Towers.exe": - when: - os: windows store: steam - /Tomb Towers.x86: + "/Tomb Towers.x86": - when: - bit: 32 os: linux store: steam - /Tomb Towers.x86_64: + "/Tomb Towers.x86_64": - when: - bit: 64 os: linux @@ -577668,27 +579247,33 @@ Tomb of Tyrants: installDir: Tomb of Tyrants: {} launch: - /ToT.app: + "/ToT.app": - when: + - bit: 32 + os: mac + store: steam - bit: 64 os: mac store: steam - /ToT.exe: + "/ToT.exe": - when: - os: windows store: steam - /ToT.sh: + "/ToT.sh": - when: - bit: 32 os: linux store: steam + - bit: 64 + os: linux + store: steam steam: id: 340360 -'Tomb of Zojir: Last Half of Darkness': +"Tomb of Zojir: Last Half of Darkness": installDir: Last Half of Darkness - Society of the Serpent Moon: {} launch: - /StartMenu.exe: + "/StartMenu.exe": - when: - os: windows store: steam @@ -577698,11 +579283,11 @@ Tombeaux: installDir: Tombeaux: {} launch: - /Tombeaux.app: + "/Tombeaux.app": - when: - os: mac store: steam - /Tombeaux.exe: + "/Tombeaux.exe": - when: - os: windows store: steam @@ -577717,15 +579302,15 @@ Tomboys Need Love Too!: installDir: Tomboys Need Love Too!: {} launch: - /TNLT.app: + "/TNLT.app": - when: - os: mac store: steam - /TNLT.exe: + "/TNLT.exe": - when: - os: windows store: steam - /TNLT.sh: + "/TNLT.sh": - when: - os: linux store: steam @@ -577735,16 +579320,16 @@ Tommy Tronic: installDir: Tommy Tronic: {} launch: - /tt.exe: + "/tt.exe": - when: - store: steam steam: id: 41660 -Tommy's Battlegrounds: +"Tommy's Battlegrounds": installDir: MINIWars: {} launch: - /MINIWars.exe: + "/MINIWars.exe": - when: - os: windows store: steam @@ -577754,11 +579339,14 @@ Tommyknockers: installDir: Tommyknockers: {} launch: - /Tommyknockers.exe: + "/Tommyknockers.exe": - when: - bit: 32 os: windows store: steam + - bit: 64 + os: windows + store: steam steam: id: 794640 Tomorrow: @@ -577766,21 +579354,21 @@ Tomorrow: Tomorrow: {} steam: id: 405480 -Tomorrow Don't Come: +"Tomorrow Don't Come": installDir: - TOMORROW DON'T COME: {} + "TOMORROW DON'T COME": {} launch: - /TOMORROW DON'T COME.exe: + "/TOMORROW DON'T COME.exe": - when: - os: windows store: steam steam: id: 758570 -'Tomoyo After: It''s a Wonderful Life': +"Tomoyo After: It's a Wonderful Life": installDir: - Tomoyo After ~It's a Wonderful Life~ English Edition: {} + "Tomoyo After ~It's a Wonderful Life~ English Edition": {} launch: - /RealLiveEn.exe: + "/RealLiveEn.exe": - when: - store: steam steam: @@ -577789,7 +579377,7 @@ Tompi Jones: installDir: Tompi Jones: {} launch: - /TompiJones.exe: + "/TompiJones.exe": - when: - os: windows store: steam @@ -577799,11 +579387,11 @@ Tomscape: installDir: Tomscape: {} launch: - /tomscape_mac.app: + "/tomscape_mac.app": - when: - os: mac store: steam - /tomscape_windows.exe: + "/tomscape_windows.exe": - when: - os: windows store: steam @@ -577816,41 +579404,41 @@ Tonetaker VR: id: 1145050 Tonic Trouble: files: - /GAMEDATA/OPTIONS: + "/GAMEDATA/OPTIONS": tags: - config when: - os: windows - /GAMEDATA/SaveGame: + "/GAMEDATA/SaveGame": tags: - save when: - os: windows - /UBISOFT/UBI.INI: + "/UBISOFT/UBI.INI": tags: - config when: - os: windows Tonic Trouble Special Edition: files: - /GameData/Options: + "/GameData/Options": tags: - config when: - os: windows - /GameData/SaveGame: + "/GameData/SaveGame": tags: - save when: - os: windows - /Ubisoft/ubi.ini: + "/Ubisoft/ubi.ini": tags: - config when: - os: windows Tonight We Riot: files: - /unity3d/Pixel Pushers Union 512/Tonight We Riot/prefs: + "/unity3d/Pixel Pushers Union 512/Tonight We Riot/prefs": tags: - config - save @@ -577861,16 +579449,16 @@ Tonight We Riot: installDir: Tonight We Riot: {} launch: - /TonightWeRiot_Linux.x86_64: + "/TonightWeRiot_Linux.x86_64": - when: - bit: 64 os: linux store: steam - /TonightWeRiot_Mac.app/Contents/MacOS/TonightWeRiot_Mac: + "/TonightWeRiot_Mac.app/Contents/MacOS/TonightWeRiot_Mac": - when: - os: mac store: steam - /TonightWeRiot_PC.exe: + "/TonightWeRiot_PC.exe": - when: - os: windows store: steam @@ -577881,93 +579469,93 @@ Tonight We Riot: - save steam: id: 290690 -Tony Hawk's American Wasteland: +"Tony Hawk's American Wasteland": files: - /Game/Save: + "/Game/Save": tags: - save when: - os: windows -Tony Hawk's Pro Skater 1 + 2: +"Tony Hawk's Pro Skater 1 + 2": files: - /VicariousVisions/THPS/GraphicsSettings.ini: + "/VicariousVisions/THPS/GraphicsSettings.ini": tags: - config when: - os: windows - /VicariousVisions/THPS/InputSettings.ini: + "/VicariousVisions/THPS/InputSettings.ini": tags: - config when: - os: windows - /VicariousVisions/THPS/Saved/SaveGames: + "/VicariousVisions/THPS/Saved/SaveGames": tags: - save when: - os: windows steam: id: 2395210 -Tony Hawk's Pro Skater 2: +"Tony Hawk's Pro Skater 2": files: - /Save: + "/Save": tags: - save when: - os: windows - /TH2_OPT.CFG: + "/TH2_OPT.CFG": tags: - config when: - os: windows -Tony Hawk's Pro Skater 3: +"Tony Hawk's Pro Skater 3": files: - /Data/Settings: + "/Data/Settings": tags: - save when: - os: windows -Tony Hawk's Pro Skater 4: +"Tony Hawk's Pro Skater 4": files: - /Game/Save: + "/Game/Save": tags: - save when: - os: windows - /Game/config.cfg: + "/Game/config.cfg": tags: - config when: - os: windows -Tony Hawk's Pro Skater HD: +"Tony Hawk's Pro Skater HD": files: - /My Games/Tony Hawk Pro Skater HD/THHDGame/Config: + "/My Games/Tony Hawk Pro Skater HD/THHDGame/Config": tags: - config when: - os: windows - /My Games/Tony Hawk Pro Skater HD/THHDGame/Config/CFile.bin: + "/My Games/Tony Hawk Pro Skater HD/THHDGame/Config/CFile.bin": tags: - save when: - os: windows installDir: - Tony Hawk's Pro Skater HD: {} + "Tony Hawk's Pro Skater HD": {} launch: - /binaries/Win32/THHDGame.exe: + "/binaries/Win32/THHDGame.exe": - when: - store: steam steam: id: 207210 -Tony Hawk's Underground: +"Tony Hawk's Underground": files: - /Game/Save: + "/Game/Save": tags: - save when: - os: windows -Tony Hawk's Underground 2: +"Tony Hawk's Underground 2": files: - /Game/Save: + "/Game/Save": tags: - save when: @@ -577976,49 +579564,49 @@ Tony Slopes: installDir: Tony Slopes: {} launch: - /TonySlopes.exe: + "/TonySlopes.exe": - when: - bit: 64 os: windows store: steam steam: id: 835770 -Tony Stewart's All-American Racing: +"Tony Stewart's All-American Racing": installDir: - Tony Stewart's All-American Racing: {} + "Tony Stewart's All-American Racing": {} launch: - /AllAmericanRacing.exe: + "/AllAmericanRacing.exe": - when: - bit: 64 os: windows store: steam - - arguments: '-MGI-reset-graphics-settings' + - arguments: "-MGI-reset-graphics-settings" when: - bit: 64 os: windows store: steam - /DeleteSaveData.bat: + "/DeleteSaveData.bat": - when: - bit: 64 os: windows store: steam steam: id: 1367690 -Tony Stewart's Sprint Car Racing: +"Tony Stewart's Sprint Car Racing": installDir: - Tony Stewart's Sprint Car Racing: {} + "Tony Stewart's Sprint Car Racing": {} launch: - /DeleteSaveData.bat: + "/DeleteSaveData.bat": - when: - bit: 64 os: windows store: steam - /SprintCarRacing.exe: + "/SprintCarRacing.exe": - when: - bit: 64 os: windows store: steam - - arguments: '-MGI-reset-graphics-settings' + - arguments: "-MGI-reset-graphics-settings" when: - bit: 64 os: windows @@ -578027,12 +579615,12 @@ Tony Stewart's Sprint Car Racing: id: 1240230 Tony Tough and the Night of Roasted Moths: files: - /SAVE/*.sav: + "/SAVE/*.sav": tags: - save when: - os: windows - /Saves/tony.*: + "/Saves/tony.*": tags: - save when: @@ -578040,53 +579628,53 @@ Tony Tough and the Night of Roasted Moths: installDir: Tony Tough: {} launch: - /ScummVM_Linux/launch_tonytough_opengl.sh: + "/ScummVM_Linux/launch_tonytough_opengl.sh": - when: - os: linux store: steam - workingDir: /ScummVM_Linux - /ScummVM_Linux/launch_tonytough_safe.sh: + workingDir: "/ScummVM_Linux" + "/ScummVM_Linux/launch_tonytough_safe.sh": - when: - os: linux store: steam - workingDir: /ScummVM_Linux - /ScummVM_Mac/ScummVM.app/Contents/MacOS/scummvm: - - arguments: '-c \"scummvm-tonytough-opengl.ini\" tony-win' + workingDir: "/ScummVM_Linux" + "/ScummVM_Mac/ScummVM.app/Contents/MacOS/scummvm": + - arguments: "-c \\\"scummvm-tonytough-opengl.ini\\\" tony-win" when: - os: mac store: steam - workingDir: /ScummVM_Mac - - arguments: '-c \"scummvm-tonytough-safe.ini\" tony-win' + workingDir: "/ScummVM_Mac" + - arguments: "-c \\\"scummvm-tonytough-safe.ini\\\" tony-win" when: - os: mac store: steam - workingDir: /ScummVM_Mac - /ScummVM_Windows/scummvm.exe: - - arguments: '--no-console -c \"scummvm-tonytough-opengl.ini\" tony-win' + workingDir: "/ScummVM_Mac" + "/ScummVM_Windows/scummvm.exe": + - arguments: "--no-console -c \\\"scummvm-tonytough-opengl.ini\\\" tony-win" when: - os: windows store: steam - workingDir: /ScummVM_Windows - - arguments: '--no-console -c \"scummvm-tonytough-safe.ini\" tony-win' + workingDir: "/ScummVM_Windows" + - arguments: "--no-console -c \\\"scummvm-tonytough-safe.ini\\\" tony-win" when: - os: windows store: steam - workingDir: /ScummVM_Windows + workingDir: "/ScummVM_Windows" steam: id: 356210 Too Angry to Space: installDir: Too Angry to Space: {} launch: - /ToAngryToSpace.x86: + "/ToAngryToSpace.x86": - when: - os: linux store: steam - /TooAngryToSpace.app/Contents/MacOS/TooAngryToSpace: + "/TooAngryToSpace.app/Contents/MacOS/TooAngryToSpace": - when: - os: mac store: steam - /TooAngryToSpace.exe: + "/TooAngryToSpace.exe": - when: - os: windows store: steam @@ -578096,17 +579684,17 @@ Too Hot!: installDir: TooHot!: {} launch: - /TooHot.exe: + "/TooHot.exe": - when: - os: windows store: steam steam: id: 968540 -'Too Loud: Chapter 1': +"Too Loud: Chapter 1": installDir: Too Loud: {} launch: - /Too Loud.exe: + "/Too Loud.exe": - when: - bit: 64 os: windows @@ -578117,7 +579705,7 @@ Too Many Weapons: installDir: Too Many Weapons: {} launch: - /TooManyWeapons.exe: + "/TooManyWeapons.exe": - when: - os: windows store: steam @@ -578127,7 +579715,7 @@ Too White Basketball: installDir: Too White Basketball: {} launch: - /TWB.exe: + "/TWB.exe": - when: - store: steam steam: @@ -578142,7 +579730,7 @@ Toodee and Topdee: installDir: Toodee and Topdee: {} launch: - /ToodeeAndTopdee.exe: + "/ToodeeAndTopdee.exe": - when: - os: windows store: steam @@ -578152,7 +579740,7 @@ Tooki: installDir: Tooki: {} launch: - /Tooki.exe: + "/Tooki.exe": - when: - os: windows store: steam @@ -578162,7 +579750,7 @@ Toolboy: installDir: Toolboy: {} launch: - /Toolboy.exe: + "/Toolboy.exe": - when: - os: windows store: steam @@ -578170,12 +579758,12 @@ Toolboy: id: 1052540 Tools Up!: files: - /AppData/LocalLow/The Knights of Unity/Tools Up/SaveFile.dat: + "/AppData/LocalLow/The Knights of Unity/Tools Up/SaveFile.dat": tags: - save when: - os: windows - /AppData/LocalLow/The Knights of Unity/Tools Up/Settings.ini: + "/AppData/LocalLow/The Knights of Unity/Tools Up/Settings.ini": tags: - config when: @@ -578183,7 +579771,7 @@ Tools Up!: installDir: Tools Up!: {} launch: - /Tools Up.exe: + "/Tools Up.exe": - when: - os: windows store: steam @@ -578196,7 +579784,7 @@ Toon Ocean VR: id: 519160 Toon Quad: files: - /RData/Players: + "/RData/Players": tags: - config - save @@ -578206,20 +579794,20 @@ Toon War: installDir: ToonWar: {} launch: - /ToonWar.app: + "/ToonWar.app": - when: - os: mac store: steam - /ToonWar.exe: + "/ToonWar.exe": - when: - os: windows store: steam - /ToonWar.x86: + "/ToonWar.x86": - when: - bit: 32 os: linux store: steam - /ToonWar.x86_64: + "/ToonWar.x86_64": - when: - bit: 64 os: linux @@ -578228,7 +579816,7 @@ Toon War: id: 803780 ToonCar: files: - /RData/Players: + "/RData/Players": tags: - config - save @@ -578236,12 +579824,12 @@ ToonCar: - os: windows Toonstruck: files: - /*.SAV: + "/*.SAV": tags: - save when: - os: dos - /TOONSTRK.CFG: + "/TOONSTRK.CFG": tags: - config when: @@ -578251,15 +579839,15 @@ Toonstruck: installDir: Toonstruck: {} launch: - /Launch Toonstruck.bat: + "/Launch Toonstruck.bat": - when: - os: windows store: steam - /PlayGame.sh: + "/PlayGame.sh": - when: - os: linux store: steam - /Toonstruck.app: + "/Toonstruck.app": - when: - os: mac store: steam @@ -578267,14 +579855,14 @@ Toonstruck: id: 369830 Toontown Online: files: - /useropt: + "/useropt": tags: - config when: - os: windows Toontown Realms: files: - /Toontown Realms: + "/Toontown Realms": tags: - config - save @@ -578282,19 +579870,19 @@ Toontown Realms: - os: windows Toontown Rewritten: files: - /settings.json: + "/settings.json": tags: - config when: - os: windows - /Library/Application Support/Toontown Rewritten/settings.json: + "/Library/Application Support/Toontown Rewritten/settings.json": tags: - config when: - os: mac -'Toontown: Corporate Clash': +"Toontown: Corporate Clash": files: - /Corporate Clash: + "/Corporate Clash": tags: - config when: @@ -578306,19 +579894,19 @@ Tooth and Claw: id: 698600 Tooth and Tail: files: - /.config/ToothAndTail: + "/.config/ToothAndTail": tags: - config - save when: - os: mac - /ToothAndTail: + "/ToothAndTail": tags: - config - save when: - os: windows - /ToothAndTail: + "/ToothAndTail": tags: - config - save @@ -578329,15 +579917,15 @@ Tooth and Tail: installDir: ToothAndTail: {} launch: - /ToothAndTail: + "/ToothAndTail": - when: - os: linux store: steam - /ToothAndTail.app/Contents/MacOS/ToothAndTail: + "/ToothAndTail.app/Contents/MacOS/ToothAndTail": - when: - os: mac store: steam - /ToothAndTail.exe: + "/ToothAndTail.exe": - when: - os: windows store: steam @@ -578347,7 +579935,7 @@ Top Burger: installDir: Top Burger: {} launch: - /Top Burger.exe: + "/Top Burger.exe": - when: - os: windows store: steam @@ -578357,7 +579945,7 @@ Top Down Racer: installDir: Top Down Racer: {} launch: - /TopDownRacer.exe: + "/TopDownRacer.exe": - when: - os: windows store: steam @@ -578367,7 +579955,7 @@ Top Down Survivor: installDir: Top Down Survivor: {} launch: - /Top Down Survivor.exe: + "/Top Down Survivor.exe": - when: - os: windows store: steam @@ -578377,21 +579965,21 @@ Top Gun (2010): installDir: Top Gun: {} launch: - /binary/ConfigTool.exe: + "/binary/ConfigTool.exe": - when: - store: steam - workingDir: /binary - /binary/runme.exe: + workingDir: "/binary" + "/binary/runme.exe": - when: - store: steam - workingDir: /binary + workingDir: "/binary" steam: id: 38530 Top Hat: installDir: Top Hat: {} launch: - /Top Hat.exe: + "/Top Hat.exe": - when: - store: steam steam: @@ -578400,7 +579988,7 @@ Top Punch: installDir: Top Punch: {} launch: - /x64/Top Punch x64.exe: + "/x64/Top Punch x64.exe": - when: - bit: 64 os: windows @@ -578412,15 +580000,15 @@ Top Secret: Top Secret: {} steam: id: 613980 -'Top Speed 2: Racing Legends': +"Top Speed 2: Racing Legends": installDir: Top Speed 2: {} launch: - /Top Speed 2.app: + "/Top Speed 2.app": - when: - os: mac store: steam - /Top Speed 2.exe: + "/Top Speed 2.exe": - when: - bit: 64 os: windows @@ -578429,14 +580017,14 @@ Top Secret: id: 1103780 Top Spin: files: - /TopSpin: + "/TopSpin": tags: - config when: - os: windows Top Spin 2: files: - /Aspyr/Top Spin 2: + "/Aspyr/Top Spin 2": tags: - config when: @@ -578444,21 +580032,21 @@ Top Spin 2: installDir: Top Spin 2: {} launch: - /Data/Top Spin 2.exe: + "/Data/Top Spin 2.exe": - when: - store: steam - workingDir: /Data + workingDir: "/Data" steam: id: 7810 Top Torch: installDir: Top Torch: {} launch: - /Top Torch - Mac.app: + "/Top Torch - Mac.app": - when: - os: mac store: steam - /Top Torch.exe: + "/Top Torch.exe": - when: - os: windows store: steam @@ -578468,15 +580056,15 @@ Top Trumps Turbo: installDir: Top Trumps: {} launch: - /Top Trumps Turbo.exe: + "/Top Trumps Turbo.exe": - when: - os: windows store: steam - /TopTrumpsTurbo.app: + "/TopTrumpsTurbo.app": - when: - os: mac store: steam - /TopTrumpsTurbo.x86: + "/TopTrumpsTurbo.x86": - when: - os: linux store: steam @@ -578486,17 +580074,17 @@ TopDownFarter: installDir: TopDownFarter: {} launch: - /TopDownFarter.exe: + "/TopDownFarter.exe": - when: - os: windows store: steam steam: id: 1071580 -'TopShot: Darkness': +"TopShot: Darkness": installDir: TopShot Darkness: {} launch: - /TopShotDarkness.exe: + "/TopShotDarkness.exe": - when: - os: windows store: steam @@ -578511,7 +580099,7 @@ Topfold: installDir: Topfold: {} launch: - /Topfold.exe: + "/Topfold.exe": - when: - store: steam steam: @@ -578520,20 +580108,20 @@ Topless Hentai Mosaic: installDir: Topless Hentai Mosaic: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam steam: id: 1044310 -'TopplePOP: Bungee Blockbusters': +"TopplePOP: Bungee Blockbusters": steam: id: 1175770 Tora: installDir: Tora: {} launch: - /Tora.exe: + "/Tora.exe": - when: - os: windows store: steam @@ -578555,42 +580143,42 @@ Torch Cave 3: id: 656950 Torchlight: files: - /.runicgames/Torchlight: + "/.runicgames/Torchlight": tags: - config when: - os: linux - /.runicgames/Torchlight/Save: + "/.runicgames/Torchlight/Save": tags: - save when: - os: linux - /Library/Application Support/runic games/torchlight: + "/Library/Application Support/runic games/torchlight": tags: - config when: - os: mac - /Library/Application Support/runic games/torchlight/save: + "/Library/Application Support/runic games/torchlight/save": tags: - save when: - os: mac - /userdata//41500/remote: + "/userdata//41500/remote": tags: - save when: - store: steam - /runic games/torchlight/SETTINGS.TXT: + "/runic games/torchlight/SETTINGS.TXT": tags: - config when: - os: windows - /runic games/torchlight/local_settings.txt: + "/runic games/torchlight/local_settings.txt": tags: - config when: - os: windows - /runic games/torchlight/save: + "/runic games/torchlight/save": tags: - save when: @@ -578600,21 +580188,21 @@ Torchlight: installDir: Torchlight: {} launch: - /Torchlight.bin.x86: + "/Torchlight.bin.x86": - when: - bit: 32 os: linux store: steam - /Torchlight.bin.x86_64: + "/Torchlight.bin.x86_64": - when: - bit: 64 os: linux store: steam - /Torchlight.exe: + "/Torchlight.exe": - when: - os: windows store: steam - /TorchlightMac.app: + "/TorchlightMac.app": - when: - os: mac store: steam @@ -578622,32 +580210,32 @@ Torchlight: id: 41500 Torchlight II: files: - /.local/share/Runic Games/Torchlight 2: + "/.local/share/Runic Games/Torchlight 2": tags: - config when: - os: linux - /.local/share/Steam/SteamApps/common/Torchlight II/my games/runic games/torchlight 2/save: + "/.local/share/Steam/SteamApps/common/Torchlight II/my games/runic games/torchlight 2/save": tags: - save when: - os: linux - /Library/Application Support/Runic Games/Torchlight 2: + "/Library/Application Support/Runic Games/Torchlight 2": tags: - config when: - os: mac - /Library/Application Support/Runic Games/Torchlight 2/save: + "/Library/Application Support/Runic Games/Torchlight 2/save": tags: - save when: - os: mac - /My Games/Runic Games/Torchlight 2/local_settings.txt: + "/My Games/Runic Games/Torchlight 2/local_settings.txt": tags: - config when: - os: windows - /My Games/Runic Games/Torchlight 2/save: + "/My Games/Runic Games/Torchlight 2/save": tags: - config - save @@ -578658,21 +580246,21 @@ Torchlight II: installDir: Torchlight II: {} launch: - /ModLauncher.bin.x86: + "/ModLauncher.bin.x86": - when: - bit: 32 os: linux store: steam - /ModLauncher.bin.x86_64: + "/ModLauncher.bin.x86_64": - when: - bit: 64 os: linux store: steam - /ModLauncher.exe: + "/ModLauncher.exe": - when: - os: windows store: steam - /Torchlight2.app: + "/Torchlight2.app": - when: - os: mac store: steam @@ -578680,17 +580268,17 @@ Torchlight II: id: 200710 Torchlight III: files: - /Frontiers/Saved/Config/WindowsNoEditor: + "/Frontiers/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /Frontiers/Saved/SaveGames: + "/Frontiers/Saved/SaveGames": tags: - save when: - os: windows - /Packages/PerfectWorldEntertainment.TorchlightFrontiers_jrajkyc4tsa6w/LocalCache/Local/Frontiers/Saved/Config/WinGDK: + "/Packages/PerfectWorldEntertainment.TorchlightFrontiers_jrajkyc4tsa6w/LocalCache/Local/Frontiers/Saved/Config/WinGDK": tags: - config when: @@ -578700,11 +580288,11 @@ Torchlight III: Torchlight III: {} steam: id: 1030210 -'Torchlight: Infinite': +"Torchlight: Infinite": installDir: Torchlight Infinite: {} launch: - /UE_game/Binaries/Win64/torchlight_infinite.exe: + "/UE_game/Binaries/Win64/torchlight_infinite.exe": - arguments: UserDir=TorchLight when: - os: windows @@ -578713,7 +580301,7 @@ Torchlight III: id: 1974050 Toree 2: files: - /AppData/LocalLow/Siactro/Toree2/*.sav: + "/AppData/LocalLow/Siactro/Toree2/*.sav": tags: - save when: @@ -578721,7 +580309,7 @@ Toree 2: installDir: Toree 2: {} launch: - /Toree2.exe: + "/Toree2.exe": - when: - os: windows store: steam @@ -578733,7 +580321,7 @@ Toree 2: id: 1722620 Toree 3D: files: - /AppData/LocalLow/Siactro/Toree3D/*.sav: + "/AppData/LocalLow/Siactro/Toree3D/*.sav": tags: - save when: @@ -578741,7 +580329,7 @@ Toree 3D: installDir: Toree 3D: {} launch: - /Toree3D.exe: + "/Toree3D.exe": - when: - os: windows store: steam @@ -578757,29 +580345,29 @@ Toren: installDir: Toren: {} launch: - /Toren.app: + "/Toren.app": - when: - os: mac store: steam - /Toren.exe: + "/Toren.exe": - when: - os: windows store: steam - /Toren.x86: + "/Toren.x86": - when: - os: linux store: steam steam: id: 320820 -Torgar's Quest: +"Torgar's Quest": installDir: - Torgar's Quest: {} + "Torgar's Quest": {} launch: - /Torgar's Quest.app: + "/Torgar's Quest.app": - when: - os: mac store: steam - /TorgarsQuest.exe: + "/TorgarsQuest.exe": - when: - os: windows store: steam @@ -578789,11 +580377,11 @@ Tori: installDir: Tori: {} launch: - /Tori.app: + "/Tori.app": - when: - os: mac store: steam - /Tori.exe: + "/Tori.exe": - when: - os: windows store: steam @@ -578803,15 +580391,15 @@ Toribash: installDir: Toribash: {} launch: - /Toribash.app: + "/Toribash.app": - when: - os: mac store: steam - /Toribash.exe: + "/Toribash.exe": - when: - os: windows store: steam - /toribash_steam: + "/toribash_steam": - when: - os: linux store: steam @@ -578821,15 +580409,15 @@ Toricky: installDir: Toricky: {} launch: - /linux/Toricky.x86: + "/linux/Toricky.x86": - when: - os: linux store: steam - /mac/Toricky.app/Contents/MacOS/Toricky: + "/mac/Toricky.app/Contents/MacOS/Toricky": - when: - os: mac store: steam - /win/Toricky.exe: + "/win/Toricky.exe": - when: - os: windows store: steam @@ -578839,7 +580427,7 @@ Torii Path: installDir: Torii Path: {} launch: - /ToriiPath_Winter.exe: + "/ToriiPath_Winter.exe": - when: - os: windows store: steam @@ -578849,29 +580437,29 @@ Torimodosu: installDir: Torimodosu: {} launch: - /Torimodosu.exe: + "/Torimodosu.exe": - when: - bit: 64 os: windows store: steam steam: id: 812390 -Torin's Passage: +"Torin's Passage": gog: id: 1207659044 -'Torment: Tides of Numenera': +"Torment: Tides of Numenera": files: - /AppData/LocalLow/InXile Entertainment/Torment: + "/AppData/LocalLow/InXile Entertainment/Torment": tags: - save when: - os: windows - /Library/Application Support/unity.InXile Entertainment.Torment/Saves: + "/Library/Application Support/unity.InXile Entertainment.Torment/Saves": tags: - save when: - os: mac - /unity3d/InXile Entertainment/Torment: + "/unity3d/InXile Entertainment/Torment": tags: - config - save @@ -578881,27 +580469,27 @@ Torin's Passage: id: 1958306970 id: gogExtra: + - 1551844192 - 1563444452 - 1700870503 - 1832019184 - - 1551844192 - 1958306970 steamExtra: - 342210 installDir: Torment Tides of Numenera: {} launch: - /LINUX/TidesOfNumenera: + "/LINUX/TidesOfNumenera": - when: - bit: 64 os: linux store: steam - /OSX/TidesOfNumenera.app/Contents/MacOS/TidesOfNumenera: + "/OSX/TidesOfNumenera.app/Contents/MacOS/TidesOfNumenera": - when: - bit: 64 os: mac store: steam - /WIN/TidesOfNumenera.exe: + "/WIN/TidesOfNumenera.exe": - when: - bit: 64 os: windows @@ -578916,7 +580504,7 @@ Tormented 12: installDir: Tormented 12: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -578924,12 +580512,12 @@ Tormented 12: id: 391380 Tormented Souls: files: - /AppData/LocalLow/duale-abstractd/Tormented Souls Release: + "/AppData/LocalLow/duale-abstractd/Tormented Souls Release": tags: - config when: - os: windows - /AppData/LocalLow/duale-abstractd/Tormented Souls Release/Saves: + "/AppData/LocalLow/duale-abstractd/Tormented Souls Release/Saves": tags: - save when: @@ -578939,7 +580527,7 @@ Tormented Souls: installDir: Tormented Souls: {} launch: - /TormentedSouls.exe: + "/TormentedSouls.exe": - when: - bit: 64 os: windows @@ -578951,7 +580539,7 @@ Tormented Souls 2: id: 2464280 Tormentor X Punisher: files: - /TormentorXPunisher: + "/TormentorXPunisher": tags: - config - save @@ -578960,11 +580548,11 @@ Tormentor X Punisher: installDir: TxP: {} launch: - /TormentorXPunisher.app: + "/TormentorXPunisher.app": - when: - os: mac store: steam - /TormentorXPunisher.exe: + "/TormentorXPunisher.exe": - when: - os: windows store: steam @@ -578973,9 +580561,9 @@ Tormentor X Punisher: Tormentum II: steam: id: 931060 -'Tormentum: Dark Sorrow': +"Tormentum: Dark Sorrow": files: - /dat.xlg: + "/dat.xlg": tags: - config - save @@ -578986,11 +580574,11 @@ Tormentum II: installDir: Tormentum: {} launch: - /Tormentum.app: + "/Tormentum.app": - when: - os: mac store: steam - /Tormentum.exe: + "/Tormentum.exe": - when: - os: windows store: steam @@ -579013,7 +580601,7 @@ Torn Earth: installDir: Torn Earth: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: @@ -579022,7 +580610,7 @@ Torn Familjen: installDir: Torn Familjen: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -579032,35 +580620,35 @@ Torn Tales: installDir: Torn Tales: {} launch: - /TornTales.app: + "/TornTales.app": - when: - os: mac store: steam - /TornTales.exe: + "/TornTales.exe": - when: - os: windows store: steam - /TornTales.x86: - - arguments: '-force-opengl' + "/TornTales.x86": + - arguments: "-force-opengl" when: - os: linux store: steam steam: id: 388960 -'Torn Tales: Rebound Edition': +"Torn Tales: Rebound Edition": installDir: Torn Tales Rebound Edition: {} launch: - /TornTalesReboundEdition.app: + "/TornTalesReboundEdition.app": - when: - os: mac store: steam - /TornTalesReboundEdition.exe: + "/TornTalesReboundEdition.exe": - when: - os: windows store: steam - /TornTalesReboundEdition.x86: - - arguments: '-force-opengl' + "/TornTalesReboundEdition.x86": + - arguments: "-force-opengl" when: - os: linux store: steam @@ -579070,7 +580658,7 @@ Tornado!: installDir: Tornado!: {} launch: - /Tornado!.exe: + "/Tornado!.exe": - when: - os: windows store: steam @@ -579085,16 +580673,16 @@ Toro: installDir: Toro: {} launch: - /Toro.exe: + "/Toro.exe": - when: - store: steam steam: id: 416720 -'Torque: Simulation Begins': +"Torque: Simulation Begins": installDir: Torque Simulation Begins: {} launch: - /torque.exe: + "/torque.exe": - when: - os: windows store: steam @@ -579104,24 +580692,24 @@ TorqueL: installDir: TorqueL: {} launch: - /TorqueL.app: + "/TorqueL.app": - when: - os: mac store: steam - /TorqueL.exe: + "/TorqueL.exe": - when: - os: windows store: steam - /TorqueL.x86: + "/TorqueL.x86": - when: - bit: 32 os: linux store: steam steam: id: 250070 -'Torrente 3: The Protector': +"Torrente 3: The Protector": files: - /datos/profiles: + "/datos/profiles": tags: - save when: @@ -579136,7 +580724,7 @@ Total 15: installDir: Total 15: {} launch: - /Total 15.exe: + "/Total 15.exe": - when: - os: windows store: steam @@ -579147,7 +580735,7 @@ Total Alarm: id: 792290 Total Annihilation: files: - /SAVEGAME: + "/SAVEGAME": tags: - save when: @@ -579157,11 +580745,11 @@ Total Annihilation: installDir: Total Annihilation: {} launch: - /TAE.exe: + "/TAE.exe": - when: - os: windows store: steam - /TotalA.exe: + "/TotalA.exe": - when: - os: windows store: steam @@ -579171,9 +580759,9 @@ Total Annihilation: - config steam: id: 298030 -'Total Annihilation: Kingdoms': +"Total Annihilation: Kingdoms": files: - /SavedGames: + "/SavedGames": tags: - save when: @@ -579188,7 +580776,7 @@ Total Battle: installDir: Total Battle: {} launch: - /TotalBattleSteam.exe: + "/TotalBattleSteam.exe": - when: - os: windows store: steam @@ -579196,36 +580784,36 @@ Total Battle: id: 978290 Total Club Manager 2003: files: - /Games: + "/Games": tags: - save when: - os: windows - /soccer.config: + "/soccer.config": tags: - config when: - os: windows Total Club Manager 2004: files: - /EA SPORTS/TOTAL CLUB MANAGER 2004/data/cmn: + "/EA SPORTS/TOTAL CLUB MANAGER 2004/data/cmn": tags: - config when: - os: windows - /TCM 2004/games: + "/TCM 2004/games": tags: - save when: - os: windows Total Club Manager 2005: files: - /EA SPORTS/TOTAL CLUB MANAGER 2005/data/cmn: + "/EA SPORTS/TOTAL CLUB MANAGER 2005/data/cmn": tags: - config when: - os: windows - /TCM 2005/games: + "/TCM 2005/games": tags: - save when: @@ -579234,11 +580822,11 @@ Total Esports Action Manager: installDir: TotalEsportsActionManager: {} launch: - /TEAM.app/Contents/MacOS/TEAM: + "/TEAM.app/Contents/MacOS/TEAM": - when: - os: mac store: steam - /TEAM.exe: + "/TEAM.exe": - when: - bit: 64 os: windows @@ -579249,7 +580837,7 @@ Total Extreme Wrestling 2010: installDir: Total Extreme Wrestling: {} launch: - /TEW2010.exe: + "/TEW2010.exe": - when: - store: steam steam: @@ -579258,19 +580846,19 @@ Total Extreme Wrestling 2013: installDir: Total Exterme Wrestling 2013: {} launch: - /TEW2013.exe: + "/TEW2013.exe": - when: - store: steam steam: id: 529700 Total Immersion Racing: files: - /CONFIG/syscfg.ini: + "/CONFIG/syscfg.ini": tags: - config when: - os: windows - /SAVEDATA/AUTOSAVE: + "/SAVEDATA/AUTOSAVE": tags: - save when: @@ -579279,8 +580867,8 @@ Total Lockdown: installDir: Total Lockdown: {} launch: - /start.exe: - - arguments: '-steam' + "/start.exe": + - arguments: "-steam" when: - bit: 64 os: windows @@ -579289,7 +580877,7 @@ Total Lockdown: id: 1121710 Total Miner: files: - /My Games/TotalMiner/Maps: + "/My Games/TotalMiner/Maps": tags: - save when: @@ -579297,15 +580885,15 @@ Total Miner: installDir: Total Miner: {} launch: - /StudioForge.TotalMiner.exe: + "/StudioForge.TotalMiner.exe": - when: - os: windows store: steam steam: id: 347600 -'Total Overdose: A Gunslinger''s Tale in Mexico': +"Total Overdose: A Gunslinger's Tale in Mexico": files: - /Total Overdose/savegames: + "/Total Overdose/savegames": tags: - save when: @@ -579320,11 +580908,11 @@ Total Party Kill: installDir: Total Party Kill: {} launch: - /Total Party Kill.app: + "/Total Party Kill.app": - when: - os: mac store: steam - /Total Party Kill.exe: + "/Total Party Kill.exe": - when: - os: windows store: steam @@ -579334,7 +580922,7 @@ Total Pro Golf 3: installDir: Total Pro Golf 3: {} launch: - /TPG3.exe: + "/TPG3.exe": - when: - store: steam steam: @@ -579343,7 +580931,7 @@ Total Seclusion: installDir: Total Seclusion: {} launch: - /TotalSeclusion.exe: + "/TotalSeclusion.exe": - when: - bit: 64 os: windows @@ -579354,7 +580942,7 @@ Total Singu: installDir: Total Singu: {} launch: - /Total Singu.exe: + "/Total Singu.exe": - when: - os: windows store: steam @@ -579364,7 +580952,7 @@ Total Ski Jump: installDir: TSJ: {} launch: - /TSJLauncher.exe: + "/TSJLauncher.exe": - when: - store: steam steam: @@ -579373,13 +580961,13 @@ Total Tank Simulator: installDir: Total Tank Simulator: {} launch: - /TotalTankSim.exe: + "/TotalTankSim.exe": - when: - os: windows store: steam steam: id: 674500 -'Total War Battles: Kingdom': +"Total War Battles: Kingdom": id: steamExtra: - 480720 @@ -579388,81 +580976,81 @@ Total Tank Simulator: installDir: Total War Battles KINGDOM: {} launch: - /TWB_Kingdom.app: + "/TWB_Kingdom.app": - when: - os: mac store: steam - /TWB_Kingdom.exe: + "/TWB_Kingdom.exe": - when: - os: windows store: steam steam: id: 300080 -'Total War Battles: Shogun': +"Total War Battles: Shogun": installDir: total war battles shogun: {} launch: - /twbattles.app: + "/twbattles.app": - when: - os: mac store: steam - /twbattles.exe: + "/twbattles.exe": - when: - os: windows store: steam steam: id: 217060 -'Total War Saga: Thrones of Britannia': +"Total War Saga: Thrones of Britannia": installDir: Total War Saga Thrones of Britannia: {} launch: - /Thrones of Britannia.app: + "/Thrones of Britannia.app": - when: - os: mac store: steam - /ThronesOfBritannia.sh: + "/ThronesOfBritannia.sh": - when: - os: linux store: steam - /launcher/launcher.exe: + "/launcher/launcher.exe": - when: - os: windows store: steam - workingDir: /launcher + workingDir: "/launcher" steam: id: 712100 -'Total War: Arena': +"Total War: Arena": files: - /The Creative Assembly/Arena/scripts: + "/The Creative Assembly/Arena/scripts": tags: - config when: - os: windows steam: id: 227520 -'Total War: Attila': +"Total War: Attila": files: - /.Creative Assembly/Attila/save_games: + "/.Creative Assembly/Attila/save_games": tags: - save when: - os: linux - /.Creative Assembly/Attila/scripts: + "/.Creative Assembly/Attila/scripts": tags: - config when: - os: linux - /Library/Application Support/Steam/userdata//325610/remote: + "/Library/Application Support/Steam/userdata//325610/remote": tags: - save when: - os: mac - /The Creative Assembly/Attila/save_games: + "/The Creative Assembly/Attila/save_games": tags: - save when: - os: windows - /The Creative Assembly/Attila/scripts: + "/The Creative Assembly/Attila/scripts": tags: - config when: @@ -579470,31 +581058,31 @@ Total Tank Simulator: installDir: Total War Attila: {} launch: - /Attila: + "/Attila": - when: - os: linux store: steam - /Attila.app: + "/Attila.app": - when: - os: mac store: steam - /launcher/launcher.exe: + "/launcher/launcher.exe": - when: - os: windows store: steam steam: id: 325610 -'Total War: Pharaoh': +"Total War: Pharaoh": steam: id: 1937780 -'Total War: Rome II': +"Total War: Rome II": files: - /The Creative Assembly/Rome2/save_games: + "/The Creative Assembly/Rome2/save_games": tags: - save when: - os: windows - /The Creative Assembly/Rome2/scripts/preferences.script.txt: + "/The Creative Assembly/Rome2/scripts/preferences.script.txt": tags: - config when: @@ -579523,15 +581111,15 @@ Total Tank Simulator: installDir: Total War Rome II: {} launch: - /Rome2: + "/Rome2": - when: - os: linux store: steam - /Rome2.app: + "/Rome2.app": - when: - os: mac store: steam - /launcher/launcher.exe: + "/launcher/launcher.exe": - when: - os: windows store: steam @@ -579541,24 +581129,24 @@ Total Tank Simulator: - config steam: id: 214950 -'Total War: Rome Remastered': +"Total War: Rome Remastered": files: - /Feral Interactive/Total War ROME REMASTERED: + "/Feral Interactive/Total War ROME REMASTERED": tags: - config when: - os: windows - /Feral Interactive/Total War ROME REMASTERED/VFS/Local: + "/Feral Interactive/Total War ROME REMASTERED/VFS/Local": tags: - save when: - os: windows - /feral-interactive/Total War ROME REMASTERED: + "/feral-interactive/Total War ROME REMASTERED": tags: - config when: - os: linux - /feral-interactive/Total War ROME REMASTERED/VFS/Local: + "/feral-interactive/Total War ROME REMASTERED/VFS/Local": tags: - save when: @@ -579566,45 +581154,45 @@ Total Tank Simulator: installDir: Total War ROME REMASTERED: {} launch: - /Total War ROME REMASTERED.app: + "/Total War ROME REMASTERED.app": - when: - os: mac store: steam - /Total War ROME REMASTERED.sh: + "/Total War ROME REMASTERED.sh": - when: - bit: 64 os: linux store: steam - /launcher/launcher.exe: + "/launcher/launcher.exe": - when: - os: windows store: steam - workingDir: /launcher + workingDir: "/launcher" steam: id: 885970 -'Total War: Shogun 2': +"Total War: Shogun 2": files: - /Library/Application Support/Feral Interactive/Total War SHOGUN 2/AppData/scripts: + "/Library/Application Support/Feral Interactive/Total War SHOGUN 2/AppData/scripts": tags: - config when: - os: mac - /The Creative Assembly/Shogun2: + "/The Creative Assembly/Shogun2": tags: - save when: - os: windows - /The Creative Assembly/Shogun2/scripts/*.txt: + "/The Creative Assembly/Shogun2/scripts/*.txt": tags: - config when: - os: windows - /feral-interactive/SaveData: + "/feral-interactive/SaveData": tags: - save when: - os: linux - /feral-interactive/Total War SHOGUN 2: + "/feral-interactive/Total War SHOGUN 2": tags: - config when: @@ -579612,75 +581200,67 @@ Total Tank Simulator: installDir: Total War SHOGUN 2: {} launch: - /Shogun2.exe: + "/Shogun2.exe": - when: - os: windows store: steam - /Shogun2.sh: + "/Shogun2.sh": - when: - os: linux store: steam - /Total War SHOGUN 2.app: + "/Total War SHOGUN 2.app": - when: - os: mac store: steam - /benchmarks/benchmark_current_settings.bat: + "/benchmarks/benchmark_current_settings.bat": - arguments: /gui Benchmarks/Sekigahara_Intro.replay; Benchmarks/Sekigahara_Intro_Camera.xml; when: - os: windows store: steam - /benchmarks/benchmark_specify_properties.bat: - - arguments: >- - /gui Benchmarks/Sekigahara_Intro.replay; Benchmarks/Sekigahara_Intro_Camera.xml; - benchmarks\\BenchmarkDX11GraphicsHigh1080p_preferences.script.txt; + "/benchmarks/benchmark_specify_properties.bat": + - arguments: "/gui Benchmarks/Sekigahara_Intro.replay; Benchmarks/Sekigahara_Intro_Camera.xml; benchmarks\\\\BenchmarkDX11GraphicsHigh1080p_preferences.script.txt;" when: - os: windows store: steam - - arguments: >- - /gui Benchmarks/Sekigahara_Intro.replay; Benchmarks/Sekigahara_Intro_Camera.xml; - benchmarks\\BenchmarkDX11GraphicsBalanced720p_preferences.script.txt; + - arguments: "/gui Benchmarks/Sekigahara_Intro.replay; Benchmarks/Sekigahara_Intro_Camera.xml; benchmarks\\\\BenchmarkDX11GraphicsBalanced720p_preferences.script.txt;" when: - os: windows store: steam - - arguments: >- - /gui Benchmarks/Sekigahara_Intro.replay; Benchmarks/Sekigahara_Intro_Camera.xml; - benchmarks\\BenchmarkDX9GraphicsBalanced720p_preferences.script.txt; + - arguments: "/gui Benchmarks/Sekigahara_Intro.replay; Benchmarks/Sekigahara_Intro_Camera.xml; benchmarks\\\\BenchmarkDX9GraphicsBalanced720p_preferences.script.txt;" when: - os: windows store: steam - - arguments: >- - /gui Benchmarks/BenchmarkDX9CPU.replay; Benchmarks/BenchmarkDX9CPU_camera.xml; - benchmarks\\BenchmarkDX9CPU_preferences.script.txt; + - arguments: "/gui Benchmarks/BenchmarkDX9CPU.replay; Benchmarks/BenchmarkDX9CPU_camera.xml; benchmarks\\\\BenchmarkDX9CPU_preferences.script.txt;" when: - os: windows store: steam - /data/encyclopedia/how_to_play.html: + "/data/encyclopedia/how_to_play.html": - when: - os: windows store: steam steam: id: 34330 -'Total War: Shogun 2 - Fall of the Samurai': +"Total War: Shogun 2 - Fall of the Samurai": steam: id: 201271 -'Total War: Three Kingdoms': +"Total War: Three Kingdoms": files: - /.local/share/feral-interactive/Three Kingdoms/VFS/User/AppData/Roaming/The Creative Assembly/ThreeKingdoms/save_games: + "/.local/share/feral-interactive/Three Kingdoms/VFS/User/AppData/Roaming/The Creative Assembly/ThreeKingdoms/save_games": tags: - save when: - os: linux - /.local/share/feral-interactive/Three Kingdoms/VFS/User/AppData/Roaming/The Creative Assembly/ThreeKingdoms/scripts/preferences.script.txt: + "/.local/share/feral-interactive/Three Kingdoms/VFS/User/AppData/Roaming/The Creative Assembly/ThreeKingdoms/scripts/preferences.script.txt": tags: - config when: - os: linux - /The Creative Assembly/ThreeKingdoms/save_games: + "/The Creative Assembly/ThreeKingdoms/save_games": tags: - save when: - os: windows - /The Creative Assembly/ThreeKingdoms/scripts/preferences.script.txt: + "/The Creative Assembly/ThreeKingdoms/scripts/preferences.script.txt": tags: - config when: @@ -579688,44 +581268,46 @@ Total Tank Simulator: installDir: Total War THREE KINGDOMS: {} launch: - /Three Kingdoms.app: + "/Three Kingdoms.app": - when: - os: mac store: steam - /ThreeKingdoms.sh: + "/ThreeKingdoms.sh": - when: - os: linux store: steam steam: id: 779340 -'Total War: Warhammer': +"Total War: Warhammer": files: - /The Creative Assembly/Warhammer/EOS/Save Games: + "/The Creative Assembly/Warhammer/EOS/Save Games": tags: - save when: - - store: epic - /The Creative Assembly/Warhammer/EOS/Scripts: + - os: windows + "/The Creative Assembly/Warhammer/EOS/Scripts": tags: - config when: - - store: epic - /The Creative Assembly/Warhammer/Save_Games: + - os: windows + "/The Creative Assembly/Warhammer/Save_Games": tags: - save when: - - store: steam - /The Creative Assembly/Warhammer/Scripts: + - os: windows + store: steam + "/The Creative Assembly/Warhammer/Scripts": tags: - config when: - - store: steam - /feral-interactive/Total War Warhammer/VFS/User/AppData/Roaming/The Creative Assembly/Warhammer/save_games: + - os: windows + store: steam + "/feral-interactive/Total War Warhammer/VFS/User/AppData/Roaming/The Creative Assembly/Warhammer/save_games": tags: - save when: - os: linux - /feral-interactive/Total War Warhammer/preferences: + "/feral-interactive/Total War Warhammer/preferences": tags: - config when: @@ -579733,52 +581315,52 @@ Total Tank Simulator: installDir: Total War WARHAMMER: {} launch: - /Total War Warhammer.app: + "/Total War Warhammer.app": - when: - bit: 64 os: mac store: steam - /TotalWarhammer.sh: + "/TotalWarhammer.sh": - when: - bit: 64 os: linux store: steam - /launcher/launcher.exe: + "/launcher/launcher.exe": - when: - bit: 64 os: windows store: steam - workingDir: /launcher - /launcher/unsupported.exe: + workingDir: "/launcher" + "/launcher/unsupported.exe": - when: - bit: 32 os: windows store: steam steam: id: 364360 -'Total War: Warhammer II': +"Total War: Warhammer II": files: - /The Creative Assembly/Warhammer2/save_games: + "/The Creative Assembly/Warhammer2/save_games": tags: - save when: - os: windows - /The Creative Assembly/Warhammer2/save_games_multiplayer: + "/The Creative Assembly/Warhammer2/save_games_multiplayer": tags: - save when: - os: windows - /The Creative Assembly/Warhammer2/scripts: + "/The Creative Assembly/Warhammer2/scripts": tags: - config when: - os: windows - /feral-interactive/Total War WARHAMMER II/SaveData/Steam Saves ()/local/Warhammer2/save_games: + "/feral-interactive/Total War WARHAMMER II/SaveData/Steam Saves ()/local/Warhammer2/save_games": tags: - save when: - os: linux - /feral-interactive/Total War WARHAMMER II/SaveData/Steam Saves ()/scripts: + "/feral-interactive/Total War WARHAMMER II/SaveData/Steam Saves ()/scripts": tags: - config when: @@ -579789,83 +581371,83 @@ Total Tank Simulator: installDir: Total War WARHAMMER II: {} launch: - /Total War WARHAMMER II.app: + "/Total War WARHAMMER II.app": - when: - os: mac store: steam - /TotalWarhammer2.sh: + "/TotalWarhammer2.sh": - when: - os: linux store: steam steam: id: 594570 -'Total War: Warhammer III': +"Total War: Warhammer III": files: - /.local/share/feral-interactive/Total War WARHAMMER III/SaveData/Steam Saves($SteamID)/local/Warhamme3/save_games: + "/.local/share/feral-interactive/Total War WARHAMMER III/SaveData/Steam Saves($SteamID)/local/Warhamme3/save_games": tags: - save when: - os: linux - /.local/share/feral-interactive/Total War WARHAMMER III/SaveData/Steam Saves($SteamID)/local/Warhamme3/scripts: + "/.local/share/feral-interactive/Total War WARHAMMER III/SaveData/Steam Saves($SteamID)/local/Warhamme3/scripts": tags: - config when: - os: linux - /The Creative Assembly/Warhammer3/EOS/scripts: + "/The Creative Assembly/Warhammer3/EOS/scripts": tags: - config when: - - store: epic - /The Creative Assembly/Warhammer3/GDK/scripts: + - os: windows + "/The Creative Assembly/Warhammer3/GDK/scripts": tags: - config when: - os: windows store: microsoft - /The Creative Assembly/Warhammer3/save_games: + "/The Creative Assembly/Warhammer3/save_games": tags: - save when: - os: windows - /The Creative Assembly/Warhammer3/save_games_multiplayer: + "/The Creative Assembly/Warhammer3/save_games_multiplayer": tags: - save when: - os: windows - /The Creative Assembly/Warhammer3/scripts: + "/The Creative Assembly/Warhammer3/scripts": tags: - config when: - os: windows id: steamExtra: - - 1670540 - 1374300 + - 1670540 - 1824060 installDir: Total War WARHAMMER III: {} launch: - /Total War WARHAMMER III.app: + "/Total War WARHAMMER III.app": - when: - os: mac store: steam - /launcher/launcher.exe: + "/launcher/launcher.exe": - when: - bit: 64 os: windows store: steam - workingDir: /launcher + workingDir: "/launcher" steam: id: 1142710 Totally Accurate Battle Simulator: files: - /TotallyAccurateBattleSimulator_Data: + "/TotallyAccurateBattleSimulator_Data": tags: - config - save when: - os: windows - /AppData/LocalLow/Landfall Games/Totally Accurate Battle Simulator/Saved/TABSSAVE.TABSProgress: + "/AppData/LocalLow/Landfall Games/Totally Accurate Battle Simulator/Saved/TABSSAVE.TABSProgress": tags: - save when: @@ -579873,11 +581455,11 @@ Totally Accurate Battle Simulator: installDir: Totally Accurate Battle Simulator: {} launch: - /TotallyAccurateBattleSimulator.app/Contents/MacOS/Totally Accurate Battle Simulator: + "/TotallyAccurateBattleSimulator.app/Contents/MacOS/Totally Accurate Battle Simulator": - when: - os: mac store: steam - /TotallyAccurateBattleSimulator.exe: + "/TotallyAccurateBattleSimulator.exe": - when: - os: windows store: steam @@ -579887,7 +581469,7 @@ Totally Accurate Battlegrounds: installDir: TotallyAccurateBattlegrounds: {} launch: - /TABG_Launcher.exe: + "/TABG_Launcher.exe": - when: - os: windows store: steam @@ -579907,15 +581489,15 @@ Totally Mayhem: installDir: Totally Mayhem: {} launch: - /totallymayhem.app: + "/totallymayhem.app": - when: - os: mac store: steam - /totallymayhem.exe: + "/totallymayhem.exe": - when: - os: windows store: steam - /totallymayhem.x86_64: + "/totallymayhem.x86_64": - when: - os: linux store: steam @@ -579928,7 +581510,7 @@ Totally Realistic Sledding VR: id: 746500 Totally Reliable Delivery Service: files: - /AppData/LocalLow/We're Five Games/Totally Reliable Delivery Service/progress.dad: + "/AppData/LocalLow/We're Five Games/Totally Reliable Delivery Service/progress.dad": tags: - save when: @@ -579936,20 +581518,20 @@ Totally Reliable Delivery Service: installDir: Totally Reliable Delivery Service: {} launch: - /Totally Reliable Delivery Service.exe: + "/Totally Reliable Delivery Service.exe": - when: - os: windows store: steam - /totallyreliabledeliveryservice.app: + "/totallyreliabledeliveryservice.app": - when: - os: mac store: steam - /totallyreliabledeliveryservice.x86_64: + "/totallyreliabledeliveryservice.x86_64": - when: - os: linux store: steam registry: - HKEY_CURRENT_USER/Software/We're Five Games/Totally Reliable Delivery Service: + "HKEY_CURRENT_USER/Software/We're Five Games/Totally Reliable Delivery Service": tags: - config steam: @@ -579958,11 +581540,11 @@ Totally Unbalanced: installDir: Totally Unbalanced: {} launch: - /TotallyUnbalanced.app: + "/TotallyUnbalanced.app": - when: - os: mac store: steam - /TotallyUnbalanced.exe: + "/TotallyUnbalanced.exe": - when: - os: windows store: steam @@ -579978,15 +581560,15 @@ Totem Force: installDir: Totem Force: {} launch: - /Totem Force.app/Contents/MacOS/Totem Force: + "/Totem Force.app/Contents/MacOS/Totem Force": - when: - os: mac store: steam - /TotemForce: + "/TotemForce": - when: - os: linux store: steam - /TotemForce.exe: + "/TotemForce.exe": - when: - os: windows store: steam @@ -579996,20 +581578,20 @@ Totemori: installDir: Totemori: {} launch: - /totemori_linux/totemori_linux.x86_64: + "/totemori_linux/totemori_linux.x86_64": - when: - os: linux store: steam - /totemori_osx/totemori_osx.app/Contents/MacOS/totemori_osx: + "/totemori_osx/totemori_osx.app/Contents/MacOS/totemori_osx": - when: - os: mac store: steam - /totemori_win32/totemori_win32.exe: + "/totemori_win32/totemori_win32.exe": - when: - bit: 32 os: windows store: steam - /totemori_win64/totemori_win64.exe: + "/totemori_win64/totemori_win64.exe": - when: - bit: 64 os: windows @@ -580020,7 +581602,7 @@ Toto Temple Deluxe: installDir: TotoTempleDeluxe: {} launch: - /Toto Temple Deluxe.exe: + "/Toto Temple Deluxe.exe": - when: - os: windows store: steam @@ -580030,7 +581612,7 @@ Touch Down Football Solitaire: installDir: Touch Down Football Solitaire: {} launch: - /TouchDownSolitaire.exe: + "/TouchDownSolitaire.exe": - when: - os: windows store: steam @@ -580040,7 +581622,7 @@ Touch My Spinner: installDir: Touch My Spinner: {} launch: - /spinners.exe: + "/spinners.exe": - when: - os: windows store: steam @@ -580054,15 +581636,15 @@ Touch the Devil VR: Touch the devil VR(おさわり魔王VR): {} steam: id: 812430 -'Tough Story: Big Hell': +"Tough Story: Big Hell": installDir: Tough Story Big Hell: {} launch: - /Tough_Story_Big_Hell.exe: + "/Tough_Story_Big_Hell.exe": - when: - os: windows store: steam - /tough_story_vol_i_osx.app: + "/tough_story_vol_i_osx.app": - when: - os: mac store: steam @@ -580071,14 +581653,14 @@ Touch the Devil VR: Tough Survival: steam: id: 851780 -'Tough Trucks: Modified Monsters': +"Tough Trucks: Modified Monsters": files: - /Data/options.cfg: + "/Data/options.cfg": tags: - config when: - os: windows - /Savegame: + "/Savegame": tags: - save when: @@ -580087,11 +581669,11 @@ Touhou Big Big Battle: installDir: Touhou Big Big Battle: {} launch: - /Touhou Big Big Battle.app: + "/Touhou Big Big Battle.app": - when: - os: mac store: steam - /Touhou Big Big Battle.exe: + "/Touhou Big Big Battle.exe": - when: - os: windows store: steam @@ -580101,7 +581683,7 @@ Touhou Blooming Chaos: installDir: Touhou Blooming Chaos: {} launch: - /Touhou Blooming Chaos.exe: + "/Touhou Blooming Chaos.exe": - when: - os: windows store: steam @@ -580112,9 +581694,9 @@ Touhou Dark Echoes: id: 1072880 Touhou Fan of Destiny: installDir: - "天风之光\_~ Touhou Fan of Destiny": {} + 天风之光 ~ Touhou Fan of Destiny: {} launch: - /Touhou Fan of Destiny.exe: + "/Touhou Fan of Destiny.exe": - when: - store: steam steam: @@ -580123,7 +581705,7 @@ Touhou Fantasia / 东方梦想曲: installDir: Touhou Fantasia: {} launch: - /TouhouFantasia.exe: + "/TouhouFantasia.exe": - when: - os: windows store: steam @@ -580133,7 +581715,7 @@ Touhou Genso Wanderer -Reloaded- / 不可思议的幻想乡TOD -RELOADED- / 不 installDir: Touhou Genso Wanderer -Reloaded-: {} launch: - /LotusLandVReloaded.exe: + "/LotusLandVReloaded.exe": - when: - os: windows store: steam @@ -580143,7 +581725,7 @@ Touhou Gensokyo Visitor: installDir: Touhou Gensokyo Visitor: {} launch: - /TouhouGensokyoVisitor.exe: + "/TouhouGensokyoVisitor.exe": - when: - store: steam steam: @@ -580152,29 +581734,29 @@ Touhou Gouyoku Ibun: installDir: th175: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam steam: id: 1440500 -'Touhou Ibunseki - Ayaria Dawn: ReCreation': +"Touhou Ibunseki - Ayaria Dawn: ReCreation": installDir: Touhou Ibunseki - Ayaria Dawn ReCreation: {} launch: - /THAD.exe: + "/THAD.exe": - when: - store: steam steam: id: 1138100 Touhou Luna Nights: files: - /touhou_luna_nights/*.sav: + "/touhou_luna_nights/*.sav": tags: - save when: - os: windows - /touhou_luna_nights/config.ini: + "/touhou_luna_nights/config.ini": tags: - config when: @@ -580185,7 +581767,7 @@ Touhou Makuka Sai ~ Fantastic Danmaku Festival Part II: installDir: Touhou FDF Part II: {} launch: - /custom.exe: + "/custom.exe": - when: - os: windows store: steam @@ -580195,7 +581777,7 @@ Touhou Makukasai ~ Fantasy Danmaku Festival: installDir: TouHou Makuka Sai ~ Fantastic Danmaku Festival: {} launch: - /THMHJ.exe: + "/THMHJ.exe": - when: - store: steam steam: @@ -580204,56 +581786,56 @@ Touhou Multi Scroll Shooting: installDir: Touhou Multi Scroll Shooting: {} launch: - /TestProject.exe: + "/TestProject.exe": - when: - bit: 64 os: windows store: steam steam: id: 1125000 -'Touhou Shoujo: Tale of Beautiful Memories': +"Touhou Shoujo: Tale of Beautiful Memories": installDir: Touhou Shoujo Tale of Beautiful Memories: {} launch: - /kisoutan.exe: + "/kisoutan.exe": - when: - os: windows store: steam steam: id: 1124060 -'Touhou Sky Arena: Matsuri Climax': +"Touhou Sky Arena: Matsuri Climax": installDir: TOUHOU SKY ARENA MATSURI CLIMAX: {} launch: - /TSA.exe: + "/TSA.exe": - when: - os: windows store: steam steam: id: 1086860 -'Touhou: New World': +"Touhou: New World": files: - /AnkakeSpa/NewWorld/autosaves/##.sav: + "/AnkakeSpa/NewWorld/autosaves/##.sav": tags: - save when: - os: windows - /AnkakeSpa/NewWorld/graphics_setting.json: + "/AnkakeSpa/NewWorld/graphics_setting.json": tags: - config when: - os: windows - /AnkakeSpa/NewWorld/ingame_setting.json: + "/AnkakeSpa/NewWorld/ingame_setting.json": tags: - config when: - os: windows - /AnkakeSpa/NewWorld/input_setting.json: + "/AnkakeSpa/NewWorld/input_setting.json": tags: - config when: - os: windows - /AnkakeSpa/NewWorld/main_setting.json: + "/AnkakeSpa/NewWorld/main_setting.json": tags: - config when: @@ -580261,54 +581843,54 @@ Touhou Multi Scroll Shooting: installDir: TouhouNewWorld: {} launch: - /bin/ConfigTool.exe: + "/bin/ConfigTool.exe": - when: - store: steam - workingDir: /bin - /bin/game.exe: + workingDir: "/bin" + "/bin/game.exe": - when: - store: steam - workingDir: /bin + workingDir: "/bin" steam: id: 2150660 -'Touhou: Scarlet Curiosity': +"Touhou: Scarlet Curiosity": files: - /AnkakeSpa/ScarletCuriosity/graphics_setting.json: + "/AnkakeSpa/ScarletCuriosity/graphics_setting.json": tags: - config when: - os: windows - /AnkakeSpa/ScarletCuriosity/input_setting.json: + "/AnkakeSpa/ScarletCuriosity/input_setting.json": tags: - config when: - os: windows - /AnkakeSpa/ScarletCuriosity/main_setting.json: + "/AnkakeSpa/ScarletCuriosity/main_setting.json": tags: - config when: - os: windows - /AnkakeSpa/ScarletCuriosity/remi/save###.save: + "/AnkakeSpa/ScarletCuriosity/remi/save###.save": tags: - save when: - os: windows - /AnkakeSpa/ScarletCuriosity/remi_auto.sav: + "/AnkakeSpa/ScarletCuriosity/remi_auto.sav": tags: - save when: - os: windows - /AnkakeSpa/ScarletCuriosity/saku/save###.save: + "/AnkakeSpa/ScarletCuriosity/saku/save###.save": tags: - save when: - os: windows - /AnkakeSpa/ScarletCuriosity/saku_auto.sav: + "/AnkakeSpa/ScarletCuriosity/saku_auto.sav": tags: - save when: - os: windows - /AnkakeSpa/ScarletCuriosity/sound.ini: + "/AnkakeSpa/ScarletCuriosity/sound.ini": tags: - config when: @@ -580316,8 +581898,8 @@ Touhou Multi Scroll Shooting: installDir: TouhouScarletCuriosity: {} launch: - /ScarletCuriosity.exe: - - arguments: '-forceConfig' + "/ScarletCuriosity.exe": + - arguments: "-forceConfig" when: - os: windows store: steam @@ -580325,12 +581907,12 @@ Touhou Multi Scroll Shooting: id: 845880 Touken Ranbu Warriors: files: - /dmmgames_KOEITECMO/Touken Ranbu Warriors/Savedata/SAVEDATA_*.BIN: + "/dmmgames_KOEITECMO/Touken Ranbu Warriors/Savedata/SAVEDATA_*.BIN": tags: - save when: - os: windows - /dmmgames_KOEITECMO/Touken Ranbu Warriors/Savedata/inputmap*.dat: + "/dmmgames_KOEITECMO/Touken Ranbu Warriors/Savedata/inputmap*.dat": tags: - config when: @@ -580338,7 +581920,7 @@ Touken Ranbu Warriors: installDir: Touken Ranbu Warriors: {} launch: - /Touken Ranbu Warriors.exe: + "/Touken Ranbu Warriors.exe": - when: - store: steam registry: @@ -580351,16 +581933,16 @@ Toukiden 2: installDir: Toukiden 2: {} launch: - /Toukiden2Launcher.exe: + "/Toukiden2Launcher.exe": - when: - bit: 64 os: windows store: steam steam: id: 551730 -'Toukiden: Kiwami': +"Toukiden: Kiwami": files: - /KoeiTecmo/TOUKIDEN KIWAMI/Savedata: + "/KoeiTecmo/TOUKIDEN KIWAMI/Savedata": tags: - save when: @@ -580368,7 +581950,7 @@ Toukiden 2: installDir: TOUKIDEN Kiwami: {} launch: - /ToukidenKiwamiLauncher.exe: + "/ToukidenKiwamiLauncher.exe": - when: - bit: 64 os: windows @@ -580383,8 +581965,8 @@ Touring Karts: installDir: TouringKarts: {} launch: - /Touring Karts.exe: - - arguments: '-NoVR' + "/Touring Karts.exe": + - arguments: "-NoVR" when: - store: steam steam: @@ -580393,7 +581975,7 @@ Tourist Bus Simulator: installDir: Tourist Bus Simulator: {} launch: - /TouristBusSimulator/Binaries/Win64/TouristBusSimulator.exe: + "/TouristBusSimulator/Binaries/Win64/TouristBusSimulator.exe": - when: - store: steam steam: @@ -580402,27 +581984,27 @@ Tourists Kidnapped a Little Bear: installDir: Tourists Kidnapped a Little Bear: {} launch: - /Tourists Kidnapped a Little Bear.exe: + "/Tourists Kidnapped a Little Bear.exe": - when: - os: windows store: steam steam: id: 580420 -'Tournament: Blood & Steel': +"Tournament: Blood & Steel": installDir: Tournament Blood & Steel: {} launch: - /Tournament Blood & Steel.exe: + "/Tournament Blood & Steel.exe": - when: - os: windows store: steam steam: id: 1040620 -'Towaga: Among Shadows': +"Towaga: Among Shadows": installDir: Towaga Among Shadows: {} launch: - /Towaga Among Shadows.exe: + "/Towaga Among Shadows.exe": - when: - os: windows store: steam @@ -580440,16 +582022,16 @@ Towards the Pantheon: installDir: Towards The Pantheon: {} launch: - /TowardsThePantheonGame.exe: + "/TowardsThePantheonGame.exe": - when: - store: steam steam: id: 709510 -'Towards the Pantheon: Escaping Eternity': +"Towards the Pantheon: Escaping Eternity": installDir: Towards The Pantheon Escaping Eternity: {} launch: - /Towards The Pantheon Escaping Eternity.exe: + "/Towards The Pantheon Escaping Eternity.exe": - when: - os: windows store: steam @@ -580457,7 +582039,7 @@ Towards the Pantheon: id: 709450 Tower 57: files: - /Tower57: + "/Tower57": tags: - config when: @@ -580467,11 +582049,11 @@ Tower 57: installDir: Tower 57: {} launch: - /tower57.app: + "/tower57.app": - when: - os: mac store: steam - /tower57.exe: + "/tower57.exe": - when: - os: windows store: steam @@ -580484,7 +582066,7 @@ Tower Ascend: installDir: Tower Ascend: {} launch: - /TowerAscend.exe: + "/TowerAscend.exe": - when: - os: windows store: steam @@ -580499,15 +582081,15 @@ Tower Behind the Moon: installDir: Tower Behind the Moon: {} launch: - /Tower Behind the Moon.app/Contents/MacOS/Tower Behind the Moon: + "/Tower Behind the Moon.app/Contents/MacOS/Tower Behind the Moon": - when: - os: mac store: steam - /TowerBehindTheMoon: + "/TowerBehindTheMoon": - when: - os: linux store: steam - /TowerBehindTheMoon.exe: + "/TowerBehindTheMoon.exe": - when: - os: windows store: steam @@ -580517,7 +582099,7 @@ Tower Bombarde: installDir: Tower Bombarde: {} launch: - /TowerBombardeRemastered.exe: + "/TowerBombardeRemastered.exe": - when: - os: windows store: steam @@ -580527,7 +582109,7 @@ Tower Climb: installDir: Tower Climb: {} launch: - /Tower Climb.exe: + "/Tower Climb.exe": - when: - os: windows store: steam @@ -580537,7 +582119,7 @@ Tower Climber: installDir: 4e4nia kruto: {} launch: - /Tower climber.exe: + "/Tower climber.exe": - when: - store: steam steam: @@ -580546,17 +582128,17 @@ Tower Defense Sudden Attack: installDir: Tower Defense Sudden Attack: {} launch: - /TowerDefenceSuddenAttack.exe: + "/TowerDefenceSuddenAttack.exe": - when: - os: windows store: steam steam: id: 821910 -'Tower Defense: Defender of the Kingdom': +"Tower Defense: Defender of the Kingdom": installDir: Tower Defense: {} launch: - /Defender of the Kingdom.exe: + "/Defender of the Kingdom.exe": - when: - store: steam steam: @@ -580565,7 +582147,7 @@ Tower Dwellers: installDir: Tower Dwellers: {} launch: - /TowerDwellers.exe: + "/TowerDwellers.exe": - when: - os: windows store: steam @@ -580575,7 +582157,7 @@ Tower Empire Builder: installDir: TowerEmpireBuilder: {} launch: - /TowerEmpireBuilder.exe: + "/TowerEmpireBuilder.exe": - when: - os: windows store: steam @@ -580586,7 +582168,7 @@ Tower Expanse: id: 760980 Tower Fortress: files: - /TowerFortress: + "/TowerFortress": tags: - save when: @@ -580594,19 +582176,19 @@ Tower Fortress: installDir: TowerFortress: {} launch: - /TowerFortress.app: + "/TowerFortress.app": - when: - os: mac store: steam - /TowerFortress.exe: + "/TowerFortress.exe": - when: - os: windows store: steam steam: id: 593700 -'Tower Hunter: Erza''s Trial': +"Tower Hunter: Erza's Trial": files: - /AppData/LocalLow/IceSitruuna/TowerHunter/PlayerPrefs: + "/AppData/LocalLow/IceSitruuna/TowerHunter/PlayerPrefs": tags: - save when: @@ -580616,13 +582198,13 @@ Tower Fortress: installDir: Tower Hunter: {} launch: - /TowerHunter.exe: + "/TowerHunter.exe": - when: - os: windows store: steam steam: id: 844850 -'Tower Island: Explore, Discover and Disassemble': +"Tower Island: Explore, Discover and Disassemble": installDir: Tower Island: {} steam: @@ -580631,7 +582213,7 @@ Tower Keepers: installDir: Tower Keepers: {} launch: - /Tower Keepers.exe: + "/Tower Keepers.exe": - when: - os: windows store: steam @@ -580641,25 +582223,25 @@ Tower Miners: installDir: Tower Miners: {} launch: - /TowerMiners.exe: + "/TowerMiners.exe": - when: - os: windows store: steam steam: id: 690260 -'Tower Of God: One Wish': +"Tower Of God: One Wish": installDir: Tower Of God One WIsh: {} launch: - /ToG.x86_64: + "/ToG.x86_64": - when: - os: linux store: steam - /Tog.app/Contents/MacOS/Tower Of God: + "/Tog.app/Contents/MacOS/Tower Of God": - when: - os: mac store: steam - /Tower Of God.exe: + "/Tower Of God.exe": - when: - os: windows store: steam @@ -580669,7 +582251,7 @@ Tower Of Heresy: installDir: Tower Of Heresy: {} launch: - /Tower Of Heresy/Game.exe: + "/Tower Of Heresy/Game.exe": - when: - os: windows store: steam @@ -580679,7 +582261,7 @@ Tower Offence!: installDir: TowerOffence: {} launch: - /TowerOffence.exe: + "/TowerOffence.exe": - when: - os: windows store: steam @@ -580689,8 +582271,10 @@ Tower Princess: installDir: Tower Princess: {} launch: - /TowerPrincess.exe: + "/TowerPrincess.exe": - when: + - os: linux + store: steam - bit: 64 os: windows store: steam @@ -580700,25 +582284,25 @@ Tower Stacker: installDir: Tower Stacker: {} launch: - /Tower Stacker.app/Contents/MacOS/Tower Stacker: + "/Tower Stacker.app/Contents/MacOS/Tower Stacker": - when: - os: mac store: steam - /Tower Stacker.exe: + "/Tower Stacker.exe": - when: - os: windows store: steam - /Tower Stacker.x86: + "/Tower Stacker.x86": - when: - os: linux store: steam steam: id: 885240 -'Tower Tank: TD Reversal': +"Tower Tank: TD Reversal": installDir: Tower Tank - TD Reversal: {} launch: - /tower_tank.exe: + "/tower_tank.exe": - when: - os: windows store: steam @@ -580726,12 +582310,12 @@ Tower Stacker: id: 993490 Tower Unite: files: - /userdata//394690/remote: + "/userdata//394690/remote": tags: - config when: - store: steam - /Tower/Saved/Config/WindowsNoEditor: + "/Tower/Saved/Config/WindowsNoEditor": tags: - config when: @@ -580742,7 +582326,7 @@ Tower Unite: installDir: Tower Unite: {} launch: - /Tower/Binaries/Linux/Tower-Linux-Shipping: + "/Tower/Binaries/Linux/Tower-Linux-Shipping": - when: - os: linux store: steam @@ -580755,7 +582339,7 @@ Tower VR: id: 1124070 Tower Wars: files: - /scripts/client/prefs.cs: + "/scripts/client/prefs.cs": tags: - config when: @@ -580763,11 +582347,11 @@ Tower Wars: installDir: Tower Wars: {} launch: - /TW.exe: + "/TW.exe": - when: - os: windows store: steam - /Tower Wars.app: + "/Tower Wars.app": - when: - os: mac store: steam @@ -580777,14 +582361,14 @@ Tower and Guardian: installDir: Tower And Guardian 塔与守护者: {} launch: - /TowerAndGuardian.exe: + "/TowerAndGuardian.exe": - when: - store: steam steam: id: 683960 Tower and Sword of Succubus: files: - /steamapps/common/Tower and Sword Succubus: + "/steamapps/common/Tower and Sword Succubus": tags: - save when: @@ -580794,11 +582378,11 @@ Tower and Sword of Succubus: Tower and Sword Succubus: {} steam: id: 1327080 -'Tower in the Sky: Tactics Edition': +"Tower in the Sky: Tactics Edition": installDir: Tower in the Sky: {} launch: - /TowerInTheSky43.exe: + "/TowerInTheSky43.exe": - when: - os: windows store: steam @@ -580808,7 +582392,7 @@ Tower of Arcana: installDir: Tower of Arcana: {} launch: - /Windows_Content/TowerOfArcana/WindowsNoEditor/Empty.exe: + "/Windows_Content/TowerOfArcana/WindowsNoEditor/Empty.exe": - when: - bit: 64 os: windows @@ -580819,11 +582403,11 @@ Tower of Archeos: installDir: Tower of Archeos: {} launch: - /tower.app: + "/tower.app": - when: - os: mac store: steam - /tower.exe: + "/tower.exe": - when: - os: windows store: steam @@ -580835,14 +582419,14 @@ Tower of Ardia: installDir: Tower of Ardia: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: id: 1551540 Tower of Boin: files: - /AppData/LocalLow/NenokuniStudio/Tower Of BOIN/TOB_Save: + "/AppData/LocalLow/NenokuniStudio/Tower Of BOIN/TOB_Save": tags: - save when: @@ -580852,7 +582436,7 @@ Tower of Boin: installDir: Tower of Boin: {} launch: - /Tower Of BOIN.exe: + "/Tower Of BOIN.exe": - when: - store: steam steam: @@ -580861,7 +582445,7 @@ Tower of Eglathia: installDir: Tower of Eglathia: {} launch: - /TowerOfEglathia.exe: + "/TowerOfEglathia.exe": - when: - os: windows store: steam @@ -580869,7 +582453,7 @@ Tower of Eglathia: id: 351220 Tower of Fantasy: files: - /Hotta/Saved/Config/WindowsNoEditor: + "/Hotta/Saved/Config/WindowsNoEditor": tags: - config when: @@ -580877,7 +582461,7 @@ Tower of Fantasy: installDir: Tower of Fantasy: {} launch: - /Tower of Fantasy/Launcher/tof_launcher.exe: + "/Tower of Fantasy/Launcher/tof_launcher.exe": - when: - bit: 64 os: windows @@ -580888,12 +582472,12 @@ Tower of Fate: installDir: Tower of Fate: {} launch: - /TowerOfFate.exe: + "/TowerOfFate.exe": - when: - bit: 64 os: windows store: steam - /TowerOfFate.sh: + "/TowerOfFate.sh": - when: - os: linux store: steam @@ -580901,23 +582485,23 @@ Tower of Fate: id: 957780 Tower of Guns: files: - /Binaries/win32/Gamestate.bin: + "/Binaries/win32/Gamestate.bin": tags: - save when: - os: windows - /UDKGame/Config: + "/UDKGame/Config": tags: - config when: - os: windows - /Library/Application Support/com.terriblePostureGames.TowerOfGuns: + "/Library/Application Support/com.terriblePostureGames.TowerOfGuns": tags: - config - save when: - os: mac - /TerriblePostureGames/TowerOfGuns: + "/TerriblePostureGames/TowerOfGuns": tags: - config - save @@ -580928,16 +582512,16 @@ Tower of Guns: installDir: TowerofGuns: {} launch: - /Binaries/Linux/UDKGame-Linux: + "/Binaries/Linux/UDKGame-Linux": - when: - os: linux store: steam - workingDir: /Binaries/Linux - /Binaries/Win32/UDK.exe: + workingDir: "/Binaries/Linux" + "/Binaries/Win32/UDK.exe": - when: - os: windows store: steam - /TowerOfGuns.app: + "/TowerOfGuns.app": - when: - os: mac store: steam @@ -580950,7 +582534,7 @@ Tower of Shades: installDir: Tower of Shades: {} launch: - /Tower of Shades.exe: + "/Tower of Shades.exe": - when: - os: windows store: steam @@ -580958,24 +582542,24 @@ Tower of Shades: id: 1194940 Tower of Souls: files: - /GRAFX/SAVES/GAME*.BIN: + "/GRAFX/SAVES/GAME*.BIN": tags: - save when: - os: dos - /GRAFX/SAVES/OPTIONS.BIN: + "/GRAFX/SAVES/OPTIONS.BIN": tags: - config when: - os: dos Tower of Time: files: - /AppData/LocalLow/Event horizon/Tower of Time: + "/AppData/LocalLow/Event horizon/Tower of Time": tags: - save when: - os: windows - /unity3d/Event horizon/Tower of Time: + "/unity3d/Event horizon/Tower of Time": tags: - config - save @@ -580986,16 +582570,16 @@ Tower of Time: installDir: Tower of Time: {} launch: - /TowerOfTime.exe: + "/TowerOfTime.exe": - when: - os: windows store: steam - /TowerOfTime.x86: + "/TowerOfTime.x86": - when: - bit: 32 os: linux store: steam - /TowerOfTime.x86_64: + "/TowerOfTime.x86_64": - when: - bit: 64 os: linux @@ -581010,30 +582594,30 @@ Tower of the Alchemist: installDir: Magic Tower ~ Tower of the Alchemist: {} launch: - /Game.exe: - - arguments: '-window' + "/Game.exe": + - arguments: "-window" when: - store: steam steam: id: 1124810 -'Tower!2011:SE': +"Tower!2011:SE": installDir: Tower_2011_SE: {} launch: - /AirfieldEd.exe: + "/AirfieldEd.exe": - when: - os: windows store: steam - /Airplanes/planeEd.exe: + "/Airplanes/planeEd.exe": - when: - os: windows store: steam - workingDir: /Airplanes - /Tower-SE-Manual.pdf: + workingDir: "/Airplanes" + "/Tower-SE-Manual.pdf": - when: - os: windows store: steam - /Tower.exe: + "/Tower.exe": - when: - os: windows store: steam @@ -581043,7 +582627,7 @@ Tower!3D: installDir: Tower 3D: {} launch: - /tower3d.exe: + "/tower3d.exe": - when: - os: windows store: steam @@ -581053,7 +582637,7 @@ Tower!3D Pro: installDir: Tower 3D Pro: {} launch: - /tower3d.exe: + "/tower3d.exe": - when: - bit: 64 os: windows @@ -581064,7 +582648,7 @@ TowerClimb: installDir: TowerClimb: {} launch: - /TowerClimb_V1_Steam4.exe: + "/TowerClimb_V1_Steam4.exe": - when: - os: windows store: steam @@ -581072,18 +582656,18 @@ TowerClimb: id: 396640 TowerFall Ascension: files: - /tf_saveData: + "/tf_saveData": tags: - save when: - - os: windows - store: steam - /Library/Application Support/TowerFall/tf_saveData: + - os: windows + "/Library/Application Support/TowerFall/tf_saveData": tags: - save when: - os: mac - /TowerFall/tf_saveData: + "/TowerFall/tf_saveData": tags: - save when: @@ -581093,15 +582677,15 @@ TowerFall Ascension: installDir: TowerFall: {} launch: - /TowerFall: + "/TowerFall": - when: - os: linux store: steam - /TowerFall.app/Contents/MacOS/TowerFall: + "/TowerFall.app/Contents/MacOS/TowerFall": - when: - os: mac store: steam - /TowerFall.exe: + "/TowerFall.exe": - when: - os: windows store: steam @@ -581111,8 +582695,8 @@ TowerHex: installDir: TowerHex: {} launch: - /allGame1.exe: - - arguments: '-show-screen-selector -non-vr' + "/allGame1.exe": + - arguments: "-show-screen-selector -non-vr" when: - os: windows store: steam @@ -581128,11 +582712,11 @@ Towers of Altrac - Epic Defense Battles: installDir: Towers of Altrac: {} launch: - /Towers of Altrac.app: + "/Towers of Altrac.app": - when: - os: mac store: steam - /TowersOfAltrac.exe: + "/TowersOfAltrac.exe": - when: - os: windows store: steam @@ -581145,15 +582729,15 @@ Towertale: installDir: Towertale: {} launch: - /Towertale.app: + "/Towertale.app": - when: - os: mac store: steam - /Towertale.exe: + "/Towertale.exe": - when: - os: windows store: steam - /Towertale.x86: + "/Towertale.x86": - when: - os: linux store: steam @@ -581163,7 +582747,7 @@ Town Defence: installDir: Town Defence: {} launch: - /TowerDefence.exe: + "/TowerDefence.exe": - when: - bit: 64 os: windows @@ -581174,7 +582758,7 @@ Town Doubt: installDir: Town doubt: {} launch: - /Game_boxed.exe: + "/Game_boxed.exe": - when: - os: windows store: steam @@ -581184,7 +582768,7 @@ Town of Night: installDir: Town of Night: {} launch: - /sgb_rpgplayer.exe: + "/sgb_rpgplayer.exe": - when: - store: steam steam: @@ -581193,11 +582777,11 @@ Town of Salem: installDir: Town of Salem: {} launch: - /TownOfSalem.app: + "/TownOfSalem.app": - when: - os: mac store: steam - /TownOfSalem.exe: + "/TownOfSalem.exe": - when: - os: windows store: steam @@ -581207,11 +582791,11 @@ TownCraft: installDir: TownCraft: {} launch: - /TownCraft Steam.app: + "/TownCraft Steam.app": - when: - os: mac store: steam - /TownCraft.exe: + "/TownCraft.exe": - when: - os: windows store: steam @@ -581221,20 +582805,20 @@ Townopolis: installDir: Townopolis: {} launch: - /Townopolis: + "/Townopolis": - when: - os: linux store: steam - /Townopolis 32bit.exe: + "/Townopolis 32bit.exe": - when: - bit: 32 os: windows store: steam - /Townopolis.app: + "/Townopolis.app": - when: - os: mac store: steam - /Townopolis.exe: + "/Townopolis.exe": - when: - bit: 64 os: windows @@ -581245,15 +582829,15 @@ Towns: installDir: towns: {} launch: - /Towns.exe: + "/Towns.exe": - when: - os: windows store: steam - /towns.command: + "/towns.command": - when: - os: mac store: steam - /towns.sh: + "/towns.sh": - when: - os: linux store: steam @@ -581261,7 +582845,7 @@ Towns: id: 221020 Townscaper: files: - /AppData/LocalLow/Oskar Stalberg/Townscaper/Saves/*.scape: + "/AppData/LocalLow/Oskar Stalberg/Townscaper/Saves/*.scape": tags: - save when: @@ -581271,11 +582855,11 @@ Townscaper: installDir: Townscaper: {} launch: - /Townscaper.app/Contents/MacOS/Townscaper: + "/Townscaper.app/Contents/MacOS/Townscaper": - when: - os: mac store: steam - /Townscaper.exe: + "/Townscaper.exe": - when: - os: windows store: steam @@ -581285,7 +582869,7 @@ Townsmen: installDir: Townsmen: {} launch: - /Townsmen.exe: + "/Townsmen.exe": - when: - os: windows store: steam @@ -581293,7 +582877,7 @@ Townsmen: id: 486540 Townsmen - A Kingdom Rebuilt: files: - /HandyGames/com.hg.townsmen.rebuilt/savegames: + "/HandyGames/com.hg.townsmen.rebuilt/savegames": tags: - save when: @@ -581303,7 +582887,7 @@ Townsmen - A Kingdom Rebuilt: installDir: Townsmen - A Kingdom Rebuilt: {} launch: - /TownsmenRebuilt.exe: + "/TownsmenRebuilt.exe": - when: - store: steam steam: @@ -581317,7 +582901,7 @@ Towtruck Simulator 2015: installDir: Towtruck Simulator 2015: {} launch: - /towtruck.exe: + "/towtruck.exe": - when: - os: windows store: steam @@ -581327,7 +582911,7 @@ Toxic Bunny HD: installDir: Toxic Bunny HD: {} launch: - /ToxicBunnyHD.exe: + "/ToxicBunnyHD.exe": - when: - store: steam steam: @@ -581336,7 +582920,7 @@ Toxic Plumbing: installDir: TOXIC PLUMBING: {} launch: - /TOXIC PLUMBING.exe: + "/TOXIC PLUMBING.exe": - when: - os: windows store: steam @@ -581346,7 +582930,7 @@ Toxic Terror: installDir: Toxic Terror: {} launch: - /Toxic Terror.exe: + "/Toxic Terror.exe": - when: - os: windows store: steam @@ -581359,7 +582943,7 @@ Toxicant: installDir: TOXICANT: {} launch: - /TOXICANT.exe: + "/TOXICANT.exe": - when: - bit: 64 os: windows @@ -581368,7 +582952,7 @@ Toxicant: id: 688120 Toxikk: files: - /UDKGame/Config: + "/UDKGame/Config": tags: - config when: @@ -581376,12 +582960,12 @@ Toxikk: installDir: TOXIKK: {} launch: - /Binaries/ToxikkLauncher.exe: - - arguments: '?FullscreenLaunch' + "/Binaries/ToxikkLauncher.exe": + - arguments: "?FullscreenLaunch" when: - os: windows store: steam - - arguments: '?FullscreenLaunch?automatchmaking' + - arguments: "?FullscreenLaunch?automatchmaking" when: - os: windows store: steam @@ -581396,7 +582980,7 @@ Toy Generals: installDir: Toy Generals: {} launch: - /ToyGenerals.exe: + "/ToyGenerals.exe": - when: - os: windows store: steam @@ -581412,15 +582996,15 @@ Toy Gun Office Simulator: Toy Gun Office Simulator: {} steam: id: 913770 -'Toy Odyssey: The Lost and Found': +"Toy Odyssey: The Lost and Found": installDir: ToyOdyssey: {} launch: - /ToyOdyssey.app: + "/ToyOdyssey.app": - when: - os: mac store: steam - /ToyOdyssey.exe: + "/ToyOdyssey.exe": - when: - bit: 32 os: windows @@ -581436,11 +583020,11 @@ Toy Road Constructor: installDir: Toy Road Constructor: {} launch: - /Toy Road Constructor.app/Contents/MacOS/Toy Road Constructor: + "/Toy Road Constructor.app/Contents/MacOS/Toy Road Constructor": - when: - os: mac store: steam - /Toy Road Constructor.exe: + "/Toy Road Constructor.exe": - when: - os: windows store: steam @@ -581450,15 +583034,15 @@ Toy Robot: installDir: Toy Robot: {} launch: - /TOYROBOT.app: + "/TOYROBOT.app": - when: - os: mac store: steam - /ToyRobot.exe: + "/ToyRobot.exe": - when: - os: windows store: steam - /ToyRobot.x86_64: + "/ToyRobot.x86_64": - when: - bit: 64 os: linux @@ -581472,36 +583056,36 @@ Toy Soldiers: installDir: toy soldiers: {} launch: - /GameSW.exe: + "/GameSW.exe": - when: - store: steam steam: id: 98300 -'Toy Soldiers: Complete': +"Toy Soldiers: Complete": installDir: Toy Soldiers Complete: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam steam: id: 262120 -'Toy Soldiers: HD': +"Toy Soldiers: HD": installDir: Toy Soldiers HD: {} launch: - /TSHD.exe: + "/TSHD.exe": - when: - store: steam steam: id: 1446160 -'Toy Soldiers: War Chest': +"Toy Soldiers: War Chest": installDir: ToySoldiersWarChest: {} launch: - /Game.exe: - - arguments: '-uplay_steam_mode' + "/Game.exe": + - arguments: "-uplay_steam_mode" when: - os: windows store: steam @@ -581509,22 +583093,22 @@ Toy Soldiers: id: 276770 Toy Story: files: - /TOYSTORY.CFG: + "/TOYSTORY.CFG": tags: - config - save when: - os: windows -'Toy Story 2: Buzz Lightyear to the Rescue': +"Toy Story 2: Buzz Lightyear to the Rescue": files: - /ToyXXX.sav: + "/ToyXXX.sav": tags: - save when: - os: windows -'Toy Story 3: The Video Game': +"Toy Story 3: The Video Game": files: - /Disney Interactive Studios/Toy Story 3/savedata: + "/Disney Interactive Studios/Toy Story 3/savedata": tags: - config - save @@ -581533,7 +583117,7 @@ Toy Story: installDir: Toy Story 3: {} launch: - /Game-TS3.exe: + "/Game-TS3.exe": - when: - os: windows store: steam @@ -581541,7 +583125,7 @@ Toy Story: id: 300820 Toy Story Mania!: files: - /SaveGames: + "/SaveGames": tags: - save when: @@ -581549,27 +583133,29 @@ Toy Story Mania!: installDir: Toy Story Mania: {} launch: - /tsmania.exe: + "/tsmania.exe": - when: - store: steam steam: id: 317580 Toy Tinker Simulator: files: - /ToyTinkerSimulator/Saved/Config/WindowsNoEditor: + "/ToyTinkerSimulator/Saved/Config/WindowsNoEditor": tags: - config when: - - store: steam - /ToyTinkerSimulator/Saved/SaveGames: + - os: windows + store: steam + "/ToyTinkerSimulator/Saved/SaveGames": tags: - save when: - - store: steam + - os: windows + store: steam installDir: Toy Tinker Simulator: {} launch: - /ToyTinkerSimulator.exe: + "/ToyTinkerSimulator.exe": - when: - bit: 64 os: windows @@ -581580,17 +583166,17 @@ Toy Wars Invasion: installDir: Toy Wars Invasion: {} launch: - /binaries/Win32/ToyWarsInvasion.exe: + "/binaries/Win32/ToyWarsInvasion.exe": - when: - os: windows store: steam steam: id: 346490 -'Toy-War: The Beginning': +"Toy-War: The Beginning": installDir: Toy-War The Beginning: {} launch: - /ToyWar_BW.exe: + "/ToyWar_BW.exe": - when: - bit: 64 os: windows @@ -581606,7 +583192,7 @@ Toybit Quest: installDir: Toybit Quest: {} launch: - /ToybitQuest20.exe: + "/ToybitQuest20.exe": - when: - os: windows store: steam @@ -581614,12 +583200,12 @@ Toybit Quest: id: 847800 Toybox Turbos: files: - /Saved Games/Codemasters/ToyboxTurbos: + "/Saved Games/Codemasters/ToyboxTurbos": tags: - config when: - os: windows - /Saved Games/Codemasters/ToyboxTurbos//SaveGame.dat: + "/Saved Games/Codemasters/ToyboxTurbos//SaveGame.dat": tags: - save when: @@ -581630,7 +583216,7 @@ Toybox Turbos: installDir: ToyboxTurbos: {} launch: - /ToyboxTurbos.exe: + "/ToyboxTurbos.exe": - when: - os: windows store: steam @@ -581640,7 +583226,7 @@ Toymaker: installDir: Toymaker: {} launch: - /RPG_RT.exe: + "/RPG_RT.exe": - when: - os: windows store: steam @@ -581650,7 +583236,7 @@ Toys Gun Fire Boom: installDir: Toys Gun Fire Boom: {} launch: - /ToysGun.exe: + "/ToysGun.exe": - when: - os: windows store: steam @@ -581660,16 +583246,16 @@ Toys of War: installDir: Toys of War: {} launch: - /ToW.app: + "/ToW.app": - when: - os: mac store: steam - /ToW.exe: + "/ToW.exe": - when: - os: windows store: steam - /ToW.x86: - - arguments: '-force-opengl' + "/ToW.x86": + - arguments: "-force-opengl" when: - os: linux store: steam @@ -581679,12 +583265,12 @@ Toz: installDir: toz: {} launch: - /puny: + "/puny": - when: - bit: 64 os: linux store: steam - /puny.exe: + "/puny.exe": - when: - bit: 64 os: windows @@ -581695,7 +583281,7 @@ TrES-2b: installDir: TrES-2b: {} launch: - /Blackhole_Planet.exe: + "/Blackhole_Planet.exe": - when: - os: windows store: steam @@ -581705,15 +583291,15 @@ Trace Vector: installDir: Trace Vector: {} launch: - /Trace Vector.app: + "/Trace Vector.app": - when: - os: mac store: steam - /Trace Vector.exe: + "/Trace Vector.exe": - when: - os: windows store: steam - /Trace-Vector: + "/Trace-Vector": - when: - bit: 64 os: linux @@ -581724,7 +583310,7 @@ Trace of the past: installDir: Trace of the past: {} launch: - /Trace_of_the_past.exe: + "/Trace_of_the_past.exe": - when: - os: windows store: steam @@ -581732,34 +583318,34 @@ Trace of the past: id: 1115060 TrackMania (2003): files: - /GameData/Profiles: + "/GameData/Profiles": tags: - save when: - os: windows - /GameData/Scores: + "/GameData/Scores": tags: - save when: - os: windows - /GameData/Tracks: + "/GameData/Tracks": tags: - save when: - os: windows - Default.SystemConfig.Gbx: + "Default.SystemConfig.Gbx": tags: - config when: - os: windows -'TrackMania 2: Canyon': +"TrackMania 2: Canyon": files: - /ManiaPlanet: + "/ManiaPlanet": tags: - save when: - os: windows - /ManiaPlanet/Config: + "/ManiaPlanet/Config": tags: - config when: @@ -581767,7 +583353,7 @@ TrackMania (2003): installDir: ManiaPlanet_TMCanyon: {} launch: - /ManiaPlanetLauncher.exe: + "/ManiaPlanetLauncher.exe": - arguments: /silent //startuptitle=TMCanyon when: - store: steam @@ -581775,14 +583361,14 @@ TrackMania (2003): - store: steam steam: id: 228760 -'TrackMania 2: Stadium': +"TrackMania 2: Stadium": files: - /ManiaPlanet: + "/ManiaPlanet": tags: - save when: - os: windows - /ManiaPlanet/Config: + "/ManiaPlanet/Config": tags: - config when: @@ -581790,7 +583376,7 @@ TrackMania (2003): installDir: ManiaPlanet_TMStadium: {} launch: - /ManiaPlanetLauncher.exe: + "/ManiaPlanetLauncher.exe": - arguments: /silent //startuptitle=TMStadium when: - store: steam @@ -581798,9 +583384,9 @@ TrackMania (2003): - store: steam steam: id: 232910 -'TrackMania 2: Valley': +"TrackMania 2: Valley": files: - /ManiaPlanet/Config/Default.SystemConfig.Gbx: + "/ManiaPlanet/Config/Default.SystemConfig.Gbx": tags: - config when: @@ -581808,7 +583394,7 @@ TrackMania (2003): installDir: ManiaPlanet_TMValley: {} launch: - /ManiaPlanetLauncher.exe: + "/ManiaPlanetLauncher.exe": - arguments: /silent //startuptitle=TMValley when: - store: steam @@ -581818,44 +583404,44 @@ TrackMania (2003): id: 243360 TrackMania Nations: files: - /Default.SystemConfig.Gbx: + "/Default.SystemConfig.Gbx": tags: - config when: - os: windows - /GameData/Profiles: + "/GameData/Profiles": tags: - save when: - os: windows - /GameData/Scores: + "/GameData/Scores": tags: - save when: - os: windows - /GameData/Tracks: + "/GameData/Tracks": tags: - save when: - os: windows TrackMania Nations Forever: files: - /TrackMania/Config: + "/TrackMania/Config": tags: - config when: - os: windows - /TrackMania/Profiles: + "/TrackMania/Profiles": tags: - save when: - os: windows - /TrackMania/Scores: + "/TrackMania/Scores": tags: - save when: - os: windows - /TrackMania/Tracks: + "/TrackMania/Tracks": tags: - save when: @@ -581863,76 +583449,76 @@ TrackMania Nations Forever: installDir: TrackMania Nations Forever: {} launch: - /TmForever.exe: + "/TmForever.exe": - when: - store: steam - /TmForeverLauncher.exe: + "/TmForeverLauncher.exe": - when: - store: steam steam: id: 11020 TrackMania Sunrise: files: - /Default.SystemConfig.Gbx: + "/Default.SystemConfig.Gbx": tags: - config when: - os: windows - /GameData/Profiles: + "/GameData/Profiles": tags: - save when: - os: windows - /GameData/Scores: + "/GameData/Scores": tags: - save when: - os: windows - /GameData/Tracks: + "/GameData/Tracks": tags: - save when: - os: windows TrackMania United: files: - /Default.SystemConfig.Gbx: + "/Default.SystemConfig.Gbx": tags: - config when: - os: windows - /TrackMania United/Profiles: + "/TrackMania United/Profiles": tags: - save when: - os: windows - /TrackMania United/Scores: + "/TrackMania United/Scores": tags: - save when: - os: windows - /TrackMania United/Tracks: + "/TrackMania United/Tracks": tags: - save when: - os: windows TrackMania United Forever: files: - /TrackMania/Config: + "/TrackMania/Config": tags: - config when: - os: windows - /TrackMania/Profiles: + "/TrackMania/Profiles": tags: - save when: - os: windows - /TrackMania/Scores: + "/TrackMania/Scores": tags: - save when: - os: windows - /TrackMania/Tracks: + "/TrackMania/Tracks": tags: - save when: @@ -581940,17 +583526,17 @@ TrackMania United Forever: installDir: TrackMania United: {} launch: - /TmForever.exe: + "/TmForever.exe": - when: - store: steam - /TmForeverLauncher.exe: + "/TmForeverLauncher.exe": - when: - store: steam steam: id: 7200 TrackRacing Online: files: - /AppData/LocalLow/SoulKey/TrackRacing Online: + "/AppData/LocalLow/SoulKey/TrackRacing Online": tags: - save when: @@ -581963,7 +583549,7 @@ Trackday Manager: installDir: Trackday Manager: {} launch: - /Trackday Manager.exe: + "/Trackday Manager.exe": - when: - os: windows store: steam @@ -581973,15 +583559,15 @@ Trackless: installDir: Trackless: {} launch: - /Trackless.app/Contents/MacOS/Trackless: + "/Trackless.app/Contents/MacOS/Trackless": - when: - os: mac store: steam - /Trackless.exe: + "/Trackless.exe": - when: - os: windows store: steam - /Trackless.x86: + "/Trackless.x86": - when: - bit: 64 os: linux @@ -581990,12 +583576,12 @@ Trackless: id: 586660 Trackmania (2020): files: - /Trackmania: + "/Trackmania": tags: - save when: - os: windows - /Trackmania/Config: + "/Trackmania/Config": tags: - config when: @@ -582003,22 +583589,22 @@ Trackmania (2020): installDir: Trackmania: {} launch: - /Trackmania.exe: - - arguments: '-upc_steam_free_package_id 62710 -uplay_steam_mode' + "/Trackmania.exe": + - arguments: "-upc_steam_free_package_id 62710 -uplay_steam_mode" when: - bit: 64 os: windows store: steam steam: id: 2225070 -'Trackmania 2: Lagoon': +"Trackmania 2: Lagoon": files: - /ManiaPlanet: + "/ManiaPlanet": tags: - save when: - os: windows - /ManiaPlanet/Config: + "/ManiaPlanet/Config": tags: - config when: @@ -582026,7 +583612,7 @@ Trackmania (2020): installDir: ManiaPlanet_TMLagoon: {} launch: - /ManiaPlanetLauncher.exe: + "/ManiaPlanetLauncher.exe": - arguments: /silent //startuptitle=TMLagoon@nadeo when: - store: steam @@ -582036,7 +583622,7 @@ Trackmania (2020): id: 600720 Trackmania Turbo: files: - /TrackmaniaTurbo: + "/TrackmaniaTurbo": tags: - config - save @@ -582045,12 +583631,12 @@ Trackmania Turbo: installDir: Trackmania Turbo: {} launch: - /Config.exe: + "/Config.exe": - when: - os: windows store: steam - /TrackmaniaTurbo.exe: - - arguments: '-upc_steam_required_product_id 3239 -uplay_steam_mode /steam_vr=0' + "/TrackmaniaTurbo.exe": + - arguments: "-upc_steam_required_product_id 3239 -uplay_steam_mode /steam_vr=0" when: - os: windows store: steam @@ -582058,12 +583644,12 @@ Trackmania Turbo: id: 375900 Tracks - The Train Set Game: files: - /TrainSet/Saved/Config/WindowsNoEditor: + "/TrainSet/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /TrainSet/Saved/SaveGames: + "/TrainSet/Saved/SaveGames": tags: - save when: @@ -582071,7 +583657,7 @@ Tracks - The Train Set Game: installDir: Tracks - The Train Set Game: {} launch: - /TrainSet.exe: + "/TrainSet.exe": - when: - os: windows store: steam @@ -582081,62 +583667,62 @@ Tracks and Turrets: installDir: Tracks and Turrets: {} launch: - /TracksAndTurrets.app/Contents/MacOS/TracksAndTurrets: + "/TracksAndTurrets.app/Contents/MacOS/TracksAndTurrets": - when: - os: mac store: steam - /TracksAndTurrets.exe: + "/TracksAndTurrets.exe": - when: - os: windows store: steam - /TracksAndTurrets.x86: + "/TracksAndTurrets.x86": - when: - bit: 32 os: linux store: steam - /TracksAndTurrets.x86_64: + "/TracksAndTurrets.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 404370 -'Tracks of Triumph: Good Old Times': +"Tracks of Triumph: Good Old Times": steam: id: 576080 -'Tracks of Triumph: Industrial Zone': +"Tracks of Triumph: Industrial Zone": steam: id: 492240 -'Tracks of Triumph: Summertime': +"Tracks of Triumph: Summertime": steam: id: 528210 -'Tracon!2012:SE': +"Tracon!2012:SE": installDir: Tracon!2012SE: {} launch: - /AirspaceEd.exe: + "/AirspaceEd.exe": - when: - os: windows store: steam - /TRACON-2012-manual.pdf: + "/TRACON-2012-manual.pdf": - when: - os: windows store: steam - /Tracon.exe: + "/Tracon.exe": - when: - os: windows store: steam steam: id: 646350 -'Tractage aux Portes 2: Mob à la Cafétéria': +"Tractage aux Portes 2: Mob à la Cafétéria": installDir: TaP2_MobALaCaf: {} launch: - /MobALaCaf.exe: + "/MobALaCaf.exe": - when: - os: windows store: steam - /MobALaCaf_Mac.app/Contents/MacOS/MobALaCaf_Mac: + "/MobALaCaf_Mac.app/Contents/MacOS/MobALaCaf_Mac": - when: - os: mac store: steam @@ -582146,7 +583732,7 @@ Tractor Cargo Driving Simulator: installDir: Tractor Cargo Driving Simulator: {} launch: - /Tractor Cargo Driving Simulator.exe: + "/Tractor Cargo Driving Simulator.exe": - when: - os: windows store: steam @@ -582161,7 +583747,7 @@ Tradewinds 2: installDir: Tradewinds 2: {} launch: - /Tradewinds2.exe: + "/Tradewinds2.exe": - when: - store: steam steam: @@ -582170,7 +583756,7 @@ Tradewinds Caravans: installDir: Tradewinds Caravans: {} launch: - /TradewindsCaravans.exe: + "/TradewindsCaravans.exe": - when: - store: steam steam: @@ -582179,7 +583765,7 @@ Tradewinds Classic: installDir: Tradewinds Classic: {} launch: - /TradewindsClassic.exe: + "/TradewindsClassic.exe": - when: - store: steam steam: @@ -582188,7 +583774,7 @@ Tradewinds Legends: installDir: Tradewinds Legends: {} launch: - /TradewindsLegends.exe: + "/TradewindsLegends.exe": - when: - store: steam steam: @@ -582197,7 +583783,7 @@ Tradewinds Odyssey: installDir: Tradewinds Odyssey: {} launch: - /TradewindsOdyssey.exe: + "/TradewindsOdyssey.exe": - when: - store: steam steam: @@ -582213,7 +583799,7 @@ Traffic Giant: installDir: Traffic Giant: {} launch: - /trafficgiant.exe: + "/trafficgiant.exe": - when: - store: steam steam: @@ -582222,11 +583808,11 @@ Traffix: installDir: Traffix: {} launch: - /Traffix.exe: + "/Traffix.exe": - when: - os: windows store: steam - /traffix.app: + "/traffix.app": - when: - os: mac store: steam @@ -582236,7 +583822,7 @@ Trafic Road Rush: installDir: Trafic Road Rush: {} launch: - /trafficracer.exe: + "/trafficracer.exe": - when: - os: windows store: steam @@ -582246,7 +583832,7 @@ Tragedy of Prince Rupert: installDir: Tragedy of Prince Rupert: {} launch: - /topr.exe: + "/topr.exe": - when: - os: windows store: steam @@ -582256,7 +583842,7 @@ Trago: installDir: TRAGO: {} launch: - /Trago.exe: + "/Trago.exe": - when: - os: windows store: steam @@ -582266,7 +583852,7 @@ Trail Breaking: installDir: Trail Breaking: {} launch: - /TrailBreaking.exe: + "/TrailBreaking.exe": - when: - bit: 64 os: windows @@ -582275,12 +583861,12 @@ Trail Breaking: id: 838160 Trail Out: files: - /TrailOut/Saved/Config/WindowsNoEditor: + "/TrailOut/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /TrailOut/Saved/SaveGames: + "/TrailOut/Saved/SaveGames": tags: - save when: @@ -582293,7 +583879,7 @@ Trail of Destruction: installDir: Trail of Destruction: {} launch: - /TrailOfDestruction.exe: + "/TrailOfDestruction.exe": - when: - os: windows store: steam @@ -582305,17 +583891,17 @@ Trailblazers: installDir: Trailblazers: {} launch: - /Trailblazers: + "/Trailblazers": - when: - bit: 64 os: linux store: steam - /Trailblazers.app/Contents/MacOS/Trailblazers: + "/Trailblazers.app/Contents/MacOS/Trailblazers": - when: - bit: 64 os: mac store: steam - /Trailblazers.exe: + "/Trailblazers.exe": - when: - bit: 64 os: windows @@ -582326,9 +583912,9 @@ Trailblazers: - config steam: id: 621970 -'Trailer Park Boys: Greasy Money': +"Trailer Park Boys: Greasy Money": files: - /AppData/LocalLow/East Side Games/Trailer Park Boys Steam: + "/AppData/LocalLow/East Side Games/Trailer Park Boys Steam": tags: - save when: @@ -582336,11 +583922,11 @@ Trailblazers: installDir: Trailer Park Boys Greasy Money: {} launch: - /game.app: + "/game.app": - when: - os: mac store: steam - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -582354,7 +583940,7 @@ Trailer park mechanic: installDir: Trailerpark mechanic: {} launch: - /Trailerpark Mechanic.exe: + "/Trailerpark Mechanic.exe": - when: - store: steam steam: @@ -582366,17 +583952,17 @@ Trailing Girl: id: 1153890 Trailmakers: files: - /AppData/LocalLow/Flashbulb/Trailmakers/PlayerPrefs/Preferences: + "/AppData/LocalLow/Flashbulb/Trailmakers/PlayerPrefs/Preferences": tags: - config when: - os: windows - /TrailMakers: + "/TrailMakers": tags: - save when: - os: windows - /Packages/Flashbulb.Trailmakers_8a41h19xsg1bm/SystemAppData/wgs: + "/Packages/Flashbulb.Trailmakers_8a41h19xsg1bm/SystemAppData/wgs": tags: - save when: @@ -582385,10 +583971,10 @@ Trailmakers: installDir: Trailmakers: {} launch: - /Trailmakers.exe: + "/Trailmakers.exe": - when: - store: steam - - arguments: '-safemode -show-screen-selector -window-mode borderless' + - arguments: "-safemode -show-screen-selector -window-mode borderless" when: - bit: 64 os: windows @@ -582399,7 +583985,7 @@ Trails of the Black Sun: installDir: Trails of the Black Sun: {} launch: - /TOTBS.exe: + "/TOTBS.exe": - when: - os: windows store: steam @@ -582409,11 +583995,11 @@ Train Bandit: installDir: Train Bandit: {} launch: - /Train Bandit.app: + "/Train Bandit.app": - when: - os: mac store: steam - /TrainBandit.exe: + "/TrainBandit.exe": - when: - os: windows store: steam @@ -582423,12 +584009,12 @@ Train Crisis: installDir: TrainCrisis: {} launch: - /traincrisis.app/Contents/MacOS/traincrisis: + "/traincrisis.app/Contents/MacOS/traincrisis": - when: - os: mac store: steam - /traincrisis.exe: - - arguments: '-nolog' + "/traincrisis.exe": + - arguments: "-nolog" when: - os: windows store: steam @@ -582439,12 +584025,12 @@ Train Defense: id: 891970 Train Fever: files: - /userdata//304730/local/save: + "/userdata//304730/local/save": tags: - save when: - store: steam - /userdata//304730/local/settings.lua: + "/userdata//304730/local/settings.lua": tags: - config when: @@ -582454,12 +584040,14 @@ Train Fever: installDir: Train Fever: {} launch: - /TrainFever.exe: + "/TrainFever.exe": - when: - os: windows store: steam - /run.sh: + "/run.sh": - when: + - os: mac + store: steam - os: linux store: steam steam: @@ -582468,7 +584056,7 @@ Train Frontier Classic: installDir: Train Frontier Classic: {} launch: - /TrainFrontierClassic.exe: + "/TrainFrontierClassic.exe": - when: - store: steam steam: @@ -582481,9 +584069,9 @@ Train Harder: Train Journey: steam: id: 726210 -'Train Life: A Railway Simulator': +"Train Life: A Railway Simulator": files: - /TrainLife/Saved/SaveGames: + "/TrainLife/Saved/SaveGames": tags: - save when: @@ -582491,7 +584079,7 @@ Train Journey: installDir: Train Life - A Railway Simulator: {} launch: - /TrainLife.exe: + "/TrainLife.exe": - when: - bit: 64 os: windows @@ -582502,7 +584090,7 @@ Train Manager: installDir: Train Manager: {} launch: - /Train Manager.exe: + "/Train Manager.exe": - when: - bit: 64 store: steam @@ -582512,7 +584100,7 @@ Train Mechanic Simulator 2017: installDir: Train Mechanic Simulator 2017: {} launch: - /tms.exe: + "/tms.exe": - when: - os: windows store: steam @@ -582525,7 +584113,7 @@ Train Runner VR: id: 746610 Train Sim World: files: - /My Games/TS2Prototype/Saved: + "/My Games/TS2Prototype/Saved": tags: - save when: @@ -582533,7 +584121,7 @@ Train Sim World: installDir: Train Sim World: {} launch: - /WindowsNoEditor/TS2Prototype.exe: + "/WindowsNoEditor/TS2Prototype.exe": - when: - os: windows store: steam @@ -582541,25 +584129,26 @@ Train Sim World: id: 530070 Train Sim World 2: files: - /My Games/TrainSimWorld2/Saved/Config/WindowsNoEditor: + "/My Games/TrainSimWorld2/Saved/Config/WindowsNoEditor": tags: - config when: - - store: steam - /My Games/TrainSimWorld2EGS/Saved/Config/WindowsNoEditor: + - os: windows + store: steam + "/My Games/TrainSimWorld2EGS/Saved/Config/WindowsNoEditor": tags: - config when: - - store: epic - /My Games/TrainSimWorld2EGS/Saved/SaveGames: + - os: windows + "/My Games/TrainSimWorld2EGS/Saved/SaveGames": tags: - save when: - - store: epic + - os: windows installDir: Train Sim World 2: {} launch: - /WindowsNoEditor/TS2Prototype.exe: + "/WindowsNoEditor/TS2Prototype.exe": - when: - os: windows store: steam @@ -582567,20 +584156,22 @@ Train Sim World 2: id: 1282590 Train Sim World 3: files: - /My Games/TrainSimWorld3/Saved/Config: + "/My Games/TrainSimWorld3/Saved/Config": tags: - config when: - - store: steam - /My Games/TrainSimWorld3/Saved/SaveGames: + - os: windows + store: steam + "/My Games/TrainSimWorld3/Saved/SaveGames": tags: - save when: - - store: steam + - os: windows + store: steam installDir: Train Sim World 3: {} launch: - /WindowsNoEditor/TS2Prototype.exe: + "/WindowsNoEditor/TS2Prototype.exe": - when: - os: windows store: steam @@ -582593,7 +584184,7 @@ Train Sim World 4: installDir: Train Sim World 4: {} launch: - /WindowsNoEditor/TrainSimWorld.exe: + "/WindowsNoEditor/TrainSimWorld.exe": - when: - os: windows store: steam @@ -582601,7 +584192,7 @@ Train Sim World 4: id: 2362300 Train Simulator: files: - /Content/PlayerProfiles.bin: + "/Content/PlayerProfiles.bin": tags: - config when: @@ -583423,10 +585014,10 @@ Train Simulator: installDir: RailWorks: {} launch: - /RailWorks.exe: + "/RailWorks.exe": - when: - store: steam - /Railworks64.exe: + "/Railworks64.exe": - when: - store: steam steam: @@ -583435,7 +585026,7 @@ Train Simulator Railroad Operator: installDir: railroadoperator: {} launch: - /railroadoperator.exe: + "/railroadoperator.exe": - when: - os: windows store: steam @@ -583446,11 +585037,11 @@ Train Simulator VR: tsvr: {} steam: id: 719600 -'Train Simulator: London Subway': +"Train Simulator: London Subway": installDir: Train Simulator London Subway: {} launch: - /TrainSimulatorLondonSubway.exe: + "/TrainSimulatorLondonSubway.exe": - when: - os: windows store: steam @@ -583458,12 +585049,12 @@ Train Simulator VR: id: 881730 Train Station Renovation: files: - /AppData/LocalLow/Live Motion Games/TrainStationRenovation: + "/AppData/LocalLow/Live Motion Games/TrainStationRenovation": tags: - config when: - os: windows - /AppData/LocalLow/Live Motion Games/TrainStationRenovation/Save: + "/AppData/LocalLow/Live Motion Games/TrainStationRenovation/Save": tags: - save when: @@ -583477,7 +585068,7 @@ Train Station Renovation: installDir: Train Station Renovation: {} launch: - /TSR_STEAM.exe: + "/TSR_STEAM.exe": - when: - store: steam steam: @@ -583486,15 +585077,15 @@ Train Station Simulator: installDir: Train Station Simulator: {} launch: - /Train_Station_Simulator.app: + "/Train_Station_Simulator.app": - when: - os: mac store: steam - /Train_Station_Simulator.exe: + "/Train_Station_Simulator.exe": - when: - os: windows store: steam - /run.sh: + "/run.sh": - when: - os: linux store: steam @@ -583504,7 +585095,7 @@ Train Town: installDir: Train Town: {} launch: - /TrainTown.exe: + "/TrainTown.exe": - when: - os: windows store: steam @@ -583512,12 +585103,12 @@ Train Town: id: 320110 Train Valley: files: - /userdata//353640/remote/train-valley-storage.txt: + "/userdata//353640/remote/train-valley-storage.txt": tags: - save when: - store: steam - /unity3d/Oroboro games/Train Valley: + "/unity3d/Oroboro games/Train Valley": tags: - config when: @@ -583526,28 +585117,28 @@ Train Valley: id: 1232053269 id: gogExtra: - - 1884846567 - 1127587102 + - 1884846567 steamExtra: - 459120 - 492480 installDir: Train Valley: {} launch: - /train-valley.app: + "/train-valley.app": - when: - os: mac store: steam - /train-valley.exe: + "/train-valley.exe": - when: - os: windows store: steam - /train-valley.x86: + "/train-valley.x86": - when: - bit: 32 os: linux store: steam - /train-valley.x86_64: + "/train-valley.x86_64": - when: - bit: 64 os: linux @@ -583561,7 +585152,7 @@ Train Valley: id: 353640 Train Valley 2: files: - /userdata//602320/remote/train-valley-2-data.txt: + "/userdata//602320/remote/train-valley-2-data.txt": tags: - save when: @@ -583570,14 +585161,14 @@ Train Valley 2: id: 1705092808 id: gogExtra: - - 1748366068 - 1139053242 - - 1285705971 - 1220765826 - 1246709478 + - 1285705971 - 1677578821 - - 2004634290 + - 1748366068 - 1920011177 + - 2004634290 steamExtra: - 1154780 - 1874870 @@ -583588,16 +585179,19 @@ Train Valley 2: installDir: Train Valley 2: {} launch: - /TrainValley2.app: + "/TrainValley2.app": - when: - os: mac store: steam - /TrainValley2.exe: + "/TrainValley2.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam - /TrainValley2.x86_64: + "/TrainValley2.x86_64": - when: - bit: 64 os: linux @@ -583613,7 +585207,7 @@ Train of Afterlife: installDir: Train of Afterlife: {} launch: - /toa.exe: + "/toa.exe": - when: - os: windows store: steam @@ -583628,7 +585222,7 @@ Trainiac: installDir: Trainiac: {} launch: - /Trainiac.exe: + "/Trainiac.exe": - when: - store: steam steam: @@ -583637,7 +585231,7 @@ Training aim: installDir: Trainingaim: {} launch: - /TrainingAim.exe: + "/TrainingAim.exe": - when: - os: windows store: steam @@ -583647,7 +585241,7 @@ Trainpunk Run: installDir: TrainpunkRun: {} launch: - /TrainpunkRun180305.exe: + "/TrainpunkRun180305.exe": - when: - bit: 64 os: windows @@ -583658,11 +585252,11 @@ Trains & Things: installDir: Trains And Things: {} launch: - /TrainsAndThings_Linux.sh: + "/TrainsAndThings_Linux.sh": - when: - os: linux store: steam - /TrainsAndThings_Windows.exe: + "/TrainsAndThings_Windows.exe": - when: - os: windows store: steam @@ -583677,11 +585271,11 @@ Trains of the Orient: installDir: Trains of the Orient: {} launch: - /Trains of the Orient.app/Contents/MacOS/Trains of the Orient: + "/Trains of the Orient.app/Contents/MacOS/Trains of the Orient": - when: - os: mac store: steam - /Trains of the Orient.exe: + "/Trains of the Orient.exe": - when: - os: windows store: steam @@ -583696,7 +585290,7 @@ Trainspotting Simulator: installDir: Trainspotting Simulator: {} launch: - /train sim.exe: + "/train sim.exe": - when: - os: windows store: steam @@ -583706,7 +585300,7 @@ Trainz Driver 2016: installDir: Trainz Driver 2016: {} launch: - /TD2016.exe: + "/TD2016.exe": - when: - os: windows store: steam @@ -583716,11 +585310,11 @@ Trainz Railroad Simulator 2019: installDir: Trainz Railroad Simulator 2019: {} launch: - /TRS19.app/Contents/MacOS/Trainz Railroad Simulator 2019: + "/TRS19.app/Contents/MacOS/Trainz Railroad Simulator 2019": - when: - os: mac store: steam - /TRS19.exe: + "/TRS19.exe": - when: - bit: 64 os: windows @@ -583731,7 +585325,7 @@ Trainz Settle and Carlisle: installDir: Trainz Sim 2010: {} launch: - /trainz.exe: + "/trainz.exe": - when: - store: steam steam: @@ -583740,16 +585334,16 @@ Trainz Simulator 12: installDir: TS2012: {} launch: - /trainz.exe: + "/trainz.exe": - when: - store: steam steam: id: 24670 -'Trainz Simulator 2010: Engineers Edition': +"Trainz Simulator 2010: Engineers Edition": installDir: Trainz Sim 2010: {} launch: - /trainz.exe: + "/trainz.exe": - when: - store: steam steam: @@ -583758,42 +585352,42 @@ Trainz Trouble: installDir: Trainz Trouble: {} launch: - /Trainz Trouble.exe: + "/Trainz Trouble.exe": - when: - os: windows store: steam steam: id: 319300 -'Trainz: A New Era': +"Trainz: A New Era": installDir: Trainz A New Era: {} launch: - /Trainz A New Era.app: + "/Trainz A New Era.app": - when: - bit: 64 os: mac store: steam - /tane.exe: + "/tane.exe": - when: - bit: 64 os: windows store: steam steam: id: 315660 -'Trainz: Classic Cabon City': +"Trainz: Classic Cabon City": installDir: Trainz Sim 2010: {} launch: - /trainz.exe: + "/trainz.exe": - when: - store: steam steam: id: 24640 -'Trainz: Murchison 2': +"Trainz: Murchison 2": installDir: Trainz Sim 2010: {} launch: - /trainz.exe: + "/trainz.exe": - when: - store: steam steam: @@ -583802,16 +585396,16 @@ Traiteur: installDir: Evangeline™: {} launch: - /Evangeline.app: + "/Evangeline.app": - when: - os: mac store: steam - /Evangeline.exe: + "/Evangeline.exe": - when: - os: windows store: steam - /Evangeline.x86: - - arguments: '-force-opengl' + "/Evangeline.x86": + - arguments: "-force-opengl" when: - os: linux store: steam @@ -583821,14 +585415,14 @@ Trajectory: installDir: Trajectory: {} launch: - /Trajectory/Trajectory.exe: + "/Trajectory/Trajectory.exe": - when: - bit: 64 os: windows store: steam steam: id: 592620 -'Trajes Fatais: Suits of Fate': +"Trajes Fatais: Suits of Fate": steam: id: 953310 Trakker: @@ -583840,7 +585434,7 @@ Trancelation: installDir: Trancelation: {} launch: - /Trancelation.exe: + "/Trancelation.exe": - when: - bit: 64 os: windows @@ -583851,15 +585445,15 @@ Tranject: installDir: Tranject: {} launch: - /Mac OS X.app: + "/Mac OS X.app": - when: - os: mac store: steam - /Tranject.exe: + "/Tranject.exe": - when: - os: windows store: steam - /Tranject.x86_64: + "/Tranject.x86_64": - when: - bit: 64 os: linux @@ -583870,22 +585464,22 @@ Tranquil Garden: installDir: Tranquil Garden: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam steam: id: 891520 -'Tranquility Base Mining Colony: The Moon - Explorer Version': +"Tranquility Base Mining Colony: The Moon - Explorer Version": installDir: Tranquility Base Mining Colony The Moon - Explorer Version: {} launch: - /TBMC_Explorer32.exe: + "/TBMC_Explorer32.exe": - when: - bit: 32 os: windows store: steam - /TBMC_Explorer64.exe: + "/TBMC_Explorer64.exe": - when: - bit: 64 os: windows @@ -583895,23 +585489,23 @@ Tranquil Garden: Trans-Siberian Railway Simulator: steam: id: 998400 -'TransOcean 2: Rivals': +"TransOcean 2: Rivals": installDir: TransOcean2: {} launch: - /TransOcean2.app: + "/TransOcean2.app": - when: - os: mac store: steam - /TransOcean2.exe: + "/TransOcean2.exe": - when: - os: windows store: steam steam: id: 350110 -'TransOcean: The Shipping Company': +"TransOcean: The Shipping Company": files: - /TransOcean/Savegames/*.sav: + "/TransOcean/Savegames/*.sav": tags: - save when: @@ -583919,11 +585513,11 @@ Trans-Siberian Railway Simulator: installDir: TransOcean - The Shipping Company: {} launch: - /TransOcean.app: + "/TransOcean.app": - when: - os: mac store: steam - /TransOcean.exe: + "/TransOcean.exe": - when: - os: windows store: steam @@ -583937,29 +585531,29 @@ TransPlan: installDir: TransPlan: {} launch: - /TransPlan.app: + "/TransPlan.app": - when: - os: mac store: steam - /TransPlan.exe: + "/TransPlan.exe": - when: - os: windows store: steam - /TransPlan.x86: + "/TransPlan.x86": - when: - bit: 32 os: linux store: steam - /TransPlan.x86_64: + "/TransPlan.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 374410 -'TransRoad: USA': +"TransRoad: USA": files: - /AppData/LocalLow/Deck 13 Hamburg/TransRoadUSA/TransRoad/Savegames: + "/AppData/LocalLow/Deck 13 Hamburg/TransRoadUSA/TransRoad/Savegames": tags: - save when: @@ -583967,11 +585561,11 @@ TransPlan: installDir: TransRoad USA: {} launch: - /TransRoadUSA.app: + "/TransRoadUSA.app": - when: - os: mac store: steam - /TransRoadUSA.exe: + "/TransRoadUSA.exe": - when: - bit: 64 os: windows @@ -583980,12 +585574,12 @@ TransPlan: id: 494670 Transarctica: files: - /*.SAV: + "/*.SAV": tags: - save when: - os: dos - /START.STP: + "/START.STP": tags: - config when: @@ -583994,7 +585588,7 @@ Transcend: installDir: TRANSCEND: {} launch: - /TRANSCEND.exe: + "/TRANSCEND.exe": - when: - os: windows store: steam @@ -584002,12 +585596,12 @@ Transcend: id: 760860 Transcendence: files: - /Games: + "/Games": tags: - save when: - os: windows - /Settings.xml: + "/Settings.xml": tags: - config when: @@ -584015,7 +585609,7 @@ Transcendence: installDir: Transcendence: {} launch: - /transcendence.exe: + "/transcendence.exe": - when: - os: windows store: steam @@ -584025,7 +585619,7 @@ Transcender Starship: installDir: Transcender Starship: {} launch: - /TranscenderStarship.exe: + "/TranscenderStarship.exe": - when: - os: windows store: steam @@ -584035,11 +585629,11 @@ Transcripted: installDir: transcripted: {} launch: - /Transcripted.app: + "/Transcripted.app": - when: - os: mac store: steam - /Transcripted.exe: + "/Transcripted.exe": - when: - os: windows store: steam @@ -584049,8 +585643,8 @@ Transference: installDir: Transference: {} launch: - /Transference.exe: - - arguments: '-Retail Steam -uplay_steam_mode' + "/Transference.exe": + - arguments: "-Retail Steam -uplay_steam_mode" when: - store: steam steam: @@ -584059,12 +585653,12 @@ Transformation Tycoon: installDir: Transformation Tycoon: {} launch: - /Transformation Tycoon.exe: + "/Transformation Tycoon.exe": - when: - store: steam steam: id: 1799850 -'Transformers: Battlegrounds': +"Transformers: Battlegrounds": id: steamExtra: - 1315400 @@ -584075,7 +585669,7 @@ Transformation Tycoon: installDir: Transformers: {} launch: - /Transformers.exe: + "/Transformers.exe": - when: - os: windows store: steam @@ -584085,14 +585679,14 @@ Transformation Tycoon: - config steam: id: 1177000 -'Transformers: Devastation': +"Transformers: Devastation": files: - /TRANSFORMERS_Devastation/GameData.dat: + "/TRANSFORMERS_Devastation/GameData.dat": tags: - save when: - os: windows - /TRANSFORMERS_Devastation/SystemData.dat: + "/TRANSFORMERS_Devastation/SystemData.dat": tags: - config when: @@ -584100,7 +585694,7 @@ Transformation Tycoon: installDir: TRANSFORMERS - Devastation: {} launch: - /TransformersDevastation.exe: + "/TransformersDevastation.exe": - when: - store: steam registry: @@ -584109,19 +585703,19 @@ Transformation Tycoon: - config steam: id: 338930 -'Transformers: Fall of Cybertron': +"Transformers: Fall of Cybertron": files: - /TransGame/Config/PC/Cooked: + "/TransGame/Config/PC/Cooked": tags: - config when: - os: windows - /TransGame/Localization/PC/Cooked: + "/TransGame/Localization/PC/Cooked": tags: - config when: - os: windows - /TransGame/SaveData: + "/TransGame/SaveData": tags: - save when: @@ -584129,7 +585723,7 @@ Transformation Tycoon: installDir: Transformers Fall of Cybertron: {} launch: - /binaries/TFOC.exe: + "/binaries/TFOC.exe": - when: - store: steam registry: @@ -584138,9 +585732,9 @@ Transformation Tycoon: - config steam: id: 213120 -'Transformers: Revenge of the Fallen': +"Transformers: Revenge of the Fallen": files: - /My Games/Activision/Transfomers2/Saved Games: + "/My Games/Activision/Transfomers2/Saved Games": tags: - save when: @@ -584149,19 +585743,19 @@ Transformation Tycoon: HKEY_CURRENT_USER/SOFTWARE/Activision/Transformers2/Settings: tags: - config -'Transformers: Rise of the Dark Spark': +"Transformers: Rise of the Dark Spark": files: - /TransGame/Config/PC/Cooked: + "/TransGame/Config/PC/Cooked": tags: - config when: - os: windows - /TransGame/Localization/PC/Cooked: + "/TransGame/Localization/PC/Cooked": tags: - config when: - os: windows - /My Games/TransformersRotDS/TransGame/SaveData: + "/My Games/TransformersRotDS/TransGame/SaveData": tags: - save when: @@ -584169,37 +585763,37 @@ Transformation Tycoon: installDir: Transformers - Rise of the Dark Spark: {} launch: - /Binaries/TransGame.exe: + "/Binaries/TransGame.exe": - when: - store: steam - workingDir: /Binaries + workingDir: "/Binaries" registry: HKEY_CURRENT_USER/SOFTWARE/Activision/Transformers - Rise of the Dark Spark: tags: - config steam: id: 245760 -'Transformers: The Game': +"Transformers: The Game": files: - /My Games/Activision/Transformers: + "/My Games/Activision/Transformers": tags: - config - save when: - os: windows -'Transformers: War for Cybertron': +"Transformers: War for Cybertron": files: - /TransGame/Config/PC/Cooked: + "/TransGame/Config/PC/Cooked": tags: - config when: - os: windows - /TransGame/Localization/PC/Cooked: + "/TransGame/Localization/PC/Cooked": tags: - config when: - os: windows - /My Games/Transformers/TransGame/SaveData: + "/My Games/Transformers/TransGame/SaveData": tags: - save when: @@ -584207,7 +585801,7 @@ Transformation Tycoon: installDir: Transformers War for Cybertron: {} launch: - /Binaries/TWFC.exe: + "/Binaries/TWFC.exe": - when: - store: steam registry: @@ -584220,15 +585814,15 @@ Transformice: installDir: Transformice: {} launch: - /Transformice.app: + "/Transformice.app": - when: - os: mac store: steam - /Transformice.exe: + "/Transformice.exe": - when: - os: windows store: steam - /transformice.sh: + "/transformice.sh": - when: - os: linux store: steam @@ -584241,11 +585835,11 @@ Transhaping: installDir: Transhaping: {} launch: - /Transhaping.exe: + "/Transhaping.exe": - when: - os: windows store: steam - /transhaping.app: + "/transhaping.app": - when: - os: mac store: steam @@ -584253,12 +585847,12 @@ Transhaping: id: 1028950 Transient: files: - /Transient/Saved/Config/WindowsNoEditor: + "/Transient/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /Transient/Saved/SaveGames: + "/Transient/Saved/SaveGames": tags: - save when: @@ -584268,7 +585862,7 @@ Transient: installDir: Transient: {} launch: - /Transient.exe: + "/Transient.exe": - when: - bit: 64 os: windows @@ -584277,17 +585871,17 @@ Transient: id: 962630 Transiruby: files: - /AppData/LocalLow/Flyhigh Works/Transiruby/config*: + "/AppData/LocalLow/Flyhigh Works/Transiruby/config*": tags: - config when: - os: windows - /AppData/LocalLow/Flyhigh Works/Transiruby/general*: + "/AppData/LocalLow/Flyhigh Works/Transiruby/general*": tags: - config when: - os: windows - /AppData/LocalLow/Flyhigh Works/Transiruby/play*: + "/AppData/LocalLow/Flyhigh Works/Transiruby/play*": tags: - save when: @@ -584295,8 +585889,8 @@ Transiruby: installDir: Transiruby: {} launch: - /Transiruby.exe: - - arguments: '-force-gfx-direct' + "/Transiruby.exe": + - arguments: "-force-gfx-direct" when: - os: windows store: steam @@ -584304,25 +585898,25 @@ Transiruby: id: 1522930 Transistor: files: - /Library/Application Support/Transistor: + "/Library/Application Support/Transistor": tags: - config - save when: - os: mac - /userdata//237930: + "/userdata//237930": tags: - config - save when: - store: steam - /Saved Games/Transistor: + "/Saved Games/Transistor": tags: - config - save when: - os: windows - /Transistor: + "/Transistor": tags: - config - save @@ -584333,28 +585927,28 @@ Transistor: installDir: Transistor: {} launch: - /Transistor: + "/Transistor": - when: - os: linux store: steam - /Transistor.app/Contents/MacOS/Transistor: + "/Transistor.app/Contents/MacOS/Transistor": - when: - os: mac store: steam - /x64/Transistor.exe: - - arguments: /c ..\\ + "/x64/Transistor.exe": + - arguments: "/c ..\\\\" when: - bit: 64 os: windows store: steam - workingDir: /x64 - /x86/Transistor.exe: - - arguments: /c ..\\ + workingDir: "/x64" + "/x86/Transistor.exe": + - arguments: "/c ..\\\\" when: - bit: 32 os: windows store: steam - workingDir: /x86 + workingDir: "/x86" steam: id: 237930 Transition to Adulthood: @@ -584363,14 +585957,14 @@ Transition to Adulthood: Transmission: steam: id: 509950 -'Transmissions: Element 120': +"Transmissions: Element 120": files: - /te120/cfg: + "/te120/cfg": tags: - config when: - os: windows - /te120/save: + "/te120/save": tags: - save when: @@ -584378,13 +585972,13 @@ Transmission: installDir: Transmissions Element 120: {} launch: - /hl2.exe: - - arguments: '-game te120' + "/hl2.exe": + - arguments: "-game te120" when: - os: windows store: steam - /hl2.sh: - - arguments: '-game te120' + "/hl2.sh": + - arguments: "-game te120" when: - os: linux store: steam @@ -584394,11 +585988,11 @@ Transmogrify: installDir: Transmogrify: {} launch: - /Transmogrify.exe: + "/Transmogrify.exe": - when: - os: windows store: steam - /Transmogrify.x86_64: + "/Transmogrify.x86_64": - when: - os: linux store: steam @@ -584411,14 +586005,14 @@ Transparent Black: installDir: TransparentBlack: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: id: 687830 Transport Defender: files: - /LocalLow/CoconutShavers/TransportDefender: + "/LocalLow/CoconutShavers/TransportDefender": tags: - save when: @@ -584426,7 +586020,7 @@ Transport Defender: installDir: Transport Defender: {} launch: - /td.exe: + "/td.exe": - when: - os: windows store: steam @@ -584434,37 +586028,37 @@ Transport Defender: id: 685310 Transport Fever: files: - /.local/share/Transport Fever/save: + "/.local/share/Transport Fever/save": tags: - save when: - os: linux - /.local/share/Transport Fever/settings.lua: + "/.local/share/Transport Fever/settings.lua": tags: - config when: - os: linux - /Library/Application Support/Steam/userdata//446800/local/save: + "/Library/Application Support/Steam/userdata//446800/local/save": tags: - save when: - os: mac - /userdata//446800/local/save: + "/userdata//446800/local/save": tags: - save when: - store: steam - /userdata//446800/local/settings.lua: + "/userdata//446800/local/settings.lua": tags: - config when: - store: steam - /Transport Fever/save: + "/Transport Fever/save": tags: - save when: - os: windows - /Transport Fever/settings.lua: + "/Transport Fever/settings.lua": tags: - config when: @@ -584474,59 +586068,61 @@ Transport Fever: installDir: Transport Fever: {} launch: - /TransportFever.exe: + "/TransportFever.exe": - when: - os: windows store: steam - /run.sh: + "/run.sh": - when: + - os: mac + store: steam - os: linux store: steam steam: id: 446800 Transport Fever 2: files: - /.local/share/Transport Fever 2/profile.lua: + "/.local/share/Transport Fever 2/profile.lua": tags: - save when: - os: linux - /.local/share/Transport Fever 2/save: + "/.local/share/Transport Fever 2/save": tags: - save when: - os: linux - /.local/share/Transport Fever 2/settings.lua: + "/.local/share/Transport Fever 2/settings.lua": tags: - config when: - os: linux - /userdata//1066780/local/profile.lua: + "/userdata//1066780/local/profile.lua": tags: - save when: - store: steam - /userdata//1066780/local/save: + "/userdata//1066780/local/save": tags: - save when: - store: steam - /userdata//1066780/local/settings.lua: + "/userdata//1066780/local/settings.lua": tags: - config when: - store: steam - /Transport Fever 2/profile.lua: + "/Transport Fever 2/profile.lua": tags: - save when: - os: windows - /Transport Fever 2/save: + "/Transport Fever 2/save": tags: - save when: - os: windows - /Transport Fever 2/settings.lua: + "/Transport Fever 2/settings.lua": tags: - config when: @@ -584536,14 +586132,16 @@ Transport Fever 2: installDir: Transport Fever 2: {} launch: - /TransportFever2.exe: + "/TransportFever2.exe": - when: - os: windows store: steam - /run.sh: + "/run.sh": - when: - os: mac store: steam + - os: linux + store: steam steam: id: 1066780 Transport Giant: @@ -584552,7 +586150,7 @@ Transport Giant: installDir: Transport Giant: {} launch: - /transportgiant.exe: + "/transportgiant.exe": - when: - os: windows store: steam @@ -584562,11 +586160,11 @@ Transport INC: installDir: Transport INC: {} launch: - /TransportInc.app: + "/TransportInc.app": - when: - os: mac store: steam - /TransportInc.exe: + "/TransportInc.exe": - when: - os: windows store: steam @@ -584576,20 +586174,20 @@ Transport Services: installDir: Transport Services: {} launch: - /Transport services.app: + "/Transport services.app": - when: - os: mac store: steam - /Transport services.exe: + "/Transport services.exe": - when: - os: windows store: steam - /Transport_services.x86: + "/Transport_services.x86": - when: - bit: 32 os: linux store: steam - /Transport_services.x86_64: + "/Transport_services.x86_64": - when: - bit: 64 os: linux @@ -584600,7 +586198,7 @@ Transporter Truck Simulator: installDir: Transporter Truck Simulator: {} launch: - /Transporter Truck Simulator.exe: + "/Transporter Truck Simulator.exe": - when: - os: windows store: steam @@ -584610,7 +586208,7 @@ Transports: installDir: Transports: {} launch: - /Transports.exe: + "/Transports.exe": - when: - bit: 64 os: windows @@ -584619,7 +586217,7 @@ Transports: id: 659920 Transpose: files: - /AppData/LocalLow/Secret Location/Transpose/saves/*.json: + "/AppData/LocalLow/Secret Location/Transpose/saves/*.json": tags: - save when: @@ -584628,18 +586226,18 @@ Transpose: Transpose: {} steam: id: 835950 -'Trantor: The Last Stormtrooper': +"Trantor: The Last Stormtrooper": gog: id: 1199632771 installDir: Trantor: {} launch: - /dosbox_windows/dosbox.exe: - - arguments: \"TRANTOR2.EXE\" -conf \"dosbox_trantor.conf\" -noconsole + "/dosbox_windows/dosbox.exe": + - arguments: "\\\"TRANTOR2.EXE\\\" -conf \\\"dosbox_trantor.conf\\\" -noconsole" when: - os: windows store: steam - /runTrantor.sh: + "/runTrantor.sh": - when: - os: linux store: steam @@ -584654,8 +586252,8 @@ Trap: installDir: Trap: {} launch: - /Game.exe: - - arguments: '--in-process-gpu' + "/Game.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam @@ -584665,7 +586263,7 @@ Trap Defense: installDir: Trap Defense: {} launch: - /Trap Defense.exe: + "/Trap Defense.exe": - when: - bit: 64 os: windows @@ -584678,7 +586276,7 @@ Trap Genesis: installDir: Trap Genesis: {} launch: - /Jyosou_Souseiki.exe: + "/Jyosou_Souseiki.exe": - when: - store: steam steam: @@ -584687,11 +586285,11 @@ Trap House: installDir: Trap House: {} launch: - /TrapHouse.exe: + "/TrapHouse.exe": - when: - os: windows store: steam - /game.exe: + "/game.exe": - when: - store: steam steam: @@ -584700,11 +586298,11 @@ Trap Labs: installDir: Trap Labs: {} launch: - /TrapLabs-desktop.app: + "/TrapLabs-desktop.app": - when: - os: mac store: steam - /TrapLabs.exe: + "/TrapLabs.exe": - when: - bit: 32 os: windows @@ -584717,7 +586315,7 @@ Trap Legend: installDir: Trap Legend: {} launch: - /jyosou_shinwa.exe: + "/jyosou_shinwa.exe": - when: - store: steam steam: @@ -584728,7 +586326,7 @@ Trap Shrine: installDir: Trap Shrine: {} launch: - /josou_jinjya.exe: + "/josou_jinjya.exe": - when: - store: steam steam: @@ -584737,7 +586335,7 @@ Trap Them: installDir: Trap Them: {} launch: - /Trap Them.exe: + "/Trap Them.exe": - when: - os: windows store: steam @@ -584747,7 +586345,7 @@ Trap Them - Sniper Edition: installDir: Trap Them - Sniper Edition: {} launch: - /Trap Them - Sniper Edition.exe: + "/Trap Them - Sniper Edition.exe": - when: - os: windows store: steam @@ -584757,11 +586355,11 @@ Trap for Winners: installDir: Trap for Winners: {} launch: - /Trap for Winners.app/Contents/MacOS/Trap for Winners: + "/Trap for Winners.app/Contents/MacOS/Trap for Winners": - when: - os: mac store: steam - /TrapForWinners.exe: + "/TrapForWinners.exe": - when: - os: windows store: steam @@ -584771,7 +586369,7 @@ Trapped: installDir: Trapped: {} launch: - /Trapped.exe: + "/Trapped.exe": - when: - os: windows store: steam @@ -584781,27 +586379,27 @@ Trapped Dead: installDir: Trapped Dead: {} launch: - /bin/TrappedDead.exe: + "/bin/TrappedDead.exe": - when: - store: steam steam: id: 46540 -'Trapped Dead: Lockdown': +"Trapped Dead: Lockdown": installDir: TrappedDeadLockdown: {} launch: - /TrappedDeadLockdown.app: + "/TrappedDeadLockdown.app": - arguments: 1234 9876 when: - bit: 64 os: mac store: steam - /TrappedDeadLockdown.exe: + "/TrappedDeadLockdown.exe": - arguments: 1234 9876 when: - os: windows store: steam - /TrappedDeadLockdown.x86_64: + "/TrappedDeadLockdown.x86_64": - arguments: 1234 9876 when: - bit: 64 @@ -584813,7 +586411,7 @@ Trapped Summoner: installDir: Trapped Summoner: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -584828,7 +586426,7 @@ Trapped Within: installDir: Trapped Within: {} launch: - /Trapped Within.exe: + "/Trapped Within.exe": - when: - os: windows store: steam @@ -584838,8 +586436,11 @@ Trapped in Fear: installDir: Trapped in Fear: {} launch: - /Trapped in Fear.exe: + "/Trapped in Fear.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam @@ -584849,7 +586450,7 @@ Trapped on Monster Island: installDir: Trapped on Monster Island: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -584859,21 +586460,21 @@ Trapper: installDir: Trapper: {} launch: - /Trapper.exe: + "/Trapper.exe": - when: - os: windows store: steam steam: id: 873530 -'Trapper Knight, Sharpshooter Princess': +"Trapper Knight, Sharpshooter Princess": installDir: Trapper Knight Sharpshooter Princess: {} launch: - /Wanahime: + "/Wanahime": - when: - os: linux store: steam - /wanahime.exe: + "/wanahime.exe": - when: - os: windows store: steam @@ -584882,15 +586483,15 @@ Trapper: Trapper Simulator: steam: id: 1149770 -Trapper's Delight: +"Trapper's Delight": installDir: - Trapper's Delight: {} + "Trapper's Delight": {} launch: - /TrappersDelight.app/Contents/MacOS/TrappersDelight: + "/TrappersDelight.app/Contents/MacOS/TrappersDelight": - when: - os: mac store: steam - /TrappersDelight.exe: + "/TrappersDelight.exe": - when: - os: windows store: steam @@ -584900,18 +586501,18 @@ Traps Ahead!: installDir: Traps Ahead!: {} launch: - /TrapsAhead!.exe: + "/TrapsAhead!.exe": - when: - bit: 64 os: windows store: steam steam: id: 1169630 -Traps N' Gemstones: +"Traps N' Gemstones": installDir: Traps N Gemstones: {} launch: - /TrapsNGemstones.exe: + "/TrapsNGemstones.exe": - when: - os: windows store: steam @@ -584919,7 +586520,7 @@ Traps N' Gemstones: id: 355140 Trash Bomber: files: - /LocalLow/Khud0/Trash Bomber: + "/LocalLow/Khud0/Trash Bomber": tags: - save when: @@ -584927,7 +586528,7 @@ Trash Bomber: installDir: Trash Bomber: {} launch: - /Trash Bomber.exe: + "/Trash Bomber.exe": - when: - store: steam steam: @@ -584943,7 +586544,7 @@ Trash Sailors: installDir: Trash Sailors: {} launch: - /Trash Sailors.exe: + "/Trash Sailors.exe": - when: - os: windows store: steam @@ -584953,16 +586554,16 @@ Trash Squad: installDir: Trash Squad: {} launch: - /TrashSquad.exe: + "/TrashSquad.exe": - when: - os: windows store: steam - /TrashSquad.x86: + "/TrashSquad.x86": - when: - bit: 32 os: linux store: steam - /TrashSquad.x86_64: + "/TrashSquad.x86_64": - when: - bit: 64 os: linux @@ -584973,7 +586574,7 @@ Trash Story: installDir: Trash Story: {} launch: - /TrashStory.exe: + "/TrashStory.exe": - when: - store: steam steam: @@ -584982,7 +586583,7 @@ Trash TV: installDir: Trash TV: {} launch: - /TrashTV.exe: + "/TrashTV.exe": - when: - store: steam steam: @@ -585002,7 +586603,7 @@ Trasta: installDir: Trasta: {} launch: - /Trasta.exe: + "/Trasta.exe": - when: - os: windows store: steam @@ -585012,15 +586613,15 @@ Tratel 64: installDir: TRATEL64: {} launch: - /TRATEL64!.exe: + "/TRATEL64!.exe": - when: - os: windows store: steam - /t64.x86: + "/t64.x86": - when: - os: linux store: steam - /t64macOS.app/Contents/MacOS/t64macOS: + "/t64macOS.app/Contents/MacOS/t64macOS": - when: - os: mac store: steam @@ -585030,8 +586631,8 @@ Traum: installDir: Traum: {} launch: - /Game.exe: - - arguments: '--in-process-gpu' + "/Game.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam @@ -585039,12 +586640,12 @@ Traum: id: 810230 Trauma: files: - /trauma_system.xml: + "/trauma_system.xml": tags: - config when: - os: windows - /Macromedia/Flash Player/#SharedObjects//localhost/trauma.sol: + "/Macromedia/Flash Player/#SharedObjects//localhost/trauma.sol": tags: - save when: @@ -585052,11 +586653,11 @@ Trauma: installDir: TRAUMA: {} launch: - /trauma.app: + "/trauma.app": - when: - os: mac store: steam - /trauma.exe: + "/trauma.exe": - when: - os: windows store: steam @@ -585067,89 +586668,89 @@ Trauma Simulator: Trauma Simulator: {} steam: id: 1169340 -'Travel Mosaics 10: Spooky Halloween': +"Travel Mosaics 10: Spooky Halloween": installDir: Travel Mosaics 10 Spooky Halloween: {} launch: - /TravelMosaics10_SpookyHalloween.app: + "/TravelMosaics10_SpookyHalloween.app": - when: - os: mac store: steam - /TravelMosaics10_SpookyHalloween.exe: + "/TravelMosaics10_SpookyHalloween.exe": - when: - os: windows store: steam steam: id: 1174320 -'Travel Mosaics 6: Christmas Around the World': +"Travel Mosaics 6: Christmas Around the World": installDir: Travel Mosaics A Paris Tour: {} launch: - /TravelMosaics6_ChristmasAroundTheWorld.app: + "/TravelMosaics6_ChristmasAroundTheWorld.app": - when: - os: mac store: steam - /TravelMosaics6_ChristmasAroundTheWorld.exe: + "/TravelMosaics6_ChristmasAroundTheWorld.exe": - when: - os: windows store: steam steam: id: 754830 -'Travel Riddles: Mahjong': +"Travel Riddles: Mahjong": installDir: Travel Riddles Mahjong: {} launch: - /mahjong.exe: + "/mahjong.exe": - when: - bit: 32 os: windows store: steam - /mahjong64.exe: + "/mahjong64.exe": - when: - bit: 64 os: windows store: steam steam: id: 909430 -'Travel Riddles: Trip To France': +"Travel Riddles: Trip To France": installDir: Travel Riddles Trip To France: {} launch: - /france.exe: + "/france.exe": - when: - os: windows store: steam steam: id: 659940 -'Travel Riddles: Trip To Greece': +"Travel Riddles: Trip To Greece": installDir: Travel Riddles Trip To Greece: {} launch: - /greece.exe: + "/greece.exe": - when: - os: windows store: steam steam: id: 654520 -'Travel Riddles: Trip To India': +"Travel Riddles: Trip To India": installDir: Travel Riddles Trip To India: {} launch: - /TravelRiddlesTripToIndia.app/Contents/MacOS/TravelRiddlesTripToIndia: + "/TravelRiddlesTripToIndia.app/Contents/MacOS/TravelRiddlesTripToIndia": - when: - os: mac store: steam - /summer.exe: + "/summer.exe": - when: - os: windows store: steam steam: id: 604980 -'Travel Riddles: Trip To Italy': +"Travel Riddles: Trip To Italy": installDir: Travel Riddles Trip To Italy: {} launch: - /italy.exe: + "/italy.exe": - when: - os: windows store: steam @@ -585162,7 +586763,7 @@ Travel VR: id: 730090 Travellers Rest: files: - /AppData/LocalLow/Louqou/TravellersRest/GameSaves: + "/AppData/LocalLow/Louqou/TravellersRest/GameSaves": tags: - save when: @@ -585172,7 +586773,7 @@ Travellers Rest: installDir: Travellers Rest: {} launch: - /Windows/TravellersRest.exe: + "/Windows/TravellersRest.exe": - when: - os: windows store: steam @@ -585185,7 +586786,7 @@ Traverser: installDir: Traverser: {} launch: - /Binaries/Win32/Traverser.exe: + "/Binaries/Win32/Traverser.exe": - when: - os: windows store: steam @@ -585194,14 +586795,14 @@ Traverser: Travildorn: steam: id: 816750 -'Travis Strikes Again: No More Heroes': +"Travis Strikes Again: No More Heroes": files: - /TSANMH/Saved/Config/WindowsNoEditor: + "/TSANMH/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /TSANMH/Saved/SaveGames: + "/TSANMH/Saved/SaveGames": tags: - save when: @@ -585209,7 +586810,7 @@ Travildorn: installDir: TSANMH: {} launch: - /TSANMH/Binaries/Win64/TSANMH.exe: + "/TSANMH/Binaries/Win64/TSANMH.exe": - when: - bit: 64 os: windows @@ -585220,12 +586821,12 @@ Trawel: installDir: Trawel: {} launch: - /RunTrawel.bat: + "/RunTrawel.bat": - arguments: autoconnect when: - os: windows store: steam - /RunTrawel.sh: + "/RunTrawel.sh": - when: - os: linux store: steam @@ -585235,11 +586836,11 @@ Trawl: installDir: Trawl: {} launch: - /Trawl.app: + "/Trawl.app": - when: - os: mac store: steam - /Trawl.exe: + "/Trawl.exe": - when: - os: windows store: steam @@ -585252,12 +586853,12 @@ Treachery in Beatdown City: id: 762180 Treadnauts: files: - /AppData/LocalLow/TOPSTITCH GAMES/Treadnauts/save.tank: + "/AppData/LocalLow/TOPSTITCH GAMES/Treadnauts/save.tank": tags: - save when: - os: windows - /AppData/LocalLow/TOPSTITCH GAMES/Treadnauts/settings.mork: + "/AppData/LocalLow/TOPSTITCH GAMES/Treadnauts/settings.mork": tags: - config when: @@ -585265,11 +586866,11 @@ Treadnauts: installDir: Treadnauts: {} launch: - /Treadnauts.app: + "/Treadnauts.app": - when: - os: mac store: steam - /Treadnauts.exe: + "/Treadnauts.exe": - when: - os: windows store: steam @@ -585281,12 +586882,12 @@ Treadnauts: id: 695970 Treasure Adventure Game: files: - /config.ini: + "/config.ini": tags: - config when: - os: windows - /save_data: + "/save_data": tags: - save when: @@ -585295,12 +586896,12 @@ Treasure Adventure Game: id: 1207659013 Treasure Adventure World: files: - /RobitGames/TAW/config: + "/RobitGames/TAW/config": tags: - config when: - os: windows - /RobitGames/TAW/saves: + "/RobitGames/TAW/saves": tags: - save when: @@ -585310,7 +586911,7 @@ Treasure Adventure World: installDir: TreasureAdventureWorld: {} launch: - /taw_launcher.exe: + "/taw_launcher.exe": - when: - os: windows store: steam @@ -585330,11 +586931,11 @@ Treasure Fleet: installDir: Treasure Fleet: {} launch: - /TreasureFleet.exe: + "/TreasureFleet.exe": - when: - os: windows store: steam - /launch: + "/launch": - when: - bit: 64 os: linux @@ -585352,7 +586953,7 @@ Treasure Hunter Claire: installDir: Treasure Hunter Claire: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -585362,7 +586963,7 @@ Treasure Hunter Man 2: installDir: Treasure Hunter Man 2: {} launch: - /THM2.exe: + "/THM2.exe": - when: - os: windows store: steam @@ -585372,35 +586973,35 @@ Treasure Hunter Simulator: installDir: Treasure Hunter: {} launch: - /TH.exe: + "/TH.exe": - when: - bit: 64 os: windows store: steam steam: id: 748300 -'Treasure Masters, Inc.: The Lost City': +"Treasure Masters, Inc.: The Lost City": installDir: - 'Treasure Masters, Inc. The Lost City': {} + "Treasure Masters, Inc. The Lost City": {} launch: - /TreasureMasters2.exe: + "/TreasureMasters2.exe": - when: - os: windows store: steam steam: id: 1058940 -'Treasure Planet: Battle at Procyon': +"Treasure Planet: Battle at Procyon": installDir: Treasure Planet Battle at Procyon: {} launch: - /tp_win32.exe: + "/tp_win32.exe": - when: - store: steam steam: id: 331970 Treasure Stack: files: - /AppData/LocalLow/PIXELakes/Treasure Stack/save.dat: + "/AppData/LocalLow/PIXELakes/Treasure Stack/save.dat": tags: - save when: @@ -585408,7 +587009,7 @@ Treasure Stack: installDir: Treasure Stack: {} launch: - /Treasure Stack.exe: + "/Treasure Stack.exe": - when: - os: windows store: steam @@ -585418,7 +587019,7 @@ Treasure chest Corps-結界を維持するため、魔物を退治した: installDir: Treasure_chest_Corps: {} launch: - /Treasure chest Corps-結界を維持するため、魔物を退治した.exe: + "/Treasure chest Corps-結界を維持するため、魔物を退治した.exe": - when: - os: windows store: steam @@ -585428,33 +587029,35 @@ Treasure of a Blizzard: installDir: Treasure of a blizzard: {} launch: - /Treasure_of_a_blizzard.exe: + "/Treasure_of_a_blizzard.exe": - when: - os: windows store: steam - /Treasure_of_a_blizzard.sh: + "/Treasure_of_a_blizzard.sh": - when: - os: mac store: steam + - os: linux + store: steam steam: id: 508260 -'Treasures of the Ancients: Egypt': +"Treasures of the Ancients: Egypt": installDir: TotA-Egypt: {} launch: - /tota_egypt.exe: + "/tota_egypt.exe": - when: - store: steam steam: id: 866150 Treasures of the Savage Frontier: files: - /SAVE: + "/SAVE": tags: - save when: - os: dos - /TREASURE.CFG: + "/TREASURE.CFG": tags: - config when: @@ -585467,11 +587070,11 @@ Trebuchet: installDir: TREBUCHET game: {} launch: - /TREBUCHET_game.app: + "/TREBUCHET_game.app": - when: - os: mac store: steam - /TREBUCHET_game.exe: + "/TREBUCHET_game.exe": - when: - os: windows store: steam @@ -585481,7 +587084,7 @@ Tree: installDir: Tree: {} launch: - /Tree.exe: + "/Tree.exe": - when: - bit: 64 os: windows @@ -585492,7 +587095,7 @@ Tree Simulator 2020: installDir: Tree Simulator 2020: {} launch: - /TreeSimulator2020.exe: + "/TreeSimulator2020.exe": - when: - os: windows store: steam @@ -585502,22 +587105,22 @@ Tree of Life: installDir: TreeOfLife: {} launch: - /Client2/Launcher.exe: + "/Client2/Launcher.exe": - arguments: NEWSTART ENABLE_REDSHELL when: - os: windows store: steam - workingDir: /Client2 + workingDir: "/Client2" steam: id: 361800 -'Tree of Life: Oddria!': +"Tree of Life: Oddria!": steam: id: 1149450 Tree of Savior: installDir: TreeOfSavior: {} launch: - /release/patch/tos.exe: + "/release/patch/tos.exe": - when: - os: windows store: steam @@ -585527,11 +587130,11 @@ Tree.Bonsai: installDir: Tree.Bonsai: {} launch: - /Tree.Bonsai.app/Contents/MacOS/Tree.Bonsai: + "/Tree.Bonsai.app/Contents/MacOS/Tree.Bonsai": - when: - os: mac store: steam - /Tree.Bonsai.exe: + "/Tree.Bonsai.exe": - when: - os: windows store: steam @@ -585546,16 +587149,16 @@ Treehouse Riddle: installDir: Treehouse Riddle: {} launch: - /Treehouse Riddle.exe: + "/Treehouse Riddle.exe": - when: - store: steam steam: id: 1155900 -'Treeker: The Lost Glasses': +"Treeker: The Lost Glasses": installDir: Treeker The Lost Glasses: {} launch: - /Treeker.exe: + "/Treeker.exe": - when: - os: windows store: steam @@ -585566,35 +587169,36 @@ Treis Zoes: id: 1202430 Trek to Yomi: files: - /Ronin/Saved/Config/WinGDK: + "/Ronin/Saved/Config/WinGDK": tags: - config when: - os: windows store: microsoft - /Ronin/Saved/Config/WindowsNoEditor: + "/Ronin/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /Ronin/Saved/SaveGames/GOG: + "/Ronin/Saved/SaveGames/GOG": tags: - save when: - - store: gog + - os: windows + store: gog gog: id: 1916990919 installDir: Trek to Yomi: {} launch: - /TrekToYomi.exe: + "/TrekToYomi.exe": - when: - bit: 64 os: windows store: steam steam: id: 1370050 -'Trek: Travel Around the World': +"Trek: Travel Around the World": installDir: Trek_TATW: {} steam: @@ -585603,7 +587207,7 @@ Tren0: installDir: Tren0: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -585613,17 +587217,17 @@ Trench Run: installDir: Trench Run: {} launch: - /TR: + "/TR": - arguments: noautoupdate steam when: - os: linux store: steam - /TR.app/Contents/MacOS/TR: + "/TR.app/Contents/MacOS/TR": - arguments: steam noautoupdate when: - os: mac store: steam - /TR.exe: + "/TR.exe": - arguments: noautoupdate steam noconsole when: - os: windows @@ -585637,15 +587241,15 @@ Trenches of War: installDir: Trenches of War: {} launch: - /TrenchesOfWar.app/Contents/MacOS/Mac_Runner: + "/TrenchesOfWar.app/Contents/MacOS/Mac_Runner": - when: - os: mac store: steam - /TrenchofWar.exe: + "/TrenchofWar.exe": - when: - os: windows store: steam - /TrenchofWar/runner: + "/TrenchofWar/runner": - when: - os: linux store: steam @@ -585655,7 +587259,7 @@ TrenchesWIP: installDir: TrenchesWIP: {} launch: - /FPSKit.exe: + "/FPSKit.exe": - when: - bit: 64 os: windows @@ -585666,7 +587270,7 @@ Trenchfoot: installDir: Trenchfoot: {} launch: - /Trenchfoot.exe: + "/Trenchfoot.exe": - when: - os: windows store: steam @@ -585676,7 +587280,7 @@ Trendpoker 3D Community Edition: installDir: Trendpoker 3D Community Edition: {} launch: - /Trendpoker.exe: + "/Trendpoker.exe": - when: - os: windows store: steam @@ -585686,15 +587290,15 @@ Trends: installDir: Trends: {} launch: - /Trends.app: + "/Trends.app": - when: - os: mac store: steam - /Trends.exe: + "/Trends.exe": - when: - os: windows store: steam - /Trends.x86_64: + "/Trends.x86_64": - when: - bit: 64 os: linux @@ -585703,12 +587307,12 @@ Trends: id: 944730 Trepang2: files: - /CPPFPS/Saved/Config/WindowsNoEditor: + "/CPPFPS/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /CPPFPS/Saved/SaveGames: + "/CPPFPS/Saved/SaveGames": tags: - save when: @@ -585717,24 +587321,24 @@ Trepang2: id: 1599916752 id: gogExtra: - - 1445876328 - 1428940135 + - 1445876328 steamExtra: - 1842620 installDir: Trepang2: {} launch: - /CPPFPS.exe: + "/CPPFPS.exe": - when: - store: steam steam: id: 1164940 -'Trespass: Episode 1': +"Trespass: Episode 1": installDir: TRESPASS - Episode 1: {} steam: id: 509360 -'Trespass: Episode 2': +"Trespass: Episode 2": installDir: TRESPASS - Episode 2: {} steam: @@ -585743,7 +587347,7 @@ Trespassers: installDir: Trespassers: {} launch: - /Trespassers.exe: + "/Trespassers.exe": - when: - os: windows store: steam @@ -585756,7 +587360,7 @@ Tri.Attack();: installDir: tri.Attack();: {} launch: - /tri.Attack.exe: + "/tri.Attack.exe": - when: - os: windows store: steam @@ -585766,25 +587370,25 @@ TriElement: installDir: TriFuse: {} launch: - /TriElement.app: + "/TriElement.app": - when: - os: mac store: steam - /TriElement.exe: + "/TriElement.exe": - when: - os: windows store: steam steam: id: 708140 -'TriJinx: A Kristine Kross Mystery': +"TriJinx: A Kristine Kross Mystery": installDir: Trijinx: {} launch: - /TriJinx.app: + "/TriJinx.app": - when: - os: mac store: steam - /TriJinx.exe: + "/TriJinx.exe": - when: - os: windows store: steam @@ -585794,7 +587398,7 @@ Trial And Terror: installDir: Trial And Terror: {} launch: - /Trial And Terror.exe: + "/Trial And Terror.exe": - when: - os: windows store: steam @@ -585804,11 +587408,11 @@ Trial Of Destiny: installDir: Trial Of Destiny: {} launch: - /Mac/TrialOfDestiny.app: + "/Mac/TrialOfDestiny.app": - when: - os: mac store: steam - /Windows/TrialOfDestiny.exe: + "/Windows/TrialOfDestiny.exe": - when: - os: windows store: steam @@ -585816,37 +587420,37 @@ Trial Of Destiny: id: 1141860 Trial by Magic: files: - 'C:/TBM.CD/PREFS.CFG': + "C:/TBM.CD/PREFS.CFG": tags: - config when: - os: dos - 'C:/TBM.CD/SAVE*.TBM': + "C:/TBM.CD/SAVE*.TBM": tags: - save when: - os: dos - 'C:/TBM.CD/SETUP.CFG': + "C:/TBM.CD/SETUP.CFG": tags: - config when: - os: dos -'Trial by Teng: A Twilight Path Adventure': +"Trial by Teng: A Twilight Path Adventure": steam: id: 1074670 Trial by Viking: installDir: Trial by Viking: {} launch: - /TrialByViking.app: + "/TrialByViking.app": - when: - os: mac store: steam - /TrialByViking.exe: + "/TrialByViking.exe": - when: - os: windows store: steam - /TrialByViking.x86: + "/TrialByViking.x86": - when: - os: linux store: steam @@ -585856,15 +587460,15 @@ Trial of the Demon Hunter: installDir: Trial of the Demon Hunter: {} launch: - /Trial of the Demon Hunter.app/Contents/MacOS/Trial of the Demon Hunter: + "/Trial of the Demon Hunter.app/Contents/MacOS/Trial of the Demon Hunter": - when: - os: mac store: steam - /TrialOfTheDemonHunter: + "/TrialOfTheDemonHunter": - when: - os: linux store: steam - /TrialOfTheDemonHunter.exe: + "/TrialOfTheDemonHunter.exe": - when: - os: windows store: steam @@ -585879,15 +587483,15 @@ Trial of the Towers: installDir: Trial of the Towers: {} launch: - /Towers.exe: + "/Towers.exe": - when: - os: windows store: steam steam: id: 1051130 -'Trials 2: Second Edition': +"Trials 2: Second Edition": files: - /Redlynx/Trials 2 SE/1.0: + "/Redlynx/Trials 2 SE/1.0": tags: - save when: @@ -585895,20 +587499,20 @@ Trial of the Towers: installDir: Trials 2 Second Edition: {} launch: - /launcher.exe: + "/launcher.exe": - when: - store: steam steam: id: 16600 -'Trials Evolution: Gold Edition': +"Trials Evolution: Gold Edition": files: - /savegames//78: + "/savegames//78": tags: - save when: - os: windows store: uplay - /Ubisoft/Trials Evolution Gold Edition/Config: + "/Ubisoft/Trials Evolution Gold Edition/Config": tags: - config when: @@ -585916,23 +587520,23 @@ Trial of the Towers: installDir: TrialsPC: {} launch: - /datapack/trialsFMX.exe: - - arguments: '-uplay_steam_mode' + "/datapack/trialsFMX.exe": + - arguments: "-uplay_steam_mode" when: - os: windows store: steam - workingDir: /datapack + workingDir: "/datapack" steam: id: 220160 Trials Fusion: files: - /savegames//318: + "/savegames//318": tags: - save when: - os: windows store: uplay - /TrialsFusion/SavedGames: + "/TrialsFusion/SavedGames": tags: - config when: @@ -585940,22 +587544,22 @@ Trials Fusion: installDir: Trials Fusion: {} launch: - /datapack/trials_fusion.exe: - - arguments: '-uplay_steam_mode' + "/datapack/trials_fusion.exe": + - arguments: "-uplay_steam_mode" when: - os: windows store: steam - workingDir: /datapack + workingDir: "/datapack" steam: id: 245490 Trials Rising: files: - /Trials Rising/SavedGames/: + "/Trials Rising/SavedGames/": tags: - save when: - os: windows - /Trials Rising/SavedGames/local_config.xml: + "/Trials Rising/SavedGames/local_config.xml": tags: - config when: @@ -585963,15 +587567,15 @@ Trials Rising: installDir: Trials Rising: {} launch: - /datapack/trialsrising.exe: - - arguments: '-uplay_steam_mode' + "/datapack/trialsrising.exe": + - arguments: "-uplay_steam_mode" when: - os: windows store: steam - workingDir: /datapack + workingDir: "/datapack" steam: id: 641080 -'Trials of Ascension: Exile': +"Trials of Ascension: Exile": installDir: Trials of Ascension Exile: {} steam: @@ -585980,16 +587584,19 @@ Trials of Azra: installDir: Trials of Azra: {} launch: - /TrialsOfAzra.app/Contents/MacOS/TrialsOfAzra: + "/TrialsOfAzra.app/Contents/MacOS/TrialsOfAzra": - when: - os: mac store: steam - /TrialsOfAzra.exe: + "/TrialsOfAzra.exe": - when: - bit: 32 os: windows store: steam - /TrialsOfAzra.sh: + - bit: 64 + os: windows + store: steam + "/TrialsOfAzra.sh": - when: - os: linux store: steam @@ -585997,12 +587604,12 @@ Trials of Azra: id: 487160 Trials of Fire: files: - /TableTopBase/Saved/Config/WindowsNoEditor: + "/TableTopBase/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /TableTopBase/Saved/SaveGames: + "/TableTopBase/Saved/SaveGames": tags: - save when: @@ -586012,7 +587619,7 @@ Trials of Fire: installDir: Trials of Fire: {} launch: - /TrialsOfFire.exe: + "/TrialsOfFire.exe": - when: - bit: 64 os: windows @@ -586023,8 +587630,8 @@ Trials of Guinevere: installDir: Trials of Guinevere: {} launch: - /ToG.exe: - - arguments: '--in-process-gpu' + "/ToG.exe": + - arguments: "--in-process-gpu" when: - store: steam steam: @@ -586033,15 +587640,15 @@ Trials of Harmony: installDir: Trials of Harmony: {} launch: - /Trials of Harmony.exe: + "/Trials of Harmony.exe": - when: - os: windows store: steam - /TrialsOfHarmony.x86_64: + "/TrialsOfHarmony.x86_64": - when: - os: linux store: steam - /TrialsOfHarmony_steam.app: + "/TrialsOfHarmony_steam.app": - when: - os: mac store: steam @@ -586049,12 +587656,12 @@ Trials of Harmony: id: 1155410 Trials of Mana: files: - /My Games/Trials of Mana/Steam//Saved/Config/WindowsNoEditor: + "/My Games/Trials of Mana/Steam//Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /My Games/Trials of Mana/Steam//Saved/SaveGames: + "/My Games/Trials of Mana/Steam//Saved/SaveGames": tags: - save when: @@ -586062,21 +587669,21 @@ Trials of Mana: installDir: Trials of Mana: {} launch: - /Trials of Mana/Binaries/Win64/Trials of Mana-Win64-Shipping.exe: + "/Trials of Mana/Binaries/Win64/Trials of Mana-Win64-Shipping.exe": - when: - bit: 64 os: windows store: steam steam: id: 924980 -'Trials of The Illuminati: Snack Time Jigsaw Puzzles': +"Trials of The Illuminati: Snack Time Jigsaw Puzzles": steam: id: 844080 Trials of Wilderness: installDir: Trials of Wilderness: {} launch: - /Trials of wilderness.exe: + "/Trials of wilderness.exe": - when: - os: windows store: steam @@ -586084,13 +587691,13 @@ Trials of Wilderness: id: 934180 Trials of the Blood Dragon: files: - /savegames//2741: + "/savegames//2741": tags: - save when: - os: windows store: uplay - /Trials Blood Dragon/SavedGames/local_config.xml: + "/Trials Blood Dragon/SavedGames/local_config.xml": tags: - config when: @@ -586098,73 +587705,73 @@ Trials of the Blood Dragon: installDir: Trials of the Blood Dragon: {} launch: - /datapack/trialsblooddragon.exe: - - arguments: '-uplay_steam_mode' + "/datapack/trialsblooddragon.exe": + - arguments: "-uplay_steam_mode" when: - os: windows store: steam - workingDir: /datapack + workingDir: "/datapack" steam: id: 435480 Trials of the Gauntlet: installDir: Trials of the Gauntlet: {} launch: - /Trails of the Gauntlet 3.0.x86_64: + "/Trails of the Gauntlet 3.0.x86_64": - when: - os: linux store: steam - /Trials of the Gauntlet 3.0.exe: + "/Trials of the Gauntlet 3.0.exe": - when: - os: windows store: steam - /Trials of the Gauntlet.app/Contents/MacOS/Trials of the Gauntlet: + "/Trials of the Gauntlet.app/Contents/MacOS/Trials of the Gauntlet": - when: - os: mac store: steam steam: id: 764410 -'Trials of the Illuminati: Amazing Wildlife Jigsaws': +"Trials of the Illuminati: Amazing Wildlife Jigsaws": steam: id: 713780 -'Trials of the Illuminati: Animated Christmas Time Jigsaws': +"Trials of the Illuminati: Animated Christmas Time Jigsaws": steam: id: 709770 -'Trials of the Illuminati: Assorted Jigsaws': +"Trials of the Illuminati: Assorted Jigsaws": steam: id: 783470 -'Trials of the Illuminati: Cityscape Animated Jigsaws': +"Trials of the Illuminati: Cityscape Animated Jigsaws": steam: id: 695590 -'Trials of the Illuminati: Sea Creatures Jigsaws': +"Trials of the Illuminati: Sea Creatures Jigsaws": steam: id: 709430 -'Trials of the Illuminati: Women of Beauty Jigsaws': +"Trials of the Illuminati: Women of Beauty Jigsaws": steam: id: 785610 Trials of the Thief-Taker: installDir: Trials of the Thief-Taker: {} launch: - /Trials of the ThiefTaker.app/Contents/MacOS/Trials of the ThiefTaker: + "/Trials of the ThiefTaker.app/Contents/MacOS/Trials of the ThiefTaker": - when: - os: mac store: steam - /TrialsOfTheThiefTaker: + "/TrialsOfTheThiefTaker": - when: - os: linux store: steam - /TrialsOfTheThiefTaker.exe: + "/TrialsOfTheThiefTaker.exe": - when: - os: windows store: steam steam: id: 688000 -'Trianga''s Project: Battle Splash 2.0': +"Trianga's Project: Battle Splash 2.0": installDir: Trianga Project Battle Splash 2.0: {} launch: - /Battle Splash 2.0.exe: + "/Battle Splash 2.0.exe": - when: - os: windows store: steam @@ -586177,7 +587784,7 @@ Triangle Mania: installDir: Triangle Mania: {} launch: - /TriangleMania.exe: + "/TriangleMania.exe": - when: - os: windows store: steam @@ -586185,12 +587792,12 @@ Triangle Mania: id: 1062390 Triangle Strategy: files: - /My Games/TRIANGLE_STRATEGY/Steam//SaveGames: + "/My Games/TRIANGLE_STRATEGY/Steam//SaveGames": tags: - config when: - os: windows - /My Games/TRIANGLE_STRATEGY/Steam/Config/WindowsNoEditor: + "/My Games/TRIANGLE_STRATEGY/Steam/Config/WindowsNoEditor": tags: - save when: @@ -586198,7 +587805,7 @@ Triangle Strategy: installDir: TRIANGLE STRATEGY: {} launch: - /TRIANGLE_STRATEGY.exe: + "/TRIANGLE_STRATEGY.exe": - when: - store: steam steam: @@ -586207,7 +587814,7 @@ TriangleStorm: installDir: TriangleStorm: {} launch: - /TriangleStorm/TriangleStorm.exe: + "/TriangleStorm/TriangleStorm.exe": - when: - os: windows store: steam @@ -586217,7 +587824,7 @@ Triangulate: installDir: Triangulate: {} launch: - /Triangulate.exe: + "/Triangulate.exe": - when: - os: windows store: steam @@ -586227,15 +587834,15 @@ Triangulum: installDir: Triangulum: {} launch: - /Triangulum.app: + "/Triangulum.app": - when: - os: mac store: steam - /Triangulum.exe: + "/Triangulum.exe": - when: - os: windows store: steam - /Triangulum.x86_64: + "/Triangulum.x86_64": - when: - os: linux store: steam @@ -586245,7 +587852,7 @@ Trianguluv: installDir: Trianguluv: {} launch: - /trianguluv.exe: + "/trianguluv.exe": - when: - os: windows store: steam @@ -586253,7 +587860,7 @@ Trianguluv: id: 601930 Tribal Hunter: files: - /Tribal_Hunter: + "/Tribal_Hunter": tags: - save when: @@ -586263,7 +587870,7 @@ Tribal Hunter: installDir: Tribal Hunter: {} launch: - /Tribal Hunter.exe: + "/Tribal Hunter.exe": - when: - os: windows store: steam @@ -586273,15 +587880,15 @@ Tribal Pass: installDir: The Tribe: {} launch: - /The Tribe.exe: + "/The Tribe.exe": - when: - os: windows store: steam - /The Tribe.x86: + "/The Tribe.x86": - when: - os: linux store: steam - /The Tribe_mac.app: + "/The Tribe_mac.app": - when: - os: mac store: steam @@ -586291,11 +587898,11 @@ Tribal Siege: installDir: Tribal Siege: {} launch: - /TribalSiege.app: + "/TribalSiege.app": - when: - os: mac store: steam - /TribalSiege.exe: + "/TribalSiege.exe": - when: - os: windows store: steam @@ -586305,17 +587912,17 @@ Tribe of Pok: installDir: Tribe Of Pok: {} launch: - /Pok.exe: + "/Pok.exe": - when: - os: windows store: steam steam: id: 505140 -'TribeQuest: Red Killer': +"TribeQuest: Red Killer": installDir: TribeQuest Red Killer: {} launch: - /TQRK.exe: + "/TQRK.exe": - when: - os: windows store: steam @@ -586323,12 +587930,12 @@ Tribe of Pok: id: 388830 Tribes of Midgard: files: - /TOM/Saved/Config/WindowsNoEditor: + "/TOM/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /TOM/Saved/SaveGames: + "/TOM/Saved/SaveGames": tags: - save when: @@ -586340,8 +587947,8 @@ Tribes of Midgard: installDir: Tribes of Midgard: {} launch: - /TOM.exe: - - arguments: '-noreuseconn' + "/TOM.exe": + - arguments: "-noreuseconn" when: - os: windows store: steam @@ -586351,16 +587958,16 @@ Tribes of Midgard - Open Beta: installDir: Tribes of Midgard - Open Beta: {} launch: - /TOM.exe: - - arguments: '-noreuseconn' + "/TOM.exe": + - arguments: "-noreuseconn" when: - os: windows store: steam steam: id: 1106880 -'Tribes: Ascend': +"Tribes: Ascend": files: - /My Games/Tribes Ascend/TribesGame/Config: + "/My Games/Tribes Ascend/TribesGame/Config": tags: - config when: @@ -586368,25 +587975,25 @@ Tribes of Midgard - Open Beta: installDir: Tribes: {} launch: - /binaries/win32/TribesAscend.exe: - - arguments: '-hostx=45.79.222.67' + "/binaries/win32/TribesAscend.exe": + - arguments: "-hostx=45.79.222.67" when: - store: steam steam: id: 17080 -'Tribes: Vengeance': +"Tribes: Vengeance": files: - /Content/Saves: + "/Content/Saves": tags: - save when: - os: windows - /Content/System: + "/Content/System": tags: - config when: - os: windows - /Program/Bin: + "/Program/Bin": tags: - config when: @@ -586395,15 +588002,15 @@ Triblaster: installDir: TriBlaster: {} launch: - /TriBlaster-Win.exe: + "/TriBlaster-Win.exe": - when: - os: windows store: steam - /TriBlaster-osx.app: + "/TriBlaster-osx.app": - when: - os: mac store: steam - /TriBlaster_Linux.x86: + "/TriBlaster_Linux.x86": - when: - os: linux store: steam @@ -586411,12 +588018,12 @@ Triblaster: id: 303880 Tribloos 2: files: - /BumpkinBrothers/TheTribloos2: + "/BumpkinBrothers/TheTribloos2": tags: - save when: - os: windows - /BumpkinBrothers/TheTribloos2/settings.ini: + "/BumpkinBrothers/TheTribloos2/settings.ini": tags: - config when: @@ -586424,7 +588031,7 @@ Tribloos 2: installDir: Tribloos 2: {} launch: - /TheTribloos2.exe: + "/TheTribloos2.exe": - when: - os: windows store: steam @@ -586434,11 +588041,11 @@ Tribloos 3: installDir: Tribloos3: {} launch: - /TheTribloos3.app: + "/TheTribloos3.app": - when: - os: mac store: steam - /TheTribloos3.exe: + "/TheTribloos3.exe": - when: - os: windows store: steam @@ -586451,12 +588058,12 @@ Tribocalypse VR: id: 520510 Trick & Treat: files: - /Game.ini: + "/Game.ini": tags: - config when: - os: windows - /Save*.rvdata2: + "/Save*.rvdata2": tags: - save when: @@ -586464,7 +588071,7 @@ Trick & Treat: installDir: EN_Trick & Treat: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -586474,19 +588081,19 @@ Trick Shot: installDir: Trick Shot: {} launch: - /Trick_Shot.exe: + "/Trick_Shot.exe": - when: - store: steam steam: id: 793480 Trick and Treat - Visual Novel: files: - /game/saves: + "/game/saves": tags: - save when: - os: windows - /RenPy/TrickandTreat-1413512286: + "/RenPy/TrickandTreat-1413512286": tags: - save when: @@ -586494,15 +588101,15 @@ Trick and Treat - Visual Novel: installDir: Trick and Treat: {} launch: - /Trick and Treat.app: + "/Trick and Treat.app": - when: - os: mac store: steam - /Trick and Treat.exe: + "/Trick and Treat.exe": - when: - os: windows store: steam - /Trick and Treat.sh: + "/Trick and Treat.sh": - when: - os: linux store: steam @@ -586514,7 +588121,7 @@ TrickStyle: installDir: TrickStyle: {} launch: - /Play TrickStyle.exe: + "/Play TrickStyle.exe": - when: - os: windows store: steam @@ -586524,11 +588131,11 @@ Tricks and Treats: installDir: Tricks and Treats: {} launch: - /TricksAndTreats.app/Contents/MacOS/hp: + "/TricksAndTreats.app/Contents/MacOS/hp": - when: - os: mac store: steam - /hp.exe: + "/hp.exe": - when: - os: windows store: steam @@ -586544,7 +588151,7 @@ Trickster VR: Trickster VR: {} steam: id: 512220 -'Trickster VR: Horde Attack!': +"Trickster VR: Horde Attack!": installDir: Trickster VR Horde Attack: {} steam: @@ -586553,11 +588160,11 @@ Tricky Cat: installDir: Tricky Cat: {} launch: - /Tricky Cat.exe: + "/Tricky Cat.exe": - when: - os: windows store: steam - /Tricky Cat.x86_64: + "/Tricky Cat.x86_64": - when: - os: linux store: steam @@ -586567,11 +588174,11 @@ Tricky Cow: installDir: Tricky Cow: {} launch: - /Tricky Cow.exe: + "/Tricky Cow.exe": - when: - os: windows store: steam - /Tricky Cow.x86_64: + "/Tricky Cow.x86_64": - when: - os: linux store: steam @@ -586581,11 +588188,11 @@ Tricky Fox: installDir: Tricky Fox: {} launch: - /Tricky Fox.exe: + "/Tricky Fox.exe": - when: - os: windows store: steam - /Tricky Fox.x86_64: + "/Tricky Fox.x86_64": - when: - os: linux store: steam @@ -586593,7 +588200,7 @@ Tricky Fox: id: 1083450 Tricky Towers: files: - /.config/unity3d/WeirdBeard/Tricky Towers: + "/.config/unity3d/WeirdBeard/Tricky Towers": tags: - config when: @@ -586605,15 +588212,15 @@ Tricky Towers: installDir: Tricky Towers: {} launch: - /TrickyTowers.app/Contents/MacOS/TrickyTowers: + "/TrickyTowers.app/Contents/MacOS/TrickyTowers": - when: - os: mac store: steam - /TrickyTowers.exe: + "/TrickyTowers.exe": - when: - os: windows store: steam - /TrickyTowers.x86: + "/TrickyTowers.x86": - when: - os: linux store: steam @@ -586626,7 +588233,7 @@ Tricky Towers: id: 437920 Tricolour Lovestory: files: - /savedata: + "/savedata": tags: - save when: @@ -586634,11 +588241,11 @@ Tricolour Lovestory: installDir: Tricolour Lovestory: {} launch: - /TricolourLovestory_chs.exe: + "/TricolourLovestory_chs.exe": - when: - os: windows store: steam - /TricolourLovestory_en.exe: + "/TricolourLovestory_en.exe": - when: - store: steam steam: @@ -586647,11 +588254,11 @@ Tricone Lab: installDir: TriconeLab: {} launch: - /TriconeLab.app: + "/TriconeLab.app": - when: - os: mac store: steam - /triconelab.exe: + "/triconelab.exe": - when: - os: windows store: steam @@ -586661,17 +588268,17 @@ Trident Barrage: installDir: TridentBarrage: {} launch: - /TridentBarrage.exe: + "/TridentBarrage.exe": - when: - os: windows store: steam steam: id: 1017270 -Trident's Wake: +"Trident's Wake": installDir: - Trident's Wake: {} + "Trident's Wake": {} launch: - /TridentsWake.exe: + "/TridentsWake.exe": - when: - os: windows store: steam @@ -586686,15 +588293,15 @@ Triennale Game Collection: installDir: Triennale Game Collection: {} launch: - /TGC.app: + "/TGC.app": - when: - os: mac store: steam - /TGC.exe: + "/TGC.exe": - when: - os: windows store: steam - /TGC.x86: + "/TGC.x86": - when: - os: linux store: steam @@ -586706,7 +588313,7 @@ Triennale Game Collection: id: 538880 Trifox: files: - 'C:/Users/username/AppData/LocalLow/Glowfish Interactive/Trifox': + "C:/Users/username/AppData/LocalLow/Glowfish Interactive/Trifox": tags: - config - save @@ -586717,7 +588324,7 @@ Trifox: installDir: Trifox: {} launch: - /Trifox.exe: + "/Trifox.exe": - when: - os: windows store: steam @@ -586727,7 +588334,7 @@ Trigger: installDir: TRIGGER: {} launch: - /TRIGGER.exe: + "/TRIGGER.exe": - when: - os: windows store: steam @@ -586738,7 +588345,7 @@ Trigger Happy Shooting: id: 603920 Trigger Runners: files: - /Stencyl/Trigger Runners for Windows/mySave.sol: + "/Stencyl/Trigger Runners for Windows/mySave.sol": tags: - save when: @@ -586746,7 +588353,7 @@ Trigger Runners: installDir: Trigger_Runners: {} launch: - /Trigger_Runners.exe: + "/Trigger_Runners.exe": - when: - os: windows store: steam @@ -586756,7 +588363,7 @@ Trigger Saint: installDir: Trigger Saint: {} launch: - /Trigger Saint.exe: + "/Trigger Saint.exe": - when: - os: windows store: steam @@ -586766,7 +588373,7 @@ Trigger Table: installDir: Trigger Table: {} launch: - /Trigger Table.exe: + "/Trigger Table.exe": - when: - store: steam steam: @@ -586775,11 +588382,11 @@ Trigger Time: installDir: Trigger Time: {} launch: - /tt: + "/tt": - when: - os: linux store: steam - /tt.exe: + "/tt.exe": - when: - os: windows store: steam @@ -586787,7 +588394,7 @@ Trigger Time: id: 512920 Trigger Witch: files: - /AppData/LocalLow/Rainbite Limited/Trigger Witch/savedGame*.gd: + "/AppData/LocalLow/Rainbite Limited/Trigger Witch/savedGame*.gd": tags: - save when: @@ -586795,7 +588402,7 @@ Trigger Witch: installDir: Trigger Witch: {} launch: - /Trigger Witch.exe: + "/Trigger Witch.exe": - when: - store: steam steam: @@ -586804,13 +588411,13 @@ Triggered: installDir: TRIGGERED: {} launch: - /Triggered.exe: + "/Triggered.exe": - when: - bit: 64 store: steam steam: id: 809200 -'Triggered: Assault': +"Triggered: Assault": steam: id: 710510 Triggering Simulator: @@ -586820,26 +588427,26 @@ Triggerun: installDir: Triggerun: {} launch: - /Triggerun_S.exe: + "/Triggerun_S.exe": - when: - os: windows store: steam steam: id: 897290 -'Trigon: Space Story': +"Trigon: Space Story": installDir: Trigon Space Story: {} launch: - /TSS.app/Contents/MacOS/Trigon_ Space Story: + "/TSS.app/Contents/MacOS/Trigon_ Space Story": - when: - os: mac store: steam - /TSS.exe: + "/TSS.exe": - when: - bit: 64 os: windows store: steam - /TSS.x86_64: + "/TSS.x86_64": - when: - bit: 64 os: linux @@ -586850,7 +588457,7 @@ Trigonarium: installDir: Trigonarium: {} launch: - /trigonarium.exe: + "/trigonarium.exe": - when: - os: windows store: steam @@ -586860,15 +588467,15 @@ Trigonometry: installDir: Trigonometry: {} launch: - /Trigonometry.Linux/Trigonometry.x86: + "/Trigonometry.Linux/Trigonometry.x86": - when: - os: linux store: steam - /Trigonometry.app/Contents/MacOS/Trigonometry: + "/Trigonometry.app/Contents/MacOS/Trigonometry": - when: - os: mac store: steam - /win32/Trigonometry.exe: + "/win32/Trigonometry.exe": - when: - os: windows store: steam @@ -586878,20 +588485,20 @@ Trikumax: installDir: Trikumax: {} launch: - /Game.app: + "/Game.app": - when: - os: mac store: steam - /Game.exe: - - arguments: '--in-process-gpu' + "/Game.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam steam: id: 1009210 -'Trillion: God of Destruction': +"Trillion: God of Destruction": files: - /savedata: + "/savedata": tags: - save when: @@ -586899,7 +588506,7 @@ Trikumax: installDir: Trillion: {} launch: - /TrillionWin.exe: + "/TrillionWin.exe": - when: - os: windows store: steam @@ -586909,11 +588516,11 @@ Trimmer Tycoon: installDir: Trimmer Tycoon: {} launch: - /trimmer.app: + "/trimmer.app": - when: - os: mac store: steam - /trimmer.exe: + "/trimmer.exe": - when: - os: windows store: steam @@ -586921,17 +588528,17 @@ Trimmer Tycoon: id: 505750 Trine: files: - /config: + "/config": tags: - config when: - os: windows - /profiles: + "/profiles": tags: - save when: - os: windows - /.frozenbyte/trine: + "/.frozenbyte/trine": tags: - config - save @@ -586942,43 +588549,43 @@ Trine: installDir: Trine: {} launch: - /_enchanted_edition_/trine1.app: + "/_enchanted_edition_/trine1.app": - when: - os: mac store: steam - /_enchanted_edition_/trine1.sh: + "/_enchanted_edition_/trine1.sh": - when: - os: linux store: steam - workingDir: /_enchanted_edition_ - /_enchanted_edition_/trine1_launcher.exe: + workingDir: "/_enchanted_edition_" + "/_enchanted_edition_/trine1_launcher.exe": - when: - os: windows store: steam - workingDir: /_enchanted_edition_ + workingDir: "/_enchanted_edition_" steam: id: 35700 Trine 2: files: - /.frozenbyte/Trine2: + "/.frozenbyte/Trine2": tags: - config - save when: - os: linux - /Library/Trine2: + "/Library/Trine2": tags: - config - save when: - os: mac - /userdata//35720/remote: + "/userdata//35720/remote": tags: - config - save when: - store: steam - /Trine2: + "/Trine2": tags: - config - save @@ -586994,39 +588601,39 @@ Trine 2: installDir: Trine 2: {} launch: - /Trine2Launcher.app: + "/Trine2Launcher.app": - when: - os: mac store: steam - /trine2.sh: + "/trine2.sh": - when: - os: linux store: steam - /trine2_launcher.exe: + "/trine2_launcher.exe": - when: - os: windows store: steam steam: id: 35720 -'Trine 3: The Artifacts of Power': +"Trine 3: The Artifacts of Power": files: - /.frozenbyte/Trine3: + "/.frozenbyte/Trine3": tags: - config - save when: - os: linux - /userdata//319910/remote: + "/userdata//319910/remote": tags: - save when: - store: steam - /Trine3: + "/Trine3": tags: - save when: - os: windows - /Trine3/options.txt: + "/Trine3/options.txt": tags: - config when: @@ -587036,29 +588643,29 @@ Trine 2: installDir: Trine 3: {} launch: - /Trine3Launcher.app: + "/Trine3Launcher.app": - when: - os: mac store: steam - /trine3.sh: + "/trine3.sh": - when: - os: linux store: steam - /trine3_launcher.exe: + "/trine3_launcher.exe": - when: - os: windows store: steam steam: id: 319910 -'Trine 4: The Nightmare Prince': +"Trine 4: The Nightmare Prince": files: - /userdata//690640/remote: + "/userdata//690640/remote": tags: - config - save when: - store: steam - /Trine4: + "/Trine4": tags: - config - save @@ -587070,22 +588677,22 @@ Trine 2: gogExtra: - 1098420914 steamExtra: - - 1504370 - 1224800 - - 1503550 - 1444560 + - 1503550 + - 1504370 installDir: Trine 4 The Nightmare Prince: {} launch: - /trine4.exe: + "/trine4.exe": - when: - os: windows store: steam steam: id: 690640 -'Trine 5: A Clockwork Conspiracy': +"Trine 5: A Clockwork Conspiracy": files: - /Trine5: + "/Trine5": tags: - config - save @@ -587096,7 +588703,7 @@ Trine 2: installDir: Trine 5: {} launch: - /trine5.exe: + "/trine5.exe": - when: - bit: 64 os: windows @@ -587105,19 +588712,19 @@ Trine 2: id: 1436700 Trine Enchanted Edition: files: - /.frozenbyte/Trine1: + "/.frozenbyte/Trine1": tags: - config - save when: - os: linux - /userdata//35700/remote: + "/userdata//35700/remote": tags: - config - save when: - store: steam - /Trine1: + "/Trine1": tags: - config - save @@ -587128,27 +588735,27 @@ Trine Enchanted Edition: installDir: Trine: {} launch: - /_enchanted_edition_/trine1.app: + "/_enchanted_edition_/trine1.app": - when: - os: mac store: steam - /_enchanted_edition_/trine1.sh: + "/_enchanted_edition_/trine1.sh": - when: - os: linux store: steam - workingDir: /_enchanted_edition_ - /_enchanted_edition_/trine1_launcher.exe: + workingDir: "/_enchanted_edition_" + "/_enchanted_edition_/trine1_launcher.exe": - when: - os: windows store: steam - workingDir: /_enchanted_edition_ + workingDir: "/_enchanted_edition_" steam: id: 35700 Trinity: installDir: Trinity: {} launch: - /Trinity.exe: + "/Trinity.exe": - when: - os: windows store: steam @@ -587158,7 +588765,7 @@ Trinity Dungeon: installDir: Trinity Dungeon: {} launch: - /game.exe: + "/game.exe": - when: - bit: 64 os: windows @@ -587167,7 +588774,7 @@ Trinity Dungeon: id: 689460 Trinity Fusion: files: - /AppData/LocalLow/Angry Mob Games/Trinity Fusion: + "/AppData/LocalLow/Angry Mob Games/Trinity Fusion": tags: - config - save @@ -587176,14 +588783,14 @@ Trinity Fusion: installDir: Trinity Fusion: {} launch: - /Trinity Fusion.exe: + "/Trinity Fusion.exe": - when: - store: steam steam: id: 1911360 Trinity Trigger: files: - /AppData/LocalLow/TRINITY TRIGGER/: + "/AppData/LocalLow/TRINITY TRIGGER/": tags: - config - save @@ -587194,7 +588801,7 @@ Trinity Trigger: installDir: Trinity Trigger: {} launch: - /TRINITY TRIGGER.exe: + "/TRINITY TRIGGER.exe": - when: - bit: 64 os: windows @@ -587218,7 +588825,7 @@ Trino: installDir: Trino: {} launch: - /Trino.exe: + "/Trino.exe": - when: - store: steam steam: @@ -587227,7 +588834,7 @@ Trinoline: installDir: Trinoline: {} launch: - /trinoline_en_AA.exe: + "/trinoline_en_AA.exe": - when: - os: windows store: steam @@ -587237,7 +588844,7 @@ Trio: installDir: Trio: {} launch: - /Trio.exe: + "/Trio.exe": - when: - os: windows store: steam @@ -587247,7 +588854,7 @@ Trio Adventures: installDir: Trio Adventures: {} launch: - /trio.exe: + "/trio.exe": - when: - os: windows store: steam @@ -587257,7 +588864,7 @@ Trip Troupe: installDir: Trip Troupe: {} launch: - /TripTroupe.exe: + "/TripTroupe.exe": - when: - os: windows store: steam @@ -587267,7 +588874,7 @@ Trip in HELL: installDir: Trip in HELL: {} launch: - /ZombiesMultiplayerjk.exe: + "/ZombiesMultiplayerjk.exe": - when: - bit: 64 os: windows @@ -587276,7 +588883,7 @@ Trip in HELL: id: 924090 Trip to Vinelands: files: - /Trip_to_Vinelands: + "/Trip_to_Vinelands": tags: - save when: @@ -587284,11 +588891,11 @@ Trip to Vinelands: installDir: Trip to Vinelands: {} launch: - /Trip to Vinelands.exe: + "/Trip to Vinelands.exe": - when: - os: windows store: steam - /run.sh: + "/run.sh": - when: - os: linux store: steam @@ -587298,7 +588905,7 @@ Trip=true: installDir: trip=true: {} launch: - /trip=true.exe: + "/trip=true.exe": - when: - os: windows store: steam @@ -587308,15 +588915,15 @@ TripTrip: installDir: TripTrip: {} launch: - /TripTrip.app/Contents/MacOS/Mac_Runner: + "/TripTrip.app/Contents/MacOS/Mac_Runner": - when: - os: mac store: steam - /TripTrip.exe: + "/TripTrip.exe": - when: - os: windows store: steam - /TripTrip/runner: + "/TripTrip/runner": - when: - os: linux store: steam @@ -587326,7 +588933,7 @@ Triple Otakus Puzzle: installDir: OTAKUtest: {} launch: - /OTAKUtest.exe: + "/OTAKUtest.exe": - when: - bit: 64 os: windows @@ -587335,7 +588942,7 @@ Triple Otakus Puzzle: id: 699760 Triple Town: files: - /TripleTown/saves: + "/TripleTown/saves": tags: - save when: @@ -587345,13 +588952,13 @@ Triple Town: installDir: TripleTown: {} launch: - /TripleTown.app/Contents/MacOS/TripleTown: - - arguments: '-console' + "/TripleTown.app/Contents/MacOS/TripleTown": + - arguments: "-console" when: - os: mac store: steam - /TripleTown.exe: - - arguments: '-console' + "/TripleTown.exe": + - arguments: "-console" when: - os: windows store: steam @@ -587366,7 +588973,7 @@ Triple X Tycoon: installDir: Triple X Tycoon: {} launch: - /XTycoon.exe: + "/XTycoon.exe": - when: - bit: 64 os: windows @@ -587375,7 +588982,7 @@ Triple X Tycoon: id: 508660 TripleA: files: - /.java/.userPrefs/games/strategy/triplea/settings: + "/.java/.userPrefs/games/strategy/triplea/settings": tags: - config when: @@ -587384,7 +588991,7 @@ Triplicata: installDir: Triplicata: {} launch: - /Triplicata.exe: + "/Triplicata.exe": - when: - os: windows store: steam @@ -587394,20 +589001,20 @@ Triplicity: installDir: Triplicity: {} launch: - /Triplicity.app: + "/Triplicity.app": - when: - os: mac store: steam - /Triplicity.exe: + "/Triplicity.exe": - when: - os: windows store: steam - /Triplicity_x86.x86: + "/Triplicity_x86.x86": - when: - bit: 32 os: linux store: steam - /Triplicity_x86_64.x86_64: + "/Triplicity_x86_64.x86_64": - when: - bit: 64 os: linux @@ -587418,7 +589025,7 @@ Trippy Jump: installDir: Trippy Jump: {} launch: - /TrippyJump.exe: + "/TrippyJump.exe": - when: - bit: 64 os: windows @@ -587429,7 +589036,7 @@ Trireme Commander: installDir: Trireme Commander: {} launch: - /TriremeCommander.exe: + "/TriremeCommander.exe": - when: - os: windows store: steam @@ -587439,25 +589046,25 @@ Tristoy: installDir: Tristoy: {} launch: - /TRISTOY.app: + "/TRISTOY.app": - when: - os: mac store: steam - /TRISTOY.exe: + "/TRISTOY.exe": - when: - os: windows store: steam - /TRISTOY.x86: + "/TRISTOY.x86": - when: - os: linux store: steam steam: id: 303260 -'Triteckka: The pure shooter': +"Triteckka: The pure shooter": installDir: 1MP: {} launch: - /TPS.exe: + "/TPS.exe": - when: - os: windows store: steam @@ -587467,7 +589074,7 @@ Triton Survival: installDir: Triton Survival: {} launch: - /Triton Survival.exe: + "/Triton Survival.exe": - when: - os: windows store: steam @@ -587477,7 +589084,7 @@ Triton Wing: installDir: Triton Wing: {} launch: - /TritonWing.exe: + "/TritonWing.exe": - when: - os: windows store: steam @@ -587487,30 +589094,30 @@ Triumph in the Skies: installDir: TriumphInTheSkies: {} launch: - /TriumphInTheSkies.exe: + "/TriumphInTheSkies.exe": - when: - os: windows store: steam steam: id: 1012580 -'Triuna: The Seven': +"Triuna: The Seven": steam: id: 1210520 TrivaTune: installDir: TrivaTune: {} launch: - /TrivaTune.exe: + "/TrivaTune.exe": - when: - os: windows store: steam steam: id: 953150 -'Trivia Clash: Adult Film Star Edition': +"Trivia Clash: Adult Film Star Edition": installDir: Trivia Clash Adult Film Star Edition: {} launch: - /Trivia Clash.exe: + "/Trivia Clash.exe": - when: - os: windows store: steam @@ -587520,20 +589127,20 @@ Trivia King: installDir: Trivia King: {} launch: - /Trivia King.app: + "/Trivia King.app": - when: - os: mac store: steam - /game.exe: + "/game.exe": - when: - os: windows store: steam - /game.x86: + "/game.x86": - when: - bit: 32 os: linux store: steam - /game.x86_64: + "/game.x86_64": - when: - bit: 64 os: linux @@ -587544,394 +589151,394 @@ Trivia Night: installDir: Trivia Night: {} launch: - /TriviaNight.exe: + "/TriviaNight.exe": - when: - bit: 64 os: windows store: steam steam: id: 628570 -'Trivia Quiz: All about everything!': +"Trivia Quiz: All about everything!": installDir: Trivia Quiz All about everything: {} launch: - /TriviaQuiz32.exe: + "/TriviaQuiz32.exe": - when: - bit: 32 os: windows store: steam - /TriviaQuiz64.exe: + "/TriviaQuiz64.exe": - when: - bit: 64 os: windows store: steam steam: id: 905150 -'Trivia Vault: 1980''s Trivia': +"Trivia Vault: 1980's Trivia": installDir: - Trivia Vault 1980's Trivia: {} + "Trivia Vault 1980's Trivia": {} launch: - /Trivia Vault 1980s Trivia.exe: + "/Trivia Vault 1980s Trivia.exe": - when: - os: windows store: steam steam: id: 689180 -'Trivia Vault: 1980''s Trivia 2': +"Trivia Vault: 1980's Trivia 2": installDir: - Trivia Vault 1980's Trivia 2: {} + "Trivia Vault 1980's Trivia 2": {} launch: - /Trivia Vault 1980s Trivia 2.exe: + "/Trivia Vault 1980s Trivia 2.exe": - when: - os: windows store: steam steam: id: 693880 -'Trivia Vault: Art Trivia': +"Trivia Vault: Art Trivia": installDir: Trivia Vault Art Trivia: {} launch: - /Trivia Vault Art Trivia.exe: + "/Trivia Vault Art Trivia.exe": - when: - os: windows store: steam steam: id: 851710 -'Trivia Vault: Auto Racing Trivia': +"Trivia Vault: Auto Racing Trivia": installDir: Trivia Vault Auto Racing Trivia: {} launch: - /Trivia Vault Auto Racing Trivia.exe: + "/Trivia Vault Auto Racing Trivia.exe": - when: - os: windows store: steam steam: id: 822460 -'Trivia Vault: Baseball Trivia': +"Trivia Vault: Baseball Trivia": installDir: Trivia Vault Baseball Trivia: {} launch: - /Trivia Vault Baseball Trivia.exe: + "/Trivia Vault Baseball Trivia.exe": - when: - os: windows store: steam steam: id: 805360 -'Trivia Vault: Basketball Trivia': +"Trivia Vault: Basketball Trivia": installDir: Trivia Vault Basketball Trivia: {} launch: - /Trivia Vault Basketball Trivia.exe: + "/Trivia Vault Basketball Trivia.exe": - when: - os: windows store: steam steam: id: 806610 -'Trivia Vault: Boxing Trivia': +"Trivia Vault: Boxing Trivia": installDir: Trivia Vault Boxing Trivia: {} launch: - /Trivia Vault Boxing Trivia.exe: + "/Trivia Vault Boxing Trivia.exe": - when: - os: windows store: steam steam: id: 821520 -'Trivia Vault: Business Trivia': +"Trivia Vault: Business Trivia": installDir: Trivia Vault Business Trivia: {} launch: - /Trivia Vault Business Trivia.exe: + "/Trivia Vault Business Trivia.exe": - when: - os: windows store: steam steam: id: 858420 -'Trivia Vault: Celebrity Trivia': +"Trivia Vault: Celebrity Trivia": installDir: Trivia Vault Celebrity Trivia: {} launch: - /Trivia Vault Celebrity Trivia.exe: + "/Trivia Vault Celebrity Trivia.exe": - when: - os: windows store: steam steam: id: 849620 -'Trivia Vault: Classic Rock Trivia': +"Trivia Vault: Classic Rock Trivia": installDir: Trivia Vault Classic Rock Trivia: {} launch: - /Trivia Vault Classic Rock Trivia.exe: + "/Trivia Vault Classic Rock Trivia.exe": - when: - os: windows store: steam steam: id: 690240 -'Trivia Vault: Classic Rock Trivia 2': +"Trivia Vault: Classic Rock Trivia 2": installDir: Trivia Vault Classic Rock Trivia 2: {} launch: - /Trivia Vault Classic Rock Trivia 2.exe: + "/Trivia Vault Classic Rock Trivia 2.exe": - when: - os: windows store: steam steam: id: 693890 -'Trivia Vault: Fashion Trivia': +"Trivia Vault: Fashion Trivia": installDir: Trivia Vault Fashion Trivia: {} launch: - /Trivia Vault Fashion Trivia.exe: + "/Trivia Vault Fashion Trivia.exe": - when: - os: windows store: steam steam: id: 860350 -'Trivia Vault: Food Trivia': +"Trivia Vault: Food Trivia": installDir: Trivia Vault Food Trivia: {} launch: - /Trivia Vault Food Trivia.exe: + "/Trivia Vault Food Trivia.exe": - when: - os: windows store: steam steam: id: 861720 -'Trivia Vault: Football Trivia': +"Trivia Vault: Football Trivia": installDir: Trivia Vault Football Trivia: {} launch: - /Trivia Vault Football Trivia.exe: + "/Trivia Vault Football Trivia.exe": - when: - os: windows store: steam steam: id: 804600 -'Trivia Vault: Golf Trivia': +"Trivia Vault: Golf Trivia": installDir: Trivia Vault Golf Trivia: {} launch: - /Trivia Vault Golf Trivia.exe: + "/Trivia Vault Golf Trivia.exe": - when: - os: windows store: steam steam: id: 822900 -'Trivia Vault: Health Trivia Deluxe': +"Trivia Vault: Health Trivia Deluxe": installDir: Trivia Vault Health Trivia Deluxe: {} launch: - /Trivia Vault Deluxe Medical Health.exe: + "/Trivia Vault Deluxe Medical Health.exe": - when: - os: windows store: steam steam: id: 781760 -'Trivia Vault: Hockey Trivia': +"Trivia Vault: Hockey Trivia": installDir: Trivia Vault Hockey Trivia: {} launch: - /Trivia Vault Hockey Trivia.exe: + "/Trivia Vault Hockey Trivia.exe": - when: - os: windows store: steam steam: id: 828550 -'Trivia Vault: Literature Trivia': +"Trivia Vault: Literature Trivia": installDir: Trivia Vault Literature Trivia: {} launch: - /Trivia Vault Literature Trivia.exe: + "/Trivia Vault Literature Trivia.exe": - when: - os: windows store: steam steam: id: 861740 -'Trivia Vault: Mini Mixed Trivia': +"Trivia Vault: Mini Mixed Trivia": installDir: Trivia Vault Mini Mixed Trivia: {} launch: - /Trivia Vault Mini Mixed Trivia.exe: + "/Trivia Vault Mini Mixed Trivia.exe": - when: - os: windows store: steam steam: id: 706320 -'Trivia Vault: Mini Mixed Trivia 2': +"Trivia Vault: Mini Mixed Trivia 2": installDir: Trivia Vault Mini Mixed Trivia 2: {} launch: - /Trivia Vault Mini Mixed Trivia 2.exe: + "/Trivia Vault Mini Mixed Trivia 2.exe": - when: - os: windows store: steam steam: id: 706330 -'Trivia Vault: Mini Mixed Trivia 3': +"Trivia Vault: Mini Mixed Trivia 3": installDir: Trivia Vault Mini Mixed Trivia 3: {} launch: - /Trivia Vault Mini Mixed Trivia 3.exe: + "/Trivia Vault Mini Mixed Trivia 3.exe": - when: - os: windows store: steam steam: id: 710110 -'Trivia Vault: Mini Mixed Trivia 4': +"Trivia Vault: Mini Mixed Trivia 4": installDir: Trivia Vault Mini Mixed Trivia 4: {} launch: - /Trivia Vault Mini Mixed Trivia 4.exe: + "/Trivia Vault Mini Mixed Trivia 4.exe": - when: - os: windows store: steam steam: id: 710120 -'Trivia Vault: Mixed Trivia': +"Trivia Vault: Mixed Trivia": installDir: Trivia Vault Mixed Trivia: {} launch: - /Trivia Vault Mixed Trivia.exe: + "/Trivia Vault Mixed Trivia.exe": - when: - os: windows store: steam steam: id: 686550 -'Trivia Vault: Mixed Trivia 2': +"Trivia Vault: Mixed Trivia 2": installDir: Trivia Vault Mixed Trivia 2: {} launch: - /Trivia Vault Mixed Trivia 2.exe: + "/Trivia Vault Mixed Trivia 2.exe": - when: - os: windows store: steam steam: id: 796900 -'Trivia Vault: Movie Trivia': +"Trivia Vault: Movie Trivia": installDir: Trivia Vault Movie Trivia: {} launch: - /Trivia Vault Movie Trivia.exe: + "/Trivia Vault Movie Trivia.exe": - when: - os: windows store: steam steam: id: 845970 -'Trivia Vault: Music Trivia': +"Trivia Vault: Music Trivia": installDir: Trivia Vault Music Trivia: {} launch: - /Trivia Vault Music Trivia.exe: + "/Trivia Vault Music Trivia.exe": - when: - os: windows store: steam steam: id: 878270 -'Trivia Vault: Olympics Trivia': +"Trivia Vault: Olympics Trivia": installDir: Trivia Vault Olympics Trivia: {} launch: - /Trivia Vault Olympics Trivia.exe: + "/Trivia Vault Olympics Trivia.exe": - when: - os: windows store: steam steam: id: 805880 -'Trivia Vault: Science & History Trivia': +"Trivia Vault: Science & History Trivia": installDir: Trivia Vault Science & History Trivia: {} launch: - /Trivia Vault Science & History Trivia.exe: + "/Trivia Vault Science & History Trivia.exe": - when: - os: windows store: steam steam: id: 687480 -'Trivia Vault: Science & History Trivia 2': +"Trivia Vault: Science & History Trivia 2": installDir: Trivia Vault Science & History Trivia 2: {} launch: - /Trivia Vault Science & History Trivia 2.exe: + "/Trivia Vault Science & History Trivia 2.exe": - when: - os: windows store: steam steam: id: 699590 -'Trivia Vault: Soccer Trivia': +"Trivia Vault: Soccer Trivia": installDir: Trivia Vault Soccer Trivia: {} launch: - /Trivia Vault Soccer Trivia.exe: + "/Trivia Vault Soccer Trivia.exe": - when: - os: windows store: steam steam: id: 844140 -'Trivia Vault: Super Heroes Trivia': +"Trivia Vault: Super Heroes Trivia": installDir: Trivia Vault Super Heroes Trivia: {} launch: - /Trivia Vault Super Heroes Trivia.exe: + "/Trivia Vault Super Heroes Trivia.exe": - when: - os: windows store: steam steam: id: 687490 -'Trivia Vault: Super Heroes Trivia 2': +"Trivia Vault: Super Heroes Trivia 2": installDir: Trivia Vault Super Heroes Trivia 2: {} launch: - /Trivia Vault Super Heroes Trivia 2.exe: + "/Trivia Vault Super Heroes Trivia 2.exe": - when: - os: windows store: steam steam: id: 705090 -'Trivia Vault: TV Trivia': +"Trivia Vault: TV Trivia": installDir: Trivia Vault TV Trivia: {} launch: - /Trivia Vault TV Trivia.exe: + "/Trivia Vault TV Trivia.exe": - when: - os: windows store: steam steam: id: 851520 -'Trivia Vault: Technology Trivia Deluxe': +"Trivia Vault: Technology Trivia Deluxe": installDir: Trivia Vault Technology Trivia Deluxe: {} launch: - /Trivia Vault Deluxe Computer Technology.exe: + "/Trivia Vault Deluxe Computer Technology.exe": - when: - os: windows store: steam steam: id: 767030 -'Trivia Vault: Tennis Trivia': +"Trivia Vault: Tennis Trivia": installDir: Trivia Vault Tennis Trivia: {} launch: - /Trivia Vault Tennis Trivia.exe: + "/Trivia Vault Tennis Trivia.exe": - when: - os: windows store: steam steam: id: 840710 -'Trivia Vault: Toy Trivia': +"Trivia Vault: Toy Trivia": installDir: Trivia Vault Toy Trivia: {} launch: - /Trivia Vault Toy Trivia.exe: + "/Trivia Vault Toy Trivia.exe": - when: - os: windows store: steam steam: id: 860340 -'Trivia Vault: Video Game Trivia Deluxe': +"Trivia Vault: Video Game Trivia Deluxe": installDir: Trivia Vault Video Game Trivia Deluxe: {} launch: - /Trivia Vault Deluxe Video Games.exe: + "/Trivia Vault Deluxe Video Games.exe": - when: - os: windows store: steam @@ -587941,7 +589548,7 @@ Trivial Combat: installDir: Trivia Throwdown: {} launch: - /Trivia Throwdown.exe: + "/Trivia Throwdown.exe": - when: - bit: 64 os: windows @@ -587955,7 +589562,7 @@ Troid Blaster: installDir: TROID BLASTER 1.1: {} launch: - /TROID BLASTER PC SPECIAL UPDATE 4.exe: + "/TROID BLASTER PC SPECIAL UPDATE 4.exe": - when: - os: windows store: steam @@ -587965,7 +589572,7 @@ Trojan Inc.: installDir: Trojan Inc: {} launch: - /Trojan Inc. Launch.exe: + "/Trojan Inc. Launch.exe": - when: - os: windows store: steam @@ -587975,15 +589582,15 @@ Troll Control: installDir: Troll Control: {} launch: - /Troll Control.app/Contents/MacOS/Troll Control: + "/Troll Control.app/Contents/MacOS/Troll Control": - when: - os: mac store: steam - /Troll Control.x86_64: + "/Troll Control.x86_64": - when: - os: linux store: steam - /Troll Control/Troll Control.exe: + "/Troll Control/Troll Control.exe": - when: - os: windows store: steam @@ -587993,7 +589600,7 @@ Troll and I: installDir: Troll and I: {} launch: - /TrollandI.exe: + "/TrollandI.exe": - when: - bit: 64 os: windows @@ -588002,7 +589609,7 @@ Troll and I: id: 564070 Trolley Gold: files: - /Trolley_Gold: + "/Trolley_Gold": tags: - config - save @@ -588011,27 +589618,27 @@ Trolley Gold: installDir: Trolley Gold: {} launch: - /Trolley Gold.exe: + "/Trolley Gold.exe": - when: - os: windows store: steam steam: id: 498320 -'Trolley Problem, Inc.': +"Trolley Problem, Inc.": installDir: - 'Trolley Problem, Inc': {} + "Trolley Problem, Inc": {} launch: - /WindowsNoEditor/TheTrolleyProblem.exe: - - arguments: '-nohmd' + "/WindowsNoEditor/TheTrolleyProblem.exe": + - arguments: "-nohmd" when: - store: steam steam: id: 1582680 -'Trollhunters: Defenders of Arcadia': +"Trollhunters: Defenders of Arcadia": installDir: Trollhunters Defenders of Arcadia: {} launch: - /Trollhunters_x64.exe: + "/Trollhunters_x64.exe": - when: - os: windows store: steam @@ -588041,7 +589648,7 @@ Trollskog: installDir: Trollskog: {} launch: - /Trollskog.exe: + "/Trollskog.exe": - when: - os: windows store: steam @@ -588049,18 +589656,18 @@ Trollskog: id: 617450 Trombone Champ: files: - /AppData/LocalLow/Holy Wow/TromboneChamp: + "/AppData/LocalLow/Holy Wow/TromboneChamp": tags: - config - save when: - os: windows - /Library/Application Support/com.holywowstudios.trombonechamp: + "/Library/Application Support/com.holywowstudios.trombonechamp": tags: - save when: - os: mac - /Library/Application Support/com.holywowstudios.trombonechamp/tchamp_settingsv100.dat: + "/Library/Application Support/com.holywowstudios.trombonechamp/tchamp_settingsv100.dat": tags: - config when: @@ -588068,7 +589675,7 @@ Trombone Champ: installDir: TromboneChamp: {} launch: - /TromboneChamp.exe: + "/TromboneChamp.exe": - when: - os: windows store: steam @@ -588076,12 +589683,12 @@ Trombone Champ: id: 1059990 Tron 2.0: files: - /*.cfg: + "/*.cfg": tags: - config when: - os: windows - /Save: + "/Save": tags: - save when: @@ -588091,7 +589698,7 @@ Tron 2.0: installDir: Tron 2.0: {} launch: - /TronLauncher.exe: + "/TronLauncher.exe": - when: - store: steam steam: @@ -588099,14 +589706,14 @@ Tron 2.0: Tron Hockey: steam: id: 670550 -'Tron: Evolution': +"Tron: Evolution": files: - /Disney Interactive Studios/Tron Evolution/SaveData: + "/Disney Interactive Studios/Tron Evolution/SaveData": tags: - save when: - os: windows - /Disney Interactive Studios/Tron Evolution/UnrealEngine3/GridGame/Config: + "/Disney Interactive Studios/Tron Evolution/UnrealEngine3/GridGame/Config": tags: - config when: @@ -588114,22 +589721,22 @@ Tron Hockey: installDir: TRON Evolution: {} launch: - /Binaries/Win32Live/GridGameLauncher.exe: + "/Binaries/Win32Live/GridGameLauncher.exe": - when: - os: windows store: steam - workingDir: /Binaries/Win32Live + workingDir: "/Binaries/Win32Live" steam: id: 315440 -'Tron: Identity': +"Tron: Identity": installDir: Tron Identity: {} launch: - /identity.app/Contents/MacOS/identity: + "/identity.app/Contents/MacOS/identity": - when: - os: mac store: steam - /identity.exe: + "/identity.exe": - when: - os: windows store: steam @@ -588139,7 +589746,7 @@ Tronix Defender: installDir: Tronix Defender: {} launch: - /TRONIX DEFENDER.exe: + "/TRONIX DEFENDER.exe": - when: - os: windows store: steam @@ -588149,7 +589756,7 @@ Trooper 1: installDir: Trooper1: {} launch: - /Trooper.exe: + "/Trooper.exe": - when: - bit: 64 os: windows @@ -588160,7 +589767,7 @@ Trooper 2 - Alien Justice: installDir: Trooper 2 - Alien Justice: {} launch: - /Alien_Justice.exe: + "/Alien_Justice.exe": - when: - bit: 64 os: windows @@ -588171,7 +589778,7 @@ Trophy Fishing 2: installDir: Trophy Fishing 2: {} launch: - /Trophy Fishing 2.exe: + "/Trophy Fishing 2.exe": - when: - os: windows store: steam @@ -588181,7 +589788,7 @@ Tropia: installDir: Tropia: {} launch: - /Tropia.exe: + "/Tropia.exe": - when: - os: windows store: steam @@ -588191,8 +589798,8 @@ Tropical Escape: installDir: Tropical Escape: {} launch: - /TropicalEscape.exe: - - arguments: "-Iowres⠀ -benchIeveI -command\x7F" + "/TropicalEscape.exe": + - arguments: "-Iowres⠀ -benchIeveI -command\u007f" when: - os: windows store: steam @@ -588202,7 +589809,7 @@ Tropical Fish Shop 2: installDir: Tropical Fish Shop 2: {} launch: - /tfs2.exe: + "/tfs2.exe": - when: - store: steam steam: @@ -588216,19 +589823,19 @@ Tropical Liquor: installDir: Tropical Liquor: {} launch: - /tropical_liquor.exe: + "/tropical_liquor.exe": - when: - store: steam steam: id: 687920 Tropico: files: - /Games: + "/Games": tags: - save when: - os: windows - /data2: + "/data2": tags: - config when: @@ -588241,24 +589848,24 @@ Tropico: installDir: Tropico: {} launch: - /Tropico.EXE: + "/Tropico.EXE": - when: - store: steam steam: id: 33520 -'Tropico 2: Pirate Cove': +"Tropico 2: Pirate Cove": files: - /Save: + "/Save": tags: - save when: - os: windows - /Tropico2.ini: + "/Tropico2.ini": tags: - config when: - os: windows - /Tropico2Safe.ini: + "/Tropico2Safe.ini": tags: - config when: @@ -588271,19 +589878,19 @@ Tropico: installDir: Tropico 2: {} launch: - /Tropico2.exe: + "/Tropico2.exe": - when: - store: steam steam: id: 33530 Tropico 3: files: - /config.lua: + "/config.lua": tags: - config when: - os: windows - /Tropico 3/Saves: + "/Tropico 3/Saves": tags: - save when: @@ -588293,19 +589900,19 @@ Tropico 3: installDir: Tropico 3: {} launch: - /tropico3.exe: + "/tropico3.exe": - when: - store: steam steam: id: 23490 Tropico 4: files: - /Library/Application Support/Feral Interactive/Tropico 4/AppData/users: + "/Library/Application Support/Feral Interactive/Tropico 4/AppData/users": tags: - save when: - os: mac - /Tropico 4/users: + "/Tropico 4/users": tags: - save when: @@ -588316,25 +589923,25 @@ Tropico 4: gogExtra: - 1435068458 steamExtra: - - 205630 - - 205636 - - 205635 - - 205637 - - 205638 - - 205634 - - 205633 - - 205632 - - 57697 - 57695 - 57696 + - 57697 + - 205630 + - 205632 + - 205633 + - 205634 + - 205635 + - 205636 + - 205637 + - 205638 installDir: Tropico 4: {} launch: - /Tropico 4.app: + "/Tropico 4.app": - when: - os: mac store: steam - /Tropico4.exe: + "/Tropico4.exe": - when: - os: windows store: steam @@ -588342,32 +589949,32 @@ Tropico 4: id: 57690 Tropico 5: files: - /game/: + "/game/": tags: - save when: - os: linux - /game/DeveloperStorage.lua: + "/game/DeveloperStorage.lua": tags: - config when: - os: linux - /Library/Application Support/com.kalypsomedia.tropico5.steam/: + "/Library/Application Support/com.kalypsomedia.tropico5.steam/": tags: - save when: - os: mac - /Library/Application Support/com.kalypsomedia.tropico5.steam/DeveloperStorage.lua: + "/Library/Application Support/com.kalypsomedia.tropico5.steam/DeveloperStorage.lua": tags: - config when: - os: mac - /Tropico 5/: + "/Tropico 5/": tags: - save when: - os: windows - /Tropico 5/DeveloperStorage.lua: + "/Tropico 5/DeveloperStorage.lua": tags: - config when: @@ -588376,20 +589983,20 @@ Tropico 5: id: 1436885062 id: gogExtra: - - 1444303465 - 1444303206 + - 1444303465 installDir: Tropico 5: {} launch: - /Tropico5: + "/Tropico5": - when: - os: linux store: steam - /Tropico5Steam.app: + "/Tropico5Steam.app": - when: - os: mac store: steam - /Tropico5Steam.exe: + "/Tropico5Steam.exe": - when: - os: windows store: steam @@ -588397,22 +590004,22 @@ Tropico 5: id: 245620 Tropico 6: files: - /My Games/Tropico6/Saved/Config: + "/My Games/Tropico6/Saved/Config": tags: - config when: - os: windows - /My Games/Tropico6/Saved/SaveGames: + "/My Games/Tropico6/Saved/SaveGames": tags: - save when: - os: windows - /Tropico6/Saved/Config: + "/Tropico6/Saved/Config": tags: - config when: - os: linux - /Tropico6/Saved/SaveGames: + "/Tropico6/Saved/SaveGames": tags: - save when: @@ -588421,14 +590028,14 @@ Tropico 6: id: 1941218424 id: gogExtra: - - 1463977001 - - 2056767403 - - 1544940107 - - 2102177063 - - 1671445790 - - 1284035815 - 1179050475 + - 1284035815 - 1402576354 + - 1463977001 + - 1544940107 + - 1671445790 + - 2056767403 + - 2102177063 - 2144747367 steamExtra: - 881960 @@ -588442,15 +590049,15 @@ Tropico 6: installDir: Tropico 6: {} launch: - /Tropico6.app/Contents/MacOS/Tropico6: + "/Tropico6.app/Contents/MacOS/Tropico6": - when: - os: mac store: steam - /Tropico6.exe: + "/Tropico6.exe": - when: - os: windows store: steam - /Tropico6.sh: + "/Tropico6.sh": - when: - os: linux store: steam @@ -588460,7 +590067,7 @@ Tross: installDir: Tross: {} launch: - /Tross.exe: + "/Tross.exe": - when: - bit: 64 os: windows @@ -588471,7 +590078,7 @@ Trouble In The Manor: installDir: Trouble In The Manor: {} launch: - /TroubleManorClient.exe: + "/TroubleManorClient.exe": - when: - os: windows store: steam @@ -588487,7 +590094,7 @@ Trouble Juice: installDir: TROUBLE JUICE: {} launch: - /troubleJuice.exe: + "/troubleJuice.exe": - when: - os: windows store: steam @@ -588497,7 +590104,7 @@ Trouble Travel TT: installDir: Trouble Travel TT: {} launch: - /TroubleTravel.exe: + "/TroubleTravel.exe": - when: - bit: 64 os: windows @@ -588506,7 +590113,7 @@ Trouble Travel TT: id: 1007210 Trouble Witches Origin - Episode1 Daughters of Amalgam -: files: - /savedata.dat: + "/savedata.dat": tags: - save when: @@ -588514,7 +590121,7 @@ Trouble Witches Origin - Episode1 Daughters of Amalgam -: installDir: Trouble Witches Origin: {} launch: - /TW-Origin.exe: + "/TW-Origin.exe": - when: - os: windows store: steam @@ -588524,15 +590131,15 @@ Troubles Land: installDir: Troubles Land: {} launch: - /TroublesLand.app/Contents/MacOS/TroublesLand: + "/TroublesLand.app/Contents/MacOS/TroublesLand": - when: - os: mac store: steam - /TroublesLand.exe: + "/TroublesLand.exe": - when: - os: windows store: steam - /TroublesLand.x86: + "/TroublesLand.x86": - when: - os: linux store: steam @@ -588542,18 +590149,18 @@ Troubleshooter: installDir: Troubleshooter: {} launch: - /Release/bin/ProtoLion.exe: - - arguments: '--pack --usedic --steam main' + "/Release/bin/ProtoLion.exe": + - arguments: "--pack --usedic --steam main" when: - bit: 64 os: windows store: steam - workingDir: /Release/bin + workingDir: "/Release/bin" steam: id: 470310 Trove: files: - /Trove/Trove.cfg: + "/Trove/Trove.cfg": tags: - config when: @@ -588561,12 +590168,12 @@ Trove: installDir: Trove: {} launch: - /Glyph.app/Contents/MacOS/Glyph: + "/Glyph.app/Contents/MacOS/Glyph": - when: - os: mac store: steam - /GlyphClient.exe: - - arguments: '-steam' + "/GlyphClient.exe": + - arguments: "-steam" when: - os: windows store: steam @@ -588574,12 +590181,12 @@ Trove: id: 304050 Trover Saves the Universe: files: - /Trover/Saved/Config/WindowsNoEditor: + "/Trover/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /Trover/Saved/SaveGames: + "/Trover/Saved/SaveGames": tags: - save when: @@ -588587,14 +590194,14 @@ Trover Saves the Universe: installDir: Trover Saves the Universe: {} launch: - /Trover.exe: - - arguments: '-nohmd' + "/Trover.exe": + - arguments: "-nohmd" when: - bit: 64 os: windows store: steam - /Trover.sh: - - arguments: '-nohmd' + "/Trover.sh": + - arguments: "-nohmd" when: - bit: 64 os: linux @@ -588605,7 +590212,7 @@ Truck Driver: installDir: Truck Driver: {} launch: - /TruckDriver.exe: + "/TruckDriver.exe": - when: - os: windows store: steam @@ -588615,7 +590222,7 @@ Truck Life: installDir: TruckLife: {} launch: - /TruckLife.exe: + "/TruckLife.exe": - when: - os: windows store: steam @@ -588625,7 +590232,7 @@ Truck Mechanic Simulator 2015: installDir: Truck Mechanic 2015: {} launch: - /tms.exe: + "/tms.exe": - when: - store: steam steam: @@ -588634,7 +590241,7 @@ Truck Racer: installDir: Truck Racer: {} launch: - /TruckRacer.exe: + "/TruckRacer.exe": - when: - store: steam steam: @@ -588643,7 +590250,7 @@ Truck the System: installDir: Truck the System: {} launch: - /Truck The System.exe: + "/Truck The System.exe": - when: - os: windows store: steam @@ -588653,7 +590260,7 @@ Trucker: installDir: Trucker: {} launch: - /Trucker.exe: + "/Trucker.exe": - when: - os: windows store: steam @@ -588663,19 +590270,19 @@ Trucker 2: installDir: Trucker 2: {} launch: - /trucker2.exe: + "/trucker2.exe": - when: - store: steam steam: id: 392890 -Trucker's Dynasty - Cuba Libre: +"Trucker's Dynasty - Cuba Libre": steam: id: 1061210 Trucking: installDir: Trucking: {} launch: - /Trucking.exe: + "/Trucking.exe": - when: - os: windows store: steam @@ -588683,12 +590290,12 @@ Trucking: id: 1021130 Trucks & Trailers: files: - /Trucks & Trailers/config.cfg: + "/Trucks & Trailers/config.cfg": tags: - config when: - os: windows - /Trucks & Trailers/leaderboards/data: + "/Trucks & Trailers/leaderboards/data": tags: - save when: @@ -588696,7 +590303,7 @@ Trucks & Trailers: installDir: Trucks & Trailers: {} launch: - /bin/win_x86/trucks_n_trailers.exe: + "/bin/win_x86/trucks_n_trailers.exe": - when: - os: windows store: steam @@ -588711,7 +590318,7 @@ True Bliss: installDir: True Bliss: {} launch: - /TrueBliss.exe: + "/TrueBliss.exe": - when: - store: steam steam: @@ -588720,40 +590327,40 @@ True Colors: installDir: True Colors: {} launch: - /ESGame.exe: + "/ESGame.exe": - when: - bit: 64 os: windows store: steam steam: id: 1013200 -'True Crime: New York City': +"True Crime: New York City": files: - /TCNYC/Saved Games: + "/TCNYC/Saved Games": tags: - save when: - os: windows -'True Crime: Streets of LA': +"True Crime: Streets of LA": files: - /Saves: + "/Saves": tags: - save when: - os: windows - /TrueCrime.ini: + "/TrueCrime.ini": tags: - config when: - os: windows -'True Fear: Forsaken Souls Part 1': +"True Fear: Forsaken Souls Part 1": files: - /.local/share/Goblinz/TrueFear_ForsakenSouls/Profiles: + "/.local/share/Goblinz/TrueFear_ForsakenSouls/Profiles": tags: - save when: - os: mac - /Goblinz/TrueFear_ForsakenSouls/Profiles: + "/Goblinz/TrueFear_ForsakenSouls/Profiles": tags: - save when: @@ -588763,12 +590370,12 @@ True Colors: installDir: True Fear Forsaken Souls: {} launch: - /True Fear.app/Contents/MacOS/True Fear: + "/True Fear.app/Contents/MacOS/True Fear": - when: - bit: 64 os: mac store: steam - /True Fear.exe: + "/True Fear.exe": - when: - os: windows store: steam @@ -588778,14 +590385,14 @@ True Colors: - config steam: id: 440420 -'True Fear: Forsaken Souls Part 2': +"True Fear: Forsaken Souls Part 2": files: - /.local/share/Goblinz/True Fear 2/Profiles: + "/.local/share/Goblinz/True Fear 2/Profiles": tags: - save when: - os: mac - /Goblinz/True Fear 2/Profiles: + "/Goblinz/True Fear 2/Profiles": tags: - save when: @@ -588795,11 +590402,11 @@ True Colors: installDir: True Fear Forsaken Souls Part 2: {} launch: - /True Fear 2.app: + "/True Fear 2.app": - when: - os: mac store: steam - /True Fear 2.exe: + "/True Fear 2.exe": - when: - os: windows store: steam @@ -588813,7 +590420,7 @@ True Hate: installDir: True Hate: {} launch: - /True Hate.exe: + "/True Hate.exe": - when: - os: windows store: steam @@ -588823,15 +590430,15 @@ True Hentai Puzzle: installDir: True Hentai Puzzle: {} launch: - /True Hentai Puzzle.app: + "/True Hentai Puzzle.app": - when: - os: mac store: steam - /True Hentai Puzzle.exe: + "/True Hentai Puzzle.exe": - when: - os: windows store: steam - /True Hentai Puzzle.x86: + "/True Hentai Puzzle.x86": - when: - os: linux store: steam @@ -588839,49 +590446,49 @@ True Hentai Puzzle: id: 780020 True Love: installDir: - True Love '95: {} + "True Love '95": {} launch: - /TrueLove.app: + "/TrueLove.app": - when: - os: mac store: steam - /TrueLove.sh: + "/TrueLove.sh": - when: - os: linux store: steam steam: id: 1094640 -'True Love: Confide to the Maple': +"True Love: Confide to the Maple": installDir: True love ~Confide to the maple~: {} launch: - /truelove.exe: + "/truelove.exe": - when: - os: windows store: steam steam: id: 495990 -True Lover's Knot: +"True Lover's Knot": files: - /TrueLoverKnotiPad_tyrano_data.sav: + "/TrueLoverKnotiPad_tyrano_data.sav": tags: - save when: - os: windows - /data/system/Config.tjs: + "/data/system/Config.tjs": tags: - config when: - os: windows installDir: - True Lover's Knot: {} + "True Lover's Knot": {} launch: - /nw.exe: - - arguments: '--in-process-gpu' + "/nw.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam - /nwjs.app: + "/nwjs.app": - when: - os: mac store: steam @@ -588891,7 +590498,7 @@ True Mining Simulator: installDir: TrueMiningSimulator: {} launch: - /True Mining Simulator.exe: + "/True Mining Simulator.exe": - when: - os: windows store: steam @@ -588901,7 +590508,7 @@ True North: installDir: True North: {} launch: - /TrueNorth.exe: + "/TrueNorth.exe": - when: - bit: 64 os: windows @@ -588912,7 +590519,7 @@ True Skate: installDir: True Skate: {} launch: - /SkateUE.exe: + "/SkateUE.exe": - when: - bit: 64 os: windows @@ -588923,20 +590530,20 @@ True or False: installDir: True or False: {} launch: - /TrueOrFalse.app: + "/TrueOrFalse.app": - when: - os: mac store: steam - /TrueOrFalse.exe: + "/TrueOrFalse.exe": - when: - os: windows store: steam - /TrueOrFalse.x86: + "/TrueOrFalse.x86": - when: - bit: 32 os: linux store: steam - /TrueOrFalse.x86_64: + "/TrueOrFalse.x86_64": - when: - bit: 64 os: linux @@ -588947,20 +590554,20 @@ True or False 2: installDir: True or False 2: {} launch: - /TOF2.app: + "/TOF2.app": - when: - os: mac store: steam - /TOF2.exe: + "/TOF2.exe": - when: - os: windows store: steam - /TOF2.x86: + "/TOF2.x86": - when: - bit: 32 os: linux store: steam - /TOF2.x86_64: + "/TOF2.x86_64": - when: - bit: 64 os: linux @@ -588971,7 +590578,7 @@ True or False Universe: installDir: True or False Universe: {} launch: - /TOFU.exe: + "/TOFU.exe": - when: - os: windows store: steam @@ -588981,7 +590588,7 @@ Truefish: installDir: Truefish: {} launch: - /TrueFish.exe: + "/TrueFish.exe": - when: - os: windows store: steam @@ -588991,31 +590598,31 @@ Truffle Saga: installDir: Truffle Saga: {} launch: - /TruffleSaga.app: + "/TruffleSaga.app": - when: - os: mac store: steam - /TruffleSaga.exe: + "/TruffleSaga.exe": - when: - bit: 32 os: windows store: steam steam: id: 302260 -'Trulon: The Shadow Engine': +"Trulon: The Shadow Engine": installDir: Trulon The Shadow Engine: {} launch: - /Trulon.app: + "/Trulon.app": - when: - os: mac store: steam - /Trulon.exe: + "/Trulon.exe": - when: - os: windows store: steam - /Trulon.x86: - - arguments: '-force-opengl' + "/Trulon.x86": + - arguments: "-force-opengl" when: - os: linux store: steam @@ -589038,7 +590645,7 @@ Trump Vs Rocketman: installDir: Trump Vs Rocketman: {} launch: - /rocketmanvstrump.exe: + "/rocketmanvstrump.exe": - when: - bit: 64 os: windows @@ -589049,7 +590656,7 @@ Trumpy Wall: installDir: Trumpy Wall: {} launch: - /TrumpyWall.exe: + "/TrumpyWall.exe": - when: - store: steam steam: @@ -589058,7 +590665,7 @@ Trundle: installDir: Trundle: {} launch: - /Trundle.exe: + "/Trundle.exe": - when: - os: windows store: steam @@ -589068,7 +590675,7 @@ Trusty Brothers: installDir: TrustyBrothers: {} launch: - /Trusty Brothers.exe: + "/Trusty Brothers.exe": - when: - store: steam steam: @@ -589077,7 +590684,7 @@ Truth of Falchion: installDir: TRUTH OF FALCHION: {} launch: - /tof.exe: + "/tof.exe": - when: - os: windows store: steam @@ -589086,55 +590693,55 @@ Truth of Falchion: Truth or Dare?: steam: id: 733240 -'Truth: Disorder': +"Truth: Disorder": installDir: TruthDisorder: {} launch: - /TruthDisorder.app: + "/TruthDisorder.app": - when: - os: mac store: steam - /TruthDisorder.exe: + "/TruthDisorder.exe": - when: - os: windows store: steam - /TruthDisorder.sh: + "/TruthDisorder.sh": - when: - os: linux store: steam steam: id: 755350 -'Truth: Disorder II': +"Truth: Disorder II": installDir: Truth Disorder II: {} launch: - /Game.app: + "/Game.app": - when: - os: mac store: steam - /nw: + "/nw": - when: - os: linux store: steam - /nw.exe: + "/nw.exe": - when: - os: windows store: steam steam: id: 847580 -'Truth: Disorder III - Gemini / 真実:障害III - 双子座': +"Truth: Disorder III - Gemini / 真実:障害III - 双子座": installDir: Truth Disorder III - Gemini: {} launch: - /TruthDisorderIIIGemini.app: + "/TruthDisorderIIIGemini.app": - when: - os: mac store: steam - /TruthDisorderIIIGemini.exe: + "/TruthDisorderIIIGemini.exe": - when: - os: windows store: steam - /TruthDisorderIIIGemini.sh: + "/TruthDisorderIIIGemini.sh": - when: - os: linux store: steam @@ -589146,26 +590753,26 @@ Truxton: installDir: Truxton: {} launch: - /Truxton.app: + "/Truxton.app": - when: - os: mac store: steam - /Truxton.exe: + "/Truxton.exe": - when: - bit: 64 os: windows store: steam - /Truxton.x64: + "/Truxton.x64": - when: - os: linux store: steam steam: id: 2022880 -Try 'n Cry - Prologue: +"Try 'n Cry - Prologue": installDir: - Try 'n Cry - Prologue: {} + "Try 'n Cry - Prologue": {} launch: - /Try 'n Cry - Prologue.exe: + "/Try 'n Cry - Prologue.exe": - when: - os: windows store: steam @@ -589175,26 +590782,26 @@ Try Hard Parking: installDir: Try Hard Parking: {} launch: - /Mac.app/Contents/MacOS/Mac: + "/Mac.app/Contents/MacOS/Mac": - when: - os: mac store: steam - /Try-Hard-Parking-1.02A-32it.exe: + "/Try-Hard-Parking-1.02A-32it.exe": - when: - bit: 32 os: windows store: steam - /Try-Hard-Parking-Linux-1.02a.x86: + "/Try-Hard-Parking-Linux-1.02a.x86": - when: - bit: 32 os: linux store: steam - /Try-Hard-Parking-Linux-1.02a.x86_64: + "/Try-Hard-Parking-Linux-1.02a.x86_64": - when: - bit: 64 os: linux store: steam - /TryHardParking-1.01a-Win.exe: + "/TryHardParking-1.01a-Win.exe": - when: - bit: 64 os: windows @@ -589205,8 +590812,11 @@ Try To Reach 10: installDir: Try To Reach 10: {} launch: - /nw.exe: + "/nw.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam @@ -589216,7 +590826,7 @@ Try To Survive: installDir: Try To Survive: {} launch: - /TryToSurvive.exe: + "/TryToSurvive.exe": - when: - os: windows store: steam @@ -589226,7 +590836,7 @@ Try again!: installDir: Try again!: {} launch: - /ta!.exe: + "/ta!.exe": - when: - store: steam steam: @@ -589235,7 +590845,7 @@ Try not to die: installDir: Try not to die: {} launch: - /Squad.exe: + "/Squad.exe": - when: - os: windows store: steam @@ -589245,7 +590855,7 @@ Try to Fall Asleep: installDir: Try To Fall Asleep: {} launch: - /TTFA_EarlyAccess.exe: + "/TTFA_EarlyAccess.exe": - when: - os: windows store: steam @@ -589255,7 +590865,7 @@ Try to Seize Me: installDir: Try to seize me: {} launch: - /TryToSeizeMe.exe: + "/TryToSeizeMe.exe": - when: - os: windows store: steam @@ -589265,7 +590875,7 @@ TrymenT -Ima o Kaetai to Negau Anata e- AlphA: installDir: TrymenT: {} launch: - /TrymenT_AlphA.exe: + "/TrymenT_AlphA.exe": - when: - store: steam steam: @@ -589274,7 +590884,7 @@ TrymenT ―Ima o Kaetai to Negau Anata e―: installDir: TrymenT: {} launch: - /TrymenT_AlphA.exe: + "/TrymenT_AlphA.exe": - when: - store: steam steam: @@ -589283,17 +590893,20 @@ Trynitz: installDir: malhon: {} launch: - /MalhonOne.exe: + "/MalhonOne.exe": - when: - os: windows store: steam + - bit: 32 + os: windows + store: steam steam: id: 757810 Trysaria: installDir: Trysaria: {} launch: - /Trysaria.exe: + "/Trysaria.exe": - when: - os: windows store: steam @@ -589303,8 +590916,8 @@ Tryst: installDir: Tryst: {} launch: - /GameClient/Tryst.exe: - - arguments: '-skipoptionsload -biglog -skipbalance -newmain -usesteam -disablelanguagetest' + "/GameClient/Tryst.exe": + - arguments: "-skipoptionsload -biglog -skipbalance -newmain -usesteam -disablelanguagetest" when: - store: steam steam: @@ -589313,7 +590926,7 @@ Tráfico: installDir: TRAFICO: {} launch: - /TRAFICO.exe: + "/TRAFICO.exe": - when: - os: windows store: steam @@ -589321,22 +590934,22 @@ Tráfico: id: 769220 Trüberbrook: files: - /AppData/LocalLow/BTF/Truberbrook: + "/AppData/LocalLow/BTF/Truberbrook": tags: - config when: - os: windows - /AppData/LocalLow/BTF/Truberbrook/*.save: + "/AppData/LocalLow/BTF/Truberbrook/*.save": tags: - save when: - os: windows - /unity3d/BTF/Truberbrook: + "/unity3d/BTF/Truberbrook": tags: - config when: - os: linux - /unity3d/BTF/Truberbrook/*.save: + "/unity3d/BTF/Truberbrook/*.save": tags: - save when: @@ -589349,15 +590962,15 @@ Trüberbrook: installDir: Truberbrook: {} launch: - /Truberbrook.app: + "/Truberbrook.app": - when: - os: mac store: steam - /Truberbrook.exe: + "/Truberbrook.exe": - when: - os: windows store: steam - /Truberbrook.x86: + "/Truberbrook.x86": - when: - os: linux store: steam @@ -589365,13 +590978,13 @@ Trüberbrook: id: 757300 Tsioque: files: - /steamapps/common/TSIOQUE/dat.xlg (STEAM): + "/steamapps/common/TSIOQUE/dat.xlg (STEAM)": tags: - save when: - os: windows store: steam - /com.ohnoo.tsioque/Local Store/dat.xlg (GOG): + "/com.ohnoo.tsioque/Local Store/dat.xlg (GOG)": tags: - save when: @@ -589381,11 +590994,11 @@ Tsioque: installDir: TSIOQUE: {} launch: - /Tsioque.app: + "/Tsioque.app": - when: - os: mac store: steam - /Tsioque.exe: + "/Tsioque.exe": - when: - os: windows store: steam @@ -589395,7 +591008,7 @@ Tsugunohi: installDir: TSUGUNOHI: {} launch: - /Tsugunohi_Launcher.exe: + "/Tsugunohi_Launcher.exe": - when: - store: steam steam: @@ -589405,11 +591018,11 @@ Tsukai Furushita Kotoba Ya Uta Wo MV: TsukaiFurushitaKotobaYaUtaWoMV: {} steam: id: 1165570 -'Tsukikage no Simulacre: Kaihou no Hane': +"Tsukikage no Simulacre: Kaihou no Hane": installDir: tsukikage: {} launch: - /tuki2.exe: + "/tuki2.exe": - when: - store: steam steam: @@ -589418,7 +591031,7 @@ Tsukumohime: installDir: TSUKUMOHIME: {} launch: - /TSUKUMOHIME.exe: + "/TSUKUMOHIME.exe": - when: - os: windows store: steam @@ -589428,7 +591041,7 @@ Tsukumono / つくもの: installDir: Tsukumono: {} launch: - /Tsukumono.exe: + "/Tsukumono.exe": - when: - os: windows store: steam @@ -589438,7 +591051,7 @@ Tsumi: installDir: Tsumi: {} launch: - /Tsumi.exe: + "/Tsumi.exe": - when: - bit: 64 os: windows @@ -589454,21 +591067,21 @@ Tsundere Idol: installDir: TsundereIdol: {} launch: - /TsundereIdol.app: + "/TsundereIdol.app": - when: - os: mac store: steam - /TsundereIdol.exe: + "/TsundereIdol.exe": - when: - os: windows store: steam - /TsundereIdol.sh: + "/TsundereIdol.sh": - when: - os: linux store: steam steam: id: 795160 -'Tsuro: The Game of The Path - VR Edition': +"Tsuro: The Game of The Path - VR Edition": installDir: Tsuro - The Game of The Path: {} steam: @@ -589477,11 +591090,11 @@ Tube Tycoon: installDir: Tube Tycoon: {} launch: - /Tube Tycoon.app: + "/Tube Tycoon.app": - when: - os: mac store: steam - /Tube Tycoon.exe: + "/Tube Tycoon.exe": - when: - os: windows store: steam @@ -589491,17 +591104,17 @@ TubeLife: installDir: TUBELIVE: {} launch: - /TUBELIVE.exe: + "/TUBELIVE.exe": - when: - os: windows store: steam steam: id: 657510 -Tuber's Run: +"Tuber's Run": installDir: - Tuber`s Run: {} + "Tuber`s Run": {} launch: - /Tuber`s Run.exe: + "/Tuber`s Run.exe": - when: - store: steam steam: @@ -589510,15 +591123,15 @@ Tubetastic World Splashfest: installDir: Tubetastic World Splashfest: {} launch: - /Tubetastic_20: + "/Tubetastic_20": - when: - os: linux store: steam - /Tubetastic_20.app: + "/Tubetastic_20.app": - when: - os: mac store: steam - /tubetastic_game.exe: + "/tubetastic_game.exe": - when: - os: windows store: steam @@ -589533,7 +591146,7 @@ Tubular Rift: installDir: Tubular Rift: {} launch: - /TubularRift.exe: + "/TubularRift.exe": - when: - os: windows store: steam @@ -589543,7 +591156,7 @@ Tuebor: installDir: Tuebor: {} launch: - /Tuebor.exe: + "/Tuebor.exe": - when: - bit: 64 os: windows @@ -589554,11 +591167,11 @@ Tug: installDir: TUG: {} launch: - /TUG.exe: + "/TUG.exe": - when: - bit: 64 store: steam - /TUG32.exe: + "/TUG32.exe": - when: - bit: 32 store: steam @@ -589573,7 +591186,7 @@ Tuk Ruk: installDir: TukRuk: {} launch: - /tukruk.exe: + "/tukruk.exe": - when: - os: windows store: steam @@ -589581,7 +591194,7 @@ Tuk Ruk: id: 375720 Tulpa: files: - /Library/Preferences/unity.Encryptique.Tulpa.plist: + "/Library/Preferences/unity.Encryptique.Tulpa.plist": tags: - config when: @@ -589589,20 +591202,20 @@ Tulpa: installDir: Tulpa: {} launch: - /Tulpa.app: + "/Tulpa.app": - when: - os: mac store: steam - /Tulpa.exe: + "/Tulpa.exe": - when: - os: windows store: steam - /Tulpa.x86: + "/Tulpa.x86": - when: - bit: 32 os: linux store: steam - /Tulpa.x86_64: + "/Tulpa.x86_64": - when: - bit: 64 os: linux @@ -589616,7 +591229,7 @@ Tulpa: id: 331340 TumbleSeed: files: - /userdata//457890/remote/playersavedata.tumbleseed: + "/userdata//457890/remote/playersavedata.tumbleseed": tags: - save when: @@ -589624,11 +591237,11 @@ TumbleSeed: installDir: TumbleSeed: {} launch: - /TumbleSeed.app: + "/TumbleSeed.app": - when: - os: mac store: steam - /TumbleSeed.exe: + "/TumbleSeed.exe": - when: - os: windows store: steam @@ -589640,17 +591253,17 @@ TumbleSeed: id: 457890 Tumblestone: files: - /Tumblestone: + "/Tumblestone": tags: - save when: - os: windows - /unity3d/The Quantum Astrophysicists Guild/Tumblestone/*.local: + "/unity3d/The Quantum Astrophysicists Guild/Tumblestone/*.local": tags: - save when: - os: linux - /unity3d/The Quantum Astrophysicists Guild/Tumblestone/prefs: + "/unity3d/The Quantum Astrophysicists Guild/Tumblestone/prefs": tags: - config when: @@ -589658,15 +591271,15 @@ Tumblestone: installDir: Tumblestone: {} launch: - /Tumblestone.app/Contents/MacOS/Tumblestone: + "/Tumblestone.app/Contents/MacOS/Tumblestone": - when: - os: mac store: steam - /Tumblestone.exe: + "/Tumblestone.exe": - when: - os: windows store: steam - /run.sh: + "/run.sh": - when: - os: linux store: steam @@ -589676,15 +591289,15 @@ Tumbleweed Express: installDir: Tumbleweed Express: {} launch: - /TumbleweedExpress.app/Contents/MacOS/TumbleweedExpress: + "/TumbleweedExpress.app/Contents/MacOS/TumbleweedExpress": - when: - os: mac store: steam - /TumbleweedExpress.exe: + "/TumbleweedExpress.exe": - when: - os: windows store: steam - /TumbleweedExpress.x86: + "/TumbleweedExpress.x86": - when: - os: linux store: steam @@ -589692,7 +591305,7 @@ Tumbleweed Express: id: 372350 Tunche: files: - /AppData/LocalLow/Leap Game Studios/Tunche: + "/AppData/LocalLow/Leap Game Studios/Tunche": tags: - save when: @@ -589705,17 +591318,17 @@ Tunche: installDir: Tunche: {} launch: - /Tunche.exe: + "/Tunche.exe": - when: - os: windows store: steam steam: id: 887450 -'Tunche: Arena': +"Tunche: Arena": installDir: Tunche Arena: {} launch: - /Tunche.exe: + "/Tunche.exe": - when: - os: windows store: steam @@ -589725,7 +591338,7 @@ Tune the Tone: installDir: Tune the Tone: {} launch: - /Tune the Tone.exe: + "/Tune the Tone.exe": - when: - bit: 64 os: windows @@ -589735,9 +591348,9 @@ Tune the Tone: Tungulus: steam: id: 636470 -'Tunguska: The Visitation': +"Tunguska: The Visitation": files: - /AppData/LocalLow/RotoristWorkshop/Tunguska: + "/AppData/LocalLow/RotoristWorkshop/Tunguska": tags: - config - save @@ -589748,7 +591361,7 @@ Tungulus: installDir: Tunguska The Visitation: {} launch: - /Tunguska.exe: + "/Tunguska.exe": - when: - os: windows store: steam @@ -589756,17 +591369,17 @@ Tungulus: id: 1601970 Tunic: files: - /AppData/LocalLow/Andrew Shouldice/Secret Legend/SAVES/*.tunic: + "/AppData/LocalLow/Andrew Shouldice/Secret Legend/SAVES/*.tunic": tags: - save when: - os: windows - /Library/Application Support/Andrew Shouldice/Secret Legend/SAVES: + "/Library/Application Support/Andrew Shouldice/Secret Legend/SAVES": tags: - save when: - os: mac - /Packages/Finji.TUNIC_tys0ffscxatjj/SystemAppData/wgs: + "/Packages/Finji.TUNIC_tys0ffscxatjj/SystemAppData/wgs": tags: - save when: @@ -589777,11 +591390,11 @@ Tunic: installDir: TUNIC: {} launch: - /Tunic.app: + "/Tunic.app": - when: - os: mac store: steam - /Tunic.exe: + "/Tunic.exe": - when: - os: windows store: steam @@ -589797,7 +591410,7 @@ Tunnel B1: installDir: TunnelB1: {} launch: - /runTunnelB1.sh: + "/runTunnelB1.sh": - when: - os: linux store: steam @@ -589807,7 +591420,7 @@ Tunnel Divers: installDir: TUNNEL DIVERS: {} launch: - /TunnelDivers.exe: + "/TunnelDivers.exe": - when: - os: windows store: steam @@ -589815,12 +591428,12 @@ Tunnel Divers: id: 569720 Tunnel Rats: files: - /My Games/Tunnelrats/config.ini: + "/My Games/Tunnelrats/config.ini": tags: - config when: - os: windows - /My Games/Tunnelrats/saves/options.cfg: + "/My Games/Tunnelrats/saves/options.cfg": tags: - config when: @@ -589828,7 +591441,7 @@ Tunnel Rats: installDir: Tunnel Rats: {} launch: - /Launcher.exe: + "/Launcher.exe": - when: - store: steam steam: @@ -589842,8 +591455,8 @@ Tunnel VR: installDir: Tunnel VR: {} launch: - /Tunnel.exe: - - arguments: '-novr' + "/Tunnel.exe": + - arguments: "-novr" when: - os: windows store: steam @@ -589853,7 +591466,7 @@ Tunnel Vision: installDir: Tunnel Vision: {} launch: - /TunnelVision.exe: + "/TunnelVision.exe": - when: - store: steam steam: @@ -589864,34 +591477,34 @@ Tunnel of Doom: installDir: Tunnel of Doom: {} launch: - /TOD.exe: + "/TOD.exe": - when: - store: steam steam: id: 1361840 -'Tunnels & Trolls: Crusaders of Khazan': +"Tunnels & Trolls: Crusaders of Khazan": files: - /CROS.*: + "/CROS.*": tags: - save when: - os: dos - /GCON.DAT: + "/GCON.DAT": tags: - config when: - os: dos - /MIND.*: + "/MIND.*": tags: - save when: - os: dos - /MOUT.*: + "/MOUT.*": tags: - save when: - os: dos - /PDAT.*: + "/PDAT.*": tags: - save when: @@ -589900,7 +591513,7 @@ Tunnels of Despair: installDir: Tunnels of Despair: {} launch: - /TunnelsOfDespair.exe: + "/TunnelsOfDespair.exe": - when: - bit: 64 os: windows @@ -589911,7 +591524,7 @@ Tupã: installDir: Tupã: {} launch: - /TupaWin32/Tupa.exe: + "/TupaWin32/Tupa.exe": - when: - store: steam steam: @@ -589920,7 +591533,7 @@ TurbOT Racing: installDir: TurbOT Racing: {} launch: - /TurbOTRacing.exe: + "/TurbOTRacing.exe": - when: - bit: 64 os: windows @@ -589931,7 +591544,7 @@ Turba: installDir: Turba: {} launch: - /Turba.exe: + "/Turba.exe": - when: - store: steam steam: @@ -589940,11 +591553,11 @@ Turbo Dismount: installDir: TurboDismount: {} launch: - /TurboDismount.app/Contents/MacOS/Turbo Dismount: + "/TurboDismount.app/Contents/MacOS/Turbo Dismount": - when: - os: mac store: steam - /TurboDismount.exe: + "/TurboDismount.exe": - when: - os: windows store: steam @@ -589959,14 +591572,14 @@ Turbo Golf Racing: installDir: Turbo Golf Racing: {} launch: - /Turbo Golf Racing.exe: + "/Turbo Golf Racing.exe": - when: - store: steam steam: id: 1324350 Turbo Overkill: files: - /AppData/LocalLow/Trigger Happy Interactive/Turbo Overkill/Saves: + "/AppData/LocalLow/Trigger Happy Interactive/Turbo Overkill/Saves": tags: - save when: @@ -589976,7 +591589,7 @@ Turbo Overkill: installDir: Turbo Overkill: {} launch: - /Turbo Overkill.exe: + "/Turbo Overkill.exe": - when: - os: windows store: steam @@ -589990,7 +591603,7 @@ Turbo Plane: installDir: Turbo Plane: {} launch: - /Turbo Plane.exe: + "/Turbo Plane.exe": - when: - os: windows store: steam @@ -590000,17 +591613,20 @@ Turbo Pug: installDir: Turbo Pug: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam + - bit: 32 + os: windows + store: steam steam: id: 418070 Turbo Pug 3D: installDir: Turbo Pug 3D: {} launch: - /Turbo Pug 3D.exe: + "/Turbo Pug 3D.exe": - when: - os: windows store: steam @@ -590020,7 +591636,7 @@ Turbo Pug DX: installDir: Turbo Pug DX: {} launch: - /turbopugDX.exe: + "/turbopugDX.exe": - when: - os: windows store: steam @@ -590030,11 +591646,11 @@ Turbo Sloths: installDir: Turbo Sloths: {} launch: - /TurboSloths.exe: + "/TurboSloths.exe": - when: - os: windows store: steam - - arguments: '-d3d11' + - arguments: "-d3d11" when: - os: windows store: steam @@ -590049,7 +591665,7 @@ Turbo Tunnel: installDir: Turbo Tunnel: {} launch: - /Pipeline.exe: + "/Pipeline.exe": - when: - bit: 64 os: windows @@ -590060,31 +591676,31 @@ Turf Wars: installDir: Turf Wars: {} launch: - /TurfWars.exe: + "/TurfWars.exe": - when: - os: windows store: steam steam: id: 713760 -'Turgul: Rapid Fighting': +"Turgul: Rapid Fighting": installDir: TURGUL RAPID FIGHTING: {} launch: - /TURGUL-RAPID FIGHTING_V-2-5.exe: + "/TURGUL-RAPID FIGHTING_V-2-5.exe": - when: - os: windows store: steam - /TURGUL-RAPID FIGHTING_V-2-5_Linux.x86: + "/TURGUL-RAPID FIGHTING_V-2-5_Linux.x86": - when: - bit: 32 os: linux store: steam - /TURGUL-RAPID FIGHTING_V-2-5_Linux.x86_64: + "/TURGUL-RAPID FIGHTING_V-2-5_Linux.x86_64": - when: - bit: 64 os: linux store: steam - /TURGUL-RAPID FIGHTING_V-2-5_Mac.app/Contents/MacOS/TURGUL-RAPID FIGHTING_V-2-5_Mac: + "/TURGUL-RAPID FIGHTING_V-2-5_Mac.app/Contents/MacOS/TURGUL-RAPID FIGHTING_V-2-5_Mac": - when: - os: mac store: steam @@ -590097,17 +591713,17 @@ Turing Tumble VR: id: 898440 Turmoil: files: - /.config/TurmoilSteam: + "/.config/TurmoilSteam": tags: - save when: - os: linux - /Gamious/Turmoil: + "/Gamious/Turmoil": tags: - save when: - os: windows - /TurmoilSteam: + "/TurmoilSteam": tags: - config when: @@ -590117,15 +591733,15 @@ Turmoil: installDir: Turmoil: {} launch: - /Turmoil.app: + "/Turmoil.app": - when: - os: mac store: steam - /Turmoil.exe: + "/Turmoil.exe": - when: - os: windows store: steam - /Turmoil.x86_64: + "/Turmoil.x86_64": - when: - os: linux store: steam @@ -590135,7 +591751,7 @@ Turn: installDir: Turn: {} launch: - /launcher.exe: + "/launcher.exe": - when: - bit: 64 os: windows @@ -590154,7 +591770,7 @@ Turn Up Jeans: installDir: Turn up jeans: {} launch: - /Turn up jeans.exe: + "/Turn up jeans.exe": - when: - os: windows store: steam @@ -590163,11 +591779,11 @@ Turn Up Jeans: Turn the Bridge: steam: id: 934050 -'Turn the mirror, please.': +"Turn the mirror, please.": installDir: TTMP: {} launch: - /TTMP.exe: + "/TTMP.exe": - when: - store: steam steam: @@ -590176,7 +591792,7 @@ Turn your Destiny: installDir: Turn your Destiny: {} launch: - /TYD.exe: + "/TYD.exe": - when: - os: windows store: steam @@ -590186,26 +591802,26 @@ Turn-Based Champion: installDir: Turn-Based Champion: {} launch: - /TurnBasedChampion: + "/TurnBasedChampion": - when: - bit: 64 os: linux store: steam - /TurnBasedChampion.dmg: + "/TurnBasedChampion.dmg": - when: - os: mac store: steam - /TurnBasedChampion.exe: + "/TurnBasedChampion.exe": - when: - bit: 64 os: windows store: steam - /TurnBasedChampion32: + "/TurnBasedChampion32": - when: - bit: 32 os: linux store: steam - /TurnBasedChampion32.exe: + "/TurnBasedChampion32.exe": - when: - bit: 32 os: windows @@ -590216,11 +591832,11 @@ TurnOn: installDir: TurnOn: {} launch: - /TurnOn.app/Contents/MacOS/TurnOn: + "/TurnOn.app/Contents/MacOS/TurnOn": - when: - os: mac store: steam - /TurnOn.exe: + "/TurnOn.exe": - when: - os: windows store: steam @@ -590234,7 +591850,7 @@ TurnTack: installDir: TurnTack: {} launch: - /TurnTack.exe: + "/TurnTack.exe": - when: - bit: 64 os: windows @@ -590245,24 +591861,24 @@ Turner: installDir: Turner: {} launch: - /Turner.app: + "/Turner.app": - when: - os: mac store: steam - /Turner.exe: + "/Turner.exe": - when: - os: windows store: steam steam: id: 499340 -'Turning Point: Fall of Liberty': +"Turning Point: Fall of Liberty": files: - /My Games/Turning Point/TPGame/Config: + "/My Games/Turning Point/TPGame/Config": tags: - config when: - os: windows - /My Games/Turning Point/TPGame/SaveData: + "/My Games/Turning Point/TPGame/SaveData": tags: - save when: @@ -590270,26 +591886,26 @@ Turner: installDir: Turning Point Fall of Liberty: {} launch: - /binaries/LTCG-TPGame.exe: + "/binaries/LTCG-TPGame.exe": - when: - store: steam - workingDir: /binaries + workingDir: "/binaries" steam: id: 12720 Turnip Boy Commits Tax Evasion: files: - /AppData/LocalLow/Snoozy Kazoo/Turnip Boy Commits Tax Evasion: + "/AppData/LocalLow/Snoozy Kazoo/Turnip Boy Commits Tax Evasion": tags: - save when: - os: windows - /Packages/GraffitiGames.TurnipBoyCommitsTaxEvasion_zs4fqap7s3pxa/SystemAppData/wgs: + "/Packages/GraffitiGames.TurnipBoyCommitsTaxEvasion_zs4fqap7s3pxa/SystemAppData/wgs": tags: - save when: - os: windows store: microsoft - /unity3d/Snoozy Kazoo/Turnip Boy Commits Tax Evasion: + "/unity3d/Snoozy Kazoo/Turnip Boy Commits Tax Evasion": tags: - config - save @@ -590300,16 +591916,16 @@ Turnip Boy Commits Tax Evasion: installDir: Turnip Boy Commits Tax Evasion: {} launch: - /Turnip Boy Commits Tax Evasion.app: + "/Turnip Boy Commits Tax Evasion.app": - when: - os: mac store: steam - /Turnip Boy Commits Tax Evasion.exe: + "/Turnip Boy Commits Tax Evasion.exe": - when: - bit: 64 os: windows store: steam - /Turnip Boy Commits Tax Evasion.x86_64: + "/Turnip Boy Commits Tax Evasion.x86_64": - when: - bit: 64 os: linux @@ -590325,19 +591941,19 @@ Turnip Boy Robs a Bank: id: 2097230 Turnover: files: - /Documents/SaveGames/Turnover: + "/Documents/SaveGames/Turnover": tags: - config - save when: - os: mac - /My Games/Turnover: + "/My Games/Turnover": tags: - config - save when: - os: windows - /turnover: + "/turnover": tags: - config - save @@ -590346,15 +591962,15 @@ Turnover: installDir: Turnover: {} launch: - /Turnover.app: + "/Turnover.app": - when: - os: mac store: steam - /turnover: + "/turnover": - when: - os: linux store: steam - /turnover.exe: + "/turnover.exe": - when: - os: windows store: steam @@ -590362,25 +591978,25 @@ Turnover: id: 372250 Turok: files: - /TurokGame/Config: + "/TurokGame/Config": tags: - config when: - os: windows - /Touchstone/Turok: + "/Touchstone/Turok": tags: - save when: - os: windows -'Turok 2: Seeds of Evil (2017)': +"Turok 2: Seeds of Evil (2017)": files: - /kexengine.cfg: + "/kexengine.cfg": tags: - config when: - os: windows - os: linux - /saves: + "/saves": tags: - save when: @@ -590391,37 +592007,37 @@ Turok: installDir: Turok 2 - Seeds of Evil: {} launch: - /Turok 2 EX.app: + "/Turok 2 EX.app": - when: - os: mac store: steam - /Turok2EX: + "/Turok2EX": - when: - bit: 64 os: linux store: steam - /horus_x64.exe: + "/horus_x64.exe": - when: - bit: 64 os: windows store: steam steam: id: 405830 -'Turok 3: Shadow of Oblivion Remastered': +"Turok 3: Shadow of Oblivion Remastered": gog: id: 1486389942 steam: id: 1996770 -'Turok: Dinosaur Hunter (2015)': +"Turok: Dinosaur Hunter (2015)": files: - /config.cfg: + "/config.cfg": tags: - config when: - os: windows - os: mac - os: linux - /saves: + "/saves": tags: - save when: @@ -590433,34 +592049,34 @@ Turok: installDir: Turok: {} launch: - /Turok EX.app: + "/Turok EX.app": - when: - os: mac store: steam - /TurokEx: + "/TurokEx": - when: - bit: 64 os: linux store: steam - /sobek.exe: + "/sobek.exe": - when: - os: windows store: steam steam: id: 405820 -'Turok: Escape from Lost Valley': +"Turok: Escape from Lost Valley": installDir: Turok Escape from Lost Valley: {} launch: - /Turok Escape From Lost Valley.exe: + "/Turok Escape From Lost Valley.exe": - when: - os: windows store: steam steam: id: 1078560 -'Turok: Evolution': +"Turok: Evolution": files: - /save: + "/save": tags: - save when: @@ -590476,7 +592092,7 @@ Turret Sector: installDir: Turret Sector: {} launch: - /Turret Sector.exe: + "/Turret Sector.exe": - when: - os: windows store: steam @@ -590486,7 +592102,7 @@ Turret Syndrome: installDir: TURRETSYNDROME: {} launch: - /TURRETSYNDROME.exe: + "/TURRETSYNDROME.exe": - when: - bit: 64 os: windows @@ -590497,7 +592113,7 @@ Turret Tech: installDir: Turret Tech: {} launch: - /TT.exe: + "/TT.exe": - when: - store: steam steam: @@ -590509,7 +592125,7 @@ TurretCraft: installDir: TurretCraft: {} launch: - /TurretCraft.exe: + "/TurretCraft.exe": - when: - os: windows store: steam @@ -590519,7 +592135,7 @@ TurretMaster: installDir: TurretMaster: {} launch: - /TurretMaster.exe: + "/TurretMaster.exe": - when: - os: windows store: steam @@ -590529,7 +592145,7 @@ Turtle Lu: installDir: Turtle Lu: {} launch: - /TurtleLu.exe: + "/TurtleLu.exe": - when: - os: windows store: steam @@ -590539,7 +592155,7 @@ Turtle Odyssey: installDir: Turtle Odyssey: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: @@ -590548,7 +592164,7 @@ Turtle Quest: installDir: Turtle Quest: {} launch: - /Turtle Quest.exe: + "/Turtle Quest.exe": - when: - os: windows store: steam @@ -590558,7 +592174,7 @@ Turtle Rush: installDir: TurtleRush: {} launch: - /ProjectTurtle.exe: + "/ProjectTurtle.exe": - when: - os: windows store: steam @@ -590569,21 +592185,21 @@ Turtle VR: Turtle VR: {} steam: id: 413750 -'Turtle: Voidrunner': +"Turtle: Voidrunner": installDir: Turtle Voidrunner: {} launch: - /TurtleVoidrunner.exe: + "/TurtleVoidrunner.exe": - when: - os: windows store: steam steam: id: 729180 -Tusker's Number Adventure: +"Tusker's Number Adventure": installDir: Tuskers Number Adventure: {} launch: - /Tuskers Number Adventure.exe: + "/Tuskers Number Adventure.exe": - when: - os: windows store: steam @@ -590591,12 +592207,12 @@ Tusker's Number Adventure: id: 1063240 Tux Racer: files: - /config: + "/config": tags: - save when: - os: windows - /config/options.txt: + "/config/options.txt": tags: - config when: @@ -590607,15 +592223,15 @@ Tux and Fanny: installDir: Tux and Fanny: {} launch: - /TuxAndFanny.app: + "/TuxAndFanny.app": - when: - os: mac store: steam - /TuxAndFanny/TuxAndFanny.exe: + "/TuxAndFanny/TuxAndFanny.exe": - when: - os: windows store: steam - /TuxAndFanny_Linux/TuxAndFanny.x86_64: + "/TuxAndFanny_Linux/TuxAndFanny.x86_64": - when: - os: linux store: steam @@ -590626,13 +592242,13 @@ Twaddle Paddle: id: 1008590 Twelve Minutes: files: - /AppData/LocalLow/Nomada/Twelve Minutes: + "/AppData/LocalLow/Nomada/Twelve Minutes": tags: - config - save when: - os: windows - /Packages/AnnapurnaInteractive.TwelveMinutes_c96c51jf6wkvm/SystemAppData/wgs: + "/Packages/AnnapurnaInteractive.TwelveMinutes_c96c51jf6wkvm/SystemAppData/wgs": tags: - config when: @@ -590641,11 +592257,11 @@ Twelve Minutes: installDir: Twelve Minutes: {} launch: - /12M.app: + "/12M.app": - when: - os: mac store: steam - /12M.exe: + "/12M.exe": - when: - os: windows store: steam @@ -590655,7 +592271,7 @@ TwelveSky 2 Classic: installDir: TwelveSky 2 Classic: {} launch: - /RFstl.exe: + "/RFstl.exe": - when: - os: windows store: steam @@ -590665,31 +592281,31 @@ Twerk it Girl!: installDir: Twerk it Girl!: {} launch: - /Twerk it Girl!.exe: + "/Twerk it Girl!.exe": - when: - os: windows store: steam steam: id: 2300070 -'Twice Reborn: a vampire visual novel': +"Twice Reborn: a vampire visual novel": installDir: Twice Reborn a vampire visual novel: {} launch: - /TwiceReborn-1.00-market/TwiceReborn-32.exe: + "/TwiceReborn-1.00-market/TwiceReborn-32.exe": - when: - bit: 32 os: windows store: steam - /TwiceReborn-1.00-market/TwiceReborn.app: + "/TwiceReborn-1.00-market/TwiceReborn.app": - when: - os: mac store: steam - /TwiceReborn-1.00-market/TwiceReborn.exe: + "/TwiceReborn-1.00-market/TwiceReborn.exe": - when: - bit: 64 os: windows store: steam - /TwiceReborn-1.00-market/TwiceReborn.sh: + "/TwiceReborn-1.00-market/TwiceReborn.sh": - when: - os: linux store: steam @@ -590697,12 +592313,12 @@ Twerk it Girl!: id: 1137100 Twickles: files: - /Twickles_Data/savegame.dat: + "/Twickles_Data/savegame.dat": tags: - save when: - os: windows - /Twickles_Data/settings.xml: + "/Twickles_Data/settings.xml": tags: - config when: @@ -590710,31 +592326,31 @@ Twickles: installDir: Twickles: {} launch: - /Twickles.app/Contents/MacOS/Twickles: + "/Twickles.app/Contents/MacOS/Twickles": - when: - os: mac store: steam - /Twickles.exe: + "/Twickles.exe": - when: - os: windows store: steam - /Twickles.x86: + "/Twickles.x86": - when: - bit: 32 os: linux store: steam - /Twickles.x86_64: + "/Twickles.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 695110 -'Twilight City: Love as a Cure': +"Twilight City: Love as a Cure": installDir: Twilight City Love as a Cure: {} launch: - /DeadCity.exe: + "/DeadCity.exe": - when: - store: steam steam: @@ -590744,31 +592360,31 @@ Twilight Path: Twilight Path: {} steam: id: 770110 -'Twilight Phenomena: Strange Menagerie': +"Twilight Phenomena: Strange Menagerie": installDir: - Twilight Phenomena Strange Menagerie Collector's Edition: {} + "Twilight Phenomena Strange Menagerie Collector's Edition": {} launch: - /TwilightPhenomena_StrangeMenagerie_CE.exe: + "/TwilightPhenomena_StrangeMenagerie_CE.exe": - when: - os: windows store: steam steam: id: 723960 -'Twilight Phenomena: The Incredible Show': +"Twilight Phenomena: The Incredible Show": installDir: - Twilight Phenomena The Incredible Show Collector's Edition: {} + "Twilight Phenomena The Incredible Show Collector's Edition": {} launch: - /TwilightPhenomena_The_Incredible_Show_CE.exe: + "/TwilightPhenomena_The_Incredible_Show_CE.exe": - when: - os: windows store: steam steam: id: 826430 -'Twilight Phenomena: The Lodgers of House 13': +"Twilight Phenomena: The Lodgers of House 13": installDir: - Twilight Phenomena The Lodgers of House 13 Collector's Edition: {} + "Twilight Phenomena The Lodgers of House 13 Collector's Edition": {} launch: - /TwilightPhenomena_LodgersOfHouse13_CE.exe: + "/TwilightPhenomena_LodgersOfHouse13_CE.exe": - when: - os: windows store: steam @@ -590778,7 +592394,7 @@ Twilight Spirits: installDir: Twilight Spirits: {} launch: - /launch.exe: + "/launch.exe": - when: - os: windows store: steam @@ -590786,7 +592402,7 @@ Twilight Spirits: id: 616090 Twilight Struggle: files: - /AppData/LocalLow/Playdek/TwilightStruggle: + "/AppData/LocalLow/Playdek/TwilightStruggle": tags: - save when: @@ -590794,11 +592410,11 @@ Twilight Struggle: installDir: Twilight Struggle: {} launch: - /TwilightStruggle.app/Contents/MacOS/TwilightStruggle: + "/TwilightStruggle.app/Contents/MacOS/TwilightStruggle": - when: - os: mac store: steam - /TwilightStruggle.exe: + "/TwilightStruggle.exe": - when: - os: windows store: steam @@ -590812,7 +592428,7 @@ Twilight Town: installDir: Twilight Town: {} launch: - /TwilightTown.exe: + "/TwilightTown.exe": - when: - os: windows store: steam @@ -590822,21 +592438,21 @@ Twilight on Yulestead: installDir: Twilight on Yulestead: {} launch: - /toy.exe: + "/toy.exe": - when: - os: windows store: steam steam: id: 789980 -Twilight's Last Gleaming: +"Twilight's Last Gleaming": installDir: - Twilight's Last Gleaming: {} + "Twilight's Last Gleaming": {} launch: - /twilightslastgleaming.app: + "/twilightslastgleaming.app": - when: - os: mac store: steam - /twilightslastgleaming.exe: + "/twilightslastgleaming.exe": - when: - os: windows store: steam @@ -590846,11 +592462,11 @@ Twin Blue Moons: installDir: Twin Blue Moons: {} launch: - /twinbluemoons.exe: + "/twinbluemoons.exe": - when: - os: windows store: steam - /twinbluemoons.sh: + "/twinbluemoons.sh": - when: - os: linux store: steam @@ -590868,15 +592484,15 @@ Twin Cobra: installDir: Twin Cobra: {} launch: - /TwinCobra.app: + "/TwinCobra.app": - when: - os: mac store: steam - /TwinCobra.exe: + "/TwinCobra.exe": - when: - os: windows store: steam - /TwinCobra.x64: + "/TwinCobra.x64": - when: - os: linux store: steam @@ -590886,15 +592502,15 @@ Twin Edge: installDir: Twin Edge: {} launch: - /TwinEdge.app: + "/TwinEdge.app": - when: - os: mac store: steam - /TwinEdge.exe: + "/TwinEdge.exe": - when: - os: windows store: steam - /TwinEdge.x86_64: + "/TwinEdge.x86_64": - when: - os: linux store: steam @@ -590902,12 +592518,12 @@ Twin Edge: id: 1926440 Twin Mirror: files: - /LOA/Saved/Config/WindowsNoEditor: + "/LOA/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /LOA/Saved/SaveGames: + "/LOA/Saved/SaveGames": tags: - save when: @@ -590925,8 +592541,8 @@ Twin Roads: installDir: Twin Roads: {} launch: - /TwinRoads.exe: - - arguments: '-vrmode none' + "/TwinRoads.exe": + - arguments: "-vrmode none" when: - bit: 64 os: windows @@ -590937,21 +592553,24 @@ Twin Robots: installDir: Twin Robots: {} launch: - /TwinRobots.app: + "/TwinRobots.app": - when: - os: mac store: steam - /TwinRobots.exe: + "/TwinRobots.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam - /TwinRobots.x86: + "/TwinRobots.x86": - when: - bit: 32 os: linux store: steam - /TwinRobots.x86_64: + "/TwinRobots.x86_64": - when: - bit: 64 os: linux @@ -590962,7 +592581,7 @@ Twin Ruin: installDir: Twin Ruin: {} launch: - /TwinRuin.exe: + "/TwinRuin.exe": - when: - bit: 64 os: windows @@ -590973,8 +592592,8 @@ Twin Saga: installDir: TwinSaga: {} launch: - /Launcher.exe: - - arguments: '-steam' + "/Launcher.exe": + - arguments: "-steam" when: - os: windows store: steam @@ -590982,17 +592601,17 @@ Twin Saga: id: 454910 Twin Sector: files: - /TwinSector/SaveGames: + "/TwinSector/SaveGames": tags: - save when: - os: windows - /TwinSector/Temp: + "/TwinSector/Temp": tags: - save when: - os: windows - /TwinSector/claws.prefs: + "/TwinSector/claws.prefs": tags: - config when: @@ -591000,7 +592619,7 @@ Twin Sector: installDir: TwinSector: {} launch: - /TwinSector_Steam.exe: + "/TwinSector_Steam.exe": - when: - store: steam steam: @@ -591009,7 +592628,7 @@ Twin Synth: installDir: Twin Synth: {} launch: - /Twin Synth.exe: + "/Twin Synth.exe": - when: - os: windows store: steam @@ -591019,11 +592638,11 @@ TwinCop: installDir: TwinCop: {} launch: - /TwinCop.app/Contents/MacOS/TwinCop: + "/TwinCop.app/Contents/MacOS/TwinCop": - when: - os: mac store: steam - /TwinCop.exe: + "/TwinCop.exe": - when: - os: windows store: steam @@ -591033,8 +592652,8 @@ TwinForce: installDir: TwinForce: {} launch: - /twinforce.exe: - - arguments: ' -window-mode exclusive -screen-fullscreen 1 -vrmode stereo' + "/twinforce.exe": + - arguments: " -window-mode exclusive -screen-fullscreen 1 -vrmode stereo" when: - os: windows store: steam @@ -591044,7 +592663,7 @@ Twine3D: installDir: Twine3D: {} launch: - /Twine3D.exe: + "/Twine3D.exe": - when: - bit: 64 os: windows @@ -591055,11 +592674,11 @@ Twinfold: installDir: Twinfold: {} launch: - /Twinfold.app: + "/Twinfold.app": - when: - os: mac store: steam - /Twinfold.exe: + "/Twinfold.exe": - when: - os: windows store: steam @@ -591072,22 +592691,22 @@ Twinkle Star - 未来はすぐそこで待っている: id: 1058150 Twinkle Star Sprites: files: - /twinspri/UserDefault.xml: + "/twinspri/UserDefault.xml": tags: - config when: - os: windows - /twinspri/achievements: + "/twinspri/achievements": tags: - save when: - os: windows - /twinspri/highscores: + "/twinspri/highscores": tags: - save when: - os: windows - /twinspri/missionunlock: + "/twinspri/missionunlock": tags: - save when: @@ -591097,7 +592716,7 @@ Twinkle Star Sprites: installDir: TWINKLE STAR SPRITES: {} launch: - /twinspri.exe: + "/twinspri.exe": - when: - store: steam steam: @@ -591109,18 +592728,18 @@ Twins of the Pasture: installDir: Twins of the Pasture: {} launch: - /bokunou_en.exe: + "/bokunou_en.exe": - when: - os: windows store: steam steam: id: 649580 -Twinsen's Little Big Adventure 2 Remastered: +"Twinsen's Little Big Adventure 2 Remastered": gog: id: 1842768333 steam: id: 2352230 -Twinsen's Little Big Adventure Remastered: +"Twinsen's Little Big Adventure Remastered": gog: id: 1597401098 steam: @@ -591129,7 +592748,7 @@ Twinship: installDir: Twinship: {} launch: - /Twinship.exe: + "/Twinship.exe": - when: - store: steam steam: @@ -591138,11 +592757,11 @@ Twinstack: installDir: Twinstack: {} launch: - /Twinstack.app: + "/Twinstack.app": - when: - os: mac store: steam - /Twinstack.exe: + "/Twinstack.exe": - when: - os: windows store: steam @@ -591152,7 +592771,7 @@ Twist of Destiny: installDir: Twist of Destiny: {} launch: - /Twist of Destiny.exe: + "/Twist of Destiny.exe": - when: - os: windows store: steam @@ -591160,7 +592779,7 @@ Twist of Destiny: id: 615150 Twistales: files: - /AppData/LocalLow/catontree/Twistales: + "/AppData/LocalLow/catontree/Twistales": tags: - config - save @@ -591172,7 +592791,7 @@ Twisted: installDir: Twisted: {} launch: - /Twisted.exe: + "/Twisted.exe": - when: - bit: 64 os: windows @@ -591186,9 +592805,9 @@ Twisted Arrow: id: 494960 Twisted Lands Trilogy: installDir: - Twisted Lands Trilogy Collector's Edition: {} + "Twisted Lands Trilogy Collector's Edition": {} launch: - /TwistedLands3in1.exe: + "/TwistedLands3in1.exe": - when: - os: windows store: steam @@ -591204,7 +592823,7 @@ Twisted Sails: installDir: Twisted Sails: {} launch: - /Twisted Sails.exe: + "/Twisted Sails.exe": - when: - os: windows store: steam @@ -591220,17 +592839,17 @@ Twisted Worlds: installDir: Twisted Worlds: {} launch: - /TwistedWorlds.exe: + "/TwistedWorlds.exe": - when: - os: windows store: steam steam: id: 464800 -'Twisted: Enhanced Edition': +"Twisted: Enhanced Edition": installDir: Twisted Enhanced Edition: {} launch: - /TwistedEE.exe: + "/TwistedEE.exe": - when: - bit: 64 os: windows @@ -591241,25 +592860,27 @@ Twisting Mower: installDir: TwistingMower: {} launch: - /game.app/Contents/MacOS/game: + "/game.app/Contents/MacOS/game": - when: - os: mac store: steam - /game.exe: + "/game.exe": - when: - os: windows store: steam + - os: linux + store: steam steam: id: 1001730 Twists of My Life: installDir: Twists of My Life: {} launch: - /ToML.exe: + "/ToML.exe": - when: - os: windows store: steam - /ToML.sh: + "/ToML.sh": - when: - os: linux store: steam @@ -591269,7 +592890,7 @@ Twisty Puzzle Simulator: installDir: Twisty Puzzle Simulator: {} launch: - /Twisty Puzzle Simulator.exe: + "/Twisty Puzzle Simulator.exe": - when: - store: steam steam: @@ -591277,18 +592898,18 @@ Twisty Puzzle Simulator: Twisty Tumble (VR): steam: id: 1074990 -Twisty's Asylum Escapades: +"Twisty's Asylum Escapades": files: - /TAE/saves: + "/TAE/saves": tags: - config - save when: - os: windows installDir: - Twisty's Asylum Escapades: {} + "Twisty's Asylum Escapades": {} launch: - /Twistys Asylum Escapades.exe: + "/Twistys Asylum Escapades.exe": - when: - os: windows store: steam @@ -591298,7 +592919,7 @@ Twitch Place: installDir: Twitch Place: {} launch: - /twitch place.exe: + "/twitch place.exe": - when: - store: steam steam: @@ -591307,11 +592928,11 @@ Twixel: installDir: Twixel: {} launch: - /Twixel.app: + "/Twixel.app": - when: - os: mac store: steam - /Twixel.exe: + "/Twixel.exe": - when: - os: windows store: steam @@ -591321,7 +592942,7 @@ Two Brothers: installDir: Two Brothers: {} launch: - /TwoBrothers.exe: + "/TwoBrothers.exe": - when: - os: windows store: steam @@ -591331,17 +592952,17 @@ Two Clusters Cold Haven: installDir: Two Clusters Cold Haven: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam steam: id: 1684760 -'Two Clusters: Kain': +"Two Clusters: Kain": installDir: Two Clusters Kain: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -591353,7 +592974,7 @@ Two Crude: installDir: Retro Classix Two Crude: {} launch: - /Retro Classix Two Crude.exe: + "/Retro Classix Two Crude.exe": - when: - os: windows store: steam @@ -591363,20 +592984,20 @@ Two Digits: installDir: Two Digits: {} launch: - /twodigits.app: + "/twodigits.app": - when: - os: mac store: steam - /twodigits.exe: + "/twodigits.exe": - when: - os: windows store: steam - /twodigits.x86: + "/twodigits.x86": - when: - bit: 32 os: linux store: steam - /twodigits.x86_64: + "/twodigits.x86_64": - when: - bit: 64 os: linux @@ -591390,20 +593011,20 @@ Two Escapes: installDir: TwoEscapes: {} launch: - /twoescapes.app: + "/twoescapes.app": - when: - os: mac store: steam - /twoescapes.exe: + "/twoescapes.exe": - when: - os: windows store: steam - /twoescapes.x86: + "/twoescapes.x86": - when: - bit: 32 os: linux store: steam - /twoescapes.x86_64: + "/twoescapes.x86_64": - when: - bit: 64 os: linux @@ -591414,7 +593035,7 @@ Two For One: installDir: Two For One: {} launch: - /TwoForOne.exe: + "/TwoForOne.exe": - when: - os: windows store: steam @@ -591423,20 +593044,20 @@ Two For One: Two Guns: steam: id: 1071790 -Two Inns at Miller's Hollow: +"Two Inns at Miller's Hollow": installDir: - Two Inns at Miller's Hollow: {} + "Two Inns at Miller's Hollow": {} launch: - /TwoInns: + "/TwoInns": - when: - bit: 64 os: linux store: steam - /TwoInns.app/Contents/MacOS/TwoInns: + "/TwoInns.app/Contents/MacOS/TwoInns": - when: - os: mac store: steam - /TwoInns.exe: + "/TwoInns.exe": - when: - bit: 64 os: windows @@ -591450,7 +593071,7 @@ Two Love: installDir: Two Love: {} launch: - /TL.exe: + "/TL.exe": - when: - os: windows store: steam @@ -591458,34 +593079,34 @@ Two Love: id: 1180360 Two Point Campus: files: - /AppData/LocalLow/Two Point Studios/Two Point Campus/Cloud: + "/AppData/LocalLow/Two Point Studios/Two Point Campus/Cloud": tags: - config - save when: - os: windows - /AppData/LocalLow/Two Point Studios/Two Point Campus/localpreferences.json: + "/AppData/LocalLow/Two Point Studios/Two Point Campus/localpreferences.json": tags: - config when: - os: windows - /Packages/7904SEGAEuropeLtd.TwoPointCampus_zs7esxpzd8d5c/SystemAppData/wgs: + "/Packages/7904SEGAEuropeLtd.TwoPointCampus_zs7esxpzd8d5c/SystemAppData/wgs": tags: - save when: - os: windows store: microsoft - /unity3d/Two Point Studios/Two Point Campus/Cloud/: + "/unity3d/Two Point Studios/Two Point Campus/Cloud/": tags: - save when: - os: linux - /unity3d/Two Point Studios/Two Point Campus/localpreferences.json: + "/unity3d/Two Point Studios/Two Point Campus/localpreferences.json": tags: - config when: - os: linux - /unity3d/Two Point Studios/Two Point Hospital/Cloud//preferences.json: + "/unity3d/Two Point Studios/Two Point Hospital/Cloud//preferences.json": tags: - config when: @@ -591493,15 +593114,15 @@ Two Point Campus: installDir: Two Point Campus: {} launch: - /TPC.app: + "/TPC.app": - when: - os: mac store: steam - /TPC.exe: + "/TPC.exe": - when: - os: windows store: steam - /TPC.x86_64: + "/TPC.x86_64": - when: - os: linux store: steam @@ -591509,36 +593130,36 @@ Two Point Campus: id: 1649080 Two Point Hospital: files: - /AppData/LocalLow/Two Point Studios/Two Point Hospital/Cloud: + "/AppData/LocalLow/Two Point Studios/Two Point Hospital/Cloud": tags: - config - save when: - os: windows - /AppData/LocalLow/Two Point Studios/Two Point Hospital/localpreferences.json: + "/AppData/LocalLow/Two Point Studios/Two Point Hospital/localpreferences.json": tags: - config when: - os: windows - os: windows store: microsoft - /Packages/7904SEGAEuropeLtd.TwoPointHospital-GamePass_zs7esxpzd8d5c/SystemAppData/wgs/: + "/Packages/7904SEGAEuropeLtd.TwoPointHospital-GamePass_zs7esxpzd8d5c/SystemAppData/wgs/": tags: - save when: - os: windows store: microsoft - /unity3d/Two Point Studios/Two Point Hospital/Cloud/: + "/unity3d/Two Point Studios/Two Point Hospital/Cloud/": tags: - save when: - os: linux - /unity3d/Two Point Studios/Two Point Hospital/Cloud//preferences.json: + "/unity3d/Two Point Studios/Two Point Hospital/Cloud//preferences.json": tags: - config when: - os: linux - /unity3d/Two Point Studios/Two Point Hospital/localpreferences.json: + "/unity3d/Two Point Studios/Two Point Hospital/localpreferences.json": tags: - config when: @@ -591547,38 +593168,38 @@ Two Point Hospital: id: 1940028140 id: gogExtra: - - 1728595042 - - 1165805924 - - 1645659482 - - 1391914939 - - 1381172572 - - 2133637329 - 1087297863 + - 1165805924 - 1285087265 - 1351935818 - - 1841936124 + - 1381172572 + - 1391914939 - 1501002326 + - 1645659482 + - 1728595042 + - 1841936124 + - 2133637329 steamExtra: - 966690 - 1003310 - 1035020 + - 1096580 - 1144500 - 1196150 - - 1096580 - 1257570 - 1901750 installDir: TPH: {} launch: - /TPH.app: + "/TPH.app": - when: - os: mac store: steam - /TPH.exe: + "/TPH.exe": - when: - os: windows store: steam - /TPH.x86_64: + "/TPH.x86_64": - when: - os: linux store: steam @@ -591591,7 +593212,7 @@ Two Steps Back: installDir: Two Steps Back: {} launch: - /Two Steps Backwards.exe: + "/Two Steps Backwards.exe": - when: - os: windows store: steam @@ -591601,7 +593222,7 @@ Two Till Midnight: installDir: Two Till Midnight: {} launch: - /TwoTillMid.exe: + "/TwoTillMid.exe": - when: - bit: 64 os: windows @@ -591612,7 +593233,7 @@ Two Wars - Part 1: installDir: Two Wars: {} launch: - /TwoWars.exe: + "/TwoWars.exe": - when: - os: windows store: steam @@ -591622,11 +593243,11 @@ Two Weeks in Painland: installDir: Two Weeks in Painland: {} launch: - /TwoWeeksInPainland.exe: + "/TwoWeeksInPainland.exe": - when: - os: windows store: steam - /twoweeksinpainland.app: + "/twoweeksinpainland.app": - when: - os: mac store: steam @@ -591634,17 +593255,17 @@ Two Weeks in Painland: id: 1139950 Two Worlds: files: - /Parameters/AutoexecGame.con: + "/Parameters/AutoexecGame.con": tags: - config when: - os: windows - /game/game/Game/Two Worlds Saves: + "/game/game/Game/Two Worlds Saves": tags: - save when: - os: linux - /Saved Games/Two Worlds Saves: + "/Saved Games/Two Worlds Saves": tags: - save when: @@ -591657,19 +593278,19 @@ Two Worlds: installDir: Two Worlds - Epic Edition: {} launch: - /RunGame: + "/RunGame": - when: - os: linux store: steam - /Two Worlds - Epic Edition.app: + "/Two Worlds - Epic Edition.app": - when: - os: mac store: steam - /TwoWorlds.exe: + "/TwoWorlds.exe": - when: - os: windows store: steam - /TwoWorlds_RADEON.exe: + "/TwoWorlds_RADEON.exe": - when: - os: windows store: steam @@ -591681,17 +593302,17 @@ Two Worlds: id: 1930 Two Worlds II: files: - /Documents/TW2Profile: + "/Documents/TW2Profile": tags: - save when: - os: mac - /Library/Application Support/TW2ConfigFolder/conf.xml: + "/Library/Application Support/TW2ConfigFolder/conf.xml": tags: - config when: - os: mac - /Saved Games/Two Worlds II: + "/Saved Games/Two Worlds II": tags: - save when: @@ -591710,19 +593331,19 @@ Two Worlds II: installDir: Two Worlds II: {} launch: - /Two Worlds II.app: + "/Two Worlds II.app": - when: - os: mac store: steam - /TwoWorlds2.exe: + "/TwoWorlds2.exe": - when: - os: windows store: steam - /TwoWorlds2_DX10.exe: + "/TwoWorlds2_DX10.exe": - when: - os: windows store: steam - - arguments: '-adapter' + - arguments: "-adapter" when: - os: windows store: steam @@ -591734,7 +593355,7 @@ Two Worlds II: id: 7520 Two Worlds II Castle Defense: files: - /TW2CD: + "/TW2CD": tags: - save when: @@ -591747,11 +593368,11 @@ Two Worlds II Castle Defense: installDir: Two Worlds II Castle Defense: {} launch: - /TW2CD.app: + "/TW2CD.app": - when: - os: mac store: steam - /TW2CD.exe: + "/TW2CD.exe": - when: - os: windows store: steam @@ -591761,19 +593382,19 @@ Two Worlds II Castle Defense: - config steam: id: 7530 -'Two Worlds II HD: Call of the Tenebrae': +"Two Worlds II HD: Call of the Tenebrae": installDir: Two Worlds II HD - Call of the Tenebrae: {} launch: - /TwoWorlds2_CoT.exe: + "/TwoWorlds2_CoT.exe": - when: - os: windows store: steam - /TwoWorlds2_DX10_CoT.exe: + "/TwoWorlds2_DX10_CoT.exe": - when: - os: windows store: steam - - arguments: '-adapter' + - arguments: "-adapter" when: - os: windows store: steam @@ -591783,15 +593404,15 @@ TwoPlay Mahjong: installDir: TwoPlay Mahjong All: {} launch: - /Mahjong.exe: + "/Mahjong.exe": - when: - os: windows store: steam steam: id: 892460 -'Tycoon City: New York': +"Tycoon City: New York": files: - /Atari/Tycoon City - New York: + "/Atari/Tycoon City - New York": tags: - config - save @@ -591800,7 +593421,7 @@ TwoPlay Mahjong: installDir: Tycoon City New York: {} launch: - /TycoonCity.exe: + "/TycoonCity.exe": - when: - store: steam steam: @@ -591809,20 +593430,20 @@ Tyd wag vir Niemand: installDir: Tyd wag vir Niemand: {} launch: - /Tyd_wag_vir_Niemand.app: + "/Tyd_wag_vir_Niemand.app": - when: - os: mac store: steam - /Tyd_wag_vir_Niemand.exe: + "/Tyd_wag_vir_Niemand.exe": - when: - os: windows store: steam - /Tyd_wag_vir_Niemand.x86: + "/Tyd_wag_vir_Niemand.x86": - when: - bit: 32 os: linux store: steam - /Tyd_wag_vir_Niemand.x86_64: + "/Tyd_wag_vir_Niemand.x86_64": - when: - bit: 64 os: linux @@ -591836,18 +593457,18 @@ Tyler: installDir: Tyler: {} launch: - /Tyler.exe: + "/Tyler.exe": - when: - bit: 32 os: windows store: steam steam: id: 390460 -'Tyler: Model 005': +"Tyler: Model 005": installDir: Tyler Model 005: {} launch: - /Tyler.exe: + "/Tyler.exe": - when: - os: windows store: steam @@ -591857,7 +593478,7 @@ Type: installDir: Type: {} launch: - /windows_content/Typer.exe: + "/windows_content/Typer.exe": - when: - os: windows store: steam @@ -591867,15 +593488,15 @@ Type Defense: installDir: Type Defense: {} launch: - /Type Defense.app: + "/Type Defense.app": - when: - os: mac store: steam - /Type Defense.exe: + "/Type Defense.exe": - when: - os: windows store: steam - /Type Defense.x86: + "/Type Defense.x86": - when: - os: linux store: steam @@ -591885,7 +593506,7 @@ Type Fighter: installDir: Type Fighter: {} launch: - /TypeFighter.exe: + "/TypeFighter.exe": - when: - os: windows store: steam @@ -591895,29 +593516,29 @@ Type Knight: installDir: Type Knight: {} launch: - /typeknight: + "/typeknight": - when: - os: linux store: steam - /typeknight.exe: + "/typeknight.exe": - when: - os: windows store: steam steam: id: 1006220 -'Type:Rider': +"Type:Rider": files: - '/.config/unity3d/ExNihilo/Type:Rider': + "/.config/unity3d/ExNihilo/Type:Rider": tags: - config when: - os: linux - /.config/unity3d/ExNihilo/Type_Rider/savegame: + "/.config/unity3d/ExNihilo/Type_Rider/savegame": tags: - save when: - os: linux - /TypeRider: + "/TypeRider": tags: - save when: @@ -591925,20 +593546,20 @@ Type Knight: installDir: Type Rider: {} launch: - /TypeRider.app: + "/TypeRider.app": - when: - os: mac store: steam - /TypeRider.x86: + "/TypeRider.x86": - when: - os: linux store: steam - /typerider.exe: + "/typerider.exe": - when: - os: windows store: steam registry: - 'HKEY_CURRENT_USER/Software/Ex-Nihilo/Type:Rider': + "HKEY_CURRENT_USER/Software/Ex-Nihilo/Type:Rider": tags: - config steam: @@ -591947,11 +593568,11 @@ Typefighters: installDir: Typefighters: {} launch: - /Typefighters.exe: + "/Typefighters.exe": - when: - os: windows store: steam - /Typefighters.x86: + "/Typefighters.x86": - when: - os: linux store: steam @@ -591959,7 +593580,7 @@ Typefighters: id: 434290 Typer Shark!: files: - /users: + "/users": tags: - save when: @@ -591967,7 +593588,7 @@ Typer Shark!: installDir: Typer Shark Deluxe: {} launch: - /WinTS.exe: + "/WinTS.exe": - when: - store: steam registry: @@ -591983,15 +593604,15 @@ Typical: installDir: Typical: {} launch: - /Typical.app: + "/Typical.app": - when: - os: mac store: steam - /Typical.exe: + "/Typical.exe": - when: - os: windows store: steam - /Typical.sh: + "/Typical.sh": - when: - os: linux store: steam @@ -592001,7 +593622,7 @@ Typical Nightmare: installDir: Typical Nightmare: {} launch: - /Typical Nightmare/Typical Nightmare.exe: + "/Typical Nightmare/Typical Nightmare.exe": - when: - bit: 64 os: windows @@ -592015,7 +593636,7 @@ Typing Incremental: installDir: Typing Incremental: {} launch: - /typer-incremental-win32-x64/typer-incremental.exe: + "/typer-incremental-win32-x64/typer-incremental.exe": - when: - bit: 64 os: windows @@ -592026,15 +593647,15 @@ Typing of the Undead: installDir: Typing of the Undead: {} launch: - /Typing of the Undead.exe: + "/Typing of the Undead.exe": - when: - os: windows store: steam - /Typing of the Undead.x86_64: + "/Typing of the Undead.x86_64": - when: - os: linux store: steam - /game.app/Contents/MacOS/Typing of the Undead: + "/game.app/Contents/MacOS/Typing of the Undead": - when: - os: mac store: steam @@ -592044,29 +593665,29 @@ Typing with Jester: installDir: Typing with Jester: {} launch: - /TypingWithJester: + "/TypingWithJester": - when: - os: linux store: steam - /TypingWithJester.exe: + "/TypingWithJester.exe": - when: - os: windows store: steam steam: id: 496520 -'Typoman: Revised': +"Typoman: Revised": installDir: Typoman: {} launch: - /Typoman.app/Contents/MacOS/Typoman: + "/Typoman.app/Contents/MacOS/Typoman": - when: - os: mac store: steam - /Typoman.exe: + "/Typoman.exe": - when: - os: windows store: steam - /Typoman.x86_64: + "/Typoman.x86_64": - when: - bit: 64 os: linux @@ -592078,11 +593699,11 @@ Typing with Jester: - save steam: id: 336240 -'Tyr: Chains of Valhalla': +"Tyr: Chains of Valhalla": installDir: Tyr Chains of Valhalla: {} launch: - /Tyr Chains of Valhalla.exe: + "/Tyr Chains of Valhalla.exe": - when: - os: windows store: steam @@ -592092,17 +593713,20 @@ Tyran: installDir: Tyran: {} launch: - /Tyran.exe: + "/Tyran.exe": - when: - bit: 32 os: windows store: steam - /Tyran.x86: + - bit: 64 + os: windows + store: steam + "/Tyran.x86": - when: - bit: 32 os: linux store: steam - /Tyran.x86_64: + "/Tyran.x86_64": - when: - bit: 64 os: linux @@ -592111,23 +593735,23 @@ Tyran: id: 426210 Tyranny: files: - /Library/Application Support/Tyranny/Saved Games: + "/Library/Application Support/Tyranny/Saved Games": tags: - config - save when: - os: mac - /Saved Games/Tyranny: + "/Saved Games/Tyranny": tags: - save when: - os: windows - /unity3d/Obsidian Entertainment/Tyranny: + "/unity3d/Obsidian Entertainment/Tyranny": tags: - config when: - os: linux - /Tyranny/SavedGames: + "/Tyranny/SavedGames": tags: - save when: @@ -592138,26 +593762,26 @@ Tyranny: gogExtra: - 1183547197 - 1447126331 - - 1488990546 - - 1651767755 - 1456329658 + - 1488990546 - 1604832403 + - 1651767755 - 1994949603 installDir: Tyranny: {} launch: - /Tyranny.app: - - arguments: '-steam' + "/Tyranny.app": + - arguments: "-steam" when: - os: mac store: steam - /Tyranny.exe: - - arguments: '-steam' + "/Tyranny.exe": + - arguments: "-steam" when: - os: windows store: steam - /Tyranny.x86_64: - - arguments: '-steam' + "/Tyranny.x86_64": + - arguments: "-steam" when: - os: linux store: steam @@ -592167,22 +593791,22 @@ Tyranny: - config steam: id: 362960 -Tyrant's Blessing: +"Tyrant's Blessing": gog: id: 1565239305 installDir: - Tyrant's Blessing: {} + "Tyrant's Blessing": {} launch: - /tb-linux: + "/tb-linux": - when: - bit: 64 os: linux store: steam - /tb-osx.app/Contents/MacOS/Tyrant's Blessing: + "/tb-osx.app/Contents/MacOS/Tyrant's Blessing": - when: - os: mac store: steam - /tb-win.exe: + "/tb-win.exe": - when: - bit: 64 os: windows @@ -592193,7 +593817,7 @@ Tyred: installDir: TYRED: {} launch: - /TYRED.exe: + "/TYRED.exe": - when: - os: windows store: steam @@ -592201,12 +593825,12 @@ Tyred: id: 661340 Tyrian: files: - /TYRIAN.CFG: + "/TYRIAN.CFG": tags: - config when: - os: dos - /TYRIAN.SAV: + "/TYRIAN.SAV": tags: - save when: @@ -592217,11 +593841,11 @@ Tyto Ecology: installDir: Tyto Ecology: {} launch: - /TytoEcology.app: + "/TytoEcology.app": - when: - os: mac store: steam - /TytoEcology.exe: + "/TytoEcology.exe": - when: - bit: 64 os: windows @@ -592232,25 +593856,25 @@ Tyto Online: installDir: Tyto Online: {} launch: - /TytoOnlineLauncher.app: + "/TytoOnlineLauncher.app": - when: - os: mac store: steam - /TytoOnlineLauncher.exe: + "/TytoOnlineLauncher.exe": - when: - bit: 64 os: windows store: steam steam: id: 544290 -'Tzar: The Burden of the Crown': +"Tzar: The Burden of the Crown": files: - /Save: + "/Save": tags: - save when: - os: windows - /tzar.ini: + "/tzar.ini": tags: - config when: @@ -592260,7 +593884,7 @@ Tyto Online: installDir: Tzar: {} launch: - /Tzar.exe: + "/Tzar.exe": - when: - os: windows store: steam @@ -592270,11 +593894,11 @@ Tzompantli: installDir: TZOMPANTLI: {} launch: - /TZOMPANTLI.app/Contents/MacOS/TZOMPANTLI: + "/TZOMPANTLI.app/Contents/MacOS/TZOMPANTLI": - when: - os: mac store: steam - /Tzompantli.exe: + "/Tzompantli.exe": - when: - os: windows store: steam @@ -592287,11 +593911,11 @@ U-BOOT The Board Game: installDir: U-BOOT The Board Game: {} launch: - /U-BOOT The Board Game.app: + "/U-BOOT The Board Game.app": - when: - os: mac store: steam - /U-BOOT The Board Game.exe: + "/U-BOOT The Board Game.exe": - when: - os: windows store: steam @@ -592302,12 +593926,12 @@ U-Boats: id: 404890 U.B Funkeys: files: - /RadicaGame/data: + "/RadicaGame/data": tags: - save when: - os: windows - /RadicaGame/data/system/options.rdf: + "/RadicaGame/data/system/options.rdf": tags: - config when: @@ -592316,28 +593940,28 @@ U.F.O - Unfortunately Fortunate Organisms: installDir: U.F.O - Unfortunately Fortunate Organisms: {} launch: - /UnfortunatelyFortunateOrganisms.app: + "/UnfortunatelyFortunateOrganisms.app": - when: - os: mac store: steam - /UnfortunatelyFortunateOrganisms.exe: + "/UnfortunatelyFortunateOrganisms.exe": - when: - os: windows store: steam - /UnfortunatelyFortunateOrganisms.x86: + "/UnfortunatelyFortunateOrganisms.x86": - when: - os: linux store: steam steam: id: 586320 -'U.S. Most Wanted: Nowhere To Hide': +"U.S. Most Wanted: Nowhere To Hide": files: - /MW/Cfg/console.cfg: + "/MW/Cfg/console.cfg": tags: - config when: - os: windows - /MW/Save: + "/MW/Save": tags: - save when: @@ -592346,7 +593970,7 @@ UAYEB: installDir: UAYEB: {} launch: - /Bin64/UAYEB.exe: + "/Bin64/UAYEB.exe": - when: - bit: 64 os: windows @@ -592355,12 +593979,12 @@ UAYEB: id: 589220 UBOAT: files: - /AppData/LocalLow/Deep Water Studio/UBOAT/Saves: + "/AppData/LocalLow/Deep Water Studio/UBOAT/Saves": tags: - save when: - os: windows - /AppData/LocalLow/Deep Water Studio/UBOAT/settings.ubt: + "/AppData/LocalLow/Deep Water Studio/UBOAT/settings.ubt": tags: - config when: @@ -592370,7 +593994,7 @@ UBOAT: installDir: UBOAT: {} launch: - /UBOAT Launcher.exe: + "/UBOAT Launcher.exe": - when: - os: windows store: steam @@ -592378,14 +594002,14 @@ UBOAT: id: 494840 UEFA Champions League Season 1999/2000: files: - /Saves: + "/Saves": tags: - save when: - os: windows UEFA Euro 2004: files: - /UEFA EURO 2004: + "/UEFA EURO 2004": tags: - config - save @@ -592393,7 +594017,7 @@ UEFA Euro 2004: - os: windows UEFA Manager 2000: files: - /Data/Saves: + "/Data/Saves": tags: - save when: @@ -592402,40 +594026,40 @@ UFHO2: installDir: UFHO2: {} launch: - /UFHO2.app: + "/UFHO2.app": - when: - os: mac store: steam - /UFHO2.exe: + "/UFHO2.exe": - when: - os: windows store: steam - /UFHO2.x86: + "/UFHO2.x86": - when: - bit: 32 os: linux store: steam - /UFHO2.x86_64: + "/UFHO2.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 348840 -'UFO : Brawlers from Beyond': +"UFO : Brawlers from Beyond": installDir: UFO Brawlers from Beyond: {} launch: - /UFO.exe: + "/UFO.exe": - when: - os: windows store: steam - /UFO.x86_64: + "/UFO.x86_64": - when: - bit: 64 os: linux store: steam - /UFO_FINAL_BUILD_MAC.app/Contents/MacOS/UFO: + "/UFO_FINAL_BUILD_MAC.app/Contents/MacOS/UFO": - when: - os: mac store: steam @@ -592445,7 +594069,7 @@ UFO Combat 2000: installDir: UFO Combat 2000: {} launch: - /UFOCBT.exe: + "/UFOCBT.exe": - when: - bit: 64 os: windows @@ -592456,7 +594080,7 @@ UFO ESCAPE: installDir: UFO ESCAPE: {} launch: - /UFOESCAPE.exe: + "/UFOESCAPE.exe": - when: - os: windows store: steam @@ -592466,15 +594090,15 @@ UFO No!: installDir: UFO No!: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam steam: id: 2182940 -'UFO Online: Invasion': +"UFO Online: Invasion": files: - /UFO Online: + "/UFO Online": tags: - save when: @@ -592482,20 +594106,20 @@ UFO No!: installDir: UFO Online Invasion: {} launch: - /UFO Online.exe: + "/UFO Online.exe": - when: - os: windows store: steam steam: id: 442810 -'UFO Robot Grendizer: The Feast of the Wolves': +"UFO Robot Grendizer: The Feast of the Wolves": files: - /AppData/LocalLow/Microids/UFO ROBOT GRENDIZER - The Feast of the Wolves/savegames: + "/AppData/LocalLow/Microids/UFO ROBOT GRENDIZER - The Feast of the Wolves/savegames": tags: - save when: - os: windows - /AppData/LocalLow/Microids/UFO ROBOT GRENDIZER - The Feast of the Wolves/settings: + "/AppData/LocalLow/Microids/UFO ROBOT GRENDIZER - The Feast of the Wolves/settings": tags: - config when: @@ -592513,20 +594137,20 @@ UFO Simulator Control Master: installDir: UFOSimulatorControlMaster: {} launch: - /UFO Simulator Control Master.exe: + "/UFO Simulator Control Master.exe": - when: - os: windows store: steam steam: id: 848070 -'UFO: Afterlight': +"UFO: Afterlight": files: - /Profiles/: + "/Profiles/": tags: - save when: - os: windows - /Profiles/Options.cfg: + "/Profiles/Options.cfg": tags: - config when: @@ -592536,24 +594160,24 @@ UFO Simulator Control Master: installDir: UFO Afterlight: {} launch: - /UFO.exe: + "/UFO.exe": - when: - store: steam steam: id: 237950 -'UFO: Aftermath': +"UFO: Aftermath": files: - /Profiles//Saves: + "/Profiles//Saves": tags: - save when: - os: windows - /Profiles//UFOOptions.txt: + "/Profiles//UFOOptions.txt": tags: - config when: - os: windows - /config.cfg: + "/config.cfg": tags: - config when: @@ -592563,24 +594187,24 @@ UFO Simulator Control Master: installDir: UFO Aftermath: {} launch: - /Launcher.exe: + "/Launcher.exe": - when: - os: windows store: steam - /UFO.exe: + "/UFO.exe": - when: - os: windows store: steam steam: id: 292160 -'UFO: Aftershock': +"UFO: Aftershock": files: - /Profiles//Saves: + "/Profiles//Saves": tags: - save when: - os: windows - /Profiles//options.txt: + "/Profiles//options.txt": tags: - config when: @@ -592590,15 +594214,15 @@ UFO Simulator Control Master: installDir: UFOAftershock: {} launch: - /UFO.exe: + "/UFO.exe": - when: - os: windows store: steam steam: id: 289500 -'UFO: Extraterrestrials': +"UFO: Extraterrestrials": files: - /DATA/ufo-et.ini: + "/DATA/ufo-et.ini": tags: - config when: @@ -592606,7 +594230,7 @@ UFO Simulator Control Master: installDir: UFO Extraterrestrials Gold: {} launch: - /UFO_ET.exe: + "/UFO_ET.exe": - when: - store: steam steam: @@ -592615,7 +594239,7 @@ UFOGEN: installDir: UFOGEN: {} launch: - /Ufogen.exe: + "/Ufogen.exe": - when: - os: windows store: steam @@ -592625,7 +594249,7 @@ UFactory: installDir: uFactory: {} launch: - /uFactory.exe: + "/uFactory.exe": - when: - os: windows store: steam @@ -592633,12 +594257,12 @@ UFactory: id: 923710 UK Truck Simulator: files: - /UK Truck Simulator: + "/UK Truck Simulator": tags: - config when: - os: windows - /UK Truck Simulator/save: + "/UK Truck Simulator/save": tags: - save when: @@ -592646,11 +594270,11 @@ UK Truck Simulator: UKR: steam: id: 691800 -'ULTIRE: Balls Out': +"ULTIRE: Balls Out": installDir: ULTIRE Balls Out: {} launch: - /ThirdPersonBall.exe: + "/ThirdPersonBall.exe": - when: - os: windows store: steam @@ -592665,7 +594289,7 @@ UNBREAKER: installDir: UNBREAKER: {} launch: - /UNBREAKER.exe: + "/UNBREAKER.exe": - when: - os: windows store: steam @@ -592675,22 +594299,25 @@ UNDER the SAND - a road trip game: installDir: UNDER the SAND: {} launch: - /TenMiles.exe: + "/TenMiles.exe": - when: - bit: 32 os: windows store: steam + - bit: 64 + os: windows + store: steam steam: id: 1062960 -'UNDERWATER: STAY ALIVE': +"UNDERWATER: STAY ALIVE": installDir: UNDERWATER STAY ALIVE: {} launch: - /Stay Alive.app: + "/Stay Alive.app": - when: - os: mac store: steam - /Stay Alive.exe: + "/Stay Alive.exe": - when: - os: windows store: steam @@ -592700,7 +594327,7 @@ UNFAIR: installDir: UNFAIR: {} launch: - /UNFAIR.exe: + "/UNFAIR.exe": - when: - os: windows store: steam @@ -592710,7 +594337,7 @@ UNI: installDir: UNI: {} launch: - /uni2.exe: + "/uni2.exe": - when: - store: steam steam: @@ -592719,21 +594346,21 @@ UNI TURRET: installDir: UNI TURRET: {} launch: - /uniturret.exe: + "/uniturret.exe": - when: - bit: 64 os: windows store: steam steam: id: 1050430 -'UNSUBSCRIBED: THE GAME': +"UNSUBSCRIBED: THE GAME": steam: id: 1072950 URO: installDir: URO: {} launch: - /URO.exe: + "/URO.exe": - when: - store: steam steam: @@ -592742,17 +594369,17 @@ URO2: installDir: URO2: {} launch: - /Uro2.exe: + "/Uro2.exe": - when: - os: windows store: steam steam: id: 1161800 -URUZ "Return of The Er Kishi": +"URUZ \"Return of The Er Kishi\"": installDir: URUZ Return of The Er Kishi: {} launch: - /UruzErKishi/Binaries/Win64/UruzErKishi-Win64-Shipping.exe: + "/UruzErKishi/Binaries/Win64/UruzErKishi-Win64-Shipping.exe": - when: - bit: 64 os: windows @@ -592761,7 +594388,7 @@ URUZ "Return of The Er Kishi": id: 931000 US Racer: files: - /Common: + "/Common": tags: - save when: @@ -592770,7 +594397,7 @@ US and THEM: installDir: US and THEM: {} launch: - /UAT.exe: + "/UAT.exe": - when: - store: steam steam: @@ -592779,7 +594406,7 @@ USA 2020: installDir: USA2020: {} launch: - /usa2020.exe: + "/usa2020.exe": - when: - os: windows store: steam @@ -592789,21 +594416,21 @@ USAGIRI: installDir: USAGIRI: {} launch: - /USAGIRI.exe: + "/USAGIRI.exe": - when: - os: windows store: steam - /USAGIRI.sh: + "/USAGIRI.sh": - when: - os: linux store: steam steam: id: 1153950 -'USC: Counterforce': +"USC: Counterforce": installDir: USC Counterforce: {} launch: - /USC Counterforce.exe: + "/USC Counterforce.exe": - when: - bit: 64 os: windows @@ -592817,7 +594444,7 @@ UTLL: installDir: WindowsNoEditor: {} launch: - /UTLL.exe: + "/UTLL.exe": - when: - bit: 64 os: windows @@ -592828,7 +594455,7 @@ Uagi-Saba: installDir: Uagi-Saba: {} launch: - /uagi-saba.exe: + "/uagi-saba.exe": - when: - store: steam steam: @@ -592839,7 +594466,7 @@ Ubaste: installDir: Ubaste: {} launch: - /Ubaste.exe: + "/Ubaste.exe": - when: - store: steam steam: @@ -592848,7 +594475,7 @@ UberFlight: installDir: UberFlight: {} launch: - /UberFlight-dev.exe: + "/UberFlight-dev.exe": - when: - os: windows store: steam @@ -592858,7 +594485,7 @@ Ubercold: installDir: UBERCOLD: {} launch: - /UBERCOLD.exe: + "/UBERCOLD.exe": - when: - os: windows store: steam @@ -592866,7 +594493,7 @@ Ubercold: id: 980160 Ubermosh: files: - /UBERMOSH: + "/UBERMOSH": tags: - save when: @@ -592874,11 +594501,11 @@ Ubermosh: installDir: UBERMOSH: {} launch: - /UBERMOSH.exe: + "/UBERMOSH.exe": - when: - os: windows store: steam - /run.sh: + "/run.sh": - when: - os: linux store: steam @@ -592888,11 +594515,11 @@ Ubermosh Vol. 3: installDir: UBERMOSH Vol.3: {} launch: - /UBERMOSH vol3.exe: + "/UBERMOSH vol3.exe": - when: - os: windows store: steam - /run.sh: + "/run.sh": - when: - os: linux store: steam @@ -592902,11 +594529,11 @@ Ubermosh Vol. 5: installDir: UBERMOSH Vol.5: {} launch: - /UBERMOSH Vol5.exe: + "/UBERMOSH Vol5.exe": - when: - os: windows store: steam - /run.sh: + "/run.sh": - when: - os: linux store: steam @@ -592916,38 +594543,38 @@ Ubermosh Vol. 7: installDir: UBERMOSH Vol.7: {} launch: - /UBERMOSH Vol 7.exe: + "/UBERMOSH Vol 7.exe": - when: - os: windows store: steam steam: id: 1029980 -'Ubermosh: Black': +"Ubermosh: Black": installDir: UBERMOSHBLACK: {} launch: - /UBERMOSH BLACK.exe: + "/UBERMOSH BLACK.exe": - when: - os: windows store: steam - /run.sh: + "/run.sh": - when: - os: linux store: steam steam: id: 444940 -'Ubermosh: Omega': +"Ubermosh: Omega": installDir: UBERMOSH_OMEGA: {} launch: - /UBERMOSH OMEGA.exe: + "/UBERMOSH OMEGA.exe": - when: - store: steam steam: id: 1181000 -'Ubermosh: Santicide': +"Ubermosh: Santicide": files: - /UBERMOSH_SANTICIDE: + "/UBERMOSH_SANTICIDE": tags: - save when: @@ -592955,21 +594582,21 @@ Ubermosh Vol. 7: installDir: UBERMOSH_SANTICIDE: {} launch: - /UBERMOSH_SANTICIDE.exe: + "/UBERMOSH_SANTICIDE.exe": - when: - os: windows store: steam steam: id: 898450 -'Ubermosh: Wraith': +"Ubermosh: Wraith": installDir: UBERMOSH_WRAITH: {} launch: - /UBERMOSH_WRAITH.exe: + "/UBERMOSH_WRAITH.exe": - when: - os: windows store: steam - /run.sh: + "/run.sh": - when: - os: linux store: steam @@ -592977,7 +594604,7 @@ Ubermosh Vol. 7: id: 586350 Ubinota: files: - /data/slot0.save: + "/data/slot0.save": tags: - save when: @@ -592985,7 +594612,7 @@ Ubinota: installDir: Ubinota: {} launch: - /Ubinota.exe: + "/Ubinota.exe": - when: - os: windows store: steam @@ -592993,7 +594620,7 @@ Ubinota: id: 323630 Uebergame: files: - /My Games/Uebergame: + "/My Games/Uebergame": tags: - config when: @@ -593002,17 +594629,17 @@ Uebergame: installDir: Uebergame: {} launch: - /Uebergame: + "/Uebergame": - when: - bit: 64 os: linux store: steam - /Uebergame-32-bit.exe: + "/Uebergame-32-bit.exe": - when: - bit: 32 os: windows store: steam - /Uebergame.exe: + "/Uebergame.exe": - when: - bit: 64 os: windows @@ -593023,21 +594650,21 @@ Ufflegrim: installDir: Ufflegrim: {} launch: - /Ufflegrim: + "/Ufflegrim": - when: - os: linux store: steam - /Ufflegrim.exe: + "/Ufflegrim.exe": - when: - os: windows store: steam steam: id: 1072800 -'UfoPilot: Astro-Creeps Elite': +"UfoPilot: Astro-Creeps Elite": installDir: UfoPilot Astro-Creeps Elite: {} launch: - /ace_steam.exe: + "/ace_steam.exe": - when: - os: windows store: steam @@ -593046,11 +594673,11 @@ Ufflegrim: Uganda Know De Way: steam: id: 788850 -'UglyDolls: An Imperfect Adventure': +"UglyDolls: An Imperfect Adventure": installDir: UglyDolls: {} launch: - /Moon.exe: + "/Moon.exe": - when: - os: windows store: steam @@ -593060,7 +594687,7 @@ Uh Oh Bartender: installDir: Uh Oh Bartender: {} launch: - /Uh Oh Bartender.exe: + "/Uh Oh Bartender.exe": - when: - os: windows store: steam @@ -593075,7 +594702,7 @@ Ukhar: installDir: Ukhar: {} launch: - /Ukhar.exe: + "/Ukhar.exe": - when: - os: windows store: steam @@ -593085,7 +594712,7 @@ Ukrainian Ball in Search of Gas: installDir: Ukrainian ball in search of gas: {} launch: - /Ukrainian ball in search of gas.exe: + "/Ukrainian ball in search of gas.exe": - when: - os: windows store: steam @@ -593095,17 +594722,17 @@ Ukrainian Ninja: installDir: Ukrainian Ninja: {} launch: - /Binaries/Win32/udk.exe: + "/Binaries/Win32/udk.exe": - when: - os: windows store: steam steam: id: 339000 -'Ulama: Arena of the Gods': +"Ulama: Arena of the Gods": installDir: Ulama Arena of the Gods: {} launch: - /ulama.exe: + "/ulama.exe": - when: - os: windows store: steam @@ -593120,15 +594747,15 @@ Ultima Defesa: installDir: Ultima Defesa: {} launch: - /ultima_defesa.exe: + "/ultima_defesa.exe": - when: - os: windows store: steam steam: id: 1146590 -'Ultima I: The First Age of Darkness': +"Ultima I: The First Age of Darkness": files: - /PLAYER*.U1: + "/PLAYER*.U1": tags: - save when: @@ -593138,9 +594765,9 @@ Ultima Defesa: id: gogExtra: - 1207658961 -'Ultima II: The Revenge of the Enchantress': +"Ultima II: The Revenge of the Enchantress": files: - /PLAYER: + "/PLAYER": tags: - save when: @@ -593150,19 +594777,19 @@ Ultima Defesa: id: gogExtra: - 1207658961 -'Ultima III: Exodus': +"Ultima III: Exodus": files: - /PARTY.ULT: + "/PARTY.ULT": tags: - save when: - os: dos - /ROSTER.ULT: + "/ROSTER.ULT": tags: - save when: - os: dos - /SOSARIA.ULT: + "/SOSARIA.ULT": tags: - save when: @@ -593172,37 +594799,37 @@ Ultima Defesa: id: gogExtra: - 1207658961 -'Ultima IV: Quest of the Avatar': +"Ultima IV: Quest of the Avatar": files: - /*.SAV: + "/*.SAV": tags: - save when: - os: dos gog: id: 1207658962 -'Ultima IX: Ascension': +"Ultima IX: Ascension": files: - /Options.ini: + "/Options.ini": tags: - config when: - os: windows - /savegame: + "/savegame": tags: - save when: - os: windows gog: id: 1207659093 -'Ultima Underworld II: Labyrinth of Worlds': +"Ultima Underworld II: Labyrinth of Worlds": files: - /SAVE*: + "/SAVE*": tags: - save when: - os: dos - /Library/Application Support/Boxer/Gamebox States/com.gog.ultima-underworld-1+2/Current.boxerstate/C Ultima Underworld 1 and 2.harddisk/UNDEROM2: + "/Library/Application Support/Boxer/Gamebox States/com.gog.ultima-underworld-1+2/Current.boxerstate/C Ultima Underworld 1 and 2.harddisk/UNDEROM2": tags: - save when: @@ -593212,14 +594839,14 @@ Ultima Defesa: id: gogExtra: - 1207658937 -'Ultima Underworld: The Stygian Abyss': +"Ultima Underworld: The Stygian Abyss": files: - /SAVE*: + "/SAVE*": tags: - save when: - os: dos - /Library/Application Support/Boxer/Gamebox States/com.gog.ultima-underworld-1+2/Current.boxerstate/C Ultima Underworld 1 and 2.harddisk/UNDEROM1: + "/Library/Application Support/Boxer/Gamebox States/com.gog.ultima-underworld-1+2/Current.boxerstate/C Ultima Underworld 1 and 2.harddisk/UNDEROM1": tags: - save when: @@ -593229,9 +594856,9 @@ Ultima Defesa: id: gogExtra: - 1207658937 -'Ultima V: Warriors of Destiny': +"Ultima V: Warriors of Destiny": files: - /SAVED.GAM: + "/SAVED.GAM": tags: - save when: @@ -593241,14 +594868,14 @@ Ultima Defesa: id: gogExtra: - 1207658965 -'Ultima VI: The False Prophet': +"Ultima VI: The False Prophet": files: - /CONFIG.U6: + "/CONFIG.U6": tags: - config when: - os: dos - /SAVEGAME: + "/SAVEGAME": tags: - save when: @@ -593258,28 +594885,28 @@ Ultima Defesa: id: gogExtra: - 1207658965 -'Ultima VII Part Two: Serpent Isle': +"Ultima VII Part Two: Serpent Isle": files: - /GAME**.U7: + "/GAME**.U7": tags: - save when: - os: dos - /Library/Application Support/Boxer/Gamebox States/com.gog.ultima-7-the-complete-edition/Current.boxerstate/C.harddisk/U7/serpent: + "/Library/Application Support/Boxer/Gamebox States/com.gog.ultima-7-the-complete-edition/Current.boxerstate/C.harddisk/U7/serpent": tags: - save when: - os: mac gog: id: 1207662633 -'Ultima VII: The Black Gate': +"Ultima VII: The Black Gate": files: - /GAME**.U7: + "/GAME**.U7": tags: - save when: - os: dos - /Library/Application Support/Boxer/Gamebox States/com.gog.ultima-7-the-complete-edition/Current.boxerstate/C.harddisk/U7/ultima7: + "/Library/Application Support/Boxer/Gamebox States/com.gog.ultima-7-the-complete-edition/Current.boxerstate/C.harddisk/U7/ultima7": tags: - save when: @@ -593289,23 +594916,23 @@ Ultima Defesa: id: gogExtra: - 1207658984 -'Ultima VIII: Pagan': +"Ultima VIII: Pagan": files: - /SAVEGAME: + "/SAVEGAME": tags: - save when: - os: dos - /U8.INI: + "/U8.INI": tags: - config when: - os: dos gog: id: 1207659015 -'Ultima Worlds of Adventure 2: Martian Dreams': +"Ultima Worlds of Adventure 2: Martian Dreams": files: - /SAVEGAME: + "/SAVEGAME": tags: - save when: @@ -593316,49 +594943,49 @@ Ultimagus: installDir: Ultimagus: {} launch: - /Ultimagus.exe: + "/Ultimagus.exe": - when: - os: windows store: steam steam: id: 575360 -'Ultimate ADOM: Caverns of Chaos': +"Ultimate ADOM: Caverns of Chaos": gog: id: 1341727167 installDir: Ultimate ADOM - Caverns of Chaos: {} launch: - /Ultimate ADOM - Caverns of Chaos.app: + "/Ultimate ADOM - Caverns of Chaos.app": - when: - os: mac store: steam - /Ultimate ADOM - Caverns of Chaos.exe: + "/Ultimate ADOM - Caverns of Chaos.exe": - when: - os: windows store: steam - /Ultimate ADOM - Caverns of Chaos.x86_64: + "/Ultimate ADOM - Caverns of Chaos.x86_64": - when: - os: linux store: steam steam: id: 1266820 -'Ultimate Admiral: Age of Sail': +"Ultimate Admiral: Age of Sail": installDir: Ultimate Admiral Age of Sail: {} launch: - /ReportSender.exe: + "/ReportSender.exe": - when: - store: steam - /build.exe: + "/build.exe": - when: - bit: 64 os: windows store: steam steam: id: 1069650 -'Ultimate Admiral: Dreadnoughts': +"Ultimate Admiral: Dreadnoughts": files: - /AppData/LocalLow/Game Labs/Ultimate Admiral Dreadnoughts: + "/AppData/LocalLow/Game Labs/Ultimate Admiral Dreadnoughts": tags: - config - save @@ -593367,7 +594994,7 @@ Ultimagus: installDir: Ultimate Admiral Dreadnoughts: {} launch: - /Ultimate Admiral Dreadnoughts.exe: + "/Ultimate Admiral Dreadnoughts.exe": - when: - store: steam steam: @@ -593376,16 +595003,16 @@ Ultimate Arena (AceGamer): installDir: UltimateArena: {} launch: - /UltimateArena/Binaries/Linux/UltimateArena-Linux-Shipping: + "/UltimateArena/Binaries/Linux/UltimateArena-Linux-Shipping": - when: - os: linux store: steam - /UltimateArena/Binaries/Win32/UltimateArena-Win32-Shipping.exe: + "/UltimateArena/Binaries/Win32/UltimateArena-Win32-Shipping.exe": - when: - bit: 32 os: windows store: steam - /UltimateArena/Binaries/Win64/UltimateArena-Win64-Shipping.exe: + "/UltimateArena/Binaries/Win64/UltimateArena-Win64-Shipping.exe": - when: - bit: 64 os: windows @@ -593396,17 +595023,17 @@ Ultimate Arena (Triverske): installDir: Ultimate Arena: {} launch: - /Ultimate Arena.exe: + "/Ultimate Arena.exe": - when: - os: windows store: steam steam: id: 385240 -'Ultimate Arena: Showdown': +"Ultimate Arena: Showdown": installDir: ULTIMATE ARENA SHOWDOWN: {} launch: - /showdown.exe: + "/showdown.exe": - when: - os: windows store: steam @@ -593422,13 +595049,13 @@ Ultimate Booster Experience: id: 499620 Ultimate Chicken Horse: files: - /.config/unity3d/Clever Endeavour Games/Ultimate Chicken Horse: + "/.config/unity3d/Clever Endeavour Games/Ultimate Chicken Horse": tags: - config - save when: - os: linux - /AppData/LocalLow/Clever Endeavour Games/Ultimate Chicken Horse/saveData.uch: + "/AppData/LocalLow/Clever Endeavour Games/Ultimate Chicken Horse/saveData.uch": tags: - save when: @@ -593439,15 +595066,15 @@ Ultimate Chicken Horse: installDir: Ultimate Chicken Horse: {} launch: - /UltimateChickenHorse.app: + "/UltimateChickenHorse.app": - when: - os: mac store: steam - /UltimateChickenHorse.exe: + "/UltimateChickenHorse.exe": - when: - os: windows store: steam - /UltimateChickenHorse.x86_64: + "/UltimateChickenHorse.x86_64": - when: - os: linux store: steam @@ -593461,7 +595088,7 @@ Ultimate Coaster X: installDir: Ultimate Coaster X: {} launch: - /UltimateCoasterX.exe: + "/UltimateCoasterX.exe": - when: - bit: 64 os: windows @@ -593472,7 +595099,7 @@ Ultimate Custom Night: installDir: Ultimate Custom Night: {} launch: - /Ultimate Custom Night.exe: + "/Ultimate Custom Night.exe": - when: - os: windows store: steam @@ -593482,7 +595109,7 @@ Ultimate Disc Golf: installDir: Ultimate Disc Golf: {} launch: - /UltimateDiscGolf_4_22.exe: + "/UltimateDiscGolf_4_22.exe": - when: - os: windows store: steam @@ -593492,7 +595119,7 @@ Ultimate Epic Battle Simulator: installDir: Ultimate Epic Battle Simulator: {} launch: - /UEBS.exe: + "/UEBS.exe": - when: - os: windows store: steam @@ -593502,17 +595129,17 @@ Ultimate Fight Manager 2016: installDir: Ultimate Fight Manager 2016: {} launch: - /UFM: + "/UFM": - when: - os: linux store: steam - /UFM.app: - - arguments: '--in-process-gpu' + "/UFM.app": + - arguments: "--in-process-gpu" when: - os: mac store: steam - /nw.exe: - - arguments: '--in-process-gpu' + "/nw.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam @@ -593522,7 +595149,7 @@ Ultimate Fighters: installDir: UltimateFighters: {} launch: - /UltimateFighters.exe: + "/UltimateFighters.exe": - when: - os: windows store: steam @@ -593530,24 +595157,25 @@ Ultimate Fighters: id: 1999090 Ultimate Fishing Simulator: files: - /AppData/LocalLow/PlayWay/UltimateFishing_GOG: + "/AppData/LocalLow/PlayWay/UltimateFishing_GOG": tags: - save when: - - store: gog + - os: windows + store: gog gog: id: 1370519273 installDir: Ultimate Fishing: {} launch: - /UltimateFishing.exe: - - arguments: '-vrmode None' + "/UltimateFishing.exe": + - arguments: "-vrmode None" when: - bit: 64 os: windows store: steam - /UltimateFishing32.bat: - - arguments: '-vrmode None' + "/UltimateFishing32.bat": + - arguments: "-vrmode None" when: - bit: 32 os: windows @@ -593556,6 +595184,8 @@ Ultimate Fishing Simulator: HKEY_CURRENT_USER/Software/PlayWay/UltimateFishing_GOG: tags: - config + when: + - store: gog steam: id: 468920 Ultimate Fishing Simulator VR: @@ -593566,9 +595196,9 @@ Ultimate Fishing Simulator VR: Ultimate Flickball Arena: steam: id: 1146710 -'Ultimate General: Civil War': +"Ultimate General: Civil War": files: - /AppData/LocalLow/Game Labs/Ultimate General Civil War/Save: + "/AppData/LocalLow/Game Labs/Ultimate General Civil War/Save": tags: - save when: @@ -593578,23 +595208,23 @@ Ultimate Flickball Arena: installDir: Ultimate General Civil War: {} launch: - /UGCWReporter.exe: + "/UGCWReporter.exe": - when: - os: windows store: steam - /Ultimate General Civil War.app: + "/Ultimate General Civil War.app": - when: - os: mac store: steam - /Ultimate General Civil War.exe: + "/Ultimate General Civil War.exe": - when: - os: windows store: steam - - arguments: '-force-glcore' + - arguments: "-force-glcore" when: - os: windows store: steam - - arguments: '-force-d3d9' + - arguments: "-force-d3d9" when: - os: windows store: steam @@ -593604,14 +595234,14 @@ Ultimate Flickball Arena: - config steam: id: 502520 -'Ultimate General: Gettysburg': +"Ultimate General: Gettysburg": files: - /unity3d/Game Labs/Ultimate General Gettysburg: + "/unity3d/Game Labs/Ultimate General Gettysburg": tags: - config when: - os: linux - /unity3d/Game Labs/Ultimate General Gettysburg/Saves: + "/unity3d/Game Labs/Ultimate General Gettysburg/Saves": tags: - save when: @@ -593621,50 +595251,50 @@ Ultimate Flickball Arena: installDir: Ultimate General Gettysburg: {} launch: - /Bug Reporter.exe: + "/Bug Reporter.exe": - when: - os: windows store: steam - /Ultimate General Gettysburg.app: + "/Ultimate General Gettysburg.app": - when: - os: mac store: steam - /Ultimate General Gettysburg.exe: + "/Ultimate General Gettysburg.exe": - when: - os: windows store: steam - - arguments: '-force-opengl' + - arguments: "-force-opengl" when: - os: windows store: steam - /Ultimate General Gettysburg.x86: + "/Ultimate General Gettysburg.x86": - when: - bit: 32 os: linux store: steam - /Ultimate General Gettysburg.x86_64: + "/Ultimate General Gettysburg.x86_64": - when: - bit: 64 os: linux store: steam - /Ultimate General Multiplayer.app: + "/Ultimate General Multiplayer.app": - when: - os: mac store: steam - /Ultimate General Multiplayer.exe: + "/Ultimate General Multiplayer.exe": - when: - os: windows store: steam - - arguments: '-force-opengl' + - arguments: "-force-opengl" when: - os: windows store: steam - /Ultimate General Multiplayer.x86: + "/Ultimate General Multiplayer.x86": - when: - bit: 32 os: linux store: steam - /Ultimate General Multiplayer.x86_64: + "/Ultimate General Multiplayer.x86_64": - when: - bit: 64 os: linux @@ -593675,7 +595305,7 @@ Ultimate Hardbass Defence: installDir: UHD: {} launch: - /UHD.exe: + "/UHD.exe": - when: - os: windows store: steam @@ -593685,11 +595315,11 @@ Ultimate Legends: installDir: Ultimate Legends: {} launch: - /Game.app: + "/Game.app": - when: - os: mac store: steam - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -593699,11 +595329,11 @@ Ultimate Logic Puzzle Collection: installDir: Ultimate Logic Puzzle Collection: {} launch: - /UltimatePuzzle.app/Contents/MacOS/UltimatePuzzle: + "/UltimatePuzzle.app/Contents/MacOS/UltimatePuzzle": - when: - os: mac store: steam - /UltimatePuzzle.exe: + "/UltimatePuzzle.exe": - when: - os: windows store: steam @@ -593711,13 +595341,13 @@ Ultimate Logic Puzzle Collection: id: 1028750 Ultimate Marvel vs. Capcom 3: files: - /userdata//357190/remote: + "/userdata//357190/remote": tags: - save when: - os: windows store: steam - /CAPCOM/ULTIMATE MARVEL VS. CAPCOM 3: + "/CAPCOM/ULTIMATE MARVEL VS. CAPCOM 3": tags: - config when: @@ -593725,7 +595355,7 @@ Ultimate Marvel vs. Capcom 3: installDir: ULTIMATE MARVEL VS. CAPCOM 3: {} launch: - /umvc3.exe: + "/umvc3.exe": - when: - os: windows store: steam @@ -593735,12 +595365,12 @@ Ultimate Panic Flight: installDir: Ultimate Panic Flight: {} launch: - /UltimatePanicFlight.x32.exe: + "/UltimatePanicFlight.x32.exe": - when: - bit: 32 os: windows store: steam - /UltimatePanicFlight.x64.exe: + "/UltimatePanicFlight.x64.exe": - when: - bit: 64 os: windows @@ -593751,7 +595381,7 @@ Ultimate Poker: installDir: Ultimate Poker: {} launch: - /Ultimate Poker.exe: + "/Ultimate Poker.exe": - when: - os: windows store: steam @@ -593761,45 +595391,45 @@ Ultimate Racing 2D: installDir: Ultimate Racing 2D: {} launch: - /Ultimate_Racing_2D.app/Contents/MacOS/Ultimate_Racing_2D: + "/Ultimate_Racing_2D.app/Contents/MacOS/Ultimate_Racing_2D": - when: - os: mac store: steam - /Ultimate_Racing_2D.exe: + "/Ultimate_Racing_2D.exe": - when: - os: windows store: steam - /run.sh: + "/run.sh": - when: - os: linux store: steam steam: id: 808080 -'Ultimate Rivals: The Court': +"Ultimate Rivals: The Court": files: - /Library/Containers/Ultimate Rivals - The Court/Data/Library/Application Support/Epic/RivalsBasketball/Saved/SaveGames: + "/Library/Containers/Ultimate Rivals - The Court/Data/Library/Application Support/Epic/RivalsBasketball/Saved/SaveGames": tags: - save when: - os: mac steam: id: 1539400 -'Ultimate Rivals: The Rink': +"Ultimate Rivals: The Rink": steam: id: 1540240 Ultimate Rock Crawler: installDir: Ultimate Rock Crawler: {} launch: - /ultimaterockcrawler.app: + "/ultimaterockcrawler.app": - when: - os: mac store: steam - /ultimaterockcrawler.exe: + "/ultimaterockcrawler.exe": - when: - os: windows store: steam - /ultimaterockcrawler.x86: + "/ultimaterockcrawler.x86": - when: - os: linux store: steam @@ -593812,7 +595442,7 @@ Ultimate Select Hero: installDir: UltimateSelectHero: {} launch: - /UltimateSelectHero.exe: + "/UltimateSelectHero.exe": - when: - os: windows store: steam @@ -593827,11 +595457,11 @@ Ultimate Solid: installDir: Ultimate Solid: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam - /ultimatesolid.app/Contents/MacOS/nwjs: + "/ultimatesolid.app/Contents/MacOS/nwjs": - when: - os: mac store: steam @@ -593839,13 +595469,13 @@ Ultimate Solid: id: 534200 Ultimate Space Commando: files: - /steamapps/common/Ultimate Space Commando: + "/steamapps/common/Ultimate Space Commando": tags: - config when: - os: windows store: steam - /steamapps/common/Ultimate Space Commando/data_user/saves_camp: + "/steamapps/common/Ultimate Space Commando/data_user/saves_camp": tags: - save when: @@ -593854,7 +595484,7 @@ Ultimate Space Commando: installDir: Ultimate Space Commando: {} launch: - /USC.exe: + "/USC.exe": - when: - os: windows store: steam @@ -593864,15 +595494,15 @@ Ultimate Spider Hero: installDir: Ultimate Spider Hero: {} launch: - /Ultimate Spider Hero.app/Contents/MacOS/Ultimate Spider Hero: + "/Ultimate Spider Hero.app/Contents/MacOS/Ultimate Spider Hero": - when: - os: mac store: steam - /Ultimate Spider Hero.exe: + "/Ultimate Spider Hero.exe": - when: - os: windows store: steam - /Ultimate Spider Hero.x86: + "/Ultimate Spider Hero.x86": - when: - os: linux store: steam @@ -593880,7 +595510,7 @@ Ultimate Spider Hero: id: 777400 Ultimate Spider-Man: files: - /Activision/Ultimate Spider-Man/Save: + "/Activision/Ultimate Spider-Man/Save": tags: - save when: @@ -593893,7 +595523,7 @@ Ultimate Spinner Simulator - Unstress Yourself: installDir: Ultimate Spinner Simulator: {} launch: - /UAS.exe: + "/UAS.exe": - when: - os: windows store: steam @@ -593903,11 +595533,11 @@ Ultimate Sudoku Collection: installDir: Ultimate Sudoku Collection: {} launch: - /UltimateSudoku.app/Contents/MacOS/UltimateSudoku: + "/UltimateSudoku.app/Contents/MacOS/UltimateSudoku": - when: - os: mac store: steam - /UltimateSudoku.exe: + "/UltimateSudoku.exe": - when: - os: windows store: steam @@ -593917,7 +595547,7 @@ Ultimate Summer Boat: installDir: Ultimate Summer: {} launch: - /Ultimate Summer.exe: + "/Ultimate Summer.exe": - when: - bit: 64 os: windows @@ -593928,7 +595558,7 @@ Ultimate Tic-Tac-Toe: installDir: Ultimate Tic-Tac-Toe: {} launch: - /UltimTicTacToe.exe: + "/UltimTicTacToe.exe": - when: - os: windows store: steam @@ -593938,17 +595568,17 @@ Ultimate War: installDir: Ultimate War: {} launch: - /Ultimate War.exe: + "/Ultimate War.exe": - when: - os: windows store: steam steam: id: 888250 -'Ultimate Word Search 2: Letter Boxed': +"Ultimate Word Search 2: Letter Boxed": installDir: Ultimate Word Search 2 Letter Boxed: {} launch: - /UltimateWordSearch2.exe: + "/UltimateWordSearch2.exe": - when: - os: windows store: steam @@ -593956,7 +595586,7 @@ Ultimate War: id: 514490 Ultimate Yahtzee: files: - /*.yat: + "/*.yat": tags: - save when: @@ -593965,16 +595595,16 @@ Ultimate Zombie Defense: installDir: Ultimate Zombie Defense: {} launch: - /UltimateZombieDefense.app: + "/UltimateZombieDefense.app": - when: - os: mac store: steam - /UltimateZombieDefense_32.exe: + "/UltimateZombieDefense_32.exe": - when: - bit: 32 os: windows store: steam - /UltimateZombieDefense_64.exe: + "/UltimateZombieDefense_64.exe": - when: - bit: 64 os: windows @@ -593985,7 +595615,7 @@ Ultimo Reino: installDir: Ultimo Reino: {} launch: - /uro.exe: + "/uro.exe": - when: - os: windows store: steam @@ -593995,39 +595625,39 @@ Ultimus bellum: installDir: Ultimus bellum: {} launch: - /Ultimus Bellum.exe: + "/Ultimus Bellum.exe": - when: - os: windows store: steam - /Ultimus Bellum.x86: + "/Ultimus Bellum.x86": - when: - bit: 32 os: linux store: steam - /Ultimus Bellum.x86_64: + "/Ultimus Bellum.x86_64": - when: - bit: 64 os: linux store: steam - /UltimusBellum.app: + "/UltimusBellum.app": - when: - os: mac store: steam steam: id: 566430 -'Ultionus: A Tale of Petty Revenge': +"Ultionus: A Tale of Petty Revenge": installDir: Ultionus: {} launch: - /Ultionus.exe: + "/Ultionus.exe": - when: - os: windows store: steam - /Ultionus_ A Tale of Petty Revenge.app: + "/Ultionus_ A Tale of Petty Revenge.app": - when: - os: mac store: steam - /run.sh: + "/run.sh": - when: - os: linux store: steam @@ -594035,12 +595665,12 @@ Ultimus bellum: id: 279160 Ultra Age: files: - /PU/Saved/Config/WindowsNoEditor: + "/PU/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /PU/Saved/SaveGames: + "/PU/Saved/SaveGames": tags: - save when: @@ -594048,7 +595678,7 @@ Ultra Age: installDir: Ultra Age: {} launch: - /PU.exe: + "/PU.exe": - when: - os: windows store: steam @@ -594056,17 +595686,17 @@ Ultra Age: id: 1683100 Ultra Fight Da ! Kyanta 2: files: - /Options.data: + "/Options.data": tags: - config when: - os: windows - /Save.data: + "/Save.data": tags: - save when: - os: windows - /Save2.data: + "/Save2.data": tags: - save when: @@ -594074,7 +595704,7 @@ Ultra Fight Da ! Kyanta 2: installDir: Ultra Fight Da ! Kyanta 2: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -594083,11 +595713,11 @@ Ultra Fight Da ! Kyanta 2: Ultra Hardcore: steam: id: 793720 -'Ultra Off-Road Simulator 2019: Alaska': +"Ultra Off-Road Simulator 2019: Alaska": installDir: Ultra Off-Road Simulator 2019 - Alaska: {} launch: - /Ultra Off-Road Simulator 2019 Alaska.exe: + "/Ultra Off-Road Simulator 2019 Alaska.exe": - when: - os: windows store: steam @@ -594097,7 +595727,7 @@ Ultra Pig: installDir: Ultra Pig: {} launch: - /UltraPig.exe: + "/UltraPig.exe": - when: - store: steam steam: @@ -594106,7 +595736,7 @@ Ultra Savage: installDir: Ultra Savage: {} launch: - /Ultra Savage.exe: + "/Ultra Savage.exe": - when: - os: windows store: steam @@ -594116,11 +595746,11 @@ Ultra Space Battle Brawl: installDir: Ultra Space Battle Brawl: {} launch: - /Ultra Space Battle Brawl.app/Contents/MacOS/Ultra Space Battle Brawl: + "/Ultra Space Battle Brawl.app/Contents/MacOS/Ultra Space Battle Brawl": - when: - os: mac store: steam - /Ultra Space Battle Brawl.exe: + "/Ultra Space Battle Brawl.exe": - when: - os: windows store: steam @@ -594133,7 +595763,7 @@ Ultra foodmess: installDir: Ultra Foodmess: {} launch: - /Ultra Foodmess.exe: + "/Ultra Foodmess.exe": - when: - os: windows store: steam @@ -594146,7 +595776,7 @@ UltraGoodness: installDir: UltraGoodness: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -594156,7 +595786,7 @@ UltraGoodness 2: installDir: UltraGoodness 2: {} launch: - /UltraGoodness2.exe: + "/UltraGoodness2.exe": - when: - os: windows store: steam @@ -594167,12 +595797,12 @@ Ultraball: id: 708030 Ultrabots: files: - /*.CFG: + "/*.CFG": tags: - config when: - os: dos - /*.LOG: + "/*.LOG": tags: - save when: @@ -594182,7 +595812,7 @@ Ultrabugs: id: 864930 Ultrakill: files: - /steamapps/common/ULTRAKILL/Saves: + "/steamapps/common/ULTRAKILL/Saves": tags: - save when: @@ -594198,7 +595828,7 @@ Ultrakill: installDir: ULTRAKILL: {} launch: - /ULTRAKILL.exe: + "/ULTRAKILL.exe": - when: - os: windows store: steam @@ -594215,7 +595845,7 @@ Ultratank: installDir: Ultratank: {} launch: - /Ultratank.exe: + "/Ultratank.exe": - when: - os: windows store: steam @@ -594223,13 +595853,13 @@ Ultratank: id: 619610 Ultratron: files: - /.ultratron: + "/.ultratron": tags: - config - save when: - os: linux - /userdata//219190/remote/.ultratron_3.03: + "/userdata//219190/remote/.ultratron_3.03": tags: - config - save @@ -594238,15 +595868,15 @@ Ultratron: installDir: Ultratron: {} launch: - /Ultratron.app: + "/Ultratron.app": - when: - os: mac store: steam - /Ultratron.exe: + "/Ultratron.exe": - when: - os: windows store: steam - /ultratron.sh: + "/ultratron.sh": - when: - os: linux store: steam @@ -594254,12 +595884,12 @@ Ultratron: id: 219190 Ultrawings: files: - /AppData/LocalLow/Bit Planet Games LLC/Ultrawings/FloppyGreen.dat: + "/AppData/LocalLow/Bit Planet Games LLC/Ultrawings/FloppyGreen.dat": tags: - save when: - os: windows - /AppData/LocalLow/Bit Planet Games LLC/Ultrawings/Unity/local.a93cf0fcbd35df846b0b2f6b8d66ee45/Analytics/config: + "/AppData/LocalLow/Bit Planet Games LLC/Ultrawings/Unity/local.a93cf0fcbd35df846b0b2f6b8d66ee45/Analytics/config": tags: - config when: @@ -594272,7 +595902,7 @@ Ultrawings Flat: installDir: Ultrawings FLAT: {} launch: - /UltrawingsFlat.exe: + "/UltrawingsFlat.exe": - when: - bit: 64 os: windows @@ -594283,7 +595913,7 @@ Ultraworld Exodus: installDir: ULTRAWORLD EXODUS: {} launch: - /bin/win_x64/ULTRAWORLD EXODUS.exe: + "/bin/win_x64/ULTRAWORLD EXODUS.exe": - when: - bit: 64 os: windows @@ -594292,7 +595922,7 @@ Ultraworld Exodus: id: 331580 Ultreïa: files: - /AppData/LocalLow/Greewook/Ultreïa: + "/AppData/LocalLow/Greewook/Ultreïa": tags: - save when: @@ -594300,7 +595930,7 @@ Ultreïa: installDir: Ultreïa: {} launch: - /Ultreia.exe: + "/Ultreia.exe": - when: - os: windows store: steam @@ -594314,19 +595944,19 @@ Ulxrd: installDir: ulxrd: {} launch: - /ulxrd.app: + "/ulxrd.app": - when: - os: mac store: steam - /ulxrd.exe: + "/ulxrd.exe": - when: - os: windows store: steam steam: id: 898950 -'Uma Musume: Pretty Derby': +"Uma Musume: Pretty Derby": files: - /AppData/LocalLow/Cygames/umamusume/d/SaveData.db: + "/AppData/LocalLow/Cygames/umamusume/d/SaveData.db": tags: - save when: @@ -594335,11 +595965,11 @@ Ulxrd: HKEY_CURRENT_USER/SOFTWARE/Cygames/umamusume: tags: - config -'Umbra: Shadow of Death': +"Umbra: Shadow of Death": installDir: Umbra Shadow of Death: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -594349,7 +595979,7 @@ Umbraseal: installDir: Umbraseal: {} launch: - /Umbraseal.exe: + "/Umbraseal.exe": - when: - bit: 64 os: windows @@ -594360,7 +595990,7 @@ Umbrella: installDir: Umbrella: {} launch: - /Umbrella.exe: + "/Umbrella.exe": - when: - store: steam steam: @@ -594373,7 +596003,7 @@ Umbrella Corps: installDir: Umbrella Corps: {} launch: - /uc.exe: + "/uc.exe": - when: - os: windows store: steam @@ -594387,7 +596017,7 @@ Umfend: installDir: Umfend: {} launch: - /Umfend.exe: + "/Umfend.exe": - when: - os: windows store: steam @@ -594395,12 +596025,12 @@ Umfend: id: 779090 Umihara Kawase: files: - /UmiharaKawase/UmiFst00.bin: + "/UmiharaKawase/UmiFst00.bin": tags: - save when: - os: windows - /UmiharaKawase/hidconf.ini: + "/UmiharaKawase/hidconf.ini": tags: - config when: @@ -594408,7 +596038,7 @@ Umihara Kawase: installDir: UmiharaKawase: {} launch: - /UmiFstWin.exe: + "/UmiFstWin.exe": - when: - os: windows store: steam @@ -594416,7 +596046,7 @@ Umihara Kawase: id: 384690 Umihara Kawase BaZooKa!: files: - /userdata//1271620/remote/ukb_conf/sd_sys.sav: + "/userdata//1271620/remote/ukb_conf/sd_sys.sav": tags: - save when: @@ -594425,7 +596055,7 @@ Umihara Kawase BaZooKa!: installDir: UmiharaKawaseBaZooKa: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -594433,7 +596063,7 @@ Umihara Kawase BaZooKa!: id: 1271620 Umihara Kawase Fresh!: files: - /userdata//1272680/remote/ukf_conf/sd_sys.sav: + "/userdata//1272680/remote/ukf_conf/sd_sys.sav": tags: - save when: @@ -594442,7 +596072,7 @@ Umihara Kawase Fresh!: installDir: UmiharaKawaseFresh: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -594450,12 +596080,12 @@ Umihara Kawase Fresh!: id: 1272680 Umihara Kawase Shun: files: - /UmiharaKawase Shun SE/UmiShun00.bin: + "/UmiharaKawase Shun SE/UmiShun00.bin": tags: - save when: - os: windows - /UmiharaKawase Shun SE/hidconf.ini: + "/UmiharaKawase Shun SE/hidconf.ini": tags: - config when: @@ -594463,24 +596093,24 @@ Umihara Kawase Shun: installDir: UmiharaKawase Shun SE: {} launch: - /UmiShunWin.exe: + "/UmiShunWin.exe": - when: - store: steam steam: id: 384700 Umineko When They Cry - Answer Arcs: files: - /mysav: + "/mysav": tags: - save when: - os: windows - /saves: + "/saves": tags: - save when: - os: windows - /.umineko8final: + "/.umineko8final": tags: - save when: @@ -594490,16 +596120,16 @@ Umineko When They Cry - Answer Arcs: installDir: Umineko Chiru: {} launch: - /Umineko5to8: + "/Umineko5to8": - when: - bit: 64 os: linux store: steam - /Umineko5to8.app: + "/Umineko5to8.app": - when: - os: mac store: steam - /Umineko5to8.exe: + "/Umineko5to8.exe": - when: - os: windows store: steam @@ -594507,17 +596137,17 @@ Umineko When They Cry - Answer Arcs: id: 639490 Umineko When They Cry - Question Arcs: files: - /mysav: + "/mysav": tags: - save when: - os: windows - /saves: + "/saves": tags: - save when: - os: windows - /.Umineko4hdz: + "/.Umineko4hdz": tags: - save when: @@ -594527,26 +596157,26 @@ Umineko When They Cry - Question Arcs: installDir: Umineko: {} launch: - /Umineko1to4: + "/Umineko1to4": - when: - bit: 64 os: linux store: steam - /Umineko1to4.app: + "/Umineko1to4.app": - when: - os: mac store: steam - /Umineko1to4.exe: + "/Umineko1to4.exe": - when: - os: windows store: steam steam: id: 406550 -'Umineko: Golden Fantasia': +"Umineko: Golden Fantasia": installDir: Umineko Golden Fantasia: {} launch: - /Ougon.exe: + "/Ougon.exe": - when: - os: windows store: steam @@ -594556,11 +596186,11 @@ Umiro: installDir: Umiro: {} launch: - /umiro.app/Contents/MacOS/umiro: + "/umiro.app/Contents/MacOS/umiro": - when: - os: mac store: steam - /umiro.exe: + "/umiro.exe": - when: - os: windows store: steam @@ -594573,7 +596203,7 @@ Umpire Simulator: id: 599070 Umurangi Generation: files: - /LocalLow/ORIGAME DIGITAL/Umurangi Generation/*.FDSAVE: + "/LocalLow/ORIGAME DIGITAL/Umurangi Generation/*.FDSAVE": tags: - save when: @@ -594581,7 +596211,7 @@ Umurangi Generation: installDir: Umurangi Generation: {} launch: - /UmurangiGeneration/Umurangi Generation.exe: + "/UmurangiGeneration/Umurangi Generation.exe": - when: - os: windows store: steam @@ -594595,16 +596225,19 @@ Un Pas Fragile: installDir: Un Pas Fragile: {} launch: - /Un Pas Fragile.exe: + "/Un Pas Fragile.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam - /nw: + "/nw": - when: - os: linux store: steam - /unpasfragile.app/Contents/MacOS/nwjs: + "/unpasfragile.app/Contents/MacOS/nwjs": - when: - os: mac store: steam @@ -594614,11 +596247,11 @@ UnBorn: installDir: unBorn: {} launch: - /game.ios: + "/game.ios": - when: - os: mac store: steam - /unBorn.exe: + "/unBorn.exe": - when: - os: windows store: steam @@ -594628,54 +596261,54 @@ UnBorn (nextjen): installDir: UnBorn: {} launch: - /unbornz.exe: + "/unbornz.exe": - when: - store: steam steam: id: 886420 UnEpic: files: - /Unepic.app/Contents/Resources/save: + "/Unepic.app/Contents/Resources/save": tags: - save when: - os: mac - /config.cfg: + "/config.cfg": tags: - config when: - os: windows - /save: + "/save": tags: - save when: - os: windows - /userdata//233980/remote/config.cfg: + "/userdata//233980/remote/config.cfg": tags: - config when: - store: steam - /userdata//233980/remote/save: + "/userdata//233980/remote/save": tags: - save when: - store: steam - /unepic/config.cfg: + "/unepic/config.cfg": tags: - config when: - os: windows - /unepic/save: + "/unepic/save": tags: - save when: - os: windows - /Unepic/unepic: + "/Unepic/unepic": tags: - save when: - os: linux - /Unepic/unepic/config.cfg: + "/Unepic/unepic/config.cfg": tags: - config when: @@ -594685,24 +596318,24 @@ UnEpic: installDir: Unepic: {} launch: - /Unepic.app: - - arguments: '-console' + "/Unepic.app": + - arguments: "-console" when: - os: mac store: steam - /unepic.exe: - - arguments: '-console' + "/unepic.exe": + - arguments: "-console" when: - os: windows store: steam - /unepic32s: - - arguments: '-console' + "/unepic32s": + - arguments: "-console" when: - bit: 32 os: linux store: steam - /unepic64s: - - arguments: '-console' + "/unepic64s": + - arguments: "-console" when: - bit: 64 os: linux @@ -594713,7 +596346,7 @@ UnHolY DisAsTeR: installDir: UnHolY DisAsTeR: {} launch: - /UnHolY DisAsTeR.exe: + "/UnHolY DisAsTeR.exe": - when: - os: windows store: steam @@ -594723,12 +596356,12 @@ UnHolY ToRturEr: installDir: UnHolY ToRturEr: {} launch: - /32bit/UnHolY ToRturEr.exe: + "/32bit/UnHolY ToRturEr.exe": - when: - bit: 32 os: windows store: steam - /UnHolY ToRturEr.exe: + "/UnHolY ToRturEr.exe": - when: - bit: 64 os: windows @@ -594737,13 +596370,13 @@ UnHolY ToRturEr: id: 1158010 UnMetal: files: - /userdata//1203710/remote: + "/userdata//1203710/remote": tags: - save when: - os: windows store: steam - /userdata//1203710/remote/unmetal_config.cfg: + "/userdata//1203710/remote/unmetal_config.cfg": tags: - config when: @@ -594754,8 +596387,8 @@ UnMetal: installDir: UnMetal: {} launch: - /unmetal.exe: - - arguments: '-console' + "/unmetal.exe": + - arguments: "-console" when: - os: windows store: steam @@ -594765,34 +596398,34 @@ UnReal World: installDir: UnRealWorld: {} launch: - /UrW.app/Contents/Resources/urw3-bin: + "/UrW.app/Contents/Resources/urw3-bin": - when: - os: mac store: steam - workingDir: /UrW.app/Contents/Resources - /urw.exe: + workingDir: "/UrW.app/Contents/Resources" + "/urw.exe": - when: - os: windows store: steam - /urw3-bin: + "/urw3-bin": - when: - os: linux store: steam steam: id: 351700 -'UnSummoning: The Spectral Horde': +"UnSummoning: The Spectral Horde": installDir: UnSummoning the Spectral Horde: {} launch: - /UnSummoning.app/Contents/MacOS/UnSummoning: + "/UnSummoning.app/Contents/MacOS/UnSummoning": - when: - os: mac store: steam - /UnSummoning.exe: + "/UnSummoning.exe": - when: - os: windows store: steam - /UnSummoning.x86: + "/UnSummoning.x86": - when: - os: linux store: steam @@ -594802,21 +596435,21 @@ UnWorded: installDir: unWorded: {} launch: - /UnWorded.app: + "/UnWorded.app": - when: - os: mac store: steam - /unWorded.exe: + "/unWorded.exe": - when: - os: windows store: steam steam: id: 687900 -'Unaided: 1939': +"Unaided: 1939": installDir: Unaided 1939: {} launch: - /Unaided.exe: + "/Unaided.exe": - when: - bit: 64 os: windows @@ -594827,39 +596460,39 @@ Unalive: installDir: Unalive: {} launch: - /Unalive.exe: + "/Unalive.exe": - when: - store: steam steam: id: 574640 Unavowed: files: - /Library/Application Support/Unavowed: + "/Library/Application Support/Unavowed": tags: - save when: - os: mac - /Library/Application Support/Unavowed/acsetup.cfg: + "/Library/Application Support/Unavowed/acsetup.cfg": tags: - config when: - os: mac - /Saved Games/Unavowed: + "/Saved Games/Unavowed": tags: - save when: - os: windows - /Saved Games/Unavowed/acsetup.cfg: + "/Saved Games/Unavowed/acsetup.cfg": tags: - config when: - os: windows - /ags/Unavowed: + "/ags/Unavowed": tags: - save when: - os: linux - /ags/Unavowed/acsetup.cfg: + "/ags/Unavowed/acsetup.cfg": tags: - config when: @@ -594874,16 +596507,19 @@ Unavowed: installDir: Unavowed: {} launch: - /Start.sh: + "/Start.sh": - when: - bit: 32 os: linux store: steam - /Unavowed.app/Contents/MacOS/AGS: + - bit: 64 + os: linux + store: steam + "/Unavowed.app/Contents/MacOS/AGS": - when: - os: mac store: steam - /Unavowed.exe: + "/Unavowed.exe": - when: - os: windows store: steam @@ -594893,16 +596529,19 @@ Unbalance: installDir: Unbalance: {} launch: - /Unbalance: + "/Unbalance": - when: - bit: 32 os: linux store: steam - /Unbalance.app: + - bit: 64 + os: linux + store: steam + "/Unbalance.app": - when: - os: mac store: steam - /Unbalance.exe: + "/Unbalance.exe": - when: - os: windows store: steam @@ -594912,17 +596551,17 @@ Unbeatable Wilderness: installDir: wdhy: {} launch: - /haidao64/wdhye(32bit).exe: + "/haidao64/wdhye(32bit).exe": - when: - bit: 32 os: windows store: steam - /nuoza/nuoza.exe: + "/nuoza/nuoza.exe": - when: - bit: 64 os: windows store: steam - /wwe/wdhy.exe: + "/wwe/wdhy.exe": - when: - bit: 64 os: windows @@ -594933,25 +596572,25 @@ Unblock Gridlock: installDir: UnblockGridlock: {} launch: - /UnblockGridlock.exe: + "/UnblockGridlock.exe": - when: - os: windows store: steam steam: id: 977100 -'Unblock: The Parking': +"Unblock: The Parking": installDir: Unblock The Parking: {} launch: - /Unblock - The Parking.app/Contents/MacOS/Unblock - The Parking: + "/Unblock - The Parking.app/Contents/MacOS/Unblock - The Parking": - when: - os: mac store: steam - /Unblock - The Parking.exe: + "/Unblock - The Parking.exe": - when: - os: windows store: steam - /Unblock - The Parking.x86: + "/Unblock - The Parking.x86": - when: - os: linux store: steam @@ -594973,15 +596612,15 @@ Unborne: installDir: Unborne: {} launch: - /Unborne.exe: + "/Unborne.exe": - when: - os: windows store: steam steam: id: 645150 -'Unbound: Worlds Apart': +"Unbound: Worlds Apart": files: - /Unbound/Saved/SaveGames: + "/Unbound/Saved/SaveGames": tags: - save when: @@ -594991,15 +596630,15 @@ Unborne: installDir: UnboundWorldsApart: {} launch: - /Unbound.app: + "/Unbound.app": - when: - os: mac store: steam - /Unbound.exe: + "/Unbound.exe": - when: - os: windows store: steam - /Unbound.sh: + "/Unbound.sh": - when: - os: linux store: steam @@ -595007,12 +596646,12 @@ Unborne: id: 814680 Unbox: files: - /BoxJump/Saved/Config/WindowsNoEditor: + "/BoxJump/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /BoxJump/Saved/SaveGames: + "/BoxJump/Saved/SaveGames": tags: - save when: @@ -595020,7 +596659,7 @@ Unbox: installDir: Unbox: {} launch: - /BoxJump.exe: + "/BoxJump.exe": - when: - os: windows store: steam @@ -595035,11 +596674,11 @@ Unbroken Warrior: installDir: Unbroken Warrior: {} launch: - /Unbroken Warrior.app/Contents/MacOS/Unbroken Warrior: + "/Unbroken Warrior.app/Contents/MacOS/Unbroken Warrior": - when: - os: mac store: steam - /Unbroken Warrior.exe: + "/Unbroken Warrior.exe": - when: - os: windows store: steam @@ -595049,11 +596688,11 @@ Uncanny: installDir: Uncanny: {} launch: - /Uncanny.app/Contents/MacOS/Uncanny: + "/Uncanny.app/Contents/MacOS/Uncanny": - when: - os: mac store: steam - /Uncanny/Uncanny.exe: + "/Uncanny/Uncanny.exe": - when: - os: windows store: steam @@ -595063,7 +596702,7 @@ Uncanny Islands: installDir: Uncanny Islands: {} launch: - /Uncanny Islands.exe: + "/Uncanny Islands.exe": - when: - os: windows store: steam @@ -595073,7 +596712,7 @@ Uncanny Valley: installDir: Uncanny Valley: {} launch: - /PPA2IP.exe: + "/PPA2IP.exe": - when: - os: windows store: steam @@ -595083,30 +596722,30 @@ Uncharted Ocean: installDir: hanghai: {} launch: - /hanghai.exe: + "/hanghai.exe": - when: - os: windows store: steam steam: id: 1158690 -'Uncharted Tides: Port Royal': +"Uncharted Tides: Port Royal": installDir: Uncharted Tides: {} launch: - /UnchartedTides.app/Contents/MacOS/UnchartedTides: + "/UnchartedTides.app/Contents/MacOS/UnchartedTides": - when: - os: mac store: steam - /UnchartedTides.exe: + "/UnchartedTides.exe": - when: - os: windows store: steam - /UnchartedTides_amd64: + "/UnchartedTides_amd64": - when: - bit: 64 os: linux store: steam - /UnchartedTides_i386: + "/UnchartedTides_i386": - when: - bit: 32 os: linux @@ -595117,7 +596756,7 @@ Uncharted Waters: installDir: Daikoukai1: {} launch: - /Daikoukai1_Launcher.exe: + "/Daikoukai1_Launcher.exe": - when: - os: windows store: steam @@ -595127,7 +596766,7 @@ Uncharted Waters IV HD Version: installDir: DK4HD: {} launch: - /DK4HDLauncher.exe: + "/DK4HDLauncher.exe": - when: - store: steam steam: @@ -595135,8 +596774,8 @@ Uncharted Waters IV HD Version: Uncharted Waters Online: id: steamExtra: - - 317110 - 224320 + - 317110 - 323440 - 323441 - 323442 @@ -595146,7 +596785,7 @@ Uncharted Waters Online: installDir: Uncharted Waters Online: {} launch: - /GVOnline.exe: + "/GVOnline.exe": - arguments: steam when: - os: windows @@ -595157,20 +596796,20 @@ Uncharted Waters Origin: installDir: Uncharted Waters Origin: {} launch: - /Uwo.exe: + "/Uwo.exe": - when: - store: steam - workingDir: /Uwo/Binaries/Win64 + workingDir: "/Uwo/Binaries/Win64" steam: id: 1574360 -'Uncharted: Legacy of Thieves Collection': +"Uncharted: Legacy of Thieves Collection": files: - /Uncharted4_data/screeninfo.cfg: + "/Uncharted4_data/screeninfo.cfg": tags: - config when: - os: windows - /Saved Games/Uncharted Legacy of Thieves Collection: + "/Saved Games/Uncharted Legacy of Thieves Collection": tags: - save when: @@ -595185,7 +596824,7 @@ Unclaimed World: installDir: Unclaimed World: {} launch: - /UnclaimedWorld.exe: + "/UnclaimedWorld.exe": - when: - os: windows store: steam @@ -595198,11 +596837,11 @@ Unconventional Warfare: installDir: Unconventional Warfare: {} launch: - /Unconventional Warfare.exe: + "/Unconventional Warfare.exe": - when: - os: windows store: steam - /Unconventional Warfare.x86_64: + "/Unconventional Warfare.x86_64": - when: - bit: 64 os: linux @@ -595221,7 +596860,7 @@ Uncorporeal - Fluffy!: id: 500380 Uncraft World: files: - /EditorData/UncraftWorldUserData.dbx: + "/EditorData/UncraftWorldUserData.dbx": tags: - save when: @@ -595229,7 +596868,7 @@ Uncraft World: installDir: Uncraft World: {} launch: - /UncraftWorld.exe: + "/UncraftWorld.exe": - when: - os: windows store: steam @@ -595245,7 +596884,7 @@ Uncrewed: installDir: Uncrewed: {} launch: - /System/App/Bin/Uncrewed.exe: + "/System/App/Bin/Uncrewed.exe": - when: - os: windows store: steam @@ -595258,7 +596897,7 @@ Undarkened: installDir: Undarkened: {} launch: - /Undarkened.exe: + "/Undarkened.exe": - when: - os: windows store: steam @@ -595268,7 +596907,7 @@ Undead: installDir: Undead: {} launch: - /Undead.exe: + "/Undead.exe": - when: - os: windows store: steam @@ -595278,7 +596917,7 @@ Undead & Beyond: installDir: Undead & Beyond: {} launch: - /UndeadAndBeyond.exe: + "/UndeadAndBeyond.exe": - when: - os: windows store: steam @@ -595288,7 +596927,7 @@ Undead Blackout: installDir: Undead Blackout: {} launch: - /UndeadBlackout.exe: + "/UndeadBlackout.exe": - when: - os: windows store: steam @@ -595299,21 +596938,21 @@ Undead Citadel: Undead Citadel: {} steam: id: 819190 -'Undead Darlings: No Cure for Love': +"Undead Darlings: No Cure for Love": gog: id: 1506893300 installDir: Undead Darlings: {} launch: - /Undead Darlings ~no cure for love~.app: + "/Undead Darlings ~no cure for love~.app": - when: - os: mac store: steam - /Undead Darlings ~no cure for love~.exe: + "/Undead Darlings ~no cure for love~.exe": - when: - os: windows store: steam - /UndeadDarlings.x86_64: + "/UndeadDarlings.x86_64": - when: - os: linux store: steam @@ -595331,7 +596970,7 @@ Undead Factory: installDir: UndeadFactory: {} launch: - /UndeadFactory.exe: + "/UndeadFactory.exe": - when: - os: windows store: steam @@ -595339,32 +596978,32 @@ Undead Factory: id: 793050 Undead Horde: files: - /Library/Application Support/10tons/UndeadHorde_114/save: + "/Library/Application Support/10tons/UndeadHorde_114/save": tags: - save when: - os: mac - /Library/Application Support/10tons/UndeadHorde_114/save/index.xml: + "/Library/Application Support/10tons/UndeadHorde_114/save/index.xml": tags: - config when: - os: mac - /10tons/UndeadHorde/save: + "/10tons/UndeadHorde/save": tags: - save when: - os: windows - /10tons/UndeadHorde/save/index.xml: + "/10tons/UndeadHorde/save/index.xml": tags: - config when: - os: windows - /10tons/UndeadHorde/save: + "/10tons/UndeadHorde/save": tags: - save when: - os: linux - /10tons/UndeadHorde/save/index.xml: + "/10tons/UndeadHorde/save/index.xml": tags: - config when: @@ -595374,15 +597013,15 @@ Undead Horde: installDir: Undead Horde: {} launch: - /UndeadHorde: + "/UndeadHorde": - when: - os: linux store: steam - /UndeadHorde.app: + "/UndeadHorde.app": - when: - os: mac store: steam - /UndeadHorde.exe: + "/UndeadHorde.exe": - when: - os: windows store: steam @@ -595395,7 +597034,7 @@ Undead Legions II: installDir: Undead Legions: {} launch: - /Ulr.exe: + "/Ulr.exe": - when: - os: windows store: steam @@ -595405,15 +597044,15 @@ Undead Overlord: installDir: Undead Overlord: {} launch: - /undeadoverlord.app: + "/undeadoverlord.app": - when: - os: mac store: steam - /undeadoverlord.exe: + "/undeadoverlord.exe": - when: - os: windows store: steam - /undeadoverlord.x86: + "/undeadoverlord.x86": - when: - os: linux store: steam @@ -595426,7 +597065,7 @@ Undead Shadows: installDir: Undead Shadows: {} launch: - /Undead Shadows.exe: + "/Undead Shadows.exe": - when: - os: windows store: steam @@ -595436,27 +597075,27 @@ Undead Souls: installDir: UndeadSouls: {} launch: - /UndeadSouls.exe: + "/UndeadSouls.exe": - when: - os: windows store: steam - workingDir: /UndeadSouls_Data - /UndeadSouls.x86: + workingDir: "/UndeadSouls_Data" + "/UndeadSouls.x86": - when: - os: linux store: steam - workingDir: /UndeadSouls_Data + workingDir: "/UndeadSouls_Data" steam: id: 667170 Undead vs Plants: installDir: Undead vs Plants: {} launch: - /Undead.app/Contents/MacOS/Undead: + "/Undead.app/Contents/MacOS/Undead": - when: - os: mac store: steam - /UndeadVsPlants.exe: + "/UndeadVsPlants.exe": - when: - os: windows store: steam @@ -595466,7 +597105,7 @@ Undead zombies: installDir: Undead zombies: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -595476,7 +597115,7 @@ Undeadz!: installDir: Undeadz!: {} launch: - /Undeadz.exe: + "/Undeadz.exe": - when: - os: windows store: steam @@ -595484,7 +597123,7 @@ Undeadz!: id: 344900 Undecember: files: - /RzGame/Saved/Config/WindowsNoEditor: + "/RzGame/Saved/Config/WindowsNoEditor": tags: - config when: @@ -595492,17 +597131,17 @@ Undecember: installDir: Undecember: {} launch: - /UNDECEMBER.exe: + "/UNDECEMBER.exe": - when: - store: steam - workingDir: /RzGame/Binaries/Win64 + workingDir: "/RzGame/Binaries/Win64" steam: id: 1549250 Undefeated: installDir: Undefeated: {} launch: - /Undefeated.exe: + "/Undefeated.exe": - when: - os: windows store: steam @@ -595510,12 +597149,12 @@ Undefeated: id: 332390 Undefeated (2019): files: - /UNDEFEATED/Saved/Config/WindowsNoEditor: + "/UNDEFEATED/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /UNDEFEATED/Saved/SaveGames: + "/UNDEFEATED/Saved/SaveGames": tags: - save when: @@ -595523,7 +597162,7 @@ Undefeated (2019): installDir: UNDEFEATED: {} launch: - /UNDEFEATED.exe: + "/UNDEFEATED.exe": - when: - store: steam steam: @@ -595532,7 +597171,7 @@ Undefined: installDir: UNDEFINED: {} launch: - /UNDEFINED.exe: + "/UNDEFINED.exe": - when: - store: steam steam: @@ -595541,7 +597180,7 @@ Undefined Fantastic Object: installDir: th12: {} launch: - /th12.exe: + "/th12.exe": - when: - os: windows store: steam @@ -595554,7 +597193,7 @@ Under: installDir: Under: {} launch: - /Under Depths of Fear.exe: + "/Under Depths of Fear.exe": - when: - os: windows store: steam @@ -595564,55 +597203,55 @@ Under Leaves: installDir: Under Leaves: {} launch: - /UnderLeaves.app: + "/UnderLeaves.app": - when: - os: mac store: steam - /UnderLeaves.exe: + "/UnderLeaves.exe": - when: - os: windows store: steam - /UnderLeaves.x86: + "/UnderLeaves.x86": - when: - os: linux store: steam steam: id: 567030 -'Under Night In-Birth Exe:Late': +"Under Night In-Birth Exe:Late": installDir: UNDER NIGHT IN-BIRTH Exe Late: {} launch: - /UNIEL.exe: + "/UNIEL.exe": - when: - os: windows store: steam steam: id: 452510 -'Under Night In-Birth Exe:Late cl-r': +"Under Night In-Birth Exe:Late cl-r": files: - /Save: + "/Save": tags: - config - save when: - os: windows installDir: - 'UNDER NIGHT In-Birth Exe Late[st]': {} + "UNDER NIGHT In-Birth Exe Late[st]": {} launch: - /UNIst.exe: + "/UNIst.exe": - when: - os: windows store: steam steam: id: 801630 -'Under Night In-Birth II Sys:Celes': +"Under Night In-Birth II Sys:Celes": steam: id: 2076010 Under One Wing: installDir: Under One Wing: {} launch: - /UnderOneWing.exe: + "/UnderOneWing.exe": - when: - store: steam steam: @@ -595621,7 +597260,7 @@ Under Pressure: installDir: Under Pressure: {} launch: - /Under Pressure.exe: + "/Under Pressure.exe": - when: - os: windows store: steam @@ -595631,7 +597270,7 @@ Under Stranger Stars: installDir: Under Stranger Stars: {} launch: - /UnderStrangerStars.exe: + "/UnderStrangerStars.exe": - when: - store: steam steam: @@ -595640,7 +597279,7 @@ Under That Rain: installDir: Under That Rain: {} launch: - /underthatrain.exe: + "/underthatrain.exe": - when: - os: windows store: steam @@ -595650,7 +597289,7 @@ Under The Ground: installDir: Under The Ground: {} launch: - /Under The Ground.exe: + "/Under The Ground.exe": - when: - os: windows store: steam @@ -595667,7 +597306,7 @@ Under The Moon: installDir: Under The Moon: {} launch: - /UnderTheMoon.exe: + "/UnderTheMoon.exe": - when: - bit: 64 os: windows @@ -595678,36 +597317,36 @@ Under The War: installDir: UnderTheWar: {} launch: - /32.exe: + "/32.exe": - when: - bit: 32 os: windows store: steam - /64.exe: + "/64.exe": - when: - bit: 64 os: windows store: steam steam: id: 873730 -'Under Water : Abyss Survival VR': +"Under Water : Abyss Survival VR": installDir: Under Water Abyss Survival VR: {} steam: id: 1042130 Under What?: files: - /game/saves: + "/game/saves": tags: - save when: - os: windows - /renpy/config.py: + "/renpy/config.py": tags: - config when: - os: windows - /renpy/Fisherdream-1558107745: + "/renpy/Fisherdream-1558107745": tags: - save when: @@ -595715,7 +597354,7 @@ Under What?: installDir: Under What: {} launch: - /Under what.exe: + "/Under what.exe": - when: - os: windows store: steam @@ -595741,11 +597380,11 @@ Under the Ocean: installDir: Under the Ocean: {} launch: - /Under the Ocean.app: + "/Under the Ocean.app": - when: - os: mac store: steam - /Under the Ocean.exe: + "/Under the Ocean.exe": - when: - os: windows store: steam @@ -595754,17 +597393,17 @@ Under the Ocean: Under the Rainbow - Prologue: steam: id: 1178010 -'Under the Witch: Beginnings': +"Under the Witch: Beginnings": gog: id: 1358404037 Under the waves: files: - /UnderTheWaves/Saved/Config/WindowsNoEditor: + "/UnderTheWaves/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /UnderTheWaves/Saved/SaveGames: + "/UnderTheWaves/Saved/SaveGames": tags: - save when: @@ -595772,7 +597411,7 @@ Under the waves: installDir: Under The Waves: {} launch: - /UnderTheWaves.exe: + "/UnderTheWaves.exe": - when: - store: steam steam: @@ -595781,11 +597420,11 @@ UnderDread: installDir: UnderDread: {} launch: - /UnderDread.app: + "/UnderDread.app": - when: - os: mac store: steam - /UnderDread.exe: + "/UnderDread.exe": - when: - os: windows store: steam @@ -595795,11 +597434,11 @@ UnderEarth: installDir: UnderEarth: {} launch: - /UnderEarth Launcher.exe: + "/UnderEarth Launcher.exe": - when: - os: windows store: steam - /UnderEarth.app: + "/UnderEarth.app": - when: - os: mac store: steam @@ -595809,7 +597448,7 @@ UnderHuman: installDir: UnderHuman: {} launch: - /UnderHuman.exe: + "/UnderHuman.exe": - when: - os: windows store: steam @@ -595817,39 +597456,39 @@ UnderHuman: id: 586300 UnderMine: files: - /.config/unity3d/Thorium Entertainment/UnderMine/Config.json: + "/.config/unity3d/Thorium Entertainment/UnderMine/Config.json": tags: - config when: - os: linux - /.config/unity3d/Thorium Entertainment/UnderMine/Saves: + "/.config/unity3d/Thorium Entertainment/UnderMine/Saves": tags: - save when: - os: linux - /AppData/Local/Packages/Thorium.UnderMine_j6gc5ewhjtwag/LocalState/Saves: + "/AppData/Local/Packages/Thorium.UnderMine_j6gc5ewhjtwag/LocalState/Saves": tags: - save when: - os: windows store: microsoft - /AppData/Local/Packages/Thorium.UnderMine_j6gc5ewhjtwag/LocalState/Config.json: + "/AppData/Local/Packages/Thorium.UnderMine_j6gc5ewhjtwag/LocalState/Config.json": tags: - config when: - os: windows store: microsoft - /AppData/LocalLow/Thorium Entertainment/UnderMine/Config.json: + "/AppData/LocalLow/Thorium Entertainment/UnderMine/Config.json": tags: - config when: - os: windows - /AppData/LocalLow/Thorium Entertainment/UnderMine/Saves: + "/AppData/LocalLow/Thorium Entertainment/UnderMine/Saves": tags: - save when: - os: windows - /Library/Application Support/unity.Thorium Entertainment.UnderMine/Saves: + "/Library/Application Support/unity.Thorium Entertainment.UnderMine/Saves": tags: - save when: @@ -595857,15 +597496,15 @@ UnderMine: installDir: UnderMine: {} launch: - /UnderMine: + "/UnderMine": - when: - os: linux store: steam - /UnderMine.app/Contents/MacOS/UnderMine: + "/UnderMine.app/Contents/MacOS/UnderMine": - when: - os: mac store: steam - /UnderMine.exe: + "/UnderMine.exe": - when: - os: windows store: steam @@ -595875,11 +597514,11 @@ UnderParty: installDir: UnderParty: {} launch: - /UnderParty.exe: + "/UnderParty.exe": - when: - os: windows store: steam - /underparty.app/Contents/MacOS/UnderParty: + "/underparty.app/Contents/MacOS/UnderParty": - when: - os: mac store: steam @@ -595889,7 +597528,7 @@ UnderWater Adventure: installDir: UnderWater Adventure: {} launch: - /underwater.exe: + "/underwater.exe": - when: - bit: 32 os: windows @@ -595900,7 +597539,7 @@ Undercity: installDir: Undercity: {} launch: - /Undercity.exe: + "/Undercity.exe": - when: - os: windows store: steam @@ -595913,36 +597552,36 @@ Undercover Agent: installDir: Undercover Agent: {} launch: - /Undercover Agent.app/Contents/MacOS/Undercover Agent: + "/Undercover Agent.app/Contents/MacOS/Undercover Agent": - when: - os: mac store: steam - /UndercoverAgent: + "/UndercoverAgent": - when: - os: linux store: steam - /UndercoverAgent.exe: + "/UndercoverAgent.exe": - when: - os: windows store: steam steam: id: 786290 -'Undercover Missions: Operation Kursk K-141': +"Undercover Missions: Operation Kursk K-141": installDir: Project submarine: {} launch: - /bin/Kursk.exe: + "/bin/Kursk.exe": - when: - os: windows store: steam - workingDir: /bin + workingDir: "/bin" steam: id: 403390 Undercrewed: installDir: undercrewed: {} launch: - /undercrewed.exe: + "/undercrewed.exe": - when: - os: windows store: steam @@ -595952,11 +597591,11 @@ Underdog Detective: installDir: Luoyang: {} launch: - /Luoyang.app/Contents/MacOS/Luoyang: + "/Luoyang.app/Contents/MacOS/Luoyang": - when: - os: mac store: steam - /Luoyang.exe: + "/Luoyang.exe": - when: - os: windows store: steam @@ -595966,8 +597605,8 @@ Underdone: installDir: Underdone: {} launch: - /nw.exe: - - arguments: '--in-process-gpu' + "/nw.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam @@ -595980,7 +597619,7 @@ Undergrave: installDir: Undergrave: {} launch: - /Undergrave.exe: + "/Undergrave.exe": - when: - os: windows store: steam @@ -595991,7 +597630,7 @@ Underground Bone Marrow: id: 863770 Underground Keeper: files: - /UndergroundKeeper_Data/Save: + "/UndergroundKeeper_Data/Save": tags: - save when: @@ -595999,7 +597638,7 @@ Underground Keeper: installDir: Underground Keeper: {} launch: - /UndergroundKeeper.exe: + "/UndergroundKeeper.exe": - when: - os: windows store: steam @@ -596009,7 +597648,7 @@ Underground Miner: installDir: Underground Miner: {} launch: - /UndergroundMiner.exe: + "/UndergroundMiner.exe": - when: - os: windows store: steam @@ -596017,17 +597656,17 @@ Underground Miner: id: 1220070 Underhero: files: - /.config/unity3d/Paper Castle Games/Underhero/prefs: + "/.config/unity3d/Paper Castle Games/Underhero/prefs": tags: - config when: - os: linux - /.config/unity3d/Paper Castle Games/UnderheroUnderHeroSaveFile.dat: + "/.config/unity3d/Paper Castle Games/UnderheroUnderHeroSaveFile.dat": tags: - save when: - os: linux - /AppData/LocalLow/Paper Castle Games/UnderheroUnderHeroSaveFile.dat: + "/AppData/LocalLow/Paper Castle Games/UnderheroUnderHeroSaveFile.dat": tags: - save when: @@ -596037,16 +597676,19 @@ Underhero: installDir: Underhero: {} launch: - /Contents/MacOS/Underhero: + "/Contents/MacOS/Underhero": - when: - os: mac store: steam - /Underhero.exe: + "/Underhero.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam - /Underhero.x86_64: + "/Underhero.x86_64": - when: - os: linux store: steam @@ -596060,7 +597702,7 @@ Underlight: installDir: Underlight: {} launch: - /Underlight.exe: + "/Underlight.exe": - when: - os: windows store: steam @@ -596070,19 +597712,19 @@ Underneath: installDir: Underneath: {} launch: - /win64/Underneath.exe: + "/win64/Underneath.exe": - when: - store: steam steam: id: 1186940 Underrail: files: - /My Games/Underrail/Saves: + "/My Games/Underrail/Saves": tags: - save when: - os: windows - /My Games/Underrail/config.dat: + "/My Games/Underrail/config.dat": tags: - config when: @@ -596099,7 +597741,7 @@ Underrail: installDir: Underrail: {} launch: - /underrail.exe: + "/underrail.exe": - when: - store: steam steam: @@ -596109,33 +597751,33 @@ Underspace: id: 1111930 Undertale: files: - /.config/UNDERTALE: + "/.config/UNDERTALE": tags: - config when: - os: linux - /.config/UNDERTALE_linux: + "/.config/UNDERTALE_linux": tags: - config when: - os: linux - /.config/UNDERTALE_linux_steamver: + "/.config/UNDERTALE_linux_steamver": tags: - config when: - os: linux - /Library/Application Support/com.tobyfox.undertale: + "/Library/Application Support/com.tobyfox.undertale": tags: - config - save when: - os: mac - /userdata//391540/remote: + "/userdata//391540/remote": tags: - save when: - store: steam - /UNDERTALE: + "/UNDERTALE": tags: - config - save @@ -596149,15 +597791,15 @@ Undertale: installDir: Undertale: {} launch: - /UNDERTALE.app: + "/UNDERTALE.app": - when: - os: mac store: steam - /UNDERTALE.exe: + "/UNDERTALE.exe": - when: - os: windows store: steam - /runner: + "/runner": - when: - os: linux store: steam @@ -596175,7 +597817,7 @@ Underwater hunting: installDir: Underwater hunting: {} launch: - /nw.exe: + "/nw.exe": - when: - bit: 64 os: windows @@ -596184,18 +597826,18 @@ Underwater hunting: id: 876380 Underworld Ascendant: files: - /Appdata/LocalLow/OtherSide Entertainment/Underworld Ascendant/settings.xml: + "/Appdata/LocalLow/OtherSide Entertainment/Underworld Ascendant/settings.xml": tags: - config when: - os: windows - /userdata//692840: + "/userdata//692840": tags: - save when: - os: windows store: steam - /My Games/Underworld Ascendant: + "/My Games/Underworld Ascendant": tags: - save when: @@ -596203,15 +597845,15 @@ Underworld Ascendant: installDir: Underworld Ascendant: {} launch: - /UA: + "/UA": - when: - os: linux store: steam - /UA.app: + "/UA.app": - when: - os: mac store: steam - /UA.exe: + "/UA.exe": - when: - os: windows store: steam @@ -596221,15 +597863,15 @@ Underworld Dungeon: installDir: Underworld Dungeon: {} launch: - /underworldDungeon.app/Contents/MacOS/underworldDungeon: + "/underworldDungeon.app/Contents/MacOS/underworldDungeon": - when: - os: mac store: steam - /underworld_dungeon.exe: + "/underworld_dungeon.exe": - when: - os: windows store: steam - /underworld_dungeon.x86: + "/underworld_dungeon.x86": - when: - os: linux store: steam @@ -596244,7 +597886,7 @@ Undetected: installDir: Undetected: {} launch: - /ProjectSAR.exe: + "/ProjectSAR.exe": - when: - os: windows store: steam @@ -596254,7 +597896,7 @@ Undholm: installDir: Undholm: {} launch: - /Undholm.exe: + "/Undholm.exe": - when: - os: windows store: steam @@ -596262,7 +597904,7 @@ Undholm: id: 982060 Undisputed: files: - /AppData/LocalLow/Steel City Interactive/Undisputed: + "/AppData/LocalLow/Steel City Interactive/Undisputed": tags: - save when: @@ -596270,7 +597912,7 @@ Undisputed: installDir: Undisputed: {} launch: - /Undisputed.exe: + "/Undisputed.exe": - when: - store: steam steam: @@ -596279,7 +597921,7 @@ Undoing: installDir: Undoing: {} launch: - /Undoing.exe: + "/Undoing.exe": - when: - bit: 64 os: windows @@ -596288,7 +597930,7 @@ Undoing: id: 664890 Undress Tournament: files: - /LocalLow/HawkX Games/Undress Tournament: + "/LocalLow/HawkX Games/Undress Tournament": tags: - save when: @@ -596296,7 +597938,7 @@ Undress Tournament: installDir: Undress Tournament: {} launch: - /Undress Tournament.exe: + "/Undress Tournament.exe": - when: - os: windows store: steam @@ -596304,7 +597946,7 @@ Undress Tournament: id: 966460 Undungeon: files: - /AppData/LocalLow/tinyBuildGames/Undungeon: + "/AppData/LocalLow/tinyBuildGames/Undungeon": tags: - config - save @@ -596315,7 +597957,7 @@ Undungeon: installDir: Undungeon: {} launch: - /Undungeon.exe: + "/Undungeon.exe": - when: - os: windows store: steam @@ -596323,7 +597965,7 @@ Undungeon: id: 928990 Undying: files: - /AppData/LocalLow/Vanimals/Undying: + "/AppData/LocalLow/Vanimals/Undying": tags: - save when: @@ -596331,7 +597973,7 @@ Undying: installDir: Undying: {} launch: - /Undying.exe: + "/Undying.exe": - when: - os: windows store: steam @@ -596344,40 +597986,40 @@ Unearned Bounty: installDir: Unearned Bounty: {} launch: - /UnearnedBounty.app: + "/UnearnedBounty.app": - when: - os: mac store: steam - /UnearnedBounty.exe: + "/UnearnedBounty.exe": - when: - os: windows store: steam - /UnearnedBounty.x86: + "/UnearnedBounty.x86": - when: - bit: 32 os: linux store: steam - /UnearnedBounty.x86_64: + "/UnearnedBounty.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 377260 -'Unearthed Inc: The Lost Temple': +"Unearthed Inc: The Lost Temple": installDir: Unearthed Inc - The Lost Temple: {} steam: id: 551720 -'Unearthed: Trail of Ibn Battuta - Episode 1': +"Unearthed: Trail of Ibn Battuta - Episode 1": installDir: UnearthedEpisode1: {} launch: - /Unearthed-Episode1.exe: + "/Unearthed-Episode1.exe": - when: - os: windows store: steam - /UnearthedEpisode1.app: + "/UnearthedEpisode1.app": - when: - os: mac store: steam @@ -596391,27 +598033,27 @@ Unearthing Colossal: installDir: Unearthing Colossal: {} launch: - /UnearthingColossal.app: + "/UnearthingColossal.app": - when: - os: mac store: steam - /UnearthingColossal.exe: + "/UnearthingColossal.exe": - when: - os: windows store: steam - /UnearthingColossal.x86: + "/UnearthingColossal.x86": - when: - bit: 32 os: linux store: steam - /UnearthingColossal.x86_64: + "/UnearthingColossal.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 428590 -'Unearthing Mars 2: The Ancient War': +"Unearthing Mars 2: The Ancient War": installDir: Unearthing Mars 2 The Ancient War: {} steam: @@ -596425,17 +598067,17 @@ Unearthing Process: installDir: Unearthing Process: {} launch: - /linux32/nw: + "/linux32/nw": - when: - bit: 32 os: linux store: steam - /linux64/nw: + "/linux64/nw": - when: - bit: 64 os: linux store: steam - /win32/nw.exe: + "/win32/nw.exe": - when: - os: windows store: steam @@ -596445,7 +598087,7 @@ Unending Dusk: installDir: Unending Dusk: {} launch: - /UnendingDusk.exe: + "/UnendingDusk.exe": - when: - os: windows store: steam @@ -596453,7 +598095,7 @@ Unending Dusk: id: 806530 Unending Galaxy: files: - /saves: + "/saves": tags: - config - save @@ -596462,7 +598104,7 @@ Unending Galaxy: installDir: UnendingGalaxyDeluxe: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -596472,7 +598114,7 @@ Unexpected Circumstances: installDir: Unexpected Circumstances: {} launch: - /UnexpectedCircumstances.exe: + "/UnexpectedCircumstances.exe": - when: - bit: 64 os: windows @@ -596486,7 +598128,7 @@ Unexpected End: installDir: Unexpected End: {} launch: - /UnexpectedEnd.exe: + "/UnexpectedEnd.exe": - when: - os: windows store: steam @@ -596496,7 +598138,7 @@ Unexpected Futa Corruption: installDir: Unexpected Futa Corruption: {} launch: - /Unexpected Futa Corruption.exe: + "/Unexpected Futa Corruption.exe": - when: - bit: 64 os: windows @@ -596507,11 +598149,11 @@ Unexpected Journey: installDir: Unexpected Journey: {} launch: - /UEJ.app/Contents/MacOS/UEJ: + "/UEJ.app/Contents/MacOS/UEJ": - when: - os: mac store: steam - /Unexpected Journey.exe: + "/Unexpected Journey.exe": - when: - os: windows store: steam @@ -596522,32 +598164,32 @@ Unexpected Sequence: id: 1199110 Unexplored: files: - /Library/Application Support/Unexplored/save: + "/Library/Application Support/Unexplored/save": tags: - save when: - os: mac - /Library/Application Support/Unexplored/settings.xpr: + "/Library/Application Support/Unexplored/settings.xpr": tags: - config when: - os: mac - /Unexplored/save*: + "/Unexplored/save*": tags: - save when: - os: windows - /Unexplored/settings.xpr: + "/Unexplored/settings.xpr": tags: - config when: - os: windows - /Unexplored/save: + "/Unexplored/save": tags: - save when: - os: linux - /Unexplored/settings.xpr: + "/Unexplored/settings.xpr": tags: - config when: @@ -596555,23 +598197,23 @@ Unexplored: installDir: Unexplored: {} launch: - /Unexplored: + "/Unexplored": - when: - os: linux store: steam - /Unexplored.app/Contents/MacOS/Unexplored: + "/Unexplored.app/Contents/MacOS/Unexplored": - when: - os: mac store: steam - /Unexplored.exe: + "/Unexplored.exe": - when: - os: windows store: steam steam: id: 506870 -'Unexplored 2: The Wayfarer''s Legacy': +"Unexplored 2: The Wayfarer's Legacy": files: - /AppData/LocalLow/Ludomotion/Unexplored2: + "/AppData/LocalLow/Ludomotion/Unexplored2": tags: - config - save @@ -596580,9 +598222,9 @@ Unexplored: gog: id: 1674273685 installDir: - Unexplored 2 The Wayfarer's Legacy: {} + "Unexplored 2 The Wayfarer's Legacy": {} launch: - /Unexplored2.exe: + "/Unexplored2.exe": - when: - store: steam steam: @@ -596591,7 +598233,7 @@ Unfair Jousting Fair: installDir: Unfair Jousting Fair: {} launch: - /Unfair Jousting Fair.exe: + "/Unfair Jousting Fair.exe": - when: - store: steam steam: @@ -596600,11 +598242,11 @@ Unfamiliar: installDir: Unfamiliar: {} launch: - /Unfamiliar.app: + "/Unfamiliar.app": - when: - os: mac store: steam - /Unfamiliar.exe: + "/Unfamiliar.exe": - when: - os: windows store: steam @@ -596617,25 +598259,25 @@ Unfazed: installDir: Unfazed: {} launch: - /Unfazed.exe: + "/Unfazed.exe": - when: - os: windows store: steam steam: id: 506630 -Unfinished - An Artist's Lament: +"Unfinished - An Artist's Lament": installDir: - Unfinished - An Artist's Lament: {} + "Unfinished - An Artist's Lament": {} launch: - /unfinished_v1_04_LINUX.x86: + "/unfinished_v1_04_LINUX.x86": - when: - os: linux store: steam - /unfinished_v1_04_MAC.app: + "/unfinished_v1_04_MAC.app": - when: - os: mac store: steam - /unfinished_v1_04_WIN.exe: + "/unfinished_v1_04_WIN.exe": - when: - os: windows store: steam @@ -596645,7 +598287,7 @@ Unfinished Battle: installDir: Unfinished Battle: {} launch: - /Unfinished Battle.exe: + "/Unfinished Battle.exe": - when: - bit: 64 os: windows @@ -596654,7 +598296,7 @@ Unfinished Battle: id: 799180 Unforeseen Incidents: files: - /AppData/LocalLow/Backwoods/Unforeseen Incidents: + "/AppData/LocalLow/Backwoods/Unforeseen Incidents": tags: - save when: @@ -596664,20 +598306,20 @@ Unforeseen Incidents: installDir: Unforeseen Incidents: {} launch: - /Unforeseen Incidents.app: + "/Unforeseen Incidents.app": - when: - os: mac store: steam - /Unforeseen Incidents.exe: + "/Unforeseen Incidents.exe": - when: - os: windows store: steam - /Unforeseen Incidents.x86: + "/Unforeseen Incidents.x86": - when: - bit: 32 os: linux store: steam - /Unforeseen Incidents.x86_64: + "/Unforeseen Incidents.x86_64": - when: - bit: 64 os: linux @@ -596689,19 +598331,19 @@ Unforgiven VR: Unforgiven VR: {} steam: id: 546210 -'Unforgiven: Missing Memories - Child''s Play': +"Unforgiven: Missing Memories - Child's Play": installDir: Virtual Escape - The Play Room: {} steam: id: 522710 Unforgiving - A Northern Hymn: files: - /Unforgiving/Saved/Config/WindowsNoEditor: + "/Unforgiving/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /Unforgiving/Saved/SaveGames: + "/Unforgiving/Saved/SaveGames": tags: - save when: @@ -596709,7 +598351,7 @@ Unforgiving - A Northern Hymn: installDir: Unforgiving - A Northern Hymn: {} launch: - /Unforgiving.exe: + "/Unforgiving.exe": - when: - os: windows store: steam @@ -596719,28 +598361,28 @@ Unforgiving Happiness: installDir: Unforgiving Happiness: {} launch: - /UnforgivingHappiness1.0.exe: + "/UnforgivingHappiness1.0.exe": - when: - os: windows store: steam steam: id: 736390 -'Unforgiving Trials: The Darkest Crusade': +"Unforgiving Trials: The Darkest Crusade": installDir: Unforgiving Trials The Darkest Crusade: {} launch: - /nw.exe: - - arguments: '--in-process-gpu' + "/nw.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam steam: id: 489220 -'Unforgiving Trials: The Space Crusade': +"Unforgiving Trials: The Space Crusade": installDir: Unforgiving Trials The Space Crusade: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -596750,7 +598392,7 @@ Unformed: installDir: Unformed: {} launch: - /Unformed.exe: + "/Unformed.exe": - when: - os: windows store: steam @@ -596758,12 +598400,12 @@ Unformed: id: 674480 Unfortunate Spacemen: files: - /UnfortunateSpacemen/Saved/Config/WindowsNoEditor: + "/UnfortunateSpacemen/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /UnfortunateSpacemen/Saved/SaveGames: + "/UnfortunateSpacemen/Saved/SaveGames": tags: - save when: @@ -596774,14 +598416,14 @@ Unfortunate Spacemen: installDir: Unfortunate Spacemen: {} launch: - /UnfortunateSpacemen.exe: + "/UnfortunateSpacemen.exe": - when: - bit: 64 os: windows store: steam steam: id: 408900 -'Ungrounded: Ripple Unleashed VR': +"Ungrounded: Ripple Unleashed VR": installDir: Ungrounded Ripple Unleashed VR: {} steam: @@ -596790,15 +598432,15 @@ Unhack: installDir: Unhack: {} launch: - /nw: + "/nw": - when: - os: linux store: steam - /unhack.app: + "/unhack.app": - when: - os: mac store: steam - /unhack.exe: + "/unhack.exe": - when: - os: windows store: steam @@ -596808,21 +598450,21 @@ Unhack 2: installDir: Unhack 2: {} launch: - /unhack2.app: + "/unhack2.app": - when: - os: mac store: steam - /unhack2.exe: + "/unhack2.exe": - when: - os: windows store: steam - /unhack2.sh: + "/unhack2.sh": - when: - os: linux store: steam steam: id: 444170 -'Unhallowed: The Cabin': +"Unhallowed: The Cabin": installDir: UNHALLOWED THE CABIN: {} steam: @@ -596831,15 +598473,15 @@ Unhappy Ever After: installDir: Unhappy Ever After: {} launch: - /Game.app/Contents/MacOS/nwjs: + "/Game.app/Contents/MacOS/nwjs": - when: - os: mac store: steam - /Game.exe: + "/Game.exe": - when: - os: windows store: steam - /Unhappy Ever After: + "/Unhappy Ever After": - when: - os: linux store: steam @@ -596847,7 +598489,7 @@ Unhappy Ever After: id: 552350 Unheard: files: - /AppData/LocalLow/NEXTStudios/Unheard: + "/AppData/LocalLow/NEXTStudios/Unheard": tags: - save when: @@ -596862,11 +598504,11 @@ Unheard: installDir: Unheard: {} launch: - /Unheard.app: + "/Unheard.app": - when: - os: mac store: steam - /Unheard.exe: + "/Unheard.exe": - when: - os: windows store: steam @@ -596876,11 +598518,11 @@ Unheard: - config steam: id: 942970 -Unheard Screams - King Leopold II's Rule Over The Congo: +"Unheard Screams - King Leopold II's Rule Over The Congo": installDir: Unheard Screams - King Leopold II rule over the Congo: {} launch: - /Unheard Screams.exe: + "/Unheard Screams.exe": - when: - os: windows store: steam @@ -596890,7 +598532,7 @@ Unholy: installDir: Unholy: {} launch: - /UnHoly.exe: + "/UnHoly.exe": - when: - os: windows store: steam @@ -596898,12 +598540,12 @@ Unholy: id: 817020 Unholy Heights: files: - /SavedGames/UnholyHeights/Unholy Heights/Player1: + "/SavedGames/UnholyHeights/Unholy Heights/Player1": tags: - save when: - os: windows - /SavedGames/UnholyHeights/Unholy Heights/Player1/Property.xml: + "/SavedGames/UnholyHeights/Unholy Heights/Player1/Property.xml": tags: - config when: @@ -596913,7 +598555,7 @@ Unholy Heights: installDir: Unholy Heights: {} launch: - /UnholyHeights.exe: + "/UnholyHeights.exe": - when: - os: windows store: steam @@ -596923,13 +598565,13 @@ UniBall: installDir: UniBall: {} launch: - /Uniball.sh: + "/Uniball.sh": - when: - bit: 64 os: linux store: steam - /ubfrontend.exe: - - arguments: '--disable-gpu' + "/ubfrontend.exe": + - arguments: "--disable-gpu" when: - os: windows store: steam @@ -596939,15 +598581,15 @@ UniOne: installDir: UniOne: {} launch: - /UniOne.app: + "/UniOne.app": - when: - os: mac store: steam - /UniOne.exe: + "/UniOne.exe": - when: - os: windows store: steam - /unione.x86_64: + "/unione.x86_64": - when: - bit: 64 os: linux @@ -596958,11 +598600,11 @@ UniTower: installDir: uniTower: {} launch: - /uniTower.app/Contents/MacOS/uniTower: + "/uniTower.app/Contents/MacOS/uniTower": - when: - os: mac store: steam - /uniTower/uniTower.exe: + "/uniTower/uniTower.exe": - when: - os: windows store: steam @@ -596972,16 +598614,16 @@ Unicorn Dungeon: installDir: Unicorn Dungeon: {} launch: - /UnicornDungeon.exe: + "/UnicornDungeon.exe": - when: - os: windows store: steam - /UnicornDungeon.x86: + "/UnicornDungeon.x86": - when: - bit: 32 os: linux store: steam - /UnicornDungeon.x86_64: + "/UnicornDungeon.x86_64": - when: - bit: 64 os: linux @@ -596992,7 +598634,7 @@ Unicorn Tails: installDir: Unicorn Tails: {} launch: - /UnicornTails.exe: + "/UnicornTails.exe": - when: - os: windows store: steam @@ -597002,11 +598644,11 @@ Unicorns on Unicycles: installDir: Unicorns on Unicycles: {} launch: - /Unicorns On Unicycles.exe: + "/Unicorns On Unicycles.exe": - when: - os: windows store: steam - /Unicorns on Unicycles.app: + "/Unicorns on Unicycles.app": - when: - os: mac store: steam @@ -597016,7 +598658,7 @@ Unidentified: installDir: UNIDENTIFIED: {} launch: - /UNIDENTIFIED.exe: + "/UNIDENTIFIED.exe": - when: - bit: 64 os: windows @@ -597030,7 +598672,7 @@ Unimersiv: id: 652280 Uninvited: files: - /zojoi: + "/zojoi": tags: - config - save @@ -597039,15 +598681,15 @@ Uninvited: installDir: Uninvited MacVenture Series: {} launch: - /Uninvited.app: + "/Uninvited.app": - when: - os: mac store: steam - /uninvited: + "/uninvited": - when: - os: linux store: steam - /uninvited.exe: + "/uninvited.exe": - when: - os: windows store: steam @@ -597057,7 +598699,7 @@ Unishroom: installDir: Unishroom: {} launch: - /Unishroom.exe: + "/Unishroom.exe": - when: - os: windows store: steam @@ -597067,7 +598709,7 @@ Unit 4: installDir: Unit 4: {} launch: - /Unit4.exe: + "/Unit4.exe": - when: - os: windows store: steam @@ -597080,7 +598722,7 @@ UniteStar: installDir: UniteStar: {} launch: - /UniteStar.exe: + "/UniteStar.exe": - when: - store: steam steam: @@ -597095,15 +598737,15 @@ Unitied: installDir: unitied: {} launch: - /unitied.app: + "/unitied.app": - when: - os: mac store: steam - /unitied.exe: + "/unitied.exe": - when: - os: windows store: steam - /unitied.x86_64: + "/unitied.x86_64": - when: - bit: 64 os: linux @@ -597114,44 +598756,44 @@ Unity of Command II: installDir: Unity of Command 2: {} launch: - /UOC2.app/Contents/MacOS/uoc2: + "/UOC2.app/Contents/MacOS/uoc2": - when: - os: mac store: steam - /uoc2.exe: + "/uoc2.exe": - when: - os: windows store: steam steam: id: 809230 -'Unity of Command: Stalingrad Campaign': +"Unity of Command: Stalingrad Campaign": files: - /.uoc: + "/.uoc": tags: - config when: - os: linux - /.uoc/save: + "/.uoc/save": tags: - save when: - os: linux - /Library/Application Support/Unity of Command: + "/Library/Application Support/Unity of Command": tags: - config when: - os: mac - /Library/Application Support/Unity of Command/save: + "/Library/Application Support/Unity of Command/save": tags: - save when: - os: mac - /Unity of Command: + "/Unity of Command": tags: - config when: - os: windows - /Unity of Command/save: + "/Unity of Command/save": tags: - save when: @@ -597163,27 +598805,27 @@ Unity of Command II: installDir: Unity of Command: {} launch: - /Unity of Command.app/Contents/MacOS/uoc: + "/Unity of Command.app/Contents/MacOS/uoc": - when: - os: mac store: steam - - arguments: '--app scenario' + - arguments: "--app scenario" when: - os: mac store: steam - /bin/uoc: + "/bin/uoc": - when: - os: linux store: steam - - arguments: '--app scenario' + - arguments: "--app scenario" when: - os: linux store: steam - /uoc-sc.exe: + "/uoc-sc.exe": - when: - os: windows store: steam - /uoc.exe: + "/uoc.exe": - when: - os: windows store: steam @@ -597197,7 +598839,7 @@ Unitystation: id: 801140 Unium: files: - /AppData/LocalLow/KittehFace Software/Unium/SaveData: + "/AppData/LocalLow/KittehFace Software/Unium/SaveData": tags: - save when: @@ -597205,21 +598847,21 @@ Unium: installDir: Unium: {} launch: - /Unium.app: + "/Unium.app": - when: - os: mac store: steam - /Unium.x86: + "/Unium.x86": - when: - bit: 32 os: linux store: steam - /Unium.x86_64: + "/Unium.x86_64": - when: - bit: 64 os: linux store: steam - /unium.exe: + "/unium.exe": - when: - os: windows store: steam @@ -597229,11 +598871,11 @@ UniverCity: installDir: UniverCity: {} launch: - /univercity: + "/univercity": - when: - os: linux store: steam - /univercity.exe: + "/univercity.exe": - when: - os: windows store: steam @@ -597243,7 +598885,7 @@ Universal Combat CE 2.0: installDir: Universal Combat CE: {} launch: - /UCCE.EXE: + "/UCCE.EXE": - when: - os: windows store: steam @@ -597256,11 +598898,11 @@ Universally Loved: installDir: Universally Loved: {} launch: - /UL.app/Contents/MacOS/UL: + "/UL.app/Contents/MacOS/UL": - when: - os: mac store: steam - /UL.exe: + "/UL.exe": - when: - os: windows store: steam @@ -597270,7 +598912,7 @@ Universe 24: installDir: Universe 24: {} launch: - /Universe24.exe: + "/Universe24.exe": - when: - store: steam steam: @@ -597279,7 +598921,7 @@ Universe Balancing Bureau: installDir: Universe Balancing Bureau: {} launch: - /ubb.exe: + "/ubb.exe": - when: - os: windows store: steam @@ -597287,27 +598929,27 @@ Universe Balancing Bureau: id: 787260 Universe Sandbox: files: - /.config/unity3d/Giant Army/Universe Sandbox: + "/.config/unity3d/Giant Army/Universe Sandbox": tags: - config when: - os: linux - /AppData/LocalLow/Giant Army/Universe Sandbox/inputbindings.json: + "/AppData/LocalLow/Giant Army/Universe Sandbox/inputbindings.json": tags: - config when: - os: windows - /AppData/LocalLow/Giant Army/Universe Sandbox/settings.json: + "/AppData/LocalLow/Giant Army/Universe Sandbox/settings.json": tags: - config when: - os: windows - /Universe Sandbox/Simulations: + "/Universe Sandbox/Simulations": tags: - save when: - os: linux - /My Games/Universe Sandbox/Simulations: + "/My Games/Universe Sandbox/Simulations": tags: - save when: @@ -597317,26 +598959,26 @@ Universe Sandbox: installDir: Universe Sandbox 2: {} launch: - /Universe Sandbox x64.exe: + "/Universe Sandbox x64.exe": - when: - bit: 64 os: windows store: steam - /Universe Sandbox.app: + "/Universe Sandbox.app": - when: - os: mac store: steam - /Universe Sandbox.x86: + "/Universe Sandbox.x86": - when: - bit: 32 os: linux store: steam - /Universe Sandbox.x86_64: + "/Universe Sandbox.x86_64": - when: - bit: 64 os: linux store: steam - /x32/Universe Sandbox x32.exe: + "/x32/Universe Sandbox x32.exe": - when: - bit: 32 os: windows @@ -597349,12 +598991,12 @@ Universe Sandbox: id: 230290 Universe Sandbox Legacy: files: - /Universe Sandbox/Simulations: + "/Universe Sandbox/Simulations": tags: - save when: - os: windows - /Universe Sandbox: + "/Universe Sandbox": tags: - config when: @@ -597362,14 +599004,14 @@ Universe Sandbox Legacy: installDir: Universe Sandbox: {} launch: - /Universe Sandbox.exe: + "/Universe Sandbox.exe": - when: - store: steam steam: id: 72200 -'Universe at War: Earth Assault': +"Universe at War: Earth Assault": files: - /Sega/UAWEA: + "/Sega/UAWEA": tags: - save when: @@ -597377,7 +599019,7 @@ Universe Sandbox Legacy: installDir: Universe at War Earth Assault: {} launch: - /LaunchUAW.exe: + "/LaunchUAW.exe": - when: - store: steam registry: @@ -597392,11 +599034,11 @@ Universe in Fire: University Life: steam: id: 746290 -'University Tycoon: 2019': +"University Tycoon: 2019": installDir: UniversityTycoon2019: {} launch: - /UniversityTycoon2019.exe: + "/UniversityTycoon2019.exe": - when: - os: windows store: steam @@ -597411,8 +599053,8 @@ Unknown: installDir: Unknown: {} launch: - /Game.exe: - - arguments: '--in-process-gpu' + "/Game.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam @@ -597425,7 +599067,7 @@ Unknown Castle: installDir: Unknown Castle: {} launch: - /unknown castle.exe: + "/unknown castle.exe": - when: - os: windows store: steam @@ -597435,7 +599077,7 @@ Unknown Fate: installDir: Unknown Fate: {} launch: - /UnknownFate.exe: + "/UnknownFate.exe": - when: - store: steam steam: @@ -597443,11 +599085,11 @@ Unknown Fate: Unknown Nightmare: steam: id: 815920 -'Unknown Pain: Hardcore': +"Unknown Pain: Hardcore": installDir: UnknownPainHardcore: {} launch: - /UnknownPain.exe: + "/UnknownPain.exe": - when: - bit: 64 os: windows @@ -597465,14 +599107,14 @@ Unknown Scrolls: Unknown Surge: steam: id: 1132450 -'Unknown''s Survival : Player Battlegrounds': +"Unknown's Survival : Player Battlegrounds": steam: id: 931490 Unlasting Horror: installDir: UnlastingHorror: {} launch: - /UnlastingHorror.exe: + "/UnlastingHorror.exe": - when: - os: windows store: steam @@ -597482,7 +599124,7 @@ Unleash: installDir: Unleash: {} launch: - /Unleash.exe: + "/Unleash.exe": - when: - os: windows store: steam @@ -597495,21 +599137,21 @@ Unleashed: installDir: Unleashed: {} launch: - /Linux_Content/runner: + "/Linux_Content/runner": - when: - os: linux store: steam - /Windows_Content/Unleashed.exe: + "/Windows_Content/Unleashed.exe": - when: - os: windows store: steam steam: id: 838690 -'Unlight: SchizoChronicle': +"Unlight: SchizoChronicle": installDir: Unlight: {} launch: - /UnlightSC.exe: + "/UnlightSC.exe": - when: - os: windows store: steam @@ -597522,11 +599164,11 @@ Unlimited: installDir: Unlimited: {} launch: - /UnrealVoxel/Binaries/Win64/UnrealVoxel.exe: + "/UnrealVoxel/Binaries/Win64/UnrealVoxel.exe": - when: - os: windows store: steam - /UpdateMods.bat: + "/UpdateMods.bat": - when: - store: steam steam: @@ -597535,7 +599177,7 @@ Unlimited Escape: installDir: Unlimited Escape: {} launch: - /unlimited_escape.exe: + "/unlimited_escape.exe": - when: - store: steam steam: @@ -597544,7 +599186,7 @@ Unlimited Escape 2: installDir: Unlimited Escape 2: {} launch: - /escape2.exe: + "/escape2.exe": - when: - store: steam steam: @@ -597553,21 +599195,21 @@ Unlimited Escape 3 & 4 Double Pack: installDir: Unlimited Escape 3 & 4 Double Pack: {} launch: - /Escape 3/escape3.exe: + "/Escape 3/escape3.exe": - when: - store: steam - workingDir: /Escape 3 - /Escape 4/escape4.exe: + workingDir: "/Escape 3" + "/Escape 4/escape4.exe": - when: - store: steam - workingDir: /Escape 4 + workingDir: "/Escape 4" steam: id: 370970 Unlit: installDir: Unlit: {} launch: - /Unlit.exe: + "/Unlit.exe": - when: - os: windows store: steam @@ -597577,7 +599219,7 @@ Unlock Me: installDir: Unlock Me: {} launch: - /Unlock Me.exe: + "/Unlock Me.exe": - when: - os: windows store: steam @@ -597587,11 +599229,11 @@ Unlock the King: installDir: Unlock The King: {} launch: - /Unlock_the_King.exe: + "/Unlock_the_King.exe": - when: - os: windows store: steam - /Unlock_the_King_Steam.app/Contents/MacOS/Unlock the King: + "/Unlock_the_King_Steam.app/Contents/MacOS/Unlock the King": - when: - os: mac store: steam @@ -597601,11 +599243,11 @@ Unlock the King 2: installDir: Unlock The King 2: {} launch: - /Unlock_The_King_2.exe: + "/Unlock_The_King_2.exe": - when: - os: windows store: steam - /Unlock_The_King_2_Steam.app/Contents/MacOS/Unlock The King 2: + "/Unlock_The_King_2_Steam.app/Contents/MacOS/Unlock The King 2": - when: - os: mac store: steam @@ -597613,12 +599255,12 @@ Unlock the King 2: id: 1201810 Unloved: files: - /Unloved/Saved/Config/WindowsNoEditor: + "/Unloved/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /Unloved/Saved/Saved/SaveGames: + "/Unloved/Saved/Saved/SaveGames": tags: - save when: @@ -597626,7 +599268,7 @@ Unloved: installDir: UNLOVED: {} launch: - /Unloved.exe: + "/Unloved.exe": - when: - os: windows store: steam @@ -597636,7 +599278,7 @@ Unlucky Seven: installDir: Unlucky Seven: {} launch: - /u7.exe: + "/u7.exe": - when: - os: windows store: steam @@ -597649,22 +599291,22 @@ Unmanned Helicopter: id: 894070 Unmechanical: files: - /.local/share/TeotlStudios/Unmechanical/SavedElements: + "/.local/share/TeotlStudios/Unmechanical/SavedElements": tags: - save when: - os: linux - /.local/share/TeotlStudios/Unmechanical/UDKGame/Config: + "/.local/share/TeotlStudios/Unmechanical/UDKGame/Config": tags: - config when: - os: linux - /My Games/Unmechanical/SavedElements: + "/My Games/Unmechanical/SavedElements": tags: - save when: - os: windows - /My Games/Unmechanical/UDKGame/Config: + "/My Games/Unmechanical/UDKGame/Config": tags: - config when: @@ -597679,45 +599321,45 @@ Unmechanical: installDir: Unmechanical: {} launch: - /Binaries/Linux/UDKGame-Linux: - - arguments: '-installed' + "/Binaries/Linux/UDKGame-Linux": + - arguments: "-installed" when: - os: linux store: steam - workingDir: /Binaries/Linux - /Binaries/Win32/UDK.exe: - - arguments: '-installed' + workingDir: "/Binaries/Linux" + "/Binaries/Win32/UDK.exe": + - arguments: "-installed" when: - os: windows store: steam - workingDir: /Binaries/Win32 - /Binaries/Win32/UDKGame.exe: + workingDir: "/Binaries/Win32" + "/Binaries/Win32/UDKGame.exe": - when: - os: windows store: steam - workingDir: /Binaries/Win32 - /Unmechanical.app/Contents/MacOS/UDKGame: - - arguments: '-installed' + workingDir: "/Binaries/Win32" + "/Unmechanical.app/Contents/MacOS/UDKGame": + - arguments: "-installed" when: - os: mac store: steam - workingDir: /Unmechanical.app/Contents/MacOS + workingDir: "/Unmechanical.app/Contents/MacOS" steam: id: 211180 Unmemory: installDir: Unmemory: {} launch: - /Unmemory.app: + "/Unmemory.app": - when: - os: mac store: steam - workingDir: /OSX - /Unmemory.exe: + workingDir: "/OSX" + "/Unmemory.exe": - when: - os: windows store: steam - /Unmemory.x86_64: + "/Unmemory.x86_64": - when: - os: linux store: steam @@ -597731,15 +599373,15 @@ Unmoor: installDir: Unmoor!: {} launch: - /Unmoor.app: + "/Unmoor.app": - when: - os: mac store: steam - /Unmoor.exe: + "/Unmoor.exe": - when: - os: windows store: steam - /Unmoor.sh: + "/Unmoor.sh": - when: - os: linux store: steam @@ -597749,15 +599391,15 @@ Unnamed Fiasco: installDir: Unnamed Fiasco: {} launch: - /Unnamed Fiasco.exe: + "/Unnamed Fiasco.exe": - when: - os: windows store: steam - /UnnamedFiasco.app: + "/UnnamedFiasco.app": - when: - os: mac store: steam - /unnamed fiasco.x86: + "/unnamed fiasco.x86": - when: - os: linux store: steam @@ -597767,15 +599409,15 @@ Unnatural: installDir: Unnatural: {} launch: - /Unnatural: + "/Unnatural": - when: - os: linux store: steam - /Unnatural.app/Contents/MacOS/Unnatural: + "/Unnatural.app/Contents/MacOS/Unnatural": - when: - os: mac store: steam - /Unnatural.exe: + "/Unnatural.exe": - when: - os: windows store: steam @@ -597785,11 +599427,11 @@ UnnyWorld: installDir: UnnyWorld: {} launch: - /Unnyworld.exe: + "/Unnyworld.exe": - when: - os: windows store: steam - /unnyworld.app/Contents/MacOS/unnyworld: + "/unnyworld.app/Contents/MacOS/unnyworld": - when: - os: mac store: steam @@ -597799,8 +599441,8 @@ Uno (2016): installDir: Uno: {} launch: - /UNO.exe: - - arguments: '-uplay_steam_mode' + "/UNO.exe": + - arguments: "-uplay_steam_mode" when: - bit: 64 os: windows @@ -597813,28 +599455,28 @@ Uno (2016): id: 470220 Unpacking: files: - /AppData/LocalLow/Witch Beam/Unpacking/*.sav: + "/AppData/LocalLow/Witch Beam/Unpacking/*.sav": tags: - save when: - os: windows - /userdata//1135690/remote: + "/userdata//1135690/remote": tags: - save when: - store: steam - /Packages/HumbleBundle.Unpacking_q2mcdwmzx4qja/SystemAppData/wgs: + "/Packages/HumbleBundle.Unpacking_q2mcdwmzx4qja/SystemAppData/wgs": tags: - save when: - os: windows store: microsoft - /unity3d/Witch Beam/Unpacking: + "/unity3d/Witch Beam/Unpacking": tags: - save when: - os: linux - /unity3d/Witch Beam/Unpacking/prefs: + "/unity3d/Witch Beam/Unpacking/prefs": tags: - config when: @@ -597847,17 +599489,17 @@ Unpacking: installDir: Unpacking: {} launch: - /Unpacking.exe: + "/Unpacking.exe": - when: - bit: 64 os: windows store: steam - /unpacking.x86_64: + "/unpacking.x86_64": - when: - bit: 64 os: linux store: steam - /unpacking_osx.app: + "/unpacking_osx.app": - when: - os: mac store: steam @@ -597871,15 +599513,15 @@ Unpossible: installDir: Unpossible: {} launch: - /Unpossible.app: + "/Unpossible.app": - when: - os: mac store: steam - /Unpossible.exe: + "/Unpossible.exe": - when: - os: windows store: steam - /Unpossible.x86: + "/Unpossible.x86": - when: - os: linux store: steam @@ -597891,32 +599533,32 @@ Unpossible: id: 300400 Unrailed!: files: - /.local/share/UnrailedGame/GameSate/AllPlayers/language.txt: + "/.local/share/UnrailedGame/GameSate/AllPlayers/language.txt": tags: - config when: - os: linux - /.local/share/UnrailedGame/GameSate/AllPlayers/settings.txt: + "/.local/share/UnrailedGame/GameSate/AllPlayers/settings.txt": tags: - config when: - os: linux - /.local/share/UnrailedGame/GameState/AllPlayers/SaveGames: + "/.local/share/UnrailedGame/GameState/AllPlayers/SaveGames": tags: - save when: - os: linux - /Daedalic Entertainment GmbH/Unrailed/GameState/AllPlayers/SaveGames: + "/Daedalic Entertainment GmbH/Unrailed/GameState/AllPlayers/SaveGames": tags: - save when: - os: windows - /Daedalic Entertainment GmbH/Unrailed/GameState/AllPlayers/language.txt: + "/Daedalic Entertainment GmbH/Unrailed/GameState/AllPlayers/language.txt": tags: - config when: - os: windows - /Daedalic Entertainment GmbH/Unrailed/GameState/AllPlayers/settings.txt: + "/Daedalic Entertainment GmbH/Unrailed/GameState/AllPlayers/settings.txt": tags: - config when: @@ -597942,16 +599584,16 @@ Unrailed!: installDir: Unrailed: {} launch: - /Unrailed.app/Contents/MacOS/UnrailedGame: + "/Unrailed.app/Contents/MacOS/UnrailedGame": - when: - os: mac store: steam - /UnrailedGame.exe: + "/UnrailedGame.exe": - when: - bit: 64 os: windows store: steam - /UnrailedPacker.linux: + "/UnrailedPacker.linux": - when: - os: linux store: steam @@ -597959,7 +599601,7 @@ Unrailed!: id: 1016920 Unravel: files: - /Unravel: + "/Unravel": tags: - config - save @@ -597973,7 +599615,7 @@ Unravel Cyndy: installDir: Unravel Cyndy: {} launch: - /Unravel Cyndy.exe: + "/Unravel Cyndy.exe": - when: - os: windows store: steam @@ -597981,7 +599623,7 @@ Unravel Cyndy: id: 1021860 Unravel Two: files: - /UnravelTwo: + "/UnravelTwo": tags: - config - save @@ -597991,17 +599633,17 @@ Unravel Two: UnravelTwo: {} steam: id: 1225570 -'Unraveled: Tale of the Shipbreaker''s Daughter': +"Unraveled: Tale of the Shipbreaker's Daughter": steam: id: 341110 Unreal: files: - /Save: + "/Save": tags: - save when: - os: windows - /System/*.ini: + "/System/*.ini": tags: - config when: @@ -598012,17 +599654,17 @@ Unreal: installDir: Unreal Gold: {} launch: - /system/Unreal.exe: + "/system/Unreal.exe": - when: - store: steam - workingDir: /system + workingDir: "/system" steam: id: 13250 Unreal Drone Racing: installDir: Unreal Drone Racing: {} launch: - /UDRacing.exe: + "/UDRacing.exe": - when: - bit: 64 os: windows @@ -598033,7 +599675,7 @@ Unreal Estate: installDir: Unreal Estate: {} launch: - /UnrealEstate-Win.exe: + "/UnrealEstate-Win.exe": - when: - os: windows store: steam @@ -598043,25 +599685,25 @@ Unreal Heroes: installDir: Unreal Heroes: {} launch: - /UHeroesRebuild.exe: + "/UHeroesRebuild.exe": - when: - os: windows store: steam steam: id: 514510 -'Unreal II: The Awakening': +"Unreal II: The Awakening": files: - /Save: + "/Save": tags: - save when: - os: windows - /System/Unreal2.ini: + "/System/Unreal2.ini": tags: - config when: - os: windows - /System/User.ini: + "/System/User.ini": tags: - save when: @@ -598071,21 +599713,21 @@ Unreal Heroes: installDir: Unreal II The Awakening: {} launch: - /system/Unreal2.exe: + "/system/Unreal2.exe": - when: - store: steam - workingDir: /system + workingDir: "/system" steam: id: 13200 Unreal Maze Survival: installDir: Unreal Maze Survival: {} launch: - /MyProject.exe: + "/MyProject.exe": - when: - os: windows store: steam - /MyProject/Binaries/Linux/MyProject-Linux-Shipping: + "/MyProject/Binaries/Linux/MyProject-Linux-Shipping": - when: - os: linux store: steam @@ -598095,7 +599737,7 @@ Unreal Sandbox: installDir: ModandPlay: {} launch: - /ModandPlay.exe: + "/ModandPlay.exe": - when: - bit: 64 os: windows @@ -598104,28 +599746,28 @@ Unreal Sandbox: id: 1127460 Unreal Tournament: files: - /System: + "/System": tags: - config - save - /System/UnrealTournament.ini: + "/System/UnrealTournament.ini": tags: - config when: - os: windows - /System/User.ini: + "/System/User.ini": tags: - config - save when: - os: windows - /.loki/ut/System: + "/.loki/ut/System": tags: - config - save when: - os: linux - /Library/Application Support/Unreal Tournament/System: + "/Library/Application Support/Unreal Tournament/System": tags: - config - save @@ -598136,52 +599778,52 @@ Unreal Tournament: installDir: Unreal Tournament: {} launch: - /system/UnrealTournament.exe: + "/system/UnrealTournament.exe": - when: - store: steam - workingDir: /system + workingDir: "/system" steam: id: 13240 Unreal Tournament 2003: files: - /Saves: + "/Saves": tags: - save when: - os: windows - /System/*.ini: + "/System/*.ini": tags: - config when: - os: windows - /.ut2003/*.ini: + "/.ut2003/*.ini": tags: - config when: - os: linux Unreal Tournament 2004: files: - /Saves: + "/Saves": tags: - save when: - os: windows - /System/*.ini: + "/System/*.ini": tags: - config when: - os: windows - /.ut2004/*.ini: + "/.ut2004/*.ini": tags: - config when: - os: linux - /Library/Application Support/Unreal Tournament 2004/Saves: + "/Library/Application Support/Unreal Tournament 2004/Saves": tags: - save when: - os: mac - /Library/Application Support/Unreal Tournament 2004/System/*.ini: + "/Library/Application Support/Unreal Tournament 2004/System/*.ini": tags: - config when: @@ -598191,20 +599833,20 @@ Unreal Tournament 2004: installDir: Unreal Tournament 2004: {} launch: - /system/UT2004.exe: + "/system/UT2004.exe": - when: - store: steam - workingDir: /system + workingDir: "/system" steam: id: 13230 Unreal Tournament 3: files: - /My Games/Unreal Tournament 3/UTGame/Config: + "/My Games/Unreal Tournament 3/UTGame/Config": tags: - config when: - os: windows - /My Games/Unreal Tournament 3/UTGame/SaveData: + "/My Games/Unreal Tournament 3/UTGame/SaveData": tags: - save when: @@ -598212,11 +599854,11 @@ Unreal Tournament 3: installDir: Unreal Tournament 3: {} launch: - /Binaries/UT3.exe: - - arguments: '-SteamClient' + "/Binaries/UT3.exe": + - arguments: "-SteamClient" when: - store: steam - /Binaries/ut3.exe: + "/Binaries/ut3.exe": - arguments: editor when: - store: steam @@ -598224,12 +599866,12 @@ Unreal Tournament 3: id: 13210 Unreal Tournament 4: files: - /Documents/UnrealTournament/Saved/Config/LinuxNoEditor: + "/Documents/UnrealTournament/Saved/Config/LinuxNoEditor": tags: - config when: - os: linux - /UnrealTournament/Saved/Config/WindowsNoEditor: + "/UnrealTournament/Saved/Config/WindowsNoEditor": tags: - config when: @@ -598241,7 +599883,7 @@ Unrect: installDir: Unrect: {} launch: - /unrect.exe: + "/unrect.exe": - when: - os: windows store: steam @@ -598249,12 +599891,12 @@ Unrect: id: 765230 Unrest: files: - /Pyrodactyl/Unrest/*.xml: + "/Pyrodactyl/Unrest/*.xml": tags: - config when: - os: windows - /Pyrodactyl/Unrest/save: + "/Pyrodactyl/Unrest/save": tags: - save when: @@ -598264,15 +599906,15 @@ Unrest: installDir: Unrest: {} launch: - /Unrest: + "/Unrest": - when: - os: linux store: steam - /Unrest.app: + "/Unrest.app": - when: - os: mac store: steam - /Unrest.exe: + "/Unrest.exe": - when: - os: windows store: steam @@ -598282,7 +599924,7 @@ Unrest Indigo: installDir: common: {} launch: - /bloodfear.exe: + "/bloodfear.exe": - when: - bit: 64 os: windows @@ -598293,7 +599935,7 @@ Unrested Development: installDir: Unrested Development: {} launch: - /Unrested Development.exe: + "/Unrested Development.exe": - when: - os: windows store: steam @@ -598303,7 +599945,7 @@ Unroaded: installDir: Unroaded: {} launch: - /unroaded.exe: + "/unroaded.exe": - when: - store: steam steam: @@ -598315,7 +599957,7 @@ Unruly Ghouls: id: 523720 Unruly Heroes: files: - /AppData/LocalLow/MAGIC DESIGN STUDIOS/UnrulyHeroes: + "/AppData/LocalLow/MAGIC DESIGN STUDIOS/UnrulyHeroes": tags: - save when: @@ -598325,7 +599967,7 @@ Unruly Heroes: installDir: Unruly Heroes: {} launch: - /Unruly Heroes.exe: + "/Unruly Heroes.exe": - when: - os: windows store: steam @@ -598343,7 +599985,7 @@ Unsettled: installDir: Unsettled: {} launch: - /Unsettled.exe: + "/Unsettled.exe": - when: - os: windows store: steam @@ -598351,13 +599993,13 @@ Unsettled: id: 699010 Unsighted: files: - /AppData/LocalLow/Studio Pixel Punk/UNSIGHTED/GlobalGameData.dat: + "/AppData/LocalLow/Studio Pixel Punk/UNSIGHTED/GlobalGameData.dat": tags: - config - save when: - os: windows - /Packages/HumbleBundle.UNSIGHTED_q2mcdwmzx4qja/SystemAppData: + "/Packages/HumbleBundle.UNSIGHTED_q2mcdwmzx4qja/SystemAppData": tags: - save when: @@ -598376,21 +600018,21 @@ Unsighted: - config steam: id: 1062110 -'Unsolved Mystery Club: Amelia Earhart': +"Unsolved Mystery Club: Amelia Earhart": installDir: Unsolved Mystery Club Amelia Earhart: {} launch: - /Unsolved Mystery Club - Amelia Earhart.exe: + "/Unsolved Mystery Club - Amelia Earhart.exe": - when: - os: windows store: steam steam: id: 1116890 -'Unsolved Mystery Club: Ancient Astronauts (Collector´s Edition)': +"Unsolved Mystery Club: Ancient Astronauts (Collector´s Edition)": installDir: Unsolved Mystery Club - Ancient Astronauts: {} launch: - /Ancient Astronauts.exe: + "/Ancient Astronauts.exe": - when: - os: windows store: steam @@ -598400,7 +600042,7 @@ Unsolved Stories: installDir: Unsolved Stories: {} launch: - /UnsolvedStories.exe: + "/UnsolvedStories.exe": - when: - bit: 64 os: windows @@ -598411,11 +600053,11 @@ Unsouled: installDir: Unsouled: {} launch: - /Contents/MacOS/Unsouled: + "/Contents/MacOS/Unsouled": - when: - os: mac store: steam - /Unsouled.exe: + "/Unsouled.exe": - when: - os: windows store: steam @@ -598425,16 +600067,16 @@ Unspottable: installDir: Unspottable: {} launch: - /Unspottable.exe: + "/Unspottable.exe": - when: - os: windows store: steam - /Unspottable.x86_64: + "/Unspottable.x86_64": - when: - bit: 64 os: linux store: steam - /unspottable.app/Contents/MacOS/Unspottable: + "/unspottable.app/Contents/MacOS/Unspottable": - when: - os: mac store: steam @@ -598444,11 +600086,11 @@ Unstoppable Gorg: installDir: Unstoppable Gorg: {} launch: - /unstoppable_gorg.app: + "/unstoppable_gorg.app": - when: - os: mac store: steam - /unstoppable_gorg.exe: + "/unstoppable_gorg.exe": - when: - os: windows store: steam @@ -598458,30 +600100,30 @@ Unstoppable Hamster: installDir: Unstoppable Hamster: {} launch: - /Unstoppable Hamster.exe: + "/Unstoppable Hamster.exe": - when: - os: windows store: steam steam: id: 782300 -'Unstrong: Space Calamity': +"Unstrong: Space Calamity": installDir: Unstrong - Space Calamity: {} launch: - /Unstrong Space Calamity.exe: + "/Unstrong Space Calamity.exe": - when: - store: steam steam: id: 1781720 -'Unsung Heroes: The Golden Mask': +"Unsung Heroes: The Golden Mask": installDir: Unsung Heroes - The Golden Mask: {} launch: - /Unsung Heroes.app: + "/Unsung Heroes.app": - when: - os: mac store: steam - /Unsung Heroes.exe: + "/Unsung Heroes.exe": - when: - os: windows store: steam @@ -598491,16 +600133,16 @@ Unsung Kingdom: installDir: Unsung Kingdom: {} launch: - /unsung-kingdom: + "/unsung-kingdom": - when: - bit: 64 os: linux store: steam - /unsung-kingdom.app: + "/unsung-kingdom.app": - when: - os: mac store: steam - /unsung-kingdom.exe: + "/unsung-kingdom.exe": - when: - bit: 64 os: windows @@ -598509,7 +600151,7 @@ Unsung Kingdom: id: 1344790 Unsung Story: files: - /AppData/LocalLow/Little Orbit/Unsung Story: + "/AppData/LocalLow/Little Orbit/Unsung Story": tags: - save when: @@ -598517,7 +600159,7 @@ Unsung Story: installDir: Unsung Story: {} launch: - /Unsung Story.exe: + "/Unsung Story.exe": - when: - store: steam steam: @@ -598527,7 +600169,7 @@ Unsung Warriors: id: 980700 Unsung Warriors - Prologue: files: - /AppData/LocalLow/Osarion/Unsung Warriors Prologue/*.sav: + "/AppData/LocalLow/Osarion/Unsung Warriors Prologue/*.sav": tags: - save when: @@ -598535,20 +600177,20 @@ Unsung Warriors - Prologue: installDir: Unsung Warriors: {} launch: - /UnsungWarriorsPrologue.app: + "/UnsungWarriorsPrologue.app": - when: - os: mac store: steam - /UnsungWarriorsPrologue.exe: + "/UnsungWarriorsPrologue.exe": - when: - os: windows store: steam - /UnsungWarriorsPrologue.x86: + "/UnsungWarriorsPrologue.x86": - when: - bit: 32 os: linux store: steam - /UnsungWarriorsPrologue.x86_64: + "/UnsungWarriorsPrologue.x86_64": - when: - bit: 64 os: linux @@ -598562,11 +600204,11 @@ Unsung Warriors - Prologue: Unsweet: steam: id: 1063510 -'Untamed: Life of a Cougar': +"Untamed: Life of a Cougar": installDir: Untamed Life Of A Cougar: {} launch: - /Untamed Life of a Cougar.exe: + "/Untamed Life of a Cougar.exe": - when: - store: steam steam: @@ -598575,27 +600217,27 @@ Until I Have You: installDir: Until I Have You: {} launch: - /UIHY: + "/UIHY": - when: - os: linux store: steam - /Until I Have You.exe: + "/Until I Have You.exe": - when: - os: windows store: steam steam: id: 439310 -'Until None Remain: Battle Royale PC Edition': +"Until None Remain: Battle Royale PC Edition": installDir: Until None Remain: {} launch: - /UntilNoneRemain.exe: - - arguments: '-nohmd' + "/UntilNoneRemain.exe": + - arguments: "-nohmd" when: - store: steam steam: id: 697010 -'Until None Remain: Battle Royale VR': +"Until None Remain: Battle Royale VR": installDir: Until None Remain VR: {} steam: @@ -598606,7 +600248,7 @@ Until We Die: installDir: Until We Die: {} launch: - /Until We Die.exe: + "/Until We Die.exe": - when: - os: windows store: steam @@ -598614,7 +600256,7 @@ Until We Die: id: 1197570 Until You Fall: files: - /AppData/LocalLow/Schell Games/UntilYouFall: + "/AppData/LocalLow/Schell Games/UntilYouFall": tags: - save when: @@ -598631,7 +600273,7 @@ Until the Last: installDir: Until the last: {} launch: - /Until the last.exe: + "/Until the last.exe": - when: - os: windows store: steam @@ -598644,24 +600286,24 @@ Untitled: id: 639770 Untitled Goose Game: files: - /AppData/LocalLow/House House/Untitled Goose Game: + "/AppData/LocalLow/House House/Untitled Goose Game": tags: - save when: - os: windows - /Library/Application Support/House House/Untitled Goose Game: + "/Library/Application Support/House House/Untitled Goose Game": tags: - config - save when: - os: mac - /Library/Application Support/se.househou.untitled-goose-game: + "/Library/Application Support/se.househou.untitled-goose-game": tags: - config - save when: - os: mac - /Library/Preferences/se.househou.untitled-goose-game.plist: + "/Library/Preferences/se.househou.untitled-goose-game.plist": tags: - config when: @@ -598669,11 +600311,11 @@ Untitled Goose Game: installDir: Untitled Goose Game: {} launch: - /Untitled Goose Game.app: + "/Untitled Goose Game.app": - when: - os: mac store: steam - /Untitled.exe: + "/Untitled.exe": - when: - bit: 64 os: windows @@ -598686,7 +600328,7 @@ Untitled Goose Game: id: 837470 Unto the End: files: - /AppData/LocalLow/2TonStudios/UntoTheEnd: + "/AppData/LocalLow/2TonStudios/UntoTheEnd": tags: - config when: @@ -598696,7 +600338,7 @@ Unto the End: installDir: Unto The End: {} launch: - /UntoTheEnd.exe: + "/UntoTheEnd.exe": - when: - store: steam steam: @@ -598705,11 +600347,11 @@ Untouchable: installDir: Untouchable: {} launch: - /Mac/Untouchable.app: + "/Mac/Untouchable.app": - when: - os: mac store: steam - /Untouchable.exe: + "/Untouchable.exe": - when: - os: windows store: steam @@ -598717,12 +600359,12 @@ Untouchable: id: 819800 Unturned: files: - /.config/unity3d/Smartly Dressed Games/Unturned: + "/.config/unity3d/Smartly Dressed Games/Unturned": tags: - config when: - os: linux - /Library/Preferences/unity.Smartly Dressed Games.Unturned.plist: + "/Library/Preferences/unity.Smartly Dressed Games.Unturned.plist": tags: - config when: @@ -598733,22 +600375,25 @@ Unturned: installDir: Unturned: {} launch: - /Unturned.app: + "/Unturned.app": - when: - os: mac store: steam - /Unturned.x86: + "/Unturned.x86": - when: - bit: 32 os: linux store: steam - /Unturned.x86_64: + "/Unturned.x86_64": - when: - bit: 64 os: linux store: steam - /Unturned_BE.exe: + "/Unturned_BE.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam @@ -598762,15 +600407,15 @@ Unusual Findings: installDir: Unusual Findings: {} launch: - /Unusual Findings.exe: + "/Unusual Findings.exe": - when: - os: windows store: steam - /UnusualFindings.app: + "/UnusualFindings.app": - when: - os: mac store: steam - /UnusualFindings.x86_64: + "/UnusualFindings.x86_64": - when: - os: linux store: steam @@ -598780,7 +600425,7 @@ Unveil: installDir: Unveil: {} launch: - /Unveil.exe: + "/Unveil.exe": - when: - os: windows store: steam @@ -598788,7 +600433,7 @@ Unveil: id: 375210 Unveloped: files: - /Stencyl/Unveloped: + "/Stencyl/Unveloped": tags: - save when: @@ -598796,11 +600441,11 @@ Unveloped: installDir: Unveloped: {} launch: - /Unveloped.exe: + "/Unveloped.exe": - when: - os: windows store: steam - /games-generated/Unveloped/Export/linux64/cpp/bin/Unveloped: + "/games-generated/Unveloped/Export/linux64/cpp/bin/Unveloped": - when: - os: linux store: steam @@ -598810,11 +600455,11 @@ Unwell Mel: installDir: Unwell Mel: {} launch: - /UnwelMel.exe: + "/UnwelMel.exe": - when: - os: windows store: steam - /UnwellMel.app: + "/UnwellMel.app": - when: - os: mac store: steam @@ -598822,12 +600467,12 @@ Unwell Mel: id: 51020 Unworthy: files: - /Unworthy: + "/Unworthy": tags: - save when: - os: windows - /Unworthy/settings.ini: + "/Unworthy/settings.ini": tags: - config when: @@ -598837,7 +600482,7 @@ Unworthy: installDir: Unworthy: {} launch: - /Unworthy.exe: + "/Unworthy.exe": - when: - os: windows store: steam @@ -598845,12 +600490,12 @@ Unworthy: id: 613190 Up: files: - /UP/config.opt: + "/UP/config.opt": tags: - config when: - os: windows - /THQ/Disney_Pixar/UP/*.DISNEY_PIXAR_UPSavedGame: + "/THQ/Disney_Pixar/UP/*.DISNEY_PIXAR_UPSavedGame": tags: - save when: @@ -598859,7 +600504,7 @@ Up And Up: installDir: Up And Up: {} launch: - /UpAndUp.exe: + "/UpAndUp.exe": - when: - os: windows store: steam @@ -598867,7 +600512,7 @@ Up And Up: id: 869930 Up Left Out: files: - /unity3d/Rainbow Train/Up Left Out/prefs: + "/unity3d/Rainbow Train/Up Left Out/prefs": tags: - config - save @@ -598876,20 +600521,20 @@ Up Left Out: installDir: Upleftout: {} launch: - /Upleftout.app: + "/Upleftout.app": - when: - os: mac store: steam - /Upleftout.exe: + "/Upleftout.exe": - when: - os: windows store: steam - /Upleftout.x86: + "/Upleftout.x86": - when: - bit: 32 os: linux store: steam - /Upleftout.x86_64: + "/Upleftout.x86_64": - when: - bit: 64 os: linux @@ -598905,7 +600550,7 @@ Up and Down: installDir: Up and Down: {} launch: - /Up and Down.exe: + "/Up and Down.exe": - when: - os: windows store: steam @@ -598918,7 +600563,7 @@ UpBreakers: installDir: UpBreakers: {} launch: - /UpBreakers.exe: + "/UpBreakers.exe": - when: - bit: 64 os: windows @@ -598929,17 +600574,17 @@ UpMove: installDir: UpMove: {} launch: - /UpMove.exe: + "/UpMove.exe": - when: - os: windows store: steam steam: id: 1175650 -'Upaon: A Snake''s Journey': +"Upaon: A Snake's Journey": installDir: - Upaon A Snake's Journey: {} + "Upaon A Snake's Journey": {} launch: - /Upaon.exe: + "/Upaon.exe": - when: - os: windows store: steam @@ -598954,40 +600599,40 @@ Uplands Motel: installDir: Uplands Motel: {} launch: - /EscapeVR.exe: + "/EscapeVR.exe": - when: - store: steam steam: id: 704750 -'Uplands Motel: VR Thriller': +"Uplands Motel: VR Thriller": installDir: Uplands Motel VR Thriller: {} steam: id: 602000 -'Uplink: Hacker Elite': +"Uplink: Hacker Elite": files: - /users: + "/users": tags: - save when: - os: windows - /users/options: + "/users/options": tags: - config when: - os: windows - /.uplink: + "/.uplink": tags: - config - save when: - os: linux - /Library/Application Support/Uplink: + "/Library/Application Support/Uplink": tags: - save when: - os: mac - /Library/Application Support/Uplink/options: + "/Library/Application Support/Uplink/options": tags: - config when: @@ -598997,15 +600642,15 @@ Uplands Motel: installDir: Uplink: {} launch: - /Uplink.app: + "/Uplink.app": - when: - os: mac store: steam - /Uplink.exe: + "/Uplink.exe": - when: - os: windows store: steam - /run_steam.sh: + "/run_steam.sh": - when: - os: linux store: steam @@ -599015,41 +600660,41 @@ Uppers: installDir: UPPERS: {} launch: - /UppersLauncher.exe: + "/UppersLauncher.exe": - when: - os: windows store: steam steam: id: 795760 -'Uprising 2: Lead and Destroy': +"Uprising 2: Lead and Destroy": gog: id: 1453458005 installDir: Uprising 2 Lead and Destroy: {} launch: - /Uprising 2.exe: + "/Uprising 2.exe": - when: - os: windows store: steam steam: id: 514050 -'Uprising44: The Silent Shadows': +"Uprising44: The Silent Shadows": installDir: Uprising44: {} launch: - /Uprising44.exe: + "/Uprising44.exe": - when: - os: windows store: steam steam: id: 280380 -'Uprising: Join or Die': +"Uprising: Join or Die": gog: id: 1453195863 installDir: Uprising Join or Die: {} launch: - /uprising.exe: + "/uprising.exe": - when: - os: windows store: steam @@ -599059,20 +600704,20 @@ Upside Down: installDir: Upside Down: {} launch: - /Upside Down.app: + "/Upside Down.app": - when: - os: mac store: steam - /Upside Down.exe: + "/Upside Down.exe": - when: - os: windows store: steam - /Upside Down.x86: + "/Upside Down.x86": - when: - bit: 32 os: linux store: steam - /Upside Down.x86_64: + "/Upside Down.x86_64": - when: - bit: 64 os: linux @@ -599087,7 +600732,7 @@ Upside-Down Dimensions: installDir: Upside-Down Dimensions: {} launch: - /upside-down dimensions.exe: + "/upside-down dimensions.exe": - when: - os: windows store: steam @@ -599097,17 +600742,17 @@ Uptasia: installDir: Uptasia: {} launch: - /UptasiaApp.exe: + "/UptasiaApp.exe": - when: - os: windows store: steam steam: id: 719730 -'Upwards, Lonely Robot': +"Upwards, Lonely Robot": installDir: - 'Upwards, Lonely Robot': {} + "Upwards, Lonely Robot": {} launch: - /upwards.exe: + "/upwards.exe": - when: - os: windows store: steam @@ -599117,7 +600762,7 @@ UrGothic Battle Royale: installDir: Midjungard Battle Royale: {} launch: - /Midjungard.exe: + "/Midjungard.exe": - when: - store: steam steam: @@ -599126,7 +600771,7 @@ Uragun: installDir: Uragun: {} launch: - /Uragun.exe: + "/Uragun.exe": - when: - store: steam steam: @@ -599135,7 +600780,7 @@ Urban: installDir: Urban: {} launch: - /URBAN 1.02.exe: + "/URBAN 1.02.exe": - when: - bit: 64 os: windows @@ -599144,7 +600789,7 @@ Urban: id: 813970 Urban Assault: files: - /SAVE: + "/SAVE": tags: - save when: @@ -599156,12 +600801,12 @@ Urban Cards: id: 1126890 Urban Chaos: files: - /config.ini: + "/config.ini": tags: - config when: - os: windows - /saves: + "/saves": tags: - save when: @@ -599171,7 +600816,7 @@ Urban Chaos: installDir: Urban Chaos: {} launch: - /fallen.exe: + "/fallen.exe": - when: - store: steam steam: @@ -599182,7 +600827,7 @@ Urban Empire: installDir: Urban Empire: {} launch: - /LaunchUE.exe: + "/LaunchUE.exe": - when: - os: windows store: steam @@ -599195,22 +600840,23 @@ Urban Explorer Golf: installDir: Urban Explorer Golf: {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: id: 897360 Urban Flow: files: - /AppData/LocalLow/Baltoro Games/Urban Flow/: + "/AppData/LocalLow/Baltoro Games/Urban Flow/": tags: - save when: - - store: steam + - os: windows + store: steam installDir: Urban Flow: {} launch: - /Urban Flow.exe: + "/Urban Flow.exe": - when: - store: steam steam: @@ -599219,7 +600865,7 @@ Urban Justice: installDir: Urban Justice: {} launch: - /UJ.exe: + "/UJ.exe": - when: - store: steam steam: @@ -599228,17 +600874,17 @@ Urban Legends: installDir: Urban Legends: {} launch: - /UrbanLegends.exe: + "/UrbanLegends.exe": - when: - os: windows store: steam steam: id: 300200 -'Urban Legends: The Dry Body': +"Urban Legends: The Dry Body": installDir: Lendas Episódio I A Lenda Do Corpo Seco: {} launch: - /Urban Legends - The Dry Body Legend.exe: + "/Urban Legends - The Dry Body Legend.exe": - when: - os: windows store: steam @@ -599248,7 +600894,7 @@ Urban Lockdown: installDir: Urban Lockdown: {} launch: - /urban lockdown.exe: + "/urban lockdown.exe": - when: - os: windows store: steam @@ -599258,11 +600904,11 @@ Urban Pirate: installDir: Urban Pirate: {} launch: - /Urban Pirate.exe: + "/Urban Pirate.exe": - when: - os: windows store: steam - /run.sh: + "/run.sh": - when: - os: linux store: steam @@ -599272,15 +600918,15 @@ Urban Rivals: installDir: Urban Rivals: {} launch: - /Urban Rivals.app/Contents/MacOS/Urban Rivals: + "/Urban Rivals.app/Contents/MacOS/Urban Rivals": - when: - os: mac store: steam - /Urban Rivals.exe: + "/Urban Rivals.exe": - when: - os: windows store: steam - /Urban Rivals.x86: + "/Urban Rivals.x86": - when: - os: linux store: steam @@ -599288,22 +600934,22 @@ Urban Rivals: id: 715310 Urban Tale: files: - /.config/Piksli.com/Urban Tale: + "/.config/Piksli.com/Urban Tale": tags: - config when: - os: mac - /.config/Piksli_com/Urban Tale: + "/.config/Piksli_com/Urban Tale": tags: - save when: - os: mac - /AppData/LocalLow/Piksli.com/Urban Tale: + "/AppData/LocalLow/Piksli.com/Urban Tale": tags: - config when: - os: windows - /AppData/LocalLow/Piksli_com/Urban Tale: + "/AppData/LocalLow/Piksli_com/Urban Tale": tags: - save when: @@ -599311,11 +600957,11 @@ Urban Tale: installDir: Urban Tale: {} launch: - /Urban Tale.exe: + "/Urban Tale.exe": - when: - os: windows store: steam - /UrbanTaleMac.app: + "/UrbanTaleMac.app": - when: - os: mac store: steam @@ -599323,12 +600969,12 @@ Urban Tale: id: 1000770 Urban Terror: files: - /q3ut4: + "/q3ut4": tags: - config when: - os: windows - /Library/Application Support/Quake3/q3ut4: + "/Library/Application Support/Quake3/q3ut4": tags: - config when: @@ -599340,17 +600986,17 @@ Urban Terror: - os: linux Urban Trial Freestyle: files: - /userdata//243450/remote: + "/userdata//243450/remote": tags: - save when: - store: steam - /Urban Trial Freestyle/*.ini: + "/Urban Trial Freestyle/*.ini": tags: - config when: - os: windows - /Urban Trial Freestyle/savegames: + "/Urban Trial Freestyle/savegames": tags: - save when: @@ -599360,19 +601006,19 @@ Urban Trial Freestyle: installDir: Urban Trial Freestyle: {} launch: - /UrbanTrialFreestyle.exe: + "/UrbanTrialFreestyle.exe": - when: - store: steam steam: id: 243450 Urban Trial Playground: files: - /UrbanTrialFreestyle3/Saved/Config: + "/UrbanTrialFreestyle3/Saved/Config": tags: - config when: - os: windows - /UrbanTrialFreestyle3/Saved/SaveGames: + "/UrbanTrialFreestyle3/Saved/SaveGames": tags: - save when: @@ -599382,17 +601028,17 @@ Urban Trial Playground: installDir: Urban Trial Playground: {} launch: - /UrbanTrialFreestyle3.app/Contents/MacOS/UrbanTrialFreestyle3: - - arguments: '-metalsm5' + "/UrbanTrialFreestyle3.app/Contents/MacOS/UrbanTrialFreestyle3": + - arguments: "-metalsm5" when: - os: mac store: steam - /UrbanTrialFreestyle3.exe: + "/UrbanTrialFreestyle3.exe": - when: - bit: 64 os: windows store: steam - /UrbanTrialFreestyle3.sh: + "/UrbanTrialFreestyle3.sh": - when: - os: linux store: steam @@ -599404,7 +601050,7 @@ Urban Trial Tricky Deluxe Edition: installDir: Urban Trial Tricky: {} launch: - /UrbanTrialTricky.exe: + "/UrbanTrialTricky.exe": - when: - bit: 64 os: windows @@ -599415,15 +601061,15 @@ Urban War Defense: installDir: UWD: {} launch: - /UWD_MAC.app: + "/UWD_MAC.app": - when: - os: mac store: steam - /UrbanWarDefense.exe: + "/UrbanWarDefense.exe": - when: - os: windows store: steam - /UrbanWarDefense.x86_64: + "/UrbanWarDefense.x86_64": - when: - os: linux store: steam @@ -599433,7 +601079,7 @@ Urban riots: installDir: Urban riots: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -599441,7 +601087,7 @@ Urban riots: id: 1146350 Urbance Clans Card Battle!: files: - /AppData/LocalLow/FishingCactus/UrbanceCardGame: + "/AppData/LocalLow/FishingCactus/UrbanceCardGame": tags: - save when: @@ -599449,7 +601095,7 @@ Urbance Clans Card Battle!: installDir: Urbance Card Game: {} launch: - /UrbanceCardGame.exe: + "/UrbanceCardGame.exe": - when: - os: windows store: steam @@ -599461,42 +601107,42 @@ Urbek City Builder: installDir: Urbek: {} launch: - /Urbek.exe: + "/Urbek.exe": - when: - os: windows store: steam steam: id: 1411740 -Uriel's Chasm: +"Uriel's Chasm": installDir: - Uriel's Chasm: {} + "Uriel's Chasm": {} launch: - /dxwebsetup.exe: + "/dxwebsetup.exe": - when: - os: windows store: steam - /urielschasm.exe: + "/urielschasm.exe": - when: - os: windows store: steam steam: id: 292630 -'Uriel''s Chasm 2: את': +"Uriel's Chasm 2: את": installDir: - Uriel's Chasm 2: {} + "Uriel's Chasm 2": {} launch: - /et.exe: + "/et.exe": - when: - bit: 64 os: windows store: steam steam: id: 414580 -'Uriel''s Chasm 3: Gelshock': +"Uriel's Chasm 3: Gelshock": installDir: Uriel’s Chasm 3 Gelshock: {} launch: - /UC3.exe: + "/UC3.exe": - when: - os: windows store: steam @@ -599504,7 +601150,7 @@ Uriel's Chasm: id: 1050730 Urizen Shadows of the Cold: files: - /URIZEN_SHADOWS_OF_THE_COLD/urizensaveone.sav: + "/URIZEN_SHADOWS_OF_THE_COLD/urizensaveone.sav": tags: - save when: @@ -599515,35 +601161,38 @@ Urja: installDir: Urja: {} launch: - /Urja.app: + "/Urja.app": - when: - os: mac store: steam - /Urja.exe: + "/Urja.exe": - when: - os: windows store: steam steam: id: 338710 -'Urtuk: The Desolation': +"Urtuk: The Desolation": gog: id: 2104869248 installDir: Urtuk The Desolation: {} launch: - /urtuk: + "/urtuk": - when: - os: mac store: steam - /urtuk.exe: + - bit: 64 + os: linux + store: steam + "/urtuk.exe": - when: - os: windows store: steam steam: id: 1181830 -'Uru: Ages Beyond Myst': +"Uru: Ages Beyond Myst": files: - /sav: + "/sav": tags: - save when: @@ -599553,25 +601202,25 @@ Urja: installDir: Uru CC: {} launch: - /Uru Complete Chronicles.app: + "/Uru Complete Chronicles.app": - when: - os: mac store: steam - /UruExplorer.exe: + "/UruExplorer.exe": - when: - os: windows store: steam steam: id: 63650 -'Usagi Yojimbo: Way of the Ronin': +"Usagi Yojimbo: Way of the Ronin": installDir: Usagi Yojimbo Way of the Ronin: {} launch: - /UsagiYojimbo.app: + "/UsagiYojimbo.app": - when: - os: mac store: steam - /UsagiYojimbo.exe: + "/UsagiYojimbo.exe": - when: - os: windows store: steam @@ -599581,7 +601230,7 @@ Use Your Brain!: installDir: Use Your Brain!: {} launch: - /UseYourBrain.exe: + "/UseYourBrain.exe": - when: - os: windows store: steam @@ -599591,11 +601240,11 @@ Use Your Words: installDir: Use Your Words: {} launch: - /uyw.app/Contents/MacOS/uyw: + "/uyw.app/Contents/MacOS/uyw": - when: - os: mac store: steam - /uyw.exe: + "/uyw.exe": - when: - os: windows store: steam @@ -599605,35 +601254,35 @@ Useless Box: installDir: Useless Box: {} launch: - /Useless Box.app: + "/Useless Box.app": - when: - os: mac store: steam - /Useless Box.exe: + "/Useless Box.exe": - when: - os: windows store: steam - /Useless Box.x86: + "/Useless Box.x86": - when: - bit: 32 os: linux store: steam - /Useless Box.x86_64: + "/Useless Box.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 365980 -'Useless Box: The Game': +"Useless Box: The Game": installDir: Useless Box The Game: {} launch: - /Useless Box The Game.app: + "/Useless Box The Game.app": - when: - os: mac store: steam - /Useless Box The Game.exe: + "/Useless Box The Game.exe": - when: - os: windows store: steam @@ -599643,7 +601292,7 @@ Usotsuki Game: installDir: Usotsuki_Game: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -599654,7 +601303,7 @@ Usual John: id: 891150 Usurper: files: - /Usurper: + "/Usurper": tags: - save when: @@ -599662,25 +601311,25 @@ Usurper: installDir: Usurper: {} launch: - /Usurper.exe: + "/Usurper.exe": - when: - os: windows store: steam steam: id: 603020 -'Utawarerumono: Mask of Deception': +"Utawarerumono: Mask of Deception": files: - /AQUAPLUS/Utawarerumono Mask of Deception/Save/*.DAT: + "/AQUAPLUS/Utawarerumono Mask of Deception/Save/*.DAT": tags: - save when: - os: windows - /AQUAPLUS/うたわれるもの 偽りの仮面/Save/*.DAT: + "/AQUAPLUS/うたわれるもの 偽りの仮面/Save/*.DAT": tags: - save when: - os: windows - /AQUAPLUS/受讚頌者 虛偽的假面/Save/*.DAT: + "/AQUAPLUS/受讚頌者 虛偽的假面/Save/*.DAT": tags: - save when: @@ -599688,25 +601337,25 @@ Usurper: installDir: Utawarerumono - Mask of Deception: {} launch: - /Utawarerumono Mask of Deception.exe: + "/Utawarerumono Mask of Deception.exe": - when: - os: windows store: steam steam: id: 1149550 -'Utawarerumono: Mask of Truth': +"Utawarerumono: Mask of Truth": files: - /AQUAPLUS/Utawarerumono Mask of Truth/Save/*.DAT: + "/AQUAPLUS/Utawarerumono Mask of Truth/Save/*.DAT": tags: - save when: - os: windows - /AQUAPLUS/うたわれるもの 二人の白皇/Save/*.DAT: + "/AQUAPLUS/うたわれるもの 二人の白皇/Save/*.DAT": tags: - save when: - os: windows - /AQUAPLUS/受讚頌者 二人的白皇/Save/*.DAT: + "/AQUAPLUS/受讚頌者 二人的白皇/Save/*.DAT": tags: - save when: @@ -599714,25 +601363,25 @@ Usurper: installDir: Utawarerumono - Mask of Truth: {} launch: - /Utawarerumono Mask of Truth.exe: + "/Utawarerumono Mask of Truth.exe": - when: - os: windows store: steam steam: id: 1151440 -'Utawarerumono: Prelude to the Fallen': +"Utawarerumono: Prelude to the Fallen": files: - /AQUAPLUS/Utawarerumono Prelude to the Fallen/Save/*.DAT: + "/AQUAPLUS/Utawarerumono Prelude to the Fallen/Save/*.DAT": tags: - save when: - os: windows - /AQUAPLUS/うたわれるもの 散りゆく者への子守唄/Save/*.DAT: + "/AQUAPLUS/うたわれるもの 散りゆく者への子守唄/Save/*.DAT": tags: - save when: - os: windows - /AQUAPLUS/受讚頌者 給逝者的搖籃曲/Save/*.DAT: + "/AQUAPLUS/受讚頌者 給逝者的搖籃曲/Save/*.DAT": tags: - save when: @@ -599740,7 +601389,7 @@ Usurper: installDir: Utawarerumono - Prelude to the Fallen: {} launch: - /Utawarerumono Prelude to the Fallen.exe: + "/Utawarerumono Prelude to the Fallen.exe": - when: - os: windows store: steam @@ -599750,7 +601399,7 @@ Uterine Supremacy: installDir: Uterine Supremacy: {} launch: - /UterineSupremacy.exe: + "/UterineSupremacy.exe": - when: - os: windows store: steam @@ -599763,11 +601412,11 @@ Utopia 9 - A Volatile Vacation: installDir: UTOPIA9: {} launch: - /Utopia9.app/Contents/MacOS/Utopia9: + "/Utopia9.app/Contents/MacOS/Utopia9": - when: - os: mac store: steam - /Utopia9.exe: + "/Utopia9.exe": - when: - os: windows store: steam @@ -599775,14 +601424,14 @@ Utopia 9 - A Volatile Vacation: id: 405000 Utopia City: files: - /data/environment: + "/data/environment": tags: - config when: - os: windows Utopia Syndrome: files: - /AppData/LocalLow/Andrew Averkin/Utopia Syndrome: + "/AppData/LocalLow/Andrew Averkin/Utopia Syndrome": tags: - save when: @@ -599791,12 +601440,12 @@ Utopia Syndrome: id: 955020 Uurnog Uurnlimited: files: - /AppData/LocalLow/Nifflas/Uurnog Uurnlimited/*.json: + "/AppData/LocalLow/Nifflas/Uurnog Uurnlimited/*.json": tags: - save when: - os: windows - /AppData/LocalLow/Nifflas/Uurnog Uurnlimited/Settings.xml: + "/AppData/LocalLow/Nifflas/Uurnog Uurnlimited/Settings.xml": tags: - config when: @@ -599804,13 +601453,13 @@ Uurnog Uurnlimited: installDir: Uurnog Uurnlimited: {} launch: - /Uurnog.app: - - arguments: '-screen-width 700 -screen-height 500 -screen-fullscreen 0' + "/Uurnog.app": + - arguments: "-screen-width 700 -screen-height 500 -screen-fullscreen 0" when: - os: mac store: steam - /Uurnog.exe: - - arguments: '-screen-width 700 -screen-height 500 -screen-fullscreen 0' + "/Uurnog.exe": + - arguments: "-screen-width 700 -screen-height 500 -screen-fullscreen 0" when: - bit: 64 os: windows @@ -599821,7 +601470,7 @@ Uuu ska so smislom: installDir: uuu ska so smislom: {} launch: - /acs.exe: + "/acs.exe": - when: - store: steam steam: @@ -599830,7 +601479,7 @@ Uventa: installDir: Uventa: {} launch: - /uventa.exe: + "/uventa.exe": - when: - bit: 64 os: windows @@ -599841,7 +601490,7 @@ Uznali ? soglasnbI ?: installDir: uuu: {} launch: - /acs.exe: + "/acs.exe": - when: - store: steam steam: @@ -599850,11 +601499,11 @@ V: installDir: V: {} launch: - /V.app/Contents/MacOS/V: + "/V.app/Contents/MacOS/V": - when: - os: mac store: steam - /V.exe: + "/V.exe": - when: - os: windows store: steam @@ -599875,7 +601524,7 @@ V Nekotorom Tsarstve: id: 898140 V Rising: files: - /AppData/LocalLow/Stunlock Studios/VRising: + "/AppData/LocalLow/Stunlock Studios/VRising": tags: - config - save @@ -599884,7 +601533,7 @@ V Rising: installDir: VRising: {} launch: - /VRising.exe: + "/VRising.exe": - when: - store: steam steam: @@ -599901,20 +601550,20 @@ V-Racer Hoverbike: id: 668430 V-Rally 2 Expert Edition: files: - /Saves: + "/Saves": tags: - save when: - os: windows V-Rally 4: files: - /userdata//658700/remote: + "/userdata//658700/remote": tags: - save when: - os: windows store: steam - /My Games/VR4/UserSettings.cfg: + "/My Games/VR4/UserSettings.cfg": tags: - config when: @@ -599925,7 +601574,7 @@ V-Rally 4: id: 658700 V-Rally Multiplayer Championship Edition: files: - /Saves: + "/Saves": tags: - save when: @@ -599934,7 +601583,7 @@ V.L.A.D.i.K: installDir: V.L.A.D.i.K: {} launch: - /VLADiK.exe: + "/VLADiK.exe": - when: - os: windows store: steam @@ -599944,7 +601593,7 @@ V.O.I.D.: installDir: VOID: {} launch: - /VOID.exe: + "/VOID.exe": - when: - os: windows store: steam @@ -599954,7 +601603,7 @@ V.T.: installDir: VT: {} launch: - /VT.exe: + "/VT.exe": - when: - os: windows store: steam @@ -599964,7 +601613,7 @@ V1RUZ: installDir: V1RUZ: {} launch: - /V1RUZ.exe: + "/V1RUZ.exe": - when: - os: windows store: steam @@ -599972,7 +601621,7 @@ V1RUZ: id: 1140460 V8 Challenge: files: - /SavedGames: + "/SavedGames": tags: - save when: @@ -599981,40 +601630,40 @@ V8 Challenge: HKEY_CURRENT_USER/SOFTWARE/Digital Illusions/V8 Challenge/Configurations/Default: tags: - config -'VA-11 Hall-A: Cyberpunk Bartender Action': +"VA-11 Hall-A: Cyberpunk Bartender Action": files: - /options.ini: + "/options.ini": tags: - config when: - os: windows - /.config/VA_11_Hall_A/saves: + "/.config/VA_11_Hall_A/saves": tags: - save when: - os: linux - /.config/VA_11_Hall_A/saves/waifu preferences.txt: + "/.config/VA_11_Hall_A/saves/waifu preferences.txt": tags: - config when: - os: linux - /Library/Application Support/com.yoyogames.macyoyorunner/saves: + "/Library/Application Support/com.yoyogames.macyoyorunner/saves": tags: - save when: - os: mac - /Packages/YsbrydGames.VA-11Hall-ACyberpunkBartenderAction_cqfre349xfmdg/SystemAppData/wgs: + "/Packages/YsbrydGames.VA-11Hall-ACyberpunkBartenderAction_cqfre349xfmdg/SystemAppData/wgs": tags: - save when: - os: windows store: microsoft - /VA_11_Hall_A/saves: + "/VA_11_Hall_A/saves": tags: - save when: - os: windows - /VA_11_Hall_A/saves/Waifu Preferences.txt: + "/VA_11_Hall_A/saves/Waifu Preferences.txt": tags: - config when: @@ -600024,15 +601673,15 @@ V8 Challenge: installDir: VA-11 HALL-A: {} launch: - /VA-11 Hall A.exe: + "/VA-11 Hall A.exe": - when: - os: windows store: steam - /VA-11 Hall-A Cyberpunk Bartender Action.app: + "/VA-11 Hall-A Cyberpunk Bartender Action.app": - when: - os: mac store: steam - /run.sh: + "/run.sh": - when: - os: linux store: steam @@ -600047,18 +601696,18 @@ VALHALL: installDir: VALHALL Harbinger: {} launch: - /VALHALL.exe: + "/VALHALL.exe": - when: - bit: 64 os: windows store: steam steam: id: 908740 -VANILLA REFEREE'S GARDEN: +"VANILLA REFEREE'S GARDEN": installDir: VANILLA GARDEN OF JUDGEMENT: {} launch: - /vanilla.exe: + "/vanilla.exe": - when: - os: windows store: steam @@ -600068,7 +601717,7 @@ VASARA Collection: installDir: VASARA Collection: {} launch: - /VASARA Collection.exe: + "/VASARA Collection.exe": - when: - bit: 64 os: windows @@ -600080,12 +601729,12 @@ VAST: id: 1042500 VApe Escape: files: - /vapeescape/vapeescape.json: + "/vapeescape/vapeescape.json": tags: - save when: - os: windows - /vapeescape/vapeescape_options.json: + "/vapeescape/vapeescape_options.json": tags: - config when: @@ -600093,16 +601742,16 @@ VApe Escape: installDir: vApe Escape: {} launch: - /vapeescape.exe: + "/vapeescape.exe": - when: - store: steam steam: id: 1035890 -'VCB: Why City 4k': +"VCB: Why City 4k": installDir: VCB - Why City 4k: {} launch: - /VCB.exe: + "/VCB.exe": - when: - os: windows store: steam @@ -600115,7 +601764,7 @@ VCuber: installDir: VCuber: {} launch: - /VCuber.exe: + "/VCuber.exe": - when: - store: steam steam: @@ -600124,23 +601773,23 @@ VECTORLORD: installDir: VECTORLORD: {} launch: - /game/VECTORLORD.EXE: + "/game/VECTORLORD.EXE": - when: - bit: 64 os: windows store: steam - workingDir: /game + workingDir: "/game" steam: id: 1176990 VEGA Conflict: installDir: VEGA Conflict: {} launch: - /VEGAConflict.app: + "/VEGAConflict.app": - when: - os: mac store: steam - /VEGAConflict.exe: + "/VEGAConflict.exe": - when: - os: windows store: steam @@ -600155,17 +601804,17 @@ VEmpire - The Kings of Darkness: installDir: VEmpire - The Kings of Darkness: {} launch: - /nwjs.app: + "/nwjs.app": - when: - bit: 64 os: mac store: steam - /run.sh: + "/run.sh": - when: - bit: 64 os: linux store: steam - /vempire.exe: + "/vempire.exe": - when: - os: windows store: steam @@ -600175,7 +601824,7 @@ VHSoverdose: installDir: VHSoverdose: {} launch: - /VHSoverdose.exe: + "/VHSoverdose.exe": - when: - store: steam steam: @@ -600192,16 +601841,16 @@ VICCP: installDir: VICCP: {} launch: - /Contents/MacOS/____VICCP_BUILD_MAC: + "/Contents/MacOS/____VICCP_BUILD_MAC": - when: - os: mac store: steam - /VICCP.exe: + "/VICCP.exe": - when: - bit: 64 os: windows store: steam - /viccp64.x86_64: + "/viccp64.x86_64": - when: - bit: 64 os: linux @@ -600212,15 +601861,17 @@ VIDEO GAME: installDir: VIDEO GAME: {} launch: - /VIDEO GAME.exe: + "/VIDEO GAME.exe": - when: - os: windows store: steam + - os: mac + store: steam steam: id: 924310 VINE: files: - /AppData/LocalLow/FrogParty/VINE: + "/AppData/LocalLow/FrogParty/VINE": tags: - save when: @@ -600243,7 +601894,7 @@ VITAL: installDir: VITAL: {} launch: - /Vital.exe: + "/Vital.exe": - when: - bit: 64 os: windows @@ -600254,15 +601905,15 @@ VKT Prime System Crash: installDir: VKT Prime System Crash: {} launch: - /PrimeSystemCrash/PrimeSystemCrash.app: + "/PrimeSystemCrash/PrimeSystemCrash.app": - when: - os: mac store: steam - /PrimeSystemCrash/PrimeSystemCrash.exe: + "/PrimeSystemCrash/PrimeSystemCrash.exe": - when: - os: windows store: steam - /PrimeSystemCrash/PrimeSystemCrash.sh: + "/PrimeSystemCrash/PrimeSystemCrash.sh": - when: - os: linux store: steam @@ -600272,11 +601923,11 @@ VOI: installDir: voi: {} launch: - /voi.app: + "/voi.app": - when: - os: mac store: steam - /voi.exe: + "/voi.exe": - when: - os: windows store: steam @@ -600286,15 +601937,15 @@ VOID: installDir: VOID: {} launch: - /VOID.app: + "/VOID.app": - when: - os: mac store: steam - /VOID.exe: + "/VOID.exe": - when: - os: windows store: steam - /VOID.sh: + "/VOID.sh": - when: - os: linux store: steam @@ -600304,7 +601955,7 @@ VOiD: installDir: VOiD: {} launch: - /VOiD.exe: + "/VOiD.exe": - when: - os: windows store: steam @@ -600314,7 +601965,7 @@ VQD: installDir: VQD: {} launch: - /VQD.exe: + "/VQD.exe": - when: - store: steam steam: @@ -600322,7 +601973,7 @@ VQD: VR - Killing Town: steam: id: 676060 -'VR Amazing Files: Horror Hospital': +"VR Amazing Files: Horror Hospital": installDir: VR Amazing Files Horror Hospital: {} steam: @@ -600477,7 +602128,7 @@ VR Formula: installDir: FormulaVR: {} launch: - /VRFormula.exe: + "/VRFormula.exe": - when: - os: windows store: steam @@ -600495,7 +602146,7 @@ VR Furballs - Demolition: id: 704470 VR Giants: files: - /../LocalLow/Risa Interactive/VR Giants/SaveGame: + "/../LocalLow/Risa Interactive/VR Giants/SaveGame": tags: - save when: @@ -600508,7 +602159,7 @@ VR GirlFriend: installDir: VR GirlFriend: {} launch: - /VR GirlFriend.exe: + "/VR GirlFriend.exe": - when: - os: windows store: steam @@ -600544,7 +602195,7 @@ VR Hybrid War 2117: VR Hybrid War 2117: {} steam: id: 741360 -'VR INTERACTIVE TRAILER: Runes': +"VR INTERACTIVE TRAILER: Runes": installDir: VR CINEMATIC TRAILER - Runes: {} steam: @@ -600584,7 +602235,7 @@ VR Katherine: installDir: VR Katherine: {} launch: - /VR Katherine.exe: + "/VR Katherine.exe": - when: - os: windows store: steam @@ -600599,7 +602250,7 @@ VR Mahjong Worlds: installDir: 3D Mahjong worlds: {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: @@ -600654,7 +602305,7 @@ VR PlayRoom: VR_PLAYROOM: {} steam: id: 771670 -'VR PlayRoom : Episode Beginning (Escape Room - Horror)': +"VR PlayRoom : Episode Beginning (Escape Room - Horror)": installDir: VR_PlayRoom Episode1(Escape Room - Horror): {} steam: @@ -600685,7 +602336,7 @@ VR Rhythm Action Seiya: VR RHYTHM ACTION SEIYA: {} steam: id: 757100 -'VR Roller Coaster: Cave Depths': +"VR Roller Coaster: Cave Depths": installDir: VR Roller Coaster - Cave Depths: {} steam: @@ -600724,13 +602375,13 @@ VR Slots: installDir: VR Slots: {} launch: - /bin/BelkaVR Slots.exe: + "/bin/BelkaVR Slots.exe": - when: - os: windows store: steam steam: id: 876340 -'VR Slugger: The Toy Field': +"VR Slugger: The Toy Field": installDir: VR Slugger: {} steam: @@ -600745,23 +602396,23 @@ VR Snowballs: VR Snowballs: {} steam: id: 574190 -VR Soccer '96: +"VR Soccer '96": gog: id: 1207658783 installDir: - VR Soccer '96: {} + "VR Soccer '96": {} launch: - /DOSBox/dosbox.app/Contents/MacOS/DOSBox: - - arguments: '-conf \"./dosboxVR99.conf\" -conf \"./dosboxVR99_single.conf\" -noconsole' + "/DOSBox/dosbox.app/Contents/MacOS/DOSBox": + - arguments: "-conf \\\"./dosboxVR99.conf\\\" -conf \\\"./dosboxVR99_single.conf\\\" -noconsole" when: - os: mac store: steam - /Launch_VR_Soccer_96.bat: + "/Launch_VR_Soccer_96.bat": - when: - os: windows store: steam - /dosbox/dosbox: - - arguments: '-conf \"./dosboxVR99.conf\" -conf \"./dosboxVR99_single.conf\" -noconsole' + "/dosbox/dosbox": + - arguments: "-conf \\\"./dosboxVR99.conf\\\" -conf \\\"./dosboxVR99_single.conf\\\" -noconsole" when: - os: linux store: steam @@ -600786,7 +602437,7 @@ VR Stock Car Racers: installDir: VRStockCarRacers: {} launch: - /VRStockCarRacers.exe: + "/VRStockCarRacers.exe": - when: - os: windows store: steam @@ -600826,27 +602477,27 @@ VR Triber: installDir: VR Triber: {} launch: - /vr triber.exe: + "/vr triber.exe": - when: - os: windows store: steam steam: id: 680170 -'VR Ultimate Paintball: Heartbreak, Regret & Paintbots': +"VR Ultimate Paintball: Heartbreak, Regret & Paintbots": installDir: VR Ultimate Paintball: {} steam: id: 511830 -'VR health care (aerobic exercise): VR sport and cycling in Maya gardens': +"VR health care (aerobic exercise): VR sport and cycling in Maya gardens": steam: id: 1050470 -'VR health care (head and neck exercise): Snake Fighting': +"VR health care (head and neck exercise): Snake Fighting": steam: id: 1046380 -'VR health care (running exercise): VR walking and running along beautiful seabeach and sakura forests': +"VR health care (running exercise): VR walking and running along beautiful seabeach and sakura forests": steam: id: 1072370 -'VR health care (shoulder joint exercise): Apple Grove Picking Games': +"VR health care (shoulder joint exercise): Apple Grove Picking Games": steam: id: 1044240 VR takibi: @@ -600864,12 +602515,12 @@ VR-Xterminator: VR-Xterminator: {} steam: id: 462670 -'VR0GU3: Unapologetic Hardcore VR Edition': +"VR0GU3: Unapologetic Hardcore VR Edition": installDir: VR0GU3: {} steam: id: 458190 -'VR2: Vacate 2 Rooms': +"VR2: Vacate 2 Rooms": installDir: VR2: {} steam: @@ -600878,23 +602529,23 @@ VR2Space: installDir: VR2Space: {} launch: - /VR2Space_SteamVR.exe: + "/VR2Space_SteamVR.exe": - when: - bit: 64 os: windows store: steam steam: id: 680560 -'VR: The Puzzle Room': +"VR: The Puzzle Room": installDir: VR The Puzzle Room: {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: id: 576620 -'VR: Vacate the Room': +"VR: Vacate the Room": installDir: VR Vacate the Room: {} steam: @@ -600908,7 +602559,7 @@ VRC PRO: installDir: Virtual RC Pro: {} launch: - /vrcpro.exe: + "/vrcpro.exe": - arguments: /steam when: - os: windows @@ -600917,17 +602568,17 @@ VRC PRO: id: 335070 VRChat: files: - /AppData/LocalLow/VRChat/VRChat/LocalAvatarData: + "/AppData/LocalLow/VRChat/VRChat/LocalAvatarData": tags: - save when: - os: windows - /AppData/LocalLow/VRChat/VRChat/LocalPlayerModerations: + "/AppData/LocalLow/VRChat/VRChat/LocalPlayerModerations": tags: - save when: - os: windows - /AppData/LocalLow/VRChat/VRChat/config.json: + "/AppData/LocalLow/VRChat/VRChat/config.json": tags: - config when: @@ -600935,8 +602586,8 @@ VRChat: installDir: VRChat: {} launch: - /VRChat.exe: - - arguments: '--no-vr' + "/VRChat.exe": + - arguments: "--no-vr" when: - os: windows store: steam @@ -600946,7 +602597,7 @@ VRChat: - config steam: id: 438100 -'VRGround: Crazy Farm': +"VRGround: Crazy Farm": installDir: VRGROUND Crazy Farm: {} steam: @@ -600963,13 +602614,13 @@ VRITRA COMPLETE EDITION: installDir: VRITRA COMPLETE EDITION: {} launch: - /windows_content/VritraCompleteEdition/VritraCompleteEdition.exe: + "/windows_content/VritraCompleteEdition/VritraCompleteEdition.exe": - when: - os: windows store: steam steam: id: 892830 -'VRLab Academy: Anatomy VR': +"VRLab Academy: Anatomy VR": installDir: VRLab Academy Anatomy VR: {} steam: @@ -600978,7 +602629,7 @@ VRLife: installDir: VRLife: {} launch: - /vrlife-test.exe: + "/vrlife-test.exe": - when: - bit: 64 os: windows @@ -600995,12 +602646,12 @@ VRNinja: VRNinja: {} steam: id: 509170 -'VROOM: Aerie': +"VROOM: Aerie": installDir: VROOM - Aerie: {} steam: id: 375190 -'VROOM: Galleon': +"VROOM: Galleon": installDir: VROOM - Galleon: {} steam: @@ -601053,7 +602704,7 @@ VRbloX: VRbloX: {} steam: id: 495310 -'VRchaeology: Prologue': +"VRchaeology: Prologue": installDir: VRchaeology: {} steam: @@ -601095,7 +602746,7 @@ VRetired: installDir: VRetired: {} launch: - /VRetiredLauncher.exe: + "/VRetiredLauncher.exe": - when: - bit: 64 os: windows @@ -601164,7 +602815,7 @@ VS Round 1: installDir: Versus_Round_1: {} launch: - /VSRound1.exe: + "/VSRound1.exe": - when: - os: windows store: steam @@ -601177,7 +602828,7 @@ VTB Basketball League VR: id: 1056710 VTOL VR: files: - '/Boundless Dynamics, LLC/VTOLVR/SaveData': + "/Boundless Dynamics, LLC/VTOLVR/SaveData": tags: - config - save @@ -601191,15 +602842,15 @@ VThree: installDir: VThree: {} launch: - /vthree.app: + "/vthree.app": - when: - os: mac store: steam - /vthree.exe: + "/vthree.exe": - when: - os: windows store: steam - /vthree.x86: + "/vthree.x86": - when: - os: linux store: steam @@ -601209,7 +602860,7 @@ VTree Beach Volleyball: installDir: VTree Beach Volleyball: {} launch: - /VTreeBeachVolleyball.exe: + "/VTreeBeachVolleyball.exe": - when: - os: windows store: steam @@ -601219,26 +602870,26 @@ VVVVV: installDir: VVVVV: {} launch: - /VVVVV.exe: + "/VVVVV.exe": - when: - store: steam steam: id: 1153250 VVVVVV: files: - /Library/Application Support/VVVVVV: + "/Library/Application Support/VVVVVV": tags: - config - save when: - os: mac - /VVVVVV: + "/VVVVVV": tags: - config - save when: - os: windows - /VVVVVV: + "/VVVVVV": tags: - config - save @@ -601249,15 +602900,15 @@ VVVVVV: installDir: vvvvvv: {} launch: - /VVVVVV: + "/VVVVVV": - when: - os: linux store: steam - /VVVVVV.app/Contents/MacOS/VVVVVV: + "/VVVVVV.app/Contents/MacOS/VVVVVV": - when: - os: mac store: steam - /vvvvvv.exe: + "/vvvvvv.exe": - when: - os: windows store: steam @@ -601267,61 +602918,61 @@ Vacant: installDir: Vacant: {} launch: - /Vacant.v.08.exe: + "/Vacant.v.08.exe": - when: - bit: 64 os: windows store: steam steam: id: 696190 -'Vacation Adventures: Cruise Director': +"Vacation Adventures: Cruise Director": installDir: Vacation Adventures Cruise Director: {} launch: - /cruiseDirector.exe: + "/cruiseDirector.exe": - when: - store: steam steam: id: 1017440 -'Vacation Adventures: Cruise Director 2': +"Vacation Adventures: Cruise Director 2": installDir: Vacation Adventures Cruise Director 2: {} launch: - /cruiseDirector2.exe: + "/cruiseDirector2.exe": - when: - store: steam steam: id: 1069720 -'Vacation Adventures: Park Ranger': +"Vacation Adventures: Park Ranger": installDir: Vacation Adventures Park Ranger: {} launch: - /parkRanger.exe: + "/parkRanger.exe": - when: - store: steam steam: id: 1003670 -'Vacation Adventures: Park Ranger 2': +"Vacation Adventures: Park Ranger 2": installDir: Vacation Adventures Park Ranger 2: {} launch: - /parkRanger2.exe: + "/parkRanger2.exe": - when: - store: steam steam: id: 1048420 -'Vacation Adventures: Park Ranger 3': +"Vacation Adventures: Park Ranger 3": installDir: Vacation Adventures Park Ranger 3: {} launch: - /parkRanger3.exe: + "/parkRanger3.exe": - when: - store: steam steam: id: 1104840 Vacation Simulator: files: - /AppData/LocalLow/Owlchemy Labs/Vacation Simulator/User: + "/AppData/LocalLow/Owlchemy Labs/Vacation Simulator/User": tags: - save when: @@ -601334,20 +602985,20 @@ Vaccine: installDir: Vaccine: {} launch: - /VACCINE.exe: + "/VACCINE.exe": - when: - os: windows store: steam - /Vaccine.app/Contents/MacOS/Vaccine: + "/Vaccine.app/Contents/MacOS/Vaccine": - when: - os: mac store: steam - /Vaccine.x86: + "/Vaccine.x86": - when: - bit: 32 os: linux store: steam - /Vaccine.x86_64: + "/Vaccine.x86_64": - when: - bit: 64 os: linux @@ -601358,16 +603009,16 @@ Vaccine War: installDir: Vaccine War: {} launch: - /VaccineWar.app/Contents/MacOS/VaccineWar: + "/VaccineWar.app/Contents/MacOS/VaccineWar": - when: - bit: 64 os: mac store: steam - /VaccineWar.x86: + "/VaccineWar.x86": - when: - os: linux store: steam - /VaccineWar_steam1/VaccineWar.exe: + "/VaccineWar_steam1/VaccineWar.exe": - when: - bit: 64 os: windows @@ -601376,20 +603027,20 @@ Vaccine War: id: 453350 Vader Immortal: files: - /WKND/Saved/SaveGames: + "/WKND/Saved/SaveGames": tags: - save when: - os: windows -'Vadine: Bite-Man': +"Vadine: Bite-Man": installDir: VadineBiteMan: {} launch: - /Vadine_Bite_Man.app/Contents/MacOS/Vadine_Bite_Man: + "/Vadine_Bite_Man.app/Contents/MacOS/Vadine_Bite_Man": - when: - os: mac store: steam - /game.exe: + "/game.exe": - when: - bit: 64 os: windows @@ -601398,19 +603049,19 @@ Vader Immortal: id: 830390 Vagabond: files: - /Vagabond/saves: + "/Vagabond/saves": tags: - save when: - os: windows - /Vagabond/userconfig.cfg: + "/Vagabond/userconfig.cfg": tags: - config when: - os: windows Vagante: files: - /config: + "/config": tags: - config when: @@ -601418,7 +603069,7 @@ Vagante: installDir: vagante: {} launch: - /vagante.exe: + "/vagante.exe": - when: - store: steam steam: @@ -601427,7 +603078,7 @@ Vagrant Fury: installDir: VagrantFury: {} launch: - /VagrantFury.exe: + "/VagrantFury.exe": - when: - os: windows store: steam @@ -601437,7 +603088,7 @@ Vagrant Hearts: installDir: Vagrant Hearts: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -601447,7 +603098,7 @@ Vagrant Hearts 2: installDir: Vagrant Hearts 2: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -601457,24 +603108,24 @@ Vagrant Hearts Zero: installDir: Vagrant Hearts Zero: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: id: 615680 Vagrus - The Riven Realms: files: - /.config/unity3d/Lost Pilgrims Studio/Vagrus/Data/Vanilla/SaveGame: + "/.config/unity3d/Lost Pilgrims Studio/Vagrus/Data/Vanilla/SaveGame": tags: - save when: - os: linux - /AppData/LocalLow/Lost Pilgrims Studio/Vagrus/Data/Vanilla/SaveGame: + "/AppData/LocalLow/Lost Pilgrims Studio/Vagrus/Data/Vanilla/SaveGame": tags: - save when: - os: windows - /Library/Application Support/Lost Pilgrims Studio/Vagrus/Data/Vanilla/SaveGame: + "/Library/Application Support/Lost Pilgrims Studio/Vagrus/Data/Vanilla/SaveGame": tags: - save when: @@ -601484,16 +603135,16 @@ Vagrus - The Riven Realms: installDir: Vagrus - The Riven Realms: {} launch: - /Vagrus.app: + "/Vagrus.app": - when: - os: mac store: steam - /Vagrus.exe: + "/Vagrus.exe": - when: - bit: 64 os: windows store: steam - /Vagrus.x86_64: + "/Vagrus.x86_64": - when: - bit: 64 os: linux @@ -601514,22 +603165,22 @@ Vainglory: installDir: Vainglory: {} launch: - /Vainglory.app/Contents/MacOS/GameKindred: + "/Vainglory.app/Contents/MacOS/GameKindred": - when: - os: mac store: steam - /Vainglory.exe: + "/Vainglory.exe": - when: - os: windows store: steam steam: id: 1025580 -Vairon's Wrath: +"Vairon's Wrath": installDir: - Vairon's Wrath: {} + "Vairon's Wrath": {} launch: - /Game.exe: - - arguments: '-gl' + "/Game.exe": + - arguments: "-gl" when: - os: windows store: steam @@ -601539,30 +603190,30 @@ Valakas Story: installDir: Valakas Story: {} launch: - /Valakas_Story.exe: + "/Valakas_Story.exe": - when: - os: windows store: steam steam: id: 1171310 -'Valcarta: Rise of the Demon': +"Valcarta: Rise of the Demon": installDir: Valcarta Rise of the Demon: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam steam: id: 488220 -'Valdis Story: Abyssal City': +"Valdis Story: Abyssal City": files: - /Valdis_Story_AC: + "/Valdis_Story_AC": tags: - save when: - os: windows - /Valdis_Story_AC/vs_settings.ini: + "/Valdis_Story_AC/vs_settings.ini": tags: - config when: @@ -601572,11 +603223,11 @@ Valakas Story: installDir: ValdisStoryAbyssalCity: {} launch: - /VSAC.app: + "/VSAC.app": - when: - os: mac store: steam - /Valdis_Story_AC.exe: + "/Valdis_Story_AC.exe": - when: - os: windows store: steam @@ -601586,18 +603237,18 @@ ValeGuard: installDir: ValeGuard: {} launch: - /ValeGuard.exe: - - arguments: '-windowed' + "/ValeGuard.exe": + - arguments: "-windowed" when: - os: windows store: steam steam: id: 788700 -'Valencia Saga: Sophia''s Rebirth': +"Valencia Saga: Sophia's Rebirth": installDir: - Valencia SagaSophia's rebirth: {} + "Valencia SagaSophia's rebirth": {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -601607,20 +603258,23 @@ Valens: installDir: VALENS: {} launch: - /VALENS.app: + "/VALENS.app": - when: - os: mac store: steam - /VALENS.exe: + "/VALENS.exe": - when: - os: windows store: steam - /VALENS.x86: + - bit: 64 + os: windows + store: steam + "/VALENS.x86": - when: - bit: 32 os: linux store: steam - /VALENS.x86_64: + "/VALENS.x86_64": - when: - bit: 64 os: linux @@ -601631,21 +603285,23 @@ Valentine Panic: installDir: Valentine Panic: {} launch: - /ValentinePanic.exe: + "/ValentinePanic.exe": - when: - os: windows store: steam - /ValentinePanic.sh: + "/ValentinePanic.sh": - when: - os: mac store: steam + - os: linux + store: steam steam: id: 658060 Valentines Cafe: installDir: Valentines Cafe: {} launch: - /vv_proj.exe: + "/vv_proj.exe": - when: - os: windows store: steam @@ -601655,7 +603311,7 @@ Valentines Desire - Steam Edition: installDir: Valentines Desire - Steam Edition: {} launch: - /ValentinesDesire.exe: + "/ValentinesDesire.exe": - when: - store: steam steam: @@ -601664,24 +603320,24 @@ Valentino Rossi The Game Compact: installDir: Valentino Rossi The Game Compact: {} launch: - /MotoGPVR46.exe: + "/MotoGPVR46.exe": - when: - bit: 32 store: steam - /MotoGPVR46X64.exe: + "/MotoGPVR46X64.exe": - when: - bit: 64 store: steam steam: id: 505120 -'Valentino Rossi: The Game - MotoGP 16': +"Valentino Rossi: The Game - MotoGP 16": files: - /Milestone/MotoGPVR46/Config.ini: + "/Milestone/MotoGPVR46/Config.ini": tags: - config when: - os: windows - /Milestone/MotoGPVR46/Saves: + "/Milestone/MotoGPVR46/Saves": tags: - save when: @@ -601689,11 +603345,11 @@ Valentino Rossi The Game Compact: installDir: Valentino Rossi The Game: {} launch: - /MotoGPVR46.exe: + "/MotoGPVR46.exe": - when: - bit: 32 store: steam - /MotoGPVR46X64.exe: + "/MotoGPVR46X64.exe": - when: - bit: 64 store: steam @@ -601703,7 +603359,7 @@ Valerian Tales: installDir: ValerianTales: {} launch: - /Valerian Tales.exe: + "/Valerian Tales.exe": - when: - os: windows store: steam @@ -601713,11 +603369,11 @@ Valerie Porter and the Scarlet Scandal: installDir: Valerie Porter: {} launch: - /Valerie Porter and the Scarlet Scandal.app: + "/Valerie Porter and the Scarlet Scandal.app": - when: - os: mac store: steam - /valerie-porter-scarlet-scandal.exe: + "/valerie-porter-scarlet-scandal.exe": - when: - os: windows store: steam @@ -601725,22 +603381,22 @@ Valerie Porter and the Scarlet Scandal: id: 37380 Valfaris: files: - /AppData/LocalLow/Steel Mantis/Valfaris/Valfaris_Controls.dat: + "/AppData/LocalLow/Steel Mantis/Valfaris/Valfaris_Controls.dat": tags: - config when: - os: windows - /AppData/LocalLow/Steel Mantis/Valfaris/Valfaris_Progress.dat: + "/AppData/LocalLow/Steel Mantis/Valfaris/Valfaris_Progress.dat": tags: - save when: - os: windows - /AppData/LocalLow/Steel Mantis/Valfaris/Valfaris_Settings.dat: + "/AppData/LocalLow/Steel Mantis/Valfaris/Valfaris_Settings.dat": tags: - config when: - os: windows - /AppData/LocalLow/Steel Mantis/Valfaris/Valfaris_Slot_*.dat: + "/AppData/LocalLow/Steel Mantis/Valfaris/Valfaris_Slot_*.dat": tags: - save when: @@ -601750,7 +603406,7 @@ Valfaris: installDir: Valfaris: {} launch: - /Valfaris.exe: + "/Valfaris.exe": - when: - os: windows store: steam @@ -601760,11 +603416,11 @@ Valfaris: - config steam: id: 600130 -'Valgrave: Immortal Plains': +"Valgrave: Immortal Plains": installDir: Valgrave Immortal Plains: {} launch: - /BattleRoyale.exe: + "/BattleRoyale.exe": - when: - os: windows store: steam @@ -601774,18 +603430,24 @@ Valhall 2000: installDir: Valhall 2000: {} launch: - /Valhall 2000.app: + "/Valhall 2000.app": - when: - os: mac store: steam - /Valhall 2000.exe: + "/Valhall 2000.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam - /jre/bin/java: - - arguments: '-jar valhall.jar' + "/jre/bin/java": + - arguments: "-jar valhall.jar" when: + - bit: 32 + os: linux + store: steam - bit: 64 os: linux store: steam @@ -601793,24 +603455,24 @@ Valhall 2000: id: 661270 Valhalla Chronicles: files: - /Savegames/*.sav: + "/Savegames/*.sav": tags: - save when: - os: windows Valhalla Hills: files: - /.config/Epic/ValhallaHills: + "/.config/Epic/ValhallaHills": tags: - save when: - os: linux - /ValhallaHills/Saved/Config: + "/ValhallaHills/Saved/Config": tags: - config when: - os: windows - /ValhallaHills/Saved/SaveGames: + "/ValhallaHills/Saved/SaveGames": tags: - save when: @@ -601820,15 +603482,15 @@ Valhalla Hills: installDir: ValhallaHills: {} launch: - /ValhallaHills.app: + "/ValhallaHills.app": - when: - os: mac store: steam - /ValhallaHills.exe: + "/ValhallaHills.exe": - when: - os: windows store: steam - /ValhallaHills/Binaries/Linux/ValhallaHills-Linux-Shipping: + "/ValhallaHills/Binaries/Linux/ValhallaHills-Linux-Shipping": - when: - os: linux store: steam @@ -601836,17 +603498,17 @@ Valhalla Hills: id: 351910 Valheim: files: - /AppData/LocalLow/IronGate/Valheim: + "/AppData/LocalLow/IronGate/Valheim": tags: - save when: - os: windows - /unity3d/IronGate/Valheim: + "/unity3d/IronGate/Valheim": tags: - save when: - os: linux - /unity3d/IronGate/Valheim/prefs: + "/unity3d/IronGate/Valheim/prefs": tags: - config when: @@ -601854,16 +603516,16 @@ Valheim: installDir: Valheim: {} launch: - /valheim.app: + "/valheim.app": - when: - os: mac store: steam - /valheim.exe: + "/valheim.exe": - when: - bit: 64 os: windows store: steam - /valheim.x86_64: + "/valheim.x86_64": - when: - bit: 64 os: linux @@ -601879,21 +603541,21 @@ Valiant: Valiant: {} steam: id: 344180 -'Valiant Hearts: The Great War': +"Valiant Hearts: The Great War": files: - /savegames//659: + "/savegames//659": tags: - save when: - os: windows store: uplay - /savegames//661: + "/savegames//661": tags: - save when: - os: windows store: uplay - /ValiantHearts/options: + "/ValiantHearts/options": tags: - config when: @@ -601901,32 +603563,32 @@ Valiant: installDir: Valiant Hearts: {} launch: - /Valiant Hearts.exe: - - arguments: '-uplay_steam_mode' + "/Valiant Hearts.exe": + - arguments: "-uplay_steam_mode" when: - os: windows store: steam steam: id: 260230 -'Valiant Knights: Typing Battle': +"Valiant Knights: Typing Battle": installDir: VALIANT KNIGHTS Typing Battle: {} launch: - /VALIANT_KNIGHTS_Typing_Battle.app: + "/VALIANT_KNIGHTS_Typing_Battle.app": - when: - os: mac store: steam - /VALIANT_KNIGHTS_Typing_Battle.exe: + "/VALIANT_KNIGHTS_Typing_Battle.exe": - when: - os: windows store: steam steam: id: 612810 -'Valiant: Resurrection': +"Valiant: Resurrection": installDir: Valiant Resurrection: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -601936,7 +603598,7 @@ Valknut: installDir: Valknut: {} launch: - /Valknut.exe: + "/Valknut.exe": - when: - os: windows store: steam @@ -601944,23 +603606,23 @@ Valknut: id: 720040 Valkyria Chronicles: files: - /*.xml: + "/*.xml": tags: - config when: - store: steam - /savedata/: + "/savedata/": tags: - save when: - store: steam - /SEGA/Valkyria Chronicles: + "/SEGA/Valkyria Chronicles": tags: - config when: - os: windows store: microsoft - /SEGA/Valkyria Chronicles/savedata: + "/SEGA/Valkyria Chronicles/savedata": tags: - save when: @@ -601969,8 +603631,8 @@ Valkyria Chronicles: installDir: Valkyria Chronicles: {} launch: - /Launcher.exe: - - arguments: '-bootgame' + "/Launcher.exe": + - arguments: "-bootgame" when: - os: windows store: steam @@ -601981,12 +603643,12 @@ Valkyria Chronicles: id: 294860 Valkyria Chronicles 4: files: - /SEGA/VC4: + "/SEGA/VC4": tags: - config when: - os: windows - /SEGA/VC4/gamesaves: + "/SEGA/VC4/gamesaves": tags: - save when: @@ -601994,7 +603656,7 @@ Valkyria Chronicles 4: installDir: VC4: {} launch: - /Valkyria4_x64.exe: + "/Valkyria4_x64.exe": - when: - os: windows store: steam @@ -602009,7 +603671,7 @@ Valkyrie Connect: installDir: ValkyrieConnectWW: {} launch: - /ValkyrieConnect.exe: + "/ValkyrieConnect.exe": - when: - bit: 64 os: windows @@ -602020,9 +603682,9 @@ Valkyrie Connect: - config steam: id: 1222800 -'Valkyrie Drive: Bhikkhuni': +"Valkyrie Drive: Bhikkhuni": files: - /DeploymentRoot/savedata: + "/DeploymentRoot/savedata": tags: - save when: @@ -602030,7 +603692,7 @@ Valkyrie Connect: installDir: Valkyrie Drive: {} launch: - /DeploymentRoot/VD_BHIKKHUNI.exe: + "/DeploymentRoot/VD_BHIKKHUNI.exe": - when: - os: windows store: steam @@ -602038,12 +603700,12 @@ Valkyrie Connect: id: 550080 Valkyrie Elysium: files: - /My Games/VALKYRIE ELYSIUM/Steam/: + "/My Games/VALKYRIE ELYSIUM/Steam/": tags: - save when: - os: windows - /VALKYRIE_ELYSIUM/Saved/Config/WindowsNoEditor: + "/VALKYRIE_ELYSIUM/Saved/Config/WindowsNoEditor": tags: - config when: @@ -602051,19 +603713,19 @@ Valkyrie Elysium: installDir: VALKYRIE ELYSIUM: {} launch: - /VALKYRIE ELYSIUM.exe: + "/VALKYRIE ELYSIUM.exe": - when: - store: steam steam: id: 1963210 Valkyrius Prime: files: - /SavedGames/Valkyrius Prime/Valkyrius Prime Data/Player*/settings.sav: + "/SavedGames/Valkyrius Prime/Valkyrius Prime Data/Player*/settings.sav": tags: - config when: - os: windows - /SavedGames/Valkyrius Prime/Valkyrius Prime Data/Player*/unlocks.sav: + "/SavedGames/Valkyrius Prime/Valkyrius Prime Data/Player*/unlocks.sav": tags: - save when: @@ -602071,7 +603733,7 @@ Valkyrius Prime: installDir: Valkyrius Prime: {} launch: - /Valkyrius Prime.exe: + "/Valkyrius Prime.exe": - when: - os: windows store: steam @@ -602079,7 +603741,7 @@ Valkyrius Prime: id: 493670 Valley: files: - /userdata//378610/remote: + "/userdata//378610/remote": tags: - save when: @@ -602088,16 +603750,16 @@ Valley: installDir: Valley: {} launch: - /Valley.app: + "/Valley.app": - when: - os: mac store: steam - /Valley.exe: + "/Valley.exe": - when: - os: windows store: steam - /Valley.x86_64: - - arguments: '-force-opengl' + "/Valley.x86_64": + - arguments: "-force-opengl" when: - os: linux store: steam @@ -602116,7 +603778,7 @@ Valley of Decay: installDir: Valley of Decay: {} launch: - /VoDClient_v1.16c.exe: + "/VoDClient_v1.16c.exe": - when: - os: windows store: steam @@ -602129,7 +603791,7 @@ Valley of the Moon: installDir: Valley Of The Moon: {} launch: - /valleyofthemoon.exe: + "/valleyofthemoon.exe": - when: - os: windows store: steam @@ -602139,7 +603801,7 @@ Valnir Rok: installDir: Valnir Rok: {} launch: - /Valnir Rok.exe: + "/Valnir Rok.exe": - when: - bit: 64 os: windows @@ -602150,7 +603812,7 @@ Valor & Victory: installDir: Valor and Victory: {} launch: - /Launcher.exe: + "/Launcher.exe": - when: - os: windows store: steam @@ -602160,8 +603822,8 @@ Valor Time: installDir: Valor Time: {} launch: - /ValorTime.exe: - - arguments: '-steam' + "/ValorTime.exe": + - arguments: "-steam" when: - os: windows store: steam @@ -602169,7 +603831,7 @@ Valor Time: id: 890820 Valorant: files: - /VALORANT/Saved/Config: + "/VALORANT/Saved/Config": tags: - config when: @@ -602177,11 +603839,11 @@ Valorant: Valortha: steam: id: 585680 -'Valthirian Arc: Hero School Story': +"Valthirian Arc: Hero School Story": installDir: Valthirian Arc: {} launch: - /VAHSS.exe: + "/VAHSS.exe": - when: - bit: 64 os: windows @@ -602192,30 +603854,30 @@ Valzar: installDir: Valzar: {} launch: - /Valzar.exe: + "/Valzar.exe": - when: - os: windows store: steam steam: id: 405810 -'Vambrace: Cold Soul': +"Vambrace: Cold Soul": files: - /.config/unity3d/DevespressoGames/VambraceColdSoul: + "/.config/unity3d/DevespressoGames/VambraceColdSoul": tags: - config when: - os: linux - /.config/unity3d/DevespressoGames/VambraceColdSoul/Vambrace.save: + "/.config/unity3d/DevespressoGames/VambraceColdSoul/Vambrace.save": tags: - save when: - os: linux - /AppData/LocalLow/DevespressoGames/VambraceColdSoul/Vambrace.save: + "/AppData/LocalLow/DevespressoGames/VambraceColdSoul/Vambrace.save": tags: - save when: - os: windows - /Packages/ChorusWorldwideGames.VambraceColdSoul_3e08f9hn67c02/SystemAppData/wgs/: + "/Packages/ChorusWorldwideGames.VambraceColdSoul_3e08f9hn67c02/SystemAppData/wgs/": tags: - save when: @@ -602226,16 +603888,16 @@ Valzar: installDir: Vambrace Cold Soul: {} launch: - /VambraceColdSoul.app/Contents/MacOS/VambraceColdSoul: + "/VambraceColdSoul.app/Contents/MacOS/VambraceColdSoul": - when: - os: mac store: steam - /VambraceColdSoul.exe: + "/VambraceColdSoul.exe": - when: - bit: 64 os: windows store: steam - /VambraceColdSoul.x86_64: + "/VambraceColdSoul.x86_64": - when: - os: linux store: steam @@ -602245,15 +603907,15 @@ Valzar: - config steam: id: 904380 -'Vampire & Monsters: Hidden Object Games': +"Vampire & Monsters: Hidden Object Games": installDir: Vampire & Monsters Hidden Object Games: {} launch: - /Vampire & Monsters.exe: + "/Vampire & Monsters.exe": - when: - os: windows store: steam - /Vampire and Monsters.app: + "/Vampire and Monsters.app": - when: - os: mac store: steam @@ -602263,49 +603925,49 @@ Vampire Bloody Star X: installDir: vbs-x: {} launch: - /vbsx2.exe: + "/vbsx2.exe": - when: - os: windows store: steam steam: id: 964220 -'Vampire Legends: The True Story of Kisilova': +"Vampire Legends: The True Story of Kisilova": installDir: Vampire Legends: {} launch: - /VampireLegends.exe: + "/VampireLegends.exe": - when: - os: windows store: steam - /VampireLegends_amd64: + "/VampireLegends_amd64": - when: - bit: 64 os: linux store: steam - /VampireLegends_i386: + "/VampireLegends_i386": - when: - bit: 32 os: linux store: steam - /mac_steam.app/Contents/MacOS/mac_steam: + "/mac_steam.app/Contents/MacOS/mac_steam": - when: - os: mac store: steam steam: id: 414660 -'Vampire Slave 1: A Yaoi Visual Novel': +"Vampire Slave 1: A Yaoi Visual Novel": installDir: Vampire Slave 1: {} launch: - /VampireSlave1.app: + "/VampireSlave1.app": - when: - os: mac store: steam - /VampireSlave1.exe: + "/VampireSlave1.exe": - when: - os: windows store: steam - /VampireSlave1.sh: + "/VampireSlave1.sh": - when: - os: linux store: steam @@ -602313,18 +603975,18 @@ Vampire Bloody Star X: id: 1658830 Vampire Survivors: files: - /userdata//1794680/remote/SaveData: + "/userdata//1794680/remote/SaveData": tags: - save when: - os: windows store: steam - /Vampire_Survivors/saves: + "/Vampire_Survivors/saves": tags: - save when: - os: windows - /Vampire_Survivors_/SaveData.sav: + "/Vampire_Survivors_/SaveData.sav": tags: - save when: @@ -602336,15 +603998,15 @@ Vampire Survivors: installDir: Vampire Survivors: {} launch: - /VampireSurvivors.exe: + "/VampireSurvivors.exe": - when: - os: windows store: steam - /Vampire_Survivors.app: + "/Vampire_Survivors.app": - when: - os: mac store: steam - /launcher.sh: + "/launcher.sh": - when: - os: linux store: steam @@ -602358,19 +604020,19 @@ Vampire of the Sands: installDir: Vampire of the Sands: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam - /game.sh: + "/game.sh": - when: - os: linux store: steam steam: id: 386160 -'Vampire''s Fall: Origins': +"Vampire's Fall: Origins": files: - /AppData/LocalLow/Early Morning Studio/Vampire's Fall_ Origins: + "/AppData/LocalLow/Early Morning Studio/Vampire's Fall_ Origins": tags: - save when: @@ -602378,21 +604040,21 @@ Vampire of the Sands: gog: id: 1722265430 installDir: - Vampire's Fall Origins: {} + "Vampire's Fall Origins": {} launch: - /Vampire's Fall Origins.exe: + "/Vampire's Fall Origins.exe": - when: - os: windows store: steam registry: - 'HKEY_CURRENT_USER/Software/Early Morning Studio/Vampire''s Fall: Origins': + "HKEY_CURRENT_USER/Software/Early Morning Studio/Vampire's Fall: Origins": tags: - config steam: id: 1167950 -'Vampire: The Masquerade - Bloodhunt': +"Vampire: The Masquerade - Bloodhunt": files: - /Tiger/Saved/Config/WindowsNoEditor: + "/Tiger/Saved/Config/WindowsNoEditor": tags: - config when: @@ -602400,24 +604062,24 @@ Vampire of the Sands: installDir: Bloodhunt: {} launch: - /Tiger.exe: + "/Tiger.exe": - when: - store: steam steam: id: 760160 -'Vampire: The Masquerade - Bloodlines': +"Vampire: The Masquerade - Bloodlines": files: - /Unofficial_Patch/Vampire/save: + "/Unofficial_Patch/Vampire/save": tags: - save when: - os: windows - /Vampire/cfg: + "/Vampire/cfg": tags: - config when: - os: windows - /Vampire/save: + "/Vampire/save": tags: - save when: @@ -602427,7 +604089,7 @@ Vampire of the Sands: installDir: Vampire The Masquerade - Bloodlines: {} launch: - /vampire.exe: + "/vampire.exe": - when: - store: steam registry: @@ -602436,7 +604098,7 @@ Vampire of the Sands: - config steam: id: 2600 -'Vampire: The Masquerade - Bloodlines 2': +"Vampire: The Masquerade - Bloodlines 2": gog: id: 1308733567 id: @@ -602445,14 +604107,14 @@ Vampire of the Sands: - 1851649095 steam: id: 532790 -'Vampire: The Masquerade - Coteries of New York': +"Vampire: The Masquerade - Coteries of New York": files: - /AppData/LocalLow/DrawDistance/VtM Coteries of New York/Saves: + "/AppData/LocalLow/DrawDistance/VtM Coteries of New York/Saves": tags: - save when: - os: windows - /AppData/LocalLow/DrawDistance/VtM Coteries of New York/Saves/Settings.save: + "/AppData/LocalLow/DrawDistance/VtM Coteries of New York/Saves/Settings.save": tags: - config when: @@ -602462,16 +604124,16 @@ Vampire of the Sands: installDir: Vampire The Masquerade - Coteries of New York: {} launch: - /VtM Coteries of New York.exe: + "/VtM Coteries of New York.exe": - when: - bit: 64 os: windows store: steam - /VtM Coteries of New York.x86_64: + "/VtM Coteries of New York.x86_64": - when: - os: linux store: steam - /VtmCony.app/Contents/MacOS/VtM Coteries of New York: + "/VtmCony.app/Contents/MacOS/VtM Coteries of New York": - when: - os: mac store: steam @@ -602481,9 +604143,9 @@ Vampire of the Sands: - config steam: id: 1096410 -'Vampire: The Masquerade - Night Road': +"Vampire: The Masquerade - Night Road": files: - /userdata//1290270/remote: + "/userdata//1290270/remote": tags: - config when: @@ -602492,64 +604154,64 @@ Vampire of the Sands: installDir: Vampire The Masquerade — Night Road: {} launch: - /Night Road.app/Contents/MacOS/Night Road: + "/Night Road.app/Contents/MacOS/Night Road": - when: - os: mac store: steam - /NightRoad: + "/NightRoad": - when: - os: linux store: steam - /NightRoad.exe: + "/NightRoad.exe": - when: - os: windows store: steam steam: id: 1290270 -'Vampire: The Masquerade - Out for Blood': +"Vampire: The Masquerade - Out for Blood": installDir: Vampire The Masquerade — Out for Blood: {} launch: - /Out for Blood.app/Contents/MacOS/Out for Blood: + "/Out for Blood.app/Contents/MacOS/Out for Blood": - when: - os: mac store: steam - /OutForBlood: + "/OutForBlood": - when: - os: linux store: steam - /OutForBlood.exe: + "/OutForBlood.exe": - when: - os: windows store: steam steam: id: 1290350 -'Vampire: The Masquerade - Parliament of Knives': +"Vampire: The Masquerade - Parliament of Knives": installDir: Vampire The Masquerade — Parliament of Knives: {} launch: - /Parliament of Knives.app/Contents/MacOS/Parliament of Knives: + "/Parliament of Knives.app/Contents/MacOS/Parliament of Knives": - when: - os: mac store: steam - /ParliamentOfKnives: + "/ParliamentOfKnives": - when: - os: linux store: steam - /ParliamentOfKnives.exe: + "/ParliamentOfKnives.exe": - when: - os: windows store: steam steam: id: 1266100 -'Vampire: The Masquerade - Redemption': +"Vampire: The Masquerade - Redemption": files: - /SaveGames: + "/SaveGames": tags: - save when: - os: windows - /masquerade.ini: + "/masquerade.ini": tags: - config when: @@ -602559,19 +604221,19 @@ Vampire of the Sands: installDir: Vampire The Masquerade - Redemption: {} launch: - /Vampire.exe: + "/Vampire.exe": - when: - store: steam steam: id: 559680 -'Vampire: The Masquerade - Shadows of New York': +"Vampire: The Masquerade - Shadows of New York": files: - /AppData/LocalLow/DrawDistance/VtM Shadows of New York/Saves: + "/AppData/LocalLow/DrawDistance/VtM Shadows of New York/Saves": tags: - save when: - os: windows - /AppData/LocalLow/DrawDistance/VtM Shadows of New York/Saves/Settings.save: + "/AppData/LocalLow/DrawDistance/VtM Shadows of New York/Saves/Settings.save": tags: - config when: @@ -602581,17 +604243,17 @@ Vampire of the Sands: installDir: Vampire The Masquerade - Shadows of New York: {} launch: - /Vampire the Masquerade - Shadows of New York.x86_64: + "/Vampire the Masquerade - Shadows of New York.x86_64": - when: - bit: 64 os: linux store: steam - /VtM Shadows of New York.exe: + "/VtM Shadows of New York.exe": - when: - bit: 64 os: windows store: steam - /VtmSony.app/Contents/MacOS/VtM Shadows of New York: + "/VtmSony.app/Contents/MacOS/VtM Shadows of New York": - when: - os: mac store: steam @@ -602601,14 +604263,14 @@ Vampire of the Sands: - config steam: id: 1279630 -'Vampire: The Masquerade - Swansong': +"Vampire: The Masquerade - Swansong": files: - /Vampire/Saved/Config/WindowsNoEditor: + "/Vampire/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /Vampire/Saved/SaveGames: + "/Vampire/Saved/SaveGames": tags: - save when: @@ -602616,22 +604278,22 @@ Vampire of the Sands: installDir: VTMS: {} launch: - /Swansong.exe: - - arguments: '-SaveToUserDir' + "/Swansong.exe": + - arguments: "-SaveToUserDir" when: - bit: 64 os: windows store: steam steam: id: 1299510 -'Vampires Dawn 3: The Crimson Realm': +"Vampires Dawn 3: The Crimson Realm": gog: id: 1162270529 installDir: Vampires Dawn 3: {} launch: - /Game.exe: - - arguments: '--in-process-gpu' + "/Game.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam @@ -602641,70 +604303,70 @@ Vampires!: installDir: Vampires!: {} launch: - /The Vampires.app/Contents/MacOS/The Vampires: + "/The Vampires.app/Contents/MacOS/The Vampires": - when: - os: mac store: steam - /The Vampires.exe: + "/The Vampires.exe": - when: - os: windows store: steam - /The Vampires.x86: + "/The Vampires.x86": - when: - os: linux store: steam steam: id: 713050 -Vampires' Melody: +"Vampires' Melody": installDir: VampiresMelody: {} launch: - /VampiresMelody.app/Contents/MacOS/VampiresMelody: + "/VampiresMelody.app/Contents/MacOS/VampiresMelody": - when: - os: mac store: steam - /VampiresMelody.exe: + "/VampiresMelody.exe": - when: - os: windows store: steam steam: id: 1377360 -'Vampires: Guide Them to Safety!': +"Vampires: Guide Them to Safety!": installDir: Vampires Guide Them to Safety: {} launch: - /Vampires.app/Contents/MacOS/Vampires: + "/Vampires.app/Contents/MacOS/Vampires": - when: - os: mac store: steam - /vampires.exe: + "/vampires.exe": - when: - os: windows store: steam steam: id: 328780 -Vampirina's Nails: +"Vampirina's Nails": steam: id: 903200 Vampyr: files: - /AVGame/Saved/Config/WindowsNoEditor: + "/AVGame/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /AVGame/Saved/SaveGames: + "/AVGame/Saved/SaveGames": tags: - save when: - os: windows - /Packages/FocusHomeInteractiveSA.VAMPYR_4hny5m903y3g0/LocalCache/Local/AVGame/Saved/Config/WindowsNoEditor: + "/Packages/FocusHomeInteractiveSA.VAMPYR_4hny5m903y3g0/LocalCache/Local/AVGame/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows store: microsoft - /Packages/FocusHomeInteractiveSA.VAMPYR_4hny5m903y3g0/LocalCache/Local/AVGame/Saved/SaveGames: + "/Packages/FocusHomeInteractiveSA.VAMPYR_4hny5m903y3g0/LocalCache/Local/AVGame/Saved/SaveGames": tags: - save when: @@ -602720,17 +604382,17 @@ Vampyr: installDir: Vampyr: {} launch: - /AVGame/Binaries/Win64/AVGame-Win64-Shipping.exe: + "/AVGame/Binaries/Win64/AVGame-Win64-Shipping.exe": - when: - bit: 64 os: windows store: steam - workingDir: /AVGame/Binaries/Win64 + workingDir: "/AVGame/Binaries/Win64" steam: id: 427290 -'Vampyr: Talisman of Invocation': +"Vampyr: Talisman of Invocation": files: - /PLAYER.SAV: + "/PLAYER.SAV": tags: - save when: @@ -602741,7 +604403,7 @@ Vanaris Tactics: installDir: Vanaris: {} launch: - /Vanaris.exe: + "/Vanaris.exe": - when: - os: windows store: steam @@ -602749,7 +604411,7 @@ Vanaris Tactics: id: 1599860 Vancouver 2010: files: - /My Games/SEGA/Vancouver 2010: + "/My Games/SEGA/Vancouver 2010": tags: - save when: @@ -602757,19 +604419,19 @@ Vancouver 2010: installDir: Vancouver 2010 The Official Video Game of the Olympic Winter Games: {} launch: - /Vancouver_.exe: + "/Vancouver_.exe": - when: - store: steam steam: id: 34180 Vandals: files: - /AppData/LocalLow/Arte/Vandals/Save: + "/AppData/LocalLow/Arte/Vandals/Save": tags: - save when: - os: windows - /Library/Application Support/unity.Arte.Vandals/Save: + "/Library/Application Support/unity.Arte.Vandals/Save": tags: - save when: @@ -602777,11 +604439,11 @@ Vandals: installDir: Vandals: {} launch: - /Vandals.app/Contents/MacOS/Vandals: + "/Vandals.app/Contents/MacOS/Vandals": - when: - os: mac store: steam - /Vandals.exe: + "/Vandals.exe": - when: - os: windows store: steam @@ -602789,7 +604451,7 @@ Vandals: id: 809240 Vane: files: - /AppData/LocalLow/Friend_Foe/Vane: + "/AppData/LocalLow/Friend_Foe/Vane": tags: - save when: @@ -602797,7 +604459,7 @@ Vane: installDir: Vane: {} launch: - /game.exe: + "/game.exe": - when: - bit: 64 os: windows @@ -602814,46 +604476,46 @@ Vangers: installDir: Vangers: {} launch: - /bin/Vangers.app/Contents/MacOS/Vangers: + "/bin/Vangers.app/Contents/MacOS/Vangers": - when: - os: mac store: steam - workingDir: /data - /bin/linux/vangers32: + workingDir: "/data" + "/bin/linux/vangers32": - when: - bit: 32 os: linux store: steam - workingDir: /data - /bin/linux/vangers64: + workingDir: "/data" + "/bin/linux/vangers64": - when: - bit: 64 os: linux store: steam - workingDir: /data - /bin/windows-32/vangers.exe: + workingDir: "/data" + "/bin/windows-32/vangers.exe": - when: - bit: 32 os: windows store: steam - workingDir: /data - /bin/windows-64/vangers.exe: + workingDir: "/data" + "/bin/windows-64/vangers.exe": - when: - bit: 64 os: windows store: steam - workingDir: /data + workingDir: "/data" steam: id: 264080 Vanguard Knights: installDir: - 'Vanguard Knights[Royal Skies LLC]': {} + "Vanguard Knights[Royal Skies LLC]": {} launch: - /Vanguard Knights(Royal Skies LLC)-mac.app: + "/Vanguard Knights(Royal Skies LLC)-mac.app": - when: - os: mac store: steam - /Vanguard Knights(Royal Skies LLC)/Vanguard Knights.exe: + "/Vanguard Knights(Royal Skies LLC)/Vanguard Knights.exe": - when: - os: windows store: steam @@ -602861,7 +604523,7 @@ Vanguard Knights: id: 652890 Vanguard Princess: files: - /game.ini: + "/game.ini": tags: - config when: @@ -602869,11 +604531,11 @@ Vanguard Princess: installDir: vanguard-princess: {} launch: - /Vanguard Princess.app/Contents/MacOS/Vanguard Princess: + "/Vanguard Princess.app/Contents/MacOS/Vanguard Princess": - when: - os: mac store: steam - /bin/cxsteamwrapper: + "/bin/cxsteamwrapper": - when: - os: linux store: steam @@ -602884,14 +604546,14 @@ Vanguard V: Vanguard_V: {} steam: id: 520120 -'Vanguard: Fight For Rudiarius': +"Vanguard: Fight For Rudiarius": steam: id: 953810 -'Vanguard: Normandy 1944': +"Vanguard: Normandy 1944": installDir: Vanguard Normandy 1944: {} launch: - /bin/win_x64/vanguard.exe: + "/bin/win_x64/vanguard.exe": - when: - bit: 64 os: windows @@ -602902,7 +604564,7 @@ Vanguardian: installDir: Vanguardian: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -602912,17 +604574,17 @@ Vanguards: installDir: Vanguards: {} launch: - /Vanguards.exe: + "/Vanguards.exe": - when: - os: windows store: steam steam: id: 546600 -'Vanilla Bagel: The Roguelike': +"Vanilla Bagel: The Roguelike": installDir: Vanilla Bagel The Roguelike: {} launch: - /Prog.exe: + "/Prog.exe": - when: - os: windows store: steam @@ -602935,13 +604597,13 @@ Vanishing Realms: id: 322770 Vanquish: files: - /userdata//460810/remote: + "/userdata//460810/remote": tags: - save when: - os: windows store: steam - /Vanquish: + "/Vanquish": tags: - config when: @@ -602949,30 +604611,30 @@ Vanquish: installDir: Vanquish: {} launch: - /Vanquish.exe: + "/Vanquish.exe": - when: - store: steam steam: id: 460810 -'Vanquish: The Adventures of Lady Exton': +"Vanquish: The Adventures of Lady Exton": installDir: Vanquish The Adventures of Lady Exton: {} launch: - /VTAOLE.app/Contents/MacOS/Mac_Runner: + "/VTAOLE.app/Contents/MacOS/Mac_Runner": - when: - os: mac store: steam - /VanquishTAOLE.exe: + "/VanquishTAOLE.exe": - when: - os: windows store: steam steam: id: 437380 -'Vantage: Primitive Survival Game': +"Vantage: Primitive Survival Game": installDir: Vantage Primitive Survival Game: {} launch: - /Client/Vantage Client/Vantage Client.exe: + "/Client/Vantage Client/Vantage Client.exe": - when: - os: windows store: steam @@ -602985,7 +604647,7 @@ VaporFly: installDir: VaporFly: {} launch: - /VAPORFLY.exe: + "/VAPORFLY.exe": - when: - os: windows store: steam @@ -602995,7 +604657,7 @@ Vaporspace: installDir: Vaporspace: {} launch: - /VaporspacePC.exe: + "/VaporspacePC.exe": - when: - os: windows store: steam @@ -603003,12 +604665,12 @@ Vaporspace: id: 1031630 Vaporum: files: - /Saves: + "/Saves": tags: - save when: - os: windows - /Settings: + "/Settings": tags: - config when: @@ -603019,7 +604681,7 @@ Vaporum: Vaporum: {} steam: id: 629690 -'Vaporum: Lockdown': +"Vaporum: Lockdown": gog: id: 1326849971 installDir: @@ -603030,11 +604692,11 @@ Vaporwave Simulator: installDir: Applications: {} launch: - /Vaporwave Simulator.app/Contents/MacOS/vaposimmac: + "/Vaporwave Simulator.app/Contents/MacOS/vaposimmac": - when: - os: mac store: steam - /Vaporwave Simulator.exe: + "/Vaporwave Simulator.exe": - when: - os: windows store: steam @@ -603044,15 +604706,15 @@ Vapour: installDir: Vapour: {} launch: - /Vapour_Part1.app: + "/Vapour_Part1.app": - when: - os: mac store: steam - /Vapour_Part1.exe: + "/Vapour_Part1.exe": - when: - os: windows store: steam - /Vapour_Part1.x86_64: + "/Vapour_Part1.x86_64": - when: - os: linux store: steam @@ -603065,7 +604727,7 @@ VarBlocks: id: 796760 Varenje: files: - /AppData/LocalLow/Play Cute/Varenje: + "/AppData/LocalLow/Play Cute/Varenje": tags: - save when: @@ -603073,16 +604735,19 @@ Varenje: installDir: Varenje: {} launch: - /Varenje.app/Contents/MacOS/Varenje: + "/Varenje.app/Contents/MacOS/Varenje": - when: - os: mac store: steam - /Varenje.exe: + "/Varenje.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam - /Varenje.x86_64: + "/Varenje.x86_64": - when: - os: linux store: steam @@ -603096,12 +604761,12 @@ Varion: installDir: Varion: {} launch: - /Varion: + "/Varion": - when: - bit: 64 os: linux store: steam - /Varion.exe: + "/Varion.exe": - when: - os: windows store: steam @@ -603111,7 +604776,7 @@ Various Daylife: installDir: VARIOUS DAYLIFE: {} launch: - /VARIOUS_DAYLIFE.exe: + "/VARIOUS_DAYLIFE.exe": - when: - os: windows store: steam @@ -603121,7 +604786,7 @@ Various Fighters: installDir: various fighters: {} launch: - /various fighters.exe: + "/various fighters.exe": - when: - os: windows store: steam @@ -603131,7 +604796,7 @@ Varius: installDir: Varius: {} launch: - /Varius.exe: + "/Varius.exe": - when: - os: windows store: steam @@ -603141,11 +604806,11 @@ Vasilis: installDir: Vasilis: {} launch: - /Vasilis.app/Contents/MacOS/Vasilis: + "/Vasilis.app/Contents/MacOS/Vasilis": - when: - os: mac store: steam - /Vasilis.exe: + "/Vasilis.exe": - when: - os: windows store: steam @@ -603155,7 +604820,7 @@ Vatnik Simulator - A Russian Patriot Game: installDir: Vatnik Simulator - A Russian Patriot Game: {} launch: - /VSAPG228.exe: + "/VSAPG228.exe": - when: - os: windows store: steam @@ -603168,7 +604833,7 @@ Vault Cracker: installDir: Vault Cracker: {} launch: - /VaultCracker.exe: + "/VaultCracker.exe": - when: - store: steam steam: @@ -603185,7 +604850,7 @@ Vault of the Void: installDir: Vault of the Void: {} launch: - /VaultoftheVoid.exe: + "/VaultoftheVoid.exe": - when: - os: windows store: steam @@ -603198,7 +604863,7 @@ Veccol: installDir: Veccol: {} launch: - /Veccol.exe: + "/Veccol.exe": - when: - os: windows store: steam @@ -603208,7 +604873,7 @@ Vecitas: installDir: Vecitas: {} launch: - /Vecitas.exe: + "/Vecitas.exe": - when: - os: windows store: steam @@ -603218,7 +604883,7 @@ Vecter: installDir: Vecter: {} launch: - /Vecter.exe: + "/Vecter.exe": - when: - store: steam steam: @@ -603227,11 +604892,11 @@ Vectonic: installDir: Vectonic: {} launch: - /OSX/Vectonic.app/Contents/MacOS/Vectonic: + "/OSX/Vectonic.app/Contents/MacOS/Vectonic": - when: - os: mac store: steam - /windows/vectonic.exe: + "/windows/vectonic.exe": - when: - os: windows store: steam @@ -603241,7 +604906,7 @@ Vector: installDir: Vector: {} launch: - /launch.exe: + "/launch.exe": - arguments: fullscreen 1 when: - os: windows @@ -603259,16 +604924,16 @@ Vector 36: installDir: Vector 36: {} launch: - /Vector36.app: + "/Vector36.app": - when: - os: mac store: steam - /Vector36.exe: - - arguments: '-vrmode None' + "/Vector36.exe": + - arguments: "-vrmode None" when: - os: windows store: steam - /Vector36.x86_64: + "/Vector36.x86_64": - when: - os: linux store: steam @@ -603278,7 +604943,7 @@ Vector Assault: installDir: Vector Assault: {} launch: - /Vector Assault.exe: + "/Vector Assault.exe": - when: - store: steam steam: @@ -603287,7 +604952,7 @@ Vector Born: installDir: Vector Born: {} launch: - /Vector Born.exe: + "/Vector Born.exe": - when: - os: windows store: steam @@ -603297,7 +604962,7 @@ Vector Light: installDir: Vector Light: {} launch: - /Vector Light x86.exe: + "/Vector Light x86.exe": - when: - os: windows store: steam @@ -603307,19 +604972,19 @@ Vector Strain: installDir: Vector Strain: {} launch: - /VectorStrain.exe: - - arguments: '-force-d3d11' + "/VectorStrain.exe": + - arguments: "-force-d3d11" when: - os: windows store: steam - - arguments: '-force-d3d9' + - arguments: "-force-d3d9" when: - store: steam steam: id: 419090 Vector Thrust: files: - /saves: + "/saves": tags: - save when: @@ -603327,7 +604992,7 @@ Vector Thrust: installDir: VectorThrust: {} launch: - /VectorThrust.exe: + "/VectorThrust.exe": - when: - store: steam steam: @@ -603337,11 +605002,11 @@ Vector Velocity: Vector Velocity: {} steam: id: 751480 -Vector's Adventures: +"Vector's Adventures": installDir: - Vector's Adventures: {} + "Vector's Adventures": {} launch: - /Vector's Adventures.exe: + "/Vector's Adventures.exe": - when: - os: windows store: steam @@ -603349,22 +605014,22 @@ Vector's Adventures: id: 773870 VectorMan: files: - /SEGA Genesis Classics/0010: + "/SEGA Genesis Classics/0010": tags: - save when: - os: windows - /SEGA Genesis Classics/setup.dat: + "/SEGA Genesis Classics/setup.dat": tags: - config when: - os: windows - /SEGA Mega Drive Classics/0010: + "/SEGA Mega Drive Classics/0010": tags: - save when: - os: windows - /SEGA Mega Drive Classics/setup.dat: + "/SEGA Mega Drive Classics/setup.dat": tags: - config when: @@ -603373,22 +605038,22 @@ VectorMan: id: 34280 VectorMan 2: files: - /SEGA Genesis Classics/0056: + "/SEGA Genesis Classics/0056": tags: - save when: - os: windows - /SEGA Genesis Classics/setup.dat: + "/SEGA Genesis Classics/setup.dat": tags: - config when: - os: windows - /SEGA Mega Drive Classics/0056: + "/SEGA Mega Drive Classics/0056": tags: - save when: - os: windows - /SEGA Mega Drive Classics/setup.dat: + "/SEGA Mega Drive Classics/setup.dat": tags: - config when: @@ -603409,7 +605074,7 @@ Vectorium: installDir: Vectorium: {} launch: - /Vectorium.exe: + "/Vectorium.exe": - when: - os: windows store: steam @@ -603419,7 +605084,7 @@ Vectrix: installDir: Vectrix: {} launch: - /Vectrix.exe: + "/Vectrix.exe": - when: - store: steam steam: @@ -603428,11 +605093,11 @@ Vectronom: installDir: Vectronom: {} launch: - /Vectronom.app/Contents/MacOS/Vectronom: + "/Vectronom.app/Contents/MacOS/Vectronom": - when: - os: mac store: steam - /Vectronom.exe: + "/Vectronom.exe": - when: - bit: 64 os: windows @@ -603456,20 +605121,20 @@ Veer: installDir: Veer: {} launch: - /Veer.app/Contents/MacOS/Veer: + "/Veer.app/Contents/MacOS/Veer": - when: - os: mac store: steam - /veer.exe: + "/veer.exe": - when: - os: windows store: steam - /veer.x86: + "/veer.x86": - when: - bit: 32 os: linux store: steam - /veer.x86_64: + "/veer.x86_64": - when: - bit: 64 os: linux @@ -603480,22 +605145,22 @@ Veer: - config steam: id: 405530 -'Vega Motions: Project Unleashed': +"Vega Motions: Project Unleashed": steam: id: 1172790 Vega Tank: installDir: VegaTank: {} launch: - /VegaTank.app: + "/VegaTank.app": - when: - os: mac store: steam - /VegaTank.exe: + "/VegaTank.exe": - when: - os: windows store: steam - /VegaTank.x86: + "/VegaTank.x86": - when: - os: linux store: steam @@ -603505,7 +605170,7 @@ Vegas Party: installDir: Vegas Party: {} launch: - /VegasParty.exe: + "/VegasParty.exe": - when: - os: windows store: steam @@ -603515,16 +605180,16 @@ Vegas Slot: installDir: Vegas Slot: {} launch: - /Vegas Slot.exe: + "/Vegas Slot.exe": - when: - store: steam steam: id: 1094880 -'Vegas: Make It Big': +"Vegas: Make It Big": installDir: Vegas - Make It Big: {} launch: - /casino.exe: + "/casino.exe": - when: - store: steam steam: @@ -603533,15 +605198,15 @@ Vegetaball: installDir: Vegetaball: {} launch: - /Vegetaball.exe: + "/Vegetaball.exe": - when: - os: windows store: steam - /Vegetaball.x86: + "/Vegetaball.x86": - when: - os: linux store: steam - /Vegetaball_Mac.app: + "/Vegetaball_Mac.app": - when: - os: mac store: steam @@ -603560,7 +605225,7 @@ Veggie Menace: installDir: Veggie Menace: {} launch: - /Veggie Menace.exe: + "/Veggie Menace.exe": - when: - store: steam steam: @@ -603569,12 +605234,12 @@ VehiCraft: installDir: VehiCraft: {} launch: - /Windows/32 bits/VehiCraft32.exe: + "/Windows/32 bits/VehiCraft32.exe": - when: - bit: 32 os: windows store: steam - /Windows/64 bits/VehiCraft64.exe: + "/Windows/64 bits/VehiCraft64.exe": - when: - bit: 64 os: windows @@ -603585,12 +605250,12 @@ Vehicle Simulator: installDir: Vehicle Simulator: {} launch: - /vs_frame.exe: + "/vs_frame.exe": - when: - bit: 64 os: windows store: steam - /vs_frame_32.exe: + "/vs_frame_32.exe": - when: - bit: 32 os: windows @@ -603606,7 +605271,7 @@ Vehicles Fury: installDir: VEHICLES FURY Content: {} launch: - /VEHICLES_FURY.exe: + "/VEHICLES_FURY.exe": - when: - os: windows store: steam @@ -603616,7 +605281,7 @@ Veil of Crows: installDir: Veil of Crows: {} launch: - /windows_content/VeilOfCrows.exe: + "/windows_content/VeilOfCrows.exe": - when: - os: windows store: steam @@ -603624,7 +605289,7 @@ Veil of Crows: id: 601540 Veil of Darkness: files: - /SAVES: + "/SAVES": tags: - save when: @@ -603634,15 +605299,15 @@ Veil of Darkness: installDir: Veil of Darkness: {} launch: - /DOSBOX/DOSBox.exe: - - arguments: '-noconsole -conf vod-eng-base.conf -conf vod-eng-graphics.conf -conf vod-eng-game.conf' + "/DOSBOX/DOSBox.exe": + - arguments: "-noconsole -conf vod-eng-base.conf -conf vod-eng-graphics.conf -conf vod-eng-game.conf" when: - store: steam steam: id: 2414320 Veiled Experts: files: - /VeiledExperts/Saved/Config: + "/VeiledExperts/Saved/Config": tags: - config when: @@ -603650,7 +605315,7 @@ Veiled Experts: installDir: VEILED EXPERTS: {} launch: - /VeiledExperts/Binaries/Win64/VeiledExperts-Win64-Shipping.exe: + "/VeiledExperts/Binaries/Win64/VeiledExperts-Win64-Shipping.exe": - arguments: source=nexonsteam when: - bit: 64 @@ -603662,7 +605327,7 @@ Veilia: installDir: Veilia: {} launch: - /Veilia.exe: + "/Veilia.exe": - when: - os: windows store: steam @@ -603672,7 +605337,7 @@ Vein Hotel: installDir: Vein Hotel: {} launch: - /VeinHotel.exe: + "/VeinHotel.exe": - when: - os: windows store: steam @@ -603682,15 +605347,15 @@ Vektor Wars: installDir: Vektor Wars: {} launch: - /VectorWars.app: + "/VectorWars.app": - when: - os: mac store: steam - /VectorWars.exe: + "/VectorWars.exe": - when: - os: windows store: steam - /VectorWars.x86: + "/VectorWars.x86": - when: - os: linux store: steam @@ -603705,15 +605370,15 @@ Velocibox: installDir: Velocibox: {} launch: - /Velocibox.app: + "/Velocibox.app": - when: - os: mac store: steam - /Velocibox.exe: + "/Velocibox.exe": - when: - os: windows store: steam - /Velocibox.x86: + "/Velocibox.x86": - when: - os: linux store: steam @@ -603724,13 +605389,13 @@ Velocidevorium: id: 512720 Velocity 2X: files: - /userdata//337180: + "/userdata//337180": tags: - save when: - os: windows store: steam - /Sierra/Velocity2X: + "/Sierra/Velocity2X": tags: - config when: @@ -603738,7 +605403,7 @@ Velocity 2X: installDir: Velocity 2X: {} launch: - /Velocity2X.exe: + "/Velocity2X.exe": - when: - os: windows store: steam @@ -603748,7 +605413,7 @@ Velocity G: installDir: Velocity G: {} launch: - /Velocity G.exe: + "/Velocity G.exe": - when: - os: windows store: steam @@ -603758,7 +605423,7 @@ Velocity Stream: installDir: Velocity Stream: {} launch: - /Velocity Stream.exe: + "/Velocity Stream.exe": - when: - os: windows store: steam @@ -603768,7 +605433,7 @@ Velocity Ultra: installDir: VelocityUltra: {} launch: - /settings/settings.exe: + "/settings/settings.exe": - when: - store: steam steam: @@ -603779,11 +605444,11 @@ Velone: installDir: VELONE: {} launch: - /VELONE.app: + "/VELONE.app": - when: - os: mac store: steam - /VELONE.exe: + "/VELONE.exe": - when: - os: windows store: steam @@ -603791,12 +605456,12 @@ Velone: id: 1811750 Velvet Assassin: files: - /aio: + "/aio": tags: - config when: - os: windows - /My Games/Velvet Assassin: + "/My Games/Velvet Assassin": tags: - config - save @@ -603805,11 +605470,11 @@ Velvet Assassin: installDir: Velvet Assassin: {} launch: - /Launcher.exe: + "/Launcher.exe": - when: - os: windows store: steam - /Velvet Assassin.app: + "/Velvet Assassin.app": - when: - os: mac store: steam @@ -603819,15 +605484,15 @@ Velvet Guard: installDir: Velvet Guard: {} launch: - /launcher: + "/launcher": - when: - os: linux store: steam - /velvetguard.app/Contents/MacOS/launcher: + "/velvetguard.app/Contents/MacOS/launcher": - when: - os: mac store: steam - /velvetguard.exe: + "/velvetguard.exe": - when: - os: windows store: steam @@ -603837,11 +605502,11 @@ Velvet Sundown: installDir: VelvetSundown: {} launch: - /Velvet Sundown.app/Contents/MacOS/VelvetSundown: + "/Velvet Sundown.app/Contents/MacOS/VelvetSundown": - when: - os: mac store: steam - /VelvetSundown.exe: + "/VelvetSundown.exe": - when: - os: windows store: steam @@ -603851,7 +605516,7 @@ Venal Soul (Chapter One): installDir: Venal Soul: {} launch: - /VS.exe: + "/VS.exe": - when: - bit: 64 os: windows @@ -603862,29 +605527,29 @@ Venandi In Silva: installDir: Venandi In Silva: {} launch: - /VenadiInSilva.exe: + "/VenadiInSilva.exe": - when: - os: windows store: steam steam: id: 1091070 -'Vendetta: Curse of Raven''s Cry': +"Vendetta: Curse of Raven's Cry": files: - /.VCR: + "/.VCR": tags: - config when: - os: linux - /userdata//386280/remote: + "/userdata//386280/remote": tags: - save when: - os: windows store: steam installDir: - Vendetta - curse of Raven's Cry: {} + "Vendetta - curse of Raven's Cry": {} launch: - /VCRForMacSteam.app: + "/VCRForMacSteam.app": - when: - os: mac store: steam @@ -603896,17 +605561,17 @@ Venandi In Silva: id: 386280 Venetica: files: - /Venetica/action_bindings-user.ini: + "/Venetica/action_bindings-user.ini": tags: - config when: - os: windows - /Venetica/save: + "/Venetica/save": tags: - save when: - os: windows - /Venetica/settings-user.ini: + "/Venetica/settings-user.ini": tags: - config when: @@ -603916,10 +605581,10 @@ Venetica: installDir: Venetica: {} launch: - /bin/release/Venetica.exe: + "/bin/release/Venetica.exe": - when: - store: steam - workingDir: /bin/release + workingDir: "/bin/release" steam: id: 338140 Vengeance of Mr. Peppermint: @@ -603928,39 +605593,39 @@ Vengeance of Mr. Peppermint: installDir: VOMP: {} launch: - /VOMP.app: + "/VOMP.app": - when: - os: mac store: steam - /VOMP.exe: + "/VOMP.exe": - when: - os: windows store: steam steam: id: 2287560 -Vengeance ~ In my family's name: +"Vengeance ~ In my family's name": installDir: Vengeance ~ In my family name: {} launch: - /FamilyName/FamilyName.app: + "/FamilyName/FamilyName.app": - when: - os: mac store: steam - /FamilyName/FamilyName.exe: + "/FamilyName/FamilyName.exe": - when: - os: windows store: steam - /FamilyName/FamilyName.sh: + "/FamilyName/FamilyName.sh": - when: - os: linux store: steam steam: id: 1143470 -'Vengeance: Lost Love': +"Vengeance: Lost Love": installDir: Vengeance Lost Love: {} launch: - /Vengeance.exe: + "/Vengeance.exe": - when: - store: steam steam: @@ -603969,18 +605634,18 @@ Vengeful Bat Dungeon Crawler: installDir: Vengeful Bat Dungeon Crawler: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam steam: id: 1054620 -'Vengeful Guardian: Moonrider': +"Vengeful Guardian: Moonrider": installDir: Vengeful Guardian Moonrider: {} launch: - /Vengeful Guardian Moonrider.exe: - - arguments: '--force_high_performance_gpu' + "/Vengeful Guardian Moonrider.exe": + - arguments: "--force_high_performance_gpu" when: - store: steam steam: @@ -603989,15 +605654,15 @@ Vengeful Heart: installDir: Vengeful Heart: {} launch: - /VH/VengefulHeart.app: + "/VH/VengefulHeart.app": - when: - os: mac store: steam - /VH/VengefulHeart.exe: + "/VH/VengefulHeart.exe": - when: - os: windows store: steam - /VH/VengefulHeart.sh: + "/VH/VengefulHeart.sh": - when: - os: linux store: steam @@ -604010,7 +605675,7 @@ Vengeful Rites: id: 755410 Venice: files: - /Steam/Venice/userdata: + "/Steam/Venice/userdata": tags: - save when: @@ -604018,19 +605683,19 @@ Venice: installDir: Venice: {} launch: - /Venice.exe: + "/Venice.exe": - when: - store: steam steam: id: 3490 Venineth: files: - /Game/Saved/Config: + "/Game/Saved/Config": tags: - config when: - os: windows - /Game/Saved/SaveGames: + "/Game/Saved/SaveGames": tags: - save when: @@ -604038,7 +605703,7 @@ Venineth: installDir: Venineth: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -604048,7 +605713,7 @@ Ventura Inc: installDir: Ventura Inc: {} launch: - /Ventura Inc.exe: + "/Ventura Inc.exe": - when: - os: windows store: steam @@ -604058,7 +605723,7 @@ Venture Arctic: installDir: Venture Arctic: {} launch: - /VentureArctic.exe: + "/VentureArctic.exe": - when: - store: steam steam: @@ -604067,7 +605732,7 @@ Venture Forth: installDir: Venture Forth: {} launch: - /Venture Forth.exe: + "/Venture Forth.exe": - when: - os: windows store: steam @@ -604077,7 +605742,7 @@ Venture Kid: installDir: Venture Kid: {} launch: - /Venture Kid.exe: + "/Venture Kid.exe": - when: - os: windows store: steam @@ -604087,40 +605752,40 @@ Venture Seas: installDir: Venture Seas: {} launch: - /bin/Launch.exe: + "/bin/Launch.exe": - when: - os: windows store: steam steam: id: 1096520 -'VentureVerse: Legend of Ulora': +"VentureVerse: Legend of Ulora": installDir: VentureVerse: {} launch: - /VENTUREVERSE Legend of Ulora.exe: + "/VENTUREVERSE Legend of Ulora.exe": - when: - os: windows store: steam steam: id: 627570 -'VenusBlood Frontier: International': +"VenusBlood Frontier: International": gog: id: 1347682775 installDir: VenusBlood FRONTIER: {} launch: - /VBFI.exe: + "/VBFI.exe": - when: - store: steam steam: id: 1189440 -'VenusBlood Hollow: International': +"VenusBlood Hollow: International": gog: id: 1840370563 installDir: VenusBlood HOLLOW: {} launch: - /VBHI.exe: + "/VBHI.exe": - when: - store: steam steam: @@ -604129,24 +605794,24 @@ Venusian Vengeance: installDir: Venusian Vengeance: {} launch: - /VenusianVengeanceMac.app: + "/VenusianVengeanceMac.app": - when: - os: mac store: steam - /VenusianVengeanceSteam.exe: + "/VenusianVengeanceSteam.exe": - when: - os: windows store: steam steam: id: 351240 -'Vera Jones: La Légende Des Sept Reliques': +"Vera Jones: La Légende Des Sept Reliques": files: - /My Games/ClimberGirl: + "/My Games/ClimberGirl": tags: - save when: - os: windows - /My Games/ClimberGirl/config.cfg: + "/My Games/ClimberGirl/config.cfg": tags: - config when: @@ -604155,20 +605820,20 @@ Vera Swings: installDir: Vera Swings: {} launch: - /vera.app/Contents/MacOS/vera: + "/vera.app/Contents/MacOS/vera": - when: - os: mac store: steam - /vera.exe: + "/vera.exe": - when: - os: windows store: steam - /vera.x86: + "/vera.x86": - when: - bit: 32 os: linux store: steam - /vera.x86_64: + "/vera.x86_64": - when: - bit: 64 os: linux @@ -604179,16 +605844,16 @@ Verdant Skies: installDir: Verdant Skies: {} launch: - /Verdant Skies: + "/Verdant Skies": - when: - bit: 64 os: linux store: steam - /Verdant Skies.app/Contents/MacOS/Verdant Skies: + "/Verdant Skies.app/Contents/MacOS/Verdant Skies": - when: - os: mac store: steam - /Verdant Skies.exe: + "/Verdant Skies.exe": - when: - os: windows store: steam @@ -604198,20 +605863,20 @@ Verde Station: installDir: Verde Station: {} launch: - /VerdeStation.app: + "/VerdeStation.app": - when: - os: mac store: steam - /VerdeStation.exe: + "/VerdeStation.exe": - when: - os: windows store: steam - /VerdeStation.x86: + "/VerdeStation.x86": - when: - bit: 32 os: linux store: steam - /VerdeStation.x86_64: + "/VerdeStation.x86_64": - when: - bit: 64 os: linux @@ -604220,7 +605885,7 @@ Verde Station: id: 324120 Verdict Guilty: files: - /data/save: + "/data/save": tags: - config - save @@ -604229,7 +605894,7 @@ Verdict Guilty: installDir: Verdict Guilty: {} launch: - /VerdictGuilty.exe: + "/VerdictGuilty.exe": - when: - os: windows store: steam @@ -604237,12 +605902,12 @@ Verdict Guilty: id: 449210 Verdun: files: - /.config/unity3d/Verdun/Verdun: + "/.config/unity3d/Verdun/Verdun": tags: - config when: - os: linux - /userdata//242860/remote: + "/userdata//242860/remote": tags: - save when: @@ -604250,16 +605915,16 @@ Verdun: installDir: WW1GameSeries: {} launch: - /Verdun/Verdun: + "/Verdun/Verdun": - when: - bit: 64 os: linux store: steam - /Verdun/Verdun.app/Contents/MacOS/WW1 Game Series: + "/Verdun/Verdun.app/Contents/MacOS/WW1 Game Series": - when: - os: mac store: steam - /Verdun/Verdun.exe: + "/Verdun/Verdun.exe": - when: - os: windows store: steam @@ -604269,11 +605934,11 @@ Verdun: - config steam: id: 242860 -'Verge: Lost Chapter': +"Verge: Lost Chapter": installDir: VERGELostchapter: {} launch: - /VERGE.exe: + "/VERGE.exe": - when: - os: windows store: steam @@ -604283,11 +605948,11 @@ Veritas: installDir: Veritas: {} launch: - /Veritas.app/Contents/MacOS/Veritas: + "/Veritas.app/Contents/MacOS/Veritas": - when: - os: mac store: steam - /Veritas.exe: + "/Veritas.exe": - when: - os: windows store: steam @@ -604297,7 +605962,7 @@ Veritex: installDir: Veritex: {} launch: - /Veritex.exe: + "/Veritex.exe": - when: - os: windows store: steam @@ -604305,7 +605970,7 @@ Veritex: id: 695360 Verlet Swing: files: - /AppData/LocalLow/Flamebait Games/Verlet Swing/*.xml: + "/AppData/LocalLow/Flamebait Games/Verlet Swing/*.xml": tags: - save when: @@ -604313,21 +605978,24 @@ Verlet Swing: installDir: Verlet Swing: {} launch: - /Verlet Swing.app/Contents/MacOS/Verlet Swing: + "/Verlet Swing.app/Contents/MacOS/Verlet Swing": - when: - os: mac store: steam - /Verlet Swing.exe: + "/Verlet Swing.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam - /Verlet Swing.x86: + "/Verlet Swing.x86": - when: - bit: 32 os: linux store: steam - /Verlet Swing.x86_64: + "/Verlet Swing.x86_64": - when: - bit: 64 os: linux @@ -604342,26 +606010,26 @@ Verlies II: installDir: VERLIES II: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam steam: id: 371220 -'Vermillion Watch: Moorgate Accord': +"Vermillion Watch: Moorgate Accord": installDir: - Vermillion Watch Moorgate Accord Collector's Edition: {} + "Vermillion Watch Moorgate Accord Collector's Edition": {} launch: - /VermillionWatch_MoorgateAccord_CE.exe: + "/VermillionWatch_MoorgateAccord_CE.exe": - when: - store: steam steam: id: 485290 -'Vermillion Watch: Parisian Pursuit': +"Vermillion Watch: Parisian Pursuit": installDir: - Vermillion Watch Parisian Pursuit Collector's Edition: {} + "Vermillion Watch Parisian Pursuit Collector's Edition": {} launch: - /Vermillion_Watch_Parisian_Pursuit_CE.exe: + "/Vermillion_Watch_Parisian_Pursuit_CE.exe": - when: - os: windows store: steam @@ -604371,7 +606039,7 @@ Vermin Hunter: installDir: Vermin Hunter: {} launch: - /VerminHunter.exe: + "/VerminHunter.exe": - when: - os: windows store: steam @@ -604379,7 +606047,7 @@ Vermin Hunter: id: 1104030 Verminest: files: - /Verminest/config.ini: + "/Verminest/config.ini": tags: - config when: @@ -604391,7 +606059,7 @@ Verminest: - os: windows Verminian Trap: files: - /verminian_trap_1_1/config.ini: + "/verminian_trap_1_1/config.ini": tags: - config when: @@ -604400,16 +606068,16 @@ Vermis Orbita: installDir: Vermis Orbita: {} launch: - /Vermis Orbita.exe: + "/Vermis Orbita.exe": - when: - store: steam steam: id: 2064320 -Vernon's Legacy: +"Vernon's Legacy": installDir: Vernons Legacy: {} launch: - /proj_mansion_unreal.exe: + "/proj_mansion_unreal.exe": - when: - os: windows store: steam @@ -604419,11 +606087,11 @@ Versus Game: installDir: Versus Game: {} launch: - /Versus.app: + "/Versus.app": - when: - os: mac store: steam - /Versus.exe: + "/Versus.exe": - when: - os: windows store: steam @@ -604433,62 +606101,62 @@ Versus World: installDir: Versus World: {} launch: - /VersusWorld.exe: + "/VersusWorld.exe": - when: - bit: 64 os: windows store: steam steam: id: 758560 -'Versus: Battle of the Gladiator': +"Versus: Battle of the Gladiator": installDir: Versus Battle of the Gladiator: {} launch: - /Binaries/Win32/BEEFGame-Win32-Shipping.exe: - - arguments: '-steam' + "/Binaries/Win32/BEEFGame-Win32-Shipping.exe": + - arguments: "-steam" when: - bit: 32 os: windows store: steam - /Binaries/Win64/BEEFGame-Win64-Shipping.exe: - - arguments: '-steam' + "/Binaries/Win64/BEEFGame-Win64-Shipping.exe": + - arguments: "-steam" when: - bit: 64 os: windows store: steam steam: id: 467990 -'Versus: The Elite Trials': +"Versus: The Elite Trials": installDir: VERSUS The Elite Trials: {} launch: - /VERSUS The Elite Trials.app/Contents/MacOS/VERSUS The Elite Trials: + "/VERSUS The Elite Trials.app/Contents/MacOS/VERSUS The Elite Trials": - when: - os: mac store: steam - /VersusTheEliteTrials: + "/VersusTheEliteTrials": - when: - os: linux store: steam - /VersusTheEliteTrials.exe: + "/VersusTheEliteTrials.exe": - when: - os: windows store: steam steam: id: 568610 -'Versus: The Lost Ones': +"Versus: The Lost Ones": installDir: VersusTheLostOnes: {} launch: - /VERSUS The Lost Ones.app/Contents/MacOS/VERSUS The Lost Ones: + "/VERSUS The Lost Ones.app/Contents/MacOS/VERSUS The Lost Ones": - when: - os: mac store: steam - /VersusTheLostOnes: + "/VersusTheLostOnes": - when: - os: linux store: steam - /VersusTheLostOnes.exe: + "/VersusTheLostOnes.exe": - when: - os: windows store: steam @@ -604498,11 +606166,11 @@ Vertex Dispenser: installDir: Vertex Dispenser: {} launch: - /Vertex Dispenser.app: + "/Vertex Dispenser.app": - when: - os: mac store: steam - /Vertex Dispenser.exe: + "/Vertex Dispenser.exe": - when: - os: windows store: steam @@ -604510,12 +606178,12 @@ Vertex Dispenser: id: 102400 Vertical Drop Heroes HD: files: - /Vertical_Drop_Heroes_HD/vdh_save_11.ini: + "/Vertical_Drop_Heroes_HD/vdh_save_11.ini": tags: - save when: - os: windows - /Vertical_Drop_Heroes_HD/vdh_settings_4.ini: + "/Vertical_Drop_Heroes_HD/vdh_settings_4.ini": tags: - config when: @@ -604525,15 +606193,15 @@ Vertical Drop Heroes HD: installDir: Vertical Drop Heroes HD: {} launch: - /PRESS PREVIEW/Vertical Drop Heroes HD - press.exe: + "/PRESS PREVIEW/Vertical Drop Heroes HD - press.exe": - when: - os: windows store: steam - /Vertical Drop Heroes HD.app: + "/Vertical Drop Heroes HD.app": - when: - os: mac store: steam - /Vertical Drop Heroes HD.exe: + "/Vertical Drop Heroes HD.exe": - when: - os: windows store: steam @@ -604543,7 +606211,7 @@ Vertical Fall: installDir: VF: {} launch: - /vf.exe: + "/vf.exe": - when: - store: steam steam: @@ -604552,7 +606220,7 @@ Vertical Strike Endless Challenge: installDir: Vertical Strike Endless Challenge Edition: {} launch: - /vse.exe: + "/vse.exe": - when: - os: windows store: steam @@ -604560,7 +606228,7 @@ Vertical Strike Endless Challenge: id: 313390 Vertiginous Golf: files: - /Library/Preferences/unity.Kinelco _ Lone Elk.Vertiginous Golf.plist: + "/Library/Preferences/unity.Kinelco _ Lone Elk.Vertiginous Golf.plist": tags: - config - save @@ -604569,20 +606237,20 @@ Vertiginous Golf: installDir: Vertiginous Golf: {} launch: - /Vertiginous Golf.app: + "/Vertiginous Golf.app": - when: - os: mac store: steam - /vgolf.exe: + "/vgolf.exe": - when: - os: windows store: steam - /vgolf.x86: + "/vgolf.x86": - when: - bit: 32 os: linux store: steam - /vgolf.x86_64: + "/vgolf.x86_64": - when: - bit: 64 os: linux @@ -604608,21 +606276,24 @@ Vertigo Void: installDir: Vertigo Void: {} launch: - /VertigoVoid.app: + "/VertigoVoid.app": - when: - os: mac store: steam - /VertigoVoid.exe: + "/VertigoVoid.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam - /VertigoVoid.x86: + "/VertigoVoid.x86": - when: - bit: 32 os: linux store: steam - /VertigoVoid.x86_64: + "/VertigoVoid.x86_64": - when: - bit: 64 os: linux @@ -604643,41 +606314,41 @@ Very Very Valet: installDir: Very Very Valet: {} launch: - /macOS/Very Very Valet.app/Contents/MacOS/Very Very Valet: + "/macOS/Very Very Valet.app/Contents/MacOS/Very Very Valet": - when: - os: mac store: steam - workingDir: /macOS - /windows/VeryVeryValet_Release.exe: + workingDir: "/macOS" + "/windows/VeryVeryValet_Release.exe": - when: - bit: 64 os: windows store: steam - workingDir: /windows + workingDir: "/windows" steam: id: 1448840 Verzaken!: installDir: Verzaken: {} launch: - /Pancake/verzaken.exe: - - arguments: '-vrskip' + "/Pancake/verzaken.exe": + - arguments: "-vrskip" when: - os: windows store: steam steam: id: 739800 -Vespa's Test: +"Vespa's Test": files: - /userdata//2077430: + "/userdata//2077430": tags: - save when: - store: steam installDir: - Vespa's Test: {} + "Vespa's Test": {} launch: - /Vespa's Test.exe: + "/Vespa's Test.exe": - when: - os: windows store: steam @@ -604689,7 +606360,7 @@ Vesper: installDir: Vesper Game: {} launch: - /Vesper.exe: + "/Vesper.exe": - when: - os: windows store: steam @@ -604697,24 +606368,24 @@ Vesper: id: 1187840 Vessel: files: - /Library/Application Support/Vessel: + "/Library/Application Support/Vessel": tags: - config - save when: - os: mac - /Vessel: + "/Vessel": tags: - config - save when: - os: windows - /Vessel: + "/Vessel": tags: - config when: - os: linux - /Vessel: + "/Vessel": tags: - save when: @@ -604722,7 +606393,7 @@ Vessel: installDir: Vessel: {} launch: - /vessel.exe: + "/vessel.exe": - when: - store: steam steam: @@ -604731,20 +606402,20 @@ Vesta: installDir: Vesta: {} launch: - /vesta.exe: + "/vesta.exe": - when: - os: windows store: steam steam: id: 646370 -'Vestaria Saga I: War of the Scions': +"Vestaria Saga I: War of the Scions": files: - /Save: + "/Save": tags: - save when: - os: windows - /game.ini: + "/game.ini": tags: - config when: @@ -604754,19 +606425,19 @@ Vesta: installDir: Vestaria Saga: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam steam: id: 694770 -'Vestaria Saga II: The Sacred Sword of Silvanister': +"Vestaria Saga II: The Sacred Sword of Silvanister": gog: id: 2111440064 installDir: Vestaria Saga II The Sacred Sword of Silvanister: {} launch: - /VestariaSaga2.exe: + "/VestariaSaga2.exe": - when: - os: windows store: steam @@ -604776,7 +606447,7 @@ Vestige of the Past: installDir: Vestige of the Past: {} launch: - /VestigeOfThePast.exe: + "/VestigeOfThePast.exe": - when: - os: windows store: steam @@ -604786,7 +606457,7 @@ Veteran Combat: installDir: Veteran Combat: {} launch: - /vc.exe: + "/vc.exe": - when: - os: windows store: steam @@ -604796,7 +606467,7 @@ Veterans Online: installDir: VeteransOnline: {} launch: - /Veterans Online.exe: + "/Veterans Online.exe": - when: - os: windows store: steam @@ -604806,12 +606477,15 @@ Vex: installDir: Vex: {} launch: - /Vex: + "/Vex": - when: - bit: 32 os: linux store: steam - /Vex.exe: + - bit: 64 + os: linux + store: steam + "/Vex.exe": - when: - os: windows store: steam @@ -604821,7 +606495,7 @@ Vexius: installDir: Vexius: {} launch: - /Vexius.exe: + "/Vexius.exe": - when: - os: windows store: steam @@ -604846,7 +606520,7 @@ ViVO: installDir: ViVO: {} launch: - /VİVO.exe: + "/VİVO.exe": - when: - os: windows store: steam @@ -604856,7 +606530,7 @@ Viaerium: installDir: Viaerium: {} launch: - /Viaerium.exe: + "/Viaerium.exe": - when: - os: windows store: steam @@ -604869,24 +606543,24 @@ Vibrant: installDir: Vibrant: {} launch: - /Vibrant.app/Contents/MacOS/vibrant: + "/Vibrant.app/Contents/MacOS/vibrant": - when: - os: mac store: steam - /vibrant.exe: + "/vibrant.exe": - when: - os: windows store: steam steam: id: 712430 -'Vibur: DISINTEGRATION (Episode 1)': +"Vibur: DISINTEGRATION (Episode 1)": steam: id: 894350 Vicious Attack Llama Apocalypse: installDir: Vicious Attack Llama Apocalypse: {} launch: - /VALA.exe: + "/VALA.exe": - when: - os: windows store: steam @@ -604896,7 +606570,7 @@ Vicious Circle: installDir: ViciousCircle: {} launch: - /ViciousCircle.exe: + "/ViciousCircle.exe": - when: - os: windows store: steam @@ -604906,7 +606580,7 @@ Vicious Gambling Agreement: installDir: Vicious Gambling Agreement: {} launch: - /ViciousGamblingAgreement.exe: + "/ViciousGamblingAgreement.exe": - when: - os: windows store: steam @@ -604916,7 +606590,7 @@ Vickinachi: installDir: Vickinachi: {} launch: - /Game.exe: + "/Game.exe": - when: - bit: 32 os: windows @@ -604927,7 +606601,7 @@ Vicky Saves the Big Dumb World: installDir: Vicky Saves the Big Dumb World: {} launch: - /Vicky Saves the Big Dumb World(PC).exe: + "/Vicky Saves the Big Dumb World(PC).exe": - when: - os: windows store: steam @@ -604937,18 +606611,18 @@ Victim Cache the RPG - An 80s JRPG Parody: installDir: Victim Cache the RPG: {} launch: - /Game: - - arguments: '--in-process-gpu' + "/Game": + - arguments: "--in-process-gpu" when: - os: linux store: steam - /Game.app: - - arguments: '--in-process-gpu' + "/Game.app": + - arguments: "--in-process-gpu" when: - os: mac store: steam - /Game.exe: - - arguments: '--in-process-gpu' + "/Game.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam @@ -604958,7 +606632,7 @@ Victim of Xen: installDir: Victim of Xen: {} launch: - /Victim of Xen.exe: + "/Victim of Xen.exe": - when: - os: windows store: steam @@ -604966,32 +606640,32 @@ Victim of Xen: id: 300220 Victor Vran: files: - /Library/Application Support/com.haemimontgames.victorvran.steam/: + "/Library/Application Support/com.haemimontgames.victorvran.steam/": tags: - save when: - os: mac - /Library/Application Support/com.haemimontgames.victorvran.steam/DeveloperStorage.lua: + "/Library/Application Support/com.haemimontgames.victorvran.steam/DeveloperStorage.lua": tags: - config when: - os: mac - /Victor Vran/: + "/Victor Vran/": tags: - save when: - os: windows - /Victor Vran/DeveloperStorage.lua: + "/Victor Vran/DeveloperStorage.lua": tags: - config when: - os: windows - /Victor Vran/Victor Vran/: + "/Victor Vran/Victor Vran/": tags: - save when: - os: linux - /Victor Vran/Victor Vran/DeveloperStorage.lua: + "/Victor Vran/Victor Vran/DeveloperStorage.lua": tags: - config when: @@ -605013,15 +606687,15 @@ Victor Vran: installDir: Victor Vran: {} launch: - /VictorVran: + "/VictorVran": - when: - os: linux store: steam - /VictorVranSteam.app: + "/VictorVranSteam.app": - when: - os: mac store: steam - /VictorVranSteam.exe: + "/VictorVranSteam.exe": - when: - os: windows store: steam @@ -605031,7 +606705,7 @@ Victoria (2019): installDir: Victoria: {} launch: - /Victoria.exe: + "/Victoria.exe": - when: - os: windows store: steam @@ -605039,50 +606713,52 @@ Victoria (2019): id: 913260 Victoria 3: files: - /.local/share/Steam/userdata//529340/remote/save games: + "/.local/share/Steam/userdata//529340/remote/save games": tags: - save when: - os: linux - //529340/remote/save games: + "//529340/remote/save games": tags: - save when: - os: windows store: steam - /Paradox Interactive/Victoria 3: + "/Paradox Interactive/Victoria 3": tags: - config when: - os: windows - /Paradox Interactive/Victoria 3/save games: + "/Paradox Interactive/Victoria 3/save games": tags: - save when: - os: windows - /Paradox Interactive/Victoria 3: + "/Paradox Interactive/Victoria 3": tags: - config when: - os: linux - /Paradox Interactive/Victoria 3/save games: + "/Paradox Interactive/Victoria 3/save games": tags: - save when: - os: linux id: steamExtra: - - 2071472 - - 2071471 - 2071470 + - 2071471 + - 2071472 installDir: Victoria 3: {} launch: - /launcher/dowser: + "/launcher/dowser": - when: - os: mac store: steam - /launcher/dowser.exe: + - os: linux + store: steam + "/launcher/dowser.exe": - when: - os: windows store: steam @@ -605090,12 +606766,12 @@ Victoria 3: id: 529340 Victoria II: files: - /save games: + "/save games": tags: - save when: - os: windows - /Paradox Interactive/Victoria 2: + "/Paradox Interactive/Victoria 2": tags: - config when: @@ -605105,14 +606781,14 @@ Victoria II: installDir: Victoria 2: {} launch: - /victoria2.exe: + "/victoria2.exe": - when: - store: steam steam: id: 42960 -'Victoria: An Empire Under the Sun': +"Victoria: An Empire Under the Sun": files: - /Victoria Revolutions/scenarios/save games: + "/Victoria Revolutions/scenarios/save games": tags: - save when: @@ -605122,7 +606798,7 @@ Victoria II: installDir: Victoria Revolutions: {} launch: - /Victoria.exe: + "/Victoria.exe": - when: - store: steam steam: @@ -605131,26 +606807,26 @@ Victorian Admirals: installDir: Victorian Admirals: {} launch: - /Victorian_Admirals.exe: + "/Victorian_Admirals.exe": - when: - store: steam steam: id: 275310 -'Victorian Mysteries: The Yellow Room': +"Victorian Mysteries: The Yellow Room": installDir: Victorian Mysteries - The Yellow Room: {} launch: - /Victorian Mysteries.exe: + "/Victorian Mysteries.exe": - when: - os: windows store: steam steam: id: 1108190 -'Victorian Mysteries: Woman in White': +"Victorian Mysteries: Woman in White": installDir: Woman in White: {} launch: - /Woman in White.exe: + "/Woman in White.exe": - when: - os: windows store: steam @@ -605160,7 +606836,7 @@ Victoriana - Steampunk Text Adventure: installDir: Victoriana - Steampunk Text Adventure: {} launch: - /Victoriana.exe: + "/Victoriana.exe": - when: - os: windows store: steam @@ -605176,17 +606852,17 @@ Victory Road: installDir: Victory Road: {} launch: - /Victory Road.exe: + "/Victory Road.exe": - when: - os: windows store: steam steam: id: 1002430 -'Victory and Glory: Napoleon': +"Victory and Glory: Napoleon": installDir: Victory and Glory Napoleon: {} launch: - /autorun.exe: + "/autorun.exe": - when: - os: windows store: steam @@ -605198,15 +606874,15 @@ Victory at Sea: installDir: VictoryAtSea: {} launch: - /VictoryAtSea.app: + "/VictoryAtSea.app": - when: - os: mac store: steam - /VictoryAtSea.exe: + "/VictoryAtSea.exe": - when: - os: windows store: steam - /VictoryAtSea.x86: + "/VictoryAtSea.x86": - when: - os: linux store: steam @@ -605218,25 +606894,25 @@ Victory at Sea Pacific: installDir: Victory At Sea Pacific: {} launch: - /VictoryAtSeaPacific: + "/VictoryAtSeaPacific": - when: - os: linux store: steam - /VictoryAtSeaPacific.app: + "/VictoryAtSeaPacific.app": - when: - os: mac store: steam - /VictoryAtSeaPacific.exe: + "/VictoryAtSeaPacific.exe": - when: - os: windows store: steam steam: id: 806950 -'Victory: The Age of Racing': +"Victory: The Age of Racing": installDir: Victory: {} launch: - /Victory.exe: + "/Victory.exe": - when: - bit: 32 os: windows @@ -605245,12 +606921,12 @@ Victory at Sea Pacific: id: 264120 Vidar: files: - /Game.ini: + "/Game.ini": tags: - config when: - os: windows - /Save*.rvdata2: + "/Save*.rvdata2": tags: - save when: @@ -605258,15 +606934,15 @@ Vidar: installDir: Vidar: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam - /Vidar.app: + "/Vidar.app": - when: - os: mac store: steam - /launch64: + "/launch64": - when: - bit: 64 os: linux @@ -605277,7 +606953,7 @@ Video Game Trivia: installDir: Video Game Trivia: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -605287,7 +606963,7 @@ Video Horror Society: installDir: VideoHorrorSociety: {} launch: - /VideoHorrorSociety.exe: + "/VideoHorrorSociety.exe": - when: - bit: 64 os: windows @@ -605301,7 +606977,7 @@ VideoGame Construction Set: installDir: Pop Island: {} launch: - /popisland.exe: + "/popisland.exe": - when: - bit: 64 os: windows @@ -605312,7 +606988,7 @@ Videoball: installDir: VIDEOBALL: {} launch: - /Videoball.exe: + "/Videoball.exe": - when: - os: windows store: steam @@ -605322,11 +606998,11 @@ Vienna Automobile Society: installDir: ViennaAutomobileSociety: {} launch: - /Vienna.app: + "/Vienna.app": - when: - os: mac store: steam - /vienna.exe: + "/vienna.exe": - when: - os: windows store: steam @@ -605334,12 +607010,12 @@ Vienna Automobile Society: id: 539560 Vietcong: files: - /Cfg: + "/Cfg": tags: - config when: - os: windows - /Saves: + "/Saves": tags: - save when: @@ -605348,7 +607024,7 @@ Vietcong (2018): installDir: Vietcong: {} launch: - /Vietcong.exe: + "/Vietcong.exe": - when: - os: windows store: steam @@ -605356,33 +607032,33 @@ Vietcong (2018): id: 860190 Vietcong 2: files: - /profiles//cfg: + "/profiles//cfg": tags: - config when: - os: windows - /profiles//saves: + "/profiles//saves": tags: - save when: - os: windows -Vietnam '65: +"Vietnam '65": installDir: Vietnam ‘65: {} launch: - /autorun.exe: + "/autorun.exe": - when: - store: steam steam: id: 336080 -'Vietnam 2: Special Assignment': +"Vietnam 2: Special Assignment": files: - /Save: + "/Save": tags: - save when: - os: windows - /autoexec.cfg: + "/autoexec.cfg": tags: - config when: @@ -605391,7 +607067,7 @@ Vietnam War Puzzles: installDir: Vietnam War PuZZles: {} launch: - /VietnamPuzles.exe: + "/VietnamPuzles.exe": - when: - bit: 64 os: windows @@ -605402,26 +607078,26 @@ Vietnam ‘65: installDir: Vietnam ‘65: {} launch: - /autorun.exe: + "/autorun.exe": - when: - store: steam steam: id: 336080 -'Vietnam: Black Ops': +"Vietnam: Black Ops": files: - /Save: + "/Save": tags: - save when: - os: windows - /autoexec.cfg: + "/autoexec.cfg": tags: - config when: - os: windows Viewfinder: files: - 'C:/Users//AppData/LocalLow/Sad Owl Studios/Viewfinder': + "C:/Users//AppData/LocalLow/Sad Owl Studios/Viewfinder": tags: - save when: @@ -605429,7 +607105,7 @@ Viewfinder: installDir: Viewfinder: {} launch: - /Viewfinder.exe: + "/Viewfinder.exe": - when: - os: windows store: steam @@ -605438,18 +607114,18 @@ Viewfinder: Viewpoints: steam: id: 667960 -'Vigil: Blood Bitterness': +"Vigil: Blood Bitterness": installDir: Vigil Blood Bitterness: {} launch: - /vigil blood bitterness.exe: + "/vigil blood bitterness.exe": - when: - store: steam steam: id: 2570 -'Vigil: The Longest Night': +"Vigil: The Longest Night": files: - /AppData/LocalLow/glassheart/Vigil_Night: + "/AppData/LocalLow/glassheart/Vigil_Night": tags: - config - save @@ -605458,15 +607134,15 @@ Viewpoints: installDir: Vigil The Longest Night: {} launch: - /Contents/MacOS/VigilNight: + "/Contents/MacOS/VigilNight": - when: - os: mac store: steam - /vigil.exe: + "/vigil.exe": - when: - os: windows store: steam - /vigil.x86_64: + "/vigil.x86_64": - when: - os: linux store: steam @@ -605476,20 +607152,20 @@ Vigilantes: installDir: Vigilantes: {} launch: - /Vigilantes.app: + "/Vigilantes.app": - when: - os: mac store: steam - /Vigilantes.exe: + "/Vigilantes.exe": - when: - os: windows store: steam - /Vigilantes.x86: + "/Vigilantes.x86": - when: - bit: 32 os: linux store: steam - /Vigilantes.x86_64: + "/Vigilantes.x86_64": - when: - bit: 64 os: linux @@ -605498,7 +607174,7 @@ Vigilantes: id: 545600 Vignettes: files: - /AppData/LocalLow/Skeleton Business/Vignettes: + "/AppData/LocalLow/Skeleton Business/Vignettes": tags: - save when: @@ -605506,227 +607182,227 @@ Vignettes: installDir: Vignettes: {} launch: - /Vignettes.app: + "/Vignettes.app": - when: - os: mac store: steam - /Vignettes.exe: + "/Vignettes.exe": - when: - bit: 64 os: windows store: steam steam: id: 944340 -'Viki Spotter: Around the World': +"Viki Spotter: Around the World": installDir: Viki Spotter Around The World: {} launch: - /Viki Spotter - Around The World.app/Contents/MacOS/Viki Spotter - Around The World: + "/Viki Spotter - Around The World.app/Contents/MacOS/Viki Spotter - Around The World": - when: - os: mac store: steam - /Viki Spotter - Around The World.exe: + "/Viki Spotter - Around The World.exe": - when: - os: windows store: steam - /Viki Spotter - Around The World.x86: + "/Viki Spotter - Around The World.x86": - when: - os: linux store: steam steam: id: 817490 -'Viki Spotter: Camping': +"Viki Spotter: Camping": installDir: Viki Spotter Camping: {} launch: - /Viki Spotter - Camping.app/Contents/MacOS/Viki Spotter - Camping: + "/Viki Spotter - Camping.app/Contents/MacOS/Viki Spotter - Camping": - when: - os: mac store: steam - /Viki Spotter - Camping.exe: + "/Viki Spotter - Camping.exe": - when: - os: windows store: steam - /Viki Spotter - Camping.x86: + "/Viki Spotter - Camping.x86": - when: - os: linux store: steam steam: id: 893730 -'Viki Spotter: Megapolis': +"Viki Spotter: Megapolis": installDir: Viki Spotter Megapolis: {} launch: - /Viki Spotter - Megapolis.app/Contents/MacOS/Viki Spotter - Megapolis: + "/Viki Spotter - Megapolis.app/Contents/MacOS/Viki Spotter - Megapolis": - when: - os: mac store: steam - /Viki Spotter - Megapolis.exe: + "/Viki Spotter - Megapolis.exe": - when: - os: windows store: steam - /Viki Spotter - Megapolis.x86: + "/Viki Spotter - Megapolis.x86": - when: - os: linux store: steam steam: id: 800230 -'Viki Spotter: Professions': +"Viki Spotter: Professions": installDir: Viki Spotter Professions: {} launch: - /Viki Spotter - Professions.app/Contents/MacOS/Viki Spotter - Professions: + "/Viki Spotter - Professions.app/Contents/MacOS/Viki Spotter - Professions": - when: - os: mac store: steam - /Viki Spotter - Professions.exe: + "/Viki Spotter - Professions.exe": - when: - os: windows store: steam - /Viki Spotter - Professions.x86: + "/Viki Spotter - Professions.x86": - when: - os: linux store: steam steam: id: 935440 -'Viki Spotter: School': +"Viki Spotter: School": installDir: Viki Spotter School: {} launch: - /Viki Spotter - School.app/Contents/MacOS/Viki Spotter - School: + "/Viki Spotter - School.app/Contents/MacOS/Viki Spotter - School": - when: - os: mac store: steam - /Viki Spotter - School.exe: + "/Viki Spotter - School.exe": - when: - os: windows store: steam - /Viki Spotter - School.x86: + "/Viki Spotter - School.x86": - when: - os: linux store: steam steam: id: 812800 -'Viki Spotter: Shopping': +"Viki Spotter: Shopping": installDir: Viki Spotter Shopping: {} launch: - /Viki Spotter - Shopping.app/Contents/MacOS/Viki Spotter - Shopping: + "/Viki Spotter - Shopping.app/Contents/MacOS/Viki Spotter - Shopping": - when: - os: mac store: steam - /Viki Spotter - Shopping.exe: + "/Viki Spotter - Shopping.exe": - when: - os: windows store: steam - /Viki Spotter - Shopping.x86: + "/Viki Spotter - Shopping.x86": - when: - os: linux store: steam steam: id: 829540 -'Viki Spotter: Space Mission': +"Viki Spotter: Space Mission": installDir: Viki Spotter Space Mission: {} launch: - /Viki Spotter - Space Mission.app/Contents/MacOS/Viki Spotter - Space Mission: + "/Viki Spotter - Space Mission.app/Contents/MacOS/Viki Spotter - Space Mission": - when: - os: mac store: steam - /Viki Spotter - Space Mission.exe: + "/Viki Spotter - Space Mission.exe": - when: - os: windows store: steam - /Viki Spotter - Space Mission.x86: + "/Viki Spotter - Space Mission.x86": - when: - os: linux store: steam steam: id: 848280 -'Viki Spotter: Sports': +"Viki Spotter: Sports": installDir: Viki Spotter Sports: {} launch: - /Viki Spotter - Sports.app/Contents/MacOS/Viki Spotter - Sports: + "/Viki Spotter - Sports.app/Contents/MacOS/Viki Spotter - Sports": - when: - os: mac store: steam - /Viki Spotter - Sports.exe: + "/Viki Spotter - Sports.exe": - when: - os: windows store: steam - /Viki Spotter - Sports.x86: + "/Viki Spotter - Sports.x86": - when: - os: linux store: steam steam: id: 853110 -'Viki Spotter: The Farm': +"Viki Spotter: The Farm": installDir: Viki Spotter The Farm: {} launch: - /Viki Spotter - The Farm.app/Contents/MacOS/Viki Spotter - The Farm: + "/Viki Spotter - The Farm.app/Contents/MacOS/Viki Spotter - The Farm": - when: - os: mac store: steam - /Viki Spotter - The Farm.exe: + "/Viki Spotter - The Farm.exe": - when: - os: windows store: steam - /Viki Spotter - The Farm.x86: + "/Viki Spotter - The Farm.x86": - when: - os: linux store: steam steam: id: 788380 -'Viki Spotter: Undersea': +"Viki Spotter: Undersea": installDir: Viki Spotter Undersea: {} launch: - /Viki Spotter - Undersea.app/Contents/MacOS/Viki Spotter - Undersea: + "/Viki Spotter - Undersea.app/Contents/MacOS/Viki Spotter - Undersea": - when: - os: mac store: steam - /Viki Spotter - Undersea.exe: + "/Viki Spotter - Undersea.exe": - when: - os: windows store: steam - /Viki Spotter - Undersea.x86: + "/Viki Spotter - Undersea.x86": - when: - os: linux store: steam steam: id: 792410 -'Viki Spotter: Zoo': +"Viki Spotter: Zoo": installDir: Viki Spotter Zoo: {} launch: - /Viki Spotter - Zoo.app/Contents/MacOS/Viki Spotter - Zoo: + "/Viki Spotter - Zoo.app/Contents/MacOS/Viki Spotter - Zoo": - when: - os: mac store: steam - /Viki Spotter - Zoo.exe: + "/Viki Spotter - Zoo.exe": - when: - os: windows store: steam - /Viki Spotter - Zoo.x86: + "/Viki Spotter - Zoo.x86": - when: - os: linux store: steam steam: id: 931630 -'Viking Age: Odin''s Warrior': +"Viking Age: Odin's Warrior": steam: id: 773380 Viking Brothers: installDir: Viking Brothers: {} launch: - /VikingBrothers.app: + "/VikingBrothers.app": - when: - os: mac store: steam - /VikingBrothers.exe: + "/VikingBrothers.exe": - when: - os: windows store: steam @@ -605736,7 +607412,7 @@ Viking Brothers 2: installDir: VikingBrothers2: {} launch: - /VikingBrothers2.exe: + "/VikingBrothers2.exe": - when: - os: windows store: steam @@ -605746,7 +607422,7 @@ Viking Brothers 3: installDir: Viking Brothers 3: {} launch: - /VikingBrothers3_CE.exe: + "/VikingBrothers3_CE.exe": - when: - os: windows store: steam @@ -605756,7 +607432,7 @@ Viking Brothers 4: installDir: Viking Brothers 4: {} launch: - /VikingBrothers4.exe: + "/VikingBrothers4.exe": - when: - os: windows store: steam @@ -605766,11 +607442,11 @@ Viking Brothers 5: installDir: Viking Brothers 5: {} launch: - /Viking Brothers 5.app/Contents/MacOS/VB5_mac: + "/Viking Brothers 5.app/Contents/MacOS/VB5_mac": - when: - os: mac store: steam - /VikingBrothers5.exe: + "/VikingBrothers5.exe": - when: - os: windows store: steam @@ -605780,21 +607456,21 @@ Viking Brothers 6: installDir: Viking Brothers 6: {} launch: - /VikingBrothers6.exe: + "/VikingBrothers6.exe": - when: - os: windows store: steam steam: id: 1158150 -'Viking Chess: Hnefatafl': +"Viking Chess: Hnefatafl": installDir: Viking Chess Hnefatafl: {} launch: - /Contents/MacOS/Viking Chess Hnefatafl: + "/Contents/MacOS/Viking Chess Hnefatafl": - when: - os: mac store: steam - /Viking Chess Hnefatafl.exe: + "/Viking Chess Hnefatafl.exe": - when: - os: windows store: steam @@ -605815,30 +607491,30 @@ Viking Rage: Viking Rage: {} steam: id: 589150 -'Viking Saga: Epic Adventure': +"Viking Saga: Epic Adventure": installDir: Viking Saga Epic Adventure: {} launch: - /Viking Saga - Epic Adventure.exe: + "/Viking Saga - Epic Adventure.exe": - when: - store: steam steam: id: 573720 -'Viking Saga: New World': +"Viking Saga: New World": installDir: Viking Saga New World: {} launch: - /Viking Saga 2 - New World.exe: + "/Viking Saga 2 - New World.exe": - when: - os: windows store: steam steam: id: 416340 -'Viking Saga: The Cursed Ring': +"Viking Saga: The Cursed Ring": installDir: Viking Saga The Cursed Ring: {} launch: - /VikingSaga.exe: + "/VikingSaga.exe": - when: - store: steam steam: @@ -605847,11 +607523,11 @@ Viking Sisters: installDir: Viking Sisters: {} launch: - /Viking Sisters.app/Contents/MacOS/VS_mac: + "/Viking Sisters.app/Contents/MacOS/VS_mac": - when: - os: mac store: steam - /VikingSisters.exe: + "/VikingSisters.exe": - when: - os: windows store: steam @@ -605859,7 +607535,7 @@ Viking Sisters: id: 1074340 Viking Squad: files: - /Slick Entertainment Inc/VikingSquad: + "/Slick Entertainment Inc/VikingSquad": tags: - save when: @@ -605867,11 +607543,11 @@ Viking Squad: installDir: Viking Squad: {} launch: - /VikingSquad.app/Contents/MacOS/VikingSquad: + "/VikingSquad.app/Contents/MacOS/VikingSquad": - when: - os: mac store: steam - /VikingSquad.exe: + "/VikingSquad.exe": - when: - os: windows store: steam @@ -605881,7 +607557,7 @@ Viking Vengeance: installDir: Viking Vengeance: {} launch: - /Viking Vengeance.exe: + "/Viking Vengeance.exe": - when: - os: windows store: steam @@ -605891,35 +607567,35 @@ Viking Village: installDir: VikingVillage: {} launch: - /VikingVillage.app/Viking Village.app/Contents/MacOS/Viking Village: + "/VikingVillage.app/Viking Village.app/Contents/MacOS/Viking Village": - when: - os: mac store: steam - /VikingVillage.exe: + "/VikingVillage.exe": - when: - bit: 64 os: windows store: steam steam: id: 745750 -Viking's Drakkars: +"Viking's Drakkars": installDir: - Viking's drakkars: {} + "Viking's drakkars": {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam steam: id: 825610 -'Viking: Battle for Asgard': +"Viking: Battle for Asgard": files: - /My Games/Viking/Config: + "/My Games/Viking/Config": tags: - config when: - os: windows - /My Games/Viking/Saved Games: + "/My Games/Viking/Saved Games": tags: - save when: @@ -605927,19 +607603,19 @@ Viking's Drakkars: installDir: Viking Battle for Asgard: {} launch: - /ConfigTool.exe: + "/ConfigTool.exe": - when: - store: steam - /viking.exe: + "/viking.exe": - when: - store: steam steam: id: 211160 -'Viking: Sigurd''s Adventure': +"Viking: Sigurd's Adventure": installDir: - Viking Sigurd's Adventure: {} + "Viking Sigurd's Adventure": {} launch: - /VikingSigurdsAdventure.exe: + "/VikingSigurdsAdventure.exe": - when: - os: windows store: steam @@ -605949,7 +607625,7 @@ VikingJourney: installDir: VikingJourney: {} launch: - /VikingJourney.exe: + "/VikingJourney.exe": - when: - bit: 64 os: windows @@ -605960,24 +607636,24 @@ Vikings Wars: installDir: Vikings Wars: {} launch: - /Vikings Wars.exe: + "/Vikings Wars.exe": - when: - store: steam steam: id: 1216930 -'Vikings: Wolves of Midgard': +"Vikings: Wolves of Midgard": files: - /AppData/LocalLow/Games Farm s_r_o_/Vikings_ Wolves of Midgard: + "/AppData/LocalLow/Games Farm s_r_o_/Vikings_ Wolves of Midgard": tags: - save when: - os: windows - /unity3d/Games Farm s.r.o_/Vikings_ Wolves of Midgard/prefs: + "/unity3d/Games Farm s.r.o_/Vikings_ Wolves of Midgard/prefs": tags: - config when: - os: linux - /unity3d/Games Farm s_r_o_/Vikings_ Wolves of Midgard/saves: + "/unity3d/Games Farm s_r_o_/Vikings_ Wolves of Midgard/saves": tags: - save when: @@ -605987,16 +607663,16 @@ Vikings Wars: installDir: Vikings - Wolves of Midgard: {} launch: - /LaunchVi.exe: + "/LaunchVi.exe": - when: - bit: 64 os: windows store: steam - /Vikings - Wolves of Midgard.app: + "/Vikings - Wolves of Midgard.app": - when: - os: mac store: steam - /vikings.x86_64: + "/vikings.x86_64": - when: - os: linux store: steam @@ -606007,7 +607683,7 @@ Viktaram: id: 562300 Viktor: files: - /Viktor: + "/Viktor": tags: - save when: @@ -606015,17 +607691,17 @@ Viktor: installDir: Viktor: {} launch: - /launcher.exe: + "/launcher.exe": - when: - os: windows store: steam steam: id: 296730 -'Viktor, a Steampunk Adventure': +"Viktor, a Steampunk Adventure": installDir: - 'Viktor, a Steampunk Adventure': {} + "Viktor, a Steampunk Adventure": {} launch: - /viktor.exe: + "/viktor.exe": - when: - os: windows store: steam @@ -606035,15 +607711,15 @@ Vile: installDir: Vile: {} launch: - /nw: + "/nw": - when: - os: linux store: steam - /nw.exe: + "/nw.exe": - when: - os: windows store: steam - /vile.app/Contents/MacOS/nwjs: + "/vile.app/Contents/MacOS/nwjs": - when: - os: mac store: steam @@ -606053,7 +607729,7 @@ Vile Matter: installDir: Vile Matter: {} launch: - /VileMatter.exe: + "/VileMatter.exe": - when: - store: steam steam: @@ -606062,7 +607738,7 @@ Village Bus Driver Simulator: installDir: Village Bus Driver Simulator: {} launch: - /Villige Bus Driver Simulator.exe: + "/Villige Bus Driver Simulator.exe": - when: - os: windows store: steam @@ -606072,7 +607748,7 @@ Village Feud: installDir: Village Feud: {} launch: - /Poly map.exe: + "/Poly map.exe": - when: - store: steam steam: @@ -606081,15 +607757,15 @@ Village Monsters: installDir: Village Monsters: {} launch: - /Village Monsters.app: + "/Village Monsters.app": - when: - os: mac store: steam - /VillageMonsters: + "/VillageMonsters": - when: - os: linux store: steam - /VillageMonsters.exe: + "/VillageMonsters.exe": - when: - os: windows store: steam @@ -606102,7 +607778,7 @@ Village of Adventurers 2: installDir: Village of Adventurers: {} launch: - /bouken2.exe: + "/bouken2.exe": - when: - os: windows store: steam @@ -606112,17 +607788,17 @@ Village of Souls: installDir: Village Of Souls: {} launch: - /VoS.exe: + "/VoS.exe": - when: - os: windows store: steam steam: id: 671670 -Villager's Biography: +"Villager's Biography": installDir: - Villager'sBiography: {} + "Villager'sBiography": {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: @@ -606131,21 +607807,24 @@ Villagers: installDir: Villagers: {} launch: - /Villagers.app: + "/Villagers.app": - when: - os: mac store: steam - /Villagers.exe: + "/Villagers.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam - /Villagers.x86: + "/Villagers.x86": - when: - bit: 32 os: linux store: steam - /Villagers.x86_64: + "/Villagers.x86_64": - when: - bit: 64 os: linux @@ -606156,20 +607835,20 @@ Villagers and Heroes: installDir: VillagersAndHeroes: {} launch: - /AMysticalLandSAC/VillagersAndHeroes.exe: - - arguments: '-useSteam' + "/AMysticalLandSAC/VillagersAndHeroes.exe": + - arguments: "-useSteam" when: - os: windows store: steam - workingDir: /AMysticalLandSAC + workingDir: "/AMysticalLandSAC" steam: id: 263540 Villages: steam: id: 749820 -Villains' Revenge: +"Villains' Revenge": files: - /SaveGame: + "/SaveGame": tags: - save when: @@ -606178,7 +607857,7 @@ VilleTown: installDir: VilleTown: {} launch: - /VilleTown.exe: + "/VilleTown.exe": - when: - os: windows store: steam @@ -606186,7 +607865,7 @@ VilleTown: id: 527250 Vilmonic: files: - /Vilmonic/saves: + "/Vilmonic/saves": tags: - save when: @@ -606194,26 +607873,29 @@ Vilmonic: installDir: Vilmonic: {} launch: - /Vilmonic: + "/Vilmonic": - when: - os: linux store: steam - /Vilmonic.app: + "/Vilmonic.app": - when: - os: mac store: steam - /nw.exe: + "/nw.exe": - when: - bit: 32 os: windows store: steam + - bit: 64 + os: windows + store: steam steam: id: 458330 Viltnemda: installDir: Viltnemda: {} launch: - /Viltnemda.exe: + "/Viltnemda.exe": - when: - os: windows store: steam @@ -606221,7 +607903,7 @@ Viltnemda: id: 1983430 Vincere Totus Astrum: files: - /vta.ini: + "/vta.ini": tags: - config - save @@ -606230,17 +607912,17 @@ Vincere Totus Astrum: installDir: Vincere Totus Astrum: {} launch: - /VTA.exe: + "/VTA.exe": - when: - os: windows store: steam steam: id: 314610 -'Vindicator: Uprising': +"Vindicator: Uprising": installDir: Vindicator Uprising: {} launch: - /Vindicator-Uprising.exe: + "/Vindicator-Uprising.exe": - when: - os: windows store: steam @@ -606260,7 +607942,7 @@ Vindictive Drive: installDir: Vindictive Drive: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -606275,11 +607957,11 @@ Vinewing: installDir: Vinewing: {} launch: - /Vinewing_Mac.app: + "/Vinewing_Mac.app": - when: - os: mac store: steam - /vinewing_pc.exe: + "/vinewing_pc.exe": - when: - os: windows store: steam @@ -606289,7 +607971,7 @@ Vinhomes Metropolis VR Interior: installDir: MetropolisVR: {} launch: - /MissionX.exe: + "/MissionX.exe": - when: - bit: 64 os: windows @@ -606300,20 +607982,20 @@ Vinios: installDir: Vinios: {} launch: - /Vinios.exe: + "/Vinios.exe": - when: - os: windows store: steam steam: id: 1068100 -Vinnie's Diary: +"Vinnie's Diary": steam: id: 846000 Vintage Hero: installDir: Vintage Hero: {} launch: - /VintageHero.exe: + "/VintageHero.exe": - when: - os: windows store: steam @@ -606321,27 +608003,27 @@ Vintage Hero: id: 667240 Vintage Story: files: - /.var/app/at.vintagestory.VintageStory/config/VintagestoryData/Saves: + "/.var/app/at.vintagestory.VintageStory/config/VintagestoryData/Saves": tags: - save when: - os: linux - /.var/app/at.vintagestory.VintageStory/config/VintagestoryData/clientsettings.json: + "/.var/app/at.vintagestory.VintageStory/config/VintagestoryData/clientsettings.json": tags: - config when: - os: linux - /ApplicationData/vintagestory/Saves: + "/ApplicationData/vintagestory/Saves": tags: - save when: - os: linux - /VintagestoryData/Saves: + "/VintagestoryData/Saves": tags: - save when: - os: windows - /VintagestoryData/clientsettings.json: + "/VintagestoryData/clientsettings.json": tags: - config when: @@ -606353,7 +608035,7 @@ Vintage VR: id: 466720 Vintage Year: files: - /nbr/data.nbr: + "/nbr/data.nbr": tags: - config - save @@ -606362,7 +608044,7 @@ Vintage Year: installDir: Vintage Year: {} launch: - /Vintage Year.exe: + "/Vintage Year.exe": - when: - os: windows store: steam @@ -606372,7 +608054,7 @@ Vinyl: installDir: Vinyl: {} launch: - /Vinyl.exe: + "/Vinyl.exe": - when: - os: windows store: steam @@ -606382,7 +608064,7 @@ Vinylove: installDir: Vinylove: {} launch: - /Vinylove.exe: + "/Vinylove.exe": - when: - store: steam steam: @@ -606391,7 +608073,7 @@ Viola: installDir: Viola: {} launch: - /Viola.exe: + "/Viola.exe": - when: - os: windows store: steam @@ -606410,7 +608092,7 @@ Violent Vectors: id: 711640 Violet Cycle: files: - /AppData/LocalLow/Weckr Industries/Violet Cycle/saveData: + "/AppData/LocalLow/Weckr Industries/Violet Cycle/saveData": tags: - save when: @@ -606418,15 +608100,15 @@ Violet Cycle: installDir: Violet Cycle: {} launch: - /VCmac.app: + "/VCmac.app": - when: - os: mac store: steam - /vc.exe: + "/vc.exe": - when: - os: windows store: steam - /vc.x86: + "/vc.x86": - when: - os: linux store: steam @@ -606436,7 +608118,7 @@ Violet Detector: installDir: th165: {} launch: - /th165.exe: + "/th165.exe": - when: - os: windows store: steam @@ -606446,7 +608128,7 @@ Violet Girl - Sexy Encounters: installDir: Violet Girl: {} launch: - /VioletGirl.exe: + "/VioletGirl.exe": - when: - os: windows store: steam @@ -606456,35 +608138,35 @@ Violet Haunted: installDir: VioletHauntedSteam: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam steam: id: 529090 -'Violet rE:-The Final reExistence-': +"Violet rE:-The Final reExistence-": installDir: Violet rE-The final re Existence-: {} launch: - /Violet rE.eXe: + "/Violet rE.eXe": - when: - store: steam steam: id: 1086680 -Violet's Dream VR: +"Violet's Dream VR": installDir: - Violet's Dream VR: {} + "Violet's Dream VR": {} steam: id: 592360 -'Violet: Space Mission': +"Violet: Space Mission": installDir: VIOLET Space Mission: {} launch: - /violet.app/Contents/MacOS/violet: + "/violet.app/Contents/MacOS/violet": - when: - os: mac store: steam - /violet.exe: + "/violet.exe": - when: - os: windows store: steam @@ -606494,15 +608176,15 @@ Violett: installDir: Violett: {} launch: - /violett.app: + "/violett.app": - when: - os: mac store: steam - /violett.exe: + "/violett.exe": - when: - os: windows store: steam - /violett.x86: + "/violett.x86": - when: - os: linux store: steam @@ -606512,7 +608194,7 @@ Viper: installDir: Viper: {} launch: - /pcsxr.exe: + "/pcsxr.exe": - when: - store: steam steam: @@ -606521,7 +608203,7 @@ Viper Attack: installDir: Viper Attack: {} launch: - /Viper Attack.exe: + "/Viper Attack.exe": - when: - os: windows store: steam @@ -606529,12 +608211,12 @@ Viper Attack: id: 897970 Viper Racing: files: - /Config/career: + "/Config/career": tags: - save when: - os: windows - /Config/options.cfg: + "/Config/options.cfg": tags: - config when: @@ -606548,26 +608230,26 @@ Viral: installDir: Viral: {} launch: - /Viral.app: + "/Viral.app": - when: - os: mac store: steam - /exe/Viral.exe: + "/exe/Viral.exe": - when: - os: windows store: steam - workingDir: /exe + workingDir: "/exe" steam: id: 717840 Viral Cry: installDir: Viral Cry: {} launch: - /Viral Cry.app/Contents/MacOS/Viral Cry: + "/Viral Cry.app/Contents/MacOS/Viral Cry": - when: - os: mac store: steam - /Viral Cry.exe: + "/Viral Cry.exe": - when: - os: windows store: steam @@ -606582,7 +608264,7 @@ Virality: installDir: Virality: {} launch: - /Virality.exe: + "/Virality.exe": - when: - os: windows store: steam @@ -606595,13 +608277,13 @@ VireFit: id: 1001390 Virginia: files: - /AppData/LocalLow/Variable State/Virginia: + "/AppData/LocalLow/Variable State/Virginia": tags: - config - save when: - os: windows - /userdata//374030/storage: + "/userdata//374030/storage": tags: - config - save @@ -606612,11 +608294,11 @@ Virginia: installDir: Virginia: {} launch: - /Virginia.app/Contents/MacOS/Virginia: + "/Virginia.app/Contents/MacOS/Virginia": - when: - os: mac store: steam - /Virginia.exe: + "/Virginia.exe": - when: - os: windows store: steam @@ -606628,17 +608310,17 @@ Virginia: id: 374030 Virgo versus the Zodiac: files: - /VvtZ/*.png: + "/VvtZ/*.png": tags: - save when: - os: windows - /VvtZ/*.txt: + "/VvtZ/*.txt": tags: - save when: - os: windows - /VvtZ/config.ini: + "/VvtZ/config.ini": tags: - config when: @@ -606656,15 +608338,15 @@ Virgo versus the Zodiac: installDir: Virgo vs The Zodiac: {} launch: - /Virgo Versus The Zodiac.app: + "/Virgo Versus The Zodiac.app": - when: - os: mac store: steam - /VvtZ: + "/VvtZ": - when: - os: linux store: steam - /VvtZ.exe: + "/VvtZ.exe": - when: - os: windows store: steam @@ -606672,7 +608354,7 @@ Virgo versus the Zodiac: id: 920320 Viriax: files: - /Viriax_1_1/config.ini: + "/Viriax_1_1/config.ini": tags: - config when: @@ -606684,7 +608366,7 @@ Viriax: - os: windows Viridi: files: - /Viridi/Viridi_Data: + "/Viridi/Viridi_Data": tags: - config - save @@ -606693,20 +608375,20 @@ Viridi: installDir: Viridi: {} launch: - /Viridi.app: + "/Viridi.app": - when: - os: mac store: steam - /Viridi.exe: + "/Viridi.exe": - when: - os: windows store: steam - /Viridi.x86: + "/Viridi.x86": - when: - bit: 32 os: linux store: steam - /Viridi.x86_64: + "/Viridi.x86_64": - when: - bit: 64 os: linux @@ -606717,7 +608399,7 @@ VirtuGO: installDir: VirtuGO: {} launch: - /VirtuGO.exe: + "/VirtuGO.exe": - when: - bit: 64 os: windows @@ -606726,63 +608408,63 @@ VirtuGO: id: 699990 Virtua Cop: files: - /VCOP.ini: + "/VCOP.ini": tags: - config when: - os: windows Virtua Cop 2: files: - /PROJECT/vcop2.ini: + "/PROJECT/vcop2.ini": tags: - config when: - os: windows Virtua Fighter 2: files: - /LEARNING/*.VFL: + "/LEARNING/*.VFL": tags: - save when: - os: windows - /PLAYBACK/*.VFP: + "/PLAYBACK/*.VFP": tags: - save when: - os: windows - /VF2.GID: + "/VF2.GID": tags: - save when: - os: windows - /VF2.ini: + "/VF2.ini": tags: - config when: - os: windows - /option.dat: + "/option.dat": tags: - config when: - os: windows Virtua Fighter 2 (2010): files: - /SEGA Genesis Classics/0033: + "/SEGA Genesis Classics/0033": tags: - save when: - os: windows - /SEGA Genesis Classics/setup.dat: + "/SEGA Genesis Classics/setup.dat": tags: - config when: - os: windows - /SEGA Mega Drive Classics/0033: + "/SEGA Mega Drive Classics/0033": tags: - save when: - os: windows - /SEGA Mega Drive Classics/setup.dat: + "/SEGA Mega Drive Classics/setup.dat": tags: - config when: @@ -606791,19 +608473,19 @@ Virtua Fighter 2 (2010): id: 71115 Virtua Fighter PC: files: - /vfpc.ini: + "/vfpc.ini": tags: - config when: - os: windows Virtua Tennis: files: - /VIRTUATENNIS: + "/VIRTUATENNIS": tags: - save when: - os: windows - /VTENNIS.CFG: + "/VTENNIS.CFG": tags: - config when: @@ -606812,29 +608494,29 @@ Virtua Tennis 2009: installDir: Virtua Tennis 2009: {} launch: - /Config.exe: + "/Config.exe": - when: - store: steam - /Virtua Tennis 2009.exe: + "/Virtua Tennis 2009.exe": - when: - store: steam steam: id: 10690 Virtua Tennis 3: files: - /VT3.ini: + "/VT3.ini": tags: - config when: - os: windows Virtua Tennis 4: files: - /Virtua Tennis 4/Saved Games: + "/Virtua Tennis 4/Saved Games": tags: - save when: - os: windows - /Virtua Tennis 4/Saved Games/Config.txt: + "/Virtua Tennis 4/Saved Games/Config.txt": tags: - config when: @@ -606842,12 +608524,12 @@ Virtua Tennis 4: installDir: Virtua Tennis 4: {} launch: - /Launcher.exe: - - arguments: '' + "/Launcher.exe": + - arguments: "" when: - store: steam - /VT4.exe: - - arguments: '' + "/VT4.exe": + - arguments: "" when: - store: steam steam: @@ -606856,7 +608538,7 @@ VirtuaCreature: installDir: VirtuaCreature: {} launch: - /VirtuaCreature.exe: + "/VirtuaCreature.exe": - when: - os: windows store: steam @@ -606869,12 +608551,12 @@ VirtuaLiron - Immersive YOGA practice: id: 1156200 VirtuaVerse: files: - /AppData/LocalLow/Theta Division Games/VirtuaVerse/VirtuaVerse_*.save: + "/AppData/LocalLow/Theta Division Games/VirtuaVerse/VirtuaVerse_*.save": tags: - save when: - os: windows - /.config/unity3d/Theta Division Games/VirtuaVerse: + "/.config/unity3d/Theta Division Games/VirtuaVerse": tags: - config - save @@ -606885,15 +608567,15 @@ VirtuaVerse: installDir: VirtuaVerse: {} launch: - /VirtuaVerse.app/Contents/MacOS/VirtuaVerse: + "/VirtuaVerse.app/Contents/MacOS/VirtuaVerse": - when: - os: mac store: steam - /VirtuaVerse.exe: + "/VirtuaVerse.exe": - when: - os: windows store: steam - /VirtuaVerse.x86_64: + "/VirtuaVerse.x86_64": - when: - bit: 64 os: linux @@ -606909,7 +608591,7 @@ Virtual Arctic Expedition: Virtual Arctic Expedition: {} steam: id: 1049090 -'Virtual Army: Revolution': +"Virtual Army: Revolution": installDir: Virtual Army Revolution: {} steam: @@ -606923,7 +608605,7 @@ Virtual Boxing League: installDir: VirtualBoxingLeague: {} launch: - /VirtualBoxingLeague.exe: + "/VirtualBoxingLeague.exe": - when: - os: windows store: steam @@ -606941,16 +608623,16 @@ Virtual Families: installDir: Virtual Families: {} launch: - /Virtual Families.exe: + "/Virtual Families.exe": - when: - store: steam steam: id: 16200 -'Virtual Families 2: Our Dream House': +"Virtual Families 2: Our Dream House": installDir: Virtual Families 2: {} launch: - /Virtual Families 2.exe: + "/Virtual Families 2.exe": - when: - os: windows store: steam @@ -606965,12 +608647,12 @@ Virtual Foosball: installDir: Virtual Foosball: {} launch: - /VirtualFoosball.exe: + "/VirtualFoosball.exe": - when: - bit: 64 os: windows store: steam - /VirtualFoosballWin32.exe: + "/VirtualFoosballWin32.exe": - when: - bit: 32 os: windows @@ -607004,7 +608686,7 @@ Virtual Pool 4: installDir: Virtual Pool 4: {} launch: - /vp4S.exe: + "/vp4S.exe": - when: - os: windows store: steam @@ -607014,7 +608696,7 @@ Virtual Pool 4 Multiplayer: installDir: Virtual Pool 4 Multiplayer: {} launch: - /launcher.exe: + "/launcher.exe": - when: - os: windows store: steam @@ -607024,7 +608706,7 @@ Virtual Race Car Engineer 2018: installDir: Virtual Race Car Engineer 2018: {} launch: - /VRCE2018.exe: + "/VRCE2018.exe": - when: - os: windows store: steam @@ -607034,7 +608716,7 @@ Virtual Race Car Engineer 2020: installDir: Virtual Race Car Engineer 2020: {} launch: - /VRCE2020.exe: + "/VRCE2020.exe": - when: - bit: 64 os: windows @@ -607065,15 +608747,15 @@ Virtual Rides 3: installDir: Virtual Rides 3: {} launch: - /VR3.app/Contents/MacOS/Virtual Rides 3: + "/VR3.app/Contents/MacOS/Virtual Rides 3": - when: - os: mac store: steam - /VR3.exe: + "/VR3.exe": - when: - os: windows store: steam - /VR3.x86_64: + "/VR3.x86_64": - when: - os: linux store: steam @@ -607083,7 +608765,7 @@ Virtual Robots - Robot Programming Simulator: installDir: Virtual Robots - Robot programming simulator: {} launch: - /VBots.exe: + "/VBots.exe": - when: - os: windows store: steam @@ -607093,7 +608775,7 @@ Virtual Rogue: installDir: Virtual Rogue: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -607108,7 +608790,7 @@ Virtual SlotCars: installDir: Virtual SlotCars: {} launch: - /vsc.exe: + "/vsc.exe": - when: - os: windows store: steam @@ -607126,14 +608808,14 @@ Virtual Surfing: installDir: VirtualSurfing: {} launch: - /VirtualSurfing.exe: + "/VirtualSurfing.exe": - when: - bit: 64 os: windows store: steam steam: id: 993340 -'Virtual Temple: Order of the Golden Dawn': +"Virtual Temple: Order of the Golden Dawn": installDir: Virtual Temple Order of the Golden Dawn: {} steam: @@ -607142,24 +608824,24 @@ Virtual Villagers Origins 2: installDir: Virtual Villagers Origins 2: {} launch: - /Virtual Villagers Origins 2.app: + "/Virtual Villagers Origins 2.app": - when: - os: mac store: steam - /Virtual Villagers Origins 2.exe: + "/Virtual Villagers Origins 2.exe": - when: - os: windows store: steam steam: id: 949050 -'Virtual Villagers: A New Home': +"Virtual Villagers: A New Home": files: - /Isola#.ldw: + "/Isola#.ldw": tags: - save when: - os: windows - /ldw.ini: + "/ldw.ini": tags: - config when: @@ -607167,19 +608849,19 @@ Virtual Villagers Origins 2: installDir: Virtual Villagers: {} launch: - /VirtualVillagers.exe: + "/VirtualVillagers.exe": - when: - store: steam steam: id: 16100 -'Virtual Villagers: The Lost Children': +"Virtual Villagers: The Lost Children": files: - /ldw.ini: + "/ldw.ini": tags: - config when: - os: windows - /Virtual Villagers - The Lost Children/Isola#.ldw: + "/Virtual Villagers - The Lost Children/Isola#.ldw": tags: - save when: @@ -607187,19 +608869,19 @@ Virtual Villagers Origins 2: installDir: Virtual Villagers The Lost Children: {} launch: - /Virtual Villagers - The Lost Children.exe: + "/Virtual Villagers - The Lost Children.exe": - when: - store: steam steam: id: 16110 -'Virtual Villagers: The Secret City': +"Virtual Villagers: The Secret City": files: - /ldw.ini: + "/ldw.ini": tags: - config when: - os: windows - /Virtual Villagers - The Secret City/Virtual Villagers - The Secret City#.ldw: + "/Virtual Villagers - The Secret City/Virtual Villagers - The Secret City#.ldw": tags: - save when: @@ -607207,7 +608889,7 @@ Virtual Villagers Origins 2: installDir: Virtual Villagers 3 The Secret City: {} launch: - /Virtual Villagers - The Secret City.exe: + "/Virtual Villagers - The Secret City.exe": - when: - store: steam steam: @@ -607234,17 +608916,17 @@ Virtual-O: installDir: Virtual-O: {} launch: - /Virtual-O.app/Contents/MacOS/Virtual-O: + "/Virtual-O.app/Contents/MacOS/Virtual-O": - when: - bit: 64 os: mac store: steam - /Virtual-O.exe: + "/Virtual-O.exe": - when: - bit: 64 os: windows store: steam - /Virtual-O.x86_64: + "/Virtual-O.x86_64": - when: - bit: 64 os: linux @@ -607265,7 +608947,7 @@ Virtually Real Life: installDir: Virtually Real Life: {} launch: - /VirtuallyRealLife.exe: + "/VirtuallyRealLife.exe": - when: - os: windows store: steam @@ -607285,7 +608967,7 @@ Virus Crashers: installDir: Virus Crashers: {} launch: - /vcrashes.exe: + "/vcrashes.exe": - when: - store: steam steam: @@ -607294,21 +608976,21 @@ Virus Expansion: installDir: Virus Expansion: {} launch: - /Virus Expansion.app/Contents/MacOS/Virus Expansion: + "/Virus Expansion.app/Contents/MacOS/Virus Expansion": - when: - os: mac store: steam - /Virus Expansion.exe: + "/Virus Expansion.exe": - when: - os: windows store: steam steam: id: 1001810 -Virus Jigglin' Fever: +"Virus Jigglin' Fever": installDir: - Virus Jigglin' Fever: {} + "Virus Jigglin' Fever": {} launch: - /Viruses.exe: + "/Viruses.exe": - when: - os: windows store: steam @@ -607328,21 +609010,21 @@ Virus Z: installDir: Virus Z: {} launch: - /VirusZ.exe: + "/VirusZ.exe": - when: - os: windows store: steam steam: id: 666290 -'Virus of Survivors: Life Simulator': +"Virus of Survivors: Life Simulator": installDir: VIRUS OF SURVIVORSLIFE SIMULATOR: {} launch: - /doctordoctor.app: + "/doctordoctor.app": - when: - os: mac store: steam - /doctordoctor.exe: + "/doctordoctor.exe": - when: - os: windows store: steam @@ -607355,34 +609037,34 @@ Virush: id: 617060 Visage: files: - /SadSquareStudio.Visage_855q6fdw1qbrg/SystemAppData: + "/SadSquareStudio.Visage_855q6fdw1qbrg/SystemAppData": tags: - save when: - os: windows store: microsoft - /Visage/Saved/Config/WinGDK: + "/Visage/Saved/Config/WinGDK": tags: - config when: - os: windows store: microsoft - /Visage/Saved/Config/WindowsNoEditor: + "/Visage/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /Visage/Saved/SaveGames: + "/Visage/Saved/SaveGames": tags: - save when: - os: windows - /Visage/Saved/SaveGames/savedOptions.sav: + "/Visage/Saved/SaveGames/savedOptions.sav": tags: - config when: - os: windows - /Visage/Saved/SaveGames/savedVideoSettings.sav: + "/Visage/Saved/SaveGames/savedVideoSettings.sav": tags: - config when: @@ -607392,7 +609074,7 @@ Visage: installDir: Visage: {} launch: - /Visage.exe: + "/Visage.exe": - when: - bit: 64 os: windows @@ -607401,22 +609083,22 @@ Visage: id: 594330 Viscera Cleanup Detail: files: - /Saves: + "/Saves": tags: - save when: - os: windows - /UDKGame/Config: + "/UDKGame/Config": tags: - config when: - os: windows - /Library/Application Support/Viscera/Saves: + "/Library/Application Support/Viscera/Saves": tags: - save when: - os: mac - /Library/Application Support/Viscera/UDKGame/Config: + "/Library/Application Support/Viscera/UDKGame/Config": tags: - config when: @@ -607424,57 +609106,57 @@ Viscera Cleanup Detail: installDir: Viscera: {} launch: - /Binaries/UDKLift.exe: - - arguments: ' editor' + "/Binaries/UDKLift.exe": + - arguments: " editor" when: - os: windows store: steam - /Binaries/win32/UDK.exe: + "/Binaries/win32/UDK.exe": - when: - os: windows store: steam - /Binaries/win64/UDK.exe: + "/Binaries/win64/UDK.exe": - when: - bit: 64 os: windows store: steam - /VisceraCleanup.app: + "/VisceraCleanup.app": - when: - os: mac store: steam steam: id: 246900 -'Viscera Cleanup Detail: Santa''s Rampage': +"Viscera Cleanup Detail: Santa's Rampage": files: - /Saves/*.sav: + "/Saves/*.sav": tags: - save when: - os: windows - /UDKGame/Config: + "/UDKGame/Config": tags: - config when: - os: windows installDir: - Viscera Cleanup Detail Santa's Rampage: {} + "Viscera Cleanup Detail Santa's Rampage": {} launch: - /Binaries/Win32/UDK.exe: + "/Binaries/Win32/UDK.exe": - when: - store: steam - /Binaries/Win64/UDK.exe: + "/Binaries/Win64/UDK.exe": - when: - store: steam steam: id: 265210 -'Viscera Cleanup Detail: Shadow Warrior': +"Viscera Cleanup Detail: Shadow Warrior": files: - /Saves: + "/Saves": tags: - save when: - os: windows - /UDKGame/Config: + "/UDKGame/Config": tags: - config when: @@ -607484,23 +609166,23 @@ Viscera Cleanup Detail: installDir: Viscera Cleanup Detail Shadow Warrior: {} launch: - /Binaries/Win32/UDK.exe: + "/Binaries/Win32/UDK.exe": - when: - store: steam - /Binaries/Win64/UDK.exe: + "/Binaries/Win64/UDK.exe": - when: - store: steam steam: id: 255520 Viscerafest: files: - /.config/unity3d/Acid Man Games/Viscerafest: + "/.config/unity3d/Acid Man Games/Viscerafest": tags: - config - save when: - os: linux - /AppData/LocalLow/Acid Man Games/Viscerafest: + "/AppData/LocalLow/Acid Man Games/Viscerafest": tags: - config - save @@ -607511,11 +609193,11 @@ Viscerafest: installDir: Viscerafest: {} launch: - /Viscerafest.exe: + "/Viscerafest.exe": - when: - os: windows store: steam - /Viscerafest.x86_64: + "/Viscerafest.x86_64": - when: - os: linux store: steam @@ -607525,20 +609207,20 @@ Visceral Cubes: installDir: Visceral Cubes: {} launch: - /VisceralCubes.app/Contents/MacOS/VisceralCubes: + "/VisceralCubes.app/Contents/MacOS/VisceralCubes": - when: - os: mac store: steam - /VisceralCubes.exe: + "/VisceralCubes.exe": - when: - os: windows store: steam - /VisceralCubes.x86: + "/VisceralCubes.x86": - when: - bit: 32 os: linux store: steam - /VisceralCubes.x86_64: + "/VisceralCubes.x86_64": - when: - bit: 64 os: linux @@ -607549,7 +609231,7 @@ Visibility: installDir: Visibility: {} launch: - /Visibility.exe: + "/Visibility.exe": - when: - os: windows store: steam @@ -607559,7 +609241,7 @@ Vision: installDir: Vision: {} launch: - /Vision.exe: + "/Vision.exe": - when: - bit: 64 os: windows @@ -607575,7 +609257,7 @@ Vision Runner: installDir: Vision Runner: {} launch: - /VisionRunner.exe: + "/VisionRunner.exe": - when: - bit: 64 os: windows @@ -607586,7 +609268,7 @@ Vision Soft Reset: installDir: Vision Soft Reset: {} launch: - /Vision Soft Reset.exe: + "/Vision Soft Reset.exe": - when: - bit: 64 os: windows @@ -607595,12 +609277,12 @@ Vision Soft Reset: id: 1005450 Vision of Aurora Borealis: files: - /renpy/config.py: + "/renpy/config.py": tags: - config when: - os: windows - /RenPy/Vision of Aurora Borealis-1429661742: + "/RenPy/Vision of Aurora Borealis-1429661742": tags: - save when: @@ -607611,15 +609293,15 @@ Vision of Aurora Borealis: installDir: Vision of Aurora Borealis: {} launch: - /Vision of Aurora Borealis.app: + "/Vision of Aurora Borealis.app": - when: - os: mac store: steam - /Vision of Aurora Borealis.exe: + "/Vision of Aurora Borealis.exe": - when: - os: windows store: steam - /Vision of Aurora Borealis.sh: + "/Vision of Aurora Borealis.sh": - when: - os: linux store: steam @@ -607637,7 +609319,7 @@ Visitor: installDir: Visitor: {} launch: - /Visitor.exe: + "/Visitor.exe": - when: - os: windows store: steam @@ -607647,7 +609329,7 @@ Visitor2: installDir: Visitor2: {} launch: - /Visitor2.exe: + "/Visitor2.exe": - when: - os: windows store: steam @@ -607657,17 +609339,17 @@ Visitors: installDir: Visitors: {} launch: - /Visitors.exe: + "/Visitors.exe": - when: - os: windows store: steam steam: id: 520250 -'Visitors: Marine Invasion': +"Visitors: Marine Invasion": installDir: Visitors Marine Invasion: {} launch: - /VisitorsMarineInvasion.exe: + "/VisitorsMarineInvasion.exe": - when: - os: windows store: steam @@ -607677,11 +609359,11 @@ Visser: installDir: visser: {} launch: - /visser.app: + "/visser.app": - when: - os: mac store: steam - /visser.exe: + "/visser.exe": - when: - os: windows store: steam @@ -607696,15 +609378,15 @@ Visual Out: installDir: VisualOut: {} launch: - /nw: + "/nw": - when: - os: linux store: steam - /nw.exe: + "/nw.exe": - when: - os: windows store: steam - /visualout.app/Contents/MacOS/nwjs: + "/visualout.app/Contents/MacOS/nwjs": - when: - os: mac store: steam @@ -607714,7 +609396,7 @@ Vitamin Girl: installDir: Vitamin Girl: {} launch: - /VitaminGirl.exe: + "/VitaminGirl.exe": - when: - os: windows store: steam @@ -607724,14 +609406,14 @@ Vitatio: installDir: VITATIO: {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: id: 659560 Vitatio 2: files: - /PRECISION: + "/PRECISION": tags: - config - save @@ -607740,7 +609422,7 @@ Vitatio 2: installDir: VITATIO 2: {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: @@ -607749,11 +609431,11 @@ Vitrum: installDir: Vitrum: {} launch: - /Vitrum Stage Editor.exe: + "/Vitrum Stage Editor.exe": - when: - os: windows store: steam - /Vitrum.exe: + "/Vitrum.exe": - when: - os: windows store: steam @@ -607761,19 +609443,19 @@ Vitrum: id: 291270 Viva Football: files: - /SaveGame: + "/SaveGame": tags: - save when: - os: windows Viva Piñata: files: - /Saved Games/Microsoft Games/Viva Pinata/Saves/*.Viva: + "/Saved Games/Microsoft Games/Viva Pinata/Saves/*.Viva": tags: - save when: - os: windows - /Saved Games/Microsoft Games/Viva Pinata/pinata.cfg: + "/Saved Games/Microsoft Games/Viva Pinata/pinata.cfg": tags: - config when: @@ -607782,11 +609464,11 @@ Vive le Roi: installDir: Vive le Roi: {} launch: - /ViveleRoi.app: + "/ViveleRoi.app": - when: - os: mac store: steam - /ViveleRoi.exe: + "/ViveleRoi.exe": - when: - bit: 64 os: windows @@ -607797,7 +609479,7 @@ Vive le Roi 2: installDir: Vive le Roi 2: {} launch: - /Vive le Roi 2.exe: + "/Vive le Roi 2.exe": - when: - bit: 64 os: windows @@ -607818,7 +609500,7 @@ Vivez Versailles: installDir: Vivez Versailles: {} launch: - /VivezVersailles.exe: + "/VivezVersailles.exe": - when: - bit: 64 os: windows @@ -607829,7 +609511,7 @@ ViviEon: installDir: ViviEon: {} launch: - /ViviEon.exe: + "/ViviEon.exe": - when: - os: windows store: steam @@ -607842,7 +609524,7 @@ Viviette: installDir: Viviette: {} launch: - /viviette.exe: + "/viviette.exe": - when: - os: windows store: steam @@ -607850,12 +609532,12 @@ Viviette: id: 883070 Vivisector - Beast Within: files: - /Data/Save: + "/Data/Save": tags: - save when: - os: windows - /config.cfg: + "/config.cfg": tags: - config when: @@ -607864,7 +609546,7 @@ Vixen Wars: installDir: Vixen Wars: {} launch: - /VixenWars.exe: + "/VixenWars.exe": - when: - os: windows store: steam @@ -607874,7 +609556,7 @@ Vixens From Outer Space: installDir: Vixens From outer Space: {} launch: - /VFOS_Game.exe: + "/VFOS_Game.exe": - when: - os: windows store: steam @@ -607884,11 +609566,11 @@ Vlad the Impaler: installDir: Vlad: {} launch: - /Vlad.app: + "/Vlad.app": - when: - os: mac store: steam - /Vlad.exe: + "/Vlad.exe": - when: - os: windows store: steam @@ -607900,11 +609582,11 @@ Vladimir Putin Style: Vodka: steam: id: 655010 -'Vogue, The Explorer': +"Vogue, The Explorer": installDir: - 'Vogue, the Explorer': {} + "Vogue, the Explorer": {} launch: - /export.exe: + "/export.exe": - when: - os: windows store: steam @@ -607914,7 +609596,7 @@ Voice Actress: installDir: VoiceActress: {} launch: - /VoiceActress.exe: + "/VoiceActress.exe": - when: - os: windows store: steam @@ -607924,15 +609606,15 @@ Voice Actress II: installDir: VoiceActress2: {} launch: - /VoiceActress2.exe: + "/VoiceActress2.exe": - when: - os: windows store: steam steam: id: 831460 -'Voice of Cards: The Forsaken Maiden': +"Voice of Cards: The Forsaken Maiden": files: - /My Games/VoiceofCardsTheForsakenMaiden/Steam/: + "/My Games/VoiceofCardsTheForsakenMaiden/Steam/": tags: - save when: @@ -607940,18 +609622,18 @@ Voice Actress II: installDir: VoiceofCardsTheForsakenMaiden: {} launch: - /VoiceofCardsTheForsakenMaiden.exe: + "/VoiceofCardsTheForsakenMaiden.exe": - when: - store: steam registry: - 'HKEY_CURRENT_USER/Software/SQUARE ENIX CO., LTD./Voice of Cards The Forsaken Maiden': + "HKEY_CURRENT_USER/Software/SQUARE ENIX CO., LTD./Voice of Cards The Forsaken Maiden": tags: - config steam: id: 1748660 -'Voice of Cards: The Isle Dragon Roars': +"Voice of Cards: The Isle Dragon Roars": files: - /My Games/VoiceofCardsTheIsleDragonRoars/Steam/: + "/My Games/VoiceofCardsTheIsleDragonRoars/Steam/": tags: - save when: @@ -607959,12 +609641,12 @@ Voice Actress II: installDir: VoiceofCardsTheIsleDragonRoars: {} launch: - /VoiceofCardsTheIsleDragonRoars.exe: + "/VoiceofCardsTheIsleDragonRoars.exe": - when: - os: windows store: steam registry: - 'HKEY_CURRENT_USER/SOFTWARE/SQUARE ENIX CO., LTD./Voice of Cards The Isle Dragon Roars': + "HKEY_CURRENT_USER/SOFTWARE/SQUARE ENIX CO., LTD./Voice of Cards The Isle Dragon Roars": tags: - config steam: @@ -607973,15 +609655,15 @@ Voice of Pripyat: installDir: VoiceOfPripyat: {} launch: - /vop3d.app: + "/vop3d.app": - when: - os: mac store: steam - /vop3d.exe: + "/vop3d.exe": - when: - os: windows store: steam - /vop3d.x86: + "/vop3d.x86": - when: - os: linux store: steam @@ -607989,7 +609671,7 @@ Voice of Pripyat: id: 269530 Voices from the Sea: files: - /Voices from the Sea - Steam/Savegame: + "/Voices from the Sea - Steam/Savegame": tags: - save when: @@ -607997,7 +609679,7 @@ Voices from the Sea: installDir: Voices from the Sea: {} launch: - /voices_online.exe: + "/voices_online.exe": - when: - os: windows store: steam @@ -608007,12 +609689,12 @@ Void: installDir: Void: {} launch: - /Void_Mac.app: + "/Void_Mac.app": - when: - bit: 64 os: mac store: steam - /Void_Win.exe: + "/Void_Win.exe": - when: - bit: 64 os: windows @@ -608023,16 +609705,16 @@ Void & Nothingness: installDir: Void And Nothingness: {} launch: - /van.app/Contents/MacOS/van: + "/van.app/Contents/MacOS/van": - when: - bit: 64 os: mac store: steam - /van.exe: + "/van.exe": - when: - os: windows store: steam - /van.sh: + "/van.sh": - when: - os: linux store: steam @@ -608042,20 +609724,20 @@ Void 21: installDir: Void 21: {} launch: - /Void21.exe: + "/Void21.exe": - when: - os: windows store: steam - /void21.app: + "/void21.app": - when: - os: mac store: steam - /void21.x86: + "/void21.x86": - when: - bit: 32 os: linux store: steam - /void21.x86_64: + "/void21.x86_64": - when: - bit: 64 os: linux @@ -608064,13 +609746,13 @@ Void 21: id: 444550 Void Bastards: files: - /AppData/LocalLow/BlueManchu/VoidBastards: + "/AppData/LocalLow/BlueManchu/VoidBastards": tags: - config - save when: - os: windows - /Library/Application Support/BlueManchu/VoidBastards: + "/Library/Application Support/BlueManchu/VoidBastards": tags: - config - save @@ -608081,11 +609763,11 @@ Void Bastards: installDir: Void Bastards: {} launch: - /Void Bastards.app/Contents/MacOS/Void Bastards: + "/Void Bastards.app/Contents/MacOS/Void Bastards": - when: - os: mac store: steam - /Void Bastards.exe: + "/Void Bastards.exe": - when: - bit: 64 os: windows @@ -608096,7 +609778,7 @@ Void Breach: installDir: Void Breach: {} launch: - /Void Breach.exe: + "/Void Breach.exe": - when: - os: windows store: steam @@ -608106,17 +609788,17 @@ Void Cube Runner: installDir: Void Cube Runner: {} launch: - /VCR.exe: + "/VCR.exe": - when: - os: windows store: steam steam: id: 726810 -'Void Dementia: Forgotten Memory': +"Void Dementia: Forgotten Memory": installDir: Void_Dementia: {} launch: - /VoidDementia.exe: + "/VoidDementia.exe": - when: - os: windows store: steam @@ -608124,12 +609806,12 @@ Void Cube Runner: id: 1538640 Void Destroyer: files: - /Config: + "/Config": tags: - config when: - os: windows - /Save: + "/Save": tags: - save when: @@ -608137,7 +609819,7 @@ Void Destroyer: installDir: VoidDestroyer: {} launch: - /VoidDestroyer.exe: + "/VoidDestroyer.exe": - when: - bit: 32 os: windows @@ -608148,7 +609830,7 @@ Void Destroyer 2: installDir: Void Destroyer 2: {} launch: - /Void Destroyer 2.exe: + "/Void Destroyer 2.exe": - when: - bit: 32 os: windows @@ -608159,14 +609841,14 @@ Void Eclipse: installDir: Void Eclipse: {} launch: - /Stellar.exe: + "/Stellar.exe": - when: - store: steam steam: id: 1192700 Void Invaders: files: - /VoidInvaders: + "/VoidInvaders": tags: - save when: @@ -608174,7 +609856,7 @@ Void Invaders: installDir: VoidInvaders: {} launch: - /VoidInvaders.exe: + "/VoidInvaders.exe": - when: - os: windows store: steam @@ -608187,7 +609869,7 @@ Void Link: id: 560550 Void Memory: files: - /Void_Memory: + "/Void_Memory": tags: - save when: @@ -608195,7 +609877,7 @@ Void Memory: installDir: Void Memory: {} launch: - /Void Memory.exe: + "/Void Memory.exe": - when: - os: windows store: steam @@ -608205,15 +609887,15 @@ Void Mine: installDir: Void Mine: {} launch: - /Mine.app: + "/Mine.app": - when: - os: mac store: steam - /Mine.exe: + "/Mine.exe": - when: - os: windows store: steam - /Mine.x86: + "/Mine.x86": - when: - os: linux store: steam @@ -608223,7 +609905,7 @@ Void Pyramid: installDir: Void Pyramid: {} launch: - /voidpyramid.exe: + "/voidpyramid.exe": - when: - os: windows store: steam @@ -608233,7 +609915,7 @@ Void Raiders: installDir: Void Raiders: {} launch: - /VoidRaiders.exe: + "/VoidRaiders.exe": - when: - os: windows store: steam @@ -608250,15 +609932,15 @@ Void Scrappers: installDir: Void Scrappers: {} launch: - /Contents/MacOS/VoidScrappers: + "/Contents/MacOS/VoidScrappers": - when: - os: mac store: steam - /VoidScrappers.exe: + "/VoidScrappers.exe": - when: - os: windows store: steam - /VoidScrappers.x86_64: + "/VoidScrappers.x86_64": - when: - os: linux store: steam @@ -608268,7 +609950,7 @@ Void Source: installDir: Void Source: {} launch: - /Void Source.exe: + "/Void Source.exe": - when: - os: windows store: steam @@ -608276,12 +609958,12 @@ Void Source: id: 611770 Void Stranger: files: - /void_stranger/save.vs: + "/void_stranger/save.vs": tags: - save when: - os: windows - /void_stranger/settings.vs: + "/void_stranger/settings.vs": tags: - config when: @@ -608289,7 +609971,7 @@ Void Stranger: installDir: Void Stranger: {} launch: - /VoidStranger.exe: + "/VoidStranger.exe": - when: - os: windows store: steam @@ -608297,7 +609979,7 @@ Void Stranger: id: 2121980 Void Tyrant: files: - /appdata/locallow/Quite Fresh/Void Tyrant: + "/appdata/locallow/Quite Fresh/Void Tyrant": tags: - save when: @@ -608305,11 +609987,11 @@ Void Tyrant: installDir: Void Tyrant: {} launch: - /Void Tyrant.exe: + "/Void Tyrant.exe": - when: - os: windows store: steam - /game.exe: + "/game.exe": - when: - store: steam steam: @@ -608318,11 +610000,11 @@ Void Vikings: installDir: Void Vikings: {} launch: - /VoidVikings.app: + "/VoidVikings.app": - when: - os: mac store: steam - /VoidVikings.exe: + "/VoidVikings.exe": - when: - os: windows store: steam @@ -608332,7 +610014,7 @@ Void Wisp: installDir: Void Wisp: {} launch: - /Void Wisp.exe: + "/Void Wisp.exe": - when: - os: windows store: steam @@ -608340,7 +610022,7 @@ Void Wisp: id: 664110 Void and Meddler: files: - /AppData/LocalLow/NO cvt/Void and Meddler: + "/AppData/LocalLow/NO cvt/Void and Meddler": tags: - save when: @@ -608348,11 +610030,11 @@ Void and Meddler: installDir: VoidandMeddler: {} launch: - /Void&Meddler.exe: + "/Void&Meddler.exe": - when: - os: windows store: steam - /Void_Meddler.app: + "/Void_Meddler.app": - when: - os: mac store: steam @@ -608362,21 +610044,21 @@ Void of Heroes: installDir: Void Of Heroes: {} launch: - /VoidOfHeroes.exe: + "/VoidOfHeroes.exe": - when: - os: windows store: steam steam: id: 1146730 -Void's Calling ep.1: +"Void's Calling ep.1": installDir: - Void's Calling: {} + "Void's Calling": {} launch: - /VoidCalling.exe: + "/VoidCalling.exe": - when: - os: windows store: steam - /VoidCalling.sh: + "/VoidCalling.sh": - when: - os: linux store: steam @@ -608384,17 +610066,17 @@ Void's Calling ep.1: id: 1212020 VoidExpanse: files: - /.config/AtomicTorchStudio/VoidExpanse/Saves: + "/.config/AtomicTorchStudio/VoidExpanse/Saves": tags: - save when: - os: linux - /AtomicTorchStudio/VoidExpanse: + "/AtomicTorchStudio/VoidExpanse": tags: - config when: - os: windows - /AtomicTorchStudio/VoidExpanse/Saves: + "/AtomicTorchStudio/VoidExpanse/Saves": tags: - save when: @@ -608402,20 +610084,20 @@ VoidExpanse: installDir: VoidExpanse: {} launch: - /VoidExpanse.app: + "/VoidExpanse.app": - when: - os: mac store: steam - /VoidExpanse.exe: + "/VoidExpanse.exe": - when: - os: windows store: steam - /VoidExpanse.x86: + "/VoidExpanse.x86": - when: - bit: 32 os: linux store: steam - /VoidExpanse.x86_64: + "/VoidExpanse.x86_64": - when: - bit: 64 os: linux @@ -608426,7 +610108,7 @@ VoidGate: installDir: VoidGate: {} launch: - /VoidGate/VoidGate.exe: + "/VoidGate/VoidGate.exe": - when: - bit: 64 os: windows @@ -608435,7 +610117,7 @@ VoidGate: id: 971530 Voidigo: files: - /voidigo/settings.dat: + "/voidigo/settings.dat": tags: - config when: @@ -608443,7 +610125,7 @@ Voidigo: installDir: Voidigo: {} launch: - /voidigo.exe: + "/voidigo.exe": - when: - os: windows store: steam @@ -608453,7 +610135,7 @@ Voidlifted: installDir: Voidlifted: {} launch: - /Voidlifted.exe: + "/Voidlifted.exe": - when: - os: windows store: steam @@ -608463,7 +610145,7 @@ Voidrun: installDir: Voidrun: {} launch: - /voidrun.exe: + "/voidrun.exe": - when: - store: steam - arguments: hlboot_dx.dat @@ -608475,18 +610157,18 @@ Voidrunner: installDir: Voidrunner: {} launch: - /Voidrunner/Voidrunner.exe: + "/Voidrunner/Voidrunner.exe": - when: - bit: 64 os: windows store: steam steam: id: 513190 -'Voidship: The Long Journey': +"Voidship: The Long Journey": installDir: Voidship The Long Journey: {} launch: - /Voidship.exe: + "/Voidship.exe": - when: - os: windows store: steam @@ -608496,21 +610178,23 @@ Voidspace: installDir: Voidspace: {} launch: - /Voidspace.exe: + "/Voidspace.exe": - when: - os: windows store: steam - /Voidspace.sh: + "/Voidspace.sh": - when: - os: mac store: steam + - os: linux + store: steam steam: id: 1150500 Voidspire Tactics: installDir: Voidspire Tactics: {} launch: - /VoidspireTactics.exe: + "/VoidspireTactics.exe": - when: - os: windows store: steam @@ -608518,12 +610202,12 @@ Voidspire Tactics: id: 415920 Voidtrain: files: - /VoidTrain/Saved/Config/WindowsNoEditor: + "/VoidTrain/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /VoidTrain/Saved/SaveGames: + "/VoidTrain/Saved/SaveGames": tags: - save when: @@ -608531,8 +610215,8 @@ Voidtrain: installDir: Voidtrain: {} launch: - /VoidTrain.exe: - - arguments: '-EOS_OVERLAY_DISABLE' + "/VoidTrain.exe": + - arguments: "-EOS_OVERLAY_DISABLE" when: - bit: 64 os: windows @@ -608543,17 +610227,17 @@ Voipas: installDir: Voipas: {} launch: - /Voipas.exe: + "/Voipas.exe": - when: - os: windows store: steam steam: id: 1029750 -Vol'Talkes - The AI War: +"Vol'Talkes - The AI War": installDir: - Vol'Talkes - The AI War: {} + "Vol'Talkes - The AI War": {} launch: - /TAIW.exe: + "/TAIW.exe": - when: - os: windows store: steam @@ -608563,7 +610247,7 @@ VolChaos: installDir: VolChaos: {} launch: - /VolChaos.exe: + "/VolChaos.exe": - when: - os: windows store: steam @@ -608573,11 +610257,11 @@ Volantia: installDir: Volantia: {} launch: - /Volantia.app/Contents/MacOS/Volantia: + "/Volantia.app/Contents/MacOS/Volantia": - when: - os: mac store: steam - /Volantia.exe: + "/Volantia.exe": - when: - os: windows store: steam @@ -608587,7 +610271,7 @@ Volatile Triangle: installDir: Volatile Triangle: {} launch: - /VT.exe: + "/VT.exe": - when: - os: windows store: steam @@ -608597,7 +610281,7 @@ Volcan Defend the Tower: installDir: VolcanDefendTheTower: {} launch: - /VolcanDefendTheTower.exe: + "/VolcanDefendTheTower.exe": - when: - os: windows store: steam @@ -608607,15 +610291,15 @@ Volcanic Blocks: installDir: Volcanic Blocks: {} launch: - /Volcanic Blocks.app/Contents/MacOS/Volcanic Blocks: + "/Volcanic Blocks.app/Contents/MacOS/Volcanic Blocks": - when: - os: mac store: steam - /Volcanic Blocks.exe: + "/Volcanic Blocks.exe": - when: - os: windows store: steam - /Volcanic Blocks.x86: + "/Volcanic Blocks.x86": - when: - os: linux store: steam @@ -608630,7 +610314,7 @@ Volcano Tower: installDir: Volcano Tower: {} launch: - /volcano.exe: + "/volcano.exe": - when: - os: windows store: steam @@ -608638,22 +610322,22 @@ Volcano Tower: id: 778650 Volcanoids: files: - /.config/unity3d/Volcanoid/Volcanoids: + "/.config/unity3d/Volcanoid/Volcanoids": tags: - config when: - os: linux - /.config/unity3d/Volcanoid/Volcanoids/Saves: + "/.config/unity3d/Volcanoid/Volcanoids/Saves": tags: - save when: - os: linux - /AppData/LocalLow/Volcanoid/Volcanoids: + "/AppData/LocalLow/Volcanoid/Volcanoids": tags: - config when: - os: windows - /AppData/LocalLow/Volcanoid/Volcanoids/Saves: + "/AppData/LocalLow/Volcanoid/Volcanoids/Saves": tags: - save when: @@ -608661,12 +610345,12 @@ Volcanoids: installDir: Volcanoids: {} launch: - /Volcanoids.app/Contents/MacOS/Volcanoids: + "/Volcanoids.app/Contents/MacOS/Volcanoids": - when: - os: mac store: steam - /Volcanoids.exe: - - arguments: '-show-screen-selector' + "/Volcanoids.exe": + - arguments: "-show-screen-selector" when: - bit: 64 os: windows @@ -608677,7 +610361,7 @@ Vole Complexity: installDir: Vole Complexity: {} launch: - /VoleComplexity.exe: + "/VoleComplexity.exe": - when: - os: windows store: steam @@ -608685,22 +610369,22 @@ Vole Complexity: id: 1133260 Volgarr the Viking: files: - /Content/Resources: + "/Content/Resources": tags: - save when: - os: mac - /Content/Resources/config.ini: + "/Content/Resources/config.ini": tags: - config when: - os: mac - /Content/Resources/user.ini: + "/Content/Resources/user.ini": tags: - config when: - os: mac - /Crazy Viking Studios/Volgarr the Viking: + "/Crazy Viking Studios/Volgarr the Viking": tags: - config - save @@ -608711,15 +610395,15 @@ Volgarr the Viking: installDir: Volgarr: {} launch: - /Volgarr: + "/Volgarr": - when: - os: linux store: steam - /Volgarr.app: + "/Volgarr.app": - when: - os: mac store: steam - /Volgarr.exe: + "/Volgarr.exe": - when: - os: windows store: steam @@ -608734,7 +610418,7 @@ Volkstein: installDir: Volkstein: {} launch: - /windows_content/Volkstein.exe: + "/windows_content/Volkstein.exe": - when: - bit: 64 os: windows @@ -608750,7 +610434,7 @@ Volleyball Fever Flat: installDir: Volleyball Fever Flat: {} launch: - /Volleyball Fever Flat.exe: + "/Volleyball Fever Flat.exe": - when: - bit: 64 os: windows @@ -608761,11 +610445,11 @@ Volleyball Heaven: installDir: Volleyball Heaven: {} launch: - /VolleyballHeaven.exe: + "/VolleyballHeaven.exe": - when: - os: windows store: steam - /VolleyballHeaven.sh: + "/VolleyballHeaven.sh": - when: - os: linux store: steam @@ -608775,7 +610459,7 @@ Volleyball Unbound - Pro Beach Volleyball: installDir: VolleyballUnbound: {} launch: - /VolleyballUnbound.exe: + "/VolleyballUnbound.exe": - when: - os: windows store: steam @@ -608785,11 +610469,11 @@ Volleying: installDir: Volleying: {} launch: - /Volleying.exe: + "/Volleying.exe": - when: - os: windows store: steam - /play: + "/play": - when: - bit: 64 os: linux @@ -608800,7 +610484,7 @@ Vollun: installDir: vollun: {} launch: - /vollun.exe: + "/vollun.exe": - when: - bit: 64 os: windows @@ -608811,20 +610495,23 @@ Volo Airsport: installDir: Volo Airsport: {} launch: - /volo_airsport.app: + "/volo_airsport.app": - when: - os: mac store: steam - /volo_airsport.exe: + "/volo_airsport.exe": - when: - os: windows store: steam - /volo_airsport.x86: + - bit: 32 + os: windows + store: steam + "/volo_airsport.x86": - when: - bit: 32 os: linux store: steam - /volo_airsport.x86_64: + "/volo_airsport.x86_64": - when: - bit: 64 os: linux @@ -608841,7 +610528,7 @@ Volseons: id: 709040 Volstead: files: - /Volstead/config.ini: + "/Volstead/config.ini": tags: - config when: @@ -608852,20 +610539,20 @@ Volt: installDir: Volt: {} launch: - /Volt.exe: + "/Volt.exe": - when: - os: windows store: steam - /volt.app: + "/volt.app": - when: - os: mac store: steam - /volt.x86: + "/volt.x86": - when: - bit: 32 os: linux store: steam - /volt.x86_64: + "/volt.x86_64": - when: - bit: 64 os: linux @@ -608876,7 +610563,7 @@ Volt Patrol: installDir: Volt Patrol: {} launch: - /Volt Patrol.exe: + "/Volt Patrol.exe": - when: - os: windows store: steam @@ -608886,7 +610573,7 @@ Voltage: installDir: Voltage: {} launch: - /Voltage.exe: + "/Voltage.exe": - when: - os: windows store: steam @@ -608896,7 +610583,7 @@ Voltage Drop: installDir: Voltage Drop: {} launch: - /vdrop.exe: + "/vdrop.exe": - when: - os: windows store: steam @@ -608906,11 +610593,11 @@ Volted: installDir: Volted: {} launch: - /volted.app: + "/volted.app": - when: - os: mac store: steam - /volted.exe: + "/volted.exe": - when: - os: windows store: steam @@ -608920,29 +610607,29 @@ VolticPistol: installDir: VolticPistol: {} launch: - /VolticPistol.exe: + "/VolticPistol.exe": - when: - os: windows store: steam - /VolticPistolLinuxBuild.bin.osx: + "/VolticPistolLinuxBuild.bin.osx": - when: - os: mac store: steam - /VolticPistolLinuxBuild.bin.x86_64: + "/VolticPistolLinuxBuild.bin.x86_64": - when: - os: linux store: steam steam: id: 1143570 -'Voltron: Cubes of Olkarion': +"Voltron: Cubes of Olkarion": installDir: Voltron Cubes of Olkarion: {} launch: - /Cubes of Olkarion.app/Contents/MacOS/Cubes of Olkarion: + "/Cubes of Olkarion.app/Contents/MacOS/Cubes of Olkarion": - when: - os: mac store: steam - /Cubes of Olkarion.exe: + "/Cubes of Olkarion.exe": - when: - os: windows store: steam @@ -608950,12 +610637,12 @@ VolticPistol: id: 1078550 Volume: files: - /AppData/LocalLow/Bithell Games/Volume/set: + "/AppData/LocalLow/Bithell Games/Volume/set": tags: - config when: - os: windows - /userdata//365770/remote: + "/userdata//365770/remote": tags: - save when: @@ -608963,11 +610650,11 @@ Volume: installDir: Volume: {} launch: - /Volume.app/Contents/MacOS/Volume: + "/Volume.app/Contents/MacOS/Volume": - when: - os: mac store: steam - /Volume.exe: + "/Volume.exe": - when: - os: windows store: steam @@ -608978,17 +610665,17 @@ Volume Up: id: 1115540 Volvo - The Game: files: - /SimBin/Volvo - The Game/Config.ini: + "/SimBin/Volvo - The Game/Config.ini": tags: - config when: - os: windows - /SimBin/Volvo - The Game/UserData/: + "/SimBin/Volvo - The Game/UserData/": tags: - save when: - os: windows - /SimBin/Volvo - The Game/UserData/ControlSet: + "/SimBin/Volvo - The Game/UserData/ControlSet": tags: - config when: @@ -608997,20 +610684,20 @@ Volvox: installDir: Volvox: {} launch: - /Volvox.app/Contents/MacOS/Volvox: + "/Volvox.app/Contents/MacOS/Volvox": - when: - os: mac store: steam - /Volvox.exe: + "/Volvox.exe": - when: - os: windows store: steam - /Volvox.x86: + "/Volvox.x86": - when: - bit: 32 os: linux store: steam - /Volvox.x86_64: + "/Volvox.x86_64": - when: - bit: 64 os: linux @@ -609019,7 +610706,7 @@ Volvox: id: 392600 Vomitoreum: files: - /Vomitoreum: + "/Vomitoreum": tags: - config - save @@ -609028,12 +610715,12 @@ Vomitoreum: installDir: Vomitoreum: {} launch: - /Vomitoreum: + "/Vomitoreum": - when: - bit: 64 os: linux store: steam - /Vomitoreum/Vomitoreum.exe: + "/Vomitoreum/Vomitoreum.exe": - when: - os: windows store: steam @@ -609041,12 +610728,12 @@ Vomitoreum: id: 1549750 Voodolls: files: - /Saves/PlayerData.json: + "/Saves/PlayerData.json": tags: - save when: - os: windows - /AppData/LocalLow/SideRift/Voodolls/Saves/PlayerData.save: + "/AppData/LocalLow/SideRift/Voodolls/Saves/PlayerData.save": tags: - config - save @@ -609057,7 +610744,7 @@ Voodolls: installDir: Voodolls: {} launch: - /Voodolls.exe: + "/Voodolls.exe": - when: - store: steam registry: @@ -609066,11 +610753,11 @@ Voodolls: - config steam: id: 2144830 -'Voodoo Chronicles: The First Sign HD - Director''s Cut Edition': +"Voodoo Chronicles: The First Sign HD - Director's Cut Edition": installDir: VoodooChronicles: {} launch: - /Voodoo chronicles - First sign HD.exe: + "/Voodoo chronicles - First sign HD.exe": - when: - store: steam steam: @@ -609081,15 +610768,15 @@ Voodoo Detective: installDir: Voodoo Detective: {} launch: - /Voodoo Detective.app/Contents/MacOS/Voodoo Detective: + "/Voodoo Detective.app/Contents/MacOS/Voodoo Detective": - when: - os: mac store: steam - /Voodoo Detective.exe: + "/Voodoo Detective.exe": - when: - os: windows store: steam - /Voodoo Detective.x86_64: + "/Voodoo Detective.x86_64": - when: - os: linux store: steam @@ -609099,8 +610786,8 @@ Voodoo Dice: installDir: Voodoo Dice: {} launch: - /VoodooDice.exe: - - arguments: \"Data\\VoodooDice.stk\" + "/VoodooDice.exe": + - arguments: "\\\"Data\\\\VoodooDice.stk\\\"" when: - store: steam steam: @@ -609109,7 +610796,7 @@ Voodoo Garden: installDir: Voodoo Garden: {} launch: - /Voodoo Garden.exe: + "/Voodoo Garden.exe": - when: - os: windows store: steam @@ -609121,15 +610808,15 @@ Voodoo Kid: installDir: Voodoo Kid: {} launch: - /vdk.app/Contents/MacOS/vdk: + "/vdk.app/Contents/MacOS/vdk": - when: - os: mac store: steam - /vdk.exe: + "/vdk.exe": - when: - os: windows store: steam - /vdk.x86_64: + "/vdk.x86_64": - when: - os: linux store: steam @@ -609137,22 +610824,23 @@ Voodoo Kid: id: 1378260 Voodoo Vince Remastered: files: - /Packages/6DA520A3.1673586F56C6C_ykvmsk3s73586/SystemAppData/wgs/: + "/Packages/6DA520A3.1673586F56C6C_ykvmsk3s73586/SystemAppData/wgs/": tags: - save when: - os: windows store: microsoft - /VoodooVince: + "/VoodooVince": tags: - config - save when: - - store: steam + - os: windows + store: steam installDir: Voodoo Vince Remastered: {} launch: - /Vince.exe: + "/Vince.exe": - when: - os: windows store: steam @@ -609162,7 +610850,7 @@ Voodoo Whisperer Curse of a Legend: installDir: Voodoo Whisperer Curse of a Legend: {} launch: - /VoodooWhisperer_CurseofaLegend.exe: + "/VoodooWhisperer_CurseofaLegend.exe": - when: - store: steam steam: @@ -609176,7 +610864,7 @@ Vortex: installDir: Vortex: {} launch: - /Vortex/Binaries/Win64/Vortex.exe: + "/Vortex/Binaries/Win64/Vortex.exe": - when: - bit: 64 os: windows @@ -609187,7 +610875,7 @@ Vortex Attack: installDir: Vortex_Attack: {} launch: - /VortexAttack.exe: + "/VortexAttack.exe": - when: - os: windows store: steam @@ -609197,7 +610885,7 @@ Vortex Attack EX: installDir: Vortex Attack EX: {} launch: - /VortexAttackEX.exe: + "/VortexAttackEX.exe": - when: - bit: 64 os: windows @@ -609208,7 +610896,7 @@ Vortex Rush: installDir: VortexRush: {} launch: - /VortexRush.exe: + "/VortexRush.exe": - when: - os: windows store: steam @@ -609218,32 +610906,32 @@ Vortex of Pain: installDir: Vortex Of Pain: {} launch: - /VoP.exe: + "/VoP.exe": - when: - bit: 64 os: windows store: steam steam: id: 887170 -'Vortex: The Gateway': +"Vortex: The Gateway": installDir: Vortex The Gateway: {} launch: - /Vortex The Gateway.app: + "/Vortex The Gateway.app": - when: - os: mac store: steam - /vortex.exe: + "/vortex.exe": - when: - os: windows store: steam steam: id: 406170 -'Vosaria: Lair of the Forgotten': +"Vosaria: Lair of the Forgotten": installDir: Vosaria: {} launch: - /Vosaria.exe: + "/Vosaria.exe": - when: - os: windows store: steam @@ -609251,7 +610939,7 @@ Vortex of Pain: id: 876480 Vostok Inc.: files: - /AppData/LocalLow/Nosebleed Interactive/Vostok Inc_/VostokSaveData.dat: + "/AppData/LocalLow/Nosebleed Interactive/Vostok Inc_/VostokSaveData.dat": tags: - save when: @@ -609259,7 +610947,7 @@ Vostok Inc.: installDir: Vostok Inc: {} launch: - /vostok Inc.exe: + "/vostok Inc.exe": - when: - os: windows store: steam @@ -609271,12 +610959,12 @@ Vostok Inc.: id: 656460 Vox: files: - /media/config: + "/media/config": tags: - config when: - os: windows - /media/world: + "/media/world": tags: - save when: @@ -609284,12 +610972,12 @@ Vox: installDir: Vox: {} launch: - /Vox.exe: + "/Vox.exe": - when: - bit: 32 os: windows store: steam - /Vox_64.exe: + "/Vox_64.exe": - when: - bit: 64 os: windows @@ -609300,7 +610988,7 @@ Vox Machinae: installDir: Vox Machinae: {} launch: - /vm.exe: + "/vm.exe": - when: - bit: 64 os: windows @@ -609311,7 +610999,7 @@ Vox Populi Vox Dei 2: installDir: Vox Populi Vox Dei(a werewolf thriller) Episode 2: {} launch: - /VP2.exe: + "/VP2.exe": - when: - os: windows store: steam @@ -609324,17 +611012,17 @@ Vox-L: id: 541150 Voxatron: files: - /.lexaloffle/Voxatron/config.txt: + "/.lexaloffle/Voxatron/config.txt": tags: - config when: - os: linux - /.lexaloffle/Voxatron/player: + "/.lexaloffle/Voxatron/player": tags: - save when: - os: linux - /.lexaloffle/Voxatron/save: + "/.lexaloffle/Voxatron/save": tags: - save when: @@ -609343,11 +611031,11 @@ Voxel Baller: installDir: Voxel Baller: {} launch: - /VoxelBaller.x86_64: + "/VoxelBaller.x86_64": - when: - os: linux store: steam - /voxelBaller.exe: + "/voxelBaller.exe": - when: - os: windows store: steam @@ -609357,15 +611045,15 @@ Voxel Blast: installDir: Voxel Blast: {} launch: - /VoxelBlast.app: + "/VoxelBlast.app": - when: - os: mac store: steam - /VoxelBlast.exe: + "/VoxelBlast.exe": - when: - os: windows store: steam - /VoxelBlast.x86: + "/VoxelBlast.x86": - when: - os: linux store: steam @@ -609375,11 +611063,11 @@ Voxel Bot: installDir: Voxel Bot: {} launch: - /Voxel Bot Ubuntu.x86_64: + "/Voxel Bot Ubuntu.x86_64": - when: - os: linux store: steam - /Voxel Bot.exe: + "/Voxel Bot.exe": - when: - os: windows store: steam @@ -609395,7 +611083,7 @@ Voxel Interceptor: installDir: Voxel Interceptor: {} launch: - /Voxel Interceptor.exe: + "/Voxel Interceptor.exe": - when: - os: windows store: steam @@ -609405,11 +611093,11 @@ Voxel M.R.T.: installDir: Voxel MRT: {} launch: - /Voxel M.R.T...app: + "/Voxel M.R.T...app": - when: - os: mac store: steam - /Voxel M.R.T..exe: + "/Voxel M.R.T..exe": - when: - os: windows store: steam @@ -609419,7 +611107,7 @@ Voxel Race: installDir: Voxel Race: {} launch: - /Voxel Race.exe: + "/Voxel Race.exe": - when: - store: steam steam: @@ -609428,7 +611116,7 @@ Voxel Scavenger: installDir: Voxel Scavenger: {} launch: - /Voxel Scavenger.exe: + "/Voxel Scavenger.exe": - when: - os: windows store: steam @@ -609443,7 +611131,7 @@ Voxel Sword: installDir: Voxel Sword: {} launch: - /VoxelSword.exe: + "/VoxelSword.exe": - when: - os: windows store: steam @@ -609458,7 +611146,7 @@ Voxel Tanks: installDir: VoxelTanks: {} launch: - /VoxelTanks.exe: + "/VoxelTanks.exe": - when: - os: windows store: steam @@ -609466,12 +611154,12 @@ Voxel Tanks: id: 852720 Voxel Turf: files: - /.steam/steam/steamapps/common/Voxel Turf: + "/.steam/steam/steamapps/common/Voxel Turf": tags: - config when: - os: linux - /.steam/steam/steamapps/common/Voxel Turf/savegames: + "/.steam/steam/steamapps/common/Voxel Turf/savegames": tags: - save when: @@ -609479,14 +611167,14 @@ Voxel Turf: installDir: Voxel Turf: {} launch: - /vtclient: - - arguments: '--steam' + "/vtclient": + - arguments: "--steam" when: - bit: 64 os: linux store: steam - /vtclient.exe: - - arguments: '--steam' + "/vtclient.exe": + - arguments: "--steam" when: - os: windows store: steam @@ -609494,27 +611182,27 @@ Voxel Turf: id: 404530 Voxel Tycoon: files: - /AppData/LocalLow/VoxelTycoon/VoxelTycoon/Saves: + "/AppData/LocalLow/VoxelTycoon/VoxelTycoon/Saves": tags: - save when: - os: windows - /Library/Application Support/com.VoxelTycoon.VoxelTycoon: + "/Library/Application Support/com.VoxelTycoon.VoxelTycoon": tags: - config when: - os: mac - /Library/Application Support/com.VoxelTycoon.VoxelTycoon/Saves: + "/Library/Application Support/com.VoxelTycoon.VoxelTycoon/Saves": tags: - save when: - os: mac - /unity3d/VoxelTycoon/VoxelTycoon: + "/unity3d/VoxelTycoon/VoxelTycoon": tags: - config when: - os: linux - /unity3d/VoxelTycoon/VoxelTycoon/Saves: + "/unity3d/VoxelTycoon/VoxelTycoon/Saves": tags: - save when: @@ -609522,16 +611210,16 @@ Voxel Tycoon: installDir: VoxelTycoon: {} launch: - /VoxelTycoon: + "/VoxelTycoon": - when: - bit: 64 os: linux store: steam - /VoxelTycoon.app: + "/VoxelTycoon.app": - when: - os: mac store: steam - /VoxelTycoon.exe: + "/VoxelTycoon.exe": - when: - bit: 64 os: windows @@ -609542,7 +611230,7 @@ VoxelWorld: installDir: VoxelWorld: {} launch: - /VoxelWorld.exe: + "/VoxelWorld.exe": - when: - store: steam steam: @@ -609551,7 +611239,7 @@ Voxelaxy: installDir: Voxelaxy: {} launch: - /Voxelaxy.exe: + "/Voxelaxy.exe": - when: - os: windows store: steam @@ -609559,22 +611247,22 @@ Voxelaxy: id: 681750 Voxelgram: files: - /AppData/LocalLow/Procedural Level/Voxelgram/Progress/InputBinding.json: + "/AppData/LocalLow/Procedural Level/Voxelgram/Progress/InputBinding.json": tags: - config when: - os: windows - /AppData/LocalLow/Procedural Level/Voxelgram/Progress/Settings.json: + "/AppData/LocalLow/Procedural Level/Voxelgram/Progress/Settings.json": tags: - config when: - os: windows - /AppData/LocalLow/Procedural Level/Voxelgram/Progress/User.bjson: + "/AppData/LocalLow/Procedural Level/Voxelgram/Progress/User.bjson": tags: - save when: - os: windows - /unity3d/Procedural Level/Voxelgram/Progress: + "/unity3d/Procedural Level/Voxelgram/Progress": tags: - save when: @@ -609582,11 +611270,14 @@ Voxelgram: installDir: Voxelgram: {} launch: - /Voxelgram.exe: + "/Voxelgram.exe": - when: - bit: 64 os: windows store: steam + - bit: 64 + os: linux + store: steam registry: HKEY_CURRENT_USER/Software/Procedural Level/Voxelgram: tags: @@ -609610,23 +611301,25 @@ Voyage to Farland: installDir: Voyage to Farland: {} launch: - /Voyage.exe: + "/Voyage.exe": - when: - os: windows store: steam - /voyage_launch.sh: + "/voyage_launch.sh": - when: + - os: mac + store: steam - os: linux store: steam steam: id: 364790 -'Voyage: Journey to the Moon': +"Voyage: Journey to the Moon": gog: id: 1749322974 installDir: Journey to the Moon: {} launch: - /Moon.exe: + "/Moon.exe": - when: - os: windows store: steam @@ -609636,7 +611329,7 @@ Voyagers: installDir: Voyagers: {} launch: - /Voyagers.exe: + "/Voyagers.exe": - when: - os: windows store: steam @@ -609649,12 +611342,12 @@ Voyeur: id: 1414500 Vpet: files: - /Saves: + "/Saves": tags: - save when: - os: windows - /Setting.lps: + "/Setting.lps": tags: - config when: @@ -609662,12 +611355,12 @@ Vpet: installDir: VPet: {} launch: - /VPet-Simulator.Windows.exe: + "/VPet-Simulator.Windows.exe": - when: - bit: 64 os: windows store: steam - /VPet-Simulator.Windows_x86.exe: + "/VPet-Simulator.Windows_x86.exe": - when: - bit: 32 os: windows @@ -609683,12 +611376,12 @@ VridniX: installDir: vridniX: {} launch: - /win32/vridniX32.exe: + "/win32/vridniX32.exe": - when: - bit: 32 os: windows store: steam - /win64/vridniX64.exe: + "/win64/vridniX64.exe": - when: - bit: 64 os: windows @@ -609699,7 +611392,7 @@ Vroom Kaboom: installDir: VroomKaboom: {} launch: - /x64/VroomKaboom.exe: + "/x64/VroomKaboom.exe": - arguments: novr when: - bit: 64 @@ -609711,17 +611404,17 @@ Vroomist: installDir: Vroomist: {} launch: - /Vroomist.exe: + "/Vroomist.exe": - when: - os: windows store: steam steam: id: 464690 -'Vugluskr: Zombie Rampage': +"Vugluskr: Zombie Rampage": installDir: Vugluskr Zombie Rampage: {} launch: - /vugluskr.exe: + "/vugluskr.exe": - when: - bit: 64 os: windows @@ -609732,7 +611425,7 @@ Vulcan Sacrifice: installDir: Vulcan Sacrifice: {} launch: - /VulcanSacrifice_Win64.exe: + "/VulcanSacrifice_Win64.exe": - when: - bit: 64 os: windows @@ -609746,20 +611439,20 @@ Vulture: installDir: Vulture: {} launch: - /Vulture.app/Contents/MacOS/Vulture: + "/Vulture.app/Contents/MacOS/Vulture": - when: - os: mac store: steam - /Vulture.exe: + "/Vulture.exe": - when: - os: windows store: steam - /Vulture.x86: + "/Vulture.x86": - when: - bit: 32 os: linux store: steam - /Vulture.x86_64: + "/Vulture.x86_64": - when: - bit: 64 os: linux @@ -609770,7 +611463,7 @@ Vulture Island: installDir: Vulture Island: {} launch: - /VultureIsland.exe: + "/VultureIsland.exe": - when: - os: windows store: steam @@ -609780,20 +611473,20 @@ Vulture Strike: installDir: Vulture Strike: {} launch: - /VultureStrike.app: + "/VultureStrike.app": - when: - os: mac store: steam - /VultureStrike.exe: + "/VultureStrike.exe": - when: - os: windows store: steam - /VultureStrike.x86: + "/VultureStrike.x86": - when: - bit: 32 os: linux store: steam - /VultureStrike.x86_64: + "/VultureStrike.x86_64": - when: - bit: 64 os: linux @@ -609802,12 +611495,7 @@ Vulture Strike: id: 635590 Vulture for NetHack: files: - /Variants/NetHack/*/.nethackrc: - tags: - - config - when: - - os: windows - /.nethackrc: + "/.nethackrc": tags: - config when: @@ -609818,48 +611506,48 @@ Vulture for NetHack: installDir: Vulture for NetHack: {} launch: - /Variants/NetHack/3.4.3/Vulture-NetHack-3.4.3.exe: + "/Variants/NetHack/3.4.3/Vulture-NetHack-3.4.3.exe": - when: - os: windows store: steam - workingDir: /Variants/NetHack/3.4.3 - /Variants/NetHack/3.4.3/vulture-nethack-3.4.3: + workingDir: "/Variants/NetHack/3.4.3" + "/Variants/NetHack/3.4.3/vulture-nethack-3.4.3": - when: - os: linux store: steam - workingDir: /Variants/NetHack/3.4.3 - /Variants/NetHack/3.6.6/Vulture-NetHack-3.6.6.exe: + workingDir: "/Variants/NetHack/3.4.3" + "/Variants/NetHack/3.6.6/Vulture-NetHack-3.6.6.exe": - when: - os: windows store: steam - workingDir: /Variants/NetHack/3.6.6 - /Variants/NetHack/3.6.6/vulture-nethack-3.6.6: + workingDir: "/Variants/NetHack/3.6.6" + "/Variants/NetHack/3.6.6/vulture-nethack-3.6.6": - when: - os: linux store: steam - workingDir: /Variants/NetHack/3.6.6 + workingDir: "/Variants/NetHack/3.6.6" steam: id: 341390 -'Vzerthos: The Heir of Thunder': +"Vzerthos: The Heir of Thunder": installDir: Vzerthos: {} launch: - /Vzerthos.exe: + "/Vzerthos.exe": - when: - os: windows store: steam - /runner: + "/runner": - when: - os: linux store: steam - workingDir: /assets + workingDir: "/assets" steam: id: 536450 W. T. B.: installDir: W T B: {} launch: - /wtb.exe: + "/wtb.exe": - when: - store: steam steam: @@ -609868,7 +611556,7 @@ W.H.A.L.E.: installDir: WHALE: {} launch: - /WHALE.exe: + "/WHALE.exe": - when: - bit: 64 os: windows @@ -609879,17 +611567,17 @@ W4RR-i/o-RS: installDir: W4RR-io-RS: {} launch: - /W4RR-io-RS/w4rr-io-rs.exe: + "/W4RR-io-RS/w4rr-io-rs.exe": - when: - os: windows store: steam steam: id: 752780 -'W4RR-i/o-RS: Descent': +"W4RR-i/o-RS: Descent": installDir: W4RR-io-RS Descent: {} launch: - /W4RR-io-RS~Descent~.exe: + "/W4RR-io-RS~Descent~.exe": - when: - os: windows store: steam @@ -609900,7 +611588,7 @@ WAIFU Wars Online: id: 923830 WAKFU: files: - /Ankama/Wakfu: + "/Ankama/Wakfu": tags: - config when: @@ -609908,24 +611596,24 @@ WAKFU: installDir: Wakfu: {} launch: - '/Ankama Launcher [steam].app': - - arguments: '-steam:215080' + "/Ankama Launcher [steam].app": + - arguments: "-steam:215080" when: - os: mac store: steam - '/Ankama Launcher [steam].exe': - - arguments: '-steam:215080' + "/Ankama Launcher [steam].exe": + - arguments: "-steam:215080" when: - os: windows store: steam - /Ankama Launcher-Setup-i386.AppImage: - - arguments: '-steam:215080' + "/Ankama Launcher-Setup-i386.AppImage": + - arguments: "-steam:215080" when: - bit: 32 os: linux store: steam - /Ankama Launcher-Setup-x86_64.AppImage: - - arguments: '-steam:215080' + "/Ankama Launcher-Setup-x86_64.AppImage": + - arguments: "-steam:215080" when: - bit: 64 os: linux @@ -609934,7 +611622,7 @@ WAKFU: id: 215080 WALL-E: files: - /WALL-E: + "/WALL-E": tags: - save when: @@ -609942,7 +611630,7 @@ WALL-E: installDir: WALL E: {} launch: - /WALL-E/WALL-E.exe: + "/WALL-E/WALL-E.exe": - when: - store: steam registry: @@ -609955,17 +611643,17 @@ WAR Pig - Big Bang: installDir: WAR Pig - Big Bang: {} launch: - /War_Pig_Big_Bang_steam.exe: + "/War_Pig_Big_Bang_steam.exe": - when: - os: windows store: steam steam: id: 736610 -'WAR WAR WAR: Smiles vs Ghosts': +"WAR WAR WAR: Smiles vs Ghosts": installDir: Smiles vs Ghosts: {} launch: - /WAR_WAR_WAR. Smiles vs Ghosts.exe: + "/WAR_WAR_WAR. Smiles vs Ghosts.exe": - when: - os: windows store: steam @@ -609975,7 +611663,7 @@ WAR7: installDir: War7: {} launch: - /war7.exe: + "/war7.exe": - when: - os: windows store: steam @@ -609985,7 +611673,7 @@ WARED: installDir: WARED: {} launch: - /WAReD.exe: + "/WAReD.exe": - when: - os: windows store: steam @@ -609993,7 +611681,7 @@ WARED: id: 1001990 WARNO: files: - /Saved Games/EugenSystems/WARNO: + "/Saved Games/EugenSystems/WARNO": tags: - config when: @@ -610001,7 +611689,7 @@ WARNO: installDir: WARNO: {} launch: - /WARNO.exe: + "/WARNO.exe": - when: - os: windows store: steam @@ -610011,17 +611699,17 @@ WARP-TEK: installDir: WARP-TEK: {} launch: - /Linux/64/launch_warptek.sh: + "/Linux/64/launch_warptek.sh": - when: - bit: 64 os: linux store: steam - workingDir: /Linux/64 - /WARP-TEK.app: + workingDir: "/Linux/64" + "/WARP-TEK.app": - when: - os: mac store: steam - /Windows/32/WARP-TEK.exe: + "/Windows/32/WARP-TEK.exe": - when: - os: windows store: steam @@ -610034,7 +611722,7 @@ WARZONE: installDir: WARZONE: {} launch: - /Warzone.exe: + "/Warzone.exe": - when: - os: windows store: steam @@ -610043,14 +611731,14 @@ WARZONE: WASDead: steam: id: 912680 -'WASDead: Complete Edition': +"WASDead: Complete Edition": steam: id: 1189950 WATCH: installDir: WATCH: {} launch: - /Watch_Ch1_2.exe: + "/Watch_Ch1_2.exe": - when: - store: steam steam: @@ -610059,7 +611747,7 @@ WAyE: installDir: WAyE: {} launch: - /WAyE.exe: + "/WAyE.exe": - when: - bit: 64 os: windows @@ -610070,7 +611758,7 @@ WBTR - Welcome Back To Reality: installDir: WBTR: {} launch: - /WBTR.exe: + "/WBTR.exe": - when: - bit: 64 os: windows @@ -610081,7 +611769,7 @@ WEJAM: installDir: WEJAM: {} launch: - /WEJAM.exe: + "/WEJAM.exe": - when: - os: windows store: steam @@ -610091,7 +611779,7 @@ WELCOME: installDir: WELCOME: {} launch: - /WELCOME.exe: + "/WELCOME.exe": - when: - bit: 64 os: windows @@ -610102,7 +611790,7 @@ WEscape: installDir: WEscape: {} launch: - /WEscape.exe: + "/WEscape.exe": - when: - store: steam steam: @@ -610111,7 +611799,7 @@ WHO IS AWESOME: installDir: WHO IS AWESOME: {} launch: - /WHOISAWESOME.exe: + "/WHOISAWESOME.exe": - when: - os: windows store: steam @@ -610121,7 +611809,7 @@ WIDE CROSS: installDir: Wide Cross: {} launch: - /WideCross.exe: + "/WideCross.exe": - when: - os: windows store: steam @@ -610131,7 +611819,7 @@ WISGR: installDir: WISGR: {} launch: - /WISGR.exe: + "/WISGR.exe": - when: - os: windows store: steam @@ -610146,14 +611834,14 @@ WORDER: WORLDS at WAR (Monitors Only): steam: id: 1010080 -'WRC 10: FIA World Rally Championship': +"WRC 10: FIA World Rally Championship": files: - /userdata//1462810/remote/SAVEDATA: + "/userdata//1462810/remote/SAVEDATA": tags: - save when: - store: steam - /My Games/WRC10/UserSettings.cfg: + "/My Games/WRC10/UserSettings.cfg": tags: - config when: @@ -610161,33 +611849,33 @@ WORLDS at WAR (Monitors Only): installDir: WRC 10 FIA World Rally Championship: {} launch: - /WRC10.exe: + "/WRC10.exe": - when: - bit: 64 os: windows store: steam steam: id: 1462810 -'WRC 3: FIA World Rally Championship': +"WRC 3: FIA World Rally Championship": files: - /Milestone/WRC3: + "/Milestone/WRC3": tags: - config when: - os: windows - /Milestone/WRC3/Saves: + "/Milestone/WRC3/Saves": tags: - save when: - os: windows -'WRC 4: FIA World Rally Championship': +"WRC 4: FIA World Rally Championship": files: - /Milestone/WRC4: + "/Milestone/WRC4": tags: - config when: - os: windows - /Milestone/WRC4/Saves: + "/Milestone/WRC4/Saves": tags: - save when: @@ -610195,14 +611883,14 @@ WORLDS at WAR (Monitors Only): installDir: WRC 4: {} launch: - /WRC4.exe: + "/WRC4.exe": - when: - store: steam steam: id: 256330 -'WRC 5: FIA World Rally Championship': +"WRC 5: FIA World Rally Championship": files: - /My Games/WRC5: + "/My Games/WRC5": tags: - config when: @@ -610211,9 +611899,9 @@ WORLDS at WAR (Monitors Only): WRC 5: {} steam: id: 354160 -'WRC 6: FIA World Rally Championship': +"WRC 6: FIA World Rally Championship": files: - /userdata//458770: + "/userdata//458770": tags: - save when: @@ -610223,9 +611911,9 @@ WORLDS at WAR (Monitors Only): WRC 6: {} steam: id: 458770 -'WRC 7: FIA World Rally Championship': +"WRC 7: FIA World Rally Championship": files: - /userdata//621830/remote: + "/userdata//621830/remote": tags: - save when: @@ -610234,21 +611922,21 @@ WORLDS at WAR (Monitors Only): installDir: WRC 7: {} launch: - /WRC7.exe: + "/WRC7.exe": - when: - bit: 64 os: windows store: steam steam: id: 621830 -'WRC 8: FIA World Rally Championship': +"WRC 8: FIA World Rally Championship": files: - /My Games/WRC8/SAVEDATA: + "/My Games/WRC8/SAVEDATA": tags: - save when: - os: windows - /My Games/WRC8/Usersettings.cfg: + "/My Games/WRC8/Usersettings.cfg": tags: - config when: @@ -610256,21 +611944,21 @@ WORLDS at WAR (Monitors Only): installDir: WRC 8 FIA World Rally Championship: {} launch: - /WRC8.exe: + "/WRC8.exe": - when: - bit: 64 os: windows store: steam steam: id: 1004750 -'WRC 9: FIA World Rally Championship': +"WRC 9: FIA World Rally Championship": files: - /My Games/WRC9/SAVEDATA: + "/My Games/WRC9/SAVEDATA": tags: - save when: - os: windows - /My Games/WRC9/UserSettings.cfg: + "/My Games/WRC9/UserSettings.cfg": tags: - config when: @@ -610278,7 +611966,7 @@ WORLDS at WAR (Monitors Only): installDir: WRC 9 FIA World Rally Championship: {} launch: - /WRC9.exe: + "/WRC9.exe": - when: - bit: 64 os: windows @@ -610287,12 +611975,12 @@ WORLDS at WAR (Monitors Only): id: 1267540 WRC Generations: files: - /userdata//1953520/remote: + "/userdata//1953520/remote": tags: - save when: - store: steam - /My Games/WRCG/UserSettings.cfg: + "/My Games/WRCG/UserSettings.cfg": tags: - config when: @@ -610300,7 +611988,7 @@ WRC Generations: installDir: WRC Generations - The FIA WRC Official Game: {} launch: - /WRCG.exe: + "/WRCG.exe": - when: - bit: 64 os: windows @@ -610309,7 +611997,7 @@ WRC Generations: id: 1953520 WRC Powerslide: files: - /Milestone/WRC Powerslide: + "/Milestone/WRC Powerslide": tags: - config - save @@ -610318,24 +612006,24 @@ WRC Powerslide: installDir: WRC Powerslide: {} launch: - /WRCPowerslide.exe: + "/WRCPowerslide.exe": - when: - store: steam steam: id: 256350 -'WRC: FIA World Rally Championship': +"WRC: FIA World Rally Championship": files: - /BlackBean/WRC/Config.ini: + "/BlackBean/WRC/Config.ini": tags: - config when: - os: windows - /BlackBean/WRC/Saves: + "/BlackBean/WRC/Saves": tags: - save when: - os: windows - /BlackBean/WRC/Settings.dat: + "/BlackBean/WRC/Settings.dat": tags: - config when: @@ -610344,11 +612032,11 @@ WREN: installDir: WREN: {} launch: - /WREN.app/Contents/MacOS/WREN: + "/WREN.app/Contents/MacOS/WREN": - when: - os: mac store: steam - /WREN.exe: + "/WREN.exe": - when: - os: windows store: steam @@ -610363,7 +612051,7 @@ WRONGED: installDir: WRONGED: {} launch: - /WRONGED/WRONGED v1_5_1/WRONGED.exe: + "/WRONGED/WRONGED v1_5_1/WRONGED.exe": - when: - store: steam steam: @@ -610372,15 +612060,15 @@ WTF: installDir: WhatTheFAQ: {} launch: - /WhatTheFAQ.app/Contents/MacOS/WhatTheFAQ: + "/WhatTheFAQ.app/Contents/MacOS/WhatTheFAQ": - when: - os: mac store: steam - /WhatTheFAQ.exe: + "/WhatTheFAQ.exe": - when: - os: windows store: steam - /WhatTheFAQ.x86: + "/WhatTheFAQ.x86": - when: - os: linux store: steam @@ -610390,7 +612078,7 @@ WW Fantasy: installDir: WW Fantasy: {} launch: - /WW Fantasy.exe: + "/WW Fantasy.exe": - when: - store: steam steam: @@ -610400,11 +612088,11 @@ WW2 Zombie Range VR: WW2 Z Range VR: {} steam: id: 1088010 -'WW2: Bunker Simulator': +"WW2: Bunker Simulator": installDir: WW2 Bunker Simulator: {} launch: - /WW2 Bunker Simulator.exe: + "/WW2 Bunker Simulator.exe": - when: - os: windows store: steam @@ -610412,12 +612100,12 @@ WW2 Zombie Range VR: id: 1155870 WWE 2K Battlegrounds: files: - /WWEPlaygrounds/Saved/Config/WindowsNoEditor: + "/WWEPlaygrounds/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /WWEPlaygrounds/Saved/SaveGames: + "/WWEPlaygrounds/Saved/SaveGames": tags: - save when: @@ -610425,7 +612113,7 @@ WWE 2K Battlegrounds: installDir: WWE 2K Battlegrounds: {} launch: - /WWEBattlegrounds.exe: + "/WWEBattlegrounds.exe": - when: - bit: 64 os: windows @@ -610434,13 +612122,13 @@ WWE 2K Battlegrounds: id: 1142100 WWE 2K15: files: - /userdata//240460/remote: + "/userdata//240460/remote": tags: - save when: - os: windows store: steam - /WWE2K15/config.ini: + "/WWE2K15/config.ini": tags: - config when: @@ -610448,7 +612136,7 @@ WWE 2K15: installDir: WWE 2K15: {} launch: - /WWE2K15Launcher.exe: + "/WWE2K15Launcher.exe": - when: - bit: 64 os: windows @@ -610457,13 +612145,13 @@ WWE 2K15: id: 240460 WWE 2K16: files: - /userdata//385730/remote: + "/userdata//385730/remote": tags: - save when: - os: windows store: steam - /WWE2K16/config.ini: + "/WWE2K16/config.ini": tags: - config when: @@ -610471,7 +612159,7 @@ WWE 2K16: installDir: WWE2K16: {} launch: - /WWE2K16.exe: + "/WWE2K16.exe": - when: - bit: 64 os: windows @@ -610480,13 +612168,13 @@ WWE 2K16: id: 385730 WWE 2K17: files: - /userdata//510510/remote: + "/userdata//510510/remote": tags: - save when: - os: windows store: steam - /WWE2K17/config.ini: + "/WWE2K17/config.ini": tags: - config when: @@ -610494,7 +612182,7 @@ WWE 2K17: installDir: WWE2K17: {} launch: - /WWE2K17_x64.exe: + "/WWE2K17_x64.exe": - when: - bit: 64 os: windows @@ -610503,13 +612191,13 @@ WWE 2K17: id: 510510 WWE 2K18: files: - /userdata//664430/remote: + "/userdata//664430/remote": tags: - save when: - os: windows store: steam - /WWE2K18: + "/WWE2K18": tags: - config when: @@ -610517,7 +612205,7 @@ WWE 2K18: installDir: WWE 2K18: {} launch: - /WWE2K18_x64.exe: + "/WWE2K18_x64.exe": - when: - bit: 64 os: windows @@ -610526,13 +612214,13 @@ WWE 2K18: id: 664430 WWE 2K19: files: - /userdata//817130/remote: + "/userdata//817130/remote": tags: - save when: - os: windows store: steam - /WWE2K19: + "/WWE2K19": tags: - config when: @@ -610540,7 +612228,7 @@ WWE 2K19: installDir: WWE 2K19: {} launch: - /WWE2K19_x64.exe: + "/WWE2K19_x64.exe": - when: - bit: 64 os: windows @@ -610549,12 +612237,12 @@ WWE 2K19: id: 817130 WWE 2K20: files: - /userdata//1015500/remote: + "/userdata//1015500/remote": tags: - save when: - store: steam - /WWE2K20: + "/WWE2K20": tags: - config when: @@ -610562,7 +612250,7 @@ WWE 2K20: installDir: WWE2K20: {} launch: - /WWE2K20_x64.exe: + "/WWE2K20_x64.exe": - when: - bit: 64 os: windows @@ -610571,13 +612259,13 @@ WWE 2K20: id: 1015500 WWE 2K22: files: - /userdata//1255630/remote: + "/userdata//1255630/remote": tags: - save when: - os: windows store: steam - /WWE2K22: + "/WWE2K22": tags: - config when: @@ -610585,7 +612273,7 @@ WWE 2K22: installDir: WWE 2K22: {} launch: - /WWE2K22_x64.exe: + "/WWE2K22_x64.exe": - when: - bit: 64 os: windows @@ -610594,13 +612282,13 @@ WWE 2K22: id: 1255630 WWE 2K23: files: - /userdata//1942660/remote: + "/userdata//1942660/remote": tags: - save when: - os: windows store: steam - /WWE2K23: + "/WWE2K23": tags: - config when: @@ -610608,7 +612296,7 @@ WWE 2K23: installDir: WWE 2K23: {} launch: - /WWE2K23_x64.exe: + "/WWE2K23_x64.exe": - when: - bit: 64 os: windows @@ -610622,7 +612310,7 @@ WWII英雄列伝 最強の虎 クルト・クニスペル: installDir: WWIIKnispel: {} launch: - /contents/Game.exe: + "/contents/Game.exe": - when: - os: windows store: steam @@ -610632,25 +612320,25 @@ WWII英雄列伝 泥の中の虎 オットー・カリウス: installDir: WWIICarius: {} launch: - /contents/Game.exe: + "/contents/Game.exe": - when: - os: windows store: steam steam: id: 792470 -'WWR: World of Warfare Robots': +"WWR: World of Warfare Robots": installDir: World of Warfare Robots: {} launch: - /WWR.app: + "/WWR.app": - when: - os: mac store: steam - /WWR.exe: + "/WWR.exe": - when: - os: windows store: steam - /WWR.x86_64: + "/WWR.x86_64": - when: - bit: 64 os: linux @@ -610661,7 +612349,7 @@ WWTF: installDir: WWTF: {} launch: - /WWTF.exe: + "/WWTF.exe": - when: - store: steam steam: @@ -610684,11 +612372,11 @@ Wacktory: Wacky Soldiers: steam: id: 1152730 -'Wacky Spores: The Chase': +"Wacky Spores: The Chase": installDir: Wacky Spores The Chase: {} launch: - /Wacky_Spores_The_Chase.exe: + "/Wacky_Spores_The_Chase.exe": - when: - os: windows store: steam @@ -610696,7 +612384,7 @@ Wacky Soldiers: id: 582530 Wacky Wheels: files: - /WACKY.CFG: + "/WACKY.CFG": tags: - config - save @@ -610707,33 +612395,33 @@ Wacky Wheels: installDir: Wacky Wheels: {} launch: - /Dosbox/dosbox: - - arguments: '-conf \"..\\Wacky.conf\" -noconsole -c' + "/Dosbox/dosbox": + - arguments: "-conf \\\"..\\\\Wacky.conf\\\" -noconsole -c" when: - os: linux store: steam - workingDir: /Dosbox - /Wacky Wheels.app: + workingDir: "/Dosbox" + "/Wacky Wheels.app": - when: - os: mac store: steam - /Wacky Wheels/dosbox/dosbox.exe: - - arguments: '-conf \"..\\Wacky.conf\" -noconsole -c' + "/Wacky Wheels/dosbox/dosbox.exe": + - arguments: "-conf \\\"..\\\\Wacky.conf\\\" -noconsole -c" when: - os: windows store: steam - workingDir: /Wacky Wheels/dosbox + workingDir: "/Wacky Wheels/dosbox" steam: id: 358380 Wacky Wheels HD: installDir: Wacky Wheels HD: {} launch: - /WackyWheels.app: + "/WackyWheels.app": - when: - os: mac store: steam - /WackyWheels.exe: + "/WackyWheels.exe": - when: - os: windows store: steam @@ -610754,15 +612442,15 @@ Waddle Home: Waddle Home: {} steam: id: 486290 -Wagamama Alice and the Hundred Day's War: +"Wagamama Alice and the Hundred Day's War": installDir: BrutalAlice1: {} launch: - /BrutalAlice1.app: + "/BrutalAlice1.app": - when: - os: mac store: steam - /BrutalAlice1.exe: + "/BrutalAlice1.exe": - when: - os: windows store: steam @@ -610770,7 +612458,7 @@ Wagamama Alice and the Hundred Day's War: id: 738840 Wagamama High Spec: files: - /userdata//575480/remote: + "/userdata//575480/remote": tags: - save when: @@ -610778,7 +612466,7 @@ Wagamama High Spec: installDir: WAGAMAMA HIGH SPEC: {} launch: - /WagamamaHighSpec.exe: + "/WagamamaHighSpec.exe": - when: - os: windows store: steam @@ -610788,7 +612476,7 @@ Wagers of War: installDir: Wagers of War: {} launch: - /Wagers of War.exe: + "/Wagers of War.exe": - when: - os: windows store: steam @@ -610801,11 +612489,11 @@ Waifu Bay Girls: installDir: Waifu Bay Girls: {} launch: - /Waifu Bay Girls.app/Contents/MacOS/Waifu Bay Girls: + "/Waifu Bay Girls.app/Contents/MacOS/Waifu Bay Girls": - when: - os: mac store: steam - /Waifu Bay Girls.exe: + "/Waifu Bay Girls.exe": - when: - os: windows store: steam @@ -610815,11 +612503,11 @@ Waifu Bay Resort: installDir: Waifu Bay Resort: {} launch: - /Waifu Bay Resort.app/Contents/MacOS/Waifu Bay Resort: + "/Waifu Bay Resort.app/Contents/MacOS/Waifu Bay Resort": - when: - os: mac store: steam - /Waifu Bay Resort.exe: + "/Waifu Bay Resort.exe": - when: - os: windows store: steam @@ -610829,11 +612517,11 @@ Waifu Fight Dango Style: installDir: WFDS: {} launch: - /WaifuFightPreBeta.app/Contents/MacOS/WaifuFightPreBeta: + "/WaifuFightPreBeta.app/Contents/MacOS/WaifuFightPreBeta": - when: - os: mac store: steam - /WaifuTest.exe: + "/WaifuTest.exe": - when: - os: windows store: steam @@ -610841,7 +612529,7 @@ Waifu Fight Dango Style: id: 865810 Waifu Fighter: files: - /WaifuFighter/SaveGame.sav: + "/WaifuFighter/SaveGame.sav": tags: - save when: @@ -610849,21 +612537,21 @@ Waifu Fighter: installDir: WaifuFighterFist: {} launch: - /BoxingWaifu: + "/BoxingWaifu": - when: - os: linux store: steam - /BoxingWaifu.exe: + "/BoxingWaifu.exe": - when: - os: windows store: steam steam: id: 1757490 -'Waifu Hunter - Episode 1 : The Runaway Samurai': +"Waifu Hunter - Episode 1 : The Runaway Samurai": installDir: Waifu Hunter - Episode 1 The Runaway Samurai: {} launch: - /Waifu Hunter Episode 1 - The Runaway Samurai.exe: + "/Waifu Hunter Episode 1 - The Runaway Samurai.exe": - when: - os: windows store: steam @@ -610873,7 +612561,7 @@ Waifu Hunter - Secret of Pirates: installDir: Waifu Hunter - Secret of Pirates: {} launch: - /Waifu Hunter - Secret of Pirates.exe: + "/Waifu Hunter - Secret of Pirates.exe": - when: - os: windows store: steam @@ -610883,11 +612571,11 @@ Waifu Master: installDir: Waifu Master: {} launch: - /Waifu Master.app/Contents/MacOS/Waifu Master: + "/Waifu Master.app/Contents/MacOS/Waifu Master": - when: - os: mac store: steam - /Waifu Master.exe: + "/Waifu Master.exe": - when: - os: windows store: steam @@ -610897,7 +612585,7 @@ Waifu School: installDir: Waifu School: {} launch: - /Waifu School.exe: + "/Waifu School.exe": - when: - os: windows store: steam @@ -610907,7 +612595,7 @@ Waifu Uncovered: installDir: Waifu_Uncovered: {} launch: - /WaifuUncovered.exe: + "/WaifuUncovered.exe": - when: - bit: 64 os: windows @@ -610918,17 +612606,17 @@ Wailing Heights: installDir: Wailing Heights: {} launch: - /WailingHeights.app: + "/WailingHeights.app": - when: - bit: 64 os: mac store: steam - /WailingHeights.exe: + "/WailingHeights.exe": - when: - bit: 64 os: windows store: steam - /WailingHeights.x86_64: + "/WailingHeights.x86_64": - when: - bit: 64 os: linux @@ -610939,7 +612627,7 @@ Wait - Extended: installDir: Wait - Extended: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -610949,7 +612637,7 @@ Wait! Life Is Beautiful!: installDir: Wait! Life is beautiful!: {} launch: - /Wait! Life is beautiful!.exe: + "/Wait! Life is beautiful!.exe": - when: - os: windows store: steam @@ -610959,7 +612647,7 @@ Waiting for the Loop: installDir: Waiting for the Loop: {} launch: - /WaitingForTheLoop.exe: + "/WaitingForTheLoop.exe": - when: - os: windows store: steam @@ -610969,10 +612657,10 @@ Wake: installDir: Wake: {} launch: - /Bonus/original/wake.exe: + "/Bonus/original/wake.exe": - when: - store: steam - /Wake 2013.exe: + "/Wake 2013.exe": - when: - store: steam steam: @@ -610982,12 +612670,12 @@ Wake Up: WakeUp: {} steam: id: 499540 -'Wake Up, Good Guardian!': +"Wake Up, Good Guardian!": installDir: - 'Wake Up, Good Guardian!': {} + "Wake Up, Good Guardian!": {} launch: - /Game.exe: - - arguments: '-windowed' + "/Game.exe": + - arguments: "-windowed" when: - os: windows store: steam @@ -611000,7 +612688,7 @@ WakeUp!: installDir: WakeUp: {} launch: - /WakeUp.exe: + "/WakeUp.exe": - when: - os: windows store: steam @@ -611008,12 +612696,12 @@ WakeUp!: id: 674590 Wakeboarding Unleashed Featuring Shaun Murray: files: - /Game/Save: + "/Game/Save": tags: - save when: - os: windows - /Game/config.cfg: + "/Game/config.cfg": tags: - config when: @@ -611024,7 +612712,7 @@ Waking: installDir: Waking: {} launch: - /Waking.exe: + "/Waking.exe": - when: - os: windows store: steam @@ -611032,25 +612720,25 @@ Waking: id: 1068600 Waking Mars: files: - /Library/Application Support/Waking Mars: + "/Library/Application Support/Waking Mars": tags: - config - save when: - os: mac - /Library/containers/com.tigerstylegames.wakingmars-pc/Data/Library/Application Support/Waking Mars: + "/Library/containers/com.tigerstylegames.wakingmars-pc/Data/Library/Application Support/Waking Mars": tags: - config - save when: - os: mac - /Saved Games/Waking Mars: + "/Saved Games/Waking Mars": tags: - config - save when: - os: windows - /WakingMars: + "/WakingMars": tags: - config - save @@ -611061,15 +612749,15 @@ Waking Mars: installDir: Waking Mars: {} launch: - /Waking Mars.app: + "/Waking Mars.app": - when: - os: mac store: steam - /mars-pc.exe: + "/mars-pc.exe": - when: - os: windows store: steam - /wakingmars/wakingmars: + "/wakingmars/wakingmars": - when: - os: linux store: steam @@ -611079,37 +612767,37 @@ Waking Violet: installDir: Waking Violet: {} launch: - /WakingViolet.app/Contents/MacOS/WakingViolet: + "/WakingViolet.app/Contents/MacOS/WakingViolet": - when: - os: mac store: steam - /WakingViolet.exe: + "/WakingViolet.exe": - when: - bit: 32 os: windows store: steam steam: id: 845600 -'Waking the Glares: Chapters I and II': +"Waking the Glares: Chapters I and II": installDir: Waking the Glares: {} launch: - /Waking_The_Glares.exe: + "/Waking_The_Glares.exe": - when: - bit: 64 os: windows store: steam steam: id: 568470 -'Walden, a game': +"Walden, a game": installDir: - 'Walden, a game': {} + "Walden, a game": {} launch: - /Walden.app: + "/Walden.app": - when: - os: mac store: steam - /Walden.exe: + "/Walden.exe": - when: - os: windows store: steam @@ -611119,7 +612807,7 @@ Walhall: installDir: Walhall: {} launch: - /Walhall.exe: + "/Walhall.exe": - when: - os: windows store: steam @@ -611129,11 +612817,11 @@ Walk The Light: installDir: Walk The Light: {} launch: - /walkthelight.app: + "/walkthelight.app": - when: - os: mac store: steam - /walkthelight.exe: + "/walkthelight.exe": - when: - os: windows store: steam @@ -611148,7 +612836,7 @@ Walk on the Ground Simulator: installDir: WOGS: {} launch: - /Release/WorldSeed.exe: + "/Release/WorldSeed.exe": - when: - bit: 64 os: windows @@ -611162,15 +612850,15 @@ Walkerman: installDir: Walkerman: {} launch: - /Walkerman.app: + "/Walkerman.app": - when: - os: mac store: steam - /Walkerman.exe: + "/Walkerman.exe": - when: - os: windows store: steam - /Walkerman.sh: + "/Walkerman.sh": - when: - os: linux store: steam @@ -611180,7 +612868,7 @@ Walking Heavy: installDir: Walking Heavy: {} launch: - /Walking_Heavy.exe: + "/Walking_Heavy.exe": - when: - os: windows store: steam @@ -611190,7 +612878,7 @@ Walking Simulator: installDir: Walking Simulator 2020: {} launch: - /WalkingSimulator2020.exe: + "/WalkingSimulator2020.exe": - when: - os: windows store: steam @@ -611200,7 +612888,7 @@ Walking Zombie 2: installDir: The Walking Zombie 2: {} launch: - /The Walking Zombie 2.exe: + "/The Walking Zombie 2.exe": - when: - os: windows store: steam @@ -611210,11 +612898,11 @@ Walkover: installDir: Walkover: {} launch: - /Walkover.exe: + "/Walkover.exe": - when: - os: windows store: steam - /walkover.sh: + "/walkover.sh": - when: - os: linux store: steam @@ -611224,7 +612912,7 @@ Wall Force: installDir: Wall Force: {} launch: - /WallForce/Binaries/Win64/WallForce-Win64-Shipping.exe: + "/WallForce/Binaries/Win64/WallForce-Win64-Shipping.exe": - when: - os: windows store: steam @@ -611234,8 +612922,11 @@ Wall Street Junior: installDir: Wall Street Junior: {} launch: - /TheBull.exe: + "/TheBull.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam @@ -611245,7 +612936,7 @@ Wall Street Tycoon: installDir: Wall Street Tycoon: {} launch: - /WallStreetTycoon.exe: + "/WallStreetTycoon.exe": - when: - os: windows store: steam @@ -611258,12 +612949,12 @@ Wall Walker: id: 819670 Wall World: files: - /Alawar/WallWorld: + "/Alawar/WallWorld": tags: - config when: - os: windows - /Alawar/WallWorld/Saves: + "/Alawar/WallWorld/Saves": tags: - save when: @@ -611271,7 +612962,7 @@ Wall World: installDir: Wall World: {} launch: - /WallWorld.exe: + "/WallWorld.exe": - when: - bit: 64 os: windows @@ -611282,7 +612973,7 @@ Wall of Insanity: installDir: Wall of insanity: {} launch: - /WallOfInsanity/Wall Of Insanity.exe: + "/WallOfInsanity/Wall Of Insanity.exe": - when: - os: windows store: steam @@ -611295,28 +612986,7 @@ Wall of Insanity: Wall to Wall: steam: id: 1027080 -Wallace & Gromit's Grand Adventures: - files: - /Telltale Games/Wallace & Gromit - */*.save: - tags: - - save - when: - - os: windows - /Telltale Games/Wallace & Gromit - */prefs.prop: - tags: - - config - when: - - os: windows - /Telltale Games/Wallace and Gromit Ep*/*.save: - tags: - - save - when: - - os: windows - /Telltale Games/Wallace and Gromit Ep*/prefs.prop: - tags: - - config - when: - - os: windows +"Wallace & Gromit's Grand Adventures": gog: id: 1207659099 id: @@ -611332,7 +613002,7 @@ Wallace & Gromit's Grand Adventures: installDir: Wallace and Gromit Ep1: {} launch: - /WallaceGromit101.exe: + "/WallaceGromit101.exe": - when: - store: steam steam: @@ -611344,7 +613014,7 @@ Wallrunners: installDir: Wallrunners: {} launch: - /Wallrunners.exe: + "/Wallrunners.exe": - when: - os: windows store: steam @@ -611358,7 +613028,7 @@ Wallslide: id: 493280 Wally and the FANTASTIC PREDATORS: files: - /Wally_and_the_FANTASTIC_PREDATORS/default/*.sav: + "/Wally_and_the_FANTASTIC_PREDATORS/default/*.sav": tags: - save when: @@ -611366,15 +613036,15 @@ Wally and the FANTASTIC PREDATORS: installDir: Wally and the FANTASTIC PREDATORS: {} launch: - /Wally and the FANTASTIC PREDATORS!.exe: + "/Wally and the FANTASTIC PREDATORS!.exe": - when: - os: windows store: steam - /Wally_and_the_FANTASTIC_PREDATORS.app/Contents/MacOS/Wally_and_the_FANTASTIC_PREDATORS: + "/Wally_and_the_FANTASTIC_PREDATORS.app/Contents/MacOS/Wally_and_the_FANTASTIC_PREDATORS": - when: - os: mac store: steam - /run.sh: + "/run.sh": - when: - bit: 64 os: linux @@ -611391,9 +613061,9 @@ Waltz of the Wizard (Legacy demo): - save steam: id: 436820 -'Waltz of the Wizard: Natural Magic': +"Waltz of the Wizard: Natural Magic": files: - /AppData/LocalLow/Aldin/Waltz of the Wizard_ Extended Edition/Saves: + "/AppData/LocalLow/Aldin/Waltz of the Wizard_ Extended Edition/Saves": tags: - save when: @@ -611401,7 +613071,7 @@ Waltz of the Wizard (Legacy demo): installDir: Waltz of the Wizard Extended Edition: {} registry: - 'HKEY_CURRENT_USER/Software/Aldin/Waltz of the Wizard: Extended Edition': + "HKEY_CURRENT_USER/Software/Aldin/Waltz of the Wizard: Extended Edition": tags: - config - save @@ -611411,7 +613081,7 @@ Wampee Helicopters: installDir: Wampee Helicopters: {} launch: - /Wampee Helicopters.exe: + "/Wampee Helicopters.exe": - when: - os: windows store: steam @@ -611421,11 +613091,11 @@ Wamu Wamu 2: installDir: Sokpop S05 Wamu Wamu 2: {} launch: - /wamuwamu2_mac.app: + "/wamuwamu2_mac.app": - when: - os: mac store: steam - /wamuwamu2_windows.exe: + "/wamuwamu2_windows.exe": - when: - os: windows store: steam @@ -611435,7 +613105,7 @@ Wanba Warriors: installDir: Wanba Warriors: {} launch: - /Wanba Warriors.exe: + "/Wanba Warriors.exe": - when: - os: windows store: steam @@ -611443,12 +613113,12 @@ Wanba Warriors: id: 1021770 Wand Wars: files: - /WandWars_Data/*.dat: + "/WandWars_Data/*.dat": tags: - save when: - os: windows - /.config/unity3d/Moonradish/Wand Wars: + "/.config/unity3d/Moonradish/Wand Wars": tags: - config when: @@ -611456,15 +613126,15 @@ Wand Wars: installDir: Wand Wars: {} launch: - /WandWars.app: + "/WandWars.app": - when: - os: mac store: steam - /WandWars.exe: + "/WandWars.exe": - when: - os: windows store: steam - /launch.sh: + "/launch.sh": - when: - os: linux store: steam @@ -611475,11 +613145,11 @@ Wand Wars VR: Wand Wars VR: {} steam: id: 765730 -'Wand Wars: Rise': +"Wand Wars: Rise": installDir: Wand Wars Rise: {} launch: - /WandWarsPC.exe: + "/WandWarsPC.exe": - when: - bit: 64 os: windows @@ -611490,7 +613160,7 @@ Wanda - A Beautiful Apocalypse: installDir: Wanda: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: @@ -611499,7 +613169,7 @@ Wander: installDir: Wander: {} launch: - /bin64/wander.exe: + "/bin64/wander.exe": - when: - bit: 64 os: windows @@ -611510,21 +613180,21 @@ Wander No More: installDir: Wander No More: {} launch: - /WanderNoMore-32.exe: + "/WanderNoMore-32.exe": - when: - bit: 32 os: windows store: steam - /WanderNoMore.app: + "/WanderNoMore.app": - when: - os: mac store: steam - /WanderNoMore.exe: + "/WanderNoMore.exe": - when: - bit: 64 os: windows store: steam - /WanderNoMore.sh: + "/WanderNoMore.sh": - when: - os: linux store: steam @@ -611532,7 +613202,7 @@ Wander No More: id: 463020 WanderLust (2021): files: - /AppData/LocalLow/HFTGames/WanderLust: + "/AppData/LocalLow/HFTGames/WanderLust": tags: - save when: @@ -611540,7 +613210,7 @@ WanderLust (2021): installDir: WanderLust: {} launch: - /WanderLust.exe: + "/WanderLust.exe": - when: - os: windows store: steam @@ -611554,13 +613224,13 @@ Wanderer of Teandria: installDir: Wanderer of Teandria: {} launch: - /bin/x86/Release/Wanderer Launcher.exe: + "/bin/x86/Release/Wanderer Launcher.exe": - when: - os: windows store: steam steam: id: 477910 -'Wanderer: The Rebirth': +"Wanderer: The Rebirth": installDir: Wanderer The Rebirth: {} steam: @@ -611569,7 +613239,7 @@ Wanderfog: installDir: Wanderfog: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: @@ -611578,7 +613248,7 @@ Wandering Gem Jockeying: installDir: Wandering Gem Jockeying: {} launch: - /wangemjoc.exe: + "/wangemjoc.exe": - when: - os: windows store: steam @@ -611588,7 +613258,7 @@ Wandering Owl: installDir: Wandering Owl: {} launch: - /WanderingOwl.exe: + "/WanderingOwl.exe": - when: - os: windows store: steam @@ -611598,7 +613268,7 @@ Wandering Star: installDir: Wandering Star: {} launch: - /Wandering Star.exe: + "/Wandering Star.exe": - when: - os: windows store: steam @@ -611608,11 +613278,11 @@ Wandering Willows: installDir: Wandering Willows: {} launch: - /Wandering Willows.app: + "/Wandering Willows.app": - when: - os: mac store: steam - /Wandering Willows.exe: + "/Wandering Willows.exe": - when: - os: windows store: steam @@ -611622,7 +613292,7 @@ Wandering in Space: installDir: Wandering in space: {} launch: - /Wandering_in_space.exe: + "/Wandering_in_space.exe": - when: - os: windows store: steam @@ -611632,7 +613302,7 @@ Wanderjahr: installDir: Wanderjahr: {} launch: - /C_RPG.exe: + "/C_RPG.exe": - when: - os: windows store: steam @@ -611640,7 +613310,7 @@ Wanderjahr: id: 434860 Wanderland: files: - /Artogon/Wanderland: + "/Artogon/Wanderland": tags: - config - save @@ -611649,7 +613319,7 @@ Wanderland: installDir: Wanderland: {} launch: - /Wanderland.exe: + "/Wanderland.exe": - when: - os: windows store: steam @@ -611659,16 +613329,16 @@ Wanderlust: installDir: Wanderlust: {} launch: - /WanderlustL/WanderlustLinuxUniversal/WanderlustLinuxUniversal.x86_64: + "/WanderlustL/WanderlustLinuxUniversal/WanderlustLinuxUniversal.x86_64": - when: - bit: 64 os: linux store: steam - /WanderlustM/WanderlustMacUniversal.app: + "/WanderlustM/WanderlustMacUniversal.app": - when: - os: mac store: steam - /WanderlustW/Wanderlustx86_64.exe: + "/WanderlustW/Wanderlustx86_64.exe": - when: - bit: 64 os: windows @@ -611679,29 +613349,29 @@ Wanderlust Adventures: installDir: Wanderlust Adventures: {} launch: - /Wanderlust.exe: + "/Wanderlust.exe": - when: - os: windows store: steam steam: id: 240620 -'Wanderlust: Rebirth': +"Wanderlust: Rebirth": installDir: Wanderlust Rebirth: {} launch: - /Wanderlust.exe: + "/Wanderlust.exe": - when: - store: steam steam: id: 211580 -'Wanderlust: Transsiberian': +"Wanderlust: Transsiberian": files: - /AppData/LocalLow/Different Tales/Transsiberian/Saves/settings.json: + "/AppData/LocalLow/Different Tales/Transsiberian/Saves/settings.json": tags: - config when: - os: windows - /AppData/LocalLow/Different Tales/Transsiberian/Saves/transsib0.json: + "/AppData/LocalLow/Different Tales/Transsiberian/Saves/transsib0.json": tags: - save when: @@ -611711,16 +613381,16 @@ Wanderlust Adventures: installDir: Wanderlust Travel Stories Transsiberian: {} launch: - /Transsiberian: + "/Transsiberian": - when: - bit: 64 os: linux store: steam - /Transsiberian.app: + "/Transsiberian.app": - when: - os: mac store: steam - /Transsiberian.exe: + "/Transsiberian.exe": - when: - bit: 64 os: windows @@ -611731,14 +613401,14 @@ Wanderlust Adventures: - config steam: id: 1233420 -'Wanderlust: Travel Stories': +"Wanderlust: Travel Stories": files: - /AppData/LocalLow/Different Tales/Wanderlust/Saves/profile0.json: + "/AppData/LocalLow/Different Tales/Wanderlust/Saves/profile0.json": tags: - save when: - os: windows - /AppData/LocalLow/Different Tales/Wanderlust/Saves/settings.json: + "/AppData/LocalLow/Different Tales/Wanderlust/Saves/settings.json": tags: - config when: @@ -611748,16 +613418,16 @@ Wanderlust Adventures: installDir: Wanderlust: {} launch: - /Wanderlust: + "/Wanderlust": - when: - bit: 64 os: linux store: steam - /Wanderlust.app: + "/Wanderlust.app": - when: - os: mac store: steam - /Wanderlust.exe: + "/Wanderlust.exe": - when: - os: windows store: steam @@ -611769,19 +613439,19 @@ Wanderlust Adventures: id: 1051410 Wandersong: files: - /Library/Application Support/com.greglobanov.wandersong: + "/Library/Application Support/com.greglobanov.wandersong": tags: - config - save when: - os: mac - /Packages/HumbleBundle.Wandersong_q2mcdwmzx4qja/LocalCache/Local/wandersong: + "/Packages/HumbleBundle.Wandersong_q2mcdwmzx4qja/LocalCache/Local/wandersong": tags: - save when: - os: windows store: microsoft - /wandersong: + "/wandersong": tags: - config - save @@ -611792,11 +613462,11 @@ Wandersong: installDir: Wandersong: {} launch: - /Mac/wandersong.app/contents/MacOS/wandersong: + "/Mac/wandersong.app/contents/MacOS/wandersong": - when: - os: mac store: steam - /PC/wandersong.exe: + "/PC/wandersong.exe": - when: - os: windows store: steam @@ -611816,7 +613486,7 @@ Wanking Simulator: installDir: Wanking Simulator: {} launch: - /Wanking Simulator.exe: + "/Wanking Simulator.exe": - when: - bit: 64 os: windows @@ -611830,7 +613500,7 @@ Wanna Run Again - Sprite Girl: installDir: Wanna Run Again - Sprite Girl: {} launch: - /WannaRAgain.exe: + "/WannaRAgain.exe": - when: - os: windows store: steam @@ -611840,11 +613510,11 @@ Wanna Survive: installDir: Wanna Survive: {} launch: - /Wanna Survive.app/Contents/MacOS/Wanna Survive: + "/Wanna Survive.app/Contents/MacOS/Wanna Survive": - when: - os: mac store: steam - /Wanna Survive.exe: + "/Wanna Survive.exe": - when: - os: windows store: steam @@ -611859,10 +613529,10 @@ Wanted Corp.: installDir: WantedCorp: {} launch: - /Detect.exe: + "/Detect.exe": - when: - store: steam - /WantedCorp.exe: + "/WantedCorp.exe": - when: - store: steam steam: @@ -611872,14 +613542,14 @@ Wanted Killer VR: Wanted Killer VR: {} steam: id: 759540 -'Wanted: Dead': +"Wanted: Dead": files: - /WDGame/Saved/SaveGames/main: + "/WDGame/Saved/SaveGames/main": tags: - save when: - os: windows - /WDGame/Saved/SaveGames/option: + "/WDGame/Saved/SaveGames/option": tags: - config when: @@ -611887,20 +613557,20 @@ Wanted Killer VR: installDir: Wanted Dead: {} launch: - /WDGame.exe: + "/WDGame.exe": - when: - os: windows store: steam steam: id: 1981610 -'Wanted: Weapons of Fate': +"Wanted: Weapons of Fate": files: - /wanted/data/settings: + "/wanted/data/settings": tags: - config when: - os: windows - /wanted/saves: + "/wanted/saves": tags: - save when: @@ -611908,7 +613578,7 @@ Wanted Killer VR: installDir: Wanted - Weapons of Fate: {} launch: - /Wanted.exe: + "/Wanted.exe": - when: - store: steam steam: @@ -611917,25 +613587,25 @@ War Battle Royale Battlegrounds: installDir: War Battle Royale Battlegrounds: {} launch: - /War Battle Royale Battlegrounds.exe: + "/War Battle Royale Battlegrounds.exe": - when: - store: steam steam: id: 1148300 -'War Birds: WW2 Air strike 1942': +"War Birds: WW2 Air strike 1942": installDir: War Birds WW2 Air strike 1942: {} launch: - /Linux/wb game.x86: + "/Linux/wb game.x86": - when: - os: linux store: steam - /wb game.app/Contents/MacOS/wb game: + "/wb game.app/Contents/MacOS/wb game": - when: - os: mac store: steam - /win/wb game.exe: - - arguments: '-windowed' + "/win/wb game.exe": + - arguments: "-windowed" when: - os: windows store: steam @@ -611945,7 +613615,7 @@ War Blade: installDir: War Blade: {} launch: - /War Blade.exe: + "/War Blade.exe": - when: - os: windows store: steam @@ -611955,17 +613625,17 @@ War Brokers: installDir: WarBrokers: {} launch: - /War_Brokers.exe: + "/War_Brokers.exe": - when: - bit: 32 os: windows store: steam - /war_brokers.x86_64: + "/war_brokers.x86_64": - when: - bit: 64 os: linux store: steam - /wbosx.app: + "/wbosx.app": - when: - os: mac store: steam @@ -611975,17 +613645,17 @@ War Builder League: installDir: War Builder League: {} launch: - /WarBuilderLeague.exe: + "/WarBuilderLeague.exe": - when: - os: windows store: steam steam: id: 999270 -'War Chariots: Royal Legion': +"War Chariots: Royal Legion": installDir: War Chariots: {} launch: - /War Chariots.exe: + "/War Chariots.exe": - when: - os: windows store: steam @@ -611995,12 +613665,12 @@ War Cube: installDir: WAR CUBE: {} launch: - /game: + "/game": - when: - bit: 64 os: linux store: steam - /game.exe: + "/game.exe": - when: - bit: 64 os: windows @@ -612014,7 +613684,7 @@ War Ender: installDir: War Ender: {} launch: - /War Ender.exe: + "/War Ender.exe": - when: - os: windows store: steam @@ -612024,28 +613694,28 @@ War Ender Evolution: installDir: War Ender Evolution: {} launch: - /README CN.txt: + "/README CN.txt": - when: - os: windows store: steam - /README EN.txt: + "/README EN.txt": - when: - os: windows store: steam - /The War Enders Evolution Rev. 2021.exe: + "/The War Enders Evolution Rev. 2021.exe": - when: - os: windows store: steam steam: id: 1208420 -'War Front: Turning Point': +"War Front: Turning Point": files: - /Run/Profiles: + "/Run/Profiles": tags: - config when: - os: windows - /Run/Profiles/Player/Save: + "/Run/Profiles/Player/Save": tags: - save when: @@ -612054,7 +613724,7 @@ War Ghost: installDir: WAR GHOST: {} launch: - /WAR GHOST.exe: + "/WAR GHOST.exe": - when: - os: windows store: steam @@ -612068,11 +613738,11 @@ War Gods: HKEY_LOCAL_MACHINE/SOFTWARE/GT Interactive/War Gods/1.00: tags: - config -'War Heroes: Invasion': +"War Heroes: Invasion": installDir: War Heroes Invasion: {} launch: - /WH.exe: + "/WH.exe": - when: - os: windows store: steam @@ -612087,7 +613757,7 @@ War Hunter: installDir: War Hunter: {} launch: - /WarHunter.exe: + "/WarHunter.exe": - when: - os: windows store: steam @@ -612097,21 +613767,21 @@ War Inc. Battlezone: installDir: WarIncBattleZone: {} launch: - /rsupdate.exe: - - arguments: '-steam' + "/rsupdate.exe": + - arguments: "-steam" when: - store: steam steam: id: 107900 -'War Machines: Free to Play': +"War Machines: Free to Play": installDir: WarMachines: {} launch: - /WarMachines.app: + "/WarMachines.app": - when: - os: mac store: steam - /WarMachines.exe: + "/WarMachines.exe": - when: - os: windows store: steam @@ -612119,12 +613789,12 @@ War Inc. Battlezone: id: 953250 War Mongrels: files: - /WM/Saved/Config/WindowsNoEditor: + "/WM/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /WM/Savegames: + "/WM/Savegames": tags: - save when: @@ -612132,20 +613802,20 @@ War Mongrels: installDir: War Mongrels: {} launch: - /WM/Binaries/Win64/WM-Win64-Shipping.exe: - - arguments: '-EnableCrashReports -DCPlatform=SteamFull' + "/WM/Binaries/Win64/WM-Win64-Shipping.exe": + - arguments: "-EnableCrashReports -DCPlatform=SteamFull" when: - store: steam steam: id: 1101790 War Of Being: files: - /DMTesseracT/Saved/Config/Windows: + "/DMTesseracT/Saved/Config/Windows": tags: - config when: - os: windows - /DMTesseracT/Saved/SaveGames: + "/DMTesseracT/Saved/SaveGames": tags: - save when: @@ -612158,16 +613828,16 @@ War Operations: installDir: War Operations: {} launch: - /War Operations.exe: + "/War Operations.exe": - when: - store: steam steam: id: 316950 -'War Planet Online: Global Conquest': +"War Planet Online: Global Conquest": installDir: War Planet Online: {} launch: - /WarPlanetOnline.exe: + "/WarPlanetOnline.exe": - when: - store: steam steam: @@ -612176,11 +613846,11 @@ War Platform: installDir: WP: {} launch: - /War Platform.exe: + "/War Platform.exe": - when: - os: windows store: steam - /wp.app/Contents/MacOS/wp-main: + "/wp.app/Contents/MacOS/wp-main": - when: - os: mac store: steam @@ -612190,13 +613860,13 @@ War Robots: installDir: War Robots: {} launch: - /WarRobots.exe: + "/WarRobots.exe": - when: - os: windows store: steam steam: id: 767560 -'War Robots VR: The Skirmish': +"War Robots VR: The Skirmish": installDir: War Robots VR The Skirmish: {} registry: @@ -612205,22 +613875,22 @@ War Robots: - config steam: id: 672640 -'War Robots: Frontiers': +"War Robots: Frontiers": installDir: WRFrontiers: {} launch: - /WarRobotsSteamLoader.exe: - - arguments: '-fromsteam' + "/WarRobotsSteamLoader.exe": + - arguments: "-fromsteam" when: - os: windows store: steam steam: id: 1491000 -'War Robots: Planet Defender': +"War Robots: Planet Defender": installDir: War Robots Planet Defender: {} launch: - /WarRobots.exe: + "/WarRobots.exe": - when: - bit: 64 os: windows @@ -612231,7 +613901,7 @@ War Rock: installDir: WarRock Global: {} launch: - /WRLauncher.exe: + "/WRLauncher.exe": - arguments: 2 0 when: - os: windows @@ -612242,7 +613912,7 @@ War Room: installDir: War Room: {} launch: - /WarRoom.exe: + "/WarRoom.exe": - when: - os: windows store: steam @@ -612252,14 +613922,14 @@ War Selection: installDir: War Selection: {} launch: - /SteamLauncher: - - arguments: '1022450' + "/SteamLauncher": + - arguments: "1022450" when: - bit: 64 os: linux store: steam - /SteamLauncher.exe: - - arguments: '1022450' + "/SteamLauncher.exe": + - arguments: "1022450" when: - bit: 64 os: windows @@ -612270,7 +613940,7 @@ War Solution: installDir: War Solution: {} launch: - /War_Solution.exe: + "/War_Solution.exe": - when: - bit: 64 os: windows @@ -612279,7 +613949,7 @@ War Solution: id: 1083810 War Tech Fighters: files: - /WarTechFighters: + "/WarTechFighters": tags: - save when: @@ -612287,7 +613957,7 @@ War Tech Fighters: installDir: War Tech Fighters: {} launch: - /WTF.exe: + "/WTF.exe": - when: - bit: 64 os: windows @@ -612302,25 +613972,25 @@ War Theatre: installDir: War Theatre: {} launch: - /WarTheatre.app/Contents/MacOS/WarTheatre: + "/WarTheatre.app/Contents/MacOS/WarTheatre": - when: - os: mac store: steam - /WarTheatre.exe: + "/WarTheatre.exe": - when: - os: windows store: steam steam: id: 803720 -'War Theatre: Blood of Winter': +"War Theatre: Blood of Winter": installDir: War Theatre Blood of Winter: {} launch: - /WarTheatre2.app/Contents/MacOS/WarTheatre2: + "/WarTheatre2.app/Contents/MacOS/WarTheatre2": - when: - os: mac store: steam - /WarTheatre2.exe: + "/WarTheatre2.exe": - when: - os: windows store: steam @@ -612328,17 +613998,17 @@ War Theatre: id: 1150650 War Thunder: files: - /config.blk: + "/config.blk": tags: - config when: - os: windows - /My Games/WarThunder/Saves: + "/My Games/WarThunder/Saves": tags: - config when: - os: windows - /WarThunder/Saves/: + "/WarThunder/Saves/": tags: - config when: @@ -612346,24 +614016,24 @@ War Thunder: installDir: War Thunder: {} launch: - /WarThunderLauncher.app: + "/WarThunderLauncher.app": - when: - os: mac store: steam - /eac_wt_mlauncher.exe: - - arguments: '-eac_dir ../EasyAntiCheat -skip_pkg_validation -forcestart -config:gameplay/enableVR:b=no' + "/eac_wt_mlauncher.exe": + - arguments: "-eac_dir ../EasyAntiCheat -skip_pkg_validation -forcestart -config:gameplay/enableVR:b=no" when: - bit: 64 os: windows store: steam - /linux64/aces: - - arguments: '-skip_pkg_validation -forcestart' + "/linux64/aces": + - arguments: "-skip_pkg_validation -forcestart" when: - bit: 64 os: linux store: steam - /win32/eac_launcher.exe: - - arguments: '-eac_dir ../EasyAntiCheat -eac_launcher_settings Settings32.json -forcestart -skip_pkg_validation' + "/win32/eac_launcher.exe": + - arguments: "-eac_dir ../EasyAntiCheat -eac_launcher_settings Settings32.json -forcestart -skip_pkg_validation" when: - bit: 32 os: windows @@ -612374,15 +614044,15 @@ War Trains: installDir: War Trains: {} launch: - /Trains.app/Contents/MacOS/War Trains: + "/Trains.app/Contents/MacOS/War Trains": - when: - os: mac store: steam - /Trains.linux/trains.x86_64: + "/Trains.linux/trains.x86_64": - when: - os: linux store: steam - /War Trains.exe: + "/War Trains.exe": - when: - os: windows store: steam @@ -612392,11 +614062,11 @@ War Trigger 2: installDir: War Trigger 2: {} launch: - /War Trigger 2.app: + "/War Trigger 2.app": - when: - os: mac store: steam - /War Trigger 2.exe: + "/War Trigger 2.exe": - when: - os: windows store: steam @@ -612406,11 +614076,11 @@ War Trigger 3: installDir: War Trigger 3: {} launch: - /War Trigger 3.app: + "/War Trigger 3.app": - when: - os: mac store: steam - /War Trigger 3.exe: + "/War Trigger 3.exe": - when: - os: windows store: steam @@ -612420,7 +614090,7 @@ War Truck Simulator: installDir: War Truck Simulator: {} launch: - /War Truck Simulator.exe: + "/War Truck Simulator.exe": - when: - bit: 64 os: windows @@ -612429,7 +614099,7 @@ War Truck Simulator: id: 751660 War Wind: files: - /Saves: + "/Saves": tags: - save when: @@ -612439,14 +614109,14 @@ War Wind: installDir: War Wind: {} launch: - /WW.EXE: + "/WW.EXE": - when: - store: steam steam: id: 1741140 -'War Wind II: Human Onslaught': +"War Wind II: Human Onslaught": files: - /SAVES: + "/SAVES": tags: - save when: @@ -612456,36 +614126,36 @@ War Wind: installDir: War Wind II Human Onslaught: {} launch: - /WARWIND2.EXE: + "/WARWIND2.EXE": - when: - store: steam steam: id: 1741150 -'War World: Tactical Combat': +"War World: Tactical Combat": files: - /Settings.txt: + "/Settings.txt": tags: - config when: - os: windows War for the Overworld: files: - /GameData/Maps/Saves: + "/GameData/Maps/Saves": tags: - save when: - store: gog - /Profile//Saves: + "/Profile//Saves": tags: - save when: - os: windows - /userdata//230190/remote: + "/userdata//230190/remote": tags: - save when: - store: steam - /unity3d/Subterranean Games/War For The Overworld/prefs: + "/unity3d/Subterranean Games/War For The Overworld/prefs": tags: - config when: @@ -612495,16 +614165,19 @@ War for the Overworld: installDir: War For The Overworld: {} launch: - /WFTO.app: + "/WFTO.app": - when: - os: mac store: steam - /WFTOGame.exe: + "/WFTOGame.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam - /WFTOGame.x86_64: + "/WFTOGame.x86_64": - when: - os: linux store: steam @@ -612518,15 +614191,15 @@ War for the West: installDir: War for the West: {} launch: - /War for the West.app/Contents/MacOS/War for the West: + "/War for the West.app/Contents/MacOS/War for the West": - when: - os: mac store: steam - /WarForTheWest: + "/WarForTheWest": - when: - os: linux store: steam - /WarForTheWest.exe: + "/WarForTheWest.exe": - when: - os: windows store: steam @@ -612536,7 +614209,7 @@ War in Pocket: installDir: wgame: {} launch: - /wgame.exe: + "/wgame.exe": - when: - os: windows store: steam @@ -612546,25 +614219,25 @@ War in Space: installDir: War in Space: {} launch: - /WarinSpace.exe: + "/WarinSpace.exe": - when: - os: windows store: steam steam: id: 959380 -'War in a Box: Paper Tanks': +"War in a Box: Paper Tanks": installDir: War in a Box - Paper Tanks: {} launch: - /War in a Box - Paper Tanks.app: + "/War in a Box - Paper Tanks.app": - when: - os: mac store: steam - /War in a Box - Paper Tanks.exe: + "/War in a Box - Paper Tanks.exe": - when: - os: windows store: steam - /War in a Box - Paper Tanks.x86: + "/War in a Box - Paper Tanks.x86": - when: - os: linux store: steam @@ -612574,11 +614247,11 @@ War of Beach: installDir: War Of Beach: {} launch: - /war.app/Contents/MacOS/war: + "/war.app/Contents/MacOS/war": - when: - os: mac store: steam - /war.exe: + "/war.exe": - when: - os: windows store: steam @@ -612593,7 +614266,7 @@ War of Conquest: installDir: War of Conquest: {} launch: - /War of Conquest.exe: + "/War of Conquest.exe": - when: - os: windows store: steam @@ -612603,21 +614276,21 @@ War of Criminals: installDir: War of Criminals: {} launch: - /War of Criminals.app/Contents/MacOS/War of Criminals: + "/War of Criminals.app/Contents/MacOS/War of Criminals": - when: - os: mac store: steam - /War of Criminals.exe: + "/War of Criminals.exe": - when: - os: windows store: steam steam: id: 807940 -'War of Gaia : Into the Fire': +"War of Gaia : Into the Fire": installDir: War of Gaia Into the Fire: {} launch: - /War of Gaia.exe: + "/War of Gaia.exe": - when: - os: windows store: steam @@ -612627,7 +614300,7 @@ War of Gods: installDir: Sefirot Shards: {} launch: - /Sefirot.exe: + "/Sefirot.exe": - when: - os: windows store: steam @@ -612637,21 +614310,21 @@ War of Omens Card Game: installDir: War of Omens: {} launch: - /War of Omens.app: + "/War of Omens.app": - when: - os: mac store: steam - /WarOfOmens.exe: + "/WarOfOmens.exe": - when: - os: windows store: steam steam: id: 345460 -'War of Power: The Last Fight': +"War of Power: The Last Fight": installDir: War of Power The Last Fight: {} launch: - /War of Power The Last Fight.exe: + "/War of Power The Last Fight.exe": - when: - bit: 64 os: windows @@ -612662,7 +614335,7 @@ War of Rights: installDir: War of Rights: {} launch: - /War of Rights Launcher.exe: + "/War of Rights Launcher.exe": - when: - os: windows store: steam @@ -612672,11 +614345,11 @@ War of Spells: installDir: War Of Spells: {} launch: - /War Of Spells.app/Contents/MacOS/War Of Spells: + "/War Of Spells.app/Contents/MacOS/War Of Spells": - when: - os: mac store: steam - /War Of Spells.exe: + "/War Of Spells.exe": - when: - os: windows store: steam @@ -612686,21 +614359,21 @@ War of Three Kingdoms: installDir: War of Three Kingdoms: {} launch: - /Bin/game.bat: + "/Bin/game.bat": - when: - os: windows store: steam - workingDir: /Bin + workingDir: "/Bin" steam: id: 1002230 War of the Human Tanks: files: - /SaveData: + "/SaveData": tags: - save when: - os: windows - /system40.ini: + "/system40.ini": tags: - config when: @@ -612708,7 +614381,7 @@ War of the Human Tanks: installDir: War of the Human Tanks: {} launch: - /War of the Human Tanks.exe: + "/War of the Human Tanks.exe": - when: - store: steam registry: @@ -612721,7 +614394,7 @@ War of the Human Tanks - ALTeR: installDir: War of the Human Tanks - ALTeR: {} launch: - /War of the Human Tanks ALTeR.exe: + "/War of the Human Tanks ALTeR.exe": - when: - store: steam steam: @@ -612730,7 +614403,7 @@ War of the Human Tanks - Limited Operations: installDir: War of the Human Tanks - Limited Operations: {} launch: - /War of the Human Tanks LO.exe: + "/War of the Human Tanks LO.exe": - when: - store: steam steam: @@ -612739,11 +614412,11 @@ War of the Immortals: installDir: War of the Immortals: {} launch: - /Launcher.exe: - - arguments: '/Steam /arc:1' + "/Launcher.exe": + - arguments: "/Steam /arc:1" when: - store: steam - workingDir: /Bin + workingDir: "/Bin" steam: id: 209710 War of the Lance: @@ -612752,7 +614425,7 @@ War of the Lance: installDir: Shadow Sorcerer: {} launch: - /Launcher/Launcher.exe: + "/Launcher/Launcher.exe": - when: - store: steam steam: @@ -612761,7 +614434,7 @@ War of the Roses: installDir: War of the Roses: {} launch: - /run_game.exe: + "/run_game.exe": - arguments: loader.exe wotr.exe -eac -bundle-dir bundle when: - store: steam @@ -612771,7 +614444,7 @@ War of the Seraphim: installDir: War of the Seraphim: {} launch: - /FPSTrainingSimulator.exe: + "/FPSTrainingSimulator.exe": - when: - os: windows store: steam @@ -612786,7 +614459,7 @@ War of the Vikings: installDir: War of the Vikings: {} launch: - /run_game.exe: + "/run_game.exe": - arguments: start.exe wotv.exe -bundle-dir bundle -eac -force-paradox-os when: - store: steam @@ -612796,7 +614469,7 @@ War of the Wasteland: installDir: War of the Wasteland: {} launch: - /War of the Wasteland.exe: + "/War of the Wasteland.exe": - when: - os: windows store: steam @@ -612806,11 +614479,11 @@ War of the Zombie: installDir: War Of The Zombie: {} launch: - /WarOfTheZombie.app/Contents/MacOS/WarOfTheZombie: + "/WarOfTheZombie.app/Contents/MacOS/WarOfTheZombie": - when: - os: mac store: steam - /warofthezombie.exe: + "/warofthezombie.exe": - when: - os: windows store: steam @@ -612825,37 +614498,37 @@ War on Folvos: installDir: War on Folvos: {} launch: - /War on Folvos.exe: + "/War on Folvos.exe": - when: - store: steam steam: id: 317380 -'War, the Game': +"War, the Game": installDir: - 'War, the Game': {} + "War, the Game": {} launch: - /warthegame.exe: + "/warthegame.exe": - when: - os: windows store: steam steam: id: 322900 -'War.io: Survival Battle Royale': +"War.io: Survival Battle Royale": steam: id: 903070 -'War.io: Zombie Battle Royale': +"War.io: Zombie Battle Royale": steam: id: 912300 WarBirds - World War II Combat Aviation: installDir: WarBirds - World War II Combat Aviation: {} launch: - /WarBirds.app/Contents/MacOS/WarBirds: + "/WarBirds.app/Contents/MacOS/WarBirds": - when: - os: mac store: steam - workingDir: /WarBirds.app/Contents/Resources - /wb3_steam.exe: + workingDir: "/WarBirds.app/Contents/Resources" + "/wb3_steam.exe": - when: - os: windows store: steam @@ -612865,16 +614538,16 @@ WarBirds - World War II Combat Aviation: store: steam steam: id: 365620 -'WarBirds Dawn of Aces, World War I Air Combat': +"WarBirds Dawn of Aces, World War I Air Combat": installDir: - 'WarBirds Dawn of Aces, World War I Air Combat': {} + "WarBirds Dawn of Aces, World War I Air Combat": {} launch: - /DawnofAces.app/Contents/MacOS/WarBirds: + "/DawnofAces.app/Contents/MacOS/WarBirds": - when: - os: mac store: steam - workingDir: /DawnofAces.app/Contents/Resources - /wb3_steam.exe: + workingDir: "/DawnofAces.app/Contents/Resources" + "/wb3_steam.exe": - when: - os: windows store: steam @@ -612884,12 +614557,12 @@ WarBirds Dogfights 2016: installDir: WarBirds Dogfights: {} launch: - /Dogfights.app/Contents/MacOS/WarBirds: + "/Dogfights.app/Contents/MacOS/WarBirds": - when: - os: mac store: steam - workingDir: /Dogfights.app/Contents/Resources - /wb3_steam.exe: + workingDir: "/Dogfights.app/Contents/Resources" + "/wb3_steam.exe": - when: - os: windows store: steam @@ -612899,7 +614572,7 @@ WarBirds Dogfights 2016: store: steam steam: id: 433130 -'WarBox: Camouflage': +"WarBox: Camouflage": steam: id: 894200 WarBreeds: @@ -612911,7 +614584,7 @@ WarFallen: installDir: WarFallen: {} launch: - /TPgame.exe: + "/TPgame.exe": - when: - bit: 64 os: windows @@ -612922,12 +614595,12 @@ WarFire: installDir: WarFire: {} launch: - /bin/win_x64/WarFire.exe: + "/bin/win_x64/WarFire.exe": - when: - bit: 64 os: windows store: steam - /bin/win_x86/WarFire(32Bit).exe: + "/bin/win_x86/WarFire(32Bit).exe": - when: - bit: 32 os: windows @@ -612936,12 +614609,12 @@ WarFire: id: 470890 WarForwards: files: - /WarForwards/User Data: + "/WarForwards/User Data": tags: - config when: - os: windows - /WarForwards/User Data/Default/IndexedDB: + "/WarForwards/User Data/Default/IndexedDB": tags: - save when: @@ -612951,7 +614624,7 @@ WarForwards: installDir: WarForwards: {} launch: - /WarForwards.exe: + "/WarForwards.exe": - when: - bit: 64 os: windows @@ -612960,7 +614633,7 @@ WarForwards: id: 1081870 WarGames: files: - /saves: + "/saves": tags: - save when: @@ -612971,13 +614644,13 @@ WarGames: - config WarGames (2018): installDir: - '#WarGames': {} + "#WarGames": {} launch: - /#WarGames.app: + "/#WarGames.app": - when: - os: mac store: steam - /#WarGames.exe: + "/#WarGames.exe": - when: - os: windows store: steam @@ -612987,7 +614660,7 @@ WarGround: installDir: WarGround: {} launch: - /WarGround_Demo.exe: + "/WarGround_Demo.exe": - when: - bit: 64 os: windows @@ -613001,7 +614674,7 @@ WarPlan: installDir: WarPlan: {} launch: - /Launcher.exe: + "/Launcher.exe": - when: - store: steam steam: @@ -613013,7 +614686,7 @@ WarZone Flashpoint: installDir: WarZone: {} launch: - /WarzoneFlashpoint.exe: + "/WarzoneFlashpoint.exe": - when: - os: windows store: steam @@ -613023,25 +614696,25 @@ Warawara Invaders: installDir: Warawara Invaders: {} launch: - /WarawaraInvaders.exe: + "/WarawaraInvaders.exe": - when: - os: windows store: steam steam: id: 795550 -'Warbands: Bushido': +"Warbands: Bushido": installDir: WarbandsBushido: {} launch: - /Bushido.exe: + "/Bushido.exe": - when: - os: windows store: steam - /Bushido.x86: + "/Bushido.x86": - when: - os: linux store: steam - /WarbandsBushido.app/Contents/MacOS/WarbandsBushido: + "/WarbandsBushido.app/Contents/MacOS/WarbandsBushido": - when: - os: mac store: steam @@ -613051,11 +614724,11 @@ Warbanners: installDir: Warbanners_1: {} launch: - /Warbanners_1.exe: + "/Warbanners_1.exe": - when: - os: windows store: steam - /runner: + "/runner": - when: - os: linux store: steam @@ -613068,11 +614741,11 @@ Warborn: installDir: WARBORN: {} launch: - /WARBORN.app/Contents/MacOS/WARBORN: + "/WARBORN.app/Contents/MacOS/WARBORN": - when: - os: mac store: steam - /WARBORN.exe: + "/WARBORN.exe": - when: - os: windows store: steam @@ -613087,7 +614760,7 @@ Warbrush: installDir: Warbrush: {} launch: - /Warbrush.exe: + "/Warbrush.exe": - when: - os: windows store: steam @@ -613098,9 +614771,9 @@ Warchasm: Warchasm: {} steam: id: 1184260 -'Warcraft II: Battle.net Edition': +"Warcraft II: Battle.net Edition": files: - /Save: + "/Save": tags: - save when: @@ -613114,58 +614787,58 @@ Warchasm: HKEY_CURRENT_USER/Software/Blizzard Entertainment/Warcraft II: tags: - config -'Warcraft II: Tides of Darkness': +"Warcraft II: Tides of Darkness": files: - /SAVE*.SAV: + "/SAVE*.SAV": tags: - save when: - os: dos - /WAR2.INI: + "/WAR2.INI": tags: - config when: - os: dos -'Warcraft III: Reforged': +"Warcraft III: Reforged": files: - /Library/Application Support/Blizzard/Warcraft III/War3Preferences.txt: + "/Library/Application Support/Blizzard/Warcraft III/War3Preferences.txt": tags: - config when: - os: mac - /Library/Application Support/Warcraft III/BattleNet//Campaigns: + "/Library/Application Support/Warcraft III/BattleNet//Campaigns": tags: - save when: - os: mac - /Warcraft III/BattleNet//Campaigns: + "/Warcraft III/BattleNet//Campaigns": tags: - save when: - os: windows - /Warcraft III/War3Preferences.txt: + "/Warcraft III/War3Preferences.txt": tags: - config when: - os: windows -'Warcraft III: Reign of Chaos': +"Warcraft III: Reign of Chaos": files: - /Library/Application Support/Blizzard/Warcraft III/Save: + "/Library/Application Support/Blizzard/Warcraft III/Save": tags: - save when: - os: mac - /Library/Preferences/com.blizzard.Warcraft III.plist: + "/Library/Preferences/com.blizzard.Warcraft III.plist": tags: - config when: - os: mac - /Library/Preferences/com.blizzard.WarcraftIII.plist: + "/Library/Preferences/com.blizzard.WarcraftIII.plist": tags: - config when: - os: mac - /Saved Games/Warcraft III: + "/Saved Games/Warcraft III": tags: - save when: @@ -613174,19 +614847,19 @@ Warchasm: HKEY_CURRENT_USER/Software/Blizzard Entertainment/Warcraft III: tags: - config -'Warcraft: Orcs & Humans': +"Warcraft: Orcs & Humans": files: - /CONFIG.WAR (sound card settings): + "/CONFIG.WAR (sound card settings)": tags: - config when: - os: dos - /PREFS.WAR (in-game options): + "/PREFS.WAR (in-game options)": tags: - config when: - os: dos - /SAVE*.SAV: + "/SAVE*.SAV": tags: - save when: @@ -613200,11 +614873,11 @@ Warcube: installDir: Warcube: {} launch: - /Warcube.exe: + "/Warcube.exe": - when: - os: windows store: steam - /WarcubeMac.app/Contents/MacOS/WarcubeMac: + "/WarcubeMac.app/Contents/MacOS/WarcubeMac": - when: - os: mac store: steam @@ -613213,27 +614886,27 @@ Warcube: Warden: steam: id: 1149010 -'Warden: Melody of the Undergrowth': +"Warden: Melody of the Undergrowth": installDir: WardenMotU: {} launch: - /Warden.x86: - - arguments: '-force-opengl' + "/Warden.x86": + - arguments: "-force-opengl" when: - bit: 32 os: linux store: steam - /Warden.x86_64: - - arguments: '-force-opengl' + "/Warden.x86_64": + - arguments: "-force-opengl" when: - bit: 64 os: linux store: steam - /warden.app: + "/warden.app": - when: - os: mac store: steam - /warden.exe: + "/warden.exe": - when: - os: windows store: steam @@ -613243,12 +614916,12 @@ Wardens of the Amber Cage: installDir: Wardens_of_the_Amber_Cage_Full: {} launch: - /WardensOfTheAmberCage_Mac.app: + "/WardensOfTheAmberCage_Mac.app": - arguments: +force_flat_screen_mode when: - os: mac store: steam - /WardensOfTheAmberCage_Win64.exe: + "/WardensOfTheAmberCage_Win64.exe": - arguments: +force_flat_screen_mode when: - bit: 64 @@ -613263,11 +614936,11 @@ Wardwell House: installDir: Wardwell House: {} launch: - /Wardwell House Mac.app: + "/Wardwell House Mac.app": - when: - os: mac store: steam - /Wardwell House Windows/Wardwell House.exe: + "/Wardwell House Windows/Wardwell House.exe": - when: - os: windows store: steam @@ -613277,7 +614950,7 @@ Warehouse and Logistics Simulator: installDir: Warehouse and Logistics Simulator: {} launch: - /Launcher.exe: + "/Launcher.exe": - when: - os: windows store: steam @@ -613285,7 +614958,7 @@ Warehouse and Logistics Simulator: id: 273940 Warface: files: - /Saved Games/My Games/Warface: + "/Saved Games/My Games/Warface": tags: - config when: @@ -613293,8 +614966,8 @@ Warface: installDir: Warface: {} launch: - /WarfaceMycomSteamLoader.exe: - - arguments: '-FromSteam' + "/WarfaceMycomSteamLoader.exe": + - arguments: "-FromSteam" when: - os: windows store: steam @@ -613304,7 +614977,7 @@ Warfare: installDir: Warfare: {} launch: - /StartUp.exe: + "/StartUp.exe": - when: - store: steam steam: @@ -613313,7 +614986,7 @@ Warfare 1944: installDir: Warfare 1944: {} launch: - /Warfare1944/Binaries/Win64/Warfare1944-Win64-Shipping.exe: + "/Warfare1944/Binaries/Win64/Warfare1944-Win64-Shipping.exe": - when: - store: steam steam: @@ -613322,7 +614995,7 @@ Warfare Online: installDir: Warfare Online: {} launch: - /WarfareOnline.exe: + "/WarfareOnline.exe": - when: - os: windows store: steam @@ -613332,7 +615005,7 @@ Warfleet: installDir: Warmada: {} launch: - /Warmada.exe: + "/Warmada.exe": - when: - os: windows store: steam @@ -613342,7 +615015,7 @@ Warforged: installDir: Warforged: {} launch: - /Warforged.exe: + "/Warforged.exe": - when: - os: windows store: steam @@ -613350,12 +615023,12 @@ Warforged: id: 1014890 Warfork: files: - /Documents/My Games/Warfork 2.1/basewf/config.cfg: + "/Documents/My Games/Warfork 2.1/basewf/config.cfg": tags: - config when: - os: mac - /My Games/Warfork 2.1/basewf/config.cfg: + "/My Games/Warfork 2.1/basewf/config.cfg": tags: - config when: @@ -613363,39 +615036,39 @@ Warfork: installDir: fvi: {} launch: - /fvi-launcher/applications/warfork/Warfork.app/Contents/MacOS/Warfork: + "/fvi-launcher/applications/warfork/Warfork.app/Contents/MacOS/Warfork": - when: - os: mac store: steam - /fvi-launcher/applications/warfork/Warfork.app/Contents/Resources/warfork.i386: + "/fvi-launcher/applications/warfork/Warfork.app/Contents/Resources/warfork.i386": - when: - bit: 32 os: linux store: steam - workingDir: /fvi-launcher/applications/warfork/Warfork.app/Contents/Resources - /fvi-launcher/applications/warfork/Warfork.app/Contents/Resources/warfork.x86_64: + workingDir: "/fvi-launcher/applications/warfork/Warfork.app/Contents/Resources" + "/fvi-launcher/applications/warfork/Warfork.app/Contents/Resources/warfork.x86_64": - when: - bit: 64 os: linux store: steam - workingDir: /fvi-launcher/applications/warfork/Warfork.app/Contents/Resources - /fvi-launcher/applications/warfork/Warfork.app/Contents/Resources/warfork_x64.exe: + workingDir: "/fvi-launcher/applications/warfork/Warfork.app/Contents/Resources" + "/fvi-launcher/applications/warfork/Warfork.app/Contents/Resources/warfork_x64.exe": - when: - bit: 64 os: windows store: steam - workingDir: /fvi-launcher/applications/warfork/Warfork.app/Contents/Resources - /fvi-launcher/applications/warfork/Warfork.app/Contents/Resources/warfork_x86.exe: + workingDir: "/fvi-launcher/applications/warfork/Warfork.app/Contents/Resources" + "/fvi-launcher/applications/warfork/Warfork.app/Contents/Resources/warfork_x86.exe": - when: - bit: 32 os: windows store: steam - workingDir: /fvi-launcher/applications/warfork/Warfork.app/Contents/Resources + workingDir: "/fvi-launcher/applications/warfork/Warfork.app/Contents/Resources" steam: id: 671610 Warframe: files: - /Warframe: + "/Warframe": tags: - config when: @@ -613519,32 +615192,32 @@ Warframe: installDir: Warframe: {} launch: - /Tools/Launcher.exe: - - arguments: '-cluster:public -registry:Steam' + "/Tools/Launcher.exe": + - arguments: "-cluster:public -registry:Steam" when: - os: windows store: steam - workingDir: /Tools + workingDir: "/Tools" steam: id: 230410 -'Warfront Defenders: Westerplatte': +"Warfront Defenders: Westerplatte": installDir: WarfrontDefenders: {} launch: - /WarfrontDefenders.exe: + "/WarfrontDefenders.exe": - when: - os: windows store: steam steam: id: 412210 -'Wargame: Airland Battle': +"Wargame: Airland Battle": files: - /Library/Application Support/EugenSystems/WarGame2/SavedGames: + "/Library/Application Support/EugenSystems/WarGame2/SavedGames": tags: - save when: - os: mac - 'C:/Users/%USERNAME%/Saved Games/EugenSystems/WarGame2': + "C:/Users/%USERNAME%/Saved Games/EugenSystems/WarGame2": tags: - config - save @@ -613553,29 +615226,31 @@ Warframe: installDir: Wargame Airland Battle: {} launch: - /Wargame: + "/Wargame": - when: + - os: mac + store: steam - os: linux store: steam - /wargame2.exe: + "/wargame2.exe": - when: - os: windows store: steam steam: id: 222750 -'Wargame: European Escalation': +"Wargame: European Escalation": files: - /Library/Application Support/EugenSystems/WarGame/SavedGames: + "/Library/Application Support/EugenSystems/WarGame/SavedGames": tags: - save when: - os: mac - /Saved Games/EugenSystems/WarGame: + "/Saved Games/EugenSystems/WarGame": tags: - save when: - os: windows - /EugenSystems/WarGame/saves: + "/EugenSystems/WarGame/saves": tags: - config - save @@ -613586,34 +615261,34 @@ Warframe: installDir: Wargame European Escalation: {} launch: - /WarGame.exe: + "/WarGame.exe": - when: - os: windows store: steam - /Wargame: + "/Wargame": - when: - os: linux store: steam - /Wargame.app/Contents/MacOS/Wargame: + "/Wargame.app/Contents/MacOS/Wargame": - when: - os: mac store: steam steam: id: 58610 -'Wargame: Red Dragon': +"Wargame: Red Dragon": files: - /Library/Application Support/EugenSystems/WarGame3/SavedGames: + "/Library/Application Support/EugenSystems/WarGame3/SavedGames": tags: - save when: - os: mac - /Saved Games/EugenSystems/WarGame3: + "/Saved Games/EugenSystems/WarGame3": tags: - config - save when: - os: windows - /EugenSystems/WarGame3/saves: + "/EugenSystems/WarGame3/saves": tags: - config - save @@ -613622,12 +615297,15 @@ Warframe: installDir: Wargame Red Dragon: {} launch: - /WarGame3: + "/WarGame3": - when: - bit: 64 os: mac store: steam - /wargame3.exe: + - bit: 64 + os: linux + store: steam + "/wargame3.exe": - when: - os: windows store: steam @@ -613640,27 +615318,27 @@ Wargasm: - config Wargroove: files: - /.local/share/Chucklefish/Wargroove/save: + "/.local/share/Chucklefish/Wargroove/save": tags: - save when: - os: linux - /.local/share/Chucklefish/Wargroove/save_local/options: + "/.local/share/Chucklefish/Wargroove/save_local/options": tags: - config when: - os: linux - /Library/Chucklefish/Wargroove/save: + "/Library/Chucklefish/Wargroove/save": tags: - save when: - os: mac - /Chucklefish/Wargroove/save: + "/Chucklefish/Wargroove/save": tags: - save when: - os: windows - /Chucklefish/Wargroove/save_local/options: + "/Chucklefish/Wargroove/save_local/options": tags: - config when: @@ -613668,18 +615346,18 @@ Wargroove: installDir: Wargroove: {} launch: - /wargroove.app: + "/wargroove.app": - when: - os: mac store: steam - /win32_bin/wargroove32.exe: - - arguments: '--dx11' + "/win32_bin/wargroove32.exe": + - arguments: "--dx11" when: - bit: 32 os: windows store: steam - /win64_bin/wargroove64.exe: - - arguments: '--dx11' + "/win64_bin/wargroove64.exe": + - arguments: "--dx11" when: - bit: 64 os: windows @@ -613690,11 +615368,11 @@ Wargroove 2: installDir: Wargroove 2: {} launch: - /wargroove.app/Contents/MacOS/wargroove: + "/wargroove.app/Contents/MacOS/wargroove": - when: - os: mac store: steam - /win64_bin/wargroove64.exe: + "/win64_bin/wargroove64.exe": - when: - bit: 64 os: windows @@ -613705,7 +615383,7 @@ Wargs: installDir: Wargs: {} launch: - /Wargs.exe: + "/Wargs.exe": - when: - bit: 64 os: windows @@ -613715,16 +615393,16 @@ Wargs: Warhalla: steam: id: 852420 -'Warhammer 40,000: Armageddon': +"Warhammer 40,000: Armageddon": gog: id: 1748436321 id: gogExtra: - - 1582106357 - - 2040958465 - - 1615360050 - - 2137933220 - 1094727688 + - 1582106357 + - 1615360050 + - 2040958465 + - 2137933220 steamExtra: - 348760 - 353760 @@ -613736,31 +615414,31 @@ Warhalla: installDir: Warhammer 40000 Armageddon: {} launch: - /Armageddon.app: + "/Armageddon.app": - when: - os: mac store: steam - /autorun.exe: + "/autorun.exe": - when: - os: windows store: steam steam: id: 312370 -'Warhammer 40,000: Armageddon - Da Orks': +"Warhammer 40,000: Armageddon - Da Orks": gog: id: 1392989695 installDir: Warhammer 40000 Armageddon - Da Orks: {} launch: - /autorun.exe: + "/autorun.exe": - when: - os: windows store: steam steam: id: 455340 -'Warhammer 40,000: Battle Sister': +"Warhammer 40,000: Battle Sister": files: - /AppData/LocalLow/Pixel Toys/Battle Sister/saves: + "/AppData/LocalLow/Pixel Toys/Battle Sister/saves": tags: - save when: @@ -613769,38 +615447,37 @@ Warhalla: Battle Sister: {} steam: id: 1733890 -'Warhammer 40,000: Battlesector': +"Warhammer 40,000: Battlesector": gog: id: 1928462226 id: gogExtra: - - 1743116974 - 1109339657 - - 2105142233 - - 1882106758 - - 2004956225 - 1193985497 + - 1743116974 + - 1882106758 - 1894360794 - 2004956225 + - 2105142233 steamExtra: - 1718640 - 1793050 - 1793051 - 2011980 - - 2305830 - 2199370 + - 2305830 installDir: Warhammer 40000 Battlesector: {} steam: id: 1295500 -'Warhammer 40,000: Boltgun': +"Warhammer 40,000: Boltgun": files: - /Boltgun/Saved/Config/WindowsNoEditor/GameUserSettings.ini: + "/Boltgun/Saved/Config/WindowsNoEditor/GameUserSettings.ini": tags: - config when: - os: windows - /Boltgun/Saved/SaveGames/: + "/Boltgun/Saved/SaveGames/": tags: - save when: @@ -613811,42 +615488,42 @@ Warhalla: installDir: Boltgun: {} launch: - '/Warhammer 40,000 Boltgun.exe': + "/Warhammer 40,000 Boltgun.exe": - when: - os: windows store: steam steam: id: 2005010 -'Warhammer 40,000: Carnage Champions': +"Warhammer 40,000: Carnage Champions": installDir: Carnage: {} launch: - /Carnage.app: + "/Carnage.app": - when: - os: mac store: steam - /Carnage.x86: + "/Carnage.x86": - when: - os: linux store: steam - /carnage.exe: + "/carnage.exe": - when: - os: windows store: steam steam: id: 294120 -'Warhammer 40,000: Chaos Gate': +"Warhammer 40,000: Chaos Gate": files: - /Save_G: + "/Save_G": tags: - save when: - os: windows gog: id: 1433928487 -'Warhammer 40,000: Chaos Gate - Daemonhunters': +"Warhammer 40,000: Chaos Gate - Daemonhunters": files: - /AppData/LocalLow/Complex Games Inc_/GreyKnights/SaveGames: + "/AppData/LocalLow/Complex Games Inc_/GreyKnights/SaveGames": tags: - save when: @@ -613854,20 +615531,20 @@ Warhalla: installDir: ChaosGate: {} launch: - /ChaosGate.exe: + "/ChaosGate.exe": - when: - os: windows store: steam steam: id: 1611910 -'Warhammer 40,000: Dakka Squadron - Flyboyz Edition': +"Warhammer 40,000: Dakka Squadron - Flyboyz Edition": files: - /Local/DakkaGame/Saved/Config/WindowsNoEditor: + "/Local/DakkaGame/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /Local/DakkaGame/Saved/SaveGames: + "/Local/DakkaGame/Saved/SaveGames": tags: - save when: @@ -613877,20 +615554,21 @@ Warhalla: installDir: Dakka Squadron: {} launch: - /DakkaGame.exe: + "/DakkaGame.exe": - when: - os: windows store: steam steam: id: 1253190 -'Warhammer 40,000: Darktide': +"Warhammer 40,000: Darktide": files: - /Fatshark/Darktide/user_settings.config: + "/Fatshark/Darktide/user_settings.config": tags: - config when: - - store: steam - /Fatshark/MicrosoftStore/Darktide/user_settings.config: + - os: windows + store: steam + "/Fatshark/MicrosoftStore/Darktide/user_settings.config": tags: - config when: @@ -613901,24 +615579,24 @@ Warhalla: - 1981790 - 2216070 installDir: - 'Warhammer 40,000 DARKTIDE': {} + "Warhammer 40,000 DARKTIDE": {} launch: - /launcher/launcher.exe: + "/launcher/launcher.exe": - when: - bit: 64 os: windows store: steam - workingDir: /launcher + workingDir: "/launcher" steam: id: 1361210 -'Warhammer 40,000: Dawn of War': +"Warhammer 40,000: Dawn of War": files: - /Local.ini: + "/Local.ini": tags: - config when: - os: windows - /Profiles/profile*: + "/Profiles/profile*": tags: - save when: @@ -613927,32 +615605,32 @@ Warhalla: id: 1525121122 id: gogExtra: - - 2132761962 - 1689181154 + - 2132761962 steamExtra: - 9310 installDir: Dawn of War Gold: {} launch: - /W40k.exe: + "/W40k.exe": - when: - store: steam steam: id: 4570 -'Warhammer 40,000: Dawn of War II': +"Warhammer 40,000: Dawn of War II": files: - /My Games/Dawn of War 2: + "/My Games/Dawn of War 2": tags: - config - save when: - os: windows - /feral-interactive/Dawn of War II/VFS/User/AppData/Roaming/My Games/Dawn of War 2: + "/feral-interactive/Dawn of War II/VFS/User/AppData/Roaming/My Games/Dawn of War 2": tags: - config when: - os: linux - /feral-interactive/Dawn of War II/VFS/User/AppData/Roaming/My Games/Dawn of War 2/Saved Games: + "/feral-interactive/Dawn of War II/VFS/User/AppData/Roaming/My Games/Dawn of War 2/Saved Games": tags: - save when: @@ -613965,34 +615643,34 @@ Warhalla: installDir: Dawn of War 2: {} launch: - /Dawn of War II.app: + "/Dawn of War II.app": - when: - os: mac store: steam - /DawnOfWar2.sh: + "/DawnOfWar2.sh": - when: - os: linux store: steam - /dow2.exe: - - arguments: '-logs' + "/dow2.exe": + - arguments: "-logs" when: - os: windows store: steam steam: id: 15620 -'Warhammer 40,000: Dawn of War II: Chaos Rising': +"Warhammer 40,000: Dawn of War II: Chaos Rising": files: - /My Games/Dawn of War 2/Saved Games: + "/My Games/Dawn of War 2/Saved Games": tags: - save when: - os: windows - /My Games/Dawn of War 2/Settings: + "/My Games/Dawn of War 2/Settings": tags: - config when: - os: windows - /feral-interactive/Dawn of War II/VFS/User/AppData/Roaming/My Games/Dawn of War 2: + "/feral-interactive/Dawn of War II/VFS/User/AppData/Roaming/My Games/Dawn of War 2": tags: - config - save @@ -614006,34 +615684,34 @@ Warhalla: installDir: Dawn of War 2: {} launch: - /Dawn of War II.app: + "/Dawn of War II.app": - when: - os: mac store: steam - /DawnOfWar2.sh: + "/DawnOfWar2.sh": - when: - os: linux store: steam - /dow2.exe: - - arguments: '-logs' + "/dow2.exe": + - arguments: "-logs" when: - os: windows store: steam steam: id: 20570 -'Warhammer 40,000: Dawn of War II: Retribution': +"Warhammer 40,000: Dawn of War II: Retribution": files: - /My Games/dawn of war ii - retribution/Saved Games: + "/My Games/dawn of war ii - retribution/Saved Games": tags: - save when: - os: windows - /My Games/dawn of war ii - retribution/Settings: + "/My Games/dawn of war ii - retribution/Settings": tags: - config when: - os: windows - /feral-interactive/Dawn of War II - Retribution: + "/feral-interactive/Dawn of War II - Retribution": tags: - config - save @@ -614075,14 +615753,14 @@ Warhalla: - 378041 steam: id: 56437 -'Warhammer 40,000: Dawn of War III': +"Warhammer 40,000: Dawn of War III": files: - /Profiles: + "/Profiles": tags: - save when: - os: windows - /feral-interactive/Dawn of War III/VFS/User/AppData/Roaming/My Games/Dawn of War III/Savegames: + "/feral-interactive/Dawn of War III/VFS/User/AppData/Roaming/My Games/Dawn of War III/Savegames": tags: - save when: @@ -614090,30 +615768,30 @@ Warhalla: installDir: Dawn of War III: {} launch: - /Dawn of War III.app: + "/Dawn of War III.app": - when: - os: mac store: steam - /DawnOfWar3.sh: + "/DawnOfWar3.sh": - when: - os: linux store: steam - /RelicDoW3.exe: - - arguments: '-disableHKThreads' + "/RelicDoW3.exe": + - arguments: "-disableHKThreads" when: - bit: 64 os: windows store: steam steam: id: 285190 -'Warhammer 40,000: Dawn of War: Dark Crusade': +"Warhammer 40,000: Dawn of War: Dark Crusade": files: - /Local.ini: + "/Local.ini": tags: - config when: - os: windows - /Profiles/Profile*/dxp2/Singleplayer/SaveGames: + "/Profiles/Profile*/dxp2/Singleplayer/SaveGames": tags: - save when: @@ -614126,19 +615804,19 @@ Warhalla: installDir: Dawn of War Dark Crusade: {} launch: - /darkcrusade.exe: + "/darkcrusade.exe": - when: - store: steam steam: id: 4580 -'Warhammer 40,000: Dawn of War: Soulstorm': +"Warhammer 40,000: Dawn of War: Soulstorm": files: - /Local.ini: + "/Local.ini": tags: - config when: - os: windows - /Profiles/Profile*/dxp2/Singleplayer/SaveGames: + "/Profiles/Profile*/dxp2/Singleplayer/SaveGames": tags: - save when: @@ -614151,92 +615829,89 @@ Warhalla: installDir: Dawn of War Soulstorm: {} launch: - /soulstorm.exe: + "/soulstorm.exe": - when: - store: steam steam: id: 9450 -'Warhammer 40,000: Deathwatch - Enhanced Edition': +"Warhammer 40,000: Deathwatch - Enhanced Edition": files: - /DeathwatchGame/Saved/Config/WindowsNoEditor: + "/DeathwatchGame/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /DeathwatchGame/Saved/SaveGames: + "/DeathwatchGame/Saved/SaveGames": tags: - save when: - os: windows installDir: - 'Warhammer 40,000 Deathwatch - Tyranid Invasion': {} + "Warhammer 40,000 Deathwatch - Tyranid Invasion": {} launch: - /DeathwatchGame: + "/DeathwatchGame": - when: - os: windows store: steam steam: id: 394450 -'Warhammer 40,000: Eternal Crusade': +"Warhammer 40,000: Eternal Crusade": files: - /EternalCrusade/Saved/Config/WindowsClient/GameUserSettings.ini: + "/EternalCrusade/Saved/Config/WindowsClient/GameUserSettings.ini": tags: - config when: - os: windows installDir: - 'Warhammer 40,000 - Eternal Crusade': {} + "Warhammer 40,000 - Eternal Crusade": {} launch: - /EternalCrusadeClient.exe: - - arguments: >- - ?EnableMBP=1?IsPveLocked=0?UsePersistence=1?UseTurbulentApi=1?PktLag=0?PktLagVariance=0?PktLoss=0?PktOrder=0?PktDup=0?UseLobby=1?ServiceApi=\"http://live-latest.eternalcrusade.com\" + "/EternalCrusadeClient.exe": + - arguments: "?EnableMBP=1?IsPveLocked=0?UsePersistence=1?UseTurbulentApi=1?PktLag=0?PktLagVariance=0?PktLoss=0?PktOrder=0?PktDup=0?UseLobby=1?ServiceApi=\\\"http://live-latest.eternalcrusade.com\\\"" when: - os: windows store: steam - - arguments: >- - ?EnableMBP=1?IsPveLocked=0?UsePersistence=1?UseTurbulentApi=1?PktLag=0?PktLagVariance=0?PktLoss=0?PktOrder=0?PktDup=0?UseLobby=1?ServiceApi=\"http://live-latest.eternalcrusade.com\" - -d3d10 + - arguments: "?EnableMBP=1?IsPveLocked=0?UsePersistence=1?UseTurbulentApi=1?PktLag=0?PktLagVariance=0?PktLoss=0?PktOrder=0?PktDup=0?UseLobby=1?ServiceApi=\\\"http://live-latest.eternalcrusade.com\\\" -d3d10" when: - store: steam steam: id: 375230 -'Warhammer 40,000: Fire Warrior': +"Warhammer 40,000: Fire Warrior": files: - /Data/FireWarrior.dat: + "/Data/FireWarrior.dat": tags: - save when: - os: windows - /active_fwp.dat: + "/active_fwp.dat": tags: - config when: - os: windows - /fw.config.xml: + "/fw.config.xml": tags: - config when: - os: windows gog: id: 1394528466 -'Warhammer 40,000: Gladius - Relics of War': +"Warhammer 40,000: Gladius - Relics of War": files: - /.config/Proxy Studios/Gladius: + "/.config/Proxy Studios/Gladius": tags: - config when: - os: linux - /.config/Proxy Studios/Gladius/SavedGames: + "/.config/Proxy Studios/Gladius/SavedGames": tags: - save when: - os: linux - /Proxy Studios/Gladius/Configuration/Gladius.xml: + "/Proxy Studios/Gladius/Configuration/Gladius.xml": tags: - config when: - os: windows - /Proxy Studios/Gladius/SavedGames: + "/Proxy Studios/Gladius/SavedGames": tags: - save when: @@ -614246,20 +615921,20 @@ Warhalla: installDir: Warhammer 40000 Gladius - Relics of War: {} launch: - /Binaries/Linux-x86_64/Gladius: - - arguments: '--steam' + "/Binaries/Linux-x86_64/Gladius": + - arguments: "--steam" when: - os: linux store: steam - /launcher.exe: + "/launcher.exe": - when: - os: windows store: steam steam: id: 489630 -'Warhammer 40,000: Inquisitor': +"Warhammer 40,000: Inquisitor": files: - /NeocoreGames/Warhammer Martyr: + "/NeocoreGames/Warhammer Martyr": tags: - config when: @@ -614271,7 +615946,6 @@ Warhalla: - os: windows id: steamExtra: - - 1042800 - 938400 - 939050 - 939051 @@ -614291,19 +615965,20 @@ Warhalla: - 1028893 - 1028894 - 1028895 + - 1042800 installDir: - 'Warhammer 40,000 Inquisitor - Martyr': {} + "Warhammer 40,000 Inquisitor - Martyr": {} launch: - /Warhammer.exe: + "/Warhammer.exe": - when: - bit: 64 os: windows store: steam steam: id: 527430 -'Warhammer 40,000: Kill Team': +"Warhammer 40,000: Kill Team": files: - /userdata//275610/remote/savedata.dat: + "/userdata//275610/remote/savedata.dat": tags: - save when: @@ -614311,25 +615986,25 @@ Warhalla: installDir: W40K Kill Team: {} launch: - /killteam.exe: + "/killteam.exe": - when: - os: windows store: steam steam: id: 275610 -'Warhammer 40,000: Mechanicus': +"Warhammer 40,000: Mechanicus": files: - /AppData/LocalLow/BulwarkStudios/Mechanicus/Saves: + "/AppData/LocalLow/BulwarkStudios/Mechanicus/Saves": tags: - save when: - os: windows - /unity3d/BulwarkStudios/Mechanicus: + "/unity3d/BulwarkStudios/Mechanicus": tags: - config when: - os: linux - /unity3d/BulwarkStudios/Mechanicus/Saves: + "/unity3d/BulwarkStudios/Mechanicus/Saves": tags: - save when: @@ -614339,16 +616014,16 @@ Warhalla: installDir: Mechanicus: {} launch: - /Mechanicus.app: + "/Mechanicus.app": - when: - os: mac store: steam - /Mechanicus.exe: + "/Mechanicus.exe": - when: - bit: 64 os: windows store: steam - /Mechanicus.x86_64: + "/Mechanicus.x86_64": - when: - bit: 64 os: linux @@ -614359,41 +616034,41 @@ Warhalla: - config steam: id: 673880 -'Warhammer 40,000: Regicide': +"Warhammer 40,000: Regicide": id: steamExtra: - 401270 installDir: - 'Warhammer 40,000 Regicide': {} + "Warhammer 40,000 Regicide": {} launch: - /Warhammer 40K Regicide.exe: + "/Warhammer 40K Regicide.exe": - when: - os: windows store: steam steam: id: 322910 -'Warhammer 40,000: Rites of War': +"Warhammer 40,000: Rites of War": files: - /save: + "/save": tags: - save when: - os: windows gog: id: 1443606025 -'Warhammer 40,000: Rogue Trader': +"Warhammer 40,000: Rogue Trader": gog: id: 1347700224 steam: id: 2186680 -'Warhammer 40,000: Sanctus Reach': +"Warhammer 40,000: Sanctus Reach": files: - /My Games/SANCTUS/OPTIONS.TXT: + "/My Games/SANCTUS/OPTIONS.TXT": tags: - config when: - os: windows - /My Games/SANCTUS/SAVES: + "/My Games/SANCTUS/SAVES": tags: - save when: @@ -614403,20 +616078,20 @@ Warhalla: installDir: Warhammer 40000 Sanctus Reach: {} launch: - /autorun.exe: + "/autorun.exe": - when: - os: windows store: steam steam: id: 502370 -'Warhammer 40,000: Shootas, Blood & Teef': +"Warhammer 40,000: Shootas, Blood & Teef": files: - '/AppData/LocalLow/Rogueside/Shootas, Blood & Teef': + "/AppData/LocalLow/Rogueside/Shootas, Blood & Teef": tags: - save when: - os: windows - /Library/Caches/com.rogueside.shootasbloodteef: + "/Library/Caches/com.rogueside.shootasbloodteef": tags: - save when: @@ -614426,29 +616101,29 @@ Warhalla: installDir: Shootas Blood Teef: {} launch: - /ShootasBloodAndTeef.app: + "/ShootasBloodAndTeef.app": - when: - os: mac store: steam - /ShootasBloodAndTeef.exe: + "/ShootasBloodAndTeef.exe": - when: - os: windows store: steam registry: - 'HKEY_CURRENT_USER/Software/Rogueside/Shootas, Blood & Teef': + "HKEY_CURRENT_USER/Software/Rogueside/Shootas, Blood & Teef": tags: - config steam: id: 1324530 -'Warhammer 40,000: Space Marine': +"Warhammer 40,000: Space Marine": files: - /userdata//55150: + "/userdata//55150": tags: - save when: - os: windows store: steam - /THQ/Relic Entertainment/Space Marine: + "/THQ/Relic Entertainment/Space Marine": tags: - config when: @@ -614457,37 +616132,37 @@ Warhalla: id: 1668484481 id: steamExtra: - - 55345 + - 55340 + - 55341 - 55343 - 55344 - - 55341 - - 55340 - - 55472 - - 55471 - - 55470 - - 55473 + - 55345 - 55347 - 55348 + - 55470 + - 55471 + - 55472 + - 55473 - 55475 - 55476 installDir: - 'Warhammer 40,000 Space Marine': {} + "Warhammer 40,000 Space Marine": {} launch: - /SpaceMarine.exe: + "/SpaceMarine.exe": - when: - store: steam steam: id: 55150 -'Warhammer 40,000: Space Marine II': +"Warhammer 40,000: Space Marine II": steam: id: 2183900 -'Warhammer 40,000: Space Wolf': +"Warhammer 40,000: Space Wolf": gog: id: 1662586446 installDir: - 'Warhammer 40,000 Space Wolf': {} + "Warhammer 40,000 Space Wolf": {} launch: - /SpaceWolf.exe: + "/SpaceWolf.exe": - when: - os: windows store: steam @@ -614497,38 +616172,38 @@ Warhalla: - config steam: id: 553210 -'Warhammer 40,000: Storm of Vengeance': +"Warhammer 40,000: Storm of Vengeance": installDir: Storm of Vengeance: {} launch: - /SoV.exe: + "/SoV.exe": - when: - store: steam steam: id: 254650 -'Warhammer Age of Sigmar: Champions': +"Warhammer Age of Sigmar: Champions": installDir: Champions: {} launch: - /Champions.app: + "/Champions.app": - when: - os: mac store: steam - /Champions.exe: + "/Champions.exe": - when: - bit: 64 os: windows store: steam steam: id: 988480 -'Warhammer Age of Sigmar: Realms of Ruin': +"Warhammer Age of Sigmar: Realms of Ruin": files: - /Saved Games/Frontier Developments/Warhammer Age of Sigmar Realms of Ruin//Config/*.config.xml: + "/Saved Games/Frontier Developments/Warhammer Age of Sigmar Realms of Ruin//Config/*.config.xml": tags: - config when: - os: windows - /Saved Games/Frontier Developments/Warhammer Age of Sigmar Realms of Ruin//Saves: + "/Saved Games/Frontier Developments/Warhammer Age of Sigmar Realms of Ruin//Saves": tags: - save when: @@ -614538,9 +616213,9 @@ Warhalla: - 2531130 steam: id: 1844380 -'Warhammer Age of Sigmar: Storm Ground': +"Warhammer Age of Sigmar: Storm Ground": files: - /Warfield/Saved/SaveGames: + "/Warfield/Saved/SaveGames": tags: - save when: @@ -614548,20 +616223,20 @@ Warhalla: installDir: Warhammer Age of Sigmar Storm Ground: {} launch: - /Warfield/Binaries/Win64/StormGround.exe: + "/Warfield/Binaries/Win64/StormGround.exe": - when: - os: windows store: steam steam: id: 1233590 -'Warhammer Age of Sigmar: Tempestfall': +"Warhammer Age of Sigmar: Tempestfall": files: - /Tempestfall/Saved/Config/WindowsNoEditor: + "/Tempestfall/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /Tempestfall/Saved/SaveGames: + "/Tempestfall/Saved/SaveGames": tags: - save when: @@ -614572,7 +616247,7 @@ Warhalla: id: 1337100 Warhammer Quest: files: - /AppData/LocalLow/ChilledMouse/WarhammerQuest: + "/AppData/LocalLow/ChilledMouse/WarhammerQuest": tags: - save when: @@ -614582,16 +616257,16 @@ Warhammer Quest: installDir: Warhammer Quest: {} launch: - /WarhammerQuest.app: + "/WarhammerQuest.app": - when: - os: mac store: steam - /WarhammerQuest.exe: + "/WarhammerQuest.exe": - when: - os: windows store: steam - /WarhammerQuest.x86: - - arguments: '-force-opengl' + "/WarhammerQuest.x86": + - arguments: "-force-opengl" when: - os: linux store: steam @@ -614601,39 +616276,39 @@ Warhammer Quest: - config steam: id: 326670 -'Warhammer Quest 2: The End Times': +"Warhammer Quest 2: The End Times": gog: id: 1219832871 installDir: Warhammer Quest 2 The End Times: {} launch: - /WQ2.app: + "/WQ2.app": - when: - os: mac store: steam - /WQ2.exe: + "/WQ2.exe": - when: - bit: 64 os: windows store: steam steam: id: 910450 -'Warhammer Underworlds: Online': +"Warhammer Underworlds: Online": gog: id: 1153941202 installDir: Warhammer Underworlds Online: {} launch: - /wuo.exe: + "/wuo.exe": - when: - bit: 64 os: windows store: steam steam: id: 1022310 -'Warhammer: Arcane Magic': +"Warhammer: Arcane Magic": files: - /userdata//440330/remote/game.save: + "/userdata//440330/remote/game.save": tags: - save when: @@ -614642,20 +616317,20 @@ Warhammer Quest: installDir: Warhammer Arcane Magic: {} launch: - /warhammer_arcane_magic.app: + "/warhammer_arcane_magic.app": - when: - os: mac store: steam - /warhammer_arcane_magic.exe: + "/warhammer_arcane_magic.exe": - when: - os: windows store: steam - /warhammer_arcane_magic.x86: + "/warhammer_arcane_magic.x86": - when: - bit: 32 os: linux store: steam - /warhammer_arcane_magic.x86_64: + "/warhammer_arcane_magic.x86_64": - when: - bit: 64 os: linux @@ -614666,28 +616341,28 @@ Warhammer Quest: - config steam: id: 440330 -'Warhammer: Chaos and Conquest': +"Warhammer: Chaos and Conquest": installDir: Warhammer Chaos & Conquest: {} launch: - /Warhammer.app: + "/Warhammer.app": - when: - os: mac store: steam - /Warhammer.exe: + "/Warhammer.exe": - when: - os: windows store: steam steam: id: 1144170 -'Warhammer: Chaosbane': +"Warhammer: Chaosbane": files: - /Data/GD/adjust.cnf: + "/Data/GD/adjust.cnf": tags: - config when: - os: windows - /Data/save: + "/Data/save": tags: - config - save @@ -614698,15 +616373,15 @@ Warhammer Quest: installDir: Warhammer Chaosbane: {} launch: - /Exe/Chaosbane.exe: + "/Exe/Chaosbane.exe": - when: - store: steam - workingDir: /Exe + workingDir: "/Exe" steam: id: 774241 -'Warhammer: Dark Omen': +"Warhammer: Dark Omen": files: - /SaveGame: + "/SaveGame": tags: - save when: @@ -614715,14 +616390,14 @@ Warhammer Quest: HKEY_LOCAL_MACHINE/SOFTWARE/WOW6432Node/Electronic Arts/Dark Omen/1.0/Options: tags: - config -'Warhammer: End Times - Vermintide': +"Warhammer: End Times - Vermintide": files: - /Fatshark/Warhammer End Times Vermintide/*.config: + "/Fatshark/Warhammer End Times Vermintide/*.config": tags: - config when: - os: windows - /Fatshark/Warhammer End Times Vermintide/*.sav: + "/Fatshark/Warhammer End Times Vermintide/*.sav": tags: - save when: @@ -614730,48 +616405,48 @@ Warhammer Quest: installDir: Warhammer End Times Vermintide: {} launch: - /binaries/vermintide.exe: - - arguments: '-bundle-dir ..\\bundle -ini settings' + "/binaries/vermintide.exe": + - arguments: "-bundle-dir ..\\\\bundle -ini settings" when: - store: steam - workingDir: /binaries - /launcher/launcher.exe: + workingDir: "/binaries" + "/launcher/launcher.exe": - when: - store: steam - workingDir: /launcher + workingDir: "/launcher" steam: id: 235540 -'Warhammer: Mark of Chaos': +"Warhammer: Mark of Chaos": files: - /Warhammer Battle March/Save: + "/Warhammer Battle March/Save": tags: - save when: - os: windows - /Warhammer Mark of Chaos/Save: + "/Warhammer Mark of Chaos/Save": tags: - save when: - os: windows gog: id: 1609408156 -'Warhammer: Shadow of the Horned Rat': +"Warhammer: Shadow of the Horned Rat": files: - /TEMP: + "/TEMP": tags: - config when: - os: windows - /TEMP/savegame.*: + "/TEMP/savegame.*": tags: - save when: - os: windows gog: id: 1433929853 -'Warhammer: Vermintide 2': +"Warhammer: Vermintide 2": files: - /Fatshark/Vermintide 2: + "/Fatshark/Vermintide 2": tags: - config - save @@ -614810,14 +616485,14 @@ Warhammer Quest: installDir: Warhammer Vermintide 2: {} launch: - /launcher/launcher.exe: - - arguments: '--bundle-dir ..\\bundle' + "/launcher/launcher.exe": + - arguments: "--bundle-dir ..\\\\bundle" when: - store: steam - workingDir: /launcher + workingDir: "/launcher" steam: id: 552500 -'Warhammer: Vermintide VR - Hero Trials': +"Warhammer: Vermintide VR - Hero Trials": installDir: Warhammer End Times - VR: {} steam: @@ -614829,17 +616504,17 @@ Warhaven: installDir: Warhaven: {} launch: - /Warhaven/Binaries/Win64/Warhaven-Win64-Shipping.exe: - - arguments: '-PlatformProvider=TOY -steam -saveddirsuffix=GL' + "/Warhaven/Binaries/Win64/Warhaven-Win64-Shipping.exe": + - arguments: "-PlatformProvider=TOY -steam -saveddirsuffix=GL" when: - store: steam steam: id: 2107670 -'Warhawks: European Theater': +"Warhawks: European Theater": installDir: Warhawks: {} launch: - /AirStrikeClassic_oculusTest.exe: + "/AirStrikeClassic_oculusTest.exe": - when: - os: windows store: steam @@ -614849,7 +616524,7 @@ Warhead: installDir: Warhead: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -614859,8 +616534,9 @@ Warhead Destined: installDir: Warhead Destined: {} launch: - /game.exe: + "/game.exe": - when: + - store: steam - os: windows store: steam steam: @@ -614869,7 +616545,7 @@ Warium: installDir: Warium: {} launch: - /Warium.exe: + "/Warium.exe": - when: - os: windows store: steam @@ -614884,7 +616560,7 @@ Warlander: installDir: Warlander: {} launch: - /Warlander.exe: + "/Warlander.exe": - when: - bit: 64 os: windows @@ -614896,19 +616572,19 @@ Warlander (2023): warlander: {} steam: id: 1675900 -'Warlock 2: The Exiled': +"Warlock 2: The Exiled": installDir: Warlock 2: {} launch: - /Game: + "/Game": - when: - os: linux store: steam - /Game.app: + "/Game.app": - when: - os: mac store: steam - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -614917,69 +616593,69 @@ Warlander (2023): Warlock Revenge: steam: id: 723500 -Warlock's Citadel: +"Warlock's Citadel": installDir: - Warlock's Citadel: {} + "Warlock's Citadel": {} launch: - /wc: + "/wc": - when: - os: linux store: steam - /wc.app/Contents/MacOS/wc: + "/wc.app/Contents/MacOS/wc": - when: - os: mac store: steam - workingDir: /wc.app/Contents/MacOS - /wc.exe: + workingDir: "/wc.app/Contents/MacOS" + "/wc.exe": - when: - os: windows store: steam steam: id: 364260 -Warlock's Tower: +"Warlock's Tower": installDir: - Warlock's Tower: {} + "Warlock's Tower": {} launch: - /Warlock's Tower App.app/Contents/MacOS/love: + "/Warlock's Tower App.app/Contents/MacOS/love": - when: - os: mac store: steam - /warlockstower.exe: + "/warlockstower.exe": - when: - os: windows store: steam steam: id: 530370 -'Warlock: Master of the Arcane': +"Warlock: Master of the Arcane": installDir: Warlock - Master of the Arcane: {} launch: - /game.exe: + "/game.exe": - when: - store: steam - - arguments: '-safe_mode' + - arguments: "-safe_mode" when: - store: steam - /support/game.url: + "/support/game.url": - when: - store: steam - /support/ino_co_com.url: + "/support/ino_co_com.url": - when: - store: steam - /support/manual.pdf: + "/support/manual.pdf": - when: - store: steam - /support/paradox.url: + "/support/paradox.url": - when: - store: steam steam: id: 203630 -'Warlock: Tower Defence': +"Warlock: Tower Defence": installDir: Warlock Tower Defence: {} steam: id: 854510 -'Warlocks 2: God Slayers': +"Warlocks 2: God Slayers": gog: id: 1181344034 installDir: @@ -614988,7 +616664,7 @@ Warlock's Tower: id: 628330 Warlocks vs Shadows: files: - /Warlocks_Data/saves: + "/Warlocks_Data/saves": tags: - save when: @@ -614996,21 +616672,21 @@ Warlocks vs Shadows: installDir: Warlocks: {} launch: - /Warlocks.app: + "/Warlocks.app": - when: - os: mac store: steam - /Warlocks.exe: + "/Warlocks.exe": - when: - os: windows store: steam - /Warlocks.x86: + "/Warlocks.x86": - when: - os: linux store: steam steam: id: 330270 -'Warlord: Attrition': +"Warlord: Attrition": steam: id: 951400 Warlords: @@ -615018,7 +616694,7 @@ Warlords: id: 1972111803 Warlords (2002): files: - /assets/Config: + "/assets/Config": tags: - config - save @@ -615028,7 +616704,7 @@ Warlords Awakening: installDir: Warlords Awakening: {} launch: - /Starter.exe: + "/Starter.exe": - when: - os: windows store: steam @@ -615039,7 +616715,7 @@ Warlords Battlecry: id: 1207659110 Warlords Battlecry II: files: - /Warlords Battlecry II: + "/Warlords Battlecry II": tags: - config - save @@ -615053,7 +616729,7 @@ Warlords Battlecry III: installDir: Warlords Battlecry III: {} launch: - /Battlecry III.exe: + "/Battlecry III.exe": - when: - os: windows store: steam @@ -615069,11 +616745,11 @@ Warlords.IO: installDir: Warlords.IO: {} launch: - /Warlords.io-MacOSBuild.app: + "/Warlords.io-MacOSBuild.app": - when: - os: mac store: steam - /WarlordsIO.exe: + "/WarlordsIO.exe": - when: - os: windows store: steam @@ -615081,7 +616757,7 @@ Warlords.IO: id: 899000 Warm Up!: files: - /PLR: + "/PLR": tags: - config - save @@ -615095,7 +616771,7 @@ Warm Village: installDir: Warm Village: {} launch: - /WarmVillage暖暖村物语.exe: + "/WarmVillage暖暖村物语.exe": - when: - os: windows store: steam @@ -615105,20 +616781,20 @@ Warma: installDir: WARMA: {} launch: - /WARMA.exe: + "/WARMA.exe": - when: - os: windows store: steam steam: id: 697630 -'Warmachine: Tactics': +"Warmachine: Tactics": files: - /WarmachineGame/Saved/Config/WindowsNoEditor: + "/WarmachineGame/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /WarmachineGame/Saved/SaveGames: + "/WarmachineGame/Saved/SaveGames": tags: - save when: @@ -615126,46 +616802,46 @@ Warma: installDir: Warmachine Tactics: {} launch: - /WarmachineGame.app: + "/WarmachineGame.app": - when: - bit: 64 os: mac store: steam - /WarmachineGame/Binaries/Win32/WarmachineGame-Win32-Shipping.exe: + "/WarmachineGame/Binaries/Win32/WarmachineGame-Win32-Shipping.exe": - when: - bit: 32 os: windows store: steam - workingDir: /WarmachineGame/Binaries/Win32 - - arguments: '-d3d10' + workingDir: "/WarmachineGame/Binaries/Win32" + - arguments: "-d3d10" when: - bit: 32 os: windows store: steam - workingDir: /WarmachineGame/Binaries/Win32 - /WarmachineGame/Binaries/Win64/WarmachineGame-Win64-Shipping.exe: + workingDir: "/WarmachineGame/Binaries/Win32" + "/WarmachineGame/Binaries/Win64/WarmachineGame-Win64-Shipping.exe": - when: - bit: 64 os: windows store: steam - workingDir: /WarmachineGame/Binaries/Win64 - - arguments: '-d3d10' + workingDir: "/WarmachineGame/Binaries/Win64" + - arguments: "-d3d10" when: - bit: 64 os: windows store: steam - workingDir: /WarmachineGame/Binaries/Win64 + workingDir: "/WarmachineGame/Binaries/Win64" steam: id: 253510 Warman: installDir: Warman: {} launch: - /Warman.exe: + "/Warman.exe": - when: - os: windows store: steam - /Warman.x86_64: + "/Warman.x86_64": - when: - bit: 64 os: linux @@ -615176,7 +616852,7 @@ Warmode: installDir: WARMODE: {} launch: - /warmode.exe: + "/warmode.exe": - when: - os: windows store: steam @@ -615186,8 +616862,8 @@ Warmonger: installDir: Warmonger Chronicles: {} launch: - /Launcher.exe: - - arguments: '-steam' + "/Launcher.exe": + - arguments: "-steam" when: - store: steam steam: @@ -615196,7 +616872,7 @@ Warmord: installDir: Warmord: {} launch: - /Warmorde.exe: + "/Warmorde.exe": - when: - bit: 64 os: windows @@ -615205,19 +616881,19 @@ Warmord: id: 1028780 Warning Forever: files: - /rec: + "/rec": tags: - save when: - os: windows - /wf.ini: + "/wf.ini": tags: - config when: - os: windows Waronoi: files: - /AppData/LocalLow/MFC/Waronoi//*.dat: + "/AppData/LocalLow/MFC/Waronoi//*.dat": tags: - save when: @@ -615225,7 +616901,7 @@ Waronoi: installDir: Waronoi: {} launch: - /Waronoi.exe: + "/Waronoi.exe": - when: - os: windows store: steam @@ -615235,7 +616911,7 @@ Warp: installDir: Warp: {} launch: - /Binaries//Win32//Warp.exe: + "/Binaries//Win32//Warp.exe": - when: - store: steam steam: @@ -615244,7 +616920,7 @@ Warp Drive: installDir: Warp Drive: {} launch: - /WarpDrive.exe: + "/WarpDrive.exe": - when: - os: windows store: steam @@ -615256,15 +616932,15 @@ Warp Frontier: installDir: WarpFrontier: {} launch: - /WarpFrontier.app/Contents/MacOS/WarpFrontier: + "/WarpFrontier.app/Contents/MacOS/WarpFrontier": - when: - os: mac store: steam - /WarpFrontier.exe: + "/WarpFrontier.exe": - when: - os: windows store: steam - /WarpFrontier.x86_64: + "/WarpFrontier.x86_64": - when: - os: linux store: steam @@ -615274,15 +616950,15 @@ Warp Glider: installDir: Warp Glider: {} launch: - /Warp Glider.exe: + "/Warp Glider.exe": - when: - os: windows store: steam - /Warp Glider.x86_64: + "/Warp Glider.x86_64": - when: - os: linux store: steam - /WarpGlider.app: + "/WarpGlider.app": - when: - os: mac store: steam @@ -615298,21 +616974,23 @@ WarpBall: installDir: WarpBall: {} launch: - /WarpBall.exe: + "/WarpBall.exe": - when: - os: windows store: steam - /game.exe: + "/game.exe": - when: - os: mac store: steam + - os: linux + store: steam steam: id: 400570 WarpThrough: installDir: WarpThrough: {} launch: - /WarpThrough.exe: + "/WarpThrough.exe": - when: - os: windows store: steam @@ -615322,7 +617000,7 @@ WarpZone vs THE DIMENSION: installDir: WarpZone vs THE DIMENSION: {} launch: - /WarpZone vs THE DIMENSION.exe: + "/WarpZone vs THE DIMENSION.exe": - when: - os: windows store: steam @@ -615332,12 +617010,12 @@ Warpaint: installDir: Warpaint: {} launch: - /Warpaint/Warpaint.exe: + "/Warpaint/Warpaint.exe": - when: - bit: 64 os: windows store: steam - /Warpaint_MAC.app: + "/Warpaint_MAC.app": - when: - bit: 64 os: mac @@ -615348,11 +617026,11 @@ Warparty: installDir: Warparty: {} launch: - /warparty.app: + "/warparty.app": - when: - os: mac store: steam - /warparty.exe: + "/warparty.exe": - when: - os: windows store: steam @@ -615360,12 +617038,12 @@ Warparty: id: 777770 Warpath: files: - /Saves: + "/Saves": tags: - save when: - os: windows - /System/Warpath.ini: + "/System/Warpath.ini": tags: - config when: @@ -615381,19 +617059,19 @@ Warped Reality: WarpedSpace: steam: id: 1537810 -'Warpin: Creation': +"Warpin: Creation": installDir: Warpin Creation (VR): {} steam: id: 548740 Warpips: files: - /AppData/LocalLow/Skirmish Mode Games/Warpips/*.dat: + "/AppData/LocalLow/Skirmish Mode Games/Warpips/*.dat": tags: - save when: - os: windows - /AppData/LocalLow/Skirmish Mode Games/Warpips/GameSettings.dat: + "/AppData/LocalLow/Skirmish Mode Games/Warpips/GameSettings.dat": tags: - config when: @@ -615403,7 +617081,7 @@ Warpips: installDir: Warpips: {} launch: - /Warpips.exe: + "/Warpips.exe": - when: - os: windows store: steam @@ -615413,37 +617091,37 @@ Warpips: - config steam: id: 1291010 -'Warplanes: WW1 Sky Aces': +"Warplanes: WW1 Sky Aces": installDir: Warplanes WW1 Sky Aces: {} launch: - /WW1.exe: + "/WW1.exe": - when: - os: windows store: steam - /WW1.x86_64: + "/WW1.x86_64": - when: - os: linux store: steam - /WW1OSX.app: + "/WW1OSX.app": - when: - os: mac store: steam steam: id: 1155590 -'Warplanes: WW2 Dogfight': +"Warplanes: WW2 Dogfight": installDir: Warplanes WW2 Dogfight: {} launch: - /Warplanes.exe: + "/Warplanes.exe": - when: - os: windows store: steam - /Warplanes.x86_64: + "/Warplanes.x86_64": - when: - os: linux store: steam - /WarplanesOSX.app: + "/WarplanesOSX.app": - when: - os: mac store: steam @@ -615453,7 +617131,7 @@ Warpzone Drifter: installDir: WARPZONE DRIFTER: {} launch: - /WARPZONE DRIFTER.exe: + "/WARPZONE DRIFTER.exe": - when: - os: windows store: steam @@ -615463,7 +617141,7 @@ Warrecs: installDir: Warrecs: {} launch: - /warrecs.exe: + "/warrecs.exe": - when: - os: windows store: steam @@ -615471,7 +617149,7 @@ Warrecs: id: 895080 WarriOrb: files: - /steamapps/common/WarriOrb/Warriorb/Saved/SaveGames: + "/steamapps/common/WarriOrb/Warriorb/Saved/SaveGames": tags: - save when: @@ -615480,25 +617158,25 @@ WarriOrb: installDir: WarriOrb: {} launch: - /Warriorb.exe: + "/Warriorb.exe": - when: - os: windows store: steam - /Warriorb.sh: + "/Warriorb.sh": - when: - os: linux store: steam steam: id: 790360 -'WarriOrb: Prologue': +"WarriOrb: Prologue": installDir: WarriOrbPrologue: {} launch: - /Warriorb.exe: + "/Warriorb.exe": - when: - os: windows store: steam - /Warriorb.sh: + "/Warriorb.sh": - when: - os: linux store: steam @@ -615506,12 +617184,12 @@ WarriOrb: id: 1193760 Warring States: files: - /AppData/LocalLow/polynation/Warring States: + "/AppData/LocalLow/polynation/Warring States": tags: - save when: - os: windows - /userdata//282680/remote: + "/userdata//282680/remote": tags: - save when: @@ -615519,20 +617197,20 @@ Warring States: installDir: Warring States: {} launch: - /WarringStates: + "/WarringStates": - when: - os: linux store: steam - /WarringStates.app: + "/WarringStates.app": - when: - os: mac store: steam - /WarringStates.exe: - - arguments: '-window-mode exclusive' + "/WarringStates.exe": + - arguments: "-window-mode exclusive" when: - os: windows store: steam - - arguments: '-window-mode borderless' + - arguments: "-window-mode borderless" when: - os: windows store: steam @@ -615546,7 +617224,7 @@ Warrior Fighter: installDir: Warrior Fighter: {} launch: - /WarriorFighter.exe: + "/WarriorFighter.exe": - when: - bit: 64 os: windows @@ -615555,7 +617233,7 @@ Warrior Fighter: id: 941670 Warrior Kings: files: - /saved: + "/saved": tags: - save when: @@ -615565,7 +617243,7 @@ Warrior Kings: installDir: Warrior Kings: {} launch: - /warrior_kings.exe: + "/warrior_kings.exe": - when: - store: steam registry: @@ -615574,9 +617252,9 @@ Warrior Kings: - config steam: id: 297570 -'Warrior Kings: Battles': +"Warrior Kings: Battles": files: - /saved: + "/saved": tags: - save when: @@ -615586,7 +617264,7 @@ Warrior Kings: installDir: Warrior Kings Battles: {} launch: - /Warrior Kings - Battles.exe: + "/Warrior Kings - Battles.exe": - when: - store: steam registry: @@ -615599,21 +617277,21 @@ Warriors & Castles: installDir: Warriors and Castles: {} launch: - /GeC.exe: + "/GeC.exe": - when: - os: windows store: steam - /GeC.x86: + "/GeC.x86": - when: - bit: 32 os: linux store: steam - /GeC.x86_64: + "/GeC.x86_64": - when: - bit: 64 os: linux store: steam - /game.exe: + "/game.exe": - when: - store: steam steam: @@ -615622,7 +617300,7 @@ Warriors All-Stars: installDir: WARRIORS ALL-STARS: {} launch: - /Config.exe: + "/Config.exe": - when: - bit: 64 os: windows @@ -615631,24 +617309,24 @@ Warriors All-Stars: id: 610190 Warriors Orochi: files: - /KOEI/Warriors Orochi/*.dat: + "/KOEI/Warriors Orochi/*.dat": tags: - config when: - os: windows - /KOEI/Warriors Orochi/Savedata/save.dat: + "/KOEI/Warriors Orochi/Savedata/save.dat": tags: - save when: - os: windows Warriors Orochi 3 Ultimate Definitive Edition: files: - /KoeiTecmo/WARRIORS OROCHI 3 Ultimate/SAVEDATA/SAVEDATA.BIN: + "/KoeiTecmo/WARRIORS OROCHI 3 Ultimate/SAVEDATA/SAVEDATA.BIN": tags: - save when: - os: windows - /KoeiTecmo/WARRIORS OROCHI 3 Ultimate/Savedata/inputmap*.dat: + "/KoeiTecmo/WARRIORS OROCHI 3 Ultimate/Savedata/inputmap*.dat": tags: - config when: @@ -615656,7 +617334,7 @@ Warriors Orochi 3 Ultimate Definitive Edition: installDir: WARRIORS OROCHI 3 Ultimate: {} launch: - /WO3U.exe: + "/WO3U.exe": - when: - bit: 64 os: windows @@ -615669,7 +617347,7 @@ Warriors Orochi 3 Ultimate Definitive Edition: id: 1879330 Warriors Orochi 4: files: - /KoeiTecmo/WARRIORS OROCHI 4/Savedata: + "/KoeiTecmo/WARRIORS OROCHI 4/Savedata": tags: - save when: @@ -615677,7 +617355,7 @@ Warriors Orochi 4: installDir: WARRIORS OROCHI 4: {} launch: - /WO4.exe: + "/WO4.exe": - when: - bit: 64 os: windows @@ -615690,12 +617368,12 @@ Warriors Orochi 4: id: 831560 Warriors of Legend: files: - /GAME**.DAT: + "/GAME**.DAT": tags: - save when: - os: dos - /game.cfg: + "/game.cfg": tags: - config when: @@ -615704,7 +617382,7 @@ Warriors of Ragnarök: installDir: Warriors Of Ragarök: {} launch: - /GamePlanProject.exe: + "/GamePlanProject.exe": - when: - os: windows store: steam @@ -615714,7 +617392,7 @@ Warriors of Vilvatikta: installDir: Warriors of Vilvatikta: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: @@ -615725,7 +617403,7 @@ Warriors of the Nile: installDir: Warriors of the Nile v0.900: {} launch: - /Warriors of the Nile.exe: + "/Warriors of the Nile.exe": - when: - os: windows store: steam @@ -615733,7 +617411,7 @@ Warriors of the Nile: id: 1267470 Warriors of the Nile 2: files: - /AppData/LocalLow/StoveStudio: + "/AppData/LocalLow/StoveStudio": tags: - save when: @@ -615743,60 +617421,60 @@ Warriors of the Nile 2: installDir: Warriors of the Nile 2: {} launch: - /Warriors Of The Nile 2.exe: + "/Warriors Of The Nile 2.exe": - when: - os: windows store: steam steam: id: 1682060 -Warriors' Wrath: +"Warriors' Wrath": installDir: - Warriors' Wrath: {} + "Warriors' Wrath": {} launch: - /Warriors' Wrath.exe: + "/Warriors' Wrath.exe": - when: - os: windows store: steam steam: id: 466420 -'Warriors: Rise to Glory': +"Warriors: Rise to Glory": installDir: Warriors Rise to Glory: {} launch: - /Multiplayer/Warriors Rise to Glory.exe: + "/Multiplayer/Warriors Rise to Glory.exe": - when: - os: windows store: steam - /Single Player/Warriors.exe: + "/Single Player/Warriors.exe": - when: - os: windows store: steam - /warriors.app: + "/warriors.app": - when: - os: mac store: steam steam: id: 582330 -'Warriors: Rise to Glory! Online Multiplayer Open Beta': +"Warriors: Rise to Glory! Online Multiplayer Open Beta": steam: id: 1101910 -'Wars Across The World: Russian Battles': +"Wars Across The World: Russian Battles": installDir: WaW Russian Battles: {} launch: - /32Bits/WAW.exe: + "/32Bits/WAW.exe": - when: - bit: 32 os: windows store: steam - workingDir: /32Bits - /64Bits/WAW.exe: + workingDir: "/32Bits" + "/64Bits/WAW.exe": - when: - bit: 64 os: windows store: steam - workingDir: /64Bits - /WAW.app: + workingDir: "/64Bits" + "/WAW.app": - when: - os: mac store: steam @@ -615804,12 +617482,12 @@ Warriors' Wrath: id: 853150 Wars Across the World: files: - /WAWData/Saves: + "/WAWData/Saves": tags: - save when: - os: windows - /WAWData/cfg.json: + "/WAWData/cfg.json": tags: - config when: @@ -615817,47 +617495,47 @@ Wars Across the World: installDir: WAW: {} launch: - /32Bits/WAW.exe: + "/32Bits/WAW.exe": - when: - bit: 32 os: windows store: steam - workingDir: /32Bits - /64Bits/WAW.exe: + workingDir: "/32Bits" + "/64Bits/WAW.exe": - when: - bit: 64 os: windows store: steam - workingDir: /64Bits - /WAW.app: + workingDir: "/64Bits" + "/WAW.app": - when: - os: mac store: steam steam: id: 341040 -'Wars and Battles: Normandy': +"Wars and Battles: Normandy": installDir: Wars and Battles Normandy: {} launch: - /Normandy.app: + "/Normandy.app": - when: - os: mac store: steam - /Normandy.exe: + "/Normandy.exe": - when: - os: windows store: steam steam: id: 738580 -'Wars and Battles: October War': +"Wars and Battles: October War": installDir: Wars and Battles October War: {} launch: - /OctoberWar.app: + "/OctoberWar.app": - when: - os: mac store: steam - /OctoberWar.exe: + "/OctoberWar.exe": - when: - os: windows store: steam @@ -615867,15 +617545,15 @@ Wars and Roses: installDir: Wars and Roses: {} launch: - /Wars and Roses.exe: + "/Wars and Roses.exe": - when: - os: windows store: steam steam: id: 1786200 -'Wars and Warriors: Joan of Arc': +"Wars and Warriors: Joan of Arc": files: - /SAVE: + "/SAVE": tags: - save when: @@ -615883,7 +617561,7 @@ Wars and Roses: installDir: Wars and Warriors - Joan of Arc: {} launch: - /joan.exe: + "/joan.exe": - when: - os: windows store: steam @@ -615893,7 +617571,7 @@ Wars of Napoleon: installDir: Wars of Napoleon: {} launch: - /autorun.exe: + "/autorun.exe": - when: - os: windows store: steam @@ -615903,7 +617581,7 @@ Wars of Succession: installDir: Wars of Succession: {} launch: - /autorun.exe: + "/autorun.exe": - when: - os: windows store: steam @@ -615913,23 +617591,23 @@ Wars of the Roses: installDir: Wars of the Roses: {} launch: - /warsoftheroses.app: + "/warsoftheroses.app": - when: - os: mac store: steam - /warsoftheroses.exe: + "/warsoftheroses.exe": - when: - os: windows store: steam steam: id: 1185950 -'Warsaw Rising: City of Heroes': +"Warsaw Rising: City of Heroes": gog: id: 1751163083 installDir: WARSAW: {} launch: - /Warsaw.exe: + "/Warsaw.exe": - when: - bit: 64 os: windows @@ -615940,7 +617618,7 @@ Warshift: installDir: WARSHIFT: {} launch: - /WARSHIFT.exe: + "/WARSHIFT.exe": - when: - os: windows store: steam @@ -615950,7 +617628,7 @@ Warships 3D: installDir: Warships 3D: {} launch: - /Warships3D.exe: + "/Warships3D.exe": - when: - os: windows store: steam @@ -615960,11 +617638,11 @@ Warships on the Halloween Night: installDir: Warships On The Halloween Night: {} launch: - /WarshipsOnTheHalloweenNight: + "/WarshipsOnTheHalloweenNight": - when: - os: linux store: steam - /WarshipsOnTheHalloweenNight.exe: + "/WarshipsOnTheHalloweenNight.exe": - when: - os: windows store: steam @@ -615974,41 +617652,41 @@ Warshmallows: installDir: Warshmallows: {} launch: - /Warshmallows.exe: + "/Warshmallows.exe": - when: - os: windows store: steam - /linux/Wrashmallows.x86_64: + "/linux/Wrashmallows.x86_64": - when: - os: linux store: steam - workingDir: /linux + workingDir: "/linux" steam: id: 1248150 Warside: installDir: Warside: {} launch: - /files/stable/bin/game.exe: - - arguments: '--steam' + "/files/stable/bin/game.exe": + - arguments: "--steam" when: - os: windows store: steam - workingDir: /files/stable/bin - /files/stable/bin/starter.exe: + workingDir: "/files/stable/bin" + "/files/stable/bin/starter.exe": - when: - os: windows store: steam - workingDir: /files/stable/bin + workingDir: "/files/stable/bin" steam: id: 320590 -'Warsim: The Realm of Aslona': +"Warsim: The Realm of Aslona": gog: id: 1574775422 installDir: Warsim The Realm of Aslona: {} launch: - /Warsim.exe: + "/Warsim.exe": - when: - os: windows store: steam @@ -616016,17 +617694,17 @@ Warside: id: 659540 Warsow: files: - /.warsow-1.0/basewsw/config.cfg: + "/.warsow-1.0/basewsw/config.cfg": tags: - config when: - os: linux - /Library/Application Support/Warsow 1.0/basewsw/config.cfg: + "/Library/Application Support/Warsow 1.0/basewsw/config.cfg": tags: - config when: - os: mac - /Warsow/basewsw/config.cfg: + "/Warsow/basewsw/config.cfg": tags: - config when: @@ -616037,20 +617715,20 @@ Warspear Online: installDir: Warspear Online MMORPG: {} launch: - /warspear.app/Contents/MacOS/Warspear Online Steam: + "/warspear.app/Contents/MacOS/Warspear Online Steam": - when: - os: mac store: steam - /warspear.exe: + "/warspear.exe": - when: - os: windows store: steam - /warspear_32: + "/warspear_32": - when: - bit: 32 os: linux store: steam - /warspear_64: + "/warspear_64": - when: - bit: 64 os: linux @@ -616061,25 +617739,25 @@ Warstone TD: installDir: Warstone TD: {} launch: - /Contents/MacOS/warstone: + "/Contents/MacOS/warstone": - when: - os: mac store: steam - /warstone.exe: + "/warstone.exe": - when: - os: windows store: steam - /warstone.x86_64: + "/warstone.x86_64": - when: - os: linux store: steam steam: id: 562500 -'Warsworn: Dragon of Japan': +"Warsworn: Dragon of Japan": installDir: DragonofJapan: {} launch: - /DOJ.exe: + "/DOJ.exe": - when: - bit: 64 os: windows @@ -616088,12 +617766,12 @@ Warstone TD: id: 1037820 Wartales: files: - /save: + "/save": tags: - save when: - os: windows - /Packages/7286ShiroGamesSAS.Wartales_esjzrp5ntrs52/SystemAppData/wgs/: + "/Packages/7286ShiroGamesSAS.Wartales_esjzrp5ntrs52/SystemAppData/wgs/": tags: - save when: @@ -616104,7 +617782,7 @@ Wartales: installDir: Wartales: {} launch: - /Wartales.exe: + "/Wartales.exe": - when: - os: windows store: steam @@ -616115,17 +617793,17 @@ Wartales: id: 1527950 Wartile: files: - /WARTILE/Saved/Config/WindowsNoEditor: + "/WARTILE/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /WARTILE/Saved/SaveGames: + "/WARTILE/Saved/SaveGames": tags: - save when: - os: windows - /WARTILE/Saved/SaveGames/OptionsSlot.sav: + "/WARTILE/Saved/SaveGames/OptionsSlot.sav": tags: - config when: @@ -616135,7 +617813,7 @@ Wartile: installDir: WARTILE: {} launch: - /Wartile.exe: + "/Wartile.exe": - when: - os: windows store: steam @@ -616148,36 +617826,36 @@ Wartune: installDir: Wartune: {} launch: - /Wartune.exe: + "/Wartune.exe": - when: - os: windows store: steam steam: id: 451230 -'Warz: Horde': +"Warz: Horde": installDir: Warz Horde: {} steam: id: 789520 Warzone 2100: files: - /.local/share/warzone2100: + "/.local/share/warzone2100": tags: - config when: - os: linux - /.local/share/warzone2100/savegames: + "/.local/share/warzone2100/savegames": tags: - save when: - os: linux - /Library/Application Support/Warzone 2100 : + "/Library/Application Support/Warzone 2100 ": tags: - config - save when: - os: mac - /Warzone 2100 Project/Warzone 2100 : + "/Warzone 2100 Project/Warzone 2100 ": tags: - config - save @@ -616186,7 +617864,7 @@ Warzone 2100: installDir: Warzone 2100: {} launch: - /bin/warzone2100.exe: + "/bin/warzone2100.exe": - when: - store: steam steam: @@ -616203,7 +617881,7 @@ Washed Up Wizard: installDir: Washed Up Wizard: {} launch: - /Washed Up Wizard.exe: + "/Washed Up Wizard.exe": - when: - os: windows store: steam @@ -616213,11 +617891,11 @@ Washed Up!: installDir: WashedUp: {} launch: - /WashedUp.app/Contents/MacOS/WashedUp: + "/WashedUp.app/Contents/MacOS/WashedUp": - when: - os: mac store: steam - /WashedUp.exe: + "/WashedUp.exe": - when: - os: windows store: steam @@ -616232,7 +617910,7 @@ Waste Cleaner: installDir: Waste Cleaner: {} launch: - /waste_cleaner.exe: + "/waste_cleaner.exe": - when: - os: windows store: steam @@ -616242,7 +617920,7 @@ Waste Walkers: installDir: Waste Walkers: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -616250,12 +617928,12 @@ Waste Walkers: id: 371100 Wasted: files: - /config.sav: + "/config.sav": tags: - config when: - os: windows - /save.sav: + "/save.sav": tags: - save when: @@ -616263,7 +617941,7 @@ Wasted: installDir: Wasted: {} launch: - /Wasted.exe: + "/Wasted.exe": - when: - os: windows store: steam @@ -616273,15 +617951,15 @@ Wasted Pizza: installDir: Wasted Pizza: {} launch: - /WastedPizza.app/Contents/MacOS/WastedPizza: + "/WastedPizza.app/Contents/MacOS/WastedPizza": - when: - os: mac store: steam - /WastedPizza.exe: + "/WastedPizza.exe": - when: - os: windows store: steam - /WastedPizza.x86: + "/WastedPizza.x86": - when: - os: linux store: steam @@ -616289,17 +617967,17 @@ Wasted Pizza: id: 709820 Wasteland: files: - /.wasteland: + "/.wasteland": tags: - save when: - os: linux - /Library/Application Support/Wasteland: + "/Library/Application Support/Wasteland": tags: - save when: - os: mac - /inXile entertainment/Wasteland: + "/inXile entertainment/Wasteland": tags: - config - save @@ -616310,16 +617988,16 @@ Wasteland: installDir: Wasteland: {} launch: - /Wasteland.app/Contents/MacOS/Wasteland: + "/Wasteland.app/Contents/MacOS/Wasteland": - when: - os: mac store: steam - workingDir: /Wasteland.app - /wasteland: + workingDir: "/Wasteland.app" + "/wasteland": - when: - os: linux store: steam - /wasteland.exe: + "/wasteland.exe": - when: - os: windows store: steam @@ -616327,47 +618005,47 @@ Wasteland: id: 259130 Wasteland 2: files: - /.config/unity3d/inXile/Wasteland2/prefs: + "/.config/unity3d/inXile/Wasteland2/prefs": tags: - config when: - os: linux - /Documents/Library/Application Support/Wasteland2DC: + "/Documents/Library/Application Support/Wasteland2DC": tags: - save when: - os: mac - /Library/Application Support/Wasteland2: + "/Library/Application Support/Wasteland2": tags: - save when: - os: mac - /Library/Preferences/unity.inXile.Wasteland 2.plist: + "/Library/Preferences/unity.inXile.Wasteland 2.plist": tags: - config when: - os: mac - /My Games/Wasteland2: + "/My Games/Wasteland2": tags: - save when: - os: windows - /My Games/Wasteland2DC: + "/My Games/Wasteland2DC": tags: - save when: - os: windows - /Wasteland2: + "/Wasteland2": tags: - save when: - os: linux - /Wasteland2DC: + "/Wasteland2DC": tags: - save when: - os: linux - '/unity3d/inXile Entertainment/Wasteland 2: Director''s Cut/prefs': + "/unity3d/inXile Entertainment/Wasteland 2: Director's Cut/prefs": tags: - config when: @@ -616376,22 +618054,22 @@ Wasteland 2: id: 1207665713 id: gogExtra: - - 1207665723 - 1207665153 + - 1207665723 steamExtra: - 404730 installDir: Wasteland 2: {} launch: - /Build/WL2.exe: + "/Build/WL2.exe": - when: - os: windows store: steam - /Linux/WL2: + "/Linux/WL2": - when: - os: linux store: steam - /OSX/WL2.app/Contents/MacOS/WL2: + "/OSX/WL2.app/Contents/MacOS/WL2": - when: - os: mac store: steam @@ -616403,33 +618081,33 @@ Wasteland 2: id: 240760 Wasteland 3: files: - /Library/Application Support/Wasteland3: + "/Library/Application Support/Wasteland3": tags: - config when: - os: mac - /Library/Application Support/Wasteland3/Save Games: + "/Library/Application Support/Wasteland3/Save Games": tags: - save when: - os: mac - /My Games/Wasteland3/Save Games: + "/My Games/Wasteland3/Save Games": tags: - save when: - os: windows - /Packages/DeepSilver.56575194F7E04_hmv7qcest37me/SystemAppData/wgs/: + "/Packages/DeepSilver.56575194F7E04_hmv7qcest37me/SystemAppData/wgs/": tags: - save when: - os: windows store: microsoft - /Wasteland3/Save Games: + "/Wasteland3/Save Games": tags: - save when: - os: linux - /unity3d/InxileEntertainment/Wasteland 3/prefs: + "/unity3d/InxileEntertainment/Wasteland 3/prefs": tags: - config when: @@ -616438,32 +618116,32 @@ Wasteland 3: id: 1136650022 id: gogExtra: - - 2057748185 - - 1687336800 - - 1677126699 - 1593983043 - - 2003177495 + - 1677126699 + - 1687336800 - 1770944488 - 1960562196 + - 2003177495 + - 2057748185 steamExtra: + - 1191060 - 1382210 - - 1642320 - 1522650 - 1593330 - - 1191060 + - 1642320 installDir: Wasteland 3: {} launch: - /WL3.app: + "/WL3.app": - when: - os: mac store: steam - /WL3.exe: + "/WL3.exe": - when: - bit: 64 os: windows store: steam - /Wasteland 3.x86_64: + "/Wasteland 3.x86_64": - when: - os: linux store: steam @@ -616477,7 +618155,7 @@ Wasteland Angel: installDir: Wasteland Angel: {} launch: - /bin/x86/dx9/Angel.exe: + "/bin/x86/dx9/Angel.exe": - when: - store: steam steam: @@ -616487,9 +618165,9 @@ Wasteland Gossip: id: 746120 Wasteland Rampage: installDir: - Berserker's Descent: {} + "Berserker's Descent": {} launch: - /Berserker's Descent.exe: + "/Berserker's Descent.exe": - when: - os: windows store: steam @@ -616497,12 +618175,12 @@ Wasteland Rampage: id: 828680 Wasteland Remastered: files: - /AppData/LocalLow/InXile Entertainment/Wasteland Remastered/Wasteland.dat: + "/AppData/LocalLow/InXile Entertainment/Wasteland Remastered/Wasteland.dat": tags: - config when: - os: windows - /AppData/LocalLow/InXile Entertainment/Wasteland Remastered/saves: + "/AppData/LocalLow/InXile Entertainment/Wasteland Remastered/saves": tags: - save when: @@ -616512,7 +618190,7 @@ Wasteland Remastered: installDir: Wasteland Remastered: {} launch: - /Wasteland Remastered.exe: + "/Wasteland Remastered.exe": - when: - bit: 64 os: windows @@ -616527,11 +618205,11 @@ Wasteland Survival: installDir: Survival Wasteland Zombie: {} launch: - /survival.app/Contents/MacOS/survival: + "/survival.app/Contents/MacOS/survival": - when: - os: mac store: steam - /survival.exe: + "/survival.exe": - when: - bit: 64 os: windows @@ -616543,18 +618221,18 @@ Watch: id: 1053950 Watch Dogs: files: - /savegames//274: + "/savegames//274": tags: - save when: - os: windows store: uplay - /savegames//541: + "/savegames//541": tags: - save when: - - store: uplay - /My Games/Watch_Dogs//GamerProfile.xml: + - store: steam + "/My Games/Watch_Dogs//GamerProfile.xml": tags: - config when: @@ -616562,33 +618240,33 @@ Watch Dogs: installDir: Watch_Dogs: {} launch: - /bin/Watch_Dogs.exe: - - arguments: '-uplay_steam_mode' + "/bin/Watch_Dogs.exe": + - arguments: "-uplay_steam_mode" when: - os: windows store: steam - workingDir: /bin + workingDir: "/bin" steam: id: 243470 Watch Dogs 2: files: - /savegames//2688: + "/savegames//2688": tags: - save when: - os: windows store: uplay - /savegames//3619: + "/savegames//3619": tags: - save when: - - store: uplay - /My Games/Watch_Dogs 2/LocalStorage0: + - store: steam + "/My Games/Watch_Dogs 2/LocalStorage0": tags: - save when: - os: windows - /My Games/Watch_Dogs 2/WD2_GamerProfile.xml: + "/My Games/Watch_Dogs 2/WD2_GamerProfile.xml": tags: - config when: @@ -616596,29 +618274,29 @@ Watch Dogs 2: installDir: Watch_Dogs2: {} launch: - /bin/WatchDogs2.exe: - - arguments: '-uplay_steam_mode' + "/bin/WatchDogs2.exe": + - arguments: "-uplay_steam_mode" when: - bit: 64 os: windows store: steam - workingDir: /bin + workingDir: "/bin" steam: id: 447040 -'Watch Dogs: Legion': +"Watch Dogs: Legion": files: - /savegames//3353: + "/savegames//3353": tags: - save when: - os: windows store: uplay - /savegames//7017: + "/savegames//7017": tags: - save when: - - store: uplay - /My Games/Watch Dogs Legion/WD3_GamerProfile.xml: + - store: steam + "/My Games/Watch Dogs Legion/WD3_GamerProfile.xml": tags: - config when: @@ -616630,8 +618308,8 @@ Watch Dogs 2: installDir: WatchDogs_Legion: {} launch: - /bin/WatchDogsLegion.exe: - - arguments: '-uplay_steam_mode -sound2d' + "/bin/WatchDogsLegion.exe": + - arguments: "-uplay_steam_mode -sound2d" when: - store: steam registry: @@ -616644,11 +618322,11 @@ Watch Me Jump: installDir: Watch Me Jump: {} launch: - /Watch Me Jump.app: + "/Watch Me Jump.app": - when: - os: mac store: steam - /Watch Me Jump.exe: + "/Watch Me Jump.exe": - when: - os: windows store: steam @@ -616658,7 +618336,7 @@ Watch Out: installDir: Watch Out: {} launch: - /WatchOut.exe: + "/WatchOut.exe": - when: - os: windows store: steam @@ -616666,17 +618344,17 @@ Watch Out: id: 691860 Watch Over Christmas: files: - /.local/Share/Dionous Games/Watch Over Christmas/Savegames: + "/.local/Share/Dionous Games/Watch Over Christmas/Savegames": tags: - save when: - os: linux - /Library/Application Support/Dionous Games/Watch Over Christmas/Savegames: + "/Library/Application Support/Dionous Games/Watch Over Christmas/Savegames": tags: - save when: - os: mac - /Dionous Games/Watch Over Christmas/Savegames/*.dat: + "/Dionous Games/Watch Over Christmas/Savegames/*.dat": tags: - save when: @@ -616689,15 +618367,15 @@ Watch Over Christmas: installDir: Watch Over Christmas: {} launch: - /Watch Over Christmas.app: + "/Watch Over Christmas.app": - when: - os: mac store: steam - /start: + "/start": - when: - os: linux store: steam - /woc.exe: + "/woc.exe": - when: - os: windows store: steam @@ -616710,11 +618388,11 @@ Watch This Space: installDir: Mini Matches: {} launch: - /Mini Matches.app: + "/Mini Matches.app": - when: - os: mac store: steam - /Mini Matches.exe: + "/Mini Matches.exe": - when: - os: windows store: steam @@ -616727,7 +618405,7 @@ Watch Tower: installDir: Watch Tower: {} launch: - /Watch Tower.exe: + "/Watch Tower.exe": - when: - os: windows store: steam @@ -616740,7 +618418,7 @@ WatchFamily: installDir: WatchFamily: {} launch: - /WatchFamily.exe: + "/WatchFamily.exe": - when: - os: windows store: steam @@ -616748,7 +618426,7 @@ WatchFamily: id: 972230 Watchers: files: - /Watchers/Saved/Config/WindowsNoEditor: + "/Watchers/Saved/Config/WindowsNoEditor": tags: - config when: @@ -616756,7 +618434,7 @@ Watchers: installDir: Watchers: {} launch: - /Watchers.exe: + "/Watchers.exe": - when: - os: windows store: steam @@ -616766,7 +618444,7 @@ Watching Delusion: installDir: Watching Delusion: {} launch: - /Watching_Delusion.exe: + "/Watching_Delusion.exe": - when: - os: windows store: steam @@ -616781,19 +618459,19 @@ Watchlist: installDir: Watchlist: {} launch: - /Watchlist.app: + "/Watchlist.app": - when: - os: mac store: steam - /Watchlist.exe: + "/Watchlist.exe": - when: - os: windows store: steam steam: id: 652760 -'Watchmen: The End is Nigh': +"Watchmen: The End is Nigh": files: - /SaveData/Profile1: + "/SaveData/Profile1": tags: - config - save @@ -616802,15 +618480,15 @@ Watchlist: installDir: Watchmen: {} launch: - /data/engine/MultiLauncher.exe: - - arguments: '-enginedir=exe' + "/data/engine/MultiLauncher.exe": + - arguments: "-enginedir=exe" when: - store: steam steam: id: 21010 -'Watchmen: The End is Nigh Part 2': +"Watchmen: The End is Nigh Part 2": files: - /SaveData/Profile1: + "/SaveData/Profile1": tags: - config - save @@ -616819,8 +618497,8 @@ Watchlist: installDir: Watchmen Part 2: {} launch: - /data/engine/MultiLauncher.exe: - - arguments: '-enginedir=exe' + "/data/engine/MultiLauncher.exe": + - arguments: "-enginedir=exe" when: - store: steam steam: @@ -616834,12 +618512,15 @@ Water Clock: installDir: 3acg-water-clock: {} launch: - /水时钟.app/Contents/MacOS/水时钟: + "/水时钟.app/Contents/MacOS/水时钟": - when: - os: mac store: steam - /水时钟.exe: + "/水时钟.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam @@ -616849,40 +618530,40 @@ Water Density: installDir: Water Density: {} launch: - /WaterDensity.exe: + "/WaterDensity.exe": - when: - bit: 64 os: windows store: steam steam: id: 744450 -'Water Heroes: A Game for Change': +"Water Heroes: A Game for Change": installDir: Water Heroes: {} launch: - /Water Heroes.app/Contents/MacOS/Water Heroes: + "/Water Heroes.app/Contents/MacOS/Water Heroes": - when: - os: mac store: steam - /Water Heroes.exe: + "/Water Heroes.exe": - when: - os: windows store: steam steam: id: 530010 -'Water Margin: A Tale of Clouds and Wind': +"Water Margin: A Tale of Clouds and Wind": files: - /res/##P: + "/res/##P": tags: - config when: - os: windows - /res/##S: + "/res/##S": tags: - config when: - os: windows - /res/conf: + "/res/conf": tags: - save when: @@ -616892,7 +618573,7 @@ Water Density: installDir: Water Margin: {} launch: - /water margin.exe: + "/water margin.exe": - when: - os: windows store: steam @@ -616902,7 +618583,7 @@ Water Pipeline: installDir: Water Pipeline: {} launch: - /Water Pipeline.exe: + "/Water Pipeline.exe": - when: - os: windows store: steam @@ -616912,18 +618593,18 @@ Water Planet: installDir: WaterPlanet: {} launch: - /WaterPlanet/Binaries/Win64/WaterPlanet.exe: - - arguments: '-nosplash -desktop' + "/WaterPlanet/Binaries/Win64/WaterPlanet.exe": + - arguments: "-nosplash -desktop" when: - bit: 64 os: windows store: steam - - arguments: '-nosplash -desktop -Spanish' + - arguments: "-nosplash -desktop -Spanish" when: - bit: 64 os: windows store: steam - - arguments: '-nosplash -desktop -French' + - arguments: "-nosplash -desktop -French" when: - bit: 64 os: windows @@ -616934,11 +618615,11 @@ Watergate Xtreme: installDir: Watergate Xtreme: {} launch: - /Watergate Xtreme.app/Contents/MacOS/Watergate Xtreme: + "/Watergate Xtreme.app/Contents/MacOS/Watergate Xtreme": - when: - os: mac store: steam - /Watergate Xtreme.exe: + "/Watergate Xtreme.exe": - when: - os: windows store: steam @@ -616950,12 +618631,12 @@ Waterloo: installDir: waterloo: {} launch: - /dosbox_windows/dosbox.exe: - - arguments: \"WATERLOO.EXE\" -conf \"dosbox_waterloo.conf\" -noconsole + "/dosbox_windows/dosbox.exe": + - arguments: "\\\"WATERLOO.EXE\\\" -conf \\\"dosbox_waterloo.conf\\\" -noconsole" when: - os: windows store: steam - /runWaterloo.sh: + "/runWaterloo.sh": - when: - os: linux store: steam @@ -616965,17 +618646,17 @@ Waterside Chirping: installDir: WatersideChirping: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam steam: id: 864420 -Watson's Watch: +"Watson's Watch": installDir: - Watson's Watch: {} + "Watson's Watch": {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -616983,7 +618664,7 @@ Watson's Watch: id: 445550 Wattam: files: - /AppData/LocalLow/Funomena/Wattam: + "/AppData/LocalLow/Funomena/Wattam": tags: - save when: @@ -616991,7 +618672,7 @@ Wattam: installDir: Wattam: {} launch: - /Wattam.exe: + "/Wattam.exe": - when: - store: steam steam: @@ -617000,7 +618681,7 @@ Wauies - The Pet Shop Game: installDir: Wauies: {} launch: - /Wauies.exe: + "/Wauies.exe": - when: - os: windows store: steam @@ -617013,12 +618694,12 @@ Wave Break: installDir: WaveBreak: {} launch: - /WaveBreak.exe: + "/WaveBreak.exe": - when: - os: windows store: steam - /WaveBreak.x86_64: - - arguments: '-force-vulkan' + "/WaveBreak.x86_64": + - arguments: "-force-vulkan" when: - os: linux store: steam @@ -617038,7 +618719,7 @@ Wave Mechanics: installDir: Wave Mechanics: {} launch: - /Wave Mechanics.exe: + "/Wave Mechanics.exe": - when: - os: windows store: steam @@ -617048,23 +618729,23 @@ Wave of Darkness: installDir: Wave of Darkness: {} launch: - /system/game_lod.exe: + "/system/game_lod.exe": - when: - bit: 64 os: windows store: steam - workingDir: /system + workingDir: "/system" steam: id: 316370 WaveLand: installDir: WaveLand: {} launch: - /WaveLand.app: + "/WaveLand.app": - when: - os: mac store: steam - /WaveLand.exe: + "/WaveLand.exe": - when: - os: windows store: steam @@ -617072,19 +618753,19 @@ WaveLand: id: 532170 Waveform: files: - /Library/Application Support/Waveform: + "/Library/Application Support/Waveform": tags: - config - save when: - os: mac - /Waveform: + "/Waveform": tags: - config - save when: - os: windows - /Waveform: + "/Waveform": tags: - config - save @@ -617093,11 +618774,13 @@ Waveform: installDir: Waveform: {} launch: - /Waveform: + "/Waveform": - when: - os: mac store: steam - /Waveform.exe: + - os: linux + store: steam + "/Waveform.exe": - when: - os: windows store: steam @@ -617107,11 +618790,11 @@ Waveform Wipeout: installDir: Waveform Wipeout: {} launch: - /Waveform.app: + "/Waveform.app": - when: - os: mac store: steam - /Waveform.exe: + "/Waveform.exe": - when: - os: windows store: steam @@ -617119,7 +618802,7 @@ Waveform Wipeout: id: 897560 Waves: files: - /UDKGame/Config: + "/UDKGame/Config": tags: - config when: @@ -617127,10 +618810,10 @@ Waves: installDir: Waves: {} launch: - /Binaries/Win32/Waves.exe: + "/Binaries/Win32/Waves.exe": - when: - store: steam - - arguments: '-windowed' + - arguments: "-windowed" when: - store: steam steam: @@ -617139,7 +618822,7 @@ Waves of the Atlantide: installDir: WavesOfTheAtlantide: {} launch: - /WavesOfTheAtlantide.exe: + "/WavesOfTheAtlantide.exe": - when: - bit: 64 os: windows @@ -617150,11 +618833,11 @@ Waveshaper: installDir: WAVESHAPER: {} launch: - /WAVESHAPER.exe: + "/WAVESHAPER.exe": - when: - os: windows store: steam - /run.sh: + "/run.sh": - when: - os: linux store: steam @@ -617164,7 +618847,7 @@ Waves²: installDir: Waves 2: {} launch: - /Waves.exe: + "/Waves.exe": - when: - os: windows store: steam @@ -617172,7 +618855,7 @@ Waves²: id: 217120 Wavetale: files: - /LocalLow/Thunderful/Wavetale: + "/LocalLow/Thunderful/Wavetale": tags: - config - save @@ -617186,7 +618869,7 @@ Wavetale: installDir: Wavetale: {} launch: - /Wavetale.exe: + "/Wavetale.exe": - when: - store: steam steam: @@ -617195,7 +618878,7 @@ Wavey the Rocket: installDir: Wavey The Rocket: {} launch: - /Wavey The Rocket.exe: + "/Wavey The Rocket.exe": - when: - os: windows store: steam @@ -617207,11 +618890,11 @@ Wavy Trip: Waxworks: gog: id: 1207658702 -'Waxworks: Curse of the Ancestors': +"Waxworks: Curse of the Ancestors": installDir: Waxworks Curse of the Ancestors: {} launch: - /WaxworksSE.exe: + "/WaxworksSE.exe": - when: - os: windows store: steam @@ -617221,7 +618904,7 @@ Way Home: installDir: WAY HOME: {} launch: - /WAY HOME.exe: + "/WAY HOME.exe": - when: - os: windows store: steam @@ -617236,7 +618919,7 @@ Way of Boy: installDir: Путь Пацана: {} launch: - /Way of Boy.exe: + "/Way of Boy.exe": - when: - os: windows store: steam @@ -617246,7 +618929,7 @@ Way of Defector: installDir: Way of Defector: {} launch: - /Way of Defector.exe: + "/Way of Defector.exe": - when: - os: windows store: steam @@ -617256,7 +618939,7 @@ Way of Gold and Steel: installDir: Way of Gold and Steel: {} launch: - /Prog.exe: + "/Prog.exe": - when: - os: windows store: steam @@ -617269,7 +618952,7 @@ Way of Redemption: installDir: Way of Redemption: {} launch: - /Way of Redemption.exe: + "/Way of Redemption.exe": - when: - os: windows store: steam @@ -617280,12 +618963,12 @@ Way of Rhea: id: 1110620 Way of the Hunter: files: - /WayOfTheHunter/Saved/Config/WindowsNoEditor: + "/WayOfTheHunter/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /WayOfTheHunter/Saved/SaveGames/Account_: + "/WayOfTheHunter/Saved/SaveGames/Account_": tags: - save when: @@ -617295,7 +618978,7 @@ Way of the Hunter: installDir: WayOfTheHunter: {} launch: - /WayOfTheHunter.exe: + "/WayOfTheHunter.exe": - when: - bit: 64 os: windows @@ -617309,22 +618992,22 @@ Way of the Orb: id: 783230 Way of the Passive Fist: files: - /WayOfThePassiveFist/AutoCloud//settings.sav: + "/WayOfThePassiveFist/AutoCloud//settings.sav": tags: - config when: - os: windows - /WayOfThePassiveFist/AutoCloud//slot*.sav: + "/WayOfThePassiveFist/AutoCloud//slot*.sav": tags: - save when: - os: windows - /WayOfThePassiveFist/autocloud//settings.sav: + "/WayOfThePassiveFist/autocloud//settings.sav": tags: - config when: - os: linux - /WayOfThePassiveFist/autocloud//slot*.sav: + "/WayOfThePassiveFist/autocloud//slot*.sav": tags: - save when: @@ -617332,15 +619015,15 @@ Way of the Passive Fist: installDir: Way of the Passive Fist: {} launch: - /WayOfThePassiveFist: + "/WayOfThePassiveFist": - when: - os: linux store: steam - /WayOfThePassiveFist.app: + "/WayOfThePassiveFist.app": - when: - os: mac store: steam - /WayOfThePassiveFist.exe: + "/WayOfThePassiveFist.exe": - when: - os: windows store: steam @@ -617352,19 +619035,19 @@ Way of the Red: installDir: Way of the Red: {} launch: - /WotR.exe: + "/WotR.exe": - when: - store: steam steam: id: 491350 Way of the Samurai 3: files: - /WayOfTheSamurai3.ini: + "/WayOfTheSamurai3.ini": tags: - config when: - os: windows - /My Games/Ghostlight Ltd/Way of the Samurai 3: + "/My Games/Ghostlight Ltd/Way of the Samurai 3": tags: - save when: @@ -617373,8 +619056,8 @@ Way of the Samurai 3: id: 2064851015 id: gogExtra: - - 1215553067 - 1118483690 + - 1215553067 steamExtra: - 428310 - 428311 @@ -617382,19 +619065,19 @@ Way of the Samurai 3: installDir: Way of the Samurai 3: {} launch: - /WayOfTheSamurai3.exe: + "/WayOfTheSamurai3.exe": - when: - store: steam steam: id: 427510 Way of the Samurai 4: files: - /S4-SETTINGS.ini: + "/S4-SETTINGS.ini": tags: - config when: - os: windows - /My Games/Ghostlight Ltd/Way of the Samurai 4: + "/My Games/Ghostlight Ltd/Way of the Samurai 4": tags: - save when: @@ -617404,7 +619087,7 @@ Way of the Samurai 4: installDir: Way of the Samurai 4: {} launch: - /WayOfTheSamurai4.exe: + "/WayOfTheSamurai4.exe": - when: - os: windows store: steam @@ -617414,15 +619097,15 @@ Way to Go!: installDir: waytogo: {} launch: - /Game.sh: + "/Game.sh": - when: - os: linux store: steam - /waytogo.app: + "/waytogo.app": - when: - os: mac store: steam - /waytogo.app/Contents/Resources/Game.exe: + "/waytogo.app/Contents/Resources/Game.exe": - when: - os: windows store: steam @@ -617435,7 +619118,7 @@ WayDown: installDir: WayDown: {} launch: - /waydown.exe: + "/waydown.exe": - when: - os: windows store: steam @@ -617445,33 +619128,33 @@ WayOut: installDir: WayOut: {} launch: - /WayOut.app: + "/WayOut.app": - when: - os: mac store: steam - /WayOut.exe: + "/WayOut.exe": - when: - os: windows store: steam - /WayOut.x86_64: + "/WayOut.x86_64": - when: - os: linux store: steam steam: id: 551110 -'WayOut 2: Hex': +"WayOut 2: Hex": installDir: WayOut 2 Hex: {} launch: - /WayOut2.app: + "/WayOut2.app": - when: - os: mac store: steam - /WayOut2.exe: + "/WayOut2.exe": - when: - os: windows store: steam - /WayOut2.x86_64: + "/WayOut2.x86_64": - when: - os: linux store: steam @@ -617481,7 +619164,7 @@ Wayblock: installDir: Wayblock: {} launch: - /Wayblock.exe: + "/Wayblock.exe": - when: - os: windows store: steam @@ -617496,26 +619179,26 @@ Wayfinder: installDir: Wayfinder: {} launch: - /Wayfinder.exe: + "/Wayfinder.exe": - when: - bit: 64 os: windows store: steam steam: id: 1171690 -'Wayhaven Chronicles: Book One': +"Wayhaven Chronicles: Book One": installDir: Wayhaven Chronicles Book One: {} launch: - /Wayhaven Chronicles Book One.app/Contents/MacOS/Wayhaven Chronicles Book One: + "/Wayhaven Chronicles Book One.app/Contents/MacOS/Wayhaven Chronicles Book One": - when: - os: mac store: steam - /WayhavenChroniclesBookOne: + "/WayhavenChroniclesBookOne": - when: - os: linux store: steam - /WayhavenChroniclesBookOne.exe: + "/WayhavenChroniclesBookOne.exe": - when: - os: windows store: steam @@ -617525,7 +619208,7 @@ Ways of History: installDir: Ways of History: {} launch: - /wofh_steam_launcher.exe: + "/wofh_steam_launcher.exe": - when: - os: windows store: steam @@ -617535,7 +619218,7 @@ WaywaY: installDir: WaywaY: {} launch: - /WaywaY.exe: + "/WaywaY.exe": - when: - os: windows store: steam @@ -617543,7 +619226,7 @@ WaywaY: id: 759030 Wayward: files: - /save: + "/save": tags: - save when: @@ -617551,15 +619234,15 @@ Wayward: installDir: Wayward: {} launch: - /Wayward.app: + "/Wayward.app": - when: - os: mac store: steam - /wayward.exe: + "/wayward.exe": - when: - os: windows store: steam - /wayward_launcher: + "/wayward_launcher": - when: - os: linux store: steam @@ -617569,11 +619252,11 @@ Wayward Manor: installDir: WaywardManor: {} launch: - /Wayward Manor Windows/WaywardManor.exe: + "/Wayward Manor Windows/WaywardManor.exe": - when: - os: windows store: steam - /WaywardManor.app: + "/WaywardManor.app": - when: - os: mac store: steam @@ -617583,7 +619266,7 @@ Wayward Souls: installDir: Wayward Souls: {} launch: - /wayward.exe: + "/wayward.exe": - when: - os: windows store: steam @@ -617593,18 +619276,18 @@ Wayward Strand: installDir: Wayward Strand: {} launch: - /WaywardStrand.exe: + "/WaywardStrand.exe": - when: - bit: 64 os: windows store: steam steam: id: 1080450 -'Wayward Terran Frontier: Zero Falls': +"Wayward Terran Frontier: Zero Falls": installDir: Zero Falls: {} launch: - /WTF.exe: + "/WTF.exe": - when: - bit: 64 os: windows @@ -617615,15 +619298,15 @@ WazHack: installDir: WazHack: {} launch: - /WazHack: + "/WazHack": - when: - os: linux store: steam - /WazHack.app: + "/WazHack.app": - when: - os: mac store: steam - /WazHack.exe: + "/WazHack.exe": - when: - os: windows store: steam @@ -617633,19 +619316,19 @@ We Are Chicago: installDir: WeAreChicago: {} launch: - /VideoCodecInstaller.sh: + "/VideoCodecInstaller.sh": - when: - os: linux store: steam - /WeAreChicagoLinux: + "/WeAreChicagoLinux": - when: - os: linux store: steam - /WeAreChicagoOSX.app: + "/WeAreChicagoOSX.app": - when: - os: mac store: steam - /WeAreChicagoWindows.exe: + "/WeAreChicagoWindows.exe": - when: - os: windows store: steam @@ -617655,11 +619338,11 @@ We Are Doomed: installDir: WE ARE DOOMED: {} launch: - /WE ARE DOOMED.app/Contents/MacOS/WE ARE DOOMED: + "/WE ARE DOOMED.app/Contents/MacOS/WE ARE DOOMED": - when: - os: mac store: steam - /WeAreDoomed.exe: + "/WeAreDoomed.exe": - when: - os: windows store: steam @@ -617671,7 +619354,7 @@ We Are Football: installDir: WE ARE FOOTBALL: {} launch: - /fe.exe: + "/fe.exe": - when: - bit: 64 os: windows @@ -617682,15 +619365,15 @@ We Are Legion: installDir: We Are Legion: {} launch: - /We Are Legion.app: + "/We Are Legion.app": - when: - os: mac store: steam - /WeAreLegion: + "/WeAreLegion": - when: - os: linux store: steam - /WeAreLegion.exe: + "/WeAreLegion.exe": - when: - os: windows store: steam @@ -617700,11 +619383,11 @@ We Are OFK: installDir: We Are OFK: {} launch: - /We Are OFK.app: + "/We Are OFK.app": - when: - os: mac store: steam - /We Are OFK.exe: + "/We Are OFK.exe": - when: - os: windows store: steam @@ -617714,7 +619397,7 @@ We Are Screwed!: installDir: We Are Screwed!: {} launch: - /WeAreScrewed.exe: + "/WeAreScrewed.exe": - when: - os: windows store: steam @@ -617730,11 +619413,11 @@ We Are Stars: We are Stars: {} steam: id: 556140 -'We Are Terror: The First Days': +"We Are Terror: The First Days": installDir: WAT_TheFirstDays: {} launch: - /WAT_TheFirstDays.exe: + "/WAT_TheFirstDays.exe": - when: - os: windows store: steam @@ -617744,7 +619427,7 @@ We Are The Caretakers: installDir: We Are The Caretakers: {} launch: - /WeAreTheCaretakers.exe: + "/WeAreTheCaretakers.exe": - when: - os: windows store: steam @@ -617752,17 +619435,17 @@ We Are The Caretakers: id: 1042960 We Are the Dwarves: files: - /.config/unity3d/Whale Rock Games/WeAreTheDwarves: + "/.config/unity3d/Whale Rock Games/WeAreTheDwarves": tags: - save when: - os: linux - /.config/unity3d/Whale Rock Games/WearetheDwarves: + "/.config/unity3d/Whale Rock Games/WearetheDwarves": tags: - config when: - os: linux - /AppData/LocalLow/Whale Rock Games: + "/AppData/LocalLow/Whale Rock Games": tags: - save when: @@ -617772,61 +619455,63 @@ We Are the Dwarves: installDir: We Are The Dwarves: {} launch: - /watd.app: + "/watd.app": - when: - os: mac store: steam - /watd.exe: + "/watd.exe": - when: - os: windows store: steam - /watd.x86_64: - - arguments: '-force-opengl' + "/watd.x86_64": + - arguments: "-force-opengl" when: - bit: 64 os: linux store: steam steam: id: 395570 -We Can't Get Through the Zombies: +"We Can't Get Through the Zombies": steam: id: 765510 We Happy Few: files: - /My Games/We Happy Few/Config/WindowsNoEditor: + "/My Games/We Happy Few/Config/WindowsNoEditor": tags: - config when: - - store: gog - /My Games/We Happy Few/SaveGames: + - os: windows + store: gog + "/My Games/We Happy Few/SaveGames": tags: - save when: - os: windows - - store: gog - /GlimpseGame/Saved/Config: + - os: windows + store: gog + "/GlimpseGame/Saved/Config": tags: - config when: - os: windows - /Packages/CompulsionGamesInc.WeHappyFew_eae46zy90r9xg/Settings: + "/Packages/CompulsionGamesInc.WeHappyFew_eae46zy90r9xg/Settings": tags: - config when: - os: windows store: microsoft - /Packages/CompulsionGamesInc.WeHappyFew_eae46zy90r9xg/SystemAppData/wgs/: + "/Packages/CompulsionGamesInc.WeHappyFew_eae46zy90r9xg/SystemAppData/wgs/": tags: - save when: - os: windows store: microsoft - /Epic/We Happy Few/Config/LinuxNoEditor: + "/Epic/We Happy Few/Config/LinuxNoEditor": tags: - config when: - os: linux - /Epic/We Happy Few/SaveGames: + "/Epic/We Happy Few/SaveGames": tags: - save when: @@ -617836,27 +619521,27 @@ We Happy Few: installDir: WeHappyFew: {} launch: - /GlimpseGame.sh: + "/GlimpseGame.sh": - when: - bit: 64 os: linux store: steam - /GlimpseGame/Binaries/Mac/GlimpseGame-Mac-Shipping.app/Contents/MacOS/GlimpseGame-Mac-Shipping: + "/GlimpseGame/Binaries/Mac/GlimpseGame-Mac-Shipping.app/Contents/MacOS/GlimpseGame-Mac-Shipping": - when: - os: mac store: steam - /GlimpseGame/Binaries/Win64/GlimpseGame.exe: - - arguments: '-installed' + "/GlimpseGame/Binaries/Win64/GlimpseGame.exe": + - arguments: "-installed" when: - bit: 64 os: windows store: steam - workingDir: /GlimpseGame/Binaries/Win64 + workingDir: "/GlimpseGame/Binaries/Win64" steam: id: 320240 We Know the Devil: files: - /com.datenighto.game.wktd: + "/com.datenighto.game.wktd": tags: - save when: @@ -617864,11 +619549,11 @@ We Know the Devil: installDir: We Know the Devil: {} launch: - /We Know the Devil.app/Contents/MacOS/Electron: + "/We Know the Devil.app/Contents/MacOS/Electron": - when: - os: mac store: steam - /We Know the Devil.exe: + "/We Know the Devil.exe": - when: - os: windows store: steam @@ -617876,7 +619561,7 @@ We Know the Devil: id: 435300 We Love Katamari Reroll+ Royal Reverie: files: - /Bandai Namco Entertainment/We Love Katamari REROLL+ Royal Reverie/Saved/SaveGames/: + "/Bandai Namco Entertainment/We Love Katamari REROLL+ Royal Reverie/Saved/SaveGames/": tags: - save when: @@ -617884,7 +619569,7 @@ We Love Katamari Reroll+ Royal Reverie: installDir: WLKRR: {} launch: - /WLKRR.exe: + "/WLKRR.exe": - when: - os: windows store: steam @@ -617898,11 +619583,11 @@ We Met in May: installDir: We Met in May: {} launch: - /We Met In May.app: + "/We Met In May.app": - when: - os: mac store: steam - /We Met In May.exe: + "/We Met In May.exe": - when: - os: windows store: steam @@ -617912,11 +619597,11 @@ We Must Praise Our Glorious Leader The Flumf: installDir: We Must Praise Our Glorious Leader The Flumf: {} launch: - /FlumfGame.exe: + "/FlumfGame.exe": - when: - os: windows store: steam - /flumfGame: + "/flumfGame": - when: - os: linux store: steam @@ -617924,7 +619609,7 @@ We Must Praise Our Glorious Leader The Flumf: id: 962710 We Need to Go Deeper: files: - /AppData/LocalLow/Deli Interactive/We Need to Go Deeper: + "/AppData/LocalLow/Deli Interactive/We Need to Go Deeper": tags: - save when: @@ -617932,15 +619617,15 @@ We Need to Go Deeper: installDir: WeNeedtoGoDeeper: {} launch: - /WeNeedToGoDeeper: + "/WeNeedToGoDeeper": - when: - os: linux store: steam - /WeNeedToGoDeeper.app: + "/WeNeedToGoDeeper.app": - when: - os: mac store: steam - /WeNeedToGoDeeper.exe: + "/WeNeedToGoDeeper.exe": - when: - os: windows store: steam @@ -617948,17 +619633,17 @@ We Need to Go Deeper: id: 307110 We Should Talk.: installDir: - WeShouldTalk\\WeShouldTalk: {} + "WeShouldTalk\\\\WeShouldTalk": {} launch: - /WeShouldTalk.app: + "/WeShouldTalk.app": - when: - os: mac store: steam - /WeShouldTalk.exe: + "/WeShouldTalk.exe": - when: - os: windows store: steam - /WeShouldTalk.x86_64: + "/WeShouldTalk.x86_64": - when: - os: linux store: steam @@ -617971,12 +619656,12 @@ We Should Talk.: id: 1255990 We Slay Monsters: files: - /savedgame: + "/savedgame": tags: - save when: - os: windows - /savedgame/settings.dat: + "/savedgame/settings.dat": tags: - config when: @@ -617984,11 +619669,11 @@ We Slay Monsters: installDir: We Slay Monsters: {} launch: - /weslaymonsters.app: + "/weslaymonsters.app": - when: - os: mac store: steam - /weslaymonsters.exe: + "/weslaymonsters.exe": - when: - os: windows store: steam @@ -618007,7 +619692,7 @@ We Walked in Darkness: installDir: We Walked In Darkness: {} launch: - /Darkness.exe: + "/Darkness.exe": - when: - bit: 64 os: windows @@ -618016,7 +619701,7 @@ We Walked in Darkness: id: 766090 We Went Back: files: - /WeWentBack/Saved/Config/WindowsNoEditor: + "/WeWentBack/Saved/Config/WindowsNoEditor": tags: - config when: @@ -618024,7 +619709,7 @@ We Went Back: installDir: We Went Back: {} launch: - /WeWentBack.exe: + "/WeWentBack.exe": - when: - os: windows store: steam @@ -618032,22 +619717,22 @@ We Went Back: id: 1218250 We Were Here: files: - /Saves: + "/Saves": tags: - save when: - os: windows - /Saves/GraphicsOptionsModel.binary: + "/Saves/GraphicsOptionsModel.binary": tags: - config when: - os: windows - /Saves/KeyBindingModel.binary: + "/Saves/KeyBindingModel.binary": tags: - config when: - os: windows - /Saves/OptionsModel.binary: + "/Saves/OptionsModel.binary": tags: - config when: @@ -618055,12 +619740,15 @@ We Were Here: installDir: We Were Here: {} launch: - /We Were Here.app: + "/We Were Here.app": - when: - os: mac store: steam - /We Were Here.exe: + "/We Were Here.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam @@ -618072,12 +619760,12 @@ We Were Here: id: 582500 We Were Here Forever: files: - /AppData/LocalLow/Total Mayhem Games/We Were Here Forever/Data: + "/AppData/LocalLow/Total Mayhem Games/We Were Here Forever/Data": tags: - config when: - os: windows - /userdata//1341290: + "/userdata//1341290": tags: - save when: @@ -618090,7 +619778,7 @@ We Were Here Forever: installDir: We Were Here Forever: {} launch: - /We Were Here Forever.exe: + "/We Were Here Forever.exe": - when: - bit: 64 os: windows @@ -618099,12 +619787,12 @@ We Were Here Forever: id: 1341290 We Were Here Together: files: - /AppData/LocalLow/Total Mayhem Games/We Were Here Together/Data/Configs: + "/AppData/LocalLow/Total Mayhem Games/We Were Here Together/Data/Configs": tags: - config when: - os: windows - /AppData/LocalLow/Total Mayhem Games/We Were Here Together/Data/Saves: + "/AppData/LocalLow/Total Mayhem Games/We Were Here Together/Data/Saves": tags: - save when: @@ -618112,11 +619800,11 @@ We Were Here Together: installDir: We Were Here Together: {} launch: - /We Were Here Together.app: + "/We Were Here Together.app": - when: - os: mac store: steam - /We Were Here Together.exe: + "/We Were Here Together.exe": - when: - bit: 64 os: windows @@ -618125,7 +619813,7 @@ We Were Here Together: id: 865360 We Were Here Too: files: - /AppData/LocalLow/Total Mayhem Games/We Were Here Too/Config/config.cfg: + "/AppData/LocalLow/Total Mayhem Games/We Were Here Too/Config/config.cfg": tags: - config when: @@ -618133,21 +619821,24 @@ We Were Here Too: installDir: We Were Here Too: {} launch: - /We Were Here Too.app: + "/We Were Here Too.app": - when: - os: mac store: steam - /We Were Here Too.exe: + "/We Were Here Too.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam - /We Were Here Too.x86: + "/We Were Here Too.x86": - when: - bit: 32 os: linux store: steam - /We Were Here Too.x86_64: + "/We Were Here Too.x86_64": - when: - bit: 64 os: linux @@ -618159,7 +619850,7 @@ We are the Plague: id: 992690 We who are about to Die: files: - /WWAATD/Saved/Config/WindowsNoEditor: + "/WWAATD/Saved/Config/WindowsNoEditor": tags: - config when: @@ -618167,7 +619858,7 @@ We who are about to Die: installDir: We who are about to Die: {} launch: - /WWAATD.exe: + "/WWAATD.exe": - when: - bit: 64 os: windows @@ -618176,32 +619867,32 @@ We who are about to Die: id: 973230 We. The Revolution: files: - /.config/unity3d/Polyslash/We. The Revolution/profile00*.dat: + "/.config/unity3d/Polyslash/We. The Revolution/profile00*.dat": tags: - save when: - os: linux - /.config/unity3d/Polyslash/We. The Revolution/profile00*.sav: + "/.config/unity3d/Polyslash/We. The Revolution/profile00*.sav": tags: - save when: - os: linux - /AppData/LocalLow/Polyslash/We. The Revolution/profile00*.dat: + "/AppData/LocalLow/Polyslash/We. The Revolution/profile00*.dat": tags: - save when: - os: windows - /AppData/LocalLow/Polyslash/We. The Revolution/profile00*.sav: + "/AppData/LocalLow/Polyslash/We. The Revolution/profile00*.sav": tags: - save when: - os: windows - /Library/Application Support/unity.Polyslash.We. The Revolution/profile00*.dat: + "/Library/Application Support/unity.Polyslash.We. The Revolution/profile00*.dat": tags: - save when: - os: mac - /Library/Application Support/unity.Polyslash.We. The Revolution/profile00*.sav: + "/Library/Application Support/unity.Polyslash.We. The Revolution/profile00*.sav": tags: - save when: @@ -618211,27 +619902,27 @@ We. The Revolution: installDir: WeTheRevolution: {} launch: - /We.TheRevolution.x86: + "/We.TheRevolution.x86": - when: - bit: 32 os: linux store: steam - /We.TheRevolution.x86_64: + "/We.TheRevolution.x86_64": - when: - bit: 64 os: linux store: steam - /We.TheRevolution_x86.exe: + "/We.TheRevolution_x86.exe": - when: - bit: 32 os: windows store: steam - /We.TheRevolution_x86_64.exe: + "/We.TheRevolution_x86_64.exe": - when: - bit: 64 os: windows store: steam - /WeTheRevolution.app: + "/WeTheRevolution.app": - when: - os: mac store: steam @@ -618248,7 +619939,7 @@ Weable: installDir: Weable: {} launch: - /weable.exe: + "/weable.exe": - when: - os: windows store: steam @@ -618258,7 +619949,7 @@ Weable 2: installDir: Weable 2: {} launch: - /win64/weable.exe: + "/win64/weable.exe": - when: - bit: 64 os: windows @@ -618269,7 +619960,7 @@ WeakWood Throne: installDir: WeakWood Throne: {} launch: - /Weakwood Throne.exe: + "/Weakwood Throne.exe": - when: - store: steam steam: @@ -618278,7 +619969,7 @@ Weakless: installDir: Weakless: {} launch: - /weakless_project.exe: + "/weakless_project.exe": - when: - bit: 64 os: windows @@ -618289,31 +619980,31 @@ Weapon Shop Fantasy: installDir: WeaponShopFantasy: {} launch: - /WeaponShopFantasy.app/Contents/MacOS/WeaponShopFantasy: + "/WeaponShopFantasy.app/Contents/MacOS/WeaponShopFantasy": - when: - os: mac store: steam - /WeaponShopFantasy.exe: + "/WeaponShopFantasy.exe": - when: - os: windows store: steam - /WeaponShopFantasy.x86: + "/WeaponShopFantasy.x86": - when: - bit: 32 os: linux store: steam - /WeaponShopFantasy.x86_64: + "/WeaponShopFantasy.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 599460 -'Weapon and Armor: Mahjong': +"Weapon and Armor: Mahjong": installDir: Weapon and Armor Mahjong: {} launch: - /Weapon and Armor Mahjong.exe: + "/Weapon and Armor Mahjong.exe": - when: - os: windows store: steam @@ -618323,7 +620014,7 @@ Weapon of Choice: installDir: Weapon of Choice: {} launch: - /WoCGame.exe: + "/WoCGame.exe": - when: - store: steam steam: @@ -618332,16 +620023,16 @@ WeaponizedChess: installDir: WeaponizedChess: {} launch: - /WeaponizedChess.app: + "/WeaponizedChess.app": - when: - os: mac store: steam - /start: + "/start": - when: - bit: 64 os: linux store: steam - /win_wc.exe: + "/win_wc.exe": - when: - bit: 64 os: windows @@ -618357,7 +620048,7 @@ Weapons Genius: installDir: Weapons Genius: {} launch: - /WeaponGenius.exe: + "/WeaponGenius.exe": - when: - os: windows store: steam @@ -618367,7 +620058,7 @@ Weapons of Mythology - New Age: installDir: Weapons of Mythology - New Age -: {} launch: - /Weapons Of Mythology New Age.exe: + "/Weapons Of Mythology New Age.exe": - when: - bit: 64 os: windows @@ -618381,71 +620072,71 @@ Weather Lord: installDir: Weather Lord: {} launch: - /WeatherLord.exe: + "/WeatherLord.exe": - when: - os: windows store: steam steam: id: 637920 -'Weather Lord: Following the Princess': +"Weather Lord: Following the Princess": installDir: WeatherLordFollowingthePrincessCE: {} launch: - /WeatherLord.app: + "/WeatherLord.app": - when: - os: mac store: steam - /WeatherLord_FollowingThePrincess.exe: + "/WeatherLord_FollowingThePrincess.exe": - when: - os: windows store: steam steam: id: 456690 -'Weather Lord: Hidden Realm': +"Weather Lord: Hidden Realm": installDir: Weather Lord Hidden Realm: {} launch: - /WeatherLordHiddenRealm.exe: + "/WeatherLordHiddenRealm.exe": - when: - os: windows store: steam steam: id: 637930 -'Weather Lord: In Search of the Shaman': +"Weather Lord: In Search of the Shaman": installDir: Weather Lord In Search of the Shaman: {} launch: - /WeatherLord_InPursuitOfTheShaman.exe: + "/WeatherLord_InPursuitOfTheShaman.exe": - when: - os: windows store: steam steam: id: 637940 -'Weather Lord: Legendary Hero': +"Weather Lord: Legendary Hero": installDir: - Weather Lord Legendary Hero Collector's Edition: {} + "Weather Lord Legendary Hero Collector's Edition": {} launch: - /WL6_LegendaryHero_CE.exe: + "/WL6_LegendaryHero_CE.exe": - when: - os: windows store: steam steam: id: 500220 -'Weather Lord: Royal Holidays': +"Weather Lord: Royal Holidays": installDir: - Weather Lord Royal Holidays Collector's Edition: {} + "Weather Lord Royal Holidays Collector's Edition": {} launch: - /WeatherLord7_RoyalHolidays_CE.exe: + "/WeatherLord7_RoyalHolidays_CE.exe": - when: - os: windows store: steam steam: id: 572570 -'Weather Lord: The Successor''s Path': +"Weather Lord: The Successor's Path": installDir: - Weather Lord The Successor's Path: {} + "Weather Lord The Successor's Path": {} launch: - /WeatherLord_TheSuccessor's_Path.exe: + "/WeatherLord_TheSuccessor's_Path.exe": - when: - store: steam steam: @@ -618454,7 +620145,7 @@ Weaverse: installDir: Weaverse: {} launch: - /Weaverse.exe: + "/Weaverse.exe": - when: - bit: 64 os: windows @@ -618465,7 +620156,7 @@ Weaves of Fate: installDir: Weaves of Fate: {} launch: - /weavesoffate.exe: + "/weavesoffate.exe": - when: - os: windows store: steam @@ -618475,7 +620166,7 @@ Weaving: installDir: Weaving: {} launch: - /Weaving.exe: + "/Weaving.exe": - when: - store: steam steam: @@ -618484,11 +620175,11 @@ Weaving Tides: installDir: Weaving Tides: {} launch: - /Weaving Tides.app: + "/Weaving Tides.app": - when: - os: mac store: steam - /Weaving Tides.exe: + "/Weaving Tides.exe": - when: - os: windows store: steam @@ -618498,7 +620189,7 @@ Web Spice: installDir: web spice: {} launch: - /web spice.exe: + "/web spice.exe": - when: - store: steam steam: @@ -618507,44 +620198,44 @@ Web Spice Purple World: installDir: Web Spice Purple World: {} launch: - /Web Spice Purple World.exe: + "/Web Spice Purple World.exe": - when: - store: steam steam: id: 1091190 -'Web of Deceit: Black Widow': +"Web of Deceit: Black Widow": installDir: - Mystery Case Files The Black Veil Collector's Edition: {} + "Mystery Case Files The Black Veil Collector's Edition": {} launch: - /WOD_BlackWidow_CE.exe: + "/WOD_BlackWidow_CE.exe": - when: - os: windows store: steam steam: id: 604340 -'Web of Deceit: Deadly Sands': +"Web of Deceit: Deadly Sands": installDir: - Web of Deceit Deadly Sands Collector's Edition: {} + "Web of Deceit Deadly Sands Collector's Edition": {} launch: - /WebOfDeceit_DeadlySands_CE.exe: + "/WebOfDeceit_DeadlySands_CE.exe": - when: - os: windows store: steam steam: id: 770890 -'WebbVR: The James Webb Space Telescope Virtual Experience': +"WebbVR: The James Webb Space Telescope Virtual Experience": installDir: WebbVR The James Webb Space Telescope Virtual Experience: {} steam: id: 891960 Webbed: files: - /webbed: + "/webbed": tags: - config when: - os: windows - /webbed/default: + "/webbed/default": tags: - save when: @@ -618554,20 +620245,20 @@ Webbed: installDir: Webbed: {} launch: - /webbed.exe: + "/webbed.exe": - when: - store: steam steam: id: 1390350 -'Wedding Dash 2: Rings Around the World': +"Wedding Dash 2: Rings Around the World": installDir: Wedding Dash 2 Rings Around the World: {} launch: - /Wedding Dash 2.app: + "/Wedding Dash 2.app": - when: - os: mac store: steam - /weddingdash2.exe: + "/weddingdash2.exe": - when: - os: windows store: steam @@ -618577,23 +620268,23 @@ Wedding Designer: installDir: Party Maker: {} launch: - /PartyMaker.exe: + "/PartyMaker.exe": - when: - os: windows store: steam steam: id: 1125890 -'Wedding VR: Henry': +"Wedding VR: Henry": installDir: WeddingVR_Henry: {} steam: id: 794720 -'Wedding VR: Masamune': +"Wedding VR: Masamune": installDir: WeddingVR_Masamune: {} steam: id: 794730 -'Wedding VR: Yamato': +"Wedding VR: Yamato": installDir: WeddingVR_Yamato: {} steam: @@ -618602,7 +620293,7 @@ Weebish Mines: installDir: Weebish Mines: {} launch: - /Weebish Mines.exe: + "/Weebish Mines.exe": - when: - os: windows store: steam @@ -618612,7 +620303,7 @@ Weed: installDir: WEED: {} launch: - /weed.exe: + "/weed.exe": - when: - store: steam steam: @@ -618621,7 +620312,7 @@ Weed Farmer Simulator: installDir: Weed Farmer Simulator: {} launch: - /Weed Farmer Simulator.exe: + "/Weed Farmer Simulator.exe": - when: - store: steam steam: @@ -618630,11 +620321,11 @@ Weed Shop 2: installDir: Weed Shop 2: {} launch: - /Contents/MacOS/WeedShop2: + "/Contents/MacOS/WeedShop2": - when: - os: mac store: steam - /Weed Shop 2.exe: + "/Weed Shop 2.exe": - when: - os: windows store: steam @@ -618644,11 +620335,11 @@ Weed Shop 3: installDir: Weed Shop 3: {} launch: - /Weed Shop 3.exe: + "/Weed Shop 3.exe": - when: - os: windows store: steam - /Weed Shop 3.x86_64: + "/Weed Shop 3.x86_64": - when: - os: linux store: steam @@ -618656,7 +620347,7 @@ Weed Shop 3: id: 1182110 Weedcraft Inc: files: - /Weedcraft Inc: + "/Weedcraft Inc": tags: - save when: @@ -618666,11 +620357,11 @@ Weedcraft Inc: installDir: Weedcraft: {} launch: - /Weedcraft Inc.exe: + "/Weedcraft Inc.exe": - when: - os: windows store: steam - /WeedcraftInc.app/Contents/MacOS/WeedcraftInc: + "/WeedcraftInc.app/Contents/MacOS/WeedcraftInc": - when: - os: mac store: steam @@ -618684,7 +620375,7 @@ Weekend Drive: installDir: Weekend Drive: {} launch: - /Weekend Drive.exe: + "/Weekend Drive.exe": - when: - os: windows store: steam @@ -618692,7 +620383,7 @@ Weekend Drive: id: 432390 Weeping Skies: files: - /MysteryTag/Weeping Skies/save/*.ws: + "/MysteryTag/Weeping Skies/save/*.ws": tags: - save when: @@ -618700,7 +620391,7 @@ Weeping Skies: installDir: Weeping Skies: {} launch: - /Weeping_Skies.exe: + "/Weeping_Skies.exe": - when: - os: windows store: steam @@ -618714,29 +620405,29 @@ Weeping Willow - Detective Visual Novel: installDir: Weeping Willow: {} launch: - /WeepingWillow.app: + "/WeepingWillow.app": - when: - os: mac store: steam - /WeepingWillow.exe: + "/WeepingWillow.exe": - when: - os: windows store: steam - /WeepingWillow.sh: + "/WeepingWillow.sh": - when: - os: linux store: steam steam: id: 1128570 -'Weightless: An immersive and relaxing experience': +"Weightless: An immersive and relaxing experience": installDir: Weightless: {} launch: - /Weightless.app: + "/Weightless.app": - when: - os: mac store: steam - /Weightless.exe: + "/Weightless.exe": - when: - os: windows store: steam @@ -618747,42 +620438,42 @@ Weird Creatures: WeirdCreatures: {} steam: id: 543920 -'Weird Dungeon Explorer: Defender': +"Weird Dungeon Explorer: Defender": steam: id: 862010 -'Weird Dungeon Explorer: Run Away': +"Weird Dungeon Explorer: Run Away": steam: id: 862020 -'Weird Dungeon Explorer: Wave Beat': +"Weird Dungeon Explorer: Wave Beat": steam: id: 862040 Weird Hero: installDir: Weird Hero: {} launch: - /Weird Hero.exe: + "/Weird Hero.exe": - when: - store: steam steam: id: 490870 Weird Park Trilogy: files: - /AlawarEntertainment/EpicStar/WeirdPark3/saves: + "/AlawarEntertainment/EpicStar/WeirdPark3/saves": tags: - save when: - os: windows - /AlawarEntertainment/WeirdParkScaryTales/saves: + "/AlawarEntertainment/WeirdParkScaryTales/saves": tags: - save when: - os: windows - /DieselPuppet/WeirdParkBrokenTune/saves: + "/DieselPuppet/WeirdParkBrokenTune/saves": tags: - save when: - os: windows - /DieselPuppet/WeirdParkBrokenTuneCollectorsEdition/saves: + "/DieselPuppet/WeirdParkBrokenTuneCollectorsEdition/saves": tags: - save when: @@ -618790,24 +620481,24 @@ Weird Park Trilogy: installDir: Weird Park Trilogy: {} launch: - /WeirdParkTrilogy.exe: + "/WeirdParkTrilogy.exe": - when: - store: steam steam: id: 372260 Weird West: files: - /Nova/Saved/Config/WindowsNoEditor: + "/Nova/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /Nova/Saved/SaveGames: + "/Nova/Saved/SaveGames": tags: - save when: - os: windows - /Packages/DevolverDigital.WeirdWest/SystemAppData/wgs: + "/Packages/DevolverDigital.WeirdWest/SystemAppData/wgs": tags: - save when: @@ -618818,14 +620509,14 @@ Weird West: installDir: Weird West: {} launch: - /WeirdWest.exe: + "/WeirdWest.exe": - when: - bit: 64 os: windows store: steam steam: id: 1097350 -'Weird Worlds: Return to Infinite Space': +"Weird Worlds: Return to Infinite Space": gog: id: 1111239739 id: @@ -618834,21 +620525,21 @@ Weird West: installDir: Weird Worlds: {} launch: - /WeirdWorlds.app: + "/WeirdWorlds.app": - when: - bit: 64 os: mac store: steam - /weirdworlds.exe: + "/weirdworlds.exe": - when: - os: windows store: steam - /weirdworlds_steam_32: + "/weirdworlds_steam_32": - when: - bit: 32 os: linux store: steam - /weirdworlds_steam_64: + "/weirdworlds_steam_64": - when: - bit: 64 os: linux @@ -618859,7 +620550,7 @@ Weirdest Thing: installDir: Weirdest Thing: {} launch: - /WeirdestThing.exe: + "/WeirdestThing.exe": - when: - os: windows store: steam @@ -618871,10 +620562,16 @@ Welcome Above: steam: id: 912660 Welcome Back Daddy: + files: + "/Software/Chilla's Art/Welcome back Daddy": + tags: + - config + when: + - os: windows installDir: Welcome Back Daddy: {} launch: - /wbdaddy.exe: + "/wbdaddy.exe": - when: - os: windows store: steam @@ -618884,7 +620581,7 @@ Welcome Back to 2007: installDir: Welcome Back To 2007: {} launch: - /WBT2007.exe: + "/WBT2007.exe": - when: - store: steam steam: @@ -618893,12 +620590,12 @@ Welcome Back to 2007 2: installDir: Welcome Back To 2007 2: {} launch: - /WBT2007_2.exe: + "/WBT2007_2.exe": - when: - store: steam steam: id: 848550 -'Welcome Home, Love': +"Welcome Home, Love": installDir: Welcome Home Love: {} steam: @@ -618907,7 +620604,7 @@ Welcome To Cathouse(欢迎来到猫咪花园): installDir: WelcomeToCathouse: {} launch: - /WelcomeToCathouse.exe: + "/WelcomeToCathouse.exe": - when: - os: windows store: steam @@ -618920,131 +620617,134 @@ Welcome To The Dreamscape: installDir: Welcome To The Dreamscape: {} launch: - /Welcome To The Dreamscape.app/Contents/MacOS/Welcome To The Dreamscape: + "/Welcome To The Dreamscape.app/Contents/MacOS/Welcome To The Dreamscape": - when: - os: mac store: steam - /Welcome To The Dreamscape.exe: + "/Welcome To The Dreamscape.exe": - when: - os: windows store: steam steam: id: 878980 -'Welcome To... Chichester 2 - Part II : No Regrets For The Future': +"Welcome To... Chichester 2 - Part II : No Regrets For The Future": installDir: WTC 2 - Part 2: {} launch: - /WelcomeToChichesterNRFTF-32.exe: + "/WelcomeToChichesterNRFTF-32.exe": - when: - bit: 32 os: windows store: steam - /WelcomeToChichesterNRFTF.app: + "/WelcomeToChichesterNRFTF.app": - when: - os: mac store: steam - /WelcomeToChichesterNRFTF.exe: + "/WelcomeToChichesterNRFTF.exe": - when: - bit: 64 os: windows store: steam - /WelcomeToChichesterNRFTF.sh: + "/WelcomeToChichesterNRFTF.sh": - when: - os: linux store: steam steam: id: 1105600 -'Welcome To... Chichester 2 : The Spy Of Chichester And The Eager Tourist Guide': +"Welcome To... Chichester 2 : The Spy Of Chichester And The Eager Tourist Guide": installDir: WTC 2 - Part 1: {} launch: - /WelcomeToChichester2-PartI-32.exe: + "/WelcomeToChichester2-PartI-32.exe": - when: - bit: 32 os: windows store: steam - /WelcomeToChichester2-PartI.app: + "/WelcomeToChichester2-PartI.app": - when: - os: mac store: steam - /WelcomeToChichester2-PartI.exe: + "/WelcomeToChichester2-PartI.exe": - when: - bit: 64 os: windows store: steam - /WelcomeToChichester2-PartI.sh: + "/WelcomeToChichester2-PartI.sh": - when: - os: linux store: steam steam: id: 907350 -'Welcome To... Chichester 3 : The Demon Of Chichester And The Last Day': +"Welcome To... Chichester 3 : The Demon Of Chichester And The Last Day": installDir: WTC 3: {} launch: - /WelcomeToChichester3.app: + "/WelcomeToChichester3.app": - when: - os: mac store: steam - /WelcomeToChichester3.exe: + "/WelcomeToChichester3.exe": - when: - os: windows store: steam - /WelcomeToChichester3.sh: + "/WelcomeToChichester3.sh": - when: - os: linux store: steam steam: id: 1041660 -'Welcome To... Chichester OVN 1 : The Beach': +"Welcome To... Chichester OVN 1 : The Beach": installDir: WTC OVN 1: {} launch: - /WelcomeToChichesterOVN1.app: + "/WelcomeToChichesterOVN1.app": - when: - os: mac store: steam - /WelcomeToChichesterOVN1.exe: + "/WelcomeToChichesterOVN1.exe": - when: - os: windows store: steam - /WelcomeToChichesterOVN1.sh: + "/WelcomeToChichesterOVN1.sh": - when: - os: linux store: steam steam: id: 1076040 -'Welcome To... Chichester OVN 2 : Master Tormentor Grendel Jinx !?': +"Welcome To... Chichester OVN 2 : Master Tormentor Grendel Jinx !?": installDir: WTC OVN 2: {} launch: - /WelcomeToChichesterOVN2.app: + "/WelcomeToChichesterOVN2.app": - when: - os: mac store: steam - /WelcomeToChichesterOVN2.exe: + "/WelcomeToChichesterOVN2.exe": - when: - os: windows store: steam - /WelcomeToChichesterOVN2.sh: + - bit: 32 + os: windows + store: steam + "/WelcomeToChichesterOVN2.sh": - when: - os: linux store: steam steam: id: 1163480 -'Welcome To... Chichester Redux : The Spy Of America And The Long Vacation': +"Welcome To... Chichester Redux : The Spy Of America And The Long Vacation": installDir: WTC 1: {} launch: - /WelcomeToChichester1.app: + "/WelcomeToChichester1.app": - when: - os: mac store: steam - /WelcomeToChichester1.exe: + "/WelcomeToChichester1.exe": - when: - os: windows store: steam - /WelcomeToChichester1.sh: + "/WelcomeToChichester1.sh": - when: - os: linux store: steam @@ -619054,11 +620754,11 @@ Welcome to Boon Hill: installDir: Boon Hill: {} launch: - /Boon Hill.exe: + "/Boon Hill.exe": - when: - os: windows store: steam - /boon hill.app: + "/boon hill.app": - when: - os: mac store: steam @@ -619068,7 +620768,7 @@ Welcome to Bummertown: installDir: Welcome To Bummertown: {} launch: - /Welcome to Bummertown.exe: + "/Welcome to Bummertown.exe": - when: - os: windows store: steam @@ -619078,11 +620778,11 @@ Welcome to Free Will - Episode 1: installDir: Welcome to Free Will: {} launch: - /WelcometoFreeWill.exe: + "/WelcometoFreeWill.exe": - when: - os: windows store: steam - /WelcometoFreeWill.sh: + "/WelcometoFreeWill.sh": - when: - os: linux store: steam @@ -619090,7 +620790,7 @@ Welcome to Free Will - Episode 1: id: 1743260 Welcome to Hanwell: files: - /WelcomeToHanwell: + "/WelcomeToHanwell": tags: - save when: @@ -619098,7 +620798,7 @@ Welcome to Hanwell: installDir: Welcome to Hanwell: {} launch: - /WelcomeToHanwell.exe: + "/WelcomeToHanwell.exe": - when: - bit: 64 os: windows @@ -619109,21 +620809,21 @@ Welcome to Heaven: installDir: welcome to heaven: {} launch: - /welcome to heaven.exe: + "/welcome to heaven.exe": - when: - os: windows store: steam - /welcome to heaven_lnx.x86: + "/welcome to heaven_lnx.x86": - when: - bit: 32 os: linux store: steam - /welcome to heaven_lnx.x86_64: + "/welcome to heaven_lnx.x86_64": - when: - bit: 64 os: linux store: steam - /welcome to heaven_mac.app: + "/welcome to heaven_mac.app": - when: - os: mac store: steam @@ -619138,15 +620838,15 @@ Welcome to Moreytown: installDir: Welcome to Moreytown: {} launch: - /Welcome to Moreytown.app/Contents/MacOS/Welcome to Moreytown: + "/Welcome to Moreytown.app/Contents/MacOS/Welcome to Moreytown": - when: - os: mac store: steam - /WelcomeToMoreytown: + "/WelcomeToMoreytown": - when: - os: linux store: steam - /WelcomeToMoreytown.exe: + "/WelcomeToMoreytown.exe": - when: - os: windows store: steam @@ -619164,7 +620864,7 @@ Welcome to Princeland: installDir: Welcome to Princeland: {} launch: - /Welcome to Princeland.exe: + "/Welcome to Princeland.exe": - when: - bit: 64 os: windows @@ -619175,7 +620875,7 @@ Welcome to nightmare: installDir: Welcome to nightmare: {} launch: - /Welcome to nightmare.exe: + "/Welcome to nightmare.exe": - when: - os: windows store: steam @@ -619185,7 +620885,7 @@ Welcome to the Adventurer Inn!: installDir: Welcome to the Adventurer Inn!: {} launch: - /krkr.eXe: + "/krkr.eXe": - when: - store: steam steam: @@ -619194,11 +620894,11 @@ Welcome to the Game: installDir: Welcome to the Game: {} launch: - /WTTG.exe: + "/WTTG.exe": - when: - os: windows store: steam - /wttg.app: + "/wttg.app": - when: - os: mac store: steam @@ -619208,11 +620908,11 @@ Welcome to the Game II: installDir: Welcome to the Game II: {} launch: - /WTTG2.app: + "/WTTG2.app": - when: - os: mac store: steam - /WTTG2.exe: + "/WTTG2.exe": - when: - os: windows store: steam @@ -619222,7 +620922,7 @@ Welcome to the Pool Hall: installDir: Welcome to the Pool Hall: {} launch: - /BilliardGame.exe: + "/BilliardGame.exe": - when: - os: windows store: steam @@ -619230,12 +620930,12 @@ Welcome to the Pool Hall: id: 877230 Welcome to... Chichester!: files: - /renpy/Chichester1Test-1540124710/*.save: + "/renpy/Chichester1Test-1540124710/*.save": tags: - save when: - os: windows - /renpy/Chichester1Test-1540124710/persistent: + "/renpy/Chichester1Test-1540124710/persistent": tags: - config when: @@ -619243,11 +620943,11 @@ Welcome to... Chichester!: installDir: WTC 0: {} launch: - /WTC0.exe: + "/WTC0.exe": - when: - os: windows store: steam - /WTC0.sh: + "/WTC0.sh": - when: - os: linux store: steam @@ -619255,12 +620955,12 @@ Welcome to... Chichester!: id: 877460 Welkin Road: files: - /Welkin Road//SaveGame.dat: + "/Welkin Road//SaveGame.dat": tags: - save when: - os: windows - /Welkin Road/Settings.xml: + "/Welkin Road/Settings.xml": tags: - config when: @@ -619268,16 +620968,16 @@ Welkin Road: installDir: Welkin Road: {} launch: - /WelkinRoad.app: + "/WelkinRoad.app": - when: - bit: 64 os: mac store: steam - /WelkinRoad.exe: + "/WelkinRoad.exe": - when: - os: windows store: steam - /WelkinRoad.x86_64: + "/WelkinRoad.x86_64": - when: - bit: 64 os: linux @@ -619293,15 +620993,15 @@ WellTown: Well Town: {} steam: id: 974150 -Wellington's Victory: +"Wellington's Victory": installDir: - Wellington's Victory: {} + "Wellington's Victory": {} launch: - /wellingtonsvictory.app: + "/wellingtonsvictory.app": - when: - os: mac store: steam - /wellingtonsvictory.exe: + "/wellingtonsvictory.exe": - when: - os: windows store: steam @@ -619311,34 +621011,34 @@ Wells: installDir: Wells: {} launch: - /Wells.app/Contents/MacOS/Wells: + "/Wells.app/Contents/MacOS/Wells": - when: - os: mac store: steam - /Wells.exe: + "/Wells.exe": - when: - os: windows store: steam - /Wells.x86: + "/Wells.x86": - when: - bit: 32 os: linux store: steam - /Wells.x86_64: + "/Wells.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 528430 -'Wellspring: Altar of Roots': +"Wellspring: Altar of Roots": steam: id: 690110 -Wendy's Mart 3D: +"Wendy's Mart 3D": installDir: Wendy’s Mart 3D: {} launch: - /WendyMart3D.exe: + "/WendyMart3D.exe": - when: - bit: 64 os: windows @@ -619349,7 +621049,7 @@ Wenjia: installDir: Wenjia: {} launch: - /Wenjia.exe: + "/Wenjia.exe": - when: - bit: 64 os: windows @@ -619363,7 +621063,7 @@ Wequer: installDir: Wequer: {} launch: - /Wequer.exe: + "/Wequer.exe": - when: - os: windows store: steam @@ -619373,7 +621073,7 @@ Wer weiß denn sowas? - Das 2. Spiel: installDir: Wer weiß denn sowas - Das 2. Spiel: {} launch: - /WWDS2.exe: + "/WWDS2.exe": - when: - bit: 64 os: windows @@ -619384,7 +621084,7 @@ Wer weiß denn sowas? - Das Spiel: installDir: Wer weiß denn sowas: {} launch: - /Wer Weiß Denn Sowas.exe: + "/Wer Weiß Denn Sowas.exe": - when: - os: windows store: steam @@ -619394,7 +621094,7 @@ Werecrab vs. Mechanical Monkey: installDir: Kaniman: {} launch: - /KANIMAN.exe: + "/KANIMAN.exe": - when: - os: windows store: steam @@ -619404,15 +621104,15 @@ Werewolf Hunter X: installDir: Werewolf Hunter X: {} launch: - /Werewolf Hunter X.exe: + "/Werewolf Hunter X.exe": - when: - os: windows store: steam - /Werewolf_Hunter_X: + "/Werewolf_Hunter_X": - when: - os: linux store: steam - /Werewolf_Hunter_X.app/Contents/MacOS/Werewolf_Hunter_X: + "/Werewolf_Hunter_X.app/Contents/MacOS/Werewolf_Hunter_X": - when: - os: mac store: steam @@ -619425,25 +621125,25 @@ Werewolf Voice - Party Game: installDir: Werewolf Voice - Best Board Game: {} launch: - /Werewolf Voice.exe: - - arguments: '-windowed' + "/Werewolf Voice.exe": + - arguments: "-windowed" when: - os: windows store: steam - /werewolf.app: + "/werewolf.app": - when: - os: mac store: steam steam: id: 1153880 -'Werewolf: The Apocalypse - Earthblood': +"Werewolf: The Apocalypse - Earthblood": files: - /WW/Saved/Config/WindowsNoEditor: + "/WW/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /WW/Saved/SaveGames: + "/WW/Saved/SaveGames": tags: - save when: @@ -619453,22 +621153,22 @@ Werewolf Voice - Party Game: installDir: WerewolfTheApocalypseEarthblood: {} launch: - /WW.exe: - - arguments: '-SaveToUserDir' + "/WW.exe": + - arguments: "-SaveToUserDir" when: - bit: 64 os: windows store: steam steam: id: 679110 -'Werewolf: The Apocalypse - Heart of the Forest': +"Werewolf: The Apocalypse - Heart of the Forest": files: - /AppData/LocalLow/Different Tales/Heart of the Forest/Device/devicesettings.json: + "/AppData/LocalLow/Different Tales/Heart of the Forest/Device/devicesettings.json": tags: - config when: - os: windows - /AppData/LocalLow/Different Tales/Heart of the Forest/Saves/profile*.json: + "/AppData/LocalLow/Different Tales/Heart of the Forest/Saves/profile*.json": tags: - save when: @@ -619478,16 +621178,16 @@ Werewolf Voice - Party Game: installDir: Werewolf The Apocalypse - Heart of the Forest: {} launch: - /Heart of the Forest: + "/Heart of the Forest": - when: - bit: 64 os: linux store: steam - /Heart of the Forest.app: + "/Heart of the Forest.app": - when: - os: mac store: steam - /Heart of the Forest.exe: + "/Heart of the Forest.exe": - when: - bit: 64 os: windows @@ -619503,19 +621203,19 @@ Werewolves Within: Werewolves Within: {} steam: id: 488950 -'Werewolves: Haven Rising': +"Werewolves: Haven Rising": installDir: Werewolves Haven Rising: {} launch: - /Werewolves Haven Rising.app/Contents/MacOS/Werewolves Haven Rising: + "/Werewolves Haven Rising.app/Contents/MacOS/Werewolves Haven Rising": - when: - os: mac store: steam - /WerewolvesHavenRising: + "/WerewolvesHavenRising": - when: - os: linux store: steam - /WerewolvesHavenRising.exe: + "/WerewolvesHavenRising.exe": - when: - os: windows store: steam @@ -619525,11 +621225,11 @@ Werther Quest: installDir: Werther Quest: {} launch: - /Werther Quest.exe: + "/Werther Quest.exe": - when: - os: windows store: steam - /WertherQuest.app: + "/WertherQuest.app": - when: - os: mac store: steam @@ -619539,7 +621239,7 @@ West Sweety: installDir: West Sweety: {} launch: - /West Sweety.exe: + "/West Sweety.exe": - when: - os: windows store: steam @@ -619557,57 +621257,52 @@ West of Dead: installDir: West of Dead: {} launch: - /WestOfDead.exe: + "/WestOfDead.exe": - when: - store: steam steam: id: 1016790 West of Loathing: files: - /.config/unity3d/Asymmetric Software/West of Loathing: + "/.config/unity3d/Asymmetric Software/West of Loathing": tags: - save when: - os: linux - /.config/unity3d/Asymmetric Software/West of Loathing/prefs: + "/.config/unity3d/Asymmetric Software/West of Loathing/prefs": tags: - config when: - os: linux - /AppData/LocalLow/Asymmetric Software/West of Loathing/.json: + "/AppData/LocalLow/Asymmetric Software/West of Loathing/.json": tags: - save when: - os: windows - /Library/Application Support/Asymmetric Software/West of Loathing: + "/Library/Application Support/Asymmetric Software/West of Loathing": tags: - save when: - os: mac - /Library/Application Support/Asymmetric Software/West of Loathing/permaflags-*: - tags: - - config - when: - - os: mac gog: id: 1154606028 installDir: West of Loathing: {} launch: - /West of Loathing.app/Contents/MacOS/West of Loathing: + "/West of Loathing.app/Contents/MacOS/West of Loathing": - when: - os: mac store: steam - /West of Loathing.exe: + "/West of Loathing.exe": - when: - os: windows store: steam - /West of Loathing.x86: + "/West of Loathing.x86": - when: - bit: 32 os: linux store: steam - /West of Loathing.x86_64: + "/West of Loathing.x86_64": - when: - bit: 64 os: linux @@ -619622,15 +621317,15 @@ West of Red: installDir: West of Red: {} launch: - /WestOfRed.app/Contents/MacOS/WestOfRed: + "/WestOfRed.app/Contents/MacOS/WestOfRed": - when: - os: mac store: steam - /WestOfRed.exe: + "/WestOfRed.exe": - when: - os: windows store: steam - /WestOfRed.x86: + "/WestOfRed.x86": - when: - os: linux store: steam @@ -619640,11 +621335,13 @@ West-Ward: installDir: West-Ward: {} launch: - /West-Ward: + "/West-Ward": - when: - os: mac store: steam - /West-Ward.exe: + - os: linux + store: steam + "/West-Ward.exe": - when: - os: windows store: steam @@ -619659,35 +621356,35 @@ Westboro: installDir: Westboro: {} launch: - /westboro.exe: + "/westboro.exe": - when: - os: windows store: steam steam: id: 416060 -'Westerado: Double Barreled': +"Westerado: Double Barreled": files: - /Documents/Westerado DB/controls.ini: + "/Documents/Westerado DB/controls.ini": tags: - config when: - os: mac - /Documents/Westerado DB/saves: + "/Documents/Westerado DB/saves": tags: - save when: - os: mac - /WesteradoDB: + "/WesteradoDB": tags: - config when: - os: windows - /Westerado DB/controls.ini: + "/Westerado DB/controls.ini": tags: - config when: - os: windows - /Westerado DB/saves: + "/Westerado DB/saves": tags: - save when: @@ -619697,11 +621394,11 @@ Westboro: installDir: Westerado: {} launch: - /WesteradoDB.app: + "/WesteradoDB.app": - when: - os: mac store: steam - /WesteradoDB.exe: + "/WesteradoDB.exe": - when: - os: windows store: steam @@ -619709,7 +621406,7 @@ Westboro: id: 275200 Western 1849 Reloaded: files: - /AppData/LocalLow/NAWIA GAMES/Western 1849 Reloaded: + "/AppData/LocalLow/NAWIA GAMES/Western 1849 Reloaded": tags: - config - save @@ -619718,11 +621415,11 @@ Western 1849 Reloaded: installDir: Western 1849 Reloaded: {} launch: - /WPC.app: + "/WPC.app": - when: - os: mac store: steam - /WPC.exe: + "/WPC.exe": - when: - os: windows store: steam @@ -619739,16 +621436,16 @@ Western Bank VR: Western FPS: steam: id: 603370 -'Western Outlaw: Wanted Dead or Alive': +"Western Outlaw: Wanted Dead or Alive": files: - /Save: + "/Save": tags: - save when: - os: windows Western Press: files: - /AppData/LocalLow/Bandit-1/Western Press/user.wp: + "/AppData/LocalLow/Bandit-1/Western Press/user.wp": tags: - save when: @@ -619756,19 +621453,19 @@ Western Press: installDir: Western Press: {} launch: - /Western Press.app: + "/Western Press.app": - when: - os: mac store: steam - /Western Press.exe: + "/Western Press.exe": - when: - os: windows store: steam - /uploader/uploader.app: + "/uploader/uploader.app": - when: - os: mac store: steam - /uploader/uploader.exe: + "/uploader/uploader.exe": - when: - os: windows store: steam @@ -619783,7 +621480,7 @@ Westmark Manor: installDir: Westmark Manor: {} launch: - /Westmark Manor.exe: + "/Westmark Manor.exe": - when: - store: steam steam: @@ -619792,7 +621489,7 @@ Westminster Darkly: installDir: Westminster Darkly: {} launch: - /nw.exe: + "/nw.exe": - when: - bit: 64 os: windows @@ -619803,7 +621500,7 @@ Westslingers: installDir: WESTSLINGERS: {} launch: - /WESTSLINGERS.exe: + "/WESTSLINGERS.exe": - when: - os: windows store: steam @@ -619813,37 +621510,37 @@ Westward: installDir: Westward: {} launch: - /Westward.exe: + "/Westward.exe": - when: - store: steam steam: id: 36150 -'Westward II: Heroes of the Frontier': +"Westward II: Heroes of the Frontier": installDir: Westward 2: {} launch: - /Westward2.exe: + "/Westward2.exe": - when: - store: steam steam: id: 36160 -'Westward III: Gold Rush': +"Westward III: Gold Rush": installDir: Westward 3: {} launch: - /Westward_III.exe: + "/Westward_III.exe": - when: - store: steam steam: id: 36170 -'Westward IV: All Aboard': +"Westward IV: All Aboard": files: - /Saved Games/Sandlot Games/Westward IV/Preferences: + "/Saved Games/Sandlot Games/Westward IV/Preferences": tags: - config when: - os: windows - /Saved Games/Sandlot Games/Westward IV/Profiles: + "/Saved Games/Sandlot Games/Westward IV/Profiles": tags: - save when: @@ -619851,7 +621548,7 @@ Westward: installDir: Westward IV: {} launch: - /Westward_IV.exe: + "/Westward_IV.exe": - when: - store: steam steam: @@ -619860,7 +621557,7 @@ Westwood Shadows: installDir: Westwood Shadows: {} launch: - /WestwoodShadows.exe: + "/WestwoodShadows.exe": - when: - os: windows store: steam @@ -619868,12 +621565,12 @@ Westwood Shadows: id: 1122360 Westworld Awakening: files: - /LabEscape/Saved/Config: + "/LabEscape/Saved/Config": tags: - config when: - os: windows - /LabEscape/Saved/SaveGames: + "/LabEscape/Saved/SaveGames": tags: - save when: @@ -619886,7 +621583,7 @@ Wet Beach Pussies: installDir: Wet Beach Pussies: {} launch: - /WetBeachPussies.exe: + "/WetBeachPussies.exe": - when: - store: steam steam: @@ -619895,7 +621592,7 @@ Wet Girl: installDir: Wet Girl: {} launch: - /WetGirl.exe: + "/WetGirl.exe": - when: - store: steam steam: @@ -619904,7 +621601,7 @@ Wet Warfare: installDir: Wet Warfare: {} launch: - /Wet Warfare.exe: + "/Wet Warfare.exe": - when: - os: windows store: steam @@ -619926,11 +621623,11 @@ Wetwork: installDir: Wetwork: {} launch: - /Wetwork.app: + "/Wetwork.app": - when: - os: mac store: steam - /Wetwork.exe: + "/Wetwork.exe": - when: - bit: 64 os: windows @@ -619941,15 +621638,15 @@ Weyrwood: installDir: Weyrwood: {} launch: - /Weyrwood: + "/Weyrwood": - when: - os: linux store: steam - /Weyrwood.app/Contents/MacOS/Weyrwood: + "/Weyrwood.app/Contents/MacOS/Weyrwood": - when: - os: mac store: steam - /Weyrwood.exe: + "/Weyrwood.exe": - when: - os: windows store: steam @@ -619959,13 +621656,13 @@ Whack A Hoe: installDir: Whack A Hoe: {} launch: - /Whack A Hoe.exe: + "/Whack A Hoe.exe": - when: - os: windows store: steam steam: id: 1128270 -'Whack a Vote: Hammering the Polls': +"Whack a Vote: Hammering the Polls": installDir: Whack a Vote Hammering the Polls: {} steam: @@ -619974,22 +621671,22 @@ Whack the Serial Killer: installDir: Whack the Serial Killer: {} launch: - /WhackTheSerialKiller.exe: + "/WhackTheSerialKiller.exe": - when: - bit: 64 os: windows store: steam steam: id: 764990 -'Whacker Guy: Distance Hunter': +"Whacker Guy: Distance Hunter": installDir: Whacker Guy Distance Hunter: {} launch: - /WhackerGuyDH.app: + "/WhackerGuyDH.app": - when: - os: mac store: steam - /WhackerGuyDH.exe: + "/WhackerGuyDH.exe": - when: - bit: 64 os: windows @@ -620008,11 +621705,11 @@ What A Trash Game!: installDir: What A Trash Game: {} launch: - /What A Trash Game.app/Contents/MacOS/What A Trash Game: + "/What A Trash Game.app/Contents/MacOS/What A Trash Game": - when: - os: mac store: steam - /What A Trash Game.exe: + "/What A Trash Game.exe": - when: - os: windows store: steam @@ -620022,11 +621719,11 @@ What Are You Stupid: installDir: What Are You Stupid: {} launch: - /What Are You Stupid.exe: + "/What Are You Stupid.exe": - when: - os: windows store: steam - /What Are You Stupid_MacOS.app: + "/What Are You Stupid_MacOS.app": - when: - os: mac store: steam @@ -620036,11 +621733,11 @@ What Comes After: installDir: What Comes After: {} launch: - /What Comes After.app: + "/What Comes After.app": - when: - os: mac store: steam - /What Comes After.exe: + "/What Comes After.exe": - when: - os: windows store: steam @@ -620055,29 +621752,29 @@ What Lies in the Multiverse: installDir: What lies in the multiverse: {} launch: - /What Lies in the Multiverse.exe: + "/What Lies in the Multiverse.exe": - when: - store: steam steam: id: 1721170 What Never Was: files: - /.config/Epic/WhatNeverWas/Saved/Config/LinuxNoEditor: + "/.config/Epic/WhatNeverWas/Saved/Config/LinuxNoEditor": tags: - config when: - os: linux - /.config/Epic/WhatNeverWas/Saved/SaveGames/SaveSlot.sav: + "/.config/Epic/WhatNeverWas/Saved/SaveGames/SaveSlot.sav": tags: - save when: - os: linux - /WhatNeverWas/Saved/Config/WindowsNoEditor: + "/WhatNeverWas/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /WhatNeverWas/Saved/SaveGames/SaveSlot.sav: + "/WhatNeverWas/Saved/SaveGames/SaveSlot.sav": tags: - save when: @@ -620085,42 +621782,42 @@ What Never Was: installDir: What Never Was: {} launch: - /WhatNeverWas.app: + "/WhatNeverWas.app": - when: - os: mac store: steam - /WhatNeverWas.exe: + "/WhatNeverWas.exe": - when: - os: windows store: steam - /WhatNeverWas.sh: + "/WhatNeverWas.sh": - when: - os: linux store: steam steam: id: 866440 -'What Never Was: Chapter II': +"What Never Was: Chapter II": steam: id: 1506730 What Remains of Edith Finch: files: - /FinchGame/Saved/Config/WindowsNoEditor: + "/FinchGame/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /FinchGame/Saved/SaveGames: + "/FinchGame/Saved/SaveGames": tags: - save when: - os: windows - /Packages/AnnapurnaInteractive.WhatRemainsofEdithFinch_c96c51jf6wkvm/LocalCache/Local/FinchGame/Saved/Config/WindowsNoEditor: + "/Packages/AnnapurnaInteractive.WhatRemainsofEdithFinch_c96c51jf6wkvm/LocalCache/Local/FinchGame/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows store: microsoft - /Packages/AnnapurnaInteractive.WhatRemainsofEdithFinch_c96c51jf6wkvm/LocalCache/Local/FinchGame/Saved/SaveGames: + "/Packages/AnnapurnaInteractive.WhatRemainsofEdithFinch_c96c51jf6wkvm/LocalCache/Local/FinchGame/Saved/SaveGames": tags: - save when: @@ -620136,7 +621833,7 @@ What Remains of Edith Finch: installDir: EdithFinch: {} launch: - /FinchGame/Binaries/Win64/FinchGame.exe: + "/FinchGame/Binaries/Win64/FinchGame.exe": - arguments: SAVEWINPOS=1 when: - os: windows @@ -620147,21 +621844,21 @@ What The Box?: installDir: WhatTheBox: {} launch: - /WhatTheBox.app: + "/WhatTheBox.app": - when: - os: mac store: steam - /WhatTheBox.exe: + "/WhatTheBox.exe": - when: - bit: 64 os: windows store: steam - /WhatTheBox.x86_64: + "/WhatTheBox.x86_64": - arguments: LC_ALL=C when: - os: linux store: steam - /WhatTheBox_win32.exe: + "/WhatTheBox_win32.exe": - when: - bit: 32 os: windows @@ -620171,11 +621868,11 @@ What The Box?: What The Duck: steam: id: 1034590 -'What The Heck, Dude?': +"What The Heck, Dude?": installDir: What The Heck Dude: {} launch: - /WhatTheHeckDude.exe: + "/WhatTheHeckDude.exe": - when: - os: windows store: steam @@ -620185,7 +621882,7 @@ What Would You Do?: installDir: WhatWouldYouDo: {} launch: - /WWYD.exe: + "/WWYD.exe": - when: - os: windows store: steam @@ -620196,12 +621893,12 @@ What do you hear?? Yanny vs Laurel: What do you hear Yanny vs Laurel: {} steam: id: 868550 -'What have you done, Father?': +"What have you done, Father?": steam: id: 2584260 What if George Washington was a Girl?: files: - /LocalLow/echomune/Alter Historia - What if George Washington was a Girl_: + "/LocalLow/echomune/Alter Historia - What if George Washington was a Girl_": tags: - save when: @@ -620209,7 +621906,7 @@ What if George Washington was a Girl?: installDir: What if George Washington was a Girl: {} launch: - /Alter Historia - What if George Washington was a Girl.exe: + "/Alter Historia - What if George Washington was a Girl.exe": - when: - os: windows store: steam @@ -620223,7 +621920,7 @@ What the Duck: id: 1076970 What the Golf?: files: - /AppData/LocalLow/Triband/WHAT THE GOLF_/GolfSave.golf: + "/AppData/LocalLow/Triband/WHAT THE GOLF_/GolfSave.golf": tags: - save when: @@ -620233,16 +621930,16 @@ What the Golf?: installDir: WHAT THE GOLF: {} launch: - /WHAT THE GOLF: + "/WHAT THE GOLF": - when: - bit: 64 os: linux store: steam - /WHAT THE GOLF.exe: + "/WHAT THE GOLF.exe": - when: - os: windows store: steam - /WHATTHEGOLF.app: + "/WHATTHEGOLF.app": - when: - os: mac store: steam @@ -620258,37 +621955,37 @@ What would Google say?: What!? My Neighbors Are Demons!!?: steam: id: 657580 -What's Left: +"What's Left": installDir: - What's Left: {} + "What's Left": {} launch: - /RPG_RT.exe: + "/RPG_RT.exe": - when: - os: windows store: steam steam: id: 1127480 -What's My Gender?: +"What's My Gender?": installDir: Whats My Gender: {} launch: - /whatsmygender.exe: + "/whatsmygender.exe": - when: - os: windows store: steam steam: id: 859380 -What's under Your Blanket !?: +"What's under Your Blanket !?": steam: id: 432020 -What's under Your Blanket 2 !?: +"What's under Your Blanket 2 !?": steam: id: 605500 What? Hentai? Again ? ( ͡° ͜ʖ ͡°): installDir: - 'Oh, you touch my balls ( ͡° ͜ʖ ͡°)': {} + "Oh, you touch my balls ( ͡° ͜ʖ ͡°)": {} launch: - /ball.exe: + "/ball.exe": - when: - store: steam steam: @@ -620299,7 +621996,7 @@ Whateverland: installDir: Whateverland: {} launch: - /Whateverland.exe: + "/Whateverland.exe": - when: - store: steam steam: @@ -620308,7 +622005,7 @@ Wheel Riders Online: installDir: Wheel Riders Online: {} launch: - /WarCarOnline.exe: + "/WarCarOnline.exe": - when: - os: windows store: steam @@ -620318,7 +622015,7 @@ Wheel Travel: installDir: WheelTravel: {} launch: - /WHEEL_TRAVEL.exe: + "/WHEEL_TRAVEL.exe": - when: - os: windows store: steam @@ -620333,7 +622030,7 @@ Wheelbarrow Warrior: installDir: WheelbarrowWarrior: {} launch: - /WheelbarrowWarrior.exe: + "/WheelbarrowWarrior.exe": - when: - os: windows store: steam @@ -620343,7 +622040,7 @@ Wheelchair Simulator: installDir: Wheelchair Simulator: {} launch: - /Wheelchair.exe: + "/Wheelchair.exe": - when: - bit: 64 os: windows @@ -620362,7 +622059,7 @@ Wheelie King VR: id: 1079420 Wheelman: files: - /Wheelman: + "/Wheelman": tags: - config - save @@ -620371,25 +622068,25 @@ Wheelman: installDir: Wheelman: {} launch: - /run_game.bat: + "/run_game.bat": - when: - store: steam steam: id: 21920 Wheels of Aurelia: files: - /AppData/LocalLow/Santa Ragione/WheelsofAurelia/PlayerPrefs.txt: + "/AppData/LocalLow/Santa Ragione/WheelsofAurelia/PlayerPrefs.txt": tags: - config - save when: - os: windows - /Library/Containers/Wheels of Aurelia/Data/Library/Application Support/com.santaragione.WoA/PlayerPrefs.txt: + "/Library/Containers/Wheels of Aurelia/Data/Library/Application Support/com.santaragione.WoA/PlayerPrefs.txt": tags: - save when: - os: mac - /unity3d/Santa Regione/WheelsofAurelia/PlayerPrefs.txt: + "/unity3d/Santa Regione/WheelsofAurelia/PlayerPrefs.txt": tags: - config - save @@ -620398,15 +622095,15 @@ Wheels of Aurelia: installDir: Wheels of Aurelia: {} launch: - /woa.app: + "/woa.app": - when: - os: mac store: steam - /woa.exe: + "/woa.exe": - when: - os: windows store: steam - /woa.x86: + "/woa.x86": - when: - os: linux store: steam @@ -620416,7 +622113,7 @@ Wheely: installDir: Wheely: {} launch: - /Wheely.exe: + "/Wheely.exe": - when: - os: windows store: steam @@ -620426,11 +622123,11 @@ Wheelz2: installDir: Wheelz2: {} launch: - /UnrealRacerz.exe: + "/UnrealRacerz.exe": - when: - os: windows store: steam - /UnrealRacerz.sh: + "/UnrealRacerz.sh": - when: - os: linux store: steam @@ -620440,7 +622137,7 @@ When I Was Young: installDir: When I Was Young: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -620450,7 +622147,7 @@ When In Rome: installDir: When In Rome: {} launch: - /WhenInRome.exe: + "/WhenInRome.exe": - when: - store: steam steam: @@ -620459,7 +622156,7 @@ When It Hits the Fan: installDir: When It Hits the Fan: {} launch: - /WhenItHitsTheFan.exe: + "/WhenItHitsTheFan.exe": - when: - os: windows store: steam @@ -620469,15 +622166,15 @@ When Our Journey Ends - A Visual Novel: installDir: When Our Journey Ends: {} launch: - /When_Our_Journey_Ends.app: + "/When_Our_Journey_Ends.app": - when: - os: mac store: steam - /When_Our_Journey_Ends.exe: + "/When_Our_Journey_Ends.exe": - when: - os: windows store: steam - /When_Our_Journey_Ends.sh: + "/When_Our_Journey_Ends.sh": - when: - os: linux store: steam @@ -620485,12 +622182,12 @@ When Our Journey Ends - A Visual Novel: id: 563520 When Ski Lifts Go Wrong: files: - /AppData/LocalLow/Hugecalf Studios/When Ski Lifts Go Wrong/saves: + "/AppData/LocalLow/Hugecalf Studios/When Ski Lifts Go Wrong/saves": tags: - save when: - os: windows - /AppData/LocalLow/Hugecalf Studios/When Ski Lifts Go Wrong/settings.ca: + "/AppData/LocalLow/Hugecalf Studios/When Ski Lifts Go Wrong/settings.ca": tags: - config when: @@ -620498,11 +622195,11 @@ When Ski Lifts Go Wrong: installDir: When Ski Lifts Go Wrong: {} launch: - /When Ski Lifts Go Wrong.app/Contents/MacOS/When Ski Lifts Go Wrong: + "/When Ski Lifts Go Wrong.app/Contents/MacOS/When Ski Lifts Go Wrong": - when: - os: mac store: steam - /When Ski Lifts Go Wrong.exe: + "/When Ski Lifts Go Wrong.exe": - when: - bit: 64 os: windows @@ -620520,7 +622217,7 @@ When They Arrived: installDir: When They Arrived: {} launch: - /When They Arrived.exe: + "/When They Arrived.exe": - when: - os: windows store: steam @@ -620533,7 +622230,7 @@ When Wardens Fall: id: 819400 When the Darkness comes: files: - /Darkness/_meaning: + "/Darkness/_meaning": tags: - save when: @@ -620541,7 +622238,7 @@ When the Darkness comes: installDir: When the Darkness comes: {} launch: - /WhenTheDarknessComes.exe: + "/WhenTheDarknessComes.exe": - when: - os: windows store: steam @@ -620549,7 +622246,7 @@ When the Darkness comes: id: 1021950 When the Past Was Around: files: - /AppData/LocalLow/Mojiken Studio/When Past Was Around/data.save: + "/AppData/LocalLow/Mojiken Studio/When Past Was Around/data.save": tags: - config - save @@ -620560,11 +622257,11 @@ When the Past Was Around: installDir: When The Past Was Around: {} launch: - /When Past Was Around.exe: + "/When Past Was Around.exe": - when: - os: windows store: steam - /When The Past Was Around.app: + "/When The Past Was Around.app": - when: - os: mac store: steam @@ -620578,27 +622275,27 @@ Where Angels Cry: installDir: Where Angels Cry: {} launch: - /Where Angels Cry.app/Contents/MacOS/game: + "/Where Angels Cry.app/Contents/MacOS/game": - when: - os: mac store: steam - workingDir: /Where Angels Cry.app/Contents/MacOS - /angels.exe: + workingDir: "/Where Angels Cry.app/Contents/MacOS" + "/angels.exe": - when: - os: windows store: steam steam: id: 277560 -'Where Angels Cry: Tears of the Fallen': +"Where Angels Cry: Tears of the Fallen": installDir: Where Angels Cry - Tears Of The Fallen (Collectors Edition): {} launch: - /WhereAngelsCry_TearsOfTheFallen_CE.app/Contents/MacOS/WhereAngelsCry_TearsOfTheFallen_CE: + "/WhereAngelsCry_TearsOfTheFallen_CE.app/Contents/MacOS/WhereAngelsCry_TearsOfTheFallen_CE": - when: - os: mac store: steam - workingDir: /WhereAngelsCry_TearsOfTheFallen_CE.app/Contents/MacOS - /WhereAngelsCry_TearsOfTheFallen_CE.exe: + workingDir: "/WhereAngelsCry_TearsOfTheFallen_CE.app/Contents/MacOS" + "/WhereAngelsCry_TearsOfTheFallen_CE.exe": - when: - os: windows store: steam @@ -620608,7 +622305,7 @@ Where Are My Friends?: installDir: WAMF: {} launch: - /Where Are My Friends.exe: + "/Where Are My Friends.exe": - when: - os: windows store: steam @@ -620618,16 +622315,16 @@ Where Are My Internets?: installDir: Where are my Internets: {} launch: - /Game.app/Contents/MacOS/nwjs: + "/Game.app/Contents/MacOS/nwjs": - when: - os: mac store: steam - /nw: + "/nw": - when: - os: linux store: steam - /nw.exe: - - arguments: '--in-process-gpu' + "/nw.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam @@ -620637,15 +622334,15 @@ Where Are We Now: installDir: Where Are We Now: {} launch: - /WhereAreWeNow: + "/WhereAreWeNow": - when: - os: linux store: steam - /WhereAreWeNow.exe: + "/WhereAreWeNow.exe": - when: - os: windows store: steam - /wherearewenow.app/Contents/MacOS/nwjs: + "/wherearewenow.app/Contents/MacOS/nwjs": - when: - os: mac store: steam @@ -620655,17 +622352,17 @@ Where Cards Fall: installDir: Where Cards Fall: {} launch: - /wcf.exe: + "/wcf.exe": - when: - os: windows store: steam steam: id: 589450 -Where Humans Shouldn't Go: +"Where Humans Shouldn't Go": installDir: - Where Humans Shouldn't Go: {} + "Where Humans Shouldn't Go": {} launch: - /WHSG.exe: + "/WHSG.exe": - when: - bit: 64 os: windows @@ -620674,12 +622371,12 @@ Where Humans Shouldn't Go: id: 921090 Where Is My Heart?: files: - /WIMH: + "/WIMH": tags: - config when: - os: windows - /WIMH/Saves/slot*.whs: + "/WIMH/Saves/slot*.whs": tags: - save when: @@ -620689,11 +622386,11 @@ Where Is My Heart?: installDir: Where is my Heart: {} launch: - /Where is my Heart.app: + "/Where is my Heart.app": - when: - os: mac store: steam - /Where is my Heart.exe: + "/Where is my Heart.exe": - when: - os: windows store: steam @@ -620703,7 +622400,7 @@ Where Is The Beach?: installDir: Where is The Beach: {} launch: - /Where is The Beach.exe: + "/Where is The Beach.exe": - when: - os: windows store: steam @@ -620713,23 +622410,23 @@ Where They Cremate The Roadkill: installDir: Where They Cremate The Roadkill: {} launch: - /Contents/MacOS/WineskinLauncher: - - arguments: ../Resources/drive_c/Program\\ Files/.WTCTR/Game.exe + "/Contents/MacOS/WineskinLauncher": + - arguments: "../Resources/drive_c/Program\\\\ Files/.WTCTR/Game.exe" when: - os: mac store: steam - /Launcher.exe: + "/Launcher.exe": - when: - os: windows store: steam steam: id: 705610 -'Where Thoughts Go: Prologue': +"Where Thoughts Go: Prologue": installDir: Where Thoughts Go: {} steam: id: 846080 -'Where Thoughts Go: Resolutions': +"Where Thoughts Go: Resolutions": installDir: Where Thoughts Go - Resolutions: {} steam: @@ -620738,7 +622435,7 @@ Where Time Stood Still: installDir: Where Time Stood Still: {} launch: - /dosbox.exe: + "/dosbox.exe": - when: - os: windows store: steam @@ -620748,11 +622445,11 @@ Where are My Pipes?: installDir: Where are My Pipes: {} launch: - /Where`s my pipes.exe: + "/Where`s my pipes.exe": - when: - os: windows store: steam - /where are my pipes.app: + "/where are my pipes.app": - when: - os: mac store: steam @@ -620765,7 +622462,7 @@ Where is my Brain!?: installDir: Where is my Brain!: {} launch: - /WhereIsMyBrain_C.exe: + "/WhereIsMyBrain_C.exe": - when: - os: windows store: steam @@ -620775,15 +622472,15 @@ Where is my family: installDir: Where is my family: {} launch: - /Where is my Family.app: + "/Where is my Family.app": - when: - os: mac store: steam - /start: + "/start": - when: - os: linux store: steam - /wimf.exe: + "/wimf.exe": - when: - os: windows store: steam @@ -620793,7 +622490,7 @@ Where the Bees Make Honey: installDir: Where the Bees Make Honey: {} launch: - /Where the Bees Make Honey.exe: + "/Where the Bees Make Honey.exe": - when: - store: steam steam: @@ -620805,7 +622502,7 @@ Where the Money Is: installDir: Where the Money Is: {} launch: - /WhereTheMoneyIs.exe: + "/WhereTheMoneyIs.exe": - when: - os: windows store: steam @@ -620813,17 +622510,17 @@ Where the Money Is: id: 680890 Where the Water Tastes Like Wine: files: - /AppData/LocalLow/Dim Bulb Games/WheretheWaterTastesLikeWine/SaveGame.wtwtlw: + "/AppData/LocalLow/Dim Bulb Games/WheretheWaterTastesLikeWine/SaveGame.wtwtlw": tags: - save when: - os: windows - /AppData/LocalLow/Dim Bulb Games/WheretheWaterTastesLikeWine/WTWTLW-Options.options: + "/AppData/LocalLow/Dim Bulb Games/WheretheWaterTastesLikeWine/WTWTLW-Options.options": tags: - config when: - os: windows - /Dim Bulb Games/WheretheWaterTastesLikeWine: + "/Dim Bulb Games/WheretheWaterTastesLikeWine": tags: - config when: @@ -620833,21 +622530,21 @@ Where the Water Tastes Like Wine: installDir: Where The Water Tastes Like Wine: {} launch: - /WTWTLW.app/Contents/MacOS/WheretheWaterTastesLikeWine: + "/WTWTLW.app/Contents/MacOS/WheretheWaterTastesLikeWine": - when: - os: mac store: steam - /WTWTLW.exe: + "/WTWTLW.exe": - when: - bit: 32 os: windows store: steam - /WTWTLW.x86: + "/WTWTLW.x86": - when: - bit: 64 os: linux store: steam - /WTWTLW_64.exe: + "/WTWTLW_64.exe": - when: - bit: 64 os: windows @@ -620858,9 +622555,9 @@ Where the Water Tastes Like Wine: - config steam: id: 447120 -'Where the Water Tastes Like Wine: Fireside Chats': +"Where the Water Tastes Like Wine: Fireside Chats": files: - /AppData/LocalLow/Dim Bulb Games/WheretheWaterTastesLikeWine/WTWTLWFC-Options.options: + "/AppData/LocalLow/Dim Bulb Games/WheretheWaterTastesLikeWine/WTWTLWFC-Options.options": tags: - config when: @@ -620868,26 +622565,26 @@ Where the Water Tastes Like Wine: installDir: Where The Water Tastes Like Wine - Fireside Chats: {} launch: - /Fireside Chats Linux.x86: + "/Fireside Chats Linux.x86": - when: - bit: 32 os: linux store: steam - /Fireside Chats Linux.x86_64: + "/Fireside Chats Linux.x86_64": - when: - bit: 64 os: linux store: steam - /Fireside Chats Mac.app/Contents/MacOS/Fireside Chats Mac: + "/Fireside Chats Mac.app/Contents/MacOS/Fireside Chats Mac": - when: - os: mac store: steam - /Fireside Chats Win32.exe: + "/Fireside Chats Win32.exe": - when: - bit: 32 os: windows store: steam - /Fireside Chats Win64.exe: + "/Fireside Chats Win64.exe": - when: - bit: 64 os: windows @@ -620898,122 +622595,122 @@ Where the Water Tastes Like Wine: - config steam: id: 947120 -Where's Baby: +"Where's Baby": installDir: - Where's Baby: {} + "Where's Baby": {} launch: - /WheresBaby.app: + "/WheresBaby.app": - when: - os: mac store: steam - /WheresBaby.exe: + "/WheresBaby.exe": - when: - os: windows store: steam steam: id: 895610 -Where's My Helmet?: +"Where's My Helmet?": installDir: Steam: {} launch: - /where's32.exe: + "/where's32.exe": - when: - bit: 32 os: windows store: steam - /where's64.exe: + "/where's64.exe": - when: - bit: 64 os: windows store: steam steam: id: 470450 -Where's My Mommy?: +"Where's My Mommy?": installDir: - Where's My Mommy: {} + "Where's My Mommy": {} launch: - /WMM.app: + "/WMM.app": - when: - os: mac store: steam - /WMM.exe: + "/WMM.exe": - when: - os: windows store: steam - /WMM.x86: + "/WMM.x86": - when: - bit: 32 os: linux store: steam - /WMM.x86_64: + "/WMM.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 423610 -Where's My What?: +"Where's My What?": installDir: - Where's My What: {} + "Where's My What": {} launch: - /WheresMyWhat.exe: + "/WheresMyWhat.exe": - when: - store: steam registry: - 'HKEY_CURRENT_USER/SOFTWARE/EnsenaSoft, S.A. de C.V./Wheres My What': + "HKEY_CURRENT_USER/SOFTWARE/EnsenaSoft, S.A. de C.V./Wheres My What": tags: - config - save steam: id: 531860 -Where's Phantom Thief: +"Where's Phantom Thief": installDir: - WHERE'S PHANTOM THIEF: {} + "WHERE'S PHANTOM THIEF": {} launch: - /WHERE'S PHANTOM THIEF.app: + "/WHERE'S PHANTOM THIEF.app": - when: - os: mac store: steam - /WHERE'S PHANTOM THIEF.exe: + "/WHERE'S PHANTOM THIEF.exe": - when: - os: windows store: steam steam: id: 709520 -Where's Waldo? The Fantastic Journey: +"Where's Waldo? The Fantastic Journey": files: - /Ludia/Waldo: + "/Ludia/Waldo": tags: - config - save when: - os: windows -Where's the Fck*ng Light - VR: +"Where's the Fck*ng Light - VR": steam: id: 542360 WhiTaers: installDir: WhiTaers: {} launch: - /WhiTaers-win.exe: + "/WhiTaers-win.exe": - when: - os: windows store: steam - /WhiTaers.app: + "/WhiTaers.app": - when: - os: mac store: steam steam: id: 714130 -'WhiTaers: Gongren Edition': +"WhiTaers: Gongren Edition": installDir: WhiTaers Gongren Edition: {} launch: - /WhiTaers_Gongren-win.exe: + "/WhiTaers_Gongren-win.exe": - when: - os: windows store: steam - /WhiTaers_Gongren.app: + "/WhiTaers_Gongren.app": - when: - os: mac store: steam @@ -621025,11 +622722,11 @@ Which Way Out: Whiffle Blasters: steam: id: 1035570 -'Whigs & Tories: American Revolution': +"Whigs & Tories: American Revolution": installDir: Prime & Load: {} launch: - /WaT.exe: + "/WaT.exe": - when: - os: windows store: steam @@ -621039,24 +622736,24 @@ While I Sleep I Am Debug: installDir: While I Sleep I am Debug: {} launch: - /WISIAD_v01_07_OSX.app: + "/WISIAD_v01_07_OSX.app": - when: - os: mac store: steam - /WISIAD_v01_07_PC.exe: + "/WISIAD_v01_07_PC.exe": - when: - os: windows store: steam steam: id: 777870 -'While True: learn()': +"While True: learn()": files: - /Saves: + "/Saves": tags: - save when: - os: windows - /userdata//619150/remote: + "/userdata//619150/remote": tags: - save when: @@ -621066,28 +622763,28 @@ While I Sleep I Am Debug: installDir: wtl: {} launch: - /wtl.app: + "/wtl.app": - when: - os: mac store: steam - /wtl.exe: + "/wtl.exe": - when: - os: windows store: steam - /wtl.x86: + "/wtl.x86": - arguments: LANG=C %command% when: - bit: 32 os: linux store: steam - /wtl.x86_64: + "/wtl.x86_64": - arguments: LANG=C %command% when: - bit: 64 os: linux store: steam registry: - 'HKEY_CURRENT_USER/Software/Luden.io/while True: learn()': + "HKEY_CURRENT_USER/Software/Luden.io/while True: learn()": tags: - config steam: @@ -621096,7 +622793,7 @@ While You Are Downloading: installDir: While you are Downloading: {} launch: - /WhileYouAreDownloading.exe: + "/WhileYouAreDownloading.exe": - when: - bit: 64 os: windows @@ -621107,7 +622804,7 @@ Whimsical Quest: installDir: Whimsical Quest: {} launch: - /WhimsicalQuest.exe: + "/WhimsicalQuest.exe": - when: - os: windows store: steam @@ -621117,7 +622814,7 @@ Whimsy: installDir: Whimsy: {} launch: - /Whimsy/whimsy.exe: + "/Whimsy/whimsy.exe": - when: - os: windows store: steam @@ -621130,16 +622827,16 @@ Whip! Whip!: installDir: WhipWhip: {} launch: - /macos_content/whipwhip.app: + "/macos_content/whipwhip.app": - when: - os: mac store: steam - /windows_content/whipwhip.exe: + "/windows_content/whipwhip.exe": - when: - bit: 32 os: windows store: steam - /windows_content/whipwhip64.exe: + "/windows_content/whipwhip64.exe": - when: - bit: 64 os: windows @@ -621150,7 +622847,7 @@ Whiplash - Crash Valley: installDir: Whiplash - Crash Valley: {} launch: - /Whiplash_KA1315.exe: + "/Whiplash_KA1315.exe": - when: - os: windows store: steam @@ -621160,7 +622857,7 @@ Whipseey and the Lost Atlas: installDir: Whipseey and the Lost Atlas: {} launch: - /Whipseey.exe: + "/Whipseey.exe": - when: - os: windows store: steam @@ -621170,7 +622867,7 @@ Whirlpool: installDir: Whirlpool: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -621180,7 +622877,7 @@ Whirlygig: installDir: Whirlygig: {} launch: - /Whirlygig.exe: + "/Whirlygig.exe": - when: - os: windows store: steam @@ -621190,22 +622887,22 @@ Whiskered Away: installDir: Whiskered Away: {} launch: - /Whiskered Away/Whiskered Away.exe: + "/Whiskered Away/Whiskered Away.exe": - when: - os: windows store: steam - workingDir: /Whiskered Away + workingDir: "/Whiskered Away" steam: id: 890930 -'Whiskey & Zombies: The Great Southern Zombie Escape': +"Whiskey & Zombies: The Great Southern Zombie Escape": installDir: WhiskeyAndZombies: {} launch: - /WnZ.app/Contents/MacOS/WnZ: + "/WnZ.app/Contents/MacOS/WnZ": - when: - os: mac store: steam - /WnZ.exe: + "/WnZ.exe": - when: - os: windows store: steam @@ -621215,46 +622912,46 @@ Whisper of a Rose: installDir: Whisper of a Rose: {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: id: 326730 -'Whispered Secrets: Golden Silence': +"Whispered Secrets: Golden Silence": installDir: - Whispered Secrets Golden Silence Collector's Edition: {} + "Whispered Secrets Golden Silence Collector's Edition": {} launch: - /WS_GoldenSilence_CE.exe: + "/WS_GoldenSilence_CE.exe": - when: - os: windows store: steam steam: id: 896980 -'Whispered Secrets: Into the Beyond': +"Whispered Secrets: Into the Beyond": installDir: - Whispered Secrets Into the Beyond Collector's Edition: {} + "Whispered Secrets Into the Beyond Collector's Edition": {} launch: - /WS_IntoTheBeyond_CE.exe: + "/WS_IntoTheBeyond_CE.exe": - when: - os: windows store: steam steam: id: 669040 -'Whispered Secrets: Into the Wind': +"Whispered Secrets: Into the Wind": installDir: - Whispered Secrets Into the Wind Collector's Edition: {} + "Whispered Secrets Into the Wind Collector's Edition": {} launch: - /WS_IntoTheWind_CE.exe: + "/WS_IntoTheWind_CE.exe": - when: - os: windows store: steam steam: id: 804990 -'Whispered Secrets: The Story of Tideville': +"Whispered Secrets: The Story of Tideville": installDir: - Whispered Secrets The Story of Tideville Collector's Edition: {} + "Whispered Secrets The Story of Tideville Collector's Edition": {} launch: - /WS_TheStoryOfTideville.exe: + "/WS_TheStoryOfTideville.exe": - when: - store: steam steam: @@ -621263,7 +622960,7 @@ Whispering Flames: installDir: Whispering Flames: {} launch: - /Whispering_Flames.exe: + "/Whispering_Flames.exe": - when: - os: windows store: steam @@ -621271,7 +622968,7 @@ Whispering Flames: id: 896500 Whispering Willows: files: - /unity3d/Nightlight Interactive/Whispering Willows/prefs: + "/unity3d/Nightlight Interactive/Whispering Willows/prefs": tags: - config - save @@ -621282,20 +622979,20 @@ Whispering Willows: installDir: WhisperingWillows: {} launch: - /WhisperingWillows.app: + "/WhisperingWillows.app": - when: - os: mac store: steam - /WhisperingWillows.exe: + "/WhisperingWillows.exe": - when: - os: windows store: steam - /WhisperingWillows.x86: + "/WhisperingWillows.x86": - when: - bit: 32 os: linux store: steam - /WhisperingWillows.x86_64: + "/WhisperingWillows.x86_64": - when: - bit: 64 os: linux @@ -621315,17 +623012,17 @@ Whispers From The Rift: id: 1099900 Whispers of a Machine: files: - /acsetup.cfg: + "/acsetup.cfg": tags: - config when: - os: windows - /Saved Games/Whispers of a Machine/agssave.*: + "/Saved Games/Whispers of a Machine/agssave.*": tags: - save when: - os: windows - /Saved Games/Whispers of a Machine/user.cfg: + "/Saved Games/Whispers of a Machine/user.cfg": tags: - config when: @@ -621335,27 +623032,27 @@ Whispers of a Machine: installDir: Whispers of a Machine: {} launch: - /WOAM.app: + "/WOAM.app": - when: - os: mac store: steam - /Whispers.exe: + "/Whispers.exe": - when: - os: windows store: steam steam: id: 631570 -'Whispers: Last Hope': +"Whispers: Last Hope": steam: id: 581700 -'White Day 2: The Flower That Tells Lies': +"White Day 2: The Flower That Tells Lies": files: - /AppData/Local/WD/Saved/SaveGames: + "/AppData/Local/WD/Saved/SaveGames": tags: - config when: - os: windows - /AppData/Local/WD/Saved/SaveGames/0: + "/AppData/Local/WD/Saved/SaveGames/0": tags: - save when: @@ -621363,21 +623060,21 @@ Whispers of a Machine: installDir: White Day2 The Flower That Tells Lies: {} launch: - /WD.exe: + "/WD.exe": - when: - bit: 64 os: windows store: steam steam: id: 2078040 -'White Day VR: The Courage Test': +"White Day VR: The Courage Test": installDir: White Day VR Courage Test: {} steam: id: 1442650 -'White Day: A Labyrinth Named School': +"White Day: A Labyrinth Named School": files: - /AppData/LocalLow/SONNORI/White Day_a labyrinth named school: + "/AppData/LocalLow/SONNORI/White Day_a labyrinth named school": tags: - save when: @@ -621385,13 +623082,13 @@ Whispers of a Machine: installDir: White Day a labyrinth named school: {} launch: - /WhiteDay.exe: + "/WhiteDay.exe": - when: - bit: 64 os: windows store: steam registry: - 'HKEY_CURRENT_USER/Software/SONNORI/White Day:a labyrinth named school': + "HKEY_CURRENT_USER/Software/SONNORI/White Day:a labyrinth named school": tags: - config steam: @@ -621400,7 +623097,7 @@ White Dove 白雀: installDir: White Dove 白雀: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: @@ -621409,7 +623106,7 @@ White Haven Mysteries: installDir: White Haven Mysteries: {} launch: - /WhiteHaven.exe: + "/WhiteHaven.exe": - when: - store: steam steam: @@ -621418,7 +623115,7 @@ White Mirror: installDir: White Mirror: {} launch: - /White Mirror.exe: + "/White Mirror.exe": - when: - os: windows store: steam @@ -621426,12 +623123,12 @@ White Mirror: id: 428630 White Night: files: - /Bin/Win32/local: + "/Bin/Win32/local": tags: - config when: - os: windows - /Bin/Win32/shared: + "/Bin/Win32/shared": tags: - save when: @@ -621439,26 +623136,26 @@ White Night: installDir: White Night: {} launch: - /Bin/Linux32/WNight: + "/Bin/Linux32/WNight": - when: - os: linux store: steam - workingDir: /Bin/Linux32 - /Bin/Mac32/WNight.app/Contents/MacOS/oWNightGameMerged: + workingDir: "/Bin/Linux32" + "/Bin/Mac32/WNight.app/Contents/MacOS/oWNightGameMerged": - when: - os: mac store: steam - workingDir: /Bin - /Bin/Win32/WNight.exe: + workingDir: "/Bin" + "/Bin/Win32/WNight.exe": - when: - os: windows store: steam - workingDir: /Bin + workingDir: "/Bin" steam: id: 301560 White Noise 2: files: - /unity3d/Milkstone Studios/WhiteNoise2: + "/unity3d/Milkstone Studios/WhiteNoise2": tags: - config when: @@ -621466,7 +623163,7 @@ White Noise 2: installDir: White Noise 2: {} launch: - /WhiteNoise2: + "/WhiteNoise2": - when: - os: linux store: steam @@ -621474,7 +623171,7 @@ White Noise 2: when: - os: linux store: steam - - arguments: '-disableController' + - arguments: "-disableController" when: - os: linux store: steam @@ -621482,11 +623179,11 @@ White Noise 2: when: - os: linux store: steam - /WhiteNoise2.app: + "/WhiteNoise2.app": - when: - os: mac store: steam - /WhiteNoise2.exe: + "/WhiteNoise2.exe": - when: - os: windows store: steam @@ -621494,7 +623191,7 @@ White Noise 2: id: 503350 White Noise Online: files: - /userdata//293860/remote: + "/userdata//293860/remote": tags: - config - save @@ -621504,15 +623201,15 @@ White Noise Online: installDir: White Noise Online: {} launch: - /WhiteNoiseOnline: + "/WhiteNoiseOnline": - when: - os: linux store: steam - /WhiteNoiseOnline.app: + "/WhiteNoiseOnline.app": - when: - os: mac store: steam - /WhiteNoiseOnline.exe: + "/WhiteNoiseOnline.exe": - when: - os: windows store: steam @@ -621525,19 +623222,19 @@ White Pearl: installDir: White Pearl: {} launch: - /Game.exe: - - arguments: '--in-process-gpu' + "/Game.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam steam: id: 761280 -'White Power: Pure Voltage': +"White Power: Pure Voltage": steam: id: 749740 White Shadows: files: - /AppData/LocalLow/Monokel/WhiteShadows/white_shadows.data: + "/AppData/LocalLow/Monokel/WhiteShadows/white_shadows.data": tags: - save when: @@ -621547,7 +623244,7 @@ White Shadows: installDir: White Shadows: {} launch: - /WhiteShadows.exe: + "/WhiteShadows.exe": - when: - os: windows store: steam @@ -621561,7 +623258,7 @@ White Wings: installDir: White Wings: {} launch: - /White_Wings.exe: + "/White_Wings.exe": - when: - os: windows store: steam @@ -621571,11 +623268,11 @@ WhiteBird 白鸟: installDir: WhiteBird: {} launch: - /WhiteBird.exe: + "/WhiteBird.exe": - when: - os: windows store: steam - /WhiteBirdOs.app: + "/WhiteBirdOs.app": - when: - os: mac store: steam @@ -621585,8 +623282,8 @@ WhiteLily 1:丽丽公主: installDir: Princess Lili: {} launch: - /PrincessLili.exe: - - arguments: '--in-process-gpu' + "/PrincessLili.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam @@ -621596,8 +623293,8 @@ WhiteLily 2:梦醒少女: installDir: Waking up Girl: {} launch: - /WakeUpGirl.exe: - - arguments: '--in-process-gpu' + "/WakeUpGirl.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam @@ -621607,7 +623304,7 @@ Whitetail Challenge: installDir: Whitetail Challenge: {} launch: - /Whitetail_Challenge.exe: + "/Whitetail_Challenge.exe": - when: - os: windows store: steam @@ -621617,37 +623314,40 @@ Whitevale Defender: installDir: Whitevale Defender: {} launch: - /wvd.exe: + "/wvd.exe": - when: - os: windows store: steam steam: id: 841320 -'Who Am I: The Tale of Dorothy': +"Who Am I: The Tale of Dorothy": installDir: Who Am I The Tale of Dorothy: {} launch: - /mac/Who Am I.app/Contents/MacOS/Who Am I: + "/mac/Who Am I.app/Contents/MacOS/Who Am I": - when: - os: mac store: steam - /windows/Who Am I.exe: + "/windows/Who Am I.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam steam: id: 821790 -'Who Are You, Mr. Cooper?': +"Who Are You, Mr. Cooper?": installDir: - 'Who Are You, Mr. Cooper': {} + "Who Are You, Mr. Cooper": {} launch: - /waymc: + "/waymc": - when: - bit: 64 os: linux store: steam - /waymc.exe: + "/waymc.exe": - when: - os: windows store: steam @@ -621661,22 +623361,22 @@ Who Did It?: id: 2430280 Who Is Mike - A Visual Novel: files: - /game/saves/*.save: + "/game/saves/*.save": tags: - save when: - os: windows - /game/saves/persistent: + "/game/saves/persistent": tags: - config when: - os: windows - /RenPy/Who is Mike-1398140576/*.save: + "/RenPy/Who is Mike-1398140576/*.save": tags: - save when: - os: windows - /RenPy/Who is Mike-1398140576/persistent: + "/RenPy/Who is Mike-1398140576/persistent": tags: - config when: @@ -621684,15 +623384,15 @@ Who Is Mike - A Visual Novel: installDir: Who Is Mike: {} launch: - /WhoisMike.app: + "/WhoisMike.app": - when: - os: mac store: steam - /WhoisMike.exe: + "/WhoisMike.exe": - when: - os: windows store: steam - /WhoisMike.sh: + "/WhoisMike.sh": - when: - os: linux store: steam @@ -621702,7 +623402,7 @@ Who Is This Man: installDir: Who Is This Man: {} launch: - /windows_content/Who Is This Man.exe: + "/windows_content/Who Is This Man.exe": - when: - store: steam steam: @@ -621711,7 +623411,7 @@ Who Is You: installDir: Who Is You: {} launch: - /WhoIsYou.exe: + "/WhoIsYou.exe": - when: - os: windows store: steam @@ -621721,7 +623421,7 @@ Who Must Die: installDir: WhoMustDie: {} launch: - /WMD.exe: + "/WMD.exe": - when: - bit: 64 os: windows @@ -621730,12 +623430,12 @@ Who Must Die: id: 458490 Who Needs a Hero?: files: - /AppData/LocalLow/Almost a Hero/Who Needs a Hero_/*-v1: + "/AppData/LocalLow/Almost a Hero/Who Needs a Hero_/*-v1": tags: - save when: - os: windows - /AppData/LocalLow/Almost a Hero/Who Needs a Hero_/*-v2: + "/AppData/LocalLow/Almost a Hero/Who Needs a Hero_/*-v2": tags: - save when: @@ -621743,7 +623443,7 @@ Who Needs a Hero?: installDir: Who Needs a Hero: {} launch: - /Who Needs a Hero.exe: + "/Who Needs a Hero.exe": - when: - os: windows store: steam @@ -621753,19 +623453,19 @@ Who Wants To Be A Millionaire (2020): installDir: Who Wants To Be A Millionaire: {} launch: - /WWTBAM.app: + "/WWTBAM.app": - when: - os: mac store: steam - /WWTBAM.exe: + "/WWTBAM.exe": - when: - os: windows store: steam steam: id: 1356240 -'Who Wants To Be A Millionaire: 3rd Edition': +"Who Wants To Be A Millionaire: 3rd Edition": files: - /Millionaire 3E Scores: + "/Millionaire 3E Scores": tags: - save when: @@ -621777,7 +623477,7 @@ Who Wants to Be a Millionaire? Special Editions: installDir: WWTBAM: {} launch: - /Binaries/Win32/ShippingPC-WWTBAMGame.exe: + "/Binaries/Win32/ShippingPC-WWTBAMGame.exe": - when: - store: steam steam: @@ -621786,35 +623486,35 @@ Who wants to strip this babe? Hentai Streamer Girl: installDir: Who wants to strip this babe Hentai Streamer Girl: {} launch: - /HStreamerLinux.x86_64: + "/HStreamerLinux.x86_64": - when: - os: linux store: steam - /Who wants to strip this Babe Streamer Girl.exe: + "/Who wants to strip this Babe Streamer Girl.exe": - when: - os: windows store: steam steam: id: 1076210 -Who's Lila: +"Who's Lila": files: - /Documents/My Games/WhosLila/Saves: + "/Documents/My Games/WhosLila/Saves": tags: - save when: - os: windows installDir: - Who's Lila: {} + "Who's Lila": {} launch: - /WhosLila.exe: + "/WhosLila.exe": - when: - os: windows store: steam steam: id: 1697700 -Who's That Flying?!: +"Who's That Flying?!": files: - /Steam/userdata//57700/remote: + "/Steam/userdata//57700/remote": tags: - save when: @@ -621822,24 +623522,24 @@ Who's That Flying?!: installDir: whos that flying: {} launch: - /wtf.exe: + "/wtf.exe": - when: - store: steam steam: id: 57700 -Who's Your Daddy: +"Who's Your Daddy": files: - /.config/unity3d/Joe Williams/WhosYourDaddy/prefs: + "/.config/unity3d/Joe Williams/WhosYourDaddy/prefs": tags: - config when: - os: linux - 'C:/Users/[User''s Name]/AppData/LocalLow/Evil Tortilla Games/WhosYourDaddy/SAVEFILES': + "C:/Users/[User's Name]/AppData/LocalLow/Evil Tortilla Games/WhosYourDaddy/SAVEFILES": tags: - config when: - os: windows - 'C:/Users/[User''s Name]/AppData/LocalLow/Evil Tortilla Games/WhosYourDaddy/Unity/[Random Numbers]/Analytics': + "C:/Users/[User's Name]/AppData/LocalLow/Evil Tortilla Games/WhosYourDaddy/Unity/[Random Numbers]/Analytics": tags: - config when: @@ -621848,18 +623548,18 @@ Who's Your Daddy: Whos Your Daddy: {} steam: id: 427730 -Who's Your Santa !?: +"Who's Your Santa !?": steam: id: 633370 -Who's in the Box?: +"Who's in the Box?": installDir: - Who's in the Box: {} + "Who's in the Box": {} launch: - /Who's in the Box.app/Contents/MacOS/Who's in the Box: + "/Who's in the Box.app/Contents/MacOS/Who's in the Box": - when: - os: mac store: steam - /Who's in the Box.exe: + "/Who's in the Box.exe": - when: - os: windows store: steam @@ -621867,12 +623567,12 @@ Who's in the Box?: id: 823710 Why Am I Dead At Sea: files: - /userdata//359400/remote/GameConfig: + "/userdata//359400/remote/GameConfig": tags: - config when: - store: steam - /userdata//359400/remote/SaveFile*: + "/userdata//359400/remote/SaveFile*": tags: - save when: @@ -621880,11 +623580,11 @@ Why Am I Dead At Sea: installDir: Why Am I Dead At Sea: {} launch: - /WhyAmIDeadAtSea.app: + "/WhyAmIDeadAtSea.app": - when: - os: mac store: steam - /WhyAmIDeadAtSea.exe: + "/WhyAmIDeadAtSea.exe": - when: - os: windows store: steam @@ -621894,7 +623594,7 @@ Why Chicken? Why?: installDir: Why Chicken Why: {} launch: - /WhyChickenWhySteam.exe: + "/WhyChickenWhySteam.exe": - when: - os: windows store: steam @@ -621904,15 +623604,15 @@ Why Is There a Girl in My House?!: installDir: Why Is There A Girl In My House!: {} launch: - /WITAGIMH.app: + "/WITAGIMH.app": - when: - os: mac store: steam - /WITAGIMH.exe: + "/WITAGIMH.exe": - when: - os: windows store: steam - /WITAGIMH.sh: + "/WITAGIMH.sh": - when: - os: linux store: steam @@ -621924,14 +623624,14 @@ Why Neon Lights Again?: Why So Evil: steam: id: 331710 -'Why So Evil 2: Dystopia': +"Why So Evil 2: Dystopia": steam: id: 354850 Why War?: installDir: Why War: {} launch: - /WhyWar.exe: + "/WhyWar.exe": - when: - os: windows store: steam @@ -621941,7 +623641,7 @@ Why is the Princess in a Magic Forest?!: installDir: Why is the Princess in a Magic Forest: {} launch: - /Binaries/Win32/UDK.exe: + "/Binaries/Win32/UDK.exe": - when: - bit: 32 os: windows @@ -621952,7 +623652,7 @@ Wicca: installDir: Timemelters: {} launch: - /Timemelters.exe: + "/Timemelters.exe": - when: - bit: 64 os: windows @@ -621963,7 +623663,7 @@ Wicce: installDir: Wicce: {} launch: - /Wicce.exe: + "/Wicce.exe": - when: - os: windows store: steam @@ -621973,11 +623673,11 @@ Wick: installDir: Wick: {} launch: - /Wick.app: + "/Wick.app": - when: - os: mac store: steam - /Wick.exe: + "/Wick.exe": - when: - os: windows store: steam @@ -621991,15 +623691,15 @@ Wicked Witches: installDir: Wicked Witches: {} launch: - /WickedWitches.app: + "/WickedWitches.app": - when: - os: mac store: steam - /WickedWitches.exe: + "/WickedWitches.exe": - when: - os: windows store: steam - /WickedWitches.x86_64: + "/WickedWitches.x86_64": - when: - os: linux store: steam @@ -622007,7 +623707,7 @@ Wicked Witches: id: 411630 Wickland: files: - /UDKGame/Config: + "/UDKGame/Config": tags: - config when: @@ -622015,7 +623715,7 @@ Wickland: installDir: Wickland: {} launch: - /Binaries/Win32/Wickland.exe: + "/Binaries/Win32/Wickland.exe": - when: - os: windows store: steam @@ -622023,12 +623723,12 @@ Wickland: id: 321260 Wide Ocean Big Jacket: files: - /unity3d/Turnfollow/Wide Ocean Big Jacket: + "/unity3d/Turnfollow/Wide Ocean Big Jacket": tags: - save when: - os: linux - /unity3d/Turnfollow/Wide Ocean Big Jacket/prefs: + "/unity3d/Turnfollow/Wide Ocean Big Jacket/prefs": tags: - config when: @@ -622036,11 +623736,11 @@ Wide Ocean Big Jacket: installDir: Wide Ocean Big Jacket: {} launch: - /WideOceanBigJacket.app/Contents/MacOS/Wide Ocean Big Jacket: + "/WideOceanBigJacket.app/Contents/MacOS/Wide Ocean Big Jacket": - when: - os: mac store: steam - /wide_ocean_big_jacket_20200730_win/Wide Ocean Big Jacket.exe: + "/wide_ocean_big_jacket_20200730_win/Wide Ocean Big Jacket.exe": - when: - os: windows store: steam @@ -622048,22 +623748,22 @@ Wide Ocean Big Jacket: id: 1198040 Widelands: files: - /.widelands: + "/.widelands": tags: - config when: - os: windows - /.widelands/save: + "/.widelands/save": tags: - save when: - os: windows - /widelands: + "/widelands": tags: - config when: - os: linux - /widelands: + "/widelands": tags: - save when: @@ -622072,27 +623772,27 @@ Widget Satchel: installDir: Widget Satchel: {} launch: - /Widget Satchel.app: + "/Widget Satchel.app": - when: - os: mac store: steam - /Widget Satchel.exe: + "/Widget Satchel.exe": - when: - bit: 64 os: windows store: steam - /Widget Satchel.x86_64: + "/Widget Satchel.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 890480 -Widower's Sky: +"Widower's Sky": installDir: - Widower's Sky: {} + "Widower's Sky": {} launch: - /wsAug25-2019.exe: + "/wsAug25-2019.exe": - when: - os: windows store: steam @@ -622102,7 +623802,7 @@ Wienne: installDir: Wienne: {} launch: - /Wienne.exe: + "/Wienne.exe": - when: - os: windows store: steam @@ -622112,13 +623812,13 @@ Wife Quest: installDir: Wife Quest: {} launch: - /Wife Quest.exe: + "/Wife Quest.exe": - when: - os: windows store: steam steam: id: 1554600 -Wife's Derailment: +"Wife's Derailment": steam: id: 1161260 Wigged Out: @@ -622126,12 +623826,12 @@ Wigged Out: id: 1176060 Wigmund. The Return of the Hidden Knights: files: - /RPG/Saved/Config/WindowsNoEditor: + "/RPG/Saved/Config/WindowsNoEditor": tags: - save when: - os: windows - /RPG/Saved/SaveGames: + "/RPG/Saved/SaveGames": tags: - config when: @@ -622141,7 +623841,7 @@ Wigmund. The Return of the Hidden Knights: installDir: Wigmund: {} launch: - /RPG.exe: + "/RPG.exe": - when: - bit: 64 os: windows @@ -622152,7 +623852,7 @@ Wil: installDir: WIL: {} launch: - /WIL.exe: + "/WIL.exe": - when: - os: windows store: steam @@ -622162,15 +623862,15 @@ Wild Animal Racing: installDir: Wild Animal Racing: {} launch: - /Wild Animal Racing.exe: + "/Wild Animal Racing.exe": - when: - os: windows store: steam - /WildAnimalRacing.app: + "/WildAnimalRacing.app": - when: - os: mac store: steam - /WildAnimalRacing.x86: + "/WildAnimalRacing.x86": - when: - os: linux store: steam @@ -622180,11 +623880,11 @@ Wild Animal Sports Day: installDir: Wild Animal Sports: {} launch: - /WildAnimalSports.app: + "/WildAnimalSports.app": - when: - os: mac store: steam - /WildAnimalSports.exe: + "/WildAnimalSports.exe": - when: - os: windows store: steam @@ -622194,11 +623894,11 @@ Wild Animals - Animated Jigsaws: installDir: Wild_Animals_Animated_Jigsaws: {} launch: - /Wild_Animals_Animated_Jigsaws.app: + "/Wild_Animals_Animated_Jigsaws.app": - when: - os: mac store: steam - /Wild_Animals_Animated_Jigsaws.exe: + "/Wild_Animals_Animated_Jigsaws.exe": - when: - os: windows store: steam @@ -622208,20 +623908,20 @@ Wild Arena: installDir: Wild Arena: {} launch: - /WildArena1.0.exe: + "/WildArena1.0.exe": - when: - os: windows store: steam steam: id: 533280 -'Wild Buster: Heroes of Titan': +"Wild Buster: Heroes of Titan": steam: id: 681860 Wild Cats of Wasteland: installDir: Wild Cats of Wasteland: {} launch: - /WildCats.exe: + "/WildCats.exe": - when: - os: windows store: steam @@ -622236,15 +623936,15 @@ Wild Frontera: installDir: Wild Frontera: {} launch: - /WildFrontera.app: + "/WildFrontera.app": - when: - os: mac store: steam - /WildFrontera.exe: + "/WildFrontera.exe": - when: - os: windows store: steam - /WildFrontera.x86: + "/WildFrontera.x86": - when: - os: linux store: steam @@ -622259,11 +623959,11 @@ Wild Glory: installDir: Wild Glory: {} launch: - /Wild Glory: + "/Wild Glory": - when: - os: linux store: steam - /Wild Glory.exe: + "/Wild Glory.exe": - when: - os: windows store: steam @@ -622274,7 +623974,7 @@ Wild Goo Chase: id: 662130 Wild Guns Reloaded: files: - /userdata//585910/remote/savedata.dat: + "/userdata//585910/remote/savedata.dat": tags: - save when: @@ -622282,7 +623982,7 @@ Wild Guns Reloaded: installDir: Wild Guns Reloaded: {} launch: - /WildGunsReloaded.exe: + "/WildGunsReloaded.exe": - when: - bit: 64 os: windows @@ -622295,7 +623995,7 @@ Wild Guns Reloaded: id: 585910 Wild Hearts: files: - /Documents/KoeiTecmo/WILD HEARTS: + "/Documents/KoeiTecmo/WILD HEARTS": tags: - save when: @@ -622308,20 +624008,20 @@ Wild Island Quest: installDir: Wild_Island_Quest: {} launch: - /WildIslandQuest.app/Contents/MacOS/sdl-instead: + "/WildIslandQuest.app/Contents/MacOS/sdl-instead": - when: - os: mac store: steam - /wiq: + "/wiq": - when: - os: linux store: steam - /wiq-instead.exe: + "/wiq-instead.exe": - when: - bit: 32 os: windows store: steam - - arguments: '-fullscreen -standalone -game wild_island_quest' + - arguments: "-fullscreen -standalone -game wild_island_quest" when: - bit: 64 os: windows @@ -622335,7 +624035,7 @@ Wild Mage - Phantom Twilight: installDir: Wild Mage: {} launch: - /IOE_Beta.exe: + "/IOE_Beta.exe": - when: - bit: 64 os: windows @@ -622344,7 +624044,7 @@ Wild Mage - Phantom Twilight: id: 771770 Wild Metal Country: files: - /WinEnv/Configs/FrontEnd/PLAYERS: + "/WinEnv/Configs/FrontEnd/PLAYERS": tags: - save when: @@ -622352,10 +624052,10 @@ Wild Metal Country: installDir: Wild Metal Country: {} launch: - /winenv/winenv.exe: + "/winenv/winenv.exe": - when: - store: steam - workingDir: /winenv + workingDir: "/winenv" registry: HKEY_LOCAL_MACHINE/SOFTWARE/WOW6432Node/DMA Design/Wild Metal Country/3DMA Settings: tags: @@ -622365,14 +624065,14 @@ Wild Metal Country: Wild RTS: steam: id: 753140 -'Wild Ranger: Gun X Dragon': +"Wild Ranger: Gun X Dragon": steam: id: 991450 Wild Ride: installDir: Wild Ride: {} launch: - /Wild Ride.exe: + "/Wild Ride.exe": - when: - os: windows store: steam @@ -622382,33 +624082,33 @@ Wild Romance: installDir: Wild Romance: {} launch: - /wild-romance.app: + "/wild-romance.app": - when: - os: mac store: steam - /wild-romance.exe: + "/wild-romance.exe": - when: - os: windows store: steam - /wild-romance.sh: + "/wild-romance.sh": - when: - os: linux store: steam steam: id: 493450 -'Wild Romance: Mofu Mofu Edition': +"Wild Romance: Mofu Mofu Edition": installDir: WildRomancePV: {} launch: - /WildRomancePV.app: + "/WildRomancePV.app": - when: - os: mac store: steam - /WildRomancePV.exe: + "/WildRomancePV.exe": - when: - os: windows store: steam - /WildRomancePV.sh: + "/WildRomancePV.sh": - when: - os: linux store: steam @@ -622418,32 +624118,35 @@ Wild Season: installDir: Wild Season: {} launch: - /Wild Season.app: + "/Wild Season.app": - when: - os: mac store: steam - /Wild Season.exe: + "/Wild Season.exe": - when: - bit: 32 os: windows store: steam - /Wild Season.x86: + - bit: 64 + os: windows + store: steam + "/Wild Season.x86": - when: - bit: 32 os: linux store: steam - /Wild Season.x86_64: + "/Wild Season.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 328220 -'Wild Terra 2: New Lands': +"Wild Terra 2: New Lands": installDir: Wild Terra 2: {} launch: - /Wild-Terra-2.exe: + "/Wild-Terra-2.exe": - when: - store: steam steam: @@ -622452,15 +624155,15 @@ Wild Terra Online: installDir: Wild Terra Online: {} launch: - /Wild-Terra: + "/Wild-Terra": - when: - os: linux store: steam - /Wild-Terra.app: + "/Wild-Terra.app": - when: - os: mac store: steam - /Wild-Terra.exe: + "/Wild-Terra.exe": - when: - os: windows store: steam @@ -622470,7 +624173,7 @@ Wild Unknown: installDir: Wild Unknown: {} launch: - /Wild_Unknown.exe: + "/Wild_Unknown.exe": - when: - os: windows store: steam @@ -622480,11 +624183,11 @@ Wild Warfare: installDir: Wild Warfare: {} launch: - /wild-warfare.app: + "/wild-warfare.app": - when: - os: mac store: steam - /wild-warfare.exe: + "/wild-warfare.exe": - when: - os: windows store: steam @@ -622496,7 +624199,7 @@ Wild West Dynasty: installDir: Wild West Dynasty: {} launch: - /wwd.exe: + "/wwd.exe": - when: - os: windows store: steam @@ -622506,27 +624209,27 @@ Wild West Online: installDir: Wild West Online: {} launch: - /Launcher.exe: - - arguments: '-steam -wwo' + "/Launcher.exe": + - arguments: "-steam -wwo" when: - bit: 64 os: windows store: steam steam: id: 743860 -'Wild West Saga:Idle Tycoon': +"Wild West Saga:Idle Tycoon": installDir: Wild West Saga: {} launch: - /wildwest.app/Contents/MacOS/wildwest: + "/wildwest.app/Contents/MacOS/wildwest": - when: - os: mac store: steam - /wildwest.exe: + "/wildwest.exe": - when: - os: windows store: steam - /wildwest.x86: + "/wildwest.x86": - when: - os: linux store: steam @@ -622541,7 +624244,7 @@ Wild West and Wizards: installDir: Wild West and Wizards: {} launch: - /WildWestWizards.exe: + "/WildWestWizards.exe": - when: - os: windows store: steam @@ -622551,7 +624254,7 @@ Wild Wet West: installDir: Wild Wet West: {} launch: - /Wild Wet West.exe: + "/Wild Wet West.exe": - when: - os: windows store: steam @@ -622561,7 +624264,7 @@ Wild Wolf: installDir: Wild Wolf: {} launch: - /Wild Wolf.exe: + "/Wild Wolf.exe": - when: - os: windows store: steam @@ -622571,14 +624274,14 @@ WildIsland: installDir: WildIsland: {} launch: - /wildisland32.exe: - - arguments: '-windowed' + "/wildisland32.exe": + - arguments: "-windowed" when: - bit: 32 os: windows store: steam - /wildisland64.exe: - - arguments: '-windowed' + "/wildisland64.exe": + - arguments: "-windowed" when: - bit: 64 os: windows @@ -622589,14 +624292,14 @@ WildKids: installDir: Wildkids: {} launch: - /WildKids.exe: + "/WildKids.exe": - when: - store: steam steam: id: 994790 WildStar: files: - /NCSOFT/WildStar: + "/NCSOFT/WildStar": tags: - config when: @@ -622604,7 +624307,7 @@ WildStar: installDir: WildStar: {} launch: - /Steam_WildStar.exe: + "/Steam_WildStar.exe": - when: - os: windows store: steam @@ -622614,11 +624317,11 @@ Wildbus: installDir: Wildbus: {} launch: - /Wildbus.app/Contents/MacOS/Wildbus: + "/Wildbus.app/Contents/MacOS/Wildbus": - when: - os: mac store: steam - /Wildbus.exe: + "/Wildbus.exe": - when: - os: windows store: steam @@ -622626,7 +624329,7 @@ Wildbus: id: 818360 Wildcat Gun Machine: files: - /AppData/LocalLow/Daedalic Entertainment GmbH/Wildcat Gun Machine/*.es3: + "/AppData/LocalLow/Daedalic Entertainment GmbH/Wildcat Gun Machine/*.es3": tags: - save when: @@ -622636,7 +624339,7 @@ Wildcat Gun Machine: installDir: Wildcat Gun Machine: {} launch: - /Wildcat Gun Machine.exe: + "/Wildcat Gun Machine.exe": - when: - os: windows store: steam @@ -622644,7 +624347,7 @@ Wildcat Gun Machine: id: 1288610 Wildermyth: files: - /players: + "/players": tags: - save when: @@ -622654,16 +624357,16 @@ Wildermyth: installDir: Wildermyth: {} launch: - /wildermyth: + "/wildermyth": - when: - bit: 64 os: linux store: steam - /wildermyth.app/Contents/MacOS/wildermyth: + "/wildermyth.app/Contents/MacOS/wildermyth": - when: - os: mac store: steam - /wildermyth.exe: + "/wildermyth.exe": - when: - bit: 64 os: windows @@ -622674,7 +624377,7 @@ Wildest of the Wild: installDir: Wildest of the Wild: {} launch: - /Wildest of the Wild.exe: + "/Wildest of the Wild.exe": - when: - bit: 64 os: windows @@ -622683,7 +624386,7 @@ Wildest of the Wild: id: 955530 Wildfire: files: - /wildfire: + "/wildfire": tags: - config - save @@ -622694,33 +624397,33 @@ Wildfire: installDir: Wildfire: {} launch: - /runner: + "/runner": - when: - os: linux store: steam - /wildfire.app/Contents/MacOS/Mac_Runner: + "/wildfire.app/Contents/MacOS/Mac_Runner": - when: - os: mac store: steam - /wildfire.exe: + "/wildfire.exe": - when: - os: windows store: steam steam: id: 431940 -'Wildfire: Ticket to Rock': +"Wildfire: Ticket to Rock": installDir: Wildfire - Ticket to Rock: {} launch: - /Wildfire - Ticket to Rock.app/Contents/MacOS/Wildfire - Ticket to Rock: + "/Wildfire - Ticket to Rock.app/Contents/MacOS/Wildfire - Ticket to Rock": - when: - os: mac store: steam - /Wildfire - Ticket to Rock.exe: + "/Wildfire - Ticket to Rock.exe": - when: - os: windows store: steam - /Wildfire - Ticket to Rock.sh: + "/Wildfire - Ticket to Rock.sh": - when: - os: linux store: steam @@ -622728,7 +624431,7 @@ Wildfire: id: 1519730 Wildfrost: files: - /AppData/LocalLow/Deadpan Games/Wildfrost: + "/AppData/LocalLow/Deadpan Games/Wildfrost": tags: - save when: @@ -622736,7 +624439,7 @@ Wildfrost: installDir: Wildfrost: {} launch: - /Wildfrost.exe: + "/Wildfrost.exe": - when: - os: windows store: steam @@ -622746,7 +624449,7 @@ Wildland: installDir: Wildland: {} launch: - /Wildland.exe: + "/Wildland.exe": - when: - os: windows store: steam @@ -622756,7 +624459,7 @@ Wildlife Camp: installDir: Wildlife Camp: {} launch: - /WildlifeCamp-Steam.exe: + "/WildlifeCamp-Steam.exe": - when: - os: windows store: steam @@ -622770,12 +624473,12 @@ Wildlife Park: installDir: Wildlife Park: {} launch: - /WildlifePark-STEAM-OSX.app/Contents/MacOS/WildlifePark-STEAM-OSX: + "/WildlifePark-STEAM-OSX.app/Contents/MacOS/WildlifePark-STEAM-OSX": - when: - os: mac store: steam - /WildlifePark-Steam.exe: - - arguments: '-console' + "/WildlifePark-Steam.exe": + - arguments: "-console" when: - os: windows store: steam @@ -622785,12 +624488,12 @@ Wildlife Park - Wild Creatures: installDir: Wildlife Park: {} launch: - /WildCreatures-STEAM-OSX.app/Contents/MacOS/WildCreatures-STEAM-OSX: + "/WildCreatures-STEAM-OSX.app/Contents/MacOS/WildCreatures-STEAM-OSX": - when: - os: mac store: steam - /WildCreatures-Steam.exe: - - arguments: '-console' + "/WildCreatures-Steam.exe": + - arguments: "-console" when: - os: windows store: steam @@ -622798,7 +624501,7 @@ Wildlife Park - Wild Creatures: id: 337970 Wildlife Park 2: files: - /settings: + "/settings": tags: - config when: @@ -622806,8 +624509,8 @@ Wildlife Park 2: installDir: Wildlife Park 2: {} launch: - /WLP2-Steam.exe: - - arguments: '-console' + "/WLP2-Steam.exe": + - arguments: "-console" when: - os: windows store: steam @@ -622817,8 +624520,8 @@ Wildlife Park 2 - Crazy Zoo: installDir: Wildlife Park 2: {} launch: - /WLP2Addon1-Steam.exe: - - arguments: '-console' + "/WLP2Addon1-Steam.exe": + - arguments: "-console" when: - os: windows store: steam @@ -622828,8 +624531,8 @@ Wildlife Park 2 - Dino World: installDir: Wildlife Park 2: {} launch: - /WLP2Addon5-Steam.exe: - - arguments: '-console' + "/WLP2Addon5-Steam.exe": + - arguments: "-console" when: - os: windows store: steam @@ -622839,8 +624542,8 @@ Wildlife Park 2 - Fantasy: installDir: Wildlife Park 2: {} launch: - /WLP2fantasy-Steam.exe: - - arguments: '-console' + "/WLP2fantasy-Steam.exe": + - arguments: "-console" when: - os: windows store: steam @@ -622850,8 +624553,8 @@ Wildlife Park 2 - Farm World: installDir: Wildlife Park 2: {} launch: - /WLP2Addon4-Steam.exe: - - arguments: '-console' + "/WLP2Addon4-Steam.exe": + - arguments: "-console" when: - store: steam steam: @@ -622860,8 +624563,8 @@ Wildlife Park 2 - Horses: installDir: Wildlife Park 2: {} launch: - /WLP2Addon2-Steam.exe: - - arguments: '-console' + "/WLP2Addon2-Steam.exe": + - arguments: "-console" when: - os: windows store: steam @@ -622871,8 +624574,8 @@ Wildlife Park 2 - Marine World: installDir: Wildlife Park 2: {} launch: - /WLP2Addon3-Steam.exe: - - arguments: '-console' + "/WLP2Addon3-Steam.exe": + - arguments: "-console" when: - os: windows store: steam @@ -622880,12 +624583,12 @@ Wildlife Park 2 - Marine World: id: 307900 Wildlife Park 3: files: - /bitComposer Games/Wildlife Park 3/Save: + "/bitComposer Games/Wildlife Park 3/Save": tags: - save when: - os: windows - /bitComposer Games/Wildlife Park 3/Setting: + "/bitComposer Games/Wildlife Park 3/Setting": tags: - config when: @@ -622893,8 +624596,8 @@ Wildlife Park 3: installDir: Wildlife Park 3: {} launch: - /WLP3-Steam.exe: - - arguments: '-console' + "/WLP3-Steam.exe": + - arguments: "-console" when: - os: windows store: steam @@ -622904,18 +624607,18 @@ Wildlife Park Gold Remastered: installDir: Wildlife Park Gold Remastered: {} launch: - /WildlifeParkGold-STEAM-Windows.exe: - - arguments: '-console' + "/WildlifeParkGold-STEAM-Windows.exe": + - arguments: "-console" when: - os: windows store: steam steam: id: 664120 -'Wildlife Tycoon: Venture Africa': +"Wildlife Tycoon: Venture Africa": installDir: Venture Africa: {} launch: - /Venture Africa.exe: + "/Venture Africa.exe": - when: - os: windows store: steam @@ -622926,19 +624629,19 @@ Wildlife VR: Wildlife VR: {} steam: id: 500140 -'Will Fight for Food: Super Actual Sellout: Game of the Hour': +"Will Fight for Food: Super Actual Sellout: Game of the Hour": installDir: Will Fight for Food: {} launch: - /WFF.exe: + "/WFF.exe": - when: - os: windows store: steam - /WFFF.app: + "/WFFF.app": - when: - os: mac store: steam - /wfff: + "/wfff": - when: - os: linux store: steam @@ -622948,7 +624651,7 @@ Will Glow the Wisp: installDir: Will Glow the Wisp: {} launch: - /Will Glow the Wisp.exe: + "/Will Glow the Wisp.exe": - when: - os: windows store: steam @@ -622956,24 +624659,24 @@ Will Glow the Wisp: id: 640890 Will Rock: files: - /bin: + "/bin": tags: - config when: - os: windows - /saves: + "/saves": tags: - save when: - os: windows Will You Snail?: files: - /Will_You_Snail: + "/Will_You_Snail": tags: - save when: - os: windows - /Will_You_Snail/SettoIngs23-2.set: + "/Will_You_Snail/SettoIngs23-2.set": tags: - config when: @@ -622981,7 +624684,7 @@ Will You Snail?: installDir: Will You Snail: {} launch: - /Will You Snail.exe: + "/Will You Snail.exe": - when: - os: windows store: steam @@ -622991,18 +624694,18 @@ Will of the Gods: installDir: Will of the Gods: {} launch: - /WotG.exe: + "/WotG.exe": - when: - os: windows store: steam - /game.exe: + "/game.exe": - when: - store: steam steam: id: 503960 Will to Live Online: files: - /WTL/Saved/Config/WindowsClient: + "/WTL/Saved/Config/WindowsClient": tags: - config when: @@ -623010,23 +624713,23 @@ Will to Live Online: installDir: WTLOnline: {} launch: - /WTL.exe: + "/WTL.exe": - when: - bit: 64 os: windows store: steam steam: id: 707010 -'Will: A Wonderful World': +"Will: A Wonderful World": installDir: WILL A Wonderful World: {} launch: - /WILL.app/Contents/MacOS/WILL: + "/WILL.app/Contents/MacOS/WILL": - when: - bit: 64 os: mac store: steam - /WILL.exe: + "/WILL.exe": - when: - os: windows store: steam @@ -623036,35 +624739,38 @@ Willful: installDir: Willful: {} launch: - /Willful.exe: + "/Willful.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam - /willful.app: + "/willful.app": - when: - os: mac store: steam steam: id: 664060 -Willi's Haunted Hayride: +"Willi's Haunted Hayride": installDir: - Willi's Haunted Hayride: {} + "Willi's Haunted Hayride": {} steam: id: 552150 William and the Lands of Rage: installDir: William and the Lands of Rage: {} launch: - /WilliamandtheLandsofRage.exe: + "/WilliamandtheLandsofRage.exe": - when: - os: windows store: steam steam: id: 921670 -William's Love Prelude: +"William's Love Prelude": installDir: - William's Love Prelude: {} + "William's Love Prelude": {} steam: id: 1215650 Willowbrooke Post: @@ -623081,25 +624787,25 @@ Wills and Wonders: installDir: Wills and Wonders: {} launch: - /Wills and Wonders.exe: + "/Wills and Wonders.exe": - when: - os: windows store: steam steam: id: 513060 -'Willy Jetman: Astromonkey''s Revenge': +"Willy Jetman: Astromonkey's Revenge": installDir: - Willy Jetman Astromonkey's Revenge: {} + "Willy Jetman Astromonkey's Revenge": {} launch: - /WillyJetman.app/Contents/MacOS/WillyJetman: + "/WillyJetman.app/Contents/MacOS/WillyJetman": - when: - os: mac store: steam - /WillyJetman.exe: + "/WillyJetman.exe": - when: - os: windows store: steam - /willyJetman.x86_64: + "/willyJetman.x86_64": - when: - os: linux store: steam @@ -623111,7 +624817,7 @@ Willy Morgan and the Curse of Bone Town: installDir: Willy Morgan: {} launch: - /Willy Morgan.exe: + "/Willy Morgan.exe": - when: - os: windows store: steam @@ -623119,7 +624825,7 @@ Willy Morgan and the Curse of Bone Town: id: 1097110 Willy-Nilly Knight: files: - /AppData/LocalLow/Double Dice Games/Willy-Nilly Knight/SaveGames: + "/AppData/LocalLow/Double Dice Games/Willy-Nilly Knight/SaveGames": tags: - save when: @@ -623127,48 +624833,48 @@ Willy-Nilly Knight: installDir: Willy-Nilly Knight: {} launch: - /WillyNillyKnight.app/Contents/MacOS/WillyNillyKnight: + "/WillyNillyKnight.app/Contents/MacOS/WillyNillyKnight": - when: - os: mac store: steam - /wnk_game.exe: + "/wnk_game.exe": - when: - os: windows store: steam steam: id: 610500 -Wilmot's Warehouse: +"Wilmot's Warehouse": files: - /Hollow Ponds/Wilmot/globaldata.sol: + "/Hollow Ponds/Wilmot/globaldata.sol": tags: - config when: - os: windows - /Hollow Ponds/Wilmot/savedata.sol: + "/Hollow Ponds/Wilmot/savedata.sol": tags: - save when: - os: windows installDir: - Wilmot's Warehouse: {} + "Wilmot's Warehouse": {} launch: - /WilmotMac/Wilmot.app: + "/WilmotMac/Wilmot.app": - when: - os: mac store: steam - workingDir: /WilmotMac - /WilmotPC/Wilmot.exe: + workingDir: "/WilmotMac" + "/WilmotPC/Wilmot.exe": - when: - os: windows store: steam - workingDir: /WilmotPC + workingDir: "/WilmotPC" steam: id: 839870 Wiloo: installDir: WILOO: {} launch: - /WILOO.exe: + "/WILOO.exe": - when: - os: windows store: steam @@ -623178,12 +624884,12 @@ Wilson Chronicles: installDir: Wilson Chronicles: {} launch: - /hl2.exe: - - arguments: '-game wilson_chronicles' + "/hl2.exe": + - arguments: "-game wilson_chronicles" when: - os: windows store: steam - - arguments: '-game wilson_chronicles -console' + - arguments: "-game wilson_chronicles -console" when: - os: windows store: steam @@ -623191,7 +624897,7 @@ Wilson Chronicles: id: 313240 Wily Beast and Weakest Creature: files: - /ShanghaiAlice/th17: + "/ShanghaiAlice/th17": tags: - config - save @@ -623200,16 +624906,16 @@ Wily Beast and Weakest Creature: installDir: th17: {} launch: - /th17.exe: + "/th17.exe": - when: - store: steam steam: id: 1079160 -'Wimp: Who Stole My Pants?': +"Wimp: Who Stole My Pants?": installDir: Wimp Who Stole My Pants: {} launch: - /WimpStarter.exe: + "/WimpStarter.exe": - when: - os: windows store: steam @@ -623219,7 +624925,7 @@ Win Big Or Die: installDir: WinBigOrDie: {} launch: - /WinBigOrDie.exe: + "/WinBigOrDie.exe": - when: - os: windows store: steam @@ -623229,38 +624935,38 @@ Win That War!: installDir: WinThatWar: {} launch: - /Bin/x64/Release/WTW.exe: + "/Bin/x64/Release/WTW.exe": - when: - bit: 64 os: windows store: steam - workingDir: /Bin/x64/Release + workingDir: "/Bin/x64/Release" steam: id: 599040 Win the Game!: installDir: WIN THE GAME!: {} launch: - /WIN THE GAME!.exe: + "/WIN THE GAME!.exe": - when: - os: windows store: steam steam: id: 828150 -'Win the Game: Do It!': +"Win the Game: Do It!": installDir: WIN THE GAME! 2: {} launch: - /WIN THE GAME 2.exe: + "/WIN THE GAME 2.exe": - when: - store: steam steam: id: 843890 -'Win the Game: WTF!': +"Win the Game: WTF!": installDir: WIN THE GAME WTF!: {} launch: - /WIN THE GAME! WTF.exe: + "/WIN THE GAME! WTF.exe": - when: - os: windows store: steam @@ -623270,20 +624976,20 @@ WinKings: installDir: WinKings: {} launch: - /WinKings.app: + "/WinKings.app": - when: - os: mac store: steam - /WinKings.exe: + "/WinKings.exe": - when: - os: windows store: steam - /WinKings.x86: + "/WinKings.x86": - when: - bit: 32 os: linux store: steam - /WinKings.x86_64: + "/WinKings.x86_64": - when: - bit: 64 os: linux @@ -623294,7 +625000,7 @@ Wincars Racer: installDir: Wincars Racer: {} launch: - /WincarsRacer.exe: + "/WincarsRacer.exe": - when: - bit: 64 os: windows @@ -623305,7 +625011,7 @@ Wind Child: installDir: Wind Child: {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: @@ -623314,7 +625020,7 @@ Wind Force: installDir: Wind Force: {} launch: - /windforce.exe: + "/windforce.exe": - when: - os: windows store: steam @@ -623324,7 +625030,7 @@ Wind Horizon: installDir: Wind Horizon: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -623333,11 +625039,11 @@ Wind Horizon: Wind Runners: steam: id: 1101370 -'Wind of Luck: Arena': +"Wind of Luck: Arena": installDir: Wind of Luck Arena: {} launch: - /Game/SteamLauncher.exe: + "/Game/SteamLauncher.exe": - arguments: BUY_GOLD_ENABLED=FALSE when: - os: windows @@ -623348,7 +625054,7 @@ WindShift: installDir: Windshift: {} launch: - /Windshift.exe: + "/Windshift.exe": - when: - os: windows store: steam @@ -623361,17 +625067,17 @@ Windborne: installDir: Windborne: {} launch: - /Windborne.exe: + "/Windborne.exe": - when: - store: steam - /WindborneLauncher.exe: + "/WindborneLauncher.exe": - when: - store: steam steam: id: 221560 Windbound: files: - /AppData/LocalLow/5 Lives Studios/Windbound/Saves: + "/AppData/LocalLow/5 Lives Studios/Windbound/Saves": tags: - save when: @@ -623381,7 +625087,7 @@ Windbound: installDir: Windbound: {} launch: - /WindboundWindows.exe: + "/WindboundWindows.exe": - when: - bit: 64 os: windows @@ -623390,12 +625096,12 @@ Windbound: id: 1162130 Windfolk: files: - /Windfolk/Saved/Config/WindowsNoEditor: + "/Windfolk/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /Windfolk/Saved/SaveGames: + "/Windfolk/Saved/SaveGames": tags: - save when: @@ -623403,7 +625109,7 @@ Windfolk: installDir: Windfolk Sky is just the Beginning: {} launch: - /Windfolk.exe: + "/Windfolk.exe": - when: - os: windows store: steam @@ -623411,12 +625117,12 @@ Windfolk: id: 1966700 Windforge: files: - /Windforge/Config/config.txt: + "/Windforge/Config/config.txt": tags: - config when: - os: windows - /Windforge/Saves: + "/Windforge/Saves": tags: - save when: @@ -623426,15 +625132,15 @@ Windforge: installDir: Windforge: {} launch: - /Bin/Game.exe: + "/Bin/Game.exe": - when: - store: steam - workingDir: /Bin + workingDir: "/Bin" steam: id: 266170 Windjammers 2: files: - /Packages/DotEmu.Windjammers2_map6zyh9ym1xy/SystemAppData/wgs: + "/Packages/DotEmu.Windjammers2_map6zyh9ym1xy/SystemAppData/wgs": tags: - save when: @@ -623443,12 +625149,12 @@ Windjammers 2: installDir: Windjammers 2: {} launch: - /Windjammers2.exe: + "/Windjammers2.exe": - when: - bit: 64 os: windows store: steam - /Windjammers2_opengl.exe: + "/Windjammers2_opengl.exe": - when: - bit: 64 os: windows @@ -623459,24 +625165,24 @@ Windlands: installDir: Windlands: {} launch: - /Windlands_Linux_x64.x86_64: + "/Windlands_Linux_x64.x86_64": - when: - bit: 64 os: linux store: steam - /Windlands_OSX_x64.app: + "/Windlands_OSX_x64.app": - when: - bit: 64 os: mac store: steam - /Windlands_Win_x64.exe: - - arguments: '-vrmode None -desktop' + "/Windlands_Win_x64.exe": + - arguments: "-vrmode None -desktop" when: - bit: 64 os: windows store: steam - /Windlands_Win_x86.exe: - - arguments: '-vrmode None -desktop' + "/Windlands_Win_x86.exe": + - arguments: "-vrmode None -desktop" when: - bit: 32 os: windows @@ -623492,7 +625198,7 @@ Windmill Kings / 风车国王: installDir: Windmill Kings: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -623500,7 +625206,7 @@ Windmill Kings / 风车国王: id: 1180420 Windosill: files: - /Macromedia/Flash Player/#SharedObjects//localhost//Windosill.exe/windosill.sol: + "/Macromedia/Flash Player/#SharedObjects//localhost//Windosill.exe/windosill.sol": tags: - save when: @@ -623508,11 +625214,11 @@ Windosill: installDir: Windosill: {} launch: - /Windosill.app: + "/Windosill.app": - when: - os: mac store: steam - /Windosill.exe: + "/Windosill.exe": - when: - os: windows store: steam @@ -623520,47 +625226,47 @@ Windosill: id: 37600 Winds of Change: files: - /game/saves/*.save: + "/game/saves/*.save": tags: - save when: - os: windows - /game/saves/persistent: + "/game/saves/persistent": tags: - config when: - os: windows - /gamecontrollerdb.txt: + "/gamecontrollerdb.txt": tags: - config when: - os: windows - /.renpy/WindsofChange-1508869298/*.save: + "/.renpy/WindsofChange-1508869298/*.save": tags: - save when: - os: linux - /.renpy/WindsofChange-1508869298/persistent: + "/.renpy/WindsofChange-1508869298/persistent": tags: - config when: - os: linux - /Library/RenPy/WindsofChange-1508869298/*.save: + "/Library/RenPy/WindsofChange-1508869298/*.save": tags: - save when: - os: mac - /Library/RenPy/WindsofChange-1508869298/persistent: + "/Library/RenPy/WindsofChange-1508869298/persistent": tags: - config when: - os: mac - /RenPy/WindsofChange-1508869298/*.save: + "/RenPy/WindsofChange-1508869298/*.save": tags: - save when: - os: windows - /RenPy/WindsofChange-1508869298/persistent: + "/RenPy/WindsofChange-1508869298/persistent": tags: - config when: @@ -623568,15 +625274,15 @@ Winds of Change: installDir: winds-of-change: {} launch: - /WindsofChange.app: + "/WindsofChange.app": - when: - os: mac store: steam - /WindsofChange.exe: + "/WindsofChange.exe": - when: - os: windows store: steam - /WindsofChange.sh: + "/WindsofChange.sh": - when: - os: linux store: steam @@ -623586,16 +625292,16 @@ Winds of Trade: installDir: WindsOfTrade: {} launch: - /wot.exe: + "/wot.exe": - when: - os: windows store: steam - /wot.x86: + "/wot.x86": - when: - bit: 32 os: linux store: steam - /wot.x86_64: + "/wot.x86_64": - when: - bit: 64 os: linux @@ -623604,7 +625310,7 @@ Winds of Trade: id: 576260 Windscape: files: - /AppData/LocalLow/Headup/Windscape/Savegames: + "/AppData/LocalLow/Headup/Windscape/Savegames": tags: - save when: @@ -623612,17 +625318,20 @@ Windscape: installDir: Windscape: {} launch: - /Windscape.exe: + "/Windscape.exe": - when: - bit: 32 os: windows store: steam - /Windscape.x86: + - bit: 64 + os: windows + store: steam + "/Windscape.x86": - when: - bit: 32 os: linux store: steam - /Windscape.x86_64: + "/Windscape.x86_64": - when: - bit: 64 os: linux @@ -623637,17 +625346,17 @@ Windstorm: installDir: Ostwind: {} launch: - /Ostwind.exe: + "/Ostwind.exe": - when: - os: windows store: steam steam: id: 649810 -'Windstorm: Ari''s Arrival': +"Windstorm: Ari's Arrival": installDir: Ostwind 2: {} launch: - /Ostwind2.exe: + "/Ostwind2.exe": - when: - os: windows store: steam @@ -623655,17 +625364,17 @@ Windstorm: id: 899200 Windward: files: - /Documents/Windward: + "/Documents/Windward": tags: - config when: - os: linux - /Documents/Windward/Players: + "/Documents/Windward/Players": tags: - save when: - os: linux - /Windward: + "/Windward": tags: - save when: @@ -623675,15 +625384,15 @@ Windward: installDir: Windward: {} launch: - /Windward.app: + "/Windward.app": - when: - os: mac store: steam - /Windward.exe: + "/Windward.exe": - when: - os: windows store: steam - /Windward.x86: + "/Windward.x86": - when: - os: linux store: steam @@ -623697,11 +625406,11 @@ Windy Kingdom: installDir: Windy Kingdom: {} launch: - /Windy Kingdom.app: + "/Windy Kingdom.app": - when: - os: mac store: steam - /Windy Kingdom.exe: + "/Windy Kingdom.exe": - when: - os: windows store: steam @@ -623711,7 +625420,7 @@ Winexy: installDir: Winexy: {} launch: - /Winexy.exe: + "/Winexy.exe": - when: - os: windows store: steam @@ -623721,7 +625430,7 @@ Wing Breakers: installDir: Wing Breakers: {} launch: - /build/WingBreakers.exe: + "/build/WingBreakers.exe": - when: - os: windows store: steam @@ -623729,7 +625438,7 @@ Wing Breakers: id: 308080 Wing Commander: files: - /GAMEDAT/SAVEGAME.WLD: + "/GAMEDAT/SAVEGAME.WLD": tags: - save when: @@ -623740,9 +625449,9 @@ Wing Commander: id: gogExtra: - 1207658960 -'Wing Commander II: Vengeance of the Kilrathi': +"Wing Commander II: Vengeance of the Kilrathi": files: - /GAMEDAT/SAVEGAME.WC2: + "/GAMEDAT/SAVEGAME.WC2": tags: - save when: @@ -623753,9 +625462,9 @@ Wing Commander: id: gogExtra: - 1207658960 -'Wing Commander III: Heart of the Tiger': +"Wing Commander III: Heart of the Tiger": files: - /00000***.WSG: + "/00000***.WSG": tags: - save when: @@ -623763,15 +625472,15 @@ Wing Commander: - os: windows gog: id: 1207658966 -'Wing Commander IV: The Price of Freedom': +"Wing Commander IV: The Price of Freedom": files: - /*.WSG: + "/*.WSG": tags: - save when: - os: dos - os: windows - /WC4.CFG: + "/WC4.CFG": tags: - config when: @@ -623779,46 +625488,46 @@ Wing Commander: - os: windows gog: id: 1207659021 -'Wing Commander: Academy': +"Wing Commander: Academy": files: - /MISSIONS: + "/MISSIONS": tags: - save when: - os: dos gog: id: 1207659473 -'Wing Commander: Armada': +"Wing Commander: Armada": files: - /GAME.OPT: + "/GAME.OPT": tags: - config when: - os: dos - /SAVE_*.ARM: + "/SAVE_*.ARM": tags: - save when: - os: dos gog: id: 1207659603 -'Wing Commander: Privateer': +"Wing Commander: Privateer": files: - /*.PRS: + "/*.PRS": tags: - save when: - os: dos - /*.SAV: + "/*.SAV": tags: - save when: - os: dos gog: id: 1207658938 -'Wing Commander: Prophecy': +"Wing Commander: Prophecy": files: - /save: + "/save": tags: - save when: @@ -623828,7 +625537,7 @@ Wing Commander: id: gogExtra: - 1207660153 -'Wing Commander: Secret Ops': +"Wing Commander: Secret Ops": gog: id: 1207662673 id: @@ -623838,7 +625547,7 @@ Wing of Darkness: installDir: Wing of darkness: {} launch: - /YF.exe: + "/YF.exe": - when: - bit: 64 os: windows @@ -623854,28 +625563,28 @@ WingMen: installDir: WingMen: {} launch: - /WingMen.exe: + "/WingMen.exe": - when: - os: windows store: steam steam: id: 773340 -'Winged Knights: Penetration': +"Winged Knights: Penetration": steam: id: 473620 -'Winged Sakura: Demon Civil War': +"Winged Sakura: Demon Civil War": files: - /Save/*.wsg: + "/Save/*.wsg": tags: - save when: - os: linux - /Save/WSDCW_Config_Settings.xml: + "/Save/WSDCW_Config_Settings.xml": tags: - config when: - os: linux - /unity3d/WINGED SAKURA GAMES/Winged Sakura_ Demon Civil War/prefs: + "/unity3d/WINGED SAKURA GAMES/Winged Sakura_ Demon Civil War/prefs": tags: - config when: @@ -623883,72 +625592,72 @@ WingMen: installDir: Winged Sakura Demon Civil War: {} launch: - /Winged Sakura Demon Civil War.app: + "/Winged Sakura Demon Civil War.app": - when: - os: mac store: steam - /Winged Sakura Demon Civil War.exe: + "/Winged Sakura Demon Civil War.exe": - when: - os: windows store: steam - /Winged Sakura Demon Civil War.x86: + "/Winged Sakura Demon Civil War.x86": - when: - os: linux store: steam steam: id: 470300 -'Winged Sakura: Endless Dream': +"Winged Sakura: Endless Dream": installDir: Winged Sakura Endless Dream: {} launch: - /Winged Sakura Endless Dream.app: + "/Winged Sakura Endless Dream.app": - when: - os: mac store: steam - /Winged Sakura Endless Dream.exe: + "/Winged Sakura Endless Dream.exe": - when: - bit: 64 os: windows store: steam - /Winged Sakura Endless Dream.x86_64: + "/Winged Sakura Endless Dream.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 339250 -'Winged Sakura: Mindy''s Arc': +"Winged Sakura: Mindy's Arc": installDir: - Winged Sakura Mindy's Arc: {} + "Winged Sakura Mindy's Arc": {} launch: - /Winged Sakura Mindy's Arc.app: + "/Winged Sakura Mindy's Arc.app": - when: - os: mac store: steam - /Winged Sakura Mindy's Arc.exe: + "/Winged Sakura Mindy's Arc.exe": - when: - os: windows store: steam - /Winged Sakura Mindy's Arc.x86: + "/Winged Sakura Mindy's Arc.x86": - when: - os: linux store: steam steam: id: 331390 -'Winged Sakura: Mindy''s Arc 2': +"Winged Sakura: Mindy's Arc 2": installDir: - Winged Sakura Mindy's Arc 2: {} + "Winged Sakura Mindy's Arc 2": {} launch: - /Winged Sakura Mindy's Arc 2.app: + "/Winged Sakura Mindy's Arc 2.app": - when: - os: mac store: steam - /Winged Sakura Mindy's Arc 2.exe: + "/Winged Sakura Mindy's Arc 2.exe": - when: - bit: 64 os: windows store: steam - /Winged Sakura Mindy's Arc 2.x86_64: + "/Winged Sakura Mindy's Arc 2.x86_64": - when: - bit: 64 os: linux @@ -623964,12 +625673,12 @@ Wings of Bluestar: installDir: Wings Of Bluestar: {} launch: - /WINGS OF BLUESTAR.exe: + "/WINGS OF BLUESTAR.exe": - when: - bit: 64 os: windows store: steam - /game.exe: + "/game.exe": - when: - store: steam steam: @@ -623978,11 +625687,11 @@ Wings of Glass 玻璃の羽: installDir: Wings of Glass 玻璃の羽: {} launch: - /Wings of Glass 玻璃の羽.app: + "/Wings of Glass 玻璃の羽.app": - when: - os: mac store: steam - /Wings of Glass 玻璃の羽.exe: + "/Wings of Glass 玻璃の羽.exe": - when: - os: windows store: steam @@ -623990,12 +625699,12 @@ Wings of Glass 玻璃の羽: id: 1010780 Wings of Glory: files: - /SAVED: + "/SAVED": tags: - save when: - os: dos - /WG.CFG: + "/WG.CFG": tags: - config when: @@ -624005,19 +625714,19 @@ Wings of Honour: HKEY_CURRENT_USER/Software/City Interactive/Wings Of Honour: tags: - config -'Wings of Peace VR: DayBreak': +"Wings of Peace VR: DayBreak": installDir: Wings of Peace VR DayBreak: {} steam: id: 670270 Wings of Prey: files: - /My Games/Wings of Prey: + "/My Games/Wings of Prey": tags: - config when: - os: windows - /My Games/Wings of Prey/Saves: + "/My Games/Wings of Prey/Saves": tags: - save when: @@ -624027,29 +625736,29 @@ Wings of Prey: installDir: Wings of Prey: {} launch: - /launcher.exe: + "/launcher.exe": - when: - store: steam steam: id: 45300 Wings of Vi: files: - /Data/Globals.ini: + "/Data/Globals.ini": tags: - save when: - os: windows - /Data/Options.ini: + "/Data/Options.ini": tags: - config when: - os: windows - /Data/Save */buffer.ini: + "/Data/Save */buffer.ini": tags: - save when: - os: windows - /Data/Save */instant.ini: + "/Data/Save */instant.ini": tags: - save when: @@ -624057,7 +625766,7 @@ Wings of Vi: installDir: Wings Of Vi: {} launch: - /Wings Of Vi.exe: + "/Wings Of Vi.exe": - when: - os: windows store: steam @@ -624067,14 +625776,14 @@ Wings of Virtus: installDir: Wings of Virtus: {} launch: - /nw.exe: + "/nw.exe": - when: - store: steam steam: id: 978920 Wings of War: files: - /Savegame: + "/Savegame": tags: - save when: @@ -624083,7 +625792,7 @@ Wings over Europe: installDir: Wings Over Europe: {} launch: - /WOE.exe: + "/WOE.exe": - when: - store: steam steam: @@ -624094,7 +625803,7 @@ Wings! Classic: installDir: Cinemaware Anthology 1986-1991: {} launch: - /Anthology.exe: + "/Anthology.exe": - when: - os: windows store: steam @@ -624102,7 +625811,7 @@ Wings! Classic: id: 326590 Wings! Remastered Edition: files: - /WingsSaveData: + "/WingsSaveData": tags: - save when: @@ -624112,11 +625821,11 @@ Wings! Remastered Edition: installDir: Wings! Remastered Edition: {} launch: - /Wings.app: + "/Wings.app": - when: - os: mac store: steam - /Wings.exe: + "/Wings.exe": - when: - os: windows store: steam @@ -624128,43 +625837,43 @@ Wingspan: installDir: Wingspan: {} launch: - /Wingspan.app: + "/Wingspan.app": - when: - os: mac store: steam - /Wingspan.exe: + "/Wingspan.exe": - when: - os: windows store: steam steam: id: 1054490 -'Wingsuit: Gudvangen': +"Wingsuit: Gudvangen": installDir: Wingsuit Gudvangen: {} launch: - /WingsuitGudvangen.exe: + "/WingsuitGudvangen.exe": - when: - os: windows store: steam steam: id: 1083260 -'Winions: Mana Champions': +"Winions: Mana Champions": installDir: Winions Mana Champions: {} launch: - /WOH.exe: + "/WOH.exe": - when: - os: windows store: steam steam: id: 803220 -'Winkeltje: The Little Shop': +"Winkeltje: The Little Shop": gog: id: 1603921704 installDir: Winkeltje: {} launch: - /Shopkeeper.exe: + "/Shopkeeper.exe": - when: - os: windows store: steam @@ -624174,19 +625883,19 @@ Winner Winner Chicken Dinner!: installDir: Winner Winner Chicken Dinner!: {} launch: - /wwcd.exe: + "/wwcd.exe": - when: - store: steam steam: id: 781100 Winnie the Pooh: files: - /Disney Interactive Studios/Winnie the Pooh: + "/Disney Interactive Studios/Winnie the Pooh": tags: - config when: - os: windows - /Disney Interactive Studios/Winnie the Pooh/savedata: + "/Disney Interactive Studios/Winnie the Pooh/savedata": tags: - config when: @@ -624194,7 +625903,7 @@ Winnie the Pooh: installDir: Animated Storybook Winnie the Pooh: {} launch: - /Game-Winnie.exe: + "/Game-Winnie.exe": - when: - os: windows store: steam @@ -624204,7 +625913,7 @@ Winning Post: installDir: WinningPost1: {} launch: - /WinningPost1_Launcher.exe: + "/WinningPost1_Launcher.exe": - when: - os: windows store: steam @@ -624214,8 +625923,8 @@ Winning Putt: installDir: Winning Putt: {} launch: - /Launcher.exe: - - arguments: '--steam' + "/Launcher.exe": + - arguments: "--steam" when: - os: windows store: steam @@ -624234,12 +625943,12 @@ Winter Cometh: id: 1144810 Winter Ember: files: - /WinterEmber/Saved/Config/WindowsNoEditor: + "/WinterEmber/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /WinterEmber/Saved/SaveGames: + "/WinterEmber/Saved/SaveGames": tags: - save when: @@ -624249,32 +625958,32 @@ Winter Ember: installDir: Winter Ember: {} launch: - /WinterEmber.exe: + "/WinterEmber.exe": - when: - os: windows store: steam steam: id: 1417880 -'Winter Falling: Battle Tactics': +"Winter Falling: Battle Tactics": installDir: Winter Falling: {} launch: - /WinterFalling.app: + "/WinterFalling.app": - when: - os: mac store: steam - /WinterFalling.exe: + "/WinterFalling.exe": - when: - os: windows store: steam - /WinterFalling.x86_64: + "/WinterFalling.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 1285060 -'Winter Fury: Longest Road': +"Winter Fury: Longest Road": installDir: Winter Fury Longest Road: {} steam: @@ -624283,7 +625992,7 @@ Winter Magic Factory: installDir: Winter Magic Factory: {} launch: - /WinterMagic.exe: + "/WinterMagic.exe": - when: - os: windows store: steam @@ -624291,7 +626000,7 @@ Winter Magic Factory: id: 1127690 Winter Novel: files: - /*.bin: + "/*.bin": tags: - save when: @@ -624299,20 +626008,20 @@ Winter Novel: installDir: Winter Novel: {} launch: - /WinterNovel.exe: + "/WinterNovel.exe": - when: - os: windows store: steam - /WinterNovel.sh: + "/WinterNovel.sh": - when: - os: mac store: steam - /WinterNovel32: + "/WinterNovel32": - when: - bit: 32 os: linux store: steam - /WinterNovel64: + "/WinterNovel64": - when: - bit: 64 os: linux @@ -624323,7 +626032,7 @@ Winter Polaris: installDir: Winter_Polaris: {} launch: - /Polaris.exe: + "/Polaris.exe": - when: - store: steam steam: @@ -624332,7 +626041,7 @@ Winter Resort Simulator: installDir: Winter Resort Simulator: {} launch: - /WinterResortSimulator.exe: + "/WinterResortSimulator.exe": - when: - store: steam steam: @@ -624341,17 +626050,17 @@ Winter Solitaire: installDir: Winter Solitaire: {} launch: - /WinterSolitaire.exe: + "/WinterSolitaire.exe": - when: - os: windows store: steam steam: id: 1034250 -'Winter Sports 2009: The Next Challenge': +"Winter Sports 2009: The Next Challenge": installDir: Wintergames: {} launch: - /applauncher.exe: + "/applauncher.exe": - when: - os: windows store: steam @@ -624361,7 +626070,7 @@ Winter Sports Games: installDir: Winter Sports Games: {} launch: - /wintersportsgames.exe: + "/wintersportsgames.exe": - when: - bit: 64 os: windows @@ -624370,7 +626079,7 @@ Winter Sports Games: id: 998530 Winter Voices: files: - /Winter Voices: + "/Winter Voices": tags: - save when: @@ -624386,7 +626095,7 @@ Winter Voices: installDir: Winter Voices Ep 1: {} launch: - /WinterVoices.exe: + "/WinterVoices.exe": - when: - store: steam steam: @@ -624395,15 +626104,15 @@ Winter Warland: installDir: Immortal Quest: {} launch: - /WinterWarland.app: + "/WinterWarland.app": - when: - os: mac store: steam - /WinterWarland.exe: + "/WinterWarland.exe": - when: - os: windows store: steam - /WinterWarland.x86_64: + "/WinterWarland.x86_64": - arguments: LC_ALL=C when: - os: linux @@ -624415,43 +626124,43 @@ Winter Wolves Classic Games Collection: Games Collection: {} steam: id: 646150 -'Winter Worm, Summer Grass': +"Winter Worm, Summer Grass": installDir: - 'Winter Worm, Summer Grass': {} + "Winter Worm, Summer Grass": {} launch: - '/Winter Worm, Summer Grass.app': + "/Winter Worm, Summer Grass.app": - when: - os: mac store: steam - '/Winter Worm, Summer Grass.exe': + "/Winter Worm, Summer Grass.exe": - when: - os: windows store: steam steam: id: 1194870 -Winter's Empty Mask - Visual novel: +"Winter's Empty Mask - Visual novel": installDir: WEM: {} launch: - /WEM.app: + "/WEM.app": - when: - os: mac store: steam - /WEM.exe: + "/WEM.exe": - when: - os: windows store: steam - /WEM.sh: + "/WEM.sh": - when: - os: linux store: steam steam: id: 621170 -Winter's Symphonies: +"Winter's Symphonies": installDir: - Winter's Symphonies: {} + "Winter's Symphonies": {} launch: - /Winter's Symphonies/WS.exe: + "/Winter's Symphonies/WS.exe": - when: - os: windows store: steam @@ -624461,15 +626170,15 @@ Wintercearig: installDir: Wintercearig: {} launch: - /Wintercearig.exe: + "/Wintercearig.exe": - when: - os: windows store: steam - /wintercearig: + "/wintercearig": - when: - os: linux store: steam - /wintercearig.app: + "/wintercearig.app": - when: - os: mac store: steam @@ -624479,19 +626188,19 @@ Winteristry: installDir: Winteristry: {} launch: - /Winteristry.exe: + "/Winteristry.exe": - when: - store: steam steam: id: 697830 Wintermoor Tactics Club: files: - /My Games/Wintermoor/Saves/*.wtcb: + "/My Games/Wintermoor/Saves/*.wtcb": tags: - save when: - os: windows - /My Games/Wintermoor/Saves/PlayerPrefs: + "/My Games/Wintermoor/Saves/PlayerPrefs": tags: - config when: @@ -624501,7 +626210,7 @@ Wintermoor Tactics Club: installDir: Wintermoor Tactics Club: {} launch: - /Wintermoor Tactics Club.exe: + "/Wintermoor Tactics Club.exe": - when: - os: windows store: steam @@ -624513,7 +626222,7 @@ Wintermoor Tactics Club: id: 917840 Winx Club: files: - /Media/Saved: + "/Media/Saved": tags: - save when: @@ -624522,14 +626231,14 @@ Wipe Out VR: installDir: WipeOut: {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: id: 553630 Wipeout: files: - /*.WSF: + "/*.WSF": tags: - save when: @@ -624540,29 +626249,29 @@ Wipeout: - config Wipeout 2097: files: - /CONFIG.DAT: + "/CONFIG.DAT": tags: - config when: - os: windows - /SAVEGAME.BIN: + "/SAVEGAME.BIN": tags: - save when: - os: windows -'Wira & Taksa: Against the Master of Gravity': +"Wira & Taksa: Against the Master of Gravity": installDir: Wira y Taksa: {} launch: - /WT.app: + "/WT.app": - when: - os: mac store: steam - /WT.exe: + "/WT.exe": - when: - os: windows store: steam - /WT.x86_64: + "/WT.x86_64": - when: - os: linux store: steam @@ -624572,7 +626281,7 @@ Wire Lips: installDir: Wire Lips: {} launch: - /Wire Lips.exe: + "/Wire Lips.exe": - when: - os: windows store: steam @@ -624582,7 +626291,7 @@ WireNet: installDir: WireNet: {} launch: - /WireNet.exe: + "/WireNet.exe": - when: - os: windows store: steam @@ -624590,7 +626299,7 @@ WireNet: id: 687510 Wired: files: - /AppData/LocalLow/CUED/Wired03/WiredSaveGames: + "/AppData/LocalLow/CUED/Wired03/WiredSaveGames": tags: - save when: @@ -624598,11 +626307,11 @@ Wired: installDir: Wired: {} launch: - /wired.app: + "/wired.app": - when: - os: mac store: steam - /wired.exe: + "/wired.exe": - when: - os: windows store: steam @@ -624612,7 +626321,7 @@ Wisdom of War: installDir: Wisdom of War: {} launch: - /wisdom of war.exe: + "/wisdom of war.exe": - when: - store: steam steam: @@ -624624,7 +626333,7 @@ Wisentree Spirit: id: 916330 Wish: files: - /AppData/LocalLow/MOMENTUMGAMES/Game/*.dat: + "/AppData/LocalLow/MOMENTUMGAMES/Game/*.dat": tags: - save when: @@ -624632,11 +626341,11 @@ Wish: installDir: Wish: {} launch: - /Game.app: + "/Game.app": - when: - os: mac store: steam - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -624646,15 +626355,15 @@ Wish -tale of the sixteenth night of lunar month-: installDir: Wish -tale of the sixteenth night of lunar month-: {} launch: - /Wish.app: + "/Wish.app": - when: - os: mac store: steam - /Wish.exe: + "/Wish.exe": - when: - os: windows store: steam - /Wish.x86: + "/Wish.x86": - when: - os: linux store: steam @@ -624669,14 +626378,14 @@ Wish Project: installDir: Wish Project: {} launch: - /WishProject.exe: + "/WishProject.exe": - when: - store: steam steam: id: 367140 Wishmaster: files: - /Wishmaster: + "/Wishmaster": tags: - save when: @@ -624687,20 +626396,20 @@ Wishmere: installDir: Wishmere: {} launch: - /Wishmere.app: + "/Wishmere.app": - when: - os: mac store: steam - /Wishmere.exe: + "/Wishmere.exe": - when: - os: windows store: steam - /Wishmere.x86: + "/Wishmere.x86": - when: - bit: 32 os: linux store: steam - /Wishmere.x86_64: + "/Wishmere.x86_64": - when: - bit: 64 os: linux @@ -624714,18 +626423,18 @@ Witan: installDir: Witan: {} launch: - /Witan.exe: + "/Witan.exe": - when: - bit: 32 os: windows store: steam steam: id: 486490 -'Witanlore: Dreamtime': +"Witanlore: Dreamtime": installDir: Dreamtime: {} launch: - /Dreamtime.exe: + "/Dreamtime.exe": - when: - bit: 64 os: windows @@ -624739,7 +626448,7 @@ Witch Blood: installDir: Witch Blood: {} launch: - /ProjectWitch.exe: + "/ProjectWitch.exe": - when: - os: windows store: steam @@ -624749,11 +626458,11 @@ Witch College: installDir: Witch College: {} launch: - /Witch College.app: + "/Witch College.app": - when: - os: mac store: steam - /Witch College.exe: + "/Witch College.exe": - when: - os: windows store: steam @@ -624763,7 +626472,7 @@ Witch College 2: installDir: Witch College 2: {} launch: - /Witch College 2.exe: + "/Witch College 2.exe": - when: - os: windows store: steam @@ -624776,14 +626485,14 @@ Witch Halloween: installDir: Witch Halloween: {} launch: - /nw.exe: + "/nw.exe": - when: - store: steam steam: id: 1133770 Witch Hunt: files: - /AppData/LocalLow/Andrii Vintsevych/Witch Hunt: + "/AppData/LocalLow/Andrii Vintsevych/Witch Hunt": tags: - config - save @@ -624792,27 +626501,27 @@ Witch Hunt: installDir: Witch Hunt: {} launch: - /Witch_Hunt.exe: + "/Witch_Hunt.exe": - when: - os: windows store: steam steam: id: 661790 -'Witch Hunters: Full Moon Ceremony': +"Witch Hunters: Full Moon Ceremony": installDir: - Witch Hunters Full Moon Ceremony Collector's Edition: {} + "Witch Hunters Full Moon Ceremony Collector's Edition": {} launch: - /WitchHunters_FullMoonCeremonyCE.exe: + "/WitchHunters_FullMoonCeremonyCE.exe": - when: - os: windows store: steam steam: id: 729950 -'Witch Hunters: Stolen Beauty': +"Witch Hunters: Stolen Beauty": installDir: - Witch Hunters Stolen Beauty Collector's Edition: {} + "Witch Hunters Stolen Beauty Collector's Edition": {} launch: - /WitchHunters_StolenBeautyCE.exe: + "/WitchHunters_StolenBeautyCE.exe": - when: - os: windows store: steam @@ -624820,12 +626529,12 @@ Witch Hunt: id: 597280 Witch It: files: - /WitchIt/Saved/Config/WindowsNoEditor: + "/WitchIt/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /WitchIt/Saved/SaveGames: + "/WitchIt/Saved/SaveGames": tags: - save when: @@ -624833,35 +626542,35 @@ Witch It: installDir: WitchIt: {} launch: - /WitchIt/Binaries/Win64/DeleteConfigAndSaves.bat: + "/WitchIt/Binaries/Win64/DeleteConfigAndSaves.bat": - when: - os: windows store: steam - workingDir: /WitchIt/Binaries/Win64 - /WitchIt/Binaries/Win64/PropWitchHuntModule-Win64-Shipping.exe: + workingDir: "/WitchIt/Binaries/Win64" + "/WitchIt/Binaries/Win64/PropWitchHuntModule-Win64-Shipping.exe": - when: - bit: 64 os: windows store: steam - workingDir: /WitchIt/Binaries/Win64 - - arguments: '-Vulkan' + workingDir: "/WitchIt/Binaries/Win64" + - arguments: "-Vulkan" when: - bit: 64 store: steam - workingDir: /WitchIt/Binaries/Win64 - - arguments: '-dx11' + workingDir: "/WitchIt/Binaries/Win64" + - arguments: "-dx11" when: - bit: 64 os: windows store: steam - workingDir: /WitchIt/Binaries/Win64 + workingDir: "/WitchIt/Binaries/Win64" steam: id: 559650 -Witch Loraine's Death Game: +"Witch Loraine's Death Game": installDir: WLDG Steam launch: {} launch: - /wldg.exe: + "/wldg.exe": - when: - os: windows store: steam @@ -624871,7 +626580,7 @@ Witch Ring Meister: installDir: Witch Ring Meister: {} launch: - /Witch Ring Meister.exe: + "/Witch Ring Meister.exe": - when: - store: steam steam: @@ -624880,7 +626589,7 @@ Witch Sword: installDir: Witch Sword: {} launch: - /Witch Sword.exe: + "/Witch Sword.exe": - when: - os: windows store: steam @@ -624890,7 +626599,7 @@ Witch Thief: installDir: WitchThief: {} launch: - /witchthief.exe: + "/witchthief.exe": - when: - os: windows store: steam @@ -624900,7 +626609,7 @@ Witch and Hero: installDir: Witch & Hero(魔女と勇者): {} launch: - /witchandhero.exe: + "/witchandhero.exe": - when: - os: windows store: steam @@ -624910,7 +626619,7 @@ Witch of Ice Kingdom II: installDir: Witch of Ice Kingdom II: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -624920,11 +626629,11 @@ Witch of the Woods: installDir: Witch of the Woods: {} launch: - /Witch of the Woods.app: + "/Witch of the Woods.app": - when: - os: mac store: steam - /Witch of the Woods.exe: + "/Witch of the Woods.exe": - when: - os: windows store: steam @@ -624933,25 +626642,25 @@ Witch of the Woods: Witch on the Holy Night (2023): steam: id: 2052410 -'Witch''s Pranks: Frog''s Fortune': +"Witch's Pranks: Frog's Fortune": installDir: - Witch's Pranks Frog's Fortune: {} + "Witch's Pranks Frog's Fortune": {} launch: - /WitchesPranks_FrogsFortune_CE.app: + "/WitchesPranks_FrogsFortune_CE.app": - when: - os: mac store: steam - /WitchesPranks_FrogsFortune_CE.exe: + "/WitchesPranks_FrogsFortune_CE.exe": - when: - os: windows store: steam steam: id: 342630 -Witch's Tales: +"Witch's Tales": installDir: - Witch's Tales: {} + "Witch's Tales": {} launch: - /WitchsTales.exe: + "/WitchsTales.exe": - when: - os: windows store: steam @@ -624961,7 +626670,7 @@ Witch-Bot Meglilo: installDir: WITCH-BOT MEGLILO: {} launch: - /meglilo.exe: + "/meglilo.exe": - when: - store: steam steam: @@ -624970,7 +626679,7 @@ WitchAction: installDir: WitchAction: {} launch: - /WitchAction.exe: + "/WitchAction.exe": - when: - os: windows store: steam @@ -624978,27 +626687,27 @@ WitchAction: id: 895860 Witchaven: files: - /PREF.DAT: + "/PREF.DAT": tags: - config when: - os: dos - /SETUP.DAT: + "/SETUP.DAT": tags: - config when: - os: dos - /SETUP.INI: + "/SETUP.INI": tags: - config when: - os: dos - /SVGM*.MAP: + "/SVGM*.MAP": tags: - save when: - os: dos - /SVGN*.DAT: + "/SVGN*.DAT": tags: - save when: @@ -625008,34 +626717,34 @@ Witchaven: installDir: Witchaven: {} launch: - /Enhanced/run-graphics-config.bat: + "/Enhanced/run-graphics-config.bat": - when: - store: steam - workingDir: /Enhanced - /Enhanced/run-setup.bat: + workingDir: "/Enhanced" + "/Enhanced/run-setup.bat": - when: - store: steam - workingDir: /Enhanced + workingDir: "/Enhanced" steam: id: 1655410 -'Witchaven II: Blood Vengeance': +"Witchaven II: Blood Vengeance": files: - /CONTROLS.CFG: + "/CONTROLS.CFG": tags: - config when: - os: dos - /PREF.DAT: + "/PREF.DAT": tags: - config when: - os: dos - /SVGM*.MAP: + "/SVGM*.MAP": tags: - save when: - os: dos - /SVGN*.DAT: + "/SVGN*.DAT": tags: - save when: @@ -625045,21 +626754,21 @@ Witchaven: installDir: Witchaven II Blood Vengeance: {} launch: - /Enhanced/run-graphics-config.bat: + "/Enhanced/run-graphics-config.bat": - when: - store: steam - workingDir: /Enhanced - /Enhanced/run-setup.bat: + workingDir: "/Enhanced" + "/Enhanced/run-setup.bat": - when: - store: steam - workingDir: /Enhanced + workingDir: "/Enhanced" steam: id: 1655430 Witchball: installDir: Witchball: {} launch: - /WITCHBALL.exe: + "/WITCHBALL.exe": - when: - os: windows store: steam @@ -625069,17 +626778,17 @@ Witchcraft: installDir: Witchcraft: {} launch: - /Witchcraft.exe: + "/Witchcraft.exe": - when: - os: windows store: steam steam: id: 577000 -'Witchcraft: Pandoras Box': +"Witchcraft: Pandoras Box": installDir: Witchcraft Pandoras Box: {} launch: - /Pandoras Box.exe: + "/Pandoras Box.exe": - when: - os: windows store: steam @@ -625087,7 +626796,7 @@ Witchcraft: id: 1203400 Witchcrafty: files: - /witchy_Data/Saves/*.pidg: + "/witchy_Data/Saves/*.pidg": tags: - save when: @@ -625097,7 +626806,7 @@ Witchcrafty: installDir: Witchcrafty: {} launch: - /witchy.exe: + "/witchy.exe": - when: - os: windows store: steam @@ -625107,92 +626816,92 @@ Witches Brew: installDir: Witches Brew: {} launch: - /WitchesBrew.app: + "/WitchesBrew.app": - when: - os: mac store: steam - /WitchesBrew.exe: + "/WitchesBrew.exe": - when: - os: windows store: steam - /WitchesBrew.sh: + "/WitchesBrew.sh": - when: - os: linux store: steam steam: id: 1008230 -'Witches'' Legacy: Hunter and the Hunted': +"Witches' Legacy: Hunter and the Hunted": installDir: - Witches' Legacy Hunter and the Hunted Collector's Edition: {} + "Witches' Legacy Hunter and the Hunted Collector's Edition": {} launch: - /WitchesLegacy_HunterAndTheHunted_CE.exe: + "/WitchesLegacy_HunterAndTheHunted_CE.exe": - when: - os: windows store: steam steam: id: 815570 -'Witches'' Legacy: Lair of the Witch Queen': +"Witches' Legacy: Lair of the Witch Queen": installDir: - Witches' Legacy Lair of the Witch Queen Collector's Edition: {} + "Witches' Legacy Lair of the Witch Queen Collector's Edition": {} launch: - /WitchesLegacy_LairOfTheWitchQueen_CE.exe: + "/WitchesLegacy_LairOfTheWitchQueen_CE.exe": - when: - os: windows store: steam steam: id: 941000 -'Witches'' Legacy: Slumbering Darkness': +"Witches' Legacy: Slumbering Darkness": installDir: - Witches' Legacy Slumbering Darkness Collector's Edition: {} + "Witches' Legacy Slumbering Darkness Collector's Edition": {} launch: - /WL5.app/Contents/MacOS/MacGameCLauncher: + "/WL5.app/Contents/MacOS/MacGameCLauncher": - when: - os: mac store: steam - /WitchesLegacy_SlumberingDarkness_CE.exe: + "/WitchesLegacy_SlumberingDarkness_CE.exe": - when: - os: windows store: steam steam: id: 586710 -'Witches'' Legacy: The Charleston Curse': +"Witches' Legacy: The Charleston Curse": installDir: - Witches' Legacy The Charleston Curse Collector's Edition: {} + "Witches' Legacy The Charleston Curse Collector's Edition": {} launch: - /WitchesLegacy_TheCharlestonCurseCE.exe: + "/WitchesLegacy_TheCharlestonCurseCE.exe": - when: - os: windows store: steam steam: id: 1074700 -'Witches'' Legacy: The Dark Throne': +"Witches' Legacy: The Dark Throne": installDir: - Witches' Legacy The Dark Throne Collector's Edition: {} + "Witches' Legacy The Dark Throne Collector's Edition": {} launch: - /WitchesLegacy6_TheDarkThrone_CE.exe: + "/WitchesLegacy6_TheDarkThrone_CE.exe": - when: - os: windows store: steam steam: id: 696000 -'Witches'' Legacy: The Ties That Bind': +"Witches' Legacy: The Ties That Bind": installDir: - Witches' Legacy The Ties That Bind Collector's Edition: {} + "Witches' Legacy The Ties That Bind Collector's Edition": {} launch: - /WitchesLegacy_TheTiesThatBind_CE.exe: + "/WitchesLegacy_TheTiesThatBind_CE.exe": - when: - store: steam steam: id: 466100 -'Witches, Heroes and Magic': +"Witches, Heroes and Magic": installDir: - 'Witches, Heroes and Magic': {} + "Witches, Heroes and Magic": {} launch: - /WHAM.exe: + "/WHAM.exe": - when: - os: windows store: steam - /Witches Heroes and Magic.app: + "/Witches Heroes and Magic.app": - when: - os: mac store: steam @@ -625202,12 +626911,12 @@ Witcheye: installDir: Witcheye: {} launch: - /Witcheye.app/Contents/MacOS/Witcheye: + "/Witcheye.app/Contents/MacOS/Witcheye": - when: - os: mac store: steam - /Witcheye.exe: - - arguments: '-single-instance' + "/Witcheye.exe": + - arguments: "-single-instance" when: - os: windows store: steam @@ -625215,12 +626924,12 @@ Witcheye: id: 1284950 Witching Tower: files: - /WitchingTower/Saved/Config/WindowsNoEditor: + "/WitchingTower/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /WitchingTower/Saved/SaveGames: + "/WitchingTower/Saved/SaveGames": tags: - save when: @@ -625233,7 +626942,7 @@ Witchinour: installDir: Witchinour: {} launch: - /Witchinour.exe: + "/Witchinour.exe": - when: - os: windows store: steam @@ -625243,7 +626952,7 @@ Witchkin: installDir: Witchkin Hide-n-Sneak Horror: {} launch: - /Witchkin.exe: + "/Witchkin.exe": - when: - os: windows store: steam @@ -625254,17 +626963,17 @@ With Loneliness: With loneliness: {} steam: id: 1030470 -'Withering Kingdom: Arcane War': +"Withering Kingdom: Arcane War": steam: id: 473650 -'Withering Kingdom: Flurry of Arrows': +"Withering Kingdom: Flurry of Arrows": steam: id: 516230 -'Within Whispers: The Fall': +"Within Whispers: The Fall": installDir: Within Whispers The Fall: {} launch: - /Within Whispers.exe: + "/Within Whispers.exe": - when: - os: windows store: steam @@ -625274,15 +626983,15 @@ Within a Rose: installDir: Within a Rose: {} launch: - /WithinaRose.app/Contents/MacOS/WithinaRose: + "/WithinaRose.app/Contents/MacOS/WithinaRose": - when: - os: mac store: steam - /WithinaRose.exe: + "/WithinaRose.exe": - when: - os: windows store: steam - /WithinaRose.sh: + "/WithinaRose.sh": - when: - os: linux store: steam @@ -625295,19 +627004,19 @@ Without A Roof (W.A.R.): installDir: WAR: {} launch: - /WAR.exe: + "/WAR.exe": - when: - store: steam steam: id: 689660 Without Escape: files: - /AppData/LocalLow/Bumpy Trail Games/Without Escape/Settings.json: + "/AppData/LocalLow/Bumpy Trail Games/Without Escape/Settings.json": tags: - config when: - os: windows - /AppData/LocalLow/Bumpy Trail Games/Without Escape/WithoutEscape.sav: + "/AppData/LocalLow/Bumpy Trail Games/Without Escape/WithoutEscape.sav": tags: - save when: @@ -625315,20 +627024,20 @@ Without Escape: installDir: Without Escape: {} launch: - /WithoutEscape.app: + "/WithoutEscape.app": - when: - os: mac store: steam - /WithoutEscape.exe: + "/WithoutEscape.exe": - when: - os: windows store: steam - /WithoutEscape.x86: + "/WithoutEscape.x86": - when: - bit: 32 os: linux store: steam - /WithoutEscape.x86_64: + "/WithoutEscape.x86_64": - when: - bit: 64 os: linux @@ -625337,17 +627046,17 @@ Without Escape: id: 720730 Without Within: files: - /game/saves/ (Manual and Quick): + "/game/saves/ (Manual and Quick)": tags: - save when: - os: windows - /renpy/config.py: + "/renpy/config.py": tags: - config when: - os: windows - /RenPy/without-within-1409958485/ (Manual and Auto): + "/RenPy/without-within-1409958485/ (Manual and Auto)": tags: - save when: @@ -625355,15 +627064,15 @@ Without Within: installDir: Without Within: {} launch: - /without_within.app: + "/without_within.app": - when: - os: mac store: steam - /without_within.exe: + "/without_within.exe": - when: - os: windows store: steam - /without_within.sh: + "/without_within.sh": - when: - os: linux store: steam @@ -625371,22 +627080,22 @@ Without Within: id: 345650 Without Within 2: files: - /saves/*.save (Copies): + "/saves/*.save (Copies)": tags: - save when: - os: windows - /saves/persistent (Copy): + "/saves/persistent (Copy)": tags: - config when: - os: windows - /RenPy/wowi2-1409958485/*.save: + "/RenPy/wowi2-1409958485/*.save": tags: - save when: - os: windows - /RenPy/wowi2-1409958485/persistent: + "/RenPy/wowi2-1409958485/persistent": tags: - config when: @@ -625394,15 +627103,15 @@ Without Within 2: installDir: Without Within 2: {} launch: - /wowi2.app: + "/wowi2.app": - when: - os: mac store: steam - /wowi2.exe: + "/wowi2.exe": - when: - os: windows store: steam - /wowi2.sh: + "/wowi2.sh": - when: - os: linux store: steam @@ -625410,22 +627119,22 @@ Without Within 2: id: 398980 Without Within 3: files: - /game/saves/*.save: + "/game/saves/*.save": tags: - save when: - os: windows - /game/saves/persistent: + "/game/saves/persistent": tags: - config when: - os: windows - /RenPy/wowi3-1409958485/*.save: + "/RenPy/wowi3-1409958485/*.save": tags: - save when: - os: windows - /RenPy/wowi3-1409958485/persistent: + "/RenPy/wowi3-1409958485/persistent": tags: - config when: @@ -625433,35 +627142,35 @@ Without Within 3: installDir: Without Within 3: {} launch: - /wowi3.app: + "/wowi3.app": - when: - os: mac store: steam - /wowi3.exe: + "/wowi3.exe": - when: - os: windows store: steam - /wowi3.sh: + "/wowi3.sh": - when: - os: linux store: steam steam: id: 676130 -'Withstand: Apotheosis': +"Withstand: Apotheosis": installDir: Withstand Apotheosis: {} launch: - /Withstand.exe: + "/Withstand.exe": - when: - os: windows store: steam steam: id: 366600 -'Withstand: Survival': +"Withstand: Survival": installDir: Withstand: {} launch: - /HoldoutGame.exe: + "/HoldoutGame.exe": - when: - bit: 64 os: windows @@ -625470,7 +627179,7 @@ Without Within 3: id: 1193100 Wizard And Minion Idle: files: - /AppData/LocalLow/Oninou/Wizard and Minion Idle/WAMISave.txt: + "/AppData/LocalLow/Oninou/Wizard and Minion Idle/WAMISave.txt": tags: - save when: @@ -625478,7 +627187,7 @@ Wizard And Minion Idle: installDir: Wizard And Minion Idle: {} launch: - /Wizard and Minion Idle.exe: + "/Wizard and Minion Idle.exe": - when: - store: steam steam: @@ -625487,11 +627196,11 @@ Wizard Battle: installDir: Wizard Battle: {} launch: - /Builds.app: + "/Builds.app": - when: - os: mac store: steam - /WizardBattle.exe: + "/WizardBattle.exe": - when: - os: windows store: steam @@ -625503,7 +627212,7 @@ Wizard Fire: installDir: Retro Classix Wizard Fire: {} launch: - /Retro Classix Wizard Fire.exe: + "/Retro Classix Wizard Fire.exe": - when: - os: windows store: steam @@ -625513,11 +627222,11 @@ Wizard Hunter 2348: installDir: Wizard Hunter 2348: {} launch: - /Wizard Hunter 2348.exe: + "/Wizard Hunter 2348.exe": - when: - os: windows store: steam - /Wizard_Hunter_2348.sh: + "/Wizard_Hunter_2348.sh": - when: - os: linux store: steam @@ -625527,7 +627236,7 @@ Wizard King: installDir: Wizard King: {} launch: - /WizardKing.exe: + "/WizardKing.exe": - when: - os: windows store: steam @@ -625537,7 +627246,7 @@ Wizard Prison: installDir: Wizard Prison: {} launch: - /Wizard Prison.exe: + "/Wizard Prison.exe": - when: - os: windows store: steam @@ -625547,7 +627256,7 @@ Wizard Slime: installDir: Wizard Slime: {} launch: - /Wizard Slime.exe: + "/Wizard Slime.exe": - when: - os: windows store: steam @@ -625562,7 +627271,7 @@ Wizard Warfare: installDir: Wizard Warfare: {} launch: - /Wizard Warfare.exe: + "/Wizard Warfare.exe": - when: - os: windows store: steam @@ -625570,51 +627279,51 @@ Wizard Warfare: id: 1056350 Wizard Wars: files: - /********: + "/********": tags: - save when: - os: dos - /WW.CFG: + "/WW.CFG": tags: - config when: - os: dos Wizard Warz: files: - /HISCORE.TBL: + "/HISCORE.TBL": tags: - save when: - os: dos Wizard of Legend: files: - /AppData/LocalLow/Contingent99/Wizard of Legend//GameData.gd: + "/AppData/LocalLow/Contingent99/Wizard of Legend//GameData.gd": tags: - save when: - os: windows - /AppData/LocalLow/Contingent99/Wizard of Legend//GameSettings.gs: + "/AppData/LocalLow/Contingent99/Wizard of Legend//GameSettings.gs": tags: - config when: - os: windows - /Library/Application Support/unity.Contingent99.Wizard of Legend/GameData.gd: + "/Library/Application Support/unity.Contingent99.Wizard of Legend/GameData.gd": tags: - save when: - os: mac - /Library/Application Support/unity.Contingent99.Wizard of Legend/GameSettings.gs: + "/Library/Application Support/unity.Contingent99.Wizard of Legend/GameSettings.gs": tags: - config when: - os: mac - /unity3d/Contingent99/Wizard of Legend/: + "/unity3d/Contingent99/Wizard of Legend/": tags: - save when: - os: linux - /unity3d/Contingent99/Wizard of Legend/prefs: + "/unity3d/Contingent99/Wizard of Legend/prefs": tags: - config when: @@ -625624,20 +627333,20 @@ Wizard of Legend: installDir: Wizard of Legend: {} launch: - /WizardOfLegend.app: + "/WizardOfLegend.app": - when: - os: mac store: steam - /WizardOfLegend.exe: + "/WizardOfLegend.exe": - when: - os: windows store: steam - /WizardOfLegend.x86: + "/WizardOfLegend.x86": - when: - bit: 32 os: linux store: steam - /WizardOfLegend.x86_64: + "/WizardOfLegend.x86_64": - when: - bit: 64 os: linux @@ -625650,7 +627359,7 @@ Wizard of Legend: id: 445980 Wizard with a Gun: files: - /AppData/LocalLow/GalvanicGames/wizardwithagun//DisplaySettings: + "/AppData/LocalLow/GalvanicGames/wizardwithagun//DisplaySettings": tags: - save when: @@ -625659,24 +627368,18 @@ Wizard with a Gun: id: 1995982708 steam: id: 1150530 -Wizard's Crown: +"Wizard's Crown": gog: id: 1718928173 Wizard101: - files: - /Bin/config.xml: - tags: - - config - when: - - os: windows installDir: Wizard101: {} launch: - /Wizard101.app/Contents/MacOS/Wizard101: + "/Wizard101.app/Contents/MacOS/Wizard101": - when: - os: mac store: steam - /Wizard101.exe: + "/Wizard101.exe": - when: - os: windows store: steam @@ -625686,11 +627389,11 @@ WizardChess: installDir: WizardChess: {} launch: - /WizardChess.app: + "/WizardChess.app": - when: - os: mac store: steam - /WizardChess/WizardChess.exe: + "/WizardChess/WizardChess.exe": - when: - os: windows store: steam @@ -625700,7 +627403,7 @@ WizardCraft: installDir: WizardCraft: {} launch: - /WizardCraft.exe: + "/WizardCraft.exe": - when: - store: steam steam: @@ -625709,7 +627412,7 @@ WizardCraft Colonies: installDir: WizardCraftColonies: {} launch: - /WizardCraft Colonies.exe: + "/WizardCraft Colonies.exe": - when: - bit: 64 os: windows @@ -625720,19 +627423,19 @@ Wizardas: installDir: Wizardas: {} launch: - /Wizardas.exe: + "/Wizardas.exe": - when: - store: steam steam: id: 1055280 -'Wizardians: In Defence of Magic': +"Wizardians: In Defence of Magic": steam: id: 1173420 Wizardpunk: installDir: Wizardpunk: {} launch: - /WizardPunk.exe: + "/WizardPunk.exe": - when: - bit: 64 os: windows @@ -625741,12 +627444,12 @@ Wizardpunk: id: 1196240 Wizardry 8: files: - /*.CFG: + "/*.CFG": tags: - config when: - os: windows - /Saves: + "/Saves": tags: - save when: @@ -625756,19 +627459,19 @@ Wizardry 8: installDir: Wizardry8: {} launch: - /3DSetup.exe: + "/3DSetup.exe": - when: - os: windows store: steam - /Wiz8.exe: + "/Wiz8.exe": - when: - os: windows store: steam - /Wizardry 8.app: + "/Wizardry 8.app": - when: - os: mac store: steam - /nglide_config.exe: + "/nglide_config.exe": - when: - os: windows store: steam @@ -625776,12 +627479,12 @@ Wizardry 8: id: 245450 Wizardry Gold: files: - /*.SGM: + "/*.SGM": tags: - save when: - os: windows - /CDDATA.INI: + "/CDDATA.INI": tags: - config when: @@ -625794,54 +627497,54 @@ Wizardry Gold: installDir: Wizardry7: {} launch: - /Wizardry 7.app: + "/Wizardry 7.app": - when: - os: mac store: steam - /dosbox_linux/daum/launch_wizardry7_game_daum.sh: + "/dosbox_linux/daum/launch_wizardry7_game_daum.sh": - when: - os: linux store: steam - workingDir: /dosbox_linux/daum - /dosbox_linux/launch_wizardry7_game.sh: + workingDir: "/dosbox_linux/daum" + "/dosbox_linux/launch_wizardry7_game.sh": - when: - os: linux store: steam - workingDir: /dosbox_linux - /dosbox_windows/daum/dosbox.exe: - - arguments: '-conf dosbox_wizardry7.conf -conf dosbox_wizardry7_launch_windows.conf -noconsole' + workingDir: "/dosbox_linux" + "/dosbox_windows/daum/dosbox.exe": + - arguments: "-conf dosbox_wizardry7.conf -conf dosbox_wizardry7_launch_windows.conf -noconsole" when: - os: windows store: steam - workingDir: /dosbox_windows/daum - /dosbox_windows/dosbox.exe: - - arguments: '-conf dosbox_wizardry7.conf -conf dosbox_wizardry7_launch_windows.conf -noconsole' + workingDir: "/dosbox_windows/daum" + "/dosbox_windows/dosbox.exe": + - arguments: "-conf dosbox_wizardry7.conf -conf dosbox_wizardry7_launch_windows.conf -noconsole" when: - os: windows store: steam - workingDir: /dosbox_windows - /wizardry7gold/WIZARD.EXE: + workingDir: "/dosbox_windows" + "/wizardry7gold/WIZARD.EXE": - when: - os: windows store: steam - workingDir: /wizardry7gold + workingDir: "/wizardry7gold" steam: id: 245430 -'Wizardry V: Heart of the Maelstrom': +"Wizardry V: Heart of the Maelstrom": files: - /SAVE5.DSK: + "/SAVE5.DSK": tags: - save when: - os: dos -'Wizardry: Bane of the Cosmic Forge': +"Wizardry: Bane of the Cosmic Forge": files: - /*.DBS: + "/*.DBS": tags: - save when: - os: dos - /SCENARIO.HDR: + "/SCENARIO.HDR": tags: - config when: @@ -625854,42 +627557,42 @@ Wizardry Gold: installDir: Wizardry6: {} launch: - /Wizardry 6.app: + "/Wizardry 6.app": - when: - os: mac store: steam - /dosbox_linux/daum/launch_wizardry6_game_daum.sh: + "/dosbox_linux/daum/launch_wizardry6_game_daum.sh": - when: - os: linux store: steam - workingDir: /dosbox_linux/daum - /dosbox_linux/launch_wizardry6_game.sh: + workingDir: "/dosbox_linux/daum" + "/dosbox_linux/launch_wizardry6_game.sh": - when: - os: linux store: steam - workingDir: /dosbox_linux - /dosbox_windows/daum/dosbox.exe: - - arguments: '-conf dosbox_wizardry6.conf -conf dosbox_wizardry6_launch_windows.conf -noconsole' + workingDir: "/dosbox_linux" + "/dosbox_windows/daum/dosbox.exe": + - arguments: "-conf dosbox_wizardry6.conf -conf dosbox_wizardry6_launch_windows.conf -noconsole" when: - os: windows store: steam - workingDir: /dosbox_windows/daum - /dosbox_windows/dosbox.exe: - - arguments: '-conf dosbox_wizardry6.conf -conf dosbox_wizardry6_launch_windows.conf -noconsole' + workingDir: "/dosbox_windows/daum" + "/dosbox_windows/dosbox.exe": + - arguments: "-conf dosbox_wizardry6.conf -conf dosbox_wizardry6_launch_windows.conf -noconsole" when: - os: windows store: steam - workingDir: /dosbox_windows + workingDir: "/dosbox_windows" steam: id: 245410 -'Wizardry: Crusaders of the Dark Savant': +"Wizardry: Crusaders of the Dark Savant": files: - /SAVEGAME.DBS: + "/SAVEGAME.DBS": tags: - save when: - os: dos - /SCENARIO.HDR: + "/SCENARIO.HDR": tags: - config when: @@ -625902,49 +627605,49 @@ Wizardry Gold: installDir: Wizardry7: {} launch: - /Wizardry 7.app: + "/Wizardry 7.app": - when: - os: mac store: steam - /dosbox_linux/daum/launch_wizardry7_game_daum.sh: + "/dosbox_linux/daum/launch_wizardry7_game_daum.sh": - when: - os: linux store: steam - workingDir: /dosbox_linux/daum - /dosbox_linux/launch_wizardry7_game.sh: + workingDir: "/dosbox_linux/daum" + "/dosbox_linux/launch_wizardry7_game.sh": - when: - os: linux store: steam - workingDir: /dosbox_linux - /dosbox_windows/daum/dosbox.exe: - - arguments: '-conf dosbox_wizardry7.conf -conf dosbox_wizardry7_launch_windows.conf -noconsole' + workingDir: "/dosbox_linux" + "/dosbox_windows/daum/dosbox.exe": + - arguments: "-conf dosbox_wizardry7.conf -conf dosbox_wizardry7_launch_windows.conf -noconsole" when: - os: windows store: steam - workingDir: /dosbox_windows/daum - /dosbox_windows/dosbox.exe: - - arguments: '-conf dosbox_wizardry7.conf -conf dosbox_wizardry7_launch_windows.conf -noconsole' + workingDir: "/dosbox_windows/daum" + "/dosbox_windows/dosbox.exe": + - arguments: "-conf dosbox_wizardry7.conf -conf dosbox_wizardry7_launch_windows.conf -noconsole" when: - os: windows store: steam - workingDir: /dosbox_windows - /wizardry7gold/WIZARD.EXE: + workingDir: "/dosbox_windows" + "/wizardry7gold/WIZARD.EXE": - when: - os: windows store: steam - workingDir: /wizardry7gold + workingDir: "/wizardry7gold" steam: id: 245430 -'Wizardry: Knight of Diamonds - The Second Scenario': +"Wizardry: Knight of Diamonds - The Second Scenario": files: - /SAVE2.DSK: + "/SAVE2.DSK": tags: - save when: - os: dos -'Wizardry: Labyrinth of Lost Souls': +"Wizardry: Labyrinth of Lost Souls": files: - /Wizardry_LoLS: + "/Wizardry_LoLS": tags: - config - save @@ -625958,41 +627661,41 @@ Wizardry Gold: installDir: Wizardry Labyrinth of Lost Souls: {} launch: - /LoLS_win32.exe: + "/LoLS_win32.exe": - when: - os: windows store: steam steam: id: 948640 -'Wizardry: Legacy of Llylgamyn - The Third Scenario': +"Wizardry: Legacy of Llylgamyn - The Third Scenario": files: - /SAVE3.DSK: + "/SAVE3.DSK": tags: - save when: - os: dos -'Wizardry: Llylgamyn Saga': +"Wizardry: Llylgamyn Saga": files: - /Llylsave.dat: + "/Llylsave.dat": tags: - save when: - os: windows - /llylsys.dat: + "/llylsys.dat": tags: - config when: - os: windows -'Wizardry: Proving Grounds of the Mad Overlord': +"Wizardry: Proving Grounds of the Mad Overlord": files: - /SAVE1.DSK: + "/SAVE1.DSK": tags: - save when: - os: dos -'Wizardry: Proving Grounds of the Mad Overlord (2023)': +"Wizardry: Proving Grounds of the Mad Overlord (2023)": files: - /murphy/Saved/SaveGames/*.sav: + "/murphy/Saved/SaveGames/*.sav": tags: - save when: @@ -626002,19 +627705,19 @@ Wizardry Gold: installDir: Wizardry: {} launch: - /wizardry.exe: + "/wizardry.exe": - when: - store: steam steam: id: 2518960 -'Wizardry: The Five Ordeals': +"Wizardry: The Five Ordeals": files: - /AppData/LocalLow/59Studio/WizardryFoV2: + "/AppData/LocalLow/59Studio/WizardryFoV2": tags: - config when: - os: windows - /AppData/LocalLow/59Studio/WizardryFoV2/savedata: + "/AppData/LocalLow/59Studio/WizardryFoV2/savedata": tags: - save when: @@ -626026,14 +627729,14 @@ Wizardry Gold: installDir: Wizardry The Five Ordeals: {} launch: - /WizardryFoV2.exe: + "/WizardryFoV2.exe": - when: - store: steam steam: id: 1308700 -'Wizardry: The Return of Werdna - The Fourth Scenario': +"Wizardry: The Return of Werdna - The Fourth Scenario": files: - /SAVE4.DSK: + "/SAVE4.DSK": tags: - save when: @@ -626042,17 +627745,17 @@ Wizards: installDir: Wizards: {} launch: - /Wizards.app: + "/Wizards.app": - when: - os: mac store: steam - /java/bin/java: - - arguments: '-jar desktop-1.0.jar' + "/java/bin/java": + - arguments: "-jar desktop-1.0.jar" when: - os: linux store: steam - /java/bin/javaw.exe: - - arguments: '-jar desktop-1.0.jar' + "/java/bin/javaw.exe": + - arguments: "-jar desktop-1.0.jar" when: - os: windows store: steam @@ -626060,7 +627763,7 @@ Wizards: id: 1163690 Wizards & Warriors: files: - /save: + "/save": tags: - save when: @@ -626071,7 +627774,7 @@ Wizards Tourney: installDir: Wizards Tourney: {} launch: - /WizardsTourney.exe: + "/WizardsTourney.exe": - when: - os: windows store: steam @@ -626081,27 +627784,27 @@ Wizards and Warlords: installDir: WizardsWarlords: {} launch: - /ww.exe: + "/ww.exe": - when: - bit: 32 os: windows store: steam - /ww64.exe: + "/ww64.exe": - when: - bit: 64 os: windows store: steam - /wwlinux.x86: + "/wwlinux.x86": - when: - bit: 32 os: linux store: steam - /wwlinux.x86_64: + "/wwlinux.x86_64": - when: - bit: 64 os: linux store: steam - /wwmac.app/Contents/MacOS/wwmac: + "/wwmac.app/Contents/MacOS/wwmac": - when: - os: mac store: steam @@ -626111,30 +627814,30 @@ Wizards of Brandel: installDir: Wizards of Brandel: {} launch: - /Wizards of Brandel.exe: + "/Wizards of Brandel.exe": - when: - os: windows store: steam steam: id: 1117990 -Wizards' Clash: +"Wizards' Clash": steam: id: 350710 -'Wizards: Home': +"Wizards: Home": installDir: Wizards Home: {} launch: - /WizardsHome.exe: + "/WizardsHome.exe": - when: - os: windows store: steam steam: id: 459050 -'Wizards: Wand of Epicosity': +"Wizards: Wand of Epicosity": installDir: Tobuscus Adventures - Wizards: {} launch: - /Wizards-PC.exe: + "/Wizards-PC.exe": - when: - os: windows store: steam @@ -626143,11 +627846,11 @@ Wizards' Clash: Wizhood: steam: id: 662640 -'Wizhood: The Epic of Freedom': +"Wizhood: The Epic of Freedom": installDir: Wizhood The Epic of Freedom: {} launch: - /wizhood2.exe: + "/wizhood2.exe": - when: - os: windows store: steam @@ -626155,19 +627858,19 @@ Wizhood: id: 1125620 Wizorb: files: - /Library/Application Support/Tribute Games/Wizorb: + "/Library/Application Support/Tribute Games/Wizorb": tags: - config - save when: - os: mac - /userdata//207420: + "/userdata//207420": tags: - config - save when: - store: steam - /Tribute Games/Wizorb: + "/Tribute Games/Wizorb": tags: - config - save @@ -626176,33 +627879,33 @@ Wizorb: installDir: Wizorb: {} launch: - /Wizorb: + "/Wizorb": - when: - os: linux store: steam - /Wizorb.app/Contents/MacOS/Wizorb: + "/Wizorb.app/Contents/MacOS/Wizorb": - when: - os: mac store: steam - /Wizorb.exe: + "/Wizorb.exe": - when: - os: windows store: steam steam: id: 207420 -'Wizrogue: Labyrinth of Wizardry': +"Wizrogue: Labyrinth of Wizardry": installDir: Wizrogue: {} launch: - /Wizrogue.app: + "/Wizrogue.app": - when: - os: mac store: steam - /Wizrogue.exe: + "/Wizrogue.exe": - when: - os: windows store: steam - /Wizrogue.x86: + "/Wizrogue.x86": - when: - os: linux store: steam @@ -626213,25 +627916,25 @@ WizzBall: WizzBall: {} steam: id: 629780 -'Wo Long: Fallen Dynasty': +"Wo Long: Fallen Dynasty": files: - /KoeiTecmo/Wolong/Savedata: + "/KoeiTecmo/Wolong/Savedata": tags: - config when: - os: windows store: microsoft - /KoeiTecmo/Wolong/Savedata//SAVEDATA00: + "/KoeiTecmo/Wolong/Savedata//SAVEDATA00": tags: - save when: - os: windows - /KoeiTecmo/Wolong/Savedata//SYSTEMSAVEDATA00: + "/KoeiTecmo/Wolong/Savedata//SYSTEMSAVEDATA00": tags: - config when: - os: windows - /Packages/946B6A6E.WoLongFallenDynasty_dkffhzhmh6pmy/SystemAppData/wgs: + "/Packages/946B6A6E.WoLongFallenDynasty_dkffhzhmh6pmy/SystemAppData/wgs": tags: - save when: @@ -626240,7 +627943,7 @@ WizzBall: installDir: WoLongFallenDynasty: {} launch: - /WoLong.exe: + "/WoLong.exe": - when: - store: steam steam: @@ -626249,7 +627952,7 @@ Wo Yao Da: installDir: Wo Yao Da: {} launch: - /WoYaoDa.exe: + "/WoYaoDa.exe": - when: - bit: 64 os: windows @@ -626260,7 +627963,7 @@ WoMen in Science: installDir: WoMen in Science: {} launch: - /Women in Science.exe: + "/Women in Science.exe": - when: - os: windows store: steam @@ -626271,7 +627974,7 @@ WoW Hentai!: id: 1008460 Woah Dave!: files: - /Woah Dave!/Settings.plist: + "/Woah Dave!/Settings.plist": tags: - config - save @@ -626280,15 +627983,15 @@ Woah Dave!: installDir: WoahDave: {} launch: - /WoahDave: + "/WoahDave": - when: - os: linux store: steam - /WoahDave.app/Contents/MacOS/WoahDave: + "/WoahDave.app/Contents/MacOS/WoahDave": - when: - os: mac store: steam - /WoahDave.exe: + "/WoahDave.exe": - when: - os: windows store: steam @@ -626298,16 +628001,16 @@ Wobbledogs: installDir: Wobbledogs: {} launch: - /Wobbledogs.app: + "/Wobbledogs.app": - when: - os: mac store: steam - /Wobbledogs_Windows_32/Wobbledogs.exe: + "/Wobbledogs_Windows_32/Wobbledogs.exe": - when: - bit: 32 os: windows store: steam - /Wobbledogs_Windows_64/Wobbledogs.exe: + "/Wobbledogs_Windows_64/Wobbledogs.exe": - when: - bit: 64 os: windows @@ -626318,7 +628021,7 @@ Wobbly Jungle: installDir: Wobbly Jungle: {} launch: - /Wobbly Jungle.exe: + "/Wobbly Jungle.exe": - when: - store: steam steam: @@ -626332,7 +628035,7 @@ Wojak Rush: installDir: WojakRush003: {} launch: - /WojakRush003/WojakRush.exe: + "/WojakRush003/WojakRush.exe": - when: - os: windows store: steam @@ -626342,28 +628045,28 @@ Wojdan: installDir: Wojdan: {} launch: - /Wojdan-1.0-steam/Wojdan-1.0.app: + "/Wojdan-1.0-steam/Wojdan-1.0.app": - when: - os: mac store: steam - /Wojdan-1.0-steam/Wojdan-1.0.exe: + "/Wojdan-1.0-steam/Wojdan-1.0.exe": - when: - os: windows store: steam - /Wojdan-1.0-steam/Wojdan-1.0.sh: + "/Wojdan-1.0-steam/Wojdan-1.0.sh": - when: - os: linux store: steam steam: id: 573050 -'Wolcen: Lords of Mayhem': +"Wolcen: Lords of Mayhem": files: - /Saved Games/wolcen/savegames: + "/Saved Games/wolcen/savegames": tags: - save when: - os: windows - /steamapps/common/wolcen/system.cfg: + "/steamapps/common/wolcen/system.cfg": tags: - config when: @@ -626374,7 +628077,7 @@ Wojdan: installDir: Wolcen: {} launch: - /win_x64/Wolcen.exe: + "/win_x64/Wolcen.exe": - when: - bit: 64 os: windows @@ -626390,7 +628093,7 @@ Wolf & Rabbit: installDir: Wolf&Rabbit: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: @@ -626399,7 +628102,7 @@ Wolf Balls: installDir: Wolf Balls: {} launch: - /Wolf_Balls.exe: + "/Wolf_Balls.exe": - when: - bit: 64 os: windows @@ -626410,21 +628113,21 @@ Wolf Gang: installDir: Wolf Gang: {} launch: - /Wolf Gang.app/Contents/MacOS/Wolf Gang: + "/Wolf Gang.app/Contents/MacOS/Wolf Gang": - when: - os: mac store: steam - /Wolf Gang.exe: + "/Wolf Gang.exe": - when: - bit: 64 os: windows store: steam - /Wolf Gang.x86: + "/Wolf Gang.x86": - when: - bit: 32 os: linux store: steam - /Wolf Gang.x86_64: + "/Wolf Gang.x86_64": - when: - bit: 64 os: linux @@ -626441,7 +628144,7 @@ Wolf Simulator: id: 485420 Wolf Tails: files: - /game/saves: + "/game/saves": tags: - save when: @@ -626449,15 +628152,15 @@ Wolf Tails: installDir: Wolf Tails: {} launch: - /WolfTails.app: + "/WolfTails.app": - when: - os: mac store: steam - /WolfTails.exe: + "/WolfTails.exe": - when: - os: windows store: steam - /WolfTails.sh: + "/WolfTails.sh": - when: - os: linux store: steam @@ -626467,28 +628170,28 @@ Wolf or Boy: installDir: Wolf or Boy: {} launch: - /Wolf or Boy.exe: + "/Wolf or Boy.exe": - when: - os: windows store: steam steam: id: 1030330 -Wolf's Fury: +"Wolf's Fury": installDir: - Wolf's Fury: {} + "Wolf's Fury": {} launch: - /Game.exe: - - arguments: '-gl' + "/Game.exe": + - arguments: "-gl" when: - os: windows store: steam steam: id: 619270 -'Wolf: The Evolution Story': +"Wolf: The Evolution Story": installDir: Wolf The Evolution - Online RPG: {} launch: - /Build_003.exe: + "/Build_003.exe": - when: - os: windows store: steam @@ -626498,30 +628201,30 @@ WolfQuest: installDir: WolfQuest: {} launch: - /WolfQuest.app: + "/WolfQuest.app": - when: - bit: 64 os: mac store: steam - /WolfQuest.exe: + "/WolfQuest.exe": - when: - os: windows store: steam steam: id: 431180 -'WolfQuest: Anniversary Edition': +"WolfQuest: Anniversary Edition": installDir: WolfQuest Anniversary Edition: {} launch: - /WolfQuestAE.app: + "/WolfQuestAE.app": - when: - os: mac store: steam - /WolfQuestAE.exe: + "/WolfQuestAE.exe": - when: - os: windows store: steam - /WolfQuestAE.x86_64: + "/WolfQuestAE.x86_64": - when: - bit: 64 os: linux @@ -626532,7 +628235,7 @@ WolfWars: installDir: WolfWars: {} launch: - /wolfwars.exe: + "/wolfwars.exe": - when: - os: windows store: steam @@ -626540,12 +628243,12 @@ WolfWars: id: 340570 Wolfenstein: files: - /id Software/WolfSP/base: + "/id Software/WolfSP/base": tags: - config when: - os: windows - /id Software/WolfSP/base/savegames: + "/id Software/WolfSP/base/savegames": tags: - save when: @@ -626553,20 +628256,20 @@ Wolfenstein: installDir: Wolfenstein: {} launch: - /mp.bat: + "/mp.bat": - when: - store: steam - /server.bat: + "/server.bat": - when: - store: steam - /sp.bat: + "/sp.bat": - when: - store: steam steam: id: 10170 Wolfenstein 3D: files: - /SAVEGAM*.WL6: + "/SAVEGAM*.WL6": tags: - save when: @@ -626575,25 +628278,25 @@ Wolfenstein 3D: id: 1441705226 id: gogExtra: - - 1778420505 - 1441705046 + - 1778420505 installDir: Wolfenstein 3D: {} launch: - /base/dosbox.exe: - - arguments: base\\Wolf3d.exe -conf base\\wolf3d.conf -fullscreen -exit + "/base/dosbox.exe": + - arguments: "base\\\\Wolf3d.exe -conf base\\\\wolf3d.conf -fullscreen -exit" when: - store: steam steam: id: 2270 -'Wolfenstein II: The New Colossus': +"Wolfenstein II: The New Colossus": files: - /Saved Games/MachineGames/Wolfenstein II The New Colossus/base/Wolfenstein II The New ColossusConfig.cfg: + "/Saved Games/MachineGames/Wolfenstein II The New Colossus/base/Wolfenstein II The New ColossusConfig.cfg": tags: - config when: - os: windows - /Saved Games/MachineGames/Wolfenstein II The New Colossus/base/savegame.user: + "/Saved Games/MachineGames/Wolfenstein II The New Colossus/base/savegame.user": tags: - save when: @@ -626602,39 +628305,39 @@ Wolfenstein 3D: id: 1320703337 id: gogExtra: - - 1847884051 - - 1285433790 - - 1207466888 - - 1463694576 - - 1982055340 - 1150422934 + - 1207466888 + - 1285433790 + - 1463694576 - 1615271665 + - 1847884051 + - 1982055340 steamExtra: - - 650500 - - 754730 - 624620 - 624621 - 624622 - 624740 - 650410 + - 650500 + - 754730 installDir: Wolfenstein.II.The.New.Colossus: {} launch: - /NewColossus_x64vk.exe: + "/NewColossus_x64vk.exe": - when: - bit: 64 os: windows store: steam steam: id: 612880 -'Wolfenstein: Cyberpilot': +"Wolfenstein: Cyberpilot": files: - /Saved Games/Arkane Studios/Wolfenstein Cyberpilot/base/Wolfenstein CyberpilotConfig.local: + "/Saved Games/Arkane Studios/Wolfenstein Cyberpilot/base/Wolfenstein CyberpilotConfig.local": tags: - config when: - os: windows - /Saved Games/Arkane Studios/Wolfenstein Cyberpilot/base/savegame.user: + "/Saved Games/Arkane Studios/Wolfenstein Cyberpilot/base/savegame.user": tags: - save when: @@ -626643,24 +628346,24 @@ Wolfenstein 3D: Wolfenstein Cyberpilot: {} steam: id: 1056970 -'Wolfenstein: Enemy Territory': +"Wolfenstein: Enemy Territory": files: - /etmain: + "/etmain": tags: - config when: - os: windows - /.etwolf: + "/.etwolf": tags: - config when: - os: linux - /Library/Application Support/Wolfenstein ET: + "/Library/Application Support/Wolfenstein ET": tags: - config when: - os: mac - /PunkBuster/ET: + "/PunkBuster/ET": tags: - config when: @@ -626670,19 +628373,19 @@ Wolfenstein 3D: installDir: Wolfenstein Enemy Territory: {} launch: - /et.exe: + "/et.exe": - when: - store: steam steam: id: 1873030 -'Wolfenstein: The New Order': +"Wolfenstein: The New Order": files: - /Saved Games/MachineGames/Wolfenstein The New Order/base/savegame: + "/Saved Games/MachineGames/Wolfenstein The New Order/base/savegame": tags: - save when: - os: windows - /Saved Games/MachineGames/Wolfenstein The New Order/base/wolfConfig.cfg: + "/Saved Games/MachineGames/Wolfenstein The New Order/base/wolfConfig.cfg": tags: - config when: @@ -626695,21 +628398,21 @@ Wolfenstein 3D: installDir: Wolfenstein.The.New.Order: {} launch: - /WolfNewOrder_x64.exe: + "/WolfNewOrder_x64.exe": - when: - bit: 64 os: windows store: steam steam: id: 201810 -'Wolfenstein: The Old Blood': +"Wolfenstein: The Old Blood": files: - /Saved Games/MachineGames/Wolfenstein The Old Blood/base/savegame: + "/Saved Games/MachineGames/Wolfenstein The Old Blood/base/savegame": tags: - save when: - os: windows - /Saved Games/MachineGames/Wolfenstein The Old Blood/base/wolftobConfig.cfg: + "/Saved Games/MachineGames/Wolfenstein The Old Blood/base/wolftobConfig.cfg": tags: - config when: @@ -626722,26 +628425,26 @@ Wolfenstein 3D: installDir: Wolfenstein The Old Blood: {} launch: - /WolfOldBlood_x64.exe: + "/WolfOldBlood_x64.exe": - when: - bit: 64 os: windows store: steam steam: id: 350080 -'Wolfenstein: Youngblood': +"Wolfenstein: Youngblood": files: - /Saved Games/MachineGames/Wolfenstein Youngblood/base: + "/Saved Games/MachineGames/Wolfenstein Youngblood/base": tags: - config when: - os: windows - /Saved Games/MachineGames/Wolfenstein Youngblood/base/savegame.user/: + "/Saved Games/MachineGames/Wolfenstein Youngblood/base/savegame.user/": tags: - save when: - os: windows - /Saved Games/MachineGames/Wolfenstein Youngblood/base/savegame.xbuser/: + "/Saved Games/MachineGames/Wolfenstein Youngblood/base/savegame.xbuser/": tags: - save when: @@ -626750,7 +628453,7 @@ Wolfenstein 3D: installDir: Wolfenstein Youngblood: {} launch: - /Youngblood_x64vk.exe: + "/Youngblood_x64vk.exe": - when: - bit: 64 os: windows @@ -626761,7 +628464,7 @@ Wolfgate: installDir: Wolfgate: {} launch: - /WolfgateLauncher.exe: + "/WolfgateLauncher.exe": - when: - os: windows store: steam @@ -626771,11 +628474,11 @@ Wolflame: installDir: Wolflame: {} launch: - /WOLFLAME.exe: + "/WOLFLAME.exe": - when: - os: windows store: steam - /Wolflame: + "/Wolflame": - when: - os: linux store: steam @@ -626785,11 +628488,11 @@ Wolflord - Werewolf Online: installDir: Wolflord: {} launch: - /Wolflord.exe: + "/Wolflord.exe": - when: - os: windows store: steam - /Wolflord_mac.app: + "/Wolflord_mac.app": - when: - os: mac store: steam @@ -626799,7 +628502,7 @@ Wolfpack: installDir: Wolfpack: {} launch: - /Wolfpack.exe: + "/Wolfpack.exe": - when: - bit: 64 os: windows @@ -626810,7 +628513,7 @@ Wolfsong: installDir: Wolfsong: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -626822,7 +628525,7 @@ Wolfstride: installDir: Wolfstride: {} launch: - /Wolfstride.exe: + "/Wolfstride.exe": - when: - os: windows store: steam @@ -626833,40 +628536,40 @@ Wolves Team: wolves team: {} steam: id: 1145580 -Woman's Prison: +"Woman's Prison": installDir: - Woman's Prison: {} + "Woman's Prison": {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: id: 1527980 -Woman's body: +"Woman's body": installDir: - Woman's body: {} + "Woman's body": {} launch: - /Woman's body.exe: + "/Woman's body.exe": - when: - os: windows store: steam steam: id: 981160 -'Woman''s body: For adults': +"Woman's body: For adults": installDir: - Woman's body For adults: {} + "Woman's body For adults": {} launch: - /Woman's body - For adults.exe: + "/Woman's body - For adults.exe": - when: - os: windows store: steam steam: id: 1027230 -'Woman''s body: For adults 2': +"Woman's body: For adults 2": installDir: - Woman's body For adults 2: {} + "Woman's body For adults 2": {} launch: - /Woman's body - For adults 2.exe: + "/Woman's body - For adults 2.exe": - when: - os: windows store: steam @@ -626876,27 +628579,27 @@ Womb Room: installDir: Womb Room: {} launch: - /macBuild.app: + "/macBuild.app": - when: - os: mac store: steam steam: id: 426010 -Women's Soccer Manager: +"Women's Soccer Manager": installDir: - Women's Soccer Manager: {} + "Women's Soccer Manager": {} launch: - /wsm.exe: + "/wsm.exe": - when: - os: windows store: steam steam: id: 850230 -Won't You Be My Laser?: +"Won't You Be My Laser?": installDir: - Won't You Be My Laser: {} + "Won't You Be My Laser": {} launch: - /Fireline.exe: + "/Fireline.exe": - when: - os: windows store: steam @@ -626906,11 +628609,11 @@ Wondee: installDir: Wondee: {} launch: - /wondee.app: + "/wondee.app": - when: - os: mac store: steam - /wondee.exe: + "/wondee.exe": - when: - os: windows store: steam @@ -626919,24 +628622,24 @@ Wondee: Wonder Blade: steam: id: 1040090 -'Wonder Boy III: Monster Lair': +"Wonder Boy III: Monster Lair": files: - /SEGA Genesis Classics/0045: + "/SEGA Genesis Classics/0045": tags: - save when: - os: windows - /SEGA Genesis Classics/setup.dat: + "/SEGA Genesis Classics/setup.dat": tags: - config when: - os: windows - /SEGA Mega Drive Classics/0045: + "/SEGA Mega Drive Classics/0045": tags: - save when: - os: windows - /SEGA Mega Drive Classics/setup.dat: + "/SEGA Mega Drive Classics/setup.dat": tags: - config when: @@ -626947,7 +628650,7 @@ Wonder Boy Returns: installDir: WonderBoyReturns: {} launch: - /WonderBoyReturns.exe: + "/WonderBoyReturns.exe": - when: - os: windows store: steam @@ -626957,7 +628660,7 @@ Wonder Boy Returns Remix: installDir: Wonder Boy Returns Remix: {} launch: - /WonderBoy.exe: + "/WonderBoy.exe": - when: - os: windows store: steam @@ -626965,31 +628668,31 @@ Wonder Boy Returns Remix: id: 1112240 Wonder Boy in Monster World: files: - /SEGA Genesis Classics/0057: + "/SEGA Genesis Classics/0057": tags: - save when: - os: windows - /SEGA Genesis Classics/setup.dat: + "/SEGA Genesis Classics/setup.dat": tags: - config when: - os: windows - /SEGA Mega Drive Classics/0057: + "/SEGA Mega Drive Classics/0057": tags: - save when: - os: windows - /SEGA Mega Drive Classics/setup.dat: + "/SEGA Mega Drive Classics/setup.dat": tags: - config when: - os: windows steam: id: 211209 -'Wonder Boy: Asha in Monster World': +"Wonder Boy: Asha in Monster World": files: - /MW4_Data/SaveData: + "/MW4_Data/SaveData": tags: - save when: @@ -627002,40 +628705,40 @@ Wonder Boy in Monster World: - config steam: id: 1420080 -'Wonder Boy: The Dragon''s Trap': +"Wonder Boy: The Dragon's Trap": files: - /bin_pc/config: + "/bin_pc/config": tags: - config when: - os: windows - /Library/Application Support/Lizardcube/The Dragon's Trap: + "/Library/Application Support/Lizardcube/The Dragon's Trap": tags: - config - save when: - os: mac - /Lizardcube/The Dragon's Trap: + "/Lizardcube/The Dragon's Trap": tags: - save when: - os: windows - /Lizardcube/The Dragon's Trap/GameSlot0*.sav: + "/Lizardcube/The Dragon's Trap/GameSlot0*.sav": tags: - save when: - - store: epic - /Lizardcube/The Dragon's Trap/Settings.cfg: + - os: windows + "/Lizardcube/The Dragon's Trap/Settings.cfg": tags: - config when: - - store: epic - /Lizardcube/The Dragon's Trap: + - os: windows + "/Lizardcube/The Dragon's Trap": tags: - config when: - os: linux - /Lizardcube/The Dragon's Trap: + "/Lizardcube/The Dragon's Trap": tags: - save when: @@ -627043,28 +628746,28 @@ Wonder Boy in Monster World: gog: id: 1606234979 installDir: - Wonder Boy The Dragon's Trap: {} + "Wonder Boy The Dragon's Trap": {} launch: - /Wonder Boy.app/Contents/MacOS/WonderBoy: + "/Wonder Boy.app/Contents/MacOS/WonderBoy": - when: - os: mac store: steam - /WonderBoy: + "/WonderBoy": - when: - os: linux store: steam - /exe32/wb.exe: + "/exe32/wb.exe": - when: - bit: 32 os: windows store: steam - workingDir: /exe32 - /exe64/wb.exe: + workingDir: "/exe32" + "/exe64/wb.exe": - when: - bit: 64 os: windows store: steam - workingDir: /exe64 + workingDir: "/exe64" steam: id: 543260 Wonder Cat: @@ -627082,11 +628785,11 @@ Wonder Wickets: installDir: wonderwickets: {} launch: - /Wonder Wickets.app: + "/Wonder Wickets.app": - when: - os: mac store: steam - /WonderWickets-Release.exe: + "/WonderWickets-Release.exe": - when: - os: windows store: steam @@ -627096,19 +628799,19 @@ WonderCat Adventures: installDir: WonderCat Adventures: {} launch: - /WonderCatAdventures.exe: + "/WonderCatAdventures.exe": - when: - store: steam steam: id: 384120 Wonderful Everyday Down the Rabbit-Hole: files: - /UserData: + "/UserData": tags: - save when: - os: windows - /steamapps/common/Wonderful Everyday Down the Rabbit-Hole/UserData: + "/steamapps/common/Wonderful Everyday Down the Rabbit-Hole/UserData": tags: - save when: @@ -627117,7 +628820,7 @@ Wonderful Everyday Down the Rabbit-Hole: installDir: Wonderful Everyday Down the Rabbit-Hole: {} launch: - /BGI.exe: + "/BGI.exe": - when: - store: steam steam: @@ -627126,15 +628829,15 @@ Wonderland Trails: installDir: Wonderland Trails: {} launch: - /Wonderland Trails.app/Contents/MacOS/Wonderland Trails: + "/Wonderland Trails.app/Contents/MacOS/Wonderland Trails": - when: - os: mac store: steam - /Wonderland Trails.exe: + "/Wonderland Trails.exe": - when: - os: windows store: steam - /Wonderland Trails.x86: + "/Wonderland Trails.x86": - when: - os: linux store: steam @@ -627144,7 +628847,7 @@ Wondership Q: installDir: Wondership Q: {} launch: - /winship.exe: + "/winship.exe": - when: - os: windows store: steam @@ -627154,7 +628857,7 @@ Wondershot: installDir: Wondershot: {} launch: - /wondershot.exe: + "/wondershot.exe": - when: - os: windows store: steam @@ -627165,11 +628868,11 @@ Wonfourn: Wonfourn: {} steam: id: 655980 -'Wonhon: A Vengeful Spirit': +"Wonhon: A Vengeful Spirit": installDir: Wonhon - A Vengeful Spirit: {} launch: - /Wonhon.exe: + "/Wonhon.exe": - when: - store: steam steam: @@ -627178,20 +628881,20 @@ Wonky Pigeon!: installDir: Wonky Pigeon!: {} launch: - /WonkyPigeon.app: + "/WonkyPigeon.app": - when: - os: mac store: steam - /WonkyPigeon.exe: + "/WonkyPigeon.exe": - when: - os: windows store: steam - /WonkyPigeon.x86: + "/WonkyPigeon.x86": - when: - bit: 32 os: linux store: steam - /WonkyPigeon.x86_64: + "/WonkyPigeon.x86_64": - when: - bit: 64 os: linux @@ -627202,28 +628905,28 @@ Wonky Ship: installDir: Wonky Ship: {} launch: - /WonkyShip.app: + "/WonkyShip.app": - when: - os: mac store: steam - /WonkyShip.exe: + "/WonkyShip.exe": - when: - os: windows store: steam steam: id: 742630 -Wood 'n Stones: +"Wood 'n Stones": installDir: - Wood 'n Stones: {} + "Wood 'n Stones": {} launch: - /WnS.x86_64: - - arguments: '--steam' + "/WnS.x86_64": + - arguments: "--steam" when: - bit: 64 os: linux store: steam - /Wood 'n Stones.exe: - - arguments: '--steam' + "/Wood 'n Stones.exe": + - arguments: "--steam" when: - os: windows store: steam @@ -627236,7 +628939,7 @@ Woodboy: installDir: Woodboy: {} launch: - /Woodboy.exe: + "/Woodboy.exe": - when: - os: windows store: steam @@ -627246,7 +628949,7 @@ Woodcutter Simulator 2011: installDir: Woodcutter Simulator 2011: {} launch: - /woodcutter2011.exe: + "/woodcutter2011.exe": - when: - os: windows store: steam @@ -627256,7 +628959,7 @@ Woodcutter Simulator 2013: installDir: Woodcutter Simulator 2013: {} launch: - /woodcutter2013.exe: + "/woodcutter2013.exe": - when: - os: windows store: steam @@ -627266,7 +628969,7 @@ Woodcutter Survival: installDir: Woodcutter survival: {} launch: - /Woodcutter Survival.exe: + "/Woodcutter Survival.exe": - when: - bit: 64 os: windows @@ -627277,7 +628980,7 @@ Wooden Battles: installDir: Wooden Battles: {} launch: - /Wooden Battles.exe: + "/Wooden Battles.exe": - when: - os: windows store: steam @@ -627287,26 +628990,26 @@ Wooden Floor: installDir: Wooden Floor: {} launch: - /Binaries/Win32/UDK.exe: + "/Binaries/Win32/UDK.exe": - when: - os: windows store: steam - /Binaries/Win64/UDK.exe: + "/Binaries/Win64/UDK.exe": - when: - bit: 64 os: windows store: steam steam: id: 348790 -'Wooden Floor 2: Resurrection': +"Wooden Floor 2: Resurrection": installDir: Wooden Floor 2 - Resurrection: {} launch: - /Binaries/Win32/UDK.exe: + "/Binaries/Win32/UDK.exe": - when: - os: windows store: steam - /Binaries/Win64/UDK.exe: + "/Binaries/Win64/UDK.exe": - when: - os: windows store: steam @@ -627316,7 +629019,7 @@ Wooden House: installDir: Wooden House: {} launch: - /Wooden House.exe: + "/Wooden House.exe": - when: - os: windows store: steam @@ -627329,7 +629032,7 @@ Wooden Ocean: installDir: Wooden Ocean: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -627337,17 +629040,17 @@ Wooden Ocean: id: 684000 Wooden Sensey: files: - /.config/unity3d/Upper Byte/Wooden Sen_Sey: + "/.config/unity3d/Upper Byte/Wooden Sen_Sey": tags: - save when: - os: linux - /Library/Application Support/Upper Byte/Wooden Sen_Sey: + "/Library/Application Support/Upper Byte/Wooden Sen_Sey": tags: - save when: - os: mac - /Upper Byte/Wooden Sen'Sey: + "/Upper Byte/Wooden Sen'Sey": tags: - save when: @@ -627355,26 +629058,26 @@ Wooden Sensey: installDir: WoodenSenSeY: {} launch: - /WoodenSenSeY.app: + "/WoodenSenSeY.app": - when: - os: mac store: steam - /WoodenSenSeY.exe: + "/WoodenSenSeY.exe": - when: - os: windows store: steam - /launch32.sh: + "/launch32.sh": - when: - bit: 32 os: linux store: steam - /launch64.sh: + "/launch64.sh": - when: - bit: 64 os: linux store: steam registry: - HKEY_CURRENT_USER/Software/Upper Byte/Wooden Sen'SeY: + "HKEY_CURRENT_USER/Software/Upper Byte/Wooden Sen'SeY": tags: - config steam: @@ -627383,11 +629086,11 @@ Woodfel: installDir: Woodfel: {} launch: - /Woodfel.app: + "/Woodfel.app": - when: - os: mac store: steam - /Woodfel.exe: + "/Woodfel.exe": - when: - bit: 64 os: windows @@ -627398,43 +629101,43 @@ Woodlands: installDir: Woodlands: {} launch: - /Woodlands.exe: + "/Woodlands.exe": - when: - os: windows store: steam steam: id: 646100 -'Woodle Tree 2: Deluxe+': +"Woodle Tree 2: Deluxe+": installDir: Woodle Tree 2 Deluxe+: {} launch: - /WoodleTree2Deluxe+.app: + "/WoodleTree2Deluxe+.app": - when: - os: mac store: steam - /WoodleTree2Deluxe+.exe: + "/WoodleTree2Deluxe+.exe": - when: - os: windows store: steam - /WoodleTree2Deluxe+.x86_64: + "/WoodleTree2Deluxe+.x86_64": - when: - os: linux store: steam steam: id: 1173740 -'Woodle Tree 2: Worlds': +"Woodle Tree 2: Worlds": installDir: Woodle Tree 2 Worlds: {} launch: - /WoodleTree2.app: + "/WoodleTree2.app": - when: - os: mac store: steam - /WoodleTree2.exe: + "/WoodleTree2.exe": - when: - os: windows store: steam - /WoodleTree2.x86_64: + "/WoodleTree2.x86_64": - when: - os: linux store: steam @@ -627444,15 +629147,15 @@ Woodle Tree Adventures: installDir: WoodleTreeAdventures: {} launch: - /WoodleTreeAdventures.app: + "/WoodleTreeAdventures.app": - when: - os: mac store: steam - /WoodleTreeAdventures.exe: + "/WoodleTreeAdventures.exe": - when: - os: windows store: steam - /WoodleTreeAdventures.x86_64: + "/WoodleTreeAdventures.x86_64": - when: - os: linux store: steam @@ -627466,7 +629169,7 @@ Woodlock Manor: installDir: WoodlockManor: {} launch: - /WoodlockManor.exe: + "/WoodlockManor.exe": - when: - os: windows store: steam @@ -627481,16 +629184,16 @@ Woodpunk: installDir: Woodpunk: {} launch: - /Woodpunk.app/Contents/MacOS/Woodpunk: + "/Woodpunk.app/Contents/MacOS/Woodpunk": - when: - os: mac store: steam - /Woodpunk.exe: + "/Woodpunk.exe": - when: - bit: 64 os: windows store: steam - /Woodpunk.x86_64: + "/Woodpunk.x86_64": - when: - bit: 64 os: linux @@ -627507,11 +629210,11 @@ Woodways: installDir: Woodways: {} launch: - /Woodways.app: + "/Woodways.app": - when: - os: mac store: steam - /Woodways.exe: + "/Woodways.exe": - when: - os: windows store: steam @@ -627523,11 +629226,11 @@ Woodwork Simulator: Woody Blox: steam: id: 732550 -'Woody Two-Legs: Attack of the Zombie Pirates': +"Woody Two-Legs: Attack of the Zombie Pirates": installDir: Woody Two-Legs Halloween Special: {} launch: - /Woody.exe: + "/Woody.exe": - when: - store: steam steam: @@ -627536,7 +629239,7 @@ Woof Blaster: installDir: WoofBlaster: {} launch: - /WoofBlaster.exe: + "/WoofBlaster.exe": - when: - os: windows store: steam @@ -627544,12 +629247,12 @@ Woof Blaster: id: 397990 Woolfe - The Red Hood Diaries: files: - /My Games/WoolfeTRHD/Saves/: + "/My Games/WoolfeTRHD/Saves/": tags: - save when: - os: windows - /My Games/WoolfeTRHD/WoolfeGame/Config: + "/My Games/WoolfeTRHD/WoolfeGame/Config": tags: - config when: @@ -627557,7 +629260,7 @@ Woolfe - The Red Hood Diaries: installDir: WoolfeTRHD: {} launch: - /WoolfeLauncher.exe: + "/WoolfeLauncher.exe": - when: - os: windows store: steam @@ -627567,11 +629270,11 @@ WoozyHero 乌贼英雄: installDir: WoozyHero: {} launch: - /WoozyHero.exe: + "/WoozyHero.exe": - when: - os: windows store: steam - /woozyhero.app/Contents/MacOS/woozyhero: + "/woozyhero.app/Contents/MacOS/woozyhero": - when: - os: mac store: steam @@ -627581,11 +629284,11 @@ Worbital: installDir: Worbital: {} launch: - /Worbital.app: + "/Worbital.app": - when: - os: mac store: steam - /Worbital.exe: + "/Worbital.exe": - when: - bit: 64 os: windows @@ -627596,25 +629299,25 @@ Word Forward: installDir: Word Forward: {} launch: - /Word Forward.app: + "/Word Forward.app": - when: - os: mac store: steam - /Word Forward.exe: + "/Word Forward.exe": - when: - os: windows store: steam steam: id: 1117360 -'Word Killer: Revolution': +"Word Killer: Revolution": steam: id: 574630 -'Word Killer: Zorgilonian Chronicles': +"Word Killer: Zorgilonian Chronicles": steam: id: 574620 Word Rescue: files: - /*.WR1: + "/*.WR1": tags: - save when: @@ -627622,27 +629325,27 @@ Word Rescue: installDir: Word Rescue: {} launch: - /Dosbox/dosbox: - - arguments: '-conf \"..\\WORD.conf\" -noconsole -c' + "/Dosbox/dosbox": + - arguments: "-conf \\\"..\\\\WORD.conf\\\" -noconsole -c" when: - os: linux store: steam - workingDir: /Dosbox - /Word Rescue.app: + workingDir: "/Dosbox" + "/Word Rescue.app": - when: - os: mac store: steam - /Word Rescue/dosbox/dosbox.exe: - - arguments: '-conf \"..\\WORD.conf\" -noconsole -c' + "/Word Rescue/dosbox/dosbox.exe": + - arguments: "-conf \\\"..\\\\WORD.conf\\\" -noconsole -c" when: - os: windows store: steam - workingDir: /Word Rescue/dosbox + workingDir: "/Word Rescue/dosbox" steam: id: 358340 Word Rescue Plus: files: - 'C:/REDWOOD/*.WR': + "C:/REDWOOD/*.WR": tags: - save when: @@ -627651,27 +629354,27 @@ Word Typing Game: installDir: Word Typing Game: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam steam: id: 820320 -'Word Wonders: The Tower of Babel': +"Word Wonders: The Tower of Babel": installDir: Word Wonders: {} launch: - /StartWordWonders.exe: + "/StartWordWonders.exe": - when: - os: windows store: steam steam: id: 362790 -'WordKiller: Revolution': +"WordKiller: Revolution": installDir: WordKiller Revolution: {} launch: - /WordKillerRevolution.exe: + "/WordKillerRevolution.exe": - when: - os: windows store: steam @@ -627681,11 +629384,11 @@ Wordabeasts: installDir: Wordabeasts: {} launch: - /Wordabeasts.app: + "/Wordabeasts.app": - when: - os: mac store: steam - /Wordabeasts.exe: + "/Wordabeasts.exe": - when: - os: windows store: steam @@ -627693,12 +629396,12 @@ Wordabeasts: id: 668190 Wordlase: files: - /save/*.sav: + "/save/*.sav": tags: - save when: - os: windows - /save/*.save: + "/save/*.save": tags: - save when: @@ -627706,11 +629409,11 @@ Wordlase: installDir: Wordlase: {} launch: - /Wordlase.exe: + "/Wordlase.exe": - when: - os: windows store: steam - /Wordlase.linux64.bin: + "/Wordlase.linux64.bin": - when: - os: linux store: steam @@ -627720,7 +629423,7 @@ Words Cannot Convey: installDir: Words cannot convey: {} launch: - /Words_cannot_convey.exe: + "/Words_cannot_convey.exe": - when: - os: windows store: steam @@ -627730,11 +629433,11 @@ Words for Evil: installDir: Words for Evil: {} launch: - /WordsforEvil_Mac.app: + "/WordsforEvil_Mac.app": - when: - os: mac store: steam - /WordsforEvil_PC.exe: + "/WordsforEvil_PC.exe": - when: - os: windows store: steam @@ -627744,24 +629447,24 @@ Work girl打工妹日记: installDir: 打工妹日记: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: id: 1159990 -'Workers & Resources: Soviet Republic': +"Workers & Resources: Soviet Republic": files: - /media_soviet/config.ini: + "/media_soviet/config.ini": tags: - config when: - os: windows - /media_soviet/controls.ini: + "/media_soviet/controls.ini": tags: - config when: - os: windows - /media_soviet/save: + "/media_soviet/save": tags: - save when: @@ -627774,7 +629477,7 @@ Work girl打工妹日记: installDir: SovietRepublic: {} launch: - /SETUPAPPLICATION SOVIET.exe: + "/SETUPAPPLICATION SOVIET.exe": - when: - os: windows store: steam @@ -627784,19 +629487,19 @@ Workhard: installDir: Workhard: {} launch: - /Workhard.exe: + "/Workhard.exe": - when: - store: steam steam: id: 1138280 Workshop Simulator: files: - /WS2020/Saved/Config/WindowsNoEditor: + "/WS2020/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /WS2020/Saved/SaveGames: + "/WS2020/Saved/SaveGames": tags: - save when: @@ -627806,11 +629509,11 @@ Workshop Simulator: installDir: Workshop Simulator: {} launch: - /WS2020/Binaries/Win64/Workshop-Win64-Shipping.exe: + "/WS2020/Binaries/Win64/Workshop-Win64-Shipping.exe": - when: - os: windows store: steam - workingDir: /WS2020/Binaries/Win64 + workingDir: "/WS2020/Binaries/Win64" steam: id: 1650550 World Apart: @@ -627822,11 +629525,11 @@ World Basketball Manager 2: installDir: World Basketball Manager 2: {} launch: - /WBM2.app/Contents/MacOS/WBM2: + "/WBM2.app/Contents/MacOS/WBM2": - when: - os: mac store: steam - /WBM2.exe: + "/WBM2.exe": - when: - os: windows store: steam @@ -627836,8 +629539,8 @@ World Basketball Manager 2010: installDir: World Basketball Manager 2010: {} launch: - /WBM.exe: - - arguments: '-Launch' + "/WBM.exe": + - arguments: "-Launch" when: - store: steam steam: @@ -627846,7 +629549,7 @@ World Basketball Tycoon: installDir: World Basketball Tycoon: {} launch: - /WBMTycoon.exe: + "/WBMTycoon.exe": - when: - os: windows store: steam @@ -627856,21 +629559,21 @@ World Boxing Manager: installDir: World Boxing Manager: {} launch: - /World Boxing Manager.app/Contents/MacOS/World Boxing Manager: + "/World Boxing Manager.app/Contents/MacOS/World Boxing Manager": - when: - os: mac store: steam - /WorldBoxingManager32: + "/WorldBoxingManager32": - when: - bit: 32 os: linux store: steam - /WorldBoxingManager64: + "/WorldBoxingManager64": - when: - bit: 64 os: linux store: steam - /WorldBoxingManagerGodot.exe: + "/WorldBoxingManagerGodot.exe": - when: - os: windows store: steam @@ -627894,7 +629597,7 @@ World Championship Boxing Manager 2: installDir: World Championship Boxing Manager 2: {} launch: - /World Championship Boxing Manager 2.exe: + "/World Championship Boxing Manager 2.exe": - when: - bit: 64 os: windows @@ -627905,17 +629608,17 @@ World Circuit Boxing: installDir: World Circuit Boxing: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam steam: id: 724480 -'World Defense: A Fragmented Reality Game': +"World Defense: A Fragmented Reality Game": installDir: WD: {} launch: - /WDHost.exe: + "/WDHost.exe": - when: - os: windows store: steam @@ -627925,7 +629628,7 @@ World Destroyers: installDir: World Destroyers: {} launch: - /WorldDestroyers.exe: + "/WorldDestroyers.exe": - when: - os: windows store: steam @@ -627933,12 +629636,12 @@ World Destroyers: id: 550200 World End Economica Episode.01: files: - /WEE1 HD/save: + "/WEE1 HD/save": tags: - save when: - os: windows - /game/save: + "/game/save": tags: - save when: @@ -627951,12 +629654,12 @@ World End Economica Episode.01: id: 269250 World End Economica Episode.02: files: - /WEE2 HD/save: + "/WEE2 HD/save": tags: - save when: - os: windows - /game/save: + "/game/save": tags: - save when: @@ -627969,7 +629672,7 @@ World End Economica Episode.02: id: 368160 World End Economica Episode.03: files: - /game/save: + "/game/save": tags: - save when: @@ -627979,21 +629682,21 @@ World End Economica Episode.03: installDir: WORLD END ECONOMiCA episode.03: {} launch: - /WEE3 HD/WEE3.app: + "/WEE3 HD/WEE3.app": - when: - os: mac store: steam - /WEE3 HD/WEE3.x86: + "/WEE3 HD/WEE3.x86": - when: - bit: 32 os: linux store: steam - /WEE3 HD/WEE3.x86_64: + "/WEE3 HD/WEE3.x86_64": - when: - bit: 64 os: linux store: steam - /wee03.eXe: + "/wee03.eXe": - when: - os: windows store: steam @@ -628003,7 +629706,7 @@ World Enduro Rally: installDir: World Enduro Rally: {} launch: - /WorldEnduroRally.exe: + "/WorldEnduroRally.exe": - when: - bit: 64 os: windows @@ -628014,15 +629717,15 @@ World Hentai: installDir: WORLD HENTAI: {} launch: - /WORLD HENTAI.exe: + "/WORLD HENTAI.exe": - when: - os: windows store: steam - /WORLDHENTAI.x86: + "/WORLDHENTAI.x86": - when: - os: linux store: steam - /WORLDHENTAIMAC.app: + "/WORLDHENTAIMAC.app": - when: - os: mac store: steam @@ -628032,11 +629735,11 @@ World In Danger: installDir: World In Danger: {} launch: - /world in danger.app: + "/world in danger.app": - when: - os: mac store: steam - /world in danger.exe: + "/world in danger.exe": - when: - os: windows store: steam @@ -628045,11 +629748,11 @@ World In Danger: World Inside Out: steam: id: 810560 -'World Keepers: Last Resort': +"World Keepers: Last Resort": installDir: WorldKeepers: {} launch: - /WorldKeepers_LastResort.exe: + "/WorldKeepers_LastResort.exe": - when: - os: windows store: steam @@ -628059,11 +629762,11 @@ World Leader Card Game: installDir: World Leader Card Game: {} launch: - /World Leader Card Game.app/Contents/MacOS/World Leader Card Game: + "/World Leader Card Game.app/Contents/MacOS/World Leader Card Game": - when: - os: mac store: steam - /World Leader Card Game.exe: + "/World Leader Card Game.exe": - when: - os: windows store: steam @@ -628071,14 +629774,14 @@ World Leader Card Game: id: 1085840 World League Basketball: files: - /ncaaapp.cfg: + "/ncaaapp.cfg": tags: - config when: - os: windows World League Soccer 98: files: - /Saves: + "/Saves": tags: - save when: @@ -628087,7 +629790,7 @@ World Of Conquerors: installDir: World Of Conquerors: {} launch: - /WorldOfConquerors.exe: + "/WorldOfConquerors.exe": - when: - os: windows store: steam @@ -628097,7 +629800,7 @@ World Of Conquerors - Origins: installDir: World Of Conquerors - Origins: {} launch: - /WorldOfConquerorsOrigins.exe: + "/WorldOfConquerorsOrigins.exe": - when: - os: windows store: steam @@ -628107,7 +629810,7 @@ World Peace Simulator 2019: installDir: World Peace Simulator 2019: {} launch: - /World Peace Simulator 2019.exe: + "/World Peace Simulator 2019.exe": - when: - os: windows store: steam @@ -628115,7 +629818,7 @@ World Peace Simulator 2019: id: 1027960 World Racing 2: files: - /WR2-Saves: + "/WR2-Saves": tags: - save when: @@ -628124,9 +629827,9 @@ World Racing 2: World Racing 2: {} steam: id: 1301010 -'World Racing 2: Champion Edition': +"World Racing 2: Champion Edition": files: - /WR2-Saves: + "/WR2-Saves": tags: - save when: @@ -628137,18 +629840,18 @@ World Racing 2: World Racing 2: {} steam: id: 1301010 -'World Rally Fever: Born on the Road': +"World Rally Fever: Born on the Road": gog: id: 1207658990 World Ship Simulator: installDir: World Ship Simulator: {} launch: - /WSS.app: + "/WSS.app": - when: - os: mac store: steam - /WSS.exe: + "/WSS.exe": - when: - os: windows store: steam @@ -628161,7 +629864,7 @@ World Truck Racing: installDir: World Truck Racing: {} launch: - /Build_ang.exe: + "/Build_ang.exe": - when: - store: steam steam: @@ -628172,16 +629875,16 @@ World Turtles: installDir: World Turtles: {} launch: - /World Turtles Demo.app/Contents/MacOS/World Turtles: + "/World Turtles Demo.app/Contents/MacOS/World Turtles": - when: - os: mac store: steam - /World Turtles Demo.x86_64: + "/World Turtles Demo.x86_64": - when: - bit: 64 os: linux store: steam - /World Turtles.exe: + "/World Turtles.exe": - when: - os: windows store: steam @@ -628192,11 +629895,11 @@ World VR Competition: World VR Competition: {} steam: id: 493290 -'World War 1: Centennial Edition': +"World War 1: Centennial Edition": installDir: World War 1 Centennial Edition: {} launch: - /steam_launcher.bat: + "/steam_launcher.bat": - when: - os: windows store: steam @@ -628212,18 +629915,18 @@ World War 2 Zombie Attack VR Simulator: World War 2 Zombie Attack VR Simulator: {} steam: id: 1215690 -'World War 2: Time of Wrath': +"World War 2: Time of Wrath": installDir: World War 2 Time of Wrath: {} launch: - /tow_setup.exe: + "/tow_setup.exe": - when: - store: steam steam: id: 305390 World War 3: files: - /WW3/Saved: + "/WW3/Saved": tags: - config - save @@ -628237,43 +629940,43 @@ World War I: installDir: WWI: {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: id: 361380 -'World War II Combat: Iwo Jima': +"World War II Combat: Iwo Jima": files: - /Groove Games/IwoJima/*.ini: + "/Groove Games/IwoJima/*.ini": tags: - config when: - os: windows - /Groove Games/IwoJima/Profiles/.ini: + "/Groove Games/IwoJima/Profiles/.ini": tags: - config when: - os: windows -'World War II Combat: Road to Berlin': +"World War II Combat: Road to Berlin": files: - /Groove Games/Berlin/*.ini: + "/Groove Games/Berlin/*.ini": tags: - config when: - os: windows - /Groove Games/Berlin/Profiles/.ini: + "/Groove Games/Berlin/Profiles/.ini": tags: - config when: - os: windows World War II GI: files: - /GAME*.SAV: + "/GAME*.SAV": tags: - save when: - os: dos - /WW2GI.CFG: + "/WW2GI.CFG": tags: - config when: @@ -628283,147 +629986,147 @@ World War II GI: installDir: World War II GI: {} launch: - /dosbox_linux/daum/launch_ww2gi_game_daum.sh: + "/dosbox_linux/daum/launch_ww2gi_game_daum.sh": - when: - os: linux store: steam - workingDir: /dosbox_linux/daum - /dosbox_linux/launch_ww2gi_config.sh: + workingDir: "/dosbox_linux/daum" + "/dosbox_linux/launch_ww2gi_config.sh": - when: - os: linux store: steam - workingDir: /dosbox_linux - /dosbox_linux/launch_ww2gi_game.sh: + workingDir: "/dosbox_linux" + "/dosbox_linux/launch_ww2gi_game.sh": - when: - os: linux store: steam - workingDir: /dosbox_linux - /dosbox_linux/launch_ww2gi_platoon_game.sh: + workingDir: "/dosbox_linux" + "/dosbox_linux/launch_ww2gi_platoon_game.sh": - when: - os: linux store: steam - workingDir: /dosbox_linux - /dosbox_windows/daum/dosbox.exe: - - arguments: '-conf dosbox_ww2gi.conf -conf dosbox_ww2gi_launch_windows.conf -noconsole' + workingDir: "/dosbox_linux" + "/dosbox_windows/daum/dosbox.exe": + - arguments: "-conf dosbox_ww2gi.conf -conf dosbox_ww2gi_launch_windows.conf -noconsole" when: - os: windows store: steam - workingDir: /dosbox_windows/daum - /dosbox_windows/dosbox.exe: - - arguments: '-conf dosbox_ww2gi.conf -conf dosbox_ww2gi_launch_windows.conf -noconsole' + workingDir: "/dosbox_windows/daum" + "/dosbox_windows/dosbox.exe": + - arguments: "-conf dosbox_ww2gi.conf -conf dosbox_ww2gi_launch_windows.conf -noconsole" when: - os: windows store: steam - workingDir: /dosbox_windows - - arguments: '-conf dosbox_ww2gi.conf -conf dosbox_ww2gi_config_windows.conf -noconsole' + workingDir: "/dosbox_windows" + - arguments: "-conf dosbox_ww2gi.conf -conf dosbox_ww2gi_config_windows.conf -noconsole" when: - os: windows store: steam - workingDir: /dosbox_windows - - arguments: '-conf dosbox_ww2gi.conf -conf dosbox_ww2gi_platoon_launch_windows.conf -noconsole' + workingDir: "/dosbox_windows" + - arguments: "-conf dosbox_ww2gi.conf -conf dosbox_ww2gi_platoon_launch_windows.conf -noconsole" when: - os: windows store: steam - workingDir: /dosbox_windows + workingDir: "/dosbox_windows" steam: id: 376750 World War II Online: installDir: WWIIONLINE: {} launch: - /WW2.exe: - - arguments: '-steamlogin' + "/WW2.exe": + - arguments: "-steamlogin" when: - os: windows store: steam steam: id: 251950 -'World War II: Pacific Heroes': +"World War II: Pacific Heroes": registry: HKEY_CURRENT_USER/SOFTWARE/City Interactive/WWII Pacific Heroes: tags: - config -'World War II: Panzer Claws': +"World War II: Panzer Claws": installDir: World War II Panzer Claws: {} launch: - /PanzerClawsII.exe: + "/PanzerClawsII.exe": - when: - os: windows store: steam - /RunGame: + "/RunGame": - when: - os: linux store: steam - /World War II Panzer Claws.app: + "/World War II Panzer Claws.app": - when: - os: mac store: steam steam: id: 254100 -'World War II: Sniper - Call to Victory': +"World War II: Sniper - Call to Victory": files: - /Profiles: + "/Profiles": tags: - config when: - os: windows - /Save: + "/Save": tags: - save when: - os: windows - /autoexec.cfg: + "/autoexec.cfg": tags: - config when: - os: windows - /display.cfg: + "/display.cfg": tags: - config when: - os: windows -'World War II: TCG': +"World War II: TCG": installDir: World War II TCG: {} launch: - /WWIITCG.app/Contents/MacOS/WWIITCG: + "/WWIITCG.app/Contents/MacOS/WWIITCG": - when: - os: mac store: steam - /WWIITCG/WWIITCG.exe: + "/WWIITCG/WWIITCG.exe": - when: - os: windows store: steam steam: id: 1019250 -'World War III: Black Gold': +"World War III: Black Gold": installDir: World War III Black Gold: {} launch: - /RunGame: + "/RunGame": - when: - os: linux store: steam - /WW3.exe: + "/WW3.exe": - when: - os: windows store: steam - /World War III Black Gold.app: + "/World War III Black Gold.app": - when: - os: mac store: steam steam: id: 254080 -'World War Party: Game of Trump': +"World War Party: Game of Trump": installDir: WorldWarParty-GameOfTrump: {} launch: - /GameOfTrump.app: + "/GameOfTrump.app": - when: - os: mac store: steam - /GameOfTrump.exe: + "/GameOfTrump.exe": - when: - bit: 32 os: windows @@ -628432,13 +630135,13 @@ World War II Online: id: 705410 World War Z: files: - /Packages/MadDogGamesLLC.WWZBaseGamePC_6wkgvezv94m76/SystemAppData/wgs: + "/Packages/MadDogGamesLLC.WWZBaseGamePC_6wkgvezv94m76/SystemAppData/wgs": tags: - save when: - os: windows store: microsoft - /Saber/WWZ/client/storage: + "/Saber/WWZ/client/storage": tags: - config - save @@ -628447,17 +630150,17 @@ World War Z: installDir: WWZ: {} launch: - /en_us/client/bin/pc/wwzRetail.exe: + "/en_us/client/bin/pc/wwzRetail.exe": - when: - bit: 64 os: windows store: steam - workingDir: /en_us/client/bin/pc + workingDir: "/en_us/client/bin/pc" steam: id: 699130 -'World War Zero: Iron Storm': +"World War Zero: Iron Storm": files: - /SaveGames: + "/SaveGames": tags: - save when: @@ -628465,7 +630168,7 @@ World War Z: installDir: World War Zero: {} launch: - /Ironstorm.exe: + "/Ironstorm.exe": - when: - store: steam steam: @@ -628474,11 +630177,11 @@ World Warfare: installDir: World Warfare: {} launch: - /war2ii.app/Contents/MacOS/war2ii: + "/war2ii.app/Contents/MacOS/war2ii": - when: - os: mac store: steam - /war2ii.exe: + "/war2ii.exe": - when: - bit: 32 os: windows @@ -628487,7 +630190,7 @@ World Warfare: id: 734290 World in Conflict: files: - /World in Conflict: + "/World in Conflict": tags: - config - save @@ -628501,7 +630204,7 @@ World in Conflict: installDir: World in Conflict: {} launch: - /wic.exe: + "/wic.exe": - when: - store: steam steam: @@ -628515,15 +630218,15 @@ World of Castles: installDir: World of Castles: {} launch: - /World of Castles.exe: + "/World of Castles.exe": - when: - os: windows store: steam - /World_of_Castles.app: + "/World_of_Castles.app": - when: - os: mac store: steam - /World_of_Castles.x86_64: + "/World_of_Castles.x86_64": - when: - os: linux store: steam @@ -628533,26 +630236,26 @@ World of Cinema - Movie Tycoon: installDir: WOC_BASIC: {} launch: - /WoC.exe: + "/WoC.exe": - when: - os: windows store: steam - /WoC_winmode.exe: + "/WoC_winmode.exe": - when: - store: steam steam: id: 344160 -'World of DASM, DASM Spell Quest': +"World of DASM, DASM Spell Quest": installDir: DASM Spell Quest: {} launch: - /Binaries/Win32/World of DASM.exe: + "/Binaries/Win32/World of DASM.exe": - when: - os: windows store: steam steam: id: 543910 -'World of Darkness Preludes: Vampire and Mage': +"World of Darkness Preludes: Vampire and Mage": installDir: White Wolf Entertainment: {} steam: @@ -628567,18 +630270,18 @@ World of Diving: installDir: World of Diving: {} launch: - /WorldOfDiving.app: - - arguments: '-vrmode none' + "/WorldOfDiving.app": + - arguments: "-vrmode none" when: - os: mac store: steam - /WorldOfDiving.exe: - - arguments: '-vrmode none' + "/WorldOfDiving.exe": + - arguments: "-vrmode none" when: - os: windows store: steam - /WorldOfDiving.x86_64: - - arguments: '-vrmode none' + "/WorldOfDiving.x86_64": + - arguments: "-vrmode none" when: - os: linux store: steam @@ -628588,7 +630291,7 @@ World of Feudal: installDir: World of Feudal: {} launch: - /World of Feudal.exe: + "/World of Feudal.exe": - when: - os: windows store: steam @@ -628596,12 +630299,12 @@ World of Feudal: id: 857570 World of Final Fantasy: files: - /My Games/WOFF/: + "/My Games/WOFF/": tags: - config when: - os: windows - /My Games/WOFF//savedata: + "/My Games/WOFF//savedata": tags: - save when: @@ -628609,7 +630312,7 @@ World of Final Fantasy: installDir: WOFF: {} launch: - /WOFF.exe: + "/WOFF.exe": - when: - bit: 64 os: windows @@ -628626,32 +630329,32 @@ World of Golf: id: 511560 World of Goo: files: - /.WorldOfGoo: + "/.WorldOfGoo": tags: - save when: - os: linux - /.WorldOfGoo/config.user.txt: + "/.WorldOfGoo/config.user.txt": tags: - config when: - os: linux - /Library/Application Support/WorldOfGoo: + "/Library/Application Support/WorldOfGoo": tags: - save when: - os: mac - /Library/Application Support/WorldOfGoo/config.user.txt: + "/Library/Application Support/WorldOfGoo/config.user.txt": tags: - config when: - os: mac - /2DBoy/WorldOfGoo: + "/2DBoy/WorldOfGoo": tags: - save when: - os: windows - /2DBoy/WorldOfGoo/config.user.txt: + "/2DBoy/WorldOfGoo/config.user.txt": tags: - config when: @@ -628661,26 +630364,26 @@ World of Goo: installDir: World of Goo: {} launch: - /Win64/WorldOfGoo.exe: + "/Win64/WorldOfGoo.exe": - when: - bit: 64 os: windows store: steam - /World of Goo.app: + "/World of Goo.app": - when: - os: mac store: steam - /WorldOfGoo.bin.x86: + "/WorldOfGoo.bin.x86": - when: - bit: 32 os: linux store: steam - /WorldOfGoo.bin.x86_64: + "/WorldOfGoo.bin.x86_64": - when: - bit: 64 os: linux store: steam - /WorldOfGoo.exe: + "/WorldOfGoo.exe": - when: - bit: 32 os: windows @@ -628689,35 +630392,35 @@ World of Goo: id: 22000 World of Goo (2008): files: - /properties/config.txt: + "/properties/config.txt": tags: - config when: - os: windows - /Library/Application Support/WorldOfGoo: + "/Library/Application Support/WorldOfGoo": tags: - save when: - os: mac - /Library/Application Support/WorldOfGoo/config.txt: + "/Library/Application Support/WorldOfGoo/config.txt": tags: - config when: - os: mac - /2DBoy/WorldOfGoo: + "/2DBoy/WorldOfGoo": tags: - save when: - os: windows -'World of Guns: Gun Disassembly': +"World of Guns: Gun Disassembly": files: - /AppData/LocalLow/Noble Empire/World of Guns: + "/AppData/LocalLow/Noble Empire/World of Guns": tags: - config - save when: - os: windows - /unity3d/Noble Empire/World of Guns: + "/unity3d/Noble Empire/World of Guns": tags: - config - save @@ -628726,28 +630429,28 @@ World of Goo (2008): installDir: WOG: {} launch: - /disasm.app: + "/disasm.app": - when: - os: mac store: steam - /disasm.exe: + "/disasm.exe": - when: - os: windows store: steam - /disasm.x86: + "/disasm.x86": - when: - os: linux store: steam steam: id: 262410 -'World of Guns: VR': +"World of Guns: VR": installDir: World of Guns VR: {} steam: id: 1111760 World of Horror: files: - /wohgame/save.ito: + "/wohgame/save.ito": tags: - config - save @@ -628763,11 +630466,11 @@ World of Horror: installDir: WOH: {} launch: - /wohgame.app: + "/wohgame.app": - when: - os: mac store: steam - /worldofhorror.exe: + "/worldofhorror.exe": - when: - os: windows store: steam @@ -628777,16 +630480,16 @@ World of Islands - Treasure Hunt: installDir: World of Islands - Treasure Hunt: {} launch: - /Game.app: + "/Game.app": - when: - os: mac store: steam - /Game.desktop: + "/Game.desktop": - when: - os: linux store: steam - /WOITH.exe: - - arguments: '--in-process-gpu' + "/WOITH.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam @@ -628796,7 +630499,7 @@ World of Leaders: installDir: World Of Leaders: {} launch: - /_start.exe: + "/_start.exe": - when: - os: windows store: steam @@ -628806,7 +630509,7 @@ World of Mixed Martial Arts 3: installDir: World of Mixed Martial Arts 3: {} launch: - /WMMA3.exe: + "/WMMA3.exe": - when: - store: steam steam: @@ -628815,7 +630518,7 @@ World of Myths: installDir: World of Myths: {} launch: - /World of Myths.exe: + "/World of Myths.exe": - when: - os: windows store: steam @@ -628825,12 +630528,14 @@ World of One: installDir: World of One: {} launch: - /WorldOfOne.exe: + "/WorldOfOne.exe": - when: - os: windows store: steam - /WorldOfOne.sh: + "/WorldOfOne.sh": - when: + - os: mac + store: steam - bit: 64 os: linux store: steam @@ -628838,17 +630543,17 @@ World of One: id: 598480 World of Padman: files: - /.padman: + "/.padman": tags: - config when: - os: linux - /Library/Application Support/WorldOfPadman: + "/Library/Application Support/WorldOfPadman": tags: - config when: - os: mac - /Padman/wop: + "/Padman/wop": tags: - config when: @@ -628857,7 +630562,7 @@ World of Soccer online: installDir: World of Soccer online: {} launch: - /World of Soccer.exe: + "/World of Soccer.exe": - when: - os: windows store: steam @@ -628867,8 +630572,8 @@ World of Speed: installDir: World of Speed: {} launch: - /bin/WorldOfSpeed.exe: - - arguments: '-steam_secret' + "/bin/WorldOfSpeed.exe": + - arguments: "-steam_secret" when: - os: windows store: steam @@ -628878,7 +630583,7 @@ World of Subways 1 - The Path: installDir: World of Subways 1 – The Path: {} launch: - /WoS.exe: + "/WoS.exe": - when: - os: windows store: steam @@ -628888,7 +630593,7 @@ World of Subways 2 - Berlin Line 7: installDir: World of Subways 2 – Berlin Line 7: {} launch: - /WoS.exe: + "/WoS.exe": - when: - os: windows store: steam @@ -628898,33 +630603,33 @@ World of Subways 3 - London Underground Circle Line: installDir: World of Subways 3 – London Underground Circle Line: {} launch: - /Bin/WOS3.exe: + "/Bin/WOS3.exe": - when: - store: steam - workingDir: /Bin + workingDir: "/Bin" steam: id: 283620 World of Subways 4 - New York Line 7: installDir: World of Subways 4 – New York Line 7: {} launch: - /Bin/x64_Release/WoS4.exe: + "/Bin/x64_Release/WoS4.exe": - when: - bit: 64 os: windows store: steam - workingDir: /Bin/x64_Release - /Bin/x86_Release/WoS4.exe: + workingDir: "/Bin/x64_Release" + "/Bin/x86_Release/WoS4.exe": - when: - bit: 32 os: windows store: steam - workingDir: /Bin/x86_Release + workingDir: "/Bin/x86_Release" steam: id: 343070 World of Tanks: files: - /wargaming.net/WorldOfTanks: + "/wargaming.net/WorldOfTanks": tags: - config when: @@ -628952,7 +630657,7 @@ World of Tanks: installDir: World of Tanks: {} launch: - /wgcs_api.exe: + "/wgcs_api.exe": - when: - os: windows store: steam @@ -628960,18 +630665,18 @@ World of Tanks: id: 1407200 World of Tanks Blitz: files: - /userdata//444200: + "/userdata//444200": tags: - save when: - store: steam - /DAVAProject: + "/DAVAProject": tags: - config - save when: - os: windows - /Packages/7458BE2C.WorldofTanksBlitz_x4tje2y229k00/LocalState/DAVAProject: + "/Packages/7458BE2C.WorldofTanksBlitz_x4tje2y229k00/LocalState/DAVAProject": tags: - config - save @@ -628995,11 +630700,11 @@ World of Tanks Blitz: installDir: World of Tanks Blitz: {} launch: - /World of Tanks Blitz.app: + "/World of Tanks Blitz.app": - when: - os: mac store: steam - /wotblitz.exe: + "/wotblitz.exe": - when: - os: windows store: steam @@ -629008,15 +630713,15 @@ World of Tanks Blitz: World of Tea: steam: id: 865050 -'World of Tennis: Roaring ''20s': +"World of Tennis: Roaring '20s": installDir: World of Tennis Roaring 20s: {} launch: - /WorldOfTennis.app: + "/WorldOfTennis.app": - when: - os: mac store: steam - /WorldOfTennis.exe: + "/WorldOfTennis.exe": - when: - os: windows store: steam @@ -629026,7 +630731,7 @@ World of Undead: installDir: World Of Undead: {} launch: - /WorldofUndead.exe: + "/WorldofUndead.exe": - when: - os: windows store: steam @@ -629041,7 +630746,7 @@ World of Voidia(虚亚世界): installDir: World of Voidia(虚亚世界): {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: @@ -629050,25 +630755,25 @@ World of Walking Cities: installDir: World Of Walking Cities: {} launch: - /World Of Walking Cities.app/Contents/MacOS/World Of Walking Cities: + "/World Of Walking Cities.app/Contents/MacOS/World Of Walking Cities": - when: - os: mac store: steam - /World Of Walking Cities.exe: + "/World Of Walking Cities.exe": - when: - os: windows store: steam steam: id: 845440 -'World of War: Battlegrounds': +"World of War: Battlegrounds": installDir: World of War Battlegrounds: {} launch: - /Battlegrounds.app: + "/Battlegrounds.app": - when: - os: mac store: steam - /Battlegrounds.exe: + "/Battlegrounds.exe": - when: - os: windows store: steam @@ -629076,12 +630781,12 @@ World of Walking Cities: id: 888400 World of Warcraft: files: - /WTF/Config.wtf: + "/WTF/Config.wtf": tags: - config when: - os: mac - /_retail_/WTF/Config.wtf: + "/_retail_/WTF/Config.wtf": tags: - config when: @@ -629090,7 +630795,7 @@ World of Warplanes: installDir: World of Warplanes: {} launch: - /WorldOfWarplanes.exe: + "/WorldOfWarplanes.exe": - when: - os: windows store: steam @@ -629100,7 +630805,7 @@ World of Warships: installDir: World of Warships: {} launch: - /WorldOfWarships.exe: + "/WorldOfWarships.exe": - when: - os: windows store: steam @@ -629110,7 +630815,7 @@ World of Zombies: installDir: World of Zombies: {} launch: - /WolrdOfZombies.exe: + "/WolrdOfZombies.exe": - when: - bit: 64 os: windows @@ -629121,7 +630826,7 @@ World of Zoo: installDir: World of Zoo: {} launch: - /GameLauncher.exe: + "/GameLauncher.exe": - when: - store: steam steam: @@ -629130,7 +630835,7 @@ World of relish: installDir: World of relish: {} launch: - /World of relish.exe: + "/World of relish.exe": - when: - bit: 64 os: windows @@ -629139,22 +630844,22 @@ World of relish: id: 1188660 World to the West: files: - /AppData/LocalLow/Rain/World to the West: + "/AppData/LocalLow/Rain/World to the West": tags: - save when: - os: windows - /AppData/LocalLow/Rain/World to the West/Controls.yaml: + "/AppData/LocalLow/Rain/World to the West/Controls.yaml": tags: - config when: - os: windows - /AppData/LocalLow/Rain/World to the West/Settings.yaml: + "/AppData/LocalLow/Rain/World to the West/Settings.yaml": tags: - config when: - os: windows - /userdata//530020/remote/Saves.yaml: + "/userdata//530020/remote/Saves.yaml": tags: - save when: @@ -629164,88 +630869,91 @@ World to the West: installDir: World to the West: {} launch: - /WorldToTheWest.app: + "/WorldToTheWest.app": - when: - os: mac store: steam - /WorldToTheWest.exe: + "/WorldToTheWest.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam - /WorldToTheWest.x86: + "/WorldToTheWest.x86": - when: - bit: 32 os: linux store: steam - /WorldToTheWest.x86_64: + "/WorldToTheWest.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 530020 -World's Dawn: +"World's Dawn": files: - /Diary: + "/Diary": tags: - save when: - os: windows installDir: - World's Dawn: {} + "World's Dawn": {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam steam: id: 432010 -World's End Club: +"World's End Club": files: - /AppData/LocalLow/IZANAGIGAMES/World'sEndClub: + "/AppData/LocalLow/IZANAGIGAMES/World'sEndClub": tags: - save when: - os: windows installDir: - World's End Club: {} + "World's End Club": {} launch: - /World'sEndClub.exe: + "/World'sEndClub.exe": - when: - os: windows store: steam registry: - HKEY_CURRENT_USER/SOFTWARE/IzanagiGames/World'sEndClub: + "HKEY_CURRENT_USER/SOFTWARE/IzanagiGames/World'sEndClub": tags: - config steam: id: 1570020 -World's Fastest Pizza: +"World's Fastest Pizza": installDir: - World's Fastest Pizza: {} + "World's Fastest Pizza": {} launch: - /World's Fastest Pizza.exe: + "/World's Fastest Pizza.exe": - when: - os: windows store: steam steam: id: 396260 -World's Greatest Cities Mosaics: +"World's Greatest Cities Mosaics": installDir: GreatestCitiesMosaics: {} launch: - /GreatestCitiesMosaics.exe: + "/GreatestCitiesMosaics.exe": - when: - os: windows store: steam steam: id: 915610 -World's Nicht: +"World's Nicht": installDir: Worlds Nicht: {} launch: - /WorldsNicht.exe: + "/WorldsNicht.exe": - when: - os: windows store: steam @@ -629255,15 +630963,15 @@ WorldBox: installDir: worldbox: {} launch: - /worldbox: + "/worldbox": - when: - os: linux store: steam - /worldbox.app: + "/worldbox.app": - when: - os: mac store: steam - /worldbox.exe: + "/worldbox.exe": - when: - os: windows store: steam @@ -629273,7 +630981,7 @@ WorldQuest: installDir: WorldQuest: {} launch: - /WorldQuest.exe: + "/WorldQuest.exe": - when: - os: windows store: steam @@ -629281,7 +630989,7 @@ WorldQuest: id: 852500 Worldless: files: - /AppData/LocalLow/NonameStudios/Worldless/*.sav: + "/AppData/LocalLow/NonameStudios/Worldless/*.sav": tags: - save when: @@ -629297,18 +631005,18 @@ Worldless: installDir: Worldless: {} launch: - /Worldless.exe: + "/Worldless.exe": - when: - os: windows store: steam steam: id: 1898500 -'Worldless: Mercenaries': +"Worldless: Mercenaries": steam: id: 1180670 Worlds: files: - /worlds.cfg: + "/worlds.cfg": tags: - config when: @@ -629316,11 +631024,11 @@ Worlds: installDir: Worlds: {} launch: - /worlds: + "/worlds": - when: - os: linux store: steam - /worlds.exe: + "/worlds.exe": - when: - os: windows store: steam @@ -629330,10 +631038,8 @@ Worlds Adrift: installDir: WorldsAdrift: {} launch: - /worldsadrift.exe: - - arguments: >- - -show-screen-selector +appName worlds_adrift +projectName worlds_adrift +authProvider steam +linkProtocol - RakNet +assetDatabaseStrategy Local +localAssetDatabasePath ./Assets + "/worldsadrift.exe": + - arguments: "-show-screen-selector +appName worlds_adrift +projectName worlds_adrift +authProvider steam +linkProtocol RakNet +assetDatabaseStrategy Local +localAssetDatabasePath ./Assets" when: - os: windows store: steam @@ -629343,11 +631049,11 @@ Worlds Adrift Island Creator: installDir: WorldsAdriftEditor: {} launch: - /island_gen.app: + "/island_gen.app": - when: - os: mac store: steam - /island_gen.exe: + "/island_gen.exe": - when: - os: windows store: steam @@ -629357,7 +631063,7 @@ Worlds Collide: installDir: Worlds Collide: {} launch: - /Worlds Collide.exe: + "/Worlds Collide.exe": - when: - os: windows store: steam @@ -629367,32 +631073,32 @@ Worlds at War: installDir: WORLDS AT WAR First Contact: {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: id: 744670 -'Worlds of Chaos: Corruption': +"Worlds of Chaos: Corruption": installDir: Worlds of Chaos: {} launch: - /WoC.exe: + "/WoC.exe": - when: - os: windows store: steam - /WoC_C.exe.x86: + "/WoC_C.exe.x86": - when: - os: linux store: steam - /WoC_Mac.app/Contents/MacOS/WoC_Mac: + "/WoC_Mac.app/Contents/MacOS/WoC_Mac": - when: - os: mac store: steam steam: id: 436510 -'Worlds of Legend: Son of the Empire': +"Worlds of Legend: Son of the Empire": files: - /EMPIRE0*.SAV: + "/EMPIRE0*.SAV": tags: - save when: @@ -629401,30 +631107,33 @@ Worlds of Magic: installDir: WorldsOfMagic: {} launch: - /WorldsOfMagic: + "/WorldsOfMagic": - when: - bit: 32 os: linux store: steam - /WorldsOfMagic.app: + - bit: 64 + os: linux + store: steam + "/WorldsOfMagic.app": - when: - os: mac store: steam - /WorldsOfMagic.exe: + "/WorldsOfMagic.exe": - when: - bit: 32 os: windows store: steam - /launcher.exe: + "/launcher.exe": - when: - bit: 64 os: windows store: steam steam: id: 265970 -'Worlds of Ultima: The Savage Empire': +"Worlds of Ultima: The Savage Empire": files: - /SAVEGAME: + "/SAVEGAME": tags: - save when: @@ -629438,11 +631147,11 @@ Worldwide Sports Fishing: installDir: Worldwide Sports Fishing: {} launch: - /Worldwide Sports Fishing.app: + "/Worldwide Sports Fishing.app": - when: - os: mac store: steam - /Worldwide Sports Fishing.exe: + "/Worldwide Sports Fishing.exe": - when: - os: windows store: steam @@ -629452,20 +631161,20 @@ Worldy Cup: installDir: Worldy Cup: {} launch: - /worldyCup.exe: + "/worldyCup.exe": - when: - store: steam steam: id: 510080 -'Worm.is: The Game': +"Worm.is: The Game": installDir: Worm.is The Game: {} launch: - /Wormis.app/Contents/MacOS/Wormis: + "/Wormis.app/Contents/MacOS/Wormis": - when: - os: mac store: steam - /Wormis.exe: + "/Wormis.exe": - when: - os: windows store: steam @@ -629475,7 +631184,7 @@ Wormhole City: installDir: Wormhole City: {} launch: - /AdvKitExamples.exe: + "/AdvKitExamples.exe": - when: - store: steam steam: @@ -629484,11 +631193,11 @@ Wormix: installDir: Bombix: {} launch: - /bombix.app/Contents/MacOS/bombix: + "/bombix.app/Contents/MacOS/bombix": - when: - os: mac store: steam - /bombix.exe: + "/bombix.exe": - when: - os: windows store: steam @@ -629500,14 +631209,14 @@ Worms: installDir: Worms: {} launch: - /runworms.bat: + "/runworms.bat": - when: - store: steam steam: id: 70640 Worms 2: files: - /Teams/Internet.dat: + "/Teams/Internet.dat": tags: - config when: @@ -629520,21 +631229,21 @@ Worms 2: - config Worms 3D: files: - /Data/SaveGame.xom: + "/Data/SaveGame.xom": tags: - save when: - os: windows -'Worms 4: Mayhem': +"Worms 4: Mayhem": files: - /data/SaveGame.xom: + "/data/SaveGame.xom": tags: - save when: - os: windows Worms Armageddon: files: - /User/Teams/WG.WGT: + "/User/Teams/WG.WGT": tags: - save when: @@ -629544,7 +631253,7 @@ Worms Armageddon: installDir: Worms Armageddon: {} launch: - /WA.exe: + "/WA.exe": - when: - os: windows store: steam @@ -629564,24 +631273,24 @@ Worms Blast: installDir: Worms Blast: {} launch: - /main.exe: + "/main.exe": - when: - store: steam steam: id: 70650 Worms Clan Wars: files: - /CommonData: + "/CommonData": tags: - config when: - os: windows - /Main/Default.cfg: + "/Main/Default.cfg": tags: - config when: - os: linux - /userdata//233840/remote: + "/userdata//233840/remote": tags: - save when: @@ -629589,15 +631298,15 @@ Worms Clan Wars: installDir: Worms Clan Wars: {} launch: - /Worms Clan Wars.app: + "/Worms Clan Wars.app": - when: - os: mac store: steam - /WormsClanWars.bin.x86: + "/WormsClanWars.bin.x86": - when: - os: linux store: steam - /WormsClanWars.exe: + "/WormsClanWars.exe": - when: - os: windows store: steam @@ -629609,29 +631318,29 @@ Worms Crazy Golf: installDir: WormsGolf2010: {} launch: - /WormsCrazyGolf.app: + "/WormsCrazyGolf.app": - when: - os: mac store: steam - /WormsCrazyGolf.exe: + "/WormsCrazyGolf.exe": - when: - os: windows store: steam steam: id: 70620 -'Worms Forts: Under Siege': +"Worms Forts: Under Siege": files: - /data/SaveGame.xom: + "/data/SaveGame.xom": tags: - save when: - os: windows - /GOG/WormsForts/config.ini: + "/GOG/WormsForts/config.ini": tags: - config when: - os: windows - /GOG.com/Galaxy/support/1207659170/1207659170/userappdata: + "/GOG.com/Galaxy/support/1207659170/1207659170/userappdata": tags: - config when: @@ -629640,7 +631349,7 @@ Worms Crazy Golf: id: 1207659170 Worms Pinball: files: - /*.cfg: + "/*.cfg": tags: - config when: @@ -629648,24 +631357,24 @@ Worms Pinball: installDir: Worms Pinball: {} launch: - /mmlauncher.exe: + "/mmlauncher.exe": - when: - store: steam steam: id: 70660 Worms Reloaded: files: - /local.cfg: + "/local.cfg": tags: - config when: - os: windows - /userdata//22600/remote: + "/userdata//22600/remote": tags: - save when: - store: steam - /Team17/WormsReloaded: + "/Team17/WormsReloaded": tags: - config - save @@ -629674,15 +631383,15 @@ Worms Reloaded: installDir: Worms Reloaded: {} launch: - /WormsReloaded.app: + "/WormsReloaded.app": - when: - os: mac store: steam - /WormsReloaded.bin.x86: + "/WormsReloaded.bin.x86": - when: - os: linux store: steam - /WormsReloaded.exe: + "/WormsReloaded.exe": - when: - os: windows store: steam @@ -629690,7 +631399,7 @@ Worms Reloaded: id: 22600 Worms Revolution: files: - /userdata//200170: + "/userdata//200170": tags: - save when: @@ -629700,14 +631409,14 @@ Worms Revolution: installDir: WormsRevolution: {} launch: - /WormsRevolution.exe: + "/WormsRevolution.exe": - when: - store: steam steam: id: 200170 Worms Rumble: files: - /ProjectNimble/Saved/Config/WindowsNoEditor: + "/ProjectNimble/Saved/Config/WindowsNoEditor": tags: - config when: @@ -629715,7 +631424,7 @@ Worms Rumble: installDir: Worms Rumble: {} launch: - /Launch_Game.exe: + "/Launch_Game.exe": - when: - bit: 64 os: windows @@ -629724,7 +631433,7 @@ Worms Rumble: id: 1186040 Worms Ultimate Mayhem: files: - /userdata//70600: + "/userdata//70600": tags: - save when: @@ -629734,34 +631443,35 @@ Worms Ultimate Mayhem: installDir: WormsXHD: {} launch: - /Launcher.exe: + "/Launcher.exe": - when: - store: steam steam: id: 70600 Worms W.M.D: files: - /CommonData/local.cfg: + "/CommonData/local.cfg": tags: - config when: - os: windows - /userdata//327030: + "/userdata//327030": tags: - save when: - store: steam - /Packages/Team17DigitalLimited.WormsW.M.DWin10_j5x4vj4y67jhc/LocalCache/Local/Microsoft/WritablePackageRoot/CommonData: + "/Packages/Team17DigitalLimited.WormsW.M.DWin10_j5x4vj4y67jhc/LocalCache/Local/Microsoft/WritablePackageRoot/CommonData": tags: - config when: - os: windows store: microsoft - /Public Documents/Team17/WormsWMD: + "/Public Documents/Team17/WormsWMD": tags: - save when: - - store: gog + - os: windows + store: gog gog: id: 1448620034 id: @@ -629770,16 +631480,16 @@ Worms W.M.D: installDir: WormsWMD: {} launch: - /Worms W.M.D.app: + "/Worms W.M.D.app": - when: - bit: 64 os: mac store: steam - /Worms W.M.D.exe: + "/Worms W.M.D.exe": - when: - os: windows store: steam - /Worms W.M.Dx64: + "/Worms W.M.Dx64": - when: - bit: 64 os: linux @@ -629788,22 +631498,22 @@ Worms W.M.D: id: 327030 Worms World Party: files: - /User/SavedLevels: + "/User/SavedLevels": tags: - save when: - os: windows - /User/Schemes: + "/User/Schemes": tags: - save when: - os: windows - /User/Teams/WG.WWP: + "/User/Teams/WG.WWP": tags: - save when: - os: windows - /WWP.ini: + "/WWP.ini": tags: - config when: @@ -629814,17 +631524,17 @@ Worms World Party: - config Worms World Party Remastered: files: - /User/SavedLevels: + "/User/SavedLevels": tags: - save when: - os: windows - /User/Schemes: + "/User/Schemes": tags: - save when: - os: windows - /save/WG.WWP: + "/save/WG.WWP": tags: - save when: @@ -629834,7 +631544,7 @@ Worms World Party Remastered: installDir: WormsWorldParty: {} launch: - /w2.exe: + "/w2.exe": - when: - os: windows store: steam @@ -629851,12 +631561,12 @@ Wormster Dash: installDir: Wormster Dash: {} launch: - /WormsterDash.exe: + "/WormsterDash.exe": - when: - bit: 64 os: windows store: steam - /wormsterdash_osx.app/Contents/MacOS/wormsterdash_osx: + "/wormsterdash_osx.app/Contents/MacOS/wormsterdash_osx": - when: - os: mac store: steam @@ -629866,11 +631576,11 @@ Worse Than Death: installDir: Worse Than Death: {} launch: - /Worse Than Death.app: + "/Worse Than Death.app": - when: - os: mac store: steam - /WorseThanDeath.exe: + "/WorseThanDeath.exe": - when: - os: windows store: steam @@ -629880,7 +631590,7 @@ Worshippers: installDir: Worshippers: {} launch: - /Worshippers.exe: + "/Worshippers.exe": - when: - os: windows store: steam @@ -629889,11 +631599,11 @@ Worshippers: Worst Case Z: steam: id: 450030 -'Wounded: The Beginning': +"Wounded: The Beginning": installDir: Wounded - The Beginning: {} launch: - /Wounded - The Beginning.exe: + "/Wounded - The Beginning.exe": - when: - os: windows store: steam @@ -629903,15 +631613,15 @@ Woven: installDir: Woven: {} launch: - /Woven.app: + "/Woven.app": - when: - os: mac store: steam - /Woven.exe: + "/Woven.exe": - when: - os: windows store: steam - /Woven.x86_64: + "/Woven.x86_64": - when: - bit: 64 os: linux @@ -629920,12 +631630,12 @@ Woven: id: 504690 Wrack: files: - /userdata//253610: + "/userdata//253610": tags: - save when: - store: steam - /Wrack/Wrack-.ini: + "/Wrack/Wrack-.ini": tags: - config when: @@ -629933,20 +631643,20 @@ Wrack: installDir: Wrack: {} launch: - /Wrack_steam.exe: + "/Wrack_steam.exe": - when: - os: windows store: steam - /editor/WrackEd_steam.exe: + "/editor/WrackEd_steam.exe": - when: - store: steam steam: id: 253610 -'Wrack: Exoverse': +"Wrack: Exoverse": installDir: Wrack Exoverse: {} launch: - /Exoverse_steam.exe: + "/Exoverse_steam.exe": - when: - store: steam steam: @@ -629956,24 +631666,24 @@ Wraith: Wraith: {} steam: id: 723380 -'Wraith: The Oblivion - Afterlife': +"Wraith: The Oblivion - Afterlife": installDir: Wraith The Oblivion - Afterlife: {} steam: id: 1386870 -'Wraithmind: Volume I': +"Wraithmind: Volume I": installDir: Wraithmind: {} launch: - /Wraithmind.exe: + "/Wraithmind.exe": - when: - os: windows store: steam - /wraithmind.app: + "/wraithmind.app": - when: - os: mac store: steam - /wraithmind.x86_64: + "/wraithmind.x86_64": - when: - bit: 64 os: linux @@ -629984,15 +631694,15 @@ Wraithslayer: installDir: Wraithslayer: {} launch: - /Wraithslayer.app/Contents/MacOS/Wraithslayer: + "/Wraithslayer.app/Contents/MacOS/Wraithslayer": - when: - os: mac store: steam - /Wraithslayer.exe: + "/Wraithslayer.exe": - when: - os: windows store: steam - /Wraithslayer.x86: + "/Wraithslayer.x86": - when: - os: linux store: steam @@ -630002,19 +631712,19 @@ Wrath of Anna: installDir: WoA: {} launch: - /WoA.exe: + "/WoA.exe": - when: - store: steam steam: id: 458520 Wrath of Earth: files: - /WOE.CFG: + "/WOE.CFG": tags: - config when: - os: dos - /WOE_SAVE.*: + "/WOE_SAVE.*": tags: - save when: @@ -630028,11 +631738,11 @@ Wrath of Thor: installDir: WOT: {} launch: - /Wrath of Thor.app/Contents/MacOS/Wrath of Thor: + "/Wrath of Thor.app/Contents/MacOS/Wrath of Thor": - when: - os: mac store: steam - /Wrath of Thor.exe: + "/Wrath of Thor.exe": - when: - os: windows store: steam @@ -630043,11 +631753,11 @@ Wrath of the Fire God: Wrath Of The Fire God: {} steam: id: 511370 -'Wrath of the Goliaths: Dinosaurs': +"Wrath of the Goliaths: Dinosaurs": installDir: Wrath of the Goliaths Dinosaurs: {} launch: - /WrathOfTheGoliaths.exe: + "/WrathOfTheGoliaths.exe": - when: - os: windows store: steam @@ -630058,14 +631768,14 @@ Wrath of the Samurai: Wrath of the Samurai: {} steam: id: 1064710 -'Wrath: Aeon of Ruin': +"Wrath: Aeon of Ruin": files: - /kp1/config.cfg: + "/kp1/config.cfg": tags: - config when: - os: windows - /kp1/data/profiles: + "/kp1/data/profiles": tags: - save when: @@ -630075,7 +631785,7 @@ Wrath of the Samurai: installDir: WRATH: {} launch: - /wrath.exe: + "/wrath.exe": - when: - bit: 64 os: windows @@ -630086,17 +631796,17 @@ Wrecked Destruction Simulator: installDir: Wrecked Crash Simulator: {} launch: - /Wrecked Mac.app: + "/Wrecked Mac.app": - when: - os: mac store: steam - /Wrecked.exe: + "/Wrecked.exe": - when: - os: windows store: steam steam: id: 1020660 -'Wrecked: Get Your Ship Together': +"Wrecked: Get Your Ship Together": installDir: Wrecked Get Your Ship Together: {} steam: @@ -630105,16 +631815,19 @@ Wrecker: installDir: Wrecker: {} launch: - /WRECKER: + "/WRECKER": - when: - bit: 32 os: linux store: steam - /WRECKER.app: + - bit: 64 + os: linux + store: steam + "/WRECKER.app": - when: - os: mac store: steam - /WRECKER.exe: + "/WRECKER.exe": - when: - os: windows store: steam @@ -630122,19 +631835,19 @@ Wrecker: id: 1206270 Wreckfest: files: - /AppData/LocalLow/THQNordic/Wreckfest: + "/AppData/LocalLow/THQNordic/Wreckfest": tags: - config when: - os: windows store: microsoft - /My Games/wreckfest: + "/My Games/wreckfest": tags: - config - save when: - os: windows - /Packages/NordicGames.631082A550AE7_46xc33nm0q0f8/SystemAppData/wgs: + "/Packages/NordicGames.631082A550AE7_46xc33nm0q0f8/SystemAppData/wgs": tags: - save when: @@ -630144,13 +631857,13 @@ Wreckfest: id: 1249986612 id: gogExtra: - - 2139564572 - 1570193906 + - 2139564572 installDir: Wreckfest: {} steam: id: 228380 -Wreckin' Ball Adventure: +"Wreckin' Ball Adventure": installDir: WreckinBallAdventure: {} steam: @@ -630162,7 +631875,7 @@ Wrecking Towers (2018): installDir: Wrecking Towers: {} launch: - /Wrecking Towers.exe: + "/Wrecking Towers.exe": - when: - os: windows store: steam @@ -630178,8 +631891,8 @@ Wrench: installDir: Wrench: {} launch: - /WindowsNoEditor/WrenchGame.exe: - - arguments: '-nohmd' + "/WindowsNoEditor/WrenchGame.exe": + - arguments: "-nohmd" when: - bit: 64 os: windows @@ -630192,12 +631905,12 @@ WrestleQuest: installDir: WrestleQuest: {} launch: - /WrestleQuest.exe: + "/WrestleQuest.exe": - when: - bit: 64 os: windows store: steam - /WrestleQuest.x86_64: + "/WrestleQuest.x86_64": - when: - bit: 64 os: linux @@ -630208,11 +631921,11 @@ Wrestlers Without Boundaries: installDir: Wrestling: {} launch: - /Wrestlers Without Boundaries.app/Contents/MacOS/Wrestlers Without Boundaries: + "/Wrestlers Without Boundaries.app/Contents/MacOS/Wrestlers Without Boundaries": - when: - os: mac store: steam - /Wrestlers Without Boundaries.exe: + "/Wrestlers Without Boundaries.exe": - when: - os: windows store: steam @@ -630222,7 +631935,7 @@ Wrestling Empire: installDir: Wrestling Empire: {} launch: - /Wrestling Empire.exe: + "/Wrestling Empire.exe": - when: - os: windows store: steam @@ -630232,7 +631945,7 @@ Wrestling Revolution 2D: installDir: Wrestling Revolution 2D: {} launch: - /Wrestling Revolution.exe: + "/Wrestling Revolution.exe": - when: - os: windows store: steam @@ -630242,11 +631955,11 @@ Wrestling Revolution 3D: installDir: Wrestling Revolution 3D: {} launch: - /WR3D.app: + "/WR3D.app": - when: - os: mac store: steam - /Wrestling Revolution 3D.exe: + "/Wrestling Revolution 3D.exe": - when: - os: windows store: steam @@ -630256,7 +631969,7 @@ Wrestling Spirit 3: installDir: Wrestling Spirit 3: {} launch: - /WreSpi3.exe: + "/WreSpi3.exe": - when: - os: windows store: steam @@ -630266,7 +631979,7 @@ Write word: installDir: Write word: {} launch: - /Write word.exe: + "/Write word.exe": - when: - os: windows store: steam @@ -630276,7 +631989,7 @@ Writers: installDir: Writers: {} launch: - /writers.exe: + "/writers.exe": - when: - os: windows store: steam @@ -630284,12 +631997,12 @@ Writers: id: 649990 Written in the Sky: files: - /renpy/config.py: + "/renpy/config.py": tags: - config when: - os: windows - /RenPy/WITS-1443726620: + "/RenPy/WITS-1443726620": tags: - save when: @@ -630297,15 +632010,15 @@ Written in the Sky: installDir: Written in the Sky: {} launch: - /WITS.app: + "/WITS.app": - when: - os: mac store: steam - /WITS.exe: + "/WITS.exe": - when: - os: windows store: steam - /WITS.sh: + "/WITS.sh": - when: - os: linux store: steam @@ -630315,7 +632028,7 @@ Wrong Dimension - The One Dimensional Platformer: installDir: Wrong Dimension - The One Dimensional Platformer: {} launch: - /Wrong Dimension.exe: + "/Wrong Dimension.exe": - when: - os: windows store: steam @@ -630325,7 +632038,7 @@ Wrongworld: installDir: Wrongworld: {} launch: - /WindowsNoEditor/Wrongworld/Binaries/Win32/Wrongworld.exe: + "/WindowsNoEditor/Wrongworld/Binaries/Win32/Wrongworld.exe": - when: - os: windows store: steam @@ -630333,7 +632046,7 @@ Wrongworld: id: 664750 Wrought Flesh: files: - /Godot/app_userdata/WroughtFlesh: + "/Godot/app_userdata/WroughtFlesh": tags: - save when: @@ -630341,16 +632054,19 @@ Wrought Flesh: installDir: WroughtFlesh: {} launch: - /Wrought Flesh.app/Contents/MacOS/Wrought Flesh: + "/Wrought Flesh.app/Contents/MacOS/Wrought Flesh": - when: - os: mac store: steam - /WroughtFlesh.exe: + "/WroughtFlesh.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam - /WroughtFlesh.x86_64: + "/WroughtFlesh.x86_64": - when: - os: linux store: steam @@ -630361,7 +632077,7 @@ WtBoy: id: 633350 Wulverblade: files: - /userdata//587180/remote: + "/userdata//587180/remote": tags: - save when: @@ -630370,7 +632086,7 @@ Wulverblade: installDir: Wulverblade: {} launch: - /Wulverblade.exe: + "/Wulverblade.exe": - when: - os: windows store: steam @@ -630380,15 +632096,15 @@ Wunderdoktor: installDir: Wunderdoktor: {} launch: - /Wunderdoktor.app: + "/Wunderdoktor.app": - when: - os: mac store: steam - /wunderdoktor.exe: + "/wunderdoktor.exe": - when: - os: windows store: steam - /wunderdoktor.x86: + "/wunderdoktor.x86": - when: - os: linux store: steam @@ -630398,15 +632114,15 @@ Wunderling DX: installDir: Wunderling: {} launch: - /Underling-Mac-Shipping.app/Contents/MacOS/Underling-Mac-Shipping: + "/Underling-Mac-Shipping.app/Contents/MacOS/Underling-Mac-Shipping": - when: - os: mac store: steam - /Underling.exe: + "/Underling.exe": - when: - os: windows store: steam - /Underling.sh: + "/Underling.sh": - when: - os: linux store: steam @@ -630416,7 +632132,7 @@ Wunderwaffe: installDir: Wunderwaffe: {} launch: - /nw.exe: + "/nw.exe": - when: - bit: 64 os: windows @@ -630425,17 +632141,17 @@ Wunderwaffe: id: 903160 Wuppo: files: - /Wuppo/Wuppo_config.ini: + "/Wuppo/Wuppo_config.ini": tags: - config when: - os: windows - /Wuppo/savedata: + "/Wuppo/savedata": tags: - save when: - os: windows - /Wuppo/savedata/*.ini: + "/Wuppo/savedata/*.ini": tags: - save when: @@ -630445,11 +632161,11 @@ Wuppo: installDir: Wuppo: {} launch: - /Wuppo.app: + "/Wuppo.app": - when: - os: mac store: steam - /Wuppo.exe: + "/Wuppo.exe": - when: - os: windows store: steam @@ -630457,7 +632173,7 @@ Wuppo: id: 400630 Wurm Unlimited: files: - /LaunchConfig.ini: + "/LaunchConfig.ini": tags: - config when: @@ -630465,23 +632181,23 @@ Wurm Unlimited: installDir: Wurm Unlimited: {} launch: - /WurmLauncher/WurmLauncher: + "/WurmLauncher/WurmLauncher": - when: - os: linux store: steam - workingDir: /WurmLauncher - /WurmLauncher/WurmLauncher.exe: + workingDir: "/WurmLauncher" + "/WurmLauncher/WurmLauncher.exe": - when: - os: windows store: steam - workingDir: /WurmLauncher + workingDir: "/WurmLauncher" steam: id: 366220 Wurroom: installDir: Wurroom: {} launch: - /Wurroom.exe: + "/Wurroom.exe": - when: - os: windows store: steam @@ -630491,7 +632207,7 @@ Wurst Defender Coop Edition: installDir: Wurst Defender Coop Edition: {} launch: - /Wurst Defender Coop Edition.exe: + "/Wurst Defender Coop Edition.exe": - when: - os: windows store: steam @@ -630501,17 +632217,17 @@ Wushu Chronicles: installDir: Wushu Chronicles: {} launch: - /wlz/release_dx11/winpc_launcher.exe: + "/wlz/release_dx11/winpc_launcher.exe": - when: - os: windows store: steam steam: id: 921390 -'Wuxia Archive: Crisis Escape': +"Wuxia Archive: Crisis Escape": installDir: Wuxia archive Crisis escape: {} launch: - /Wuxia archive - Crisis escape.exe: + "/Wuxia archive - Crisis escape.exe": - when: - bit: 64 os: windows @@ -630522,7 +632238,7 @@ Wuxia Master: installDir: WuxiaMaster: {} launch: - /WuxiaMaster.exe: + "/WuxiaMaster.exe": - when: - os: windows store: steam @@ -630532,7 +632248,7 @@ Wuxing Master: installDir: Wuxing Master: {} launch: - /bx.exe: + "/bx.exe": - arguments: steam when: - os: windows @@ -630547,14 +632263,14 @@ WyVRn: Wyatt Derp: steam: id: 473640 -'Wyatt Derp 2: Peacekeeper': +"Wyatt Derp 2: Peacekeeper": steam: id: 473580 Wylde Flowers: installDir: Wylde Flowers: {} launch: - /WyldeFlowers.exe: + "/WyldeFlowers.exe": - when: - store: steam steam: @@ -630563,16 +632279,16 @@ Wyrmsun: installDir: Wyrmsun: {} launch: - /launcher.exe: + "/launcher.exe": - when: - os: windows store: steam - /wyrmsun32: + "/wyrmsun32": - when: - bit: 32 os: linux store: steam - /wyrmsun64: + "/wyrmsun64": - when: - bit: 64 os: linux @@ -630581,7 +632297,7 @@ Wyrmsun: id: 370070 Wytchwood: files: - /LocalLow/Alientrap/Wytchwood: + "/LocalLow/Alientrap/Wytchwood": tags: - save when: @@ -630591,20 +632307,20 @@ Wytchwood: installDir: Wytchwood: {} launch: - /Wytchwood.exe: + "/Wytchwood.exe": - when: - store: steam steam: id: 729000 -'Wyv and Keep: The Temple of the Lost Idol': +"Wyv and Keep: The Temple of the Lost Idol": files: - /Library/Application Support/WyvAndKeep: + "/Library/Application Support/WyvAndKeep": tags: - config - save when: - os: mac - /WyvAndKeep: + "/WyvAndKeep": tags: - config - save @@ -630613,15 +632329,15 @@ Wytchwood: installDir: Wyv and Keep in The Temple of the Lost Idol: {} launch: - /Wyv and Keep.app: + "/Wyv and Keep.app": - when: - os: mac store: steam - /Wyv and Keep.exe: + "/Wyv and Keep.exe": - when: - os: windows store: steam - /WyvAndKeep: + "/WyvAndKeep": - when: - os: linux store: steam @@ -630631,30 +632347,30 @@ X Archetype: installDir: X Archetype: {} launch: - /XArchetype.exe: + "/XArchetype.exe": - when: - bit: 64 os: windows store: steam - /X_Archetype: + "/X_Archetype": - when: - os: linux store: steam steam: id: 984230 -'X Caeli: The Iron Hand of Love': +"X Caeli: The Iron Hand of Love": installDir: God Starfighter: {} launch: - /God Starfighter.app: + "/God Starfighter.app": - when: - os: mac store: steam - /God Starfighter.exe: + "/God Starfighter.exe": - when: - os: windows store: steam - /God Starfighter.x86_64: + "/God Starfighter.x86_64": - when: - os: linux store: steam @@ -630662,17 +632378,17 @@ X Archetype: id: 708970 X Rebirth: files: - /Egosoft/X Rebirth//config.xml: + "/Egosoft/X Rebirth//config.xml": tags: - config when: - os: windows - /Egosoft/X Rebirth//save: + "/Egosoft/X Rebirth//save": tags: - save when: - os: windows - /.config/EgoSoft/X Rebirth//save: + "/.config/EgoSoft/X Rebirth//save": tags: - save when: @@ -630688,16 +632404,16 @@ X Rebirth: installDir: X Rebirth: {} launch: - /XRebirth.app: + "/XRebirth.app": - when: - bit: 64 os: mac store: steam - /XRebirth.exe: + "/XRebirth.exe": - when: - os: windows store: steam - /testandlaunch: + "/testandlaunch": - arguments: XRebirth when: - bit: 64 @@ -630714,15 +632430,15 @@ X Wars Deluxe: installDir: X Wars Deluxe: {} launch: - /X Wars Deluxe.exe: + "/X Wars Deluxe.exe": - when: - os: windows store: steam - /X Wars Deluxe.x86_64: + "/X Wars Deluxe.x86_64": - when: - os: linux store: steam - /XWDMac.app/Contents/MacOS/X Wars Deluxe: + "/XWDMac.app/Contents/MacOS/X Wars Deluxe": - when: - os: mac store: steam @@ -630732,7 +632448,7 @@ X-17: installDir: X-17: {} launch: - /X-17.exe: + "/X-17.exe": - when: - os: windows store: steam @@ -630740,13 +632456,13 @@ X-17: id: 448060 X-Blades: files: - /XBlades: + "/XBlades": tags: - config - save when: - os: windows - /XBlades: + "/XBlades": tags: - config - save @@ -630756,8 +632472,8 @@ X-Blades: id: 1489204325 id: gogExtra: - - 1463987837 - 1237741022 + - 1463987837 - 1799353301 steamExtra: - 604280 @@ -630765,19 +632481,19 @@ X-Blades: installDir: X-Blades: {} launch: - /X-Blades.app: + "/X-Blades.app": - when: - os: mac store: steam - /launcher.exe: + "/launcher.exe": - when: - os: windows store: steam steam: id: 7510 -'X-COM: Apocalypse': +"X-COM: Apocalypse": files: - /SAVEGAME: + "/SAVEGAME": tags: - save when: @@ -630787,19 +632503,19 @@ X-Blades: installDir: XCom Apocalypse: {} launch: - /dosbox.exe: + "/dosbox.exe": - when: - store: steam steam: id: 7660 -'X-COM: Enforcer': +"X-COM: Enforcer": files: - /System: + "/System": tags: - config when: - os: windows - /System/User.ini: + "/System/User.ini": tags: - save when: @@ -630809,15 +632525,15 @@ X-Blades: installDir: XCom Enforcer: {} launch: - /system/xcom.exe: + "/system/xcom.exe": - when: - store: steam - workingDir: /system + workingDir: "/system" steam: id: 7770 -'X-COM: Interceptor': +"X-COM: Interceptor": files: - /Saved Games: + "/Saved Games": tags: - save when: @@ -630827,7 +632543,7 @@ X-Blades: installDir: XCom Interceptor: {} launch: - /Interceptor.exe: + "/Interceptor.exe": - when: - store: steam registry: @@ -630836,28 +632552,28 @@ X-Blades: - config steam: id: 7730 -'X-COM: Terror from the Deep': +"X-COM: Terror from the Deep": gog: id: 1445249983 installDir: X-COM Terror from the Deep: {} launch: - /TFD/Terror From the Deep_patched.exe: + "/TFD/Terror From the Deep_patched.exe": - when: - store: steam - /runme.exe: + "/runme.exe": - when: - store: steam steam: id: 7650 -'X-COM: UFO Defense': +"X-COM: UFO Defense": files: - /sound/sound.cfg: + "/sound/sound.cfg": tags: - config when: - os: dos - /game_*: + "/game_*": tags: - save when: @@ -630867,59 +632583,59 @@ X-Blades: installDir: XCom UFO Defense: {} launch: - /XCOM/UFO Defense_Patched.exe: + "/XCOM/UFO Defense_Patched.exe": - when: - store: steam - /dosbox.exe: + "/dosbox.exe": - when: - store: steam steam: id: 7760 -'X-Men Legends II: Rise of Apocalypse': +"X-Men Legends II: Rise of Apocalypse": files: - /Activision/X-Men Legends 2/Save: + "/Activision/X-Men Legends 2/Save": tags: - save when: - os: windows -'X-Men Origins: Wolverine - Uncaged Edition': +"X-Men Origins: Wolverine - Uncaged Edition": files: - /Wolverine/WGame/Config: + "/Wolverine/WGame/Config": tags: - config when: - os: windows - /Wolverine/WGame/SaveData: + "/Wolverine/WGame/SaveData": tags: - save when: - os: windows -'X-Men: The Ravages of Apocalypse': +"X-Men: The Ravages of Apocalypse": files: - /xmen: + "/xmen": tags: - config - save when: - os: windows -'X-MiGuFighters: Stripper Anya': +"X-MiGuFighters: Stripper Anya": installDir: X-MiGuFighters Stripper Anya: {} launch: - /XMF_StripperAnya2_v3_NEWMEM_GLBLSPR_november2018.exe: + "/XMF_StripperAnya2_v3_NEWMEM_GLBLSPR_november2018.exe": - when: - os: windows store: steam steam: id: 705700 -'X-Morph: Defense': +"X-Morph: Defense": files: - /X-Morph Defense: + "/X-Morph Defense": tags: - save when: - os: windows - /X-Morph Defense/Config: + "/X-Morph Defense/Config": tags: - config when: @@ -630929,15 +632645,15 @@ X-Blades: installDir: X-Morph Defense: {} launch: - /bin/shooter_win64_release.exe: + "/bin/shooter_win64_release.exe": - when: - store: steam - workingDir: /bin + workingDir: "/bin" steam: id: 408410 X-Motor Racing: files: - /Profile0.prf: + "/Profile0.prf": tags: - save when: @@ -630946,7 +632662,7 @@ X-Note: installDir: X-note: {} launch: - /x-note.exe: + "/x-note.exe": - when: - os: windows store: steam @@ -630956,7 +632672,7 @@ X-POINT: installDir: X-POINT: {} launch: - /X_POINT.exe: + "/X_POINT.exe": - when: - bit: 64 os: windows @@ -630966,102 +632682,102 @@ X-POINT: X-Plane 10 Global: id: steamExtra: - - 502850 - - 491570 - - 493560 - - 339399 - - 339398 - - 339397 - - 339395 - - 339394 - - 339393 - - 339389 - - 339390 - - 339391 - - 325134 - - 325133 - - 325132 - - 325131 - - 325130 - - 324780 + - 294560 + - 298620 + - 310410 + - 310420 + - 310430 + - 310440 - 315010 - - 316290 - 316280 - - 339388 - - 339387 - - 339386 - - 339385 - - 339384 - - 339381 - - 339383 - - 339382 - - 339380 - - 325138 + - 316290 + - 324780 + - 325130 + - 325131 + - 325132 + - 325133 + - 325134 - 325135 - 325136 - 325137 + - 325138 - 325139 - - 325141 - 325140 + - 325141 - 325142 - 325143 - 325144 - - 294560 - - 298620 - - 310440 - - 310410 - - 310430 - - 310420 + - 339380 + - 339381 + - 339382 + - 339383 + - 339384 + - 339385 + - 339386 + - 339387 + - 339388 + - 339389 + - 339390 + - 339391 + - 339393 + - 339394 + - 339395 + - 339397 + - 339398 + - 339399 + - 491570 + - 493560 + - 502850 installDir: X-Plane 10: {} launch: - /Airfoil-Maker-i386: + "/Airfoil-Maker-i386": - when: - os: linux store: steam - /Airfoil-Maker.app: + "/Airfoil-Maker.app": - when: - os: mac store: steam - /Airfoil-Maker.exe: + "/Airfoil-Maker.exe": - when: - os: windows store: steam - /Plane-Maker-i386: + "/Plane-Maker-i386": - when: - os: linux store: steam - /Plane-Maker.app: + "/Plane-Maker.app": - when: - os: mac store: steam - /Plane-Maker.exe: + "/Plane-Maker.exe": - when: - os: windows store: steam - /X-Plane-32bit.app: + "/X-Plane-32bit.app": - when: - os: mac store: steam - /X-Plane-32bit.exe: + "/X-Plane-32bit.exe": - when: - os: windows store: steam - /X-Plane-i386: + "/X-Plane-i386": - when: - os: linux store: steam - /X-Plane-x86_64: + "/X-Plane-x86_64": - when: - bit: 64 os: linux store: steam - /X-Plane.app: + "/X-Plane.app": - when: - bit: 64 os: mac store: steam - /X-Plane.exe: + "/X-Plane.exe": - when: - bit: 64 os: windows @@ -631070,7 +632786,7 @@ X-Plane 10 Global: id: 292180 X-Plane 11: files: - /Output/preferences: + "/Output/preferences": tags: - config when: @@ -631079,31 +632795,31 @@ X-Plane 11: installDir: X-Plane 11: {} launch: - /Airfoil Maker-x86_64: + "/Airfoil Maker-x86_64": - when: - bit: 64 os: linux store: steam - /Airfoil Maker.app: + "/Airfoil Maker.app": - when: - os: mac store: steam - /Airfoil Maker.exe: + "/Airfoil Maker.exe": - when: - bit: 64 os: windows store: steam - /X-Plane-x86_64: + "/X-Plane-x86_64": - when: - bit: 64 os: linux store: steam - /X-Plane.app: + "/X-Plane.app": - when: - bit: 64 os: mac store: steam - /X-Plane.exe: + "/X-Plane.exe": - when: - bit: 64 os: windows @@ -631114,30 +632830,30 @@ X-Plane 12: installDir: X-Plane 12: {} launch: - /Airfoil Maker-x86_64: + "/Airfoil Maker-x86_64": - when: - bit: 64 os: linux store: steam - /Airfoil Maker.app: + "/Airfoil Maker.app": - when: - os: mac store: steam - /Airfoil Maker.exe: + "/Airfoil Maker.exe": - when: - bit: 64 os: windows store: steam - /X-Plane-x86_64: + "/X-Plane-x86_64": - when: - bit: 64 os: linux store: steam - /X-Plane.app: + "/X-Plane.app": - when: - os: mac store: steam - /X-Plane.exe: + "/X-Plane.exe": - when: - bit: 64 os: windows @@ -631148,16 +632864,16 @@ X-Team: installDir: X-Team: {} launch: - /bin/Game.exe: + "/bin/Game.exe": - when: - os: windows store: steam - workingDir: /bin + workingDir: "/bin" steam: id: 290850 X-Tension: files: - /*.sav: + "/*.sav": tags: - save when: @@ -631167,7 +632883,7 @@ X-Tension: installDir: X-Tension: {} launch: - /runme.exe: + "/runme.exe": - when: - store: steam steam: @@ -631176,7 +632892,7 @@ X-Town 3D Game: installDir: rossprogrammproduct: {} launch: - /XTown3Dgame.exe: + "/XTown3Dgame.exe": - when: - os: windows store: steam @@ -631185,9 +632901,9 @@ X-Town 3D Game: X-ray Hospital: steam: id: 850720 -'X2: The Threat': +"X2: The Threat": files: - /**.sav: + "/**.sav": tags: - save when: @@ -631197,19 +632913,19 @@ X-ray Hospital: installDir: X2 - The Threat: {} launch: - /x2.exe: + "/x2.exe": - when: - store: steam steam: id: 2800 -'X2: Wolverine''s Revenge': +"X2: Wolverine's Revenge": files: - /Save: + "/Save": tags: - save when: - os: windows - /Wolvie.INI: + "/Wolvie.INI": tags: - config when: @@ -631218,26 +632934,26 @@ X2Roulette: installDir: x2Roulette: {} launch: - /x2Roulette.exe: + "/x2Roulette.exe": - when: - bit: 64 os: windows store: steam steam: id: 956780 -'X3: Reunion': +"X3: Reunion": files: - /.config/EgoSoft/X3: + "/.config/EgoSoft/X3": tags: - config when: - os: linux - /.config/EgoSoft/X3/save/X00.sav: + "/.config/EgoSoft/X3/save/X00.sav": tags: - save when: - os: linux - /Egosoft/X3/save: + "/Egosoft/X3/save": tags: - save when: @@ -631247,59 +632963,59 @@ X2Roulette: installDir: X3 - Reunion: {} launch: - /X3 - Reunion.app: + "/X3 - Reunion.app": - when: - os: mac store: steam - /testandlaunch: + "/testandlaunch": - arguments: X3R_config when: - os: linux store: steam - /x3.exe: + "/x3.exe": - when: - os: windows store: steam steam: id: 2810 -'X3: Terran Conflict': +"X3: Terran Conflict": files: - /EgoSoft/X3AP/save: + "/EgoSoft/X3AP/save": tags: - save when: - os: windows - /EgoSoft/X3TC/save: + "/EgoSoft/X3TC/save": tags: - save when: - os: windows - /EgoSoft/X3AP/config.yaml: + "/EgoSoft/X3AP/config.yaml": tags: - config when: - os: linux - /EgoSoft/X3AP/save: + "/EgoSoft/X3AP/save": tags: - save when: - os: linux - /EgoSoft/X3FL/config.yaml: + "/EgoSoft/X3FL/config.yaml": tags: - config when: - os: linux - /EgoSoft/X3FL/save: + "/EgoSoft/X3FL/save": tags: - save when: - os: linux - /EgoSoft/X3TC/config.yaml: + "/EgoSoft/X3TC/config.yaml": tags: - config when: - os: linux - /Egosoft/X3TC/save: + "/Egosoft/X3TC/save": tags: - save when: @@ -631317,15 +633033,15 @@ X2Roulette: installDir: X3 Terran Conflict: {} launch: - /X3 - Terran Conflict.app: + "/X3 - Terran Conflict.app": - when: - os: mac store: steam - /X3TC.exe: + "/X3TC.exe": - when: - os: windows store: steam - /testandlaunch: + "/testandlaunch": - arguments: X3TC_config when: - os: linux @@ -631336,83 +633052,87 @@ X2Roulette: - config steam: id: 2820 -'X4: Foundations': +"X4: Foundations": files: - /.config/EgoSoft/X4//config.xml: + "/.config/EgoSoft/X4//config.xml": tags: - config when: - os: linux - /.config/EgoSoft/X4//save: + "/.config/EgoSoft/X4//save": tags: - save when: - os: linux - /Egosoft/X4//config.xml: + "/Egosoft/X4//config.xml": tags: - config when: - - store: steam - /Egosoft/X4//save: + - os: windows + store: steam + "/Egosoft/X4//save": tags: - save when: - - store: steam - /Egosoft/X4/config.xml: + - os: windows + store: steam + "/Egosoft/X4/config.xml": tags: - config when: - - store: gog - /Egosoft/X4/save: + - os: windows + store: gog + "/Egosoft/X4/save": tags: - save when: - - store: gog + - os: windows + store: gog gog: id: 1395669635 id: gogExtra: - - 1588366064 - - 1897444972 - - 1899940710 - - 1636239177 - - 1811185500 - 1238357884 - 1315103966 - - 1698001635 - - 2099994529 - - 1880320955 - - 2047621599 - - 1811574414 - 1539694494 + - 1588366064 + - 1636239177 + - 1698001635 + - 1811185500 + - 1811574414 + - 1880320955 + - 1897444972 + - 1899940710 - 1995119004 + - 2047621599 + - 2099994529 steamExtra: - 942190 - 1133000 - - 1288460 - - 1701060 - 1239390 - 1277600 + - 1288460 - 1288490 + - 1701060 - 1788600 - 1990040 - 2375830 installDir: X4 Foundations: {} launch: - /X4.exe: + "/X4.exe": - when: - os: windows store: steam - /testandlaunch: + "/testandlaunch": - when: - os: linux store: steam steam: id: 392160 -'X: Beyond the Frontier': +"X: Beyond the Frontier": files: - /*.sav: + "/*.sav": tags: - save when: @@ -631422,7 +633142,7 @@ X2Roulette: installDir: X Beyond the Frontier: {} launch: - /runme.exe: + "/runme.exe": - when: - store: steam steam: @@ -631431,7 +633151,7 @@ XANARTHRAXIA: installDir: XANARTHRAXIA: {} launch: - /XANARTHRAXIA.exe: + "/XANARTHRAXIA.exe": - when: - bit: 64 store: steam @@ -631441,78 +633161,78 @@ XAOC: installDir: XAOC: {} launch: - /bin/XAOC_Shipping.exe: + "/bin/XAOC_Shipping.exe": - when: - bit: 32 os: windows store: steam - workingDir: /bin + workingDir: "/bin" steam: id: 614860 XBall Champion: installDir: XBall Champion: {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: id: 794570 -'XBlaze Code: Embryo': +"XBlaze Code: Embryo": installDir: XBlaze Code Embryo: {} launch: - /_home/_win/BBADV_Steam.exe: + "/_home/_win/BBADV_Steam.exe": - when: - os: windows store: steam - workingDir: /_home/_win + workingDir: "/_home/_win" steam: id: 421610 -'XBlaze Lost: Memories': +"XBlaze Lost: Memories": installDir: XBlaze Lost Memories: {} launch: - /_home/_win/BBADV2_Steam.exe: + "/_home/_win/BBADV2_Steam.exe": - when: - os: windows store: steam - workingDir: /_home/_win + workingDir: "/_home/_win" steam: id: 438940 XCOM 2: files: - /Library/Application Support/Feral Interactive/XCOM 2: + "/Library/Application Support/Feral Interactive/XCOM 2": tags: - config when: - os: mac - /Library/Application Support/Feral Interactive/XCOM 2/VFS/Local/my games/XCOM2/XComGame/SaveData: + "/Library/Application Support/Feral Interactive/XCOM 2/VFS/Local/my games/XCOM2/XComGame/SaveData": tags: - save when: - os: mac - /My Games/XCOM2/XComGame/Config: + "/My Games/XCOM2/XComGame/Config": tags: - config when: - os: windows - /My Games/XCOM2/XComGame/SaveData: + "/My Games/XCOM2/XComGame/SaveData": tags: - save when: - os: windows - /feral-interactive/XCOM 2 WotC/VFS/Local/my games/XCOM2 War of the Chosen/XComGame/SaveData: + "/feral-interactive/XCOM 2 WotC/VFS/Local/my games/XCOM2 War of the Chosen/XComGame/SaveData": tags: - save when: - os: linux - /feral-interactive/XCOM2/Config: + "/feral-interactive/XCOM2/Config": tags: - config when: - os: linux - /feral-interactive/XCOM2/VFS/Local/my games/XCOM2/XComGame/SaveData: + "/feral-interactive/XCOM2/VFS/Local/my games/XCOM2/XComGame/SaveData": tags: - save when: @@ -631521,37 +633241,37 @@ XCOM 2: id: 1482002159 id: steamExtra: - - 593380 - 433050 + - 593380 installDir: XCOM 2: {} launch: - /2KLauncher/LauncherPatcher.exe: - - arguments: '-steam_auto_login -game-61483=-review -game-61483=-noRedscreens' + "/2KLauncher/LauncherPatcher.exe": + - arguments: "-steam_auto_login -game-61483=-review -game-61483=-noRedscreens" when: - bit: 64 os: windows store: steam - /XCOM 2.app: + "/XCOM 2.app": - when: - bit: 64 os: mac store: steam - /XCOM2.sh: + "/XCOM2.sh": - when: - bit: 64 os: linux store: steam steam: id: 268500 -'XCOM: Chimera Squad': +"XCOM: Chimera Squad": files: - /My Games/XCOM Chimera Squad/XComGame/Config: + "/My Games/XCOM Chimera Squad/XComGame/Config": tags: - config when: - os: windows - /My Games/XCOM Chimera Squad/XComGame/SaveData: + "/My Games/XCOM Chimera Squad/XComGame/SaveData": tags: - save when: @@ -631561,53 +633281,53 @@ XCOM 2: installDir: XCOM-Chimera-Squad: {} launch: - /2KLauncher/LauncherPatcher.exe: - - arguments: '-steam_auto_login -game-50546=-crashdumpwatcher -game-50546=-review -game-50546=-noRedscreens' + "/2KLauncher/LauncherPatcher.exe": + - arguments: "-steam_auto_login -game-50546=-crashdumpwatcher -game-50546=-review -game-50546=-noRedscreens" when: - bit: 64 store: steam - workingDir: /Launcher + workingDir: "/Launcher" steam: id: 882100 -'XCOM: Enemy Unknown': +"XCOM: Enemy Unknown": files: - /Library/Application Support/Feral Interactive/XCOM Enemy Unknown: + "/Library/Application Support/Feral Interactive/XCOM Enemy Unknown": tags: - config - save when: - os: mac - /My Games/XCOM - Enemy Unknown/XComGame/Config: + "/My Games/XCOM - Enemy Unknown/XComGame/Config": tags: - config when: - os: windows - /My Games/XCOM - Enemy Unknown/XComGame/SaveData: + "/My Games/XCOM - Enemy Unknown/XComGame/SaveData": tags: - save when: - os: windows - /My Games/XCOM - Enemy Within/XComGame/Config: + "/My Games/XCOM - Enemy Within/XComGame/Config": tags: - config when: - os: windows - /My Games/XCOM - Enemy Within/XComGame/SaveData: + "/My Games/XCOM - Enemy Within/XComGame/SaveData": tags: - save when: - os: windows - /feral-interactive/XCOM/WritableFiles: + "/feral-interactive/XCOM/WritableFiles": tags: - config when: - os: linux - /feral-interactive/XCOM/XEW/savedata: + "/feral-interactive/XCOM/XEW/savedata": tags: - save when: - os: linux - /feral-interactive/XCOM/savedata: + "/feral-interactive/XCOM/savedata": tags: - save when: @@ -631616,22 +633336,22 @@ XCOM 2: id: 1558688142 id: steamExtra: - - 225340 - - 209812 - 209811 + - 209812 + - 225340 installDir: XCom-Enemy-Unknown: {} launch: - /Binaries/Win32/XComGame.exe: + "/Binaries/Win32/XComGame.exe": - when: - os: windows store: steam - /XCOM Enemy Unknown.app: + "/XCOM Enemy Unknown.app": - when: - os: mac store: steam - /xcom.sh: - - arguments: '-arch=x86_64' + "/xcom.sh": + - arguments: "-arch=x86_64" when: - bit: 64 os: linux @@ -631642,14 +633362,14 @@ XCavalypse: installDir: XCavalypse: {} launch: - /XCav.exe: - - arguments: '-fullscreen' + "/XCav.exe": + - arguments: "-fullscreen" when: - bit: 64 os: windows store: steam - /XCav/Binaries/Linux/XCav-Linux-Shipping: - - arguments: '-fullscreen' + "/XCav/Binaries/Linux/XCav-Linux-Shipping": + - arguments: "-fullscreen" when: - os: linux store: steam @@ -631657,7 +633377,7 @@ XCavalypse: id: 447960 XDefiant: files: - /My Games/XDefiant: + "/My Games/XDefiant": tags: - config when: @@ -631669,7 +633389,7 @@ XDrive VR: id: 623370 XEL: files: - /AppData/LocalLow/Tiny Roar/XEL/SaveData: + "/AppData/LocalLow/Tiny Roar/XEL/SaveData": tags: - save when: @@ -631679,7 +633399,7 @@ XEL: installDir: XEL: {} launch: - /XEL.exe: + "/XEL.exe": - when: - os: windows store: steam @@ -631689,17 +633409,17 @@ XENOS Defense: installDir: XENOS Defense: {} launch: - /Xenos Defense.exe: + "/Xenos Defense.exe": - when: - os: windows store: steam steam: id: 1122760 -'XERA: Survival': +"XERA: Survival": installDir: XERA: {} launch: - /XERA_Launcher.exe: + "/XERA_Launcher.exe": - when: - bit: 64 os: windows @@ -631710,7 +633430,7 @@ XEYYEX: installDir: XEYEX: {} launch: - /xeyyex.exe: + "/xeyyex.exe": - when: - os: windows store: steam @@ -631730,7 +633450,7 @@ XField Paintball 3: installDir: XFieldPaintball3: {} launch: - /XFP3.exe: + "/XFP3.exe": - when: - os: windows store: steam @@ -631740,11 +633460,11 @@ XGun-Weapon Evolution: installDir: XGun: {} launch: - /XGun-WeaponEvolution.exe: + "/XGun-WeaponEvolution.exe": - when: - os: windows store: steam - /mac_content.app: + "/mac_content.app": - when: - os: mac store: steam @@ -631752,12 +633472,12 @@ XGun-Weapon Evolution: id: 534780 XIII: files: - /save: + "/save": tags: - save when: - os: windows - /system: + "/system": tags: - config when: @@ -631767,7 +633487,7 @@ XIII: installDir: XIII - Classic: {} launch: - /system/XIII.exe: + "/system/XIII.exe": - when: - os: windows store: steam @@ -631775,7 +633495,7 @@ XIII: id: 1170760 XIII (2020): files: - /AppData/LocalLow/Microids/XIII/XIII_Save.bin: + "/AppData/LocalLow/Microids/XIII/XIII_Save.bin": tags: - save when: @@ -631785,7 +633505,7 @@ XIII (2020): installDir: XIII: {} launch: - /XIII.exe: + "/XIII.exe": - when: - store: steam registry: @@ -631794,28 +633514,28 @@ XIII (2020): - config steam: id: 1154790 -'XIII Century: Blood of Europe': +"XIII Century: Blood of Europe": installDir: XIII Century Gold Edition: {} launch: - /config.exe: + "/config.exe": - when: - os: windows store: steam - /engine.exe: + "/engine.exe": - when: - os: windows store: steam steam: id: 34420 -'XIII Century: Death or Glory': +"XIII Century: Death or Glory": files: - /My Games/XIII Century Gold Edition/profiles: + "/My Games/XIII Century Gold Edition/profiles": tags: - save when: - os: windows - /My Games/XIII Century Gold Edition/profiles/*.cfg: + "/My Games/XIII Century Gold Edition/profiles/*.cfg": tags: - config when: @@ -631825,21 +633545,21 @@ XIII (2020): installDir: XIII Century Gold Edition: {} launch: - /config.exe: + "/config.exe": - when: - os: windows store: steam - /engine.exe: + "/engine.exe": - when: - os: windows store: steam steam: id: 34420 -'XIII: Lost Identity': +"XIII: Lost Identity": installDir: XIII - Lost Identity: {} launch: - /XIII.exe: + "/XIII.exe": - when: - os: windows store: steam @@ -631849,19 +633569,19 @@ XIIZEAL: installDir: XIIZEAL: {} launch: - /xiizeal.exe: + "/xiizeal.exe": - when: - store: steam steam: id: 364250 -'XING: The Land Beyond': +"XING: The Land Beyond": files: - /XING/Saved/Config/WindowsNoEditor: + "/XING/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /XING/Saved/SaveGames: + "/XING/Saved/SaveGames": tags: - save when: @@ -631869,8 +633589,8 @@ XIIZEAL: installDir: XING: {} launch: - /XING.exe: - - arguments: '-noHMD -TESTANALYTICS' + "/XING.exe": + - arguments: "-noHMD -TESTANALYTICS" when: - os: windows store: steam @@ -631878,7 +633598,7 @@ XIIZEAL: id: 299400 XL1-ClippingPoint: files: - /clientconfig.g: + "/clientconfig.g": tags: - config when: @@ -631891,7 +633611,7 @@ XL1-ClippingPoint: installDir: XL1-ClippingPoint: {} launch: - /Client.exe: + "/Client.exe": - when: - os: windows store: steam @@ -631906,25 +633626,25 @@ XLarn: installDir: XLarn: {} launch: - /SteamLarn: + "/SteamLarn": - when: - os: linux store: steam - /SteamLarn.app: + "/SteamLarn.app": - when: - os: mac store: steam - /WinLarn.exe: + "/WinLarn.exe": - when: - os: windows store: steam steam: id: 360030 -'XMinutes: Wings': +"XMinutes: Wings": installDir: XMinutes Wings: {} launch: - /XMinutes Shooter.exe: + "/XMinutes Shooter.exe": - when: - os: windows store: steam @@ -631934,7 +633654,7 @@ XMoon: installDir: xMoon: {} launch: - /xMoon.exe: + "/xMoon.exe": - when: - bit: 64 os: windows @@ -631945,11 +633665,11 @@ XNemesis: installDir: XNemesis: {} launch: - /GameLauncher.exe: + "/GameLauncher.exe": - when: - os: windows store: steam - /LevelDesigner.exe: + "/LevelDesigner.exe": - when: - os: windows store: steam @@ -631959,16 +633679,16 @@ XO: installDir: XO: {} launch: - /Contents/MacOS/XO: + "/Contents/MacOS/XO": - when: - os: mac store: steam - /XO.exe: + "/XO.exe": - when: - bit: 64 os: windows store: steam - /XO.x86_64: + "/XO.x86_64": - when: - bit: 64 os: linux @@ -631979,7 +633699,7 @@ XO-Planets: installDir: XO-Planets: {} launch: - /XOPlanets.exe: + "/XOPlanets.exe": - when: - os: windows store: steam @@ -631992,11 +633712,11 @@ XOXO Blood Droplets: installDir: XOXO Blood Droplets: {} launch: - /XOXOBloodDroplets.app: + "/XOXOBloodDroplets.app": - when: - os: mac store: steam - /XOXOBloodDroplets.exe: + "/XOXOBloodDroplets.exe": - when: - os: windows store: steam @@ -632004,12 +633724,12 @@ XOXO Blood Droplets: id: 780820 XOXO Droplets: files: - /renpy/XOXO-1436249064/*.save: + "/renpy/XOXO-1436249064/*.save": tags: - save when: - os: windows - /renpy/XOXO-1436249064/persistent: + "/renpy/XOXO-1436249064/persistent": tags: - config when: @@ -632017,11 +633737,11 @@ XOXO Droplets: installDir: XOXO Droplets: {} launch: - /XOXO_Droplets.app: + "/XOXO_Droplets.app": - when: - os: mac store: steam - /XOXO_Droplets.exe: + "/XOXO_Droplets.exe": - when: - os: windows store: steam @@ -632031,7 +633751,7 @@ XP Girls: installDir: XP Girls: {} launch: - /XPGirls.exe: + "/XPGirls.exe": - when: - os: windows store: steam @@ -632044,14 +633764,14 @@ XXX Puzzle: installDir: XXX Puzzle: {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: id: 874650 XXZ: files: - /userdata//692920: + "/userdata//692920": tags: - save when: @@ -632060,17 +633780,17 @@ XXZ: installDir: XXZ: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam steam: id: 692920 -'XXZ: XXL': +"XXZ: XXL": installDir: XXZ XXL: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -632079,7 +633799,7 @@ XXZ: XZ: steam: id: 771180 -'XZ: XL': +"XZ: XL": steam: id: 771190 Xagia Wars: @@ -632087,12 +633807,12 @@ Xagia Wars: id: 727960 Xanadu Next: files: - /Saved Games/FALCOM/X_NEXT: + "/Saved Games/FALCOM/X_NEXT": tags: - save when: - os: windows - /Saved Games/FALCOM/X_NEXT/config.ini: + "/Saved Games/FALCOM/X_NEXT/config.ini": tags: - config when: @@ -632102,16 +633822,16 @@ Xanadu Next: installDir: Xanadu Next: {} launch: - /XANADU.exe: + "/XANADU.exe": - when: - store: steam steam: id: 312560 -'Xander the Monster Morpher: Universe Breaker': +"Xander the Monster Morpher: Universe Breaker": installDir: Xander the Monster Morpher Universe Breaker: {} launch: - /Xander Universe Breaker GMS2.exe: + "/Xander Universe Breaker GMS2.exe": - when: - os: windows store: steam @@ -632119,12 +633839,12 @@ Xanadu Next: id: 1025160 Xargon: files: - /CONFIG.XR*: + "/CONFIG.XR*": tags: - config when: - os: dos - /SAVE_*.XR*: + "/SAVE_*.XR*": tags: - save when: @@ -632140,15 +633860,15 @@ Xecryst Remains: Xecryst Remains: {} steam: id: 510000 -'Xemo: Robot Simulation': +"Xemo: Robot Simulation": installDir: Xemo: {} launch: - /Xemo.app: + "/Xemo.app": - when: - os: mac store: steam - /Xemo.exe: + "/Xemo.exe": - when: - os: windows store: steam @@ -632158,17 +633878,17 @@ Xenia: installDir: Xenia: {} launch: - /xenia.exe: + "/xenia.exe": - when: - os: windows store: steam steam: id: 687310 -Xenia's Ark: +"Xenia's Ark": installDir: - Xenia's Ark: {} + "Xenia's Ark": {} launch: - /Xenia's Ark.exe: + "/Xenia's Ark.exe": - when: - os: windows store: steam @@ -632180,20 +633900,20 @@ Xeno Crisis: installDir: Xeno Crisis: {} launch: - /Xeno Crisis.app/Contents/MacOS/Xeno Crisis: + "/Xeno Crisis.app/Contents/MacOS/Xeno Crisis": - when: - os: mac store: steam - /Xeno Crisis.exe: + "/Xeno Crisis.exe": - when: - os: windows store: steam - /Xeno Crisis.x86: + "/Xeno Crisis.x86": - when: - bit: 32 os: linux store: steam - /Xeno Crisis.x86_64: + "/Xeno Crisis.x86_64": - when: - bit: 64 os: linux @@ -632212,7 +633932,7 @@ XenoBloom: installDir: XenoBloom: {} launch: - /XenoBloom.exe: + "/XenoBloom.exe": - when: - os: windows store: steam @@ -632225,15 +633945,15 @@ XenoRaptor: installDir: XenoRaptor: {} launch: - /XenoRaptor.app: + "/XenoRaptor.app": - when: - os: mac store: steam - /XenoRaptor.exe: + "/XenoRaptor.exe": - when: - os: windows store: steam - /XenoRaptor.x86: + "/XenoRaptor.x86": - when: - os: linux store: steam @@ -632243,11 +633963,11 @@ XenoShyft: installDir: XenoShyft: {} launch: - /XenoShyft.exe: + "/XenoShyft.exe": - when: - os: windows store: steam - /Xenoshyft.app/Contents/MacOS/Xenoshyft: + "/Xenoshyft.app/Contents/MacOS/Xenoshyft": - when: - os: mac store: steam @@ -632262,11 +633982,11 @@ Xenochamber: installDir: Xenochamber: {} launch: - /Xenochamber.app/Contents/MacOS/Xenochamber: + "/Xenochamber.app/Contents/MacOS/Xenochamber": - when: - os: mac store: steam - /Xenochamber.exe: + "/Xenochamber.exe": - when: - os: windows store: steam @@ -632276,7 +633996,7 @@ Xenocide (2015): installDir: Xenocide: {} launch: - /xenocide.exe: + "/xenocide.exe": - when: - store: steam steam: @@ -632290,7 +634010,7 @@ Xenocite Clad: installDir: Xenocite Clad: {} launch: - /XenociteClad.exe: + "/XenociteClad.exe": - when: - os: windows store: steam @@ -632300,7 +634020,7 @@ Xenoform: installDir: Xenoform: {} launch: - /Xenoform_win.exe: + "/Xenoform_win.exe": - when: - store: steam steam: @@ -632309,20 +634029,20 @@ Xenomarine: installDir: Xenomarine: {} launch: - /Xenomarine.app: + "/Xenomarine.app": - when: - os: mac store: steam - /Xenomarine.exe: + "/Xenomarine.exe": - when: - os: windows store: steam - /Xenomarine.x86: + "/Xenomarine.x86": - when: - bit: 32 os: linux store: steam - /Xenomarine.x86_64: + "/Xenomarine.x86_64": - when: - bit: 64 os: linux @@ -632336,7 +634056,7 @@ Xenomorph: id: 768990 Xenon Racer: files: - /3DClouds/XenonRacer/Saved: + "/3DClouds/XenonRacer/Saved": tags: - save when: @@ -632344,7 +634064,7 @@ Xenon Racer: installDir: Xenon Racer: {} launch: - /XenonRacer.exe: + "/XenonRacer.exe": - when: - os: windows store: steam @@ -632354,15 +634074,15 @@ Xenon Valkyrie: installDir: Xenon Valkyrie: {} launch: - /XenonValkyrie.app: + "/XenonValkyrie.app": - when: - os: mac store: steam - /XenonValkyrie.exe: + "/XenonValkyrie.exe": - when: - os: windows store: steam - /XenonValkyrie.sh: + "/XenonValkyrie.sh": - when: - os: linux store: steam @@ -632370,22 +634090,22 @@ Xenon Valkyrie: id: 573780 Xenonauts: files: - /Library/Application Support/Goldhawk Interactive/Xenonauts: + "/Library/Application Support/Goldhawk Interactive/Xenonauts": tags: - save when: - os: mac - /Goldhawk Interactive/Xenonauts: + "/Goldhawk Interactive/Xenonauts": tags: - config when: - os: windows - /Xenonauts: + "/Xenonauts": tags: - save when: - os: windows - /Goldhawk Interactive/Xenonauts: + "/Goldhawk Interactive/Xenonauts": tags: - config - save @@ -632396,23 +634116,23 @@ Xenonauts: installDir: Xenonauts: {} launch: - /Xenonauts.app: + "/Xenonauts.app": - when: - os: mac store: steam - - arguments: '-nolauncher' + - arguments: "-nolauncher" when: - os: mac store: steam - /Xenonauts.bin.x86: + "/Xenonauts.bin.x86": - when: - os: linux store: steam - - arguments: '-nolauncher' + - arguments: "-nolauncher" when: - os: linux store: steam - /xenonauts.exe: + "/xenonauts.exe": - when: - os: windows store: steam @@ -632424,7 +634144,7 @@ Xenonauts: id: 223830 Xenonauts 2: files: - /My Games/Xenonauts 2/Saves/*.json: + "/My Games/Xenonauts 2/Saves/*.json": tags: - save when: @@ -632437,15 +634157,15 @@ Xenonauts 2: installDir: Xenonauts2: {} launch: - /Xenonauts2.exe: + "/Xenonauts2.exe": - when: - os: windows store: steam steam: id: 538030 -'Xenophage: Alien Bloodsport': +"Xenophage: Alien Bloodsport": files: - /XPR.INI: + "/XPR.INI": tags: - config when: @@ -632453,42 +634173,42 @@ Xenonauts 2: installDir: Xenophage: {} launch: - /Dosbox/dosbox: - - arguments: '-conf \"..\\XENO.conf\" -noconsole -c' + "/Dosbox/dosbox": + - arguments: "-conf \\\"..\\\\XENO.conf\\\" -noconsole -c" when: - os: linux store: steam - workingDir: /Dosbox - /Xenophage.app: + workingDir: "/Dosbox" + "/Xenophage.app": - when: - os: mac store: steam - /Xenophage/dosbox/dosbox.exe: - - arguments: '-conf \"..\\XENO.conf\" -noconsole -c' + "/Xenophage/dosbox/dosbox.exe": + - arguments: "-conf \\\"..\\\\XENO.conf\\\" -noconsole -c" when: - os: windows store: steam - workingDir: /Xenophage/dosbox + workingDir: "/Xenophage/dosbox" steam: id: 358420 Xenoraid: installDir: Xenoraid: {} launch: - /Xenoraid.exe: + "/Xenoraid.exe": - when: - os: windows store: steam steam: id: 460220 -'Xenosis: Alien Infection': +"Xenosis: Alien Infection": steam: id: 611820 Xenoslaive Overdrive: installDir: Xenoslaive Overdrive: {} launch: - /xenoslaive.exe: + "/xenoslaive.exe": - when: - os: windows store: steam @@ -632498,7 +634218,7 @@ Xenrai: installDir: Xenrai: {} launch: - /Xenrai/Xenrai.exe: + "/Xenrai/Xenrai.exe": - when: - bit: 64 os: windows @@ -632509,7 +634229,7 @@ Xentripetal Force: installDir: Xentripetal Force: {} launch: - /Xentripetal Force.exe: + "/Xentripetal Force.exe": - when: - os: windows store: steam @@ -632519,20 +634239,20 @@ Xenture: installDir: Xenture: {} launch: - /Xenture.exe: + "/Xenture.exe": - when: - os: windows store: steam steam: id: 1786730 -'Xenus II: White Gold': +"Xenus II: White Gold": files: - /Documents/White Gold/INI: + "/Documents/White Gold/INI": tags: - config when: - os: windows - /Documents/White Gold/SAVE: + "/Documents/White Gold/SAVE": tags: - save when: @@ -632540,7 +634260,7 @@ Xenture: installDir: Xenus 2: {} launch: - /Xenus.exe: + "/Xenus.exe": - when: - os: windows store: steam @@ -632550,7 +634270,7 @@ Xeodrifter: installDir: Xeodrifter: {} launch: - /XeodrifterSteam.exe: + "/XeodrifterSteam.exe": - when: - os: windows store: steam @@ -632564,11 +634284,11 @@ Xion: Xion: {} steam: id: 644420 -Xiu's SuperMarket: +"Xiu's SuperMarket": installDir: - Xiu's SuperMarket: {} + "Xiu's SuperMarket": {} launch: - /TheGame.exe: + "/TheGame.exe": - when: - os: windows store: steam @@ -632578,7 +634298,7 @@ Xmas Shooting - Scramble!!: installDir: Xmas Shooting - Scramble: {} launch: - /Xmas Shooting.exe: + "/Xmas Shooting.exe": - when: - store: steam steam: @@ -632587,7 +634307,7 @@ Xmas Zombie Rampage: installDir: Xmas Zombie Rampage: {} launch: - /Xmas Zombie Rampage.exe: + "/Xmas Zombie Rampage.exe": - when: - os: windows store: steam @@ -632597,7 +634317,7 @@ Xmas Zombie Rampage 2: installDir: Xmas Zombie Rampage 2: {} launch: - /Xmas Zombie Rampage 2.exe: + "/Xmas Zombie Rampage 2.exe": - when: - os: windows store: steam @@ -632607,11 +634327,11 @@ Xmodule: installDir: XMODULE: {} launch: - /XMODULE.app: + "/XMODULE.app": - when: - os: mac store: steam - /XMODULE.exe: + "/XMODULE.exe": - when: - os: windows store: steam @@ -632621,26 +634341,26 @@ XoEl Empire: installDir: xoEl: {} launch: - /xoEl.app: + "/xoEl.app": - when: - os: mac store: steam - /xoEl.exe: + "/xoEl.exe": - when: - bit: 32 os: windows store: steam - /xoEl.x64.exe: + "/xoEl.x64.exe": - when: - bit: 64 os: windows store: steam - /xoEl.x86: + "/xoEl.x86": - when: - bit: 32 os: linux store: steam - /xoEl.x86_64: + "/xoEl.x86_64": - when: - bit: 64 os: linux @@ -632651,12 +634371,12 @@ Xobox - circle and cross: installDir: Xobox: {} launch: - /Xobox/MyXoboX/Binaries/Win32/MyXoboX-Win32-Shipping.exe: + "/Xobox/MyXoboX/Binaries/Win32/MyXoboX-Win32-Shipping.exe": - when: - bit: 32 os: windows store: steam - /Xobox/MyXoboX/Binaries/Win64/MyXoboX-Win64-Shipping.exe: + "/Xobox/MyXoboX/Binaries/Win64/MyXoboX-Win64-Shipping.exe": - when: - bit: 64 os: windows @@ -632665,34 +634385,34 @@ Xobox - circle and cross: id: 946240 Xonotic: files: - /.xonotic/data: + "/.xonotic/data": tags: - config when: - os: linux - /Library/Application Support/xonotic: + "/Library/Application Support/xonotic": tags: - config when: - os: mac - /Saved Games/xonotic: + "/Saved Games/xonotic": tags: - config when: - os: windows -XorceD - Sashiro's Laedrum: +"XorceD - Sashiro's Laedrum": installDir: - XorceD - Sashiro's Laedrum: {} + "XorceD - Sashiro's Laedrum": {} launch: - /SashiroLaedrum.app/Contents/MacOS/SashiroLaedrum: + "/SashiroLaedrum.app/Contents/MacOS/SashiroLaedrum": - when: - os: mac store: steam - /SashiroLaedrum.exe: + "/SashiroLaedrum.exe": - when: - os: windows store: steam - /SashiroLaedrum.sh: + "/SashiroLaedrum.sh": - when: - os: linux store: steam @@ -632703,7 +634423,7 @@ Xorple: id: 800110 Xotic: files: - /Xotic: + "/Xotic": tags: - save when: @@ -632711,8 +634431,8 @@ Xotic: installDir: Xotic: {} launch: - /Xotic.exe: - - arguments: '' + "/Xotic.exe": + - arguments: "" when: - store: steam registry: @@ -632723,12 +634443,12 @@ Xotic: id: 92600 Xpand Rally: files: - /Data: + "/Data": tags: - config when: - os: windows - /Data/profiles/: + "/Data/profiles/": tags: - save when: @@ -632736,52 +634456,52 @@ Xpand Rally: installDir: Xpand Rally: {} launch: - /ChromEd.exe: + "/ChromEd.exe": - when: - store: steam - /xpandrally.exe: + "/xpandrally.exe": - when: - store: steam steam: id: 3010 Xpand Rally Xtreme: files: - /Data/AudioSettings.scr: + "/Data/AudioSettings.scr": tags: - config when: - os: windows - /Data/Controller.scr: + "/Data/Controller.scr": tags: - config when: - os: windows - /Data/NetState.sav: + "/Data/NetState.sav": tags: - config when: - os: windows - /Data/RacesData: + "/Data/RacesData": tags: - save when: - os: windows - /Data/VideoSettings.scr: + "/Data/VideoSettings.scr": tags: - config when: - os: windows - /Data/VideoSettingsXR.scr: + "/Data/VideoSettingsXR.scr": tags: - config when: - os: windows - /Data/VideoSettingsXR_MP.scr: + "/Data/VideoSettingsXR_MP.scr": tags: - config when: - os: windows - /Data/profiles: + "/Data/profiles": tags: - save when: @@ -632789,13 +634509,13 @@ Xpand Rally Xtreme: installDir: Xpand Rally Xtreme: {} launch: - /ChromEd.exe: + "/ChromEd.exe": - when: - store: steam - /readme.txt: + "/readme.txt": - when: - store: steam - /xrx.exe: + "/xrx.exe": - when: - store: steam - arguments: avicodec @@ -632804,7 +634524,7 @@ Xpand Rally Xtreme: - arguments: safemode when: - store: steam - - arguments: '-server -dedicated -internet' + - arguments: "-server -dedicated -internet" when: - store: steam steam: @@ -632813,15 +634533,15 @@ Xploquest: installDir: Xploquest: {} launch: - /xploquest.app/Contents/MacOS/Mac_Runner: + "/xploquest.app/Contents/MacOS/Mac_Runner": - when: - os: mac store: steam - /xploquest.exe: + "/xploquest.exe": - when: - os: windows store: steam - /xploquest/runner: + "/xploquest/runner": - when: - os: linux store: steam @@ -632831,15 +634551,15 @@ Xploquest 2: installDir: Xploquest2: {} launch: - /xploquest2.app/Contents/MacOS/Mac_Runner: + "/xploquest2.app/Contents/MacOS/Mac_Runner": - when: - os: mac store: steam - /xploquest2.exe: + "/xploquest2.exe": - when: - os: windows store: steam - /xploquest2/runner: + "/xploquest2/runner": - when: - os: linux store: steam @@ -632849,7 +634569,7 @@ Xsyon - Prelude: installDir: Xsyon: {} launch: - /XsyonSteam.exe: + "/XsyonSteam.exe": - when: - os: windows store: steam @@ -632859,7 +634579,7 @@ Xtractor Defender: installDir: Xtractor Defender: {} launch: - /XtractorDefender.exe: + "/XtractorDefender.exe": - when: - os: windows store: steam @@ -632869,11 +634589,11 @@ Xtreme League: installDir: XTreme League: {} launch: - /Xtreme League.app/Contents/MacOS/Xtreme League: + "/Xtreme League.app/Contents/MacOS/Xtreme League": - when: - os: mac store: steam - /Xtreme League.exe: + "/Xtreme League.exe": - when: - os: windows store: steam @@ -632888,56 +634608,60 @@ Xtrike: installDir: Xtrike: {} launch: - /bin/java: - - arguments: '-XX:+UseZGC -cp Xtrike.jar com.whitewoodcity.xtrike.Main ' + "/bin/java": + - arguments: "-XX:+UseZGC -cp Xtrike.jar com.whitewoodcity.xtrike.Main " when: - os: mac store: steam - /bin/javaw.exe: - - arguments: '-XX:+UseZGC -cp Xtrike.jar com.whitewoodcity.xtrike.Main ' + - bit: 64 + os: linux + store: steam + "/bin/javaw.exe": + - arguments: "-XX:+UseZGC -cp Xtrike.jar com.whitewoodcity.xtrike.Main " when: - bit: 64 os: windows store: steam steam: id: 658250 -'Xuan-Yuan Sword 3 EX: The Scar of the Sky': +"Xuan-Yuan Sword 3 EX: The Scar of the Sky": files: - /Env.dat: + "/Env.dat": tags: - config when: - os: windows - /Fame.dat: + "/Fame.dat": tags: - save when: - os: windows - /Save/*.*: + "/Save/*.*": tags: - save when: - - os: windows - store: steam - /swdghost.dat: + - os: windows + "/swdghost.dat": tags: - save when: - os: windows - /SOFTSTAR/SWD3E/env.dat: + "/SOFTSTAR/SWD3E/env.dat": tags: - config when: - - store: steam + - os: windows + store: steam installDir: SWD3E: {} steam: id: 1638220 -'Xuan-Yuan Sword EX: The Gate of Firmament': +"Xuan-Yuan Sword EX: The Gate of Firmament": installDir: SWD6E: {} launch: - /SWD6E.exe: + "/SWD6E.exe": - when: - bit: 32 os: windows @@ -632946,12 +634670,12 @@ Xtrike: id: 427030 Xuan-Yuan Sword VII: files: - /SOFTSTAR/SWD7/Saved/Config/WindowsNoEditor: + "/SOFTSTAR/SWD7/Saved/Config/WindowsNoEditor": tags: - config when: - os: windows - /SOFTSTAR/SWD7/Saved/SaveGames: + "/SOFTSTAR/SWD7/Saved/SaveGames": tags: - save when: @@ -632961,7 +634685,7 @@ Xuan-Yuan Sword VII: installDir: SWD7: {} launch: - /SWD7/Binaries/Win64/SWD7-Win64-Shipping.exe: + "/SWD7/Binaries/Win64/SWD7-Win64-Shipping.exe": - when: - bit: 64 os: windows @@ -632972,52 +634696,52 @@ X少女逃脱 x girl escape: installDir: XGirlEscape: {} launch: - /XGirlEscape.exe: + "/XGirlEscape.exe": - when: - os: windows store: steam steam: id: 1140340 -YANKAI'S PEAK.: +"YANKAI'S PEAK.": installDir: - YANKAI'S PEAK: {} + "YANKAI'S PEAK": {} launch: - /Pyramid.exe: + "/Pyramid.exe": - when: - os: windows store: steam - /Pyramid.x86: + "/Pyramid.x86": - when: - bit: 32 os: linux store: steam - /Pyramid.x86_64: + "/Pyramid.x86_64": - when: - bit: 64 os: linux store: steam - /YANKAISPEAK.app: + "/YANKAISPEAK.app": - when: - os: mac store: steam steam: id: 654910 -'YAPP2: Yet Another Pushing Puzzler': +"YAPP2: Yet Another Pushing Puzzler": installDir: YAPP2 Yet Another Pushing Puzzler: {} launch: - /yapp2.exe: + "/yapp2.exe": - when: - bit: 64 os: windows store: steam steam: id: 853410 -'YAPP: Yet Another Puzzle Platformer': +"YAPP: Yet Another Puzzle Platformer": installDir: YAPP Yet Another Puzzle Platformer: {} launch: - /yapp.exe: + "/yapp.exe": - when: - os: windows store: steam @@ -633030,7 +634754,7 @@ YASG: installDir: YASG: {} launch: - /YASG.exe: + "/YASG.exe": - when: - store: steam steam: @@ -633044,23 +634768,23 @@ YBit: installDir: YBit: {} launch: - /YBit.app/Contents/MacOS/YBit: + "/YBit.app/Contents/MacOS/YBit": - when: - os: mac store: steam - /YBit.exe: + "/YBit.exe": - when: - os: windows store: steam - /YBit.x86: + "/YBit.x86": - when: - os: linux store: steam steam: id: 712660 -'YIIK: A Postmodern RPG': +"YIIK: A Postmodern RPG": files: - /AppData/LocalLow/AckkStudios/YIIK_ A Postmodern RPG: + "/AppData/LocalLow/AckkStudios/YIIK_ A Postmodern RPG": tags: - save when: @@ -633070,16 +634794,16 @@ YBit: installDir: YIIK A Postmodern RPG: {} launch: - /YIIK A Postmodern RPG.app: + "/YIIK A Postmodern RPG.app": - when: - os: mac store: steam - /YIIK A Postmodern RPG.exe: + "/YIIK A Postmodern RPG.exe": - when: - os: windows store: steam registry: - 'HKEY_CURRENT_USER/Software/AckkStudios/YIIK: A Postmodern RPG': + "HKEY_CURRENT_USER/Software/AckkStudios/YIIK: A Postmodern RPG": tags: - config steam: @@ -633088,11 +634812,11 @@ YOLKED - The Egg Game: installDir: Yolked: {} launch: - /Yolked.app: + "/Yolked.app": - when: - os: mac store: steam - /Yolked.exe: + "/Yolked.exe": - when: - os: windows store: steam @@ -633102,7 +634826,7 @@ YOMOTSU: installDir: YOMOTSU: {} launch: - /YOMOTSU.exe: + "/YOMOTSU.exe": - when: - os: windows store: steam @@ -633112,7 +634836,7 @@ YORG.io: installDir: yorgio: {} launch: - /yorgio.exe: + "/yorgio.exe": - when: - bit: 64 os: windows @@ -633123,18 +634847,16 @@ YORG.io 3: installDir: YORG.io3: {} launch: - /yorgio3.exe: - - arguments: >- - --disable-direct-composition --in-process-gpu --no-user-gesture-required - --autoplay-policy=no-user-gesture-required + "/yorgio3.exe": + - arguments: "--disable-direct-composition --in-process-gpu --no-user-gesture-required --autoplay-policy=no-user-gesture-required" when: - os: windows store: steam steam: id: 1134480 -'YOU and ME and HER: A Love Story': +"YOU and ME and HER: A Love Story": files: - /Nitroplus/totono: + "/Nitroplus/totono": tags: - save when: @@ -633142,21 +634864,21 @@ YORG.io 3: installDir: YOU and ME and HER - A Love Story: {} launch: - /totono_Steam.exe: + "/totono_Steam.exe": - when: - os: windows store: steam steam: id: 1293820 -'YU-NO: A Girl Who Chants Love at the Bound of this World': +"YU-NO: A Girl Who Chants Love at the Bound of this World": files: - /My Games/mages_steam/YUNO/eng: + "/My Games/mages_steam/YUNO/eng": tags: - config - save when: - os: windows - /My Games/mages_steam/YUNO/jpn: + "/My Games/mages_steam/YUNO/jpn": tags: - config - save @@ -633165,13 +634887,13 @@ YORG.io 3: installDir: YU-NO: {} launch: - /boot.bat: + "/boot.bat": - when: - os: windows store: steam steam: id: 912450 -'YUNA: Sugar hearts and Love': +"YUNA: Sugar hearts and Love": installDir: YUNA Sugar hearts and Love: {} steam: @@ -633180,15 +634902,15 @@ YUT YUT: installDir: YUT YUT: {} launch: - /YUT_YUT: + "/YUT_YUT": - when: - os: linux store: steam - /YUT_YUT.app/Contents/MacOS/YUT_YUT: + "/YUT_YUT.app/Contents/MacOS/YUT_YUT": - when: - os: mac store: steam - /YUT_YUT.exe: + "/YUT_YUT.exe": - when: - bit: 64 os: windows @@ -633204,7 +634926,7 @@ Yafti: installDir: Yafti: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -633214,7 +634936,7 @@ Yag: installDir: Yag: {} launch: - /yag.exe: + "/yag.exe": - when: - os: windows store: steam @@ -633222,12 +634944,12 @@ Yag: id: 736420 Yaga: files: - /AppData/LocalLow/Breadcrumbs/Yaga: + "/AppData/LocalLow/Breadcrumbs/Yaga": tags: - save when: - os: windows - /userdata//888530/remote: + "/userdata//888530/remote": tags: - save when: @@ -633237,7 +634959,7 @@ Yaga: installDir: Yaga: {} launch: - /yaga.exe: + "/yaga.exe": - when: - store: steam registry: @@ -633248,21 +634970,21 @@ Yaga: id: 888530 Yager: files: - /config.ysc: + "/config.ysc": tags: - config when: - os: windows - /savgames: + "/savgames": tags: - save when: - os: windows -'Yago, the Coquerrestrial': +"Yago, the Coquerrestrial": installDir: Yago: {} launch: - /Yago.EXE: + "/Yago.EXE": - when: - os: windows store: steam @@ -633272,20 +634994,20 @@ Yahrit!: installDir: Yahrit: {} launch: - /Yahrit.exe: + "/Yahrit.exe": - when: - os: windows store: steam steam: id: 862370 -'Yaiba: Ninja Gaiden Z': +"Yaiba: Ninja Gaiden Z": files: - /My Games/NRZGame/NRZGame/Config: + "/My Games/NRZGame/NRZGame/Config": tags: - config when: - os: windows - /My Games/NRZGame/NRZGame/SaveData: + "/My Games/NRZGame/NRZGame/SaveData": tags: - save when: @@ -633293,36 +635015,37 @@ Yahrit!: installDir: Yaiba Ninja Gaiden Z: {} launch: - /Binaries/Win32/NRZGameLauncher.exe: + "/Binaries/Win32/NRZGameLauncher.exe": - when: - store: steam - workingDir: /Binaries/Win32 + workingDir: "/Binaries/Win32" steam: id: 252230 Yakuza 0: files: - /userdata//638970/remote: + "/userdata//638970/remote": tags: - save when: - store: steam - /Sega/Yakuza0: + "/Sega/Yakuza0": tags: - config when: - os: windows - /GOG.com/Galaxy/Applications/55966314534907843/Storage/Shared/Files: + "/GOG.com/Galaxy/Applications/55966314534907843/Storage/Shared/Files": tags: - save when: - - store: gog - /Packages/SEGAofAmericaInc.Yakuza0PC_s751p9cej88mt/LocalCache/Local/Sega/Yakuza0: + - os: windows + store: gog + "/Packages/SEGAofAmericaInc.Yakuza0PC_s751p9cej88mt/LocalCache/Local/Sega/Yakuza0": tags: - config when: - os: windows store: microsoft - /Packages/SEGAofAmericaInc.Yakuza0PC_s751p9cej88mt/SystemAppData/wgs/: + "/Packages/SEGAofAmericaInc.Yakuza0PC_s751p9cej88mt/SystemAppData/wgs/": tags: - save when: @@ -633333,32 +635056,26 @@ Yakuza 0: installDir: Yakuza 0: {} launch: - /media/Yakuza0.exe: + "/media/Yakuza0.exe": - when: - bit: 64 os: windows store: steam - workingDir: /media + workingDir: "/media" steam: id: 638970 Yakuza 3 Remastered: files: - /userdata//1088710/remote: + "/userdata//1088710/remote": tags: - save when: - store: steam - /Sega/Yakuza3: + "/Sega/Yakuza3": tags: - config when: - os: windows - /Packages/SEGAofAmericaInc.Yakuza3PC_*/SystemAppData/wgs: - tags: - - save - when: - - os: windows - store: microsoft gog: id: 1453650568 installDir: @@ -633367,45 +635084,39 @@ Yakuza 3 Remastered: id: 1088710 Yakuza 4 Remastered: files: - /userdata//1105500/remote: + "/userdata//1105500/remote": tags: - save when: - store: steam - /Sega/Yakuza4: + "/Sega/Yakuza4": tags: - config when: - os: windows - /Packages/SEGAofAmericaInc.Yakuza4PC_*/SystemAppData/wgs: - tags: - - save - when: - - os: windows - store: microsoft gog: id: 1311648027 installDir: Yakuza 4: {} launch: - /Yakuza4.exe: + "/Yakuza4.exe": - when: - store: steam steam: id: 1105500 Yakuza 5 Remastered: files: - /userdata//1105510/remote: + "/userdata//1105510/remote": tags: - save when: - store: steam - /Sega/Yakuza5: + "/Sega/Yakuza5": tags: - config when: - os: windows - /Packages/SEGAofAmericaInc.Yakuza5PC_s751p9cej88mt/SystemAppData/wgs: + "/Packages/SEGAofAmericaInc.Yakuza5PC_s751p9cej88mt/SystemAppData/wgs": tags: - save when: @@ -633416,25 +635127,25 @@ Yakuza 5 Remastered: installDir: Yakuza 5: {} launch: - /main/Yakuza5.exe: + "/main/Yakuza5.exe": - when: - store: steam - workingDir: /main + workingDir: "/main" steam: id: 1105510 -'Yakuza 6: The Song of Life': +"Yakuza 6: The Song of Life": files: - /userdata//1388590/remote: + "/userdata//1388590/remote": tags: - save when: - store: steam - /Sega/Yakuza6: + "/Sega/Yakuza6": tags: - config when: - os: windows - /Packages/SEGAofAmericaInc.Yakuza6PC_s751p9cej88mt/LocalCache/Local/SEGA/Yakuza6: + "/Packages/SEGAofAmericaInc.Yakuza6PC_s751p9cej88mt/LocalCache/Local/SEGA/Yakuza6": tags: - config when: @@ -633450,7 +635161,7 @@ Yakuza 5 Remastered: installDir: Yakuza 6 - The Song of Life: {} launch: - /Yakuza6.exe: + "/Yakuza6.exe": - when: - store: steam steam: @@ -633462,7 +635173,7 @@ Yakuza Kiss: installDir: Yakuza Kiss: {} launch: - /YakuzaKiss.exe: + "/YakuzaKiss.exe": - when: - os: windows store: steam @@ -633470,23 +635181,23 @@ Yakuza Kiss: id: 847950 Yakuza Kiwami: files: - /userdata//834530/remote: + "/userdata//834530/remote": tags: - save when: - store: steam - /Sega/YakuzaKiwami: + "/Sega/YakuzaKiwami": tags: - config when: - os: windows - /Packages/SEGAofAmericaInc.YakuzaKiwamiPC_s751p9cej88mt/LocalCache/Local/Sega/YakuzaKiwami: + "/Packages/SEGAofAmericaInc.YakuzaKiwamiPC_s751p9cej88mt/LocalCache/Local/Sega/YakuzaKiwami": tags: - config when: - os: windows store: microsoft - /Packages/SEGAofAmericaInc.YakuzaKiwamiPC_s751p9cej88mt/SystemAppData/wgs/: + "/Packages/SEGAofAmericaInc.YakuzaKiwamiPC_s751p9cej88mt/SystemAppData/wgs/": tags: - save when: @@ -633497,27 +635208,27 @@ Yakuza Kiwami: installDir: Yakuza Kiwami: {} launch: - /media/YakuzaKiwami.exe: + "/media/YakuzaKiwami.exe": - when: - bit: 64 os: windows store: steam - workingDir: /media + workingDir: "/media" steam: id: 834530 Yakuza Kiwami 2: files: - /Sega/YakuzaKiwami2: + "/Sega/YakuzaKiwami2": tags: - config when: - os: windows - /Sega/YakuzaKiwami2/: + "/Sega/YakuzaKiwami2/": tags: - save when: - os: windows - /Packages/SEGAofAmericaInc.YakuzaKiwami2PC_s751p9cej88mt/LocalCache/Local/Sega/YakuzaKiwami2: + "/Packages/SEGAofAmericaInc.YakuzaKiwami2PC_s751p9cej88mt/LocalCache/Local/Sega/YakuzaKiwami2": tags: - config when: @@ -633533,32 +635244,32 @@ Yakuza Kiwami 2: installDir: Yakuza Kiwami 2: {} launch: - /YakuzaKiwami2.exe: + "/YakuzaKiwami2.exe": - when: - bit: 64 os: windows store: steam steam: id: 927380 -'Yakuza: Like a Dragon': +"Yakuza: Like a Dragon": files: - /Sega/YakuzaLikeADragon: + "/Sega/YakuzaLikeADragon": tags: - config when: - os: windows - /Sega/YakuzaLikeADragon/: + "/Sega/YakuzaLikeADragon/": tags: - save when: - os: windows - /Sega/YakuzaLikeADragonWin10: + "/Sega/YakuzaLikeADragonWin10": tags: - config when: - os: windows store: microsoft - /Packages/SEGAofAmericaInc.Yazawa_s751p9cej88mt/SystemAppData/wgs/: + "/Packages/SEGAofAmericaInc.Yazawa_s751p9cej88mt/SystemAppData/wgs/": tags: - save when: @@ -633568,8 +635279,8 @@ Yakuza Kiwami 2: id: 1229228729 id: gogExtra: - - 1583673857 - 1573344224 + - 1583673857 - 1824922415 - 1851599391 - 2018318415 @@ -633586,20 +635297,20 @@ Yakuza Kiwami 2: installDir: Yakuza Like a Dragon: {} launch: - /runtime/media/startup.exe: - - arguments: '-language=zhs -locale=english_us' + "/runtime/media/startup.exe": + - arguments: "-language=zhs -locale=english_us" when: - bit: 64 os: windows store: steam - workingDir: /runtime/media + workingDir: "/runtime/media" steam: id: 1235140 Yama: installDir: Yama: {} launch: - /Yama.exe: + "/Yama.exe": - when: - bit: 64 os: windows @@ -633610,7 +635321,7 @@ YamaYama: installDir: YamaYama: {} launch: - /YamaYama.exe: + "/YamaYama.exe": - when: - os: windows store: steam @@ -633620,7 +635331,7 @@ Yametei: installDir: Yametei: {} launch: - /Yametei.exe: + "/Yametei.exe": - when: - os: windows store: steam @@ -633630,7 +635341,7 @@ Yandere Escape: installDir: Yandere Escape: {} launch: - /Yandere Escape.exe: + "/Yandere Escape.exe": - when: - os: windows store: steam @@ -633640,7 +635351,7 @@ Yandere School: installDir: Yandere School: {} launch: - /yandere school/yandereschool.exe: + "/yandere school/yandereschool.exe": - when: - os: windows store: steam @@ -633655,11 +635366,11 @@ Yang2020 Path To Presidency: installDir: Yang2020 Path To Presidency: {} launch: - /Yang2020.exe: + "/Yang2020.exe": - when: - os: windows store: steam - /Yang2020_Mac_v1.0.app/Contents/MacOS/Yang2020: + "/Yang2020_Mac_v1.0.app/Contents/MacOS/Yang2020": - when: - os: mac store: steam @@ -633669,31 +635380,31 @@ YangBo Adventure: installDir: ET遊朝陽: {} launch: - /YangBo Adventure.exe: + "/YangBo Adventure.exe": - when: - os: windows store: steam steam: id: 772460 -Yankai's Triangle: +"Yankai's Triangle": installDir: YankaisTriangle: {} launch: - /YankaisTriangle.app: + "/YankaisTriangle.app": - when: - os: mac store: steam - /YankaisTriangle.exe: + "/YankaisTriangle.exe": - when: - os: windows store: steam - /run.sh: + "/run.sh": - when: - os: linux store: steam steam: id: 527740 -'Yanone: Letter Splatter': +"Yanone: Letter Splatter": installDir: Yanone: {} steam: @@ -633702,24 +635413,24 @@ Yanpai Simulator: installDir: Yanpai Simulator: {} launch: - /windows_content/Yanpai Simulator.exe: + "/windows_content/Yanpai Simulator.exe": - when: - store: steam steam: id: 990850 -Yar's Revenge: +"Yar's Revenge": files: - /win32/AppSettings.ini: + "/win32/AppSettings.ini": tags: - config when: - os: windows - /win32/Config.ini: + "/win32/Config.ini": tags: - config when: - os: windows - /win32/savegame.svg: + "/win32/savegame.svg": tags: - save when: @@ -633727,36 +635438,36 @@ Yar's Revenge: installDir: Yars Revenge: {} launch: - /win32/launch.bat: + "/win32/launch.bat": - when: - store: steam - workingDir: /win32 - - arguments: '-configure' + workingDir: "/win32" + - arguments: "-configure" when: - store: steam - workingDir: /win32 + workingDir: "/win32" steam: id: 99120 Yargis - Space Melee: installDir: Yargis - Space Melee: {} launch: - /Yargis.exe: + "/Yargis.exe": - when: - store: steam - /YargisServerConfig.exe: + "/YargisServerConfig.exe": - when: - store: steam steam: id: 369040 -'Yars: Recharged': +"Yars: Recharged": files: - /AppData/LocalLow/Atari Inc_/Yars Recharged/Yars_Recharged/config.txt: + "/AppData/LocalLow/Atari Inc_/Yars Recharged/Yars_Recharged/config.txt": tags: - config when: - os: windows - /AppData/LocalLow/Atari Inc_/Yars Recharged/Yars_Recharged/save.sav: + "/AppData/LocalLow/Atari Inc_/Yars Recharged/Yars_Recharged/save.sav": tags: - save when: @@ -633766,15 +635477,15 @@ Yargis - Space Melee: installDir: Yars Recharged: {} launch: - /Yars Recharged.exe: + "/Yars Recharged.exe": - when: - os: windows store: steam - /YarsRecharged.app: + "/YarsRecharged.app": - when: - os: mac store: steam - /YarsRecharged.x86_64: + "/YarsRecharged.x86_64": - when: - os: linux store: steam @@ -633788,7 +635499,7 @@ Yasai Ninja: installDir: Yasai Ninja: {} launch: - /Yasai.exe: + "/Yasai.exe": - when: - store: steam steam: @@ -633797,7 +635508,7 @@ Yashik: installDir: Yashik: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -633805,7 +635516,7 @@ Yashik: id: 754800 Yatagarasu Attack on Cataclysm: files: - /PDWHOTAPEN: + "/PDWHOTAPEN": tags: - config - save @@ -633814,7 +635525,7 @@ Yatagarasu Attack on Cataclysm: installDir: Yatagarasu: {} launch: - /YatagarasuLauncher.exe: + "/YatagarasuLauncher.exe": - when: - store: steam steam: @@ -633826,16 +635537,16 @@ Yatzy: installDir: Yatzy: {} launch: - /Yatzy.app/Contents/MacOS/Yatzy: + "/Yatzy.app/Contents/MacOS/Yatzy": - when: - os: mac store: steam - /Yatzy.exe: + "/Yatzy.exe": - when: - bit: 64 os: windows store: steam - /Yatzy.x86_64: + "/Yatzy.x86_64": - when: - bit: 64 os: linux @@ -633846,25 +635557,25 @@ Ye Fenny - Revenge of the Evil Good Shepherd: installDir: Ye Fenny - Revenge of the Evil Good Shepherd: {} launch: - /Ye Fenny.exe: + "/Ye Fenny.exe": - when: - os: windows store: steam steam: id: 769020 -'Yeah Jam Fury: U, Me, Everybody!': +"Yeah Jam Fury: U, Me, Everybody!": installDir: YJFUME: {} launch: - /YJFUME: + "/YJFUME": - when: - os: linux store: steam - /launcher: + "/launcher": - when: - os: mac store: steam - /launcher.exe: + "/launcher.exe": - when: - os: windows store: steam @@ -633872,12 +635583,12 @@ Ye Fenny - Revenge of the Evil Good Shepherd: id: 633930 Year Walk: files: - /AppData/LocalLow/Simogo/Year Walk/gamedata.bin: + "/AppData/LocalLow/Simogo/Year Walk/gamedata.bin": tags: - save when: - os: windows - /Library/Application Support/unity.Simogo.Year Walk: + "/Library/Application Support/unity.Simogo.Year Walk": tags: - save when: @@ -633885,35 +635596,35 @@ Year Walk: installDir: YearWalk: {} launch: - /yearwalk.app: + "/yearwalk.app": - when: - os: mac store: steam - workingDir: /yearwalk.app - /yearwalk.exe: + workingDir: "/yearwalk.app" + "/yearwalk.exe": - when: - os: windows store: steam steam: id: 269050 -Yearn Tyrant's Conquest: +"Yearn Tyrant's Conquest": installDir: - YEARN Tyrant's Conquest: {} + "YEARN Tyrant's Conquest": {} launch: - /YEARN Tyrant's Conquest.app: + "/YEARN Tyrant's Conquest.app": - when: - os: mac store: steam - /YEARN Tyrant's Conquest.exe: + "/YEARN Tyrant's Conquest.exe": - when: - os: windows store: steam - /YEARN Tyrant's Conquest.x86: + "/YEARN Tyrant's Conquest.x86": - when: - bit: 32 os: linux store: steam - /YEARN Tyrant's Conquest.x86_64: + "/YEARN Tyrant's Conquest.x86_64": - when: - bit: 64 os: linux @@ -633924,25 +635635,25 @@ Yearning: installDir: Yearning: {} launch: - /Yearning.exe: + "/Yearning.exe": - when: - os: windows store: steam steam: id: 969740 -'Yearning: A Gay Story': +"Yearning: A Gay Story": installDir: Yearning A Gay Story: {} launch: - /YAGS.app: + "/YAGS.app": - when: - os: mac store: steam - /YAGS.exe: + "/YAGS.exe": - when: - os: windows store: steam - /YAGS.sh: + "/YAGS.sh": - when: - os: linux store: steam @@ -633952,7 +635663,7 @@ Yelaxot: installDir: Yelaxot: {} launch: - /Yelaxot.exe: + "/Yelaxot.exe": - when: - os: windows store: steam @@ -633962,7 +635673,7 @@ Yeli Orog: installDir: Yeli Orog: {} launch: - /Yeli Orog.exe: + "/Yeli Orog.exe": - when: - os: windows store: steam @@ -633971,17 +635682,19 @@ Yeli Orog: Yello Bandana: steam: id: 681420 -'Yellow: The Yellow Artifact': +"Yellow: The Yellow Artifact": steam: id: 486820 Yellowtoy: installDir: yellowtoy: {} launch: - /yellowtoy.exe: + "/yellowtoy.exe": - when: - os: windows store: steam + - os: linux + store: steam steam: id: 1073380 Yemon: @@ -633992,34 +635705,34 @@ Yerah: Yerah: {} steam: id: 717380 -'Yes, Master!': +"Yes, Master!": files: - '/Yes, Master!': + "/Yes, Master!": tags: - config - save when: - os: windows installDir: - 'Yes, Master!': {} + "Yes, Master!": {} launch: - '/Yes, Master!.app/Contents/MacOS/YesMaster': + "/Yes, Master!.app/Contents/MacOS/YesMaster": - when: - os: mac store: steam - /YesMaster.exe: + "/YesMaster.exe": - when: - os: windows store: steam - /YesMaster.x86_64: + "/YesMaster.x86_64": - when: - os: linux store: steam steam: id: 1090900 -'Yes, Your Grace': +"Yes, Your Grace": files: - '/AppData/LocalLow/Brave At Night/Yes, Your Grace': + "/AppData/LocalLow/Brave At Night/Yes, Your Grace": tags: - save when: @@ -634027,23 +635740,23 @@ Yerah: gog: id: 1482195316 installDir: - 'Yes, Your Grace': {} + "Yes, Your Grace": {} launch: - '/Yes, Your Grace.app/Contents/MacOS/Yes, Your Grace': + "/Yes, Your Grace.app/Contents/MacOS/Yes, Your Grace": - when: - os: mac store: steam - '/Yes, Your Grace.exe': + "/Yes, Your Grace.exe": - when: - os: windows store: steam registry: - 'HKEY_CURRENT_USER/Software/Brave At Night/Yes, Your Grace': + "HKEY_CURRENT_USER/Software/Brave At Night/Yes, Your Grace": tags: - config steam: id: 1115690 -'Yes, Your Grace: Snowfall': +"Yes, Your Grace: Snowfall": steam: id: 1373090 YesterMorrow: @@ -634052,7 +635765,7 @@ YesterMorrow: installDir: YesterMorrow: {} launch: - /YesterMorrow.exe: + "/YesterMorrow.exe": - when: - os: windows store: steam @@ -634060,12 +635773,12 @@ YesterMorrow: id: 1210490 Yesterday: files: - /Pendulo Studios/Yesterday/SAVEGAME: + "/Pendulo Studios/Yesterday/SAVEGAME": tags: - save when: - os: windows - /Pendulo Studios/Yesterday/ps.config: + "/Pendulo Studios/Yesterday/ps.config": tags: - config when: @@ -634075,10 +635788,10 @@ Yesterday: installDir: Yesterday: {} launch: - /PSConfig.exe: + "/PSConfig.exe": - when: - store: steam - /Yesterday.exe: + "/Yesterday.exe": - when: - store: steam steam: @@ -634087,7 +635800,7 @@ Yesterday (Triple Tree Studio): installDir: Yesterday: {} launch: - /Yesterday.exe: + "/Yesterday.exe": - when: - os: windows store: steam @@ -634095,12 +635808,12 @@ Yesterday (Triple Tree Studio): id: 649360 Yesterday Origins: files: - /AppData/LocalLow/PenduloStudios/Yesterday Origins/YesterdayOriginsConfig.yo: + "/AppData/LocalLow/PenduloStudios/Yesterday Origins/YesterdayOriginsConfig.yo": tags: - config when: - os: windows - /AppData/LocalLow/PenduloStudios/Yesterday Origins/YesterdayOriginsSaveGame*.yo: + "/AppData/LocalLow/PenduloStudios/Yesterday Origins/YesterdayOriginsSaveGame*.yo": tags: - save when: @@ -634110,12 +635823,12 @@ Yesterday Origins: installDir: Yesterday Origins: {} launch: - /YesterdayOrigins.app/Contents/MacOS/YesterdayOrigins: + "/YesterdayOrigins.app/Contents/MacOS/YesterdayOrigins": - when: - bit: 64 os: mac store: steam - /YesterdayOrigins.exe: + "/YesterdayOrigins.exe": - when: - bit: 64 os: windows @@ -634126,7 +635839,7 @@ Yet Another Hero Legend 英雄传说又一则: installDir: Yet Another Hero Legend: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: @@ -634135,15 +635848,15 @@ Yet Another Hero Story: installDir: Yet Another Hero Story: {} launch: - /YAHS.exe: + "/YAHS.exe": - when: - os: windows store: steam - /Yet Another Hero Story.app: + "/Yet Another Hero Story.app": - when: - os: mac store: steam - /start: + "/start": - when: - os: linux store: steam @@ -634153,7 +635866,7 @@ Yet Another Level: installDir: Yet Another Level: {} launch: - /BL_Indy_Project.exe: + "/BL_Indy_Project.exe": - when: - os: windows store: steam @@ -634163,12 +635876,12 @@ Yet Another Research Dog: installDir: Yet Another Research Dog: {} launch: - /Yet Another Research Dog.app: + "/Yet Another Research Dog.app": - when: - os: mac store: steam - /Yet Another Research Dog.exe: - - arguments: '-windowed' + "/Yet Another Research Dog.exe": + - arguments: "-windowed" when: - os: windows store: steam @@ -634178,7 +635891,7 @@ Yet Another Snake Game: installDir: Yet Another Snake Game: {} launch: - /YASG.exe: + "/YASG.exe": - when: - store: steam steam: @@ -634187,7 +635900,7 @@ Yet Another Survival Game: installDir: Yet Another Survival Game: {} launch: - /Yet Another Survival Game.exe: + "/Yet Another Survival Game.exe": - when: - store: steam steam: @@ -634196,25 +635909,31 @@ Yet Another World: installDir: Yet Another World: {} launch: - /yetanotherworld: + "/yetanotherworld": - when: - bit: 32 os: linux store: steam - /yetanotherworld.app: + - bit: 64 + os: linux + store: steam + "/yetanotherworld.app": - when: - os: mac store: steam - /yetanotherworld.exe: + "/yetanotherworld.exe": - when: - bit: 32 os: windows store: steam + - bit: 64 + os: windows + store: steam steam: id: 411740 Yet Another Zombie Defense: files: - /SavedGames/YetAnotherZombieDefense: + "/SavedGames/YetAnotherZombieDefense": tags: - save when: @@ -634222,7 +635941,7 @@ Yet Another Zombie Defense: installDir: Yet Another Zombie Defense: {} launch: - /YetAnotherZombieDefense.exe: + "/YetAnotherZombieDefense.exe": - when: - os: windows store: steam @@ -634232,7 +635951,7 @@ Yet Another Zombie Defense HD: installDir: Yet Another Zombie Defense HD: {} launch: - /YAZD_HD.exe: + "/YAZD_HD.exe": - when: - os: windows store: steam @@ -634242,11 +635961,11 @@ Yet another tower defence: installDir: Yet another tower defence: {} launch: - /YetAnotherTowerDefense.app/Contents/MacOS/YetAnotherTowerDefense: + "/YetAnotherTowerDefense.app/Contents/MacOS/YetAnotherTowerDefense": - when: - os: mac store: steam - /YetAnotherTowerDefense.exe: + "/YetAnotherTowerDefense.exe": - when: - os: windows store: steam @@ -634255,19 +635974,19 @@ Yet another tower defence: Yeti Adventure: steam: id: 604810 -Yeti's Parole Officer: +"Yeti's Parole Officer": installDir: - Yeti's Parole Officer: {} + "Yeti's Parole Officer": {} launch: - /Yeti's Parole Officer.app/Contents/MacOS/Yeti's Parole Officer: + "/Yeti's Parole Officer.app/Contents/MacOS/Yeti's Parole Officer": - when: - os: mac store: steam - /YetisParoleOfficer: + "/YetisParoleOfficer": - when: - os: linux store: steam - /YetisParoleOfficer.exe: + "/YetisParoleOfficer.exe": - when: - os: windows store: steam @@ -634275,22 +635994,22 @@ Yeti's Parole Officer: id: 772320 Yggdra Union: files: - /sting/Yggdra Union/configdata/CONFIG.DAT: + "/sting/Yggdra Union/configdata/CONFIG.DAT": tags: - config when: - os: windows - /sting/Yggdra Union/savedata/CONTINUE##.DAT: + "/sting/Yggdra Union/savedata/CONTINUE##.DAT": tags: - save when: - os: windows - /sting/Yggdra Union/savedata/STORY##.DAT: + "/sting/Yggdra Union/savedata/STORY##.DAT": tags: - save when: - os: windows - /sting/Yggdra Union/savedata/SYSTEM.DAT: + "/sting/Yggdra Union/savedata/SYSTEM.DAT": tags: - save when: @@ -634298,7 +636017,7 @@ Yggdra Union: installDir: Yggdra Union: {} launch: - /YggdraUnion.exe: + "/YggdraUnion.exe": - when: - os: windows store: steam @@ -634308,15 +636027,15 @@ Yggdrasil Jigsaw Puzzle: installDir: YGGDRASIL JIGSAW PUZZLE: {} launch: - /YJP.app/Contents/MacOS/YJP: + "/YJP.app/Contents/MacOS/YJP": - when: - os: mac store: steam - /YJP.exe: + "/YJP.exe": - when: - os: windows store: steam - /YJP.sh: + "/YJP.sh": - when: - os: linux store: steam @@ -634326,15 +636045,18 @@ Yi and the Thousand Moons: installDir: Yi and the Thousand Moons: {} launch: - /Yi and the Thousand Moons.app: + "/Yi and the Thousand Moons.app": - when: - os: mac store: steam - /Yi and the Thousand Moons.exe: + "/Yi and the Thousand Moons.exe": - when: - bit: 32 os: windows store: steam + - bit: 64 + os: windows + store: steam steam: id: 701730 Yiki Action RPG: @@ -634344,7 +636066,7 @@ Yinyang: installDir: Yinyang: {} launch: - /Yinyang.exe: + "/Yinyang.exe": - when: - os: windows store: steam @@ -634354,7 +636076,7 @@ Yissa Deep Realms: installDir: Yissa Deep Realms: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -634362,7 +636084,7 @@ Yissa Deep Realms: id: 750960 Ylands: files: - /Ylands/SaveGames: + "/Ylands/SaveGames": tags: - save when: @@ -634375,7 +636097,7 @@ Ymir: installDir: Ymir: {} launch: - /Ymir.exe: + "/Ymir.exe": - when: - os: windows store: steam @@ -634385,7 +636107,7 @@ Yo My Yo!: installDir: Yo My Yo!: {} launch: - /YMO.exe: + "/YMO.exe": - when: - os: windows store: steam @@ -634395,7 +636117,7 @@ Yoba: installDir: Yoba: {} launch: - /Yoba.exe: + "/Yoba.exe": - when: - os: windows store: steam @@ -634410,7 +636132,7 @@ Yogurt!: installDir: Yogurt!: {} launch: - /Yogurt!!/Yogurt!.exe: + "/Yogurt!!/Yogurt!.exe": - when: - store: steam registry: @@ -634430,7 +636152,7 @@ Yohjo Simulator: installDir: Yohjo Simulator: {} launch: - /YohjoSimulator.exe: + "/YohjoSimulator.exe": - when: - bit: 64 os: windows @@ -634441,28 +636163,28 @@ Yokai Mask: installDir: Yokai Mask: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam steam: id: 708160 -Yokai's Secret: +"Yokai's Secret": files: - /AppData/LocalLow/Double W/Yokai's Secret/save_0.dat: + "/AppData/LocalLow/Double W/Yokai's Secret/save_0.dat": tags: - save when: - os: windows - /AppData/LocalLow/Double W/Yokai's Secret/saveinfo.dat: + "/AppData/LocalLow/Double W/Yokai's Secret/saveinfo.dat": tags: - save when: - os: windows installDir: - Yokai's Secret: {} + "Yokai's Secret": {} launch: - /Yokai's Secret.exe: + "/Yokai's Secret.exe": - when: - os: windows store: steam @@ -634472,36 +636194,36 @@ Yoke Light: installDir: YokeLight: {} launch: - /YokeLight.exe: + "/YokeLight.exe": - when: - os: windows store: steam steam: id: 858730 -Yoku's Island Express: +"Yoku's Island Express": files: - /userdata//334940/remote: + "/userdata//334940/remote": tags: - save when: - store: steam - /Villa Gorilla/Yoku's Island Express: + "/Villa Gorilla/Yoku's Island Express": tags: - save when: - os: windows - /Villa Gorilla/Yoku's Island Express/config.csv: + "/Villa Gorilla/Yoku's Island Express/config.csv": tags: - config when: - os: windows - /Packages/Team17DigitalLimited.YokusIslandExpressWin10_j5x4vj4y67jhc/LocalCache/Roaming/Villa Gorilla/Yoku's Island Express: + "/Packages/Team17DigitalLimited.YokusIslandExpressWin10_j5x4vj4y67jhc/LocalCache/Roaming/Villa Gorilla/Yoku's Island Express": tags: - save when: - os: windows store: microsoft - /Packages/Team17DigitalLimited.YokusIslandExpressWin10_j5x4vj4y67jhc/LocalCache/Roaming/Villa Gorilla/Yoku's Island Express/config.csv: + "/Packages/Team17DigitalLimited.YokusIslandExpressWin10_j5x4vj4y67jhc/LocalCache/Roaming/Villa Gorilla/Yoku's Island Express/config.csv": tags: - config when: @@ -634512,7 +636234,7 @@ Yoku's Island Express: installDir: Yokus Island Express: {} launch: - /Yoku.exe: + "/Yoku.exe": - when: - bit: 64 os: windows @@ -634521,17 +636243,17 @@ Yoku's Island Express: id: 334940 Yoltrund: files: - /.config/unity3d/Templarius Studios/Yoltrund: + "/.config/unity3d/Templarius Studios/Yoltrund": tags: - save when: - os: linux - /AppData/LocalLow/Templarius Studios/Yoltrund: + "/AppData/LocalLow/Templarius Studios/Yoltrund": tags: - save when: - os: windows - /Library/Application Support/unity.Templarius Studios.Yoltrund: + "/Library/Application Support/unity.Templarius Studios.Yoltrund": tags: - save when: @@ -634539,55 +636261,55 @@ Yoltrund: installDir: Yoltrund: {} launch: - /Yoltrund.app: + "/Yoltrund.app": - when: - os: mac store: steam - /Yoltrund.exe: + "/Yoltrund.exe": - when: - os: windows store: steam - /Yoltrund.x86: + "/Yoltrund.x86": - when: - bit: 32 os: linux store: steam - /Yoltrund.x86_64: + "/Yoltrund.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 770120 -'Yomawari: Lost in the Dark': +"Yomawari: Lost in the Dark": installDir: Yomawari Lost in the Dark: {} launch: - /yomawariMaster.exe: + "/yomawariMaster.exe": - when: - bit: 64 os: windows store: steam steam: id: 1998330 -'Yomawari: Midnight Shadows': +"Yomawari: Midnight Shadows": installDir: Yomawari Midnight Shadows: {} launch: - /yomawari2.exe: + "/yomawari2.exe": - when: - os: windows store: steam steam: id: 625980 -'Yomawari: Night Alone': +"Yomawari: Night Alone": files: - /data/savedata: + "/data/savedata": tags: - save when: - os: windows - /settings.ini: + "/settings.ini": tags: - config when: @@ -634595,7 +636317,7 @@ Yoltrund: installDir: Yomawari Night Alone: {} launch: - /yomawari-steam.exe: + "/yomawari-steam.exe": - when: - bit: 32 os: windows @@ -634606,20 +636328,20 @@ Yomi: installDir: Yomi: {} launch: - /Yomi.app: + "/Yomi.app": - when: - os: mac store: steam - /Yomi.exe: + "/Yomi.exe": - when: - os: windows store: steam - /Yomi.x86: + "/Yomi.x86": - when: - bit: 32 os: linux store: steam - /Yomi.x86_64: + "/Yomi.x86_64": - when: - bit: 64 os: linux @@ -634630,15 +636352,15 @@ Yomi Alliance: installDir: Yomi Alliance: {} launch: - /YomiAlliance.app: + "/YomiAlliance.app": - when: - os: mac store: steam - /YomiAlliance.exe: + "/YomiAlliance.exe": - when: - os: windows store: steam - /YomiAlliance.sh: + "/YomiAlliance.sh": - when: - os: linux store: steam @@ -634648,16 +636370,16 @@ Yon Paradox: installDir: Yon Paradox: {} launch: - /YonParadox.exe: + "/YonParadox.exe": - when: - bit: 64 os: windows store: steam steam: id: 450050 -'Yonder: The Cloud Catcher Chronicles': +"Yonder: The Cloud Catcher Chronicles": files: - /AppData/LocalLow/Prideful Sloth/Yonder_ The Cloud Catcher Chronicles: + "/AppData/LocalLow/Prideful Sloth/Yonder_ The Cloud Catcher Chronicles": tags: - config - save @@ -634666,7 +636388,7 @@ Yon Paradox: installDir: Yonder The Cloud Catcher Chronicles: {} launch: - /YonderCCC.exe: + "/YonderCCC.exe": - when: - bit: 64 os: windows @@ -634675,7 +636397,7 @@ Yon Paradox: id: 580200 Yono and the Celestial Elephants: files: - /AppData/LocalLow/Neckbolt/Yono and the Celestial Elephants/Resources/savefiles: + "/AppData/LocalLow/Neckbolt/Yono and the Celestial Elephants/Resources/savefiles": tags: - save when: @@ -634685,7 +636407,7 @@ Yono and the Celestial Elephants: installDir: Yono and the Celestial Elephants: {} launch: - /Yono and the Celestial Elephants.exe: + "/Yono and the Celestial Elephants.exe": - when: - os: windows store: steam @@ -634697,18 +636419,18 @@ Yono and the Celestial Elephants: id: 602430 Yooka-Laylee: files: - /AppData/LocalLow/Playtonic Ltd/Yooka-Laylee: + "/AppData/LocalLow/Playtonic Ltd/Yooka-Laylee": tags: - save when: - os: windows - /userdata//360830/remote: + "/userdata//360830/remote": tags: - save when: - os: linux store: steam - /unity3d/Playtonic Ltd/Yooka-Laylee: + "/unity3d/Playtonic Ltd/Yooka-Laylee": tags: - config when: @@ -634724,21 +636446,21 @@ Yooka-Laylee: installDir: YookaLaylee: {} launch: - /YookaLaylee.app/Contents/MacOS/YookaLaylee: + "/YookaLaylee.app/Contents/MacOS/YookaLaylee": - when: - os: mac store: steam - /YookaLaylee.x86_64: + "/YookaLaylee.x86_64": - when: - bit: 64 os: linux store: steam - /YookaLaylee64.exe: + "/YookaLaylee64.exe": - when: - bit: 64 os: windows store: steam - - arguments: '-window-mode exclusive -screen-fullscreen 1' + - arguments: "-window-mode exclusive -screen-fullscreen 1" when: - bit: 64 os: windows @@ -634751,17 +636473,17 @@ Yooka-Laylee: id: 360830 Yooka-Laylee and the Impossible Lair: files: - /AppData/LocalLow/Playtonic Ltd/Yooka-Laylee and the Impossible Lair: + "/AppData/LocalLow/Playtonic Ltd/Yooka-Laylee and the Impossible Lair": tags: - save when: - os: windows - /userdata//846870/remote: + "/userdata//846870/remote": tags: - save when: - store: steam - /Packages/Team17DigitalLimited.20270001033A3_j5x4vj4y67jhc/SystemAppData/wgs: + "/Packages/Team17DigitalLimited.20270001033A3_j5x4vj4y67jhc/SystemAppData/wgs": tags: - save when: @@ -634772,7 +636494,7 @@ Yooka-Laylee and the Impossible Lair: installDir: Yooka-Laylee and the Impossible Lair: {} launch: - /YLILWin64.exe: + "/YLILWin64.exe": - when: - bit: 64 os: windows @@ -634783,22 +636505,22 @@ Yooka-Laylee and the Impossible Lair: - config steam: id: 846870 -Yoomurjak's Ring: +"Yoomurjak's Ring": files: - /Private Moon Studios/Yoomurjak/Save/agon.sav: + "/Private Moon Studios/Yoomurjak/Save/agon.sav": tags: - save when: - os: windows - /Private Moon Studios/Yoomurjak/Yoomurjak.ini: + "/Private Moon Studios/Yoomurjak/Yoomurjak.ini": tags: - config when: - os: windows installDir: - YOOMURJAK'S RING: {} + "YOOMURJAK'S RING": {} launch: - /Yoomurjak.exe: + "/Yoomurjak.exe": - when: - os: windows store: steam @@ -634811,7 +636533,7 @@ Yore VR: id: 524380 Yorkshire Gubbins: files: - /yorkshiregubbins/User Data: + "/yorkshiregubbins/User Data": tags: - config - save @@ -634820,16 +636542,16 @@ Yorkshire Gubbins: installDir: Yorkshire Gubbins: {} launch: - /Yorkshire Gubbins: + "/Yorkshire Gubbins": - when: - bit: 64 os: linux store: steam - /Yorkshire Gubbins.app: + "/Yorkshire Gubbins.app": - when: - os: mac store: steam - /Yorkshire Gubbins.exe: + "/Yorkshire Gubbins.exe": - when: - bit: 64 os: windows @@ -634838,7 +636560,7 @@ Yorkshire Gubbins: id: 716650 Yosumin!: files: - /*.dat: + "/*.dat": tags: - save when: @@ -634846,7 +636568,7 @@ Yosumin!: installDir: Yosumin: {} launch: - /Yosumin.exe: + "/Yosumin.exe": - when: - store: steam steam: @@ -634856,12 +636578,12 @@ Yotsunoha: id: 880150 You Are Empty: files: - /My Games/YaE: + "/My Games/YaE": tags: - config when: - os: windows - /My Games/YaE/savegames: + "/My Games/YaE/savegames": tags: - save when: @@ -634870,7 +636592,7 @@ You Are God: installDir: You Are God: {} launch: - /YouAreGod.exe: + "/YouAreGod.exe": - when: - os: windows store: steam @@ -634885,7 +636607,7 @@ You Are King: installDir: YOU ARE KING: {} launch: - /YOU ARE KING.exe: + "/YOU ARE KING.exe": - when: - os: windows store: steam @@ -634895,7 +636617,7 @@ You Are My Sanctuary: installDir: Yuyasc: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: @@ -634904,15 +636626,15 @@ You Are Not A Banana: installDir: You Are Not A Banana: {} launch: - /YOU_ARE_NOT_A_BANANA.app: + "/YOU_ARE_NOT_A_BANANA.app": - when: - os: mac store: steam - /YOU_ARE_NOT_A_BANANA.exe: + "/YOU_ARE_NOT_A_BANANA.exe": - when: - os: windows store: steam - /YOU_ARE_NOT_A_BANANA.x86: + "/YOU_ARE_NOT_A_BANANA.x86": - when: - os: linux store: steam @@ -634922,7 +636644,7 @@ You Are Not The Hero: installDir: YANTH: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -634932,7 +636654,7 @@ You Are a Torpedo AI: installDir: You Are a Torpedo AI: {} launch: - /TorpedoAI.exe: + "/TorpedoAI.exe": - when: - os: windows store: steam @@ -634942,7 +636664,7 @@ You Are the Apple of My Eye: installDir: CoffeeTime: {} launch: - /CoffeeTime.exe: + "/CoffeeTime.exe": - when: - store: steam steam: @@ -634951,7 +636673,7 @@ You Can(Not) Survive: installDir: You Can(Not) Survive: {} launch: - /You Can(Not) Survive.exe: + "/You Can(Not) Survive.exe": - when: - os: windows store: steam @@ -634964,17 +636686,17 @@ You Deserve: installDir: You Deserve: {} launch: - /YouDeserve.app/Contents/MacOS/YouDeserve: + "/YouDeserve.app/Contents/MacOS/YouDeserve": - when: - bit: 64 os: mac store: steam - /YouDeserve.exe: + "/YouDeserve.exe": - when: - bit: 64 os: windows store: steam - /YouDeserve.x86_64: + "/YouDeserve.x86_64": - when: - bit: 64 os: linux @@ -634985,135 +636707,135 @@ You Died but a Necromancer revived you: installDir: YouDied_BaNRY: {} launch: - /YouDied_BaNRY: + "/YouDied_BaNRY": - when: - os: linux store: steam - /YouDied_BaNRY.exe: + "/YouDied_BaNRY.exe": - when: - os: windows store: steam steam: id: 1037100 -You Doesn't Exist: +"You Doesn't Exist": installDir: - You Doesn't Exist: {} + "You Doesn't Exist": {} launch: - /openjdk/bin/java: - - arguments: '-jar rpgboss-library.jar --player gamedata' + "/openjdk/bin/java": + - arguments: "-jar rpgboss-library.jar --player gamedata" when: - os: linux store: steam - /openjdk/bin/java.exe: - - arguments: '-jar rpgboss-library.jar --player gamedata' + "/openjdk/bin/java.exe": + - arguments: "-jar rpgboss-library.jar --player gamedata" when: - os: windows store: steam steam: id: 688650 -You Don't Have Time: +"You Don't Have Time": installDir: - You Don't Have Time: {} + "You Don't Have Time": {} launch: - /YouDontHaveTime.exe: + "/YouDontHaveTime.exe": - when: - os: windows store: steam steam: id: 1107040 -You Don't Know Jack: +"You Don't Know Jack": installDir: YDKJ_VOL1XL: {} launch: - /YDKJV1.EXE: + "/YDKJV1.EXE": - when: - bit: 32 os: windows store: steam steam: id: 252730 -You Don't Know Jack Movies: +"You Don't Know Jack Movies": installDir: YDKJ_MOVIES: {} launch: - /YDKJVM.EXE: + "/YDKJVM.EXE": - when: - bit: 32 os: windows store: steam steam: id: 260000 -You Don't Know Jack Sports: +"You Don't Know Jack Sports": installDir: YDKJ_SPORTS: {} launch: - /YDKJVS.EXE: + "/YDKJVS.EXE": - when: - bit: 32 os: windows store: steam steam: id: 260020 -'You Don''t Know Jack: Head Rush': +"You Don't Know Jack: Head Rush": installDir: YDKJ_HEADRUSH: {} launch: - /YDKJVH.EXE: + "/YDKJVH.EXE": - when: - bit: 32 os: windows store: steam steam: id: 260060 -'You Don''t Know Jack: Television': +"You Don't Know Jack: Television": installDir: YDKJ_TV: {} launch: - /YDKJVT.EXE: + "/YDKJVT.EXE": - when: - bit: 32 os: windows store: steam steam: id: 260040 -'You Don''t Know Jack: Volume 2': +"You Don't Know Jack: Volume 2": installDir: YDKJ_VOL2: {} launch: - /YDKJV2.EXE: + "/YDKJV2.EXE": - when: - bit: 32 os: windows store: steam steam: id: 259940 -'You Don''t Know Jack: Volume 3': +"You Don't Know Jack: Volume 3": installDir: YDKJ_VOL3: {} launch: - /YDKJV3.EXE: + "/YDKJV3.EXE": - when: - bit: 32 os: windows store: steam steam: id: 259960 -'You Don''t Know Jack: Volume 4 - The Ride': +"You Don't Know Jack: Volume 4 - The Ride": installDir: YDKJ_VOL4: {} launch: - /YDKJV4.EXE: + "/YDKJV4.EXE": - when: - bit: 32 os: windows store: steam steam: id: 259980 -'You Don''t Know Jack: Volume 6 - The Lost Gold': +"You Don't Know Jack: Volume 6 - The Lost Gold": installDir: YDKJ_VOL6: {} launch: - /YDKJ6.exe: + "/YDKJ6.exe": - when: - bit: 32 os: windows @@ -635127,7 +636849,7 @@ You Have 10 Seconds: installDir: You Have 10 Seconds: {} launch: - /You Have 10 Secondsfinal.exe: + "/You Have 10 Secondsfinal.exe": - when: - os: windows store: steam @@ -635137,7 +636859,7 @@ You Have 10 Seconds 2: installDir: You Have 10 Seconds 2: {} launch: - /You Have 10 Seconds 2 Steam Release.exe: + "/You Have 10 Seconds 2 Steam Release.exe": - when: - os: windows store: steam @@ -635147,7 +636869,7 @@ You Have 10 Seconds 3: installDir: You Have 10 Seconds 3: {} launch: - /You Have 10 Seconds 3.exe: + "/You Have 10 Seconds 3.exe": - when: - os: windows store: steam @@ -635155,22 +636877,22 @@ You Have 10 Seconds 3: id: 978640 You Have to Win the Game: files: - /Autosave.vsg: + "/Autosave.vsg": tags: - save when: - os: linux - /Config: + "/Config": tags: - config when: - os: linux - /My Games/You Have to Win the Game/Config: + "/My Games/You Have to Win the Game/Config": tags: - config when: - os: windows - /My Games/You Have to Win the Game/Saves: + "/My Games/You Have to Win the Game/Saves": tags: - save when: @@ -635178,15 +636900,15 @@ You Have to Win the Game: installDir: You Have to Win the Game: {} launch: - /TheGame.app: + "/TheGame.app": - when: - os: mac store: steam - /TheGame.exe: + "/TheGame.exe": - when: - os: windows store: steam - /TheGame_NFML: + "/TheGame_NFML": - when: - os: linux store: steam @@ -635194,27 +636916,27 @@ You Have to Win the Game: id: 286100 You Must Build a Boat: files: - /AppData/LocalLow/EightyEightGames/#ymbab/save: + "/AppData/LocalLow/EightyEightGames/#ymbab/save": tags: - save when: - os: windows - /AppData/LocalLow/EightyEightGames/#ymbab/settings/settings.dat: + "/AppData/LocalLow/EightyEightGames/#ymbab/settings/settings.dat": tags: - config when: - os: windows - /Library/Application Support/unity.EightyEightGames.#ymbab/save: + "/Library/Application Support/unity.EightyEightGames.#ymbab/save": tags: - save when: - os: mac - /Library/Application Support/unity.EightyEightGames.#ymbab/settings/settings.dat: + "/Library/Application Support/unity.EightyEightGames.#ymbab/settings/settings.dat": tags: - config when: - os: mac - /unity3d/EightyEightGames/_ymbab: + "/unity3d/EightyEightGames/_ymbab": tags: - save when: @@ -635222,15 +636944,15 @@ You Must Build a Boat: installDir: YMBAB: {} launch: - /YMBAB.app: + "/YMBAB.app": - when: - os: mac store: steam - /YMBAB.exe: + "/YMBAB.exe": - when: - os: windows store: steam - /YMBAB.x86: + "/YMBAB.x86": - when: - os: linux store: steam @@ -635240,7 +636962,7 @@ You Must be 18 or Older to Enter: installDir: You Must be 18 or Older to Enter: {} launch: - /18orOlder.exe: + "/18orOlder.exe": - when: - os: windows store: steam @@ -635253,15 +636975,15 @@ You Only Livez Twice: installDir: You Only Livez Twice: {} launch: - /You Only Livez Twice.exe: + "/You Only Livez Twice.exe": - when: - os: windows store: steam - /yolt.app: + "/yolt.app": - when: - os: mac store: steam - /yolt_linux.x86_64: + "/yolt_linux.x86_64": - when: - os: linux store: steam @@ -635271,31 +636993,31 @@ You Shall Not Break!: installDir: You Shall Not Break!: {} launch: - /YouShallNotBreak.exe: + "/YouShallNotBreak.exe": - when: - bit: 64 os: windows store: steam steam: id: 959020 -'You Shall Not Jump: PC Master Race Edition': +"You Shall Not Jump: PC Master Race Edition": installDir: You Shall Not Jump PC Master Race Edition: {} launch: - /You Shall Not Jump.exe: + "/You Shall Not Jump.exe": - when: - os: windows store: steam - /YouShallNotJump.app/Contents/MacOS/YouShallNotJump: + "/YouShallNotJump.app/Contents/MacOS/YouShallNotJump": - when: - os: mac store: steam - /YouShallNotJump.x86: + "/YouShallNotJump.x86": - when: - bit: 32 os: linux store: steam - /YouShallNotJump.x86_64: + "/YouShallNotJump.x86_64": - when: - bit: 64 os: linux @@ -635306,7 +637028,7 @@ You Suck at Parking: installDir: You Suck at Parking: {} launch: - /YSAP.exe: + "/YSAP.exe": - when: - os: windows store: steam @@ -635316,22 +637038,25 @@ You Versus 27 Elves: installDir: uv27: {} launch: - /You Versus 27 Elves.app/Contents/MacOS/You Versus 27 Elves: + "/You Versus 27 Elves.app/Contents/MacOS/You Versus 27 Elves": - when: - os: mac store: steam - /You Versus 27 Elves.exe: + "/You Versus 27 Elves.exe": - when: - bit: 32 os: windows store: steam + - bit: 64 + os: windows + store: steam steam: id: 1043160 You Will Die Here Tonight: installDir: You Will Die Here Tonight: {} launch: - /You Will Die Here Tonight.exe: + "/You Will Die Here Tonight.exe": - when: - bit: 64 os: windows @@ -635342,7 +637067,7 @@ You Will Never Get This Achievement: installDir: You Will Never Get This Achievement: {} launch: - /You Will Never Get This Achievement.exe: + "/You Will Never Get This Achievement.exe": - when: - os: windows store: steam @@ -635352,7 +637077,7 @@ You are Never Alone: installDir: You are Never Alone: {} launch: - /YouareNeverAlone.exe: + "/YouareNeverAlone.exe": - when: - os: windows store: steam @@ -635362,7 +637087,7 @@ You are apt: installDir: You are apt: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -635372,7 +637097,7 @@ You are pig sitter: installDir: you are pig sitter: {} launch: - /you_are_pig_sitter.exe: + "/you_are_pig_sitter.exe": - when: - os: windows store: steam @@ -635382,58 +637107,58 @@ You have a drunk friend: installDir: DrunkFriend: {} launch: - /DrunkFriend.exe: + "/DrunkFriend.exe": - when: - os: windows store: steam steam: id: 966530 -You're Fired: +"You're Fired": steam: id: 843210 -You're Fired!: +"You're Fired!": installDir: - You're Fired!: {} + "You're Fired!": {} launch: - /Game.app/Contents/Resources/Youre Fired.icns: + "/Game.app/Contents/Resources/Youre Fired.icns": - when: - os: mac store: steam - /Youre Fired.exe: + "/Youre Fired.exe": - when: - os: windows store: steam steam: id: 1086050 -You're Not Special: +"You're Not Special": installDir: - You're Not Special: {} + "You're Not Special": {} launch: - /Game.app: - - arguments: '--in-process-gpu' + "/Game.app": + - arguments: "--in-process-gpu" when: - os: mac store: steam - /Game.exe: - - arguments: '--in-process-gpu' + "/Game.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam steam: id: 991430 -'You, With Me - A Kinetic Novel': +"You, With Me - A Kinetic Novel": installDir: You With Me: {} launch: - /You_With_Me.app: + "/You_With_Me.app": - when: - os: mac store: steam - /You_With_Me.exe: + "/You_With_Me.exe": - when: - os: windows store: steam - /You_With_Me.sh: + "/You_With_Me.sh": - when: - os: linux store: steam @@ -635443,16 +637168,16 @@ You... and Who Else?: installDir: You... and who else: {} launch: - /YOU.exe: + "/YOU.exe": - when: - store: steam steam: id: 459640 -'You: The Untold Stories': +"You: The Untold Stories": installDir: YOU - The Untold Stories: {} launch: - /You - The Untold Stories.exe: + "/You - The Untold Stories.exe": - when: - os: windows store: steam @@ -635467,17 +637192,17 @@ YouTubers Galaxy: installDir: iTowngameplay Universe: {} launch: - /Universe.exe: - - arguments: '--in-process-gpu' + "/Universe.exe": + - arguments: "--in-process-gpu" when: - bit: 64 os: windows store: steam steam: id: 667120 -'Young Justice: Legacy': +"Young Justice: Legacy": files: - /YoungJustice/Data.sav: + "/YoungJustice/Data.sav": tags: - save when: @@ -635485,8 +637210,8 @@ YouTubers Galaxy: installDir: Young Justice Legacy: {} launch: - /Launcher.exe: - - arguments: '-s' + "/Launcher.exe": + - arguments: "-s" when: - os: windows store: steam @@ -635497,20 +637222,22 @@ YouTubers Galaxy: id: 235760 Young Souls: files: - /AppData/LocalLow/1P2P/YoungSouls/: + "/AppData/LocalLow/1P2P/YoungSouls/": tags: - save when: - - store: steam - /AppData/LocalLow/1P2P/YoungSouls/preferences.bin: + - os: windows + store: steam + "/AppData/LocalLow/1P2P/YoungSouls/preferences.bin": tags: - config when: - - store: steam + - os: windows + store: steam installDir: Young Souls: {} launch: - /YoungSouls.exe: + "/YoungSouls.exe": - when: - os: windows store: steam @@ -635520,7 +637247,7 @@ Your Anime Waifu: installDir: Your Anime Waifu: {} launch: - /YourAnimeWaifu.exe: + "/YourAnimeWaifu.exe": - when: - os: windows store: steam @@ -635533,7 +637260,7 @@ Your Bunny Wrote: installDir: Your Bunny Wrote: {} launch: - /YBW.exe: + "/YBW.exe": - when: - os: windows store: steam @@ -635546,7 +637273,7 @@ Your Diary+: installDir: your diary+: {} launch: - /yourdiary.exe: + "/yourdiary.exe": - when: - os: windows store: steam @@ -635556,15 +637283,15 @@ Your Dry Delight: installDir: Your Dry Delight: {} launch: - /YourDryDelight-1.9.8-pc/YourDryDelight.exe: + "/YourDryDelight-1.9.8-pc/YourDryDelight.exe": - when: - os: windows store: steam - /YourDryDelight-1.9.8-pc/YourDryDelight.sh: + "/YourDryDelight-1.9.8-pc/YourDryDelight.sh": - when: - os: linux store: steam - /renpy.app: + "/renpy.app": - when: - os: mac store: steam @@ -635574,15 +637301,15 @@ Your Friend Hana: installDir: Your Friend Hana: {} launch: - /Your_Friend_Hana.app/Contents/MacOS/Your_Friend_Hana: + "/Your_Friend_Hana.app/Contents/MacOS/Your_Friend_Hana": - when: - os: mac store: steam - /Your_Friend_Hana.exe: + "/Your_Friend_Hana.exe": - when: - os: windows store: steam - /Your_Friend_Hana.sh: + "/Your_Friend_Hana.sh": - when: - os: linux store: steam @@ -635590,7 +637317,7 @@ Your Friend Hana: id: 610810 Your Future Self: files: - /AppData/LocalLow/Contortionist Games/Your Future Self: + "/AppData/LocalLow/Contortionist Games/Your Future Self": tags: - save when: @@ -635598,20 +637325,20 @@ Your Future Self: installDir: Your Future Self: {} launch: - /YourFutureSelf.app: + "/YourFutureSelf.app": - when: - os: mac store: steam - /YourFutureSelf.exe: + "/YourFutureSelf.exe": - when: - os: windows store: steam - /YourFutureSelf.x86: + "/YourFutureSelf.x86": - when: - bit: 32 os: linux store: steam - /YourFutureSelf.x86_64: + "/YourFutureSelf.x86_64": - when: - bit: 64 os: linux @@ -635626,7 +637353,7 @@ Your Home: installDir: Your Home: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: @@ -635635,7 +637362,7 @@ Your Island -KIMI NO SIMA-: installDir: Your Island: {} launch: - /zero_village.exe: + "/zero_village.exe": - when: - os: windows store: steam @@ -635645,7 +637372,7 @@ Your Quest: installDir: Your Quest: {} launch: - /Your Quest.exe: + "/Your Quest.exe": - when: - bit: 32 os: windows @@ -635656,7 +637383,7 @@ Your Quest 2: installDir: Your Quest 2: {} launch: - /Your Quest 2.exe: + "/Your Quest 2.exe": - when: - os: windows store: steam @@ -635666,15 +637393,15 @@ Your Royal Gayness: installDir: Your Royal Gayness: {} launch: - /YourRoyalGayness.app: + "/YourRoyalGayness.app": - when: - os: mac store: steam - /YourRoyalGayness.exe: + "/YourRoyalGayness.exe": - when: - os: windows store: steam - /YourRoyalGayness.sh: + "/YourRoyalGayness.sh": - when: - os: linux store: steam @@ -635684,7 +637411,7 @@ Your Smile Beyond Twilight: installDir: Your Smile Beyond Twilight: {} launch: - /Station.exe: + "/Station.exe": - when: - os: windows store: steam @@ -635694,21 +637421,21 @@ Your Star: installDir: Your Star: {} launch: - /YourStar.exe: + "/YourStar.exe": - when: - os: windows store: steam steam: id: 520080 -'Your little story: Valentine''s Day': +"Your little story: Valentine's Day": steam: id: 1218150 -'Your little story: Winter': +"Your little story: Winter": installDir: Your little story Winter: {} launch: - /nw.exe: - - arguments: '--in-process-gpu' + "/nw.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam @@ -635716,7 +637443,7 @@ Your Star: id: 1195350 Youropa: files: - /userdata: + "/userdata": tags: - config - save @@ -635725,7 +637452,7 @@ Youropa: installDir: Youropa: {} launch: - /youropa_x64.exe: + "/youropa_x64.exe": - when: - bit: 64 os: windows @@ -635734,12 +637461,12 @@ Youropa: id: 640120 Yousei: files: - /renpy/younew-1516399954/*.save: + "/renpy/younew-1516399954/*.save": tags: - save when: - os: windows - /renpy/younew-1516399954/persistent: + "/renpy/younew-1516399954/persistent": tags: - config when: @@ -635747,15 +637474,15 @@ Yousei: installDir: Yousei: {} launch: - /yousei.app: + "/yousei.app": - when: - os: mac store: steam - /yousei.exe: + "/yousei.exe": - when: - os: windows store: steam - /yousei.sh: + "/yousei.sh": - when: - os: linux store: steam @@ -635765,7 +637492,7 @@ Youth Feather: installDir: YouthFeather: {} launch: - /YouthFeather.exe: + "/YouthFeather.exe": - when: - os: windows store: steam @@ -635776,7 +637503,7 @@ Youtubers Clicker: id: 689750 Youtubers Life: files: - /U-Play online/Youtubers Life/Saves/*.yls: + "/U-Play online/Youtubers Life/Saves/*.yls": tags: - save when: @@ -635784,22 +637511,22 @@ Youtubers Life: installDir: YoutubersLife: {} launch: - /YoutubersLife.app/Contents/MacOS/YoutubersLife: + "/YoutubersLife.app/Contents/MacOS/YoutubersLife": - when: - os: mac store: steam - /YoutubersLife.exe: - - arguments: '-force-gfx-direct' + "/YoutubersLife.exe": + - arguments: "-force-gfx-direct" when: - os: windows store: steam - /YoutubersLife.x86: - - arguments: '-nolog' + "/YoutubersLife.x86": + - arguments: "-nolog" when: - bit: 32 os: linux store: steam - /YoutubersLife.x86_64: + "/YoutubersLife.x86_64": - when: - bit: 64 os: linux @@ -635814,11 +637541,11 @@ Youtubers Life 2: installDir: Youtubers Life 2: {} launch: - /Youtubers Life 2.app/Contents/MacOS/Youtubers Life 2: + "/Youtubers Life 2.app/Contents/MacOS/Youtubers Life 2": - when: - os: mac store: steam - /Youtubers Life 2.exe: + "/Youtubers Life 2.exe": - when: - os: windows store: steam @@ -635831,17 +637558,17 @@ Yozakura Wizard VR: id: 790780 Yozora Rhapsody: files: - /game/saves: + "/game/saves": tags: - save when: - os: windows - /renpy/config.py: + "/renpy/config.py": tags: - config when: - os: windows - /renpy/Yozora Rhapsody-1456526552: + "/renpy/Yozora Rhapsody-1456526552": tags: - save when: @@ -635849,15 +637576,15 @@ Yozora Rhapsody: installDir: Yozora Rhapsody: {} launch: - /Yozora_Rhapsody.app: + "/Yozora_Rhapsody.app": - when: - os: mac store: steam - /Yozora_Rhapsody.exe: + "/Yozora_Rhapsody.exe": - when: - os: windows store: steam - /Yozora_Rhapsody.sh: + "/Yozora_Rhapsody.sh": - when: - os: linux store: steam @@ -635867,21 +637594,24 @@ Yrminsul: installDir: Yrminsul: {} launch: - /Yrminsul.app: + "/Yrminsul.app": - when: - os: mac store: steam - /Yrminsul.exe: + "/Yrminsul.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam - /Yrminsul.x86: + "/Yrminsul.x86": - when: - bit: 32 os: linux store: steam - /Yrminsul.x86_64: + "/Yrminsul.x86_64": - when: - bit: 64 os: linux @@ -635890,17 +637620,17 @@ Yrminsul: id: 412490 Ys I & II Chronicles+: files: - /Saved Games/FALCOM/ys12c/ys1: + "/Saved Games/FALCOM/ys12c/ys1": tags: - save when: - os: windows - /Saved Games/FALCOM/ys12c/ys2: + "/Saved Games/FALCOM/ys12c/ys2": tags: - save when: - os: windows - /Saved Games/FALCOM/ys12c/ysp_win.ini: + "/Saved Games/FALCOM/ys12c/ysp_win.ini": tags: - config when: @@ -635910,19 +637640,19 @@ Ys I & II Chronicles+: installDir: Ys I: {} launch: - /ys1plus.exe: + "/ys1plus.exe": - when: - store: steam steam: id: 223810 -'Ys IX: Monstrum Nox': +"Ys IX: Monstrum Nox": files: - /Saved Games/Falcom/Ys9: + "/Saved Games/Falcom/Ys9": tags: - save when: - os: windows - /Ys9/settings.xml: + "/Ys9/settings.xml": tags: - config when: @@ -635932,19 +637662,19 @@ Ys I & II Chronicles+: installDir: Ys IX Monstrum Nox: {} launch: - /ys9.exe: + "/ys9.exe": - when: - store: steam steam: id: 1351630 Ys Origin: files: - /Saved Games/FALCOM/yso_win: + "/Saved Games/FALCOM/yso_win": tags: - config when: - os: windows - /userdata//207350/remote: + "/userdata//207350/remote": tags: - save when: @@ -635954,19 +637684,19 @@ Ys Origin: installDir: Ys Origin: {} launch: - /yso_win.exe: + "/yso_win.exe": - when: - store: steam steam: id: 207350 Ys Seven: files: - /savedata: + "/savedata": tags: - save when: - os: windows - /savedata/systemdata.dat: + "/savedata/systemdata.dat": tags: - config when: @@ -635976,21 +637706,21 @@ Ys Seven: installDir: Ys SEVEN: {} launch: - /Ys7.exe: - - arguments: '-nolauncher' + "/Ys7.exe": + - arguments: "-nolauncher" when: - store: steam steam: id: 587100 -'Ys VI: The Ark of Napishtim': +"Ys VI: The Ark of Napishtim": files: - /Saved Games/FALCOM/ys6_win: + "/Saved Games/FALCOM/ys6_win": tags: - config - save when: - os: windows - /userdata//312540/remote: + "/userdata//312540/remote": tags: - save when: @@ -636000,29 +637730,29 @@ Ys Seven: installDir: Ys VI: {} launch: - /ys6_win_dx9.exe: + "/ys6_win_dx9.exe": - when: - store: steam steam: id: 312540 -'Ys VIII: Lacrimosa of DANA': +"Ys VIII: Lacrimosa of DANA": files: - /adjust.bin: + "/adjust.bin": tags: - config when: - os: windows - /config.bin: + "/config.bin": tags: - config when: - os: windows - /savedata: + "/savedata": tags: - save when: - os: windows - /settings.ini: + "/settings.ini": tags: - config when: @@ -636031,28 +637761,28 @@ Ys Seven: id: 1622206415 id: gogExtra: - - 1276704310 - - 1830098579 - - 1778489316 - 1262450080 - 1268012943 + - 1276704310 + - 1778489316 + - 1830098579 installDir: Ys VIII Lacrimosa of Dana: {} launch: - /ys8.exe: + "/ys8.exe": - when: - os: windows store: steam steam: id: 579180 -'Ys: Memories of Celceta': +"Ys: Memories of Celceta": files: - /Saved Games/FALCOM/Ys Memories of Celceta/game: + "/Saved Games/FALCOM/Ys Memories of Celceta/game": tags: - save when: - os: windows - /Saved Games/FALCOM/Ys Memories of Celceta/systemdata.dat: + "/Saved Games/FALCOM/Ys Memories of Celceta/systemdata.dat": tags: - config when: @@ -636062,24 +637792,24 @@ Ys Seven: installDir: Ys Memories of Celceta: {} launch: - /Ysc_dx11.exe: + "/Ysc_dx11.exe": - when: - store: steam steam: id: 587110 -'Ys: The Oath in Felghana': +"Ys: The Oath in Felghana": files: - /Saved Games/FALCOM/ysf_win: + "/Saved Games/FALCOM/ysf_win": tags: - save when: - os: windows - /Saved Games/FALCOM/ysf_win/ysf_win.ini: + "/Saved Games/FALCOM/ysf_win/ysf_win.ini": tags: - config when: - os: windows - /userdata//207320/remote: + "/userdata//207320/remote": tags: - save when: @@ -636089,7 +637819,7 @@ Ys Seven: installDir: Ys The Oath in Felghana: {} launch: - /ysf_win_dx9.exe: + "/ysf_win_dx9.exe": - when: - store: steam steam: @@ -636100,7 +637830,7 @@ Yu Crossing Animals: installDir: Yu Crossing Animals: {} launch: - /Yu Crossing Animals.exe: + "/Yu Crossing Animals.exe": - when: - bit: 64 store: steam @@ -636108,7 +637838,7 @@ Yu Crossing Animals: id: 1630290 Yu Escape / Monday: files: - /userdata//1177720: + "/userdata//1177720": tags: - save when: @@ -636117,7 +637847,7 @@ Yu Escape / Monday: installDir: Yu Escape Monday: {} launch: - /Yu.exe: + "/Yu.exe": - when: - bit: 64 os: windows @@ -636128,7 +637858,7 @@ Yu-Gi-Oh! Duel Links: installDir: Yu-Gi-Oh! Duel Links: {} launch: - /dlpc.exe: + "/dlpc.exe": - when: - os: windows store: steam @@ -636138,16 +637868,16 @@ Yu-Gi-Oh! Legacy of the Duelist: installDir: Yu-Gi-Oh! Legacy of the Duelist: {} launch: - /YuGiOh.exe: + "/YuGiOh.exe": - when: - bit: 64 os: windows store: steam steam: id: 480650 -'Yu-Gi-Oh! Legacy of the Duelist: Link Evolution': +"Yu-Gi-Oh! Legacy of the Duelist: Link Evolution": files: - /userdata//1150640/remote: + "/userdata//1150640/remote": tags: - config - save @@ -636157,7 +637887,7 @@ Yu-Gi-Oh! Legacy of the Duelist: installDir: Yu-Gi-Oh! Legacy of the Duelist Link Evolution: {} launch: - /YuGiOh.exe: + "/YuGiOh.exe": - when: - bit: 64 os: windows @@ -636168,26 +637898,26 @@ Yu-Gi-Oh! Master Duel: installDir: Yu-Gi-Oh! Master Duel: {} launch: - /masterduel.exe: + "/masterduel.exe": - when: - bit: 64 os: windows store: steam steam: id: 1449850 -'Yu-Gi-Oh! Power of Chaos: Joey the Passion': +"Yu-Gi-Oh! Power of Chaos: Joey the Passion": files: - /../Yu-Gi-Oh! Power of Chaos Common/*.yd?: + "/../Yu-Gi-Oh! Power of Chaos Common/*.yd?": tags: - save when: - os: windows - /../Yu-Gi-Oh! Power of Chaos Common/system.dat: + "/../Yu-Gi-Oh! Power of Chaos Common/system.dat": tags: - save when: - os: windows - /deck.ydc: + "/deck.ydc": tags: - save when: @@ -636196,19 +637926,19 @@ Yu-Gi-Oh! Master Duel: HKEY_LOCAL_MACHINE/SOFTWARE/KONAMI/Yu-Gi-Oh! Power Of Chaos/system: tags: - save -'Yu-Gi-Oh! Power of Chaos: Kaiba the Revenge': +"Yu-Gi-Oh! Power of Chaos: Kaiba the Revenge": files: - /../Yu-Gi-Oh! Power of Chaos Common/*.yd?: + "/../Yu-Gi-Oh! Power of Chaos Common/*.yd?": tags: - save when: - os: windows - /../Yu-Gi-Oh! Power of Chaos Common/system.dat: + "/../Yu-Gi-Oh! Power of Chaos Common/system.dat": tags: - save when: - os: windows - /deck.ydc: + "/deck.ydc": tags: - save when: @@ -636217,19 +637947,19 @@ Yu-Gi-Oh! Master Duel: HKEY_LOCAL_MACHINE/SOFTWARE/KONAMI/Yu-Gi-Oh! Power Of Chaos/system: tags: - save -'Yu-Gi-Oh! Power of Chaos: Yugi the Destiny': +"Yu-Gi-Oh! Power of Chaos: Yugi the Destiny": files: - /../Yu-Gi-Oh! Power of Chaos Common/*.yd?: + "/../Yu-Gi-Oh! Power of Chaos Common/*.yd?": tags: - save when: - os: windows - /../Yu-Gi-Oh! Power of Chaos Common/system.dat: + "/../Yu-Gi-Oh! Power of Chaos Common/system.dat": tags: - save when: - os: windows - /deck.ydc: + "/deck.ydc": tags: - save when: @@ -636245,16 +637975,16 @@ Yuki Onna: installDir: Yuki Onna 雪女: {} launch: - /YukiOnna.exe: + "/YukiOnna.exe": - when: - store: steam steam: id: 1191070 -'Yukie: A Japanese Winter Fairy Tale': +"Yukie: A Japanese Winter Fairy Tale": installDir: Yukie A Japanese Winter Fairy Tale: {} launch: - /RPG_RT.exe: + "/RPG_RT.exe": - when: - os: windows store: steam @@ -636264,33 +637994,33 @@ Yukinas Diary: installDir: Yukinas Diary: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam steam: id: 1005080 -'Yuko: Tragic Love Story': +"Yuko: Tragic Love Story": steam: id: 828510 -'Yuletide Legends: Who Framed Santa Claus': +"Yuletide Legends: Who Framed Santa Claus": installDir: Yuletide Legends: {} launch: - /YuletideLegends.app/Contents/MacOS/YuletideLegends: + "/YuletideLegends.app/Contents/MacOS/YuletideLegends": - when: - os: mac store: steam - /YuletideLegends.exe: + "/YuletideLegends.exe": - when: - os: windows store: steam - /YuletideLegends_amd64: + "/YuletideLegends_amd64": - when: - bit: 64 os: linux store: steam - /YuletideLegends_i386: + "/YuletideLegends_i386": - when: - bit: 32 os: linux @@ -636299,7 +638029,7 @@ Yukinas Diary: id: 1174500 Yum Yum Cookstar: files: - /AppData/LocalLow/KOCH MEDIA GMBH/Yum Yum Cookstar: + "/AppData/LocalLow/KOCH MEDIA GMBH/Yum Yum Cookstar": tags: - save when: @@ -636307,7 +638037,7 @@ Yum Yum Cookstar: installDir: Yum Yum Cookstar: {} launch: - /YYC.exe: + "/YYC.exe": - when: - os: windows store: steam @@ -636315,7 +638045,7 @@ Yum Yum Cookstar: id: 1827430 Yume Nikki: files: - /yumenikki/Save*.lsd: + "/yumenikki/Save*.lsd": tags: - save when: @@ -636323,8 +638053,8 @@ Yume Nikki: installDir: Yume Nikki: {} launch: - /yumenikki/RPG_RT.exe: - - arguments: \"xx\" \"xx\" \"Window\" + "/yumenikki/RPG_RT.exe": + - arguments: "\\\"xx\\\" \\\"xx\\\" \\\"Window\\\"" when: - os: windows store: steam @@ -636334,15 +638064,15 @@ Yume Puzzle: installDir: YumePuzzle: {} launch: - /YumePuzzle/YumePuzzle.app: + "/YumePuzzle/YumePuzzle.app": - when: - os: mac store: steam - /YumePuzzle/YumePuzzle.exe: + "/YumePuzzle/YumePuzzle.exe": - when: - os: windows store: steam - /YumePuzzle/YumePuzzle.sh: + "/YumePuzzle/YumePuzzle.sh": - when: - os: linux store: steam @@ -636352,17 +638082,17 @@ YumeCore: installDir: YumeCore: {} launch: - /yumecore/yumecore_ver1_3_2.exe: + "/yumecore/yumecore_ver1_3_2.exe": - when: - os: windows store: steam steam: id: 771240 -'Yumenikki: Dream Diary': +"Yumenikki: Dream Diary": installDir: YUMENIKKI -DREAM DIARY-: {} launch: - /YumeNikki.exe: + "/YumeNikki.exe": - when: - os: windows store: steam @@ -636372,14 +638102,14 @@ YumeCore: - config steam: id: 774811 -'Yumeutsutsu Re:Master': +"Yumeutsutsu Re:Master": files: - /KOGADO/Yuremaster: + "/KOGADO/Yuremaster": tags: - save when: - os: windows - /KOGADO/Yuremaster/Yuremaster.ini: + "/KOGADO/Yuremaster/Yuremaster.ini": tags: - config when: @@ -636387,7 +638117,7 @@ YumeCore: installDir: YureMaster: {} launch: - /Yure.exe: + "/Yure.exe": - when: - store: steam steam: @@ -636396,17 +638126,17 @@ Yumori Forest: installDir: Yumori Forest: {} launch: - /yumoriforest.exe: + "/yumoriforest.exe": - when: - os: windows store: steam steam: id: 911120 -'Yumsters 2: Around the World': +"Yumsters 2: Around the World": installDir: Yumsters 2 Around the World: {} launch: - /Yumsters2.exe: + "/Yumsters2.exe": - when: - store: steam steam: @@ -636415,26 +638145,26 @@ Yuna and other troubles: installDir: Yuna and other troubles: {} launch: - /Yuna.exe: + "/Yuna.exe": - when: - bit: 64 os: windows store: steam steam: id: 1189210 -'Yuoni: Rises': +"Yuoni: Rises": installDir: YuoniZero: {} steam: id: 989710 Yuppie Psycho: files: - /res/db: + "/res/db": tags: - save when: - os: windows - /res/settings/settings.properties: + "/res/settings/settings.properties": tags: - config when: @@ -636444,38 +638174,38 @@ Yuppie Psycho: installDir: YuppiePsycho: {} launch: - /yuppiepsycho.command: + "/yuppiepsycho.command": - when: - os: mac store: steam - /yuppiepsycho.exe: + "/yuppiepsycho.exe": - when: - bit: 64 os: windows store: steam - /yuppiepsycho.sh: + "/yuppiepsycho.sh": - when: - bit: 64 os: linux store: steam steam: id: 597760 -Yuri Ovalnay's Bizarre Adventure: +"Yuri Ovalnay's Bizarre Adventure": installDir: BATYA: {} launch: - /Batya.exe: + "/Batya.exe": - when: - bit: 64 os: windows store: steam steam: id: 1178180 -'Yurukill: The Calumniation Games': +"Yurukill: The Calumniation Games": installDir: YurukillTheCalumniationGames: {} launch: - /Yurukill.exe: + "/Yurukill.exe": - when: - bit: 64 os: windows @@ -636486,15 +638216,15 @@ Yury: installDir: Yury: {} launch: - /Yury.app: + "/Yury.app": - when: - os: mac store: steam - /Yury.exe: + "/Yury.exe": - when: - os: windows store: steam - /Yury.x86: + "/Yury.x86": - when: - os: linux store: steam @@ -636504,7 +638234,7 @@ Yuso: installDir: Yuso: {} launch: - /Yuso.exe: + "/Yuso.exe": - when: - os: windows store: steam @@ -636514,53 +638244,53 @@ Yuuki: installDir: Yuuki: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: id: 1158740 -Yuyuko's Butterfly Dream: +"Yuyuko's Butterfly Dream": installDir: UUZ: {} steam: id: 765030 -'Yuzi Lims: Anime Runner': +"Yuzi Lims: Anime Runner": installDir: YLARunner: {} launch: - /Yuzi Lims anime runner.exe: + "/Yuzi Lims anime runner.exe": - when: - os: windows store: steam steam: id: 776550 -'Yuzi Lims: Hentai': +"Yuzi Lims: Hentai": installDir: Yuzi Lims Hentai: {} launch: - /YLH.exe: + "/YLH.exe": - when: - store: steam steam: id: 960360 Yuzu: files: - /yuzu-windows-msvc/user/config: + "/yuzu-windows-msvc/user/config": tags: - config when: - os: windows - /yuzu-windows-msvc/user/nand/user/save/0000000000000000/: + "/yuzu-windows-msvc/user/nand/user/save/0000000000000000/": tags: - save when: - os: windows - /yuzu/config: + "/yuzu/config": tags: - config when: - os: windows - /yuzu/nand/user/save/0000000000000000/: + "/yuzu/nand/user/save/0000000000000000/": tags: - save when: @@ -636569,7 +638299,7 @@ Yōdanji: installDir: Yodanji: {} launch: - /yodanji.exe: + "/yodanji.exe": - when: - os: windows store: steam @@ -636577,7 +638307,7 @@ Yōdanji: id: 736710 Z (2012): files: - /prefdata: + "/prefdata": tags: - config when: @@ -636587,7 +638317,7 @@ Z (2012): installDir: Z: {} launch: - /Z.exe: + "/Z.exe": - when: - os: windows store: steam @@ -636597,15 +638327,15 @@ Z Dawn: installDir: ZDawn: {} launch: - /ZDawn.app/Contents/MacOS/ZDawn: + "/ZDawn.app/Contents/MacOS/ZDawn": - when: - os: mac store: steam - /ZDawn.exe: + "/ZDawn.exe": - when: - os: windows store: steam - /ZDawn.x86_64: + "/ZDawn.x86_64": - when: - os: linux store: steam @@ -636615,34 +638345,34 @@ Z Runaway: installDir: Z Runaway: {} launch: - /Linux/Z Runaway.x86: + "/Linux/Z Runaway.x86": - when: - bit: 32 os: linux store: steam - /Linux/Z Runaway.x86_64: + "/Linux/Z Runaway.x86_64": - when: - bit: 64 os: linux store: steam - /MacOS/Z Runaway.app/Contents/MacOS/Z Runaway: + "/MacOS/Z Runaway.app/Contents/MacOS/Z Runaway": - when: - os: mac store: steam - /Windows/Z Runaway.exe: + "/Windows/Z Runaway.exe": - when: - os: windows store: steam steam: id: 698330 -'Z ViRus: V.I.R.M Uprising': +"Z ViRus: V.I.R.M Uprising": installDir: ZVVU: {} steam: id: 672450 -Z'Code: +"Z'Code": installDir: - Z`code (VR for HTC Vive): {} + "Z`code (VR for HTC Vive)": {} steam: id: 543950 Z-Aftershock: @@ -636652,7 +638382,7 @@ Z-End: installDir: Z-End: {} launch: - /ZEnd.exe: + "/ZEnd.exe": - when: - os: windows store: steam @@ -636662,15 +638392,15 @@ Z-Exemplar: installDir: Z-Exemplar: {} launch: - /Z-Exemplar_Linux.x86: + "/Z-Exemplar_Linux.x86": - when: - os: linux store: steam - /Z-Exemplar_MacOSX.app: + "/Z-Exemplar_MacOSX.app": - when: - os: mac store: steam - /Z-Exemplar_Windows.exe: + "/Z-Exemplar_Windows.exe": - when: - os: windows store: steam @@ -636680,7 +638410,7 @@ Z. Year One: installDir: Z Year One: {} launch: - /Z.exe: + "/Z.exe": - when: - os: windows store: steam @@ -636688,22 +638418,22 @@ Z. Year One: id: 430930 Z.A.R.: files: - /LASTUSER.DAT: + "/LASTUSER.DAT": tags: - save when: - os: dos - /USER*.CFG: + "/USER*.CFG": tags: - config when: - os: dos - /USERS.DAT: + "/USERS.DAT": tags: - save when: - os: dos - /ZAR.CFG: + "/ZAR.CFG": tags: - config when: @@ -636711,45 +638441,45 @@ Z.A.R.: installDir: Z.A.R: {} launch: - /dosbox_linux/daum/launch_zar_game_daum.sh: + "/dosbox_linux/daum/launch_zar_game_daum.sh": - when: - os: linux store: steam - workingDir: /dosbox_linux/daum - /dosbox_linux/launch_zar_config.sh: + workingDir: "/dosbox_linux/daum" + "/dosbox_linux/launch_zar_config.sh": - when: - os: linux store: steam - workingDir: /dosbox_linux - /dosbox_linux/launch_zar_game.sh: + workingDir: "/dosbox_linux" + "/dosbox_linux/launch_zar_game.sh": - when: - os: linux store: steam - workingDir: /dosbox_linux - /dosbox_windows/daum/dosbox.exe: - - arguments: '-conf dosbox_zar.conf -conf dosbox_zar_launch_windows.conf -noconsole' + workingDir: "/dosbox_linux" + "/dosbox_windows/daum/dosbox.exe": + - arguments: "-conf dosbox_zar.conf -conf dosbox_zar_launch_windows.conf -noconsole" when: - os: windows store: steam - workingDir: /dosbox_windows/daum - /dosbox_windows/dosbox.exe: - - arguments: '-conf dosbox_zar.conf -conf dosbox_zar_launch_windows.conf -noconsole' + workingDir: "/dosbox_windows/daum" + "/dosbox_windows/dosbox.exe": + - arguments: "-conf dosbox_zar.conf -conf dosbox_zar_launch_windows.conf -noconsole" when: - os: windows store: steam - workingDir: /dosbox_windows - - arguments: '-conf dosbox_zar.conf -conf dosbox_zar_config_windows.conf -noconsole' + workingDir: "/dosbox_windows" + - arguments: "-conf dosbox_zar.conf -conf dosbox_zar_config_windows.conf -noconsole" when: - os: windows store: steam - workingDir: /dosbox_windows + workingDir: "/dosbox_windows" steam: id: 351820 Z.I.O.N.: installDir: ZION: {} launch: - /ZION.exe: + "/ZION.exe": - when: - os: windows store: steam @@ -636759,7 +638489,7 @@ Z.W!: installDir: Z.W!: {} launch: - /Z.W!.exe: + "/Z.W!.exe": - when: - os: windows store: steam @@ -636767,7 +638497,7 @@ Z.W!: id: 848720 Z1 Battle Royale: files: - /UserOptions.ini: + "/UserOptions.ini": tags: - config when: @@ -636775,12 +638505,8 @@ Z1 Battle Royale: installDir: H1Z1: {} launch: - /H1Z1_BE.exe: - - arguments: >- - UseSteamLogin=1 campaignID=1066619 promoID=157 STEAM_ENABLED=1 Logging:LocalLogLevel=0 - Server=Lvshaa-liv-l02.h1z1.net:20042;Lvshaa-liv-l02.h1z1.net:20043;Lvshaa-liv-l02.h1z1.net:20044;Lvshaa-liv-l02.h1z1.net:20045 - CommandQueue:motd_uri=http://assets.daybreakgames.com/ CommandQueue:cb_uri=http://assets.daybreakgames.com/ - CommandQueue:eula_uri=http://assets.daybreakgames.com/ + "/H1Z1_BE.exe": + - arguments: "UseSteamLogin=1 campaignID=1066619 promoID=157 STEAM_ENABLED=1 Logging:LocalLogLevel=0 Server=Lvshaa-liv-l02.h1z1.net:20042;Lvshaa-liv-l02.h1z1.net:20043;Lvshaa-liv-l02.h1z1.net:20044;Lvshaa-liv-l02.h1z1.net:20045 CommandQueue:motd_uri=http://assets.daybreakgames.com/ CommandQueue:cb_uri=http://assets.daybreakgames.com/ CommandQueue:eula_uri=http://assets.daybreakgames.com/" when: - bit: 64 os: windows @@ -636793,51 +638519,51 @@ Z55z: Z69: steam: id: 677980 -'Z: Escape': +"Z: Escape": installDir: Z Escape: {} launch: - /Z_Escape_HD.exe: + "/Z_Escape_HD.exe": - when: - os: windows store: steam steam: id: 843190 -'Z: Steel Soldiers': +"Z: Steel Soldiers": files: - /Bin/options.zed: + "/Bin/options.zed": tags: - config when: - os: windows - /savegames: + "/savegames": tags: - save when: - os: windows -'Z: Steel Soldiers (2014)': +"Z: Steel Soldiers (2014)": installDir: Z2: {} launch: - /Z2.exe: + "/Z2.exe": - when: - os: windows store: steam steam: id: 275510 -'Z: The End': +"Z: The End": files: - /Saves/build#.sav: + "/Saves/build#.sav": tags: - save when: - os: windows - /Saves/profile#.sav: + "/Saves/profile#.sav": tags: - save when: - os: windows - /config.ini: + "/config.ini": tags: - config when: @@ -636845,7 +638571,7 @@ Z69: installDir: Z: {} launch: - /Z.exe: + "/Z.exe": - when: - os: windows store: steam @@ -636855,7 +638581,7 @@ ZAAM: installDir: ZAAM: {} launch: - /ZAAM.exe: + "/ZAAM.exe": - when: - os: windows store: steam @@ -636865,7 +638591,7 @@ ZAMB! Biomutant Extermination: installDir: ZAMB! Biomutant Extermination: {} launch: - /ZAMB.exe: + "/ZAMB.exe": - when: - os: windows store: steam @@ -636875,7 +638601,7 @@ ZAMB! Redux: installDir: ZAMB! Endless Extermination: {} launch: - /ZambEndlessExtermination.exe: + "/ZambEndlessExtermination.exe": - when: - os: windows store: steam @@ -636885,15 +638611,15 @@ ZAP Master: installDir: ZAP Master: {} launch: - /ZAP Master.app: + "/ZAP Master.app": - when: - os: mac store: steam - /ZAP Master.exe: + "/ZAP Master.exe": - when: - os: windows store: steam - /ZAP Master.x86: + "/ZAP Master.x86": - when: - os: linux store: steam @@ -636903,7 +638629,7 @@ ZDF History 360° - Tempelhof: installDir: ZDF History 360° – Tempelhof: {} launch: - /ZDF History 360° – Tempelhof.exe: + "/ZDF History 360° – Tempelhof.exe": - when: - bit: 64 os: windows @@ -636916,11 +638642,11 @@ ZED: installDir: Zed: {} launch: - /zed.app: + "/zed.app": - when: - os: mac store: steam - /zed.exe: + "/zed.exe": - when: - bit: 64 os: windows @@ -636931,7 +638657,7 @@ ZERO Sievert: installDir: ZERO Sievert: {} launch: - /ZERO Sievert.exe: + "/ZERO Sievert.exe": - when: - os: windows store: steam @@ -636947,7 +638673,7 @@ ZEscape: installDir: ZEscape: {} launch: - /ZEscape.exe: + "/ZEscape.exe": - when: - os: windows store: steam @@ -636957,7 +638683,7 @@ ZHEROS: installDir: ZHEROS: {} launch: - /zheros.exe: + "/zheros.exe": - when: - os: windows store: steam @@ -636967,52 +638693,52 @@ ZHIVE: installDir: ZHIVE: {} launch: - /ZHive.app/Contents/MacOS/ZHive: + "/ZHive.app/Contents/MacOS/ZHive": - when: - os: mac store: steam - /ZHive.exe: + "/ZHive.exe": - when: - os: windows store: steam - /ZHive.x86: + "/ZHive.x86": - when: - bit: 32 os: linux store: steam - /ZHive.x86_64: + "/ZHive.x86_64": - when: - bit: 64 os: linux store: steam steam: id: 1119530 -'ZHP: Unlosing Ranger vs. Darkdeath Evilman': +"ZHP: Unlosing Ranger vs. Darkdeath Evilman": installDir: ZHP Unlosing Ranger vs. Darkdeath Evilman: {} launch: - /ZHP/ZHP.exe: + "/ZHP/ZHP.exe": - when: - bit: 64 os: windows store: steam - workingDir: /ZHP + workingDir: "/ZHP" steam: id: 1732070 ZIC - Zombies in City: installDir: ZIC – Zombies in City: {} launch: - /ZIC – Zombies in City.exe: + "/ZIC – Zombies in City.exe": - when: - store: steam steam: id: 1051290 -'ZIC: Survival': +"ZIC: Survival": installDir: ZIC - Survivor: {} launch: - /ZIC - Survivor.exe: + "/ZIC - Survivor.exe": - when: - store: steam steam: @@ -637021,15 +638747,15 @@ ZIQ: installDir: ZIQ: {} launch: - /ZIQ.app: + "/ZIQ.app": - when: - os: mac store: steam - /ZIQ.exe: + "/ZIQ.exe": - when: - os: windows store: steam - /ZIQ.x86_64: + "/ZIQ.x86_64": - when: - os: linux store: steam @@ -637039,7 +638765,7 @@ ZLM Crafter: installDir: ZLM Crafter: {} launch: - /ZLM_Crafter.exe: + "/ZLM_Crafter.exe": - when: - bit: 64 os: windows @@ -637055,17 +638781,17 @@ ZOOMnBOOM: installDir: ZOOMnBOOM: {} launch: - /ZOOMnBOOM.exe: + "/ZOOMnBOOM.exe": - when: - os: windows store: steam steam: id: 870580 -'ZOR: Pilgrimage of the Slorfs': +"ZOR: Pilgrimage of the Slorfs": installDir: ZOR Pilgrimage of the Slorfs: {} launch: - /CDS_Prototype.exe: + "/CDS_Prototype.exe": - when: - os: windows store: steam @@ -637075,7 +638801,7 @@ ZRoll: installDir: ZRoll: {} launch: - /zroll/zroll.exe: + "/zroll/zroll.exe": - when: - bit: 64 os: windows @@ -637086,7 +638812,7 @@ ZTime (Danger Noodles!): installDir: zTime (Danger Noodles!): {} launch: - /Flat (Non-VR)/zTime (flat).exe: + "/Flat (Non-VR)/zTime (flat).exe": - when: - os: windows store: steam @@ -637096,7 +638822,7 @@ ZUSI 3 - Aerosoft Edition: installDir: ZUSI 3 - Aerosoft Edition: {} launch: - /ZusiSim.exe: + "/ZusiSim.exe": - when: - os: windows store: steam @@ -637106,7 +638832,7 @@ ZYX Story: installDir: ZYX STORY: {} launch: - /ZYX STORY.exe: + "/ZYX STORY.exe": - when: - os: windows store: steam @@ -637114,12 +638840,12 @@ ZYX Story: id: 888900 ZZT: files: - /*.SAV: + "/*.SAV": tags: - save when: - os: dos - /ZZT.CFG: + "/ZZT.CFG": tags: - config when: @@ -637128,15 +638854,15 @@ Zaba The Frog: installDir: Zaba The Frog: {} launch: - /Zaba The Frog.exe: + "/Zaba The Frog.exe": - when: - os: windows store: steam - /Zaba the Frog.x86: + "/Zaba the Frog.x86": - when: - os: linux store: steam - /ZabaTheFrog.app/Contents/MacOS/ZabaTheFrog: + "/ZabaTheFrog.app/Contents/MacOS/ZabaTheFrog": - when: - os: mac store: steam @@ -637146,16 +638872,16 @@ Zaccaria Pinball: installDir: Zaccaria Pinball: {} launch: - /ZaccariaPinball.app: + "/ZaccariaPinball.app": - when: - bit: 64 os: mac store: steam - /ZaccariaPinball.exe: + "/ZaccariaPinball.exe": - when: - os: windows store: steam - /ZaccariaPinball.sh: + "/ZaccariaPinball.sh": - when: - bit: 64 os: linux @@ -637166,17 +638892,17 @@ Zach-Like: installDir: ZACH-LIKE: {} launch: - /ZACH-LIKE.exe: + "/ZACH-LIKE.exe": - when: - os: windows store: steam steam: id: 1098840 -'Zack 2: Celestine''s Map': +"Zack 2: Celestine's Map": installDir: - Zack 2 Celeste's Map: {} + "Zack 2 Celeste's Map": {} launch: - /zack 2.exe: + "/zack 2.exe": - when: - bit: 64 os: windows @@ -637187,11 +638913,11 @@ Zack Y: installDir: Zack Y: {} launch: - /Zacky: + "/Zacky": - when: - os: linux store: steam - /Zacky.exe: + "/Zacky.exe": - when: - os: windows store: steam @@ -637199,13 +638925,13 @@ Zack Y: id: 937620 Zack Zero: files: - /userdata//234290/remote: + "/userdata//234290/remote": tags: - save when: - os: windows store: steam - /ZackZero/zackzerocfg.txt: + "/ZackZero/zackzerocfg.txt": tags: - config when: @@ -637213,7 +638939,7 @@ Zack Zero: installDir: ZackZero: {} launch: - /ZackZero.exe: + "/ZackZero.exe": - when: - os: windows store: steam @@ -637223,23 +638949,23 @@ Zafehouse Diaries 2: installDir: Zafehouse Diaries 2: {} launch: - /ZafehouseDiaries2.app: + "/ZafehouseDiaries2.app": - when: - os: mac store: steam - /ZafehouseDiaries2.exe: + "/ZafehouseDiaries2.exe": - when: - os: windows store: steam - /ZafehouseDiaries2.x86: + "/ZafehouseDiaries2.x86": - when: - os: linux store: steam steam: id: 653940 -'Zafehouse: Diaries': +"Zafehouse: Diaries": files: - /Zafehouse Diaries: + "/Zafehouse Diaries": tags: - config - save @@ -637250,11 +638976,11 @@ Zafehouse Diaries 2: installDir: ZafehouseDiaries: {} launch: - /ZafeDiag.exe: + "/ZafeDiag.exe": - when: - os: windows store: steam - /ZafehouseDiaries.exe: + "/ZafehouseDiaries.exe": - when: - os: windows store: steam @@ -637264,7 +638990,7 @@ Zahalia: installDir: Zahalia: {} launch: - /Zahalia.exe: + "/Zahalia.exe": - when: - os: windows store: steam @@ -637272,22 +638998,22 @@ Zahalia: id: 791320 Zak McKracken and the Alien Mindbenders: files: - /PREFS: + "/PREFS": tags: - config when: - os: dos - /SAVEGAME.*: + "/SAVEGAME.*": tags: - save when: - os: dos - /zak.ini: + "/zak.ini": tags: - config when: - os: windows - /zak.s**: + "/zak.s**": tags: - save when: @@ -637302,7 +639028,7 @@ Zakk Hazard The Deadly Spawn: installDir: Zakk Hazard TDS: {} launch: - /Zakk Hazard.exe: + "/Zakk Hazard.exe": - when: - bit: 32 os: windows @@ -637313,20 +639039,20 @@ Zamarian: installDir: Zamarian: {} launch: - /Zamarian.app: + "/Zamarian.app": - when: - os: mac store: steam - /Zamarian.exe: + "/Zamarian.exe": - when: - os: windows store: steam - /Zamarian.x86: + "/Zamarian.x86": - when: - bit: 32 os: linux store: steam - /Zamarian.x86_64: + "/Zamarian.x86_64": - when: - bit: 64 os: linux @@ -637336,11 +639062,11 @@ Zamarian: Zambi 2 Kil: steam: id: 698930 -'ZanZarah: The Hidden Portal': +"ZanZarah: The Hidden Portal": installDir: ZanZarah: {} launch: - /ZanZarah.bat: + "/ZanZarah.bat": - when: - os: windows store: steam @@ -637350,24 +639076,24 @@ Zangeki Warp: installDir: Zangeki Warp: {} launch: - /ZangekiWarp: + "/ZangekiWarp": - when: - os: linux store: steam - /zangeki_warp.exe: + "/zangeki_warp.exe": - when: - os: windows store: steam steam: id: 564040 -'Zanki Zero: Last Beginning': +"Zanki Zero: Last Beginning": files: - /config.txt: + "/config.txt": tags: - config when: - os: windows - /ZankiZero: + "/ZankiZero": tags: - save when: @@ -637375,7 +639101,7 @@ Zangeki Warp: installDir: ZankiZero: {} launch: - /ZankiZero.exe: + "/ZankiZero.exe": - when: - bit: 64 os: windows @@ -637390,14 +639116,14 @@ Zanshin: Zany Golf: gog: id: 1659423350 -'Zap Blastum: Galactic Tactics': +"Zap Blastum: Galactic Tactics": steam: id: 696850 Zap Zap Zombie Cats: installDir: Zap Zap Zombie Cats: {} launch: - /ZZZC.exe: + "/ZZZC.exe": - when: - os: windows store: steam @@ -637407,21 +639133,21 @@ Zap Zone: installDir: Zap Zone: {} launch: - /Zap Zone.exe: + "/Zap Zone.exe": - when: - os: windows store: steam steam: id: 572180 -'Zap, Blast, Loot': +"Zap, Blast, Loot": installDir: ZapBlastLoot: {} launch: - /Zap Blast Loot.app: + "/Zap Blast Loot.app": - when: - os: mac store: steam - '/Zap Blast Loot/Zap, Blast, Loot.exe': + "/Zap Blast Loot/Zap, Blast, Loot.exe": - when: - os: windows store: steam @@ -637431,24 +639157,24 @@ Zapitalism: installDir: Zapitalism: {} launch: - /Zapitalism.app: + "/Zapitalism.app": - when: - os: mac store: steam - /Zapitalism.exe: + "/Zapitalism.exe": - when: - os: windows store: steam steam: id: 1173230 -'Zapper: One Wicked Cricket': +"Zapper: One Wicked Cricket": files: - /zapper.dat: + "/zapper.dat": tags: - config when: - os: windows - /zappersave.lee: + "/zappersave.lee": tags: - save when: @@ -637460,25 +639186,25 @@ Zarya and the Cursed Skull: installDir: Zarya and the Cursed Skull: {} launch: - /zarya.exe: + "/zarya.exe": - when: - os: windows store: steam steam: id: 605040 -'Zarya-1: Mystery on the Moon': +"Zarya-1: Mystery on the Moon": installDir: Zarya-1 Mystery on the Moon: {} launch: - /Zarya1.app: + "/Zarya1.app": - when: - os: mac store: steam - /zarya1.exe: + "/zarya1.exe": - when: - os: windows store: steam - /zarya1.x86: + "/zarya1.x86": - when: - os: linux store: steam @@ -637488,11 +639214,11 @@ Zasa - An AI Story: installDir: Zasa: {} launch: - /Zasa.app: + "/Zasa.app": - when: - os: mac store: steam - /zasa.exe: + "/zasa.exe": - when: - os: windows store: steam @@ -637502,7 +639228,7 @@ Zavix Tower: installDir: Zavix Tower: {} launch: - /Delenar - Zavix Tower.exe: + "/Delenar - Zavix Tower.exe": - when: - os: windows store: steam @@ -637512,20 +639238,20 @@ Zavod: installDir: ZAVOD: {} launch: - /zavod_game.exe: + "/zavod_game.exe": - when: - os: windows store: steam steam: id: 2245840 -'Zax: The Alien Hunter': +"Zax: The Alien Hunter": files: - /SaveGames: + "/SaveGames": tags: - save when: - os: windows - /Zax.CFG: + "/Zax.CFG": tags: - config when: @@ -637534,7 +639260,7 @@ Zazmo Arcade Pack: installDir: Zazmo Arcade Pack: {} launch: - /Zazmo_Arcade_Pack.exe: + "/Zazmo_Arcade_Pack.exe": - when: - os: windows store: steam @@ -637549,20 +639275,20 @@ ZeGame: installDir: ZeGame: {} launch: - /ZeGame.app: + "/ZeGame.app": - when: - os: mac store: steam - /ZeGame.exe: + "/ZeGame.exe": - when: - os: windows store: steam - /ZeGame.x86: + "/ZeGame.x86": - when: - bit: 32 os: linux store: steam - /ZeGame.x86_64: + "/ZeGame.x86_64": - when: - bit: 64 os: linux @@ -637573,7 +639299,7 @@ Zeal: installDir: Zeal: {} launch: - /Zeal.exe: + "/Zeal.exe": - when: - bit: 64 os: windows @@ -637584,7 +639310,7 @@ Zebra Logic Master: installDir: Zebra Logic Master: {} launch: - /nw.exe: + "/nw.exe": - when: - store: steam steam: @@ -637593,7 +639319,7 @@ Zed Survival: installDir: Zed Survival: {} launch: - /ZedSurvival.exe: + "/ZedSurvival.exe": - when: - os: windows store: steam @@ -637603,7 +639329,7 @@ Zedfest: installDir: Zedfest: {} launch: - /KevinSpel/Binaries/Win64/Zedfest.exe: + "/KevinSpel/Binaries/Win64/Zedfest.exe": - when: - os: windows store: steam @@ -637613,7 +639339,7 @@ Zeepkist: installDir: Zeepkist: {} launch: - /Zeepkist.exe: + "/Zeepkist.exe": - when: - bit: 64 os: windows @@ -637624,7 +639350,7 @@ Zefira: installDir: Zefira: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: @@ -637633,32 +639359,32 @@ Zeit²: installDir: Zeit2: {} launch: - /Zeit2.exe: + "/Zeit2.exe": - when: - store: steam steam: id: 33390 -Zeke's Peak: +"Zeke's Peak": installDir: - Zeke's Peak: {} + "Zeke's Peak": {} launch: - /Zekes Peak.exe: + "/Zekes Peak.exe": - when: - os: windows store: steam steam: id: 1093800 -'Zelensky vs Poroshenko: The Destiny of Ukraine': +"Zelensky vs Poroshenko: The Destiny of Ukraine": steam: id: 1069320 Zeliard: files: - /*.USR: + "/*.USR": tags: - save when: - os: dos - /RESOURCE.CFG: + "/RESOURCE.CFG": tags: - config when: @@ -637667,15 +639393,15 @@ Zeliria Sanctuary: installDir: Zeliria_Sanctuary: {} launch: - /zeliria.app: + "/zeliria.app": - when: - os: mac store: steam - /zeliria.exe: + "/zeliria.exe": - when: - os: windows store: steam - /zeliria.sh: + "/zeliria.sh": - when: - os: linux store: steam @@ -637685,22 +639411,25 @@ Zelle: installDir: Zelle: {} launch: - /Game.app: + "/Game.app": - when: - os: mac store: steam - /Game.exe: + "/Game.exe": - when: - bit: 32 os: windows store: steam + - bit: 64 + os: windows + store: steam steam: id: 725330 Zelter: installDir: Zelter: {} launch: - /Zelter.exe: + "/Zelter.exe": - when: - os: windows store: steam @@ -637710,7 +639439,7 @@ Zeminator: installDir: Zeminator: {} launch: - /Zeminator.exe: + "/Zeminator.exe": - when: - os: windows store: steam @@ -637720,11 +639449,11 @@ Zen Blocks: installDir: Zen Blocks: {} launch: - /ZenBlocks.app/Content/MacOS/MacOSX: + "/ZenBlocks.app/Content/MacOS/MacOSX": - when: - os: mac store: steam - /zenblocks.exe: + "/zenblocks.exe": - when: - os: windows store: steam @@ -637732,13 +639461,13 @@ Zen Blocks: id: 733020 Zen Bound 2: files: - /.ZenBound2: + "/.ZenBound2": tags: - config - save when: - os: linux - /ZenBound2: + "/ZenBound2": tags: - save when: @@ -637746,99 +639475,99 @@ Zen Bound 2: installDir: Zen Bound 2: {} launch: - /ZenBound2.exe: + "/ZenBound2.exe": - when: - os: windows store: steam - /Zen_Bound_2.app: + "/Zen_Bound_2.app": - when: - os: mac store: steam - /run_steam.sh: + "/run_steam.sh": - when: - os: linux store: steam steam: id: 61600 -'Zen Chess: Blindfold Masters': +"Zen Chess: Blindfold Masters": installDir: Zen Chess Blindfold Masters: {} launch: - /Zen_Chess_blindfold_masters.exe: + "/Zen_Chess_blindfold_masters.exe": - when: - os: windows store: steam - /Zen_Chess_blindfold_masters_Steam.app/Contents/MacOS/Zen_Chess_blindfold_masters_Steam: + "/Zen_Chess_blindfold_masters_Steam.app/Contents/MacOS/Zen_Chess_blindfold_masters_Steam": - when: - os: mac store: steam steam: id: 1108550 -'Zen Chess: Champion''s Moves': +"Zen Chess: Champion's Moves": installDir: - Zen Chess Champion's Moves: {} + "Zen Chess Champion's Moves": {} launch: - /Zen_Chess_champions_moves.exe: + "/Zen_Chess_champions_moves.exe": - when: - os: windows store: steam - /Zen_Chess_champions_moves_Steam.app/Contents/MacOS/Zen_Chess_champions_moves_Steam: + "/Zen_Chess_champions_moves_Steam.app/Contents/MacOS/Zen_Chess_champions_moves_Steam": - when: - os: mac store: steam steam: id: 1108540 -'Zen Chess: Mate in Four': +"Zen Chess: Mate in Four": installDir: Zen Chess Mate in Four: {} launch: - /Zen_Chess_mate_in_four.exe: + "/Zen_Chess_mate_in_four.exe": - when: - os: windows store: steam - /Zen_Chess_mate_in_four_Steam.app/Contents/MacOS/Zen_Chess_mate_in_four_Steam: + "/Zen_Chess_mate_in_four_Steam.app/Contents/MacOS/Zen_Chess_mate_in_four_Steam": - when: - os: mac store: steam steam: id: 1043000 -'Zen Chess: Mate in One': +"Zen Chess: Mate in One": installDir: Zen Chess Mate in One: {} launch: - /Zen Chess.app/Contents/MacOS/Zen Chess: + "/Zen Chess.app/Contents/MacOS/Zen Chess": - when: - os: mac store: steam - /Zen Chess.exe: + "/Zen Chess.exe": - when: - os: windows store: steam steam: id: 748970 -'Zen Chess: Mate in Three': +"Zen Chess: Mate in Three": installDir: Zen Chess Mate in Three: {} launch: - /Zen_Chess_mate_in_three.exe: + "/Zen_Chess_mate_in_three.exe": - when: - os: windows store: steam - /Zen_Chess_mate_in_three_Steam.app/Contents/MacOS/Zen_Chess_mate_in_three_Steam: + "/Zen_Chess_mate_in_three_Steam.app/Contents/MacOS/Zen_Chess_mate_in_three_Steam": - when: - os: mac store: steam steam: id: 1042990 -'Zen Chess: Mate in Two': +"Zen Chess: Mate in Two": installDir: Zen Chess Mate in Two: {} launch: - /Zen_Chess_mate_in_two.exe: + "/Zen_Chess_mate_in_two.exe": - when: - os: windows store: steam - /Zen_Chess_mate_in_two_Steam.app/Contents/MacOS/Zen_Chess_mate_in_two_Steam: + "/Zen_Chess_mate_in_two_Steam.app/Contents/MacOS/Zen_Chess_mate_in_two_Steam": - when: - os: mac store: steam @@ -637848,11 +639577,11 @@ Zen Fish SIM: installDir: Zen Fish SIM: {} launch: - /fishSIMbuild11.exe: + "/fishSIMbuild11.exe": - when: - os: windows store: steam - /linuxbuild11.x86: + "/linuxbuild11.x86": - when: - bit: 32 os: linux @@ -637863,11 +639592,11 @@ Zen Garden: installDir: Zen Garden: {} launch: - /ZenGarden.app/Contents/MacOS/ZenGarden: + "/ZenGarden.app/Contents/MacOS/ZenGarden": - when: - os: mac store: steam - /ZenGarden.exe: + "/ZenGarden.exe": - when: - os: windows store: steam @@ -637875,18 +639604,18 @@ Zen Garden: id: 592660 Zen Puzzle Garden: files: - /.lexaloffle/Zen Puzzle Garden: + "/.lexaloffle/Zen Puzzle Garden": tags: - config - save when: - os: linux - /Zen Puzzle Garden: + "/Zen Puzzle Garden": tags: - save when: - os: windows - /Zen Puzzle Garden/config.txt: + "/Zen Puzzle Garden/config.txt": tags: - config when: @@ -637900,14 +639629,14 @@ Zen Vs Gravity: installDir: Zen Vs Gravity: {} launch: - /Zen vs Gravity.exe: + "/Zen vs Gravity.exe": - when: - store: steam steam: id: 852620 Zen of Sudoku: files: - /Zen of Sudoku/users: + "/Zen of Sudoku/users": tags: - save when: @@ -637915,7 +639644,7 @@ Zen of Sudoku: installDir: Zen of Sudoku: {} launch: - /ZenOfSudoku.exe: + "/ZenOfSudoku.exe": - when: - store: steam steam: @@ -637932,21 +639661,21 @@ Zenerchi: installDir: Zenerchi: {} launch: - /Zenerchi.app: + "/Zenerchi.app": - when: - os: mac store: steam - /Zenerchi.exe: + "/Zenerchi.exe": - when: - os: windows store: steam steam: id: 37290 -'Zenethics Lab: Outbreak': +"Zenethics Lab: Outbreak": installDir: Zenethics Lab Outbreak: {} launch: - /Zenethics lab - Outbreak.exe: + "/Zenethics lab - Outbreak.exe": - when: - store: steam steam: @@ -637955,15 +639684,15 @@ Zenge: installDir: Zenge: {} launch: - /zenge.exe: + "/zenge.exe": - when: - os: windows store: steam - /zenge_linux.x86: + "/zenge_linux.x86": - when: - os: linux store: steam - /zenge_mac.app: + "/zenge_mac.app": - when: - os: mac store: steam @@ -637976,7 +639705,7 @@ Zenge: id: 461840 Zenith: files: - /AppData/LocalLow/Infinigon/Zenith: + "/AppData/LocalLow/Infinigon/Zenith": tags: - save when: @@ -637986,7 +639715,7 @@ Zenith: installDir: Zenith: {} launch: - /Zenith.exe: + "/Zenith.exe": - when: - os: windows store: steam @@ -638000,7 +639729,7 @@ Zenith Hunter: installDir: Zenith Hunter: {} launch: - /Zenith Hunter.exe: + "/Zenith Hunter.exe": - when: - os: windows store: steam @@ -638010,7 +639739,7 @@ Zenkat: installDir: Zenkat: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -638018,12 +639747,12 @@ Zenkat: id: 1085800 Zeno Clash: files: - /zenozoik/SAVE: + "/zenozoik/SAVE": tags: - save when: - os: windows - /zenozoik/cfg: + "/zenozoik/cfg": tags: - config when: @@ -638031,20 +639760,20 @@ Zeno Clash: installDir: ZenoClash: {} launch: - /zenoclash.exe: + "/zenoclash.exe": - when: - store: steam steam: id: 22200 Zeno Clash II: files: - /userdata//215690/remote: + "/userdata//215690/remote": tags: - save when: - os: windows store: steam - /My Games/UnrealEngine3/ZC2Game/Config: + "/My Games/UnrealEngine3/ZC2Game/Config": tags: - config when: @@ -638052,18 +639781,18 @@ Zeno Clash II: installDir: Zeno Clash 2: {} launch: - /Binaries/Win32/ZC2.exe: + "/Binaries/Win32/ZC2.exe": - when: - os: windows store: steam - workingDir: /Binaries/Win32 + workingDir: "/Binaries/Win32" steam: id: 215690 Zenodeath: installDir: Zenodeath: {} launch: - /Zenodeath_GMS2.exe: + "/Zenodeath_GMS2.exe": - when: - store: steam steam: @@ -638072,7 +639801,7 @@ Zenodyne R: installDir: Zenodyne R: {} launch: - /Zenodyne_Remake.exe: + "/Zenodyne_Remake.exe": - when: - os: windows store: steam @@ -638082,7 +639811,7 @@ Zenohell: installDir: Zenohell: {} launch: - /Zenohell.exe: + "/Zenohell.exe": - when: - os: windows store: steam @@ -638092,20 +639821,20 @@ Zenza: installDir: Zenza: {} launch: - /zenza.app: + "/zenza.app": - when: - os: mac store: steam - /zenza.x86: + "/zenza.x86": - when: - os: linux store: steam - /zenza32.exe: + "/zenza32.exe": - when: - bit: 32 os: windows store: steam - /zenza64.exe: + "/zenza64.exe": - when: - bit: 64 os: windows @@ -638116,20 +639845,20 @@ Zenzizenzic: installDir: Zenzizenzic: {} launch: - /Zenzizenzic.app: + "/Zenzizenzic.app": - when: - os: mac store: steam - /Zenzizenzic.exe: + "/Zenzizenzic.exe": - when: - os: windows store: steam - /Zenzizenzic.x86: + "/Zenzizenzic.x86": - when: - bit: 32 os: linux store: steam - /Zenzizenzic.x86_64: + "/Zenzizenzic.x86_64": - when: - bit: 64 os: linux @@ -638144,20 +639873,20 @@ Zeon 25: installDir: Zeon 25: {} launch: - /Zeon 25.app: + "/Zeon 25.app": - when: - os: mac store: steam - /Zeon 25.exe: + "/Zeon 25.exe": - when: - os: windows store: steam - /Zeon 25.x86: + "/Zeon 25.x86": - when: - bit: 32 os: linux store: steam - /Zeon 25.x86_64: + "/Zeon 25.x86_64": - when: - bit: 64 os: linux @@ -638174,11 +639903,11 @@ Zephyr: Zeppelin VR: steam: id: 611200 -Zeran's Folly: +"Zeran's Folly": installDir: ZeransFolly: {} launch: - /Zeran's Folly.exe: + "/Zeran's Folly.exe": - when: - bit: 64 os: windows @@ -638198,15 +639927,15 @@ Zero Days VR: Zero Days VR: {} steam: id: 754930 -'Zero Escape: The Nonary Games': +"Zero Escape: The Nonary Games": files: - /My Games/Zero Escape The Nonary Games: + "/My Games/Zero Escape The Nonary Games": tags: - config - save when: - os: windows - /My Games/Zero Escape The Nonary Games GamePass: + "/My Games/Zero Escape The Nonary Games GamePass": tags: - config - save @@ -638216,20 +639945,20 @@ Zero Days VR: installDir: Zero Escape The Nonary Games: {} launch: - /Launcher.exe: + "/Launcher.exe": - when: - os: windows store: steam steam: id: 477740 -'Zero Escape: Zero Time Dilemma': +"Zero Escape: Zero Time Dilemma": files: - /My Games/Zero Escape/Saves: + "/My Games/Zero Escape/Saves": tags: - save when: - os: windows - /My Games/Zero Escape/config.json: + "/My Games/Zero Escape/config.json": tags: - config when: @@ -638237,7 +639966,7 @@ Zero Days VR: installDir: Zero Escape: {} launch: - /Zero Escape.exe: + "/Zero Escape.exe": - when: - os: windows store: steam @@ -638250,15 +639979,15 @@ Zero G Arena: installDir: Zero G Arena: {} launch: - /Sta.app: + "/Sta.app": - when: - os: mac store: steam - /Sta.exe: + "/Sta.exe": - when: - os: windows store: steam - /Sta/Binaries/Linux/Sta: + "/Sta/Binaries/Linux/Sta": - when: - os: linux store: steam @@ -638268,7 +639997,7 @@ Zero Gear: installDir: Zero Gear: {} launch: - /ZeroGear.bat: + "/ZeroGear.bat": - when: - store: steam steam: @@ -638277,15 +640006,15 @@ Zero Gravity: installDir: Zero Gravity: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam - /zerogravity.app: + "/zerogravity.app": - when: - os: mac store: steam - /zerogravity.exe: + "/zerogravity.exe": - when: - os: windows store: steam @@ -638295,8 +640024,8 @@ Zero Gravity Pool: installDir: Zero Gravity Pool: {} launch: - /ZeroGPool32.exe: - - arguments: '-nocompositor' + "/ZeroGPool32.exe": + - arguments: "-nocompositor" when: - os: windows store: steam @@ -638306,11 +640035,11 @@ Zero Gunner 2-: installDir: ZERO GUNNER 2-: {} launch: - /ZERO GUNNER 2-.exe: + "/ZERO GUNNER 2-.exe": - when: - os: windows store: steam - /setting.exe: + "/setting.exe": - when: - os: windows store: steam @@ -638320,7 +640049,7 @@ Zero Hour: installDir: Zero Hour: {} launch: - /Zero Hour.exe: + "/Zero Hour.exe": - when: - os: windows store: steam @@ -638339,7 +640068,7 @@ Zero One / 杀戮世界: installDir: Zero_One: {} launch: - /Zero One.exe: + "/Zero One.exe": - when: - os: windows store: steam @@ -638349,26 +640078,26 @@ Zero Point: installDir: ZeroPoint: {} launch: - /ZeroPoint.exe: + "/ZeroPoint.exe": - when: - bit: 64 os: windows store: steam steam: id: 268710 -'Zero Reflex: Black Eye Edition': +"Zero Reflex: Black Eye Edition": installDir: Zero Reflex: {} launch: - /ZeroReflex.app/Contents/MacOS/ZeroReflex: + "/ZeroReflex.app/Contents/MacOS/ZeroReflex": - when: - os: mac store: steam - /ZeroReflex.exe: + "/ZeroReflex.exe": - when: - os: windows store: steam - /ZeroReflex.x86_64: + "/ZeroReflex.x86_64": - when: - os: linux store: steam @@ -638378,7 +640107,7 @@ Zero Strain: installDir: ZeroStrain: {} launch: - /ZeroStrain.exe: + "/ZeroStrain.exe": - when: - bit: 64 os: windows @@ -638389,7 +640118,7 @@ Zero Sum Future: installDir: Zero Sum Future: {} launch: - /v4Engine.exe: + "/v4Engine.exe": - when: - os: windows store: steam @@ -638401,7 +640130,7 @@ Zero Tolerance: installDir: Zero Tolerance: {} launch: - /zero tolerance.exe: + "/zero tolerance.exe": - when: - os: windows store: steam @@ -638413,16 +640142,16 @@ Zero Wing: installDir: Zero Wing: {} launch: - /ZeroWing.exe: + "/ZeroWing.exe": - when: - bit: 64 os: windows store: steam - /ZeroWing.x64: + "/ZeroWing.x64": - when: - os: linux store: steam - /Zerowing.app: + "/Zerowing.app": - when: - os: mac store: steam @@ -638435,7 +640164,7 @@ Zero spring episode 1 English translation version: installDir: Zero spring episode 1 English translation version: {} launch: - /estart.exe: + "/estart.exe": - when: - os: windows store: steam @@ -638445,7 +640174,7 @@ Zero spring episode 1 Japanese version: installDir: Zero spring episode 1 Japanese version: {} launch: - /jstart.exe: + "/jstart.exe": - when: - os: windows store: steam @@ -638455,7 +640184,7 @@ Zero spring episode 2: installDir: Zero spring episode 2: {} launch: - /Zerospringepisode2.exe: + "/Zerospringepisode2.exe": - when: - os: windows store: steam @@ -638465,11 +640194,11 @@ Zero spring episode 3: installDir: Zero spring episode 3: {} launch: - /Game.app/Contents/MacOS/zsep3mac: + "/Game.app/Contents/MacOS/zsep3mac": - when: - os: mac store: steam - /zsep3.exe: + "/zsep3.exe": - when: - os: windows store: steam @@ -638489,11 +640218,11 @@ Zero-K: installDir: Zero-K: {} launch: - /Zero-K.exe: + "/Zero-K.exe": - when: - os: windows store: steam - /Zero-K_linux64.sh: + "/Zero-K_linux64.sh": - when: - bit: 64 os: linux @@ -638502,7 +640231,7 @@ Zero-K: id: 334920 ZeroRanger: files: - /ZeroRanger/SAVEDATA: + "/ZeroRanger/SAVEDATA": tags: - save when: @@ -638510,7 +640239,7 @@ ZeroRanger: installDir: ZeroRanger: {} launch: - /ZeroRanger.exe: + "/ZeroRanger.exe": - when: - os: windows store: steam @@ -638520,7 +640249,7 @@ ZeroZone2020: installDir: ZeroZone2020: {} launch: - /ZZ.exe: + "/ZZ.exe": - when: - store: steam steam: @@ -638529,7 +640258,7 @@ Zerocar: installDir: ZEROCAR: {} launch: - /ZeroCar.exe: + "/ZeroCar.exe": - when: - os: windows store: steam @@ -638539,11 +640268,11 @@ Zeroptian Invasion: installDir: Zeroptian Invasion: {} launch: - /Zeroptian Invasion.exe: + "/Zeroptian Invasion.exe": - when: - os: windows store: steam - /runner: + "/runner": - when: - os: linux store: steam @@ -638553,7 +640282,7 @@ Zeta Complex: installDir: Zeta Complex: {} launch: - /zeta_complex.exe: + "/zeta_complex.exe": - when: - os: windows store: steam @@ -638563,7 +640292,7 @@ Zeta Flyff: installDir: Zeta Flyff: {} launch: - /bin/NeuzSteam.exe: + "/bin/NeuzSteam.exe": - arguments: serius when: - os: windows @@ -638577,7 +640306,7 @@ Zether: id: 924830 Zetria: files: - /AppData/LocalLow/Karne/Zetria/sys.fbf: + "/AppData/LocalLow/Karne/Zetria/sys.fbf": tags: - save when: @@ -638585,11 +640314,11 @@ Zetria: installDir: Zetria: {} launch: - /Zetria.exe: + "/Zetria.exe": - when: - os: windows store: steam - /zetria_macos.app: + "/zetria_macos.app": - when: - os: mac store: steam @@ -638599,7 +640328,7 @@ Zettavolt Trigger: installDir: Zettavolt Trigger: {} launch: - /Zettavolt Trigger.exe: + "/Zettavolt Trigger.exe": - when: - os: windows store: steam @@ -638609,7 +640338,7 @@ Zeus Battlegrounds: installDir: Zeus: {} launch: - /Zeus/Binaries/Win64/Zeus-Win64-Shipping.exe: + "/Zeus/Binaries/Win64/Zeus-Win64-Shipping.exe": - when: - bit: 64 os: windows @@ -638620,7 +640349,7 @@ Zeus Begins: installDir: Zeus Begins: {} launch: - /Zeus Begins.exe: + "/Zeus Begins.exe": - when: - os: windows store: steam @@ -638630,22 +640359,22 @@ Zeus Quest Remastered: installDir: zeus_quest_remastered: {} launch: - /Zeus Quest Remastered.app/Contents/MacOS/Zeus Quest Remastered: + "/Zeus Quest Remastered.app/Contents/MacOS/Zeus Quest Remastered": - when: - os: mac store: steam - /Zeus Quest Remastered.exe: + "/Zeus Quest Remastered.exe": - when: - os: windows store: steam - /Zeus Quest Remastered.x86: - - arguments: '-force-opengl' + "/Zeus Quest Remastered.x86": + - arguments: "-force-opengl" when: - bit: 32 os: linux store: steam - /Zeus Quest Remastered.x86_64: - - arguments: '-force-opengl' + "/Zeus Quest Remastered.x86_64": + - arguments: "-force-opengl" when: - bit: 64 os: linux @@ -638656,29 +640385,29 @@ Zeus vs Monsters: installDir: Zeus vs Monsters - Math Game for kids: {} launch: - /Zevs.exe: + "/Zevs.exe": - when: - os: windows store: steam - /zevs_.app/Contents/MacOS/zevs_: + "/zevs_.app/Contents/MacOS/zevs_": - when: - os: mac store: steam steam: id: 444430 -'Zeus: Master of Olympus': +"Zeus: Master of Olympus": files: - /*.inf: + "/*.inf": tags: - config when: - store: steam - /Save: + "/Save": tags: - save when: - store: steam - /Zeus.ini: + "/Zeus.ini": tags: - config when: @@ -638688,7 +640417,7 @@ Zeus vs Monsters: installDir: Zeus + Poseidon: {} launch: - /Zeus.exe: + "/Zeus.exe": - when: - store: steam steam: @@ -638697,7 +640426,7 @@ Zezenia Online: installDir: Zezenia Online: {} launch: - /Zezenia_Steam.exe: + "/Zezenia_Steam.exe": - when: - os: windows store: steam @@ -638712,11 +640441,11 @@ Zhed: installDir: zhed: {} launch: - /Zhed.exe: + "/Zhed.exe": - when: - os: windows store: steam - /zhed.app/Contents/MacOS/zhed: + "/zhed.app/Contents/MacOS/zhed": - when: - os: mac store: steam @@ -638726,7 +640455,7 @@ Zhijiang Town: installDir: 枝江小镇: {} launch: - /ZhijiangTown/ZhijiangTown.exe: + "/ZhijiangTown/ZhijiangTown.exe": - when: - os: windows store: steam @@ -638736,7 +640465,7 @@ Zhmyshenko Valery Albertovich: installDir: Zhmyshenko Valery Albertovich: {} launch: - /ZVA2.exe: + "/ZVA2.exe": - when: - os: windows store: steam @@ -638746,7 +640475,7 @@ Zhulik.exe: installDir: Zhulik_exe: {} launch: - /Zhulik.exe: + "/Zhulik.exe": - when: - os: windows store: steam @@ -638756,7 +640485,7 @@ Zhust - The Illusion Soul: installDir: ZHUST - THE ILLUSION SOUL: {} launch: - /ZHUST - THE ILLUSION SOUL.exe: + "/ZHUST - THE ILLUSION SOUL.exe": - when: - os: windows store: steam @@ -638769,7 +640498,7 @@ ZiL Truck RallyCross: installDir: ZiL Truck RallyCross: {} launch: - /TruckRallyCross.exe: + "/TruckRallyCross.exe": - when: - os: windows store: steam @@ -638779,7 +640508,7 @@ Zia and the goddesses of magic: installDir: Zia and the goddesses of magic: {} launch: - /ZiaRPG.exe: + "/ZiaRPG.exe": - when: - os: windows store: steam @@ -638792,7 +640521,7 @@ Zibbs - Alien Survival: installDir: Zibbs - Alien Survival: {} launch: - /AlienSurvival.exe: + "/AlienSurvival.exe": - when: - os: windows store: steam @@ -638807,16 +640536,16 @@ Zig: installDir: Zig: {} launch: - /zig: + "/zig": - when: - bit: 64 os: linux store: steam - /zig.app/Contents/MacOS/zig: + "/zig.app/Contents/MacOS/zig": - when: - os: mac store: steam - /zig.exe: + "/zig.exe": - when: - os: windows store: steam @@ -638826,54 +640555,54 @@ Zigfrak: installDir: Zigfrak: {} launch: - /Zigfrak/Zigfrak.app: + "/Zigfrak/Zigfrak.app": - when: - os: mac store: steam - workingDir: /Zigfrak - /Zigfrak/Zigfrak.exe: + workingDir: "/Zigfrak" + "/Zigfrak/Zigfrak.exe": - when: - os: windows store: steam - workingDir: /Zigfrak - /Zigfrak/Zigfrak.x86: + workingDir: "/Zigfrak" + "/Zigfrak/Zigfrak.x86": - when: - bit: 32 os: linux store: steam - workingDir: /Zigfrak - /Zigfrak/Zigfrak.x86_64: + workingDir: "/Zigfrak" + "/Zigfrak/Zigfrak.x86_64": - when: - bit: 64 os: linux store: steam - workingDir: /Zigfrak + workingDir: "/Zigfrak" steam: id: 259430 Ziggurat: files: - /.config/unity3d/Milkstone Studios/Ziggurat: + "/.config/unity3d/Milkstone Studios/Ziggurat": tags: - config - save when: - os: linux - /AppData/LocalLow/Milkstone Studios/Ziggurat/config.xml: + "/AppData/LocalLow/Milkstone Studios/Ziggurat/config.xml": tags: - config when: - os: windows - /AppData/LocalLow/Milkstone Studios/Ziggurat/savegame.xml: + "/AppData/LocalLow/Milkstone Studios/Ziggurat/savegame.xml": tags: - save when: - os: windows - /Library/Application Support/unity.Milkstone Studios.Ziggurat/savegame.xml: + "/Library/Application Support/unity.Milkstone Studios.Ziggurat/savegame.xml": tags: - save when: - os: mac - /userdata//308420/remote: + "/userdata//308420/remote": tags: - config - save @@ -638884,7 +640613,7 @@ Ziggurat: installDir: Ziggurat: {} launch: - /Ziggurat: + "/Ziggurat": - when: - os: linux store: steam @@ -638892,11 +640621,11 @@ Ziggurat: when: - os: linux store: steam - /Ziggurat.app: + "/Ziggurat.app": - when: - os: mac store: steam - /Ziggurat.exe: + "/Ziggurat.exe": - when: - os: windows store: steam @@ -638904,27 +640633,29 @@ Ziggurat: id: 308420 Ziggurat 2: files: - /AppData/LocalLow/Milkstone Studios/Ziggurat2: + "/AppData/LocalLow/Milkstone Studios/Ziggurat2": tags: - config when: - - store: gog - /AppData/LocalLow/Milkstone Studios/Ziggurat2/*.mlk: - tags: - - save - when: - - store: gog - /My Games/Ziggurat2: + - os: windows + store: gog + "/AppData/LocalLow/Milkstone Studios/Ziggurat2/*.mlk": tags: - save when: - os: windows - /unity3d/Milkstone Studios/Ziggurat2: + store: gog + "/My Games/Ziggurat2": + tags: + - save + when: + - os: windows + "/unity3d/Milkstone Studios/Ziggurat2": tags: - config when: - os: linux - /unity3d/Milkstone Studios/Ziggurat2/*.mlk: + "/unity3d/Milkstone Studios/Ziggurat2/*.mlk": tags: - save when: @@ -638941,15 +640672,15 @@ Ziggurat 2: installDir: Ziggurat 2: {} launch: - /Ziggurat2: + "/Ziggurat2": - when: - os: linux store: steam - /Ziggurat2.app: + "/Ziggurat2.app": - when: - os: mac store: steam - /Ziggurat2.exe: + "/Ziggurat2.exe": - when: - os: windows store: steam @@ -638959,21 +640690,21 @@ Ziggurat 3D Chess: installDir: Ziggurat 3D Chess: {} launch: - /Ziggurat.exe: + "/Ziggurat.exe": - when: - os: windows store: steam steam: id: 654680 -Ziggy's Chase: +"Ziggy's Chase": installDir: - Ziggy's Chase: {} + "Ziggy's Chase": {} launch: - /ziggys_chase.app: + "/ziggys_chase.app": - when: - os: mac store: steam - /ziggys_chase.exe: + "/ziggys_chase.exe": - when: - os: windows store: steam @@ -638983,7 +640714,7 @@ Zima Uhodi!: installDir: Zima uhodi!: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -638996,16 +640727,16 @@ Zipple World: installDir: Zipple World: {} launch: - /zipple_world_21.exe: + "/zipple_world_21.exe": - when: - store: steam steam: id: 433110 -'Zipple World 2: The Sweet Chaos': +"Zipple World 2: The Sweet Chaos": installDir: Zipple World 2 The Sweet Chaos: {} launch: - /sweet_chaos_30_08_2016.exe: + "/sweet_chaos_30_08_2016.exe": - when: - store: steam steam: @@ -639014,16 +640745,16 @@ Ziro: installDir: Ziro: {} launch: - /Ziro.exe: + "/Ziro.exe": - when: - store: steam steam: id: 33660 -Zissi's Island: +"Zissi's Island": installDir: - Zissi's Island: {} + "Zissi's Island": {} launch: - /ZissisIsland.exe: + "/ZissisIsland.exe": - when: - os: windows store: steam @@ -639033,7 +640764,7 @@ Zkiller: installDir: ZKILLER: {} launch: - /ZKILLER.exe: + "/ZKILLER.exe": - when: - os: windows store: steam @@ -639045,36 +640776,36 @@ Zniw Adventure: installDir: Zniw Adventure: {} launch: - /CTGAME.exe: + "/CTGAME.exe": - when: - os: windows store: steam - /ZniwAdventure.app: + "/ZniwAdventure.app": - when: - os: mac store: steam - /manualEn.pdf: + "/manualEn.pdf": - when: - os: windows store: steam - /manualPl.pdf: + "/manualPl.pdf": - when: - os: windows store: steam - /refCardWinEnglish.pdf: + "/refCardWinEnglish.pdf": - when: - os: windows store: steam - /refCardWinPolish.pdf: + "/refCardWinPolish.pdf": - when: - os: windows store: steam - /runzniw.sh: - - arguments: '--windowed' + "/runzniw.sh": + - arguments: "--windowed" when: - os: linux store: steam - - arguments: '--fullscreen --gfxfilter stdscale 2' + - arguments: "--fullscreen --gfxfilter stdscale 2" when: - os: linux store: steam @@ -639084,7 +640815,7 @@ Znkl - 177: installDir: Znkl - 177: {} launch: - /Znkl - 177.exe: + "/Znkl - 177.exe": - when: - os: windows store: steam @@ -639092,12 +640823,12 @@ Znkl - 177: id: 745380 Zodiacats: files: - /fortune.cfg: + "/fortune.cfg": tags: - save when: - os: windows - /zodiacats_settings.cfg: + "/zodiacats_settings.cfg": tags: - config when: @@ -639107,11 +640838,11 @@ Zodiacats: installDir: Zodiacats: {} launch: - /zodiacats.exe: + "/zodiacats.exe": - when: - os: windows store: steam - /zodiacats.x86_64: + "/zodiacats.x86_64": - when: - os: linux store: steam @@ -639121,7 +640852,7 @@ Zodicat: installDir: Zodicat: {} launch: - /Zodicat_pc.exe: + "/Zodicat_pc.exe": - when: - bit: 64 os: windows @@ -639132,12 +640863,15 @@ Zofia: installDir: Zofia: {} launch: - /PaleSaffronTilt.exe: + "/PaleSaffronTilt.exe": - when: - bit: 32 os: windows store: steam - /PaleSaffronTilt.sh: + - bit: 64 + os: windows + store: steam + "/PaleSaffronTilt.sh": - when: - os: linux store: steam @@ -639147,11 +640881,11 @@ Zolg: installDir: Zolg: {} launch: - /Zolg.app: + "/Zolg.app": - when: - os: mac store: steam - /Zolg.exe: + "/Zolg.exe": - when: - os: windows store: steam @@ -639161,19 +640895,19 @@ Zom Nom: installDir: Zom Nom: {} launch: - /ZomNom.exe: + "/ZomNom.exe": - when: - bit: 64 os: windows store: steam steam: id: 1193070 -'Zom-bie, or Not Zom-bie': +"Zom-bie, or Not Zom-bie": installDir: ZombieOrNotZombie: {} launch: - /ToBeOrNotToBe/nw.exe: - - arguments: '-windowed --in-process-gpu' + "/ToBeOrNotToBe/nw.exe": + - arguments: "-windowed --in-process-gpu" when: - os: windows store: steam @@ -639184,11 +640918,11 @@ ZomB: ZomB: {} steam: id: 1098980 -'ZomB: Battlegrounds': +"ZomB: Battlegrounds": installDir: ZomB Battlegrounds: {} launch: - /ZomB Battlegrounds.exe: + "/ZomB Battlegrounds.exe": - when: - os: windows store: steam @@ -639209,18 +640943,18 @@ ZombVR: id: 523940 Zombasite: files: - /.local/Zombasite: + "/.local/Zombasite": tags: - config - save when: - os: linux - /Zombasite/User/chars: + "/Zombasite/User/chars": tags: - save when: - os: windows - /Zombastie/User/user.cfg: + "/Zombastie/User/user.cfg": tags: - config when: @@ -639229,20 +640963,20 @@ Zombasite: id: 1218352612 id: gogExtra: - - 1951862657 - 1423584786 + - 1951862657 installDir: Zombasite: {} launch: - /Zombasite: + "/Zombasite": - when: - os: linux store: steam - /Zombasite.app: + "/Zombasite.app": - when: - os: mac store: steam - /Zombasite.exe: + "/Zombasite.exe": - when: - os: windows store: steam @@ -639252,7 +640986,7 @@ Zombeer: installDir: Zombeer: {} launch: - /Zombeer.exe: + "/Zombeer.exe": - when: - os: windows store: steam @@ -639260,12 +640994,12 @@ Zombeer: id: 262190 Zombi (2015): files: - /Saved Games/Ubisoft/ZombiU/Player_0: + "/Saved Games/Ubisoft/ZombiU/Player_0": tags: - config when: - os: windows - /savegames//1653: + "/savegames//1653": tags: - save when: @@ -639274,18 +641008,18 @@ Zombi (2015): installDir: ZOMBI: {} launch: - /ZOMBI.exe: - - arguments: '-uplay_steam_mode' + "/ZOMBI.exe": + - arguments: "-uplay_steam_mode" when: - os: windows store: steam steam: id: 339230 -'Zombidle: Remonstered': +"Zombidle: Remonstered": installDir: Zombidle: {} launch: - /Zombidle.exe: + "/Zombidle.exe": - when: - os: windows store: steam @@ -639295,7 +641029,7 @@ Zombie: installDir: Zombie: {} launch: - /zombie.exe: + "/zombie.exe": - when: - store: steam steam: @@ -639304,7 +641038,7 @@ Zombie Apocalypse: installDir: Zombie Apocalypse: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -639314,8 +641048,11 @@ Zombie Apocalypse (2019): installDir: Zombie Apocalypse: {} launch: - /Zombie Apocalypse.exe: + "/Zombie Apocalypse.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam @@ -639327,24 +641064,24 @@ Zombie Apocalypse Mini Golf (VR): Zombie Apocalypse Survivor: steam: id: 830380 -'Zombie Apocalypse: Escape The Undead City': +"Zombie Apocalypse: Escape The Undead City": installDir: Zombie Apocalypse Escape The Undead City: {} launch: - /ZombieApocalypseEscape.exe: + "/ZombieApocalypseEscape.exe": - when: - os: windows store: steam steam: id: 492490 -'Zombie Army 4: Dead War': +"Zombie Army 4: Dead War": files: - /Zombie Army 4: + "/Zombie Army 4": tags: - config when: - os: windows - /Zombie Army 4/PC_ProfileSaves: + "/Zombie Army 4/PC_ProfileSaves": tags: - save when: @@ -639352,20 +641089,20 @@ Zombie Apocalypse Survivor: installDir: ZombieArmy4: {} launch: - /Launcher/za4.exe: + "/Launcher/za4.exe": - when: - store: steam steam: id: 694280 Zombie Army Trilogy: files: - /userdata//301640/remote/PC_ProfileSaves: + "/userdata//301640/remote/PC_ProfileSaves": tags: - save when: - os: windows store: steam - /Zombie Army Trilogy/Settings.ini: + "/Zombie Army Trilogy/Settings.ini": tags: - config when: @@ -639373,7 +641110,7 @@ Zombie Army Trilogy: installDir: Zombie Army Trilogy: {} launch: - /launcher/ZATLauncher.exe: + "/launcher/ZATLauncher.exe": - when: - store: steam steam: @@ -639382,7 +641119,7 @@ Zombie Ballz: installDir: Zombie Ballz: {} launch: - /Zombie Ballz.exe: + "/Zombie Ballz.exe": - when: - store: steam steam: @@ -639397,7 +641134,7 @@ Zombie Birds First Encounter Halloween: installDir: Zombie Birds First Encounter Halloween: {} launch: - /ZombieBirdsHalloween.exe: + "/ZombieBirdsHalloween.exe": - when: - os: windows store: steam @@ -639407,7 +641144,7 @@ Zombie Bitcoin Defense: installDir: Zombie Builder Defense: {} launch: - /ZBDefense.exe: + "/ZBDefense.exe": - when: - os: windows store: steam @@ -639417,11 +641154,11 @@ Zombie Bloxx: installDir: Zombie Bloxx: {} launch: - /zb_normal.app/Contents/MacOS/zb_normal: + "/zb_normal.app/Contents/MacOS/zb_normal": - when: - os: mac store: steam - /zb_normal.exe: + "/zb_normal.exe": - when: - os: windows store: steam @@ -639434,7 +641171,7 @@ Zombie Bowl-o-Rama: installDir: Zombie Bowl-O-Rama: {} launch: - /ZombieBowl.exe: + "/ZombieBowl.exe": - when: - store: steam steam: @@ -639454,11 +641191,11 @@ Zombie Camp: Zombie Camp: {} steam: id: 503410 -'Zombie Camp: Last Survivor': +"Zombie Camp: Last Survivor": installDir: ZombieCamp: {} launch: - /ZombieCamp.exe: + "/ZombieCamp.exe": - when: - os: windows store: steam @@ -639471,7 +641208,7 @@ Zombie Carnage 2: installDir: ZC2: {} launch: - /ShooterGame2/Binaries/Win64/ShooterGameClient-Win64-Shipping.exe: + "/ShooterGame2/Binaries/Win64/ShooterGameClient-Win64-Shipping.exe": - when: - store: steam steam: @@ -639485,24 +641222,24 @@ Zombie City Defense 2: installDir: Zombie City Defense 2: {} launch: - /ZCD2.app/Contents/MacOS/ZCD2: - - arguments: '-vrmode none' + "/ZCD2.app/Contents/MacOS/ZCD2": + - arguments: "-vrmode none" when: - os: mac store: steam - /ZCD2.exe: - - arguments: ' -vrmode none' + "/ZCD2.exe": + - arguments: " -vrmode none" when: - os: windows store: steam - /ZCD2.x86: - - arguments: '-vrmode none LC_ALL=C %command%' + "/ZCD2.x86": + - arguments: "-vrmode none LC_ALL=C %command%" when: - bit: 32 os: linux store: steam - /ZCD2.x86_64: - - arguments: '-vrmode none LC_ALL=C %command%_64' + "/ZCD2.x86_64": + - arguments: "-vrmode none LC_ALL=C %command%_64" when: - bit: 64 os: linux @@ -639513,7 +641250,7 @@ Zombie Claus: installDir: Zombie Claus: {} launch: - /Zombie Claus.exe: + "/Zombie Claus.exe": - when: - bit: 64 os: windows @@ -639524,7 +641261,7 @@ Zombie Clicker Defense: installDir: Zombie Clicker Defense: {} launch: - /zcd.exe: + "/zcd.exe": - when: - store: steam steam: @@ -639533,7 +641270,7 @@ Zombie Commander: installDir: Zombie Commander: {} launch: - /Zombie-Commander.exe: + "/Zombie-Commander.exe": - when: - bit: 64 os: windows @@ -639544,7 +641281,7 @@ Zombie Commando 3D: installDir: Zombie Commando 3D: {} launch: - /zommando.exe: + "/zommando.exe": - when: - os: windows store: steam @@ -639554,7 +641291,7 @@ Zombie Crisis: installDir: Zombie Crisis: {} launch: - /ZombieCrisis.exe: + "/ZombieCrisis.exe": - when: - bit: 64 os: windows @@ -639565,7 +641302,7 @@ Zombie Cubes: installDir: Zombie Cubes: {} launch: - /ZombieCubes.exe: + "/ZombieCubes.exe": - when: - os: windows store: steam @@ -639575,7 +641312,7 @@ Zombie Deathrace Feeding Frenzy: installDir: Zombie Deathrace Feeding Frenzy: {} launch: - /Frenzy.exe: + "/Frenzy.exe": - when: - bit: 64 os: windows @@ -639586,15 +641323,15 @@ Zombie Defense: installDir: Zombie Defense: {} launch: - /ZombieDefense.exe: + "/ZombieDefense.exe": - when: - os: windows store: steam - /ZombieDefense.x86_64: + "/ZombieDefense.x86_64": - when: - os: linux store: steam - /ZombieDefenseOSX.app: + "/ZombieDefenseOSX.app": - when: - os: mac store: steam @@ -639602,7 +641339,7 @@ Zombie Defense: id: 533780 Zombie Derby: files: - /profile.sav: + "/profile.sav": tags: - save when: @@ -639610,7 +641347,7 @@ Zombie Derby: installDir: Zombie Derby: {} launch: - /zombie_derby.exe: + "/zombie_derby.exe": - when: - os: windows store: steam @@ -639618,7 +641355,7 @@ Zombie Derby: id: 831770 Zombie Derby 2: files: - /profile.sav: + "/profile.sav": tags: - save when: @@ -639626,22 +641363,22 @@ Zombie Derby 2: installDir: Zombie Derby 2: {} launch: - /zombie_derby_2.exe: + "/zombie_derby_2.exe": - when: - os: windows store: steam steam: id: 762590 -'Zombie Derby: Blocky Roads': +"Zombie Derby: Blocky Roads": files: - /profile.sav: + "/profile.sav": tags: - save when: - os: windows -'Zombie Derby: Pixel Survival': +"Zombie Derby: Pixel Survival": files: - /profile.sav: + "/profile.sav": tags: - save when: @@ -639649,7 +641386,7 @@ Zombie Derby 2: installDir: Zombie Derby Pixel Survival: {} launch: - /Zombie Derby Pixel Survival.exe: + "/Zombie Derby Pixel Survival.exe": - when: - os: windows store: steam @@ -639659,20 +641396,20 @@ Zombie Desperation: installDir: Zombie Desperation: {} launch: - /ZombieDesperation.app/Contents/MacOS/ZombieDesperation: + "/ZombieDesperation.app/Contents/MacOS/ZombieDesperation": - when: - os: mac store: steam - /ZombieDesperation.exe: + "/ZombieDesperation.exe": - when: - os: windows store: steam - /ZombieDesperation.x86: + "/ZombieDesperation.x86": - when: - bit: 32 os: linux store: steam - /ZombieDesperation.x86_64: + "/ZombieDesperation.x86_64": - when: - bit: 64 os: linux @@ -639688,12 +641425,12 @@ Zombie Dinos from Planet Zeltoid: id: 1749720 Zombie Driver HD: files: - /userdata//220820: + "/userdata//220820": tags: - save when: - store: steam - /ZombieDriverHD/Config: + "/ZombieDriverHD/Config": tags: - config when: @@ -639701,23 +641438,23 @@ Zombie Driver HD: installDir: Zombie_Driver_HD: {} launch: - /bin/ZombieDriverHD.exe: + "/bin/ZombieDriverHD.exe": - arguments: nosetup=1 when: - os: windows store: steam - workingDir: /bin + workingDir: "/bin" - when: - os: windows store: steam - workingDir: /bin + workingDir: "/bin" steam: id: 220820 Zombie Estate 2: installDir: Zombie Estate 2: {} launch: - /Zombie Estate 2.exe: + "/Zombie Estate 2.exe": - when: - os: windows store: steam @@ -639727,33 +641464,33 @@ Zombie Exodus: installDir: ZombieExodus: {} launch: - /Zombie Exodus.app/Contents/MacOS/Zombie Exodus: + "/Zombie Exodus.app/Contents/MacOS/Zombie Exodus": - when: - os: mac store: steam - /ZombieExodus: + "/ZombieExodus": - when: - os: linux store: steam - /ZombieExodus.exe: + "/ZombieExodus.exe": - when: - os: windows store: steam steam: id: 411570 -'Zombie Exodus: Safe Haven': +"Zombie Exodus: Safe Haven": installDir: Zombie Exodus Safe Haven: {} launch: - /Zombie Exodus Safe Haven.app/Contents/MacOS/Zombie Exodus Safe Haven: + "/Zombie Exodus Safe Haven.app/Contents/MacOS/Zombie Exodus Safe Haven": - when: - os: mac store: steam - /ZombieExodusSafeHaven: + "/ZombieExodusSafeHaven": - when: - os: linux store: steam - /ZombieExodusSafeHaven.exe: + "/ZombieExodusSafeHaven.exe": - when: - os: windows store: steam @@ -639763,7 +641500,7 @@ Zombie Forest 2: installDir: Zombie Forest 2: {} launch: - /zf2.exe: + "/zf2.exe": - when: - os: windows store: steam @@ -639773,7 +641510,7 @@ Zombie Golf: installDir: Zombie Golf: {} launch: - /Zombie Golf.exe: + "/Zombie Golf.exe": - when: - os: windows store: steam @@ -639783,20 +641520,20 @@ Zombie Gotchi: installDir: ZombieGotchi: {} launch: - /zombie.app/Contents/MacOS/zombie: + "/zombie.app/Contents/MacOS/zombie": - when: - os: mac store: steam - /zombie.exe: + "/zombie.exe": - when: - os: windows store: steam - /zombie.x86: + "/zombie.x86": - when: - bit: 32 os: linux store: steam - /zombie.x86_64: + "/zombie.x86_64": - when: - bit: 64 os: linux @@ -639810,28 +641547,28 @@ Zombie Grinder: installDir: ZombieGrinder: {} launch: - /Binary/Game: + "/Binary/Game": - when: - os: linux store: steam - workingDir: /Binary - /Binary/Game.exe: + workingDir: "/Binary" + "/Binary/Game.exe": - when: - os: windows store: steam - workingDir: /Binary - /Binary/ZombieGrinder.app/Contents/MacOS/Game: + workingDir: "/Binary" + "/Binary/ZombieGrinder.app/Contents/MacOS/Game": - when: - os: mac store: steam - workingDir: /Binary + workingDir: "/Binary" steam: id: 263920 Zombie Head: installDir: Zombie Head: {} launch: - /Zombie Head.exe: + "/Zombie Head.exe": - when: - os: windows store: steam @@ -639846,18 +641583,18 @@ Zombie Hotel: installDir: Zombie Hotel_Data: {} launch: - /Zombie Hotel.exe: + "/Zombie Hotel.exe": - when: - bit: 64 os: windows store: steam steam: id: 851570 -'Zombie Hunter, Inc.': +"Zombie Hunter, Inc.": installDir: - 'Zombie Hunter, Inc': {} + "Zombie Hunter, Inc": {} launch: - /Launcher.exe: + "/Launcher.exe": - when: - os: windows store: steam @@ -639867,7 +641604,7 @@ Zombie Island: installDir: Zombie Island: {} launch: - /Zombie Island.exe: + "/Zombie Island.exe": - when: - bit: 64 os: windows @@ -639883,11 +641620,11 @@ Zombie Kill of the Week - Reborn: installDir: Zombie Kill of the Week - Reborn: {} launch: - /reborn.app: + "/reborn.app": - when: - os: mac store: steam - /reborn.exe: + "/reborn.exe": - when: - os: windows store: steam @@ -639897,7 +641634,7 @@ Zombie Killer - Type to Shoot!: installDir: Zombie Killer - Type to Shoot!: {} launch: - /ZombieKiller.exe: + "/ZombieKiller.exe": - when: - os: windows store: steam @@ -639906,11 +641643,11 @@ Zombie Killer - Type to Shoot!: Zombie Killers: steam: id: 1026270 -Zombie Killin': +"Zombie Killin'": installDir: - Zombie Killin': {} + "Zombie Killin'": {} launch: - /Zombie Killin.exe: + "/Zombie Killin.exe": - when: - os: windows store: steam @@ -639920,7 +641657,7 @@ Zombie Killing Simulator: installDir: Zombie Killing Simulator: {} launch: - /Zombie Killing Simulator.exe: + "/Zombie Killing Simulator.exe": - when: - bit: 64 store: steam @@ -639930,11 +641667,11 @@ Zombie Killtime: installDir: Zombie Killtime: {} launch: - /ZombieKilltime.app: + "/ZombieKilltime.app": - when: - os: mac store: steam - /ZombieKilltime.exe: + "/ZombieKilltime.exe": - when: - os: windows store: steam @@ -639944,20 +641681,20 @@ Zombie Lane Survival: installDir: Zombie Lane Survival: {} launch: - /ZLS.app: + "/ZLS.app": - when: - os: mac store: steam - /ZLS.exe: + "/ZLS.exe": - when: - os: windows store: steam - /ZLS.x86: + "/ZLS.x86": - when: - bit: 32 os: linux store: steam - /ZLS.x86_64: + "/ZLS.x86_64": - when: - bit: 64 os: linux @@ -639971,7 +641708,7 @@ Zombie Murder: installDir: Zombie Murder: {} launch: - /win32/ZombieMurder.exe: + "/win32/ZombieMurder.exe": - when: - os: windows store: steam @@ -639981,7 +641718,7 @@ Zombie Murder Hell Arrives: installDir: Zombie Murder Hell Arrives: {} launch: - /ZombieMurderHellArrives.exe: + "/ZombieMurderHellArrives.exe": - when: - os: windows store: steam @@ -639989,22 +641726,22 @@ Zombie Murder Hell Arrives: id: 810720 Zombie Night Terror: files: - /AppData/LocalLow/NoClip/Zombie Night Terror/Users/: + "/AppData/LocalLow/NoClip/Zombie Night Terror/Users/": tags: - save when: - os: windows - /AppData/LocalLow/NoClip/Zombie Night Terror/Users//Settings.set: + "/AppData/LocalLow/NoClip/Zombie Night Terror/Users//Settings.set": tags: - config when: - os: windows - /Library/Application Support/NoClip/Zombie Night Terror/Users: + "/Library/Application Support/NoClip/Zombie Night Terror/Users": tags: - save when: - os: mac - /unity3d/NoClip/Zombie Night Terror/Users: + "/unity3d/NoClip/Zombie Night Terror/Users": tags: - save when: @@ -640014,20 +641751,20 @@ Zombie Night Terror: installDir: Zombie Night Terror: {} launch: - /znt.app: + "/znt.app": - when: - os: mac store: steam - /znt.exe: + "/znt.exe": - when: - os: windows store: steam - /znt.x86: + "/znt.x86": - when: - bit: 32 os: linux store: steam - /znt.x86_64: + "/znt.x86_64": - when: - bit: 64 os: linux @@ -640043,12 +641780,12 @@ Zombie Office Politics: installDir: Zombie Office Politics: {} launch: - /game.exe: + "/game.exe": - when: - bit: 32 os: windows store: steam - /zop.exe: + "/zop.exe": - when: - bit: 64 os: windows @@ -640057,7 +641794,7 @@ Zombie Office Politics: id: 412860 Zombie Panic In Wonderland DX: files: - /AppData/LocalLow/Akaoni Studio/Zombie Panic in Wonderland DX/SaveData/ZPIW_SavedData.dat: + "/AppData/LocalLow/Akaoni Studio/Zombie Panic in Wonderland DX/SaveData/ZPIW_SavedData.dat": tags: - save when: @@ -640065,7 +641802,7 @@ Zombie Panic In Wonderland DX: installDir: Zombie Panic In Wonderland DX: {} launch: - /Zombie Panic in Wonderland DX.exe: + "/Zombie Panic in Wonderland DX.exe": - when: - bit: 64 os: windows @@ -640074,7 +641811,7 @@ Zombie Panic In Wonderland DX: id: 1173850 Zombie Panic! Source: files: - Steam/steamapps/common/Zombie Panic Source/zps/cfg/config_default.cfg: + "Steam/steamapps/common/Zombie Panic Source/zps/cfg/config_default.cfg": tags: - config when: @@ -640083,13 +641820,13 @@ Zombie Panic! Source: installDir: Zombie Panic Source: {} launch: - /zps.exe: - - arguments: '-game zps -steam -secure' + "/zps.exe": + - arguments: "-game zps -steam -secure" when: - os: windows store: steam - /zps.sh: - - arguments: '-game zps -steam -secure' + "/zps.sh": + - arguments: "-game zps -steam -secure" when: - os: linux store: steam @@ -640099,15 +641836,15 @@ Zombie Parking: installDir: Zombie Parking: {} launch: - /ZombieCpp/Binaries/Linux/ZombieCpp-Linux-Shipping: + "/ZombieCpp/Binaries/Linux/ZombieCpp-Linux-Shipping": - when: - os: linux store: steam - /ZombieParking.app: + "/ZombieParking.app": - when: - os: mac store: steam - /Zombie_Parking.exe: + "/Zombie_Parking.exe": - when: - os: windows store: steam @@ -640115,7 +641852,7 @@ Zombie Parking: id: 449090 Zombie Party: files: - /data.win: + "/data.win": tags: - save when: @@ -640123,7 +641860,7 @@ Zombie Party: installDir: Zombie Party: {} launch: - /Zombie_Party_v2.exe: + "/Zombie_Party_v2.exe": - when: - os: windows store: steam @@ -640133,12 +641870,12 @@ Zombie Pinball: installDir: ZombiePinball: {} launch: - /ZombiePinball: + "/ZombiePinball": - when: - os: linux store: steam - /ZombiePinball.exe: - - arguments: '--fullscreen' + "/ZombiePinball.exe": + - arguments: "--fullscreen" when: - os: windows store: steam @@ -640151,8 +641888,8 @@ Zombie Pirates: installDir: Zombie Pirates: {} launch: - /ZombiePirates.exe: - - arguments: '-Launch' + "/ZombiePirates.exe": + - arguments: "-Launch" when: - store: steam steam: @@ -640161,16 +641898,19 @@ Zombie Playground: installDir: Zombie Playground: {} launch: - /zombieplayground.app: + "/zombieplayground.app": - when: - bit: 64 os: mac store: steam - /zombieplayground.exe: + "/zombieplayground.exe": - when: - bit: 32 os: windows store: steam + - bit: 64 + os: windows + store: steam steam: id: 215550 Zombie Pop: @@ -640180,7 +641920,7 @@ Zombie Quarantine: installDir: ZQ-FullPC: {} launch: - /ZQ-FullPC/ZQ.exe: + "/ZQ-FullPC/ZQ.exe": - when: - os: windows store: steam @@ -640190,7 +641930,7 @@ Zombie Rampage: installDir: Zombie Rampage: {} launch: - /zombie_rampage.exe: + "/zombie_rampage.exe": - when: - store: steam steam: @@ -640204,20 +641944,23 @@ Zombie Road Rider: installDir: Zombie Road Rider: {} launch: - /VehicleGame.exe: + "/VehicleGame.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam - /VehicleGame.sh: + "/VehicleGame.sh": - when: - os: linux store: steam steam: id: 1175640 -'Zombie Rollerz: Pinball Heroes': +"Zombie Rollerz: Pinball Heroes": files: - /Daedalic Entertainment GmbH/Zombie Rollerz//playersave_release.txt: + "/Daedalic Entertainment GmbH/Zombie Rollerz//playersave_release.txt": tags: - save when: @@ -640227,18 +641970,18 @@ Zombie Road Rider: installDir: Zombie Rollerz: {} launch: - /Zombie Rollerz.exe: - - arguments: '-noLog' + "/Zombie Rollerz.exe": + - arguments: "-noLog" when: - os: windows store: steam steam: id: 915230 -'Zombie Rush : Extinction': +"Zombie Rush : Extinction": installDir: ZombieRush_Extinction: {} launch: - /ZombieRush_Extinction.exe: + "/ZombieRush_Extinction.exe": - when: - os: windows store: steam @@ -640253,20 +641996,20 @@ Zombie Scrapper: installDir: Zombie Scrapper: {} launch: - /Zombie Scrapper.app: + "/Zombie Scrapper.app": - when: - os: mac store: steam - /Zombie Scrapper.exe: + "/Zombie Scrapper.exe": - when: - os: windows store: steam - /Zombie Scrapper.x86: + "/Zombie Scrapper.x86": - when: - bit: 32 os: linux store: steam - /Zombie Scrapper.x86_64: + "/Zombie Scrapper.x86_64": - when: - bit: 64 os: linux @@ -640282,7 +642025,7 @@ Zombie Serial Killer Incident: installDir: Zombie Serial Killer Incident: {} launch: - /zoren.exe: + "/zoren.exe": - when: - os: windows store: steam @@ -640290,17 +642033,17 @@ Zombie Serial Killer Incident: id: 792230 Zombie Shooter: files: - /ZombieShooter.cfg: + "/ZombieShooter.cfg": tags: - config when: - os: windows - /ZombieShooter Saves: + "/ZombieShooter Saves": tags: - save when: - os: windows - /ZombieShooter Saves/userdata/_global.dat: + "/ZombieShooter Saves/userdata/_global.dat": tags: - config when: @@ -640310,14 +642053,14 @@ Zombie Shooter: installDir: Zombie Shooter: {} launch: - /ZombieShooter.exe: + "/ZombieShooter.exe": - when: - store: steam steam: id: 33130 Zombie Shooter 2: files: - /Zombie Shooter 2 Saves: + "/Zombie Shooter 2 Saves": tags: - config - save @@ -640328,7 +642071,7 @@ Zombie Shooter 2: installDir: Zombie Shooter 2: {} launch: - /ZombieShooter2.exe: + "/ZombieShooter2.exe": - when: - os: windows store: steam @@ -640338,7 +642081,7 @@ Zombie Slayers: installDir: Zombie Slayers: {} launch: - /zombieslayers.exe: + "/zombieslayers.exe": - when: - os: windows store: steam @@ -640348,7 +642091,7 @@ Zombie Soldier: installDir: Zombie Soldier: {} launch: - /ZombieSoldier.exe: + "/ZombieSoldier.exe": - when: - os: windows store: steam @@ -640358,7 +642101,7 @@ Zombie Solitaire: installDir: Zombie Solitaire: {} launch: - /Zombie Solitaire.exe: + "/Zombie Solitaire.exe": - when: - store: steam steam: @@ -640367,7 +642110,7 @@ Zombie Solitaire 2 Chapter 1: installDir: Zombie Solitaire 2 Chapter 1: {} launch: - /ZS2.exe: + "/ZS2.exe": - when: - os: windows store: steam @@ -640377,7 +642120,7 @@ Zombie Solitaire 2 Chapter 2: installDir: Zombie Solitaire 2 Chapter 2: {} launch: - /ZS2-Chapter2.exe: + "/ZS2-Chapter2.exe": - when: - os: windows store: steam @@ -640387,7 +642130,7 @@ Zombie Solitaire 2 Chapter 3: installDir: Zombie Solitaire 2 Chapter 3: {} launch: - /ZS2-Chapter3.exe: + "/ZS2-Chapter3.exe": - when: - os: windows store: steam @@ -640397,11 +642140,11 @@ Zombie Soup: installDir: ZombieSoup: {} launch: - /Zombiesoup.app/Contents/MacOS/Zombiesoup-Mac-Shipping: + "/Zombiesoup.app/Contents/MacOS/Zombiesoup-Mac-Shipping": - when: - os: mac store: steam - /Zombiesoup.exe: + "/Zombiesoup.exe": - when: - os: windows store: steam @@ -640411,8 +642154,11 @@ Zombie Tag Royale: installDir: Zombie Tag Royale: {} launch: - /Zombie Tag Royale.exe: + "/Zombie Tag Royale.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam @@ -640422,7 +642168,7 @@ Zombie Teacher: installDir: Zombie Teacher: {} launch: - /Zombie Teacher 1.6.exe: + "/Zombie Teacher 1.6.exe": - when: - os: windows store: steam @@ -640432,16 +642178,16 @@ Zombie Town: installDir: Zombie Town: {} launch: - /ApocTown.exe: + "/ApocTown.exe": - when: - store: steam steam: id: 666600 -'Zombie Town : Online': +"Zombie Town : Online": installDir: Zombie Town Online: {} launch: - /ZombieTownOnline.exe: + "/ZombieTownOnline.exe": - when: - os: windows store: steam @@ -640451,7 +642197,7 @@ Zombie Town Ahhh: installDir: ZOMBIE TOWN AHHH: {} launch: - /ZOMBIETOWNAHHH.exe: + "/ZOMBIETOWNAHHH.exe": - when: - bit: 64 os: windows @@ -640468,18 +642214,18 @@ Zombie Trigger: Zombie Trigger: {} steam: id: 512830 -'Zombie Tycoon 2: Brainhov''s Revenge': +"Zombie Tycoon 2: Brainhov's Revenge": installDir: ZombieTycoon2: {} launch: - /Binaries/Win32/ZombieGame.exe: - - arguments: '-seekfreeloadingpcconsole' + "/Binaries/Win32/ZombieGame.exe": + - arguments: "-seekfreeloadingpcconsole" when: - bit: 32 os: windows store: steam - /Binaries/Win64/ZombieGame.exe: - - arguments: '-seekfreeloadingpcconsole' + "/Binaries/Win64/ZombieGame.exe": + - arguments: "-seekfreeloadingpcconsole" when: - bit: 64 os: windows @@ -640490,25 +642236,25 @@ Zombie Vikings: installDir: Zombie Vikings: {} launch: - /ZombieVikings.app: + "/ZombieVikings.app": - when: - os: mac store: steam - /ZombieVikings.exe: + "/ZombieVikings.exe": - when: - os: windows store: steam - /ZombieVikings.x86: + "/ZombieVikings.x86": - when: - os: linux store: steam steam: id: 337480 -'Zombie Vikings: Stab-a-thon': +"Zombie Vikings: Stab-a-thon": installDir: Zombie Vikings Stab-a-thon: {} launch: - /Zombie Vikings Stab-a-thon.exe: + "/Zombie Vikings Stab-a-thon.exe": - when: - os: windows store: steam @@ -640518,7 +642264,7 @@ Zombie Waiting: installDir: Zombie Waiting: {} launch: - /zombiewaiting.exe: + "/zombiewaiting.exe": - when: - bit: 64 os: windows @@ -640527,22 +642273,22 @@ Zombie Waiting: id: 680550 Zombie Wars: files: - /HARRY.CFG: + "/HARRY.CFG": tags: - save when: - os: windows - /ZWARS.CFG: + "/ZWARS.CFG": tags: - config when: - os: windows -'Zombie Wars: Invasion': +"Zombie Wars: Invasion": installDir: ZombieWarsInvasion: {} launch: - /bin/ZombieWarsInvasion.exe: - - arguments: '-windowed' + "/bin/ZombieWarsInvasion.exe": + - arguments: "-windowed" when: - os: windows store: steam @@ -640552,7 +642298,7 @@ Zombie Watch: installDir: Zombie Watch: {} launch: - /ZombieWatch.exe: + "/ZombieWatch.exe": - when: - bit: 64 os: windows @@ -640576,7 +642322,7 @@ Zombie horde: installDir: Zombie horde: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -640591,7 +642337,7 @@ Zombie valley: installDir: Zombie valley: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -640609,7 +642355,7 @@ ZombieHunt: installDir: ZombieHunt: {} launch: - /zombiehunt.exe: + "/zombiehunt.exe": - when: - os: windows store: steam @@ -640619,19 +642365,19 @@ ZombieHunterZ: installDir: ZombieHunterZ: {} launch: - /zombiehunterz.exe: + "/zombiehunterz.exe": - when: - store: steam steam: id: 857700 ZombieRun: files: - /.prefs/zombieRun: + "/.prefs/zombieRun": tags: - config when: - os: linux - /.prefs/zombieRunScores: + "/.prefs/zombieRunScores": tags: - save when: @@ -640639,15 +642385,15 @@ ZombieRun: installDir: ZombieRun: {} launch: - /ZombieRun.app: + "/ZombieRun.app": - when: - os: mac store: steam - /ZombieRun.exe: + "/ZombieRun.exe": - when: - os: windows store: steam - /ZombieRun.sh: + "/ZombieRun.sh": - when: - os: linux store: steam @@ -640660,7 +642406,7 @@ ZombieThon: installDir: ZombieThon: {} launch: - /ZombieThon.exe: + "/ZombieThon.exe": - when: - os: windows store: steam @@ -640670,17 +642416,17 @@ ZombieZoid Zenith: installDir: ZombieZoid - Zenith: {} launch: - /Binaries/Win32/ZZZ.exe: + "/Binaries/Win32/ZZZ.exe": - when: - os: windows store: steam steam: id: 403230 -'Zombieland: Double Tap - Road Trip': +"Zombieland: Double Tap - Road Trip": installDir: Zombieland: {} launch: - /Zombieland.exe: + "/Zombieland.exe": - when: - os: windows store: steam @@ -640690,15 +642436,15 @@ Zombien: installDir: Zombien: {} launch: - /Zombien: + "/Zombien": - when: - os: linux store: steam - /Zombien.app/Contents/MacOS/Zombien: + "/Zombien.app/Contents/MacOS/Zombien": - when: - os: mac store: steam - /Zombien.exe: + "/Zombien.exe": - when: - os: windows store: steam @@ -640710,7 +642456,7 @@ Zombies Ate My Neighbors and Ghoul Patrol: installDir: Zombies Ate My Neighbors and Ghoul Patrol: {} launch: - /ZAMN_GP.exe: + "/ZAMN_GP.exe": - when: - bit: 64 os: windows @@ -640721,7 +642467,7 @@ Zombies Berserk: installDir: Zombies Berserk: {} launch: - /Zombies Berserk.exe: + "/Zombies Berserk.exe": - when: - os: windows store: steam @@ -640731,7 +642477,7 @@ Zombies In The Forest: installDir: Zombies In The Forest: {} launch: - /ZombiesInTheForest.exe: + "/ZombiesInTheForest.exe": - when: - bit: 64 os: windows @@ -640742,7 +642488,7 @@ Zombies in the dark: installDir: Zombies in the dark: {} launch: - /ZiD.exe: + "/ZiD.exe": - when: - os: windows store: steam @@ -640757,7 +642503,7 @@ Zombies war: installDir: Zombies war: {} launch: - /mygame.exe: + "/mygame.exe": - when: - os: windows store: steam @@ -640772,15 +642518,15 @@ Zombillie: installDir: Zombillie: {} launch: - /Zombillie.app: + "/Zombillie.app": - when: - os: mac store: steam - /Zombillie.exe: + "/Zombillie.exe": - when: - os: windows store: steam - /Zombillie.x86: + "/Zombillie.x86": - when: - os: linux store: steam @@ -640790,40 +642536,40 @@ Zombiotik: installDir: Zombiotik: {} launch: - /Zombiotik: + "/Zombiotik": - when: - bit: 64 os: linux store: steam - /Zombiotik.app/Contents/MacOS/Zombiotik: + "/Zombiotik.app/Contents/MacOS/Zombiotik": - when: - os: mac store: steam - /Zombiotik.exe: + "/Zombiotik.exe": - when: - os: windows store: steam steam: id: 932950 -'Zombitatos: The End of the PC Master Race': +"Zombitatos: The End of the PC Master Race": steam: id: 508140 -'Zombitatos: Ultimate Game of the Year Edition': +"Zombitatos: Ultimate Game of the Year Edition": steam: id: 682150 Zombo Buster Rising: installDir: Zombo Buster Rising: {} launch: - /zbr.app: + "/zbr.app": - when: - os: mac store: steam - /zbr.exe: + "/zbr.exe": - when: - os: windows store: steam - /zbr.x86: + "/zbr.x86": - when: - os: linux store: steam @@ -640833,7 +642579,7 @@ Zomborg: installDir: Zomborg: {} launch: - /Zomborg.exe: + "/Zomborg.exe": - when: - os: windows store: steam @@ -640846,7 +642592,7 @@ Zomborg: id: 729720 Zombotron: files: - /AppData/LocalLow/AntKarlovGames/Zombotron/Saves: + "/AppData/LocalLow/AntKarlovGames/Zombotron/Saves": tags: - config - save @@ -640857,15 +642603,15 @@ Zombotron: installDir: Zombotron: {} launch: - /Zombotron.app: + "/Zombotron.app": - when: - os: mac store: steam - /Zombotron.exe: + "/Zombotron.exe": - when: - os: windows store: steam - /Zombotron.x86_64: + "/Zombotron.x86_64": - when: - os: linux store: steam @@ -640875,7 +642621,7 @@ Zombow: installDir: Zombow: {} launch: - /Zombow.exe: + "/Zombow.exe": - when: - store: steam steam: @@ -640884,11 +642630,11 @@ Zombusters: installDir: Zombusters: {} launch: - /ZombustersMac: + "/ZombustersMac": - when: - os: mac store: steam - /ZombustersWindows.exe: + "/ZombustersWindows.exe": - when: - os: windows store: steam @@ -640898,7 +642644,7 @@ Zomby Soldier: installDir: ZombySoldier: {} launch: - /Zombysoldier.exe: + "/Zombysoldier.exe": - when: - bit: 64 os: windows @@ -640909,7 +642655,7 @@ Zone 10: installDir: Zone 10: {} launch: - /Zone10.exe: + "/Zone10.exe": - when: - os: windows store: steam @@ -640919,7 +642665,7 @@ Zone 22: installDir: Zone 22: {} launch: - /Z.exe: + "/Z.exe": - when: - os: windows store: steam @@ -640930,7 +642676,7 @@ Zone Anomaly: id: 979830 Zone Raiders: files: - /PLAYER.PLR: + "/PLAYER.PLR": tags: - save when: @@ -640939,20 +642685,23 @@ Zone of Lacryma: installDir: Zone of Lacryma: {} launch: - /nw.exe: + "/nw.exe": - when: - bit: 32 os: windows store: steam - /zoneoflacryma.app/Contents/MacOS/nwjs: + - bit: 64 + os: windows + store: steam + "/zoneoflacryma.app/Contents/MacOS/nwjs": - when: - os: mac store: steam steam: id: 496540 -'Zone of the Enders: The 2nd Runner MARS': +"Zone of the Enders: The 2nd Runner MARS": files: - /Zoe2Mars/SaveData00.zsv: + "/Zoe2Mars/SaveData00.zsv": tags: - config - save @@ -640961,7 +642710,7 @@ Zone of Lacryma: installDir: ZONE OF THE ENDERS THE 2nd RUNNER MARS ANUBIS ZONE OF THE ENDERS MARS: {} launch: - /cygames/launcher/Launcher.exe: + "/cygames/launcher/Launcher.exe": - when: - bit: 64 os: windows @@ -640972,8 +642721,8 @@ Zone4: installDir: Zone4: {} launch: - /Zone4_GSP.exe: - - arguments: '-in-GSPSteam-id-pw-sixtar:0000' + "/Zone4_GSP.exe": + - arguments: "-in-GSPSteam-id-pw-sixtar:0000" when: - os: windows store: steam @@ -640983,7 +642732,7 @@ ZoneDriver: installDir: ZoneDriver: {} launch: - /sZoneDriverClient.exe: + "/sZoneDriverClient.exe": - when: - bit: 64 os: windows @@ -640994,8 +642743,8 @@ Zoo Constructor: installDir: Zoo Constructor: {} launch: - /ZooConstructor-Steam.exe: - - arguments: '-console' + "/ZooConstructor-Steam.exe": + - arguments: "-console" when: - os: windows store: steam @@ -641003,12 +642752,12 @@ Zoo Constructor: id: 868260 Zoo Empire: files: - /CONFIG.DAT: + "/CONFIG.DAT": tags: - config when: - os: windows - /SAVE: + "/SAVE": tags: - save when: @@ -641016,7 +642765,7 @@ Zoo Empire: installDir: Zoo Empire: {} launch: - /ze.exe: + "/ze.exe": - when: - os: windows store: steam @@ -641026,11 +642775,11 @@ Zoo Packs: installDir: Zoo Packs: {} launch: - /ZooPacks.app: + "/ZooPacks.app": - when: - os: mac store: steam - /ZooPacks.exe: + "/ZooPacks.exe": - when: - os: windows store: steam @@ -641040,11 +642789,11 @@ Zoo Park: installDir: Zoo Park: {} launch: - /zoopark.app: + "/zoopark.app": - when: - os: mac store: steam - /zoopark.exe: + "/zoopark.exe": - when: - os: windows store: steam @@ -641054,11 +642803,11 @@ Zoo Rampage: installDir: Zoo Rampage: {} launch: - /rampage.app: + "/rampage.app": - when: - os: mac store: steam - /rampage.exe: + "/rampage.exe": - when: - os: windows store: steam @@ -641066,29 +642815,29 @@ Zoo Rampage: id: 312900 Zoo Tycoon: files: - /Saved Games: + "/Saved Games": tags: - save when: - os: windows - /zoo.ini: + "/zoo.ini": tags: - config when: - os: windows Zoo Tycoon 2: files: - /Microsoft Games/Zoo Tycoon 2: + "/Microsoft Games/Zoo Tycoon 2": tags: - config - save when: - os: windows -'Zoo Tycoon: Ultimate Animal Collection': +"Zoo Tycoon: Ultimate Animal Collection": installDir: Zoo Tycoon: {} launch: - /ZooTycoon.exe: + "/ZooTycoon.exe": - when: - bit: 64 os: windows @@ -641099,7 +642848,7 @@ ZooKeeper: installDir: ZooKeeper: {} launch: - /ZooKeeper.exe: + "/ZooKeeper.exe": - when: - store: steam steam: @@ -641108,7 +642857,7 @@ ZooKeeper Simulator: installDir: ZooKeeperSimulator: {} launch: - /ZooKeeperSimulator.exe: + "/ZooKeeperSimulator.exe": - when: - store: steam steam: @@ -641117,20 +642866,20 @@ Zooicide: installDir: Zooicide: {} launch: - /Zooicide.app: + "/Zooicide.app": - when: - os: mac store: steam - /Zooicide.exe: + "/Zooicide.exe": - when: - os: windows store: steam - /Zooicide.x86: + "/Zooicide.x86": - when: - bit: 32 os: linux store: steam - /Zooicide.x86_64: + "/Zooicide.x86_64": - when: - bit: 64 os: linux @@ -641144,7 +642893,7 @@ Zool Redimensioned: installDir: Zool Redimensioned: {} launch: - /Zool.exe: + "/Zool.exe": - when: - bit: 64 os: windows @@ -641155,7 +642904,7 @@ Zoological Era: installDir: Zoological Era: {} launch: - /Zoological Era.exe: + "/Zoological Era.exe": - when: - os: windows store: steam @@ -641165,7 +642914,7 @@ Zoological Era II: installDir: Zoological Era II: {} launch: - /Zoological Era II.exe: + "/Zoological Era II.exe": - when: - os: windows store: steam @@ -641173,12 +642922,12 @@ Zoological Era II: id: 1128010 Zooloretto: files: - /WhiteBear/Zooloretto/common/commonconfig.xml: + "/WhiteBear/Zooloretto/common/commonconfig.xml": tags: - config when: - os: windows - /WhiteBear/Zooloretto/game/data: + "/WhiteBear/Zooloretto/game/data": tags: - save when: @@ -641186,7 +642935,7 @@ Zooloretto: installDir: Zooloretto: {} launch: - /Zooloretto.exe: + "/Zooloretto.exe": - when: - os: windows store: steam @@ -641201,13 +642950,16 @@ Zoombinis: installDir: Zoombinis: {} launch: - /Zoombinis.app: + "/Zoombinis.app": - when: - bit: 64 os: mac store: steam - /Zoombinis.exe: + "/Zoombinis.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam @@ -641218,21 +642970,21 @@ Zoombinis: - save steam: id: 397430 -Zoop! - Hunter's Grimm: +"Zoop! - Hunter's Grimm": installDir: - Hunter's Grimm: {} + "Hunter's Grimm": {} launch: - /Hunters Grimm.exe: + "/Hunters Grimm.exe": - when: - os: windows store: steam steam: id: 577460 -Zorbit's Orbits: +"Zorbit's Orbits": installDir: Zorbits: {} launch: - /ZorbitsOrbits.exe: + "/ZorbitsOrbits.exe": - when: - os: windows store: steam @@ -641242,13 +642994,13 @@ Zorg The Typing Warrior: installDir: Zorg The Typing Warrior: {} launch: - /ZORG/ZORG.exe: + "/ZORG/ZORG.exe": - when: - os: windows store: steam steam: id: 1102750 -'Zoria: Age of Shattering': +"Zoria: Age of Shattering": gog: id: 1976780992 steam: @@ -641257,16 +643009,16 @@ Zork 1 Remake: installDir: Zork Remake: {} launch: - /ZorkRemake.exe: + "/ZorkRemake.exe": - when: - bit: 64 os: windows store: steam steam: id: 1083700 -'Zork II: The Wizard of Frobozz': +"Zork II: The Wizard of Frobozz": files: - /SAVE: + "/SAVE": tags: - save when: @@ -641276,14 +643028,14 @@ Zork 1 Remake: installDir: Zork Anthology: {} launch: - /SierraLauncher.exe: + "/SierraLauncher.exe": - when: - store: steam steam: id: 570580 -'Zork III: The Dungeon Master': +"Zork III: The Dungeon Master": files: - /SAVE: + "/SAVE": tags: - save when: @@ -641293,25 +643045,25 @@ Zork 1 Remake: installDir: Zork Anthology: {} launch: - /SierraLauncher.exe: + "/SierraLauncher.exe": - when: - store: steam steam: id: 570580 -'Zork Nemesis: The Forbidden Lands': +"Zork Nemesis: The Forbidden Lands": gog: id: 1207658913 installDir: Zork Nemesis The Forbidden Lands: {} launch: - /SierraLauncher.exe: + "/SierraLauncher.exe": - when: - store: steam steam: id: 571060 Zork Zero: files: - /*.SAV: + "/*.SAV": tags: - save when: @@ -641321,26 +643073,26 @@ Zork Zero: installDir: Zork Anthology: {} launch: - /SierraLauncher.exe: + "/SierraLauncher.exe": - when: - store: steam steam: id: 570580 -'Zork: Grand Inquisitor': +"Zork: Grand Inquisitor": gog: id: 1207658948 installDir: Zork Grand Inquisitor: {} launch: - /Zengine.exe: - - arguments: '-f' + "/Zengine.exe": + - arguments: "-f" when: - store: steam steam: id: 570680 -'Zork: The Great Underground Empire': +"Zork: The Great Underground Empire": files: - /SAVE: + "/SAVE": tags: - save when: @@ -641350,7 +643102,7 @@ Zork Zero: installDir: Zork Anthology: {} launch: - /SierraLauncher.exe: + "/SierraLauncher.exe": - when: - store: steam steam: @@ -641358,11 +643110,11 @@ Zork Zero: Zoroastra: steam: id: 918190 -'Zorro: The Chronicles': +"Zorro: The Chronicles": installDir: Zorro the Chronicles: {} launch: - /Zorro_The_Chronicles.exe: + "/Zorro_The_Chronicles.exe": - when: - bit: 64 os: windows @@ -641373,7 +643125,7 @@ ZorroMoro: installDir: ZorroMoro: {} launch: - /ZorroMoro.exe: + "/ZorroMoro.exe": - when: - os: windows store: steam @@ -641386,13 +643138,13 @@ Zortch: installDir: Zortch: {} launch: - /Zortch.exe: + "/Zortch.exe": - when: - os: windows store: steam steam: id: 2443360 -'Zorya: The Celestial Sisters': +"Zorya: The Celestial Sisters": id: steamExtra: - 1426420 @@ -641403,7 +643155,7 @@ Zortch: installDir: Zorya: {} launch: - /Zorya.exe: + "/Zorya.exe": - when: - os: windows store: steam @@ -641413,15 +643165,15 @@ Zotrix: installDir: Zotrix: {} launch: - /Zotrix: + "/Zotrix": - when: - os: linux store: steam - /Zotrix-Mac-EA_Feb18.app: + "/Zotrix-Mac-EA_Feb18.app": - when: - os: mac store: steam - /Zotrix.exe: + "/Zotrix.exe": - when: - os: windows store: steam @@ -641431,28 +643183,28 @@ Zotrix - Solar Division: installDir: SolarDivision: {} launch: - /SolarDivision: + "/SolarDivision": - when: - os: linux store: steam - /SolarDivision.app: + "/SolarDivision.app": - when: - os: mac store: steam - /SolarDivision.exe: + "/SolarDivision.exe": - when: - os: windows store: steam steam: id: 351720 -'Zpeciation: Tough Days (TD)': +"Zpeciation: Tough Days (TD)": steam: id: 591950 Zquirrels Jump: installDir: Zquirrels Jump: {} launch: - /Zquirrels Jump.exe: + "/Zquirrels Jump.exe": - when: - os: windows store: steam @@ -641465,12 +643217,15 @@ Zueirama: installDir: Zueirama: {} launch: - /Zueirama.exe: + "/Zueirama.exe": - when: - bit: 32 os: windows store: steam - /nw: + - bit: 64 + os: windows + store: steam + "/nw": - when: - bit: 64 os: linux @@ -641481,8 +643236,8 @@ Zula: installDir: Zula EU: {} launch: - /zula_launcher.exe: - - arguments: '-Steam' + "/zula_launcher.exe": + - arguments: "-Steam" when: - store: steam steam: @@ -641491,7 +643246,7 @@ Zulin Time: installDir: Zulin Time: {} launch: - /nw.exe: + "/nw.exe": - when: - os: windows store: steam @@ -641501,7 +643256,7 @@ Zulu Response: installDir: Zulu Response: {} launch: - /Binaries/Win32/UDK.exe: + "/Binaries/Win32/UDK.exe": - when: - os: windows store: steam @@ -641509,12 +643264,12 @@ Zulu Response: id: 401250 Zuma: files: - /userdata: + "/userdata": tags: - save when: - os: windows - /Steam/Zuma/userdata: + "/Steam/Zuma/userdata": tags: - save when: @@ -641522,11 +643277,11 @@ Zuma: installDir: Zuma Deluxe: {} launch: - /Zuma Deluxe.app: + "/Zuma Deluxe.app": - when: - os: mac store: steam - /Zuma.exe: + "/Zuma.exe": - when: - os: windows store: steam @@ -641537,33 +643292,34 @@ Zuma Legend VR: Zuma Legend VR: {} steam: id: 935960 -Zuma's Revenge!: +"Zuma's Revenge!": files: - /AtomShockwave/ZumasRevenge/users: + "/AtomShockwave/ZumasRevenge/users": tags: - save when: - os: windows - /PopCap Games/ZumasRevenge/users: + "/PopCap Games/ZumasRevenge/users": tags: - save when: - os: windows - /Steam/ZumasRevenge/users: + "/Steam/ZumasRevenge/users": tags: - save when: - - store: steam - /WildTangent/ZumasRevenge/users: + - os: windows + store: steam + "/WildTangent/ZumasRevenge/users": tags: - save when: - os: windows installDir: - Zuma's Revenge: {} + "Zuma's Revenge": {} launch: - /ZumasRevenge.exe: - - arguments: ' ' + "/ZumasRevenge.exe": + - arguments: " " when: - store: steam registry: @@ -641573,6 +643329,8 @@ Zuma's Revenge!: HKEY_CURRENT_USER/Software/SteamPopCap/ZumasRevenge: tags: - config + when: + - store: steam steam: id: 3620 Zumbi Blocks: @@ -641582,7 +643340,7 @@ Zumou Battoru: installDir: ZumouBattoruRelease: {} launch: - /zumoubattoru.exe: + "/zumoubattoru.exe": - when: - os: windows store: steam @@ -641592,7 +643350,7 @@ Zunius: installDir: Zunius: {} launch: - /zunius.exe: + "/zunius.exe": - when: - bit: 64 os: windows @@ -641601,7 +643359,7 @@ Zunius: id: 1058510 Zup!: files: - /levels.ini: + "/levels.ini": tags: - save when: @@ -641609,7 +643367,7 @@ Zup!: installDir: Zup!: {} launch: - /Zup!.exe: + "/Zup!.exe": - when: - os: windows store: steam @@ -641619,7 +643377,7 @@ Zup! 2: installDir: Zup! 2: {} launch: - /Zup! 2.exe: + "/Zup! 2.exe": - when: - os: windows store: steam @@ -641629,7 +643387,7 @@ Zup! 3: installDir: Zup! 3: {} launch: - /Zup! 3.exe: + "/Zup! 3.exe": - when: - os: windows store: steam @@ -641639,7 +643397,7 @@ Zup! 4: installDir: Zup! 4: {} launch: - /Zup! 4.exe: + "/Zup! 4.exe": - when: - os: windows store: steam @@ -641649,7 +643407,7 @@ Zup! 5: installDir: Zup! 5: {} launch: - /Zup! 5.exe: + "/Zup! 5.exe": - when: - os: windows store: steam @@ -641659,7 +643417,7 @@ Zup! 6: installDir: Zup! 6: {} launch: - /Zup! 6.exe: + "/Zup! 6.exe": - when: - os: windows store: steam @@ -641669,7 +643427,7 @@ Zup! 7: installDir: Zup! 7: {} launch: - /Zup! 7.exe: + "/Zup! 7.exe": - when: - os: windows store: steam @@ -641685,7 +643443,7 @@ Zup! 8: installDir: Zup! 8: {} launch: - /Zup! 8.exe: + "/Zup! 8.exe": - when: - os: windows store: steam @@ -641695,7 +643453,7 @@ Zup! 9: installDir: Zup! 9: {} launch: - /Zup! 9.exe: + "/Zup! 9.exe": - when: - os: windows store: steam @@ -641705,8 +643463,8 @@ Zup! Arena: installDir: Zup! Arena: {} launch: - /Zup! Arena.exe: - - arguments: '-popupwindow' + "/Zup! Arena.exe": + - arguments: "-popupwindow" when: - store: steam steam: @@ -641715,7 +643473,7 @@ Zup! F: installDir: Zup! F: {} launch: - /Zup! F.exe: + "/Zup! F.exe": - when: - os: windows store: steam @@ -641725,14 +643483,14 @@ Zup! S: installDir: Zup! S: {} launch: - /Zup! S.exe: + "/Zup! S.exe": - when: - store: steam steam: id: 617670 Zup! X: files: - /steamapps/common/Zup! X/levels.ini: + "/steamapps/common/Zup! X/levels.ini": tags: - save when: @@ -641741,7 +643499,7 @@ Zup! X: installDir: Zup! X: {} launch: - /Zup! X.exe: + "/Zup! X.exe": - when: - os: windows store: steam @@ -641751,7 +643509,7 @@ Zup! XS: installDir: Zup! XS: {} launch: - /Zup! XS.exe: + "/Zup! XS.exe": - when: - os: windows store: steam @@ -641761,7 +643519,7 @@ Zup! Zero: installDir: Zup! Zero: {} launch: - /Zup! Zero.exe: + "/Zup! Zero.exe": - when: - os: windows store: steam @@ -641771,7 +643529,7 @@ Zup! Zero 2: installDir: Zup! Zero 2: {} launch: - /Zup! Zero 2.exe: + "/Zup! Zero 2.exe": - when: - store: steam steam: @@ -641780,24 +643538,24 @@ Zvezda: installDir: Zvezda: {} launch: - /Zvezda.app: + "/Zvezda.app": - when: - os: mac store: steam - /Zvezda.exe: + "/Zvezda.exe": - when: - os: windows store: steam steam: id: 956870 -'Zwei: The Arges Adventure': +"Zwei: The Arges Adventure": files: - /SaveData//*.dat: + "/SaveData//*.dat": tags: - save when: - os: windows - /SaveData//*.sav: + "/SaveData//*.sav": tags: - save when: @@ -641807,19 +643565,19 @@ Zvezda: installDir: Zwei: {} launch: - /zwei.exe: + "/zwei.exe": - when: - store: steam steam: id: 427680 -'Zwei: The Ilvard Insurrection': +"Zwei: The Ilvard Insurrection": files: - /Saved Games/FALCOM/ZWEI2P: + "/Saved Games/FALCOM/ZWEI2P": tags: - save when: - os: windows - /Saved Games/FALCOM/ZWEI2P/config.ini: + "/Saved Games/FALCOM/ZWEI2P/config.ini": tags: - config when: @@ -641829,16 +643587,16 @@ Zvezda: installDir: Zwei II: {} launch: - /ZWEI2PDX9.exe: + "/ZWEI2PDX9.exe": - when: - store: steam steam: id: 427700 -'Zxill: A Legend of Time': +"Zxill: A Legend of Time": installDir: Zxill A Legend of Time: {} launch: - /Zxill - A Legend of Time.exe: + "/Zxill - A Legend of Time.exe": - when: - os: windows store: steam @@ -641855,7 +643613,7 @@ Zykrun: installDir: ZYKRUN: {} launch: - /ZYKRUN.exe: + "/ZYKRUN.exe": - when: - os: windows store: steam @@ -641865,7 +643623,7 @@ Zyphoid: installDir: Zyphoid: {} launch: - /Zyphoid.exe: + "/Zyphoid.exe": - when: - os: windows store: steam @@ -641875,25 +643633,25 @@ Zyternion: installDir: ZYTERNION: {} launch: - /ZYTERNION.app: + "/ZYTERNION.app": - when: - os: mac store: steam - /ZYTERNION.exe: + "/ZYTERNION.exe": - when: - os: windows store: steam - /ZYTERNION.x86: + "/ZYTERNION.x86": - when: - os: linux store: steam steam: id: 820690 -'Zyxia: Neon Termination': +"Zyxia: Neon Termination": installDir: Zyxia Neon Termination: {} launch: - /ZyxiaNeonTermination.exe: + "/ZyxiaNeonTermination.exe": - when: - os: windows store: steam @@ -641903,7 +643661,7 @@ Zzzz-Zzzz-Zzzz: installDir: Zzzz-Zzzz-Zzzz: {} launch: - /Zzzz-Zzzz-Zzzz.exe: + "/Zzzz-Zzzz-Zzzz.exe": - when: - os: windows store: steam @@ -641913,31 +643671,31 @@ Zzzzz: installDir: zzzzz: {} launch: - /game-linux.AppImage: + "/game-linux.AppImage": - when: - os: linux store: steam - /zzzzz.app: + "/zzzzz.app": - when: - os: mac store: steam - /zzzzz.exe: + "/zzzzz.exe": - when: - os: windows store: steam steam: id: 1154350 -~necromancy~Emily's Escape: +"~necromancy~Emily's Escape": installDir: - ~necromancy~Emily's Escape: {} + "~necromancy~Emily's Escape": {} launch: - /~necromancy~Emily's Escape.exe: + "/~necromancy~Emily's Escape.exe": - when: - os: windows store: steam steam: id: 975120 -'¡Zombies! : Faulty Towers': +"¡Zombies! : Faulty Towers": installDir: FaultyTowersZombies: {} steam: @@ -641946,11 +643704,11 @@ Zzzzz: installDir: elanvital: {} launch: - /mac_201917_95457/elanedit.app: + "/mac_201917_95457/elanedit.app": - when: - os: mac store: steam - /windows_201917_95349/elanedit.exe: + "/windows_201917_95349/elanedit.exe": - when: - os: windows store: steam @@ -641963,7 +643721,7 @@ Zzzzz: installDir: Ope: {} launch: - /OPE.exe: + "/OPE.exe": - when: - bit: 64 os: windows @@ -641972,24 +643730,24 @@ Zzzzz: id: 1170200 ÜberSoldier: files: - /Run/SAVES: + "/Run/SAVES": tags: - save when: - os: windows - /Run/config.ini: + "/Run/config.ini": tags: - config when: - os: windows ÜberSoldier II: files: - /US2: + "/US2": tags: - config when: - os: windows - /US2/saves: + "/US2/saves": tags: - save when: @@ -641997,36 +643755,36 @@ Zzzzz: installDir: Ubersoldier II: {} launch: - /xtend.exe: + "/xtend.exe": - when: - store: steam steam: id: 281410 Černaja Metka: files: - /Orion/TheHunt/Profile: + "/Orion/TheHunt/Profile": tags: - save when: - os: windows -'ΔV: Rings of Saturn': +"ΔV: Rings of Saturn": files: - /dV: + "/dV": tags: - save when: - os: windows - /dV/settings.cfg: + "/dV/settings.cfg": tags: - config when: - os: windows - /dV: + "/dV": tags: - save when: - os: linux - /dV/settings.cfg: + "/dV/settings.cfg": tags: - config when: @@ -642035,13 +643793,12 @@ Zzzzz: id: 1168832459 id: gogExtra: + - 1305560807 - 1481429105 - 1582356324 - 1606695771 - 1680423754 - - 1305560807 - 1937014327 - - 1680423754 - 2029128068 steamExtra: - 949730 @@ -642053,16 +643810,16 @@ Zzzzz: installDir: dV Rings of Saturn: {} launch: - /Delta-V.app: + "/Delta-V.app": - when: - os: mac store: steam - /Delta-V.exe: + "/Delta-V.exe": - when: - bit: 64 os: windows store: steam - /Delta-V.x86_64: + "/Delta-V.x86_64": - when: - bit: 64 os: linux @@ -642076,36 +643833,36 @@ Zzzzz: installDir: Atlantis: {} launch: - /Atlantis.exe: + "/Atlantis.exe": - when: - os: windows store: steam - /Drevn.exe: + "/Drevn.exe": - when: - os: windows store: steam steam: id: 925640 -'В тылу врага: Диверсанты 2': +"В тылу врага: Диверсанты 2": files: - /profiles/*/save: + "/profiles/*/save": tags: - save when: - os: windows - /profiles/*/settings: + "/profiles/*/settings": tags: - config when: - os: windows -'В тылу врага: Диверсанты 3': +"В тылу врага: Диверсанты 3": files: - /profiles/*/save: + "/profiles/*/save": tags: - save when: - os: windows - /profiles/*/settings: + "/profiles/*/settings": tags: - config when: @@ -642114,7 +643871,7 @@ Zzzzz: installDir: VZLOM JOPI: {} launch: - /VZLOM_JOPI.exe: + "/VZLOM_JOPI.exe": - when: - bit: 64 os: windows @@ -642125,20 +643882,20 @@ Zzzzz: installDir: WarriorHinora: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam steam: id: 1031770 -'ДОКА 2! - КРОВЬ, КИШКИ, ГОЛЫЕ СИСЬКИ': +"ДОКА 2! - КРОВЬ, КИШКИ, ГОЛЫЕ СИСЬКИ": steam: id: 980060 ЕСТЬ ДВА СТУЛА: installDir: ЕСТЬ ДВА СТУЛА: {} launch: - /Есть Два Стула.exe: + "/Есть Два Стула.exe": - when: - bit: 64 os: windows @@ -642152,7 +643909,7 @@ Zzzzz: installDir: МЫЛО УРОНИЛ: {} launch: - /YRONIL MILO.exe: + "/YRONIL MILO.exe": - when: - os: windows store: steam @@ -642162,19 +643919,19 @@ Zzzzz: installDir: Ne Padai: {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: id: 1056010 -'Путин против Инопланетян: На Закате Справедливости (Linehot Putin: All Stars)': +"Путин против Инопланетян: На Закате Справедливости (Linehot Putin: All Stars)": steam: id: 1014960 Россия 2019: installDir: rus_build64: {} launch: - /RussiaRogueLike.exe: + "/RussiaRogueLike.exe": - when: - bit: 64 os: windows @@ -642188,33 +643945,33 @@ Zzzzz: installDir: Самозванец: {} launch: - /Samozvanec.exe: + "/Samozvanec.exe": - when: - store: steam steam: id: 1123510 Симулятор Сидения у Подъезда: installDir: - ' Сидения у Подъезда': {} + " Сидения у Подъезда": {} steam: id: 1031920 -'Смешарики: Параллельные миры': +"Смешарики: Параллельные миры": files: - /config.info: + "/config.info": tags: - config when: - os: windows - /Смешарики - Параллельные миры/settings.sav: + "/Смешарики - Параллельные миры/settings.sav": tags: - save when: - os: windows Тридевятые земли(Свет или тьма): installDir: - ' Тридевятые земли(Свет или тьма)': {} + " Тридевятые земли(Свет или тьма)": {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -642224,22 +643981,22 @@ Zzzzz: installDir: ShP: {} launch: - /ShP-7ENG.exe: + "/ShP-7ENG.exe": - when: - os: windows store: steam steam: id: 727640 -'ШХД: ЗИМА / IT''S WINTER': +"ШХД: ЗИМА / IT'S WINTER": installDir: - It's Winter: {} + "It's Winter": {} launch: - /It's Winter.app: + "/It's Winter.app": - when: - os: mac store: steam - workingDir: /It's Winter - /It's Winter.exe: + workingDir: "/It's Winter" + "/It's Winter.exe": - when: - os: windows store: steam @@ -642249,7 +644006,7 @@ Zzzzz: installDir: €100: {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: @@ -642258,7 +644015,7 @@ Zzzzz: installDir: Akashicforce: {} launch: - /Akashicforce.exe: + "/Akashicforce.exe": - when: - store: steam steam: @@ -642267,20 +644024,20 @@ Zzzzz: installDir: Fallalypse Disconnect: {} launch: - /Fallalypse Disconnect.app/Contents/MacOS/Fallalypse Disconnect: + "/Fallalypse Disconnect.app/Contents/MacOS/Fallalypse Disconnect": - when: - os: mac store: steam - /Fallalypse Disconnect.exe: + "/Fallalypse Disconnect.exe": - when: - os: windows store: steam - /Fallalypse Disconnect.linux/Fallalypse Disconnect.x86: + "/Fallalypse Disconnect.linux/Fallalypse Disconnect.x86": - when: - bit: 32 os: linux store: steam - /Fallalypse Disconnect.linux/Fallalypse Disconnect.x86_64: + "/Fallalypse Disconnect.linux/Fallalypse Disconnect.x86_64": - when: - bit: 64 os: linux @@ -642291,20 +644048,20 @@ Zzzzz: installDir: The Tactics of War: {} launch: - /The Tactics of War.app/Contents/MacOS/The Tactics of War: + "/The Tactics of War.app/Contents/MacOS/The Tactics of War": - when: - os: mac store: steam - /The Tactics of War.exe: + "/The Tactics of War.exe": - when: - os: windows store: steam - /The Tactics of War.linux/The Tactics of War.x86: + "/The Tactics of War.linux/The Tactics of War.x86": - when: - bit: 32 os: linux store: steam - /The Tactics of War.linux/The Tactics of War.x86_64: + "/The Tactics of War.linux/The Tactics of War.x86_64": - when: - bit: 64 os: linux @@ -642315,15 +644072,15 @@ Zzzzz: installDir: Johnny Rocket: {} launch: - /Johnny Rocket.exe: + "/Johnny Rocket.exe": - when: - os: windows store: steam - /JohnnyRocket.app/Contents/MacOS/JohnnyRocket: + "/JohnnyRocket.app/Contents/MacOS/JohnnyRocket": - when: - os: mac store: steam - /JohnnyRocket.linux/JohnnyRocket.x86_64: + "/JohnnyRocket.linux/JohnnyRocket.x86_64": - when: - os: linux store: steam @@ -642333,7 +644090,7 @@ Zzzzz: installDir: JINKELA: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -642343,11 +644100,11 @@ Zzzzz: installDir: farewellplanet: {} launch: - /farewellplanet.app/Contents/MacOS/farewellplanet: + "/farewellplanet.app/Contents/MacOS/farewellplanet": - when: - os: mac store: steam - /farewellplanet.exe: + "/farewellplanet.exe": - when: - os: windows store: steam @@ -642357,11 +644114,11 @@ Zzzzz: installDir: KiritanVSKanitan: {} launch: - /KiritanVSKanitan.app: + "/KiritanVSKanitan.app": - when: - os: mac store: steam - /KiritanVSKanitan.exe: + "/KiritanVSKanitan.exe": - when: - os: windows store: steam @@ -642371,7 +644128,7 @@ Zzzzz: installDir: Barbarossa: {} launch: - /contents/Game.exe: + "/contents/Game.exe": - when: - os: windows store: steam @@ -642381,7 +644138,7 @@ Zzzzz: installDir: MAZEKOTOWER: {} launch: - /MAZEKOTOWER.exe: + "/MAZEKOTOWER.exe": - when: - os: windows store: steam @@ -642391,7 +644148,7 @@ Zzzzz: installDir: Elsword: {} launch: - /ESSTEAM.exe: + "/ESSTEAM.exe": - when: - os: windows store: steam @@ -642401,7 +644158,7 @@ Zzzzz: installDir: シニサギ: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -642411,12 +644168,12 @@ Zzzzz: installDir: BugAviatorsinThemePark: {} launch: - /Bug Aviators in Theme Park.exe: + "/Bug Aviators in Theme Park.exe": - when: - bit: 64 os: windows store: steam - /テーマパークの虫.exe: + "/テーマパークの虫.exe": - when: - bit: 64 os: windows @@ -642427,7 +644184,7 @@ Zzzzz: installDir: unbind: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: @@ -642436,7 +644193,7 @@ Zzzzz: installDir: bugdas: {} launch: - /BUGDASU.exe: + "/BUGDASU.exe": - when: - bit: 64 os: windows @@ -642447,7 +644204,7 @@ Zzzzz: installDir: パトルの軍事博物館3 超絶無敵究極兵器: {} launch: - /contents/Game.exe: + "/contents/Game.exe": - when: - store: steam steam: @@ -642456,12 +644213,12 @@ Zzzzz: installDir: PunicWars: {} launch: - /OSX.app/Contents/MacOS/ポエニ戦争: - - arguments: '-screen-width 1778 -screen-height 1000' + "/OSX.app/Contents/MacOS/ポエニ戦争": + - arguments: "-screen-width 1778 -screen-height 1000" when: - os: mac store: steam - /ポエニ戦争.exe: + "/ポエニ戦争.exe": - when: - bit: 64 os: windows @@ -642472,11 +644229,11 @@ Zzzzz: installDir: lifeone: {} launch: - /Game.app: + "/Game.app": - when: - os: mac store: steam - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -642486,11 +644243,11 @@ Zzzzz: installDir: 一字不落: {} launch: - /Chinatris.app/Contents/MacOS/Chinatris: + "/Chinatris.app/Contents/MacOS/Chinatris": - when: - os: mac store: steam - /Chinatris.exe: + "/Chinatris.exe": - when: - os: windows store: steam @@ -642500,7 +644257,7 @@ Zzzzz: installDir: 一方灵田: {} launch: - /ImmortalLife.exe: + "/ImmortalLife.exe": - when: - bit: 64 os: windows @@ -642511,7 +644268,7 @@ Zzzzz: installDir: Kwaidan School: {} launch: - /school.exe: + "/school.exe": - when: - os: windows store: steam @@ -642521,7 +644278,7 @@ Zzzzz: installDir: 三和大神: {} launch: - /GodsInSanhe.exe: + "/GodsInSanhe.exe": - when: - store: steam steam: @@ -642530,15 +644287,15 @@ Zzzzz: installDir: Three_Kingdom_Legend: {} launch: - /Three_Kingdom_Legend.app: + "/Three_Kingdom_Legend.app": - when: - os: mac store: steam - /Three_Kingdom_Legend.exe: + "/Three_Kingdom_Legend.exe": - when: - os: windows store: steam - /Three_Kingdom_Legend.sh: + "/Three_Kingdom_Legend.sh": - when: - os: linux store: steam @@ -642548,7 +644305,7 @@ Zzzzz: installDir: 三国佣兵传奇: {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: @@ -642557,7 +644314,7 @@ Zzzzz: installDir: sanguos2: {} launch: - /三国时代2.exe: + "/三国时代2.exe": - when: - bit: 64 os: windows @@ -642568,7 +644325,7 @@ Zzzzz: installDir: sgyxz: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -642581,7 +644338,7 @@ Zzzzz: installDir: 下一层的倒悬塔 Forever War: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: @@ -642590,7 +644347,7 @@ Zzzzz: installDir: 不可思议佣兵团: {} launch: - /IncredibleCrewPC.exe: + "/IncredibleCrewPC.exe": - when: - os: windows store: steam @@ -642600,11 +644357,11 @@ Zzzzz: installDir: Unconquered: {} launch: - /Mac.app: + "/Mac.app": - when: - os: mac store: steam - /UnconqueredCastle.exe: + "/UnconqueredCastle.exe": - when: - os: windows store: steam @@ -642612,9 +644369,9 @@ Zzzzz: id: 873490 世界尽头的蔷薇花园: installDir: - Rose Garden at the World's End: {} + "Rose Garden at the World's End": {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -642627,7 +644384,7 @@ Zzzzz: installDir: 东方幻昼梦~ Touhou Fantasy Day: {} launch: - /THFantasyDay.exe: + "/THFantasyDay.exe": - when: - os: windows store: steam @@ -642643,19 +644400,19 @@ Zzzzz: installDir: TouHou Nil Soul: {} launch: - /Touhou Nil Soul.exe: + "/Touhou Nil Soul.exe": - when: - bit: 64 os: windows store: steam - workingDir: /Touhou Nil Soul_Data + workingDir: "/Touhou Nil Soul_Data" steam: id: 941300 东方百问-TouHouAsked: installDir: TouHouAsked: {} launch: - /东方百问~TouHouAsked.exe: + "/东方百问~TouHouAsked.exe": - when: - store: steam steam: @@ -642664,10 +644421,10 @@ Zzzzz: installDir: Ultimate Vitality of Imagination: {} launch: - /THUVoI.d3d11.exe: + "/THUVoI.d3d11.exe": - when: - store: steam - /THUVoI.exe: + "/THUVoI.exe": - when: - store: steam steam: @@ -642676,7 +644433,7 @@ Zzzzz: installDir: 中华三国志: {} launch: - /WorldOfTheThreeKingdoms.exe: + "/WorldOfTheThreeKingdoms.exe": - when: - bit: 64 os: windows @@ -642690,23 +644447,23 @@ Zzzzz: installDir: crows: {} launch: - /crows.exe: + "/crows.exe": - when: - os: windows store: steam steam: id: 870100 -乔乔的铁拳 Joe's Fists: +"乔乔的铁拳 Joe's Fists": installDir: - 乔乔的铁拳 Joe's Fists: {} + "乔乔的铁拳 Joe's Fists": {} steam: id: 1200060 -'九劫曲:诅咒之地 NineTrials Test Server': +"九劫曲:诅咒之地 NineTrials Test Server": installDir: NineTrialsTestServer: {} launch: - /NineTrials/Binaries/Win64/NineTrials.exe: - - arguments: '-ServerIP=120.78.152.44:8990' + "/NineTrials/Binaries/Win64/NineTrials.exe": + - arguments: "-ServerIP=120.78.152.44:8990" when: - bit: 64 os: windows @@ -642717,7 +644474,7 @@ Zzzzz: installDir: NineTrials: {} launch: - /NineTrials/Binaries/Win64/NineTrials.exe: + "/NineTrials/Binaries/Win64/NineTrials.exe": - when: - bit: 64 os: windows @@ -642731,7 +644488,7 @@ Zzzzz: installDir: 九霄缳神记: {} launch: - /九霄缳神记.exe: + "/九霄缳神记.exe": - when: - os: windows store: steam @@ -642741,7 +644498,7 @@ Zzzzz: installDir: StoryWalker: {} launch: - /StoryWalker.exe: + "/StoryWalker.exe": - when: - bit: 64 os: windows @@ -642752,7 +644509,7 @@ Zzzzz: installDir: The Clouds Travel Notes: {} launch: - /The Clouds Travel Notes.exe: + "/The Clouds Travel Notes.exe": - when: - os: windows store: steam @@ -642762,7 +644519,7 @@ Zzzzz: installDir: FiveDayEscape: {} launch: - /FiveDayEscape.exe: + "/FiveDayEscape.exe": - when: - os: windows store: steam @@ -642780,16 +644537,16 @@ Zzzzz: installDir: 人间 The Lost We Lost: {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: id: 1057680 人间之屑-艺术之名(I am the dirt-for art): installDir: - I'm the dirt - for art: {} + "I'm the dirt - for art": {} launch: - /I am the dirt-for art.exe: + "/I am the dirt-for art.exe": - when: - bit: 64 os: windows @@ -642800,7 +644557,7 @@ Zzzzz: installDir: HarmonyStory: {} launch: - /P5_HarmonyStory.exe: + "/P5_HarmonyStory.exe": - when: - os: windows store: steam @@ -642810,8 +644567,8 @@ Zzzzz: installDir: Taoist Immortal: {} launch: - /TaoistImmortal.exe: - - arguments: '-windowed' + "/TaoistImmortal.exe": + - arguments: "-windowed" when: - bit: 64 os: windows @@ -642825,7 +644582,7 @@ Zzzzz: installDir: ISESHIMA STORY: {} launch: - /ISESHIMA STORY.exe: + "/ISESHIMA STORY.exe": - when: - os: windows store: steam @@ -642835,7 +644592,7 @@ Zzzzz: installDir: The Heroic Legend Of Eagarlnia: {} launch: - /Eagarlnia.exe: + "/Eagarlnia.exe": - when: - os: windows store: steam @@ -642851,7 +644608,7 @@ Zzzzz: installDir: yongbingzhange: {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: @@ -642860,7 +644617,7 @@ Zzzzz: installDir: RD: {} launch: - /KatanaKami.exe: + "/KatanaKami.exe": - when: - bit: 64 os: windows @@ -642871,7 +644628,7 @@ Zzzzz: installDir: AoHuang: {} launch: - /AoHuang.exe: + "/AoHuang.exe": - when: - os: windows store: steam @@ -642881,7 +644638,7 @@ Zzzzz: installDir: 元素战争 Elemental war: {} launch: - /Elemental war.exe: + "/Elemental war.exe": - when: - os: windows store: steam @@ -642894,7 +644651,7 @@ Zzzzz: installDir: GuangYuAn: {} launch: - /光与暗之恋曲.exe: + "/光与暗之恋曲.exe": - when: - os: windows store: steam @@ -642904,11 +644661,11 @@ Zzzzz: installDir: 克苏鲁异闻录: {} launch: - /Lus.app: + "/Lus.app": - when: - os: mac store: steam - /Lus.exe: + "/Lus.exe": - when: - os: windows store: steam @@ -642919,7 +644676,7 @@ Zzzzz: id: 1024440 全托教师: files: - /userdata//1785750: + "/userdata//1785750": tags: - save when: @@ -642927,7 +644684,7 @@ Zzzzz: installDir: HostingTheTeacher: {} launch: - /HostingTheTeacher.exe: + "/HostingTheTeacher.exe": - when: - store: steam steam: @@ -642936,7 +644693,7 @@ Zzzzz: installDir: bzqj: {} launch: - /bzqj.exe: + "/bzqj.exe": - when: - os: windows store: steam @@ -642949,7 +644706,7 @@ Zzzzz: installDir: Six-steps Mystery: {} launch: - /SixStepsMystery.exe: + "/SixStepsMystery.exe": - when: - os: windows store: steam @@ -642960,17 +644717,17 @@ Zzzzz: id: 962770 关于我被小学女生绑架这件事: installDir: - 'Kid,napper': {} + "Kid,napper": {} launch: - '/Kid,napper.app': + "/Kid,napper.app": - when: - os: mac store: steam - '/Kid,napper.exe': + "/Kid,napper.exe": - when: - os: windows store: steam - '/Kid,napper.sh': + "/Kid,napper.sh": - when: - os: linux store: steam @@ -642980,21 +644737,21 @@ Zzzzz: installDir: TFK Faculty: {} launch: - /TFK_Faculty.app: + "/TFK_Faculty.app": - when: - os: mac store: steam - /TFK_Faculty.exe: + "/TFK_Faculty.exe": - when: - os: windows store: steam steam: id: 1096330 -冒险村的商人日记/Businessman's Diary of Dungeon Village: +"冒险村的商人日记/Businessman's Diary of Dungeon Village": installDir: - Businessman's Diary of Dungeon Village: {} + "Businessman's Diary of Dungeon Village": {} launch: - /Businessman's Diary.exe: + "/Businessman's Diary.exe": - when: - os: windows store: steam @@ -643002,9 +644759,9 @@ Zzzzz: id: 1014360 军团战棋 Legion War: installDir: - ' Legion War': {} + " Legion War": {} launch: - /LegionWar.exe: + "/LegionWar.exe": - when: - os: windows store: steam @@ -643014,7 +644771,7 @@ Zzzzz: installDir: KUNG FU LEGEND32c: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -643027,7 +644784,7 @@ Zzzzz: installDir: kxd: {} launch: - /WindowsNoEditor/Client/Binaries/Win64/CleanThirdPerson-Win64-Shipping.exe: + "/WindowsNoEditor/Client/Binaries/Win64/CleanThirdPerson-Win64-Shipping.exe": - when: - bit: 64 os: windows @@ -643038,7 +644795,7 @@ Zzzzz: installDir: 出门: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: @@ -643050,7 +644807,7 @@ Zzzzz: installDir: 刀锋突袭: {} launch: - /刀锋突袭.exe: + "/刀锋突袭.exe": - when: - store: steam steam: @@ -643064,11 +644821,11 @@ Zzzzz: installDir: AG: {} launch: - /AG.exe: + "/AG.exe": - when: - os: windows store: steam - /UN/i wanna be the Creator.exe: + "/UN/i wanna be the Creator.exe": - when: - os: windows store: steam @@ -643078,7 +644835,7 @@ Zzzzz: installDir: The Flower on Christmas Eve: {} launch: - /TheFloweronChristmasEve.exe: + "/TheFloweronChristmasEve.exe": - when: - os: windows store: steam @@ -643088,11 +644845,11 @@ Zzzzz: installDir: bz5: {} launch: - /mac.app/Contents/MacOS/σê½Σ╗ÑΣ╕║Σ╜áµÿ»σ╝ÇσÅæΦÇàµêæσ░▒Σ╕ìµòóµëôΣ╜á: + "/mac.app/Contents/MacOS/σê½Σ╗ÑΣ╕║Σ╜áµÿ»σ╝ÇσÅæΦÇàµêæσ░▒Σ╕ìµòóµëôΣ╜á": - when: - os: mac store: steam - /win/σê½Σ╗ÑΣ╕║Σ╜áµÿ»σ╝ÇσÅæΦÇàµêæσ░▒Σ╕ìµòóµëôΣ╜á.exe: + "/win/σê½Σ╗ÑΣ╕║Σ╜áµÿ»σ╝ÇσÅæΦÇàµêæσ░▒Σ╕ìµòóµëôΣ╜á.exe": - when: - os: windows store: steam @@ -643102,7 +644859,7 @@ Zzzzz: installDir: 剑魄: {} launch: - /SoulOfBlade.exe: + "/SoulOfBlade.exe": - when: - bit: 64 os: windows @@ -643116,7 +644873,7 @@ Zzzzz: installDir: Tlicolity Eyes: {} launch: - /SunG.exe: + "/SunG.exe": - when: - bit: 64 os: windows @@ -643126,11 +644883,11 @@ Zzzzz: 勇士HERO: steam: id: 1169400 -'勇者有点太嚣张。G(No Hero Allowed: No Puzzle Either!)': +"勇者有点太嚣张。G(No Hero Allowed: No Puzzle Either!)": installDir: Yu-Nama: {} launch: - /Yu-Nama.exe: + "/Yu-Nama.exe": - when: - os: windows store: steam @@ -643146,24 +644903,24 @@ Zzzzz: installDir: 匿名信:隐匿者 Anonymous Letter :Prowler: {} launch: - /隐匿者.exe: + "/隐匿者.exe": - when: - store: steam steam: id: 1216700 十天的溫度: files: - /savedata/*.bmp: + "/savedata/*.bmp": tags: - save when: - os: windows - /savedata/*.ksd: + "/savedata/*.ksd": tags: - save when: - os: windows - /savedata/krenvprf.kep: + "/savedata/krenvprf.kep": tags: - config when: @@ -643171,7 +644928,7 @@ Zzzzz: installDir: Connection: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: @@ -643180,7 +644937,7 @@ Zzzzz: installDir: No2119: {} launch: - /TenDays.exe: + "/TenDays.exe": - when: - os: windows store: steam @@ -643190,11 +644947,11 @@ Zzzzz: installDir: 千面_Melancholy: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam - /千面.app: + "/千面.app": - when: - os: mac store: steam @@ -643202,9 +644959,9 @@ Zzzzz: id: 1168470 午餐13: installDir: - '13': {} + "13": {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -643214,7 +644971,7 @@ Zzzzz: installDir: 单身狗的最后机会: {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: @@ -643225,15 +644982,15 @@ Zzzzz: 卡哇伊女孩 ~ Kawaii Girls (づ。◕‿‿◕。)づ: steam: id: 966230 -'卡片地下城Card Monsters: Dungeon': +"卡片地下城Card Monsters: Dungeon": installDir: Card Dungeon: {} launch: - /CardDungeon.app: + "/CardDungeon.app": - when: - os: mac store: steam - /CardDungeon.exe: + "/CardDungeon.exe": - when: - os: windows store: steam @@ -643243,7 +645000,7 @@ Zzzzz: installDir: 原体: {} launch: - /FPSDemo.exe: + "/FPSDemo.exe": - when: - os: windows store: steam @@ -643253,7 +645010,7 @@ Zzzzz: installDir: StoneAge: {} launch: - /StoneAge.exe: + "/StoneAge.exe": - when: - os: windows store: steam @@ -643263,7 +645020,7 @@ Zzzzz: installDir: CounterrealsticSyndrome: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -643273,36 +645030,36 @@ Zzzzz: installDir: Variables: {} launch: - /Variables.exe: + "/Variables.exe": - when: - os: windows store: steam steam: id: 1054800 -'叙事曲2:星空下的诺言 / Ballade2: the Celestial Promise': +"叙事曲2:星空下的诺言 / Ballade2: the Celestial Promise": installDir: Ballade2 the Celestial Promise: {} launch: - /Ballade2.app/Contents/MacOS/Ballade2: + "/Ballade2.app/Contents/MacOS/Ballade2": - when: - os: mac store: steam - /Ballade2.exe: + "/Ballade2.exe": - when: - bit: 64 os: windows store: steam steam: id: 1080990 -'叙事曲:难忘的回忆 / Ballade: with Memories': +"叙事曲:难忘的回忆 / Ballade: with Memories": installDir: Ballade with Memories: {} launch: - /Ballade1.app/Contents/MacOS/Ballade1: + "/Ballade1.app/Contents/MacOS/Ballade1": - when: - os: mac store: steam - /Ballade1.exe: + "/Ballade1.exe": - when: - bit: 64 os: windows @@ -643318,11 +645075,11 @@ Zzzzz: installDir: CohabitationGuide: {} launch: - /TJZN.app/Contents/MacOS/TJZN: + "/TJZN.app/Contents/MacOS/TJZN": - when: - os: mac store: steam - /TJZN.exe: + "/TJZN.exe": - when: - os: windows store: steam @@ -643332,7 +645089,7 @@ Zzzzz: installDir: 名媛女友-Girlfriend invites: {} launch: - /Girlfriend invites.exe: + "/Girlfriend invites.exe": - when: - os: windows store: steam @@ -643342,7 +645099,7 @@ Zzzzz: installDir: Sequela: {} launch: - /HYZ.exe: + "/HYZ.exe": - when: - os: windows store: steam @@ -643355,7 +645112,7 @@ Zzzzz: installDir: Tunshi Kongming Legends: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -643365,7 +645122,7 @@ Zzzzz: installDir: 吾光笔记: {} launch: - /吾光笔记.exe: + "/吾光笔记.exe": - when: - store: steam steam: @@ -643374,8 +645131,8 @@ Zzzzz: installDir: Death angel: {} launch: - /Game.exe: - - arguments: '-window' + "/Game.exe": + - arguments: "-window" when: - store: steam steam: @@ -643384,25 +645141,25 @@ Zzzzz: installDir: myzg770: {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: id: 2015770 咔叽探险队 Kaki Raid: installDir: - ' Kaki Raid': {} + " Kaki Raid": {} launch: - /KakiRaid.exe: + "/KakiRaid.exe": - when: - store: steam steam: id: 1137180 喵可莉的兔玩偶: installDir: - Nyakori's Rabbit Doll: {} + "Nyakori's Rabbit Doll": {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -643423,7 +645180,7 @@ Zzzzz: installDir: Four saints legend: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -643433,7 +645190,7 @@ Zzzzz: installDir: TheFourSeasons: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -643443,7 +645200,7 @@ Zzzzz: installDir: 回门 Way Back Home: {} launch: - /WayBackHome.exe: + "/WayBackHome.exe": - when: - os: windows store: steam @@ -643453,7 +645210,7 @@ Zzzzz: installDir: OO.Inc: {} launch: - /OO.Inc.exe: + "/OO.Inc.exe": - when: - os: windows store: steam @@ -643463,9 +645220,11 @@ Zzzzz: installDir: SHENSHAN: {} launch: - /SHENSHAN.exe: - - arguments: '-windowed' + "/SHENSHAN.exe": + - arguments: "-windowed" when: + - os: windows + store: steam - bit: 32 os: windows store: steam @@ -643475,7 +645234,7 @@ Zzzzz: installDir: SJU: {} launch: - /SJU.exe: + "/SJU.exe": - when: - os: windows store: steam @@ -643485,7 +645244,7 @@ Zzzzz: installDir: Elearning Development Intern: {} launch: - /Elearning Development Intern.exe: + "/Elearning Development Intern.exe": - when: - bit: 64 os: windows @@ -643499,7 +645258,7 @@ Zzzzz: installDir: Metro: {} launch: - /Metro.exe: + "/Metro.exe": - when: - os: windows store: steam @@ -643509,7 +645268,7 @@ Zzzzz: installDir: ProjTank: {} launch: - /ProjSdtx.exe: + "/ProjSdtx.exe": - when: - os: windows store: steam @@ -643519,7 +645278,7 @@ Zzzzz: installDir: sunaonaakazukin: {} launch: - /sunaonaakazukin.exe: + "/sunaonaakazukin.exe": - when: - os: windows store: steam @@ -643529,11 +645288,11 @@ Zzzzz: installDir: DemonGame: {} launch: - /DemonGame/DemonGame.app: + "/DemonGame/DemonGame.app": - when: - os: mac store: steam - /DemonGame/城堡传说:魔王觉醒.exe: + "/DemonGame/城堡传说:魔王觉醒.exe": - when: - os: windows store: steam @@ -643543,7 +645302,7 @@ Zzzzz: installDir: HuohuaiProject: {} launch: - /HuohuaiProject.exe: + "/HuohuaiProject.exe": - when: - store: steam steam: @@ -643552,7 +645311,7 @@ Zzzzz: installDir: tower: {} launch: - /tower.exe: + "/tower.exe": - when: - store: steam steam: @@ -643561,7 +645320,7 @@ Zzzzz: installDir: Dice&Fighter: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: @@ -643570,7 +645329,7 @@ Zzzzz: installDir: mosesanguo: {} launch: - /mosesanguo.exe: + "/mosesanguo.exe": - when: - bit: 64 os: windows @@ -643581,7 +645340,7 @@ Zzzzz: installDir: Paralines The Last paladin: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -643591,7 +645350,7 @@ Zzzzz: installDir: NightHoming: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -643604,7 +645363,7 @@ Zzzzz: installDir: 夜雪冰娇: {} launch: - /夜雪冰娇.exe: + "/夜雪冰娇.exe": - when: - os: windows store: steam @@ -643614,11 +645373,11 @@ Zzzzz: installDir: Windows_Content: {} launch: - /Mac_Content.app/Contents/MacOS/Desktop: + "/Mac_Content.app/Contents/MacOS/Desktop": - when: - os: mac store: steam - /Windows_Content/DreamStory.exe: + "/Windows_Content/DreamStory.exe": - when: - os: windows store: steam @@ -643628,7 +645387,7 @@ Zzzzz: installDir: 夢限ノ夜: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -643644,7 +645403,7 @@ Zzzzz: installDir: BigAgeSG: {} launch: - /BigAgeSG/BigAgeSG.exe: + "/BigAgeSG/BigAgeSG.exe": - when: - store: steam steam: @@ -643653,7 +645412,7 @@ Zzzzz: installDir: GrandLordAuto: {} launch: - /GrandLordAuto.exe: + "/GrandLordAuto.exe": - when: - os: windows store: steam @@ -643663,10 +645422,10 @@ Zzzzz: installDir: Journey of the world: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam - /theworld_all/Game.exe: + "/theworld_all/Game.exe": - when: - store: steam steam: @@ -643675,7 +645434,7 @@ Zzzzz: installDir: txy: {} launch: - /play.exe: + "/play.exe": - when: - os: windows store: steam @@ -643685,7 +645444,7 @@ Zzzzz: installDir: GameOfTianHuo: {} launch: - /TianHuoGame.exe: + "/TianHuoGame.exe": - when: - os: windows store: steam @@ -643695,7 +645454,7 @@ Zzzzz: installDir: SkyLegend: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: @@ -643704,7 +645463,7 @@ Zzzzz: installDir: The sea of TianGang XinSu: {} launch: - /tgxsh.exe: + "/tgxsh.exe": - when: - os: windows store: steam @@ -643714,7 +645473,7 @@ Zzzzz: installDir: Lost_Dungeon: {} launch: - /Lost_Dungeon.exe: + "/Lost_Dungeon.exe": - when: - os: windows store: steam @@ -643727,7 +645486,7 @@ Zzzzz: installDir: Surmount: {} launch: - /Surmount.exe: + "/Surmount.exe": - when: - os: windows store: steam @@ -643752,7 +645511,7 @@ Zzzzz: installDir: mymother: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -643762,20 +645521,20 @@ Zzzzz: installDir: DemonClub: {} launch: - /DemonClub.exe: + "/DemonClub.exe": - when: - os: windows store: steam steam: id: 992620 -妖诗-Yaokai's Poetry-: +"妖诗-Yaokai's Poetry-": steam: id: 1082880 守护传说 Guardian Legend: installDir: 守护传说: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -643785,7 +645544,7 @@ Zzzzz: installDir: GuardTheFuture: {} launch: - /GuardTheFuture/Chinese/GuardTheFuture.exe: + "/GuardTheFuture/Chinese/GuardTheFuture.exe": - when: - os: windows store: steam @@ -643800,7 +645559,7 @@ Zzzzz: installDir: Float Night: {} launch: - /XuanYe.exe: + "/XuanYe.exe": - when: - os: windows store: steam @@ -643815,7 +645574,7 @@ Zzzzz: installDir: RongShenzhiDiTie: {} launch: - /RongShenzhiDiTie.exe: + "/RongShenzhiDiTie.exe": - when: - os: windows store: steam @@ -643825,11 +645584,11 @@ Zzzzz: installDir: Symbiotic: {} launch: - /Symbiotic Love.app: + "/Symbiotic Love.app": - when: - os: mac store: steam - /Symbiotic Love.exe: + "/Symbiotic Love.exe": - when: - os: windows store: steam @@ -643851,7 +645610,7 @@ Zzzzz: installDir: fengshen: {} launch: - /封神纪OL.exe: + "/封神纪OL.exe": - when: - os: windows store: steam @@ -643864,20 +645623,20 @@ Zzzzz: installDir: Koba: {} launch: - /Koba.exe: + "/Koba.exe": - when: - os: windows store: steam steam: id: 899160 -小白的新衣 / Snower's New Clothes: +"小白的新衣 / Snower's New Clothes": steam: id: 1058850 小苹果大冒险 Apple Story: installDir: UnderSpire: {} launch: - /UnderSpire.exe: + "/UnderSpire.exe": - when: - store: steam steam: @@ -643889,7 +645648,7 @@ Zzzzz: installDir: 尘与土的边缘: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: @@ -643898,7 +645657,7 @@ Zzzzz: installDir: srch: {} launch: - /srch.exe: + "/srch.exe": - when: - os: windows store: steam @@ -643907,15 +645666,15 @@ Zzzzz: 尺子和橡皮: steam: id: 809640 -局外人 L'Etranger: +"局外人 L'Etranger": installDir: - 局外人 L'Etranger: {} + "局外人 L'Etranger": {} launch: - /L'etranger.app/Contents/MacOS/BKEngine: + "/L'etranger.app/Contents/MacOS/BKEngine": - when: - os: mac store: steam - /L'etranger.exe: + "/L'etranger.exe": - when: - os: windows store: steam @@ -643925,7 +645684,7 @@ Zzzzz: installDir: SXYSH: {} launch: - /属性与生活.exe: + "/属性与生活.exe": - when: - store: steam steam: @@ -643934,11 +645693,11 @@ Zzzzz: installDir: Knights: {} launch: - /Knights.app: + "/Knights.app": - when: - os: mac store: steam - /Knights.exe: + "/Knights.exe": - when: - os: windows store: steam @@ -643948,7 +645707,7 @@ Zzzzz: installDir: summon: {} launch: - /xy318.exe: + "/xy318.exe": - when: - os: windows store: steam @@ -643958,7 +645717,7 @@ Zzzzz: installDir: game: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -643968,7 +645727,7 @@ Zzzzz: installDir: GFBH: {} launch: - /Main.exe: + "/Main.exe": - when: - os: windows store: steam @@ -643981,11 +645740,11 @@ Zzzzz: installDir: Sim Empire: {} launch: - /Sim Empire.app: + "/Sim Empire.app": - when: - os: mac store: steam - /Sim Empire.exe: + "/Sim Empire.exe": - when: - os: windows store: steam @@ -643995,8 +645754,8 @@ Zzzzz: installDir: Et cetera In: {} launch: - /eto_cetera.exe: - - arguments: '--in-process-gpu' + "/eto_cetera.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam @@ -644006,8 +645765,8 @@ Zzzzz: installDir: Et cetera You: {} launch: - /eto_cetera.exe: - - arguments: '--in-process-gpu' + "/eto_cetera.exe": + - arguments: "--in-process-gpu" when: - store: steam steam: @@ -644016,7 +645775,7 @@ Zzzzz: installDir: The Survivor: {} launch: - /The Survivor.exe: + "/The Survivor.exe": - when: - store: steam steam: @@ -644025,7 +645784,7 @@ Zzzzz: installDir: FANTASY LOVE STORY: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: @@ -644034,18 +645793,18 @@ Zzzzz: installDir: FantasiaSango5: {} launch: - /Exe/fs5.exe: + "/Exe/fs5.exe": - when: - os: windows store: steam - workingDir: /Exe + workingDir: "/Exe" steam: id: 859150 幻想四倍剣^2 悔悟棒の謎: installDir: GensoYonbaiKen2: {} launch: - /gsq2.exe: + "/gsq2.exe": - when: - os: windows store: steam @@ -644055,7 +645814,7 @@ Zzzzz: installDir: ButterflyRin: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -644065,7 +645824,7 @@ Zzzzz: installDir: 幻想英雄传: {} launch: - /幻想英雄传 卡牌冒险.exe: + "/幻想英雄传 卡牌冒险.exe": - when: - os: windows store: steam @@ -644075,7 +645834,7 @@ Zzzzz: installDir: jzdmx: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -644085,12 +645844,12 @@ Zzzzz: installDir: JHROAW: {} launch: - /JHROAW.exe: + "/JHROAW.exe": - when: - bit: 64 os: windows store: steam - /game.exe: + "/game.exe": - when: - store: steam steam: @@ -644099,7 +645858,7 @@ Zzzzz: installDir: AbnormalTreatment: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -644112,7 +645871,7 @@ Zzzzz: installDir: Release.win32_2: {} launch: - /floatinglife.exe: + "/floatinglife.exe": - when: - store: steam steam: @@ -644121,7 +645880,7 @@ Zzzzz: installDir: 弹炸人2222: {} launch: - /Bomber2222.exe: + "/Bomber2222.exe": - when: - os: windows store: steam @@ -644131,7 +645890,7 @@ Zzzzz: installDir: 强军: {} launch: - /QiangJun.exe: + "/QiangJun.exe": - when: - store: steam steam: @@ -644143,7 +645902,7 @@ Zzzzz: installDir: TSOA: {} launch: - /TSOA.exe: + "/TSOA.exe": - when: - os: windows store: steam @@ -644153,11 +645912,11 @@ Zzzzz: installDir: gotokotodelux: {} launch: - /gotokoto.exe: + "/gotokoto.exe": - when: - os: windows store: steam - /gotokotojapneseenglish.app: + "/gotokotojapneseenglish.app": - when: - os: mac store: steam @@ -644167,7 +645926,7 @@ Zzzzz: installDir: Flying Sword: {} launch: - /FlyingSword.exe: + "/FlyingSword.exe": - when: - os: windows store: steam @@ -644177,7 +645936,7 @@ Zzzzz: installDir: 御龙在天-平衡国战版: {} launch: - /ylzt.exe: + "/ylzt.exe": - arguments: lypf=20 qId=1052500 ctype=1 when: - os: windows @@ -644188,7 +645947,7 @@ Zzzzz: installDir: kokoro trial versionⅡv2: {} launch: - /kokoro trialⅡ.exe: + "/kokoro trialⅡ.exe": - when: - os: windows store: steam @@ -644198,11 +645957,11 @@ Zzzzz: installDir: Eine Kleine: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam - /心之檻.app/Contents/MacOS/心之檻: + "/心之檻.app/Contents/MacOS/心之檻": - when: - os: mac store: steam @@ -644218,7 +645977,7 @@ Zzzzz: installDir: oborozyuuya: {} launch: - /oborozyuuya_win.exe: + "/oborozyuuya_win.exe": - when: - os: windows store: steam @@ -644228,7 +645987,7 @@ Zzzzz: installDir: ouzyaden: {} launch: - /ouzyaden_win.exe: + "/ouzyaden_win.exe": - when: - os: windows store: steam @@ -644238,7 +645997,7 @@ Zzzzz: installDir: 怪奇幻想夢物語 怪獣綺譚 誘宵地獄: {} launch: - /izayoizigoku.exe: + "/izayoizigoku.exe": - when: - os: windows store: steam @@ -644248,7 +646007,7 @@ Zzzzz: installDir: 怪獣綺譚 朧十夜 空狐万華鏡: {} launch: - /kuukomangekyou.exe: + "/kuukomangekyou.exe": - when: - os: windows store: steam @@ -644261,24 +646020,24 @@ Zzzzz: installDir: lianai_win_Data: {} launch: - /lianai2.app/Contents/MacOS/lianai2: + "/lianai2.app/Contents/MacOS/lianai2": - when: - os: mac store: steam - /lianai_win.exe: + "/lianai_win.exe": - when: - bit: 64 os: windows store: steam - workingDir: /lianai_win_Data + workingDir: "/lianai_win_Data" steam: id: 1044930 恋爱总动员/Love Date: installDir: love date: {} launch: - /nw.exe: - - arguments: '-windowed' + "/nw.exe": + - arguments: "-windowed" when: - os: windows store: steam @@ -644293,7 +646052,7 @@ Zzzzz: installDir: er-mo: {} launch: - /data.exe: + "/data.exe": - when: - os: windows store: steam @@ -644303,7 +646062,7 @@ Zzzzz: installDir: StupidDungeon: {} launch: - /StupidDungeon.exe: + "/StupidDungeon.exe": - when: - store: steam steam: @@ -644312,11 +646071,11 @@ Zzzzz: installDir: Cupid Bistro 2: {} launch: - /BC2.exe: + "/BC2.exe": - when: - os: windows store: steam - - arguments: '-w' + - arguments: "-w" when: - os: windows store: steam @@ -644326,7 +646085,7 @@ Zzzzz: installDir: XiuXian: {} launch: - /懒人修仙传.exe: + "/懒人修仙传.exe": - when: - os: windows store: steam @@ -644336,7 +646095,7 @@ Zzzzz: installDir: OurHomeland: {} launch: - /Our Homeland.exe: + "/Our Homeland.exe": - when: - os: windows store: steam @@ -644349,7 +646108,7 @@ Zzzzz: installDir: OUR HOUSE: {} launch: - /OUR HOUSE.exe: + "/OUR HOUSE.exe": - when: - bit: 64 os: windows @@ -644360,7 +646119,7 @@ Zzzzz: installDir: dishonest: {} launch: - /dishonest.exe: + "/dishonest.exe": - when: - os: windows store: steam @@ -644370,7 +646129,7 @@ Zzzzz: installDir: win: {} launch: - /我是键盘侠.exe: + "/我是键盘侠.exe": - when: - os: windows store: steam @@ -644380,7 +646139,7 @@ Zzzzz: installDir: WSYZ: {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: @@ -644392,7 +646151,7 @@ Zzzzz: installDir: Make butter together!: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -644402,7 +646161,7 @@ Zzzzz: installDir: Chimera of Tactics 3-Gun and Football: {} launch: - /ZSKX3.exe: + "/ZSKX3.exe": - when: - os: windows store: steam @@ -644415,7 +646174,7 @@ Zzzzz: installDir: Striker A Type Game Pack: {} launch: - /TypeGame.exe: + "/TypeGame.exe": - when: - bit: 64 os: windows @@ -644426,7 +646185,7 @@ Zzzzz: installDir: 打工吧!天使酱 ~天使在魔界的劳改生活~: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -644436,7 +646195,7 @@ Zzzzz: installDir: Executor: {} launch: - /Executor.exe: + "/Executor.exe": - when: - os: windows store: steam @@ -644446,28 +646205,28 @@ Zzzzz: installDir: 拖拉机: {} launch: - /Bin/IFWinApp.exe: - - arguments: 'app:UpgradeGame.dll w:1024 h:640 d3d11' + "/Bin/IFWinApp.exe": + - arguments: "app:UpgradeGame.dll w:1024 h:640 d3d11" when: - os: windows store: steam - workingDir: /Bin - /Bin/game.bat: + workingDir: "/Bin" + "/Bin/game.bat": - when: - os: windows store: steam - workingDir: /Bin + workingDir: "/Bin" steam: id: 975860 -'拯救大魔王2:逆流 Falsemen2:Upstream': +"拯救大魔王2:逆流 Falsemen2:Upstream": installDir: 拯救大魔王2逆流 Falsemen2Upstream: {} launch: - /Game.app: + "/Game.app": - when: - os: mac store: steam - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -644477,10 +646236,10 @@ Zzzzz: installDir: Cut2017: {} launch: - /Cut2017.exe: + "/Cut2017.exe": - when: - store: steam - /Cut_2017_OSX.app/Contents/MacOS/Cut_2017_OSX: + "/Cut_2017_OSX.app/Contents/MacOS/Cut_2017_OSX": - when: - store: steam steam: @@ -644492,7 +646251,7 @@ Zzzzz: installDir: The Reign Man: {} launch: - /Cards2048.exe: + "/Cards2048.exe": - when: - os: windows store: steam @@ -644502,7 +646261,7 @@ Zzzzz: installDir: NotesOfSoul: {} launch: - /NotesOfSoul.exe: + "/NotesOfSoul.exe": - when: - bit: 64 os: windows @@ -644516,7 +646275,7 @@ Zzzzz: installDir: Contact Point: {} launch: - /Contact Point.exe: + "/Contact Point.exe": - when: - store: steam steam: @@ -644528,7 +646287,7 @@ Zzzzz: installDir: 故郷をさがす三姉妹: {} launch: - /故郷をさがす三姉妹.exe: + "/故郷をさがす三姉妹.exe": - when: - os: windows store: steam @@ -644538,7 +646297,7 @@ Zzzzz: installDir: jiushujueze: {} launch: - /jiushujueze.exe: + "/jiushujueze.exe": - when: - bit: 64 os: windows @@ -644549,7 +646308,7 @@ Zzzzz: installDir: 散歩するキーボード使い: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: @@ -644558,15 +646317,15 @@ Zzzzz: installDir: 文字獄: {} launch: - /PrisonOfWord.app: + "/PrisonOfWord.app": - when: - os: mac store: steam - /PrisonOfWord.x86_64: + "/PrisonOfWord.x86_64": - when: - os: linux store: steam - /Word_Prison.exe: + "/Word_Prison.exe": - when: - os: windows store: steam @@ -644576,7 +646335,7 @@ Zzzzz: installDir: SGQJZ720: {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: @@ -644590,11 +646349,11 @@ Zzzzz: installDir: Raksasi: {} launch: - /raksasi.app: + "/raksasi.app": - when: - os: mac store: steam - /raksasi.exe: + "/raksasi.exe": - when: - os: windows store: steam @@ -644604,7 +646363,7 @@ Zzzzz: installDir: yj: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: @@ -644613,7 +646372,7 @@ Zzzzz: installDir: XQGZN70: {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: @@ -644622,7 +646381,7 @@ Zzzzz: installDir: windows_content: {} launch: - /windows_content/GS3D.exe: + "/windows_content/GS3D.exe": - when: - bit: 64 os: windows @@ -644633,7 +646392,7 @@ Zzzzz: installDir: Cube Human: {} launch: - /Cube Human.exe: + "/Cube Human.exe": - when: - bit: 64 os: windows @@ -644647,34 +646406,34 @@ Zzzzz: id: 998300 方解夢異聞 ~ Avant-Garde Discerning Paralleler (東方二次創作STG): installDir: - ' Avant-Garde Discerning Paralleler': {} + " Avant-Garde Discerning Paralleler": {} launch: - /th_ADP.exe: + "/th_ADP.exe": - when: - os: windows store: steam steam: id: 1095590 -'无主之地:银河 4X-Galaxy': +"无主之地:银河 4X-Galaxy": installDir: funclick_space: {} launch: - /q3dgame.exe: + "/q3dgame.exe": - when: - os: windows store: steam steam: id: 922450 -无奇刀 Wookie's Blade: +"无奇刀 Wookie's Blade": installDir: - Wookie's Blade: {} + "Wookie's Blade": {} steam: id: 1058750 无尽守卫: installDir: tfzhs: {} launch: - /newTfzhs.exe: + "/newTfzhs.exe": - when: - os: windows store: steam @@ -644690,11 +646449,11 @@ Zzzzz: installDir: jthdszf: {} launch: - /patcher/patcher.exe: + "/patcher/patcher.exe": - when: - os: windows store: steam - workingDir: /patcher + workingDir: "/patcher" steam: id: 1081810 时之终Klock: @@ -644704,7 +646463,7 @@ Zzzzz: installDir: TimeWalker: {} launch: - /TimeWalker.exe: + "/TimeWalker.exe": - when: - bit: 64 os: windows @@ -644715,7 +646474,7 @@ Zzzzz: installDir: 明日、初めて彼女と❤: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -644730,7 +646489,7 @@ Zzzzz: installDir: DiabloIsland: {} launch: - /DiabloIslanD.exe: + "/DiabloIslanD.exe": - when: - os: windows store: steam @@ -644741,9 +646500,9 @@ Zzzzz: id: 683680 曲阿小将 Minor Leader: installDir: - Qu'e Little General: {} + "Qu'e Little General": {} launch: - /t1.exe: + "/t1.exe": - when: - os: windows store: steam @@ -644753,7 +646512,7 @@ Zzzzz: installDir: The Last 47 Hours: {} launch: - /The47Hour.exe: + "/The47Hour.exe": - when: - store: steam steam: @@ -644762,7 +646521,7 @@ Zzzzz: installDir: 最后的阳光 The Last Sunshine: {} launch: - /lamplighter.exe: + "/lamplighter.exe": - when: - os: windows store: steam @@ -644772,7 +646531,7 @@ Zzzzz: installDir: Tale Of Yueyalou: {} launch: - /Tale Of Yueyalou.exe: + "/Tale Of Yueyalou.exe": - when: - bit: 64 os: windows @@ -644783,7 +646542,7 @@ Zzzzz: installDir: MoonFall: {} launch: - /MoonFall_Full.exe: + "/MoonFall_Full.exe": - when: - os: windows store: steam @@ -644793,8 +646552,11 @@ Zzzzz: installDir: mfxl: {} launch: - /Mfxl.exe: + "/Mfxl.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam @@ -644807,7 +646569,7 @@ Zzzzz: installDir: JJXX: {} launch: - /机甲雄心.exe: + "/机甲雄心.exe": - when: - bit: 64 os: windows @@ -644818,11 +646580,11 @@ Zzzzz: installDir: EnergyGirl: {} launch: - /Game.app/Contents/MacOS/nwjs: + "/Game.app/Contents/MacOS/nwjs": - when: - os: mac store: steam - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -644837,14 +646599,14 @@ Zzzzz: installDir: LEEgame: {} launch: - /Leegame.exe: + "/Leegame.exe": - when: - store: steam steam: id: 865100 来人 LIGHTWORKERS: files: - /LocalLow/FIFTHD/Lightworkers01: + "/LocalLow/FIFTHD/Lightworkers01": tags: - save when: @@ -644852,7 +646614,7 @@ Zzzzz: installDir: LIGHTWORKERS: {} launch: - /LIGHTWORKERS.exe: + "/LIGHTWORKERS.exe": - when: - os: windows store: steam @@ -644862,7 +646624,7 @@ Zzzzz: installDir: DFHMJ: {} launch: - /DFHMJ.exe: + "/DFHMJ.exe": - when: - os: windows store: steam @@ -644872,7 +646634,7 @@ Zzzzz: installDir: thsuijin: {} launch: - /東方翠神廻廊.exe: + "/東方翠神廻廊.exe": - when: - bit: 64 os: windows @@ -644883,7 +646645,7 @@ Zzzzz: installDir: DFLYT: {} launch: - /DFLYT.exe: + "/DFLYT.exe": - when: - os: windows store: steam @@ -644893,11 +646655,11 @@ Zzzzz: installDir: MOE Hypnotist: {} launch: - /game.app: + "/game.app": - when: - os: mac store: steam - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -644907,7 +646669,7 @@ Zzzzz: installDir: 枝江第一舞斗会: {} launch: - /枝江第一舞斗会.exe: + "/枝江第一舞斗会.exe": - when: - os: windows store: steam @@ -644917,7 +646679,7 @@ Zzzzz: installDir: 某1种青春: {} launch: - /TheBestStory.exe: + "/TheBestStory.exe": - when: - os: windows store: steam @@ -644927,7 +646689,7 @@ Zzzzz: installDir: GDZC: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -644937,16 +646699,16 @@ Zzzzz: installDir: Metatron: {} launch: - /Metatron.app/Contents/MacOS/Innovator: + "/Metatron.app/Contents/MacOS/Innovator": - when: - os: mac store: steam - /Metatron.exe: + "/Metatron.exe": - when: - bit: 64 os: windows store: steam - /Metatron.sh: + "/Metatron.sh": - when: - bit: 64 os: linux @@ -644957,7 +646719,7 @@ Zzzzz: installDir: DreamThreeKingdom: {} launch: - /build/release/Dream War.exe: + "/build/release/Dream War.exe": - when: - os: windows store: steam @@ -644967,7 +646729,7 @@ Zzzzz: installDir: candy_0_0_1: {} launch: - /M1.exe: + "/M1.exe": - when: - bit: 64 os: windows @@ -644978,7 +646740,7 @@ Zzzzz: installDir: Menbenwuyou: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -644988,7 +646750,7 @@ Zzzzz: installDir: OldDays: {} launch: - /OldDays.exe: + "/OldDays.exe": - when: - os: windows store: steam @@ -645001,7 +646763,7 @@ Zzzzz: installDir: mnj: {} launch: - /WindowsNoEditor/DrawHouse/Binaries/Win64/DrawHouse.exe: + "/WindowsNoEditor/DrawHouse/Binaries/Win64/DrawHouse.exe": - when: - bit: 64 os: windows @@ -645015,7 +646777,7 @@ Zzzzz: installDir: toutennnoginnyoku: {} launch: - /contents/Game.exe: + "/contents/Game.exe": - when: - os: windows store: steam @@ -645025,7 +646787,7 @@ Zzzzz: installDir: Fun Virus TD: {} launch: - /FunVirusTD.exe: + "/FunVirusTD.exe": - when: - os: windows store: steam @@ -645038,7 +646800,7 @@ Zzzzz: installDir: 武儒绘卷-启示录: {} launch: - /武儒绘卷-启示录.exe: + "/武儒绘卷-启示录.exe": - when: - os: windows store: steam @@ -645048,7 +646810,7 @@ Zzzzz: installDir: wdjh95: {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: @@ -645057,7 +646819,7 @@ Zzzzz: installDir: Budo Girl War Maid: {} launch: - /wdnp.exe: + "/wdnp.exe": - when: - os: windows store: steam @@ -645067,11 +646829,11 @@ Zzzzz: installDir: hmqs: {} launch: - /hmqs.app: + "/hmqs.app": - when: - os: mac store: steam - /hmqs.exe: + "/hmqs.exe": - when: - os: windows store: steam @@ -645081,7 +646843,7 @@ Zzzzz: installDir: 江湖余生: {} launch: - /JHYS_OV.exe: + "/JHYS_OV.exe": - when: - os: windows store: steam @@ -645094,7 +646856,7 @@ Zzzzz: installDir: jhxkx: {} launch: - /jhxkx.exe: + "/jhxkx.exe": - when: - os: windows store: steam @@ -645104,7 +646866,7 @@ Zzzzz: installDir: Ganghood Survival: {} launch: - /江湖求生.exe: + "/江湖求生.exe": - when: - bit: 64 os: windows @@ -645115,7 +646877,7 @@ Zzzzz: installDir: Sea of Craft: {} launch: - /Sea Of Craft.exe: + "/Sea Of Craft.exe": - when: - os: windows store: steam @@ -645125,7 +646887,7 @@ Zzzzz: installDir: 沉睡的法则: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: @@ -645137,7 +646899,7 @@ Zzzzz: installDir: Road: {} launch: - /Pack.exe: + "/Pack.exe": - when: - bit: 64 os: windows @@ -645148,7 +646910,7 @@ Zzzzz: installDir: 没毛病制作人: {} launch: - /Psychosoft Ltd..exe: + "/Psychosoft Ltd..exe": - when: - store: steam steam: @@ -645157,7 +646919,7 @@ Zzzzz: installDir: survive: {} launch: - /BluestacksGP.exe: + "/BluestacksGP.exe": - when: - bit: 64 os: windows @@ -645171,7 +646933,7 @@ Zzzzz: installDir: All men are mortal: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: @@ -645188,7 +646950,7 @@ Zzzzz: installDir: The road of Nirvana: {} launch: - /涅槃之路/涅槃之路.exe: + "/涅槃之路/涅槃之路.exe": - when: - bit: 64 os: windows @@ -645204,11 +646966,11 @@ Zzzzz: installDir: Deep Sea: {} launch: - /Deep Sea.app/Contents/MacOS/DeepSea: + "/Deep Sea.app/Contents/MacOS/DeepSea": - when: - os: mac store: steam - /DeepSea.exe: + "/DeepSea.exe": - when: - bit: 64 os: windows @@ -645222,7 +646984,7 @@ Zzzzz: installDir: Chaos Maker: {} launch: - /Chaos Maker.exe: + "/Chaos Maker.exe": - when: - bit: 64 os: windows @@ -645233,7 +646995,7 @@ Zzzzz: installDir: youwuyu: {} launch: - /TravelDiary.exe: + "/TravelDiary.exe": - when: - os: windows store: steam @@ -645243,7 +647005,7 @@ Zzzzz: installDir: Uniland: {} launch: - /UniLand.exe: + "/UniLand.exe": - when: - os: windows store: steam @@ -645253,7 +647015,7 @@ Zzzzz: installDir: ValleyWar: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -645263,16 +647025,16 @@ Zzzzz: installDir: 漫步者 The Walker: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: id: 1189600 -火柴人和七色彩虹 Stickman's Rainbow: +"火柴人和七色彩虹 Stickman's Rainbow": installDir: - Stickman's Rainbow: {} + "Stickman's Rainbow": {} launch: - /Stickman's Rainbow/Stickman's Rainbow.exe: + "/Stickman's Rainbow/Stickman's Rainbow.exe": - when: - bit: 64 os: windows @@ -645283,7 +647045,7 @@ Zzzzz: installDir: Stickman League: {} launch: - /BluestacksGP.exe: + "/BluestacksGP.exe": - when: - bit: 64 os: windows @@ -645293,11 +647055,11 @@ Zzzzz: 灭神: steam: id: 1153340 -'灵幻先生 : 致敬一代僵尸道长!': +"灵幻先生 : 致敬一代僵尸道长!": installDir: LingHuanXianSheng: {} launch: - /LingHuanXianSheng.exe: + "/LingHuanXianSheng.exe": - when: - bit: 64 os: windows @@ -645308,7 +647070,7 @@ Zzzzz: installDir: XiYou: {} launch: - /XiYou.exe: + "/XiYou.exe": - when: - os: windows store: steam @@ -645316,14 +647078,14 @@ Zzzzz: id: 832520 灵界 Sprites(测试版): installDir: - ' Sprites(测试版)': {} + " Sprites(测试版)": {} steam: id: 1043140 炎之陨落 The Fallen of The Blaze Empire: installDir: The fallen of the blaze empire: {} launch: - /stone.exe: + "/stone.exe": - when: - os: windows store: steam @@ -645333,7 +647095,7 @@ Zzzzz: installDir: yanhuang: {} launch: - /yh.exe: + "/yh.exe": - when: - os: windows store: steam @@ -645346,8 +647108,8 @@ Zzzzz: installDir: Embergarde: {} launch: - /RuLauncher.exe: - - arguments: '-transcmd \"{-steam_enabled}\"' + "/RuLauncher.exe": + - arguments: "-transcmd \\\"{-steam_enabled}\\\"" when: - os: windows store: steam @@ -645360,7 +647122,7 @@ Zzzzz: installDir: WarringStatePeriodWar: {} launch: - /BluestacksGP.exe: + "/BluestacksGP.exe": - when: - bit: 64 os: windows @@ -645371,7 +647133,7 @@ Zzzzz: installDir: 狐の旅路: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -645381,7 +647143,7 @@ Zzzzz: installDir: Werewolf Standalone: {} launch: - /Werewolf Standalone/Werewolf Standalone.exe: + "/Werewolf Standalone/Werewolf Standalone.exe": - when: - os: windows store: steam @@ -645391,7 +647153,7 @@ Zzzzz: installDir: Demon_Hunter: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: @@ -645400,8 +647162,8 @@ Zzzzz: installDir: hgybt: {} launch: - /Game.exe: - - arguments: '--in-process-gpu' + "/Game.exe": + - arguments: "--in-process-gpu" when: - os: windows store: steam @@ -645414,7 +647176,7 @@ Zzzzz: installDir: df: {} launch: - /df.exe: + "/df.exe": - when: - os: windows store: steam @@ -645424,7 +647186,7 @@ Zzzzz: installDir: Fantastic_kingdom: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: @@ -645436,7 +647198,7 @@ Zzzzz: installDir: ACEChariot: {} launch: - /TGLauncher.exe: + "/TGLauncher.exe": - when: - os: windows store: steam @@ -645449,7 +647211,7 @@ Zzzzz: installDir: BAdventure: {} launch: - /BAdventure/Play.exe: + "/BAdventure/Play.exe": - when: - os: windows store: steam @@ -645459,7 +647221,7 @@ Zzzzz: installDir: 答题英雄——生物格斗: {} launch: - /Bfight/Play.exe: + "/Bfight/Play.exe": - when: - store: steam steam: @@ -645468,7 +647230,7 @@ Zzzzz: installDir: dtx: {} launch: - /dtx.exe: + "/dtx.exe": - when: - store: steam steam: @@ -645477,7 +647239,7 @@ Zzzzz: installDir: 画江湖之杯莫停: {} launch: - /hjh.exe: + "/hjh.exe": - when: - store: steam steam: @@ -645492,7 +647254,7 @@ Zzzzz: installDir: VirusCrisis: {} launch: - /VirusCrisis.exe: + "/VirusCrisis.exe": - when: - os: windows store: steam @@ -645502,7 +647264,7 @@ Zzzzz: installDir: Once Opon a Time in White Stone State: {} launch: - /Story of BSZ.exe: + "/Story of BSZ.exe": - when: - os: windows store: steam @@ -645512,7 +647274,7 @@ Zzzzz: installDir: 百花三国志: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -645530,7 +647292,7 @@ Zzzzz: installDir: Vaporwave Drift: {} launch: - /VaporwaveDrift.exe: + "/VaporwaveDrift.exe": - when: - os: windows store: steam @@ -645540,7 +647302,7 @@ Zzzzz: installDir: InvisibleLove: {} launch: - /看不见的爱.exe: + "/看不见的爱.exe": - when: - os: windows store: steam @@ -645549,7 +647311,7 @@ Zzzzz: 真龙主宰: steam: id: 1201920 -'瞳:祈愿 VR / Pupil: Wandering VR': +"瞳:祈愿 VR / Pupil: Wandering VR": installDir: Pupil_Wandering: {} steam: @@ -645558,7 +647320,7 @@ Zzzzz: installDir: Broken magic: {} launch: - /Broken magic.exe: + "/Broken magic.exe": - when: - bit: 64 os: windows @@ -645569,11 +647331,11 @@ Zzzzz: installDir: Tama: {} launch: - /Tama.app: + "/Tama.app": - when: - os: mac store: steam - /Tama.exe: + "/Tama.exe": - when: - os: windows store: steam @@ -645583,7 +647345,7 @@ Zzzzz: installDir: AEGIS: {} launch: - /Aegis.exe: + "/Aegis.exe": - when: - store: steam steam: @@ -645592,7 +647354,7 @@ Zzzzz: installDir: 社稷终于幻想 ~ A Finality with Sheji: {} launch: - /AFinalityWithSheji.exe: + "/AFinalityWithSheji.exe": - when: - os: windows store: steam @@ -645602,7 +647364,7 @@ Zzzzz: installDir: Inorikaze: {} launch: - /Inorikaze.exe: + "/Inorikaze.exe": - when: - os: windows store: steam @@ -645612,7 +647374,7 @@ Zzzzz: installDir: Disenchantment Nirvana: {} launch: - /Disenchantment Nirvana.exe: + "/Disenchantment Nirvana.exe": - when: - os: windows store: steam @@ -645622,7 +647384,7 @@ Zzzzz: installDir: Disenchantment Acculturation: {} launch: - /Disenchantment Acculturation.exe: + "/Disenchantment Acculturation.exe": - when: - os: windows store: steam @@ -645635,11 +647397,11 @@ Zzzzz: installDir: KingdomOfGod: {} launch: - /KingdomOfGod.app: + "/KingdomOfGod.app": - when: - os: mac store: steam - /KingdomOfGod.exe: + "/KingdomOfGod.exe": - when: - os: windows store: steam @@ -645652,11 +647414,11 @@ Zzzzz: installDir: Zengeon: {} launch: - /Zengeon.app: + "/Zengeon.app": - when: - os: mac store: steam - /Zengeon.exe: + "/Zengeon.exe": - when: - os: windows store: steam @@ -645669,7 +647431,7 @@ Zzzzz: installDir: ShenMou: {} launch: - /神谋.exe: + "/神谋.exe": - when: - store: steam steam: @@ -645678,7 +647440,7 @@ Zzzzz: installDir: SMJH: {} launch: - /shenma.exe: + "/shenma.exe": - when: - store: steam steam: @@ -645687,7 +647449,7 @@ Zzzzz: installDir: The Counterattack OF Sacrifice: {} launch: - /祭品的逆襲 The Counterattack OF Sacrifice.exe: + "/祭品的逆襲 The Counterattack OF Sacrifice.exe": - when: - os: windows store: steam @@ -645697,8 +647459,8 @@ Zzzzz: installDir: SaidannoHana: {} launch: - /EstGame.exe: - - arguments: '-shipping' + "/EstGame.exe": + - arguments: "-shipping" when: - bit: 64 os: windows @@ -645709,7 +647471,7 @@ Zzzzz: installDir: RuneGirl: {} launch: - /Rune Girl.exe: + "/Rune Girl.exe": - when: - os: windows store: steam @@ -645719,7 +647481,7 @@ Zzzzz: installDir: Fourthspace: {} launch: - /FourthSpace.exe: + "/FourthSpace.exe": - when: - bit: 64 os: windows @@ -645730,7 +647492,7 @@ Zzzzz: installDir: questionbh: {} launch: - /questionbh/questionbh.exe: + "/questionbh/questionbh.exe": - when: - store: steam steam: @@ -645744,7 +647506,7 @@ Zzzzz: installDir: Food dreamworks: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -645754,7 +647516,7 @@ Zzzzz: installDir: 红魔事件簿 The Note of Red Evil: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: @@ -645763,7 +647525,7 @@ Zzzzz: installDir: Ruthless Water: {} launch: - /Ruthless Water.exe: + "/Ruthless Water.exe": - when: - store: steam steam: @@ -645772,11 +647534,11 @@ Zzzzz: installDir: PrivateModel: {} launch: - /Private Model.app: + "/Private Model.app": - when: - os: mac store: steam - /Private Model.exe: + "/Private Model.exe": - when: - os: windows store: steam @@ -645786,7 +647548,7 @@ Zzzzz: installDir: Paper Dolls Original: {} launch: - /PaperDollsOriginal.exe: + "/PaperDollsOriginal.exe": - when: - os: windows store: steam @@ -645799,7 +647561,7 @@ Zzzzz: installDir: MyTest: {} launch: - /CellWar.exe: + "/CellWar.exe": - when: - bit: 64 os: windows @@ -645810,7 +647572,7 @@ Zzzzz: installDir: ds_sc: {} launch: - /ds_sc.exe: + "/ds_sc.exe": - when: - os: windows store: steam @@ -645820,7 +647582,7 @@ Zzzzz: installDir: 绮罗四时谭: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -645830,7 +647592,7 @@ Zzzzz: installDir: FrenzyRetribution: {} launch: - /FrenzyRetribution.exe: + "/FrenzyRetribution.exe": - when: - os: windows store: steam @@ -645840,11 +647602,11 @@ Zzzzz: installDir: SinChess: {} launch: - /SinChess.app/Contents/MacOS/SinChess: + "/SinChess.app/Contents/MacOS/SinChess": - when: - os: mac store: steam - /SinChess.exe: + "/SinChess.exe": - when: - os: windows store: steam @@ -645857,7 +647619,7 @@ Zzzzz: installDir: GirlsSummerFun: {} launch: - /美少女夏日欢乐.exe: + "/美少女夏日欢乐.exe": - when: - store: steam steam: @@ -645866,16 +647628,16 @@ Zzzzz: installDir: PrettyGirlsMahjong: {} launch: - /美少女麻将接龙.exe: + "/美少女麻将接龙.exe": - when: - store: steam steam: id: 908350 -'群星战纪: 遗失的星辰 - STARS ERA: LOST STARS': +"群星战纪: 遗失的星辰 - STARS ERA: LOST STARS": installDir: STARS ERA LOST STARS: {} launch: - /STARS ERA LOST STARS.exe: + "/STARS ERA LOST STARS.exe": - when: - store: steam steam: @@ -645887,7 +647649,7 @@ Zzzzz: installDir: BossStrategy: {} launch: - /BossStrategy/BossStrategy.exe: + "/BossStrategy/BossStrategy.exe": - when: - os: windows store: steam @@ -645897,7 +647659,7 @@ Zzzzz: installDir: TigerEntertainment: {} launch: - /TigerEntertainmentForSteam.exe: + "/TigerEntertainmentForSteam.exe": - when: - bit: 64 os: windows @@ -645908,11 +647670,11 @@ Zzzzz: installDir: My Games: {} launch: - /rrs_os_x/Game.app: + "/rrs_os_x/Game.app": - when: - os: mac store: steam - /rrs_win/Game.exe: + "/rrs_win/Game.exe": - when: - os: windows store: steam @@ -645925,7 +647687,7 @@ Zzzzz: installDir: fatbattle: {} launch: - /jszd.exe: + "/jszd.exe": - when: - os: windows store: steam @@ -645938,7 +647700,7 @@ Zzzzz: installDir: Tqzs: {} launch: - /tqzs.exe: + "/tqzs.exe": - when: - bit: 64 os: windows @@ -645952,7 +647714,7 @@ Zzzzz: installDir: 苍夜: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: @@ -645961,7 +647723,7 @@ Zzzzz: installDir: yingyusha: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -645971,11 +647733,11 @@ Zzzzz: installDir: Hero: {} launch: - /Hero.app: + "/Hero.app": - when: - os: mac store: steam - /Hero.exe: + "/Hero.exe": - when: - os: windows store: steam @@ -645985,11 +647747,11 @@ Zzzzz: installDir: HeroII: {} launch: - /HeroII.app: + "/HeroII.app": - when: - os: mac store: steam - /HeroII.exe: + "/HeroII.exe": - when: - os: windows store: steam @@ -645999,7 +647761,7 @@ Zzzzz: installDir: Jasmine Summer: {} launch: - /JasmineSummer_茉莉之夏.exe: + "/JasmineSummer_茉莉之夏.exe": - when: - store: steam steam: @@ -646008,7 +647770,7 @@ Zzzzz: installDir: Island: {} launch: - /Island.exe: + "/Island.exe": - when: - os: windows store: steam @@ -646018,7 +647780,7 @@ Zzzzz: installDir: DFJW: {} launch: - /DFJW01.exe: + "/DFJW01.exe": - when: - os: windows store: steam @@ -646028,7 +647790,7 @@ Zzzzz: installDir: Frozen: {} launch: - /wildsuperman.exe: + "/wildsuperman.exe": - when: - os: windows store: steam @@ -646038,7 +647800,7 @@ Zzzzz: installDir: hyxz: {} launch: - /hyxz.exe: + "/hyxz.exe": - when: - os: windows store: steam @@ -646048,11 +647810,11 @@ Zzzzz: installDir: 莫比乌斯之环-不属于任何人的交响悲歌-MOBIUS & ELEGY BELONGS TO NOBODY: {} launch: - /Contents/MacOS/Mobius_Steam: + "/Contents/MacOS/Mobius_Steam": - when: - os: mac store: steam - /Mobius.exe: + "/Mobius.exe": - when: - bit: 64 os: windows @@ -646068,7 +647830,7 @@ Zzzzz: installDir: Moe Moe World War II - 3: {} launch: - /launcher.exe: + "/launcher.exe": - when: - os: windows store: steam @@ -646078,7 +647840,7 @@ Zzzzz: installDir: 落华居: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -646091,11 +647853,11 @@ Zzzzz: installDir: 蓝宝石般的被害妄想少女: {} launch: - /Sapphire - like murdered paranoid girl.app: + "/Sapphire - like murdered paranoid girl.app": - when: - os: mac store: steam - /Sapphire - like murdered paranoid girl.exe: + "/Sapphire - like murdered paranoid girl.exe": - when: - os: windows store: steam @@ -646113,7 +647875,7 @@ Zzzzz: installDir: funclick_heros: {} launch: - /q3dgame.exe: + "/q3dgame.exe": - when: - os: windows store: steam @@ -646123,7 +647885,7 @@ Zzzzz: installDir: jjsg830: {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: @@ -646138,7 +647900,7 @@ Zzzzz: installDir: hakennwonigire: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -646153,11 +647915,11 @@ Zzzzz: installDir: Imprison: {} launch: - /imprison.app: + "/imprison.app": - when: - os: mac store: steam - /imprison.exe: + "/imprison.exe": - when: - bit: 64 os: windows @@ -646168,11 +647930,11 @@ Zzzzz: installDir: 记忆重现: {} launch: - /记忆重现.app: + "/记忆重现.app": - when: - os: mac store: steam - /记忆重现.exe: + "/记忆重现.exe": - when: - bit: 64 os: windows @@ -646189,7 +647951,7 @@ Zzzzz: installDir: lianjingongfang: {} launch: - /lianjigongfang.exe: + "/lianjigongfang.exe": - when: - os: windows store: steam @@ -646199,7 +647961,7 @@ Zzzzz: installDir: Last Wish: {} launch: - /LastWish.exe: + "/LastWish.exe": - when: - bit: 64 os: windows @@ -646210,7 +647972,7 @@ Zzzzz: installDir: Cyber Driver: {} launch: - /CyberDriver.exe: + "/CyberDriver.exe": - when: - os: windows store: steam @@ -646225,7 +647987,7 @@ Zzzzz: installDir: MechWar: {} launch: - /game.exe: + "/game.exe": - when: - bit: 64 os: windows @@ -646236,11 +647998,11 @@ Zzzzz: installDir: TianlaoSokoban: {} launch: - /Game.app: + "/Game.app": - when: - os: mac store: steam - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -646250,7 +648012,7 @@ Zzzzz: installDir: 跳跳大咖: {} launch: - /jumpmaster.exe: + "/jumpmaster.exe": - when: - os: windows store: steam @@ -646259,11 +648021,11 @@ Zzzzz: 轻梦谭 - 瓮之篇 -: steam: id: 1214720 -'辣条杂货店:回到1997,我当小商贩': +"辣条杂货店:回到1997,我当小商贩": installDir: ltzhd: {} launch: - /game.exe: + "/game.exe": - when: - bit: 64 os: windows @@ -646274,7 +648036,7 @@ Zzzzz: installDir: Maze_Wars: {} launch: - /MazePC.exe: + "/MazePC.exe": - when: - os: windows store: steam @@ -646284,7 +648046,7 @@ Zzzzz: installDir: TheMist: {} launch: - /TheMist.exe: + "/TheMist.exe": - when: - os: windows store: steam @@ -646294,11 +648056,11 @@ Zzzzz: installDir: Retirement Simulator: {} launch: - /retire.app/Contents/MacOS/retire: + "/retire.app/Contents/MacOS/retire": - when: - os: mac store: steam - /retire.exe: + "/retire.exe": - when: - os: windows store: steam @@ -646308,7 +648070,7 @@ Zzzzz: installDir: DecadanceThinking: {} launch: - /Decadance_thinking.exe: + "/Decadance_thinking.exe": - when: - store: steam steam: @@ -646320,7 +648082,7 @@ Zzzzz: installDir: xyxz840: {} launch: - /game.exe: + "/game.exe": - when: - store: steam steam: @@ -646329,7 +648091,7 @@ Zzzzz: installDir: XYY780: {} launch: - /Loader.exe: + "/Loader.exe": - when: - store: steam steam: @@ -646338,7 +648100,7 @@ Zzzzz: installDir: Lost_Memories_3: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -646348,7 +648110,7 @@ Zzzzz: installDir: Ancient continent: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -646358,21 +648120,21 @@ Zzzzz: installDir: 那美克星人: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam steam: id: 1214210 -'邻居大叔/UncleNeighbor:uncle Dating Simulator': +"邻居大叔/UncleNeighbor:uncle Dating Simulator": installDir: UncleNeighbor: {} launch: - /UncleNeighbor.app/Contents/MacOS/UncleNeighbor: + "/UncleNeighbor.app/Contents/MacOS/UncleNeighbor": - when: - os: mac store: steam - /UncleNeighbor.exe: + "/UncleNeighbor.exe": - when: - os: windows store: steam @@ -646382,7 +648144,7 @@ Zzzzz: installDir: DesertLegend: {} launch: - /DesertLegend.exe: + "/DesertLegend.exe": - when: - os: windows store: steam @@ -646392,7 +648154,7 @@ Zzzzz: installDir: UrbanTerror: {} launch: - /UrbanTerror.exe: + "/UrbanTerror.exe": - when: - os: windows store: steam @@ -646402,7 +648164,7 @@ Zzzzz: installDir: 酒店: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -646412,7 +648174,7 @@ Zzzzz: installDir: 酒店2 The Hotel 2: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -646422,7 +648184,7 @@ Zzzzz: installDir: hyoutan: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: @@ -646431,7 +648193,7 @@ Zzzzz: installDir: Reborn Not Again: {} launch: - /Reborn Not Again.exe: + "/Reborn Not Again.exe": - when: - os: windows store: steam @@ -646441,7 +648203,7 @@ Zzzzz: installDir: The Long Sky: {} launch: - /LongSky.exe: + "/LongSky.exe": - when: - os: windows store: steam @@ -646454,7 +648216,7 @@ Zzzzz: installDir: Lightning Wings II: {} launch: - /ThunderRobotX.exe: + "/ThunderRobotX.exe": - when: - store: steam steam: @@ -646463,7 +648225,7 @@ Zzzzz: installDir: Dark Xingzer: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -646473,7 +648235,7 @@ Zzzzz: installDir: Treasure_of_abyss: {} launch: - /Treasure_of_abyss.exe: + "/Treasure_of_abyss.exe": - when: - store: steam steam: @@ -646482,7 +648244,7 @@ Zzzzz: installDir: 阿津: {} launch: - /Game.exe: + "/Game.exe": - when: - os: windows store: steam @@ -646492,7 +648254,7 @@ Zzzzz: installDir: adasanguozhi2018: {} launch: - /sanguo.exe: + "/sanguo.exe": - when: - os: windows store: steam @@ -646507,7 +648269,7 @@ Zzzzz: installDir: Stealth: {} launch: - /Stealth.exe: + "/Stealth.exe": - when: - os: windows store: steam @@ -646517,11 +648279,11 @@ Zzzzz: installDir: sparrowhime: {} launch: - /game.app/Contents/MacOS/game: + "/game.app/Contents/MacOS/game": - when: - os: mac store: steam - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -646531,16 +648293,16 @@ Zzzzz: installDir: Sknow: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: id: 1001010 雪策边境: installDir: - '3655457': {} + "3655457": {} launch: - /Snow_Border_Plan.exe: + "/Snow_Border_Plan.exe": - when: - store: steam steam: @@ -646549,7 +648311,7 @@ Zzzzz: installDir: xueyinglingzhu: {} launch: - /xycq.exe: + "/xycq.exe": - when: - os: windows store: steam @@ -646559,7 +648321,7 @@ Zzzzz: installDir: lxjy: {} launch: - /game.exe: + "/game.exe": - when: - os: windows store: steam @@ -646569,7 +648331,7 @@ Zzzzz: installDir: The curse of the dead: {} launch: - /The curse of the dead.exe: + "/The curse of the dead.exe": - when: - bit: 64 os: windows @@ -646580,7 +648342,7 @@ Zzzzz: installDir: ZeroFront: {} launch: - /零界战线.exe: + "/零界战线.exe": - when: - bit: 64 os: windows @@ -646591,12 +648353,12 @@ Zzzzz: installDir: 3acg-qy: {} launch: - /win/win/霎时晴荫.exe: + "/win/win/霎时晴荫.exe": - when: - bit: 64 os: windows store: steam - /霎时晴荫.app/Contents/MacOS/霎时晴荫: + "/霎时晴荫.app/Contents/MacOS/霎时晴荫": - when: - os: mac store: steam @@ -646606,7 +648368,7 @@ Zzzzz: installDir: 青岚血枫: {} launch: - /game.exe: + "/game.exe": - when: - bit: 64 os: windows @@ -646617,7 +648379,7 @@ Zzzzz: installDir: Frog Jump: {} launch: - /Frog Jump.exe: + "/Frog Jump.exe": - when: - store: steam steam: @@ -646626,7 +648388,7 @@ Zzzzz: installDir: JMGame: {} launch: - /非一般职场.exe: + "/非一般职场.exe": - when: - store: steam steam: @@ -646635,7 +648397,7 @@ Zzzzz: installDir: 音灵 INVAXION: {} launch: - /INVAXION.exe: + "/INVAXION.exe": - when: - os: windows store: steam @@ -646648,15 +648410,15 @@ Zzzzz: installDir: fxl: {} launch: - /fxl.app: + "/fxl.app": - when: - os: mac store: steam - /fxl.exe: + "/fxl.exe": - when: - os: windows store: steam - /fxl.sh: + "/fxl.sh": - when: - os: linux store: steam @@ -646666,7 +648428,7 @@ Zzzzz: installDir: StormIsland: {} launch: - /MagicGame.exe: + "/MagicGame.exe": - when: - bit: 64 os: windows @@ -646677,7 +648439,7 @@ Zzzzz: installDir: FengLiuDaoKe: {} launch: - /Knife.exe: + "/Knife.exe": - when: - os: windows store: steam @@ -646687,7 +648449,7 @@ Zzzzz: installDir: Mountain: {} launch: - /Mountain.exe: + "/Mountain.exe": - when: - os: windows store: steam @@ -646697,7 +648459,7 @@ Zzzzz: installDir: Dragon of Hongkong: {} launch: - /Dragon of Hongkong.exe: + "/Dragon of Hongkong.exe": - when: - os: windows store: steam @@ -646707,7 +648469,7 @@ Zzzzz: installDir: HeroWars: {} launch: - /KingWar.exe: + "/KingWar.exe": - when: - os: windows store: steam @@ -646717,8 +648479,11 @@ Zzzzz: installDir: DiceWarrior: {} launch: - /DiceWarrior.exe: + "/DiceWarrior.exe": - when: + - bit: 32 + os: windows + store: steam - bit: 64 os: windows store: steam @@ -646734,7 +648499,7 @@ Zzzzz: installDir: A Ghost Around Me: {} launch: - /A Ghost Around Me.exe: + "/A Ghost Around Me.exe": - when: - store: steam steam: @@ -646743,15 +648508,15 @@ Zzzzz: installDir: GuichuOdyssey: {} launch: - /GuiChuOdyssey.app: + "/GuiChuOdyssey.app": - when: - os: mac store: steam - /GuiChuOdyssey.exe: + "/GuiChuOdyssey.exe": - when: - os: windows store: steam - /GuiChuOdyssey.sh: + "/GuiChuOdyssey.sh": - when: - os: linux store: steam @@ -646761,7 +648526,7 @@ Zzzzz: installDir: Magic_Tower_2018: {} launch: - /Game.exe: + "/Game.exe": - when: - store: steam steam: @@ -646770,8 +648535,8 @@ Zzzzz: installDir: 魔物娘物语: {} launch: - /mwnStory.exe: - - arguments: '-windowed' + "/mwnStory.exe": + - arguments: "-windowed" when: - os: windows store: steam @@ -646781,11 +648546,11 @@ Zzzzz: installDir: 魔物讨伐团: {} launch: - /Monster Slayers CN.exe: + "/Monster Slayers CN.exe": - when: - os: windows store: steam - /MonsterSlayers.app: + "/MonsterSlayers.app": - when: - os: mac store: steam @@ -646795,7 +648560,7 @@ Zzzzz: installDir: Magic_MechSuit_Akane: {} launch: - /akane.exe: + "/akane.exe": - when: - bit: 64 os: windows @@ -646806,11 +648571,11 @@ Zzzzz: installDir: (Malicious Dinner): {} launch: - /GameLauncher.app/Contents/MacOS/GameLauncher: + "/GameLauncher.app/Contents/MacOS/GameLauncher": - when: - os: mac store: steam - /GameLauncher.exe: + "/GameLauncher.exe": - when: - bit: 64 os: windows @@ -646821,7 +648586,7 @@ Zzzzz: installDir: xxl: {} launch: - /launcher/Launcher.exe: + "/launcher/Launcher.exe": - when: - os: windows store: steam @@ -646831,7 +648596,7 @@ Zzzzz: installDir: story of a servant maid: {} launch: - /krkr.exe: + "/krkr.exe": - when: - os: windows store: steam @@ -646841,7 +648606,7 @@ Zzzzz: installDir: TestPackage: {} launch: - /Start.exe: + "/Start.exe": - when: - os: windows store: steam @@ -646851,11 +648616,11 @@ Zzzzz: installDir: SteamPipe: {} launch: - /WhokilledherPC.exe: + "/WhokilledherPC.exe": - when: - os: windows store: steam - /Whokilledher_mac_v1.0_B.app: + "/Whokilledher_mac_v1.0_B.app": - when: - os: mac store: steam @@ -646865,21 +648630,21 @@ Zzzzz: installDir: 무연: {} launch: - /Contents/MacOS/Mac_Runner: + "/Contents/MacOS/Mac_Runner": - when: - os: mac store: steam - /game.exe: + "/game.exe": - when: - os: windows store: steam steam: id: 1077560 -'암전:Blackout': +"암전:Blackout": installDir: Blackout: {} launch: - /BlackOut.exe: + "/BlackOut.exe": - when: - bit: 64 os: windows @@ -646890,15 +648655,15 @@ Zzzzz: installDir: reality: {} launch: - /reality.app: + "/reality.app": - when: - os: mac store: steam - /reality.exe: + "/reality.exe": - when: - os: windows store: steam - /reality.sh: + "/reality.sh": - when: - os: linux store: steam diff --git a/data/missing.md b/data/missing.md index 3f70417e..6548b8a8 100644 --- a/data/missing.md +++ b/data/missing.md @@ -6,38 +6,29 @@ * [!Dead Pixels Adventure!](https://www.pcgamingwiki.com/wiki/?curid=96793) * [!LABrpgUP!](https://www.pcgamingwiki.com/wiki/?curid=95591) * [!Peace Phantom 2!](https://www.pcgamingwiki.com/wiki/?curid=88077) -* [¡Zombies! : Faulty Towers](https://www.pcgamingwiki.com/wiki/?curid=144137) -* [.Age](https://www.pcgamingwiki.com/wiki/?curid=122912) -* [.EXE](https://www.pcgamingwiki.com/wiki/?curid=33500) -* [.fall](https://www.pcgamingwiki.com/wiki/?curid=149967) -* [.kkrieger](https://www.pcgamingwiki.com/wiki/?curid=18872) +* ["LIFE" not found](https://www.pcgamingwiki.com/wiki/?curid=178903) +* [$1 Ride](https://www.pcgamingwiki.com/wiki/?curid=41997) * ['83](https://www.pcgamingwiki.com/wiki/?curid=136088) * ['90s Football Stars](https://www.pcgamingwiki.com/wiki/?curid=98644) * ['Member the Alamo?](https://www.pcgamingwiki.com/wiki/?curid=164909) * ['n Verlore Verstand](https://www.pcgamingwiki.com/wiki/?curid=43728) -* ["LIFE" not found](https://www.pcgamingwiki.com/wiki/?curid=178903) -* [《鬼畜战记:金坷垃传说》](https://www.pcgamingwiki.com/wiki/?curid=141421) * [***](https://www.pcgamingwiki.com/wiki/?curid=129579) -* [∀kashicforce](https://www.pcgamingwiki.com/wiki/?curid=132059) -* [</reality>](https://www.pcgamingwiki.com/wiki/?curid=57848) -* [~necromancy~Emily's Escape](https://www.pcgamingwiki.com/wiki/?curid=124006) -* [★Fallalypse ★ Disconnect ❄](https://www.pcgamingwiki.com/wiki/?curid=122127) -* [♞ The Tactics of War ♞](https://www.pcgamingwiki.com/wiki/?curid=112672) -* [✌ Johnny Rocket](https://www.pcgamingwiki.com/wiki/?curid=112872) -* [$1 Ride](https://www.pcgamingwiki.com/wiki/?curid=41997) -* [€100](https://www.pcgamingwiki.com/wiki/?curid=130129) +* [.Age](https://www.pcgamingwiki.com/wiki/?curid=122912) +* [.EXE](https://www.pcgamingwiki.com/wiki/?curid=33500) +* [.fall](https://www.pcgamingwiki.com/wiki/?curid=149967) +* [.kkrieger](https://www.pcgamingwiki.com/wiki/?curid=18872) * [0 Day](https://www.pcgamingwiki.com/wiki/?curid=53391) -* [0°N 0°W](https://www.pcgamingwiki.com/wiki/?curid=67968) * [0000](https://www.pcgamingwiki.com/wiki/?curid=77351) * [007: Licence to Kill](https://www.pcgamingwiki.com/wiki/?curid=176727) * [03.04](https://www.pcgamingwiki.com/wiki/?curid=124362) * [0Gravity](https://www.pcgamingwiki.com/wiki/?curid=141493) -* [1 ⛷ 1](https://www.pcgamingwiki.com/wiki/?curid=112420) +* [0°N 0°W](https://www.pcgamingwiki.com/wiki/?curid=67968) * [1 Hit Kill](https://www.pcgamingwiki.com/wiki/?curid=103249) -* [1-2-Swift](https://www.pcgamingwiki.com/wiki/?curid=57105) -* [1-Bit Revival: The Residuals of Null](https://www.pcgamingwiki.com/wiki/?curid=130036) +* [1 ⛷ 1](https://www.pcgamingwiki.com/wiki/?curid=112420) * [1, 2, 3... Bruegel!](https://www.pcgamingwiki.com/wiki/?curid=135461) * [1,000 Heads Among the Trees](https://www.pcgamingwiki.com/wiki/?curid=45316) +* [1-2-Swift](https://www.pcgamingwiki.com/wiki/?curid=57105) +* [1-Bit Revival: The Residuals of Null](https://www.pcgamingwiki.com/wiki/?curid=130036) * [1/4平方米的星空](https://www.pcgamingwiki.com/wiki/?curid=104871) * [10 Miles to Safety](https://www.pcgamingwiki.com/wiki/?curid=148685) * [10 Minute Barbarian](https://www.pcgamingwiki.com/wiki/?curid=44804) @@ -165,10 +156,10 @@ * [3 on 3 Super Robot Hockey](https://www.pcgamingwiki.com/wiki/?curid=130005) * [3 Skulls of the Toltecs](https://www.pcgamingwiki.com/wiki/?curid=142506) * [3 Stars of Destiny](https://www.pcgamingwiki.com/wiki/?curid=50502) +* [3, 2, 1, Survive!](https://www.pcgamingwiki.com/wiki/?curid=94796) * [3-D Ultra Lionel Train Town](https://www.pcgamingwiki.com/wiki/?curid=16494) * [3-D Ultra Radio Control Racers](https://www.pcgamingwiki.com/wiki/?curid=8402) * [3-in-1 Bundle Brain Trainings](https://www.pcgamingwiki.com/wiki/?curid=76223) -* [3, 2, 1, Survive!](https://www.pcgamingwiki.com/wiki/?curid=94796) * [3..2..1..Grenades!](https://www.pcgamingwiki.com/wiki/?curid=61546) * [30 days to Defence](https://www.pcgamingwiki.com/wiki/?curid=148727) * [30 Days to Survive](https://www.pcgamingwiki.com/wiki/?curid=87908) @@ -284,9 +275,9 @@ * [7 Wonders: Ancient Alien Makeover](https://www.pcgamingwiki.com/wiki/?curid=38392) * [7 Wonders: Magical Mystery Tour](https://www.pcgamingwiki.com/wiki/?curid=50646) * [7 Wonders: Treasures of Seven](https://www.pcgamingwiki.com/wiki/?curid=41331) +* [7'scarlet](https://www.pcgamingwiki.com/wiki/?curid=124370) * [7-in-1 Brain Sharpness Bundle](https://www.pcgamingwiki.com/wiki/?curid=93907) * [7-minute HOP](https://www.pcgamingwiki.com/wiki/?curid=120747) -* [7'scarlet](https://www.pcgamingwiki.com/wiki/?curid=124370) * [70 Seconds Survival](https://www.pcgamingwiki.com/wiki/?curid=104599) * [70 Seconds! Adventure](https://www.pcgamingwiki.com/wiki/?curid=144419) * [7776 II: Dwarven Greed](https://www.pcgamingwiki.com/wiki/?curid=149690) @@ -304,8 +295,8 @@ * [8-Bit Hordes](https://www.pcgamingwiki.com/wiki/?curid=35980) * [8-Bit Invaders!](https://www.pcgamingwiki.com/wiki/?curid=50927) * [8-in-1 IQ Scale Bundle](https://www.pcgamingwiki.com/wiki/?curid=79218) -* [80.08](https://www.pcgamingwiki.com/wiki/?curid=67195) * [80's Style](https://www.pcgamingwiki.com/wiki/?curid=97928) +* [80.08](https://www.pcgamingwiki.com/wiki/?curid=67195) * [868-HACK](https://www.pcgamingwiki.com/wiki/?curid=37648) * [87 Aftermath: A Rolling Ball Game](https://www.pcgamingwiki.com/wiki/?curid=171939) * [88 Heroes](https://www.pcgamingwiki.com/wiki/?curid=59079) @@ -320,7 +311,6 @@ * [9-Bit Armies: A Bit Too Far](https://www.pcgamingwiki.com/wiki/?curid=190625) * [9-nine-:Episode 1](https://www.pcgamingwiki.com/wiki/?curid=127539) * [9-nine-:Episode 2](https://www.pcgamingwiki.com/wiki/?curid=143339) -* [9: The Last Resort](https://www.pcgamingwiki.com/wiki/?curid=147680) * [9.03m](https://www.pcgamingwiki.com/wiki/?curid=15101) * [90 Days to Defence](https://www.pcgamingwiki.com/wiki/?curid=149525) * [90 Minute Fever](https://www.pcgamingwiki.com/wiki/?curid=42412) @@ -331,6 +321,7 @@ * [996的真实老板篇](https://www.pcgamingwiki.com/wiki/?curid=138758) * [999](https://www.pcgamingwiki.com/wiki/?curid=99320) * [99999](https://www.pcgamingwiki.com/wiki/?curid=104957) +* [9: The Last Resort](https://www.pcgamingwiki.com/wiki/?curid=147680) * [9Dragons](https://www.pcgamingwiki.com/wiki/?curid=57454) * [9Dragons : Kung Fu Arena](https://www.pcgamingwiki.com/wiki/?curid=126191) * [9Grids VR](https://www.pcgamingwiki.com/wiki/?curid=39966) @@ -577,8 +568,8 @@ * [Aborigenus](https://www.pcgamingwiki.com/wiki/?curid=113008) * [About Elise](https://www.pcgamingwiki.com/wiki/?curid=51519) * [Above](https://www.pcgamingwiki.com/wiki/?curid=89724) -* [Above - VR](https://www.pcgamingwiki.com/wiki/?curid=52289) * [Above & Below](https://www.pcgamingwiki.com/wiki/?curid=66719) +* [Above - VR](https://www.pcgamingwiki.com/wiki/?curid=52289) * [Above Earth](https://www.pcgamingwiki.com/wiki/?curid=144540) * [Above the Fold](https://www.pcgamingwiki.com/wiki/?curid=123536) * [Above: The Fallen](https://www.pcgamingwiki.com/wiki/?curid=89328) @@ -773,9 +764,9 @@ * [Adam - Lost Memories](https://www.pcgamingwiki.com/wiki/?curid=144230) * [Adam and Eve: The Game - Chapter 1](https://www.pcgamingwiki.com/wiki/?curid=44413) * [Adam Waste](https://www.pcgamingwiki.com/wiki/?curid=70248) -* [Adam: Robot World](https://www.pcgamingwiki.com/wiki/?curid=153129) * [Adam's Ascending](https://www.pcgamingwiki.com/wiki/?curid=145465) * [Adam's Venture Chronicles](https://www.pcgamingwiki.com/wiki/?curid=47007) +* [Adam: Robot World](https://www.pcgamingwiki.com/wiki/?curid=153129) * [Adapt](https://www.pcgamingwiki.com/wiki/?curid=135514) * [Adapt or Perish](https://www.pcgamingwiki.com/wiki/?curid=113424) * [ADAPTR](https://www.pcgamingwiki.com/wiki/?curid=112964) @@ -1067,7 +1058,6 @@ * [AI Rebellion](https://www.pcgamingwiki.com/wiki/?curid=61313) * [AI Vendetta](https://www.pcgamingwiki.com/wiki/?curid=144590) * [AI: Rampage](https://www.pcgamingwiki.com/wiki/?curid=44800) -* [AI*Shoujo](https://www.pcgamingwiki.com/wiki/?curid=166213) * [Aiball](https://www.pcgamingwiki.com/wiki/?curid=42605) * [Aiden](https://www.pcgamingwiki.com/wiki/?curid=81562) * [AIDS Simulator](https://www.pcgamingwiki.com/wiki/?curid=96877) @@ -1163,6 +1153,7 @@ * [Airtone](https://www.pcgamingwiki.com/wiki/?curid=63436) * [Aiso](https://www.pcgamingwiki.com/wiki/?curid=79192) * [Aivolution](https://www.pcgamingwiki.com/wiki/?curid=127579) +* [AI*Shoujo](https://www.pcgamingwiki.com/wiki/?curid=166213) * [Aka Manto](https://www.pcgamingwiki.com/wiki/?curid=184208) * [Akabeth Tactics](https://www.pcgamingwiki.com/wiki/?curid=130432) * [AKAI NOROI](https://www.pcgamingwiki.com/wiki/?curid=150600) @@ -1177,15 +1168,14 @@ * [Akuto: Showdown](https://www.pcgamingwiki.com/wiki/?curid=40173) * [Akuya](https://www.pcgamingwiki.com/wiki/?curid=55147) * [Al Emmo's Postcards from Anozira](https://www.pcgamingwiki.com/wiki/?curid=47661) -* [AL・FINE](https://www.pcgamingwiki.com/wiki/?curid=52708) * [Aladdin Chess Adventures](https://www.pcgamingwiki.com/wiki/?curid=93516) * [Aladdin Pinball](https://www.pcgamingwiki.com/wiki/?curid=151695) * [Aladdin’s Magic Carpet Racing](https://www.pcgamingwiki.com/wiki/?curid=93509) * [Aladin & the Enchanted Lamp](https://www.pcgamingwiki.com/wiki/?curid=90923) * [ALaLa: Wake Mi Up!](https://www.pcgamingwiki.com/wiki/?curid=62296) * [Alaloth: Champions of the Four Kingdoms](https://www.pcgamingwiki.com/wiki/?curid=137078) -* [Alan: Rift Breakers](https://www.pcgamingwiki.com/wiki/?curid=80442) * [Alan's Attitude](https://www.pcgamingwiki.com/wiki/?curid=148850) +* [Alan: Rift Breakers](https://www.pcgamingwiki.com/wiki/?curid=80442) * [ALARA Prime](https://www.pcgamingwiki.com/wiki/?curid=186080) * [Alarameth TD](https://www.pcgamingwiki.com/wiki/?curid=47529) * [Alaska](https://www.pcgamingwiki.com/wiki/?curid=82760) @@ -1434,6 +1424,7 @@ * [Alvo](https://www.pcgamingwiki.com/wiki/?curid=75157) * [Alvora Tactics](https://www.pcgamingwiki.com/wiki/?curid=62799) * [Always Higher](https://www.pcgamingwiki.com/wiki/?curid=42189) +* [AL・FINE](https://www.pcgamingwiki.com/wiki/?curid=52708) * [Amairo Chocolate](https://www.pcgamingwiki.com/wiki/?curid=170771) * [Amalgam](https://www.pcgamingwiki.com/wiki/?curid=179553) * [Amanda the Adventurer](https://www.pcgamingwiki.com/wiki/?curid=189513) @@ -1617,8 +1608,8 @@ * [Angel Express](https://www.pcgamingwiki.com/wiki/?curid=50998) * [Angel Flare](https://www.pcgamingwiki.com/wiki/?curid=65878) * [Angel Precario](https://www.pcgamingwiki.com/wiki/?curid=89680) -* [Angel, Devil, Elf and Me!](https://www.pcgamingwiki.com/wiki/?curid=146036) * [Angel's Love](https://www.pcgamingwiki.com/wiki/?curid=92771) +* [Angel, Devil, Elf and Me!](https://www.pcgamingwiki.com/wiki/?curid=146036) * [Angela's Odyssey](https://www.pcgamingwiki.com/wiki/?curid=134733) * [Angeldust](https://www.pcgamingwiki.com/wiki/?curid=53550) * [AngeliaLost](https://www.pcgamingwiki.com/wiki/?curid=95109) @@ -1743,6 +1734,7 @@ * [Another Brick in the Mall](https://www.pcgamingwiki.com/wiki/?curid=50919) * [Another Case Solved](https://www.pcgamingwiki.com/wiki/?curid=181060) * [Another Dawn](https://www.pcgamingwiki.com/wiki/?curid=139398) +* [Another Eden](https://www.pcgamingwiki.com/wiki/?curid=167093) * [Another Hardcore Game](https://www.pcgamingwiki.com/wiki/?curid=121137) * [Another Lost Phone: Laura's Story](https://www.pcgamingwiki.com/wiki/?curid=68691) * [Another Otter](https://www.pcgamingwiki.com/wiki/?curid=103329) @@ -1860,9 +1852,9 @@ * [Apple Pop](https://www.pcgamingwiki.com/wiki/?curid=144025) * [Apple Slash](https://www.pcgamingwiki.com/wiki/?curid=151058) * [AppleSnake](https://www.pcgamingwiki.com/wiki/?curid=66426) +* [AppleSnake2](https://www.pcgamingwiki.com/wiki/?curid=77152) * [AppleSnake: Christmas Story](https://www.pcgamingwiki.com/wiki/?curid=87053) * [AppleSnake: Halloween Adventures](https://www.pcgamingwiki.com/wiki/?curid=82012) -* [AppleSnake2](https://www.pcgamingwiki.com/wiki/?curid=77152) * [Applewood](https://www.pcgamingwiki.com/wiki/?curid=141946) * [Appointment With FEAR](https://www.pcgamingwiki.com/wiki/?curid=49709) * [Approaching Blocks](https://www.pcgamingwiki.com/wiki/?curid=42692) @@ -1983,8 +1975,8 @@ * [Are You Smarter Than a 5th Grader?: Make the Grade](https://www.pcgamingwiki.com/wiki/?curid=89870) * [AREA 4643](https://www.pcgamingwiki.com/wiki/?curid=124215) * [Area 51](https://www.pcgamingwiki.com/wiki/?curid=159391) -* [AREA 51 - DEFENCE](https://www.pcgamingwiki.com/wiki/?curid=143891) * [Area 51 (2019)](https://www.pcgamingwiki.com/wiki/?curid=144299) +* [AREA 51 - DEFENCE](https://www.pcgamingwiki.com/wiki/?curid=143891) * [Area 51 Defense](https://www.pcgamingwiki.com/wiki/?curid=149793) * [Area 86](https://www.pcgamingwiki.com/wiki/?curid=88231) * [Area Cooperation Economic Simulation: North Korea (ACES)](https://www.pcgamingwiki.com/wiki/?curid=125016) @@ -2137,7 +2129,6 @@ * [Art of War: Red Tides](https://www.pcgamingwiki.com/wiki/?curid=55476) * [Art Plunge](https://www.pcgamingwiki.com/wiki/?curid=149809) * [Artania](https://www.pcgamingwiki.com/wiki/?curid=68699) -* [ARTé: Mecenas](https://www.pcgamingwiki.com/wiki/?curid=121906) * [Artemis Spaceship Bridge Simulator](https://www.pcgamingwiki.com/wiki/?curid=37949) * [Artemis: God-Queen of The Hunt](https://www.pcgamingwiki.com/wiki/?curid=136647) * [ArtFormer the Game](https://www.pcgamingwiki.com/wiki/?curid=150501) @@ -2162,6 +2153,7 @@ * [Artisan: Going Home Again](https://www.pcgamingwiki.com/wiki/?curid=40022) * [Artistic Girl 1](https://www.pcgamingwiki.com/wiki/?curid=180370) * [Artizens](https://www.pcgamingwiki.com/wiki/?curid=48507) +* [ARTé: Mecenas](https://www.pcgamingwiki.com/wiki/?curid=121906) * [Arvale](https://www.pcgamingwiki.com/wiki/?curid=34028) * [Arzette: The Jewel of Faramore](https://www.pcgamingwiki.com/wiki/?curid=190404) * [Arzt Simulator](https://www.pcgamingwiki.com/wiki/?curid=152765) @@ -2241,7 +2233,6 @@ * [Asphalt 7: Heat](https://www.pcgamingwiki.com/wiki/?curid=24947) * [Asphalt Overdrive](https://www.pcgamingwiki.com/wiki/?curid=171874) * [Asphalt Street Storm Racing](https://www.pcgamingwiki.com/wiki/?curid=171872) -* [Asphalt Xtreme](https://www.pcgamingwiki.com/wiki/?curid=57248) * [Asphyxia](https://www.pcgamingwiki.com/wiki/?curid=33642) * [Aspire: Ina's Tale](https://www.pcgamingwiki.com/wiki/?curid=173772) * [ASRECorp](https://www.pcgamingwiki.com/wiki/?curid=42155) @@ -2275,8 +2266,6 @@ * [Asterism](https://www.pcgamingwiki.com/wiki/?curid=142259) * [Asterix & Obelix XXL 2: Mission: Las Vegum](https://www.pcgamingwiki.com/wiki/?curid=175914) * [Asterix & Obelix XXXL: The Ram from Hibernia](https://www.pcgamingwiki.com/wiki/?curid=182974) -* [Astérix & Obélix: Take on Caesar](https://www.pcgamingwiki.com/wiki/?curid=178386) -* [Astérix: Caesar's Challenge](https://www.pcgamingwiki.com/wiki/?curid=173305) * [Asterix: The Gallic War](https://www.pcgamingwiki.com/wiki/?curid=168583) * [Asterlode](https://www.pcgamingwiki.com/wiki/?curid=105133) * [Asteroid Babe](https://www.pcgamingwiki.com/wiki/?curid=93267) @@ -2323,8 +2312,8 @@ * [Astro Joust](https://www.pcgamingwiki.com/wiki/?curid=81498) * [Astro Lords: Oort Cloud](https://www.pcgamingwiki.com/wiki/?curid=44954) * [Astro Tripper](https://www.pcgamingwiki.com/wiki/?curid=9411) -* [Astro: The Beginning](https://www.pcgamingwiki.com/wiki/?curid=136449) * [Astro4x](https://www.pcgamingwiki.com/wiki/?curid=135250) +* [Astro: The Beginning](https://www.pcgamingwiki.com/wiki/?curid=136449) * [Astrobase Command](https://www.pcgamingwiki.com/wiki/?curid=75178) * [Astroderps](https://www.pcgamingwiki.com/wiki/?curid=35246) * [Astrodogs](https://www.pcgamingwiki.com/wiki/?curid=167733) @@ -2348,6 +2337,8 @@ * [AstroShift](https://www.pcgamingwiki.com/wiki/?curid=72282) * [AstroViking](https://www.pcgamingwiki.com/wiki/?curid=104259) * [Astrox: Hostile Space Excavation](https://www.pcgamingwiki.com/wiki/?curid=37975) +* [Astérix & Obélix: Take on Caesar](https://www.pcgamingwiki.com/wiki/?curid=178386) +* [Astérix: Caesar's Challenge](https://www.pcgamingwiki.com/wiki/?curid=173305) * [Asuka 120% Return BURNING Fest.](https://www.pcgamingwiki.com/wiki/?curid=168106) * [Asura](https://www.pcgamingwiki.com/wiki/?curid=54435) * [Asura the Striker](https://www.pcgamingwiki.com/wiki/?curid=190004) @@ -3190,6 +3181,7 @@ * [Bead](https://www.pcgamingwiki.com/wiki/?curid=65023) * [Beak Squadron](https://www.pcgamingwiki.com/wiki/?curid=124044) * [Beam](https://www.pcgamingwiki.com/wiki/?curid=135145) +* [BeamNG.drive](https://www.pcgamingwiki.com/wiki/?curid=9256) * [Bean Battles](https://www.pcgamingwiki.com/wiki/?curid=104837) * [Beans: The Coffee Shop Simulator](https://www.pcgamingwiki.com/wiki/?curid=62485) * [BeanVR](https://www.pcgamingwiki.com/wiki/?curid=62937) @@ -3300,9 +3292,9 @@ * [Beer Pong League](https://www.pcgamingwiki.com/wiki/?curid=121701) * [Beer Pong VR](https://www.pcgamingwiki.com/wiki/?curid=87265) * [Beer Ranger](https://www.pcgamingwiki.com/wiki/?curid=82123) -* [Beer, Babes and Dragons](https://www.pcgamingwiki.com/wiki/?curid=69667) * [Beer!](https://www.pcgamingwiki.com/wiki/?curid=81649) * [Beer'em Up](https://www.pcgamingwiki.com/wiki/?curid=120786) +* [Beer, Babes and Dragons](https://www.pcgamingwiki.com/wiki/?curid=69667) * [Beerd leaver](https://www.pcgamingwiki.com/wiki/?curid=95601) * [Beerman](https://www.pcgamingwiki.com/wiki/?curid=41860) * [Bees Knees](https://www.pcgamingwiki.com/wiki/?curid=68921) @@ -3734,7 +3726,6 @@ * [BladeShield](https://www.pcgamingwiki.com/wiki/?curid=53421) * [Bladestar](https://www.pcgamingwiki.com/wiki/?curid=44962) * [Bladestorm: Nightmare](https://www.pcgamingwiki.com/wiki/?curid=22912) -* [Blåfjell](https://www.pcgamingwiki.com/wiki/?curid=167077) * [Blaite](https://www.pcgamingwiki.com/wiki/?curid=55748) * [Blake and Mortimer: The Curse of the Thirty Denarii](https://www.pcgamingwiki.com/wiki/?curid=88105) * [Blake and Mortimer: The Tables of Babylon](https://www.pcgamingwiki.com/wiki/?curid=131505) @@ -3893,9 +3884,9 @@ * [Blokdodge](https://www.pcgamingwiki.com/wiki/?curid=72035) * [Blokin](https://www.pcgamingwiki.com/wiki/?curid=121655) * [Blonde Driver](https://www.pcgamingwiki.com/wiki/?curid=91108) -* [Blood 'n Bikinis](https://www.pcgamingwiki.com/wiki/?curid=68358) * [Blood & Gold: Caribbean!](https://www.pcgamingwiki.com/wiki/?curid=34288) * [Blood & Magic](https://www.pcgamingwiki.com/wiki/?curid=160985) +* [Blood 'n Bikinis](https://www.pcgamingwiki.com/wiki/?curid=68358) * [Blood Alloy: Reborn](https://www.pcgamingwiki.com/wiki/?curid=44347) * [Blood Ancestors](https://www.pcgamingwiki.com/wiki/?curid=72423) * [Blood and Lust](https://www.pcgamingwiki.com/wiki/?curid=138944) @@ -4007,8 +3998,6 @@ * [Blue Tear](https://www.pcgamingwiki.com/wiki/?curid=54411) * [Blue Time](https://www.pcgamingwiki.com/wiki/?curid=157041) * [Blue Whale](https://www.pcgamingwiki.com/wiki/?curid=75435) -* [Blue-Collar Astronaut](https://www.pcgamingwiki.com/wiki/?curid=58453) -* [Blue.](https://www.pcgamingwiki.com/wiki/?curid=89436) * [Blue's 123 Time Activities](https://www.pcgamingwiki.com/wiki/?curid=147412) * [Blue's ABC Time Activities](https://www.pcgamingwiki.com/wiki/?curid=147414) * [Blue's Art Time Activities](https://www.pcgamingwiki.com/wiki/?curid=147420) @@ -4016,6 +4005,8 @@ * [Blue's Journey](https://www.pcgamingwiki.com/wiki/?curid=168890) * [Blue's Reading Time Activities](https://www.pcgamingwiki.com/wiki/?curid=147418) * [Blue's Treasure Hunt](https://www.pcgamingwiki.com/wiki/?curid=147416) +* [Blue-Collar Astronaut](https://www.pcgamingwiki.com/wiki/?curid=58453) +* [Blue.](https://www.pcgamingwiki.com/wiki/?curid=89436) * [BlueberryNOVA](https://www.pcgamingwiki.com/wiki/?curid=90368) * [BlueFear](https://www.pcgamingwiki.com/wiki/?curid=120901) * [BlueGlow](https://www.pcgamingwiki.com/wiki/?curid=132075) @@ -4025,6 +4016,7 @@ * [Blueshift](https://www.pcgamingwiki.com/wiki/?curid=55490) * [Bluey: The Videogame](https://www.pcgamingwiki.com/wiki/?curid=189838) * [Blunt Force](https://www.pcgamingwiki.com/wiki/?curid=98280) +* [Blåfjell](https://www.pcgamingwiki.com/wiki/?curid=167077) * [Board Battlefield](https://www.pcgamingwiki.com/wiki/?curid=104303) * [Board Defenders](https://www.pcgamingwiki.com/wiki/?curid=38763) * [Board Games VR](https://www.pcgamingwiki.com/wiki/?curid=74287) @@ -4167,9 +4159,9 @@ * [Boom Fighters](https://www.pcgamingwiki.com/wiki/?curid=88241) * [Boom Island](https://www.pcgamingwiki.com/wiki/?curid=72357) * [Boom Squad](https://www.pcgamingwiki.com/wiki/?curid=88910) -* [Boom-Bahh](https://www.pcgamingwiki.com/wiki/?curid=63791) * [Boom! Boom!](https://www.pcgamingwiki.com/wiki/?curid=130680) * [Boom! Maze](https://www.pcgamingwiki.com/wiki/?curid=82099) +* [Boom-Bahh](https://www.pcgamingwiki.com/wiki/?curid=63791) * [Boomba!](https://www.pcgamingwiki.com/wiki/?curid=181064) * [Boomer Rampage](https://www.pcgamingwiki.com/wiki/?curid=78518) * [Boomerang Fu](https://www.pcgamingwiki.com/wiki/?curid=122752) @@ -4593,8 +4585,8 @@ * [Bubli](https://www.pcgamingwiki.com/wiki/?curid=123546) * [Bubonic: Outbreak](https://www.pcgamingwiki.com/wiki/?curid=44635) * [Bubsy: Paws on Fire!](https://www.pcgamingwiki.com/wiki/?curid=128531) -* [Buccaneers, Bounty & Boom!](https://www.pcgamingwiki.com/wiki/?curid=58658) * [Buccaneers!](https://www.pcgamingwiki.com/wiki/?curid=150952) +* [Buccaneers, Bounty & Boom!](https://www.pcgamingwiki.com/wiki/?curid=58658) * [Buck](https://www.pcgamingwiki.com/wiki/?curid=39638) * [Buck Zombies](https://www.pcgamingwiki.com/wiki/?curid=144023) * [Bucket Balls](https://www.pcgamingwiki.com/wiki/?curid=96015) @@ -4694,8 +4686,8 @@ * [Bunker Constructor](https://www.pcgamingwiki.com/wiki/?curid=35192) * [Bunker Punks](https://www.pcgamingwiki.com/wiki/?curid=37507) * [Bunker Rush](https://www.pcgamingwiki.com/wiki/?curid=93921) -* [Bunny - The Horror Game](https://www.pcgamingwiki.com/wiki/?curid=107988) * [Bunny & Piggy](https://www.pcgamingwiki.com/wiki/?curid=54082) +* [Bunny - The Horror Game](https://www.pcgamingwiki.com/wiki/?curid=107988) * [Bunny Adventure](https://www.pcgamingwiki.com/wiki/?curid=82081) * [Bunny Bash](https://www.pcgamingwiki.com/wiki/?curid=43316) * [Bunny Battle Arena](https://www.pcgamingwiki.com/wiki/?curid=98498) @@ -4856,11 +4848,11 @@ * [CaesarIA](https://www.pcgamingwiki.com/wiki/?curid=48917) * [CAFE 0 ~The Sleeping Beast~](https://www.pcgamingwiki.com/wiki/?curid=52834) * [Cafe Crush](https://www.pcgamingwiki.com/wiki/?curid=139265) -* [Café International](https://www.pcgamingwiki.com/wiki/?curid=124603) * [Cafe Owner Simulator](https://www.pcgamingwiki.com/wiki/?curid=178544) -* [Café Stella and the Reapers' Butterflies](https://www.pcgamingwiki.com/wiki/?curid=177844) * [Caffeine](https://www.pcgamingwiki.com/wiki/?curid=46090) * [Caffeine: Victoria's Legacy](https://www.pcgamingwiki.com/wiki/?curid=105607) +* [Café International](https://www.pcgamingwiki.com/wiki/?curid=124603) +* [Café Stella and the Reapers' Butterflies](https://www.pcgamingwiki.com/wiki/?curid=177844) * [CAGE](https://www.pcgamingwiki.com/wiki/?curid=53095) * [Cage of the Succubi](https://www.pcgamingwiki.com/wiki/?curid=135975) * [Cahertis](https://www.pcgamingwiki.com/wiki/?curid=157396) @@ -5018,8 +5010,8 @@ * [Captain Starshot](https://www.pcgamingwiki.com/wiki/?curid=135686) * [Captain The Runner](https://www.pcgamingwiki.com/wiki/?curid=98616) * [Captain vs Sky Pirates](https://www.pcgamingwiki.com/wiki/?curid=72768) -* [Captain:Training](https://www.pcgamingwiki.com/wiki/?curid=103831) * [Captain's Tail](https://www.pcgamingwiki.com/wiki/?curid=124637) +* [Captain:Training](https://www.pcgamingwiki.com/wiki/?curid=103831) * [CaptainMarlene](https://www.pcgamingwiki.com/wiki/?curid=134444) * [Captive](https://www.pcgamingwiki.com/wiki/?curid=88878) * [Captive of Fortune](https://www.pcgamingwiki.com/wiki/?curid=79083) @@ -5236,11 +5228,11 @@ * [Cat survival](https://www.pcgamingwiki.com/wiki/?curid=57962) * [Cat vs. Corgis](https://www.pcgamingwiki.com/wiki/?curid=67251) * [Cat Warfare](https://www.pcgamingwiki.com/wiki/?curid=110198) -* [Cat-o-Combo!](https://www.pcgamingwiki.com/wiki/?curid=135705) * [Cat's Bar](https://www.pcgamingwiki.com/wiki/?curid=87393) * [Cat's Lover](https://www.pcgamingwiki.com/wiki/?curid=68432) * [Cat's Puzzle /ᐠ。ꞈ。ᐟ\](https://www.pcgamingwiki.com/wiki/?curid=121546) * [Cat's Yarn](https://www.pcgamingwiki.com/wiki/?curid=99566) +* [Cat-o-Combo!](https://www.pcgamingwiki.com/wiki/?curid=135705) * [Catacomb](https://www.pcgamingwiki.com/wiki/?curid=21645) * [Catacomb 3-D: The Descent](https://www.pcgamingwiki.com/wiki/?curid=13703) * [Catacomb Abyss](https://www.pcgamingwiki.com/wiki/?curid=21648) @@ -5432,10 +5424,10 @@ * [Championsheep Rally](https://www.pcgamingwiki.com/wiki/?curid=60436) * [Championship Lode Runner](https://www.pcgamingwiki.com/wiki/?curid=76487) * [Championship Manager 2](https://www.pcgamingwiki.com/wiki/?curid=154803) -* [Championship Manager 2: Including 96/97 Updates](https://www.pcgamingwiki.com/wiki/?curid=154808) * [Championship Manager 2006](https://www.pcgamingwiki.com/wiki/?curid=154801) * [Championship Manager 2007](https://www.pcgamingwiki.com/wiki/?curid=41392) * [Championship Manager 2010](https://www.pcgamingwiki.com/wiki/?curid=41240) +* [Championship Manager 2: Including 96/97 Updates](https://www.pcgamingwiki.com/wiki/?curid=154808) * [Championship Manager 3](https://www.pcgamingwiki.com/wiki/?curid=1782) * [Championship Manager 4](https://www.pcgamingwiki.com/wiki/?curid=154747) * [Championship Manager 93](https://www.pcgamingwiki.com/wiki/?curid=154810) @@ -5567,7 +5559,6 @@ * [Chiaro and the Elixir of Life](https://www.pcgamingwiki.com/wiki/?curid=82207) * [Chibi Volleyball](https://www.pcgamingwiki.com/wiki/?curid=139308) * [Chibisu's Costume Combat](https://www.pcgamingwiki.com/wiki/?curid=113430) -* [Chicken ~Boiled Egg~](https://www.pcgamingwiki.com/wiki/?curid=93927) * [Chicken Chase](https://www.pcgamingwiki.com/wiki/?curid=51338) * [Chicken Daddy](https://www.pcgamingwiki.com/wiki/?curid=88049) * [Chicken Farm 2K17](https://www.pcgamingwiki.com/wiki/?curid=76590) @@ -5581,6 +5572,7 @@ * [Chicken VR](https://www.pcgamingwiki.com/wiki/?curid=107810) * [Chicken Wars](https://www.pcgamingwiki.com/wiki/?curid=65600) * [Chicken with Chainguns](https://www.pcgamingwiki.com/wiki/?curid=74562) +* [Chicken ~Boiled Egg~](https://www.pcgamingwiki.com/wiki/?curid=93927) * [Chickens Madness](https://www.pcgamingwiki.com/wiki/?curid=77353) * [Chicks and Tricks VR](https://www.pcgamingwiki.com/wiki/?curid=149460) * [Chicku](https://www.pcgamingwiki.com/wiki/?curid=43177) @@ -5631,8 +5623,8 @@ * [Chinomikon](https://www.pcgamingwiki.com/wiki/?curid=68448) * [Chio Hero](https://www.pcgamingwiki.com/wiki/?curid=93335) * [Chip](https://www.pcgamingwiki.com/wiki/?curid=38567) -* [CHIP: Rescuer of Kittens](https://www.pcgamingwiki.com/wiki/?curid=157389) * [Chip's Challenge 2](https://www.pcgamingwiki.com/wiki/?curid=47737) +* [CHIP: Rescuer of Kittens](https://www.pcgamingwiki.com/wiki/?curid=157389) * [Chipmonk!](https://www.pcgamingwiki.com/wiki/?curid=128702) * [Chipper and Sons Lumber Co.](https://www.pcgamingwiki.com/wiki/?curid=165552) * [Chippy](https://www.pcgamingwiki.com/wiki/?curid=135445) @@ -5849,8 +5841,8 @@ * [CitiesCorp Concept - Build Everything on Your Own](https://www.pcgamingwiki.com/wiki/?curid=43265) * [Citizen of Rome - Dynasty Ascendant](https://www.pcgamingwiki.com/wiki/?curid=135467) * [Citizens: Far Lands](https://www.pcgamingwiki.com/wiki/?curid=182681) -* [Citroën C4 Robot](https://www.pcgamingwiki.com/wiki/?curid=186386) * [Citrouille](https://www.pcgamingwiki.com/wiki/?curid=104789) +* [Citroën C4 Robot](https://www.pcgamingwiki.com/wiki/?curid=186386) * [City Balls VR](https://www.pcgamingwiki.com/wiki/?curid=78202) * [City Beneath the Surface](https://www.pcgamingwiki.com/wiki/?curid=175408) * [City Blocks](https://www.pcgamingwiki.com/wiki/?curid=109738) @@ -5930,9 +5922,9 @@ * [Clash of Spells](https://www.pcgamingwiki.com/wiki/?curid=94318) * [Clash of the Monsters](https://www.pcgamingwiki.com/wiki/?curid=43618) * [Clash of Vessels VR](https://www.pcgamingwiki.com/wiki/?curid=59324) +* [CLASH! - Battle Arena](https://www.pcgamingwiki.com/wiki/?curid=127850) * [Clash: Artifacts of Chaos](https://www.pcgamingwiki.com/wiki/?curid=169783) * [Clash: Mutants Vs Pirates](https://www.pcgamingwiki.com/wiki/?curid=90444) -* [CLASH! - Battle Arena](https://www.pcgamingwiki.com/wiki/?curid=127850) * [Classic British Motor Racing](https://www.pcgamingwiki.com/wiki/?curid=88330) * [Classic Car Racing](https://www.pcgamingwiki.com/wiki/?curid=59777) * [Classic Card Game Spades](https://www.pcgamingwiki.com/wiki/?curid=155556) @@ -6072,8 +6064,8 @@ * [Club Soccer Director Pro 2020](https://www.pcgamingwiki.com/wiki/?curid=140385) * [Cluckles' Adventure](https://www.pcgamingwiki.com/wiki/?curid=59523) * [Cludbugz's Twisted Magic](https://www.pcgamingwiki.com/wiki/?curid=66470) -* [Clue: Murder at Boddy Mansion](https://www.pcgamingwiki.com/wiki/?curid=7605) * [Clue/Cluedo: The Classic Mystery Game](https://www.pcgamingwiki.com/wiki/?curid=93672) +* [Clue: Murder at Boddy Mansion](https://www.pcgamingwiki.com/wiki/?curid=7605) * [Clumsy Chef](https://www.pcgamingwiki.com/wiki/?curid=81524) * [Clumsy Fred](https://www.pcgamingwiki.com/wiki/?curid=64807) * [Clumsy Knight](https://www.pcgamingwiki.com/wiki/?curid=60746) @@ -6653,8 +6645,8 @@ * [Cowboy Life Simulator](https://www.pcgamingwiki.com/wiki/?curid=151605) * [Cowboy Revenge](https://www.pcgamingwiki.com/wiki/?curid=64280) * [Cowboy Zombie](https://www.pcgamingwiki.com/wiki/?curid=58979) -* [Cowboy: Attack of Wild Animal](https://www.pcgamingwiki.com/wiki/?curid=93641) * [Cowboy's Adventure](https://www.pcgamingwiki.com/wiki/?curid=64745) +* [Cowboy: Attack of Wild Animal](https://www.pcgamingwiki.com/wiki/?curid=93641) * [Cowboys vs Hipsters](https://www.pcgamingwiki.com/wiki/?curid=153450) * [Cowpocalypse - Episode 1](https://www.pcgamingwiki.com/wiki/?curid=136649) * [Cows VS Vikings](https://www.pcgamingwiki.com/wiki/?curid=122197) @@ -6966,8 +6958,8 @@ * [Crusaders of the Lost Idols](https://www.pcgamingwiki.com/wiki/?curid=46082) * [Crusaders: Thy Kingdom Come](https://www.pcgamingwiki.com/wiki/?curid=22260) * [Crush](https://www.pcgamingwiki.com/wiki/?curid=63298) -* [Crush (Salt & Pixel)](https://www.pcgamingwiki.com/wiki/?curid=95085) * [Crush & Squash](https://www.pcgamingwiki.com/wiki/?curid=76018) +* [Crush (Salt & Pixel)](https://www.pcgamingwiki.com/wiki/?curid=95085) * [Crush Online](https://www.pcgamingwiki.com/wiki/?curid=39035) * [Crush the Berries](https://www.pcgamingwiki.com/wiki/?curid=69316) * [Crush Your Enemies](https://www.pcgamingwiki.com/wiki/?curid=38002) @@ -7030,14 +7022,14 @@ * [Cthulhu](https://www.pcgamingwiki.com/wiki/?curid=87968) * [Cthulhu Mythos RPG -The Sleeping Girl of the Miasma Sea-](https://www.pcgamingwiki.com/wiki/?curid=112692) * [Cthulhu Realms](https://www.pcgamingwiki.com/wiki/?curid=35138) -* [Cthulhu: Books of Ancients](https://www.pcgamingwiki.com/wiki/?curid=151244) * [Cthulhu's Catharsis](https://www.pcgamingwiki.com/wiki/?curid=141642) +* [Cthulhu: Books of Ancients](https://www.pcgamingwiki.com/wiki/?curid=151244) * [Cuban Missile Crisis](https://www.pcgamingwiki.com/wiki/?curid=48387) * [Cuban Missile Crisis: Ice Crusade](https://www.pcgamingwiki.com/wiki/?curid=48385) * [Cubanoids](https://www.pcgamingwiki.com/wiki/?curid=121433) * [CuBB](https://www.pcgamingwiki.com/wiki/?curid=149752) -* [Cube - The Jumper](https://www.pcgamingwiki.com/wiki/?curid=93712) * [CuBe (2019)](https://www.pcgamingwiki.com/wiki/?curid=149412) +* [Cube - The Jumper](https://www.pcgamingwiki.com/wiki/?curid=93712) * [CUBE 332](https://www.pcgamingwiki.com/wiki/?curid=112760) * [Cube Color](https://www.pcgamingwiki.com/wiki/?curid=76012) * [Cube Creator X](https://www.pcgamingwiki.com/wiki/?curid=153272) @@ -7298,7 +7290,7 @@ * [Cypress Inheritance: The Beginning](https://www.pcgamingwiki.com/wiki/?curid=50592) * [Cyto](https://www.pcgamingwiki.com/wiki/?curid=49963) * [D Series Off Road Racing Simulation](https://www.pcgamingwiki.com/wiki/?curid=47865) -* [D: The Game](https://www.pcgamingwiki.com/wiki/?curid=35367) +* [D'LIRIUM: The Golden Rogue](https://www.pcgamingwiki.com/wiki/?curid=122580) * [D.A.: Pursuit of Justice - The Sunset Boulevard Deuce](https://www.pcgamingwiki.com/wiki/?curid=157902) * [D.A.M.A.G.E](https://www.pcgamingwiki.com/wiki/?curid=138910) * [D.A.T.A](https://www.pcgamingwiki.com/wiki/?curid=113268) @@ -7315,11 +7307,11 @@ * [D.U.S.T.](https://www.pcgamingwiki.com/wiki/?curid=45994) * [D.W. the Picky Eater](https://www.pcgamingwiki.com/wiki/?curid=188748) * [D.W.A.R.F.S.](https://www.pcgamingwiki.com/wiki/?curid=50544) -* [D'LIRIUM: The Golden Rogue](https://www.pcgamingwiki.com/wiki/?curid=122580) * [D/Generation HD](https://www.pcgamingwiki.com/wiki/?curid=51031) * [D1896](https://www.pcgamingwiki.com/wiki/?curid=153238) * [D20 Dungeons](https://www.pcgamingwiki.com/wiki/?curid=150339) * [D3D Inside](https://www.pcgamingwiki.com/wiki/?curid=150349) +* [D: The Game](https://www.pcgamingwiki.com/wiki/?curid=35367) * [Da Capo III](https://www.pcgamingwiki.com/wiki/?curid=55608) * [Daaang!](https://www.pcgamingwiki.com/wiki/?curid=144959) * [Daath Origins](https://www.pcgamingwiki.com/wiki/?curid=65732) @@ -7369,7 +7361,6 @@ * [Damaged In Transit](https://www.pcgamingwiki.com/wiki/?curid=145075) * [Damascus Gear Operation Osaka HD Edition](https://www.pcgamingwiki.com/wiki/?curid=89204) * [Damascus Gear Operation Tokyo HD](https://www.pcgamingwiki.com/wiki/?curid=67812) -* [Dämmerlicht](https://www.pcgamingwiki.com/wiki/?curid=58112) * [Damn Virgins](https://www.pcgamingwiki.com/wiki/?curid=47049) * [Damn!](https://www.pcgamingwiki.com/wiki/?curid=69962) * [Damnation City of Death](https://www.pcgamingwiki.com/wiki/?curid=48535) @@ -7722,10 +7713,10 @@ * [De Fobos y Deimos](https://www.pcgamingwiki.com/wiki/?curid=98538) * [De Mambo](https://www.pcgamingwiki.com/wiki/?curid=89276) * [De Profundis](https://www.pcgamingwiki.com/wiki/?curid=125910) -* [De-Void](https://www.pcgamingwiki.com/wiki/?curid=36972) -* [DE:VOID](https://www.pcgamingwiki.com/wiki/?curid=150715) * [De'Vine: The Card Battles](https://www.pcgamingwiki.com/wiki/?curid=129910) * [De'Vine: World of Shadows](https://www.pcgamingwiki.com/wiki/?curid=92925) +* [De-Void](https://www.pcgamingwiki.com/wiki/?curid=36972) +* [DE:VOID](https://www.pcgamingwiki.com/wiki/?curid=150715) * [Dead](https://www.pcgamingwiki.com/wiki/?curid=63502) * [DEAD (2019)](https://www.pcgamingwiki.com/wiki/?curid=137062) * [Dead Acres](https://www.pcgamingwiki.com/wiki/?curid=34725) @@ -8179,11 +8170,11 @@ * [Demon Sword: Incubus](https://www.pcgamingwiki.com/wiki/?curid=179335) * [Demon Truck](https://www.pcgamingwiki.com/wiki/?curid=41495) * [Demon Turf: Neon Splash](https://www.pcgamingwiki.com/wiki/?curid=177760) -* [Demon: Hell Keeper](https://www.pcgamingwiki.com/wiki/?curid=144291) * [Demon's Crystals](https://www.pcgamingwiki.com/wiki/?curid=43454) * [Demon's Rise - Lords of Chaos](https://www.pcgamingwiki.com/wiki/?curid=92195) * [Demon's Rise - War for the Deep](https://www.pcgamingwiki.com/wiki/?curid=92755) * [Demon's Winter](https://www.pcgamingwiki.com/wiki/?curid=173826) +* [Demon: Hell Keeper](https://www.pcgamingwiki.com/wiki/?curid=144291) * [Demonheart](https://www.pcgamingwiki.com/wiki/?curid=58838) * [Demonheart: Hunters](https://www.pcgamingwiki.com/wiki/?curid=122566) * [Demoniaca: Everlasting Night](https://www.pcgamingwiki.com/wiki/?curid=144923) @@ -8244,8 +8235,8 @@ * [DERU - The Art of Cooperation](https://www.pcgamingwiki.com/wiki/?curid=72403) * [Descending](https://www.pcgamingwiki.com/wiki/?curid=94271) * [Descent](https://www.pcgamingwiki.com/wiki/?curid=3516) -* [Descent - Silence of Mind](https://www.pcgamingwiki.com/wiki/?curid=64319) * [Descent (upcoming)](https://www.pcgamingwiki.com/wiki/?curid=29690) +* [Descent - Silence of Mind](https://www.pcgamingwiki.com/wiki/?curid=64319) * [Descent II](https://www.pcgamingwiki.com/wiki/?curid=13822) * [Descent of Man](https://www.pcgamingwiki.com/wiki/?curid=142109) * [Desecration of Wings](https://www.pcgamingwiki.com/wiki/?curid=82145) @@ -8361,8 +8352,8 @@ * [Detonation Racing](https://www.pcgamingwiki.com/wiki/?curid=169671) * [Detour](https://www.pcgamingwiki.com/wiki/?curid=40978) * [Detrita Battlegrounds](https://www.pcgamingwiki.com/wiki/?curid=67213) -* [Deus Ex Machina](https://www.pcgamingwiki.com/wiki/?curid=50743) * [DEUS EX MACHINA](https://www.pcgamingwiki.com/wiki/?curid=149432) +* [Deus Ex Machina](https://www.pcgamingwiki.com/wiki/?curid=50743) * [Deus Ex Machina 2](https://www.pcgamingwiki.com/wiki/?curid=48491) * [DEUS EX MACHINA: Stage Zero](https://www.pcgamingwiki.com/wiki/?curid=153798) * [Deus Ex: Mankind Divided - VR Experience](https://www.pcgamingwiki.com/wiki/?curid=56978) @@ -8762,8 +8753,8 @@ * [Dog Jam](https://www.pcgamingwiki.com/wiki/?curid=109356) * [Dog Sled Saga](https://www.pcgamingwiki.com/wiki/?curid=37610) * [Dog Theatre](https://www.pcgamingwiki.com/wiki/?curid=66001) -* [Dog-O](https://www.pcgamingwiki.com/wiki/?curid=151525) * [Dog's Quest](https://www.pcgamingwiki.com/wiki/?curid=98728) +* [Dog-O](https://www.pcgamingwiki.com/wiki/?curid=151525) * [Dogcoin](https://www.pcgamingwiki.com/wiki/?curid=68420) * [Dogfight 1942](https://www.pcgamingwiki.com/wiki/?curid=40729) * [Dogfight Elite](https://www.pcgamingwiki.com/wiki/?curid=33852) @@ -8817,6 +8808,7 @@ * [Dominions 3: The Awakening](https://www.pcgamingwiki.com/wiki/?curid=36460) * [Dominions II: The Ascension Wars](https://www.pcgamingwiki.com/wiki/?curid=177304) * [Dominions: Priests, Prophets & Pretenders](https://www.pcgamingwiki.com/wiki/?curid=177299) +* [Dominique Pamplemousse](https://www.pcgamingwiki.com/wiki/?curid=50586) * [Domino](https://www.pcgamingwiki.com/wiki/?curid=73203) * [Domino Craft VR](https://www.pcgamingwiki.com/wiki/?curid=55484) * [Domino Dungeon](https://www.pcgamingwiki.com/wiki/?curid=72296) @@ -8837,9 +8829,9 @@ * [Don't Cut Your Hand](https://www.pcgamingwiki.com/wiki/?curid=60466) * [Don't Die](https://www.pcgamingwiki.com/wiki/?curid=141651) * [Don't Die Dateless, Dummy!](https://www.pcgamingwiki.com/wiki/?curid=44048) +* [Don't Die! (2018)](https://www.pcgamingwiki.com/wiki/?curid=94561) * [Don't Die, Minerva!](https://www.pcgamingwiki.com/wiki/?curid=156200) * [Don't Die: Survival](https://www.pcgamingwiki.com/wiki/?curid=59353) -* [Don't Die! (2018)](https://www.pcgamingwiki.com/wiki/?curid=94561) * [Don't Disturb](https://www.pcgamingwiki.com/wiki/?curid=37052) * [Don't Drop the Bass](https://www.pcgamingwiki.com/wiki/?curid=42327) * [Don't Drop the Soap](https://www.pcgamingwiki.com/wiki/?curid=39803) @@ -8855,8 +8847,8 @@ * [Don't Kill the Cow](https://www.pcgamingwiki.com/wiki/?curid=150406) * [Don't Let Go!](https://www.pcgamingwiki.com/wiki/?curid=39944) * [Don't Look Back](https://www.pcgamingwiki.com/wiki/?curid=58785) -* [Don't Look Back - VR](https://www.pcgamingwiki.com/wiki/?curid=127854) * [Don't Look Back (2018)](https://www.pcgamingwiki.com/wiki/?curid=137255) +* [Don't Look Back - VR](https://www.pcgamingwiki.com/wiki/?curid=127854) * [Don't Look Down](https://www.pcgamingwiki.com/wiki/?curid=109100) * [Don't Mess Up](https://www.pcgamingwiki.com/wiki/?curid=56455) * [Don't Move](https://www.pcgamingwiki.com/wiki/?curid=27246) @@ -9037,10 +9029,10 @@ * [Draconic Echoes: The Ardent War](https://www.pcgamingwiki.com/wiki/?curid=152687) * [Draconic Order VR](https://www.pcgamingwiki.com/wiki/?curid=51971) * [Draconic Route](https://www.pcgamingwiki.com/wiki/?curid=149009) -* [Dracula: The Days of Gore](https://www.pcgamingwiki.com/wiki/?curid=90709) -* [Dracula: Vampires vs. Zombies](https://www.pcgamingwiki.com/wiki/?curid=64610) * [Dracula's Library](https://www.pcgamingwiki.com/wiki/?curid=64542) * [Dracula's Library 2](https://www.pcgamingwiki.com/wiki/?curid=78104) +* [Dracula: The Days of Gore](https://www.pcgamingwiki.com/wiki/?curid=90709) +* [Dracula: Vampires vs. Zombies](https://www.pcgamingwiki.com/wiki/?curid=64610) * [Draft Day Sports: College Basketball 2017](https://www.pcgamingwiki.com/wiki/?curid=75490) * [Draft Day Sports: College Basketball 2018](https://www.pcgamingwiki.com/wiki/?curid=88698) * [Draft Day Sports: College Basketball 2019](https://www.pcgamingwiki.com/wiki/?curid=127425) @@ -9123,8 +9115,6 @@ * [Dragon Throne: Battle of Red Cliffs](https://www.pcgamingwiki.com/wiki/?curid=157640) * [Dragon Valley](https://www.pcgamingwiki.com/wiki/?curid=112848) * [Dragon World](https://www.pcgamingwiki.com/wiki/?curid=122160) -* [Dragon: A Game About a Dragon](https://www.pcgamingwiki.com/wiki/?curid=48096) -* [Dragon: The Game](https://www.pcgamingwiki.com/wiki/?curid=49373) * [Dragon's Checkers](https://www.pcgamingwiki.com/wiki/?curid=104995) * [Dragon's Dogma II](https://www.pcgamingwiki.com/wiki/?curid=187798) * [Dragon's Dungeon: Awakening](https://www.pcgamingwiki.com/wiki/?curid=67827) @@ -9134,6 +9124,8 @@ * [Dragon's Lunch](https://www.pcgamingwiki.com/wiki/?curid=69238) * [Dragon's Prophet](https://www.pcgamingwiki.com/wiki/?curid=40594) * [Dragon's Wake](https://www.pcgamingwiki.com/wiki/?curid=38095) +* [Dragon: A Game About a Dragon](https://www.pcgamingwiki.com/wiki/?curid=48096) +* [Dragon: The Game](https://www.pcgamingwiki.com/wiki/?curid=49373) * [Dragonary](https://www.pcgamingwiki.com/wiki/?curid=181606) * [DragonBlast VR](https://www.pcgamingwiki.com/wiki/?curid=37028) * [DragonClash](https://www.pcgamingwiki.com/wiki/?curid=144657) @@ -9255,8 +9247,8 @@ * [Dreamland Solitaire: Dragon's Fury](https://www.pcgamingwiki.com/wiki/?curid=149233) * [Dreamlike Worlds](https://www.pcgamingwiki.com/wiki/?curid=59011) * [DREAMO](https://www.pcgamingwiki.com/wiki/?curid=150588) -* [Dreamo VR](https://www.pcgamingwiki.com/wiki/?curid=182471) * [DREAMO VR](https://www.pcgamingwiki.com/wiki/?curid=151030) +* [Dreamo VR](https://www.pcgamingwiki.com/wiki/?curid=182471) * [Dreams in the Witch House](https://www.pcgamingwiki.com/wiki/?curid=178349) * [Dreams of Dali](https://www.pcgamingwiki.com/wiki/?curid=86969) * [Dreams of Desire: Definitive Edition](https://www.pcgamingwiki.com/wiki/?curid=173744) @@ -9417,6 +9409,7 @@ * [DUCK CASINO: BULLET](https://www.pcgamingwiki.com/wiki/?curid=113694) * [Duck Dynasty](https://www.pcgamingwiki.com/wiki/?curid=49514) * [Duck Force](https://www.pcgamingwiki.com/wiki/?curid=41549) +* [Duck Game](https://www.pcgamingwiki.com/wiki/?curid=27815) * [Duck Hunt Challenge](https://www.pcgamingwiki.com/wiki/?curid=122340) * [Duck Hunting](https://www.pcgamingwiki.com/wiki/?curid=60738) * [Duck in Town - A Rising Knight](https://www.pcgamingwiki.com/wiki/?curid=144985) @@ -9532,8 +9525,8 @@ * [Dungeon Travelers 2: The Royal Library & the Monster Seal](https://www.pcgamingwiki.com/wiki/?curid=187649) * [Dungeon Warfare 2](https://www.pcgamingwiki.com/wiki/?curid=94296) * [Dungeon Witches](https://www.pcgamingwiki.com/wiki/?curid=172220) -* [Dungeon-Party](https://www.pcgamingwiki.com/wiki/?curid=40646) * [Dungeon's Barrage](https://www.pcgamingwiki.com/wiki/?curid=77295) +* [Dungeon-Party](https://www.pcgamingwiki.com/wiki/?curid=40646) * [Dungeonbowl - Knockout Edition](https://www.pcgamingwiki.com/wiki/?curid=40765) * [Dungeoncraft](https://www.pcgamingwiki.com/wiki/?curid=34129) * [Dungeoneer](https://www.pcgamingwiki.com/wiki/?curid=77612) @@ -9643,6 +9636,7 @@ * [Dystopian Nights](https://www.pcgamingwiki.com/wiki/?curid=137468) * [Dystopy](https://www.pcgamingwiki.com/wiki/?curid=58293) * [Dystoria](https://www.pcgamingwiki.com/wiki/?curid=51615) +* [Dämmerlicht](https://www.pcgamingwiki.com/wiki/?curid=58112) * [E-Ball](https://www.pcgamingwiki.com/wiki/?curid=153549) * [E-River Cabin Journal](https://www.pcgamingwiki.com/wiki/?curid=42307) * [E-Sport Manager](https://www.pcgamingwiki.com/wiki/?curid=79957) @@ -9670,7 +9664,6 @@ * [Earth Space Colonies](https://www.pcgamingwiki.com/wiki/?curid=35136) * [Earth Under Siege](https://www.pcgamingwiki.com/wiki/?curid=49139) * [Earth: Year 2066](https://www.pcgamingwiki.com/wiki/?curid=81390) -* [Earth’s Dawn](https://www.pcgamingwiki.com/wiki/?curid=54367) * [Earthbreakers](https://www.pcgamingwiki.com/wiki/?curid=155085) * [Earthfall](https://www.pcgamingwiki.com/wiki/?curid=59401) * [Earthlingo](https://www.pcgamingwiki.com/wiki/?curid=148824) @@ -9680,6 +9673,7 @@ * [Earthtongue](https://www.pcgamingwiki.com/wiki/?curid=37764) * [Earthworm Jim](https://www.pcgamingwiki.com/wiki/?curid=8277) * [Earthworms](https://www.pcgamingwiki.com/wiki/?curid=66305) +* [Earth’s Dawn](https://www.pcgamingwiki.com/wiki/?curid=54367) * [East 73](https://www.pcgamingwiki.com/wiki/?curid=78504) * [East Tower - Akio](https://www.pcgamingwiki.com/wiki/?curid=48080) * [East Tower - Kuon](https://www.pcgamingwiki.com/wiki/?curid=47469) @@ -9871,7 +9865,6 @@ * [El Tango de la Muerte](https://www.pcgamingwiki.com/wiki/?curid=72415) * [El Tesoro de Isla Alcachofa](https://www.pcgamingwiki.com/wiki/?curid=153579) * [Elaine](https://www.pcgamingwiki.com/wiki/?curid=57784) -* [Élan Vital](https://www.pcgamingwiki.com/wiki/?curid=127522) * [Elansar](https://www.pcgamingwiki.com/wiki/?curid=45025) * [Elasto Mania II](https://www.pcgamingwiki.com/wiki/?curid=174643) * [Elastrix](https://www.pcgamingwiki.com/wiki/?curid=49092) @@ -10028,8 +10021,8 @@ * [Emerland Solitaire: Endless Journey](https://www.pcgamingwiki.com/wiki/?curid=42287) * [Emily Archer and the Curse of Tutankhamun](https://www.pcgamingwiki.com/wiki/?curid=156338) * [Emily Wants to Play](https://www.pcgamingwiki.com/wiki/?curid=45338) -* [Emily: Displaced](https://www.pcgamingwiki.com/wiki/?curid=42077) * [Emily's Adventure](https://www.pcgamingwiki.com/wiki/?curid=100194) +* [Emily: Displaced](https://www.pcgamingwiki.com/wiki/?curid=42077) * [Emission VR](https://www.pcgamingwiki.com/wiki/?curid=54303) * [Emitters](https://www.pcgamingwiki.com/wiki/?curid=121004) * [EMMA: Lost in Memories](https://www.pcgamingwiki.com/wiki/?curid=144057) @@ -10296,8 +10289,8 @@ * [ERR - 001](https://www.pcgamingwiki.com/wiki/?curid=54937) * [Errant Heart](https://www.pcgamingwiki.com/wiki/?curid=149263) * [Errant Kingdom](https://www.pcgamingwiki.com/wiki/?curid=150886) -* [Error: Human Not Found](https://www.pcgamingwiki.com/wiki/?curid=79330) * [Error143](https://www.pcgamingwiki.com/wiki/?curid=179904) +* [Error: Human Not Found](https://www.pcgamingwiki.com/wiki/?curid=79330) * [Ersatz](https://www.pcgamingwiki.com/wiki/?curid=70096) * [Erstwhile Tower](https://www.pcgamingwiki.com/wiki/?curid=144125) * [ERTX 2080TI Mining clicker](https://www.pcgamingwiki.com/wiki/?curid=110732) @@ -10406,10 +10399,10 @@ * [Escape Whisper Valley](https://www.pcgamingwiki.com/wiki/?curid=129511) * [Escape Zolstar](https://www.pcgamingwiki.com/wiki/?curid=145216) * [Escape Zombie Land](https://www.pcgamingwiki.com/wiki/?curid=76333) +* [Escape!](https://www.pcgamingwiki.com/wiki/?curid=88081) * [Escape: Close Call](https://www.pcgamingwiki.com/wiki/?curid=43997) * [Escape: Sierra Leone](https://www.pcgamingwiki.com/wiki/?curid=52954) * [Escape: VR](https://www.pcgamingwiki.com/wiki/?curid=61114) -* [Escape!](https://www.pcgamingwiki.com/wiki/?curid=88081) * [EscapeeZ](https://www.pcgamingwiki.com/wiki/?curid=135238) * [EscapeRoute](https://www.pcgamingwiki.com/wiki/?curid=129669) * [EscapeVR: The Basement](https://www.pcgamingwiki.com/wiki/?curid=52916) @@ -10443,7 +10436,6 @@ * [Estiman](https://www.pcgamingwiki.com/wiki/?curid=53880) * [Eswoosh](https://www.pcgamingwiki.com/wiki/?curid=109080) * [Etaria](https://www.pcgamingwiki.com/wiki/?curid=51026) -* [Été](https://www.pcgamingwiki.com/wiki/?curid=136092) * [Eternal Battlefield](https://www.pcgamingwiki.com/wiki/?curid=153703) * [ETERNAL BLOOD](https://www.pcgamingwiki.com/wiki/?curid=156797) * [Eternal Card Game](https://www.pcgamingwiki.com/wiki/?curid=53634) @@ -10477,8 +10469,8 @@ * [Eternam](https://www.pcgamingwiki.com/wiki/?curid=80601) * [Eternights](https://www.pcgamingwiki.com/wiki/?curid=178030) * [Eternity Warriors VR](https://www.pcgamingwiki.com/wiki/?curid=69687) -* [Eternity: The Last Unicorn](https://www.pcgamingwiki.com/wiki/?curid=92385) * [Eternity's Child](https://www.pcgamingwiki.com/wiki/?curid=41346) +* [Eternity: The Last Unicorn](https://www.pcgamingwiki.com/wiki/?curid=92385) * [Eternum EX](https://www.pcgamingwiki.com/wiki/?curid=105327) * [Ethanol in dungeon](https://www.pcgamingwiki.com/wiki/?curid=135163) * [Ether Awakening](https://www.pcgamingwiki.com/wiki/?curid=64996) @@ -10635,8 +10627,8 @@ * [Exile of the Gods](https://www.pcgamingwiki.com/wiki/?curid=141007) * [Exile Squadron](https://www.pcgamingwiki.com/wiki/?curid=150478) * [Exile to Death](https://www.pcgamingwiki.com/wiki/?curid=56382) -* [Exile: Escape From the Pit](https://www.pcgamingwiki.com/wiki/?curid=168560) * [Exile's End](https://www.pcgamingwiki.com/wiki/?curid=46614) +* [Exile: Escape From the Pit](https://www.pcgamingwiki.com/wiki/?curid=168560) * [Exiled Kingdoms](https://www.pcgamingwiki.com/wiki/?curid=82792) * [Exiled to the Void](https://www.pcgamingwiki.com/wiki/?curid=114874) * [Exilium](https://www.pcgamingwiki.com/wiki/?curid=184682) @@ -10714,8 +10706,8 @@ * [Explosive Pursuit](https://www.pcgamingwiki.com/wiki/?curid=123707) * [Explottens](https://www.pcgamingwiki.com/wiki/?curid=63270) * [Export Simulator](https://www.pcgamingwiki.com/wiki/?curid=95254) -* [Exposure](https://www.pcgamingwiki.com/wiki/?curid=94358) * [EXPOSURE](https://www.pcgamingwiki.com/wiki/?curid=108656) +* [Exposure](https://www.pcgamingwiki.com/wiki/?curid=94358) * [Express Raider](https://www.pcgamingwiki.com/wiki/?curid=166891) * [Exsys](https://www.pcgamingwiki.com/wiki/?curid=150747) * [Exteria](https://www.pcgamingwiki.com/wiki/?curid=52241) @@ -10759,6 +10751,7 @@ * [Eye Of Plunder](https://www.pcgamingwiki.com/wiki/?curid=150317) * [Eye of the Owl - Bosch VR](https://www.pcgamingwiki.com/wiki/?curid=55726) * [Eye of the Temple](https://www.pcgamingwiki.com/wiki/?curid=90431) +* [Eyes in the Dark](https://www.pcgamingwiki.com/wiki/?curid=179492) * [Eyes of Fear](https://www.pcgamingwiki.com/wiki/?curid=132320) * [Eyes of the Killer](https://www.pcgamingwiki.com/wiki/?curid=179128) * [Eyestorm](https://www.pcgamingwiki.com/wiki/?curid=36720) @@ -10799,11 +10792,11 @@ * [Fabulous - Angela's Wedding Disaster](https://www.pcgamingwiki.com/wiki/?curid=92803) * [Fabulous - New York to LA](https://www.pcgamingwiki.com/wiki/?curid=149279) * [Fabulous Food Truck](https://www.pcgamingwiki.com/wiki/?curid=42181) -* [Façade](https://www.pcgamingwiki.com/wiki/?curid=90494) * [Face Au Train](https://www.pcgamingwiki.com/wiki/?curid=89527) * [Face It - A game to fight inner demons](https://www.pcgamingwiki.com/wiki/?curid=47335) * [Face Your Demons](https://www.pcgamingwiki.com/wiki/?curid=144232) * [Faceless](https://www.pcgamingwiki.com/wiki/?curid=70852) +* [Faces of War](https://www.pcgamingwiki.com/wiki/?curid=34370) * [Faceted Flight](https://www.pcgamingwiki.com/wiki/?curid=51147) * [Factions: Origins of Malu](https://www.pcgamingwiki.com/wiki/?curid=48413) * [Factory Balls](https://www.pcgamingwiki.com/wiki/?curid=132694) @@ -10863,8 +10856,8 @@ * [Fairyland: Power Dice](https://www.pcgamingwiki.com/wiki/?curid=99586) * [Fairyland: The Guild](https://www.pcgamingwiki.com/wiki/?curid=109826) * [Fairytale Mosaics Beauty and Beast](https://www.pcgamingwiki.com/wiki/?curid=152799) -* [Fairytale Solitaire: Red Riding Hood](https://www.pcgamingwiki.com/wiki/?curid=141162) * [Fairytale Solitaire. Witch Charms](https://www.pcgamingwiki.com/wiki/?curid=156639) +* [Fairytale Solitaire: Red Riding Hood](https://www.pcgamingwiki.com/wiki/?curid=141162) * [Faith of Danschant: Hereafter](https://www.pcgamingwiki.com/wiki/?curid=178700) * [Faith of Fate](https://www.pcgamingwiki.com/wiki/?curid=138578) * [Fajoce](https://www.pcgamingwiki.com/wiki/?curid=90362) @@ -10900,6 +10893,7 @@ * [Fallen Emiya](https://www.pcgamingwiki.com/wiki/?curid=104543) * [Fallen Empires](https://www.pcgamingwiki.com/wiki/?curid=128599) * [Fallen Hearts](https://www.pcgamingwiki.com/wiki/?curid=156400) +* [Fallen Hero: Rebirth](https://www.pcgamingwiki.com/wiki/?curid=87173) * [Fallen Kingdom](https://www.pcgamingwiki.com/wiki/?curid=74932) * [Fallen Knight](https://www.pcgamingwiki.com/wiki/?curid=152330) * [Fallen Legion: Revenants](https://www.pcgamingwiki.com/wiki/?curid=181164) @@ -11073,7 +11067,6 @@ * [Farming 6-in-1 bundle](https://www.pcgamingwiki.com/wiki/?curid=42746) * [Farming Giant](https://www.pcgamingwiki.com/wiki/?curid=40524) * [Farming Life](https://www.pcgamingwiki.com/wiki/?curid=128371) -* [Farming Simulator 16](https://www.pcgamingwiki.com/wiki/?curid=168192) * [Farming Village](https://www.pcgamingwiki.com/wiki/?curid=144059) * [Farming World](https://www.pcgamingwiki.com/wiki/?curid=50324) * [Farmington County](https://www.pcgamingwiki.com/wiki/?curid=148886) @@ -11137,10 +11130,10 @@ * [Fate Seeker](https://www.pcgamingwiki.com/wiki/?curid=100446) * [Fate Seeker 2](https://www.pcgamingwiki.com/wiki/?curid=168585) * [Fate Tectonics](https://www.pcgamingwiki.com/wiki/?curid=38279) -* [FATE: The Traitor Soul](https://www.pcgamingwiki.com/wiki/?curid=49705) -* [FATE: Undiscovered Realms](https://www.pcgamingwiki.com/wiki/?curid=50416) * [Fate/Extella: Link](https://www.pcgamingwiki.com/wiki/?curid=131093) * [Fate/Hollow Ataraxia](https://www.pcgamingwiki.com/wiki/?curid=164556) +* [FATE: The Traitor Soul](https://www.pcgamingwiki.com/wiki/?curid=49705) +* [FATE: Undiscovered Realms](https://www.pcgamingwiki.com/wiki/?curid=50416) * [Fated Era](https://www.pcgamingwiki.com/wiki/?curid=127273) * [Fated Kingdom](https://www.pcgamingwiki.com/wiki/?curid=92959) * [Fated Souls](https://www.pcgamingwiki.com/wiki/?curid=47051) @@ -11163,8 +11156,8 @@ * [Fatty Rabbit Hole](https://www.pcgamingwiki.com/wiki/?curid=68102) * [Fatty Space](https://www.pcgamingwiki.com/wiki/?curid=136552) * [Faucet VR](https://www.pcgamingwiki.com/wiki/?curid=87479) -* [Fault - Silence the Pedant](https://www.pcgamingwiki.com/wiki/?curid=64341) * [Fault & Fragment](https://www.pcgamingwiki.com/wiki/?curid=151647) +* [Fault - Silence the Pedant](https://www.pcgamingwiki.com/wiki/?curid=64341) * [Fault: Elder Orb](https://www.pcgamingwiki.com/wiki/?curid=179619) * [Faulty Apprentice](https://www.pcgamingwiki.com/wiki/?curid=126395) * [Faust: The Seven Games of the Soul](https://www.pcgamingwiki.com/wiki/?curid=165380) @@ -11174,6 +11167,7 @@ * [Favor Chess](https://www.pcgamingwiki.com/wiki/?curid=134450) * [Favorite Miner](https://www.pcgamingwiki.com/wiki/?curid=81544) * [Fazbear Nightmare](https://www.pcgamingwiki.com/wiki/?curid=44339) +* [Façade](https://www.pcgamingwiki.com/wiki/?curid=90494) * [FBI Mania](https://www.pcgamingwiki.com/wiki/?curid=57279) * [FCK: Lille Leo Bruger Bolden](https://www.pcgamingwiki.com/wiki/?curid=126673) * [Fear For Freedom](https://www.pcgamingwiki.com/wiki/?curid=69551) @@ -11445,8 +11439,8 @@ * [Firefighters - The Simulation](https://www.pcgamingwiki.com/wiki/?curid=36600) * [Firefighters 2014](https://www.pcgamingwiki.com/wiki/?curid=50232) * [Firefighting Simulator - The Squad](https://www.pcgamingwiki.com/wiki/?curid=69080) -* [Fireflies](https://www.pcgamingwiki.com/wiki/?curid=46536) * [FIREFLIES](https://www.pcgamingwiki.com/wiki/?curid=121805) +* [Fireflies](https://www.pcgamingwiki.com/wiki/?curid=46536) * [Fireflies (2018)](https://www.pcgamingwiki.com/wiki/?curid=137318) * [Firefly Online Cortex](https://www.pcgamingwiki.com/wiki/?curid=48863) * [FIREGROUND](https://www.pcgamingwiki.com/wiki/?curid=128024) @@ -11502,6 +11496,7 @@ * [Fishy Dungeon Delving](https://www.pcgamingwiki.com/wiki/?curid=134411) * [Fishy2](https://www.pcgamingwiki.com/wiki/?curid=156292) * [Fisk](https://www.pcgamingwiki.com/wiki/?curid=79058) +* [Fission Superstar X](https://www.pcgamingwiki.com/wiki/?curid=89702) * [Fist of Brave](https://www.pcgamingwiki.com/wiki/?curid=82117) * [Fist Of Heaven & Hell](https://www.pcgamingwiki.com/wiki/?curid=141182) * [Fist of love](https://www.pcgamingwiki.com/wiki/?curid=114336) @@ -11694,8 +11689,8 @@ * [Fluid Lander - フリュードランダー](https://www.pcgamingwiki.com/wiki/?curid=135057) * [Fluid Simulation](https://www.pcgamingwiki.com/wiki/?curid=150186) * [Flunkerne: Kaos og Kalypso](https://www.pcgamingwiki.com/wiki/?curid=89749) -* [Flunkerne: På Månen](https://www.pcgamingwiki.com/wiki/?curid=88317) * [Flunkerne: Pirater](https://www.pcgamingwiki.com/wiki/?curid=87747) +* [Flunkerne: På Månen](https://www.pcgamingwiki.com/wiki/?curid=88317) * [Flunkerne: Robotter](https://www.pcgamingwiki.com/wiki/?curid=82477) * [Flunkerne: Superskurke](https://www.pcgamingwiki.com/wiki/?curid=89746) * [Flurius](https://www.pcgamingwiki.com/wiki/?curid=91935) @@ -11937,8 +11932,8 @@ * [Forsaken Uprising](https://www.pcgamingwiki.com/wiki/?curid=60625) * [Forsaken World](https://www.pcgamingwiki.com/wiki/?curid=40959) * [Forsekir:First Invasion](https://www.pcgamingwiki.com/wiki/?curid=144947) -* [Fort](https://www.pcgamingwiki.com/wiki/?curid=104977) * [FORT](https://www.pcgamingwiki.com/wiki/?curid=139320) +* [Fort](https://www.pcgamingwiki.com/wiki/?curid=104977) * [Fort Awesome](https://www.pcgamingwiki.com/wiki/?curid=58449) * [Fort Boyard](https://www.pcgamingwiki.com/wiki/?curid=136879) * [Fort Defense](https://www.pcgamingwiki.com/wiki/?curid=47823) @@ -11982,8 +11977,8 @@ * [Fox and Bunny](https://www.pcgamingwiki.com/wiki/?curid=135063) * [Fox Hime](https://www.pcgamingwiki.com/wiki/?curid=72365) * [Fox soldier](https://www.pcgamingwiki.com/wiki/?curid=141204) -* [Fox-Trot Over Run](https://www.pcgamingwiki.com/wiki/?curid=152661) * [Fox's Holiday](https://www.pcgamingwiki.com/wiki/?curid=150137) +* [Fox-Trot Over Run](https://www.pcgamingwiki.com/wiki/?curid=152661) * [Foxfall](https://www.pcgamingwiki.com/wiki/?curid=156053) * [Foxfolk](https://www.pcgamingwiki.com/wiki/?curid=66641) * [Foxus](https://www.pcgamingwiki.com/wiki/?curid=62835) @@ -12298,7 +12293,6 @@ * [Furry Shakespeare: To Date Or Not To Date Cat Girls?](https://www.pcgamingwiki.com/wiki/?curid=130494) * [Furry Stories: Alpha-Male](https://www.pcgamingwiki.com/wiki/?curid=155941) * [FurryFury](https://www.pcgamingwiki.com/wiki/?curid=130617) -* [Fürst Marigors Rache an den Tobis](https://www.pcgamingwiki.com/wiki/?curid=173428) * [Fururu Project : Ruby](https://www.pcgamingwiki.com/wiki/?curid=126144) * [Furwind](https://www.pcgamingwiki.com/wiki/?curid=105233) * [Fury Fighter VR](https://www.pcgamingwiki.com/wiki/?curid=92881) @@ -12356,6 +12350,7 @@ * [FX Fighter](https://www.pcgamingwiki.com/wiki/?curid=97824) * [FX Football - The Manager for Every Football Fan](https://www.pcgamingwiki.com/wiki/?curid=60639) * [FYD](https://www.pcgamingwiki.com/wiki/?curid=78042) +* [Fürst Marigors Rache an den Tobis](https://www.pcgamingwiki.com/wiki/?curid=173428) * [G Prime](https://www.pcgamingwiki.com/wiki/?curid=36125) * [G-Ball](https://www.pcgamingwiki.com/wiki/?curid=50190) * [G-Dino's Jungle Adventure](https://www.pcgamingwiki.com/wiki/?curid=94755) @@ -12380,8 +12375,8 @@ * [Gachimuchi Rebirth](https://www.pcgamingwiki.com/wiki/?curid=126047) * [Gachimuchi Reloaded](https://www.pcgamingwiki.com/wiki/?curid=82077) * [Gachimuchi: The Card Game](https://www.pcgamingwiki.com/wiki/?curid=129705) -* [Gadget – Invention, Travel, & Adventure](https://www.pcgamingwiki.com/wiki/?curid=187319) * [Gadget & The Gadgetinis](https://www.pcgamingwiki.com/wiki/?curid=174606) +* [Gadget – Invention, Travel, & Adventure](https://www.pcgamingwiki.com/wiki/?curid=187319) * [Gahkthun of the Golden Lightning](https://www.pcgamingwiki.com/wiki/?curid=43568) * [Gai Travel](https://www.pcgamingwiki.com/wiki/?curid=92945) * [Gaia](https://www.pcgamingwiki.com/wiki/?curid=105619) @@ -12392,8 +12387,8 @@ * [Gaijin Troubles](https://www.pcgamingwiki.com/wiki/?curid=151002) * [GAIN](https://www.pcgamingwiki.com/wiki/?curid=33818) * [Gakuen Club](https://www.pcgamingwiki.com/wiki/?curid=59403) -* [Gal-X-E](https://www.pcgamingwiki.com/wiki/?curid=34789) * [Gal*Gun VR](https://www.pcgamingwiki.com/wiki/?curid=67806) +* [Gal-X-E](https://www.pcgamingwiki.com/wiki/?curid=34789) * [Gala Collider](https://www.pcgamingwiki.com/wiki/?curid=155456) * [Galacatraz: Eject Equip Escape](https://www.pcgamingwiki.com/wiki/?curid=80607) * [Galacide](https://www.pcgamingwiki.com/wiki/?curid=37782) @@ -12577,12 +12572,12 @@ * [Gare Sapphire Mechs](https://www.pcgamingwiki.com/wiki/?curid=48308) * [Garenburg Woods](https://www.pcgamingwiki.com/wiki/?curid=76620) * [Garfield Lasagna Party](https://www.pcgamingwiki.com/wiki/?curid=191225) -* [Garfield: A Tail of Two Kitties](https://www.pcgamingwiki.com/wiki/?curid=88443) -* [Garfield: Caught in the Act](https://www.pcgamingwiki.com/wiki/?curid=88455) -* [Garfield: It's All About Phonics - Kindergarten](https://www.pcgamingwiki.com/wiki/?curid=90683) * [Garfield's It's All About Thinking Skills](https://www.pcgamingwiki.com/wiki/?curid=90681) * [Garfield's Mad About Cats](https://www.pcgamingwiki.com/wiki/?curid=90687) * [Garfield's Wild Ride](https://www.pcgamingwiki.com/wiki/?curid=92477) +* [Garfield: A Tail of Two Kitties](https://www.pcgamingwiki.com/wiki/?curid=88443) +* [Garfield: Caught in the Act](https://www.pcgamingwiki.com/wiki/?curid=88455) +* [Garfield: It's All About Phonics - Kindergarten](https://www.pcgamingwiki.com/wiki/?curid=90683) * [Gargoyles Remastered](https://www.pcgamingwiki.com/wiki/?curid=189638) * [Garin Game: Curse of Revival Ceremony](https://www.pcgamingwiki.com/wiki/?curid=96093) * [Garlock Online](https://www.pcgamingwiki.com/wiki/?curid=42820) @@ -12635,7 +12630,6 @@ * [Gazzel Quest, The Five Magic Stones](https://www.pcgamingwiki.com/wiki/?curid=42297) * [GAZZLERS](https://www.pcgamingwiki.com/wiki/?curid=182714) * [GE Neuro](https://www.pcgamingwiki.com/wiki/?curid=38690) -* [Géants disparus VR](https://www.pcgamingwiki.com/wiki/?curid=123629) * [Gear](https://www.pcgamingwiki.com/wiki/?curid=135095) * [Gear City Against Chaos](https://www.pcgamingwiki.com/wiki/?curid=135227) * [Gear Gauntlet](https://www.pcgamingwiki.com/wiki/?curid=52570) @@ -12947,7 +12941,6 @@ * [Glitchpunk](https://www.pcgamingwiki.com/wiki/?curid=170946) * [Glitchrunners](https://www.pcgamingwiki.com/wiki/?curid=43680) * [Glo](https://www.pcgamingwiki.com/wiki/?curid=70531) -* [Glö Phlox](https://www.pcgamingwiki.com/wiki/?curid=114902) * [Global Adventures](https://www.pcgamingwiki.com/wiki/?curid=64636) * [Global ATC Simulator](https://www.pcgamingwiki.com/wiki/?curid=49369) * [Global Aviation Dream](https://www.pcgamingwiki.com/wiki/?curid=153925) @@ -12985,7 +12978,6 @@ * [Glow Chess](https://www.pcgamingwiki.com/wiki/?curid=104007) * [Glowfish](https://www.pcgamingwiki.com/wiki/?curid=40893) * [Glowing Sokoban](https://www.pcgamingwiki.com/wiki/?curid=64309) -* [Glück Auf](https://www.pcgamingwiki.com/wiki/?curid=46827) * [Gluon](https://www.pcgamingwiki.com/wiki/?curid=61754) * [Glutton Man](https://www.pcgamingwiki.com/wiki/?curid=82127) * [Glyph-Bound: Kotodama](https://www.pcgamingwiki.com/wiki/?curid=180661) @@ -12993,6 +12985,8 @@ * [Glypha II](https://www.pcgamingwiki.com/wiki/?curid=163913) * [Glypha III](https://www.pcgamingwiki.com/wiki/?curid=163916) * [Glyphs Apprentice](https://www.pcgamingwiki.com/wiki/?curid=59469) +* [Glö Phlox](https://www.pcgamingwiki.com/wiki/?curid=114902) +* [Glück Auf](https://www.pcgamingwiki.com/wiki/?curid=46827) * [GM Forge - Virtual Tabletop](https://www.pcgamingwiki.com/wiki/?curid=93991) * [Gnarltoof's Revenge](https://www.pcgamingwiki.com/wiki/?curid=33525) * [Gnome Light](https://www.pcgamingwiki.com/wiki/?curid=66933) @@ -13030,9 +13024,9 @@ * [Go Outside Simulator](https://www.pcgamingwiki.com/wiki/?curid=121801) * [Go To Bed: Survive The Night](https://www.pcgamingwiki.com/wiki/?curid=45876) * [Go to IT](https://www.pcgamingwiki.com/wiki/?curid=121847) +* [Go! Go! Radio: 8-Bit Edition](https://www.pcgamingwiki.com/wiki/?curid=76955) * [GO-4-Soldier-1](https://www.pcgamingwiki.com/wiki/?curid=152753) * [Go-Kart Racing](https://www.pcgamingwiki.com/wiki/?curid=92101) -* [Go! Go! Radio: 8-Bit Edition](https://www.pcgamingwiki.com/wiki/?curid=76955) * [Goal! The Club Manager](https://www.pcgamingwiki.com/wiki/?curid=183124) * [Goalie Challenge VR](https://www.pcgamingwiki.com/wiki/?curid=57430) * [Goalie VR](https://www.pcgamingwiki.com/wiki/?curid=71910) @@ -13288,8 +13282,8 @@ * [Granny](https://www.pcgamingwiki.com/wiki/?curid=121671) * [Granny 3](https://www.pcgamingwiki.com/wiki/?curid=170956) * [Granny Simulator](https://www.pcgamingwiki.com/wiki/?curid=134894) -* [Granny: Chapter Two](https://www.pcgamingwiki.com/wiki/?curid=155985) * [Granny's Grantastic Granventure](https://www.pcgamingwiki.com/wiki/?curid=102619) +* [Granny: Chapter Two](https://www.pcgamingwiki.com/wiki/?curid=155985) * [Grape Jelly](https://www.pcgamingwiki.com/wiki/?curid=89316) * [Grapple](https://www.pcgamingwiki.com/wiki/?curid=37713) * [Grapple Whip](https://www.pcgamingwiki.com/wiki/?curid=141381) @@ -13432,8 +13426,8 @@ * [Grey Hack](https://www.pcgamingwiki.com/wiki/?curid=77908) * [Grey Phobia](https://www.pcgamingwiki.com/wiki/?curid=36916) * [Grey Zone](https://www.pcgamingwiki.com/wiki/?curid=72907) -* [Grey: An Alien Dream](https://www.pcgamingwiki.com/wiki/?curid=151028) * [Grey's Anatomy: The Video Game](https://www.pcgamingwiki.com/wiki/?curid=59996) +* [Grey: An Alien Dream](https://www.pcgamingwiki.com/wiki/?curid=151028) * [Greyfox](https://www.pcgamingwiki.com/wiki/?curid=48631) * [Greyhound Manager 2 Rebooted](https://www.pcgamingwiki.com/wiki/?curid=57111) * [Grid Clash VR](https://www.pcgamingwiki.com/wiki/?curid=143807) @@ -13531,6 +13525,7 @@ * [Grounds of Glory](https://www.pcgamingwiki.com/wiki/?curid=128010) * [Grove flowers](https://www.pcgamingwiki.com/wiki/?curid=128211) * [Grow: Wild West](https://www.pcgamingwiki.com/wiki/?curid=94475) +* [Growing Up](https://www.pcgamingwiki.com/wiki/?curid=174260) * [Growlanser](https://www.pcgamingwiki.com/wiki/?curid=183995) * [GrowRilla](https://www.pcgamingwiki.com/wiki/?curid=141626) * [Grudge TV](https://www.pcgamingwiki.com/wiki/?curid=153022) @@ -13715,6 +13710,7 @@ * [GyroShooter](https://www.pcgamingwiki.com/wiki/?curid=78152) * [GyroSphere Trials](https://www.pcgamingwiki.com/wiki/?curid=66826) * [Gythol Granditti: The Crypt of Darkness](https://www.pcgamingwiki.com/wiki/?curid=140806) +* [Géants disparus VR](https://www.pcgamingwiki.com/wiki/?curid=123629) * [H Chan: Girl](https://www.pcgamingwiki.com/wiki/?curid=136580) * [H-Hour: World's Elite](https://www.pcgamingwiki.com/wiki/?curid=47859) * [H-Rescue](https://www.pcgamingwiki.com/wiki/?curid=149386) @@ -13742,8 +13738,8 @@ * [Hacker Evolution - 2019 HD Remaster](https://www.pcgamingwiki.com/wiki/?curid=149553) * [Hacker Evolution: Immersion](https://www.pcgamingwiki.com/wiki/?curid=41968) * [Hacker Series](https://www.pcgamingwiki.com/wiki/?curid=50775) -* [Hacker.exe](https://www.pcgamingwiki.com/wiki/?curid=110230) * [Hacker's Beat](https://www.pcgamingwiki.com/wiki/?curid=46298) +* [Hacker.exe](https://www.pcgamingwiki.com/wiki/?curid=110230) * [Hacking locks Simulator](https://www.pcgamingwiki.com/wiki/?curid=150263) * [Hackmud](https://www.pcgamingwiki.com/wiki/?curid=39071) * [Hacktag](https://www.pcgamingwiki.com/wiki/?curid=61664) @@ -13808,8 +13804,8 @@ * [HAMMER WORLD: DIMENSION TRAVELER](https://www.pcgamingwiki.com/wiki/?curid=113288) * [HammerHelm](https://www.pcgamingwiki.com/wiki/?curid=65461) * [Hammerting](https://www.pcgamingwiki.com/wiki/?curid=139703) -* [Hammy](https://www.pcgamingwiki.com/wiki/?curid=89393) * [HAMMY](https://www.pcgamingwiki.com/wiki/?curid=153963) +* [Hammy](https://www.pcgamingwiki.com/wiki/?curid=89393) * [Hamster Daily](https://www.pcgamingwiki.com/wiki/?curid=99216) * [Hamster Heroes](https://www.pcgamingwiki.com/wiki/?curid=88416) * [Hamster Playground](https://www.pcgamingwiki.com/wiki/?curid=181609) @@ -13840,8 +13836,8 @@ * [Hang The Kings](https://www.pcgamingwiki.com/wiki/?curid=148489) * [Hang Up](https://www.pcgamingwiki.com/wiki/?curid=121545) * [Hanger World](https://www.pcgamingwiki.com/wiki/?curid=56830) -* [Hangman](https://www.pcgamingwiki.com/wiki/?curid=78854) * [HANGMAN](https://www.pcgamingwiki.com/wiki/?curid=141299) +* [Hangman](https://www.pcgamingwiki.com/wiki/?curid=78854) * [Hangover](https://www.pcgamingwiki.com/wiki/?curid=79246) * [Hangry Bunnies From Mars](https://www.pcgamingwiki.com/wiki/?curid=67907) * [Hanse - The Hanseatic League](https://www.pcgamingwiki.com/wiki/?curid=91166) @@ -13884,7 +13880,6 @@ * [HappyBlueBear](https://www.pcgamingwiki.com/wiki/?curid=127459) * [HappyFishing](https://www.pcgamingwiki.com/wiki/?curid=112356) * [Haprokon](https://www.pcgamingwiki.com/wiki/?curid=130737) -* [Här kommer Pippi Långstrump](https://www.pcgamingwiki.com/wiki/?curid=122971) * [Harakatsu 2](https://www.pcgamingwiki.com/wiki/?curid=150144) * [Haramatia](https://www.pcgamingwiki.com/wiki/?curid=132104) * [Harambe Kong](https://www.pcgamingwiki.com/wiki/?curid=80629) @@ -14063,12 +14058,12 @@ * [Heart of Moon : The Mask of Seasons](https://www.pcgamingwiki.com/wiki/?curid=123411) * [Heart of the Emberstone: Coliseum](https://www.pcgamingwiki.com/wiki/?curid=79091) * [Heart of the House](https://www.pcgamingwiki.com/wiki/?curid=74837) -* [Heart-Pounding Dating Prep](https://www.pcgamingwiki.com/wiki/?curid=80438) -* [Heart. Papers. Border.](https://www.pcgamingwiki.com/wiki/?curid=60133) +* [Heart&Slash](https://www.pcgamingwiki.com/wiki/?curid=41719) * [Heart'n Block](https://www.pcgamingwiki.com/wiki/?curid=100242) * [Heart's Medicine: Hospital Heat](https://www.pcgamingwiki.com/wiki/?curid=62514) * [Heart's Medicine: Time to Heal](https://www.pcgamingwiki.com/wiki/?curid=40297) -* [Heart&Slash](https://www.pcgamingwiki.com/wiki/?curid=41719) +* [Heart-Pounding Dating Prep](https://www.pcgamingwiki.com/wiki/?curid=80438) +* [Heart. Papers. Border.](https://www.pcgamingwiki.com/wiki/?curid=60133) * [Heartbeat](https://www.pcgamingwiki.com/wiki/?curid=123872) * [Heartbound](https://www.pcgamingwiki.com/wiki/?curid=63052) * [Heartbreak High: A Break-Up Simulator](https://www.pcgamingwiki.com/wiki/?curid=94425) @@ -14248,10 +14243,10 @@ * [Hentai - Area 51](https://www.pcgamingwiki.com/wiki/?curid=144127) * [Hentai - Color by Number](https://www.pcgamingwiki.com/wiki/?curid=146010) * [HENTAI - World War II](https://www.pcgamingwiki.com/wiki/?curid=149325) -* [Hentai : Shoot Them](https://www.pcgamingwiki.com/wiki/?curid=152728) * [Hentai 2+2=4](https://www.pcgamingwiki.com/wiki/?curid=114714) * [Hentai 2048](https://www.pcgamingwiki.com/wiki/?curid=108716) * [Hentai 3018](https://www.pcgamingwiki.com/wiki/?curid=95301) +* [Hentai : Shoot Them](https://www.pcgamingwiki.com/wiki/?curid=152728) * [HENTAI Ahegao](https://www.pcgamingwiki.com/wiki/?curid=146093) * [Hentai Aim Trainer](https://www.pcgamingwiki.com/wiki/?curid=180849) * [Hentai And Your Life](https://www.pcgamingwiki.com/wiki/?curid=121755) @@ -14338,8 +14333,8 @@ * [Hentai Pix](https://www.pcgamingwiki.com/wiki/?curid=149313) * [Hentai Plus Girl](https://www.pcgamingwiki.com/wiki/?curid=146091) * [Hentai Pussy](https://www.pcgamingwiki.com/wiki/?curid=130177) -* [Hentai Puzzle](https://www.pcgamingwiki.com/wiki/?curid=93807) * [HENTAI PUZZLE](https://www.pcgamingwiki.com/wiki/?curid=125482) +* [Hentai Puzzle](https://www.pcgamingwiki.com/wiki/?curid=93807) * [Hentai Puzzle Classic](https://www.pcgamingwiki.com/wiki/?curid=120707) * [Hentai Puzzle Logic Game](https://www.pcgamingwiki.com/wiki/?curid=114726) * [Hentai Puzzle X](https://www.pcgamingwiki.com/wiki/?curid=109846) @@ -14355,8 +14350,8 @@ * [Hentai Shooter 2: World Tour](https://www.pcgamingwiki.com/wiki/?curid=130360) * [Hentai Shooter 3D](https://www.pcgamingwiki.com/wiki/?curid=107616) * [Hentai Shooter 3D: Christmas Party](https://www.pcgamingwiki.com/wiki/?curid=122026) -* [Hentai Sisters](https://www.pcgamingwiki.com/wiki/?curid=124018) * [HENTAI SISTERS](https://www.pcgamingwiki.com/wiki/?curid=108704) +* [Hentai Sisters](https://www.pcgamingwiki.com/wiki/?curid=124018) * [HENTAI SNIPER: Middle East](https://www.pcgamingwiki.com/wiki/?curid=153117) * [Hentai Sokoban](https://www.pcgamingwiki.com/wiki/?curid=104467) * [Hentai Space](https://www.pcgamingwiki.com/wiki/?curid=112228) @@ -14457,11 +14452,11 @@ * [Hero Swing VR](https://www.pcgamingwiki.com/wiki/?curid=141556) * [Hero Village Simulator](https://www.pcgamingwiki.com/wiki/?curid=82381) * [Hero Zero](https://www.pcgamingwiki.com/wiki/?curid=42569) -* [HERO-E](https://www.pcgamingwiki.com/wiki/?curid=58922) -* [Hero: Flood Rescue](https://www.pcgamingwiki.com/wiki/?curid=137114) * [Hero's Descent](https://www.pcgamingwiki.com/wiki/?curid=73979) * [Hero's Song](https://www.pcgamingwiki.com/wiki/?curid=51483) * [Hero's Story: Prologue](https://www.pcgamingwiki.com/wiki/?curid=89700) +* [HERO-E](https://www.pcgamingwiki.com/wiki/?curid=58922) +* [Hero: Flood Rescue](https://www.pcgamingwiki.com/wiki/?curid=137114) * [Heroes & Legends: Conquerors of Kolhar](https://www.pcgamingwiki.com/wiki/?curid=49737) * [Heroes Arena](https://www.pcgamingwiki.com/wiki/?curid=95527) * [Heroes Evolved](https://www.pcgamingwiki.com/wiki/?curid=54671) @@ -14536,10 +14531,10 @@ * [Hex Phase](https://www.pcgamingwiki.com/wiki/?curid=53910) * [Hex Tunnel](https://www.pcgamingwiki.com/wiki/?curid=64819) * [Hex Two](https://www.pcgamingwiki.com/wiki/?curid=95517) +* [Hex! Run](https://www.pcgamingwiki.com/wiki/?curid=173921) * [Hex-Up](https://www.pcgamingwiki.com/wiki/?curid=78497) * [Hex: Origins](https://www.pcgamingwiki.com/wiki/?curid=70499) * [HEX: Shards of Fate](https://www.pcgamingwiki.com/wiki/?curid=43536) -* [Hex! Run](https://www.pcgamingwiki.com/wiki/?curid=173921) * [Hexa](https://www.pcgamingwiki.com/wiki/?curid=125902) * [Hexa Faction](https://www.pcgamingwiki.com/wiki/?curid=69994) * [Hexa Faction 2](https://www.pcgamingwiki.com/wiki/?curid=69996) @@ -14891,8 +14886,8 @@ * [Hope in Hell](https://www.pcgamingwiki.com/wiki/?curid=45759) * [Hope is in 23](https://www.pcgamingwiki.com/wiki/?curid=74397) * [Hope of Humanity](https://www.pcgamingwiki.com/wiki/?curid=95537) -* [Hope; or How We Survived](https://www.pcgamingwiki.com/wiki/?curid=150201) * [Hope's Farm](https://www.pcgamingwiki.com/wiki/?curid=153604) +* [Hope; or How We Survived](https://www.pcgamingwiki.com/wiki/?curid=150201) * [Hopeless Masquerade](https://www.pcgamingwiki.com/wiki/?curid=63111) * [HopeLine](https://www.pcgamingwiki.com/wiki/?curid=128447) * [HoPiKo](https://www.pcgamingwiki.com/wiki/?curid=33872) @@ -15105,12 +15100,12 @@ * [Hugo II: Whodunit?](https://www.pcgamingwiki.com/wiki/?curid=23244) * [Hugo III: Jungle of Doom!](https://www.pcgamingwiki.com/wiki/?curid=23245) * [Hugo Retro Mania](https://www.pcgamingwiki.com/wiki/?curid=20417) +* [Hugo's House of Horrors](https://www.pcgamingwiki.com/wiki/?curid=23242) * [Hugo: Bukkazoom!](https://www.pcgamingwiki.com/wiki/?curid=175989) * [Hugo: The Forces of Nature](https://www.pcgamingwiki.com/wiki/?curid=20413) -* [Hugo's House of Horrors](https://www.pcgamingwiki.com/wiki/?curid=23242) * [Hulala Baby](https://www.pcgamingwiki.com/wiki/?curid=127948) -* [Hulì The Mage](https://www.pcgamingwiki.com/wiki/?curid=122632) * [Hulk](https://www.pcgamingwiki.com/wiki/?curid=101183) +* [Hulì The Mage](https://www.pcgamingwiki.com/wiki/?curid=122632) * [Hum Drum Experiences](https://www.pcgamingwiki.com/wiki/?curid=109164) * [Human Apocalypse - Reverse Horror Zombie Indie RPG Adventure](https://www.pcgamingwiki.com/wiki/?curid=184400) * [Human Apocalypse: Prologue](https://www.pcgamingwiki.com/wiki/?curid=184412) @@ -15123,8 +15118,8 @@ * [Human Rocket Person](https://www.pcgamingwiki.com/wiki/?curid=121744) * [Human Sacrifice](https://www.pcgamingwiki.com/wiki/?curid=130032) * [Human Simulator](https://www.pcgamingwiki.com/wiki/?curid=155606) -* [Human-powered Spacecraft](https://www.pcgamingwiki.com/wiki/?curid=92921) * [Human, We Have a Problem](https://www.pcgamingwiki.com/wiki/?curid=42577) +* [Human-powered Spacecraft](https://www.pcgamingwiki.com/wiki/?curid=92921) * [Human: Fall Flat 2](https://www.pcgamingwiki.com/wiki/?curid=187812) * [Humanity Asset](https://www.pcgamingwiki.com/wiki/?curid=50642) * [Humanity Lost](https://www.pcgamingwiki.com/wiki/?curid=150643) @@ -15154,6 +15149,7 @@ * [Hunt for Junk](https://www.pcgamingwiki.com/wiki/?curid=180373) * [Hunt the Thailand Hidden](https://www.pcgamingwiki.com/wiki/?curid=138764) * [Hunt With Friends](https://www.pcgamingwiki.com/wiki/?curid=93824) +* [Hunt: Showdown](https://www.pcgamingwiki.com/wiki/?curid=73965) * [Hunted Gods](https://www.pcgamingwiki.com/wiki/?curid=126065) * [Hunted: One Step Too Far](https://www.pcgamingwiki.com/wiki/?curid=37004) * [Hunter](https://www.pcgamingwiki.com/wiki/?curid=123347) @@ -15279,8 +15275,8 @@ * [Hyspherical 2](https://www.pcgamingwiki.com/wiki/?curid=44590) * [Hyss](https://www.pcgamingwiki.com/wiki/?curid=123976) * [Hytale](https://www.pcgamingwiki.com/wiki/?curid=164963) +* [Här kommer Pippi Långstrump](https://www.pcgamingwiki.com/wiki/?curid=122971) * [I (Don't) Hate Hentai Puzzles](https://www.pcgamingwiki.com/wiki/?curid=148525) -* [I ♥ You!](https://www.pcgamingwiki.com/wiki/?curid=110038) * [I Am Caligula](https://www.pcgamingwiki.com/wiki/?curid=43959) * [I Am Data](https://www.pcgamingwiki.com/wiki/?curid=144606) * [I Am Gooey](https://www.pcgamingwiki.com/wiki/?curid=144411) @@ -15332,14 +15328,7 @@ * [I was here](https://www.pcgamingwiki.com/wiki/?curid=72270) * [I Will Be Your Eyes](https://www.pcgamingwiki.com/wiki/?curid=150533) * [I Will Escape](https://www.pcgamingwiki.com/wiki/?curid=49073) -* [I-Fluid](https://www.pcgamingwiki.com/wiki/?curid=13638) -* [I・S・U](https://www.pcgamingwiki.com/wiki/?curid=92013) -* [I, Cyborg](https://www.pcgamingwiki.com/wiki/?curid=96529) -* [I, Gladiator](https://www.pcgamingwiki.com/wiki/?curid=48274) -* [I, Hope](https://www.pcgamingwiki.com/wiki/?curid=86953) -* [I, Zombie](https://www.pcgamingwiki.com/wiki/?curid=49163) -* [I.Cartel: Life of a Criminal](https://www.pcgamingwiki.com/wiki/?curid=130704) -* [I.F.O](https://www.pcgamingwiki.com/wiki/?curid=67177) +* [I ♥ You!](https://www.pcgamingwiki.com/wiki/?curid=110038) * [I'm an adventurer](https://www.pcgamingwiki.com/wiki/?curid=121419) * [I'm Awesome](https://www.pcgamingwiki.com/wiki/?curid=63256) * [I'm Calling The Cops!](https://www.pcgamingwiki.com/wiki/?curid=156535) @@ -15355,6 +15344,13 @@ * [I'm Titanium](https://www.pcgamingwiki.com/wiki/?curid=65857) * [I'm Turkey](https://www.pcgamingwiki.com/wiki/?curid=124125) * [I've got some BALLS!](https://www.pcgamingwiki.com/wiki/?curid=30407) +* [I, Cyborg](https://www.pcgamingwiki.com/wiki/?curid=96529) +* [I, Gladiator](https://www.pcgamingwiki.com/wiki/?curid=48274) +* [I, Hope](https://www.pcgamingwiki.com/wiki/?curid=86953) +* [I, Zombie](https://www.pcgamingwiki.com/wiki/?curid=49163) +* [I-Fluid](https://www.pcgamingwiki.com/wiki/?curid=13638) +* [I.Cartel: Life of a Criminal](https://www.pcgamingwiki.com/wiki/?curid=130704) +* [I.F.O](https://www.pcgamingwiki.com/wiki/?curid=67177) * [IACTURA](https://www.pcgamingwiki.com/wiki/?curid=36808) * [Ib (2012)](https://www.pcgamingwiki.com/wiki/?curid=177715) * [IBomber Attack](https://www.pcgamingwiki.com/wiki/?curid=40691) @@ -15547,8 +15543,8 @@ * [Imprisoned Queen](https://www.pcgamingwiki.com/wiki/?curid=173036) * [Impulse of War](https://www.pcgamingwiki.com/wiki/?curid=57006) * [Impulse Revolution](https://www.pcgamingwiki.com/wiki/?curid=46504) -* [Impulse: Space Combat](https://www.pcgamingwiki.com/wiki/?curid=63149) * [Impulse!](https://www.pcgamingwiki.com/wiki/?curid=43712) +* [Impulse: Space Combat](https://www.pcgamingwiki.com/wiki/?curid=63149) * [Impulsow](https://www.pcgamingwiki.com/wiki/?curid=125460) * [IMSCARED](https://www.pcgamingwiki.com/wiki/?curid=38091) * [In - Sight](https://www.pcgamingwiki.com/wiki/?curid=149317) @@ -15951,8 +15947,8 @@ * [Invasion of Barbarians](https://www.pcgamingwiki.com/wiki/?curid=65835) * [Invasion of the Box People](https://www.pcgamingwiki.com/wiki/?curid=102531) * [Invasion Zero](https://www.pcgamingwiki.com/wiki/?curid=125027) -* [Invasion: Brain Craving](https://www.pcgamingwiki.com/wiki/?curid=34958) * [INVASION!](https://www.pcgamingwiki.com/wiki/?curid=51637) +* [Invasion: Brain Craving](https://www.pcgamingwiki.com/wiki/?curid=34958) * [Invention](https://www.pcgamingwiki.com/wiki/?curid=56318) * [Invention 2](https://www.pcgamingwiki.com/wiki/?curid=41509) * [Inventioneers](https://www.pcgamingwiki.com/wiki/?curid=46166) @@ -16156,6 +16152,7 @@ * [Izanami's Dream Battle](https://www.pcgamingwiki.com/wiki/?curid=52566) * [IZBOT](https://www.pcgamingwiki.com/wiki/?curid=46598) * [Izeriya](https://www.pcgamingwiki.com/wiki/?curid=43328) +* [I・S・U](https://www.pcgamingwiki.com/wiki/?curid=92013) * [J Connect](https://www.pcgamingwiki.com/wiki/?curid=138882) * [J-Bird](https://www.pcgamingwiki.com/wiki/?curid=163322) * [J-Girl](https://www.pcgamingwiki.com/wiki/?curid=114146) @@ -16180,11 +16177,11 @@ * [Jack the Barbarian](https://www.pcgamingwiki.com/wiki/?curid=93898) * [Jack the Ripper: New-York 1901](https://www.pcgamingwiki.com/wiki/?curid=184822) * [Jack troubles](https://www.pcgamingwiki.com/wiki/?curid=156001) -* [Jack-In-A-Castle](https://www.pcgamingwiki.com/wiki/?curid=136977) -* [Jack-O-Lantern Covers of Darkness](https://www.pcgamingwiki.com/wiki/?curid=153452) * [Jack's Attic](https://www.pcgamingwiki.com/wiki/?curid=23337) * [Jack's Game](https://www.pcgamingwiki.com/wiki/?curid=71680) * [Jack's Gang](https://www.pcgamingwiki.com/wiki/?curid=61016) +* [Jack-In-A-Castle](https://www.pcgamingwiki.com/wiki/?curid=136977) +* [Jack-O-Lantern Covers of Darkness](https://www.pcgamingwiki.com/wiki/?curid=153452) * [Jackal](https://www.pcgamingwiki.com/wiki/?curid=176653) * [Jackal (2010)](https://www.pcgamingwiki.com/wiki/?curid=176656) * [Jackal (2016)](https://www.pcgamingwiki.com/wiki/?curid=43464) @@ -16395,9 +16392,9 @@ * [John Dungeon](https://www.pcgamingwiki.com/wiki/?curid=78382) * [John Lazarus - Episode 1: Dead Man's Origin](https://www.pcgamingwiki.com/wiki/?curid=79279) * [John Mambo](https://www.pcgamingwiki.com/wiki/?curid=94481) +* [John's Wizard Dungeon](https://www.pcgamingwiki.com/wiki/?curid=138731) * [John, The Zombie](https://www.pcgamingwiki.com/wiki/?curid=75574) * [John:Condemned](https://www.pcgamingwiki.com/wiki/?curid=121161) -* [John's Wizard Dungeon](https://www.pcgamingwiki.com/wiki/?curid=138731) * [Johnny Bung](https://www.pcgamingwiki.com/wiki/?curid=94541) * [Johnny Graves: The Unchosen One](https://www.pcgamingwiki.com/wiki/?curid=33494) * [Johns.game](https://www.pcgamingwiki.com/wiki/?curid=58892) @@ -16497,8 +16494,8 @@ * [Jump to the Circle](https://www.pcgamingwiki.com/wiki/?curid=80637) * [JUMP UP](https://www.pcgamingwiki.com/wiki/?curid=114932) * [Jump with Friends](https://www.pcgamingwiki.com/wiki/?curid=135315) -* [Jump, Step, Step](https://www.pcgamingwiki.com/wiki/?curid=58159) * [Jump! Jump! Jump!](https://www.pcgamingwiki.com/wiki/?curid=78455) +* [Jump, Step, Step](https://www.pcgamingwiki.com/wiki/?curid=58159) * [Jumpala](https://www.pcgamingwiki.com/wiki/?curid=166138) * [JumpBall](https://www.pcgamingwiki.com/wiki/?curid=52177) * [JumpBall 2](https://www.pcgamingwiki.com/wiki/?curid=76087) @@ -16629,11 +16626,11 @@ * [Jwing - the next puzzle game](https://www.pcgamingwiki.com/wiki/?curid=136704) * [JX3 Online](https://www.pcgamingwiki.com/wiki/?curid=167715) * [K Station](https://www.pcgamingwiki.com/wiki/?curid=33765) +* [K'Nossos](https://www.pcgamingwiki.com/wiki/?curid=76394) * [K-Point Ski Jumping](https://www.pcgamingwiki.com/wiki/?curid=156364) * [K-pop VR](https://www.pcgamingwiki.com/wiki/?curid=77594) * [K-Rolik](https://www.pcgamingwiki.com/wiki/?curid=51386) * [K.O.M.A](https://www.pcgamingwiki.com/wiki/?curid=129879) -* [K'Nossos](https://www.pcgamingwiki.com/wiki/?curid=76394) * [K37-D](https://www.pcgamingwiki.com/wiki/?curid=154311) * [Ka Mate](https://www.pcgamingwiki.com/wiki/?curid=67944) * [Kabitis](https://www.pcgamingwiki.com/wiki/?curid=42750) @@ -16686,6 +16683,7 @@ * [Kanji Training Game](https://www.pcgamingwiki.com/wiki/?curid=46332) * [KANNA](https://www.pcgamingwiki.com/wiki/?curid=156163) * [Kanojo x Switch](https://www.pcgamingwiki.com/wiki/?curid=155995) +* [Kao: Mystery of Volcano](https://www.pcgamingwiki.com/wiki/?curid=77762) * [Kaori After Story](https://www.pcgamingwiki.com/wiki/?curid=123517) * [Kaos](https://www.pcgamingwiki.com/wiki/?curid=136613) * [Kapia](https://www.pcgamingwiki.com/wiki/?curid=174289) @@ -16729,8 +16727,8 @@ * [Katana Kata](https://www.pcgamingwiki.com/wiki/?curid=154202) * [Katana Soul](https://www.pcgamingwiki.com/wiki/?curid=128461) * [Katana X](https://www.pcgamingwiki.com/wiki/?curid=63404) -* [Kate: Collateral Damage](https://www.pcgamingwiki.com/wiki/?curid=171778) * [Kate's Test](https://www.pcgamingwiki.com/wiki/?curid=82355) +* [Kate: Collateral Damage](https://www.pcgamingwiki.com/wiki/?curid=171778) * [Katharsis](https://www.pcgamingwiki.com/wiki/?curid=67221) * [Katie](https://www.pcgamingwiki.com/wiki/?curid=92993) * [Katto](https://www.pcgamingwiki.com/wiki/?curid=95547) @@ -16952,11 +16950,11 @@ * [King Randall's Party](https://www.pcgamingwiki.com/wiki/?curid=110066) * [King rocket](https://www.pcgamingwiki.com/wiki/?curid=152959) * [King Under The Mountain](https://www.pcgamingwiki.com/wiki/?curid=126432) -* [King-Dom](https://www.pcgamingwiki.com/wiki/?curid=102607) * [King's Bounty: Legions](https://www.pcgamingwiki.com/wiki/?curid=40488) * [King's Bounty: Warriors of the North](https://www.pcgamingwiki.com/wiki/?curid=17506) * [King's Lair](https://www.pcgamingwiki.com/wiki/?curid=128527) * [King's League II](https://www.pcgamingwiki.com/wiki/?curid=126313) +* [King-Dom](https://www.pcgamingwiki.com/wiki/?curid=102607) * [KingAndSlaves](https://www.pcgamingwiki.com/wiki/?curid=149728) * [Kingdom City Drowning Episode 1 - The Champion](https://www.pcgamingwiki.com/wiki/?curid=68370) * [Kingdom Clicker](https://www.pcgamingwiki.com/wiki/?curid=89589) @@ -17153,7 +17151,6 @@ * [Kombinera](https://www.pcgamingwiki.com/wiki/?curid=176861) * [Kommersant](https://www.pcgamingwiki.com/wiki/?curid=80687) * [Kommissar](https://www.pcgamingwiki.com/wiki/?curid=59641) -* [Kōmori Fruit Rush](https://www.pcgamingwiki.com/wiki/?curid=153594) * [KONOSUBA - God's Blessing on this Wonderful World! Love For These Clothes Of Desire!](https://www.pcgamingwiki.com/wiki/?curid=187929) * [KonoSuba: In the Life](https://www.pcgamingwiki.com/wiki/?curid=145620) * [Konrad the Kitten](https://www.pcgamingwiki.com/wiki/?curid=41809) @@ -17168,7 +17165,6 @@ * [Korvae in space](https://www.pcgamingwiki.com/wiki/?curid=68142) * [Korvux](https://www.pcgamingwiki.com/wiki/?curid=95260) * [Korwin The Game](https://www.pcgamingwiki.com/wiki/?curid=46208) -* [KóterGame](https://www.pcgamingwiki.com/wiki/?curid=122434) * [Koth](https://www.pcgamingwiki.com/wiki/?curid=37030) * [Kotodama: The 7 Mysteries of Fujisawa](https://www.pcgamingwiki.com/wiki/?curid=132741) * [Koumajou Remilia: Scarlet Symphony](https://www.pcgamingwiki.com/wiki/?curid=179778) @@ -17258,15 +17254,16 @@ * [Kyle Simulator](https://www.pcgamingwiki.com/wiki/?curid=141214) * [Kyoto Tanoji Quest](https://www.pcgamingwiki.com/wiki/?curid=55718) * [Kyurinaga's Revenge](https://www.pcgamingwiki.com/wiki/?curid=50911) +* [KóterGame](https://www.pcgamingwiki.com/wiki/?curid=122434) +* [Kōmori Fruit Rush](https://www.pcgamingwiki.com/wiki/?curid=153594) * [L U N E](https://www.pcgamingwiki.com/wiki/?curid=33579) +* [L'Cestrue Seyuntres](https://www.pcgamingwiki.com/wiki/?curid=156779) * [L-Way](https://www.pcgamingwiki.com/wiki/?curid=102915) * [L-Zone](https://www.pcgamingwiki.com/wiki/?curid=172504) * [L.A. Noire: The VR Case Files](https://www.pcgamingwiki.com/wiki/?curid=77505) * [L.S.S](https://www.pcgamingwiki.com/wiki/?curid=69689) * [L.S.S II](https://www.pcgamingwiki.com/wiki/?curid=144435) -* [L'Cestrue Seyuntres](https://www.pcgamingwiki.com/wiki/?curid=156779) * [La Aventura De Axel](https://www.pcgamingwiki.com/wiki/?curid=73525) -* [Lá Camila: A VR Experience](https://www.pcgamingwiki.com/wiki/?curid=80322) * [LA Cops](https://www.pcgamingwiki.com/wiki/?curid=48467) * [LA Deadzone](https://www.pcgamingwiki.com/wiki/?curid=144115) * [La Forêt de Pago: La Vengeance du Dragon](https://www.pcgamingwiki.com/wiki/?curid=142026) @@ -17485,8 +17482,8 @@ * [Last Toon Standing](https://www.pcgamingwiki.com/wiki/?curid=72977) * [Last Train Home](https://www.pcgamingwiki.com/wiki/?curid=187955) * [Last War 2044](https://www.pcgamingwiki.com/wiki/?curid=87918) -* [Last warrior](https://www.pcgamingwiki.com/wiki/?curid=141009) * [Last Warrior](https://www.pcgamingwiki.com/wiki/?curid=149843) +* [Last warrior](https://www.pcgamingwiki.com/wiki/?curid=141009) * [Last Week](https://www.pcgamingwiki.com/wiki/?curid=156692) * [Last Will](https://www.pcgamingwiki.com/wiki/?curid=36680) * [Last Wings](https://www.pcgamingwiki.com/wiki/?curid=57133) @@ -17582,8 +17579,8 @@ * [Left Behind 4: World at War](https://www.pcgamingwiki.com/wiki/?curid=106677) * [Left Behind: Tribulation Forces](https://www.pcgamingwiki.com/wiki/?curid=106673) * [Left in the Dark: No One on Board](https://www.pcgamingwiki.com/wiki/?curid=49580) -* [Left-Hand Path](https://www.pcgamingwiki.com/wiki/?curid=33563) * [Left&Right](https://www.pcgamingwiki.com/wiki/?curid=73262) +* [Left-Hand Path](https://www.pcgamingwiki.com/wiki/?curid=33563) * [LeftWay](https://www.pcgamingwiki.com/wiki/?curid=66717) * [Legacy of Lina](https://www.pcgamingwiki.com/wiki/?curid=114388) * [Legacy of Lunatic Kingdom](https://www.pcgamingwiki.com/wiki/?curid=33023) @@ -17770,8 +17767,8 @@ * [Levers & Buttons](https://www.pcgamingwiki.com/wiki/?curid=132397) * [Levi Chronicles](https://www.pcgamingwiki.com/wiki/?curid=145449) * [Leviathan](https://www.pcgamingwiki.com/wiki/?curid=98756) -* [Leviathan ~A Survival RPG~](https://www.pcgamingwiki.com/wiki/?curid=105111) * [Leviathan Starblade](https://www.pcgamingwiki.com/wiki/?curid=52906) +* [Leviathan ~A Survival RPG~](https://www.pcgamingwiki.com/wiki/?curid=105111) * [Leviathan: The Cargo](https://www.pcgamingwiki.com/wiki/?curid=42455) * [Leviathan: Warships](https://www.pcgamingwiki.com/wiki/?curid=9930) * [Lew Pulsipher's Doomstar](https://www.pcgamingwiki.com/wiki/?curid=38999) @@ -17783,9 +17780,9 @@ * [Lgnorant girl doll](https://www.pcgamingwiki.com/wiki/?curid=127787) * [Liam Finds a Story](https://www.pcgamingwiki.com/wiki/?curid=147472) * [Liberator TD](https://www.pcgamingwiki.com/wiki/?curid=73021) -* [Liberté](https://www.pcgamingwiki.com/wiki/?curid=184259) * [Liberty Prime](https://www.pcgamingwiki.com/wiki/?curid=110114) * [Liberty VR](https://www.pcgamingwiki.com/wiki/?curid=64765) +* [Liberté](https://www.pcgamingwiki.com/wiki/?curid=184259) * [Libra of the Vampire Princess](https://www.pcgamingwiki.com/wiki/?curid=63747) * [Libra of the Vampire Princess: Lycoris & Aoi in "The Promise" PLUS Iris in "Homeworld"](https://www.pcgamingwiki.com/wiki/?curid=64781) * [Library](https://www.pcgamingwiki.com/wiki/?curid=104239) @@ -17843,8 +17840,8 @@ * [Lift It](https://www.pcgamingwiki.com/wiki/?curid=46256) * [Liftoff](https://www.pcgamingwiki.com/wiki/?curid=45706) * [Light](https://www.pcgamingwiki.com/wiki/?curid=49941) -* [Light (2018)](https://www.pcgamingwiki.com/wiki/?curid=90262) * [Light & Dark](https://www.pcgamingwiki.com/wiki/?curid=136027) +* [Light (2018)](https://www.pcgamingwiki.com/wiki/?curid=90262) * [Light and Dance VR](https://www.pcgamingwiki.com/wiki/?curid=58531) * [Light Apprentice](https://www.pcgamingwiki.com/wiki/?curid=57466) * [Light Bearers](https://www.pcgamingwiki.com/wiki/?curid=120508) @@ -17923,8 +17920,8 @@ * [Lily's Day Off](https://www.pcgamingwiki.com/wiki/?curid=56078) * [Lily's Handmaid](https://www.pcgamingwiki.com/wiki/?curid=156939) * [Lily's Night Off](https://www.pcgamingwiki.com/wiki/?curid=100474) -* [Lily´s Epic Quest](https://www.pcgamingwiki.com/wiki/?curid=41601) * [Lilycle Rainbow Stage!!!](https://www.pcgamingwiki.com/wiki/?curid=129889) +* [Lily´s Epic Quest](https://www.pcgamingwiki.com/wiki/?curid=41601) * [Limberjack](https://www.pcgamingwiki.com/wiki/?curid=37054) * [Liminal](https://www.pcgamingwiki.com/wiki/?curid=103097) * [Limit of Defense](https://www.pcgamingwiki.com/wiki/?curid=77285) @@ -17975,8 +17972,8 @@ * [Liquidator](https://www.pcgamingwiki.com/wiki/?curid=89274) * [Liquidator (1998)](https://www.pcgamingwiki.com/wiki/?curid=166583) * [Lisa and the Grimoire](https://www.pcgamingwiki.com/wiki/?curid=164489) -* [Lisa: The Painful](https://www.pcgamingwiki.com/wiki/?curid=32558) * [Lisa's Memory - 丽莎的记忆](https://www.pcgamingwiki.com/wiki/?curid=125290) +* [Lisa: The Painful](https://www.pcgamingwiki.com/wiki/?curid=32558) * [Lisssn](https://www.pcgamingwiki.com/wiki/?curid=80893) * [List of games that have Discord Rich Presence](https://www.pcgamingwiki.com/wiki/?curid=182698) * [List of games that save to AppData Local](https://www.pcgamingwiki.com/wiki/?curid=183022) @@ -18388,7 +18385,6 @@ * [Love the game](https://www.pcgamingwiki.com/wiki/?curid=154097) * [Love, Guitars, and the Nashville Skyline](https://www.pcgamingwiki.com/wiki/?curid=53433) * [Love, Sam](https://www.pcgamingwiki.com/wiki/?curid=138762) -* [LOVE³ -Love Cube-](https://www.pcgamingwiki.com/wiki/?curid=135750) * [LoveBeat](https://www.pcgamingwiki.com/wiki/?curid=45004) * [LoveBug](https://www.pcgamingwiki.com/wiki/?curid=107760) * [LoveChoice](https://www.pcgamingwiki.com/wiki/?curid=112788) @@ -18410,6 +18406,7 @@ * [Lovers ' Smiles 2](https://www.pcgamingwiki.com/wiki/?curid=129763) * [LoveSick Darlings](https://www.pcgamingwiki.com/wiki/?curid=154384) * [Lovestory](https://www.pcgamingwiki.com/wiki/?curid=104937) +* [LOVE³ -Love Cube-](https://www.pcgamingwiki.com/wiki/?curid=135750) * [Low Desert Punk](https://www.pcgamingwiki.com/wiki/?curid=70665) * [LOW-FI](https://www.pcgamingwiki.com/wiki/?curid=157336) * [Lowglow](https://www.pcgamingwiki.com/wiki/?curid=34689) @@ -18498,8 +18495,8 @@ * [Luna Sanctus](https://www.pcgamingwiki.com/wiki/?curid=143821) * [Luna Sky](https://www.pcgamingwiki.com/wiki/?curid=46172) * [Luna Sky RDX](https://www.pcgamingwiki.com/wiki/?curid=136853) -* [Luna: Shattered Hearts: Episode 1](https://www.pcgamingwiki.com/wiki/?curid=49261) * [Luna's Wandering Stars](https://www.pcgamingwiki.com/wiki/?curid=47893) +* [Luna: Shattered Hearts: Episode 1](https://www.pcgamingwiki.com/wiki/?curid=49261) * [Lunacy: Saint Rhodes](https://www.pcgamingwiki.com/wiki/?curid=109172) * [Lunaform](https://www.pcgamingwiki.com/wiki/?curid=65053) * [Lunapark VR](https://www.pcgamingwiki.com/wiki/?curid=88660) @@ -18508,8 +18505,8 @@ * [Lunar Soil](https://www.pcgamingwiki.com/wiki/?curid=90446) * [Lunar Stone: Origin of Blood](https://www.pcgamingwiki.com/wiki/?curid=53439) * [Lunar Timepiece: Shadow of Twelve](https://www.pcgamingwiki.com/wiki/?curid=144271) -* [Lunar: Silver Star Story](https://www.pcgamingwiki.com/wiki/?curid=170393) * [Lunar's Chosen](https://www.pcgamingwiki.com/wiki/?curid=178981) +* [Lunar: Silver Star Story](https://www.pcgamingwiki.com/wiki/?curid=170393) * [Lunark](https://www.pcgamingwiki.com/wiki/?curid=139678) * [LunarLux](https://www.pcgamingwiki.com/wiki/?curid=190038) * [Lunarsea](https://www.pcgamingwiki.com/wiki/?curid=74644) @@ -18555,6 +18552,7 @@ * [Lyratha: Labyrinth - Survival - Escape](https://www.pcgamingwiki.com/wiki/?curid=129613) * [LyraVR](https://www.pcgamingwiki.com/wiki/?curid=59287) * [LYSER](https://www.pcgamingwiki.com/wiki/?curid=138733) +* [Lá Camila: A VR Experience](https://www.pcgamingwiki.com/wiki/?curid=80322) * [M Mania](https://www.pcgamingwiki.com/wiki/?curid=82399) * [M-Plan](https://www.pcgamingwiki.com/wiki/?curid=112548) * [M.A.C.E.](https://www.pcgamingwiki.com/wiki/?curid=58842) @@ -18978,7 +18976,6 @@ * [Marching Simulator](https://www.pcgamingwiki.com/wiki/?curid=93293) * [Marco Polo](https://www.pcgamingwiki.com/wiki/?curid=81590) * [Marcus Level](https://www.pcgamingwiki.com/wiki/?curid=44904) -* [MÅRD](https://www.pcgamingwiki.com/wiki/?curid=110512) * [Mare Nostrvm](https://www.pcgamingwiki.com/wiki/?curid=75413) * [Marenian Tavern Story: Patty and the Hungry God](https://www.pcgamingwiki.com/wiki/?curid=136500) * [Marginal Act](https://www.pcgamingwiki.com/wiki/?curid=90066) @@ -19041,8 +19038,8 @@ * [Maru](https://www.pcgamingwiki.com/wiki/?curid=150992) * [Marvel End Time Arena](https://www.pcgamingwiki.com/wiki/?curid=87509) * [Marvel Powers United VR](https://www.pcgamingwiki.com/wiki/?curid=165488) -* [Marvel’s Spider-Man](https://www.pcgamingwiki.com/wiki/?curid=178019) * [Marvellous Inc.](https://www.pcgamingwiki.com/wiki/?curid=91572) +* [Marvel’s Spider-Man](https://www.pcgamingwiki.com/wiki/?curid=178019) * [Marvin the Hatter](https://www.pcgamingwiki.com/wiki/?curid=132619) * [Marvin's Mittens](https://www.pcgamingwiki.com/wiki/?curid=37164) * [Marwin and The Evolution Stone](https://www.pcgamingwiki.com/wiki/?curid=39880) @@ -19050,6 +19047,7 @@ * [Mary-Kate and Ashley: Crush Course](https://www.pcgamingwiki.com/wiki/?curid=92589) * [Masamune](https://www.pcgamingwiki.com/wiki/?curid=135955) * [Masha Rescues Grandma](https://www.pcgamingwiki.com/wiki/?curid=53914) +* [Mashinky](https://www.pcgamingwiki.com/wiki/?curid=69030) * [Mask of Mists](https://www.pcgamingwiki.com/wiki/?curid=156961) * [Mask of Sanity](https://www.pcgamingwiki.com/wiki/?curid=145244) * [Maska's Masks](https://www.pcgamingwiki.com/wiki/?curid=150792) @@ -19156,9 +19154,9 @@ * [MAX MOZART](https://www.pcgamingwiki.com/wiki/?curid=157307) * [Max Payne 1&2 Remake](https://www.pcgamingwiki.com/wiki/?curid=182886) * [Max Stern](https://www.pcgamingwiki.com/wiki/?curid=51873) -* [Max, an Autistic Journey](https://www.pcgamingwiki.com/wiki/?curid=36143) * [Max's Big Bust - A Captain Nekorai Tale](https://www.pcgamingwiki.com/wiki/?curid=45686) * [Max's Big Bust 2 - Max's Bigger Bust](https://www.pcgamingwiki.com/wiki/?curid=164358) +* [Max, an Autistic Journey](https://www.pcgamingwiki.com/wiki/?curid=36143) * [MaxControl](https://www.pcgamingwiki.com/wiki/?curid=55805) * [Maxi Pool Masters VR](https://www.pcgamingwiki.com/wiki/?curid=91076) * [Maximum Archery The Game](https://www.pcgamingwiki.com/wiki/?curid=40140) @@ -19494,8 +19492,6 @@ * [Metal War Online: Retribution](https://www.pcgamingwiki.com/wiki/?curid=45322) * [Metal: Iron Age](https://www.pcgamingwiki.com/wiki/?curid=90252) * [MetalArms](https://www.pcgamingwiki.com/wiki/?curid=149503) -* [MetälBörn](https://www.pcgamingwiki.com/wiki/?curid=180121) -* [Metalheart: Replicants Rampage](https://www.pcgamingwiki.com/wiki/?curid=35279) * [Metaloid : Origin](https://www.pcgamingwiki.com/wiki/?curid=126010) * [Metamorph (Chumoran)](https://www.pcgamingwiki.com/wiki/?curid=121083) * [Metamorphabet](https://www.pcgamingwiki.com/wiki/?curid=48062) @@ -19538,6 +19534,7 @@ * [Metropolis](https://www.pcgamingwiki.com/wiki/?curid=82181) * [Metropolisim](https://www.pcgamingwiki.com/wiki/?curid=114186) * [Metu Caligine](https://www.pcgamingwiki.com/wiki/?curid=164947) +* [MetälBörn](https://www.pcgamingwiki.com/wiki/?curid=180121) * [Meu](https://www.pcgamingwiki.com/wiki/?curid=144133) * [Meu Mundo](https://www.pcgamingwiki.com/wiki/?curid=141742) * [Mevo and The Grooveriders](https://www.pcgamingwiki.com/wiki/?curid=41305) @@ -19783,8 +19780,8 @@ * [Mini Words - minimalist puzzle](https://www.pcgamingwiki.com/wiki/?curid=148545) * [Mini World: Block Art](https://www.pcgamingwiki.com/wiki/?curid=91807) * [Mini Z Racers Turbo](https://www.pcgamingwiki.com/wiki/?curid=38761) -* [Mini-Dead](https://www.pcgamingwiki.com/wiki/?curid=92897) * [Mini's Magic World](https://www.pcgamingwiki.com/wiki/?curid=43069) +* [Mini-Dead](https://www.pcgamingwiki.com/wiki/?curid=92897) * [Miniature - The Story Puzzle](https://www.pcgamingwiki.com/wiki/?curid=51726) * [Miniature TD - VR](https://www.pcgamingwiki.com/wiki/?curid=67555) * [Miniballist](https://www.pcgamingwiki.com/wiki/?curid=89353) @@ -19926,7 +19923,6 @@ * [MMMmmm... Cake!](https://www.pcgamingwiki.com/wiki/?curid=107704) * [MMX](https://www.pcgamingwiki.com/wiki/?curid=149598) * [MMY: Otherworld Mystery](https://www.pcgamingwiki.com/wiki/?curid=148787) -* [Mò The Frog](https://www.pcgamingwiki.com/wiki/?curid=121900) * [Moai II: Path to Another World](https://www.pcgamingwiki.com/wiki/?curid=47243) * [Moai III: Trade Mission](https://www.pcgamingwiki.com/wiki/?curid=44772) * [Moai IV: Terra Incognita](https://www.pcgamingwiki.com/wiki/?curid=42657) @@ -19968,7 +19964,6 @@ * [Moe Moe World War II-3 Deluxe Edition 萌萌2次大戰(略)3豪華限定版](https://www.pcgamingwiki.com/wiki/?curid=155564) * [Moe Reversi](https://www.pcgamingwiki.com/wiki/?curid=127811) * [Moe! Ninja Girls](https://www.pcgamingwiki.com/wiki/?curid=124113) -* [Moékuri: Adorable + Tactical SRPG](https://www.pcgamingwiki.com/wiki/?curid=54647) * [Moeras](https://www.pcgamingwiki.com/wiki/?curid=155400) * [Mogh](https://www.pcgamingwiki.com/wiki/?curid=153031) * [Mogic](https://www.pcgamingwiki.com/wiki/?curid=90230) @@ -20128,11 +20123,11 @@ * [Monsters of Little Haven](https://www.pcgamingwiki.com/wiki/?curid=139280) * [Monsters sandbox](https://www.pcgamingwiki.com/wiki/?curid=153515) * [Monsters University](https://www.pcgamingwiki.com/wiki/?curid=170970) -* [Monsters: Survival](https://www.pcgamingwiki.com/wiki/?curid=128627) * [Monsters!](https://www.pcgamingwiki.com/wiki/?curid=46600) * [Monsters' Den Chronicles](https://www.pcgamingwiki.com/wiki/?curid=144285) * [Monsters' Den: Book of Dread](https://www.pcgamingwiki.com/wiki/?curid=42243) * [Monsters' Den: Godfall](https://www.pcgamingwiki.com/wiki/?curid=61205) +* [Monsters: Survival](https://www.pcgamingwiki.com/wiki/?curid=128627) * [MonsterxMan: Inheritence To Lust](https://www.pcgamingwiki.com/wiki/?curid=92067) * [Monsti](https://www.pcgamingwiki.com/wiki/?curid=38875) * [Monstress Academy](https://www.pcgamingwiki.com/wiki/?curid=81639) @@ -20332,6 +20327,7 @@ * [Mowin' & Throwin'](https://www.pcgamingwiki.com/wiki/?curid=92345) * [Moysenland](https://www.pcgamingwiki.com/wiki/?curid=149138) * [Mozart: The Conspirators of Prague](https://www.pcgamingwiki.com/wiki/?curid=91330) +* [Moékuri: Adorable + Tactical SRPG](https://www.pcgamingwiki.com/wiki/?curid=54647) * [MPaliens](https://www.pcgamingwiki.com/wiki/?curid=141497) * [Mr Blaster](https://www.pcgamingwiki.com/wiki/?curid=64034) * [Mr Boom's Firework Factory](https://www.pcgamingwiki.com/wiki/?curid=128631) @@ -20794,6 +20790,8 @@ * [Myths of the World: Stolen Spring](https://www.pcgamingwiki.com/wiki/?curid=62338) * [Myths of the World: The Heart of Desolation](https://www.pcgamingwiki.com/wiki/?curid=149150) * [MyWorld](https://www.pcgamingwiki.com/wiki/?curid=58672) +* [MÅRD](https://www.pcgamingwiki.com/wiki/?curid=110512) +* [Mò The Frog](https://www.pcgamingwiki.com/wiki/?curid=121900) * [N](https://www.pcgamingwiki.com/wiki/?curid=20151) * [N-body](https://www.pcgamingwiki.com/wiki/?curid=72096) * [N.a.N Industry VR](https://www.pcgamingwiki.com/wiki/?curid=149639) @@ -21421,6 +21419,7 @@ * [Ninja Stealth 3](https://www.pcgamingwiki.com/wiki/?curid=77216) * [Ninja Striker!](https://www.pcgamingwiki.com/wiki/?curid=91937) * [Ninja Turdle](https://www.pcgamingwiki.com/wiki/?curid=156863) +* [Ninja Tycoon](https://www.pcgamingwiki.com/wiki/?curid=81633) * [Ninja Village War 2](https://www.pcgamingwiki.com/wiki/?curid=78260) * [Ninja Way](https://www.pcgamingwiki.com/wiki/?curid=74229) * [Ninja?](https://www.pcgamingwiki.com/wiki/?curid=125835) @@ -21476,8 +21475,8 @@ * [No Way Home](https://www.pcgamingwiki.com/wiki/?curid=155181) * [No Way Out](https://www.pcgamingwiki.com/wiki/?curid=56994) * [No Way Out - A Dead Realm Tale](https://www.pcgamingwiki.com/wiki/?curid=121266) -* [NO-GO](https://www.pcgamingwiki.com/wiki/?curid=144737) * [NO, THANK YOU!!!](https://www.pcgamingwiki.com/wiki/?curid=123745) +* [NO-GO](https://www.pcgamingwiki.com/wiki/?curid=144737) * [No1Left](https://www.pcgamingwiki.com/wiki/?curid=44535) * [No70: Eye of Basir](https://www.pcgamingwiki.com/wiki/?curid=58694) * [Noahmund](https://www.pcgamingwiki.com/wiki/?curid=99854) @@ -21529,8 +21528,8 @@ * [Noir Chronicles: City of Crime](https://www.pcgamingwiki.com/wiki/?curid=80859) * [Noir Syndrome](https://www.pcgamingwiki.com/wiki/?curid=50141) * [Noise](https://www.pcgamingwiki.com/wiki/?curid=65714) -* [Noisetube](https://www.pcgamingwiki.com/wiki/?curid=182533) * [NOISETUBE](https://www.pcgamingwiki.com/wiki/?curid=135789) +* [Noisetube](https://www.pcgamingwiki.com/wiki/?curid=182533) * [NOISZ](https://www.pcgamingwiki.com/wiki/?curid=69683) * [Nokbak](https://www.pcgamingwiki.com/wiki/?curid=69312) * [NOLA Is Burning](https://www.pcgamingwiki.com/wiki/?curid=76893) @@ -21710,10 +21709,10 @@ * [O Rei](https://www.pcgamingwiki.com/wiki/?curid=143792) * [O! Nalchik is my favourite place](https://www.pcgamingwiki.com/wiki/?curid=110760) * [O! Strelalka!!!](https://www.pcgamingwiki.com/wiki/?curid=68098) +* [O'Fox Life](https://www.pcgamingwiki.com/wiki/?curid=74463) * [O.C.D. - On Completeness & Dissonance](https://www.pcgamingwiki.com/wiki/?curid=99640) * [O.D.T.: Escape... Or Die Trying](https://www.pcgamingwiki.com/wiki/?curid=35384) * [O.M.S](https://www.pcgamingwiki.com/wiki/?curid=157367) -* [O'Fox Life](https://www.pcgamingwiki.com/wiki/?curid=74463) * [O2Jam x DancingParty](https://www.pcgamingwiki.com/wiki/?curid=107838) * [O3DX](https://www.pcgamingwiki.com/wiki/?curid=44848) * [Oafmatch](https://www.pcgamingwiki.com/wiki/?curid=61778) @@ -22107,7 +22106,6 @@ * [Oozi: Earth Adventure](https://www.pcgamingwiki.com/wiki/?curid=40496) * [Opai Puzzle](https://www.pcgamingwiki.com/wiki/?curid=103653) * [Opaline](https://www.pcgamingwiki.com/wiki/?curid=61626) -* [Ôpe](https://www.pcgamingwiki.com/wiki/?curid=150237) * [Open Colour](https://www.pcgamingwiki.com/wiki/?curid=150148) * [Open Country](https://www.pcgamingwiki.com/wiki/?curid=169157) * [Open Kart](https://www.pcgamingwiki.com/wiki/?curid=167596) @@ -22186,8 +22184,8 @@ * [Orbit - Playing with Gravity](https://www.pcgamingwiki.com/wiki/?curid=53208) * [Orbit Defender](https://www.pcgamingwiki.com/wiki/?curid=73451) * [Orbit HD](https://www.pcgamingwiki.com/wiki/?curid=48439) -* [Orbit: Satellite Defense](https://www.pcgamingwiki.com/wiki/?curid=81468) * [Orbit.industries](https://www.pcgamingwiki.com/wiki/?curid=176851) +* [Orbit: Satellite Defense](https://www.pcgamingwiki.com/wiki/?curid=81468) * [Orbital](https://www.pcgamingwiki.com/wiki/?curid=42019) * [Orbital Gear](https://www.pcgamingwiki.com/wiki/?curid=38565) * [Orbital Injection](https://www.pcgamingwiki.com/wiki/?curid=57277) @@ -22252,9 +22250,9 @@ * [Orion (2018)](https://www.pcgamingwiki.com/wiki/?curid=137265) * [Orion Sandbox Enhanced](https://www.pcgamingwiki.com/wiki/?curid=112344) * [Orion Trail](https://www.pcgamingwiki.com/wiki/?curid=46094) +* [Orion13](https://www.pcgamingwiki.com/wiki/?curid=150099) * [Orion: A Sci-Fi Visual Novel](https://www.pcgamingwiki.com/wiki/?curid=46260) * [Orion: Prelude](https://www.pcgamingwiki.com/wiki/?curid=6149) -* [Orion13](https://www.pcgamingwiki.com/wiki/?curid=150099) * [Orix!](https://www.pcgamingwiki.com/wiki/?curid=94790) * [Oriza](https://www.pcgamingwiki.com/wiki/?curid=138988) * [Orn the tiny forest sprite](https://www.pcgamingwiki.com/wiki/?curid=68398) @@ -22469,7 +22467,6 @@ * [P.U.G.S. Agents](https://www.pcgamingwiki.com/wiki/?curid=135079) * [P1R4T3S](https://www.pcgamingwiki.com/wiki/?curid=150810) * [P9 The GateAway](https://www.pcgamingwiki.com/wiki/?curid=157112) -* [På ekspedition i Bibelen](https://www.pcgamingwiki.com/wiki/?curid=80037) * [Pac Adventures 3D](https://www.pcgamingwiki.com/wiki/?curid=99998) * [Pac-in-Time](https://www.pcgamingwiki.com/wiki/?curid=162097) * [Pac-Man](https://www.pcgamingwiki.com/wiki/?curid=162054) @@ -22522,8 +22519,8 @@ * [Painty Mob](https://www.pcgamingwiki.com/wiki/?curid=147863) * [Pairs](https://www.pcgamingwiki.com/wiki/?curid=75596) * [Pajama Sam 3: You Are What You Eat from Your Head to Your Feet](https://www.pcgamingwiki.com/wiki/?curid=36373) -* [Pajama Sam: Games to Play on Any Day](https://www.pcgamingwiki.com/wiki/?curid=36379) * [Pajama Sam's Lost & Found](https://www.pcgamingwiki.com/wiki/?curid=36369) +* [Pajama Sam: Games to Play on Any Day](https://www.pcgamingwiki.com/wiki/?curid=36379) * [Pakicetus](https://www.pcgamingwiki.com/wiki/?curid=152915) * [PAKO 2](https://www.pcgamingwiki.com/wiki/?curid=60115) * [Palace of Cards](https://www.pcgamingwiki.com/wiki/?curid=77916) @@ -22775,10 +22772,10 @@ * [Pawn](https://www.pcgamingwiki.com/wiki/?curid=53948) * [Pawn of the Dead](https://www.pcgamingwiki.com/wiki/?curid=108112) * [Pawnshop Tycoon](https://www.pcgamingwiki.com/wiki/?curid=157087) -* [Paws 'n Claws VR](https://www.pcgamingwiki.com/wiki/?curid=93200) * [Paws & Claws: Pampered Pets](https://www.pcgamingwiki.com/wiki/?curid=56207) * [Paws & Claws: Pet School](https://www.pcgamingwiki.com/wiki/?curid=56206) * [Paws & Effect: My Dogs Are Human!](https://www.pcgamingwiki.com/wiki/?curid=156750) +* [Paws 'n Claws VR](https://www.pcgamingwiki.com/wiki/?curid=93200) * [Pax Imperia: Eminent Domain](https://www.pcgamingwiki.com/wiki/?curid=131779) * [Pax Nova](https://www.pcgamingwiki.com/wiki/?curid=122402) * [Pax Romana: Romulus](https://www.pcgamingwiki.com/wiki/?curid=130539) @@ -23072,8 +23069,6 @@ * [PilotXross(パイロットクロス)](https://www.pcgamingwiki.com/wiki/?curid=151363) * [Pimp Tight](https://www.pcgamingwiki.com/wiki/?curid=58505) * [Pin Town](https://www.pcgamingwiki.com/wiki/?curid=178231) -* [Piñata](https://www.pcgamingwiki.com/wiki/?curid=36772) -* [Piñata Attack](https://www.pcgamingwiki.com/wiki/?curid=156547) * [Pinball](https://www.pcgamingwiki.com/wiki/?curid=75471) * [Pinball 2018](https://www.pcgamingwiki.com/wiki/?curid=93863) * [Pinball 3](https://www.pcgamingwiki.com/wiki/?curid=94986) @@ -23286,6 +23281,8 @@ * [Pizza Possum](https://www.pcgamingwiki.com/wiki/?curid=190061) * [Pizza Time Explosion](https://www.pcgamingwiki.com/wiki/?curid=153752) * [Pizzarian](https://www.pcgamingwiki.com/wiki/?curid=48791) +* [Piñata](https://www.pcgamingwiki.com/wiki/?curid=36772) +* [Piñata Attack](https://www.pcgamingwiki.com/wiki/?curid=156547) * [PJ Masks: Heroes of the Night](https://www.pcgamingwiki.com/wiki/?curid=177730) * [Pla toon](https://www.pcgamingwiki.com/wiki/?curid=104913) * [Placebo Effect](https://www.pcgamingwiki.com/wiki/?curid=90435) @@ -23382,6 +23379,7 @@ * [Platform Challenge](https://www.pcgamingwiki.com/wiki/?curid=91969) * [Platform Golf](https://www.pcgamingwiki.com/wiki/?curid=79346) * [Platformica](https://www.pcgamingwiki.com/wiki/?curid=41803) +* [Platformines](https://www.pcgamingwiki.com/wiki/?curid=27497) * [Platforms](https://www.pcgamingwiki.com/wiki/?curid=144532) * [Plati Nalog: Favorite Russian Game](https://www.pcgamingwiki.com/wiki/?curid=87193) * [Platinum Kill](https://www.pcgamingwiki.com/wiki/?curid=130700) @@ -23485,11 +23483,6 @@ * [Poisoner's Teacup](https://www.pcgamingwiki.com/wiki/?curid=141400) * [POK](https://www.pcgamingwiki.com/wiki/?curid=108760) * [PokeMMO](https://www.pcgamingwiki.com/wiki/?curid=173661) -* [Pokémon Play It!](https://www.pcgamingwiki.com/wiki/?curid=81269) -* [Pokémon Play It! Version 2](https://www.pcgamingwiki.com/wiki/?curid=163935) -* [Pokémon Trading Card Game Live](https://www.pcgamingwiki.com/wiki/?curid=183824) -* [Pokémon Trading Card Game Online](https://www.pcgamingwiki.com/wiki/?curid=174612) -* [Pokémon: Magikarp Jump](https://www.pcgamingwiki.com/wiki/?curid=168131) * [Poker Championship](https://www.pcgamingwiki.com/wiki/?curid=149507) * [Poker Club](https://www.pcgamingwiki.com/wiki/?curid=181814) * [Poker Quest](https://www.pcgamingwiki.com/wiki/?curid=157291) @@ -23503,6 +23496,11 @@ * [Pokka Man](https://www.pcgamingwiki.com/wiki/?curid=90224) * [Pokka Man Blast](https://www.pcgamingwiki.com/wiki/?curid=138770) * [Pokris](https://www.pcgamingwiki.com/wiki/?curid=130001) +* [Pokémon Play It!](https://www.pcgamingwiki.com/wiki/?curid=81269) +* [Pokémon Play It! Version 2](https://www.pcgamingwiki.com/wiki/?curid=163935) +* [Pokémon Trading Card Game Live](https://www.pcgamingwiki.com/wiki/?curid=183824) +* [Pokémon Trading Card Game Online](https://www.pcgamingwiki.com/wiki/?curid=174612) +* [Pokémon: Magikarp Jump](https://www.pcgamingwiki.com/wiki/?curid=168131) * [Polandball: Can into Space!](https://www.pcgamingwiki.com/wiki/?curid=33436) * [Polanie](https://www.pcgamingwiki.com/wiki/?curid=89003) * [Polar Jump](https://www.pcgamingwiki.com/wiki/?curid=140885) @@ -23598,9 +23596,9 @@ * [PooSky](https://www.pcgamingwiki.com/wiki/?curid=88960) * [Poostall Royale](https://www.pcgamingwiki.com/wiki/?curid=186280) * [Pop Pop Boom Boom VR](https://www.pcgamingwiki.com/wiki/?curid=77010) -* [POP: Methodology Experiment One](https://www.pcgamingwiki.com/wiki/?curid=49145) * [Pop'n Music Lively](https://www.pcgamingwiki.com/wiki/?curid=181713) * [Pop'n'splat](https://www.pcgamingwiki.com/wiki/?curid=136800) +* [POP: Methodology Experiment One](https://www.pcgamingwiki.com/wiki/?curid=49145) * [Popap](https://www.pcgamingwiki.com/wiki/?curid=59609) * [POPixel](https://www.pcgamingwiki.com/wiki/?curid=42696) * [Poppy Kart](https://www.pcgamingwiki.com/wiki/?curid=46124) @@ -23824,12 +23822,12 @@ * [Princess Kidnapper VR](https://www.pcgamingwiki.com/wiki/?curid=53650) * [Princess Lili](https://www.pcgamingwiki.com/wiki/?curid=104765) * [Princess Maker](https://www.pcgamingwiki.com/wiki/?curid=175227) -* [Princess Maker ~Faery Tales Come True~ (HD Remake)](https://www.pcgamingwiki.com/wiki/?curid=156108) * [Princess Maker 2 Refine](https://www.pcgamingwiki.com/wiki/?curid=50781) * [Princess Maker 3: Fairy Tales Come True](https://www.pcgamingwiki.com/wiki/?curid=64464) * [Princess Maker 5](https://www.pcgamingwiki.com/wiki/?curid=92971) * [Princess Maker Classic](https://www.pcgamingwiki.com/wiki/?curid=175796) * [Princess Maker Go!Go! Princess](https://www.pcgamingwiki.com/wiki/?curid=156106) +* [Princess Maker ~Faery Tales Come True~ (HD Remake)](https://www.pcgamingwiki.com/wiki/?curid=156108) * [Princess Maker: GO!GO!Princess](https://www.pcgamingwiki.com/wiki/?curid=175947) * [Princess Maker: Pocket Wars](https://www.pcgamingwiki.com/wiki/?curid=175944) * [Princess of Tavern](https://www.pcgamingwiki.com/wiki/?curid=74141) @@ -23837,9 +23835,9 @@ * [Princess Project](https://www.pcgamingwiki.com/wiki/?curid=141971) * [Princess Sahirah is a Spoiled Brat!](https://www.pcgamingwiki.com/wiki/?curid=65441) * [Princess Serena: Raid of Demon Legion](https://www.pcgamingwiki.com/wiki/?curid=69492) +* [Princess's Peak](https://www.pcgamingwiki.com/wiki/?curid=138598) * [Princess.Loot.Pixel.Again](https://www.pcgamingwiki.com/wiki/?curid=43590) * [Princess.Loot.Pixel.Again x2](https://www.pcgamingwiki.com/wiki/?curid=73463) -* [Princess's Peak](https://www.pcgamingwiki.com/wiki/?curid=138598) * [Princesses Never Lose!](https://www.pcgamingwiki.com/wiki/?curid=135971) * [Princesses vs Dragons: Royal Rumble](https://www.pcgamingwiki.com/wiki/?curid=144305) * [PrincessGuardians](https://www.pcgamingwiki.com/wiki/?curid=127467) @@ -23967,8 +23965,8 @@ * [Progress Quest](https://www.pcgamingwiki.com/wiki/?curid=51587) * [Project - Bits](https://www.pcgamingwiki.com/wiki/?curid=56695) * [Project 0](https://www.pcgamingwiki.com/wiki/?curid=183131) -* [Project 5: Sightseer](https://www.pcgamingwiki.com/wiki/?curid=77063) * [Project 59](https://www.pcgamingwiki.com/wiki/?curid=103277) +* [Project 5: Sightseer](https://www.pcgamingwiki.com/wiki/?curid=77063) * [Project Absentia](https://www.pcgamingwiki.com/wiki/?curid=181650) * [Project Abyss](https://www.pcgamingwiki.com/wiki/?curid=53063) * [Project AETHER: First Contact](https://www.pcgamingwiki.com/wiki/?curid=122836) @@ -24403,13 +24401,14 @@ * [Pyst](https://www.pcgamingwiki.com/wiki/?curid=147671) * [Pythagoras' Perpetual Motion Machine](https://www.pcgamingwiki.com/wiki/?curid=121697) * [Pythagoria](https://www.pcgamingwiki.com/wiki/?curid=44864) +* [På ekspedition i Bibelen](https://www.pcgamingwiki.com/wiki/?curid=80037) * [Q](https://www.pcgamingwiki.com/wiki/?curid=139491) * [Q Remastered](https://www.pcgamingwiki.com/wiki/?curid=187761) -* [Q-YO Blaster](https://www.pcgamingwiki.com/wiki/?curid=79344) -* [Q.U.I.R.K.](https://www.pcgamingwiki.com/wiki/?curid=58706) +* [Q&A: A Light-Roasted Romance](https://www.pcgamingwiki.com/wiki/?curid=134518) * [Q*bert (1999)](https://www.pcgamingwiki.com/wiki/?curid=171233) * [Q*bert: Rebooted](https://www.pcgamingwiki.com/wiki/?curid=49985) -* [Q&A: A Light-Roasted Romance](https://www.pcgamingwiki.com/wiki/?curid=134518) +* [Q-YO Blaster](https://www.pcgamingwiki.com/wiki/?curid=79344) +* [Q.U.I.R.K.](https://www.pcgamingwiki.com/wiki/?curid=58706) * [Qajary Cat](https://www.pcgamingwiki.com/wiki/?curid=76921) * [Qanga](https://www.pcgamingwiki.com/wiki/?curid=152352) * [Qasir al-Wasat: International Edition](https://www.pcgamingwiki.com/wiki/?curid=44924) @@ -24490,7 +24489,6 @@ * [Queen of Spades](https://www.pcgamingwiki.com/wiki/?curid=99664) * [Queen of Thieves](https://www.pcgamingwiki.com/wiki/?curid=56372) * [Queen Under The Mountain](https://www.pcgamingwiki.com/wiki/?curid=46244) -* [Queen: The eYe](https://www.pcgamingwiki.com/wiki/?curid=172458) * [Queen's Garden: Halloween](https://www.pcgamingwiki.com/wiki/?curid=75449) * [Queen's Quest 2: Stories of Forgotten Past](https://www.pcgamingwiki.com/wiki/?curid=57440) * [Queen's Quest 3: The End of Dawn](https://www.pcgamingwiki.com/wiki/?curid=61221) @@ -24499,6 +24497,7 @@ * [Queen's Quest: Tower of Darkness](https://www.pcgamingwiki.com/wiki/?curid=46502) * [Queen's Tales: Sins of the Past](https://www.pcgamingwiki.com/wiki/?curid=79336) * [Queen's Tales: The Beast and the Nightingale](https://www.pcgamingwiki.com/wiki/?curid=59055) +* [Queen: The eYe](https://www.pcgamingwiki.com/wiki/?curid=172458) * [Queendoom](https://www.pcgamingwiki.com/wiki/?curid=53059) * [Queeny Army](https://www.pcgamingwiki.com/wiki/?curid=150231) * [Quell 4D](https://www.pcgamingwiki.com/wiki/?curid=51423) @@ -24571,7 +24570,6 @@ * [R.U.B.Y.寻常交织的日常](https://www.pcgamingwiki.com/wiki/?curid=148915) * [R.U.M.A](https://www.pcgamingwiki.com/wiki/?curid=72602) * [R42](https://www.pcgamingwiki.com/wiki/?curid=144574) -* [Ra²](https://www.pcgamingwiki.com/wiki/?curid=54443) * [Raatihuone](https://www.pcgamingwiki.com/wiki/?curid=130195) * [Rabbids: Party of Legends](https://www.pcgamingwiki.com/wiki/?curid=184167) * [RabbiruN](https://www.pcgamingwiki.com/wiki/?curid=90192) @@ -24595,8 +24593,8 @@ * [Raccoon Hero: Under The Sea](https://www.pcgamingwiki.com/wiki/?curid=68581) * [Raccoon: The Orc Invasion](https://www.pcgamingwiki.com/wiki/?curid=154081) * [Race](https://www.pcgamingwiki.com/wiki/?curid=79180) -* [RACE - The WTCC Game](https://www.pcgamingwiki.com/wiki/?curid=34901) * [Race & Destroy](https://www.pcgamingwiki.com/wiki/?curid=43039) +* [RACE - The WTCC Game](https://www.pcgamingwiki.com/wiki/?curid=34901) * [Race Arcade](https://www.pcgamingwiki.com/wiki/?curid=45611) * [Race for the Galaxy](https://www.pcgamingwiki.com/wiki/?curid=63759) * [Race for Tuning](https://www.pcgamingwiki.com/wiki/?curid=128443) @@ -24827,8 +24825,8 @@ * [Rauniot](https://www.pcgamingwiki.com/wiki/?curid=151499) * [Ravaged Zombie Apocalypse](https://www.pcgamingwiki.com/wiki/?curid=59769) * [Ravager](https://www.pcgamingwiki.com/wiki/?curid=68907) -* [Raven: The Last Neko Slayer](https://www.pcgamingwiki.com/wiki/?curid=125831) * [Raven's Hike](https://www.pcgamingwiki.com/wiki/?curid=177337) +* [Raven: The Last Neko Slayer](https://www.pcgamingwiki.com/wiki/?curid=125831) * [Ravenland](https://www.pcgamingwiki.com/wiki/?curid=126478) * [Ravenlok](https://www.pcgamingwiki.com/wiki/?curid=186893) * [Ravenmark: Scourge of Estellion](https://www.pcgamingwiki.com/wiki/?curid=46506) @@ -24861,6 +24859,7 @@ * [Razor2: Hidden Skies](https://www.pcgamingwiki.com/wiki/?curid=51066) * [Razortron 2000](https://www.pcgamingwiki.com/wiki/?curid=51382) * [Razortron 2084](https://www.pcgamingwiki.com/wiki/?curid=132775) +* [Ra²](https://www.pcgamingwiki.com/wiki/?curid=54443) * [RB: Axolotl](https://www.pcgamingwiki.com/wiki/?curid=130749) * [RC Fun City](https://www.pcgamingwiki.com/wiki/?curid=78573) * [RC Mini Racers](https://www.pcgamingwiki.com/wiki/?curid=47245) @@ -24878,13 +24877,13 @@ * [Re-bot VR](https://www.pcgamingwiki.com/wiki/?curid=76592) * [Re-Loaded](https://www.pcgamingwiki.com/wiki/?curid=47121) * [Re-O-Ri](https://www.pcgamingwiki.com/wiki/?curid=122872) -* [Re;Lord 1: The Witch of Herfort and Stuffed Animals](https://www.pcgamingwiki.com/wiki/?curid=89192) -* [Re;Lord 2: The Witch of Cologne and Black Cat](https://www.pcgamingwiki.com/wiki/?curid=174427) +* [Re.poly](https://www.pcgamingwiki.com/wiki/?curid=142147) * [Re: Award](https://www.pcgamingwiki.com/wiki/?curid=181011) * [Re: LieF ~Shin'ainaru Anata e~](https://www.pcgamingwiki.com/wiki/?curid=165053) * [Re:Gals Panic](https://www.pcgamingwiki.com/wiki/?curid=148416) * [RE:OZMA](https://www.pcgamingwiki.com/wiki/?curid=135911) -* [Re.poly](https://www.pcgamingwiki.com/wiki/?curid=142147) +* [Re;Lord 1: The Witch of Herfort and Stuffed Animals](https://www.pcgamingwiki.com/wiki/?curid=89192) +* [Re;Lord 2: The Witch of Cologne and Black Cat](https://www.pcgamingwiki.com/wiki/?curid=174427) * [Reach 50 : Sexy Hentai Girls](https://www.pcgamingwiki.com/wiki/?curid=123858) * [Reach Coin](https://www.pcgamingwiki.com/wiki/?curid=155526) * [Reach for the Sun](https://www.pcgamingwiki.com/wiki/?curid=13039) @@ -25063,17 +25062,17 @@ * [Red Shark](https://www.pcgamingwiki.com/wiki/?curid=170182) * [Red Solstice 2: Survivors](https://www.pcgamingwiki.com/wiki/?curid=82199) * [Red Spider Anecdote: Triangle](https://www.pcgamingwiki.com/wiki/?curid=93913) -* [Red Spider: Vengeance](https://www.pcgamingwiki.com/wiki/?curid=53836) * [Red Spider2: Exiled](https://www.pcgamingwiki.com/wiki/?curid=54391) * [Red Spider3: A Heroine Never Dies](https://www.pcgamingwiki.com/wiki/?curid=93915) +* [Red Spider: Vengeance](https://www.pcgamingwiki.com/wiki/?curid=53836) * [Red Star Raider](https://www.pcgamingwiki.com/wiki/?curid=139538) * [Red Stone Online](https://www.pcgamingwiki.com/wiki/?curid=48216) * [Red Tractor Tycoon](https://www.pcgamingwiki.com/wiki/?curid=127821) * [Red Wake Carnage](https://www.pcgamingwiki.com/wiki/?curid=65886) * [Red Wizard Island](https://www.pcgamingwiki.com/wiki/?curid=124331) +* [Red's Kingdom](https://www.pcgamingwiki.com/wiki/?curid=56366) * [RED: Lucid Nightmare](https://www.pcgamingwiki.com/wiki/?curid=112184) * [ReD:起始的旋转之音(The beginning of the Melody)](https://www.pcgamingwiki.com/wiki/?curid=140986) -* [Red's Kingdom](https://www.pcgamingwiki.com/wiki/?curid=56366) * [Redactem](https://www.pcgamingwiki.com/wiki/?curid=41930) * [Redemption](https://www.pcgamingwiki.com/wiki/?curid=41661) * [Redemption Cemetery: Bitter Frost](https://www.pcgamingwiki.com/wiki/?curid=52369) @@ -25083,10 +25082,10 @@ * [Redemption Cemetery: Salvation of the Lost](https://www.pcgamingwiki.com/wiki/?curid=42406) * [Redemption Cemetery: The Island of the Lost](https://www.pcgamingwiki.com/wiki/?curid=62054) * [Redemption Reapers](https://www.pcgamingwiki.com/wiki/?curid=186549) +* [Redemption's Guild](https://www.pcgamingwiki.com/wiki/?curid=145250) * [Redemption: Eternal Quest](https://www.pcgamingwiki.com/wiki/?curid=46665) * [Redemption: Saints And Sinners](https://www.pcgamingwiki.com/wiki/?curid=53423) * [Redemption: Tyranny of Daetorem](https://www.pcgamingwiki.com/wiki/?curid=82000) -* [Redemption's Guild](https://www.pcgamingwiki.com/wiki/?curid=145250) * [RedEyes](https://www.pcgamingwiki.com/wiki/?curid=95965) * [Redfoot Bluefoot Dancing](https://www.pcgamingwiki.com/wiki/?curid=63970) * [Redie](https://www.pcgamingwiki.com/wiki/?curid=51493) @@ -25386,7 +25385,6 @@ * [Return.](https://www.pcgamingwiki.com/wiki/?curid=104709) * [Returner 77](https://www.pcgamingwiki.com/wiki/?curid=87083) * [ReturnState](https://www.pcgamingwiki.com/wiki/?curid=76127) -* [Réussir : Code de la Route](https://www.pcgamingwiki.com/wiki/?curid=152847) * [Reveal](https://www.pcgamingwiki.com/wiki/?curid=98724) * [Revelation](https://www.pcgamingwiki.com/wiki/?curid=169666) * [Revelation Online](https://www.pcgamingwiki.com/wiki/?curid=107578) @@ -25620,8 +25618,8 @@ * [Rising Runner](https://www.pcgamingwiki.com/wiki/?curid=33891) * [Rising UpUp](https://www.pcgamingwiki.com/wiki/?curid=155636) * [Risk](https://www.pcgamingwiki.com/wiki/?curid=6776) -* [Risk - The Game of Global Domination](https://www.pcgamingwiki.com/wiki/?curid=45087) * [Risk (2012)](https://www.pcgamingwiki.com/wiki/?curid=51112) +* [Risk - The Game of Global Domination](https://www.pcgamingwiki.com/wiki/?curid=45087) * [Risk System](https://www.pcgamingwiki.com/wiki/?curid=135171) * [Risk: Factions](https://www.pcgamingwiki.com/wiki/?curid=41006) * [Riskers](https://www.pcgamingwiki.com/wiki/?curid=59687) @@ -25662,7 +25660,6 @@ * [RKN Block Me: Telegram](https://www.pcgamingwiki.com/wiki/?curid=145968) * [RKN Simulator](https://www.pcgamingwiki.com/wiki/?curid=93680) * [Rktcr](https://www.pcgamingwiki.com/wiki/?curid=47935) -* [RŌA](https://www.pcgamingwiki.com/wiki/?curid=93694) * [Roach Killer](https://www.pcgamingwiki.com/wiki/?curid=132652) * [Road 96: Mile 0](https://www.pcgamingwiki.com/wiki/?curid=184873) * [Road Blaster](https://www.pcgamingwiki.com/wiki/?curid=181735) @@ -25716,14 +25713,14 @@ * [Robert Rodriguez's The Limit](https://www.pcgamingwiki.com/wiki/?curid=123727) * [Robikon](https://www.pcgamingwiki.com/wiki/?curid=110110) * [Robin](https://www.pcgamingwiki.com/wiki/?curid=82625) -* [Robin Hood: Country Heroes](https://www.pcgamingwiki.com/wiki/?curid=152905) * [Robin Hood's Games of Skill and Chance](https://www.pcgamingwiki.com/wiki/?curid=147345) +* [Robin Hood: Country Heroes](https://www.pcgamingwiki.com/wiki/?curid=152905) * [Robin of Loxley the Legend of Sherwood](https://www.pcgamingwiki.com/wiki/?curid=74193) * [Robin's Island Adventure](https://www.pcgamingwiki.com/wiki/?curid=49635) * [Robin's Quest](https://www.pcgamingwiki.com/wiki/?curid=50422) * [Robinson Crusoe and the Cursed Pirates](https://www.pcgamingwiki.com/wiki/?curid=48739) -* [Robinson: The Journey](https://www.pcgamingwiki.com/wiki/?curid=57760) * [Robinson's Requiem](https://www.pcgamingwiki.com/wiki/?curid=21784) +* [Robinson: The Journey](https://www.pcgamingwiki.com/wiki/?curid=57760) * [Roblox](https://www.pcgamingwiki.com/wiki/?curid=71821) * [Robo Army](https://www.pcgamingwiki.com/wiki/?curid=168786) * [Robo Boop](https://www.pcgamingwiki.com/wiki/?curid=88718) @@ -25735,8 +25732,8 @@ * [Robo Puzzle Smash](https://www.pcgamingwiki.com/wiki/?curid=87533) * [Robo Run](https://www.pcgamingwiki.com/wiki/?curid=136429) * [Robo Runners](https://www.pcgamingwiki.com/wiki/?curid=109016) -* [Robo-orders](https://www.pcgamingwiki.com/wiki/?curid=69374) * [Robo's World: The Zarnok Fortress](https://www.pcgamingwiki.com/wiki/?curid=44247) +* [Robo-orders](https://www.pcgamingwiki.com/wiki/?curid=69374) * [RoboBall](https://www.pcgamingwiki.com/wiki/?curid=121914) * [RoboBunnies In Space!](https://www.pcgamingwiki.com/wiki/?curid=122590) * [RoboCo](https://www.pcgamingwiki.com/wiki/?curid=145422) @@ -25790,8 +25787,8 @@ * [Robots 2 Unknown World](https://www.pcgamingwiki.com/wiki/?curid=99882) * [Robots Attack On Vapeland](https://www.pcgamingwiki.com/wiki/?curid=90963) * [Robots In The Wild](https://www.pcgamingwiki.com/wiki/?curid=57361) -* [Robots: create AI](https://www.pcgamingwiki.com/wiki/?curid=70575) * [Robots.io](https://www.pcgamingwiki.com/wiki/?curid=69462) +* [Robots: create AI](https://www.pcgamingwiki.com/wiki/?curid=70575) * [RoboVDino](https://www.pcgamingwiki.com/wiki/?curid=75691) * [RoboVirus](https://www.pcgamingwiki.com/wiki/?curid=126438) * [Robowars](https://www.pcgamingwiki.com/wiki/?curid=49450) @@ -25813,11 +25810,11 @@ * [Rock Paper Scissors Champion](https://www.pcgamingwiki.com/wiki/?curid=44343) * [Rock Simulator](https://www.pcgamingwiki.com/wiki/?curid=152937) * [Rock Zombie](https://www.pcgamingwiki.com/wiki/?curid=49283) -* [Rock-n-Rogue A Boo Bunny Plague Adventure](https://www.pcgamingwiki.com/wiki/?curid=37072) +* [Rock'n Shaolin: Legend of the Seven Paladins 3D](https://www.pcgamingwiki.com/wiki/?curid=166608) * [Rock, Ken, Bo](https://www.pcgamingwiki.com/wiki/?curid=61150) * [Rock, Paper, Scissors Simulator](https://www.pcgamingwiki.com/wiki/?curid=154003) * [Rock, the Tree Hugger](https://www.pcgamingwiki.com/wiki/?curid=47063) -* [Rock'n Shaolin: Legend of the Seven Paladins 3D](https://www.pcgamingwiki.com/wiki/?curid=166608) +* [Rock-n-Rogue A Boo Bunny Plague Adventure](https://www.pcgamingwiki.com/wiki/?curid=37072) * [Rocka Feller](https://www.pcgamingwiki.com/wiki/?curid=94075) * [RockaBowling VR](https://www.pcgamingwiki.com/wiki/?curid=135087) * [RockBuster](https://www.pcgamingwiki.com/wiki/?curid=99464) @@ -26222,14 +26219,14 @@ * [Run Thief](https://www.pcgamingwiki.com/wiki/?curid=143819) * [Run Turn Die](https://www.pcgamingwiki.com/wiki/?curid=34831) * [Run Zeus Run](https://www.pcgamingwiki.com/wiki/?curid=89292) -* [Run, chicken, run!](https://www.pcgamingwiki.com/wiki/?curid=125046) -* [Run, Goo, Run](https://www.pcgamingwiki.com/wiki/?curid=63825) -* [Run, My Little Pixel](https://www.pcgamingwiki.com/wiki/?curid=73528) -* [Run, Run, Monsters!](https://www.pcgamingwiki.com/wiki/?curid=104347) * [Run!](https://www.pcgamingwiki.com/wiki/?curid=141274) * [Run! Bunny~绿绿小先生](https://www.pcgamingwiki.com/wiki/?curid=141839) * [Run!ZombieFoods!](https://www.pcgamingwiki.com/wiki/?curid=65851) * [Run'N'Get](https://www.pcgamingwiki.com/wiki/?curid=114238) +* [Run, chicken, run!](https://www.pcgamingwiki.com/wiki/?curid=125046) +* [Run, Goo, Run](https://www.pcgamingwiki.com/wiki/?curid=63825) +* [Run, My Little Pixel](https://www.pcgamingwiki.com/wiki/?curid=73528) +* [Run, Run, Monsters!](https://www.pcgamingwiki.com/wiki/?curid=104347) * [Runa's Date](https://www.pcgamingwiki.com/wiki/?curid=135221) * [Runa's School Story](https://www.pcgamingwiki.com/wiki/?curid=127502) * [Runaway Express Mystery](https://www.pcgamingwiki.com/wiki/?curid=49601) @@ -26238,6 +26235,7 @@ * [Runbow](https://www.pcgamingwiki.com/wiki/?curid=53109) * [Rune Fencer Illyia](https://www.pcgamingwiki.com/wiki/?curid=145461) * [Rune Lord](https://www.pcgamingwiki.com/wiki/?curid=134754) +* [Runefall](https://www.pcgamingwiki.com/wiki/?curid=95119) * [Runefall 2](https://www.pcgamingwiki.com/wiki/?curid=149035) * [Runeous: Part One](https://www.pcgamingwiki.com/wiki/?curid=42804) * [Runers](https://www.pcgamingwiki.com/wiki/?curid=33478) @@ -26254,8 +26252,8 @@ * [Runewards: Strategy Card Game](https://www.pcgamingwiki.com/wiki/?curid=82316) * [Runeyana](https://www.pcgamingwiki.com/wiki/?curid=51619) * [Runner](https://www.pcgamingwiki.com/wiki/?curid=82018) -* [Runner Heroes: The Curse of Night and Day](https://www.pcgamingwiki.com/wiki/?curid=182572) * [RUNNER HEROES: The curse of night and day](https://www.pcgamingwiki.com/wiki/?curid=153634) +* [Runner Heroes: The Curse of Night and Day](https://www.pcgamingwiki.com/wiki/?curid=182572) * [Running Black](https://www.pcgamingwiki.com/wiki/?curid=144323) * [Running Gods](https://www.pcgamingwiki.com/wiki/?curid=38915) * [Running King](https://www.pcgamingwiki.com/wiki/?curid=80881) @@ -26332,8 +26330,9 @@ * [Rysen](https://www.pcgamingwiki.com/wiki/?curid=81691) * [Ryu ga Gotoku Online](https://www.pcgamingwiki.com/wiki/?curid=123045) * [Ryzom](https://www.pcgamingwiki.com/wiki/?curid=43161) +* [Réussir : Code de la Route](https://www.pcgamingwiki.com/wiki/?curid=152847) +* [RŌA](https://www.pcgamingwiki.com/wiki/?curid=93694) * [S-COPTER: Trials of Quick Fingers and Logic](https://www.pcgamingwiki.com/wiki/?curid=78136) -* [S: Lost Chapters](https://www.pcgamingwiki.com/wiki/?curid=188878) * [S.F.77](https://www.pcgamingwiki.com/wiki/?curid=100534) * [S.K.I.L.L. - Special Force 2](https://www.pcgamingwiki.com/wiki/?curid=47863) * [S.O.R.S](https://www.pcgamingwiki.com/wiki/?curid=44275) @@ -26343,6 +26342,7 @@ * [S.U.B.](https://www.pcgamingwiki.com/wiki/?curid=81952) * [S4 League](https://www.pcgamingwiki.com/wiki/?curid=29705) * [S40 Racing](https://www.pcgamingwiki.com/wiki/?curid=152551) +* [S: Lost Chapters](https://www.pcgamingwiki.com/wiki/?curid=188878) * [SABAT Fight Arena](https://www.pcgamingwiki.com/wiki/?curid=130626) * [Saber Fight VR](https://www.pcgamingwiki.com/wiki/?curid=155827) * [SaberSaw VR](https://www.pcgamingwiki.com/wiki/?curid=38943) @@ -26384,7 +26384,6 @@ * [SAD RPG: A Social Anxiety Role Playing Game](https://www.pcgamingwiki.com/wiki/?curid=151341) * [Sadboy](https://www.pcgamingwiki.com/wiki/?curid=125865) * [Saddies: Attack!!](https://www.pcgamingwiki.com/wiki/?curid=188284) -* [SÆLIG](https://www.pcgamingwiki.com/wiki/?curid=62532) * [Safari Grounds - The Wilpattu Leopard](https://www.pcgamingwiki.com/wiki/?curid=149248) * [Safari Venture](https://www.pcgamingwiki.com/wiki/?curid=61852) * [Safe](https://www.pcgamingwiki.com/wiki/?curid=121055) @@ -26465,6 +26464,8 @@ * [Salvation in Corruption](https://www.pcgamingwiki.com/wiki/?curid=75469) * [Salvator](https://www.pcgamingwiki.com/wiki/?curid=82292) * [Sam & Dan: Floaty Flatmates](https://www.pcgamingwiki.com/wiki/?curid=123878) +* [Sam & Max Save the World](https://www.pcgamingwiki.com/wiki/?curid=10590) +* [Sam & Max: Beyond Time and Space](https://www.pcgamingwiki.com/wiki/?curid=10632) * [Sam & Max: Beyond Time and Space (2021)](https://www.pcgamingwiki.com/wiki/?curid=173114) * [Sam & Max: This Time It's Virtual!](https://www.pcgamingwiki.com/wiki/?curid=165186) * [Sam Glyph: Private Eye!](https://www.pcgamingwiki.com/wiki/?curid=49534) @@ -26670,7 +26671,6 @@ * [Scavenger](https://www.pcgamingwiki.com/wiki/?curid=73764) * [Scavenger of Dunomini](https://www.pcgamingwiki.com/wiki/?curid=173812) * [Scavenger Skirmish: Mortal World](https://www.pcgamingwiki.com/wiki/?curid=100514) -* [Scéal](https://www.pcgamingwiki.com/wiki/?curid=52384) * [Scene Investigators](https://www.pcgamingwiki.com/wiki/?curid=189326) * [Scenner](https://www.pcgamingwiki.com/wiki/?curid=138607) * [Schacht](https://www.pcgamingwiki.com/wiki/?curid=50885) @@ -26728,6 +26728,7 @@ * [SCP-069-J: The sisters of Cheyenne Point](https://www.pcgamingwiki.com/wiki/?curid=142879) * [SCP-087 VR Survivor](https://www.pcgamingwiki.com/wiki/?curid=127589) * [SCP-087: Recovered Document](https://www.pcgamingwiki.com/wiki/?curid=78534) +* [SCP022](https://www.pcgamingwiki.com/wiki/?curid=127085) * [SCP: Blackout](https://www.pcgamingwiki.com/wiki/?curid=122450) * [SCP: Containment Breach Multiplayer](https://www.pcgamingwiki.com/wiki/?curid=172781) * [SCP: Derelict - SciFi First Person Shooter](https://www.pcgamingwiki.com/wiki/?curid=122217) @@ -26740,7 +26741,6 @@ * [SCP: Recontainment](https://www.pcgamingwiki.com/wiki/?curid=163692) * [SCP: Resonance](https://www.pcgamingwiki.com/wiki/?curid=148629) * [SCP: The Foundation](https://www.pcgamingwiki.com/wiki/?curid=163694) -* [SCP022](https://www.pcgamingwiki.com/wiki/?curid=127085) * [Scrabble Champion Edition](https://www.pcgamingwiki.com/wiki/?curid=177360) * [Scrabble Complete](https://www.pcgamingwiki.com/wiki/?curid=176817) * [Scram](https://www.pcgamingwiki.com/wiki/?curid=107668) @@ -26797,6 +26797,7 @@ * [Scutter](https://www.pcgamingwiki.com/wiki/?curid=98128) * [Scuttlers](https://www.pcgamingwiki.com/wiki/?curid=67954) * [Scutum Phanti](https://www.pcgamingwiki.com/wiki/?curid=141851) +* [Scéal](https://www.pcgamingwiki.com/wiki/?curid=52384) * [SD Gundam G Generation Cross Rays](https://www.pcgamingwiki.com/wiki/?curid=148377) * [SE VR World Demo](https://www.pcgamingwiki.com/wiki/?curid=144769) * [Sea Battle VR](https://www.pcgamingwiki.com/wiki/?curid=75994) @@ -27326,10 +27327,10 @@ * [Shoot the ball](https://www.pcgamingwiki.com/wiki/?curid=128169) * [Shoot the Bullet](https://www.pcgamingwiki.com/wiki/?curid=30993) * [Shoot The Zombirds VR](https://www.pcgamingwiki.com/wiki/?curid=132604) -* [Shoot-No-Shoot](https://www.pcgamingwiki.com/wiki/?curid=110202) -* [Shoot, push, portals](https://www.pcgamingwiki.com/wiki/?curid=153426) * [Shoot!](https://www.pcgamingwiki.com/wiki/?curid=139739) * [Shoot'n'Scroll 3D](https://www.pcgamingwiki.com/wiki/?curid=112600) +* [Shoot, push, portals](https://www.pcgamingwiki.com/wiki/?curid=153426) +* [Shoot-No-Shoot](https://www.pcgamingwiki.com/wiki/?curid=110202) * [Shooter Game](https://www.pcgamingwiki.com/wiki/?curid=109068) * [ShooterSpheres](https://www.pcgamingwiki.com/wiki/?curid=130034) * [Shooting Champion VR](https://www.pcgamingwiki.com/wiki/?curid=131978) @@ -27443,8 +27444,8 @@ * [Sidetrack](https://www.pcgamingwiki.com/wiki/?curid=171386) * [Sideway New York](https://www.pcgamingwiki.com/wiki/?curid=40861) * [Sidewords](https://www.pcgamingwiki.com/wiki/?curid=70072) -* [Siege - Battle of Ashington](https://www.pcgamingwiki.com/wiki/?curid=112888) * [Siege (2016)](https://www.pcgamingwiki.com/wiki/?curid=41539) +* [Siege - Battle of Ashington](https://www.pcgamingwiki.com/wiki/?curid=112888) * [Siege and Destroy](https://www.pcgamingwiki.com/wiki/?curid=56772) * [Siege Hammer](https://www.pcgamingwiki.com/wiki/?curid=52790) * [Siege Machines Builder](https://www.pcgamingwiki.com/wiki/?curid=135630) @@ -27480,8 +27481,8 @@ * [SILENT DOOM](https://www.pcgamingwiki.com/wiki/?curid=128419) * [Silent Footsteps](https://www.pcgamingwiki.com/wiki/?curid=103003) * [Silent Gentleman](https://www.pcgamingwiki.com/wiki/?curid=89332) -* [Silent hill 2](https://www.pcgamingwiki.com/wiki/?curid=182665) * [Silent Hill 2](https://www.pcgamingwiki.com/wiki/?curid=31057) +* [Silent hill 2](https://www.pcgamingwiki.com/wiki/?curid=182665) * [Silent Hunter 4: Wolves of the Pacific](https://www.pcgamingwiki.com/wiki/?curid=41362) * [Silent Hunter 5: Battle of the Atlantic](https://www.pcgamingwiki.com/wiki/?curid=41163) * [Silent Night](https://www.pcgamingwiki.com/wiki/?curid=113526) @@ -27524,9 +27525,9 @@ * [Simon the Sorcerer](https://www.pcgamingwiki.com/wiki/?curid=14137) * [Simon the Sorcerer 2: 25th Anniversary Edition](https://www.pcgamingwiki.com/wiki/?curid=90244) * [Simon the Sorcerer II: The Lion, the Wizard and the Wardrobe](https://www.pcgamingwiki.com/wiki/?curid=14140) -* [Simon the Sorcerer: 25th Anniversary Edition](https://www.pcgamingwiki.com/wiki/?curid=90241) * [Simon the Sorcerer's Pinball](https://www.pcgamingwiki.com/wiki/?curid=178731) * [Simon the Sorcerer's Puzzle Pack](https://www.pcgamingwiki.com/wiki/?curid=147043) +* [Simon the Sorcerer: 25th Anniversary Edition](https://www.pcgamingwiki.com/wiki/?curid=90241) * [Simon's Cat: Story Time](https://www.pcgamingwiki.com/wiki/?curid=167744) * [Simple Ball: Extended Edition](https://www.pcgamingwiki.com/wiki/?curid=38025) * [Simple Chess](https://www.pcgamingwiki.com/wiki/?curid=128161) @@ -27555,8 +27556,8 @@ * [Sin Castle](https://www.pcgamingwiki.com/wiki/?curid=58360) * [Sin play](https://www.pcgamingwiki.com/wiki/?curid=150363) * [Sin Slayers](https://www.pcgamingwiki.com/wiki/?curid=80693) -* [Sin; Vengeance](https://www.pcgamingwiki.com/wiki/?curid=128093) * [SiN: Reloaded](https://www.pcgamingwiki.com/wiki/?curid=163180) +* [Sin; Vengeance](https://www.pcgamingwiki.com/wiki/?curid=128093) * [SinaRun](https://www.pcgamingwiki.com/wiki/?curid=34673) * [SincereMen](https://www.pcgamingwiki.com/wiki/?curid=144331) * [Sine Requie: Snake Eyes](https://www.pcgamingwiki.com/wiki/?curid=78828) @@ -27622,7 +27623,6 @@ * [Size Matters](https://www.pcgamingwiki.com/wiki/?curid=123784) * [SizeBlock](https://www.pcgamingwiki.com/wiki/?curid=36710) * [SK8](https://www.pcgamingwiki.com/wiki/?curid=76961) -* [Skábma: Snowfall](https://www.pcgamingwiki.com/wiki/?curid=171243) * [Skald: Against the Black Priory](https://www.pcgamingwiki.com/wiki/?curid=167908) * [Skara - The Blade Remains](https://www.pcgamingwiki.com/wiki/?curid=61199) * [Skat 3D Premium](https://www.pcgamingwiki.com/wiki/?curid=136485) @@ -27717,6 +27717,7 @@ * [Sky Dodge](https://www.pcgamingwiki.com/wiki/?curid=93196) * [Sky Fleet](https://www.pcgamingwiki.com/wiki/?curid=173698) * [Sky Flight](https://www.pcgamingwiki.com/wiki/?curid=121323) +* [Sky Force Anniversary](https://www.pcgamingwiki.com/wiki/?curid=37680) * [Sky Gamblers: Storm Raiders](https://www.pcgamingwiki.com/wiki/?curid=49015) * [Sky Haven](https://www.pcgamingwiki.com/wiki/?curid=81167) * [Sky Hawk](https://www.pcgamingwiki.com/wiki/?curid=90074) @@ -27786,6 +27787,7 @@ * [Skyworld](https://www.pcgamingwiki.com/wiki/?curid=39687) * [Skyworld: Kingdom Brawl](https://www.pcgamingwiki.com/wiki/?curid=132138) * [Skywriter](https://www.pcgamingwiki.com/wiki/?curid=108200) +* [Skábma: Snowfall](https://www.pcgamingwiki.com/wiki/?curid=171243) * [Slab](https://www.pcgamingwiki.com/wiki/?curid=92999) * [Slabo?](https://www.pcgamingwiki.com/wiki/?curid=76173) * [Slabs](https://www.pcgamingwiki.com/wiki/?curid=97958) @@ -27856,14 +27858,14 @@ * [SLICE BACK](https://www.pcgamingwiki.com/wiki/?curid=145405) * [Slice of Life](https://www.pcgamingwiki.com/wiki/?curid=68206) * [Slice the Ice](https://www.pcgamingwiki.com/wiki/?curid=76313) -* [Slice, Dice & Rice](https://www.pcgamingwiki.com/wiki/?curid=58698) * [Slice&Dice](https://www.pcgamingwiki.com/wiki/?curid=66500) * [Slice&Dice (VR)](https://www.pcgamingwiki.com/wiki/?curid=63141) +* [Slice, Dice & Rice](https://www.pcgamingwiki.com/wiki/?curid=58698) * [Slide Furry Futanari](https://www.pcgamingwiki.com/wiki/?curid=179603) * [Slide Ride Arcade](https://www.pcgamingwiki.com/wiki/?curid=33783) * [Slide to finish](https://www.pcgamingwiki.com/wiki/?curid=122606) -* [Slide: Platformer](https://www.pcgamingwiki.com/wiki/?curid=47235) * [Slide!!](https://www.pcgamingwiki.com/wiki/?curid=73448) +* [Slide: Platformer](https://www.pcgamingwiki.com/wiki/?curid=47235) * [Slider](https://www.pcgamingwiki.com/wiki/?curid=102355) * [Slider Quest](https://www.pcgamingwiki.com/wiki/?curid=40317) * [Sliding Blocks](https://www.pcgamingwiki.com/wiki/?curid=69336) @@ -27887,11 +27889,11 @@ * [Slime Simulator Games](https://www.pcgamingwiki.com/wiki/?curid=132012) * [Slime Slam](https://www.pcgamingwiki.com/wiki/?curid=150006) * [Slime Sports](https://www.pcgamingwiki.com/wiki/?curid=82375) +* [Slime!!!](https://www.pcgamingwiki.com/wiki/?curid=138868) * [Slime-san](https://www.pcgamingwiki.com/wiki/?curid=57014) * [Slime-san: Blackbird's Kraken](https://www.pcgamingwiki.com/wiki/?curid=65076) * [Slime-san: Creator](https://www.pcgamingwiki.com/wiki/?curid=123365) * [Slime-san: Sheeple's Sequel](https://www.pcgamingwiki.com/wiki/?curid=81512) -* [Slime!!!](https://www.pcgamingwiki.com/wiki/?curid=138868) * [Slimebrawl](https://www.pcgamingwiki.com/wiki/?curid=74930) * [SlimeGear](https://www.pcgamingwiki.com/wiki/?curid=103811) * [Slimes RPG](https://www.pcgamingwiki.com/wiki/?curid=121337) @@ -28155,8 +28157,8 @@ * [Sol Divide: Sword of Darkness](https://www.pcgamingwiki.com/wiki/?curid=169023) * [Sol Galaxy Defender](https://www.pcgamingwiki.com/wiki/?curid=81056) * [Sol Trader](https://www.pcgamingwiki.com/wiki/?curid=42684) -* [SOL: Exodus](https://www.pcgamingwiki.com/wiki/?curid=40839) * [Sol705](https://www.pcgamingwiki.com/wiki/?curid=88744) +* [SOL: Exodus](https://www.pcgamingwiki.com/wiki/?curid=40839) * [Solace Crafting](https://www.pcgamingwiki.com/wiki/?curid=65359) * [Solace State](https://www.pcgamingwiki.com/wiki/?curid=110508) * [Solar Battalion](https://www.pcgamingwiki.com/wiki/?curid=92933) @@ -28196,16 +28198,17 @@ * [Soldiers of Freedom](https://www.pcgamingwiki.com/wiki/?curid=68128) * [Soldiers of Heaven VR](https://www.pcgamingwiki.com/wiki/?curid=40124) * [Soldiers of the Universe](https://www.pcgamingwiki.com/wiki/?curid=63610) +* [Soldiers: Heroes of World War II](https://www.pcgamingwiki.com/wiki/?curid=3707) * [Sole](https://www.pcgamingwiki.com/wiki/?curid=69082) * [Solenars Edge Heroes](https://www.pcgamingwiki.com/wiki/?curid=92931) * [Solenars Edge Rebirth](https://www.pcgamingwiki.com/wiki/?curid=65730) * [SolForge](https://www.pcgamingwiki.com/wiki/?curid=42099) * [Solid Aether](https://www.pcgamingwiki.com/wiki/?curid=109596) * [Solid State Pinball: Tristan](https://www.pcgamingwiki.com/wiki/?curid=171264) -* [Solitaire - Cat Pirate Portrait](https://www.pcgamingwiki.com/wiki/?curid=64530) * [Solitaire (baKno Games)](https://www.pcgamingwiki.com/wiki/?curid=77822) * [Solitaire (Sanuk Games)](https://www.pcgamingwiki.com/wiki/?curid=72599) * [Solitaire (XP)](https://www.pcgamingwiki.com/wiki/?curid=166480) +* [Solitaire - Cat Pirate Portrait](https://www.pcgamingwiki.com/wiki/?curid=64530) * [Solitaire 220 Plus](https://www.pcgamingwiki.com/wiki/?curid=52900) * [Solitaire Beach Season](https://www.pcgamingwiki.com/wiki/?curid=51555) * [Solitaire Bliss Collection](https://www.pcgamingwiki.com/wiki/?curid=132385) @@ -28225,9 +28228,9 @@ * [Solitaire Ultra](https://www.pcgamingwiki.com/wiki/?curid=67163) * [Solitaire Victorian Picnic](https://www.pcgamingwiki.com/wiki/?curid=143776) * [Solitaire VR](https://www.pcgamingwiki.com/wiki/?curid=61428) +* [Solitaire. Dragon Light](https://www.pcgamingwiki.com/wiki/?curid=124378) * [Solitaire: Learn Chemistry!](https://www.pcgamingwiki.com/wiki/?curid=127227) * [Solitaire: Learn the Flags!](https://www.pcgamingwiki.com/wiki/?curid=123363) -* [Solitaire. Dragon Light](https://www.pcgamingwiki.com/wiki/?curid=124378) * [Solitude - Escape of Head](https://www.pcgamingwiki.com/wiki/?curid=96445) * [Solitune](https://www.pcgamingwiki.com/wiki/?curid=61331) * [Solmec: Among Stars](https://www.pcgamingwiki.com/wiki/?curid=67623) @@ -28257,8 +28260,8 @@ * [Somewhere on Zibylon](https://www.pcgamingwiki.com/wiki/?curid=62578) * [Sommad](https://www.pcgamingwiki.com/wiki/?curid=66442) * [Somnium Space](https://www.pcgamingwiki.com/wiki/?curid=109180) -* [Somos](https://www.pcgamingwiki.com/wiki/?curid=182453) * [SOMOS](https://www.pcgamingwiki.com/wiki/?curid=113064) +* [Somos](https://www.pcgamingwiki.com/wiki/?curid=182453) * [Son Korsan](https://www.pcgamingwiki.com/wiki/?curid=63272) * [Son of a Witch](https://www.pcgamingwiki.com/wiki/?curid=51485) * [Son of Nor](https://www.pcgamingwiki.com/wiki/?curid=18663) @@ -28304,8 +28307,8 @@ * [Sordwin: The Evertree Saga](https://www.pcgamingwiki.com/wiki/?curid=128338) * [Sore](https://www.pcgamingwiki.com/wiki/?curid=83161) * [Sorgina: A Tale of Witches](https://www.pcgamingwiki.com/wiki/?curid=62213) -* [Sorry, James](https://www.pcgamingwiki.com/wiki/?curid=70695) * [Sorry!](https://www.pcgamingwiki.com/wiki/?curid=7476) +* [Sorry, James](https://www.pcgamingwiki.com/wiki/?curid=70695) * [Sort 'Em](https://www.pcgamingwiki.com/wiki/?curid=58618) * [Sort Battle: Dungeon](https://www.pcgamingwiki.com/wiki/?curid=141365) * [Sort the Cube](https://www.pcgamingwiki.com/wiki/?curid=103823) @@ -28616,8 +28619,8 @@ * [Space Xonix](https://www.pcgamingwiki.com/wiki/?curid=46428) * [Space Zombies Invasion](https://www.pcgamingwiki.com/wiki/?curid=87245) * [Space zone defender](https://www.pcgamingwiki.com/wiki/?curid=153226) -* [Space-Fright](https://www.pcgamingwiki.com/wiki/?curid=58638) * [Space, VR!](https://www.pcgamingwiki.com/wiki/?curid=42055) +* [Space-Fright](https://www.pcgamingwiki.com/wiki/?curid=58638) * [SpaceBall in Cube](https://www.pcgamingwiki.com/wiki/?curid=108144) * [Spaceball!](https://www.pcgamingwiki.com/wiki/?curid=108450) * [SpaceBOUND](https://www.pcgamingwiki.com/wiki/?curid=67506) @@ -28703,9 +28706,9 @@ * [Spartan VR](https://www.pcgamingwiki.com/wiki/?curid=64902) * [Spartans Vs Zombies Defense](https://www.pcgamingwiki.com/wiki/?curid=49027) * [Sparticles](https://www.pcgamingwiki.com/wiki/?curid=108088) -* [Spaß Taxi](https://www.pcgamingwiki.com/wiki/?curid=155578) * [Spate](https://www.pcgamingwiki.com/wiki/?curid=50524) * [Spattle Cats](https://www.pcgamingwiki.com/wiki/?curid=128060) +* [Spaß Taxi](https://www.pcgamingwiki.com/wiki/?curid=155578) * [Speak Lies](https://www.pcgamingwiki.com/wiki/?curid=157271) * [Speakerman](https://www.pcgamingwiki.com/wiki/?curid=136863) * [Speakerman 2](https://www.pcgamingwiki.com/wiki/?curid=149227) @@ -28733,8 +28736,8 @@ * [Spectrubes Infinity](https://www.pcgamingwiki.com/wiki/?curid=91148) * [Spectrum](https://www.pcgamingwiki.com/wiki/?curid=37038) * [Spectrum Break](https://www.pcgamingwiki.com/wiki/?curid=88854) -* [Spectrum: First Light](https://www.pcgamingwiki.com/wiki/?curid=51041) * [Spectrum's Path](https://www.pcgamingwiki.com/wiki/?curid=128656) +* [Spectrum: First Light](https://www.pcgamingwiki.com/wiki/?curid=51041) * [SpedV](https://www.pcgamingwiki.com/wiki/?curid=121742) * [Speebot](https://www.pcgamingwiki.com/wiki/?curid=73780) * [Speed and Scream](https://www.pcgamingwiki.com/wiki/?curid=59247) @@ -29085,8 +29088,8 @@ * [Star Fleet I: The War Begins!](https://www.pcgamingwiki.com/wiki/?curid=167094) * [Star Fleet II: Krellan Commander](https://www.pcgamingwiki.com/wiki/?curid=178650) * [Star Girl Proxima](https://www.pcgamingwiki.com/wiki/?curid=145136) -* [Star girls](https://www.pcgamingwiki.com/wiki/?curid=153388) * [Star Girls](https://www.pcgamingwiki.com/wiki/?curid=135646) +* [Star girls](https://www.pcgamingwiki.com/wiki/?curid=153388) * [Star Goddess](https://www.pcgamingwiki.com/wiki/?curid=146144) * [Star Gods](https://www.pcgamingwiki.com/wiki/?curid=153294) * [Star Horizon](https://www.pcgamingwiki.com/wiki/?curid=47751) @@ -29143,7 +29146,6 @@ * [Star Trek: Legends](https://www.pcgamingwiki.com/wiki/?curid=167742) * [Star Trek: Starship Creator](https://www.pcgamingwiki.com/wiki/?curid=171555) * [Star Trek: The Game Show](https://www.pcgamingwiki.com/wiki/?curid=175178) -* [Star Valor](https://www.pcgamingwiki.com/wiki/?curid=94024) * [Star Waker](https://www.pcgamingwiki.com/wiki/?curid=68158) * [Star Wars Eclipse](https://www.pcgamingwiki.com/wiki/?curid=173572) * [Star Wars Galaxies](https://www.pcgamingwiki.com/wiki/?curid=15405) @@ -29154,10 +29156,10 @@ * [Star Wars: Knights of the Old Republic – Remake](https://www.pcgamingwiki.com/wiki/?curid=171361) * [Star Wars: Pit Droids](https://www.pcgamingwiki.com/wiki/?curid=171562) * [Star Wars: Trials on Tatooine](https://www.pcgamingwiki.com/wiki/?curid=35561) +* [Star'Shoot](https://www.pcgamingwiki.com/wiki/?curid=100094) * [Star-Box: RPG Adventures in Space](https://www.pcgamingwiki.com/wiki/?curid=46847) * [Star-Pit Starship](https://www.pcgamingwiki.com/wiki/?curid=90297) * [Star-Rocket Strike](https://www.pcgamingwiki.com/wiki/?curid=64885) -* [Star'Shoot](https://www.pcgamingwiki.com/wiki/?curid=100094) * [Star99](https://www.pcgamingwiki.com/wiki/?curid=175582) * [Starazius](https://www.pcgamingwiki.com/wiki/?curid=149547) * [StarBallMadNess](https://www.pcgamingwiki.com/wiki/?curid=66111) @@ -29414,8 +29416,8 @@ * [Stickman Safe and Destroy](https://www.pcgamingwiki.com/wiki/?curid=80338) * [Stickman Wars](https://www.pcgamingwiki.com/wiki/?curid=68064) * [Stickman World](https://www.pcgamingwiki.com/wiki/?curid=88199) -* [Stickman: Fidget Spinner Rush](https://www.pcgamingwiki.com/wiki/?curid=91021) * [Stickman.io](https://www.pcgamingwiki.com/wiki/?curid=92779) +* [Stickman: Fidget Spinner Rush](https://www.pcgamingwiki.com/wiki/?curid=91021) * [Sticks](https://www.pcgamingwiki.com/wiki/?curid=72294) * [Sticks And Bones](https://www.pcgamingwiki.com/wiki/?curid=130317) * [StickType](https://www.pcgamingwiki.com/wiki/?curid=148080) @@ -29506,8 +29508,8 @@ * [Storms of Shambhala](https://www.pcgamingwiki.com/wiki/?curid=72799) * [Stormworm+](https://www.pcgamingwiki.com/wiki/?curid=42956) * [Story About Times](https://www.pcgamingwiki.com/wiki/?curid=124254) -* [Story in the Dream World -Volcano and Possession-](https://www.pcgamingwiki.com/wiki/?curid=155801) * [Story in the Dream World -Volcano And Possession-](https://www.pcgamingwiki.com/wiki/?curid=144823) +* [Story in the Dream World -Volcano and Possession-](https://www.pcgamingwiki.com/wiki/?curid=155801) * [Story of a Cube](https://www.pcgamingwiki.com/wiki/?curid=44265) * [Story of a Gladiator](https://www.pcgamingwiki.com/wiki/?curid=152935) * [Story of Monster](https://www.pcgamingwiki.com/wiki/?curid=136436) @@ -30315,8 +30317,8 @@ * [Swiper](https://www.pcgamingwiki.com/wiki/?curid=154259) * [Swiss Knife](https://www.pcgamingwiki.com/wiki/?curid=148799) * [Switch](https://www.pcgamingwiki.com/wiki/?curid=57835) -* [Switch - Black & White](https://www.pcgamingwiki.com/wiki/?curid=103153) * [Switch & Ditch](https://www.pcgamingwiki.com/wiki/?curid=125089) +* [Switch - Black & White](https://www.pcgamingwiki.com/wiki/?curid=103153) * [Switchblade](https://www.pcgamingwiki.com/wiki/?curid=174482) * [Switchblade (Lucid Games)](https://www.pcgamingwiki.com/wiki/?curid=107984) * [Switchcars](https://www.pcgamingwiki.com/wiki/?curid=37580) @@ -30417,6 +30419,7 @@ * [SZEN](https://www.pcgamingwiki.com/wiki/?curid=125986) * [SZone-Online](https://www.pcgamingwiki.com/wiki/?curid=45140) * [Szrot](https://www.pcgamingwiki.com/wiki/?curid=177030) +* [SÆLIG](https://www.pcgamingwiki.com/wiki/?curid=62532) * [T Simulator](https://www.pcgamingwiki.com/wiki/?curid=136386) * [T-Kara Puzzles](https://www.pcgamingwiki.com/wiki/?curid=42770) * [T-Rex Time Machine](https://www.pcgamingwiki.com/wiki/?curid=78062) @@ -30711,6 +30714,7 @@ * [Tasty Planet: Back for Seconds](https://www.pcgamingwiki.com/wiki/?curid=38121) * [Tasty Shame in Silver Soul!](https://www.pcgamingwiki.com/wiki/?curid=110190) * [Tatsu](https://www.pcgamingwiki.com/wiki/?curid=36684) +* [Tattletail](https://www.pcgamingwiki.com/wiki/?curid=55698) * [Tau Defense](https://www.pcgamingwiki.com/wiki/?curid=142163) * [Taur](https://www.pcgamingwiki.com/wiki/?curid=156787) * [Tauronos](https://www.pcgamingwiki.com/wiki/?curid=65690) @@ -30926,9 +30930,9 @@ * [Tesla Force](https://www.pcgamingwiki.com/wiki/?curid=151183) * [Tesla Roadster Going to Mars](https://www.pcgamingwiki.com/wiki/?curid=88085) * [Tesla VR](https://www.pcgamingwiki.com/wiki/?curid=41675) -* [Tesla: The Weather Man](https://www.pcgamingwiki.com/wiki/?curid=93166) * [Tesla's Best Friend](https://www.pcgamingwiki.com/wiki/?curid=53180) * [Tesla's Tower: The Wardenclyffe Mystery](https://www.pcgamingwiki.com/wiki/?curid=41950) +* [Tesla: The Weather Man](https://www.pcgamingwiki.com/wiki/?curid=93166) * [Teslagrad Remastered](https://www.pcgamingwiki.com/wiki/?curid=188752) * [Tess Elated](https://www.pcgamingwiki.com/wiki/?curid=127653) * [Tessa's Ark](https://www.pcgamingwiki.com/wiki/?curid=65584) @@ -31128,6 +31132,7 @@ * [The Bathhouse](https://www.pcgamingwiki.com/wiki/?curid=182196) * [The Battle for Sector 219](https://www.pcgamingwiki.com/wiki/?curid=42740) * [The Battle for the Hut](https://www.pcgamingwiki.com/wiki/?curid=92726) +* [The Battle for Wesnoth](https://www.pcgamingwiki.com/wiki/?curid=17699) * [The Battle Of Ages](https://www.pcgamingwiki.com/wiki/?curid=109208) * [The Battle Of Bellum](https://www.pcgamingwiki.com/wiki/?curid=112348) * [The Battle of Mahjong](https://www.pcgamingwiki.com/wiki/?curid=71851) @@ -31322,8 +31327,8 @@ * [The Crimson Crown](https://www.pcgamingwiki.com/wiki/?curid=172498) * [The Crimson Diamond](https://www.pcgamingwiki.com/wiki/?curid=139574) * [The Cross Horror Game](https://www.pcgamingwiki.com/wiki/?curid=141643) -* [The Crow: City of Angels](https://www.pcgamingwiki.com/wiki/?curid=131096) * [The Crow's Eye](https://www.pcgamingwiki.com/wiki/?curid=56940) +* [The Crow: City of Angels](https://www.pcgamingwiki.com/wiki/?curid=131096) * [The Crowded Party Game Collection](https://www.pcgamingwiki.com/wiki/?curid=61542) * [The Cruxis Sword](https://www.pcgamingwiki.com/wiki/?curid=153052) * [The Cryptkeepers of Hallowford](https://www.pcgamingwiki.com/wiki/?curid=79052) @@ -31855,7 +31860,6 @@ * [The Journey to Fairytales](https://www.pcgamingwiki.com/wiki/?curid=98652) * [The Journey: Bob's Story](https://www.pcgamingwiki.com/wiki/?curid=39370) * [The Journeyman Project](https://www.pcgamingwiki.com/wiki/?curid=19860) -* [The Journeyman Project 2: Buried in Time](https://www.pcgamingwiki.com/wiki/?curid=131674) * [The jungle](https://www.pcgamingwiki.com/wiki/?curid=70601) * [The Jungle Book](https://www.pcgamingwiki.com/wiki/?curid=79093) * [The Kaiju Offensive](https://www.pcgamingwiki.com/wiki/?curid=134845) @@ -31998,7 +32002,6 @@ * [The Life of One Dog](https://www.pcgamingwiki.com/wiki/?curid=114316) * [The Life's Lane](https://www.pcgamingwiki.com/wiki/?curid=98530) * [The Lift](https://www.pcgamingwiki.com/wiki/?curid=104523) -* [The Light Brigade](https://www.pcgamingwiki.com/wiki/?curid=188059) * [The Light Empire](https://www.pcgamingwiki.com/wiki/?curid=45433) * [The Lightbringers](https://www.pcgamingwiki.com/wiki/?curid=172799) * [The Lighthouse](https://www.pcgamingwiki.com/wiki/?curid=66297) @@ -32325,9 +32328,9 @@ * [The Princess and the Crab](https://www.pcgamingwiki.com/wiki/?curid=147220) * [The Princess and the Frog](https://www.pcgamingwiki.com/wiki/?curid=49556) * [The Princess is in Another Castle](https://www.pcgamingwiki.com/wiki/?curid=72958) +* [The Princess' Heart](https://www.pcgamingwiki.com/wiki/?curid=47055) * [The Princess, the Stray Cat, and Matters of the Heart](https://www.pcgamingwiki.com/wiki/?curid=130508) * [The Princess, the Stray Cat, and Matters of the Heart 2](https://www.pcgamingwiki.com/wiki/?curid=150414) -* [The Princess' Heart](https://www.pcgamingwiki.com/wiki/?curid=47055) * [The Prism](https://www.pcgamingwiki.com/wiki/?curid=46564) * [The Prison](https://www.pcgamingwiki.com/wiki/?curid=134900) * [The Prison Experiment](https://www.pcgamingwiki.com/wiki/?curid=95258) @@ -32643,8 +32646,8 @@ * [The Three Musketeers - D'Artagnan & The 12 Jewels](https://www.pcgamingwiki.com/wiki/?curid=91793) * [The Thrill of the Fight](https://www.pcgamingwiki.com/wiki/?curid=35142) * [The Time Machine: Trapped in Time](https://www.pcgamingwiki.com/wiki/?curid=179839) -* [The Time of Awakening](https://www.pcgamingwiki.com/wiki/?curid=153704) * [The Time Of Awakening](https://www.pcgamingwiki.com/wiki/?curid=128142) +* [The Time of Awakening](https://www.pcgamingwiki.com/wiki/?curid=153704) * [The Time Warp of Dr. Brain](https://www.pcgamingwiki.com/wiki/?curid=179683) * [The Tiny Tale 2](https://www.pcgamingwiki.com/wiki/?curid=48835) * [The Tomb of Argazfell](https://www.pcgamingwiki.com/wiki/?curid=149887) @@ -32652,9 +32655,9 @@ * [The Torus Syndicate](https://www.pcgamingwiki.com/wiki/?curid=52938) * [The Tourist Trap](https://www.pcgamingwiki.com/wiki/?curid=136724) * [The Tower](https://www.pcgamingwiki.com/wiki/?curid=49811) -* [The Tower - Fantogame](https://www.pcgamingwiki.com/wiki/?curid=40426) * [The Tower (2018)](https://www.pcgamingwiki.com/wiki/?curid=137248) * [The Tower (2019)](https://www.pcgamingwiki.com/wiki/?curid=137450) +* [The Tower - Fantogame](https://www.pcgamingwiki.com/wiki/?curid=40426) * [The Tower 2](https://www.pcgamingwiki.com/wiki/?curid=141843) * [The Tower of Beatrice](https://www.pcgamingwiki.com/wiki/?curid=88900) * [The Tower of Elements](https://www.pcgamingwiki.com/wiki/?curid=46965) @@ -33174,8 +33177,8 @@ * [Time Warp](https://www.pcgamingwiki.com/wiki/?curid=132863) * [Time Warpers](https://www.pcgamingwiki.com/wiki/?curid=113052) * [Time Warrior Z VR](https://www.pcgamingwiki.com/wiki/?curid=132381) -* [Time-Crosser: Joan of Arc](https://www.pcgamingwiki.com/wiki/?curid=91054) * [Time, Space and Matter](https://www.pcgamingwiki.com/wiki/?curid=124329) +* [Time-Crosser: Joan of Arc](https://www.pcgamingwiki.com/wiki/?curid=91054) * [TimeCluster](https://www.pcgamingwiki.com/wiki/?curid=99482) * [TimeFall](https://www.pcgamingwiki.com/wiki/?curid=132676) * [Timeflow - Time and Money Simulator](https://www.pcgamingwiki.com/wiki/?curid=127617) @@ -33333,8 +33336,8 @@ * [Togainu no Chi ~Lost Blood~](https://www.pcgamingwiki.com/wiki/?curid=156815) * [ToGather:Island](https://www.pcgamingwiki.com/wiki/?curid=152730) * [Together](https://www.pcgamingwiki.com/wiki/?curid=145127) -* [Together - A Wish No One Remembers](https://www.pcgamingwiki.com/wiki/?curid=154077) * [Together (2018)](https://www.pcgamingwiki.com/wiki/?curid=92221) +* [Together - A Wish No One Remembers](https://www.pcgamingwiki.com/wiki/?curid=154077) * [TOGETHER BnB](https://www.pcgamingwiki.com/wiki/?curid=168101) * [Together VR](https://www.pcgamingwiki.com/wiki/?curid=89620) * [Toilet Run](https://www.pcgamingwiki.com/wiki/?curid=111940) @@ -33652,7 +33655,6 @@ * [Traffic Giant](https://www.pcgamingwiki.com/wiki/?curid=77799) * [Traffix](https://www.pcgamingwiki.com/wiki/?curid=141072) * [Trafic Road Rush](https://www.pcgamingwiki.com/wiki/?curid=122364) -* [Tráfico](https://www.pcgamingwiki.com/wiki/?curid=78756) * [Tragedy of Prince Rupert](https://www.pcgamingwiki.com/wiki/?curid=65660) * [Trago](https://www.pcgamingwiki.com/wiki/?curid=96549) * [Trail Breaking](https://www.pcgamingwiki.com/wiki/?curid=92341) @@ -34052,6 +34054,7 @@ * [TRYON](https://www.pcgamingwiki.com/wiki/?curid=69613) * [Trysaria](https://www.pcgamingwiki.com/wiki/?curid=132752) * [Tryst](https://www.pcgamingwiki.com/wiki/?curid=40731) +* [Tráfico](https://www.pcgamingwiki.com/wiki/?curid=78756) * [TSA Frisky](https://www.pcgamingwiki.com/wiki/?curid=88906) * [TSM3:Gemini Strategy/双子战纪](https://www.pcgamingwiki.com/wiki/?curid=153660) * [Tsugunohi](https://www.pcgamingwiki.com/wiki/?curid=164279) @@ -34612,8 +34615,8 @@ * [UpMove](https://www.pcgamingwiki.com/wiki/?curid=150509) * [Uppers](https://www.pcgamingwiki.com/wiki/?curid=108864) * [Uprising 2: Lead and Destroy](https://www.pcgamingwiki.com/wiki/?curid=36135) -* [Uprising: Join or Die](https://www.pcgamingwiki.com/wiki/?curid=34228) * [Uprising44: The Silent Shadows](https://www.pcgamingwiki.com/wiki/?curid=50414) +* [Uprising: Join or Die](https://www.pcgamingwiki.com/wiki/?curid=34228) * [Upside-Down Dimensions](https://www.pcgamingwiki.com/wiki/?curid=66767) * [Uptasia](https://www.pcgamingwiki.com/wiki/?curid=78603) * [Upwards, Lonely Robot](https://www.pcgamingwiki.com/wiki/?curid=44203) @@ -34732,9 +34735,9 @@ * [Vampire: The Masquerade - Out for Blood](https://www.pcgamingwiki.com/wiki/?curid=161616) * [Vampire: The Masquerade - Parliament of Knives](https://www.pcgamingwiki.com/wiki/?curid=161703) * [Vampires Dawn 3: The Crimson Realm](https://www.pcgamingwiki.com/wiki/?curid=185530) -* [Vampires: Guide Them to Safety!](https://www.pcgamingwiki.com/wiki/?curid=49476) * [Vampires!](https://www.pcgamingwiki.com/wiki/?curid=70497) * [Vampires' Melody](https://www.pcgamingwiki.com/wiki/?curid=164286) +* [Vampires: Guide Them to Safety!](https://www.pcgamingwiki.com/wiki/?curid=49476) * [Vampirina's Nails](https://www.pcgamingwiki.com/wiki/?curid=103325) * [Vanaris Tactics](https://www.pcgamingwiki.com/wiki/?curid=172891) * [Vandal Hearts](https://www.pcgamingwiki.com/wiki/?curid=181494) @@ -34829,9 +34832,9 @@ * [Venal Soul (Chapter One)](https://www.pcgamingwiki.com/wiki/?curid=93663) * [Venandi In Silva](https://www.pcgamingwiki.com/wiki/?curid=149003) * [Vendetta Online](https://www.pcgamingwiki.com/wiki/?curid=168662) -* [Vengeance ~ In my family's name](https://www.pcgamingwiki.com/wiki/?curid=145922) * [Vengeance of Excalibur](https://www.pcgamingwiki.com/wiki/?curid=26615) * [Vengeance of Mr. Peppermint](https://www.pcgamingwiki.com/wiki/?curid=190724) +* [Vengeance ~ In my family's name](https://www.pcgamingwiki.com/wiki/?curid=145922) * [Vengeance: Lost Love](https://www.pcgamingwiki.com/wiki/?curid=64757) * [Vengeful Bat Dungeon Crawler](https://www.pcgamingwiki.com/wiki/?curid=132194) * [Vengeful Guardian: Moonrider](https://www.pcgamingwiki.com/wiki/?curid=185829) @@ -34920,8 +34923,8 @@ * [Vienna Automobile Society](https://www.pcgamingwiki.com/wiki/?curid=66983) * [Vietcong (2018)](https://www.pcgamingwiki.com/wiki/?curid=137290) * [Vietnam '65](https://www.pcgamingwiki.com/wiki/?curid=48521) -* [Vietnam ‘65](https://www.pcgamingwiki.com/wiki/?curid=190157) * [Vietnam War Puzzles](https://www.pcgamingwiki.com/wiki/?curid=92123) +* [Vietnam ‘65](https://www.pcgamingwiki.com/wiki/?curid=190157) * [Viewpoints](https://www.pcgamingwiki.com/wiki/?curid=66191) * [Vigil: Blood Bitterness](https://www.pcgamingwiki.com/wiki/?curid=36457) * [Vigilantes](https://www.pcgamingwiki.com/wiki/?curid=53984) @@ -34953,8 +34956,8 @@ * [Viking Sisters](https://www.pcgamingwiki.com/wiki/?curid=134584) * [Viking Vengeance](https://www.pcgamingwiki.com/wiki/?curid=137060) * [Viking Village](https://www.pcgamingwiki.com/wiki/?curid=92059) -* [Viking: Sigurd's Adventure](https://www.pcgamingwiki.com/wiki/?curid=127785) * [Viking's Drakkars](https://www.pcgamingwiki.com/wiki/?curid=90184) +* [Viking: Sigurd's Adventure](https://www.pcgamingwiki.com/wiki/?curid=127785) * [VikingJourney](https://www.pcgamingwiki.com/wiki/?curid=94641) * [Vikings Wars](https://www.pcgamingwiki.com/wiki/?curid=155520) * [Vikings: The Strategy of Ultimate Conquest](https://www.pcgamingwiki.com/wiki/?curid=185945) @@ -34996,8 +34999,8 @@ * [Violet Girl - Sexy Encounters](https://www.pcgamingwiki.com/wiki/?curid=173008) * [Violet Haunted](https://www.pcgamingwiki.com/wiki/?curid=51161) * [Violet rE:-The Final reExistence-](https://www.pcgamingwiki.com/wiki/?curid=141649) -* [Violet: Space Mission](https://www.pcgamingwiki.com/wiki/?curid=44906) * [Violet's Dream VR](https://www.pcgamingwiki.com/wiki/?curid=58802) +* [Violet: Space Mission](https://www.pcgamingwiki.com/wiki/?curid=44906) * [Violett](https://www.pcgamingwiki.com/wiki/?curid=13364) * [VIP Shuttle](https://www.pcgamingwiki.com/wiki/?curid=129759) * [Viper](https://www.pcgamingwiki.com/wiki/?curid=155993) @@ -35108,9 +35111,9 @@ * [Voice Actress](https://www.pcgamingwiki.com/wiki/?curid=76941) * [Voice Actress II](https://www.pcgamingwiki.com/wiki/?curid=99834) * [Voice of Pripyat](https://www.pcgamingwiki.com/wiki/?curid=49301) -* [Void](https://www.pcgamingwiki.com/wiki/?curid=36246) -* [VOiD](https://www.pcgamingwiki.com/wiki/?curid=128195) * [VOID](https://www.pcgamingwiki.com/wiki/?curid=89248) +* [VOiD](https://www.pcgamingwiki.com/wiki/?curid=128195) +* [Void](https://www.pcgamingwiki.com/wiki/?curid=36246) * [Void & Nothingness](https://www.pcgamingwiki.com/wiki/?curid=54483) * [Void 21](https://www.pcgamingwiki.com/wiki/?curid=43821) * [Void Breach](https://www.pcgamingwiki.com/wiki/?curid=156913) @@ -35305,11 +35308,11 @@ * [VR Triber](https://www.pcgamingwiki.com/wiki/?curid=73207) * [VR Ultimate Paintball: Heartbreak, Regret & Paintbots](https://www.pcgamingwiki.com/wiki/?curid=41707) * [VR-Xterminator](https://www.pcgamingwiki.com/wiki/?curid=55508) -* [VR: The Puzzle Room](https://www.pcgamingwiki.com/wiki/?curid=56064) -* [VR: Vacate the Room](https://www.pcgamingwiki.com/wiki/?curid=35168) * [VR0GU3: Unapologetic Hardcore VR Edition](https://www.pcgamingwiki.com/wiki/?curid=56088) * [VR2: Vacate 2 Rooms](https://www.pcgamingwiki.com/wiki/?curid=92207) * [VR2Space](https://www.pcgamingwiki.com/wiki/?curid=67851) +* [VR: The Puzzle Room](https://www.pcgamingwiki.com/wiki/?curid=56064) +* [VR: Vacate the Room](https://www.pcgamingwiki.com/wiki/?curid=35168) * [VRAdventure](https://www.pcgamingwiki.com/wiki/?curid=148979) * [VrAMP](https://www.pcgamingwiki.com/wiki/?curid=42852) * [VRange](https://www.pcgamingwiki.com/wiki/?curid=113040) @@ -35427,6 +35430,7 @@ * [Wall to Wall](https://www.pcgamingwiki.com/wiki/?curid=128173) * [Wall Walker](https://www.pcgamingwiki.com/wiki/?curid=105209) * [Wallace & Gromit in Project Zoo](https://www.pcgamingwiki.com/wiki/?curid=163714) +* [Wallace & Gromit's Grand Adventures](https://www.pcgamingwiki.com/wiki/?curid=8029) * [Wallenda](https://www.pcgamingwiki.com/wiki/?curid=122746) * [Wallrunners](https://www.pcgamingwiki.com/wiki/?curid=91236) * [Walls in Dead](https://www.pcgamingwiki.com/wiki/?curid=91939) @@ -35589,10 +35593,10 @@ * [Warlander (2023)](https://www.pcgamingwiki.com/wiki/?curid=184642) * [Warlock 2: The Exiled](https://www.pcgamingwiki.com/wiki/?curid=16570) * [Warlock Revenge](https://www.pcgamingwiki.com/wiki/?curid=73677) -* [Warlock: Master of the Arcane](https://www.pcgamingwiki.com/wiki/?curid=2203) -* [Warlock: Tower Defence](https://www.pcgamingwiki.com/wiki/?curid=95232) * [Warlock's Citadel](https://www.pcgamingwiki.com/wiki/?curid=46104) * [Warlock's Tower](https://www.pcgamingwiki.com/wiki/?curid=50948) +* [Warlock: Master of the Arcane](https://www.pcgamingwiki.com/wiki/?curid=2203) +* [Warlock: Tower Defence](https://www.pcgamingwiki.com/wiki/?curid=95232) * [Warlocks 2: God Slayers](https://www.pcgamingwiki.com/wiki/?curid=62568) * [Warlord: Attrition](https://www.pcgamingwiki.com/wiki/?curid=135883) * [Warlords](https://www.pcgamingwiki.com/wiki/?curid=152299) @@ -35643,9 +35647,9 @@ * [Warriors of Ragnarök](https://www.pcgamingwiki.com/wiki/?curid=122336) * [Warriors of the Nile](https://www.pcgamingwiki.com/wiki/?curid=177467) * [Warriors of Vilvatikta](https://www.pcgamingwiki.com/wiki/?curid=36736) +* [Warriors' Wrath](https://www.pcgamingwiki.com/wiki/?curid=42896) * [Warriors: Rise to Glory](https://www.pcgamingwiki.com/wiki/?curid=61695) * [Warriors: Rise to Glory! Online Multiplayer Open Beta](https://www.pcgamingwiki.com/wiki/?curid=142227) -* [Warriors' Wrath](https://www.pcgamingwiki.com/wiki/?curid=42896) * [Wars Across The World: Russian Battles](https://www.pcgamingwiki.com/wiki/?curid=94525) * [Wars and Battles: Normandy](https://www.pcgamingwiki.com/wiki/?curid=78078) * [Wars and Battles: October War](https://www.pcgamingwiki.com/wiki/?curid=123655) @@ -35666,8 +35670,8 @@ * [Wartime Prologue](https://www.pcgamingwiki.com/wiki/?curid=128401) * [Wartune](https://www.pcgamingwiki.com/wiki/?curid=41617) * [Warz: Horde](https://www.pcgamingwiki.com/wiki/?curid=125308) -* [WarZone](https://www.pcgamingwiki.com/wiki/?curid=136975) * [WARZONE](https://www.pcgamingwiki.com/wiki/?curid=72848) +* [WarZone](https://www.pcgamingwiki.com/wiki/?curid=136975) * [WarZone Flashpoint](https://www.pcgamingwiki.com/wiki/?curid=123956) * [Warzone VR](https://www.pcgamingwiki.com/wiki/?curid=125355) * [Warzone-X](https://www.pcgamingwiki.com/wiki/?curid=136064) @@ -35683,8 +35687,8 @@ * [Wasteland Gossip](https://www.pcgamingwiki.com/wiki/?curid=75642) * [Wasteland Rampage](https://www.pcgamingwiki.com/wiki/?curid=94407) * [Wasteland Survival](https://www.pcgamingwiki.com/wiki/?curid=132020) -* [Watch](https://www.pcgamingwiki.com/wiki/?curid=135600) * [WATCH](https://www.pcgamingwiki.com/wiki/?curid=156825) +* [Watch](https://www.pcgamingwiki.com/wiki/?curid=135600) * [Watch Dogs: Legion of the Dead](https://www.pcgamingwiki.com/wiki/?curid=169040) * [Watch Me Jump](https://www.pcgamingwiki.com/wiki/?curid=69757) * [Watch Out](https://www.pcgamingwiki.com/wiki/?curid=67643) @@ -35717,8 +35721,8 @@ * [Waveform Wipeout](https://www.pcgamingwiki.com/wiki/?curid=105051) * [WaveLand](https://www.pcgamingwiki.com/wiki/?curid=59846) * [Waves of the Atlantide](https://www.pcgamingwiki.com/wiki/?curid=130213) -* [Waves²](https://www.pcgamingwiki.com/wiki/?curid=45254) * [Waveshaper](https://www.pcgamingwiki.com/wiki/?curid=58690) +* [Waves²](https://www.pcgamingwiki.com/wiki/?curid=45254) * [Wavey the Rocket](https://www.pcgamingwiki.com/wiki/?curid=157037) * [Wavy Trip](https://www.pcgamingwiki.com/wiki/?curid=88099) * [Waxworks](https://www.pcgamingwiki.com/wiki/?curid=14276) @@ -35821,7 +35825,6 @@ * [WEJAM](https://www.pcgamingwiki.com/wiki/?curid=138977) * [WELCOME](https://www.pcgamingwiki.com/wiki/?curid=145254) * [Welcome Above](https://www.pcgamingwiki.com/wiki/?curid=122458) -* [Welcome Back Daddy](https://www.pcgamingwiki.com/wiki/?curid=93156) * [Welcome Back to 2007](https://www.pcgamingwiki.com/wiki/?curid=78798) * [Welcome Back to 2007 2](https://www.pcgamingwiki.com/wiki/?curid=109024) * [Welcome Home, Love](https://www.pcgamingwiki.com/wiki/?curid=59464) @@ -35910,17 +35913,17 @@ * [What Never Was: Chapter II](https://www.pcgamingwiki.com/wiki/?curid=173559) * [What The Box?](https://www.pcgamingwiki.com/wiki/?curid=38901) * [What the Dark Keeps](https://www.pcgamingwiki.com/wiki/?curid=38700) -* [What the Duck](https://www.pcgamingwiki.com/wiki/?curid=142367) * [What The Duck](https://www.pcgamingwiki.com/wiki/?curid=151581) +* [What the Duck](https://www.pcgamingwiki.com/wiki/?curid=142367) * [What The Heck, Dude?](https://www.pcgamingwiki.com/wiki/?curid=52688) * [What would Google say?](https://www.pcgamingwiki.com/wiki/?curid=110030) * [What Would You Do?](https://www.pcgamingwiki.com/wiki/?curid=50825) * [What!? My Neighbors Are Demons!!?](https://www.pcgamingwiki.com/wiki/?curid=64644) -* [What? Hentai? Again ? ( ͡° ͜ʖ ͡°)](https://www.pcgamingwiki.com/wiki/?curid=121593) * [What's Left](https://www.pcgamingwiki.com/wiki/?curid=151006) * [What's My Gender?](https://www.pcgamingwiki.com/wiki/?curid=95282) * [What's under Your Blanket !?](https://www.pcgamingwiki.com/wiki/?curid=45083) * [What's under Your Blanket 2 !?](https://www.pcgamingwiki.com/wiki/?curid=60271) +* [What? Hentai? Again ? ( ͡° ͜ʖ ͡°)](https://www.pcgamingwiki.com/wiki/?curid=121593) * [Whateverland](https://www.pcgamingwiki.com/wiki/?curid=154336) * [Wheel of Fate](https://www.pcgamingwiki.com/wiki/?curid=151279) * [Wheel of Fortune (1998)](https://www.pcgamingwiki.com/wiki/?curid=101643) @@ -36116,9 +36119,9 @@ * [Wimp: Who Stole My Pants?](https://www.pcgamingwiki.com/wiki/?curid=47607) * [Win Big Or Die](https://www.pcgamingwiki.com/wiki/?curid=51730) * [Win That War!](https://www.pcgamingwiki.com/wiki/?curid=60291) +* [Win the Game!](https://www.pcgamingwiki.com/wiki/?curid=90987) * [Win the Game: Do It!](https://www.pcgamingwiki.com/wiki/?curid=92877) * [Win the Game: WTF!](https://www.pcgamingwiki.com/wiki/?curid=95477) -* [Win the Game!](https://www.pcgamingwiki.com/wiki/?curid=90987) * [Wincars Racer](https://www.pcgamingwiki.com/wiki/?curid=53425) * [Wind Child](https://www.pcgamingwiki.com/wiki/?curid=51020) * [Wind Force](https://www.pcgamingwiki.com/wiki/?curid=132314) @@ -36218,21 +36221,21 @@ * [Witch Ring Meister](https://www.pcgamingwiki.com/wiki/?curid=132647) * [Witch Sword](https://www.pcgamingwiki.com/wiki/?curid=79799) * [Witch Thief](https://www.pcgamingwiki.com/wiki/?curid=67982) -* [Witch-Bot Meglilo](https://www.pcgamingwiki.com/wiki/?curid=42331) * [Witch's Pranks: Frog's Fortune](https://www.pcgamingwiki.com/wiki/?curid=48957) * [Witch's Tales](https://www.pcgamingwiki.com/wiki/?curid=120771) +* [Witch-Bot Meglilo](https://www.pcgamingwiki.com/wiki/?curid=42331) * [WitchAction](https://www.pcgamingwiki.com/wiki/?curid=122264) * [Witchball](https://www.pcgamingwiki.com/wiki/?curid=79143) * [Witchcraft](https://www.pcgamingwiki.com/wiki/?curid=74584) * [Witchcraft: Pandoras Box](https://www.pcgamingwiki.com/wiki/?curid=153665) * [Witches Brew](https://www.pcgamingwiki.com/wiki/?curid=142293) -* [Witches, Heroes and Magic](https://www.pcgamingwiki.com/wiki/?curid=47443) * [Witches' Legacy: Hunter and the Hunted](https://www.pcgamingwiki.com/wiki/?curid=88784) * [Witches' Legacy: Lair of the Witch Queen](https://www.pcgamingwiki.com/wiki/?curid=112820) * [Witches' Legacy: Slumbering Darkness](https://www.pcgamingwiki.com/wiki/?curid=57317) * [Witches' Legacy: The Charleston Curse](https://www.pcgamingwiki.com/wiki/?curid=134458) * [Witches' Legacy: The Dark Throne](https://www.pcgamingwiki.com/wiki/?curid=69452) * [Witches' Legacy: The Ties That Bind](https://www.pcgamingwiki.com/wiki/?curid=35236) +* [Witches, Heroes and Magic](https://www.pcgamingwiki.com/wiki/?curid=47443) * [Witcheye](https://www.pcgamingwiki.com/wiki/?curid=154937) * [Witchfire](https://www.pcgamingwiki.com/wiki/?curid=154545) * [Witchinour](https://www.pcgamingwiki.com/wiki/?curid=63169) @@ -36255,6 +36258,7 @@ * [Wizard Street](https://www.pcgamingwiki.com/wiki/?curid=96681) * [Wizard Warfare](https://www.pcgamingwiki.com/wiki/?curid=153754) * [Wizard's Crown](https://www.pcgamingwiki.com/wiki/?curid=173446) +* [Wizard101](https://www.pcgamingwiki.com/wiki/?curid=108876) * [Wizardas](https://www.pcgamingwiki.com/wiki/?curid=134558) * [WizardChess](https://www.pcgamingwiki.com/wiki/?curid=187038) * [WizardCraft](https://www.pcgamingwiki.com/wiki/?curid=42872) @@ -36265,9 +36269,9 @@ * [Wizards and Warlords](https://www.pcgamingwiki.com/wiki/?curid=58330) * [Wizards of Brandel](https://www.pcgamingwiki.com/wiki/?curid=150365) * [Wizards Tourney](https://www.pcgamingwiki.com/wiki/?curid=111976) +* [Wizards' Clash](https://www.pcgamingwiki.com/wiki/?curid=46542) * [Wizards: Home](https://www.pcgamingwiki.com/wiki/?curid=63765) * [Wizards: Wand of Epicosity](https://www.pcgamingwiki.com/wiki/?curid=162435) -* [Wizards' Clash](https://www.pcgamingwiki.com/wiki/?curid=46542) * [Wizhood](https://www.pcgamingwiki.com/wiki/?curid=64789) * [Wizhood: The Epic of Freedom](https://www.pcgamingwiki.com/wiki/?curid=144671) * [Wizrogue: Labyrinth of Wizardry](https://www.pcgamingwiki.com/wiki/?curid=56685) @@ -36287,8 +36291,8 @@ * [Wolf or Boy](https://www.pcgamingwiki.com/wiki/?curid=134986) * [Wolf Simulator](https://www.pcgamingwiki.com/wiki/?curid=50937) * [Wolf Team](https://www.pcgamingwiki.com/wiki/?curid=152364) -* [Wolf: The Evolution Story](https://www.pcgamingwiki.com/wiki/?curid=108360) * [Wolf's Fury](https://www.pcgamingwiki.com/wiki/?curid=134466) +* [Wolf: The Evolution Story](https://www.pcgamingwiki.com/wiki/?curid=108360) * [Wolfgate](https://www.pcgamingwiki.com/wiki/?curid=136430) * [Wolflame](https://www.pcgamingwiki.com/wiki/?curid=43470) * [Wolflord - Werewolf Online](https://www.pcgamingwiki.com/wiki/?curid=71934) @@ -36665,8 +36669,8 @@ * [Yankai's Triangle](https://www.pcgamingwiki.com/wiki/?curid=50925) * [Yanone: Letter Splatter](https://www.pcgamingwiki.com/wiki/?curid=76091) * [Yanpai Simulator](https://www.pcgamingwiki.com/wiki/?curid=124000) -* [YAPP: Yet Another Puzzle Platformer](https://www.pcgamingwiki.com/wiki/?curid=75646) * [YAPP2: Yet Another Pushing Puzzler](https://www.pcgamingwiki.com/wiki/?curid=103221) +* [YAPP: Yet Another Puzzle Platformer](https://www.pcgamingwiki.com/wiki/?curid=75646) * [YARBAY](https://www.pcgamingwiki.com/wiki/?curid=144637) * [Yargis - Space Melee](https://www.pcgamingwiki.com/wiki/?curid=47429) * [Yars' Revenge](https://www.pcgamingwiki.com/wiki/?curid=181095) @@ -36712,7 +36716,6 @@ * [Ymir](https://www.pcgamingwiki.com/wiki/?curid=65503) * [Yo My Yo!](https://www.pcgamingwiki.com/wiki/?curid=123544) * [Yoba](https://www.pcgamingwiki.com/wiki/?curid=67538) -* [Yōdanji](https://www.pcgamingwiki.com/wiki/?curid=77164) * [Yoga Lesson VR](https://www.pcgamingwiki.com/wiki/?curid=102387) * [Yohane the Parhelion -BLAZE in the DEEPBLUE-](https://www.pcgamingwiki.com/wiki/?curid=191001) * [Yohane the Parhelion -NUMAZU in the MIRAGE-](https://www.pcgamingwiki.com/wiki/?curid=191040) @@ -36772,12 +36775,12 @@ * [You Versus 27 Elves](https://www.pcgamingwiki.com/wiki/?curid=130211) * [You Will Die Here Tonight](https://www.pcgamingwiki.com/wiki/?curid=191216) * [You Will Never Get This Achievement](https://www.pcgamingwiki.com/wiki/?curid=79259) -* [You, With Me - A Kinetic Novel](https://www.pcgamingwiki.com/wiki/?curid=58023) -* [You: The Untold Stories](https://www.pcgamingwiki.com/wiki/?curid=104571) -* [You... and Who Else?](https://www.pcgamingwiki.com/wiki/?curid=58144) * [You're Fired](https://www.pcgamingwiki.com/wiki/?curid=93631) * [You're Fired!](https://www.pcgamingwiki.com/wiki/?curid=136804) * [You're Not Special](https://www.pcgamingwiki.com/wiki/?curid=126100) +* [You, With Me - A Kinetic Novel](https://www.pcgamingwiki.com/wiki/?curid=58023) +* [You... and Who Else?](https://www.pcgamingwiki.com/wiki/?curid=58144) +* [You: The Untold Stories](https://www.pcgamingwiki.com/wiki/?curid=104571) * [Your Anime Waifu](https://www.pcgamingwiki.com/wiki/?curid=148811) * [Your Ball Exploded](https://www.pcgamingwiki.com/wiki/?curid=96713) * [Your Bunny Wrote](https://www.pcgamingwiki.com/wiki/?curid=77047) @@ -36828,21 +36831,22 @@ * [Yuyuko's Butterfly Dream](https://www.pcgamingwiki.com/wiki/?curid=124256) * [Yuzi Lims: Anime Runner](https://www.pcgamingwiki.com/wiki/?curid=80394) * [Yuzi Lims: Hentai](https://www.pcgamingwiki.com/wiki/?curid=121196) +* [Yōdanji](https://www.pcgamingwiki.com/wiki/?curid=77164) * [Z](https://www.pcgamingwiki.com/wiki/?curid=18235) * [Z Dawn](https://www.pcgamingwiki.com/wiki/?curid=96705) * [Z Runaway](https://www.pcgamingwiki.com/wiki/?curid=68976) * [Z ViRus: V.I.R.M Uprising](https://www.pcgamingwiki.com/wiki/?curid=65106) +* [Z'Code](https://www.pcgamingwiki.com/wiki/?curid=53037) * [Z-Aftershock](https://www.pcgamingwiki.com/wiki/?curid=88179) * [Z-End](https://www.pcgamingwiki.com/wiki/?curid=74417) * [Z-Exemplar](https://www.pcgamingwiki.com/wiki/?curid=52611) -* [Z: Escape](https://www.pcgamingwiki.com/wiki/?curid=92951) -* [Z: Steel Soldiers (2014)](https://www.pcgamingwiki.com/wiki/?curid=49819) * [Z. Year One](https://www.pcgamingwiki.com/wiki/?curid=36920) * [Z.I.O.N.](https://www.pcgamingwiki.com/wiki/?curid=43131) * [Z.W!](https://www.pcgamingwiki.com/wiki/?curid=93674) -* [Z'Code](https://www.pcgamingwiki.com/wiki/?curid=53037) * [Z55z](https://www.pcgamingwiki.com/wiki/?curid=82859) * [Z69](https://www.pcgamingwiki.com/wiki/?curid=66458) +* [Z: Escape](https://www.pcgamingwiki.com/wiki/?curid=92951) +* [Z: Steel Soldiers (2014)](https://www.pcgamingwiki.com/wiki/?curid=49819) * [ZAAM](https://www.pcgamingwiki.com/wiki/?curid=150936) * [Zaba The Frog](https://www.pcgamingwiki.com/wiki/?curid=69555) * [Zaccaria Pinball](https://www.pcgamingwiki.com/wiki/?curid=33541) @@ -37210,6 +37214,11 @@ * [Zyxia: Neon Termination](https://www.pcgamingwiki.com/wiki/?curid=148677) * [Zzzz-Zzzz-Zzzz](https://www.pcgamingwiki.com/wiki/?curid=38927) * [Zzzzz](https://www.pcgamingwiki.com/wiki/?curid=149069) +* [~necromancy~Emily's Escape](https://www.pcgamingwiki.com/wiki/?curid=124006) +* [¡Zombies! : Faulty Towers](https://www.pcgamingwiki.com/wiki/?curid=144137) +* [Élan Vital](https://www.pcgamingwiki.com/wiki/?curid=127522) +* [Été](https://www.pcgamingwiki.com/wiki/?curid=136092) +* [Ôpe](https://www.pcgamingwiki.com/wiki/?curid=150237) * [Бухой Батя / Drunk Dad](https://www.pcgamingwiki.com/wiki/?curid=121753) * [В поисках Атлантиды](https://www.pcgamingwiki.com/wiki/?curid=121077) * [ВЗЛОМ ЖОПЫ](https://www.pcgamingwiki.com/wiki/?curid=156519) @@ -37228,20 +37237,23 @@ * [ШП](https://www.pcgamingwiki.com/wiki/?curid=74241) * [ШХД: ЗИМА / IT'S WINTER](https://www.pcgamingwiki.com/wiki/?curid=129708) * [Щенок](https://www.pcgamingwiki.com/wiki/?curid=167311) -* [누가 그녀를 죽였나](https://www.pcgamingwiki.com/wiki/?curid=136414) -* [무연](https://www.pcgamingwiki.com/wiki/?curid=144415) -* [암전:Blackout](https://www.pcgamingwiki.com/wiki/?curid=129985) -* [エルソード (ELSWORD)](https://www.pcgamingwiki.com/wiki/?curid=129577) +* [€100](https://www.pcgamingwiki.com/wiki/?curid=130129) +* [∀kashicforce](https://www.pcgamingwiki.com/wiki/?curid=132059) +* [★Fallalypse ★ Disconnect ❄](https://www.pcgamingwiki.com/wiki/?curid=122127) +* [♞ The Tactics of War ♞](https://www.pcgamingwiki.com/wiki/?curid=112672) +* [✌ Johnny Rocket](https://www.pcgamingwiki.com/wiki/?curid=112872) +* [《鬼畜战记:金坷垃传说》](https://www.pcgamingwiki.com/wiki/?curid=141421) * [おわかれのほし](https://www.pcgamingwiki.com/wiki/?curid=132662) * [きりたんvsカニたん -ずんだもちを防衛せよ!-](https://www.pcgamingwiki.com/wiki/?curid=127247) +* [ばるばろっさ! ~すすめ? 赤軍少女旅団](https://www.pcgamingwiki.com/wiki/?curid=81609) +* [まぜっこタワー](https://www.pcgamingwiki.com/wiki/?curid=81659) +* [エルソード (ELSWORD)](https://www.pcgamingwiki.com/wiki/?curid=129577) * [シニサギ](https://www.pcgamingwiki.com/wiki/?curid=141352) * [テーマパークの虫](https://www.pcgamingwiki.com/wiki/?curid=130231) * [バインドを解除する(unbind)](https://www.pcgamingwiki.com/wiki/?curid=123635) * [バグダス - デバッガー検定 -](https://www.pcgamingwiki.com/wiki/?curid=125787) * [パトルの軍事博物館3 超絶無敵究極兵器](https://www.pcgamingwiki.com/wiki/?curid=157325) -* [ばるばろっさ! ~すすめ? 赤軍少女旅団](https://www.pcgamingwiki.com/wiki/?curid=81609) * [ポエニ戦争 地中海の稲妻](https://www.pcgamingwiki.com/wiki/?curid=143945) -* [まぜっこタワー](https://www.pcgamingwiki.com/wiki/?curid=81659) * [ライフワン- lifeOne](https://www.pcgamingwiki.com/wiki/?curid=128213) * [一字不落](https://www.pcgamingwiki.com/wiki/?curid=155857) * [一方灵田](https://www.pcgamingwiki.com/wiki/?curid=157350) @@ -37267,8 +37279,8 @@ * [丰饶之角 不可思议之物居住的小镇](https://www.pcgamingwiki.com/wiki/?curid=91274) * [乌鸦](https://www.pcgamingwiki.com/wiki/?curid=99632) * [乔乔的铁拳 Joe's Fists](https://www.pcgamingwiki.com/wiki/?curid=155937) -* [九劫曲:诅咒之地](https://www.pcgamingwiki.com/wiki/?curid=125735) * [九劫曲:诅咒之地 NineTrials Test Server](https://www.pcgamingwiki.com/wiki/?curid=129799) +* [九劫曲:诅咒之地](https://www.pcgamingwiki.com/wiki/?curid=125735) * [九州仙玉 Kyushu jade](https://www.pcgamingwiki.com/wiki/?curid=155898) * [九霄缳神记 GOD SLAYER](https://www.pcgamingwiki.com/wiki/?curid=142172) * [书之旅人 Story Walker](https://www.pcgamingwiki.com/wiki/?curid=180817) @@ -37300,8 +37312,6 @@ * [关于我被小学女生绑架这件事](https://www.pcgamingwiki.com/wiki/?curid=94772) * [兽耳攻略 - TFK Faculty](https://www.pcgamingwiki.com/wiki/?curid=139435) * [冒险村的商人日记/Businessman's Diary of Dungeon Village](https://www.pcgamingwiki.com/wiki/?curid=129701) -* [最后的47小时 - The Last 47 Hours](https://www.pcgamingwiki.com/wiki/?curid=129809) -* [最后的阳光 The Last Sunshine](https://www.pcgamingwiki.com/wiki/?curid=148791) * [军团战棋 Legion War](https://www.pcgamingwiki.com/wiki/?curid=124301) * [冷月清辉照天涯(KUNG FU LEGEND)](https://www.pcgamingwiki.com/wiki/?curid=134705) * [凡人飞仙](https://www.pcgamingwiki.com/wiki/?curid=144895) @@ -37332,8 +37342,8 @@ * [原始部落](https://www.pcgamingwiki.com/wiki/?curid=141823) * [反现实症候群γ - Counterrealstic Syndrome γ](https://www.pcgamingwiki.com/wiki/?curid=153204) * [变量](https://www.pcgamingwiki.com/wiki/?curid=136708) -* [叙事曲:难忘的回忆 / Ballade: with Memories](https://www.pcgamingwiki.com/wiki/?curid=148930) * [叙事曲2:星空下的诺言 / Ballade2: the Celestial Promise](https://www.pcgamingwiki.com/wiki/?curid=136538) +* [叙事曲:难忘的回忆 / Ballade: with Memories](https://www.pcgamingwiki.com/wiki/?curid=148930) * [叫我铸造师](https://www.pcgamingwiki.com/wiki/?curid=149706) * [同居指南](https://www.pcgamingwiki.com/wiki/?curid=124311) * [名媛女友-Girlfriend invites](https://www.pcgamingwiki.com/wiki/?curid=150269) @@ -37363,6 +37373,7 @@ * [場外人生](https://www.pcgamingwiki.com/wiki/?curid=141786) * [塔塔帝国](https://www.pcgamingwiki.com/wiki/?curid=175863) * [境界 Dice&Fighter](https://www.pcgamingwiki.com/wiki/?curid=152969) +* [墨色三国志](https://www.pcgamingwiki.com/wiki/?curid=141210) * [夏之扉:最后的圣骑士](https://www.pcgamingwiki.com/wiki/?curid=88206) * [夜之归途 Night Homing](https://www.pcgamingwiki.com/wiki/?curid=125292) * [夜孤城 · 何为侠义](https://www.pcgamingwiki.com/wiki/?curid=151561) @@ -37500,6 +37511,8 @@ * [暗黑破坏岛/Diablo IslanD](https://www.pcgamingwiki.com/wiki/?curid=144629) * [暴走熊孩](https://www.pcgamingwiki.com/wiki/?curid=113060) * [曲阿小将 Minor Leader](https://www.pcgamingwiki.com/wiki/?curid=144192) +* [最后的47小时 - The Last 47 Hours](https://www.pcgamingwiki.com/wiki/?curid=129809) +* [最后的阳光 The Last Sunshine](https://www.pcgamingwiki.com/wiki/?curid=148791) * [月牙楼风云](https://www.pcgamingwiki.com/wiki/?curid=153583) * [月球坠落时 Moon Fall](https://www.pcgamingwiki.com/wiki/?curid=151161) * [末法仙路](https://www.pcgamingwiki.com/wiki/?curid=135618) @@ -37728,4 +37741,7 @@ * [麻神消消乐](https://www.pcgamingwiki.com/wiki/?curid=134568) * [黎明霞光](https://www.pcgamingwiki.com/wiki/?curid=155670) * [黑暗料理?!](https://www.pcgamingwiki.com/wiki/?curid=121943) -* [墨色三国志](https://www.pcgamingwiki.com/wiki/?curid=141210) +* [누가 그녀를 죽였나](https://www.pcgamingwiki.com/wiki/?curid=136414) +* [무연](https://www.pcgamingwiki.com/wiki/?curid=144415) +* [암전:Blackout](https://www.pcgamingwiki.com/wiki/?curid=129985) +* [</reality>](https://www.pcgamingwiki.com/wiki/?curid=57848) diff --git a/data/steam-game-cache.yaml b/data/steam-game-cache.yaml index 18fb31e8..4d5ca8a4 100644 --- a/data/steam-game-cache.yaml +++ b/data/steam-game-cache.yaml @@ -1,25 +1,24 @@ -'10': +--- +"10": installDir: Half-Life launch: - - arguments: '-steam -game cstrike' + - arguments: "-steam -game cstrike" config: oslist: windows executable: hl.exe - vacmodulefilename: resource\\sourceinit.dat - - arguments: '-steam -game cstrike' + - arguments: "-steam -game cstrike" config: oslist: macos executable: hl.sh - vacmodulefilename: resource\\sourceinit_macos.dat - - arguments: '-steam -game cstrike' + - arguments: "-steam -game cstrike" config: oslist: linux executable: hl.sh -'10000': +"10000": installDir: Enemy Territory QUAKE Wars launch: - executable: etqw.exe -'1000000': +"1000000": installDir: ASCENXION launch: - config: @@ -28,9 +27,9 @@ type: default nameLocalized: english: ASCENXION - schinese: 'ASCENXION : 降临' - tchinese: 'ASCENXION : 降臨' -'1000010': + schinese: "ASCENXION : 降临" + tchinese: "ASCENXION : 降臨" +"1000010": installDir: Crown Trick launch: - config: @@ -40,7 +39,7 @@ nameLocalized: english: Crown Trick schinese: 不思议的皇冠 -'1000030': +"1000030": installDir: CookServeDelicious3 launch: - config: @@ -53,15 +52,15 @@ description: Launch Mac Version executable: CSD3_Foodtruck.app type: default -'1000040': +"1000040": installDir: MyTest launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: CellWar.exe type: default -'1000080': +"1000080": installDir: Zengeon launch: - config: @@ -77,20 +76,20 @@ japanese: ゼンジョン schinese: 神明在上 tchinese: 神明在上 -'1000100': +"1000100": installDir: Et cetera You launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" executable: eto_cetera.exe type: none -'1000110': +"1000110": installDir: 跳跳大咖 launch: - config: oslist: windows executable: jumpmaster.exe type: none -'1000130': +"1000130": installDir: Cube Defender launch: - config: @@ -101,9 +100,9 @@ oslist: macos executable: cubeDefender1.4.app type: default -'1000270': {} -'1000300': {} -'1000310': +"1000270": {} +"1000300": {} +"1000310": installDir: DldXy launch: - config: @@ -111,57 +110,53 @@ oslist: windows executable: Dld.exe type: default -'1000360': +"1000360": installDir: Hellish Quart launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Hellish Quart.exe type: default -'1000370': +"1000370": installDir: SurReal launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: surreal1.exe type: vr -'1000380': +"1000380": installDir: Rogue Reaper launch: - config: oslist: windows executable: RogueReaper.exe type: default -'1000410': +"1000410": installDir: WRATH launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Wrath (without SDL) - description_loc: - english: Wrath (without SDL) executable: wrath.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows description: Wrath (SDL version) - description_loc: - english: Wrath (SDL version) executable: wrath-sdl.exe type: option1 -'1000460': {} -'1000470': +"1000460": {} +"1000470": installDir: Drawngeon launch: - config: oslist: windows executable: Dungetron.exe type: none -'1000480': +"1000480": installDir: Battle Motion launch: - config: @@ -170,34 +165,34 @@ type: default - config: oslist: macos - executable: Battle Motion.app\\Contents\\MacOS\\Battle Motion + executable: "Battle Motion.app\\\\Contents\\\\MacOS\\\\Battle Motion" type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Battle Motion.x86_64 type: default -'1000540': +"1000540": installDir: Tactical Control launch: - config: oslist: windows executable: TacticalControl.exe type: none -'1000550': +"1000550": installDir: Love Hentai Endgame launch: - executable: LHeg.exe type: default -'1000600': +"1000600": installDir: The ScreaMaze launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TheScreaMaze.exe type: default -'1000640': +"1000640": installDir: Clam Man launch: - config: @@ -205,20 +200,20 @@ executable: Clam Man.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: LinuxGame.x86_64 type: default - config: oslist: macos - executable: Clam Man.app\\Contents\\MacOS\\Clam Man + executable: "Clam Man.app\\\\Contents\\\\MacOS\\\\Clam Man" type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: LinuxGame.x86 type: none -'1000650': +"1000650": installDir: Fist Of Heaven and Hell launch: - config: @@ -229,22 +224,22 @@ - config: oslist: macos description: Mac OS X - executable: Fist Of Heaven and Hell.app\\Contents\\MacOS\\Fist Of Heaven and Hell + executable: "Fist Of Heaven and Hell.app\\\\Contents\\\\MacOS\\\\Fist Of Heaven and Hell" type: default - config: oslist: linux description: Linux executable: Fist Of Heaven and Hell.x86_64 type: default -'1000700': +"1000700": installDir: Insomnis launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: UE4Insomnis.exe type: default -'1000750': +"1000750": installDir: Rotund Rebound launch: - config: @@ -253,25 +248,25 @@ type: default - config: oslist: macos - executable: Rotund Rebound.app\\Contents\\MacOS\\Rotund Rebound + executable: "Rotund Rebound.app\\\\Contents\\\\MacOS\\\\Rotund Rebound" type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Rotund Rebound.x86_64 type: default -'1000760': +"1000760": installDir: Foregone launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Foregone.exe type: default nameLocalized: schinese: 放弃 tchinese: 放棄 -'1000770': +"1000770": installDir: Urban Tale launch: - config: @@ -282,32 +277,32 @@ oslist: macos executable: UrbanTaleMac.app type: default -'1000790': +"1000790": installDir: Flex Apocalypse Racing launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Race228.exe type: default -'1000800': +"1000800": installDir: Beetle Elf launch: - config: oslist: windows executable: Client.exe type: default -'1000810': +"1000810": installDir: RogueCraft Squadron launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch RogueCraft Squadron executable: RogueCraftSquadron.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: RogueCraftSquadron.exe type: default @@ -317,27 +312,27 @@ executable: RogueCraftSquadron.app/Contents/MacOS/love type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: RogueCraftSquadron type: default -'1000830': +"1000830": installDir: Gachi Finder 3000 launch: - config: oslist: windows executable: Gachi Finder 3000.exe type: default -'1000860': +"1000860": installDir: Allspace launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Allspace.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Allspace.x86_64 type: default @@ -346,12 +341,12 @@ executable: Contents/MacOS/Allspace type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: Allspace.exe type: vr - config: - osarch: '64' + osarch: "64" oslist: linux executable: Allspace.x86_64 type: vr @@ -359,18 +354,18 @@ oslist: macos executable: Contents/MacOS/Allspace type: vr -'1000870': +"1000870": installDir: On Target VR Darts launch: - - arguments: '-vrmode oculus' + - arguments: "-vrmode oculus" config: oslist: windows executable: On Target VR Darts.exe type: vr -'1000880': +"1000880": installDir: REPTOMOM launch: - - arguments: '-windowed' + - arguments: "-windowed" config: oslist: windows executable: Reptomom.exe @@ -378,7 +373,7 @@ - description: devtest executable: Reptomom.exe type: option1 -'1000900': +"1000900": installDir: Zero spring episode 3 launch: - config: @@ -387,22 +382,22 @@ type: default - config: oslist: macos - executable: Game.app\\Contents\\MacOS\\zsep3mac + executable: "Game.app\\\\Contents\\\\MacOS\\\\zsep3mac" type: default - config: oslist: windows - ownsdlc: '354573' - description: Zero spring episode 1 director's cut - executable: zs1d\\ehonpen3.exe + ownsdlc: "354573" + description: "Zero spring episode 1 director's cut" + executable: "zs1d\\\\ehonpen3.exe" type: option1 -'1000980': +"1000980": installDir: KillTigerExe launch: - config: oslist: windows executable: KillTiger.exe type: default -'1000990': +"1000990": installDir: Gun Beat launch: - config: @@ -413,27 +408,27 @@ oslist: windows executable: Gun Beat.exe type: vr -'1001010': +"1001010": installDir: Sknow launch: - executable: Game.exe type: none -'1001040': +"1001040": installDir: Glorious Companions launch: - config: oslist: windows executable: Glorious Companions.exe type: none -'1001070': +"1001070": installDir: Koi launch: - config: oslist: windows executable: Koi.exe type: default -'1001120': {} -'1001140': +"1001120": {} +"1001140": installDir: Angry Birds VR Isle of Pigs launch: - config: @@ -441,7 +436,7 @@ description: Launch executable: angry-birds-vr-isle-of-pigs.exe type: vr -'1001170': +"1001170": installDir: Master Of Secrets - Dark Europe launch: - config: @@ -450,10 +445,10 @@ type: none - config: oslist: macos - executable: Master of Secrets Dark Europe.app\\Contents\\MacOS\\Master of Secrets Dark Europe + executable: "Master of Secrets Dark Europe.app\\\\Contents\\\\MacOS\\\\Master of Secrets Dark Europe" type: none -'1001180': {} -'1001200': +"1001180": {} +"1001200": installDir: RowRow launch: - config: @@ -464,21 +459,21 @@ oslist: macos executable: RowRow.app/Contents/MacOS/RowRow type: default -'1001220': +"1001220": installDir: BoneCraft launch: - config: oslist: windows executable: BoneCraft.exe type: default -'1001230': +"1001230": installDir: Partial Control launch: - config: oslist: windows executable: Partial Control.exe type: none -'1001240': +"1001240": installDir: VR Flight Simulator New York - Cessna launch: - config: @@ -486,22 +481,22 @@ description: You need to have a VR device. executable: VR_Cessna.exe type: vr -'1001340': {} -'1001380': +"1001340": {} +"1001380": installDir: SNAILS launch: - config: oslist: windows executable: SNAILS_V1_01.exe type: default -'1001390': +"1001390": installDir: VireFit launch: - config: oslist: windows executable: VireFit.exe type: vr -'1001430': +"1001430": installDir: Next Stop 3 launch: - config: @@ -512,14 +507,14 @@ oslist: macos executable: NextStop3.app/Contents/MacOS/NextStop3 type: none -'1001450': +"1001450": installDir: The Town launch: - config: oslist: windows executable: The Town.exe type: default -'1001490': +"1001490": installDir: Tower Behind the Moon launch: - config: @@ -534,7 +529,7 @@ oslist: linux executable: TowerBehindTheMoon type: none -'1001500': +"1001500": installDir: Chronicon Apocalyptica launch: - config: @@ -549,55 +544,55 @@ oslist: linux executable: ChroniconApocalyptica type: none -'1001520': {} -'1001530': {} -'1001550': +"1001520": {} +"1001530": {} +"1001550": installDir: In Orbit launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: InOrbit.exe type: vr -'1001570': +"1001570": installDir: GUIDE launch: - config: oslist: windows executable: GUIDE.exe type: default -'1001590': +"1001590": installDir: GrabLab launch: - config: oslist: windows executable: GrabLab.exe type: default -'1001600': +"1001600": installDir: Diggerman launch: - config: oslist: windows executable: Diggerman.exe type: default -'1001640': +"1001640": installDir: Where the Bees Make Honey launch: - executable: Where the Bees Make Honey.exe type: none -'1001660': +"1001660": installDir: The Demon Crystal launch: - executable: DC1_STEAM.exe type: none -'1001690': +"1001690": installDir: Mars Flight VR launch: - config: oslist: windows executable: Mars Flight VR.exe type: vr -'1001730': +"1001730": installDir: TwistingMower launch: - config: @@ -612,7 +607,7 @@ oslist: linux executable: game.exe type: none -'1001760': +"1001760": installDir: XTreme League launch: - config: @@ -623,8 +618,8 @@ oslist: macos executable: Xtreme League.app/Contents/MacOS/Xtreme League type: none -'1001770': {} -'1001800': +"1001770": {} +"1001800": installDir: KUNAI launch: - config: @@ -633,7 +628,7 @@ type: none nameLocalized: schinese: 酷派忍者 / KUNAI -'1001810': +"1001810": installDir: Virus Expansion launch: - config: @@ -642,18 +637,18 @@ type: default - config: oslist: macos - executable: Virus Expansion.app\\Contents\\MacOS\\Virus Expansion + executable: "Virus Expansion.app\\\\Contents\\\\MacOS\\\\Virus Expansion" type: default -'1001860': +"1001860": installDir: Casual Desktop Game launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Run Game executable: dnyCasualDeskGame.exe type: default -'1001870': +"1001870": installDir: RoboVirus launch: - config: @@ -661,26 +656,26 @@ executable: RoboVirus.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: robovirus.x64 type: default -'1001880': +"1001880": installDir: aMAZE Valentine launch: - config: oslist: windows executable: aMAZE Valentine.exe type: default -'1001910': +"1001910": installDir: Fused launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Fused.exe type: default -'1001960': +"1001960": installDir: Zibbs - Alien Survival launch: - config: @@ -688,7 +683,7 @@ description: Launch executable: AlienSurvival.exe type: none -'1001970': +"1001970": installDir: Rhythmy launch: - config: @@ -703,48 +698,48 @@ oslist: macos executable: Rhythmy.app type: default -'1001980': +"1001980": installDir: Archeo Shinar launch: - config: oslist: windows executable: Archeo Shinar.exe type: default -'1001990': +"1001990": installDir: WARED launch: - config: oslist: windows executable: WAReD.exe type: default -'1002': +"1002": installDir: Rag Doll Kung Fu launch: - executable: Rag_Doll_Kung_Fu_Steam.exe -'1002000': +"1002000": installDir: Spitlings launch: - config: oslist: windows executable: Spitlings.exe type: default -'1002010': {} -'1002020': +"1002010": {} +"1002020": installDir: INTERPOINT launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: INTERPOINT.exe type: default -'1002030': +"1002030": installDir: Hentai beautiful girls launch: - config: oslist: windows executable: Hentai beautiful girls.exe type: config -'1002040': +"1002040": installDir: Rebellion Again launch: - config: @@ -759,14 +754,14 @@ oslist: linux executable: ChiefForLinux.x86 type: default -'1002180': +"1002180": installDir: Aussie Battler Tanks launch: - config: oslist: windows executable: Aussie Battler Tanks.exe type: default -'1002200': +"1002200": installDir: Vasilis launch: - config: @@ -775,46 +770,46 @@ type: default - config: oslist: macos - executable: Vasilis.app\\Contents\\MacOS\\Vasilis + executable: "Vasilis.app\\\\Contents\\\\MacOS\\\\Vasilis" type: default -'1002210': +"1002210": installDir: Isolated Island launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: IsolatedIsland.exe type: default -'1002230': +"1002230": installDir: War of Three Kingdoms launch: - config: oslist: windows - executable: Bin\\game.bat + executable: "Bin\\\\game.bat" type: none workingdir: Bin -'1002270': +"1002270": installDir: PiiSim launch: - config: oslist: windows executable: piisim.exe type: default -'1002280': +"1002280": installDir: The Far Kingdoms Elements launch: - config: oslist: windows executable: The Far Kingdoms Elements.exe type: default -'1002290': +"1002290": installDir: 某1种青春 launch: - config: oslist: windows executable: TheBestStory.exe type: none -'1002300': +"1002300": installDir: Fear & Hunger launch: - config: @@ -825,81 +820,81 @@ oslist: macos executable: Game.app type: default -'1002310': +"1002310": installDir: The Childs Sight launch: - config: oslist: windows - executable: The Child's Sight.exe + executable: "The Child's Sight.exe" type: none -'1002360': +"1002360": installDir: bugdas launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: BUGDASU.exe type: default -'1002410': +"1002410": installDir: The Five Cores Remastered launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: T5CR.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: T5CR.sh type: default - config: oslist: macos - executable: T5CR.app\\Contents\\MacOS\\T5CR + executable: "T5CR.app\\\\Contents\\\\MacOS\\\\T5CR" type: default -'1002420': +"1002420": installDir: Agartha launch: - executable: agartha.exe type: none -'1002430': +"1002430": installDir: Victory Road launch: - config: oslist: windows executable: Victory Road.exe type: default -'1002440': +"1002440": installDir: Fantastic Creatures launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Fantastic Creatures.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Fantastic Creatures.x86_64 type: default - config: oslist: macos - executable: Fantastic Creatures.app\\Contents\\MacOS\\Fantastic Creatures + executable: "Fantastic Creatures.app\\\\Contents\\\\MacOS\\\\Fantastic Creatures" type: none -'1002450': {} -'1002490': +"1002450": {} +"1002490": installDir: Roulette Simulator 2 launch: - executable: RouletteSimulator2.exe type: default -'1002500': +"1002500": installDir: M.C.I. Escapes launch: - config: oslist: windows executable: M.C.I. Escapes.exe type: default -'1002510': +"1002510": installDir: The Spell launch: - config: @@ -914,30 +909,30 @@ oslist: macos executable: TheSpell.app type: none -'1002520': +"1002520": installDir: Eggys Games Flash Collection launch: - executable: Eggys Games.exe type: none -'1002540': +"1002540": installDir: HACK launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: HACK.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: HACK type: default - config: oslist: macos - executable: HACK.app\\Contents\\MacOS\\HACK + executable: "HACK.app\\\\Contents\\\\MacOS\\\\HACK" type: default -'1002550': {} -'1002560': +"1002550": {} +"1002560": installDir: Tiny Snow launch: - executable: TinySnow.exe @@ -945,12 +940,12 @@ nameLocalized: schinese: 茸雪 tchinese: 茸雪 -'1002580': +"1002580": installDir: Cell_Defender launch: - executable: Cell_Defender.exe type: default -'1002600': +"1002600": installDir: Temple of Pizza launch: - config: @@ -961,22 +956,22 @@ oslist: windows executable: Temple of Pizza.exe type: default -'1002610': +"1002610": installDir: Snowed IN launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: - osarch: '32' + osarch: "32" oslist: windows executable: nw.exe type: default - - arguments: ' --in-process-gpu' + - arguments: " --in-process-gpu" config: - osarch: '64' + osarch: "64" oslist: windows executable: nw.exe type: default -'1002630': +"1002630": installDir: AWAKE - Definitive Edition launch: - config: @@ -991,7 +986,7 @@ oslist: macos executable: AWAKE_Mac.app type: default -'1002650': +"1002650": installDir: Puttin Around launch: - config: @@ -1000,17 +995,17 @@ type: default - config: oslist: macos - executable: PuttinAround.app\\Contents\\MacOS\\PuttinAround + executable: "PuttinAround.app\\\\Contents\\\\MacOS\\\\PuttinAround" type: default -'1002660': {} -'1002670': +"1002660": {} +"1002670": installDir: SOFRAIDERS launch: - config: oslist: windows executable: SOFBA.exe type: default -'1002690': +"1002690": installDir: Hand of Horzasha launch: - config: @@ -1021,24 +1016,24 @@ oslist: macos executable: Hand of Horzasha.app type: none -'1002750': +"1002750": installDir: Ordo Et Chao launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Ordo Et Chao.exe type: default -'1002800': +"1002800": installDir: Tsumi launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Tsumi.exe type: none -'1002820': {} -'1002830': +"1002820": {} +"1002830": installDir: Latte Stand Tycoon launch: - config: @@ -1047,50 +1042,50 @@ type: none - config: oslist: macos - executable: latteStand.app\\Contents\\MacOS\\latteStand + executable: "latteStand.app\\\\Contents\\\\MacOS\\\\latteStand" type: none - config: oslist: linux executable: latteStand.x86 type: none -'1002850': +"1002850": installDir: AncientWarThreeKingdoms launch: - config: oslist: windows executable: sanguo.exe type: default -'1002860': +"1002860": installDir: Magus Over Fool launch: - config: oslist: windows executable: MagusOverFool.exe type: default -'1002890': +"1002890": installDir: Galaxity launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Galaxity.exe type: vr -'1002910': +"1002910": installDir: Twisty Puzzle Simulator launch: - executable: Twisty Puzzle Simulator.exe type: default - - arguments: '-startVRfast' + - arguments: "-startVRfast" executable: Twisty Puzzle Simulator.exe type: vr -'1002920': +"1002920": installDir: The Last Dinner launch: - config: oslist: windows executable: The Last Dinner.exe type: vr -'1002930': +"1002930": installDir: ProjTank launch: - config: @@ -1098,14 +1093,14 @@ executable: ProjSdtx.exe type: default nameLocalized: - english: 'War of Tanks: Blitzkrieg' + english: "War of Tanks: Blitzkrieg" schinese: 坦克大战:共和国之辉 tchinese: 坦克大戰 War of Tanks -'1002950': +"1002950": installDir: Gravity Panda launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: GravityPanda.exe type: default @@ -1113,7 +1108,7 @@ oslist: macos executable: GravityPanda.app/Contents/MacOS/GravityPanda type: default -'1002960': +"1002960": installDir: Hentai NetWalk launch: - config: @@ -1124,45 +1119,43 @@ oslist: windows executable: Hentai NetWalk.exe type: default -'1002970': +"1002970": installDir: Freefall 3050AD launch: - config: oslist: windows executable: PCFF.exe type: default -'1002980': +"1002980": installDir: SymplokeSteam3 launch: - config: oslist: windows executable: winsetup.exe type: none -'1003000': +"1003000": installDir: DragoonWorld Online launch: - - arguments: >- - C:\\Program Files (x86)\\Steam\\steamapps\\common\\Punishment Darkness Online\\Punishment Darkness Online - Client.exe + - arguments: "C:\\\\Program Files (x86)\\\\Steam\\\\steamapps\\\\common\\\\Punishment Darkness Online\\\\Punishment Darkness Online Client.exe" config: oslist: windows executable: Intersect Client.exe type: default -'1003010': +"1003010": installDir: Clicker Warriors launch: - config: oslist: windows executable: Clicker Warriors.exe type: default -'1003020': +"1003020": installDir: Alluna and Brie launch: - config: oslist: windows executable: AllunaAndBrie.exe type: none -'1003070': +"1003070": installDir: Groomer launch: - config: @@ -1177,7 +1170,7 @@ oslist: linux executable: Groomer.x86 type: none -'1003090': +"1003090": installDir: Through The Darkest of Times launch: - config: @@ -1186,78 +1179,78 @@ type: default - config: oslist: macos - executable: TTDOT.app\\Contents\\MacOS\\TTDOT + executable: "TTDOT.app\\\\Contents\\\\MacOS\\\\TTDOT" type: default -'1003120': +"1003120": installDir: Hitchhiker launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Hitchhiker - A Mystery Game.exe type: default -'1003150': +"1003150": installDir: TRANSIT launch: - config: oslist: windows executable: Apocars.exe type: default -'1003190': +"1003190": installDir: Alpacapaca Double Dash launch: - config: oslist: windows executable: Alpacapaca Double Dash.exe type: default -'1003230': +"1003230": installDir: AIRA VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: AIRA VR.exe type: vr -'1003260': +"1003260": installDir: Be A Lord launch: - config: oslist: windows executable: Be A Lord.exe type: othervr -'1003320': +"1003320": installDir: NNNG 2 launch: - executable: Nya Nya Nya Girls 2.exe type: none -'1003360': - installDir: It's Winter +"1003360": + installDir: "It's Winter" launch: - config: oslist: windows description: Launch - executable: It's Winter.exe + executable: "It's Winter.exe" type: default - config: oslist: macos description: Launch - executable: It's Winter.app + executable: "It's Winter.app" type: default - workingdir: It's Winter -'1003370': + workingdir: "It's Winter" +"1003370": installDir: Graywalkers Purgatory launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Graywalkers64.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Graywalkers.x86_64 type: default -'1003400': +"1003400": installDir: Journeys in Middle-earth launch: - config: @@ -1268,27 +1261,27 @@ oslist: macos executable: JiME.app type: default -'1003450': +"1003450": installDir: Terrorarium launch: - config: oslist: windows executable: Terrorarium.exe type: none -'1003460': {} -'1003480': +"1003460": {} +"1003480": installDir: Fireboy & Watergirl Elements launch: - - arguments: '--in-process-gpu --disable-direct-composition' + - arguments: "--in-process-gpu --disable-direct-composition" config: oslist: windows executable: Fbwg.exe type: default - config: oslist: macos - executable: Fbwg.app\\Contents\\MacOS\\Fbwg + executable: "Fbwg.app\\\\Contents\\\\MacOS\\\\Fbwg" type: default -'1003490': +"1003490": installDir: cat notebook launch: - config: @@ -1303,19 +1296,19 @@ oslist: linux executable: Game type: default -'1003520': +"1003520": installDir: Hentai Crush launch: - config: oslist: windows executable: Hentai Crush.exe type: default -'1003530': +"1003530": installDir: HeroDreamOfSchool launch: - - executable: HeroDreamOfSchool\\HeroDreamOfSchool.exe + - executable: "HeroDreamOfSchool\\\\HeroDreamOfSchool.exe" type: default -'1003560': +"1003560": installDir: CrumblingWorld launch: - config: @@ -1330,83 +1323,77 @@ oslist: linux executable: CrumblingWorld.x86_64 type: default -'1003590': +"1003590": installDir: Tetris Effect Connected launch: - arguments: 2D config: - osarch: '64' + osarch: "64" oslist: windows executable: TetrisEffect.exe type: default - - arguments: '-vr hmd=SteamVR' + - arguments: "-vr hmd=SteamVR" config: - osarch: '64' + osarch: "64" oslist: windows executable: TetrisEffect.exe type: vr - - arguments: '-vr hmd=OculusHMD' + - arguments: "-vr hmd=OculusHMD" config: - osarch: '64' + osarch: "64" oslist: windows executable: TetrisEffect.exe type: othervr - arguments: DBGACVRST config: - betakey: 'check_monstars,dev_monstars' - osarch: '64' + betakey: "check_monstars,dev_monstars" + osarch: "64" oslist: windows description: 実績リセット - description_loc: - english: 実績リセット executable: TetrisEffect.exe type: option1 - - arguments: '-vr hmd=SteamVR device=WindowsMR' + - arguments: "-vr hmd=SteamVR device=WindowsMR" config: - betakey: 'check_monstars,dev_monstars,pg_monstars,check_wmr' - osarch: '64' + betakey: "check_monstars,dev_monstars,pg_monstars,check_wmr" + osarch: "64" oslist: windows - description: 'Tetris® Effect Connected in Windows MR (Beta) ' - description_loc: - english: 'Tetris® Effect Connected in Windows MR (Beta) ' + description: "Tetris® Effect Connected in Windows MR (Beta) " executable: TetrisEffect.exe type: option1 - - arguments: '-dx12' + - arguments: "-dx12" config: - betakey: 'check_monstars,dev_monstars' - osarch: '64' + betakey: "check_monstars,dev_monstars" + osarch: "64" oslist: windows description: DX12 - description_loc: - english: DX12 executable: TetrisEffect.exe type: option1 -'1003600': +"1003600": installDir: NashBored launch: - executable: Game.exe type: none -'1003650': +"1003650": installDir: yiqi launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: 迷宫.exe type: default -'1003670': +"1003670": installDir: Vacation Adventures Park Ranger launch: - executable: parkRanger.exe type: none -'1003690': +"1003690": installDir: CrossTrix launch: - config: oslist: windows executable: CrossTrix.exe type: default -'1003700': +"1003700": installDir: Sky Labyrinth launch: - config: @@ -1415,9 +1402,9 @@ type: none - config: oslist: macos - executable: SkyLabyrinth.app\\Contents\\MacOS\\SkyLabyrinth + executable: "SkyLabyrinth.app\\\\Contents\\\\MacOS\\\\SkyLabyrinth" type: none -'1003730': +"1003730": installDir: soko loco deluxe launch: - config: @@ -1428,49 +1415,49 @@ oslist: macos executable: sokoloco.app type: none -'1003750': +"1003750": installDir: 她2 我还想再见到你 Her2 I Want To See You Again launch: - config: oslist: windows executable: I Want To See You Again.exe type: default -'1003760': +"1003760": installDir: Aether Way launch: - config: oslist: windows executable: AetherWay.exe type: none -'1003830': +"1003830": installDir: Cold Silence launch: - config: oslist: windows executable: cold_silence_upd_2.exe type: default -'1003850': +"1003850": installDir: DarkSunSpaceShooter launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: nw.exe type: default -'1003860': +"1003860": installDir: Gravity Ace launch: - config: - osarch: '64' + osarch: "64" oslist: linux executable: gravity.x86_64 type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: gravity-win64.exe type: default -'1003880': +"1003880": installDir: Sky Of Destruction launch: - config: @@ -1478,7 +1465,7 @@ description: Launch executable: Sky of Destruction.exe type: none -'1003890': +"1003890": installDir: Blacksad - Under the skin launch: - config: @@ -1487,27 +1474,27 @@ type: none - config: oslist: macos - executable: Blacksad.app\\Contents\\MacOS\\Blacksad + executable: "Blacksad.app\\\\Contents\\\\MacOS\\\\Blacksad" type: default -'1003900': {} -'1003940': +"1003900": {} +"1003940": installDir: Invasion Zero launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Invasion Zero.exe type: default - config: oslist: macos - executable: MacOS.app\\Contents\\MacOS\\Invasion Zero + executable: "MacOS.app\\\\Contents\\\\MacOS\\\\Invasion Zero" type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Invasion Zero.x86_64 type: default -'1003960': +"1003960": installDir: De Profundis launch: - config: @@ -1522,36 +1509,36 @@ oslist: macos executable: De Profundis.app type: default -'10040': +"10040": installDir: History Channel Battle for the Pacific launch: - executable: bftp.exe -'1004000': +"1004000": installDir: Card Brawl launch: - config: oslist: windows executable: Card Brawl.exe type: none -'1004030': +"1004030": installDir: Rhythm Overdrive launch: - config: oslist: windows executable: Rhythm Overdrive.exe type: default -'1004050': +"1004050": installDir: time of the zombies launch: - executable: time_of_the_zombies.exe type: none -'1004090': {} -'1004100': +"1004090": {} +"1004100": installDir: ChaosCaves launch: - executable: ChaosCaves.exe type: default -'1004150': +"1004150": installDir: Madorica Real Estate launch: - config: @@ -1562,43 +1549,43 @@ oslist: macos executable: madoricapc_mac.app type: none -'1004160': {} -'1004170': +"1004160": {} +"1004170": installDir: The Truck Game launch: - config: oslist: windows executable: TheTruckGame.exe type: none -'1004180': +"1004180": installDir: Boundary launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Boundary.exe type: vr -'1004190': +"1004190": installDir: Flowers in Dark launch: - executable: flower.exe type: default -'1004200': +"1004200": installDir: Biathlon Battle VR launch: - config: oslist: windows executable: Biathlete VR.exe type: vr -'1004210': +"1004210": installDir: PandamoniaClan launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: PC.exe type: default -'1004230': +"1004230": installDir: Johnny Bonasera 3 launch: - config: @@ -1610,30 +1597,30 @@ executable: Johnny Bonasera3.app/Contents/MacOS/bonasera3 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: bonasera3 type: default - - arguments: '-w' + - arguments: "-w" config: oslist: windows description: Windowed executable: bonasera3.exe type: option1 - - arguments: '-w' + - arguments: "-w" config: oslist: macos description: Windowed executable: Johnny Bonasera3.app/Contents/MacOS/bonasera3 type: option1 - - arguments: '-w' + - arguments: "-w" config: - osarch: '64' + osarch: "64" oslist: linux description: Windowed executable: bonasera3 type: option1 -'1004240': +"1004240": installDir: HentaiGirlKaren launch: - config: @@ -1644,7 +1631,7 @@ oslist: macos executable: HentaiGirlKaren.app type: default -'1004270': +"1004270": installDir: My Island launch: - config: @@ -1654,72 +1641,72 @@ nameLocalized: schinese: 我的海岛 tchinese: 我的海島 -'1004310': +"1004310": installDir: Maze 3D launch: - config: oslist: windows executable: Maze3D.exe type: default -'1004320': +"1004320": installDir: Sick Love launch: - config: oslist: windows executable: Game.exe type: default -'1004350': +"1004350": installDir: Area Cooperation Economic Simulation North Korea launch: - config: oslist: windows executable: ACES1.exe type: default -'1004370': +"1004370": installDir: PaperCutMansion launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Play Paper Cut Mansion executable: PaperCutMansion.exe type: none -'1004470': {} -'1004490': +"1004470": {} +"1004490": installDir: Tools Up! launch: - config: oslist: windows executable: Tools Up.exe type: none -'1004500': +"1004500": installDir: The Chronicles of Jonah and the Whale launch: - config: oslist: windows executable: JonahAndTheWhale.exe type: default -'1004510': +"1004510": installDir: DownStream launch: - config: oslist: windows executable: DownStream.exe type: vr -'1004520': {} -'1004550': +"1004520": {} +"1004550": installDir: Stickman Racer Road Draw 2 Heroes launch: - executable: StickRoadDraw.exe type: default -'1004560': +"1004560": installDir: Everpath A pixel art roguelite launch: - config: oslist: windows executable: Everpath.exe type: default -'1004570': +"1004570": installDir: blocks launch: - config: @@ -1732,9 +1719,9 @@ type: none - config: oslist: macos - executable: osx64\\blocks.app\\Contents\\MacOS\\nwjs + executable: "osx64\\\\blocks.app\\\\Contents\\\\MacOS\\\\nwjs" type: none -'1004600': +"1004600": installDir: Find-Life EP1 launch: - config: @@ -1742,11 +1729,11 @@ description: Launch executable: Find-Life Ep.1.exe type: default -'1004610': +"1004610": installDir: Roombo First Blood launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Roombo.exe type: default @@ -1754,7 +1741,7 @@ oslist: macos executable: Roombo.app type: none -'1004620': +"1004620": installDir: KungFu Kickball launch: - config: @@ -1769,32 +1756,32 @@ japanese: カンフーキックボール schinese: 乌龙功夫球 tchinese: 烏龍功夫球 -'1004650': +"1004650": installDir: Unlock Me launch: - config: oslist: windows executable: Unlock Me.exe type: default -'1004660': {} -'1004710': +"1004660": {} +"1004710": installDir: POCKET CAR VR GROUND launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: PocketCar.exe type: vr -'1004750': +"1004750": installDir: WRC 8 FIA World Rally Championship launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch game executable: WRC8.exe type: default -'1004770': +"1004770": installDir: Maiden & Spell launch: - config: @@ -1804,22 +1791,22 @@ type: default nameLocalized: schinese: 少女与魔法 -'1004780': +"1004780": installDir: Noels_Hope launch: - config: oslist: windows - executable: Noels_Hope\\Noels_Hope.exe + executable: "Noels_Hope\\\\Noels_Hope.exe" type: default -'1004790': +"1004790": installDir: PsyOps Solutions launch: - config: oslist: windows executable: Game.exe type: none -'1004800': {} -'1004860': +"1004800": {} +"1004860": installDir: The Secret Order 7 launch: - config: @@ -1828,13 +1815,13 @@ executable: SecretOrder7.exe type: none - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: SecretOrder7_i386 type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: SecretOrder7_amd64 @@ -1844,7 +1831,7 @@ description: Launch executable: mac_steam.app/Contents/MacOS/mac_steam type: none -'1005000': +"1005000": installDir: ArgonautsGoldenFleece_Steam launch: - config: @@ -1855,7 +1842,7 @@ oslist: macos executable: ArgonautsGoldenFleece.app/Contents/MacOS/ArgonautsGoldenFleece type: default -'1005050': +"1005050": installDir: Fabulous 5 launch: - config: @@ -1864,9 +1851,9 @@ type: default - config: oslist: macos - executable: Fabulous5 OSX Steam.app\\Contents\\MacOS\\Fabulous5 OSX Steam + executable: "Fabulous5 OSX Steam.app\\\\Contents\\\\MacOS\\\\Fabulous5 OSX Steam" type: default -'1005060': +"1005060": installDir: Fabulous 6 launch: - config: @@ -1875,18 +1862,18 @@ type: default - config: oslist: macos - executable: Fabulous6 OSX Steam.app\\Contents\\MacOS\\Fabulous6 OSX Steam + executable: "Fabulous6 OSX Steam.app\\\\Contents\\\\MacOS\\\\Fabulous6 OSX Steam" type: default -'1005080': +"1005080": installDir: Yukinas Diary launch: - config: oslist: windows executable: Game.exe type: default -'1005100': {} -'1005130': - installDir: Delicious - Emily's Road Trip +"1005100": {} +"1005130": + installDir: "Delicious - Emily's Road Trip" launch: - config: oslist: windows @@ -1896,22 +1883,22 @@ oslist: macos executable: Delicious17.app/Contents/MacOS/Delicious17 type: none -'1005180': {} -'1005240': +"1005180": {} +"1005240": installDir: Pixel Puzzles Illustrations Anime launch: - config: oslist: windows executable: Pixel Puzzles Illustrations And Anime.exe type: none -'1005250': +"1005250": installDir: Arkane Rush Multiverse Mayhem launch: - config: oslist: windows executable: ArkaneRushMultiverseMayhem.exe type: none -'1005300': +"1005300": installDir: The Jackbox Party Pack 6 launch: - config: @@ -1919,7 +1906,7 @@ executable: The Jackbox Party Pack 6.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Launcher.sh type: default @@ -1927,7 +1914,7 @@ oslist: macos executable: The Jackbox Party Pack 6.app type: default -'1005310': +"1005310": installDir: Snake vs Snake launch: - config: @@ -1936,21 +1923,21 @@ type: default - config: oslist: macos - executable: Contents\\MacOS\\SnakeVsSnake_Mac + executable: "Contents\\\\MacOS\\\\SnakeVsSnake_Mac" type: default - config: oslist: linux executable: SnakevsSnake.x86_64 type: default -'1005320': {} -'1005330': +"1005320": {} +"1005330": installDir: PCCVR launch: - config: oslist: windows executable: PCCVR.exe type: vr -'1005340': +"1005340": installDir: Myths and Legends Online launch: - config: @@ -1959,20 +1946,20 @@ type: none - config: oslist: macos - executable: MythsAndLegends.app\\Contents\\MacOS\\Myths and Legends Online + executable: "MythsAndLegends.app\\\\Contents\\\\MacOS\\\\Myths and Legends Online" type: default nameLocalized: latam: Mitos y Leyendas spanish: Mitos y Leyendas -'1005390': +"1005390": installDir: Anti-Grav launch: - - arguments: '-windowed' + - arguments: "-windowed" config: oslist: windows - executable: \\Anti-Grav\\Anti-Grav.exe + executable: "\\\\Anti-Grav\\\\Anti-Grav.exe" type: default -'1005400': +"1005400": installDir: Star Drift Evolution launch: - config: @@ -1981,9 +1968,9 @@ type: default - config: oslist: macos - executable: StarDriftEvolution.app\\Contents\\MacOS\\StarDriftEvolution + executable: "StarDriftEvolution.app\\\\Contents\\\\MacOS\\\\StarDriftEvolution" type: default -'1005410': +"1005410": installDir: Freedom Finger launch: - config: @@ -1994,7 +1981,7 @@ oslist: macos executable: FreedomFinger.app type: default -'1005420': +"1005420": installDir: Mental House launch: - config: @@ -2003,23 +1990,23 @@ type: default - config: oslist: macos - executable: MentalHouse.app\\Contents\\MacOS\\Mental House + executable: "MentalHouse.app\\\\Contents\\\\MacOS\\\\Mental House" type: default -'1005450': +"1005450": installDir: Vision Soft Reset launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Vision Soft Reset.exe -'1005470': +"1005470": installDir: Cubians Combine launch: - config: oslist: windows executable: CubiansCombine.exe type: vr -'1005520': +"1005520": installDir: Harem Girl Alicia launch: - config: @@ -2027,62 +2014,62 @@ description: Launch executable: PuzzleGirlsAlicia.exe type: none -'1005530': +"1005530": installDir: Club Soccer Director PRO 2020 launch: - config: oslist: windows executable: CSD20.exe type: default -'1005560': {} -'1005580': +"1005560": {} +"1005580": installDir: Agricola launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Agricola.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: Agricola.exe type: default - config: oslist: macos - executable: Agricola.app\\Contents\\MacOS\\Agricola + executable: "Agricola.app\\\\Contents\\\\MacOS\\\\Agricola" type: default -'1005630': +"1005630": installDir: Hope For Village launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows description: Launch executable: Hope for Village.exe type: default -'1005730': +"1005730": installDir: The First Track launch: - config: oslist: windows executable: The First Track.exe type: default -'1005780': +"1005780": installDir: Card Adventures launch: - config: oslist: windows executable: Card Game.exe type: default -'1005820': +"1005820": installDir: Chishiki Runner launch: - config: oslist: windows executable: game.exe type: default -'1005870': +"1005870": installDir: HYPERFIGHT launch: - config: @@ -2091,14 +2078,14 @@ type: default - config: oslist: macos - executable: HYPERFIGHT.app\\Contents\\MacOS\\HYPERFIGHT + executable: "HYPERFIGHT.app\\\\Contents\\\\MacOS\\\\HYPERFIGHT" type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: HYPERFIGHT.x86_64 type: default -'1005890': +"1005890": installDir: KALEIDO STELLA launch: - config: @@ -2111,34 +2098,34 @@ description: Japanese executable: japanese/KaleidoStella.exe type: default -'1005900': +"1005900": installDir: Christmas Time 2019 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ChristmasTime2019.exe type: default -'1005910': +"1005910": installDir: TAKANARIA launch: - config: oslist: windows executable: Game.exe type: none -'1005920': +"1005920": installDir: Muscles And Bullets launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: MusclesAndBullets.exe type: default -'1005930': +"1005930": installDir: Timeflow launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: Timeflow.exe type: default @@ -2147,63 +2134,63 @@ executable: Timeflow.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Timeflow.x86_64 type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: Timeflow.exe type: default -'1005940': +"1005940": installDir: Thalu Dreamtime is Now launch: - config: oslist: windows executable: Thalu.exe type: vr -'1005950': +"1005950": installDir: GrandLordAuto launch: - config: oslist: windows executable: GrandLordAuto.exe type: default -'1005990': +"1005990": installDir: Swordbreaker Back to The Castle launch: - config: oslist: windows executable: Swordbreaker Back to The Castle.exe type: none -'1006120': +"1006120": installDir: Tetsumo launch: - config: oslist: windows executable: TetsumoParty.exe type: none -'1006140': +"1006140": installDir: Heroes of a Broken Land 2 launch: - config: oslist: windows executable: hobl2.exe type: default -'1006150': +"1006150": installDir: Urban Justice launch: - executable: UJ.exe type: default -'1006160': +"1006160": installDir: Dungeons of Legend Cast Within launch: - config: oslist: windows executable: Dungeons of Legend - Cast Within.exe type: default -'1006170': +"1006170": installDir: xmmwj launch: - config: @@ -2211,14 +2198,14 @@ oslist: windows executable: xmmwj.exe type: default -'1006190': +"1006190": installDir: Colorvore launch: - config: oslist: windows executable: Colorvore.exe type: none -'1006220': +"1006220": installDir: Type Knight launch: - config: @@ -2229,7 +2216,7 @@ oslist: linux executable: typeknight type: default -'1006250': +"1006250": installDir: Love in the Limelight launch: - config: @@ -2247,26 +2234,26 @@ description: Launch executable: loveinthelimelight.sh type: none -'1006270': - installDir: '2048' +"1006270": + installDir: "2048" launch: - config: oslist: windows executable: ded.exe type: default -'1006390': +"1006390": installDir: PlanZ launch: - config: oslist: windows executable: PlanZ.exe type: none -'1006400': +"1006400": installDir: Fantasia of the Wind 2 launch: - - arguments: ' --in-process-gpu' + - arguments: " --in-process-gpu" config: - osarch: '64' + osarch: "64" oslist: windows executable: FantasiaOfWind2.exe type: default @@ -2274,68 +2261,68 @@ oslist: macos executable: FantasiaOfWind2.app type: default -'1006410': +"1006410": installDir: Tanks Endeavor launch: - config: oslist: windows executable: Tanks Endeavor.exe type: default -'1006430': +"1006430": installDir: Hectic Highways launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: HecticHighways\\HecticHighways.exe + executable: "HecticHighways\\\\HecticHighways.exe" type: default -'1006440': +"1006440": installDir: The Dame Was Loaded launch: - config: oslist: windows executable: start.bat type: default -'1006450': +"1006450": installDir: Eric The Unready launch: - config: oslist: windows executable: start.bat type: default -'1006460': +"1006460": installDir: Mission Critical launch: - config: oslist: windows executable: start.bat type: default -'1006470': +"1006470": installDir: The Legacy of Music launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: VOT.exe type: default -'1006510': +"1006510": installDir: Devotion launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Devotion.exe type: default -'1006590': {} -'1006600': +"1006590": {} +"1006600": installDir: Hentai Octoq Puzzle launch: - config: oslist: windows executable: hentaiOctoqPuzzle.exe type: default -'1006620': {} -'1006700': +"1006620": {} +"1006700": installDir: 3Gun Nation VR launch: - config: @@ -2343,14 +2330,14 @@ description: 3Gun Nation VR executable: 3GN VR.exe type: vr -'1006720': +"1006720": installDir: PUZZLE BIRDS launch: - config: oslist: windows executable: PUZZLE - BIRDS.exe type: default -'1006730': +"1006730": installDir: Cantrip Cafe launch: - config: @@ -2361,21 +2348,21 @@ oslist: macos executable: MacBuild.app type: none -'1006760': +"1006760": installDir: Cyborg Ninja vs The Third Reich launch: - config: oslist: windows executable: CyborgNinja.exe type: default -'1006770': +"1006770": installDir: TheLastLetter launch: - config: oslist: windows executable: TheLastLetter.exe type: vr -'1006800': +"1006800": installDir: hmqs launch: - config: @@ -2386,31 +2373,31 @@ oslist: macos executable: hmqs.app type: none -'1006810': {} -'1006830': +"1006810": {} +"1006830": installDir: Moonlight thief launch: - config: oslist: windows executable: Moonlight thief.exe type: default -'1006880': - installDir: Chocolate makes you happy Valentine's Day +"1006880": + installDir: "Chocolate makes you happy Valentine's Day" launch: - config: oslist: windows - executable: Chocolate makes you happy Valentine's Day.exe + executable: "Chocolate makes you happy Valentine's Day.exe" type: default -'1006900': +"1006900": installDir: LastLineVR launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: LL|VR executable: LastLineVR.exe type: default -'1006920': +"1006920": installDir: Pull Ball launch: - config: @@ -2421,7 +2408,7 @@ oslist: macos executable: Pull Ball.app type: default -'1006930': +"1006930": installDir: Hentai Jigsaw Puzzle launch: - config: @@ -2436,23 +2423,23 @@ oslist: linux executable: Hentai Jigsaw Puzzle.x86 type: default -'1006940': {} -'1006950': +"1006940": {} +"1006950": installDir: windows_content launch: - config: oslist: windows executable: content.exe type: default -'1007040': +"1007040": installDir: EARTH DEFENSE FORCE 5 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: EDF5.exe type: none -'1007050': +"1007050": installDir: Dark Hill Museum of Death launch: - config: @@ -2461,39 +2448,39 @@ executable: DarkHill.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: Linux build executable: DarkHill.x86_64 type: default -'1007070': +"1007070": installDir: BorderStrain launch: - config: oslist: windows executable: borderstrain.exe type: default -'1007080': +"1007080": installDir: Death Rpg launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: DeathRpg.exe type: default -'1007140': +"1007140": installDir: Future Aero Racing S Ultra Steam launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: FARSULTRA.exe type: default -'1007180': +"1007180": installDir: Retromancer launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Retromancer.exe type: default @@ -2501,22 +2488,22 @@ oslist: macos executable: Retromancer.app type: default -'1007200': +"1007200": installDir: MutagenExtinction launch: - config: oslist: windows executable: Mutagen.exe type: none -'1007210': +"1007210": installDir: Trouble Travel TT launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TroubleTravel.exe type: none -'1007230': +"1007230": installDir: VRLab Academy Anatomy VR launch: - config: @@ -2525,60 +2512,60 @@ type: vr - executable: VRLab Academy Anatomy VR.exe type: othervr -'1007240': +"1007240": installDir: Stage of Light launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: StageOfLight.exe type: default -'1007260': +"1007260": installDir: BubbleGum-Push launch: - config: - osarch: '64' + osarch: "64" executable: BubbleGumPush.exe type: default -'1007280': +"1007280": installDir: The Den of Chaos ~Order of Ahiahan the 19th~ launch: - config: oslist: windows executable: The Den of Chaos.exe type: default -'1007350': +"1007350": installDir: Mirror Maker launch: - config: oslist: windows executable: Mirror Maker.exe type: default -'1007360': +"1007360": installDir: SZEN launch: - config: oslist: windows executable: szen.exe type: vr -'1007380': {} -'1007390': +"1007380": {} +"1007390": installDir: Ling_A_Road_Alone launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: WindowsNoEditor\\Ling.exe + executable: "WindowsNoEditor\\\\Ling.exe" type: default nameLocalized: - english: 'Ling: A Road Alone' - french: 'Ling : Un Voyage en Solitaire' - german: 'Ling: Ein Einsamer Weg' + english: "Ling: A Road Alone" + french: "Ling : Un Voyage en Solitaire" + german: "Ling: Ein Einsamer Weg" japanese: 泠:落陽孤行 - koreana: '링: 황혼의 무사' + koreana: "링: 황혼의 무사" schinese: 泠:落日孤行 tchinese: 泠:落日孤行 -'1007400': +"1007400": installDir: Alien Shooter 2 - The Legend launch: - config: @@ -2588,28 +2575,28 @@ nameLocalized: russian: Alien Shooter 2 - Легенда schinese: Alien Shooter 2- 传奇 -'1007430': +"1007430": installDir: SixCubes launch: - - arguments: '@f+ @INFOOFF' + - arguments: "@f+ @INFOOFF" config: oslist: windows description: Fullscreen executable: SixCubes.win32_steam.exe type: option1 - - arguments: '@f1920x1080 @z0.9 @INFOOFF' + - arguments: "@f1920x1080 @z0.9 @INFOOFF" config: oslist: windows description: Windowed executable: SixCubes.win32_steam.exe type: option2 -'1007440': +"1007440": installDir: Solitaire Learn Chemistry! launch: - executable: Solitaire Learn Chemistry.exe type: default -'1007450': {} -'1007470': +"1007450": {} +"1007470": installDir: Raven The Last Neko Slayer launch: - config: @@ -2617,16 +2604,16 @@ description: Launch executable: Launch Raven.exe type: default -'1007480': {} -'1007490': +"1007480": {} +"1007490": installDir: Windows_Content launch: - config: oslist: windows executable: Blades of Fury.exe type: default -'1007520': - installDir: Willy Jetman Astromonkey's Revenge +"1007520": + installDir: "Willy Jetman Astromonkey's Revenge" launch: - config: oslist: windows @@ -2638,25 +2625,25 @@ type: none - config: oslist: macos - executable: WillyJetman.app\\Contents\\MacOS\\WillyJetman + executable: "WillyJetman.app\\\\Contents\\\\MacOS\\\\WillyJetman" type: none -'1007540': +"1007540": installDir: TankDestruction launch: - - arguments: '-steam' + - arguments: "-steam" config: - osarch: '64' + osarch: "64" oslist: windows executable: TankDestruction.exe type: default -'1007560': +"1007560": installDir: Fun VR Farm launch: - config: oslist: windows executable: VRfarm.exe type: vr -'1007630': +"1007630": installDir: Wraithslayer launch: - config: @@ -2670,29 +2657,29 @@ type: none - config: oslist: macos - executable: Wraithslayer.app\\Contents\\MacOS\\Wraithslayer + executable: "Wraithslayer.app\\\\Contents\\\\MacOS\\\\Wraithslayer" type: none -'1007730': +"1007730": installDir: Greed 2 Forbidden Experiments launch: - config: oslist: windows executable: GreedFE.exe type: default -'1007760': {} -'1007780': {} -'1007800': +"1007760": {} +"1007780": {} +"1007800": installDir: SingleDiary_FreshGraduate launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SingleDiary_FreshGraduate.exe type: none nameLocalized: schinese: 单身日记:新鲜人篇 tchinese: 單身日記:新鮮人篇 -'1007810': +"1007810": installDir: Bright Bird launch: - config: @@ -2700,11 +2687,10 @@ executable: game.exe - config: oslist: windows - realm: steamchina executable: game.exe nameLocalized: sc_schinese: 重明鸟 -'1007820': +"1007820": installDir: Brawl launch: - config: @@ -2719,7 +2705,7 @@ oslist: windows executable: brawl.exe type: default -'1007830': +"1007830": installDir: Edgar - Bokbok in Boulzac launch: - config: @@ -2734,45 +2720,45 @@ oslist: macos executable: Edgar.app/Contents/MacOS/Edgar type: none -'1007840': +"1007840": installDir: Wanking Simulator launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Wanking Simulator.exe type: default -'1007870': +"1007870": installDir: STB launch: - config: oslist: windows executable: stb.exe type: none -'1007880': +"1007880": installDir: BALL launch: - config: oslist: windows executable: ball.exe type: default -'1007890': +"1007890": installDir: VRPaperStar launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: VRPaperStar.exe type: vr -'1007900': {} -'1007930': +"1007900": {} +"1007930": installDir: Space Digger launch: - config: oslist: windows executable: SpaceDigger.exe type: default -'1007940': +"1007940": installDir: Road Trip USA - Jigsaw Puzzles launch: - config: @@ -2824,15 +2810,13 @@ description: Gardens Jigsaw Puzzles executable: Gardens Jigsaw Puzzles.exe type: option1 -'1007950': +"1007950": installDir: Birchian Flight Simulator launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Birchian Flight Simulator - description_loc: - english: Birchian Flight Simulator executable: BFS.exe type: default - config: @@ -2841,58 +2825,58 @@ executable: BFS.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: Birchian Flight Simulator executable: BFSLINUX/BFSLINUX.x86_64 type: default -'1007970': +"1007970": installDir: This Side launch: - config: oslist: windows executable: ThisSide.exe type: default -'1007980': +"1007980": installDir: Santa in search of toys launch: - config: oslist: windows executable: Santa in search of toys.exe type: default -'1007990': +"1007990": installDir: Dodge Dummy launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: starterFile.exe type: default -'10080': +"10080": installDir: Quantum of Solace launch: - executable: testapp.exe -'1008000': +"1008000": installDir: Aetheria Online launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: aetheriax64\\AetheriaOnline.exe + executable: "aetheriax64\\\\AetheriaOnline.exe" type: default - config: - osarch: '32' + osarch: "32" oslist: windows - executable: aetheriax86\\AetheriaOnline.exe + executable: "aetheriax86\\\\AetheriaOnline.exe" type: default -'1008010': +"1008010": installDir: Spykebots launch: - config: oslist: windows executable: Spykebots.exe type: none -'1008020': +"1008020": installDir: Lust Epidemic launch: - config: @@ -2903,14 +2887,14 @@ oslist: macos executable: Game.app type: default -'1008060': +"1008060": installDir: The HARDEST BrickBreaker launch: - config: oslist: windows executable: BrickBreaker.exe type: default -'1008070': +"1008070": installDir: I_see_you launch: - config: @@ -2922,20 +2906,18 @@ description: Launch in Desktop (Non-VR) mode executable: I_see_you.exe type: default -'1008080': +"1008080": installDir: SYNCED launch: - - arguments: '-LoginPlatform=2 -culture=en -language=en -locale=en' + - arguments: "-LoginPlatform=2 -culture=en -language=en -locale=en" description: SYNCED - description_loc: - english: SYNCED - executable: Launcher\\sop_launcher.exe + executable: "Launcher\\\\sop_launcher.exe" nameLocalized: english: SYNCED japanese: SYNCED(シンクド) sc_schinese: 重生边缘 schinese: 重生边缘 外服 -'1008140': +"1008140": installDir: The Chills launch: - config: @@ -2946,7 +2928,7 @@ oslist: linux executable: TheChills type: default -'1008210': +"1008210": installDir: Harem Girl Nikki launch: - config: @@ -2954,71 +2936,65 @@ description: Launch executable: HaremGirlNikki.exe type: none -'1008230': +"1008230": installDir: Witches Brew launch: - config: oslist: windows description: Launch - description_loc: - english: Launch executable: WitchesBrew.exe - config: oslist: macos description: Launch - description_loc: - english: Launch executable: WitchesBrew.app - config: oslist: linux description: Launch - description_loc: - english: Launch executable: WitchesBrew.sh -'1008260': +"1008260": installDir: Where is The Beach launch: - config: oslist: windows executable: Where is The Beach.exe type: none -'1008280': - installDir: '勇者と魔法使いとおとぎの絵本 A Picturebook of Hero, Sorceress and Fairy Tale' +"1008280": + installDir: "勇者と魔法使いとおとぎの絵本 A Picturebook of Hero, Sorceress and Fairy Tale" launch: - config: oslist: windows executable: Picturebook of Hero.exe type: default -'1008290': +"1008290": installDir: Lucky Of Love launch: - config: oslist: windows executable: Lucky of Love.exe type: none -'1008320': +"1008320": installDir: Epic Adventures La Jangada launch: - config: oslist: windows executable: Jangada.exe type: default -'1008370': +"1008370": installDir: Achievement Collector Dog launch: - config: oslist: windows executable: nw.exe type: default -'1008390': +"1008390": installDir: Crazy Mosquito launch: - config: oslist: windows executable: CrazyMosquito.exe type: none -'1008410': {} -'1008450': +"1008410": {} +"1008450": installDir: Maze Quest 2 The Desert launch: - config: @@ -3029,73 +3005,73 @@ oslist: linux executable: Game type: none -'1008460': {} -'1008510': +"1008460": {} +"1008510": installDir: Who Is This Man launch: - - executable: \\windows_content\\Who Is This Man.exe + - executable: "\\\\windows_content\\\\Who Is This Man.exe" type: none -'1008520': +"1008520": installDir: Mahjong Strip Solitaire Harem Guild launch: - config: oslist: windows executable: Mahjong Strip Solitaire Harem Guild.exe type: default -'1008530': {} -'1008580': +"1008530": {} +"1008580": installDir: Overstep launch: - config: oslist: windows executable: Overstep.exe type: default -'1008590': {} -'1008600': +"1008590": {} +"1008600": installDir: Shadowy Contracts launch: - config: oslist: windows executable: Shadowy Contracts.exe type: default -'1008650': +"1008650": installDir: Elf Epizode One launch: - executable: ElfEpizodeOne.exe type: default -'1008680': +"1008680": installDir: Crazy Archery launch: - executable: Crazy Archery.exe type: none -'1008690': +"1008690": installDir: Lost Daughter launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Lost Daughter.exe type: default -'1008700': +"1008700": installDir: Golf Pool VR launch: - - arguments: '-fullscreen off' + - arguments: "-fullscreen off" config: - osarch: '64' + osarch: "64" oslist: windows executable: golfpoolvr.exe type: vr - config: - osarch: '64' + osarch: "64" oslist: windows executable: golfpoolvr.exe type: othervr -'1008710': +"1008710": installDir: Wet Girl launch: - executable: WetGirl.exe type: none -'1008740': +"1008740": installDir: Cube Mission launch: - config: @@ -3106,20 +3082,20 @@ oslist: linux executable: Cube Mission.x86_64 type: none -'1008790': {} -'1008800': +"1008790": {} +"1008800": installDir: Shards of Infinity launch: - config: oslist: windows executable: Shards.exe type: default -'1008820': +"1008820": installDir: United Nations launch: - executable: UnitedNations.exe type: default -'1008830': +"1008830": installDir: Sun Wukong VS Robot launch: - config: @@ -3130,108 +3106,108 @@ oslist: macos executable: Sun Wukong VS Robot.app type: default -'1008850': +"1008850": installDir: Bounty Hunter launch: - executable: BountyHunter.exe type: none -'1008870': +"1008870": installDir: Excive A-1000 launch: - config: oslist: windows executable: Excive A-1000.exe type: none -'1008890': +"1008890": installDir: JetBall Arena launch: - config: oslist: windows executable: jetBallArena.exe type: default -'1008900': {} -'1008910': +"1008900": {} +"1008910": installDir: Sadboy launch: - config: oslist: windows - executable: 心塞男孩\\心塞男孩.exe + executable: "心塞男孩\\\\心塞男孩.exe" type: default -'1008920': +"1008920": installDir: Photographs launch: - executable: Photographs.game.exe type: none -'1008950': +"1008950": installDir: Armored Front Tiger Command launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: AFTC.exe type: vr -'1008970': +"1008970": installDir: Cavyrn launch: - config: oslist: windows executable: Cavyrn Build/Cavyrn.exe type: default -'10090': +"10090": installDir: Call of Duty World at War launch: - executable: CoDWaW.exe - - description: 'Launch Call of Duty: World at War Multiplayer' + - description: "Launch Call of Duty: World at War Multiplayer" executable: CoDWaWmp.exe -'1009020': {} -'1009030': +"1009020": {} +"1009030": installDir: Hello Emoji Drawing to Solve Puzzles launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: HelloEmoji.exe type: default -'1009040': +"1009040": installDir: Last Days Motel launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Last Days Motel.exe type: default -'1009070': +"1009070": installDir: 没毛病制作人 launch: - executable: Psychosoft Ltd..exe type: default -'1009100': +"1009100": installDir: Zombie Killer - Type to Shoot! launch: - config: oslist: windows executable: ZombieKiller.exe type: default -'1009120': {} -'1009150': +"1009120": {} +"1009150": installDir: Choconoa launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Choconoa.exe type: default -'1009180': +"1009180": installDir: Block of Rum launch: - executable: Block of rum.exe type: default -'1009190': {} -'1009200': {} -'1009210': +"1009190": {} +"1009200": {} +"1009210": installDir: Trikumax launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows executable: Game.exe @@ -3240,14 +3216,14 @@ oslist: macos executable: Game.app type: default -'1009220': +"1009220": installDir: Esc-8-bit launch: - config: oslist: windows executable: Esc-8-bit.exe type: default -'1009230': +"1009230": installDir: live Mince launch: - config: @@ -3256,26 +3232,26 @@ type: default - config: oslist: macos - executable: live Mince.app\\Contents\\MacOS\\live Mince + executable: "live Mince.app\\\\Contents\\\\MacOS\\\\live Mince" type: default - config: oslist: linux executable: live Mince.x86 type: default -'1009240': +"1009240": installDir: Again launch: - config: oslist: windows executable: Again.exe type: default -'1009290': +"1009290": installDir: SWORD ART ONLINE Alicization Lycoris launch: - description: EAC Boot executable: Launch_Game.exe type: none - - description: '\" Single Play Mode (Disable EAC) \" ' + - description: "\\\" Single Play Mode (Disable EAC) \\\" " executable: sao_al.exe type: option1 nameLocalized: @@ -3283,14 +3259,14 @@ koreana: 소드 아트 온라인 앨리시제이션 리코리스 schinese: 刀剑神域 彼岸游境 tchinese: 刀劍神域 彼岸遊境 -'1009300': +"1009300": installDir: Achievement Collector Zombie launch: - config: oslist: windows executable: nw.exe type: config -'1009350': +"1009350": installDir: Keepers Dungeon launch: - config: @@ -3299,18 +3275,18 @@ type: default - config: oslist: macos - executable: Keeper.app\\Contents\\MacOS\\DepperMac + executable: "Keeper.app\\\\Contents\\\\MacOS\\\\DepperMac" type: default - config: oslist: linux executable: DepperLinux.x86_64 type: default -'1009370': - installDir: Elephants Can't Jump +"1009370": + installDir: "Elephants Can't Jump" launch: - - executable: ElephantsCantJump_1.1\\Elephant's Can't Jump.exe + - executable: "ElephantsCantJump_1.1\\\\Elephant's Can't Jump.exe" type: default -'1009390': +"1009390": installDir: Insanus Express launch: - config: @@ -3321,111 +3297,111 @@ oslist: macos executable: InsanusExpress.app type: default -'1009410': {} -'1009450': +"1009410": {} +"1009450": installDir: LoveTriangleTrouble launch: - config: oslist: windows executable: sankaku.exe type: default -'1009460': +"1009460": installDir: Hellogoodbye launch: - executable: HGB.exe type: none -'1009510': +"1009510": installDir: Insect Revolution VR launch: - config: oslist: windows executable: Insect Revolution.exe type: vr -'1009560': +"1009560": installDir: The Tenants launch: - config: oslist: windows executable: The Tenants.exe type: default -'1009570': {} -'1009580': {} -'1009590': +"1009570": {} +"1009580": {} +"1009590": installDir: Little Lost Robots launch: - config: oslist: windows executable: Little Lost Robots.exe type: default -'1009640': {} -'1009690': +"1009640": {} +"1009690": installDir: Saving Simon launch: - config: oslist: windows executable: Simon.exe type: default -'1009700': - installDir: Jewel Match Solitaire L'Amour +"1009700": + installDir: "Jewel Match Solitaire L'Amour" launch: - config: oslist: windows executable: Jewel Match Solitaire LAmour.exe type: none -'1009750': +"1009750": installDir: Flappatron launch: - executable: Flappatron.exe type: default -'1009770': +"1009770": installDir: One Million Worlds launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: oneMillionWorlds.bat type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: oneMillionWorlds.sh type: default -'1009810': +"1009810": installDir: Blood Island launch: - executable: BloodIsland.exe type: default -'1009870': +"1009870": installDir: Bet on Man launch: - config: oslist: windows executable: Bet on Man.exe type: default -'1009880': {} -'1009890': +"1009880": {} +"1009890": installDir: RHYUP launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: RHYUP.exe type: none -'1009900': +"1009900": installDir: Date Write launch: - config: oslist: windows executable: Date Write.exe type: none -'1009910': +"1009910": installDir: Ninja launch: - config: oslist: windows executable: Ninja.exe type: none -'1009920': +"1009920": installDir: CarrierTrail launch: - config: @@ -3443,14 +3419,14 @@ description: Play Carrier Trail executable: CTLinux type: default -'1009940': +"1009940": installDir: Rival Nation Wars launch: - config: oslist: windows executable: Rival Nation Wars.exe type: default -'1009950': +"1009950": installDir: once10 launch: - config: @@ -3461,7 +3437,7 @@ oslist: macos executable: once10-win.app type: none -'1009960': +"1009960": installDir: project-hedra launch: - config: @@ -3472,40 +3448,40 @@ oslist: linux executable: Hedra type: default -'1009990': +"1009990": installDir: SCP022 launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: \\Hope\\Binaries\\Win64\\Hope.exe + executable: "\\\\Hope\\\\Binaries\\\\Win64\\\\Hope.exe" type: default -'10100': - installDir: King's Quest Collection +"10100": + installDir: "King's Quest Collection" launch: - executable: 2016_KingsQuestCollection/SierraLauncher.exe type: default workingdir: 2016_KingsQuestCollection - - description: King's Quest Collection Legacy + - description: "King's Quest Collection Legacy" executable: SierraLauncher.exe type: option2 -'1010000': +"1010000": installDir: Super Alpaca Bros launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: super-alpaca-bros.exe type: default -'1010070': +"1010070": installDir: Heroes Of Maidan 2 launch: - config: oslist: windows executable: Heroes Of Maidan 2.exe type: default -'1010080': {} -'1010100': +"1010080": {} +"1010100": installDir: Airborn launch: - config: @@ -3513,13 +3489,13 @@ description: Airborn executable: Airborn.exe type: vr - - arguments: '-vrmode oculus' + - arguments: "-vrmode oculus" config: oslist: windows description: Airborn executable: Airborn.exe type: othervr -'1010120': +"1010120": installDir: UNDERWATER STAY ALIVE launch: - config: @@ -3530,12 +3506,12 @@ oslist: macos executable: Stay Alive.app type: none -'1010150': +"1010150": installDir: PASHTET launch: - executable: PASHTET.exe type: none -'1010180': +"1010180": installDir: Space Rabbits in Space launch: - config: @@ -3544,20 +3520,20 @@ type: default - config: oslist: macos - executable: Space Rabbits in Space.app\\Contents\\MacOS\\Space Rabbits in Space + executable: "Space Rabbits in Space.app\\\\Contents\\\\MacOS\\\\Space Rabbits in Space" type: default - config: oslist: linux executable: Space Rabbits in Space.x86_64 type: default -'1010230': +"1010230": installDir: Bleep Bloop launch: - config: oslist: windows executable: BleepBloop.exe type: default -'1010240': +"1010240": installDir: Changeling launch: - config: @@ -3568,7 +3544,7 @@ oslist: macos executable: Changeling.app type: default -'1010260': +"1010260": installDir: The Coroner Saga launch: - config: @@ -3583,53 +3559,53 @@ oslist: linux executable: TCS.sh type: default -'1010270': +"1010270": installDir: Nether The Untold Chapter launch: - config: betakey: default - osarch: '64' + osarch: "64" oslist: windows executable: Binaries/Win64/FacLauncher.exe type: default workingdir: Binaries/Win64 - config: betakey: server - osarch: '64' + osarch: "64" oslist: windows executable: Binaries/NetherServerLauncher.exe type: server workingdir: Binaries - config: betakey: dev_server - osarch: '64' + osarch: "64" oslist: windows executable: Binaries/NetherServerLauncher.exe type: server workingdir: Binaries - config: betakey: dev_client - osarch: '64' + osarch: "64" oslist: windows executable: Binaries/Win64/FacLauncher.exe type: default workingdir: Binaries/Win64 -'1010330': +"1010330": installDir: THE TEAR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: THE TEAR rc2.exe type: vr -'1010380': +"1010380": installDir: Tales of Ancient Nights launch: - config: oslist: windows executable: Test.exe type: default -'1010410': +"1010410": installDir: Dragon Roller Coaster VR launch: - config: @@ -3640,56 +3616,54 @@ oslist: windows executable: Dragon Rollercoaster VR Oculus.exe type: othervr -'1010420': +"1010420": installDir: MultiplayerFPS launch: - config: oslist: windows executable: Crash-Site Conquest.exe type: none -'1010430': +"1010430": installDir: Meister launch: - config: oslist: windows executable: meister.exe type: default -'1010450': +"1010450": installDir: Desire Den launch: - config: oslist: windows executable: Desire Den.exe type: default -'1010460': +"1010460": installDir: CivilContract launch: - config: - betakey: '1' - osarch: '64' + betakey: "1" + osarch: "64" oslist: windows description: Early Access 0.1. - description_loc: - english: Early Access 0.1. executable: N/A.exe type: default -'1010480': +"1010480": installDir: TREHUN launch: - config: oslist: windows executable: UCAct.exe type: default -'1010490': +"1010490": installDir: SpotGirlsDifference launch: - executable: SpotGirlsDifference.exe type: none -'1010520': +"1010520": installDir: Spacecell launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Spacecell/Spacecell.exe type: default @@ -3697,44 +3671,44 @@ oslist: macos executable: Spacecell/Spacecell.app type: default -'1010540': +"1010540": installDir: Ancient Anathema launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Ancient Anathema.exe type: default -'1010590': +"1010590": installDir: Train Manager launch: - config: - osarch: '64' + osarch: "64" executable: Train Manager.exe type: default -'1010600': - installDir: 'The Princess, the Stray Cat, and Matters of the Heart' +"1010600": + installDir: "The Princess, the Stray Cat, and Matters of the Heart" launch: - config: oslist: windows executable: noratoto1.exe type: default -'1010610': {} -'1010650': +"1010610": {} +"1010650": installDir: TAP launch: - - arguments: '-popupwindow -windowed' + - arguments: "-popupwindow -windowed" config: - osarch: '64' + osarch: "64" oslist: windows executable: TAP.exe type: none -'1010660': +"1010660": installDir: GACHIMUCHI REBIRTH launch: - executable: GACHIMUCHI_REBIRTH.exe type: none -'1010670': +"1010670": installDir: Dungeon Dreams launch: - config: @@ -3745,37 +3719,37 @@ oslist: macos executable: Game.app type: none -'1010690': {} -'1010710': +"1010690": {} +"1010710": installDir: The Pack launch: - config: oslist: windows executable: The_Pack.exe type: default -'1010740': +"1010740": installDir: Scrapyard Robot Rampage launch: - config: oslist: windows executable: ScrapyardRobotRampage.exe type: default -'1010750': +"1010750": installDir: Blood launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: anuket_x64.exe type: default - - arguments: '-addon \"addons\\Cryptic Passage\\\"' + - arguments: "-addon \\\"addons\\\\Cryptic Passage\\\\\\\"" config: - osarch: '64' + osarch: "64" oslist: windows description: Play Cryptic Passage executable: anuket_x64.exe type: none -'1010780': +"1010780": installDir: Wings of Glass 玻璃の羽 launch: - config: @@ -3786,63 +3760,63 @@ oslist: macos executable: Wings of Glass 玻璃の羽.app type: default -'1010830': +"1010830": installDir: Mech Chip launch: - config: oslist: windows executable: MechChip.exe type: default -'1010850': +"1010850": installDir: thsuijin launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: 東方翠神廻廊.exe type: default -'1010860': +"1010860": installDir: Hide and Seek launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: HideAndSeek.exe type: none -'1010870': +"1010870": installDir: The Last 47 Hours launch: - executable: The47Hour.exe type: default -'1010890': +"1010890": installDir: Touhou Fantasia launch: - config: oslist: windows executable: TouhouFantasia.exe type: default -'1010910': {} -'1010920': +"1010910": {} +"1010920": installDir: Catalyst launch: - executable: Catalyst.exe type: none -'1010930': +"1010930": installDir: Aztec Tower launch: - - arguments: '-vr' + - arguments: "-vr" config: oslist: windows executable: AztecTower.exe type: vr -'1010950': +"1010950": installDir: SmartyTale 2D launch: - config: oslist: windows executable: smtale2d.exe type: default -'1010970': +"1010970": installDir: Dead Wishes launch: - config: @@ -3853,7 +3827,7 @@ oslist: macos executable: DeadWishes.app type: default -'10110': +"10110": installDir: Space Quest Collection launch: - executable: 2016_SpaceQuestCollection/SierraLauncher.exe @@ -3862,14 +3836,14 @@ - description: Space Quest Collection Legacy executable: SierraLauncher.exe type: option1 -'1011000': +"1011000": installDir: Infinite Art Museum launch: - config: oslist: windows executable: Infinite Art Museum.exe type: vr -'1011030': +"1011030": installDir: HENTAI MINESWEEPER launch: - config: @@ -3884,12 +3858,12 @@ oslist: macos executable: HENTAIMINSMAC.app type: default -'1011070': +"1011070": installDir: Nomads of the Fallen Star launch: - executable: nw.exe type: default -'1011090': +"1011090": installDir: ANDROMALIUS launch: - config: @@ -3897,58 +3871,58 @@ description: Play executable: Andromalius.exe type: default -'1011120': +"1011120": installDir: Hero Staff launch: - config: oslist: windows executable: Hero Staff.exe type: default -'1011130': +"1011130": installDir: Life is Pointless launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Life is Pointless.exe type: default - config: oslist: macos - executable: Life is Pointless Mac Build.app\\Contents\\MacOS\\Life is Pointless Mac Build + executable: "Life is Pointless Mac Build.app\\\\Contents\\\\MacOS\\\\Life is Pointless Mac Build" type: default -'1011140': +"1011140": installDir: Border Control launch: - config: oslist: windows executable: BorderControl.exe type: default -'1011190': +"1011190": installDir: SIMULACRA 2 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: simulacra2.exe type: default -'1011200': +"1011200": installDir: Yametei launch: - config: oslist: windows executable: Yametei.exe type: default -'1011220': +"1011220": installDir: Taoist Immortal launch: - - arguments: '-windowed' + - arguments: "-windowed" config: - osarch: '64' + osarch: "64" oslist: windows executable: TaoistImmortal.exe type: default -'1011230': {} -'1011240': +"1011230": {} +"1011240": installDir: Dragon Chase launch: - config: @@ -3956,50 +3930,50 @@ executable: DragonChase.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: DragonChase.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: DragonChase.x86_64 type: default - - executable: DragonChase.app\\Contents\\MacOS\\DragonChase + - executable: "DragonChase.app\\\\Contents\\\\MacOS\\\\DragonChase" type: none -'1011260': +"1011260": installDir: Settlement Zero launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SZeroG.exe type: vr -'1011270': +"1011270": installDir: Bleeding Hunt VR Chap.1 launch: - config: oslist: windows executable: BleedingHunt.exe type: vr -'1011290': +"1011290": installDir: Hotel_RnR launch: - config: oslist: windows executable: HotelRnR.exe type: vr -'1011300': +"1011300": installDir: UNI launch: - executable: uni2.exe type: default -'1011310': +"1011310": installDir: PARSE ALLY launch: - executable: PARSE ALLY.exe type: default -'1011320': +"1011320": installDir: WhiskeyAndZombies launch: - config: @@ -4008,17 +3982,17 @@ type: default - config: oslist: macos - executable: WnZ.app\\Contents\\MacOS\\WnZ + executable: "WnZ.app\\\\Contents\\\\MacOS\\\\WnZ" type: default -'1011370': +"1011370": installDir: Outliver Redemption launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Outliver_Redemption.exe type: default -'1011390': +"1011390": installDir: Field of Glory Empires launch: - executable: autorun.exe @@ -4028,15 +4002,15 @@ description: Press Preview executable: Empires_STEAM.exe type: none -'1011420': +"1011420": installDir: BMS launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: BusMechanicSimulator.exe type: default -'1011440': +"1011440": installDir: Balloon Girl launch: - config: @@ -4044,52 +4018,52 @@ description: Launch executable: Balloon Girl.exe type: default -'1011460': +"1011460": installDir: CavernsofKarvella launch: - config: oslist: windows executable: caverns of karvella 1.exe type: default -'1011470': +"1011470": installDir: PacketStorm launch: - description: Storm ALL the Packets! executable: PacketStorm.exe type: none -'1011510': +"1011510": installDir: Wizard And Minion Idle launch: - executable: Wizard and Minion Idle.exe type: default -'1011530': +"1011530": installDir: Super Gerry launch: - config: oslist: windows executable: SuperViolin.exe type: default -'1011550': +"1011550": installDir: Light The Way launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: LightTheWay.exe type: default -'1011590': {} -'1011600': +"1011590": {} +"1011600": installDir: Dungeon Cleaning Express launch: - config: oslist: windows executable: Dungeon Cleaning Express.exe type: default -'1011610': +"1011610": installDir: Radio General launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: RadioGeneral.exe type: default @@ -4098,11 +4072,11 @@ executable: RadioGeneral.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: RadioGeneral.x64 type: default -'1011620': +"1011620": installDir: ElectricSleep launch: - config: @@ -4110,7 +4084,7 @@ executable: ElectricSleep.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: LinuxBundle type: default @@ -4118,12 +4092,12 @@ oslist: macos executable: MacBundle type: default -'1011630': +"1011630": installDir: Border Force launch: - executable: Border Force.exe type: none -'1011670': +"1011670": installDir: Totally Reliable Delivery Service launch: - config: @@ -4139,8 +4113,8 @@ oslist: linux executable: totallyreliabledeliveryservice.x86_64 type: default -'1011700': - installDir: 'Walden, a game' +"1011700": + installDir: "Walden, a game" launch: - config: oslist: windows @@ -4150,54 +4124,54 @@ oslist: macos executable: Walden.app type: none -'1011720': +"1011720": installDir: Eleven Prophecies launch: - config: oslist: windows executable: ElevenProphecies.exe type: default -'1011740': +"1011740": installDir: DOZA 2 - NOVOGODNIY PEREDOZ launch: - config: oslist: windows executable: DOKA 2.exe type: default -'1011760': +"1011760": installDir: Dragon Iris launch: - config: oslist: windows executable: Dragon Iris.exe type: default -'1011780': {} -'1011810': +"1011780": {} +"1011810": installDir: ELSWORD JAPAN launch: - arguments: steam executable: elsword.exe type: none -'1011820': +"1011820": installDir: Millionaire Dancer launch: - config: oslist: windows executable: Millionaire Dancer.exe type: vr -'1011830': +"1011830": installDir: RocwoodAcademy launch: - config: oslist: windows executable: Rocwood.exe type: default -'1011860': +"1011860": installDir: questionbh launch: - - executable: questionbh\\questionbh.exe + - executable: "questionbh\\\\questionbh.exe" type: default -'1011870': +"1011870": installDir: super island survival launch: - config: @@ -4212,7 +4186,7 @@ oslist: macos executable: super island survival.app type: default -'1011940': +"1011940": installDir: Ideology in Friction launch: - config: @@ -4222,42 +4196,42 @@ nameLocalized: schinese: 冲突的意志 tchinese: 衝突的意志 -'1011960': +"1011960": installDir: Arena of Shaelo launch: - - arguments: '-steam' + - arguments: "-steam" config: oslist: windows executable: ArenaOfShaelo.exe type: none - - arguments: '-steam' + - arguments: "-steam" config: oslist: linux executable: ArenaOfShaelo type: none -'1011970': +"1011970": installDir: 三国佣兵传奇 launch: - executable: game.exe type: none -'1011980': +"1011980": installDir: Depth Of Consciousness launch: - executable: Depth Of Consciousness.exe type: default -'1011990': +"1011990": installDir: Dies irae ~Interview with Kaziklu Bey~ launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: malie.exe type: default -'10120': +"10120": installDir: Aces of the Galaxy launch: - executable: AcesOfTheGalaxy.exe -'1012030': +"1012030": installDir: Detective Girl of the Steam City launch: - executable: Game.exe @@ -4265,47 +4239,43 @@ nameLocalized: schinese: 蒸汽之都的少女侦探 tchinese: 蒸汽之都的少女偵探 -'1012070': +"1012070": installDir: Banzai Hentai! launch: - executable: Banzai Hentai!.exe type: default -'1012110': +"1012110": installDir: Military Conflict - Vietnam launch: - config: oslist: windows description: MCV 32-Bit - description_loc: - english: MCV 32-Bit executable: mcv.exe type: option1 - config: - osarch: '64' + osarch: "64" oslist: linux executable: mcv.sh type: default - config: oslist: windows description: MCV 64-Bit (Experimental) - description_loc: - english: MCV 64-Bit (Experimental) executable: mcv_x64.exe type: option2 -'1012120': +"1012120": installDir: The Great Mushroom Hunt launch: - config: oslist: windows executable: MushroomHunt.exe type: none -'1012130': +"1012130": installDir: SMJH launch: - executable: shenma.exe type: default -'1012140': {} -'1012160': +"1012140": {} +"1012160": installDir: SkyGameChanger-Air Combat II- launch: - config: @@ -4314,38 +4284,38 @@ type: default - config: oslist: macos - executable: Game.app\\Contents\\MacOS\\SkyGameChanger + executable: "Game.app\\\\Contents\\\\MacOS\\\\SkyGameChanger" type: default -'1012180': +"1012180": installDir: Elearning Development Intern launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Elearning Development Intern.exe type: default -'1012190': {} -'1012240': +"1012190": {} +"1012240": installDir: 旅燕归航 Shallow Homing launch: - executable: Game.exe type: none -'1012280': +"1012280": installDir: Beekyr launch: - config: oslist: windows executable: Beekyr.exe type: default -'1012290': +"1012290": installDir: EMOTIONS launch: - config: oslist: windows executable: nw.exe type: default -'1012310': {} -'1012360': +"1012310": {} +"1012360": installDir: GunslugsRogue Tactics launch: - config: @@ -4363,35 +4333,35 @@ description: Launch executable: gunslugs3 type: none -'1012370': +"1012370": installDir: Afterlife launch: - config: oslist: windows executable: SSL_Afterlife.exe type: vr -'1012390': +"1012390": installDir: Fruit Lockers Reborn! 2 launch: - config: oslist: windows executable: FruitLockersReborn2.exe type: default -'1012410': +"1012410": installDir: Extraction Valley launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: ExtractionValley\\Binaries\\Win64\\ExtractionValley.exe + executable: "ExtractionValley\\\\Binaries\\\\Win64\\\\ExtractionValley.exe" type: default - config: betakey: devcomp - osarch: '64' + osarch: "64" oslist: windows - executable: ExtractionValley\\Binaries\\Win64\\ExtractionValley.exe + executable: "ExtractionValley\\\\Binaries\\\\Win64\\\\ExtractionValley.exe" type: default -'1012450': +"1012450": installDir: HopSquash launch: - config: @@ -4404,7 +4374,7 @@ executable: HopSquash.app type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: Unity/HopSquash.x86_64 type: none @@ -4420,29 +4390,29 @@ executable: HopSquash_Legacy.app type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: HopSquash! Legacy executable: HopSquash type: none -'1012460': +"1012460": installDir: Through Abandoned 3 The Refuge launch: - executable: ta3.exe type: none -'1012470': {} -'1012490': +"1012470": {} +"1012490": installDir: Time to Fight launch: - config: oslist: windows executable: timetofight.exe type: none -'1012530': +"1012530": installDir: Soccering launch: - config: - osarch: '64' + osarch: "64" oslist: linux executable: play type: default @@ -4450,7 +4420,7 @@ oslist: windows executable: Soccering.exe type: default -'1012560': +"1012560": installDir: Snakeybus launch: - config: @@ -4461,8 +4431,8 @@ oslist: macos executable: snakeybus.app type: default -'1012570': {} -'1012580': +"1012570": {} +"1012580": installDir: TriumphInTheSkies launch: - config: @@ -4473,14 +4443,14 @@ oslist: windows executable: TriumphInTheSkies.exe type: default -'1012600': +"1012600": installDir: Why Chicken Why launch: - config: oslist: windows executable: WhyChickenWhySteam.exe type: default -'1012610': +"1012610": installDir: Buoyancy launch: - config: @@ -4495,64 +4465,64 @@ oslist: linux executable: Buoyancy.x86_64 type: none -'1012650': +"1012650": installDir: Galactic Tower Defense launch: - config: oslist: windows executable: Galactic Tower Defense.exe type: default -'1012670': +"1012670": installDir: Gnubbl launch: - config: oslist: windows executable: Gnubbl.exe type: default -'1012700': {} -'1012710': +"1012700": {} +"1012710": installDir: Endzeit launch: - config: oslist: windows executable: Thaw.exe type: none -'1012720': +"1012720": installDir: PixTower launch: - config: oslist: windows executable: PixTower.exe type: default -'1012730': +"1012730": installDir: NineTrialsTestServer launch: - - arguments: '-ServerIP=120.78.152.44:8990' + - arguments: "-ServerIP=120.78.152.44:8990" config: - osarch: '64' + osarch: "64" oslist: windows - executable: NineTrials\\Binaries\\Win64\\NineTrials.exe + executable: "NineTrials\\\\Binaries\\\\Win64\\\\NineTrials.exe" type: default -'1012790': +"1012790": installDir: IntoTheRadius launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: IntoTheRadius.exe type: othervr - - arguments: '-hmd=SteamVr' + - arguments: "-hmd=SteamVr" config: betakey: public_steamvr oslist: windows executable: IntoTheRadius.exe type: vr - - arguments: '-hmd=SteamVr' + - arguments: "-hmd=SteamVr" config: oslist: windows executable: IntoTheRadius.exe type: vr -'1012800': +"1012800": installDir: WhiTaers Gongren Edition launch: - config: @@ -4563,31 +4533,31 @@ oslist: macos executable: WhiTaers_Gongren.app type: default -'1012820': {} -'1012830': +"1012820": {} +"1012830": installDir: Poor Stickman launch: - executable: Poor Stickman.exe type: none -'1012840': +"1012840": installDir: Moons of Madness launch: - config: oslist: windows executable: MoonsOfMadness.exe type: none -'1012860': +"1012860": installDir: Data mining 5 launch: - config: oslist: windows executable: Data mining 5.exe type: default -'1012880': +"1012880": installDir: 60 Seconds! Reatomized launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: 60SecondsReatomized.exe type: default @@ -4596,11 +4566,11 @@ executable: 60SecondsReatomized.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: 60Seconds.x86_64 type: default -'1012900': +"1012900": installDir: Deviant Dungeon launch: - config: @@ -4613,21 +4583,21 @@ type: default - config: oslist: linux - executable: ./DeviantDungeon.sh + executable: "./DeviantDungeon.sh" type: default nameLocalized: latam: Deviant Dungeon schinese: 异世界淫乱后宫物语 spanish: Deviant Dungeon tchinese: 異世界淫亂後宮物語 -'1012970': +"1012970": installDir: Extricate launch: - config: oslist: windows executable: Extricate.exe type: none -'1012990': +"1012990": installDir: miniPVP launch: - config: @@ -4636,140 +4606,140 @@ type: default - config: oslist: macos - executable: miniPVP.app\\Contents\\MacOS\\miniPVP + executable: "miniPVP.app\\\\Contents\\\\MacOS\\\\miniPVP" type: default -'10130': +"10130": installDir: TimeShift launch: - - executable: bin\\TimeShift.Exe + - executable: "bin\\\\TimeShift.Exe" workingdir: bin -'1013000': +"1013000": installDir: Kingdom-Heroes launch: - config: oslist: windows executable: Kingdom-Heroes.exe type: none -'1013040': +"1013040": installDir: Planetoid Pioneers Online launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Crush2D.exe type: default -'1013070': +"1013070": installDir: Estellium Legends launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows executable: Game.exe type: default - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows - ownsdlc: '1164950' + ownsdlc: "1164950" description: with BPP II DLC (Windows) executable: Game.exe type: option2 - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: macos executable: Game.app type: default - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows - ownsdlc: '1068810' + ownsdlc: "1068810" description: with BPP 1 DLC (Windows) executable: Game.exe type: option1 - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: macos - ownsdlc: '1068810' + ownsdlc: "1068810" description: with BPP 1 DLC (Mac) executable: Game.app type: option1 - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: macos - ownsdlc: '1164950' + ownsdlc: "1164950" description: with BPP II DLC (Mac) executable: Game.app type: option2 -'1013100': +"1013100": installDir: Mage launch: - executable: Mage.exe type: none -'1013120': +"1013120": installDir: Hotpuzzlevideo launch: - executable: Hotpuzzlevideo.exe type: none -'1013130': +"1013130": installDir: Happy Anime Puzzle launch: - executable: HappyAnimePuzzle.exe type: none -'1013140': {} -'1013150': +"1013140": {} +"1013150": installDir: The River launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: The_River.exe type: default -'1013160': {} -'1013180': +"1013160": {} +"1013180": installDir: Funbag Fantasy launch: - executable: Funbag Fantasy.exe type: default -'1013190': +"1013190": installDir: Retro Vision launch: - config: oslist: windows executable: Retro Vision.exe type: none -'1013200': +"1013200": installDir: True Colors launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ESGame.exe type: default -'1013220': +"1013220": installDir: River City Saga Three Kingdoms launch: - executable: River City Saga Three Kingdoms.exe nameLocalized: - english: 'River City Saga: Three Kingdoms' + english: "River City Saga: Three Kingdoms" french: River City Saga - Les Trois japanese: くにおくんの三国志だよ 全員集合! koreana: 열혈삼국지 schinese: 热血三国志 tchinese: 熱血三國志 -'1013280': +"1013280": installDir: Ragtag launch: - config: oslist: windows executable: RagTag.exe type: default -'1013290': +"1013290": installDir: Beat Your Meat launch: - config: oslist: windows executable: BeatYourMeat.exe type: default -'1013310': +"1013310": installDir: Peaky Blinders Mastermind launch: - config: @@ -4778,7 +4748,7 @@ type: default nameLocalized: schinese: 浴血黑帮:傀儡师 -'1013320': +"1013320": installDir: Firestone launch: - config: @@ -4793,7 +4763,7 @@ oslist: linux executable: Firestone.x86_64 type: none -'1013340': +"1013340": installDir: brainCloud Bombers launch: - config: @@ -4802,38 +4772,38 @@ type: default - config: oslist: macos - executable: steam-Mac.app\\Contents\\MacOS\\steam-Mac + executable: "steam-Mac.app\\\\Contents\\\\MacOS\\\\steam-Mac" type: default -'1013350': +"1013350": installDir: The Voice from Heaven launch: - config: oslist: windows executable: VoiceFromHeaven.exe type: default -'1013360': +"1013360": installDir: Feditor launch: - config: oslist: windows executable: Feditor.exe type: default -'1013400': +"1013400": installDir: FanaticBlader launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: FanaticBlader.exe type: none -'1013410': +"1013410": installDir: Redvil launch: - config: oslist: windows executable: Redvil.exe type: default -'1013430': +"1013430": installDir: TetrotronVR launch: - config: @@ -4844,25 +4814,25 @@ oslist: windows executable: TetrotronVR.exe type: othervr -'1013450': +"1013450": installDir: Triton Survival launch: - config: oslist: windows executable: Triton Survival.exe type: default -'1013520': {} -'1013540': +"1013520": {} +"1013540": installDir: Evospace launch: - - arguments: '-fullscreen -nohmd' + - arguments: "-fullscreen -nohmd" config: - osarch: '64' + osarch: "64" oslist: windows executable: Evospace.exe type: none -'1013560': {} -'1013570': +"1013560": {} +"1013570": installDir: Escape Room Academy launch: - config: @@ -4873,7 +4843,7 @@ oslist: macos executable: EscapeRoomAcademy.app type: default -'1013580': +"1013580": installDir: Manna for our Malices launch: - config: @@ -4888,38 +4858,38 @@ oslist: macos executable: MannaforourMalices.app type: default -'1013600': +"1013600": installDir: Rodent Warriors launch: - config: oslist: windows executable: RodentWarriors.exe type: default -'1013630': +"1013630": installDir: Frigus Inferos launch: - config: oslist: windows - ownsdlc: '1013630' + ownsdlc: "1013630" executable: Game.exe type: option1 - config: oslist: windows - ownsdlc: '1013630' + ownsdlc: "1013630" executable: Game..exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows - ownsdlc: '1013630' + ownsdlc: "1013630" executable: Game..exe type: default - config: - osarch: '64' - ownsdlc: '1013630' + osarch: "64" + ownsdlc: "1013630" executable: Game..exe type: default -'1013650': +"1013650": installDir: Tiny Dangerous Dungeons launch: - config: @@ -4930,43 +4900,43 @@ oslist: macos executable: Tiny Dangerous Dungeons.app type: default -'1013660': +"1013660": installDir: Pursuer launch: - executable: Pursuer/Pursuer.exe type: default -'1013670': - installDir: Mr Boom's Firework Factory +"1013670": + installDir: "Mr Boom's Firework Factory" launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: fwf.exe type: default -'1013680': +"1013680": installDir: Saint Paul launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: saintpaul_jan01.exe type: none -'1013700': +"1013700": installDir: Draft Day Sports College Football 2019 launch: - config: oslist: windows executable: DDSCF19.exe type: default -'1013710': +"1013710": installDir: Draft Day Sports College Basketball 2019 launch: - config: oslist: windows executable: DDSCB19.exe type: default -'1013730': {} -'1013750': +"1013730": {} +"1013750": installDir: LegalDungeon launch: - config: @@ -4979,20 +4949,20 @@ description: Launch Mac executable: LegalDungeon.app type: none -'1013790': +"1013790": installDir: TheVeryHardPuzzleGame&Editor launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TheVeryHardPuzzleGameAndEditor.exe type: default -'1013810': +"1013810": installDir: The legendary assassin KAL launch: - executable: Legendary Assassin KAL.exe type: none -'1013820': +"1013820": installDir: Stars and Snowdrops launch: - config: @@ -5003,7 +4973,7 @@ oslist: linux executable: Stars_and_Snowdrops.sh type: default -'1013830': +"1013830": installDir: Agent Of Love launch: - config: @@ -5014,48 +4984,44 @@ oslist: windows executable: Agent Of Love.exe type: default -'1013870': - installDir: Leanna's Slice of Life +"1013870": + installDir: "Leanna's Slice of Life" launch: - executable: Game.exe type: default nameLocalized: schinese: 打工新妻莉安娜 tchinese: 打工新妻莉安娜 -'1013890': +"1013890": installDir: Frog Jump launch: - executable: Frog Jump.exe type: none -'1013910': - installDir: Aron's Adventure +"1013910": + installDir: "Aron's Adventure" launch: - - arguments: '-d3d12' + - arguments: "-d3d12" config: - osarch: '64' + osarch: "64" oslist: windows description: DirectX-11 - description_loc: - english: DirectX-11 executable: AronsAdventure.exe type: default - - arguments: '-d3d11' + - arguments: "-d3d11" config: - osarch: '64' + osarch: "64" oslist: windows - description: Aron's Adventure DirectX-11 - description_loc: - english: Aron's Adventure DirectX-11 + description: "Aron's Adventure DirectX-11" executable: AronsAdventure.exe type: option1 -'1013940': +"1013940": installDir: Bob and Kuura Lost in Snowglobe launch: - config: oslist: windows executable: kuura2.exe type: default -'1013950': +"1013950": installDir: AntiPodal launch: - config: @@ -5066,29 +5032,29 @@ oslist: macos executable: AntiPodal.app type: none -'1013960': +"1013960": installDir: OpenWheelManager launch: - config: oslist: windows executable: OpenWheelManager.exe type: default -'1013970': +"1013970": installDir: Suwarudo launch: - config: oslist: windows executable: Suwarudo.exe type: none -'10140': +"10140": installDir: 3D Ultra Mini Golf Adventures launch: - executable: MGA.exe -'1014010': - installDir: Hotel Ever After - Ella's Wish +"1014010": + installDir: "Hotel Ever After - Ella's Wish" launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: hea_win_02.07.exe type: none @@ -5096,28 +5062,28 @@ oslist: macos executable: OSX desktop.app/Contents/MacOS/OSX desktop type: none -'1014020': +"1014020": installDir: SuccessorOfTheMoon launch: - config: oslist: windows executable: sotm.exe type: default -'1014030': +"1014030": installDir: Molly - Can you survive 100 nights launch: - config: oslist: windows executable: Molly.exe type: none -'1014040': +"1014040": installDir: PictoQuest launch: - config: oslist: windows executable: PictoQuest.exe type: default -'1014050': +"1014050": installDir: Hockey Manager 2020 launch: - config: @@ -5127,21 +5093,21 @@ nameLocalized: english: Hockey Manager 20|20 german: Eishockey Manager 20|20 -'1014100': +"1014100": installDir: B25Game launch: - config: oslist: windows executable: B25A.exe type: default -'1014110': +"1014110": installDir: Fish Simulator Aquarium Manager launch: - config: oslist: windows executable: Fish Simulator.exe type: none -'1014140': +"1014140": installDir: Snakebird Primer launch: - config: @@ -5156,22 +5122,22 @@ oslist: macos executable: SnakebirdPrimer.app type: default -'1014180': +"1014180": installDir: Revenant in the Paradise launch: - config: oslist: windows executable: Game.exe type: default -'1014270': +"1014270": installDir: Plaguepunk Justice launch: - config: oslist: windows executable: PlaguepunkJustice.exe type: default -'1014280': - installDir: The Devil's Calculator +"1014280": + installDir: "The Devil's Calculator" launch: - config: oslist: windows @@ -5185,7 +5151,7 @@ oslist: linux executable: calculator type: default -'1014310': +"1014310": installDir: Top Torch launch: - config: @@ -5196,60 +5162,60 @@ oslist: macos executable: Top Torch - Mac.app type: none -'1014360': - installDir: Businessman's Diary of Dungeon Village +"1014360": + installDir: "Businessman's Diary of Dungeon Village" launch: - config: oslist: windows - executable: Businessman's Diary.exe + executable: "Businessman's Diary.exe" type: none nameLocalized: english: Adventures Diary of Merchant japanese: ビジネスマンの冒険日記 schinese: 冒险村的商人日记 tchinese: 冒險村的商人日記 -'1014370': +"1014370": installDir: BDTG launch: - config: oslist: windows executable: BouncingDVDThe Game.exe type: default -'1014400': {} -'1014420': +"1014400": {} +"1014420": installDir: Blind Date launch: - config: oslist: windows executable: Blind_Date.exe type: none -'1014430': {} -'1014440': {} -'1014450': +"1014430": {} +"1014440": {} +"1014450": installDir: Spacelair launch: - - arguments: '-windowed' + - arguments: "-windowed" config: - osarch: '64' + osarch: "64" oslist: windows executable: Spacelair.exe type: none - - arguments: '-windowed' + - arguments: "-windowed" config: oslist: linux executable: Spacelair.py type: none -'1014460': +"1014460": installDir: Nothing! launch: - config: oslist: windows executable: Nothing.exe type: default -'1014470': +"1014470": installDir: Fates - 8 Stories launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows description: Lancio @@ -5260,9 +5226,9 @@ oslist: macos executable: Game.app type: default -'1014480': {} -'1014540': {} -'1014550': +"1014480": {} +"1014540": {} +"1014550": installDir: One Synth launch: - config: @@ -5271,59 +5237,59 @@ type: default - config: oslist: macos - executable: OneSynth.app\\Contents\\MacOS\\OneSynth + executable: "OneSynth.app\\\\Contents\\\\MacOS\\\\OneSynth" type: default -'1014560': +"1014560": installDir: CreepyVision launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: CreepyVision.exe type: default -'1014570': +"1014570": installDir: AlienAfterlife launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: AlienAfterlife.exe type: default -'1014580': +"1014580": installDir: RB Axolotl launch: - executable: nw.exe type: none -'1014590': +"1014590": installDir: Time To Parkour launch: - config: oslist: windows executable: Time To Parkour.exe type: none -'1014600': +"1014600": installDir: Crash Landed launch: - config: oslist: windows executable: Crash Landed.exe type: default -'1014610': +"1014610": installDir: Pub Simulator launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: VRBartender.exe type: vr -'1014620': +"1014620": installDir: Rollman launch: - config: oslist: windows executable: Rollman.exe type: default -'1014660': +"1014660": installDir: Baby Bee launch: - config: @@ -5334,30 +5300,30 @@ oslist: macos executable: Baby Bee.app type: none -'1014710': +"1014710": installDir: sCATter launch: - config: oslist: windows executable: sCATter.exe type: vr -'1014720': +"1014720": installDir: Asteroid Navigation launch: - config: oslist: windows executable: Asteroid Navigation.exe type: default -'1014730': +"1014730": installDir: Cyndy launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Cyndy.exe type: default -'1014740': {} -'1014750': +"1014740": {} +"1014750": installDir: DupliCity launch: - config: @@ -5366,10 +5332,10 @@ type: none - config: oslist: macos - executable: DupliCity.app\\Contents\\MacOS\\DupliCity + executable: "DupliCity.app\\\\Contents\\\\MacOS\\\\DupliCity" type: none -'1014780': {} -'1014790': +"1014780": {} +"1014790": installDir: Bewildebots launch: - config: @@ -5384,7 +5350,7 @@ oslist: linux executable: Bewildebots.x86_64 type: none -'1014810': +"1014810": installDir: HappyWords launch: - config: @@ -5395,19 +5361,19 @@ oslist: macos executable: HappyWords.app type: default -'1014820': +"1014820": installDir: The Angry Banana launch: - config: oslist: windows executable: The Angry Banana.exe type: default -'1014840': +"1014840": installDir: HeartandAxe launch: - executable: HeartandAxe.exe type: none -'1014880': +"1014880": installDir: By Moonlight launch: - config: @@ -5418,21 +5384,21 @@ oslist: macos executable: By_Moonlight.app type: default -'1014890': +"1014890": installDir: Warforged launch: - config: oslist: windows executable: Warforged.exe type: default -'1014900': +"1014900": installDir: Hex Defense launch: - config: oslist: windows executable: HexDefense.exe type: vr -'1014920': +"1014920": installDir: Favor Chess launch: - config: @@ -5443,11 +5409,11 @@ oslist: macos executable: Favor Chess.app type: none -'1014930': {} -'1014940': +"1014930": {} +"1014940": installDir: Nehrim launch: - - arguments: '-gamestart' + - arguments: "-gamestart" config: oslist: windows executable: NehrimInstallSwitch.exe @@ -5457,17 +5423,17 @@ description: Nehrim <> Oblivion executable: NehrimInstallSwitch.exe type: config -'1014950': {} -'1014960': {} -'1014970': +"1014950": {} +"1014960": {} +"1014970": installDir: Saloon VR launch: - config: oslist: windows executable: SaloonVR.exe type: vr -'1014980': {} -'1014990': +"1014980": {} +"1014990": installDir: Aivolution launch: - config: @@ -5478,16 +5444,16 @@ oslist: windows executable: Aivolution.exe type: default -'10150': +"10150": installDir: Prototype launch: - executable: prototypef.exe -'1015010': {} -'1015020': +"1015010": {} +"1015020": installDir: Imprison launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: imprison.exe type: default @@ -5495,7 +5461,7 @@ oslist: macos executable: imprison.app type: default -'1015080': +"1015080": installDir: Vampire & Monsters Hidden Object Games launch: - config: @@ -5508,14 +5474,14 @@ type: none nameLocalized: czech: Upír a Příšery - hra se skrytými objekty - najít rozdíly - english: 'Vampire & Monsters: Mystery Hidden Object Games - Puzzle' + english: "Vampire & Monsters: Mystery Hidden Object Games - Puzzle" french: Vampire & Monstres - Objets Cachés - Trouver les Différences german: Der Vampir & Monsterfalle - Mystery Wimmelbildspiel - Fehler Finden polish: Wampiry i Potwory - ukryte przedmioty gry po polsku - znajdz roznice russian: Вампиры и Монстры - Найди Предметы и Отличия - Игры на русском schinese: 吸血鬼 & 怪物陷阱 - 隱藏的對象遊戲 - 隐藏的图画 spanish: Vampiros & Monstruos - Buscando Objetos Ocultos Juegos en Español -'1015090': +"1015090": installDir: Last Day of Rome launch: - config: @@ -5526,135 +5492,131 @@ oslist: windows executable: LastDayOfRome.exe type: default -'1015100': +"1015100": installDir: Heart to Heart launch: - config: oslist: windows executable: H2H.exe type: default -'1015120': +"1015120": installDir: Heroes of the Earth in Vasion launch: - config: oslist: windows executable: Heroes_of_the_Earth-in_Vasion.exe type: default -'1015130': +"1015130": installDir: Wounded - The Beginning launch: - config: oslist: windows executable: Wounded - The Beginning.exe type: none -'1015140': +"1015140": installDir: 10 Miles To Safety launch: - config: oslist: windows executable: TenMilesToSafety.exe type: default -'1015150': +"1015150": installDir: PrincessGuardians launch: - executable: PG1.exe type: none -'1015180': +"1015180": installDir: Malicious Payload launch: - - arguments: '-vrmode openvr' + - arguments: "-vrmode openvr" config: oslist: windows executable: Malicious Payload.exe type: vr - - arguments: '-vrmode oculus' + - arguments: "-vrmode oculus" config: oslist: windows executable: Malicious Payload.exe type: othervr -'1015240': +"1015240": installDir: The Expedition launch: - config: oslist: windows executable: The Expedition.exe type: none -'1015250': +"1015250": installDir: Caramel Port launch: - config: oslist: windows executable: Caramel Port.exe type: none -'1015290': +"1015290": installDir: Trapped in Fear launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Trapped in Fear.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: Trapped in Fear.exe type: default -'1015350': +"1015350": installDir: Your Home launch: - executable: Game.exe type: none -'1015370': {} -'1015430': +"1015370": {} +"1015430": installDir: The Dead Tree of Ranchiuna launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Ranchiuna.exe type: default -'1015470': +"1015470": installDir: Need for Spirit Off-Road Edition launch: - config: oslist: windows - executable: NFS_content\\Need for Spirit Off Road.exe + executable: "NFS_content\\\\Need for Spirit Off Road.exe" type: default -'1015480': +"1015480": installDir: DrumbeatsVR launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Play the BETA - description_loc: - english: Play the BETA executable: DrumBeatsVR-BETA/DrumbeatsVR.exe type: vr - config: - osarch: '64' + osarch: "64" oslist: windows description: Play the release version - description_loc: - english: Play the release version executable: DrumBeatsVR_2.exe type: vr -'1015500': +"1015500": installDir: WWE2K20 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: WWE2K20_x64.exe type: default -'1015530': +"1015530": installDir: Bonds of the Skies launch: - executable: Bonds of the Skies.exe type: none nameLocalized: japanese: 空のフォークロア -'1015540': +"1015540": installDir: Sephirothic Stories launch: - config: @@ -5663,7 +5625,7 @@ type: none nameLocalized: japanese: セフィロティックストーリーズ -'1015550': +"1015550": installDir: Asdivine Dios launch: - config: @@ -5672,14 +5634,14 @@ type: none nameLocalized: japanese: アスディバインディオス -'1015580': +"1015580": installDir: Jungle Z launch: - config: oslist: windows executable: JungleZ.exe type: default -'1015610': +"1015610": installDir: THE LAST PLAYER launch: - config: @@ -5687,29 +5649,29 @@ description: THE LAST PLAYER executable: TheLastPlayer.exe type: vr -'1015620': {} -'1015650': +"1015620": {} +"1015650": installDir: VRMuseum launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch on SteamVR executable: VRMuseum_SteamVR.exe type: vr -'1015660': +"1015660": installDir: Hentai Shooter 2 World Tour launch: - executable: game.exe type: none -'1015700': +"1015700": installDir: Land Of The Void launch: - config: oslist: windows executable: LOV_LA.exe type: default -'1015710': +"1015710": installDir: Holy Road launch: - config: @@ -5719,7 +5681,7 @@ nameLocalized: schinese: 少女之路 tchinese: 少女之路 -'1015720': +"1015720": installDir: Alternate DiMansion Diary launch: - config: @@ -5729,7 +5691,7 @@ nameLocalized: schinese: 异次元屋敷怪异录 tchinese: 異次元屋敷怪異錄 -'1015730': +"1015730": installDir: Apostle launch: - executable: Game.exe @@ -5738,7 +5700,7 @@ japanese: 福音のアパスル schinese: 福音的使徒 tchinese: 福音的使徒 -'1015750': +"1015750": installDir: Escape from Fortress Lugohm launch: - config: @@ -5748,7 +5710,7 @@ nameLocalized: schinese: 逃离鲁格姆要塞 tchinese: 逃離魯格姆要塞 -'1015770': +"1015770": installDir: Tina Swordswoman of the Scarlet Prison launch: - config: @@ -5758,7 +5720,7 @@ nameLocalized: schinese: 深红之狱的女剑士 - 蒂娜 tchinese: 深紅之獄的女劍士 - 蒂娜 -'1015790': +"1015790": installDir: Dark Hero Party launch: - executable: Game.exe @@ -5767,7 +5729,7 @@ japanese: 外道勇者一行 schinese: 外道勇者一行 tchinese: 外道勇者一行 -'1015800': +"1015800": installDir: Ordeal of Princess Eris launch: - executable: Game.exe @@ -5775,7 +5737,7 @@ nameLocalized: schinese: 亡国公主爱丽丝 tchinese: 亡國公主愛麗絲 -'1015820': +"1015820": installDir: Deadly Kingdom launch: - config: @@ -5784,21 +5746,21 @@ type: default - config: oslist: macos - executable: Deadly Kingdom.app\\Contents\\MacOS\\Deadly Kingdom + executable: "Deadly Kingdom.app\\\\Contents\\\\MacOS\\\\Deadly Kingdom" type: default - config: oslist: linux executable: Deadly Kingdom.x86_64 type: default -'1015830': +"1015830": installDir: DreamEater launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: DreamEater.exe type: default -'1015890': +"1015890": installDir: TASOMACHI launch: - executable: tasomachi.exe @@ -5807,23 +5769,23 @@ japanese: 黄昏ニ眠ル街 schinese: 黄昏沉眠街 tchinese: 黄昏沉眠街 -'1015930': +"1015930": installDir: BloodRageDigitalEdition launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: BloodRage.exe type: default - config: oslist: macos - executable: BloodRage.app\\Contents\\MacOS\\BloodRage + executable: "BloodRage.app\\\\Contents\\\\MacOS\\\\BloodRage" type: default -'1015940': +"1015940": installDir: Welcome to Elk launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Elk Demo executable: Welcome to Elk.exe @@ -5833,25 +5795,25 @@ executable: Welcome to Elk.app type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: Welcome to Elk.exe -'1016010': +"1016010": installDir: W4RR-io-RS Descent launch: - config: oslist: windows executable: W4RR-io-RS~Descent~.exe type: default -'1016020': {} -'1016100': +"1016020": {} +"1016100": installDir: 3rd Invasion - Zombies vs. Steel launch: - config: oslist: windows - executable: 3rdInvasion\\3rd Invasion - Zombies vs Steel.exe + executable: "3rdInvasion\\\\3rd Invasion - Zombies vs Steel.exe" type: default -'1016110': +"1016110": installDir: SelfReliance launch: - config: @@ -5862,7 +5824,7 @@ oslist: macos executable: SelfReliance.app type: default -'1016120': +"1016120": installDir: PGA TOUR 2K21 launch: - config: @@ -5870,27 +5832,27 @@ description: Launch executable: golf.exe type: none -'1016180': +"1016180": installDir: Terror of Hemasaurus launch: - executable: TerrorOfHemasaurus.exe type: default nameLocalized: schinese: 暴走恐龙 Terror of Hemasaurus -'1016250': +"1016250": installDir: 100$ launch: - executable: game.exe type: none -'1016260': +"1016260": installDir: Magic Combat VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: MultiVRGame.exe type: openvroverlay -'1016330': +"1016330": installDir: BotWar launch: - config: @@ -5903,46 +5865,44 @@ type: default - config: oslist: macos - executable: Contents\\MacOS\\JavaAppLauncher + executable: "Contents\\\\MacOS\\\\JavaAppLauncher" type: default -'1016350': +"1016350": installDir: Land of Dread launch: - executable: Land of Dread.exe type: none -'1016360': +"1016360": installDir: PERISH launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: EOSBootstrapper.exe type: default - - arguments: '-dx11' + - arguments: "-dx11" config: - osarch: '64' + osarch: "64" oslist: windows description: PERISH (DirectX 11) - description_loc: - english: PERISH (DirectX 11) executable: EOSBootstrapper.exe type: option1 -'1016390': +"1016390": installDir: Perspectives Paradise launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Marshall.exe type: vr -'1016420': +"1016420": installDir: Tenebrous Dungeon launch: - config: oslist: windows executable: Tenebrous Dungeon.exe type: default -'1016430': +"1016430": installDir: Tokyo Snap launch: - config: @@ -5954,16 +5914,16 @@ executable: TokyoSnap.app type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: TokyoSnap.x86_64 type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: TokyoSnap.x86 type: none -'1016600': +"1016600": installDir: Raksasi launch: - config: @@ -5980,14 +5940,14 @@ russian: Дьяволоборец Ракшаси schinese: 斩妖Raksasi tchinese: 斬妖Raksasi -'1016610': +"1016610": installDir: Four-color Fantasy launch: - config: oslist: windows executable: Four-color Fantasy.exe type: default -'1016630': +"1016630": installDir: Drag Star launch: - config: @@ -6002,57 +5962,57 @@ oslist: linux executable: DragStar type: none -'1016650': +"1016650": installDir: Hentai balls v3 launch: - executable: Eroge Balls v3.exe type: none -'1016660': +"1016660": installDir: Age Of Omens launch: - config: oslist: windows executable: Groundbreak.exe type: none -'1016690': +"1016690": installDir: DUST-UP launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: DUST-UP.exe type: default - - arguments: '-lang=english' + - arguments: "-lang=english" config: - osarch: '64' + osarch: "64" oslist: windows description: DUST-UP in English executable: DUST-UP.exe type: option1 - - arguments: '-lang=russian' + - arguments: "-lang=russian" config: - osarch: '64' + osarch: "64" oslist: windows description: DUST-UP на русском языке executable: DUST-UP.exe type: option1 - - arguments: '-lang=schinese' + - arguments: "-lang=schinese" config: - osarch: '64' + osarch: "64" oslist: windows description: DUST-UP in Simplified Chinese (by Jether) executable: DUST-UP.exe type: option1 - - arguments: '-lang=custom' + - arguments: "-lang=custom" config: - osarch: '64' + osarch: "64" oslist: windows description: "\t Custom (localization testing only)" executable: DUST-UP.exe type: option1 nameLocalized: schinese: DUST-UP 人偶格斗 -'1016700': +"1016700": installDir: boybeatsworld launch: - config: @@ -6061,24 +6021,24 @@ type: default - config: oslist: macos - executable: mac_x86.app\\Contents\\MacOS\\mac_x86 + executable: "mac_x86.app\\\\Contents\\\\MacOS\\\\mac_x86" type: none - config: oslist: linux executable: BOY BEATS WORLD.x86_64 type: default -'1016710': +"1016710": installDir: Balanced Politics Simulator launch: - config: oslist: windows executable: Balanced Politics Simulator.exe type: none -'1016720': +"1016720": installDir: Save Koch launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Save Koch.exe type: default @@ -6087,11 +6047,11 @@ executable: Save Koch.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Save Koch type: default -'1016730': +"1016730": installDir: Deck of Ashes launch: - config: @@ -6102,26 +6062,26 @@ oslist: macos executable: Deck of Ashes.app type: none -'1016740': +"1016740": installDir: God Monster launch: - config: oslist: windows executable: xjqx.exe type: default -'1016750': +"1016750": installDir: TRACKER launch: - config: oslist: windows executable: TRACKER.exe type: none -'1016760': +"1016760": installDir: Citizens of Space launch: - executable: Citizens of Space.exe type: none -'1016770': +"1016770": installDir: Interrogation launch: - config: @@ -6129,7 +6089,7 @@ executable: Interrogation.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Interrogation.x86_64 type: default @@ -6137,70 +6097,68 @@ oslist: macos executable: Interrogation.app/Contents/MacOS/Interrogation type: default -'1016780': {} -'1016790': +"1016780": {} +"1016790": installDir: West of Dead launch: - executable: WestOfDead.exe type: none -'1016800': +"1016800": installDir: Chernobylite launch: - executable: ChernobylGame.exe type: default - - arguments: '-dx12' + - arguments: "-dx12" description: Chernobylite (DirectX 12) - description_loc: - english: Chernobylite (DirectX 12) executable: ChernobylGame.exe type: option1 -'1016830': {} -'1016850': +"1016830": {} +"1016850": installDir: TheEnthrallingRealms2 launch: - config: oslist: windows executable: AlchemistsTale.exe type: none -'1016860': +"1016860": installDir: Boiling Steel launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: HS.exe type: vr - config: - osarch: '64' + osarch: "64" oslist: windows executable: HS.exe type: othervr -'1016890': +"1016890": installDir: Arch Drift launch: - config: oslist: windows executable: Arch Drift.exe type: default -'1016920': +"1016920": installDir: Unrailed launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: UnrailedGame.exe type: default - arguments: china config: betakey: isbn - osarch: '64' + osarch: "64" oslist: windows description: Unrailed! China executable: UnrailedGame.exe type: option1 - config: oslist: windows - ownsdlc: '1150940' + ownsdlc: "1150940" description: Bonus Content executable: open_bonus_win.bat type: none @@ -6210,26 +6168,24 @@ type: none - config: oslist: linux - executable: ./UnrailedPacker.linux + executable: "./UnrailedPacker.linux" type: none - config: oslist: macos - ownsdlc: '1150940' + ownsdlc: "1150940" description: Bonus Content - description_loc: - english: Bonus Content executable: open_bonus_osx.sh - config: oslist: linux - ownsdlc: '1150940' + ownsdlc: "1150940" description: Bonus Content executable: open_bonus_lin.sh type: none -'1016930': +"1016930": installDir: The Great Perhaps launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TheGreatPerhaps.exe type: default @@ -6238,29 +6194,29 @@ executable: TheGreatPerhaps.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: TheGreatPerhaps.x86_64 type: default -'1016940': +"1016940": installDir: The Otterman Empire launch: - config: oslist: windows - executable: WindowsNoEditor\\TheOttermanEmpire.exe + executable: "WindowsNoEditor\\\\TheOttermanEmpire.exe" type: default -'1016950': +"1016950": installDir: Blood Bowl 3 launch: - - arguments: '-SaveToUserDir' + - arguments: "-SaveToUserDir" executable: BB3.exe type: default - arguments: BB3 config: betakey: editor - executable: Engine\\Binaries\\Win64\\UE4Editor.exe + executable: "Engine\\\\Binaries\\\\Win64\\\\UE4Editor.exe" type: editor -'1016960': +"1016960": installDir: Super Neptunia RPG launch: - config: @@ -6270,7 +6226,7 @@ nameLocalized: japanese: 勇者ネプテューヌ tchinese: 勇者戰機少女 -'1016970': +"1016970": installDir: Ellen and the Degenerates RPG launch: - config: @@ -6281,15 +6237,15 @@ oslist: windows executable: Game.exe type: default -'1016980': +"1016980": installDir: Pirates of the Asteroid Belt launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: PotAB.exe type: vr -'10170': +"10170": installDir: Wolfenstein launch: - executable: sp.bat @@ -6297,112 +6253,112 @@ executable: mp.bat - description: Launch Wolfenstein Server executable: server.bat -'1017080': +"1017080": installDir: RWBY Deck Builder launch: - config: oslist: windows executable: rwby.exe type: default -'1017100': +"1017100": installDir: Territory Idle launch: - config: oslist: windows executable: game.exe type: none -'1017130': +"1017130": installDir: Ikao The lost souls launch: - config: oslist: windows executable: IKAO The lost souls.exe type: default -'1017160': +"1017160": installDir: Gearshifters launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Gearshifters.exe type: default -'1017180': +"1017180": installDir: The Long Drive launch: - config: oslist: windows executable: TheLongDrive.exe type: default -'1017240': +"1017240": installDir: DEEP HOLE launch: - config: oslist: windows executable: DEEPHOLE.exe type: default -'1017270': +"1017270": installDir: TridentBarrage launch: - config: oslist: windows executable: TridentBarrage.exe type: default -'1017330': {} -'1017350': +"1017330": {} +"1017350": installDir: aMAZE St.Patrick launch: - config: oslist: windows executable: aMAZE St.Patrick.exe type: default -'1017360': +"1017360": installDir: IgKnight Golf Defender launch: - config: oslist: windows - executable: .\\windows_content\\IgKnightGolfRange.exe + executable: ".\\\\windows_content\\\\IgKnightGolfRange.exe" type: vr -'1017370': +"1017370": installDir: Dangerous Orbit launch: - config: oslist: windows executable: DangerousOrbit.exe type: default -'1017380': +"1017380": installDir: SkyLegend launch: - executable: Game.exe type: default -'1017410': +"1017410": installDir: Tetra Project launch: - executable: TetraProject.exe type: none nameLocalized: schinese: 原石计划 -'1017440': +"1017440": installDir: Vacation Adventures Cruise Director launch: - executable: cruiseDirector.exe type: none -'1017480': +"1017480": installDir: WarGround launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: WarGround_Demo.exe type: default -'1017490': +"1017490": installDir: Mortadelo y Filemón La banda de Corvino launch: - config: oslist: windows executable: La Banda de Corvino.bat type: default -'1017540': {} -'1017560': +"1017540": {} +"1017560": installDir: Falling Bullets launch: - config: @@ -6411,41 +6367,41 @@ type: default - config: oslist: macos - executable: Contents\\MacOS\\FallingBullets_MacOS + executable: "Contents\\\\MacOS\\\\FallingBullets_MacOS" type: default - config: oslist: linux executable: FallingBullets_Linux.x86 type: default -'1017580': +"1017580": installDir: The explorer of night launch: - config: oslist: windows executable: the_explorer_of_night.exe type: default -'1017590': {} -'1017600': +"1017590": {} +"1017600": installDir: Sophica Temples Of Mystery launch: - config: oslist: windows executable: Sophica.exe type: default -'1017610': +"1017610": installDir: Butterfly launch: - executable: game.exe type: none -'1017630': +"1017630": installDir: Robot King Part 2 Boss Battles launch: - config: oslist: windows executable: RobotKing2.exe type: none -'1017650': - installDir: It's a Long Way To the Top (If You Wanna Be a CEO) +"1017650": + installDir: "It's a Long Way To the Top (If You Wanna Be a CEO)" launch: - config: oslist: windows @@ -6459,22 +6415,22 @@ oslist: linux executable: longway.x86_64 type: default -'1017660': - installDir: Don't Go into the Woods +"1017660": + installDir: "Don't Go into the Woods" launch: - config: oslist: windows executable: DGITW.exe type: default -'1017670': +"1017670": installDir: New World Horizon launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: \\WindowsNoEditor\\newworld.exe + executable: "\\\\WindowsNoEditor\\\\newworld.exe" type: none -'1017690': +"1017690": installDir: elanvital launch: - config: @@ -6483,9 +6439,9 @@ type: default - config: oslist: macos - executable: mac_201917_95457\\elanedit.app + executable: "mac_201917_95457\\\\elanedit.app" type: default -'1017750': +"1017750": installDir: Jump Doper launch: - config: @@ -6497,33 +6453,33 @@ executable: JumpDoper.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: JumpDoper.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: JumpDoper.x86 type: default -'1017760': {} -'1017770': {} -'1017780': +"1017760": {} +"1017770": {} +"1017780": installDir: Hammer&AnvilVR launch: - config: oslist: windows executable: hammer&anvilVR.exe type: vr -'1017800': +"1017800": installDir: AirShock launch: - config: oslist: windows executable: AirShock.exe type: default -'1017860': {} -'1017880': +"1017860": {} +"1017880": installDir: The Dark Side launch: - config: @@ -6532,34 +6488,34 @@ type: default nameLocalized: russian: Темная сторона -'1017900': +"1017900": installDir: AoEDE launch: - config: - betakey: 'tantalus_nightly,tantalus_final,tantalus_beta_release,tantalus_beta_final,closed-beta' - osarch: '64' + betakey: "tantalus_nightly,tantalus_final,tantalus_beta_release,tantalus_beta_final,closed-beta" + osarch: "64" oslist: windows description: Tantalus RelicLink Build executable: AoEDE_s.exe type: default - config: - betakey: 'darwin_1,darwin_2,darwin_3,darwin_4,darwin_5' - osarch: '64' + betakey: "darwin_1,darwin_2,darwin_3,darwin_4,darwin_5" + osarch: "64" oslist: windows description: FE SteamPort Build executable: AoEDE_Release_D3D11.exe type: default - config: betakey: tantalus_fe - osarch: '64' + osarch: "64" oslist: windows description: Tantalus RelicLink Build (old) executable: AoEDE_Steam.exe type: default -'1017940': +"1017940": installDir: King of Texas launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows executable: nw.exe @@ -6568,8 +6524,8 @@ oslist: macos executable: nwjs.app type: none -'1017990': {} -'10180': +"1017990": {} +"10180": installDir: Call of Duty Modern Warfare 2 launch: - config: @@ -6579,38 +6535,36 @@ oslist: macos description: Single Player executable: COD_MW2_SP.app -'1018000': +"1018000": installDir: Arcade Classics Anniversary Collection launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: AA_AC_ArcadeClassics.exe type: default - - arguments: '-deletesavedata' + - arguments: "-deletesavedata" config: - osarch: '64' + osarch: "64" oslist: windows description: delete savedata (caution!) - description_loc: - english: delete savedata (caution!) executable: AA_AC_ArcadeClassics.exe type: none -'1018010': +"1018010": installDir: Castlevania Anniversary Collection launch: - config: oslist: windows executable: game.exe type: default -'1018020': +"1018020": installDir: Contra Anniversary Collection launch: - config: oslist: windows executable: game.exe type: default -'1018040': +"1018040": installDir: Dirty Education launch: - config: @@ -6627,47 +6581,47 @@ oslist: macos executable: DirtyEducation.app type: none -'1018060': +"1018060": installDir: The Mercenary Rise launch: - config: oslist: windows executable: 佣兵崛起.exe type: default -'1018080': +"1018080": installDir: Sneaker launch: - executable: Sneaker.exe type: default -'1018090': - installDir: '2100' +"1018090": + installDir: "2100" launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: 2100.exe type: default -'1018110': +"1018110": installDir: DEAD launch: - config: oslist: windows executable: DEAD.exe type: none -'1018120': {} -'1018130': +"1018120": {} +"1018130": installDir: Castle Break launch: - config: oslist: windows executable: CastleBreak.exe type: none -'1018160': +"1018160": installDir: MXGP 2019 - The Official Motocross Videogame launch: - executable: mxgp5.exe type: none -'1018170': +"1018170": installDir: Dawn of the Lost Castle launch: - config: @@ -6676,36 +6630,36 @@ type: default - config: oslist: macos - executable: Contents\\MacOS\\Dawn of the Lost Castle + executable: "Contents\\\\MacOS\\\\Dawn of the Lost Castle" type: default -'1018220': {} -'1018240': +"1018220": {} +"1018240": installDir: Hooklings launch: - config: oslist: windows executable: Hooklings.exe type: default -'1018270': +"1018270": installDir: Anthropomachy launch: - config: oslist: windows executable: Anthropomachy.exe type: none -'1018380': +"1018380": installDir: 怪獣綺譚 朧十夜 空狐万華鏡 launch: - config: oslist: windows executable: kuukomangekyou.exe type: default -'1018420': +"1018420": installDir: uuu ska so smislom launch: - executable: acs.exe type: none -'1018560': +"1018560": installDir: Emoji Charades launch: - config: @@ -6716,15 +6670,15 @@ oslist: macos executable: EmojiCharades.app/Contents/MacOS/EmojiCharades type: default -'1018580': {} -'1018610': +"1018580": {} +"1018610": installDir: Dawn Break -Origin- launch: - config: oslist: windows executable: game.exe type: none -'1018640': +"1018640": installDir: Pixel Happy Game Girls launch: - config: @@ -6740,52 +6694,50 @@ executable: Pixel-Happy-Game-Girls.app type: default - config: - osarch: '32' + osarch: "32" executable: Pixel-Happy-Game-Girls-32.exe type: default -'1018700': +"1018700": installDir: Kabitis 2 launch: - - executable: Kabitis 2 Fire Sword\\Kabitis 2 Fire Sword.exe + - executable: "Kabitis 2 Fire Sword\\\\Kabitis 2 Fire Sword.exe" type: default - config: oslist: windows - description: 'Kabits ' - description_loc: - english: 'Kabits ' - executable: Kabitis\\Kabitis.exe + description: "Kabits " + executable: "Kabitis\\\\Kabitis.exe" type: option2 -'1018720': +"1018720": installDir: X-POINT launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: X_POINT.exe type: default -'1018730': +"1018730": installDir: Tobit launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Tobit.exe type: none -'1018750': +"1018750": installDir: Rubble Rush launch: - config: oslist: windows executable: RubbleRush.exe type: none -'1018770': +"1018770": installDir: Lizardquest launch: - config: oslist: windows executable: lizard.exe type: default -'1018800': +"1018800": installDir: DEEEER Simulator launch: - config: @@ -6794,7 +6746,7 @@ type: default nameLocalized: brazilian: DEEEER Simulator Um Jogo de Veado Corriqueiro do Cotidiano - english: 'DEEEER Simulator: Your Average Everyday Deer Game' + english: "DEEEER Simulator: Your Average Everyday Deer Game" french: DEEEER Simulator Votre Simulateur de Vie Quotidienne de Cerf german: DEEEER Simulator Dein durchschnittliches alltägliches Hirschspiel italian: DEEEER Simulator Il Tuo Tipico Simulatore di Cervo @@ -6804,29 +6756,29 @@ schinese: 非常普通的鹿 DEEEER Simulator spanish: DEEEER Simulator Tu juego de ciervos cotidiano estándar tchinese: 非常普通的鹿 DEEEER Simulator -'1018810': +"1018810": installDir: DrumpfyWalls launch: - config: oslist: windows executable: DrumpfyWalls.exe type: none -'1018820': +"1018820": installDir: Fleet Scrapper launch: - config: oslist: windows executable: FleetScrapper.exe type: none -'1018830': +"1018830": installDir: Element TD 2 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Element TD 2.exe type: default -'1018850': +"1018850": installDir: Smile For Me launch: - config: @@ -6835,22 +6787,22 @@ type: default - config: oslist: macos - executable: SmileForMe.app\\Contents\\MacOS\\SmileForMe + executable: "SmileForMe.app\\\\Contents\\\\MacOS\\\\SmileForMe" type: default -'1018860': +"1018860": installDir: Bombing Quest launch: - config: oslist: windows executable: Bombing Quest.exe type: default -'1018870': +"1018870": installDir: VR Racing launch: - executable: VR_Racing.exe type: vr -'1018900': - installDir: Let's Learn Japanese! Katakana +"1018900": + installDir: "Let's Learn Japanese! Katakana" launch: - config: oslist: windows @@ -6859,41 +6811,41 @@ nameLocalized: latam: ¡Aprendamos Japonés! Katakana spanish: ¡Aprendamos Japonés! Katakana -'1018930': +"1018930": installDir: SCP】器関ノ彷徨 -The will of a single Tale- 第1部 launch: - config: oslist: windows executable: game.exe type: none -'1018960': +"1018960": installDir: Thugs Law launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ThugsLaw.exe type: default nameLocalized: brazilian: Lei dos Bandidos -'1018980': +"1018980": installDir: VKT Prime System Crash launch: - config: oslist: windows - executable: PrimeSystemCrash\\PrimeSystemCrash.exe + executable: "PrimeSystemCrash\\\\PrimeSystemCrash.exe" type: default - config: oslist: linux - executable: PrimeSystemCrash\\PrimeSystemCrash.sh + executable: "PrimeSystemCrash\\\\PrimeSystemCrash.sh" type: default - config: oslist: macos - executable: PrimeSystemCrash\\PrimeSystemCrash.app + executable: "PrimeSystemCrash\\\\PrimeSystemCrash.app" type: default nameLocalized: french: Crash du Systeme Maitre VKT -'1018990': +"1018990": installDir: Cherry Creek launch: - config: @@ -6904,14 +6856,14 @@ oslist: macos executable: CherryCreek.app type: default -'1019020': - installDir: The Abbey - Director's cut +"1019020": + installDir: "The Abbey - Director's cut" launch: - config: oslist: windows executable: The Abbey.exe type: default -'1019030': +"1019030": installDir: Project Centauri launch: - executable: Project-A-Centauri.exe @@ -6920,119 +6872,119 @@ betakey: beta executable: ProjectCentauri.exe type: vr -'1019040': +"1019040": installDir: Smash team launch: - config: oslist: windows executable: Smash team.exe type: none -'1019060': +"1019060": installDir: 5.84 Wing launch: - config: oslist: windows executable: 5.84 Wing.exe type: none -'1019080': +"1019080": installDir: The Toymakers Apprentice launch: - config: oslist: windows executable: ToyMakersApprentice.exe type: vr -'1019090': {} -'1019150': +"1019090": {} +"1019150": installDir: Apolune launch: - description: Play Apolune Fullscreen Native Resolution executable: Apolune.exe type: none - - arguments: '-1080p' + - arguments: "-1080p" description: Apolune 1080p Fullscreen executable: Apolune.exe type: option1 - - arguments: '-cheating' - description: Cheater's Paradise + - arguments: "-cheating" + description: "Cheater's Paradise" executable: Apolune.exe type: option2 - - arguments: '-cheating -1080p' + - arguments: "-cheating -1080p" description: Cheat in 1080p executable: Apolune.exe type: option3 - - arguments: '-windowed' + - arguments: "-windowed" description: Play Apolune Windowed Native executable: Apolune.exe type: none - - arguments: '-windowed -1080p' + - arguments: "-windowed -1080p" description: Windowed 1080p executable: Apolune.exe type: none - - arguments: '-windowed -1080p -cheating' + - arguments: "-windowed -1080p -cheating" description: Windowed 1080p Cheats Enabled executable: Apolune.exe type: none - - arguments: '-windowed -cheating' + - arguments: "-windowed -cheating" description: Windowed Native Cheats Enabled executable: Apolune.exe type: none - - arguments: '-720p' + - arguments: "-720p" description: 720p Lo-fi Version executable: Apolune.exe type: none - - arguments: '-720p -windowed' + - arguments: "-720p -windowed" description: 720p Lo-fi Version in a Window executable: Apolune.exe type: none - executable: data/RTFM.bat type: manual -'1019170': +"1019170": installDir: Umbrella launch: - executable: Umbrella.exe type: default -'1019180': +"1019180": installDir: KONGLONG launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: KongLong.exe type: vr -'1019230': +"1019230": installDir: Detective Game launch: - config: oslist: windows executable: Dandytective.exe type: vr -'1019240': +"1019240": installDir: Nippon Ecchi Jigsaw launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ecchijigsaw.exe type: default -'1019250': +"1019250": installDir: World War II TCG launch: - config: oslist: macos - executable: WWIITCG.app\\Contents\\MacOS\\WWIITCG + executable: "WWIITCG.app\\\\Contents\\\\MacOS\\\\WWIITCG" type: default - config: oslist: windows executable: WWIITCG/WWIITCG.exe type: default -'1019260': +"1019260": installDir: MicroMayhem launch: - config: oslist: windows executable: MicroMayhem.exe type: default -'1019270': +"1019270": installDir: Strangers of the Power 3 launch: - config: @@ -7047,7 +6999,7 @@ oslist: macos executable: Mac.app type: default -'1019310': +"1019310": installDir: VirtuaVerse launch: - config: @@ -7059,46 +7011,46 @@ executable: VirtuaVerse.app/Contents/MacOS/VirtuaVerse type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: VirtuaVerse.x86_64 type: none -'1019340': +"1019340": installDir: 7776 II Dwarven Greed launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Game7776.exe type: default - arguments: OpenVR config: - osarch: '64' + osarch: "64" oslist: windows executable: Game7776.exe type: vr nameLocalized: - russian: '7776 II: Гномья жадность' -'1019370': + russian: "7776 II: Гномья жадность" +"1019370": installDir: Radioactive launch: - config: oslist: windows executable: Radioactive.exe type: default -'1019400': +"1019400": installDir: BeatShips launch: - executable: BeatShips.exe type: default -'1019420': +"1019420": installDir: Horny Girl launch: - config: oslist: windows executable: Horny Girl.exe type: default -'1019450': +"1019450": installDir: Table Manners launch: - config: @@ -7108,7 +7060,7 @@ nameLocalized: schinese: 餐桌物语 / Table Manners tchinese: 餐桌物語 / Table Manners -'1019500': +"1019500": installDir: SuperBeam launch: - config: @@ -7116,21 +7068,21 @@ description: Launch executable: SuperBeam.exe type: vr -'1019550': +"1019550": installDir: Thief Simulator VR launch: - config: oslist: windows executable: ThiefSimulatorVR.exe type: vr -'1019580': +"1019580": installDir: Mortadelo y Filemón Una aventura de cine - Edición especial launch: - config: oslist: windows executable: MyF.exe type: default -'1019590': +"1019590": installDir: Lovely Planet 2 launch: - config: @@ -7145,47 +7097,47 @@ oslist: linux executable: AprilSkies.x86_64 type: default -'1019600': {} -'1019630': +"1019600": {} +"1019630": installDir: ECCHI NEKO GIRLS PUZZLE launch: - config: oslist: windows executable: ECCHI NEKO GIRLS PUZZLE.exe type: default -'1019690': +"1019690": installDir: Ghost Buster 3D launch: - config: oslist: windows executable: Ghost Buster 3D.exe type: none -'1019700': +"1019700": installDir: Fighting Spree 3D launch: - config: oslist: windows executable: Fighting Spree 3D.exe type: none -'1019710': +"1019710": installDir: Repel Aliens 3D launch: - config: oslist: windows executable: Repel Aliens 3D.exe type: none -'1019720': +"1019720": installDir: Balloon Fiesta 3D launch: - config: oslist: windows executable: Balloon Fiesta 3D.exe type: none -'1019730': +"1019730": installDir: Chipmonk! launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Chipmonk! win64/Chipmonk!.exe type: default @@ -7194,7 +7146,7 @@ executable: Chipmonk!.app/Contents/MacOS/Chipmonk! type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: Chipmonk! win32/Chipmonk!.exe type: default @@ -7202,23 +7154,23 @@ oslist: linux executable: Chipmonk! linux/Chipmonk! type: default -'1019740': +"1019740": installDir: KoronaNemesis launch: - config: oslist: windows - executable: KoronaNemesis\\KoronaNemesis.exe + executable: "KoronaNemesis\\\\KoronaNemesis.exe" type: default -'1019790': +"1019790": installDir: Supernatural Super Squad Fight! launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: SSSFight.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: SSSFight.exe type: default @@ -7226,48 +7178,48 @@ oslist: macos executable: SSS_Fight.app type: default - - arguments: '-screen-fullscreen 0' + - arguments: "-screen-fullscreen 0" config: - osarch: '64' + osarch: "64" oslist: linux executable: SSSFight.x86_64 type: default -'1019820': +"1019820": installDir: Galaxicus launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: Launcher\\CrimsonLeafLauncher.exe + executable: "Launcher\\\\CrimsonLeafLauncher.exe" type: default - config: - osarch: '64' + osarch: "64" oslist: linux - executable: Launcher\\CrimsonLeafLauncher.x86_64 + executable: "Launcher\\\\CrimsonLeafLauncher.x86_64" type: default - config: oslist: macos - executable: CrimsonLeafLauncher.app\\Contents\\MacOS\\CrimsonLeafLauncher + executable: "CrimsonLeafLauncher.app\\\\Contents\\\\MacOS\\\\CrimsonLeafLauncher" type: default -'1019910': +"1019910": installDir: Cube Man launch: - config: oslist: windows executable: Cube Man Oficial.exe type: default -'1019920': +"1019920": installDir: Gensokyo Defenders launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Window executable: TohoATD3D.exe type: none - - arguments: '-fullscreen' + - arguments: "-fullscreen" config: - osarch: '64' + osarch: "64" oslist: windows description: Fullscreen executable: TohoATD3D.exe @@ -7276,27 +7228,27 @@ japanese: 幻想郷ディフェンダーズ schinese: 幻想乡守护者 tchinese: 幻想鄉守護者 -'1019940': +"1019940": installDir: Race for Tuning launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: rft.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: rft.exe type: default -'1020010': +"1020010": installDir: Fantasy Island launch: - config: oslist: windows executable: FantasyIsland.exe type: default -'1020030': +"1020030": installDir: Quantum Suicide launch: - config: @@ -7311,15 +7263,15 @@ oslist: linux executable: QuantumSuicide.sh type: none -'1020050': +"1020050": installDir: Startup Valley Adventure - Episode 1 launch: - config: oslist: windows executable: Startup Valley Adventure.exe type: none -'1020060': {} -'1020080': +"1020060": {} +"1020080": installDir: Alicia Quatermain 4 Da Vinci and the Time Machine launch: - config: @@ -7330,7 +7282,7 @@ oslist: macos executable: AliciaQuatermain4_STEAM_EN.app type: none -'1020090': +"1020090": installDir: Overcome launch: - config: @@ -7340,31 +7292,31 @@ type: default - config: oslist: macos - executable: Overcome.app\\Contents\\MacOS\\Overcome + executable: "Overcome.app\\\\Contents\\\\MacOS\\\\Overcome" type: default -'1020120': +"1020120": installDir: A Giant Problem launch: - config: oslist: windows executable: AGiantProblem.exe type: vr -'1020180': {} -'1020210': +"1020180": {} +"1020210": installDir: LAB2-UndeR GrounD- launch: - config: oslist: windows executable: LAB2UG.exe type: default -'1020250': +"1020250": installDir: FiLab launch: - config: oslist: windows executable: FiLab.exe type: vr -'1020270': +"1020270": installDir: Demon Hunter 5 Ascendance launch: - config: @@ -7373,13 +7325,13 @@ executable: DemonHunter5.exe type: none - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: DemonHunter5_i386 type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: DemonHunter5_amd64 @@ -7389,7 +7341,7 @@ description: Launch executable: mac_steam.app/Contents/MacOS/mac_steam type: none -'1020310': +"1020310": installDir: Gravity Heroes launch: - config: @@ -7397,7 +7349,7 @@ oslist: windows executable: Gravity Heroes.exe type: default -'1020330': +"1020330": installDir: Khan VS Kahn launch: - config: @@ -7412,55 +7364,55 @@ oslist: linux executable: kvk.x86_64 type: default -'1020340': +"1020340": installDir: Audica launch: - config: oslist: windows executable: Audica.exe type: vr - - arguments: '-vrmode openvr' + - arguments: "-vrmode openvr" config: oslist: windows description: with OpenVR (for LIV with Rift) executable: Audica.exe type: vr -'1020360': +"1020360": installDir: Wand Wars Rise launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: WandWarsPC.exe type: default -'1020390': +"1020390": installDir: Beat Blaster launch: - executable: Beat Blaster.exe type: openvroverlay -'1020410': +"1020410": installDir: Narco Strike launch: - config: oslist: windows executable: Launcher.exe type: default -'1020420': +"1020420": installDir: SnowriftersVEX launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SR_VEX.exe type: vr -'1020430': +"1020430": installDir: Joe Jump launch: - config: oslist: windows executable: Joe Jump.exe type: none -'1020440': +"1020440": installDir: Doodle Creatures launch: - config: @@ -7468,7 +7420,7 @@ executable: DoodleCreatures.exe type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: DoodleGame type: none @@ -7476,14 +7428,14 @@ oslist: macos executable: DoodleCreatures.app type: none -'1020450': +"1020450": installDir: There Will Be Ink launch: - config: oslist: windows executable: ThereWillBeInk.exe type: default -'1020470': +"1020470": installDir: Evoland Legendary Edition launch: - config: @@ -7497,14 +7449,14 @@ oslist: macos executable: osx/run.sh type: none -'1020480': +"1020480": installDir: Nasty launch: - config: oslist: windows executable: Nasty.exe type: default -'1020520': +"1020520": installDir: Hellink launch: - config: @@ -7516,65 +7468,65 @@ executable: Hellink.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Hellink.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Hellink.x86_64 type: default -'1020540': +"1020540": installDir: CONTRA ROGUE CORPS launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: contra_rc.exe type: default nameLocalized: japanese: 魂斗羅 ローグ コープス -'1020560': +"1020560": installDir: Theme Park Worker launch: - config: oslist: windows executable: ThemePark.exe type: default -'1020580': {} -'1020590': +"1020580": {} +"1020590": installDir: Space Pilgrim Academy Reunion launch: - executable: nw.exe type: none -'1020600': +"1020600": installDir: Extreme Truck Simulator launch: - config: oslist: windows executable: Extreme Truck Simulator.exe type: default -'1020610': +"1020610": installDir: Apoapsis launch: - config: oslist: windows executable: ApoapsisFinalV1.exe type: none -'1020640': +"1020640": installDir: R.I.C.A launch: - config: oslist: windows executable: Game.exe type: none -'1020650': +"1020650": installDir: Commando Fodder War Dogs launch: - executable: CFWARDOGS.exe type: none -'1020660': +"1020660": installDir: Wrecked Crash Simulator launch: - config: @@ -7585,8 +7537,8 @@ oslist: macos executable: Wrecked Mac.app type: default -'1020670': {} -'1020730': +"1020670": {} +"1020730": installDir: Dark Bestiary launch: - config: @@ -7601,7 +7553,7 @@ oslist: linux executable: Dark Bestiary.x86_64 type: default -'1020780': +"1020780": installDir: DarkStory Online launch: - arguments: steam @@ -7609,49 +7561,44 @@ oslist: windows executable: DarkStory.exe type: none -'1020790': +"1020790": nameLocalized: koreana: 나루토 X 보루토 나루티밋 스톰 커넥션즈 schinese: NARUTO X BORUTO 火影忍者 终极风暴羁绊 tchinese: NARUTO X BORUTO 火影忍者 終極風暴羈絆 -'1020800': +"1020800": installDir: Car Tune Project launch: - config: oslist: windows - description: 'CAR TUNE: Project' + description: "CAR TUNE: Project" executable: CAR TUNE PROJECT.exe type: default - - arguments: '-workshop' + - arguments: "-workshop" config: betakey: beta - description: 'CAR TUNE: Workshop' + description: "CAR TUNE: Workshop" executable: CAR TUNE PROJECT.exe type: none - - arguments: '-force-d3d12' + - arguments: "-force-d3d12" config: betakey: beta description: DirectX 12 - description_loc: - english: DirectX 12 executable: CAR TUNE PROJECT.exe type: none - - arguments: '-force-vulkan' + - arguments: "-force-vulkan" config: betakey: beta description: Vulkan (Experimental) - description_loc: - english: Vulkan (Experimental) - polish: Vulkan (Eksperymentalny) executable: CAR TUNE PROJECT.exe type: none -'1020810': {} -'1020830': +"1020810": {} +"1020830": installDir: Something is wrong有毛病 launch: - executable: SIW.exe type: default -'1020840': +"1020840": installDir: Tofu Pudding Simulator launch: - config: @@ -7662,22 +7609,22 @@ oslist: macos executable: Tofu_Pudding_Simulator.app type: none -'1020910': +"1020910": installDir: Sefirot Shards launch: - config: oslist: windows executable: Sefirot.exe type: default -'1020930': +"1020930": installDir: SJU launch: - config: oslist: windows executable: SJU.exe type: none -'1020940': - installDir: Owyn's Adventure +"1020940": + installDir: "Owyn's Adventure" launch: - config: oslist: windows @@ -7687,9 +7634,9 @@ - config: oslist: macos description: Run the game - executable: OwynsAdventure.app\\Contents\\MacOS\\OwynsAdventure + executable: "OwynsAdventure.app\\\\Contents\\\\MacOS\\\\OwynsAdventure" type: default -'1020980': +"1020980": installDir: Match Three Pirates! launch: - config: @@ -7700,28 +7647,28 @@ oslist: macos executable: Match_Three_Pirates!_Heir_to_Davy_Jones.app type: default -'1021060': +"1021060": installDir: Brix VR launch: - executable: BrixVR.exe type: vr -'1021070': +"1021070": installDir: Spaceland launch: - config: oslist: windows executable: spaceland.exe type: default -'1021100': +"1021100": installDir: Aircraft Carrier Survival launch: - config: oslist: windows executable: AircraftCarrierSurvival.exe type: default -'1021110': +"1021110": installDir: Luxury House Renovation -'1021120': +"1021120": installDir: PraeBot launch: - config: @@ -7729,45 +7676,45 @@ oslist: windows executable: PraeBot.exe type: default -'1021130': +"1021130": installDir: Trucking launch: - config: oslist: windows executable: Trucking.exe type: none -'1021200': +"1021200": installDir: Column Taker launch: - config: oslist: windows executable: ColumnTaker.exe type: default -'1021220': +"1021220": installDir: The seven deadly seas launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: The seven deadly seas 2D.exe type: default -'1021240': {} -'1021260': +"1021240": {} +"1021260": installDir: Chocolate makes you happy SPD launch: - config: oslist: windows executable: Chocolate makes you happy SPD.exe type: default -'1021290': +"1021290": installDir: CubeRace launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: CubeRace.exe type: default -'1021370': +"1021370": installDir: Slave RPG launch: - config: @@ -7776,43 +7723,43 @@ type: default - config: oslist: macos - executable: slaveRPG.app\\Contents\\MacOS\\slaveRPG + executable: "slaveRPG.app\\\\Contents\\\\MacOS\\\\slaveRPG" type: default - config: oslist: linux executable: slaveRPG.x86_64 type: default -'1021640': +"1021640": installDir: Fold launch: - config: oslist: windows executable: Fold.exe type: default -'1021650': +"1021650": installDir: Perhaps While We Sleep launch: - config: oslist: windows executable: PerhapsWhenWeDream.exe type: none -'1021670': +"1021670": installDir: 机退怪兽 launch: - config: oslist: windows executable: 机退怪兽.exe type: config -'1021680': +"1021680": installDir: Music Escape launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: musicescape executable: Music Escape.exe type: vr -'1021690': +"1021690": installDir: Game Studio Simulator launch: - config: @@ -7820,8 +7767,8 @@ description: release on 3/15 executable: GameMaker.exe type: default -'1021700': {} -'1021770': +"1021700": {} +"1021770": installDir: Wanba Warriors launch: - config: @@ -7830,15 +7777,15 @@ type: default nameLocalized: schinese: 丸霸无双 -'1021780': +"1021780": installDir: The Region launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: The Region.exe type: default -'1021800': +"1021800": installDir: Million Dungeon launch: - config: @@ -7848,42 +7795,42 @@ nameLocalized: english: Million Dungeon schinese: 妙连千军 -'1021820': +"1021820": installDir: Dumb test Check your teammates launch: - executable: Dumb test.exe type: default -'1021840': +"1021840": installDir: Asteroid Hideout launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Asteroid Hideout.exe type: default -'1021860': +"1021860": installDir: Unravel Cyndy launch: - config: oslist: windows executable: Unravel Cyndy.exe type: default -'1021880': +"1021880": installDir: StarWheels launch: - config: oslist: windows executable: StarWheels.exe type: default -'1021890': +"1021890": installDir: HeroSwingVR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: HeroSwingVR type: vr -'1021940': +"1021940": installDir: Space Warfare launch: - config: @@ -7896,20 +7843,20 @@ type: default - config: oslist: macos - executable: SpaceWarfareMac.app\\Contents\\MacOS\\SpaceWarfare + executable: "SpaceWarfareMac.app\\\\Contents\\\\MacOS\\\\SpaceWarfare" type: default -'1021950': +"1021950": installDir: When the Darkness comes launch: - config: oslist: windows executable: WhenTheDarknessComes.exe type: default -'10220': +"10220": installDir: Postal III launch: - executable: p3.exe -'102200': +"102200": installDir: runespelloverture launch: - config: @@ -7918,33 +7865,33 @@ - config: oslist: macos executable: Runespell.app -'1022000': +"1022000": installDir: Lyantei launch: - config: oslist: windows - executable: Lyantei-win\\Lyantei.exe + executable: "Lyantei-win\\\\Lyantei.exe" type: none -'1022010': - installDir: Oliver's Adventures in the Fairyland +"1022010": + installDir: "Oliver's Adventures in the Fairyland" launch: - config: oslist: windows executable: OliversAdventures.exe type: default -'1022040': +"1022040": installDir: Candy Mandy launch: - executable: CandyMandy.exe type: none -'1022130': +"1022130": installDir: CLASH! - Battle Arena launch: - config: oslist: windows executable: Hyper Clash Arena.exe type: default -'1022150': +"1022150": installDir: Bios Ex launch: - config: @@ -7959,34 +7906,34 @@ oslist: linux executable: BiosEX-0.9.20-linux/BiosEx.sh type: none -'1022160': +"1022160": installDir: Rollossus launch: - config: oslist: windows executable: Rollossus.exe type: none -'1022170': +"1022170": installDir: VehiCraft launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: Windows/32 bits/VehiCraft32.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: Windows/64 bits/VehiCraft64.exe type: default -'1022180': +"1022180": installDir: And I Must Scream launch: - config: oslist: windows executable: AndIMustScream.exe type: none -'1022270': +"1022270": installDir: Cartacombs launch: - config: @@ -7997,24 +7944,24 @@ oslist: linux executable: Cartacombs type: default -'1022310': +"1022310": installDir: Warhammer Underworlds Online launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: wuo.exe type: default -'1022320': +"1022320": installDir: Crypto Crisis EE launch: - config: - osarch: '32' + osarch: "32" oslist: linux executable: crypto_crisis.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: crypto_crisis.x86_64 type: default @@ -8026,71 +7973,71 @@ oslist: macos executable: crypto_crisis.app type: default -'1022370': {} -'1022380': +"1022370": {} +"1022380": installDir: Neon Slashers launch: - config: oslist: windows executable: MireSlashers.CrossPlatform.exe type: default -'1022450': +"1022450": installDir: War Selection launch: - - arguments: '1022450' + - arguments: "1022450" config: - osarch: '64' + osarch: "64" oslist: windows executable: SteamLauncher.exe type: default - - arguments: '1022450' + - arguments: "1022450" config: - osarch: '64' + osarch: "64" oslist: linux executable: SteamLauncher type: default -'1022480': +"1022480": installDir: KAMIKO launch: - config: oslist: windows executable: Kamiko.exe type: none -'1022530': +"1022530": installDir: SUBARACITY launch: - config: oslist: windows executable: SubaraCity.exe type: none -'1022550': +"1022550": installDir: Neon Infinity launch: - config: oslist: windows executable: Neon Infinity.exe type: default -'1022600': {} -'1022610': +"1022600": {} +"1022610": installDir: Alchemic DungeonsDX launch: - config: oslist: windows executable: AlchemicDungeons.exe type: default -'1022630': +"1022630": installDir: Tankorama launch: - config: oslist: windows executable: TankoramaTheGame.exe type: default -'1022640': +"1022640": installDir: Lgnorant girl doll launch: - executable: Game.exe type: none -'1022650': +"1022650": installDir: LeonWaan MineSweeper launch: - config: @@ -8101,8 +8048,8 @@ oslist: macos executable: lms.app type: default -'1022670': {} -'1022710': +"1022670": {} +"1022710": installDir: Conglomerate 451 launch: - config: @@ -8117,16 +8064,16 @@ oslist: linux executable: Conglomerate451.x86_64 type: default -'1022740': {} -'1022770': +"1022740": {} +"1022770": installDir: Beyond Enemy Lines Operation Arctic Hawk launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: BeyondEnemyLines.exe type: default -'1022780': +"1022780": installDir: AnimalFightClub launch: - config: @@ -8135,13 +8082,13 @@ type: default - config: oslist: macos - executable: AnimalFightClub_Mac.app\\Contents\\MacOS\\AnimalFightClub_Mac + executable: "AnimalFightClub_Mac.app\\\\Contents\\\\MacOS\\\\AnimalFightClub_Mac" type: default - config: oslist: linux executable: AnimalFightClub.x86 type: default -'1022820': +"1022820": installDir: STEELPAW launch: - config: @@ -8152,131 +8099,131 @@ oslist: macos executable: steelpaw.app type: default -'1022840': +"1022840": installDir: The Adventures of Jason and the Argonauts launch: - config: oslist: windows executable: Jason.exe type: default -'1022860': - installDir: Tuber`s Run +"1022860": + installDir: "Tuber`s Run" launch: - - executable: Tuber`s Run.exe + - executable: "Tuber`s Run.exe" type: default -'1022870': +"1022870": installDir: Luminos launch: - config: oslist: windows executable: Luminos.exe type: default -'1022920': +"1022920": installDir: Two Clusters Kain launch: - config: oslist: windows executable: Game.exe type: none -'1022980': +"1022980": installDir: Ostranauts launch: - config: oslist: windows executable: Ostranauts.exe type: default -'1022990': +"1022990": installDir: Dement launch: - config: oslist: windows executable: Dement.exe type: vr -'10230': - installDir: Dead Mountaineer's Hotel +"10230": + installDir: "Dead Mountaineer's Hotel" launch: - executable: Game.exe -'1023010': +"1023010": installDir: Escargot launch: - config: oslist: windows executable: escargot.exe type: default -'1023020': +"1023020": installDir: Slime Crunch launch: - executable: Slime Crunch.exe type: none -'1023030': +"1023030": installDir: Blood Moon launch: - config: oslist: windows executable: Game.exe type: default -'1023040': +"1023040": installDir: Hockey Camp - Goaltender launch: - executable: HockeyCampGoaltender.exe type: default -'1023060': +"1023060": installDir: Yet Another Survival Game launch: - executable: Yet Another Survival Game.exe type: none -'1023090': +"1023090": installDir: Super Agent Drunk Kent launch: - config: oslist: windows executable: Super Agent Drunk Kent.exe type: none -'1023100': +"1023100": installDir: VCuber launch: - executable: VCuber.exe type: none -'1023110': +"1023110": installDir: Seven Red Lines launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Seven Red Lines.exe type: default -'1023120': {} -'1023130': +"1023120": {} +"1023130": installDir: Defection launch: - config: oslist: windows executable: nrd_project.exe type: default -'1023140': +"1023140": installDir: Artificiality launch: - config: oslist: windows executable: Game.exe type: default -'1023150': +"1023150": installDir: Cyborg Invasion Shooter 3 Savior Of The World launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: CIS3.exe type: default -'1023180': +"1023180": installDir: TanksAndGuns launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TanksAndGuns.exe type: default -'1023280': +"1023280": installDir: Solitaire Bliss Collection launch: - config: @@ -8291,58 +8238,53 @@ oslist: linux executable: Solitaire Bliss Collection.x86_64 type: none -'1023310': +"1023310": installDir: Logical Now! launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Logical Now!.exe type: default -'1023320': +"1023320": installDir: Clown Thug Cop Zombies launch: - config: oslist: windows executable: clownthugcopzombies.exe type: none -'1023370': +"1023370": installDir: HENTAI SUPER GIRL launch: - executable: HENTAI SUPER GIRL.exe type: none -'1023390': +"1023390": installDir: People launch: - executable: People.exe type: default -'1023410': +"1023410": installDir: 3GEEKS launch: - config: oslist: windows - description: >- - The default launch is in French on the dialog box. Remember to select English from the gameplay setting> game - language drop-down menu before clicking save and run to start the game in english. + description: The default launch is in French on the dialog box. Remember to select English from the gameplay setting> game language drop-down menu before clicking save and run to start the game in english. executable: winsetup.exe type: config - config: oslist: windows - description: >- - Launch the demo directly in the default configuration. Choose your language between English or French by - clicking on the appropriate flag and run winsetup.exe instead if you want to change the screen resolution and - various game settings. + description: Launch the demo directly in the default configuration. Choose your language between English or French by clicking on the appropriate flag and run winsetup.exe instead if you want to change the screen resolution and various game settings. executable: 3GEEKS-Adventure.exe type: default -'1023510': +"1023510": installDir: Matanga launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Matanga.exe type: default -'1023550': +"1023550": installDir: Rogue Star Rescue launch: - config: @@ -8354,42 +8296,42 @@ executable: Rogue Star Rescue.exe type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: Rogue Star Rescue type: none -'1023560': +"1023560": installDir: Cornflake Crisis launch: - config: - osarch: '32' + osarch: "32" oslist: windows - executable: win32 good version\\cornflakecrisis.exe + executable: "win32 good version\\\\cornflakecrisis.exe" type: default - config: oslist: macos executable: cornflakecrisis.app type: default - config: - osarch: '64' + osarch: "64" oslist: windows - executable: win64 good version\\cornflakecrisis.exe + executable: "win64 good version\\\\cornflakecrisis.exe" type: default -'1023570': +"1023570": installDir: PUZZLE ANIMALS launch: - config: oslist: windows executable: PUZZLE ANIMALS.exe type: default -'1023610': +"1023610": installDir: Royale Storm Bowling launch: - config: oslist: windows executable: Royale Storm Bowling.exe type: none -'1023640': +"1023640": installDir: Sweet Galaxy Adventure! launch: - config: @@ -8405,7 +8347,7 @@ description: Launch executable: SweetGalaxyAdventure.sh type: default -'1023650': +"1023650": installDir: gun man launch: - config: @@ -8416,26 +8358,26 @@ oslist: linux executable: Part2_complete type: none -'1023680': +"1023680": installDir: Brass Town Wrestling launch: - executable: Game.exe type: none -'1023690': +"1023690": installDir: Nurse Love Syndrome launch: - executable: Shirokoi.exe type: default nameLocalized: japanese: 白衣性恋愛症候群 -'1023720': +"1023720": installDir: Hidden Mysteries Royal Family Secrets launch: - config: oslist: windows executable: HiddenMysteries_RoyalFamilySecrets.exe type: default -'1023740': +"1023740": installDir: 7SexySins launch: - config: @@ -8450,73 +8392,73 @@ oslist: linux executable: 7SexySins.x86_64 type: default -'1023750': +"1023750": installDir: INVITATION launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: INVITATION.exe type: default -'1023760': +"1023760": installDir: Creation and Conquest The Future War launch: - config: oslist: windows executable: Creation & Conquest - The Future War.exe type: default -'1023790': +"1023790": installDir: Rick Henderson launch: - config: oslist: windows executable: Rick Henderson.exe type: default -'1023860': +"1023860": installDir: GORSD launch: - config: oslist: windows executable: GORSD.exe type: default -'1023870': +"1023870": installDir: Northern Lights launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Northern Lights.exe type: default -'1023960': +"1023960": installDir: Easter! launch: - executable: Easter!.exe type: default -'1023970': +"1023970": installDir: Gun Gun Pixies launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: game_x64.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: game_x86.exe type: default -'1023980': +"1023980": installDir: V.L.A.D.i.K launch: - config: oslist: windows executable: VLADiK.exe type: default -'10240': +"10240": installDir: Stroke of Fate - Operation Valkyrie launch: - executable: game.exe -'102400': +"102400": installDir: Vertex Dispenser launch: - config: @@ -8525,60 +8467,60 @@ - config: oslist: macos executable: Vertex Dispenser.app -'1024010': +"1024010": installDir: Ultimate Fishing Simulator VR launch: - - arguments: '-vrmode Oculus' + - arguments: "-vrmode Oculus" config: - osarch: '64' + osarch: "64" oslist: windows description: UFS VR executable: UltimateFishing_SteamVR.exe type: othervr - - arguments: '-vrmode OpenVR' + - arguments: "-vrmode OpenVR" config: - osarch: '64' + osarch: "64" oslist: windows description: UFS VR executable: UltimateFishing_SteamVR.exe type: vr - - arguments: '-vrmode None' + - arguments: "-vrmode None" config: - osarch: '64' + osarch: "64" oslist: windows description: Ultimate Fishing Simulator executable: UltimateFishing_SteamVR.exe type: option1 -'1024070': +"1024070": installDir: Ribbon Racer Next launch: - config: oslist: windows executable: rrnext.exe type: default -'1024080': +"1024080": installDir: The Scuttle launch: - config: oslist: windows executable: TheScuttle.exe type: default -'1024100': +"1024100": installDir: IsabelleFineMOR launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows executable: Game.exe type: default -'1024150': +"1024150": installDir: Valentines Cafe launch: - config: oslist: windows executable: vv_proj.exe type: none -'1024160': +"1024160": installDir: Lord Winklebottom Investigates launch: - config: @@ -8593,20 +8535,20 @@ oslist: macos executable: Lord Winklebottom Investigates.app type: default -'1024210': +"1024210": installDir: Leowald launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Leowald.exe type: default -'1024220': +"1024220": installDir: Death Waves launch: - executable: DeathWaves.exe type: none -'1024250': +"1024250": installDir: Firon launch: - config: @@ -8614,112 +8556,94 @@ description: Launch executable: RPG_RT.exe type: default -'1024280': {} -'1024330': +"1024280": {} +"1024330": installDir: Bhavacakra Grace launch: - config: oslist: windows executable: Game.exe type: default -'1024380': +"1024380": installDir: SecondExtinction launch: - config: - betakey: >- - default qa_main_1 qa_main_2 qa_staging localization compatibility marketing playtest hardware_vendors - development milestone qa_future qa_integrations qa_update design_review - osarch: '64' + betakey: default qa_main_1 qa_main_2 qa_staging localization compatibility marketing playtest hardware_vendors development milestone qa_future qa_integrations qa_update design_review + osarch: "64" oslist: windows executable: SecondExtinction_F.exe type: default - - arguments: '--marketing-build --disable-assert-break --disable-assert-dialog' + - arguments: "--marketing-build --disable-assert-break --disable-assert-dialog" config: betakey: marketing - osarch: '64' + osarch: "64" oslist: windows description: Marketing Build - description_loc: - english: Marketing Build executable: SecondExtinction_R.exe type: option2 - - arguments: '--disable-hash-lookups --disable-assert-break --disable-assert-dialog' + - arguments: "--disable-hash-lookups --disable-assert-break --disable-assert-dialog" config: betakey: hardware_vendors - osarch: '64' + osarch: "64" oslist: windows description: Second Extinction Profile executable: SecondExtinction_P.exe type: option2 - config: betakey: qa_main_1 qa_main_2 qa_staging compatibility qa_future qa_integrations qa_update design_review playtest - osarch: '64' + osarch: "64" oslist: windows description: Second Extinction Release - description_loc: - english: Second Extinction Release executable: SecondExtinction_R.exe type: option1 - - arguments: '--disable-assert-break --disable-assert-dialog' + - arguments: "--disable-assert-break --disable-assert-dialog" config: betakey: qa_main_1 qa_main_2 qa_staging qa_delivery localization qa_integrations qa_update design_review externals - osarch: '64' + osarch: "64" oslist: windows description: SE Release (without ASSERTS) - description_loc: - english: SE Release (without ASSERTS) executable: SecondExtinction_R.exe type: option3 - - arguments: '--qa_mode' + - arguments: "--qa_mode" config: betakey: qa_delivery externals - osarch: '64' + osarch: "64" oslist: windows description: Final Build (but with delivery playfab) - description_loc: - english: Final Build (but with delivery playfab) executable: SecondExtinction_F.exe type: option2 - - arguments: '-mem_shark --disable-assert-break --disable-assert-dialog ' + - arguments: "-mem_shark --disable-assert-break --disable-assert-dialog " config: betakey: qa_main_1 qa_main_2 - osarch: '64' + osarch: "64" oslist: windows - description: 'SE Release (MEMSHARK, and without assert)' - description_loc: - english: 'SE Release (MEMSHARK, and without assert)' + description: "SE Release (MEMSHARK, and without assert)" executable: SecondExtinction_R.exe type: option2 - config: betakey: qa_delivery description: Final Build (with LIVE playfab) - description_loc: - english: Final Build (with LIVE playfab) executable: SecondExtinction_F.exe type: option3 - config: betakey: qa_future compatibility qa_main_1 qa_main_2 - osarch: '64' + osarch: "64" oslist: windows description: Launch the LaunchLaunch Launcher - description_loc: - english: Launch the LaunchLaunch Launcher executable: Launcher_steam.exe type: option2 - - arguments: '--disable-assert-break --disable-assert-dialog --livelogview' + - arguments: "--disable-assert-break --disable-assert-dialog --livelogview" config: betakey: qa_staging - osarch: '64' + osarch: "64" oslist: windows description: SE Release with LiveLog (no asserts) - description_loc: - english: SE Release with LiveLog (no asserts) executable: SecondExtinction_R.exe type: option2 nameLocalized: schinese: 二次灭绝 Second Extinction tchinese: 二次滅絕 Second Extinction -'1024400': +"1024400": installDir: Marenian Tavern Story launch: - config: @@ -8728,7 +8652,7 @@ type: none nameLocalized: japanese: マレニア国の冒険酒場 ~パティアと腹ペコの神~ -'1024430': +"1024430": installDir: Super Arcade Soccer launch: - config: @@ -8737,27 +8661,27 @@ type: default - config: oslist: macos - executable: SAS.app\\Contents\\MacOS\\SAS + executable: "SAS.app\\\\Contents\\\\MacOS\\\\SAS" type: default -'1024440': {} -'1024450': +"1024440": {} +"1024450": installDir: DINOVR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: DINOVR.exe type: vr -'1024460': +"1024460": installDir: Destructive physics launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Destructive Physics.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: DestructivePhysics.x86_64 type: default @@ -8765,119 +8689,119 @@ oslist: macos executable: DestructivePhysics.app type: default -'1024470': +"1024470": installDir: La Fuga launch: - config: oslist: windows executable: La Fuga.exe type: default -'1024480': +"1024480": installDir: Immortal Realms launch: - - arguments: '-batchmode' + - arguments: "-batchmode" description: Launch Immortal Realms.exe with launcher executable: Immortal Realms.exe type: none -'1024490': +"1024490": installDir: Super Jigsaw Puzzle Anime Reloaded launch: - config: oslist: windows executable: Super Jigsaw Puzzle Anime Reloaded.exe type: default -'1024520': - installDir: Viking Sigurd's Adventure +"1024520": + installDir: "Viking Sigurd's Adventure" launch: - config: oslist: windows executable: VikingSigurdsAdventure.exe type: default -'1024530': +"1024530": installDir: ArtByNumbers launch: - config: oslist: windows executable: Art by Numbers.exe type: default -'1024540': +"1024540": installDir: Alien League launch: - config: oslist: windows executable: Alien League.exe type: default -'1024570': +"1024570": installDir: Hentai Babes - In Public launch: - executable: Hentai Babes - In Public.exe type: default -'1024590': +"1024590": installDir: Hentai Babes - Sport Lovers launch: - config: oslist: windows executable: Hentai Babes - Sport Lovers.exe type: default -'1024600': +"1024600": installDir: SkydiVeR launch: - config: oslist: windows executable: SkydiVeR_SteamVive_1.1.exe type: vr -'1024630': +"1024630": installDir: Fighters Legacy launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Fighters Legacy.exe type: none -'1024650': +"1024650": installDir: Port Royale 4 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: PortRoyale4.exe type: default -'1024670': +"1024670": installDir: Ruination launch: - config: oslist: windows executable: Ruination.exe type: default -'1024690': +"1024690": installDir: Chaos Village launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ChaosVillage.exe type: default -'1024720': +"1024720": installDir: Pagans Must Die launch: - config: oslist: windows executable: Pagans Must Die.exe type: default -'1024730': +"1024730": installDir: Murder Machine Mini launch: - config: oslist: windows executable: MurderMachineMini.exe type: default -'1024740': {} -'1024780': +"1024740": {} +"1024780": installDir: Capture the planet Cute War launch: - executable: game.exe type: none -'1024790': +"1024790": installDir: Kare wa Kanojo launch: - config: @@ -8892,16 +8816,16 @@ oslist: linux executable: kwk.sh type: default -'1024840': {} -'1024860': +"1024840": {} +"1024860": installDir: BFGE launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: NextProject.exe type: default -'1024890': +"1024890": installDir: SectorsEdge launch: - config: @@ -8912,48 +8836,48 @@ betakey: attach15linux oslist: linux executable: sectorsedge.exe -'1024950': +"1024950": installDir: Starship Horizons launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Starship Horizons Bridge Simulator - executable: Bin\\Horizons.exe + executable: "Bin\\\\Horizons.exe" type: default -'1024960': +"1024960": installDir: TOYTANK launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TOYTANK.exe type: vr -'1024970': +"1024970": installDir: Quantum Legend - vr show launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: QuantumLegendShow.exe type: vr -'1024980': +"1024980": installDir: Tornado! launch: - config: oslist: windows executable: Tornado!.exe type: default -'1024990': {} -'10250': +"1024990": {} +"10250": installDir: PT Boats Knights of the Sea launch: - executable: PT-Boats.exe -'102500': +"102500": installDir: KOAReckoning launch: - executable: Reckoning.exe -'1025000': +"1025000": installDir: Edge of Galaxy launch: - config: @@ -8962,7 +8886,7 @@ type: none - config: oslist: macos - executable: EOG.app\\Contents\\MacOS\\EOG + executable: "EOG.app\\\\Contents\\\\MacOS\\\\EOG" type: none - config: oslist: linux @@ -8975,13 +8899,13 @@ nameLocalized: schinese: 宇宙边际 tchinese: 宇宙邊際 -'1025010': +"1025010": installDir: Cursor - by Mr iLyn launch: - executable: cursor.exe type: none -'1025050': {} -'1025070': +"1025050": {} +"1025070": installDir: hello_lady_nd launch: - executable: hello_nd.exe @@ -8991,33 +8915,33 @@ japanese: ハロー・レディ! -New Division- schinese: 淑女同萌!-New Division- tchinese: 淑女同萌!-New Division- -'1025130': +"1025130": installDir: Oik_Memory_3 launch: - config: oslist: windows executable: oik3m.exe type: default -'1025140': +"1025140": installDir: LAMUNATION! -international- launch: - config: oslist: windows executable: LAMUNATION.exe type: default -'1025160': +"1025160": installDir: Xander the Monster Morpher Universe Breaker launch: - config: oslist: windows executable: Xander Universe Breaker GMS2.exe type: default -'1025200': +"1025200": installDir: The Floor Is Really Cheap Lava launch: - executable: The Floor Is Really Cheap Lava.exe type: default -'1025230': +"1025230": installDir: Minda launch: - config: @@ -9028,19 +8952,19 @@ oslist: macos executable: Minda.app type: default -'1025240': +"1025240": installDir: GLAD VALAKAS TOWER DEFENCE 2 launch: - executable: GVTD2.exe type: none -'1025250': +"1025250": installDir: ShadowCorridor launch: - config: oslist: windows executable: ShadowCorridor.exe type: default -'1025260': +"1025260": installDir: Rebirth Fantasy Online launch: - config: @@ -9048,14 +8972,14 @@ description: Game Client executable: rebirth_fantasy.exe type: option1 -'1025270': +"1025270": installDir: Nogalious MSX launch: - config: oslist: windows executable: Nogalious MSX Digital.exe type: default -'1025320': +"1025320": installDir: Forever Lost Episode 2 launch: - config: @@ -9064,24 +8988,24 @@ type: default - config: oslist: macos - executable: Forever Lost 2.app\\Contents\\MacOS\\Forever Lost 2 + executable: "Forever Lost 2.app\\\\Contents\\\\MacOS\\\\Forever Lost 2" type: default -'1025330': +"1025330": installDir: Full Pitch launch: - config: oslist: windows executable: Full Pitch.exe type: default -'1025360': +"1025360": installDir: Woodcutter survival launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Woodcutter Survival.exe type: default -'1025390': +"1025390": installDir: My Arctic Farm launch: - config: @@ -9092,36 +9016,36 @@ oslist: macos executable: My Arctic Farm.app type: default -'1025410': +"1025410": installDir: Metamorphosis launch: - executable: Meta1.exe type: none -'1025420': +"1025420": installDir: Homing Shapes launch: - config: oslist: windows executable: Homing Shapes.exe type: none -'1025430': +"1025430": installDir: Delta Squad launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: DeltaSquad.exe type: default - config: oslist: macos - executable: DeltaSquad.app\\Contents\\MacOS\\DeltaSquad + executable: "DeltaSquad.app\\\\Contents\\\\MacOS\\\\DeltaSquad" type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: DeltaSquad.x86_64 type: default -'1025440': +"1025440": installDir: Fantasy General II launch: - config: @@ -9131,7 +9055,7 @@ type: default - executable: Launcher.exe type: default -'1025450': +"1025450": installDir: Forever Lost Episode 3 launch: - config: @@ -9140,16 +9064,16 @@ type: default - config: oslist: macos - executable: Forever Lost 3.app\\Contents\\MacOS\\Forever Lost 3 + executable: "Forever Lost 3.app\\\\Contents\\\\MacOS\\\\Forever Lost 3" type: default -'1025460': +"1025460": installDir: Rift Racoon launch: - config: oslist: windows executable: Rift Racoon.exe type: default -'1025480': +"1025480": installDir: 1-Bit Revival The Residuals of Null launch: - config: @@ -9160,8 +9084,8 @@ oslist: linux executable: nw type: default -'1025500': {} -'1025510': +"1025500": {} +"1025510": installDir: Ancient Battle Successors launch: - config: @@ -9172,7 +9096,7 @@ oslist: macos executable: ancientbattlesuccessors.app type: none -'1025520': +"1025520": installDir: Ancient Battle Alexander launch: - config: @@ -9183,7 +9107,7 @@ oslist: macos executable: ancientbattlealexander.app type: none -'1025530': +"1025530": installDir: 100 Years War launch: - config: @@ -9194,7 +9118,7 @@ oslist: macos executable: 100yearswar.app type: none -'1025540': +"1025540": installDir: Rebels and Redcoats launch: - config: @@ -9205,7 +9129,7 @@ oslist: macos executable: rebelsandredcoats.app type: none -'1025550': +"1025550": installDir: Great Battles of the American Civil War launch: - config: @@ -9216,9 +9140,9 @@ oslist: macos executable: americancivilwarbattles.app type: none -'1025560': {} -'1025570': {} -'1025580': +"1025560": {} +"1025570": {} +"1025580": installDir: Vainglory launch: - config: @@ -9229,109 +9153,109 @@ oslist: macos executable: Vainglory.app/Contents/MacOS/GameKindred type: default -'1025600': +"1025600": installDir: Battle Realms launch: - config: oslist: windows executable: Battle_Realms_F.exe type: default -'1025620': {} -'1025650': +"1025620": {} +"1025650": installDir: Astrog launch: - config: oslist: windows - executable: \\Platforms\\Windows\\launcher.exe + executable: "\\\\Platforms\\\\Windows\\\\launcher.exe" type: default - config: - osarch: '32' + osarch: "32" oslist: linux - executable: \\Platforms\\Linux32\\launcher + executable: "\\\\Platforms\\\\Linux32\\\\launcher" type: default - config: - osarch: '64' + osarch: "64" oslist: linux - executable: \\Platforms\\Linux64\\launcher + executable: "\\\\Platforms\\\\Linux64\\\\launcher" type: default -'1025690': {} -'1025710': - installDir: Real Al's Humanity Academy +"1025690": {} +"1025710": + installDir: "Real Al's Humanity Academy" launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: RAHA_March17_745.exe type: vr -'1025740': +"1025740": installDir: The Woods VR Escape the Room launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TheWoods type: vr -'1025780': +"1025780": installDir: Axe Prime launch: - config: oslist: windows executable: AxePrime.exe type: default -'1025870': +"1025870": installDir: MONSTERSSURVIVAL launch: - config: oslist: windows - executable: windows_content\\SURVIVAL.exe + executable: "windows_content\\\\SURVIVAL.exe" type: none -'1025890': +"1025890": installDir: Other Submarine launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: OtherSubmarine.exe type: default -'1025900': {} -'1025920': {} -'1025940': {} -'1025980': {} -'1025990': +"1025900": {} +"1025920": {} +"1025940": {} +"1025980": {} +"1025990": installDir: Cube Human launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Cube Human.exe type: default -'10260': +"10260": installDir: PT Boats South Gambit launch: - executable: PTBoatsSG.exe -'102600': +"102600": installDir: Orcs Must Die! launch: - - executable: build\\release\\orcsmustdie.exe -'1026020': + - executable: "build\\\\release\\\\orcsmustdie.exe" +"1026020": installDir: Zyphoid launch: - config: oslist: windows executable: Zyphoid.exe type: default -'1026030': {} -'1026040': {} -'1026060': +"1026030": {} +"1026040": {} +"1026060": installDir: BrutalGames launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Brutal_Games type: default -'1026070': - installDir: 12 Labours of Hercules IX A Hero's Moonwalk +"1026070": + installDir: "12 Labours of Hercules IX A Hero's Moonwalk" launch: - config: oslist: windows @@ -9341,7 +9265,7 @@ oslist: macos executable: 12 Labours of Hercules IX.app type: none -'1026080': +"1026080": installDir: The Antidote launch: - executable: The Antidote.exe @@ -9351,7 +9275,7 @@ description: game settings executable: winsetup.exe type: config -'1026110': +"1026110": installDir: Racing Classics launch: - config: @@ -9359,18 +9283,18 @@ executable: Racing Classics.app type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: Racing Classics.exe type: default -'1026130': +"1026130": installDir: STAB STAB STAB launch: - config: oslist: windows executable: stabstabstab.exe type: default -'1026160': +"1026160": installDir: Misadventures of Laura Silver launch: - config: @@ -9385,84 +9309,84 @@ oslist: macos executable: Misadventures of Laura Silver.app type: default -'1026180': +"1026180": installDir: 420 Button Clicker launch: - config: oslist: windows executable: Sunshine.exe type: default -'1026190': {} -'1026210': +"1026190": {} +"1026210": installDir: BAD BILLY 2D VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: BADBILLY.exe type: vr -'1026220': {} -'1026230': {} -'1026250': {} -'1026260': {} -'1026270': {} -'1026290': {} -'1026300': {} -'1026310': {} -'1026320': {} -'1026330': {} -'1026370': +"1026220": {} +"1026230": {} +"1026250": {} +"1026260": {} +"1026270": {} +"1026290": {} +"1026300": {} +"1026310": {} +"1026320": {} +"1026330": {} +"1026370": installDir: My Fair Princess launch: - - arguments: kimihime.exe \"C932\" \"L1041\" \"FMS Gothic\" \"P4\" + - arguments: "kimihime.exe \\\"C932\\\" \\\"L1041\\\" \\\"FMS Gothic\\\" \\\"P4\\\"" description: My Fair Princess through Locale Emulation - executable: ntleas\\x86\\ntleas.exe + executable: "ntleas\\\\x86\\\\ntleas.exe" type: option1 - description: My Fair Princess directly executable: kimihime.exe type: option1 -'1026380': +"1026380": installDir: Overture Music Visualization launch: - config: oslist: windows - executable: WindowsNoEditor\\RetroWaveMachine.exe + executable: "WindowsNoEditor\\\\RetroWaveMachine.exe" type: default -'1026390': +"1026390": installDir: Magic Heart launch: - config: oslist: windows executable: Magic_Heart.exe type: none -'1026400': +"1026400": installDir: Tamashii launch: - config: oslist: windows executable: game.exe type: default -'1026420': +"1026420": installDir: WARSAW launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Warsaw.exe type: default -'1026430': +"1026430": installDir: Book of Eos launch: - executable: Game.exe type: none -'1026560': +"1026560": installDir: LOGistICAL2Nevada launch: - config: oslist: windows executable: LogisticalApp.exe type: none -'1026610': +"1026610": installDir: Deathless Dungeon launch: - config: @@ -9473,41 +9397,41 @@ - config: oslist: macos description: Deathless Dungeon MacOS version - executable: DeathlessDungeonMacOS.app\\Contents\\MacOS\\DeathlessDungeonMacOS + executable: "DeathlessDungeonMacOS.app\\\\Contents\\\\MacOS\\\\DeathlessDungeonMacOS" type: default -'1026680': +"1026680": installDir: FINAL FANTASY VIII Remastered launch: - config: oslist: windows executable: FFVIII_LAUNCHER.exe type: none -'1026720': {} -'1026770': +"1026720": {} +"1026770": installDir: Lightmare Castle launch: - executable: Lightmare Castle.exe type: none -'1026810': +"1026810": installDir: A Story of Us - ep. 1 - First Memories launch: - config: oslist: windows executable: A story of Us - First Memories.exe type: none -'1026820': +"1026820": installDir: Coloring Game launch: - executable: game.exe type: none -'1026840': +"1026840": installDir: Ultra Fight Da ! Kyanta 2 launch: - config: oslist: windows executable: Game.exe type: default -'1026880': +"1026880": installDir: FIREGROUND launch: - config: @@ -9516,13 +9440,13 @@ - config: oslist: linux executable: Fireground.x86_64 -'1026900': {} -'1026910': - installDir: Memorise'n'run +"1026900": {} +"1026910": + installDir: "Memorise'n'run" launch: - - executable: Memorise'n'Run.exe + - executable: "Memorise'n'Run.exe" type: none -'1026940': +"1026940": installDir: Hei launch: - config: @@ -9531,50 +9455,50 @@ type: default - config: oslist: macos - executable: Hei.app\\Contents\\MacOS\\HeiMac + executable: "Hei.app\\\\Contents\\\\MacOS\\\\HeiMac" type: default -'1026960': +"1026960": installDir: Professional Thief launch: - config: oslist: windows executable: ProfessionalThief.exe type: default -'10270': +"10270": installDir: Disciples III Rebirth launch: - executable: DisciplesIII.exe -'102700': +"102700": installDir: AVA launch: - config: oslist: windows executable: launcher.exe type: default -'1027000': {} -'1027050': {} -'1027060': +"1027000": {} +"1027050": {} +"1027060": installDir: CreatorCrate launch: - config: - osarch: '64' + osarch: "64" oslist: linux executable: CreatorCrate.x86_64 type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: CreatorCrate.exe type: default -'1027080': {} -'1027090': {} -'1027100': {} -'1027110': {} -'1027120': +"1027080": {} +"1027090": {} +"1027100": {} +"1027110": {} +"1027120": installDir: Bravery Network Online launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: BraveryNetworkOnline.exe type: none @@ -9582,40 +9506,40 @@ oslist: macos executable: BraveryNetworkOnline.app type: none -'1027130': +"1027130": installDir: NEKO-NIN exHeart 2 Love +PLUS launch: - executable: nekonin2plus.exe type: default -'1027140': +"1027140": installDir: Strip Slot Sonja launch: - config: oslist: windows executable: stripslotsonja.exe type: default -'1027190': +"1027190": installDir: Hot Squat 2 New Glory launch: - executable: Hot Squat 2 New Glory.exe type: vr -'1027200': +"1027200": installDir: Cold Bite launch: - executable: Cold Bite.exe type: none -'1027230': - installDir: Woman's body For adults +"1027230": + installDir: "Woman's body For adults" launch: - config: oslist: windows - executable: Woman's body - For adults.exe + executable: "Woman's body - For adults.exe" type: default -'1027250': +"1027250": installDir: TheAllianceAliveHD launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TheAllianceAliveHD.exe type: default @@ -9623,37 +9547,37 @@ japanese: アライアンス・アライブ HDリマスター koreana: 얼라이언스 얼라이브 HD Remastered tchinese: 復活同盟HD Remastered -'1027290': {} -'1027480': +"1027290": {} +"1027480": installDir: Birth of a Hunter launch: - config: oslist: windows executable: BoaH.exe type: default -'1027500': {} -'1027520': +"1027500": {} +"1027520": installDir: Hentai Waifu launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: nw.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: nw.exe type: none -'1027530': +"1027530": installDir: Robohazard 2077 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Roboapocalypse.exe type: default -'1027550': +"1027550": installDir: Bikini Surfer Girl - Wild Wahine launch: - config: @@ -9661,14 +9585,14 @@ description: Start Surfing! executable: Bikini Surfer Girl Wild Wahine.exe type: default -'1027610': +"1027610": installDir: Wampee Helicopters launch: - config: oslist: windows executable: Wampee Helicopters.exe type: default -'1027620': +"1027620": installDir: The Language of Love launch: - config: @@ -9686,85 +9610,85 @@ description: Launch executable: lovelanguage.app type: default -'1027660': - installDir: It's Fun To Break Things +"1027660": + installDir: "It's Fun To Break Things" launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: 64 Bit It's Fun To Break Things\\WindowsNoEditor\\BreakThings3.exe + executable: "64 Bit It's Fun To Break Things\\\\WindowsNoEditor\\\\BreakThings3.exe" type: vr -'1027690': +"1027690": installDir: Mazania launch: - config: oslist: windows executable: Mazania.exe type: none -'1027700': +"1027700": installDir: ShmupMoments launch: - executable: ManyBullets.exe type: none -'1027720': +"1027720": installDir: Push Pull launch: - config: oslist: windows executable: PushPull.exe type: default -'1027780': {} -'1027790': +"1027780": {} +"1027790": installDir: Maze Ninja launch: - config: oslist: windows executable: Maze Ninja.exe type: default -'1027800': +"1027800": installDir: Fly Flew Flown launch: - config: oslist: windows executable: FlyFlewFlown.exe type: default -'1027810': +"1027810": installDir: ZooKeeper launch: - executable: ZooKeeper.exe type: default -'1027830': +"1027830": installDir: Sin; Vengeance launch: - config: oslist: windows executable: Sin; Vengeance.exe type: default -'1027890': {} -'1027910': {} -'1027930': +"1027890": {} +"1027910": {} +"1027930": installDir: Keystones launch: - config: oslist: windows executable: Keystones.exe type: default -'1027960': +"1027960": installDir: World Peace Simulator 2019 launch: - config: oslist: windows executable: World Peace Simulator 2019.exe type: none -'1027970': +"1027970": installDir: LesLove.Club Jessica and Ashley launch: - config: oslist: windows executable: LL1.exe type: default -'1027980': {} -'1027990': +"1027980": {} +"1027990": installDir: AntennaDilemma launch: - config: @@ -9779,15 +9703,15 @@ oslist: linux executable: AntennaDilemma.x86_64 type: default -'1028010': +"1028010": installDir: Speedrun Ninja launch: - config: oslist: windows executable: Speedrun Ninja.exe type: default -'1028020': {} -'1028030': +"1028020": {} +"1028030": installDir: Shuriken and Aliens launch: - config: @@ -9798,66 +9722,66 @@ oslist: linux executable: ShurikenAndAliens_LINUX.x86_64 type: none -'102810': +"102810": installDir: Gatling Gears (VG) launch: - description: Launch executable: Game.exe workingdir: Data -'1028110': +"1028110": installDir: Cooking Trip launch: - config: oslist: windows executable: CookingTrip.exe type: default -'1028130': +"1028130": installDir: Gamble Fight Plus launch: - executable: GambleFightPlus.exe type: none -'1028160': - installDir: '222' +"1028160": + installDir: "222" launch: - config: oslist: windows executable: 222.exe type: default -'1028170': +"1028170": installDir: Tahko Alpine Ski launch: - executable: TahkoAlpineSki.exe type: vr -'102820': +"102820": installDir: The Sims Medieval launch: - - executable: Game\\Bin\\TSM.exe + - executable: "Game\\\\Bin\\\\TSM.exe" - description: View Support Information - executable: Support\\EA Help\\Electronic_Arts_Technical_Support.htm -'1028250': + executable: "Support\\\\EA Help\\\\Electronic_Arts_Technical_Support.htm" +"1028250": installDir: Magic Gun launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Magic Gun.exe type: vr -'1028280': +"1028280": installDir: Zusammenstürzen launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Bridge! 3.exe type: default -'1028300': +"1028300": installDir: Katana Soul launch: - config: oslist: windows executable: Katana Soul.exe type: default -'1028310': +"1028310": installDir: Book of Hours launch: - config: @@ -9866,29 +9790,29 @@ type: default - config: oslist: macos - executable: OSX.app\\Contents\\MacOS\\Book of Hours + executable: "OSX.app\\\\Contents\\\\MacOS\\\\Book of Hours" type: default - config: oslist: linux executable: bh.x86_64 type: default -'1028320': {} -'1028330': +"1028320": {} +"1028330": installDir: FAN CLUB launch: - config: oslist: windows executable: buildFC_ForVive.exe type: vr -'1028340': +"1028340": installDir: Spare Teeth VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SpareTeeth-12-12-19.exe type: vr -'1028350': +"1028350": installDir: Pupperazzi launch: - config: @@ -9897,28 +9821,28 @@ type: none - config: oslist: macos - executable: Pupperazzi.app\\Contents\\MacOS\\Pupperazzi + executable: "Pupperazzi.app\\\\Contents\\\\MacOS\\\\Pupperazzi" type: default -'1028360': +"1028360": installDir: Robo Miner 2 launch: - config: oslist: windows executable: RoboMiner2.exe type: default -'1028380': +"1028380": installDir: Data mining 6 launch: - config: oslist: windows executable: Data mining 6.exe type: default -'102840': +"102840": installDir: Shank 2 launch: - config: oslist: windows - executable: bin\\shank2.exe + executable: "bin\\\\shank2.exe" - config: oslist: macos description: Shank 2 OSX App @@ -9927,18 +9851,18 @@ oslist: linux description: Shank 2 Linux executable: bin/shank2 -'1028410': - installDir: Don't Look Back +"1028410": + installDir: "Don't Look Back" launch: - config: oslist: windows - executable: Don't Look Back.exe + executable: "Don't Look Back.exe" type: othervr - config: oslist: windows - executable: Don't Look Back.exe + executable: "Don't Look Back.exe" type: vr -'1028440': +"1028440": installDir: ArrowTourney launch: - config: @@ -9949,28 +9873,28 @@ oslist: linux executable: ArrowTourney.sh type: default -'1028460': +"1028460": installDir: Spellcasting Collection launch: - - arguments: '-conf s101.conf' + - arguments: "-conf s101.conf" config: oslist: windows - description: 'Spellcasting 101: Sorcerers Get All The Girls' + description: "Spellcasting 101: Sorcerers Get All The Girls" executable: DOSBox.exe type: option1 - - arguments: '-conf s201.conf' + - arguments: "-conf s201.conf" config: oslist: windows - description: 'Spellcasting 201: The Sorcerer''s Appliance ' + description: "Spellcasting 201: The Sorcerer's Appliance " executable: DOSBox.exe type: option2 - - arguments: '-conf s301.conf' + - arguments: "-conf s301.conf" config: oslist: windows - description: 'Spellcasting 301: Spring Break' + description: "Spellcasting 301: Spring Break" executable: DOSBox.exe type: option3 -'1028470': +"1028470": installDir: Dis The Game launch: - config: @@ -9985,94 +9909,94 @@ oslist: linux executable: DisTheGame.x86_64 type: none -'1028480': +"1028480": installDir: Minskies launch: - config: oslist: windows executable: DOSBox.exe type: default -'1028490': +"1028490": installDir: Radical Rex launch: - config: oslist: windows executable: radical rex.exe type: default -'102850': +"102850": installDir: Warp launch: - - executable: Binaries\\\\Win32\\\\Warp.exe -'1028500': + - executable: "Binaries\\\\\\\\Win32\\\\\\\\Warp.exe" +"1028500": installDir: Nightshade launch: - config: oslist: windows executable: nightshade.exe type: default -'1028510': {} -'1028520': +"1028510": {} +"1028520": installDir: Brave Battle Saga - The Legend of The Magic Warrior launch: - config: oslist: windows executable: brave battle saga.exe type: default -'1028540': {} -'1028550': +"1028540": {} +"1028550": installDir: Sinewave launch: - config: oslist: windows executable: SineWave.exe type: default -'1028570': +"1028570": installDir: Lofi Ping Pong launch: - config: oslist: windows executable: PingPong.exe type: default -'1028610': +"1028610": installDir: Shift Shafts launch: - config: oslist: windows executable: Shift Shaft.exe type: default -'1028630': +"1028630": installDir: Cricket 19 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ashes.exe type: default -'1028660': +"1028660": installDir: Pirouette launch: - executable: Pirouette.exe type: none -'1028680': +"1028680": installDir: Our Children - Escaping Earth launch: - config: oslist: windows executable: Our Children.exe type: default -'1028730': +"1028730": installDir: Creo God Simulator launch: - config: oslist: windows executable: Creo God Simulator.exe type: default -'1028740': +"1028740": installDir: Herd is Coming launch: - executable: herd.exe type: none -'1028750': +"1028750": installDir: Ultimate Logic Puzzle Collection launch: - config: @@ -10083,14 +10007,14 @@ oslist: windows executable: UltimatePuzzle.exe type: default -'1028760': +"1028760": installDir: Snow Battle Princess SAYUKI launch: - config: oslist: windows executable: Snow_Battle_Princess_SAYUKI.exe type: default -'1028770': +"1028770": installDir: Kanji in Motion launch: - config: @@ -10101,15 +10025,15 @@ oslist: macos executable: kim.app type: default -'1028780': +"1028780": installDir: Warmord launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Warmorde.exe type: default -'1028800': +"1028800": installDir: SurvivalCamp launch: - config: @@ -10119,71 +10043,71 @@ nameLocalized: english: Survival Camp schinese: 生存营地 -'1028810': {} -'1028820': +"1028810": {} +"1028820": installDir: HorrorStories launch: - executable: HorrorStories.exe type: none -'1028830': +"1028830": installDir: Destiny Hunter launch: - config: oslist: windows executable: DestinyHunter.exe type: default -'1028840': +"1028840": installDir: Super Toy Cars 2 launch: - config: oslist: windows executable: Super Toy Cars 2.exe type: default -'1028850': - installDir: Baldina's Basis in Education Literary Grammar +"1028850": + installDir: "Baldina's Basis in Education Literary Grammar" launch: - config: oslist: windows executable: Baldina - Education & Learning.exe type: none -'1028860': +"1028860": installDir: Star Chef Cooking & Restaurant Game launch: - config: oslist: windows executable: Star Chef.exe type: default -'1028880': +"1028880": installDir: Mistero a Villa MilaFlora launch: - config: oslist: windows executable: game.exe type: default -'1028900': +"1028900": installDir: Operation Valderon launch: - config: oslist: windows executable: tdproject.exe type: default -'1028910': +"1028910": installDir: Sparkle 4 Tales launch: - config: oslist: windows executable: Tales.exe type: none -'1028930': +"1028930": installDir: It Moves launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows executable: Game.exe type: default -'1028940': {} -'1028950': +"1028940": {} +"1028950": installDir: Transhaping launch: - config: @@ -10194,62 +10118,62 @@ oslist: macos executable: transhaping.app type: none -'1028990': +"1028990": installDir: Maze Of Time launch: - config: oslist: windows - executable: Maze Of Time Win\\Maze Of Time.exe + executable: "Maze Of Time Win\\\\Maze Of Time.exe" type: none - workingdir: Maze Of Time Win\\Maze Of Time_Data + workingdir: "Maze Of Time Win\\\\Maze Of Time_Data" - config: oslist: windows - executable: Maze Of Time VR\\Maze Of Time VR.exe + executable: "Maze Of Time VR\\\\Maze Of Time VR.exe" type: vr - workingdir: Maze Of Time VR\\Maze Of Time VR_Data + workingdir: "Maze Of Time VR\\\\Maze Of Time VR_Data" - config: oslist: linux - executable: Maze Of Time Linux\\Maze Of Time.x86 + executable: "Maze Of Time Linux\\\\Maze Of Time.x86" type: none - workingdir: Maze Of Time Linux\\Maze Of Time_Data + workingdir: "Maze Of Time Linux\\\\Maze Of Time_Data" - config: oslist: macos - executable: Maze Of Time Mac\\Maze Of Time.app + executable: "Maze Of Time Mac\\\\Maze Of Time.app" type: none - workingdir: Maze Of Time Mac\\Maze Of Time.app\\Contents -'1029000': {} -'1029020': + workingdir: "Maze Of Time Mac\\\\Maze Of Time.app\\\\Contents" +"1029000": {} +"1029020": installDir: BionicBlitz launch: - executable: BBFinal.exe type: default -'1029040': +"1029040": installDir: Baby Redemption launch: - config: oslist: windows executable: Baby Redemption.exe type: default -'1029050': +"1029050": installDir: Dodge Diego launch: - config: oslist: windows - executable: Dodge Diego v0.9.3\\Dodge Diego.exe + executable: "Dodge Diego v0.9.3\\\\Dodge Diego.exe" type: none -'1029070': +"1029070": installDir: Spark of Light launch: - executable: Spark of Light.exe type: vr -'1029080': +"1029080": installDir: Nowhere Station launch: - config: oslist: windows executable: Nowhere Station.exe type: none -'1029100': +"1029100": installDir: Worse Than Death launch: - config: @@ -10260,20 +10184,20 @@ oslist: macos executable: Worse Than Death.app type: default -'1029110': +"1029110": installDir: TrashTime launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TrashTime.exe type: vr -'1029120': +"1029120": installDir: Space Expand launch: - executable: Spaceexpand.exe type: none -'1029130': +"1029130": installDir: Sordwin The Evertree Saga launch: - config: @@ -10288,7 +10212,7 @@ oslist: linux executable: SordwinTheEvertreeSaga type: none -'1029150': +"1029150": installDir: Totem Force launch: - config: @@ -10303,23 +10227,23 @@ oslist: linux executable: TotemForce type: none -'1029160': +"1029160": installDir: Sunset Planet launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SunsetPlanet.exe type: default -'1029170': +"1029170": installDir: Moonless Knight launch: - config: oslist: windows executable: Moonless Knight.exe type: default -'1029190': {} -'1029210': +"1029190": {} +"1029210": installDir: 30XX launch: - config: @@ -10327,7 +10251,7 @@ description: standard executable: 30XX.exe type: default -'1029220': +"1029220": installDir: Terraforming Earth launch: - config: @@ -10339,24 +10263,24 @@ oslist: windows executable: TerraformingEarth.exe type: default -'1029230': +"1029230": installDir: Two For One launch: - config: oslist: windows executable: TwoForOne.exe type: default -'1029240': +"1029240": installDir: Hentai Survive Island launch: - executable: Hentai Survive Island.exe type: none -'1029260': +"1029260": installDir: Unsung Story launch: - executable: Unsung Story.exe type: default -'1029340': +"1029340": installDir: Stream Animals launch: - config: @@ -10365,9 +10289,9 @@ type: default - config: oslist: macos - executable: Stream Animals.app\\Contents\\MacOS\\Stream Animals + executable: "Stream Animals.app\\\\Contents\\\\MacOS\\\\Stream Animals" type: default -'1029380': +"1029380": installDir: MonsterHuntingForLove launch: - config: @@ -10382,29 +10306,29 @@ oslist: linux executable: MonsterHuntingForLove.sh type: none -'1029470': +"1029470": installDir: Angry Farm launch: - config: oslist: windows executable: Angry Farm.exe type: default -'1029500': +"1029500": installDir: 中华三国志 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: WorldOfTheThreeKingdoms.exe type: default -'1029530': +"1029530": installDir: Aqua Rally launch: - config: oslist: windows executable: Aqua Rally.exe type: default -'1029540': +"1029540": installDir: Super Kittens launch: - config: @@ -10419,23 +10343,23 @@ oslist: linux executable: SKL.x86 type: default -'1029560': +"1029560": installDir: Bandits launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Bandits.exe type: default -'1029570': +"1029570": installDir: Perfect Round Disc Golf launch: - config: oslist: windows executable: TestingGrounds.exe type: default -'1029600': {} -'1029630': +"1029600": {} +"1029630": installDir: Power & Revolution 2019 Edition launch: - config: @@ -10446,7 +10370,7 @@ oslist: macos executable: POWER AND REVOLUTION 2019 STEAM.app type: none -'1029640': +"1029640": installDir: reaktron launch: - config: @@ -10462,104 +10386,98 @@ executable: reaktron.app/Contents/MacOS/reaktron type: default workingdir: reaktron.app/Contents/MacOS -'1029650': +"1029650": installDir: OpenDay launch: - config: oslist: windows description: יום פתוח - description_loc: - english: יום פתוח executable: OpenDay.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows description: מנהל המודים - בוזגמוד - description_loc: - english: מנהל המודים - בוזגמוד - executable: www\\mods\\buzagmod\\Buzagmod.exe + executable: "www\\\\mods\\\\buzagmod\\\\Buzagmod.exe" type: option1 - workingdir: www\\mods\\buzagmod -'1029660': + workingdir: "www\\\\mods\\\\buzagmod" +"1029660": installDir: Athletics Games VR launch: - config: oslist: windows executable: Athletics Games.exe type: vr -'1029690': +"1029690": installDir: Sniper Elite 5 launch: - - executable: launcher\\sniperelite5.exe + - executable: "launcher\\\\sniperelite5.exe" type: default - - arguments: '-publisher' + - arguments: "-publisher" config: - ownsdlc: '1363480' + ownsdlc: "1363480" description: Launch Publisher build - description_loc: - english: Launch Publisher build - executable: launcher\\sniperelite5.exe + executable: "launcher\\\\sniperelite5.exe" nameLocalized: schinese: 狙击精英5 -'1029730': +"1029730": installDir: VR Ping Pong Pro launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: PINGPINGVR2CPP.exe type: vr -'1029750': +"1029750": installDir: Voipas launch: - config: oslist: windows executable: Voipas.exe type: default -'1029760': +"1029760": installDir: Tanknarok launch: - config: oslist: windows executable: Tanknarok.exe type: default -'1029770': {} -'1029780': +"1029770": {} +"1029780": installDir: Going Medieval launch: - config: oslist: windows executable: Going Medieval.exe type: none -'1029790': +"1029790": installDir: Qubes launch: - config: oslist: windows executable: Qubes.exe type: default -'1029830': {} -'1029840': +"1029830": {} +"1029840": installDir: Ne Touchez Pas 5 launch: - config: oslist: windows executable: Ne Touchez Pas 5.exe type: default -'1029860': - installDir: Amber's Airline - 7 Wonders +"1029860": + installDir: "Amber's Airline - 7 Wonders" launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: Amber's Airline 2.exe + executable: "Amber's Airline 2.exe" type: default - config: oslist: macos - executable: AA2_Steam_Mac.app\\Contents\\MacOS\\AA2_Steam_Mac + executable: "AA2_Steam_Mac.app\\\\Contents\\\\MacOS\\\\AA2_Steam_Mac" type: default -'1029870': +"1029870": installDir: Unsung Heroes - The Golden Mask launch: - config: @@ -10570,48 +10488,44 @@ oslist: macos executable: Unsung Heroes.app type: default -'1029890': +"1029890": installDir: Layers of Fear 2 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: LOF2.exe type: default nameLocalized: japanese: Layers of Fear 2-恐怖のクルーズ -'1029900': +"1029900": installDir: Rummy 3D Premium launch: - config: oslist: windows executable: Rummy3D.exe type: default - - arguments: '-safe' + - arguments: "-safe" description: Safe mode (windowed) - description_loc: - english: Safe mode (windowed) executable: Rummy3D.exe type: option2 - - arguments: '-autoconfig' + - arguments: "-autoconfig" description: Autoconfig mode (fullscreen) - description_loc: - english: Autoconfig mode (fullscreen) executable: Rummy3D.exe type: option3 nameLocalized: french: Rami 3D Premium german: Rommé 3D Premium -'1029920': +"1029920": installDir: Twinship launch: - executable: Twinship.exe type: none -'1029930': +"1029930": installDir: Bud Blitz launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: Bud Blitz.exe @@ -10621,291 +10535,291 @@ description: Launch executable: Bud Blitz.app type: default -'1029940': +"1029940": installDir: Open Colour launch: - config: oslist: windows executable: Open Colour.exe type: default -'1029950': +"1029950": installDir: Big Boot Baseball launch: - config: oslist: windows - executable: BigBootBaseball V6.5 (Steam)\\Big Boot Baseball V6.5.exe + executable: "BigBootBaseball V6.5 (Steam)\\\\Big Boot Baseball V6.5.exe" type: default -'1029960': {} -'1029970': +"1029960": {} +"1029970": installDir: DigDeep launch: - config: oslist: macos - executable: DD.app\\Contents\\MacOS\\DD + executable: "DD.app\\\\Contents\\\\MacOS\\\\DD" type: default - config: oslist: windows executable: dd.exe type: default -'1029980': +"1029980": installDir: UBERMOSH Vol.7 launch: - config: oslist: windows executable: UBERMOSH Vol 7.exe type: default -'1029990': +"1029990": installDir: Wet Beach Pussies launch: - executable: WetBeachPussies.exe type: none -'1030060': +"1030060": installDir: Seed of Life launch: - config: oslist: windows executable: SeedOfLife.exe type: default -'1030090': +"1030090": installDir: Legend of Girl Friend And GDC launch: - executable: Game.exe type: default -'1030100': {} -'1030160': - installDir: PuppetShow Lightning Strikes Collector's Edition +"1030100": {} +"1030160": + installDir: "PuppetShow Lightning Strikes Collector's Edition" launch: - config: oslist: windows executable: PuppetShow_LightningStrikes_CE.exe type: default -'1030170': - installDir: Fear for Sale Endless Voyage Collector's Edition +"1030170": + installDir: "Fear for Sale Endless Voyage Collector's Edition" launch: - config: oslist: windows executable: FearForSale_EndlessVoyage_CE.exe type: default -'1030180': - installDir: Dark Tales Edgar Allan Poe's The Premature Burial Collector's Edition +"1030180": + installDir: "Dark Tales Edgar Allan Poe's The Premature Burial Collector's Edition" launch: - config: oslist: windows executable: DT_EAP_ThePrematureBurial.exe type: default -'1030190': - installDir: Amaranthine Voyage The Orb of Purity Collector's Edition +"1030190": + installDir: "Amaranthine Voyage The Orb of Purity Collector's Edition" launch: - config: oslist: windows executable: AmaranthineVoyage_TheOrbOfPurity_CE.exe type: default -'1030210': +"1030210": installDir: Torchlight III launch: - - arguments: '-tl.environment=tl3' + - arguments: "-tl.environment=tl3" config: betakey: default - osarch: '64' + osarch: "64" oslist: windows description: Torchlight III executable: Frontiers.exe type: option1 - - arguments: '-tl.environment=dev' + - arguments: "-tl.environment=dev" config: betakey: release-shipping - osarch: '64' + osarch: "64" oslist: windows description: Torchlight III (release-shipping) executable: Frontiers.exe type: option1 - - arguments: '-tl.environment=dev' + - arguments: "-tl.environment=dev" config: betakey: release-test - osarch: '64' + osarch: "64" oslist: windows description: Torchlight III (release-test) executable: Frontiers.exe type: option1 - - arguments: '-tl.environment=ptr' + - arguments: "-tl.environment=ptr" config: betakey: preview - osarch: '64' + osarch: "64" oslist: windows description: Torchlight III (preview) executable: Frontiers.exe type: option1 - - arguments: '-tl.environment=tl3' + - arguments: "-tl.environment=tl3" config: betakey: live-mirror - osarch: '64' + osarch: "64" oslist: windows description: Torchlight III (live-mirror) executable: Frontiers.exe type: option1 - - arguments: '-tl.environment=ptr' + - arguments: "-tl.environment=ptr" config: betakey: preview-test - osarch: '64' + osarch: "64" oslist: windows description: Torchlight III (preview-test) executable: Frontiers.exe type: option1 - - arguments: '-tl.environment=dev' + - arguments: "-tl.environment=dev" config: betakey: mainline-shipping - osarch: '64' + osarch: "64" oslist: windows description: Torchlight III (mainline-shipping) executable: Frontiers.exe type: option1 - - arguments: '-tl.environment=dev' + - arguments: "-tl.environment=dev" config: betakey: mainline-test - osarch: '64' + osarch: "64" oslist: windows description: Torchlight III (mainline-test) executable: Frontiers.exe type: option1 - - arguments: '-tl.environment=dev' + - arguments: "-tl.environment=dev" config: betakey: mainline-dev - osarch: '64' + osarch: "64" oslist: windows description: Torchlight III (mainline-dev) executable: Frontiers.exe type: option1 - - arguments: '-tl.environment=dev' + - arguments: "-tl.environment=dev" config: betakey: playtest - osarch: '64' + osarch: "64" oslist: windows description: Torchlight III (playtest) executable: Frontiers.exe type: option1 - - arguments: '-tl.environment=test' + - arguments: "-tl.environment=test" config: betakey: test-server - osarch: '64' + osarch: "64" oslist: windows description: Torchlight III (test-server) executable: Frontiers.exe type: option1 - - arguments: '-tl.environment=dev' + - arguments: "-tl.environment=dev" config: betakey: special - osarch: '64' + osarch: "64" oslist: windows description: Torchlight III (special) executable: Frontiers.exe type: option1 - - arguments: '-tl.environment=cert' + - arguments: "-tl.environment=cert" config: betakey: cert-server - osarch: '64' + osarch: "64" oslist: windows description: Torchlight III (cert-server) executable: Frontiers.exe type: option1 - - arguments: '-tl.environment=dev' + - arguments: "-tl.environment=dev" config: betakey: hotfix-shipping - osarch: '64' + osarch: "64" oslist: windows description: Torchlight III (hotfix-shipping) executable: Frontiers.exe type: option1 - - arguments: '-tl.environment=dev' + - arguments: "-tl.environment=dev" config: betakey: hotfix-test - osarch: '64' + osarch: "64" oslist: windows description: Torchlight III (hotfix-test) executable: Frontiers.exe type: option1 - - arguments: '-tl.environment=ptr' + - arguments: "-tl.environment=ptr" config: betakey: public-test-realm - osarch: '64' + osarch: "64" oslist: windows description: Torchlight III (Public Test Realm) executable: Frontiers.exe type: none - - arguments: '-tl.environment=tl3' + - arguments: "-tl.environment=tl3" config: betakey: amd-test - osarch: '64' + osarch: "64" oslist: windows description: Torchlight III (AMD-Test) executable: Frontiers.exe type: none - - arguments: '-tl.environment=dev' + - arguments: "-tl.environment=dev" config: betakey: developer - osarch: '64' + osarch: "64" oslist: windows description: Torchlight III (Developers Playground) executable: Frontiers.exe type: none -'1030240': +"1030240": installDir: DinoTour launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: VirtualDINOR.exe type: vr -'1030280': {} -'1030300': {} -'1030330': +"1030280": {} +"1030300": {} +"1030330": installDir: Wolf or Boy launch: - config: oslist: windows executable: Wolf or Boy.exe type: none -'1030360': +"1030360": installDir: Midnight Evil launch: - config: oslist: windows executable: Midnight Evil.exe type: default -'1030380': +"1030380": installDir: Real Fishing VR launch: - config: oslist: windows executable: RFishingVR.exe type: vr -'1030410': +"1030410": installDir: Cryptrunner launch: - config: oslist: windows executable: cryptrunner.exe type: default -'1030460': {} -'1030470': +"1030460": {} +"1030470": installDir: With loneliness launch: - executable: Withloneliness.exe type: vr -'1030520': +"1030520": installDir: Grater launch: - config: oslist: windows executable: Grater.exe type: none -'1030530': +"1030530": installDir: Eleven Islands launch: - config: oslist: windows executable: Eleven Islands.exe type: default -'1030580': +"1030580": installDir: Your Future Self launch: - config: @@ -10917,121 +10831,119 @@ executable: YourFutureSelf.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: YourFutureSelf.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: YourFutureSelf.x86_64 type: default -'1030730': +"1030730": installDir: VIP Shuttle launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: VIP Shuttle.exe type: vr -'1030740': {} -'1030760': +"1030740": {} +"1030760": installDir: SteamDolls - Order Of Chaos - Free launch: - config: oslist: windows executable: SteamDolls2D.exe type: default -'1030780': {} -'1030810': {} -'1030830': +"1030780": {} +"1030810": {} +"1030830": installDir: Mafia II Definitive Edition launch: - config: betakey: old - osarch: '64' + osarch: "64" oslist: windows - executable: pc\\Mafia2Launcher\\Launcher.exe + executable: "pc\\\\Mafia2Launcher\\\\Launcher.exe" type: default - workingdir: pc\\Mafia2Launcher + workingdir: "pc\\\\Mafia2Launcher" - config: betakey: capture_tools - osarch: '64' + osarch: "64" oslist: windows description: Release Configuration executable: pc/Mafia2_Release.exe type: option1 workingdir: pc - config: - osarch: '64' + osarch: "64" oslist: windows description: 2K Launcher - description_loc: - english: 2K Launcher - executable: \\2KLauncher\\LauncherPatcher.exe + executable: "\\\\2KLauncher\\\\LauncherPatcher.exe" type: default workingdir: pc nameLocalized: - czech: 'Mafia II: Definitivní edice' + czech: "Mafia II: Definitivní edice" japanese: マフィアII コンプリート・エディション koreana: 마피아 II 데피니티브 에디션 - polish: 'Mafia II: Edycja Ostateczna' + polish: "Mafia II: Edycja Ostateczna" schinese: 四海兄弟II 最终版 - spanish: 'Mafia II: Edición Definitiva' + spanish: "Mafia II: Edición Definitiva" tchinese: 四海兄弟II 決定版 -'1030840': +"1030840": installDir: Mafia Definitive Edition launch: - arguments: /steam config: betakey: age_rating - description: 'Play Mafia: Definitive Edition Age Rating' + description: "Play Mafia: Definitive Edition Age Rating" executable: scotch_showcase.exe type: none - config: betakey: security - description: 'Play Mafia: Definitive Edition Master' + description: "Play Mafia: Definitive Edition Master" executable: Scotch_Master.exe type: none - arguments: /steam /startdevsaves config: betakey: external_partners - description: 'Play Mafia: Definitive Edition DevSaves' + description: "Play Mafia: Definitive Edition DevSaves" executable: scotch_profiling.exe type: none - arguments: /steam /cloudSave config: betakey: nightly - description: 'Play Mafia: Definitive Edition Launcher' + description: "Play Mafia: Definitive Edition Launcher" executable: launcher.exe type: none - arguments: /steam /cloudSave config: betakey: beta-qa - description: 'Play Mafia: Definitive Edition Launcher' + description: "Play Mafia: Definitive Edition Launcher" executable: launcher.exe type: none - arguments: /steam /startdevsaves config: betakey: nightly - description: 'Play Mafia: Definitive Edition DevSaves' + description: "Play Mafia: Definitive Edition DevSaves" executable: Scotch_release.exe type: none - arguments: /steam /startdevsaves config: betakey: beta-qa - description: 'Play Mafia: Definitive Edition DevSaves' + description: "Play Mafia: Definitive Edition DevSaves" executable: Scotch_profiling.exe type: none - arguments: /steam config: betakey: age_rating_2 - description: 'Play Mafia: Definitive Edition Age Rating' + description: "Play Mafia: Definitive Edition Age Rating" executable: scotch_showcase.exe type: none - config: betakey: compatibility - executable: \\2KLauncher\\LauncherPatcher.exe + executable: "\\\\2KLauncher\\\\LauncherPatcher.exe" type: none - config: betakey: old @@ -11052,38 +10964,36 @@ - arguments: /steam /cloudSave config: betakey: post_release_update - description: 'Play Mafia: Definitive Edition Launcher' + description: "Play Mafia: Definitive Edition Launcher" executable: launcher.exe type: none - arguments: /steam /startdevsaves config: betakey: post_release_update - description: 'Play Mafia: Definitive Edition DevSaves' + description: "Play Mafia: Definitive Edition DevSaves" executable: Scotch_profiling.exe type: none - arguments: /steam /cloudSave config: betakey: external_partners - description: 'Play Mafia: Definitive Edition Launcher' + description: "Play Mafia: Definitive Edition Launcher" executable: launcher.exe type: none - config: - osarch: '64' + osarch: "64" oslist: windows description: Launcher Patcher - description_loc: - english: Launcher Patcher - executable: \\2KLauncher\\LauncherPatcher.exe + executable: "\\\\2KLauncher\\\\LauncherPatcher.exe" type: default nameLocalized: - czech: 'Mafia: Definitivní edice' + czech: "Mafia: Definitivní edice" japanese: マフィア コンプリート・エディション koreana: 마피아 데피니티브 에디션 - polish: 'Mafia: Edycja Ostateczna' - schinese: ' 《四海兄弟: 最终版》​' - spanish: 'Mafia: Edición Definitiva' - tchinese: ' 《四海兄弟:決定版》' -'1030950': + polish: "Mafia: Edycja Ostateczna" + schinese: " 《四海兄弟: 最终版》​" + spanish: "Mafia: Edición Definitiva" + tchinese: " 《四海兄弟:決定版》" +"1030950": installDir: Seventh Circle launch: - config: @@ -11094,21 +11004,21 @@ oslist: macos executable: Seventh Circle.app type: default -'1030960': +"1030960": installDir: Land War launch: - config: oslist: windows executable: Land War.exe type: none -'1030970': +"1030970": installDir: Dream Rose launch: - config: oslist: windows executable: Game.exe type: default -'1031020': +"1031020": installDir: Hadaka Shitsuji - Naked Butlers launch: - config: @@ -11123,44 +11033,42 @@ oslist: macos executable: Hadaka.app type: default -'1031090': +"1031090": installDir: Sword Defense launch: - config: oslist: windows executable: game.exe type: vr -'1031110': +"1031110": installDir: Unroaded launch: - executable: unroaded.exe type: none -'1031120': +"1031120": installDir: Bakery Simulator launch: - arguments: SAVEWINPOS=1 config: - osarch: '64' + osarch: "64" oslist: windows executable: BakerySimulatorFull.exe type: default - - arguments: 'cmd /c \"set OPENSSL_ia32cap=:~0x20000000 && %command%\"' + - arguments: "cmd /c \\\"set OPENSSL_ia32cap=:~0x20000000 && %command%\\\"" config: - osarch: '64' + osarch: "64" oslist: windows description: in Safe Mode (Intel >10th Gen) - description_loc: - english: in Safe Mode (Intel >10th Gen) executable: BakerySimulatorFull.exe type: option1 nameLocalized: schinese: 面包房模拟器 -'1031130': +"1031130": installDir: Bat Hotel launch: - executable: Bat Hotel.exe type: default -'1031140': +"1031140": installDir: The Horus Heresy Legions launch: - config: @@ -11169,10 +11077,10 @@ type: default - config: oslist: macos - executable: HorusHeresyLegions.app\\Contents\\MacOS\\Legions + executable: "HorusHeresyLegions.app\\\\Contents\\\\MacOS\\\\Legions" type: default -'1031160': {} -'1031170': +"1031160": {} +"1031170": installDir: Elf Enchanter Arousing Anima launch: - config: @@ -11187,33 +11095,33 @@ oslist: linux executable: Elf_Enchanter.sh type: default -'1031200': +"1031200": installDir: Mad Gun Range VR Simulator launch: - config: oslist: windows executable: Mad Gun Range VR Simulator.exe type: othervr -'1031210': +"1031210": installDir: Fantasy Heroes launch: - description: Launch executable: Game.exe type: none -'1031260': +"1031260": installDir: Sexy Heroine! Part 2 launch: - description: Start executable: Game.exe type: none -'1031270': +"1031270": installDir: Farming Life launch: - executable: Farming Life.exe type: default nameLocalized: schinese: 农场生活 -'1031290': +"1031290": installDir: Grove flowers launch: - config: @@ -11221,7 +11129,7 @@ description: Grove flowers executable: nw.exe type: default -'1031310': +"1031310": installDir: PolygonsRoyale launch: - config: @@ -11230,46 +11138,46 @@ type: default - config: oslist: macos - executable: PolygonsRoyale.app\\Contents\\MacOS\\PolygonsRoyale + executable: "PolygonsRoyale.app\\\\Contents\\\\MacOS\\\\PolygonsRoyale" type: default - config: oslist: linux executable: PolygonsRoyale.x86_64 type: default -'1031320': +"1031320": installDir: Malevolence launch: - executable: Malevolence.exe type: default -'1031330': +"1031330": installDir: Lyratha Labyrinth - Survival - Escape launch: - config: oslist: windows executable: Lyratha.exe type: default -'1031370': +"1031370": installDir: Space Bound launch: - config: oslist: windows executable: SpaceBound2.0.exe type: default -'1031380': +"1031380": installDir: Long Z-Night launch: - config: oslist: windows executable: Long_Z_Night_beta3 type: default -'1031440': +"1031440": installDir: TOKYO CHRONOS launch: - config: oslist: windows executable: Chronos.exe type: vr -'1031460': +"1031460": installDir: Sail Forth launch: - config: @@ -11284,14 +11192,14 @@ oslist: linux executable: sail-forth type: default -'1031470': +"1031470": installDir: Beasty Karts launch: - config: oslist: windows executable: BeastyKarts.exe type: default -'1031480': +"1031480": installDir: Touhou FDF Part II launch: - config: @@ -11303,11 +11211,11 @@ japanese: 東方幕華祭 春雪篇 schinese: 东方幕华祭 春雪篇 tchinese: 東方幕華祭 春雪篇 -'1031500': +"1031500": installDir: SUPER ROBOT WARS V launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SRWV.EXE type: default @@ -11316,11 +11224,11 @@ koreana: 슈퍼로봇대전 V schinese: 超级机器人大战V tchinese: 超級機器人大戰V -'1031510': +"1031510": installDir: SUPER ROBOT WARS X launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SRWX.EXE type: default @@ -11329,29 +11237,29 @@ koreana: 슈퍼로봇대전 X schinese: 超级机器人大战X tchinese: 超級機器人大戰X -'1031540': +"1031540": installDir: aMAZE Lunar launch: - config: oslist: windows executable: aMAZE Lunar.exe type: default -'1031550': - installDir: Lovers ' Smiles 2 +"1031550": + installDir: "Lovers ' Smiles 2" launch: - config: oslist: windows - executable: Lovers ' Smiles 2.exe + executable: "Lovers ' Smiles 2.exe" type: default -'1031560': +"1031560": installDir: Sudoku3D 2 The Cube launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Sudoku3D2.exe type: default -'1031570': +"1031570": installDir: Hookshot launch: - config: @@ -11362,7 +11270,7 @@ oslist: linux executable: Hookshot.x86_64 type: none -'1031580': +"1031580": installDir: 4DSnake launch: - config: @@ -11373,21 +11281,21 @@ oslist: linux executable: Kick type: default -'1031590': +"1031590": installDir: The Adventures of Perseus launch: - config: oslist: windows executable: Perseus.exe type: default -'1031630': +"1031630": installDir: Vaporspace launch: - config: oslist: windows executable: VaporspacePC.exe type: default -'1031640': +"1031640": installDir: Super Orb Collector launch: - config: @@ -11398,12 +11306,12 @@ oslist: linux executable: Super Orb Collector.x86_64 type: none -'1031650': +"1031650": installDir: Emu War! launch: - executable: EmuWar.exe type: default -'1031660': +"1031660": installDir: Mango Cart launch: - config: @@ -11415,116 +11323,116 @@ executable: Mango Cart.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Mango Cart.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Mango Cart.x86_64 type: default -'1031670': +"1031670": installDir: FPSBois launch: - config: oslist: windows executable: fps2018.exe type: default -'1031700': +"1031700": installDir: Survivor launch: - config: oslist: windows - executable: desktop_survivor2_pc\\desktop_survivor2_pc.exe + executable: "desktop_survivor2_pc\\\\desktop_survivor2_pc.exe" type: default - config: oslist: macos executable: desktop_survivor2_mac.app/Contents/MacOS/desktop_penkkisurvivor2_mac type: default -'1031770': +"1031770": installDir: WarriorHinora launch: - config: oslist: windows executable: Game.exe type: default -'1031800': +"1031800": installDir: Codex Temondera Lost Vision launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows executable: LostVision.exe type: default -'1031810': {} -'1031830': +"1031810": {} +"1031830": installDir: constructionary launch: - executable: Constructionary.exe type: vr -'1031840': +"1031840": installDir: ShopBattle launch: - executable: Shop battle.exe type: default -'1031850': +"1031850": installDir: the_witchcraft_of_skysword launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: witchcraft-of-skysword.exe type: none -'1031910': +"1031910": installDir: ThePathToDie launch: - config: oslist: windows executable: ThePathToDie.exe type: default -'1031920': - installDir: ' Сидения у Подъезда' +"1031920": + installDir: " Сидения у Подъезда" launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Симулятор Сидения у Подъезда executable: Симулятор Сидения у Подъезда.exe type: option1 - config: - osarch: '64' + osarch: "64" oslist: windows - ownsdlc: '1216640' + ownsdlc: "1216640" description: Симулятор Сидения у Подъезда Online executable: Online.exe type: option2 -'1032040': +"1032040": installDir: Dragonflamehighschool2 launch: - config: oslist: windows executable: Dragonflamehighschool2.exe type: default -'1032060': +"1032060": installDir: Carreras de Velocidad launch: - config: oslist: windows executable: Carreras de Velocidad.exe type: default -'1032070': +"1032070": installDir: Mostly Scared of Spiders launch: - config: oslist: macos - executable: MostlyScaredOfSpiders.app\\Contents\\MacOS\\MostlyScaredOfSpiders + executable: "MostlyScaredOfSpiders.app\\\\Contents\\\\MacOS\\\\MostlyScaredOfSpiders" type: default - config: oslist: windows - executable: MostlyScaredOfSpiders\\Mostly scared of spiders.exe + executable: "MostlyScaredOfSpiders\\\\Mostly scared of spiders.exe" type: default -'1032080': +"1032080": installDir: Boxed Out launch: - config: @@ -11535,39 +11443,39 @@ oslist: macos executable: Boxed Out.app type: default -'1032090': +"1032090": installDir: War of Power The Last Fight launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: War of Power The Last Fight.exe type: default -'1032120': +"1032120": installDir: StellarSurvivor launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SurvivalGame.exe type: default -'1032140': - installDir: Let's Worm +"1032140": + installDir: "Let's Worm" launch: - config: oslist: windows - executable: Let's Worm.exe + executable: "Let's Worm.exe" type: default -'1032170': +"1032170": installDir: robo-instructus launch: - config: - osarch: '64' + osarch: "64" oslist: linux executable: run-robo-instructus.sh type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: robo_instructus.exe type: default @@ -11575,20 +11483,20 @@ oslist: macos executable: robo_instructus type: default -'1032210': +"1032210": installDir: 2104.Aftermath launch: - config: oslist: windows executable: Aftemath.exe type: none -'1032220': {} -'1032230': - installDir: Bob's Cat Challenge +"1032220": {} +"1032230": + installDir: "Bob's Cat Challenge" launch: - - executable: Bob's Cat Challenge 1.0.exe + - executable: "Bob's Cat Challenge 1.0.exe" type: none -'1032240': +"1032240": installDir: Line Loops - Logic Puzzles launch: - config: @@ -11597,65 +11505,65 @@ type: default - config: oslist: macos - executable: Line Loops.app\\Contents\\MacOS\\Line Loops + executable: "Line Loops.app\\\\Contents\\\\MacOS\\\\Line Loops" type: default -'1032260': +"1032260": installDir: DodgeThis launch: - executable: DT.exe type: default -'1032280': {} -'1032340': - installDir: Gekido Kintaro's Revenge +"1032280": {} +"1032340": + installDir: "Gekido Kintaro's Revenge" launch: - executable: Gekido.exe type: none -'1032360': {} -'1032420': +"1032360": {} +"1032420": installDir: It comes from hell launch: - config: oslist: windows executable: It_comes_from_hell.exe type: none -'1032430': +"1032430": installDir: Blood Trail launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: BloodTrail_419ai.exe type: vr - config: - osarch: '64' + osarch: "64" oslist: windows executable: BloodTrail_419ai.exe type: othervr -'1032440': +"1032440": installDir: BoardQuizzAdventure launch: - config: oslist: windows executable: BoardQuizzAdventure.exe type: default -'1032450': +"1032450": installDir: FallenHearts launch: - - arguments: '-force-d3d11' + - arguments: "-force-d3d11" config: - osarch: '64' + osarch: "64" oslist: windows description: Game (Vulkan) executable: FH.exe type: default - - arguments: '-force-vulkan' + - arguments: "-force-vulkan" config: - osarch: '64' + osarch: "64" oslist: windows description: Fallen Hearts (Vulkan) executable: FH.exe type: option1 -'1032510': +"1032510": installDir: Balance Roll launch: - config: @@ -11665,22 +11573,22 @@ nameLocalized: schinese: 平衡滚动 tchinese: 平衡滾動 -'1032520': +"1032520": installDir: JermaSlots launch: - config: oslist: windows executable: JermaSlots.exe type: default -'1032530': {} -'1032560': +"1032530": {} +"1032560": installDir: Faux launch: - config: oslist: windows executable: Faux.exe type: default -'1032570': +"1032570": installDir: PilotUnknown launch: - config: @@ -11689,9 +11597,9 @@ type: default - config: oslist: macos - executable: PilotUnknown.app\\Contents\\MacOS\\PilotUnknown + executable: "PilotUnknown.app\\\\Contents\\\\MacOS\\\\PilotUnknown" type: default -'1032580': +"1032580": installDir: Eldritch Academy launch: - config: @@ -11709,25 +11617,19 @@ - config: oslist: windows description: Eldritch Academy (v1/v2) - description_loc: - english: Eldritch Academy (v1/v2) executable: Eldritch Academy.exe type: option1 - config: oslist: linux description: Eldritch Academy (v1/v2) - description_loc: - english: Eldritch Academy (v1/v2) executable: Eldritch Academy.sh type: option1 - config: oslist: macos description: Eldritch Academy (v1/v2) - description_loc: - english: Eldritch Academy (v1/v2) executable: Eldritch Academy.app type: option1 -'1032590': +"1032590": installDir: Heaven Dust launch: - config: @@ -11738,14 +11640,14 @@ english: Heaven Dust schinese: 秘馆疑踪 / Heaven Dust tchinese: 祕館疑蹤 / Heaven Dust -'1032650': +"1032650": installDir: Jungle Defence launch: - config: oslist: windows executable: JungleDefence.exe type: vr -'1032670': +"1032670": installDir: FOCUS on YOU launch: - arguments: hmd=steamvr @@ -11753,7 +11655,7 @@ oslist: windows executable: ProjectYUKI.exe type: vr -'1032730': +"1032730": installDir: Sticks And Bones launch: - config: @@ -11761,13 +11663,13 @@ description: Launch executable: Sticks And Bones.exe type: none -'1032740': {} -'1032770': +"1032740": {} +"1032770": installDir: Haprokon launch: - executable: Haprokon.exe type: none -'1032790': +"1032790": installDir: Journey of Greed launch: - config: @@ -11776,29 +11678,29 @@ type: default - config: oslist: macos - executable: JourneyOfGreed.app\\Contents\\MacOS\\Journey of Greed + executable: "JourneyOfGreed.app\\\\Contents\\\\MacOS\\\\Journey of Greed" type: default nameLocalized: sc_schinese: 冒险公社 schinese: 冒险公社 tchinese: 冒險公社 -'1032830': +"1032830": installDir: Eldervale launch: - config: oslist: windows executable: Eldervale.exe type: none -'1033000': +"1033000": installDir: Shoot The Zombirds VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Shoot The Zombirds VR.exe type: vr -'1033030': {} -'1033080': +"1033030": {} +"1033080": installDir: Letters - a written adventure launch: - config: @@ -11807,11 +11709,11 @@ type: none - config: oslist: macos - executable: Letters.app\\Contents\\MacOS\\Letters + executable: "Letters.app\\\\Contents\\\\MacOS\\\\Letters" type: none nameLocalized: schinese: 书信人生 -'1033090': +"1033090": installDir: aod launch: - config: @@ -11826,29 +11728,29 @@ oslist: linux executable: Game type: default -'1033100': +"1033100": installDir: Mobler launch: - config: oslist: windows executable: MoblerGame.exe type: default -'1033120': +"1033120": installDir: Trinity of Chaos launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: sexmotel.exe type: vr -'1033130': +"1033130": installDir: Monovert DX launch: - config: oslist: windows executable: Monovert DX.exe type: default -'1033140': +"1033140": installDir: Church Era launch: - config: @@ -11859,7 +11761,7 @@ oslist: macos executable: Church_Era.app type: default -'1033170': +"1033170": installDir: Talisman Origins launch: - config: @@ -11870,51 +11772,51 @@ oslist: macos executable: Origins.app type: default -'1033210': +"1033210": installDir: Winter Fury Longest Road launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: LongestRoad.exe type: vr -'1033220': +"1033220": installDir: Shrink launch: - config: oslist: windows executable: Shrink.exe type: default -'1033230': +"1033230": installDir: Sheep Collision launch: - config: oslist: windows executable: Sheep_Collision.exe type: none -'1033240': +"1033240": installDir: Nystagmus launch: - config: oslist: windows executable: Nystagmus.exe type: default -'1033250': +"1033250": installDir: BluBoy The Journey Begins launch: - config: oslist: windows executable: bluboy the journey begins.exe type: default -'1033330': +"1033330": installDir: DayZeroBCS launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: DayZero/DayZero.exe type: none -'1033340': +"1033340": installDir: biorhythm launch: - config: @@ -11925,15 +11827,15 @@ oslist: macos executable: biorhythm.app/Contents/MacOS/biorhythm type: default -'1033360': +"1033360": installDir: Bears in Tanks launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: BearsInTanks.exe type: default -'1033370': +"1033370": installDir: Fruit Crawler launch: - config: @@ -11947,8 +11849,8 @@ - config: oslist: linux executable: Fruit Crawler -'1033380': {} -'1033420': +"1033380": {} +"1033420": installDir: 9-nine-Episode 2 launch: - executable: nine_sorairo.exe @@ -11957,88 +11859,88 @@ japanese: 9-nine-そらいろそらうたそらのおと schinese: 9-nine-天色天歌天籁音 tchinese: 9-nine-天色天歌天籁音 -'1033450': +"1033450": installDir: Treasure_chest_Corps launch: - config: oslist: windows executable: Treasure chest Corps-結界を維持するため、魔物を退治した.exe type: default -'1033510': +"1033510": installDir: redroom launch: - config: oslist: windows executable: Red Room.exe type: none -'1033540': {} -'1033580': +"1033540": {} +"1033580": installDir: Nano Driller launch: - config: oslist: windows executable: Nano Driller.exe type: default -'1033590': {} -'1033600': {} -'1033630': +"1033590": {} +"1033600": {} +"1033630": installDir: Tiger Tank 59 Ⅰ Break The Fog launch: - config: oslist: windows executable: game.exe type: default -'1033650': {} -'1033660': +"1033650": {} +"1033660": installDir: Destruction launch: - config: oslist: windows executable: Destruction.exe type: default -'1033670': +"1033670": installDir: Defoliation launch: - config: oslist: windows executable: Defoliation.exe type: default -'1033700': +"1033700": installDir: Kingdom Of Rhea launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: NewKoR.exe type: default -'1033710': +"1033710": installDir: Froggo launch: - executable: Froggo.exe type: none -'1033720': +"1033720": installDir: The Psychiatrist launch: - config: oslist: windows executable: thepsych.exe type: none -'1033780': +"1033780": installDir: Lootbox Lyfe launch: - config: oslist: windows executable: LBL.exe type: default -'1033810': +"1033810": installDir: New Age launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: NewAgeClient.exe type: default -'1033860': +"1033860": installDir: Art of Horology launch: - config: @@ -12049,39 +11951,39 @@ oslist: macos executable: AoH_MacOS_2018-10-21.app type: default -'1033880': +"1033880": installDir: Press F to pay respects launch: - executable: Press F to pay respects.exe type: default -'1033910': +"1033910": installDir: Hyper Mum Ft Adult Gaming launch: - executable: Hyper Mum Ft Adult Gaming.exe type: default -'1033950': +"1033950": installDir: Lamentum launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Lamentum.exe type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: Lamentum_Linux.x86_64 nameLocalized: schinese: 哀歌 -'1034030': +"1034030": installDir: Bashed.OS launch: - config: oslist: windows executable: bos1.exe type: default -'1034040': - installDir: 'Causa, Voices of the Dusk' +"1034040": + installDir: "Causa, Voices of the Dusk" launch: - config: oslist: windows @@ -12089,88 +11991,88 @@ type: none nameLocalized: schinese: 缘,薄暮之声 -'1034060': +"1034060": installDir: Samosbor launch: - - arguments: '-popupwindow' + - arguments: "-popupwindow" config: oslist: windows executable: Samosbor.exe type: default -'1034120': +"1034120": installDir: GACHIMUCHI The Card Game launch: - executable: GACHIMUCHI_The_Card_Game.exe type: none -'1034130': +"1034130": installDir: Dungeon Bosses launch: - config: oslist: windows executable: Dungeon Bosses.exe type: default -'1034140': +"1034140": installDir: Subverse launch: - executable: Subverse.exe type: default -'1034160': +"1034160": installDir: Exteme Racing on Highway launch: - config: oslist: windows executable: Extreme Racing on Highway.exe type: default -'1034200': +"1034200": installDir: ItsSimpleSHOOT launch: - config: oslist: windows - executable: 'Its Simple, SHOOT.exe' + executable: "Its Simple, SHOOT.exe" type: default -'1034230': +"1034230": installDir: SSS launch: - config: oslist: windows executable: game.exe type: none -'1034240': +"1034240": installDir: The Far Kingdoms Awakening Solitaire launch: - config: oslist: windows executable: AwakeningSolitaire.exe type: default -'1034250': +"1034250": installDir: Winter Solitaire launch: - config: oslist: windows executable: WinterSolitaire.exe type: default -'1034260': +"1034260": installDir: Sacred Grove Solitaire launch: - config: oslist: windows executable: SacredGroveSolitaire.exe type: default -'1034270': +"1034270": installDir: Luxor Solitaire launch: - config: oslist: windows executable: LuxorSolitaire.exe type: default -'1034280': +"1034280": installDir: Greed 3 - Old Enemies Returning launch: - config: oslist: windows executable: Greed3.exe type: default -'1034370': +"1034370": installDir: Iron Heart launch: - config: @@ -12181,21 +12083,21 @@ oslist: macos executable: Iron Heart.app type: default -'1034380': - installDir: Alice's Jigsaw. Wonderland Chronicles +"1034380": + installDir: "Alice's Jigsaw. Wonderland Chronicles" launch: - config: oslist: windows - executable: Alice's Jigsaw. Wonderland Chronicles.exe + executable: "Alice's Jigsaw. Wonderland Chronicles.exe" type: default -'1034390': - installDir: Alice's Jigsaw. Wonderland Chronicles 2 +"1034390": + installDir: "Alice's Jigsaw. Wonderland Chronicles 2" launch: - config: oslist: windows - executable: Alice's Jigsaw. Wonderland Chronicles 2.exe + executable: "Alice's Jigsaw. Wonderland Chronicles 2.exe" type: default -'1034400': +"1034400": installDir: Mystery Solitaire The Black Raven launch: - config: @@ -12206,30 +12108,30 @@ oslist: macos executable: Mystery Solitaire. The Black Raven.app type: default -'1034410': +"1034410": installDir: Strike Solitaire launch: - config: oslist: windows executable: Strike Solitaire.exe type: default -'1034440': +"1034440": installDir: Roach Killer launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: RoachKiller.exe type: vr -'1034490': +"1034490": installDir: Honeycomb Clash launch: - config: oslist: windows executable: Honeycomb Clash.exe type: default -'1034530': {} -'1034540': +"1034530": {} +"1034540": installDir: Lorenzo il Magnifico launch: - config: @@ -12240,7 +12142,7 @@ oslist: macos executable: LiM.app type: default -'1034560': +"1034560": installDir: Tales of Nebezem RPG Red Peril launch: - config: @@ -12248,7 +12150,7 @@ executable: Game.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Game type: default @@ -12256,9 +12158,9 @@ oslist: macos executable: Game.app type: default -'1034580': {} -'1034590': {} -'1034610': +"1034580": {} +"1034590": {} +"1034610": installDir: InMyMind launch: - config: @@ -12266,7 +12168,7 @@ description: In.My.Mind - ENG executable: InMyMind.exe type: default -'1034700': +"1034700": installDir: GRAY launch: - config: @@ -12274,50 +12176,50 @@ description: Launch the game executable: GRAY.exe type: default -'1034740': +"1034740": installDir: Hard Light Vector launch: - config: oslist: windows executable: HardLightVector.exe type: default -'1034750': +"1034750": installDir: TheFlowerCollectors launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TheFlowerCollectors.exe type: none -'1034810': +"1034810": installDir: Pax Romana Romulus launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows executable: game.exe type: default -'1034820': +"1034820": installDir: Puss in Boots Fear Not Hooman launch: - executable: Puss in Boots Fear Not Hooman.exe type: none -'1034830': +"1034830": installDir: IN GAME launch: - - arguments: '-windowed' + - arguments: "-windowed" config: oslist: windows description: Launch executable: NewGameandSoftware.exe type: none - - arguments: '-windowed' + - arguments: "-windowed" config: oslist: windows description: Launch executable: NewGameandSoftware.exe type: none -'1034850': +"1034850": installDir: Best Friend Forever launch: - config: @@ -12328,25 +12230,25 @@ oslist: macos executable: BFF.app type: default -'1034860': +"1034860": installDir: GRANDIA HD Remaster launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: launcher.exe type: default nameLocalized: japanese: グランディア HDリマスター schinese: 冒險奇譚高畫質重製版 -'1034870': - installDir: Norman's Night In +"1034870": + installDir: "Norman's Night In" launch: - config: oslist: windows executable: NormansNightIn.exe type: none -'1034880': +"1034880": installDir: DoraKone launch: - config: @@ -12355,20 +12257,20 @@ type: none - config: oslist: macos - executable: DoraKone.app\\Contents\\MacOS\\DoraKone + executable: "DoraKone.app\\\\Contents\\\\MacOS\\\\DoraKone" type: none - config: oslist: linux executable: DoraKone.sh type: none -'1034890': +"1034890": installDir: Obey Me launch: - config: oslist: windows executable: ObeyMe.exe type: default -'1034900': +"1034900": installDir: Blaster Master Zero launch: - config: @@ -12376,21 +12278,21 @@ executable: exe/bsm.exe type: default workingdir: exe/ -'1034910': +"1034910": installDir: Blaster Master Zero 2 launch: - config: oslist: windows executable: game.exe type: default -'1034920': +"1034920": installDir: Whipseey and the Lost Atlas launch: - config: oslist: windows executable: Whipseey.exe type: default -'1034940': +"1034940": installDir: Higurashi When They Cry Hou - Ch.7 Minagoroshi launch: - config: @@ -12402,25 +12304,25 @@ executable: HigurashiEp07.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: HigurashiEp07.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: HigurashiEp07.x86_64 type: default nameLocalized: japanese: ひぐらしのなく頃に奉 皆殺し編 -'1034950': +"1034950": installDir: Mad Princess The Great Gladiators launch: - config: oslist: windows executable: Game.exe type: default -'1035010': +"1035010": installDir: Mini Gal4Xy launch: - config: @@ -12432,23 +12334,23 @@ executable: Mini Gal4Xy.app type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: Mini Gal4Xy.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: Mini Gal4Xy.x86_64 type: none -'1035030': +"1035030": installDir: Funbag Fantasy Sideboob Story launch: - config: oslist: windows executable: Funbag Fantasy Sideboob Story.exe type: default -'1035050': +"1035050": installDir: Alt-Frequencies launch: - config: @@ -12459,45 +12361,45 @@ oslist: macos executable: radio_gold_s27_steam_osx.app type: default -'1035110': +"1035110": installDir: Moonrise Fall launch: - config: oslist: windows description: Moonrise Fall - Fullscreen - executable: Moonrise Fall 1v021 Full\\Moonrise Fall 1v021 Full.exe + executable: "Moonrise Fall 1v021 Full\\\\Moonrise Fall 1v021 Full.exe" type: option1 - config: oslist: windows description: Moonrise Fall - Windowed - executable: Moonrise Fall 1v021 Win\\Moonrise Fall 1v021 Win.exe + executable: "Moonrise Fall 1v021 Win\\\\Moonrise Fall 1v021 Win.exe" type: option2 - config: betakey: 1v02 description: Moonrise Fall 1v02 - Windowed - executable: Moonrise Fall 1v02 Win\\Moonrise Fall 1v02 Win.exe + executable: "Moonrise Fall 1v02 Win\\\\Moonrise Fall 1v02 Win.exe" type: option1 - config: betakey: 1v02 description: Moonrise Fall 1v02 - Fullscreen - executable: Moonrise Fall 1v02 Full\\Moonrise Fall 1v02 Full.exe + executable: "Moonrise Fall 1v02 Full\\\\Moonrise Fall 1v02 Full.exe" type: option2 -'1035120': +"1035120": installDir: Lust from Beyond launch: - executable: Lust From Beyond.exe type: none -'1035190': +"1035190": installDir: Zombies In The Forest launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ZombiesInTheForest.exe type: default -'1035210': {} -'1035240': {} -'1035260': +"1035210": {} +"1035240": {} +"1035260": installDir: A Game For You Josh launch: - config: @@ -12508,7 +12410,7 @@ oslist: macos executable: GameForYouJosh.app type: none -'1035270': +"1035270": installDir: Furry Chronicles launch: - config: @@ -12523,7 +12425,7 @@ oslist: linux executable: FurryChronicles.x86_64 type: default -'1035280': +"1035280": installDir: Stoppa! launch: - config: @@ -12534,23 +12436,23 @@ oslist: linux executable: Stoppa! type: default -'1035300': +"1035300": installDir: cockroachPlanetSurvival launch: - config: oslist: windows executable: cockroachPlanet.exe type: default -'1035310': +"1035310": installDir: Outbreak Lost Hope launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Outbreak Lost Hope.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Outbreak Lost HopeLinux.x86_64 type: default @@ -12558,8 +12460,8 @@ oslist: macos executable: Outbreak Lost HopeMac.app type: default -'1035320': - installDir: MarineVerse's Cup +"1035320": + installDir: "MarineVerse's Cup" launch: - config: oslist: windows @@ -12571,36 +12473,36 @@ description: PC version executable: mvcup.exe type: default -'1035410': +"1035410": installDir: xMoon launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: xMoon.exe type: none -'1035430': +"1035430": installDir: Table Games VR launch: - config: oslist: windows executable: TableGames.exe type: vr -'1035470': +"1035470": installDir: Takotan launch: - config: oslist: windows executable: Takotan.exe type: default -'1035490': +"1035490": installDir: EURGAVA™ - Tomb of Senza launch: - config: oslist: windows executable: nw.exe type: default -'1035500': +"1035500": installDir: Escape from the tomb tower launch: - config: @@ -12611,11 +12513,11 @@ oslist: linux executable: EscapeFromTheTombTower.sh type: none -'1035510': +"1035510": installDir: Ultimate Zombie Defense launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Windows x64 launcher executable: UltimateZombieDefense_64.exe @@ -12626,21 +12528,19 @@ executable: UltimateZombieDefense.app type: default - config: - betakey: 'latest-dev,latest-production,linux-alpha' - osarch: '64' + betakey: "latest-dev,latest-production,linux-alpha" + osarch: "64" oslist: linux description: Linux 64bit launcher - description_loc: - english: Linux 64bit launcher executable: UltimateZombieDefense type: default - config: - osarch: '32' + osarch: "32" oslist: windows description: Windows x32 launcher executable: UltimateZombieDefense_32.exe type: default -'1035530': +"1035530": installDir: Disobedient Sheep launch: - config: @@ -12652,43 +12552,43 @@ executable: disobedientSheep.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: disobedientSheep.x86_64 type: default -'1035550': +"1035550": installDir: Galaxy Forces VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Galaxy Forces VR.exe type: vr - config: - osarch: '64' + osarch: "64" oslist: windows executable: Galaxy Forces VR.exe type: default -'1035560': +"1035560": installDir: Struggling launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Struggling.exe type: none -'1035570': {} -'1035600': +"1035570": {} +"1035600": installDir: TheDawn launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TheDawn.exe type: default nameLocalized: - russian: 'Заря: Путь Снайпера' -'1035610': + russian: "Заря: Путь Снайпера" +"1035610": installDir: Hentai Mosaique Vip Room launch: - config: @@ -12699,8 +12599,8 @@ oslist: linux executable: Hentai Mosaique Vip Room.x86_64 type: none -'1035640': {} -'1035660': +"1035640": {} +"1035660": installDir: Chromosome Evil launch: - config: @@ -12708,12 +12608,10 @@ executable: total.exe - config: oslist: windows - ownsdlc: '1985450' + ownsdlc: "1985450" description: DLC New Weapon & Weapons customatization - description_loc: - english: DLC New Weapon & Weapons customatization executable: invDLC.exe -'1035700': +"1035700": installDir: Reflections ~Dreams and Reality~ launch: - config: @@ -12728,7 +12626,7 @@ oslist: linux executable: Reflections D&R.sh type: default -'1035750': +"1035750": installDir: 文字獄 launch: - config: @@ -12743,27 +12641,27 @@ oslist: linux executable: PrisonOfWord.x86_64 type: none -'1035770': - installDir: Jewel Match Solitaire 2 Collector's Edition +"1035770": + installDir: "Jewel Match Solitaire 2 Collector's Edition" launch: - config: oslist: windows description: Launch executable: Jewel Match Solitaire 2.exe type: none -'1035790': +"1035790": installDir: Laruaville 7 launch: - config: oslist: windows executable: Laruaville7.exe type: none -'1035800': +"1035800": installDir: Mistress of Maids First Castle launch: - executable: RPL.exe type: none -'1035830': +"1035830": installDir: Dracologic launch: - config: @@ -12774,15 +12672,15 @@ oslist: macos executable: dracologic.app type: default -'1035840': {} -'1035850': +"1035840": {} +"1035850": installDir: Balancelot launch: - config: oslist: windows executable: Balancelot.exe type: default -'1035860': +"1035860": installDir: Super Space Jump Man launch: - config: @@ -12793,14 +12691,14 @@ oslist: linux executable: Super Space Jump Man.x86_64 type: none -'1035880': +"1035880": installDir: Block Dodge Challenge launch: - config: oslist: windows executable: BlockDodgeChallenge.exe type: default -'1035890': +"1035890": installDir: vApe Escape launch: - executable: vapeescape.exe @@ -12808,77 +12706,77 @@ - description: Original Soundtrack executable: vApe Escape OST.m3u type: option2 -'1035900': +"1035900": installDir: Prison Escape launch: - config: oslist: windows executable: PrisonEscape.exe type: default -'1035920': +"1035920": installDir: Chocolate makes you happy Lunar New Year launch: - config: oslist: windows executable: Chocolate makes you happy Lunar New Year.exe type: default -'1035930': +"1035930": installDir: Nyasha launch: - executable: Nyasha.exe type: none -'1035950': +"1035950": installDir: Philophobia The Fear of Love launch: - config: oslist: windows executable: Philophobia The Fear of Love.exe type: none -'1035960': - installDir: Recycler's Terminal +"1035960": + installDir: "Recycler's Terminal" launch: - config: oslist: windows executable: Game.exe type: default -'1035990': +"1035990": installDir: Dialtown Phone Dating Sim launch: - config: oslist: windows executable: Dialtown.exe type: default -'1036000': +"1036000": installDir: The Ploshers launch: - config: oslist: windows executable: theploshers.exe type: none -'1036010': +"1036010": installDir: polyfuru feat. MIYA KIMINO launch: - config: oslist: windows executable: polyfuru_Miya.exe type: vr -'1036030': +"1036030": installDir: EscapeRoute launch: - config: oslist: windows executable: Escape_route.exe type: none -'1036080': {} -'1036120': +"1036080": {} +"1036120": installDir: VirusCrisis launch: - config: oslist: windows executable: VirusCrisis.exe type: default -'1036190': {} -'1036200': +"1036190": {} +"1036200": installDir: Song Animals launch: - config: @@ -12889,27 +12787,27 @@ oslist: windows executable: winsetup.exe type: config -'1036210': {} -'1036260': +"1036210": {} +"1036260": installDir: Journey For Elysium launch: - executable: Journey For Elysium.exe type: vr -'1036270': +"1036270": installDir: BugAviatorsinThemePark launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: テーマパークの虫.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: Bug Aviators in Theme Park.exe type: default -'1036310': {} -'1036320': +"1036310": {} +"1036320": installDir: Once Upon A Death launch: - config: @@ -12918,52 +12816,52 @@ type: none - config: oslist: macos - executable: Once Upon A Death.app\\Contents\\MacOS\\Once Upon A Death + executable: "Once Upon A Death.app\\\\Contents\\\\MacOS\\\\Once Upon A Death" type: none -'1036330': +"1036330": installDir: BattleCubes Arena launch: - config: oslist: windows executable: TotalRampage.exe type: default -'1036370': +"1036370": installDir: Flying Red Barrel - Diary of a Little Aviator launch: - executable: FRB.exe type: none nameLocalized: japanese: 空飛ぶ赤いワイン樽 ~A Diary of Little Aviator~ -'1036400': +"1036400": installDir: Mage VR The Lost Memories launch: - config: oslist: windows executable: VR Mage.exe type: vr -'1036420': +"1036420": installDir: Command Modern Air Naval Operations launch: - description: Launch - executable: GameMenu_CDS\\autorun.exe + executable: "GameMenu_CDS\\\\autorun.exe" type: default -'1036430': {} -'1036440': +"1036430": {} +"1036440": installDir: Kingdom Wars 2 Definitive Edition launch: - - arguments: '-dev86' + - arguments: "-dev86" config: oslist: windows executable: kw2de.exe type: default -'1036460': +"1036460": installDir: Similars Climb launch: - config: oslist: windows executable: Similars Climb.exe type: none -'1036490': +"1036490": installDir: Space Smash launch: - config: @@ -12974,20 +12872,20 @@ oslist: linux executable: Space Smash.x86 type: default -'1036530': +"1036530": installDir: A way up! launch: - executable: A way up!.exe type: default -'1036550': +"1036550": installDir: Levers & Buttons launch: - config: oslist: windows executable: LnB_Steam_release_v03.exe type: vr -'1036570': {} -'1036580': +"1036570": {} +"1036580": installDir: National Park Girls launch: - config: @@ -13002,12 +12900,12 @@ oslist: linux executable: NationalParkGirls-1.0-linux/NationalParkGirls.sh type: none -'1036600': +"1036600": installDir: Junglex launch: - executable: Junglex.exe type: none -'1036620': +"1036620": installDir: Alien Cow Farm launch: - config: @@ -13016,55 +12914,55 @@ type: none - config: oslist: macos - executable: Alien Cow Farm.app\\Contents\\MacOS\\Alien Cow Farm + executable: "Alien Cow Farm.app\\\\Contents\\\\MacOS\\\\Alien Cow Farm" type: none -'1036660': +"1036660": installDir: MiniGolf Maker launch: - config: oslist: windows executable: MiniGolf Maker.exe type: default -'1036690': {} -'1036700': +"1036690": {} +"1036700": installDir: My Beautiful Paper Smile launch: - config: oslist: windows - executable: WindowsNoEditor\\HandDrawnGame.exe + executable: "WindowsNoEditor\\\\HandDrawnGame.exe" type: default nameLocalized: schinese: 完美世界大逃亡 My Beautiful Paper Smile -'1036740': +"1036740": installDir: METAL DOGS launch: - executable: DOGS.exe type: none -'1036780': +"1036780": installDir: Pokris launch: - config: oslist: windows executable: Pokris.exe type: default -'1036800': +"1036800": installDir: Night Island launch: - config: oslist: windows executable: NightIsland.exe type: none -'1036820': +"1036820": installDir: Marvin The Hatter launch: - executable: Marvin The Hatter.exe type: none -'1036840': +"1036840": installDir: Cat Defense launch: - executable: CatDefence.exe type: none -'1036850': +"1036850": installDir: Auf_Abwegen launch: - config: @@ -13075,59 +12973,59 @@ oslist: linux executable: runner type: default -'1036870': +"1036870": installDir: Night Catcher launch: - config: oslist: windows executable: Night Catcher.exe type: none -'1036890': +"1036890": installDir: Shadow Warrior 3 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SW3.exe type: default -'1036900': +"1036900": installDir: SBZA launch: - executable: SBZA.exe type: none -'1036910': +"1036910": installDir: €100 launch: - executable: game.exe type: none -'1036920': +"1036920": installDir: DooM in the Dark launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: DooM in the Dark.exe type: default -'1036930': +"1036930": installDir: PC Futbol Stars launch: - executable: PC Futbol Stars.exe type: none -'1036950': +"1036950": installDir: Super Jigsaw Puzzle Generations launch: - config: oslist: windows executable: Super Jigsaw Puzzle Generations.exe type: default -'1036960': +"1036960": installDir: 阿津 launch: - config: oslist: windows executable: Game.exe type: none -'1036980': +"1036980": installDir: Mysteries of the Undead launch: - config: @@ -13138,7 +13036,7 @@ oslist: macos executable: MotUtCI.app type: default -'1036990': +"1036990": installDir: Royal Gems launch: - config: @@ -13149,29 +13047,29 @@ oslist: macos executable: RoyalGems.app type: default -'1037000': +"1037000": installDir: Where are My Pipes launch: - config: oslist: windows - executable: Where`s my pipes.exe + executable: "Where`s my pipes.exe" type: default - config: oslist: macos executable: where are my pipes.app type: default -'1037010': +"1037010": installDir: Mystery Solitaire Grimm Tales launch: - config: oslist: windows - executable: Mystery Solitaire. Grimm's tales.exe + executable: "Mystery Solitaire. Grimm's tales.exe" type: default - config: oslist: macos - executable: Mystery Solitaire. Grimm's tales.app + executable: "Mystery Solitaire. Grimm's tales.app" type: default -'1037020': +"1037020": installDir: ScourgeBringer launch: - config: @@ -13191,23 +13089,23 @@ koreana: ScourgeBringer (스커지브링어) schinese: 灾厄逆刃 tchinese: 災厄逆刃 -'1037040': {} -'1037080': +"1037040": {} +"1037080": installDir: Zedfest launch: - config: oslist: windows - executable: \\KevinSpel\\Binaries\\Win64\\Zedfest.exe + executable: "\\\\KevinSpel\\\\Binaries\\\\Win64\\\\Zedfest.exe" type: default -'1037090': +"1037090": installDir: GREEN launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: GREEN.exe type: default -'1037100': +"1037100": installDir: YouDied_BaNRY launch: - config: @@ -13218,15 +13116,15 @@ oslist: linux executable: YouDied_BaNRY type: default -'1037110': +"1037110": installDir: GOK launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: GoK.exe type: default -'1037120': +"1037120": installDir: Mutropolis launch: - config: @@ -13241,7 +13139,7 @@ oslist: linux executable: start type: default -'1037130': +"1037130": installDir: DandyAce launch: - config: @@ -13252,11 +13150,11 @@ oslist: macos executable: DandyAce.app/Contents/MacOS/DandyAce type: none -'1037140': +"1037140": installDir: Mow Problem launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: mow_problem.exe type: default @@ -13264,15 +13162,15 @@ oslist: macos executable: mow_problem.app/Contents/MacOS/mow_problem type: default -'1037150': +"1037150": installDir: Zakk Hazard TDS launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: Zakk Hazard.exe type: none -'1037190': +"1037190": installDir: Shipped launch: - config: @@ -13280,12 +13178,12 @@ executable: Shipped.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Shipped.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Shipped.x86_64 type: default @@ -13293,35 +13191,35 @@ oslist: macos executable: Shipped.app type: default -'1037240': {} -'1037260': +"1037240": {} +"1037260": installDir: Diacrisis launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Diacrisi.exe type: default -'1037270': +"1037270": installDir: hyoutan launch: - executable: Game.exe type: default -'1037330': +"1037330": installDir: Senpai Teaches Me Japanese Part 1 launch: - config: oslist: windows executable: Learn to read Japanese Part 1.exe type: default -'1037340': +"1037340": installDir: OverTheCloud launch: - config: oslist: windows executable: OverTheCloud_Global.exe type: default -'1037350': +"1037350": installDir: Back to 1998 launch: - config: @@ -13336,47 +13234,47 @@ oslist: macos executable: Back_to_1998.app/Contents/MacOS/Back_to_1998 type: default -'1037380': {} -'1037410': +"1037380": {} +"1037410": installDir: CaptainStarshot launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: CaptainStarshot.exe type: default -'1037420': +"1037420": installDir: Hentai Strawberry launch: - config: oslist: windows executable: Hentai Strawberry.exe type: default -'1037430': +"1037430": installDir: Hell Hole launch: - config: oslist: windows executable: HellHole.exe type: default -'1037460': +"1037460": installDir: DEEP 8 launch: - - arguments: '--project-path deep8:// --fps-limit 60' + - arguments: "--project-path deep8:// --fps-limit 60" config: - osarch: '32' + osarch: "32" oslist: windows executable: aPLAYERWINDOWS.exe - - arguments: '--project-path deep8:// --fps-limit 60' + - arguments: "--project-path deep8:// --fps-limit 60" config: oslist: macos executable: aPLAYERMAC - - arguments: '--project-path deep8:// --fps-limit 60' + - arguments: "--project-path deep8:// --fps-limit 60" config: - osarch: '64' + osarch: "64" oslist: windows executable: aPlayerWindows64bit.exe -'1037470': +"1037470": installDir: Jormungandr launch: - config: @@ -13387,7 +13285,7 @@ oslist: linux executable: Jormungandr.x86_64 type: default -'1037480': +"1037480": installDir: Classic Racers launch: - config: @@ -13396,29 +13294,29 @@ type: default - config: oslist: macos - executable: Classic_Racers.app\\Contents\\MacOS\\Classic_Racers + executable: "Classic_Racers.app\\\\Contents\\\\MacOS\\\\Classic_Racers" type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Classic_Racers.x86_64 type: default -'1037540': {} -'1037560': +"1037540": {} +"1037560": installDir: Fat Prisoner Simulator launch: - config: oslist: windows executable: FatPrisonerSimulator.exe type: default -'1037570': +"1037570": installDir: Sellswords Ashen Company launch: - config: oslist: windows executable: Sellswords.exe type: default -'1037590': +"1037590": installDir: Neptunia Shooter launch: - config: @@ -13427,107 +13325,107 @@ type: none nameLocalized: japanese: ネプシューター -'1037600': +"1037600": installDir: Lord Democrat Strikes Out! launch: - config: oslist: windows executable: Lord Democrat Strikes Out!.exe type: none -'1037690': +"1037690": installDir: BIOSZARD Corporation launch: - executable: BIOSZARD Corporation.exe type: none -'1037750': +"1037750": installDir: Looking for Heals launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Looking For Heals.exe type: default -'1037760': +"1037760": installDir: Hold The Fort launch: - config: oslist: windows executable: HTF.exe type: none -'1037810': +"1037810": installDir: Ping Pong Trick Shot EVOLUTION launch: - - arguments: '-culture=ja' + - arguments: "-culture=ja" config: oslist: windows description: Japanese executable: TrickShotEvolution.exe type: option1 - - arguments: '-culture=en' + - arguments: "-culture=en" config: oslist: windows description: English executable: TrickShotEvolution.exe type: option1 - - arguments: '-culture=fr' + - arguments: "-culture=fr" config: oslist: windows description: French executable: TrickShotEvolution.exe type: option1 - - arguments: '-culture=de' + - arguments: "-culture=de" config: oslist: windows description: Deutsch executable: TrickShotEvolution.exe type: option1 - - arguments: '-culture=es' + - arguments: "-culture=es" config: oslist: windows description: Spanish executable: TrickShotEvolution.exe type: option1 - - arguments: '-culture=ru' + - arguments: "-culture=ru" config: oslist: windows description: Russian executable: TrickShotEvolution.exe type: option1 - - arguments: '-culture=it' + - arguments: "-culture=it" config: oslist: windows description: Italian executable: TrickShotEvolution.exe type: option1 -'1037820': +"1037820": installDir: DragonofJapan launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: DOJ.exe type: default -'1037830': +"1037830": installDir: Rascal Fight launch: - config: oslist: windows executable: RascalFight.exe type: none -'1037840': +"1037840": installDir: Running Ninja launch: - config: oslist: windows executable: RunningNinja.exe type: default -'1037850': +"1037850": installDir: Pirate Cannons AHOY! launch: - executable: PirateCannons.exe type: default -'1037900': {} -'1037910': +"1037900": {} +"1037910": installDir: Paw Paw Paw launch: - config: @@ -13542,51 +13440,51 @@ oslist: linux executable: Paw Paw Paw.x86 type: default -'1037920': {} -'1037930': +"1037920": {} +"1037930": installDir: Era of Miracles launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows executable: Game.exe type: none -'1037940': +"1037940": installDir: Dead Monarchy launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Dead Monarchy.exe type: default -'1037950': +"1037950": installDir: Maze_Wars launch: - config: oslist: windows executable: MazePC.exe type: none -'1037960': +"1037960": installDir: Grand Dude Simulator launch: - config: oslist: windows executable: GrandDudeSimulator.exe type: default -'1037970': - installDir: I'm Hungry +"1037970": + installDir: "I'm Hungry" launch: - executable: ImHungry.exe type: vr -'1037980': {} -'1037990': +"1037980": {} +"1037990": installDir: PHAGEBORN online card game launch: - config: oslist: windows executable: Phageborn.exe type: default -'1038070': +"1038070": installDir: Physics Drop launch: - config: @@ -13595,19 +13493,19 @@ type: default - config: oslist: macos - executable: PhysicsDrop.app\\Contents\\MacOS\\PhysicsDrop + executable: "PhysicsDrop.app\\\\Contents\\\\MacOS\\\\PhysicsDrop" type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: PhysicsDrop.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: PhysicsDrop.x86_64 type: default -'1038100': +"1038100": installDir: Trap for Winners launch: - config: @@ -13616,76 +13514,76 @@ type: none - config: oslist: macos - executable: Trap for Winners.app\\Contents\\MacOS\\Trap for Winners + executable: "Trap for Winners.app\\\\Contents\\\\MacOS\\\\Trap for Winners" type: none -'1038110': {} -'1038120': +"1038110": {} +"1038120": installDir: b.mg19 launch: - config: oslist: windows executable: b.m.g 19.exe type: default -'1038250': +"1038250": installDir: DIRT 5 launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: DIRT5 executable: DIRT5.exe type: option1 - config: betakey: development - osarch: '64' + osarch: "64" oslist: windows description: CP2 Dev (This is not set up on external servers) executable: game_dev.exe type: option2 - - arguments: '-maxmipleveltier 2' + - arguments: "-maxmipleveltier 2" config: betakey: agerating - osarch: '64' + osarch: "64" oslist: windows description: DIRT5 executable: game_release.exe type: option3 - - arguments: '-maxmipleveltier 2 -language ger' + - arguments: "-maxmipleveltier 2 -language ger" config: betakey: agerating - osarch: '64' + osarch: "64" oslist: windows description: DIRT5 (German) executable: game_release.exe type: option3 - - arguments: '-maxmipleveltier 2 -language fre' + - arguments: "-maxmipleveltier 2 -language fre" config: betakey: agerating - osarch: '64' + osarch: "64" oslist: windows description: DIRT 5 (French) executable: game_release.exe type: option3 - - arguments: '-maxmipleveltier 2 -language ita' + - arguments: "-maxmipleveltier 2 -language ita" config: betakey: agerating - osarch: '64' + osarch: "64" oslist: windows description: DIRT 5 (Italian) executable: game_release.exe type: option3 - - arguments: '-maxmipleveltier 2 -language spa' + - arguments: "-maxmipleveltier 2 -language spa" config: betakey: agerating - osarch: '64' + osarch: "64" oslist: windows description: DIRT5 (Spanish) executable: game_release.exe type: option3 - - arguments: '-maxmipleveltier 2 -language bra' + - arguments: "-maxmipleveltier 2 -language bra" config: betakey: agerating - osarch: '64' + osarch: "64" oslist: windows description: DIRT5 (Brazilian) executable: game_release.exe @@ -13698,35 +13596,35 @@ - arguments: /timing config: betakey: denuvo - osarch: '64' + osarch: "64" oslist: windows description: DIRT5.exe launch option executable: DIRT5.exe type: none - config: betakey: nvidia - osarch: '64' + osarch: "64" oslist: windows - description: 'NVIDIA BRANCH ' + description: "NVIDIA BRANCH " executable: game_dev.exe type: option1 - config: betakey: daily - osarch: '64' + osarch: "64" oslist: windows description: Dirt5 Release - game_release.exe executable: game_release.exe type: option1 - config: betakey: indiana_jones - osarch: '64' + osarch: "64" oslist: windows description: indiana jones patch executable: game_release.exe type: default - config: betakey: indiana_jones - osarch: '64' + osarch: "64" oslist: windows description: Indiana Jones (Dev) executable: game_dev.exe @@ -13734,19 +13632,15 @@ - config: betakey: oldboy description: game_dev.exe - description_loc: - english: game_dev.exe executable: game_dev.exe type: none - - arguments: '-prototypesmenu -skiplegals -skipvideos -skipftue -nofatalbudgets -disablespinup -disablesurfacenoise' + - arguments: "-prototypesmenu -skiplegals -skipvideos -skipftue -nofatalbudgets -disablespinup -disablesurfacenoise" config: betakey: scene_pt description: Scene_PT with Launch options - description_loc: - english: Scene_PT with Launch options executable: game_dev.exe type: option1 -'1038280': +"1038280": installDir: Nobodies launch: - config: @@ -13761,52 +13655,52 @@ oslist: linux executable: Nobodies_Linux.x86_64 type: default -'1038300': +"1038300": installDir: New Super Luckys Tale launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: nslt.exe type: default -'1038370': +"1038370": installDir: Trials of Fire launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TrialsOfFire.exe type: none nameLocalized: schinese: 火焰审判 Trials of Fire -'1038380': - installDir: PuppetShow Porcelain Smile Collector's Edition +"1038380": + installDir: "PuppetShow Porcelain Smile Collector's Edition" launch: - config: oslist: windows executable: PuppetShow_PorcelainSmile_CE.exe type: default -'1038410': +"1038410": installDir: ShooterSpheres launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Shoot.exe type: default -'1038430': +"1038430": installDir: Drascula The Vampire Strikes Back launch: - config: oslist: windows executable: Drascula.exe type: default -'1038440': +"1038440": installDir: Mortadelo y Filemón El sulfato atómico launch: - executable: Sulfato.exe type: default -'1038450': +"1038450": installDir: NancyDrew_MidnightInSalem launch: - config: @@ -13817,50 +13711,50 @@ oslist: macos executable: MidnightInSalem.app type: default -'1038620': +"1038620": installDir: House of 1000 Doors Evil Inside launch: - config: oslist: windows executable: Houseof1000Doors_EvilInside_CE.exe type: default -'1038630': +"1038630": installDir: Eternal Journey New Atlantis launch: - config: oslist: windows executable: EternalJourney_NewAtlantisCE.exe type: default -'1038640': +"1038640": installDir: Joan Jade and the Gates of Xibalba launch: - config: oslist: windows executable: JoanJade.exe type: default -'1038650': +"1038650": installDir: Love Alchemy A Heart In Winter launch: - config: oslist: windows executable: LoveAlchemy_AHeartInWinter.exe type: default -'1038670': - installDir: Mind's Eye Secrets of the Forgotten +"1038670": + installDir: "Mind's Eye Secrets of the Forgotten" launch: - config: oslist: windows executable: Minds Eye.exe type: default -'1038680': +"1038680": installDir: kxd launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: \\WindowsNoEditor\\Client\\Binaries\\Win64\\CleanThirdPerson-Win64-Shipping.exe + executable: "\\\\WindowsNoEditor\\\\Client\\\\Binaries\\\\Win64\\\\CleanThirdPerson-Win64-Shipping.exe" type: none -'1038740': +"1038740": installDir: FluffyStore launch: - config: @@ -13871,14 +13765,14 @@ oslist: macos executable: FluffyStore.app/Contents/MacOS/FluffyStore type: none -'1038810': +"1038810": installDir: GodWars launch: - config: oslist: windows executable: godwars.exe type: default -'1038820': +"1038820": installDir: 拯救大魔王2逆流 Falsemen2Upstream launch: - config: @@ -13889,14 +13783,14 @@ oslist: macos executable: Game.app type: none -'1038830': +"1038830": installDir: Author Clicker launch: - config: oslist: windows executable: Author.exe type: default -'1038840': +"1038840": installDir: BALDOO launch: - config: @@ -13907,14 +13801,14 @@ oslist: macos executable: BALDOO.app type: none -'1038850': +"1038850": installDir: Boom! Boom! launch: - config: oslist: windows executable: Boom! Boom!.exe type: default -'1039040': +"1039040": installDir: Copperbell launch: - config: @@ -13925,14 +13819,14 @@ oslist: macos executable: Copperbell.app type: none -'1039060': - installDir: pepeizq's Cities +"1039060": + installDir: "pepeizq's Cities" launch: - config: oslist: windows - executable: pepeizq's Cities.exe + executable: "pepeizq's Cities.exe" type: none -'1039080': +"1039080": installDir: Brood launch: - config: @@ -13940,84 +13834,84 @@ description: Launch executable: Brood.exe type: default -'1039100': +"1039100": installDir: No Place for Bravery launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: No Place for Bravery.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: No Place for Bravery.x86_64 type: default -'1039200': +"1039200": installDir: Poggers launch: - config: oslist: windows executable: Poggers.exe type: default -'1039280': +"1039280": installDir: ProtoCorgi launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: protocorgi_windows_x64.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: protocorgi_linux_x64.x86_64 type: default -'1039290': +"1039290": installDir: Drumpf 2 Lost But Not Forgotten launch: - config: oslist: windows executable: Game.exe type: none -'1039310': +"1039310": installDir: REGOLA launch: - config: oslist: windows executable: regola.exe type: none -'1039330': +"1039330": installDir: NOTE_ a composer and a note launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: NOTE a Composer and a Note.exe type: default -'1039350': +"1039350": installDir: Stonetide_content launch: - executable: StoneTide Age of Pirates.exe type: none -'1039360': +"1039360": installDir: Eyes in the Dark launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Eyes in the Dark.exe type: default -'1039370': +"1039370": installDir: Draw With Unknown launch: - executable: Draw With Unknown.exe type: none -'1039380': +"1039380": installDir: Bunny Parking launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: WindowsNoEditor/BunnyCars.exe type: default @@ -14025,59 +13919,59 @@ oslist: linux executable: LinuxNoEditor/BunnyCars.sh type: default -'1039400': {} -'1039430': +"1039400": {} +"1039430": installDir: Hyper Flight launch: - config: oslist: windows executable: Deploy/HyperFlight.exe type: default -'1039440': {} -'1039470': +"1039440": {} +"1039470": installDir: Over My Dead Pixel launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: OverMyDeadPixel.exe type: default -'1039480': {} -'1039550': +"1039480": {} +"1039550": installDir: AEGIS launch: - executable: Aegis.exe type: none -'1039560': - installDir: Amanda's Sticker Book 2 +"1039560": + installDir: "Amanda's Sticker Book 2" launch: - config: oslist: windows executable: AmandasStickerBook2.exe type: default -'1039570': +"1039570": installDir: Find the Oil Racing Edition launch: - config: oslist: windows executable: Find the oil.exe type: default -'1039580': +"1039580": installDir: Super Welder launch: - config: oslist: windows executable: Super Welder.exe type: none -'1039650': {} -'1039800': +"1039650": {} +"1039800": installDir: BlueGlow launch: - config: oslist: windows executable: BlueGlow.exe type: default -'1039830': +"1039830": installDir: NetherGallery launch: - config: @@ -14088,47 +13982,47 @@ oslist: macos executable: NetherGallery.app type: default -'1039860': +"1039860": installDir: Lifeless Vanguard launch: - executable: Lifeless Vanguard.exe type: default -'1039870': +"1039870": installDir: SURF launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SURF.exe type: default -'1039880': +"1039880": installDir: Hellsplit Arena launch: - config: oslist: windows executable: Hellsplit_Arena.exe type: vr -'1039890': +"1039890": installDir: paper launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: EDFIR.exe type: default -'1039910': +"1039910": installDir: BUCKLER 2 launch: - config: oslist: windows executable: BUCKLER2.exe type: default -'1039940': +"1039940": installDir: Hashihime of the Old Book Town launch: - executable: hashihime.exe type: none -'1039960': +"1039960": installDir: Grisaia Phantom Trigger Vol.5.5 launch: - executable: GPT_vol5_5.exe @@ -14136,7 +14030,7 @@ nameLocalized: japanese: グリザイア ファントムトリガー Vol.5.5 schinese: 灰色幻影扳机第5.5卷 -'1039970': +"1039970": installDir: Grisaia Phantom Trigger Vol.6 launch: - executable: GPT_vol6.exe @@ -14144,11 +14038,11 @@ nameLocalized: japanese: グリザイア ファントムトリガー Vol.6 schinese: 灰色幻影扳机第6卷 -'10400': +"10400": installDir: Sega Rally launch: - executable: SEGARallyLauncher.exe -'104000': +"104000": installDir: ibomber defense launch: - config: @@ -14157,14 +14051,14 @@ - config: oslist: macos executable: iBomber Defense.app -'1040000': +"1040000": installDir: SpaceBullet launch: - config: oslist: windows executable: ReGameship.exe type: default -'1040070': +"1040070": installDir: Merchant of the Skies launch: - config: @@ -14176,41 +14070,41 @@ executable: Merchant.app type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: Merchant.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: Merchant.x86_64 type: none nameLocalized: schinese: 天空商人 -'1040080': +"1040080": installDir: Please The Gods launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Please the Gods.exe type: none -'1040090': {} -'1040150': +"1040090": {} +"1040150": installDir: Frame Of Reference launch: - config: oslist: windows executable: FrameOfReference.exe type: default -'1040190': +"1040190": installDir: SleepWalker launch: - config: oslist: windows executable: Sleepwalker.exe type: default -'104020': +"104020": installDir: storm in a teacup launch: - config: @@ -14219,53 +14113,53 @@ - config: oslist: macos executable: Storm in a Teacup.app -'1040200': {} -'1040230': +"1040200": {} +"1040230": installDir: Curious Expedition 2 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: CE2.exe type: none nameLocalized: schinese: 奇妙探险队2 Curious Expedition 2 -'1040240': {} -'1040310': +"1040240": {} +"1040310": installDir: I_Know_Everything launch: - - arguments: 'res://main.tscn' + - arguments: "res://main.tscn" config: oslist: windows executable: ike.exe type: default - - arguments: 'res://main.tscn' + - arguments: "res://main.tscn" config: - osarch: '32' + osarch: "32" oslist: linux executable: ike.x86 type: default - - arguments: 'res://main.tscn' + - arguments: "res://main.tscn" config: - osarch: '64' + osarch: "64" oslist: linux executable: ike.x86_64 type: default - - arguments: 'res://main.tscn' + - arguments: "res://main.tscn" config: oslist: macos executable: ike.app/Contents/MacOS/ike type: default workingdir: ike.app/Contents/Resources -'1040370': +"1040370": installDir: ThighClimbers launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ThighClimbers.exe type: default -'1040390': +"1040390": installDir: Later Daters launch: - config: @@ -14276,26 +14170,26 @@ oslist: macos executable: LaterDaters.app type: default -'1040420': +"1040420": installDir: Dreamscaper launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Dreamscaper.exe type: default nameLocalized: schinese: 层层梦境 tchinese: 層層夢境 -'1040430': +"1040430": installDir: Adventure Climb VR launch: - config: oslist: windows executable: ACVR.exe type: vr -'1040450': {} -'1040460': +"1040450": {} +"1040460": installDir: Space Scavenger launch: - config: @@ -14304,16 +14198,16 @@ type: none - config: oslist: macos - executable: SpaceScavengerMac.app\\Contents\\MacOS\\SpaceScavengerMac + executable: "SpaceScavengerMac.app\\\\Contents\\\\MacOS\\\\SpaceScavengerMac" type: none -'1040480': +"1040480": installDir: Daka Dara launch: - config: oslist: windows executable: dakadara.exe type: default -'1040490': +"1040490": installDir: Prologue For A Vacant Kingdom launch: - config: @@ -14324,12 +14218,12 @@ oslist: macos executable: Vacant Kingdom.app type: default -'1040510': {} -'1040550': +"1040510": {} +"1040550": installDir: Spring Falls launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Spring Falls.exe type: default @@ -14338,11 +14232,11 @@ executable: Spring Falls.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: SpringFalls.x86_64 type: default -'1040590': +"1040590": installDir: KillerChambers launch: - config: @@ -14352,33 +14246,33 @@ - config: oslist: linux executable: Killerchambers.x86_64 -'1040610': +"1040610": installDir: Zero_One launch: - config: oslist: windows executable: Zero One.exe type: default -'1040620': +"1040620": installDir: Tournament Blood & Steel launch: - config: oslist: windows executable: Tournament Blood & Steel.exe type: default -'1040630': +"1040630": installDir: Alchemy Story launch: - config: oslist: windows executable: AlchemyStory.exe type: none -'1040720': +"1040720": installDir: THE COLOR OF THE ROSES launch: - executable: Game.exe type: default -'1040730': +"1040730": installDir: ZUSI 3 - Aerosoft Edition launch: - config: @@ -14389,11 +14283,9 @@ betakey: beta oslist: windows description: Install .NetCore - description_loc: - english: Install .NetCore - executable: _redist\\windowsdesktop-runtime-3.1.5-win-x86.exe + executable: "_redist\\\\windowsdesktop-runtime-3.1.5-win-x86.exe" type: config -'1040740': +"1040740": installDir: Legend of the Tetrarchs launch: - executable: Legend of the Tetrarchs.exe @@ -14401,21 +14293,21 @@ nameLocalized: japanese: フォーレジェリア schinese: 四传奇者 -'1040750': +"1040750": installDir: Kim Shooter launch: - config: oslist: windows executable: KimShooter.exe type: none -'1040810': +"1040810": installDir: AttackNoids launch: - config: oslist: windows - executable: windows_content\\AttackNoids.exe + executable: "windows_content\\\\AttackNoids.exe" type: default -'1040820': +"1040820": installDir: Rumble Arena launch: - config: @@ -14427,16 +14319,16 @@ executable: RumbleArena.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: RumbleArena.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: RumbleArena.x86_64 type: none -'1040890': +"1040890": installDir: Slime Simulator Games launch: - config: @@ -14447,7 +14339,7 @@ oslist: windows executable: Slime Simulator Games/Slime Simulator Games.exe type: none -'1040900': +"1040900": installDir: Massive Air Combat launch: - config: @@ -14456,70 +14348,48 @@ type: default - config: oslist: macos - executable: Game.app\\Contents\\MacOS\\MassiveAirCombat + executable: "Game.app\\\\Contents\\\\MacOS\\\\MassiveAirCombat" type: default - config: oslist: windows - ownsdlc: '1149110' + ownsdlc: "1149110" description: Purchase Privilege DLC - description_loc: - brazilian: DLC de privilégio de compra - english: Purchase Privilege DLC - japanese: 購入特典 DLC - latam: Privilegio de compra DLC - portuguese: DLC de privilégio de compra - schinese: 购买特权 DLC - spanish: Privilegio de compra DLC executable: MSADLC/Msadlc.exe type: option1 - config: oslist: windows - ownsdlc: '1103260' + ownsdlc: "1103260" description: KARATE HASEGAWA (DLC2) - description_loc: - english: KARATE HASEGAWA (DLC2) - japanese: 長谷川カラテ(DLC2) executable: MSADLC2/Massive Air Combat - KARATE HASEGAWA.exe type: option2 - config: oslist: windows - ownsdlc: '1221870' + ownsdlc: "1221870" description: Puzzles (DLC3) - description_loc: - brazilian: Quebra-cabeças(DLC3) - english: Puzzles (DLC3) - french: Puzzles(DLC3) - german: Puzzles(DLC3) - italian: Puzzles(DLC3) - japanese: パズル(DLC3) - latam: Rompecabezas(DLC3) - portuguese: Quebra-cabeças(DLC3) - schinese: 谜题(DLC3) - spanish: Rompecabezas(DLC3) - executable: MSADLC3\\Massive Air Combat - Puzzles.exe + executable: "MSADLC3\\\\Massive Air Combat - Puzzles.exe" type: option3 -'1040910': +"1040910": installDir: Epic World launch: - config: oslist: windows executable: Epic World.exe type: default -'1040940': +"1040940": installDir: Protocol VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Protocol.exe type: vr - - arguments: '-nohmd' + - arguments: "-nohmd" config: - osarch: '64' + osarch: "64" oslist: windows executable: Protocol.exe type: default -'104100': +"104100": installDir: InsideAStarFilledSky launch: - config: @@ -14530,26 +14400,26 @@ oslist: macos description: mac executable: StarFilledSky.app -'1041020': +"1041020": installDir: UFOGEN launch: - config: oslist: windows executable: Ufogen.exe type: none -'1041060': +"1041060": installDir: Future Futures Command Z launch: - executable: CommandZ_FutureFutures.exe type: vr -'1041070': - installDir: The Driver's Mission +"1041070": + installDir: "The Driver's Mission" launch: - config: oslist: windows executable: TheDriversMission.exe type: default -'1041100': +"1041100": installDir: LocoMotives launch: - config: @@ -14560,15 +14430,15 @@ oslist: macos executable: LocoMotives MAC Build.app type: default -'1041120': {} -'1041130': +"1041120": {} +"1041130": installDir: Darkest Depths launch: - config: oslist: windows executable: DarkestDepths.exe type: default -'1041140': +"1041140": installDir: Chill II launch: - config: @@ -14579,7 +14449,7 @@ oslist: linux executable: Chill2.sh type: none -'1041160': +"1041160": installDir: Observers launch: - config: @@ -14588,30 +14458,30 @@ type: default - config: oslist: macos - executable: Contents\\MacOS\\Observers_Mac + executable: "Contents\\\\MacOS\\\\Observers_Mac" type: default -'1041250': {} -'1041270': +"1041250": {} +"1041270": installDir: Exogenesis ~Perils of Rebirth~ launch: - config: oslist: windows executable: Exogenesis.exe type: default -'1041300': +"1041300": installDir: Human Sacrifice launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Human Sacrifice.exe type: vr -'1041310': {} -'1041320': +"1041310": {} +"1041320": installDir: Lords Mobile launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Lords Mobile.exe type: none @@ -14620,69 +14490,69 @@ koreana: 로드모바일 schinese: 王国纪元 tchinese: 王國紀元 -'1041330': +"1041330": installDir: Tiger Fighter 1931 Tora launch: - config: oslist: windows executable: game.exe type: default -'1041390': +"1041390": installDir: Legend of Cina launch: - config: oslist: windows executable: game.exe type: default -'1041400': +"1041400": installDir: Fight Angel launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: FightAngel.exe type: default nameLocalized: schinese: 格斗天使 tchinese: 格鬥天使 -'1041450': +"1041450": installDir: RRRR2 launch: - - arguments: '@f+ @INFOOFF' + - arguments: "@f+ @INFOOFF" config: oslist: windows description: Full screen executable: RRRR2.win32_steam.exe type: option1 - - arguments: '@f1920x1080 @z0.9 @INFOOFF' + - arguments: "@f1920x1080 @z0.9 @INFOOFF" config: oslist: windows description: Windowed executable: RRRR2.win32_steam.exe type: option2 -'1041470': {} -'1041500': +"1041470": {} +"1041500": installDir: Dead Quest launch: - config: oslist: windows executable: Dead Quest.exe type: default -'1041630': +"1041630": installDir: Jungle Adventure launch: - config: oslist: windows executable: JungleAdventure.exe type: vr -'1041650': +"1041650": installDir: Time Warrior Z VR launch: - config: oslist: windows executable: Time Warrior Z VR.exe type: vr -'1041660': +"1041660": installDir: WTC 3 launch: - config: @@ -14697,37 +14567,37 @@ oslist: macos executable: WelcomeToChichester3.app type: default -'1041670': +"1041670": installDir: Money Bath VR launch: - config: oslist: windows executable: MoneyBathVR.exe type: vr -'1041680': +"1041680": installDir: Wave Circles launch: - config: betakey: default - osarch: '64' + osarch: "64" oslist: windows executable: WaveCircles.exe type: vr - config: betakey: beta - osarch: '64' + osarch: "64" oslist: windows executable: Sequence.exe type: vr -'1041690': +"1041690": installDir: MaceAndGrace launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: MaceAndGrace.exe type: vr -'1041710': +"1041710": installDir: Sim Empire launch: - config: @@ -14742,7 +14612,7 @@ type: default nameLocalized: english: Sim Empire -'1041720': +"1041720": installDir: Kingdoms of Amalur Re-Reckoning launch: - config: @@ -14754,38 +14624,38 @@ oslist: windows executable: Reckoning.exe type: default -'1041760': +"1041760": installDir: 0Cube launch: - executable: Game.exe type: default -'1041780': +"1041780": installDir: Soul Valley launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: soulvalley.exe type: default -'1041840': +"1041840": installDir: Fight AngelSE launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: FightAngelSE.exe type: default nameLocalized: schinese: 格斗天使SE tchinese: 格鬥天使SE -'1041880': {} -'1041890': +"1041880": {} +"1041890": installDir: iMemory launch: - executable: iMemory.exe type: default -'1041910': {} -'1041920': +"1041910": {} +"1041920": installDir: If Found launch: - config: @@ -14796,38 +14666,38 @@ oslist: macos executable: iffound.app/Contents/MacOS/iffound type: default -'1041940': +"1041940": installDir: Fort Sumter launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: FortSumter.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: FortSumter.exe type: default - config: oslist: macos - executable: FortSumter.app\\Contents\\MacOS\\FortSumter + executable: "FortSumter.app\\\\Contents\\\\MacOS\\\\FortSumter" type: default -'104200': +"104200": installDir: BEEP launch: - executable: BEEP.exe -'1042000': {} -'1042010': +"1042000": {} +"1042010": installDir: OMEGA The Beginning launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: OMEGA The beginning.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: OMEGA The beginning.exe type: default @@ -14839,7 +14709,7 @@ oslist: linux executable: OTB_64.x86_64 type: default -'1042020': +"1042020": installDir: Trapped on Monster Island launch: - config: @@ -14849,97 +14719,97 @@ nameLocalized: schinese: 生命之槛 tchinese: 生命之檻 -'1042030': +"1042030": installDir: Nyasha Winter launch: - executable: Nyasha Winter.exe type: none -'1042070': {} -'1042080': +"1042070": {} +"1042080": installDir: Nyasha Beach launch: - executable: Nyasha Beach.exe type: none -'1042090': +"1042090": installDir: Melting pot launch: - config: oslist: windows executable: Game.exe type: default -'1042100': +"1042100": installDir: Dimense Chapter 1 launch: - config: oslist: windows executable: Dimense.exe type: default -'1042110': +"1042110": installDir: BreakFest launch: - config: oslist: windows executable: BreakFest.exe type: default -'1042130': +"1042130": installDir: Under Water Abyss Survival VR launch: - config: oslist: windows executable: Under Water.exe type: vr -'1042150': +"1042150": installDir: Data mining 7 launch: - config: oslist: windows executable: Data mining 7.exe type: default -'1042160': +"1042160": installDir: The Islander Town Architect launch: - executable: The Islander - Town Architect.exe type: none -'1042170': +"1042170": installDir: Summon of asmodeus launch: - config: oslist: windows executable: Summon of Asmodeus.exe type: none -'1042210': +"1042210": installDir: GutsAndGoals launch: - executable: gng.exe type: none -'1042230': +"1042230": installDir: Zeta Complex launch: - config: oslist: windows executable: zeta_complex.exe type: none - - arguments: '-- --nohw' + - arguments: "-- --nohw" config: oslist: windows description: ZC (no hardware acceleration) executable: zeta_complex.exe type: option1 -'1042290': +"1042290": installDir: Duckumentary launch: - config: oslist: windows executable: Duckumentary.exe type: default -'1042310': +"1042310": installDir: Glacial launch: - config: oslist: windows executable: Glacial.exe type: none -'1042330': +"1042330": installDir: Tricky Cat launch: - config: @@ -14950,8 +14820,8 @@ oslist: linux executable: Tricky Cat.x86_64 type: none -'1042350': {} -'1042380': +"1042350": {} +"1042380": installDir: Hundred Days launch: - config: @@ -14965,8 +14835,8 @@ nameLocalized: schinese: 酿造物语 (Hundred Days - Winemaking Simulator) tchinese: 釀造物語 (Hundred Days - Winemaking Simulator) -'1042460': - installDir: Newt's Voyage +"1042460": + installDir: "Newt's Voyage" launch: - config: oslist: windows @@ -14974,41 +14844,41 @@ type: default - config: oslist: macos - executable: NewtsVoyage.app\\Contents\\MacOS\\NewtsVoyageMacOSSteam + executable: "NewtsVoyage.app\\\\Contents\\\\MacOS\\\\NewtsVoyageMacOSSteam" type: default -'1042470': {} -'1042490': +"1042470": {} +"1042490": installDir: Call of the Sea launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: COTS.exe type: default nameLocalized: schinese: 海之呼唤 -'1042500': {} -'1042550': +"1042500": {} +"1042550": installDir: Digimon Story Cyber Sleuth Complete Edition launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: app_digister/Digimon Story CS.exe type: default workingdir: app_digister -'1042560': +"1042560": installDir: DemonGame launch: - config: oslist: windows - executable: DemonGame\\城堡传说:魔王觉醒.exe + executable: "DemonGame\\\\城堡传说:魔王觉醒.exe" type: default - config: oslist: macos executable: DemonGame/DemonGame.app type: default -'1042570': +"1042570": installDir: Human Rights launch: - config: @@ -15019,15 +14889,15 @@ oslist: macos executable: Human_Rights.app type: default -'1042590': +"1042590": installDir: windows_content launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: windows_content/GS3D.exe type: default -'1042600': +"1042600": installDir: Demon Queen Melissa launch: - executable: Game.exe @@ -15035,34 +14905,34 @@ nameLocalized: japanese: 女魔王メリッサの冒険記 schinese: 女魔王梅丽莎的冒险 -'1042620': {} -'1042670': +"1042620": {} +"1042670": installDir: Orangeblood launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" executable: Game.exe type: none nameLocalized: japanese: Orangeblood(オレンジブラッド) schinese: Orangeblood《橙色的血液》 -'1042750': +"1042750": installDir: Night shot launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: NightShot.exe type: none -'1042780': +"1042780": installDir: Pine launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Pine.exe type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: Pine.x86_64 type: none @@ -15070,7 +14940,7 @@ oslist: macos executable: Pine.app/Contents/MacOS/Pine type: none -'1042820': +"1042820": installDir: Baobabs Mausoleum Ep.3 Un Pato en Muertoburgo launch: - config: @@ -15083,27 +14953,27 @@ description: Inicio normal mac executable: BaobabsMausoleumEP3.app type: default -'1042860': +"1042860": installDir: Golden war spirit launch: - config: oslist: windows executable: Golden war spirit.exe type: default -'1042880': +"1042880": installDir: Chaos launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Chaos.exe type: default -'1042900': +"1042900": installDir: Borderlight launch: - executable: Borderlight.exe type: none -'1042920': +"1042920": installDir: Unsouled launch: - config: @@ -15112,18 +14982,18 @@ type: default - config: oslist: macos - executable: Contents\\MacOS\\Unsouled + executable: "Contents\\\\MacOS\\\\Unsouled" type: default nameLocalized: schinese: 失魂者 -'1042960': +"1042960": installDir: We Are The Caretakers launch: - config: oslist: windows executable: WeAreTheCaretakers.exe type: none -'1042980': +"1042980": installDir: Zen Chess Mate in Two launch: - config: @@ -15132,9 +15002,9 @@ type: default - config: oslist: macos - executable: Zen_Chess_mate_in_two_Steam.app\\Contents\\MacOS\\Zen_Chess_mate_in_two_Steam + executable: "Zen_Chess_mate_in_two_Steam.app\\\\Contents\\\\MacOS\\\\Zen_Chess_mate_in_two_Steam" type: default -'1042990': +"1042990": installDir: Zen Chess Mate in Three launch: - config: @@ -15143,13 +15013,13 @@ type: none - config: oslist: macos - executable: Zen_Chess_mate_in_three_Steam.app\\Contents\\MacOS\\Zen_Chess_mate_in_three_Steam + executable: "Zen_Chess_mate_in_three_Steam.app\\\\Contents\\\\MacOS\\\\Zen_Chess_mate_in_three_Steam" type: none -'10430': +"10430": installDir: Universe at War Earth Assault launch: - executable: LaunchUAW.exe -'1043000': +"1043000": installDir: Zen Chess Mate in Four launch: - config: @@ -15158,14 +15028,14 @@ type: none - config: oslist: macos - executable: Zen_Chess_mate_in_four_Steam.app\\Contents\\MacOS\\Zen_Chess_mate_in_four_Steam + executable: "Zen_Chess_mate_in_four_Steam.app\\\\Contents\\\\MacOS\\\\Zen_Chess_mate_in_four_Steam" type: default -'1043020': +"1043020": installDir: Dust On Wheels launch: - executable: Dust On Wheels.exe type: none -'1043030': +"1043030": installDir: The Long Sky launch: - config: @@ -15175,14 +15045,14 @@ nameLocalized: schinese: 长天 tchinese: 长天 -'1043040': +"1043040": installDir: Picross Floof launch: - config: oslist: windows executable: Picross Floof.exe type: none -'1043060': +"1043060": installDir: Rupert and Riley Shipwrecked launch: - config: @@ -15191,36 +15061,36 @@ type: default - config: oslist: macos - executable: RupertAndRiley_Shipwrecked.app\\Contents\\MacOS\\RupertAndRiley_Shipwrecked + executable: "RupertAndRiley_Shipwrecked.app\\\\Contents\\\\MacOS\\\\RupertAndRiley_Shipwrecked" type: default - config: oslist: linux executable: RupertAndRiley.x86_64 type: default -'1043120': +"1043120": installDir: Bowling Over It launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Bowling Over It.exe type: default -'1043130': +"1043130": installDir: Welcome 2 FlavortownVR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Flavortown.exe type: vr -'1043140': - installDir: ' Sprites(测试版)' +"1043140": + installDir: " Sprites(测试版)" launch: - config: oslist: windows executable: Xiangmubao.exe type: vr -'1043150': +"1043150": installDir: Danger Gazers launch: - config: @@ -15231,24 +15101,24 @@ oslist: linux executable: Danger_Gazers type: default -'1043160': +"1043160": installDir: uv27 launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: You Versus 27 Elves.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: You Versus 27 Elves.exe type: default - config: oslist: macos - executable: You Versus 27 Elves.app\\Contents\\MacOS\\You Versus 27 Elves + executable: "You Versus 27 Elves.app\\\\Contents\\\\MacOS\\\\You Versus 27 Elves" type: default -'1043180': +"1043180": installDir: Lovers of Aether launch: - config: @@ -15259,7 +15129,7 @@ oslist: macos executable: LOVERS OF AETHER.app type: none -'1043200': +"1043200": installDir: International Affairs launch: - config: @@ -15270,7 +15140,7 @@ oslist: macos executable: International_Affairs_Gold.app type: default -'1043230': +"1043230": installDir: th13 launch: - config: @@ -15284,7 +15154,7 @@ nameLocalized: english: Touhou Shinreibyou ~ Ten Desires. japanese: 東方神霊廟 〜 Ten Desires. -'1043240': +"1043240": installDir: th14 launch: - config: @@ -15298,172 +15168,172 @@ nameLocalized: english: Touhou Kishinjou ~ Double Dealing Character. japanese: 東方輝針城 〜 Double Dealing Character. -'1043340': +"1043340": installDir: No Time launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: No Time - executable: \\32-Bit\\NoTime32.exe + executable: "\\\\32-Bit\\\\NoTime32.exe" type: none - config: - osarch: '64' + osarch: "64" oslist: windows description: No Time (64-Bit) - executable: \\64-Bit\\NoTime64.exe + executable: "\\\\64-Bit\\\\NoTime64.exe" type: none -'1043350': - installDir: '1406' +"1043350": + installDir: "1406" launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: 1406.exe type: default -'1043360': +"1043360": installDir: Massive Effect launch: - executable: nw.exe type: default -'1043370': +"1043370": installDir: SABAT Fight Arena launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SABAT_FightArena.exe type: none -'1043380': +"1043380": installDir: The Trials of Olympus III launch: - config: oslist: windows executable: OlympusIII.exe type: default -'1043390': +"1043390": installDir: FlowScape launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: FlowScape.exe type: default -'1043430': +"1043430": installDir: Tidal Tribe launch: - config: oslist: windows executable: TidalTribe.exe type: default -'1043440': {} -'1043450': +"1043440": {} +"1043450": installDir: Yinyang launch: - config: oslist: windows executable: Yinyang.exe type: default -'1043470': +"1043470": installDir: Release.win32_2 launch: - executable: floatinglife.exe type: none -'1043480': +"1043480": installDir: Destruction launch: - config: oslist: windows executable: Destruction.exe type: default -'1043490': {} -'1043500': +"1043490": {} +"1043500": installDir: Tree Simulator 2020 launch: - config: oslist: windows executable: TreeSimulator2020.exe type: default -'1043510': +"1043510": installDir: Hotdog Man launch: - config: oslist: windows executable: Hotdog Man.exe type: default -'1043540': {} -'1043560': +"1043540": {} +"1043560": installDir: Static launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Personal.exe type: default -'1043580': +"1043580": installDir: PipeWorks launch: - config: oslist: windows executable: PipeWorks.exe type: default -'1043590': {} -'1043610': +"1043590": {} +"1043610": installDir: Cold Cable Lifeshift launch: - config: oslist: windows executable: Cold_Cable_Lifeshift.exe type: none -'1043680': {} -'1043690': +"1043680": {} +"1043690": installDir: Investi-Gator launch: - config: oslist: windows executable: big crime.exe type: default -'1043730': {} -'1043740': {} -'1043750': {} -'1043760': +"1043730": {} +"1043740": {} +"1043750": {} +"1043760": installDir: The road of Nirvana launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: 涅槃之路\\涅槃之路.exe + executable: "涅槃之路\\\\涅槃之路.exe" type: default -'1043790': +"1043790": installDir: Ogrez launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: OgreZ.exe type: none -'1043800': +"1043800": installDir: Metal Suit Warrior VR launch: - config: oslist: windows executable: MetalSuitWarriorVR.exe type: vr -'1043810': {} -'1043860': +"1043810": {} +"1043860": installDir: GladValakas_Cyberban launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: GladValakas - Cyberban.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: GladValakas - Cyberban.exe type: default -'1043870': +"1043870": installDir: Dark Forest launch: - config: @@ -15478,7 +15348,7 @@ oslist: linux executable: darkForest.x86_64 type: default -'1043890': +"1043890": installDir: Tipping Point launch: - config: @@ -15489,11 +15359,11 @@ oslist: windows executable: Tipping Point.exe type: default -'10440': +"10440": installDir: The Golden Compass launch: - executable: compassw32.exe -'1044020': +"1044020": installDir: Potata launch: - config: @@ -15508,7 +15378,7 @@ oslist: macos executable: Potata Mac.app/Contents/MacOS/potata_game type: none -'1044030': +"1044030": installDir: Japanese_AN launch: - config: @@ -15517,55 +15387,55 @@ type: default - config: oslist: macos - executable: Japanese_AN_Mac.app\\Contents\\MacOS\\Japanese A-N + executable: "Japanese_AN_Mac.app\\\\Contents\\\\MacOS\\\\Japanese A-N" type: default - config: oslist: linux executable: NihonGoToki.x86_64 type: default -'1044040': +"1044040": installDir: Survive the Blackout launch: - executable: Survive the Blackout.exe type: none -'1044070': +"1044070": installDir: Monster Crush launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: MonsterCrush.exe type: default -'1044080': {} -'1044090': {} -'1044120': {} -'1044130': +"1044080": {} +"1044090": {} +"1044120": {} +"1044130": installDir: puzzled heroes launch: - config: oslist: windows executable: ph.exe type: none -'1044170': +"1044170": installDir: Lord of the click launch: - config: oslist: windows executable: Lord of the click.exe type: default -'1044200': +"1044200": installDir: Survival Wasteland Zombie launch: - config: oslist: macos - executable: survival.app\\Contents\\MacOS\\survival + executable: "survival.app\\\\Contents\\\\MacOS\\\\survival" type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: survival.exe type: default -'1044210': +"1044210": installDir: Mahjong Solitaire Refresh launch: - config: @@ -15574,50 +15444,50 @@ type: default nameLocalized: japanese: 上海 Refresh -'1044220': +"1044220": installDir: Oik Reloaded launch: - config: oslist: windows - executable: oik_r\\Oik_r.exe + executable: "oik_r\\\\Oik_r.exe" type: default - config: oslist: macos - executable: Contents\\MacOS\\oik_r_mac + executable: "Contents\\\\MacOS\\\\oik_r_mac" type: default - config: - osarch: '32' + osarch: "32" oslist: linux - executable: oik_r_linux\\oik_r_linux.x86 + executable: "oik_r_linux\\\\oik_r_linux.x86" type: default - config: - osarch: '64' + osarch: "64" oslist: linux - executable: oik_r_linux\\oik_r_linux.x86_64 + executable: "oik_r_linux\\\\oik_r_linux.x86_64" type: default -'1044240': {} -'1044300': +"1044240": {} +"1044300": installDir: Human Pinball Iceage launch: - executable: Human Pinball Ice Age.exe type: none -'1044310': +"1044310": installDir: Topless Hentai Mosaic launch: - config: oslist: windows executable: nw.exe type: default -'1044330': +"1044330": installDir: Legend of Traveller launch: - - arguments: '-windowed' + - arguments: "-windowed" config: - osarch: '64' + osarch: "64" oslist: windows executable: RogueGame.exe type: none -'1044340': +"1044340": installDir: The7thGuest launch: - config: @@ -15626,53 +15496,53 @@ type: default - config: oslist: windows - ownsdlc: '1048430' + ownsdlc: "1048430" description: Legacy Edition (English)- Voice Only - executable: t7g-en\\launch_game_win-voiceonly.bat + executable: "t7g-en\\\\launch_game_win-voiceonly.bat" type: option1 workingdir: t7g-en - config: oslist: macos - ownsdlc: '1048430' + ownsdlc: "1048430" description: Legacy Edition (English)- Voice Only - executable: t7g-en\\launch_game_mac-voiceonly.sh + executable: "t7g-en\\\\launch_game_mac-voiceonly.sh" type: option1 workingdir: t7g-en - config: oslist: linux - ownsdlc: '1048430' + ownsdlc: "1048430" description: Legacy Edition (English)- Voice Only - executable: t7g-en\\launch_game_linux-voiceonly.sh + executable: "t7g-en\\\\launch_game_linux-voiceonly.sh" type: option1 workingdir: t7g-en -'1044350': +"1044350": installDir: TheCrater launch: - executable: Crater.exe type: none -'1044450': +"1044450": installDir: Hentai Waifu launch: - config: oslist: windows executable: Hentai Waifu.exe type: default -'1044460': +"1044460": installDir: Wild Cats of Wasteland launch: - config: oslist: windows executable: WildCats.exe type: default -'1044470': {} -'1044480': +"1044470": {} +"1044480": installDir: Alexio launch: - config: oslist: windows executable: Alexio.exe type: default -'1044490': +"1044490": installDir: The Expression Amrilato launch: - config: @@ -15687,14 +15557,14 @@ oslist: linux executable: TheExpressionAmrilato.sh type: default -'1044500': +"1044500": installDir: Desktop Girls launch: - config: oslist: windows executable: Desktop Girls.exe type: default -'1044520': +"1044520": installDir: InugamiDoggyDojo launch: - config: @@ -15707,10 +15577,10 @@ type: default - config: oslist: linux - executable: ./Inugami.sh + executable: "./Inugami.sh" type: default -'1044530': {} -'1044620': +"1044530": {} +"1044620": installDir: Aokana launch: - config: @@ -15721,7 +15591,7 @@ japanese: 蒼の彼方のフォーリズム schinese: 苍之彼方的四重奏 tchinese: 蒼之彼方的四重奏 -'1044630': +"1044630": installDir: Choice of the Dragon launch: - config: @@ -15736,36 +15606,36 @@ oslist: linux executable: ChoiceOfTheDragon type: none -'1044640': +"1044640": installDir: Mundus launch: - config: oslist: windows executable: Mundus.exe type: default -'1044690': +"1044690": installDir: PrimalForge launch: - config: oslist: windows executable: Primal Forge.exe type: default -'1044700': {} -'1044720': +"1044700": {} +"1044720": installDir: Farthest Frontier launch: - config: oslist: windows executable: Farthest Frontier.exe type: default -'1044730': +"1044730": installDir: Unishroom launch: - config: oslist: windows executable: Unishroom.exe type: default -'1044750': +"1044750": installDir: Q&A A Light-Roasted Romance launch: - config: @@ -15776,23 +15646,23 @@ oslist: macos executable: Q&A_2.0.app type: default -'1044760': +"1044760": installDir: Mooj launch: - executable: Garden of Mooj.exe type: default -'1044770': +"1044770": installDir: GoddessOfMath launch: - config: oslist: windows - executable: GoddessOfMath\\Goddess of Math.exe + executable: "GoddessOfMath\\\\Goddess of Math.exe" type: default - config: oslist: macos - executable: GoddessOfMath.app\\Contents\\MacOS\\GoddessOfMath + executable: "GoddessOfMath.app\\\\Contents\\\\MacOS\\\\GoddessOfMath" type: default -'1044800': +"1044800": installDir: Global Fortune launch: - config: @@ -15803,54 +15673,54 @@ oslist: windows executable: game.exe type: none -'1044820': +"1044820": installDir: Agtnan launch: - config: oslist: windows executable: Agtnan.exe type: default -'1044830': +"1044830": installDir: Attack on Titan The Game launch: - config: oslist: windows executable: AotGame.exe type: none -'1044840': +"1044840": installDir: Moonstone Crossroads launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Moonstone.exe type: vr -'1044900': +"1044900": installDir: SHENSHAN launch: - - arguments: '-windowed' + - arguments: "-windowed" config: - osarch: '32' + osarch: "32" oslist: windows executable: SHENSHAN.exe type: default - - arguments: '-windowed' + - arguments: "-windowed" config: oslist: windows executable: SHENSHAN.exe type: none -'1044920': +"1044920": installDir: GrandBattle launch: - config: oslist: windows executable: Grand Battle.exe type: default -'1044930': +"1044930": installDir: lianai_win_Data launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: lianai_win.exe type: default @@ -15859,15 +15729,15 @@ oslist: macos executable: lianai2.app/Contents/MacOS/lianai2 type: default -'1044940': {} -'1044950': +"1044940": {} +"1044950": installDir: Picross Hansel and Gretel - Nonograms launch: - config: oslist: windows executable: Picross Hansel and Gretel.exe type: default -'1044980': +"1044980": installDir: Mech Mechanic Simulator launch: - config: @@ -15877,44 +15747,44 @@ nameLocalized: schinese: 机甲大师 tchinese: 机甲大师 -'1045010': +"1045010": installDir: rus_build64 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: RussiaRogueLike.exe type: default -'1045020': +"1045020": installDir: Blanket Heavy With Nightmares launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: PainajaisPeitto.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: PainajaisPeitto.exe type: vr -'1045050': {} -'1045060': +"1045050": {} +"1045060": installDir: TheCopperCanyonShootOut launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: CopperCanyonShootOut.exe type: vr -'1045070': +"1045070": installDir: Please Find Me launch: - config: oslist: windows executable: PleaseFindMe.exe type: none -'1045080': +"1045080": installDir: CuriousCases launch: - config: @@ -15922,82 +15792,82 @@ description: Play on desktop - No VR executable: CuriousCases.exe type: none - - arguments: '-inVR' + - arguments: "-inVR" config: oslist: windows description: Play in SteamVR executable: CuriousCases.exe type: vr -'1045110': +"1045110": installDir: Space Ops VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SpaceOpsVR.exe type: vr -'1045120': +"1045120": installDir: Brunch Club launch: - executable: Brunch Club.exe type: default -'1045130': +"1045130": installDir: Raatihuone launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TarinatPeliin.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: TarinatPeliin.exe type: vr -'1045140': +"1045140": installDir: ESKO launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Interaction.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: Interaction.exe type: vr -'1045150': +"1045150": installDir: Contort Effect launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: CONTORTEFFECT.exe type: default -'1045180': +"1045180": installDir: Shattered - Tale of the Forgotten King launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ShatteredTOTFK.exe type: default -'1045220': +"1045220": installDir: Cyber Rage Retribution launch: - config: oslist: windows executable: game.exe type: default -'1045280': +"1045280": installDir: eCrossminton launch: - config: oslist: windows executable: eCrossminton.exe type: default -'1045300': +"1045300": installDir: Prismatic Maze launch: - config: @@ -16008,7 +15878,7 @@ oslist: macos executable: PrismaticMaze.app type: default -'1045310': +"1045310": installDir: Escape From Earth launch: - config: @@ -16019,25 +15889,25 @@ oslist: linux executable: Escape From Earth type: default -'1045340': +"1045340": installDir: PUSSY 2 launch: - executable: PUSSY.exe type: none -'1045350': +"1045350": installDir: Hentai Pussy launch: - executable: PUSSY.exe type: none -'1045390': +"1045390": installDir: D20 Dungeons launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: D20DSteam_Win32.exe type: none -'1045400': +"1045400": installDir: YGGDRASIL JIGSAW PUZZLE launch: - config: @@ -16048,14 +15918,14 @@ - config: oslist: macos description: Launch - executable: YJP.app\\Contents\\MacOS\\YJP + executable: "YJP.app\\\\Contents\\\\MacOS\\\\YJP" type: none - config: oslist: linux description: Launch executable: YJP.sh type: none -'1045430': +"1045430": installDir: Circadian City launch: - config: @@ -16066,14 +15936,14 @@ oslist: macos executable: Circadian City.app type: default -'1045510': +"1045510": installDir: Call of Fries launch: - config: oslist: windows executable: Call_of_Fries.exe type: default -'1045520': +"1045520": installDir: Acting Lessons launch: - config: @@ -16088,7 +15958,7 @@ oslist: macos executable: ActingLessons.app type: none -'1045530': +"1045530": installDir: Stupid Quest launch: - config: @@ -16099,7 +15969,7 @@ oslist: macos executable: Stupid Quest.app type: default -'1045580': +"1045580": installDir: Deleveled launch: - config: @@ -16107,29 +15977,29 @@ executable: Deleveled.exe type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: Deleveled.x86_64 type: none - config: oslist: macos - executable: Mac.app\\Contents\\MacOS\\Deleveled + executable: "Mac.app\\\\Contents\\\\MacOS\\\\Deleveled" type: none -'1045590': +"1045590": installDir: Kaisuo launch: - config: oslist: windows executable: Lumos.exe type: vr -'1045610': +"1045610": installDir: Startup Panic launch: - config: oslist: windows executable: Startup Panic.exe type: none -'1045620': +"1045620": installDir: Atelier Lulua launch: - executable: Atelier_Lulua.exe @@ -16140,38 +16010,38 @@ japanese: ルルアのアトリエ ~アーランドの錬金術士4~ schinese: 露露亚的炼金工房 ~亚兰德之炼金术士4~ tchinese: 露露亞的鍊金工房 ~亞蘭德之鍊金術士4~ -'1045650': +"1045650": installDir: My Stunt Life launch: - executable: My Stunt Life.exe type: none -'1045670': +"1045670": installDir: Adventure Dream Team launch: - config: oslist: windows executable: Adventure Dream Team.exe type: default -'1045680': +"1045680": installDir: Money Makes Money launch: - config: - osarch: '64' + osarch: "64" oslist: linux executable: moneygame_en64.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: moneygame_en32.x86 type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: moneygame_en32.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: moneygame_en64.exe type: default @@ -16187,11 +16057,11 @@ oslist: macos executable: Money Makes Money.app type: none -'1045720': +"1045720": installDir: The Coma 2 Vicious Sisters launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Windows Version executable: TheComa2ViciousSisters.exe @@ -16202,43 +16072,43 @@ executable: TheComa2ViciousSisters.app/Contents/MacOS/TheComa2ViciousSisters type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: Linux Version executable: TheComa2ViciousSisters.x86_64 type: default -'1045730': +"1045730": installDir: HyperQ The 4Dimensional Roguelike launch: - config: oslist: windows executable: HyperQ.exe type: default -'1045740': +"1045740": installDir: Hit & Run VR launch: - config: oslist: windows executable: Hit&Run.exe type: vr -'1045750': {} -'1045840': +"1045750": {} +"1045840": installDir: Intruders Hide and Seek launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Intruders.exe type: vr - config: - osarch: '64' + osarch: "64" oslist: windows executable: Intruders.exe type: default -'1045850': +"1045850": installDir: The Walsingham Files - Chapter 1 launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows executable: nw.exe @@ -16247,23 +16117,23 @@ oslist: macos executable: nwjs.app type: none -'1045900': +"1045900": installDir: Outpost On Syrinx launch: - config: oslist: windows executable: Outpost On Syrinx.exe type: none -'1045930': +"1045930": installDir: 1vs1 Battle Royale for the throne launch: - executable: Game.exe type: none -'10460': +"10460": installDir: The Club launch: - executable: launcher.exe -'1046030': +"1046030": installDir: Islanders launch: - config: @@ -16272,13 +16142,13 @@ executable: ISLANDERS.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: Linux 64 bit executable: ISLANDERS.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: linux description: Linux 32 bit executable: ISLANDERS.x86 @@ -16286,40 +16156,40 @@ - config: oslist: macos description: Mac OS X - executable: ISLANDERS.app\\Contents\\MacOS\\ISLANDERS + executable: "ISLANDERS.app\\\\Contents\\\\MacOS\\\\ISLANDERS" type: default -'1046060': - installDir: Dark Romance Hunchback of NotreDame Collector's Edition +"1046060": + installDir: "Dark Romance Hunchback of NotreDame Collector's Edition" launch: - config: oslist: windows executable: DarkRomance_HunchbackOfNotreDame_CE.exe type: default -'1046070': +"1046070": installDir: Helltower launch: - executable: Helltower.exe type: none -'1046110': +"1046110": installDir: Shadow Runner launch: - config: oslist: windows executable: ShadowRunner.exe type: none -'1046130': +"1046130": installDir: Tiki Trials launch: - executable: Tiki Trials.exe type: default -'1046140': +"1046140": installDir: Epic Food Fight VR launch: - config: oslist: windows executable: Epic Food Fight VR.exe type: vr -'1046210': +"1046210": installDir: Munchie_Match launch: - config: @@ -16328,59 +16198,59 @@ type: none - config: oslist: macos - executable: MunchieMatch.app\\Contents\\MacOS\\MunchieMatch + executable: "MunchieMatch.app\\\\Contents\\\\MacOS\\\\MunchieMatch" type: default - config: oslist: linux executable: MunchieMatch type: default -'1046230': +"1046230": installDir: Soccer Player Simulator launch: - config: oslist: windows executable: SoccerPlayerSimulator.exe type: default -'1046240': +"1046240": installDir: Creature Hunt launch: - config: oslist: windows executable: CreatureHunt.exe type: default -'1046270': {} -'1046300': +"1046270": {} +"1046300": installDir: Pirates Outlaws launch: - config: oslist: windows description: Pirates Outlaws - executable: \\PiratesOutlaws_PC\\Pirates Outlaws.exe + executable: "\\\\PiratesOutlaws_PC\\\\Pirates Outlaws.exe" type: option1 - config: oslist: windows description: With Mod - executable: \\PiratesOutlaws_PC\\ModLauncher\\ModLauncher.exe + executable: "\\\\PiratesOutlaws_PC\\\\ModLauncher\\\\ModLauncher.exe" type: option2 nameLocalized: schinese: 枪与香蕉 - Pirates Outlaws tchinese: 槍與香蕉 - Pirates Outlaws -'1046330': +"1046330": installDir: BUTCHERBOX launch: - config: oslist: windows executable: BUTCHERBOX.exe type: default -'1046370': +"1046370": installDir: Meaty McSkinBones launch: - config: oslist: windows executable: SplitGame.exe type: none -'1046380': {} -'1046400': +"1046380": {} +"1046400": installDir: Astalon Tears of the Earth launch: - config: @@ -16397,8 +16267,8 @@ type: default nameLocalized: japanese: アスタロン -地球の涙- -'1046410': {} -'1046430': +"1046410": {} +"1046430": installDir: Unreal Maze Survival launch: - config: @@ -16409,32 +16279,32 @@ oslist: linux executable: MyProject/Binaries/Linux/MyProject-Linux-Shipping type: default -'1046460': {} -'1046470': +"1046460": {} +"1046470": installDir: Deep the Game launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Windows 32 executable: nw.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows description: Windows 64 executable: nw.exe type: default - arguments: chmod a+x config: - osarch: '32' + osarch: "32" oslist: linux description: Linux 32 executable: nw type: default - arguments: chmod a+x config: - osarch: '64' + osarch: "64" oslist: linux description: linux 64 executable: nw @@ -16444,7 +16314,7 @@ description: osx 64 executable: deep.app type: default -'1046480': +"1046480": installDir: StarlitSeason launch: - executable: StarlitSeason.exe @@ -16454,37 +16324,37 @@ koreana: 아이돌마스터 스탈릿 시즌 schinese: 偶像大师 STARLIT SEASON tchinese: 偶像大師 星耀季節 -'1046490': +"1046490": installDir: Action Entities launch: - arguments: ㅤ config: - osarch: '64' + osarch: "64" oslist: windows executable: Action Entities.exe type: default -'1046530': +"1046530": installDir: Universe 24 launch: - executable: Universe24.exe type: default -'1046560': +"1046560": installDir: Sounds of Talent Kpop Adventure launch: - config: oslist: windows executable: Sounds of Talent.exe type: default -'1046570': +"1046570": installDir: Cardlings launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: cardlings.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: cardlings type: default @@ -16492,14 +16362,14 @@ oslist: macos executable: Electron.app type: default -'1046600': +"1046600": installDir: Yu-Nama launch: - config: oslist: windows executable: Yu-Nama.exe type: default -'1046630': +"1046630": installDir: Tank Maniacs launch: - config: @@ -16508,19 +16378,19 @@ type: default - config: oslist: macos - executable: tankmaniacs.app\\Contents\\MacOS\\tankmaniacs + executable: "tankmaniacs.app\\\\Contents\\\\MacOS\\\\tankmaniacs" type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: tankmaniacs.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: tankmaniacs.x86 type: default -'1046660': +"1046660": installDir: Charterstone Digital Edition launch: - config: @@ -16532,129 +16402,117 @@ executable: Charterstone.app/Contents/MacOS/Charterstone type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: Charterstone.x86_64 type: none -'1046670': +"1046670": installDir: Delirium VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: DeliriumVR.exe type: vr -'1046700': {} -'1046740': +"1046700": {} +"1046740": installDir: TimeTraveler launch: - executable: TimeTraveler.exe type: default -'1046750': +"1046750": installDir: Extinction Alien Invasion launch: - config: oslist: windows executable: EXTINCTION ALIEN INVASION.exe type: none -'1046760': +"1046760": nameLocalized: schinese: 亥伯制造 -'1046790': +"1046790": installDir: Eternal Threads launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: EternalThreads.exe type: default nameLocalized: schinese: 无穷时线 -'1046820': - installDir: I'm on Observation Duty +"1046820": + installDir: "I'm on Observation Duty" launch: - config: oslist: windows description: Classic - description_loc: - english: Classic - executable: I'm on observation duty.exe + executable: "I'm on observation duty.exe" type: option1 - config: oslist: linux description: Classic - description_loc: - english: Classic - executable: I'm on Observation Duty.x86_64 + executable: "I'm on Observation Duty.x86_64" type: option1 - config: oslist: linux description: Mobile - description_loc: - english: Mobile - executable: Mobile\\I'm on Observation Duty mobile.x86_64 + executable: "Mobile\\\\I'm on Observation Duty mobile.x86_64" type: option2 - config: oslist: windows description: Mobile - description_loc: - english: Mobile - executable: Mobile\\I'm on Observation Duty mobile.exe + executable: "Mobile\\\\I'm on Observation Duty mobile.exe" type: option2 - config: oslist: macos description: Classic - description_loc: - english: Classic - executable: I'm on observation duty.app + executable: "I'm on observation duty.app" type: option1 - config: oslist: macos description: Mobile - description_loc: - english: Mobile - executable: Mobile\\I'm on Observation Duty mobile.app + executable: "Mobile\\\\I'm on Observation Duty mobile.app" type: option2 -'1046920': {} -'1046930': +"1046920": {} +"1046930": installDir: Underlords launch: - - arguments: '-steam -consolelog -conrotate 3' + - arguments: "-steam -consolelog -conrotate 3" config: - osarch: '64' + osarch: "64" oslist: windows - executable: game\\bin\\win64\\underlords.exe + executable: "game\\\\bin\\\\win64\\\\underlords.exe" type: default - workingdir: game\\dac - - arguments: '-steam -vulkan -consolelog -conrotate 3' + workingdir: "game\\\\dac" + - arguments: "-steam -vulkan -consolelog -conrotate 3" config: oslist: macos executable: game/underlords.sh type: default - - arguments: '-steam -vulkan -consolelog -conrotate 3' + - arguments: "-steam -vulkan -consolelog -conrotate 3" config: - osarch: '64' + osarch: "64" oslist: linux executable: game/underlords.sh type: default -'1046970': {} -'1046980': +"1046970": {} +"1046980": installDir: HORGIHUGH launch: - config: oslist: windows executable: HORGIHUGH.exe type: none -'10470': +"10470": installDir: Happy Tree Friends False Alarm launch: - executable: launcher.exe -'104700': +"104700": installDir: SuperMNC launch: - description: Launch SMNC - executable: .\\Binaries\\Win32\\SuperMNCGameClient.exe -'1047010': + executable: ".\\\\Binaries\\\\Win32\\\\SuperMNCGameClient.exe" +"1047010": installDir: Synergia launch: - config: @@ -16669,26 +16527,26 @@ oslist: linux executable: Synergia.sh type: default -'1047020': +"1047020": installDir: Dice Keeper launch: - executable: DiceKeeper.exe type: none -'1047090': +"1047090": installDir: Catching launch: - config: oslist: windows executable: Cat_Ching!.exe type: default -'1047120': +"1047120": installDir: Gorilla Unko launch: - config: oslist: windows executable: GorillaUnko.exe type: default -'1047140': +"1047140": installDir: THE SOUL HUNTER launch: - config: @@ -16697,23 +16555,23 @@ type: default - config: oslist: macos - executable: TSH.app\\Contents\\MacOS\\TSH + executable: "TSH.app\\\\Contents\\\\MacOS\\\\TSH" type: default -'1047160': +"1047160": installDir: ItazuraVR Safe for Work launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ItazuraVR_SafeforWork.exe type: default - arguments: VR_MODE config: - osarch: '64' + osarch: "64" oslist: windows executable: ItazuraVR_SafeforWork.exe type: vr -'1047190': +"1047190": installDir: Lantern of Worlds - The Story of Layla launch: - config: @@ -16724,15 +16582,15 @@ oslist: macos executable: Game.app type: default -'1047210': +"1047210": installDir: Cold War Game launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ColdWarGame.exe type: default -'1047220': +"1047220": installDir: Frog_Detective_2 launch: - config: @@ -16743,14 +16601,14 @@ oslist: macos executable: Frog_Detective_2.app type: default -'1047240': +"1047240": installDir: Game club Waka-Waka launch: - config: oslist: windows executable: WakaWaka.exe type: default -'1047340': +"1047340": installDir: TimeFall launch: - config: @@ -16761,28 +16619,28 @@ oslist: macos executable: TimeFall.app type: default -'1047350': +"1047350": installDir: Asteroid Wars launch: - config: oslist: windows executable: Asteroid wars.exe type: default -'1047380': +"1047380": installDir: MMA Arena launch: - config: oslist: windows executable: MMA_ARENA.exe type: default -'1047430': +"1047430": installDir: Zulin Time launch: - config: oslist: windows executable: nw.exe type: default -'1047440': +"1047440": installDir: DATE A LIVE Rio Reincarnation launch: - config: @@ -16792,14 +16650,14 @@ nameLocalized: japanese: デート・ア・ライブ 凜緒リンカーネイション HD tchinese: 約會大作戰 -'1047480': +"1047480": installDir: Miner Lou launch: - executable: Miner Lou.exe type: none -'1047490': {} -'1047560': {} -'1047580': +"1047490": {} +"1047560": {} +"1047580": installDir: Ghost Grab 3000 launch: - config: @@ -16811,7 +16669,7 @@ executable: Ghost Grab 3000.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Ghost Grab 3000.x86_64 type: default @@ -16819,67 +16677,63 @@ japanese: 幽霊ひっかけ3000 russian: Хвататель Призраков 3000 schinese: 抓捕幽灵3000 -'1047600': {} -'1047610': +"1047600": {} +"1047610": installDir: Revenis Prologue 01 launch: - config: oslist: windows executable: Revenis Prologue 01.exe type: default -'1047620': +"1047620": installDir: Rasen no Sora launch: - config: oslist: windows executable: Rasen no Sora.exe type: none -'1047640': +"1047640": installDir: Helios launch: - - arguments: '-vr -ngxenable' + - arguments: "-vr -ngxenable" config: - osarch: '64' + osarch: "64" oslist: windows - description: ' VR' - description_loc: - english: ' VR' + description: " VR" executable: Helios.exe type: vr - - arguments: '-novr -nohmd -ngxenable' + - arguments: "-novr -nohmd -ngxenable" config: - osarch: '64' + osarch: "64" oslist: windows - description: 'Desktop ' - description_loc: - english: 'Desktop ' + description: "Desktop " executable: Helios.exe type: option1 -'1047660': {} -'1047670': {} -'1047680': +"1047660": {} +"1047670": {} +"1047680": installDir: ALILIA launch: - config: oslist: windows executable: Game.exe type: default -'1047720': +"1047720": installDir: Dolphin Swim launch: - config: oslist: windows executable: Dolphin Swim.exe type: none -'1047730': {} -'1047750': +"1047730": {} +"1047750": installDir: Chili The Chipmunk Pinball Adventure launch: - config: oslist: windows executable: ChiliTheChipMunkPinBallAdventure.exe type: default -'1047780': +"1047780": installDir: Die Already launch: - config: @@ -16894,7 +16748,7 @@ oslist: linux executable: nw type: default -'1047800': +"1047800": installDir: Ladderhead launch: - config: @@ -16903,23 +16757,23 @@ type: default - config: oslist: macos - executable: Ladderhead.app\\Contents\\MacOS\\Ladderhead + executable: "Ladderhead.app\\\\Contents\\\\MacOS\\\\Ladderhead" type: default -'1047810': +"1047810": installDir: Tropia launch: - config: oslist: windows executable: Tropia.exe type: default -'1047830': +"1047830": installDir: DARK FABLE launch: - config: oslist: windows executable: nw.exe type: default -'1047840': +"1047840": installDir: The Volcano launch: - config: @@ -16934,31 +16788,31 @@ oslist: linux executable: The Volcano.x86 type: default -'1047850': +"1047850": installDir: Narwhal Heist launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: NarwhalHeist.exe type: none -'1047860': +"1047860": installDir: Dunrog launch: - config: oslist: windows executable: Dunrog.exe type: default -'1047870': +"1047870": installDir: Something Ate My Alien launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SAMA.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: SAMA.x86_64 type: default @@ -16966,129 +16820,129 @@ oslist: macos executable: SAMA.app type: default -'1047910': +"1047910": installDir: Slow.Bullet VR launch: - config: oslist: windows executable: SlowBulletVR.exe type: default -'1047930': +"1047930": installDir: Templum de Malum launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: tdm.exe type: none -'1047950': +"1047950": installDir: Guilt launch: - config: oslist: windows executable: GuiltEA.exe type: default -'1047960': +"1047960": installDir: TOK 2 launch: - config: oslist: windows executable: TOK2.exe type: default -'10480': +"10480": installDir: Football Manager 2008 launch: - executable: fm.exe -'1048000': +"1048000": installDir: Monster Girl Fantasy launch: - config: oslist: windows executable: Game.exe type: default -'1048020': +"1048020": installDir: Harvest Moon Mad Dash launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: HMDash.exe type: default -'1048040': +"1048040": installDir: Exosphere launch: - config: oslist: windows executable: exosphere.exe type: default -'1048080': +"1048080": installDir: aMAZE Easter launch: - config: oslist: windows executable: aMAZE Easter.exe type: default -'1048090': +"1048090": installDir: The Fifth Horseman launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows executable: nw.exe type: default -'1048100': +"1048100": installDir: Peekaboo launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Peekaboo.exe type: default -'1048150': {} -'1048160': +"1048150": {} +"1048160": installDir: Skyward launch: - config: oslist: windows executable: Skyward.exe type: none -'1048170': +"1048170": installDir: Latangerine Last Journey launch: - config: oslist: windows - executable: LatangerineLastJourney\\LatangerineLastJourney.exe + executable: "LatangerineLastJourney\\\\LatangerineLastJourney.exe" type: default - config: oslist: linux - executable: LatangerineLastJourney\\LatangerineLastJourney.sh + executable: "LatangerineLastJourney\\\\LatangerineLastJourney.sh" type: default - config: oslist: macos - executable: LatangerineLastJourney\\LatangerineLastJourney.app + executable: "LatangerineLastJourney\\\\LatangerineLastJourney.app" type: default - config: oslist: windows - ownsdlc: '1056980' + ownsdlc: "1056980" description: Latangerine 18+ - executable: LatangerineLastJourney18\\LatangerineLastJourney18.exe + executable: "LatangerineLastJourney18\\\\LatangerineLastJourney18.exe" type: option1 - config: oslist: linux - ownsdlc: '1056980' + ownsdlc: "1056980" description: Latangerine 18+ - executable: LatangerineLastJourney18\\LatangerineLastJourney18.sh + executable: "LatangerineLastJourney18\\\\LatangerineLastJourney18.sh" type: option1 - config: oslist: macos - ownsdlc: '1056980' + ownsdlc: "1056980" description: Latangerine 18+ - executable: LatangerineLastJourney18\\LatangerineLastJourney18.app + executable: "LatangerineLastJourney18\\\\LatangerineLastJourney18.app" type: option1 nameLocalized: french: La derniere aventure de Latangerine -'1048250': {} -'1048260': +"1048250": {} +"1048260": installDir: Super Catscape launch: - config: @@ -17099,72 +16953,68 @@ oslist: macos executable: Super Catscape (OSX).app type: default -'1048270': +"1048270": installDir: Sexy Breakout launch: - config: oslist: windows executable: game.exe type: default -'1048300': +"1048300": installDir: Stumper launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Stumper.exe type: vr -'1048320': +"1048320": installDir: UrbanTerror launch: - config: oslist: windows executable: UrbanTerror.exe type: default -'1048410': +"1048410": installDir: Becoming a Dandelion Spore launch: - config: oslist: windows executable: DandelionSpore.exe type: default -'1048420': +"1048420": installDir: Vacation Adventures Park Ranger 2 launch: - executable: parkRanger2.exe type: none -'1048470': +"1048470": installDir: TheMist launch: - config: oslist: windows executable: TheMist.exe type: default -'1048480': {} -'1048530': +"1048480": {} +"1048530": installDir: RiseOfHumanity launch: - config: oslist: windows description: Play the desktop version of Rise of Humanity - description_loc: - english: Play the desktop version of Rise of Humanity executable: Default/RiseOfHumanity.exe - config: oslist: windows description: Play the Tilt Five™ version of Rise of Humanity - description_loc: - english: Play the Tilt Five™ version of Rise of Humanity executable: Tilt5/RiseOfHumanity.exe -'1048540': +"1048540": installDir: Kao the Kangaroo Round 2 launch: - config: oslist: windows executable: kao2.exe type: default -'1048550': {} -'1048560': +"1048550": {} +"1048560": installDir: Voidrun launch: - description: SDL @@ -17174,7 +17024,7 @@ description: Directx executable: voidrun.exe type: none -'1048570': +"1048570": installDir: In the Pause Between the Ringing launch: - config: @@ -17189,49 +17039,49 @@ oslist: macos executable: Ringing.app type: default -'1048580': +"1048580": installDir: Powder VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Powder VR Demo.exe type: vr -'1048600': +"1048600": installDir: Stela launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Stela.exe type: none -'1048610': {} -'1048620': {} -'1048640': +"1048610": {} +"1048620": {} +"1048640": installDir: At Home launch: - config: oslist: windows executable: AtHome.exe type: default -'1048660': +"1048660": installDir: Knight Squad 2 launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch Knight Squad 2 Windows executable: KnightSquad2.exe type: default -'1048670': {} -'1048690': +"1048670": {} +"1048690": installDir: Cosmic Cash launch: - config: oslist: windows executable: CosmicCash.exe type: none -'1048740': +"1048740": installDir: Half Past Fate launch: - config: @@ -17240,9 +17090,9 @@ type: none - config: oslist: macos - executable: HalfPastFate.app\\Contents\\MacOS\\HalfPastFate + executable: "HalfPastFate.app\\\\Contents\\\\MacOS\\\\HalfPastFate" type: none -'1048780': +"1048780": installDir: City of Edges launch: - config: @@ -17257,37 +17107,37 @@ oslist: macos executable: City of Edges.app type: default -'1048790': +"1048790": installDir: Phantasmata launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows executable: Game.exe type: default -'1048830': +"1048830": installDir: Horse Riding Tales launch: - config: oslist: windows executable: horseridingtales.exe type: none -'1048850': +"1048850": installDir: Jelly Blocks launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: JellyBlocks.exe type: none -'1048860': +"1048860": installDir: Crypterion launch: - config: oslist: windows executable: CrypterionDemo.exe type: default -'1048880': +"1048880": installDir: Emberlight launch: - config: @@ -17296,148 +17146,148 @@ type: default - config: oslist: macos - executable: Emberlight.app\\Contents\\MacOS\\Emberlight + executable: "Emberlight.app\\\\Contents\\\\MacOS\\\\Emberlight" type: default - config: oslist: linux executable: Emberlight.x86_64 type: default -'1048890': +"1048890": installDir: Paper Fire Rookie Arcade launch: - config: oslist: windows executable: PaperFireRookie!Arcade.exe type: vr -'1048900': +"1048900": installDir: The Fog Trap for Moths launch: - config: oslist: windows executable: TheFog.exe type: default -'1048920': - installDir: The Jolly Gang's Misadventures in Africa +"1048920": + installDir: "The Jolly Gang's Misadventures in Africa" launch: - config: oslist: windows executable: TheJollyGangsMisadventuresinAfrica.exe type: default -'1048950': +"1048950": installDir: Desert Skies launch: - config: betakey: alpha - osarch: '64' + osarch: "64" oslist: windows executable: Desert Skies.exe type: none -'1048960': +"1048960": installDir: Leaf launch: - config: oslist: windows - executable: .\\Leaf\\Leaf.exe + executable: ".\\\\Leaf\\\\Leaf.exe" type: default -'1048970': +"1048970": installDir: Crix launch: - config: oslist: windows executable: Crix.exe type: none -'10490': +"10490": installDir: Iron Man launch: - executable: gamelauncher.exe -'104900': +"104900": installDir: Orion Dino Beatdown launch: - - executable: Binaries\\Win32\\DinoHordeGame.exe -'1049000': + - executable: "Binaries\\\\Win32\\\\DinoHordeGame.exe" +"1049000": installDir: Chronoraptor launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ChronoRaptor.exe type: default -'1049030': +"1049030": installDir: Day40 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Day40.exe type: default -'1049040': +"1049040": installDir: Wind Force launch: - config: oslist: windows executable: windforce.exe type: default -'1049070': +"1049070": installDir: Fidelity launch: - config: oslist: windows executable: Fidelity.exe type: default -'1049080': +"1049080": installDir: Candy Adventure launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: CandyAdventure.exe type: default -'1049090': +"1049090": installDir: Virtual Arctic Expedition launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: VAE.exe type: vr -'1049100': +"1049100": installDir: Christmas Tina launch: - config: oslist: windows executable: ChristmasTina.exe type: default -'1049130': +"1049130": installDir: Special Force IW launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SpecialForceVR.exe type: vr -'1049140': +"1049140": installDir: The Cinema Rosa launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TheCinemaRosa.exe type: default -'1049220': +"1049220": installDir: Naxia launch: - config: oslist: windows executable: Naxia.exe type: default -'1049230': +"1049230": installDir: Gray Memory launch: - config: oslist: windows executable: Gray Memory.exe type: default -'1049270': +"1049270": installDir: The Prison launch: - config: @@ -17448,14 +17298,14 @@ oslist: windows executable: The Prison.exe type: none -'1049280': +"1049280": installDir: Pilgrims launch: - config: oslist: windows executable: Pilgrims.exe type: default - - arguments: '-force-glcore42 -force-clamped' + - arguments: "-force-glcore42 -force-clamped" config: oslist: linux executable: Pilgrims.x86 @@ -17471,43 +17321,43 @@ schinese: 朝圣者 (Pilgrims) tchinese: 朝聖者 (Pilgrims) ukrainian: Pilgrims (Пілігрими) -'1049310': +"1049310": installDir: Backpack Twins launch: - config: oslist: windows executable: Backpack Twins.exe type: default -'1049320': +"1049320": installDir: River City Girls launch: - config: oslist: windows executable: RiverCityGirls.exe type: default -'1049360': +"1049360": installDir: Orbitron launch: - config: oslist: windows executable: EighthBuild.exe type: default -'1049370': +"1049370": installDir: F18 Carrier Landing launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: F18CarrierLanding.exe type: othervr -'1049380': +"1049380": installDir: SurviVR - Castle Defender launch: - config: oslist: windows executable: SurviVR - Castle Defender.exe type: vr -'1049400': +"1049400": installDir: Answer Knot launch: - config: @@ -17516,13 +17366,13 @@ type: default - config: oslist: macos - executable: Contents\\MacOS\\AK_build_mac_190719 + executable: "Contents\\\\MacOS\\\\AK_build_mac_190719" type: default -'1049410': +"1049410": installDir: Superliminal launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SuperliminalSteam.exe type: default @@ -17531,14 +17381,14 @@ executable: Superliminal.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Superliminal type: default nameLocalized: schinese: 超阈限空间 Superliminal tchinese: 超閾限空間 Superliminal -'1049420': +"1049420": installDir: Hotel Tutwin launch: - config: @@ -17549,48 +17399,48 @@ oslist: macos executable: Hotel Tutwin.app/Contents/MacOS/nwjs type: default -'1049490': +"1049490": installDir: Trysaria launch: - config: oslist: windows executable: Trysaria.exe type: default -'1049510': +"1049510": installDir: TheseLands launch: - config: oslist: windows executable: TheseLands.exe type: vr -'1049530': +"1049530": installDir: SUBS launch: - config: oslist: windows executable: subs.exe type: default -'1049560': +"1049560": installDir: Run For Cover launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: StrategyRunner.exe type: default -'1049570': +"1049570": installDir: Bloodstream launch: - - arguments: '-vrmode OpenVR' + - arguments: "-vrmode OpenVR" config: - osarch: '64' + osarch: "64" oslist: windows executable: Bloodstream.exe type: vr -'1049590': +"1049590": installDir: Eternal Return launch: - - arguments: '-provider=steam' + - arguments: "-provider=steam" config: oslist: windows executable: EternalReturn.exe @@ -17601,22 +17451,22 @@ koreana: 이터널 리턴 schinese: 永恒轮回 tchinese: 永恆輪迴 -'1049620': {} -'1049630': +"1049620": {} +"1049630": installDir: DELIVERED launch: - config: oslist: windows executable: Delivered.exe type: default -'1049660': +"1049660": installDir: stein.world launch: - config: oslist: windows executable: stein.world.exe type: none -'1049670': +"1049670": installDir: The Final Boss launch: - config: @@ -17629,24 +17479,24 @@ type: default - config: oslist: macos - executable: TheFinalBoss.app\\Contents\\MacOS\\Mac_Runner + executable: "TheFinalBoss.app\\\\Contents\\\\MacOS\\\\Mac_Runner" type: default -'1049680': +"1049680": installDir: Snipiyo launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Sniper.exe type: default -'1049690': +"1049690": installDir: Catch the Head launch: - config: oslist: windows executable: Catch_The_Head.exe type: default -'1049710': +"1049710": installDir: Minute of Islands launch: - config: @@ -17657,87 +17507,87 @@ oslist: macos executable: MinuteOfIslands.app type: none -'1049720': +"1049720": installDir: Sqvishy launch: - config: oslist: windows executable: Sqvishy.exe type: default -'1049730': +"1049730": installDir: Callisto launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Callisto Game launcher executable: Callisto.exe type: default -'1049740': {} -'1049800': +"1049740": {} +"1049800": installDir: BLOCKADE launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: BlockadeEAC.exe type: default -'1049820': +"1049820": installDir: Must Dash Amigos launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: MustDashAmigos.exe type: none -'1049840': +"1049840": installDir: Haramatia launch: - config: oslist: windows executable: nw.exe type: default -'1049870': +"1049870": installDir: Blocksplode launch: - executable: Blocksplode.exe type: default -'1049880': +"1049880": installDir: My Free Farm launch: - config: oslist: windows executable: myfreefarm.exe type: none -'1049890': +"1049890": installDir: Little Witch Nobeta launch: - config: oslist: windows executable: LittleWitchNobeta.exe type: default -'1049910': +"1049910": installDir: Onslaught Armoured Assault launch: - config: oslist: windows executable: Onslaught Armoured Assault.exe type: none -'1049920': {} -'1049930': +"1049920": {} +"1049930": installDir: Frank and 10 roots launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Frank.exe type: default -'1049950': +"1049950": installDir: Arena Stars launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: ArenaStars.exe type: default @@ -17746,11 +17596,11 @@ executable: ArenaStars.app type: none - config: - osarch: '64' + osarch: "64" oslist: windows executable: ArenaStars_64.exe type: none -'10500': +"10500": installDir: Empire Total War launch: - config: @@ -17764,7 +17614,7 @@ oslist: linux description: Launch executable: Empire.sh -'105000': +"105000": installDir: A New Beginning launch: - config: @@ -17779,63 +17629,63 @@ oslist: macos description: Launch executable: A New Beginning.app - workingdir: ./ -'1050000': + workingdir: "./" +"1050000": installDir: Bear With Me The Lost Robots launch: - config: oslist: windows executable: Bear With Me - The Lost Robots.exe type: default -'1050010': +"1050010": installDir: Even For Eternia launch: - config: oslist: windows executable: Even For Eternia.exe type: default -'1050080': +"1050080": installDir: Project Skylab 3 A New Frontier launch: - config: oslist: windows executable: ProjectSkylab3.exe type: default -'1050150': +"1050150": installDir: Sexy Miss launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: miss.exe type: vr -'1050160': +"1050160": installDir: Sacrifice Your Friends launch: - config: oslist: windows executable: Sacrifice Your Friends.exe type: default -'1050170': +"1050170": installDir: Terramancer launch: - executable: Terramancers.exe type: default -'1050180': +"1050180": installDir: Life source launch: - config: oslist: windows executable: Life source.exe type: default -'1050190': +"1050190": installDir: Fast Travel Loot Delivery Service launch: - config: oslist: windows executable: Fast Travel.exe type: none -'1050210': +"1050210": installDir: The Superlatives Shattered Worlds launch: - config: @@ -17850,20 +17700,20 @@ oslist: linux executable: TheSuperlativesShatteredWorlds type: none -'1050230': +"1050230": installDir: Dodge Bubble launch: - executable: DodgeBubble.exe type: default -'1050240': +"1050240": installDir: MiniGolf launch: - config: oslist: windows executable: MiniGolf.exe type: default -'1050270': {} -'1050350': +"1050270": {} +"1050350": installDir: Ultimate Poker launch: - config: @@ -17871,7 +17721,7 @@ description: Online Poker executable: Ultimate Poker.exe type: default -'1050370': +"1050370": installDir: LUNARK launch: - config: @@ -17880,54 +17730,54 @@ type: default - config: oslist: macos - executable: LUNARK.app\\Contents\\MacOS\\LUNARK + executable: "LUNARK.app\\\\Contents\\\\MacOS\\\\LUNARK" type: default -'1050430': +"1050430": installDir: UNI TURRET launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: uniturret.exe type: default -'1050470': {} -'1050500': +"1050470": {} +"1050500": installDir: Feed A Titanosaur launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Titanosaur.exe type: vr -'1050510': +"1050510": installDir: Super Tennis Blast launch: - config: oslist: windows executable: Super Tennis Blast.exe type: default -'1050520': +"1050520": installDir: Super Pig X launch: - config: oslist: windows executable: SuperPigX.exe type: default -'1050540': +"1050540": installDir: Valley Of The Moon launch: - config: oslist: windows executable: valleyofthemoon.exe type: default -'1050560': +"1050560": installDir: TAG WAR launch: - config: oslist: windows executable: Tag_War.exe type: vr -'1050580': +"1050580": installDir: Adventure In Aellion launch: - config: @@ -17938,40 +17788,40 @@ oslist: macos executable: Adventure-Mac-Shipping.app type: default -'1050620': +"1050620": installDir: Hitchhiker launch: - config: oslist: windows executable: Hitchhiker.exe type: none -'1050660': +"1050660": installDir: Noodle Jump launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: NoodleJump.exe type: default -'1050670': +"1050670": installDir: Fear in Hospital launch: - executable: Fear in Hospital.exe type: none -'1050680': +"1050680": installDir: Survirus launch: - executable: survirus.exe type: default -'1050690': - installDir: Stickman's Rainbow +"1050690": + installDir: "Stickman's Rainbow" launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: Stickman's Rainbow\\Stickman's Rainbow.exe + executable: "Stickman's Rainbow\\\\Stickman's Rainbow.exe" type: default -'1050700': +"1050700": installDir: Breaking Bunny launch: - config: @@ -17979,27 +17829,27 @@ description: Launch executable: Breaking_Bunny_x.exe type: none -'1050730': +"1050730": installDir: Uriel’s Chasm 3 Gelshock launch: - config: oslist: windows executable: UC3.exe type: default -'1050750': {} -'1050760': {} -'1050810': +"1050750": {} +"1050760": {} +"1050810": installDir: The Hunt in the Forest launch: - config: oslist: windows executable: The Hunt in the Forest.exe type: default -'1050850': +"1050850": installDir: Automaton Arena launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: AutomatonArena.exe type: default @@ -18007,29 +17857,29 @@ oslist: macos executable: AutomatonArena.app/Contents/MacOS/AutomatonArena type: default -'1050870': {} -'1050880': +"1050870": {} +"1050880": installDir: Wavey The Rocket launch: - config: oslist: windows executable: Wavey The Rocket.exe type: default -'1050900': +"1050900": installDir: Die Bloody Nazi Die! launch: - executable: DBND.exe type: default -'1050910': +"1050910": installDir: GALAXY MONSTER launch: - executable: GALAXY MONSTER.exe type: default -'10510': +"10510": installDir: The Incredible Hulk launch: - executable: Launcher.exe -'105100': +"105100": installDir: Lume launch: - config: @@ -18041,70 +17891,68 @@ - config: oslist: linux executable: Lume -'1051130': +"1051130": installDir: Trial of the Towers launch: - config: oslist: windows executable: Towers.exe type: default -'1051160': +"1051160": installDir: Snowball Rush launch: - config: oslist: windows executable: snowballrush.exe type: default -'1051170': +"1051170": installDir: HOME launch: - executable: Home.exe type: none -'1051190': +"1051190": installDir: Reel Fishing Road Trip Adventure launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ReelFishing_RoadTripAdventure.exe type: none -'1051200': +"1051200": installDir: Trover Saves the Universe launch: - - arguments: '-nohmd' + - arguments: "-nohmd" config: - osarch: '64' + osarch: "64" oslist: windows executable: Trover.exe type: default - - arguments: '-vr -hmd=SteamVR' + - arguments: "-vr -hmd=SteamVR" config: - osarch: '64' + osarch: "64" oslist: windows executable: Trover.exe type: vr - - arguments: '-vr -hmd=OculusHMD' + - arguments: "-vr -hmd=OculusHMD" config: - osarch: '64' + osarch: "64" oslist: windows executable: Trover.exe type: othervr - - arguments: '-vr -hmd=OSVR' + - arguments: "-vr -hmd=OSVR" config: - osarch: '64' + osarch: "64" oslist: windows description: OSVR Mode - description_loc: - english: OSVR Mode executable: Trover.exe type: option1 - - arguments: '-nohmd' + - arguments: "-nohmd" config: - osarch: '64' + osarch: "64" oslist: linux executable: Trover.sh type: default -'1051220': +"1051220": installDir: busy_spider launch: - config: @@ -18114,58 +17962,58 @@ type: default nameLocalized: schinese: 蜘蛛大乱斗 -'1051250': +"1051250": installDir: Try To Survive launch: - config: oslist: windows executable: TryToSurvive.exe type: default -'1051260': +"1051260": installDir: Forklift launch: - executable: Forklift.exe type: none -'1051270': +"1051270": installDir: Logistic Expert launch: - executable: Logistic Expert.exe type: none -'1051280': +"1051280": installDir: Ballista Legend.exe launch: - config: oslist: windows executable: Ballista Legend.exe type: none -'1051290': +"1051290": installDir: ZIC – Zombies in City launch: - executable: ZIC – Zombies in City.exe type: none -'1051300': +"1051300": installDir: Parking 3D launch: - executable: Parking 3D.exe type: none -'1051310': +"1051310": installDir: Paper Dolls Original launch: - config: oslist: windows executable: PaperDollsOriginal.exe type: default -'1051320': +"1051320": installDir: Mahjong Puzzle World launch: - executable: Mahjong Puzzle World.exe type: none -'1051330': +"1051330": installDir: Crossroads Extreme launch: - executable: Crossroads Extreme.exe type: none -'1051350': +"1051350": installDir: Dead Forest launch: - config: @@ -18177,7 +18025,7 @@ - config: oslist: macos executable: DeadForest.app -'1051410': +"1051410": installDir: Wanderlust launch: - config: @@ -18189,16 +18037,16 @@ executable: Wanderlust.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Wanderlust type: default -'1051420': - installDir: J.Edgar Hoover's FBI +"1051420": + installDir: "J.Edgar Hoover's FBI" launch: - config: oslist: windows - executable: Jey's Empire.exe + executable: "Jey's Empire.exe" type: default - config: oslist: macos @@ -18208,15 +18056,15 @@ oslist: linux executable: JeysEmpire.x86_64 type: default -'1051440': {} -'1051470': +"1051440": {} +"1051470": installDir: Animal Friends Adventure launch: - config: oslist: windows executable: Animal Friends Adventure.exe type: default -'1051500': +"1051500": installDir: Digital Diamond Baseball V8 launch: - config: @@ -18227,42 +18075,42 @@ oslist: macos executable: DigitalDiamondBaseballV8.app type: default -'1051530': +"1051530": installDir: HELPLESS ZOMBIES launch: - config: oslist: windows executable: game.exe type: default -'1051570': +"1051570": installDir: Hockey Player VR launch: - config: oslist: windows executable: Hockey Player VR.exe type: vr -'1051580': +"1051580": installDir: Skjoldur Story launch: - config: oslist: windows executable: SkjoldurStory.exe type: none -'1051590': +"1051590": installDir: Lulu & Ennoi - Sacred Suit Girls launch: - config: oslist: windows executable: Lulu & Ennoi - Sacred Suit Girls.exe type: none -'1051600': - installDir: Surface The Soaring City Collector's Edition +"1051600": + installDir: "Surface The Soaring City Collector's Edition" launch: - config: oslist: windows executable: Surface_TheSoaringCity.exe type: default -'1051630': +"1051630": installDir: Memorial Park launch: - config: @@ -18271,83 +18119,83 @@ type: none - config: oslist: macos - executable: _Macc.app\\Contents\\MacOS\\Memorial Park of Hypoxia + executable: "_Macc.app\\\\Contents\\\\MacOS\\\\Memorial Park of Hypoxia" - config: oslist: linux - executable: _Linux\\Memorial Park of Hypoxia.x86_64 -'1051690': + executable: "_Linux\\\\Memorial Park of Hypoxia.x86_64" +"1051690": installDir: Nightmare Reaper launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: NightmareReaper.exe type: default -'1051710': +"1051710": installDir: CHUCK launch: - config: oslist: windows executable: chuck.exe type: none -'1051810': +"1051810": installDir: VCB - Why City 4k launch: - config: oslist: windows executable: VCB.exe type: default -'1051830': +"1051830": installDir: House of Evil 2 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: House of Evil 2.exe type: default -'1051840': +"1051840": installDir: Paradox Vector launch: - config: oslist: windows executable: Paradox_Vector.exe type: default -'1051850': +"1051850": installDir: Free Company VR launch: - config: oslist: windows executable: Free Company VR.exe type: vr -'1051890': +"1051890": installDir: BLOCKADE War Stories launch: - config: oslist: windows executable: BlockadeWarStories.exe type: default -'1051900': +"1051900": installDir: ExitLimbo_Opening_Beta launch: - - arguments: '-window-mode exclusive' + - arguments: "-window-mode exclusive" config: oslist: windows description: Exclusive Fullscreen (Recommended) executable: Game.exe type: default - - arguments: '-d' + - arguments: "-d" config: oslist: windows description: Debug Mode executable: Game.exe type: option1 - - arguments: '-window-mode borderless' + - arguments: "-window-mode borderless" config: oslist: windows description: Borderless Fullscreen executable: Game.exe type: option2 -'1051920': +"1051920": installDir: CD-RUN launch: - config: @@ -18356,30 +18204,30 @@ type: default - config: oslist: macos - executable: Contents\\MacOS\\CD-RUN + executable: "Contents\\\\MacOS\\\\CD-RUN" type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: CD-RUN.x86_64 type: default -'1051940': +"1051940": installDir: The Artifacts launch: - config: oslist: windows executable: TheArtifacts.exe type: default -'1051950': +"1051950": installDir: Voyage launch: - config: betakey: default - osarch: '64' + osarch: "64" oslist: windows executable: Voyage.exe type: default -'1051960': +"1051960": installDir: Fly Punch Boom! launch: - config: @@ -18389,11 +18237,11 @@ nameLocalized: schinese: 飞拳爆 tchinese: 飛拳爆 -'10520': +"10520": installDir: Beijing 2008 launch: - executable: Beijing.exe -'1052010': +"1052010": installDir: Heidentum launch: - config: @@ -18411,8 +18259,8 @@ description: Play Heidentum on Linux / SteamOS executable: Heidentum.x86_64 type: default -'1052020': {} -'1052030': +"1052020": {} +"1052030": installDir: StarImpactByMeGames launch: - config: @@ -18423,16 +18271,16 @@ oslist: windows executable: StarImpact.exe type: default -'1052050': {} -'1052070': +"1052050": {} +"1052070": installDir: Burning Daylight launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: BurningDaylight.exe type: default -'1052080': +"1052080": installDir: Resistance is Fruitile launch: - config: @@ -18443,24 +18291,24 @@ oslist: macos executable: ResistanceIsFruitile.app type: default -'1052100': +"1052100": installDir: Heart of Smoke launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Windows 64-bit executable: nw.exe type: default -'1052120': {} -'1052140': +"1052120": {} +"1052140": installDir: Function launch: - config: oslist: windows executable: Function.exe type: vr -'1052150': +"1052150": installDir: WoozyHero launch: - config: @@ -18470,53 +18318,53 @@ type: default - config: oslist: macos - executable: woozyhero.app\\Contents\\MacOS\\woozyhero + executable: "woozyhero.app\\\\Contents\\\\MacOS\\\\woozyhero" type: default -'1052210': - installDir: Barney's Dream Cruise +"1052210": + installDir: "Barney's Dream Cruise" launch: - config: oslist: windows - executable: Barney's Dream Cruise.exe + executable: "Barney's Dream Cruise.exe" type: default - config: oslist: macos - executable: Barney's Dream Cruise.app + executable: "Barney's Dream Cruise.app" type: default - config: oslist: linux - executable: Barney's Dream Cruise.x86_64 + executable: "Barney's Dream Cruise.x86_64" type: default -'1052220': +"1052220": installDir: GlassSmash launch: - config: oslist: windows executable: GlassSmash.exe type: default -'1052230': +"1052230": installDir: CONCLUSE 2 launch: - config: oslist: windows executable: CONCLUSE 2.exe type: default -'1052250': +"1052250": installDir: Tiger Tank 59 Ⅰ Black Hill Fortress launch: - config: oslist: windows executable: game.exe type: default -'1052310': +"1052310": installDir: TUBWT launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TUBWT.exe type: default -'1052360': +"1052360": installDir: Combate Monero launch: - config: @@ -18525,9 +18373,9 @@ type: default - config: oslist: macos - executable: Combate_Monero_Mac.app\\Contents\\MacOS\\Combate_Monero_Mac + executable: "Combate_Monero_Mac.app\\\\Contents\\\\MacOS\\\\Combate_Monero_Mac" type: default -'1052370': +"1052370": installDir: Echo Royale launch: - config: @@ -18536,16 +18384,16 @@ type: default - config: oslist: macos - executable: Echo Royale.app\\Contents\\MacOS\\Echo Royale + executable: "Echo Royale.app\\\\Contents\\\\MacOS\\\\Echo Royale" type: default -'1052380': +"1052380": installDir: Ikeda_TheScrapHunter launch: - config: oslist: windows executable: Ikeda - Scrap Hunter E.P..exe type: default -'1052390': +"1052390": installDir: Steel Seraph launch: - config: @@ -18558,24 +18406,24 @@ type: default - config: oslist: macos - executable: Steel Seraph 180M.app\\Contents\\MacOS\\Steel Seraph + executable: "Steel Seraph 180M.app\\\\Contents\\\\MacOS\\\\Steel Seraph" type: none -'1052420': +"1052420": installDir: Badland Caravan launch: - config: oslist: windows executable: BadlandCaravan.exe type: default -'1052430': +"1052430": installDir: mengniangzhanji launch: - config: - betakey: '0' + betakey: "0" oslist: windows executable: mnzj.exe type: default -'1052440': +"1052440": installDir: Croixleur Sigma launch: - config: @@ -18583,7 +18431,7 @@ description: Default game launch. executable: CroixleurDX.exe type: default - - arguments: '-ResetSettings' + - arguments: "-ResetSettings" config: oslist: windows description: Reset the key configuration information and other settings and start the game. @@ -18592,14 +18440,14 @@ nameLocalized: japanese: クロワルール・シグマ デラックスエディション schinese: 黑色規則:西格瑪 -'1052450': {} -'1052460': {} -'1052470': +"1052450": {} +"1052460": {} +"1052470": installDir: OfficeEscape launch: - executable: OfficeEscape.exe type: vr -'1052480': +"1052480": installDir: Adecke - Cards Games Deluxe launch: - config: @@ -18609,23 +18457,23 @@ type: default - config: oslist: macos - executable: Adecke.app\\Contents\\MacOS\\Adecke + executable: "Adecke.app\\\\Contents\\\\MacOS\\\\Adecke" type: default - config: oslist: linux executable: Adecke.x86_64 type: default -'1052500': +"1052500": installDir: 御龙在天-平衡国战版 launch: - arguments: lypf=20 qId=1052500 ctype=1 config: oslist: windows - description: '游戏[御龙在天-平衡国战]' + description: "游戏[御龙在天-平衡国战]" executable: ylzt.exe type: default -'1052510': {} -'1052540': +"1052510": {} +"1052540": installDir: Toolboy launch: - config: @@ -18633,67 +18481,67 @@ description: Launch executable: Toolboy.exe type: default -'1052550': +"1052550": installDir: Global Soccer Manager 2019 launch: - executable: manager19.exe type: none -'1052560': +"1052560": installDir: Murder On The Island launch: - executable: MurderOnTheIsland.exe type: none -'1052580': +"1052580": installDir: farewellplanet launch: - config: oslist: macos - executable: farewellplanet.app\\Contents\\MacOS\\farewellplanet + executable: "farewellplanet.app\\\\Contents\\\\MacOS\\\\farewellplanet" type: default - config: oslist: windows executable: farewellplanet.exe type: default -'1052590': +"1052590": installDir: ZYKRUN launch: - config: oslist: windows executable: ZYKRUN.exe type: none -'1052600': +"1052600": installDir: Amortizer Off-Road launch: - executable: Amortizer OffRoad.exe type: none -'1052640': +"1052640": installDir: Retrace launch: - executable: Retrace.exe type: default -'1052650': {} -'1052660': +"1052650": {} +"1052660": installDir: Hour of the Snake launch: - config: oslist: windows executable: Hour_of_the_Snake.exe type: default -'1052670': +"1052670": installDir: Trainspotting Simulator launch: - config: oslist: windows executable: train sim.exe type: default -'1052750': +"1052750": installDir: The Artefacts lost in the Galaxy launch: - config: oslist: windows executable: the-artefact-lost-in-the-galaxy.exe type: default -'1052760': +"1052760": installDir: Hexa Path launch: - config: @@ -18704,60 +18552,60 @@ oslist: linux executable: Hexa Path.x86_64 type: none -'1052790': +"1052790": installDir: TRPG in VR Space launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TRPG in VR Space.exe type: vr -'1052850': +"1052850": installDir: Perplexity - Suburban Home launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Perplexity - Suburban Home.exe type: vr -'1052870': +"1052870": installDir: Pixel Puzzles 2 Paintings launch: - config: oslist: windows executable: Pixel Puzzles 2 Paintings.exe type: none -'1052890': - installDir: The Hunt - Sophie's Journey +"1052890": + installDir: "The Hunt - Sophie's Journey" launch: - config: oslist: windows - executable: The Hunt - Sophie's Journey/Game.exe + executable: "The Hunt - Sophie's Journey/Game.exe" type: default -'1052900': +"1052900": installDir: Assault of the Robots launch: - config: oslist: windows executable: Assault of the Robots.exe type: default -'1052920': +"1052920": installDir: Caelus Trident launch: - config: oslist: windows executable: Caelus Trident.exe type: none -'1052990': - installDir: A Monster's Expedition +"1052990": + installDir: "A Monster's Expedition" launch: - config: oslist: windows - executable: A Monster's Expedition.exe + executable: "A Monster's Expedition.exe" type: default - config: oslist: macos - executable: A Monster's Expedition.app + executable: "A Monster's Expedition.app" type: default - config: oslist: linux @@ -18766,12 +18614,12 @@ nameLocalized: schinese: 怪兽远征 tchinese: 怪獸遠征 -'10530': +"10530": installDir: Space Siege launch: - - executable: Space Siege\\SpaceSiege.exe + - executable: "Space Siege\\\\SpaceSiege.exe" workingdir: Space Siege -'105300': +"105300": installDir: Critical Mass launch: - config: @@ -18780,7 +18628,7 @@ - config: oslist: macos executable: CriticalMassSteam.app -'1053000': +"1053000": installDir: PLANES ATTACK launch: - config: @@ -18789,26 +18637,26 @@ type: default - config: oslist: macos - executable: PLANES ATTACK.app\\Contents\\MacOS\\PLANES ATTACK + executable: "PLANES ATTACK.app\\\\Contents\\\\MacOS\\\\PLANES ATTACK" type: default - config: oslist: linux executable: PLANES ATTACK.x86_64 type: default -'1053020': +"1053020": installDir: Galak Zed launch: - executable: GalakZed.exe type: none -'1053040': +"1053040": installDir: ZombieOrNotZombie launch: - - arguments: '-windowed --in-process-gpu' + - arguments: "-windowed --in-process-gpu" config: oslist: windows - executable: ToBeOrNotToBe\\nw.exe + executable: "ToBeOrNotToBe\\\\nw.exe" type: default -'1053060': +"1053060": installDir: KillStreak.tv launch: - config: @@ -18819,19 +18667,19 @@ oslist: macos executable: KillStreak.tv.app type: none -'1053090': +"1053090": installDir: Virtual Skydiving launch: - config: oslist: windows executable: VirtualSkydiving.exe type: vr -'1053160': +"1053160": installDir: Witch Ring Meister launch: - executable: Witch Ring Meister.exe type: none -'1053170': +"1053170": installDir: ICE launch: - config: @@ -18846,7 +18694,7 @@ oslist: linux executable: ICE.x86 type: default -'1053190': +"1053190": installDir: Lover Bands launch: - config: @@ -18857,28 +18705,28 @@ oslist: macos executable: game.app/Contents/MacOS/game type: default -'1053250': +"1053250": installDir: TOK HARDCORE launch: - config: oslist: windows executable: TOKH.exe type: default -'1053270': +"1053270": installDir: Makeover Desire - HENSHIN GANBO launch: - config: oslist: windows executable: henshin.exe type: default -'1053300': +"1053300": installDir: Archibald 2 launch: - config: oslist: windows executable: Archibald2.exe type: default -'1053330': +"1053330": installDir: SCRAP RUSH!! launch: - config: @@ -18896,7 +18744,7 @@ oslist: windows executable: SCRAP_RUSH_demo_dev.exe type: default -'1053390': +"1053390": installDir: Kowloon launch: - executable: SteamLauncher.exe @@ -18906,19 +18754,19 @@ japanese: 九龍妖魔學園紀 ORIGIN OF ADVENTURE schinese: Kowloon High-School Chronicle tchinese: Kowloon High-School Chronicle -'1053560': - installDir: Saint Hazel's Horsepital +"1053560": + installDir: "Saint Hazel's Horsepital" launch: - config: oslist: windows - executable: St. Hazel's Horsepital.exe + executable: "St. Hazel's Horsepital.exe" type: none -'1053600': +"1053600": installDir: Reactivated launch: - executable: Reactivated.exe type: none -'1053620': +"1053620": installDir: MIDNIGHT Remastered launch: - config: @@ -18929,34 +18777,34 @@ oslist: macos executable: MIDNIGHT Remastered.app type: default -'1053640': +"1053640": installDir: RockaBowlingVR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: RockaBowling.exe type: openvroverlay -'1053650': +"1053650": installDir: Drive for Your Life launch: - config: oslist: windows executable: Drive For Your Life.exe type: default -'1053660': +"1053660": installDir: Chaos Starter launch: - config: oslist: windows executable: ChaosStarter.exe type: default -'1053670': {} -'1053680': +"1053670": {} +"1053680": installDir: Granny Simulator launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Granny Simulator.exe type: default @@ -18966,9 +18814,9 @@ type: default - config: oslist: macos - executable: MacBuild.app\\Contents\\MacOS\\Mac + executable: "MacBuild.app\\\\Contents\\\\MacOS\\\\Mac" type: none -'1053700': +"1053700": installDir: Fishy Dungeon Delving launch: - config: @@ -18976,27 +18824,25 @@ description: Standard Launch executable: Fishy Dungeon Delving.exe type: default - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" config: oslist: windows description: Open the Unity Engine resolution dialogue to change graphics settings or controls. executable: Fishy Dungeon Delving.exe type: config -'1053710': +"1053710": installDir: The Red Lantern launch: - config: oslist: windows description: The Red Lantern - description_loc: - english: The Red Lantern executable: TheRedLantern_sw.exe type: default -'1053720': +"1053720": installDir: Knife Only launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: knifeonly.exe type: none @@ -19005,30 +18851,30 @@ executable: knifeonly.app type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: knifeonly.x86_64 type: none -'1053730': +"1053730": installDir: fxl2 launch: - - executable: win64\\FoxyLand2.exe + - executable: "win64\\\\FoxyLand2.exe" type: none -'1053740': +"1053740": installDir: Bunker - Nightmare Begins launch: - config: oslist: windows executable: Bunker - Nightmare Begins.exe type: none -'1053750': +"1053750": installDir: The Red Reactor launch: - config: oslist: windows executable: The Red Reactor.exe type: default -'1053780': +"1053780": installDir: Pixel Art Monster - Color by Number launch: - config: @@ -19110,7 +18956,7 @@ description: Pixel Art Monster - Expansion Pack 15 executable: Pixel Art Monster - Expansion Pack 15.exe type: option1 -'1053820': +"1053820": installDir: EternalConcord launch: - config: @@ -19132,24 +18978,24 @@ executable: EternalConcord.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: EternalConcord type: config - arguments: play config: - osarch: '64' + osarch: "64" oslist: linux executable: EternalConcord type: default -'1053830': +"1053830": installDir: Ninja Legends launch: - config: oslist: windows executable: vr-ninja.exe type: vr -'1053850': +"1053850": installDir: Last Hope Z - VR launch: - config: @@ -19157,33 +19003,33 @@ description: Launch executable: LastHopeZ-VR.exe type: vr -'1053870': +"1053870": installDir: Ruins to Rumble launch: - config: oslist: windows executable: RuinsToRumble.exe type: default -'1053900': {} -'1053920': +"1053900": {} +"1053920": installDir: Emergency Water Landing launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Emergency Water Landing.exe type: default -'1053940': +"1053940": installDir: Countermark Saga launch: - executable: game.exe type: default -'1053950': {} -'1053960': +"1053950": {} +"1053960": installDir: BotBattles launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: BotBattles.exe type: default @@ -19191,101 +19037,101 @@ oslist: macos executable: BotBattles.app/Contents/MacOS/BotBattles type: default -'10540': +"10540": installDir: Football Manager 2009 launch: - executable: fm.exe -'105400': +"105400": installDir: Fable 3 launch: - executable: FableLauncher.exe -'1054030': +"1054030": installDir: Adventures of forsenE The Hobo Knight launch: - config: oslist: windows executable: Adventures of forsenE The Hobo Knight.exe type: default -'1054040': +"1054040": installDir: Warlander launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Warlander.exe type: default -'1054050': +"1054050": installDir: Hero must die again launch: - executable: diana.exe type: default -'1054080': +"1054080": nameLocalized: japanese: 飽和した宇宙空間 schinese: 饱和外太空 -'1054090': +"1054090": installDir: TECHNOSPHERE RELOAD launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Technosphere Reload.exe type: default -'1054110': +"1054110": installDir: There The Light launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ThereTheLight.exe type: default - config: oslist: macos - executable: ThereTheLight.app\\Contents\\MacOS\\ThereTheLight + executable: "ThereTheLight.app\\\\Contents\\\\MacOS\\\\ThereTheLight" type: default -'1054150': +"1054150": installDir: Fantasy Battles launch: - config: oslist: windows executable: Game.exe type: none -'1054170': {} -'1054180': +"1054170": {} +"1054180": installDir: Cheeky Beetle And The Unlikely Heroes launch: - executable: Cheeky Beetle and the Unlikely Heroes.exe type: none -'105420': +"105420": installDir: MsSplosionMan launch: - executable: MsSplosionMan.exe -'1054240': +"1054240": installDir: Easy puzzle Animals launch: - config: oslist: windows executable: Easy puzzle Animals.exe type: config -'1054250': +"1054250": installDir: krAsAvA Shot launch: - config: oslist: windows executable: nw.exe type: default -'1054270': +"1054270": installDir: Rashlander launch: - config: oslist: windows executable: nw.exe type: none -'1054290': +"1054290": installDir: Dezzan launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Dezzan.exe type: default @@ -19293,11 +19139,11 @@ oslist: linux executable: Dezzan.x86_64 type: none -'105430': +"105430": installDir: Age Of Empires Online launch: - executable: AOEOnline.exe -'1054300': +"1054300": installDir: the fairytale of DEATH launch: - config: @@ -19306,25 +19152,25 @@ type: default - config: oslist: macos - executable: theTale.app\\Contents\\MacOS\\theTale + executable: "theTale.app\\\\Contents\\\\MacOS\\\\theTale" type: default -'1054310': +"1054310": installDir: Fade Out launch: - config: oslist: windows executable: Fade Out.exe type: vr -'1054340': +"1054340": installDir: Logic World launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Logic_World.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Logic_World type: default @@ -19332,21 +19178,21 @@ oslist: macos executable: Logic_World.app type: default -'1054350': +"1054350": installDir: Lost and Hound launch: - config: oslist: windows executable: Lost and Hound.exe type: default -'1054370': +"1054370": installDir: SandboxAnything launch: - config: oslist: windows executable: SandboxAnything.exe type: none -'1054430': +"1054430": installDir: Fling to the Finish launch: - config: @@ -19354,7 +19200,7 @@ executable: Fling to the Finish.exe type: default - config: - betakey: 'development, internal-testing, testing, beta, kickstarter-backer-access' + betakey: "development, internal-testing, testing, beta, kickstarter-backer-access" oslist: macos executable: Fling to the Finish.app type: default @@ -19363,8 +19209,8 @@ koreana: 우당탕탕 경주 Fling to the Finish schinese: Fling to the Finish 终极拉扯 tchinese: Fling to the Finish 拉拉扯扯向前衝 -'1054440': {} -'1054450': +"1054440": {} +"1054450": installDir: The Raintime launch: - config: @@ -19375,14 +19221,14 @@ oslist: macos executable: raintime.app type: default -'1054460': +"1054460": installDir: Tuition launch: - config: oslist: windows executable: Tuition.exe type: vr -'1054490': +"1054490": installDir: Wingspan launch: - config: @@ -19397,41 +19243,41 @@ brazilian: WINGSPAN czech: WINGSPAN (NA KŘÍDLECH) english: Wingspan - french: WINGSPAN (À TIRE D'AILES) + french: "WINGSPAN (À TIRE D'AILES)" german: WINGSPAN (FLÜGELSCHLAG) hungarian: WINGSPAN (FESZTÁV) - italian: ' WINGSPAN' + italian: " WINGSPAN" japanese: WINGSPAN (ウイングスパン) koreana: WINGSPAN (윙스팬) - polish: ' WINGSPAN (NA SKRZYDŁACH)' + polish: " WINGSPAN (NA SKRZYDŁACH)" russian: WINGSPAN (КРЫЛЬЯ) schinese: WINGSPAN (展翅翱翔) spanish: WINGSPAN -'105450': +"105450": installDir: Age Of Empires 3 launch: - description: Age of Empires III - executable: bin\\age3.exe - - description: 'Age of Empires III: The War Chiefs' - executable: bin\\age3x.exe - - description: 'Age of Empires III: Asian Dynasties' - executable: bin\\age3y.exe -'1054500': + executable: "bin\\\\age3.exe" + - description: "Age of Empires III: The War Chiefs" + executable: "bin\\\\age3x.exe" + - description: "Age of Empires III: Asian Dynasties" + executable: "bin\\\\age3y.exe" +"1054500": installDir: Ducks in Space launch: - config: oslist: windows executable: Ducks In Space.exe type: default -'1054510': +"1054510": installDir: Survivalist Invisible Strain launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Survivalist Invisible Strain.exe type: default -'1054520': +"1054520": installDir: SteamPipe launch: - config: @@ -19442,7 +19288,7 @@ oslist: macos executable: Whokilledher_mac_v1.0_B.app type: default -'1054550': +"1054550": installDir: Phantom Rose launch: - config: @@ -19454,55 +19300,55 @@ executable: Phantom Rose.app/Contents/MacOS/Phantom Rose type: default nameLocalized: - japanese: 'ファントムローズ ' + japanese: "ファントムローズ " koreana: 팬텀 로즈 -'1054560': +"1054560": installDir: Alice in Stardom launch: - config: oslist: windows executable: AliceinStardom.exe type: default -'1054590': +"1054590": installDir: MoonlightWarrior launch: - config: oslist: windows executable: MoonlightWarrior.exe type: default -'1054610': +"1054610": installDir: Chocolate makes you happy Easter launch: - config: oslist: windows executable: Chocolate makes you happy Easter.exe type: default -'1054620': +"1054620": installDir: Vengeful Bat Dungeon Crawler launch: - config: oslist: windows executable: Game.exe type: default -'1054630': +"1054630": installDir: Tank battle launch: - executable: Game.exe type: default -'1054640': +"1054640": installDir: The Tower of Worth launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TheTower.exe type: default -'1054650': +"1054650": installDir: JQ cosmos launch: - executable: JQCosmos.exe type: none -'1054660': +"1054660": installDir: Factory Balls launch: - config: @@ -19511,9 +19357,9 @@ type: default - config: oslist: macos - executable: FactoryBalls.app\\Contents\\MacOS\\FactoryBalls + executable: "FactoryBalls.app\\\\Contents\\\\MacOS\\\\FactoryBalls" type: default -'1054690': +"1054690": installDir: Dreadlands launch: - config: @@ -19529,20 +19375,20 @@ executable: binaries/memphis_bundled.bat type: none workingdir: binaries -'1054700': +"1054700": installDir: Back To Ashes launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Back To Ashes.exe type: default -'1054710': +"1054710": installDir: Driven Out launch: - executable: Driven_out_STEAM.exe type: none -'1054720': +"1054720": installDir: DumbFight launch: - config: @@ -19551,14 +19397,14 @@ description: Launch executable: DumbFight.exe type: default -'1054750': +"1054750": installDir: Magic Farm 2 launch: - config: oslist: windows executable: Magic Farm 2.exe type: default -'1054770': +"1054770": installDir: Gear launch: - config: @@ -19569,47 +19415,47 @@ oslist: macos executable: Gear.app type: default -'1054790': +"1054790": installDir: Elon Must - Road to Respect launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Road to Respect.exe type: default -'1054800': +"1054800": installDir: Variables launch: - config: oslist: windows executable: Variables.exe type: default -'1054820': {} -'1054850': +"1054820": {} +"1054850": installDir: Storms launch: - config: oslist: windows executable: Storms/Storms.exe type: default -'1054900': +"1054900": installDir: DevilShaft TheTower launch: - config: oslist: windows executable: DevilShaft The Tower.exe type: default -'1054930': +"1054930": installDir: Mine the Gold launch: - config: oslist: windows executable: Mine the Gold.exe type: default -'1054950': +"1054950": nameLocalized: japanese: Starstruck 時をつなぐ手 -'1054980': +"1054980": installDir: The Cat and the Box launch: - config: @@ -19620,35 +19466,35 @@ oslist: macos executable: thebox.app type: default -'1054990': +"1054990": installDir: Race With Ryan launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: RaceWithRyan.exe type: none -'1055000': +"1055000": installDir: EndlessHell launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: EndlessHell.exe type: default -'1055020': - installDir: Infinity +"1055020": + installDir: "Infinity" launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Infinity.exe type: openvroverlay -'1055030': +"1055030": installDir: Ghoul Britannia Land of Hope and Gorey launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Land of Hope and Gorey.exe type: none @@ -19656,44 +19502,44 @@ oslist: macos executable: Land of Hope and Gorey.app type: none -'1055090': +"1055090": installDir: Embark launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Embark.exe type: default -'1055140': +"1055140": installDir: 10-4 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: 10-4.exe type: default -'1055150': +"1055150": installDir: Eva Reynes launch: - config: oslist: windows executable: Launcher.exe type: default -'1055160': +"1055160": installDir: Welcome to nightmare launch: - config: oslist: windows executable: Welcome to nightmare.exe type: default -'1055170': +"1055170": installDir: SirLovelot launch: - config: oslist: windows executable: SirLovelot.exe type: default -'1055210': +"1055210": installDir: Retrograde Arena launch: - config: @@ -19702,17 +19548,17 @@ type: default nameLocalized: schinese: 逆行竞技场 -'1055240': +"1055240": installDir: Hollow 2 launch: - executable: Hollow2.exe type: default -'1055280': +"1055280": installDir: Wizardas launch: - executable: Wizardas.exe type: none -'1055310': +"1055310": installDir: The Myth Seekers 2 launch: - config: @@ -19721,13 +19567,13 @@ executable: TheMythSeekers2.exe type: none - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: TheMythSeekers2_i386 type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: TheMythSeekers2_amd64 @@ -19737,30 +19583,30 @@ description: Launch executable: mac_steam.app/Contents/MacOS/mac_steam type: none -'1055340': {} -'1055360': +"1055340": {} +"1055360": installDir: Infested Inside Multiplayer Arena launch: - config: oslist: windows executable: Infested_Inside_Multiplayer_Online_alpha_220.exe type: default -'1055380': +"1055380": installDir: Code S-44 Episode 1 launch: - - arguments: \\windows_content\\ + - arguments: "\\\\windows_content\\\\" config: oslist: windows executable: Code S-44.exe type: default -'1055420': +"1055420": installDir: The Highscore launch: - config: oslist: windows executable: The Highscore.exe type: none -'1055430': +"1055430": installDir: Swords and Sandals Classic Collection launch: - config: @@ -19771,14 +19617,14 @@ oslist: windows executable: Swords and Sandals Classic Collection.exe type: default -'1055460': +"1055460": installDir: Claw Staff launch: - config: oslist: windows executable: ClawStaff.exe type: default -'1055490': +"1055490": installDir: Weed Farmer Simulator launch: - executable: Weed Farmer Simulator.exe @@ -19786,11 +19632,9 @@ - config: betakey: internal description: Remastered - description_loc: - english: Remastered executable: WeedFarmerUE5.exe type: none -'1055540': +"1055540": installDir: A Short Hike launch: - config: @@ -19802,12 +19646,12 @@ executable: AShortHike.app/Contents/MacOS/A Short Hike type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: AShortHike.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: AShortHike.x86_64 type: default @@ -19817,7 +19661,7 @@ description: Launch version 1.4 of A Short Hike. executable: AShortHike.app/Contents/MacOS/AShortHike type: default -'1055590': +"1055590": installDir: Shuttlecock-H launch: - config: @@ -19828,78 +19672,78 @@ oslist: linux executable: Shuttlecock_H type: default -'1055610': +"1055610": installDir: Deep Space launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: DeepSpace.exe type: default - - arguments: '-opengl4' + - arguments: "-opengl4" config: - osarch: '64' + osarch: "64" oslist: linux description: OpenGL executable: DeepSpace.sh type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: Vulkan executable: DeepSpace.sh type: option1 -'1055620': +"1055620": installDir: Minions Battle launch: - executable: Minions Battle.exe type: none -'1055640': {} -'1055660': +"1055640": {} +"1055660": installDir: No2119 launch: - config: oslist: windows executable: TenDays.exe type: default -'1055690': +"1055690": installDir: Awakening The Dreamless Castle launch: - config: oslist: windows executable: Awakening The Dreamless Castle.exe type: default -'1055760': +"1055760": installDir: prince_maker3 launch: - config: oslist: windows executable: prince_maker3.eXe type: default -'1055770': +"1055770": installDir: Metal Country launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: MetalCountry.exe type: default -'1055780': +"1055780": installDir: Plunger Knight - Washers of Truth launch: - config: oslist: windows executable: PlungerKnight.exe type: none -'1055830': {} -'1055850': +"1055830": {} +"1055850": installDir: Inspector Waffles launch: - config: oslist: windows executable: Inspector Waffles.exe type: default -'1055870': +"1055870": installDir: Siberian Run VR launch: - config: @@ -19907,12 +19751,12 @@ description: Play executable: Siberian Run VR.exe type: vr -'1055890': +"1055890": installDir: Game Of Puzzles Nature launch: - executable: GOPNature.exe type: none -'1055930': +"1055930": installDir: The Elemental Heart launch: - config: @@ -19920,22 +19764,22 @@ description: Launch executable: The Elemental Heart.exe type: default -'1055940': +"1055940": installDir: Sentenced launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Sentenced.exe type: default -'1055950': +"1055950": installDir: Feels launch: - config: oslist: windows executable: Feels.exe type: none -'1055960': +"1055960": installDir: Thistledown A Tragedy of Blood launch: - config: @@ -19946,7 +19790,7 @@ oslist: windows executable: Thistledown_1.1.exe type: default -'1055970': +"1055970": installDir: ArgonautsPandorasBox_Steam launch: - config: @@ -19957,12 +19801,12 @@ oslist: macos executable: ArgonautsPandorasBox.app/Contents/MacOS/ArgonautsPandorasBox type: default -'1055990': +"1055990": installDir: Erannorth Reborn launch: - executable: Erannorth Reborn.exe type: default -'105600': +"105600": installDir: Terraria launch: - config: @@ -19976,12 +19820,12 @@ oslist: linux description: Launch executable: Terraria -'1056010': +"1056010": installDir: Ne Padai launch: - executable: game.exe type: none -'1056060': +"1056060": installDir: Eon launch: - config: @@ -19989,7 +19833,7 @@ executable: eon.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: eon-x86_64 type: default @@ -19997,7 +19841,7 @@ oslist: macos executable: eon-o64 type: default -'1056070': +"1056070": installDir: Instinct Rush launch: - config: @@ -20006,37 +19850,37 @@ type: default - config: oslist: macos - executable: InstinctRush.app\\Contents\\MacOS\\InstinctRush + executable: "InstinctRush.app\\\\Contents\\\\MacOS\\\\InstinctRush" type: default -'1056080': +"1056080": installDir: Epic Adventures - Cursed Onboard launch: - config: oslist: windows executable: Cursed Onboard.exe type: default -'1056140': +"1056140": installDir: Berlin Traffic launch: - executable: BerlinTraffic.exe type: default -'1056170': +"1056170": installDir: SUPERVERSE launch: - config: oslist: windows executable: superverse.exe type: none -'1056180': +"1056180": installDir: Cathedral launch: - config: - osarch: '64' + osarch: "64" oslist: linux executable: cathedral type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: cathedral.exe type: default @@ -20044,8 +19888,8 @@ oslist: macos executable: cathedral type: default -'1056260': {} -'1056280': +"1056260": {} +"1056280": installDir: Grotesque Beauty launch: - config: @@ -20056,112 +19900,112 @@ oslist: macos executable: Grotesque_Beauty.app type: none -'1056290': +"1056290": installDir: Soul Island launch: - executable: Soul Island.exe type: default -'1056310': +"1056310": installDir: Biplane Racer launch: - executable: Biplane Racer.exe type: none -'1056320': +"1056320": installDir: Island Town v2.0 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Island Town v2.2.exe type: default -'1056330': +"1056330": installDir: L.S.S II launch: - config: oslist: windows executable: L.S.S II.exe type: default -'1056340': {} -'1056350': +"1056340": {} +"1056350": installDir: Wizard Warfare launch: - config: oslist: windows executable: Wizard Warfare.exe type: default -'1056370': {} -'1056390': +"1056370": {} +"1056390": installDir: Ultra Savage launch: - config: oslist: windows executable: Ultra Savage.exe type: default -'1056420': +"1056420": installDir: Azure Wing Rising Gale launch: - config: oslist: windows executable: AzureWing.exe type: default -'1056470': +"1056470": installDir: City Zombies launch: - config: oslist: windows executable: City Zombies.exe type: default -'1056480': +"1056480": installDir: The Garden Pub launch: - config: oslist: windows executable: The Garden Pub.exe type: default -'1056490': +"1056490": installDir: weapon_steam launch: - config: oslist: windows executable: Game.exe type: default -'1056500': +"1056500": installDir: VRLife launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: vrlife-test.exe type: default - - arguments: '-vrmode oculus' + - arguments: "-vrmode oculus" config: - osarch: '64' + osarch: "64" oslist: windows description: Oculus executable: vrlife-test.exe type: othervr - - arguments: '-vrmode Openvr' + - arguments: "-vrmode Openvr" config: - osarch: '64' + osarch: "64" oslist: windows description: HTC Vive executable: vrlife-test.exe type: vr - - arguments: '-vrmode oculus' + - arguments: "-vrmode oculus" config: - osarch: '64' + osarch: "64" oslist: windows description: Oculus executable: vrlife-test.exe type: vr -'1056510': +"1056510": installDir: Root Letter Last Answer launch: - config: oslist: windows executable: RootLetterLA.exe type: none -'1056570': +"1056570": installDir: taishoalice1 launch: - config: @@ -20171,7 +20015,7 @@ nameLocalized: japanese: 大正×対称アリス episode 1 schinese: 大正×对称爱丽丝 episode 1 -'1056580': +"1056580": installDir: Family Hidden Secret - Hidden Objects Puzzle Adventure launch: - config: @@ -20179,30 +20023,30 @@ description: Launch executable: FamilyHiddenSecret.exe type: default -'1056590': +"1056590": installDir: TheDreamcatcher launch: - config: oslist: windows executable: Dream.exe type: default -'1056610': +"1056610": installDir: Heal launch: - config: oslist: windows executable: heal.exe type: default -'1056640': +"1056640": installDir: PHANTASYSTARONLINE2_NA_STEAM launch: - - arguments: '-steam' + - arguments: "-steam" config: - osarch: '64' + osarch: "64" oslist: windows - executable: pso2_bin\\pso2launcher.exe + executable: "pso2_bin\\\\pso2launcher.exe" type: default -'1056650': +"1056650": installDir: Haunted Jail Alcatas launch: - config: @@ -20213,19 +20057,19 @@ oslist: linux executable: HauntedJailAlcatas type: default -'1056660': +"1056660": installDir: miniShogi launch: - config: oslist: windows executable: mini-Shogi.exe type: default -'1056680': {} -'1056690': +"1056680": {} +"1056690": installDir: Drink More Glurp launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Drink More Glurp.exe type: default @@ -20234,11 +20078,11 @@ executable: Drink More Glurp.app/Contents/MacOS/Drink More Glurp type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Drink More Glurp.x86_64 type: default -'1056710': +"1056710": installDir: VTB_Basketball_League launch: - config: @@ -20247,7 +20091,7 @@ type: vr - executable: VR_Basket.exe type: othervr -'1056750': +"1056750": installDir: Shera and the Three Treasures launch: - executable: Game.exe @@ -20255,68 +20099,68 @@ nameLocalized: schinese: 雪拉和三神器 tchinese: 雪拉和三神器 -'1056840': +"1056840": installDir: Arcanium launch: - config: oslist: windows executable: Arcanium.exe type: default -'1056850': {} -'1056860': +"1056850": {} +"1056860": installDir: Time Break launch: - config: oslist: windows executable: Time Break.exe type: default -'1056960': +"1056960": installDir: Wolfenstein Youngblood launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Youngblood_x64vk.exe type: default - arguments: +bnet_env akh6hzr4ai75kvt6hrdt +r_allowComputePresent 0 config: betakey: qa-general-test - osarch: '64' + osarch: "64" oslist: windows - description: 'Wolfenstein: Youngblood (Integration Environment)' + description: "Wolfenstein: Youngblood (Integration Environment)" executable: Youngblood_x64vk.exe type: option1 - arguments: +com_safemode 1 +r_allowComputePresent 0 config: - osarch: '64' + osarch: "64" oslist: windows - description: 'Wolfenstein: Youngblood (Safe Mode)' + description: "Wolfenstein: Youngblood (Safe Mode)" executable: Youngblood_x64vk.exe type: option3 - config: - betakey: 'press-1, press-2' - osarch: '64' + betakey: "press-1, press-2" + osarch: "64" oslist: windows - description: 'Wolfenstein: Youngblood (Allow Async Present)' + description: "Wolfenstein: Youngblood (Allow Async Present)" executable: Youngblood_x64vk.exe type: option1 nameLocalized: - german: 'Wolfenstein: Youngblood International Version' -'1056970': + german: "Wolfenstein: Youngblood International Version" +"1056970": installDir: Wolfenstein Cyberpilot launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Cyberpilot_x64vk.exe type: vr nameLocalized: - german: 'Wolfenstein: Cyberpilot International Version' -'105700': - installDir: Tobe's Vertical Adventure + german: "Wolfenstein: Cyberpilot International Version" +"105700": + installDir: "Tobe's Vertical Adventure" launch: - - executable: Tobe's Vertical Adventure.exe -'1057030': + - executable: "Tobe's Vertical Adventure.exe" +"1057030": installDir: Zombie Apocalypse Bounty Hunter launch: - config: @@ -20324,215 +20168,210 @@ description: Launch executable: Bounty Hunter.exe type: none -'1057040': {} -'1057090': +"1057040": {} +"1057090": installDir: Ori and the Will of the Wisps launch: - executable: oriwotw.exe type: none -'1057120': +"1057120": installDir: Mahjong Infinity launch: - config: oslist: windows executable: MahjongInfinity.exe type: none -'1057130': +"1057130": installDir: Exogen VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Exogen.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: Exogen.exe type: vr -'1057150': +"1057150": installDir: Adventure in King Caries Land launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: AdventureInKingCariesLand.exe type: default -'1057180': +"1057180": installDir: Border Officer launch: - - executable: \\windows_content\\Border Officer.exe + - executable: "\\\\windows_content\\\\Border Officer.exe" type: none -'1057190': {} -'1057240': +"1057190": {} +"1057240": installDir: Crucible launch: - - arguments: >- - +Crucible.AuthMethod 1 +Crucible.SocialEnabled true +Crucible.SocialBackendOverride s 1057240 +gamesparks_creds - jiwcqri6b6qdksaenscj7t7am GgKGCczUrZg12VZyRugR3dxYn Bz5m7WhMuEMjNpS9IV1thWxwrA0MsxLHssLj us-east-1 - +Crucible.AddCrashAnnotations package.distributed true +Crucible.AddCrashAnnotations package.distributor sonic - +Crucible.AddCrashAnnotations package.stage prod +crucible_UsePersonaAuth 1 +PlayerAuthorizerEndpoint - https://x8evjomsd1.execute-api.us-west-2.amazonaws.com/prod + - arguments: "+Crucible.AuthMethod 1 +Crucible.SocialEnabled true +Crucible.SocialBackendOverride s 1057240 +gamesparks_creds jiwcqri6b6qdksaenscj7t7am GgKGCczUrZg12VZyRugR3dxYn Bz5m7WhMuEMjNpS9IV1thWxwrA0MsxLHssLj us-east-1 +Crucible.AddCrashAnnotations package.distributed true +Crucible.AddCrashAnnotations package.distributor sonic +Crucible.AddCrashAnnotations package.stage prod +crucible_UsePersonaAuth 1 +PlayerAuthorizerEndpoint https://x8evjomsd1.execute-api.us-west-2.amazonaws.com/prod" executable: Launch_Crucible.exe type: default -'1057310': +"1057310": installDir: A five-day tour in the morgue launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: A five-day tour in the morgue.exe type: vr -'1057390': +"1057390": installDir: The Kaiju Offensive launch: - config: oslist: windows executable: TheKaijuOffensive.exe type: none -'1057430': - installDir: Geometry May. I swear it's a nice free game +"1057430": + installDir: "Geometry May. I swear it's a nice free game" launch: - executable: nw.exe type: default -'1057450': {} -'1057460': +"1057450": {} +"1057460": installDir: Moon Pool launch: - config: oslist: windows executable: MoonPool.exe type: default -'1057480': {} -'1057490': {} -'1057540': +"1057480": {} +"1057490": {} +"1057540": installDir: Cthulhu Saves Christmas launch: - config: oslist: windows executable: CthulhuSavesChristmas.exe type: default -'1057560': +"1057560": installDir: Rebound launch: - config: oslist: windows executable: Rebound_4_12.exe type: none -'1057570': {} -'1057580': {} -'1057590': {} -'1057600': +"1057570": {} +"1057580": {} +"1057590": {} +"1057600": nameLocalized: schinese: 私酿大师 -'1057610': {} -'1057630': {} -'1057640': +"1057610": {} +"1057630": {} +"1057640": installDir: Onirism launch: - config: oslist: windows executable: Onirism.exe type: default -'1057660': {} -'1057680': +"1057660": {} +"1057680": installDir: 人间 The Lost We Lost launch: - executable: game.exe type: none -'1057700': +"1057700": installDir: Battle Grounds III launch: - - arguments: '-steam -novid -game bg3' + - arguments: "-steam -novid -game bg3" config: oslist: windows executable: bg3.exe type: default -'1057710': +"1057710": installDir: Funny Bunny Adventures launch: - config: oslist: windows - description: 'Funny Bunny: Adventures' + description: "Funny Bunny: Adventures" executable: FunnyBunny.exe type: default - config: oslist: linux - description: 'Funny Bunny: Adventures' + description: "Funny Bunny: Adventures" executable: FunnyBunny.x86 type: default - config: oslist: macos - description: 'Funny Bunny: Adventures' - executable: FunnyBunny.app\\Contents\\MacOS\\FunnyBunny + description: "Funny Bunny: Adventures" + executable: "FunnyBunny.app\\\\Contents\\\\MacOS\\\\FunnyBunny" type: default -'1057720': +"1057720": installDir: Shattered Lights launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Project.exe type: vr -'1057730': +"1057730": installDir: VRAdventure launch: - description: Play executable: VRAdventure.exe type: vr -'1057740': +"1057740": installDir: World Of Conquerors launch: - config: oslist: windows executable: WorldOfConquerors.exe type: none -'1057750': +"1057750": installDir: The Suicide of Rachel Foster launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TSORF.exe type: default - config: - betakey: 'testing, testing-ex' + betakey: "testing, testing-ex" oslist: macos - executable: TSORF.app\\Contents\\MacOS\\TSORF + executable: "TSORF.app\\\\Contents\\\\MacOS\\\\TSORF" type: default - config: - betakey: 'testing, testing-ex, experimental' - osarch: '64' + betakey: "testing, testing-ex, experimental" + osarch: "64" oslist: linux executable: TSORF.sh type: default -'1057770': +"1057770": installDir: Story of one night launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: StoryOfOneNight.exe type: default -'1057780': +"1057780": installDir: Jump Off The Bridge launch: - config: oslist: windows executable: Jump Off The Bridge.exe type: default -'1057790': +"1057790": installDir: Ramen launch: - config: oslist: windows executable: Ramen.exe type: none -'1057800': +"1057800": installDir: Floppy Knights launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Floppy Knights.exe type: default @@ -20543,58 +20382,58 @@ nameLocalized: schinese: 软盘骑士 tchinese: 磁片騎士 -'1057850': +"1057850": installDir: Neon Boost launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Neon Boost.exe type: none -'1057890': {} -'1057980': +"1057890": {} +"1057980": installDir: Radiant Arc launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows executable: windows_content/Radiant Arc.exe type: none -'1057990': +"1057990": installDir: Viking Trickshot launch: - config: oslist: windows executable: Viking Trickshot/Viking Trickshot.exe type: default -'105800': +"105800": installDir: pixeljunkeden launch: - executable: eden.exe -'1058000': +"1058000": installDir: yudelianji launch: - config: oslist: windows executable: Yudelianji.exe type: default -'1058020': +"1058020": installDir: Star Wars Battlefront (Classic 2004) launch: - config: oslist: windows - executable: GameData\\battlefront.exe + executable: "GameData\\\\battlefront.exe" type: default workingdir: GameData -'1058030': {} -'1058040': +"1058030": {} +"1058040": installDir: My University Story launch: - config: oslist: windows executable: My University Story.exe type: none -'1058060': +"1058060": installDir: Princesses Never Lose! launch: - executable: Game.exe @@ -20603,53 +20442,53 @@ japanese: プリンセスは負けられない schinese: 公主大人才不会认输呢! tchinese: 公主大人才不會認輸呢! -'1058110': +"1058110": installDir: Metro Trip Simulator launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Metro Trip Simulator.exe type: default -'1058130': - installDir: Queen's Wish The Conqueror +"1058130": + installDir: "Queen's Wish The Conqueror" launch: - config: oslist: windows - executable: Queen's Wish.exe + executable: "Queen's Wish.exe" type: default - config: oslist: macos - executable: Queen's Wish.app\\Contents\\MacOS\\Queen's Wish + executable: "Queen's Wish.app\\\\Contents\\\\MacOS\\\\Queen's Wish" type: default -'1058140': +"1058140": installDir: YureMaster launch: - executable: Yure.exe type: default nameLocalized: - japanese: '夢現Re:Master' - koreana: '몽현 Re:Master' -'1058150': + japanese: "夢現Re:Master" + koreana: "몽현 Re:Master" +"1058150": installDir: Twinkle Star - 未来はすぐそこで待っている launch: - executable: QingKongVR_HtcVive.exe type: vr -'1058200': +"1058200": installDir: Pixel Puzzles Traditional launch: - config: oslist: windows executable: Pixel Puzzles Traditional Jigsaws.exe type: none -'1058210': +"1058210": installDir: Pixel Puzzles 2 Halloween launch: - config: oslist: windows executable: Pixel Puzzles 2 Halloween.exe type: none -'1058220': +"1058220": installDir: Emoji TD launch: - config: @@ -20658,33 +20497,31 @@ type: none - config: oslist: macos - executable: EmojiTD.app\\Contents\\MacOS\\Emoji TD + executable: "EmojiTD.app\\\\Contents\\\\MacOS\\\\Emoji TD" type: none - config: oslist: linux executable: emojitd.x86_64 type: none -'1058280': +"1058280": installDir: Speed Limit launch: - config: oslist: windows executable: SpeedLimitGame.exe type: default - - arguments: '-low' + - arguments: "-low" description: with reduced graphics settings executable: SpeedLimitGame.exe type: option1 - config: oslist: windows description: Penny & Dime Edition - description_loc: - english: Penny & Dime Edition executable: KM/SpeedLimitKM.exe type: option2 workingdir: KM/ -'1058290': {} -'1058320': +"1058290": {} +"1058320": installDir: Toki launch: - config: @@ -20695,11 +20532,11 @@ oslist: macos executable: Toki.app type: none -'1058330': +"1058330": installDir: Fort Boyard launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: FB_6551_Windows_Windowsx86_64_Release.exe type: none @@ -20708,40 +20545,40 @@ executable: FB_6551_Mac_OSX_Release.app/Contents/MacOS/FB_6551_Mac_OSX_Release type: none - config: - osarch: '32' + osarch: "32" oslist: windows executable: FB_6551_Windows_Windowsx86_Release.exe type: none -'1058340': {} -'1058350': +"1058340": {} +"1058350": installDir: Nyasha Land of Elves launch: - executable: Nyasha Land of Elves.exe type: none -'1058370': +"1058370": installDir: Bone Voyage launch: - config: oslist: windows executable: Cobblestone.exe type: default -'1058400': {} -'1058430': - installDir: A Legionary's Life +"1058400": {} +"1058430": + installDir: "A Legionary's Life" launch: - config: oslist: windows executable: legionary.exe type: default -'1058450': +"1058450": installDir: My Hero Ones Justice 2 launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: HeroGame\\Binaries\\Win64\\MHOJ2.exe + executable: "HeroGame\\\\Binaries\\\\Win64\\\\MHOJ2.exe" type: default -'1058470': +"1058470": installDir: Beyond a Total Loss launch: - config: @@ -20753,41 +20590,41 @@ oslist: windows executable: Beyond_a_Total_Loss.exe type: default -'1058480': +"1058480": installDir: Bullet Harmony launch: - config: oslist: windows executable: Bullet Harmony.exe type: vr -'1058490': +"1058490": installDir: Hobo Living VR launch: - executable: HoboLivingVR10.exe type: vr -'1058500': +"1058500": installDir: Muscle Car Robot launch: - config: oslist: windows executable: Muscle Car Robot.exe type: default -'1058510': +"1058510": installDir: Zunius launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: zunius.exe type: none -'1058530': +"1058530": installDir: H-Rescue launch: - config: oslist: windows executable: H-Rescue.exe type: default -'1058550': +"1058550": installDir: Rainbow Hunter launch: - config: @@ -20796,81 +20633,81 @@ type: default - config: oslist: macos - executable: Rainbow Hunter Mac.app\\Contents\\MacOS\\Rainbow Hunter Mac + executable: "Rainbow Hunter Mac.app\\\\Contents\\\\MacOS\\\\Rainbow Hunter Mac" type: default -'1058560': +"1058560": installDir: Deathbloom launch: - config: oslist: windows executable: deathbloom01.exe type: none -'1058570': +"1058570": installDir: Ride_with_The_Reaper launch: - config: - osarch: '64' + osarch: "64" oslist: linux executable: rwtr type: none - config: - osarch: '64' + osarch: "64" oslist: windows executable: rwtr.exe type: none -'1058590': +"1058590": installDir: Franchise Wars launch: - config: oslist: windows executable: Franchise Wars.exe type: default -'1058600': {} -'1058630': +"1058600": {} +"1058630": installDir: Crazy Ball launch: - config: oslist: windows executable: Crazy Ball.exe type: none -'1058640': +"1058640": installDir: RED HOT VENGEANCE launch: - config: oslist: windows executable: RedHotVengeance.exe type: none -'1058650': +"1058650": installDir: Beyond the Wire launch: - config: oslist: windows executable: btw_launcher.exe type: default - - arguments: '-noeac' + - arguments: "-noeac" config: betakey: internal-testing - osarch: '64' + osarch: "64" oslist: windows description: without EAC executable: WireGame.exe type: option1 -'1058660': +"1058660": installDir: ArchMMO 2 launch: - config: oslist: windows executable: Arch MMO 2.exe type: default -'1058680': +"1058680": installDir: Virtual Reality Emergency Response Sim launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: WindowsNoEditor\\VREmergency.exe + executable: "WindowsNoEditor\\\\VREmergency.exe" type: vr -'1058690': +"1058690": installDir: Signs of the Sojourner launch: - config: @@ -20881,7 +20718,7 @@ oslist: macos executable: Signs of the Sojourner.app type: default -'1058710': +"1058710": installDir: Medieval Monarch launch: - config: @@ -20891,14 +20728,14 @@ nameLocalized: english: Medieval Monarch schinese: 中世纪君主 -'1058730': +"1058730": installDir: paba launch: - config: oslist: windows executable: paba.exe type: none -'1058740': +"1058740": installDir: AntQueen 3D launch: - config: @@ -20907,23 +20744,23 @@ type: default - config: oslist: macos - executable: AntQueen3D.app\\Contents\\MacOS\\AntQueen3D + executable: "AntQueen3D.app\\\\Contents\\\\MacOS\\\\AntQueen3D" type: default -'1058750': - installDir: Wookie's Blade +"1058750": + installDir: "Wookie's Blade" launch: - config: oslist: windows executable: WookiesBlade.exe type: vr -'1058760': +"1058760": installDir: Tiger Tank 59 Ⅰ Rainstorm launch: - config: oslist: windows executable: game.exe type: default -'1058830': +"1058830": installDir: Spin Rhythm launch: - config: @@ -20932,9 +20769,9 @@ type: default - config: oslist: macos - executable: SpinRhythm.app\\Contents\\MacOS\\Spin Rhythm XD + executable: "SpinRhythm.app\\\\Contents\\\\MacOS\\\\Spin Rhythm XD" type: default -'1058840': +"1058840": installDir: Super Web Kittens launch: - config: @@ -20949,65 +20786,65 @@ oslist: linux executable: SuperWebKittens.sh type: default -'1058850': {} -'1058860': {} -'1058890': {} -'1058910': {} -'1058930': +"1058850": {} +"1058860": {} +"1058890": {} +"1058910": {} +"1058930": installDir: Top Burger launch: - config: oslist: windows executable: Top Burger.exe type: default -'1058940': - installDir: 'Treasure Masters, Inc. The Lost City' +"1058940": + installDir: "Treasure Masters, Inc. The Lost City" launch: - config: oslist: windows executable: TreasureMasters2.exe type: default -'1058980': +"1058980": installDir: Dinosaur Bone Digging launch: - config: oslist: windows executable: Dinosaur Bone Digging.exe type: default -'1059000': +"1059000": installDir: Vertigo! launch: - config: oslist: windows executable: Vertigo!_Steam_1.0.exe type: vr -'1059040': +"1059040": installDir: Grunt1914 launch: - config: oslist: windows executable: Grunt1914.exe type: default -'1059080': +"1059080": installDir: ROAD HOMEWARD 2 river trip launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: RH 2 rt.exe type: none -'1059090': +"1059090": installDir: The Underground Watcher launch: - config: oslist: windows executable: Underground Watcher.exe type: default -'1059110': +"1059110": nameLocalized: sc_schinese: 超级巴基球 schinese: 超级巴基球 -'1059150': +"1059150": installDir: Ritual Crown of Horns launch: - config: @@ -21020,73 +20857,73 @@ description: Ritual for Media executable: Ritual Crown of Horns.exe type: option1 -'1059160': +"1059160": installDir: Deep Race Space launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: spacerace.exe type: default -'1059190': +"1059190": installDir: Skully Pinball launch: - executable: Skully Pinball.exe type: none -'1059220': {} -'1059230': +"1059220": {} +"1059230": installDir: When I Was Young launch: - config: oslist: windows executable: nw.exe type: none -'1059240': +"1059240": installDir: Room 208 launch: - config: oslist: windows executable: Room 208.exe type: default -'1059260': +"1059260": installDir: Data mining 0 launch: - config: oslist: windows executable: Data mining 0.exe type: default -'1059280': +"1059280": installDir: The Renovator launch: - config: oslist: windows executable: TheRenovator.exe type: default -'1059300': +"1059300": installDir: Gravitura launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Gravitura.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Gravitura type: default - config: oslist: macos - executable: Gravitura.app\\Contents\\MacOS\\nwjs + executable: "Gravitura.app\\\\Contents\\\\MacOS\\\\nwjs" type: default -'1059310': +"1059310": installDir: Herald of the Depths launch: - config: oslist: windows executable: Herald of the Depths.exe type: none -'1059320': +"1059320": installDir: Hocus Potions launch: - config: @@ -21095,237 +20932,230 @@ type: default - config: oslist: macos - executable: Contents\\MacOS\\Hocus Potions + executable: "Contents\\\\MacOS\\\\Hocus Potions" type: default -'1059370': +"1059370": installDir: IMPALE YOUR FRIENDS! launch: - config: oslist: windows executable: /ImpaleYourFriends.exe type: default -'1059390': +"1059390": installDir: WindowsNoEditor launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: UTLL.exe type: default -'1059420': +"1059420": installDir: 5Leaps (Space Tower Defense) launch: - config: oslist: windows executable: 5Leaps.exe type: none -'1059430': +"1059430": installDir: PAGAN_PEAK_VR launch: - - arguments: '-PaganPeakSteam' + - arguments: "-PaganPeakSteam" config: - osarch: '64' + osarch: "64" oslist: windows executable: PaganPeak_mechanic.exe type: vr - - arguments: '-PaganPeakOculus' + - arguments: "-PaganPeakOculus" config: - osarch: '64' + osarch: "64" oslist: windows executable: PaganPeak_mechanic.exe type: othervr -'1059460': +"1059460": installDir: Drunken Fist launch: - config: oslist: windows executable: DrunkenFist422.exe type: default -'1059470': +"1059470": installDir: Wolfgate launch: - config: oslist: windows executable: WolfgateLauncher.exe type: default -'1059500': +"1059500": installDir: PUZZLE OCEAN launch: - config: oslist: windows executable: PUZZLE OCEAN.exe type: default -'1059620': - installDir: Mystery Trackers Winterpoint Tragedy Collector's Edition +"1059620": + installDir: "Mystery Trackers Winterpoint Tragedy Collector's Edition" launch: - config: oslist: windows executable: MysteryTrackers_WinterpointTragedy_CE.exe type: default -'1059640': +"1059640": installDir: Deepsea Salvor launch: - config: oslist: windows executable: starter.exe type: default -'1059660': +"1059660": installDir: Life Combinations launch: - executable: Life Combinations.exe type: none -'1059690': +"1059690": installDir: Make Route Escape the police launch: - config: oslist: windows executable: MakeRoute_ETP.exe type: none -'1059710': - installDir: New Yankee 6 In Pharaoh's Court +"1059710": + installDir: "New Yankee 6 In Pharaoh's Court" launch: - config: oslist: windows - executable: New Yankee in Pharaoh's Court 6.exe + executable: "New Yankee in Pharaoh's Court 6.exe" type: default - config: oslist: macos - executable: New Yankee 6 In Pharaoh's Court.app\\Contents\\MacOS\\New Yankee 6 In Pharaoh's Court + executable: "New Yankee 6 In Pharaoh's Court.app\\\\Contents\\\\MacOS\\\\New Yankee 6 In Pharaoh's Court" type: default -'1059740': +"1059740": installDir: Gunslingers & Zombies launch: - executable: Gunslingers & Zombies.exe type: default nameLocalized: schinese: 神枪手大战僵尸 -'1059750': {} -'1059760': - installDir: Sicier's Zweck +"1059750": {} +"1059760": + installDir: "Sicier's Zweck" launch: - config: oslist: windows - executable: Sicier's Zweck.exe + executable: "Sicier's Zweck.exe" type: default - config: betakey: Test 64-bit - osarch: '64' + osarch: "64" oslist: windows - description: Sicier's Zweck 64-bit - description_loc: - english: Sicier's Zweck 64-bit - russian: Sicier' Zweck 64-bit - executable: Sicier's Zweck.exe + description: "Sicier's Zweck 64-bit" + executable: "Sicier's Zweck.exe" type: default -'1059810': {} -'1059830': +"1059810": {} +"1059830": installDir: Magic Encyclopedia Moon Light launch: - config: oslist: windows executable: magic2.exe type: default -'1059840': +"1059840": installDir: Continuum launch: - config: oslist: windows - executable: Continuum\\Continuum.exe + executable: "Continuum\\\\Continuum.exe" type: default - config: oslist: macos - executable: Continuum.app\\Contents\\MacOS\\Continuum + executable: "Continuum.app\\\\Contents\\\\MacOS\\\\Continuum" type: default -'1059860': +"1059860": installDir: Striker A Type Game Pack launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TypeGame.exe type: default -'1059880': +"1059880": installDir: Devious Dungeon launch: - config: oslist: windows executable: DeviousDungeon.exe type: default -'1059890': +"1059890": installDir: Devious Dungeon 2 launch: - config: oslist: windows executable: DeviousDungeon2.exe type: default -'1059900': {} -'1059980': +"1059900": {} +"1059980": installDir: Just King launch: - config: oslist: windows description: Default game start. - description_loc: - english: Default game start. executable: King.exe type: default -'1059990': +"1059990": installDir: TromboneChamp launch: - config: oslist: windows description: Primary Windows executable - description_loc: - english: Primary Windows executable executable: TromboneChamp.exe type: default -'106000': +"106000": installDir: The Cursed Crusade launch: - executable: TCC.exe -'1060000': +"1060000": installDir: Only After launch: - executable: OnlyAfter.exe type: default -'1060020': +"1060020": installDir: Boxwrecker Arena launch: - config: oslist: windows executable: Boxwrecker Arena.exe type: default -'1060030': {} -'1060060': +"1060030": {} +"1060060": installDir: GOLF in PAPER launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: GOLF in PAPER.exe type: default -'1060100': {} -'1060110': +"1060100": {} +"1060110": installDir: Space Trade Fleet 1.5 launch: - config: oslist: windows executable: Space Trade Fleet 1.5.exe type: none -'1060160': +"1060160": installDir: NotDeadYet launch: - config: oslist: windows executable: NDY.exe type: default -'1060170': - installDir: Azurael's Circle Chapter 4 +"1060170": + installDir: "Azurael's Circle Chapter 4" launch: - executable: Game.exe type: none -'1060180': +"1060180": installDir: Cyber Driver launch: - config: @@ -21335,19 +21165,19 @@ nameLocalized: schinese: 赛博司机 tchinese: 赛博司机 -'1060210': +"1060210": installDir: Disaster Report 4 Summer Memories launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Disaster Report 4 executable: DisasterReport4.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows - ownsdlc: '1289740' + ownsdlc: "1289740" description: VR Mode (Requires VR Headset) executable: DisasterReport4VR.exe type: option1 @@ -21355,7 +21185,7 @@ japanese: 絶体絶命都市4Plus -Summer Memories- koreana: 절체절명도시4 Plus -Summer Memories- tchinese: 絕體絕命都市 4 Plus:夏日回憶 -'1060220': +"1060220": installDir: Langrisser I & II launch: - config: @@ -21366,11 +21196,11 @@ japanese: ラングリッサーI&II koreana: 랑그릿사 I & II tchinese: 夢幻模擬戰 I & II -'1060230': +"1060230": installDir: Sapiens launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Sapiens.exe type: default @@ -21378,29 +21208,28 @@ oslist: macos executable: Sapiens.app type: default -'1060240': +"1060240": installDir: Rumia in the darkness launch: - executable: RPG_RT.exe type: default -'1060280': +"1060280": installDir: Beautify Day - launch: [] -'1060300': +"1060300": installDir: Homeless Simulator launch: - config: oslist: windows executable: HomelessSimulator.exe type: default -'1060310': +"1060310": installDir: Great Toilet Simulator launch: - config: oslist: windows executable: GreatToiletSimulator.exe type: default -'1060320': +"1060320": installDir: One Drop Bot launch: - config: @@ -21415,70 +21244,70 @@ oslist: linux executable: One Drop Bot.x86 type: default -'1060340': {} -'1060350': +"1060340": {} +"1060350": installDir: War of the Seraphim launch: - config: oslist: windows executable: FPSTrainingSimulator.exe type: none -'1060360': +"1060360": installDir: Vampire_Martina-Bloody_Day_228 launch: - config: oslist: windows executable: Game.exe type: config -'1060370': +"1060370": installDir: Crazy space pirate launch: - executable: Crazy space pirate.exe type: none -'1060380': +"1060380": installDir: Slime Adventure 2 launch: - executable: SlimeAdventure2.exe type: none -'1060400': +"1060400": installDir: Mystic RUS-files launch: - executable: Mystic RUS-files.exe type: none -'1060440': {} -'1060450': +"1060440": {} +"1060450": installDir: Sky Shepherd launch: - config: oslist: windows executable: SkyShepherd.exe type: default -'1060460': +"1060460": installDir: MoonbuggyVR launch: - config: oslist: windows executable: MoonBuggyPV15.exe type: vr -'1060470': +"1060470": installDir: Global Infection launch: - - executable: Binaries\\Win32\\UDK.exe + - executable: "Binaries\\\\Win32\\\\UDK.exe" type: default -'1060510': - installDir: Heaven's Voice Feast of Famine +"1060510": + installDir: "Heaven's Voice Feast of Famine" launch: - config: oslist: windows executable: Game.exe type: none -'1060540': {} -'1060550': +"1060540": {} +"1060550": installDir: LETHAL STRIKE launch: - executable: LethalStrike.exe type: none -'1060560': +"1060560": installDir: GNRBLEX launch: - config: @@ -21492,7 +21321,7 @@ - description: README.TXT (BETA TESTERS!) executable: README.txt type: manual -'1060600': +"1060600": installDir: Lair of the Clockwork God launch: - config: @@ -21507,21 +21336,21 @@ oslist: linux executable: LotCG.x86 type: none -'1060630': +"1060630": installDir: ぶんまわしヒーロー launch: - config: oslist: windows executable: FullSwingHero.exe type: default -'1060670': +"1060670": installDir: TaboosCracks launch: - config: oslist: windows executable: TaboosCracks.exe type: default -'1060690': +"1060690": installDir: Mission XAM launch: - config: @@ -21532,14 +21361,14 @@ oslist: linux executable: MissionXAM type: default -'1060770': - installDir: 'Die ,zombie sausage ,die!' +"1060770": + installDir: "Die ,zombie sausage ,die!" launch: - config: oslist: windows executable: Diezombiesausagedie.exe type: default -'1060810': +"1060810": installDir: The Sphere of Abyss launch: - config: @@ -21549,38 +21378,38 @@ nameLocalized: schinese: 深渊领域 tchinese: 深淵領域 -'1060820': +"1060820": installDir: DanCop launch: - config: oslist: windows executable: dancop.exe type: default -'1060840': +"1060840": installDir: Maze of Memories launch: - config: oslist: windows executable: Maze of Memories.exe type: default -'1060850': {} -'1060870': +"1060850": {} +"1060870": installDir: Hello World launch: - config: oslist: windows - executable: 'Hello, World.exe' + executable: "Hello, World.exe" type: none -'1060890': +"1060890": installDir: Get Out launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Get Out.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: Get Out.exe type: default @@ -21589,72 +21418,72 @@ executable: getout-MacOS.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Get Out.x86_64 type: default -'1060900': +"1060900": installDir: Mural launch: - config: oslist: windows executable: Mural.exe type: none -'1060980': +"1060980": installDir: ScooterDeliveryVR launch: - config: oslist: windows executable: ScooterDeliveryVR.exe type: vr -'1061010': +"1061010": installDir: Deep Sea launch: - config: oslist: macos - executable: Deep Sea.app\\Contents\\MacOS\\DeepSea + executable: "Deep Sea.app\\\\Contents\\\\MacOS\\\\DeepSea" type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: DeepSea.exe type: default -'1061090': +"1061090": installDir: Jump King launch: - config: oslist: windows executable: JumpKing.exe type: default -'1061100': - installDir: Hunter's Arena Legends +"1061100": + installDir: "Hunter's Arena Legends" launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: WindowsNoEditor\\HuntersArena.exe + executable: "WindowsNoEditor\\\\HuntersArena.exe" type: default nameLocalized: japanese: ハンターズアリーナ:レジェンド - koreana: '헌터스 아레나: 레전드' + koreana: "헌터스 아레나: 레전드" schinese: 猎人竞技场:传奇 tchinese: 獵人競技場:傳奇 -'1061120': +"1061120": installDir: Summer Resort Mogul launch: - config: oslist: windows executable: SummerResortMogul.exe type: default -'1061150': +"1061150": installDir: Muscle Magic launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: MuscleMagic.exe type: default -'1061160': +"1061160": installDir: Orc Raid launch: - config: @@ -21662,29 +21491,29 @@ executable: OrcRaid.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: OrcRaid.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: OrcRaid.x86_64 type: default - config: oslist: macos - executable: OrcRaid.app\\Contents\\MacOS\\OrcRaid + executable: "OrcRaid.app\\\\Contents\\\\MacOS\\\\OrcRaid" type: default -'1061180': +"1061180": installDir: Crumble launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Crumble.exe type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: Crumble.x86_64 type: none @@ -21692,7 +21521,7 @@ oslist: macos executable: Crumble.app type: none -'1061200': +"1061200": installDir: DomiDo launch: - config: @@ -21701,40 +21530,40 @@ type: default - config: oslist: macos - executable: DomiDO.app\\Contents\\MacOS\\DomiDO + executable: "DomiDO.app\\\\Contents\\\\MacOS\\\\DomiDO" type: default -'1061210': {} -'1061220': +"1061210": {} +"1061220": installDir: Discontinue launch: - config: oslist: windows executable: Discontinue.exe type: vr - - arguments: '-vrmode oculus' + - arguments: "-vrmode oculus" config: oslist: windows description: with OVRinput for Rift S - executable: rifts\\Discontinue.exe + executable: "rifts\\\\Discontinue.exe" type: option1 -'1061230': {} -'1061240': +"1061230": {} +"1061240": installDir: Quiet Sleep launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: QuietSleep.exe type: none -'1061250': +"1061250": installDir: TimeWalker launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TimeWalker.exe type: default -'1061260': +"1061260": installDir: Click Space Miner 2 launch: - config: @@ -21748,25 +21577,25 @@ executable: /DE/SpaceMiner2DE.exe type: option2 workingdir: /DE/ -'1061270': +"1061270": installDir: Blacklist Brigade launch: - - arguments: '-nohmd' + - arguments: "-nohmd" config: - osarch: '64' + osarch: "64" oslist: windows executable: TopDownShooter.exe type: default -'1061280': {} -'1061300': +"1061280": {} +"1061300": installDir: Surprising My Neighbors launch: - config: oslist: windows executable: SurprisingMyNeighbors.exe type: default -'1061320': {} -'1061360': +"1061320": {} +"1061360": installDir: Time Loop Fighter launch: - config: @@ -21777,57 +21606,57 @@ oslist: linux executable: Time_Loop_Fighter.x86_64 type: none -'1061390': +"1061390": installDir: Block Run launch: - config: oslist: windows executable: Block Run.exe type: default -'1061420': +"1061420": installDir: Obscure Doubt launch: - config: oslist: windows executable: Game.exe type: none -'1061430': +"1061430": installDir: Adagio launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: game.exe type: vr -'1061460': +"1061460": installDir: Tiny Mortals VR launch: - config: oslist: windows executable: Tiny Mortals VR.exe type: vr -'1061470': +"1061470": installDir: Nyasha Valkyrie launch: - executable: Nyasha Valkyrie.exe type: none -'1061540': - installDir: Mystery of the Ancients Three Guardians Collector's Edition +"1061540": + installDir: "Mystery of the Ancients Three Guardians Collector's Edition" launch: - config: oslist: windows executable: MysteryOfTheAncientsThreeGuardiansCE.exe type: default -'1061550': +"1061550": installDir: Sneak In launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: SneakIn32.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: SneakIn64.exe type: default @@ -21839,14 +21668,14 @@ oslist: macos executable: SneakIn.app type: default -'1061600': +"1061600": installDir: Dodge the Wall launch: - config: oslist: windows executable: DodgeTheWall.exe type: vr -'1061610': +"1061610": installDir: Tenderfoot Tactics launch: - config: @@ -21861,119 +21690,117 @@ oslist: linux executable: Tenderfoot Tactics.x86_64 type: default -'1061620': +"1061620": installDir: Galaxy in Peril launch: - executable: Galaxy In Peril.exe type: none -'1061640': +"1061640": installDir: How To Be A Real Dude launch: - config: oslist: windows executable: HowToBeARealDude.exe type: default -'1061650': +"1061650": installDir: Idle Portal Guardian launch: - config: oslist: windows executable: Idle Portal Guardian.exe type: default -'1061670': {} -'1061680': - installDir: Angela's Odyssey +"1061670": {} +"1061680": + installDir: "Angela's Odyssey" launch: - config: oslist: windows executable: AOdyssey.exe type: none -'1061730': +"1061730": installDir: SMBBBHD launch: - config: oslist: windows executable: SMBBBHD.exe type: default -'1061790': +"1061790": installDir: Chopper To Hell launch: - config: oslist: macos - executable: Chopper To Hell.app\\Contents\\MacOS\\Chopper To Hell + executable: "Chopper To Hell.app\\\\Contents\\\\MacOS\\\\Chopper To Hell" type: default - config: oslist: windows executable: Chopper To Hell.exe type: default -'1061850': +"1061850": installDir: Hotel Mogul Las Vegas launch: - config: oslist: windows executable: HM.exe type: default -'1061880': +"1061880": installDir: Conan Chop Chop launch: - config: betakey: launcher oslist: windows description: Funcom Launcher - description_loc: - english: Funcom Launcher - executable: Launcher\\FuncomLauncher.exe + executable: "Launcher\\\\FuncomLauncher.exe" type: default - config: oslist: windows executable: Conan Chop Chop.exe type: default -'1061900': +"1061900": installDir: ThunderGod launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ThunderGod.exe type: vr -'1061910': +"1061910": installDir: Metal Hellsinger launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Metal.exe type: default -'1061920': +"1061920": installDir: OurSecretBelow(Release) launch: - config: oslist: windows executable: OurSecretBelow.exe type: default -'1061930': +"1061930": installDir: Cyber City launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: CyberCity.exe type: default -'1061970': +"1061970": installDir: Great Ball of Fire launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: win64\\Great Ball of Fire.exe + executable: "win64\\\\Great Ball of Fire.exe" type: none - config: - osarch: '32' + osarch: "32" oslist: windows - executable: win32\\Great Ball of Fire.exe + executable: "win32\\\\Great Ball of Fire.exe" type: none -'1061990': {} -'1062000': +"1061990": {} +"1062000": installDir: Starmancer launch: - config: @@ -21982,36 +21809,36 @@ type: none - config: oslist: macos - executable: Starmancer.app\\Contents\\MacOS\\Starmancer + executable: "Starmancer.app\\\\Contents\\\\MacOS\\\\Starmancer" type: default - config: oslist: linux executable: Starmancer.x86_64 type: none -'1062020': - installDir: 'Who Are You, Mr. Cooper' +"1062020": + installDir: "Who Are You, Mr. Cooper" launch: - config: oslist: windows executable: waymc.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: waymc type: default -'1062040': +"1062040": installDir: Dragon Star Varnir launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: resource\\bin\\DragonStarVarnir.exe + executable: "resource\\\\bin\\\\DragonStarVarnir.exe" type: default nameLocalized: japanese: 竜星のヴァルニール tchinese: 龍星的瓦爾尼爾 -'1062050': +"1062050": installDir: SecretsOfWar launch: - config: @@ -22022,18 +21849,18 @@ oslist: linux executable: SoW.x86_64 type: default -'1062060': +"1062060": installDir: Rhome launch: - config: oslist: windows executable: Rhome.exe type: none -'1062090': +"1062090": installDir: Timberborn launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Timberborn.exe type: default @@ -22041,31 +21868,25 @@ oslist: macos executable: Timberborn.app type: default - - arguments: '-safe' + - arguments: "-safe" config: - osarch: '64' + osarch: "64" oslist: windows description: Safe Mode - description_loc: - english: Safe Mode executable: Timberborn.exe type: option1 - - arguments: '-safe' + - arguments: "-safe" config: oslist: macos description: Safe Mode - description_loc: - english: Safe Mode executable: Timberborn.app type: option1 - config: oslist: macos description: macOS workaround - description_loc: - english: macOS workaround executable: Timberborn.app/Contents/MacOS/Timberborn type: option3 -'1062110': +"1062110": installDir: Unsighted launch: - config: @@ -22093,30 +21914,30 @@ betakey: public_testing executable: UNSIGHTED.exe type: default -'1062120': +"1062120": installDir: Peas Adventure launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: game.exe type: default -'1062140': +"1062140": installDir: Garden Story launch: - config: oslist: windows - executable: '${Garden Story}.exe' + executable: "${Garden Story}.exe" type: none - config: oslist: macos executable: Garden Story.app type: none -'1062160': +"1062160": installDir: Poly Bridge 2 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Poly Bridge 2.exe type: default @@ -22125,7 +21946,7 @@ executable: Poly Bridge 2.app type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: Poly Bridge 2.exe type: default @@ -22133,108 +21954,108 @@ oslist: linux executable: Poly Bridge 2.x86_64 type: default -'1062180': {} -'1062200': +"1062180": {} +"1062200": installDir: BigAgeSG launch: - - executable: BigAgeSG\\BigAgeSG.exe + - executable: "BigAgeSG\\\\BigAgeSG.exe" type: default -'1062210': +"1062210": installDir: Spikes Are Dangerous launch: - config: oslist: windows executable: Spikes Are Dangerous.exe type: default -'1062240': +"1062240": installDir: Metro launch: - config: oslist: windows executable: Metro.exe type: default -'1062260': +"1062260": installDir: mfxl launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Mfxl.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: Mfxl.exe type: default -'1062330': {} -'1062340': +"1062330": {} +"1062340": installDir: RD launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: KatanaKami.exe type: none nameLocalized: - japanese: '侍道外伝 KATANAKAMI ' + japanese: "侍道外伝 KATANAKAMI " tchinese: 侍道外傳 刀神 -'1062380': {} -'1062390': +"1062380": {} +"1062390": installDir: Triangle Mania launch: - config: oslist: windows executable: TriangleMania.exe type: default -'1062430': {} -'1062470': +"1062430": {} +"1062470": installDir: Frank & the TimeTwister Machine launch: - config: oslist: windows executable: Frank & the TimeTwister Machine.exe type: default -'1062480': +"1062480": installDir: Songs of Skydale launch: - config: oslist: windows executable: Songs of Skydale.exe type: default -'1062520': +"1062520": installDir: Dinkum launch: - config: oslist: windows executable: Dinkum.exe type: default -'1062530': +"1062530": installDir: Obsidian Crown launch: - config: oslist: windows executable: ObsidianCrown.exe type: default -'1062540': +"1062540": installDir: PUZZLETIME Lovely Girls launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: PuzzleTime.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: PuzzleTime.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: PuzzleTime.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: PuzzleTime.x86_64 type: default @@ -22242,31 +22063,31 @@ oslist: macos executable: PuzzleTime/PuzzleTime.app type: default -'1062640': +"1062640": installDir: Castle Of Pixel Skulls launch: - executable: CastleOfPixelSkulls.exe type: none -'1062670': +"1062670": installDir: Blacksmith Run launch: - executable: Blacksmith Run.exe type: none -'1062690': +"1062690": installDir: Astronomy VR launch: - executable: VR Astronomy.exe type: vr -'1062830': +"1062830": installDir: Embr launch: - - arguments: '-force-d3d11' + - arguments: "-force-d3d11" config: oslist: windows description: Launch executable: FireProject.exe type: none - - arguments: '-force-vulkan' + - arguments: "-force-vulkan" config: oslist: windows description: Play Embr (Vulkan) @@ -22275,11 +22096,11 @@ nameLocalized: schinese: 灭火先锋 / Embr tchinese: 滅火先鋒 / Embr -'1062850': +"1062850": installDir: Sage Mountain launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SageMountain.exe type: none @@ -22287,25 +22108,25 @@ oslist: macos executable: SageMountain.app/Contents/MacOS/SageMountain type: none -'1062870': {} -'1062880': {} -'1062890': {} -'1062900': {} -'1062920': {} -'1062960': +"1062870": {} +"1062880": {} +"1062890": {} +"1062900": {} +"1062920": {} +"1062960": installDir: UNDER the SAND launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: TenMiles.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: TenMiles.exe type: default -'1063020': +"1063020": installDir: Elemental War 2 launch: - config: @@ -22325,11 +22146,11 @@ koreana: 엘리멘탈 워 2 schinese: 元素战争2 tchinese: 元素戰爭2 -'1063050': +"1063050": installDir: Lumina launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Lumina.exe type: default @@ -22337,7 +22158,7 @@ oslist: macos executable: Lumina.app type: default -'1063060': +"1063060": installDir: MonteCube Dodge launch: - config: @@ -22345,38 +22166,34 @@ description: Launch executable: MCver16.exe type: othervr -'1063070': +"1063070": installDir: Body Discovery launch: - config: oslist: windows executable: gast.exe type: default -'1063080': +"1063080": installDir: Genius! NAZI-GIRL GoePPels-Chan ep2 launch: - config: oslist: windows description: Genius! NAZI-GIRL GoePPels-Chan ep2(English) - description_loc: - english: Genius! NAZI-GIRL GoePPels-Chan ep2(English) executable: goeppels02E.exe type: default - config: oslist: windows description: Moemoe! NAZI-GIRL GoePPels-Chan ep2(Japanese) - description_loc: - english: Moemoe! NAZI-GIRL GoePPels-Chan ep2(Japanese) executable: goeppels02.exe type: none -'1063100': - installDir: 'Re[Map]' +"1063100": + installDir: "Re[Map]" launch: - config: oslist: windows - executable: 'Re[Map].exe' + executable: "Re[Map].exe" type: default -'1063110': +"1063110": installDir: Prince of Cats launch: - config: @@ -22391,11 +22208,11 @@ oslist: linux executable: FortunesFool.sh type: none -'1063120': +"1063120": installDir: DamagedInTransit launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: DamagedInTransit.exe type: default @@ -22403,29 +22220,29 @@ oslist: macos executable: DamagedInTransit.app type: default -'1063140': +"1063140": installDir: UnderSpire launch: - executable: UnderSpire.exe type: default -'1063160': +"1063160": installDir: TheLegendsofClassone launch: - config: oslist: windows executable: Game.exe type: default -'1063170': {} -'1063180': {} -'1063190': +"1063170": {} +"1063180": {} +"1063190": installDir: FloweringAcrosstheHakugyokurou launch: - config: oslist: windows executable: Game.exe type: default -'1063200': {} -'1063210': +"1063200": {} +"1063210": installDir: Narazumono launch: - config: @@ -22436,29 +22253,29 @@ oslist: macos executable: Narazumono.app/Contents/MacOS/Narazumono type: none -'1063220': +"1063220": installDir: ChessBase 15 Steam Edition launch: - config: oslist: windows - executable: CBase15\\CBase15.exe + executable: "CBase15\\\\CBase15.exe" type: none -'1063230': - installDir: '6120' +"1063230": + installDir: "6120" launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: 6120.exe type: default -'1063240': +"1063240": installDir: Tuskers Number Adventure launch: - config: oslist: windows executable: Tuskers Number Adventure.exe type: default -'1063280': +"1063280": installDir: Combat Helicopter PCVR launch: - config: @@ -22469,30 +22286,30 @@ - description: VR executable: CombatHelicopterPCVR.exe type: vr -'1063310': +"1063310": installDir: Vane launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: game.exe type: none -'1063330': +"1063330": installDir: xxl launch: - config: oslist: windows executable: launcher/Launcher.exe type: default -'1063340': +"1063340": installDir: LingHuanXianSheng launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: LingHuanXianSheng.exe type: default -'1063350': +"1063350": installDir: Viking Brothers 5 launch: - config: @@ -22501,40 +22318,40 @@ type: default - config: oslist: macos - executable: Viking Brothers 5.app\\Contents\\MacOS\\VB5_mac + executable: "Viking Brothers 5.app\\\\Contents\\\\MacOS\\\\VB5_mac" type: default -'1063360': +"1063360": installDir: Necronomistore launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: nw.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: nw.exe type: default -'1063440': +"1063440": installDir: Homeless Simulator 2 launch: - config: oslist: windows executable: HomelessSimulator2.exe type: default -'1063470': +"1063470": installDir: Ski Jumping Pro VR launch: - config: oslist: windows executable: Ski Jumping Pro VR.exe type: vr -'1063490': +"1063490": installDir: Still There launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Still There executable: Still There.exe @@ -22543,47 +22360,45 @@ oslist: macos executable: StillThere.app type: default -'1063510': {} -'1063530': +"1063510": {} +"1063530": installDir: Cartoon Network Journeys VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: CNJourneysVR.exe type: vr -'1063540': +"1063540": installDir: Space Wreck launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: - osarch: '64' + osarch: "64" oslist: windows executable: space-wreck.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch in safe mode - description_loc: - english: Launch in safe mode executable: space-wreck.exe -'1063560': +"1063560": installDir: 12 HOURS launch: - config: oslist: windows executable: 12 HOURS.exe type: default -'1063570': +"1063570": installDir: Dino Lost launch: - config: oslist: windows executable: Dino Lost.exe type: default -'1063580': - installDir: Aeon's End +"1063580": + installDir: "Aeon's End" launch: - config: oslist: windows @@ -22594,25 +22409,25 @@ executable: AeonsEnd.app type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: AeonsEnd.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: AeonsEnd.x86_64 type: none -'1063660': +"1063660": installDir: Bendy and the Dark Revival launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Bendy and the Dark Revival.exe type: default -'1063700': {} -'1063710': +"1063700": {} +"1063710": installDir: Tubetastic World Splashfest launch: - config: @@ -22630,49 +22445,41 @@ description: Tubetastic World Splashfest executable: Tubetastic_20 type: none -'1063730': +"1063730": installDir: New World launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: New World - description_loc: - english: New World executable: NewWorldLauncher.exe type: option1 - config: - osarch: '64' + osarch: "64" oslist: windows - ownsdlc: '1210560' + ownsdlc: "1210560" description: GM Client - description_loc: - english: GM Client - executable: bin65\\NewWorld.exe + executable: "bin65\\\\NewWorld.exe" type: option2 - config: - osarch: '64' + osarch: "64" oslist: windows - ownsdlc: '1716920' + ownsdlc: "1716920" description: Debug Client - description_loc: - english: Debug Client - executable: bin.debug\\NewWorld.exe + executable: "bin.debug\\\\NewWorld.exe" type: option3 - config: betakey: scale-test description: New world web - description_loc: - english: New world web executable: NewWorldLauncher.lnk type: option1 -'1063740': {} -'1063770': +"1063740": {} +"1063770": installDir: Pew Dew Redemption launch: - executable: PewDewRedemption.exe type: none -'1063790': +"1063790": installDir: Citizen of Rome - Dynasty Ascendant launch: - config: @@ -22687,85 +22494,85 @@ oslist: macos executable: Citizen of Rome - Dynasty Ascendant.app type: default -'1063800': +"1063800": installDir: SexyHub launch: - config: oslist: windows executable: White Liquid.exe type: default -'1063820': +"1063820": installDir: INSANE WEST launch: - config: oslist: windows executable: MYWT.exe type: default -'1063830': +"1063830": installDir: Dreadborne Drifters launch: - executable: db.exe type: none -'1063850': +"1063850": installDir: Jinxed launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Jinxed.exe type: vr -'1063870': +"1063870": installDir: Solstice launch: - config: oslist: windows executable: Solstice.exe type: default -'1063890': +"1063890": installDir: Fat Dude Simulator launch: - config: oslist: windows executable: FatDudeSimulator.exe type: default -'1063910': +"1063910": installDir: Four saints legend launch: - config: oslist: windows executable: Game.exe type: default -'1063930': +"1063930": installDir: The Purge Man launch: - config: oslist: windows executable: The Purge Man.exe type: vr -'1063940': {} -'1063950': +"1063940": {} +"1063950": installDir: SUPER RECOILFIGHT launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SUPER RECOILFIGHT.exe type: default -'1063960': +"1063960": installDir: Ritual launch: - config: oslist: windows executable: Ritual.exe type: default -'1063970': +"1063970": installDir: 元素战争 Elemental war launch: - config: oslist: windows executable: Elemental war.exe type: default -'1063980': +"1063980": installDir: Hell Architect launch: - config: @@ -22776,19 +22583,17 @@ oslist: macos executable: HellArchitect.app type: default - - arguments: '-force-glcore' + - arguments: "-force-glcore" config: betakey: woodland_inside_mac description: Force OpenGL Core - description_loc: - english: Force OpenGL Core executable: HellArchitect.app type: option3 -'1063990': +"1063990": installDir: Tank Battle Heroes launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TankBattleHeroes.exe type: none @@ -22796,59 +22601,59 @@ oslist: macos executable: TankBattleHeroes.app type: none -'1064010': +"1064010": installDir: Escape until Friday launch: - config: oslist: windows executable: EscapeUntilFriday.exe type: default -'1064020': +"1064020": installDir: eMemories launch: - config: oslist: windows executable: eMemories.exe type: none -'1064030': +"1064030": installDir: King of the Cul-de-sac launch: - config: oslist: windows executable: KingoftheCulDeSac-1.7-market/KingoftheCulDeSac.exe type: default -'1064050': +"1064050": installDir: Rick Rack launch: - config: oslist: windows executable: RickRack.exe type: none -'1064060': +"1064060": installDir: The Mystery of Bikini Island launch: - config: oslist: windows executable: The Mystery of Bikini Island.exe type: default -'1064070': {} -'1064080': +"1064070": {} +"1064080": installDir: Rhythm Defender launch: - config: oslist: windows executable: Rhythm Defender.exe type: vr -'1064090': +"1064090": installDir: Lawnmower Game 4 The Final Cut launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Lawnmower4.exe type: default -'1064120': {} -'1064130': +"1064120": {} +"1064130": installDir: Sakura MMO 3 launch: - config: @@ -22863,64 +22668,64 @@ oslist: linux executable: Sakura_MMO_3.sh type: default -'1064140': +"1064140": installDir: Blood and Lust launch: - config: oslist: windows - executable: BloodandLust-1.0-pc\\BloodandLust.exe + executable: "BloodandLust-1.0-pc\\\\BloodandLust.exe" type: default - config: oslist: macos - executable: BloodandLust.app\\Contents\\MacOS\\BloodandLust + executable: "BloodandLust.app\\\\Contents\\\\MacOS\\\\BloodandLust" type: default -'1064150': +"1064150": installDir: Late City Riders launch: - config: oslist: windows executable: LateCityRiders.exe type: none -'1064160': +"1064160": installDir: Holoception launch: - config: oslist: windows executable: Holoception.exe type: vr - - arguments: '-vrmode oculus' + - arguments: "-vrmode oculus" config: betakey: alpha oslist: windows executable: Holoception.exe type: othervr -'1064170': +"1064170": installDir: Avast Ye launch: - config: - osarch: '64' + osarch: "64" oslist: linux executable: AvastYe.exe type: none -'1064200': +"1064200": installDir: Brewer launch: - executable: Brewer.exe type: default -'1064220': {} -'1064221': {} -'1064260': +"1064220": {} +"1064221": {} +"1064260": installDir: SpaceEscapeVR launch: - config: oslist: windows executable: SpaceEscapeVR.exe type: vr -'1064270': {} -'1064271': {} -'1064272': {} -'1064273': {} -'1064310': +"1064270": {} +"1064271": {} +"1064272": {} +"1064273": {} +"1064310": installDir: A Place for the Unwilling launch: - config: @@ -22931,7 +22736,7 @@ oslist: macos executable: aplacefortheunwilling.app type: none -'1064320': +"1064320": installDir: Ferret Scoundrels launch: - config: @@ -22944,38 +22749,38 @@ description: Launch Quest Editor executable: Ferret Scoundrels Quest Editor.exe type: editor -'1064360': +"1064360": installDir: Beatcrash launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Beatcrash.exe type: vr -'1064420': +"1064420": installDir: PhuckerInTheGulag launch: - config: oslist: windows executable: PhuckerInTheGulag/GulagHTML5.exe type: default -'1064440': - installDir: Xiu's SuperMarket +"1064440": + installDir: "Xiu's SuperMarket" launch: - config: oslist: windows executable: TheGame.exe type: none -'1064450': +"1064450": installDir: BL00 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: BL00.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: BL00.exe type: default @@ -22983,7 +22788,7 @@ oslist: macos executable: BL00 (Mac).app type: default -'1064460': +"1064460": installDir: Murder House launch: - config: @@ -22991,21 +22796,21 @@ description: Play the game executable: Murder House.exe type: default -'1064480': +"1064480": installDir: Deadly Path launch: - executable: Deadly Path.exe type: default -'1064490': +"1064490": installDir: NightoftheShrub3 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Night of the Shrub 3.exe type: default -'1064510': {} -'1064520': +"1064510": {} +"1064520": installDir: Helm Realm launch: - config: @@ -23016,7 +22821,7 @@ oslist: linux executable: linux_build/LinuxBuild.x86_64 type: none -'1064540': +"1064540": installDir: Puzzle Pelago launch: - config: @@ -23027,29 +22832,29 @@ oslist: windows executable: Puzzle Pelago.exe type: default -'1064580': +"1064580": installDir: CaptainMarlene launch: - - arguments: '@f+ @INFOOFF' + - arguments: "@f+ @INFOOFF" config: oslist: windows description: Full screen executable: CaptainMarlene.win32_steam.exe type: option1 - - arguments: '@f1920x1080 @z0.9 @INFOOFF' + - arguments: "@f1920x1080 @z0.9 @INFOOFF" config: oslist: windows description: Windowed executable: CaptainMarlene.win32_steam.exe type: option1 -'1064590': +"1064590": installDir: Bax launch: - config: oslist: windows executable: BAX.exe type: none -'1064600': +"1064600": installDir: Battlesteam launch: - config: @@ -23064,7 +22869,7 @@ oslist: linux executable: Battlesteam.x86_64 type: none -'1064610': +"1064610": installDir: Neon Beats launch: - config: @@ -23075,35 +22880,35 @@ oslist: macos executable: Neon Beats.app type: default -'1064620': +"1064620": installDir: Forest of Evil launch: - config: oslist: windows executable: Forest of Evil.exe type: default -'1064640': {} -'1064650': +"1064640": {} +"1064650": installDir: Rogue Slash launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: RogueSlash.exe type: default -'1064660': +"1064660": installDir: The Death of Erin Myers launch: - executable: erin_myers_pc_en_1280.exe type: none -'1064670': +"1064670": installDir: Pathos launch: - config: oslist: windows executable: Horde.exe type: none -'1064690': +"1064690": installDir: Danger Crew launch: - config: @@ -23118,38 +22923,38 @@ oslist: linux executable: dangercrew type: none -'1064710': +"1064710": installDir: Wrath of the Samurai launch: - - arguments: '-popupwindow' + - arguments: "-popupwindow" config: oslist: windows - executable: Aiki Gaming Studios\\Wrathofthesamurai\\Wrathofthesamurai.exe + executable: "Aiki Gaming Studios\\\\Wrathofthesamurai\\\\Wrathofthesamurai.exe" type: vr -'1064730': +"1064730": installDir: Fantasy Girl launch: - config: oslist: windows executable: Fantasy Girl.exe type: default -'1064750': +"1064750": installDir: Space Tower launch: - config: oslist: windows executable: Space Tower.exe type: none -'1064790': {} -'1064840': +"1064790": {} +"1064840": installDir: Tamarin launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Tamarin.exe type: default -'1064860': +"1064860": installDir: PrivateModel launch: - config: @@ -23160,85 +22965,85 @@ oslist: macos executable: Private Model.app type: default -'1064870': {} -'1064880': {} -'1064890': {} -'1064910': +"1064870": {} +"1064880": {} +"1064890": {} +"1064910": installDir: Flyeeex launch: - - arguments: '@f+ @INFOOFF' + - arguments: "@f+ @INFOOFF" config: oslist: windows description: Full screen executable: Flyeeex.win32_steam.exe type: option1 - - arguments: '@f1920x1080 @z0.9 @INFOOFF' + - arguments: "@f1920x1080 @z0.9 @INFOOFF" config: oslist: windows description: Windowed executable: Flyeeex.win32_steam.exe type: option2 -'1064920': +"1064920": installDir: VR Party Pack launch: - config: oslist: windows executable: VR Party Pack.exe type: vr -'1064930': +"1064930": installDir: Divine Diva launch: - config: oslist: windows - executable: DivineDiva\\DivineDiva.exe + executable: "DivineDiva\\\\DivineDiva.exe" type: default - config: oslist: linux - executable: DivineDiva\\DivineDiva.sh + executable: "DivineDiva\\\\DivineDiva.sh" type: default - config: oslist: macos - executable: DivineDiva\\DivineDiva.app + executable: "DivineDiva\\\\DivineDiva.app" type: default -'1064950': +"1064950": installDir: fluidlander launch: - executable: cfdgame.exe type: none -'1064960': +"1064960": installDir: The Legion FringeBound launch: - config: oslist: windows executable: The Legion FringeBound.exe type: default -'1064990': +"1064990": installDir: Thunder Paw launch: - config: oslist: windows executable: nw.exe type: default -'10650': +"10650": installDir: Stormrise launch: - executable: stormrise.exe -'1065020': +"1065020": installDir: Micro Mages launch: - config: oslist: windows executable: Micro Mages.exe type: default -'1065030': +"1065030": installDir: mnj launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: \\WindowsNoEditor\\DrawHouse\\Binaries\\Win64\\DrawHouse.exe + executable: "\\\\WindowsNoEditor\\\\DrawHouse\\\\Binaries\\\\Win64\\\\DrawHouse.exe" type: none -'1065050': +"1065050": installDir: Gunship Recon launch: - config: @@ -23247,36 +23052,18 @@ type: default - config: oslist: windows - ownsdlc: '1167340' + ownsdlc: "1167340" description: Purchase Privilege DLC1 - description_loc: - brazilian: DLC1 de privilégio de compra - english: Purchase Privilege DLC1 - japanese: 購入特典 DLC1 - latam: Privilegio de compra DLC1 - portuguese: DLC1 de privilégio de compra - schinese: 购买特权 DLC1 - spanish: Privilegio de compra DLC1 - executable: GRDLC\\Gunship Recon - Purchase Privilege DLC.exe + executable: "GRDLC\\\\Gunship Recon - Purchase Privilege DLC.exe" type: option1 - config: oslist: windows - ownsdlc: '1217320' + ownsdlc: "1217320" description: Character Puzzles (DLC2) - description_loc: - brazilian: Puzzles de personagens(DLC2) - english: Character Puzzles (DLC2) - french: Puzzles de personnages(DLC2) - german: Charakterrätsel(DLC2) - japanese: キャラクターパズル(DLC2) - latam: Rompecabezas de personajes(DLC2) - portuguese: Puzzles de personagens(DLC2) - schinese: 人物拼图(DLC2) - spanish: Rompecabezas de personajes(DLC2) - executable: GRDLC2\\Gunship Recon - Character Puzzles.exe + executable: "GRDLC2\\\\Gunship Recon - Character Puzzles.exe" type: option2 -'1065070': {} -'1065100': +"1065070": {} +"1065100": installDir: Golden Treasure The Great Green launch: - config: @@ -23285,47 +23072,47 @@ type: default - config: oslist: macos - executable: GoldenTreasureTGG.app\\Contents\\MacOS\\GoldenTreasureTGG + executable: "GoldenTreasureTGG.app\\\\Contents\\\\MacOS\\\\GoldenTreasureTGG" type: default - config: oslist: linux executable: Golden Treasure - The Great Green.x86_64 type: default -'1065110': +"1065110": installDir: Homeward Duck launch: - config: oslist: windows - executable: HomewardDuckBuild190407\\Homeward Duck.exe + executable: "HomewardDuckBuild190407\\\\Homeward Duck.exe" type: vr -'1065160': +"1065160": installDir: Deatherem launch: - config: oslist: windows executable: Deatherem.exe type: default -'1065180': +"1065180": installDir: Azure Striker Gunvolt 2 launch: - config: oslist: windows - executable: exe\\GV2.exe + executable: "exe\\\\GV2.exe" type: default - workingdir: exe\\ -'1065200': + workingdir: "exe\\\\" +"1065200": installDir: Visitor2 launch: - config: oslist: windows executable: Visitor2.exe type: default -'1065210': +"1065210": installDir: ZIC - Survivor launch: - executable: ZIC - Survivor.exe type: none -'1065230': +"1065230": installDir: Room of Pandora launch: - config: @@ -23339,19 +23126,19 @@ - config: oslist: linux executable: game.x86_64 -'1065250': +"1065250": installDir: Fourthspace launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: FourthSpace.exe type: default -'1065260': +"1065260": installDir: Gensou SkyDrift launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SkyDrift.exe type: default @@ -23359,50 +23146,48 @@ japanese: 幻走スカイドリフト schinese: 幻走空中竞速 tchinese: 幻走空中賽車 -'1065310': +"1065310": installDir: Evil West launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Start new EvilWest.exe - description_loc: - english: Start new EvilWest.exe executable: EvilWest.exe type: default nameLocalized: schinese: 暗邪西部 -'1065320': +"1065320": installDir: Rekt! launch: - config: oslist: windows executable: REKT.exe type: default -'1065350': +"1065350": installDir: The Grandmaster launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: The Grandmaster.exe type: default -'1065380': +"1065380": installDir: Lesbian Breakout launch: - config: oslist: windows executable: Lesbian Breakout.exe type: default -'1065390': +"1065390": installDir: Virtual Hero launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: VirtualHero.exe type: vr -'1065410': +"1065410": installDir: ThatsPrettyClever launch: - config: @@ -23413,44 +23198,44 @@ oslist: macos executable: ganzclever.app/Contents/MacOS/ganzclever type: default -'1065460': +"1065460": installDir: ReThink Evolved 3 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: RethinkEvolved3.exe type: none -'1065550': +"1065550": installDir: Block Busters launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: BlockBusters.exe type: default -'1065560': - installDir: Malcom's Day +"1065560": + installDir: "Malcom's Day" launch: - config: oslist: windows executable: malcomsday.exe type: default -'1065570': +"1065570": installDir: Cyber Gun launch: - config: oslist: windows executable: Cyber Gun.exe type: default -'1065580': +"1065580": installDir: Castle Woodwarf 2 launch: - config: oslist: windows executable: Castle Woodwarf 2.exe type: default -'1065630': +"1065630": installDir: Beats Warrior Nian launch: - config: @@ -23458,17 +23243,17 @@ executable: Beats Warrior Nian.exe type: default nameLocalized: - english: 'Beats Warrior: Nian' + english: "Beats Warrior: Nian" schinese: 节拍战士:念 tchinese: 節拍戰士:念 -'1065650': +"1065650": installDir: Super Star Blast launch: - config: oslist: windows executable: SuperStarBlast.exe type: default -'1065670': +"1065670": installDir: 4004-022 launch: - config: @@ -23477,37 +23262,37 @@ type: default - config: oslist: macos - executable: 4004-022.app\\Contents\\MacOS\\4004-022 + executable: "4004-022.app\\\\Contents\\\\MacOS\\\\4004-022" type: default -'1065680': +"1065680": installDir: The Chronicles of King Arthur Episode 2 launch: - config: oslist: windows executable: The Chronicles of King Arthur Episode 2 - Knights of the Round Table.exe type: default -'1065690': +"1065690": installDir: Peku launch: - config: oslist: windows executable: Peku.exe type: default -'1065710': +"1065710": installDir: ClassiCube launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ClassiCube.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: ClassiCube type: default -'1065740': {} -'1065750': +"1065740": {} +"1065750": installDir: Spark and The Digital Daydream launch: - config: @@ -23518,80 +23303,80 @@ oslist: macos executable: Spark and The Digital Daydream.app type: none -'1065770': +"1065770": installDir: Home A Drone launch: - config: oslist: windows executable: HomeADrone.exe type: vr -'1065780': +"1065780": installDir: Run Gun Die Ultimate launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Run Gun Die Ultimate.exe type: default -'1065830': +"1065830": installDir: FORGOTTEN IN HELL launch: - config: oslist: windows executable: F.I.HELL.exe type: default -'1065850': +"1065850": installDir: Giant Bear Rampage! launch: - executable: ProjectCMS2.exe type: none -'1065860': {} -'1065870': - installDir: BRG's Alice in Wonderland Visual Novel +"1065860": {} +"1065870": + installDir: "BRG's Alice in Wonderland Visual Novel" launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows executable: nw.exe type: default -'1065880': +"1065880": installDir: Dungeon Scavenger launch: - config: oslist: windows executable: Dungeon Scavenger.exe type: default -'1065890': +"1065890": installDir: LOGistICAL2France launch: - config: oslist: windows executable: LogisticalApp.exe type: none -'1065900': +"1065900": installDir: Celtreos launch: - config: oslist: macos executable: Celtreos.app/Contents/MacOS/Celtreos type: default -'1065910': {} -'1065920': +"1065910": {} +"1065920": installDir: DoomAI launch: - config: oslist: windows - executable: Release.win32\\DoomAI.exe + executable: "Release.win32\\\\DoomAI.exe" type: none -'1065930': +"1065930": installDir: Prototype-CUBE launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Prototype-CUBE.exe type: none -'1065940': +"1065940": installDir: Country Girl Keiko launch: - executable: Game.exe @@ -23600,7 +23385,7 @@ japanese: けーこのカンちがいなか生活 schinese: 懵懂少女惠子 tchinese: 懵懂少女惠子 -'1065950': +"1065950": installDir: Cage of the Succubi launch: - executable: Game.exe @@ -23608,41 +23393,41 @@ nameLocalized: schinese: 魅魔的囚笼 tchinese: 魅魔的囚籠 -'1065960': +"1065960": installDir: Werewolf Standalone launch: - config: oslist: windows - executable: Werewolf Standalone\\Werewolf Standalone.exe + executable: "Werewolf Standalone\\\\Werewolf Standalone.exe" type: none -'1065970': +"1065970": installDir: Spice_and_Wolf_VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Spice and Wolf VR.exe type: vr -'1065990': {} -'1066000': {} -'1066010': +"1065990": {} +"1066000": {} +"1066010": installDir: Herakles and the Princess of Troy launch: - config: oslist: windows executable: herakles.exe type: default -'1066030': +"1066030": installDir: Heroland launch: - - arguments: '-screen-width 1280 -screen-height 720 -screen-fullscreen 0' + - arguments: "-screen-width 1280 -screen-height 720 -screen-fullscreen 0" config: oslist: windows executable: HerolandLauncher.exe type: default nameLocalized: japanese: WORK×WORK -'1066040': +"1066040": installDir: Simple Dot launch: - config: @@ -23654,23 +23439,23 @@ executable: SimpleDot.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Simple Dot.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Simple Dot.x86 type: default -'1066090': +"1066090": installDir: GuardTheFuture launch: - config: oslist: windows - executable: \\GuardTheFuture\\Chinese\\GuardTheFuture.exe + executable: "\\\\GuardTheFuture\\\\Chinese\\\\GuardTheFuture.exe" type: default -'1066130': +"1066130": installDir: TruckLife launch: - config: @@ -23680,26 +23465,26 @@ nameLocalized: schinese: 卡车人生 tchinese: 中華卡車模擬 -'1066140': +"1066140": installDir: Now You See launch: - config: oslist: windows executable: Now You See.exe type: default -'1066180': +"1066180": installDir: Crisis VRigade 2 launch: - config: oslist: windows executable: Crisis VRigade 2.exe type: vr -'1066200': +"1066200": installDir: The Brink 尘与土 launch: - executable: Game.exe type: default -'1066210': +"1066210": installDir: Soviet Souls launch: - config: @@ -23714,52 +23499,52 @@ oslist: macos executable: SS.app type: default -'1066230': +"1066230": installDir: Katharsis Project launch: - config: oslist: windows executable: Project Katharsis.exe type: none -'1066240': +"1066240": installDir: Tankex launch: - executable: Tankex.exe type: none -'1066260': +"1066260": installDir: Bootleg launch: - config: oslist: windows executable: Bootleg.exe type: none -'1066290': +"1066290": installDir: Demon_Hunter launch: - executable: Game.exe type: default -'1066310': +"1066310": installDir: OFFSIDE launch: - config: oslist: windows executable: Offside.exe type: none -'1066370': {} -'1066380': {} -'1066390': {} -'1066400': +"1066370": {} +"1066380": {} +"1066390": {} +"1066400": installDir: Doctor Who The Runaway launch: - config: oslist: windows executable: DoctorWhoVR.exe type: vr -'1066420': +"1066420": installDir: Clodhoppers launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Clodhoppers.exe type: default @@ -23767,7 +23552,7 @@ oslist: macos executable: clodhoppers.app type: default -'1066430': +"1066430": installDir: Kwaidan launch: - config: @@ -23779,45 +23564,45 @@ japanese: 吾妻邸くわいだん schinese: Kwaidan ~吾妻邸怪谈~ tchinese: Kwaidan ~吾妻邸怪談~ -'1066440': +"1066440": installDir: Yggdrasil launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Yggdrasil.exe type: default -'1066530': {} -'1066580': {} -'1066600': +"1066530": {} +"1066580": {} +"1066600": installDir: Criss Cross launch: - config: oslist: windows executable: Croiss_Cross.exe type: none -'1066610': +"1066610": installDir: Half-Life launch: - - arguments: '-game dpbredux' + - arguments: "-game dpbredux" executable: hl.exe type: default -'1066620': - installDir: Bugs 'N Boo Hags +"1066620": + installDir: "Bugs 'N Boo Hags" launch: - executable: game.exe type: none -'1066630': +"1066630": installDir: Master Magistrate launch: - - arguments: '-fsmethod=cds -dbstyle=d3d' + - arguments: "-fsmethod=cds -dbstyle=d3d" executable: master_magistrate.exe type: default nameLocalized: japanese: 桜花裁き (海外版) schinese: 樱花裁决 tchinese: 櫻花裁決 (Master Magistrate) -'1066670': +"1066670": installDir: PULSOR launch: - config: @@ -23832,7 +23617,7 @@ oslist: macos executable: PULSOR.app type: none -'1066700': +"1066700": installDir: New Yankee 7 Deer Hunters launch: - config: @@ -23841,24 +23626,24 @@ type: default - config: oslist: macos - executable: NewYankee7.app\\Contents\\MacOS\\NewYankee7 + executable: "NewYankee7.app\\\\Contents\\\\MacOS\\\\NewYankee7" type: default -'1066730': +"1066730": installDir: PARTY BINGO launch: - config: oslist: windows executable: PartyBingo.exe type: default -'1066740': +"1066740": nameLocalized: schinese: 慈悲的火焰 -'1066760': +"1066760": installDir: Moonshine Inc launch: - - arguments: '-steamBuild' + - arguments: "-steamBuild" executable: Moonshine Inc.exe -'1066780': +"1066780": installDir: Transport Fever 2 launch: - config: @@ -23873,51 +23658,51 @@ oslist: linux executable: run.sh type: none -'1066810': +"1066810": installDir: Forge and Fight launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: Forge and Fight.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: Forge and Fight.exe type: default - config: oslist: macos - executable: Forge and Fight.app\\Contents\\MacOS\\Forge and Fight + executable: "Forge and Fight.app\\\\Contents\\\\MacOS\\\\Forge and Fight" type: default -'1066840': +"1066840": installDir: R_sin launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ThirdPersonArchery.exe type: default -'1066890': +"1066890": installDir: Automobilista 2 launch: - - arguments: '-novr' + - arguments: "-novr" config: - osarch: '64' + osarch: "64" oslist: windows executable: AMS2.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: AMS2.exe type: vr - config: - osarch: '64' + osarch: "64" oslist: windows executable: AMS2.exe type: othervr -'1066900': +"1066900": installDir: qomp launch: - config: @@ -23928,36 +23713,36 @@ oslist: linux executable: qomp type: none -'1066930': +"1066930": installDir: Eternal Elements launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Windows 64-bit executable: EternalElements64.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows description: Windows 32-bit executable: EternalElements32.exe type: default - config: betakey: developer - osarch: '64' + osarch: "64" oslist: windows description: w/Cheats Enabled executable: EternalElementsCheats.exe type: default -'1066940': +"1066940": installDir: They Came From the Sky launch: - config: oslist: windows executable: nw.exe type: none -'1066950': +"1066950": installDir: Gorgeous Elves of Ganassa launch: - config: @@ -23968,39 +23753,39 @@ oslist: macos executable: Gorgeous Elves of Ganassa.app type: default -'1067030': +"1067030": installDir: Meta Revelations - Ring Spirits launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows executable: Game.exe type: default -'1067040': +"1067040": installDir: Four Seals launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Four Seals.exe type: default -'1067050': +"1067050": installDir: Deep Dungeon Gym launch: - config: oslist: windows executable: nw.exe type: none -'1067070': {} -'1067080': +"1067070": {} +"1067080": installDir: BH Trials launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: BHTrials.exe type: default -'1067100': +"1067100": installDir: Smart Gecko launch: - config: @@ -24008,31 +23793,31 @@ description: Launch executable: SmartGecko.exe type: default -'1067110': +"1067110": installDir: Idle Chess Story launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: play idle chess story executable: Idle Chess Story.exe type: default -'1067200': +"1067200": installDir: Plagueworld launch: - config: oslist: windows executable: Launcher.exe type: default -'1067220': +"1067220": installDir: RoboCo launch: - - arguments: '-nohmd' + - arguments: "-nohmd" config: oslist: windows executable: RoboCo.exe type: default -'1067250': +"1067250": installDir: deadcastle launch: - config: @@ -24043,42 +23828,42 @@ oslist: macos executable: MacGameRuntime type: default -'1067270': +"1067270": installDir: RongShenzhiDiTie launch: - config: oslist: windows executable: RongShenzhiDiTie.exe type: none -'1067280': +"1067280": installDir: ReflexShot launch: - config: oslist: windows executable: FPSPracticeGame.exe type: default -'1067310': +"1067310": installDir: Gravitas launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Drop.exe type: default -'1067320': +"1067320": installDir: Pathogenesis Overcome launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Pathogenesis.exe type: default -'1067350': +"1067350": installDir: Sophies Dice launch: - config: oslist: windows - executable: Sophie's Dice.exe + executable: "Sophie's Dice.exe" type: default - config: oslist: macos @@ -24088,8 +23873,8 @@ oslist: linux executable: Sophies Dice.x86_64 type: default -'1067360': {} -'1067370': +"1067360": {} +"1067370": installDir: Achievement Machine Cubic Chaos launch: - config: @@ -24098,16 +23883,16 @@ type: default - config: oslist: macos - executable: Achievement Machine Cubic Chaos.app\\Contents\\MacOS\\Achievement Machine Cubic Chaos + executable: "Achievement Machine Cubic Chaos.app\\\\Contents\\\\MacOS\\\\Achievement Machine Cubic Chaos" type: default -'1067380': +"1067380": installDir: Tiny World launch: - config: oslist: windows executable: tinyworld.exe type: default -'1067390': +"1067390": installDir: Churchgoers launch: - config: @@ -24116,52 +23901,52 @@ type: default - config: oslist: macos - executable: Churchgoers.app\\Contents\\MacOS\\Churchgoers + executable: "Churchgoers.app\\\\Contents\\\\MacOS\\\\Churchgoers" type: default -'1067400': +"1067400": installDir: Drawn Down launch: - config: oslist: windows - executable: Drawn Down\\Drawn Down.exe + executable: "Drawn Down\\\\Drawn Down.exe" type: default - config: oslist: macos - executable: Drawn Down.app\\Contents\\MacOS\\Drawn Down + executable: "Drawn Down.app\\\\Contents\\\\MacOS\\\\Drawn Down" type: none -'1067430': +"1067430": installDir: Beam launch: - executable: Beam.exe type: default -'1067440': +"1067440": installDir: RollingSky2 launch: - config: oslist: windows executable: RollingSky2.exe type: default -'1067450': +"1067450": installDir: Never_Let_Me_Awake launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: Never_Let_Me_Awake\\Koya_HorrorGameProject.exe + executable: "Never_Let_Me_Awake\\\\Koya_HorrorGameProject.exe" type: default -'1067460': +"1067460": installDir: The Tower launch: - executable: Tower.exe type: vr -'1067520': +"1067520": installDir: Call of Otechestvo Donbass launch: - config: oslist: windows executable: test.exe type: default -'1067540': +"1067540": installDir: Röki launch: - config: @@ -24202,7 +23987,7 @@ turkish: Röki ukrainian: Röki vietnamese: Röki -'1067560': +"1067560": installDir: AIR Battlefront launch: - config: @@ -24213,7 +23998,7 @@ oslist: linux executable: AIR Battlefront.x86_64 type: default -'1067580': +"1067580": installDir: Bonfire launch: - config: @@ -24224,30 +24009,30 @@ oslist: macos executable: Bonfire.app/Contents/MacOS/Mac_Runner type: none -'1067600': +"1067600": installDir: The Defender FAC launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TheDefenderFAC.exe type: none -'1067650': +"1067650": installDir: GraFi launch: - config: oslist: windows executable: GraFi.exe type: default -'1067660': +"1067660": installDir: Protogenisis launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ProtogenisisV2.exe type: default -'1067700': +"1067700": installDir: Muspell launch: - config: @@ -24258,41 +24043,41 @@ oslist: macos executable: Muspell.app/Contents/MacOS/Muspell type: default -'1067720': +"1067720": installDir: Hellsinker launch: - executable: hs_dx9build.exe type: none -'1067730': +"1067730": installDir: Digital Rose launch: - config: oslist: windows executable: Digital Rose.exe type: default -'1067760': +"1067760": installDir: Gallic Wars Battle Simulator launch: - config: oslist: windows executable: GallicWars.exe type: default -'1067780': +"1067780": installDir: DPM launch: - config: oslist: windows executable: Dungeon Pain Maniac.exe type: none -'1067800': +"1067800": installDir: Spider-Man Far From Home VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SpiderManFFH.exe type: vr -'1067810': +"1067810": installDir: First Day launch: - config: @@ -24315,7 +24100,7 @@ koreana: 첫날 russian: Первый День tchinese: 第一天 -'1067850': +"1067850": installDir: Kindergarten 2 launch: - config: @@ -24330,28 +24115,28 @@ oslist: linux executable: Kindergarten2.x86_64 type: default -'1067860': +"1067860": installDir: NewCity launch: - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch NewCity using Wine (Linux) executable: newcity-wine.sh type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch NewCity without Wine (Linux) executable: newcity-linux.sh type: none - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch NewCity executable: newcity.exe type: default -'1067900': +"1067900": installDir: HOME launch: - config: @@ -24362,7 +24147,7 @@ oslist: macos executable: HOME.app/Contents/MacOS/HOME type: none -'1067930': +"1067930": installDir: this was for you launch: - config: @@ -24377,48 +24162,45 @@ oslist: linux executable: ThisWasForYou.sh type: default -'10680': +"10680": installDir: Aliens vs Predator launch: - executable: AvP_Launcher.exe - vacmodulefilename: resource\\sourceinit.dat - description: Launch Aliens vs Predator - DirectX 11 executable: AvP_DX11.exe - vacmodulefilename: resource\\sourceinit.dat - description: Launch Aliens vs Predator - DirectX 9 executable: AvP.exe - vacmodulefilename: resource\\sourceinit.dat -'1068020': {} -'1068050': +"1068020": {} +"1068050": installDir: ENZBOTS launch: - config: oslist: windows executable: ENZBOTS_update.exe type: none -'1068060': {} -'1068070': +"1068060": {} +"1068070": installDir: Lords Of The Lockerroom launch: - config: oslist: windows executable: LoTLR.exe type: default -'1068100': +"1068100": installDir: Vinios launch: - config: oslist: windows executable: Vinios.exe type: none -'1068110': +"1068110": installDir: MPaliens launch: - config: oslist: windows executable: MPAliens.exe type: default -'1068120': +"1068120": installDir: CrunchTime launch: - executable: CrunchTime.exe @@ -24427,12 +24209,12 @@ japanese: 残業悪夢 schinese: 残业恶梦 tchinese: 残業悪夢 -'1068130': +"1068130": installDir: Hippo eating banana launch: - executable: Game.exe type: default -'1068150': +"1068150": installDir: Dual Family launch: - config: @@ -24447,15 +24229,15 @@ oslist: linux executable: DF.sh type: default -'1068190': +"1068190": installDir: Reborn Not Again launch: - config: oslist: windows executable: Reborn Not Again.exe type: default -'1068220': {} -'1068230': +"1068220": {} +"1068230": installDir: Forestation Circles Of Nature launch: - config: @@ -24464,27 +24246,27 @@ type: default - config: oslist: macos - executable: Forestation Circle of Nature.app\\Contents\\MacOS\\Forestation Circle of Nature + executable: "Forestation Circle of Nature.app\\\\Contents\\\\MacOS\\\\Forestation Circle of Nature" type: default -'1068300': +"1068300": installDir: logitech_stylus launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: bin/win64/UI/vrink_controls.exe type: vr -'1068310': {} -'1068320': {} -'1068330': {} -'1068340': +"1068310": {} +"1068320": {} +"1068330": {} +"1068340": installDir: THE RITUAL (2019 Indie Horror Game) launch: - config: oslist: windows executable: chapter1.exe type: default -'1068360': +"1068360": installDir: Fearmonium launch: - config: @@ -24496,11 +24278,11 @@ executable: fearmonium.app type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: nw type: none -'1068420': +"1068420": installDir: iceroyds launch: - config: @@ -24508,23 +24290,23 @@ executable: iceroyds.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: iceroyds-linux-x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: iceroyds-linux-x86_64 type: default -'1068480': +"1068480": installDir: Tides of Existence launch: - config: oslist: windows executable: TIDES OF EXISTENCE.exe type: none -'1068490': +"1068490": installDir: Peanut launch: - config: @@ -24539,29 +24321,29 @@ oslist: linux executable: Peanut.x86_64 type: default -'1068510': +"1068510": installDir: Stigfinnare launch: - config: oslist: windows executable: Stigfinnare.exe type: default -'1068520': +"1068520": installDir: windows_content launch: - config: oslist: windows executable: Muppy The Bunny TDOW Final2.exe type: default -'1068530': +"1068530": installDir: Wytchsun launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Wytchsun_IH.exe type: default -'1068540': +"1068540": installDir: Aurora Hex - Pattern Puzzles launch: - config: @@ -24570,76 +24352,76 @@ type: default - config: oslist: macos - executable: Aurora Hex.app\\Contents\\MacOS\\Aurora Hex + executable: "Aurora Hex.app\\\\Contents\\\\MacOS\\\\Aurora Hex" type: default -'1068570': {} -'1068580': {} -'1068600': +"1068570": {} +"1068580": {} +"1068600": installDir: Waking launch: - config: oslist: windows executable: Waking.exe type: default -'1068640': +"1068640": installDir: Village Feud launch: - executable: Poly map.exe type: none -'1068650': {} -'1068680': +"1068650": {} +"1068680": installDir: Looking Back launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows executable: lookingback.exe type: default -'1068700': - installDir: Mystery of the Ancients Deadly Cold Collector's Edition +"1068700": + installDir: "Mystery of the Ancients Deadly Cold Collector's Edition" launch: - config: oslist: windows executable: MysteryOfTheAncients_DeadlyColdCE.exe type: config -'1068730': {} -'1068770': +"1068730": {} +"1068770": installDir: The Tower The Order of XII launch: - config: oslist: windows executable: The Tower The Order of XII.exe type: default -'1068800': +"1068800": installDir: Alphaman launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Alphaman.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Alphaman_linux.x86 type: default -'1068830': {} -'1068860': - installDir: ' Informal Detective' +"1068830": {} +"1068860": + installDir: " Informal Detective" launch: - config: oslist: windows executable: I.D.exe type: default -'1068900': +"1068900": installDir: DearAshely launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ToMyDearJO.exe type: default -'1068910': +"1068910": installDir: Submarine Attack! launch: - config: @@ -24648,35 +24430,35 @@ type: none - config: oslist: macos - executable: MacOS.app\\Contents\\MacOS\\MacOS + executable: "MacOS.app\\\\Contents\\\\MacOS\\\\MacOS" type: default -'1068980': +"1068980": installDir: It Runs Red launch: - config: oslist: windows executable: ItRunsRed.exe type: none -'1068990': +"1068990": installDir: Magnetic Pull launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: MagneticPull.exe type: default -'10690': +"10690": installDir: Virtua Tennis 2009 launch: - executable: Virtua Tennis 2009.exe - description: Configure Virtua Tennis 2009 executable: Config.exe -'1069000': +"1069000": installDir: Rescue bomber launch: - executable: Rescue bomber.exe type: default -'1069030': +"1069030": installDir: EarthX launch: - config: @@ -24691,37 +24473,37 @@ oslist: macos executable: EarthX.app type: none -'1069050': +"1069050": installDir: Little Dungeon Stories launch: - config: oslist: windows executable: Little Dungeon Stories.exe type: default -'1069080': +"1069080": installDir: PlayerGoesJump launch: - config: oslist: windows executable: PlayerGoesJump.exe type: default -'1069100': {} -'1069120': +"1069100": {} +"1069120": installDir: Lost_Dungeon launch: - config: oslist: windows executable: Lost_Dungeon.exe type: default -'1069130': +"1069130": installDir: KakwiteneVR launch: - config: oslist: windows executable: Kakwitene.exe type: vr -'1069140': - installDir: Cthulhu's Catharsis +"1069140": + installDir: "Cthulhu's Catharsis" launch: - config: oslist: windows @@ -24731,72 +24513,72 @@ oslist: linux executable: Cthulhus_Catharsis type: default -'1069160': {} -'1069180': {} -'1069210': +"1069160": {} +"1069180": {} +"1069210": installDir: Pulang Insanity launch: - executable: game.exe type: none -'1069230': +"1069230": installDir: tsukikage launch: - executable: tuki2.exe type: default nameLocalized: - english: 'Tsukikage no Simulacre:Kaihou no Hane' + english: "Tsukikage no Simulacre:Kaihou no Hane" japanese: 月影のシミュラクル -解放の羽- schinese: 月影魅像-解放之羽- tchinese: 月影魅像-解放之羽- -'1069250': +"1069250": installDir: Eslander launch: - arguments: without config: - betakey: '1.3' + betakey: "1.3" oslist: windows - ownsdlc: '13' + ownsdlc: "13" description: Starting the Eslander - executable: '${Eslander}.exe' + executable: "${Eslander}.exe" type: default -'1069270': +"1069270": installDir: Rotatex launch: - - arguments: '@f+ @INFOOFF' + - arguments: "@f+ @INFOOFF" config: oslist: windows description: Fullscreen executable: Rotatex.win32_steam.exe type: option1 - - arguments: '@f1920x1080 @z0.9 @INFOOFF' + - arguments: "@f1920x1080 @z0.9 @INFOOFF" config: oslist: windows description: Windowed executable: Rotatex.win32_steam.exe type: option2 -'1069290': +"1069290": installDir: Elpida Crônicas de uma guerreira launch: - config: oslist: windows executable: Game.exe type: default -'1069320': {} -'1069360': +"1069320": {} +"1069360": installDir: Plasticity launch: - config: oslist: windows executable: Plasticity_Release_v1_00.exe type: default -'1069380': +"1069380": installDir: Flaws in the People We Love launch: - config: oslist: windows executable: FlawsInPeopleWeLove.exe type: default -'1069390': +"1069390": installDir: Morningdew Farms A Gay Farming Game launch: - config: @@ -24811,8 +24593,8 @@ oslist: linux executable: MorningdewFarms.sh type: default -'1069430': {} -'1069460': +"1069430": {} +"1069460": installDir: Rune Lord launch: - config: @@ -24821,9 +24603,9 @@ type: default - config: oslist: macos - executable: Rune Lord.app\\Contents\\MacOS\\Rune Lord + executable: "Rune Lord.app\\\\Contents\\\\MacOS\\\\Rune Lord" type: default -'1069480': +"1069480": installDir: Worldwide Sports Fishing launch: - config: @@ -24834,21 +24616,21 @@ oslist: macos executable: Worldwide Sports Fishing.app type: default -'1069500': +"1069500": installDir: Ultimate Shotgun Championship launch: - config: oslist: windows executable: Ultimate Shotgun Championship.exe type: vr -'1069520': +"1069520": installDir: 绿野白银树 launch: - config: oslist: windows executable: 绿野白银树.exe type: default -'1069530': +"1069530": installDir: Narita Boy launch: - config: @@ -24859,7 +24641,7 @@ oslist: macos executable: NaritaBoy.app type: default -'1069540': +"1069540": installDir: Super Lumberjack launch: - config: @@ -24870,7 +24652,7 @@ oslist: windows executable: Super Lumberjack.exe type: none -'1069610': +"1069610": installDir: Exile of the Gods launch: - config: @@ -24885,7 +24667,7 @@ oslist: linux executable: ExileOfTheGods type: none -'1069640': +"1069640": installDir: This Land Is My Land launch: - config: @@ -24893,61 +24675,61 @@ description: Play This Land Is My Land executable: This Land Is My Land.exe type: none - - arguments: '-window-mode exclusive' - description: 'Play This Land Is My Land [Exclusive Fullscreen]' + - arguments: "-window-mode exclusive" + description: "Play This Land Is My Land [Exclusive Fullscreen]" executable: This Land Is My Land.exe type: none -'1069650': +"1069650": installDir: Ultimate Admiral Age of Sail launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: build.exe type: default - description: Crash Reporter executable: ReportSender.exe type: none -'1069660': +"1069660": installDir: Ultimate Admiral Dreadnoughts launch: - executable: Ultimate Admiral Dreadnoughts.exe type: none -'1069670': +"1069670": installDir: Eilf launch: - config: oslist: windows executable: Clicker.exe type: default -'1069690': +"1069690": installDir: RogueLords launch: - executable: Rogue Lords.exe type: none nameLocalized: schinese: 欺诈领主 -'1069710': +"1069710": installDir: Gear City Against Chaos launch: - config: oslist: windows executable: GearCity_V3.21.191114.exe type: default -'1069720': +"1069720": installDir: Vacation Adventures Cruise Director 2 launch: - executable: cruiseDirector2.exe type: none -'1069740': +"1069740": installDir: Seen launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: MG3.exe type: none -'1069750': +"1069750": installDir: Balance Breakers launch: - config: @@ -24958,7 +24740,7 @@ oslist: macos executable: Balance Breakers.app type: default -'1069760': +"1069760": installDir: Ethereal Enigma launch: - config: @@ -24971,7 +24753,7 @@ description: Mac Launch executable: Ethereal Enigma.app type: default -'1069820': +"1069820": installDir: Fog of War The Battle for Cerberus launch: - config: @@ -24986,84 +24768,84 @@ oslist: linux executable: FogOfWarTheBattleForCerberus type: none -'1069840': +"1069840": installDir: Grit launch: - config: oslist: windows executable: Grit.exe type: default -'1069850': +"1069850": installDir: Crawlco Block Knockers launch: - config: oslist: windows executable: BlockKnockers.exe type: none -'1069910': +"1069910": installDir: FactoryCoinMining launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Default launch option. executable: FactoryCoinMining.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: FactoryCoinMining.exe type: default - config: oslist: macos - executable: FactoryCoinMining.app\\Contents\\MacOS\\FactoryCoinMining + executable: "FactoryCoinMining.app\\\\Contents\\\\MacOS\\\\FactoryCoinMining" type: default -'1069920': +"1069920": installDir: To the Stars and Beyond! launch: - config: oslist: windows executable: To the Stars and Beyond!.exe type: default -'1069940': +"1069940": installDir: Blood Brothers launch: - executable: CapstoneGame.exe type: none -'1069970': +"1069970": installDir: Gabbuchi launch: - config: oslist: windows executable: Gabbuchi.exe type: default -'1070020': +"1070020": installDir: Make butter together! launch: - config: oslist: windows executable: game.exe type: none -'1070030': +"1070030": installDir: Under Stranger Stars launch: - executable: UnderStrangerStars.exe type: none -'1070100': {} -'1070110': +"1070100": {} +"1070110": installDir: ELYSION launch: - executable: ELYSION.exe type: none -'1070160': +"1070160": installDir: Avis Rapida launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Avis Rapida.exe type: default -'1070190': +"1070190": installDir: Spellsword Cards Origins launch: - config: @@ -25072,19 +24854,19 @@ type: default nameLocalized: schinese: 魔法之剑:起源 -'1070220': +"1070220": installDir: Detective Kobayashi launch: - config: oslist: windows executable: KobaEu.exe type: default -'1070230': +"1070230": installDir: Ethanol in dungeon launch: - executable: Ethanol in dungeon.exe type: none -'1070240': +"1070240": installDir: Peace of Evil launch: - config: @@ -25099,7 +24881,7 @@ oslist: linux executable: Peace of Evil.sh type: none -'1070250': +"1070250": installDir: NOTES launch: - config: @@ -25111,16 +24893,16 @@ executable: Notes.app type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: Notes.x86_64 type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: Notes.x86 type: none -'1070260': +"1070260": installDir: Graduated launch: - config: @@ -25136,7 +24918,7 @@ sc_schinese: 小生活 schinese: 小生活 tchinese: 小生活 -'1070280': +"1070280": installDir: Endless Defence 2 launch: - config: @@ -25147,23 +24929,23 @@ oslist: macos executable: Contents/MacOS/Endless Defence 2 Mac type: default -'1070300': +"1070300": installDir: Power Brain Trainer launch: - executable: Power Brain Trainer.exe type: default -'1070320': +"1070320": installDir: Ring the City launch: - config: oslist: windows executable: Ring the City.exe type: default -'1070330': +"1070330": installDir: Russian Life Simulator launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Russian Life Simulator.exe type: default @@ -25172,15 +24954,15 @@ executable: RussianLifeSimulator.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: Russian Life Simulator.exe type: default - config: oslist: macos - executable: Contents\\MacOS\\RussianLifeSimulator + executable: "Contents\\\\MacOS\\\\RussianLifeSimulator" type: default -'1070360': +"1070360": installDir: THE BALDINA launch: - config: @@ -25191,13 +24973,13 @@ oslist: macos executable: THE BALDINA.app type: none -'1070370': {} -'1070390': +"1070370": {} +"1070390": installDir: Fakespearean Game launch: - executable: fofGame.exe type: none -'1070400': +"1070400": installDir: Maldrin Journey launch: - config: @@ -25205,32 +24987,32 @@ executable: MaldrinJourney.exe type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: MaldrinJourney.x86_64 type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: MaldrinJourney.x86 type: none -'1070410': +"1070410": installDir: Nevrosa Primal Ritual launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Nevrosa - Primal Ritual.exe type: vr -'1070430': +"1070430": installDir: Space Duke launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SpaceDuke.exe type: default -'1070440': +"1070440": installDir: Dark Miasma launch: - config: @@ -25239,9 +25021,9 @@ type: default - config: oslist: macos - executable: DarkMiasma.app\\Contents\\MacOS\\DarkMiasma + executable: "DarkMiasma.app\\\\Contents\\\\MacOS\\\\DarkMiasma" type: default -'1070450': +"1070450": installDir: GoVenture TYPING launch: - config: @@ -25250,61 +25032,61 @@ type: none - config: oslist: macos - executable: GoVentureTyping.app\\Contents\\MacOS\\GoVentureTyping + executable: "GoVentureTyping.app\\\\Contents\\\\MacOS\\\\GoVentureTyping" type: none -'1070460': +"1070460": installDir: Plague of Days launch: - config: oslist: windows executable: pod.exe type: default -'1070510': +"1070510": installDir: Militia 2 launch: - config: oslist: windows executable: Militia 2.exe type: none - - arguments: '-force-opengl -show-screen-selector' + - arguments: "-force-opengl -show-screen-selector" config: oslist: macos - executable: militia2.app\\Contents\\MacOS\\militia2 + executable: "militia2.app\\\\Contents\\\\MacOS\\\\militia2" type: none - - arguments: '-force-opengl -show-screen-selector' + - arguments: "-force-opengl -show-screen-selector" config: - osarch: '64' + osarch: "64" oslist: linux executable: militia2.x86_64 type: none - - arguments: '-force-opengl -show-screen-selector' + - arguments: "-force-opengl -show-screen-selector" config: - osarch: '32' + osarch: "32" oslist: linux executable: militia2.x86 type: none -'1070550': - installDir: Don't Escape Trilogy +"1070550": + installDir: "Don't Escape Trilogy" launch: - config: oslist: windows executable: DontEscape.exe type: default -'1070580': +"1070580": installDir: Drift86 V3 launch: - executable: Drift86 V3.exe type: none -'1070590': +"1070590": installDir: Butterfly 2 launch: - executable: game.exe type: none -'1070710': +"1070710": installDir: Kind Words launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Kind Words.exe type: none @@ -25313,37 +25095,33 @@ executable: Kind Words.app/Contents/MacOS/Kind Words type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: Kind Words.x86_64 type: none -'1070770': +"1070770": installDir: Skat 3D Premium launch: - config: oslist: windows executable: Skat3D.exe type: default - - arguments: '-safe' + - arguments: "-safe" description: Safe mode (windowed) - description_loc: - english: Safe mode (windowed) executable: Skat3D.exe type: option2 - - arguments: '-autoconfig' + - arguments: "-autoconfig" description: Autoconfig mode (fullscreen) - description_loc: - english: Autoconfig mode (fullscreen) executable: Skat3D.exe type: option3 -'1070780': +"1070780": installDir: Under Pressure launch: - config: oslist: windows executable: Under Pressure.exe type: none -'1070790': +"1070790": installDir: Freshly_Frosted launch: - config: @@ -25354,36 +25132,34 @@ - config: oslist: macos description: Launches Freshly Frosted - description_loc: - english: Launches Freshly Frosted executable: FreshlyFrosted.app/Contents/MacOS/FreshlyFrosted type: default -'1070800': +"1070800": installDir: Depths of Madness launch: - config: oslist: windows executable: SeniorProject2019.exe type: default -'1070820': +"1070820": installDir: RealFlight 9 launch: - - arguments: '-novr' + - arguments: "-novr" config: oslist: windows executable: RealFlight.exe type: default - - arguments: '-steamvr' + - arguments: "-steamvr" config: oslist: windows executable: RealFlight.exe type: vr - - arguments: '-oculusvr' + - arguments: "-oculusvr" config: oslist: windows executable: RealFlight.exe type: othervr -'1070850': +"1070850": installDir: Today Is My Birthday launch: - config: @@ -25391,48 +25167,48 @@ description: Launch executable: timb.exe type: default -'1070860': +"1070860": installDir: Serin Fate launch: - config: oslist: windows executable: Serin Fate.exe type: default -'1070890': +"1070890": installDir: ZombieRush_Extinction launch: - config: oslist: windows executable: ZombieRush_Extinction.exe type: default -'1070940': +"1070940": installDir: Aster launch: - config: oslist: windows executable: Aster.exe type: default -'1070950': +"1070950": installDir: MyUniversity launch: - executable: MyUniversity.exe type: default -'1070960': {} -'1070980': +"1070960": {} +"1070980": installDir: Astro4x launch: - config: oslist: windows executable: AstroChess.exe type: none -'1070990': +"1070990": installDir: Flux launch: - config: oslist: windows executable: flux.exe type: default -'107100': +"107100": installDir: Bastion launch: - config: @@ -25449,20 +25225,20 @@ betakey: legacy oslist: linux description: Bastion - executable: Linux\\run_steam.sh + executable: "Linux\\\\run_steam.sh" type: default workingdir: Linux - config: oslist: macos description: FNA - executable: ./Bastion.app/Contents/MacOS/Bastion + executable: "./Bastion.app/Contents/MacOS/Bastion" type: default - config: oslist: linux description: FNA - executable: ./Linux/Bastion + executable: "./Linux/Bastion" type: default -'1071030': +"1071030": installDir: Hilda Bewildered launch: - config: @@ -25474,49 +25250,49 @@ executable: HildaBewildered-desktop.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: launch_Hilda.sh type: default -'1071060': +"1071060": installDir: KUMACURE launch: - executable: player.exe type: none -'1071070': +"1071070": installDir: fekheskhezfebuek launch: - config: oslist: windows executable: fekheskhezfebuek.exe type: default -'1071080': +"1071080": installDir: Lapya launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Lapya.exe type: default -'1071090': +"1071090": installDir: CleanVR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: CleanVR.exe type: vr -'1071120': +"1071120": installDir: Mushroom Cats launch: - config: oslist: windows executable: Mushroom_Cats.exe type: default -'1071130': +"1071130": installDir: The Procession to Calvary launch: - - arguments: '-popupwindow' + - arguments: "-popupwindow" config: oslist: windows executable: The Procession to Calvary.exe @@ -25524,12 +25300,12 @@ oslist: macos executable: The Procession to Calvary.app type: none - - arguments: '-force-glcore42 -force-clamped' + - arguments: "-force-glcore42 -force-clamped" config: oslist: linux executable: TheProcessionToCalvary.x86_64 type: none -'1071140': +"1071140": installDir: ORX launch: - config: @@ -25539,17 +25315,17 @@ nameLocalized: schinese: ORX 城堡之巅 tchinese: ORX 城堡之巅 -'1071170': +"1071170": installDir: Claude Monet - The Water Lily obsession launch: - - arguments: '-openvr' + - arguments: "-openvr" config: - osarch: '64' + osarch: "64" oslist: windows executable: Waterlilies.exe type: vr -'1071180': {} -'1071190': +"1071180": {} +"1071190": installDir: MineRalph launch: - config: @@ -25564,15 +25340,15 @@ oslist: linux executable: MineRalph.x86_64 type: default -'1071220': - installDir: 'After I met that catgirl, my questlist got too long!' +"1071220": + installDir: "After I met that catgirl, my questlist got too long!" launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows executable: nw.exe type: default -'1071240': +"1071240": installDir: Earthlingo launch: - config: @@ -25583,9 +25359,9 @@ oslist: linux executable: Earthlingo.x86_64 type: none -'1071250': {} -'1071260': - installDir: Horizon Shift '81 +"1071250": {} +"1071260": + installDir: "Horizon Shift '81" launch: - config: oslist: windows @@ -25597,7 +25373,7 @@ description: Launch executable: Mac.app type: default -'1071280': +"1071280": installDir: Q launch: - config: @@ -25608,32 +25384,32 @@ oslist: macos executable: Q.app type: default -'1071290': +"1071290": installDir: Wild West and Wizards launch: - config: oslist: windows executable: WildWestWizards.exe type: default -'1071310': - installDir: '1, 2, 3... Bruegel!' +"1071310": + installDir: "1, 2, 3... Bruegel!" launch: - - arguments: '-openvr' + - arguments: "-openvr" config: - osarch: '64' + osarch: "64" oslist: windows executable: 123BruegelSteam.exe type: vr -'1071320': +"1071320": installDir: The Isle of the Dead launch: - - arguments: '-openvr' + - arguments: "-openvr" config: - osarch: '64' + osarch: "64" oslist: windows executable: UNREAL_LILEDESMORTS type: vr -'1071330': +"1071330": installDir: Dark Fantasy 2 Jigsaw Puzzle launch: - config: @@ -25648,16 +25424,16 @@ oslist: linux executable: Dark Fantasy 2.x86_64 type: default -'1071350': +"1071350": installDir: Little One launch: - config: oslist: windows executable: Little One.exe type: default -'1071440': {} -'1071490': - installDir: Miss Lisette's Assassin Maid +"1071440": {} +"1071490": + installDir: "Miss Lisette's Assassin Maid" launch: - config: oslist: windows @@ -25666,7 +25442,7 @@ nameLocalized: schinese: 刺客女仆佛媞 tchinese: 刺客女僕佛媞 -'1071510': +"1071510": installDir: And All Would Cry Beware! launch: - config: @@ -25677,16 +25453,16 @@ oslist: macos executable: AllWouldCryBeware.app type: none -'1071540': {} -'1071550': {} -'1071580': +"1071540": {} +"1071550": {} +"1071580": installDir: TopDownFarter launch: - config: oslist: windows executable: TopDownFarter.exe type: default -'1071600': +"1071600": installDir: Jetlad launch: - config: @@ -25694,19 +25470,19 @@ description: Launch the game. executable: Jetlad.exe type: default -'1071610': +"1071610": installDir: Bad Hombre launch: - config: oslist: windows executable: Bad Hombre.exe type: default -'1071640': +"1071640": installDir: Open Ocean launch: - executable: Open Ocean.exe type: default -'1071660': +"1071660": installDir: Ruine launch: - config: @@ -25714,43 +25490,43 @@ description: Default executable: Ruine.exe type: default -'1071700': +"1071700": installDir: DeathMatch launch: - config: oslist: windows executable: DeathMatch.exe type: none -'1071720': {} -'1071740': +"1071720": {} +"1071740": installDir: Pirates of First Star launch: - config: oslist: windows executable: Pirates of First Star.exe type: default -'1071760': +"1071760": installDir: Idunn Gurdians launch: - executable: IDUNN GUARDIANS.exe type: none -'1071770': - installDir: Princess's Peak +"1071770": + installDir: "Princess's Peak" launch: - config: oslist: windows executable: princessG.exe type: default -'1071790': {} -'1071800': +"1071790": {} +"1071800": installDir: Caterpillar Wars DX launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: CaterpillarRoyale.exe type: default -'1071870': +"1071870": installDir: Biped launch: - config: @@ -25787,55 +25563,51 @@ turkish: Biped ukrainian: Biped vietnamese: Biped -'1071880': - installDir: New Yankee in King Arthur's Court 4 +"1071880": + installDir: "New Yankee in King Arthur's Court 4" launch: - config: oslist: windows - executable: New Yankee in King Arthur's Court 4.exe + executable: "New Yankee in King Arthur's Court 4.exe" type: default - config: oslist: macos - executable: >- - New Yankee 4 In King Arthur's Court Collector's Edition.app\\Contents\\MacOS\\New Yankee 4 - In King Arthur's - Court Collector's Edition + executable: "New Yankee 4 In King Arthur's Court Collector's Edition.app\\\\Contents\\\\MacOS\\\\New Yankee 4 - In King Arthur's Court Collector's Edition" type: default -'1071890': - installDir: New Yankee in King Arthur's Court 5 +"1071890": + installDir: "New Yankee in King Arthur's Court 5" launch: - config: oslist: windows - executable: New Yankee in King Arthur's Court 5 CE.exe + executable: "New Yankee in King Arthur's Court 5 CE.exe" type: default - config: oslist: macos - executable: >- - New Yankee 5 In King Arthur's Court Collector's Edition.app\\Contents\\MacOS\\New Yankee 5 In King Arthur's - Court Collector's Edition + executable: "New Yankee 5 In King Arthur's Court Collector's Edition.app\\\\Contents\\\\MacOS\\\\New Yankee 5 In King Arthur's Court Collector's Edition" type: default -'1071900': +"1071900": installDir: Sequela launch: - config: oslist: windows executable: HYZ.exe type: default -'1071920': +"1071920": installDir: Foreign Frugglers launch: - config: oslist: windows executable: Foreign Frugglers.exe type: default -'1071940': - installDir: Streamer's Life +"1071940": + installDir: "Streamer's Life" launch: - config: oslist: windows description: Launch executable: game.exe type: none -'1071950': +"1071950": installDir: EscapeeZ launch: - config: @@ -25844,21 +25616,21 @@ type: default - config: oslist: macos - executable: mac_content.app\\Contents\\MacOS\\mac_content + executable: "mac_content.app\\\\Contents\\\\MacOS\\\\mac_content" type: default - config: oslist: linux executable: EscapeeZ.x86_64 type: default -'1071970': +"1071970": installDir: Rayball launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Rayball.exe type: vr -'107200': +"107200": installDir: Space Pirates and Zombies launch: - config: @@ -25873,106 +25645,106 @@ oslist: linux description: Space Pirates and Zombies executable: SPAZ -'1072000': +"1072000": installDir: Alice in CyberCity launch: - config: oslist: windows executable: Alice in CyberCity.exe type: default -'1072030': +"1072030": installDir: Road to Harvetsky launch: - config: oslist: windows executable: nGame.exe type: default -'1072040': +"1072040": installDir: Panzer Corps 2 launch: - executable: Launcher.exe type: default -'1072050': +"1072050": installDir: Core Of Darkness launch: - config: oslist: windows executable: CoreOfDarkness.exe type: default -'1072070': {} -'1072100': +"1072070": {} +"1072100": installDir: CHIKARA Action Arcade Wrestling launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: AAWX.exe type: default -'1072110': +"1072110": installDir: Tartapolis launch: - config: oslist: windows executable: Tartapolis.exe type: none -'1072140': +"1072140": installDir: RigidChess launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Play Rigid Chess executable: RigidChess.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows description: Play Rigid Chess executable: RigidChess.exe type: default -'1072150': +"1072150": installDir: Hedon Bloodrite launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch Hedon executable: hedon.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Launch Hedon type: default -'1072170': +"1072170": installDir: Order Up VR launch: - config: oslist: windows executable: Order Up VR.exe type: vr -'1072180': - installDir: Grim Facade Hidden Sins Collector's Edition +"1072180": + installDir: "Grim Facade Hidden Sins Collector's Edition" launch: - config: oslist: windows executable: GrimFacade_HiddenSins_CE.exe type: default -'1072190': {} -'1072210': +"1072190": {} +"1072210": installDir: StrikeMasterApocalypse launch: - config: oslist: windows executable: Strike Master 2 Real Not Fake.exe type: default -'1072250': {} -'1072270': +"1072250": {} +"1072270": installDir: K-9 Dog Job launch: - executable: dog.exe type: default -'1072280': +"1072280": installDir: Cossanox launch: - config: @@ -25980,12 +25752,12 @@ executable: Cossanox.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Cossanox.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Cossanox.x86 type: default @@ -25993,58 +25765,58 @@ oslist: macos executable: Cossanox.app type: default -'1072300': {} -'1072310': +"1072300": {} +"1072310": installDir: Kurr Snaga launch: - config: oslist: windows - executable: Win\\KurrSnaga.exe + executable: "Win\\\\KurrSnaga.exe" type: default - config: oslist: macos - executable: Mac\\KurrSnaga.app\\Contents\\MacOS\\KurrSnaga + executable: "Mac\\\\KurrSnaga.app\\\\Contents\\\\MacOS\\\\KurrSnaga" type: default -'1072340': +"1072340": installDir: VR takibi launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: VR-takibi.exe type: vr -'1072350': +"1072350": installDir: AR_T2_win64 launch: - config: oslist: windows executable: nw.exe type: none -'1072370': {} -'1072390': +"1072370": {} +"1072390": installDir: BirdGut launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: BirdGut.exe type: default - config: oslist: macos - executable: Mac_build.app\\Contents\\MacOS\\Mac_build + executable: "Mac_build.app\\\\Contents\\\\MacOS\\\\Mac_build" type: default -'1072400': {} -'1072420': +"1072400": {} +"1072420": installDir: DRAGON QUEST BUILDERS 2 launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: GameLauncher.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows description: Configuration executable: Config.exe @@ -26060,65 +25832,65 @@ schinese: 勇者斗恶龙 创世小玩家2 破坏神席德与空荡岛 spanish: DRAGON QUEST BUILDERS™ 2 tchinese: 勇者鬥惡龍 創世小玩家2 破壞神席德與空蕩島 -'1072440': {} -'1072480': +"1072440": {} +"1072480": installDir: The Fisherman - Fishing Planet launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: FishingPlanet.exe type: default -'1072490': +"1072490": installDir: KiKiMiMi launch: - config: oslist: windows executable: game.exe type: none -'1072500': +"1072500": installDir: AO International Tennis 2 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: tennis2.exe type: default -'1072530': +"1072530": installDir: Sheaf-TogetherEP launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Sheaf.exe type: vr -'1072550': {} -'1072590': +"1072550": {} +"1072590": installDir: Game Of Puzzles Dragons launch: - executable: GOPDragons.exe type: none -'1072610': +"1072610": installDir: AvoCuddle launch: - config: oslist: windows executable: AvoCuddle.exe type: none -'1072620': +"1072620": installDir: Weakless launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: weakless_project.exe type: default -'1072640': +"1072640": installDir: Beat Blast launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: BeatBlast.exe type: default @@ -26129,25 +25901,25 @@ nameLocalized: schinese: 节拍冲击 tchinese: 節拍衝擊 -'1072660': +"1072660": installDir: Loco Parentis VR launch: - - arguments: '-nohmd' + - arguments: "-nohmd" config: - osarch: '64' + osarch: "64" oslist: windows executable: LocoParentis.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: LocoParentis.exe type: vr -'1072710': +"1072710": installDir: Soviet Jump Game launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SovietJumpGame.exe type: default @@ -26155,27 +25927,27 @@ oslist: macos executable: SovietJumpGame.app type: default -'1072720': +"1072720": installDir: infinity pipe launch: - executable: levels maker uu smils 2.exe type: none -'1072750': +"1072750": installDir: That Flipping Mountain launch: - config: oslist: windows executable: That Flipping Mountain.exe type: default -'1072760': +"1072760": installDir: Nick Logic for Kids launch: - config: oslist: windows executable: Logic for Kids.exe type: default -'1072790': {} -'1072800': +"1072790": {} +"1072800": installDir: Ufflegrim launch: - config: @@ -26186,24 +25958,24 @@ oslist: linux executable: Ufflegrim type: default -'1072840': {} -'1072850': +"1072840": {} +"1072850": installDir: RifleRange launch: - config: oslist: windows executable: RifleRange.exe type: none -'1072860': +"1072860": installDir: Real Scary launch: - executable: RealScary.exe type: none -'1072870': +"1072870": installDir: Random War launch: - config: - osarch: '64' + osarch: "64" oslist: linux executable: RandomWar.x86_64 type: default @@ -26211,40 +25983,40 @@ oslist: windows executable: RandomWar.exe type: default -'1072880': {} -'1072890': +"1072880": {} +"1072890": installDir: Oneironaut launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Oneironaut.exe type: default -'1072910': +"1072910": nameLocalized: sc_schinese: 钻头派对 schinese: 钻头派对 -'1072920': +"1072920": installDir: HomeWorkIsCrazy launch: - config: oslist: windows executable: Mathematical.exe type: default -'1072930': +"1072930": installDir: Blood Magic launch: - config: oslist: windows executable: Blood Magic.exe type: default -'1072950': {} -'107300': +"1072950": {} +"107300": installDir: Breath of Death VII launch: - executable: BoDVIIPC.exe -'1073010': {} -'1073020': +"1073010": {} +"1073020": installDir: In the beginning launch: - config: @@ -26253,24 +26025,24 @@ type: default - config: oslist: macos - executable: In the beginning.app\\Contents\\MacOS\\In the beginning + executable: "In the beginning.app\\\\Contents\\\\MacOS\\\\In the beginning" type: default -'1073030': {} -'1073040': +"1073030": {} +"1073040": installDir: Retro Pixel Racers launch: - config: oslist: windows executable: RetroPixelRacers.exe type: none -'1073060': +"1073060": installDir: Lonely Skies launch: - config: oslist: windows executable: LonelySkies.exe type: default -'1073080': +"1073080": installDir: TUTUTUTU - Tea party launch: - config: @@ -26279,55 +26051,55 @@ type: none - config: oslist: macos - executable: TeaParty_Mac.app\\Contents\\MacOS\\TeaParty_Mac + executable: "TeaParty_Mac.app\\\\Contents\\\\MacOS\\\\TeaParty_Mac" type: none -'107310': +"107310": installDir: Cthulhu Saves the World launch: - executable: CSTW.exe -'1073100': +"1073100": installDir: Speedrun Squad launch: - config: oslist: windows executable: Speedrun Squad.exe type: default -'1073140': +"1073140": installDir: Castra launch: - config: oslist: windows executable: Castra.exe type: default -'1073210': +"1073210": installDir: Mermaid Colony launch: - config: oslist: windows executable: Mermaid Colony.exe type: default -'1073220': +"1073220": installDir: Teeth Brushing Simulator launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Teeth Brushing Simulator.exe type: default -'1073280': +"1073280": installDir: Spy Tactics launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SpyTactics.exe type: default - config: oslist: macos - executable: SpyTactics.app\\Contents\\MacOS\\SpyTactics + executable: "SpyTactics.app\\\\Contents\\\\MacOS\\\\SpyTactics" type: default -'1073320': - installDir: Meteorfall Krumit's Tale +"1073320": + installDir: "Meteorfall Krumit's Tale" launch: - config: oslist: windows @@ -26338,32 +26110,32 @@ executable: krumit.app/Contents/MacOS/krumit type: default nameLocalized: - schinese: '星陨传说:流浪者的故事 Meteorfall: Krumit''s Tale' -'1073350': + schinese: "星陨传说:流浪者的故事 Meteorfall: Krumit's Tale" +"1073350": installDir: Curves launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Curves.exe type: default -'1073360': +"1073360": installDir: Paycheck City RPG launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: paycheck000.exe type: default -'1073370': - installDir: Inori's House +"1073370": + installDir: "Inori's House" launch: - config: oslist: windows - description: Inori's House + description: "Inori's House" executable: InorisHouse.exe type: default -'1073380': +"1073380": installDir: yellowtoy launch: - config: @@ -26374,99 +26146,99 @@ oslist: linux executable: yellowtoy.exe type: default -'1073390': +"1073390": installDir: Aircar launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Aircar.exe type: vr -'1073400': +"1073400": installDir: Tiger Tank 59 Ⅰ Winter Assault launch: - config: oslist: windows executable: game.exe type: default -'1073410': +"1073410": installDir: Boxing Champs launch: - config: oslist: windows executable: Boxing Champs.exe type: default -'1073440': +"1073440": installDir: Koikatsu Party launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Initial Settings.exe type: default -'1073490': +"1073490": installDir: Monster X Monster launch: - config: oslist: windows executable: Monster X Monster.exe type: none -'1073500': {} -'1073600': {} -'1073610': +"1073500": {} +"1073600": {} +"1073610": installDir: Miss Cat launch: - config: oslist: windows executable: Game.exe type: default -'1073620': +"1073620": installDir: Not So Heart launch: - config: oslist: windows executable: Not So Heart.exe type: default -'1073640': +"1073640": installDir: JetX Space Edition launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: JetX\\Binaries\\Win64\\JetX.exe + executable: "JetX\\\\Binaries\\\\Win64\\\\JetX.exe" type: default -'1073690': {} -'1073710': +"1073690": {} +"1073710": installDir: Legion of Scorn launch: - config: oslist: windows executable: Legion of Scorn.exe type: default -'1073740': {} -'1073770': +"1073740": {} +"1073770": installDir: XANARTHRAXIA launch: - config: - osarch: '64' + osarch: "64" executable: XANARTHRAXIA.exe type: default -'1073780': +"1073780": installDir: Invaded launch: - config: oslist: windows executable: WindowsNoEditor/Invaded.exe type: default -'1073790': +"1073790": installDir: The Astrolarix launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows executable: Game.exe type: none -'1073810': +"1073810": installDir: Shapik the moon quest launch: - config: @@ -26477,14 +26249,14 @@ oslist: macos executable: ShapikTMQ.app type: default -'1073820': - installDir: 'Love, Sam' +"1073820": + installDir: "Love, Sam" launch: - config: oslist: windows executable: LoveSam.exe type: default -'1073840': +"1073840": installDir: Nocked! True Tales of Robin Hood launch: - config: @@ -26495,14 +26267,14 @@ oslist: windows executable: Nocked-win32-x64/Nocked.exe type: none -'1073850': +"1073850": installDir: Crystal Command launch: - config: oslist: windows executable: ProjectPetram.exe type: default -'1073860': +"1073860": installDir: Idle Guardians launch: - config: @@ -26511,26 +26283,26 @@ type: default - config: oslist: macos - executable: MacOS\\idleguardians_mac + executable: "MacOS\\\\idleguardians_mac" type: default -'1073870': +"1073870": installDir: Self Shot launch: - executable: Self Shot.exe type: default -'1073900': +"1073900": installDir: Brukel launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: BrukelGame.exe type: default -'1073910': +"1073910": installDir: Before We Leave launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Before We Leave.exe type: default @@ -26539,59 +26311,53 @@ executable: Before We Leave.app type: default nameLocalized: - schinese: '离去之前 ' -'1073920': {} -'1073960': + schinese: "离去之前 " +"1073920": {} +"1073960": installDir: Exemption launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ProjectExemption.exe type: default -'1073990': +"1073990": installDir: tnu-enrb-c1 launch: - config: betakey: default oslist: windows description: Alpha - description_loc: - english: Alpha executable: TNU.exe type: default - config: betakey: unity_test oslist: windows description: Beta - description_loc: - english: Beta executable: Eine Neue Reise Beginnt.exe type: default -'1074030': +"1074030": installDir: Melon Journey Bittersweet Memories launch: - config: - osarch: '64' + osarch: "64" oslist: windows - description: 'Melon Journey: Bittersweet Memories' - description_loc: - english: 'Melon Journey: Bittersweet Memories' + description: "Melon Journey: Bittersweet Memories" executable: Player.exe -'1074040': +"1074040": installDir: The Red Prison launch: - executable: TheRedPrison.exe type: none -'1074060': {} -'1074080': +"1074060": {} +"1074080": installDir: Senran Kagura PeachBall launch: - executable: SKPeachBall.exe type: none nameLocalized: japanese: PEACH BALL 閃乱カグラ -'107410': +"107410": installDir: Arma 3 launch: - config: @@ -26605,15 +26371,15 @@ - config: oslist: linux description: Launch - executable: ./arma3 -'1074150': + executable: "./arma3" +"1074150": installDir: Little Savior launch: - config: oslist: windows executable: LittleSavior.exe type: none -'1074170': +"1074170": installDir: SELF launch: - config: @@ -26627,56 +26393,48 @@ nameLocalized: english: SELF schinese: SELF 自己 -'1074180': +"1074180": installDir: Smart City Plan launch: - config: oslist: windows executable: game.exe type: default -'1074190': +"1074190": installDir: dragonspirits launch: - config: oslist: windows description: Default startup mode - description_loc: - english: Default startup mode - sc_schinese: 默认启动方式 - schinese: 默认启动方式 executable: RGD.exe - config: oslist: windows description: Compatible mode for better performance on some devices - description_loc: - english: Compatible mode for better performance on some devices - sc_schinese: 兼容模式启动,默认启动卡顿时使用 - schinese: 兼容模式启动,默认启动卡顿时使用 executable: Game.exe nameLocalized: english: Dragon Spirits sc_schinese: 龙魂:学院奇闻 schinese: 龙魂:学院奇闻 tchinese: 龍魂:學院奇聞 -'1074220': - installDir: The Cult - Marduk's Longest Night +"1074220": + installDir: "The Cult - Marduk's Longest Night" launch: - config: oslist: windows - executable: Marduk's Longest Night.exe + executable: "Marduk's Longest Night.exe" type: default -'1074250': +"1074250": installDir: Kunoichi launch: - config: oslist: windows executable: Kunoichi_NEW.exe type: none -'1074280': +"1074280": installDir: Oirbo launch: - executable: Oirbo.exe -'1074300': +"1074300": installDir: Dragon Castle The Board Game launch: - config: @@ -26687,22 +26445,22 @@ oslist: macos executable: DragonCastle.app type: default -'1074310': +"1074310": installDir: The Real Man Summer Championship 2019 launch: - config: oslist: windows executable: SO2019.exe type: default -'1074330': +"1074330": installDir: Minesweeper peak VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Minesweeper.exe type: vr -'1074340': +"1074340": installDir: Viking Sisters launch: - config: @@ -26711,44 +26469,44 @@ type: default - config: oslist: macos - executable: Viking Sisters.app\\Contents\\MacOS\\VS_mac + executable: "Viking Sisters.app\\\\Contents\\\\MacOS\\\\VS_mac" type: default -'1074350': +"1074350": installDir: That Red Button launch: - config: oslist: windows executable: ThatRedButton.exe type: default -'1074370': +"1074370": installDir: Spherecraft launch: - executable: Spherecraft.exe type: none -'1074390': +"1074390": installDir: Scikor - Final Scale launch: - config: oslist: windows executable: Scikor_FinalScale.exe type: default -'1074400': +"1074400": installDir: Herman 2 launch: - config: oslist: windows executable: Herman 2.exe type: default -'1074490': {} -'1074500': +"1074490": {} +"1074500": installDir: Cranked Up launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: CrankedUp.exe type: default -'1074510': +"1074510": installDir: Beekeeper launch: - config: @@ -26763,12 +26521,12 @@ oslist: linux executable: Beekeeper type: default -'1074520': - installDir: A Sceptic's Guide to Magic +"1074520": + installDir: "A Sceptic's Guide to Magic" launch: - executable: nw.exe type: none -'1074530': +"1074530": installDir: gotokotodelux launch: - config: @@ -26780,8 +26538,8 @@ executable: gotokotojapneseenglish.app type: none nameLocalized: - english: Goto Family's- ''The Island Murder Case'' -'1074550': + english: "Goto Family's- ''The Island Murder Case''" +"1074550": installDir: Pon Para and the Great Southern Labyrinth launch: - config: @@ -26796,26 +26554,26 @@ oslist: linux executable: PonParaAndTheGreatSouthernLabyrinth type: none -'1074610': +"1074610": installDir: Collapsed launch: - config: oslist: windows executable: Collapsed.exe type: default -'1074620': +"1074620": installDir: Adore launch: - config: oslist: windows executable: Adore.exe type: default -'1074630': +"1074630": installDir: Call Of Unity launch: - executable: Call Of Unity.exe type: none -'1074640': +"1074640": installDir: Diorama Dungeoncrawl launch: - config: @@ -26826,102 +26584,102 @@ oslist: macos executable: DioramaDungeoncrawl.app type: none -'1074670': {} -'1074680': +"1074670": {} +"1074680": installDir: Bikini Island Challenge launch: - config: oslist: windows executable: Bikini Island Challenge.exe type: default -'1074690': +"1074690": installDir: Robot Female Hero 2 launch: - config: oslist: windows executable: Game.exe type: default -'1074700': - installDir: Witches' Legacy The Charleston Curse Collector's Edition +"1074700": + installDir: "Witches' Legacy The Charleston Curse Collector's Edition" launch: - config: oslist: windows executable: WitchesLegacy_TheCharlestonCurseCE.exe type: default -'1074770': +"1074770": installDir: The Rescue of Mermaids launch: - config: oslist: windows executable: nw.exe type: default -'1074830': {} -'1074840': +"1074830": {} +"1074840": installDir: Grindzones launch: - config: oslist: windows executable: GrindZones.exe type: default -'1074860': +"1074860": installDir: Click Defense launch: - config: oslist: windows executable: click-defense.exe type: default -'1074960': {} -'1074990': {} -'1075000': +"1074960": {} +"1074990": {} +"1075000": installDir: Beyond the Stars VR launch: - config: oslist: windows executable: LAUNCHIntroVR.exe type: vr -'1075080': +"1075080": installDir: Falcon Age launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Automatic VR detection executable: FalconAge.exe type: default - arguments: OPENVR config: - osarch: '64' + osarch: "64" oslist: windows executable: FalconAge.exe type: vr - arguments: OCULUSVR config: - osarch: '64' + osarch: "64" oslist: windows executable: FalconAge.exe type: othervr - arguments: NOVR config: - osarch: '64' + osarch: "64" oslist: windows description: Launch with VR detection disabled executable: FalconAge.exe type: none -'1075120': +"1075120": installDir: OldDays launch: - config: oslist: windows executable: OldDays.exe type: default -'1075140': +"1075140": installDir: Super Friends Party launch: - config: oslist: windows executable: SuperFriendsParty.exe type: default -'1075170': +"1075170": installDir: Weaving Tides launch: - config: @@ -26932,11 +26690,11 @@ oslist: macos executable: Weaving Tides.app type: none -'1075190': +"1075190": installDir: A Game of Thrones The Board Game launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: AGameOfThronesTheBoardGame.exe type: none @@ -26944,7 +26702,7 @@ oslist: macos executable: AGameOfThronesTheBoardGame.app type: none -'1075200': +"1075200": installDir: TOHU launch: - config: @@ -26955,16 +26713,16 @@ oslist: macos executable: tohu.app type: default -'1075350': {} -'1075370': +"1075350": {} +"1075370": installDir: Skywalk launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Skywalk.exe type: default -'1075390': +"1075390": installDir: Cafe Crush launch: - config: @@ -26975,15 +26733,15 @@ oslist: macos executable: CafeCrush.app type: default -'1075400': +"1075400": installDir: Doctor Who The Edge Of Time launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: DoctorWhoTheEdgeOfTime.exe type: vr -'1075430': +"1075430": installDir: Cowpocalypse launch: - config: @@ -26992,14 +26750,14 @@ type: none - executable: game.exe type: none -'1075480': +"1075480": installDir: Summer Rush launch: - config: oslist: windows executable: SummerRush.exe type: default -'1075550': +"1075550": installDir: Bite the Bullet launch: - config: @@ -27012,17 +26770,17 @@ type: default - config: oslist: macos - executable: BiteTheBullet.app\\Contents\\MacOS\\Mac + executable: "BiteTheBullet.app\\\\Contents\\\\MacOS\\\\Mac" type: default -'1075570': +"1075570": installDir: Transcender Starship launch: - config: oslist: windows executable: TranscenderStarship.exe type: default -'1075580': {} -'1075740': +"1075580": {} +"1075740": installDir: BannersOfRuin launch: - config: @@ -27030,62 +26788,62 @@ executable: BannersOfRuin.exe type: default nameLocalized: - japanese: 'バナーオブルイン: 破滅の戦旗' + japanese: "バナーオブルイン: 破滅の戦旗" schinese: 废墟战旗 -'1075750': - installDir: Reflections of Life Equilibrium Collector's Edition +"1075750": + installDir: "Reflections of Life Equilibrium Collector's Edition" launch: - config: oslist: windows executable: RoL_Equilibrium_CE.exe type: default -'1075790': +"1075790": installDir: Fox and Bunny launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: nw.exe type: none - config: - osarch: '32' + osarch: "32" oslist: windows executable: nw.exe type: none -'1075830': {} -'1075900': {} -'1075910': +"1075830": {} +"1075900": {} +"1075910": installDir: Space Bomb launch: - config: oslist: windows executable: Space Bomb.exe type: default -'1075980': +"1075980": installDir: NinNinDays launch: - config: oslist: windows executable: NinNinDays.exe type: none -'107600': +"107600": installDir: Waves launch: - description: Fullscreen Mode - executable: Binaries\\Win32\\Waves.exe + executable: "Binaries\\\\Win32\\\\Waves.exe" type: default - - arguments: '-windowed' + - arguments: "-windowed" description: Windowed Mode - executable: Binaries\\Win32\\Waves.exe + executable: "Binaries\\\\Win32\\\\Waves.exe" type: none -'1076020': +"1076020": installDir: VIROMOVE launch: - config: oslist: windows executable: ViroMove.exe type: vr -'1076040': +"1076040": installDir: WTC OVN 1 launch: - config: @@ -27100,28 +26858,28 @@ oslist: macos executable: WelcomeToChichesterOVN1.app type: default -'1076050': +"1076050": installDir: Run Jump Rabbit Turtle launch: - config: oslist: windows executable: RJRT.exe type: default -'1076060': +"1076060": installDir: Stick Ninja launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: MyProject2.exe type: default -'1076070': +"1076070": installDir: AliceAndYouInThePlanetOfNumber launch: - executable: AaY_InThePlanetOfNumber.exe type: none -'1076100': - installDir: Illusion of L'Phalcia +"1076100": + installDir: "Illusion of L'Phalcia" launch: - config: oslist: windows @@ -27129,7 +26887,7 @@ type: none nameLocalized: japanese: レファルシアの幻影 -'1076110': +"1076110": installDir: Asdivine Menace launch: - config: @@ -27138,7 +26896,7 @@ type: none nameLocalized: japanese: アスディバインメナス -'1076120': +"1076120": installDir: Dwarven Skykeep launch: - config: @@ -27151,7 +26909,7 @@ type: default nameLocalized: schinese: 矮人通天塔 -'1076130': +"1076130": installDir: fox_soldier launch: - config: @@ -27160,20 +26918,20 @@ type: none nameLocalized: schinese: 超战星空霸王龙 -'1076140': +"1076140": installDir: Super Indie Square launch: - config: oslist: windows executable: nw.exe type: default -'1076160': +"1076160": installDir: Command - Modern Operations launch: - executable: Launcher.exe type: default -'1076180': {} -'1076200': +"1076180": {} +"1076200": installDir: Roguebook launch: - config: @@ -27181,18 +26939,18 @@ executable: Roguebook.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Roguebook type: none - config: oslist: macos - executable: Roguebook.app\\Contents\\MacOS\\Roguebook + executable: "Roguebook.app\\\\Contents\\\\MacOS\\\\Roguebook" type: none nameLocalized: schinese: 魔域之书 tchinese: 魔域之书 -'1076210': +"1076210": installDir: Who wants to strip this babe Hentai Streamer Girl launch: - config: @@ -27203,36 +26961,36 @@ oslist: linux executable: HStreamerLinux.x86_64 type: none -'1076230': +"1076230": installDir: OmniFootman launch: - config: oslist: windows executable: Footman.exe type: default -'1076280': +"1076280": installDir: Showdown Bandit launch: - config: oslist: windows executable: Showdown Bandit.exe type: none -'1076290': +"1076290": installDir: ThePoisoner launch: - config: oslist: windows executable: ThePoisoner.exe type: vr -'1076300': +"1076300": installDir: The Battles of Spwak launch: - config: oslist: windows executable: Game.exe type: default -'1076320': {} -'1076350': +"1076320": {} +"1076350": installDir: Sky Realm Essences launch: - config: @@ -27245,28 +27003,28 @@ description: Launch executable: Game.app type: option1 -'1076360': +"1076360": installDir: Square Weapons Dungeon launch: - config: oslist: windows executable: swd.exe type: default -'1076410': +"1076410": installDir: VRRCC launch: - config: oslist: windows executable: VRRCC.exe type: vr -'1076450': +"1076450": installDir: Grimalkin Solar Defense Force launch: - config: oslist: windows executable: GSDF.exe type: default -'1076480': +"1076480": installDir: Dream Flash launch: - config: @@ -27277,34 +27035,34 @@ oslist: macos executable: Dream Flash.app type: none -'1076500': +"1076500": installDir: Valgrave Immortal Plains launch: - config: oslist: windows executable: BattleRoyale.exe type: none -'1076520': {} -'1076530': +"1076520": {} +"1076530": installDir: Drop launch: - executable: drop.exe type: none -'1076550': +"1076550": installDir: SAMURAI SHODOWN V SPECIAL launch: - config: oslist: windows executable: SSVS.exe type: default -'1076600': +"1076600": installDir: Red Gate launch: - config: oslist: windows - executable: '${redagate}.exe' + executable: "${redagate}.exe" type: none -'1076610': +"1076610": installDir: Guardian of the future launch: - config: @@ -27319,7 +27077,7 @@ oslist: macos executable: GuardianOfTheFuture.app type: none -'1076620': +"1076620": installDir: Svoboda 1945 launch: - config: @@ -27328,28 +27086,28 @@ type: default - config: oslist: macos - executable: Svoboda1945.app\\Contents\\MacOS\\Svoboda1945 + executable: "Svoboda1945.app\\\\Contents\\\\MacOS\\\\Svoboda1945" type: default - config: oslist: linux executable: Svoboda1945 type: default -'1076640': +"1076640": installDir: Cricket Captain 2019 launch: - config: oslist: windows executable: CricketCaptain.exe type: none -'1076720': {} -'1076730': +"1076720": {} +"1076730": installDir: Attached launch: - config: oslist: windows executable: Attached.exe type: default -'1076750': +"1076750": installDir: Dream Engines Nomad Cities launch: - config: @@ -27360,7 +27118,7 @@ japanese: ドリームエンジンズ 〜旅する都市〜 schinese: 梦幻引擎:游牧城市 tchinese: 夢幻引擎:游牧城市 -'1076770': +"1076770": installDir: ACardShooter launch: - config: @@ -27375,54 +27133,54 @@ oslist: macos executable: acs.app/Contents/MacOS/acs type: default -'1076780': +"1076780": installDir: WordKiller Revolution launch: - config: oslist: windows executable: WordKillerRevolution.exe type: none -'1076830': +"1076830": installDir: Quest For Wartorn Brotherhood launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Quest for Wartorn Brotherhood.exe type: default -'1076880': +"1076880": installDir: Air Marty launch: - - arguments: '--disable-devtools' + - arguments: "--disable-devtools" config: - osarch: '64' + osarch: "64" oslist: windows executable: nw.exe type: default - - arguments: '--disable-devtools' + - arguments: "--disable-devtools" config: - osarch: '32' + osarch: "32" oslist: windows executable: nw.exe type: default - - arguments: '--disable-devtools' + - arguments: "--disable-devtools" config: oslist: macos executable: flightsim.app type: default - - arguments: '--disable-devtools' + - arguments: "--disable-devtools" config: - osarch: '64' + osarch: "64" oslist: linux executable: nw type: default - - arguments: '--disable-devtools' + - arguments: "--disable-devtools" config: - osarch: '32' + osarch: "32" oslist: linux executable: nw type: default -'1076920': +"1076920": installDir: Generals & Rulers launch: - config: @@ -27433,16 +27191,16 @@ oslist: macos executable: Generals.app type: default -'1076940': +"1076940": installDir: Contract Work launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ContractWork.exe type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: ContractWork type: none @@ -27450,45 +27208,45 @@ oslist: macos executable: ContractWork.app type: none -'1076950': +"1076950": installDir: Sniper Commando Strike launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SniperCommandoAttack.exe type: none -'1076970': {} -'1076980': {} -'1077010': {} -'1077030': +"1076970": {} +"1076980": {} +"1077010": {} +"1077030": installDir: Chernomeat Survival Game launch: - config: oslist: windows executable: Chernomeat Survival Game.exe type: default -'1077090': +"1077090": installDir: Bucket Knight launch: - config: oslist: windows executable: BucketKnight.exe type: default -'1077140': {} -'1077150': +"1077140": {} +"1077150": installDir: Planet Jump 2 launch: - config: oslist: windows executable: Planet Jump 2.exe type: default -'1077160': +"1077160": installDir: Game Of Puzzles Animals launch: - executable: GOPanimals.exe type: none -'1077200': +"1077200": installDir: AttackOfTheRetroBots launch: - config: @@ -27501,70 +27259,70 @@ description: AttackOfTheRetroBots executable: AttackOfTheRetroBots.exe type: vr -'1077230': +"1077230": installDir: Dissolving launch: - config: oslist: windows executable: Dissolving.exe type: default -'1077250': +"1077250": installDir: Age of Pixels launch: - - arguments: '-windowed' + - arguments: "-windowed" config: oslist: windows executable: Explore.exe type: default -'1077290': +"1077290": installDir: SuperSmash launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: \\SuperSmash\\SuperSmash.exe + executable: "\\\\SuperSmash\\\\SuperSmash.exe" type: none -'1077300': {} -'1077320': - installDir: 'sarah, youarewaytooheavy' +"1077300": {} +"1077320": + installDir: "sarah, youarewaytooheavy" launch: - config: oslist: windows executable: Gplay.exe type: none -'1077330': +"1077330": installDir: Ivanoile Corruption Christalixeur launch: - config: oslist: windows - executable: IvanoilChristalixeur\\IvanoilChristalixeur.exe + executable: "IvanoilChristalixeur\\\\IvanoilChristalixeur.exe" type: default - config: oslist: linux - executable: IvanoilChristalixeur\\IvanoilChristalixeur.sh + executable: "IvanoilChristalixeur\\\\IvanoilChristalixeur.sh" type: default - config: oslist: macos - executable: IvanoilChristalixeur\\IvanoilChristalixeur.app + executable: "IvanoilChristalixeur\\\\IvanoilChristalixeur.app" type: default nameLocalized: french: Ivanoile ~ La Corruption d’uni Christalixeur -'1077340': +"1077340": installDir: Downtown Drift launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Downtown Drift.exe type: default -'1077360': +"1077360": installDir: Sub Chase Online launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: subchase-client-v2.13.0.0.exe -'1077390': +"1077390": installDir: Cannibal Chickens launch: - config: @@ -27575,19 +27333,19 @@ oslist: macos executable: Cannibal Chickens.exe type: none -'1077420': +"1077420": installDir: Ambidangerous launch: - config: oslist: windows executable: ambidangerous.exe type: default -'1077430': - installDir: There's a Butcher Around +"1077430": + installDir: "There's a Butcher Around" launch: - - executable: There's a Butcher Around.exe + - executable: "There's a Butcher Around.exe" type: none -'1077440': +"1077440": installDir: Card Dungeon launch: - config: @@ -27598,7 +27356,7 @@ oslist: windows executable: CardDungeon.exe type: default -'1077450': +"1077450": installDir: Wally and the FANTASTIC PREDATORS launch: - config: @@ -27606,7 +27364,7 @@ executable: Wally and the FANTASTIC PREDATORS!.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: run.sh type: default @@ -27625,7 +27383,7 @@ russian: УОЛЛИ schinese: 沃利 spanish: Wally -'1077470': +"1077470": installDir: Syntherapy launch: - config: @@ -27640,18 +27398,18 @@ oslist: linux executable: Syntherapy_GOLD type: default -'1077490': +"1077490": installDir: Guns of Midnight launch: - config: oslist: windows executable: Guns of Midnight.exe type: default -'1077510': +"1077510": installDir: Breaking Box launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: BreakingBox.exe type: default @@ -27662,14 +27420,14 @@ nameLocalized: sc_schinese: 盒裂变 schinese: 盒裂变 -'1077520': +"1077520": installDir: The Light Remake launch: - config: oslist: windows executable: Light Remake.exe type: none -'1077530': +"1077530": installDir: BUILD launch: - config: @@ -27680,21 +27438,21 @@ oslist: windows executable: BUILD/BUILD.exe type: none -'1077540': +"1077540": installDir: 酒店2 The Hotel 2 launch: - config: oslist: windows executable: Game.exe type: none -'1077550': +"1077550": installDir: Jump with Friends launch: - config: oslist: windows executable: Game.exe type: default -'1077560': +"1077560": installDir: 무연 launch: - config: @@ -27705,20 +27463,20 @@ oslist: macos executable: Contents/MacOS/Mac_Runner type: default -'1077570': +"1077570": installDir: Neverland Treasure launch: - config: oslist: windows executable: neverland_treasure.exe type: default -'1077580': {} -'1077600': +"1077580": {} +"1077600": installDir: Song Beater launch: - executable: Song Beater.exe type: vr -'1077630': +"1077630": installDir: Australian Football Coach 2020 launch: - config: @@ -27732,16 +27490,16 @@ executable: AFC.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: AFC2019 type: default - config: oslist: macos - executable: AFC2019.app\\Contents\\MacOS\\AFC2019 + executable: "AFC2019.app\\\\Contents\\\\MacOS\\\\AFC2019" type: default -'1077670': {} -'1077680': +"1077670": {} +"1077680": installDir: MadCowBalls2 launch: - config: @@ -27761,38 +27519,38 @@ - description: Safe mode (No game launcher) executable: MadCowBalls2.exe type: safemode -'1077730': +"1077730": installDir: HRDINA launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: DLC.exe type: default -'1077760': +"1077760": installDir: AGENT 00111 launch: - config: oslist: windows executable: Agent 00111.exe type: default -'1077860': {} -'1077880': {} -'1077890': +"1077860": {} +"1077880": {} +"1077890": installDir: Catch a Duck launch: - config: oslist: windows executable: Catch a Duck.exe type: default -'1077970': +"1077970": installDir: Dry Drowning launch: - config: oslist: windows executable: Dry Drowning.exe type: none -'107800': +"107800": installDir: Rochard launch: - config: @@ -27804,7 +27562,7 @@ - config: oslist: linux executable: Rochard -'1078000': +"1078000": installDir: Gamecraft launch: - config: @@ -27819,41 +27577,41 @@ betakey: developer executable: Gamecraft.exe type: default -'1078040': - installDir: BRG's Red Riding Hood Visual Novel +"1078040": + installDir: "BRG's Red Riding Hood Visual Novel" launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows executable: nw.exe type: default -'1078060': - installDir: BRG's The Stonecutter Visual Novel +"1078060": + installDir: "BRG's The Stonecutter Visual Novel" launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows executable: nw.exe type: default -'1078080': +"1078080": installDir: DISONANTE launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Disonante.exe type: none -'1078090': {} -'1078130': +"1078090": {} +"1078130": installDir: Cannon Arena launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: CannonArena.exe type: default -'1078140': {} -'1078200': +"1078140": {} +"1078200": installDir: Spirits Abyss launch: - config: @@ -27861,10 +27619,10 @@ description: Launch executable: Spirits Abyss.exe type: default -'1078210': {} -'1078240': {} -'1078270': {} -'1078280': +"1078210": {} +"1078240": {} +"1078270": {} +"1078280": installDir: Ruins Seeker launch: - executable: Game.exe @@ -27873,7 +27631,7 @@ japanese: ルインズシーカー schinese: 遗迹探索者 tchinese: 遺跡探索者 -'1078320': +"1078320": installDir: Public Defense Corp launch: - executable: Game.exe @@ -27881,35 +27639,35 @@ nameLocalized: japanese: 民間正義会社2 schinese: 民间正义联盟2 - tchinese: ' 民間正義聯盟2' -'1078330': + tchinese: " 民間正義聯盟2" +"1078330": installDir: Liz ~The Tower and the Grimoire~ launch: - executable: Game.exe type: default - config: betakey: testing - ownsdlc: '1240200' + ownsdlc: "1240200" description: Official Liz Cosplay by Elizabeth Rage - executable: Liz Cosplay\\01.JPG + executable: "Liz Cosplay\\\\01.JPG" type: option1 nameLocalized: japanese: XVI ~塔の町のリズ~ schinese: 高塔之城的莉兹 tchinese: 高塔之城的莉茲 -'1078340': +"1078340": installDir: Mongrel launch: - config: oslist: windows executable: Mongrel type: default -'1078350': +"1078350": installDir: Ambrosia launch: - executable: Game.exe type: none -'1078370': +"1078370": installDir: Succubus x Saint launch: - executable: Game.exe @@ -27917,7 +27675,7 @@ nameLocalized: japanese: サキュバス × セイント~ 魔性の女の悦びの宴 ~ schinese: 魅魔之宴与愉悦的圣女 -'1078380': +"1078380": installDir: Zefira launch: - executable: Game.exe @@ -27925,17 +27683,17 @@ nameLocalized: schinese: 新婚妻子泽菲拉 tchinese: 新婚妻子澤菲拉 -'1078390': {} -'1078420': +"1078390": {} +"1078420": installDir: Critters for Sale launch: - config: - osarch: '64' + osarch: "64" oslist: linux executable: CrittersForSale.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: CrittersForSale.x86 type: default @@ -27943,29 +27701,29 @@ oslist: windows executable: CrittersForSale.exe type: default -'1078450': +"1078450": installDir: Falnarion Tactics II launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows executable: game.exe type: default -'1078460': +"1078460": installDir: Cops Kissing Each Other launch: - config: oslist: windows executable: copskissing.exe -'1078490': +"1078490": installDir: SeedHunter launch: - config: oslist: windows executable: SeedHunter.exe type: default -'1078500': {} -'1078510': +"1078500": {} +"1078510": installDir: Alluris launch: - config: @@ -27976,15 +27734,15 @@ oslist: macos executable: Adventure.app type: default -'1078520': +"1078520": installDir: Ghost Stories launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Ghost Stories.exe type: default -'1078550': +"1078550": installDir: Voltron Cubes of Olkarion launch: - config: @@ -27995,49 +27753,49 @@ oslist: macos executable: Cubes of Olkarion.app/Contents/MacOS/Cubes of Olkarion type: default -'1078560': +"1078560": installDir: Turok Escape from Lost Valley launch: - config: oslist: windows executable: Turok Escape From Lost Valley.exe type: default -'1078590': +"1078590": installDir: The Illusory abyss launch: - config: oslist: windows executable: Game.exe type: none -'1078610': {} -'1078640': +"1078610": {} +"1078640": installDir: Eggoria launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: Eggoria.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: Eggoria.exe type: default -'1078670': +"1078670": installDir: Another Dawn launch: - config: oslist: windows executable: Another Dawn.exe type: default -'1078730': +"1078730": installDir: Soccer Manager 2020 launch: - config: oslist: windows executable: SM20.exe type: none -'1078750': +"1078750": installDir: Duskless The Clockwork Army launch: - config: @@ -28046,28 +27804,28 @@ type: default - config: oslist: macos - executable: Duskless_TheClockworkArmy.app\\Contents\\MacOS\\Duskless_TheClockworkArmy + executable: "Duskless_TheClockworkArmy.app\\\\Contents\\\\MacOS\\\\Duskless_TheClockworkArmy" type: default -'1078760': +"1078760": installDir: MMS21 launch: - config: - osarch: '64' + osarch: "64" executable: MMS21.exe type: default -'1078770': +"1078770": installDir: ND_Cataclysm launch: - config: oslist: windows executable: NewDay.exe type: none -'1078780': +"1078780": installDir: Martians Vs Robots launch: - executable: Martians Vs Robots.exe type: none -'1078800': +"1078800": installDir: U-BOOT The Board Game launch: - config: @@ -28078,46 +27836,46 @@ oslist: macos executable: U-BOOT The Board Game.app type: default -'1078820': +"1078820": installDir: Horresco Referens launch: - config: oslist: macos - executable: Horresco Referens.app\\Contents\\MacOS\\Horresco Referens + executable: "Horresco Referens.app\\\\Contents\\\\MacOS\\\\Horresco Referens" type: default - config: - osarch: '64' + osarch: "64" oslist: windows - executable: Horresco Referens\\Horresco Referens.exe + executable: "Horresco Referens\\\\Horresco Referens.exe" type: default - config: - osarch: '32' + osarch: "32" oslist: windows - executable: Horresco Referens\\Horresco Referens.exe + executable: "Horresco Referens\\\\Horresco Referens.exe" type: default -'1078870': +"1078870": installDir: SHEEP.IO launch: - config: oslist: windows executable: SHEEP.IO.exe type: default -'1078920': +"1078920": installDir: Main Assembly launch: - config: oslist: windows executable: MainAssembly.exe type: default -'1078930': +"1078930": installDir: Fatty Space launch: - config: oslist: windows executable: Fatty Space.exe type: default -'1078950': - installDir: '打豹虎 [Spider Derby]' +"1078950": + installDir: "打豹虎 [Spider Derby]" launch: - config: oslist: windows @@ -28125,35 +27883,35 @@ type: none - config: oslist: macos - executable: SPF.app\\Contents\\MacOS\\SPF + executable: "SPF.app\\\\Contents\\\\MacOS\\\\SPF" type: none nameLocalized: schinese: 打豹虎 tchinese: 打豹虎 -'1078960': +"1078960": installDir: NinoIsekai launch: - config: oslist: windows executable: NinoIsekai.exe type: none -'1078970': - installDir: 局外人 L'Etranger +"1078970": + installDir: "局外人 L'Etranger" launch: - config: oslist: windows - executable: L'etranger.exe + executable: "L'etranger.exe" type: default - config: oslist: macos - executable: L'etranger.app\\Contents\\MacOS\\BKEngine + executable: "L'etranger.app\\\\Contents\\\\MacOS\\\\BKEngine" type: default -'107900': +"107900": installDir: WarIncBattleZone launch: - - arguments: '-steam' + - arguments: "-steam" executable: rsupdate.exe -'1079000': +"1079000": installDir: Ord launch: - config: @@ -28165,7 +27923,7 @@ executable: Ord.app/Contents/MacOS/Ord type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Ord.x86_64 type: default @@ -28179,23 +27937,23 @@ executable: workshop/Ord Workshop.app/Contents/MacOS/Ord Workshop type: editor - config: - osarch: '64' + osarch: "64" oslist: linux executable: workshop/Ord Workshop.x86_64 type: editor -'1079040': {} -'1079050': +"1079040": {} +"1079050": installDir: LaserPaddles launch: - config: oslist: windows executable: LaserPaddles.exe type: default -'1079060': {} -'1079100': {} -'1079110': {} -'1079150': {} -'1079160': +"1079060": {} +"1079100": {} +"1079110": {} +"1079150": {} +"1079160": installDir: th17 launch: - executable: th17.exe @@ -28205,22 +27963,22 @@ nameLocalized: english: Touhou Kikeijuu ~ Wily Beast and Weakest Creature. japanese: 東方鬼形獣 〜 Wily Beast and Weakest Creature. -'1079200': +"1079200": installDir: Piko Piko launch: - config: oslist: windows executable: nw.exe type: default -'1079210': +"1079210": installDir: Spark the Electric Jester 2 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SparkTwo.exe type: default -'1079230': +"1079230": installDir: Himno The Silent Melody launch: - config: @@ -28235,7 +27993,7 @@ oslist: linux executable: Himno The Silent Melody.x86_64 type: default -'1079260': +"1079260": installDir: Fireworks Mania launch: - config: @@ -28243,36 +28001,36 @@ description: Default executable: Fireworks Mania.exe type: default -'1079310': +"1079310": installDir: Elemental Girls launch: - executable: Elemental Girls.exe type: none -'1079330': +"1079330": installDir: WelcomeToCathouse launch: - config: oslist: windows executable: WelcomeToCathouse.exe type: default -'1079340': +"1079340": installDir: homicide launch: - config: oslist: windows executable: game.exe type: default -'1079420': +"1079420": installDir: Wheelie King VR launch: - - executable: Wheelie King VR\\Wheelie King VR.exe + - executable: "Wheelie King VR\\\\Wheelie King VR.exe" type: vr -'1079430': +"1079430": installDir: Surrounded by mice launch: - executable: Game.exe type: default -'1079440': +"1079440": installDir: Bad Business launch: - config: @@ -28280,12 +28038,12 @@ executable: Bad Business.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: BadBusiness.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: BadBusiness.x86_64 type: default @@ -28293,7 +28051,7 @@ oslist: macos executable: BadBusiness.app type: default -'1079450': +"1079450": installDir: Escape Lala 2 launch: - config: @@ -28308,94 +28066,94 @@ oslist: linux executable: Escape Lala 2.x64 type: none -'1079470': +"1079470": installDir: Chronac launch: - config: oslist: windows executable: Chronac.exe type: default -'1079480': +"1079480": installDir: BeiJing Courier Simulator launch: - executable: Game.exe type: none -'1079510': +"1079510": installDir: Sumerians launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Sumerians.exe type: default -'1079550': +"1079550": installDir: EscapeAgain launch: - executable: EscapeAgain.exe type: default -'1079560': +"1079560": installDir: ZeroStrain launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ZeroStrain.exe type: default -'1079570': +"1079570": installDir: Staden under Gamlestaden launch: - config: oslist: windows executable: NL-2019-05-01T1620-steam-release-candidate-v1.exe type: default -'1079600': +"1079600": installDir: E06-Anomaly launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: E06.exe type: default -'1079610': +"1079610": installDir: Counterspell launch: - config: oslist: windows executable: Counterspell.exe type: default -'1079620': +"1079620": installDir: Infinity Battlescape launch: - - arguments: '-steam' + - arguments: "-steam" config: betakey: Beta - osarch: '64' + osarch: "64" oslist: windows - executable: Bin\\Infinity Battlescape.exe + executable: "Bin\\\\Infinity Battlescape.exe" type: default - workingdir: Bin\\ -'1079630': + workingdir: "Bin\\\\" +"1079630": installDir: Death Jump launch: - executable: Death Jump.exe type: none -'1079720': +"1079720": installDir: PUZZLE ULTIMATE launch: - config: oslist: windows executable: PUZZLE ULTIMATE.exe type: default -'1079730': +"1079730": installDir: Ehandcipation launch: - config: oslist: windows executable: Ehandcipation.exe type: default -'1079740': {} -'1079760': {} -'1079780': +"1079740": {} +"1079760": {} +"1079780": installDir: Dark Space Conqueror launch: - config: @@ -28403,118 +28161,118 @@ description: Instalador de Dark Space Conqueror executable: com.darkspaceconqueror.prod.exe type: none -'1079790': +"1079790": installDir: Orc Colony launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: OrcColony.exe type: none -'1079800': +"1079800": installDir: Pistol Whip launch: - config: oslist: windows executable: Pistol Whip.exe type: vr -'1079810': +"1079810": installDir: KreisReise launch: - executable: Kreisreise.exe type: none -'1079830': +"1079830": installDir: Cris Tales launch: - - arguments: '-screen-fullscreen 1 -screen-height 1080 -screen-width 1920' + - arguments: "-screen-fullscreen 1 -screen-height 1080 -screen-width 1920" config: oslist: windows executable: Cristales.exe type: default nameLocalized: schinese: 水晶传说 Cris Tales -'1079870': - installDir: Otiiz's adventure 2 +"1079870": + installDir: "Otiiz's adventure 2" launch: - config: oslist: windows executable: OtiizAdventure2.exe type: default -'1079890': +"1079890": installDir: Happy World launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ClayPlay.exe type: default -'1079910': +"1079910": installDir: BloXoR launch: - config: oslist: windows executable: BloXoR.exe type: default -'1079940': +"1079940": installDir: Hippocampus launch: - config: oslist: windows executable: Hippocampus.exe type: default -'1079970': +"1079970": installDir: Mundus - Impossible Universe 2 launch: - config: oslist: windows executable: Mundus2.exe type: default -'1080020': +"1080020": installDir: Electrician Simulator launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Electrician.exe type: default nameLocalized: schinese: 电工模拟器 -'1080040': +"1080040": installDir: Moo Lander launch: - config: oslist: windows executable: Moo Lander.exe -'1080060': +"1080060": installDir: Axan Ships - Low Poly launch: - config: oslist: windows executable: Axan_Ships.exe type: default -'1080090': +"1080090": installDir: Project ONe launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows executable: Game.exe type: none - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows - ownsdlc: '1098880' + ownsdlc: "1098880" description: DLC起動 - executable: dlc\\TouhouGame.exe + executable: "dlc\\\\TouhouGame.exe" type: none - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows - ownsdlc: '1128230' + ownsdlc: "1128230" description: Taiko Simulator - executable: dlc2\\Taiko.exe + executable: "dlc2\\\\Taiko.exe" type: none -'1080110': +"1080110": installDir: F1 2020 launch: - config: @@ -28527,42 +28285,42 @@ description: F1 2020 (DirectX 11) executable: F1_2020.exe type: option2 -'1080120': +"1080120": installDir: FinalAdventure launch: - config: oslist: windows executable: Game.exe type: default -'1080130': +"1080130": installDir: QuietMansion2 launch: - executable: QuietMansion2.exe type: none -'1080150': {} -'1080180': +"1080150": {} +"1080180": installDir: Love Is In The Space launch: - config: oslist: windows executable: LoveIsInTheSpace.exe type: default -'1080240': - installDir: It's Raining Fists and Metal +"1080240": + installDir: "It's Raining Fists and Metal" launch: - config: oslist: windows - executable: It's Raining Fists and Metal.exe + executable: "It's Raining Fists and Metal.exe" type: default - config: oslist: macos - executable: ItsRainingFistsAndMetal.app\\Contents\\MacOS\\ItsRainingFistsAndMetal + executable: "ItsRainingFistsAndMetal.app\\\\Contents\\\\MacOS\\\\ItsRainingFistsAndMetal" type: default - config: oslist: linux executable: ItsRainingFistsAndMetal.x86_64 type: default -'1080250': +"1080250": installDir: Fool! launch: - config: @@ -28577,96 +28335,96 @@ oslist: linux executable: Fool type: none -'1080290': +"1080290": installDir: Tシミュレータ launch: - config: oslist: windows executable: Tシミュレーター.exe type: default -'1080310': +"1080310": installDir: Humans101 launch: - executable: Humanz.exe type: vr -'1080330': +"1080330": installDir: SM Space Blaster Sp launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: SuperMegaSpaceBlasterSpecial.exe type: default - config: oslist: macos - executable: SMSBSpMac.app\\Contents\\MacOS\\SMSBSpMac + executable: "SMSBSpMac.app\\\\Contents\\\\MacOS\\\\SMSBSpMac" type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: SuperMegaSpaceBlasterSpecial.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: SuperMegaSpaceBlasterSpecial.x86_64 type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: SuperMegaSpaceBlasterSpecial.exe type: default -'1080360': +"1080360": installDir: Rampart Tactics launch: - config: oslist: windows executable: Rampart_Tactics.exe type: default -'1080370': +"1080370": installDir: DiveWithSylviaVR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: DiveWithSylvia_VR.exe type: vr -'1080410': - installDir: Bake 'n Switch +"1080410": + installDir: "Bake 'n Switch" launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: BNS.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: BNS.sh type: default -'1080440': +"1080440": installDir: Dark Blood launch: - config: oslist: windows executable: Dark Blood.exe type: default -'1080450': +"1080450": installDir: Wayward Strand launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: WaywardStrand.exe type: default -'1080490': +"1080490": installDir: georifters launch: - config: oslist: windows executable: Georifters.exe type: none -'1080630': +"1080630": installDir: Hero Express launch: - config: @@ -28677,14 +28435,14 @@ oslist: macos executable: HeroExpress.app type: default -'1080670': {} -'1080680': +"1080670": {} +"1080680": installDir: Cold Shell launch: - executable: win64/Cold Shell.exe nameLocalized: schinese: 冰冷躯壳:Cold Shell -'1080700': +"1080700": installDir: Swordbreaker Origins launch: - config: @@ -28692,15 +28450,15 @@ executable: SwordBreakerOrigin.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: SwordBreakerOriginLinux.x86_64 type: default -'1080750': +"1080750": installDir: Mutazione launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: mutazione.exe type: default @@ -28716,7 +28474,7 @@ oslist: linux executable: mutazione.x86_64 type: default -'1080780': +"1080780": installDir: reyal launch: - config: @@ -28741,7 +28499,7 @@ description: in 1920x1080 Window executable: reyal.exe type: option3 -'1080790': +"1080790": installDir: Jack-In-A-Castle launch: - config: @@ -28752,32 +28510,32 @@ oslist: linux executable: JackInACastle_2.0.sh type: default -'1080930': +"1080930": installDir: The Incredible Adventures of Super Panda launch: - config: oslist: windows - executable: Super Panda's Incredible Adventure.exe + executable: "Super Panda's Incredible Adventure.exe" type: default -'1080950': +"1080950": installDir: Kaos launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: WindowsNoEditor\\Kaos64.exe + executable: "WindowsNoEditor\\\\Kaos64.exe" type: default - config: - osarch: '32' + osarch: "32" oslist: windows - executable: WindowsNoEditor\\Kaos32.exe + executable: "WindowsNoEditor\\\\Kaos32.exe" type: default -'1080960': {} -'1080990': +"1080960": {} +"1080990": installDir: Ballade2 the Celestial Promise launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Ballade2.exe type: default @@ -28785,37 +28543,37 @@ oslist: macos executable: Ballade2.app/Contents/MacOS/Ballade2 type: default -'1081020': +"1081020": installDir: BlockusAdventure launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: BlockusAdventures.exe type: default -'1081030': +"1081030": installDir: StreetRoyaleZ launch: - config: oslist: windows executable: StreetRoyaleZ.exe type: default -'1081040': +"1081040": installDir: Twin Peaks VR launch: - config: oslist: windows executable: TwinPeaksVR.exe type: vr -'1081070': +"1081070": installDir: Gooberries launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: GooBerries.exe type: default -'1081090': +"1081090": installDir: H Chan Girl launch: - arguments: b @@ -28823,89 +28581,89 @@ oslist: windows executable: H Chan Girl.exe type: default -'108110': +"108110": installDir: StarpointGemini launch: - executable: StarpointGemini.exe -'1081100': +"1081100": installDir: Insurgence - Second Assault launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows executable: Game.exe type: default -'1081110': +"1081110": installDir: Milly launch: - config: oslist: windows executable: Milly the dog.exe type: none -'1081120': +"1081120": installDir: hoVRboard launch: - config: oslist: windows executable: hoVRboard.exe type: vr -'1081140': +"1081140": installDir: Zombies war launch: - config: oslist: windows executable: mygame.exe type: default -'1081160': +"1081160": installDir: Into The Core launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: IntoTheCore_win64_1.0.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: IntoTheCore_win32_1.0.exe type: default -'1081170': +"1081170": installDir: geme launch: - config: oslist: windows executable: str.exe type: default -'1081180': {} -'1081190': +"1081180": {} +"1081190": installDir: Ninja Roquinexu launch: - config: oslist: windows executable: Ninja Roquinexu.exe type: none -'1081200': +"1081200": installDir: Truck the System launch: - config: oslist: windows executable: Truck The System.exe type: default -'1081240': +"1081240": installDir: ScaryTales launch: - config: oslist: windows executable: ScaryTales.exe type: default -'1081250': +"1081250": installDir: Giant Life launch: - config: oslist: windows executable: GiantLife.exe type: vr -'1081260': +"1081260": installDir: Crisis of the Middle Ages launch: - config: @@ -28916,33 +28674,33 @@ oslist: macos executable: Game.app type: default -'1081320': +"1081320": installDir: Aura launch: - config: oslist: windows executable: Aura.exe type: default -'1081330': {} -'1081340': +"1081330": {} +"1081340": installDir: Aliens and Umbrellas launch: - config: oslist: windows executable: AliensAndUmbrellas.exe type: default -'1081350': +"1081350": installDir: Master cube launch: - config: oslist: windows executable: MasterCube.exe type: default -'1081370': +"1081370": installDir: Dragon and Weed Origins Season 1 Vol.1 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: DWO S1V1.exe type: default @@ -28951,11 +28709,11 @@ executable: DWO S1V1.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: DWO S1V1 1-001.x86_64 type: default -'1081400': +"1081400": installDir: Where is my family launch: - config: @@ -28970,7 +28728,7 @@ oslist: macos executable: Where is my Family.app type: default -'1081410': +"1081410": installDir: GourMelee launch: - config: @@ -28981,7 +28739,7 @@ oslist: macos executable: GourMelee.app type: none -'1081420': +"1081420": installDir: Altorius launch: - config: @@ -28991,26 +28749,26 @@ nameLocalized: schinese: 祭坛战舰 (Altorius) tchinese: 祭壇戰艦 (Altorius) -'1081430': +"1081430": installDir: Tale Of Starship launch: - config: oslist: windows executable: Tale of Starship.exe type: none -'1081460': +"1081460": installDir: PrincessGuardiansParodyH launch: - executable: Game.exe type: none -'1081470': +"1081470": installDir: Born of Fire launch: - config: oslist: windows executable: BornOfFire.exe type: default -'1081490': +"1081490": installDir: Hyper Bit Chasm launch: - config: @@ -29018,14 +28776,14 @@ description: Windows Launch executable: Hyper Bit Chasm.exe type: none -'1081500': +"1081500": installDir: Side Decide launch: - config: oslist: windows executable: Side Decide.exe type: default -'1081510': +"1081510": installDir: She Sees Red launch: - config: @@ -29036,9 +28794,9 @@ oslist: macos executable: She Sees Red.app type: none -'1081530': {} -'1081540': - installDir: Crazy Beat's Junction +"1081530": {} +"1081540": + installDir: "Crazy Beat's Junction" launch: - config: oslist: macos @@ -29048,69 +28806,69 @@ oslist: windows executable: CBJ.exe type: default -'1081550': +"1081550": installDir: Caliper 2 launch: - config: - osarch: '32' + osarch: "32" oslist: linux executable: Caliper 2.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Caliper 2.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: Caliper 2.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: Caliper 2.exe type: default -'1081560': +"1081560": installDir: GOLD EXPRESS launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: HJLC.exe type: default nameLocalized: schinese: 黄金列车 -'1081590': {} -'1081600': +"1081590": {} +"1081600": installDir: Fractal Gallery VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: FractalGalleryVR.exe type: vr - config: - osarch: '64' + osarch: "64" oslist: windows executable: FractalGalleryVR.exe type: othervr -'1081610': {} -'1081630': +"1081610": {} +"1081630": installDir: Yet Another Level launch: - config: oslist: windows executable: BL_Indy_Project.exe type: default -'1081650': +"1081650": installDir: Celaria launch: - config: oslist: windows executable: Celaria.exe type: none -'1081670': +"1081670": installDir: Fitforce launch: - config: @@ -29119,59 +28877,59 @@ type: default - config: oslist: macos - executable: Contents\\MacOS\\Fitforce + executable: "Contents\\\\MacOS\\\\Fitforce" type: default -'1081710': +"1081710": installDir: Most Correct Football Simulator launch: - config: oslist: windows executable: MostCorrectFootballSimulator.exe type: default -'1081720': +"1081720": installDir: Robo Run launch: - executable: Robo Run.exe type: none -'1081740': +"1081740": installDir: Easter Clicker Idle Manager launch: - config: oslist: windows executable: EasterClicker.exe type: default -'1081760': +"1081760": installDir: BAFF launch: - config: oslist: windows executable: BAFF.exe type: default -'1081800': - installDir: '101010' +"1081800": + installDir: "101010" launch: - config: oslist: windows executable: 101010.exe type: othervr -'1081810': +"1081810": installDir: jthdszf launch: - config: oslist: windows - executable: .\\patcher\\patcher.exe + executable: ".\\\\patcher\\\\patcher.exe" type: default - workingdir: .\\patcher -'1081820': {} -'1081830': {} -'1081840': + workingdir: ".\\\\patcher" +"1081820": {} +"1081830": {} +"1081840": installDir: ANONYMOUS AGONY - Serial Killer Prologue launch: - config: oslist: windows executable: Game.exe type: default -'1081850': +"1081850": installDir: Artemis God-Queen of Olympia launch: - config: @@ -29180,23 +28938,23 @@ type: none - config: oslist: macos - executable: Contents\\MacOS\\mac_build + executable: "Contents\\\\MacOS\\\\mac_build" type: none -'1081870': +"1081870": installDir: WarForwards launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: WarForwards.exe type: none -'1081880': +"1081880": installDir: 死亡旅店 launch: - executable: Death Inn.exe type: default -'1081890': +"1081890": installDir: BonVoyage! launch: - config: @@ -29208,38 +28966,38 @@ executable: bonvoyage.app type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: bonvoyage.x86_64 type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: bonvoyage.x86 type: none -'1081900': +"1081900": installDir: youwuyu launch: - config: oslist: windows executable: TravelDiary.exe type: default -'1081910': +"1081910": installDir: FancySkiingSpeed launch: - config: oslist: windows executable: FancySkiingSpeed.exe type: vr -'1081940': {} -'1081960': +"1081940": {} +"1081960": installDir: Il Sole e la Luna launch: - config: oslist: windows executable: Game.exe type: none -'1081990': +"1081990": installDir: jwing - the next puzzle game launch: - config: @@ -29248,9 +29006,9 @@ type: default - config: oslist: macos - executable: jwing.app\\Contents\\MacOS\\jwing + executable: "jwing.app\\\\Contents\\\\MacOS\\\\jwing" type: default -'108200': +"108200": installDir: Ticket to Ride launch: - arguments: steam @@ -29263,54 +29021,54 @@ executable: Ticket to Ride.app - arguments: steam config: - osarch: '32' + osarch: "32" oslist: linux description: 32 bit version - executable: ./Ticket to Ride + executable: "./Ticket to Ride" type: none - arguments: steam config: - osarch: '64' + osarch: "64" oslist: linux description: 64 bit version - executable: ./Ticket to Ride + executable: "./Ticket to Ride" type: none -'1082000': +"1082000": installDir: A Night at the Races launch: - config: oslist: windows executable: A Night at the Races.exe type: default -'108210': - installDir: Memoir '44 Online +"108210": + installDir: "Memoir '44 Online" launch: - - executable: Memoir'44 Online.exe -'1082100': {} -'1082110': + - executable: "Memoir'44 Online.exe" +"1082100": {} +"1082110": installDir: HentaiNYA launch: - executable: HentaiNYA.exe type: none -'1082180': +"1082180": installDir: TT Isle of Man 2 launch: - config: oslist: windows executable: TT2.exe type: default -'1082200': +"1082200": installDir: Astro launch: - config: oslist: windows executable: Astro.exe type: none -'1082220': +"1082220": installDir: Outbreak Epidemic launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Outbreak Epidemic.exe type: default @@ -29319,24 +29077,24 @@ executable: Outbreak EpidemicMac.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Outbreak EpidemicLinux.x86_64 type: default -'1082240': +"1082240": installDir: TaboosFlower launch: - config: oslist: windows executable: TaboosFlower.exe type: default -'1082410': {} -'1082430': +"1082410": {} +"1082430": installDir: Before Your Eyes launch: - config: betakey: press - osarch: '64' + osarch: "64" oslist: windows executable: Before Your Eyes.exe type: default @@ -29346,22 +29104,22 @@ type: default nameLocalized: schinese: 历历在目 -'1082440': +"1082440": installDir: hack.88 launch: - config: oslist: windows executable: hack88.exe type: default -'1082450': +"1082450": installDir: Gold Hunter launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: GoldHunter.exe type: default -'1082460': +"1082460": installDir: Ninja Turdle launch: - config: @@ -29370,80 +29128,80 @@ executable: Ninja Turdle.app/Contents/MacOS/Ninja Turdle type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Ninja Turdle - Linux x64/Ninja Turdle type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: Ninja Turdle - Windows x64/Ninja Turdle.exe type: default - config: oslist: macos - ownsdlc: '1306230' + ownsdlc: "1306230" description: Ninja Turdle - Coronavirus DLC executable: Ninja Turdle Coronavirus.app/Contents/MacOS/Ninja Turdle type: option1 - config: - osarch: '64' + osarch: "64" oslist: linux - ownsdlc: '1306230' + ownsdlc: "1306230" description: Ninja Turdle - Coronavirus DLC executable: Ninja Turdle Coronavirus - Linux x64/Ninja Turdle type: option1 - config: - osarch: '64' + osarch: "64" oslist: windows - ownsdlc: '1306230' + ownsdlc: "1306230" description: Ninja Turdle - Coronavirus DLC executable: Ninja Turdle Coronavirus - Windows x64/Ninja Turdle.exe type: option1 -'1082470': - installDir: Mystery Case Files Key to Ravenhearst Collector's Edition +"1082470": + installDir: "Mystery Case Files Key to Ravenhearst Collector's Edition" launch: - config: oslist: windows executable: MysteryCaseFiles_KeyToRavenhearst_CE.exe type: default -'1082480': +"1082480": installDir: Buzz Kill Zero launch: - config: oslist: windows executable: Buzz Kill Zero.exe.exe type: default -'1082500': - installDir: Grim Tales The Vengeance Collector's Edition +"1082500": + installDir: "Grim Tales The Vengeance Collector's Edition" launch: - config: oslist: windows executable: GrimTales_TheVengeanceCE.exe type: default -'1082520': +"1082520": installDir: Tower Ascend launch: - config: oslist: windows executable: TowerAscend.exe type: none -'1082530': {} -'1082620': +"1082530": {} +"1082620": installDir: PhilGood_BETA launch: - config: oslist: windows - executable: PhilGood_BETA\\PhilGood-0.1.3.exe + executable: "PhilGood_BETA\\\\PhilGood-0.1.3.exe" type: default -'1082640': +"1082640": installDir: Polities launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Polities.exe type: default -'1082650': +"1082650": installDir: Link the animals launch: - config: @@ -29458,15 +29216,15 @@ oslist: macos executable: Link the animals.app type: none -'1082680': +"1082680": installDir: The Walking Dead Onslaught launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Winchester.exe type: vr -'1082700': +"1082700": installDir: Paper Shakespeare Dating Sim 3 launch: - config: @@ -29477,7 +29235,7 @@ oslist: linux executable: Paper_Shakespeare_DS3.sh type: default -'1082710': +"1082710": installDir: Bug Fables launch: - config: @@ -29485,16 +29243,16 @@ executable: Bug Fables.exe type: none nameLocalized: - brazilian: 'Bug Fables: O Broto da Eternidade' + brazilian: "Bug Fables: O Broto da Eternidade" japanese: バグ・フェイブルズ ~ムシたちとえいえんの若木~ -'1082720': +"1082720": installDir: Click Legends launch: - config: oslist: windows executable: ClickLegends.exe type: default -'1082730': +"1082730": installDir: Niara Rebellion Of the King Visual Novel RPG launch: - config: @@ -29509,14 +29267,14 @@ oslist: linux executable: Niara_ROTK.sh type: default -'1082750': +"1082750": installDir: Wacktory launch: - config: oslist: windows executable: Wacktory.exe type: vr -'1082760': +"1082760": installDir: Paper Shakespeare Dating Sim Ultimate launch: - config: @@ -29527,39 +29285,39 @@ oslist: linux executable: PSMW.sh type: default -'1082770': +"1082770": installDir: Surviving Medieval launch: - config: oslist: windows executable: SM.exe type: none -'1082780': +"1082780": installDir: ADM 2(WHEN WORLDS COLLIDE) launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: adm2\\ADM II.exe + executable: "adm2\\\\ADM II.exe" type: default -'1082860': +"1082860": installDir: Simgirls Lovemore College RPG launch: - config: oslist: windows executable: Game.exe type: default -'1082870': {} -'1082880': {} -'1082890': +"1082870": {} +"1082880": {} +"1082890": installDir: Viking Vengeance launch: - config: oslist: windows executable: Viking Vengeance.exe type: none -'1082900': {} -'1082930': +"1082900": {} +"1082930": installDir: The Signifier launch: - config: @@ -29574,29 +29332,29 @@ oslist: linux executable: TheSignifierDC.x86_64 type: none -'1082940': - installDir: Pop'n'splat +"1082940": + installDir: "Pop'n'splat" launch: - config: oslist: windows - executable: Pop'n'splat.exe + executable: "Pop'n'splat.exe" type: default -'1082970': {} -'1082990': +"1082970": {} +"1082990": installDir: D.A.M.A.G.E launch: - executable: D.A.M.A.G.E.exe type: none -'1083000': +"1083000": installDir: The Last Town launch: - config: oslist: windows executable: The Last Town.exe type: default -'1083010': {} -'1083050': {} -'1083070': +"1083010": {} +"1083050": {} +"1083070": installDir: Sapper - Defuse The Bomb Simulator launch: - config: @@ -29605,83 +29363,83 @@ type: default nameLocalized: schinese: 工兵 - 拆弹模拟器 -'1083120': {} -'1083150': {} -'1083190': +"1083120": {} +"1083150": {} +"1083190": installDir: Disc Creatures launch: - config: oslist: windows executable: game.exe type: default -'1083210': +"1083210": installDir: RuneGirl launch: - config: oslist: windows executable: Rune Girl.exe type: default -'1083230': {} -'1083240': +"1083230": {} +"1083240": installDir: CREEP RIDES launch: - config: oslist: windows executable: CREEP RIDES.exe type: vr -'1083260': +"1083260": installDir: Wingsuit Gudvangen launch: - config: oslist: windows executable: WingsuitGudvangen.exe type: default -'1083270': +"1083270": installDir: HeroOfMetal_Episode01 launch: - config: oslist: windows executable: heroofmetal_episode01.exe type: default -'1083290': +"1083290": installDir: Life of a Capitalist launch: - config: oslist: windows executable: lifeofacapitalist.exe type: default -'1083300': +"1083300": installDir: Drill Deal launch: - config: oslist: windows executable: DrillDeal.exe type: default -'1083310': +"1083310": installDir: OUTBUDDIES launch: - config: oslist: windows executable: Outbuddies.exe type: default -'1083330': {} -'1083360': {} -'1083380': {} -'1083400': +"1083330": {} +"1083360": {} +"1083380": {} +"1083400": installDir: The Final Image launch: - config: oslist: windows executable: TheFinalImage.exe type: vr -'1083410': +"1083410": installDir: Coast team launch: - config: oslist: windows executable: gamerun.exe type: default -'1083420': +"1083420": installDir: CommanderBabes launch: - config: @@ -29690,20 +29448,20 @@ type: default - config: oslist: linux - executable: ./CommanderBabes.sh + executable: "./CommanderBabes.sh" type: default - config: oslist: macos executable: CommanderBabes.app type: default -'1083430': +"1083430": installDir: Snow Jewels launch: - config: oslist: windows executable: SnowJewels_Steam.exe type: default -'1083450': +"1083450": installDir: Tricky Fox launch: - config: @@ -29714,44 +29472,44 @@ oslist: linux executable: Tricky Fox.x86_64 type: none -'1083460': +"1083460": installDir: Rencia launch: - executable: Rencia.exe type: default -'1083480': +"1083480": installDir: Armadusa launch: - executable: Armadusa.exe type: none -'1083550': {} -'1083580': +"1083550": {} +"1083580": installDir: ORR launch: - executable: ORR.exe type: default -'1083610': {} -'1083700': +"1083610": {} +"1083700": installDir: Zork Remake launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ZorkRemake.exe type: none -'1083750': +"1083750": installDir: Yet Another Hero Legend launch: - executable: Game.exe type: none -'1083760': +"1083760": installDir: Knights of the Chalice launch: - config: oslist: windows executable: KOTC.exe type: default -'1083790': +"1083790": installDir: Deathbulge Battle of the Bands launch: - config: @@ -29763,73 +29521,73 @@ executable: deathbulge.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: deathbulge type: default -'1083800': +"1083800": installDir: Glitch Arena launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: standard executable: Glitch_steam.exe type: default - workingdir: \\Glitch_steam\\Binaries\\Win64\\ -'1083810': + workingdir: "\\\\Glitch_steam\\\\Binaries\\\\Win64\\\\" +"1083810": installDir: War Solution launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: War_Solution.exe type: none -'1083820': +"1083820": installDir: Eternal Dread 2 launch: - config: oslist: windows executable: Game.exe type: default -'1083840': {} -'1083850': +"1083840": {} +"1083850": installDir: Fantasy Hero Manager launch: - config: oslist: windows executable: Game.exe type: default -'1083870': +"1083870": installDir: CountryBalls Heroes launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: CountryBalls Heroes.exe type: default - config: betakey: test - osarch: '64' + osarch: "64" oslist: windows executable: CountryBalls Heroes.exe type: default - config: betakey: OpenBeta - osarch: '64' + osarch: "64" oslist: windows executable: CountryBalls Heroes.exe type: default -'1083880': +"1083880": installDir: Princess & Conquest launch: - executable: Game.exe type: none -'1083920': {} -'1083940': {} -'1083950': {} -'1083960': {} -'1083990': +"1083920": {} +"1083940": {} +"1083950": {} +"1083960": {} +"1083990": installDir: YumePuzzle launch: - config: @@ -29844,19 +29602,19 @@ oslist: linux executable: YumePuzzle/YumePuzzle.sh type: default -'1084010': +"1084010": installDir: Bombuzal launch: - - arguments: \"BOMBUZAL.EXE\" -conf \"dosbox_bombuzal.conf\" -exit -noconsole + - arguments: "\\\"BOMBUZAL.EXE\\\" -conf \\\"dosbox_bombuzal.conf\\\" -exit -noconsole" config: oslist: windows - executable: dosbox_windows\\dosbox.exe + executable: "dosbox_windows\\\\dosbox.exe" type: default - config: oslist: linux executable: runBombuzal.sh type: default -'1084020': +"1084020": installDir: TheoTown launch: - config: @@ -29864,12 +29622,12 @@ executable: TheoTown.exe type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: TheoTown32 type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: TheoTown64 type: none @@ -29877,31 +29635,31 @@ oslist: macos executable: TheoTown type: none -'1084050': +"1084050": installDir: Legends of Catalonia launch: - - arguments: '-popupwindow' + - arguments: "-popupwindow" config: oslist: windows executable: Legends of Catalonia.exe type: vr -'1084080': +"1084080": installDir: Save Daddy Trump launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SaveDaddyTrump.exe type: default -'1084090': +"1084090": installDir: Kerfuffight launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Kerfuffight.exe type: default -'1084120': +"1084120": installDir: Hindsight 2020 launch: - config: @@ -29912,8 +29670,8 @@ oslist: macos executable: Hindsight2020.app type: default -'1084130': {} -'1084160': +"1084130": {} +"1084160": installDir: Jagged Alliance 3 launch: - config: @@ -29921,55 +29679,53 @@ executable: JA3.exe type: default - config: - betakey: >- - agerating, baseline, compatibility, demute, dev_wrapper_testing, kubi, milestone, milestone19, milestone20, - milestone21, milestone22, presspreview, testgate, trailer + betakey: "agerating, baseline, compatibility, demute, dev_wrapper_testing, kubi, milestone, milestone19, milestone20, milestone21, milestone22, presspreview, testgate, trailer" oslist: windows executable: JA3Steam.exe type: default -'1084170': {} -'1084220': +"1084170": {} +"1084220": installDir: Cavity Busters launch: - config: oslist: windows executable: Cavity_Busters.exe type: none -'1084350': +"1084350": installDir: Fear of Dark launch: - config: oslist: windows executable: Fear of Dark.exe type: default -'1084360': +"1084360": installDir: Mister Burnhouse launch: - config: oslist: windows executable: Mister_Burnhouse.exe type: default -'1084420': +"1084420": installDir: First Day launch: - config: oslist: windows executable: TheFirstDay.exe type: none -'1084450': {} -'1084460': - installDir: Percy's Last Stand +"1084450": {} +"1084460": + installDir: "Percy's Last Stand" launch: - config: oslist: windows executable: percy.exe type: none -'1084480': +"1084480": installDir: Wanna Survive launch: - config: oslist: macos - executable: Wanna Survive.app\\Contents\\MacOS\\Wanna Survive + executable: "Wanna Survive.app\\\\Contents\\\\MacOS\\\\Wanna Survive" type: default - config: oslist: windows @@ -29979,7 +29735,7 @@ japanese: Wanna Survive:ゾンビ攻略 schinese: Wanna Survive-活尸战棋 tchinese: Wanna Survive-活屍戰棋 -'1084520': +"1084520": installDir: sparrowhime launch: - config: @@ -29988,28 +29744,28 @@ type: none - config: oslist: macos - executable: game.app\\Contents\\MacOS\\game + executable: "game.app\\\\Contents\\\\MacOS\\\\game" type: none -'1084530': +"1084530": installDir: Zone 10 launch: - config: oslist: windows executable: Zone10.exe type: default -'1084560': +"1084560": installDir: Cumulus launch: - config: oslist: windows executable: Cumulus.exe type: none -'1084570': +"1084570": installDir: The Lar launch: - config: oslist: windows - description: ' 中文' + description: " 中文" executable: CH/Game.exe type: option1 - config: @@ -30017,16 +29773,13 @@ description: English executable: ENG/Game.exe type: option2 -'1084600': +"1084600": installDir: My Time at Sandrock launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Singleplayer RPG - description_loc: - english: Singleplayer RPG - schinese: 单人剧情 executable: Sandrock.exe type: option1 - config: @@ -30036,27 +29789,21 @@ type: default - config: betakey: private_test - osarch: '64' + osarch: "64" oslist: windows description: Multiplayer - description_loc: - english: Multiplayer - schinese: 多人联机 executable: SandrockMultiPlayer.exe type: option1 - config: betakey: multiplayer_test - osarch: '64' + osarch: "64" oslist: windows description: Multiplayer - description_loc: - english: Multiplayer - schinese: 多人联机 executable: SandrockMultiPlayer.exe type: option1 nameLocalized: schinese: 沙石镇时光 -'1084630': +"1084630": installDir: Sacred Sword Princesses launch: - config: @@ -30066,7 +29813,7 @@ nameLocalized: english: Sacred Sword Princesses tchinese: 聖劍戰姬 -'1084640': +"1084640": installDir: Chicken Police launch: - config: @@ -30077,24 +29824,24 @@ oslist: windows executable: chicken_police.exe type: none -'1084660': {} -'1084690': {} -'1084710': +"1084660": {} +"1084690": {} +"1084710": installDir: Climbros launch: - config: oslist: windows executable: Climbros.exe type: default -'1084730': +"1084730": installDir: SOUTHBOUND launch: - config: oslist: windows - executable: SOUTHBOUND\\SOUTHBOUND.exe + executable: "SOUTHBOUND\\\\SOUTHBOUND.exe" type: default -'1084740': {} -'1084770': +"1084740": {} +"1084770": installDir: Gregor Hills Haunted Hospital launch: - config: @@ -30105,13 +29852,13 @@ oslist: linux executable: GregorHillsHauntedHospital type: default -'1084790': +"1084790": installDir: WarPlan launch: - executable: Launcher.exe type: default -'1084830': {} -'1084870': +"1084830": {} +"1084870": installDir: OSK launch: - config: @@ -30126,40 +29873,40 @@ oslist: linux executable: OSK.x86_64 type: default -'1084880': +"1084880": installDir: Ritbone launch: - config: oslist: windows executable: Ritbone.exe type: default -'1084910': +"1084910": installDir: Dark Skeleton Survival launch: - executable: DarkSkeletonSurvival.exe type: none -'1084920': - installDir: Fatal Evidence Cursed Island Collector's Edition +"1084920": + installDir: "Fatal Evidence Cursed Island Collector's Edition" launch: - config: oslist: windows executable: Fatal_Evidence_The_Cursed_Island_CE.exe type: default -'1084930': +"1084930": installDir: Sack of Bots launch: - config: oslist: windows executable: Sack Of Bots.exe type: default -'1084970': +"1084970": installDir: Bridge Builder Racer launch: - config: oslist: windows executable: Bridge Builder Racer.exe type: default -'1084980': +"1084980": installDir: Front Lines launch: - config: @@ -30168,25 +29915,25 @@ type: default - config: oslist: macos - executable: Contents\\MacOS\\FrontLines3.1 + executable: "Contents\\\\MacOS\\\\FrontLines3.1" type: default -'1084990': +"1084990": installDir: Old Gods Rising launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: OldGodsRising.exe type: default -'108500': +"108500": installDir: Vessel launch: - executable: vessel.exe -'1085010': +"1085010": installDir: Make a Killing launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Make a Killing executable: Make a Killing.exe @@ -30195,23 +29942,21 @@ oslist: macos executable: Make a Killing.app type: default -'1085070': +"1085070": installDir: Strawhart launch: - config: oslist: windows description: Launch Strawhart - description_loc: - english: Launch Strawhart executable: Strawhart.exe -'1085080': +"1085080": installDir: Tiger Tank 59 Ⅰ Volcano launch: - config: oslist: windows executable: game.exe type: default -'1085110': +"1085110": installDir: Pleasure Airlines launch: - config: @@ -30222,22 +29967,22 @@ oslist: macos executable: PA.app type: none -'1085150': +"1085150": installDir: Golf Defied launch: - config: oslist: windows executable: Golf Defied.exe type: default -'1085160': +"1085160": installDir: Dead Orphanage launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: PalmyraOrphanage.exe type: default -'1085180': +"1085180": installDir: LUMINOUS AVENGER iX launch: - config: @@ -30247,40 +29992,40 @@ workingdir: exe/ nameLocalized: japanese: 白き鋼鉄のX THE OUT OF GUNVOLT - koreana: 'Gunvolt Chronicles: Luminous Avenger iX' + koreana: "Gunvolt Chronicles: Luminous Avenger iX" schinese: 银白钢铁伊克斯 tchinese: 銀白鋼鐵X THE OUT OF GUNVOLT - thai: 'Gunvolt Chronicles: Luminous Avenger iX ' -'1085190': + thai: "Gunvolt Chronicles: Luminous Avenger iX " +"1085190": installDir: Black Baron launch: - executable: Black Baron.exe type: default -'1085210': +"1085210": installDir: Fruit Mess launch: - executable: Fruit Mess.exe type: none -'1085220': +"1085220": installDir: Figment 2 launch: - executable: Figment 2.exe type: default -'1085230': +"1085230": installDir: ZumouBattoruRelease launch: - config: oslist: windows executable: zumoubattoru.exe type: default -'1085240': +"1085240": installDir: Park assault launch: - config: oslist: windows executable: gameplay.exe type: default -'1085260': +"1085260": installDir: Ports of Call Classic launch: - config: @@ -30341,14 +30086,14 @@ - description: Show Key executable: key.png type: none -'1085270': +"1085270": installDir: Fat Prisoner Simulator 2 launch: - config: oslist: windows executable: FatPrisonerSimulator2.exe type: default -'1085280': +"1085280": installDir: Buoyant launch: - config: @@ -30357,24 +30102,24 @@ type: default - config: oslist: macos - executable: Buoyant.app\\Contents\\MacOS\\Buoyant + executable: "Buoyant.app\\\\Contents\\\\MacOS\\\\Buoyant" type: default -'1085340': - installDir: Flandre's dream. - 36000 ft deep - +"1085340": + installDir: "Flandre's dream. - 36000 ft deep -" launch: - config: oslist: windows executable: Game.exe type: none -'1085380': {} -'1085390': - installDir: Angler's Life +"1085380": {} +"1085390": + installDir: "Angler's Life" launch: - config: oslist: windows - executable: Angler's Life.exe + executable: "Angler's Life.exe" type: default -'1085510': +"1085510": installDir: Garfield Kart - Furious Racing launch: - config: @@ -30385,18 +30130,18 @@ oslist: macos executable: Garfield Kart Furious Racing.app type: default -'1085520': +"1085520": installDir: Off-Road Racing launch: - config: oslist: windows executable: Buggy.exe type: default -'1085540': +"1085540": installDir: Purple Noise Echo launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: PurpleNoiseEcho.exe type: default @@ -30404,28 +30149,28 @@ oslist: macos executable: PurpleNoiseEcho.app type: default -'1085570': +"1085570": installDir: Fables of Talumos launch: - config: oslist: windows executable: Fables of Talumos.exe type: default -'1085620': {} -'1085630': +"1085620": {} +"1085630": installDir: VASARA Collection launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: VASARA Collection.exe type: default -'1085640': +"1085640": installDir: Hentai Waifu II launch: - executable: Hentai Waifu II.exe type: none -'1085660': +"1085660": installDir: Destiny 2 launch: - config: @@ -30436,34 +30181,34 @@ koreana: 데스티니 가디언즈 schinese: 命运2 tchinese: 天命2 -'1085730': +"1085730": installDir: Breach Point launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Breach Point.exe type: vr -'1085750': +"1085750": installDir: Sex with Stalin launch: - executable: SexWithStalin.exe type: default -'1085800': +"1085800": installDir: Zenkat launch: - config: oslist: windows executable: Game.exe type: default -'1085820': - installDir: Au fil de l'eau +"1085820": + installDir: "Au fil de l'eau" launch: - config: oslist: windows - executable: Au fil de l'eau.exe + executable: "Au fil de l'eau.exe" type: default -'1085840': +"1085840": installDir: World Leader Card Game launch: - config: @@ -30474,7 +30219,7 @@ oslist: macos executable: World Leader Card Game.app/Contents/MacOS/World Leader Card Game type: default -'1085900': +"1085900": installDir: PING REDUX launch: - config: @@ -30486,24 +30231,24 @@ executable: PING REDUX.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: PING REDUX.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: PING REDUX.x86 type: default -'1085940': +"1085940": installDir: Orders Of The Ruler launch: - - arguments: '-windowed' + - arguments: "-windowed" config: oslist: windows executable: OOTREA.exe type: default -'1085950': +"1085950": installDir: Nyanfu Girl launch: - config: @@ -30511,18 +30256,18 @@ description: 英語版の起動 executable: Nyanfu Girl.exe type: default -'1085990': +"1085990": installDir: XEYEX launch: - config: oslist: windows executable: xeyyex.exe type: none -'108600': +"108600": installDir: ProjectZomboid launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: 32 Bit executable: ProjectZomboid32.exe @@ -30533,32 +30278,28 @@ - config: oslist: linux executable: projectzomboid.sh - - arguments: '-safemode' + - arguments: "-safemode" config: oslist: linux description: Compatibility Mode executable: projectzomboid.sh - - arguments: '-safemode' + - arguments: "-safemode" config: oslist: macos description: Compatibility Mode executable: Project Zomboid.app - config: - osarch: '64' + osarch: "64" oslist: windows description: 64 Bit - description_loc: - english: 64 Bit executable: ProjectZomboid64.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows description: Alternate Launch (May work when default fails) - description_loc: - english: Alternate Launch (May work when default fails) executable: ProjectZomboid64.bat -'1086010': +"1086010": installDir: 198X launch: - config: @@ -30566,7 +30307,7 @@ description: Launch executable: 198X.exe type: none -'1086030': +"1086030": installDir: Dating Life Miley X Emily launch: - config: @@ -30574,8 +30315,8 @@ description: Launch executable: DatingLifeMxE.exe type: none -'1086050': - installDir: You're Fired! +"1086050": + installDir: "You're Fired!" launch: - config: oslist: windows @@ -30583,19 +30324,19 @@ type: none - config: oslist: macos - executable: \\Game.app\\Contents\\Resources\\Youre Fired.icns + executable: "\\\\Game.app\\\\Contents\\\\Resources\\\\Youre Fired.icns" type: none -'1086060': +"1086060": installDir: Tunnel Vision launch: - executable: TunnelVision.exe type: none -'1086140': +"1086140": installDir: Weaving launch: - executable: Weaving.exe type: none -'1086160': +"1086160": installDir: Space War - Infinity launch: - config: @@ -30603,41 +30344,41 @@ executable: SPACE WAR - INFINITY.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: SPACE WAR - INFINITY.x86_64 type: default -'1086170': {} -'1086180': +"1086170": {} +"1086180": installDir: Vestige of the Past launch: - config: oslist: windows executable: VestigeOfThePast.exe type: default -'1086220': +"1086220": installDir: rOt 3D launch: - config: oslist: windows executable: rOt 3D.exe type: default -'1086250': +"1086250": installDir: Civitas Nova launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Civitas Nova.exe type: none -'1086260': +"1086260": installDir: Deck Box Dungeons launch: - config: oslist: windows executable: DeckBoxDungeons.exe type: default -'1086270': +"1086270": installDir: Space BloX launch: - config: @@ -30646,16 +30387,16 @@ type: default - config: oslist: macos - executable: Space_BloX.app\\Contents\\MacOS\\Space_BloX + executable: "Space_BloX.app\\\\Contents\\\\MacOS\\\\Space_BloX" type: default - config: oslist: linux executable: Space_BloX type: default -'1086300': {} -'1086340': {} -'1086360': {} -'1086410': +"1086300": {} +"1086340": {} +"1086360": {} +"1086410": installDir: GolfAround launch: - config: @@ -30664,69 +30405,69 @@ type: none - config: oslist: macos - executable: GolfAround.app\\Contents\\MacOS\\GolfAround + executable: "GolfAround.app\\\\Contents\\\\MacOS\\\\GolfAround" type: none -'1086420': {} -'1086430': {} -'1086450': +"1086420": {} +"1086430": {} +"1086450": installDir: Oik Memory Endgame launch: - config: oslist: windows executable: oik_m_end.exe type: default -'1086460': +"1086460": installDir: Supermarket Shriek launch: - config: oslist: windows executable: Supermarket Shriek.exe type: none -'1086470': +"1086470": installDir: 996Truth launch: - executable: Boss996.exe type: none -'1086490': +"1086490": installDir: First Customer launch: - config: oslist: windows executable: FirstCustomer.exe type: default -'1086500': {} -'1086510': {} -'1086530': {} -'1086620': {} -'1086630': +"1086500": {} +"1086510": {} +"1086530": {} +"1086620": {} +"1086630": installDir: Spelling Quest Online launch: - config: oslist: windows executable: sqo-desktop.exe type: default -'1086640': +"1086640": installDir: Dude Simulator 3 launch: - config: oslist: windows executable: DudeSimulator3.exe type: default -'1086660': {} -'1086670': +"1086660": {} +"1086670": installDir: Roll+Heart launch: - - arguments: '-steam' + - arguments: "-steam" config: oslist: windows executable: Roll+Heart.exe type: default -'1086680': +"1086680": installDir: Violet rE-The final re Existence- launch: - executable: Violet rE.eXe type: none -'1086690': +"1086690": installDir: C-War 2 launch: - config: @@ -30737,7 +30478,7 @@ oslist: macos executable: C-WAR2.app type: default -'1086750': +"1086750": installDir: FluxCaves launch: - config: @@ -30750,9 +30491,9 @@ type: none - config: oslist: macos - executable: Mac_full.app\\Contents\\MacOS\\FluxCaves + executable: "Mac_full.app\\\\Contents\\\\MacOS\\\\FluxCaves" type: none -'1086820': +"1086820": installDir: End of Realms launch: - config: @@ -30763,22 +30504,22 @@ oslist: linux executable: End_of_Realms type: default -'1086840': +"1086840": installDir: Operation sniff launch: - config: oslist: windows executable: Operation sniff.exe type: default -'1086850': +"1086850": installDir: Garden of the Sea launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Garden of the Sea.exe type: vr -'1086860': +"1086860": installDir: TOUHOU SKY ARENA MATSURI CLIMAX launch: - config: @@ -30789,7 +30530,7 @@ japanese: 東方スカイアリーナ・幻想郷空戦姫-MATSURI-CLIMAX schinese: TOUHOU SKY ARENA・幻想乡空战姬 tchinese: TOUHOU SKY ARENA・幻想鄉空戰姬 -'1086900': +"1086900": installDir: Houdini Redux launch: - config: @@ -30800,38 +30541,38 @@ oslist: macos executable: Houdini.app type: none -'1086940': +"1086940": installDir: Baldurs Gate 3 launch: - config: oslist: windows - executable: Launcher\\LariLauncher.exe + executable: "Launcher\\\\LariLauncher.exe" type: default workingdir: bin - config: oslist: macos - executable: Baldur's Gate 3.app + executable: "Baldur's Gate 3.app" type: default -'1086970': +"1086970": installDir: Battle Bruise 2 launch: - config: oslist: windows executable: Battle Bruise2.exe type: default -'1086980': +"1086980": installDir: Nebulas Lasso launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: NebulasLasso.exe type: default -'1086990': +"1086990": installDir: Commander 85 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Commander 85.exe type: default @@ -30839,32 +30580,32 @@ oslist: macos executable: Commander 85.app type: default -'108700': +"108700": installDir: DeathRally launch: - description: Death Rally Executable executable: DeathRally.exe -'1087030': {} -'1087040': +"1087030": {} +"1087040": installDir: Alien invasion launch: - config: oslist: windows executable: game.exe type: default -'1087050': +"1087050": installDir: Mondrian - Plastic Reality launch: - executable: mondrianPR.exe type: default -'1087060': +"1087060": installDir: DuncanandtheWisp launch: - config: oslist: windows executable: Duncan & The Wisp.exe type: default -'1087070': +"1087070": installDir: Poly Fishing launch: - config: @@ -30875,33 +30616,33 @@ oslist: macos executable: PolyFishing.app/Contents/MacOS/PolyFishing type: default -'108710': +"108710": installDir: Alan Wake launch: - - executable: ./AlanWake.exe -'1087100': + - executable: "./AlanWake.exe" +"1087100": installDir: The Last Cowboy launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: The last cowboy.exe type: default -'1087110': +"1087110": installDir: Football School launch: - config: oslist: windows executable: footballschool.exe type: default -'1087190': +"1087190": installDir: Underture launch: - config: oslist: windows executable: Underture.exe type: vr -'1087270': +"1087270": installDir: Franchise Hockey Manager 6 launch: - config: @@ -30914,7 +30655,7 @@ description: Launch FHM 6 (macOS) executable: Franchise Hockey Manager 6.app type: default -'1087280': +"1087280": installDir: Out of the Park Baseball 21 launch: - config: @@ -30928,26 +30669,26 @@ executable: OOTP Baseball 21.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch OOTP 21 executable: ootp21.sh type: default -'1087310': +"1087310": installDir: DOOMTANK launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: DOOMTANK.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: DOOMTANK.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: DOOMTANK.x86_64 type: default @@ -30955,7 +30696,7 @@ oslist: macos executable: DOOMTANK.app type: default -'1087330': +"1087330": installDir: Royal Merchant launch: - config: @@ -30964,17 +30705,17 @@ type: default - config: oslist: macos - executable: Royal Merchant.app\\Contents\\MacOS\\Royal Merchant + executable: "Royal Merchant.app\\\\Contents\\\\MacOS\\\\Royal Merchant" type: none -'1087440': +"1087440": installDir: Jay and Silent Bob Mall Brawl launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Jay and Silent Bob Mall Brawl.exe type: default -'1087460': +"1087460": installDir: Super Life (RPG) launch: - config: @@ -30983,9 +30724,9 @@ type: default - config: oslist: macos - executable: SuperLife.app\\Contents\\MacOS\\SuperLife + executable: "SuperLife.app\\\\Contents\\\\MacOS\\\\SuperLife" type: default -'1087480': +"1087480": installDir: Knighty Night launch: - config: @@ -30993,91 +30734,91 @@ executable: Knighty Night.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Knighty Night.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Knighty Night.x86 type: default -'1087500': +"1087500": installDir: Groundhog Day Like Father Like Son launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: GHD.exe type: vr -'1087540': {} -'1087600': +"1087540": {} +"1087600": installDir: FINAL ARCHER VR launch: - config: oslist: windows executable: FinalArcher.exe type: vr -'1087610': +"1087610": installDir: Red Death launch: - executable: 8Feet.exe type: default -'1087630': +"1087630": installDir: JOY You-I-He launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: JOY You-I-He.exe type: default -'1087640': {} -'1087700': +"1087640": {} +"1087700": installDir: Corpse Killer - 25th Anniversary Edition launch: - executable: Corpse Killer - 25th Anniversary Edition.exe type: none -'1087720': +"1087720": installDir: Your Island launch: - config: oslist: windows executable: zero_village.exe type: default -'1087730': +"1087730": installDir: Iron Blade launch: - executable: IronBlade.exe type: none -'1087760': +"1087760": installDir: The Gunk launch: - config: oslist: windows executable: Dust.exe type: default -'1087770': +"1087770": installDir: Card Throw VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: VAN_015.exe type: vr -'1087780': +"1087780": installDir: STURMWIND EX launch: - - arguments: '-console' + - arguments: "-console" config: oslist: windows description: STURMWIND EX Windows launch executable: STURMWIND-EX-Steam.exe type: none -'1087800': +"1087800": installDir: Arranged launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Arranged.exe type: default @@ -31086,31 +30827,31 @@ executable: Arranged.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Arranged.x86_64 type: default -'1087810': +"1087810": installDir: Forgetful Dictator launch: - config: oslist: windows executable: ForgetfulDictator.exe type: default -'1087820': +"1087820": installDir: Bad Mojos launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Bad Mojos.exe type: vr -'1087910': +"1087910": installDir: Mountain Rescue Simulator launch: - executable: Mountain Rescue Simulator.exe type: none -'1087940': +"1087940": installDir: Incredible Dracula 3 Family Secret launch: - config: @@ -31119,145 +30860,142 @@ type: default - config: oslist: macos - executable: >- - Incredible_Dracula_III_Family_Secret_Collector's_Edition.app\\Contents\\MacOS\\Incredible_Dracula_III_Family_Secret_Collector's_Edition + executable: "Incredible_Dracula_III_Family_Secret_Collector's_Edition.app\\\\Contents\\\\MacOS\\\\Incredible_Dracula_III_Family_Secret_Collector's_Edition" type: default -'1087950': +"1087950": installDir: fall launch: - config: oslist: windows executable: fall.exe type: default -'1087960': +"1087960": installDir: JINKELA launch: - config: oslist: windows executable: game.exe type: default -'1087970': +"1087970": installDir: Nevrosa Spider Song launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Nevrosa - Spider Song.exe type: vr -'1087990': {} -'108800': +"1087990": {} +"108800": installDir: Crysis 2 Game of the Year launch: - - arguments: '' - description: '' + - arguments: "" + description: "" executable: bin32/Crysis2Launcher.exe workingdir: bin32 -'1088010': +"1088010": installDir: WW2 Z Range VR launch: - config: oslist: windows executable: WW2 Z Range VR.exe type: othervr -'1088030': {} -'1088040': +"1088030": {} +"1088040": installDir: MMA Executive launch: - config: oslist: windows executable: mmaExecutive.exe type: none -'1088060': +"1088060": installDir: WarpZone vs THE DIMENSION launch: - config: oslist: windows executable: WarpZone vs THE DIMENSION.exe type: default -'1088070': +"1088070": installDir: HUNTERS FOR YOUR BRAIN launch: - config: oslist: windows executable: lev1.exe type: default -'1088090': +"1088090": installDir: Day of Dragons launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Day of Dragons - description_loc: - english: Day of Dragons executable: Dragons.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Dragons.sh type: default -'1088110': +"1088110": installDir: Meowk and Frocco launch: - executable: Meowk and Kvakv.exe type: none -'1088130': +"1088130": installDir: SextrisEffect launch: - - arguments: '-novr' + - arguments: "-novr" config: - osarch: '64' + osarch: "64" oslist: windows executable: Sextris Effect.exe type: default - - arguments: '-vr' + - arguments: "-vr" config: oslist: windows executable: Sextris Effect.exe type: vr -'1088150': +"1088150": installDir: Scribble It! launch: - - arguments: '-NOSPLASH' + - arguments: "-NOSPLASH" config: oslist: windows executable: ScribbleIt.exe type: default - - arguments: '-NOSPLASH' + - arguments: "-NOSPLASH" config: oslist: macos executable: ScribbleIt.app type: default - - arguments: '-NOSPLASH' + - arguments: "-NOSPLASH" config: oslist: linux executable: ScribbleIt.sh type: default -'1088160': +"1088160": installDir: Led It Rain VR launch: - config: oslist: windows executable: Led It Rain VR.exe type: vr -'1088190': {} -'1088400': +"1088190": {} +"1088400": installDir: Dungeon Maze launch: - executable: DungeonMaze.exe type: none -'1088420': +"1088420": installDir: Wings Of Bluestar launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: WINGS OF BLUESTAR.exe type: default - executable: game.exe type: none -'1088440': +"1088440": installDir: The Panel Remake launch: - config: @@ -31271,15 +31009,15 @@ - config: oslist: linux executable: ThePanelRemake -'1088570': {} -'1088590': +"1088570": {} +"1088590": installDir: love love love launch: - config: oslist: windows executable: LoveLoveLove.exe type: none -'1088600': +"1088600": installDir: SpaceMercs launch: - config: @@ -31290,25 +31028,25 @@ oslist: linux executable: Space_Mercs.x86_64 type: default -'1088610': {} -'1088630': +"1088610": {} +"1088630": installDir: Moe Moe World War II - 3 launch: - config: oslist: windows executable: launcher.exe type: default -'1088650': {} -'1088710': +"1088650": {} +"1088710": installDir: Yakuza 3 launch: - config: betakey: develop - osarch: '64' + osarch: "64" oslist: windows executable: Yakuza3.exe type: none -'1088720': +"1088720": installDir: All Evil Night 2 launch: - config: @@ -31319,31 +31057,27 @@ oslist: linux executable: AllEvilNight2.x86 type: default -'1088750': +"1088750": installDir: Soda Story - Brewing Tycoon launch: - config: oslist: windows executable: Soda Story - Brewing Tycoon.exe type: default -'1088770': +"1088770": installDir: Car Mechanic Simulator 2018 - VR launch: - config: oslist: windows description: Steam VR - description_loc: - english: Steam VR executable: cms.exe type: vr - config: oslist: windows description: Oculus - description_loc: - english: Oculus executable: cms.exe type: othervr -'1088790': +"1088790": installDir: Rebel Inc Escalation launch: - config: @@ -31357,18 +31091,16 @@ - config: oslist: macos description: Scenario Creator - description_loc: - english: Scenario Creator executable: scenario creator/Rebel Inc. Scenario Creator.app type: editor -'1088800': +"1088800": installDir: Horror Ville Maze Escape launch: - config: oslist: windows executable: HVME.exe type: vr -'1088830': +"1088830": installDir: CLS Signal Person launch: - config: @@ -31379,16 +31111,16 @@ oslist: windows executable: Signal Person Training.exe type: othervr -'1088850': - installDir: Marvel's Guardians of the Galaxy +"1088850": + installDir: "Marvel's Guardians of the Galaxy" launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: bin\\gotg.exe + executable: "bin\\\\gotg.exe" type: default - workingdir: bin\\ -'1088870': + workingdir: "bin\\\\" +"1088870": installDir: Fantasy & Blade launch: - config: @@ -31399,12 +31131,12 @@ oslist: linux executable: nw type: default -'1088880': +"1088880": installDir: Пацанский цитатник Russian Test launch: - executable: Russia.exe type: none -'1088900': +"1088900": installDir: Flying Slime! launch: - config: @@ -31412,50 +31144,50 @@ description: Launch executable: Flying Slime!.exe type: default -'1088910': +"1088910": installDir: DestructoPod launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: destructopod.exe type: default -'1088950': +"1088950": installDir: TouringKarts launch: - description: VR executable: Touring Karts.exe type: openvroverlay - - arguments: '-NoVR' + - arguments: "-NoVR" description: non VR executable: Touring Karts.exe type: default -'1088960': +"1088960": installDir: PsycoCat launch: - config: oslist: windows executable: PsycoCat.exe type: none -'1088980': +"1088980": installDir: Energy Hunter Boy launch: - executable: hunter.exe type: none -'1089030': +"1089030": installDir: The Prophecy Lies! launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: nw.exe type: default -'1089050': +"1089050": installDir: Speakerman launch: - executable: Speakerman.exe type: default -'1089080': +"1089080": installDir: Superstar Hero launch: - config: @@ -31467,15 +31199,15 @@ executable: easyrpg-player type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: easyrpg-player-linux type: default -'1089090': +"1089090": installDir: OPPW4 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: OPPW4.exe type: default @@ -31483,60 +31215,60 @@ koreana: 원피스 해적무쌍 4 schinese: ONE PIECE 海贼无双4 tchinese: ONE PIECE海賊無雙4 -'1089100': +"1089100": installDir: Power Block launch: - config: oslist: windows executable: PowerBlockFinal111.exe type: none -'1089110': +"1089110": installDir: Musasabi launch: - config: oslist: windows executable: Musasabi.exe type: none -'1089120': {} -'1089130': +"1089120": {} +"1089130": installDir: Quake II RTX launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: q2rtx.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: q2rtx.sh type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: Find Retail Quake II Content executable: find-retail-paks.sh type: option1 -'1089140': +"1089140": installDir: Stroke Fill launch: - executable: StrokeFill.exe type: none -'1089250': +"1089250": installDir: Smush launch: - config: oslist: windows executable: Smush.exe type: default -'1089290': +"1089290": installDir: Truefish launch: - config: oslist: windows executable: TrueFish.exe type: default -'1089310': +"1089310": installDir: Nordlight launch: - config: @@ -31551,67 +31283,67 @@ oslist: linux executable: Nordlicht_v1.1.x86 type: none -'1089350': +"1089350": installDir: NBA 2K20 launch: - executable: NBA2K20.exe type: none -'1089430': {} -'1089520': +"1089430": {} +"1089520": installDir: Nigel - The Minuscule Adventure launch: - config: oslist: windows executable: Game.exe type: none -'1089540': {} -'1089570': +"1089540": {} +"1089570": installDir: AOIT2T launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: tennis2.exe type: default -'1089590': +"1089590": installDir: Ashes 2 launch: - config: oslist: windows executable: Ashes_2.exe type: default -'1089600': +"1089600": installDir: LYSER launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: LYSER\\Binaries\\Win64\\LYSER-Win64-Shipping.exe + executable: "LYSER\\\\Binaries\\\\Win64\\\\LYSER-Win64-Shipping.exe" type: none -'1089630': +"1089630": installDir: Surmount launch: - config: oslist: windows executable: Surmount.exe type: default -'1089640': +"1089640": installDir: Devellage launch: - config: oslist: windows executable: Devellage.exe type: default -'1089650': +"1089650": installDir: Project Zero Deaths launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Project Zero Deaths.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: pzd.x86_64 type: default @@ -31619,7 +31351,7 @@ oslist: macos executable: Project Zero Deaths.app/Contents/MacOS/Project Zero Deaths type: default -'1089660': +"1089660": installDir: Queens Quest 5 launch: - config: @@ -31628,13 +31360,13 @@ executable: QueensQuest5.exe type: none - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: QueensQuest5_i386 type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: QueensQuest5_amd64 @@ -31644,12 +31376,12 @@ description: Launch executable: QueensQuest5.app/Contents/MacOS/QueensQuest5 type: none -'1089710': +"1089710": installDir: Fruit Postal Service launch: - executable: FruitPostalService.exe type: default -'1089770': +"1089770": installDir: Isotiles 2 launch: - config: @@ -31660,68 +31392,68 @@ oslist: macos executable: Isotiles 2.app type: default -'1089790': +"1089790": installDir: Winter Resort Simulator launch: - executable: WinterResortSimulator.exe type: default -'1089800': +"1089800": installDir: Axan Ships launch: - config: oslist: windows executable: Axan_Ships.exe type: default -'1089810': +"1089810": installDir: 下一层的倒悬塔 Forever War launch: - executable: Game.exe type: none -'1089820': +"1089820": installDir: Reanimation Inc launch: - config: oslist: windows executable: Reanimation inc.exe type: default -'1089830': +"1089830": installDir: Monster Energy Supercross - The Official Videogame 3 launch: - executable: supercross3.exe type: none -'1089840': +"1089840": installDir: Armored Brigade launch: - executable: autorun.exe type: default -'1089860': +"1089860": installDir: Blautopf VR - Geheimnis der Lau launch: - config: oslist: windows executable: Blautopf VR - Geheimnis der Lau.exe type: vr -'1089880': +"1089880": installDir: Sudoku 9X16X25 launch: - config: oslist: windows executable: Sudoku 9X16X25.exe type: none -'1089920': {} -'1089930': +"1089920": {} +"1089930": installDir: Aeon Must Die launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: AeonMustDie\\Binaries\\Win64\\AeonMustDie-Win64-Shipping.exe + executable: "AeonMustDie\\\\Binaries\\\\Win64\\\\AeonMustDie-Win64-Shipping.exe" type: default nameLocalized: schinese: 永世必死 tchinese: 永世必死 -'1089960': {} -'1089980': +"1089960": {} +"1089980": installDir: HenryStickmin launch: - config: @@ -31732,7 +31464,7 @@ oslist: macos executable: HenryStickmin.app type: default -'1090020': +"1090020": installDir: JETBOY launch: - config: @@ -31741,9 +31473,9 @@ type: default - config: oslist: windows - executable: JETBOY\\JETBOY.exe + executable: "JETBOY\\\\JETBOY.exe" type: default -'1090030': +"1090030": installDir: Asteroid Run No Questions Asked launch: - config: @@ -31758,57 +31490,57 @@ oslist: linux executable: AsteroidRunNoQuestionsAsked type: none -'1090120': {} -'1090250': +"1090120": {} +"1090250": installDir: Crunch Element launch: - config: oslist: windows executable: Crunch Element.exe type: vr -'1090300': +"1090300": installDir: Slime!!! launch: - config: oslist: windows executable: Slime!!!.exe type: default -'1090340': +"1090340": installDir: Asteroid Invaders launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Asteroid Invaders.exe type: default -'1090350': +"1090350": installDir: Animal Notes launch: - config: oslist: windows executable: Animal Notes 1.0.exe type: default -'1090370': +"1090370": installDir: Aozora Under Girls - Karsome Irony launch: - executable: Aozora Under Girls - Karsome Irony.exe type: vr -'1090380': +"1090380": installDir: Lilith-M launch: - config: oslist: windows - executable: Lilith-M\\Lilith-M.exe + executable: "Lilith-M\\\\Lilith-M.exe" type: default - config: oslist: macos - executable: Lilith-M.app\\Contents\\MacOS\\Lilith-M + executable: "Lilith-M.app\\\\Contents\\\\MacOS\\\\Lilith-M" type: default - config: oslist: linux executable: Lilith-M.x86_64 type: default -'1090390': +"1090390": installDir: House of 1000 Doors Serpent Flame launch: - config: @@ -31817,18 +31549,16 @@ type: default - config: oslist: macos - executable: >- - House of 1,000 Doors Serpent Flame Collector's - Edition.app\\Contents\\MacOS\\HouseOfThousandDoors3CE-Partners-Full-En + executable: "House of 1,000 Doors Serpent Flame Collector's Edition.app\\\\Contents\\\\MacOS\\\\HouseOfThousandDoors3CE-Partners-Full-En" type: default -'1090420': +"1090420": installDir: Astralojia Episode 1 launch: - config: oslist: windows executable: Astralojia Episode 1.exe type: default -'1090440': +"1090440": installDir: Kelipot launch: - config: @@ -31838,45 +31568,45 @@ nameLocalized: english: Kelipot schinese: 形骸骑士 -'1090480': {} -'1090520': +"1090480": {} +"1090520": installDir: WindowsNoEditor launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: WindowsNoEditor\\Scenner.exe + executable: "WindowsNoEditor\\\\Scenner.exe" type: default -'1090530': +"1090530": installDir: Pokka Man Blast launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Pokka Man Blast.exe type: default -'1090540': +"1090540": installDir: Tiger Tank 59 Ⅰ Air Strike launch: - config: oslist: windows executable: game.exe type: default -'1090560': +"1090560": installDir: Boy VS Genius launch: - config: oslist: windows executable: Game.exe type: default -'1090580': +"1090580": installDir: Gamehunt launch: - config: oslist: windows executable: Gamehunt.exe type: default -'1090630': +"1090630": installDir: Granblue Fantasy Versus launch: - config: @@ -31885,81 +31615,73 @@ type: none nameLocalized: japanese: グランブルーファンタジー ヴァーサス -'1090650': +"1090650": installDir: Unknown Castle launch: - config: oslist: windows executable: unknown castle.exe type: default -'1090660': +"1090660": installDir: MOK launch: - config: oslist: windows executable: Mok.exe type: none -'1090670': +"1090670": installDir: Orbi Universo launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: Orbi Universo.exe type: default -'1090690': +"1090690": installDir: Sapper launch: - config: oslist: windows executable: SAPPER.exe type: default -'1090750': {} -'1090760': +"1090750": {} +"1090760": installDir: Distant Kingdoms launch: - - arguments: '-force-d3d11 ' + - arguments: "-force-d3d11 " config: oslist: windows description: DirectX11 (Default) executable: Distant Kingdoms.exe type: none - - arguments: '-force-d3d11 -screen-fullscreen=0 -screen-height=540 -screen-width=960' + - arguments: "-force-d3d11 -screen-fullscreen=0 -screen-height=540 -screen-width=960" config: betakey: external_test oslist: windows description: BETA - description_loc: - english: BETA executable: Distant Kingdoms.exe type: none -'1090790': +"1090790": installDir: Magicolors launch: - config: oslist: macos description: Magicolors - masOS (Std Version) - description_loc: - english: Magicolors - masOS (Std Version) - executable: \\mac\\Magicolors.app + executable: "\\\\mac\\\\Magicolors.app" type: option1 - config: oslist: windows description: Magicolors - Win (Std Version) - description_loc: - english: Magicolors - Win (Std Version) - executable: \\win\\Magicolors\\Magicolors.exe + executable: "\\\\win\\\\Magicolors\\\\Magicolors.exe" type: option1 - config: oslist: windows description: Magicolors (Tilt Five™ Version) - description_loc: - english: Magicolors (Tilt Five™ Version) - executable: \\win\\Magicolors-TiltFive\\Magicolors.exe + executable: "\\\\win\\\\Magicolors-TiltFive\\\\Magicolors.exe" type: option1 -'1090900': - installDir: 'Yes, Master!' +"1090900": + installDir: "Yes, Master!" launch: - config: oslist: windows @@ -31967,117 +31689,117 @@ type: none - config: oslist: macos - executable: 'Yes, Master!.app/Contents/MacOS/YesMaster' + executable: "Yes, Master!.app/Contents/MacOS/YesMaster" type: none - config: oslist: linux executable: YesMaster.x86_64 type: none -'1090930': +"1090930": installDir: Endless RPG launch: - config: oslist: windows executable: ENDLESS RPG.exe type: none -'1090940': +"1090940": installDir: BLASTAXIS launch: - config: oslist: windows executable: BLASTAXIS.exe type: default -'1090960': +"1090960": installDir: DunkRatz launch: - config: oslist: windows executable: DunkRatz.exe type: default -'1091010': +"1091010": installDir: DarkSwords launch: - executable: DarkSwords.exe type: none -'1091020': {} -'1091040': +"1091020": {} +"1091040": installDir: Sougetsu Ninja launch: - executable: Kikyou.exe type: none -'1091070': +"1091070": installDir: Venandi In Silva launch: - config: oslist: windows executable: VenadiInSilva.exe type: default -'1091090': +"1091090": installDir: They Are Beasts launch: - config: oslist: windows executable: TheyAreBeasts.exe type: none -'1091100': +"1091100": installDir: Devil_catching_bees launch: - executable: Game.exe type: default -'1091110': +"1091110": installDir: Night of the Scarecrows launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: NotS.exe type: default -'1091140': {} -'1091170': +"1091140": {} +"1091170": installDir: Face Your Demons VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: Face_Your_Demons_VR.exe type: vr -'1091180': +"1091180": installDir: Shadowland launch: - executable: shadowland.exe type: none -'1091190': +"1091190": installDir: Web Spice Purple World launch: - executable: Web Spice Purple World.exe type: none -'1091200': +"1091200": installDir: Girl X launch: - executable: GirlX.exe type: default -'1091210': +"1091210": installDir: Kissing Simulator launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Launcher.exe type: default -'1091240': +"1091240": installDir: LOCO launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: LOCO.exe type: default - config: oslist: macos - executable: LOCO.app\\Contents\\MacOS\\LOCO + executable: "LOCO.app\\\\Contents\\\\MacOS\\\\LOCO" type: default -'1091250': +"1091250": installDir: Total Party Kill launch: - config: @@ -32088,7 +31810,7 @@ oslist: macos executable: Total Party Kill.app type: default -'1091260': +"1091260": installDir: Crunch launch: - config: @@ -32097,19 +31819,19 @@ type: none workingdir: bin - config: - osarch: '64' + osarch: "64" oslist: linux executable: bin_linux/Crunch type: none workingdir: bin_linux -'1091270': +"1091270": installDir: Frequency Garden launch: - config: oslist: windows executable: Frequency Garden.exe type: vr -'1091320': +"1091320": installDir: DEPO launch: - config: @@ -32120,91 +31842,77 @@ - config: oslist: macos description: Launch - description_loc: - english: Launch executable: Contents/MacOS/DEPO - config: - osarch: '64' + osarch: "64" oslist: linux executable: DEPO.x86_64 type: none -'1091350': +"1091350": installDir: Valley Run launch: - config: oslist: windows executable: DesertEscape.exe type: vr -'1091370': {} -'1091380': +"1091370": {} +"1091380": installDir: Dain Squares launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch - description_loc: - english: Launch executable: Dain Squares.exe type: default -'1091390': +"1091390": installDir: Demonizer launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: demonizer.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Demonizer-x86_64.AppImage type: default -'1091400': +"1091400": installDir: Online Simulator launch: - config: oslist: windows executable: Online Simulator.exe type: default -'1091440': {} -'1091460': +"1091440": {} +"1091460": installDir: 剑魄 launch: - config: - osarch: '64' + osarch: "64" oslist: windows - realm: steamglobal description: Default - description_loc: - english: Default - sc_schinese: 以默认启动剑魄 - schinese: 以默认配置启动剑魄 executable: SoulOfBlade.exe type: default - - arguments: '-d3d11' + - arguments: "-d3d11" config: - osarch: '64' + osarch: "64" oslist: windows - realm: steamglobal description: 剑魄 JianPo with dx11 (for Win7) - description_loc: - english: 剑魄 JianPo with dx11 (for Win7) - sc_schinese: 以DX11运行剑魄(适用于Win7) - schinese: 以DX11运行剑魄(试用于Win7) executable: SoulOfBlade.exe type: option1 nameLocalized: sc_schinese: 剑魄 -'1091470': +"1091470": installDir: Put In - Run Out launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Put In Run Out.exe type: default -'1091500': +"1091500": installDir: Cyberpunk 2077 launch: - executable: redprelauncher.exe @@ -32212,54 +31920,54 @@ - config: betakey: pc_preview_a description: Cyberpunk2077 early access - executable: bin\\x64\\Cyberpunk2077.exe + executable: "bin\\\\x64\\\\Cyberpunk2077.exe" type: default nameLocalized: schinese: 赛博朋克 2077 -'1091510': {} -'1091520': +"1091510": {} +"1091520": installDir: (Malicious Dinner) launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: start(开始) executable: GameLauncher.exe type: default - config: oslist: macos - executable: GameLauncher.app\\Contents\\MacOS\\GameLauncher + executable: "GameLauncher.app\\\\Contents\\\\MacOS\\\\GameLauncher" type: none -'1091530': {} -'1091540': +"1091530": {} +"1091540": installDir: Gratuitous Animal Massacre launch: - config: oslist: windows executable: I HATE Animals.exe type: default -'1091550': +"1091550": installDir: Attract Fragments 5 launch: - executable: AF5.exe type: none -'1091570': +"1091570": installDir: Transporter Truck Simulator launch: - config: oslist: windows executable: Transporter Truck Simulator.exe type: default -'1091580': +"1091580": installDir: GameDevVR launch: - executable: GameDevVR.exe type: vr -'1091590': +"1091590": installDir: Cathedral 3-D launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: cathedral-3d.exe type: default @@ -32268,12 +31976,12 @@ executable: cathedral-3d.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: run-cathedral-3d.sh type: default -'1091620': {} -'1091640': +"1091620": {} +"1091640": installDir: Paths Taken launch: - config: @@ -32281,47 +31989,47 @@ executable: Paths Taken.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Paths Taken.sh type: default -'1091670': +"1091670": installDir: Absolute Fall launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: Absolute Fall.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: Absolute Fall.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: AbsoluteFall.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: AbsoluteFall.x86_64 type: default - config: oslist: macos - executable: AbsoluteFall.app\\Contents\\MacOS\\AbsoluteFall + executable: "AbsoluteFall.app\\\\Contents\\\\MacOS\\\\AbsoluteFall" type: default -'1091690': +"1091690": installDir: Timeless launch: - executable: Timeless.exe type: none -'1091720': +"1091720": installDir: Ballade with Memories launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Ballade1.exe type: default @@ -32329,21 +32037,21 @@ oslist: macos executable: Ballade1.app/Contents/MacOS/Ballade1 type: default -'1091840': {} -'1091860': {} -'1091870': {} -'1091910': +"1091840": {} +"1091860": {} +"1091870": {} +"1091910": installDir: PonGlow launch: - config: oslist: windows executable: Ponglow.exe type: default -'1091920': +"1091920": installDir: Plantera 2 Golden Acorn launch: - executable: Plantera2.exe -'1091960': +"1091960": installDir: Drowning Cross launch: - config: @@ -32356,13 +32064,13 @@ type: none - config: oslist: macos - executable: cross.app\\Contents\\MacOS\\cross + executable: "cross.app\\\\Contents\\\\MacOS\\\\cross" type: none -'1091980': - installDir: The Bard's Tale IV Director's Cut +"1091980": + installDir: "The Bard's Tale IV Director's Cut" launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: BardsTale4.exe type: default @@ -32374,23 +32082,23 @@ oslist: linux executable: BardsTale4.sh type: none -'109200': +"109200": installDir: Legend of Fae launch: - executable: legend_of_fae.exe -'1092040': +"1092040": installDir: BomjMan launch: - config: oslist: windows executable: BomjProject.exe type: none -'1092060': +"1092060": installDir: Hiscores! Gold launch: - executable: HSG.exe type: none -'1092070': +"1092070": installDir: Pencil vs. Eraser launch: - config: @@ -32401,35 +32109,35 @@ oslist: macos executable: pencil-vs-eraser.app type: default -'1092080': +"1092080": installDir: Pet Puzzle launch: - executable: Pet Puzzle.exe type: none -'1092140': +"1092140": installDir: Exit From launch: - - arguments: '-dx11 -whitebox64 -whiteboxwindows' + - arguments: "-dx11 -whitebox64 -whiteboxwindows" config: - osarch: '64' + osarch: "64" oslist: windows description: Exit From x64 DirectX11 - executable: \\ExitFrom\\Binaries\\Win64\\ExitFrom-Win64-Shipping.exe + executable: "\\\\ExitFrom\\\\Binaries\\\\Win64\\\\ExitFrom-Win64-Shipping.exe" type: option1 - workingdir: \\ExitFrom\\Binaries\\Win64 - - arguments: '-dx12 -whitebox64 -whiteboxwindows' + workingdir: "\\\\ExitFrom\\\\Binaries\\\\Win64" + - arguments: "-dx12 -whitebox64 -whiteboxwindows" config: - osarch: '64' + osarch: "64" oslist: windows description: Exit From x64 DirectX12 - executable: \\ExitFrom\\Binaries\\Win64\\ExitFrom-Win64-Shipping.exe + executable: "\\\\ExitFrom\\\\Binaries\\\\Win64\\\\ExitFrom-Win64-Shipping.exe" type: option2 - workingdir: \\ExitFrom\\Binaries\\Win64 -'1092150': + workingdir: "\\\\ExitFrom\\\\Binaries\\\\Win64" +"1092150": installDir: DrainLive launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: DrainLive.exe @@ -32439,112 +32147,112 @@ executable: DrainLive.app type: none - config: - osarch: '32' + osarch: "32" oslist: windows executable: DrainLive.exe type: default -'1092160': +"1092160": installDir: Identity Sector launch: - config: oslist: windows executable: Identity Sector.exe type: default -'1092170': +"1092170": installDir: Mythical BOOM Party launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: MythicalBOOMParty\\Mythical BOOM Party.exe + executable: "MythicalBOOMParty\\\\Mythical BOOM Party.exe" type: default -'1092180': +"1092180": installDir: vollun launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: vollun.exe type: default -'1092190': +"1092190": installDir: Astonishing Baseball 2019 launch: - config: oslist: windows executable: ab19.exe type: default -'1092260': +"1092260": installDir: Come on Baby! launch: - config: oslist: windows executable: ComeonBaby.exe type: none -'1092270': +"1092270": installDir: Hunt the Thailand Hidden launch: - config: oslist: windows executable: Hunt the Thailand Hidden.exe type: vr -'1092300': +"1092300": installDir: Drone Racer launch: - arguments: novr config: - osarch: '64' + osarch: "64" oslist: windows executable: DroneRacer.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: DroneRacer.exe type: vr -'1092400': +"1092400": installDir: MoonFall launch: - config: oslist: windows executable: MoonFall_Full.exe type: default -'1092430': +"1092430": installDir: Budget Cuts 2 Mission Insolvency launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Budget Cuts 2.exe type: vr -'1092500': +"1092500": installDir: AQUARYOUNS World launch: - config: oslist: windows executable: AQW.exe type: default - - arguments: '-url=https://lemon.aquaryouns.com/v1' + - arguments: "-url=https://lemon.aquaryouns.com/v1" config: betakey: prelive oslist: windows description: PreLive Lemon executable: AQW.exe type: none - - arguments: '-url=http://gf.stage.djamacat.com:12080/AqW-Gateway/api/v1' + - arguments: "-url=http://gf.stage.djamacat.com:12080/AqW-Gateway/api/v1" config: betakey: developer oslist: windows description: Dev Kane executable: AQW.exe type: none - - arguments: '-url=http://gf.stage.djamacat.com:11080/AqW-Gateway/api/v1' + - arguments: "-url=http://gf.stage.djamacat.com:11080/AqW-Gateway/api/v1" config: betakey: developer oslist: windows description: Dev Fred executable: AQW.exe type: none - - arguments: '-url=http://localhost:8080/AqW-Gateway/api/v1' + - arguments: "-url=http://localhost:8080/AqW-Gateway/api/v1" config: betakey: developer oslist: windows @@ -32557,42 +32265,42 @@ executable: AQW.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: live executable: AQW.x64 type: none - - arguments: '-url=https://lemon.aquaryouns.com/v1' + - arguments: "-url=https://lemon.aquaryouns.com/v1" config: betakey: prelive oslist: macos description: PreLive Lemon executable: AQW.app type: none - - arguments: '-url=http://gf.stage.djamacat.com:12080/AqW-Gateway/api/v1' + - arguments: "-url=http://gf.stage.djamacat.com:12080/AqW-Gateway/api/v1" config: betakey: developer oslist: macos description: Dev Kane executable: AQW.app type: none - - arguments: '-url=https://lemon.aquaryouns.com/v1' + - arguments: "-url=https://lemon.aquaryouns.com/v1" config: betakey: prelive - osarch: '64' + osarch: "64" oslist: linux description: PreLive Lemon executable: AQW.x64 type: none - - arguments: '-url=http://gf.stage.djamacat.com:12080/AqW-Gateway/api/v1' + - arguments: "-url=http://gf.stage.djamacat.com:12080/AqW-Gateway/api/v1" config: betakey: developer - osarch: '64' + osarch: "64" oslist: linux description: Dev Kane executable: AQW.x64 type: none -'1092510': +"1092510": installDir: Incredible Dracula 4 Games Of Gods launch: - config: @@ -32601,10 +32309,9 @@ type: default - config: oslist: macos - executable: >- - Incredible_Dracula_IV_Games_Of_Gods_Collector's_Edition.app\\Contents\\MacOS\\Incredible_Dracula_IV_Games_Of_Gods_Collector's_Edition + executable: "Incredible_Dracula_IV_Games_Of_Gods_Collector's_Edition.app\\\\Contents\\\\MacOS\\\\Incredible_Dracula_IV_Games_Of_Gods_Collector's_Edition" type: default -'1092530': +"1092530": installDir: Anthology of Fear launch: - config: @@ -32612,22 +32319,22 @@ executable: Anthology of Fear.exe type: default nameLocalized: - schinese: ' 恐怖录像带' -'1092560': {} -'1092580': + schinese: " 恐怖录像带" +"1092560": {} +"1092580": installDir: Bikerz launch: - executable: Bikerz.exe type: none -'1092590': +"1092590": installDir: Road launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Pack.exe type: default -'1092630': +"1092630": installDir: RogueGlitch launch: - config: @@ -32638,70 +32345,70 @@ oslist: macos executable: Mac.app type: default - - arguments: '-Twitch' + - arguments: "-Twitch" config: oslist: windows description: the TwitchMod! executable: RogueGlitch.exe type: option1 -'1092650': +"1092650": installDir: GraFi 2 launch: - config: oslist: windows executable: GraFi 2.exe type: default -'1092660': +"1092660": installDir: Blair Witch launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Blairwitch.exe type: default - - arguments: '-Short' + - arguments: "-Short" config: betakey: bwp_shortdemo - osarch: '64' + osarch: "64" oslist: windows description: BWP_ShortDemo executable: Blairwitch.exe type: option1 - config: - osarch: '64' + osarch: "64" oslist: linux executable: Blairwitch.sh type: default -'1092680': {} -'1092700': +"1092680": {} +"1092700": installDir: Hello Neighbor Pre-Alpha launch: - config: oslist: windows executable: HelloNeighbour.exe type: none -'1092710': +"1092710": installDir: Hello Neighbor Alpha 1 launch: - config: oslist: windows executable: HelloNeighborReborn.exe type: default -'1092720': +"1092720": installDir: Hello Neighbor Alpha 2 launch: - config: oslist: windows executable: HelloNeighborReborn.exe type: default -'1092730': +"1092730": installDir: Hello Neighbor Alpha 3 launch: - config: oslist: windows executable: HelloNeighborReborn.exe type: default -'1092750': +"1092750": installDir: Boon Boon launch: - config: @@ -32712,14 +32419,14 @@ oslist: linux executable: BoonBoon type: default -'1092760': +"1092760": installDir: Story in the Dream World 1 launch: - config: oslist: windows executable: Story in the Dream World -VaP-.exe type: default -'1092780': +"1092780": installDir: Depixtion launch: - config: @@ -32728,13 +32435,13 @@ type: default - config: oslist: macos - executable: Depixtion.app\\Contents\\MacOS\\Depixtion + executable: "Depixtion.app\\\\Contents\\\\MacOS\\\\Depixtion" type: default - config: oslist: linux executable: Depixtion.x86_64 type: default -'1092790': +"1092790": installDir: Inscryption launch: - config: @@ -32755,42 +32462,38 @@ betakey: devolver_qa oslist: macos description: For QA Testing - description_loc: - english: For QA Testing executable: Inscryption.app type: default - config: betakey: devolver_qa oslist: linux description: For QA Testing - description_loc: - english: For QA Testing executable: Inscryption.x86 type: default -'1092800': +"1092800": installDir: Summit of the Wolf launch: - config: oslist: windows executable: Summit of the Wolf Steam.exe type: default -'1092830': +"1092830": installDir: Coffee Runner Black and Mocha launch: - config: oslist: windows executable: FinalFinal.exe type: none -'1092850': +"1092850": installDir: Zeus Begins launch: - config: oslist: windows executable: Zeus Begins.exe type: none -'1092870': {} -'1092900': {} -'1092950': +"1092870": {} +"1092900": {} +"1092950": installDir: Piposh launch: - config: @@ -32805,61 +32508,61 @@ oslist: linux executable: Piposh.x86_64 type: none -'1092980': +"1092980": installDir: Mountain Taxi Driver launch: - config: oslist: windows executable: Mountain Taxi Driver.exe type: default -'1093020': {} -'1093120': +"1093020": {} +"1093120": installDir: Box Labyrinth launch: - config: oslist: windows executable: Box Labyrinth.exe type: none -'1093130': - installDir: Ms. Holmes The Monster of the Baskervilles Collector's Edition +"1093130": + installDir: "Ms. Holmes The Monster of the Baskervilles Collector's Edition" launch: - config: oslist: windows executable: MsHolmes_TheMonsterOfTheBaskervilles_CE.exe type: default -'1093150': - installDir: 'Just Sleep - Meditate, Focus, Relax' +"1093150": + installDir: "Just Sleep - Meditate, Focus, Relax" launch: - config: oslist: windows executable: Just Sleep.exe type: default -'1093170': +"1093170": installDir: Monstrum 2 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Monstrum 2 Launcher.exe type: default -'1093180': {} -'1093220': +"1093180": {} +"1093220": installDir: Eat this! launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: EatThis.exe type: vr -'1093240': {} -'1093280': +"1093240": {} +"1093280": installDir: Ancient Stories Gods of Egypt launch: - config: oslist: windows executable: AncientStories_GodsOfEgypt.exe type: default -'1093290': +"1093290": installDir: The Wild at Heart launch: - config: @@ -32869,51 +32572,49 @@ - config: oslist: macos description: Mac - description_loc: - english: Mac - executable: The Wild at Heart.app\\Contents\\MacOS\\The Wild at Heart + executable: "The Wild at Heart.app\\\\Contents\\\\MacOS\\\\The Wild at Heart" type: default -'1093300': +"1093300": installDir: NOYO-! launch: - config: oslist: windows executable: NOYO.exe type: default -'1093320': - installDir: Devil's Deck +"1093320": + installDir: "Devil's Deck" launch: - config: oslist: windows - executable: Devil'sDeck.exe + executable: "Devil'sDeck.exe" type: default -'1093330': +"1093330": installDir: Conscious Existence - A Journey Within launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Player.exe type: vr -'1093360': +"1093360": installDir: Ghost Parade Suri and the Svaka Forest launch: - config: oslist: windows executable: Ghost Parade.exe type: default -'1093370': +"1093370": installDir: Hexelectric launch: - config: oslist: windows executable: Hexelectric.exe type: default -'1093390': +"1093390": installDir: Profane launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Profane.exe type: none @@ -32921,28 +32622,28 @@ oslist: macos executable: Profane.app type: none -'1093520': +"1093520": installDir: Un Pas Fragile launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Un Pas Fragile.exe type: none - config: - osarch: '32' + osarch: "32" oslist: windows executable: Un Pas Fragile.exe type: none - config: oslist: macos - executable: unpasfragile.app\\Contents\\MacOS\\nwjs + executable: "unpasfragile.app\\\\Contents\\\\MacOS\\\\nwjs" type: none - config: oslist: linux executable: nw type: none -'1093670': +"1093670": installDir: ATTACK OF THE EVIL POOP launch: - config: @@ -32951,18 +32652,18 @@ type: default - config: oslist: macos - executable: Contents\\MacOS\\MAC + executable: "Contents\\\\MacOS\\\\MAC" type: default -'1093690': +"1093690": installDir: Couch Storm Battle Royale launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: BattleRoyale.exe type: none -'1093710': {} -'1093720': +"1093710": {} +"1093720": installDir: SlipSlop launch: - config: @@ -32973,16 +32674,16 @@ oslist: linux executable: SlipSlop.x86_64 type: default -'1093750': - installDir: John's Wizard Tower +"1093750": + installDir: "John's Wizard Tower" launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: JohnsWizardDungeon.exe type: vr -'1093760': - installDir: Shogun's Empire Hex Commander +"1093760": + installDir: "Shogun's Empire Hex Commander" launch: - config: oslist: windows @@ -32996,7 +32697,7 @@ oslist: linux executable: Shogun.x86_64 type: default -'1093770': +"1093770": installDir: Chlorophos launch: - config: @@ -33007,7 +32708,7 @@ oslist: macos executable: Chlorophos_a.app type: none -'1093790': +"1093790": installDir: Seals of the Bygone launch: - config: @@ -33018,56 +32719,56 @@ oslist: macos executable: SotB.app type: default -'1093800': - installDir: Zeke's Peak +"1093800": + installDir: "Zeke's Peak" launch: - config: oslist: windows executable: Zekes Peak.exe type: default -'1093810': {} -'1093820': {} -'1093830': +"1093810": {} +"1093820": {} +"1093830": installDir: Asterism launch: - executable: Asterism.exe type: none -'1093840': +"1093840": installDir: Night Signal launch: - config: oslist: windows executable: Night Signal.exe type: default -'1093850': +"1093850": installDir: JoustMania launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: piparty.exe type: default -'1093860': {} -'1093870': +"1093860": {} +"1093870": installDir: Box launch: - config: oslist: windows executable: Block.exe type: default -'1093900': +"1093900": installDir: ShenMou launch: - executable: 神谋.exe type: none -'1093910': +"1093910": installDir: Tales of the Black Forest launch: - config: oslist: windows executable: Game.exe type: none -'1093920': +"1093920": installDir: ORTHOISO launch: - config: @@ -33076,56 +32777,56 @@ type: default - config: oslist: macos - executable: Contents\\MacOS\\OrthoIso + executable: "Contents\\\\MacOS\\\\OrthoIso" type: default -'1093950': +"1093950": installDir: Inbound UFO launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Inbound UFO.exe type: default -'109400': +"109400": installDir: MicroVolts launch: - arguments: STEAM - description: '' + description: "" executable: Launcher.exe - workingdir: '' -'1094000': + workingdir: "" +"1094000": installDir: Survive on Raft launch: - executable: Survive on Raft.exe type: none nameLocalized: - russian: 'Survive on Raft: Рафт и выживание' -'1094010': + russian: "Survive on Raft: Рафт и выживание" +"1094010": installDir: Stickman League launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: BluestacksGP.exe type: default nameLocalized: schinese: 火柴人联盟2 -'1094020': +"1094020": installDir: Journey of the world launch: - - executable: \\theworld_all\\Game.exe + - executable: "\\\\theworld_all\\\\Game.exe" type: default - - executable: \\Game.exe + - executable: "\\\\Game.exe" type: none -'1094030': +"1094030": installDir: Lurk in the Dark Prologue launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Lurk in the Dark Prologue.exe type: default -'1094050': +"1094050": installDir: INTERSTELLAR ROGUE launch: - config: @@ -33144,13 +32845,13 @@ - description: 3.0 version for people who cant run later versions executable: INTERSTELLAR ROGUE 3.exe type: none - - description: 'latest build, saves are not compatible between version' + - description: "latest build, saves are not compatible between version" executable: INTERSTELLAR ROGUE L.exe type: none - description: 1.0 version for people who cant run later versions executable: INTERSTELLAR ROGUE 1.exe type: none -'1094060': +"1094060": installDir: EscapeFirst2 launch: - config: @@ -33158,40 +32859,40 @@ description: Play on desktop - No VR executable: EscapeFirst2.exe type: default - - arguments: '-inVR' + - arguments: "-inVR" config: oslist: windows description: Play in SteamVR executable: EscapeFirst2.exe type: vr - - arguments: '-safeMode -show-screen-selector' + - arguments: "-safeMode -show-screen-selector" config: oslist: windows description: Opens pre-game options and disables gamepad executable: EscapeFirst2.exe type: config -'1094070': +"1094070": installDir: Fares launch: - config: oslist: windows - executable: '${Fares}.exe' + executable: "${Fares}.exe" type: default -'1094080': +"1094080": installDir: Valley of Decay launch: - config: oslist: windows executable: VoDClient_v1.16c.exe type: none -'1094110': +"1094110": installDir: WEJAM launch: - config: oslist: windows executable: WEJAM.exe type: default -'1094120': +"1094120": installDir: Bepuzzled launch: - config: @@ -33202,85 +32903,85 @@ oslist: macos executable: Bepuzzled.app type: default -'1094130': +"1094130": installDir: Bugs! launch: - config: oslist: windows executable: Bugs!.exe type: default -'1094170': +"1094170": installDir: The Hunters Journals; Pale Harbour launch: - config: oslist: windows executable: The Hunters Journals; Pale Harbour.exe type: default -'1094190': +"1094190": installDir: 故郷をさがす三姉妹 launch: - config: oslist: windows executable: 故郷をさがす三姉妹.exe type: default -'1094250': +"1094250": installDir: It Stares Back launch: - config: oslist: windows executable: It Stares Back.exe type: none -'1094290': +"1094290": installDir: ButterflyRin launch: - config: oslist: windows executable: Game.exe type: default -'1094320': +"1094320": installDir: 莫比乌斯之环-不属于任何人的交响悲歌-MOBIUS & ELEGY BELONGS TO NOBODY launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Mobius.exe type: none - config: oslist: macos - executable: Contents\\MacOS\\Mobius_Steam + executable: "Contents\\\\MacOS\\\\Mobius_Steam" type: none -'1094340': +"1094340": installDir: Cardboard Ground launch: - config: oslist: windows executable: Cardboard Ground.exe type: default -'1094390': +"1094390": installDir: Waltz of the Wizard Extended Edition launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Waltz of the Wizard Extended Edition.exe type: vr - config: betakey: omega - osarch: '64' + osarch: "64" oslist: windows description: Test executable: /Witchcraft/Waltz of the Wizard Witchcraft.exe type: vr workingdir: /Witchcraft/ -'1094400': +"1094400": installDir: Twin Ruin launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TwinRuin.exe type: default -'1094420': +"1094420": installDir: Rainy Season launch: - config: @@ -33291,7 +32992,7 @@ english: Rainy Season japanese: 梅雨の日 schinese: 梅雨之日 -'1094440': +"1094440": installDir: Highball launch: - config: @@ -33299,14 +33000,14 @@ description: Launch executable: Highball.exe type: default -'1094460': +"1094460": installDir: Tiger Tank 59 Ⅰ Battleship launch: - config: oslist: windows executable: game.exe type: default -'1094520': +"1094520": installDir: DesertLegend launch: - config: @@ -33317,7 +33018,7 @@ english: Sands of Salzaar sc_schinese: 部落与弯刀 schinese: 部落与弯刀 -'1094530': +"1094530": installDir: aliascarnival launch: - executable: ALIAsCARNIVAL.exe @@ -33327,7 +33028,7 @@ japanese: ALIA’s CARNIVAL! schinese: 爱丽娅的明日盛典! tchinese: 愛麗婭的明日盛典! -'1094540': +"1094540": installDir: Smelter launch: - config: @@ -33337,36 +33038,34 @@ nameLocalized: schinese: 夏娃战记 tchinese: 夏娃戰記 -'1094580': +"1094580": installDir: Ecio launch: - config: oslist: windows - executable: Ecio\\nw.exe + executable: "Ecio\\\\nw.exe" type: none -'1094590': +"1094590": installDir: Helvetii launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Helvetii.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Helvetii.x86_64 type: default -'1094600': {} -'1094630': +"1094600": {} +"1094630": installDir: Aircraft War launch: - - arguments: '-steam' + - arguments: "-steam" config: oslist: windows description: Aircraft War Play - description_loc: - english: Aircraft War Play executable: AircraftWar.exe type: default - config: @@ -33377,22 +33076,18 @@ oslist: windows executable: RepairTool.exe type: config -'1094640': - installDir: True Love '95 +"1094640": + installDir: "True Love '95" launch: - config: oslist: windows description: True Love ’95 - description_loc: - english: True Love ’95 executable: TL_RenPy/TrueLove.exe type: option1 - config: - osarch: '32' + osarch: "32" oslist: windows description: True Love ’95 - description_loc: - english: True Love ’95 executable: TL_RenPy/TrueLove-32.exe type: option1 - config: @@ -33406,39 +33101,33 @@ - config: oslist: windows description: True Love ’95 Classic (Windowed Version) - description_loc: - english: True Love ’95 Classic (Windowed Version) executable: T_LOVE95 WINDOWED.EXE type: option1 - config: oslist: windows description: True Love ’95 Classic (Full Screen Version) - description_loc: - english: True Love ’95 Classic (Full Screen Version) executable: T_LOVE95.EXE type: option1 - description: Show Manual - description_loc: - english: Show Manual executable: Help/index.html type: manual -'1094660': +"1094660": installDir: EBOLA launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: EBOLA.exe type: default -'1094690': +"1094690": installDir: Imagination launch: - - arguments: '-logFile output_log.txt' + - arguments: "-logFile output_log.txt" config: oslist: windows executable: Imagination.exe type: default -'1094710': +"1094710": installDir: Royal Crown launch: - executable: RoyalCrown.exe @@ -33446,37 +33135,37 @@ nameLocalized: koreana: 로얄 크라운 tchinese: 皇家冠冕 -'1094720': - installDir: Clive 'N' Wrench - 3D Action Platformer +"1094720": + installDir: "Clive 'N' Wrench - 3D Action Platformer" launch: - config: oslist: windows - executable: Clive 'N' Wrench.exe -'1094730': + executable: "Clive 'N' Wrench.exe" +"1094730": installDir: BlackLegend launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: blacklegend.exe type: none -'1094760': +"1094760": installDir: StoneDeep launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: StoneDeep.exe type: default -'1094780': +"1094780": installDir: theFisher Online launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: theFisher.exe type: default -'1094820': +"1094820": installDir: Adabana Odd Tales launch: - config: @@ -33486,19 +33175,19 @@ nameLocalized: english: Adabana Odd Tales japanese: 徒花異譚 -'1094870': +"1094870": installDir: Acron Attack of the Squirrels launch: - config: oslist: windows executable: acron.exe type: vr -'1094880': +"1094880": installDir: Vegas Slot launch: - executable: Vegas Slot.exe type: none -'1094920': +"1094920": installDir: Hazel Sky launch: - config: @@ -33509,28 +33198,28 @@ sc_schinese: 彼岸晴空 schinese: 彼岸晴空 tchinese: 彼岸晴空 -'1094930': +"1094930": installDir: Ninja Girl and the Mysterious Army of Urban Legend Monsters! ~Hunt of the Headless Horseman~ launch: - executable: NinjaGirl.exe type: none -'1094960': +"1094960": installDir: Soul Scathe launch: - config: oslist: windows - executable: Soul Scathe\\Soul Scathe.exe + executable: "Soul Scathe\\\\Soul Scathe.exe" type: vr -'109500': +"109500": installDir: Fowl Space launch: - - executable: Fowl Space.air\\Fowl Space.exe -'1095040': - installDir: Unexplored 2 The Wayfarer's Legacy + - executable: "Fowl Space.air\\\\Fowl Space.exe" +"1095040": + installDir: "Unexplored 2 The Wayfarer's Legacy" launch: - executable: Unexplored2.exe type: default -'1095070': +"1095070": installDir: Sideral launch: - config: @@ -33539,9 +33228,9 @@ type: default - config: oslist: macos - executable: Contents\\MacOS\\Sideral + executable: "Contents\\\\MacOS\\\\Sideral" type: default -'1095120': +"1095120": installDir: Helheim Hassle launch: - config: @@ -33550,40 +33239,40 @@ type: default - config: oslist: macos - executable: Helheim Hassle.app\\Contents\\MacOS\\Helheim Hassle + executable: "Helheim Hassle.app\\\\Contents\\\\MacOS\\\\Helheim Hassle" type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Helheim Hassle.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Helheim Hassle.x86_64 type: default -'1095140': +"1095140": installDir: PrimeOrbial launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: JoyBall.exe type: default -'1095200': +"1095200": installDir: CYNOROID -GENTAGELSE- v1.32 launch: - executable: CYNOROID-GENTAGELSE-.exe type: none -'1095230': {} -'1095260': +"1095230": {} +"1095260": installDir: AirtightCity launch: - executable: The Airtight City2020.exe type: none nameLocalized: schinese: 密闭之城 1.0 -'1095290': +"1095290": installDir: ZombieSoup launch: - config: @@ -33592,27 +33281,27 @@ type: default - config: oslist: macos - executable: Zombiesoup.app\\Contents\\MacOS\\Zombiesoup-Mac-Shipping + executable: "Zombiesoup.app\\\\Contents\\\\MacOS\\\\Zombiesoup-Mac-Shipping" type: default nameLocalized: japanese: ゾンビスープ schinese: 丧灵激汤 tchinese: 喪靈激湯 -'1095300': +"1095300": installDir: Tiger Tank 59 Ⅰ Super Tank launch: - config: oslist: windows executable: game.exe type: default -'1095320': +"1095320": installDir: Revenge on the Streets_win32 launch: - config: oslist: windows executable: nw.exe type: default -'1095370': +"1095370": installDir: Voxel Bot launch: - config: @@ -33623,7 +33312,7 @@ oslist: linux executable: Voxel Bot Ubuntu.x86_64 type: none -'1095380': +"1095380": installDir: Bepuzzled Kittens Jigsaw Puzzle launch: - config: @@ -33634,16 +33323,16 @@ oslist: macos executable: BepuzzledKittensMacA1.app type: default -'1095400': +"1095400": installDir: Cryptographer launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Cryptographer.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Cryptographer.x86_64 type: default @@ -33651,92 +33340,92 @@ oslist: macos executable: Cryptographer/Cryptographer.app type: default -'1095450': +"1095450": installDir: PuzzleWalker launch: - config: oslist: windows executable: Dimension.exe type: default -'1095480': {} -'1095520': +"1095480": {} +"1095520": installDir: The Itch launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Testing executable: The Itch.exe type: default -'1095540': +"1095540": installDir: 原体 launch: - config: oslist: windows executable: FPSDemo.exe type: default -'1095550': +"1095550": installDir: Pumpkin Dog Islands launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Pumpkin Dog Islands.exe type: default -'1095560': {} -'1095590': - installDir: ' Avant-Garde Discerning Paralleler' +"1095560": {} +"1095590": + installDir: " Avant-Garde Discerning Paralleler" launch: - config: oslist: windows executable: th_ADP.exe type: none -'1095610': +"1095610": installDir: Just N launch: - executable: Just N.exe type: none -'1095650': +"1095650": installDir: Island 1979 launch: - config: oslist: windows executable: Island1979.exe type: none -'1095680': +"1095680": installDir: Beyond the Wizard launch: - executable: Beyond the Wizard.exe type: default -'1095700': +"1095700": installDir: Joyfess I launch: - config: oslist: windows executable: Joyfess I.exe type: default -'1095710': +"1095710": installDir: Björk Vulnicura Virtual Reality Album launch: - config: oslist: windows executable: BjorkVulnicura_Vive.exe type: vr -'1095750': +"1095750": installDir: Faith of Fate launch: - executable: Faith of Fate.exe type: default -'1095760': {} -'1095790': +"1095760": {} +"1095790": installDir: love date launch: - - arguments: '-windowed' + - arguments: "-windowed" config: oslist: windows executable: nw.exe type: default -'1095810': +"1095810": installDir: WhiteBird launch: - config: @@ -33747,21 +33436,19 @@ oslist: macos executable: WhiteBirdOs.app type: default -'1095820': +"1095820": installDir: Boogie Bot launch: - config: oslist: windows description: Windows - description_loc: - english: Windows executable: Boogie Bot v1.03.exe type: default - config: oslist: macos executable: Boogie Bot v1.03 mac.app type: default -'1095840': +"1095840": installDir: Fairytale Solitaire Red Riding Hood launch: - config: @@ -33772,7 +33459,7 @@ oslist: macos executable: Fairytale Solitaire. Red Riding Hood.app type: default -'1095850': +"1095850": installDir: 1001 Jigsaw. 6 Magic Elements launch: - config: @@ -33783,18 +33470,18 @@ oslist: macos executable: 1001 Jigsaw. 6 Magic elements.app type: default -'1095860': - installDir: Mystery Solitaire Grimm's tales 2 +"1095860": + installDir: "Mystery Solitaire Grimm's tales 2" launch: - config: oslist: windows - executable: Mystery Solitaire. Grimm's tales 2.exe + executable: "Mystery Solitaire. Grimm's tales 2.exe" type: default - config: oslist: macos - executable: Mystery Solitaire. Grimm's tales 2.app + executable: "Mystery Solitaire. Grimm's tales 2.app" type: default -'1095870': +"1095870": installDir: 1001 Jigsaw. World Tour France launch: - config: @@ -33805,34 +33492,34 @@ oslist: macos executable: 1001 Jigsaw. World Tour France.app type: default -'1095980': +"1095980": installDir: Charge launch: - config: - osarch: '64' + osarch: "64" oslist: linux description: Linux launcher executable: launch.sh type: default - config: - osarch: '64' + osarch: "64" oslist: windows description: Windows launcher executable: launch.vbs type: default -'1095990': {} -'109600': +"1095990": {} +"109600": installDir: Cryptic Studios launch: - - arguments: '-affiliate \"appid=109600\" -launchedfrom steam - ' + - arguments: "-affiliate \\\"appid=109600\\\" -launchedfrom steam - " executable: Neverwinter.exe type: none -'1096000': +"1096000": installDir: Too White Basketball launch: - executable: TWB.exe type: default -'1096010': +"1096010": installDir: Hentai Sudoku launch: - config: @@ -33843,8 +33530,8 @@ oslist: macos executable: hsd.app type: default -'1096090': {} -'1096100': +"1096090": {} +"1096100": installDir: Skellboy launch: - config: @@ -33857,38 +33544,38 @@ type: none - config: oslist: macos - executable: Skellboy.app\\Contents\\MacOS\\Skellboy + executable: "Skellboy.app\\\\Contents\\\\MacOS\\\\Skellboy" type: none -'1096120': +"1096120": installDir: Fallen valiant-Loopy launch: - config: oslist: windows - executable: 001\\Game.exe + executable: "001\\\\Game.exe" type: default - config: oslist: macos - executable: 001\\Game.app + executable: "001\\\\Game.app" type: default -'1096130': +"1096130": installDir: Rose Riddle 2 Werewolf Shadow launch: - config: oslist: windows executable: RoseRiddle2_WerewolfShadow.exe type: default -'1096140': +"1096140": installDir: Timemelters launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Timemelters.exe type: default -'1096200': +"1096200": installDir: The Orville - Interactive Fan Experience launch: - - arguments: '-dx11' + - arguments: "-dx11" config: oslist: windows description: (DirectX11 - No RayTracing Support) @@ -33897,41 +33584,41 @@ - config: oslist: macos description: Launch - executable: OrvilleFanGame.app\\Contents\\MacOS\\OrvilleFanGame + executable: "OrvilleFanGame.app\\\\Contents\\\\MacOS\\\\OrvilleFanGame" type: default - config: oslist: windows description: (DirectX12 - RayTracing Support) executable: /WindowsNoEditor/OrvilleFanGame.exe type: option2 - - arguments: '-vr' + - arguments: "-vr" config: betakey: v1.0.12 oslist: windows description: VR executable: /WindowsNoEditor/OrvilleFanGame.exe type: option1 - - arguments: '-vulkan' + - arguments: "-vulkan" config: oslist: windows description: (Vulkan - No RayTracing Support) executable: /WindowsNoEditor/OrvilleFanGame.exe type: option3 -'1096210': +"1096210": installDir: Mekabolt launch: - config: oslist: windows executable: Mekabolt.exe type: default -'1096230': +"1096230": installDir: Decker launch: - config: oslist: windows executable: decker.exe type: default -'1096240': +"1096240": installDir: 7 Lives launch: - config: @@ -33946,15 +33633,15 @@ oslist: macos executable: 7Lives.app type: default -'1096270': {} -'1096300': +"1096270": {} +"1096300": installDir: 九霄缳神记 launch: - config: oslist: windows executable: 九霄缳神记.exe type: none -'1096330': +"1096330": installDir: TFK Faculty launch: - config: @@ -33965,26 +33652,26 @@ oslist: macos executable: TFK_Faculty.app type: none -'1096340': +"1096340": installDir: NOXIAM -miserable sinners- Ver1.00 launch: - config: oslist: windows - executable: windows_content\\NOXIAM\\NOXIAM.exe + executable: "windows_content\\\\NOXIAM\\\\NOXIAM.exe" type: default - config: oslist: windows - executable: windows_content\\NOXIAM\\NOXIAM.exe + executable: "windows_content\\\\NOXIAM\\\\NOXIAM.exe" type: othervr - config: oslist: windows - executable: windows_content\\NOXIAM\\NOXIAM.exe + executable: "windows_content\\\\NOXIAM\\\\NOXIAM.exe" type: vr -'1096410': +"1096410": installDir: Vampire The Masquerade - Coteries of New York launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: VtM Coteries of New York.exe type: default @@ -34014,31 +33701,31 @@ description: development build executable: DEVELOPMENT_BUILD/VtM Coteries of New York.x86_64 type: option1 -'1096420': +"1096420": installDir: RePainter launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: RePainter\\RePainter.exe + executable: "RePainter\\\\RePainter.exe" type: default - config: oslist: macos - executable: RePainter.app\\Contents\\MacOS\\RePainter + executable: "RePainter.app\\\\Contents\\\\MacOS\\\\RePainter" type: default -'1096510': +"1096510": installDir: Seven Nations launch: - executable: Seven Nations.exe type: none -'1096520': +"1096520": installDir: Venture Seas launch: - config: oslist: windows - executable: bin\\Launch.exe + executable: "bin\\\\Launch.exe" type: default -'1096530': +"1096530": installDir: Slasta_COTM launch: - config: @@ -34049,7 +33736,7 @@ oslist: macos executable: Solasta.app type: none -'1096560': +"1096560": installDir: Windy Kingdom launch: - config: @@ -34060,23 +33747,23 @@ oslist: macos executable: Windy Kingdom.app type: default -'1096570': +"1096570": installDir: SongOfHorror launch: - - arguments: '-fullscreen' + - arguments: "-fullscreen" config: - osarch: '64' + osarch: "64" oslist: windows executable: SongOfHorror.exe type: none -'1096590': +"1096590": installDir: Atma launch: - config: oslist: windows executable: Atma_V1.1.3.exe type: default -'1096610': +"1096610": installDir: Incident Commander launch: - config: @@ -34085,42 +33772,42 @@ type: default - config: oslist: macos - executable: Incident Commander.app\\Contents\\MacOS\\Incident Commander + executable: "Incident Commander.app\\\\Contents\\\\MacOS\\\\Incident Commander" type: default -'1096630': +"1096630": installDir: Space Mercenary Shooter Episode 1 launch: - config: oslist: windows executable: SMS.exe type: default -'1096650': +"1096650": installDir: CUBG launch: - config: oslist: windows executable: CUBG.exe type: none -'1096690': +"1096690": installDir: MightyFight launch: - config: oslist: windows executable: mff.exe type: default -'1096710': +"1096710": installDir: Hello Neighbor Alpha 4 launch: - config: oslist: windows executable: HelloNeighborReborn.exe type: default -'1096720': +"1096720": installDir: CATGIRL LOVER launch: - executable: CATGIRL LOVER.exe type: none -'1096730': +"1096730": installDir: HotSteamyKnights launch: - config: @@ -34129,7 +33816,7 @@ type: default - config: oslist: linux - executable: ./HotSteamyKnights.sh + executable: "./HotSteamyKnights.sh" type: default - config: oslist: macos @@ -34140,7 +33827,7 @@ schinese: 巨乳丰臀BBA骑士团 spanish: Dominación Erotica En Otro Mundo tchinese: 巨乳豐臀BBA騎士團 -'1096750': +"1096750": installDir: Girls & Dungeons 2 launch: - config: @@ -34151,7 +33838,7 @@ oslist: macos executable: Game.app type: default -'1096910': +"1096910": installDir: GFS launch: - config: @@ -34159,12 +33846,12 @@ description: Lunch executable: GirlFriendSimulator.exe type: default -'1096930': +"1096930": installDir: Strategic Command World War I launch: - executable: Launcher.exe type: default -'1096950': +"1096950": installDir: Psycho Train launch: - config: @@ -34173,47 +33860,47 @@ type: default - config: oslist: macos - executable: PsychoTrain.app\\Contents\\MacOS\\PsychoTrain + executable: "PsychoTrain.app\\\\Contents\\\\MacOS\\\\PsychoTrain" type: default -'1096960': +"1096960": installDir: Amazing - A House In Kansas VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: A House In Kansas VR.exe type: vr -'1096970': +"1096970": installDir: Sento Stream launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SentoStream.exe type: default -'1096980': +"1096980": installDir: Timothy and the Mysterious Forest launch: - config: oslist: windows executable: Timothy and the Mysterious Forest.exe type: default -'109700': +"109700": installDir: Achron launch: - executable: Achron.exe -'1097000': - installDir: Orpheus's Dream +"1097000": + installDir: "Orpheus's Dream" launch: - config: oslist: windows - executable: Orpheus's Dream.exe + executable: "Orpheus's Dream.exe" type: default -'1097090': +"1097090": installDir: New Colony launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: New Colony.exe type: default @@ -34221,28 +33908,28 @@ oslist: macos executable: NewColony.app type: default -'1097110': +"1097110": installDir: Willy Morgan launch: - config: oslist: windows executable: Willy Morgan.exe type: none -'1097120': +"1097120": installDir: The Scream launch: - - arguments: '-openvr' + - arguments: "-openvr" config: - osarch: '64' + osarch: "64" oslist: windows executable: Munch_Le_Cri.exe type: vr -'1097130': +"1097130": installDir: Circuit Superstars launch: - executable: circuit-superstars.exe type: default -'1097150': +"1097150": installDir: Fall Guys launch: - config: @@ -34253,19 +33940,19 @@ nameLocalized: schinese: 糖豆人:终极淘汰赛 tchinese: 糖豆人:終極淘汰賽 -'1097160': +"1097160": installDir: Run Roll Rumble launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: RunRollRumble.exe type: none -'1097170': +"1097170": installDir: Backspace Bouken launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launches the game. executable: BackspaceBouken.exe @@ -34276,17 +33963,17 @@ executable: BackspaceBouken.app/Contents/MacOS/BackspaceBouken type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: Launches the game. executable: backspacebouken.x86_64 type: default -'1097180': +"1097180": installDir: Time Travelling Navy Seal Ninja Warrior launch: - executable: Time Travelling Navy Seal Ninja Warrior.exe type: vr -'1097200': +"1097200": installDir: Twelve Minutes launch: - config: @@ -34297,71 +33984,71 @@ oslist: macos executable: 12M.app type: default -'1097210': +"1097210": installDir: WoMen in Science launch: - config: oslist: windows executable: Women in Science.exe type: default -'1097240': +"1097240": installDir: Crawling Of The Dead launch: - config: oslist: windows executable: CotD.exe type: vr -'1097260': {} -'1097270': +"1097260": {} +"1097270": installDir: Forgotten launch: - config: oslist: windows executable: Forgotten.exe type: default -'1097300': +"1097300": installDir: Ostrofa launch: - config: oslist: macos - executable: ostrofa.app\\Contents\\MacOS\\ostrofa + executable: "ostrofa.app\\\\Contents\\\\MacOS\\\\ostrofa" type: default - config: oslist: windows executable: Ostrofa.exe type: default -'1097310': +"1097310": installDir: Night Song launch: - config: oslist: windows executable: NS.exe type: default -'1097330': +"1097330": installDir: Fork Knights launch: - config: oslist: windows executable: ForkKnights.exe type: none -'1097340': +"1097340": installDir: Night & Day launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Night & Day.exe type: default -'1097350': +"1097350": installDir: Weird West launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: WeirdWest.exe type: default -'1097360': {} -'1097400': +"1097360": {} +"1097400": installDir: Warhead Destined launch: - config: @@ -34370,7 +34057,7 @@ type: default - executable: game.exe type: none -'1097420': +"1097420": installDir: No-brainer Heroes launch: - config: @@ -34380,9 +34067,9 @@ type: default - config: oslist: macos - executable: Dragonkiller.app\\Contents\\MacOS\\Dragonkiller + executable: "Dragonkiller.app\\\\Contents\\\\MacOS\\\\Dragonkiller" type: default -'1097430': +"1097430": installDir: book of yog 依盖之书 launch: - config: @@ -34392,7 +34079,7 @@ nameLocalized: english: Book of Yog Idle RPG schinese: 依盖之书 -'1097470': +"1097470": installDir: Roopocket launch: - config: @@ -34407,16 +34094,16 @@ oslist: macos executable: BuildSteam_MAC.app type: default -'1097480': {} -'1097500': {} -'1097520': +"1097480": {} +"1097500": {} +"1097520": installDir: Hentai Demon launch: - config: oslist: windows executable: Hentai Demon.exe type: none -'1097530': +"1097530": installDir: Mortal Glory launch: - config: @@ -34425,51 +34112,51 @@ type: default nameLocalized: schinese: 荣耀死斗 Mortal Glory -'1097540': {} -'1097550': +"1097540": {} +"1097550": installDir: Fantastic_kingdom launch: - executable: Game.exe type: default -'1097560': {} -'1097570': +"1097560": {} +"1097570": installDir: The Hunters Journals; Vile Philosophy launch: - config: oslist: windows executable: The Hunters Journals; Vile Philosophy.exe type: default -'1097580': - installDir: CUSTOM ORDER MAID 3D2 It's a Night Magic +"1097580": + installDir: "CUSTOM ORDER MAID 3D2 It's a Night Magic" launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: com3d2inm/COM3D2.exe type: default - arguments: /vr config: - osarch: '64' + osarch: "64" oslist: windows description: VR Mode executable: com3d2inm/COM3D2x64.exe type: vr -'1097590': +"1097590": installDir: Cleaner launch: - config: oslist: windows executable: Cleaner.exe type: default -'1097600': +"1097600": installDir: Hardcore Parkour launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Parkour.exe type: none -'1097620': +"1097620": installDir: Fast and Low launch: - config: @@ -34478,22 +34165,22 @@ type: vr - executable: FastandLow.exe type: default -'1097630': +"1097630": installDir: C.A.T.S. - Carefully Attempting not To Screw up launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: CATS.exe type: default -'1097650': +"1097650": installDir: Insectipede launch: - config: oslist: windows executable: Insectipede.exe type: default -'1097670': +"1097670": installDir: Keeper of the Sun and Moon launch: - config: @@ -34508,7 +34195,7 @@ oslist: linux executable: KeeperOfTheSunAndMoon type: none -'1097690': +"1097690": installDir: Gladiator Road to the Colosseum launch: - config: @@ -34523,7 +34210,7 @@ oslist: linux executable: GladiatorRoadToTheColosseum type: none -'1097710': +"1097710": installDir: The Grim and I launch: - config: @@ -34538,22 +34225,22 @@ oslist: linux executable: TheGrimAndI type: none -'1097750': +"1097750": installDir: Ezaron Defense launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Ezaron Defense.exe type: default -'1097760': +"1097760": installDir: Uh Oh Bartender launch: - config: oslist: windows executable: Uh Oh Bartender.exe type: default -'1097770': +"1097770": installDir: Aeolis Tournament launch: - config: @@ -34568,7 +34255,7 @@ oslist: macos executable: Aeolis Tournament.app type: none -'1097780': +"1097780": installDir: We Met in May launch: - config: @@ -34579,7 +34266,7 @@ oslist: macos executable: We Met In May.app type: default -'1097790': +"1097790": installDir: The Dark Crystal Age of Resistance - Tactics launch: - config: @@ -34590,7 +34277,7 @@ oslist: macos executable: DCAORTactics_Steam.app type: default -'1097800': +"1097800": installDir: Stranger Things 3 The Game launch: - config: @@ -34601,28 +34288,28 @@ oslist: windows executable: fate.exe type: default -'1097830': +"1097830": installDir: Banished Monsters launch: - executable: Banished_Monsters.exe type: default -'1097840': +"1097840": installDir: Gears5 launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: GearGame\\Binaries\\Steam\\Gears5_EAC.exe + executable: "GearGame\\\\Binaries\\\\Steam\\\\Gears5_EAC.exe" type: option1 -'1097870': +"1097870": installDir: Polyrun launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: PolyNew.exe type: default -'1097900': +"1097900": installDir: Everything is Mayo launch: - config: @@ -34633,9 +34320,9 @@ oslist: macos executable: MacBuild.app type: default -'1097940': {} -'1097950': {} -'1097960': +"1097940": {} +"1097950": {} +"1097960": installDir: ClickRaid2 launch: - config: @@ -34650,32 +34337,32 @@ oslist: macos executable: CR2IOS.app type: default -'1098000': +"1098000": installDir: RifleStorm launch: - - arguments: '--steam rifle' + - arguments: "--steam rifle" config: oslist: windows executable: RifleStorm.exe type: default - - arguments: '--steam rifle' + - arguments: "--steam rifle" config: oslist: macos executable: RifleStorm.app type: default - - arguments: '--steam rifle' + - arguments: "--steam rifle" config: oslist: linux executable: RifleStorm type: default -'1098040': +"1098040": installDir: Soulscape launch: - config: oslist: windows executable: Game.exe type: none -'1098080': +"1098080": installDir: 3000th Duel launch: - config: @@ -34686,11 +34373,11 @@ oslist: windows executable: 3000th Duel.exe type: default -'1098090': +"1098090": installDir: Bunny Reversi launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: WindowsNoEditor/BunnyReversi.exe type: default @@ -34698,28 +34385,28 @@ oslist: linux executable: LinuxNoEditor/BunnyReversi.sh type: default -'1098100': +"1098100": installDir: OhShape launch: - config: oslist: windows executable: OhShape.exe type: vr -'1098140': +"1098140": installDir: Drawing Path launch: - executable: Drawing Path.exe type: none -'1098150': +"1098150": installDir: Trickster VR Horde Attack launch: - executable: Trickster.exe type: vr -'1098170': +"1098170": installDir: Dark Nights with Poe and Munro launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: DarkNights.exe type: default @@ -34731,8 +34418,8 @@ oslist: linux executable: DarkNights.x86_64 type: default -'1098180': {} -'1098200': +"1098180": {} +"1098200": installDir: Vaporwave Drift launch: - config: @@ -34742,7 +34429,7 @@ nameLocalized: schinese: 蒸汽波漂移 tchinese: 蒸汽波漂移 -'1098210': +"1098210": installDir: Axis Football 2019 launch: - config: @@ -34760,7 +34447,7 @@ description: Launch executable: Axis Football 2019.x86_64 type: default -'1098220': +"1098220": installDir: Making it Home launch: - config: @@ -34771,43 +34458,43 @@ oslist: linux executable: makingithome.x86_64 type: default -'1098230': +"1098230": installDir: Eidolon adventure launch: - config: oslist: windows executable: Eidolon adventure.exe type: default -'1098250': +"1098250": installDir: Grid Magic launch: - config: oslist: windows executable: Grid Magic.exe type: none -'1098270': +"1098270": installDir: ColdSide launch: - config: oslist: windows - executable: bin\\win_x64\\ColdSide.exe + executable: "bin\\\\win_x64\\\\ColdSide.exe" type: default -'1098280': +"1098280": installDir: MAGO launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: MAGO.exe -'1098320': {} -'1098340': +"1098320": {} +"1098340": installDir: Zup! 9 launch: - config: oslist: windows executable: Zup! 9.exe type: default -'1098360': +"1098360": installDir: Tank Nova launch: - config: @@ -34816,13 +34503,13 @@ type: default - config: oslist: macos - executable: Mac.app\\Contents\\MacOS\\Tank Nova + executable: "Mac.app\\\\Contents\\\\MacOS\\\\Tank Nova" type: default - config: oslist: linux executable: Tank Nova.x86_64 type: default -'1098370': +"1098370": installDir: APotF launch: - config: @@ -34833,121 +34520,119 @@ oslist: macos executable: akash.app type: default -'1098390': +"1098390": installDir: Project Wasteland launch: - config: oslist: windows description: Escape from the Mythiclands - description_loc: - english: Escape from the Mythiclands executable: Project Wasteland.exe type: option1 -'1098430': +"1098430": installDir: DungeonEpic launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: DungeonEpic.exe type: default -'1098440': +"1098440": installDir: Spider shooting bee launch: - executable: Game.exe type: default -'1098490': +"1098490": installDir: Explore Fushimi Inari launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Play on Desktop - executable: Fushimi Inari\\FushimiInari.exe + executable: "Fushimi Inari\\\\FushimiInari.exe" type: default - config: - osarch: '64' + osarch: "64" oslist: windows - ownsdlc: '1098520' + ownsdlc: "1098520" description: Explore Fushimi Inari - executable: Fushimi Inari VR\\FushimiInariVR.exe + executable: "Fushimi Inari VR\\\\FushimiInariVR.exe" type: vr -'1098500': {} -'1098510': +"1098500": {} +"1098510": installDir: LOST EGG launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: LOST EGG.exe type: default -'1098530': +"1098530": installDir: ZorroMoro launch: - config: oslist: windows executable: ZorroMoro.exe type: default -'1098540': +"1098540": installDir: Monsters sandbox launch: - config: oslist: windows executable: Monsters sandbox PC.exe type: default -'1098570': +"1098570": installDir: Layers Of The Machine launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: LOTM.exe type: default -'1098620': +"1098620": installDir: Matter of the Dreams launch: - - arguments: '-popupwindow' + - arguments: "-popupwindow" config: oslist: windows executable: MatterOfTheDreams.exe type: vr -'1098640': +"1098640": installDir: Eormor Shattered Lands launch: - config: oslist: windows executable: Eormor.exe type: none -'1098650': +"1098650": installDir: Madhouse launch: - config: oslist: windows executable: Madhouse.exe type: default -'1098660': +"1098660": installDir: NEKOPUGI launch: - config: oslist: windows executable: PugiRun.exe type: default -'1098670': +"1098670": installDir: CHAIN SAW launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: CHAIN SAW.exe type: default -'1098680': - installDir: Rose Garden at the World's End +"1098680": + installDir: "Rose Garden at the World's End" launch: - config: oslist: windows executable: Game.exe type: default -'1098700': +"1098700": installDir: Escape from Chernobyl launch: - config: @@ -34962,7 +34647,7 @@ oslist: linux executable: efc type: default -'1098720': +"1098720": installDir: Court of Ashes launch: - config: @@ -34970,18 +34655,18 @@ executable: CourtofAshes.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: CourtofAshes.x86_64 type: default -'1098730': +"1098730": installDir: Cursed Roots launch: - config: oslist: windows executable: Cursed Roots.exe type: none -'1098750': +"1098750": installDir: Scutum Phanti launch: - config: @@ -34992,75 +34677,75 @@ oslist: linux executable: Scutum Phanti type: default -'1098760': +"1098760": installDir: The Ring of Truth launch: - config: oslist: windows executable: TheRingOfTruth.exe type: default -'1098770': {} -'1098790': - installDir: 'Okay, Panic!' +"1098770": {} +"1098790": + installDir: "Okay, Panic!" launch: - config: oslist: windows - executable: Okay Panic_Data\\OkayPanic.exe + executable: "Okay Panic_Data\\\\OkayPanic.exe" type: vr -'1098810': +"1098810": installDir: OUR HOUSE launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: OUR HOUSE.exe type: default -'1098840': +"1098840": installDir: ZACH-LIKE launch: - config: oslist: windows executable: ZACH-LIKE.exe type: default -'1098870': +"1098870": installDir: Metro Explosion Simulator launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Metro Explosion Simulator.exe type: default -'1098910': +"1098910": installDir: Lannath launch: - config: oslist: windows executable: Lannath.exe type: default -'1098940': +"1098940": installDir: Home Sweet Home EP2 launch: - config: oslist: windows executable: HomeSweetHome2.exe type: default -'1098960': {} -'1098980': +"1098960": {} +"1098980": installDir: ZomB launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Zom B.exe type: vr -'1099010': +"1099010": installDir: Bocce VR launch: - config: oslist: windows executable: Bocce Vr.exe type: vr -'1099070': +"1099070": installDir: Legendary gun launch: - config: @@ -35075,11 +34760,11 @@ type: default nameLocalized: schinese: 传奇武器 -'1099090': +"1099090": installDir: Outpost Delta launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: OutpostDelta.exe type: default @@ -35088,39 +34773,37 @@ executable: OutpostDelta.app/Contents/MacOS/Outpost Delta type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: OutpostDelta type: default -'1099100': {} -'1099110': +"1099100": {} +"1099110": installDir: StupidDungeon launch: - executable: StupidDungeon.exe type: none -'1099170': +"1099170": installDir: Battle Planet - Judgement Day launch: - config: oslist: windows executable: Battle Planet - Judgement Day.exe type: default -'1099220': +"1099220": installDir: The Alien Cube launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: bin\\win_x64\\TheAlienCube.exe + executable: "bin\\\\win_x64\\\\TheAlienCube.exe" type: default -'1099410': +"1099410": installDir: Total War Saga Troy launch: - config: oslist: windows description: Play Game - description_loc: - english: Play Game executable: launcher/launcher.exe type: none workingdir: launcher @@ -35128,7 +34811,7 @@ oslist: macos executable: A Total War Saga TROY.app type: default -'1099440': +"1099440": installDir: Rude Racers launch: - config: @@ -35139,14 +34822,14 @@ oslist: macos executable: RR PC.app type: default -'1099450': +"1099450": installDir: The Endless White launch: - config: oslist: windows executable: The Endless White.exe type: default -'1099460': +"1099460": installDir: The Forgotten Land launch: - config: @@ -35157,7 +34840,7 @@ oslist: macos executable: The Forgotten Land.app type: default -'1099470': +"1099470": installDir: KarlBoom launch: - config: @@ -35187,20 +34870,20 @@ oslist: macos executable: Mayster-Mac-Shipping.app type: default -'1099500': +"1099500": installDir: The Curious Tale of the Stolen Pets launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TheCuriousTale.exe type: vr -'1099510': {} -'1099630': +"1099510": {} +"1099630": installDir: Alive 2 Survive launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Alive2Survive.exe type: default @@ -35209,15 +34892,15 @@ executable: Alive2Survive.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Alive2Survive.x86_64 type: default -'1099640': +"1099640": installDir: Jack Move launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: jack_move_Win.exe type: default @@ -35225,7 +34908,7 @@ oslist: macos executable: jack_move_OSX.app type: default -'1099660': +"1099660": installDir: The Lattice Grimoire launch: - config: @@ -35234,26 +34917,26 @@ type: none - config: oslist: macos - executable: The Lattice Grimoire.app\\Contents\\MacOS\\The Lattice Grimoire -'1099720': {} -'1099830': + executable: "The Lattice Grimoire.app\\\\Contents\\\\MacOS\\\\The Lattice Grimoire" +"1099720": {} +"1099830": installDir: Welcome to Paradise launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: welcome to paradise.exe type: vr -'1099840': +"1099840": installDir: 1000$ launch: - config: oslist: windows executable: 1000$.exe type: default -'1099900': {} -'1099910': {} -'1099920': +"1099900": {} +"1099910": {} +"1099920": installDir: Pro Strategy Football 2020 launch: - config: @@ -35269,7 +34952,7 @@ oslist: windows executable: psf2020.exe type: default -'1099960': +"1099960": installDir: MiniTone launch: - config: @@ -35278,32 +34961,32 @@ type: default - config: oslist: macos - executable: MiniTone.app\\Contents\\MacOS\\MiniTone + executable: "MiniTone.app\\\\Contents\\\\MacOS\\\\MiniTone" type: default -'1099980': +"1099980": installDir: mosesanguo launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: mosesanguo.exe type: default -'1100030': +"1100030": installDir: ISESHIMA STORY launch: - config: oslist: windows executable: ISESHIMA STORY.exe type: none -'1100070': +"1100070": installDir: Master of the Forbidden Sea launch: - config: oslist: windows executable: MotFS.exe type: default -'1100110': {} -'1100140': +"1100110": {} +"1100140": installDir: th10 launch: - config: @@ -35317,7 +35000,7 @@ nameLocalized: english: Touhou Fuujinroku ~ Mountain of Faith. japanese: 東方風神録 〜 Mountain of Faith. -'1100150': +"1100150": installDir: th11 launch: - config: @@ -35331,7 +35014,7 @@ nameLocalized: english: Touhou Chireiden ~ Subterranean Animism. japanese: 東方地霊殿 〜 Subterranean Animism. -'1100160': +"1100160": installDir: th12 launch: - config: @@ -35345,7 +35028,7 @@ nameLocalized: english: Touhou Seirensen ~ Undefined Fantastic Object. japanese: 東方星蓮船 〜 Undefined Fantastic Object. -'1100170': +"1100170": installDir: th125 launch: - config: @@ -35359,7 +35042,7 @@ nameLocalized: english: Double Spoiler japanese: ダブルスポイラー 〜 東方文花帖 -'1100180': +"1100180": installDir: th128 launch: - config: @@ -35373,7 +35056,7 @@ nameLocalized: english: Yousei Daisensou ~ Touhou Sangetsusei japanese: 妖精大戦争 〜 東方三月精 -'1100200': +"1100200": installDir: Chibi Volleyball launch: - config: @@ -35388,7 +35071,7 @@ oslist: linux executable: Chibi Volleyball.x86 type: default -'1100210': +"1100210": installDir: Everybody Loves Skeletons launch: - config: @@ -35396,18 +35079,18 @@ executable: Everybody Loves Skeletons.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: EverybodyLovesSkeletons.x86_64 type: default -'1100260': +"1100260": installDir: Circle Empires Multiplayer launch: - config: oslist: windows executable: Circle Empires Rivals.exe type: default -'1100270': +"1100270": installDir: The Far Rings A Space Opera Visual Novella launch: - config: @@ -35418,14 +35101,14 @@ oslist: macos executable: TheFarRings.app type: none -'1100290': +"1100290": installDir: Super Space Club launch: - config: oslist: windows executable: Super Space Club.exe type: default -'1100300': +"1100300": installDir: Gamedev Beatdown launch: - config: @@ -35434,17 +35117,17 @@ type: default - config: oslist: macos - executable: Gamedev Beatdown.app\\Contents\\MacOS\\Gamedev Beatdown + executable: "Gamedev Beatdown.app\\\\Contents\\\\MacOS\\\\Gamedev Beatdown" type: default -'1100320': {} -'1100340': +"1100320": {} +"1100340": installDir: Battle Droid T1 launch: - config: oslist: windows executable: BattleDroidT1.exe type: none -'1100410': +"1100410": installDir: Commandos 2 - HD Remaster launch: - config: @@ -35459,38 +35142,38 @@ oslist: linux executable: Linux.x64 type: none -'1100420': +"1100420": installDir: Praetorians - HD Remaster launch: - executable: Praetorians.exe type: default -'1100430': +"1100430": installDir: Spirit Hunter NG launch: - config: oslist: windows executable: SpiritHunterNG.exe type: default -'1100510': +"1100510": installDir: Diamonds launch: - config: oslist: windows executable: Diamonds.exe type: default -'1100560': +"1100560": installDir: Drones launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Drones.exe type: default -'1100600': +"1100600": installDir: Football Manager 2020 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: fm.exe type: none @@ -35498,11 +35181,11 @@ oslist: macos executable: fm.app type: none -'1100620': +"1100620": installDir: Football Manager 2020 Touch launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: fm.exe type: none @@ -35510,29 +35193,29 @@ oslist: macos executable: fm.app type: none -'1100800': +"1100800": installDir: I Walk Among Zombies Vol. 2 launch: - executable: zombie2.exe type: default nameLocalized: schinese: 末世孤雄 Vol.2 -'1100840': +"1100840": installDir: EGH launch: - config: oslist: windows executable: EveryoneGoesHome.exe type: config -'1100880': +"1100880": installDir: Battle Siege Royale launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: BattleSiegeRoyale.exe type: default -'1100900': +"1100900": installDir: Artifact Adventure Gaiden DX launch: - config: @@ -35545,15 +35228,15 @@ description: Artifact Adventure Gaiden DX Chinese beta executable: aagdx_test.exe type: option1 -'1100920': +"1100920": installDir: DrumMasterVR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Music.exe type: vr -'1100930': +"1100930": installDir: LEGIONCRAFT launch: - config: @@ -35564,36 +35247,36 @@ english: LEGIONCRAFT schinese: 军团 LEGIONCRAFT tchinese: 軍團 LEGIONCRAFT -'1100970': +"1100970": installDir: Dancing Girl launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Dancing Girl.exe type: default -'1100990': +"1100990": installDir: Aimbeast launch: - config: oslist: windows executable: Aimbeast.exe type: default -'1101000': +"1101000": installDir: Nubla launch: - config: oslist: windows executable: Nubla.exe type: none -'1101100': +"1101100": installDir: Chaos Dream Retribution launch: - config: oslist: windows executable: Game.exe type: none -'1101120': +"1101120": installDir: Gunsmith Simulator launch: - config: @@ -35603,93 +35286,93 @@ nameLocalized: japanese: 鉄 砲 鍛冶 シ ュ ミ レ ー タ ー schinese: 枪 匠 模拟器 -'1101130': +"1101130": installDir: My Typing Skill launch: - executable: My Typing Skill.exe type: none -'1101140': +"1101140": installDir: Fishing Adventure launch: - config: oslist: windows executable: Fishing Adventure.exe type: default -'1101170': +"1101170": installDir: MageMania launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Mage Mania.exe type: none -'1101180': +"1101180": installDir: EverStopped launch: - config: oslist: windows executable: EverStopped.exe type: default -'1101190': +"1101190": installDir: Dungeon Defenders Awakened launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: DDS.exe type: none -'1101200': +"1101200": installDir: After The Suns launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ATS_.exe type: default -'1101220': +"1101220": installDir: Anticorps VR launch: - - arguments: '-popwindow' + - arguments: "-popwindow" config: oslist: windows executable: Anticorps-Vr.exe type: vr -'1101270': +"1101270": installDir: Anime Artist launch: - executable: Anime Artist.exe type: default -'1101290': +"1101290": installDir: 0Gravity launch: - config: oslist: windows executable: 0Gravity.exe type: default -'1101310': +"1101310": installDir: Vengeful Heart launch: - config: oslist: windows - executable: VH\\VengefulHeart.exe + executable: "VH\\\\VengefulHeart.exe" type: default - config: oslist: macos - executable: VH\\VengefulHeart.app + executable: "VH\\\\VengefulHeart.app" type: default - config: oslist: linux - executable: VH\\VengefulHeart.sh + executable: "VH\\\\VengefulHeart.sh" type: default -'1101330': +"1101330": installDir: Worlds Nicht launch: - config: oslist: windows executable: WorldsNicht.exe type: default -'1101340': +"1101340": installDir: Fighting Frenzy Swole Simulator launch: - config: @@ -35700,65 +35383,65 @@ oslist: macos executable: FFSS.app type: none -'1101360': +"1101360": installDir: Rock of Ages III Make & Break launch: - executable: ROA3.exe type: none nameLocalized: - japanese: 'ロック・オブ・エイジス: メイク&ブレイク' -'1101370': {} -'1101380': {} -'1101420': + japanese: "ロック・オブ・エイジス: メイク&ブレイク" +"1101370": {} +"1101380": {} +"1101420": installDir: summon launch: - config: oslist: windows executable: xy318.exe type: none -'1101450': +"1101450": installDir: Miss Neko launch: - config: oslist: windows executable: Miss Neko.exe type: default -'1101480': +"1101480": installDir: Turn Me On launch: - config: oslist: windows executable: TurnMeOn.exe type: vr -'1101530': {} -'1101580': +"1101530": {} +"1101580": installDir: Spooky Starlets launch: - executable: Spooky Starlets.exe type: none -'1101630': +"1101630": installDir: A maze in Citadel launch: - config: oslist: windows executable: A maze in Citadel.exe type: none -'1101660': +"1101660": installDir: Cooking Trip Back on the road launch: - config: oslist: windows executable: Cooking trip Back on the road.exe type: none -'1101670': +"1101670": installDir: ARISEN launch: - config: oslist: windows executable: Arisen.exe type: default -'1101690': {} -'1101760': +"1101690": {} +"1101760": installDir: CRAZY DRIVER launch: - config: @@ -35767,79 +35450,71 @@ type: default - config: oslist: macos - executable: CRAZY DRIVER.app\\Contents\\MacOS\\CRAZY DRIVER + executable: "CRAZY DRIVER.app\\\\Contents\\\\MacOS\\\\CRAZY DRIVER" type: default - config: oslist: linux executable: CRAZY DRIVER.x86_64 type: default -'1101770': +"1101770": installDir: Ancient knowledge launch: - config: oslist: windows executable: AncientKnowledge.exe type: none -'1101780': +"1101780": installDir: Bakery Biz Tycoon launch: - config: oslist: windows executable: BakeryBizTycoon.exe type: default -'1101790': +"1101790": installDir: War Mongrels launch: - - arguments: '-EnableCrashReports -DCPlatform=SteamFull' - executable: WM\\Binaries\\Win64\\WM-Win64-Shipping.exe + - arguments: "-EnableCrashReports -DCPlatform=SteamFull" + executable: "WM\\\\Binaries\\\\Win64\\\\WM-Win64-Shipping.exe" type: default - - arguments: '-EnableCrashReports -DCPlatform=SteamFull -gpucrashdebugging' + - arguments: "-EnableCrashReports -DCPlatform=SteamFull -gpucrashdebugging" config: betakey: internaltesting description: Test Binary - description_loc: - english: Test Binary - executable: WM\\Binaries\\Win64\\WM-Win64-Test.exe + executable: "WM\\\\Binaries\\\\Win64\\\\WM-Win64-Test.exe" type: option1 - config: betakey: amdprofiling description: Test Binary - description_loc: - english: Test Binary - executable: WM\\Binaries\\Win64\\WM-Win64-Test.exe + executable: "WM\\\\Binaries\\\\Win64\\\\WM-Win64-Test.exe" type: none - config: betakey: localizationtesting description: Test Binary - description_loc: - english: Test Binary - executable: WM\\Binaries\\Win64\\WM-Win64-Test.exe + executable: "WM\\\\Binaries\\\\Win64\\\\WM-Win64-Test.exe" type: none - - arguments: '-EnableCrashReports -DCPlatform=SteamFull -gpucrashdebugging' + - arguments: "-EnableCrashReports -DCPlatform=SteamFull -gpucrashdebugging" config: betakey: internaltrunk description: Test Binary - description_loc: - english: Test Binary - executable: WM\\Binaries\\Win64\\WM-Win64-Test.exe + executable: "WM\\\\Binaries\\\\Win64\\\\WM-Win64-Test.exe" nameLocalized: schinese: 被遗忘的我们 / War Mongrels tchinese: 被遺忘的我們 / War Mongrels -'1101840': +"1101840": installDir: WBTR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: WBTR.exe type: default - - arguments: '-vr' + - arguments: "-vr" config: - osarch: '64' + osarch: "64" oslist: windows executable: WBTR.exe type: vr -'1101850': +"1101850": installDir: reD launch: - executable: game.exe @@ -35848,8 +35523,8 @@ type: none - executable: game.exe type: none -'1101910': {} -'1101930': +"1101910": {} +"1101930": installDir: Monsters of Little Haven launch: - config: @@ -35860,19 +35535,19 @@ oslist: macos executable: MonstersofLittleHaven.app type: default - - arguments: '-forcecontrollerappid 1101930' + - arguments: "-forcecontrollerappid 1101930" config: oslist: linux executable: nw type: default -'1101940': +"1101940": installDir: Woman in White launch: - config: oslist: windows executable: Woman in White.exe type: default -'1101960': +"1101960": installDir: WREN launch: - config: @@ -35881,22 +35556,22 @@ type: none - config: oslist: macos - executable: WREN.app\\Contents\\MacOS\\WREN + executable: "WREN.app\\\\Contents\\\\MacOS\\\\WREN" type: none -'1101980': +"1101980": installDir: Once Opon a Time in White Stone State launch: - config: oslist: windows executable: Story of BSZ.exe type: default -'11020': +"11020": installDir: TrackMania Nations Forever launch: - executable: TmForever.exe - description: TrackMania Nations Forever Settings executable: TmForeverLauncher.exe -'1102030': +"1102030": installDir: KLAC launch: - config: @@ -35909,9 +35584,9 @@ type: default - config: oslist: macos - executable: KLAC.app\\Contents\\MacOS\\KLAC + executable: "KLAC.app\\\\Contents\\\\MacOS\\\\KLAC" type: none -'1102040': +"1102040": installDir: Obversion launch: - config: @@ -35926,33 +35601,33 @@ oslist: linux executable: Obversion type: default -'1102060': +"1102060": installDir: GunBlaze launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: GunBlaze.exe type: default -'1102080': +"1102080": installDir: Planaris 2+ launch: - config: oslist: windows executable: Planaris 2+.exe type: default -'1102100': +"1102100": installDir: TINY METAL FULL METAL RUMBLE launch: - config: oslist: windows executable: Milk.exe type: default -'1102130': +"1102130": installDir: Florence launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Florence.exe type: default @@ -35960,55 +35635,55 @@ oslist: macos executable: Florence.app type: default -'1102150': +"1102150": installDir: DefendingTerritory launch: - executable: DefendingTerritory.exe type: none -'1102190': +"1102190": installDir: Monster Train launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: MonsterTrain.exe type: default -'1102200': +"1102200": installDir: Oceans We Make launch: - config: oslist: windows executable: OWMPackage2.exe type: vr -'1102210': +"1102210": installDir: TheLegendofViccess launch: - config: oslist: windows executable: TheLegendofViccess.exe type: default -'1102230': +"1102230": installDir: Lost In Sweets launch: - executable: LostInSweets.exe type: none -'1102260': +"1102260": installDir: RANK RUNNER launch: - config: oslist: windows executable: RANK RUNNER.exe type: default -'1102280': {} -'1102340': +"1102280": {} +"1102340": installDir: Funbag Fantasy 2 launch: - executable: Funbag Fantasy 2.exe type: default -'1102370': +"1102370": installDir: Derk launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows executable: Derk.exe @@ -36018,11 +35693,11 @@ executable: Derk.app/Contents/MacOS/Derk type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: derk type: default -'1102390': +"1102390": installDir: Neckbeardia launch: - config: @@ -36030,22 +35705,22 @@ description: Launch executable: Neckbeardia.exe type: none -'1102410': +"1102410": installDir: lostsmile launch: - config: oslist: windows executable: LOSTSMILE.exe type: default -'1102500': - installDir: A Glider's Journey +"1102500": + installDir: "A Glider's Journey" launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: FlyingProject.exe type: default -'1102510': +"1102510": installDir: Come Back launch: - config: @@ -36057,11 +35732,11 @@ executable: Come Back MacOS.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Come Back.x86_64 type: default -'1102580': +"1102580": installDir: Traffix launch: - config: @@ -36072,7 +35747,7 @@ oslist: macos executable: traffix.app type: default -'1102650': +"1102650": installDir: Neon City Riders launch: - config: @@ -36082,20 +35757,20 @@ nameLocalized: schinese: 霓虹城骑士 tchinese: 霓虹城騎士 -'1102680': +"1102680": installDir: Ash Asylum launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: AshAsylum.exe type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: AshAsylum.sh type: none -'1102700': +"1102700": installDir: Alpha Dog launch: - config: @@ -36104,18 +35779,18 @@ type: default - config: oslist: macos - executable: AlphaDog.app\\Contents\\MacOS\\AlphaDog + executable: "AlphaDog.app\\\\Contents\\\\MacOS\\\\AlphaDog" type: default -'1102720': +"1102720": installDir: THE UNCLEARNESS launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: UNCLEARNESS.exe type: default -'1102730': {} -'1102740': +"1102730": {} +"1102740": installDir: Going Up launch: - config: @@ -36130,21 +35805,21 @@ oslist: linux executable: GoingUp.x86_64 type: none -'1102750': +"1102750": installDir: Zorg The Typing Warrior launch: - config: oslist: windows - executable: ZORG\\ZORG.exe + executable: "ZORG\\\\ZORG.exe" type: default -'1102780': +"1102780": installDir: Desert Of The Dead launch: - config: oslist: windows executable: gamereliz2.exe type: default -'1102880': +"1102880": installDir: Kawaii Deathu Desu launch: - config: @@ -36153,17 +35828,17 @@ type: default - config: oslist: macos - executable: osx_content\\KDD-MACOS.app + executable: "osx_content\\\\KDD-MACOS.app" type: default -'1102890': +"1102890": installDir: Square Norm launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: nw.exe type: none -'1102930': +"1102930": installDir: KoboldKare launch: - config: @@ -36178,51 +35853,51 @@ oslist: macos executable: KoboldKare.app type: default - - arguments: '-force-d3d11' + - arguments: "-force-d3d11" config: oslist: windows description: Direct3D11 executable: KoboldKare.exe type: option2 - - arguments: '-force-glcore' + - arguments: "-force-glcore" config: oslist: windows description: GLCore executable: KoboldKare.exe type: option3 - - arguments: '-force-glcore' + - arguments: "-force-glcore" config: oslist: linux description: GLCore executable: KoboldKare type: option1 - - arguments: '-force-vulkan' + - arguments: "-force-vulkan" config: oslist: linux description: Vulkan executable: KoboldKare type: option2 - - arguments: '-force-metal' + - arguments: "-force-metal" config: oslist: macos description: Metal executable: KoboldKare.app type: option1 - - arguments: '-force-glcore' + - arguments: "-force-glcore" config: oslist: macos description: GLCore executable: KoboldKare.app type: option2 -'1102940': +"1102940": installDir: Mogh launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Mogh.exe type: default -'1102980': +"1102980": installDir: Hero launch: - config: @@ -36233,16 +35908,16 @@ oslist: macos executable: Hero.app type: default -'1102990': {} -'1103000': - installDir: Qwerty's Prison +"1102990": {} +"1103000": + installDir: "Qwerty's Prison" launch: - config: oslist: windows description: Launch executable: Athi.exe type: none -'1103040': +"1103040": installDir: Bepuzzled Space Jigsaw Puzzle launch: - config: @@ -36257,7 +35932,7 @@ oslist: linux executable: BepuzzledSpace.x86 type: default -'1103050': +"1103050": installDir: Bepuzzled Animals Jigsaw Puzzle launch: - config: @@ -36272,15 +35947,15 @@ oslist: linux executable: BepuzzledLinux.x86_64 type: default -'1103060': +"1103060": installDir: Run Thief launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Run_Thief.exe type: none -'1103070': +"1103070": installDir: Bepuzzled Japan Jigsaw Puzzle launch: - config: @@ -36295,7 +35970,7 @@ oslist: linux executable: BepuzzledJapan.x86 type: default -'1103080': +"1103080": installDir: Bepuzzled Nature Jigsaw Puzzle launch: - config: @@ -36310,18 +35985,18 @@ oslist: linux executable: BepuzzledNature.x86_64 type: default -'1103100': +"1103100": installDir: 1000 days to escape launch: - config: oslist: windows executable: 1000dte.exe type: default -'1103120': +"1103120": installDir: DuneSea launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: DuneSea.exe type: default @@ -36329,59 +36004,59 @@ oslist: macos executable: DuneSea.app type: default -'1103130': +"1103130": installDir: Trials of Guinevere launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" executable: ToG.exe type: default -'1103160': +"1103160": installDir: Beat Boxing launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: BeatBoxing.exe type: vr -'1103250': +"1103250": installDir: Fort launch: - config: oslist: windows executable: Game.exe type: default -'1103300': +"1103300": installDir: Escape from Classroom launch: - executable: Escape from Classroom.exe type: none -'1103310': +"1103310": installDir: Sea Bubble launch: - config: oslist: windows executable: Sea Bubble.exe type: none -'1103320': +"1103320": installDir: Snow Arena launch: - config: oslist: windows executable: Snow Arena.exe type: default -'1103330': +"1103330": installDir: Card story launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: CardStory(Test).exe type: default -'1103340': +"1103340": installDir: YUT YUT launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: YUT_YUT.exe type: default @@ -36391,16 +36066,16 @@ type: default - config: oslist: macos - executable: YUT_YUT.app\\Contents\\MacOS\\YUT_YUT + executable: "YUT_YUT.app\\\\Contents\\\\MacOS\\\\YUT_YUT" type: default -'1103390': +"1103390": installDir: ThreeStep launch: - config: oslist: windows executable: ThreeStep.exe type: default -'1103400': +"1103400": installDir: Codemancer launch: - config: @@ -36411,21 +36086,21 @@ oslist: windows executable: CodemancerChapter1.exe type: default -'1103410': +"1103410": installDir: The Tower Of TigerQiuQiu launch: - config: oslist: windows executable: game.exe type: default -'1103430': +"1103430": installDir: Detonation launch: - config: oslist: windows executable: Detonation.exe type: none -'1103460': +"1103460": installDir: Break my body launch: - config: @@ -36433,12 +36108,12 @@ executable: BreakMyBody.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: BreakMyBody.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: BreakMyBody.x86_64 type: default @@ -36446,31 +36121,31 @@ oslist: macos executable: BreakMyBody.app type: default -'1103490': +"1103490": installDir: Sweet Dream Succubus - Nightmare Edition launch: - config: oslist: windows executable: Sweet Dream Succubus.exe type: default -'1103510': +"1103510": installDir: JHROAW launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: JHROAW.exe type: default - executable: game.exe type: none -'1103520': +"1103520": installDir: Foodie Bear launch: - config: oslist: windows executable: nw.exe type: none -'1103540': +"1103540": installDir: Stupid Bat launch: - config: @@ -36481,30 +36156,30 @@ oslist: macos executable: Stupid-Bat.app type: none -'1103550': +"1103550": installDir: Princess Castle Quest launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: PrincessCastleQuest.exe type: none -'1103560': {} -'1103590': +"1103560": {} +"1103590": installDir: alchemist_Release.win32 launch: - executable: Incompetent Alchemist.exe type: none -'1103610': {} -'1103620': +"1103610": {} +"1103620": installDir: 青岚血枫 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: game.exe type: none -'1103630': +"1103630": installDir: Event Horizon - Frontier launch: - config: @@ -36516,57 +36191,57 @@ executable: frontier.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: frontier.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: frontier.x86_64 type: default -'1103640': +"1103640": installDir: Escape Game Cake launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: EscapeGameCake.exe type: none nameLocalized: japanese: 脱出ゲーム Cake -'1103650': +"1103650": installDir: Commando Dog launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Commando Dog.exe type: default -'1103690': +"1103690": installDir: Interregnum launch: - config: oslist: windows executable: Interregnum.exe type: none -'1103700': {} -'1103730': +"1103700": {} +"1103730": installDir: Shing! launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: Shing!.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: Shing!.exe type: default - config: oslist: macos - executable: Shing!.app\\Contents\\MacOS\\Shing! + executable: "Shing!.app\\\\Contents\\\\MacOS\\\\Shing!" type: default - config: oslist: linux @@ -36574,7 +36249,7 @@ type: default nameLocalized: japanese: サムライフォース:斬! -'1103770': +"1103770": installDir: Super Arcade Racing launch: - config: @@ -36584,11 +36259,11 @@ - config: oslist: macos executable: SuperArcadeRacing.app -'1103780': +"1103780": installDir: Top Speed 2 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Top Speed 2.exe type: default @@ -36596,16 +36271,16 @@ oslist: macos executable: Top Speed 2.app type: default -'1103790': +"1103790": installDir: Dave-Man launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: Dave-Man.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: Dave-Man.exe type: none @@ -36614,30 +36289,30 @@ description: Dave-Man macOS executable: Dave-Man.app type: none -'1103800': +"1103800": installDir: World War Zero launch: - executable: Ironstorm.exe type: none -'1103820': +"1103820": nameLocalized: schinese: 伊尔多之围攻 -'1103860': +"1103860": installDir: The Wizards - Dark Times launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: WindowsNoEditor\\HMDProject.exe + executable: "WindowsNoEditor\\\\HMDProject.exe" type: vr -'1103870': +"1103870": installDir: Space Dance launch: - config: oslist: windows executable: Space Dance.exe type: default -'1103880': +"1103880": installDir: Bullet Roulette VR launch: - config: @@ -36646,155 +36321,155 @@ type: vr - executable: Saloon Spin.exe type: othervr -'1103890': +"1103890": installDir: Opening Up launch: - config: oslist: windows executable: Opening Up.exe type: default -'1103920': +"1103920": installDir: Clickable Coffee Shop launch: - executable: Clickable Coffee Shop.exe type: default -'1103930': +"1103930": installDir: Shrine of the God-Ape launch: - config: oslist: windows executable: god_ape.exe type: default -'1103940': +"1103940": installDir: VirtualDebatingChamber launch: - - arguments: '-audiomixer' + - arguments: "-audiomixer" config: - osarch: '64' + osarch: "64" oslist: windows executable: chamber.exe type: vr -'1103950': +"1103950": installDir: ANAREA Battle Royale launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Anarea.exe type: default -'1103960': +"1103960": installDir: The Missing Few launch: - config: oslist: windows executable: TheMissingFew.exe type: none -'1103970': +"1103970": installDir: Departure Dash launch: - config: oslist: windows executable: DepartureDash.exe type: default -'1103980': +"1103980": installDir: Six Temples BETA launch: - config: oslist: windows executable: SixTemples.exe type: default -'11040': +"11040": installDir: Sherlock Holmes Nemesis launch: - executable: game.exe -'110400': +"110400": installDir: inMomentum launch: - - executable: Binaries\\Win32\\IMGame.exe -'1104010': + - executable: "Binaries\\\\Win32\\\\IMGame.exe" +"1104010": installDir: Save the Biros VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Laby.exe type: vr -'1104030': +"1104030": installDir: Vermin Hunter launch: - config: oslist: windows executable: VerminHunter.exe type: default -'1104040': {} -'1104050': +"1104040": {} +"1104050": installDir: Deep Diving VR launch: - executable: Deep Diving VR.exe type: vr - executable: Deep Diving VR.exe type: othervr -'1104160': +"1104160": nameLocalized: japanese: 萌えるカノジョ / Moe Kanojo schinese: 娇娘荡漾 / Moe Kanojo tchinese: 嬌娘蕩漾 / Moe Kanojo -'1104170': +"1104170": installDir: CosmoChaser launch: - config: oslist: windows executable: Cosmo Chaser.exe type: default -'1104200': {} -'1104210': {} -'1104220': +"1104200": {} +"1104210": {} +"1104220": installDir: Kyle Simulator launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Kyle Simulator.exe type: default -'1104230': +"1104230": installDir: The Last Escape of Yeti launch: - config: oslist: windows executable: Big-run.exe type: default -'1104250': +"1104250": installDir: Poly Mole launch: - - arguments: '-Xmx2G -Xms2G -XX:+UseConcMarkSweepGC -XX:-UseAdaptiveSizePolicy -Xmn128M -jar Game.jar' + - arguments: "-Xmx2G -Xms2G -XX:+UseConcMarkSweepGC -XX:-UseAdaptiveSizePolicy -Xmn128M -jar Game.jar" config: - osarch: '64' + osarch: "64" oslist: windows - executable: jdk\\bin\\javaw.exe + executable: "jdk\\\\bin\\\\javaw.exe" type: default - - arguments: '-Xmx2G -Xms2G -XX:+UseConcMarkSweepGC -XX:-UseAdaptiveSizePolicy -Xmn128M -jar Game.jar' + - arguments: "-Xmx2G -Xms2G -XX:+UseConcMarkSweepGC -XX:-UseAdaptiveSizePolicy -Xmn128M -jar Game.jar" config: - osarch: '64' + osarch: "64" oslist: linux - executable: jdk\\bin\\java + executable: "jdk\\\\bin\\\\java" type: default - - arguments: '-Xmx2G -Xms2G -XX:+UseConcMarkSweepGC -XX:-UseAdaptiveSizePolicy -Xmn128M -XstartOnFirstThread -jar Game.jar' + - arguments: "-Xmx2G -Xms2G -XX:+UseConcMarkSweepGC -XX:-UseAdaptiveSizePolicy -Xmn128M -XstartOnFirstThread -jar Game.jar" config: oslist: macos - executable: jdk\\Contents\\Home\\bin\\java + executable: "jdk\\\\Contents\\\\Home\\\\bin\\\\java" type: default -'1104280': +"1104280": installDir: The Slormancer launch: - config: oslist: windows executable: The Slormancer.exe type: default -'1104330': +"1104330": installDir: Founders Fortune launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Founders Fortune.exe type: default @@ -36802,40 +36477,40 @@ oslist: macos executable: FoundersFortune.app type: default -'1104340': - installDir: 'Get To Work, Succubus-Chan!' +"1104340": + installDir: "Get To Work, Succubus-Chan!" launch: - config: oslist: windows - executable: 'Get To Work, Succubus-Chan!.exe' + executable: "Get To Work, Succubus-Chan!.exe" type: default - config: oslist: macos - executable: 'Get To Work, Succubus-Chan!.app/Contents/MacOS/Get To Work, Succubus-Chan!' + executable: "Get To Work, Succubus-Chan!.app/Contents/MacOS/Get To Work, Succubus-Chan!" type: default nameLocalized: - brazilian: 'Get To Work, Succubus-Chan!' - english: 'Get To Work, Succubus-Chan!' + brazilian: "Get To Work, Succubus-Chan!" + english: "Get To Work, Succubus-Chan!" japanese: はたらけ、サキュバスちゃん! - koreana: '일하러 가자, 서큐버스쨩!' - latam: 'Ponte a trabajar, Súcubo-Chan!' + koreana: "일하러 가자, 서큐버스쨩!" + latam: "Ponte a trabajar, Súcubo-Chan!" schinese: 努力工作吧 梦魔酱! - spanish: 'Ponte a trabajar, Súcubo-Chan!' + spanish: "Ponte a trabajar, Súcubo-Chan!" tchinese: 努力工作吧 夢魔醬! -'1104380': +"1104380": installDir: The Room VR launch: - config: oslist: windows executable: TheRoomVR.exe type: vr - - arguments: '-vrmode oculus' + - arguments: "-vrmode oculus" config: oslist: windows executable: TheRoomVR.exe type: othervr -'1104400': {} -'1104450': +"1104400": {} +"1104450": installDir: Bombergrounds launch: - config: @@ -36846,74 +36521,74 @@ oslist: macos executable: Bombergrounds.app type: default -'1104460': +"1104460": installDir: Gourmet Warriors launch: - config: oslist: windows executable: gourmet warriors.exe type: default -'1104470': +"1104470": installDir: Super Hero League of Hoboken launch: - config: oslist: windows executable: dosbox.exe type: default -'1104480': +"1104480": installDir: Soccer Kid launch: - config: oslist: windows executable: dosbox.exe type: default -'1104490': +"1104490": installDir: Water Margin launch: - config: oslist: windows executable: water margin.exe type: default -'1104510': +"1104510": installDir: Rainbow Run launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Rainbow Run.exe type: default -'1104530': {} -'1104550': {} -'1104570': {} -'1104590': {} -'1104600': {} -'1104630': {} -'1104640': +"1104530": {} +"1104550": {} +"1104570": {} +"1104590": {} +"1104600": {} +"1104630": {} +"1104640": installDir: New Frontier launch: - - arguments: '-steam -wwo' + - arguments: "-steam -wwo" config: - osarch: '64' + osarch: "64" oslist: windows executable: Launcher.exe type: none -'1104660': +"1104660": installDir: MOAstray launch: - - arguments: '-popupwindow' + - arguments: "-popupwindow" config: - osarch: '64' + osarch: "64" oslist: windows executable: MOAstray.exe type: default -'1104670': +"1104670": installDir: BAFF 2 launch: - config: oslist: windows executable: BAFF 2.exe type: default -'1104690': +"1104690": installDir: Hard to be a King launch: - config: @@ -36922,29 +36597,29 @@ type: none nameLocalized: schinese: 国王万岁(国王别饿死) -'1104710': +"1104710": installDir: A Lazy Magic Teacher launch: - config: oslist: windows executable: A_Lazy_Magic_Teacher.exe type: default -'1104790': {} -'1104800': {} -'1104830': +"1104790": {} +"1104800": {} +"1104830": installDir: Mystery Masterpiece - The Moonstone launch: - config: oslist: windows executable: Moonstone.exe type: default -'1104840': +"1104840": installDir: Vacation Adventures Park Ranger 3 launch: - executable: parkRanger3.exe type: none -'1104850': {} -'1104870': +"1104850": {} +"1104870": installDir: TKKG - Die Feuerprobe launch: - config: @@ -36955,7 +36630,7 @@ oslist: macos executable: TKKG - Die Feuerprobe.app type: default -'1104890': +"1104890": installDir: From Head to Toe launch: - config: @@ -36966,7 +36641,7 @@ oslist: macos executable: From Head to Toe.app type: default -'1104910': +"1104910": installDir: Midnight Grub Session launch: - config: @@ -36975,43 +36650,43 @@ type: default - config: oslist: macos - executable: Midnight Grub Session.app\\Contents\\MacOS\\Midnight Grub Session + executable: "Midnight Grub Session.app\\\\Contents\\\\MacOS\\\\Midnight Grub Session" type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: MidnightGrubSession.x86_64 type: default -'1104930': +"1104930": installDir: dotsRevamped launch: - config: oslist: windows executable: dots-revamped.exe type: none -'1104960': +"1104960": installDir: Alien Kingdom launch: - config: oslist: windows executable: AlienKingdom.exe type: none -'11050': +"11050": installDir: Dracula Origin launch: - executable: game.exe -'110500': +"110500": installDir: Data Jammers FastForward launch: - config: oslist: windows executable: fastforward.exe - config: - osarch: '64' + osarch: "64" oslist: macos description: Launch executable: DataJammers.app -'1105040': +"1105040": installDir: Alchemist Simulator launch: - config: @@ -37022,7 +36697,7 @@ japanese: 錬金術師シミュレーター schinese: 我炼金超牛 tchinese: 我煉金超牛 -'1105110': +"1105110": installDir: OXXO launch: - config: @@ -37037,7 +36712,7 @@ oslist: linux executable: OXXO.x86_64 type: none -'1105140': +"1105140": installDir: Triangulum launch: - config: @@ -37055,99 +36730,99 @@ description: Launch executable: Triangulum.x86_64 type: default -'1105150': +"1105150": installDir: Reverse Me Rez Ru launch: - config: oslist: windows description: Reverse Me! Rez/Ru - executable: ReverseMeRezRu\\ReverseMeRezRu.exe + executable: "ReverseMeRezRu\\\\ReverseMeRezRu.exe" type: default - config: oslist: linux description: Reverse Me! Rez/Ru - executable: ReverseMeRezRu\\ReverseMeRezRu.sh + executable: "ReverseMeRezRu\\\\ReverseMeRezRu.sh" type: default - config: oslist: macos description: Reverse Me! Rez/Ru - executable: ReverseMeRezRu\\ReverseMeRezRu.app + executable: "ReverseMeRezRu\\\\ReverseMeRezRu.app" type: default - config: oslist: windows - ownsdlc: '1106900' + ownsdlc: "1106900" description: Reverse Me! 2 Rose - executable: ReverseMeTwoRose\\ReverseMeTwoRose.exe + executable: "ReverseMeTwoRose\\\\ReverseMeTwoRose.exe" type: option1 - config: oslist: linux - ownsdlc: '1106900' + ownsdlc: "1106900" description: Reverse Me! 2 Rose - executable: ReverseMeTwoRose\\ReverseMeTwoRose.sh + executable: "ReverseMeTwoRose\\\\ReverseMeTwoRose.sh" type: option1 - config: oslist: macos - ownsdlc: '1106900' + ownsdlc: "1106900" description: Reverse Me! 2 Rose - executable: ReverseMeTwoRose\\ReverseMeTwoRose.app + executable: "ReverseMeTwoRose\\\\ReverseMeTwoRose.app" type: option1 - config: oslist: windows - ownsdlc: '1107360' + ownsdlc: "1107360" description: Reverse Moe Pas! Savoie - executable: ReverseMoePasSavoie\\ReverseMoePasSavoie.exe + executable: "ReverseMoePasSavoie\\\\ReverseMoePasSavoie.exe" type: option2 - config: oslist: linux - ownsdlc: '1107360' + ownsdlc: "1107360" description: Reverse Moe Pas! Savoie - executable: ReverseMoePasSavoie\\ReverseMoePasSavoie.sh + executable: "ReverseMoePasSavoie\\\\ReverseMoePasSavoie.sh" type: option2 - config: oslist: macos - ownsdlc: '1107360' + ownsdlc: "1107360" description: Reverse Moe Pas! Savoie - executable: ReverseMoePasSavoie\\ReverseMoePasSavoie.app + executable: "ReverseMoePasSavoie\\\\ReverseMoePasSavoie.app" type: option2 -'1105210': {} -'1105220': +"1105210": {} +"1105220": installDir: Infinity Attackers launch: - config: oslist: windows executable: Infinity Attackers.exe type: none -'1105240': +"1105240": installDir: Pakicetus launch: - config: oslist: windows executable: Pakicetus.exe type: default -'1105330': {} -'1105390': {} -'1105410': - installDir: Shine's Adventures 2 (Zombie Attack) +"1105330": {} +"1105390": {} +"1105410": + installDir: "Shine's Adventures 2 (Zombie Attack)" launch: - config: oslist: windows executable: Shine2.exe type: default -'1105420': +"1105420": installDir: Game of Thrones Winter is Coming launch: - config: oslist: windows executable: GotPC.exe type: none -'1105430': +"1105430": installDir: Bandit Point launch: - config: oslist: windows executable: Bandit Point VR.exe type: vr -'1105460': +"1105460": installDir: FOTAQ launch: - config: @@ -37156,465 +36831,363 @@ type: default - config: oslist: windows - ownsdlc: '1111010' + ownsdlc: "1111010" description: Legacy Edition (English)- With Voice And Subtitles - description_loc: - english: Legacy Edition (English)- With Voice And Subtitles - executable: fotaq-en\\launch_game_win-voiceandsub.bat + executable: "fotaq-en\\\\launch_game_win-voiceandsub.bat" type: option1 workingdir: fotaq-en - config: oslist: windows - ownsdlc: '1111010' + ownsdlc: "1111010" description: Legacy Edition (English)- Voice Only - description_loc: - english: Legacy Edition (English)- Voice Only - executable: fotaq-en\\launch_game_win-voiceonly.bat + executable: "fotaq-en\\\\launch_game_win-voiceonly.bat" type: option1 workingdir: fotaq-en - config: oslist: windows - ownsdlc: '1111010' + ownsdlc: "1111010" description: Legacy Edition (English)- Subtitles Only - description_loc: - english: Legacy Edition (English)- Subtitles Only - executable: fotaq-en\\launch_game_win-subonly.bat + executable: "fotaq-en\\\\launch_game_win-subonly.bat" type: option1 workingdir: fotaq-en - config: oslist: macos - ownsdlc: '1111010' + ownsdlc: "1111010" description: Legacy Edition (English)- With Voice And Subtitles - description_loc: - english: Legacy Edition (English)- With Voice And Subtitles - executable: fotaq-en\\launch_game_mac-voiceandsub.sh + executable: "fotaq-en\\\\launch_game_mac-voiceandsub.sh" type: option1 workingdir: fotaq-en - config: oslist: macos - ownsdlc: '1111010' + ownsdlc: "1111010" description: Legacy Edition (English)- Voice Only - description_loc: - english: Legacy Edition (English)- Voice Only - executable: fotaq-en\\launch_game_mac-voiceonly.sh + executable: "fotaq-en\\\\launch_game_mac-voiceonly.sh" type: option1 workingdir: fotaq-en - config: oslist: macos - ownsdlc: '1111010' + ownsdlc: "1111010" description: Legacy Edition (English)- Subtitles Only - description_loc: - english: Legacy Edition (English)- Subtitles Only - executable: fotaq-en\\launch_game_mac-subonly.sh + executable: "fotaq-en\\\\launch_game_mac-subonly.sh" type: option1 workingdir: fotaq-en - arguments: fotaq-en config: oslist: linux - ownsdlc: '1111010' + ownsdlc: "1111010" description: Legacy Edition (English)- With Voice And Subtitles - description_loc: - english: Legacy Edition (English)- With Voice And Subtitles - executable: fotaq-en\\launch_game_linux-voiceandsub.sh + executable: "fotaq-en\\\\launch_game_linux-voiceandsub.sh" type: option1 - config: oslist: linux - ownsdlc: '1111010' + ownsdlc: "1111010" description: Legacy Edition (English)- Voice Only - description_loc: - english: Legacy Edition (English)- Voice Only - executable: fotaq-en\\launch_game_linux-voiceonly.sh + executable: "fotaq-en\\\\launch_game_linux-voiceonly.sh" type: option1 workingdir: fotaq-en - config: oslist: linux - ownsdlc: '1111010' + ownsdlc: "1111010" description: Legacy Edition (English)- Subtitles Only - description_loc: - english: Legacy Edition (English)- Subtitles Only - executable: fotaq-en\\launch_game_linux-subonly.sh + executable: "fotaq-en\\\\launch_game_linux-subonly.sh" type: option1 workingdir: fotaq-en - config: oslist: windows - ownsdlc: '1111011' + ownsdlc: "1111011" description: Legacy Edition (German)- With Voice And Subtitles - description_loc: - english: Legacy Edition (German)- With Voice And Subtitles - executable: fotaq-de\\launch_game_win-voiceandsub.bat + executable: "fotaq-de\\\\launch_game_win-voiceandsub.bat" type: option1 workingdir: fotaq-de - config: oslist: macos - ownsdlc: '1111011' + ownsdlc: "1111011" description: Legacy Edition (German)- With Voice And Subtitles - description_loc: - english: Legacy Edition (German)- With Voice And Subtitles - executable: fotaq-de\\launch_game_mac-voiceandsub.sh + executable: "fotaq-de\\\\launch_game_mac-voiceandsub.sh" type: option1 workingdir: fotaq-de - config: oslist: linux - ownsdlc: '1111011' + ownsdlc: "1111011" description: Legacy Edition (German)- With Voice And Subtitles - description_loc: - english: Legacy Edition (German)- With Voice And Subtitles - executable: fotaq-de\\launch_game_linux-voiceandsub.sh + executable: "fotaq-de\\\\launch_game_linux-voiceandsub.sh" type: option1 workingdir: fotaq-de - config: oslist: windows - ownsdlc: '1111011' + ownsdlc: "1111011" description: Legacy Edition (German)- Voice Only - description_loc: - english: Legacy Edition (German)- Voice Only - executable: fotaq-de\\launch_game_win-voiceonly.bat + executable: "fotaq-de\\\\launch_game_win-voiceonly.bat" type: option1 workingdir: fotaq-de - config: oslist: macos - ownsdlc: '1111011' + ownsdlc: "1111011" description: Legacy Edition (German)- Voice Only - description_loc: - english: Legacy Edition (German)- Voice Only - executable: fotaq-de\\launch_game_mac-voiceonly.sh + executable: "fotaq-de\\\\launch_game_mac-voiceonly.sh" type: option1 workingdir: fotaq-de - config: oslist: linux - ownsdlc: '1111011' + ownsdlc: "1111011" description: Legacy Edition (German)- Voice Only - description_loc: - english: Legacy Edition (German)- Voice Only - executable: fotaq-de\\launch_game_linux-voiceonly.sh + executable: "fotaq-de\\\\launch_game_linux-voiceonly.sh" type: option1 workingdir: fotaq-de - config: oslist: windows - ownsdlc: '1111011' + ownsdlc: "1111011" description: Legacy Edition (German)- Subtitles Only - description_loc: - english: Legacy Edition (German)- Subtitles Only - executable: fotaq-de\\launch_game_win-subonly.bat + executable: "fotaq-de\\\\launch_game_win-subonly.bat" type: option1 workingdir: fotaq-de - config: oslist: macos - ownsdlc: '1111011' + ownsdlc: "1111011" description: Legacy Edition (German)- Subtitles Only - description_loc: - english: Legacy Edition (German)- Subtitles Only - executable: fotaq-de\\launch_game_mac-subonly.sh + executable: "fotaq-de\\\\launch_game_mac-subonly.sh" type: option1 workingdir: fotaq-de - config: oslist: linux - ownsdlc: '1111011' + ownsdlc: "1111011" description: Legacy Edition (German)- Subtitles Only - description_loc: - english: Legacy Edition (German)- Subtitles Only - executable: fotaq-de\\launch_game_linux-subonly.sh + executable: "fotaq-de\\\\launch_game_linux-subonly.sh" type: option1 workingdir: fotaq-de - config: oslist: windows - ownsdlc: '1111012' + ownsdlc: "1111012" description: Legacy Edition (French)- With Voice And Subtitles - description_loc: - english: Legacy Edition (French)- With Voice And Subtitles - executable: fotaq-fr\\launch_game_win-voiceandsub.bat + executable: "fotaq-fr\\\\launch_game_win-voiceandsub.bat" type: option1 workingdir: fotaq-fr - config: oslist: macos - ownsdlc: '1111012' + ownsdlc: "1111012" description: Legacy Edition (French)- With Voice And Subtitles - description_loc: - english: Legacy Edition (French)- With Voice And Subtitles - executable: fotaq-fr\\launch_game_mac-voiceandsub.sh + executable: "fotaq-fr\\\\launch_game_mac-voiceandsub.sh" type: option1 workingdir: fotaq-fr - config: oslist: linux - ownsdlc: '1111012' + ownsdlc: "1111012" description: Legacy Edition (French)- With Voice And Subtitles - description_loc: - english: Legacy Edition (French)- With Voice And Subtitles - executable: fotaq-fr\\launch_game_linux-voiceandsub.sh + executable: "fotaq-fr\\\\launch_game_linux-voiceandsub.sh" type: option1 workingdir: fotaq-fr - config: oslist: windows - ownsdlc: '1111012' + ownsdlc: "1111012" description: Legacy Edition (French)- Voice Only - description_loc: - english: Legacy Edition (French)- Voice Only - executable: fotaq-fr\\launch_game_win-voiceonly.bat + executable: "fotaq-fr\\\\launch_game_win-voiceonly.bat" type: option1 workingdir: fotaq-fr - config: oslist: macos - ownsdlc: '1111012' + ownsdlc: "1111012" description: Legacy Edition (French)- Voice Only - description_loc: - english: Legacy Edition (French)- Voice Only - executable: fotaq-fr\\launch_game_mac-voiceonly.sh + executable: "fotaq-fr\\\\launch_game_mac-voiceonly.sh" type: option1 workingdir: fotaq-fr - config: oslist: linux - ownsdlc: '1111012' + ownsdlc: "1111012" description: Legacy Edition (French)- Voice Only - description_loc: - english: Legacy Edition (French)- Voice Only - executable: fotaq-fr\\launch_game_linux-voiceonly.sh + executable: "fotaq-fr\\\\launch_game_linux-voiceonly.sh" type: option1 workingdir: fotaq-fr - config: oslist: windows - ownsdlc: '1111012' + ownsdlc: "1111012" description: Legacy Edition (French)- Subtitles Only - description_loc: - english: Legacy Edition (French)- Subtitles Only - executable: fotaq-fr\\launch_game_win-subonly.bat + executable: "fotaq-fr\\\\launch_game_win-subonly.bat" type: option1 workingdir: fotaq-fr - config: oslist: macos - ownsdlc: '1111012' + ownsdlc: "1111012" description: Legacy Edition (French)- Subtitles Only - description_loc: - english: Legacy Edition (French)- Subtitles Only - executable: fotaq-fr\\launch_game_mac-subonly.sh + executable: "fotaq-fr\\\\launch_game_mac-subonly.sh" type: option1 workingdir: fotaq-fr - config: oslist: linux - ownsdlc: '1111012' + ownsdlc: "1111012" description: Legacy Edition (French)- Subtitles Only - description_loc: - english: Legacy Edition (French)- Subtitles Only - executable: fotaq-fr\\launch_game_linux-subonly.sh + executable: "fotaq-fr\\\\launch_game_linux-subonly.sh" type: option1 workingdir: fotaq-fr - config: oslist: windows - ownsdlc: '1111013' + ownsdlc: "1111013" description: Legacy Edition (Spanish)- Voice and Subtitles - description_loc: - english: Legacy Edition (Spanish)- Voice and Subtitles - executable: fotaq-es\\launch_game_win-voiceandsub.bat + executable: "fotaq-es\\\\launch_game_win-voiceandsub.bat" type: option1 workingdir: fotaq-es - config: oslist: windows - ownsdlc: '1111013' + ownsdlc: "1111013" description: Legacy Edition (Spanish)- Subtitles Only - description_loc: - english: Legacy Edition (Spanish)- Subtitles Only - executable: fotaq-es\\launch_game_win-subonly.bat + executable: "fotaq-es\\\\launch_game_win-subonly.bat" type: option1 workingdir: fotaq-es - config: oslist: macos - ownsdlc: '1111013' + ownsdlc: "1111013" description: Legacy Edition (Spanish)- Voice and Subtitles - description_loc: - english: Legacy Edition (Spanish)- Voice and Subtitles - executable: fotaq-es\\launch_game_mac-voiceandsub.sh + executable: "fotaq-es\\\\launch_game_mac-voiceandsub.sh" type: option1 workingdir: fotaq-es - config: oslist: macos - ownsdlc: '1111013' + ownsdlc: "1111013" description: Legacy Edition (Spanish)- Subtitles Only - description_loc: - english: Legacy Edition (Spanish)- Subtitles Only - executable: fotaq-es\\launch_game_mac-subonly.sh + executable: "fotaq-es\\\\launch_game_mac-subonly.sh" type: option1 workingdir: fotaq-es - config: oslist: linux - ownsdlc: '1111013' + ownsdlc: "1111013" description: Legacy Edition (Spanish)- Voice and Subtitles - description_loc: - english: Legacy Edition (Spanish)- Voice and Subtitles - executable: fotaq-es\\launch_game_linux-voiceandsub.sh + executable: "fotaq-es\\\\launch_game_linux-voiceandsub.sh" type: option1 workingdir: fotaq-es - config: oslist: linux - ownsdlc: '1111013' + ownsdlc: "1111013" description: Legacy Edition (Spanish)- Subtitles Only - description_loc: - english: Legacy Edition (Spanish)- Subtitles Only - executable: fotaq-es\\launch_game_linux-subonly.sh + executable: "fotaq-es\\\\launch_game_linux-subonly.sh" type: option1 workingdir: fotaq-es - config: oslist: windows - ownsdlc: '1111014' + ownsdlc: "1111014" description: Legacy Edition (Italian)- Voice and Subtitles - description_loc: - english: Legacy Edition (Italian)- Voice and Subtitles - executable: fotaq-it\\launch_game_win-voiceandsub.bat + executable: "fotaq-it\\\\launch_game_win-voiceandsub.bat" type: option1 workingdir: fotaq-it - config: oslist: windows - ownsdlc: '1111014' + ownsdlc: "1111014" description: Legacy Edition (Italian)- Subtitles Only - description_loc: - english: Legacy Edition (Italian)- Subtitles Only - executable: fotaq-it\\launch_game_win-subonly.bat + executable: "fotaq-it\\\\launch_game_win-subonly.bat" type: option1 workingdir: fotaq-it - config: oslist: macos - ownsdlc: '1111014' + ownsdlc: "1111014" description: Legacy Edition (Italian)- Voice and Subtitles - description_loc: - english: Legacy Edition (Italian)- Voice and Subtitles - executable: fotaq-it\\launch_game_mac-voiceandsub.sh + executable: "fotaq-it\\\\launch_game_mac-voiceandsub.sh" type: option1 workingdir: fotaq-it - config: oslist: macos - ownsdlc: '1111014' + ownsdlc: "1111014" description: Legacy Edition (Italian)- Subtitles Only - description_loc: - english: Legacy Edition (Italian)- Subtitles Only - executable: fotaq-it\\launch_game_mac-subonly.sh + executable: "fotaq-it\\\\launch_game_mac-subonly.sh" type: option1 workingdir: fotaq-it - config: oslist: linux - ownsdlc: '1111014' + ownsdlc: "1111014" description: Legacy Edition (Italian)- Voice and Subtitles - description_loc: - english: Legacy Edition (Italian)- Voice and Subtitles - executable: fotaq-it\\launch_game_linux-voiceandsub.sh + executable: "fotaq-it\\\\launch_game_linux-voiceandsub.sh" type: option1 workingdir: fotaq-it - config: oslist: linux - ownsdlc: '1111014' + ownsdlc: "1111014" description: Legacy Edition (Italian)- Subtitles Only - description_loc: - english: Legacy Edition (Italian)- Subtitles Only - executable: fotaq-it\\launch_game_linux-subonly.sh + executable: "fotaq-it\\\\launch_game_linux-subonly.sh" type: option1 workingdir: fotaq-it - config: oslist: windows - ownsdlc: '1111015' + ownsdlc: "1111015" description: Legacy Edition (Russian)- Voice and Subtitles - description_loc: - english: Legacy Edition (Russian)- Voice and Subtitles - executable: fotaq-ru\\launch_game_win-voiceandsub.bat + executable: "fotaq-ru\\\\launch_game_win-voiceandsub.bat" type: option1 workingdir: fotaq-ru - config: oslist: windows - ownsdlc: '1111015' + ownsdlc: "1111015" description: Legacy Edition (Russian)- Subtitles Only - description_loc: - english: Legacy Edition (Russian)- Subtitles Only - executable: fotaq-ru\\launch_game_win-subonly.bat + executable: "fotaq-ru\\\\launch_game_win-subonly.bat" type: option1 workingdir: fotaq-ru - config: oslist: macos - ownsdlc: '1111015' + ownsdlc: "1111015" description: Legacy Edition (Russian)- Voice and Subtitles - description_loc: - english: Legacy Edition (Russian)- Voice and Subtitles - executable: fotaq-ru\\launch_game_mac-voiceandsub.sh + executable: "fotaq-ru\\\\launch_game_mac-voiceandsub.sh" type: option1 workingdir: fotaq-ru - config: oslist: macos - ownsdlc: '1111015' + ownsdlc: "1111015" description: Legacy Edition (Russian)- Subtitles Only - description_loc: - english: Legacy Edition (Russian)- Subtitles Only - executable: fotaq-ru\\launch_game_mac-subonly.sh + executable: "fotaq-ru\\\\launch_game_mac-subonly.sh" type: option1 workingdir: fotaq-ru - config: oslist: linux - ownsdlc: '1111015' + ownsdlc: "1111015" description: Legacy Edition (Russian)- Voice and Subtitles - description_loc: - english: Legacy Edition (Russian)- Voice and Subtitles - executable: fotaq-ru\\launch_game_linux-voiceandsub.sh + executable: "fotaq-ru\\\\launch_game_linux-voiceandsub.sh" type: option1 workingdir: fotaq-ru - config: oslist: linux - ownsdlc: '1111015' + ownsdlc: "1111015" description: Legacy Edition (Russian)- Subtitles Only - description_loc: - english: Legacy Edition (Russian)- Subtitles Only - executable: fotaq-ru\\launch_game_linux-subonly.sh + executable: "fotaq-ru\\\\launch_game_linux-subonly.sh" type: option1 workingdir: fotaq-ru - config: oslist: windows - ownsdlc: '1111016' + ownsdlc: "1111016" description: Legacy Edition (Hebrew)- Voice and Subtitles - description_loc: - english: Legacy Edition (Hebrew)- Voice and Subtitles - executable: fotaq-he\\launch_game_win-voiceandsub.bat + executable: "fotaq-he\\\\launch_game_win-voiceandsub.bat" type: option1 workingdir: fotaq-he - config: oslist: windows - ownsdlc: '1111016' + ownsdlc: "1111016" description: Legacy Edition (Hebrew)- Subtitles Only - description_loc: - english: Legacy Edition (Hebrew)- Subtitles Only - executable: fotaq-he\\launch_game_win-subonly.bat + executable: "fotaq-he\\\\launch_game_win-subonly.bat" type: option1 workingdir: fotaq-he - config: oslist: macos - ownsdlc: '1111016' + ownsdlc: "1111016" description: Legacy Edition (Hebrew)- Voice and Subtitles - description_loc: - english: Legacy Edition (Hebrew)- Voice and Subtitles - executable: fotaq-he\\launch_game_mac-voiceandsub.sh + executable: "fotaq-he\\\\launch_game_mac-voiceandsub.sh" type: option1 workingdir: fotaq-he - config: oslist: macos - ownsdlc: '1111016' + ownsdlc: "1111016" description: Legacy Edition (Hebrew)- Subtitles Only - description_loc: - english: Legacy Edition (Hebrew)- Subtitles Only - executable: fotaq-he\\launch_game_mac-subonly.sh + executable: "fotaq-he\\\\launch_game_mac-subonly.sh" type: option1 workingdir: fotaq-he - config: oslist: linux - ownsdlc: '1111016' + ownsdlc: "1111016" description: Legacy Edition (Hebrew)- Voice and Subtitles - description_loc: - english: Legacy Edition (Hebrew)- Voice and Subtitles - executable: fotaq-he\\launch_game_linux-voiceandsub.sh + executable: "fotaq-he\\\\launch_game_linux-voiceandsub.sh" type: option1 workingdir: fotaq-he - config: oslist: linux - ownsdlc: '1111016' + ownsdlc: "1111016" description: Legacy Edition (Hebrew)- Subtitles Only - description_loc: - english: Legacy Edition (Hebrew)- Subtitles Only - executable: fotaq-he\\launch_game_linux-subonly.sh + executable: "fotaq-he\\\\launch_game_linux-subonly.sh" type: option1 workingdir: fotaq-he -'1105470': {} -'1105480': +"1105470": {} +"1105480": installDir: GGG Collection launch: - config: @@ -37629,66 +37202,66 @@ oslist: macos executable: game.app type: default -'1105490': +"1105490": installDir: Over Sky launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Over Sky.exe type: none -'1105500': +"1105500": installDir: Yakuza 4 launch: - executable: Yakuza4.exe type: default -'1105510': +"1105510": installDir: Yakuza 5 launch: - - executable: main\\Yakuza5.exe + - executable: "main\\\\Yakuza5.exe" type: default - workingdir: main\\ + workingdir: "main\\\\" - config: betakey: test_sega_reference description: Release_executable - executable: main\\devil_release.exe + executable: "main\\\\devil_release.exe" type: option2 - workingdir: main\\ -'1105530': + workingdir: "main\\\\" +"1105530": installDir: Light Hunters Battalion of Darkness launch: - config: oslist: windows executable: Light Hunters Battalion of Darkness.exe type: default -'1105550': {} -'1105560': +"1105550": {} +"1105560": installDir: Kra-Ken launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Tenshin.exe type: default -'1105570': +"1105570": installDir: Final Crash Demo launch: - config: oslist: windows executable: Final Crash.exe type: default -'1105590': +"1105590": installDir: Dream Cycle launch: - config: oslist: windows executable: DreamCycle.exe type: default -'1105600': +"1105600": installDir: WTC 2 - Part 2 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: WelcomeToChichesterNRFTF.exe type: default @@ -37701,29 +37274,29 @@ executable: WelcomeToChichesterNRFTF.app type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: WelcomeToChichesterNRFTF-32.exe type: default -'1105620': +"1105620": installDir: Exertus launch: - config: oslist: windows executable: loneminded2.exe type: default - - arguments: '-opengl4' + - arguments: "-opengl4" config: oslist: linux description: Exertus (OpenGL) - executable: loneminded2\\Binaries\\Linux\\loneminded2-Linux-Shipping + executable: "loneminded2\\\\Binaries\\\\Linux\\\\loneminded2-Linux-Shipping" type: option1 - config: oslist: linux description: Exertus (Vulkan) - executable: loneminded2\\Binaries\\Linux\\loneminded2-Linux-Shipping + executable: "loneminded2\\\\Binaries\\\\Linux\\\\loneminded2-Linux-Shipping" type: option2 -'1105660': +"1105660": installDir: Stay Safe Labyrinth of the Mad launch: - config: @@ -37732,13 +37305,13 @@ type: default - config: oslist: linux - executable: ./StaySafe + executable: "./StaySafe" type: default - config: oslist: macos - executable: StaySafe.app\\Contents\\MacOS\\StaySafe + executable: "StaySafe.app\\\\Contents\\\\MacOS\\\\StaySafe" type: default -'1105670': +"1105670": installDir: The Last Spell launch: - config: @@ -37748,14 +37321,14 @@ nameLocalized: schinese: 最后的咒语 tchinese: 最後的咒語 -'1105730': +"1105730": installDir: HANGMAN launch: - config: oslist: windows executable: Hangman.exe type: default -'1105740': +"1105740": installDir: Wheel of Fate launch: - config: @@ -37765,30 +37338,30 @@ type: default nameLocalized: french: La Roue du Destin -'1105780': {} -'1105810': +"1105780": {} +"1105810": installDir: Onset launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Onset.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Onset.sh type: default -'1105870': +"1105870": installDir: Hallway Simulator 2020 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Hallway Simulator 2020.exe type: none - config: - osarch: '32' + osarch: "32" oslist: windows executable: Hallway Simulator 2020.exe type: none @@ -37796,28 +37369,28 @@ oslist: linux executable: Hallway Simulator 2020.x86_64 type: none -'1105970': +"1105970": installDir: Immortal launch: - - arguments: '-windowed' + - arguments: "-windowed" config: oslist: windows - executable: \\Immortal\\Immortal.exe + executable: "\\\\Immortal\\\\Immortal.exe" type: default -'1105990': {} -'110600': +"1105990": {} +"110600": installDir: AstroTripper launch: - executable: AstroTripper.exe -'1106030': +"1106030": installDir: ROAD HOMEWARD 3 underwater world launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: RH 3 uw.exe type: default -'1106080': +"1106080": installDir: Princess Project launch: - config: @@ -37827,11 +37400,11 @@ nameLocalized: schinese: 公主养成计划 tchinese: 公主養成計劃 -'110610': +"110610": installDir: Alien Zombie Megadeath launch: - executable: AlienZombieMegadeath.exe -'1106150': +"1106150": installDir: Yet Another Hero Story launch: - config: @@ -37846,112 +37419,110 @@ oslist: linux executable: start type: default -'1106200': +"1106200": installDir: Overseas launch: - config: oslist: windows executable: Overseas.exe type: default -'110630': +"110630": installDir: Mutant Storm Reloaded launch: - executable: MutantStormReloaded.exe -'1106340': +"1106340": installDir: Legend Bowl launch: - config: oslist: windows executable: legend-bowl.exe type: default -'1106350': +"1106350": installDir: Pyrax launch: - executable: Pyrax.exe type: none -'1106530': +"1106530": installDir: GemCraft Frostborn Wrath launch: - config: oslist: windows executable: GemCraft Frostborn Wrath.exe type: default -'1106660': {} -'1106670': +"1106660": {} +"1106670": installDir: Diastone Confusion launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: WindowsNoEditor\\DiastoneConfusion.exe + executable: "WindowsNoEditor\\\\DiastoneConfusion.exe" type: default -'1106690': +"1106690": installDir: game launch: - config: oslist: windows executable: game.exe type: default -'1106700': {} -'1106710': +"1106700": {} +"1106710": installDir: On The Verge II launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: On_The_Verge_II.exe type: none -'1106720': - installDir: Try 'n Cry - Prologue +"1106720": + installDir: "Try 'n Cry - Prologue" launch: - config: oslist: windows - executable: Try 'n Cry - Prologue.exe + executable: "Try 'n Cry - Prologue.exe" type: default -'1106730': +"1106730": installDir: Paradox Escape Route launch: - config: oslist: windows description: First Person Mode - executable: FPS & Overhead\\Paradox Escape Route ALT Camera.exe + executable: "FPS & Overhead\\\\Paradox Escape Route ALT Camera.exe" type: default - workingdir: FPS & Overhead\\ + workingdir: "FPS & Overhead\\\\" - config: oslist: windows description: Fixed Camera Mode - executable: Fixed Camera\\Paradox Escape Route.exe + executable: "Fixed Camera\\\\Paradox Escape Route.exe" type: default - workingdir: Fixed Camera\\ + workingdir: "Fixed Camera\\\\" - config: oslist: windows description: Font for game! executable: Xolonium-Regular.ttf type: default -'1106740': +"1106740": installDir: The Beast of Gevaudan launch: - config: oslist: windows executable: The_Beast_of_Gevaudan.exe type: default -'1106750': +"1106750": installDir: Fault launch: - config: oslist: windows executable: start_protected_game.exe type: default - - arguments: '-dx11' + - arguments: "-dx11" description: Use DX11 - description_loc: - english: Use DX11 executable: start_protected_game.exe -'1106770': +"1106770": installDir: Shepherd of Light launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ShepherdOfLight.exe type: default @@ -37959,14 +37530,14 @@ oslist: macos executable: ShepherdOfLight.app type: default -'1106780': +"1106780": installDir: Terminus Survival launch: - config: oslist: windows executable: Terminus.exe type: default -'1106790': +"1106790": installDir: Red Horizon launch: - config: @@ -37977,52 +37548,52 @@ oslist: macos executable: RedHorizon.app type: default -'1106830': +"1106830": installDir: Rainbow Billy The Curse of the Leviathan launch: - config: oslist: windows executable: RainbowBilly.exe type: default -'1106840': +"1106840": installDir: Hydroneer launch: - config: oslist: windows executable: Mining.exe type: default -'1106860': +"1106860": installDir: AHEGAL 2 launch: - config: oslist: windows executable: AHEGAL 2.exe type: none -'1106880': +"1106880": installDir: Tribes of Midgard - Open Beta launch: - - arguments: '-noreuseconn' + - arguments: "-noreuseconn" config: oslist: windows executable: TOM.exe type: none -'1106910': {} -'1106920': +"1106910": {} +"1106920": installDir: Nyanco launch: - - arguments: ' --in-process-gpu' + - arguments: " --in-process-gpu" config: oslist: windows executable: Nyanco.exe type: none -'1106930': +"1106930": installDir: Click Commander launch: - config: oslist: windows executable: click.exe type: none -'1106940': +"1106940": installDir: How to Raise a Wolf Girl launch: - executable: kemomusu.exe @@ -38030,7 +37601,7 @@ nameLocalized: japanese: ケモノ娘の育て方 tchinese: 兽娘的养成方法 -'1106950': +"1106950": installDir: FS_Friendswood launch: - config: @@ -38041,28 +37612,28 @@ oslist: linux executable: FS_Friendswood.sh type: default -'1106970': +"1106970": installDir: Insect Simulator launch: - config: oslist: windows executable: WindowsNoEditor/InsectSim.exe type: default -'1106980': +"1106980": installDir: Bulletorium launch: - config: oslist: windows executable: Bulletorium.exe type: default -'1107040': - installDir: You Don't Have Time +"1107040": + installDir: "You Don't Have Time" launch: - config: oslist: windows executable: YouDontHaveTime.exe type: none -'1107060': +"1107060": installDir: Lighthouse of guiding flames launch: - config: @@ -38077,7 +37648,7 @@ oslist: linux executable: LighthouseGF.sh type: default -'1107100': +"1107100": installDir: Second Final launch: - arguments: Launch Game @@ -38085,17 +37656,17 @@ oslist: windows executable: 2ndFinal ND.exe type: default -'1107130': +"1107130": installDir: The Way of Cinnamon launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TWoC.exe type: default nameLocalized: japanese: レッサーパンダの大冒険!The Way of Cinnamon -'1107160': +"1107160": installDir: Pew Pew Puzzle Defense launch: - config: @@ -38107,52 +37678,52 @@ executable: pppd type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: pppd type: none -'1107170': +"1107170": installDir: Champions launch: - config: oslist: windows executable: Game.exe type: default -'1107190': +"1107190": installDir: The Fragment launch: - executable: The Fragment.exe type: default -'1107210': +"1107210": installDir: Jumping Over It With Kang KiYun launch: - config: oslist: windows executable: Jumping Over It With Kang KiYun.exe type: none -'1107230': +"1107230": installDir: The 13th Doll A Fan Game of The 7th Guest launch: - - arguments: '-executionType STEAM' + - arguments: "-executionType STEAM" config: oslist: windows executable: The13thDoll.exe type: none - - arguments: '-executionType STEAM' + - arguments: "-executionType STEAM" config: oslist: macos executable: The13thDoll.app type: none - - arguments: '-executionType STEAM' + - arguments: "-executionType STEAM" config: oslist: linux executable: The13thDoll.x86_64 type: none -'1107300': +"1107300": installDir: Down in Bermuda launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: DowninBermuda.exe type: default @@ -38160,56 +37731,56 @@ oslist: macos executable: DowninBermuda.app type: default -'1107350': +"1107350": installDir: Unsolved Mystery Club - Ancient Astronauts launch: - config: oslist: windows executable: Ancient Astronauts.exe type: default -'1107370': +"1107370": installDir: Demoniaca Everlasting Night launch: - config: oslist: windows executable: Demoniaca_ Everlasting Night.exe type: default -'1107390': +"1107390": installDir: Project Polygun launch: - config: oslist: windows executable: ProjectTDM.exe type: none -'1107440': +"1107440": installDir: LastWarrior launch: - config: oslist: windows executable: LastWarrior.exe type: default -'1107450': +"1107450": installDir: Dreams of Solari - Chapter 1 launch: - config: oslist: windows executable: Dreams Of Solari.exe type: none -'1107470': +"1107470": installDir: Applewood launch: - config: oslist: windows executable: Applewood.exe type: default -'1107490': +"1107490": installDir: The Searchers of Legends Origin launch: - config: oslist: windows executable: TSOL.exe type: none -'1107510': +"1107510": installDir: Favo launch: - config: @@ -38222,15 +37793,15 @@ type: default nameLocalized: japanese: Favo!+ ファーボプラス -'1107520': {} -'1107580': +"1107520": {} +"1107580": installDir: mAIn COMPetition launch: - config: oslist: windows executable: mAIn_COMPetition.exe type: default -'1107620': +"1107620": installDir: Mystery Island - Hidden Object Games launch: - config: @@ -38244,45 +37815,45 @@ nameLocalized: czech: Tajemný Ostrov - Skryté Objekty Česky dutch: Avonturen op Kreta - Zoek en Vind - french: Objets Cachés - Énigme de l'île - german: 'Insel-Rätsel: Wimmelbilder auf Deutsch' - russian: 'Поиск Предметов: Тайна острова' + french: "Objets Cachés - Énigme de l'île" + german: "Insel-Rätsel: Wimmelbilder auf Deutsch" + russian: "Поиск Предметов: Тайна острова" spanish: La Isla - Encontrar Objetos -'1107640': +"1107640": installDir: Turbo Plane launch: - config: oslist: windows executable: Turbo Plane.exe type: default -'1107650': {} -'1107660': +"1107650": {} +"1107660": installDir: Round Rooms launch: - config: oslist: windows executable: Round Rooms.exe type: none -'1107720': +"1107720": installDir: Spider Solitaire F launch: - config: oslist: windows executable: Spider Solitaire F.exe type: none -'1107730': +"1107730": installDir: DAHALO launch: - config: oslist: windows executable: Dahalo.exe type: default -'1107740': {} -'1107750': +"1107740": {} +"1107750": installDir: Faraday Protocol launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: FaradayProtocol.exe type: default @@ -38290,7 +37861,7 @@ oslist: linux executable: FaradayProtocol.sh type: default -'1107790': +"1107790": installDir: The Complex launch: - config: @@ -38301,7 +37872,7 @@ oslist: macos executable: TheComplex.app/Contents/MacOS/The Complex type: default -'1107820': +"1107820": installDir: Pushy and Pully in Blockland launch: - config: @@ -38316,14 +37887,14 @@ oslist: linux executable: pushy_and_pully.x86 type: default -'1107860': +"1107860": installDir: Dofense launch: - config: oslist: windows executable: Dofense.exe type: default -'1107920': +"1107920": installDir: Pigeon Hunter launch: - config: @@ -38334,7 +37905,7 @@ oslist: macos executable: Pigeon-Hunter.app type: none -'1107940': +"1107940": installDir: Rocket Boy launch: - config: @@ -38345,7 +37916,7 @@ oslist: macos executable: Rocket-Boy.app type: none -'110800': +"110800": installDir: L.A.Noire launch: - executable: PlayLAN.exe @@ -38355,11 +37926,11 @@ description: Play LA Noire executable: PlayLAN.exe type: none -'1108000': +"1108000": installDir: ChildrenOfSilentown launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ChildrenOfSilentown.exe type: default @@ -38369,25 +37940,21 @@ type: default - config: oslist: windows - ownsdlc: '2213230' + ownsdlc: "2213230" description: Bonus Content - description_loc: - english: Bonus Content executable: open_bonus_win.bat - config: betakey: experimental oslist: linux - ownsdlc: '2213230' + ownsdlc: "2213230" description: Bonus Content - description_loc: - english: Bonus Content executable: open_bonus_lin.sh nameLocalized: japanese: サイレンタウンの子供たち Children of Silentown koreana: 사일런타운의 아이들 Children of Silentown schinese: 寂静村的孩子们 Children of Silentown tchinese: 寂靜村的孩子們 Children of Silentown -'1108020': +"1108020": installDir: Bepuzzled Sweets Jigsaw Puzzle launch: - config: @@ -38402,7 +37969,7 @@ oslist: linux executable: BepuzzledSweets.x86 type: default -'1108030': +"1108030": installDir: Bepuzzled Paradise Jigsaw Puzzle launch: - config: @@ -38417,7 +37984,7 @@ oslist: linux executable: BepuzzledParadise.x86 type: default -'1108040': +"1108040": installDir: Bepuzzled Aquatic Jigsaw Puzzle launch: - config: @@ -38432,11 +37999,11 @@ oslist: linux executable: BepuzzledAquatic.x86_64 type: default -'1108090': +"1108090": installDir: Climb With Wheelbarrow launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TB.exe type: default @@ -38444,24 +38011,22 @@ oslist: macos executable: TB.app type: default -'1108110': {} -'1108130': +"1108110": {} +"1108130": installDir: The Last AntLion launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: steamworks_sdk_144\\sdk\\tools\\ContentBuilder\\content\\windows_content\\The Last AntLion.exe + executable: "steamworks_sdk_144\\\\sdk\\\\tools\\\\ContentBuilder\\\\content\\\\windows_content\\\\The Last AntLion.exe" type: default - workingdir: steamworks_sdk_144\\sdk\\tools\\ContentBuilder\\content\\windows_content\\ + workingdir: "steamworks_sdk_144\\\\sdk\\\\tools\\\\ContentBuilder\\\\content\\\\windows_content\\\\" - config: oslist: macos - executable: >- - steamworks_sdk_144\\sdk\\tools\\ContentBuilder\\content\\mac_content\\The Last - AntLion.app\\Contents\\MacOS\\TheLastAntLion + executable: "steamworks_sdk_144\\\\sdk\\\\tools\\\\ContentBuilder\\\\content\\\\mac_content\\\\The Last AntLion.app\\\\Contents\\\\MacOS\\\\TheLastAntLion" type: default - workingdir: steamworks_sdk_144\\sdk\\tools\\ContentBuilder\\content\\mac_content\\ -'1108170': + workingdir: "steamworks_sdk_144\\\\sdk\\\\tools\\\\ContentBuilder\\\\content\\\\mac_content\\\\" +"1108170": installDir: Plot of the Druid launch: - config: @@ -38474,21 +38039,21 @@ type: default - config: oslist: macos - executable: Mac.app\\Contents\\MacOS\\Plot of the Druid + executable: "Mac.app\\\\Contents\\\\MacOS\\\\Plot of the Druid" type: default -'1108190': +"1108190": installDir: Victorian Mysteries - The Yellow Room launch: - config: oslist: windows executable: Victorian Mysteries.exe type: default -'1108240': +"1108240": installDir: CodeThe Werewolf Party launch: - executable: CodeThe Werewolf Party.exe type: none -'1108250': +"1108250": installDir: All Systems Operational launch: - config: @@ -38497,9 +38062,9 @@ type: default - config: oslist: macos - executable: Game.app\\Contents\\MacOS\\All Systems Operational + executable: "Game.app\\\\Contents\\\\MacOS\\\\All Systems Operational" type: default -'1108310': +"1108310": installDir: The Demon - Nicolas Eymerich Inquisitor Audiogame launch: - config: @@ -38510,30 +38075,30 @@ oslist: macos executable: The Demon - Nicolas Eymerich Inquisitor Audiogame.app type: none -'1108320': +"1108320": installDir: BrokenDelusion launch: - executable: BrokenDelusion.exe type: none -'1108350': +"1108350": installDir: Boet Fighter launch: - config: oslist: windows executable: Boet Fighter.exe type: default -'1108360': +"1108360": installDir: AOSManager launch: - config: oslist: windows executable: AosManager.exe type: default -'1108370': +"1108370": installDir: Ratropolis launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Ratropolis.exe type: default @@ -38541,15 +38106,15 @@ oslist: macos executable: Ratropolis.app type: default -'1108380': +"1108380": installDir: Highlight launch: - executable: Highlight.exe type: none -'1108400': {} -'1108420': {} -'1108540': - installDir: Zen Chess Champion's Moves +"1108400": {} +"1108420": {} +"1108540": + installDir: "Zen Chess Champion's Moves" launch: - config: oslist: windows @@ -38557,9 +38122,9 @@ type: default - config: oslist: macos - executable: Zen_Chess_champions_moves_Steam.app\\Contents\\MacOS\\Zen_Chess_champions_moves_Steam + executable: "Zen_Chess_champions_moves_Steam.app\\\\Contents\\\\MacOS\\\\Zen_Chess_champions_moves_Steam" type: default -'1108550': +"1108550": installDir: Zen Chess Blindfold Masters launch: - config: @@ -38568,39 +38133,39 @@ type: default - config: oslist: macos - executable: Zen_Chess_blindfold_masters_Steam.app\\Contents\\MacOS\\Zen_Chess_blindfold_masters_Steam + executable: "Zen_Chess_blindfold_masters_Steam.app\\\\Contents\\\\MacOS\\\\Zen_Chess_blindfold_masters_Steam" type: default -'1108560': +"1108560": installDir: FrenzyRetribution launch: - config: oslist: windows executable: FrenzyRetribution.exe type: none -'1108590': +"1108590": installDir: Eldest Souls launch: - executable: Eldest Souls.exe type: none nameLocalized: schinese: 上古之魂 -'1108600': {} -'1108620': +"1108600": {} +"1108620": installDir: Gangsta Woman launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Gangstawoman.exe type: default -'1108630': +"1108630": installDir: GytholGrandittiTheCryptofDarkness launch: - config: oslist: windows executable: GytholGrandittiTheCryptofDarkness/GG_TCOD.exe type: default -'1108640': +"1108640": installDir: OMNIMUS launch: - config: @@ -38617,62 +38182,62 @@ type: default - config: oslist: windows - ownsdlc: '1187100' - description: 'OMNIMUS: Immersion' + ownsdlc: "1187100" + description: "OMNIMUS: Immersion" executable: Immersion/OMNIMUS Immersion.exe type: option1 - config: oslist: linux - ownsdlc: '1187100' - description: 'OMNIMUS: Immersion' + ownsdlc: "1187100" + description: "OMNIMUS: Immersion" executable: Immersion/OMNIMUS Immersion.sh type: option1 - config: oslist: macos - ownsdlc: '1187100' - description: 'OMNIMUS: Immersion' + ownsdlc: "1187100" + description: "OMNIMUS: Immersion" executable: Immersion/OMNIMUS Immersion.app type: option1 -'1108660': +"1108660": installDir: Crystal Defense launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: CrystalDefense.exe type: default - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" config: - osarch: '64' + osarch: "64" oslist: windows executable: CrystalDefense.exe type: config - config: betakey: beta - osarch: '64' + osarch: "64" oslist: linux executable: CrystalDefense.x86_64 type: default -'1108680': +"1108680": installDir: Monster Girl Fantasy 2 Exposed launch: - config: oslist: windows executable: Game.exe type: default -'1108740': +"1108740": installDir: Stick em Up launch: - executable: Stick Em Up!.exe type: none -'1108780': +"1108780": installDir: The Pirate Queen launch: - config: oslist: windows executable: The Pirate Queen.exe type: default -'1108820': +"1108820": installDir: Polar Jump launch: - config: @@ -38684,52 +38249,52 @@ oslist: macos executable: PolarJump.app type: default -'1108940': +"1108940": nameLocalized: english: Strange planet -'1108950': {} -'1109070': +"1108950": {} +"1109070": installDir: Contact Point launch: - executable: Contact Point.exe type: default -'1109080': +"1109080": installDir: Prison Ball Full Blown launch: - config: oslist: windows executable: PrisonBalls.exe type: default -'1109100': +"1109100": installDir: El Tesoro de Isla Alcachofa launch: - config: oslist: windows executable: Isla.exe type: default -'1109110': +"1109110": installDir: Ghost Land launch: - config: oslist: windows executable: Ghostland.exe type: none -'1109120': {} -'1109130': +"1109120": {} +"1109130": installDir: Lost_Memories_3 launch: - config: oslist: windows executable: Game.exe type: none -'1109160': +"1109160": installDir: Giants Uprising launch: - config: oslist: windows executable: GiantsUprising.exe type: none -'1109170': +"1109170": installDir: Happy Grumps launch: - config: @@ -38740,49 +38305,49 @@ oslist: macos executable: HappyGrumps.app type: default -'1109280': +"1109280": installDir: Back To Hell launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Назад в преисподнюю (x64).exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: Назад в преисподнюю (x86).exe type: default nameLocalized: russian: Назад в преисподнюю -'1109300': +"1109300": installDir: Volt Patrol launch: - config: oslist: windows executable: Volt Patrol.exe type: default -'1109310': +"1109310": installDir: Expansion launch: - executable: Game.exe type: none -'1109340': +"1109340": installDir: Tennis. Amazing tournament launch: - config: oslist: windows executable: Tennis. Amazing tournament.exe type: vr -'1109350': +"1109350": installDir: The Governor launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TheGovernor.exe type: option1 -'1109360': +"1109360": installDir: Hentai Mosaique Fix-IT Shoppe launch: - config: @@ -38793,40 +38358,40 @@ oslist: linux executable: Hentai Mosaique Fix IT Shoppe.x86_64 type: none -'1109400': +"1109400": installDir: Dino Delivery launch: - executable: DinoDelivery.exe type: default -'1109410': +"1109410": installDir: Perspective launch: - executable: Perspective.exe type: default -'1109420': +"1109420": installDir: The Luminist launch: - executable: The Luminist.exe type: default -'1109460': +"1109460": installDir: There is No GreenDam launch: - config: oslist: windows executable: There is No GreenDam.exe type: default -'1109550': +"1109550": installDir: CricVRX launch: - config: oslist: windows executable: CricVRX.exe type: vr -'1109680': +"1109680": installDir: Regiments launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Regiments.exe type: default @@ -38835,7 +38400,7 @@ oslist: macos executable: Regiments.app type: default -'1109690': +"1109690": installDir: Asterix & Obelix XXL 3 - The Crystal Menhir launch: - config: @@ -38846,47 +38411,47 @@ oslist: macos executable: Asterix & Obelix XXL 3.app type: default -'1109700': +"1109700": installDir: Last warrior launch: - config: oslist: windows executable: game.exe type: default -'1109720': +"1109720": installDir: DOTORI launch: - config: oslist: windows executable: DOTORI.exe type: default -'1109740': +"1109740": installDir: Kakuro launch: - config: oslist: windows executable: Kakuro.exe type: default -'1109750': +"1109750": installDir: Terracotta - Shards of Doom launch: - config: oslist: windows executable: Terracotta.exe type: default -'1109820': +"1109820": installDir: Pile Up launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: PileUp.exe type: none -'1109840': +"1109840": installDir: Réussir Code de la Route launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Reussir Code de la route.exe type: default @@ -38895,48 +38460,48 @@ executable: Reussir Code de la route.app type: default nameLocalized: - arabic: 'Réussir : Code de la Route - Nouvelle Édition (قانون المرور الفرنسي)' - brazilian: 'Réussir: Code de la Route Spécial Moto (Código da Estrada Francês)' - danish: 'Réussir : Code de la Route - Nouvelle Édition (Fransk færdselslov)' - dutch: 'Réussir : Code de la Route - Nouvelle Édition (Franse verkeersregels)' - english: 'Réussir : Code de la Route - Nouvelle Édition (French Highway Code)' - finnish: 'Réussir : Code de la Route - Nouvelle Édition (Ranskan tieliikennelaki)' - german: 'Réussir : Code de la Route - Nouvelle Édition (Französische Verkehrsregeln)' - italian: 'Réussir : Code de la Route - Nouvelle Édition (Codice della strada francese)' - latam: 'Réussir : Code de la Route - Nouvelle Édition (Código de Tráfico francés)' - norwegian: 'Réussir : Code de la Route - Nouvelle Édition (Franske trafikkregler)' - polish: 'Réussir : Code de la Route - Nouvelle Édition (Francuski kodeks drogowy)' + arabic: "Réussir : Code de la Route - Nouvelle Édition (قانون المرور الفرنسي)" + brazilian: "Réussir: Code de la Route Spécial Moto (Código da Estrada Francês)" + danish: "Réussir : Code de la Route - Nouvelle Édition (Fransk færdselslov)" + dutch: "Réussir : Code de la Route - Nouvelle Édition (Franse verkeersregels)" + english: "Réussir : Code de la Route - Nouvelle Édition (French Highway Code)" + finnish: "Réussir : Code de la Route - Nouvelle Édition (Ranskan tieliikennelaki)" + german: "Réussir : Code de la Route - Nouvelle Édition (Französische Verkehrsregeln)" + italian: "Réussir : Code de la Route - Nouvelle Édition (Codice della strada francese)" + latam: "Réussir : Code de la Route - Nouvelle Édition (Código de Tráfico francés)" + norwegian: "Réussir : Code de la Route - Nouvelle Édition (Franske trafikkregler)" + polish: "Réussir : Code de la Route - Nouvelle Édition (Francuski kodeks drogowy)" portuguese: Code de la Route - Nouvelle Édition (Código de Tráfico francés) - russian: 'Réussir : Code de la Route - Nouvelle Édition (Французские правила дорожного движения)' - schinese: 'Réussir : Code de la Route - Nouvelle Édition (法国道路交通法)' - spanish: 'Réussir : Code de la Route - Nouvelle Édition (Código de Tráfico francés)' - swedish: 'Réussir: Code de la Route - Nouvelle Édition (Fransk körkortslagstiftning)' - tchinese: 'Réussir : Code de la Route - Nouvelle Édition (法國道路交通法)' - turkish: 'Réussir : Code de la Route - Nouvelle Édition (Fransız Karayolu Yönetmeliği)' -'1109880': + russian: "Réussir : Code de la Route - Nouvelle Édition (Французские правила дорожного движения)" + schinese: "Réussir : Code de la Route - Nouvelle Édition (法国道路交通法)" + spanish: "Réussir : Code de la Route - Nouvelle Édition (Código de Tráfico francés)" + swedish: "Réussir: Code de la Route - Nouvelle Édition (Fransk körkortslagstiftning)" + tchinese: "Réussir : Code de la Route - Nouvelle Édition (法國道路交通法)" + turkish: "Réussir : Code de la Route - Nouvelle Édition (Fransız Karayolu Yönetmeliği)" +"1109880": installDir: Just Random Squares launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: JustRandomSquares.exe type: default -'1109890': +"1109890": installDir: Planet Invasion launch: - config: oslist: windows executable: Planet Invasion.exe type: default -'1109900': {} -'1109940': +"1109900": {} +"1109940": installDir: RailRoadVR launch: - config: oslist: windows executable: RRVROct2021.exe type: vr -'1109960': +"1109960": installDir: The Tales of Epicton Kingdom launch: - config: @@ -38945,20 +38510,20 @@ type: default - config: oslist: macos - executable: The Tale of Epicton Kingdom.app\\Contents\\MacOS\\nwjs + executable: "The Tale of Epicton Kingdom.app\\\\Contents\\\\MacOS\\\\nwjs" type: default - config: oslist: linux executable: The Tales of Epicton Kingdom type: default -'1109980': +"1109980": installDir: SARE Inception launch: - config: oslist: windows executable: SareInception.exe type: none -'111000': +"111000": installDir: The Clockwork Man launch: - config: @@ -38970,7 +38535,7 @@ - config: oslist: linux executable: The Clockwork Man -'1110010': +"1110010": installDir: The Doulos Study launch: - config: @@ -38984,22 +38549,22 @@ type: default - config: oslist: macos - executable: Contents\\MacOS\\The Doulos Study Mac + executable: "Contents\\\\MacOS\\\\The Doulos Study Mac" type: default - config: oslist: windows - ownsdlc: '1133560' + ownsdlc: "1133560" description: The Doulos Study Ranked - executable: Doulos Study Ranked\\Doulos Study Ranked.exe + executable: "Doulos Study Ranked\\\\Doulos Study Ranked.exe" type: option2 -'1110020': +"1110020": installDir: Image of Perfection launch: - config: oslist: windows executable: nw.exe type: default -'1110030': +"1110030": installDir: Heroes of Myth launch: - config: @@ -39014,8 +38579,8 @@ oslist: linux executable: HeroesOfMyth type: none -'1110050': - installDir: Evan's Remains +"1110050": + installDir: "Evan's Remains" launch: - config: oslist: windows @@ -39023,9 +38588,9 @@ type: none - config: oslist: macos - executable: EvansRemains.app\\Contents\\MacOS\\EvansRemainsv324 + executable: "EvansRemains.app\\\\Contents\\\\MacOS\\\\EvansRemainsv324" type: default -'111010': +"111010": installDir: The Clockwork Man 2 launch: - config: @@ -39037,73 +38602,73 @@ - config: oslist: linux executable: The Clockwork Man - The Hidden World -'1110100': +"1110100": installDir: Power Rangers Battle for the Grid launch: - config: oslist: windows executable: BattleForTheGrid.exe type: default -'1110200': +"1110200": installDir: Spaceman Defender launch: - config: oslist: windows executable: SpacemanDefender.exe type: default -'1110210': +"1110210": installDir: Adams Ascending launch: - config: oslist: windows - executable: Adam's Ascending Early Access 1.3.exe + executable: "Adam's Ascending Early Access 1.3.exe" type: default -'1110220': +"1110220": installDir: Shinobi Spirits S Legend of Heroes launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Shinobi Spirits S Legend of Heroes.exe type: default -'1110230': +"1110230": installDir: Mountain launch: - config: oslist: windows executable: Mountain.exe type: default -'1110280': +"1110280": installDir: Royal Life Hard to be a Queen launch: - config: oslist: windows executable: RoyalLife_HardToBeAQueen.exe type: none -'1110290': {} -'1110350': +"1110290": {} +"1110350": installDir: fishman launch: - config: oslist: windows executable: fishman.exe type: default -'1110380': +"1110380": installDir: Fit For a King launch: - config: oslist: windows executable: FitforaKing.exe type: default -'1110430': {} -'1110470': +"1110430": {} +"1110470": installDir: This Is Space launch: - config: oslist: windows executable: ThisIsSpace.exe type: none -'1110490': +"1110490": installDir: LAB Defence launch: - config: @@ -39112,59 +38677,59 @@ type: default - config: oslist: macos - executable: LAB Defence.app\\Contents\\MacOS\\LAB Defence + executable: "LAB Defence.app\\\\Contents\\\\MacOS\\\\LAB Defence" type: default - config: oslist: linux executable: LAB Defence.x86_64 type: default -'1110600': +"1110600": installDir: GrayScale launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: GrayScale.exe type: default -'1110620': {} -'1110640': +"1110620": {} +"1110640": installDir: DoubleElfFantasy launch: - executable: Game.exe type: default -'1110650': +"1110650": installDir: bz5 launch: - config: oslist: windows - executable: win\\σê½Σ╗ÑΣ╕║Σ╜áµÿ»σ╝ÇσÅæΦÇàµêæσ░▒Σ╕ìµòóµëôΣ╜á.exe + executable: "win\\\\σê½Σ╗ÑΣ╕║Σ╜áµÿ»σ╝ÇσÅæΦÇàµêæσ░▒Σ╕ìµòóµëôΣ╜á.exe" type: default - config: oslist: macos - executable: mac.app\\Contents\\MacOS\\σê½Σ╗ÑΣ╕║Σ╜áµÿ»σ╝ÇσÅæΦÇàµêæσ░▒Σ╕ìµòóµëôΣ╜á + executable: "mac.app\\\\Contents\\\\MacOS\\\\σê½Σ╗ÑΣ╕║Σ╜áµÿ»σ╝ÇσÅæΦÇàµêæσ░▒Σ╕ìµòóµëôΣ╜á" type: default -'1110670': +"1110670": installDir: Under The Ground launch: - config: oslist: windows executable: Under The Ground.exe type: default -'1110690': +"1110690": installDir: Banter_Schooldays launch: - config: oslist: windows executable: Banter_Schooldays.exe type: default -'1110720': +"1110720": installDir: The Last Companion launch: - executable: LittleFriend.exe type: default nameLocalized: schinese: 我与我行将离去的小友。 -'1110780': +"1110780": installDir: TaP2_MobALaCaf launch: - config: @@ -39177,43 +38742,43 @@ type: none - config: oslist: windows - ownsdlc: '1246700' + ownsdlc: "1246700" description: Capitaine Douchebag Non-Censuré executable: CapitaineDouchebag.exe type: option1 -'1110790': {} -'1110830': +"1110790": {} +"1110830": installDir: ProjectDunk launch: - config: betakey: Development - osarch: '64' + osarch: "64" oslist: windows executable: Dunk.exe type: default -'1110840': +"1110840": installDir: KEIKA - A Puzzle Adventure launch: - config: oslist: windows executable: KEIKA - A Puzzle Adventure.exe type: default -'1110870': +"1110870": installDir: Alien Shooter in Space Cradle - Virtual Reality launch: - config: oslist: windows executable: ASSC.exe type: vr -'1110910': +"1110910": installDir: Mortal Shell launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Dungeonhaven.exe type: default -'111100': +"111100": installDir: Snuggle Truck launch: - config: @@ -39228,72 +38793,72 @@ oslist: linux description: Play Snuggle Truck executable: startgame.sh - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" config: oslist: windows description: Play Snuggle Truck (show GFX options) executable: Snuggle Truck.exe - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" config: oslist: macos description: Play Snuggle Truck (show GFX options) executable: Snuggle Truck.app - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" config: oslist: linux description: Play Snuggle Truck (show GFX options) executable: startgame.sh -'1111040': +"1111040": installDir: Global Aviation Dream launch: - config: oslist: windows executable: Global Aviation Dream.exe type: default -'1111090': +"1111090": installDir: Alpha Lyrae Discovery launch: - config: oslist: windows executable: Alpha Lyrae Discovery.exe type: default -'1111100': +"1111100": installDir: Oasis Shooting Ops launch: - config: oslist: windows executable: OSO.exe type: default -'1111110': +"1111110": installDir: Euro NumismatCy! Coin Collector launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: nw.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: nw.exe type: default -'1111120': +"1111120": installDir: Snares of Ruin 2 launch: - config: oslist: windows executable: SoR2.exe type: none -'1111130': +"1111130": installDir: Song of a Spirit launch: - config: oslist: windows executable: SongOfASpirit.exe type: none -'1111150': {} -'1111190': {} -'1111200': +"1111150": {} +"1111190": {} +"1111200": installDir: CarSoccerWorldCup launch: - config: @@ -39301,127 +38866,123 @@ description: Car Soccer World Cup executable: carsoccer.exe type: default -'1111210': +"1111210": installDir: The Backrooms Game launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: The Backrooms Game.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: The Backrooms Game 1.02.003_Linux.x86_64 type: default -'1111220': +"1111220": installDir: Genius! NAZI-GIRL GoePPels-Chan ep3 launch: - config: oslist: windows description: Genius! NAZI-GIRL GoePPels-Chan ep3(English) - description_loc: - english: Genius! NAZI-GIRL GoePPels-Chan ep3(English) executable: goeppels03E.exe type: default - config: oslist: windows description: Moemoe! NAZI-GIRL GoePPels-Chan ep3(Japanese) - description_loc: - english: Moemoe! NAZI-GIRL GoePPels-Chan ep3(Japanese) executable: goeppels03.exe type: none -'1111250': +"1111250": installDir: Corporate America launch: - config: oslist: windows executable: Corporate_America.exe type: default -'1111270': +"1111270": installDir: I Wanna Brother launch: - config: oslist: windows executable: I Wanna Brother.exe type: default -'1111290': {} -'1111300': +"1111290": {} +"1111300": installDir: Aim for the Win launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Aim FTW Base Game executable: Aim FTW.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows description: Aim FTW Base Game executable: Aim FTW.exe type: default - config: oslist: macos - executable: Contents\\MacOS\\AimForTheWin + executable: "Contents\\\\MacOS\\\\AimForTheWin" type: default -'1111310': +"1111310": installDir: Duck in Town - A Rising Knight launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: duckintown-win.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: duckintown-linux.x86_64 type: default - config: oslist: macos - executable: Duck in Town - A Rising Knight.app\\Contents\\MacOS\\Duck in Town - A Rising Knight + executable: "Duck in Town - A Rising Knight.app\\\\Contents\\\\MacOS\\\\Duck in Town - A Rising Knight" type: default -'1111330': +"1111330": installDir: Rolling Rumble launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Rolling Rumble.exe type: default -'1111340': +"1111340": installDir: Dream Jump Adventure launch: - executable: Dream Jump Adventure/Dream Jump Adventure.exe type: default -'1111380': +"1111380": installDir: ROBOTICS;NOTES ELITE launch: - config: oslist: windows executable: boot.bat type: default -'1111390': +"1111390": installDir: ROBOTICS;NOTES DaSH launch: - config: oslist: windows executable: boot.bat type: default -'1111410': +"1111410": installDir: Think_ launch: - config: oslist: windows executable: Think_.exe type: default -'1111420': +"1111420": installDir: Infinite Skyline Superflight launch: - executable: Infinite Skyline.exe type: none -'1111450': +"1111450": installDir: YouthFeather launch: - config: @@ -39431,80 +38992,80 @@ nameLocalized: schinese: 青羽 tchinese: 青羽 -'1111540': +"1111540": installDir: Room 40 launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows executable: Room 40.exe type: default -'1111590': +"1111590": installDir: Linked Mask launch: - config: oslist: windows executable: LinkedMask.exe type: default -'1111610': +"1111610": installDir: All That Remains launch: - config: - osarch: '32' + osarch: "32" oslist: windows - executable: AllThatRemains\\Binaries\\Win32\\AllThatRemains-Win32.exe + executable: "AllThatRemains\\\\Binaries\\\\Win32\\\\AllThatRemains-Win32.exe" type: default - config: - osarch: '64' + osarch: "64" oslist: windows - executable: AllThatRemains\\Binaries\\Win64\\AllThatRemains-Win64.exe + executable: "AllThatRemains\\\\Binaries\\\\Win64\\\\AllThatRemains-Win64.exe" type: default -'1111660': +"1111660": installDir: C15 - Horror launch: - config: oslist: windows executable: C15.exe type: default -'1111730': +"1111730": installDir: Red Ruin launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SpaceGame.exe type: default -'1111760': +"1111760": installDir: World of Guns VR launch: - config: oslist: windows executable: disasm_vr.exe type: vr -'1111830': +"1111830": installDir: SentencedVR launch: - config: oslist: windows executable: sentencedVR.exe type: vr -'1111840': {} -'1111870': +"1111840": {} +"1111870": installDir: Admiral Stepinski launch: - config: oslist: windows executable: Admiral_Stepinski.exe type: default -'1111880': +"1111880": installDir: Block Granny launch: - config: oslist: windows executable: Block Granny Horror.exe type: none -'1111930': {} -'1111940': +"1111930": {} +"1111940": installDir: Quiplash 2 InterLASHional launch: - config: @@ -39516,11 +39077,11 @@ executable: Quiplash 2 InterLASHional.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Launcher.sh type: default -'1111960': +"1111960": installDir: Tsuro - The Game of The Path launch: - executable: Tsuro.exe @@ -39534,56 +39095,56 @@ portuguese: Tsuro - O Jogo dos Caminhos - Edição VR schinese: Tsuro通路——造路游戏 VR spanish: Tsuro - El Juego del Camino - Edición VR -'1111970': +"1111970": installDir: Zeminator launch: - config: oslist: windows executable: Zeminator.exe type: default -'1111990': +"1111990": installDir: Einn launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: EINN.exe type: default -'1112010': +"1112010": installDir: Afloat launch: - config: oslist: windows executable: Afloat.exe type: vr -'1112050': +"1112050": installDir: Time For Quest launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows executable: Game.exe type: default - config: oslist: macos - executable: Game.app\\Contents\\MacOS\\nwjs + executable: "Game.app\\\\Contents\\\\MacOS\\\\nwjs" type: default - config: oslist: linux executable: nw type: default -'1112100': +"1112100": installDir: Tarzan VR launch: - - arguments: '-vrmode openvr' + - arguments: "-vrmode openvr" config: oslist: windows executable: TVR.exe type: vr - - arguments: '-vrmode oculus' + - arguments: "-vrmode oculus" executable: TVR.exe type: othervr -'1112120': +"1112120": installDir: Space Viking Raiders VR launch: - config: @@ -39591,59 +39152,59 @@ description: Play SVR VR (Gamepad Required) executable: SpaceVikingRaiders.exe type: vr -'1112130': {} -'1112150': +"1112130": {} +"1112150": installDir: Nekour launch: - config: oslist: windows executable: ProjectCat.exe type: default -'1112200': +"1112200": installDir: RotS launch: - config: oslist: windows executable: gameBuildSteamLaunch_1.7.exe type: default -'1112240': +"1112240": installDir: Wonder Boy Returns Remix launch: - config: oslist: windows executable: WonderBoy.exe type: none -'1112250': +"1112250": installDir: Umbraseal launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Umbraseal.exe type: default -'1112330': +"1112330": installDir: NorrAceShot launch: - config: oslist: windows executable: AceShot.exe type: default -'1112340': +"1112340": installDir: The Dreadful Whispers launch: - config: oslist: windows executable: The Dreadful Whispers.exe type: default -'1112360': +"1112360": installDir: Blind Spot VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Blind Spot.exe type: vr -'1112370': +"1112370": installDir: Now I Am There launch: - config: @@ -39652,18 +39213,18 @@ type: default - config: oslist: macos - executable: NowIAmThere.app\\Contents\\MacOS\\Now I Am There + executable: "NowIAmThere.app\\\\Contents\\\\MacOS\\\\Now I Am There" type: default -'1112380': +"1112380": installDir: Wer weiß denn sowas - Das 2. Spiel launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: WWDS2.exe type: default -'1112390': {} -'1112400': +"1112390": {} +"1112400": installDir: Project Torque launch: - config: @@ -39671,23 +39232,23 @@ oslist: windows executable: ProjectTorque.exe type: default -'1112410': {} -'1112430': +"1112410": {} +"1112430": installDir: ViviEon launch: - config: oslist: windows executable: ViviEon.exe type: none -'1112450': {} -'1112570': +"1112450": {} +"1112570": installDir: Crime Cities launch: - config: oslist: windows executable: CRIMECITIES.EXE type: default -'1112580': +"1112580": installDir: A pirate quartermaster launch: - config: @@ -39695,7 +39256,7 @@ executable: Quartier-Maître.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: APQ Linux.x86 type: default @@ -39704,86 +39265,86 @@ executable: mac_content.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: APQ Linux.x86_64 type: none -'1112620': +"1112620": installDir: Isles of Adalar launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: IslesOfAdalar.exe type: default -'1112640': {} -'1112650': {} -'1112670': +"1112640": {} +"1112650": {} +"1112670": installDir: YAWS - Yet Another Waveshooter launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: YAWS.exe type: vr -'1112680': +"1112680": installDir: Sliding Fantasy - Fantasy 1 launch: - config: oslist: windows executable: Sliding Fantasy - Fantasy 1.exe type: default -'1112690': +"1112690": installDir: Coffin Rot VR launch: - - executable: Coffin Rot VR\\Coffin Rot VR.exe + - executable: "Coffin Rot VR\\\\Coffin Rot VR.exe" type: vr -'1112700': +"1112700": installDir: Guroopia! launch: - config: oslist: windows executable: Guroopia!.exe type: none -'1112710': +"1112710": installDir: Neon tower blast launch: - config: oslist: windows executable: Neon tower blast.exe type: default -'1112760': +"1112760": installDir: Farrealm The Prince of Winds launch: - executable: Farrealm.exe type: none -'1112790': +"1112790": installDir: Automation Empire launch: - config: oslist: windows executable: AutomationEmpire.exe type: none -'1112830': +"1112830": installDir: The Watchers launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TheWatchers.exe type: default - config: oslist: macos - executable: Watchers.app\\Contents\\MacOS\\TheWatchers + executable: "Watchers.app\\\\Contents\\\\MacOS\\\\TheWatchers" type: default -'1112840': +"1112840": installDir: Unnamed VR launch: - config: oslist: windows executable: Unnamed VR.exe type: vr -'1112860': +"1112860": installDir: KingAndSlaves launch: - config: @@ -39792,16 +39353,16 @@ type: default - config: oslist: macos - executable: kings.app\\Contents\\MacOS\\kings + executable: "kings.app\\\\Contents\\\\MacOS\\\\kings" type: default -'1112870': +"1112870": installDir: Cardaria launch: - config: oslist: windows executable: cardaria.exe type: default -'1112890': +"1112890": installDir: Calico launch: - config: @@ -39814,7 +39375,7 @@ type: none nameLocalized: japanese: カリコ -'1112930': +"1112930": installDir: Dredgers launch: - config: @@ -39823,17 +39384,17 @@ type: none nameLocalized: schinese: Dredgers - 沉没的王国 -'1112940': +"1112940": installDir: Hero Legends launch: - config: oslist: windows - executable: Bin\\run.bat + executable: "Bin\\\\run.bat" type: none workingdir: Bin nameLocalized: english: Hero Legends -'1112950': +"1112950": installDir: Japocaliptyca launch: - config: @@ -39848,24 +39409,24 @@ oslist: macos executable: Japacaliptyca.app type: default -'1112960': +"1112960": installDir: Wildland launch: - config: oslist: windows executable: Wildland.exe type: default -'11130': +"11130": installDir: Sherlock Holmes The Mystery of The Mummy launch: - executable: Game.exe -'111300': +"111300": installDir: Smash Cars launch: - executable: SmashCars.exe - description: Configure Controller executable: SCGamepadConfigLauncher.exe -'1113000': +"1113000": installDir: Persona 4 Golden launch: - description: Launch @@ -39874,22 +39435,22 @@ nameLocalized: english: Persona 4 Golden japanese: ペルソナ4 ザ・ゴールデン -'1113010': {} -'1113030': +"1113010": {} +"1113030": installDir: Stellar Warfare launch: - config: oslist: windows executable: Stellar Warfare.exe type: default -'1113060': +"1113060": installDir: Magic Farm 3 The Ice Danger launch: - config: oslist: windows executable: Magic Farm 3.exe type: none -'1113110': +"1113110": installDir: The Stranger Interactive Game launch: - config: @@ -39902,14 +39463,14 @@ description: Launch executable: The Stranger.app type: default -'1113120': +"1113120": installDir: IXION launch: - executable: Ixion.exe type: none nameLocalized: schinese: 伊克西翁IXION -'1113210': +"1113210": installDir: Jomp The Jumper launch: - config: @@ -39920,21 +39481,21 @@ oslist: linux executable: Jomp The Jumper.x86_64 type: default -'1113220': +"1113220": installDir: ASCIIDENT launch: - config: oslist: windows executable: ASCIIDENT.exe type: default -'1113230': +"1113230": installDir: TerTD launch: - config: oslist: windows executable: TerTD.exe type: none -'1113240': +"1113240": installDir: Voxel MRT launch: - config: @@ -39945,70 +39506,70 @@ oslist: macos executable: Voxel M.R.T...app type: default -'1113300': - installDir: To Battle! Hell's Crusade +"1113300": + installDir: "To Battle! Hell's Crusade" launch: - config: oslist: windows executable: ToBattleHellsCrusade.exe type: default -'1113310': +"1113310": installDir: Post Soviet Zombies launch: - config: oslist: windows executable: Post soviet zombies.exe type: none -'1113320': {} -'1113340': +"1113320": {} +"1113340": installDir: Mr. Joshua Carrot launch: - config: oslist: windows executable: Mr Joshua Carrot.exe type: default -'1113380': +"1113380": installDir: DeepSeaTycoon DiversParadise launch: - config: oslist: windows executable: DeepSeaTycoon.exe type: default -'1113390': +"1113390": installDir: Handy launch: - config: oslist: windows executable: Handy.exe type: default -'1113400': +"1113400": nameLocalized: schinese: 神圣太阳联盟 Alliance of the Sacred Suns tchinese: 神聖太陽聯盟 Alliance of the Sacred Suns -'1113490': +"1113490": installDir: River Legends A Fly Fishing Adventure launch: - config: oslist: windows executable: riverlegends.exe type: default -'1113500': {} -'1113530': +"1113500": {} +"1113530": installDir: SAMOSBOR 2D launch: - config: oslist: windows executable: SAMOSBOR 2D.exe type: none -'1113560': +"1113560": installDir: NieR Replicant ver.1.22474487139 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: NieR Replicant ver.1.22474487139.exe type: default -'1113570': +"1113570": installDir: VoiceofCardsTheIsleDragonRoars launch: - config: @@ -40017,35 +39578,35 @@ type: none nameLocalized: japanese: Voice of Cards ドラゴンの島 -'1113580': +"1113580": installDir: シニサギ launch: - config: oslist: windows executable: game.exe type: default -'1113630': {} -'1113640': +"1113630": {} +"1113640": installDir: EFL launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Labyrinth.exe type: default - config: betakey: history - osarch: '64' + osarch: "64" oslist: windows executable: History.exe type: default - config: betakey: xsteam - osarch: '64' + osarch: "64" oslist: windows executable: XSteamDemo.exe type: default -'1113650': +"1113650": installDir: Jaxon The Thief launch: - config: @@ -40056,32 +39617,32 @@ oslist: linux executable: JaxonTheThief type: default -'1113670': +"1113670": installDir: windows_content launch: - config: oslist: windows - executable: Mini Tekton\\Mini Tekton.exe + executable: "Mini Tekton\\\\Mini Tekton.exe" type: default -'1113680': +"1113680": installDir: Hentai Girl Division launch: - config: oslist: windows executable: Hentai Girl Division.exe type: default -'1113690': +"1113690": installDir: senna_forest launch: - config: oslist: windows - executable: Senna and the Forest\\Senna And The Forest.exe + executable: "Senna and the Forest\\\\Senna And The Forest.exe" type: default - config: oslist: macos - executable: Senna And The Forest.app\\Contents\\MacOS\\Senna And The Forest + executable: "Senna And The Forest.app\\\\Contents\\\\MacOS\\\\Senna And The Forest" type: default -'1113730': +"1113730": installDir: Cubico launch: - config: @@ -40096,23 +39657,23 @@ oslist: linux executable: cubico.x86_64 type: default -'1113750': +"1113750": installDir: Lost Artifacts Frozen Queen launch: - config: oslist: windows executable: Lost Artifacts Frozen Queen.exe type: none -'1113770': +"1113770": installDir: Lunch A Palooza launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: Lunch A Palooza - Steam Beta (x32).exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: Lunch A Palooza - Steam Beta (x64).exe type: default @@ -40120,7 +39681,7 @@ oslist: macos executable: Lunch A Palooza (Steam Beta).app type: default -'1113780': +"1113780": installDir: Uncharted Tides launch: - config: @@ -40129,13 +39690,13 @@ executable: UnchartedTides.exe type: none - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: UnchartedTides_i386 type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: UnchartedTides_amd64 @@ -40145,33 +39706,33 @@ description: Launch executable: UnchartedTides.app/Contents/MacOS/UnchartedTides type: none -'1113840': {} -'1113850': +"1113840": {} +"1113850": installDir: Sanguine Soul launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Sanguine Soul 64-bit executable: SanguineSoul.exe type: default -'1113870': {} -'1113880': +"1113870": {} +"1113880": installDir: Best in the West launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Best in the West.exe type: default -'1113930': - installDir: Don't Die +"1113930": + installDir: "Don't Die" launch: - config: oslist: windows executable: dontdie_steam.exe type: vr -'1113940': +"1113940": installDir: ElectronicSuperJoy2 launch: - config: @@ -40183,65 +39744,65 @@ executable: ESJ2.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: ESJ2.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: ESJ2.x86_64 type: default -'1113960': +"1113960": installDir: Pictures of Life launch: - config: oslist: windows executable: Pictures of Life.exe type: default -'1113970': +"1113970": installDir: Little Brother Jim launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Jim.exe type: default -'11140': +"11140": installDir: Sherlock Holmes The Awakened - Remastered launch: - executable: game.exe -'111400': +"111400": installDir: Bunch of Heroes launch: - executable: Game.exe - description: Setup keys executable: keyconfig.exe -'1114000': +"1114000": installDir: King of Dragon Balls launch: - executable: King of Dragon Balls.exe type: none -'1114020': +"1114020": installDir: ZomB Battlegrounds launch: - config: oslist: windows executable: ZomB Battlegrounds.exe type: default -'1114030': +"1114030": installDir: The Room Syndrome launch: - executable: The Room Syndrome.exe type: none -'1114050': +"1114050": installDir: xueyinglingzhu launch: - config: oslist: windows executable: xycq.exe type: none -'1114070': +"1114070": installDir: My Child Lebensborn launch: - config: @@ -40251,40 +39812,40 @@ - executable: 我的孩子:生命之泉.exe type: none nameLocalized: - schinese: '我的孩子: 生命之泉' - tchinese: '我的孩子: 生命之泉' -'1114090': + schinese: "我的孩子: 生命之泉" + tchinese: "我的孩子: 生命之泉" +"1114090": installDir: Life Tastes Like Cardboard launch: - config: oslist: windows executable: Life Tastes Like Cardboard v1_0.exe type: default -'1114110': +"1114110": installDir: Nightmare Game launch: - config: oslist: windows executable: Nightmare Game.exe type: default -'1114140': +"1114140": installDir: FortuneTelling launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: FortuneTelling.exe type: default -'1114150': {} -'1114170': +"1114150": {} +"1114170": installDir: Screen VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ScreenVRBase.exe type: vr -'1114210': +"1114210": installDir: Colloc launch: - config: @@ -40293,16 +39854,16 @@ type: default - config: oslist: macos - executable: Colloc_macOS.app\\Contents\\MacOS\\Colloc_macOS + executable: "Colloc_macOS.app\\\\Contents\\\\MacOS\\\\Colloc_macOS" type: default -'1114220': +"1114220": installDir: Gedonia launch: - config: oslist: windows executable: Gedonia.exe type: default -'1114230': +"1114230": installDir: GearPuzzle launch: - config: @@ -40313,46 +39874,42 @@ oslist: macos executable: Gear.app type: none -'1114260': +"1114260": installDir: Under What launch: - config: oslist: windows executable: Under what.exe type: default -'1114270': +"1114270": installDir: 1912 Titanic Mystery launch: - config: oslist: windows executable: Titanic.exe type: default -'1114280': {} -'1114290': +"1114280": {} +"1114290": installDir: Windjammers 2 launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: DirectX 12 Version - description_loc: - english: DirectX 12 Version executable: Windjammers2.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows description: OpenGL Version - description_loc: - english: OpenGL Version executable: Windjammers2_opengl.exe -'1114340': +"1114340": installDir: Mortadelo y Filemón Operación Moscú launch: - executable: MyF.exe type: default -'1114390': {} -'1114430': +"1114390": {} +"1114430": installDir: Ballex launch: - config: @@ -40363,12 +39920,12 @@ - config: oslist: windows description: Ballex(Simplified Chinese简体中文) - executable: CN\\Ballex.exe + executable: "CN\\\\Ballex.exe" type: option1 - config: oslist: windows description: Ballex MapEditor - executable: MapEditor\\Ballex MapEditor.exe + executable: "MapEditor\\\\Ballex MapEditor.exe" type: editor - config: oslist: macos @@ -40388,42 +39945,40 @@ - config: oslist: windows description: MapEditor Alpha(Not Stable) - description_loc: - english: MapEditor Alpha(Not Stable) - executable: MapEditorAlpha\\Ballex MapEditor.exe + executable: "MapEditorAlpha\\\\Ballex MapEditor.exe" type: option1 -'1114460': - installDir: Paranormal Detective Escape from the 80's +"1114460": + installDir: "Paranormal Detective Escape from the 80's" launch: - config: oslist: windows executable: Escape80s.exe type: vr -'1114480': {} -'1114530': +"1114480": {} +"1114530": installDir: TTV3 launch: - config: oslist: windows executable: TTV3.exe type: default -'1114540': +"1114540": installDir: RANCID launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: player.exe type: none -'1114610': +"1114610": installDir: Hover Tank Arena launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: HoverTankArena.exe type: default -'1114620': +"1114620": installDir: Cloak and Dasher launch: - config: @@ -40432,63 +39987,63 @@ type: default - config: oslist: macos - executable: Cloak and Dasher.app\\Contents\\MacOS\\Cloak and Dasher + executable: "Cloak and Dasher.app\\\\Contents\\\\MacOS\\\\Cloak and Dasher" type: default - config: oslist: linux executable: Cloak and Dasher.x86_64 type: default -'1114630': +"1114630": installDir: DrTacocat launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: DrTacocat.exe type: default -'1114640': {} -'1114650': +"1114640": {} +"1114650": installDir: HorrorVale launch: - config: oslist: windows executable: Game.exe type: default -'1114660': +"1114660": installDir: 4K Bricks Breaker Plus launch: - config: oslist: windows executable: 4kbbp.exe type: none -'1114690': {} -'1114700': +"1114690": {} +"1114700": installDir: FFF launch: - - arguments: 'Do not pirate ' + - arguments: "Do not pirate " config: - betakey: 'No' - osarch: '64' + betakey: "No" + osarch: "64" oslist: windows - ownsdlc: 'No' + ownsdlc: "No" description: This is a First Person shooter game executable: FFF.exe type: default -'1114710': +"1114710": installDir: KANNA launch: - executable: Kanna.exe type: default -'1114740': +"1114740": installDir: Red Island launch: - executable: Red Island.exe type: default -'1114830': +"1114830": installDir: Armor Clash 3 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ArmorClash3.exe type: default @@ -40497,16 +40052,16 @@ executable: ArmorClash3.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: ArmorClash3.x86_64 type: none -'1114860': +"1114860": installDir: HOBS launch: - executable: hobs.exe type: none -'1114870': +"1114870": installDir: LennasInception launch: - config: @@ -40515,22 +40070,20 @@ type: default - config: oslist: linux - executable: ./lennasinception + executable: "./lennasinception" type: default - config: oslist: macos executable: LennasInception.app type: default - - arguments: '-DuseGLFW=false -DuseOpenGL=false' + - arguments: "-DuseGLFW=false -DuseOpenGL=false" config: oslist: linux - description: Lenna's Inception with Crash Workaround - description_loc: - english: Lenna's Inception with Crash Workaround - executable: ./lennasinception + description: "Lenna's Inception with Crash Workaround" + executable: "./lennasinception" type: option1 -'1114880': {} -'1114900': +"1114880": {} +"1114900": installDir: Ayo the Clown launch: - config: @@ -40539,82 +40092,82 @@ type: default - config: oslist: macos - executable: Contents\\MacOS\\Ayo The Clown + executable: "Contents\\\\MacOS\\\\Ayo The Clown" type: default - config: oslist: linux executable: Ayo The Clown Linux.x86_64 type: default -'1114910': +"1114910": installDir: Alone in the War launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: AloneInTheWar.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: AloneInTheWar.x86_64 -'1114940': +"1114940": installDir: I Wanna Maker launch: - config: oslist: windows executable: I Wanna Maker.exe type: default -'1114990': +"1114990": installDir: It Pays To Be A Winner launch: - config: oslist: windows executable: IPTBAW.exe type: default -'11150': +"11150": installDir: Sherlock Holmes The Secret of the Silver Earring launch: - executable: game.exe -'1115020': +"1115020": installDir: BossStrategy launch: - config: oslist: windows - executable: BossStrategy\\BossStrategy.exe + executable: "BossStrategy\\\\BossStrategy.exe" type: default -'1115030': +"1115030": installDir: Running Black launch: - executable: RunningBlack.exe type: none -'1115040': +"1115040": installDir: SincereMen launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SincereMen.exe type: vr -'1115050': +"1115050": installDir: Will You Snail launch: - config: oslist: windows executable: Will You Snail.exe type: default -'1115060': +"1115060": installDir: Trace of the past launch: - config: oslist: windows executable: Trace_of_the_past.exe type: default -'1115110': +"1115110": installDir: Airborne launch: - executable: Airborne_v0.1/Airborne.exe type: none -'1115380': +"1115380": installDir: BallBoi launch: - config: @@ -40622,50 +40175,50 @@ description: Launch executable: BALLBOI.exe type: default -'1115430': {} -'1115450': +"1115430": {} +"1115450": installDir: Bastide launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: BastidePackaging22\\Binaries\\Win64\\BastidePackaging22-Win64-Shipping.exe + executable: "BastidePackaging22\\\\Binaries\\\\Win64\\\\BastidePackaging22-Win64-Shipping.exe" type: default -'1115470': +"1115470": installDir: Metronium launch: - config: oslist: windows executable: Metronium.exe type: default -'1115540': {} -'1115570': +"1115540": {} +"1115570": installDir: Forest Mage launch: - config: oslist: windows executable: game.exe type: default -'1115580': +"1115580": installDir: Grand Brix Shooter launch: - config: oslist: windows executable: Grand Brix Shooter.exe type: default -'1115620': +"1115620": installDir: Super Pig launch: - executable: Super Pig.exe type: none -'1115630': +"1115630": installDir: Magnetic Daydream launch: - config: oslist: windows executable: Magnetic Daydream.exe type: default -'1115640': +"1115640": installDir: HeroII launch: - config: @@ -40676,32 +40229,32 @@ oslist: macos executable: HeroII.app type: default -'1115670': +"1115670": installDir: C64 & AMIGA Classix Remakes Sixpack 3 launch: - config: oslist: windows executable: GameCollectionLauncher_Release Steam_x86.exe type: default -'1115690': - installDir: 'Yes, Your Grace' +"1115690": + installDir: "Yes, Your Grace" launch: - config: oslist: windows - executable: 'Yes, Your Grace.exe' + executable: "Yes, Your Grace.exe" type: none - config: oslist: macos - executable: 'Yes, Your Grace.app\\Contents\\MacOS\\Yes, Your Grace' + executable: "Yes, Your Grace.app\\\\Contents\\\\MacOS\\\\Yes, Your Grace" type: none -'1115760': +"1115760": installDir: Singaria launch: - config: oslist: windows executable: Singaria.exe type: default -'1115780': +"1115780": installDir: The Almost Gone launch: - config: @@ -40714,14 +40267,14 @@ type: default nameLocalized: sc_schinese: 忆落谜境 -'1115820': +"1115820": installDir: MIND SWITCH launch: - config: oslist: windows executable: MIND SWITCH.exe type: default -'1115830': +"1115830": installDir: Fun Fantasy Girls Jigsaw launch: - config: @@ -40736,68 +40289,68 @@ oslist: linux executable: FunFantasyGirlsPuzzle.x86 type: default -'1115840': +"1115840": installDir: Dungeons Again launch: - config: oslist: windows executable: nw.exe type: default -'1115860': +"1115860": installDir: BOMTILES launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: BOMTILES.exe type: default - config: oslist: macos - executable: bomtiles-build-osx.app\\Contents\\MacOS\\bomtiles-build-osx + executable: "bomtiles-build-osx.app\\\\Contents\\\\MacOS\\\\bomtiles-build-osx" type: default -'1115960': +"1115960": installDir: Struggle launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Struggle.exe type: vr -'1115970': +"1115970": installDir: Victim Cache the RPG launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows executable: Game.exe type: default - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: linux executable: Game type: none - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: macos executable: Game.app type: none -'1115980': +"1115980": installDir: Something for Someone Else launch: - config: oslist: windows executable: Something for Someone Else.exe type: none -'111600': +"111600": installDir: SeriousSamDoubleD launch: - executable: SSLauncher.exe -'1116010': +"1116010": installDir: Blockoid launch: - executable: Blockoid.exe type: none -'1116020': +"1116020": installDir: Witch College launch: - config: @@ -40808,23 +40361,23 @@ oslist: macos executable: Witch College.app type: none -'1116030': +"1116030": installDir: Oceanum Mortis launch: - config: oslist: windows executable: Game.exe type: default -'1116050': {} -'1116080': {} -'1116090': +"1116050": {} +"1116080": {} +"1116090": installDir: Psychose launch: - config: oslist: windows executable: Psychose.exe type: none -'1116110': +"1116110": installDir: Raifu Wars launch: - config: @@ -40839,44 +40392,44 @@ oslist: macos executable: RaifuWars.app type: default -'1116170': {} -'1116180': +"1116170": {} +"1116180": installDir: Amora Crystal launch: - config: oslist: windows executable: Amora Crystal.exe type: none -'1116190': +"1116190": installDir: Flutter Bombs launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: FlutterBombs.exe type: default -'1116200': +"1116200": installDir: Greetings From Krampus! launch: - - arguments: '-popupwindow' + - arguments: "-popupwindow" config: - osarch: '64' + osarch: "64" oslist: windows executable: WindowsNoEditor/GreetingsFromKrampus.exe type: vr -'1116210': +"1116210": installDir: Our_world_has_not_decayed launch: - executable: Our_world_has_not_decayed.exe type: none -'1116230': +"1116230": installDir: TSOHB_steamworks_sdk_146 launch: - config: oslist: windows executable: TSOHB.exe type: none -'1116240': +"1116240": installDir: Android Amazones launch: - config: @@ -40885,62 +40438,30 @@ type: default - config: oslist: windows - ownsdlc: '1190770' + ownsdlc: "1190770" description: Season 2 (DLC1) - description_loc: - brazilian: 2ª Temporada(DLC1) - dutch: Seizoen 2(DLC1) - english: Season 2 (DLC1) - french: Saison 2(DLC1) - german: Staffel 2(DLC1) - hungarian: 2. évad(DLC1) - italian: Stagione 2(DLC1) - japanese: シーズン2(DLC1) - koreana: 시즌 2(DLC1) - latam: Temporada 2(DLC1) - polish: sezon 2(DLC1) - portuguese: 2ª Temporada(DLC1) - schinese: 第2季(DLC1) - spanish: Temporada 2(DLC1) - tchinese: 第2季(DLC1) executable: AmaDLC/Android Amazones - Season 2.exe type: option1 - config: oslist: windows - ownsdlc: '1207560' + ownsdlc: "1207560" description: Season 3 (DLC2) - description_loc: - brazilian: Temporada 3(DLC2) - dutch: Seizoen 3(DLC2) - english: Season 3 (DLC2) - french: Saison 3(DLC2) - german: Staffel 3(DLC2) - hungarian: 3. évad(DLC2) - italian: Stagione 3(DLC2) - japanese: シーズン3(DLC2) - koreana: 시즌 3(DLC2) - latam: Temporada 3(DLC2) - polish: Sezon 3(DLC2) - portuguese: Temporada 3(DLC2) - schinese: 第3季(DLC2) - spanish: Temporada 3(DLC2) - tchinese: 第3季(DLC2) - executable: AmaDLC2\\Android Amazones -Season 3-.exe + executable: "AmaDLC2\\\\Android Amazones -Season 3-.exe" type: option2 -'1116260': +"1116260": installDir: SAMUDRA launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Samudra.exe type: default -'1116290': +"1116290": installDir: Alien Escape launch: - executable: AlienEscape.exe type: default -'1116350': +"1116350": installDir: Exsys launch: - config: @@ -40950,7 +40471,7 @@ nameLocalized: japanese: エクセㇲ thai: เอ็กซีส -'1116360': +"1116360": installDir: JERRY JOBHOPPER launch: - config: @@ -40965,16 +40486,16 @@ oslist: linux executable: JerryJobhopper.x86_64 type: none -'1116370': {} -'1116430': +"1116370": {} +"1116430": installDir: Mostly Intense Monster Defense launch: - config: oslist: windows executable: Mostly Intense Monster Defense.exe type: default -'1116480': {} -'1116490': +"1116480": {} +"1116490": installDir: Lie In My Heart launch: - config: @@ -40985,30 +40506,30 @@ oslist: macos executable: Lieinmyheart.app type: default -'1116500': +"1116500": installDir: HVAC Simulator launch: - config: oslist: windows executable: HVAC Simulator.exe type: vr -'1116520': +"1116520": installDir: The Backrooms launch: - config: oslist: windows executable: The Backrooms.exe type: none -'1116530': +"1116530": installDir: Dithered launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Dithered type: default -'1116540': {} -'1116550': +"1116540": {} +"1116550": installDir: Elon Simulator 2019 launch: - config: @@ -41017,45 +40538,45 @@ type: default - config: oslist: macos - executable: Elon Simulator 2019.app\\Contents\\MacOS\\Elon Simulator 2019 + executable: "Elon Simulator 2019.app\\\\Contents\\\\MacOS\\\\Elon Simulator 2019" type: default - config: oslist: linux executable: Elon Simulator 2019.x86 type: default -'1116560': {} -'1116570': {} -'1116580': +"1116560": {} +"1116570": {} +"1116580": installDir: Shady Part of Me launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: spom.exe type: default - config: - betakey: 'build-rc,qa-latest,gmc1,age_ratings' + betakey: "build-rc,qa-latest,gmc1,age_ratings" description: Debug mode enabled executable: spom-debug.exe type: none nameLocalized: schinese: 我的阴暗面 -'1116600': +"1116600": installDir: ArtOfAirWar launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ArtOfAirWar.exe type: default -'1116650': +"1116650": installDir: CAPCOM GO! Apollo VR Planetarium launch: - config: oslist: windows executable: VRPlanetarium.exe type: vr -'1116660': +"1116660": installDir: Neon_Tide launch: - config: @@ -41064,9 +40585,9 @@ type: default - config: oslist: macos - executable: Game.app\\Contents\\MacOS\\nwjs + executable: "Game.app\\\\Contents\\\\MacOS\\\\nwjs" type: default -'1116670': +"1116670": installDir: Simple Railroad launch: - config: @@ -41074,29 +40595,29 @@ executable: SimpleRailroad.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: SimpleRailroad.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: SimpleRailroad.x86 type: default - config: oslist: macos - executable: SimpleRailroad.app\\Contents\\MacOS\\SimpleRailroad + executable: "SimpleRailroad.app\\\\Contents\\\\MacOS\\\\SimpleRailroad" type: default -'1116700': - installDir: Vermillion Watch Parisian Pursuit Collector's Edition +"1116700": + installDir: "Vermillion Watch Parisian Pursuit Collector's Edition" launch: - config: oslist: windows executable: Vermillion_Watch_Parisian_Pursuit_CE.exe type: default -'1116710': {} -'1116750': {} -'1116770': +"1116710": {} +"1116750": {} +"1116770": installDir: Shovel Knight Showdown launch: - config: @@ -41105,25 +40626,25 @@ executable: ShovelKnightShowdown.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: 32/ShovelKnightShowdown type: default - workingdir: '32' + workingdir: "32" - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: 64/ShovelKnightShowdown type: default - workingdir: '64' + workingdir: "64" - config: oslist: macos description: Launch executable: ShovelKnightShowdown.app type: default -'1116780': +"1116780": installDir: Shovel Knight - King of Cards launch: - config: @@ -41132,33 +40653,33 @@ executable: KingOfCards.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: 32/KingOfCards type: default - workingdir: '32' + workingdir: "32" - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: 64/KingOfCards type: default - workingdir: '64' + workingdir: "64" - config: oslist: macos description: Launch executable: KingOfCards.app type: default -'1116800': +"1116800": installDir: PLAY DOG PLAY TAG launch: - config: oslist: windows executable: PlayDogPlayTag.exe type: default -'1116810': {} -'1116860': +"1116810": {} +"1116860": installDir: The Gun Knight launch: - config: @@ -41169,7 +40690,7 @@ oslist: macos executable: The Gun Knight.app type: none -'1116870': +"1116870": installDir: Duel Girl launch: - arguments: b @@ -41177,7 +40698,7 @@ oslist: windows executable: Duel Girl.exe type: default -'1116880': +"1116880": installDir: The Heroic Legend Of Eagarlnia launch: - config: @@ -41189,91 +40710,91 @@ polish: The Heroic Legend of Eagarlnia schinese: 伊格利亚战记 tchinese: 伊格利亞戰記 -'1116890': +"1116890": installDir: Unsolved Mystery Club Amelia Earhart launch: - config: oslist: windows executable: Unsolved Mystery Club - Amelia Earhart.exe type: default -'1116910': - installDir: I'm the dirt - for art +"1116910": + installDir: "I'm the dirt - for art" launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: I am the dirt-for art.exe type: default -'1116960': +"1116960": installDir: UNDEFEATED launch: - executable: UNDEFEATED.exe type: none -'1116990': +"1116990": installDir: Legend of Cenama launch: - config: oslist: windows executable: Legend of Cenama.exe type: none -'1117000': +"1117000": installDir: CyberRunner launch: - config: betakey: default - osarch: '64' + osarch: "64" oslist: windows - executable: CyberRunner\\Cyberrunner.exe + executable: "CyberRunner\\\\Cyberrunner.exe" type: vr -'1117020': {} -'1117040': +"1117020": {} +"1117040": installDir: Budo Girl War Maid launch: - config: oslist: windows executable: wdnp.exe type: default -'1117110': {} -'1117120': +"1117110": {} +"1117120": installDir: The Cross launch: - config: oslist: windows executable: thecross.exe type: default -'1117150': +"1117150": installDir: Garbage launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Garbage.exe type: vr -'1117160': +"1117160": installDir: Minds of Nations launch: - config: oslist: windows executable: Minds of Nations.exe type: none -'1117200': - installDir: Redemption's Guild +"1117200": + installDir: "Redemption's Guild" launch: - - arguments: '-screen-quality Good' + - arguments: "-screen-quality Good" config: oslist: windows - executable: Redemption's Guild.exe + executable: "Redemption's Guild.exe" type: vr -'1117210': {} -'1117220': +"1117210": {} +"1117220": installDir: WizardCraftColonies launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: WizardCraft Colonies.exe type: default -'1117310': +"1117310": installDir: Sandwich Sudoku launch: - config: @@ -41284,7 +40805,7 @@ oslist: macos executable: sandwich_sudoku.app type: default -'1117330': +"1117330": installDir: Bouncy Bob Episode 2 launch: - config: @@ -41293,12 +40814,12 @@ type: default nameLocalized: schinese: 跃动鲍勃:第二部 -'1117340': +"1117340": installDir: Gods of Havoc Into the Void launch: - executable: Game.exe type: none -'1117350': +"1117350": installDir: Galahad launch: - config: @@ -41306,7 +40827,7 @@ oslist: windows executable: GalahadLanceClient.exe type: default -'1117360': +"1117360": installDir: Word Forward launch: - config: @@ -41317,40 +40838,40 @@ oslist: macos executable: Word Forward.app type: none -'1117380': +"1117380": installDir: Project Cappuccino launch: - config: oslist: windows description: Project Cappuccino x32 - executable: x32\\ProjectCappuccinoPCV1_25_2_x32.exe + executable: "x32\\\\ProjectCappuccinoPCV1_25_2_x32.exe" type: option1 - config: - osarch: '64' + osarch: "64" oslist: windows description: Project Cappuccino x64 - executable: x64\\ProjectCappuccinoPCV1_25_2_x64.exe + executable: "x64\\\\ProjectCappuccinoPCV1_25_2_x64.exe" type: option2 - config: oslist: macos executable: ProjectCappuccinoOSXV1_25_1.app type: default -'1117390': +"1117390": installDir: Snowdrop Escape launch: - - arguments: '-steam -nohmd -game \"snowdrop_escape\"' + - arguments: "-steam -nohmd -game \\\"snowdrop_escape\\\"" config: oslist: windows executable: hl2.exe type: default -'1117420': +"1117420": installDir: BME1 launch: - config: oslist: windows executable: BME1.exe type: none -'1117470': +"1117470": installDir: Seven Wonders of St. Clementine launch: - config: @@ -41365,39 +40886,39 @@ oslist: linux executable: 7Wonders.sh type: default -'1117480': +"1117480": installDir: Dead Hand launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Windows x64 exe executable: DeadHand_x64.exe type: none -'1117490': +"1117490": installDir: Theater Command The Coming Wars launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TheaterCommander.exe type: default -'1117560': +"1117560": installDir: Nangoku Sodachi launch: - config: oslist: windows executable: Nangoku_Sodachi.exe type: default -'1117590': +"1117590": installDir: Learn Spanish! Easy Vocabulary launch: - config: oslist: windows executable: Vocabulary.exe type: default -'1117620': {} -'1117630': +"1117620": {} +"1117630": installDir: I got a cat maid launch: - config: @@ -41407,15 +40928,15 @@ nameLocalized: japanese: ねこメイドひろいました! tchinese: 撿到貓女僕! -'1117650': {} -'1117660': +"1117650": {} +"1117660": installDir: Mines of Volantis launch: - config: oslist: windows executable: Mines of Volantis.exe type: default -'1117670': +"1117670": installDir: GONNER 2 launch: - config: @@ -41430,7 +40951,7 @@ oslist: linux executable: GONNER2 type: none -'1117680': +"1117680": installDir: HENTAI GIRL PUZZLE SCI-FI launch: - config: @@ -41439,51 +40960,51 @@ type: default - config: oslist: macos - executable: Hentai Girl Puzzle SCI-FI.app\\Contents\\MacOS\\Hentai Girl Puzzle SCI-FI + executable: "Hentai Girl Puzzle SCI-FI.app\\\\Contents\\\\MacOS\\\\Hentai Girl Puzzle SCI-FI" type: default -'1117710': +"1117710": installDir: Contraptions launch: - config: oslist: windows executable: contraptions.exe type: default -'1117730': {} -'1117760': +"1117730": {} +"1117760": installDir: Deadly Step launch: - config: oslist: windows executable: Deadly Step.exe type: default -'1117770': {} -'1117800': {} -'1117810': +"1117770": {} +"1117800": {} +"1117810": installDir: Git Gud or Git Rekt launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: main.exe type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: main type: none -'1117840': +"1117840": installDir: Azurebreak Heroes launch: - config: oslist: windows executable: AZBH.exe type: default -'1117880': +"1117880": installDir: Biolab Wars launch: - - arguments: '-force-d3d11' + - arguments: "-force-d3d11" config: - osarch: '64' + osarch: "64" oslist: windows description: Biolab Wars (Direct3D) executable: Biolab Wars.exe @@ -41496,28 +41017,28 @@ oslist: linux executable: Biolab Wars.x86_64 type: default - - arguments: '-force-glcore' + - arguments: "-force-glcore" config: - osarch: '64' + osarch: "64" oslist: windows description: Biolab Wars (OpenGL) executable: Biolab Wars.exe type: option2 - - arguments: '-force-vulkan' + - arguments: "-force-vulkan" config: - osarch: '64' + osarch: "64" oslist: windows description: Biolab Wars (Vulkan) executable: Biolab Wars.exe type: option3 -'1117970': +"1117970": installDir: Monochrome Order launch: - executable: MonochromeOrder.exe type: none nameLocalized: japanese: モノクロームオーダー ―アイゼデシルの裁定者― -'1117980': +"1117980": installDir: Asdivine Kamura launch: - config: @@ -41526,7 +41047,7 @@ type: none nameLocalized: japanese: アスディバインカムラ -'1117990': +"1117990": installDir: Wizards of Brandel launch: - config: @@ -41535,14 +41056,14 @@ type: none nameLocalized: japanese: ブランドルの魔法使い -'11180': +"11180": installDir: Sherlock Holmes Mystery of the Persian Carpet launch: - executable: casual.exe -'111800': +"111800": installDir: Blocks That Matter launch: - - arguments: '-d32' + - arguments: "-d32" config: oslist: windows executable: BTM_launcher_win.exe @@ -41553,7 +41074,7 @@ oslist: linux description: Launch executable: BTM_launcher_linux.sh -'1118000': +"1118000": installDir: RevenantMarch launch: - config: @@ -41564,41 +41085,41 @@ oslist: windows executable: RevenantMarch.exe type: default -'1118030': {} -'1118050': +"1118030": {} +"1118050": installDir: Terminal squad Sentinel launch: - executable: game_3vryad.exe type: none -'1118100': - installDir: Qu'e Little General +"1118100": + installDir: "Qu'e Little General" launch: - config: oslist: windows executable: t1.exe type: default -'1118110': +"1118110": installDir: Coal Mining Simulator launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Coal Mining Simulator.exe type: default -'1118200': +"1118200": installDir: People Playground launch: - config: oslist: windows executable: People Playground.exe type: default -'1118220': {} -'1118240': +"1118220": {} +"1118240": installDir: Lake launch: - executable: Lake.exe type: none -'1118310': +"1118310": installDir: RetroArch launch: - config: @@ -41609,80 +41130,80 @@ oslist: linux executable: retroarch.sh type: default -'1118320': +"1118320": installDir: Nation Breakers Steam Arena launch: - config: oslist: windows executable: NB_SA.exe type: default -'1118350': +"1118350": installDir: Meegah Mem 2 launch: - config: oslist: windows executable: Meegah Mem II.exe type: none -'1118390': +"1118390": installDir: DragonGuide launch: - config: oslist: windows executable: DragonGuide.exe type: vr -'1118410': +"1118410": installDir: GLADIUM launch: - config: oslist: windows executable: Gladium.exe type: default -'1118440': {} -'1118470': - installDir: Wood 'n Stones +"1118440": {} +"1118470": + installDir: "Wood 'n Stones" launch: - - arguments: '--steam' + - arguments: "--steam" config: oslist: windows - executable: Wood 'n Stones.exe + executable: "Wood 'n Stones.exe" type: default - - arguments: '--steam' + - arguments: "--steam" config: - osarch: '64' + osarch: "64" oslist: linux executable: WnS.x86_64 type: default -'1118500': +"1118500": installDir: Thugsters Battle Royale launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: WindowsNoEditor/ThugstersBR.exe type: default -'1118520': {} -'1118530': {} -'1118550': - installDir: Fury's Sky +"1118520": {} +"1118530": {} +"1118550": + installDir: "Fury's Sky" launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: gzdoom.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: gzdoom.exe type: default -'1118570': +"1118570": installDir: Erstwhile Tower launch: - config: oslist: windows executable: Erstwhile Tower.exe type: none -'1118580': +"1118580": installDir: Wintercearig launch: - config: @@ -41697,8 +41218,8 @@ oslist: macos executable: wintercearig.app type: default -'1118600': - installDir: Let's make sport +"1118600": + installDir: "Let's make sport" launch: - config: oslist: windows @@ -41714,44 +41235,44 @@ type: default nameLocalized: russian: Давай займемся... физкультурой -'1118630': {} -'1118640': +"1118630": {} +"1118640": installDir: Meta - Assembled launch: - config: oslist: windows executable: meta-assembled.exe type: default -'1118670': +"1118670": installDir: Space raven quest - Tiny planet launch: - config: oslist: windows executable: Tiny Planet.exe type: none -'1118680': {} -'1118690': +"1118680": {} +"1118690": installDir: Radical Gear launch: - config: oslist: windows executable: RadicalGear.exe type: none -'1118700': +"1118700": installDir: Super Demon Boy launch: - config: oslist: windows executable: Super Demon Boy.exe type: default -'1118730': +"1118730": installDir: Super Lee World launch: - config: oslist: windows executable: Super Lee World.exe type: default -'1118740': +"1118740": installDir: Cruel Bands Career launch: - config: @@ -41766,19 +41287,19 @@ english: Cruel Bands Career schinese: 残酷乐队生涯 tchinese: 殘酷樂隊生涯 -'1118790': +"1118790": installDir: VQD launch: - executable: VQD.exe type: none -'1118800': +"1118800": installDir: Chasing Nebula launch: - config: oslist: windows executable: ChasingNebula.exe type: default -'1118820': +"1118820": installDir: Seraphic Destroyer launch: - config: @@ -41787,9 +41308,9 @@ type: default - config: oslist: windows - ownsdlc: '1230950' + ownsdlc: "1230950" description: Puzzles (DLC) - executable: DLC\\Seraphic Destroyer - Puzzles.exe + executable: "DLC\\\\Seraphic Destroyer - Puzzles.exe" type: option1 nameLocalized: brazilian: Destruidor Seráfico @@ -41801,29 +41322,29 @@ schinese: 天使般的毁灭者 spanish: Destructor Seráfico tchinese: 天使般的毀滅者 -'1118840': +"1118840": installDir: MNIY launch: - - arguments: '-disable-devtools -in-process-gpu' + - arguments: "-disable-devtools -in-process-gpu" config: oslist: windows executable: nw.exe type: default -'1118870': +"1118870": installDir: Sort Battle Dungeon launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SortBattle-x64-release.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows description: SortBattle Windows 8 compatibility mode executable: SortBattleLaunch.bat type: option1 -'1118880': +"1118880": installDir: Rituals in the Dark launch: - config: @@ -41841,42 +41362,42 @@ description: Launch executable: Rituals_in_the_Dark.app type: default -'1118910': +"1118910": installDir: Sunflower launch: - executable: nw.exe type: default -'1118920': +"1118920": installDir: TrenchesWIP launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch TrenchesWIP normally. executable: FPSKit.exe type: default - - arguments: '-log' + - arguments: "-log" config: - osarch: '64' + osarch: "64" oslist: windows description: New Dedicated Server. - executable: FPSKit\\Binaries\\Win64\\FPSKitServer-Win64-Shipping.exe + executable: "FPSKit\\\\Binaries\\\\Win64\\\\FPSKitServer-Win64-Shipping.exe" type: server -'1118930': +"1118930": installDir: FRENZY PLANTS launch: - config: oslist: windows executable: FRENZY PLANTS.exe type: default -'1118940': +"1118940": installDir: Robot terminator launch: - config: oslist: windows executable: game.exe type: default -'1118950': +"1118950": installDir: Engineer Arena launch: - config: @@ -41888,7 +41409,7 @@ oslist: macos executable: Engineer Arena.app type: default -'1118970': +"1118970": installDir: Moira Fated Twins launch: - config: @@ -41899,11 +41420,11 @@ oslist: macos executable: Game.app type: default -'11190': +"11190": installDir: Sherlock Holmes versus Jack the Ripper launch: - executable: game.exe -'111900': +"111900": installDir: Guardians of Middle-earth launch: - config: @@ -41911,7 +41432,7 @@ description: Launch Normally executable: x86/GOME.exe workingdir: x86/ -'1119010': +"1119010": installDir: Flippin Kaktus launch: - config: @@ -41927,52 +41448,52 @@ koreana: 플리핀 칵투스 (Flippin Kaktus) schinese: 暴走仙掌人 (Flippin Kaktus) tchinese: 暴走仙掌人 (Flippin Kaktus) -'1119020': {} -'1119030': +"1119020": {} +"1119030": installDir: Saboteur II Avenging Angel launch: - executable: Saboteur II Avenging Angel.exe type: none -'1119040': {} -'1119060': - installDir: The Designer's Curse +"1119040": {} +"1119060": + installDir: "The Designer's Curse" launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Regular Monitors - executable: The Designer's Curse Chapter One.exe + executable: "The Designer's Curse Chapter One.exe" type: none - config: oslist: macos description: Mac Version executable: The Designers Curse Chapter One.app type: none -'1119070': +"1119070": installDir: Shibui Coliseum launch: - config: oslist: windows executable: Airstrike.exe type: default -'1119110': +"1119110": installDir: The Creature launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: TheCreature.exe type: default -'1119380': +"1119380": installDir: Trump Vs Rocketman launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: rocketmanvstrump.exe type: default -'1119430': +"1119430": installDir: The Backrooms Simulator launch: - config: @@ -41989,21 +41510,21 @@ oslist: windows executable: BackroomsOculus/The Backrooms Simulator.exe type: othervr -'1119500': +"1119500": installDir: FIGHT BALL VR launch: - config: oslist: windows executable: FIGHTBALL_VR.exe type: vr -'1119520': +"1119520": installDir: HITOTSU NO MORI launch: - config: oslist: windows executable: Game.exe type: none -'1119530': +"1119530": installDir: ZHIVE launch: - config: @@ -42011,28 +41532,28 @@ executable: ZHive.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: ZHive.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: ZHive.x86_64 type: default - config: oslist: macos - executable: ZHive.app\\Contents\\MacOS\\ZHive + executable: "ZHive.app\\\\Contents\\\\MacOS\\\\ZHive" type: default -'1119540': {} -'1119560': +"1119540": {} +"1119560": installDir: Indian Legends Solitaire launch: - config: oslist: windows executable: india_solitaire.exe type: default -'1119600': +"1119600": installDir: Help Will Come Tomorrow launch: - config: @@ -42043,7 +41564,7 @@ oslist: linux executable: Help Will Come Tomorrow.x86_64 type: default -'1119620': +"1119620": installDir: Beyond Shattered Isles launch: - config: @@ -42051,7 +41572,7 @@ description: Launch executable: Beyond Shattered Isles.exe type: default -'1119630': +"1119630": installDir: DarkFairyTales SleepingBeauty launch: - config: @@ -42062,7 +41583,7 @@ oslist: macos executable: dsb.app type: default -'1119640': +"1119640": installDir: Hentai MatchUp launch: - config: @@ -42073,11 +41594,11 @@ oslist: macos executable: hmu.app type: default -'1119670': +"1119670": installDir: HoloSprint launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: HoloSprint_Windows.exe type: none @@ -42085,22 +41606,22 @@ oslist: macos executable: HoloSprint_MacOS.app type: none -'1119680': +"1119680": installDir: JadesAscension launch: - config: oslist: windows executable: JadesAscension.exe type: default -'1119690': +"1119690": installDir: LAMO launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: LAMO Game.exe type: default -'1119700': +"1119700": installDir: As Far As The Eye launch: - config: @@ -42117,7 +41638,7 @@ type: default nameLocalized: schinese: 四海旅人 -'1119710': +"1119710": installDir: looK INside launch: - config: @@ -42126,36 +41647,32 @@ type: none - config: oslist: macos - executable: lookinside.app\\Contents\\MacOS\\looK INside + executable: "lookinside.app\\\\Contents\\\\MacOS\\\\looK INside" type: default -'1119730': +"1119730": installDir: Ranch Simulator launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Ranch Simulator - description_loc: - english: Ranch Simulator executable: Ranch_Simulator.exe type: option1 - - arguments: '-dx11' + - arguments: "-dx11" config: - osarch: '64' + osarch: "64" oslist: windows - description: 'Ranch Simulator, DirectX 11 for use with OBS' - description_loc: - english: 'Ranch Simulator, DirectX 11 for use with OBS' + description: "Ranch Simulator, DirectX 11 for use with OBS" executable: Ranch_Simulator.exe type: option1 -'1119740': +"1119740": installDir: The Tower 2 launch: - config: oslist: windows executable: The Tower 2.exe type: vr -'1119760': +"1119760": installDir: Rainbow Jigsaw launch: - config: @@ -42164,23 +41681,23 @@ type: default - config: oslist: macos - executable: RainbowJigsaw.app\\Contents\\MacOS\\RainbowJigsaw + executable: "RainbowJigsaw.app\\\\Contents\\\\MacOS\\\\RainbowJigsaw" type: default -'1119770': +"1119770": installDir: VaporFly launch: - config: oslist: windows executable: VAPORFLY.exe type: default -'1119790': +"1119790": installDir: SAWars launch: - config: oslist: windows executable: SAWars.exe type: default -'1119800': +"1119800": installDir: Brume launch: - config: @@ -42191,24 +41708,24 @@ oslist: macos executable: brume.app type: none -'1119820': +"1119820": installDir: 61 Days launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: Onehundredandonedays.exe type: default -'1119840': +"1119840": installDir: SandsOfAura launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SandsOfAura.exe type: default -'1119870': +"1119870": installDir: Bot Land launch: - config: @@ -42219,16 +41736,16 @@ oslist: macos executable: Bot Land.app/Contents/MacOS/Bot Land type: default -'1119890': +"1119890": installDir: Babylonia launch: - config: oslist: windows executable: Babylonia.exe type: default -'1119910': {} -'1119930': {} -'1119940': +"1119910": {} +"1119930": {} +"1119940": installDir: Storm Tale launch: - config: @@ -42243,25 +41760,25 @@ oslist: linux executable: Storm Tale.x86_64 type: default -'1119950': +"1119950": installDir: DeusExMacnina launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: DeusExMachina.exe type: vr -'1119970': +"1119970": installDir: Elf Manor launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ElfManor.exe type: default nameLocalized: schinese: 妖师 -'1119980': +"1119980": installDir: InSoundMind launch: - config: @@ -42269,7 +41786,7 @@ description: Launch Game executable: In Sound Mind.exe type: none -'11200': +"11200": installDir: Shadowgrounds Survivor launch: - config: @@ -42283,23 +41800,23 @@ oslist: macos description: Mac executable: survivor.app -'1120050': +"1120050": installDir: Hyacinthus launch: - - arguments: '-window' + - arguments: "-window" config: oslist: windows executable: Game.exe type: default -'1120090': +"1120090": installDir: Gobligeddon launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Gobligeddon.exe type: vr -'1120160': +"1120160": installDir: Tricky Cow launch: - config: @@ -42310,7 +41827,7 @@ oslist: linux executable: Tricky Cow.x86_64 type: none -'1120210': +"1120210": installDir: Make War launch: - config: @@ -42321,13 +41838,13 @@ oslist: macos executable: MakeWar.app type: default -'1120220': {} -'1120240': +"1120220": {} +"1120240": installDir: Ded Inside launch: - executable: Ded Inside.exe type: default -'1120280': +"1120280": installDir: Treasure Fleet launch: - config: @@ -42335,11 +41852,11 @@ executable: TreasureFleet.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: launch type: default -'1120320': +"1120320": installDir: Builder Simulator launch: - config: @@ -42348,13 +41865,13 @@ type: default nameLocalized: schinese: 盖房模拟器 -'1120330': {} -'1120340': +"1120330": {} +"1120340": installDir: Meu Mundo launch: - executable: Meu Mundo.exe type: default -'1120360': +"1120360": installDir: At Home Alone II launch: - description: At Home Alone II @@ -42369,20 +41886,20 @@ nameLocalized: schinese: 一个人在家时II tchinese: 一个人在家时II -'1120370': +"1120370": installDir: HuohuaiProject launch: - executable: HuohuaiProject.exe type: default -'1120400': +"1120400": installDir: Terra Randoma launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TerraRandomaGame.exe type: default -'1120420': +"1120420": installDir: Infini launch: - config: @@ -42393,88 +41910,72 @@ oslist: linux executable: Infini type: none -'1120480': +"1120480": installDir: Anacrusis launch: - - arguments: >- - -ab.namespace=\"TheAnacrusis\" -ab.baseurl=\"https://accounts.straybombay.com\" - -ab.clientid=\"95c1eb5e8a854e388a334dcba7c9035c\" -ab.clientsecret=\"KZu;GVeZ7eQ;&l%^[RR+91Z1P;]0CqK2\" + - arguments: "-ab.namespace=\\\"TheAnacrusis\\\" -ab.baseurl=\\\"https://accounts.straybombay.com\\\" -ab.clientid=\\\"95c1eb5e8a854e388a334dcba7c9035c\\\" -ab.clientsecret=\\\"KZu;GVeZ7eQ;&l%^[RR+91Z1P;]0CqK2\\\"" config: betakey: default - osarch: '64' + osarch: "64" oslist: windows description: The Anacrusis - description_loc: - english: The Anacrusis executable: anacrusis.exe type: default - - arguments: '-ab.environment=cert' + - arguments: "-ab.environment=cert" config: betakey: staging - osarch: '64' + osarch: "64" oslist: windows description: The Anacrusis (staging) - description_loc: - english: The Anacrusis (staging) executable: anacrusis.exe type: default - - arguments: '-ab.environment=prod' + - arguments: "-ab.environment=prod" config: betakey: playtest - osarch: '64' + osarch: "64" oslist: windows description: Private Playtest - description_loc: - english: Private Playtest executable: anacrusis.exe type: default - config: betakey: development - osarch: '64' + osarch: "64" oslist: windows description: Development (AccelByte) - description_loc: - english: Development (AccelByte) - executable: SteamABSwitcher\\PlayWithAB.bat + executable: "SteamABSwitcher\\\\PlayWithAB.bat" type: option1 - config: betakey: development - osarch: '64' + osarch: "64" oslist: windows description: Development (Steam) - description_loc: - english: Development (Steam) - executable: SteamABSwitcher\\PlayWithSteam.bat + executable: "SteamABSwitcher\\\\PlayWithSteam.bat" type: option2 - - arguments: '-ab.environment=dev' + - arguments: "-ab.environment=dev" config: betakey: dailyplaytest oslist: windows description: The Anacrusis - description_loc: - english: The Anacrusis executable: anacrusis.exe type: default - - arguments: '-ab.environment=dev' + - arguments: "-ab.environment=dev" config: betakey: marchplaytest - osarch: '64' + osarch: "64" oslist: windows description: Beta Playtest - description_loc: - english: Beta Playtest executable: anacrusis.exe type: default -'1120560': +"1120560": installDir: SenseACPGS launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: SenseACPGS.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: SenseACPGS.exe type: default @@ -42483,52 +41984,52 @@ executable: SenseACPGS.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: SenseACPGS.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: SenseACPGS.x86_64 type: default -'1120580': +"1120580": installDir: Clans to Kingdoms launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Win 64bit executable: CTK_steam.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows description: Win 32bit executable: CTK32_steam.exe type: none -'1120600': +"1120600": installDir: FromTheEarth VR launch: - config: oslist: windows executable: FromTheEarth.exe type: vr -'1120640': +"1120640": installDir: Kaiju Kite Attack launch: - config: oslist: windows executable: Kaiju Kite Attack OfficialWinUpdate3.exe type: none -'1120680': +"1120680": installDir: ViVO launch: - config: oslist: windows executable: VİVO.exe type: default -'1120700': +"1120700": installDir: Rescue Lucy 2 launch: - config: @@ -42539,23 +42040,23 @@ oslist: macos executable: topgame.app type: none -'1120770': +"1120770": installDir: Gods of Havoc Fall to Earth launch: - executable: Game.exe type: none -'1120780': {} -'1120790': +"1120780": {} +"1120790": nameLocalized: schinese: 军团战争:罗马 -'1120800': +"1120800": installDir: Alex Hunter Lord of the Mind launch: - config: oslist: windows executable: AlexHunterLordOfTheMindPlatinum.exe type: default -'1120810': +"1120810": installDir: Eastern Exorcist launch: - config: @@ -42564,36 +42065,35 @@ type: none - config: oslist: windows - realm: steamchina executable: Exorcist.exe nameLocalized: english: Eastern Exorcist sc_schinese: 斩妖行 schinese: 斩妖行 -'1120820': +"1120820": installDir: NEO launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: NEO.exe type: default -'1120850': +"1120850": installDir: Old Town Stories launch: - config: oslist: windows executable: OldTownStories.exe type: othervr -'1120900': +"1120900": installDir: Hoodo launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Arch.exe type: default -'1120920': +"1120920": installDir: ELON on MARS launch: - config: @@ -42604,45 +42104,45 @@ oslist: linux executable: ELON on MARS.x86_64 type: default -'1120940': +"1120940": installDir: Forgotten Passages launch: - config: oslist: windows executable: Forgotten_Passages.exe type: none -'1120950': +"1120950": installDir: Chameleon Run Deluxe launch: - config: oslist: windows executable: chameleon.exe type: default - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" config: oslist: windows executable: chameleon.exe type: config -'1120960': +"1120960": installDir: Crafting Block World launch: - executable: Block Craft World.exe type: none -'1120970': +"1120970": installDir: Dream Keeper launch: - config: oslist: windows executable: Dream Keeper.exe type: default -'1120980': +"1120980": installDir: bit Dungeon launch: - config: oslist: windows executable: bitDungeon.exe type: default -'112100': +"112100": installDir: Avadon The Black Fortress launch: - config: @@ -42654,24 +42154,24 @@ - config: oslist: linux executable: Avadon -'1121000': +"1121000": installDir: Bhavacakra Maco launch: - config: oslist: windows executable: Game.exe type: default -'1121010': {} -'1121100': +"1121010": {} +"1121100": installDir: Color Slayer launch: - config: oslist: windows - description: 'Windows executable ' + description: "Windows executable " executable: ColorSlayer.exe type: default -'1121110': {} -'1121120': +"1121110": {} +"1121120": installDir: Smooth Mover launch: - config: @@ -42680,18 +42180,18 @@ type: none - config: oslist: macos - executable: Contents\\MacOS\\Mac + executable: "Contents\\\\MacOS\\\\Mac" type: none -'1121160': {} -'1121190': +"1121160": {} +"1121190": installDir: Hold Your Ground launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: HoldYourGround.exe type: vr -'1121200': +"1121200": installDir: SiliconCity launch: - config: @@ -42707,70 +42207,70 @@ oslist: linux executable: SiliconCity.x86_64 type: default -'1121220': {} -'1121230': +"1121220": {} +"1121230": installDir: Bomb Bowling launch: - executable: bb.exe type: none -'1121250': +"1121250": installDir: ChatAid launch: - config: oslist: windows - executable: ChatAid\\ChatAid.exe + executable: "ChatAid\\\\ChatAid.exe" type: default - config: oslist: linux - executable: ChatAid\\ChatAid.sh + executable: "ChatAid\\\\ChatAid.sh" type: default - config: oslist: macos - executable: ChatAid\\ChatAid.app + executable: "ChatAid\\\\ChatAid.app" type: default - config: oslist: windows - ownsdlc: '1123350' + ownsdlc: "1123350" description: ChatAid Here I Go Again - executable: ChatAidHereAgain\\ChatAidHereAgain.exe + executable: "ChatAidHereAgain\\\\ChatAidHereAgain.exe" type: option1 - config: oslist: linux - ownsdlc: '1123350' + ownsdlc: "1123350" description: ChatAid Here I Go Again - executable: ChatAidHereAgain\\ChatAidHereAgain.sh + executable: "ChatAidHereAgain\\\\ChatAidHereAgain.sh" type: option1 - config: oslist: macos - ownsdlc: '1123350' + ownsdlc: "1123350" description: ChatAid Here I Go Again - executable: ChatAidHereAgain\\ChatAidHereAgain.app + executable: "ChatAidHereAgain\\\\ChatAidHereAgain.app" type: option1 - config: oslist: windows - ownsdlc: '1135980' + ownsdlc: "1135980" description: ChatAid Princess Lolira - executable: ChatAidPrincess\\ChatAidPrincess.exe + executable: "ChatAidPrincess\\\\ChatAidPrincess.exe" type: option2 - config: oslist: linux - ownsdlc: '1135980' + ownsdlc: "1135980" description: ChatAid Princess Lolira - executable: ChatAidPrincess\\ChatAidPrincess.sh + executable: "ChatAidPrincess\\\\ChatAidPrincess.sh" type: option2 - config: oslist: macos - ownsdlc: '1135980' + ownsdlc: "1135980" description: ChatAid Princess Lolira - executable: ChatAidPrincess\\ChatAidPrincess.app + executable: "ChatAidPrincess\\\\ChatAidPrincess.app" type: option2 -'1121260': {} -'1121270': +"1121260": {} +"1121270": installDir: Impossible Soaring launch: - executable: ImpossibleSoaring.exe type: default -'1121290': +"1121290": installDir: Just Another Memory launch: - config: @@ -42781,59 +42281,55 @@ oslist: macos executable: Just Another Memory MAC.app type: default -'1121300': +"1121300": installDir: Mizuchi launch: - config: oslist: windows - executable: Mizuchi-1.0-market\\Mizuchi.exe + executable: "Mizuchi-1.0-market\\\\Mizuchi.exe" type: default - config: oslist: macos - executable: Mizuchi-1.0-market\\Mizuchi.app + executable: "Mizuchi-1.0-market\\\\Mizuchi.app" type: default - config: oslist: linux - executable: Mizuchi-1.0-market\\Mizuchi.sh + executable: "Mizuchi-1.0-market\\\\Mizuchi.sh" type: default -'1121310': +"1121310": installDir: Virtual Romance Club launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: ViRo Playspace (Non-VR) - description_loc: - english: ViRo Playspace (Non-VR) executable: ViRoPlayspace.exe type: option1 - - arguments: '-runxr' + - arguments: "-runxr" config: - osarch: '64' + osarch: "64" oslist: windows description: ViRo Playspace SteamVR (Both VR/Non-VR) - description_loc: - english: ViRo Playspace SteamVR (Both VR/Non-VR) executable: ViRoPlayspace.exe type: vr -'1121320': +"1121320": nameLocalized: schinese: 愤怒锁链 -'1121340': - installDir: Secret City The Human Threat Collector's Edition +"1121340": + installDir: "Secret City The Human Threat Collector's Edition" launch: - config: oslist: windows executable: SecretCity_TheHumanThreat_CE.exe type: default -'1121400': +"1121400": installDir: DrumsOfWarVR launch: - config: oslist: windows executable: DrumsOfWarVR.exe type: vr -'1121420': +"1121420": installDir: KUF Crusader launch: - config: @@ -42844,8 +42340,8 @@ executable: Kuf2Main.exe type: default nameLocalized: - koreana: '킹덤 언더 파이어 : 더 크루세이더 ' -'1121460': + koreana: "킹덤 언더 파이어 : 더 크루세이더 " +"1121460": installDir: Puzzle Bear launch: - config: @@ -42856,16 +42352,16 @@ oslist: macos executable: Puzzle-Bear.app type: none -'1121490': +"1121490": installDir: Time Break 2121 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TimeBreak2121.exe type: none -'1121510': {} -'1121530': +"1121510": {} +"1121530": installDir: Globesweeper Hex Puzzler launch: - config: @@ -42877,75 +42373,75 @@ executable: Globesweeper Hex Puzzler.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Globesweeper Hex Puzzler.x86_64 type: default -'1121550': +"1121550": installDir: Prisoner 518 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Prisoner518s001r.exe type: vr -'1121560': +"1121560": installDir: Atelier Ryza launch: - executable: Atelier_Ryza_Launcher.exe type: none nameLocalized: - english: 'Atelier Ryza: Ever Darkness & the Secret Hideout' + english: "Atelier Ryza: Ever Darkness & the Secret Hideout" japanese: ライザのアトリエ ~常闇の女王と秘密の隠れ家~ schinese: 莱莎的炼金工房 ~常暗女王与秘密藏身处~ tchinese: 萊莎的鍊金工房 ~常闇女王與秘密藏身處~ -'1121570': +"1121570": installDir: Avalo Legends launch: - config: oslist: windows executable: AvaloLegends.exe type: none -'1121590': +"1121590": installDir: Adam - Lost Memories launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: AdamLM.exe type: none -'1121630': +"1121630": installDir: Dwarven Defender launch: - config: oslist: windows executable: Dwarven Defender.exe type: vr -'1121640': +"1121640": installDir: The Wandering Village launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Windows64/WanderingVillage.exe type: default - config: oslist: macos - executable: Mac\\WanderingVillage.app\\Contents\\MacOS\\The Wandering Village + executable: "Mac\\\\WanderingVillage.app\\\\Contents\\\\MacOS\\\\The Wandering Village" type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: Windows32/WanderingVillage.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux - executable: Linux\\WanderingVillage.x86_64 + executable: "Linux\\\\WanderingVillage.x86_64" type: default nameLocalized: schinese: 漂泊牧歌 (The Wandering Village) -'1121650': +"1121650": installDir: Dark Zone Defense launch: - config: @@ -42955,17 +42451,17 @@ nameLocalized: schinese: 黑域生机 tchinese: 黑域生机 -'1121710': +"1121710": installDir: Total Lockdown launch: - - arguments: '-steam' + - arguments: "-steam" config: - osarch: '64' + osarch: "64" oslist: windows executable: start.exe type: default -'1121720': - installDir: Monsters' Den Chronicles +"1121720": + installDir: "Monsters' Den Chronicles" launch: - config: oslist: windows @@ -42975,14 +42471,14 @@ oslist: macos executable: MDChronicles.app/Contents/MacOS/Chronicles type: default -'1121770': +"1121770": installDir: Animal war launch: - config: oslist: windows executable: game.exe type: default -'1121780': +"1121780": installDir: Astria Ascending launch: - executable: Astria Ascending.exe @@ -42999,27 +42495,24 @@ betakey: astria_beta_jp executable: Astria Ascending.exe type: none - - arguments: '-resetKeybinds' + - arguments: "-resetKeybinds" config: - betakey: 'dev_test, astria_beta' + betakey: "dev_test, astria_beta" description: Astria Ascending (Reset key mapping) - description_loc: - english: Astria Ascending (Reset key mapping) - french: Astria Ascending (Commandes par défaut) executable: Astria Ascending.exe type: option1 nameLocalized: schinese: 星位继承者 tchinese: 星位繼承者 -'1121820': +"1121820": installDir: Go For A Walk launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: g4aw.exe type: vr -'1121860': +"1121860": installDir: FlatEarths launch: - config: @@ -43028,20 +42521,20 @@ type: default - config: oslist: macos - executable: flat-earths.app\\Contents\\MacOS\\flat-earths + executable: "flat-earths.app\\\\Contents\\\\MacOS\\\\flat-earths" type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: flat-earths.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: flat-earths.x86_64 type: none -'1121880': {} -'1121910': +"1121880": {} +"1121910": installDir: ILYCS launch: - config: @@ -43050,23 +42543,23 @@ type: default - config: oslist: macos - executable: ILYCS.app\\Contents\\MacOS\\ILYCS + executable: "ILYCS.app\\\\Contents\\\\MacOS\\\\ILYCS" type: default -'1121980': +"1121980": installDir: InvisibleLove launch: - config: oslist: windows executable: 看不见的爱.exe type: default -'1122040': +"1122040": installDir: Kaede the Eliminator Eliminator launch: - config: oslist: windows executable: Eliminator ver 1.2.exe type: default -'1122050': +"1122050": installDir: Gensokyo Night Festival launch: - executable: Suiyasai.exe @@ -43074,18 +42567,18 @@ nameLocalized: japanese: 幻想郷萃夜祭 schinese: 幻想乡萃夜祭 -'1122090': +"1122090": installDir: DanceGirl launch: - config: oslist: windows executable: DanceGirl.exe type: default -'1122100': +"1122100": installDir: Giraffe and annika(ジラフとアンニカ) launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Giraffe_and_Annika.exe type: default @@ -43093,19 +42586,19 @@ japanese: ジラフとアンニカ schinese: 吉拉夫与安妮卡/Giraffe and Annika tchinese: 吉拉夫與安妮卡/Giraffe and Annika -'1122110': +"1122110": installDir: CENTRALIA launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: CENTRALIA.exe type: default -'1122120': +"1122120": installDir: STATIONflow launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: STATIONflow.exe type: default @@ -43114,11 +42607,11 @@ executable: STATIONflow.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: STATIONflow.x86_64 type: default -'1122150': +"1122150": installDir: ELEA launch: - config: @@ -43126,17 +42619,17 @@ description: Version 1.0 executable: Project_Elea.exe type: default -'1122160': {} -'1122170': {} -'1122180': +"1122160": {} +"1122170": {} +"1122180": installDir: Curse of Anabelle launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: CurseofAnabelle.exe type: default -'1122210': +"1122210": installDir: Guns Color Pixel Art launch: - config: @@ -43153,13 +42646,13 @@ description: Guns Craft - Expansion Pack 2 executable: Guns Craft - Expansion Pack 2.exe type: option1 -'1122230': +"1122230": nameLocalized: schinese: 骑士与亡命之徒 -'1122240': - installDir: Mandy's Room 2 +"1122240": + installDir: "Mandy's Room 2" launch: - - arguments: '-show-screen-selector -vrmode None' + - arguments: "-show-screen-selector -vrmode None" config: oslist: windows description: Mandys Room 2 Windows @@ -43168,7 +42661,7 @@ - config: oslist: macos description: Mandys Room 2 Mac - executable: Contents\\MacOS\\MandysRoom2 + executable: "Contents\\\\MacOS\\\\MandysRoom2" type: default - description: Mandys Room 2 Steam VR executable: MandysRoom2.exe @@ -43176,33 +42669,33 @@ - description: Mandys Room 2 Oculus executable: MandysRoom2.exe type: othervr -'1122250': +"1122250": installDir: THE FATE OF THE BULLY launch: - config: oslist: windows executable: nw.exe type: default -'1122270': +"1122270": installDir: Hidden Fears (Moonlight Edition) launch: - config: oslist: windows executable: HiddenFears.exe type: default -'1122280': +"1122280": installDir: Witchcrafty launch: - config: oslist: windows executable: witchy.exe type: default -'1122290': +"1122290": installDir: Nyanco Project launch: - executable: RPG_RT.exe type: none -'1122310': +"1122310": installDir: Guildmaster Story launch: - config: @@ -43213,20 +42706,20 @@ oslist: macos executable: OSX.app type: none -'1122330': {} -'1122360': +"1122330": {} +"1122360": installDir: Westwood Shadows launch: - config: oslist: windows executable: WestwoodShadows.exe type: default -'1122450': {} -'1122460': +"1122450": {} +"1122460": installDir: Alien Infection launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch game executable: Alien Infection.exe @@ -43237,23 +42730,23 @@ executable: Alien Infection.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Alien Infection.x86_64 type: default - - arguments: '-vrmode openvr' + - arguments: "-vrmode openvr" config: - osarch: '64' + osarch: "64" oslist: windows executable: Alien Infection.exe type: vr - - arguments: ' -vrmode openvr' + - arguments: " -vrmode openvr" config: oslist: macos executable: Alien Infection.app type: vr -'1122480': {} -'1122490': +"1122480": {} +"1122490": installDir: Battleheart Legacy launch: - config: @@ -43264,28 +42757,28 @@ oslist: windows executable: BHLegacy.exe type: default -'1122510': +"1122510": installDir: Busty Hentai Mosaic launch: - config: oslist: windows executable: win32/nw.exe type: default -'1122680': +"1122680": installDir: The Artful Escape launch: - config: oslist: windows executable: ArtfulEscape.exe type: default -'1122690': +"1122690": installDir: Last Stop launch: - config: oslist: windows executable: Last Stop.exe type: default -'1122710': +"1122710": installDir: The Werewolf Hills launch: - config: @@ -43300,47 +42793,47 @@ oslist: macos executable: The Werewolf Hills.app type: none -'1122720': +"1122720": installDir: Sayonara Wild Hearts launch: - config: oslist: windows executable: Sayonara Wild Hearts.exe type: default -'1122730': +"1122730": installDir: Magna Fortuna launch: - executable: Game.exe type: default -'1122740': +"1122740": installDir: To the Hell launch: - config: oslist: windows executable: tothehell.exe type: default -'1122750': +"1122750": installDir: AbnormalTreatment launch: - config: oslist: windows executable: Game.exe type: default -'1122760': +"1122760": installDir: XENOS Defense launch: - config: oslist: windows executable: Xenos Defense.exe type: default -'1122770': +"1122770": installDir: FLTG launch: - config: oslist: windows executable: fltg.exe type: default -'1122780': +"1122780": installDir: Highly Likely launch: - config: @@ -43348,49 +42841,47 @@ description: Launch executable: Highly Likely.exe type: default -'1122810': +"1122810": installDir: DarkSpace launch: - executable: Space.exe type: none -'1122820': {} -'1122830': +"1122820": {} +"1122830": installDir: Atomorf launch: - - arguments: '@f+ @INFOOFF' + - arguments: "@f+ @INFOOFF" config: oslist: windows description: Full screen executable: Atomorf.win32_steam.exe type: option1 - - arguments: '@f1920x1080 @z0.9 @INFOOFF' + - arguments: "@f1920x1080 @z0.9 @INFOOFF" config: oslist: windows description: Windowed executable: Atomorf.win32_steam.exe type: option2 -'1122860': +"1122860": installDir: Stop it - Driving Simulation launch: - config: oslist: windows executable: Stop it - Driving Simulator.exe type: vr -'1122870': +"1122870": installDir: MINIWars launch: - config: oslist: windows description: Start Game - description_loc: - english: Start Game executable: MINIWars.exe type: default -'1122880': +"1122880": installDir: Stones Of Solace launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Stones of Solace.exe type: none @@ -43398,56 +42889,56 @@ oslist: macos executable: Stones of Solace.app type: none -'1122920': +"1122920": installDir: Path Of Aurora launch: - config: oslist: windows executable: Path Of Aurora.exe type: none -'1122930': +"1122930": installDir: Mournful Sword launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: MournfulSword.exe type: default -'1122960': +"1122960": installDir: Horizon Beyond launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Horizon_Beyond.exe type: vr -'1122970': +"1122970": installDir: Zombie Island launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Zombie Island.exe type: default -'11230': +"11230": installDir: Gumboy Tournament launch: - executable: GumboyTournament.exe -'1123020': +"1123020": installDir: VRWiz launch: - config: oslist: windows executable: VRWiz.exe type: vr -'1123030': +"1123030": installDir: WHO IS AWESOME launch: - config: oslist: windows executable: WHOISAWESOME.exe type: default -'1123050': +"1123050": installDir: GRIME launch: - config: @@ -43459,35 +42950,35 @@ oslist: macos executable: GRIME.app/Contents/MacOS/GRIME type: default -'1123060': +"1123060": installDir: Alien Creatures launch: - config: oslist: windows executable: game.exe type: default -'1123070': +"1123070": installDir: REFLASER launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Reflaser.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: Reflaser.exe type: default -'1123080': +"1123080": installDir: FadeZone launch: - config: oslist: windows executable: ProjectFZ.exe type: default -'1123100': {} -'1123140': +"1123100": {} +"1123140": installDir: MotherDaughterPP launch: - config: @@ -43496,7 +42987,7 @@ type: default - config: oslist: linux - executable: ./PleasurePets.sh + executable: "./PleasurePets.sh" type: default - config: oslist: macos @@ -43505,28 +42996,28 @@ nameLocalized: latam: Madre e Hija Mascotas Lujuriosas spanish: Madre e Hija Mascotas Lujuriosas -'1123150': +"1123150": installDir: ChurchArtOfSweden launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ChurchArtOfSweden.exe type: vr -'1123180': {} -'1123300': +"1123180": {} +"1123300": installDir: Castle Woodwarf launch: - config: oslist: windows executable: Castle Woodwarf.exe type: default -'1123310': +"1123310": installDir: Super Lobster Run launch: - executable: Super Lobster Run.exe type: none -'1123340': +"1123340": installDir: Run!Bunny launch: - config: @@ -43535,16 +43026,16 @@ type: default - config: oslist: macos - executable: Run!Bunny.app\\Contents\\MacOS\\Run!Bunny + executable: "Run!Bunny.app\\\\Contents\\\\MacOS\\\\Run!Bunny" type: default -'1123360': +"1123360": installDir: In Retrospect launch: - config: oslist: windows executable: in-retrospect.exe type: default -'1123400': +"1123400": installDir: The Land of Exile launch: - config: @@ -43553,14 +43044,14 @@ type: default nameLocalized: english: The Land of Exile -'1123410': +"1123410": installDir: Tailypo launch: - config: oslist: windows executable: Tailypo.exe type: default -'1123450': +"1123450": installDir: Chicory A Colorful Tale launch: - config: @@ -43577,59 +43068,59 @@ description: MONSTERBALL executable: monsterball/monsterball.exe type: none -'1123460': +"1123460": installDir: Fateline(命运线) launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: fateline.exe type: default -'1123500': +"1123500": installDir: Hell of Men Blood Brothers launch: - config: oslist: windows executable: HoMBB.exe type: none -'1123510': +"1123510": installDir: Самозванец launch: - executable: Samozvanec.exe type: none -'1123520': +"1123520": installDir: Biomechanical launch: - executable: Biomechanical.exe type: default -'1123550': +"1123550": installDir: Desire Gambling House欲望赌馆 launch: - executable: DGH.exe type: default -'1123570': +"1123570": installDir: FlyCatcher launch: - config: oslist: windows executable: FlyCatcher.exe type: vr -'1123590': {} -'1123610': +"1123590": {} +"1123610": installDir: indiecalypse launch: - config: oslist: windows executable: Indiecalypse.exe type: default -'1123640': +"1123640": installDir: Balloon Fighter launch: - config: oslist: windows executable: BalloonFighter.exe type: default -'1123730': +"1123730": installDir: ROD launch: - config: @@ -43640,76 +43131,76 @@ oslist: macos executable: ROD(macOS).app/Contents/MacOS/ROD(macOS) type: default -'1123770': +"1123770": installDir: Curse of the Dead Gods launch: - config: oslist: windows executable: Curse of the Dead Gods.exe type: none -'1123790': +"1123790": installDir: Girls on the beach launch: - executable: girls.exe type: none -'1123830': +"1123830": installDir: Farm Manager 2021 launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Run Farm Manager 2021 executable: FarmManager21.exe type: default -'1123850': +"1123850": installDir: Red Black Video Poker launch: - config: oslist: windows executable: Poker.exe type: default -'1123870': +"1123870": installDir: The Man with the Ivory Cane launch: - config: oslist: windows executable: ivorycane.exe type: default -'1123900': - installDir: Dark Tales Edgar Allan Poe's Ligeia Collector's Edition +"1123900": + installDir: "Dark Tales Edgar Allan Poe's Ligeia Collector's Edition" launch: - config: oslist: windows executable: DarkTales_EAPsLigeia_CE.exe type: default -'1123910': +"1123910": installDir: The Pointless Car Chase launch: - config: oslist: windows executable: The Pointless Car Chase.exe type: none -'11240': +"11240": installDir: Space Trader launch: - executable: spacetrader.exe -'1124000': +"1124000": installDir: Meu launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Meu.exe type: vr -'1124010': +"1124010": installDir: Realms Of Regalia - Royal Rumble launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Realms of Regalia - Royal Rumble.exe type: default -'1124050': +"1124050": installDir: Ogre Tale launch: - config: @@ -43718,87 +43209,87 @@ type: default nameLocalized: japanese: オウガテイル -'1124060': +"1124060": installDir: Touhou Shoujo Tale of Beautiful Memories launch: - config: oslist: windows executable: kisoutan.exe type: default -'1124070': +"1124070": installDir: Tower VR launch: - - arguments: '-popupwindow' + - arguments: "-popupwindow" config: oslist: windows executable: TowerVR.exe type: vr -'1124090': +"1124090": installDir: Death angel launch: - - arguments: '-window' + - arguments: "-window" executable: Game.exe type: none -'1124120': +"1124120": installDir: MRDrone launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: MRDrone.exe type: none -'1124130': +"1124130": installDir: Streets of Neotokio launch: - config: oslist: windows executable: StreetsOfNeotokio.exe type: none -'1124160': +"1124160": installDir: VR Giants DA launch: - config: oslist: windows executable: VR Giants.exe type: vr -'1124170': +"1124170": installDir: Spiralagon launch: - - arguments: '-vr' + - arguments: "-vr" executable: Spiralagon.exe type: none -'1124180': +"1124180": installDir: Rail Route launch: - config: oslist: windows executable: Rail Route.exe type: default - - arguments: '-force-glcore' + - arguments: "-force-glcore" config: oslist: macos - executable: Rail Route.app\\Contents\\MacOS\\Rail Route + executable: "Rail Route.app\\\\Contents\\\\MacOS\\\\Rail Route" type: none - config: oslist: linux executable: Rail Route.x86 type: none -'1124190': +"1124190": installDir: Police Stunt Cars launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: PoliceStuntCars.exe type: none -'1124210': +"1124210": installDir: Heroes of Shaola launch: - config: oslist: windows executable: Game.exe type: default -'1124260': +"1124260": installDir: Snowtopia launch: - config: @@ -43813,26 +43304,26 @@ oslist: linux executable: Snowtopia.x86_64 type: default -'1124270': +"1124270": installDir: cosmicmonsters launch: - - arguments: '-windowed' + - arguments: "-windowed" config: oslist: windows executable: cmfinal.exe type: none -'1124280': {} -'1124290': {} -'1124300': +"1124280": {} +"1124290": {} +"1124300": installDir: Humankind launch: - - arguments: '-single-instance' + - arguments: "-single-instance" config: - osarch: '64' + osarch: "64" oslist: windows executable: Humankind.exe type: none - - arguments: '-single-instance' + - arguments: "-single-instance" config: oslist: macos executable: Humankind.app @@ -43840,29 +43331,29 @@ nameLocalized: schinese: 人类 tchinese: 人類 -'1124310': +"1124310": installDir: Android Helipad launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Android_Helipad.exe type: default - config: oslist: macos - executable: Android_Helipad.app\\Contents\\MacOS\\Android_Helipad + executable: "Android_Helipad.app\\\\Contents\\\\MacOS\\\\Android_Helipad" type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Android_Helipad.x86_64 type: default -'1124380': +"1124380": installDir: One Gun 2 launch: - executable: game.exe type: none -'1124390': +"1124390": installDir: Paradigm City launch: - config: @@ -43877,7 +43368,7 @@ oslist: linux executable: ParadigmCity type: none -'1124400': +"1124400": installDir: Zombien launch: - config: @@ -43892,7 +43383,7 @@ oslist: linux executable: Zombien type: none -'1124410': +"1124410": installDir: Tokyo Wizard launch: - config: @@ -43907,50 +43398,50 @@ oslist: linux executable: TokyoWizard type: none -'1124430': +"1124430": installDir: The Adventures of Sullivan launch: - config: oslist: windows executable: The Adventures of Sullivan.exe type: default -'1124510': +"1124510": installDir: Crosser launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Crosser.exe type: vr -'1124520': +"1124520": installDir: Laranga launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Laranga.exe type: default -'1124530': +"1124530": installDir: Draft Day Sports Pro Football 2020 launch: - config: oslist: windows executable: DDSPF20.exe type: default -'1124550': +"1124550": installDir: ARC launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: arc.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: arc.exe type: default -'1124560': +"1124560": installDir: Fallen Angel launch: - config: @@ -43959,7 +43450,7 @@ type: none nameLocalized: schinese: 堕落天使 Fallen Angel -'1124600': +"1124600": installDir: Naau The Lost Eye launch: - config: @@ -43970,62 +43461,62 @@ oslist: windows executable: NaauTheLostEye.exe type: othervr -'1124630': +"1124630": installDir: Lonepath launch: - config: oslist: windows executable: Lonepath.exe type: default -'1124640': +"1124640": installDir: Sacred Siren launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SacredSiren.exe type: vr -'1124660': +"1124660": installDir: STORM AREA 51 AYY LMAO EDITION launch: - executable: STORMAREA51.exe type: none -'1124690': +"1124690": installDir: La Introducción launch: - config: oslist: windows executable: La Introduccion.exe type: othervr -'1124710': +"1124710": installDir: IS Infinite Stratos Versus Colors launch: - config: oslist: windows executable: IsVersusColors.exe type: default -'1124740': +"1124740": installDir: Broken magic launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Broken magic.exe type: default -'1124800': +"1124800": installDir: Aura Shift launch: - config: oslist: windows executable: AuraShift.exe type: none -'1124810': +"1124810": installDir: Magic Tower ~ Tower of the Alchemist launch: - - arguments: '-window' + - arguments: "-window" executable: Game.exe type: none -'1124830': +"1124830": installDir: Touhou Blooming Chaos launch: - config: @@ -44037,12 +43528,12 @@ japanese: 東方華彩乱戦 schinese: 东方华彩乱战 tchinese: 東方華彩亂戰 -'1124850': +"1124850": installDir: Lightning Wings II launch: - executable: ThunderRobotX.exe type: default -'1124860': +"1124860": installDir: Otter Space Rescue launch: - config: @@ -44050,71 +43541,71 @@ description: Launch executable: Otter Space Rescue.exe type: none -'1124940': +"1124940": installDir: SuperSquad launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SuperSquad.exe type: default -'1124950': +"1124950": installDir: Hyperplex 3D launch: - config: oslist: windows executable: Hyperplex 3D.exe type: default -'1124960': +"1124960": installDir: EMMA Lost in Memories launch: - - arguments: '- full' + - arguments: "- full" config: oslist: windows executable: Lost in Memories.exe type: default -'1124970': {} -'1124980': +"1124970": {} +"1124980": installDir: Watchers launch: - config: oslist: windows executable: Watchers.exe type: default -'1124990': +"1124990": installDir: Destructivator 2 launch: - config: oslist: windows executable: Destructivator2.exe type: default -'11250': +"11250": installDir: Pacific Storm launch: - executable: monsters.bat -'1125000': +"1125000": installDir: Touhou Multi Scroll Shooting launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TestProject.exe type: default -'1125060': +"1125060": installDir: The Quest for Achievements Remix launch: - config: oslist: windows executable: TQFA.exe type: default -'1125110': +"1125110": installDir: Obsurity launch: - config: oslist: windows executable: Obsurity.exe type: default -'1125130': +"1125130": installDir: Area 51 launch: - config: @@ -44126,16 +43617,16 @@ oslist: windows executable: mord how 2.exe type: default -'1125240': +"1125240": installDir: Ancient Dungeon VR launch: - - arguments: ' -vrmode openvr' + - arguments: " -vrmode openvr" executable: Ancient_Dungeon.exe type: vr - - arguments: '-vrmode oculus' + - arguments: "-vrmode oculus" executable: Ancient_Dungeon.exe type: othervr -'1125290': +"1125290": installDir: moofa launch: - config: @@ -44144,27 +43635,27 @@ type: default - config: oslist: macos - executable: Moofa.app\\Contents\\MacOS\\Moofa + executable: "Moofa.app\\\\Contents\\\\MacOS\\\\Moofa" type: default - config: oslist: linux executable: moofa.x86_64 type: default -'1125330': +"1125330": installDir: Griefhelm launch: - config: oslist: windows executable: Griefhelm.exe type: none -'1125340': +"1125340": installDir: Tales of Lazo launch: - config: oslist: windows executable: Tales of Lazo.exe type: default -'1125350': +"1125350": installDir: Geocells Quadcells launch: - config: @@ -44173,21 +43664,21 @@ type: default - config: oslist: macos - executable: Geocells.app\\Contents\\MacOS\\Geocells + executable: "Geocells.app\\\\Contents\\\\MacOS\\\\Geocells" type: default - config: oslist: linux executable: Geocells Quadcells.x86_64 type: default -'1125360': +"1125360": installDir: Fantasy Little Jobs launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: FantasyLittleJobs.exe type: vr -'1125370': +"1125370": installDir: Space Grunts 2 launch: - config: @@ -44203,15 +43694,15 @@ oslist: linux executable: spacegrunts2 type: default -'1125390': +"1125390": installDir: Atrio The Dark Wild launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Atrio.exe type: default -'1125400': +"1125400": installDir: The Angel Inn launch: - config: @@ -44222,22 +43713,22 @@ oslist: macos executable: Game.app type: none -'1125420': +"1125420": installDir: Death and Progress launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows executable: DeathAndProgress.exe type: default -'1125450': +"1125450": installDir: Sanitarium Rush launch: - config: oslist: windows - executable: SR\\SR.exe + executable: "SR\\\\SR.exe" type: default -'1125480': +"1125480": installDir: LoveDiary launch: - config: @@ -44246,14 +43737,14 @@ type: default nameLocalized: english: School Years -'1125490': +"1125490": installDir: STORM AREA 51 THE GAME launch: - config: oslist: windows executable: StormArea51.exe type: default -'1125590': +"1125590": installDir: Lightman launch: - config: @@ -44261,36 +43752,36 @@ description: Launch executable: LightMan.exe type: default -'1125600': +"1125600": installDir: TAG WAR NonVR launch: - config: oslist: windows executable: TAGWAR.exe type: default -'1125620': +"1125620": installDir: Wizhood The Epic of Freedom launch: - config: oslist: windows executable: wizhood2.exe type: default -'1125670': {} -'1125690': +"1125670": {} +"1125690": installDir: Eggness launch: - config: oslist: windows executable: EggnessEpisode1.exe type: default -'1125710': +"1125710": installDir: Gatewalkers launch: - config: oslist: windows executable: Gatewalkers.exe type: default -'1125730': +"1125730": installDir: VRPuzzleBox launch: - config: @@ -44302,45 +43793,45 @@ oslist: windows executable: VRPuzzle.exe type: openvroverlay -'1125770': +"1125770": installDir: Monoa City Parking launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: MonoaCityParking.exe type: none -'1125780': {} -'1125800': +"1125780": {} +"1125800": installDir: EndlessSki launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: EndlessSki.exe type: default -'1125820': +"1125820": installDir: ClearIt5 launch: - config: oslist: windows executable: ClearIt5.exe type: default -'1125830': +"1125830": installDir: We Are Screwed! launch: - config: oslist: windows executable: WeAreScrewed.exe type: default -'1125860': +"1125860": installDir: Rabisco launch: - config: oslist: windows executable: Rabisco.exe type: default -'1125870': +"1125870": installDir: Public Enemy Revolution Simulator launch: - config: @@ -44351,7 +43842,7 @@ oslist: macos executable: /PublicEnemy.app type: default -'1125890': +"1125890": installDir: Party Maker launch: - config: @@ -44359,18 +43850,18 @@ executable: PartyMaker.exe - config: betakey: Party Maker - magazyn zawartościTest - executable: PartyMakerBuild\\PartyMaker.exe + executable: "PartyMakerBuild\\\\PartyMaker.exe" nameLocalized: schinese: 派对策划师 tchinese: 派對策劃師 -'1125900': +"1125900": installDir: Speedway Challenge 2019 launch: - config: oslist: windows executable: SC19.exe type: default -'1125910': +"1125910": installDir: Crowns and Pawns Kingdom of Deceit launch: - config: @@ -44378,24 +43869,24 @@ executable: Crowns and Pawns.exe - config: oslist: macos - executable: Crowns and Pawns.app\\Contents\\MacOS\\Crowns and Pawns + executable: "Crowns and Pawns.app\\\\Contents\\\\MacOS\\\\Crowns and Pawns" - config: oslist: linux executable: Crowns and Pawns.x86_64 -'1125930': +"1125930": installDir: UNFAIR launch: - config: oslist: windows executable: UNFAIR.exe type: none -'11260': +"11260": installDir: Pacific Storm - Allies launch: - - arguments: '-f -a MainMenu' - executable: bin\\allies.exe + - arguments: "-f -a MainMenu" + executable: "bin\\\\allies.exe" workingdir: bin -'1126020': +"1126020": installDir: Wizard Battle launch: - config: @@ -44406,14 +43897,14 @@ oslist: macos executable: Builds.app type: default -'1126060': +"1126060": installDir: Bunker 56 launch: - config: oslist: windows executable: Bunker 56.exe type: default -'1126070': +"1126070": installDir: LSWYG launch: - config: @@ -44424,22 +43915,22 @@ oslist: linux executable: LetsSeeWhatYouGot.x86_64 type: none -'1126090': +"1126090": installDir: Booby And The Booby Trap launch: - config: oslist: windows executable: Booby And The Booby Trap.exe type: none -'1126100': +"1126100": installDir: WELCOME launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: WELCOME.exe type: default -'1126130': +"1126130": installDir: The Pillar launch: - config: @@ -44450,35 +43941,35 @@ oslist: macos executable: ThePillar.app type: default -'1126190': +"1126190": installDir: Disney Classic Games Aladdin and the Lion King launch: - config: oslist: windows executable: DisneyClassicGamesAladdinLionKing.exe type: default -'1126210': +"1126210": nameLocalized: brazilian: a máquina que RESPIRA - russian: 'Машина, которая ДЫШИТ' -'1126220': + russian: "Машина, которая ДЫШИТ" +"1126220": installDir: EasyPianoGame launch: - config: oslist: windows executable: EasyPianoGame.exe type: default -'1126230': +"1126230": installDir: dtx launch: - executable: dtx.exe type: default -'1126240': {} -'1126260': +"1126240": {} +"1126260": installDir: Serpent Fusion launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SerpentFusion.exe type: default @@ -44486,7 +43977,7 @@ oslist: macos executable: SerpentFusion.app type: default -'1126270': +"1126270": installDir: Neon Tail launch: - config: @@ -44497,28 +43988,28 @@ oslist: windows executable: NeonTail.exe type: config -'1126280': - installDir: '1942' +"1126280": + installDir: "1942" launch: - config: oslist: windows executable: 1942.exe type: none -'1126290': +"1126290": installDir: Lost launch: - config: oslist: windows executable: Lost.exe type: default -'1126300': +"1126300": installDir: DragonClash launch: - config: oslist: windows executable: DragonClash.exe type: default -'1126310': +"1126310": installDir: fxl launch: - config: @@ -44533,11 +44024,11 @@ oslist: linux executable: fxl.sh type: default -'1126320': +"1126320": installDir: Being a DIK launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: BeingADIK.exe - config: @@ -44546,42 +44037,40 @@ type: none - config: betakey: patch_testing - ownsdlc: '1807120' + ownsdlc: "1807120" description: Save transfer test - description_loc: - english: Save transfer test - executable: ./BeingADIKAlpha/BeingADIK.exe + executable: "./BeingADIKAlpha/BeingADIK.exe" type: option1 - config: - osarch: '32' + osarch: "32" oslist: windows executable: BeingADIK-32.exe -'1126340': +"1126340": installDir: Raid on Area 51 launch: - config: oslist: windows executable: WindowsNoEditor/RaidonArea51v2.exe type: default -'1126420': +"1126420": installDir: REMOTE LIFE launch: - config: oslist: windows executable: Remote_Life_1_6.exe type: default -'1126430': +"1126430": installDir: Dragon of Hongkong launch: - config: oslist: windows executable: Dragon of Hongkong.exe type: none -'1126440': +"1126440": installDir: Rogue Rocks launch: - config: - osarch: '64' + osarch: "64" oslist: linux executable: roguerocks.x86_64 type: none @@ -44589,35 +44078,35 @@ oslist: windows executable: roguerocks.exe type: none -'1126450': +"1126450": installDir: SIMPLE GAME launch: - config: oslist: windows executable: SIMPLE GAME.exe type: default -'1126470': - installDir: Jewel Match Atlantis Solitaire - Collector's Edition +"1126470": + installDir: "Jewel Match Atlantis Solitaire - Collector's Edition" launch: - config: oslist: windows description: Launch executable: JewelMatchSolitaireAtlantis.exe type: none -'1126510': +"1126510": installDir: SadGame launch: - - executable: Sad ').exe + - executable: "Sad ').exe" type: none -'1126520': {} -'1126550': - installDir: I'm from zone 51 +"1126520": {} +"1126550": + installDir: "I'm from zone 51" launch: - config: oslist: windows - executable: I'm from zone 51.exe + executable: "I'm from zone 51.exe" type: default -'1126580': +"1126580": installDir: The Captain is Dead launch: - config: @@ -44633,14 +44122,14 @@ german: Der Captain ist Tot italian: Il Capitano è Morto spanish: El Capitán está Muerto -'1126590': +"1126590": installDir: Alfelus launch: - config: oslist: windows executable: Alfelus.exe type: default -'1126600': +"1126600": installDir: Before I Forget launch: - config: @@ -44652,39 +44141,39 @@ executable: BeforeIForget_Steam.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: For 64-bit Linux executable: BeforeIForget.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: linux description: For 32-bit Linux executable: BeforeIForget.x86 type: default -'1126630': +"1126630": installDir: Elder Village launch: - config: oslist: windows executable: Elder_Village_1.exe type: none -'1126640': +"1126640": installDir: The Forgotten launch: - config: oslist: windows executable: The Forgotten.exe type: default -'1126680': +"1126680": installDir: Neonis launch: - config: oslist: windows executable: Neonis.exe type: default -'1126710': +"1126710": installDir: Hanaby the Witch launch: - config: @@ -44693,13 +44182,13 @@ type: default - config: oslist: macos - executable: hanaby2.app\\Contents\\MacOS\\hanaby2 + executable: "hanaby2.app\\\\Contents\\\\MacOS\\\\hanaby2" type: default -'1126750': +"1126750": installDir: SSMK launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: DrillLand.exe type: default @@ -44708,15 +44197,15 @@ koreana: 미스터 드릴러 드릴랜드 schinese: 爆钻小英雄 钻头乐园 tchinese: 爆鑽小英雄 鑽頭樂園 -'1126760': {} -'1126770': +"1126760": {} +"1126770": installDir: My Bones Remastered launch: - config: oslist: windows executable: My Bones Remastered.exe type: none -'1126820': +"1126820": installDir: Heroic Mercenaries launch: - config: @@ -44727,50 +44216,50 @@ oslist: linux executable: Heroic Mercenaries.x86_64 type: default -'1126840': +"1126840": installDir: 12 HOURS 2 launch: - executable: 12 HOURS 2.exe type: none -'1126850': +"1126850": installDir: Power launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Destructoid.exe type: default -'1126860': +"1126860": installDir: Nauseous Pines launch: - config: oslist: windows executable: nauseous pines.exe type: none -'1126880': +"1126880": installDir: Pixel Puzzles 4k Japan launch: - config: oslist: windows executable: Pixel Puzzles Japan 4K.exe type: none -'1126890': +"1126890": installDir: Urban Cards launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: OpenGL executable: UrbanCards.OpenGL.exe type: option1 - config: - osarch: '64' + osarch: "64" oslist: windows description: DirectX11 executable: UrbanCards.DX11.exe type: option2 -'1126900': {} -'1126950': +"1126900": {} +"1126950": installDir: Extreme Tactical Executioners launch: - config: @@ -44779,7 +44268,7 @@ type: vr - executable: Extreme Tactical Executioners.exe type: default -'1126970': +"1126970": installDir: Strazeal launch: - config: @@ -44789,28 +44278,28 @@ - config: oslist: linux executable: strazeal -'1126990': +"1126990": installDir: PBAProBowling launch: - config: oslist: windows executable: PBABowling.exe type: default -'1127010': +"1127010": installDir: Ebullition LBVR launch: - config: oslist: windows executable: EbullitionLBVR.exe type: vr -'1127030': +"1127030": installDir: ThrowTheBallInTheHole launch: - config: oslist: windows executable: ThrowTheBallIInTheHole.exe type: vr -'1127070': +"1127070": installDir: Familiar Travels launch: - config: @@ -44821,38 +44310,38 @@ oslist: macos executable: tyranoscript.app type: none -'1127100': +"1127100": installDir: PamPam Kana Students launch: - config: oslist: windows executable: PamPamKanaStudents.exe type: none -'1127120': +"1127120": installDir: R42 launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: R42 executable: R42.exe type: vr -'1127140': +"1127140": installDir: The Flower on Christmas Eve launch: - config: oslist: windows executable: TheFloweronChristmasEve.exe type: default -'1127170': +"1127170": installDir: DreamFly launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: DreamFly.exe type: othervr -'1127180': +"1127180": installDir: Robot Vacuum Simulator X launch: - config: @@ -44860,22 +44349,22 @@ description: Launch executable: RobotVacuumSimX.exe type: none -'1127190': {} -'1127200': - installDir: A Wanderer's Adventure +"1127190": {} +"1127200": + installDir: "A Wanderer's Adventure" launch: - config: oslist: windows - executable: A Wanderer's Adventure.exe + executable: "A Wanderer's Adventure.exe" type: none -'1127210': +"1127210": installDir: Mystery at Stonyford Bridge launch: - config: oslist: windows executable: MysteryatStonyfordBridge.exe type: none -'1127250': +"1127250": installDir: Deadly Maze Phase 1 launch: - config: @@ -44886,34 +44375,34 @@ oslist: macos executable: DMF1.app type: default -'1127290': +"1127290": installDir: Battle Survive Hentai launch: - executable: Battle Survive Hentai.exe type: none -'1127310': +"1127310": installDir: HelixVision launch: - config: betakey: ci_beta - osarch: '64' + osarch: "64" oslist: windows executable: HelixVision.exe type: vr -'1127320': +"1127320": installDir: Railroads launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Railroads.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: Railroads.exe type: default -'1127330': +"1127330": installDir: MechCube Escape launch: - config: @@ -44921,7 +44410,7 @@ executable: m-cube.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: m-cube type: default @@ -44929,27 +44418,27 @@ oslist: macos executable: m-cube.app type: default -'1127350': +"1127350": installDir: Mazes and Mages 2 launch: - config: oslist: windows - executable: builds\\win32\\mazesandmages2.exe + executable: "builds\\\\win32\\\\mazesandmages2.exe" type: default - workingdir: builds\\win32 -'1127360': + workingdir: "builds\\\\win32" +"1127360": installDir: Cup Of Ethanol launch: - config: oslist: windows executable: CupOfEthanolFNA.exe type: default -'1127380': {} -'1127400': +"1127380": {} +"1127400": installDir: Mindustry launch: - config: - osarch: '64' + osarch: "64" oslist: linux executable: Mindustry type: default @@ -44961,15 +44450,15 @@ oslist: macos executable: Mindustry.app/Contents/MacOS/Mindustry type: default -'1127460': +"1127460": installDir: ModandPlay launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ModandPlay.exe type: none -'1127470': +"1127470": installDir: Skater Frog launch: - config: @@ -44978,16 +44467,16 @@ type: default - config: oslist: macos - executable: Skater Frog 1.1.0.app\\Contents\\MacOS\\Skater Frog 1.1.0 + executable: "Skater Frog 1.1.0.app\\\\Contents\\\\MacOS\\\\Skater Frog 1.1.0" type: default -'1127480': - installDir: What's Left +"1127480": + installDir: "What's Left" launch: - config: oslist: windows executable: RPG_RT.exe type: default -'1127500': +"1127500": installDir: Mini Motorways launch: - config: @@ -44998,37 +44487,37 @@ oslist: macos executable: Mini Motorways.app/Contents/MacOS/Mini Motorways type: default -'1127520': +"1127520": installDir: TREE HOUSE AVOCADO MAYHEM launch: - config: oslist: windows executable: TH_AVOCADO_MAYHEM.exe type: default -'1127540': - installDir: Eden's Ritter - Paladins of Ecstasy +"1127540": + installDir: "Eden's Ritter - Paladins of Ecstasy" launch: - executable: er_paladins.exe type: default - - arguments: '--noachieve' + - arguments: "--noachieve" description: (Achievements disabled) executable: er_paladins.exe type: option1 -'1127560': +"1127560": installDir: Flip Polygon launch: - config: oslist: windows executable: Flip Polygon.exe type: none -'1127580': +"1127580": installDir: Smaller launch: - config: oslist: windows executable: Smaller.exe type: default -'1127610': +"1127610": installDir: Iris and the giant launch: - config: @@ -45046,13 +44535,13 @@ nameLocalized: japanese: イリスと巨人 schinese: 爱丽丝与巨人 -'1127620': +"1127620": installDir: ByLo launch: - executable: ByLo.exe type: none -'1127640': {} -'1127680': +"1127640": {} +"1127680": installDir: Hypnocult launch: - config: @@ -45063,27 +44552,27 @@ oslist: windows executable: hypnocult.exe type: none -'1127690': +"1127690": installDir: Winter Magic Factory launch: - config: oslist: windows executable: WinterMagic.exe type: default -'1127700': +"1127700": nameLocalized: sc_schinese: 逆向坍塌:面包房行动 schinese: 逆向坍塌:面包房行动 -'1127730': +"1127730": installDir: Animal Up! launch: - config: oslist: windows executable: nw.exe type: none -'1127760': {} -'1127810': {} -'1127820': +"1127760": {} +"1127810": {} +"1127820": installDir: Repressed launch: - config: @@ -45098,22 +44587,22 @@ oslist: macos executable: Repressed.app type: default -'1127840': - installDir: Landlord's Super +"1127840": + installDir: "Landlord's Super" launch: - config: oslist: windows executable: LandlordsSuper.exe type: none -'1127850': +"1127850": installDir: Apple Slash launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Apple Slash.exe type: default -'1127920': +"1127920": installDir: Loser Reborn launch: - config: @@ -45125,12 +44614,12 @@ japanese: ルーザーリボーン schinese: 废柴转生 tchinese: 魯蛇轉生 -'1127930': +"1127930": installDir: My Bike launch: - executable: My Bike.exe type: none -'1127940': +"1127940": installDir: Dimensions VIP launch: - config: @@ -45141,8 +44630,8 @@ oslist: macos executable: DimensionsVIPMacSTEAM.app type: default -'1127950': {} -'1127970': +"1127950": {} +"1127970": installDir: Retro Machina launch: - config: @@ -45153,22 +44642,22 @@ koreana: 레트로 마키나 schinese: 复古机械城 tchinese: 復古機器人 -'1127980': +"1127980": installDir: NASCAR Heat 4 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: NASCARHeat4.exe type: default - - arguments: '-MGI-reset-graphics-settings' + - arguments: "-MGI-reset-graphics-settings" config: - osarch: '64' + osarch: "64" oslist: windows description: Reset Graphic Settings executable: NASCARHeat4.exe type: none -'11280': +"11280": installDir: Penguins Arena launch: - config: @@ -45178,28 +44667,28 @@ oslist: macos description: Launch executable: Penguins Arena.app -'1128000': +"1128000": installDir: Cube World launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Dev executable: cubeworld.exe type: default -'1128010': +"1128010": installDir: Zoological Era II launch: - config: oslist: windows executable: Zoological Era II.exe type: default -'1128100': +"1128100": installDir: ZeroZone2020 launch: - executable: ZZ.exe type: default -'1128140': +"1128140": installDir: Under launch: - config: @@ -45209,16 +44698,16 @@ nameLocalized: schinese: 深渊之下 tchinese: 深淵之下 -'1128150': +"1128150": installDir: SaidannoHana launch: - - arguments: '-shipping' + - arguments: "-shipping" config: - osarch: '64' + osarch: "64" oslist: windows executable: EstGame.exe type: none -'1128160': +"1128160": installDir: Saturday of Piercing Screams launch: - config: @@ -45226,7 +44715,7 @@ executable: samozbor-revolution.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: samozbor-revolution.x86_64 type: default @@ -45236,24 +44725,24 @@ type: none nameLocalized: russian: Суббота Звонких Голосов -'1128170': +"1128170": installDir: PowerStealers launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: PowerStealers\\PowerStealers.exe + executable: "PowerStealers\\\\PowerStealers.exe" type: none -'1128180': +"1128180": installDir: CROSSNIQ+ launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: CROSSNIQ+.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: CROSSNIQ+.x86_64 type: default @@ -45261,53 +44750,53 @@ oslist: macos executable: CROSSNIQ+.app type: default -'1128190': +"1128190": installDir: Achievement Simulator launch: - executable: Achievement Simulator.exe type: default -'1128200': +"1128200": installDir: Ginga Kagekidan - 放課後くるーずっ! launch: - executable: Ginga Kagekidan.exe type: vr -'1128210': +"1128210": installDir: Orion13 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: O13_OPT.exe type: vr -'1128220': +"1128220": installDir: ZAAM launch: - config: oslist: windows executable: ZAAM.exe type: default -'1128260': - installDir: 'The Princess, the Stray Cat, and Matters of the Heart 2' +"1128260": + installDir: "The Princess, the Stray Cat, and Matters of the Heart 2" launch: - config: oslist: windows executable: noratoto2.exe type: default -'1128270': +"1128270": installDir: Whack A Hoe launch: - config: oslist: windows executable: Whack A Hoe.exe type: default -'1128280': +"1128280": installDir: IGOR MAKS The Meme Lord launch: - config: oslist: windows executable: imtml.exe type: none -'1128310': +"1128310": installDir: Koi Unleashed launch: - config: @@ -45318,28 +44807,28 @@ oslist: linux executable: Koi_Unleashed type: default -'1128330': +"1128330": installDir: Celestial launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Celestial.exe type: default -'1128360': {} -'1128370': +"1128360": {} +"1128370": installDir: Try again! launch: - executable: ta!.exe type: default -'1128380': +"1128380": installDir: Block Tuner launch: - config: oslist: windows executable: player.exe type: default -'1128420': +"1128420": installDir: Solitaire Jack Frost Winter Adventures launch: - config: @@ -45350,18 +44839,18 @@ oslist: macos executable: Solitaire Jack Frost Winter Adventures.app type: default -'1128430': - installDir: Solitaire Match 2 Cards. Valentine's Day +"1128430": + installDir: "Solitaire Match 2 Cards. Valentine's Day" launch: - config: oslist: windows - executable: Solitaire Match 2 Cards. Valentine's Day.exe + executable: "Solitaire Match 2 Cards. Valentine's Day.exe" type: default - config: oslist: macos - executable: Solitaire Match 2 Cards. Valentine's Day.app + executable: "Solitaire Match 2 Cards. Valentine's Day.app" type: default -'1128440': +"1128440": installDir: Solitaire Legend of the Pirates launch: - config: @@ -45372,7 +44861,7 @@ oslist: macos executable: Solitaire Legend of the Pirates.app type: default -'1128450': +"1128450": installDir: GuangYuAn launch: - config: @@ -45383,7 +44872,7 @@ english: 光與暗之戀曲 schinese: 光与暗之恋曲 tchinese: 光與暗之戀曲 -'1128480': +"1128480": installDir: Nice Jumper launch: - config: @@ -45395,23 +44884,23 @@ executable: NiceJumper.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: NiceJumper.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: NiceJumper.x86_64 type: default -'1128520': +"1128520": installDir: Rezist Tower Defense launch: - config: oslist: windows executable: Rezist Tower Defense.exe type: default -'1128570': +"1128570": installDir: Weeping Willow launch: - config: @@ -45426,34 +44915,34 @@ oslist: macos executable: WeepingWillow.app type: default -'1128610': +"1128610": installDir: Affinity launch: - config: oslist: windows - executable: windows_content\\BoldBrushProject.exe + executable: "windows_content\\\\BoldBrushProject.exe" type: none -'1128630': +"1128630": installDir: Cross Country Express - An Oddfellows Mini launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: nw.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: nw.exe type: default -'1128650': +"1128650": installDir: The Refuge launch: - config: oslist: windows executable: TheRefuge.exe type: none -'1128660': +"1128660": installDir: Roots Of The Woods launch: - config: @@ -45461,14 +44950,14 @@ oslist: windows executable: Roots of the Woods.exe type: default -'1128680': +"1128680": installDir: DOUBLE INVASION!! launch: - config: oslist: windows executable: DOUBLE INVASION!!.exe type: default -'1128690': +"1128690": installDir: Plunge launch: - config: @@ -45479,19 +44968,19 @@ oslist: macos executable: Plunge.app type: default -'1128740': {} -'1128770': +"1128740": {} +"1128770": installDir: Use Your Brain! launch: - config: oslist: windows executable: UseYourBrain.exe type: default -'1128810': +"1128810": installDir: RISK Global Domination launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: RISK.exe type: default @@ -45499,7 +44988,7 @@ oslist: macos executable: RISK.app type: default -'1128830': +"1128830": installDir: 1001 Jigsaw Europe launch: - config: @@ -45510,7 +44999,7 @@ oslist: macos executable: 1001 Jigsaw World Tour Europe.app type: default -'1128840': +"1128840": installDir: Solitaire Victorian Picnic launch: - config: @@ -45521,15 +45010,15 @@ oslist: macos executable: Solitaire Victorian Picnic.app type: default -'1128860': {} -'1128890': +"1128860": {} +"1128890": installDir: Light Trail Rush launch: - config: oslist: windows executable: Light Trail Rush.exe type: none -'1128900': +"1128900": installDir: Live Desktop Beauty launch: - config: @@ -45539,28 +45028,28 @@ nameLocalized: schinese: 桌面女郎 tchinese: 桌面女郎 -'1128910': +"1128910": installDir: Magic Quest TCG launch: - config: oslist: macos - executable: MagicQuest.app\\Contents\\MacOS\\MagicQuest + executable: "MagicQuest.app\\\\Contents\\\\MacOS\\\\MagicQuest" type: default - config: oslist: windows executable: MagicQuest/MagicQuest.exe type: default -'1128920': +"1128920": installDir: EVERSPACE™ 2 launch: - - arguments: '-dx11' + - arguments: "-dx11" config: - osarch: '64' + osarch: "64" oslist: windows executable: Everspace2.exe type: default -'1128950': {} -'1129010': +"1128950": {} +"1129010": installDir: Dress-up Traveller launch: - config: @@ -45570,7 +45059,7 @@ nameLocalized: japanese: ドレスアップトラベラー tchinese: 裝扮旅人 -'1129030': +"1129030": installDir: Endless Fables 4 launch: - config: @@ -45579,13 +45068,13 @@ executable: EndlessFables4.exe type: none - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: EndlessFables4_i386 type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: EndlessFables4_amd64 @@ -45595,18 +45084,18 @@ description: Launch executable: EndlessFables4.app/Contents/MacOS/EndlessFables4 type: none -'1129080': +"1129080": installDir: Forex Demo Accelerator launch: - config: oslist: windows executable: Trading_Game.exe type: default -'1129090': +"1129090": installDir: Sticky Paws launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Sticky Paws.exe type: default @@ -45619,26 +45108,26 @@ executable: StickyPaws.app type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: Sticky Paws32.exe type: default -'1129110': +"1129110": installDir: Magistrangers launch: - config: oslist: windows executable: AppMain.exe type: default -'1129150': {} -'1129180': +"1129150": {} +"1129180": installDir: Glitch Puzzle launch: - config: oslist: windows executable: Glitch Puzzle.exe type: none -'1129190': +"1129190": installDir: Our Life Beginnings And Always launch: - config: @@ -45649,46 +45138,46 @@ oslist: linux executable: OurLife.sh type: none -'1129200': +"1129200": installDir: MinesweepWorld launch: - config: oslist: windows executable: Minesweeper.exe type: default -'1129220': - installDir: "BEARS, VODKA, BALALAIKA! \U0001F43B" +"1129220": + installDir: "BEARS, VODKA, BALALAIKA! 🐻" launch: - config: oslist: windows - executable: 'BEARS, VODKA, BALALAIKA!.exe' + executable: "BEARS, VODKA, BALALAIKA!.exe" type: default - config: oslist: macos - executable: 'BEARS, VODKA, BALALAIKA!.app\\Contents\\MacOS\\BEARS, VODKA, BALALAIKA!' + executable: "BEARS, VODKA, BALALAIKA!.app\\\\Contents\\\\MacOS\\\\BEARS, VODKA, BALALAIKA!" type: default - config: oslist: linux - executable: 'BEARS, VODKA, BALALAIKA!.x86_64' + executable: "BEARS, VODKA, BALALAIKA!.x86_64" type: default -'1129230': +"1129230": installDir: Luna Sanctus launch: - config: oslist: windows executable: nw.exe type: default -'1129240': +"1129240": installDir: Mystic Mayhem Unleashed launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Windows Version of Game executable: Mystic Mayhem Unleashed.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: Linux Version of Game executable: MysticMayhemUnleashedFullLinux.x86_64 @@ -45698,18 +45187,18 @@ description: Mac OS version of Game executable: MysticMayhemUnleashedFullOSX.app/Contents/MacOS/MysticMayhemUnleashedFullOSX type: default -'1129250': +"1129250": installDir: NEKO-NIN exHeart 3 launch: - config: oslist: windows executable: nekonin3.exe type: default -'1129310': +"1129310": installDir: Receiver 2 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Receiver2.exe type: default @@ -45718,41 +45207,41 @@ executable: Receiver2.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Receiver2 type: default -'1129330': +"1129330": installDir: Spark & Sparkle launch: - config: oslist: windows executable: Spark & Sparkle.exe type: default -'1129340': {} -'1129350': +"1129340": {} +"1129350": installDir: Murgles launch: - config: oslist: windows executable: Murgles.exe type: default -'1129410': +"1129410": installDir: The Shattered Blade launch: - config: oslist: windows executable: The Shattered Blade.exe type: default -'1129480': +"1129480": installDir: El Culto launch: - config: oslist: windows executable: Game.exe type: default -'1129520': {} -'1129540': +"1129520": {} +"1129540": installDir: Orc Massage launch: - executable: OrcMassage.exe @@ -45761,14 +45250,14 @@ japanese: オークマッサージ schinese: 欧克按摩店 tchinese: 獸人按摩店 -'1129550': +"1129550": installDir: edataconsulting VR Office launch: - config: oslist: windows executable: VrOffice.exe type: vr -'1129580': +"1129580": installDir: Medieval Dynasty launch: - config: @@ -45777,7 +45266,7 @@ type: none nameLocalized: schinese: 中世纪王朝 -'1129610': +"1129610": installDir: Book Seeker launch: - executable: Book Seeker.exe @@ -45786,14 +45275,14 @@ english: Book Seeker schinese: 寻书人 tchinese: 尋書人 -'1129650': +"1129650": installDir: Lodestone launch: - config: oslist: windows executable: Lodestone.exe type: vr -'1129660': +"1129660": installDir: Runefall 2 launch: - config: @@ -45808,88 +45297,86 @@ oslist: linux executable: Runefall2CE.x86_64 type: default -'1129670': - installDir: They'll Find You +"1129670": + installDir: "They'll Find You" launch: - config: oslist: windows - executable: They'llFindYou.exe + executable: "They'llFindYou.exe" type: default - config: oslist: macos - executable: They'llFindYou.exe + executable: "They'llFindYou.exe" type: default - config: oslist: linux - executable: They'llFindYou.exe + executable: "They'llFindYou.exe" type: default -'1129680': +"1129680": installDir: GraFi 3 launch: - config: oslist: windows executable: GraFi 3.exe type: default -'1129690': +"1129690": installDir: 3x64 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: 3x64.exe type: default - arguments: +x config: - osarch: '64' + osarch: "64" oslist: linux executable: 3x64.x86_64 type: none - config: oslist: macos description: MacOS - description_loc: - english: MacOS executable: build.app/Contents/MacOS/3x64 type: default -'1129700': +"1129700": installDir: Synzzball launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Synzzball.exe type: default -'1129710': +"1129710": installDir: Unreal Drone Racing launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: UDRacing.exe type: none -'1129720': +"1129720": installDir: Area 51 Defense launch: - config: - osarch: '64' + osarch: "64" oslist: windows - description: Launch 'Area 51 Defense' + description: "Launch 'Area 51 Defense'" executable: Area 51 Defense.exe type: default -'1129730': +"1129730": installDir: Lost Existence launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: LostExistence.exe type: none -'1129810': +"1129810": installDir: Standball launch: - executable: Standball.exe type: default -'1129920': +"1129920": installDir: Tales From Off-Peak City launch: - config: @@ -45904,7 +45391,7 @@ oslist: linux executable: Tales From Off-Peak City Vol. 1.x86_64 type: default -'113020': +"113020": installDir: Monaco launch: - config: @@ -45916,7 +45403,7 @@ - config: oslist: linux executable: Monaco.bin.x86 -'1130390': +"1130390": installDir: DESOLATIUM launch: - config: @@ -45924,24 +45411,24 @@ executable: Desolatium.exe type: default nameLocalized: - spanish: 'Desolatium: Demo' -'1130400': + spanish: "Desolatium: Demo" +"1130400": installDir: Symmetry launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: Symmetry.exe type: none -'1130410': +"1130410": installDir: Cyber Hook launch: - config: oslist: windows executable: CyberHook.exe type: default -'1130430': +"1130430": installDir: Escape from Chernobyl Jailbreak launch: - config: @@ -45956,7 +45443,7 @@ oslist: linux executable: jailbreak type: default -'1130440': +"1130440": installDir: 10 Second Shuriken launch: - config: @@ -45967,139 +45454,133 @@ oslist: linux executable: 10ss.sh type: none -'1130510': +"1130510": installDir: Floaty Fighters launch: - config: oslist: windows executable: Floaty Fighters.exe type: none -'1130560': +"1130560": installDir: RPG NPC Simulator VR launch: - config: oslist: windows executable: RPG NPC Simulator.exe type: vr -'1130570': +"1130570": installDir: The Sword and the Slime launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: theswordandtheslime.exe type: default -'1130590': - installDir: Aleesha's Tower +"1130590": + installDir: "Aleesha's Tower" launch: - config: oslist: windows - executable: Aleesha's Tower.exe + executable: "Aleesha's Tower.exe" type: default -'1130620': +"1130620": installDir: Aka Manto 赤マント launch: - executable: Aka Manto.exe type: none -'1130640': {} -'1130660': +"1130640": {} +"1130660": installDir: Tiger Fighter 1931 Tora!Tora! launch: - config: oslist: windows executable: game.exe type: default -'1130700': +"1130700": installDir: AVABEL ONLINE launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: client.exe type: default -'1130710': +"1130710": installDir: Bookbound Brigade launch: - config: oslist: windows executable: Bookbound Brigade.exe type: default -'1130720': +"1130720": installDir: Watch Tower launch: - config: oslist: windows executable: Watch Tower.exe type: default -'1130760': {} -'1130820': {} -'1130880': +"1130760": {} +"1130820": {} +"1130880": installDir: Absolute Territory launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Absolute Territory - description_loc: - english: Absolute Territory executable: Standard/Absolute Territory.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows description: Absolute Territory - description_loc: - english: Absolute Territory executable: VR/Absolute Territory.exe type: vr -'1130900': +"1130900": installDir: story of a servant maid launch: - config: oslist: windows executable: krkr.exe type: default -'1130940': {} -'1130970': +"1130940": {} +"1130970": installDir: The Yellow Ladder launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: theyellowladder_executable.exe type: default -'1130990': +"1130990": installDir: Roman Adventures Season2 launch: - config: oslist: windows executable: Roman Adventures Season2.exe type: default -'1131000': {} -'1131110': +"1131000": {} +"1131110": installDir: Orbitblazers launch: - config: oslist: windows executable: Orbitblazers.exe type: default -'1131160': +"1131160": installDir: Civil launch: - config: betakey: default - osarch: '64' + osarch: "64" oslist: windows executable: Civil.exe type: default - config: betakey: dev_build description: Dev Build - description_loc: - english: Dev Build executable: launcher.exe type: none -'1131190': +"1131190": installDir: Nerts Online launch: - config: @@ -46114,15 +45595,15 @@ oslist: linux executable: NertsOnline type: default -'1131210': +"1131210": installDir: Mage Math launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Mathemagus.exe type: default -'1131230': +"1131230": installDir: Dominos! launch: - config: @@ -46133,22 +45614,22 @@ oslist: linux executable: Dominos.x86_64 type: default -'1131240': +"1131240": installDir: Dungeons of Edera launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: DoE.exe type: default -'1131270': +"1131270": installDir: Zombie Golf launch: - config: oslist: windows executable: Zombie Golf.exe type: none -'1131280': +"1131280": installDir: jwzzs2 launch: - config: @@ -46156,7 +45637,7 @@ oslist: windows executable: game.exe type: default -'1131290': +"1131290": installDir: Zeta Flyff launch: - arguments: serius @@ -46168,23 +45649,23 @@ english: Zeta Flyff latam: Zeta Flyff spanish: Zeta Flyff -'1131330': +"1131330": installDir: Lady and Blade launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: LadynBlade.exe type: none -'1131360': +"1131360": installDir: Tiger Fighter 1931 Tora!Tora!Tora! launch: - config: oslist: windows executable: game.exe type: default -'1131390': {} -'1131400': +"1131390": {} +"1131400": installDir: Project RIP launch: - config: @@ -46197,28 +45678,28 @@ type: default - config: oslist: macos - executable: RIP.app\\Contents\\MacOS\\RIP + executable: "RIP.app\\\\Contents\\\\MacOS\\\\RIP" type: default -'1131420': +"1131420": installDir: For a Better Country launch: - config: oslist: windows executable: forabettercountry.exe type: default -'1131430': +"1131430": installDir: Parachronism Order of Chaos launch: - config: oslist: windows executable: Parachronism Order of Chaos.exe type: default -'1131450': +"1131450": installDir: Above Earth launch: - executable: AboveEarth.exe type: default -'1131460': +"1131460": installDir: JimmysJourney launch: - config: @@ -46226,42 +45707,42 @@ description: Launch executable: Jimmy.exe type: config -'1131490': +"1131490": installDir: Wandering Gem Jockeying launch: - config: oslist: windows executable: wangemjoc.exe type: default -'1131520': +"1131520": installDir: Trial And Terror launch: - config: oslist: windows executable: Trial And Terror.exe type: default -'1131530': +"1131530": installDir: Dum-Dum launch: - config: oslist: windows executable: dumdum.exe type: default -'1131540': +"1131540": installDir: My Light In The Dark launch: - config: oslist: windows executable: Game.exe type: default -'1131580': +"1131580": installDir: Penguins vs Bugs launch: - config: oslist: windows executable: PvB.exe type: none -'1131590': +"1131590": installDir: Aegis Online launch: - config: @@ -46270,13 +45751,13 @@ type: default - config: oslist: macos - executable: Contents\\MacOS\\Aegis Online + executable: "Contents\\\\MacOS\\\\Aegis Online" type: default - config: oslist: linux executable: Aegis Online.x86_64 type: default -'1131640': +"1131640": installDir: Climatic Survival Northern Storm launch: - config: @@ -46285,25 +45766,25 @@ executable: Climatic_Survival_Northern_Storm.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: Linux x64 executable: CSNS.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: CSNS.x86 type: default -'1131650': {} -'1131660': +"1131650": {} +"1131660": installDir: The Ai Games launch: - config: oslist: windows executable: The_AI_Games.exe type: default -'1131670': +"1131670": installDir: Justin Wack and the Big Time Hack launch: - config: @@ -46311,33 +45792,33 @@ executable: Justin Wack and the Big Time Hack.exe - config: oslist: macos - executable: Justin Wack and the Big Time Hack.app\\Contents\\MacOS\\Justin Wack and the Big Time Hack + executable: "Justin Wack and the Big Time Hack.app\\\\Contents\\\\MacOS\\\\Justin Wack and the Big Time Hack" - config: oslist: linux executable: Justin Wack and the Big Time Hack.x86_64 -'1131680': +"1131680": installDir: PPDD launch: - config: oslist: windows executable: PPDD.exe type: default -'1131690': +"1131690": installDir: Xentripetal Force launch: - config: oslist: windows executable: Xentripetal Force.exe type: default -'1131720': +"1131720": installDir: PropandSeek launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: PropandSeek.exe type: default -'1131740': +"1131740": installDir: Qing Xiang launch: - config: @@ -46346,11 +45827,11 @@ type: default - config: oslist: macos - executable: Qing Xiang.app\\Contents\\MacOS\\Qing Xiang + executable: "Qing Xiang.app\\\\Contents\\\\MacOS\\\\Qing Xiang" type: default nameLocalized: schinese: 青箱 -'1131750': +"1131750": installDir: Alien Squatter launch: - config: @@ -46365,21 +45846,21 @@ oslist: linux executable: asquatter type: none -'1131770': {} -'1131780': +"1131770": {} +"1131780": installDir: Mustache or Revenge launch: - - executable: MoR\\Binaries\\Win64\\MoR-Win64-Shipping.exe + - executable: "MoR\\\\Binaries\\\\Win64\\\\MoR-Win64-Shipping.exe" type: none -'1131790': - installDir: 'Injection π23 ''No Name, No Number''' +"1131790": + installDir: "Injection π23 'No Name, No Number'" launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: InjectionPi23 NNNN (PC-STEAM)\\InjectionPi23 NNNN (PC-STEAM).exe + executable: "InjectionPi23 NNNN (PC-STEAM)\\\\InjectionPi23 NNNN (PC-STEAM).exe" type: default -'1131800': +"1131800": installDir: Pixel Puzzle Makeout League launch: - config: @@ -46390,38 +45871,38 @@ oslist: macos executable: ppml.app type: default -'1131810': +"1131810": installDir: Gordon Streaman launch: - executable: Gordon Streaman.exe type: none -'1131820': +"1131820": installDir: Pixel Monsters Survival launch: - executable: Pixel Monsters Survival.exe type: none -'1131830': +"1131830": installDir: Crazy Snail launch: - executable: game.exe type: none -'1131840': +"1131840": installDir: Pentaball launch: - executable: Pentaball.exe type: default -'1131870': +"1131870": installDir: Evergreen Blues launch: - config: oslist: windows - executable: Evergreen Blues - Windows\\Evergreen Blues.exe + executable: "Evergreen Blues - Windows\\\\Evergreen Blues.exe" type: none - config: oslist: macos executable: Evergreen Blues - Mac/Evergreen Blues.app type: none -'1131880': +"1131880": installDir: Henry Mosse and the Wormhole Conspiracy launch: - config: @@ -46432,11 +45913,11 @@ oslist: windows executable: HMatWC.exe type: default -'1131900': +"1131900": installDir: 3rd eye launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: 3rdeye.exe type: none @@ -46444,11 +45925,11 @@ oslist: macos executable: 3rdeye.app type: none -'1131930': +"1131930": installDir: BARRICADEZ launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: BARRICADEZ.exe type: default @@ -46456,21 +45937,21 @@ oslist: macos executable: BARRICADEZ.app type: default -'1131940': +"1131940": installDir: Jailbreak Simulator launch: - config: oslist: windows executable: Jailbreak.exe type: default -'1131960': +"1131960": installDir: Magic Ganglia launch: - config: oslist: windows executable: MagicGanglia.exe type: default -'113200': +"113200": installDir: The Binding Of Isaac launch: - config: @@ -46479,7 +45960,7 @@ - config: oslist: macos executable: Isaac.app -'1132010': +"1132010": installDir: Hentai Chess Knight launch: - config: @@ -46490,7 +45971,7 @@ oslist: macos executable: hck.app type: default -'1132030': +"1132030": installDir: Trash Sailors launch: - config: @@ -46498,18 +45979,18 @@ executable: Trash Sailors.exe type: default nameLocalized: - schinese: '垃圾水手 ' -'1132050': + schinese: "垃圾水手 " +"1132050": installDir: TheMovingMaze launch: - - executable: \\TheMovingMaze\\TheMovingMaze.exe + - executable: "\\\\TheMovingMaze\\\\TheMovingMaze.exe" type: default -'1132070': - installDir: '5.0' +"1132070": + installDir: "5.0" launch: - executable: 5.0.exe type: none -'1132090': +"1132090": installDir: Silk launch: - config: @@ -46518,14 +45999,14 @@ type: none - config: oslist: macos - executable: Silk.app\\Contents\\MacOS\\Silk + executable: "Silk.app\\\\Contents\\\\MacOS\\\\Silk" type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: Silk.x86 type: none -'1132100': +"1132100": installDir: Samurai of Hyuga Book 4 launch: - config: @@ -46540,39 +46021,39 @@ oslist: linux executable: SamuraiofHyugaBook4 type: none -'1132110': - installDir: Heaven's Grave +"1132110": + installDir: "Heaven's Grave" launch: - config: oslist: windows - executable: Heaven's_Grave.exe + executable: "Heaven's_Grave.exe" type: none -'1132120': +"1132120": installDir: Put In launch: - executable: Put in.exe type: none -'1132160': +"1132160": installDir: Mendels Garden launch: - config: oslist: windows - executable: Mendels Garden\\Mendels Garden.exe + executable: "Mendels Garden\\\\Mendels Garden.exe" type: default - config: oslist: macos - executable: Mendels Garden.app\\Contents\\MacOS\\Mendels Garden + executable: "Mendels Garden.app\\\\Contents\\\\MacOS\\\\Mendels Garden" type: default -'1132180': +"1132180": installDir: Persephone launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: Persephone Steam Win32.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: Persephone Steam Win64.exe type: default @@ -46581,39 +46062,39 @@ executable: Persephone Steam macOS.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Persephone Steam Linux64.x86_64 type: default -'1132190': +"1132190": installDir: Coloring Game The Little City launch: - executable: game.exe type: none -'1132210': +"1132210": installDir: Kingdom Under Fire 2 launch: - - arguments: '#login.kuf2.gameforge.com#25002#gf#steam#b' + - arguments: "#login.kuf2.gameforge.com#25002#gf#steam#b" description: Play Kingdom Under Fire 2 executable: KUF2SteamLauncher.exe type: none - - arguments: '#login-qa2.kuf2.gfsrv.net#25002#gf#steam#b' + - arguments: "#login-qa2.kuf2.gfsrv.net#25002#gf#steam#b" config: betakey: second description: QA2 executable: KUF2SteamLauncher.exe type: none -'1132220': +"1132220": installDir: Iridion3D launch: - executable: Iridion3d.exe type: none -'1132230': +"1132230": installDir: Iridion II launch: - executable: IridionII.exe type: none -'1132290': +"1132290": installDir: Eldritch University launch: - config: @@ -46628,17 +46109,17 @@ oslist: linux executable: Eldritch_University.sh type: default -'1132300': +"1132300": installDir: Ribbon launch: - config: oslist: windows executable: Ribbon.exe type: default -'1132360': +"1132360": installDir: Raiding Area 51 - Break out Waifu launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows executable: nw.exe @@ -46647,30 +46128,30 @@ oslist: macos executable: nwjs.app type: none -'1132410': +"1132410": installDir: Cyber OutRun launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: CyberOutRun.exe type: default -'1132450': {} -'1132460': +"1132450": {} +"1132460": installDir: Codebreaker launch: - config: oslist: windows executable: Codebreaker.exe type: default -'1132490': +"1132490": installDir: PhuckerInTheWoods launch: - config: oslist: windows executable: PhuckerInTheWoods/FuckerInTheWoodsX.exe type: default -'1132510': +"1132510": installDir: DepixtionHalloween launch: - config: @@ -46679,25 +46160,25 @@ type: default - config: oslist: macos - executable: DepixtionHalloween.app\\Contents\\MacOS\\DepixtionHalloween + executable: "DepixtionHalloween.app\\\\Contents\\\\MacOS\\\\DepixtionHalloween" type: default - config: oslist: linux executable: DepixtionHalloween.x86_64 type: default -'1132540': +"1132540": installDir: Colonies End launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ColoniesEnd.exe type: none -'1132600': +"1132600": installDir: GYATM launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch GYATM Dragon Edition executable: GYATM.exe @@ -46707,8 +46188,8 @@ description: Launch GYATM Dragon Edition executable: GYATM.sh type: default -'1132630': {} -'1132640': +"1132630": {} +"1132640": installDir: Platforms launch: - config: @@ -46716,18 +46197,18 @@ executable: Platforms.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Platforms type: default -'1132670': +"1132670": installDir: Metal Heads launch: - config: oslist: windows executable: MetalHeadsGame.exe type: default -'1132690': +"1132690": installDir: Knights of Messiah launch: - executable: Game.exe @@ -46735,7 +46216,7 @@ nameLocalized: japanese: ナイツ・オブ・メサイア ~真実の答え~ schinese: 弥赛亚骑士团 -'1132710': +"1132710": installDir: Hikari! Love Potion launch: - config: @@ -46750,7 +46231,7 @@ oslist: linux executable: LovePotion.sh type: default -'1132730': +"1132730": installDir: Knights launch: - config: @@ -46761,15 +46242,15 @@ oslist: macos executable: Knights.app type: default -'1132750': +"1132750": installDir: Buck Zombies launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Simple.exe type: default -'1132760': +"1132760": installDir: Dwerve launch: - config: @@ -46781,49 +46262,49 @@ executable: Dwerve.app/Contents/MacOS/Dwerve type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: Dwerve.x86_64 type: none nameLocalized: schinese: 战匠杜沃 -'1132830': - installDir: Poppy's Nightmare +"1132830": + installDir: "Poppy's Nightmare" launch: - - executable: Poppy's Nightmare.exe + - executable: "Poppy's Nightmare.exe" type: default -'1132840': +"1132840": installDir: RhythmSnake launch: - config: oslist: windows executable: RhythmSnake.exe type: default -'1132850': +"1132850": installDir: Try not to die launch: - config: oslist: windows executable: Squad.exe type: default -'1132860': +"1132860": installDir: Jera launch: - executable: Jera.exe type: default -'1132880': +"1132880": installDir: The Pilgrim launch: - executable: The Pilgrim.exe type: default -'1132900': +"1132900": installDir: KnifeRoad launch: - config: oslist: windows - executable: \\KnifeRoad\\KnifeRoad.exe + executable: "\\\\KnifeRoad\\\\KnifeRoad.exe" type: vr -'1132910': +"1132910": installDir: Itorah launch: - config: @@ -46836,39 +46317,39 @@ oslist: windows executable: Itorah.exe type: default -'1132970': +"1132970": installDir: Time To Stop Time launch: - executable: TimeToStopTime.exe type: none -'1132980': +"1132980": installDir: There’s no Light launch: - executable: ThereIsNoLight.exe type: default nameLocalized: japanese: There is no light ~終わりなき暗闇~ - koreana: '빛 없는 세계: There is No Light' + koreana: "빛 없는 세계: There is No Light" schinese: 无光之地 -'11330': +"11330": installDir: Obulis launch: - executable: Obulis_steam.exe -'1133040': +"1133040": installDir: Bandit Brawler launch: - config: oslist: windows executable: BanditBrawler.exe type: default -'1133050': - installDir: 'Good Night, Knight' +"1133050": + installDir: "Good Night, Knight" launch: - config: oslist: windows - executable: 'Good Night, Knight.exe' + executable: "Good Night, Knight.exe" type: default -'1133070': +"1133070": installDir: Viking Chess Hnefatafl launch: - config: @@ -46877,17 +46358,17 @@ type: default - config: oslist: macos - executable: Contents\\MacOS\\Viking Chess Hnefatafl + executable: "Contents\\\\MacOS\\\\Viking Chess Hnefatafl" type: default -'1133120': +"1133120": installDir: Ecosystem launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Ecosystem.exe type: default -'1133200': +"1133200": installDir: Escape Zolstar launch: - config: @@ -46898,7 +46379,7 @@ oslist: macos executable: Escape Zolstar.app type: default -'1133210': +"1133210": installDir: Inner launch: - config: @@ -46916,66 +46397,62 @@ description: Launch executable: Inner.x86_64 type: default -'1133230': +"1133230": installDir: Little Awesome Dudes launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: LittleAwesomeDudes.exe type: vr -'1133250': +"1133250": installDir: CULT launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: nw.exe type: default -'1133260': +"1133260": installDir: Vole Complexity launch: - config: oslist: windows executable: VoleComplexity.exe type: default -'1133310': +"1133310": installDir: Laservasion launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Old Launcher (Pre-update 2.0) - description_loc: - english: Old Launcher (Pre-update 2.0) - executable: Laservasion\\Laservasion.exe + executable: "Laservasion\\\\Laservasion.exe" type: default - config: oslist: macos - executable: Laservasion.app\\Contents\\MacOS\\Laservasion + executable: "Laservasion.app\\\\Contents\\\\MacOS\\\\Laservasion" type: default - config: - osarch: '64' + osarch: "64" oslist: linux - executable: Laservasion\\Laservasion.x86_64 + executable: "Laservasion\\\\Laservasion.x86_64" type: default - config: - osarch: '64' + osarch: "64" oslist: windows description: Update 2.0 Launcher - description_loc: - english: Update 2.0 Launcher executable: Laservasion.exe type: default -'1133320': +"1133320": installDir: Westworld Awakening launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: LabEscape\\Binaries\\Win64\\LabEscape-Win64-Shipping.exe + executable: "LabEscape\\\\Binaries\\\\Win64\\\\LabEscape-Win64-Shipping.exe" type: vr -'1133350': +"1133350": installDir: Gravity Control launch: - config: @@ -46986,7 +46463,7 @@ oslist: linux executable: Gravity Control.x86_64 type: none -'1133420': +"1133420": installDir: Hero or Villain Genesis launch: - config: @@ -47001,65 +46478,65 @@ oslist: linux executable: HeroOrVillainGenesis type: none -'1133430': +"1133430": installDir: AoC Apocalypse Open Beta launch: - - arguments: '-SteamEnabled' + - arguments: "-SteamEnabled" config: - osarch: '64' + osarch: "64" oslist: windows - ownsdlc: '1144540' + ownsdlc: "1144540" executable: Launch_Ashes.exe type: default - - arguments: '-SteamEnabled' + - arguments: "-SteamEnabled" config: - osarch: '64' + osarch: "64" oslist: windows - ownsdlc: '1144541' + ownsdlc: "1144541" executable: ApocMycomSteamLoader.exe type: default -'1133450': +"1133450": installDir: HexaTrains launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Hexa.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: launch.sh type: default - arguments: largetext=1 config: - osarch: '64' + osarch: "64" oslist: windows description: with large text executable: Hexa.exe type: option1 - arguments: largetext=1 config: - osarch: '64' + osarch: "64" oslist: linux description: with large text executable: launch.sh type: option1 -'1133470': {} -'1133510': {} -'1133530': +"1133470": {} +"1133510": {} +"1133530": installDir: Mythic Pearls launch: - config: oslist: windows executable: MythicPearls.exe type: default -'1133540': +"1133540": installDir: Grid Wars launch: - executable: GridWars.exe type: default -'1133570': +"1133570": installDir: Shining launch: - config: @@ -47067,41 +46544,41 @@ executable: Shining.app type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: Shining.exe type: default -'1133590': +"1133590": installDir: Stilt Fella launch: - config: oslist: windows executable: Stilt Fella.exe type: none -'1133610': +"1133610": installDir: 落华居 launch: - config: oslist: windows executable: Game.exe type: default -'1133700': {} -'1133730': +"1133700": {} +"1133730": installDir: Second Galaxy launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: SecondGalaxy.exe type: default -'1133760': +"1133760": installDir: CHRONO CROSS THE RADICAL DREAMERS EDITION launch: - config: oslist: windows executable: CHRONOCROSS_LAUNCHER.exe type: none -'1133770': +"1133770": installDir: Witch Halloween launch: - executable: nw.exe @@ -47117,30 +46594,30 @@ russian: Ведьмин Хэллоуин schinese: 巫婆万圣节 spanish: Bruja Halloween -'1133780': +"1133780": installDir: Bandit the game launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Bandit.exe type: default -'1133790': +"1133790": installDir: Armortale launch: - config: oslist: windows executable: Armortale.exe type: default -'1133830': {} -'1133890': +"1133830": {} +"1133890": installDir: P1R4T3S launch: - config: oslist: windows executable: P1R4T3S.exe type: none -'1133930': +"1133930": installDir: Forgotten Hill Disillusion launch: - config: @@ -47151,7 +46628,7 @@ oslist: macos executable: Forgotten Hill Disillusion.app type: default -'1133950': +"1133950": installDir: The Castle launch: - config: @@ -47163,93 +46640,93 @@ description: setup executable: winsetup.exe type: none -'1133980': +"1133980": installDir: Spirit Arena launch: - config: oslist: windows executable: Spirit Arena.exe type: default -'1133990': - installDir: 'Calm Down, Stalin - VR' +"1133990": + installDir: "Calm Down, Stalin - VR" launch: - executable: StalinVR.exe type: vr -'11340': +"11340": installDir: Larva Mortus launch: - executable: larvamortus.exe -'113400': +"113400": installDir: APB Reloaded launch: - description: Play APB Reloaded - executable: Launcher\\APBLauncher.exe -'1134000': {} -'1134020': + executable: "Launcher\\\\APBLauncher.exe" +"1134000": {} +"1134020": installDir: Sons of Ra launch: - config: oslist: windows executable: Sons of Ra.exe type: none -'1134030': +"1134030": installDir: The Paperman launch: - config: oslist: windows executable: ThePaperman.exe type: default -'1134040': - installDir: Labyrinths of the World Fools Gold Collector's Edition +"1134040": + installDir: "Labyrinths of the World Fools Gold Collector's Edition" launch: - config: oslist: windows - executable: LabyrinthsOfTheWorld_Fool'sGold_CE.exe + executable: "LabyrinthsOfTheWorld_Fool'sGold_CE.exe" type: default -'1134050': +"1134050": installDir: Head Over Heels launch: - config: oslist: windows executable: HoH.exe type: default -'1134070': +"1134070": installDir: Keeper 2119 launch: - config: oslist: windows executable: TheKeeperPrototypeUnity.exe type: default -'1134100': +"1134100": installDir: Frozenheim launch: - config: oslist: windows executable: Frozenheim.exe type: default -'1134120': +"1134120": installDir: Brutal Sports - Football launch: - config: oslist: windows executable: dosbox.exe type: default -'1134130': +"1134130": installDir: Legends launch: - config: oslist: windows executable: dosbox.exe type: default -'1134140': +"1134140": installDir: Daaang! launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Daaang!.exe type: default -'1134150': +"1134150": installDir: X Wars Deluxe launch: - config: @@ -47262,30 +46739,30 @@ type: default - config: oslist: macos - executable: XWDMac.app\\Contents\\MacOS\\X Wars Deluxe + executable: "XWDMac.app\\\\Contents\\\\MacOS\\\\X Wars Deluxe" type: default -'1134190': +"1134190": installDir: tri.Attack(); launch: - config: oslist: windows executable: tri.Attack.exe type: default -'113420': +"113420": installDir: Fallen Earth F2P launch: - executable: FEUpdater.exe -'1134200': +"1134200": installDir: Chicks and Tricks VR launch: - config: oslist: windows executable: ChicksTricksVR.exe type: vr -'1134250': +"1134250": installDir: Hexadrift launch: - - arguments: '-fullscreen' + - arguments: "-fullscreen" config: oslist: windows executable: Hexadrift.exe @@ -47294,7 +46771,7 @@ oslist: macos executable: Hexadrift.app type: default -'1134260': +"1134260": installDir: O Rei launch: - config: @@ -47303,40 +46780,40 @@ type: none nameLocalized: english: O Rei -'1134320': +"1134320": installDir: GLADOM launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: GLADOM.exe type: default -'1134370': +"1134370": installDir: Baron Fur Is Gonna Fly launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Baron.exe type: default nameLocalized: schinese: 关于天上有毛绒一边开男爵一边打飞机这件事 -'1134390': +"1134390": installDir: Voidlifted launch: - config: oslist: windows executable: Voidlifted.exe type: default -'1134440': +"1134440": installDir: Hentai Honeys Slider launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: HentaiHoneysSlider.exe type: default -'1134450': +"1134450": installDir: ALLBLACK Phase 1 launch: - config: @@ -47351,31 +46828,29 @@ oslist: linux executable: ALLBLACKPhase1-1.7-market/ALLBLACKPhase1.sh type: default -'1134470': +"1134470": installDir: Sleep Paralysis launch: - executable: SleepParalysis.exe type: editor -'1134480': +"1134480": installDir: YORG.io3 launch: - - arguments: >- - --disable-direct-composition --in-process-gpu --no-user-gesture-required - --autoplay-policy=no-user-gesture-required + - arguments: "--disable-direct-composition --in-process-gpu --no-user-gesture-required --autoplay-policy=no-user-gesture-required" config: oslist: windows executable: yorgio3.exe type: default -'1134500': +"1134500": installDir: WhiteRabbit VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: WhiteRabbit_VR.exe type: vr -'1134510': {} -'1134520': +"1134510": {} +"1134520": installDir: Dark Light launch: - config: @@ -47384,17 +46859,17 @@ type: default - config: oslist: macos - executable: DarkLight.app\\Contents\\MacOS\\DarkLight + executable: "DarkLight.app\\\\Contents\\\\MacOS\\\\DarkLight" type: default -'1134530': +"1134530": installDir: Banana Invaders launch: - config: oslist: windows executable: BananaInvaders.exe type: vr -'1134550': {} -'1134570': +"1134550": {} +"1134570": installDir: F1 2021 launch: - config: @@ -47402,14 +46877,14 @@ description: F1 2021 (DirectX 12 - Win 10 only) executable: F1_2021_dx12.exe type: option1 -'1134600': +"1134600": installDir: FOREST OF ELF launch: - config: oslist: windows executable: Forest of ELF.exe type: default -'1134630': +"1134630": installDir: Pear Quest launch: - config: @@ -47420,23 +46895,23 @@ oslist: macos executable: pearquest.app type: none -'1134640': {} -'1134650': {} -'1134700': +"1134640": {} +"1134650": {} +"1134700": installDir: Wild Terra 2 launch: - executable: Wild-Terra-2.exe type: none nameLocalized: - schinese: '荒野之地2: 新大陆 / Wild Terra 2: New Lands' -'1134730': + schinese: "荒野之地2: 新大陆 / Wild Terra 2: New Lands" +"1134730": installDir: Wetpants launch: - config: oslist: windows executable: Wetpants.exe type: vr -'1135030': +"1135030": installDir: jut launch: - config: @@ -47447,7 +46922,7 @@ oslist: macos executable: jut.app type: none -'1135040': +"1135040": installDir: Bombini launch: - config: @@ -47458,8 +46933,8 @@ oslist: macos executable: Bombini.app type: none -'1135050': - installDir: Dr. Umgebung's School of Life +"1135050": + installDir: "Dr. Umgebung's School of Life" launch: - config: oslist: windows @@ -47467,9 +46942,9 @@ type: none - config: oslist: macos - executable: Dr. Umgebung's School of Life.app + executable: "Dr. Umgebung's School of Life.app" type: none -'1135060': +"1135060": installDir: King of the Sandcastle launch: - config: @@ -47482,7 +46957,7 @@ type: none nameLocalized: french: Le Roi du Château de Sable -'1135070': +"1135070": installDir: Moeras launch: - config: @@ -47493,7 +46968,7 @@ oslist: macos executable: moeras_mac.app type: none -'1135090': +"1135090": installDir: dino game launch: - config: @@ -47504,7 +46979,7 @@ oslist: macos executable: dino game.app type: none -'1135100': +"1135100": installDir: driftwood launch: - config: @@ -47515,7 +46990,7 @@ oslist: macos executable: driftwood.app type: default -'1135110': +"1135110": installDir: Hoco Poco launch: - config: @@ -47526,7 +47001,7 @@ oslist: macos executable: HocoPoco.app type: none -'1135120': +"1135120": installDir: Tomscape launch: - config: @@ -47537,7 +47012,7 @@ oslist: macos executable: tomscape_mac.app type: none -'1135130': +"1135130": installDir: kamer launch: - config: @@ -47548,7 +47023,7 @@ oslist: macos executable: kamer.app type: none -'1135140': +"1135140": installDir: huts launch: - config: @@ -47559,7 +47034,7 @@ oslist: macos executable: huts.app type: default -'1135150': +"1135150": installDir: Zoo Packs launch: - config: @@ -47570,7 +47045,7 @@ oslist: macos executable: ZooPacks.app type: none -'1135160': +"1135160": installDir: Botanik launch: - config: @@ -47581,7 +47056,7 @@ oslist: macos executable: botanik_mac.app type: none -'1135170': +"1135170": installDir: spider ponds launch: - config: @@ -47592,7 +47067,7 @@ oslist: macos executable: spiderponds.app type: none -'1135180': +"1135180": installDir: Llama Villa launch: - config: @@ -47603,7 +47078,7 @@ oslist: macos executable: llama villa.app type: default -'1135190': +"1135190": installDir: Hoppa launch: - config: @@ -47614,7 +47089,7 @@ oslist: macos executable: hoppa_mac.app type: none -'1135200': +"1135200": installDir: soko loco launch: - config: @@ -47625,7 +47100,7 @@ oslist: macos executable: soko loco.app type: none -'1135210': +"1135210": installDir: Oh Crab! launch: - config: @@ -47636,25 +47111,25 @@ oslist: macos executable: ohcrab.app type: none -'1135240': +"1135240": installDir: Men of War Assault Squad 2 - Cold War launch: - executable: binaries/x64/as2_cw.exe type: none - config: - osarch: '64' + osarch: "64" description: Editor executable: binaries/x64/as2_cw_ed.exe type: none - - arguments: '-safe' + - arguments: "-safe" description: Safe mode executable: binaries/x64/as2_cw.exe type: none - - arguments: '-no_mods' + - arguments: "-no_mods" description: Safe mode (no mods) executable: binaries/x64/as2_cw.exe type: none -'1135260': +"1135260": installDir: TheFalconeer launch: - config: @@ -47662,76 +47137,70 @@ executable: TheFalconeer.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: SteamDeck + Linux Build - description_loc: - english: SteamDeck + Linux Build executable: TheFalconeer.x86_64 type: default nameLocalized: schinese: 空战猎鹰 tchinese: 空戰獵鷹 -'1135300': - installDir: King's Bounty II +"1135300": + installDir: "King's Bounty II" launch: - config: betakey: dev_demo - osarch: '64' + osarch: "64" oslist: windows description: Launch - description_loc: - english: Launch executable: KingsBounty2.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch - description_loc: - english: Launch executable: KingsBounty2/Binaries/Win64/KingsBounty2.exe type: default -'1135320': +"1135320": installDir: VR Kawara Wari launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: kawarawari.exe type: vr nameLocalized: japanese: VR瓦割り -'1135340': {} -'1135370': +"1135340": {} +"1135370": installDir: Star Girl Proxima launch: - executable: Star Girl Proxima.exe type: none -'1135380': +"1135380": installDir: 不可思议佣兵团 launch: - config: oslist: windows executable: IncredibleCrewPC.exe type: default -'1135400': +"1135400": installDir: Captain fly and sexy students launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: captain fly.exe type: default -'1135410': +"1135410": installDir: Hentai Girl Slide Puzzle launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows executable: Hentai Girl Slide Puzzle.exe type: default -'1135450': +"1135450": installDir: Psy High 2 High Summer launch: - config: @@ -47746,33 +47215,33 @@ oslist: linux executable: PsyHigh2HighSummer type: none -'1135480': +"1135480": installDir: Protect Your Fool launch: - config: oslist: windows executable: Protect Your Fool.exe type: default -'1135570': +"1135570": installDir: Martian Law launch: - config: oslist: windows executable: MartianLaw.exe type: default -'1135680': +"1135680": installDir: Hard Love - Darkest Desire launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows executable: Game.exe type: default -'1135690': +"1135690": installDir: Unpacking launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Unpacking.exe type: default @@ -47781,39 +47250,39 @@ executable: unpacking_osx.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: unpacking.x86_64 type: default nameLocalized: japanese: Unpacking アンパッキング koreana: Unpacking 언패킹 -'1135700': {} -'1135710': +"1135700": {} +"1135710": installDir: Peace Restored launch: - config: oslist: windows - executable: WindowsNoEditor\\Tutorial1.exe + executable: "WindowsNoEditor\\\\Tutorial1.exe" type: none -'1135730': +"1135730": installDir: Zebra Logic Master launch: - executable: nw.exe type: none -'1135750': +"1135750": installDir: Return to Earth launch: - executable: RtE.exe type: none -'1135800': +"1135800": installDir: Tiger Fighter 1931 Sunset launch: - config: oslist: windows executable: game.exe type: default -'1135810': +"1135810": installDir: Vault of the Void launch: - config: @@ -47822,7 +47291,7 @@ type: default nameLocalized: schinese: Vault of the Void / 虚空穹牢 -'1135830': +"1135830": installDir: Brave Alchemist Colette launch: - executable: Game.exe @@ -47831,8 +47300,8 @@ japanese: 錬金術師コレットの物語 schinese: 炼金术士柯蕾特:精华炼成物语 tchinese: 煉金術士柯蕾特:精華煉成物語 -'1135850': {} -'1135860': +"1135850": {} +"1135860": installDir: Corpoct launch: - config: @@ -47843,7 +47312,7 @@ oslist: macos executable: Corpoct.app type: default -'11360': +"11360": installDir: Chains launch: - config: @@ -47852,61 +47321,59 @@ - config: oslist: macos executable: Chains.app -'1136010': +"1136010": installDir: FeArea Battle Royale launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: FeareaBR.exe type: default -'1136020': +"1136020": installDir: Cannibal Cuisine launch: - config: oslist: windows executable: Cannibal Cuisine.exe type: none -'1136030': +"1136030": installDir: Apple Pop launch: - config: oslist: windows executable: ApplePop.exe type: default -'1136040': +"1136040": installDir: ReThink 3 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: RT3.exe type: none -'1136070': +"1136070": installDir: UltraGoodness 2 launch: - config: oslist: windows description: launch - description_loc: - english: launch executable: UltraGoodness2.exe type: default -'1136080': +"1136080": installDir: 8 Eyes launch: - config: oslist: windows executable: 8 eyes.exe type: default -'1136090': +"1136090": installDir: The Gadget Twins launch: - config: oslist: windows executable: gadget twins.exe type: default -'1136100': +"1136100": installDir: Escape Mouse Gun launch: - config: @@ -47917,7 +47384,7 @@ oslist: macos executable: Mousegun.app type: default -'1136110': +"1136110": installDir: Hidden Objects - The Mystery House launch: - config: @@ -47925,124 +47392,124 @@ description: Hidden Objects - The Mystery House executable: Hidden Objects The Mystery House.exe type: option1 -'1136160': +"1136160": installDir: Internet Cafe Simulator launch: - - executable: \\windows_content\\Internet Cafe Simulator.exe + - executable: "\\\\windows_content\\\\Internet Cafe Simulator.exe" type: none -'1136240': +"1136240": installDir: Crowd Control launch: - config: oslist: windows executable: CrowdControl.exe type: default -'1136250': +"1136250": installDir: Forep Man launch: - config: oslist: windows executable: Forep Man.exe type: default -'1136290': {} -'1136330': +"1136290": {} +"1136330": installDir: Hazumi and the Pregnation launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows - executable: PPLSS\\Game.exe + executable: "PPLSS\\\\Game.exe" type: none nameLocalized: japanese: はづみと子作りの国 -'1136370': +"1136370": installDir: Bear and Breakfast launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: BearAndBreakfast.exe type: default -'1136390': - installDir: 'Strange Passion - My Boss, My Mistress' +"1136390": + installDir: "Strange Passion - My Boss, My Mistress" launch: - executable: StrangePassion.exe type: default -'1136440': +"1136440": installDir: HENTAI ARENA HOLY PUSSY launch: - executable: Hentai Arena.exe type: none -'1136470': +"1136470": installDir: Aspects of change launch: - config: oslist: windows executable: horoscopo2.exe type: none -'1136680': +"1136680": installDir: Buildingkiller launch: - config: oslist: windows executable: BuildingKiller.exe type: none -'1136710': {} -'1136760': {} -'1136770': +"1136710": {} +"1136760": {} +"1136770": installDir: Maze launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: MazeAdventure.exe type: default nameLocalized: english: Maze schinese: 迷宫 -'1136790': +"1136790": installDir: Draconic Route launch: - config: oslist: windows executable: DraconicRoute.exe type: default -'1136820': +"1136820": installDir: Someone Cloned The President launch: - config: oslist: windows executable: player.exe type: none -'1136830': +"1136830": installDir: Deep Race Battle launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: CarBattle.exe type: default -'1136880': +"1136880": installDir: Baby Walking Simulator launch: - config: oslist: windows executable: Baby Walking Simulator.exe type: none -'1136900': +"1136900": installDir: PunicWars launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ポエニ戦争.exe type: default - - arguments: '-screen-width 1778 -screen-height 1000' + - arguments: "-screen-width 1778 -screen-height 1000" config: oslist: macos executable: OSX.app/Contents/MacOS/ポエニ戦争 -'1136910': - installDir: Lily's Handmaid +"1136910": + installDir: "Lily's Handmaid" launch: - config: oslist: windows @@ -48052,149 +47519,147 @@ oslist: linux executable: lilyshandmaid.sh type: default -'1136930': +"1136930": installDir: GekisouBenzaRace launch: - description: version3.0~ - description_loc: - english: version3.0~ executable: Gekisou!BenzaRace -Toilet Shooting Star-.exe type: none nameLocalized: japanese: 激走!便座レース -'1136960': +"1136960": installDir: Hentai Crazy Girls launch: - executable: Hentai Crazy Girls.exe type: none -'1136980': {} -'11370': +"1136980": {} +"11370": installDir: Nikopol launch: - executable: Nikopol.exe -'1137020': +"1137020": installDir: My Train Arrives launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: My train arrives.exe type: default -'1137030': +"1137030": installDir: Shadows of Larth launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ShadowsofLarth.exe type: default -'1137040': +"1137040": installDir: Cat & Mouse launch: - config: oslist: windows executable: CatNMouse.exe type: none -'1137070': +"1137070": installDir: Anime Girls Jigsaw Puzzles launch: - config: oslist: windows executable: Anime Girls Jigsaw Puzzles.exe type: none -'1137100': +"1137100": installDir: Twice Reborn a vampire visual novel launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: TwiceReborn-1.00-market\\TwiceReborn.exe + executable: "TwiceReborn-1.00-market\\\\TwiceReborn.exe" type: default - config: - osarch: '32' + osarch: "32" oslist: windows - executable: TwiceReborn-1.00-market\\TwiceReborn-32.exe + executable: "TwiceReborn-1.00-market\\\\TwiceReborn-32.exe" type: default - config: oslist: linux - executable: TwiceReborn-1.00-market\\TwiceReborn.sh + executable: "TwiceReborn-1.00-market\\\\TwiceReborn.sh" type: default - config: oslist: macos - executable: TwiceReborn-1.00-market\\TwiceReborn.app + executable: "TwiceReborn-1.00-market\\\\TwiceReborn.app" type: default -'1137110': +"1137110": installDir: Ballistic Craft launch: - executable: BallisticCraft.exe type: none nameLocalized: - japanese: 'Ballistic Craft: 弾導のアルケミスト' - schinese: '魔弹术师: Ballistic Craft' - tchinese: '魔彈術師: Ballistic Craft' -'1137160': + japanese: "Ballistic Craft: 弾導のアルケミスト" + schinese: "魔弹术师: Ballistic Craft" + tchinese: "魔彈術師: Ballistic Craft" +"1137160": installDir: 百花三国志 launch: - config: oslist: windows executable: game.exe type: default -'1137170': +"1137170": installDir: NEKROMANCER VR launch: - config: oslist: windows executable: NekrotronicVR.exe type: vr -'1137180': - installDir: ' Kaki Raid' +"1137180": + installDir: " Kaki Raid" launch: - executable: KakiRaid.exe type: none -'1137190': {} -'1137200': {} -'1137210': +"1137190": {} +"1137200": {} +"1137210": installDir: Alien Monopoly launch: - executable: Alien Monopoly.exe type: none -'1137220': +"1137220": installDir: Shooter launch: - executable: 3D FPS Shooter.exe type: none -'1137230': +"1137230": installDir: Derby launch: - executable: Derby Carmageddon.exe type: none -'1137250': +"1137250": installDir: Classic Hentai Logic Puzzle launch: - config: oslist: windows executable: Classic Hentai Logic Puzzle.exe type: none -'1137260': +"1137260": installDir: Tower Defense launch: - executable: Defender of the Kingdom.exe type: none -'1137300': +"1137300": installDir: Sherlock Holmes Chapter One launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: SH9\\Binaries\\Win64\\SHCO.exe + executable: "SH9\\\\Binaries\\\\Win64\\\\SHCO.exe" type: default - config: betakey: oldgen - osarch: '64' + osarch: "64" oslist: windows - executable: SH9\\Binaries\\Win64\\SH9.exe + executable: "SH9\\\\Binaries\\\\Win64\\\\SH9.exe" type: default -'1137320': +"1137320": installDir: ScreepsArena launch: - config: @@ -48202,7 +47667,7 @@ executable: arena.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: arena type: default @@ -48214,59 +47679,57 @@ betakey: develop oslist: windows description: Screeps Arena Admin - description_loc: - english: Screeps Arena Admin executable: arena.exe type: option1 -'1137330': +"1137330": installDir: DREAMO launch: - executable: DREAMO.exe type: none -'1137350': +"1137350": installDir: Filament launch: - - arguments: '-nohmd' + - arguments: "-nohmd" config: betakey: preview - osarch: '64' + osarch: "64" oslist: windows executable: Filament.exe type: default - arguments: QA_DEBUG config: betakey: development - osarch: '64' + osarch: "64" oslist: windows executable: Filament.exe type: default - arguments: NOQA config: betakey: testing - osarch: '64' + osarch: "64" oslist: windows executable: Filament.exe type: default - config: betakey: evaluation - osarch: '64' + osarch: "64" oslist: windows executable: Filament.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Filament.sh type: default -'1137360': +"1137360": installDir: DOWN MEANS UP launch: - config: oslist: windows executable: DOWN MEANS UP.exe type: default -'1137390': {} -'1137400': +"1137390": {} +"1137400": installDir: War for the West launch: - config: @@ -48281,7 +47744,7 @@ oslist: linux executable: WarForTheWest type: none -'1137410': +"1137410": installDir: Depraved Awakening launch: - config: @@ -48294,40 +47757,40 @@ type: default - config: oslist: macos - executable: DepravedAwakening.app\\Contents\\MacOS\\DepravedAwakening + executable: "DepravedAwakening.app\\\\Contents\\\\MacOS\\\\DepravedAwakening" type: default -'1137450': +"1137450": installDir: ENCODYA launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ENCODYA.exe type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: ENCODYA.x86_64 type: none - config: oslist: macos - executable: ENCODYA.app\\Contents\\MacOS\\ENCODYA + executable: "ENCODYA.app\\\\Contents\\\\MacOS\\\\ENCODYA" type: none -'1137460': +"1137460": installDir: ALTF4 launch: - executable: ALTF4_F.exe -'1137470': {} -'1137480': {} -'1137490': +"1137470": {} +"1137480": {} +"1137490": installDir: Invasion 2037 launch: - config: oslist: windows executable: Invasion2037.exe type: default -'1137550': {} -'1137620': +"1137550": {} +"1137620": installDir: Sexy President launch: - config: @@ -48342,75 +47805,75 @@ type: option1 - config: oslist: windows - ownsdlc: '1203640' + ownsdlc: "1203640" description: With 21+ Adult Content executable: Sexy_Prez_DLC.exe type: option2 - config: oslist: macos - ownsdlc: '1203640' + ownsdlc: "1203640" description: With 21+ Adult Content executable: Sexy_Prez_DLC.app type: option2 -'1137630': +"1137630": installDir: Quilly launch: - config: oslist: windows executable: Quilly.exe type: default -'1137650': +"1137650": installDir: Switchblade launch: - config: oslist: windows executable: switchblade.exe type: default -'1137660': +"1137660": installDir: Impossamole launch: - config: oslist: windows executable: impossamole.exe type: default -'1137670': +"1137670": installDir: Power Punch II launch: - config: oslist: windows executable: power punch ii.exe type: default -'1137690': +"1137690": installDir: Tinhead launch: - config: oslist: windows executable: tinhead.exe type: default -'1137700': +"1137700": installDir: AAW Wrestle Lab launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: WrestleLab.exe type: default -'1137730': +"1137730": installDir: Naughty Girl 2 launch: - executable: Naughty Girl 2.exe type: default -'1137750': - installDir: Farmer's Life +"1137750": + installDir: "Farmer's Life" launch: - executable: FarmersLife.exe type: none -'1137810': +"1137810": installDir: TSJ launch: - executable: TSJLauncher.exe type: none -'1137820': +"1137820": installDir: GemCollector launch: - config: @@ -48423,63 +47886,63 @@ type: default - config: oslist: macos - executable: GemCollectorMac.app\\Contents\\MacOS\\GemCollectorMac + executable: "GemCollectorMac.app\\\\Contents\\\\MacOS\\\\GemCollectorMac" type: default -'1137860': +"1137860": installDir: Fowl Magic launch: - executable: FowlMagic.exe type: default -'1137870': +"1137870": installDir: Mosh Pit launch: - executable: NuclearLunch.exe type: default -'1137900': +"1137900": installDir: I Am Gooey launch: - executable: iag.exe type: default -'1137910': +"1137910": installDir: Perdition launch: - executable: Perdition.exe type: default -'1137930': +"1137930": installDir: Second Dimension RetroPak Vol. 1 launch: - config: oslist: windows executable: RetroPak Vol 1.exe type: default -'1137970': +"1137970": installDir: Zombies Ate My Neighbors and Ghoul Patrol launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ZAMN_GP.exe type: default -'1138000': {} -'1138010': +"1138000": {} +"1138010": installDir: Aftermoor launch: - executable: Aftermoor.exe type: default -'1138020': +"1138020": installDir: Merge launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: VoidEngine\\Merge\\Merge.exe + executable: "VoidEngine\\\\Merge\\\\Merge.exe" type: default - workingdir: VoidEngine\\Merge\\ -'1138030': + workingdir: "VoidEngine\\\\Merge\\\\" +"1138030": installDir: Master of LinCard launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: LinCard.exe type: default @@ -48487,22 +47950,22 @@ english: Master of LinCard schinese: 灵卡大师 Master of LinCard tchinese: 靈卡大師 Master of LinCard -'1138060': +"1138060": installDir: DiabloIsland launch: - config: oslist: windows executable: DiabloIslanD.exe type: default -'1138070': {} -'1138080': +"1138070": {} +"1138080": installDir: Landlord Girls launch: - config: oslist: windows executable: Landlord Girls.exe type: default -'1138100': +"1138100": installDir: Touhou Ibunseki - Ayaria Dawn ReCreation launch: - executable: THAD.exe @@ -48510,21 +47973,21 @@ nameLocalized: japanese: 東方異文石~アヤリアの夜明け:ReCreation schinese: 东方异文石 - 爱亚利亚黎明:再造 -'1138130': +"1138130": installDir: Shadows and Dust launch: - config: oslist: windows executable: Shadows and Dust.exe type: default -'1138150': +"1138150": installDir: Fiery catacombs launch: - config: oslist: windows executable: FieryCatacombs.exe type: default -'1138190': +"1138190": installDir: Poker Championship launch: - config: @@ -48533,17 +47996,17 @@ type: default - config: oslist: macos - executable: Poker Championship.app\\Contents\\MacOS\\Poker Championship + executable: "Poker Championship.app\\\\Contents\\\\MacOS\\\\Poker Championship" type: default -'1138210': +"1138210": installDir: Esperia ~ Uprising of the Scarlet Witch ~ launch: - config: oslist: windows executable: game.exe type: default -'1138220': {} -'1138260': +"1138220": {} +"1138260": installDir: Figure Simulator War launch: - config: @@ -48555,63 +48018,63 @@ japanese: フィギュア 模擬戦 schinese: 手办模拟战 tchinese: 手办模擬戰 -'1138270': {} -'1138280': +"1138270": {} +"1138280": installDir: Workhard launch: - executable: Workhard.exe type: none -'1138290': +"1138290": installDir: Slime Adventure Legacy launch: - executable: SlimeAdventureLegacy.exe type: none -'1138300': +"1138300": installDir: I LIKE THE FLOWERS launch: - executable: flower.exe type: none -'1138310': +"1138310": installDir: Morbolbo Enter the Maze launch: - executable: Morbolbo/Morbolbo_PC.exe type: none -'1138320': +"1138320": installDir: AREA 51 - DEFENCE launch: - config: oslist: windows executable: AREA 51 - DEFENCE.exe type: default -'1138330': +"1138330": installDir: DarkRunning launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: DarkRunning.exe type: default nameLocalized: english: Dark Running -'1138360': +"1138360": installDir: Next Hand Master launch: - executable: nhm.exe type: none -'1138370': +"1138370": installDir: Motel Bondage launch: - executable: MB.exe type: none -'1138380': +"1138380": installDir: Rhythm Mage VR launch: - config: oslist: windows executable: Rhythm Mage.exe type: vr -'1138390': {} -'1138410': +"1138390": {} +"1138410": installDir: Demons Never Lie launch: - config: @@ -48626,16 +48089,16 @@ oslist: linux executable: DNL.x86 type: none -'1138440': +"1138440": installDir: Galactic Ruler launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: GalacticRuler.exe type: default -'1138520': {} -'1138580': +"1138520": {} +"1138580": installDir: Farmington County launch: - config: @@ -48646,15 +48109,15 @@ oslist: macos executable: Farmington County.app type: none -'1138620': +"1138620": installDir: MechWar launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: game.exe type: default -'1138630': +"1138630": installDir: HeroesSwipeRight launch: - config: @@ -48665,12 +48128,12 @@ oslist: macos executable: Mac/HeroesSwipeRight.app type: default -'1138640': {} -'1138650': +"1138640": {} +"1138650": installDir: Tower Princess launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TowerPrincess.exe type: default @@ -48682,7 +48145,7 @@ japanese: 巨塔 の お姫様 koreana: 타워 프린세스 schinese: 塔楼公主 -'1138660': +"1138660": installDir: Black Book launch: - config: @@ -48697,11 +48160,11 @@ russian: Черная Книга schinese: 黑书 tchinese: 黑书 -'1138780': +"1138780": installDir: RotoBrix launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: RotoBrix.exe type: default @@ -48709,14 +48172,14 @@ oslist: macos executable: RotoBrix.app type: default -'1138800': - installDir: Dark Elf's Adventure +"1138800": + installDir: "Dark Elf's Adventure" launch: - config: oslist: windows executable: Game.exe type: default -'1138810': +"1138810": installDir: Super Platformer Gun launch: - config: @@ -48727,45 +48190,41 @@ oslist: linux executable: SUPERPLATGUN type: default -'1138850': +"1138850": installDir: Heavenly Bodies launch: - config: oslist: windows description: Launch the game on Windows. - description_loc: - english: Launch the game on Windows. executable: Heavenly Bodies.exe type: default - config: oslist: macos description: Launch the game on macOS. - description_loc: - english: Launch the game on macOS. - executable: Heavenly Bodies.app\\Contents\\MacOS\\Heavenly Bodies + executable: "Heavenly Bodies.app\\\\Contents\\\\MacOS\\\\Heavenly Bodies" type: default -'1138900': +"1138900": installDir: Dream Solution launch: - config: oslist: windows executable: Game.exe type: default -'1138910': +"1138910": installDir: Escape Mind launch: - config: oslist: windows executable: nw.exe type: none -'1138960': +"1138960": installDir: Biomass launch: - config: oslist: windows executable: Biomass.exe type: default -'1138970': +"1138970": installDir: DandyDungeon launch: - config: @@ -48778,12 +48237,12 @@ type: default nameLocalized: japanese: 勇者ヤマダくん -'1138980': +"1138980": nameLocalized: english: Wonder Parade schinese: 不可思议乐队 tchinese: 不可思議樂隊 -'1138990': +"1138990": installDir: B.i.t.Lock launch: - config: @@ -48795,134 +48254,134 @@ executable: B.i.t.Lock.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: B.i.t.Lock.x86_64 type: default -'11390': +"11390": installDir: Crash Time II launch: - executable: BurningWheels.exe -'1139000': +"1139000": installDir: The Survivor launch: - executable: The Survivor.exe type: default -'1139060': +"1139060": installDir: Battle Arena launch: - config: oslist: windows executable: Battle Arena.exe type: default -'1139100': +"1139100": installDir: An Egg Can Dream launch: - config: oslist: windows executable: An Egg Can Dream.exe type: default -'1139130': +"1139130": installDir: BioMech launch: - config: oslist: windows - executable: win64\\BioMech.exe + executable: "win64\\\\BioMech.exe" type: default - config: oslist: linux - executable: linux64\\BioMech + executable: "linux64\\\\BioMech" type: default - config: oslist: macos - executable: mac64\\BioMech.app + executable: "mac64\\\\BioMech.app" type: default -'1139160': +"1139160": installDir: Divided Reigns launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows executable: Game.exe type: none -'1139190': {} -'1139200': +"1139190": {} +"1139200": installDir: World left Behind launch: - arguments: n/a config: betakey: n/a - osarch: '64' + osarch: "64" oslist: windows ownsdlc: n/a description: Launch Option executable: worldleftbehind type: default workingdir: n/a -'1139210': {} -'1139230': {} -'1139240': +"1139210": {} +"1139230": {} +"1139240": installDir: HalloweenStory launch: - - arguments: '@f+ @INFOOFF' + - arguments: "@f+ @INFOOFF" config: oslist: windows description: Full screen executable: HalloweenStory.win32_steam.exe type: option1 - - arguments: '@f1920x1080 @z0.9 @INFOOFF' + - arguments: "@f1920x1080 @z0.9 @INFOOFF" config: oslist: windows description: Windowed executable: HalloweenStory.win32_steam.exe type: option2 -'1139280': +"1139280": installDir: The Big Con launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: The Big Con.exe type: default nameLocalized: schinese: 诈欺娇娃 -'1139470': +"1139470": installDir: THE ART - Metamorphosis launch: - executable: THE ART - Metamorphosis.exe type: none -'1139480': +"1139480": installDir: Mask of Sanity launch: - config: oslist: windows executable: Mask of Sanity.exe type: default -'1139490': +"1139490": installDir: Summer Daze at Hero-U launch: - - arguments: '-steam' + - arguments: "-steam" config: oslist: windows executable: TillysTale.exe type: default - - arguments: '-steam' + - arguments: "-steam" config: oslist: linux executable: TillysTale.x86_64 type: default - - arguments: '-steam' + - arguments: "-steam" config: oslist: macos - executable: TillysTale.app/Contents/MacOS/Tilly's Tale -'1139660': + executable: "TillysTale.app/Contents/MacOS/Tilly's Tale" +"1139660": installDir: Marburgh launch: - config: oslist: windows executable: Marburgh.exe type: default -'1139670': +"1139670": installDir: uniTower launch: - config: @@ -48933,7 +48392,7 @@ oslist: macos executable: uniTower.app/Contents/MacOS/uniTower type: default -'1139680': +"1139680": installDir: Pixamal Zoo launch: - config: @@ -48944,26 +48403,24 @@ oslist: macos executable: Pixamal Zoo.app type: default -'1139770': {} -'1139780': +"1139770": {} +"1139780": installDir: SereNest launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SereNest.exe type: vr -'1139790': +"1139790": installDir: Asylum of the Dead launch: - config: oslist: windows description: Asylum of the Dead game - description_loc: - english: Asylum of the Dead game executable: Asylum of the Dead.exe type: default -'1139800': +"1139800": installDir: 一字不落 launch: - config: @@ -48977,30 +48434,30 @@ nameLocalized: schinese: 一字不落 tchinese: 一字不落 -'1139820': {} -'1139830': +"1139820": {} +"1139830": installDir: Recyclomania launch: - config: oslist: windows executable: Recyclomania.exe type: default -'1139840': +"1139840": installDir: TILTit launch: - config: oslist: windows executable: TILTit.exe type: none -'1139870': +"1139870": installDir: TDE Book of Heroes launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Book of Heroes.exe type: none -'1139880': +"1139880": installDir: Chapeau launch: - config: @@ -49011,7 +48468,7 @@ oslist: macos executable: Chapeau.app type: default -'1139890': +"1139890": installDir: DictatorsNoPeaceCountryballs launch: - config: @@ -49024,19 +48481,19 @@ type: default - executable: DictatorsNoPeaceCountryballs.x86_64 type: default -'1139900': +"1139900": installDir: Ghostrunner launch: - - arguments: '-STEAM' + - arguments: "-STEAM" config: - osarch: '64' + osarch: "64" oslist: windows description: with DirectX 11 executable: Ghostrunner.exe type: option1 - - arguments: '-STEAM -dx12' + - arguments: "-STEAM -dx12" config: - osarch: '64' + osarch: "64" oslist: windows description: with DirectX 12 executable: Ghostrunner.exe @@ -49046,29 +48503,27 @@ koreana: Ghostrunner - 고스트러너 schinese: Ghostrunner - 幽灵行者 tchinese: Ghostrunner - 幽影行者 -'1139910': {} -'1139920': +"1139910": {} +"1139920": installDir: VR垃圾分类_Refuse classification launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: 垃圾分类VR科普系统.exe type: vr -'1139940': +"1139940": installDir: ATOM RPG Trudograd launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: with Auto-detect - description_loc: - english: with Auto-detect executable: Trudograd_Win64.exe type: option1 - - arguments: '-force-d3d11' + - arguments: "-force-d3d11" config: - osarch: '64' + osarch: "64" oslist: windows description: with Direct3D 11 executable: Trudograd_Win64.exe @@ -49082,22 +48537,20 @@ description: with Vulkan (Experimental) executable: Trudograd.x86_64 type: option1 - - arguments: '-force-glcore' + - arguments: "-force-glcore" config: oslist: linux description: with OpenGL executable: Trudograd.x86_64 type: option2 - - arguments: '-force-d3d12' + - arguments: "-force-d3d12" config: - osarch: '64' + osarch: "64" oslist: windows description: with Direct3D 12 (Experimental) - description_loc: - english: with Direct3D 12 (Experimental) executable: Trudograd_Win64.exe type: option3 -'1139950': +"1139950": installDir: Two Weeks in Painland launch: - config: @@ -49109,86 +48562,84 @@ oslist: windows executable: TwoWeeksInPainland.exe type: none -'1139980': +"1139980": installDir: Travellers Rest launch: - config: oslist: windows - executable: Windows\\TravellersRest.exe + executable: "Windows\\\\TravellersRest.exe" type: none nameLocalized: schinese: 旅者之憩 Travellers Rest tchinese: 旅者之憩 Travellers Rest -'1140020': +"1140020": installDir: Cetetorius launch: - config: oslist: windows executable: Cetetorius.exe type: default -'1140030': +"1140030": installDir: AMazing TD launch: - config: oslist: windows executable: AMazingTD.exe type: default -'1140060': +"1140060": installDir: WAR GHOST launch: - config: oslist: windows executable: WAR GHOST.exe type: default -'1140070': +"1140070": installDir: Tractor Cargo Driving Simulator launch: - config: oslist: windows executable: Tractor Cargo Driving Simulator.exe type: default -'1140100': +"1140100": installDir: The Persistence launch: - - arguments: '-vr' + - arguments: "-vr" config: - osarch: '64' + osarch: "64" oslist: windows executable: Persistence.exe type: vr - - arguments: '-2d' + - arguments: "-2d" config: - osarch: '64' + osarch: "64" oslist: windows executable: Persistence.exe type: default - - arguments: '-vr -hmd=OculusHMD' + - arguments: "-vr -hmd=OculusHMD" config: - osarch: '64' + osarch: "64" oslist: windows executable: Persistence.exe type: othervr - config: - osarch: '64' + osarch: "64" oslist: windows - ownsdlc: '1640440' + ownsdlc: "1640440" description: Launch Bonus Content - description_loc: - english: Launch Bonus Content executable: PERS Bonus Content/camp.player.exe type: none workingdir: PERS Bonus Content/ nameLocalized: schinese: 无尽轮回 -'1140110': - installDir: '141' +"1140110": + installDir: "141" launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: 141.exe type: default -'1140130': +"1140130": installDir: Survival Vacancy launch: - config: @@ -49203,7 +48654,7 @@ oslist: linux executable: SurvivalVacancy.x86_64 type: default -'1140140': +"1140140": installDir: SummerMeetings launch: - config: @@ -49220,7 +48671,7 @@ type: default nameLocalized: polish: Letnie Spotkania -'1140160': +"1140160": installDir: CATAPULT BATTLE SIMULATOR! launch: - config: @@ -49231,26 +48682,26 @@ oslist: macos executable: CATAPULT BATTLE SIMULATOR.app type: none -'1140170': +"1140170": installDir: Arietta of Spirits launch: - config: oslist: windows executable: Arietta of Spirits.exe type: default -'1140260': +"1140260": installDir: bladewarrior launch: - - arguments: \"Blade.exe\" -conf \"dosbox_bladewarrior.conf\" -fullscreen -exit -noconsole + - arguments: "\\\"Blade.exe\\\" -conf \\\"dosbox_bladewarrior.conf\\\" -fullscreen -exit -noconsole" config: oslist: windows - executable: dosbox_windows\\dosbox.exe + executable: "dosbox_windows\\\\dosbox.exe" type: none - config: oslist: linux executable: runBladewarrior.sh type: none -'1140270': +"1140270": installDir: Monster Prom 2 - Monster Camp launch: - config: @@ -49265,7 +48716,7 @@ oslist: linux executable: MonsterCamp.x86_64 type: none -'1140290': +"1140290": installDir: Murder by Numbers launch: - config: @@ -49274,34 +48725,34 @@ type: default nameLocalized: japanese: パズル探偵スカウト -'1140340': +"1140340": installDir: XGirlEscape launch: - config: oslist: windows executable: XGirlEscape.exe type: default -'1140350': +"1140350": installDir: Shuttlecock-H Covered Rematch launch: - config: oslist: windows executable: Shuttlecock-H Covered Rematch.exe type: default -'1140390': {} -'1140400': +"1140390": {} +"1140400": installDir: Gericonia 2 launch: - config: oslist: windows executable: Gericonia2.exe type: none -'1140410': +"1140410": installDir: Sex City launch: - executable: Sex City.exe type: none -'1140440': +"1140440": installDir: OMON Simulator launch: - config: @@ -49314,7 +48765,7 @@ type: default - config: oslist: macos - executable: Contents\\MacOS\\OMON_Simulator_MAC + executable: "Contents\\\\MacOS\\\\OMON_Simulator_MAC" type: default nameLocalized: bulgarian: Полицейски Симулатор @@ -49338,21 +48789,21 @@ thai: ตำรวจจำลอง turkish: Polis Simülatörü vietnamese: Mô phỏng cảnh sát -'1140460': +"1140460": installDir: V1RUZ launch: - config: oslist: windows executable: V1RUZ.exe type: default -'1140500': +"1140500": installDir: Crimson Hotel launch: - config: oslist: windows executable: Crimson Hotel.exe type: default -'1140510': +"1140510": installDir: Fantasy Gladiators launch: - config: @@ -49363,37 +48814,37 @@ oslist: macos executable: FGContentMac.app type: none -'1140520': +"1140520": installDir: Graviton launch: - config: oslist: windows - executable: Graviton\\Graviton.exe + executable: "Graviton\\\\Graviton.exe" type: default - config: oslist: macos executable: Graviton.app/Contents/MacOS/Graviton type: none -'1140530': +"1140530": installDir: Viper launch: - executable: pcsxr.exe type: none -'1140570': - installDir: A Street Cat's Tale_support edition +"1140570": + installDir: "A Street Cat's Tale_support edition" launch: - config: oslist: windows - executable: A Street Cat's Tale SE.exe + executable: "A Street Cat's Tale SE.exe" type: none - config: oslist: macos - executable: A Street Cat's Tale SE.app + executable: "A Street Cat's Tale SE.app" type: none nameLocalized: japanese: のらねこものがたり(のらねこ物語) koreana: 길고양이 이야기 -'1140610': +"1140610": installDir: DeathLive launch: - executable: DeathLive.exe @@ -49402,19 +48853,19 @@ english: Death Live schinese: 死亡直播间 tchinese: 死亡直播間 -'1140630': +"1140630": installDir: Red Wings launch: - executable: Red Wings Aces of the Sky.exe type: default -'1140700': +"1140700": installDir: GodOrEvil.Bate launch: - config: oslist: windows executable: GodOrEvil_Update2019.9.22.exe type: default -'1140720': +"1140720": installDir: Boat Violence Ship Happens launch: - config: @@ -49422,29 +48873,29 @@ oslist: windows executable: shipwrecks.exe type: default -'1140730': +"1140730": installDir: Pixel Sentry launch: - config: oslist: windows executable: Pixel Sentry.exe type: none -'1140760': +"1140760": installDir: Rainforest Solitaire launch: - config: oslist: windows executable: rainforest_solitaire.exe type: default -'1140790': +"1140790": installDir: Kung Fu Jesus launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Kung Fu Jesus and the Search for Celestial Gold.exe type: default -'1140870': +"1140870": installDir: Sensible Blood Rugby Sevens launch: - config: @@ -49453,54 +48904,54 @@ type: default - config: oslist: macos - executable: SensibleBloodSoccer.app\\Contents\\MacOS\\SensibleBloodSoccer + executable: "SensibleBloodSoccer.app\\\\Contents\\\\MacOS\\\\SensibleBloodSoccer" type: default - config: oslist: linux executable: SensibleBloodRugby.x86_64 type: default -'1140880': +"1140880": installDir: OnlyOneBurn launch: - config: oslist: windows executable: OnlyOneBurn.exe type: default -'1140890': +"1140890": installDir: Morbid launch: - executable: Morbid - The Seven Acolytes.exe type: default -'1140900': +"1140900": installDir: The_Chasm launch: - config: oslist: windows executable: The_Chasm.exe type: default -'1140930': +"1140930": installDir: You are apt launch: - config: oslist: windows executable: nw.exe type: default -'1140940': {} -'1140950': +"1140940": {} +"1140950": installDir: Boardwalk Carnival Game launch: - config: oslist: windows executable: Boardwalk Carnival.exe type: default -'1140970': +"1140970": installDir: Inside The Park VR launch: - config: oslist: windows executable: Inside The Park VR.exe type: vr -'1141050': +"1141050": installDir: Nour launch: - config: @@ -49511,8 +48962,8 @@ oslist: macos executable: nour.app type: default -'1141060': {} -'1141070': +"1141060": {} +"1141070": installDir: UFO Brawlers from Beyond launch: - config: @@ -49521,14 +48972,14 @@ type: none - config: oslist: macos - executable: UFO_FINAL_BUILD_MAC.app\\Contents\\MacOS\\UFO + executable: "UFO_FINAL_BUILD_MAC.app\\\\Contents\\\\MacOS\\\\UFO" type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: UFO.x86_64 type: none -'1141100': +"1141100": installDir: Lilitales launch: - executable: Lilitales.exe @@ -49536,11 +48987,11 @@ nameLocalized: schinese: 莉莉传说 tchinese: 莉莉傳說 -'1141120': +"1141120": installDir: ScarletHood launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Windows Launch executable: ScarletHood.exe @@ -49551,12 +49002,12 @@ executable: ScarletHood.app/Contents/MacOS/ScarletHood type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: Linux Launch executable: ScarletHood.x86_64 type: default -'1141130': +"1141130": installDir: Serious Scramblers launch: - config: @@ -49574,16 +49025,16 @@ portuguese: Guerreiros Destemidos schinese: 混乱大冒险 tchinese: 混亂大冒險 -'1141140': {} -'1141150': +"1141140": {} +"1141150": installDir: The Defender FAC2 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TheDefenderFAC2.exe type: none -'1141160': +"1141160": installDir: Fractalis launch: - config: @@ -49592,27 +49043,27 @@ type: default - config: oslist: macos - executable: Fractalis.app\\Contents\\MacOS\\Fractalis + executable: "Fractalis.app\\\\Contents\\\\MacOS\\\\Fractalis" type: default - config: oslist: linux executable: Fractalis.x86_64 type: default -'1141170': +"1141170": installDir: Risnuch launch: - config: oslist: windows executable: Risnuch.exe type: none -'1141180': +"1141180": installDir: Cocktail for Beauty launch: - config: oslist: windows executable: nw.exe type: default -'1141220': +"1141220": installDir: DemonCrawl launch: - config: @@ -49632,12 +49083,12 @@ oslist: macos executable: demoncrawl.app type: none -'1141230': {} -'1141250': +"1141230": {} +"1141250": installDir: Planet Automata launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Planet Automata.exe type: default @@ -49645,7 +49096,7 @@ oslist: macos executable: Planet Automata.app type: default -'1141280': +"1141280": installDir: Super Space Slayer 2 launch: - config: @@ -49653,75 +49104,75 @@ description: Launch Super Space Slayer 2 executable: Super_Space_Slayer_2.exe type: default -'1141290': +"1141290": installDir: Tactical Nexus launch: - config: oslist: windows executable: tacticalnexus.exe type: default -'1141300': +"1141300": installDir: Sloth Quest launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SlothQuest.exe type: default -'1141340': +"1141340": installDir: WildIsland launch: - - arguments: '-windowed' + - arguments: "-windowed" config: - osarch: '32' + osarch: "32" oslist: windows executable: wildisland32.exe type: default - - arguments: '-windowed' + - arguments: "-windowed" config: - osarch: '64' + osarch: "64" oslist: windows executable: wildisland64.exe type: default -'1141360': +"1141360": installDir: Dungeon Dreams (Female Protagonist) launch: - config: oslist: windows executable: Game.exe type: none -'1141380': +"1141380": installDir: Ladies Orders launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows executable: nw.exe type: default -'1141410': {} -'1141450': +"1141410": {} +"1141450": installDir: Dodge Rocket launch: - config: oslist: windows executable: DR.exe type: default -'1141510': +"1141510": installDir: One Fantasy Shooter launch: - config: oslist: windows executable: One Fantasy Shooter.exe type: none -'1141540': {} -'1141550': +"1141540": {} +"1141550": installDir: CUCKOLD SIMULATOR Life as a Beta Male launch: - config: oslist: windows executable: CuckoldSimulator.exe type: default -'1141570': +"1141570": installDir: Sky Cannoneer launch: - config: @@ -49732,28 +49183,28 @@ japanese: スカイカノニア koreana: 스카이 캐노니어 schinese: 天空炮手 -'1141580': +"1141580": installDir: Taiji launch: - config: oslist: windows executable: Taiji.exe type: none -'1141600': - installDir: Every Day's Different +"1141600": + installDir: "Every Day's Different" launch: - config: oslist: windows executable: EveryDaysDifferent.exe type: default -'1141640': +"1141640": installDir: Slaveblade launch: - config: oslist: windows executable: Slaveblade.exe type: default -'1141650': +"1141650": installDir: Crowd Simulator launch: - config: @@ -49765,7 +49216,7 @@ executable: CrowdSimulator.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: game.x86_64 nameLocalized: @@ -49774,50 +49225,50 @@ japanese: 群衆シミュレーター schinese: 人群模拟器 tchinese: 人群模擬器 -'1141660': +"1141660": installDir: 夢限ノ夜 launch: - config: oslist: windows executable: Game.exe type: default -'1141690': {} -'1141700': +"1141690": {} +"1141700": installDir: Desert monsters launch: - config: oslist: windows executable: game.exe type: default -'1141740': +"1141740": installDir: Cures & Curios launch: - executable: CuresAndCurios.exe type: vr -'1141750': +"1141750": installDir: Brain in a vat lies launch: - config: oslist: windows executable: Game.exe type: default -'1141770': +"1141770": installDir: Rage Melee launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: RageMelee.exe type: default -'1141840': +"1141840": installDir: Escape the Lab launch: - - arguments: '-popupwindow' + - arguments: "-popupwindow" config: oslist: windows executable: Escape the Lab.exe type: vr -'1141860': +"1141860": installDir: Trial Of Destiny launch: - config: @@ -49828,7 +49279,7 @@ oslist: windows executable: Windows/TrialOfDestiny.exe type: default -'1141870': +"1141870": installDir: The Longest Love launch: - description: The Longest Love 花名为爱 @@ -49839,55 +49290,55 @@ type: option2 nameLocalized: schinese: 花名为爱 -'1141880': +"1141880": installDir: Crazy Critters - Combat Cats launch: - config: oslist: windows executable: Crazy Critters - Combat Cats.exe type: default -'1141920': {} -'1141930': +"1141920": {} +"1141930": installDir: Mondly Learn Languages in VR launch: - executable: MondlyVR.exe type: vr -'1141950': +"1141950": installDir: Sex & Gun PC launch: - config: oslist: windows executable: SnG.exe type: default -'1141970': {} -'1141990': +"1141970": {} +"1141990": installDir: Elite Escape launch: - config: oslist: windows executable: Elite Escape.exe type: vr -'11420': - installDir: Clive Barker's Jericho +"11420": + installDir: "Clive Barker's Jericho" launch: - - executable: bin\\jericho.exe + - executable: "bin\\\\jericho.exe" workingdir: Bin -'1142000': +"1142000": installDir: Challenging Dogfights launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: challengingDogfights.exe type: default -'1142010': {} -'1142050': {} -'1142070': +"1142010": {} +"1142050": {} +"1142070": installDir: Paladin Slayer launch: - executable: PaladinSlayer.exe type: none -'1142080': +"1142080": installDir: Pawnbarian launch: - config: @@ -49902,18 +49353,18 @@ oslist: macos executable: Contents/MacOS/Pawnbarian type: default -'1142090': +"1142090": installDir: PBS launch: - config: oslist: windows executable: Game.exe type: default -'1142100': +"1142100": installDir: WWE 2K Battlegrounds launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: WWE 2K Battlegrounds executable: WWEBattlegrounds.exe @@ -49923,45 +49374,45 @@ koreana: WWE 2K 배틀그라운드 schinese: WWE 2K竞技场 tchinese: WWE 2K殺戮戰場 -'1142130': - installDir: They Can't Stop All Of Us +"1142130": + installDir: "They Can't Stop All Of Us" launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: They Cant Stop All Of Us.exe type: none -'1142180': +"1142180": installDir: SE VR World Demo launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SEVR2.exe type: vr -'1142200': +"1142200": installDir: Nightmare Cave launch: - config: oslist: windows executable: Nightmare Cave.exe type: default -'1142220': +"1142220": installDir: BeatAim launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: BeatAim.exe type: default -'1142230': +"1142230": installDir: The Secrets of Jesus launch: - config: oslist: windows executable: The secrets of Jesus.exe type: default -'1142240': +"1142240": installDir: ODA launch: - config: @@ -49970,9 +49421,9 @@ type: none - config: oslist: macos - executable: ODA_2021.12.20_Mac.app\\Contents\\MacOS\\ODA + executable: "ODA_2021.12.20_Mac.app\\\\Contents\\\\MacOS\\\\ODA" type: default -'1142270': +"1142270": installDir: Catgirl Doggirl Cafe launch: - config: @@ -49981,7 +49432,7 @@ type: default - config: oslist: linux - executable: ./CatgirlandDoggirlCafe.sh + executable: "./CatgirlandDoggirlCafe.sh" type: default - config: oslist: macos @@ -49990,107 +49441,107 @@ nameLocalized: latam: Mi Cafetería de Otro Mundo con Demi-esclavas spanish: Mi Cafetería de Otro Mundo con Demi-esclavas -'1142280': +"1142280": installDir: Color + launch: - executable: ColorPlus.exe type: none -'1142290': - installDir: Haunted Legends The Scars of Lamia Collector's Edition +"1142290": + installDir: "Haunted Legends The Scars of Lamia Collector's Edition" launch: - config: oslist: windows executable: HauntedLegends_TheScarsOfLamia_CE.exe type: default -'1142300': +"1142300": installDir: Hope; or How We Survived launch: - config: oslist: windows executable: Hope HWSTA master file.exe type: default -'1142320': +"1142320": installDir: LittleHelper launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: littlehelper.exe type: default -'1142360': +"1142360": installDir: Hope for City launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows description: Launch executable: Hope for City.exe type: default -'1142390': +"1142390": installDir: Remothered Broken Porcelain launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Remothered2.exe type: none -'1142410': +"1142410": installDir: KamileVR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: KamileVR.exe type: othervr -'1142440': +"1142440": installDir: Thanks for Listening launch: - config: oslist: windows executable: TFL.exe type: none -'1142450': +"1142450": installDir: GrapplingHook launch: - config: oslist: windows executable: GrapplingHook.exe type: vr -'1142460': +"1142460": installDir: Super Monkey launch: - executable: Super Monkey.exe type: none -'1142500': +"1142500": installDir: Fun with Ragdolls launch: - config: oslist: windows - executable: Fun with Ragdolls\\Fun with Ragdolls.exe + executable: "Fun with Ragdolls\\\\Fun with Ragdolls.exe" type: default - config: oslist: macos - executable: Fun with Ragdolls.app\\Contents\\MacOS\\Fun with Ragdolls + executable: "Fun with Ragdolls.app\\\\Contents\\\\MacOS\\\\Fun with Ragdolls" type: default -'1142510': +"1142510": installDir: MotionGame launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: MotionGame.exe type: vr nameLocalized: english: Cucumber Defense VR schinese: 保卫黄瓜VR -'1142550': +"1142550": installDir: Protein for Muscle launch: - config: oslist: windows executable: Protein.exe type: none -'1142560': +"1142560": installDir: Princess and Knight launch: - config: @@ -50101,12 +49552,12 @@ oslist: macos executable: PrincessAndKnightForMac.app type: default -'1142570': {} -'1142710': +"1142570": {} +"1142710": installDir: Total War WARHAMMER III launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: launcher/launcher.exe type: default @@ -50116,115 +49567,112 @@ executable: Total War WARHAMMER III.app type: default - config: - betakey: >- - domesticated_qa_a, domnesticated_external_review, domnesticated_external_review_2, domesticated_qa_b, - domesticated_partner_nv, domesticated_qa_regression + betakey: "domesticated_qa_a, domnesticated_external_review, domnesticated_external_review_2, domesticated_qa_b, domesticated_partner_nv, domesticated_qa_regression" oslist: linux executable: TotalWarhammer3.sh type: default -'1142740': {} -'1142750': +"1142740": {} +"1142750": installDir: BAFF 3 launch: - config: oslist: windows executable: BAFF 3.exe type: default -'1142760': +"1142760": installDir: Racing angle launch: - config: oslist: windows executable: Racing angle.exe type: default -'1142790': +"1142790": installDir: Half-Past Impossible launch: - config: oslist: windows executable: HPI.exe type: default -'1142810': +"1142810": installDir: Toasterball launch: - config: oslist: windows executable: Toasterball.exe type: default -'1142820': {} -'1142850': +"1142820": {} +"1142850": installDir: Darkness Rollercoaster - Ultimate Shooter Edition launch: - - arguments: '-vr' + - arguments: "-vr" config: oslist: windows executable: drc_steam.exe type: vr -'1142860': +"1142860": installDir: JJXX launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: 机甲雄心.exe type: none -'1142870': +"1142870": installDir: Hentai Fight Club launch: - config: oslist: windows executable: HentaiFightClub.exe type: default -'1142890': +"1142890": installDir: Heart in the Dark launch: - config: oslist: windows executable: Heart_in_the_Dark.exe type: none -'1143130': - installDir: ']' - launch: [] -'1143170': +"1143130": + installDir: "]" +"1143170": installDir: Auto Factory launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: AutoFactory.exe type: default -'1143310': {} -'1143320': +"1143310": {} +"1143320": installDir: Gred launch: - config: oslist: windows executable: Gred.exe type: none -'1143330': +"1143330": installDir: Frustrate-a-ball launch: - config: oslist: windows executable: Frustrate-a-ball.exe type: default -'1143340': +"1143340": installDir: Industriworks launch: - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch on Linux - executable: ./bin/linux64/industriworks + executable: "./bin/linux64/industriworks" type: default workingdir: /bin/linux64 - config: - osarch: '64' + osarch: "64" oslist: windows executable: bin/win64/industriworks.exe type: none workingdir: /bin/win64 -'1143350': +"1143350": installDir: Flatland Vol.1 launch: - config: @@ -50235,7 +49683,7 @@ oslist: macos executable: FLATLAND.app type: none -'1143390': +"1143390": installDir: Ichor launch: - config: @@ -50247,45 +49695,45 @@ oslist: windows executable: Ichor.exe type: default -'1143420': +"1143420": installDir: 70 Seconds! Adventure launch: - executable: 70 Seconds! Adventure.exe type: default -'1143430': +"1143430": installDir: Shadow Gangs launch: - config: oslist: windows executable: sg.exe type: none -'1143450': +"1143450": installDir: DeltaBlade 2700 launch: - executable: DeltaBlade 2700.exe type: default -'1143460': {} -'1143470': +"1143460": {} +"1143470": installDir: Vengeance ~ In my family name launch: - config: oslist: windows - executable: FamilyName\\FamilyName.exe + executable: "FamilyName\\\\FamilyName.exe" type: default - config: oslist: linux - executable: FamilyName\\FamilyName.sh + executable: "FamilyName\\\\FamilyName.sh" type: default - config: oslist: macos - executable: FamilyName\\FamilyName.app + executable: "FamilyName\\\\FamilyName.app" type: default nameLocalized: french: Vengeance ~ Au nom de ma famille -'1143480': {} -'1143540': {} -'1143560': {} -'1143570': +"1143480": {} +"1143540": {} +"1143560": {} +"1143570": installDir: VolticPistol launch: - config: @@ -50300,24 +49748,24 @@ oslist: macos executable: VolticPistolLinuxBuild.bin.osx type: none -'1143610': +"1143610": installDir: Poly Quest launch: - config: oslist: windows executable: Poly Quest.exe type: vr -'1143670': {} -'1143680': +"1143670": {} +"1143680": installDir: AVA launch: - - arguments: '@f+ @INFOOFF' + - arguments: "@f+ @INFOOFF" config: oslist: windows description: Full screen executable: AVA.win32_steam.exe type: option1 - - arguments: '@f1920x1080 @z0.9 @INFOOFF' + - arguments: "@f1920x1080 @z0.9 @INFOOFF" config: oslist: windows description: Windowed @@ -50328,51 +49776,51 @@ description: Ctest executable: cpp-empty-test.exe type: option3 -'1143710': +"1143710": installDir: Тёмное отражение (Dark Reflection) launch: - config: oslist: windows executable: Dark Reflection.exe type: none -'1143720': +"1143720": installDir: Alterity Experience launch: - config: oslist: windows executable: ALTEXP_UE4.exe type: default -'1143740': +"1143740": installDir: PUZZLETIME Castle Party launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: PUZZLETIME_Castle_Party.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: PUZZLETIME_Castle_Party.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: PUZZLETIME_Castle_Party.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: PUZZLETIME_Castle_Party_32.exe type: default -'1143780': +"1143780": installDir: Graveyard Defender launch: - config: oslist: windows executable: Graveyard Defender.exe type: none -'1143800': +"1143800": installDir: Jigsaw Puzzle - Pro Edition launch: - config: @@ -50429,44 +49877,42 @@ description: Jigsaw Puzzle - Expansion Pack 10 executable: Jigsaw Puzzle - Expansion Pack 10.exe type: option1 -'1143810': +"1143810": installDir: Black Skylands launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: BlackSkylands.exe type: none - description: Versus mode - description_loc: - english: Versus mode executable: BlackSkylands_Data/StreamingAssets/Versus/BlackSkylands Versus.exe type: option1 nameLocalized: schinese: 云端掠影 (Black Skylands) -'1143870': +"1143870": installDir: YASG launch: - executable: YASG.exe type: none -'1143900': +"1143900": installDir: Shapeshooter launch: - executable: Shapeshooter.exe type: none -'11440': +"11440": installDir: DiRT launch: - executable: dirt.exe -'1144020': +"1144020": installDir: GolfTopia launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Golftopia.exe type: default -'1144030': +"1144030": installDir: Homestuck Pesterquest launch: - config: @@ -50481,47 +49927,47 @@ oslist: linux executable: pesterquest.sh type: none -'1144060': +"1144060": installDir: Ten Days to War launch: - config: oslist: windows executable: Ten Days To War.exe type: default -'1144070': +"1144070": installDir: NUMB launch: - executable: NuMB.exe type: none -'1144080': +"1144080": installDir: Overboard launch: - executable: Overboard.exe type: vr -'1144090': +"1144090": installDir: ArtFormer the Game launch: - executable: ArtFormer.exe type: none -'1144100': +"1144100": installDir: Linea VR launch: - config: oslist: windows executable: LineaVR.exe type: vr -'1144110': +"1144110": installDir: Open World Game the Open World Game launch: - config: oslist: windows executable: OWGTOWG.exe type: default -'1144130': +"1144130": installDir: Smash Dungeon launch: - executable: SmashDungeon.exe -'1144140': +"1144140": installDir: Pillars of Dust launch: - config: @@ -50529,7 +49975,7 @@ oslist: windows executable: pillars-of-dust.exe type: default -'1144150': +"1144150": installDir: Singled Out launch: - config: @@ -50541,11 +49987,11 @@ executable: Singled Out.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Singled Out.x86_64 type: default -'1144170': +"1144170": installDir: Warhammer Chaos & Conquest launch: - config: @@ -50556,35 +50002,31 @@ oslist: macos executable: Warhammer.app type: default -'1144200': +"1144200": installDir: Ready Or Not launch: - - arguments: '-dx11' + - arguments: "-dx11" config: - osarch: '64' + osarch: "64" oslist: windows description: Ready or Not (DirectX 11) - description_loc: - english: Ready or Not (DirectX 11) executable: ReadyOrNot.exe type: option2 - - arguments: '-dx12' + - arguments: "-dx12" config: - osarch: '64' + osarch: "64" oslist: windows description: Ready or Not (DirectX 12) - description_loc: - english: Ready or Not (DirectX 12) executable: ReadyOrNot.exe type: option2 -'1144250': +"1144250": installDir: HENTAI HELL launch: - config: oslist: windows executable: HENTAI HELL.exe type: default -'1144260': +"1144260": installDir: Warships On The Halloween Night launch: - config: @@ -50595,26 +50037,26 @@ oslist: linux executable: WarshipsOnTheHalloweenNight type: default -'1144270': +"1144270": installDir: jiushujueze launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: jiushujueze.exe type: default -'1144280': +"1144280": installDir: Ain Dodo launch: - config: oslist: windows - executable: '${Ain_Dodo}.exe' + executable: "${Ain_Dodo}.exe" type: default - config: oslist: macos - executable: '${Ain_Dodo}.exe' + executable: "${Ain_Dodo}.exe" type: default -'1144290': +"1144290": installDir: Lucid Nina launch: - config: @@ -50622,12 +50064,12 @@ description: Launch executable: Lucid Nina.exe type: none -'1144300': +"1144300": installDir: ef - the first tale launch: - executable: ef_first_en_AA.exe type: default -'1144350': +"1144350": installDir: Hunger Tower launch: - executable: HungerTower_PC.exe @@ -50636,18 +50078,18 @@ english: Hunger Tower schinese: 饥饿之塔 tchinese: 饑餓之塔 -'1144370': +"1144370": installDir: Levi Chronicles launch: - config: oslist: windows executable: ProjectLeviticus.exe type: default -'1144380': +"1144380": nameLocalized: - english: Maska's Masks + english: "Maska's Masks" schinese: 玛斯卡的面具 -'1144400': +"1144400": installDir: SenrenBanka launch: - executable: SenrenBanka.exe @@ -50657,33 +50099,31 @@ japanese: 千恋*万花 schinese: 千恋*万花 tchinese: 千戀*萬花 -'1144440': +"1144440": installDir: UnderParty launch: - config: oslist: windows description: Lunch - description_loc: - english: Lunch executable: UnderParty.exe type: default - config: oslist: macos - executable: underparty.app\\Contents\\MacOS\\UnderParty + executable: "underparty.app\\\\Contents\\\\MacOS\\\\UnderParty" type: default -'1144450': +"1144450": installDir: Rose Riddle Fairy Tale Detective launch: - config: oslist: windows executable: RoseRiddleTheFairytaleDetective_CE.exe type: default -'1144460': +"1144460": installDir: Soundart launch: - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" config: - osarch: '64' + osarch: "64" oslist: windows description: Default executable: Soundart.exe @@ -50691,64 +50131,64 @@ nameLocalized: schinese: 音动万华镜世界/SoundArt tchinese: 音動萬華鏡世界/SoundArt -'1144470': {} -'1144510': +"1144470": {} +"1144510": installDir: Azure launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Stratos.exe type: default -'1144520': +"1144520": installDir: Air launch: - config: oslist: windows description: Windows 32 and 64 bits - executable: \\launcher\\Air_launcher.exe + executable: "\\\\launcher\\\\Air_launcher.exe" type: config -'1144590': +"1144590": installDir: Blood Runner launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: BloodRunner.exe type: default -'1144630': +"1144630": installDir: Beardy the Digger launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Beardy the Digger.exe type: default -'1144670': +"1144670": installDir: Tactikk launch: - executable: Tactikk.exe type: none -'1144690': +"1144690": installDir: Project SolarBot launch: - config: oslist: windows executable: ProjectSolarBot.exe type: none -'1144740': +"1144740": installDir: Artificial Iridescence launch: - config: oslist: windows executable: Artificial Iridescence.exe type: default -'1144760': +"1144760": installDir: Vectrix launch: - executable: Vectrix.exe type: default -'1144770': +"1144770": installDir: Sludge Life launch: - config: @@ -50759,15 +50199,15 @@ oslist: macos executable: SludgeLife.app type: default -'1144810': {} -'1144820': +"1144810": {} +"1144820": installDir: Neighborhood launch: - config: oslist: windows executable: Neighborhood.exe type: default -'1144850': +"1144850": installDir: MANIC launch: - config: @@ -50778,7 +50218,7 @@ oslist: macos executable: MANIC.app type: default -'1144860': +"1144860": installDir: Flying Sword launch: - config: @@ -50788,28 +50228,28 @@ nameLocalized: schinese: 御剑 tchinese: 御剑 -'1144900': +"1144900": installDir: Pension Day launch: - config: oslist: windows executable: player.exe type: none -'1144910': +"1144910": installDir: Space Gladiators launch: - config: oslist: windows executable: SpaceGladiators.exe type: default -'1144970': +"1144970": installDir: Necronator Dead Wrong launch: - config: oslist: windows executable: Necronator Dead Wrong.exe type: default -'11450': +"11450": installDir: Overlord launch: - config: @@ -50829,69 +50269,69 @@ - config: oslist: linux description: Play Overlord - executable: ./overlord + executable: "./overlord" type: default - config: oslist: linux description: Configure Overlord - executable: ./overlord-config + executable: "./overlord-config" type: config -'1145000': +"1145000": installDir: The Rainbow World launch: - config: oslist: windows executable: The Rainbow World.exe type: default -'1145020': +"1145020": installDir: Break Arcade Games Out launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Break Arcade Games Out.exe type: default -'1145030': +"1145030": installDir: ef - the latter tale launch: - executable: ef_latter_en_AA.exe type: default -'1145040': +"1145040": installDir: Princess Guard launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: PrincessGuard.exe type: vr -'1145050': +"1145050": installDir: Tonetaker VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Tonetaker.exe type: vr -'1145060': {} -'1145100': +"1145060": {} +"1145100": installDir: Singaria - Prologue launch: - executable: Singaria.exe type: none -'1145120': +"1145120": installDir: LastSummer launch: - config: oslist: windows executable: LastSummer.exe type: default -'1145160': {} -'1145180': +"1145160": {} +"1145180": installDir: uuu launch: - executable: acs.exe type: none -'1145240': +"1145240": installDir: Dawn of the Dragons Ascension launch: - config: @@ -50900,32 +50340,32 @@ type: default - config: oslist: macos - executable: Dawn2.app\\Contents\\MacOS\\Dawn2 + executable: "Dawn2.app\\\\Contents\\\\MacOS\\\\Dawn2" type: default -'1145270': +"1145270": installDir: Misfire launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Misfire.exe type: default -'1145280': +"1145280": installDir: BlockeyHockey launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: BlockeyOG.exe type: default -'1145290': +"1145290": installDir: Out There Oceans of Time launch: - config: oslist: windows executable: Out There - Oceans of Time.exe type: default -'1145330': +"1145330": installDir: Skeleton Crew launch: - config: @@ -50936,7 +50376,7 @@ oslist: macos executable: SkeletonCrew.app type: default -'1145340': +"1145340": installDir: Rogue State Revolution launch: - config: @@ -50944,236 +50384,162 @@ executable: RogueStateRevolution.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: RogueStateRevolution.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: RogueStateRevolution.x86_64 type: default -'1145350': {} -'1145360': +"1145350": {} +"1145360": installDir: Hades launch: - - arguments: >- - /c=..\\ /steampowered /DirectLoadShell=true /DebugMessages=false /DebugKeysEnabled=false /ShowFPS=false - /PerfDashWarnings=false /VerboseScriptLogging=false /UnsafeDebugKeysEnabled=false /LiveCreateTextures=false + - arguments: "/c=..\\\\ /steampowered /DirectLoadShell=true /DebugMessages=false /DebugKeysEnabled=false /ShowFPS=false /PerfDashWarnings=false /VerboseScriptLogging=false /UnsafeDebugKeysEnabled=false /LiveCreateTextures=false" config: - osarch: '64' + osarch: "64" oslist: windows description: Hades (DirectX - Default) - description_loc: - english: Hades (DirectX - Default) - executable: x64\\Hades.exe + executable: "x64\\\\Hades.exe" type: option1 - workingdir: x64\\ - - arguments: >- - /c=..\\ /steampowered /DirectLoadShell=true /DebugMessages=false /DebugKeysEnabled=false /ShowFPS=false - /PerfDashWarnings=false /VerboseScriptLogging=false /UnsafeDebugKeysEnabled=false /LiveCreateTextures=false + workingdir: "x64\\\\" + - arguments: "/c=..\\\\ /steampowered /DirectLoadShell=true /DebugMessages=false /DebugKeysEnabled=false /ShowFPS=false /PerfDashWarnings=false /VerboseScriptLogging=false /UnsafeDebugKeysEnabled=false /LiveCreateTextures=false" config: - osarch: '32' + osarch: "32" oslist: windows description: 32-bit - executable: x86\\Hades.exe + executable: "x86\\\\Hades.exe" type: default - workingdir: x86\\ - - arguments: >- - /c=..\\..\\ /steampowered /DirectLoadShell=true /DebugMessages=true /DebugKeysEnabled=true - /UnsafeDebugKeysEnabled=false /ShowFPS=false /PerfDashWarnings=false /AllowHardQuit=false - /UseInternalBugReporter=true /UseDevSaves=true /CopyDragAndDroppedSaves=true /LiveCreateTextures=false - /DebugLogSounds=false /MaxDevSaves=3000 /AutoReportAsserts=false /AutoDeleteExtraDevSaves=false - /AutoDownloadSavePath=blank /AttachDxDiagToBugReports=false /AuthBasecampOnStartup=true - /DisableAnalyticsInDebug=true + workingdir: "x86\\\\" + - arguments: "/c=..\\\\..\\\\ /steampowered /DirectLoadShell=true /DebugMessages=true /DebugKeysEnabled=true /UnsafeDebugKeysEnabled=false /ShowFPS=false /PerfDashWarnings=false /AllowHardQuit=false /UseInternalBugReporter=true /UseDevSaves=true /CopyDragAndDroppedSaves=true /LiveCreateTextures=false /DebugLogSounds=false /MaxDevSaves=3000 /AutoReportAsserts=false /AutoDeleteExtraDevSaves=false /AutoDownloadSavePath=blank /AttachDxDiagToBugReports=false /AuthBasecampOnStartup=true /DisableAnalyticsInDebug=true" config: betakey: nightly-qa - osarch: '64' + osarch: "64" oslist: windows description: Debug - executable: Debug\\x64\\Hades.exe + executable: "Debug\\\\x64\\\\Hades.exe" type: option1 - workingdir: Debug\\x64\\ - - arguments: >- - /c=..\\..\\ /steampowered /DirectLoadShell=true /DebugMessages=true /DebugKeysEnabled=true - /UnsafeDebugKeysEnabled=false /ShowFPS=false /PerfDashWarnings=false /AllowHardQuit=false - /UseInternalBugReporter=true /UseDevSaves=true /CopyDragAndDroppedSaves=true /LiveCreateTextures=false - /DebugLogSounds=false /MaxDevSaves=3000 /AutoReportAsserts=false /AutoDeleteExtraDevSaves=false - /AutoDownloadSavePath=blank /AttachDxDiagToBugReports=false /AuthBasecampOnStartup=true - /DisableAnalyticsInDebug=true + workingdir: "Debug\\\\x64\\\\" + - arguments: "/c=..\\\\..\\\\ /steampowered /DirectLoadShell=true /DebugMessages=true /DebugKeysEnabled=true /UnsafeDebugKeysEnabled=false /ShowFPS=false /PerfDashWarnings=false /AllowHardQuit=false /UseInternalBugReporter=true /UseDevSaves=true /CopyDragAndDroppedSaves=true /LiveCreateTextures=false /DebugLogSounds=false /MaxDevSaves=3000 /AutoReportAsserts=false /AutoDeleteExtraDevSaves=false /AutoDownloadSavePath=blank /AttachDxDiagToBugReports=false /AuthBasecampOnStartup=true /DisableAnalyticsInDebug=true" config: betakey: nightly-qa oslist: windows description: Debug x86 - executable: Debug\\x86\\Hades.exe + executable: "Debug\\\\x86\\\\Hades.exe" type: option1 - workingdir: Debug\\x86\\ - - arguments: >- - /c=..\\..\\ /steampowered /DirectLoadShell=true /DebugMessages=true /DebugKeysEnabled=true - /UnsafeDebugKeysEnabled=false /ShowFPS=false /PerfDashWarnings=false /AllowHardQuit=false - /UseInternalBugReporter=true /UseDevSaves=true /CopyDragAndDroppedSaves=true /LiveCreateTextures=false - /DebugLogSounds=false /MaxDevSaves=3000 /AutoReportAsserts=false /AutoDeleteExtraDevSaves=false - /AutoDownloadSavePath=blank /AttachDxDiagToBugReports=false /AuthBasecampOnStartup=true - /DisableAnalyticsInDebug=true + workingdir: "Debug\\\\x86\\\\" + - arguments: "/c=..\\\\..\\\\ /steampowered /DirectLoadShell=true /DebugMessages=true /DebugKeysEnabled=true /UnsafeDebugKeysEnabled=false /ShowFPS=false /PerfDashWarnings=false /AllowHardQuit=false /UseInternalBugReporter=true /UseDevSaves=true /CopyDragAndDroppedSaves=true /LiveCreateTextures=false /DebugLogSounds=false /MaxDevSaves=3000 /AutoReportAsserts=false /AutoDeleteExtraDevSaves=false /AutoDownloadSavePath=blank /AttachDxDiagToBugReports=false /AuthBasecampOnStartup=true /DisableAnalyticsInDebug=true" config: betakey: prev-nightly - osarch: '64' + osarch: "64" oslist: windows description: Debug - executable: Debug\\x64\\Hades.exe + executable: "Debug\\\\x64\\\\Hades.exe" type: option1 - workingdir: Debug\\x64\\ - - arguments: >- - /c=..\\..\\ /steampowered /DirectLoadShell=true /DebugMessages=true /DebugKeysEnabled=true - /UnsafeDebugKeysEnabled=false /ShowFPS=false /PerfDashWarnings=false /AllowHardQuit=false - /UseInternalBugReporter=true /UseDevSaves=true /CopyDragAndDroppedSaves=true /LiveCreateTextures=false - /DebugLogSounds=false /MaxDevSaves=3000 /AutoReportAsserts=false /AutoDeleteExtraDevSaves=false - /AutoDownloadSavePath=blank /AttachDxDiagToBugReports=false /AuthBasecampOnStartup=true - /DisableAnalyticsInDebug=true + workingdir: "Debug\\\\x64\\\\" + - arguments: "/c=..\\\\..\\\\ /steampowered /DirectLoadShell=true /DebugMessages=true /DebugKeysEnabled=true /UnsafeDebugKeysEnabled=false /ShowFPS=false /PerfDashWarnings=false /AllowHardQuit=false /UseInternalBugReporter=true /UseDevSaves=true /CopyDragAndDroppedSaves=true /LiveCreateTextures=false /DebugLogSounds=false /MaxDevSaves=3000 /AutoReportAsserts=false /AutoDeleteExtraDevSaves=false /AutoDownloadSavePath=blank /AttachDxDiagToBugReports=false /AuthBasecampOnStartup=true /DisableAnalyticsInDebug=true" config: betakey: prev-nightly - osarch: '32' + osarch: "32" oslist: windows description: Debug - executable: Debug\\x86\\Hades.exe + executable: "Debug\\\\x86\\\\Hades.exe" type: option1 - workingdir: Debug\\x86\\ - - arguments: >- - /c=..\\..\\ /steampowered /DirectLoadShell=true /DebugMessages=true /DebugKeysEnabled=true - /UnsafeDebugKeysEnabled=false /ShowFPS=false /PerfDashWarnings=false /AllowHardQuit=false - /UseInternalBugReporter=true /UseDevSaves=true /CopyDragAndDroppedSaves=true /LiveCreateTextures=false - /DebugLogSounds=false /MaxDevSaves=3000 /AutoReportAsserts=false /AutoDeleteExtraDevSaves=false - /AutoDownloadSavePath=blank /AttachDxDiagToBugReports=false /AuthBasecampOnStartup=true - /DisableAnalyticsInDebug=true + workingdir: "Debug\\\\x86\\\\" + - arguments: "/c=..\\\\..\\\\ /steampowered /DirectLoadShell=true /DebugMessages=true /DebugKeysEnabled=true /UnsafeDebugKeysEnabled=false /ShowFPS=false /PerfDashWarnings=false /AllowHardQuit=false /UseInternalBugReporter=true /UseDevSaves=true /CopyDragAndDroppedSaves=true /LiveCreateTextures=false /DebugLogSounds=false /MaxDevSaves=3000 /AutoReportAsserts=false /AutoDeleteExtraDevSaves=false /AutoDownloadSavePath=blank /AttachDxDiagToBugReports=false /AuthBasecampOnStartup=true /DisableAnalyticsInDebug=true" config: betakey: nightly-qa - osarch: '64' + osarch: "64" oslist: windows description: Release - executable: Release\\x64\\Hades.exe + executable: "Release\\\\x64\\\\Hades.exe" type: option2 - workingdir: Release\\x64\\ - - arguments: >- - /c=..\\ /steampowered /DirectLoadShell=true /DebugMessages=false /DebugKeysEnabled=false /ShowFPS=false - /PerfDashWarnings=false /VerboseScriptLogging=false /UnsafeDebugKeysEnabled=false /LiveCreateTextures=false + workingdir: "Release\\\\x64\\\\" + - arguments: "/c=..\\\\ /steampowered /DirectLoadShell=true /DebugMessages=false /DebugKeysEnabled=false /ShowFPS=false /PerfDashWarnings=false /VerboseScriptLogging=false /UnsafeDebugKeysEnabled=false /LiveCreateTextures=false" config: betakey: nightly-qa - osarch: '64' + osarch: "64" oslist: windows description: Ship - executable: x64\\Hades.exe + executable: "x64\\\\Hades.exe" type: option3 - workingdir: x64\\ - - arguments: >- - /c=..\\ /steampowered /DirectLoadShell=true /DebugMessages=false /DebugKeysEnabled=false /ShowFPS=false - /PerfDashWarnings=false /VerboseScriptLogging=false /UnsafeDebugKeysEnabled=false /LiveCreateTextures=false + workingdir: "x64\\\\" + - arguments: "/c=..\\\\ /steampowered /DirectLoadShell=true /DebugMessages=false /DebugKeysEnabled=false /ShowFPS=false /PerfDashWarnings=false /VerboseScriptLogging=false /UnsafeDebugKeysEnabled=false /LiveCreateTextures=false" config: betakey: techbeta - osarch: '64' + osarch: "64" oslist: windows description: Play Hades - executable: x64\\Hades.exe + executable: "x64\\\\Hades.exe" type: default - workingdir: x64\\ - - arguments: >- - /steampowered /DirectLoadShell=true /DebugMessages=false /DebugKeysEnabled=false /ShowFPS=false - /PerfDashWarnings=false /VerboseScriptLogging=false /UnsafeDebugKeysEnabled=false /UseDevSaves=false - /UseInternalBugReporter=false /LiveCreateTextures=false + workingdir: "x64\\\\" + - arguments: /steampowered /DirectLoadShell=true /DebugMessages=false /DebugKeysEnabled=false /ShowFPS=false /PerfDashWarnings=false /VerboseScriptLogging=false /UnsafeDebugKeysEnabled=false /UseDevSaves=false /UseInternalBugReporter=false /LiveCreateTextures=false config: oslist: macos - executable: ./Game.macOS.app/Contents/MacOS/Game.macOS + executable: "./Game.macOS.app/Contents/MacOS/Game.macOS" type: default - - arguments: >- - /c=..\\..\\ /steampowered /DirectLoadShell=true /DebugMessages=true /DebugKeysEnabled=true - /UnsafeDebugKeysEnabled=false /ShowFPS=false /PerfDashWarnings=false /AllowHardQuit=false - /UseInternalBugReporter=true /UseDevSaves=true /CopyDragAndDroppedSaves=true /LiveCreateTextures=false - /DebugLogSounds=false /MaxDevSaves=3000 /AutoReportAsserts=false /AutoDeleteExtraDevSaves=false - /AutoDownloadSavePath=blank /AttachDxDiagToBugReports=false /AuthBasecampOnStartup=true - /DisableAnalyticsInDebug=true + - arguments: "/c=..\\\\..\\\\ /steampowered /DirectLoadShell=true /DebugMessages=true /DebugKeysEnabled=true /UnsafeDebugKeysEnabled=false /ShowFPS=false /PerfDashWarnings=false /AllowHardQuit=false /UseInternalBugReporter=true /UseDevSaves=true /CopyDragAndDroppedSaves=true /LiveCreateTextures=false /DebugLogSounds=false /MaxDevSaves=3000 /AutoReportAsserts=false /AutoDeleteExtraDevSaves=false /AutoDownloadSavePath=blank /AttachDxDiagToBugReports=false /AuthBasecampOnStartup=true /DisableAnalyticsInDebug=true" config: betakey: nightly-qa - osarch: '64' + osarch: "64" oslist: windows description: Vulkan Debug - executable: Debug\\x64Vk\\Hades.exe + executable: "Debug\\\\x64Vk\\\\Hades.exe" type: none - workingdir: Debug\\x64\\ - - arguments: >- - /c=..\\..\\ /steampowered /DirectLoadShell=true /DebugMessages=true /DebugKeysEnabled=true - /UnsafeDebugKeysEnabled=false /ShowFPS=false /PerfDashWarnings=false /AllowHardQuit=false - /UseInternalBugReporter=true /UseDevSaves=true /CopyDragAndDroppedSaves=true /LiveCreateTextures=false - /DebugLogSounds=false /MaxDevSaves=3000 /AutoReportAsserts=false /AutoDeleteExtraDevSaves=false - /AutoDownloadSavePath=blank /AttachDxDiagToBugReports=false /AuthBasecampOnStartup=true - /DisableAnalyticsInDebug=true + workingdir: "Debug\\\\x64\\\\" + - arguments: "/c=..\\\\..\\\\ /steampowered /DirectLoadShell=true /DebugMessages=true /DebugKeysEnabled=true /UnsafeDebugKeysEnabled=false /ShowFPS=false /PerfDashWarnings=false /AllowHardQuit=false /UseInternalBugReporter=true /UseDevSaves=true /CopyDragAndDroppedSaves=true /LiveCreateTextures=false /DebugLogSounds=false /MaxDevSaves=3000 /AutoReportAsserts=false /AutoDeleteExtraDevSaves=false /AutoDownloadSavePath=blank /AttachDxDiagToBugReports=false /AuthBasecampOnStartup=true /DisableAnalyticsInDebug=true" config: betakey: nightly-qa - osarch: '64' + osarch: "64" oslist: windows description: Vulkan Release - executable: Release\\x64Vk\\Hades.exe + executable: "Release\\\\x64Vk\\\\Hades.exe" type: none - workingdir: Release\\x64Vk\\ - - arguments: >- - /c=..\\ /steampowered /DirectLoadShell=true /DebugMessages=false /DebugKeysEnabled=false /ShowFPS=false - /PerfDashWarnings=false /VerboseScriptLogging=false /UnsafeDebugKeysEnabled=false /LiveCreateTextures=false + workingdir: "Release\\\\x64Vk\\\\" + - arguments: "/c=..\\\\ /steampowered /DirectLoadShell=true /DebugMessages=false /DebugKeysEnabled=false /ShowFPS=false /PerfDashWarnings=false /VerboseScriptLogging=false /UnsafeDebugKeysEnabled=false /LiveCreateTextures=false" config: betakey: nightly-qa - osarch: '64' + osarch: "64" oslist: windows description: Vulkan Ship - executable: x64Vk\\Hades.exe + executable: "x64Vk\\\\Hades.exe" type: none - workingdir: x64Vk\\ - - arguments: >- - /c=..\\ /steampowered /DirectLoadShell=true /DebugMessages=false /DebugKeysEnabled=false /ShowFPS=false - /PerfDashWarnings=false /VerboseScriptLogging=false /UnsafeDebugKeysEnabled=false /LiveCreateTextures=false - /UseNativeGaInput=true /UseNativeGaInputNoControllers=false + workingdir: "x64Vk\\\\" + - arguments: "/c=..\\\\ /steampowered /DirectLoadShell=true /DebugMessages=false /DebugKeysEnabled=false /ShowFPS=false /PerfDashWarnings=false /VerboseScriptLogging=false /UnsafeDebugKeysEnabled=false /LiveCreateTextures=false /UseNativeGaInput=true /UseNativeGaInputNoControllers=false" config: - osarch: '64' + osarch: "64" oslist: windows - steamdeck: '0' description: Hades (Vulkan) - description_loc: - english: Hades (Vulkan) - executable: x64Vk\\Hades.exe + executable: "x64Vk\\\\Hades.exe" type: option2 - workingdir: x64Vk\\ - - arguments: >- - /c=..\\ /steampowered /DirectLoadShell=true /DebugMessages=false /DebugKeysEnabled=false /ShowFPS=false - /PerfDashWarnings=false /VerboseScriptLogging=false /UnsafeDebugKeysEnabled=false /LiveCreateTextures=false - /UseNativeGaInput=true /UseNativeGaInputNoControllers=false /UseSwapEffectDiscard=true /UseAnalytics=false + workingdir: "x64Vk\\\\" + - arguments: "/c=..\\\\ /steampowered /DirectLoadShell=true /DebugMessages=false /DebugKeysEnabled=false /ShowFPS=false /PerfDashWarnings=false /VerboseScriptLogging=false /UnsafeDebugKeysEnabled=false /LiveCreateTextures=false /UseNativeGaInput=true /UseNativeGaInputNoControllers=false /UseSwapEffectDiscard=true /UseAnalytics=false" config: - osarch: '64' + osarch: "64" oslist: windows - steamdeck: '0' description: Hades (32-bit) - description_loc: - english: Hades (32-bit) - executable: x86\\Hades.exe + executable: "x86\\\\Hades.exe" type: option3 - workingdir: x86\\ - - arguments: >- - /c=..\\ /steampowered /DirectLoadShell=true /DebugMessages=false /DebugKeysEnabled=false /ShowFPS=false - /PerfDashWarnings=false /VerboseScriptLogging=false /UnsafeDebugKeysEnabled=false /LiveCreateTextures=false + workingdir: "x86\\\\" + - arguments: "/c=..\\\\ /steampowered /DirectLoadShell=true /DebugMessages=false /DebugKeysEnabled=false /ShowFPS=false /PerfDashWarnings=false /VerboseScriptLogging=false /UnsafeDebugKeysEnabled=false /LiveCreateTextures=false" config: - osarch: '64' + osarch: "64" oslist: windows - steamdeck: '1' description: Hades (Vulkan - Steam Deck) - description_loc: - english: Hades (Vulkan - Steam Deck) - executable: x64Vk\\Hades.exe + executable: "x64Vk\\\\Hades.exe" type: option3 - workingdir: x64Vk\\ -'1145380': + workingdir: "x64Vk\\\\" +"1145380": installDir: Kakatte Koi Yo! launch: - config: oslist: windows executable: Kakatte Koi Yo.exe type: default -'1145400': {} -'1145410': +"1145400": {} +"1145410": installDir: Knight Swap launch: - config: @@ -51182,44 +50548,44 @@ type: default - config: oslist: macos - executable: Knight_Swap_Steam.app\\Contents\\MacOS\\Knight_Swap_Steam + executable: "Knight_Swap_Steam.app\\\\Contents\\\\MacOS\\\\Knight_Swap_Steam" type: default -'1145430': +"1145430": installDir: Agross launch: - executable: Agross.exe type: none -'1145440': {} -'1145450': - installDir: Mystery Case Files Moths to a Flame Collector's Edition +"1145440": {} +"1145450": + installDir: "Mystery Case Files Moths to a Flame Collector's Edition" launch: - config: oslist: windows executable: MysteryCaseFiles_MothsToAFlame_CE.exe type: default -'1145460': +"1145460": installDir: Memories on the Shoreline launch: - config: oslist: windows executable: Memories_on_the_Shoreline.exe type: default -'1145480': {} -'1145490': +"1145480": {} +"1145490": installDir: Operation Armstrong launch: - config: oslist: windows executable: OperationArmstrong.exe type: vr -'1145520': +"1145520": installDir: Wall Force launch: - config: oslist: windows - executable: \\WallForce\\Binaries\\Win64\\WallForce-Win64-Shipping.exe + executable: "\\\\WallForce\\\\Binaries\\\\Win64\\\\WallForce-Win64-Shipping.exe" type: default -'1145530': +"1145530": installDir: OneDay launch: - config: @@ -51233,7 +50599,7 @@ nameLocalized: english: One day schinese: 一天 -'1145550': +"1145550": installDir: 守护传说 launch: - config: @@ -51241,7 +50607,7 @@ description: 启动 executable: Game.exe type: default -'1145560': +"1145560": installDir: Marble Trap launch: - config: @@ -51252,92 +50618,92 @@ oslist: linux executable: Marble Trap.x86_64 type: none -'1145570': +"1145570": installDir: Ortharion project launch: - config: oslist: windows executable: Ortharion Project.exe type: none -'1145580': +"1145580": installDir: wolves team launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Wolves Team.exe type: vr nameLocalized: schinese: VR特种兵 -'1145590': +"1145590": installDir: Kastle Krush launch: - config: oslist: windows executable: KastleKrush.exe type: default -'1145600': {} -'1145630': {} -'1145660': +"1145600": {} +"1145630": {} +"1145660": installDir: Drift Of The Hill launch: - executable: Drift Of The Hill.exe type: none -'1145670': +"1145670": installDir: The Seven launch: - executable: The seven.exe type: none -'1145680': +"1145680": installDir: Pew-Pew Rocket launch: - config: oslist: windows executable: PewPewRocket.exe type: default -'1145740': +"1145740": installDir: In Search of a Home launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: InSearch.exe type: none -'1145770': +"1145770": installDir: Cuties Dungeon launch: - config: oslist: windows executable: CutiesDungeon.exe type: default -'1145780': +"1145780": installDir: Angry Golf launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Angrygolf.exe type: default -'1145810': +"1145810": installDir: Desert lost launch: - config: oslist: windows executable: game.exe type: default -'1145820': +"1145820": installDir: INFECTIS launch: - executable: INFECTIS.exe type: default -'1145860': +"1145860": installDir: Quantum Multiverse launch: - config: oslist: windows executable: Quantum Multiverse.exe type: default -'1145960': +"1145960": installDir: The White Door launch: - config: @@ -51348,22 +50714,22 @@ oslist: macos executable: TheWhiteDoor.app type: default -'1145970': +"1145970": installDir: Forest Home launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Forest Home.exe type: default -'1146000': +"1146000": installDir: Joe Blunt Up In Smoke launch: - config: oslist: windows executable: Joe Blunt Up In Smoke.exe type: default -'1146010': +"1146010": installDir: Art of Boxing launch: - config: @@ -51376,52 +50742,52 @@ type: default - config: oslist: macos - executable: Contents\\MacOS\\Art Of Boxing + executable: "Contents\\\\MacOS\\\\Art Of Boxing" type: default -'1146040': {} -'1146070': {} -'1146090': +"1146040": {} +"1146070": {} +"1146090": installDir: Flint launch: - config: oslist: windows - executable: Flint\\Flint.exe + executable: "Flint\\\\Flint.exe" type: default -'1146100': +"1146100": installDir: The Rising of the Shield Hero Relive The Animation launch: - config: oslist: windows executable: TheRisingOfTheShieldHero ReliveTheAnimation.exe type: default -'1146160': +"1146160": installDir: The Tomb of Argazfell launch: - config: oslist: windows executable: The_Tomb_of_Argazfell.exe type: none -'1146170': +"1146170": installDir: KingSim launch: - config: oslist: windows executable: KingSim.exe type: none -'1146210': +"1146210": installDir: Adam Robot World launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Adam.exe type: default nameLocalized: - english: 'Adam: Robot World' + english: "Adam: Robot World" schinese: 亚当:机器人世界 tchinese: 亚当:机器人世界 -'1146220': {} -'1146230': +"1146220": {} +"1146230": installDir: Spellsword Cards DungeonTop launch: - executable: Dungeontop.exe @@ -51429,69 +50795,69 @@ nameLocalized: schinese: 魔域地牢 DungeonTop tchinese: 魔域地牢 DungeonTop -'1146240': {} -'1146250': +"1146240": {} +"1146250": installDir: Seasons Girls launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Seasons Girls.exe type: default -'1146280': - installDir: ' Первых Поход' +"1146280": + installDir: " Первых Поход" launch: - config: oslist: windows executable: Horace First Trip.exe type: none nameLocalized: - english: 'Horace:First Trip' - russian: 'Гораций: Первый Поход' -'1146300': + english: "Horace:First Trip" + russian: "Гораций: Первый Поход" +"1146300": installDir: Land of War - The Beginning launch: - executable: Land_of_War.exe type: default -'1146310': +"1146310": installDir: Beyond a Steel Sky launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: BASS2.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: BASS2_Launcher.sh type: default -'1146330': +"1146330": installDir: Virulent Addiction launch: - executable: VA.exe type: config -'1146350': +"1146350": installDir: Urban riots launch: - config: oslist: windows executable: game.exe type: default -'1146360': +"1146360": installDir: Grey An Alien Dream launch: - config: oslist: windows executable: Grey - An alien dream.exe type: none -'1146370': +"1146370": installDir: Master of Magic launch: - description: Master of Magic executable: Launcher.exe type: default -'1146390': +"1146390": installDir: Where Are We Now launch: - config: @@ -51500,31 +50866,31 @@ type: none - config: oslist: macos - executable: wherearewenow.app\\Contents\\MacOS\\nwjs + executable: "wherearewenow.app\\\\Contents\\\\MacOS\\\\nwjs" type: none - config: oslist: linux executable: WhereAreWeNow type: none -'1146450': {} -'1146480': +"1146450": {} +"1146480": installDir: DriftWay launch: - executable: Drift Way.exe type: default -'1146500': +"1146500": installDir: Adventure Slime launch: - executable: Adventure Slime.exe type: default -'1146510': +"1146510": installDir: Deep Sleep Trilogy launch: - config: oslist: windows executable: DeepSleep.exe type: default -'1146560': +"1146560": installDir: Drawn Down Abyss launch: - config: @@ -51535,7 +50901,7 @@ oslist: linux executable: Drawn Down Abyss type: default -'1146590': +"1146590": installDir: Ultima Defesa launch: - config: @@ -51543,7 +50909,7 @@ description: Launch executable: ultima_defesa.exe type: default -'1146600': +"1146600": installDir: For the People launch: - config: @@ -51554,7 +50920,7 @@ betakey: test_101xp oslist: windows description: With microlauncher - executable: microlauncher\\for-the-people-101xp-micro-launcher.exe + executable: "microlauncher\\\\for-the-people-101xp-micro-launcher.exe" type: default - config: betakey: beta_1 @@ -51576,113 +50942,113 @@ type: default nameLocalized: english: For the People -'1146630': - installDir: Yokai's Secret +"1146630": + installDir: "Yokai's Secret" launch: - config: oslist: windows - executable: Yokai's Secret.exe + executable: "Yokai's Secret.exe" type: none nameLocalized: - english: Yokai's Secret + english: "Yokai's Secret" japanese: 妖語り schinese: 妖语 tchinese: 妖語 -'1146670': +"1146670": nameLocalized: schinese: 美丽与暴力:女武神 -'1146700': +"1146700": installDir: Battle Sorcerer launch: - config: oslist: windows executable: BattleSorcerers.exe type: vr -'1146710': {} -'1146730': +"1146710": {} +"1146730": installDir: Void Of Heroes launch: - config: oslist: windows executable: VoidOfHeroes.exe type: default -'1146780': +"1146780": installDir: Monster planet launch: - config: oslist: windows executable: game.exe type: default -'1146810': +"1146810": installDir: LucidVR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Phantom-Astronaut-Lucid.exe type: vr -'1146820': {} -'1146880': +"1146820": {} +"1146880": installDir: RRRR3 launch: - - arguments: '@f+ @INFOOFF' + - arguments: "@f+ @INFOOFF" config: oslist: windows description: Full screen executable: RRRR3.win32_steam.exe type: option1 - - arguments: '@f1920x1080 @z0.9 @INFOOFF' + - arguments: "@f1920x1080 @z0.9 @INFOOFF" config: oslist: windows description: Windowed executable: RRRR3.win32_steam.exe type: option2 -'1146890': +"1146890": installDir: MMX launch: - - arguments: '@f+ @INFOOFF' + - arguments: "@f+ @INFOOFF" config: oslist: windows description: Full screen executable: MMX.win32_steam.exe type: option1 - - arguments: '@f1920x1080 @z0.9 @INFOOFF' + - arguments: "@f1920x1080 @z0.9 @INFOOFF" config: oslist: windows description: Windowed executable: MMX.win32_steam.exe type: option2 -'1146910': +"1146910": installDir: Atomorf2 launch: - - arguments: '@f+ @INFOOFF' + - arguments: "@f+ @INFOOFF" config: oslist: windows description: Full screen executable: Atomorf2.win32_steam.exe type: option1 - - arguments: '@f1920x1080 @z0.9 @INFOOFF' + - arguments: "@f1920x1080 @z0.9 @INFOOFF" config: oslist: windows description: Windowed executable: Atomorf2.win32_steam.exe type: option2 -'1146920': +"1146920": installDir: Xenociders launch: - config: oslist: windows executable: Xenociders.exe type: vr -'1146940': +"1146940": installDir: Iwilleatyou launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ServerProject.exe type: default -'1146950': +"1146950": installDir: HentaiGirlFantasy launch: - config: @@ -51693,7 +51059,7 @@ oslist: macos executable: HentaiGirlFantasy.app type: default -'1146970': +"1146970": installDir: My Vow to My Liege launch: - config: @@ -51708,21 +51074,21 @@ english: My Vow to My Liege schinese: 与君盟 tchinese: 與君盟 -'1147000': {} -'1147020': +"1147000": {} +"1147020": installDir: Quest for Conquest launch: - - executable: Quest for Conquest\\Quest for Conquest.exe + - executable: "Quest for Conquest\\\\Quest for Conquest.exe" type: default -'1147030': +"1147030": installDir: The Terrible Old Man launch: - executable: The Terrible OId Man.exe type: default - executable: winsetup.exe type: config -'1147080': {} -'1147110': +"1147080": {} +"1147110": installDir: The Long Gate launch: - config: @@ -51735,76 +51101,76 @@ description: Launch executable: TheLongGate.sh type: default -'1147130': +"1147130": installDir: Countryballs Modern Ballfare launch: - config: oslist: windows executable: CountryBallProject.exe type: default -'1147140': +"1147140": installDir: Funny Road Chase Simulator launch: - executable: Funny Road Chase Simulator.exe type: none -'1147170': +"1147170": installDir: Escoteiros Espaciais launch: - config: oslist: windows executable: Escoteiros Espaciais.exe type: default -'1147180': {} -'1147200': +"1147180": {} +"1147200": installDir: SnL launch: - executable: SnL.exe type: none -'1147220': - installDir: Grim Tales Guest From The Future Collector's Edition +"1147220": + installDir: "Grim Tales Guest From The Future Collector's Edition" launch: - config: oslist: windows executable: GrimTales_GuestFromTheFuture_CE.exe type: default -'1147240': +"1147240": installDir: Rogue Waves launch: - config: oslist: windows executable: Rogue Waves.exe type: none -'1147270': {} -'1147280': +"1147270": {} +"1147280": installDir: Column on the Sea launch: - config: oslist: windows executable: Column on the Sea.exe type: default -'1147330': +"1147330": installDir: Lifeless Moon launch: - config: oslist: windows executable: Lifeless Moon.exe -'1147370': - installDir: The Empire's Crisis +"1147370": + installDir: "The Empire's Crisis" launch: - config: oslist: windows executable: Game.exe type: default -'1147390': +"1147390": installDir: Punchline!! launch: - config: oslist: windows executable: Punchline!!.exe type: default -'1147420': {} -'1147430': {} -'1147450': +"1147420": {} +"1147430": {} +"1147450": installDir: Divine Miko Koyori launch: - executable: Game.exe @@ -51812,23 +51178,23 @@ nameLocalized: schinese: 御神巫女 tchinese: 御神巫女 -'1147460': +"1147460": installDir: Fail to Win launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: FailToWin.exe type: default - config: oslist: macos - executable: Contents\\MacOS\\FailToWin + executable: "Contents\\\\MacOS\\\\FailToWin" type: default - config: oslist: linux executable: FailToWin.x86_64 type: default -'1147490': +"1147490": installDir: Frontline Western Front launch: - config: @@ -51836,32 +51202,32 @@ executable: Frontline Western Front.exe type: none nameLocalized: - english: 'Frontline: Western Front' -'1147500': - installDir: A Gay's Life + english: "Frontline: Western Front" +"1147500": + installDir: "A Gay's Life" launch: - - executable: A Gay's Life.exe + - executable: "A Gay's Life.exe" type: default -'1147510': +"1147510": installDir: Hentai Asmodeus launch: - executable: Hentai Asmodeus.exe type: default -'1147520': +"1147520": installDir: Super Bora Dragon Eyes launch: - config: oslist: windows executable: Super Bora Dragon Eyes.exe type: default -'1147550': +"1147550": installDir: Not For Broadcast launch: - executable: NotForBroadcast.exe type: default nameLocalized: schinese: 不予播出 ( Not For Broadcast ) -'1147560': +"1147560": installDir: Skul launch: - config: @@ -51870,76 +51236,74 @@ type: default - config: oslist: macos - executable: Skul.app\\Contents\\MacOS\\Skul + executable: "Skul.app\\\\Contents\\\\MacOS\\\\Skul" type: default - config: oslist: linux executable: Skul.x86_64 type: default nameLocalized: - schinese: '小骨:英雄杀手(Skul: The Hero Slayer)' -'1147600': + schinese: "小骨:英雄杀手(Skul: The Hero Slayer)" +"1147600": installDir: Star Police launch: - config: oslist: windows executable: StartPolice.exe type: default -'1147620': +"1147620": installDir: The lost dungeon of knight launch: - executable: The Lost Dungeon Of Knight.exe type: default -'1147640': +"1147640": installDir: Summer Knights launch: - config: oslist: windows executable: Summer Knights.exe type: default -'1147660': +"1147660": installDir: ArcheAge launch: - - arguments: '-provider=steam -env=live -extra1=unchained' + - arguments: "-provider=steam -env=live -extra1=unchained" description: Launch - description_loc: - english: Launch executable: ArcheAge_Launcher.exe type: default -'1147670': +"1147670": installDir: Hentai Fetish Tycoon launch: - config: oslist: windows executable: Hentai Fetish Tycoon.exe type: default -'1147690': +"1147690": installDir: NGU IDLE launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: NGUIdle.exe type: default -'1147710': +"1147710": installDir: Cute Blocks launch: - executable: Cute Blocks.exe type: none -'1147750': +"1147750": installDir: Fishy launch: - arguments: N/A config: betakey: N/A - osarch: '64' + osarch: "64" oslist: windows ownsdlc: N/A description: Launch Option executable: Fishy type: default workingdir: N/A -'1147760': +"1147760": installDir: The End of an Actress launch: - config: @@ -51952,7 +51316,7 @@ description: Launch executable: The_End_of_an_Actress.sh type: default -'1147840': +"1147840": installDir: HyperStorm launch: - config: @@ -51963,16 +51327,16 @@ oslist: windows executable: HyperStorm_OpenVR.bat type: vr -'1147850': +"1147850": installDir: Brother Brother launch: - config: oslist: windows executable: Brother Brother.exe type: default -'1147870': {} -'1147880': {} -'1147890': +"1147870": {} +"1147880": {} +"1147890": installDir: Bonfire Peaks launch: - config: @@ -51987,9 +51351,9 @@ oslist: linux executable: bonfirepeaks.x86_64 type: default -'1147900': {} -'1147910': {} -'1147940': +"1147900": {} +"1147910": {} +"1147940": installDir: 3dSen launch: - config: @@ -52001,33 +51365,33 @@ executable: 3dSen.app type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: 3dSen.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: 3dSen.x86_64 type: none -'1147950': +"1147950": installDir: Shio And Mysterious Forest launch: - executable: Shio.exe type: none -'1147960': +"1147960": installDir: Okaeri launch: - executable: Okaeri.exe type: none -'1147970': +"1147970": installDir: Abode 2 launch: - config: oslist: windows executable: Abode 2.exe type: vr -'1147980': +"1147980": installDir: GeneRainWindTower launch: - config: @@ -52036,11 +51400,11 @@ type: none nameLocalized: schinese: 基因雨:风塔 -'11480': +"11480": installDir: Soldiers Heroes of World War 2 launch: - executable: soldiers.exe -'1148010': +"1148010": installDir: Love Chan launch: - arguments: b @@ -52048,22 +51412,22 @@ oslist: windows executable: Love Chan.exe type: default -'1148030': +"1148030": installDir: Esport Test Toolkit launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ETT.exe type: default -'1148040': +"1148040": installDir: polyfuru feat. ASANO RURI ポリフる feat. 朝ノ瑠璃 launch: - config: oslist: windows executable: polyfuru_ruri.exe type: vr -'1148080': +"1148080": installDir: Rainbow Pixel launch: - config: @@ -52074,7 +51438,7 @@ oslist: macos executable: Rainbow Pixel.app type: default -'1148090': +"1148090": installDir: Solitaire Game Halloween launch: - config: @@ -52085,19 +51449,19 @@ oslist: macos executable: Solitaire Game.Halloween.app type: default -'1148100': +"1148100": installDir: Life on the hook launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: \\Life_on_the_hook.exe + executable: "\\\\Life_on_the_hook.exe" type: default -'1148110': +"1148110": installDir: Moysenland launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Moysenland.exe type: default @@ -52105,13 +51469,13 @@ oslist: macos executable: Moysenland.app type: default -'1148120': +"1148120": installDir: This Picture launch: - executable: ThisPicture.exe type: none -'1148130': {} -'1148150': +"1148130": {} +"1148150": installDir: Man of the House launch: - config: @@ -52122,18 +51486,18 @@ oslist: macos executable: Contents/MacOS/Man of the house.app type: default -'1148200': +"1148200": installDir: Fado launch: - config: oslist: windows executable: Game.exe type: none -'1148230': {} -'1148260': +"1148230": {} +"1148260": installDir: King of Halloween launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows executable: nw.exe @@ -52142,30 +51506,28 @@ oslist: macos executable: nwjs.app type: none -'1148270': +"1148270": installDir: thefinalbattle launch: - - arguments: >- - .\\dosbox_windows\\dosbox -conf \"dosbox_the_final_battle.conf\" -exit ^ -c \"mount c ..\\thefinalbattle\" ^ -c - \"c:\" ^ -c \"TFB.exe /e\" -noconsole -fullscreen -exit ^ + - arguments: ".\\\\dosbox_windows\\\\dosbox -conf \\\"dosbox_the_final_battle.conf\\\" -exit ^ -c \\\"mount c ..\\\\thefinalbattle\\\" ^ -c \\\"c:\\\" ^ -c \\\"TFB.exe /e\\\" -noconsole -fullscreen -exit ^" config: oslist: windows - executable: dosbox_windows\\dosbox.exe + executable: "dosbox_windows\\\\dosbox.exe" type: none - config: oslist: linux executable: runthefinalbattle.sh type: none -'1148290': +"1148290": installDir: Thy Kingdom Crumble launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: Thy Kingdom Crumble.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: Thy Kingdom Crumble.exe type: default @@ -52175,66 +51537,58 @@ type: default - config: oslist: macos - executable: Thy Kingdom Crumble.app\\Contents\\MacOS\\Thy Kingdom Crumble + executable: "Thy Kingdom Crumble.app\\\\Contents\\\\MacOS\\\\Thy Kingdom Crumble" type: default -'1148300': +"1148300": installDir: War Battle Royale Battlegrounds launch: - executable: War Battle Royale Battlegrounds.exe type: none -'1148310': {} -'1148320': +"1148310": {} +"1148320": installDir: Masteroid launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: Masteroid.exe type: none -'1148330': +"1148330": installDir: legendofthesword launch: - - arguments: >- - .\\dosbox_windows\\dosbox -conf \"dosbox_legend_of_the_sword.conf\" -exit ^ -c \"mount c ..\\legendofthesword\" - ^ -c \"c:\" ^ -c \"Loadfix.com legend.exe E\" -noconsole -fullscreen -exit ^ + - arguments: ".\\\\dosbox_windows\\\\dosbox -conf \\\"dosbox_legend_of_the_sword.conf\\\" -exit ^ -c \\\"mount c ..\\\\legendofthesword\\\" ^ -c \\\"c:\\\" ^ -c \\\"Loadfix.com legend.exe E\\\" -noconsole -fullscreen -exit ^" config: oslist: windows - executable: dosbox_windows\\dosbox.exe + executable: "dosbox_windows\\\\dosbox.exe" type: none - config: oslist: linux executable: runLegend.sh type: none -'1148390': +"1148390": installDir: Alien Earth launch: - executable: Alien.exe type: none -'1148400': +"1148400": installDir: Blooming Nightshade launch: - config: - betakey: 'v9_release, v10_release, v11_release' + betakey: "v9_release, v10_release, v11_release" oslist: windows description: v9/v10/v11 Launcher - description_loc: - english: v9/v10/v11 Launcher executable: BloomingNightshade.exe type: default - config: - betakey: 'v9_release, v10_release, v11_release' + betakey: "v9_release, v10_release, v11_release" oslist: linux description: v9/v10/v11 Launcher - description_loc: - english: v9/v10/v11 Launcher executable: BloomingNightshade.sh type: default - config: - betakey: 'v9_release, v10_release, v11_release' + betakey: "v9_release, v10_release, v11_release" oslist: macos description: v9/v10/v11 Launcher - description_loc: - english: v9/v10/v11 Launcher executable: BloomingNightshade.app type: default - config: @@ -52249,15 +51603,15 @@ oslist: linux executable: Blooming_Nightshade.sh type: default -'1148410': {} -'1148420': +"1148410": {} +"1148420": installDir: Kunoichi Ninja launch: - config: oslist: windows executable: game.exe type: default -'1148450': +"1148450": installDir: Jackie launch: - config: @@ -52266,35 +51620,35 @@ type: default - config: oslist: macos - executable: DJ1_MacOS.app\\Contents\\MacOS\\DJ1_MacOS + executable: "DJ1_MacOS.app\\\\Contents\\\\MacOS\\\\DJ1_MacOS" type: default -'1148460': +"1148460": installDir: Inside The Cubes launch: - config: oslist: windows executable: Kup_E3.exe type: vr -'1148470': +"1148470": installDir: Killjoy Hunter Yuuko launch: - executable: ef_action.exe type: default -'1148480': +"1148480": installDir: SPACERIFT Arcanum System launch: - config: oslist: windows executable: SPACERIFT Arcanum System.exe type: none -'1148490': +"1148490": installDir: Second Front launch: - config: oslist: windows executable: Second Front.exe type: default -'1148500': +"1148500": installDir: PuPaiPo Space Deluxe launch: - config: @@ -52305,7 +51659,7 @@ oslist: linux executable: PuPaiPoSpaceDX type: default -'1148510': +"1148510": installDir: PrettyAngel launch: - config: @@ -52316,7 +51670,7 @@ oslist: macos executable: PrettyAngel.app type: default -'1148540': +"1148540": installDir: Griddlers Victorian Picnic launch: - config: @@ -52327,7 +51681,7 @@ oslist: macos executable: Griddlers Victorian Picnic.app type: default -'1148550': +"1148550": installDir: TERROR SQUID launch: - config: @@ -52336,89 +51690,85 @@ type: default - config: oslist: macos - executable: TerrorSquid.app\\Contents\\MacOS\\TERROR SQUID + executable: "TerrorSquid.app\\\\Contents\\\\MacOS\\\\TERROR SQUID" type: default -'1148560': +"1148560": installDir: Buccaneers launch: - config: oslist: windows executable: Buccaneers.exe type: default - - arguments: '--enable-vr' + - arguments: "--enable-vr" config: oslist: windows description: game - description_loc: - english: game executable: Buccaneers.exe type: vr -'1148570': +"1148570": installDir: Blastworld launch: - executable: blastworld.exe type: vr - executable: blastworld.exe type: othervr -'1148590': +"1148590": installDir: Doom 64 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: DOOM64_x64.exe type: default -'1148630': +"1148630": installDir: Hot Takes launch: - config: oslist: windows - executable: HotTakes\\HotTakes.exe + executable: "HotTakes\\\\HotTakes.exe" type: default - config: oslist: linux - executable: HotTakes\\HotTakes.sh + executable: "HotTakes\\\\HotTakes.sh" type: default - config: oslist: macos - executable: HotTakes\\HotTakes.app + executable: "HotTakes\\\\HotTakes.app" type: default -'1148650': +"1148650": installDir: The Legend of Bum-Bo launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: the legend of bum-bo.exe type: default -'1148670': +"1148670": installDir: annalsofrome launch: - - arguments: >- - .\\dosbox_windows\\dosbox -exit -conf \"dosbox_annalsofrome.conf\"^ -c \"mount C ..\\annalsofrome\"^ -c \"C:\"^ - -c \"cd AOR\"^ -c \"AOR.exe\" -noconsole -fullscreen -exit ^ + - arguments: ".\\\\dosbox_windows\\\\dosbox -exit -conf \\\"dosbox_annalsofrome.conf\\\"^ -c \\\"mount C ..\\\\annalsofrome\\\"^ -c \\\"C:\\\"^ -c \\\"cd AOR\\\"^ -c \\\"AOR.exe\\\" -noconsole -fullscreen -exit ^" config: oslist: windows - executable: dosbox_windows\\dosbox.exe + executable: "dosbox_windows\\\\dosbox.exe" type: none - config: oslist: linux executable: runAnnalsofrome.sh type: none -'1148680': +"1148680": installDir: austerlitz launch: - - arguments: \"ALITZ.EXE\" \"dosbox_austerlitz.conf\" -exit -fullscreen -noconsole + - arguments: "\\\"ALITZ.EXE\\\" \\\"dosbox_austerlitz.conf\\\" -exit -fullscreen -noconsole" config: oslist: windows - executable: dosbox_windows\\dosbox.exe + executable: "dosbox_windows\\\\dosbox.exe" type: none - config: oslist: linux executable: runAusterlitz.sh type: none -'1148690': {} -'1148700': +"1148690": {} +"1148700": installDir: Deadtime_Defenders launch: - config: @@ -52429,43 +51779,43 @@ oslist: macos executable: DeadtimeDefenders.app type: default -'1148710': +"1148710": installDir: Miriel Saga launch: - config: oslist: windows executable: Miriel Saga.exe type: default -'1148730': +"1148730": installDir: Errant Kingdom launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ErrantKingdom.exe type: default - config: oslist: macos - executable: Contents\\MacOS\\ErrantKingdom + executable: "Contents\\\\MacOS\\\\ErrantKingdom" type: default - config: oslist: linux executable: EK_Linux.x86_64 type: default - config: - osarch: '64' + osarch: "64" oslist: windows description: 32bit executable: ErrantKingdom.exe type: default -'1148740': +"1148740": installDir: Far From Orbit launch: - config: oslist: windows executable: Far From Orbit.exe type: default -'1148750': +"1148750": installDir: AEU launch: - config: @@ -52473,11 +51823,11 @@ executable: AEU.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: AEU.x86_64 type: none -'1148760': +"1148760": installDir: Exocolonist launch: - config: @@ -52486,17 +51836,17 @@ type: default - config: oslist: macos - executable: Exocolonist.app\\Contents\\MacOS\\Exocolonist + executable: "Exocolonist.app\\\\Contents\\\\MacOS\\\\Exocolonist" type: default - config: oslist: linux executable: Exocolonist.x86_64 type: default -'1148770': +"1148770": installDir: Not An Angels launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: NotAnAngels.exe type: default @@ -52504,27 +51854,27 @@ oslist: macos executable: NotAnAngels.app/Contents/MacOS/NotAnAngels type: default -'1148810': +"1148810": installDir: TaskForceElite launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TaskForceElite.exe type: default -'1148830': {} -'1148840': {} -'1148850': {} -'1148860': {} -'1148890': +"1148830": {} +"1148840": {} +"1148850": {} +"1148860": {} +"1148890": installDir: Protect the campus launch: - config: oslist: windows executable: game.exe type: default -'1148900': {} -'1148920': +"1148900": {} +"1148920": installDir: Hentai Pix launch: - arguments: b @@ -52532,27 +51882,27 @@ oslist: windows executable: Hentai Pix.exe type: default -'1148930': +"1148930": installDir: Chuusotsu! 1.5th Graduation The Moving Castle launch: - executable: Chuusotsu! 1.5th Graduation.exe type: none -'1148940': +"1148940": installDir: Hentai Mizugi launch: - config: oslist: windows executable: Hentai Mizugi.exe type: none -'1149010': {} -'1149070': +"1149010": {} +"1149070": installDir: Skyrift launch: - config: oslist: windows executable: Skyrift.exe type: none -'1149080': +"1149080": installDir: Swords and Sandals Spartacus launch: - config: @@ -52561,9 +51911,9 @@ type: default - config: oslist: macos - executable: Swords and Sandals Spartacus.app\\Contents\\MacOS\\Swords and Sandals Spartacus + executable: "Swords and Sandals Spartacus.app\\\\Contents\\\\MacOS\\\\Swords and Sandals Spartacus" type: default -'1149090': +"1149090": installDir: Hospital 9 launch: - config: @@ -52572,28 +51922,15 @@ type: default - config: oslist: windows - ownsdlc: '1193360' + ownsdlc: "1193360" description: Puzzles (DLC1) - description_loc: - english: Puzzles (DLC1) - japanese: パズル(DLC1) - executable: DLC\\Hospital 9 - Puzzles.exe + executable: "DLC\\\\Hospital 9 - Puzzles.exe" type: option1 - config: oslist: windows - ownsdlc: '1417100' - description: Mai's Report (DLC2) - description_loc: - brazilian: Relatório de Mai(DLC2) - english: Mai's Report (DLC2) - french: Rapport de Mai(DLC2) - german: Mai's Bericht(DLC2) - japanese: 舞のレポート(DLC2) - latam: Informe de Mai(DLC2) - portuguese: Relatório de Mai(DLC2) - schinese: Mai的报告(DLC2) - spanish: Informe de Mai(DLC2) - executable: DLC2\\Hospital 9 - Mai's Report.exe + ownsdlc: "1417100" + description: "Mai's Report (DLC2)" + executable: "DLC2\\\\Hospital 9 - Mai's Report.exe" type: option2 nameLocalized: french: Hôpital 9 @@ -52602,26 +51939,26 @@ portuguese: Hospital 9 schinese: 医院 9 spanish: Hospital 9 -'1149100': {} -'1149120': +"1149100": {} +"1149120": installDir: Drift 1969 launch: - executable: Drift 1969.exe type: none -'1149180': +"1149180": installDir: The Last Promise launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" executable: Game.exe type: none -'1149190': +"1149190": installDir: Errant Heart launch: - config: oslist: windows executable: Errant_Heart_Public_Release_1.0.exe type: none -'1149200': +"1149200": installDir: Spirit Fighters launch: - config: @@ -52632,7 +51969,7 @@ oslist: linux executable: Spirit Fighters.x86_64 type: default -'1149210': +"1149210": installDir: TurtleRush launch: - config: @@ -52640,37 +51977,37 @@ description: Launch executable: ProjectTurtle.exe type: default -'1149220': +"1149220": installDir: P.3 launch: - config: oslist: windows executable: P.3.exe type: default -'1149290': +"1149290": installDir: Derpy Conga launch: - config: oslist: windows executable: derpyconga.exe type: none -'1149330': {} -'1149340': +"1149330": {} +"1149340": installDir: Those crazy crows launch: - executable: Stinky Doo Doo Boy.exe type: default -'1149370': +"1149370": installDir: Broken Spell launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Broken Spell.exe type: none nameLocalized: schinese: 驱魔道人 -'1149400': +"1149400": installDir: TheYellowKing launch: - config: @@ -52682,33 +52019,29 @@ executable: YellowKing-Mac.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: TheYellowKing.x86_64 type: default -'1149430': +"1149430": installDir: KiKiMiMi2 听能力搜查官2 launch: - executable: game.exe type: none -'1149440': +"1149440": installDir: Dragon Marked For Death launch: - executable: game.exe type: none -'1149450': {} -'1149460': +"1149450": {} +"1149460": installDir: Icarus launch: - description: Icarus (DX11) - description_loc: - english: Icarus (DX11) executable: Icarus.exe type: option1 - - arguments: '-dx12' + - arguments: "-dx12" description: Icarus (DX12) performance may be impacted - description_loc: - english: Icarus (DX12) performance may be impacted executable: icarus.exe type: option2 nameLocalized: @@ -52716,22 +52049,22 @@ koreana: ICARUS 외계 행성 서바이벌 schinese: 翼星求生 ICARUS tchinese: 翼星求生 ICARUS -'1149480': {} -'1149490': {} -'1149500': {} -'1149510': +"1149480": {} +"1149490": {} +"1149500": {} +"1149510": installDir: The Leopard Catgirl in Miaoli launch: - config: oslist: windows - executable: lib\\windows-i686\\The Leopard Catgirl in Miaoli.exe + executable: "lib\\\\windows-i686\\\\The Leopard Catgirl in Miaoli.exe" type: default nameLocalized: english: The Leopard Catgirl in Miaoli japanese: 苗栗国のヤママヤ―少女 schinese: 苗栗国的石虎少女 tchinese: 苗栗國的石虎少女 -'1149550': +"1149550": installDir: Utawarerumono - Mask of Deception launch: - config: @@ -52739,59 +52072,51 @@ executable: Utawarerumono Mask of Deception.exe type: default nameLocalized: - english: 'Utawarerumono: Mask of Deception' + english: "Utawarerumono: Mask of Deception" japanese: うたわれるもの 偽りの仮面 tchinese: 受讚頌者 虛偽的假面 -'1149560': +"1149560": installDir: DEATHVERSE launch: - config: oslist: windows executable: EAGGame.exe - - arguments: '-fullcrashdumpalways' + - arguments: "-fullcrashdumpalways" config: betakey: dev-development oslist: windows description: Use fulldump - description_loc: - english: Use fulldump executable: EAGGame.exe - - arguments: '-fullcrashdumpalways' + - arguments: "-fullcrashdumpalways" config: betakey: demo-development oslist: windows description: Use fulldump - description_loc: - english: Use fulldump executable: EAGGame.exe - - arguments: '-ServerEnv=qatest' + - arguments: "-ServerEnv=qatest" config: betakey: qatest-development description: qatestに接続 - description_loc: - english: qatestに接続 executable: EAGGame.exe - config: betakey: demo-shipping_sub oslist: windows - executable: EAGGame\\Binaries\\Win64\\EAGGame-Win64-Shipping.exe - - arguments: '-ServerEnv=qatest' + executable: "EAGGame\\\\Binaries\\\\Win64\\\\EAGGame-Win64-Shipping.exe" + - arguments: "-ServerEnv=qatest" config: betakey: sandbox1 description: qatestに接続 - description_loc: - english: qatestに接続 executable: EAGGame.exe -'1149580': +"1149580": installDir: Super Korotama launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: BallMachine.exe type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: BallMachine.sh type: none @@ -52799,14 +52124,14 @@ oslist: macos executable: BallMachine.app type: none -'1149590': +"1149590": installDir: Dreamland Solitaire launch: - config: oslist: windows executable: DreamlandSolitaire.exe type: default -'1149620': +"1149620": installDir: Gas Station Simulator launch: - config: @@ -52820,19 +52145,19 @@ nameLocalized: schinese: 加油站大亨 tchinese: 加油站大亨 -'1149630': +"1149630": installDir: Project Gemini launch: - executable: Project Gemini.exe type: default -'1149660': +"1149660": installDir: SeekGirlTwo launch: - config: oslist: windows executable: SeekGirlTwo.exe type: default -'1149690': +"1149690": installDir: Hexogin launch: - config: @@ -52847,38 +52172,38 @@ oslist: linux executable: Hexogin.x86 type: default -'1149700': +"1149700": installDir: Dark Veer launch: - config: oslist: windows executable: Dark Veer.exe type: default -'1149710': +"1149710": installDir: Tesla Force launch: - config: oslist: windows executable: TF.exe type: default -'1149770': {} -'1149800': +"1149770": {} +"1149800": installDir: Xenrai launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: Xenrai\\Xenrai.exe + executable: "Xenrai\\\\Xenrai.exe" type: none -'1149830': - installDir: Josie's Tank +"1149830": + installDir: "Josie's Tank" launch: - config: oslist: windows - executable: Josie's Tank.exe + executable: "Josie's Tank.exe" type: none -'1149850': {} -'1149860': +"1149850": {} +"1149860": installDir: Arsenal Demon launch: - config: @@ -52893,34 +52218,34 @@ oslist: linux executable: Arsenal Demon.x86_64 type: default -'1149900': +"1149900": installDir: Cheer and Track launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: CT.exe type: default -'1149910': +"1149910": installDir: Binky show launch: - config: oslist: windows executable: Binky.exe type: default -'11500': +"11500": installDir: Race Driver 3 launch: - executable: RD3.exe -'1150010': {} -'1150040': +"1150010": {} +"1150040": installDir: Go All Out Free To Play launch: - config: oslist: windows executable: GoAllOut.exe type: default -'1150070': +"1150070": installDir: Mizari Loves Company launch: - config: @@ -52935,11 +52260,11 @@ oslist: macos executable: Mizari_beta.app type: default -'1150080': +"1150080": installDir: Azur Lane Crosswave launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Azurlane.exe type: default @@ -52947,7 +52272,7 @@ japanese: アズールレーン クロスウェーブ schinese: 碧蓝航线 交汇的航迹 tchinese: 碧藍航線 Crosswave -'1150090': +"1150090": installDir: LearningFactory launch: - config: @@ -52967,45 +52292,45 @@ koreana: 러닝 팩토리 (Learning Factory) schinese: 学习工厂 (Learning Factory) tchinese: 學習工廠 (Learning Factory) -'1150130': +"1150130": installDir: 吾光笔记 launch: - executable: 吾光笔记.exe type: none -'1150140': +"1150140": installDir: Just Spin launch: - config: oslist: windows executable: Just Spin.exe type: default -'1150260': {} -'1150270': +"1150260": {} +"1150270": installDir: NEON SPACE WAR launch: - executable: NEONSPACEWAR.exe type: none -'1150290': +"1150290": installDir: QR Code Killer launch: - config: oslist: windows executable: QR Code Killer.exe type: default -'1150300': {} -'1150310': - installDir: Let's Go! Skiing +"1150300": {} +"1150310": + installDir: "Let's Go! Skiing" launch: - config: oslist: windows executable: LetsGoSkiing.exe type: vr - config: - osarch: '64' + osarch: "64" oslist: windows executable: LetsGoSkiing.exe type: othervr -'1150400': +"1150400": installDir: The Ancient Labyrinth launch: - config: @@ -53015,48 +52340,44 @@ type: default - config: oslist: macos - executable: The Ancient Labyrinth.app\\Contents\\MacOS\\The Ancient Labyrinth + executable: "The Ancient Labyrinth.app\\\\Contents\\\\MacOS\\\\The Ancient Labyrinth" type: none -'1150420': {} -'1150440': +"1150420": {} +"1150440": installDir: AliensDarkDescent launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: AliensDarkDescentGameSteam-Win64-Shipping.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows - ownsdlc: '1155310' + ownsdlc: "1155310" description: Test.exe - description_loc: - english: Test.exe executable: AliensDarkDescentGameSteam-Win64-Test.exe - config: - osarch: '64' + osarch: "64" oslist: windows - ownsdlc: '1155310' + ownsdlc: "1155310" description: Dev.exe - description_loc: - english: Dev.exe executable: AliensDarkDescentGameSteam.exe -'1150460': +"1150460": installDir: Summer Paws launch: - config: oslist: windows executable: SummerPaws.exe type: none -'1150480': +"1150480": installDir: Micro Car Crash Online Le Go! launch: - config: oslist: windows executable: Micro Car Crash Online Le Go!.exe type: default -'1150500': +"1150500": installDir: Voidspace launch: - config: @@ -53071,62 +52392,62 @@ oslist: linux executable: Voidspace.sh type: default -'1150530': +"1150530": nameLocalized: schinese: 荒野枪巫 tchinese: 荒野槍巫 -'1150550': +"1150550": installDir: Winter_Polaris launch: - executable: Polaris.exe type: default -'1150580': +"1150580": installDir: History Warriors launch: - config: oslist: windows executable: hwarriors.exe type: none -'1150590': +"1150590": installDir: SamuraiJack launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SJGAME/Binaries/Win64/SJGAME-Win64-Shipping.exe type: default -'1150610': +"1150610": installDir: City Gangs San Andreas launch: - executable: City Gangs San Andreas.exe type: none -'1150620': +"1150620": installDir: Bed Lying Simulator launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Bed Lying Simulator executable: Bed_Lying_Simulator.exe type: option1 - config: - osarch: '64' + osarch: "64" oslist: windows - ownsdlc: '1220610' - description: 'Bed Lying Simulator: Girlfriend Experience' + ownsdlc: "1220610" + description: "Bed Lying Simulator: Girlfriend Experience" executable: Experiences.exe type: option2 -'1150640': +"1150640": installDir: Yu-Gi-Oh! Legacy of the Duelist Link Evolution launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: YuGiOh.exe type: default nameLocalized: japanese: 遊戯王デュエルモンスターズ レガシー・オブ・ザ・デュエリスト:リンク・エボリューション -'1150650': +"1150650": installDir: War Theatre Blood of Winter launch: - config: @@ -53137,41 +52458,41 @@ - config: oslist: macos description: Launch - executable: WarTheatre2.app\\Contents\\MacOS\\WarTheatre2 + executable: "WarTheatre2.app\\\\Contents\\\\MacOS\\\\WarTheatre2" type: none -'1150670': +"1150670": installDir: SorcererLord launch: - - arguments: \"SOR_LOR.EXE\" -conf \"dosbox_sorcerer_lord.conf\" -exit -noconsole -fullscreen + - arguments: "\\\"SOR_LOR.EXE\\\" -conf \\\"dosbox_sorcerer_lord.conf\\\" -exit -noconsole -fullscreen" config: oslist: windows - executable: dosbox_windows\\dosbox.exe + executable: "dosbox_windows\\\\dosbox.exe" type: none - config: oslist: linux executable: runsorcererlord.sh type: none -'1150690': +"1150690": installDir: OMORI launch: - - arguments: '--6bdb2e585882fbd48826ef9cffd4c511' + - arguments: "--6bdb2e585882fbd48826ef9cffd4c511" config: oslist: windows executable: OMORI.exe type: default - - arguments: '--6bdb2e585882fbd48826ef9cffd4c511' + - arguments: "--6bdb2e585882fbd48826ef9cffd4c511" config: oslist: macos - executable: OMORI.app\\Contents\\MacOS\\nwjs + executable: "OMORI.app\\\\Contents\\\\MacOS\\\\nwjs" type: default -'1150720': +"1150720": installDir: Club Bifrost launch: - config: oslist: windows executable: Bifrost.exe type: default -'1150730': +"1150730": installDir: Island Saga launch: - config: @@ -53186,39 +52507,39 @@ oslist: macos executable: Game.app type: default -'1150760': +"1150760": installDir: Gloomwood launch: - executable: Gloomwood.exe type: none -'1150780': {} -'1150790': +"1150780": {} +"1150790": installDir: GraFi 4 launch: - config: oslist: windows executable: GraFi 4.exe type: default -'1150800': +"1150800": installDir: Breeza Budgie Bill launch: - executable: Breeza Budgie Bill.exe type: default -'1150810': +"1150810": installDir: Slime Slam launch: - config: oslist: windows executable: Slime Slam.exe type: default -'1150820': +"1150820": installDir: Delphyq launch: - config: oslist: windows executable: Delphyq.exe type: default -'1150850': +"1150850": installDir: Heroes in Battlefield launch: - config: @@ -53228,25 +52549,25 @@ nameLocalized: schinese: 战场英雄物语 tchinese: 戰場英雄物語 -'1150890': +"1150890": installDir: The Bunker 69 launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows executable: game.exe type: default -'1150900': +"1150900": installDir: EAGLETALON vs. HORDE OF THE FLIES launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: tntvhotf.exe type: default nameLocalized: japanese: 鷹の爪VSハエの羽団 -'1150950': +"1150950": installDir: Timelie launch: - config: @@ -53255,14 +52576,14 @@ type: none - config: oslist: macos - executable: Timelie.app\\Contents\\MacOS\\Timelie + executable: "Timelie.app\\\\Contents\\\\MacOS\\\\Timelie" type: none -'1150990': +"1150990": installDir: Cemetery Warrior 4 launch: - executable: Cemetery Warrior 4.exe type: default -'115100': +"115100": installDir: Costume Quest launch: - config: @@ -53274,7 +52595,7 @@ - config: oslist: linux executable: Cq.bin.x86 -'1151050': +"1151050": installDir: Golf Gang launch: - config: @@ -53288,7 +52609,7 @@ nameLocalized: schinese: 高尔夫大乱斗 / Golf Gang tchinese: 高爾夫大亂鬥 / Golf Gang -'1151060': +"1151060": installDir: baatt launch: - executable: ビフォー・アライビング・アット・ザ・ターミナル.exe @@ -53298,12 +52619,12 @@ type: option1 nameLocalized: japanese: ビフォー・アライビング・アット・ザ・ターミナル -'1151090': +"1151090": installDir: Easter Egg launch: - executable: EasterEggs.exe type: default -'115110': +"115110": installDir: Stacking launch: - config: @@ -53315,24 +52636,22 @@ - config: oslist: linux executable: Stack.bin.x86 -'1151100': +"1151100": nameLocalized: schinese: 仓鼠乱斗 Hamster Scramble -'1151120': +"1151120": installDir: Arrest of a stone Buddha launch: - config: oslist: windows executable: arrest of a stone buddha.exe type: default -'1151130': +"1151130": installDir: Dark Chess launch: - config: oslist: windows description: Launch Dark Chess - description_loc: - english: Launch Dark Chess executable: Dark Chess.exe type: default - config: @@ -53346,7 +52665,7 @@ nameLocalized: schinese: 后翼弃兵:迷雾棋局 tchinese: 後翼棄兵:迷霧棋局 -'1151180': +"1151180": installDir: Super Cucho launch: - config: @@ -53361,33 +52680,33 @@ oslist: linux executable: supercucho.sh type: default -'115120': +"115120": installDir: ironbrigade launch: - executable: IronBrigade.exe - - arguments: '-ssaa2x' + - arguments: "-ssaa2x" description: 2X supersampling executable: IronBrigade.exe - - arguments: '-ssaa4x' + - arguments: "-ssaa4x" description: 4X supersampling executable: IronBrigade.exe -'1151200': +"1151200": installDir: Just Drift It launch: - config: oslist: windows executable: Just Drift It.exe type: default -'1151250': +"1151250": installDir: Horror Story - Hallowseed launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: HorrorStory.exe type: default -'1151300': {} -'1151310': +"1151300": {} +"1151310": installDir: Blackbeard the Cursed Jungle launch: - config: @@ -53395,29 +52714,29 @@ description: Blackbeard the Cursed Jungle executable: Blackbeard the Cursed Jungle.exe type: default -'1151320': +"1151320": installDir: Netsoccer2 launch: - config: oslist: windows executable: Netsoccer2.exe type: default -'1151340': +"1151340": installDir: Fallout76 launch: - executable: Fallout76.exe type: default -'1151370': +"1151370": installDir: Night Guardian launch: - config: oslist: windows executable: Arena.exe type: default -'1151380': +"1151380": nameLocalized: schinese: 西部牛仔的一生 -'1151390': +"1151390": installDir: Putin Life launch: - config: @@ -53426,9 +52745,9 @@ type: default - config: oslist: macos - executable: PutinLife.app\\Contents\\MacOS\\Putin vs Trump + executable: "PutinLife.app\\\\Contents\\\\MacOS\\\\Putin vs Trump" type: default -'1151400': +"1151400": installDir: Furious Goal launch: - config: @@ -53441,8 +52760,8 @@ type: none nameLocalized: schinese: 怒射破门 -'1151410': {} -'1151430': +"1151410": {} +"1151430": installDir: Magnia launch: - config: @@ -53453,7 +52772,7 @@ oslist: macos executable: MAC MAGNIA.app type: default -'1151440': +"1151440": installDir: Utawarerumono - Mask of Truth launch: - config: @@ -53461,10 +52780,10 @@ executable: Utawarerumono Mask of Truth.exe type: default nameLocalized: - english: 'Utawarerumono: Mask of Truth' + english: "Utawarerumono: Mask of Truth" japanese: うたわれるもの 二人の白皇 tchinese: 受讚頌者 二人的白皇 -'1151450': +"1151450": installDir: Utawarerumono - Prelude to the Fallen launch: - config: @@ -53474,23 +52793,20 @@ - config: betakey: privatebeta description: For testing. - description_loc: - english: For testing. - japanese: 検証用 executable: WindowsMain_Debug.exe type: none nameLocalized: - english: 'Utawarerumono: Prelude to the Fallen' + english: "Utawarerumono: Prelude to the Fallen" japanese: うたわれるもの 散りゆく者への子守唄 tchinese: 受讚頌者 給逝者的搖籃曲 -'1151460': +"1151460": installDir: Obligation launch: - config: oslist: windows executable: Game.exe type: default -'1151500': +"1151500": installDir: fight wisdom launch: - config: @@ -53499,86 +52815,82 @@ type: default nameLocalized: schinese: 战斗智慧 -'1151550': +"1151550": installDir: Quaterneon launch: - config: oslist: windows executable: NeonTwirl.exe type: none -'1151570': +"1151570": installDir: ED-IT launch: - config: oslist: windows executable: ED-IT.exe type: default -'1151580': +"1151580": installDir: 1984 Rewired launch: - config: oslist: windows executable: 1984 Rewired.exe type: config -'1151600': +"1151600": installDir: Chernobyl Road of Death launch: - config: oslist: windows executable: Chernobyl Road of Death.exe type: default -'1151610': +"1151610": installDir: survive launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: BluestacksGP.exe type: default -'1151640': +"1151640": installDir: Horizon Zero Dawn launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Submission Steam (default) executable: HorizonZeroDawn.exe type: default - config: betakey: qa_testing_with_debug - osarch: '64' + osarch: "64" oslist: windows description: Start the Bootloader - description_loc: - english: Start the Bootloader executable: Bootloader.exe type: none -'1151650': +"1151650": installDir: Shard launch: - config: oslist: windows executable: Shard.exe type: none -'1151670': +"1151670": installDir: EEP16 launch: - config: oslist: windows executable: EEP16.exe type: none -'1151680': +"1151680": installDir: Galactic Rangers VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: in VR - description_loc: - english: in VR executable: GalacticRangersVR.exe type: vr -'1151720': +"1151720": installDir: SCP Резонанс launch: - config: @@ -53586,107 +52898,107 @@ executable: scp_resonance.exe type: default nameLocalized: - english: 'Scp: Resonance' -'1151740': + english: "Scp: Resonance" +"1151740": installDir: Prison Princess launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Prison Princess.exe type: default nameLocalized: japanese: プリズンプリンセス -'1151750': +"1151750": installDir: mmmmm donuts arhhh launch: - executable: mmmmm donuts.exe type: none -'1151760': +"1151760": installDir: The Sinking City launch: - - arguments: '-NOSCREENMESSAGES' + - arguments: "-NOSCREENMESSAGES" config: - osarch: '64' + osarch: "64" oslist: windows description: Launch Full Build executable: TSCGame.exe type: default -'1151770': +"1151770": installDir: Dragon Slayer launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows executable: nw.exe type: default -'1151860': +"1151860": installDir: LastChanceVR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: lastchancevr.exe type: vr -'1151880': +"1151880": installDir: Those Chosen By God launch: - config: oslist: windows - description: 'IMPORTANT: After downloading go to your steam folder> steamapps>Common>Those Chosen By God> to find the game.' + description: "IMPORTANT: After downloading go to your steam folder> steamapps>Common>Those Chosen By God> to find the game." executable: Those Chosen By God.exe type: option1 - config: oslist: windows - description: 'IMPORTANT: After downloading go to your steam folder> steamapps>Common>Those Chosen By God> to find the game.' + description: "IMPORTANT: After downloading go to your steam folder> steamapps>Common>Those Chosen By God> to find the game." executable: Those Chosen By God.exe type: option1 -'1151920': +"1151920": installDir: Color Defense launch: - executable: Color Defense.exe type: default -'1151930': +"1151930": installDir: Buissons launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Buissons.exe type: default - config: oslist: macos - executable: Buissons.app\\Contents\\MacOS\\nwjs + executable: "Buissons.app\\\\Contents\\\\MacOS\\\\nwjs" type: default -'1151940': +"1151940": installDir: SuperMinesweeperattACK launch: - config: oslist: windows executable: sma.exe type: default -'1151960': {} -'1151980': {} -'11520': +"1151960": {} +"1151980": {} +"11520": installDir: Brian Lara International Cricket 2007 launch: - executable: ICC2007.exe - description: Launch Hardware Configuration executable: hardwaresetup.exe -'115200': +"115200": installDir: Cossacks II Napoleonic Wars launch: - executable: engine.exe type: default -'1152000': +"1152000": installDir: Psihanul launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Psihanul.exe type: default -'1152020': +"1152020": installDir: Return Of The Zombie King launch: - config: @@ -53697,14 +53009,14 @@ oslist: macos executable: DeadKing.app type: default -'1152040': - installDir: Dark Romance The Ethereal Gardens Collector's Edition +"1152040": + installDir: "Dark Romance The Ethereal Gardens Collector's Edition" launch: - config: oslist: windows executable: DarkRomance_TheEtherealGardens_CE.exe type: default -'1152050': +"1152050": installDir: Sword of the Slayer launch: - config: @@ -53719,44 +53031,44 @@ oslist: linux executable: SwordOfTheSlayer type: none -'1152090': +"1152090": installDir: Elmarion Dragon time launch: - executable: ElmarionDragon time.exe type: default -'115210': +"115210": installDir: American Conquest launch: - executable: DMCR.EXE -'1152100': +"1152100": installDir: Taimanin Asagi Trial launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: VinosWinPlayer.exe type: default nameLocalized: - english: 'Taimanin Asagi 1: Trial' + english: "Taimanin Asagi 1: Trial" japanese: 対魔忍アサギ・体験版 - koreana: '대마인 아사기 : 체험판' + koreana: "대마인 아사기 : 체험판" schinese: 对魔忍阿莎姬1・体验版 - tchinese: '對魔忍淺蔥1・試玩版 ' -'1152130': {} -'1152160': + tchinese: "對魔忍淺蔥1・試玩版 " +"1152130": {} +"1152160": installDir: Might is Right launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Might is Right.exe type: default -'115220': +"115220": installDir: American Conquest - Fight Back launch: - executable: dmcr.exe -'1152200': - installDir: Furry Shakespeare Love's Lizards Lost +"1152200": + installDir: "Furry Shakespeare Love's Lizards Lost" launch: - config: oslist: windows @@ -53766,8 +53078,8 @@ oslist: linux executable: Furry_Shakespeare_LLL.sh type: default -'1152210': - installDir: Dashing Dinosaurs Winter's Tale +"1152210": + installDir: "Dashing Dinosaurs Winter's Tale" launch: - config: oslist: windows @@ -53777,14 +53089,14 @@ oslist: linux executable: DashingDinosWT.sh type: default -'1152230': +"1152230": installDir: The Void of Desires launch: - config: oslist: windows executable: TVOD.exe type: default -'1152250': +"1152250": installDir: Island launch: - config: @@ -53793,17 +53105,17 @@ type: default nameLocalized: schinese: 荒岛求生 -'1152260': {} -'1152280': +"1152260": {} +"1152280": installDir: ESCAPE FROM VOYNA ALIENS FROM AREA 51 launch: - executable: EFT51.exe type: none -'1152300': +"1152300": installDir: Atelier Ayesha DX launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Atelier_AyeshaLauncher.exe type: none @@ -53811,11 +53123,11 @@ japanese: アーシャのアトリエ ~黄昏の大地の錬金術士~ DX schinese: 爱夏的炼金工房 ~黄昏大地之炼金术士~ DX tchinese: 愛夏的鍊金工房 ~黃昏大地之鍊金術士~ DX -'1152310': +"1152310": installDir: Atelier Escha and Logy DX launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Atelier_Escha_and_LogyLauncher.exe type: none @@ -53823,11 +53135,11 @@ japanese: エスカ&ロジーのアトリエ ~黄昏の空の錬金術士~ DX schinese: 爱丝卡&罗吉的炼金工房 ~黄昏天空之炼金术士~ DX tchinese: 愛絲卡&羅吉的鍊金工房 ~黃昏天空之鍊金術士~ DX -'1152320': +"1152320": installDir: Atelier Shallie DX launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Atelier_ShallieLauncher.exe type: none @@ -53835,43 +53147,37 @@ japanese: シャリーのアトリエ ~黄昏の海の錬金術士~ DX schinese: 夏莉的炼金工房 ~黄昏海洋之炼金术士~ DX tchinese: 夏莉的鍊金工房 ~黃昏海洋之鍊金術士~ DX -'1152330': +"1152330": installDir: The Adventures of Looppy launch: - config: oslist: windows executable: The Adventures of Looppy.exe type: default -'1152340': +"1152340": installDir: Book of Travels launch: - config: oslist: windows description: Launch - description_loc: - english: Launch executable: Launcher/BookofTravelsLauncher.exe type: none - config: oslist: macos description: Launch - description_loc: - english: Launch executable: BookOfTravels.app/Launcher.app - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch - description_loc: - english: Launch executable: Launcher/BookofTravelsLauncher.x86_64 type: none -'1152360': +"1152360": installDir: Climb Out! launch: - executable: Climb Out!.exe type: none -'1152410': +"1152410": installDir: Karate Cat launch: - config: @@ -53886,14 +53192,14 @@ oslist: linux executable: KoteKarate.sh type: default -'1152440': +"1152440": installDir: Party Pumper launch: - config: oslist: windows executable: Party Pumper.exe type: vr -'1152450': +"1152450": installDir: CreepsCreepsCreeps launch: - config: @@ -53908,42 +53214,42 @@ oslist: linux executable: CreepsCreepsCreeps.sh type: default -'1152480': +"1152480": installDir: Death To The Dragon Lord launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows executable: Death To The Dragon Lord.exe type: none -'1152500': {} -'1152540': +"1152500": {} +"1152540": installDir: Shark Castle launch: - config: oslist: windows executable: Shark Castle.exe type: default -'1152550': +"1152550": installDir: Who Is You launch: - config: oslist: windows executable: WhoIsYou.exe type: none -'1152570': - installDir: Timmy's adventures VerbMon +"1152570": + installDir: "Timmy's adventures VerbMon" launch: - config: oslist: windows - executable: Timmy's Adventures VerbMon.exe + executable: "Timmy's Adventures VerbMon.exe" type: default nameLocalized: - french: 'Les aventures de Timmy : VerbMon' - german: 'Tims Abenteuer: VerbMon' - italian: 'Le avventure di Timmy: VerbMon' - spanish: 'Las aventuras de Timmy : VerbMon' -'1152580': + french: "Les aventures de Timmy : VerbMon" + german: "Tims Abenteuer: VerbMon" + italian: "Le avventure di Timmy: VerbMon" + spanish: "Las aventuras de Timmy : VerbMon" +"1152580": installDir: Ann Achronist Many Happy Returns launch: - config: @@ -53954,7 +53260,7 @@ oslist: macos executable: annachronist.app type: default -'1152640': +"1152640": installDir: The Elder Forest launch: - arguments: Snake -fullscreen @@ -53962,38 +53268,38 @@ oslist: windows executable: Snake.exe type: default -'1152660': +"1152660": installDir: Orbital Shipyards launch: - config: oslist: windows executable: OrbitalShipyards.exe type: default -'1152670': +"1152670": installDir: Operation Cheek Clapper launch: - config: oslist: windows executable: Cheek Clapper.exe type: none -'1152680': {} -'1152710': {} -'1152730': {} -'1152760': +"1152680": {} +"1152710": {} +"1152730": {} +"1152760": installDir: TheFourSeasons launch: - config: oslist: windows executable: Game.exe type: default -'1152780': +"1152780": installDir: Delivery by Easyroad launch: - config: oslist: windows executable: Delivery.exe type: none -'1152800': +"1152800": installDir: Buggy Bump launch: - config: @@ -54004,77 +53310,77 @@ oslist: windows executable: Buggy Bump.exe type: othervr -'1152820': +"1152820": installDir: Everslash launch: - config: oslist: windows executable: Everslash.exe type: default -'1152830': +"1152830": installDir: BounceBall3D launch: - config: oslist: windows executable: BounceBall3D.exe type: default -'1152840': +"1152840": installDir: Gator Parade launch: - config: oslist: windows executable: nw.exe type: default -'1152870': +"1152870": nameLocalized: schinese: 萝莉小红帽 -'1152890': +"1152890": installDir: The Delirium Vacation launch: - config: oslist: windows executable: dvgame.exe type: none -'1152910': +"1152910": installDir: Bloxicus launch: - config: oslist: windows executable: bloxicus.exe type: default -'1152920': +"1152920": installDir: N.a.N Industry VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: NaN Industry.exe type: vr -'1152940': +"1152940": installDir: Trails of the Black Sun launch: - config: oslist: windows executable: TOTBS.exe type: default -'1152950': +"1152950": installDir: Blackberry launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Blackberry.exe type: default -'1152970': {} -'1152990': +"1152970": {} +"1152990": installDir: One Hour Left launch: - config: oslist: windows executable: One Hour Left.exe type: default -'115300': {} -'1153030': +"115300": {} +"1153030": installDir: Jigsaw puzzle - Evolution launch: - config: @@ -54089,48 +53395,48 @@ oslist: linux executable: Jigsaw Puzzle - Evolution.x86_64 type: none -'1153060': +"1153060": installDir: Juicy Army Demo launch: - config: oslist: windows executable: Juicy Army Demo.exe type: default -'1153070': +"1153070": installDir: Hentai Zodiac Puzzle 2 launch: - config: oslist: windows executable: HentaiZodiacPuzzle2.exe type: default -'1153100': +"1153100": installDir: Pixels can fight launch: - config: oslist: windows executable: Pixels can fight.exe type: none -'1153110': +"1153110": installDir: Rally Drift Cars launch: - executable: Rally Drift Cars.exe type: none -'1153120': +"1153120": installDir: ROAD HOMEWARD 4 last step launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: RoadHomeward4.exe type: default -'1153130': +"1153130": installDir: Wurroom launch: - config: oslist: windows executable: Wurroom.exe type: default -'1153170': +"1153170": installDir: Bomber Bother launch: - config: @@ -54142,15 +53448,15 @@ executable: Bomber Bother.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Bomber Bother.x86_64 type: default -'115320': +"115320": installDir: Prototype 2 launch: - executable: prototype2.exe -'1153220': +"1153220": installDir: Mahjong Dimensions 3D - Fantasy Anime launch: - config: @@ -54202,35 +53508,35 @@ description: Mahjong Dimensions 3D - Strategy One executable: Mahjong Dimensions 3D - Strategy One.exe type: option1 -'1153250': +"1153250": installDir: VVVVV launch: - executable: VVVVV.exe type: default -'1153300': +"1153300": installDir: CuBe launch: - config: oslist: windows executable: CuBe.exe type: default -'1153320': +"1153320": installDir: Roy Cluse Itsy Bitsy Edition launch: - config: oslist: windows executable: Roy Cluse.exe type: default -'1153330': +"1153330": installDir: Puzzle Patrol launch: - config: oslist: windows executable: PuzzlePatrol.exe type: none -'1153340': {} -'1153390': {} -'1153430': +"1153340": {} +"1153390": {} +"1153430": installDir: lovewish launch: - config: @@ -54240,57 +53546,57 @@ nameLocalized: schinese: 情•愿 tchinese: 情•愿 -'1153470': +"1153470": installDir: Empire Live launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: EmpireLive.exe type: none -'1153520': +"1153520": installDir: 6souls launch: - config: oslist: windows executable: win64/6Souls.exe type: none -'1153530': {} -'1153540': +"1153530": {} +"1153540": installDir: Concept Destruction launch: - config: oslist: windows executable: Concept Destruction.exe type: default -'1153550': +"1153550": installDir: Dark Fairy Fantasy launch: - executable: nw.exe type: none -'1153570': +"1153570": installDir: Hyperventila launch: - config: oslist: windows executable: hyperventila.exe type: default -'1153580': +"1153580": installDir: Happy STG launch: - config: oslist: windows executable: STG.exe type: none -'1153590': +"1153590": installDir: 3D Visual Novel Maker launch: - config: oslist: windows executable: 3D Visual Novel Maker.exe type: default -'1153610': {} -'1153640': +"1153610": {} +"1153640": installDir: Chorus launch: - config: @@ -54332,76 +53638,76 @@ oslist: windows executable: Chorus.exe type: default -'1153650': {} -'1153670': +"1153650": {} +"1153670": installDir: Hentai Cosplay Elf launch: - executable: Hentai Cosplay Elf.exe type: none -'1153690': +"1153690": installDir: Hentai Best Girls launch: - executable: Hentai Best Girls.exe type: none -'1153700': +"1153700": installDir: Eternal Magic launch: - config: oslist: windows executable: EmGame.exe type: default -'1153710': +"1153710": installDir: content launch: - config: oslist: windows executable: Inspector.exe type: default -'1153720': +"1153720": installDir: Fart Fiasco Premium launch: - config: oslist: windows executable: Fart Fiasco Premium.exe type: default -'1153730': +"1153730": installDir: SteamCity Chronicles - Rise Of The Rose launch: - - arguments: '-logFile game.log' + - arguments: "-logFile game.log" config: - osarch: '64' + osarch: "64" oslist: windows description: SteamCity with DirectX11 executable: SteamCity.exe type: default -'1153790': {} -'1153840': +"1153790": {} +"1153840": installDir: Snow Island launch: - executable: Snow Island.exe type: default -'1153860': +"1153860": installDir: Instacalm VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: InstacalmVR.exe type: vr -'1153870': {} -'1153880': +"1153870": {} +"1153880": installDir: Werewolf Voice - Best Board Game launch: - config: oslist: macos executable: werewolf.app type: default - - arguments: '-windowed' + - arguments: "-windowed" config: oslist: windows executable: Werewolf Voice.exe type: default -'1153890': +"1153890": installDir: 追踪痴汉 launch: - config: @@ -54412,15 +53718,15 @@ english: Trailing Girl japanese: 追跡 ばか schinese: 跟踪 痴汉 -'1153920': +"1153920": installDir: GlaiveZ launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: GlaiveZ.exe type: vr -'1153950': +"1153950": installDir: USAGIRI launch: - config: @@ -54431,7 +53737,7 @@ oslist: linux executable: USAGIRI.sh type: default -'1153980': +"1153980": installDir: Hardcore Maze Cube launch: - config: @@ -54440,24 +53746,24 @@ type: default - config: oslist: macos - executable: Hardcore_Maze_Cube.app\\Contents\\MacOS\\SMC + executable: "Hardcore_Maze_Cube.app\\\\Contents\\\\MacOS\\\\SMC" type: default -'1153990': +"1153990": installDir: Hacker Evolution - 2019 HD remaster launch: - config: oslist: windows executable: HackerEvolution.exe type: none -'1154010': +"1154010": installDir: Marshmallow Madness launch: - config: oslist: windows executable: Marshmallow Madness.exe type: none -'1154030': {} -'1154040': +"1154030": {} +"1154040": installDir: SpellForceThree launch: - config: @@ -54466,48 +53772,42 @@ executable: SF3ClientFinal.exe type: default - config: - betakey: 'playground,testgate' + betakey: "playground,testgate" oslist: windows description: SpellForce 3 w/ Debug Tools - description_loc: - english: SpellForce 3 w/ Debug Tools executable: SF3Client.exe type: option1 - - arguments: '-launch SF3Final' + - arguments: "-launch SF3Final" config: oslist: windows - executable: launcher\\FG\\Launcher.exe + executable: "launcher\\\\FG\\\\Launcher.exe" type: default - - arguments: '-launch LevelEditor' + - arguments: "-launch LevelEditor" config: oslist: windows - executable: launcher\\FG\\Launcher.exe + executable: "launcher\\\\FG\\\\Launcher.exe" type: editor - - arguments: '-launch SF3Debug' + - arguments: "-launch SF3Debug" config: oslist: windows description: with Debug Tools - description_loc: - english: with Debug Tools - executable: launcher\\FG\\Launcher.exe + executable: "launcher\\\\FG\\\\Launcher.exe" type: option1 - - arguments: '-launch ModdingDocs' + - arguments: "-launch ModdingDocs" config: oslist: windows description: Open Modding Documentation - description_loc: - english: Open Modding Documentation - executable: launcher\\FG\\Launcher.exe -'1154080': + executable: "launcher\\\\FG\\\\Launcher.exe" +"1154080": installDir: Rugby League Team Manager 3 launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: RLTM3.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: RLTM3.exe type: default @@ -54515,12 +53815,12 @@ oslist: macos executable: RLTM3.app type: default -'1154090': {} -'1154110': +"1154090": {} +"1154110": installDir: Steamy Sextet launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Steamy_Sextet.exe type: default @@ -54533,40 +53833,40 @@ executable: Steamy_Sextet.sh type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: Steamy_Sextet-32.exe type: default -'1154120': {} -'1154150': +"1154120": {} +"1154150": installDir: Evrisia Art launch: - config: oslist: windows executable: Evrisia ART.exe type: vr -'1154160': +"1154160": installDir: CRYPTIC launch: - config: oslist: windows executable: CRYPTIC.exe type: default -'1154170': +"1154170": installDir: StripShooter launch: - config: oslist: windows executable: StripShooter.exe type: default -'1154210': +"1154210": installDir: Convenience Store launch: - config: oslist: windows executable: store.exe type: default -'1154300': +"1154300": installDir: The Equinox Hunt launch: - config: @@ -54577,7 +53877,7 @@ oslist: linux executable: TheEquinoxHunt-Linux-Latest.x86_64 type: default -'1154350': +"1154350": installDir: zzzzz launch: - config: @@ -54592,47 +53892,47 @@ oslist: linux executable: game-linux.AppImage type: default -'1154360': +"1154360": installDir: For Inco launch: - config: oslist: windows executable: ForInco.exe type: default -'1154420': +"1154420": installDir: Tech Support 2077 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: JCU2.exe type: vr -'1154440': {} -'1154470': +"1154440": {} +"1154470": installDir: sanguos2 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: 三国时代2.exe type: default -'1154480': +"1154480": installDir: Vicious Gambling Agreement launch: - config: oslist: windows executable: ViciousGamblingAgreement.exe type: default -'1154490': +"1154490": installDir: Grid Creeps launch: - config: oslist: windows executable: Grid Creeps.exe type: none -'1154500': {} -'1154540': {} -'1154560': +"1154500": {} +"1154540": {} +"1154560": installDir: Counter Terrorism launch: - config: @@ -54641,39 +53941,39 @@ type: none - config: oslist: macos - executable: Counter Terrorism.app\\Contents\\MacOS\\Counter Terrorism + executable: "Counter Terrorism.app\\\\Contents\\\\MacOS\\\\Counter Terrorism" type: none nameLocalized: schinese: 反恐 - 扫雷游戏 tchinese: 反恐 - 掃雷遊戲 -'1154570': +"1154570": installDir: NAVALNY A Nightmare of Corrupt launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: NAVALNY A Nightmare of Corrupt.exe type: default -'1154640': +"1154640": installDir: Safe Climbing launch: - config: oslist: windows executable: Safe Climbing.exe type: default -'1154650': +"1154650": installDir: GSpot Master launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: G-Spot-Master.exe type: default nameLocalized: english: GSpot Master tchinese: 穴王拳 -'1154670': {} -'1154680': +"1154670": {} +"1154680": installDir: The Guise launch: - config: @@ -54681,8 +53981,8 @@ description: launch executable: The Guise.exe type: default -'1154700': {} -'1154720': +"1154700": {} +"1154720": installDir: ReGals Panic launch: - config: @@ -54690,31 +53990,31 @@ executable: Re Gals Panic.exe type: none nameLocalized: - english: 'Re:Gals Panic' + english: "Re:Gals Panic" tchinese: 幻想天蠶變 -'1154730': +"1154730": installDir: panic_diet launch: - config: oslist: windows executable: panic_diet.exe type: default -'1154790': +"1154790": installDir: XIII launch: - executable: XIII.exe type: none -'1154800': +"1154800": installDir: ISLA test launch: - config: oslist: windows executable: nw.exe type: default -'1154810': +"1154810": installDir: Going Under launch: - - arguments: '-windowed' + - arguments: "-windowed" config: oslist: windows executable: Going Under.exe @@ -54723,27 +54023,27 @@ oslist: macos executable: GoingUnder.app type: none -'1154830': +"1154830": installDir: Scathe launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Scathe.exe type: default -'1154840': +"1154840": installDir: Shadow Empire launch: - executable: Launcher.exe type: default -'1154850': +"1154850": installDir: 9th Dawn III launch: - config: oslist: windows executable: 9th Dawn III Launcher.exe type: none -'1154860': +"1154860": installDir: Elite Battle Rio launch: - config: @@ -54754,11 +54054,11 @@ oslist: windows executable: RIO.exe type: default -'1154940': +"1154940": installDir: Football The Hardest Job launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Football- The Hardest Job.exe type: none @@ -54766,69 +54066,67 @@ oslist: macos executable: Football- The Hardest Job.app type: none -'11550': +"11550": installDir: Second Sight launch: - executable: secondsight.exe -'1155090': +"1155090": installDir: Shadows of time launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ShadowsOfTime.exe type: none -'1155120': - installDir: The Magician's Research +"1155120": + installDir: "The Magician's Research" launch: - config: oslist: windows executable: The Magicians Research.exe type: default -'1155130': +"1155130": installDir: Block Fall Simulator 2019 launch: - config: oslist: windows executable: Block Fall Simulator 2019.exe type: none -'1155150': {} -'1155260': +"1155150": {} +"1155260": nameLocalized: schinese: 木偶物语 -'1155270': {} -'1155290': +"1155270": {} +"1155290": installDir: Cartoon Kreedz launch: - config: oslist: windows executable: Cartoon Kreedz.exe type: default -'1155330': +"1155330": installDir: Showgunners launch: - description: SG - description_loc: - english: SG executable: Showgunners.exe type: default nameLocalized: schinese: 枪手真人秀 -'1155340': +"1155340": installDir: Rescue Team 9 Evil Genius launch: - config: oslist: windows executable: RescueTeam_EvilGenius_CE.exe type: default -'1155390': +"1155390": installDir: Code Tracer launch: - config: oslist: windows executable: Code Tracer.exe type: default -'1155410': +"1155410": installDir: Trials of Harmony launch: - config: @@ -54843,20 +54141,20 @@ oslist: macos executable: TrialsOfHarmony_steam.app type: none -'1155440': +"1155440": installDir: TSM3Gemini Strategy双子战纪 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: game.exe type: default nameLocalized: - english: 'Tactics & Strategy Master 3:Gemini Strategy' + english: "Tactics & Strategy Master 3:Gemini Strategy" japanese: 戦術と戦略マスター3:双子戦紀 schinese: 战略与战术大师3:双子战纪 tchinese: 戰略與戰術大師3:雙子戰紀 -'1155460': +"1155460": installDir: The Academy launch: - config: @@ -54867,48 +54165,48 @@ oslist: macos executable: The Academy.app type: default -'1155470': +"1155470": installDir: Mythic Ocean Prologue launch: - config: oslist: windows executable: OceanGods.exe type: default -'1155480': +"1155480": installDir: Doors of Silence - the prologue launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: DoS.exe type: vr - config: - osarch: '64' + osarch: "64" oslist: windows executable: DoS.exe type: othervr -'1155490': +"1155490": installDir: DualBlade launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: 64bit\\DualBladeEN64.exe + executable: "64bit\\\\DualBladeEN64.exe" type: default - config: - osarch: '32' + osarch: "32" oslist: windows - executable: 32bit\\DualBladeEN32.exe + executable: "32bit\\\\DualBladeEN32.exe" type: default - config: - osarch: '64' + osarch: "64" oslist: windows - executable: 64bit\\DualBladeJP64.exe + executable: "64bit\\\\DualBladeJP64.exe" type: default - config: - osarch: '32' + osarch: "32" oslist: windows - executable: 32bit\\DualBladeJP32.exe + executable: "32bit\\\\DualBladeJP32.exe" type: default - config: oslist: macos @@ -54918,39 +54216,35 @@ oslist: macos executable: DualBladeJP.app type: default -'1155500': +"1155500": installDir: TowerEmpireBuilder launch: - config: oslist: windows executable: TowerEmpireBuilder.exe type: default -'1155540': {} -'1155560': +"1155540": {} +"1155560": installDir: H&S launch: - config: oslist: windows executable: rope.exe type: default -'1155580': +"1155580": installDir: Drone Wars launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Drone Wars II - description_loc: - english: Drone Wars II executable: DroneWarsII.exe type: default - - arguments: ' -batchmode -nographics' + - arguments: " -batchmode -nographics" description: Dedicated server - description_loc: - english: Dedicated server executable: DroneWarsII.exe type: server -'1155590': +"1155590": installDir: Warplanes WW1 Sky Aces launch: - config: @@ -54965,7 +54259,7 @@ oslist: linux executable: WW1.x86_64 type: default -'1155600': +"1155600": installDir: RetroRPGOnline2 launch: - config: @@ -54978,49 +54272,49 @@ description: Retro RPG Online 2 executable: com.retrorpgonline2paid type: default -'1155620': +"1155620": installDir: VITAL launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Vital.exe type: default -'1155660': +"1155660": installDir: The Deed II launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows executable: nw.exe type: default -'1155670': +"1155670": installDir: Living with a Scarecrow launch: - config: oslist: windows - executable: arty-1.0-market\\arty.exe + executable: "arty-1.0-market\\\\arty.exe" type: none - config: oslist: macos - executable: arty-1.0-market\\arty.app + executable: "arty-1.0-market\\\\arty.app" type: none - config: oslist: linux - executable: arty-1.0-market\\arty.sh + executable: "arty-1.0-market\\\\arty.sh" type: none nameLocalized: tchinese: 試著與稻草人一起生活 -'1155680': +"1155680": installDir: Through The Dust launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ThroughTheDust.exe type: default -'1155700': {} -'1155720': +"1155700": {} +"1155720": installDir: Why Is There A Girl In My House! launch: - config: @@ -55035,65 +54329,65 @@ oslist: linux executable: WITAGIMH.sh type: default -'1155730': +"1155730": installDir: Tqzs launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: \\tqzs.exe + executable: "\\\\tqzs.exe" type: default -'1155780': {} -'1155790': - installDir: Dreamland Solitaire Dragon's Fury +"1155780": {} +"1155790": + installDir: "Dreamland Solitaire Dragon's Fury" launch: - config: oslist: windows - executable: DreamlandSolitaire_Dragon'sFury.exe + executable: "DreamlandSolitaire_Dragon'sFury.exe" type: default -'1155800': +"1155800": installDir: Voyagers launch: - config: oslist: windows executable: Voyagers.exe type: default -'1155810': - installDir: Santa's Visit +"1155810": + installDir: "Santa's Visit" launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SantasVisit.exe type: vr -'1155830': +"1155830": installDir: CHERNOBYL The Untold Story launch: - config: oslist: windows executable: CHERNOBYL The Untold Story.exe type: default -'1155850': +"1155850": nameLocalized: schinese: 失落的维京人- 女性王国 -'1155860': +"1155860": installDir: MetalArms launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: MetalArms.exe type: vr nameLocalized: english: MetalArms -'1155870': +"1155870": installDir: WW2 Bunker Simulator launch: - config: oslist: windows executable: WW2 Bunker Simulator.exe type: default -'1155880': +"1155880": installDir: The Bonfire 2 Uncharted Shores launch: - config: @@ -55102,13 +54396,13 @@ type: none - config: oslist: macos - executable: TheBonfire2.app\\Contents\\MacOS\\TheBonfire2 + executable: "TheBonfire2.app\\\\Contents\\\\MacOS\\\\TheBonfire2" type: default -'1155900': +"1155900": installDir: Treehouse Riddle launch: - executable: Treehouse Riddle.exe -'1155910': +"1155910": installDir: Dice Defenders launch: - config: @@ -55119,14 +54413,14 @@ oslist: macos executable: Builds.app/Contents/MacOS/DiceDefenders type: default -'1155920': +"1155920": installDir: Snow Clearing Driving Simulator launch: - config: oslist: windows executable: Snow Jeep Driving.exe type: default -'1155930': +"1155930": installDir: Harakatsu 2 launch: - config: @@ -55136,19 +54430,19 @@ nameLocalized: english: Harakatsu 2 japanese: はらかつ 2 -'1155940': +"1155940": installDir: Help! I am REALLY horny! launch: - config: oslist: windows - executable: '${Help! I am REALLY horny!}.exe' + executable: "${Help! I am REALLY horny!}.exe" type: default -'1155960': +"1155960": installDir: Hentai exotica 2 launch: - executable: nw.exe type: none -'1155970': +"1155970": installDir: Roadwarden launch: - config: @@ -55163,31 +54457,31 @@ executable: Roadwarden.sh type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: Roadwarden-32.exe type: default -'1155980': +"1155980": installDir: Princess Maker 3 launch: - config: oslist: windows executable: PM3.exe type: none -'1155990': +"1155990": installDir: Hentai Eroshojo launch: - config: oslist: windows executable: Hentai Eroshojo.exe type: none -'11560': +"11560": installDir: Maelstrom launch: - executable: Maelstrom.exe - description: Configuration Tool executable: ConfigurationTool.exe -'1156000': +"1156000": installDir: Raindancer launch: - config: @@ -55200,44 +54494,42 @@ description: macOS Launch Options executable: Raindancer.app type: none -'1156030': +"1156030": installDir: Spectator Simulator The Racing launch: - config: oslist: windows executable: car spectator.exe type: none -'1156050': +"1156050": installDir: Girl Kill Zombies launch: - executable: Girl Kill Zombies.exe type: default -'1156070': {} -'1156080': {} -'1156090': {} -'1156100': {} -'1156120': +"1156070": {} +"1156080": {} +"1156090": {} +"1156100": {} +"1156120": installDir: DOOMBRINGER launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: doombringer_launcher.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: doombringer-lx type: default - config: - osarch: '64' + osarch: "64" oslist: windows description: In DRM-Free Mode - description_loc: - english: In DRM-Free Mode executable: doombringer.exe type: option1 -'1156130': +"1156130": installDir: Safari Grounds - The Wilpattu Leopard launch: - config: @@ -55248,14 +54540,14 @@ oslist: macos executable: Safari Grounds - The Wilpattu Leopard.app type: default -'1156200': +"1156200": installDir: VirtuaLiron - Immersive YOGA practice launch: - config: oslist: windows executable: Immersive_YOGA_practice.exe type: vr -'1156250': +"1156250": installDir: The Exorcist Legion VR (Deluxe Complete Series) launch: - config: @@ -55267,63 +54559,63 @@ executable: TheExorcistLegionVR.exe type: othervr workingdir: oc/ -'1156290': +"1156290": installDir: Home launch: - config: oslist: windows executable: HomeOurJourney.exe type: vr -'1156300': {} -'1156320': +"1156300": {} +"1156320": installDir: Concept 20 launch: - config: oslist: windows executable: Concept 20.exe type: default -'1156330': +"1156330": installDir: Dead Simple 21 launch: - config: oslist: windows executable: Dead Simple 21.exe type: default -'1156350': {} -'1156360': +"1156350": {} +"1156360": installDir: Peaceful Days launch: - config: oslist: windows executable: Game.exe type: default -'1156380': +"1156380": installDir: One Dreamer launch: - config: oslist: macos executable: One Dreamer.app/Contents/MacOS/One Dreamer - config: - osarch: '64' + osarch: "64" oslist: windows executable: One Dreamer.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: One Dreamer.x86_64 type: default -'1156420': +"1156420": installDir: Temply Girls launch: - executable: TEMPLY GIRL 2.0.exe type: default -'1156470': +"1156470": installDir: Ghouls Underground launch: - executable: GhoulsUnderground.exe type: none -'1156490': +"1156490": nameLocalized: brazilian: Anel de Fogo bulgarian: Огнен пръстен @@ -55353,15 +54645,15 @@ turkish: Ateşin yüzüğü ukrainian: Кільце вогню vietnamese: Vòng lửa -'1156500': +"1156500": installDir: Project Apocalypse launch: - config: oslist: windows executable: ProjectApocalypse.exe type: default -'1156530': {} -'1156550': +"1156530": {} +"1156550": installDir: Heroes Of Avranche launch: - config: @@ -55372,23 +54664,23 @@ oslist: linux executable: HoAv1.2L.x86_64 type: default -'1156570': +"1156570": installDir: Forest spiders launch: - config: oslist: windows executable: game.exe type: default -'1156590': +"1156590": installDir: Morels The Hunt launch: - config: oslist: windows executable: Morels_Steam.exe type: default -'1156610': {} -'1156630': - installDir: A NIGHTMARE'S TRIP +"1156610": {} +"1156630": + installDir: "A NIGHTMARE'S TRIP" launch: - config: oslist: windows @@ -55396,25 +54688,25 @@ type: default - config: oslist: macos - executable: NIGHTMARESTRIP.app\\Contents\\MacOS\\NIGHTMARESTRIP + executable: "NIGHTMARESTRIP.app\\\\Contents\\\\MacOS\\\\NIGHTMARESTRIP" type: default - config: oslist: linux executable: NIGHTMARESTRIP-1.0-linux/NIGHTMARESTRIP.sh type: default -'1156640': +"1156640": installDir: Cube Attack launch: - executable: Cube Attack.exe type: none -'1156650': +"1156650": installDir: Hero Of The Forest launch: - config: oslist: windows executable: Game.exe type: default -'1156670': +"1156670": installDir: Balls launch: - config: @@ -55427,21 +54719,21 @@ description: Start Game executable: Balls.x86_64 type: default -'1156680': +"1156680": installDir: Swinger-Man launch: - - arguments: '-vrmode openvr' + - arguments: "-vrmode openvr" config: oslist: windows executable: Swinger-Man.exe type: vr - - arguments: '-vrmode oculus' + - arguments: "-vrmode oculus" config: oslist: windows executable: Swinger-Man.exe type: othervr -'1156700': {} -'1156730': +"1156700": {} +"1156730": installDir: Holy Knight Luviria launch: - executable: Game.exe @@ -55449,14 +54741,14 @@ nameLocalized: schinese: 圣骑士露比莉亚丝 tchinese: 聖騎士露比莉亞絲 -'1156760': +"1156760": installDir: ParaLily launch: - config: oslist: windows executable: ParaLily.exe type: default -'1156770': +"1156770": installDir: West-Ward launch: - config: @@ -55471,27 +54763,27 @@ oslist: linux executable: West-Ward type: default -'1156780': +"1156780": installDir: Teragard launch: - config: oslist: windows executable: Game.exe type: default -'1156840': +"1156840": nameLocalized: english: Mini Tanks -'1156850': +"1156850": installDir: Dystopian Drift launch: - config: oslist: windows executable: Dystopian Drift.exe type: default -'1156870': {} -'1156880': {} -'1156890': {} -'1156900': +"1156870": {} +"1156880": {} +"1156890": {} +"1156900": installDir: OutputPasture launch: - config: @@ -55504,15 +54796,15 @@ koreana: 아웃풋 목장 schinese: 输出牧场 tchinese: 輸出牧場 -'1156910': +"1156910": installDir: GalMgmt launch: - config: oslist: windows executable: GalMgmt.exe type: default -'1156940': {} -'1156970': +"1156940": {} +"1156970": installDir: OurHomeland launch: - config: @@ -55521,7 +54813,7 @@ type: none nameLocalized: schinese: 我们的国 -'1156980': +"1156980": installDir: Nijowari - Where Angels Fall launch: - config: @@ -55534,9 +54826,9 @@ type: default - config: oslist: macos - executable: Nijowari - Where Angels Fall.app\\Contents\\MacOS\\Nijowari - Where Angels Fall + executable: "Nijowari - Where Angels Fall.app\\\\Contents\\\\MacOS\\\\Nijowari - Where Angels Fall" type: default -'1156990': +"1156990": installDir: Return to Shironagasu Island launch: - config: @@ -55552,29 +54844,29 @@ polish: Powrót na Wyspę Shironagasu schinese: 重返蓝鲸岛 -Return to Shironagasu Island- spanish: Return to Shironagasu Island -'1157010': +"1157010": installDir: Him & I launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Him & I.exe type: default -'1157020': +"1157020": installDir: 1001Hugs launch: - config: oslist: windows executable: TPS_1001Hugs.exe type: default -'1157040': +"1157040": installDir: Arkan The dog adventurer launch: - config: oslist: windows executable: Arkan.exe type: default -'1157050': +"1157050": installDir: Flinger Tactics launch: - config: @@ -55583,24 +54875,24 @@ type: default - config: oslist: windows - executable: Flinger Tactics (Windows)\\Flinger Tactics.exe + executable: "Flinger Tactics (Windows)\\\\Flinger Tactics.exe" type: default -'1157070': +"1157070": installDir: Arabian Stones - The VR Sudoku Game launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ArabianStones.exe type: vr -'1157080': +"1157080": installDir: Three Of a Fish launch: - config: oslist: windows executable: Three Of a Fish.exe type: none -'1157100': +"1157100": installDir: Starazius launch: - config: @@ -55611,7 +54903,7 @@ oslist: windows executable: Starazius.exe type: none -'1157120': +"1157120": installDir: Zombie Season launch: - config: @@ -55619,8 +54911,8 @@ description: Launch for Oculus SDK App executable: Zombie Season.exe type: othervr -'1157190': {} -'1157220': +"1157190": {} +"1157220": installDir: nebuchadnezzar launch: - config: @@ -55633,7 +54925,7 @@ executable: binary/linux/nebuchadnezzar type: default workingdir: binary/linux -'1157250': +"1157250": installDir: AnomalyZone launch: - config: @@ -55642,14 +54934,14 @@ executable: game/AnomalyZone.exe type: none workingdir: game -'1157260': +"1157260": installDir: GEESE vs CTHULHU launch: - executable: GEESE_vs_CTHULHU.exe type: default nameLocalized: russian: ГУСИ vs КТУЛХУ -'1157300': +"1157300": installDir: Last Shark Standing launch: - config: @@ -55657,67 +54949,67 @@ description: Launch executable: Last Shark Standing.exe type: none -'1157320': +"1157320": installDir: Hexagun launch: - config: oslist: windows executable: Hexagun.exe type: default -'1157330': +"1157330": installDir: WarringStatePeriodWar launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: BluestacksGP.exe type: default -'1157340': +"1157340": installDir: Hentai Killer launch: - executable: Hentai Killer.exe type: default -'1157350': +"1157350": installDir: Imaginator launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Imaginator.exe type: default -'1157360': +"1157360": installDir: Life Redemption launch: - executable: Life Redemption.exe type: default -'1157390': - installDir: King Arthur Knight's Tale +"1157390": + installDir: "King Arthur Knight's Tale" launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch the game executable: KA_KT.exe type: default -'1157600': {} -'1157620': +"1157600": {} +"1157620": installDir: MagicalMILFs launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: MagicalMILFs.exe type: default - config: oslist: linux - executable: ./MagicalMILFs.sh + executable: "./MagicalMILFs.sh" type: default - config: oslist: macos executable: MagicalMILFs.app type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: MagicalMILFs-32.exe type: default @@ -55726,7 +55018,7 @@ schinese: 爆乳人妻战士 spanish: Milfs Mágicas tchinese: 爆乳人妻战士 -'1157640': +"1157640": installDir: Sakura Fox Adventure launch: - config: @@ -55741,27 +55033,27 @@ oslist: linux executable: SakuraFoxAdventure.sh type: default -'1157650': +"1157650": installDir: Pumpkin Smasher launch: - config: oslist: windows executable: PumpkinSmasher.exe type: vr -'1157740': {} -'1157750': +"1157740": {} +"1157750": installDir: CATGIRL LOVER 2 launch: - executable: CATGIRL LOVER 2.exe type: none -'1157760': {} -'1157780': +"1157760": {} +"1157780": installDir: Ace of Space launch: - executable: AceOfSpace.exe type: default -'1157790': - installDir: I Can't Believe It's Not Gambling 2K GOTY Edition +"1157790": + installDir: "I Can't Believe It's Not Gambling 2K GOTY Edition" launch: - config: oslist: windows @@ -55771,136 +55063,136 @@ oslist: linux executable: ICBING2k.x86_64 type: default -'1157810': - installDir: Dark City Vienna Collector's Edition +"1157810": + installDir: "Dark City Vienna Collector's Edition" launch: - config: oslist: windows executable: DC_Vienna_CE.exe type: default -'1157820': +"1157820": installDir: Runner Heroes launch: - config: oslist: windows executable: RunnerHeroes.exe type: none -'1157830': +"1157830": installDir: FinalFrontier launch: - - arguments: \"FRONTIER.EXE\" -conf \"dosbox_final-frontier.conf\" -noconsole + - arguments: "\\\"FRONTIER.EXE\\\" -conf \\\"dosbox_final-frontier.conf\\\" -noconsole" config: oslist: windows - executable: dosbox_windows\\dosbox.exe + executable: "dosbox_windows\\\\dosbox.exe" type: none - config: oslist: linux executable: runFinalFrontier.sh type: none -'1157840': +"1157840": installDir: Firezone launch: - - arguments: \"fz.exe\" -conf \"dosbox_firezone.conf\" -noconsole + - arguments: "\\\"fz.exe\\\" -conf \\\"dosbox_firezone.conf\\\" -noconsole" config: oslist: windows - executable: dosbox_windows\\dosbox.exe + executable: "dosbox_windows\\\\dosbox.exe" type: none - config: oslist: linux executable: runFireZone.sh type: none -'1157860': +"1157860": installDir: waterloo launch: - - arguments: \"WATERLOO.EXE\" -conf \"dosbox_waterloo.conf\" -noconsole + - arguments: "\\\"WATERLOO.EXE\\\" -conf \\\"dosbox_waterloo.conf\\\" -noconsole" config: oslist: windows - executable: dosbox_windows\\dosbox.exe + executable: "dosbox_windows\\\\dosbox.exe" type: none - config: oslist: linux executable: runWaterloo.sh type: none -'1157870': +"1157870": installDir: Savage launch: - - arguments: \"SAVAGE.exe\" -conf \"dosbox_savage.conf\" -noconsole + - arguments: "\\\"SAVAGE.exe\\\" -conf \\\"dosbox_savage.conf\\\" -noconsole" config: oslist: windows - executable: dosbox_windows\\dosbox.exe + executable: "dosbox_windows\\\\dosbox.exe" type: none - config: oslist: linux executable: runSavage.sh type: none -'1157880': +"1157880": installDir: PowerStruggle launch: - - arguments: \"POWERSTG.EXE\" -conf \"dosbox_power-struggle.conf\" -noconsole + - arguments: "\\\"POWERSTG.EXE\\\" -conf \\\"dosbox_power-struggle.conf\\\" -noconsole" config: oslist: windows - executable: dosbox_windows\\dosbox.exe + executable: "dosbox_windows\\\\dosbox.exe" type: none - config: oslist: linux executable: runPowerStruggle.sh type: default -'1157890': - installDir: The Binding of 'YOU' +"1157890": + installDir: "The Binding of 'YOU'" launch: - executable: TBOY.exe type: default -'1157900': {} -'1157910': +"1157900": {} +"1157910": installDir: Voxel Scavenger launch: - config: oslist: windows executable: Voxel Scavenger.exe type: default -'1157920': +"1157920": installDir: Beach Body Bros launch: - config: oslist: windows executable: BeachBodyBros.exe type: vr -'1157960': +"1157960": installDir: Blackout Rugby launch: - config: oslist: macos - executable: Blackout Rugby.app\\Contents\\MacOS\\Blackout Rugby + executable: "Blackout Rugby.app\\\\Contents\\\\MacOS\\\\Blackout Rugby" type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: Blackout Rugby.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: Blackout Rugby.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Blackout Rugby.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Blackout Rugby.x86 type: default -'1157980': +"1157980": installDir: Ball Pit Simulator launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Ballpitgame.exe type: none -'115800': +"115800": installDir: Owlboy launch: - config: @@ -55909,7 +55201,7 @@ executable: Owlboy.exe - config: oslist: linux - executable: ./Owlboy + executable: "./Owlboy" type: none - config: oslist: macos @@ -55918,39 +55210,37 @@ - config: oslist: windows description: Owlboy (DirectX 9 version) - description_loc: - english: Owlboy (DirectX 9 version) - executable: old_xna_version\\Owlboy.exe + executable: "old_xna_version\\\\Owlboy.exe" type: option1 - workingdir: old_xna_version\\ -'1158000': {} -'1158010': + workingdir: "old_xna_version\\\\" +"1158000": {} +"1158010": installDir: UnHolY ToRturEr launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: UnHolY ToRturEr.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows - executable: \\32bit\\UnHolY ToRturEr.exe + executable: "\\\\32bit\\\\UnHolY ToRturEr.exe" type: default -'1158020': {} -'1158040': +"1158020": {} +"1158040": installDir: Stay At Home launch: - executable: Stay At Home.exe type: default -'1158150': +"1158150": installDir: Viking Brothers 6 launch: - config: oslist: windows executable: VikingBrothers6.exe type: default -'1158160': +"1158160": installDir: Coral Island launch: - config: @@ -55958,11 +55248,11 @@ oslist: windows executable: ProjectCoral.exe type: default -'1158220': +"1158220": installDir: Kraken Academy launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Kraken Academy.exe type: default @@ -55971,32 +55261,32 @@ executable: Kraken Academy.app/Contents/MacOS/Kraken Academy type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Kraken Academy type: default -'1158230': +"1158230": installDir: Hunterssoul launch: - config: oslist: windows executable: Hunterssoul.exe type: default -'1158260': +"1158260": installDir: Heroes of Hellas Origins Part One launch: - config: oslist: windows executable: HeroesOfHellasOrigins_PartOne.exe type: default -'1158280': +"1158280": installDir: Legion 51 launch: - config: oslist: windows executable: Legion 51.exe type: default -'1158290': +"1158290": installDir: Mini Words launch: - config: @@ -56005,59 +55295,59 @@ type: default - config: oslist: macos - executable: MiniWords.app\\Contents\\MacOS\\MiniWords + executable: "MiniWords.app\\\\Contents\\\\MacOS\\\\MiniWords" type: default -'1158300': {} -'1158310': +"1158300": {} +"1158310": installDir: Crusader Kings III launch: - - arguments: '-nakama -simultaneouschunks 2' + - arguments: "-nakama -simultaneouschunks 2" config: oslist: windows executable: launcher/dowser.exe type: none - - arguments: '-nakama -simultaneouschunks 2' + - arguments: "-nakama -simultaneouschunks 2" config: oslist: macos executable: launcher/dowser type: none - - arguments: '--pdxlDisableHardwareSettings -nakama -simultaneouschunks 2' + - arguments: "--pdxlDisableHardwareSettings -nakama -simultaneouschunks 2" config: oslist: linux executable: launcher/dowser type: none -'1158320': +"1158320": installDir: Hentai Memory leak launch: - config: oslist: windows executable: hml.exe type: default -'1158370': +"1158370": installDir: Aragami 2 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Aragami2.exe type: default nameLocalized: schinese: 荒神2 -'1158390': - installDir: ' Убогое Издание' +"1158390": + installDir: " Убогое Издание" launch: - config: oslist: windows executable: Game.exe type: default -'1158410': +"1158410": installDir: Mole launch: - config: oslist: windows executable: MoleGame.exe type: default -'1158430': +"1158430": installDir: Jane Westlake Adventures - The Mystery Train launch: - config: @@ -56072,7 +55362,7 @@ oslist: linux executable: Jane Westlake Adventures - The Mystery Train.x86_64 type: default -'1158450': +"1158450": installDir: GALAXIUM launch: - config: @@ -56083,33 +55373,33 @@ oslist: macos executable: GALAXIUM-MAC-GAME.app type: default -'1158470': +"1158470": installDir: Voxelgram launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Voxelgram.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Voxelgram.exe type: default -'1158480': +"1158480": installDir: BAFF 4 launch: - config: oslist: windows executable: BAFF 4.exe type: default -'1158500': +"1158500": installDir: Between Two Castles - Digital Edition launch: - executable: BetweenTwoCastles.exe type: default -'1158590': {} -'1158650': +"1158590": {} +"1158650": installDir: Mindless launch: - config: @@ -56118,17 +55408,17 @@ type: default - config: oslist: macos - executable: Contents\\MacOS\\Mindless0.1mac + executable: "Contents\\\\MacOS\\\\Mindless0.1mac" type: default -'1158660': - installDir: I (DON'T) HATE HENTAI PUZZLES +"1158660": + installDir: "I (DON'T) HATE HENTAI PUZZLES" launch: - config: oslist: windows executable: nw.exe type: default -'1158680': {} -'1158690': +"1158680": {} +"1158690": installDir: hanghai launch: - config: @@ -56138,44 +55428,44 @@ nameLocalized: schinese: 航海日记:起航 tchinese: 航海日記:起航 -'1158740': +"1158740": installDir: Yuuki launch: - executable: Game.exe type: none -'1158750': +"1158750": installDir: Tile Conqueror launch: - config: oslist: windows executable: Tile Conqueror.exe type: none -'1158770': +"1158770": installDir: 1BIT CASTLE launch: - config: oslist: windows executable: 1BIT CASTLE.exe type: default -'1158820': +"1158820": installDir: Mahjong Royal Towers launch: - config: oslist: windows executable: Mahjong Royal Towers.exe type: default -'1158830': +"1158830": installDir: 1001 Jigsaw Castles And Palaces launch: - config: oslist: windows executable: 1001 Jigsaw. World Tour Castles and Palaces.exe type: default -'1158840': +"1158840": installDir: 记忆重现 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: 记忆重现.exe type: default @@ -56183,7 +55473,7 @@ oslist: macos executable: 记忆重现.app type: default -'1158850': +"1158850": installDir: TGAAC launch: - config: @@ -56192,38 +55482,36 @@ type: none nameLocalized: japanese: 大逆転裁判1&2 -成歩堂龍ノ介の冒險と覺悟- -'1158860': {} -'1158870': {} -'1158890': +"1158860": {} +"1158870": {} +"1158890": installDir: White Shadows launch: - config: oslist: windows executable: WhiteShadows.exe type: default -'1158910': +"1158910": installDir: Dream Detective launch: - config: oslist: windows executable: DreamDetective.exe type: none -'1158940': +"1158940": installDir: Blazing Sails launch: - config: oslist: windows executable: Launch_BlazingSails.exe - description: Launch game with intel 10th and 11th gen CPU fix - description_loc: - english: Launch game with intel 10th and 11th gen CPU fix executable: Launch_BlazingSails_With_Fix.exe -'1158970': +"1158970": installDir: Westmark Manor launch: - executable: Westmark Manor.exe type: none -'1158980': +"1158980": installDir: Idle Big Devil launch: - config: @@ -56242,65 +55530,65 @@ nameLocalized: english: Idle Big Devil schinese: 放置大魔王 -'1158990': - installDir: Alan's Attitude +"1158990": + installDir: "Alan's Attitude" launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Alans Attitude.exe type: none -'11590': +"11590": installDir: Hospital Tycoon launch: - executable: HospitalTycoon.exe -'1159000': +"1159000": installDir: win launch: - config: oslist: windows executable: 我是键盘侠.exe type: default -'1159020': +"1159020": installDir: Your Anime Waifu launch: - config: oslist: windows executable: YourAnimeWaifu.exe type: none -'1159040': +"1159040": installDir: KENDO launch: - - arguments: '-popupwindow' + - arguments: "-popupwindow" config: oslist: windows executable: KENDOS.exe type: vr - - arguments: '-popupwindow' + - arguments: "-popupwindow" config: oslist: windows executable: KENDOO.exe type: othervr -'1159070': +"1159070": installDir: AVroom launch: - config: oslist: windows executable: A-Vroom!.exe type: none -'1159090': +"1159090": nameLocalized: schinese: 佐瑞亚:碎裂纪元 -'1159150': {} -'1159160': {} -'1159240': +"1159150": {} +"1159160": {} +"1159240": installDir: Occultus Command launch: - config: oslist: windows executable: OccultusCommandver3.exe type: default -'1159260': +"1159260": installDir: PANDARA launch: - config: @@ -56313,24 +55601,24 @@ description: KeyConfig executable: KeyConfig_v2.12.exe type: config -'1159280': {} -'1159290': {} -'1159340': +"1159280": {} +"1159290": {} +"1159340": installDir: March Forward launch: - executable: March Forward.exe type: default -'1159350': +"1159350": installDir: earth launch: - - arguments: '-windowed' + - arguments: "-windowed" config: oslist: windows executable: earth.exe type: default nameLocalized: schinese: 模拟未来 世界 -'1159360': +"1159360": installDir: Athome launch: - config: @@ -56345,37 +55633,37 @@ english: MeiQi Season1 schinese: 孙美琪疑案 第一季 tchinese: 孫美琪疑案 第一季 -'1159390': {} -'1159430': +"1159390": {} +"1159430": installDir: Systematic Insanity launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: SI_Enhanced_EX\\Systematic Insanity.exe + executable: "SI_Enhanced_EX\\\\Systematic Insanity.exe" type: default -'1159450': +"1159450": installDir: Hayfever launch: - config: oslist: windows executable: Hayfever.exe type: default -'1159480': +"1159480": installDir: BOW MAN launch: - config: oslist: windows executable: BOW MAN.exe type: vr -'1159490': +"1159490": installDir: LowPoly 3D Art Paint by Number launch: - config: oslist: windows executable: LowPolyPaint.exe type: default -'1159500': +"1159500": installDir: Ghost Files 2 launch: - config: @@ -56384,13 +55672,13 @@ executable: GhostFiles2.exe type: none - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: GhostFiles2_i386 type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: GhostFiles2_amd64 @@ -56400,14 +55688,14 @@ description: Launch executable: GhostFiles2.app/Contents/MacOS/GhostFiles2 type: none -'1159510': +"1159510": installDir: Village Bus Driver Simulator launch: - config: oslist: windows executable: Villige Bus Driver Simulator.exe type: default -'1159520': +"1159520": installDir: Twists of My Life launch: - config: @@ -56423,20 +55711,20 @@ oslist: macos executable: ToML.app type: none -'1159540': +"1159540": installDir: Fear the Dark Unknown launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: DarkUnknown.exe type: default -'1159550': +"1159550": installDir: Supesu 2 launch: - - executable: Supesu2\\Binaries\\Win64\\Supesu2-Win64-Shipping.exe + - executable: "Supesu2\\\\Binaries\\\\Win64\\\\Supesu2-Win64-Shipping.exe" type: none -'1159560': +"1159560": installDir: Ziggurat 2 launch: - config: @@ -56451,38 +55739,36 @@ oslist: linux executable: Ziggurat2 type: default - - arguments: '-force-vulkan' + - arguments: "-force-vulkan" config: oslist: linux description: Ziggurat 2 - Vulkan - description_loc: - english: Ziggurat 2 - Vulkan executable: Ziggurat2 type: option1 nameLocalized: schinese: 通灵塔2 -'1159590': +"1159590": installDir: Lost In Dungeon launch: - config: oslist: windows executable: Lost_In_Dungeon.exe type: default -'1159610': +"1159610": installDir: Neighbourhood Loot launch: - config: oslist: windows executable: Neighbourhood Loot.exe type: default -'1159640': +"1159640": installDir: HENTAI - World War II launch: - config: oslist: windows executable: HENTAI WW2.exe type: default -'1159660': +"1159660": installDir: Moe Era launch: - config: @@ -56495,56 +55781,56 @@ type: default - config: oslist: macos - executable: MoeEra.app\\Contents\\MacOS\\MoeEra + executable: "MoeEra.app\\\\Contents\\\\MacOS\\\\MoeEra" type: default -'1159690': +"1159690": installDir: Voidtrain launch: - - arguments: '-EOS_OVERLAY_DISABLE' + - arguments: "-EOS_OVERLAY_DISABLE" config: - osarch: '64' + osarch: "64" oslist: windows executable: VoidTrain.exe type: default nameLocalized: schinese: 虚空列车 -'1159700': +"1159700": installDir: Kol_Prologue launch: - config: oslist: windows executable: Kol_Prologue.exe type: default -'1159770': +"1159770": installDir: RaceXXL Space launch: - config: oslist: windows executable: LL.exe type: default -'1159830': {} -'1159880': +"1159830": {} +"1159880": installDir: Quantumleaper launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Quantumleaper.exe type: default -'1159890': +"1159890": installDir: SuperCarDrift launch: - config: oslist: windows executable: SuperCarDrift.exe type: default -'1159970': {} -'1159990': +"1159970": {} +"1159990": installDir: 打工妹日记 launch: - executable: Game.exe type: default -'1160020': +"1160020": installDir: AshenForest launch: - config: @@ -56554,8 +55840,8 @@ nameLocalized: english: AshenForest koreana: 잿빛숲 (AshenForest) -'1160030': {} -'1160040': +"1160030": {} +"1160040": installDir: Human Factory launch: - config: @@ -56570,77 +55856,68 @@ oslist: linux executable: Human Factory.x86_64 type: default -'1160050': +"1160050": installDir: There is a Thief in my House launch: - - arguments: '-popupwindow' + - arguments: "-popupwindow" config: - osarch: '64' + osarch: "64" oslist: windows executable: Thief.exe type: vr -'1160100': +"1160100": installDir: Hentai Trap Hot Spring launch: - config: oslist: windows executable: Game.exe type: none -'1160190': +"1160190": installDir: Player One launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: PlayerOne type: none -'1160220': +"1160220": installDir: Paradise Killer launch: - config: - osarch: '64' + osarch: "64" oslist: windows - description_loc: - japanese: パラダイスキラー - schinese: 天堂岛杀手 - tchinese: 天堂島殺手 executable: ParadiseKiller.exe type: default - - arguments: '-dx12' + - arguments: "-dx12" config: - osarch: '64' + osarch: "64" oslist: windows description: Paradise Killer (DirectX 12) - description_loc: - english: Paradise Killer (DirectX 12) - japanese: パラダイスキラー (DirectX 12) - schinese: 天堂岛杀手 (DirectX 12) - tchinese: 天堂島殺手 (DirectX 12) executable: ParadiseKiller.exe type: option1 nameLocalized: japanese: パラダイスキラー schinese: 天堂岛杀手 tchinese: 天堂島殺手 -'1160330': +"1160330": installDir: Fight of Animals launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: FOA.exe type: none nameLocalized: schinese: 动物之鬪 tchinese: 動物之鬪 -'1160360': +"1160360": installDir: Miscreation launch: - config: oslist: windows executable: Miscreation.exe type: default -'1160440': +"1160440": installDir: PARANOIHELL launch: - config: @@ -56649,17 +55926,17 @@ type: default - config: oslist: macos - executable: PARANOIHELL (MAC).app\\Contents\\MacOS\\PARANOIHELL (MAC) + executable: "PARANOIHELL (MAC).app\\\\Contents\\\\MacOS\\\\PARANOIHELL (MAC)" type: default -'1160450': {} -'1160480': +"1160450": {} +"1160480": installDir: Boot Game Dev Sim launch: - config: oslist: windows executable: BootGameDevSim.exe type: default -'1160490': +"1160490": installDir: Master Of Pottery launch: - config: @@ -56669,56 +55946,56 @@ nameLocalized: japanese: 陶芸マスター schinese: 陶艺大师 -'1160500': +"1160500": installDir: AstronTycoon2_Ritual launch: - executable: AstronTycoon2_Ritual.exe type: default -'1160510': {} -'1160550': +"1160510": {} +"1160550": installDir: Super Smash the Ball VR launch: - config: oslist: windows executable: PangVr.exe type: vr -'1160690': {} -'1160700': +"1160690": {} +"1160700": installDir: Particle Wars launch: - executable: PW.exe type: default -'1160730': {} -'1160740': +"1160730": {} +"1160740": installDir: Mermaid Coralie Love and Madness launch: - config: oslist: windows - executable: MermaidCoralie\\MermaidCoralie.exe + executable: "MermaidCoralie\\\\MermaidCoralie.exe" type: default - config: oslist: linux - executable: MermaidCoralie\\MermaidCoralie.sh + executable: "MermaidCoralie\\\\MermaidCoralie.sh" type: default - config: oslist: macos - executable: MermaidCoralie\\MermaidCoralie.app + executable: "MermaidCoralie\\\\MermaidCoralie.app" type: default nameLocalized: french: Sirene Coralie ~ Amour et Folie -'1160750': +"1160750": installDir: Grim Clicker launch: - config: oslist: windows executable: game.exe type: none -'1160770': +"1160770": installDir: 家园VR launch: - executable: jiayuan.exe type: vr -'1160780': +"1160780": installDir: LoliTower launch: - description: LoliTower @@ -56729,7 +56006,7 @@ type: option2 nameLocalized: schinese: 萝莉塔 -'1160790': +"1160790": installDir: The Legend of Dark Witch Renovation launch: - config: @@ -56740,65 +56017,65 @@ japanese: 魔神少女 -Chronicle 2D ACT- Renovation schinese: 魔神少女 新生 tchinese: 魔神少女 新生 -'1160800': +"1160800": installDir: Rainbow Robin launch: - config: oslist: windows executable: RainbowRobinAlpha.exe type: default -'1160820': +"1160820": installDir: Bewitched launch: - config: oslist: macos - executable: Bewitched Mac OS.app\\Contents\\MacOS\\Bewitched Mac OS + executable: "Bewitched Mac OS.app\\\\Contents\\\\MacOS\\\\Bewitched Mac OS" type: default - config: - osarch: '32' + osarch: "32" oslist: windows - executable: Bewitched 32-bit\\Bewitched.exe + executable: "Bewitched 32-bit\\\\Bewitched.exe" type: default - config: - osarch: '64' + osarch: "64" oslist: windows - executable: Bewitched 64-bit\\Bewitched.exe + executable: "Bewitched 64-bit\\\\Bewitched.exe" type: default -'1160850': +"1160850": installDir: Black Office - Entertainment Department launch: - config: oslist: windows executable: GAME.exe type: default -'1160870': +"1160870": installDir: Dinosaur Hunting Patrol Multiplayer launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Multiplayer Dinosaurs Hunting Patrol.exe type: default nameLocalized: spanish: Caza Dinosaurios en Patrulla 3D Multijugador en lInea -'1160880': - installDir: Paul's World +"1160880": + installDir: "Paul's World" launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows description: Launch executable: Pauls World.exe type: default -'1160900': +"1160900": installDir: antarctic_girl launch: - config: oslist: windows executable: angirl.exe type: default -'1160910': {} -'1160920': +"1160910": {} +"1160920": installDir: Food Truck Renovation launch: - config: @@ -56807,7 +56084,7 @@ nameLocalized: schinese: 餐车大亨 tchinese: 餐車大亨 -'1160950': +"1160950": installDir: Yomi Alliance launch: - config: @@ -56822,14 +56099,14 @@ oslist: linux executable: YomiAlliance.sh type: default -'11610': +"11610": installDir: dragonnest launch: - config: oslist: windows executable: DNSteamLauncher.exe type: none -'116100': +"116100": installDir: Super Toy Cars launch: - config: @@ -56840,32 +56117,32 @@ oslist: macos description: Launch executable: osx/SuperToyCars.app -'1161000': {} -'1161020': {} -'1161110': +"1161000": {} +"1161020": {} +"1161110": installDir: In - Sight launch: - config: oslist: windows executable: In - Sight.exe type: vr -'1161120': +"1161120": installDir: A Ghostly Tale launch: - config: oslist: windows - executable: windows_content\\AGhostlyTale.exe + executable: "windows_content\\\\AGhostlyTale.exe" type: default -'1161140': +"1161140": installDir: Speakerman 2 launch: - executable: Speakerman2.exe type: none -'1161150': +"1161150": nameLocalized: english: Legend of sword and Magic MMO - schinese: '龙魂传奇:76复古版MMO Legend of sword and Magic' -'1161160': + schinese: "龙魂传奇:76复古版MMO Legend of sword and Magic" +"1161160": installDir: talesshoppuzzle launch: - config: @@ -56874,7 +56151,7 @@ type: none nameLocalized: koreana: 테일즈샵 퍼즐 -'1161170': +"1161170": installDir: The Rewinder launch: - config: @@ -56889,7 +56166,7 @@ japanese: ザ・リワインダー~黄泉からの旅人~ schinese: 山海旅人 tchinese: 山海旅人 -'1161190': +"1161190": installDir: natsunoiro launch: - executable: natsunoiro.exe @@ -56899,7 +56176,7 @@ japanese: 夏の色のノスタルジア schinese: 追忆夏色年华 tchinese: 追憶夏色年華 -'116120': +"116120": installDir: LightFish launch: - config: @@ -56908,14 +56185,14 @@ - config: oslist: macos executable: LightFish.app -'1161200': +"1161200": installDir: Foreign launch: - config: oslist: windows executable: Foreign.exe type: default -'1161210': +"1161210": installDir: Ray Versus launch: - config: @@ -56926,37 +56203,37 @@ oslist: linux executable: RayVersus.x86_64 type: default -'1161220': +"1161220": installDir: Time Squared launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: .\\bin\\win_x64_release\\TimeSquared.exe + executable: ".\\\\bin\\\\win_x64_release\\\\TimeSquared.exe" type: default - config: betakey: testingbranch - osarch: '64' + osarch: "64" oslist: windows description: Test Branch executable: launch.bat type: option1 - config: betakey: testingbranch - osarch: '64' + osarch: "64" oslist: windows description: DO NOT USE THIS ONE - executable: .\\bin\\win_x64_release\\GameLauncher.exe + executable: ".\\\\bin\\\\win_x64_release\\\\GameLauncher.exe" type: option2 - config: betakey: newtestingbranch - osarch: '64' + osarch: "64" oslist: windows description: Unity Test Branch executable: TimeSquared.exe type: option1 -'1161260': {} -'1161270': +"1161260": {} +"1161270": installDir: Freud Gate launch: - config: @@ -56965,21 +56242,21 @@ type: default nameLocalized: schinese: 心门 -'1161300': +"1161300": installDir: The Legend of Crystal Valley launch: - config: oslist: windows executable: locv.exe type: default -'1161320': +"1161320": installDir: 东方幻昼梦~ Touhou Fantasy Day launch: - config: oslist: windows executable: THFantasyDay.exe type: default -'1161330': +"1161330": installDir: Record Life launch: - config: @@ -56998,74 +56275,72 @@ - config: betakey: doomsday-crisis oslist: windows - ownsdlc: '1361140' + ownsdlc: "1361140" description: 末日危机剧本(Doomsday Crisis Script) - description_loc: - english: 末日危机剧本(Doomsday Crisis Script) - executable: .\\www\\dlc\\Record Life:Doomsday Crisis\\RLDC.exe + executable: ".\\\\www\\\\dlc\\\\Record Life:Doomsday Crisis\\\\RLDC.exe" type: config nameLocalized: english: Record Life schinese: 摆渡人生 -'1161360': +"1161360": installDir: Shisensho Solitaire launch: - config: oslist: windows executable: ShisenshoSolitaire.exe type: default -'1161430': +"1161430": installDir: Noosphere launch: - executable: Noosphere.exe type: none nameLocalized: schinese: 心灵领域 -'1161440': +"1161440": installDir: World War 2 Winter Gun Range VR Simulator launch: - config: oslist: windows executable: WW 2 Winter Gun Range.exe type: othervr -'1161490': +"1161490": installDir: MotoGP™20 launch: - executable: motogp20.exe type: none -'1161510': +"1161510": installDir: Lithium Inmate 39 Relapsed Edition launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Lithium.exe type: default -'1161550': +"1161550": installDir: Dungeon Chest launch: - config: oslist: windows executable: nw.exe type: default -'1161570': - installDir: Dark Parables Portrait of the Stained Princess Collector's Edition +"1161570": + installDir: "Dark Parables Portrait of the Stained Princess Collector's Edition" launch: - config: oslist: windows executable: DarkParables_PortraitOfTheStainedPrincess_CE.exe type: default -'1161580': +"1161580": installDir: Hardspace Shipbreaker launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Shipbreaker.exe type: default nameLocalized: schinese: 迷走深空:碎舰师 -'1161590': +"1161590": installDir: Punch Club 2 Fast Forward launch: - config: @@ -57073,7 +56348,7 @@ executable: Punch Club 2 Fast Forward.exe nameLocalized: schinese: 拳击俱乐部2:快进未来 -'1161650': +"1161650": installDir: Sakura Gamer 2 launch: - config: @@ -57088,57 +56363,57 @@ oslist: macos executable: Sakura Gamer 2.app type: default -'1161680': +"1161680": installDir: Bomb Bowling 2 launch: - executable: bb2.exe type: none -'1161770': +"1161770": installDir: Breeders of the Nephelym Alpha launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: OBF.exe type: default nameLocalized: - english: 'Breeders of the Nephelym: Alpha' -'1161780': {} -'1161800': + english: "Breeders of the Nephelym: Alpha" +"1161780": {} +"1161800": installDir: URO2 launch: - config: oslist: windows executable: Uro2.exe type: default -'1161810': +"1161810": installDir: SushiParty2 launch: - config: oslist: windows executable: SushiParty2.exe type: default -'1161820': +"1161820": installDir: Survived launch: - - arguments: ' -vr' + - arguments: " -vr" config: - osarch: '64' + osarch: "64" oslist: windows executable: my_game.exe type: vr nameLocalized: schinese: 生还 -'1161840': +"1161840": installDir: FunnyArchery launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: FunnyArchery.exe type: vr -'1161870': +"1161870": installDir: Epiphyllum in Love launch: - config: @@ -57148,18 +56423,18 @@ nameLocalized: schinese: 昙花 tchinese: 曇花 -'1161880': +"1161880": installDir: Vaporum Lockdown launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: in Borderless Window Mode executable: VaporumLockdown.exe type: option1 - - arguments: '-window-mode exclusive' + - arguments: "-window-mode exclusive" config: - osarch: '64' + osarch: "64" oslist: windows description: in Exclusive Fullscreen Mode executable: VaporumLockdown.exe @@ -57175,25 +56450,25 @@ executable: VaporumLockdown.app/Contents/MacOS/VaporumLockdown type: option2 - config: - osarch: '64' + osarch: "64" oslist: linux description: in Borderless Window Mode executable: VaporumLockdown.exe type: option1 - config: - osarch: '64' + osarch: "64" oslist: linux description: in Exclusive Fullscreen Mode executable: VaporumLockdown.exe type: option2 -'1161900': +"1161900": installDir: Door2Key launch: - config: oslist: windows executable: Door_next.exe type: none -'1161910': +"1161910": installDir: Exile Squadron launch: - config: @@ -57204,7 +56479,7 @@ oslist: linux executable: Exile_Squadron type: default -'1161930': +"1161930": installDir: DFHMJ launch: - config: @@ -57213,104 +56488,104 @@ type: none nameLocalized: schinese: 东方幻梦笺 ~ Touhou Phantasm Dream -'1162010': +"1162010": installDir: Fantasy & Blade Ⅱ launch: - executable: Game.exe type: none -'1162050': +"1162050": installDir: Knockout Party launch: - config: oslist: windows executable: KnockOutParty.exe type: none -'1162070': - installDir: Nyakori's Rabbit Doll +"1162070": + installDir: "Nyakori's Rabbit Doll" launch: - config: oslist: windows executable: Game.exe type: default -'1162080': {} -'1162100': {} -'1162130': +"1162080": {} +"1162100": {} +"1162130": installDir: Windbound launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: WindboundWindows.exe type: default -'1162170': +"1162170": installDir: Below Sunshade launch: - config: oslist: windows executable: Game.exe type: default -'1162240': +"1162240": nameLocalized: english: RIOT SIMULATOR russian: MITING SIMULATOR ukrainian: MITING SIMULATOR -'1162290': +"1162290": installDir: Easy hentai puzzle 2 launch: - config: oslist: windows executable: Easy hentai puzzle 2.exe type: config -'1162310': +"1162310": installDir: Drift Masters launch: - executable: Drift Masters.exe type: none -'1162320': +"1162320": installDir: AVA Dark History launch: - - arguments: '@f+ @INFOOFF' + - arguments: "@f+ @INFOOFF" config: oslist: windows description: Full screen executable: AVA2dk.win32_steam.exe type: option1 - - arguments: '@f1920x1080 @z0.9 @INFOOFF' + - arguments: "@f1920x1080 @z0.9 @INFOOFF" config: oslist: windows description: Windowed executable: AVA2dk.win32_steam.exe type: option2 -'1162330': +"1162330": installDir: Earthlings launch: - config: oslist: windows executable: Earthlings.exe type: default -'1162350': +"1162350": installDir: The Quarry launch: - config: oslist: windows executable: TheQuarry.exe type: default -'1162360': {} -'1162370': +"1162360": {} +"1162370": installDir: Paper - A Game of Folding launch: - config: oslist: windows executable: Paper A Game of Folding.exe type: default -'1162400': +"1162400": installDir: The Climate Trail launch: - config: oslist: windows executable: ClimateTrail.exe type: default -'1162430': +"1162430": installDir: Salad Fields launch: - config: @@ -57325,14 +56600,14 @@ oslist: linux executable: Salad Fields type: none -'1162440': +"1162440": installDir: Explosive Jake launch: - config: oslist: windows executable: ExplosiveJake.exe type: default -'1162470': +"1162470": installDir: IIslands of War launch: - config: @@ -57343,21 +56618,21 @@ oslist: macos executable: IIslandsOfWar.app type: default -'1162520': +"1162520": installDir: richman10 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: richman10.exe type: default - config: oslist: macos - executable: richman10.app\\Contents\\MacOS\\richman10 + executable: "richman10.app\\\\Contents\\\\MacOS\\\\richman10" type: default nameLocalized: english: Richman10 -'1162560': +"1162560": installDir: Ciconia When They Cry Phase 1 launch: - config: @@ -57370,23 +56645,23 @@ type: default nameLocalized: japanese: キコニアのなく頃に phase1 代わりのいる君たちへ -'1162570': +"1162570": installDir: The Protagonist EX-1 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: The_Protagonist.exe type: default -'1162580': {} -'1162590': +"1162580": {} +"1162590": installDir: Halloween with Veronica launch: - config: oslist: windows executable: Halloween With Veronica.exe type: none -'1162630': +"1162630": installDir: Solitaire Call of Honor launch: - config: @@ -57397,7 +56672,7 @@ oslist: macos executable: Solitaire Call of Honor.app type: default -'1162640': +"1162640": installDir: Adventure mosaics. Forest spirits launch: - config: @@ -57408,7 +56683,7 @@ oslist: macos executable: Adventure mosaics. Forest spirits.app type: default -'1162650': +"1162650": installDir: 剑为君舞 launch: - executable: Launcher.exe @@ -57418,29 +56693,29 @@ japanese: 剣が君 schinese: 剑为君舞 tchinese: 劍為君舞 -'1162670': +"1162670": installDir: Blocks! Julius Caesar launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Blocks! Julius Caesar.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: Blocks! Julius Caesar.exe type: default - config: oslist: macos - executable: Blocks! Julius Caesar.app\\Contents\\MacOS\\Blocks! Julius Caesar + executable: "Blocks! Julius Caesar.app\\\\Contents\\\\MacOS\\\\Blocks! Julius Caesar" type: none -'1162680': +"1162680": installDir: Stigmatized Property 事故物件 launch: - executable: Stigmatized Property.exe type: none -'1162690': +"1162690": installDir: House Number 666 launch: - config: @@ -57451,11 +56726,11 @@ oslist: linux executable: HouseNumber666 type: default -'1162700': +"1162700": installDir: Midnight Protocol launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: MidnightProtocol.exe type: default @@ -57467,14 +56742,14 @@ oslist: linux executable: MidnightProtocol.x86_64 type: default -'1162730': +"1162730": installDir: Deep Ocean Rush launch: - config: oslist: windows executable: DeepOceanRush.exe type: none -'1162750': +"1162750": installDir: Songs of Syx launch: - config: @@ -57486,40 +56761,40 @@ executable: SongsOfSyxMac.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: songsofsyx type: default -'1162760': +"1162760": installDir: MMX Otherworld Mystery - Expanded Edition launch: - - arguments: '@f+ @INFOOFF' + - arguments: "@f+ @INFOOFF" config: oslist: windows description: Full screen executable: MMXom.win32_steam.exe type: option1 - - arguments: '@f1920x1080 @z0.9 @INFOOFF' + - arguments: "@f1920x1080 @z0.9 @INFOOFF" config: oslist: windows description: Windowed executable: MMXom.win32_steam.exe type: option2 -'1162820': +"1162820": installDir: Kings Of Wings launch: - config: oslist: windows executable: KingsOfWings.exe type: default -'1162880': +"1162880": installDir: Pax Ruthenia launch: - config: oslist: windows executable: Pax Ruthenia.exe type: default -'1162900': +"1162900": installDir: Iron Blood VR launch: - config: @@ -57527,7 +56802,7 @@ description: Launch executable: Iron Blood VR.exe type: vr -'1162920': +"1162920": installDir: Time of the Moon launch: - config: @@ -57536,15 +56811,15 @@ type: default nameLocalized: koreana: 달의 시간 (Time of the Moon) -'1162930': +"1162930": installDir: Split or Steal launch: - config: oslist: windows executable: Split Or Steal.exe type: none -'1162940': {} -'1162960': +"1162940": {} +"1162960": installDir: Angry Video Game Nerd I & II Deluxe launch: - config: @@ -57559,24 +56834,24 @@ oslist: linux executable: Angry Video Game Nerd I & II Deluxe.x86_64 type: default -'1162990': +"1162990": installDir: ZOR Pilgrimage of the Slorfs launch: - config: oslist: windows executable: CDS_Prototype.exe type: default -'1163020': {} -'1163040': +"1163020": {} +"1163040": nameLocalized: schinese: 亿万富翁之路 -'1163060': +"1163060": installDir: The Making of Karateka launch: - executable: making_of_karateka.exe nameLocalized: japanese: メイキング・オブ・カラテカ -'1163070': +"1163070": installDir: RaiOhGar Asuka and the King of Steel launch: - executable: Game.exe @@ -57585,27 +56860,27 @@ japanese: 爆災雷鋼ライオウガー schinese: 爆灾雷钢雷王号 tchinese: 爆災雷鋼雷王號 -'1163090': +"1163090": installDir: Boot Camp Fitness launch: - config: oslist: windows - executable: '${1163090}.exe' + executable: "${1163090}.exe" type: default -'1163100': +"1163100": installDir: WSYZ launch: - executable: game.exe type: none -'1163130': +"1163130": installDir: Oasis launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Oasis.exe type: config -'1163140': +"1163140": installDir: JMGame launch: - executable: 非一般职场.exe @@ -57617,7 +56892,7 @@ nameLocalized: english: Shanghai Office Simulator schinese: 非一般职场 -'1163150': +"1163150": installDir: Unfamiliar launch: - config: @@ -57628,16 +56903,16 @@ oslist: macos executable: Unfamiliar.app type: none -'1163160': {} -'1163290': +"1163160": {} +"1163290": installDir: Vortex Attack EX launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: VortexAttackEX.exe type: default -'1163300': +"1163300": installDir: visser launch: - config: @@ -57648,31 +56923,31 @@ oslist: macos executable: visser.app type: default -'1163320': +"1163320": installDir: Zombie horde launch: - config: oslist: windows executable: game.exe type: default -'1163350': {} -'1163370': {} -'1163460': +"1163350": {} +"1163370": {} +"1163460": installDir: Daenerys doesn’t want Hentai launch: - config: oslist: windows - executable: Daenerys doesn't want Hentai.exe + executable: "Daenerys doesn't want Hentai.exe" type: none -'1163470': +"1163470": installDir: GiveUpTheDupe launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: game.exe type: default -'1163480': +"1163480": installDir: WTC OVN 2 launch: - config: @@ -57684,7 +56959,7 @@ executable: WelcomeToChichesterOVN2.sh type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: WelcomeToChichesterOVN2.exe type: default @@ -57692,32 +56967,32 @@ oslist: macos executable: WelcomeToChichesterOVN2.app type: default -'1163490': +"1163490": installDir: Gangsters 1920 launch: - config: oslist: windows executable: GangstersLauncher.exe type: default -'1163500': +"1163500": installDir: Warp Drive launch: - config: oslist: windows executable: WarpDrive.exe type: default -'1163550': +"1163550": installDir: Captain Tsubasa Rise of New Champions launch: - config: oslist: windows - executable: \\GameData\\rename.exe + executable: "\\\\GameData\\\\rename.exe" type: default - workingdir: \\GameData + workingdir: "\\\\GameData" nameLocalized: schinese: 队长小翼 新秀崛起 tchinese: 隊長小翼 新秀崛起 -'1163560': +"1163560": installDir: SuperEpic The Entertainment War launch: - config: @@ -57725,7 +57000,7 @@ description: Launch executable: Superepic.exe type: none -'1163570': +"1163570": installDir: skidlocked launch: - config: @@ -57736,11 +57011,11 @@ oslist: macos executable: skidlocked.app type: default -'1163590': +"1163590": installDir: OP2 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: game.exe type: default @@ -57749,7 +57024,7 @@ japanese: バレットガールズ ファンタジア koreana: 불렛걸즈 판타지아 tchinese: 子彈少女 幻想曲 -'1163600': +"1163600": installDir: Omega Labyrinth Life launch: - config: @@ -57759,39 +57034,39 @@ nameLocalized: english: Omega Labyrinth Life japanese: オメガラビリンス ライフ -'1163610': +"1163610": installDir: my_steamworks launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: CustomGravityProject.exe type: none -'1163620': - installDir: Haunted Poppy's Nightmare +"1163620": + installDir: "Haunted Poppy's Nightmare" launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Haunted.exe type: default -'1163660': +"1163660": installDir: Soul Reaper launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Soul Reaper.exe type: default -'1163690': +"1163690": installDir: Wizards launch: - - arguments: '-jar desktop-1.0.jar' + - arguments: "-jar desktop-1.0.jar" config: oslist: windows executable: java/bin/javaw.exe type: default - - arguments: '-jar desktop-1.0.jar' + - arguments: "-jar desktop-1.0.jar" config: oslist: linux executable: java/bin/java @@ -57800,30 +57075,28 @@ oslist: macos executable: Wizards.app type: default - - arguments: '-jar desktop-1.0.jar -port 25555' + - arguments: "-jar desktop-1.0.jar -port 25555" config: betakey: beta oslist: windows description: Beta Server - description_loc: - english: Beta Server executable: java/bin/javaw.exe type: default -'1163740': +"1163740": installDir: Card Hog launch: - config: oslist: windows executable: CardHog.exe type: none -'1163830': +"1163830": installDir: Sticky Dildo Man launch: - config: oslist: windows executable: Sticky Dildo Man.exe type: default -'1163870': +"1163870": installDir: Mecha Knights Nightmare Alpha launch: - config: @@ -57834,66 +57107,66 @@ betakey: Damian executable: game.exe type: default -'1163910': +"1163910": installDir: Brass Brigade launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Brass Brigade.exe type: default -'1163920': {} -'1163950': - installDir: A Dragon's Tale VR +"1163920": {} +"1163950": + installDir: "A Dragon's Tale VR" launch: - config: oslist: windows - executable: A Dragon's Tale VR.exe + executable: "A Dragon's Tale VR.exe" type: vr -'1163960': - installDir: Paranormal Files Hook Man's Legend Collector's Edition +"1163960": + installDir: "Paranormal Files Hook Man's Legend Collector's Edition" launch: - config: oslist: windows executable: ParanormalFiles_TheHookMansLegend_CE.exe type: default -'1163980': +"1163980": installDir: Crazy Shopping launch: - config: oslist: windows executable: CartRace.exe type: none -'1163990': +"1163990": installDir: Starexcess launch: - config: oslist: windows executable: starexcess.exe type: default -'1164000': +"1164000": installDir: Six-steps Mystery launch: - config: oslist: windows executable: SixStepsMystery.exe type: default -'1164020': +"1164020": installDir: Iron Sun launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Iron Sun.exe type: default -'1164040': +"1164040": installDir: Victoriana - Steampunk Text Adventure launch: - config: oslist: windows executable: Victoriana.exe type: default -'1164050': +"1164050": installDir: When The Past Was Around launch: - config: @@ -57908,12 +57181,12 @@ nameLocalized: schinese: 往事 - When the Past Was Around tchinese: 往事 - When the Past Was Around -'1164060': +"1164060": installDir: Ars Fabulae launch: - executable: The Last Show of Mr. Chardish.exe type: none -'1164250': +"1164250": installDir: Model Builder launch: - config: @@ -57922,33 +57195,33 @@ type: default nameLocalized: schinese: 胶佬模拟器 -'1164310': +"1164310": installDir: Fairytale Solitaire Witch Charms launch: - config: oslist: windows executable: Fairytale Solitaire Witch Charms.exe type: default -'1164330': +"1164330": installDir: Smile To Fly launch: - executable: STF.exe type: default -'1164350': +"1164350": installDir: Anime Otaku Girl launch: - config: oslist: windows executable: game.exe type: default -'1164390': +"1164390": installDir: Haunted Gas Station launch: - config: oslist: windows executable: Haunted Gas Station.exe type: default -'1164410': +"1164410": installDir: Restless Hero launch: - config: @@ -57957,20 +57230,20 @@ type: default - config: oslist: linux - executable: Build.linux\\Restless_Hero_linux.x86_64 + executable: "Build.linux\\\\Restless_Hero_linux.x86_64" type: default - config: oslist: macos - executable: Build.app\\Contents\\MacOS\\Build + executable: "Build.app\\\\Contents\\\\MacOS\\\\Build" type: default -'1164440': +"1164440": installDir: Extreme Offroad Monster Simulator launch: - config: oslist: windows executable: Extreme Offroad Monster Simulator.exe type: default -'1164480': +"1164480": installDir: Killer Gin launch: - config: @@ -57985,45 +57258,45 @@ oslist: macos executable: Game.app type: default -'1164520': +"1164520": installDir: The Book Of Yorle launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: The_Book_Of_Yorle.exe type: default -'1164550': +"1164550": installDir: Disc Golf Adventure VR launch: - config: oslist: windows executable: VR Disc Golf.exe type: vr -'1164570': +"1164570": installDir: PhuckerInTheRome launch: - config: oslist: windows executable: PhuckerInTheRome/RomeHTML5.exe type: default -'1164620': +"1164620": nameLocalized: russian: Cyborg Killer Москва 2042 -'1164660': +"1164660": installDir: SHOOTING CHICKEN BRUTAL SUCKERS launch: - executable: ShootingChickenBS.exe type: none -'1164690': +"1164690": installDir: Wigmund launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: RPG.exe type: none -'1164740': +"1164740": installDir: Salting the Earth launch: - config: @@ -58036,37 +57309,37 @@ type: default - config: oslist: macos - executable: Contents\\MacOS\\SaltingtheEarth + executable: "Contents\\\\MacOS\\\\SaltingtheEarth" type: default -'1164760': +"1164760": installDir: Vugluskr Zombie Rampage launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: vugluskr.exe type: default -'1164800': {} -'1164830': +"1164800": {} +"1164830": installDir: Long Journey launch: - config: oslist: windows executable: LongJourney.exe type: default -'1164850': +"1164850": installDir: Sinking Simulator launch: - config: oslist: windows executable: sinkingsimulator.exe type: default - - arguments: '-XStartOnFirstThread -jar dist/libs/sinkingsimulator-4.0.jar' + - arguments: "-XStartOnFirstThread -jar dist/libs/sinkingsimulator-4.0.jar" config: oslist: macos executable: dist/jre/bin/java type: default -'1164860': +"1164860": installDir: Darkour launch: - config: @@ -58075,56 +57348,56 @@ type: default - config: oslist: macos - executable: Darkour.app\\Contents\\MacOS\\Darkour + executable: "Darkour.app\\\\Contents\\\\MacOS\\\\Darkour" type: default - config: oslist: linux executable: Darkour.x86 type: default -'1164910': +"1164910": installDir: Doll launch: - config: oslist: windows executable: doll.exe type: default -'1164930': +"1164930": installDir: Lustful Survival launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Lustful Survival.exe type: default -'1164940': +"1164940": installDir: Trepang2 launch: - executable: CPPFPS.exe nameLocalized: schinese: 海参2 -'1164970': +"1164970": installDir: Dogs of Wall Street launch: - config: oslist: windows executable: Dogs of Wallstreet.exe type: none -'1164990': +"1164990": installDir: Skin Witch launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: game.exe type: default -'1165010': +"1165010": installDir: Lost Home Battle Of Island launch: - config: oslist: windows executable: Lost HomeBattle of Island.exe type: none -'1165020': +"1165020": installDir: Legend of Everything launch: - config: @@ -58139,29 +57412,29 @@ oslist: linux executable: LegendofEverything.sh type: default -'1165040': +"1165040": nameLocalized: schinese: 超载战队 -'1165090': +"1165090": installDir: Restaurant Solitaire Pleasant Dinner launch: - config: oslist: windows executable: Restaurant Solitaire Pleasant Dinner.exe type: default -'1165110': +"1165110": nameLocalized: english: MM Garden - schinese: ' 馒头花园' -'1165140': + schinese: " 馒头花园" +"1165140": installDir: Picross Love launch: - config: oslist: windows executable: Picross Love.exe type: none -'1165150': {} -'1165170': +"1165150": {} +"1165170": installDir: Morok launch: - config: @@ -58172,70 +57445,58 @@ oslist: linux executable: Morok(Linux).x86_64 type: default -'1165180': +"1165180": installDir: Knight Eternal launch: - config: oslist: windows executable: Game.exe type: default -'1165230': +"1165230": installDir: Elevenses - The Flask launch: - config: oslist: windows - description: 'Elevenses: The Flask - Part 1' - description_loc: - english: 'Elevenses: The Flask - Part 1' + description: "Elevenses: The Flask - Part 1" executable: The Flask - Part 1/ElevensesF.exe type: option1 - config: oslist: windows - description: 'Elevenses: The Flask - Part 2' - description_loc: - english: 'Elevenses: The Flask - Part 2' + description: "Elevenses: The Flask - Part 2" executable: The Flask - Part 2/ElevensesF2.exe type: option2 - config: oslist: macos - description: 'Elevenses: The Flask - Part 1' - description_loc: - english: 'Elevenses: The Flask - Part 1' + description: "Elevenses: The Flask - Part 1" executable: The Flask - Part 1/ElevensesF.app type: option1 - config: oslist: macos - description: 'Elevenses: The Flask - Part 2' - description_loc: - english: 'Elevenses: The Flask - Part 2' + description: "Elevenses: The Flask - Part 2" executable: The Flask - Part 2/ElevensesF2.app type: option2 - config: oslist: linux - description: 'Elevenses: The Flask - Part 1' - description_loc: - english: 'Elevenses: The Flask - Part 1' + description: "Elevenses: The Flask - Part 1" executable: The Flask - Part 1/ElevensesF.sh type: option1 - config: oslist: linux - description: 'Elevenses: The Flask - Part 2' - description_loc: - english: 'Elevenses: The Flask - Part 2' + description: "Elevenses: The Flask - Part 2" executable: The Flask - Part 2/ElevensesF2.sh type: option2 nameLocalized: - english: 'Elevenses: The Flask' - koreana: '일레븐지스: 플라스크' -'1165270': + english: "Elevenses: The Flask" + koreana: "일레븐지스: 플라스크" +"1165270": installDir: Synthesis Universe -Episode 00- launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: SynthesisUniverse_EP00_S\\SU_Story.exe + executable: "SynthesisUniverse_EP00_S\\\\SU_Story.exe" type: vr -'1165280': +"1165280": installDir: Shuffle World launch: - config: @@ -58246,12 +57507,12 @@ oslist: linux executable: Shuffle World.x86_64 type: none -'1165290': +"1165290": installDir: Gifted launch: - executable: Underhill.exe type: none -'1165350': +"1165350": installDir: Garbage Classification Simulator launch: - config: @@ -58260,15 +57521,15 @@ type: default nameLocalized: schinese: 垃圾分类模拟器 -'1165380': +"1165380": installDir: ToBeHeadedOrNotToBe launch: - config: oslist: windows executable: ToBeHeadedOrNotToBe.exe type: none -'1165390': {} -'1165400': +"1165390": {} +"1165400": installDir: Stellar Commanders launch: - config: @@ -58276,7 +57537,7 @@ executable: Stellar/Stellar.exe type: default workingdir: Stellar -'1165420': +"1165420": installDir: DETECTIVE SOLITAIRE BUTLER STORY launch: - config: @@ -58287,71 +57548,71 @@ oslist: macos executable: Detective solitaire. Butler story.app type: default -'1165430': +"1165430": installDir: 1001 JIGSAW. MYTHS OF ANCIENT GREECE launch: - config: oslist: windows executable: 1001 Jigsaw. Myths of ancient Greece.exe type: default -'1165460': +"1165460": installDir: Unlit launch: - config: oslist: windows executable: Unlit.exe type: default -'1165490': +"1165490": installDir: New Tricks for Old Gods launch: - config: oslist: windows executable: NTfOG.exe type: default -'1165520': +"1165520": installDir: survival launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: survival/WeaponSystem.exe type: default -'1165540': +"1165540": installDir: MAD Maze launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: MadMaze_64.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: MadMaze_86.exe type: default -'1165570': +"1165570": installDir: TsukaiFurushitaKotobaYaUtaWoMV launch: - config: oslist: windows executable: TsukaiFurushitaMV.exe type: vr -'1165590': +"1165590": installDir: It Will Find You launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: It Will Find You.exe type: default -'1165600': +"1165600": installDir: Lost in Transit launch: - config: oslist: windows executable: LostInTransit.exe type: default -'1165610': +"1165610": installDir: Titeuf Mega Party launch: - config: @@ -58362,38 +57623,38 @@ oslist: macos executable: TiteufMegaParty.app type: none -'1165620': {} -'1165640': {} -'1165660': {} -'1165670': +"1165620": {} +"1165640": {} +"1165660": {} +"1165670": installDir: EVEAetherWars launch: - - arguments: '-crashreports' + - arguments: "-crashreports" config: - osarch: '64' + osarch: "64" oslist: windows executable: AbyssalHounds.exe type: default -'1165720': +"1165720": installDir: Beyond Enemy Lines 2 Online launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: BeyondEnemyLines2.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch in DX12 Mode executable: BeyondEnemyLines2.exe type: option1 - config: - osarch: '64' + osarch: "64" oslist: windows executable: WindowsServer/DedicatedServer.exe type: server -'1165740': +"1165740": installDir: Match Solitaire launch: - config: @@ -58404,15 +57665,15 @@ oslist: macos executable: Match Solitaire.app type: default -'1165750': +"1165750": installDir: PAGAN3 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Pagan3.exe type: default -'1165820': +"1165820": installDir: Super Rebellion launch: - config: @@ -58421,54 +57682,54 @@ type: default - config: oslist: macos - executable: Super Rebellion - Mac.app\\Contents\\MacOS\\Super Rebellion + executable: "Super Rebellion - Mac.app\\\\Contents\\\\MacOS\\\\Super Rebellion" type: default -'1165830': +"1165830": installDir: Final Mission VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Final Mission VR.exe type: vr - - arguments: '--trackpad' + - arguments: "--trackpad" config: - osarch: '64' + osarch: "64" oslist: windows description: Final Mission VR (Touchpad Movement) executable: Final Mission VR.exe type: vr -'1165840': +"1165840": installDir: The Strange Story Of Brian Fisher Chapter 1 launch: - executable: tssobfchapter1.exe type: default -'1165850': +"1165850": installDir: SistineVR launch: - config: oslist: windows executable: SistineVR.exe type: vr -'1165860': - installDir: '6.0' +"1165860": + installDir: "6.0" launch: - executable: 6.0.exe type: none -'1165870': +"1165870": installDir: Mahou Arms launch: - executable: MagicalGirlDF.exe type: none -'1165910': +"1165910": installDir: Humanity launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Humanity.exe type: default -'1165920': +"1165920": installDir: Lives so Sweet launch: - config: @@ -58483,40 +57744,40 @@ oslist: macos executable: LivesSoSweet.app type: default -'1166000': +"1166000": installDir: Battleships and Carriers - Pacific War launch: - config: oslist: windows executable: battleshipPW.exe type: default -'1166040': +"1166040": nameLocalized: english: Battle Round latam: Battle Round -'1166050': +"1166050": installDir: lxjy launch: - config: oslist: windows executable: game.exe type: default -'1166070': +"1166070": installDir: TRIUMPHACTION launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: \\WindowsNoEditor\\TRIUMPHACTION\\Binaries\\Win64\\MMO-Win64-Shipping.exe + executable: "\\\\WindowsNoEditor\\\\TRIUMPHACTION\\\\Binaries\\\\Win64\\\\MMO-Win64-Shipping.exe" type: none -'1166090': +"1166090": installDir: EnviroGolf launch: - config: oslist: windows executable: Envirogolf.exe type: default -'1166100': +"1166100": installDir: Danger Course VR launch: - config: @@ -58531,7 +57792,7 @@ oslist: macos executable: DangerCourseVR.exe type: vr -'1166110': +"1166110": installDir: Gods of Love An Otome Visual Novel launch: - config: @@ -58546,50 +57807,50 @@ oslist: linux executable: GodsofLove.sh type: default -'1166120': +"1166120": installDir: SisterFight launch: - config: oslist: windows executable: SisterFight.exe type: config -'1166130': +"1166130": installDir: FightingMoore launch: - config: oslist: windows executable: Fighting Moore.exe type: vr -'1166140': +"1166140": nameLocalized: - french: 'Art interdit: L''artiste masqué' - german: 'Verbotene Kunst: Der maskierte Künstler' - japanese: ' 禁じられた芸術:仮面のアーティスト' - koreana: '금지된 예술: 가면을 쓴 화가' + french: "Art interdit: L'artiste masqué" + german: "Verbotene Kunst: Der maskierte Künstler" + japanese: " 禁じられた芸術:仮面のアーティスト" + koreana: "금지된 예술: 가면을 쓴 화가" schinese: 禁忌艺术:戴面具的艺术家 - spanish: 'Arte prohibido: El artista enmascarado' -'1166230': + spanish: "Arte prohibido: El artista enmascarado" +"1166230": installDir: 1812 Napoleon Wars launch: - config: oslist: windows executable: 1812.exe type: default -'1166240': +"1166240": installDir: Asian Riddles launch: - config: oslist: windows executable: Asian Riddles.exe type: default -'1166250': +"1166250": installDir: Mahjong Gold launch: - config: oslist: windows executable: Mahjong Gold.exe type: default -'1166290': +"1166290": installDir: Death and Taxes launch: - config: @@ -58598,13 +57859,13 @@ type: default - config: oslist: macos - executable: Death and Taxes.app\\Contents\\MacOS\\Death and Taxes + executable: "Death and Taxes.app\\\\Contents\\\\MacOS\\\\Death and Taxes" type: default - config: oslist: linux executable: DeathAndTaxes.x86_64 type: default -'1166320': +"1166320": installDir: Hentai Shiri launch: - config: @@ -58615,16 +57876,16 @@ oslist: macos executable: Hentai Shiri.app type: none -'1166400': {} -'1166430': +"1166400": {} +"1166430": installDir: In The Bag launch: - config: oslist: windows executable: InTheBag.exe type: default -'1166480': {} -'1166510': +"1166480": {} +"1166510": installDir: Nanoworld launch: - config: @@ -58633,23 +57894,23 @@ type: default nameLocalized: russian: Наномир -'1166540': +"1166540": installDir: Beetle Hunter launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: BeetleHunter.exe type: none -'1166550': {} -'1166580': +"1166550": {} +"1166580": installDir: Best Plumber launch: - config: oslist: windows executable: BEST PLUMBER.exe type: none -'1166600': +"1166600": installDir: Fog Knows Your Name launch: - config: @@ -58664,15 +57925,15 @@ oslist: linux executable: FogKnowsYourName type: none -'1166660': {} -'1166680': - installDir: Daraney - Guardian's Rise +"1166660": {} +"1166680": + installDir: "Daraney - Guardian's Rise" launch: - config: oslist: windows executable: Daraney.exe type: default -'1166710': +"1166710": installDir: Find The Treasure launch: - config: @@ -58686,27 +57947,27 @@ nameLocalized: english: Find The Treasure italian: Find The Treasure -'1166740': +"1166740": installDir: Centralia Homecoming launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Centralia Homecoming.exe type: default -'1166760': +"1166760": installDir: Jinga Online launch: - executable: Jinga Online.exe type: none -'1166780': +"1166780": installDir: Interactivity The Interactive Experience launch: - config: oslist: windows executable: Interactivity_v2.exe type: default -'1166790': +"1166790": installDir: Hexterio launch: - config: @@ -58715,9 +57976,9 @@ type: default - config: oslist: macos - executable: hex_mac.app\\Contents\\MacOS\\hex_mac + executable: "hex_mac.app\\\\Contents\\\\MacOS\\\\hex_mac" type: default -'1166800': +"1166800": installDir: Grand Academy II Attack of the Sequel launch: - config: @@ -58732,14 +57993,14 @@ oslist: linux executable: GrandAcademy2 type: none -'1166830': +"1166830": installDir: LE2977 game build launch: - config: oslist: windows executable: LE2977/LostEmpire.exe type: default -'1166840': +"1166840": installDir: Breach The Archangel Job launch: - config: @@ -58754,16 +58015,16 @@ oslist: linux executable: BreachTheArchangelJob type: none -'1166890': {} -'1166910': +"1166890": {} +"1166910": installDir: Swiss Knife launch: - config: oslist: windows executable: SwissKnife.exe type: default -'1166940': {} -'1166980': +"1166940": {} +"1166980": installDir: Hentai Nekogirl launch: - config: @@ -58774,14 +58035,14 @@ oslist: macos executable: Hentai Nekogirl.app type: none -'1167090': +"1167090": installDir: Desert coachman launch: - config: oslist: windows executable: game.exe type: default -'1167100': +"1167100": installDir: Metal Mind launch: - config: @@ -58789,25 +58050,22 @@ executable: MetalMind.exe type: default nameLocalized: - japanese: 'メタルマインド ' -'1167110': {} -'1167130': {} -'1167140': + japanese: "メタルマインド " +"1167110": {} +"1167130": {} +"1167140": installDir: Gloria Victis Siege launch: - executable: SiegeSurvival.exe type: none nameLocalized: schinese: 征服的荣耀:围城 -'1167170': +"1167170": installDir: Guilty Parade launch: - config: oslist: windows description: Run 64-bit - description_loc: - english: Run 64-bit - russian: Запустить 64-bit executable: GuiltyParade.exe type: default - config: @@ -58819,20 +58077,17 @@ executable: GuiltyParade.app type: default - config: - osarch: '32' + osarch: "32" oslist: windows description: Run 32-bit - description_loc: - english: Run 32-bit - russian: Запустить 32-bit executable: GuiltyParade-32.exe type: default -'1167270': +"1167270": installDir: Tank Impact launch: - executable: Tank Impact.exe type: none -'1167300': +"1167300": installDir: Battle Axe launch: - config: @@ -58841,66 +58096,66 @@ type: default - config: oslist: macos - executable: Battle Axe.app\\Contents\\MacOS\\Battle Axe + executable: "Battle Axe.app\\\\Contents\\\\MacOS\\\\Battle Axe" type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Battle Axe type: default -'1167320': +"1167320": installDir: Artificial Extinction launch: - config: oslist: windows executable: ArtificialExtinction.exe type: default -'1167350': +"1167350": installDir: Skyous launch: - config: oslist: windows executable: Skyous.exe type: default -'1167370': +"1167370": installDir: ElevatorVR launch: - config: oslist: windows executable: ElevatorVR.exe type: vr -'1167380': +"1167380": installDir: Neither Day nor Night launch: - config: oslist: windows executable: NDNN.exe type: none -'1167430': +"1167430": installDir: The Loopholes Chronicles launch: - config: oslist: windows executable: The Loopholes Chronicles.exe type: vr -'1167450': +"1167450": installDir: DaemonXMachina launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: DXM.exe type: default nameLocalized: japanese: DAEMON X MACHINA(デモンエクスマキナ) -'1167460': +"1167460": installDir: Hero Hours Contract launch: - config: oslist: windows executable: Hero Hours Contract.exe type: default -'1167470': +"1167470": installDir: Street Jam The Rise launch: - config: @@ -58915,22 +58170,22 @@ oslist: linux executable: StreetJamTheRise type: none -'1167530': +"1167530": installDir: Ailment launch: - config: oslist: windows executable: Ailment.exe type: default -'1167540': - installDir: KiKi'sAdventure +"1167540": + installDir: "KiKi'sAdventure" launch: - description: windows 64 executable: Game.exe type: default nameLocalized: - schinese: '灵石镜世:序' -'1167570': + schinese: "灵石镜世:序" +"1167570": installDir: PROJECTRUN launch: - config: @@ -58939,22 +58194,22 @@ type: default - config: oslist: macos - executable: prmacrelease.app\\Contents\\MacOS\\PROJECT RUN + executable: "prmacrelease.app\\\\Contents\\\\MacOS\\\\PROJECT RUN" type: default -'1167590': +"1167590": installDir: Dimensionality 3.5 launch: - config: oslist: windows executable: dimension.exe type: none -'1167610': {} -'1167630': +"1167610": {} +"1167630": installDir: Teardown launch: - executable: teardown.exe type: default -'1167640': +"1167640": installDir: Femida launch: - config: @@ -58969,15 +58224,15 @@ oslist: linux executable: Femida.x86_64 type: none -'1167650': +"1167650": installDir: Context launch: - config: oslist: windows executable: Context.exe type: default -'1167670': {} -'1167680': +"1167670": {} +"1167680": installDir: Orbital Bullet launch: - config: @@ -58987,7 +58242,7 @@ nameLocalized: german: Orbital Bullet – Das 360° Rogue-lite japanese: Orbital Bullet – 360° ローグライト -'1167700': +"1167700": installDir: hallucination - 幻觉 launch: - config: @@ -58998,7 +58253,7 @@ oslist: macos executable: Mac.app type: none -'1167710': +"1167710": installDir: clutchball launch: - config: @@ -59009,62 +58264,58 @@ oslist: macos executable: clutchball.app type: default -'1167730': +"1167730": installDir: A Time Paradox launch: - config: oslist: windows executable: A Time Paradox.exe type: none -'1167750': +"1167750": installDir: LamplightersLeague launch: - - arguments: '--pdxlEnableSteamDeckCompatibilityMode' + - arguments: "--pdxlEnableSteamDeckCompatibilityMode" config: - osarch: '64' + osarch: "64" oslist: windows description: Launcher - description_loc: - english: Launcher executable: launcher/dowser.exe type: option1 - config: - osarch: '64' + osarch: "64" oslist: windows description: Game - description_loc: - english: Game executable: LamplightersLeague.exe type: option2 - config: betakey: poc-final - osarch: '64' + osarch: "64" oslist: windows executable: WiseguyPrototype.exe type: default -'1167760': +"1167760": installDir: 4islands launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: The4Islands.exe type: default -'1167770': +"1167770": installDir: More dark launch: - config: oslist: windows executable: More dark.exe type: default -'1167790': +"1167790": installDir: ds_sc launch: - config: oslist: windows executable: ds_sc.exe type: default -'1167800': +"1167800": installDir: Exphelius - Arena launch: - config: @@ -59075,8 +58326,8 @@ oslist: macos executable: Exphelius.app type: default -'1167820': {} -'1167850': +"1167820": {} +"1167850": installDir: Penguin Park 3D launch: - config: @@ -59087,29 +58338,29 @@ oslist: macos executable: PenguinPark3D.app type: default -'1167900': +"1167900": installDir: Friday 星期五部门 launch: - config: oslist: windows executable: Game.exe type: default -'1167930': +"1167930": installDir: Shooty Mine launch: - config: oslist: windows executable: ShootyMine.exe type: none -'1167940': {} -'1167950': - installDir: Vampire's Fall Origins +"1167940": {} +"1167950": + installDir: "Vampire's Fall Origins" launch: - config: oslist: windows - executable: Vampire's Fall Origins.exe + executable: "Vampire's Fall Origins.exe" type: none -'1168000': +"1168000": installDir: High School Otome launch: - config: @@ -59120,59 +58371,59 @@ oslist: macos executable: nw-app.app type: default -'1168050': +"1168050": installDir: Fairytale Mosaics Beauty and Beast launch: - config: oslist: windows executable: Fairytale Mosaics. Beauty and the Beast.exe type: default -'1168060': +"1168060": installDir: Knight Solitaire launch: - config: oslist: windows executable: Knight Solitaire.exe type: default -'1168070': +"1168070": installDir: Mystery Solitaire The Arkham Spirits launch: - config: oslist: windows - executable: Mystery Solitaire. Arkham's Spirits.exe + executable: "Mystery Solitaire. Arkham's Spirits.exe" type: default -'1168160': +"1168160": installDir: Piping Hot launch: - config: oslist: windows executable: Piping Hot.exe type: default -'1168170': +"1168170": installDir: HENTAI HORROR The Eight Pictures launch: - config: oslist: windows executable: HENTAI HORROR The Eight Pictures.exe type: default -'1168210': +"1168210": installDir: BUBBERKNUCKLES launch: - executable: BUBBERKNUCKLES.exe type: vr -'1168250': +"1168250": installDir: SOH launch: - config: betakey: sohBeta oslist: windows - executable: soh\\WizardDeckPC.exe + executable: "soh\\\\WizardDeckPC.exe" type: default - config: oslist: macos executable: SOH_MAC.app type: default -'1168290': +"1168290": installDir: TD Strategy of Three kingdoms塔防三国 launch: - config: @@ -59182,21 +58433,21 @@ nameLocalized: schinese: 天真派塔防英雄传 tchinese: 天真派塔防英雄傳 -'1168320': +"1168320": installDir: Zombie valley launch: - config: oslist: windows executable: game.exe type: default -'1168360': +"1168360": installDir: Detective Solitaire Inspector Magic launch: - config: oslist: windows executable: Detective Solitaire. Inspector Magic.exe type: default -'1168420': +"1168420": installDir: passenger seat launch: - config: @@ -59207,7 +58458,7 @@ oslist: macos executable: passenger_seat.app type: default -'1168430': +"1168430": installDir: Dairy Princess launch: - executable: Rakunou Princess.exe @@ -59216,7 +58467,7 @@ japanese: ラクノープリンセス schinese: 牧场甜心 tchinese: 牧場甜心 -'1168470': +"1168470": installDir: 千面_Melancholy launch: - config: @@ -59227,36 +58478,36 @@ oslist: macos executable: 千面.app type: none -'1168490': {} -'1168530': +"1168490": {} +"1168530": installDir: Babel Climbers launch: - executable: Babel Climbers.exe type: none nameLocalized: schinese: 登塔者们 -'1168540': +"1168540": nameLocalized: english: Law of life -'1168550': - installDir: The Hunter's Journals - Blissful Ignorance +"1168550": + installDir: "The Hunter's Journals - Blissful Ignorance" launch: - config: oslist: windows - executable: The Hunter's Journals - Blissful Ignorance.exe + executable: "The Hunter's Journals - Blissful Ignorance.exe" type: default -'1168600': +"1168600": installDir: Infinite Sparkles launch: - config: oslist: windows executable: Infinite Sparkles.exe type: none -'1168610': +"1168610": installDir: Natural Instincts launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: NaturalInstincts.exe type: default @@ -59264,7 +58515,7 @@ oslist: macos executable: NaturalInstincts.app type: default -'1168630': +"1168630": installDir: Active Neurons launch: - config: @@ -59279,22 +58530,22 @@ oslist: linux executable: ActiveNeurons.x86_64 type: default -'1168650': +"1168650": installDir: Angry Bunny launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Angrybunny.exe type: default -'1168660': +"1168660": installDir: SC Jogos launch: - config: oslist: windows executable: Barro 2020/Barro 2020.exe type: default -'1168690': +"1168690": installDir: HELLSEED launch: - config: @@ -59305,21 +58556,21 @@ oslist: windows executable: S2Configuration.exe type: config -'1168740': +"1168740": installDir: Old School Horror Game Bright Day launch: - config: oslist: windows executable: OldSchoolHorrorGame.exe type: default -'1168790': +"1168790": installDir: Ground War launch: - config: oslist: windows executable: GWar.exe type: default -'1168800': +"1168800": installDir: Mulite Sword Man launch: - config: @@ -59328,25 +58579,25 @@ type: default - config: oslist: macos - executable: Mulite.app\\Contents\\MacOS\\Mulite + executable: "Mulite.app\\\\Contents\\\\MacOS\\\\Mulite" type: default nameLocalized: schinese: 魔剑士 -'1168820': - installDir: Myths of the World The Heart of Desolation Collector's Edition +"1168820": + installDir: "Myths of the World The Heart of Desolation Collector's Edition" launch: - config: oslist: windows executable: MythsOfTheWorld_TheHeartOfDesolation_CE.exe type: default -'1168830': - installDir: Mystery Case Files Ravenhearst Unlocked Collector's Edition +"1168830": + installDir: "Mystery Case Files Ravenhearst Unlocked Collector's Edition" launch: - config: oslist: windows executable: MysteryCaseFiles_RavenhearstUnlocked_CE.exe type: default -'1168840': +"1168840": installDir: ProjectO launch: - config: @@ -59356,7 +58607,7 @@ nameLocalized: english: Project Oasis schinese: 绿洲计划 -'1168880': +"1168880": installDir: MOLEK-SYNTEZ launch: - config: @@ -59371,8 +58622,8 @@ oslist: linux executable: MOLEK-SYNTEZ type: default -'1168920': {} -'1168940': +"1168920": {} +"1168940": installDir: 水晶核心 launch: - config: @@ -59382,31 +58633,31 @@ nameLocalized: english: Crystal core schinese: 水晶核心 -'1168960': +"1168960": installDir: Warbrush launch: - config: oslist: windows executable: Warbrush.exe type: none -'1168970': +"1168970": installDir: Drunk ride launch: - executable: DRUNK_RIDE.exe type: none -'1168990': +"1168990": installDir: Planet destroyer launch: - executable: PLANET DESTROYER.exe type: none -'1169000': +"1169000": installDir: tw launch: - config: oslist: windows executable: TORINTO.exe type: default -'1169020': +"1169020": installDir: Dark Fall Ghost Vigil launch: - config: @@ -59417,15 +58668,15 @@ oslist: macos executable: DarkFallGhostVigil.app/Contents/MacOS/Dark Fall - Ghost Vigil type: default -'1169030': +"1169030": installDir: Monophobia launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Monophobia.exe type: default -'1169040': +"1169040": installDir: Necesse launch: - config: @@ -59436,33 +58687,27 @@ oslist: macos executable: Necesse.app type: default - - arguments: >- - -XX:+UnlockExperimentalVMOptions -XX:+UseG1GC -XX:G1NewSizePercent=20 -XX:G1ReservePercent=20 - -XX:MaxGCPauseMillis=50 -XX:G1HeapRegionSize=32M -Xms512m -Xmx3G -jar Necesse.jar + - arguments: "-XX:+UnlockExperimentalVMOptions -XX:+UseG1GC -XX:G1NewSizePercent=20 -XX:G1ReservePercent=20 -XX:MaxGCPauseMillis=50 -XX:G1HeapRegionSize=32M -Xms512m -Xmx3G -jar Necesse.jar" config: oslist: linux - executable: ./jre/bin/java + executable: "./jre/bin/java" type: default - - arguments: >- - -XX:+UnlockExperimentalVMOptions -XX:+UseG1GC -XX:G1NewSizePercent=20 -XX:G1ReservePercent=20 - -XX:MaxGCPauseMillis=50 -XX:G1HeapRegionSize=32M -jar Necesse.jar + - arguments: "-XX:+UnlockExperimentalVMOptions -XX:+UseG1GC -XX:G1NewSizePercent=20 -XX:G1ReservePercent=20 -XX:MaxGCPauseMillis=50 -XX:G1HeapRegionSize=32M -jar Necesse.jar" config: - osarch: '64' + osarch: "64" oslist: windows description: Launch with no ram arguments - description_loc: - english: Launch with no ram arguments executable: jre/bin/javaw.exe -'1169050': +"1169050": installDir: Language Worm launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: language-worm.exe type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: language-worm type: none @@ -59470,21 +58715,21 @@ oslist: macos executable: language-worm.app/Contents/MacOS/language-worm type: none -'1169060': +"1169060": installDir: Shield Shock launch: - config: oslist: windows executable: ShieldShock.exe type: none -'1169070': +"1169070": installDir: Red Evil launch: - config: oslist: windows executable: RedEvil.exe type: default -'1169100': +"1169100": installDir: Gazillionaire launch: - config: @@ -59495,62 +58740,61 @@ oslist: macos executable: Gazillionaire.app type: none -'1169140': {} -'1169160': +"1169140": {} +"1169160": installDir: ECHORIA Ancient Echoes launch: - config: oslist: windows executable: Game.exe type: none -'1169170': +"1169170": installDir: The Rest of Our Lives launch: - config: oslist: windows executable: TheRestofOurLives.exe type: default -'1169230': +"1169230": installDir: R_U_B_Y_寻常交织的日常 launch: - config: oslist: windows executable: Game.exe type: default -'1169310': +"1169310": installDir: The Chronicles of Joseph of Egypt launch: - config: oslist: windows executable: JosephOfEgypt.exe type: default -'1169340': +"1169340": installDir: Trauma Simulator - launch: [] -'1169400': {} -'1169410': {} -'1169420': +"1169400": {} +"1169410": {} +"1169420": installDir: Monstrüous launch: - config: oslist: windows executable: Monstruous.exe type: none -'1169430': +"1169430": installDir: Ransomware Dating Simulator launch: - config: oslist: windows executable: Ransomware Dating.exe type: default -'1169460': +"1169460": installDir: Ancient continent launch: - config: oslist: windows executable: Game.exe type: default -'1169490': +"1169490": installDir: Interactive Horror Stories launch: - config: @@ -59558,12 +58802,12 @@ executable: Interactive Horror Stories.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: InteractiveHorrorStories.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: InteractiveHorrorStories.x86_64 type: none @@ -59571,52 +58815,52 @@ oslist: macos executable: Interactive Horror Stories.app type: default -'1169500': +"1169500": installDir: The Valley launch: - config: oslist: windows executable: The Valley.exe type: default -'1169510': +"1169510": installDir: Game Breaker launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: GameBreaker.exe type: default -'1169520': +"1169520": installDir: Guild of Ascension launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: GuildOfAscension.exe type: none nameLocalized: schinese: 勇攀高塔 -'1169540': +"1169540": installDir: HIGHRISE launch: - executable: Highrise.exe type: none -'1169630': +"1169630": installDir: Traps Ahead! launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TrapsAhead!.exe type: default -'1169640': +"1169640": installDir: 最后的阳光 The Last Sunshine launch: - config: oslist: windows executable: lamplighter.exe type: none -'1169690': +"1169690": installDir: Shadowplay Metropolis Foe launch: - config: @@ -59625,7 +58869,7 @@ type: none nameLocalized: schinese: 影子游戏:星城行动 -'1169740': +"1169740": installDir: Danger Scavenger launch: - config: @@ -59642,56 +58886,56 @@ type: default nameLocalized: schinese: 摩天机动队(Danger Scavenger)-赛博朋克风-3D动作闯关-肉鸽游戏 -'1169770': +"1169770": installDir: Swordrite launch: - config: oslist: windows executable: Swordrite.exe type: default -'1169780': +"1169780": installDir: Ambienz launch: - config: oslist: windows executable: Ambienz.exe type: default -'1169790': {} -'1169870': +"1169790": {} +"1169870": installDir: WLDG Steam launch launch: - config: oslist: windows executable: wldg.exe type: default -'1169880': +"1169880": installDir: Hentai Quilm launch: - executable: HentaiQuilm.exe type: none -'1170030': +"1170030": installDir: Eye Of Plunder launch: - config: oslist: windows - executable: EOPlunder\\EOPlunder.exe + executable: "EOPlunder\\\\EOPlunder.exe" type: default -'1170050': +"1170050": installDir: Null Drifter launch: - config: oslist: windows executable: Null Drifter.exe type: default -'1170060': +"1170060": installDir: Boomerang X launch: - config: oslist: windows executable: BOOMERANG X.exe type: default -'1170070': {} -'1170080': +"1170070": {} +"1170080": installDir: Foretales launch: - config: @@ -59701,32 +58945,32 @@ nameLocalized: schinese: 预言奇谈 tchinese: 預言奇談 -'1170090': {} -'1170110': +"1170090": {} +"1170110": installDir: Lee inside TV launch: - executable: LeeInsideTV.exe type: none -'1170120': +"1170120": installDir: OUTTA GAS launch: - config: oslist: windows executable: OUTTA GAS.exe type: default -'1170160': +"1170160": installDir: Golf98 launch: - executable: Golf98.exe type: none -'1170170': - installDir: Alfonzo's Arctic Adventure +"1170170": + installDir: "Alfonzo's Arctic Adventure" launch: - config: oslist: windows executable: AlfonzoGame.exe type: default -'1170180': +"1170180": installDir: Beat.School launch: - config: @@ -59737,83 +58981,83 @@ oslist: macos executable: Beat.School.app type: default -'1170190': +"1170190": installDir: Bogatyr launch: - config: oslist: windows executable: Bogatyr.exe type: none -'1170200': +"1170200": installDir: Ope launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: OPE.exe type: default -'1170210': +"1170210": installDir: Is the President a Traitor launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: PresidentT.exe type: default -'1170230': {} -'1170250': +"1170230": {} +"1170250": installDir: Eutergeläuter launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Eutergelaeuter.exe type: default -'1170290': +"1170290": installDir: Lovely Heroines launch: - config: oslist: windows executable: Lovelyheroines.exe type: none -'1170300': +"1170300": installDir: Glitchangels launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Glitchangels.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Glitchangels type: default - config: oslist: macos - executable: Glitchangels.app\\Contents\\MacOS\\Glitchangels + executable: "Glitchangels.app\\\\Contents\\\\MacOS\\\\Glitchangels" type: default -'1170320': +"1170320": installDir: Hentai energy Halloween launch: - config: oslist: windows executable: heh.exe type: default -'1170330': +"1170330": installDir: toz launch: - config: - osarch: '64' + osarch: "64" oslist: linux executable: puny type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: puny.exe type: default -'1170340': +"1170340": installDir: Hentai Jigsaw Puzzle 2 launch: - config: @@ -59828,182 +59072,180 @@ oslist: linux executable: Hentai Jigsaw Puzzle 2.x86_64 type: default -'1170370': +"1170370": installDir: Whimsy launch: - config: oslist: windows - executable: Whimsy\\whimsy.exe + executable: "Whimsy\\\\whimsy.exe" type: none -'1170390': +"1170390": installDir: GameBook launch: - config: oslist: windows executable: GameBook.exe type: default -'1170400': +"1170400": installDir: LabyrinthOfTheWitch launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: LabyrinthOfTheWitch.exe type: default nameLocalized: japanese: 魔女の迷宮 tchinese: 魔女的迷宮 -'1170440': {} -'1170560': {} -'1170580': {} -'1170620': {} -'1170630': {} -'1170670': {} -'1170720': +"1170440": {} +"1170560": {} +"1170580": {} +"1170620": {} +"1170630": {} +"1170670": {} +"1170720": installDir: PocketCars launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: PocketCars.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: PocketCars.x86_64 type: default -'1170760': +"1170760": installDir: XIII - Classic launch: - config: oslist: windows - executable: .\\system\\XIII.exe + executable: ".\\\\system\\\\XIII.exe" type: default -'1170820': +"1170820": installDir: Lust from Beyond - Prologue launch: - executable: Lust from Beyond - Prologue.exe type: none -'1170830': +"1170830": installDir: ZLM Crafter launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ZLM_Crafter.exe type: default nameLocalized: schinese: ZLM工艺 tchinese: ZLM工藝 -'1170840': +"1170840": installDir: Pamp Quest launch: - config: oslist: windows executable: Pamp Quest.exe type: default -'1170870': +"1170870": installDir: Rain of Fire launch: - config: oslist: windows executable: Rain of Fire.exe type: default -'1170880': - installDir: Grimm's Hollow +"1170880": + installDir: "Grimm's Hollow" launch: - config: oslist: windows executable: RPG_RT.exe type: default -'1170910': +"1170910": installDir: SEN launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: sen.exe type: default -'1170950': +"1170950": installDir: Mortal Online 2 launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Start the Mortal Online 2 Launcher - description_loc: - english: Start the Mortal Online 2 Launcher executable: MortalOnline2Launcher.exe type: option1 -'1170960': +"1170960": installDir: The Eye of Borrack launch: - config: oslist: windows executable: Adventure2.exe type: default -'1170970': +"1170970": installDir: Marbles on Stream launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: MarblesOnStream.exe type: default - config: betakey: betav1 - osarch: '64' + osarch: "64" oslist: windows description: Marbles on Stream Beta Testing executable: MarblesOnStream.exe type: default -'1170980': +"1170980": installDir: A Planet of Mine launch: - config: oslist: windows executable: A Planet of Mine.exe type: none -'1171070': +"1171070": installDir: Medieval - Embers of War launch: - executable: Medieval.exe type: none -'1171080': +"1171080": installDir: Diesel Attack launch: - config: oslist: windows executable: Diesel Attack.exe type: default -'1171110': - installDir: Kedemara - The Orphan's Ballad +"1171110": + installDir: "Kedemara - The Orphan's Ballad" launch: - config: oslist: windows executable: Game.exe type: default -'1171120': +"1171120": installDir: Nira launch: - config: oslist: windows executable: nira.exe type: default -'1171130': +"1171130": installDir: Scraper Gauntlet launch: - executable: Project_ARMS.exe type: vr -'1171140': +"1171140": installDir: Countersnipe launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Countersnipe.exe type: none -'1171160': +"1171160": installDir: mimhufford launch: - config: @@ -60018,37 +59260,37 @@ oslist: linux executable: NUVAVULT.x86_64 type: none -'1171180': {} -'1171230': +"1171180": {} +"1171230": installDir: CubeLend launch: - - arguments: '-popupwindow' + - arguments: "-popupwindow" config: oslist: windows executable: Cubeland.exe type: vr -'1171240': +"1171240": installDir: Reikos Fragments launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Reiko.exe type: default - - arguments: '-vr' + - arguments: "-vr" config: - osarch: '64' + osarch: "64" oslist: windows executable: Reiko.exe type: vr -'1171250': - installDir: Suka's Escape +"1171250": + installDir: "Suka's Escape" launch: - config: oslist: windows executable: Sukas_Escape.exe type: vr -'1171260': +"1171260": installDir: Hollow Head launch: - config: @@ -60063,15 +59305,15 @@ oslist: linux executable: HolloHeadDCLinux.x86_64 type: default -'1171290': {} -'1171310': +"1171290": {} +"1171310": installDir: Valakas Story launch: - config: oslist: windows executable: Valakas_Story.exe type: default -'1171320': +"1171320": installDir: Frog_Detective_3 launch: - config: @@ -60082,76 +59324,76 @@ oslist: macos executable: Frog_Detective_3.app type: default -'1171330': +"1171330": installDir: Reviser launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Reviser.exe type: default -'1171340': +"1171340": nameLocalized: - russian: 'Механоиды: Протокол Войны' -'1171370': + russian: "Механоиды: Протокол Войны" +"1171370": installDir: The Supper launch: - config: oslist: windows executable: The Supper.exe type: default -'1171430': +"1171430": installDir: Maids Girls launch: - executable: Maids Girls.exe type: none -'1171440': +"1171440": installDir: Hentai Halloween launch: - executable: Hentai Halloween.exe type: none -'1171520': +"1171520": installDir: Gravity Chase launch: - config: oslist: windows executable: Gravity Chase.exe type: default -'1171540': {} -'1171560': +"1171540": {} +"1171560": installDir: Adventureland XL launch: - config: oslist: windows executable: Adventureland XL.exe type: default -'1171570': +"1171570": installDir: Color Soul Memories launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Color Soul Memories.exe type: none - config: oslist: macos - executable: Color Soul Memories.app\\Contents\\MacOS\\Color Soul Memories + executable: "Color Soul Memories.app\\\\Contents\\\\MacOS\\\\Color Soul Memories" type: none -'1171600': {} -'1171610': {} -'1171620': - installDir: 'Remember, Lights Out' +"1171600": {} +"1171610": {} +"1171620": + installDir: "Remember, Lights Out" launch: - - arguments: '-windowed' + - arguments: "-windowed" config: oslist: windows - executable: Remember Lights Out\\win64\\nw.exe + executable: "Remember Lights Out\\\\win64\\\\nw.exe" type: default - config: oslist: macos - executable: Remember Lights Out\\mac64\\Remember Light Out.app\\Contents\\MacOS\\nwjs + executable: "Remember Lights Out\\\\mac64\\\\Remember Light Out.app\\\\Contents\\\\MacOS\\\\nwjs" type: default -'1171640': +"1171640": installDir: Man Wreck launch: - config: @@ -60162,40 +59404,40 @@ oslist: macos executable: TownF6.app type: none -'1171660': +"1171660": installDir: The Ambassador launch: - config: oslist: windows executable: The Ambassador Fractured Timelines.exe type: default -'1171690': +"1171690": installDir: Wayfinder launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Wayfinder.exe type: default -'1171700': +"1171700": nameLocalized: tchinese: Karma - 訴說一個反烏托邦世界之下的故事。 -'1171770': +"1171770": installDir: Super Novel Collector (Speedrun Edition) launch: - config: oslist: windows executable: Super Novel Collector (Speedrun Edition).exe type: none -'1171810': +"1171810": installDir: Immortal Girl launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Immortal Girl/Immortal Girl.exe type: default -'1171820': +"1171820": installDir: Creme de la Creme launch: - config: @@ -60210,23 +59452,23 @@ oslist: linux executable: CremeDeLaCreme type: none -'1171860': {} -'1171880': +"1171860": {} +"1171880": installDir: ALPHA launch: - config: oslist: windows executable: Alpha.exe type: default -'1171970': {} -'1171990': - installDir: 'Aah, Halloween pie!' +"1171970": {} +"1171990": + installDir: "Aah, Halloween pie!" launch: - config: oslist: windows executable: AAH HALLOWEEN PIE.exe type: default -'1172000': +"1172000": installDir: Captain Cook Word Puzzle launch: - config: @@ -60239,35 +59481,35 @@ type: none - executable: CaptainCook.x86_64 type: none -'1172040': {} -'1172060': +"1172040": {} +"1172060": installDir: Rest In Pieces launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Rest_In_Pieces.exe type: vr -'1172080': +"1172080": installDir: Anonymous Player launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows executable: Game.exe type: default -'1172090': +"1172090": installDir: In Passing launch: - config: oslist: windows - executable: WindowsNoEditor\\Unbelievable.exe + executable: "WindowsNoEditor\\\\Unbelievable.exe" type: default -'1172120': +"1172120": installDir: OCEAN OF BATTLES launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Default Windows desktop 64-bit.exe type: default @@ -60276,95 +59518,95 @@ executable: Default Mac desktop Universal.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Default Linux desktop 64-bit.x86_64 type: default -'1172140': +"1172140": installDir: Monster Battles TCG launch: - config: oslist: macos - executable: MonsterBattles.app\\Contents\\MacOS\\MonsterBattles + executable: "MonsterBattles.app\\\\Contents\\\\MacOS\\\\MonsterBattles" type: default - config: oslist: windows executable: MonsterBattles/MonsterBattles.exe type: default -'1172150': +"1172150": installDir: Blue Boy Bleeding Out launch: - config: oslist: windows executable: Blue Boy Bleeding Out 1.01.exe type: default -'1172170': +"1172170": installDir: Krystopia A Puzzle Journey launch: - executable: Krystopia.exe type: default -'1172190': +"1172190": installDir: Chinatown Detective Agency launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Chinatown Detective Agency.exe type: default - config: oslist: macos - executable: Chinatown Detective Agency.app\\Contents\\MacOS\\Chinatown Detective Agency + executable: "Chinatown Detective Agency.app\\\\Contents\\\\MacOS\\\\Chinatown Detective Agency" type: default -'1172220': +"1172220": installDir: Space Space launch: - config: oslist: windows executable: game.exe type: default -'1172280': +"1172280": installDir: BUS SIMULATOR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: BUS_SIMULATOR_VR.exe type: vr - config: - osarch: '64' + osarch: "64" oslist: windows executable: BUS_SIMULATOR_OCULUS.exe type: othervr -'1172340': +"1172340": installDir: Short Scary Stories launch: - config: oslist: windows executable: SSS.exe type: default -'1172350': {} -'1172370': {} -'1172380': +"1172350": {} +"1172370": {} +"1172380": installDir: Jedi Fallen Order launch: - - executable: 'link2ea://launchgame/1172380?platform=steam&theme=jfo' + - executable: "link2ea://launchgame/1172380?platform=steam&theme=jfo" type: none nameLocalized: japanese: STAR WARS ジェダイ:フォールン・オーダー™ - koreana: '스타워즈 제다이: 오더의 몰락™' - latam: 'STAR WARS Jedi: La Orden caída™' - polish: 'STAR WARS Jedi: Upadły zakon™' - russian: 'ЗВЁЗДНЫЕ ВОЙНЫ Джедаи: Павший Орден™' + koreana: "스타워즈 제다이: 오더의 몰락™" + latam: "STAR WARS Jedi: La Orden caída™" + polish: "STAR WARS Jedi: Upadły zakon™" + russian: "ЗВЁЗДНЫЕ ВОЙНЫ Джедаи: Павший Орден™" schinese: 《星球大战 绝地:陨落的武士团™》 tchinese: 《STAR WARS 絕地:組織殞落™》 -'1172390': +"1172390": installDir: Anime Tanks Arena launch: - config: oslist: windows executable: Anime Tanks Arena.exe type: default -'1172400': +"1172400": installDir: Battle Mage Card Caster launch: - config: @@ -60379,19 +59621,19 @@ oslist: macos executable: Battle Mage - Card Caster.app type: default -'1172410': +"1172410": installDir: Rage Among The Stars launch: - config: oslist: windows executable: Square Hell.exe type: default -'1172430': +"1172430": installDir: Combat Force launch: - executable: CombatForces.exe type: default -'1172450': +"1172450": installDir: Carto launch: - config: @@ -60404,29 +59646,27 @@ type: default nameLocalized: sc_schinese: 无尽旅图 -'1172470': +"1172470": installDir: Apex Legends launch: - - arguments: '-steam' + - arguments: "-steam" config: - osarch: '64' + osarch: "64" oslist: windows description: R5 Launch executable: EasyAntiCheat_launcher.exe type: default - - arguments: '-steam +steam_environment dev +vtx_environment dev' + - arguments: "-steam +steam_environment dev +vtx_environment dev" config: betakey: r5-120 r5-121 r5-130 r5-131 r5-140 description: Dev Endpoints - description_loc: - english: Dev Endpoints executable: EasyAntiCheat_launcher.exe type: option1 nameLocalized: japanese: エーペックスレジェンズ koreana: Apex 레전드™ tchinese: 《Apex 英雄》 -'1172500': +"1172500": installDir: Hang The Kings launch: - config: @@ -60435,9 +59675,9 @@ type: default - config: oslist: macos - executable: Hang_the_King_Steam.app\\Contents\\MacOS\\Hang the King + executable: "Hang_the_King_Steam.app\\\\Contents\\\\MacOS\\\\Hang the King" type: default -'1172510': +"1172510": installDir: Unlock The King launch: - config: @@ -60446,9 +59686,9 @@ type: default - config: oslist: macos - executable: Unlock_the_King_Steam.app\\Contents\\MacOS\\Unlock the King + executable: "Unlock_the_King_Steam.app\\\\Contents\\\\MacOS\\\\Unlock the King" type: default -'1172520': +"1172520": installDir: Colorgrid launch: - config: @@ -60457,57 +59697,55 @@ type: default - config: oslist: macos - executable: Colorgrid_Steam.app\\Contents\\MacOS\\Colorgrid + executable: "Colorgrid_Steam.app\\\\Contents\\\\MacOS\\\\Colorgrid" type: default -'1172620': +"1172620": installDir: Sea of Thieves launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: Athena\\Binaries\\Win64\\SoTGame.exe + executable: "Athena\\\\Binaries\\\\Win64\\\\SoTGame.exe" type: default -'1172640': +"1172640": installDir: Parcel Panic launch: - config: oslist: windows executable: Parcel Panic.exe type: default -'1172650': +"1172650": installDir: Industria launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Industria.exe type: default - - arguments: '-d3d11' + - arguments: "-d3d11" config: - osarch: '64' + osarch: "64" oslist: windows description: Industria DirectX 11 - description_loc: - english: Industria DirectX 11 executable: Industria.exe type: option1 -'1172660': +"1172660": installDir: GraFi Halloween launch: - config: oslist: windows executable: GraFi Halloween.exe type: default -'1172710': {} -'1172730': +"1172710": {} +"1172730": installDir: The Handler of Dragons launch: - config: oslist: windows executable: TheHandlerofDragons.exe type: default -'1172760': - installDir: Twilight's Last Gleaming +"1172760": + installDir: "Twilight's Last Gleaming" launch: - config: oslist: windows @@ -60517,8 +59755,8 @@ oslist: macos executable: twilightslastgleaming.app type: none -'1172790': {} -'1172800': +"1172790": {} +"1172800": installDir: Perfect Tides launch: - config: @@ -60529,7 +59767,7 @@ oslist: macos executable: PerfectTides.app/Contents/MacOS/AGS type: default -'1172820': +"1172820": installDir: You Only Livez Twice launch: - config: @@ -60558,14 +59796,14 @@ schinese: 第二次机会 spanish: Segundas Oportunidades tchinese: 第二次機會 -'1172850': +"1172850": installDir: Collector launch: - config: oslist: windows executable: Collector.exe type: none -'1172900': +"1172900": installDir: FULFILLMENT launch: - config: @@ -60576,16 +59814,16 @@ oslist: linux executable: Fulfillment type: none -'1172920': {} -'1172930': {} -'1172940': +"1172920": {} +"1172930": {} +"1172940": installDir: Cockwork Industries launch: - config: oslist: windows executable: Cockwork Industries.exe type: default -'1172950': +"1172950": installDir: Yandere Escape launch: - config: @@ -60594,60 +59832,60 @@ type: none nameLocalized: english: Yandere Escape -'1172980': +"1172980": installDir: 绮罗四时谭 launch: - config: oslist: windows executable: Game.exe type: none -'1173040': {} -'1173070': +"1173040": {} +"1173070": installDir: Explosion Magic Firebolt launch: - config: oslist: windows executable: ExplosionMagicFireBolt.exe type: vr -'1173090': {} -'1173100': {} -'1173120': +"1173090": {} +"1173100": {} +"1173120": installDir: Markov Alg launch: - config: oslist: windows executable: Markov Alg.exe type: none -'1173130': +"1173130": installDir: The Battles of Spwak 2 launch: - config: oslist: windows executable: Game.exe type: default -'1173150': +"1173150": installDir: Goosebumps Dead of Night launch: - config: oslist: windows executable: Goosebumps_DeadOfNight.exe type: none -'1173170': {} -'1173200': +"1173170": {} +"1173200": installDir: Metal Unit launch: - config: oslist: windows executable: MetalUnit.exe type: default -'1173220': +"1173220": installDir: Bleak Faith Forsaken launch: - config: oslist: windows executable: Forsaken.exe type: none -'1173230': +"1173230": installDir: Zapitalism launch: - config: @@ -60658,7 +59896,7 @@ oslist: macos executable: Zapitalism.app type: none -'1173240': +"1173240": installDir: Profitania launch: - config: @@ -60669,23 +59907,23 @@ oslist: macos executable: Profitania.app type: none -'1173250': +"1173250": installDir: DEVOID launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows executable: nw.exe type: default -'1173260': +"1173260": installDir: Gangsta Sniper 3 Final Parody launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: GangstaSniper3.exe type: default -'1173270': +"1173270": installDir: BigRedHoodHalloween-pc launch: - config: @@ -60696,19 +59934,19 @@ oslist: linux executable: BigRedHoodHalloween.sh type: default -'1173280': +"1173280": installDir: Fap Queen 2 launch: - executable: Fap Queen 2.exe type: none -'1173310': +"1173310": installDir: Lab 7 Cold Night launch: - config: oslist: windows executable: ColdNight.exe type: default -'1173340': +"1173340": installDir: War Trains launch: - config: @@ -60717,20 +59955,20 @@ type: none - config: oslist: linux - executable: Trains.linux\\trains.x86_64 + executable: "Trains.linux\\\\trains.x86_64" type: none - config: oslist: macos - executable: Trains.app\\Contents\\MacOS\\War Trains + executable: "Trains.app\\\\Contents\\\\MacOS\\\\War Trains" type: none -'1173350': +"1173350": installDir: HENTAI CLIMBER launch: - config: oslist: windows executable: HENTAI CLIMBER.exe type: default -'1173370': +"1173370": installDir: SlapshotRebound launch: - config: @@ -60738,64 +59976,64 @@ description: Live server executable: Slapshot.exe type: default - - arguments: '-Staging=true' + - arguments: "-Staging=true" config: betakey: staging oslist: windows description: SLAPSHOT Rebound staging server executable: Slapshot.exe type: option2 -'1173380': +"1173380": installDir: NEKO ARENA launch: - config: oslist: windows executable: Neko Arena.exe type: default -'1173400': +"1173400": installDir: Futa Fix Dick Dine and Dash launch: - executable: game.exe type: default -'1173410': +"1173410": installDir: My Breast Friend Sally launch: - - arguments: '--in-progress-gpu' + - arguments: "--in-progress-gpu" config: oslist: windows executable: My Breast Friend Sally.exe type: default - - arguments: '--in-progress-gpu' + - arguments: "--in-progress-gpu" config: oslist: macos executable: nw.app type: none -'1173420': {} -'1173500': - installDir: Kira's Contract +"1173420": {} +"1173500": + installDir: "Kira's Contract" launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows executable: nw.exe type: default -'1173540': {} -'1173610': +"1173540": {} +"1173610": installDir: MouseWars launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: MouseWars.exe type: default -'1173650': +"1173650": installDir: SWEET MILF launch: - config: oslist: windows executable: SWEETMILF.exe type: none -'1173740': +"1173740": installDir: Woodle Tree 2 Deluxe+ launch: - config: @@ -60810,7 +60048,7 @@ oslist: linux executable: WoodleTree2Deluxe+.x86_64 type: default -'1173770': +"1173770": installDir: FINAL FANTASY PR launch: - config: @@ -60818,7 +60056,7 @@ oslist: windows executable: FINAL FANTASY.exe type: default -'1173780': +"1173780": installDir: FINAL FANTASY II PR launch: - config: @@ -60826,7 +60064,7 @@ oslist: windows executable: FINAL FANTASY II.exe type: none -'1173790': +"1173790": installDir: FINAL FANTASY III PR launch: - config: @@ -60834,7 +60072,7 @@ oslist: windows executable: FINAL FANTASY III.exe type: none -'1173800': +"1173800": installDir: FINAL FANTASY IV PR launch: - config: @@ -60842,7 +60080,7 @@ oslist: windows executable: FINAL FANTASY IV.exe type: none -'1173810': +"1173810": installDir: FINAL FANTASY V PR launch: - config: @@ -60850,103 +60088,103 @@ oslist: windows executable: FINAL FANTASY V.exe type: none -'1173820': +"1173820": installDir: FINAL FANTASY VI PR launch: - config: oslist: windows executable: FINAL FANTASY VI.exe type: none -'1173830': +"1173830": installDir: Coloring Game Pixel launch: - executable: game.exe type: none -'1173850': +"1173850": installDir: Zombie Panic In Wonderland DX launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Zombie Panic in Wonderland DX.exe type: default -'1173870': +"1173870": installDir: EndlessKnight launch: - config: oslist: windows executable: EndlessKnight.exe type: default -'1173940': +"1173940": installDir: Barrage Musical Basic Danmaku Tutorial launch: - executable: BXM Tutorial.exe type: none nameLocalized: schinese: 弹幕音乐绘 ~ 基础教学篇 ~ -'1173960': {} -'1173980': {} -'1173990': +"1173960": {} +"1173980": {} +"1173990": installDir: Monsters of Kanji 2 launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows executable: MoK2.exe type: default -'1174050': +"1174050": installDir: Uterine Supremacy launch: - config: oslist: windows executable: UterineSupremacy.exe type: default -'1174090': +"1174090": installDir: Unicorn Tails launch: - config: oslist: windows executable: UnicornTails.exe type: default -'1174120': +"1174120": installDir: Space Road launch: - executable: Space Road.exe type: none -'1174180': +"1174180": installDir: Red Dead Redemption 2 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: PlayRDR2.exe type: none -'1174200': +"1174200": installDir: Lands of Pharaoh launch: - config: oslist: windows executable: LandsofPharaoh.exe type: default -'1174230': {} -'1174260': +"1174230": {} +"1174260": installDir: The Lost Cave of the Ozarks launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: lostcaveoftheozarks.exe type: default -'1174270': +"1174270": installDir: IKO39 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: IKO39.exe type: default -'1174280': {} -'1174300': +"1174280": {} +"1174300": installDir: Shiki launch: - config: @@ -60957,7 +60195,7 @@ oslist: macos executable: Shiki.app type: default -'1174320': +"1174320": installDir: Travel Mosaics 10 Spooky Halloween launch: - config: @@ -60968,8 +60206,8 @@ oslist: macos executable: TravelMosaics10_SpookyHalloween.app type: none -'1174340': {} -'1174390': +"1174340": {} +"1174390": installDir: Annie launch: - config: @@ -60978,14 +60216,14 @@ executable: ANNIE.exe type: none nameLocalized: - schinese: 'ANNIE:Last Hope / 安妮:最后的希望' - tchinese: 'ANNIE:Last Hope / 安妮:最後的希望' -'1174400': + schinese: "ANNIE:Last Hope / 安妮:最后的希望" + tchinese: "ANNIE:Last Hope / 安妮:最後的希望" +"1174400": installDir: Togainu no Chi ~Lost Blood~ launch: - executable: togainunochi.exe type: none -'1174430': +"1174430": installDir: Space Shapes launch: - config: @@ -60996,33 +60234,33 @@ oslist: linux executable: Space_Shapes type: default -'1174460': +"1174460": installDir: PokerClub launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: Poker2\\Binaries\\Win64\\Poker2.exe + executable: "Poker2\\\\Binaries\\\\Win64\\\\Poker2.exe" type: default - config: - osarch: '32' + osarch: "32" oslist: windows - executable: Poker2\\Binaries\\Win32\\Poker2.exe + executable: "Poker2\\\\Binaries\\\\Win32\\\\Poker2.exe" type: default -'1174490': +"1174490": installDir: Space Carrot launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Space Carrot.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Space Carrot.x86_64 type: default -'1174500': +"1174500": installDir: Yuletide Legends launch: - config: @@ -61031,13 +60269,13 @@ executable: YuletideLegends.exe type: none - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: YuletideLegends_i386 type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: YuletideLegends_amd64 @@ -61047,32 +60285,32 @@ description: Launch executable: YuletideLegends.app/Contents/MacOS/YuletideLegends type: none -'1174510': {} -'1174540': +"1174510": {} +"1174540": installDir: Adventure or Normality launch: - config: oslist: windows - executable: AdventureNormality\\AdventureNormality.exe + executable: "AdventureNormality\\\\AdventureNormality.exe" type: default - config: oslist: linux - executable: AdventureNormality\\AdventureNormality.sh + executable: "AdventureNormality\\\\AdventureNormality.sh" type: default - config: oslist: macos - executable: AdventureNormality\\AdventureNormality.app + executable: "AdventureNormality\\\\AdventureNormality.app" type: default nameLocalized: french: Aventure ou Normalité ? -'1174550': +"1174550": installDir: Bird Simulator launch: - config: oslist: windows executable: Bird Simulator.exe type: default -'1174560': +"1174560": installDir: MUZIKALNA_IGRA launch: - config: @@ -61082,14 +60320,14 @@ nameLocalized: bulgarian: Приключенията на музикалните тонове и техните ноти english: Adventures of musical tones and their notes -'1174570': - installDir: 'Build ''m up, Shoot ''m down!' +"1174570": + installDir: "Build 'm up, Shoot 'm down!" launch: - config: oslist: windows - executable: 'Build ''m up, Shoot ''m down!.exe' + executable: "Build 'm up, Shoot 'm down!.exe" type: default -'1174640': +"1174640": installDir: Arcadia Fallen launch: - config: @@ -61098,51 +60336,51 @@ type: none - config: oslist: macos - executable: Contents\\MacOS\\Arcadia Fallen + executable: "Contents\\\\MacOS\\\\Arcadia Fallen" type: none - config: oslist: linux executable: Arcadia Fallen.x86_64 type: none -'1174680': +"1174680": installDir: Ashland Dossier launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Ashland Dossier.exe type: default -'1174720': +"1174720": installDir: SwarmZ launch: - config: oslist: windows executable: SwarmZ.exe type: default -'1174780': +"1174780": installDir: MONEY LOVES SILENCE launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: MLS\\Binaries\\Win64\\MLS.exe + executable: "MLS\\\\Binaries\\\\Win64\\\\MLS.exe" type: default -'1174810': +"1174810": installDir: Curse of the dungeon launch: - config: oslist: windows executable: Curse Of The Dungeon.exe type: default -'1174820': +"1174820": installDir: Tower Of Heresy launch: - config: oslist: windows - executable: Tower Of Heresy\\Game.exe + executable: "Tower Of Heresy\\\\Game.exe" type: default -'1174830': - installDir: The Magician's Workshop +"1174830": + installDir: "The Magician's Workshop" launch: - config: oslist: windows @@ -61150,13 +60388,13 @@ type: none - config: oslist: macos - executable: The Magician's Workshop.app/Contents/MacOS/The Magician's Workshop + executable: "The Magician's Workshop.app/Contents/MacOS/The Magician's Workshop" type: none - config: oslist: linux executable: TheMagiciansWorkshop type: none -'1174850': +"1174850": installDir: Путь Пацана launch: - config: @@ -61165,12 +60403,12 @@ type: default nameLocalized: english: Way of Boy -'1174900': +"1174900": installDir: MiMiMiShKa launch: - executable: MiMiMiShKa.exe type: none -'1174940': +"1174940": installDir: Kill or Love launch: - config: @@ -61179,27 +60417,27 @@ type: default - config: oslist: macos - executable: KillorLove.app\\Contents\\MacOS\\KillorLove + executable: "KillorLove.app\\\\Contents\\\\MacOS\\\\KillorLove" type: none - config: oslist: linux executable: KillorLove.sh type: none -'1174970': +"1174970": installDir: Empty Sharp launch: - config: oslist: windows executable: Game.exe type: default -'1174990': +"1174990": installDir: Sushi Pachi Panic launch: - config: oslist: windows executable: Sushi Pachi Panic.exe type: default -'1175050': +"1175050": installDir: Queeny Army launch: - config: @@ -61210,81 +60448,81 @@ oslist: linux executable: Queeny_Army type: none -'1175060': +"1175060": installDir: Human Simulator launch: - config: oslist: windows executable: Human Simulator.exe type: none -'1175120': +"1175120": installDir: STARS ERA LOST STARS launch: - executable: STARS ERA LOST STARS.exe type: default -'1175140': +"1175140": installDir: Vecter launch: - executable: Vecter.exe type: default -'1175150': +"1175150": installDir: Incredible Dracula Vargosi Returns launch: - config: oslist: windows executable: Incredible_Dracula_Vargosi_Returns.exe type: default -'1175160': +"1175160": installDir: House of 1000 Doors The Palm of Zoroaster launch: - config: oslist: windows executable: HouseOf1000Doors_ThePalmOfZoroasterCE.exe type: default -'1175170': +"1175170": installDir: Incredible Dracula The Ice Kingdom launch: - config: oslist: windows executable: Incredible_Dracula_The_Ice_Kingdom.exe type: default -'1175180': +"1175180": installDir: mymother launch: - config: oslist: windows executable: game.exe type: default -'1175190': +"1175190": installDir: NatsukiChronicles launch: - arguments: /a config: - osarch: '64' + osarch: "64" oslist: windows - executable: x64\\Release_Steam\\Natsuki_Desktop_Steam.exe + executable: "x64\\\\Release_Steam\\\\Natsuki_Desktop_Steam.exe" type: option1 -'1175200': +"1175200": installDir: Forbidden Ingress launch: - config: oslist: windows executable: ForbiddenIngress.exe type: default -'1175240': +"1175240": installDir: 出门 launch: - executable: Game.exe type: default -'1175250': +"1175250": installDir: Finders Reapers launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: FindersReapers.exe type: default -'1175330': +"1175330": installDir: Troll Control launch: - config: @@ -61293,62 +60531,62 @@ type: default - config: oslist: macos - executable: Troll Control.app\\Contents\\MacOS\\Troll Control + executable: "Troll Control.app\\\\Contents\\\\MacOS\\\\Troll Control" type: default - config: oslist: windows executable: Troll Control/Troll Control.exe type: default -'1175360': +"1175360": installDir: IDraculaGenesis launch: - executable: idracula_beta.exe type: none -'1175370': {} -'1175400': +"1175370": {} +"1175400": nameLocalized: japanese: ドリームウォーカーズ schinese: 《The Dreamwalkers》——一部浅度奇幻视觉小说 -'1175420': +"1175420": installDir: Imbroglio launch: - config: betakey: Beta - osarch: '64' + osarch: "64" oslist: windows - executable: bin\\Game.exe + executable: "bin\\\\Game.exe" type: default workingdir: bin - config: - osarch: '64' + osarch: "64" oslist: windows - executable: bin\\Game_no_sse.exe + executable: "bin\\\\Game_no_sse.exe" type: default workingdir: bin - - arguments: '-w' + - arguments: "-w" config: - osarch: '64' + osarch: "64" oslist: windows description: window mode - executable: bin\\Game.exe + executable: "bin\\\\Game.exe" type: none workingdir: bin - - arguments: '-l ru' + - arguments: "-l ru" config: - osarch: '64' + osarch: "64" oslist: windows description: Russian Language - executable: bin\\Game.exe + executable: "bin\\\\Game.exe" type: option1 workingdir: bin - config: - osarch: '64' + osarch: "64" oslist: windows description: Old-cpu support - executable: bin\\Game_no_sse.exe + executable: "bin\\\\Game_no_sse.exe" type: none workingdir: bin -'1175430': +"1175430": installDir: Project Starship X launch: - config: @@ -61357,63 +60595,63 @@ type: default - config: oslist: macos - executable: PSX - STEAM MAC.app\\Contents\\MacOS\\Project Starship X + executable: "PSX - STEAM MAC.app\\\\Contents\\\\MacOS\\\\Project Starship X" type: default - config: oslist: linux executable: Project Starship X.x86_64 type: none -'1175460': +"1175460": installDir: Revita launch: - executable: Revita.exe type: default nameLocalized: schinese: 轮回塔 (Revita) -'1175470': - installDir: Shine's Adventures 6 (Go! Girls) +"1175470": + installDir: "Shine's Adventures 6 (Go! Girls)" launch: - config: oslist: windows executable: Shine6.exe type: default -'1175480': +"1175480": installDir: Shadowrain launch: - config: oslist: windows executable: Shadowrain.exe type: default -'1175500': +"1175500": installDir: Jack In Town launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: JackInTown.exe type: none -'1175510': +"1175510": installDir: Cerberus Orbital watch launch: - config: oslist: windows executable: CerberusOW.exe type: none -'1175550': +"1175550": installDir: MergeTowers launch: - config: oslist: windows - executable: MergeTowers\\MergeTowers.exe + executable: "MergeTowers\\\\MergeTowers.exe" type: default -'1175570': +"1175570": installDir: Vector Light launch: - config: oslist: windows executable: Vector Light x86.exe type: default -'1175590': +"1175590": installDir: JAGD LANZER launch: - description: START @@ -61428,18 +60666,18 @@ - description: 説明書(日本語) executable: manual-jap.pdf type: none -'1175600': {} -'1175620': {} -'1175640': +"1175600": {} +"1175620": {} +"1175640": installDir: Zombie Road Rider launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: VehicleGame.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: VehicleGame.exe type: default @@ -61447,7 +60685,7 @@ oslist: linux executable: VehicleGame.sh type: default -'1175650': +"1175650": installDir: UpMove launch: - config: @@ -61455,30 +60693,30 @@ description: Play UpMove now! executable: UpMove.exe type: default -'1175660': +"1175660": installDir: DepowerBall launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: DepowerBall.exe type: default -'1175690': +"1175690": installDir: MyStar launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: MyStar\\MyStar.exe + executable: "MyStar\\\\MyStar.exe" type: default nameLocalized: japanese: マイスター -'1175770': {} -'1175830': +"1175770": {} +"1175830": installDir: Legend of Mana launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Legend of Mana.exe type: none @@ -61487,45 +60725,45 @@ koreana: 성검전설 Legend of Mana schinese: 圣剑传说 Legend of Mana tchinese: 聖劍傳說 Legend of Mana -'1175840': +"1175840": installDir: Whateverland launch: - executable: Whateverland.exe -'1175870': +"1175870": installDir: Chronicles of Galdurvale launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: COG.exe type: default -'1175880': +"1175880": installDir: War Room launch: - config: oslist: windows executable: WarRoom.exe type: default -'1175900': +"1175900": installDir: Antares launch: - executable: Antares.exe type: none -'1175930': +"1175930": installDir: Ray Eager launch: - config: betakey: alpha_test executable: Ray Eager.exe type: default -'1175940': {} -'1175950': +"1175940": {} +"1175950": installDir: Cyberpunk Sex Simulator launch: - executable: Cyberpunk Sex Simulator.exe type: none -'1175960': {} -'1175970': +"1175960": {} +"1175970": installDir: Hibiscus Red launch: - config: @@ -61540,19 +60778,19 @@ oslist: linux executable: Hibiscus Red type: default -'1175980': +"1175980": installDir: CityLiveProject launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: 城市生存计划.exe type: default - config: oslist: macos - executable: CityLiveProject.app\\Contents\\MacOS\\CityLiveProject + executable: "CityLiveProject.app\\\\Contents\\\\MacOS\\\\CityLiveProject" type: default -'1176000': +"1176000": installDir: Toy Robot launch: - config: @@ -61560,7 +60798,7 @@ executable: ToyRobot.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: ToyRobot.x86_64 type: default @@ -61568,13 +60806,13 @@ oslist: macos executable: TOYROBOT.app type: default -'1176020': +"1176020": installDir: Rampage Miami launch: - executable: Rampage Miami.exe type: none -'1176040': - installDir: 'I Have Low Stats But My Class Is Leader, So I Recruited Everyone I Know To Fight The Dark Lord' +"1176040": + installDir: "I Have Low Stats But My Class Is Leader, So I Recruited Everyone I Know To Fight The Dark Lord" launch: - config: oslist: windows @@ -61584,57 +60822,57 @@ oslist: macos executable: Game.app type: default -'1176060': {} -'1176090': +"1176060": {} +"1176090": installDir: Adventure in the galaxy launch: - executable: Adventure in the galaxy.exe type: default -'1176190': +"1176190": installDir: Space Candy launch: - config: oslist: windows executable: SpaceCandy.exe type: none -'1176330': {} -'1176440': +"1176330": {} +"1176440": installDir: Math The Question launch: - executable: Math The Question.exe type: none -'1176450': {} -'1176460': +"1176450": {} +"1176460": installDir: They Came From a Communist Planet launch: - config: oslist: windows executable: They Came From a Communist Planet.exe type: default -'1176470': +"1176470": installDir: Terra Invicta launch: - config: betakey: beta - osarch: '64' + osarch: "64" oslist: windows executable: TerraInvicta.exe type: default - config: betakey: validation - osarch: '64' + osarch: "64" oslist: windows executable: TerraInvicta.exe type: default - config: betakey: experimental - osarch: '64' + osarch: "64" oslist: windows executable: TerraInvicta.exe type: default - config: betakey: release - osarch: '64' + osarch: "64" oslist: windows executable: TerraInvicta.exe type: default @@ -61649,27 +60887,27 @@ executable: Terra-Invicta.app/Contents/MacOS/TerraInvicta type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: TerraInvicta.exe type: default nameLocalized: schinese: 地球不屈 Terra Invicta tchinese: 地球不屈 Terra Invicta -'1176560': +"1176560": installDir: The Orphan A Tale of An Errant Ghost - Hidden Object Game launch: - config: oslist: windows executable: The Orphan - A Tale of An Errant Ghost.exe type: none -'1176570': {} -'1176580': +"1176570": {} +"1176580": installDir: Periodic Deliveries launch: - executable: PeriodicDeliveries.exe type: default -'1176590': +"1176590": installDir: Seek Hearts launch: - config: @@ -61678,7 +60916,7 @@ type: none nameLocalized: japanese: シークハーツ -'1176710': +"1176710": installDir: SpaceCrew launch: - config: @@ -61690,21 +60928,21 @@ executable: SpaceCrew.app/Contents/MacOS/SpaceCrew type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: SpaceCrew.x86_64 type: none nameLocalized: - schinese: '星际小队 / Space Crew: Legendary Edition' -'1176720': {} -'1176780': + schinese: "星际小队 / Space Crew: Legendary Edition" +"1176720": {} +"1176780": installDir: Nuclear Arms Race launch: - config: oslist: windows executable: nar.exe type: default -'1176800': +"1176800": installDir: Useless Box The Game launch: - config: @@ -61715,67 +60953,67 @@ oslist: macos executable: Useless Box The Game.app type: default -'1176840': +"1176840": installDir: The Airship Designer launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Blimpdesigner.exe type: default -'1176850': +"1176850": installDir: GOOSE.IO launch: - config: oslist: windows executable: GOOSE.IO.exe type: default -'1176970': +"1176970": installDir: Bolf launch: - config: oslist: windows executable: Bolf.exe type: default -'1176990': +"1176990": installDir: VECTORLORD launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Play VECTORLORD - executable: game\\VECTORLORD.EXE + executable: "game\\\\VECTORLORD.EXE" type: default workingdir: game -'1177000': +"1177000": installDir: Transformers launch: - config: oslist: windows executable: Transformers.exe type: none -'1177020': +"1177020": installDir: Gigantosaturus The Game launch: - config: oslist: windows executable: Gigantosaurus.exe type: default -'1177030': +"1177030": installDir: Pong Quest launch: - executable: Pong Quest.exe type: default -'1177070': +"1177070": installDir: Highway Game launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Highway Game.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: HighwayGame.x86_64 type: none @@ -61783,7 +61021,7 @@ oslist: macos executable: Highway Game.app type: none -'1177080': +"1177080": installDir: Geometry Hero launch: - config: @@ -61793,17 +61031,17 @@ nameLocalized: english: Geometry Hero koreana: 지오메트리 히어로 -'1177110': +"1177110": installDir: The Sorrowvirus - A Faceless Short Story launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: flts.exe type: default nameLocalized: - russian: 'Faceless: Вирус Скорби' -'1177130': + russian: "Faceless: Вирус Скорби" +"1177130": installDir: NABOKI launch: - config: @@ -61815,49 +61053,49 @@ executable: naboki.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: naboki.x86_64 type: default -'1177170': +"1177170": installDir: Pooplers launch: - config: oslist: windows executable: Pooplers.exe type: default -'1177180': {} -'1177190': +"1177180": {} +"1177190": installDir: Il Sole e la Luna 2 launch: - config: oslist: windows executable: Game.exe type: none -'1177250': {} -'1177270': +"1177250": {} +"1177270": installDir: Imaginarium launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Imaginarium.exe type: default -'1177300': +"1177300": installDir: Space zone defender launch: - config: oslist: windows executable: Space zone defender.exe type: default -'1177310': +"1177310": installDir: Future Pool launch: - config: oslist: windows executable: FuturePool.exe type: default -'1177330': +"1177330": installDir: Billion Beat launch: - config: @@ -61872,43 +61110,43 @@ oslist: linux executable: Billion Beat.x86 type: default -'1177350': +"1177350": installDir: Molly fear of clowns launch: - config: oslist: windows executable: Molly.exe type: default -'1177370': +"1177370": installDir: ArachnoSplat launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ArachnoSplat.exe type: vr -'1177380': +"1177380": installDir: Memoirs of a Battle Brothel launch: - config: oslist: windows executable: Game.exe type: none -'1177390': +"1177390": installDir: Future Snooker launch: - config: oslist: windows executable: FutureSnooker.exe type: default -'1177400': +"1177400": installDir: 江湖余生 launch: - config: oslist: windows executable: JHYS_OV.exe type: default -'1177420': +"1177420": installDir: UncleNeighbor launch: - config: @@ -61917,34 +61155,34 @@ type: default - config: oslist: macos - executable: UncleNeighbor.app\\Contents\\MacOS\\UncleNeighbor + executable: "UncleNeighbor.app\\\\Contents\\\\MacOS\\\\UncleNeighbor" type: default -'1177430': +"1177430": installDir: Immanence launch: - config: oslist: windows executable: Immanence.exe type: default -'1177450': {} -'1177460': +"1177450": {} +"1177460": installDir: Dangerous Blaster launch: - config: oslist: windows executable: Dangerous Blaster.exe type: default -'1177480': +"1177480": installDir: Tale Of Yueyalou launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Tale Of Yueyalou.exe type: default nameLocalized: schinese: 月牙楼风云 -'1177510': +"1177510": installDir: GASH launch: - config: @@ -61952,21 +61190,21 @@ description: Launch executable: GASH.exe type: default -'1177550': {} -'1177610': +"1177550": {} +"1177610": installDir: Katana Kata launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: KatanaKata.exe type: none -'1177640': +"1177640": installDir: ROCKETRON launch: - executable: rocketron.exe type: none -'1177650': +"1177650": installDir: Paper Shakespeare 2 launch: - config: @@ -61977,7 +61215,7 @@ oslist: linux executable: Paper_Shakespeare.sh type: default -'1177660': +"1177660": installDir: Escape the Ayuwoki launch: - config: @@ -61990,74 +61228,74 @@ description: Launch executable: Escape the Ayuwoki.app type: none -'1177670': {} -'1177680': {} -'1177710': {} -'1177720': +"1177670": {} +"1177680": {} +"1177710": {} +"1177720": installDir: Yu Escape Monday launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Yu.exe type: default -'1177730': +"1177730": installDir: WHALE launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: WHALE.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: WHALE.exe type: othervr nameLocalized: english: W.H.A.L.E. -'1177810': +"1177810": installDir: Stream Fighters launch: - config: oslist: windows executable: Stream Fighters.exe type: default -'1177820': +"1177820": installDir: Shape Cascade launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ShapeCascade.exe type: default - config: oslist: macos - executable: ShapeCascade.app\\Contents\\MacOS\\Mac_Runner + executable: "ShapeCascade.app\\\\Contents\\\\MacOS\\\\Mac_Runner" type: default -'1177860': {} -'1177890': +"1177860": {} +"1177890": installDir: Cave of Illusions launch: - config: oslist: windows executable: Cave Of Illusions.exe type: default -'1177910': {} -'1177940': +"1177910": {} +"1177940": installDir: Mass Plus launch: - executable: MassPlus.exe type: vr -'1177950': +"1177950": installDir: Craft Elements launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: CraftElements.exe type: none -'1177960': +"1177960": installDir: Get Me Outta Here - DeluxeRemastered Edition launch: - config: @@ -62066,46 +61304,46 @@ type: default - config: oslist: macos - executable: gmoh.app\\Contents\\MacOS\\Mac_Runner + executable: "gmoh.app\\\\Contents\\\\MacOS\\\\Mac_Runner" type: default -'1178000': +"1178000": installDir: ghostdimension launch: - config: oslist: windows executable: ghostdimension.exe type: default -'1178010': {} -'1178030': +"1178010": {} +"1178030": installDir: Star Fetchers Pilot launch: - config: oslist: windows - executable: SF\\Star Fetchers Pilot.exe + executable: "SF\\\\Star Fetchers Pilot.exe" type: default - workingdir: SF\\ -'1178050': + workingdir: "SF\\\\" +"1178050": installDir: 狐の旅路 launch: - config: oslist: windows executable: Game.exe type: default -'1178060': +"1178060": installDir: Spooky Night 2 launch: - config: oslist: windows executable: spookynight.exe type: openvroverlay -'1178120': +"1178120": installDir: XP Girls launch: - config: oslist: windows executable: XPGirls.exe type: default -'1178140': +"1178140": installDir: Pixel Ripped 1995 launch: - config: @@ -62113,33 +61351,33 @@ description: Pixel Ripped 1995 executable: PixelRipped1995.exe type: vr -'1178180': +"1178180": installDir: BATYA launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Batya.exe type: default -'1178200': +"1178200": installDir: Somewhere inside launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SomewhereInside.exe type: none -'1178210': +"1178210": installDir: Stirring Abyss launch: - executable: Launcher.exe type: default -'1178220': +"1178220": installDir: ICBM launch: - executable: Launcher.exe type: default -'1178230': +"1178230": installDir: The Wild Case launch: - config: @@ -62151,16 +61389,16 @@ executable: The Wild Case.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: The Wild Case.x86_64 type: default -'1178260': {} -'1178290': +"1178260": {} +"1178290": installDir: Dezatopia launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Play Dezatopia executable: dezatopia.exe @@ -62176,149 +61414,149 @@ executable: dezatopia type: default - config: - osarch: '32' + osarch: "32" oslist: windows description: Play Dezatopia executable: dezatopia32.exe type: default - - arguments: '--directx' + - arguments: "--directx" config: - osarch: '64' + osarch: "64" oslist: windows description: Dezatopia (DirectX mode) executable: dezatopia.exe type: option1 - - arguments: '--directx' + - arguments: "--directx" config: - osarch: '32' + osarch: "32" oslist: windows description: Dezatopia (DirectX mode) executable: dezatopia32.exe type: option1 -'1178300': {} -'1178310': +"1178300": {} +"1178310": installDir: Picross.io launch: - config: oslist: windows executable: Picross.io.exe type: none -'1178330': +"1178330": installDir: 名媛女友-Girlfriend invites launch: - config: oslist: windows executable: Girlfriend invites.exe type: default -'1178380': +"1178380": installDir: Resurrector launch: - executable: Resurrector.exe type: none -'1178390': +"1178390": installDir: The Source of the Nightmare Storms launch: - config: oslist: windows executable: The_Source_of_the_Nightmare_Storms.exe type: none -'1178430': +"1178430": installDir: Summer Games Heroes launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SummerGamesHeroes.exe type: default -'1178480': +"1178480": installDir: Space Station Invader VR launch: - config: oslist: windows executable: game.exe type: vr -'1178490': +"1178490": installDir: ParanormalHK launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: PuzzleGame.exe type: default nameLocalized: schinese: 港诡实录 tchinese: 港詭實錄 -'1178500': +"1178500": installDir: Crazy Eights 3D Premium launch: - config: oslist: windows executable: CrazyEights3D.exe type: default - - arguments: '-safe' + - arguments: "-safe" description: Safe mode (windowed) executable: CrazyEights3D.exe type: option2 - - arguments: '-autoconfig' + - arguments: "-autoconfig" description: Autoconfig mode (fullscreen) executable: CrazyEights3D.exe type: option3 -'1178510': +"1178510": installDir: Gin Rummy 3D Premium launch: - config: oslist: windows executable: GinRummy3D.exe type: default - - arguments: '-safe' + - arguments: "-safe" config: oslist: windows description: Safe mode (windowed) executable: GinRummy3D.exe type: option2 - - arguments: '-autoconfig' + - arguments: "-autoconfig" config: oslist: windows description: Autoconfig mode (fullscreen) executable: GinRummy3D.exe type: option3 -'1178680': +"1178680": installDir: RetroVamp launch: - executable: RetroVamp.exe type: default -'1178690': +"1178690": installDir: Hyper-Casual Hentai launch: - config: oslist: windows executable: Hyper-Casual Hentai.exe type: default -'1178700': +"1178700": installDir: CreateTech launch: - config: oslist: windows executable: PC 1.2.03/CreateTech.exe type: default -'1178710': +"1178710": installDir: The Legend of Arcadieu launch: - config: oslist: windows executable: Arcadieu.exe type: none -'1178770': {} -'1178780': +"1178770": {} +"1178780": installDir: BattleGroupVR launch: - executable: BattleGroupVR.exe type: vr -'1178790': +"1178790": installDir: shirenthewanderer5plus launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ShirenTheWanderer5plusLauncher.exe type: none @@ -62326,64 +61564,57 @@ japanese: 不思議のダンジョン 風来のシレン5plus フォーチュンタワーと運命のダイス schinese: 千变的迷宫 风来的希炼 命运之塔与命运之骰 tchinese: 千變的迷宮 風來的希煉 命運之塔與命運之骰 -'1178830': +"1178830": installDir: BrightMemoryInfinite launch: - - arguments: '-dx11' + - arguments: "-dx11" config: - osarch: '64' + osarch: "64" oslist: windows description: StartGame(DX11) - description_loc: - english: StartGame(DX11) - schinese: 开始游戏(DX11) GTX显卡请选择此项 - executable: BrightMemoryInfinite\\Binaries\\Win64\\BrightMemoryInfinite-Win64-Shipping.exe - workingdir: BrightMemoryInfinite\\Binaries\\Win64 - - arguments: '-dx12' + executable: "BrightMemoryInfinite\\\\Binaries\\\\Win64\\\\BrightMemoryInfinite-Win64-Shipping.exe" + workingdir: "BrightMemoryInfinite\\\\Binaries\\\\Win64" + - arguments: "-dx12" config: - osarch: '64' + osarch: "64" oslist: windows description: Use a raytracing (DX12)-capable PC for best performance - description_loc: - english: Use a raytracing (DX12)-capable PC for best performance - japanese: レイトレーシング(DX12)/対応PC以外では実行速度が低下します - schinese: 开始游戏 (DX12) RTX显卡请选择此项 - executable: BrightMemoryInfinite\\Binaries\\Win64\\BrightMemoryInfinite-Win64-Shipping.exe - workingdir: BrightMemoryInfinite\\Binaries\\Win64 + executable: "BrightMemoryInfinite\\\\Binaries\\\\Win64\\\\BrightMemoryInfinite-Win64-Shipping.exe" + workingdir: "BrightMemoryInfinite\\\\Binaries\\\\Win64" nameLocalized: - english: 'Bright Memory: Infinite' + english: "Bright Memory: Infinite" schinese: 光明记忆:无限 tchinese: 光明記憶:無限 -'1178880': +"1178880": installDir: Panzer Dragoon Remake launch: - config: oslist: windows executable: Panzer Dragoon Remake.exe type: default -'1178890': {} -'1179010': +"1178890": {} +"1179010": installDir: Rollers launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: rollers.exe type: default - config: betakey: ikeabr - osarch: '64' + osarch: "64" oslist: windows description: Ikea BR executable: IkeaBR_Server.exe type: option1 -'1179020': {} -'1179040': {} -'1179060': +"1179020": {} +"1179040": {} +"1179060": installDir: Wing of darkness launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: YF.exe type: default @@ -62392,13 +61623,13 @@ koreana: Wing of Darkness 유익의 프로일라인 schinese: 铁翼少女 tchinese: 鐵翼少女 -'1179080': +"1179080": installDir: FAITH launch: - config: oslist: windows executable: FAITH.exe -'1179100': +"1179100": installDir: OppaidiusTC launch: - config: @@ -62411,79 +61642,79 @@ type: default - config: oslist: linux - executable: ./OppaidiusTC.sh + executable: "./OppaidiusTC.sh" type: default -'1179110': - installDir: Chrono's Arena +"1179110": + installDir: "Chrono's Arena" launch: - - executable: Chrono's Arena.exe + - executable: "Chrono's Arena.exe" type: default -'1179150': +"1179150": installDir: Romguns launch: - executable: ROMGUNS.exe type: none -'1179170': +"1179170": installDir: Super Angling launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Super Angling.exe type: default -'1179190': +"1179190": installDir: Dinodrifters launch: - config: oslist: windows executable: dinodrifters.exe type: default -'1179210': +"1179210": installDir: Kill It With Fire launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Kani.exe type: none -'1179220': +"1179220": installDir: GaijinTroubles launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: GaijinTroubles64.exe type: default -'1179280': {} -'1179310': +"1179280": {} +"1179310": installDir: Drift Alone launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: DriftAlone.exe type: default -'1179340': +"1179340": installDir: Kōmori Fruit Rush launch: - config: oslist: windows executable: Komori Fruit Rush.exe type: default -'1179350': +"1179350": installDir: 怪奇幻想夢物語 怪獣綺譚 誘宵地獄 launch: - config: oslist: windows executable: izayoizigoku.exe type: default -'1179400': +"1179400": installDir: Basic Car Repair Garage VR launch: - executable: BCR-VR.exe type: vr -'1179410': +"1179410": installDir: Lootcraft launch: - config: @@ -62494,19 +61725,19 @@ oslist: macos executable: Lootcraft.app type: default -'1179430': +"1179430": installDir: Laser Z launch: - config: oslist: windows executable: Laser Z.exe type: vr -'1179440': +"1179440": installDir: DxG launch: - executable: DxG.exe type: none -'1179460': +"1179460": installDir: HAM-MASTER launch: - config: @@ -62514,8 +61745,8 @@ oslist: windows executable: nw.exe type: default -'1179480': {} -'1179500': +"1179480": {} +"1179500": installDir: Star Gods launch: - config: @@ -62523,98 +61754,98 @@ description: Launch executable: Star Gods.exe type: default -'1179530': +"1179530": installDir: KAJA 追光者与秘境制造 launch: - config: oslist: windows executable: KAJA 追光者与秘境制造.exe type: default -'1179540': +"1179540": installDir: Sweet Thomas launch: - - arguments: '@f+ @INFOOFF' + - arguments: "@f+ @INFOOFF" config: oslist: windows description: Full screen executable: SweetThomas.win32_steam.exe type: option1 - - arguments: '@f1920x1080 @z0.9 @INFOOFF' + - arguments: "@f1920x1080 @z0.9 @INFOOFF" config: oslist: windows description: Windowed executable: SweetThomas.win32_steam.exe type: option2 -'1179560': +"1179560": installDir: Gachi Heroes 2 Flexboll launch: - config: oslist: windows executable: nw.exe type: none -'1179570': +"1179570": installDir: Jazz Lightning launch: - config: oslist: windows executable: Jazz Lightning Castle Dungeons.exe type: default -'1179580': +"1179580": installDir: Kaku Ancient Seal launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: \\KakuAncientSeal\\Binaries\\Win64\\KakuAncientSeal_protected.exe + executable: "\\\\KakuAncientSeal\\\\Binaries\\\\Win64\\\\KakuAncientSeal_protected.exe" nameLocalized: sc_schinese: 卡库远古封印 schinese: 卡库远古封印 -'1179670': {} -'1179730': {} -'1179750': +"1179670": {} +"1179730": {} +"1179750": installDir: Metrail launch: - executable: Metrail.exe type: default -'1179790': +"1179790": installDir: Heroes Of Maidan 3 launch: - config: oslist: windows executable: Heroes Of Maidan 3.exe type: default -'1179840': +"1179840": installDir: Origin launch: - config: oslist: windows executable: Origin.exe type: default -'1179890': +"1179890": nameLocalized: schinese: Pull Stay - 家里蹲 -'1179910': +"1179910": installDir: HarmonyStory launch: - config: oslist: windows executable: P5_HarmonyStory.exe type: default -'1180000': +"1180000": installDir: I Will Be Your Eyes launch: - config: oslist: windows executable: iwbye.exe type: none -'1180020': +"1180020": installDir: An Occurrence at Owl Creek Bridge launch: - config: oslist: windows executable: An_Occurrence_at_Owl_Creek_Bridge.exe type: default -'1180030': +"1180030": installDir: Wardwell House launch: - config: @@ -62623,28 +61854,28 @@ - config: oslist: macos executable: Wardwell House Mac.app -'1180110': +"1180110": installDir: DeadShotZ launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Windows 64-bit executable: nw.exe type: default -'1180130': +"1180130": installDir: The_Final_Earth_2 launch: - executable: the-final-earth-2.exe type: none -'1180210': +"1180210": installDir: Super Rhythm Duel launch: - config: oslist: windows executable: srd/SRD.exe type: default -'1180250': +"1180250": installDir: Divination launch: - config: @@ -62655,29 +61886,29 @@ oslist: macos executable: DIVINATION.app type: default -'1180270': +"1180270": installDir: Forbidden Love With The Ghost Girl launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Game.exe type: default -'1180360': +"1180360": installDir: Two Love launch: - config: oslist: windows - executable: \\TL.exe + executable: "\\\\TL.exe" type: default -'1180370': +"1180370": installDir: Wienne launch: - config: oslist: windows executable: Wienne.exe type: none -'1180380': +"1180380": installDir: sogame launch: - config: @@ -62685,8 +61916,8 @@ executable: game/sogame.exe type: default workingdir: game -'1180390': {} -'1180420': +"1180390": {} +"1180420": installDir: Windmill Kings launch: - config: @@ -62695,7 +61926,7 @@ type: default nameLocalized: schinese: 风车国王 -'1180450': +"1180450": installDir: Exitium launch: - config: @@ -62703,29 +61934,29 @@ executable: Exitium.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Exitium.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Exitium.x86_64 type: default -'1180460': {} -'1180520': +"1180460": {} +"1180520": installDir: Andromeda One launch: - executable: andromedaone.exe type: none -'1180530': +"1180530": installDir: Gates to Terra II launch: - config: oslist: windows executable: Gates to Terra II.exe type: none -'1180540': +"1180540": installDir: Puddle Knights launch: - config: @@ -62736,7 +61967,7 @@ oslist: macos executable: puddleknights.app/Contents/MacOS/puddleknights type: default -'1180550': +"1180550": installDir: Bruxinha Luana_win32 launch: - config: @@ -62747,21 +61978,21 @@ english: Little Witch Luana japanese: リトルウィッチルアナ latam: Pequeña Bruja Luana -'1180610': +"1180610": installDir: Np Problems Vertex Coloring launch: - config: oslist: windows executable: NpcProjectsVertex Coloring.exe type: none -'1180620': +"1180620": installDir: Bullet Beat launch: - config: oslist: windows executable: Bullet Beat.exe type: default -'1180630': +"1180630": installDir: Norse launch: - config: @@ -62776,45 +62007,43 @@ oslist: macos executable: MacLauncher type: default -'1180650': +"1180650": installDir: Bakemono launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: BTB_Aug1_Public.exe type: vr - config: betakey: Beta Branch - osarch: '64' + osarch: "64" oslist: windows executable: Shirley_V1.exe type: vr - config: - osarch: '64' + osarch: "64" oslist: windows executable: BTB_Aug1_Public.exe type: othervr - - arguments: '-DX12' + - arguments: "-DX12" config: - osarch: '64' + osarch: "64" oslist: windows description: DX12 - description_loc: - english: DX12 executable: BTB_Aug1_Public.exe type: vr -'1180660': +"1180660": installDir: TellMeWhy launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch Tell me Why executable: TME-Win64-Shipping.exe type: default -'1180670': {} -'1180690': +"1180670": {} +"1180690": installDir: Spaceman launch: - config: @@ -62824,49 +62053,49 @@ type: none - config: oslist: macos - executable: Contents\\MacOS\\spacemanprelude + executable: "Contents\\\\MacOS\\\\spacemanprelude" type: none -'1180700': +"1180700": installDir: Shooting Star launch: - executable: Shooting Star.exe type: none -'1180790': +"1180790": installDir: ImageStriker launch: - config: oslist: windows executable: ImageStrikerS.exe type: default -'1180800': - installDir: Don't Kill the Cow +"1180800": + installDir: "Don't Kill the Cow" launch: - config: oslist: windows - executable: Don't_Kill_the_Cow.exe + executable: "Don't_Kill_the_Cow.exe" type: default -'1180840': +"1180840": installDir: SoulfulLand launch: - config: oslist: windows executable: SoulfulLand.exe type: default -'1180940': +"1180940": installDir: Spellinkers launch: - config: oslist: windows executable: Spellinkers.exe type: default -'1180960': +"1180960": installDir: Arktrum launch: - config: oslist: windows executable: Arktrum.exe type: default -'1180970': +"1180970": installDir: Phantom Path launch: - config: @@ -62875,32 +62104,32 @@ type: default nameLocalized: russian: Путь Фантома -'1181000': +"1181000": installDir: UBERMOSH_OMEGA launch: - executable: UBERMOSH OMEGA.exe type: default -'1181010': +"1181010": installDir: PUT IN BAD launch: - executable: PUT IN BAD.exe type: none -'1181020': +"1181020": installDir: Squillamorph launch: - config: oslist: windows executable: Squillamorph.exe type: default -'1181040': {} -'1181070': +"1181040": {} +"1181070": installDir: BOX launch: - config: oslist: windows executable: BOX.exe type: default -'1181120': +"1181120": installDir: Picture toys launch: - arguments: b @@ -62908,12 +62137,12 @@ oslist: windows executable: Picture toys.exe type: default -'1181130': +"1181130": installDir: Play with NEKO launch: - executable: game.exe type: none -'1181140': +"1181140": installDir: PerfectLover launch: - config: @@ -62924,7 +62153,7 @@ japanese: 完璧な彼女 schinese: PerfectLover 完美女友 tchinese: PerfectLover 完美女友 -'1181160': +"1181160": installDir: Impossiball launch: - config: @@ -62939,33 +62168,33 @@ oslist: macos executable: Impossiball.app type: default -'1181220': +"1181220": installDir: aMAZE Gears 2 launch: - config: oslist: windows executable: aMAZE Gears 2.exe type: default -'1181270': +"1181270": installDir: God of Gym launch: - config: oslist: windows executable: God of Gym.exe type: none -'1181280': +"1181280": installDir: EBONY launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: EBONY.exe type: default -'1181290': +"1181290": installDir: Aria Dating Simulator launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Aria_Dating_Simulator.exe type: default @@ -62974,40 +62203,40 @@ executable: Aria_Dating_Simulator.sh type: default - config: - osarch: '32' + osarch: "32" oslist: windows - executable: lib\\windows-i686\\Aria_Dating_Simulator.exe + executable: "lib\\\\windows-i686\\\\Aria_Dating_Simulator.exe" type: default -'1181330': +"1181330": installDir: D3D INSIDE launch: - executable: D3D INSIDE.exe type: none -'1181340': +"1181340": installDir: SHATTER launch: - - arguments: '-windowed' + - arguments: "-windowed" config: oslist: windows description: Launch executable: SHATTER.exe type: default -'1181360': +"1181360": installDir: Elette Fragments launch: - config: oslist: windows executable: Elette Fragments.exe type: default -'1181390': +"1181390": installDir: ID-EGO launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ID-EGO.exe type: default -'1181400': +"1181400": installDir: Path of Giants launch: - config: @@ -63016,18 +62245,18 @@ type: default - config: oslist: macos - executable: Path of Giants.app\\Contents\\MacOS\\Path of Giants + executable: "Path of Giants.app\\\\Contents\\\\MacOS\\\\Path of Giants" type: default -'1181440': +"1181440": installDir: ToGather Island launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ToGather_Island.exe type: default -'1181450': {} -'1181470': +"1181450": {} +"1181470": installDir: My Haunted Doll launch: - config: @@ -63038,8 +62267,8 @@ oslist: linux executable: MyHauntedDoll type: default -'1181490': {} -'1181520': +"1181490": {} +"1181520": installDir: Null and Peta launch: - executable: NullPeta_x64.exe @@ -63049,13 +62278,13 @@ japanese: ぬるぺた -クイーンバグの襲来- schinese: Null&Peta -Queen Bug的袭来- tchinese: Null&Peta -Queen Bug的襲來- -'1181550': {} -'1181570': - installDir: Feria d'Arles +"1181550": {} +"1181570": + installDir: "Feria d'Arles" launch: - config: oslist: windows - executable: Feria d'Arles.exe + executable: "Feria d'Arles.exe" type: default - config: oslist: windows @@ -63065,7 +62294,7 @@ oslist: macos executable: Feria Mac.app/Contents/MacOS/AGS type: default -'1181600': +"1181600": installDir: JetboardJoust launch: - config: @@ -63077,87 +62306,75 @@ executable: JetboardJoust.Steam.MacOS.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: JetboardJoust type: default -'1181720': +"1181720": installDir: Labirint launch: - config: oslist: windows executable: Labirint.exe type: default -'1181750': +"1181750": installDir: THE VR CANYON launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: THE VR CANYON.exe type: vr - config: - osarch: '64' + osarch: "64" oslist: windows executable: THE VR CANYON.exe type: othervr -'1181780': +"1181780": installDir: AscendantsRising launch: - - arguments: '-NoSteam -EOSConfig=RelClient' + - arguments: "-NoSteam -EOSConfig=RelClient" config: - osarch: '64' + osarch: "64" oslist: windows description: Default - description_loc: - english: Default executable: WindowsClient/AscendantsRisingClient.exe type: none - - arguments: '-NoSteam -log -EOSConfig=RelClient -STORE=STEAM' + - arguments: "-NoSteam -log -EOSConfig=RelClient -STORE=STEAM" config: betakey: qa_shipping - osarch: '64' + osarch: "64" oslist: windows description: QA ShippingParameters - description_loc: - english: QA ShippingParameters executable: WindowsClient/AscendantsRisingClient.exe - - arguments: '-log -EOSConfig=DevClient -STORE=STEAM' + - arguments: "-log -EOSConfig=DevClient -STORE=STEAM" config: betakey: qa_test description: QA - description_loc: - english: QA executable: WindowsClient/AscendantsRisingClient.exe - - arguments: '-log -EOSConfig=DevClient' + - arguments: "-log -EOSConfig=DevClient" config: betakey: Lobby description: Lobby - description_loc: - english: Lobby executable: WindowsClient/AscendantsRisingClient.exe type: none - - arguments: '-log -EOSConfig=DevClient' + - arguments: "-log -EOSConfig=DevClient" config: betakey: pr_br description: pr_br - description_loc: - english: pr_br executable: WindowsClient/AscendantsRisingClient.exe type: none - - arguments: '-log -EOSConfig=DevClient' + - arguments: "-log -EOSConfig=DevClient" config: betakey: alex_test description: alex_test - description_loc: - english: alex_test executable: WindowsClient/AscendantsRisingClient.exe type: none -'1181790': +"1181790": installDir: Circle of Sumo Online Rumble! launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Circle of Sumo - Online Rumble.exe type: default @@ -63167,22 +62384,20 @@ type: default - config: betakey: bitsummit - osarch: '64' + osarch: "64" oslist: windows description: Circle of Sumo - Bitsummit 2021 edition - description_loc: - english: Circle of Sumo - Bitsummit 2021 edition executable: Circle of Sumo - Ultimate Edition.exe type: option1 -'1181800': {} -'1181820': +"1181800": {} +"1181820": installDir: Colossal Saga launch: - config: oslist: windows executable: Colossal Saga.exe type: default -'1181830': +"1181830": installDir: Urtuk The Desolation launch: - config: @@ -63194,11 +62409,11 @@ executable: urtuk type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: urtuk type: default -'1181840': +"1181840": installDir: HIVESWAP Act 2 launch: - config: @@ -63207,22 +62422,22 @@ type: default - config: oslist: macos - executable: Hiveswap-Act2.app\\Contents\\MacOS\\Hiveswap Episode 2 + executable: "Hiveswap-Act2.app\\\\Contents\\\\MacOS\\\\Hiveswap Episode 2" type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Hiveswap-Act2.x86_64 type: default -'1181880': +"1181880": installDir: Draconic Echoes The Ardent War launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows executable: Draconic Echoes The Ardent War.exe type: default -'1181900': +"1181900": installDir: Cave Confectioner launch: - config: @@ -63230,7 +62445,7 @@ executable: cave-confec.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: cave-confec type: default @@ -63241,14 +62456,14 @@ nameLocalized: schinese: 洞穴甜品师 tchinese: 洞穴甜品师 -'1181910': - installDir: Halloween Chronicles Evil Behind a Mask Collector's Edition +"1181910": + installDir: "Halloween Chronicles Evil Behind a Mask Collector's Edition" launch: - config: oslist: windows executable: HalloweenChronicles_EvilBehindAMask_CE.exe type: default -'1181940': +"1181940": installDir: Cursed Pagoda launch: - config: @@ -63256,46 +62471,46 @@ executable: cursed_pagoda.app type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: Cursed Pagoda.exe type: default -'1181970': +"1181970": installDir: Kamodo Steve! Janitor on Fire! launch: - config: oslist: windows executable: ksjof.exe type: none -'1182040': +"1182040": installDir: 3 BLIND MICE A REMEDIATION GAME FOR IMPROPER CHILDREN launch: - config: oslist: windows executable: 3BlindMice.exe type: default -'1182060': +"1182060": installDir: Heavens Tournament launch: - executable: Heavens Tournament.exe type: vr -'1182070': +"1182070": installDir: Majula Frontier The Offense launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Majula Frontier The Offense.exe type: default -'1182080': +"1182080": installDir: candy_0_0_1 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: M1.exe type: default -'1182090': +"1182090": installDir: Mr.PumpkinKowloon walled city launch: - config: @@ -63308,10 +62523,10 @@ executable: Pumpkin2.app type: none nameLocalized: - japanese: 'ミスターパンプキン2 九龍城砦(Mr. Pumpkin 2: Kowloon Walled City)' - schinese: '南瓜先生2 九龙城寨(Mr. Pumpkin 2: Kowloon Walled City)' - tchinese: '南瓜先生2 九龍城寨(Mr. Pumpkin 2: Kowloon Walled City)' -'1182110': + japanese: "ミスターパンプキン2 九龍城砦(Mr. Pumpkin 2: Kowloon Walled City)" + schinese: "南瓜先生2 九龙城寨(Mr. Pumpkin 2: Kowloon Walled City)" + tchinese: "南瓜先生2 九龍城寨(Mr. Pumpkin 2: Kowloon Walled City)" +"1182110": installDir: Weed Shop 3 launch: - config: @@ -63321,83 +62536,71 @@ oslist: linux executable: Weed Shop 3.x86_64 type: default -'1182200': +"1182200": installDir: Hidden World of Art launch: - config: oslist: windows executable: art2.exe type: default -'1182210': +"1182210": installDir: Space electrician launch: - executable: Space electrician.exe type: none -'1182280': +"1182280": installDir: FoodBall launch: - executable: foodtruckarena.exe type: none nameLocalized: schinese: 快餐车竞技场 -'1182310': - installDir: The Excavation of Hob's Barrow +"1182310": + installDir: "The Excavation of Hob's Barrow" launch: - config: oslist: windows description: Launch - description_loc: - english: Launch executable: TEOHB.exe type: default - config: oslist: windows description: Settings - description_loc: - english: Settings executable: winsetup.exe type: config - config: - osarch: '32' + osarch: "32" oslist: linux - description: 'Launch [32bit]' - description_loc: - english: 'Launch [32bit]' - executable: ./Start.sh + description: "Launch [32bit]" + executable: "./Start.sh" type: default - config: - osarch: '64' + osarch: "64" oslist: linux - description: 'Launch [64bit]' - description_loc: - english: 'Launch [64bit]' - executable: ./Start.sh + description: "Launch [64bit]" + executable: "./Start.sh" type: default - - arguments: '--windowed' + - arguments: "--windowed" config: oslist: linux description: Windowed - description_loc: - english: Windowed - executable: ./Start.sh + executable: "./Start.sh" type: option1 - config: oslist: macos description: Launch - description_loc: - english: Launch executable: TEOHB.app/Contents/MacOS/AGS type: default -'1182370': - installDir: Mr. Hopp's Playhouse +"1182370": + installDir: "Mr. Hopp's Playhouse" launch: - config: - betakey: '1182371' + betakey: "1182371" oslist: windows executable: MrHoppsPlayhouse1.exe type: default -'1182420': {} -'1182470': +"1182420": {} +"1182470": installDir: reky launch: - config: @@ -63406,134 +62609,122 @@ type: default - config: oslist: macos - executable: reky.app\\Contents\\MacOS\\reky + executable: "reky.app\\\\Contents\\\\MacOS\\\\reky" type: default -'1182590': +"1182590": installDir: Hueor launch: - executable: Color Clash.exe type: default -'1182620': +"1182620": installDir: Impostor Factory launch: - config: oslist: windows - executable: Impostor Factory\\steamshim_parent.exe + executable: "Impostor Factory\\\\steamshim_parent.exe" type: default workingdir: Impostor Factory - - arguments: Impostor\\ Factory/ImpostorFactory.app/Contents/MacOS/mkxp + - arguments: "Impostor\\\\ Factory/ImpostorFactory.app/Contents/MacOS/mkxp" config: oslist: macos executable: Impostor Factory/ImpostorFactory.app/Contents/MacOS/steamshim_parent type: none - - arguments: ./ImpostorFactory.x86_64 + - arguments: "./ImpostorFactory.x86_64" config: - osarch: '64' + osarch: "64" oslist: linux description: Launch main game - description_loc: - english: Launch main game executable: Impostor Factory/steamshim/parent.amd64 type: default workingdir: Impostor Factory - config: oslist: windows - ownsdlc: '1763930' + ownsdlc: "1763930" description: Launch AU Playbook - description_loc: - english: Launch AU Playbook - executable: Impostor Factory - AU Playbook\\Alternate Universe Playbook.exe + executable: "Impostor Factory - AU Playbook\\\\Alternate Universe Playbook.exe" type: none workingdir: Impostor Factory - AU Playbook - config: oslist: windows - ownsdlc: '1773090' - description: Browse \"Bestest Dancers\" Comic - description_loc: - english: Browse \"Bestest Dancers\" Comic - executable: Bestest Dancers Comic\\open_folder_windows.bat + ownsdlc: "1773090" + description: "Browse \\\"Bestest Dancers\\\" Comic" + executable: "Bestest Dancers Comic\\\\open_folder_windows.bat" type: none workingdir: Bestest Dancers Comic - config: oslist: macos - ownsdlc: '1773090' - description: Browse \"Bestest Dancers\" Comic - description_loc: - english: Browse \"Bestest Dancers\" Comic + ownsdlc: "1773090" + description: "Browse \\\"Bestest Dancers\\\" Comic" executable: Bestest Dancers Comic/open_folder_macos.sh type: none workingdir: Bestest Dancers Comic - config: oslist: linux - ownsdlc: '1773090' - description: Browse \"Bestest Dancers\" Comic - description_loc: - english: Browse \"Bestest Dancers\" Comic + ownsdlc: "1773090" + description: "Browse \\\"Bestest Dancers\\\" Comic" executable: Bestest Dancers Comic/open_folder_linux.sh type: none workingdir: Bestest Dancers Comic - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch 64bit version - description_loc: - english: Launch 64bit version - executable: Impostor Factory\\steamshim_parent64.exe + executable: "Impostor Factory\\\\steamshim_parent64.exe" type: none workingdir: Impostor Factory nameLocalized: schinese: Impostor Factory《影子工厂》 -'1182670': - installDir: Haunted Hotel Room 18 Collector's Edition +"1182670": + installDir: "Haunted Hotel Room 18 Collector's Edition" launch: - config: oslist: windows executable: HauntedHotel_Room18_CE.exe type: default -'1182680': +"1182680": installDir: The Last Pixel launch: - config: oslist: windows executable: TheLastPixel.exe type: default -'1182690': +"1182690": installDir: A Dark World The Glowing City launch: - config: oslist: windows - executable: A Dark World\\GlowingCity.exe + executable: "A Dark World\\\\GlowingCity.exe" type: default -'1182720': +"1182720": installDir: GO-4-Soldier-1 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: GO-4-Soldier-1.exe type: none -'1182760': +"1182760": installDir: Starlight launch: - config: oslist: windows executable: Starlight.exe type: default -'1182770': +"1182770": installDir: Caves and Castles Underworld launch: - config: oslist: windows executable: CavesAndCastles_Underworld.exe type: default -'1182790': +"1182790": installDir: Grudge TV launch: - config: oslist: windows executable: DirgeProject.exe type: none -'1182820': +"1182820": installDir: Miracle Calamity Homeostasis launch: - config: @@ -63542,58 +62733,54 @@ type: default workingdir: MiracleCalamityHomeostasis-1.0-pc/ - config: - osarch: '64' + osarch: "64" oslist: linux executable: MiracleCalamityHomeostasis-1.0-pc/MiracleCalamityHomeostasis.sh type: default workingdir: MiracleCalamityHomeostasis-1.0-pc/ -'1182830': +"1182830": installDir: QT launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: QT.exe type: default - config: oslist: macos - executable: Mac.app\\Contents\\MacOS\\QT + executable: "Mac.app\\\\Contents\\\\MacOS\\\\QT" type: default - config: oslist: linux executable: QT Linux.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: QT.exe type: default -'1182890': +"1182890": installDir: Dunmakia Kingdom launch: - config: oslist: windows executable: Game.exe type: default -'1182900': +"1182900": installDir: A Plague Tale Requiem launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: APlagueTaleRequiem_x64.exe type: none - config: - betakey: >- - amd_collab,nvidia_collab,asobo_interne_test,asobo_qa_test,asobo_trade,corsair_collab,focus_ageratings,focus_hw,focus_lqa,focus_partners,focus_playtest_interne,focus_qa_from_asobo,focus_qa_intermediaire,intel_collab,trailer - osarch: '64' + betakey: "amd_collab,nvidia_collab,asobo_interne_test,asobo_qa_test,asobo_trade,corsair_collab,focus_ageratings,focus_hw,focus_lqa,focus_partners,focus_playtest_interne,focus_qa_from_asobo,focus_qa_intermediaire,intel_collab,trailer" + osarch: "64" oslist: windows description: Launch DEV executable - description_loc: - english: Launch DEV executable - french: Launch DEV executable executable: APlagueTaleRequiem_DEV_x64.exe -'1182970': +"1182970": installDir: VR Katherine launch: - config: @@ -63613,7 +62800,7 @@ description: Oculus executable: VR Katherine.exe type: othervr -'1183010': +"1183010": installDir: Listeria Wars launch: - config: @@ -63621,27 +62808,27 @@ executable: Listeria Wars.exe - config: oslist: macos - executable: Listeria Wars Mac.app\\Contents\\MacOS\\Listeria Wars + executable: "Listeria Wars Mac.app\\\\Contents\\\\MacOS\\\\Listeria Wars" - config: oslist: linux executable: Listeria Wars.x86_64 -'1183030': +"1183030": installDir: Layers of Fear VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: LOF VR.exe type: vr -'1183080': +"1183080": installDir: MMA President launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: MMA President.exe type: default -'1183140': +"1183140": installDir: Planet Lander launch: - config: @@ -63652,7 +62839,7 @@ oslist: linux executable: Planet Lander.x86_64 type: none -'1183170': +"1183170": installDir: All World Pro Wrestling launch: - config: @@ -63667,15 +62854,15 @@ oslist: linux executable: AllWorldProWrestling type: none -'1183210': +"1183210": installDir: Through The Unknown launch: - config: oslist: windows executable: Through The Unknown.exe type: default -'1183230': - installDir: A Pirate's Pleasure +"1183230": + installDir: "A Pirate's Pleasure" launch: - config: oslist: windows @@ -63683,13 +62870,13 @@ type: none - config: oslist: macos - executable: A Pirate's Pleasure.app/Contents/MacOS/A Pirate's Pleasure + executable: "A Pirate's Pleasure.app/Contents/MacOS/A Pirate's Pleasure" type: none - config: oslist: linux executable: APiratesPleasure type: none -'1183260': +"1183260": installDir: TrymenT launch: - executable: TrymenT_AlphA.exe @@ -63698,8 +62885,8 @@ english: TrymenT ―Ima o Kaetai to Negau Anata e― AlphA japanese: TrymenT ―今を変えたいと願うあなたへ― AlphA編 tchinese: TrymenT ―獻給渴望改變的你― AlphA篇 -'1183270': {} -'1183280': +"1183270": {} +"1183280": installDir: Jazz Age launch: - config: @@ -63714,7 +62901,7 @@ oslist: linux executable: JazzAge type: none -'1183300': +"1183300": installDir: Dawnfall launch: - config: @@ -63729,15 +62916,15 @@ oslist: linux executable: Dawnfall type: none -'1183320': +"1183320": installDir: Bundle Kitt launch: - config: oslist: windows executable: BundleKitt.exe type: default -'1183350': {} -'1183410': +"1183350": {} +"1183410": installDir: you are pig sitter launch: - config: @@ -63746,122 +62933,109 @@ type: default nameLocalized: japanese: きみはぶたのおせわがかり -'1183470': +"1183470": installDir: Imperiums Greek Wars launch: - executable: Launcher.exe type: none -'1183480': +"1183480": installDir: BonsaiCastles launch: - config: oslist: windows executable: BonsaiCastles.exe type: default -'1183510': +"1183510": installDir: Little Town Hero launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: littleTownHero.exe type: default -'1183530': {} -'1183560': {} -'1183580': +"1183530": {} +"1183560": {} +"1183580": installDir: TerraAlia launch: - config: oslist: windows executable: Terra Alia.exe type: default -'1183590': {} -'1183600': +"1183590": {} +"1183600": installDir: King rocket launch: - executable: King rocket.exe type: none -'1183650': +"1183650": installDir: PM-1 Inverse Universe launch: - config: oslist: windows executable: PM-1 space adventure.exe type: default -'1183670': +"1183670": installDir: Angry Zombies launch: - executable: Angry Zombies.exe type: none -'1183740': +"1183740": installDir: 散歩するキーボード使い launch: - executable: Game.exe type: default -'1183750': +"1183750": installDir: Liquid Space launch: - config: oslist: windows executable: LiquidSpace.exe type: vr -'1183800': +"1183800": installDir: Shardpunk Verminfall launch: - config: oslist: windows - description: 'Play Shardpunk: Verminfall' - description_loc: - english: 'Play Shardpunk: Verminfall' + description: "Play Shardpunk: Verminfall" executable: Shardpunk.exe type: default - config: oslist: windows - description: Play This is The End - Shardpunk Verminfall's first Tech Demo from 2018 - description_loc: - english: Play This is The End - Shardpunk Verminfall's first Tech Demo from 2018 - executable: This is The End\\This is The End.exe + description: "Play This is The End - Shardpunk Verminfall's first Tech Demo from 2018" + executable: "This is The End\\\\This is The End.exe" workingdir: This is The End - config: oslist: windows - ownsdlc: '2380110' + ownsdlc: "2380110" description: Open Digital Compendium - description_loc: - english: Open Digital Compendium - executable: \\Digital Compendium\\Shardpunk_Verminfall_digital_compendium.pdf + executable: "\\\\Digital Compendium\\\\Shardpunk_Verminfall_digital_compendium.pdf" - config: betakey: shp_qa - ownsdlc: '2380110' + ownsdlc: "2380110" description: Display Compendium - description_loc: - english: Display Compendium executable: test.cmd -'1183940': +"1183940": installDir: Scavengers launch: - - arguments: '-protectedstart' + - arguments: "-protectedstart" config: - osarch: '64' + osarch: "64" oslist: windows description: Scavengers - description_loc: - english: Scavengers executable: Scavengers_Launcher.exe type: option1 - config: - betakey: >- - development,development_alpha,development_china,partner_nvidia,partner_pufferfish,private_barracuda,private_dugong,private_flounder,private_fugu,private_grunion,private_guitarfish,private_herring,private_jormungandr,private_kraken,private_lamprey,private_mahimahi,private_megalodon,private_narwhal,private_plankton,private_quahog,private_stingray,private_tench,scavengers_live - osarch: '64' + betakey: "development,development_alpha,development_china,partner_nvidia,partner_pufferfish,private_barracuda,private_dugong,private_flounder,private_fugu,private_grunion,private_guitarfish,private_herring,private_jormungandr,private_kraken,private_lamprey,private_mahimahi,private_megalodon,private_narwhal,private_plankton,private_quahog,private_stingray,private_tench,scavengers_live" + osarch: "64" description: Scavengers (anti-cheat disabled) - description_loc: - english: Scavengers (anti-cheat disabled) executable: Scavenger.exe type: option2 nameLocalized: schinese: Scavengers拾荒者 tchinese: Scavengers拾荒者 -'1183970': {} -'1183980': +"1183970": {} +"1183980": installDir: Escape from the Lostmoon launch: - config: @@ -63869,55 +63043,55 @@ executable: lostmoon.exe type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: lostmoon type: none - config: oslist: macos - executable: EscapeLostmoon.app\\Contents\\MacOS\\JavaAppLauncher + executable: "EscapeLostmoon.app\\\\Contents\\\\MacOS\\\\JavaAppLauncher" type: none -'1184020': {} -'1184040': +"1184020": {} +"1184040": installDir: D1896 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: D1896.exe type: default -'1184050': +"1184050": installDir: GearsTactics launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: GearGame\\Binaries\\Steam\\GearsTactics.exe + executable: "GearGame\\\\Binaries\\\\Steam\\\\GearsTactics.exe" type: default -'1184090': +"1184090": installDir: BellyDanceGirl launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: BDGirl.exe type: default -'1184110': +"1184110": installDir: 刀锋突袭 launch: - executable: 刀锋突袭.exe type: default -'1184140': +"1184140": installDir: KartRider Drift launch: - - arguments: '-steam' + - arguments: "-steam" config: - osarch: '64' + osarch: "64" oslist: windows executable: KartDrift.exe nameLocalized: japanese: カートライダー ドリフト -'1184160': +"1184160": installDir: RUSSIAPHOBIA launch: - config: @@ -63930,49 +63104,49 @@ type: default - config: oslist: macos - executable: Contents\\MacOS\\RUSSIAPHOBIA + executable: "Contents\\\\MacOS\\\\RUSSIAPHOBIA" type: default -'1184190': +"1184190": installDir: Knockout Bowling vr launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: VR Bowling.exe type: vr -'1184210': +"1184210": installDir: Fragile launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Fragile.exe type: default -'1184230': +"1184230": installDir: Cross Border VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: game.exe type: vr nameLocalized: schinese: 穿越边境VR -'1184250': +"1184250": installDir: Finnish Army Simulator launch: - executable: Finnish Army Simulator.exe type: none -'1184260': +"1184260": installDir: Warchasm launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Warchasm VR executable: Warchasm.exe type: vr -'1184310': +"1184310": installDir: Slippery Sausage launch: - config: @@ -63983,20 +63157,20 @@ oslist: macos executable: Contents/MacOS/Slippery Sausage type: default -'1184320': +"1184320": installDir: FIT Food launch: - config: oslist: windows executable: FITFood.exe type: default -'1184330': {} -'1184360': +"1184330": {} +"1184360": installDir: Heavy load launch: - executable: HEAVY LOAD.exe type: none -'1184370': +"1184370": installDir: Pathfinder Second Adventure launch: - config: @@ -64007,7 +63181,7 @@ oslist: macos executable: Wrath.app type: default -'1184400': +"1184400": installDir: SuccubusWaifu launch: - config: @@ -64024,192 +63198,183 @@ koreana: 서큐버스 와이프 schinese: 魅魔新妻 Succubus Waifu tchinese: 魅魔新妻 Succubus Waifu -'1184420': +"1184420": installDir: 天降锦鲤 ~ My Lucky Koi launch: - config: oslist: macos - executable: game.app\\Contents\\MacOS\\game + executable: "game.app\\\\Contents\\\\MacOS\\\\game" type: default - config: oslist: windows executable: MyLuckyKoi.exe type: default -'1184450': +"1184450": installDir: Magic of Autumn launch: - config: oslist: windows executable: Magic_of_Autumn.exe type: none -'1184460': - installDir: Race! Make 'm finish +"1184460": + installDir: "Race! Make 'm finish" launch: - config: - osarch: '64' + osarch: "64" oslist: windows - description: Launch Race! Make 'm finish... - executable: Race! Make 'm finish.exe + description: "Launch Race! Make 'm finish..." + executable: "Race! Make 'm finish.exe" type: default - config: - osarch: '32' + osarch: "32" oslist: windows - description: Launch Race! Make 'm finish... - executable: Race! Make 'm finish.exe + description: "Launch Race! Make 'm finish..." + executable: "Race! Make 'm finish.exe" type: default -'1184470': +"1184470": installDir: ASTROPUPPA launch: - config: oslist: windows executable: ASTROPUPPA.exe type: none -'1184480': +"1184480": installDir: Inertial Drift launch: - executable: InertialDrift.exe type: default -'1184530': +"1184530": installDir: Aurora - Hidden Colors launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows executable: AuroraHiddenColors.exe type: default - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: linux executable: AuroraHiddenColors type: default nameLocalized: english: Aurora - Hidden Colors -'1184550': +"1184550": installDir: TERMINAL launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: \\TerminalMaster21122.exe + executable: "\\\\TerminalMaster21122.exe" type: vr - config: - osarch: '64' + osarch: "64" oslist: windows - executable: \\TerminalMaster21122.exe + executable: "\\\\TerminalMaster21122.exe" type: othervr -'1184560': +"1184560": installDir: Phantom Breaker OMNIA launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: omnia.exe type: none - config: betakey: localization - osarch: '64' + osarch: "64" oslist: windows description: Review Version (Cheats Enabled) - description_loc: - english: Review Version (Cheats Enabled) - japanese: レビューバージョン(チート機能あり) executable: omnia_r.exe type: none - config: betakey: botbuild oslist: windows description: Bot Version for Review - description_loc: - english: Bot Version for Review executable: omnia_r.exe - config: betakey: rpg-streaming oslist: windows description: STREAMING VERSION - description_loc: - english: STREAMING VERSION executable: omnia_str.exe -'1184570': +"1184570": installDir: Last Neighbor launch: - config: oslist: windows executable: LastNeighbor.exe type: default -'1184590': +"1184590": installDir: CubeHub launch: - config: oslist: windows executable: CubeHub.exe type: default -'1184640': +"1184640": installDir: HNS4-Lost-World launch: - config: oslist: windows executable: HideAndSecret4.exe type: default -'1184710': +"1184710": installDir: Cosmo story launch: - executable: CosmoStory.exe type: none -'1184720': +"1184720": installDir: Later launch: - config: oslist: windows executable: Later.exe type: none -'1184750': +"1184750": installDir: SkelletonVsZombies launch: - config: oslist: windows executable: BonesAgainstUndead.exe type: none -'1184760': +"1184760": installDir: Shovel Knight Pocket Dungeon launch: - - arguments: '-test' + - arguments: "-test" config: oslist: windows description: Launch - description_loc: - english: Launch executable: Shovel Knight Pocket Dungeon.exe type: none - config: oslist: macos executable: Shovel Knight Pocket Dungeon.app type: default -'1184770': +"1184770": installDir: The Political Process launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ThePoliticalProcess.exe type: none -'1184780': +"1184780": installDir: BOTS launch: - config: oslist: windows executable: Bots type: default -'1184790': {} -'1184810': +"1184790": {} +"1184810": installDir: Mainframe Defenders Test launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Mainframe.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Mainframe.x86_64 type: default @@ -64220,12 +63385,12 @@ italian: Difensori del Mainframe japanese: メインフレーム・ディフェンダーズ koreana: 메인프레임 수비대 - polish: Obrońcy Mainframe'ów + polish: "Obrońcy Mainframe'ów" portuguese: Defensores de Mainframe schinese: 主机保卫队 spanish: Defensores de Mainframe tchinese: 主机保卫队 -'1184820': +"1184820": installDir: Poker Quest launch: - config: @@ -64236,7 +63401,7 @@ oslist: macos executable: PokerQuest.app type: none -'1184840': +"1184840": installDir: Chaos Galaxy launch: - config: @@ -64246,12 +63411,12 @@ nameLocalized: schinese: 混沌银河 tchinese: 混沌銀河 -'1184890': +"1184890": installDir: Fleeting Iris launch: - executable: Game.exe type: default -'1184900': +"1184900": installDir: unitied launch: - config: @@ -64263,18 +63428,18 @@ executable: unitied.app type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: unitied.x86_64 type: none -'1184960': +"1184960": installDir: Escalation Aggressors launch: - config: oslist: windows - executable: EscalationAggressors\\Escalation Aggressors.exe + executable: "EscalationAggressors\\\\Escalation Aggressors.exe" type: default -'1185000': +"1185000": installDir: Bloody trains launch: - config: @@ -64283,32 +63448,32 @@ type: none - config: oslist: macos - executable: BloodyTrains.app\\Contents\\MacOS\\Bloodytrains.exe + executable: "BloodyTrains.app\\\\Contents\\\\MacOS\\\\Bloodytrains.exe" type: none nameLocalized: ukrainian: КЛЯТІ ПОЇЗДИ! -'1185190': +"1185190": installDir: Climb Challenge launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Climbchallenge.exe type: default -'1185230': {} -'1185290': +"1185230": {} +"1185290": installDir: Cahertis launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows executable: Cahertis.exe type: none -'1185330': +"1185330": installDir: Blades of Gory launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: nw.exe type: default @@ -64317,11 +63482,11 @@ executable: newproject.app type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: nw.exe type: default -'1185340': +"1185340": installDir: Grace launch: - config: @@ -64332,60 +63497,60 @@ oslist: macos executable: Grace.app type: default -'1185370': +"1185370": installDir: Parked In The Dark launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ParkedInTheDark.exe type: default -'1185390': +"1185390": installDir: How to Become a Ninja Part 1 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: How to Become a Ninja1.exe type: none -'1185400': +"1185400": installDir: KuniTure launch: - config: oslist: windows executable: KuniTure.exe type: default -'1185470': +"1185470": installDir: Deathbloom Chapter 2 launch: - config: oslist: windows executable: deathbloom02.exe type: none -'1185480': +"1185480": installDir: WindowsNoEditor launch: - - executable: WindowsNoEditor\\Doom.exe + - executable: "WindowsNoEditor\\\\Doom.exe" type: default -'1185500': +"1185500": installDir: Mega Balls launch: - config: oslist: windows executable: Mega Balls.exe type: default -'1185520': +"1185520": installDir: Hentai Crush Love Rhythm launch: - config: oslist: windows executable: LoveRhythm.exe type: default -'1185530': +"1185530": installDir: My Wet Leto Comic launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: My Wet Leto Comic.exe type: default @@ -64393,22 +63558,22 @@ english: My Wet Leto Comic japanese: マイウェットレートーコミック schinese: My Wet Leto Comic 我的勒托物语 -'1185560': +"1185560": installDir: Astellia launch: - - arguments: '-host=login-na.astellia-mmo.com -port=5011' + - arguments: "-host=login-na.astellia-mmo.com -port=5011" config: oslist: windows description: Region - North America executable: Support/AstelliaLauncher.exe type: option1 - - arguments: '-host=login-eu.astellia-mmo.com -port=5011' + - arguments: "-host=login-eu.astellia-mmo.com -port=5011" config: oslist: windows description: Region - Europe executable: Support/AstelliaLauncher.exe type: option2 -'1185570': +"1185570": installDir: Stickman go launch: - config: @@ -64417,14 +63582,14 @@ type: none nameLocalized: schinese: 摇摆火柴人 -'1185580': +"1185580": installDir: Takkyu Tournament ReServe launch: - config: oslist: windows executable: Takkyu Tournament.exe type: none -'1185600': +"1185600": installDir: KingdomOfGod launch: - config: @@ -64435,7 +63600,7 @@ oslist: macos executable: KingdomOfGod.app type: default -'1185620': +"1185620": installDir: NecroLand Battle Royale launch: - config: @@ -64444,18 +63609,18 @@ type: none - config: oslist: macos - executable: NecroLand_BattleRoyale.app\\Contents\\MacOS\\NecroLand_BattleRoyale + executable: "NecroLand_BattleRoyale.app\\\\Contents\\\\MacOS\\\\NecroLand_BattleRoyale" type: none nameLocalized: - koreana: '네크로랜드 : 언데드 군단' -'1185630': + koreana: "네크로랜드 : 언데드 군단" +"1185630": installDir: CubeParkour launch: - config: oslist: windows executable: CubeParkour.exe type: none -'1185660': +"1185660": installDir: Sex Adventure launch: - config: @@ -64465,7 +63630,7 @@ type: default nameLocalized: german: Sex Adventure - Das Brettspiel -'1185680': +"1185680": installDir: White Wings launch: - config: @@ -64473,15 +63638,15 @@ executable: White_Wings.exe type: default nameLocalized: - french: 'White Wings - Ailes Blanches ' - german: 'White Wings - Weiße Flügel ' - italian: 'White Wings - Ali Bianche ' + french: "White Wings - Ailes Blanches " + german: "White Wings - Weiße Flügel " + italian: "White Wings - Ali Bianche " koreana: White Wings 하얀 날개 latam: White Wings - Alas Blancas schinese: White Wings 白色之翼 - spanish: 'White Wings - Alas Blancas ' + spanish: "White Wings - Alas Blancas " tchinese: White Wings 白色之翼 -'1185700': +"1185700": installDir: Arrog launch: - config: @@ -64492,42 +63657,42 @@ oslist: macos executable: Arrog.app type: default -'1185730': +"1185730": installDir: Lovely Hentai launch: - executable: LovelyHentai.exe type: none -'1185740': +"1185740": installDir: Mira launch: - config: oslist: windows executable: Mira.exe type: default -'1185780': +"1185780": installDir: Save The Forest launch: - config: oslist: windows executable: Forest Ranger.exe -'1185810': {} -'1185820': +"1185810": {} +"1185820": installDir: Hollow Island launch: - config: oslist: windows executable: Hollow_Island.exe type: default -'1185870': +"1185870": installDir: Skyland76 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Skyland76.exe type: default -'1185930': {} -'1185950': +"1185930": {} +"1185950": installDir: Wars of the Roses launch: - config: @@ -64538,37 +63703,37 @@ oslist: macos executable: warsoftheroses.app type: none -'1186030': +"1186030": installDir: Death Park launch: - config: oslist: windows executable: Death Park.exe type: none -'1186040': +"1186040": installDir: Worms Rumble launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Launch_Game.exe type: default - - arguments: '-multiplaybuildtype=dev_b' + - arguments: "-multiplaybuildtype=dev_b" config: betakey: kakehashi - osarch: '64' + osarch: "64" oslist: windows description: Worms Rumble LQA executable: Launch_Game.exe type: option1 -'1186080': +"1186080": installDir: The Adventures of Willow and Ash launch: - config: oslist: windows - executable: Test_Build2.0\\The Adventures of Willow and Ash.exe + executable: "Test_Build2.0\\\\The Adventures of Willow and Ash.exe" type: default -'1186160': +"1186160": installDir: All Day Dying launch: - config: @@ -64576,23 +63741,23 @@ executable: Celled.exe type: default nameLocalized: - english: 'All Day Dying: Redux Edition' -'1186170': + english: "All Day Dying: Redux Edition" +"1186170": installDir: Myriad TD launch: - config: oslist: windows executable: MyriadTD.exe type: default -'1186200': {} -'1186220': +"1186200": {} +"1186220": installDir: Wire Lips launch: - config: oslist: windows executable: Wire Lips.exe type: default -'1186260': +"1186260": installDir: BondageGirl launch: - config: @@ -64602,46 +63767,46 @@ nameLocalized: english: Bondage Girl schinese: 秘境缚姬 -'1186270': +"1186270": installDir: Nosferatu Lilinor launch: - config: oslist: windows executable: Lilinor.exe type: default -'1186280': +"1186280": installDir: Dodge If you Can! launch: - config: oslist: windows executable: Dodge If You Can.exe type: default -'1186290': +"1186290": installDir: Ballance The Return launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Ballance.exe type: default nameLocalized: schinese: 平衡球:深空归来 -'1186300': {} -'1186310': +"1186300": {} +"1186310": installDir: Mailbox launch: - config: oslist: windows executable: Mailbox.exe type: default -'1186320': +"1186320": installDir: Catch The Ball 3 launch: - config: oslist: windows executable: Catch the ball 3 Setup.exe type: default -'1186340': +"1186340": installDir: Action Ball 2 launch: - config: @@ -64649,15 +63814,15 @@ description: Launch executable: actionball.exe type: default -'1186400': +"1186400": installDir: West Sweety launch: - config: oslist: windows executable: West Sweety.exe type: default -'1186430': {} -'1186460': +"1186430": {} +"1186460": installDir: SongsOfWuxia launch: - config: @@ -64667,22 +63832,22 @@ nameLocalized: english: Songs Of Wuxia sc_schinese: 侠道游歌 -'1186470': {} -'1186510': +"1186470": {} +"1186510": installDir: Land of Ngoto launch: - config: oslist: windows executable: Land_of_Ngoto.exe type: default -'1186580': +"1186580": installDir: New York Mysteries The Outbreak launch: - config: oslist: windows executable: NewYorkMysteries_TheOutbreak.exe type: none -'1186600': +"1186600": installDir: MonsterDom launch: - config: @@ -64691,7 +63856,7 @@ type: default - config: oslist: linux - executable: ./MonsterDom.sh + executable: "./MonsterDom.sh" type: default - config: oslist: macos @@ -64702,7 +63867,7 @@ schinese: 异世界大屌救世物语 spanish: Domador de Chicas Monstruo Ninfómanas tchinese: 異世界大屌救世物語 -'1186630': +"1186630": installDir: 1971 Porject Helios launch: - config: @@ -64710,7 +63875,7 @@ description: Launch executable: 1971 Project Helios.exe type: default -'1186640': +"1186640": installDir: Pumpkin Jack launch: - config: @@ -64724,43 +63889,43 @@ japanese: Pumpkin Jack (パンプキン・ジャック) schinese: 南瓜杰克 tchinese: 南瓜杰克 -'1186650': +"1186650": installDir: MADELA launch: - config: oslist: windows executable: MADELA.exe type: none -'1186670': +"1186670": installDir: Fateless launch: - config: oslist: windows executable: Fateless.exe type: none -'1186680': +"1186680": installDir: Maximum Momentum launch: - config: oslist: windows executable: MaximumMomentum.exe type: default -'1186720': +"1186720": installDir: The Cruxis Sword launch: - config: oslist: windows executable: Game.exe type: default -'1186730': +"1186730": installDir: Terro Lunkka Adventures launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TERROLUNKKANEW.exe type: default -'1186740': +"1186740": installDir: Kyle is Famous launch: - config: @@ -64775,27 +63940,27 @@ oslist: linux executable: Kyle is Famous Linux/Kyle is Famous.x86_64 type: default -'1186760': +"1186760": installDir: Robot Boy launch: - - arguments: 'C:\\Users\\tardy\\Desktop\\sdk\\tools\\ContentBuilder\\content\\windows_content' + - arguments: "C:\\\\Users\\\\tardy\\\\Desktop\\\\sdk\\\\tools\\\\ContentBuilder\\\\content\\\\windows_content" config: oslist: windows executable: Robot Boy.exe type: default - - arguments: 'C:\\Users\\tardy\\Desktop\\sdk\\tools\\ContentBuilder\\content\\macos_content' + - arguments: "C:\\\\Users\\\\tardy\\\\Desktop\\\\sdk\\\\tools\\\\ContentBuilder\\\\content\\\\macos_content" config: oslist: macos - executable: Robot Boy MacOS.app\\Contents\\MacOS\\Robot Boy + executable: "Robot Boy MacOS.app\\\\Contents\\\\MacOS\\\\Robot Boy" type: default -'1186860': +"1186860": installDir: CounterrealsticSyndrome launch: - config: oslist: windows executable: Game.exe type: default -'1186880': +"1186880": installDir: Octofurry launch: - config: @@ -64804,14 +63969,14 @@ type: default - config: oslist: macos - executable: octofurry.app\\Contents\\MacOS\\octofurry + executable: "octofurry.app\\\\Contents\\\\MacOS\\\\octofurry" type: none -'1186940': +"1186940": installDir: Underneath launch: - - executable: win64\\Underneath.exe + - executable: "win64\\\\Underneath.exe" type: none -'1186960': +"1186960": installDir: Cowboys vs Hipsters launch: - config: @@ -64819,23 +63984,23 @@ executable: Cowboys vs Hipsters.app type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: Cowboys vs Hipsters.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Cowboys vs Hipsters.x86_64 type: default -'1187110': +"1187110": installDir: INVESTMENT HERO launch: - config: oslist: windows executable: Investment Hero.exe type: default -'1187130': +"1187130": installDir: Crimson Colosseum launch: - executable: Game.exe @@ -64844,14 +64009,14 @@ japanese: 赤首の闘技場 schinese: 赤环的少女:奴隶斗技场 tchinese: 赤環的少女:奴隸鬥技場 -'1187190': +"1187190": installDir: The Knight of the Crimson Tower launch: - config: oslist: windows executable: TheKnightoftheCrimsonTower.exe type: default -'1187250': +"1187250": installDir: Consumed Awakening launch: - config: @@ -64859,12 +64024,12 @@ executable: Consumed Awakening.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: ConsumedAwakening.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: ConsumedAwakening.x86_64 type: default @@ -64872,24 +64037,24 @@ oslist: macos executable: ConsumedAwakening.app type: none -'1187420': +"1187420": installDir: Hasfax launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Hasfax.exe type: default -'1187430': +"1187430": installDir: SpaceVibes launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: SpaceVibes\\SpacePit.exe + executable: "SpaceVibes\\\\SpacePit.exe" type: othervr workingdir: SpaceVibes -'1187490': +"1187490": installDir: Phoenix Tales launch: - config: @@ -64900,14 +64065,14 @@ oslist: windows executable: winsetup.exe type: config -'1187510': +"1187510": installDir: Rock Simulator launch: - config: oslist: windows executable: RockSimulator.exe type: none -'1187520': +"1187520": installDir: Realms of Darkness launch: - config: @@ -64916,20 +64081,20 @@ type: none - config: betakey: beta-test - osarch: '64' + osarch: "64" oslist: windows - description: 'Beta testing ' + description: "Beta testing " executable: ROD.exe type: default -'1187560': +"1187560": installDir: The Game We All Have To Play launch: - config: oslist: windows executable: The Game We All Have To Play.exe type: default -'1187590': {} -'1187620': +"1187590": {} +"1187620": installDir: Hentai Pazu launch: - config: @@ -64940,55 +64105,55 @@ oslist: macos executable: Hentai Pazu.app type: none -'1187670': +"1187670": installDir: 咚啪 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: HoloViews/DongPaSteam.exe type: vr - config: - osarch: '64' + osarch: "64" oslist: windows executable: HoloViews/DongPaSteam.exe type: default nameLocalized: english: Holo Views -'1187740': +"1187740": installDir: InfiniteBeat launch: - executable: InfiniteBeat.exe type: vr -'1187780': +"1187780": installDir: content launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: Displace v1.0.0\\WindowsNoEditor\\Displace.exe + executable: "Displace v1.0.0\\\\WindowsNoEditor\\\\Displace.exe" type: default -'1187790': +"1187790": installDir: FULLCHOKE launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: FULLCHOKE.exe type: vr - config: - osarch: '64' + osarch: "64" oslist: windows executable: FULLCHOKE.exe type: othervr -'1187830': - installDir: Incredible Dracula Witches' Curse +"1187830": + installDir: "Incredible Dracula Witches' Curse" launch: - config: oslist: windows executable: Incredible_Dracula_Witches_Curse.exe type: default -'1187840': +"1187840": installDir: Vesper Game launch: - config: @@ -65000,47 +64165,47 @@ oslist: windows executable: Vesper Demo.exe type: default -'1187850': +"1187850": installDir: Fairies vs Bugs launch: - config: oslist: windows executable: fvb.exe type: default -'1187900': +"1187900": installDir: Narwhar launch: - config: oslist: windows executable: narwhar.exe type: default -'1187910': +"1187910": installDir: Third Rule of Universe launch: - executable: nw.exe type: default -'1187920': +"1187920": installDir: Countrified launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Countrified.exe type: default -'1187940': +"1187940": installDir: Is It Wrong to Try to Pick Up Girls in a Dungeon Infinite Combate launch: - executable: danmachi.exe type: none -'1187950': +"1187950": installDir: Gaijin Charenji 1 Kiss or Kill launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: GaijinCharenji1KissOrKill_steam.exe type: default -'1188000': +"1188000": installDir: Pulstario launch: - config: @@ -65051,24 +64216,24 @@ oslist: linux executable: Pulstario type: default -'1188020': +"1188020": installDir: Sir Smedieval launch: - config: oslist: windows executable: Sir_Smedieval.exe type: default -'1188060': +"1188060": installDir: My hot beach vacation launch: - executable: Myhotbeachvacation.exe type: none -'1188070': +"1188070": installDir: BreadHead Adventure launch: - executable: BreadHead Adventure.exe type: none -'1188080': +"1188080": installDir: Cats are Liquid - A Better Place launch: - config: @@ -65083,99 +64248,99 @@ oslist: linux executable: CaL-ABP-Linux.x86_64 type: default -'1188100': +"1188100": installDir: Dragon Stone - Legendary Archer launch: - config: oslist: windows executable: DragonStone-LegendaryArcher.exe type: default -'1188140': +"1188140": installDir: Country Road VR launch: - config: oslist: windows executable: CountryRoadVR.exe type: vr -'1188190': {} -'1188200': {} -'1188240': {} -'1188250': +"1188190": {} +"1188200": {} +"1188240": {} +"1188250": installDir: GLOWCOMA launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: GLOWCOMA.exe type: default -'1188260': +"1188260": installDir: Creature Card Idle launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: nw.exe type: default - - arguments: ./ + - arguments: "./" config: - osarch: '64' + osarch: "64" oslist: linux executable: nw type: default - - arguments: '-a nwjs.app' + - arguments: "-a nwjs.app" config: oslist: macos executable: open type: default -'1188280': +"1188280": installDir: Coffee Rush launch: - config: oslist: windows executable: CoffeeRush.exe type: default -'1188290': +"1188290": installDir: Cover Your Eyes launch: - config: oslist: windows executable: Cover Your Eyes/Cover your eyes.exe type: default -'1188310': +"1188310": installDir: Mini Island launch: - executable: Mini Island.exe type: default -'1188400': {} -'1188420': {} -'1188430': - installDir: 'Deep, In the Forest' +"1188400": {} +"1188420": {} +"1188430": + installDir: "Deep, In the Forest" launch: - config: oslist: windows description: Launch - executable: 'Deep, In the Forest.exe' + executable: "Deep, In the Forest.exe" type: none -'1188460': +"1188460": nameLocalized: english: Gravity Escape tchinese: 重力逃脫 -'1188490': +"1188490": installDir: VainPlanet launch: - config: oslist: windows executable: VainPlanet.exe type: vr -'1188520': {} -'1188540': +"1188520": {} +"1188540": installDir: Apex Aim Trainer launch: - config: oslist: windows executable: ThirdPersonBP.exe type: default -'1188580': +"1188580": installDir: Classic Snake Adventures launch: - config: @@ -65184,14 +64349,14 @@ type: default - config: oslist: macos - executable: Classic Snake Adventures.app\\Contents\\MacOS\\Classic Snake Adventures + executable: "Classic Snake Adventures.app\\\\Contents\\\\MacOS\\\\Classic Snake Adventures" type: default - - arguments: '-force-opengl' + - arguments: "-force-opengl" config: oslist: linux executable: Classic Snake Adventures.x86_64 type: default -'1188590': +"1188590": installDir: The Clouds Travel Notes launch: - config: @@ -65199,23 +64364,23 @@ description: Launch executable: The Clouds Travel Notes.exe type: default -'1188650': {} -'1188660': +"1188650": {} +"1188660": installDir: World of relish launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: World of relish.exe type: none -'1188670': +"1188670": installDir: Castle Commander launch: - config: oslist: windows executable: CastleCommander.exe type: default -'1188680': +"1188680": installDir: The Political Machine 2020 launch: - config: @@ -65226,19 +64391,19 @@ oslist: windows executable: StardockLauncher.exe type: default -'1188690': +"1188690": installDir: Speed Masters ASD launch: - executable: speed_masters.exe type: none -'1188720': +"1188720": installDir: Drunken Wrestlers launch: - config: oslist: windows executable: DrunkenWrestlers.exe type: default -'1188760': +"1188760": installDir: JEF launch: - config: @@ -65246,7 +64411,7 @@ description: Launch executable: JEF.exe type: none -'1188800': +"1188800": installDir: In the Service of Mrs Claus launch: - config: @@ -65261,68 +64426,64 @@ oslist: linux executable: InTheServiceOfMrsClaus type: none -'1188850': {} -'1188870': {} -'1188930': +"1188850": {} +"1188870": {} +"1188930": installDir: Chrono Ark launch: - - description: '64Bit [Recommend]' - description_loc: - english: '64Bit [Recommend]' - executable: x64\\Master\\ChronoArk.exe + - description: "64Bit [Recommend]" + executable: "x64\\\\Master\\\\ChronoArk.exe" type: option1 - description: 32Bit - description_loc: - english: 32Bit - executable: x86\\Master\\ChronoArk.exe + executable: "x86\\\\Master\\\\ChronoArk.exe" type: option3 nameLocalized: koreana: 크로노 아크 -'1188950': {} -'1188970': +"1188950": {} +"1188970": installDir: Ether Loop launch: - config: oslist: windows executable: EtherLoop.exe type: default -'1188990': +"1188990": installDir: WREST launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: WREST.exe type: vr -'1189020': +"1189020": installDir: LOGA Unexpected Adventure launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: VARIABLES_TEST.exe type: default -'1189050': +"1189050": installDir: HotAndLovely launch: - config: oslist: windows executable: HotAndLovely.exe type: default -'1189060': +"1189060": installDir: The Floor Is Still Really Cheap Lava launch: - executable: The Floor Is Still Really Cheap Lava.exe type: default -'1189080': +"1189080": installDir: Squirrel Legacy launch: - - arguments: '--in-process-gpu to Arguments' + - arguments: "--in-process-gpu to Arguments" config: oslist: windows executable: Game.exe type: none -'1189090': +"1189090": installDir: Microscope Madness launch: - config: @@ -65333,9 +64494,9 @@ - config: oslist: macos description: Microscope Madness macOS Launcher - executable: MicroscopeMadness.app\\Contents\\MacOS\\MicroscopeMadness + executable: "MicroscopeMadness.app\\\\Contents\\\\MacOS\\\\MicroscopeMadness" type: default -'1189120': +"1189120": installDir: Posibility launch: - config: @@ -65343,120 +64504,118 @@ executable: Posibility.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Posibility.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Posibility.x86_64 type: default -'1189210': +"1189210": installDir: Yuna and other troubles launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Yuna.exe type: default -'1189220': {} -'1189230': +"1189220": {} +"1189230": installDir: Door in the Woods launch: - executable: Door in the Woods.exe type: none -'1189240': {} -'1189250': +"1189240": {} +"1189250": installDir: SuperSpaceShooterArena launch: - config: oslist: windows executable: Super Space Shooter Arena.exe type: default -'1189350': +"1189350": installDir: Town Defence launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TowerDefence.exe type: none -'1189380': +"1189380": installDir: Beat Or Die The MiniGames launch: - - arguments: '-windowed' + - arguments: "-windowed" config: oslist: windows executable: Beat Or Die The MiniGames.exe type: default -'1189430': +"1189430": installDir: Interlude launch: - config: oslist: windows executable: Interlude.exe type: default -'1189440': +"1189440": installDir: VenusBlood FRONTIER launch: - executable: VBFI.exe type: default -'1189460': +"1189460": installDir: ClickCells Office Lady launch: - config: oslist: windows executable: ccol.exe type: default -'1189470': +"1189470": installDir: Fox-Trot Over Run launch: - config: - osarch: '32' + osarch: "32" oslist: windows - executable: Fox-Trot Over Run_Windows_32\\Fox-Trot Over Run.exe + executable: "Fox-Trot Over Run_Windows_32\\\\Fox-Trot Over Run.exe" type: default - config: - osarch: '64' + osarch: "64" oslist: windows - executable: Fox-Trot Over Run_Windows_64\\Fox-Trot Over Run.exe + executable: "Fox-Trot Over Run_Windows_64\\\\Fox-Trot Over Run.exe" type: default -'1189490': +"1189490": installDir: 觅长生 launch: - config: oslist: windows description: 无 - description_loc: - english: 无 executable: 觅长生.exe type: option1 -'1189520': +"1189520": installDir: Street Hoop launch: - config: oslist: windows executable: StreetHoop.exe type: none -'1189590': +"1189590": installDir: DEM_Stage_Zero launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: DEM_Stage_Zero.exe type: vr -'1189600': +"1189600": installDir: 漫步者 The Walker launch: - executable: Game.exe type: default -'1189630': +"1189630": installDir: PathOfWuxia launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: PathOfWuxia.exe type: default @@ -65464,7 +64623,7 @@ english: Path Of Wuxia schinese: 侠之道(PathOfWuxia) tchinese: 俠之道(PathOfWuxia) -'1189680': +"1189680": installDir: Degraman Act I. Vincent & Cassel launch: - config: @@ -65479,16 +64638,16 @@ oslist: linux executable: D_Act_I.sh type: default -'1189720': {} -'1189730': +"1189720": {} +"1189730": installDir: Tales of Tomorrow Experiment launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ToT.exe type: default -'1189800': +"1189800": installDir: Bleeding Edge launch: - config: @@ -65513,100 +64672,92 @@ description: Development version executable: MobladeClient.exe type: option1 -'1189880': {} -'1189920': {} -'1189930': {} -'1189950': {} -'1189970': +"1189880": {} +"1189920": {} +"1189930": {} +"1189950": {} +"1189970": installDir: Runoveryou launch: - config: oslist: windows executable: runoveryou.exe type: none -'11900': +"11900": installDir: Lumines launch: - executable: Lumines.exe -'1190000': +"1190000": installDir: Car Mechanic Simulator 2021 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Car Mechanic Simulator 2021.exe type: none - arguments: editor description: Launch Car Editor - description_loc: - english: Launch Car Editor executable: Car Mechanic Simulator 2021.exe type: none - arguments: resetSettings config: - osarch: '64' + osarch: "64" oslist: windows description: Reset settings - description_loc: - english: Reset settings executable: Car Mechanic Simulator 2021.exe type: none - arguments: upload config: - osarch: '64' + osarch: "64" oslist: windows description: Workshop Uploader - description_loc: - english: Workshop Uploader executable: Car Mechanic Simulator 2021.exe type: none - arguments: safeMode config: - osarch: '64' + osarch: "64" oslist: windows description: Safe Mode (game will run without mods) - description_loc: - english: Safe Mode (game will run without mods) executable: Car Mechanic Simulator 2021.exe type: none -'1190060': +"1190060": installDir: Deathbound launch: - - arguments: '-windowed' + - arguments: "-windowed" config: - betakey: '0.98' - osarch: '64' + betakey: "0.98" + osarch: "64" oslist: windows description: Beta Build executable: Deathbound.exe type: default - config: - betakey: '0.98' + betakey: "0.98" oslist: macos executable: Deathbound.app/Contents/MacOS/Deathbound type: default -'1190110': +"1190110": installDir: HENTAI SNIPER Middle East launch: - config: oslist: windows executable: HENTAI SNIPER Middle East.exe type: default -'1190120': +"1190120": installDir: Good doktor launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Gooddoktor.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows description: old version executable: nw.exe type: default -'1190130': +"1190130": installDir: Araha launch: - config: @@ -65614,12 +64765,12 @@ executable: Araha.exe type: default nameLocalized: - koreana: '아라하 : 이은도의 저주' -'1190150': + koreana: "아라하 : 이은도의 저주" +"1190150": installDir: Paint Warfare launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Windows/Paint Warfare.exe type: none @@ -65628,11 +64779,11 @@ executable: macOS/Paint Warfare.app type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: Linux/Paint Warfare.x86_64 type: none -'1190160': +"1190160": installDir: LIT Bend the Light launch: - config: @@ -65647,11 +64798,11 @@ oslist: linux executable: LIT Build Linux.x86_64 type: default -'1190170': +"1190170": installDir: OlliOlli World launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: OlliOlli World.exe type: none @@ -65661,33 +64812,33 @@ koreana: 올리올리 월드 schinese: 奥力奥力世界 tchinese: 歐利歐利世界 -'1190180': +"1190180": installDir: Arrow launch: - config: oslist: windows executable: ShipFight.exe type: default -'1190190': +"1190190": installDir: Curse of the Lost Cause launch: - config: oslist: windows executable: COLC.exe type: default -'1190230': +"1190230": installDir: Robber Horror launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: robberhorror.exe type: default -'1190270': +"1190270": installDir: Long Count launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Long Count.exe type: default @@ -65696,11 +64847,11 @@ executable: Long Count.app/Contents/MacOS/Long Count type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Long Count type: default -'1190310': +"1190310": installDir: Dancing Arrow launch: - config: @@ -65708,58 +64859,54 @@ executable: DancingArrow.exe type: vr nameLocalized: - english: 'Dancing Arrow : Beat Smash' - koreana: '댄싱 에로우 : 비트스매시' -'1190320': + english: "Dancing Arrow : Beat Smash" + koreana: "댄싱 에로우 : 비트스매시" +"1190320": installDir: FOOD FACTORY VR launch: - config: oslist: windows executable: FoodFactoryVR.exe type: vr -'1190340': +"1190340": installDir: SUPER PEOPLE launch: - - arguments: 103 /BravoHotelClient.exe -ApiPhase=\"prod\" -ServicePlatform=GeeGeeWithSteam -IgnoreCatalogue + - arguments: "103 /BravoHotelClient.exe -ApiPhase=\\\"prod\\\" -ServicePlatform=GeeGeeWithSteam -IgnoreCatalogue" config: - osarch: '64' + osarch: "64" oslist: windows description: 서비스 - description_loc: - english: 서비스 executable: geegeerun.exe type: default - - arguments: 103 /BravoHotelClient.exe -ApiPhase=\"review\" -ServicePlatform=GeeGeeWithSteam -IgnoreCatalogue + - arguments: "103 /BravoHotelClient.exe -ApiPhase=\\\"review\\\" -ServicePlatform=GeeGeeWithSteam -IgnoreCatalogue" config: betakey: betabranch2 - osarch: '64' + osarch: "64" oslist: windows description: 베타 브렌치 시작옵션 - description_loc: - english: 베타 브렌치 시작옵션 executable: geegeerun.exe type: option1 nameLocalized: schinese: 超击突破 -'1190350': +"1190350": nameLocalized: koreana: 4차 슈퍼 산업 혁명 대전 -'1190370': +"1190370": installDir: Tank Hurricane launch: - executable: Tank Hurricane.exe type: none -'1190380': +"1190380": installDir: Race Race Racer launch: - config: oslist: macos - executable: macbuild.app\\Contents\\MacOS\\game + executable: "macbuild.app\\\\Contents\\\\MacOS\\\\game" type: default - - arguments: '-windowed' + - arguments: "-windowed" config: oslist: windows - executable: Windows x86\\game.exe + executable: "Windows x86\\\\game.exe" type: default - config: oslist: linux @@ -65767,109 +64914,98 @@ type: default - config: oslist: windows - executable: Windows x86-64\\game.exe + executable: "Windows x86-64\\\\game.exe" type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: Linux.x86_64 type: default -'1190400': +"1190400": installDir: The Wonderful 101 Remastered launch: - config: oslist: windows executable: exe/TheWonderful101.exe type: default -'1190410': +"1190410": installDir: Crazy city launch: - config: oslist: windows executable: game.exe type: default -'1190460': +"1190460": installDir: Death Stranding launch: - - arguments: '-package' + - arguments: "-package" config: - betakey: >- - qa-rtdbg,compat-wo-denuvo,denuvo-rtdbg,denuvo_protected,firewithoutsmoke,old-builds,preview,working-branch,dsq-qa-rtdbg,dsq-preview - osarch: '64' + betakey: "qa-rtdbg,compat-wo-denuvo,denuvo-rtdbg,denuvo_protected,firewithoutsmoke,old-builds,preview,working-branch,dsq-qa-rtdbg,dsq-preview" + osarch: "64" oslist: windows description: RuntimeDebug build - description_loc: - english: RuntimeDebug build executable: ds.rtdbg.exe type: option1 - config: - betakey: >- - qa-rtdbg,compat-wo-denuvo,denuvo-rtdbg,denuvo_protected,firewithoutsmoke,old-builds,preview,working-branch,dsq-qa-rtdbg,dsq-preview - osarch: '64' + betakey: "qa-rtdbg,compat-wo-denuvo,denuvo-rtdbg,denuvo_protected,firewithoutsmoke,old-builds,preview,working-branch,dsq-qa-rtdbg,dsq-preview" + osarch: "64" oslist: windows description: Submission build - description_loc: - english: Submission build executable: ds.exe type: option1 - - arguments: '-package' + - arguments: "-package" config: - betakey: >- - qa-rtdbg,compat-wo-denuvo,denuvo-rtdbg,denuvo_protected,firewithoutsmoke,old-builds,preview,working-branch,dsq-qa-rtdbg,dsq-preview - osarch: '64' + betakey: "qa-rtdbg,compat-wo-denuvo,denuvo-rtdbg,denuvo_protected,firewithoutsmoke,old-builds,preview,working-branch,dsq-qa-rtdbg,dsq-preview" + osarch: "64" oslist: windows description: ReleaseSym build - description_loc: - english: ReleaseSym build executable: ds.ReleaseSym.exe type: option1 - - arguments: '-package' + - arguments: "-package" config: - betakey: 'qa-rtdbg,dsq-qa-rtdbg,dsq-preview' - osarch: '64' + betakey: "qa-rtdbg,dsq-qa-rtdbg,dsq-preview" + osarch: "64" oslist: windows description: Steam Submission with MiSecure - description_loc: - english: Steam Submission with MiSecure executable: NIP.Win64.Submission.DX12.Steam.MiSecure.exe type: option1 - config: - osarch: '64' + osarch: "64" oslist: windows executable: ds.exe type: default -'1190480': +"1190480": installDir: Heebie Jeebies The Roller Coaster launch: - config: oslist: windows executable: Heebie Jeebies The Roller Coaster.exe type: vr -'1190530': +"1190530": installDir: Glyph launch: - config: oslist: windows executable: Glyph.exe type: vr -'1190560': - installDir: Scriptum VR The Neighbor's House Escape Room +"1190560": + installDir: "Scriptum VR The Neighbor's House Escape Room" launch: - config: oslist: windows executable: NeighborEscapeRoom.exe type: vr -'1190590': +"1190590": installDir: Ice Cream Fantasy launch: - executable: Puzzle.exe type: none -'1190620': +"1190620": installDir: Defence War launch: - executable: DefenceWar.exe type: default -'1190640': +"1190640": installDir: Memory Match Saga launch: - config: @@ -65952,16 +65088,16 @@ description: Memory Match Saga - Expansion Pack 15 executable: Memory Match Saga - Expansion Pack 15.exe type: option1 -'1190690': +"1190690": installDir: IOX launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: IOX.exe type: default -'1190720': {} -'1190760': +"1190720": {} +"1190760": installDir: Tales of the Deck launch: - config: @@ -65970,69 +65106,69 @@ type: default - executable: TotD/Tales of the Deck.exe type: none -'1190780': +"1190780": installDir: DooM in the Dark 2 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: DooM in the Dark 2.exe type: default -'1190810': +"1190810": installDir: Ghetto Conspiracy launch: - config: oslist: windows executable: Ghetto Conspiracy.exe type: default -'1190840': +"1190840": installDir: Boomer Remover launch: - config: oslist: windows executable: OkBoomer.exe type: default -'1190910': +"1190910": installDir: DefendThem launch: - config: oslist: windows executable: DefendThem.exe type: default -'1190930': +"1190930": installDir: ScribbleDude launch: - config: oslist: windows executable: ScribbleDude.exe type: default -'1190970': +"1190970": nameLocalized: japanese: ハウスフリッパー2 koreana: 하우스 플리퍼 2 russian: Хаус Флиппер 2 schinese: 房产达人 2 tchinese: 房產達人2 -'1190980': +"1190980": installDir: HoardingSimulator launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: HoardingSimulator.exe type: default -'1190990': +"1190990": installDir: Colormeleons launch: - executable: CM.exe type: none -'1191000': {} -'1191070': +"1191000": {} +"1191070": installDir: Yuki Onna 雪女 launch: - executable: YukiOnna.exe type: none -'1191120': +"1191120": installDir: Growing Up launch: - config: @@ -66043,22 +65179,22 @@ oslist: macos executable: Growing Up.app type: none -'1191190': +"1191190": installDir: War Robots Planet Defender launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: WarRobots.exe type: default -'1191210': +"1191210": installDir: Seek Girl Ⅲ launch: - config: oslist: windows executable: SeekGirlThree.exe type: default -'1191260': +"1191260": installDir: Touken Ranbu Warriors launch: - executable: Touken Ranbu Warriors.exe @@ -66068,58 +65204,58 @@ japanese: 刀剣乱舞無双 schinese: 刀剑乱舞无双 tchinese: 刀劍亂舞無雙 -'1191270': +"1191270": installDir: Arzt Simulator launch: - config: oslist: windows executable: arzt.exe type: default -'1191330': +"1191330": installDir: Inferna launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Inferna.exe type: default -'1191390': +"1191390": nameLocalized: english: strike mole schinese: 疯狂砸地鼠 -'1191400': {} -'1191420': +"1191400": {} +"1191420": installDir: Fake Lay launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: fakelay.exe type: none - config: oslist: macos executable: Fakelay.app -'1191430': +"1191430": installDir: Help The Minotaur launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: HelpTheMinotaur.exe type: default -'1191450': +"1191450": installDir: Plasmoid launch: - config: oslist: windows executable: plasmoid.exe type: default -'1191510': +"1191510": installDir: PixHunter launch: - executable: PixHunter.exe type: none -'1191540': +"1191540": installDir: Streamer Shall Not Pass! launch: - config: @@ -66128,78 +65264,78 @@ type: none - config: oslist: linux - executable: Streamer Shall Not Pass.linux\\Streamer Shall Not Pass.x86_64 + executable: "Streamer Shall Not Pass.linux\\\\Streamer Shall Not Pass.x86_64" type: none - config: oslist: macos - executable: Streamer Shall Not Pass.app\\Contents\\MacOS\\Streamer Shall Not Pass + executable: "Streamer Shall Not Pass.app\\\\Contents\\\\MacOS\\\\Streamer Shall Not Pass" type: none -'1191550': - installDir: Fifo's Night +"1191550": + installDir: "Fifo's Night" launch: - config: oslist: windows - executable: Fifo's Night.exe + executable: "Fifo's Night.exe" type: none -'1191570': +"1191570": installDir: Hero Soul I Want to be a Hero! launch: - config: oslist: windows executable: Hero_Soul_Game.exe type: default -'1191580': +"1191580": installDir: Nexomon launch: - config: oslist: macos - executable: nexomon.app\\Contents\\MacOS\\Nexomon + executable: "nexomon.app\\\\Contents\\\\MacOS\\\\Nexomon" type: default - config: oslist: windows executable: Nexomon.exe type: default -'1191590': +"1191590": installDir: End of War 1945 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: EndofWar_1945.exe type: default -'1191620': +"1191620": installDir: Spidersaurs launch: - executable: Final-DX11/Spidersaurs.exe -'1191630': +"1191630": installDir: Shantae and the Seven Sirens launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: executable\\ShantaeSiren.exe + executable: "executable\\\\ShantaeSiren.exe" type: none -'1191650': +"1191650": installDir: Time Travel Trainer launch: - config: oslist: windows executable: ttt_windows.exe type: default -'1191660': {} -'1191680': +"1191660": {} +"1191680": installDir: Dice&Fighter launch: - executable: Game.exe type: default -'1191700': +"1191700": installDir: El Culto edición completa launch: - config: oslist: windows - executable: El Culto\\Game.exe + executable: "El Culto\\\\Game.exe" type: default -'1191790': +"1191790": installDir: sexualprowess launch: - config: @@ -66210,50 +65346,50 @@ japanese: セックスの強さですべてが決まる世界になったので、チートでハーレムつくります 第1話 koreana: 섹스의 강렬함으로 모든 것이 결정되는 세계가 되었기에 치트로 할렘을 만든다 제1화 tchinese: 世間的一切都是由性交能力的強弱決定的,通過作弊創造屬於你的後宮 第1集 -'1191840': +"1191840": installDir: Legend monster launch: - executable: win.exe type: none -'1191870': +"1191870": installDir: Goblin Times launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Goblin_Times.exe type: default nameLocalized: schinese: 哥布林时代 -'1191900': +"1191900": installDir: SayNo!More launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SNM.exe type: default - config: oslist: macos - executable: MacOS\\SNM.app\\Contents\\MacOS\\SayNoMore + executable: "MacOS\\\\SNM.app\\\\Contents\\\\MacOS\\\\SayNoMore" type: default -'1191930': +"1191930": installDir: MCAS Simulation launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: McasSim.exe type: default - config: oslist: macos - executable: McasSim.app\\Contents\\MacOS\\McasSim + executable: "McasSim.app\\\\Contents\\\\MacOS\\\\McasSim" type: default -'1191940': +"1191940": installDir: Deathtrap Dungeon The Interactive Video Adventure launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Deathtrap Dungeon.exe type: default @@ -66261,8 +65397,8 @@ oslist: macos executable: Deathtrap Dungeon.app type: default -'1191960': {} -'1192010': +"1191960": {} +"1192010": installDir: OpenCountry launch: - executable: OutdoorAdventures/Binaries/Win64/OutdoorAdventures.exe @@ -66272,51 +65408,51 @@ koreana: 오픈 컨트리 Open Country schinese: 《辽阔旷野》Open Country tchinese: 遼闊荒野 Open Country -'1192060': +"1192060": installDir: Virus L launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: VirusL.exe type: vr -'1192070': +"1192070": installDir: TriangleStorm launch: - config: oslist: windows - executable: TriangleStorm\\TriangleStorm.exe + executable: "TriangleStorm\\\\TriangleStorm.exe" type: default -'1192260': - installDir: Labyrinths of the World The Wild Side Collector's Edition +"1192260": + installDir: "Labyrinths of the World The Wild Side Collector's Edition" launch: - config: oslist: windows executable: LabyrinthsOfTheWorld_TheWildSide_CE.exe type: default -'1192270': - installDir: Royal Detective The Last Charm Collector's Edition +"1192270": + installDir: "Royal Detective The Last Charm Collector's Edition" launch: - config: oslist: windows executable: RoyalDetective_TheLastCharm_CE.exe type: default -'1192310': +"1192310": installDir: Kawaii girls puzzle launch: - config: oslist: windows executable: nw.exe type: none -'1192380': +"1192380": installDir: TotallyBaseball launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Totally Baseball.exe type: vr -'1192410': +"1192410": installDir: window contetn launch: - config: @@ -66324,21 +65460,21 @@ executable: Roomout1053.exe type: vr nameLocalized: - koreana: 방탈출 '1053' -'1192440': + koreana: "방탈출 '1053'" +"1192440": installDir: The Monster Breeder launch: - executable: The Monster Breeder.exe type: default -'1192500': +"1192500": installDir: GraFi Christmas launch: - config: oslist: windows executable: GraFi Christmas.exe type: default -'1192540': {} -'1192580': +"1192540": {} +"1192580": installDir: Nyanco Dream launch: - executable: Game.exe @@ -66347,14 +65483,14 @@ japanese: 東方夢猫伝 schinese: 东方梦猫传 tchinese: 東方梦猫傳 -'1192610': +"1192610": installDir: HENTAI REDEMPTION launch: - config: oslist: windows executable: Hentai Redemption.exe type: default -'1192640': +"1192640": installDir: Hentai Mosaique Neko Waifus launch: - config: @@ -66365,12 +65501,12 @@ oslist: linux executable: Hentai Mosaique Neko Waifus.x86_64 type: none -'1192700': +"1192700": installDir: Void Eclipse launch: - executable: Stellar.exe type: default -'1192730': +"1192730": installDir: HENTAI SHERIFF launch: - config: @@ -66381,49 +65517,49 @@ oslist: linux executable: HENTAI SHERIFF.x86_64 type: default -'1192740': - installDir: Woman's body For adults 2 +"1192740": + installDir: "Woman's body For adults 2" launch: - config: oslist: windows - executable: Woman's body - For adults 2.exe + executable: "Woman's body - For adults 2.exe" type: default -'1192750': {} -'1192840': +"1192750": {} +"1192840": installDir: The Shenanigans of Cherry and Trix launch: - executable: Game.exe type: none -'1192870': +"1192870": installDir: Gay Guys launch: - config: oslist: windows executable: GayGuys.exe type: default -'1192880': +"1192880": installDir: Nostalgiarian launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows description: Launch executable: Nostalgiarian.exe type: default -'1192890': +"1192890": installDir: Shoothem launch: - executable: Shoothem.exe type: none -'1192900': +"1192900": installDir: Iron Rebellion Beta launch: - config: oslist: windows executable: Iron Rebellion.exe type: vr -'1192910': - installDir: ' Food Girls:Civil War' +"1192910": + installDir: " Food Girls:Civil War" launch: - config: oslist: windows @@ -66433,26 +65569,26 @@ oslist: macos executable: Eatery2.app type: none -'1192940': +"1192940": installDir: Monkey GO Happy launch: - config: oslist: windows executable: MonkeyGOHappySteam.exe type: default -'1192950': +"1192950": installDir: qiqiang launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: QiQiang.exe type: none nameLocalized: english: Qi Qiang schinese: 砌墙 -'1192960': {} -'1193040': +"1192960": {} +"1193040": installDir: Eternal Battlefield launch: - config: @@ -66461,29 +65597,29 @@ type: none nameLocalized: schinese: 永恒战场 -'1193070': +"1193070": installDir: Zom Nom launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ZomNom.exe type: default -'1193080': {} -'1193090': +"1193080": {} +"1193090": installDir: Bus World launch: - executable: Bus World.exe type: none -'1193100': +"1193100": installDir: Withstand launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: HoldoutGame.exe type: default -'1193110': +"1193110": installDir: Love love demon ji-恋恋妖姬 launch: - config: @@ -66494,29 +65630,29 @@ japanese: 愛の妖姬 russian: Любовница schinese: 恋恋妖姬 -'1193120': +"1193120": installDir: The Battles of Spwak 3 launch: - config: oslist: windows executable: Game.exe type: default -'1193160': +"1193160": installDir: Bomber Fox launch: - executable: Bomber Fox.exe type: none -'1193200': +"1193200": installDir: K37-D launch: - config: oslist: windows executable: K37-D.exe type: none -'1193280': +"1193280": installDir: Reverse Fantasy Legend 2 逆袭幻想传2 launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows executable: Game.exe @@ -66524,8 +65660,8 @@ nameLocalized: english: Reverse Fantasy Legend 2 schinese: 逆袭幻想传2 -'1193290': {} -'1193330': +"1193290": {} +"1193330": installDir: Together - A Wish No One Remembers launch: - config: @@ -66540,7 +65676,7 @@ oslist: macos executable: AWishNoOneRemembers.app type: none -'1193340': +"1193340": installDir: Zelter launch: - config: @@ -66550,28 +65686,28 @@ nameLocalized: schinese: Zelter / 尸外桃源 tchinese: Zelter / 尸外桃源 -'1193350': +"1193350": installDir: 答题英雄——生物格斗 launch: - - executable: Bfight\\Play.exe + - executable: "Bfight\\\\Play.exe" type: none -'1193380': +"1193380": installDir: The Visitors launch: - executable: The Visitors 2.exe type: default nameLocalized: english: The Visitors -'1193420': +"1193420": installDir: The DisUnited States Of America launch: - config: - osarch: '32' + osarch: "32" oslist: linux executable: The Dis-United States Of America.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: The Dis-United States Of America.x86_64 type: default @@ -66579,18 +65715,18 @@ oslist: windows executable: The Dis-United States Of America.exe type: default -'1193450': +"1193450": installDir: Stripper Anya Christmas Special launch: - config: oslist: windows executable: Stripper Anya XMAS.exe type: default -'1193460': +"1193460": installDir: Bunny Sudoku launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: WindowsNoEditor/BunnySudoku.exe type: default @@ -66598,70 +65734,70 @@ oslist: linux executable: LinuxNoEditor/BunnySudoku.sh type: default -'1193470': {} -'1193520': +"1193470": {} +"1193520": installDir: Space Climber launch: - executable: spaceclimber.exe type: none -'1193530': +"1193530": installDir: Black Smith launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows executable: black_smith.exe type: default -'1193550': +"1193550": installDir: Ruthless Conquest launch: - executable: RuthlessConquest.exe type: default -'1193560': +"1193560": installDir: Roast Party launch: - config: oslist: windows executable: RoastParty.exe type: default -'1193570': +"1193570": installDir: Drawkanoid Review Breaker launch: - config: oslist: windows executable: Drawkanoid_ Review Breaker.exe type: default -'1193590': +"1193590": installDir: Abomi Nation launch: - config: oslist: windows executable: Abomi Nation.exe type: default -'1193600': +"1193600": installDir: Meandering Fiend launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows executable: MeanderingFiend.exe type: none -'1193620': {} -'1193660': +"1193620": {} +"1193660": installDir: Jack-O-Lantern Covers of Darkness launch: - executable: JOL-Cover Of Darkness.exe type: none -'1193680': +"1193680": installDir: Alien Invasion 3D part 2 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: AlienInvasion3dP2.exe type: default -'1193700': {} -'1193760': +"1193700": {} +"1193760": installDir: WarriOrbPrologue launch: - config: @@ -66672,21 +65808,21 @@ oslist: linux executable: Warriorb.sh type: default -'1193780': +"1193780": installDir: Tower Climb launch: - config: oslist: windows executable: Tower Climb.exe type: default -'1193900': +"1193900": installDir: IslandMarauder_exe launch: - config: oslist: windows executable: MArauder.exe type: default -'1193930': +"1193930": installDir: Ping Pong Space launch: - config: @@ -66695,28 +65831,28 @@ type: default - config: oslist: macos - executable: Ping Pong Space.app\\Contents\\MacOS\\Ping Pong Space + executable: "Ping Pong Space.app\\\\Contents\\\\MacOS\\\\Ping Pong Space" type: default -'1193950': +"1193950": installDir: Dashbot Ninja launch: - config: oslist: windows executable: Dashbot Ninja.exe type: none -'1194100': +"1194100": installDir: MusicalAimTrainer launch: - config: oslist: windows executable: MusicalAimTrainer.exe type: none -'1194140': +"1194140": installDir: Blind Justice launch: - executable: JudgeGame.exe type: none -'1194160': +"1194160": installDir: One-Eyed Lee and the Dinner Party launch: - config: @@ -66727,47 +65863,47 @@ oslist: linux executable: One-EyedLeeandtheDinnerParty.sh type: default -'1194170': +"1194170": installDir: Foe Frenzy launch: - - arguments: '--requireSteam' + - arguments: "--requireSteam" config: oslist: windows executable: FoeFrenzy.exe type: default - - arguments: '--requireSteam' + - arguments: "--requireSteam" config: oslist: macos executable: FoeFrenzy type: default - - arguments: '--requireSteam' + - arguments: "--requireSteam" config: oslist: linux executable: FoeFrenzy type: default -'1194190': {} -'1194200': {} -'1194220': +"1194190": {} +"1194200": {} +"1194220": installDir: Zombie Tag Royale launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Zombie Tag Royale.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: Zombie Tag Royale.exe type: default -'1194250': +"1194250": installDir: Screaming Chicken Ultimate Showdown launch: - executable: Screaming Chicken Ultimate Showdown.exe type: none nameLocalized: schinese: 炸鸡大作战 -'1194330': +"1194330": installDir: Drone Combat launch: - config: @@ -66778,22 +65914,22 @@ oslist: macos executable: Drone_Combat.app type: default -'1194380': +"1194380": installDir: Volleyball Fever Flat launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Volleyball Fever Flat.exe type: default -'1194390': +"1194390": installDir: The Land of Crows launch: - config: oslist: windows executable: TheLandOfCrows.exe type: default -'1194520': +"1194520": installDir: Terra Incognita launch: - config: @@ -66832,103 +65968,103 @@ executable: Utopia-Windo/Utopia-rpg.exe type: option1 workingdir: Utopia-Windo -'1194560': +"1194560": installDir: 单身狗的最后机会 launch: - executable: game.exe type: none -'1194590': +"1194590": installDir: Star Dynasties launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: StarDynasties.exe type: default -'1194600': +"1194600": installDir: Bronze Hoof launch: - config: oslist: windows executable: Bronze Hoof.exe type: none -'1194610': +"1194610": installDir: Knights of the Temple - Infernal Crusade launch: - config: oslist: windows executable: Templar.exe type: default -'1194620': +"1194620": installDir: 33 Rounds launch: - executable: 33 Rounds.exe type: none -'1194630': +"1194630": installDir: The Dark Pictures Anthology - Little Hope launch: - config: oslist: windows executable: LittleHope.exe type: default -'1194650': +"1194650": installDir: ReFrame launch: - config: betakey: EarlyAccess_Oculus - osarch: '64' + osarch: "64" oslist: windows executable: ReFrame.exe type: othervr -'1194680': +"1194680": installDir: ZooKeeperSimulator launch: - executable: ZooKeeperSimulator.exe type: none -'1194700': +"1194700": installDir: House Flipper VR launch: - config: oslist: windows executable: HouseFlipper VR.exe type: vr -'1194710': {} -'1194750': - installDir: 'Neko Ghost, Jump!' +"1194710": {} +"1194750": + installDir: "Neko Ghost, Jump!" launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: NekoGhostJump.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: NekoGhostJump.sh type: default -'1194770': +"1194770": installDir: SanctumBreachReleaseVersion launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: WindowsNoEditor\\SanctumBreachBeta.exe + executable: "WindowsNoEditor\\\\SanctumBreachBeta.exe" type: default -'1194800': {} -'1194830': +"1194800": {} +"1194830": installDir: Master Bladesmith launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: MasterBladesmith.exe type: vr - config: - osarch: '64' + osarch: "64" oslist: windows executable: MasterBladesmith.exe type: othervr -'1194840': +"1194840": installDir: Frog Fractions Game of the Decade Edition launch: - config: @@ -66939,25 +66075,25 @@ oslist: macos executable: FFGOTDE.app type: default -'1194870': - installDir: 'Winter Worm, Summer Grass' +"1194870": + installDir: "Winter Worm, Summer Grass" launch: - config: oslist: windows - executable: 'Winter Worm, Summer Grass.exe' + executable: "Winter Worm, Summer Grass.exe" type: default - config: oslist: macos - executable: 'Winter Worm, Summer Grass.app' + executable: "Winter Worm, Summer Grass.app" type: none -'1194890': +"1194890": installDir: Star of Lemutia Reborn launch: - config: oslist: windows executable: Star_Of_Lemutia_R.exe type: default -'1194930': +"1194930": installDir: Blackthorn Arena launch: - config: @@ -66974,22 +66110,22 @@ schinese: 黑荆棘角斗场 spanish: Arena de Blackthorn tchinese: 黑荊棘角鬥場 -'1194940': +"1194940": installDir: Tower of Shades launch: - config: oslist: windows executable: Tower of Shades.exe type: default -'1194970': {} -'1195020': +"1194970": {} +"1195020": installDir: Guardians of the Ashes launch: - config: oslist: windows executable: GotA.exe type: default -'1195070': +"1195070": installDir: Ninja JaJaMaru The Great Yokai Battle launch: - config: @@ -66998,19 +66134,19 @@ type: default nameLocalized: japanese: じゃじゃ丸の妖怪大決戦+地獄 -'1195080': {} -'1195090': +"1195080": {} +"1195090": installDir: Hippoboar Rancher launch: - config: oslist: windows executable: Game.exe type: default -'1195140': +"1195140": installDir: URG launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: URG.exe type: default @@ -67022,21 +66158,21 @@ oslist: linux executable: URG.x86_64 type: none -'1195170': +"1195170": installDir: Rebound Ball launch: - config: oslist: windows executable: Rebound Ball.exe type: default -'1195230': +"1195230": installDir: Darkness and Flame Enemy in Reflection launch: - config: oslist: windows executable: DarknessAndFlame_EnemyInReflection.exe type: none -'1195290': +"1195290": installDir: Moncage launch: - config: @@ -67049,11 +66185,11 @@ koreana: 몬케이지 Moncage sc_schinese: 笼中窥梦 tchinese: 籠中窺夢 Moncage -'1195320': +"1195320": installDir: Mokoko launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Mokoko.exe type: default @@ -67062,7 +66198,7 @@ executable: Mokoko.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Mokoko.x86_64 type: default @@ -67072,47 +66208,47 @@ russian: Мококо schinese: 莫科科 tchinese: 莫科科 -'1195340': +"1195340": installDir: Hermes Rescue Mission launch: - config: oslist: windows executable: Hermes_Rescue_Mission.exe type: default -'1195350': +"1195350": installDir: Your little story Winter launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows executable: nw.exe type: default -'1195430': +"1195430": installDir: Fight High launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: FightHigh.exe type: default -'1195440': {} -'1195450': +"1195440": {} +"1195450": installDir: HABITKING RPG launch: - config: oslist: windows executable: Game.exe type: default -'1195460': +"1195460": installDir: Last Year launch: - - arguments: '-dx11' + - arguments: "-dx11" config: - osarch: '64' + osarch: "64" oslist: windows executable: LastYear.exe type: default -'1195530': +"1195530": installDir: tawashi launch: - config: @@ -67121,216 +66257,210 @@ type: default nameLocalized: japanese: たわし -'1195550': +"1195550": installDir: Gamedev simulator launch: - executable: gamedev simulator.exe type: none -'1195570': +"1195570": installDir: Dark Invasion VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: DarkInvasionVR.exe type: vr -'1195620': +"1195620": installDir: Ocean Drive Challenge Remastered launch: - executable: Ocean Drive Challenge.exe type: default -'1195820': +"1195820": installDir: Devil Threats launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Devil Threats.exe type: default -'1195830': +"1195830": installDir: Tlicolity Eyes launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SunG.exe type: default -'1195870': +"1195870": installDir: ZeroFront launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: 零界战线.exe type: default -'1195910': +"1195910": installDir: Dead Dreams FULL launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows executable: Game.exe type: default -'1195920': +"1195920": installDir: Solar Panic Utter Distress launch: - config: oslist: windows executable: SolarPanic.exe type: default -'1195980': {} -'1196090': +"1195980": {} +"1196090": installDir: Scars Above launch: - config: oslist: windows executable: ScarsAbove.exe type: default -'1196160': +"1196160": installDir: British Gangsters launch: - executable: British Gangsters.exe type: default -'1196170': +"1196170": installDir: Gang District launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: GangDistrict.exe type: default -'1196190': +"1196190": installDir: KUMO The Little Robot launch: - config: oslist: windows executable: KUMO-The-Little-Robot.exe type: default -'1196230': {} -'1196240': +"1196230": {} +"1196240": installDir: Wizardpunk launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: WizardPunk.exe type: default -'1196260': +"1196260": installDir: Draft Day Sports Pro Basketball 2020 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: DDSPB2020.exe type: default -'1196280': +"1196280": installDir: Pussy Puzzle launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: PussyPuzzle.exe type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: PussyPuzzle.x86_64 type: none - config: oslist: macos - executable: PussyPuzzle.app\\Contents\\MacOS\\PussyPuzzle + executable: "PussyPuzzle.app\\\\Contents\\\\MacOS\\\\PussyPuzzle" type: default -'1196320': +"1196320": installDir: Blood Scrolls launch: - config: oslist: windows executable: Blood Scrolls.exe type: default -'1196350': +"1196350": installDir: ATROFIL THE KEY launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ATROFIL_The_key.exe type: default - config: betakey: first - osarch: '64' + osarch: "64" oslist: windows executable: ATROFIL_The_key.exe type: default - config: betakey: test - osarch: '64' + osarch: "64" oslist: windows executable: The Atrofil Battleground.exe type: default - config: betakey: test oslist: macos - executable: ATROFIL_The_key.app\\Contents\\MacOS\\ATROFIL_The_key + executable: "ATROFIL_The_key.app\\\\Contents\\\\MacOS\\\\ATROFIL_The_key" type: default -'1196390': - installDir: Fairy Godmother Stories Cinderella Collector's Edition +"1196390": + installDir: "Fairy Godmother Stories Cinderella Collector's Edition" launch: - config: oslist: windows executable: Fairy_Godmother_Stories_Cinderella_CE.exe type: default -'1196400': - installDir: Mystery Case Files Black Crown Collector's Edition +"1196400": + installDir: "Mystery Case Files Black Crown Collector's Edition" launch: - config: oslist: windows executable: MysteryCaseFiles_BlackCrown_CE.exe type: default -'1196410': {} -'1196440': +"1196410": {} +"1196440": installDir: Potion Party launch: - executable: Potion Party.exe type: none -'1196450': +"1196450": installDir: Stop Sign VR launch: - config: oslist: windows executable: StopSignVR.exe type: openvroverlay -'1196460': {} -'1196470': +"1196460": {} +"1196470": installDir: WE ARE FOOTBALL launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: We Are Football - description_loc: - english: We Are Football executable: fe.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows description: We Are Football Editor - description_loc: - english: We Are Football Editor - executable: Editor\\Editor.exe + executable: "Editor\\\\Editor.exe" type: editor - workingdir: Editor\\ + workingdir: "Editor\\\\" - config: - osarch: '64' + osarch: "64" oslist: windows - ownsdlc: '2081690' + ownsdlc: "2081690" description: WE ARE FOOTBALL National Teams - description_loc: - english: WE ARE FOOTBALL National Teams - executable: nt\\fe_nt.exe + executable: "nt\\\\fe_nt.exe" type: option1 - workingdir: nt\\ -'1196520': + workingdir: "nt\\\\" +"1196520": installDir: The Secret of Hutton Grammar School launch: - config: @@ -67341,29 +66471,27 @@ oslist: windows executable: winsetup.exe type: config -'1196550': +"1196550": installDir: Days Gone By launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch Application - description_loc: - english: Launch Application executable: Days Gone By v2.0.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: Days Gone By v2.0.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Days Gone By v2.0.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Days Gone By v2.0.x86_64 type: default @@ -67371,24 +66499,24 @@ oslist: macos executable: Days Gone By v2.0.app type: default -'1196570': +"1196570": installDir: Suzunaan on Fire launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SGGameLauncher.exe type: default nameLocalized: schinese: 铃奈庵着火了 -'1196580': +"1196580": installDir: The Pale City launch: - config: oslist: windows executable: Game.exe type: default -'1196590': +"1196590": installDir: Resident Evil Village BIOHAZARD VILLAGE launch: - config: @@ -67398,12 +66526,12 @@ nameLocalized: japanese: BIOHAZARD VILLAGE koreana: Biohazard Village -'1196620': +"1196620": installDir: yongbingzhange launch: - executable: game.exe type: none -'1196630': +"1196630": installDir: Nexomon Extinction launch: - config: @@ -67412,10 +66540,10 @@ type: default - config: oslist: macos - executable: extinction.app\\Contents\\MacOS\\Nexomon Extinction + executable: "extinction.app\\\\Contents\\\\MacOS\\\\Nexomon Extinction" type: default -'1196680': {} -'1196690': +"1196680": {} +"1196690": installDir: OctaFight launch: - config: @@ -67426,12 +66554,12 @@ oslist: macos executable: OctaFight.app type: default -'1196750': +"1196750": installDir: Hentai Match Fantasy Stories launch: - executable: Hentai Match Fantasy Stories.exe type: none -'1196800': +"1196800": installDir: TaniNani launch: - config: @@ -67439,12 +66567,12 @@ executable: TaniNani.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: TaniNani.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: TaniNani.x86_64 type: default @@ -67452,51 +66580,51 @@ oslist: macos executable: TaniNani.app type: default -'1196880': +"1196880": installDir: World Of Conquerors - Origins launch: - config: oslist: windows executable: WorldOfConquerorsOrigins.exe type: none -'1196890': +"1196890": installDir: Puzzle Tower launch: - executable: Puzzle Tower.exe type: none -'1196940': +"1196940": installDir: Particulate launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Native Oculus SDK executable: Particulate.exe type: othervr -'1196970': +"1196970": installDir: Vile Matter launch: - executable: VileMatter.exe type: none -'1197010': - installDir: TAL Wizard's Adventures +"1197010": + installDir: "TAL Wizard's Adventures" launch: - - executable: TAL Wizard's Adventures.exe + - executable: "TAL Wizard's Adventures.exe" type: none -'1197020': - installDir: BRG's Tale of the Gallant Jiraiya +"1197020": + installDir: "BRG's Tale of the Gallant Jiraiya" launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows executable: nw.exe type: default -'1197030': +"1197030": installDir: Mystic Pillars launch: - executable: Mystic Pillars.exe type: default -'1197060': +"1197060": installDir: FUNGI launch: - config: @@ -67504,53 +66632,53 @@ executable: fungi.app type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: Fungi.exe type: default -'1197070': {} -'1197150': +"1197070": {} +"1197150": installDir: Em-A-Li launch: - executable: Game.exe type: default -'1197210': +"1197210": installDir: HentaiTeachers launch: - executable: HentaiTeachers.exe type: none -'1197220': +"1197220": installDir: Another Try launch: - config: oslist: windows executable: AnotherTry.exe type: default -'1197230': - installDir: Biba`s Adventures +"1197230": + installDir: "Biba`s Adventures" launch: - config: oslist: windows - executable: Biba`s Adventures.exe + executable: "Biba`s Adventures.exe" type: default - config: oslist: macos - executable: Contents\\MacOS\\Biba`s Adventures + executable: "Contents\\\\MacOS\\\\Biba`s Adventures" type: default - config: oslist: linux - executable: Biba`s Adventures.x86_64 + executable: "Biba`s Adventures.x86_64" type: default -'1197280': +"1197280": installDir: Cyber Pussy 2020 launch: - executable: Game.exe type: none -'1197290': +"1197290": nameLocalized: schinese: 射壁爆 -'1197300': {} -'1197320': +"1197300": {} +"1197320": installDir: A Long Stroll launch: - config: @@ -67559,21 +66687,21 @@ type: default nameLocalized: japanese: 散歩 -'1197340': +"1197340": installDir: Dead territory launch: - config: oslist: windows executable: Dead territory.exe type: default -'1197350': - installDir: Santa's Big Sack +"1197350": + installDir: "Santa's Big Sack" launch: - config: oslist: windows executable: SantasBigSack.exe type: default -'1197360': +"1197360": installDir: Santa Challenge launch: - config: @@ -67588,14 +66716,14 @@ oslist: linux executable: TheSantaChallenge.x86_64 type: default -'1197370': +"1197370": installDir: Suite 776 launch: - config: oslist: windows executable: Suite 776 Launcher.exe type: none -'1197380': +"1197380": installDir: Flashover MegaSector launch: - config: @@ -67603,7 +66731,7 @@ description: Launch game executable: Flashover MegaSector.exe type: default -'1197390': +"1197390": installDir: Robot Island launch: - config: @@ -67614,36 +66742,36 @@ oslist: macos executable: robotisland.app/Contents/MacOS/robotisland type: none -'1197440': +"1197440": installDir: 驱魔道人2 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Broken Spell.exe type: none nameLocalized: english: Broken Spell 2 tchinese: 驅魔道人2 BROKEN SPELL -'1197480': {} -'1197490': +"1197480": {} +"1197490": installDir: Sliding Puzzle Collection launch: - config: oslist: windows executable: Sliding Puzzle Collection.exe type: default -'1197500': +"1197500": installDir: Groove Runner launch: - config: oslist: windows executable: RhythmGame/Binaries/Win64/RhythmGame-Win64-Shipping.exe type: none -'1197520': +"1197520": installDir: Familia launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows executable: game.exe @@ -67652,15 +66780,15 @@ oslist: macos executable: Game.app type: default -'1197530': +"1197530": installDir: Planet Modular TD launch: - config: oslist: windows executable: Planet Modular TD.exe type: default -'1197550': {} -'1197570': +"1197550": {} +"1197570": installDir: Until We Die launch: - config: @@ -67669,203 +66797,197 @@ type: default nameLocalized: schinese: 誓死坚守 Until We Die -'1197590': +"1197590": installDir: Waifu_Uncovered launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: WaifuUncovered.exe type: default -'1197600': {} -'1197620': +"1197600": {} +"1197620": installDir: DragonRideVR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: DragonRideVR.exe type: vr -'1197670': +"1197670": installDir: Robin Hood Country Heroes launch: - config: oslist: windows executable: RobinHood_CountryHeroes_CE.exe type: default -'1197700': +"1197700": installDir: Hermes War of the Gods launch: - config: oslist: windows executable: Hermes_WarOfTheGods_CE.exe type: default -'1197710': +"1197710": installDir: Golden Rails Tales of the Wild West launch: - config: oslist: windows executable: GoldenRails_TalesOfTheWildWest.exe type: default -'1197730': +"1197730": installDir: DelayedSun launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: DSR.exe type: default -'1197750': {} -'1197770': +"1197750": {} +"1197770": installDir: Lilly Knight launch: - config: oslist: windows executable: Lilly Knight.exe type: default -'1197790': +"1197790": installDir: Highscore Hunter Hodgepodge launch: - config: oslist: windows executable: HHH.exe type: default -'1197810': {} -'1197840': +"1197810": {} +"1197840": installDir: The incredible friends launch: - executable: TheIncredibleFriends.exe type: none -'1197930': {} -'1197960': +"1197930": {} +"1197960": installDir: Gravity Balls launch: - config: oslist: windows executable: GravityBalls.exe type: none -'1197990': - installDir: 'Shoot, push, portals' +"1197990": + installDir: "Shoot, push, portals" launch: - config: oslist: windows executable: spp.exe type: default -'1198000': {} -'1198020': +"1198000": {} +"1198020": installDir: Braverz launch: - executable: Braverz.exe type: default -'1198040': +"1198040": installDir: Wide Ocean Big Jacket launch: - config: oslist: windows - executable: wide_ocean_big_jacket_20200730_win\\Wide Ocean Big Jacket.exe + executable: "wide_ocean_big_jacket_20200730_win\\\\Wide Ocean Big Jacket.exe" type: default - config: oslist: macos executable: WideOceanBigJacket.app/Contents/MacOS/Wide Ocean Big Jacket type: default -'1198060': - installDir: Christmas Stories Enchanted Express Collector's Edition +"1198060": + installDir: "Christmas Stories Enchanted Express Collector's Edition" launch: - config: oslist: windows executable: ChristmasStories_EnchantedExpress_CE.exe type: default -'1198070': - installDir: The Christmas Spirit Grimm Tales Collector's Edition +"1198070": + installDir: "The Christmas Spirit Grimm Tales Collector's Edition" launch: - config: oslist: windows executable: TheChristmasSpirit_GrimmTales_CE.exe type: default -'1198080': +"1198080": installDir: Westminster Darkly launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: nw.exe type: none -'1198090': +"1198090": installDir: The Legend of Heroes Trails of Cold Steel IV launch: - - executable: bin\\Win64\\ed8_4_PC.exe + - executable: "bin\\\\Win64\\\\ed8_4_PC.exe" type: default - executable: Sen4Launcher.exe type: config - config: betakey: testing description: Debug Optimized - description_loc: - english: Debug Optimized - executable: bin\\Win64\\ed8_4_PC_DO.exe + executable: "bin\\\\Win64\\\\ed8_4_PC_DO.exe" type: option1 - config: betakey: testing description: Debug - description_loc: - english: Debug - executable: bin\\Win64\\ed8_4_PC_D.exe + executable: "bin\\\\Win64\\\\ed8_4_PC_D.exe" type: option2 - - arguments: '-latest' + - arguments: "-latest" description: Resume from the latest save - description_loc: - english: Resume from the latest save - executable: bin\\Win64\\ed8_4_PC.exe + executable: "bin\\\\Win64\\\\ed8_4_PC.exe" type: none nameLocalized: japanese: 英雄伝説 閃の軌跡IV -THE END OF SAGA- schinese: 英雄传说:闪之轨迹Ⅳ -'1198110': +"1198110": installDir: Fantasy Realm TD launch: - config: oslist: windows executable: Fantasy Realm TD Tower Defense Game.exe type: default -'1198120': {} -'1198220': {} -'1198240': +"1198120": {} +"1198220": {} +"1198240": installDir: Danger City launch: - config: oslist: windows executable: DangerZoneVR.exe type: vr -'1198250': +"1198250": installDir: Pirates on Deck VR launch: - config: oslist: windows executable: Pirates on Deck VR.exe type: vr -'1198260': +"1198260": installDir: Beneath steel clouds launch: - config: oslist: windows executable: Beneath steel clouds.exe type: default -'1198270': +"1198270": installDir: The Button Witch launch: - config: oslist: windows executable: Game.exe type: none -'1198290': +"1198290": installDir: SpaceBlockBuster launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Pong.exe type: vr -'1198310': +"1198310": installDir: Change all My dear GOD of death launch: - config: @@ -67873,33 +66995,33 @@ executable: Change all My dear GOD of death.exe type: none nameLocalized: - english: Mr.King Luo!Don't be kidding + english: "Mr.King Luo!Don't be kidding" schinese: 阎萝大人!不要闹 tchinese: 閻蘿大人!不要鬧 -'1198320': +"1198320": installDir: DOTOKOI launch: - config: oslist: windows executable: DOTOKOI.exe type: default -'1198340': +"1198340": installDir: Summoner VR launch: - config: oslist: windows executable: SummonVR.exe type: vr -'1198370': {} -'1198430': {} -'1198440': +"1198370": {} +"1198430": {} +"1198440": installDir: The Burning Descent launch: - config: oslist: windows executable: TheBurningDescent.exe type: vr -'1198450': +"1198450": installDir: The Secret Order 8 launch: - config: @@ -67908,13 +67030,13 @@ executable: TheSecretOrder8.exe type: none - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: TheSecretOrder8_i386 type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: TheSecretOrder8_amd64 @@ -67924,37 +67046,37 @@ description: Launch executable: TheSecretOrder8.app/Contents/MacOS/TheSecretOrder8 type: none -'1198510': +"1198510": installDir: Paperball launch: - config: oslist: windows executable: Paperball.exe type: default -'1198550': +"1198550": installDir: Moderium launch: - config: oslist: windows executable: Aetheria.exe type: default -'1198570': - installDir: The Amazing T.K's Suburban Nightmares +"1198570": + installDir: "The Amazing T.K's Suburban Nightmares" launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: TKSN.exe type: default -'1198590': +"1198590": installDir: Stonefly launch: - config: oslist: windows executable: Stonefly.exe type: default -'1198600': +"1198600": installDir: Pizza Time Explosion launch: - config: @@ -67962,7 +67084,7 @@ oslist: windows executable: PizzaTimeExplosionv160S.exe type: default -'1198630': +"1198630": installDir: Customer Cums First! launch: - config: @@ -67971,72 +67093,72 @@ type: default - config: oslist: linux - executable: ./CustomerCumsFirst.sh + executable: "./CustomerCumsFirst.sh" type: default - config: oslist: macos executable: CustomerCumsFirst.app type: default -'1198690': {} -'1198700': +"1198690": {} +"1198700": installDir: Chained A Victorian Nightmare launch: - config: oslist: windows executable: CurrentChained.exe type: vr -'1198710': {} -'1198730': +"1198710": {} +"1198730": installDir: OMON Girl Bottle Royal launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: OMON Girl Bottle Royal.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: OMON Girl Bottle Royal.exe type: default - config: oslist: macos - executable: Contents\\MacOS\\OMON Girl_ Bottle Royal + executable: "Contents\\\\MacOS\\\\OMON Girl_ Bottle Royal" type: default - config: oslist: linux executable: Default Linux desktop 64-bit.x86_64 type: default -'1198740': +"1198740": installDir: Colony Siege launch: - config: oslist: windows executable: cs.exe type: default -'1198760': +"1198760": installDir: League of Pixels launch: - config: oslist: windows executable: nw.exe type: default -'1198810': +"1198810": installDir: Wolf & Pigs launch: - config: oslist: windows executable: WolfandPigs.exe type: vr -'1198820': +"1198820": installDir: Monster Girl Garden launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: MGG.exe type: default -'1198850': +"1198850": installDir: How to Build a Magnificent Kingdom launch: - executable: subako.exe @@ -68044,27 +67166,27 @@ nameLocalized: schinese: 美好国度的建设方略 tchinese: 美好國度的建設方略 -'1198860': +"1198860": installDir: Snowballs launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Snowballs.exe type: none -'1198890': +"1198890": installDir: Remuage - MeltySensation launch: - executable: Remuage-MeltySensation.exe type: vr -'1198970': {} -'1199010': +"1198970": {} +"1199010": installDir: Tower Of God One WIsh launch: - config: oslist: macos description: Launch MacOS - executable: Tog.app\\Contents\\MacOS\\Tower Of God + executable: "Tog.app\\\\Contents\\\\MacOS\\\\Tower Of God" type: none - config: oslist: windows @@ -68075,7 +67197,7 @@ oslist: linux executable: ToG.x86_64 type: none -'1199030': +"1199030": installDir: Tainted Grail launch: - config: @@ -68087,24 +67209,24 @@ executable: Tainted_Grail.x86_64 type: default nameLocalized: - schinese: 'Tainted Grail: Conquest (污痕圣杯)' -'1199050': + schinese: "Tainted Grail: Conquest (污痕圣杯)" +"1199050": installDir: CRASH Autodrive launch: - config: oslist: windows executable: CRASH Autodrive.exe type: default -'1199060': +"1199060": installDir: Coin Pickers launch: - config: oslist: windows executable: Adventure3rdPerson.exe type: default -'1199110': {} -'1199130': {} -'1199140': +"1199110": {} +"1199130": {} +"1199140": installDir: MyRabbitsAreGone launch: - config: @@ -68115,29 +67237,29 @@ oslist: linux executable: MyRabbitsAreGone type: default -'1199150': +"1199150": installDir: Raccoon The Orc Invasion launch: - config: oslist: windows executable: Raccoon The Orc Invasion.exe type: default -'1199170': +"1199170": installDir: Gravity Escape From The Maze launch: - config: oslist: windows executable: Gravity Escape From The Maze.exe type: default -'1199180': +"1199180": installDir: Edge Of Galaxy launch: - config: oslist: windows executable: Edge Of Galaxy.exe type: default -'1199200': {} -'1199220': +"1199200": {} +"1199220": installDir: An Odyssey Echoes of War launch: - config: @@ -68152,7 +67274,7 @@ oslist: linux executable: AnOdysseyEchoesOfWar type: none -'1199240': +"1199240": installDir: Galactic Asteroids Patrol launch: - config: @@ -68163,24 +67285,24 @@ oslist: macos executable: GAP.app type: none -'1199270': {} -'1199360': +"1199270": {} +"1199360": installDir: Rat Racer launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Rat Racer.exe type: none -'1199370': +"1199370": installDir: Gleamlight launch: - config: oslist: windows executable: Gleamlight.exe type: default -'1199390': {} -'1199420': +"1199390": {} +"1199420": installDir: Bounce Knight launch: - config: @@ -68188,28 +67310,28 @@ description: Bounce knight game executable: BounceKnight.exe type: default -'1199450': +"1199450": installDir: Dark Raider launch: - config: oslist: windows - executable: \\Version0119\\Game\\Windows\\DarkRaider.exe + executable: "\\\\Version0119\\\\Game\\\\Windows\\\\DarkRaider.exe" type: default -'1199460': {} -'1199550': {} -'1199560': +"1199460": {} +"1199550": {} +"1199560": installDir: Adrift Arena launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: adrift_arena.exe type: default -'1199610': +"1199610": installDir: 冲破黑暗 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Broken of Darkness.exe type: default @@ -68217,7 +67339,7 @@ english: Broken of Darkness schinese: 冲破黑暗 tchinese: 衝破黑暗 -'1199640': +"1199640": installDir: Cave to Kingdom launch: - config: @@ -68228,15 +67350,15 @@ oslist: linux executable: CaveToKingdom type: none -'1199650': +"1199650": installDir: Cube Smash launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Cube Smash.exe type: othervr -'1199660': +"1199660": installDir: The Answer Is 42 launch: - config: @@ -68245,15 +67367,15 @@ type: default - config: oslist: macos - executable: TheAnswerIs42.app\\Contents\\MacOS\\The Answer Is 42 + executable: "TheAnswerIs42.app\\\\Contents\\\\MacOS\\\\The Answer Is 42" type: none -'1199690': {} -'1199740': +"1199690": {} +"1199740": installDir: Piñata Attack launch: - executable: Pinata Attack.exe type: vr -'1199760': +"1199760": installDir: Light Fairytale Episode 2 launch: - config: @@ -68264,16 +67386,14 @@ - config: oslist: macos description: Launch the Game! - description_loc: - english: Launch the Game! - executable: light_fairytale_episode_2.app\\Contents\\MacOS\\Light Fairytale Episode 2 + executable: "light_fairytale_episode_2.app\\\\Contents\\\\MacOS\\\\Light Fairytale Episode 2" type: default - config: oslist: linux description: Launch the Game! executable: light_fairytale_episode_2.x86_64 type: default -'1199770': +"1199770": installDir: MTF Gamma-13 launch: - config: @@ -68281,34 +67401,34 @@ executable: MTF_G13.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: MTF_G13.sh type: default -'1199780': - installDir: Santa's Holiday +"1199780": + installDir: "Santa's Holiday" launch: - config: oslist: windows - executable: Santa's Holiday.exe + executable: "Santa's Holiday.exe" type: default - config: oslist: macos - executable: Santa's Holiday.app + executable: "Santa's Holiday.app" type: default - config: oslist: linux - executable: Santa's Holiday.x86_64 + executable: "Santa's Holiday.x86_64" type: default -'1199800': - installDir: The Winter's Deal - Frosty Edition +"1199800": + installDir: "The Winter's Deal - Frosty Edition" launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: nw.exe type: default -'1199830': +"1199830": installDir: How To Hack In launch: - config: @@ -68317,8 +67437,8 @@ - config: oslist: linux executable: howtohackin.x86_64 -'1199900': - installDir: Hope's Farm +"1199900": + installDir: "Hope's Farm" launch: - config: oslist: windows @@ -68332,22 +67452,22 @@ oslist: linux executable: Hopes Farm.x86_64 type: default -'1199930': +"1199930": installDir: Prens_Cavid launch: - config: oslist: windows - executable: Prens_Cavid\\Prens_Cavid.exe + executable: "Prens_Cavid\\\\Prens_Cavid.exe" type: none -'1199980': {} -'120': {} -'1200': +"1199980": {} +"120": {} +"1200": installDir: Red Orchestra launch: - config: oslist: windows description: Red Orchestra - executable: System\\RedOrchestra.exe + executable: "System\\\\RedOrchestra.exe" - config: oslist: linux description: Red Orchestra @@ -68358,36 +67478,36 @@ description: Red Orchestra executable: Red Orchestra.app workingdir: System -'1200060': - installDir: 乔乔的铁拳 Joe's Fists +"1200060": + installDir: "乔乔的铁拳 Joe's Fists" launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: JoesFists.exe type: vr -'1200120': +"1200120": installDir: Armorgeddon launch: - config: oslist: windows executable: Armorgeddon.exe type: default -'1200140': +"1200140": installDir: 4x4 OFF-ROAD CHALLENGE launch: - config: oslist: windows executable: 4x4 Off-Rd. Challenge.exe type: default -'1200160': +"1200160": installDir: Pivot launch: - config: oslist: windows executable: Pivot.exe type: default -'1200200': +"1200200": installDir: SinChess launch: - config: @@ -68396,35 +67516,35 @@ type: none - config: oslist: macos - executable: SinChess.app\\Contents\\MacOS\\SinChess + executable: "SinChess.app\\\\Contents\\\\MacOS\\\\SinChess" type: none -'1200220': +"1200220": installDir: FIshing Adventure VR launch: - - arguments: '-vrmode Oculus' + - arguments: "-vrmode Oculus" config: oslist: windows executable: Fishing AdventureVR.exe type: othervr - - arguments: '-vrmode OpenVR' + - arguments: "-vrmode OpenVR" config: oslist: windows executable: Fishing AdventureVR.exe type: vr -'1200230': +"1200230": installDir: Ludus launch: - - executable: \\windows_content\\Ludus.exe + - executable: "\\\\windows_content\\\\Ludus.exe" type: none -'1200250': +"1200250": installDir: The Time of Awakening launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: JXZK.exe type: default -'1200280': +"1200280": installDir: alienterminal launch: - config: @@ -68439,101 +67559,101 @@ oslist: linux executable: AlienTerminal.x86 type: default -'1200290': +"1200290": installDir: FlyManMissile launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: FlyManMissile.exe type: default -'1200330': +"1200330": installDir: Strategic Mind Blitzkrieg launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: StrategicMind.exe type: none nameLocalized: schinese: 战略思维:闪电战 -'1200350': +"1200350": installDir: Dead Ground Arcade launch: - config: oslist: windows - executable: DGArcade\\Binaries\\Win64\\DGArcade-Win64-Shipping.exe + executable: "DGArcade\\\\Binaries\\\\Win64\\\\DGArcade-Win64-Shipping.exe" type: vr - config: oslist: windows - executable: DGArcade\\Binaries\\Win64\\DGArcade-Win64-Shipping.exe + executable: "DGArcade\\\\Binaries\\\\Win64\\\\DGArcade-Win64-Shipping.exe" type: othervr -'1200400': +"1200400": installDir: Guardians Of Rings launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: guardiansofmagic.exe type: default -'1200420': +"1200420": installDir: Awesome Pea 2 launch: - config: oslist: windows executable: Awesome Pea 2.exe type: default -'1200430': +"1200430": installDir: Sick Way launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Sick Way.exe type: default -'1200450': +"1200450": installDir: HELLO PLAYER launch: - config: oslist: windows executable: HELLO PLAYER.exe type: default -'1200460': {} -'1200520': +"1200460": {} +"1200520": installDir: Ascent launch: - executable: AscentLauncherX.exe type: default - description: (Choose Only if Configured) - executable: \\Ascent\\TheAscent.exe + executable: "\\\\Ascent\\\\TheAscent.exe" type: vr -'1200590': +"1200590": installDir: The Sword launch: - config: oslist: windows executable: The Sword.exe type: default -'1200600': +"1200600": installDir: NCoH launch: - - arguments: '-Duser.home=. -jar NCoH.jar' + - arguments: "-Duser.home=. -jar NCoH.jar" config: - osarch: '64' + osarch: "64" oslist: windows - executable: jreW64-12.0.2\\bin\\javaw.exe + executable: "jreW64-12.0.2\\\\bin\\\\javaw.exe" type: default - - arguments: '-Duser.home=. -Xdock:name=NCoH -Xdock:icon=NCoH.icns -jar NCoH.jar' + - arguments: "-Duser.home=. -Xdock:name=NCoH -Xdock:icon=NCoH.icns -jar NCoH.jar" config: oslist: macos executable: jreMac-12.0.2/bin/NCoH type: default -'1200630': +"1200630": installDir: Fright launch: - executable: HorrorHouse.exe type: default -'1200650': +"1200650": installDir: The Disguiser Of Fate launch: - config: @@ -68543,28 +67663,28 @@ nameLocalized: schinese: 宿命伪装者 tchinese: 宿命偽裝者 -'1200660': +"1200660": installDir: My Home VR launch: - config: oslist: windows executable: MyHomeVR.exe type: vr -'1200700': {} -'1200720': +"1200700": {} +"1200720": installDir: MakingLovers launch: - config: oslist: windows executable: MakingLovers.exe type: default -'1200730': +"1200730": installDir: Shady Lewd Kart launch: - config: oslist: windows executable: Shady Lewd Kart.exe -'1200740': +"1200740": installDir: LoginToShootingRangeInServer00 VR launch: - config: @@ -68579,16 +67699,16 @@ oslist: windows executable: Server00.exe type: vr -'1200780': +"1200780": installDir: Mini Island Night launch: - executable: Mini Island Night.exe type: default -'1200800': +"1200800": installDir: PyroNinja Fire Dodge launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: PyroNinja Fire Dodge.exe type: default @@ -68600,7 +67720,7 @@ oslist: linux executable: PyroNinja Fire Dodge.x86_64 type: default -'1200860': +"1200860": installDir: The Good Time Garden launch: - config: @@ -68609,16 +67729,16 @@ type: none - config: oslist: macos - executable: \\mac_content\\The Good Time Garden v1.1 (Mac).app + executable: "\\\\mac_content\\\\The Good Time Garden v1.1 (Mac).app" type: none -'1200870': +"1200870": installDir: History Racers 2 launch: - config: oslist: windows executable: HistoryRacers2.exe type: default -'1200900': +"1200900": installDir: Crypto Against All Odds launch: - config: @@ -68627,11 +67747,11 @@ type: default - config: oslist: macos - executable: CAAO.app\\Contents\\MacOS\\CAAO + executable: "CAAO.app\\\\Contents\\\\MacOS\\\\CAAO" type: default nameLocalized: schinese: 加密货币:披荆斩棘 -'1200910': +"1200910": installDir: Pet Chan launch: - arguments: b @@ -68639,7 +67759,7 @@ oslist: windows executable: Pet Chan.exe type: default -'1200930': +"1200930": installDir: Art of Deception launch: - config: @@ -68648,65 +67768,65 @@ type: default nameLocalized: russian: Искусство обмана -'1200990': +"1200990": installDir: love the game launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: nw.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: nw.exe type: default -'1201000': +"1201000": installDir: Reincarnated As A Monster launch: - config: oslist: windows executable: Reincarnated As Monster.exe type: default -'1201200': +"1201200": installDir: Mouse Mayhem Shooting & Racing launch: - config: oslist: macos - executable: MouseMayhem.app\\Contents\\MacOS\\MouseMayhem + executable: "MouseMayhem.app\\\\Contents\\\\MacOS\\\\MouseMayhem" type: default - config: - osarch: '32' + osarch: "32" oslist: windows - executable: Windows_x86\\Mouse Mayhem.exe + executable: "Windows_x86\\\\Mouse Mayhem.exe" type: default - config: - osarch: '64' + osarch: "64" oslist: windows - executable: Windows_x86_64\\Mouse Mayhem.exe + executable: "Windows_x86_64\\\\Mouse Mayhem.exe" type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: MouseMayhem.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: MouseMayhem.x86_64 type: default -'1201220': +"1201220": installDir: Afterbern Democralypse launch: - config: oslist: windows executable: Afterbern Democralypse.exe type: default -'1201230': +"1201230": installDir: 一方灵田 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ImmortalLife.exe type: default @@ -68715,7 +67835,7 @@ japanese: 仙郷物語 schinese: 一方灵田 tchinese: 一方靈田 -'1201240': +"1201240": installDir: BLEACH Brave Souls launch: - config: @@ -68729,14 +67849,14 @@ schinese: BLEACH Brave Souls - 3D 动作 tchinese: BLEACH Brave Souls - 3D動作 thai: BLEACH Brave Souls - 3D Action -'1201250': +"1201250": installDir: Ninja Run launch: - config: oslist: windows executable: Ninja Run.exe type: default -'1201260': +"1201260": installDir: Happy Engine launch: - arguments: b @@ -68744,7 +67864,7 @@ oslist: windows executable: Happy Engine.exe type: default -'1201270': +"1201270": installDir: A Space for the Unbound launch: - config: @@ -68755,7 +67875,7 @@ japanese: A Space for the Unbound 心に咲く花 schinese: 无垠之心 - A Space for the Unbound tchinese: 無垠之心 - A Space for the Unbound -'1201280': +"1201280": installDir: A Space For The Unbound - Prologue launch: - config: @@ -68766,22 +67886,22 @@ oslist: macos executable: A Space for the Unbound.app type: default -'1201350': +"1201350": installDir: Election simulator launch: - config: oslist: windows executable: Election Simulator.exe type: default -'1201370': +"1201370": installDir: HAMMY launch: - config: oslist: windows executable: HAMMY.exe type: default -'1201390': {} -'1201400': +"1201390": {} +"1201400": installDir: Not For Broadcast Prologue launch: - executable: NotForBroadcastPrologue.exe @@ -68790,12 +67910,12 @@ betakey: testing executable: NotForBroadcastPrologue.exe type: default -'1201450': +"1201450": installDir: Easy Hentai launch: - executable: EasyHentai.exe type: none -'1201500': +"1201500": installDir: Christmas Cats Revenge launch: - config: @@ -68806,35 +67926,31 @@ oslist: linux executable: ChristmasCatsRevenge type: default -'1201530': +"1201530": installDir: aBANdon02 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: aBANdon02.exe type: default -'1201540': +"1201540": installDir: HELLCARD launch: - config: oslist: windows description: Release version - description_loc: - english: Release version executable: HELLCARD.exe type: option1 - config: oslist: windows - ownsdlc: '2122120' + ownsdlc: "2122120" description: with Cug_Dev - description_loc: - english: with Cug_Dev executable: HELLCARD_Dev.exe type: option2 nameLocalized: schinese: 地狱卡牌 Hellcard -'1201550': +"1201550": installDir: Mad Experiments Escape Room launch: - config: @@ -68843,44 +67959,44 @@ type: default - config: oslist: macos - executable: MEER-MacOS.app\\Contents\\MacOS\\Mad Experiments Escape Room + executable: "MEER-MacOS.app\\\\Contents\\\\MacOS\\\\Mad Experiments Escape Room" type: default - config: oslist: linux executable: mad-experiments-escape-room.x86_64 type: default -'1201580': {} -'1201600': {} -'1201620': +"1201580": {} +"1201600": {} +"1201620": installDir: Fast Food Never More launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: FastFoodNeverMore.exe type: none -'1201630': - installDir: Mineirinho Director's Cut +"1201630": + installDir: "Mineirinho Director's Cut" launch: - config: oslist: windows - description: 'Mineirinho Director''s Cut ' - executable: MDC\\MDC.exe + description: "Mineirinho Director's Cut " + executable: "MDC\\\\MDC.exe" type: option1 - config: oslist: windows - ownsdlc: '1209600' + ownsdlc: "1209600" description: Hoversurf DC - executable: HSDC\\HSDC.exe + executable: "HSDC\\\\HSDC.exe" type: option2 - config: oslist: windows - ownsdlc: '1424240' + ownsdlc: "1424240" description: Miner Ultra Adventures - executable: MUAclassic\\MUAclassic.exe + executable: "MUAclassic\\\\MUAclassic.exe" type: option3 -'1201650': +"1201650": installDir: Mystic Hammer launch: - config: @@ -68891,7 +68007,7 @@ oslist: macos executable: Mystic Hammer.app type: none -'1201730': +"1201730": installDir: prisonofson launch: - config: @@ -68899,26 +68015,26 @@ description: execution file executable: PrisonOfSon.exe type: default -'1201750': +"1201750": installDir: Taurus VR launch: - config: oslist: windows executable: Taurus.exe type: vr -'1201770': +"1201770": installDir: Colossals launch: - - executable: COLOSSALS !\\Game.exe + - executable: "COLOSSALS !\\\\Game.exe" type: none -'1201790': +"1201790": installDir: Long loot the King launch: - config: oslist: windows executable: Long loot the King.exe type: default -'1201800': +"1201800": installDir: Knight Swap 2 launch: - config: @@ -68927,9 +68043,9 @@ type: default - config: oslist: macos - executable: Knight_Swap_2_Steam.app\\Contents\\MacOS\\Knight Swap 2 + executable: "Knight_Swap_2_Steam.app\\\\Contents\\\\MacOS\\\\Knight Swap 2" type: default -'1201810': +"1201810": installDir: Unlock The King 2 launch: - config: @@ -68938,22 +68054,22 @@ type: default - config: oslist: macos - executable: Unlock_The_King_2_Steam.app\\Contents\\MacOS\\Unlock The King 2 + executable: "Unlock_The_King_2_Steam.app\\\\Contents\\\\MacOS\\\\Unlock The King 2" type: default -'1201830': +"1201830": installDir: For The Warp launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: FTW.exe type: default -'1201840': +"1201840": installDir: Man Standing launch: - executable: ManStanding.exe type: none -'1201870': +"1201870": installDir: Drinks With Abbey launch: - config: @@ -68964,37 +68080,35 @@ oslist: macos executable: Drinks-With-Abbey.app/Contents/MacOS/Drinks-With-Abbey type: none -'1201880': +"1201880": installDir: The North Pole launch: - config: oslist: windows executable: Northpole.exe type: none -'1201890': {} -'1201910': +"1201890": {} +"1201910": installDir: Cook Dungeon launch: - executable: Cook Dungeon.exe type: default -'1201920': {} -'1201940': +"1201920": {} +"1201940": installDir: ProjectSpeed launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: Content\\Data\\ProjectSpeed.exe + executable: "Content\\\\Data\\\\ProjectSpeed.exe" type: default - - arguments: '-dx11' + - arguments: "-dx11" config: oslist: windows description: using DirectX11 - description_loc: - english: using DirectX11 - executable: Content\\Data\\ProjectSpeed.exe + executable: "Content\\\\Data\\\\ProjectSpeed.exe" type: option1 -'1202070': +"1202070": installDir: Gachi Revenge launch: - config: @@ -69009,15 +68123,15 @@ oslist: linux executable: Gachi_Revenge.sh type: default -'1202090': +"1202090": installDir: Pieces of Me NorthBound launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: NorthBound.exe type: default -'1202130': +"1202130": installDir: Starship Troopers - Terran Command launch: - executable: Launcher.exe @@ -69025,26 +68139,24 @@ - config: betakey: artistocratstest sony dynamicmusic artistocratsintermediate publicdemotest pressdemotest beta description: Starship Troopers (w/o launcher) - description_loc: - english: Starship Troopers (w/o launcher) executable: Starship Troopers.exe type: option1 -'1202140': +"1202140": installDir: Portal Dungeon Goblin Escape launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: WindowsNoEditor/GoblinEscape.exe type: default -'1202160': +"1202160": installDir: Choco Pixel launch: - config: oslist: windows executable: Choco Pixel.exe type: default -'1202170': +"1202170": installDir: Barbarous Tavern Of Emyr launch: - config: @@ -69053,9 +68165,9 @@ type: default - config: oslist: macos - executable: TVN1.app\\Contents\\MacOS\\TVN1 + executable: "TVN1.app\\\\Contents\\\\MacOS\\\\TVN1" type: default -'1202200': +"1202200": installDir: Paleo Pines launch: - config: @@ -69066,21 +68178,21 @@ oslist: linux executable: Paleo Pines.x86_64 type: default -'1202220': +"1202220": installDir: Egypt Solitaire. Match 2 Cards launch: - config: oslist: windows executable: Egypt Solitaire. Match 2 Cards.exe type: default -'1202250': +"1202250": installDir: Luxar launch: - config: oslist: windows executable: LUXAR.exe type: none -'1202300': +"1202300": installDir: Eternal Liiivie(12+) launch: - config: @@ -69095,7 +68207,7 @@ english: Eternal Liiivie - EP1 Liiivie Isolated From the World schinese: 失落之白 - EP1 与世隔绝的白族 tchinese: 失落之白 - EP1 與世隔絕的白族 -'1202310': +"1202310": installDir: Sakura Succubus launch: - config: @@ -69110,37 +68222,37 @@ oslist: macos executable: SakuraSuccubus.app type: default -'1202340': {} -'1202410': +"1202340": {} +"1202410": installDir: Midjungard Battle Royale launch: - executable: Midjungard.exe type: none -'1202420': +"1202420": installDir: Moves launch: - config: oslist: windows executable: nw.exe type: default -'1202430': +"1202430": nameLocalized: greek: Τρεις Ζωές -'1202480': +"1202480": installDir: 36 apples launch: - config: oslist: windows executable: 36 apples.exe type: default -'1202510': +"1202510": installDir: Escape the Ninja Room launch: - config: oslist: windows executable: Escape the Ninja Room.exe type: default -'1202540': +"1202540": installDir: Marco And The Galaxy Dragon launch: - executable: marco.exe @@ -69148,18 +68260,18 @@ nameLocalized: english: Marco & The Galaxy Dragon french: Marco et le dragon-galaxie - japanese: 'マルコと銀河竜 ~MARCO&GALAXY DRAGON~ ' + japanese: "マルコと銀河竜 ~MARCO&GALAXY DRAGON~ " schinese: 丸子与銀河龙 tchinese: 丸子與銀河龍 -'1202550': +"1202550": installDir: ZombieBusters launch: - - arguments: '-vr2dgames' + - arguments: "-vr2dgames" config: oslist: windows executable: ZombieBusters.exe type: vr -'1202570': +"1202570": installDir: Aquarius launch: - config: @@ -69171,29 +68283,29 @@ executable: Aquarius.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Aquarius.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Aquarius.x86 type: default -'1202610': +"1202610": installDir: StretchBot launch: - - arguments: '-fullscreen' + - arguments: "-fullscreen" config: oslist: windows executable: StretchBot.exe type: default - - arguments: '-fullscreen' + - arguments: "-fullscreen" config: oslist: macos executable: StretchBot.app type: default -'1202630': +"1202630": installDir: The Walsingham Files - Chapter 2 launch: - config: @@ -69204,7 +68316,7 @@ oslist: macos executable: nwjs.app type: none -'1202640': +"1202640": installDir: Hentai Tights launch: - config: @@ -69215,27 +68327,25 @@ oslist: macos executable: Hentai Tights.app type: none -'1202690': +"1202690": installDir: Sex with The Devil launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SexWithDevil.exe type: default - - description: 'Sex with the Devil: VR Sex Scenes' - description_loc: - english: 'Sex with the Devil: VR Sex Scenes' + - description: "Sex with the Devil: VR Sex Scenes" executable: SexWithDevilVR.exe type: option1 -'1202710': - installDir: Santa's Christmas Solitaire 2 +"1202710": + installDir: "Santa's Christmas Solitaire 2" launch: - config: oslist: windows - executable: SCS2\\Santa's Christmas Solitaire 2.exe + executable: "SCS2\\\\Santa's Christmas Solitaire 2.exe" type: default -'1202730': +"1202730": installDir: nStations launch: - config: @@ -69250,148 +68360,148 @@ oslist: linux executable: InhabitedStations.x86_64 type: none -'1202750': {} -'1202760': +"1202750": {} +"1202760": installDir: Story in the Dream World 1 Demo launch: - config: oslist: windows executable: Story in the Dream World -VaP- Demo.exe type: default -'1202770': +"1202770": installDir: kirakira_stars_idol_project_AI launch: - config: oslist: windows executable: kirakira_stars_idol_project_AI.exe type: default -'1202780': +"1202780": installDir: Theme Park Simulator launch: - config: oslist: windows executable: Theme Park Simulator.exe type: default -'1202790': +"1202790": installDir: Lost Brothers launch: - config: oslist: windows executable: Lost Brothers.exe type: default -'1202810': +"1202810": installDir: ROAD HOMEWARD Open world launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ROAD HOMEWARD open world.exe type: default -'1202820': +"1202820": installDir: Melbits™ World launch: - config: oslist: windows executable: Melbits World.exe type: none -'1202880': +"1202880": installDir: Spacer Project launch: - config: - osarch: '32' + osarch: "32" oslist: windows - executable: SpacerProject_Steam_1.4_win\\Project Spacer.exe + executable: "SpacerProject_Steam_1.4_win\\\\Project Spacer.exe" type: default - config: - osarch: '64' + osarch: "64" oslist: windows - executable: SpacerProject_Steam_1.4_win64\\Project Spacer.exe + executable: "SpacerProject_Steam_1.4_win64\\\\Project Spacer.exe" type: default -'1202900': +"1202900": installDir: Assemble with Care launch: - - arguments: '-screen-fullscreen 1' + - arguments: "-screen-fullscreen 1" config: - osarch: '64' + osarch: "64" oslist: windows executable: AWC.exe type: default - - arguments: '-screen-fullscreen 0 -popupwindow' + - arguments: "-screen-fullscreen 0 -popupwindow" config: - osarch: '64' + osarch: "64" oslist: windows description: Launch in Popup Window executable: AWC.exe type: none - - arguments: '-screen-fullscreen 0' + - arguments: "-screen-fullscreen 0" config: - osarch: '64' + osarch: "64" oslist: windows description: Launch In Windowed Mode executable: AWC.exe type: none -'1202930': +"1202930": installDir: Boom Boomerang launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: BoomBoomerang.exe type: vr -'1202970': +"1202970": installDir: Mad Tracks launch: - config: oslist: windows executable: MadTracks.exe type: default -'1202990': +"1202990": installDir: The pandemic launch: - config: - osarch: '64' + osarch: "64" executable: cov.exe type: default -'1203030': +"1203030": installDir: Tales of Beasteria launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows executable: game.exe type: default -'1203050': +"1203050": installDir: Nordic Storm Solitaire launch: - config: oslist: windows executable: Nordic Storm Solitaire.exe type: default -'1203180': +"1203180": installDir: BreakwatersBeta launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Breakwaters.exe type: none -'1203210': +"1203210": nameLocalized: schinese: 与尸共舞 tchinese: 與屍共舞 -'1203220': +"1203220": nameLocalized: schinese: 永劫无间 -'1203230': {} -'1203240': +"1203230": {} +"1203240": installDir: Remember launch: - config: oslist: windows executable: Remember.exe type: none -'1203270': {} -'1203280': +"1203270": {} +"1203280": installDir: Brawl Hopper launch: - config: @@ -69400,9 +68510,9 @@ type: default - config: oslist: windows - executable: Brawl Hopper\\Brawl Hopper.exe + executable: "Brawl Hopper\\\\Brawl Hopper.exe" type: default -'1203310': +"1203310": installDir: Tiles Shooter Puzzle Cube launch: - config: @@ -69413,14 +68523,14 @@ oslist: linux executable: game type: none -'1203360': +"1203360": installDir: Core Defense launch: - config: oslist: windows executable: Core Defense.exe type: default - - arguments: '--in-process-gpu --no-sandbox' + - arguments: "--in-process-gpu --no-sandbox" config: oslist: linux executable: core-defense @@ -69429,31 +68539,31 @@ oslist: macos executable: Core Defense.app/Contents/MacOS/Core Defense type: default -'1203370': +"1203370": installDir: Survival Classic launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: x64 executable: Cv2_Base/Binaries/Win64/Cv2_BaseClient_Shipping.exe type: none - config: - osarch: '32' + osarch: "32" oslist: windows description: x32 executable: Cv2_Base/Binaries/Win32/Cv2_BaseClient_Shipping.exe type: none - config: betakey: devel - osarch: '64' + osarch: "64" oslist: windows description: Play Development version executable: Cv2_Base/Binaries/Win64/Cv2_BaseClient_Shipping.exe type: none - config: betakey: devel - osarch: '32' + osarch: "32" oslist: windows description: Play Development version executable: Cv2_Base/Binaries/Win32/Cv2_BaseClient_Shipping.exe @@ -69462,36 +68572,34 @@ betakey: oldsurv oslist: windows description: Play Old version from social networks - description_loc: - english: Play Old version from social networks executable: OldSurv/OldSurv.exe -'1203390': +"1203390": installDir: Winter Break launch: - config: oslist: windows executable: Snowball.exe type: vr -'1203400': +"1203400": installDir: Witchcraft Pandoras Box launch: - config: oslist: windows executable: Pandoras Box.exe type: default -'1203430': +"1203430": installDir: Rescuers2019 launch: - config: oslist: windows executable: game.exe type: default -'1203450': +"1203450": installDir: MechanicalFuture launch: - - executable: .\\MechanicalFuture\\MechanicalFuture.exe + - executable: ".\\\\MechanicalFuture\\\\MechanicalFuture.exe" type: default -'1203460': +"1203460": installDir: Koo & Yuu launch: - config: @@ -69500,36 +68608,36 @@ type: default - config: oslist: macos - executable: Contents\\MacOS\\macos_content + executable: "Contents\\\\MacOS\\\\macos_content" type: default - config: oslist: linux executable: Koo & Yuu.x86_64 type: default -'1203470': +"1203470": installDir: Earth Analog launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: EarthAnalog.exe type: default -'1203490': +"1203490": installDir: Planet Colonization launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: PlanetColonization.exe type: default -'1203560': +"1203560": installDir: Everyone Dies launch: - config: oslist: windows executable: Everyone Dies.exe type: default -'1203570': +"1203570": installDir: HexON launch: - config: @@ -69538,9 +68646,9 @@ type: default - config: oslist: macos - executable: HexON_Steam.app\\Contents\\MacOS\\HexON + executable: "HexON_Steam.app\\\\Contents\\\\MacOS\\\\HexON" type: default -'1203580': +"1203580": installDir: Photo Quiz - Animals launch: - config: @@ -69583,14 +68691,14 @@ description: Photo Quiz - Flags executable: Photo Quiz - Flags.exe type: option1 -'1203600': +"1203600": installDir: Zombie Slayers launch: - config: oslist: windows executable: zombieslayers.exe type: default -'1203630': +"1203630": installDir: Record of Lodoss War-Deedlit in Wonder Labyrinth- launch: - executable: Deedlit in Wonder Labyrinth.exe @@ -69598,69 +68706,69 @@ nameLocalized: brazilian: Record of Lodoss War -Deedlit in Wonder Labyrinth- english: Record of Lodoss War-Deedlit in Wonder Labyrinth- - french: "Les Chroniques de la guerre de Lodoss\_: Deedlit au Labyrinthe des merveilles" - german: 'Record of Lodoss War: Deedlit in Wonder Labyrinth' - italian: 'Record of Lodoss War: Deedlit in Wonder Labyrinth' + french: "Les Chroniques de la guerre de Lodoss : Deedlit au Labyrinthe des merveilles" + german: "Record of Lodoss War: Deedlit in Wonder Labyrinth" + italian: "Record of Lodoss War: Deedlit in Wonder Labyrinth" japanese: ロードス島戦記ーディードリット・イン・ワンダーラビリンスー koreana: 로도스도 전기 - 디드리트 인 원더 라비린스 - russian: 'Летопись войн острова Лодосс: Дидлит в Лабиринте чудес' + russian: "Летопись войн острова Лодосс: Дидлит в Лабиринте чудес" schinese: 蒂德莉特的奇境冒险/Record of Lodoss War-Deedlit in Wonder Labyrinth- - spanish: 'Record of Lodoss War: Deedlit in Wonder Labyrinth' + spanish: "Record of Lodoss War: Deedlit in Wonder Labyrinth" tchinese: 羅德斯島戰記──蒂德莉特的奇境迷宮冒險 -'1203680': +"1203680": installDir: Guiding Light launch: - config: oslist: windows executable: Guiding Light.exe type: default -'1203710': +"1203710": installDir: UnMetal launch: - - arguments: '-console' + - arguments: "-console" config: oslist: windows executable: unmetal.exe type: none -'1203760': +"1203760": installDir: Builder VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Builder.exe type: vr -'1203770': +"1203770": installDir: A Moustache in the House launch: - config: oslist: windows executable: Stalker.exe type: default -'1203780': - installDir: Tiamat's Drink +"1203780": + installDir: "Tiamat's Drink" launch: - config: oslist: windows - executable: Tiamat's Drink.exe + executable: "Tiamat's Drink.exe" type: default - config: oslist: linux - executable: Tiamat's Drink.x86 + executable: "Tiamat's Drink.x86" type: default -'1203810': +"1203810": installDir: Slay The Bigies launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SlayTheBigies.exe type: default -'1203850': +"1203850": installDir: Infection launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Infection.exe type: default @@ -69668,7 +68776,7 @@ english: Infection schinese: 传染 tchinese: 传染 -'1203890': +"1203890": installDir: MirageOnlineClassic launch: - config: @@ -69676,25 +68784,25 @@ executable: MirageOnlineClassic.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: MirageOnlineClassic type: default -'1203900': {} -'1203930': +"1203900": {} +"1203930": installDir: The Last Haven launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: TheLastHaven/Binaries/Win32/TheLastHaven-Win32-Shipping.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: TheLastHaven/Binaries/Win64/TheLastHaven-Win64-Shipping.exe type: default -'1203970': +"1203970": installDir: Connection launch: - executable: Game.exe @@ -69703,23 +68811,23 @@ english: The Warmth Between Us schinese: 十天的温度 tchinese: 十天的溫度 -'1203980': {} -'1203990': - installDir: Shine's Adventures 5(World Of Box) +"1203980": {} +"1203990": + installDir: "Shine's Adventures 5(World Of Box)" launch: - config: oslist: windows executable: Shine5.exe type: default -'1204030': +"1204030": installDir: Night Witch 588 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Night Witch 588.exe type: none -'1204080': +"1204080": installDir: Nightfall Hacker launch: - config: @@ -69734,83 +68842,83 @@ oslist: windows executable: nightfall.exe type: default -'1204210': +"1204210": installDir: The Big SokoBang launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: the_big_sokobang.exe type: none -'1204220': +"1204220": installDir: Mommy launch: - executable: Mommy.exe type: none -'1204250': +"1204250": installDir: C.Y.S.M.A launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: CYSMA.exe type: default -'1204270': +"1204270": installDir: NewYearsEve2020 launch: - config: oslist: windows - executable: New Year's Eve 2020.exe + executable: "New Year's Eve 2020.exe" type: default - config: oslist: linux - executable: New Year's Eve 2020.x86_64 + executable: "New Year's Eve 2020.x86_64" type: default nameLocalized: - english: New Year's Eve 2020 + english: "New Year's Eve 2020" french: Nuit du nouvel an 2020 german: Silvester im Jahr 2020 russian: новогодняя ночь 2020 schinese: 跨年模拟器2020 tchinese: 跨年模擬器2020 -'1204280': +"1204280": installDir: Renegade Grounds Episode 2 launch: - executable: RG2.exe type: none -'1204310': {} -'1204320': +"1204310": {} +"1204320": installDir: Ephemeral Tale launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows executable: EphemeralTale.exe type: default -'1204330': - installDir: 'Fight,to the last' +"1204330": + installDir: "Fight,to the last" launch: - - executable: 'Fight,to the last\\Fight,to the last.exe' + - executable: "Fight,to the last\\\\Fight,to the last.exe" type: default -'1204360': +"1204360": installDir: Blink launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Blink Cam executable: Blink.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows description: Blink Force 64bit launch - executable: Blink\\Binaries\\Win64\\Blink-Win64-Shipping.exe + executable: "Blink\\\\Binaries\\\\Win64\\\\Blink-Win64-Shipping.exe" type: none nameLocalized: schinese: Blink 相机 tchinese: Blink 相機 -'1204380': +"1204380": installDir: CityWarHeroes VR launch: - config: @@ -69821,7 +68929,7 @@ oslist: windows executable: CityWarHeroes.exe type: othervr -'1204410': +"1204410": installDir: Kosmokrats launch: - config: @@ -69834,20 +68942,20 @@ description: With Dev Menu executable: Kosmokrats.exe type: none -'1204440': +"1204440": installDir: The GoD Unit launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TheGoDUnit.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: TheGoDUnit.sh type: default -'1204470': +"1204470": installDir: Space Elite Force II launch: - config: @@ -69855,81 +68963,81 @@ executable: SPACE ELITE FORCE II.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: SPACE ELITE FORCE II.x86_64 type: default -'1204480': +"1204480": installDir: Candera The Forgotten Realm launch: - config: oslist: windows executable: Game.exe type: none -'1204490': +"1204490": installDir: 武儒绘卷-启示录 launch: - config: oslist: windows executable: 武儒绘卷-启示录.exe type: none -'1204530': +"1204530": installDir: Cold wires launch: - executable: Cold wires.exe type: none -'1204540': +"1204540": installDir: Pictassembler launch: - config: oslist: windows executable: Pictassembler.exe type: default -'1204630': +"1204630": installDir: Firefight launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Firefight.exe type: none -'1204650': +"1204650": installDir: Pirates Treasure II Steam Edition launch: - config: oslist: windows executable: Pirates Treasure II Steam Edition.exe type: default -'1204670': +"1204670": installDir: Talshard launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Talshard.exe type: default -'1204680': {} -'1204690': {} -'1204710': +"1204680": {} +"1204690": {} +"1204710": installDir: Void Breach launch: - config: oslist: windows executable: Void Breach.exe type: default -'1204720': +"1204720": installDir: Yang2020 Path To Presidency launch: - config: oslist: macos description: TestV1 - executable: Yang2020_Mac_v1.0.app\\Contents\\MacOS\\Yang2020 + executable: "Yang2020_Mac_v1.0.app\\\\Contents\\\\MacOS\\\\Yang2020" type: default - config: oslist: windows executable: Yang2020.exe type: default -'1204740': +"1204740": installDir: How Stories Die launch: - config: @@ -69944,45 +69052,45 @@ oslist: linux executable: HowStoriesDie.sh type: none -'1204760': +"1204760": installDir: James Town Courier Frog MD launch: - executable: James Town Courier Frog MD.exe type: none -'1204780': +"1204780": installDir: Hotaru launch: - config: oslist: windows executable: Hotaru.exe type: default -'1204790': {} -'1204840': {} -'1204860': +"1204790": {} +"1204840": {} +"1204860": installDir: REFUGE launch: - executable: REFUGE.exe type: default -'1204870': - installDir: Schrodinger's cat simulator - PT +"1204870": + installDir: "Schrodinger's cat simulator - PT" launch: - config: oslist: windows - executable: Schrodinger's cat simulator.exe + executable: "Schrodinger's cat simulator.exe" type: none -'1204880': +"1204880": installDir: Bionic Hunter VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: MH_PC_STVR.exe type: vr - config: oslist: macos - executable: MH_PC_STVR.app\\Contents\\MacOS\\MH_PC_STVR + executable: "MH_PC_STVR.app\\\\Contents\\\\MacOS\\\\MH_PC_STVR" type: vr -'1204930': +"1204930": installDir: Hop Step Sing! Astral Piece launch: - config: @@ -69991,44 +69099,44 @@ type: vr nameLocalized: japanese: Hop Step Sing!『アストラル・ピース』 -'1204950': +"1204950": installDir: Cecil Run launch: - config: oslist: windows - executable: Cecil_Run_x86_32bit\\Cecil Run.exe + executable: "Cecil_Run_x86_32bit\\\\Cecil Run.exe" type: default -'1205020': +"1205020": installDir: Jack troubles launch: - config: oslist: windows executable: game.exe type: default -'1205040': +"1205040": installDir: Granny Chapter Two launch: - config: oslist: windows executable: Granny Chapter Two.exe type: default -'1205060': - installDir: 'Rock, Paper, Scissors Simulator' +"1205060": + installDir: "Rock, Paper, Scissors Simulator" launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: RPSS.exe type: default -'1205130': {} -'1205140': +"1205130": {} +"1205140": installDir: Kika & Daigo A Curious Tale launch: - config: oslist: windows executable: Kika & Daigo A Curious Tale.exe type: default -'1205150': +"1205150": installDir: Calamari Clash launch: - config: @@ -70039,12 +69147,12 @@ oslist: linux executable: calamari_clash.x86_64 type: default -'1205160': +"1205160": installDir: DecadanceThinking launch: - executable: Decadance_thinking.exe type: none -'1205240': +"1205240": installDir: Tentacle Girl launch: - config: @@ -70061,19 +69169,19 @@ russian: Щупальце девушка schinese: Tentacle Girl tchinese: 觸手少女 -'1205270': +"1205270": nameLocalized: schinese: 魔忌 - Magin tchinese: 魔忌 - Magin -'1205370': {} -'1205390': {} -'1205420': {} -'1205430': {} -'1205450': +"1205370": {} +"1205390": {} +"1205420": {} +"1205430": {} +"1205450": installDir: Turnip Boy Commits Tax Evasion launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Turnip Boy Commits Tax Evasion.exe type: default @@ -70082,84 +69190,78 @@ executable: Turnip Boy Commits Tax Evasion.app type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: Turnip Boy Commits Tax Evasion.x86_64 type: none -'1205480': +"1205480": installDir: Monster Jam Steel Titans 2 launch: - - arguments: '-nohmd' + - arguments: "-nohmd" config: - osarch: '64' + osarch: "64" oslist: windows executable: MJST2.exe type: default - - arguments: '-windowed -log' + - arguments: "-windowed -log" config: betakey: nightly - osarch: '64' + osarch: "64" oslist: windows description: w/ Log executable: MJST2.exe type: option1 - - arguments: '-vr' + - arguments: "-vr" config: - betakey: 'mjst2vr ' - osarch: '64' + betakey: "mjst2vr " + osarch: "64" oslist: windows description: Monster Jam Steel Titans 2 VR - description_loc: - english: Monster Jam Steel Titans 2 VR executable: MJST2.exe type: option2 -'1205520': +"1205520": installDir: Pentiment launch: - config: betakey: default description: Launch Application - description_loc: - english: Launch Application executable: placeholder.txt type: default - - arguments: '-steam' + - arguments: "-steam" description: Launch Application - description_loc: - english: Launch Application executable: Pentiment.exe type: default -'1205540': +"1205540": installDir: Shmup Arena launch: - executable: Shmup Arena.exe type: none -'1205560': +"1205560": installDir: Taimanin Yukikaze Trial launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: VinosWinPlayer.exe type: default nameLocalized: - english: 'Taimanin Yukikaze 1: Trial' + english: "Taimanin Yukikaze 1: Trial" japanese: 対魔忍ユキカゼ・体験版 - koreana: '대마인 유키카제 : 체험판 ' + koreana: "대마인 유키카제 : 체험판 " schinese: 对魔忍雪风1・体验版 tchinese: 對魔忍雪風1・試玩版 -'1205590': +"1205590": installDir: jxxq launch: - executable: Game.exe type: none nameLocalized: english: Palace of sky -'1205620': +"1205620": installDir: ReversiQuest2 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: reversiquest2.exe type: default @@ -70171,25 +69273,25 @@ japanese: リバーシクエスト2 schinese: 奥赛罗冒险2 tchinese: 奧賽羅冒險2 -'1205670': +"1205670": nameLocalized: schinese: 吞食天地 2019 -'1205680': {} -'1205690': +"1205680": {} +"1205690": installDir: Defending Frontiers launch: - executable: Defending Frontiers.exe type: none -'1205720': {} -'1205800': +"1205720": {} +"1205800": installDir: Hexon launch: - config: oslist: windows executable: Hexon/Hexon.exe type: default -'1205900': - installDir: Alwa's Legacy +"1205900": + installDir: "Alwa's Legacy" launch: - config: oslist: windows @@ -70197,19 +69299,19 @@ type: default - config: oslist: macos - executable: AlwasLegacy.app\\Contents\\MacOS\\AlwasLegacy + executable: "AlwasLegacy.app\\\\Contents\\\\MacOS\\\\AlwasLegacy" type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: AlwasLegacy.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: AlwasLegacy.x86_64 type: default -'1205950': +"1205950": installDir: Seeds of Chaos launch: - config: @@ -70224,64 +69326,60 @@ oslist: linux executable: seeds-of-chaos.sh type: default -'1205970': +"1205970": installDir: MX vs ATV Legends launch: - - arguments: '-nohmd' + - arguments: "-nohmd" config: - osarch: '64' + osarch: "64" oslist: windows description: Game executable: MxGame2021.exe type: default - - arguments: '-nohmd -nosteam' + - arguments: "-nohmd -nosteam" config: betakey: nightly - osarch: '64' + osarch: "64" oslist: windows description: Without Steam Services - description_loc: - english: Without Steam Services executable: MxGame2021.exe type: option1 - - arguments: '-vr' + - arguments: "-vr" config: betakey: nightly - osarch: '64' + osarch: "64" oslist: windows description: in VR - description_loc: - english: in VR executable: MxGame2021.exe type: option2 -'1206000': +"1206000": installDir: VNHL2022 launch: - config: oslist: windows executable: VNHL 2022.exe type: default -'1206010': +"1206010": installDir: DonDon Busters!! launch: - - executable: DonDonBusters!!\\DonDonBusters.exe + - executable: "DonDonBusters!!\\\\DonDonBusters.exe" type: none -'1206020': {} -'1206050': +"1206020": {} +"1206050": installDir: Sea King launch: - config: oslist: windows executable: SeaKing.exe type: default -'1206060': +"1206060": installDir: HappyGame launch: - config: oslist: windows executable: HappyGame.exe type: default - - arguments: '-force-glcore42 -force-clamped' + - arguments: "-force-glcore42 -force-clamped" config: oslist: linux executable: HappyGame.x86 @@ -70290,22 +69388,22 @@ oslist: macos executable: HappyGame.app type: default -'1206070': {} -'1206080': +"1206070": {} +"1206080": installDir: Zombie World Apocalypse launch: - config: oslist: windows executable: Zombie World Apocalypse.exe type: vr -'1206110': +"1206110": installDir: Frontline The Great Patriotic War launch: - config: oslist: windows executable: PW.exe type: none -'1206140': +"1206140": installDir: Sokpop S03 Frog struggles launch: - config: @@ -70316,14 +69414,14 @@ oslist: macos executable: frogstruggles_mac.app type: none -'1206180': +"1206180": installDir: Position launch: - config: oslist: windows executable: Position.exe type: default -'1206230': +"1206230": installDir: Sokpop S04 Kart kids launch: - config: @@ -70334,7 +69432,7 @@ oslist: macos executable: kartkids_mac.app type: none -'1206260': +"1206260": installDir: Sokpop S05 Pilfer launch: - config: @@ -70345,7 +69443,7 @@ oslist: macos executable: pilfer_mac.app type: none -'1206270': +"1206270": installDir: Wrecker launch: - config: @@ -70357,23 +69455,23 @@ executable: WRECKER.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: WRECKER type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: WRECKER type: default -'1206280': +"1206280": installDir: Thunderflash launch: - config: oslist: windows executable: Thunderflash.exe type: default -'1206310': +"1206310": installDir: Tranject launch: - config: @@ -70385,11 +69483,11 @@ executable: Mac OS X.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Tranject.x86_64 type: default -'1206350': +"1206350": installDir: JORRY launch: - config: @@ -70400,15 +69498,15 @@ oslist: windows executable: SETUP.exe type: config -'1206430': +"1206430": installDir: The Unfinished Swan launch: - config: oslist: windows executable: TUS.exe type: default -'1206440': {} -'1206470': +"1206440": {} +"1206470": installDir: Suspicious Slide launch: - config: @@ -70419,21 +69517,21 @@ oslist: macos executable: SSlide_Mac.app type: default -'1206490': +"1206490": installDir: Ultimate Disc Golf launch: - config: oslist: windows executable: UltimateDiscGolf_4_22.exe type: default -'1206510': +"1206510": installDir: 20.01.06 launch: - config: oslist: windows executable: shadow.exe type: none -'1206550': +"1206550": installDir: win launch: - config: @@ -70443,7 +69541,7 @@ nameLocalized: english: Kick Of Dungeon schinese: 踢飞地牢 -'1206560': +"1206560": installDir: worldbox launch: - config: @@ -70458,7 +69556,7 @@ oslist: linux executable: worldbox type: default -'1206590': +"1206590": installDir: Alchemelee launch: - config: @@ -70473,29 +69571,29 @@ oslist: macos executable: Alchemelee.app type: default -'1206600': +"1206600": installDir: Almighty launch: - config: oslist: windows executable: Almighty.exe type: none -'1206660': +"1206660": installDir: Monster Capture King launch: - config: oslist: windows executable: Game.exe type: default -'1206700': +"1206700": installDir: VZLOM JOPI launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: VZLOM_JOPI.exe type: default -'1206720': +"1206720": installDir: krakenscurse launch: - config: @@ -70506,23 +69604,23 @@ oslist: macos executable: krakenscurse.app type: none -'1206730': +"1206730": installDir: Tower of Arcana launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: Windows_Content\\TowerOfArcana\\WindowsNoEditor\\Empty.exe + executable: "Windows_Content\\\\TowerOfArcana\\\\WindowsNoEditor\\\\Empty.exe" type: default -'1206770': +"1206770": installDir: SpassTaxi launch: - - arguments: '-steam' + - arguments: "-steam" config: oslist: windows executable: SpassTaxi.exe type: default -'1206810': +"1206810": installDir: Sokpop S05 Wamu Wamu 2 launch: - config: @@ -70533,73 +69631,73 @@ oslist: macos executable: wamuwamu2_mac.app type: none -'1206840': +"1206840": installDir: Lost Roads launch: - config: oslist: windows executable: LostRoads.exe type: none -'1206870': +"1206870": installDir: Pinball universe launch: - config: oslist: windows executable: pinball universe.exe type: default -'1206900': +"1206900": installDir: Physical Glitch launch: - config: oslist: windows executable: Physical Glitch.exe type: default -'1206910': +"1206910": installDir: Bizarre Barber launch: - config: oslist: windows executable: BizarreBarber.exe type: vr -'1206920': +"1206920": installDir: FLYING SHOT launch: - config: oslist: windows executable: FlyingShot.exe type: default -'1206930': +"1206930": installDir: Malediction launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Malediction.exe type: default -'1206960': +"1206960": installDir: Cloudlands 2 launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: Cloudlands 2.exe type: vr -'1207010': +"1207010": installDir: Me and myself launch: - config: oslist: windows executable: MeAndMyself.exe type: default -'1207020': +"1207020": installDir: FLS launch: - config: oslist: windows executable: FLS.exe type: default -'1207130': +"1207130": installDir: Many Faces launch: - config: @@ -70610,14 +69708,14 @@ oslist: linux executable: Many_Faces type: default -'1207260': +"1207260": installDir: FlickerMAZE launch: - config: oslist: windows executable: FlickerMAZE.exe type: none -'1207310': +"1207310": installDir: Gizmos Steampunk Nonograms launch: - config: @@ -70625,17 +69723,17 @@ executable: Gizmos.exe type: default nameLocalized: - french: 'Gizmos: Steampunk Nonogrammes' - german: 'Gizmos: Steampunk Nonogramme' - russian: 'Гизмо: Японские кроссворды' -'1207320': + french: "Gizmos: Steampunk Nonogrammes" + german: "Gizmos: Steampunk Nonogramme" + russian: "Гизмо: Японские кроссворды" +"1207320": installDir: GrayZone launch: - executable: GrayZone.exe type: none -'1207360': {} -'1207370': {} -'1207380': +"1207360": {} +"1207370": {} +"1207380": installDir: Adventure Boy Jailbreak launch: - config: @@ -70644,9 +69742,9 @@ type: none - config: oslist: macos - executable: Contents\\MacOS\\Adventure Boy Jailbreak + executable: "Contents\\\\MacOS\\\\Adventure Boy Jailbreak" type: default -'1207400': +"1207400": installDir: Sokpop SO6 Klym launch: - config: @@ -70657,16 +69755,16 @@ oslist: macos executable: klym_mac.app type: none -'1207420': +"1207420": installDir: Chico launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch Chico executable: Chico.exe type: default -'1207480': +"1207480": installDir: Sokpop S07 Pupper park launch: - config: @@ -70677,22 +69775,22 @@ oslist: macos executable: pupperpark_mac.app type: none -'1207500': +"1207500": installDir: Coffee Break launch: - config: oslist: windows - executable: Coffee Break\\Coffee Break.exe + executable: "Coffee Break\\\\Coffee Break.exe" type: default -'1207520': +"1207520": installDir: Aigor Escape from Bishop launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Aigor_Escape.exe type: default -'1207650': +"1207650": installDir: Suzerain launch: - config: @@ -70703,16 +69801,16 @@ oslist: macos executable: SuzerainMac.app type: default -'1207690': {} -'1207730': {} -'1207770': +"1207690": {} +"1207730": {} +"1207770": installDir: Planet Bounce launch: - config: oslist: windows executable: Planet Bounce.exe type: default -'1207780': +"1207780": installDir: Wish launch: - config: @@ -70723,15 +69821,15 @@ oslist: macos executable: Game.app type: default -'1207800': +"1207800": installDir: Mix-Sign launch: - config: - betakey: 'Here is the beta game file, it is in Portuguese and later I will put more stuff in it.' + betakey: "Here is the beta game file, it is in Portuguese and later I will put more stuff in it." oslist: windows executable: Game.exe type: default -'1207840': +"1207840": installDir: ExtraGalactica launch: - config: @@ -70742,7 +69840,7 @@ oslist: macos executable: ExtraGalactica.app type: default -'1207850': +"1207850": installDir: Project RTD launch: - config: @@ -70750,18 +69848,18 @@ executable: RTD.exe type: none nameLocalized: - english: 'Project RTD: Random Tower Defense PvP' - koreana: '프로젝트 랜타디: 멀티 대전 디펜스' -'1207870': {} -'1207880': + english: "Project RTD: Random Tower Defense PvP" + koreana: "프로젝트 랜타디: 멀티 대전 디펜스" +"1207870": {} +"1207880": installDir: Nasty Rogue launch: - config: oslist: windows executable: NastyRogue(1.0.0)_Alpha.exe type: default -'1208030': - installDir: Let's Learn Japanese! Vocabulary +"1208030": + installDir: "Let's Learn Japanese! Vocabulary" launch: - config: oslist: windows @@ -70775,21 +69873,21 @@ portuguese: Vamos Aprender Japonês! Vocabulário russian: Учим японский язык! словарь spanish: ¡Aprendamos Japonés! Vocabulario -'1208040': +"1208040": installDir: Axiel launch: - config: oslist: windows executable: Axiel.exe type: default -'1208050': - installDir: Shine's Adventures 3 (Sea Fight) +"1208050": + installDir: "Shine's Adventures 3 (Sea Fight)" launch: - config: oslist: windows executable: Shine3.exe type: default -'1208090': +"1208090": installDir: SymulatorZielarza launch: - config: @@ -70802,53 +69900,53 @@ description: VR version executable: SymulatorZielarza.exe type: vr -'1208120': +"1208120": installDir: Hentai Like a Boss 2 launch: - executable: Hentai Like a Boss 2.exe type: none -'1208170': {} -'1208180': {} -'1208220': +"1208170": {} +"1208180": {} +"1208220": installDir: Escape from Life Inc launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Life Inc.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Life Inc.x86_64 type: default -'1208240': +"1208240": installDir: Reach Coin launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ReachCoin.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: ReachCoin.exe type: default -'1208260': +"1208260": installDir: Hentai Vs Furries launch: - executable: HentaiVsFurries.exe type: none -'1208270': {} -'1208330': +"1208270": {} +"1208330": installDir: Idle Space launch: - config: oslist: windows executable: Idle Space.exe type: default - workingdir: . + workingdir: "." - config: oslist: linux executable: start @@ -70857,30 +69955,30 @@ oslist: macos executable: start type: default -'1208370': +"1208370": installDir: DUMB Infernal launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: DeGame_x64.exe type: default nameLocalized: english: DUMB Infernal -'1208380': +"1208380": installDir: PhyxBox launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: PhyxBox.exe type: vr -'1208400': +"1208400": installDir: Path launch: - executable: Path.exe type: default -'1208420': +"1208420": installDir: War Ender Evolution launch: - config: @@ -70897,7 +69995,7 @@ description: View Readme EN executable: README EN.txt type: none -'1208460': +"1208460": installDir: Super Crystal Hunter launch: - config: @@ -70905,7 +70003,7 @@ executable: game.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: game.x64 type: default @@ -70916,30 +70014,30 @@ type: default - config: oslist: windows - ownsdlc: '1222530' + ownsdlc: "1222530" description: Sketch Pack executable: sketchpack.bat type: option1 - config: oslist: linux - ownsdlc: '1222530' + ownsdlc: "1222530" description: Sketch Pack executable: sketchpack.sh type: option1 - config: oslist: macos - ownsdlc: '1222530' + ownsdlc: "1222530" description: Sketch Pack executable: sketchpack.sh type: option1 -'1208470': +"1208470": installDir: Foxfall launch: - config: oslist: windows executable: Foxfall Deluxe.exe type: none -'1208490': +"1208490": installDir: TAXIDERMY launch: - config: @@ -70948,8 +70046,8 @@ type: none nameLocalized: portuguese: TAXIDERMIA -'1208500': {} -'1208510': +"1208500": {} +"1208510": installDir: Kingdom Warrior launch: - config: @@ -70958,15 +70056,15 @@ type: default nameLocalized: schinese: 王国勇士 -'1208520': - installDir: The Alchemist's House +"1208520": + installDir: "The Alchemist's House" launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TheAlchemist.exe type: default -'1208550': +"1208550": installDir: DanielX.net Paint Composer launch: - config: @@ -70977,35 +70075,35 @@ oslist: macos executable: DanielX.net Paint Composer.app/Contents/MacOS/DanielX.net Paint Composer type: default - - arguments: '--no-sandbox' + - arguments: "--no-sandbox" config: oslist: linux executable: composer-app type: default -'1208590': +"1208590": installDir: Temple Of Snek launch: - config: oslist: windows executable: Snek.exe type: default -'1208600': +"1208600": installDir: Bunny Park launch: - executable: BunnyPark.exe type: none -'1208620': {} -'1208740': {} -'1208770': +"1208620": {} +"1208740": {} +"1208770": installDir: Saber Fight VR launch: - config: oslist: windows executable: Saber Fight VR/Saber Fight VR.exe type: openvroverlay -'1208800': {} -'1208810': - installDir: Green An Orc's Life +"1208800": {} +"1208810": + installDir: "Green An Orc's Life" launch: - config: oslist: windows @@ -71019,47 +70117,47 @@ oslist: macos executable: Green type: default -'1208830': +"1208830": installDir: Oil Wars launch: - config: oslist: windows executable: Launcher.exe type: default -'1208840': +"1208840": installDir: FireTry launch: - - arguments: '-steam' + - arguments: "-steam" executable: FireTry.exe type: default -'1208850': +"1208850": installDir: Kanojo x Switch launch: - executable: Kanojo x Switch.exe type: none -'1208860': +"1208860": installDir: The Blackbird of Amor launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: BlackbirdOA.exe type: default -'1208870': +"1208870": installDir: FLAGFIGHTS EA 0.1 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: FLAGFIGHTS.exe type: default -'1208890': {} -'1208900': +"1208890": {} +"1208900": installDir: BOMBERX launch: - executable: BomberX.exe type: none -'1209000': +"1209000": installDir: FengLiuDaoKe launch: - config: @@ -71068,22 +70166,22 @@ type: default nameLocalized: english: romantic player -'1209020': {} -'1209040': +"1209020": {} +"1209040": installDir: Cyber Hunter launch: - config: oslist: windows executable: launcher.exe type: none -'1209060': +"1209060": installDir: Cowboy launch: - config: oslist: windows executable: game.exe type: default -'1209080': +"1209080": installDir: Defense and Revenge launch: - config: @@ -71091,24 +70189,24 @@ description: Launch executable: DaR.exe type: default -'1209140': +"1209140": installDir: Peace Data launch: - executable: Peace Data.exe type: none -'1209160': +"1209160": installDir: The Square Game launch: - config: oslist: windows executable: The Square Game.exe type: none -'1209170': +"1209170": installDir: 匿名信:失心者 Stayer launch: - executable: p3_stream.exe type: none -'1209190': +"1209190": installDir: Steamliner launch: - config: @@ -71116,28 +70214,28 @@ description: Launch executable: Steamliner.exe type: vr -'1209200': +"1209200": installDir: Mompreneur Pizza Cooking Life Sim launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Mompreneur.exe type: default -'1209300': +"1209300": installDir: loathe the game launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: nw.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: nw.exe type: default -'1209330': +"1209330": installDir: SakuraKnight launch: - config: @@ -71152,15 +70250,15 @@ oslist: macos executable: SakuraKnight.app type: default -'1209360': +"1209360": installDir: Monster Truck Championship launch: - - arguments: '-nohmd' + - arguments: "-nohmd" config: oslist: windows executable: MonsterTruck.exe type: default -'1209410': +"1209410": installDir: King of Seas launch: - config: @@ -71169,14 +70267,14 @@ type: default nameLocalized: schinese: 海上霸主 -'1209430': +"1209430": installDir: Dungeon Cards launch: - config: oslist: windows executable: Dungeon Cards PC Standalone.exe type: default -'1209440': +"1209440": installDir: capyhoky launch: - config: @@ -71187,34 +70285,34 @@ oslist: macos executable: capyhoky.app type: none -'1209490': +"1209490": installDir: Exit the Gungeon launch: - config: oslist: windows executable: XTG.exe type: default -'1209520': +"1209520": installDir: Smart Moves launch: - executable: game.exe type: none -'1209570': +"1209570": installDir: Cosmos launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Cosmos.exe type: default -'1209610': +"1209610": installDir: Virtually Real Life launch: - config: oslist: windows executable: VirtuallyRealLife.exe type: none -'1209650': +"1209650": installDir: The Island Story launch: - config: @@ -71224,38 +70322,38 @@ nameLocalized: schinese: 海岛故事 tchinese: 海島故事 -'1209740': +"1209740": installDir: Coloniam launch: - config: oslist: windows executable: Coloniam.exe type: vr -'1209760': +"1209760": installDir: Aloe and Cal launch: - config: oslist: windows executable: Aloe and Cal.exe type: none -'1209810': {} -'1209860': +"1209810": {} +"1209860": installDir: BDSM Big Drunk Satanic Massacre Demo launch: - config: oslist: windows executable: BDSM Big Drunk Satanic Massacre Demo.exe type: none -'1209870': {} -'1209960': {} -'1209980': +"1209870": {} +"1209960": {} +"1209980": installDir: CaveBugBoy launch: - config: oslist: windows executable: CAVEBUGBOY.exe type: default -'12100': +"12100": installDir: Grand Theft Auto 3 launch: - config: @@ -71264,7 +70362,7 @@ - config: oslist: macos executable: Grand Theft Auto3.app -'1210010': +"1210010": installDir: sokstories launch: - config: @@ -71275,64 +70373,62 @@ oslist: macos executable: sokstories.app type: none -'1210060': +"1210060": installDir: Submersed launch: - config: oslist: windows executable: Submersed.exe type: default -'1210150': +"1210150": installDir: Ageless launch: - config: oslist: windows executable: Ageless.exe type: default -'1210220': +"1210220": installDir: Circle launch: - config: oslist: windows executable: Circle.exe type: default -'1210230': +"1210230": installDir: Suits Absolute Power launch: - config: oslist: windows description: Suits 2 - description_loc: - english: Suits 2 executable: Suits2_New.exe type: option1 -'1210250': +"1210250": installDir: Island Saver launch: - config: oslist: windows executable: moneybox.exe type: default -'1210320': +"1210320": installDir: Potion Craft launch: - config: oslist: windows executable: Potion Craft.exe type: default -'1210330': +"1210330": installDir: Thunder Kid II launch: - executable: Thunder Kid 2.exe type: none -'1210340': +"1210340": installDir: Breakneck City launch: - config: oslist: windows executable: Breakneck City.exe type: none -'1210360': +"1210360": installDir: War Trigger 3 launch: - config: @@ -71343,15 +70439,15 @@ oslist: windows executable: War Trigger 3.exe type: default -'1210410': +"1210410": installDir: Destinata Red Edition launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Destinanta_RED_Fin.exe type: default -'1210490': +"1210490": installDir: YesterMorrow launch: - config: @@ -71361,22 +70457,22 @@ nameLocalized: schinese: 昨日未来 tchinese: 昨日未來 -'1210520': {} -'1210530': +"1210520": {} +"1210530": installDir: Art Heist launch: - config: oslist: windows executable: ArtHeist.exe type: othervr -'1210570': +"1210570": installDir: Rocket Ghost Aidan 1 launch: - config: oslist: windows executable: Rocket Ghost Aidan.exe type: default -'1210590': +"1210590": installDir: PEY launch: - config: @@ -71385,28 +70481,28 @@ type: default nameLocalized: english: Pipeline Of Emperor Yu -'1210620': - installDir: lil' Sherman +"1210620": + installDir: "lil' Sherman" launch: - config: oslist: windows - executable: lil' Sherman - Dabster Entertainment.exe + executable: "lil' Sherman - Dabster Entertainment.exe" type: none -'1210650': +"1210650": installDir: ESCAPE ROOM VR launch: - config: oslist: windows executable: ESCAPE ROOM VR.exe type: vr -'1210660': +"1210660": installDir: Daemonic Runner launch: - config: oslist: windows executable: Prog.exe type: none -'1210680': +"1210680": installDir: fengshen launch: - config: @@ -71415,96 +70511,92 @@ type: default nameLocalized: schinese: 封神纪OL -'1210700': +"1210700": installDir: Skull Rogue launch: - executable: Skull Rogue.exe type: none -'1210740': - installDir: Lumin's Path +"1210740": + installDir: "Lumin's Path" launch: - config: oslist: windows - executable: Lumin's Path.exe + executable: "Lumin's Path.exe" type: none -'1210780': +"1210780": installDir: Flatspace launch: - config: oslist: windows executable: Flatspace.exe type: default -'1210790': +"1210790": installDir: RC Plane VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: rc_plane_vr.exe type: vr - config: - osarch: '64' + osarch: "64" oslist: linux executable: rc_plane_vr type: vr -'1210800': +"1210800": installDir: Rum & Gun launch: - executable: Rum and Gun.exe type: default -'1210850': +"1210850": installDir: Super Kickers League launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SuperKickersLeague.exe type: default -'1210880': +"1210880": installDir: Dusk Warlocks launch: - config: oslist: windows executable: Dusk Warlocks.exe type: none -'1210910': +"1210910": installDir: Night Of The Living Dead VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: NOTLD.exe type: othervr -'1210930': +"1210930": installDir: AIRWARS launch: - config: oslist: windows description: AIRWARS PC - description_loc: - english: AIRWARS PC - executable: PC\\AIRWARS.exe + executable: "PC\\\\AIRWARS.exe" type: default - config: oslist: windows - ownsdlc: '1885320' + ownsdlc: "1885320" description: AIRWARS VR - description_loc: - english: AIRWARS VR - executable: VR\\AIRWARS.exe + executable: "VR\\\\AIRWARS.exe" type: vr -'1210970': +"1210970": installDir: Carpet Bombing launch: - config: oslist: windows executable: Carpet Bombing.exe type: none -'12110': +"12110": installDir: Grand Theft Auto Vice City launch: - executable: gta-vc.exe -'1211050': +"1211050": installDir: Once More launch: - config: @@ -71513,20 +70605,20 @@ type: default - config: oslist: macos - executable: once_more.app\\Contents\\MacOS\\once_more + executable: "once_more.app\\\\Contents\\\\MacOS\\\\once_more" type: default -'1211060': +"1211060": installDir: MissionAmazing launch: - config: oslist: windows executable: MissionAmazing.exe type: default -'1211110': +"1211110": installDir: Petal Crash launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Petal Crash.exe type: default @@ -71541,25 +70633,21 @@ - config: oslist: windows description: Petal Crash Online - description_loc: - english: Petal Crash Online executable: Petal Crash Online/PetalCrashOnline.exe type: option2 - config: oslist: linux description: Petal Crash Online - description_loc: - english: Petal Crash Online executable: PetalCrashOnline.AppImage type: option2 -'1211160': +"1211160": installDir: Catch Your Kitty launch: - config: oslist: windows executable: Catch Your Kitty.exe type: none -'1211240': +"1211240": installDir: Trifox launch: - config: @@ -71568,23 +70656,23 @@ type: default nameLocalized: schinese: 三狐传说 Trifox -'1211270': +"1211270": installDir: BAdventure launch: - config: oslist: windows - executable: BAdventure\\Play.exe + executable: "BAdventure\\\\Play.exe" type: default -'1211280': {} -'1211320': +"1211280": {} +"1211320": installDir: Journey to New Atlantis launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Journey.exe type: default -'1211350': +"1211350": installDir: 红魔事件簿 The Note of Red Evil launch: - executable: Game.exe @@ -71592,32 +70680,32 @@ nameLocalized: english: The Note of Red Evil schinese: 红魔事件簿 -'1211360': +"1211360": installDir: NEOMORPH launch: - config: oslist: windows executable: Neomorph.exe type: default -'1211390': +"1211390": installDir: World of Voidia(虚亚世界) launch: - executable: Game.exe type: default -'1211420': +"1211420": installDir: Find Me Horror Game launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: FindMeHorrorGame.exe type: default -'1211490': +"1211490": installDir: Math Path launch: - executable: Math Path.exe type: default -'1211540': +"1211540": installDir: bobo robot launch: - config: @@ -71628,15 +70716,15 @@ oslist: macos executable: boborobot.app type: none -'1211610': +"1211610": installDir: Tune the Tone launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Tune the Tone.exe type: default -'1211630': +"1211630": installDir: The Jackbox Party Pack 7 launch: - config: @@ -71644,7 +70732,7 @@ executable: The Jackbox Party Pack 7.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Launcher.sh type: default @@ -71652,7 +70740,7 @@ oslist: macos executable: The Jackbox Party Pack 7.app type: default -'1211640': +"1211640": installDir: DeadRussia launch: - config: @@ -71660,65 +70748,65 @@ executable: DeadRussia.exe type: none nameLocalized: - russian: 'Мёртвая Родина: Зомби Кооп' -'1211650': - installDir: Cirno's Perfect Summer Vacation + russian: "Мёртвая Родина: Зомби Кооп" +"1211650": + installDir: "Cirno's Perfect Summer Vacation" launch: - config: oslist: windows - executable: CirnosPerfectSummer\\CPS.exe + executable: "CirnosPerfectSummer\\\\CPS.exe" type: default - config: oslist: macos - executable: CirnosPerfectSummer\\CPS.app + executable: "CirnosPerfectSummer\\\\CPS.app" type: default -'1211700': +"1211700": installDir: Trantor launch: - - arguments: \"TRANTOR2.EXE\" -conf \"dosbox_trantor.conf\" -noconsole + - arguments: "\\\"TRANTOR2.EXE\\\" -conf \\\"dosbox_trantor.conf\\\" -noconsole" config: oslist: windows - executable: dosbox_windows\\dosbox.exe + executable: "dosbox_windows\\\\dosbox.exe" type: none - config: oslist: linux executable: runTrantor.sh type: none -'1211710': +"1211710": installDir: UFO ESCAPE launch: - config: oslist: windows executable: UFOESCAPE.exe type: none -'1211730': +"1211730": installDir: Infferno launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: Infferno.exe type: default workingdir: Infferno_Data - config: - osarch: '64' + osarch: "64" oslist: windows executable: Infferno.exe type: default workingdir: Infferno_Data - config: - osarch: '32' + osarch: "32" oslist: linux executable: Infferno.x86 type: default workingdir: Infferno_Data - config: - osarch: '64' + osarch: "64" oslist: linux executable: Infferno.x86_64 type: default workingdir: Infferno_Data -'1211740': +"1211740": installDir: Guardian_of_Lore launch: - config: @@ -71729,24 +70817,24 @@ oslist: macos executable: GOLMac.app type: none -'1211780': +"1211780": installDir: Last in Orbit launch: - config: oslist: windows executable: LastInOrbit.exe type: default -'1211790': +"1211790": installDir: Bad Girl launch: - executable: BadGirl.exe type: none -'1211800': +"1211800": installDir: Live checkpoint launch: - executable: Live checkpoint.exe type: none -'1211830': +"1211830": installDir: Explorers of the Abyss launch: - executable: Game.exe @@ -71755,11 +70843,11 @@ japanese: 深淵の探索者 schinese: 深渊探索者 tchinese: 深淵探索者 -'1211930': +"1211930": installDir: Ghost on the Shore launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: gots.exe type: default @@ -71767,19 +70855,19 @@ oslist: macos executable: gots.app type: default -'1211950': +"1211950": installDir: Sheol launch: - config: oslist: windows executable: sheol.exe type: none -'12120': +"12120": installDir: Grand Theft Auto San Andreas launch: - executable: gta-sa.exe -'1212020': - installDir: Void's Calling +"1212020": + installDir: "Void's Calling" launch: - config: oslist: windows @@ -71789,15 +70877,15 @@ oslist: linux executable: VoidCalling.sh type: default -'1212030': {} -'1212040': +"1212030": {} +"1212040": installDir: Paws and Effect launch: - config: oslist: windows executable: Paws_and_Effect.exe type: default -'1212170': +"1212170": installDir: sokbots launch: - config: @@ -71808,8 +70896,8 @@ oslist: macos executable: sokbots.app type: default -'1212180': {} -'1212190': +"1212180": {} +"1212190": installDir: deerhunterII launch: - config: @@ -71820,34 +70908,34 @@ oslist: macos executable: deerhunterII.app type: none -'1212290': +"1212290": installDir: Kubble Star launch: - config: oslist: windows executable: kubble_star.exe type: default -'1212300': +"1212300": installDir: Reek launch: - config: oslist: windows executable: Reek.exe type: default -'1212330': +"1212330": installDir: Skin Stealers launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: nw.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: nw.exe type: default -'1212370': +"1212370": installDir: Boolean launch: - config: @@ -71858,7 +70946,7 @@ oslist: linux executable: Boolean.x86 type: default -'1212380': +"1212380": installDir: SpaceGeon launch: - config: @@ -71867,56 +70955,56 @@ type: default - config: oslist: windows - executable: ModUploadingSoftware\\SpaceGeon_Workshop.exe + executable: "ModUploadingSoftware\\\\SpaceGeon_Workshop.exe" type: editor -'1212410': +"1212410": installDir: Hourglass launch: - config: oslist: windows executable: Hourglass.exe type: default -'1212430': {} -'1212440': +"1212430": {} +"1212440": installDir: ForestWoodman launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: WindowsNoEditor\\ForestWoodman.exe + executable: "WindowsNoEditor\\\\ForestWoodman.exe" type: default -'1212450': +"1212450": installDir: Mineirinho Shooter DC launch: - config: oslist: windows - executable: MSDC\\MSDC.exe + executable: "MSDC\\\\MSDC.exe" type: default -'1212460': +"1212460": installDir: Caveman The Game launch: - config: oslist: windows executable: CavemanTheGame.exe type: default -'1212470': +"1212470": installDir: Fourthy launch: - executable: fourthy.exe type: none -'1212500': {} -'1212510': {} -'1212530': +"1212500": {} +"1212510": {} +"1212530": installDir: The Blueness of a Wound launch: - executable: The Blueness of a Wound.exe type: none -'1212580': +"1212580": nameLocalized: japanese: ジャンヌ・ダルク:幻想の旅 schinese: 贞德:奇幻之旅 tchinese: 貞德:奇幻之旅 -'1212600': +"1212600": installDir: maid of desire launch: - config: @@ -71927,7 +71015,7 @@ japanese: 武道戦姫:欲望メイド schinese: 武道战姬:欲望女仆 tchinese: 武道戰姬:欲望女僕 -'1212740': +"1212740": installDir: CHAMELEON launch: - config: @@ -71936,67 +71024,67 @@ type: default nameLocalized: english: CHAMELEON - japanese: 'くるくるカメレオン ' -'1212750': + japanese: "くるくるカメレオン " +"1212750": installDir: Undead zombies launch: - config: oslist: windows executable: game.exe type: default -'1212780': +"1212780": installDir: Ai no Uta launch: - config: oslist: windows executable: MyGame.exe type: default -'1212830': +"1212830": installDir: Seek Girl Ⅳ launch: - config: oslist: windows executable: SeekGirlFour.exe type: default -'1212840': +"1212840": installDir: パトルの軍事博物館3 超絶無敵究極兵器 launch: - executable: contents/Game.exe type: default -'1212850': +"1212850": installDir: MONOBOT launch: - config: oslist: windows executable: MONOBOT.exe type: default -'1212860': +"1212860": installDir: Flirt Balls launch: - config: oslist: macos - executable: FlirtBalls.app\\Contents\\MacOS\\FlirtBalls + executable: "FlirtBalls.app\\\\Contents\\\\MacOS\\\\FlirtBalls" type: default - config: oslist: windows - executable: Windows_x86\\FlirtBalls.exe + executable: "Windows_x86\\\\FlirtBalls.exe" type: default - config: - osarch: '64' + osarch: "64" oslist: windows - executable: Windows_x86_64\\FlirtBalls.exe + executable: "Windows_x86_64\\\\FlirtBalls.exe" type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: FlirtBalls.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: FlirtBalls.x86_64 type: default -'1212870': +"1212870": installDir: RUN HARE RUN launch: - config: @@ -72005,14 +71093,14 @@ type: default nameLocalized: russian: БЕГИ ЗАЯЦ БЕГИ -'1212910': +"1212910": installDir: Deadly Runner launch: - config: oslist: windows executable: Deadly Runner.exe type: default -'1212930': +"1212930": installDir: Sokpop S03 Doler launch: - config: @@ -72023,29 +71111,29 @@ oslist: macos executable: doler.app type: none -'1212940': +"1212940": installDir: Ayahuasca launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Ayahuasca Kosmik Journey.exe type: vr -'1212960': +"1212960": installDir: Knight Dice launch: - config: oslist: windows executable: KnightDice.exe type: none -'12130': +"12130": installDir: Manhunt launch: - executable: manhunt.exe -'1213020': {} -'1213100': {} -'1213110': {} -'1213210': +"1213020": {} +"1213100": {} +"1213110": {} +"1213210": installDir: CnCRemastered launch: - description: Gold Build @@ -72061,14 +71149,14 @@ koreana: 커맨드 앤 컨커 리마스터 컬렉션 schinese: 《命令与征服™:重制版》 tchinese: 《終極動員令》重製典藏版 -'1213220': +"1213220": installDir: IRON GUARD VR launch: - config: oslist: windows executable: IronGuard.exe type: vr -'1213230': +"1213230": installDir: Rain on Your Parade launch: - config: @@ -72080,27 +71168,27 @@ executable: Rain on Your Parade.app type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: Rain on Your Parade.x86_64 type: none nameLocalized: french: Nimbus le Trublion | Rain on Your Parade - german: 'Rain on Your Parade: Sieben Tage Regenwetter' - japanese: 'レインパレード: イタズラ雲の冒険 !' - koreana: 'Rain on Your Parade: 찬물을 끼얹자!' + german: "Rain on Your Parade: Sieben Tage Regenwetter" + japanese: "レインパレード: イタズラ雲の冒険 !" + koreana: "Rain on Your Parade: 찬물을 끼얹자!" russian: Тучка-вреднючка | Rain on Your Parade schinese: 整蛊白云 spanish: Aguafiestas | Rain on Your Parade tchinese: 搗蛋雲朵 | Rain on Your Parade -'1213250': {} -'1213300': +"1213250": {} +"1213300": nameLocalized: - english: 'Rebellion GODSOUL: Awakening' - japanese: ' ゴッドソウル~覚醒反逆の魂~' + english: "Rebellion GODSOUL: Awakening" + japanese: " ゴッドソウル~覚醒反逆の魂~" tchinese: 叛逆神魂 GODSOUL -'1213310': {} -'1213370': +"1213310": {} +"1213370": installDir: Mr. Fast launch: - config: @@ -72113,20 +71201,20 @@ type: none nameLocalized: schinese: 杀手闪先生 -'1213390': +"1213390": installDir: Starship_Inspector launch: - config: oslist: windows executable: StarshipInspector.exe type: default - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" config: oslist: windows executable: StarshipInspector.exe type: config -'1213400': {} -'1213440': +"1213400": {} +"1213440": installDir: Sushi girl launch: - config: @@ -72141,7 +71229,7 @@ koreana: 초밥 소녀 russian: Суши девушка schinese: 寿司少女 -'1213450': +"1213450": installDir: Craftica launch: - config: @@ -72159,16 +71247,16 @@ nameLocalized: schinese: 匠造奇境 tchinese: 匠造奇境 -'1213460': +"1213460": installDir: Deity Driving launch: - config: oslist: windows executable: dd.exe type: default -'1213470': {} -'1213550': - installDir: Devil's Kiss +"1213470": {} +"1213550": + installDir: "Devil's Kiss" launch: - config: oslist: windows @@ -72182,14 +71270,14 @@ oslist: linux executable: launcher.sh type: none -'1213570': +"1213570": installDir: Cave Quest launch: - config: oslist: windows executable: cavequest.exe type: default -'1213600': +"1213600": installDir: Sokpop S04 Peppered launch: - config: @@ -72200,45 +71288,45 @@ oslist: macos executable: Peppered.app type: none -'1213640': +"1213640": installDir: Zombie Claus launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Zombie Claus.exe type: default -'1213650': +"1213650": installDir: FEB - Brazilian Elite Force launch: - executable: FEB.exe type: default nameLocalized: brazilian: FEB - Força de Elite Brasileira -'1213660': +"1213660": installDir: Into The Valley launch: - config: oslist: windows executable: ITV200311.exe type: none -'1213680': +"1213680": installDir: Finding the Soul Orb launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: FTSO.exe type: default -'1213700': +"1213700": installDir: Spirit of the North launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Infused.exe type: default -'1213740': +"1213740": installDir: She Will Punish Them launch: - config: @@ -72247,7 +71335,7 @@ type: none nameLocalized: schinese: 惩戒魅魔 -'1213750': +"1213750": installDir: Fight Crab launch: - config: @@ -72258,7 +71346,7 @@ japanese: カニノケンカ -Fight Crab- schinese: 螃蟹大战 tchinese: 螃蟹大戰 -'1213760': +"1213760": installDir: Path of Zen launch: - config: @@ -72266,7 +71354,7 @@ description: Launch executable: Path_of_Zen.exe type: none -'1213770': +"1213770": installDir: Blastboard launch: - config: @@ -72275,9 +71363,9 @@ type: default - config: oslist: macos - executable: blastboard.app\\Contents\\MacOS\\Blastboard + executable: "blastboard.app\\\\Contents\\\\MacOS\\\\Blastboard" type: default -'1213780': +"1213780": installDir: Basic Warfare launch: - config: @@ -72285,62 +71373,62 @@ executable: basic-warfare.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: basic-warfare type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: basic-warfare type: default -'1213810': +"1213810": installDir: Strings launch: - config: oslist: windows executable: Strings.exe type: vr -'1213860': +"1213860": installDir: Cut Smash Wrap launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Windows 64-bit executable: nw.exe type: default -'1213870': +"1213870": installDir: Kill The Santa launch: - config: oslist: windows - executable: \\Kill The Santa\\Kill The Santa.exe + executable: "\\\\Kill The Santa\\\\Kill The Santa.exe" type: default -'1213890': +"1213890": installDir: Frostford launch: - config: oslist: windows executable: Frostford.exe type: default -'12140': +"12140": installDir: Max Payne launch: - executable: maxpayne.exe -'1214050': +"1214050": installDir: SCIENCE SHOW VR THE ABYSS launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Abyss.exe type: vr -'1214060': +"1214060": installDir: TRIOS launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TRIOS.exe type: none @@ -72349,107 +71437,105 @@ executable: TRIOS.app type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: TRIOS.x86 type: none -'1214130': +"1214130": installDir: Jumplord launch: - config: oslist: windows executable: Jumplord.exe type: default -'1214150': +"1214150": installDir: ACCEL-X launch: - executable: ACCEL.exe type: none -'1214210': +"1214210": installDir: 那美克星人 launch: - config: oslist: windows executable: game.exe type: default -'1214280': +"1214280": installDir: Walking Simulator 2020 launch: - config: oslist: windows executable: WalkingSimulator2020.exe type: none -'1214320': +"1214320": installDir: Frog X Log launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: nw.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: nw.exe type: default -'1214400': +"1214400": installDir: A Percent of a Pirate launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: APercentOfAPirate.exe type: default -'1214410': +"1214410": installDir: Zooma launch: - - arguments: '-3d' + - arguments: "-3d" config: - osarch: '64' + osarch: "64" oslist: windows executable: Zooma.exe type: vr - - arguments: '-2d' + - arguments: "-2d" config: - osarch: '64' + osarch: "64" oslist: windows description: Zooma in Desktop Mode executable: Zooma.exe type: option1 -'1214470': +"1214470": installDir: Hotel Renovator launch: - description: Launch - description_loc: - english: Launch executable: Hotel_Renovator.exe type: default -'1214490': +"1214490": installDir: Hentai Breaker launch: - config: oslist: windows executable: BlockBreaker.exe type: none -'1214500': +"1214500": installDir: GraFi Lunar launch: - config: oslist: windows executable: GraFi Lunar.exe type: default -'1214520': +"1214520": installDir: Pro Gymnast launch: - config: oslist: windows - executable: windows\\ProGymnast.exe + executable: "windows\\\\ProGymnast.exe" type: default - config: oslist: macos - executable: macos\\progymnast.app\\Contents\\MacOS\\ProGymnast + executable: "macos\\\\progymnast.app\\\\Contents\\\\MacOS\\\\ProGymnast" type: default -'1214530': +"1214530": installDir: Coin Commander launch: - config: @@ -72458,22 +71544,22 @@ type: default nameLocalized: english: Coin Commander -'1214570': +"1214570": installDir: DriftOn launch: - config: oslist: windows executable: DriftOn.exe type: default -'1214590': +"1214590": installDir: The Puzzle Box Society launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: PuzzleBox.exe type: default -'1214600': +"1214600": installDir: Sokpop S05 Bandapes launch: - config: @@ -72484,7 +71570,7 @@ oslist: macos executable: Bandapes.app type: none -'1214630': +"1214630": installDir: Sokpop S05 The Hour of the Rat launch: - config: @@ -72495,16 +71581,16 @@ oslist: macos executable: HourOfTheRat.app type: none -'1214650': {} -'1214680': +"1214650": {} +"1214680": installDir: That Lava Escape Game launch: - config: oslist: windows executable: ThatLavaEscapeGame.exe type: default -'1214720': {} -'1214850': +"1214720": {} +"1214850": installDir: Snaliens launch: - config: @@ -72515,12 +71601,12 @@ oslist: windows executable: Snaliens.exe type: default -'1214910': {} -'1214920': +"1214910": {} +"1214920": installDir: Slaughter 3 The Rebels launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SL3.exe type: default @@ -72528,35 +71614,35 @@ oslist: linux executable: LinuxRebels.x86_64 type: default -'1214930': {} -'1214990': +"1214930": {} +"1214990": installDir: New Planets launch: - config: oslist: windows executable: New Planets.exe type: default -'12150': +"12150": installDir: Max Payne 2 The Fall of Max Payne launch: - executable: maxpayne2.exe -'1215000': +"1215000": installDir: Straylight launch: - config: oslist: windows executable: Straylight.exe type: vr -'1215020': {} -'1215090': +"1215020": {} +"1215090": installDir: My Friend is a Raven launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: WindowsNoEditor\\UE42019MegaJam.exe + executable: "WindowsNoEditor\\\\UE42019MegaJam.exe" type: default -'1215120': +"1215120": installDir: DeeperRed2028-WeAreEscape- launch: - config: @@ -72567,39 +71653,39 @@ english: DeeperRed2028-WeAreEscape- japanese: 赤紅2028-WeAreEscape- schinese: 赤红2028-WeAreEscape- -'1215200': +"1215200": installDir: SHINING SONG STARNOVA IDOL EMPIRE launch: - config: oslist: windows executable: Starnova Idol Empire.exe type: default -'1215280': +"1215280": installDir: Mask of Mists launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: MaskOfMists.exe type: default -'1215310': +"1215310": installDir: DragonScales3 launch: - executable: DragonScales3.exe type: none -'1215350': +"1215350": installDir: AudioWizards launch: - executable: AudioWizards.exe type: default -'1215390': +"1215390": installDir: Animal Revolt Battle Simulator launch: - config: oslist: windows executable: Animal Revolt Battle Simulator.exe type: default -'1215410': +"1215410": installDir: Sokpop S06 Sproots launch: - config: @@ -72610,14 +71696,14 @@ oslist: macos executable: Sproots.app type: none -'1215500': +"1215500": installDir: Cattle Admission Challenge launch: - config: oslist: windows executable: Cattle Admission Challenge.exe type: none -'1215520': +"1215520": installDir: Aldred Knight launch: - config: @@ -72628,7 +71714,7 @@ oslist: windows executable: config.exe type: config -'1215540': +"1215540": installDir: Data Dream launch: - config: @@ -72638,23 +71724,23 @@ type: default - config: oslist: macos - executable: Data Dream.app\\Contents\\MacOS\\Data Dream + executable: "Data Dream.app\\\\Contents\\\\MacOS\\\\Data Dream" type: default - config: oslist: linux executable: Data Dream.x86 type: default -'1215550': +"1215550": installDir: Realistic Tower Destruction launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Realistic Tower Destruction.exe type: none -'1215580': {} -'1215650': - installDir: William's Love Prelude +"1215580": {} +"1215650": + installDir: "William's Love Prelude" launch: - config: betakey: Game.exe @@ -72663,23 +71749,23 @@ description: Game.exe executable: Game.exe type: default -'1215660': +"1215660": installDir: Clicker Age launch: - executable: ClickerAge.exe type: none -'1215690': +"1215690": installDir: World War 2 Zombie Attack VR Simulator launch: - config: oslist: windows executable: World War 2 Zombie Attack VR Simulator.exe type: othervr -'1215710': +"1215710": installDir: The Spirits of Kelley Family launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: The Spirits of Kelley Family.exe type: default @@ -72689,45 +71775,45 @@ type: default nameLocalized: italian: Gli Spiriti della Famiglia Kelley -'1215770': +"1215770": installDir: Cute Puzzle SP (Naked Story Ver) launch: - config: oslist: windows executable: CutePuzzleSP.exe type: default -'1215860': +"1215860": installDir: Model Railway Easily launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: MoRE.exe type: none -'1215870': +"1215870": installDir: The Walking Evil launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: The Walking Evil.exe type: default -'1215900': +"1215900": installDir: Jekyll launch: - config: oslist: windows executable: JekyllAndHydePC.exe type: default -'1215930': +"1215930": installDir: Ramiwo launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: bin\\win_x64\\GameLauncher.exe + executable: "bin\\\\win_x64\\\\GameLauncher.exe" type: default -'1215960': +"1215960": installDir: P-BOT launch: - config: @@ -72735,93 +71821,93 @@ description: Launch executable: P-BOT.exe type: default -'1215980': +"1215980": installDir: The Final Stand Breakout launch: - config: oslist: windows executable: TFSB.exe type: default -'1215990': +"1215990": installDir: RhythmDanceVR launch: - config: oslist: windows executable: RhythmDanceVR.exe type: vr -'12160': +"12160": installDir: Midnight Club 2 launch: - executable: mc2.exe -'1216050': +"1216050": installDir: Last Week launch: - config: oslist: windows executable: LastWeek.exe type: default -'1216060': +"1216060": installDir: DNFDUEL launch: - config: oslist: windows executable: DNFDUEL.exe type: default -'1216080': +"1216080": installDir: sunaonaakazukin launch: - config: oslist: windows executable: sunaonaakazukin.exe type: default -'1216130': {} -'1216150': - installDir: Hell's Pharma +"1216130": {} +"1216150": + installDir: "Hell's Pharma" launch: - config: oslist: windows - executable: Hell's Pharma.exe + executable: "Hell's Pharma.exe" type: none -'1216190': +"1216190": installDir: Color ball launch: - config: oslist: windows executable: colorball.exe type: default -'1216200': +"1216200": installDir: Coloring game 2 launch: - executable: game.exe type: none -'1216220': +"1216220": installDir: Boiling Steel Preface launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: HS.exe type: vr - config: - osarch: '64' + osarch: "64" oslist: windows executable: HS.exe type: othervr -'1216270': {} -'1216350': +"1216270": {} +"1216350": installDir: TimeHacker launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TimeHacker.exe type: vr -'1216370': +"1216370": installDir: DarkLight launch: - executable: Game.exe type: default -'1216480': +"1216480": installDir: Get the Banana launch: - config: @@ -72839,28 +71925,28 @@ executable: Linux/bin/lyf type: none workingdir: Linux/bin -'1216490': +"1216490": installDir: Knock Harder KH launch: - executable: Knock Harder.exe type: default -'1216540': +"1216540": installDir: Fishy2 launch: - config: betakey: n/a - osarch: '64' + osarch: "64" oslist: windows ownsdlc: n/a description: Launch Option executable: Fishy2 type: default -'1216600': +"1216600": installDir: QUICAL launch: - executable: Quical.exe type: none -'1216610': +"1216610": installDir: Hentai Pansuto launch: - config: @@ -72871,7 +71957,7 @@ oslist: macos executable: Hentai Pansuto.app type: none -'1216660': +"1216660": installDir: Hentai Sakyubus launch: - config: @@ -72882,70 +71968,70 @@ oslist: macos executable: Hentai Sakyubus.app type: none -'1216700': +"1216700": installDir: 匿名信:隐匿者 Anonymous Letter :Prowler launch: - executable: 隐匿者.exe type: none -'1216720': +"1216720": installDir: Human Delusion launch: - config: oslist: windows executable: Build_WIN/HumanDelusion.exe type: vr -'1216880': +"1216880": installDir: Risen Kingdom launch: - config: oslist: windows executable: Risen Kingdom.exe type: none -'1216930': +"1216930": installDir: Vikings Wars launch: - executable: Vikings Wars.exe type: none -'1216990': {} -'12170': +"1216990": {} +"12170": installDir: Grand Theft Auto launch: - - executable: WINO\\Grand Theft Auto.exe + - executable: "WINO\\\\Grand Theft Auto.exe" workingdir: wino -'1217050': +"1217050": installDir: Shaolin vs Wutang 2 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SvW 2.exe type: none -'1217060': +"1217060": installDir: Gunfire Reborn launch: - - arguments: '-nolog' + - arguments: "-nolog" config: - osarch: '64' + osarch: "64" oslist: windows executable: Gunfire Reborn.exe type: default nameLocalized: schinese: 枪火重生 tchinese: 槍火重生 -'1217070': +"1217070": installDir: Der Geisterturm launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Der Geisterturm.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: DerGeisterturm.x86_64 type: default -'1217100': +"1217100": installDir: Mega Hasan launch: - config: @@ -72956,48 +72042,48 @@ oslist: macos executable: Mega Hasan.app type: none -'1217160': +"1217160": installDir: Log 141 launch: - - arguments: '-fullscreen' + - arguments: "-fullscreen" executable: Log 141 type: default -'1217190': +"1217190": installDir: All men are mortal launch: - executable: Game.exe type: default -'1217200': +"1217200": installDir: Grimm 1865 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Grimm1865.exe type: default -'1217230': +"1217230": installDir: EB launch: - config: oslist: windows executable: EB.exe type: default -'1217280': +"1217280": installDir: MyBot launch: - - arguments: '--release' + - arguments: "--release" config: - osarch: '64' + osarch: "64" oslist: windows executable: MyBot.exe type: default -'1217300': {} -'1217330': +"1217300": {} +"1217330": installDir: Terminal squad Swarmites launch: - executable: base_to_base_reborn.exe type: none -'1217350': +"1217350": installDir: Pentasma launch: - config: @@ -73007,14 +72093,14 @@ nameLocalized: english: Pentasma koreana: 구명전투기 펜타즈마 (Pentasma) -'1217370': +"1217370": installDir: Classic_CardGame_Spades launch: - config: oslist: windows executable: Spades.exe type: default -'1217390': +"1217390": installDir: somesome launch: - config: @@ -73023,7 +72109,7 @@ type: default nameLocalized: koreana: 썸썸 편의점 -'1217410': +"1217410": installDir: Three_Kingdom_Legend launch: - config: @@ -73040,80 +72126,80 @@ type: none nameLocalized: schinese: 孟德大小姐与自爆少年 -'1217440': +"1217440": installDir: Cold Winter Morning launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows description: Launch executable: game.exe type: default -'1217480': +"1217480": installDir: Frontier - Tactical Response Squad launch: - executable: FTRS.exe type: none -'1217560': +"1217560": installDir: GORILLA TOWN launch: - executable: Gorilla Town.exe type: default -'1217580': +"1217580": installDir: Green Elephant Epilogue launch: - executable: Green Elephant Epilogue.exe type: default -'1217630': +"1217630": installDir: ELEVive launch: - config: oslist: windows executable: Network ELE.exe type: vr -'1217640': - installDir: God's Challenge +"1217640": + installDir: "God's Challenge" launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: God's Challenge.exe + executable: "God's Challenge.exe" type: vr -'1217720': +"1217720": installDir: ILY launch: - - arguments: '@f+ @INFOOFF' + - arguments: "@f+ @INFOOFF" config: oslist: windows description: Full screen executable: ILY.win32_steam.exe type: option1 - - arguments: '@f1920x1080 @z0.9 @INFOOFF' + - arguments: "@f1920x1080 @z0.9 @INFOOFF" config: oslist: windows description: Windowed executable: ILY.win32_steam.exe type: option2 -'1217820': +"1217820": installDir: Topfold launch: - executable: Topfold.exe type: none -'1217850': +"1217850": installDir: Angry food launch: - config: oslist: windows executable: Angry food.exe type: default -'1217870': +"1217870": installDir: Box Kid Adventures launch: - config: oslist: windows executable: Box Kid.exe type: default -'1217880': +"1217880": installDir: recluses launch: - config: @@ -73122,21 +72208,21 @@ type: default nameLocalized: russian: Затворники -'1217950': {} -'12180': +"1217950": {} +"12180": installDir: Grand Theft Auto 2 launch: - executable: gta2.exe -'1218030': +"1218030": installDir: Operation Deep Magic Cryptanalysis launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: OperationDeepMagicCryptanalysis.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: OperationDeepMagicCryptanalysis.x86_64 type: default @@ -73144,37 +72230,37 @@ oslist: macos executable: Operation Deep Magic Cryptanalysis.app type: default -'1218090': +"1218090": installDir: HellScape Two Brothers launch: - config: oslist: windows executable: HellScape - TwoBrothers.exe type: default -'1218100': {} -'1218110': - installDir: L'Cestrue Seyuntres +"1218100": {} +"1218110": + installDir: "L'Cestrue Seyuntres" launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows executable: Game.exe type: default -'1218120': {} -'1218150': {} -'1218170': +"1218120": {} +"1218150": {} +"1218170": installDir: 回门 Way Back Home launch: - config: oslist: windows executable: WayBackHome.exe type: default -'1218200': +"1218200": installDir: Game Of Puzzles Space launch: - executable: GOPspace.exe type: none -'1218210': +"1218210": installDir: Coromon launch: - config: @@ -73183,43 +72269,43 @@ type: default - config: oslist: macos - executable: ./Contents/MacOS/Coromon + executable: "./Contents/MacOS/Coromon" type: default -'1218220': {} -'1218250': +"1218220": {} +"1218250": installDir: We Went Back launch: - config: oslist: windows executable: WeWentBack.exe type: default -'1218280': +"1218280": installDir: Bad Guys at School launch: - executable: BadGuysAtSchool.exe type: none -'1218300': - installDir: Gjana's World +"1218300": + installDir: "Gjana's World" launch: - executable: gjanasworld.exe type: none -'1218310': +"1218310": installDir: Bombergeddon launch: - config: oslist: windows executable: Bombergeddon.exe type: default -'1218320': - installDir: Zack 2 Celeste's Map +"1218320": + installDir: "Zack 2 Celeste's Map" launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: zack 2.exe type: default -'1218400': {} -'1218420': +"1218400": {} +"1218420": installDir: rook launch: - config: @@ -73230,41 +72316,41 @@ oslist: macos executable: rook.app type: default -'1218440': +"1218440": installDir: Tanks 2020 launch: - config: oslist: windows executable: tanks 2020.exe type: default -'1218510': {} -'1218530': +"1218510": {} +"1218530": installDir: LastShot launch: - executable: LastShot.exe type: none -'1218560': +"1218560": installDir: Bato Treasures of Tibet launch: - config: oslist: windows executable: bato.exe type: default -'1218570': +"1218570": installDir: The Twins launch: - config: oslist: windows executable: Game.exe type: default -'1218590': +"1218590": installDir: Suppressor launch: - config: oslist: windows executable: Suppressor.exe type: vr -'1218710': +"1218710": installDir: Escape from the death castle launch: - config: @@ -73274,15 +72360,15 @@ nameLocalized: english: Escape from the death castle schinese: 逃离死亡堡 -'1218760': +"1218760": installDir: Moe Moe World War II-3 Deluxe Edition launch: - config: oslist: windows executable: launcher.exe type: default -'1218780': {} -'1218790': +"1218780": {} +"1218790": installDir: Good Goods Incorporated launch: - config: @@ -73293,14 +72379,14 @@ oslist: macos executable: GoodGoodsInc.app type: default -'1218850': +"1218850": installDir: Escape Rebooted launch: - config: oslist: windows executable: escaperebooted_x64.exe type: default -'1218890': +"1218890": installDir: Ollie & Bollie Outdoor Estate launch: - config: @@ -73311,7 +72397,7 @@ oslist: macos executable: olliebollie.app type: none -'1218920': +"1218920": installDir: Sunset Kingdom launch: - config: @@ -73322,19 +72408,19 @@ oslist: macos executable: SunsetKingdom.app type: none -'1218940': +"1218940": installDir: ETERNAL BLOOD launch: - config: oslist: windows executable: Eternal Blood.exe type: default -'12190': +"12190": installDir: Wild Metal Country launch: - executable: winenv/winenv.exe workingdir: winenv -'1219020': +"1219020": installDir: KiliTreasureHunt launch: - config: @@ -73343,9 +72429,9 @@ type: default - config: oslist: macos - executable: KiliTreasureHunt.app\\Contents\\MacOS\\KiliTreasureHunt + executable: "KiliTreasureHunt.app\\\\Contents\\\\MacOS\\\\KiliTreasureHunt" type: default -'1219120': +"1219120": installDir: RETRO-PIXEL COLOR PALETTE Color by Number launch: - config: @@ -73372,21 +72458,21 @@ description: DB-ISO-22 executable: RETRO-PIXEL COLOR PALETTE - DB-ISO-22.exe type: option1 -'1219170': +"1219170": installDir: Mayhem Masters launch: - config: oslist: windows executable: Mayhem Masters.exe type: none -'1219180': - installDir: Skull's Soliditude +"1219180": + installDir: "Skull's Soliditude" launch: - config: oslist: windows executable: skull_solitude.exe type: default -'1219220': +"1219220": installDir: Ghost In The Barn House launch: - config: @@ -73397,7 +72483,7 @@ oslist: linux executable: GhostInTheBarnHouse type: default -'1219230': +"1219230": installDir: Bingo Hall launch: - config: @@ -73406,45 +72492,45 @@ type: default - config: oslist: macos - executable: bingo-hall.app\\Contents\\MacOS\\BingoHall + executable: "bingo-hall.app\\\\Contents\\\\MacOS\\\\BingoHall" type: default -'1219280': {} -'1219290': {} -'1219310': +"1219280": {} +"1219290": {} +"1219310": installDir: Fun Virus TD launch: - config: oslist: windows executable: FunVirusTD.exe type: default -'1219320': +"1219320": installDir: Pets Sniper Shooting launch: - config: oslist: macos - executable: PetsSniperShooting.app\\Contents\\MacOS\\PetsSniperShooting + executable: "PetsSniperShooting.app\\\\Contents\\\\MacOS\\\\PetsSniperShooting" type: default - config: oslist: windows - executable: Windows_x86\\PetsSniperShooting.exe + executable: "Windows_x86\\\\PetsSniperShooting.exe" type: default - config: - osarch: '64' + osarch: "64" oslist: windows - executable: Windows_x86_64\\PetsSniperShooting.exe + executable: "Windows_x86_64\\\\PetsSniperShooting.exe" type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: PetsSniperShooting.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: PetsSniperShooting.x86_64 type: default -'1219370': {} -'1219420': +"1219370": {} +"1219420": installDir: Millions of Minions launch: - config: @@ -73459,179 +72545,179 @@ oslist: linux executable: Millions of Minions.x86_64 type: default -'1219450': +"1219450": installDir: Inglorious Pirate launch: - executable: Inglorious pirate.exe type: none -'1219530': {} -'1219580': +"1219530": {} +"1219580": installDir: Prison Forever launch: - executable: Prison Forever.exe type: none -'1219610': +"1219610": installDir: Courage and Honor launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: CourageAndHonor.exe type: none -'1219650': +"1219650": installDir: K-Point Ski Jumping launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: K-Point Ski Jumping.exe type: none -'1219730': +"1219730": installDir: The Manse on Soracca launch: - config: oslist: windows executable: soracca.exe type: default -'1219820': +"1219820": installDir: Pyramid Defense launch: - executable: Pyramid Defense.exe type: default -'1219840': +"1219840": installDir: Defend Home launch: - config: oslist: windows executable: SpaceShooter.exe type: none -'1219860': +"1219860": installDir: Monster surprised you-ki chan launch: - config: oslist: windows - executable: you-kichanGAME\\you-kichan.exe + executable: "you-kichanGAME\\\\you-kichan.exe" type: default nameLocalized: japanese: もんすたぁさぷらいずど幽鬼ちゃん! -'1219910': +"1219910": installDir: Spider Fear launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SpiderFear.exe type: vr -'1219920': {} -'1219930': {} -'12200': +"1219920": {} +"1219930": {} +"12200": installDir: Bully Scholarship Edition launch: - executable: Bully.exe -'1220070': +"1220070": installDir: Underground Miner launch: - config: oslist: windows executable: UndergroundMiner.exe type: default -'1220080': +"1220080": installDir: Racing Bike Fight launch: - config: oslist: macos - executable: RacingBikeFight.app\\Contents\\MacOS\\RacingBikeFight + executable: "RacingBikeFight.app\\\\Contents\\\\MacOS\\\\RacingBikeFight" type: default - config: - osarch: '32' + osarch: "32" oslist: windows - executable: Windows_x86\\RacingBikeFight.exe + executable: "Windows_x86\\\\RacingBikeFight.exe" type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: RacingBikeFight.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: RacingBikeFight.x86 type: default -'1220120': +"1220120": installDir: Dungeon Origins launch: - config: oslist: windows executable: Dungeon Origins.exe type: default -'1220140': +"1220140": installDir: Cartel Tycoon launch: - config: oslist: windows executable: Cartel Tycoon Launcher.exe type: none -'1220150': +"1220150": installDir: Blue Fire launch: - config: oslist: windows executable: PROA34.exe type: none -'1220160': +"1220160": installDir: Virtual Race Car Engineer 2020 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: VRCE2020.exe type: none -'1220170': +"1220170": installDir: Eville launch: - - arguments: '-nohmd' + - arguments: "-nohmd" config: - osarch: '64' + osarch: "64" oslist: windows executable: Eville.exe type: default -'1220300': {} -'1220330': +"1220300": {} +"1220330": installDir: Impressions launch: - config: oslist: windows executable: Impressions.exe type: default -'1220360': {} -'1220370': +"1220360": {} +"1220370": installDir: Ever Forward launch: - config: oslist: windows executable: EverForward.exe type: none -'1220410': {} -'1220440': - installDir: 'Pick, shoot, repeat!' +"1220410": {} +"1220440": + installDir: "Pick, shoot, repeat!" launch: - config: oslist: windows - executable: 'Pick, shoot, repeat!.exe' + executable: "Pick, shoot, repeat!.exe" type: default - config: oslist: macos - executable: 'Mac.app\\Contents\\MacOS\\Pick, shoot, repeat!' + executable: "Mac.app\\\\Contents\\\\MacOS\\\\Pick, shoot, repeat!" type: default -'1220510': +"1220510": installDir: Your Quest 2 launch: - config: oslist: windows executable: Your Quest 2.exe type: default -'1220550': {} -'1220580': +"1220550": {} +"1220580": installDir: Sky Pirates of Actorius launch: - config: @@ -73646,19 +72732,19 @@ oslist: linux executable: SkyPiratesOfActorius type: none -'1220600': +"1220600": installDir: Everyday Life Edengrall launch: - config: oslist: windows executable: Everyday Life Edengrall.exe type: none -'1220630': {} -'1220640': {} -'1220670': +"1220630": {} +"1220640": {} +"1220670": nameLocalized: schinese: 艾恩洛亚:炼金起源之章 -'1220710': +"1220710": installDir: Ace In Space launch: - config: @@ -73669,15 +72755,15 @@ oslist: macos executable: AceInSpace.app/Contents/MacOS/AceInSpace type: default -'1220830': +"1220830": installDir: BATTLE POLYGON launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: BattlePolygon.exe type: default -'1220840': +"1220840": installDir: Retirement Simulator launch: - config: @@ -73692,7 +72778,7 @@ english: Retirement Simulator sc_schinese: 退休模拟器 schinese: 退休模拟器 -'1220880': +"1220880": installDir: 陆大迹神Ⅱ launch: - config: @@ -73705,7 +72791,7 @@ oslist: windows executable: Game.exe type: none -'1220890': +"1220890": installDir: Ghone is gone launch: - config: @@ -73716,12 +72802,12 @@ oslist: macos executable: Ghone is gone.app type: default -'1220910': +"1220910": installDir: Dark Zone launch: - executable: DarkZone.exe type: none -'1220930': +"1220930": installDir: Metaphobia launch: - config: @@ -73732,7 +72818,7 @@ oslist: windows executable: winsetup.exe type: config -'1220990': +"1220990": installDir: Great Utopia launch: - config: @@ -73743,7 +72829,7 @@ oslist: macos executable: Game.app type: default -'12210': +"12210": installDir: Grand Theft Auto IV launch: - executable: GTAIV/PlayGTAIV.exe @@ -73761,28 +72847,28 @@ executable: GTAIV/PlayGTAIV.exe type: none workingdir: GTAIV -'1221030': +"1221030": installDir: ClickCells Winter Lady launch: - config: oslist: windows executable: ccwl.exe type: default -'1221230': +"1221230": installDir: Derange launch: - config: oslist: windows executable: Game.exe type: default -'1221240': +"1221240": installDir: Tavern Cards launch: - config: oslist: windows executable: TAVERNACARDS.exe type: default -'1221250': +"1221250": installDir: NORCO launch: - config: @@ -73796,20 +72882,20 @@ nameLocalized: schinese: 诺科 tchinese: 諾科 -'1221280': +"1221280": installDir: Run Dude launch: - executable: Run Dude.exe type: default -'1221290': +"1221290": installDir: Ice Maze launch: - executable: Ice Maze.exe type: none nameLocalized: schinese: 冰雪迷阵 -'1221300': {} -'1221320': +"1221300": {} +"1221320": installDir: Self-Checkout Unlimited launch: - config: @@ -73820,7 +72906,7 @@ oslist: macos executable: MacNoEditor/SCU.app type: default -'1221400': +"1221400": installDir: TrustyBrothers launch: - executable: Trusty Brothers.exe @@ -73828,15 +72914,15 @@ nameLocalized: english: Trusty Brothers schinese: 相信我,兄弟 -'1221420': +"1221420": installDir: The curse of the dead launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: The curse of the dead.exe type: default -'1221440': +"1221440": installDir: Path of Redemption launch: - config: @@ -73846,15 +72932,15 @@ nameLocalized: japanese: 輪廻の旅 schinese: 受苦之旅 -'1221470': {} -'1221510': +"1221470": {} +"1221510": installDir: IMM Defense 2 launch: - config: oslist: windows executable: IMMDefense_2.exe type: default -'1221540': +"1221540": installDir: kuukiyomi launch: - config: @@ -73862,60 +72948,60 @@ executable: kuukiyomi.exe type: none nameLocalized: - english: 'KUUKIYOMI: Consider It' + english: "KUUKIYOMI: Consider It" japanese: みんなで空気読み。 koreana: 다함께 쿠키요미 schinese: 大家一起观颜察色。 tchinese: 大家一起閱讀空氣。 -'1221560': +"1221560": installDir: Just Chatting launch: - config: oslist: windows executable: JustChatting.exe type: default -'1221580': +"1221580": installDir: Phageborn Online Card Game PUBLIC BETA launch: - config: oslist: windows executable: Phageborn.exe type: none -'1221590': +"1221590": installDir: Formula Car Racing Simulator launch: - config: oslist: macos - executable: FormulaCarRacingSimulator.app\\Contents\\MacOS\\FormulaCarRacingSimulator + executable: "FormulaCarRacingSimulator.app\\\\Contents\\\\MacOS\\\\FormulaCarRacingSimulator" type: default - config: - osarch: '32' + osarch: "32" oslist: windows - executable: Windows_x86\\FormulaCarRacingSimulator.exe + executable: "Windows_x86\\\\FormulaCarRacingSimulator.exe" type: default - config: - osarch: '64' + osarch: "64" oslist: windows - executable: Windows_x86_64\\FormulaCarRacingSimulator.exe + executable: "Windows_x86_64\\\\FormulaCarRacingSimulator.exe" type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: FormulaCarRacingSimulator.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: FormulaCarRacingSimulator.x86_64 type: default -'1221640': +"1221640": installDir: Ultra Foodmess launch: - config: oslist: windows executable: Ultra Foodmess.exe type: default -'1221650': +"1221650": installDir: Boulder Dash Deluxe launch: - config: @@ -73923,73 +73009,73 @@ executable: bdd.app type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: Boulder Dash Deluxe.exe type: default -'1221660': +"1221660": installDir: Little Tennis launch: - config: oslist: windows executable: Little Tennis.exe type: default -'1221830': +"1221830": installDir: Farmer Pug Dash launch: - executable: Farmer Pug Dash.exe type: none -'1221890': +"1221890": installDir: game launch: - config: oslist: windows - executable: SCPFoundation-1.0-pc\\SCPFoundation.exe + executable: "SCPFoundation-1.0-pc\\\\SCPFoundation.exe" type: default - config: oslist: linux executable: SCPFoundation-1.0-pc/SCPFoundation.sh type: default -'1221950': {} -'1221990': +"1221950": {} +"1221990": installDir: Chronicle Unit Eight launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ChronicleUnitEight.exe type: default - config: oslist: macos - executable: ChronicleUnitEight.app\\Contents\\MacOS\\ChronicleUnitEight + executable: "ChronicleUnitEight.app\\\\Contents\\\\MacOS\\\\ChronicleUnitEight" type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: ChronicleUnitEight.x86_64 type: none -'12220': +"12220": installDir: Grand Theft Auto IV Episodes from Liberty City launch: - - executable: EFLC\\LaunchEFLC.exe + - executable: "EFLC\\\\LaunchEFLC.exe" workingdir: EFLC -'1222000': - installDir: 'Lights, Camera, Reaction!' +"1222000": + installDir: "Lights, Camera, Reaction!" launch: - - arguments: '-multidisplay' + - arguments: "-multidisplay" config: oslist: windows executable: lcr.exe type: default -'1222040': +"1222040": installDir: Offroad Mania launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Offroad Mania.exe type: default -'1222090': +"1222090": installDir: Nevaeh launch: - config: @@ -73999,24 +73085,24 @@ nameLocalized: japanese: ネバエ(Nevaeh) koreana: 네바에(Nevaeh) -'1222120': +"1222120": installDir: Valentines Desire - Steam Edition launch: - executable: ValentinesDesire.exe type: default -'1222140': +"1222140": installDir: Detroit Become Human launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: DetroitBecomeHuman.exe type: none nameLocalized: schinese: 底特律:化身为人 tchinese: 底特律:化身为人 -'1222150': {} -'1222160': +"1222150": {} +"1222160": installDir: Chinese Brush Simulator launch: - executable: ChineseBrushSimulator.exe @@ -74024,14 +73110,14 @@ nameLocalized: english: Chinese Brush Simulator schinese: 毛笔模拟器 -'1222170': +"1222170": installDir: Cutish launch: - config: oslist: windows executable: cutish_complet.exe type: default -'1222180': +"1222180": installDir: Retro Drift launch: - config: @@ -74041,139 +73127,130 @@ nameLocalized: schinese: 复古漂移 tchinese: 复古漂移 -'1222220': +"1222220": installDir: 7WORLDS The Dreaming Dale launch: - config: oslist: windows executable: 7 Worlds the Dreaming Dale.exe type: default -'1222240': +"1222240": installDir: Mineirinho Wildtides DC launch: - config: oslist: windows - executable: WTDC\\WTDC.exe + executable: "WTDC\\\\WTDC.exe" type: default -'1222250': +"1222250": installDir: La Historia De launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: LaHistoriaDe.exe type: default -'1222260': +"1222260": installDir: The Lost Brewery launch: - executable: tlb.exe type: default -'1222300': +"1222300": installDir: Into The Flames launch: - config: oslist: windows executable: Project_Flames.exe type: default -'1222340': +"1222340": installDir: Sockventure launch: - config: oslist: windows executable: Sockventure.exe type: default -'1222370': +"1222370": installDir: Necromunda Hired Gun launch: - config: - betakey: >- - sos_internal,privateshared,focus_playtest,gw_latestbuild,consulting,focus-internal-review,backup_edito,sos_internal_weekly,focus_hw_test,focus_lqa_test,focus_external,focus_audit_ux,promotional_build,4.26_test,age_rating,focus_partners2,jap_version,focus_partnerlg + betakey: "sos_internal,privateshared,focus_playtest,gw_latestbuild,consulting,focus-internal-review,backup_edito,sos_internal_weekly,focus_hw_test,focus_lqa_test,focus_external,focus_audit_ux,promotional_build,4.26_test,age_rating,focus_partners2,jap_version,focus_partnerlg" description: Test version - description_loc: - english: Test version - executable: Necromunda\\Binaries\\Win64\\Necromunda-Win64-Test.exe + executable: "Necromunda\\\\Binaries\\\\Win64\\\\Necromunda-Win64-Test.exe" type: option1 - config: betakey: gw-alpha description: NHG Alpha - description_loc: - english: NHG Alpha - executable: Necromunda\\Binaries\\Win64\\Necromunda-Win64-Test.exe + executable: "Necromunda\\\\Binaries\\\\Win64\\\\Necromunda-Win64-Test.exe" type: option1 - executable: Necromunda.exe type: default - - arguments: '-logPSO' + - arguments: "-logPSO" config: betakey: pso_creation description: PSO creation - description_loc: - english: PSO creation - executable: Necromunda\\Binaries\\Win64\\Necromunda-Win64-Test.exe + executable: "Necromunda\\\\Binaries\\\\Win64\\\\Necromunda-Win64-Test.exe" type: option1 - config: - ownsdlc: '1613060' + ownsdlc: "1613060" description: Artbook - description_loc: - english: Artbook - executable: Artbook\\artbook.bat + executable: "Artbook\\\\artbook.bat" type: none workingdir: Artbook nameLocalized: schinese: 涅克罗蒙达:赏金猎人 -'1222420': +"1222420": installDir: BallsBlasterVR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: BallsBlasterVR.exe type: vr -'1222470': +"1222470": installDir: 18+ MEMORY launch: - config: oslist: windows executable: 18+ MEMORY.exe type: default -'1222490': {} -'1222560': {} -'1222570': +"1222490": {} +"1222560": {} +"1222570": installDir: Red Ronin launch: - config: oslist: windows executable: Red Ronin.exe type: none -'1222600': +"1222600": installDir: Stocksynd House launch: - config: oslist: windows executable: Stocksynd House.exe type: vr -'1222610': +"1222610": installDir: Model Kit Simulator VR launch: - config: oslist: windows executable: ModelKitSimulatorVR.exe type: vr -'1222640': +"1222640": installDir: Cumming Hotel - A Gay Furry Slice of Life launch: - config: oslist: windows executable: nw.exe type: default -'1222670': +"1222670": installDir: The Sims 4 launch: - - executable: 'link2ea://launchgame/1222670?platform=steam&theme=ts4' + - executable: "link2ea://launchgame/1222670?platform=steam&theme=ts4" type: none -'1222680': +"1222680": installDir: Need for Speed Heat launch: - - executable: 'link2ea://launchgame/1222680?platform=steam&theme=nfsh' + - executable: "link2ea://launchgame/1222680?platform=steam&theme=nfsh" type: none nameLocalized: brazilian: Need for Speed™ Heat @@ -74185,52 +73262,52 @@ russian: Need for Speed™ Heat schinese: 《Need for Speed™ Heat tchinese: 《極速快感™:熱焰》 -'1222690': +"1222690": installDir: Dragon Age Inquisition launch: - - executable: 'link2ea://launchgame/1222690?platform=steam&theme=dai' + - executable: "link2ea://launchgame/1222690?platform=steam&theme=dai" type: none nameLocalized: - japanese: 'ドラゴンエイジインクイジション ' - koreana: '드래곤 에이지™ 인퀴지션 ' - polish: 'Dragon Age™: Inkwizycja ' - russian: '«Dragon Age™ Инквизиция» ' + japanese: "ドラゴンエイジインクイジション " + koreana: "드래곤 에이지™ 인퀴지션 " + polish: "Dragon Age™: Inkwizycja " + russian: "«Dragon Age™ Инквизиция» " schinese: 《龙腾世纪审判》 tchinese: 《闇龍紀元異端審判》 -'1222700': +"1222700": installDir: AWayOut launch: - - executable: 'link2ea://launchgame/1222700?platform=steam&theme=awo' + - executable: "link2ea://launchgame/1222700?platform=steam&theme=awo" type: none -'1222730': +"1222730": installDir: STAR WARS Squadrons launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: starwarssquadrons_launcher.exe type: default - - arguments: '-vr' + - arguments: "-vr" config: - osarch: '64' + osarch: "64" oslist: windows executable: starwarssquadrons_launcher.exe type: vr nameLocalized: japanese: STAR WARS™:スコードロン - koreana: '스타워즈: 스쿼드론' + koreana: "스타워즈: 스쿼드론" schinese: 星球大战™:战机中队 tchinese: STAR WARS™:中隊爭雄 -'1222750': +"1222750": installDir: FutaDomWorld launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: FutaDomWorld-32.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: FutaDomWorld.exe type: default @@ -74238,65 +73315,65 @@ oslist: macos executable: FutaDomWorld.app type: default -'1222800': +"1222800": installDir: ValkyrieConnectWW launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ValkyrieConnect.exe type: default -'1222810': +"1222810": nameLocalized: english: Put on your wings and fly. -'1222860': {} -'1222940': +"1222860": {} +"1222940": installDir: Cragls launch: - config: oslist: windows executable: SkyRace.exe type: none -'1223090': +"1223090": installDir: Emily Archer and the Curse of Tutankhamun launch: - config: oslist: windows executable: EmilyArcherPC.exe type: default -'1223110': +"1223110": installDir: BalloonBoyBob launch: - - arguments: '@f+ @INFOOFF' + - arguments: "@f+ @INFOOFF" config: oslist: windows description: Full screen executable: BalloonBoyBob.win32_steam.exe type: option1 - - arguments: '@f1920x1080 @z0.9 @INFOOFF' + - arguments: "@f1920x1080 @z0.9 @INFOOFF" config: oslist: windows description: Windowed executable: BalloonBoyBob.win32_steam.exe type: option2 -'1223140': {} -'1223230': {} -'1223240': {} -'1223250': +"1223140": {} +"1223230": {} +"1223240": {} +"1223250": installDir: Hentai Cosplay USSR launch: - executable: Hentai Cosplay USSR.exe type: none -'1223320': {} -'1223350': +"1223320": {} +"1223350": installDir: War of the Wasteland launch: - config: oslist: windows executable: War of the Wasteland.exe type: default -'1223440': {} -'1223500': +"1223440": {} +"1223500": installDir: Umurangi Generation launch: - config: @@ -74306,23 +73383,23 @@ nameLocalized: japanese: ウムランギ ジェネレーション schinese: 摄追赤红末世代 -'1223530': +"1223530": installDir: Mall Craze launch: - config: oslist: windows executable: MallCraze.exe type: default -'1223550': +"1223550": installDir: Buddy Bash launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: buddybash.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch 32bit build executable: buddybash.exe @@ -74331,8 +73408,8 @@ oslist: macos executable: BuddyBash.app/Contents/MacOS/buddybash type: default -'1223650': {} -'1223670': +"1223650": {} +"1223670": installDir: Super Rocket Ride launch: - config: @@ -74341,15 +73418,15 @@ type: default nameLocalized: schinese: 超级火箭之旅 -'1223680': +"1223680": installDir: Mad Ball launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: MadBall.exe type: default -'1223840': +"1223840": installDir: DRAGON QUEST RIVALS launch: - config: @@ -74358,16 +73435,16 @@ type: default nameLocalized: japanese: ドラゴンクエストライバルズ エース -'1223850': {} -'1223910': +"1223850": {} +"1223910": installDir: Tennis World Tour 2 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: twt2.exe type: default -'1224020': +"1224020": installDir: Creepy Tale launch: - config: @@ -74382,9 +73459,9 @@ oslist: linux executable: CreepyTale.x86_64 type: default -'1224070': {} -'1224330': {} -'1224380': +"1224070": {} +"1224330": {} +"1224380": installDir: Somewhere Sect of Relic launch: - config: @@ -74399,94 +73476,94 @@ oslist: linux executable: SomewhereSectofRelic.exe type: default -'1224600': +"1224600": installDir: G String launch: - - arguments: '-game gstringv2 +fps_max 300 +r_radiosity 3' + - arguments: "-game gstringv2 +fps_max 300 +r_radiosity 3" config: oslist: windows description: Launch executable: gstring.exe type: default -'1224650': +"1224650": installDir: Super Arcade Boy in Goodbye Greenies launch: - config: oslist: windows executable: GoodbyeGreenies.exe type: default -'1224690': +"1224690": installDir: Avaria_Chains_of_Lust launch: - executable: Game_1.1.exe type: default -'1224700': {} -'1224710': +"1224700": {} +"1224710": installDir: Caver launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: Caver0.1\\DeepWell1.0.exe + executable: "Caver0.1\\\\DeepWell1.0.exe" type: default -'1224770': {} -'1224900': +"1224770": {} +"1224900": installDir: Halo Beats! launch: - config: oslist: windows executable: Halo Beats.exe type: default -'1225240': +"1225240": installDir: Humble Rumble launch: - executable: Humble Rumble.exe type: none -'1225320': +"1225320": installDir: HENTAI SEEK launch: - - executable: hentaiseek\\Game.exe + - executable: "hentaiseek\\\\Game.exe" type: none -'1225330': +"1225330": installDir: NBA 2K21 launch: - executable: nba2k21.exe type: none -'1225410': {} -'1225540': {} -'1225550': +"1225410": {} +"1225540": {} +"1225550": installDir: Draft Day Sports College Football 2020 launch: - config: oslist: windows executable: DDSCF20.exe type: default -'1225560': +"1225560": installDir: Unravel launch: - - executable: 'link2ea://launchgame/1225560?platform=steam&theme=un' + - executable: "link2ea://launchgame/1225560?platform=steam&theme=un" type: none -'1225570': +"1225570": installDir: UnravelTwo launch: - - executable: 'link2ea://launchgame/1225570?platform=steam&theme=un2' + - executable: "link2ea://launchgame/1225570?platform=steam&theme=un2" type: none nameLocalized: schinese: 《Unravel Two》 tchinese: 《Unravel Two》 -'1225580': +"1225580": installDir: Fe launch: - - executable: 'link2ea://launchgame/1225580?platform=steam&theme=fe' + - executable: "link2ea://launchgame/1225580?platform=steam&theme=fe" type: none nameLocalized: tchinese: 《Fe》 -'1225590': +"1225590": installDir: SeaOfSolitude launch: - - executable: 'link2ea://launchgame/1225590?platform=steam&theme=sos' + - executable: "link2ea://launchgame/1225590?platform=steam&theme=sos" type: none -'1225640': +"1225640": installDir: First Day Home Defender launch: - config: @@ -74498,95 +73575,95 @@ executable: First Day Home Defender.x86 type: none nameLocalized: - english: 'First Day: Home Defender' - french: 'Premier Jour: Home Defender' - german: 'Erster Tag: Home Defender' + english: "First Day: Home Defender" + french: "Premier Jour: Home Defender" + german: "Erster Tag: Home Defender" japanese: 初日:ホームディフェンダー - koreana: '첫날 : 홈 디펜더' - russian: 'Первый День: Защитник Дома' + koreana: "첫날 : 홈 디펜더" + russian: "Первый День: Защитник Дома" tchinese: 第一天:後衛 -'1225710': +"1225710": installDir: Escape The Manor launch: - executable: EscapeTheMannor.exe type: none -'1225870': +"1225870": installDir: Hentai Girlfriend Simulator launch: - executable: Hentai Girlfriend Simulator.exe type: none -'1225890': +"1225890": nameLocalized: schinese: 腐烂的乌托邦 -'1225910': +"1225910": installDir: Desert of Despair launch: - config: oslist: windows executable: desertofdoitjma.exe type: none -'1225920': +"1225920": installDir: Pixelfence launch: - executable: Pixelfence.exe type: none -'1225940': - installDir: I'm Calling The Cops! +"1225940": + installDir: "I'm Calling The Cops!" launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: Build\\I'm Calling the Cops!.exe + executable: "Build\\\\I'm Calling the Cops!.exe" type: default -'1226010': +"1226010": installDir: Storm Chasers Tornado Islands launch: - config: oslist: windows executable: TornadoIslands.exe type: default -'1226100': +"1226100": installDir: ROBOTIX The Escape launch: - - executable: Robotix\\robotix.exe + - executable: "Robotix\\\\robotix.exe" type: default -'1226210': +"1226210": installDir: Fever Cabin launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: FeverCabin.exe type: default -'1226230': +"1226230": installDir: Escape From The Grim launch: - config: oslist: windows executable: Escape From The Grim.exe type: default -'1226510': +"1226510": installDir: Trigon Space Story launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TSS.exe type: default - config: oslist: macos - executable: TSS.app\\Contents\\MacOS\\Trigon_ Space Story + executable: "TSS.app\\\\Contents\\\\MacOS\\\\Trigon_ Space Story" type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: TSS.x86_64 type: default nameLocalized: - japanese: 'トライゴン: 宇宙の物語' - koreana: '트라이곤: 스페이스 스토리' + japanese: "トライゴン: 宇宙の物語" + koreana: "트라이곤: 스페이스 스토리" schinese: 特里贡:太空故事 -'1226530': +"1226530": installDir: Trap Legend launch: - executable: jyosou_shinwa.exe @@ -74596,37 +73673,37 @@ japanese: 女装神話 schinese: 女装神话 tchinese: 女裝神話 -'1226580': {} -'1226640': +"1226580": {} +"1226640": installDir: Pieces of my Heart launch: - executable: Pieces of my Heart.exe type: default -'1226670': {} -'1227150': +"1226670": {} +"1227150": installDir: JumpBoy launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: JumpBoy.exe type: default -'1227280': - installDir: Despot's Game +"1227280": + installDir: "Despot's Game" launch: - config: oslist: windows - executable: Despot's Game.exe + executable: "Despot's Game.exe" type: default - config: oslist: macos - executable: DespotsGame.app\\Contents\\MacOS\\Despot's Game + executable: "DespotsGame.app\\\\Contents\\\\MacOS\\\\Despot's Game" type: default - config: oslist: linux executable: DespotsGame.x86_64 type: default -'1227400': +"1227400": installDir: Over the Alps launch: - config: @@ -74635,27 +73712,27 @@ type: default - config: oslist: macos - executable: Over the Alps.app\\Contents\\MacOS\\Over the Alps + executable: "Over the Alps.app\\\\Contents\\\\MacOS\\\\Over the Alps" type: default -'1227530': +"1227530": installDir: Partisans 1941 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Partisans.exe type: default - config: oslist: windows - ownsdlc: '1439001' + ownsdlc: "1439001" description: Bonus Content executable: open_bonus_win.bat type: none - config: - osarch: '64' + osarch: "64" oslist: windows description: Play Partisans 1941 on Windows 7 - executable: Partisans\\Content\\Settings\\win7.bat + executable: "Partisans\\\\Content\\\\Settings\\\\win7.bat" type: none - config: oslist: macos @@ -74666,69 +73743,59 @@ russian: Партизаны 1941 schinese: 苏军游击队1941 tchinese: 蘇軍遊擊隊1941 -'1227580': +"1227580": installDir: Trasta launch: - config: oslist: windows executable: Trasta.exe type: default -'1227650': +"1227650": installDir: BangOnBalls launch: - config: oslist: windows executable: BoB.exe type: default -'1227690': +"1227690": installDir: SeveredSteel launch: - - arguments: '-noraytracing -d3d12' + - arguments: "-noraytracing -d3d12" config: oslist: windows description: DirectX12 no RTX (best performance) - description_loc: - english: DirectX12 no RTX (best performance) executable: SeveredSteel.exe type: default - - arguments: '-dx12' + - arguments: "-dx12" config: oslist: windows description: DirectX12 version (For RTX) - description_loc: - english: DirectX12 version (For RTX) executable: SeveredSteel.exe type: none - - arguments: '-TYVC_UnlockAll' + - arguments: "-TYVC_UnlockAll" config: betakey: internal oslist: windows - description: 'Unlock all ' - description_loc: - english: 'Unlock all ' + description: "Unlock all " executable: SeveredSteel.exe - config: oslist: windows description: DirectX11 version - description_loc: - english: DirectX11 version executable: SeveredSteel.exe - - arguments: '-TYVC_UnlockAll' + - arguments: "-TYVC_UnlockAll" config: betakey: ultimatepreview oslist: windows - description: 'Unlock all ' - description_loc: - english: 'Unlock all ' + description: "Unlock all " executable: SeveredSteel.exe -'1227780': +"1227780": installDir: Taur launch: - config: oslist: windows executable: Taur.exe type: default -'1227890': +"1227890": installDir: Summer Memories launch: - executable: Game.exe @@ -74737,17 +73804,17 @@ japanese: あまえんぼ schinese: 夏日狂想曲:乡间的难忘回忆 tchinese: 夏日狂想曲:鄉間的難忘回憶 -'1228410': +"1228410": installDir: WATCH launch: - executable: Watch_Ch1_2.exe type: none -'1228520': +"1228520": installDir: The Convenience Store Yakin Jiken launch: - executable: The Convenience Store Yakin Jiken.exe type: none -'1228600': +"1228600": installDir: Blankspace launch: - config: @@ -74760,9 +73827,9 @@ description: Launch executable: Blankspace.sh type: none -'1228610': {} -'1229020': {} -'1229240': +"1228610": {} +"1229020": {} +"1229240": installDir: Chained Echoes launch: - config: @@ -74778,7 +73845,7 @@ executable: ChainedEchoes.app nameLocalized: schinese: 宿命残响(Chained Echoes) -'1229270': +"1229270": installDir: Onirike launch: - config: @@ -74789,15 +73856,15 @@ oslist: macos executable: Onirike.app/Contents/MacOS/Onirike type: none -'1229380': +"1229380": installDir: Everhood launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Everhood/Everhood.exe type: default -'1229420': +"1229420": installDir: Company of Crime launch: - config: @@ -74806,26 +73873,26 @@ type: default - config: oslist: macos - executable: CompanyOfCrime.app\\Contents\\MacOS\\CompanyOfCrime + executable: "CompanyOfCrime.app\\\\Contents\\\\MacOS\\\\CompanyOfCrime" type: default -'1229460': +"1229460": installDir: Dice Legacy launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: DiceKingdom.exe type: none nameLocalized: schinese: 骰子遗产 -'1229490': +"1229490": installDir: ULTRAKILL launch: - config: oslist: windows executable: ULTRAKILL.exe type: default -'1229580': +"1229580": installDir: Disc Room launch: - config: @@ -74840,14 +73907,14 @@ oslist: macos executable: DISC ROOM.app type: none -'1229590': +"1229590": installDir: Choco Pixel 2 launch: - config: oslist: windows executable: Choco Pixel 2.exe type: default -'1229880': +"1229880": installDir: Koumajou Remilia Scarlet Symphony launch: - config: @@ -74855,45 +73922,41 @@ executable: Koumajou Remilia.exe type: none nameLocalized: - english: 'Koumajou Remilia: Scarlet Symphony' + english: "Koumajou Remilia: Scarlet Symphony" japanese: 紅魔城レミリア 緋色の交響曲 koreana: 홍마성 레밀리아 비색의 교향곡 -'1230140': +"1230140": installDir: ATRI -My Dear Moments- launch: - config: oslist: windows executable: ATRI-MyDearMoments-.exe type: none -'1230530': +"1230530": installDir: Atlas Fallen launch: - description: Play Atlas Fallen - description_loc: - english: Play Atlas Fallen - executable: bin\\AtlasFallen.exe + executable: "bin\\\\AtlasFallen.exe" type: default - workingdir: \\bin - - description: 'Play Atlas Fallen (DirectX 12) ' - description_loc: - english: 'Play Atlas Fallen (DirectX 12) ' - executable: bin\\AtlasFallen (DirectX 12).exe - workingdir: \\bin + workingdir: "\\\\bin" + - description: "Play Atlas Fallen (DirectX 12) " + executable: "bin\\\\AtlasFallen (DirectX 12).exe" + workingdir: "\\\\bin" nameLocalized: schinese: 尘封大陆 -'1230800': +"1230800": installDir: Beach Buggy Racing 2 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Game_x64.exe type: default -'12310': +"12310": installDir: Culpa Innata launch: - executable: game.exe -'1231880': +"1231880": installDir: Haiku the Robot launch: - config: @@ -74904,38 +73967,34 @@ oslist: macos executable: Haiku.app/Contents/MacOS/Haiku type: none -'1231990': {} -'12320': +"1231990": {} +"12320": installDir: Sacred Gold launch: - executable: Sacred.exe -'1232150': +"1232150": installDir: A Little Golf Journey launch: - executable: A Little Golf Journey.exe type: default - - arguments: '-tilt_five' + - arguments: "-tilt_five" config: betakey: build - osarch: '64' + osarch: "64" oslist: windows description: A Little Golf Journey (Tilt Five™ Version) - description_loc: - english: A Little Golf Journey (Tilt Five™ Version) executable: A Little Golf Journey.exe type: option1 - - arguments: '-tilt_five' + - arguments: "-tilt_five" config: betakey: tilt5 oslist: windows description: A Little Golf Journey (Tilt Five™ Version) - description_loc: - english: A Little Golf Journey (Tilt Five™ Version) executable: A Little Golf Journey.exe type: option1 nameLocalized: schinese: 高尔夫小游记 -'1232180': +"1232180": installDir: Sakuya Izayoi Gives You Advice And Dabs launch: - config: @@ -74946,14 +74005,14 @@ latam: Sakuya Izayoi Te Aconseja y Hace un Dab schinese: 咲谈人生 spanish: Sakuya Izayoi Te Aconseja y Hace un Dab -'1232260': +"1232260": installDir: Space Mega Force Man launch: - config: oslist: windows executable: SpaceShip.exe type: none -'1232460': +"1232460": installDir: OneeChanbara Origin launch: - executable: OneeChanbaraOrigin.exe @@ -74963,63 +74022,63 @@ koreana: 오네찬바라 ORIGIN schinese: 美俏女剑士 起源 tchinese: 美俏女劍士 起源 -'1232570': +"1232570": installDir: Paper Beast launch: - - arguments: '-store steam' + - arguments: "-store steam" config: oslist: windows description: PaperBeast executable: PaperBeast.exe type: vr -'12330': +"12330": installDir: DarkStar One launch: - executable: DarkStarOne.exe -'1233020': +"1233020": installDir: Betrayal launch: - - arguments: \"BETRAYAL.COM\" -conf \"dosbox_betrayal.conf\" -noconsole + - arguments: "\\\"BETRAYAL.COM\\\" -conf \\\"dosbox_betrayal.conf\\\" -noconsole" config: oslist: windows - executable: dosbox_windows\\dosbox.exe + executable: "dosbox_windows\\\\dosbox.exe" type: default - config: oslist: linux executable: runBetrayal.sh type: default -'1233030': +"1233030": installDir: ArmorikTheViking launch: - - arguments: \"ARMORIK.COM\" -conf \"dosbox_armoriktheviking.conf\" -noconsole + - arguments: "\\\"ARMORIK.COM\\\" -conf \\\"dosbox_armoriktheviking.conf\\\" -noconsole" config: oslist: windows - executable: dosbox_windows\\dosbox.exe + executable: "dosbox_windows\\\\dosbox.exe" type: none - config: oslist: linux executable: runArmorik.sh type: default -'1233210': +"1233210": installDir: Hentai Honeys Jigsaw launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: HentaiHoneysJigsaw.exe type: none -'1233260': +"1233260": installDir: FAIRY TAIL launch: - config: oslist: windows executable: FAIRY_TAIL.exe type: none -'1233420': +"1233420": installDir: Wanderlust Travel Stories Transsiberian launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Transsiberian.exe type: default @@ -75028,11 +74087,11 @@ executable: Transsiberian.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Transsiberian type: default -'1233530': +"1233530": installDir: Knights of the Chalice 2 launch: - config: @@ -75043,11 +74102,11 @@ oslist: macos executable: Knights of the Chalice 2.app type: default -'1233550': +"1233550": installDir: Rocket Arena launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Launch_RocketArena.exe type: default @@ -75056,23 +74115,23 @@ koreana: 로켓 아레나 schinese: 火箭竞技场 tchinese: 火箭競技場 -'1233570': +"1233570": installDir: Mirrors Edge Catalyst launch: - - executable: 'link2ea://launchgame/1233570?platform=steam&theme=mec' + - executable: "link2ea://launchgame/1233570?platform=steam&theme=mec" type: none nameLocalized: japanese: ミラーズエッジ™ カタリスト schinese: 《镜之边缘:Catalyst》 tchinese: 《靚影特務:關鍵催化》 -'1233590': +"1233590": installDir: Warhammer Age of Sigmar Storm Ground launch: - config: oslist: windows executable: Warfield/Binaries/Win64/StormGround.exe type: none -'1233800': +"1233800": installDir: Kandagawa Jet Girls launch: - config: @@ -75087,7 +74146,7 @@ japanese: 神田川JET GIRLS koreana: 칸다가와 제트 걸즈 tchinese: 神田川JET GIRLS -'1233880': +"1233880": installDir: Disgaea 4 Complete+ launch: - config: @@ -75099,145 +74158,144 @@ koreana: 마계전기 디스가이아4 Return schinese: 魔界战记DISGAEA4Return tchinese: 魔界戰記DISGAEA4 Return -'12340': +"12340": installDir: Jack Keane launch: - - executable: bin\\release\\jackkeane.exe - workingdir: bin\\release -'1235140': + - executable: "bin\\\\release\\\\jackkeane.exe" + workingdir: "bin\\\\release" +"1235140": installDir: Yakuza Like a Dragon launch: - arguments: /timing config: betakey: default - osarch: '64' + osarch: "64" oslist: windows executable: runtime/media/startup.exe type: default - workingdir: runtime\\media + workingdir: "runtime\\\\media" - arguments: /timing -language en -locale=english_us config: betakey: denuvo_test - osarch: '64' + osarch: "64" oslist: windows - executable: runtime\\media\\Yakuza7.exe + executable: "runtime\\\\media\\\\Yakuza7.exe" type: default - workingdir: runtime\\media + workingdir: "runtime\\\\media" - arguments: /timing config: betakey: for_sammynetworks - osarch: '64' + osarch: "64" oslist: windows executable: runtime/media/YakuzaLikeADragon.exe type: default - workingdir: runtime\\media + workingdir: "runtime\\\\media" - arguments: /timing config: - betakey: >- - work99,work98,work02,ec1test,ec1test_retail,patch_v0101,for_compatibility_test,ec1test_v0109,media_preview,intel_test,ec1test_v0109_kr,ec1test_v0109_kr_retail - osarch: '64' + betakey: "work99,work98,work02,ec1test,ec1test_retail,patch_v0101,for_compatibility_test,ec1test_v0109,media_preview,intel_test,ec1test_v0109_kr,ec1test_v0109_kr_retail" + osarch: "64" oslist: windows executable: runtime/media/startup.exe type: default - workingdir: runtime\\media + workingdir: "runtime\\\\media" - arguments: /timing -language=ru -locale=english_us config: - betakey: 'work01,work04,ec1test_v0109_ru' - osarch: '64' + betakey: "work01,work04,ec1test_v0109_ru" + osarch: "64" oslist: windows executable: runtime/media/startup.exe type: default - workingdir: runtime\\media + workingdir: "runtime\\\\media" - arguments: /timing -language=pt -locale=english_us config: - betakey: 'work03,ec1test_v0109_pt' - osarch: '64' + betakey: "work03,ec1test_v0109_pt" + osarch: "64" oslist: windows executable: runtime/media/startup.exe type: none - workingdir: runtime\\media + workingdir: "runtime\\\\media" - arguments: /timing -language=ja -locale=english_us config: betakey: work05 - osarch: '64' + osarch: "64" oslist: windows executable: runtime/media/startup.exe type: none - workingdir: runtime\\media + workingdir: "runtime\\\\media" - arguments: /timing -language=ko -locale=english_us config: betakey: work06 - osarch: '64' + osarch: "64" oslist: windows executable: runtime/media/startup.exe type: none - workingdir: runtime\\media + workingdir: "runtime\\\\media" - arguments: /timing -language=zh -locale=english_us config: betakey: work07 - osarch: '64' + osarch: "64" oslist: windows executable: runtime/media/startup.exe type: none - workingdir: runtime\\media + workingdir: "runtime\\\\media" - arguments: /timing -language=zhs -locale=english_us config: betakey: work08 - osarch: '64' + osarch: "64" oslist: windows executable: runtime/media/startup.exe type: none - workingdir: runtime\\media - - arguments: '-language=ja -locale=english_us' + workingdir: "runtime\\\\media" + - arguments: "-language=ja -locale=english_us" config: betakey: work15 - osarch: '64' + osarch: "64" oslist: windows executable: runtime/media/startup.exe type: none - workingdir: runtime\\media - - arguments: '-language=ko -locale=english_us' + workingdir: "runtime\\\\media" + - arguments: "-language=ko -locale=english_us" config: betakey: work16 - osarch: '64' + osarch: "64" oslist: windows executable: runtime/media/startup.exe type: none - workingdir: runtime\\media - - arguments: '-language=zh -locale=english_us' + workingdir: "runtime\\\\media" + - arguments: "-language=zh -locale=english_us" config: betakey: work17 - osarch: '64' + osarch: "64" oslist: windows executable: runtime/media/startup.exe type: none - workingdir: runtime\\media - - arguments: '-language=zhs -locale=english_us' + workingdir: "runtime\\\\media" + - arguments: "-language=zhs -locale=english_us" config: - osarch: '64' + osarch: "64" oslist: windows executable: runtime/media/startup.exe type: none - workingdir: runtime\\media + workingdir: "runtime\\\\media" nameLocalized: japanese: 龍が如く7 光と闇の行方 インターナショナル koreana: 용과 같이7 빛과 어둠의 행방 International schinese: 人中之龙7 光与暗的去向 国际版 tchinese: 人中之龍7 光與闇的去向 國際版 -'1235360': +"1235360": installDir: Epic Conquest 2 launch: - config: oslist: windows executable: EC2.exe type: default -'1235710': {} -'1235990': {} -'12360': +"1235710": {} +"1235990": {} +"12360": installDir: FlatOut Ultimate Carnage launch: - executable: Launcher.exe -'1236300': +"1236300": installDir: Resident Evil ReVerse launch: - config: @@ -75245,64 +74303,51 @@ executable: Reverse.exe type: default nameLocalized: - arabic: 'Resident Evil Re:Verse' - brazilian: 'Resident Evil Re:Verse' - dutch: 'Resident Evil Re:Verse' - french: 'Resident Evil Re:Verse' - german: 'Resident Evil Re:Verse' - italian: 'Resident Evil Re:Verse' - japanese: 'BIOHAZARD RE:VERSE' - koreana: 'Biohazard Re:Verse' - latam: 'Resident Evil Re:Verse' - polish: 'Resident Evil Re:Verse' - portuguese: 'Resident Evil Re:Verse' - russian: 'Resident Evil Re:Verse' - schinese: 'Resident Evil Re:Verse' - spanish: 'Resident Evil Re:Verse' - tchinese: 'Resident Evil Re:Verse' - thai: 'Resident Evil Re:Verse' -'1236780': - installDir: AKIBA'S TRIP Hellbound & Debriefed + arabic: "Resident Evil Re:Verse" + brazilian: "Resident Evil Re:Verse" + dutch: "Resident Evil Re:Verse" + french: "Resident Evil Re:Verse" + german: "Resident Evil Re:Verse" + italian: "Resident Evil Re:Verse" + japanese: "BIOHAZARD RE:VERSE" + koreana: "Biohazard Re:Verse" + latam: "Resident Evil Re:Verse" + polish: "Resident Evil Re:Verse" + portuguese: "Resident Evil Re:Verse" + russian: "Resident Evil Re:Verse" + schinese: "Resident Evil Re:Verse" + spanish: "Resident Evil Re:Verse" + tchinese: "Resident Evil Re:Verse" + thai: "Resident Evil Re:Verse" +"1236780": + installDir: "AKIBA'S TRIP Hellbound & Debriefed" launch: - - arguments: '-s' + - arguments: "-s" executable: AkibaHD.exe type: none - executable: Launcher.exe type: config nameLocalized: - japanese: AKIBA'S TRIP ファーストメモリー - schinese: '秋叶脱物语: Hellbound & Debriefed' - tchinese: '秋葉脫物語: Hellbound & Debriefed' -'12370': + japanese: "AKIBA'S TRIP ファーストメモリー" + schinese: "秋叶脱物语: Hellbound & Debriefed" + tchinese: "秋葉脫物語: Hellbound & Debriefed" +"12370": installDir: Jagged Alliance 2 Gold launch: - executable: ja2.exe -'1237320': +"1237320": installDir: SonicFrontiers launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SonicFrontiers.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows - ownsdlc: '2093240' + ownsdlc: "2093240" description: SONIC FRONTIERS Digital Art Book with Mini Digital Soundtrack - description_loc: - brazilian: Livro de Arte Digital e Trilha Sonora Digital de SONIC FRONTIERS - english: SONIC FRONTIERS Digital Art Book with Mini Digital Soundtrack - french: Art book digital de SONIC FRONTIERS avec mini-soundtrack digital - german: Digitales „SONIC FRONTIERS“-Artbook mit Minisoundtrack - italian: Art book digitale di SONIC FRONTIERS con mini colonna sonora digitale - japanese: SONIC FRONTIERS デジタルアートブック&デジタルミニサウンドトラック - koreana: 소닉 프론티어 디지털 아트 북 & 디지털 미니 사운드트랙 - polish: Cyfrowy album z grafikami i mini ścieżką dźwiękową SONIC FRONTIERS - russian: Цифровой артбук SONIC FRONTIERS и цифровой мини-саундтрек - schinese: 索尼克 未知边境 数字画集和数字版迷你原声带 - spanish: Libro de ilustraciones y mini banda sonora digital de SONIC FRONTIERS - tchinese: 索尼克 未知邊境 數位美術書和數位迷你原聲帶 executable: SonicFrontiersArtAndMusic.exe type: option1 nameLocalized: @@ -75310,110 +74355,110 @@ koreana: 소닉 프론티어 schinese: 索尼克 未知边境 tchinese: 索尼克 未知邊境 -'1237510': - installDir: 'Dr Livingstone, I Presume' +"1237510": + installDir: "Dr Livingstone, I Presume" launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: DrLivingstone.exe type: none -'1237530': +"1237530": installDir: Kinky Fight Club launch: - executable: Kinky Fight Club.exe type: none -'1237800': +"1237800": installDir: Fields of Glory launch: - - arguments: '-conf dosbox_FoG_w_1280x960.conf -conf dosbox_FoG_auto_launch.conf -noconsole' + - arguments: "-conf dosbox_FoG_w_1280x960.conf -conf dosbox_FoG_auto_launch.conf -noconsole" config: oslist: windows description: windowed 1280x960 - executable: dosbox_windows\\DOSBox.exe + executable: "dosbox_windows\\\\DOSBox.exe" type: option1 - workingdir: dosbox_windows\\ - - arguments: '-conf dosbox_FoG_w_320x240.conf -conf dosbox_FoG_auto_launch.conf -noconsole' + workingdir: "dosbox_windows\\\\" + - arguments: "-conf dosbox_FoG_w_320x240.conf -conf dosbox_FoG_auto_launch.conf -noconsole" config: oslist: windows description: windowed 320x240 - executable: dosbox_windows\\DOSBox.exe + executable: "dosbox_windows\\\\DOSBox.exe" type: option1 - workingdir: dosbox_windows\\ - - arguments: '-conf dosbox_FoG_w_640x480.conf -conf dosbox_FoG_auto_launch.conf -noconsole' + workingdir: "dosbox_windows\\\\" + - arguments: "-conf dosbox_FoG_w_640x480.conf -conf dosbox_FoG_auto_launch.conf -noconsole" config: oslist: windows description: windowed 640x480 - executable: dosbox_windows\\DOSBox.exe + executable: "dosbox_windows\\\\DOSBox.exe" type: option1 - workingdir: dosbox_windows\\ - - arguments: '-conf dosbox_FoG_w_2560x1920.conf -conf dosbox_FoG_auto_launch.conf -noconsole' + workingdir: "dosbox_windows\\\\" + - arguments: "-conf dosbox_FoG_w_2560x1920.conf -conf dosbox_FoG_auto_launch.conf -noconsole" config: oslist: windows description: windowed 2560x1920 - executable: dosbox_windows\\DOSBox.exe + executable: "dosbox_windows\\\\DOSBox.exe" type: option1 - workingdir: dosbox_windows\\ - - arguments: '-conf dosbox_FoG_fs.conf -conf dosbox_FoG_auto_launch.conf -noconsole' + workingdir: "dosbox_windows\\\\" + - arguments: "-conf dosbox_FoG_fs.conf -conf dosbox_FoG_auto_launch.conf -noconsole" config: oslist: windows description: full screen - executable: dosbox_windows\\DOSBox.exe + executable: "dosbox_windows\\\\DOSBox.exe" type: option1 - workingdir: dosbox_windows\\ -'1237950': + workingdir: "dosbox_windows\\\\" +"1237950": installDir: STAR WARS Battlefront II launch: - - executable: 'link2ea://launchgame/1237950?platform=steam&theme=swbfii' + - executable: "link2ea://launchgame/1237950?platform=steam&theme=swbfii" type: none nameLocalized: japanese: STAR WARS™ バトルフロント™ II schinese: 《STAR WARS™ 前线™ II tchinese: 《星球大戰:戰場前線™ II》 -'1237970': +"1237970": installDir: Titanfall2 launch: - - executable: 'link2ea://launchgame/1237970?platform=steam&theme=tf2' + - executable: "link2ea://launchgame/1237970?platform=steam&theme=tf2" type: none -'1237980': +"1237980": installDir: STAR WARS Battlefront launch: - - executable: 'link2ea://launchgame/1237980?platform=steam&theme=swbf' + - executable: "link2ea://launchgame/1237980?platform=steam&theme=swbf" type: none nameLocalized: japanese: STAR WARS™ バトルフロント™ - koreana: 'STAR WARS™ Battlefront™ ' - schinese: '星际大战 战地风云™ ' + koreana: "STAR WARS™ Battlefront™ " + schinese: "星际大战 战地风云™ " tchinese: 《星際大戰:戰場前線™》 -'12380': +"12380": installDir: Jagged Alliance 2 Gold Unfinished Business launch: - executable: ja2ub.exe -'1238000': +"1238000": installDir: Mass Effect Andromeda launch: - - executable: 'link2ea://launchgame/1238000?platform=steam&theme=mea' + - executable: "link2ea://launchgame/1238000?platform=steam&theme=mea" type: none nameLocalized: - brazilian: 'Edição Deluxe do Mass Effect™: Andromeda' - czech: 'Mass Effect™: Andromeda – edice Deluxe' - english: 'Mass Effect™: Andromeda Deluxe Edition' - french: "Édition Deluxe de Mass\_Effect™: Andromeda" - koreana: 'Mass Effect™: Andromeda 디럭스 에디션' - latam: 'Deluxe Edition de Mass Effect™: Andromeda' - polish: 'Mass Effect: Andromeda - ulepszenie Deluxe' - portuguese: 'Mass Effect™: Andromeda Edição Deluxe' - russian: 'Mass Effect™: Andromeda, издание Deluxe' + brazilian: "Edição Deluxe do Mass Effect™: Andromeda" + czech: "Mass Effect™: Andromeda – edice Deluxe" + english: "Mass Effect™: Andromeda Deluxe Edition" + french: "Édition Deluxe de Mass Effect™: Andromeda" + koreana: "Mass Effect™: Andromeda 디럭스 에디션" + latam: "Deluxe Edition de Mass Effect™: Andromeda" + polish: "Mass Effect: Andromeda - ulepszenie Deluxe" + portuguese: "Mass Effect™: Andromeda Edição Deluxe" + russian: "Mass Effect™: Andromeda, издание Deluxe" schinese: 《Mass Effect™:Andromeda》豪华版内容 - spanish: 'Edición Deluxe de Mass Effect™: Andromeda' + spanish: "Edición Deluxe de Mass Effect™: Andromeda" tchinese: 《質量效應™:仙女座》豪華版 - turkish: 'Mass Effect™: Andromeda Deluxe Sürüm' -'1238020': + turkish: "Mass Effect™: Andromeda Deluxe Sürüm" +"1238020": installDir: Mass Effect 3 launch: - - executable: 'link2ea://launchgame/1238020?platform=steam&theme=me3' + - executable: "link2ea://launchgame/1238020?platform=steam&theme=me3" type: none - - executable: Binaries\\MassEffect3Config.exe + - executable: "Binaries\\\\MassEffect3Config.exe" type: config nameLocalized: brazilian: Mass Effect™ 3 Edição Digital Deluxe N7 (2012) @@ -75425,34 +74470,34 @@ schinese: 《Mass Effect™3》N7 数字豪华版 (2012) spanish: Mass Effect 3 - Edición Digital Deluxe (2012) tchinese: 《質量效應™ 3》N7 數位豪華版 (2012) -'1238040': +"1238040": installDir: Dragon Age II launch: - - executable: 'link2ea://launchgame/1238040?platform=steam&theme=daII' + - executable: "link2ea://launchgame/1238040?platform=steam&theme=daII" type: none -'1238060': +"1238060": installDir: Dead Space 3 launch: - - executable: 'link2ea://launchgame/1238060?platform=steam&theme=ds3' + - executable: "link2ea://launchgame/1238060?platform=steam&theme=ds3" type: none nameLocalized: koreana: 데드 스페이스 3 tchinese: 絕命異次元3 -'1238080': +"1238080": installDir: BurnoutPR launch: - - executable: 'link2ea://launchgame/1238080?platform=steam&theme=bprm' + - executable: "link2ea://launchgame/1238080?platform=steam&theme=bprm" type: none nameLocalized: tchinese: 《橫衝直撞:狂飆樂園》重製版 -'1238340': +"1238340": installDir: Terra Lander II - Rockslide Rescue launch: - config: oslist: windows executable: terraLander2.exe type: default -'1238680': +"1238680": installDir: Amairo Chocolate launch: - config: @@ -75463,48 +74508,48 @@ japanese: あまいろショコラータ schinese: 巧克甜恋 tchinese: 巧克甜恋 -'1238730': +"1238730": installDir: Flowers -Le volume sur automne- launch: - executable: FLOWERS.exe type: none -'1238810': +"1238810": installDir: Battlefield V launch: - - executable: 'link2ea://launchgame/1238810?platform=steam&theme=bfv' + - executable: "link2ea://launchgame/1238810?platform=steam&theme=bfv" type: none nameLocalized: schinese: 《战地风云 5》 tchinese: 《戰地風雲 5》 -'1238820': +"1238820": installDir: Battlefield 3 launch: - - executable: 'link2ea://launchgame/1238820?platform=steam&theme=bf3' + - executable: "link2ea://launchgame/1238820?platform=steam&theme=bf3" type: none nameLocalized: - japanese: 'バトルフィールド 3 ' + japanese: "バトルフィールド 3 " schinese: 《Battlefield 3™》 tchinese: 《戰地風雲3》 -'1238840': +"1238840": installDir: Battlefield 1 launch: - - executable: 'link2ea://launchgame/1238840?platform=steam&theme=bf1' + - executable: "link2ea://launchgame/1238840?platform=steam&theme=bf1" type: none nameLocalized: - japanese: 'バトルフィールド 1 ' -'1238860': + japanese: "バトルフィールド 1 " +"1238860": installDir: Battlefield 4 launch: - - executable: 'link2ea://launchgame/1238860?platform=steam&theme=bf4' + - executable: "link2ea://launchgame/1238860?platform=steam&theme=bf4" type: none nameLocalized: - japanese: 'バトルフィールド 4 ' + japanese: "バトルフィールド 4 " schinese: 《Battlefield 4》™ tchinese: 《戰地風雲4》 -'1238880': +"1238880": installDir: BFH launch: - - executable: 'link2ea://launchgame/1238880?platform=steam&theme=bfh' + - executable: "link2ea://launchgame/1238880?platform=steam&theme=bfh" type: none nameLocalized: brazilian: Edição Ultimate de Battlefield™ Hardline @@ -75517,40 +74562,40 @@ schinese: 《Battlefield™ Hardline》终极版 tchinese: 《戰地風雲:Hardline》終極版 turkish: Battlefield™ Hardline Ultimate Sürüm -'12390': +"12390": installDir: Exodus from the Earth launch: - - arguments: '-data ..\\single' - executable: bin\\efte.exe - - arguments: '-data ..\\net -multiplayer' + - arguments: "-data ..\\\\single" + executable: "bin\\\\efte.exe" + - arguments: "-data ..\\\\net -multiplayer" description: Launch Exodus from the Earth Multiplayer - executable: bin\\efte.exe -'1239020': + executable: "bin\\\\efte.exe" +"1239020": installDir: TOGETHER BnB launch: - config: oslist: windows executable: TogetherBNB.exe type: default -'1239080': +"1239080": installDir: DoorKickers2 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: DoorKickers2.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch 32bit executable: win32_runtime/DoorKickers2.exe type: default -'1239300': +"1239300": installDir: Gravewood High launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: GravewoodHigh.exe type: none @@ -75559,23 +74604,23 @@ japanese: グレイブウッド・ハイ Gravewood High schinese: 《坟墓高中》Gravewood High tchinese: 墳木高中 Gravewood High -'1239520': +"1239520": installDir: Madden NFL 21 launch: - - executable: 'link2ea://launchgame/1239520?platform=steam&theme=nfl21' + - executable: "link2ea://launchgame/1239520?platform=steam&theme=nfl21" type: none nameLocalized: tchinese: 《Madden NFL 21》 -'1239690': +"1239690": installDir: Retrowave launch: - executable: Retrowave.exe type: none -'1240050': +"1240050": installDir: Pendragon launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Pendragon.exe type: default @@ -75583,7 +74628,7 @@ oslist: macos executable: Pendragon.app type: default -'1240210': +"1240210": installDir: There is no game - Wrong dimension launch: - config: @@ -75594,53 +74639,53 @@ oslist: macos executable: Ting.app type: default -'1240230': - installDir: Tony Stewart's Sprint Car Racing +"1240230": + installDir: "Tony Stewart's Sprint Car Racing" launch: - config: - osarch: '64' + osarch: "64" oslist: windows - description: Play Tony Stewart's Sprint Car Racing + description: "Play Tony Stewart's Sprint Car Racing" executable: SprintCarRacing.exe type: default - - arguments: '-MGI-reset-graphics-settings' + - arguments: "-MGI-reset-graphics-settings" config: - osarch: '64' + osarch: "64" oslist: windows description: Reset Graphic Settings executable: SprintCarRacing.exe type: none - config: - osarch: '64' + osarch: "64" oslist: windows description: Delete Save Data executable: DeleteSaveData.bat type: none -'1240440': +"1240440": installDir: Halo Infinite launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: HaloInfinite.exe type: default -'1241100': +"1241100": installDir: POLYGON launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: POLYGON.exe type: default -'1241370': +"1241370": installDir: FierceWind Decay launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: \\FierceWindDecay\\FWDecay.exe + executable: "\\\\FierceWindDecay\\\\FWDecay.exe" type: default -'1241700': +"1241700": installDir: There is no game Jam Edition 2015 launch: - config: @@ -75651,32 +74696,32 @@ oslist: macos executable: TingJAM.app type: default -'1241950': +"1241950": installDir: Warzone 2100 launch: - - executable: bin\\warzone2100.exe + - executable: "bin\\\\warzone2100.exe" type: none -'12420': +"12420": installDir: Perimeter 2 launch: - executable: Perimeter2.exe -'1242670': +"1242670": installDir: Rolling Sky launch: - config: oslist: windows executable: Rolling Sky.exe type: default -'1242980': +"1242980": installDir: KeyWe launch: - executable: KeyWe.exe type: default -'12430': +"12430": installDir: SlamIt Pinball Big Score launch: - executable: BigScore.exe -'1243220': +"1243220": installDir: Picklock launch: - config: @@ -75687,14 +74732,14 @@ oslist: macos executable: Picklock.app type: default -'1243520': +"1243520": installDir: KUR launch: - config: oslist: windows executable: Kur.exe type: none -'1243670': +"1243670": installDir: Higurashi When They Cry Hou - Ch.8 Matsuribayashi launch: - config: @@ -75706,28 +74751,28 @@ executable: HigurashiEp08.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: HigurashiEp08.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: HigurashiEp08.x86_64 type: default nameLocalized: japanese: ひぐらしのなく頃に奉 祭囃し編 -'1243690': +"1243690": installDir: Gods Will Fall launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Gods Will Fall.exe type: none - config: betakey: digital_partner_review - osarch: '64' + osarch: "64" oslist: windows description: Milestone 10 executable: Gods Will Fall Milestone 10.exe @@ -75737,7 +74782,7 @@ description: Milestone 9 executable: Gods Will Fall Milestone 9.exe type: none -'1243790': +"1243790": installDir: Heart Star launch: - config: @@ -75748,7 +74793,7 @@ oslist: macos executable: Heart Star.app type: default -'1243830': +"1243830": installDir: Overcooked! All You Can Eat launch: - config: @@ -75758,27 +74803,21 @@ - config: betakey: qa_staging description: Used for qa staging builds - description_loc: - english: Used for qa staging builds executable: Overcooked All You Can Eat.exe type: default - config: betakey: qa_staging_rc1 description: Used for RC1 qa staging builds - description_loc: - english: Used for RC1 qa staging builds executable: Overcooked All You Can Eat.exe type: default - config: betakey: xplay1 description: Testing Xplay1 RC - description_loc: - english: Testing Xplay1 RC executable: Overcooked All You Can Eat.exe type: default nameLocalized: schinese: 胡闹厨房 全都好吃 -'1243890': +"1243890": installDir: SwordOfTheNecromancer launch: - config: @@ -75789,7 +74828,7 @@ oslist: linux executable: SwordOfTheNecromancer type: default -'1243960': +"1243960": installDir: Unspottable launch: - config: @@ -75798,19 +74837,19 @@ type: default - config: oslist: macos - executable: unspottable.app\\Contents\\MacOS\\Unspottable + executable: "unspottable.app\\\\Contents\\\\MacOS\\\\Unspottable" type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Unspottable.x86_64 type: none -'12440': +"12440": installDir: Ankh - Heart of Osiris launch: - - executable: bin\\release\\Ankh-OsirisHeart.exe - workingdir: bin\\release -'1244090': + - executable: "bin\\\\release\\\\Ankh-OsirisHeart.exe" + workingdir: "bin\\\\release" +"1244090": installDir: Sea of Stars launch: - executable: SeaOfStars.exe @@ -75818,57 +74857,45 @@ nameLocalized: schinese: Sea of Stars 星之海 tchinese: Sea of Stars 星之海 -'1244460': +"1244460": installDir: Jurassic World Evolution 2 launch: - config: - betakey: 'internal_1, external_4, dev_release_branch2' - osarch: '64' + betakey: "internal_1, external_4, dev_release_branch2" + osarch: "64" oslist: windows description: Galileo (Release Build) - description_loc: - english: Galileo (Release Build) executable: Galileo.release.exe type: option1 - config: - betakey: >- - ext_dev_instrumented, ext_live_instrumented, internal_1, internal_2, external_3, external_4, - dev_release_branch2 - osarch: '64' + betakey: "ext_dev_instrumented, ext_live_instrumented, internal_1, internal_2, external_3, external_4, dev_release_branch2" + osarch: "64" oslist: windows description: Galileo (Profile Build) - description_loc: - english: Galileo (Profile Build) executable: Galileo.profile.exe type: option2 - config: - betakey: 'denuvo, dev_final_branch2, external_5, external_6, external_7, internal_1, outsource_compat' - osarch: '64' + betakey: "denuvo, dev_final_branch2, external_5, external_6, external_7, internal_1, outsource_compat" + osarch: "64" oslist: windows executable: galileo.exe type: default - config: - betakey: 'dev_release_trunk, dev_release_branch, outsource_fqa' - osarch: '64' + betakey: "dev_release_trunk, dev_release_branch, outsource_fqa" + osarch: "64" oslist: windows description: Galileo (Release Build) - description_loc: - english: Galileo (Release Build) executable: JWE2.release.exe type: option1 - config: - betakey: >- - outsource_lqa_2, external_1, dev_release_trunk, dev_release_branch, outsource_fqa, ext_dev_instrumented2, - outsource_lqa - osarch: '64' + betakey: "outsource_lqa_2, external_1, dev_release_trunk, dev_release_branch, outsource_fqa, ext_dev_instrumented2, outsource_lqa" + osarch: "64" oslist: windows description: Galileo (Profile Build) - description_loc: - english: Galileo (Profile Build) executable: JWE2.profile.exe type: option2 - config: - osarch: '64' + osarch: "64" oslist: windows executable: JWE2.exe type: default @@ -75877,11 +74904,11 @@ koreana: 쥬라기 월드 에볼루션 2 schinese: 侏罗纪世界:进化 2 tchinese: 侏羅紀世界:進化 2 -'1244800': +"1244800": installDir: Terraformers launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: Terraformers.exe @@ -75896,13 +74923,13 @@ type: default nameLocalized: schinese: 焕然异星 Terraformers -'1244830': +"1244830": installDir: ConflictEurope launch: - - arguments: \"CONEUROP.EXE\" -conf \"dosbox_conflict_europe.conf\" -exit -noconsole + - arguments: "\\\"CONEUROP.EXE\\\" -conf \\\"dosbox_conflict_europe.conf\\\" -exit -noconsole" config: oslist: windows - executable: dosbox_windows\\dosbox.exe + executable: "dosbox_windows\\\\dosbox.exe" type: none - config: oslist: linux @@ -75910,25 +74937,25 @@ type: none - executable: Conflict Europe Manual.pdf type: manual -'1244850': +"1244850": installDir: Witch College 2 launch: - config: oslist: windows executable: Witch College 2.exe type: none -'1244950': +"1244950": installDir: Battletoads launch: - description: Launch executable: Battletoads.exe type: default -'12450': +"12450": installDir: Ankh - Battle of the Gods launch: - - executable: bin\\release\\Ankh-BOG.exe - workingdir: bin\\release -'1245430': + - executable: "bin\\\\release\\\\Ankh-BOG.exe" + workingdir: "bin\\\\release" +"1245430": installDir: Golden Light launch: - executable: Golden Light.exe @@ -75938,12 +74965,12 @@ koreana: 골든 라이트 schinese: 金色的光芒 tchinese: 金色的光芒 -'1245480': +"1245480": nameLocalized: - koreana: '신듀얼리티: 에코 오브 에이다' + koreana: "신듀얼리티: 에코 오브 에이다" schinese: 奇异贤伴 爱达之歌 tchinese: 奇異賢伴 愛達之歌 -'1245560': +"1245560": installDir: Roots of Pacha launch: - config: @@ -75955,77 +74982,71 @@ - config: oslist: linux executable: Roots of Pacha.x86_64 -'1245610': +"1245610": installDir: AChat launch: - config: oslist: windows executable: achat.exe type: default -'1245620': +"1245620": installDir: ELDEN RING launch: - description: ELDEN RING - description_loc: - english: ELDEN RING executable: Game/start_protected_game.exe workingdir: Game - config: - ownsdlc: '1896300' + ownsdlc: "1896300" description: ELDEN RING Artbook/OST - description_loc: - english: ELDEN RING Artbook/OST executable: ArtbookOST/ELDEN RING Digital Artbook & Soundtrack.exe workingdir: ArtbookOST - config: - ownsdlc: '1896320' + ownsdlc: "1896320" description: ELDEN RING Adventure Guide - description_loc: - english: ELDEN RING Adventure Guide executable: AdvGuide/ELDEN RING Adventure Guide.exe workingdir: AdvGuide nameLocalized: schinese: 艾尔登法环 tchinese: 艾爾登法環 -'12460': +"12460": installDir: BC Kings launch: - executable: BCKings.exe -'1246250': +"1246250": installDir: An Airport for Aliens Currently Run by Dogs launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: An Airport for Aliens Currently Run by Dogs.exe type: default -'1246490': +"1246490": installDir: Domino Simulator 2020 launch: - description: Main Build executable: DominoSimulator20.exe type: none -'1246540': +"1246540": installDir: Alice Sisters launch: - config: oslist: windows executable: AliceSisters.exe type: default -'1246870': +"1246870": installDir: Harvest Moon One World launch: - config: oslist: windows executable: Harvest Moon One World.exe type: default -'12470': +"12470": installDir: Port Royale 2 launch: - executable: PR2.exe - description: Configuration Utility executable: PR2Config.exe -'1247110': +"1247110": installDir: Chasing Light launch: - config: @@ -76036,25 +75057,25 @@ oslist: macos executable: ChasingLight.app type: default -'1247570': +"1247570": installDir: Expedition Zero launch: - config: oslist: windows executable: ExpeditionZero.exe type: default -'1247930': +"1247930": installDir: Lesbian Voyeur Simulator launch: - config: oslist: windows executable: Lesbian Voyeur Simulator.exe type: none -'12480': +"12480": installDir: 9th Company launch: - executable: 9-Pota.exe -'1248060': +"1248060": installDir: Realpolitiks II launch: - config: @@ -76063,12 +75084,12 @@ executable: RP2.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch Linux executable: RP2.x86_64 type: default - - arguments: '-ModEditor' + - arguments: "-ModEditor" config: oslist: windows description: Mod Editor @@ -76078,16 +75099,14 @@ oslist: macos executable: RP2.app/Contents/MacOS/RP2 type: default - - arguments: '-ModEditor' + - arguments: "-ModEditor" config: oslist: macos description: Mod Editor - description_loc: - english: Mod Editor executable: RP2.app/Contents/MacOS/RP2 type: editor -'1248080': {} -'1248130': +"1248080": {} +"1248130": installDir: Farming Simulator 22 launch: - config: @@ -76098,7 +75117,7 @@ oslist: macos executable: Farming Simulator 2022.app type: default -'1248150': +"1248150": installDir: Warshmallows launch: - config: @@ -76107,10 +75126,10 @@ type: none - config: oslist: linux - executable: linux\\Wrashmallows.x86_64 + executable: "linux\\\\Wrashmallows.x86_64" type: none - workingdir: linux\\ -'1248840': + workingdir: "linux\\\\" +"1248840": installDir: Sephonie launch: - config: @@ -76121,20 +75140,20 @@ oslist: macos executable: Sephonie.app/Contents/MacOS/Sephonie type: default -'1249040': {} -'1249110': +"1249040": {} +"1249110": installDir: Skully launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: Skully\\Binaries\\Win64\\Skully.exe + executable: "Skully\\\\Binaries\\\\Win64\\\\Skully.exe" type: default -'1249130': +"1249130": installDir: Hero of the Kingdom The Lost Tales 1 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Hero of the Kingdom The Lost Tales 1.exe type: default @@ -76147,27 +75166,27 @@ executable: Hero of the Kingdom The Lost Tales 1 type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: Hero of the Kingdom The Lost Tales 1 32bit.exe type: default nameLocalized: - russian: 'Hero of the Kingdom: The Lost Tales 1 / Герой Королевства: Утраченные Сказания 1' - schinese: 'Hero of the Kingdom: The Lost Tales 1 / 王国英雄:失落传说1' - ukrainian: 'Hero of the Kingdom: The Lost Tales 1 / Герой Королівства: Утрачені оповіді 1' -'1249410': + russian: "Hero of the Kingdom: The Lost Tales 1 / Герой Королевства: Утраченные Сказания 1" + schinese: "Hero of the Kingdom: The Lost Tales 1 / 王国英雄:失落传说1" + ukrainian: "Hero of the Kingdom: The Lost Tales 1 / Герой Королівства: Утрачені оповіді 1" +"1249410": installDir: bloodwych launch: - - arguments: \"BWYCH.EXE\" -noconsole -conf \"dosbox_bloodwych.conf\" + - arguments: "\\\"BWYCH.EXE\\\" -noconsole -conf \\\"dosbox_bloodwych.conf\\\"" config: oslist: windows - executable: dosbox_windows\\dosbox.exe + executable: "dosbox_windows\\\\dosbox.exe" type: default - config: oslist: linux executable: runBloodwych.sh type: default -'1249480': +"1249480": installDir: Ex-Zodiac launch: - config: @@ -76182,8 +75201,8 @@ oslist: linux executable: ExZodiac.x86_64 type: default -'1249520': {} -'1249740': +"1249520": {} +"1249740": installDir: Carnival Games launch: - config: @@ -76191,25 +75210,25 @@ description: Carnival Games executable: Carnival Games Launcher.exe type: default -'1249800': +"1249800": installDir: SWD7 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SWD7/Binaries/Win64/SWD7-Win64-Shipping.exe type: default nameLocalized: schinese: 轩辕剑柒 tchinese: 軒轅劍柒 -'1249970': {} -'1250': +"1249970": {} +"1250": installDir: KillingFloor launch: - config: oslist: windows description: KillingFloor - executable: System\\KillingFloor.exe + executable: "System\\\\KillingFloor.exe" - config: oslist: macos description: KillingFloor @@ -76219,62 +75238,60 @@ description: KillingFloor executable: System/killingfloor-bin workingdir: System -'12500': +"12500": installDir: Puzzle Quest launch: - executable: Puzzle Quest.exe -'1250060': +"1250060": installDir: Furion Chironicles launch: - executable: game.exe type: none -'1250250': +"1250250": installDir: NAMCO MUSEUM ARCHIVES Vol 1 launch: - config: oslist: windows executable: NMA1.exe type: default -'1250410': +"1250410": installDir: MicrosoftFlightSimulator launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: FlightSimulator.exe type: default - - arguments: '-VR' + - arguments: "-VR" config: betakey: test_interne_asobo - osarch: '64' + osarch: "64" oslist: windows executable: FlightSimulator.exe type: vr -'1250610': +"1250610": installDir: Flash Snooker Game launch: - config: oslist: windows executable: flashsnookergame.exe type: default -'1250650': +"1250650": installDir: AI-Shoujo launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Initial Settings.exe type: default -'1250760': +"1250760": installDir: 海沙风云 launch: - executable: 海沙风云.exe type: default - config: - ownsdlc: '1925870' + ownsdlc: "1925870" description: THE ART OF FAR AWAY - description_loc: - english: THE ART OF FAR AWAY executable: THE ART OF FAR AWAY/THE ART OF FAR AWAY.pdf type: option1 nameLocalized: @@ -76283,7 +75300,7 @@ koreana: 파 어웨이 Far Away sc_schinese: 海沙风云 tchinese: 海沙風雲 Far Away -'1250870': +"1250870": installDir: Cyrano Story launch: - config: @@ -76294,38 +75311,38 @@ oslist: macos executable: CyranoStory.app type: default -'12510': +"12510": installDir: Prison Tycoon 3 launch: - - executable: data\\prisonTycoon3.exe + - executable: "data\\\\prisonTycoon3.exe" workingdir: data -'1251040': +"1251040": installDir: AegisDescent launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: AegisDescent.exe type: default -'1251670': {} -'1251850': +"1251670": {} +"1251850": installDir: Inferno - Beyond the 7th Circle launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Inferno - Beyond the 7th Circle.exe type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: Inferno - Beyond the 7th Circle type: none - config: oslist: macos - executable: Inferno - Beyond the 7th Circle.app\\Contents\\MacOS\\nwjs + executable: "Inferno - Beyond the 7th Circle.app\\\\Contents\\\\MacOS\\\\nwjs" type: default -'1251930': +"1251930": installDir: My Lovely Wife launch: - config: @@ -76334,11 +75351,11 @@ type: default nameLocalized: schinese: 我的可爱妻子 -'12520': +"12520": installDir: 18 Wheels of Steel American Long Haul launch: - executable: alh.exe -'1252000': +"1252000": installDir: GOAL! The Club Manager launch: - config: @@ -76346,315 +75363,249 @@ executable: GOAL.exe type: default nameLocalized: - '0': Club Manager 2022 + "0": Club Manager 2022 german: Anstoss - Der Fussballmanager -'1252300': +"1252300": installDir: RetroMania Wrestling launch: - config: oslist: windows description: Classic Arcade Wrestling Action - description_loc: - english: Classic Arcade Wrestling Action executable: RetroManiaWrestling.exe type: default -'1252330': +"1252330": installDir: DEATHLOOP launch: - - arguments: >- - +bnet_Environment 2 +com_showSplashVideos 0 +r_textureStreamingAvailableMemThesholdMB 300 - +events_enableMoveEvents 1 + - arguments: +bnet_Environment 2 +com_showSplashVideos 0 +r_textureStreamingAvailableMemThesholdMB 300 +events_enableMoveEvents 1 config: betakey: beta - osarch: '64' + osarch: "64" oslist: windows description: Retail - description_loc: - english: Retail executable: Deathloop.exe type: option1 - arguments: +bnet_Environment 2 +com_showSplashVideos 0 +r_textureStreamingAvailableMemThesholdMB 300 config: betakey: beta_localization - osarch: '64' + osarch: "64" oslist: windows executable: Deathloop.exe type: option1 - - arguments: >- - +bnet_Environment 2 +com_showSplashVideos 0 +r_textureStreamingAvailableMemThesholdMB 300 +playfab_titleID - \"4EC8F\" + - arguments: "+bnet_Environment 2 +com_showSplashVideos 0 +r_textureStreamingAvailableMemThesholdMB 300 +playfab_titleID \\\"4EC8F\\\"" config: betakey: beta_marketing - osarch: '64' + osarch: "64" oslist: windows executable: Deathloop.exe type: option1 - arguments: +bnet_Environment 2 +com_showSplashVideos 0 +r_textureStreamingAvailableMemThesholdMB 300 config: betakey: beta_localization - osarch: '64' + osarch: "64" oslist: windows description: Release Version - description_loc: - english: Release Version executable: Deathloop_Release.exe type: option1 - arguments: +bnet_Environment 2 +com_showSplashVideos 0 +r_textureStreamingAvailableMemThesholdMB 300 config: betakey: beta - osarch: '64' + osarch: "64" oslist: windows description: Release Version - description_loc: - english: Release Version executable: Deathloop_Release.exe type: option1 - - arguments: >- - +bnet_Environment 2 +com_showSplashVideos 0 +r_textureStreamingAvailableMemThesholdMB 300 +playfab_titleID - \"4EC8F\" + - arguments: "+bnet_Environment 2 +com_showSplashVideos 0 +r_textureStreamingAvailableMemThesholdMB 300 +playfab_titleID \\\"4EC8F\\\"" config: betakey: beta_manufacturer - osarch: '64' + osarch: "64" oslist: windows description: Profile Version - description_loc: - english: Profile Version executable: Deathloop_Profile.exe type: option1 - arguments: +bnet_Environment 2 +com_showSplashVideos 0 +r_textureStreamingAvailableMemThesholdMB 300 config: betakey: beta_localization - osarch: '64' + osarch: "64" oslist: windows description: Retail Version - description_loc: - english: Retail Version executable: Deathloop_Retail.exe type: option1 - - arguments: >- - +bnet_Environment 2 +com_showSplashVideos 0 +r_textureStreamingAvailableMemThesholdMB 300 +playfab_titleID - \"4EC8F\" + - arguments: "+bnet_Environment 2 +com_showSplashVideos 0 +r_textureStreamingAvailableMemThesholdMB 300 +playfab_titleID \\\"4EC8F\\\"" config: betakey: beta_manufacturer - osarch: '64' + osarch: "64" oslist: windows description: Retail Version - description_loc: - english: Retail Version executable: Deathloop_Retail.exe type: option1 - config: betakey: beta_qa - osarch: '64' + osarch: "64" oslist: windows description: Shipping Version - description_loc: - english: Shipping Version executable: Deathloop.exe type: option1 - config: betakey: beta_qa - osarch: '64' + osarch: "64" oslist: windows description: Retail Version - description_loc: - english: Retail Version executable: Deathloop_Retail.exe type: option1 - - arguments: >- - +bnet_Environment 2 +com_showSplashVideos 0 +r_textureStreamingAvailableMemThesholdMB 300 +playfab_titleID - \"4EC8F\" + - arguments: "+bnet_Environment 2 +com_showSplashVideos 0 +r_textureStreamingAvailableMemThesholdMB 300 +playfab_titleID \\\"4EC8F\\\"" config: betakey: beta_marketing - osarch: '64' + osarch: "64" oslist: windows description: Retail - description_loc: - english: Retail executable: Deathloop_Retail.exe type: option1 - config: - osarch: '64' + osarch: "64" oslist: windows executable: Deathloop.exe type: default - - arguments: +bnet_Environment 2 +playfab_titleID \"4EC8F\" + - arguments: "+bnet_Environment 2 +playfab_titleID \\\"4EC8F\\\"" config: betakey: beta_manufacturer_wip - osarch: '64' + osarch: "64" oslist: windows description: Profile Version - description_loc: - english: Profile Version executable: Deathloop_Profile.exe type: option1 - - arguments: +bnet_Environment 2 +playfab_titleID \"4EC8F\" + - arguments: "+bnet_Environment 2 +playfab_titleID \\\"4EC8F\\\"" config: betakey: beta_manufacturer_wip - osarch: '64' + osarch: "64" oslist: windows description: Retail Version - description_loc: - english: Retail Version executable: Deathloop_Retail.exe type: option1 - - arguments: +bnet_Environment 2 +playfab_titleID \"4EC8F\" + - arguments: "+bnet_Environment 2 +playfab_titleID \\\"4EC8F\\\"" config: betakey: beta_manufacturer_temp - osarch: '64' + osarch: "64" oslist: windows description: Retail Version - description_loc: - english: Retail Version executable: Deathloop_Retail.exe type: option1 - - arguments: +bnet_Environment 2 +playfab_titleID \"4EC8F\" + - arguments: "+bnet_Environment 2 +playfab_titleID \\\"4EC8F\\\"" config: betakey: beta_manufacturer_temp - osarch: '64' + osarch: "64" oslist: windows description: Profile Version - description_loc: - english: Profile Version executable: Deathloop_Profile.exe type: option1 - - arguments: +bnet_Environment 2 +playfab_titleID \"4EC8F\" + - arguments: "+bnet_Environment 2 +playfab_titleID \\\"4EC8F\\\"" config: betakey: beta_manufacturer_temp - osarch: '64' + osarch: "64" oslist: windows description: Release Version - description_loc: - english: Release Version executable: Deathloop_Release.exe type: option1 - config: betakey: beta_compat_lab - osarch: '64' + osarch: "64" oslist: windows description: Shipping - description_loc: - english: Shipping executable: Deathloop.exe type: option1 - config: betakey: beta_compat_lab - osarch: '64' + osarch: "64" oslist: windows description: Profile Version - description_loc: - english: Profile Version executable: Deathloop_profile.exe type: option1 - - arguments: +bnet_Environment 2 +playfab_titleID \"4C23A\" + - arguments: "+bnet_Environment 2 +playfab_titleID \\\"4C23A\\\"" config: betakey: beta_intern_qa - osarch: '64' + osarch: "64" oslist: windows description: Shipping - description_loc: - english: Shipping executable: Deathloop.exe type: option1 - - arguments: +bnet_Environment 2 +playfab_titleID \"4C23A\" + - arguments: "+bnet_Environment 2 +playfab_titleID \\\"4C23A\\\"" config: betakey: beta_intern_qa - osarch: '64' + osarch: "64" oslist: windows description: Release - description_loc: - english: Release executable: Deathloop_Release.exe type: option1 - - arguments: +bnet_Environment 2 +playfab_titleID \"4C23A\" + - arguments: "+bnet_Environment 2 +playfab_titleID \\\"4C23A\\\"" config: betakey: beta_intern_qa - osarch: '64' + osarch: "64" oslist: windows description: Retail - description_loc: - english: Retail executable: Deathloop_Retail.exe type: option1 - - arguments: +bnet_Environment 2 +playfab_titleID \"4EC8F\" + - arguments: "+bnet_Environment 2 +playfab_titleID \\\"4EC8F\\\"" config: betakey: beta_manufacturer_temp_2 - osarch: '64' + osarch: "64" oslist: windows description: Retail Version - description_loc: - english: Retail Version executable: Deathloop_Retail.exe type: option1 - - arguments: +bnet_Environment 2 +playfab_titleID \"4EC8F\" + - arguments: "+bnet_Environment 2 +playfab_titleID \\\"4EC8F\\\"" config: betakey: beta_manufacturer_temp_2 - osarch: '64' + osarch: "64" oslist: windows description: Profile Version - description_loc: - english: Profile Version executable: Deathloop_Profile.exe type: option1 - - arguments: +bnet_Environment 2 +playfab_titleID \"4EC8F\" + - arguments: "+bnet_Environment 2 +playfab_titleID \\\"4EC8F\\\"" config: betakey: beta_manufacturer_temp_2 - osarch: '64' + osarch: "64" oslist: windows description: Release Version - description_loc: - english: Release Version executable: Deathloop_Release.exe type: option1 - config: betakey: beta_test1 - osarch: '64' + osarch: "64" oslist: windows description: DEATHLOOP Retail - description_loc: - english: DEATHLOOP Retail executable: Deathloop_Retail.exe type: option1 - - arguments: +bnet_Environment 2 +playfab_titleID \"4C23A\" + - arguments: "+bnet_Environment 2 +playfab_titleID \\\"4C23A\\\"" config: betakey: beta_test2 - osarch: '64' + osarch: "64" oslist: windows description: Retail Version - description_loc: - english: Retail Version executable: Deathloop_Retail.exe type: option1 - config: betakey: beta_manufacturer_2.5 - osarch: '64' + osarch: "64" oslist: windows description: Profile Version - description_loc: - english: Profile Version executable: Deathloop_profile.exe type: option1 - - arguments: +bnet_Environment 2 +playfab_titleID \"4C23A\" + - arguments: "+bnet_Environment 2 +playfab_titleID \\\"4C23A\\\"" config: betakey: beta_test3 - osarch: '64' + osarch: "64" oslist: windows description: Retail Version - description_loc: - english: Retail Version executable: Deathloop_Retail.exe type: option1 - - arguments: +bnet_Environment 2 +playfab_titleID \"4C23A\" + - arguments: "+bnet_Environment 2 +playfab_titleID \\\"4C23A\\\"" config: betakey: beta_test4 - osarch: '64' + osarch: "64" oslist: windows description: Retail Version - description_loc: - english: Retail Version executable: Deathloop_Retail.exe type: option1 -'1252390': +"1252390": installDir: CyberHive launch: - config: @@ -76669,29 +75620,27 @@ oslist: macos executable: CyberHive.app type: none -'1252400': +"1252400": installDir: Discord Rich Me! launch: - config: oslist: windows description: Discord Rich Me! Stable - description_loc: - english: Discord Rich Me! Stable executable: Discord Rich Me!.exe type: none -'1252600': +"1252600": installDir: ANOTHER EDEN launch: - executable: AnotherEden.exe type: default -'1252650': +"1252650": installDir: MiniGolfClub launch: - config: oslist: windows executable: MiniGolfClub.exe type: default -'1252710': +"1252710": installDir: Cardaclysm launch: - config: @@ -76701,26 +75650,26 @@ nameLocalized: schinese: 卡牌浩劫 tchinese: 卡牌浩劫 -'1252830': +"1252830": installDir: AJugglersTale launch: - config: oslist: windows executable: ajugglerstale.exe type: none -'12530': +"12530": installDir: Hunting Unlimited 2008 launch: - executable: hu2008.exe -'1253190': +"1253190": installDir: Dakka Squadron launch: - config: oslist: windows executable: DakkaGame.exe type: default -'1253430': {} -'1253860': +"1253430": {} +"1253860": installDir: Neurodeck launch: - config: @@ -76729,7 +75678,7 @@ type: default - config: oslist: macos - executable: Neurodeck.app\\Contents\\MacOS\\Neurodeck + executable: "Neurodeck.app\\\\Contents\\\\MacOS\\\\Neurodeck" type: default - config: oslist: linux @@ -76738,35 +75687,35 @@ nameLocalized: schinese: 意识迷宫:克苏鲁卡牌 tchinese: 意识迷宫:克苏鲁卡牌 -'1253920': +"1253920": installDir: Rogue Legacy 2 launch: - config: oslist: windows executable: Rogue Legacy 2.exe type: none -'12540': +"12540": installDir: Mahjongg Investigations Under Suspicion launch: - executable: MahjonggInvestigations.exe -'1254120': +"1254120": installDir: Bless Unleashed launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: Launcher\\BlessUnleashedLauncher.exe + executable: "Launcher\\\\BlessUnleashedLauncher.exe" type: default nameLocalized: schinese: 神佑释放 -'1254530': +"1254530": installDir: Vixen Wars launch: - config: oslist: windows executable: VixenWars.exe type: default -'1254540': +"1254540": installDir: Booty Calls - Men At Work launch: - config: @@ -76777,205 +75726,195 @@ oslist: windows executable: BootyCallsMenAtWork.exe type: default -'1254590': +"1254590": installDir: Choco Pixel 3 launch: - config: oslist: windows executable: Choco Pixel 3.exe type: default -'1254620': +"1254620": installDir: NAMCO MUSEUM ARCHIVES Vol 2 launch: - config: oslist: windows executable: NMA2.exe type: default -'1254860': +"1254860": installDir: World Championship Boxing Manager launch: - - arguments: '-conf dosbox_WCBM_w_1280x960.conf -conf dosbox_WCBM_auto_launch.conf -noconsole' + - arguments: "-conf dosbox_WCBM_w_1280x960.conf -conf dosbox_WCBM_auto_launch.conf -noconsole" config: oslist: windows description: in windowed mode (1280x960) - executable: dosbox_windows\\DOSBox.exe + executable: "dosbox_windows\\\\DOSBox.exe" type: option1 - workingdir: dosbox_windows\\ - - arguments: '-conf dosbox_WCBM_w_320x240.conf -conf dosbox_WCBM_auto_launch.conf -noconsole' + workingdir: "dosbox_windows\\\\" + - arguments: "-conf dosbox_WCBM_w_320x240.conf -conf dosbox_WCBM_auto_launch.conf -noconsole" config: oslist: windows description: in windowed mode (320x240) - executable: dosbox_windows\\DOSBox.exe + executable: "dosbox_windows\\\\DOSBox.exe" type: option1 - workingdir: dosbox_windows\\ - - arguments: '-conf dosbox_WCBM_w_640x480.conf -conf dosbox_WCBM_auto_launch.conf -noconsole' + workingdir: "dosbox_windows\\\\" + - arguments: "-conf dosbox_WCBM_w_640x480.conf -conf dosbox_WCBM_auto_launch.conf -noconsole" config: oslist: windows description: in windowed mode (640x480) - executable: dosbox_windows\\DOSBox.exe + executable: "dosbox_windows\\\\DOSBox.exe" type: option1 - workingdir: dosbox_windows\\ - - arguments: '-conf dosbox_WCBM_w_2560x1920.conf -conf dosbox_WCBM_auto_launch.conf -noconsole' + workingdir: "dosbox_windows\\\\" + - arguments: "-conf dosbox_WCBM_w_2560x1920.conf -conf dosbox_WCBM_auto_launch.conf -noconsole" config: oslist: windows description: in windowed mode (2560x1920) - executable: dosbox_windows\\DOSBox.exe + executable: "dosbox_windows\\\\DOSBox.exe" type: option1 - workingdir: dosbox_windows\\ + workingdir: "dosbox_windows\\\\" - arguments: dosbox.exe -conf dosbox_WCBM_fs.conf -conf dosbox_WCBM_auto_launch.conf -noconsole config: oslist: windows description: full screen mode - executable: dosbox_windows\\DOSBox.exe + executable: "dosbox_windows\\\\DOSBox.exe" type: option1 - workingdir: dosbox_windows\\ -'1254900': + workingdir: "dosbox_windows\\\\" +"1254900": installDir: FogSummer launch: - config: oslist: windows executable: game.exe type: default -'12550': +"12550": installDir: Are You Smarter then a Fifth Grader launch: - executable: FifthGrader.exe -'1255410': +"1255410": installDir: Purple Saturn Day launch: - - arguments: '-conf dosbox_PURPLE_w_1280x960.conf -conf dosbox_PURPLE_auto_launch.conf -noconsole' + - arguments: "-conf dosbox_PURPLE_w_1280x960.conf -conf dosbox_PURPLE_auto_launch.conf -noconsole" config: oslist: windows description: in windowed mode (1280x960) - executable: dosbox_windows\\DOSBox.exe + executable: "dosbox_windows\\\\DOSBox.exe" type: option1 - workingdir: dosbox_windows\\ - - arguments: '-conf dosbox_PURPLE_w_320x240.conf -conf dosbox_PURPLE_auto_launch.conf -noconsole' + workingdir: "dosbox_windows\\\\" + - arguments: "-conf dosbox_PURPLE_w_320x240.conf -conf dosbox_PURPLE_auto_launch.conf -noconsole" config: oslist: windows description: in windowed mode (320x240) - executable: dosbox_windows\\DOSBox.exe + executable: "dosbox_windows\\\\DOSBox.exe" type: option1 - workingdir: dosbox_windows\\ - - arguments: '-conf dosbox_PURPLE_w_640x480.conf -conf dosbox_PURPLE_auto_launch.conf -noconsole' + workingdir: "dosbox_windows\\\\" + - arguments: "-conf dosbox_PURPLE_w_640x480.conf -conf dosbox_PURPLE_auto_launch.conf -noconsole" config: oslist: windows description: in windowed mode (640x480) - executable: dosbox_windows\\DOSBox.exe + executable: "dosbox_windows\\\\DOSBox.exe" type: option1 - workingdir: dosbox_windows\\ - - arguments: '-conf dosbox_PURPLE_w_2560x1920.conf -conf dosbox_PURPLE_auto_launch.conf -noconsole' + workingdir: "dosbox_windows\\\\" + - arguments: "-conf dosbox_PURPLE_w_2560x1920.conf -conf dosbox_PURPLE_auto_launch.conf -noconsole" config: oslist: windows description: in windowed mode (2560x1920) - executable: dosbox_windows\\DOSBox.exe + executable: "dosbox_windows\\\\DOSBox.exe" type: option1 - workingdir: dosbox_windows\\ - - arguments: '-conf dosbox_PURPLE_fs.conf -conf dosbox_PURPLE_auto_launch.conf -noconsole' + workingdir: "dosbox_windows\\\\" + - arguments: "-conf dosbox_PURPLE_fs.conf -conf dosbox_PURPLE_auto_launch.conf -noconsole" config: oslist: windows description: in full screen mode - executable: dosbox_windows\\DOSBox.exe + executable: "dosbox_windows\\\\DOSBox.exe" type: option1 - workingdir: dosbox_windows\\ -'1255420': + workingdir: "dosbox_windows\\\\" +"1255420": installDir: Murders in Space launch: - - arguments: '-conf dosbox_MIS_w_1280x960.conf -conf dosbox_MIS_auto_launch.conf -noconsole' + - arguments: "-conf dosbox_MIS_w_1280x960.conf -conf dosbox_MIS_auto_launch.conf -noconsole" config: oslist: windows description: in windowed mode (1280x960) - executable: dosbox_windows\\DOSBox.exe + executable: "dosbox_windows\\\\DOSBox.exe" type: option1 - workingdir: dosbox_windows\\ - - arguments: '-conf dosbox_MIS_w_320x240.conf -conf dosbox_MIS_auto_launch.conf -noconsole' + workingdir: "dosbox_windows\\\\" + - arguments: "-conf dosbox_MIS_w_320x240.conf -conf dosbox_MIS_auto_launch.conf -noconsole" config: oslist: windows description: in windowed mode (320x240) - executable: dosbox_windows\\DOSBox.exe + executable: "dosbox_windows\\\\DOSBox.exe" type: option1 - workingdir: dosbox_windows\\ - - arguments: '-conf dosbox_MIS_w_640x480.conf -conf dosbox_MIS_auto_launch.conf -noconsole' + workingdir: "dosbox_windows\\\\" + - arguments: "-conf dosbox_MIS_w_640x480.conf -conf dosbox_MIS_auto_launch.conf -noconsole" config: oslist: windows description: in windowed mode (640x480) - executable: dosbox_windows\\DOSBox.exe + executable: "dosbox_windows\\\\DOSBox.exe" type: option1 - workingdir: dosbox_windows\\ - - arguments: '-conf dosbox_MIS_w_2560x1920.conf -conf dosbox_MIS_auto_launch.conf -noconsole' + workingdir: "dosbox_windows\\\\" + - arguments: "-conf dosbox_MIS_w_2560x1920.conf -conf dosbox_MIS_auto_launch.conf -noconsole" config: oslist: windows description: in windowed mode (2560x1920) - executable: dosbox_windows\\DOSBox.exe + executable: "dosbox_windows\\\\DOSBox.exe" type: none - workingdir: dosbox_windows\\ - - arguments: '-conf dosbox_MIS_fs.conf -conf dosbox_MIS_auto_launch.conf -noconsole' + workingdir: "dosbox_windows\\\\" + - arguments: "-conf dosbox_MIS_fs.conf -conf dosbox_MIS_auto_launch.conf -noconsole" config: oslist: windows description: in full screen mode - executable: dosbox_windows\\DOSBox.exe + executable: "dosbox_windows\\\\DOSBox.exe" type: option1 - workingdir: dosbox_windows\\ -'1255560': + workingdir: "dosbox_windows\\\\" +"1255560": installDir: Myst launch: - - arguments: '-d3d12 -nohmd' + - arguments: "-d3d12 -nohmd" config: - osarch: '64' + osarch: "64" oslist: windows description: in 2D (DirectX 12) - description_loc: - english: in 2D (DirectX 12) executable: Myst.exe type: default - - arguments: '-vr -d3d11' + - arguments: "-vr -d3d11" config: - osarch: '64' + osarch: "64" oslist: windows description: in VR - description_loc: - english: in VR executable: Myst.exe type: option2 - config: betakey: internal oslist: macos description: Launch development build - description_loc: - english: Launch development build executable: Myst.app type: default - - arguments: '-vr -d3d11 -hmd=SteamVR' + - arguments: "-vr -d3d11 -hmd=SteamVR" config: - osarch: '64' + osarch: "64" oslist: windows description: in VR (while in SteamVR Home only) - description_loc: - english: in VR (while in SteamVR Home only) executable: Myst.exe type: vr - config: oslist: macos executable: Myst-Mac-Shipping.app type: default - - arguments: '-d3d11 -nohmd' + - arguments: "-d3d11 -nohmd" config: - osarch: '64' + osarch: "64" oslist: windows - description: in DirectX 11 (if machine can't use DirectX 12) - description_loc: - english: in DirectX 11 (if machine can't use DirectX 12) + description: "in DirectX 11 (if machine can't use DirectX 12)" executable: Myst.exe type: option1 -'1255630': +"1255630": installDir: WWE 2K22 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: WWE2K22_x64.exe type: default -'1255830': +"1255830": installDir: Puzzle Girls Alexa launch: - config: @@ -76983,7 +75922,7 @@ description: Launch executable: PuzzleGirlsAlexa.exe type: none -'1255980': +"1255980": installDir: Portal Reloaded launch: - arguments: +r_hunkalloclightmaps 0 @@ -76991,18 +75930,18 @@ oslist: windows executable: portal2.exe type: default - - arguments: '-game portal2 -steam +r_hunkalloclightmaps 0 +r_dynamic 0' + - arguments: "-game portal2 -steam +r_hunkalloclightmaps 0 +r_dynamic 0" config: oslist: macos executable: portal2.sh type: none - - arguments: '-game portal2 -steam +r_hunkalloclightmaps 0 +r_dynamic 0' + - arguments: "-game portal2 -steam +r_hunkalloclightmaps 0 +r_dynamic 0" config: oslist: linux executable: portal2.sh type: none -'1255990': - installDir: WeShouldTalk\\WeShouldTalk +"1255990": + installDir: "WeShouldTalk\\\\WeShouldTalk" launch: - config: oslist: windows @@ -77016,26 +75955,26 @@ oslist: linux executable: WeShouldTalk.x86_64 type: default -'12560': +"12560": installDir: Ride Carnival Tycoon launch: - executable: RideCarnivalTycoon.exe -'1256230': +"1256230": installDir: Hyperbolica launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Hyperbolica.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Hyperbolica.x86_64 type: default - arguments: startXR config: - osarch: '64' + osarch: "64" oslist: windows executable: Hyperbolica.exe type: vr @@ -77043,34 +75982,30 @@ oslist: macos executable: Hyperbolica.app type: default -'1256670': +"1256670": installDir: Library Of Ruina launch: - config: oslist: windows executable: LibraryOfRuina.exe type: none - - arguments: '-mod' + - arguments: "-mod" config: oslist: windows description: LOR With Mods - description_loc: - english: LOR With Mods executable: LibraryOfRuina.exe type: none - - arguments: '-invtool' + - arguments: "-invtool" config: oslist: windows description: LOR Invitaion Editor - description_loc: - english: LOR Invitaion Editor executable: LibraryOfRuina.exe type: none -'12570': +"12570": installDir: Hot Dish launch: - executable: hotdish.exe -'1257170': +"1257170": installDir: Saint Emiliana launch: - executable: Game.exe @@ -77079,87 +76014,83 @@ japanese: エミリアーナ-魔契の聖女- schinese: 魔契圣女埃米莉亚娜 tchinese: 魔契聖女埃米莉亞娜 -'1257200': +"1257200": installDir: False Myth launch: - executable: Game.exe type: default -'1257290': +"1257290": installDir: Atelier Ryza 2 launch: - executable: Atelier_Ryza_2.exe type: none nameLocalized: - english: 'Atelier Ryza 2: Lost Legends & the Secret Fairy' - french: 'Atelier Ryza 2 : Les Légendes Oubliées & Le Secret de la Fée' + english: "Atelier Ryza 2: Lost Legends & the Secret Fairy" + french: "Atelier Ryza 2 : Les Légendes Oubliées & Le Secret de la Fée" japanese: ライザのアトリエ2 ~失われた伝承と秘密の妖精~ koreana: 라이자의 아틀리에2 ~잃어버린 전승과 비밀의 요정~ schinese: 莱莎的炼金工房2 ~失落传说与秘密妖精~ tchinese: 萊莎的鍊金工房2 ~失落傳說與秘密妖精~ -'1257310': +"1257310": installDir: Mechstermination Force launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: skrotd3d.exe type: default -'1257360': +"1257360": installDir: Bloodstained Curse of the Moon 2 launch: - config: oslist: windows executable: game.exe type: default -'1257810': - installDir: I'm on Observation Duty 2 Timothy's Revenge +"1257810": + installDir: "I'm on Observation Duty 2 Timothy's Revenge" launch: - config: oslist: windows - executable: I'm on Observation Duty 2 Timothy's Revenge.exe + executable: "I'm on Observation Duty 2 Timothy's Revenge.exe" type: none - config: oslist: linux - executable: I'm on Observation Duty 2 Timothy's Revenge.x86_64 + executable: "I'm on Observation Duty 2 Timothy's Revenge.x86_64" type: none - config: oslist: macos - executable: I'm on Observation Duty 2 Timothy's Revenge.app + executable: "I'm on Observation Duty 2 Timothy's Revenge.app" type: none -'1257850': +"1257850": installDir: SOLAS 128 launch: - config: oslist: windows executable: SOLAS 128.exe type: default -'1257880': +"1257880": installDir: Glover launch: - config: oslist: windows description: Play Windows version - description_loc: - english: Play Windows version executable: Glover.exe type: option1 - config: oslist: windows description: Play PS1 version - description_loc: - english: Play PS1 version - executable: ps1\\glover.exe + executable: "ps1\\\\glover.exe" type: option2 -'1257890': +"1257890": installDir: The Legacy Realm of Terror launch: - - arguments: '-conf dosbox.conf' + - arguments: "-conf dosbox.conf" config: oslist: windows - executable: dosbox_windows\\dosbox.exe + executable: "dosbox_windows\\\\dosbox.exe" type: default - workingdir: dosbox_windows\\ -'1257900': + workingdir: "dosbox_windows\\\\" +"1257900": installDir: Hexplore launch: - config: @@ -77170,7 +76101,7 @@ oslist: windows executable: dxcfg.exe type: config -'1257910': +"1257910": installDir: DethKarz launch: - config: @@ -77181,41 +76112,39 @@ oslist: windows executable: nglide_config.exe type: config -'1257930': +"1257930": installDir: Zero Tolerance launch: - config: oslist: windows executable: zero tolerance.exe type: default - - arguments: '-turbo' + - arguments: "-turbo" config: oslist: windows description: Zero Tolerance in Turbo mode executable: zero tolerance.exe type: option1 -'1257940': +"1257940": installDir: Shadow Madness launch: - config: oslist: windows - description: 'disk #1' - description_loc: - english: 'disk #1' + description: "disk #1" executable: shadow madness.exe type: option1 -'1257950': +"1257950": installDir: Motor Mash launch: - config: oslist: windows executable: motor mash.exe type: default -'12580': +"12580": installDir: Dr Daisy launch: - executable: daisy.exe -'1258040': +"1258040": installDir: SuperBernieWorld launch: - config: @@ -77224,17 +76153,17 @@ type: default - config: oslist: linux - executable: ./SuperBernieWorld + executable: "./SuperBernieWorld" type: none - config: oslist: macos executable: Super Bernie World.app/Contents/MacOS/SuperBernieWorld type: none -'1258080': +"1258080": installDir: ShopTitan launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: ShopTitan.exe type: default @@ -77250,44 +76179,40 @@ spanish: Shop Titans tchinese: 傳奇商店 turkish: Shop Titans -'1258220': +"1258220": installDir: Song of Iron launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SONG_of_IRON.exe type: default -'1258590': +"1258590": installDir: Locked Up launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Locked_Up.exe type: default -'12590': +"12590": installDir: Sprint Cars 2007 launch: - executable: sc2007.exe -'1259140': +"1259140": installDir: Ashina The Red Witch launch: - config: oslist: windows - description: 'Ashina: The Red Witch' - description_loc: - english: 'Ashina: The Red Witch' + description: "Ashina: The Red Witch" executable: ATRW.exe type: option1 - - description: 'Game Settings ' - description_loc: - english: 'Game Settings ' + - description: "Game Settings " executable: winsetup.exe type: option1 nameLocalized: schinese: 艾诗娜:红女巫 -'1259380': +"1259380": installDir: Submarine Titans launch: - config: @@ -77298,19 +76223,17 @@ oslist: windows executable: STEditor.exe type: editor -'1259420': +"1259420": installDir: Days Gone launch: - - arguments: '-Steamworks -Installed' + - arguments: "-Steamworks -Installed" config: - osarch: '64' + osarch: "64" oslist: windows description: Days Gone - description_loc: - english: Days Gone executable: BendGame/Binaries/Win64/DaysGone.exe type: option1 -'1259530': +"1259530": installDir: Cherry Kisses launch: - config: @@ -77321,11 +76244,11 @@ oslist: windows executable: Cherry Kisses.exe type: default -'1259740': +"1259740": installDir: EscapeDungeon launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: EscapeDungeon.exe type: none @@ -77335,32 +76258,32 @@ type: none nameLocalized: japanese: シャリス ~地下牢から脱出~ - russian: 'Побег из Тюрьмы Escape Dungeon ' + russian: "Побег из Тюрьмы Escape Dungeon " schinese: 莎莉丝 地牢脱出 Escape Dungeon tchinese: 莎莉絲.地牢脫出 Escape Dungeon -'1259790': +"1259790": installDir: PuyoPuyoTetris2 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: PuyoPuyoTetris2.exe type: default nameLocalized: japanese: ぷよぷよ™テトリス® 2 koreana: 뿌요뿌요™테트리스® 2  - schinese: '魔法气泡™ 特趣思™ 俄罗斯方块™ 2 ' - tchinese: '魔法氣泡™ 特趣思™ 俄羅斯方塊™ 2 ' -'1259800': + schinese: "魔法气泡™ 特趣思™ 俄罗斯方块™ 2 " + tchinese: "魔法氣泡™ 特趣思™ 俄羅斯方塊™ 2 " +"1259800": installDir: MXGP 2020 - The Official Motocross Videogame launch: - executable: mxgp6.exe type: none -'1259840': +"1259840": installDir: The House of Da Vinci 2 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: THODV2.exe type: default @@ -77368,7 +76291,7 @@ oslist: macos executable: THODV2.app/Contents/MacOS/THODV2 type: default -'1259970': +"1259970": installDir: eFootball PES 2021 launch: - description: Launch @@ -77376,40 +76299,32 @@ type: none nameLocalized: japanese: eFootball ウイニングイレブン 2021 SEASON UPDATE(海外版) -'1259980': +"1259980": installDir: RIDE 4 launch: - executable: ride4.exe type: none -'12600': +"12600": installDir: Midnight Outlaw 6 Hours to Sun Up launch: - executable: MidnightOutlaw.exe -'1260020': +"1260020": installDir: PowerslaveCE launch: - - arguments: >- - -exit -noconsole -conf \"dosbox_powerslave.conf\" ^ -c \"mount e '..\\PowerslaveCE'\" ^ -c \"e:\" ^ -c - \"imgmount d Powerslave_DOS_(1996).cue -t cdrom\" ^ -c \"cd PWRSLAVE\" ^ -c \"PS.exe -noconsole\" ^ -c \"exit\" + - arguments: "-exit -noconsole -conf \\\"dosbox_powerslave.conf\\\" ^ -c \\\"mount e '..\\\\PowerslaveCE'\\\" ^ -c \\\"e:\\\" ^ -c \\\"imgmount d Powerslave_DOS_(1996).cue -t cdrom\\\" ^ -c \\\"cd PWRSLAVE\\\" ^ -c \\\"PS.exe -noconsole\\\" ^ -c \\\"exit\\\"" config: oslist: windows - executable: dosbox_windows\\dosbox.exe + executable: "dosbox_windows\\\\dosbox.exe" type: default - - arguments: >- - -exit -noconsole -conf \"dosbox_powerslave.conf\" ^ -c \"mount e '..\\PowerslaveCE'\" ^ -c \"e:\" ^ -c - \"imgmount d Powerslave_DOS_(1996).cue -t cdrom\" ^ -c \"cd PWRSLAVE\" ^ -c \"MENU.exe -noconsole\" ^ -c - \"exit\" + - arguments: "-exit -noconsole -conf \\\"dosbox_powerslave.conf\\\" ^ -c \\\"mount e '..\\\\PowerslaveCE'\\\" ^ -c \\\"e:\\\" ^ -c \\\"imgmount d Powerslave_DOS_(1996).cue -t cdrom\\\" ^ -c \\\"cd PWRSLAVE\\\" ^ -c \\\"MENU.exe -noconsole\\\" ^ -c \\\"exit\\\"" config: oslist: windows - executable: dosbox_windows\\dosbox.exe + executable: "dosbox_windows\\\\dosbox.exe" type: config - - arguments: >- - -exit -noconsole -conf \"dosbox_powerslave.conf\" ^ -c \"mount e '..\\PowerslaveCE'\" ^ -c \"e:\" ^ -c - \"imgmount d Powerslave_DOS_(1996).cue -t cdrom\" ^ -c \"cd PWRSLAVE\" ^ -c \"EXPSDEHK.exe -noconsole\" ^ -c - \"exit\" + - arguments: "-exit -noconsole -conf \\\"dosbox_powerslave.conf\\\" ^ -c \\\"mount e '..\\\\PowerslaveCE'\\\" ^ -c \\\"e:\\\" ^ -c \\\"imgmount d Powerslave_DOS_(1996).cue -t cdrom\\\" ^ -c \\\"cd PWRSLAVE\\\" ^ -c \\\"EXPSDEHK.exe -noconsole\\\" ^ -c \\\"exit\\\"" config: oslist: windows - executable: dosbox_windows\\dosbox.exe + executable: "dosbox_windows\\\\dosbox.exe" type: editor - config: oslist: macos @@ -77427,41 +76342,41 @@ oslist: linux executable: runPowerslaveDehacker.sh type: editor -'1260050': {} -'1260130': +"1260050": {} +"1260130": installDir: Banana Hell launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: banana_hell.exe type: default -'1260320': +"1260320": nameLocalized: schinese: 猛兽派对 -'1260580': +"1260580": installDir: ReThink Evolved 4 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: RethinkEvolved4.exe type: none -'1260840': +"1260840": installDir: The Casebook of Arkady Smith launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ArkadySmith.exe type: default nameLocalized: french: Les Archives de Arkady Smith german: Das Fallbuch von Arkady Smith - japanese: 'アルカディ・スミスの事件簿 ' + japanese: "アルカディ・スミスの事件簿 " latam: El archivo de Arkady Smith spanish: El archivo de Arkady Smith -'1260920': +"1260920": installDir: soa launch: - config: @@ -77472,8 +76387,8 @@ oslist: linux executable: game.sh type: default -'1260940': {} -'1261520': +"1260940": {} +"1261520": installDir: Asterix & Obelix XXL 1 launch: - config: @@ -77484,15 +76399,15 @@ oslist: macos executable: AsterixObelixXXLRomastered.app type: none -'1261880': +"1261880": installDir: Education launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Education.exe type: default -'1261960': +"1261960": installDir: STRIKERS1945 launch: - config: @@ -77505,7 +76420,7 @@ description: Launch Configuration Tool executable: setting.exe type: none -'1261970': +"1261970": installDir: GUNBIRD launch: - config: @@ -77518,7 +76433,7 @@ description: Launch Configuration Tool executable: setting.exe type: none -'1261980': +"1261980": installDir: Samurai Aces launch: - config: @@ -77533,73 +76448,73 @@ type: none nameLocalized: japanese: 戦国エース -'1262240': +"1262240": installDir: PVZ Battle for Neighborville launch: - - executable: 'link2ea://launchgame/1262240?platform=steam&theme=pvzbn' + - executable: "link2ea://launchgame/1262240?platform=steam&theme=pvzbn" type: none nameLocalized: - brazilian: 'Plants vs. Zombies™: Batalha por Neighborville' - dutch: 'Plants vs. Zombies™: De strijd om Neighborville' - french: 'Plants vs. Zombies: Battle for Neighborville™' - german: 'Plants vs. Zombies™: Schlacht um Neighborville' - italian: 'Plants vs. Zombies™: La Battaglia di Neighborville' - japanese: 'Plants vs. Zombies™: ネイバービルの戦い' - koreana: '식물 vs. 좀비™: 네이버빌의 대난투' - polish: 'Plants vs. Zombies™: Bitwa o Neighborville' - russian: 'Plants vs. Zombies™: Битва за Нейборвиль' - schinese: '植物大战僵尸™: 和睦小镇保卫战' + brazilian: "Plants vs. Zombies™: Batalha por Neighborville" + dutch: "Plants vs. Zombies™: De strijd om Neighborville" + french: "Plants vs. Zombies: Battle for Neighborville™" + german: "Plants vs. Zombies™: Schlacht um Neighborville" + italian: "Plants vs. Zombies™: La Battaglia di Neighborville" + japanese: "Plants vs. Zombies™: ネイバービルの戦い" + koreana: "식물 vs. 좀비™: 네이버빌의 대난투" + polish: "Plants vs. Zombies™: Bitwa o Neighborville" + russian: "Plants vs. Zombies™: Битва за Нейборвиль" + schinese: "植物大战僵尸™: 和睦小镇保卫战" spanish: Plants vs. Zombies™ La Batalla de Neighborville - tchinese: '植物大戰殭屍™: 和睦小鎮保衛戰' -'1262350': + tchinese: "植物大戰殭屍™: 和睦小鎮保衛戰" +"1262350": installDir: SIGNALIS launch: - config: oslist: windows executable: SIGNALIS.exe type: default -'1262540': +"1262540": installDir: Need for Speed launch: - - executable: 'link2ea://launchgame/1262540?platform=steam&theme=nfs' + - executable: "link2ea://launchgame/1262540?platform=steam&theme=nfs" type: none nameLocalized: - brazilian: 'Need for Speed™ ' - french: 'Need for Speed™ ' - polish: 'Need for Speed™ ' + brazilian: "Need for Speed™ " + french: "Need for Speed™ " + polish: "Need for Speed™ " tchinese: 《極速快感™》 -'1262560': +"1262560": installDir: Need for Speed(TM) Most Wanted launch: - - executable: 'link2ea://launchgame/1262560?platform=steam&theme=nfsmw' + - executable: "link2ea://launchgame/1262560?platform=steam&theme=nfsmw" type: none -'1262580': +"1262580": installDir: Need for Speed Payback launch: - - executable: 'link2ea://launchgame/1262580?platform=steam&theme=nfspb' + - executable: "link2ea://launchgame/1262580?platform=steam&theme=nfspb" type: none -'1262600': +"1262600": installDir: Need for Speed(TM) Rivals launch: - - executable: 'link2ea://launchgame/1262600?platform=steam&theme=nfsr' + - executable: "link2ea://launchgame/1262600?platform=steam&theme=nfsr" type: none -'1262640': +"1262640": installDir: Brittany Home Alone launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: Brittany Home Alone.exe type: default -'1262720': +"1262720": installDir: RuinRaiders launch: - config: oslist: windows executable: RuinRaiders.exe type: default - - arguments: '-debugBuild' + - arguments: "-debugBuild" config: betakey: debug oslist: windows @@ -77610,35 +76525,35 @@ oslist: windows executable: RuinRaiders_Demo.exe type: default -'1262890': +"1262890": installDir: Tidal Shock launch: - config: oslist: windows executable: Tidal Shock.exe type: none -'12630': +"12630": installDir: Legend Hand of God launch: - executable: legend.exe - description: Config Utility executable: starter.exe -'1263070': +"1263070": installDir: Blightbound launch: - config: oslist: windows executable: Blightbound.exe type: default -'1263130': +"1263130": installDir: Pizza Delivery Boy launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: pizza delivery boy.exe type: vr -'1263230': +"1263230": installDir: Cooking Companions launch: - config: @@ -77649,18 +76564,18 @@ oslist: macos executable: Contents/MacOS/CookingCompanions type: default -'1263370': +"1263370": installDir: Seek GirlFog Ⅰ launch: - config: oslist: windows executable: SeekGirlFogOne.exe type: default -'1263850': +"1263850": installDir: Football Manager 2021 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: fm.exe type: none @@ -77668,11 +76583,11 @@ oslist: macos executable: fm.app type: none -'1263860': +"1263860": installDir: Football Manager 2021 Touch launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: fm.exe type: none @@ -77680,34 +76595,34 @@ oslist: macos executable: fm.app type: none -'1263990': +"1263990": installDir: Floor 13 Deep State launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Floor 13 Deep State.exe type: default - config: oslist: macos - executable: floor13.app\\Contents\\MacOS\\Floor 13 Deep State + executable: "floor13.app\\\\Contents\\\\MacOS\\\\Floor 13 Deep State" type: none - workingdir: Contents\\MacOS\\ -'12640': + workingdir: "Contents\\\\MacOS\\\\" +"12640": installDir: Drakensang launch: - executable: drakensang.exe -'1264250': +"1264250": installDir: Fishing North Atlantic launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: FNA.exe type: default nameLocalized: sc_schinese: 钓鱼:北大西洋 -'1264280': +"1264280": installDir: Slipways launch: - config: @@ -77718,37 +76633,23 @@ oslist: macos executable: Slipways.app type: default - - arguments: '-low' + - arguments: "-low" config: oslist: windows description: Play (safe graphics settings) - description_loc: - english: Play (safe graphics settings) - french: Jouer (mode graphique sans échec) - german: Spielen (Sicherheitsmodus) - polish: Zagraj (bezpieczne ustawienia graficzne) - schinese: 玩 (安全模式) - spanish: Iniciar (configuración gráfica segura) executable: Slipways.exe type: none - - arguments: '-low' + - arguments: "-low" config: oslist: macos description: Play (safe graphics settings) - description_loc: - english: Play (safe graphics settings) - french: Jouer (mode graphique sans échec) - german: Spielen (Sicherheitsmodus) - polish: Zagraj (bezpieczne ustawienia graficzne) - schinese: 玩 (安全模式) - spanish: Iniciar (configuración gráfica segura) executable: Slipways.app type: none -'12650': +"12650": installDir: Fetch It Again launch: - executable: FetchItAgain.hta -'1265390': +"1265390": installDir: Ellrland launch: - executable: EllrLand.exe @@ -77756,71 +76657,69 @@ nameLocalized: english: EllrLand tchinese: 艾魯大陸 -'1265780': +"1265780": installDir: Gollum launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Gollum.exe type: default - config: oslist: windows - ownsdlc: '2374463' + ownsdlc: "2374463" description: Art Exhibition - description_loc: - english: Art Exhibition executable: bonus content/Gollum - Art Exhibition.exe nameLocalized: - schinese: '《魔戒:咕噜™》- The Lord of the Rings: Gollum™' - tchinese: '《魔戒:咕噜™》 - The Lord of the Rings: Gollum™' -'1265820': + schinese: "《魔戒:咕噜™》- The Lord of the Rings: Gollum™" + tchinese: "《魔戒:咕噜™》 - The Lord of the Rings: Gollum™" +"1265820": installDir: Fights in Tight Spaces launch: - executable: FightsInTightSpaces.exe type: none -'1265860': +"1265860": installDir: NASCAR Heat 5 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: NascarHeat5.exe type: default - - arguments: '-MGI-reset-graphics-settings' + - arguments: "-MGI-reset-graphics-settings" config: - osarch: '64' + osarch: "64" oslist: windows description: Reset Graphic Settings executable: NascarHeat5.exe type: none -'1265920': +"1265920": installDir: LIS - Remastered launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: LiS.exe type: default -'1265930': +"1265930": installDir: LIS - Before the Storm Remastered launch: - config: oslist: windows executable: Life is Strange - Before the Storm.exe type: default -'1265970': - installDir: Dark City Dublin Collector's Edition +"1265970": + installDir: "Dark City Dublin Collector's Edition" launch: - config: oslist: windows executable: DC_Dublin_CE.exe type: default -'12660': +"12660": installDir: Miss Popularity launch: - executable: Boyfriend.hta -'1266030': +"1266030": installDir: The Pale Beyond launch: - config: @@ -77831,7 +76730,7 @@ oslist: macos executable: The Pale Beyond.app type: default -'1266100': +"1266100": installDir: Vampire The Masquerade — Parliament of Knives launch: - config: @@ -77846,19 +76745,19 @@ oslist: linux executable: ParliamentOfKnives type: none -'1266220': +"1266220": installDir: DeathEndReQuest2 launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: resource\\bin\\DeathEndReQuest2.exe + executable: "resource\\\\bin\\\\DeathEndReQuest2.exe" type: default nameLocalized: japanese: デス エンド リクエスト2 schinese: 死亡终局 轮回试炼 2 tchinese: 死亡終局 輪迴試煉2 -'1266680': +"1266680": installDir: Strobophagia Rave Horror launch: - config: @@ -77866,42 +76765,38 @@ description: Launch executable: Strobophagia.exe type: default -'1266690': +"1266690": installDir: Dark Deception Monsters & Mortals launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: DD_MnM.exe type: none -'1266700': +"1266700": installDir: Destroy All Humans! 2 Reprobed launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Destroy All Humans! 2 - Shipping x64 (DX11) - description_loc: - english: Destroy All Humans! 2 - Shipping x64 (DX11) executable: DH.exe type: default - - arguments: '-dx12' + - arguments: "-dx12" config: - osarch: '64' + osarch: "64" oslist: windows description: Destroy All Humans! 2 - Reprobed (DX12) - description_loc: - english: Destroy All Humans! 2 - Reprobed (DX12) executable: DH.exe type: option1 -'1266800': +"1266800": installDir: Adorable Crush launch: - config: oslist: windows executable: acrush.exe type: default -'1266820': +"1266820": installDir: Ultimate ADOM - Caverns of Chaos launch: - config: @@ -77920,31 +76815,31 @@ type: none nameLocalized: german: Ultimate ADOM - Kavernen des Chaos -'1266840': +"1266840": installDir: The Last Stand Aftermath launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TLSA.exe type: default -'12670': +"12670": installDir: Mission Runway launch: - - executable: data\\fashionDiva.hta + - executable: "data\\\\fashionDiva.hta" workingdir: data -'1267370': +"1267370": installDir: Blind Spot launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Blind Spot PC.exe type: default nameLocalized: schinese: 盲点 tchinese: 盲點 -'1267470': +"1267470": installDir: Warriors of the Nile v0.900 launch: - config: @@ -77955,26 +76850,26 @@ english: Warriors of the Nile japanese: Warriors of the Nile ~太陽の勇士~ schinese: 尼罗河勇士 -'1267540': +"1267540": installDir: WRC 9 FIA World Rally Championship launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch game executable: WRC9.exe type: none -'1267930': +"1267930": installDir: Deadly Dozen Pacific Theater launch: - executable: DDozen2.exe type: default -'1267940': +"1267940": installDir: Hunting Unlimited 1 launch: - executable: hu.exe type: default -'1268110': +"1268110": installDir: ISEKAI QUEST launch: - config: @@ -77985,48 +76880,46 @@ oslist: macos executable: ISEKAI QUEST.app type: none -'1268750': +"1268750": installDir: StarshipTroopersExtermination launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Yakisoba.exe type: default - - arguments: '-log' + - arguments: "-log" config: betakey: integration - osarch: '64' + osarch: "64" oslist: windows description: Development Executable - description_loc: - english: Development Executable executable: Yakisoba/Binaries/Win64/Yakisoba-Development.exe -'12690': +"12690": installDir: Hunting Unlimited 2010 launch: - executable: hu2010.exe -'1269030': +"1269030": installDir: Fred3ric launch: - executable: Fred3ric.exe type: default -'1269370': - installDir: '171' +"1269370": + installDir: "171" launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: BGG.exe type: none -'1269640': +"1269640": installDir: Beacon Pines launch: - config: oslist: windows executable: Beacon Pines/Beacon Pines.exe type: default -'1269810': +"1269810": installDir: The Curse of Kubel launch: - executable: Game.exe @@ -78035,8 +76928,8 @@ japanese: クベルの首枷病 schinese: 库贝尔的枷锁 tchinese: 庫貝爾的枷鎖 -'1269820': - installDir: Kozue's Strange Journey +"1269820": + installDir: "Kozue's Strange Journey" launch: - executable: Game.exe type: default @@ -78044,14 +76937,14 @@ japanese: 梢の異聞録 schinese: 少女异闻录 tchinese: 少女異聞錄 -'1269950': +"1269950": installDir: Buddy Simulator 1984 launch: - config: oslist: windows executable: Buddy Simulator 1984.exe type: default -'1270590': +"1270590": installDir: Falcon City launch: - config: @@ -78060,53 +76953,53 @@ type: default - executable: winsetup.exe type: config -'1270720': +"1270720": installDir: Spirit launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Spirit.exe type: default nameLocalized: - arabic: 'سبيريت مغامرة لاكي العظيمة DreamWorks ' - dutch: DreamWorks Spirit Lucky's grote avontuur - english: DreamWorks Spirit Lucky's Big Adventure + arabic: "سبيريت مغامرة لاكي العظيمة DreamWorks " + dutch: "DreamWorks Spirit Lucky's grote avontuur" + english: "DreamWorks Spirit Lucky's Big Adventure" french: DreamWorks Spirit La grande aventure de Lucky german: DreamWorks Spirit Luckys großes Abenteuer italian: DreamWorks Spirit La Grande Avventura di Lucky latam: DreamWorks Spirit La gran aventura de Lucky schinese: DreamWorks 小马精灵 乐琪的大冒险 spanish: DreamWorks Spirit La gran aventura de Fortu -'1271100': +"1271100": installDir: Deadly Premonition 2 launch: - config: oslist: windows executable: DeadlyPremonition2.exe type: none -'1271170': +"1271170": installDir: The Wizard and The Slug launch: - config: oslist: windows executable: wizlug.exe type: default -'1271280': +"1271280": installDir: Rift Wizard launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Fullscreen - executable: RiftWizard\\RiftWizard.exe + executable: "RiftWizard\\\\RiftWizard.exe" type: none - arguments: windowed config: - osarch: '64' + osarch: "64" oslist: windows description: Windowed - executable: RiftWizard\\RiftWizard.exe + executable: "RiftWizard\\\\RiftWizard.exe" type: none - config: betakey: macdev @@ -78116,53 +77009,51 @@ type: default - arguments: native_res config: - osarch: '64' + osarch: "64" oslist: windows description: Fullscreen (Native Resolution) - description_loc: - english: Fullscreen (Native Resolution) - executable: RiftWizard\\RiftWizard.exe -'1271400': + executable: "RiftWizard\\\\RiftWizard.exe" +"1271400": installDir: Adios launch: - - arguments: '-game' + - arguments: "-game" executable: Adios.exe type: none -'1271580': +"1271580": installDir: Good Morning World launch: - config: betakey: Sherstobitov - osarch: '64' + osarch: "64" oslist: windows executable: game.exe type: default nameLocalized: russian: Доброе утро мир -'1271620': +"1271620": installDir: UmiharaKawaseBaZooKa launch: - config: oslist: windows executable: game.exe type: default -'1271690': +"1271690": installDir: Zombie Derby Pixel Survival launch: - config: oslist: windows executable: Zombie Derby Pixel Survival.exe type: default -'1271700': +"1271700": installDir: HOT WHEELS UNLEASHED launch: - executable: hotwheels.exe type: none -'1271710': +"1271710": installDir: LEWDAPOCALYPSE launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Lewdapocalypse/Lewdapocalypse.exe type: none @@ -78175,11 +77066,11 @@ executable: LEWDAPOCALYPSE Mac.app type: none - config: - osarch: '32' + osarch: "32" oslist: windows executable: Lewdapocalypse_x86/Lewdapocalypse.exe type: none -'1271740': +"1271740": installDir: Magical Swordmaiden launch: - executable: Magical Swordmaiden.exe @@ -78188,7 +77079,7 @@ japanese: マジック&スラッシュ-見習い冒険者リルの大冒険- schinese: 剑与魔法:见习冒险者莉露的大冒险 tchinese: 劍與魔法:見習冒險者莉露的大冒險 -'1271980': +"1271980": installDir: Premier Manager 10 launch: - description: Play Premier Manager 10 in English @@ -78211,7 +77102,7 @@ executable: English/Prem Man 10 PC Manual.pdf type: manual workingdir: English -'1271990': +"1271990": installDir: Premier Manager 09 launch: - description: Play Premier Manager 09 @@ -78220,12 +77111,12 @@ - description: Manual executable: Prem Man 09 PC Manual.pdf type: manual -'12720': +"12720": installDir: Turning Point Fall of Liberty launch: - - executable: binaries\\LTCG-TPGame.exe + - executable: "binaries\\\\LTCG-TPGame.exe" workingdir: binaries -'1272000': +"1272000": installDir: Premier Manager 08 launch: - description: Play Premier Manager 08 in English @@ -78246,7 +77137,7 @@ workingdir: Italian - executable: Prem Man 08 PC Manual.pdf type: manual -'1272020': +"1272020": installDir: Premier Manager 0607 launch: - description: Play Premier Manager 06/07 in English @@ -78273,7 +77164,7 @@ executable: Manuals/1672 Prem Man 06-07 PC Man IT.pdf type: none workingdir: Manuals -'1272030': +"1272030": installDir: Premier Manager 0506 launch: - description: Play Premier Manager 05/06 in English @@ -78310,7 +77201,7 @@ - description: Spanish Manual executable: SP.pdf type: none -'1272040': +"1272040": installDir: Premier Manager 0405 launch: - description: Play Premier Manager 04/05 in English @@ -78332,7 +77223,7 @@ - description: Manual executable: Manual.pdf type: none -'1272050': +"1272050": installDir: Premier Manager 0304 launch: - description: Play Premier Manager 03/04 in English @@ -78351,7 +77242,7 @@ executable: Italian/Game/Italian/PM2003.exe type: none workingdir: Italian/Game/Italian -'1272060': +"1272060": installDir: Premier Manager 0203 launch: - executable: PMPCWIN.exe @@ -78359,40 +77250,38 @@ - description: Basic Instructions executable: INSTRUCTIONS.pdf type: none -'1272080': +"1272080": nameLocalized: - schinese: 'PAYDAY3 (收获日3) ' -'1272110': + schinese: "PAYDAY3 (收获日3) " +"1272110": installDir: Close Combat Wacht am Rhein launch: - executable: Launcher.exe type: none -'1272130': +"1272130": installDir: Close Combat The Longest Day launch: - executable: Launcher.exe type: default -'1272160': +"1272160": installDir: The Life and Suffering of Sir Brante launch: - config: betakey: testing oslist: windows description: testing launch option - description_loc: - english: testing launch option executable: The Life and Suffering of Sir Brante.exe type: default - config: betakey: testinglauncher oslist: windows - executable: microlauncher\\brante-101xp-micro-launcher.exe + executable: "microlauncher\\\\brante-101xp-micro-launcher.exe" type: none - config: oslist: windows executable: The Life and Suffering of Sir Brante.exe type: default -'1272300': +"1272300": installDir: Zombusters launch: - config: @@ -78403,33 +77292,33 @@ oslist: macos executable: ZombustersMac type: default -'1272320': +"1272320": installDir: Diplomacy is Not an Option launch: - executable: Diplomacy is Not an Option.exe type: default -'1272580': +"1272580": installDir: Nine Witches Family Disruption launch: - config: oslist: windows executable: NineWitches.exe type: default -'1272680': +"1272680": installDir: UmiharaKawaseFresh launch: - config: oslist: windows executable: game.exe type: default -'1273220': +"1273220": installDir: Sphere Flying Cities launch: - config: oslist: windows executable: Sphere - Flying Cities.exe type: default -'1273260': +"1273260": installDir: Corpse Party RF launch: - config: @@ -78438,7 +77327,7 @@ type: default - config: oslist: linux - executable: ./CorpseParty.x64 + executable: "./CorpseParty.x64" type: default - config: oslist: macos @@ -78446,33 +77335,27 @@ type: default nameLocalized: japanese: コープスパーティー ブラッドカバー リピーティッドフィアー -'1273400': +"1273400": installDir: Construction Simulator launch: - config: oslist: windows description: ConSim.exe (Use this for new builds!) - description_loc: - english: ConSim.exe (Use this for new builds!) executable: ConSim.exe type: default - config: betakey: marketing oslist: windows description: ConSim22.exe (Use this for old builds!) - description_loc: - english: ConSim22.exe (Use this for old builds!) executable: ConSim22.exe - config: betakey: licenseetest description: ConSim22.exe (Use this for old builds!) - description_loc: - english: ConSim22.exe (Use this for old builds!) executable: ConSim22.exe nameLocalized: german: Bau-Simulator -'1273640': {} -'1273690': +"1273640": {} +"1273690": installDir: Ashwalkers launch: - config: @@ -78481,7 +77364,7 @@ type: default nameLocalized: schinese: 烬土行者 -'1273710': +"1273710": installDir: King of Crabs launch: - config: @@ -78493,41 +77376,37 @@ betakey: staging oslist: macos description: Launch King of Crabs - executable: KingOfCrabs.app\\Contents\\MacOS\\King of Crabs + executable: "KingOfCrabs.app\\\\Contents\\\\MacOS\\\\King of Crabs" type: default -'1274210': +"1274210": installDir: WizardChess launch: - config: oslist: windows description: New launch config - description_loc: - english: New launch config executable: WizardChess/WizardChess.exe type: default - config: oslist: macos description: New launch config - description_loc: - english: New launch config executable: WizardChess.app type: default -'1274300': +"1274300": installDir: Cyber Agent launch: - config: oslist: windows executable: CyberAgent.exe type: default -'1274450': +"1274450": installDir: Bear Party Adventure launch: - - arguments: '-game bisounew' + - arguments: "-game bisounew" config: oslist: windows executable: hl2.exe type: none - - arguments: '-game bisounew' + - arguments: "-game bisounew" config: oslist: linux executable: hl2.sh @@ -78535,23 +77414,23 @@ nameLocalized: schinese: 熊熊派对:大冒险 tchinese: 熊熊派對:大冒險 -'1274570': +"1274570": installDir: Devour launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: DEVOUR.exe type: default - config: oslist: macos - executable: Devour.app\\Contents\\MacOS\\DEVOUR + executable: "Devour.app\\\\Contents\\\\MacOS\\\\DEVOUR" type: default -'12750': +"12750": installDir: Grid launch: - executable: grid.exe -'1275070': +"1275070": installDir: A Buttload of Free Games launch: - config: @@ -78563,64 +77442,58 @@ oslist: windows executable: A Buttload of Free Games.exe type: default -'1275290': +"1275290": installDir: Dream Catcher launch: - config: oslist: windows executable: DreamCatcher.exe type: default -'1275350': +"1275350": installDir: Ninja Kiwi Archive launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Ninja Kiwi Archive.exe type: none -'1275520': +"1275520": installDir: Choco Pixel 4 launch: - config: oslist: windows executable: Choco Pixel 4.exe type: default -'1275670': +"1275670": installDir: Outcore launch: - - arguments: '-force-d3d11-bitblt-model' - description: 'Outcore: Desktop Adventure' - description_loc: - english: 'Outcore: Desktop Adventure' + - arguments: "-force-d3d11-bitblt-model" + description: "Outcore: Desktop Adventure" executable: Outcore.exe - - arguments: '-force-opengl' - description: \"Choose this if your desktop doesn't show up\" edition - description_loc: - english: \"Choose this if your desktop doesn't show up\" edition + - arguments: "-force-opengl" + description: "\\\"Choose this if your desktop doesn't show up\\\" edition" executable: Outcore.exe - - arguments: '-force-vulkan' - description: \"Choose this if the other options don't work\" edition - description_loc: - english: \"Choose this if the other options don't work\" edition + - arguments: "-force-vulkan" + description: "\\\"Choose this if the other options don't work\\\" edition" executable: Outcore.exe -'1275760': +"1275760": installDir: Street Power Football launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SFL/Binaries/Win64/SFL.exe type: default -'1275890': - installDir: Baldi's Basics Plus +"1275890": + installDir: "Baldi's Basics Plus" launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: BALDI.exe type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: BALDI.x86_64 type: none @@ -78628,7 +77501,7 @@ oslist: macos executable: BALDI.app type: none -'1276390': +"1276390": installDir: Bloons TD Battles 2 launch: - config: @@ -78639,45 +77512,35 @@ oslist: macos executable: btdb2_game.app type: default -'1276760': +"1276760": installDir: DRAGON BALL THE BREAKERS launch: - - arguments: '-use_eac' + - arguments: "-use_eac" config: - osarch: '64' + osarch: "64" oslist: windows executable: start_game.exe type: default - - arguments: '-onlinemode' + - arguments: "-onlinemode" config: - betakey: >- - dev-debug, qa-debug, rating-debug, allin-developsv-debug, allin-testsv-debug, prod-developsv-debug, - prod-testsv-debug, staging-developsv-debug, staging-testsv-debug - osarch: '64' + betakey: "dev-debug, qa-debug, rating-debug, allin-developsv-debug, allin-testsv-debug, prod-developsv-debug, prod-testsv-debug, staging-developsv-debug, staging-testsv-debug" + osarch: "64" oslist: windows description: no EAC / onlinemode - description_loc: - english: no EAC / onlinemode - japanese: EACなし / オンラインモード - executable: bin\\DRAGON BALL THE BREAKERS.exe - - arguments: '-offlinemode' + executable: "bin\\\\DRAGON BALL THE BREAKERS.exe" + - arguments: "-offlinemode" config: - betakey: >- - dev-debug, qa-debug, rating-debug, allin-developsv-debug, allin-testsv-debug, prod-developsv-debug, - prod-testsv-debug, staging-developsv-debug, staging-testsv-debug, compat - osarch: '64' + betakey: "dev-debug, qa-debug, rating-debug, allin-developsv-debug, allin-testsv-debug, prod-developsv-debug, prod-testsv-debug, staging-developsv-debug, staging-testsv-debug, compat" + osarch: "64" oslist: windows description: no EAC / offlinemode - description_loc: - english: no EAC / offlinemode - japanese: EACなし / オフラインモード - executable: bin\\DRAGON BALL THE BREAKERS.exe + executable: "bin\\\\DRAGON BALL THE BREAKERS.exe" nameLocalized: japanese: ドラゴンボール ザ ブレイカーズ koreana: 드래곤볼 더 브레이커즈 schinese: 七龙珠 破界斗士 tchinese: 七龍珠 破界鬥士 -'1276790': +"1276790": installDir: Ruined King launch: - config: @@ -78685,13 +77548,13 @@ executable: RuinedKing.exe type: default nameLocalized: - brazilian: 'Ruined King: A League of Legends Story™' + brazilian: "Ruined King: A League of Legends Story™" japanese: ルインドキング:リーグ・オブ・レジェンド ストーリー™ - koreana: '몰락한 왕: 리그 오브 레전드 이야기™' + koreana: "몰락한 왕: 리그 오브 레전드 이야기™" schinese: 破败之王:英雄联盟外传 tchinese: 聯盟外傳:殞落王者™ - vietnamese: 'Ruined King: Truyền Thuyết Liên Minh Huyền Thoại™' -'1276800': + vietnamese: "Ruined King: Truyền Thuyết Liên Minh Huyền Thoại™" +"1276800": installDir: Convergence launch: - config: @@ -78700,12 +77563,12 @@ type: default nameLocalized: japanese: コンバージェンス:リーグ・オブ・レジェンド ストーリー™ - koreana: '시간/교차: 리그 오브 레전드 이야기™' + koreana: "시간/교차: 리그 오브 레전드 이야기™" schinese: 聚点危机:英雄联盟外传™ tchinese: 《聯盟外傳:聚合之力》 - thai: 'CONVERGENCE: เรื่องราวของ League of Legends™' - vietnamese: 'CONVERGENCE: Truyền Thuyết Liên Minh Huyền Thoại' -'1276810': + thai: "CONVERGENCE: เรื่องราวของ League of Legends™" + vietnamese: "CONVERGENCE: Truyền Thuyết Liên Minh Huyền Thoại" +"1276810": installDir: The Outbound Ghost launch: - executable: The Outbound Ghost.exe @@ -78713,24 +77576,24 @@ oslist: linux executable: The Outbound Ghost.exe type: default -'12770': +"12770": installDir: Rise of the Argonauts launch: - - executable: binaries\\RiseOfTheArgonauts.exe + - executable: "binaries\\\\RiseOfTheArgonauts.exe" workingdir: binaries -'1277400': +"1277400": installDir: Monster Hunter Stories 2 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: game.exe type: none nameLocalized: japanese: モンスターハンターストーリーズ2 ~破滅の翼~ koreana: 몬스터헌터 스토리즈 2 파멸의 날개 - tchinese: 'Monster Hunter Stories 2: 破滅之翼' -'1277500': + tchinese: "Monster Hunter Stories 2: 破滅之翼" +"1277500": installDir: Skeletal Avenger launch: - config: @@ -78741,30 +77604,30 @@ oslist: macos executable: SkeletalAvenger.app type: default -'1277510': +"1277510": installDir: ReZERO-TPT launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ReZERO-TPT.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows description: Configuration Tool - executable: launcher\\ReZERO-TPT-Launcher.exe + executable: "launcher\\\\ReZERO-TPT-Launcher.exe" type: config nameLocalized: - japanese: 'Re:ゼロから始める異世界生活 偽りの王選候補' - schinese: 'Re:从零开始的异世界生活 虚假的王选候补' - tchinese: 'Re:從零開始的異世界生活 虛假的王選候補' -'1277930': + japanese: "Re:ゼロから始める異世界生活 偽りの王選候補" + schinese: "Re:从零开始的异世界生活 虚假的王选候补" + tchinese: "Re:從零開始的異世界生活 虛假的王選候補" +"1277930": installDir: Riddle Joker launch: - executable: RiddleJoker.exe type: none -'1277940': +"1277940": installDir: Kinkoi launch: - executable: Kinkoi.exe @@ -78773,29 +77636,29 @@ japanese: 金色ラブリッチェ schinese: 金辉恋曲四重奏 tchinese: 金輝戀曲四重奏 -'1278170': +"1278170": installDir: Rumble launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: RM.exe type: default -'1278190': +"1278190": installDir: Jumpala launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Jumpala.exe type: none - config: - osarch: '32' + osarch: "32" oslist: windows executable: Jumpala.exe type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: Jumpala type: none @@ -78803,7 +77666,7 @@ oslist: macos executable: Jumpala.app/Contents/MacOS/nwjs type: none -'1278390': +"1278390": installDir: Succumate launch: - executable: Game.exe @@ -78812,18 +77675,18 @@ japanese: サキュメイト schinese: 与魅魔莉莉姆的同居生活 tchinese: 與魅魔莉莉姆的同居生活 -'1278750': +"1278750": installDir: Lost At Sea launch: - config: oslist: windows executable: Lost_at_Sea.exe type: default -'12790': +"12790": installDir: Damnation launch: - - executable: Binaries\\DamnGame.exe -'1279260': + - executable: "Binaries\\\\DamnGame.exe" +"1279260": installDir: Lelie Navigation! launch: - executable: Game.exe @@ -78831,22 +77694,22 @@ nameLocalized: schinese: 烂漫向导蕾莉 tchinese: 爛漫嚮導蕾莉 -'1279280': +"1279280": installDir: Welcome to the Adventurer Inn! launch: - executable: krkr.eXe type: default -'1279310': +"1279310": installDir: RAD launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TBS.exe type: default nameLocalized: japanese: リサーチアンドデストロイ -'1279370': +"1279370": installDir: TENGAI launch: - config: @@ -78861,7 +77724,7 @@ type: none nameLocalized: japanese: 戦国ブレード -'1279380': +"1279380": installDir: STRIKERS1945 Ⅱ launch: - config: @@ -78874,7 +77737,7 @@ description: Launch Configuration Tool executable: setting.exe type: none -'1279390': +"1279390": installDir: SENGOKU CANNON launch: - config: @@ -78889,7 +77752,7 @@ type: none nameLocalized: japanese: 戦国キャノン -'1279400': +"1279400": installDir: STRIKERS1945 III launch: - config: @@ -78904,7 +77767,7 @@ type: none nameLocalized: japanese: STRIKERS 1999 -'1279410': +"1279410": installDir: GUNBIRD2 launch: - config: @@ -78917,7 +77780,7 @@ description: Launch Configuration Tool executable: setting.exe type: none -'1279420': +"1279420": installDir: Dragon Blaze launch: - config: @@ -78930,7 +77793,7 @@ description: Launch Configuration Tool executable: setting.exe type: none -'1279450': +"1279450": installDir: SOL DIVIDE -SWORD OF DARKNESS- launch: - config: @@ -78945,20 +77808,20 @@ type: none nameLocalized: japanese: SOL DIVIDE -'1279500': {} -'1279590': +"1279500": {} +"1279590": installDir: FritzChess 17 SteamEdition launch: - - arguments: '-Fritz17Steam' + - arguments: "-Fritz17Steam" config: oslist: windows - executable: ChessProgram17\\ChessProgram17.exe + executable: "ChessProgram17\\\\ChessProgram17.exe" type: none -'1279630': +"1279630": installDir: Vampire The Masquerade - Shadows of New York launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: VtM Shadows of New York.exe type: default @@ -78967,60 +77830,60 @@ executable: VtmSony.app/Contents/MacOS/VtM Shadows of New York type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Vampire the Masquerade - Shadows of New York.x86_64 type: default -'1279910': +"1279910": installDir: Nerf Legends launch: - executable: ProjectDart/Binaries/Win64/ProjectDart.exe type: default -'1279920': +"1279920": installDir: Cobra Kai The Karate Kid Saga Continues launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Cobra Kai The Karate Kid Saga Continues.exe type: default -'1280': +"1280": installDir: red orchestra launch: - - arguments: '-mod=DarkestHour' + - arguments: "-mod=DarkestHour" config: oslist: windows description: Darkest Hour executable: System/RedOrchestraLargeAddressAware.exe type: none - - arguments: '-mod=DarkestHour' + - arguments: "-mod=DarkestHour" config: oslist: linux description: Darkest Hour executable: System/redorchestra-bin workingdir: System - - arguments: '-mod=DarkestHour' + - arguments: "-mod=DarkestHour" config: oslist: macos description: Darkest Hour executable: Red Orchestra.app workingdir: System - - arguments: '-mod=DarkestHour' + - arguments: "-mod=DarkestHour" config: betakey: beta oslist: windows description: Darkest Hour executable: System/RedOrchestraLargeAddressAware.exe type: none -'12800': +"12800": installDir: FUEL launch: - executable: GameSetup.exe -'1280190': +"1280190": nameLocalized: schinese: 坠落边界 Falling Frontier tchinese: 墜落邊界 Falling Frontier -'1280300': +"1280300": installDir: Steel Assault launch: - config: @@ -79029,13 +77892,13 @@ type: none - config: oslist: linux - executable: ./SteelAssaultCs + executable: "./SteelAssaultCs" type: none - config: oslist: macos executable: Steel Assault.app type: none -'1280700': +"1280700": installDir: Drekirokr - Dusk of the Dragon launch: - config: @@ -79046,16 +77909,16 @@ nameLocalized: latam: Drekirokr - Atardecer del Dragón spanish: Drekirokr - Atardecer del Dragón -'1280750': +"1280750": installDir: Aquamarine launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Aquamarine.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Aquamarine.x86_64 type: default @@ -79063,7 +77926,7 @@ oslist: macos executable: Aquamarine.app type: default -'1280930': +"1280930": installDir: Astral Ascent launch: - config: @@ -79075,7 +77938,7 @@ koreana: 애스트럴 어센트 schinese: 星座上升 tchinese: 星座上升 -'12810': +"12810": installDir: Overlord II launch: - config: @@ -79095,56 +77958,51 @@ - config: oslist: linux description: Launch Overlord II - executable: ./overlord2 + executable: "./overlord2" type: default - config: oslist: linux description: Launch Overlord II Configuration Utility - executable: ./overlord2-config + executable: "./overlord2-config" type: config -'1281590': +"1281590": installDir: The Dark Pictures Anthology - House of Ashes launch: - - arguments: '-dx11' + - arguments: "-dx11" config: - osarch: '64' + osarch: "64" oslist: windows executable: HouseOfAshes.exe type: default - - arguments: '-dx12' + - arguments: "-dx12" config: - osarch: '64' + osarch: "64" oslist: windows - description: 'The Dark Pictures Anthology: House of Ashes (DX12)' - description_loc: - english: 'The Dark Pictures Anthology: House of Ashes (DX12)' - koreana: '더 다크 픽처스 앤솔로지: 하우스 오브 애쉬 (DX12)' - schinese: 黑相集:灰冥界 (DX12) - tchinese: 黑相集:灰冥界 (DX12) + description: "The Dark Pictures Anthology: House of Ashes (DX12)" executable: HouseOfAshes.exe type: option1 nameLocalized: - koreana: '더 다크 픽처스 앤솔로지: 하우스 오브 애쉬' + koreana: "더 다크 픽처스 앤솔로지: 하우스 오브 애쉬" schinese: 黑相集:灰冥界 tchinese: 黑相集:灰冥界 -'1281630': +"1281630": installDir: Anno 1404 - History Edition launch: - - arguments: '-uplay_steam_mode' + - arguments: "-uplay_steam_mode" config: - osarch: '64' + osarch: "64" oslist: windows description: Anno 1404 - History Edition (Addon) executable: Anno1404Addon.exe type: default - - arguments: '-uplay_steam_mode' + - arguments: "-uplay_steam_mode" config: - osarch: '64' + osarch: "64" oslist: windows description: Anno 1404 - History Edition (start without addon) executable: Anno1404.exe type: option1 -'1281790': +"1281790": installDir: Sheepo launch: - config: @@ -79155,7 +78013,7 @@ oslist: linux executable: Sheepo type: none -'1281800': +"1281800": installDir: Samsara Room launch: - config: @@ -79166,8 +78024,8 @@ oslist: macos executable: SamsaraRoom.app type: default -'1281950': {} -'1282100': +"1281950": {} +"1282100": installDir: Remnant2 launch: - config: @@ -79176,69 +78034,69 @@ type: default nameLocalized: schinese: 遗迹2 -'1282140': +"1282140": installDir: Fires At Midnight launch: - - arguments: '-window' + - arguments: "-window" config: oslist: windows description: Windows executable: Fires At Midnight.exe type: default - - arguments: '-Mac' + - arguments: "-Mac" config: oslist: macos description: Mac Os - executable: FiresAtMidnight.app\\Contents\\MacOS\\Fires At Midnight + executable: "FiresAtMidnight.app\\\\Contents\\\\MacOS\\\\Fires At Midnight" type: default -'1282150': +"1282150": installDir: SpongeBob SquarePants The Cosmic Shake launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: CosmicShake.exe type: default nameLocalized: - brazilian: 'SpongeBob SquarePants: The Cosmic Shake' - french: "Bob l'éponge\_: The Cosmic Shake" - german: 'SpongeBob Schwammkopf: The Cosmic Shake' - italian: 'SpongeBob: The Cosmic Shake' + brazilian: "SpongeBob SquarePants: The Cosmic Shake" + french: "Bob l'éponge : The Cosmic Shake" + german: "SpongeBob Schwammkopf: The Cosmic Shake" + italian: "SpongeBob: The Cosmic Shake" japanese: スポンジ・ボブ:ザ コズミック シェイク - koreana: '스폰지밥 네모바지 : The Cosmic Shake' - latam: 'Bob Esponja: The Cosmic Shake' - polish: 'SpongeBob Kanciastoporty: The Cosmic Shake' - portuguese: 'SpongeBob SquarePants: The Cosmic Shake' - russian: 'Губка Боб Квадратные Штаны: The Cosmic Shake' - schinese: '海绵宝宝 : The Cosmic Shake' - spanish: 'Bob Esponja: The Cosmic Shake' - tchinese: '海綿寶寶 : The Cosmic Shake' -'1282410': + koreana: "스폰지밥 네모바지 : The Cosmic Shake" + latam: "Bob Esponja: The Cosmic Shake" + polish: "SpongeBob Kanciastoporty: The Cosmic Shake" + portuguese: "SpongeBob SquarePants: The Cosmic Shake" + russian: "Губка Боб Квадратные Штаны: The Cosmic Shake" + schinese: "海绵宝宝 : The Cosmic Shake" + spanish: "Bob Esponja: The Cosmic Shake" + tchinese: "海綿寶寶 : The Cosmic Shake" +"1282410": installDir: HardWest2 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: HardWest2.exe type: default -'1282590': +"1282590": installDir: Train Sim World 2 launch: - config: oslist: windows - executable: WindowsNoEditor\\TS2Prototype.exe + executable: "WindowsNoEditor\\\\TS2Prototype.exe" type: none -'1282690': +"1282690": installDir: Crysis 3 launch: - - executable: 'link2ea://launchgame/1282690?platform=steam&theme=c3' + - executable: "link2ea://launchgame/1282690?platform=steam&theme=c3" type: none nameLocalized: - japanese: 'クライシス 3 ' - koreana: '크라이시스 3 ' + japanese: "クライシス 3 " + koreana: "크라이시스 3 " schinese: 《Crysis® 3》 tchinese: 《末日之戰3》 -'1282730': +"1282730": installDir: Loop Hero launch: - config: @@ -79253,7 +78111,7 @@ oslist: linux executable: run.sh type: none -'1282890': +"1282890": installDir: Space Mouse 2 launch: - description: Space Mouse 2 @@ -79262,46 +78120,41 @@ - description: SPACE MOUSE PC-8001 Style executable: PC8001/SPACEMOUSE.exe type: none -'12830': +"12830": installDir: Operation Flashpoint Dragon Rising launch: - executable: OFDR.exe -'1283190': +"1283190": installDir: Neighbours back From Hell launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Neighbours back From Hell.exe type: none -'1283220': +"1283220": installDir: Devolverland_Expo launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Devolverland_Expo.exe type: default -'1283400': +"1283400": installDir: Steelrising launch: - config: - osarch: '64' + osarch: "64" oslist: windows - description_loc: - french: Steelrising - DebugOpt executable: Steelrising.exe type: default - config: - betakey: 'partners_amd,partners_nvidia,qa_external_debug,spiders_demo_debug,spiders_stable_debug' - osarch: '64' + betakey: "partners_amd,partners_nvidia,qa_external_debug,spiders_demo_debug,spiders_stable_debug" + osarch: "64" oslist: windows description: Steelrising - DebugOpt - description_loc: - english: Steelrising - DebugOpt - french: Steelrising - Release executable: SteelrisingDO.exe -'1283410': +"1283410": installDir: Tails of Iron launch: - config: @@ -79310,7 +78163,7 @@ type: default - config: oslist: macos - executable: TOI.app\\Contents\\MacOS\\Tails of Iron + executable: "TOI.app\\\\Contents\\\\MacOS\\\\Tails of Iron" type: default - config: oslist: linux @@ -79318,19 +78171,19 @@ type: default nameLocalized: tchinese: 鐵尾傳奇 -'1283930': +"1283930": installDir: Half-Life Restored launch: - - arguments: '-nobindless +cl_lw 0' + - arguments: "-nobindless +cl_lw 0" config: oslist: windows executable: restored.exe type: default -'12840': +"12840": installDir: Dirt 2 launch: - executable: dirt2.exe -'1284080': +"1284080": installDir: Legion launch: - executable: Launcher.exe @@ -79338,49 +78191,47 @@ - config: betakey: compat description: Legion Gold (Quick Launch) - description_loc: - english: Legion Gold (Quick Launch) executable: Legion.exe type: option1 -'1284190': +"1284190": installDir: The Planet Crafter launch: - config: oslist: windows executable: Planet Crafter.exe type: none -'1284210': +"1284210": installDir: Guild Wars 2 launch: - - arguments: '-provider Steam' + - arguments: "-provider Steam" config: - osarch: '64' + osarch: "64" oslist: windows executable: Gw2-64.exe type: default -'1284410': +"1284410": installDir: GWENT The Witcher Card Game launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: REDprelauncher.exe type: default nameLocalized: - polish: 'GWINT: Wiedźmińska Gra Karciana' - russian: 'ГВИНТ: Ведьмак. Карточная игра' + polish: "GWINT: Wiedźmińska Gra Karciana" + russian: "ГВИНТ: Ведьмак. Карточная игра" schinese: 巫师之昆特牌 -'1284870': +"1284870": installDir: Ultreïa launch: - config: oslist: windows executable: Ultreia.exe type: default -'1284950': +"1284950": installDir: Witcheye launch: - - arguments: '-single-instance' + - arguments: "-single-instance" config: oslist: windows executable: Witcheye.exe @@ -79389,7 +78240,7 @@ oslist: macos executable: Witcheye.app/Contents/MacOS/Witcheye type: default -'1285020': +"1285020": installDir: Flipon launch: - config: @@ -79401,11 +78252,11 @@ executable: flipon.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: flipon.x86_64 type: default -'1285060': +"1285060": installDir: Winter Falling launch: - config: @@ -79417,31 +78268,31 @@ executable: WinterFalling.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: WinterFalling.x86_64 type: default -'1285080': +"1285080": installDir: Gordian Rooms A curious heritage launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: GordianRoom.exe type: default -'1285360': {} -'1285670': +"1285360": {} +"1285670": installDir: Post Void launch: - executable: Post Void.exe type: default -'12860': +"12860": installDir: Ashes Cricket 2009 launch: - executable: Cricket2009.exe - description: Launch Ashes Cricket 2009 in safemode executable: runme.exe -'1286280': +"1286280": installDir: Pronty Fishy Adventure launch: - config: @@ -79453,56 +78304,54 @@ japanese: 棄海 schinese: 弃海 tchinese: 棄海 -'1286320': +"1286320": installDir: Exoprimal launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: start_protected_game.exe type: default - config: - betakey: 'p1sa,p3am,p4in,p5nv,st_lac' - osarch: '64' + betakey: "p1sa,p3am,p4in,p5nv,st_lac" + osarch: "64" oslist: windows description: without Anti-Cheat Bootstrapper(for Develop) - description_loc: - english: without Anti-Cheat Bootstrapper(for Develop) executable: EXOPRIMAL.exe type: option1 nameLocalized: japanese: EXOPRIMAL -'1286330': +"1286330": installDir: Waking up Girl launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows executable: WakeUpGirl.exe type: default -'1286350': +"1286350": installDir: BPM BULLETS PER MINUTE launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: WindowsNoEditor/BPMGame.exe type: default nameLocalized: - schinese: 'BPM: 枪林弹雨' -'1286680': - installDir: Tiny Tina's Wonderlands + schinese: "BPM: 枪林弹雨" +"1286680": + installDir: "Tiny Tina's Wonderlands" launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: OakGame\\Binaries\\Win64\\Wonderlands.exe + executable: "OakGame\\\\Binaries\\\\Win64\\\\Wonderlands.exe" nameLocalized: japanese: ワンダーランズ ~タイニー・ティナと魔法の世界 koreana: 타이니 티나의 원더랜드 schinese: 小缇娜的奇幻之地 tchinese: 小蒂娜的奇幻樂園 -'1286710': +"1286710": installDir: Hylics 2 launch: - config: @@ -79513,7 +78362,7 @@ oslist: macos executable: Hylics2_Mac.app type: default -'1286830': +"1286830": installDir: Star Wars - The Old Republic launch: - config: @@ -79522,16 +78371,16 @@ type: default nameLocalized: tchinese: 《星際大戰™:舊共和國™》 -'1286880': +"1286880": installDir: Ship Graveyard Simulator launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ShipGraveyard.exe type: default -'1286990': {} -'1287000': +"1286990": {} +"1287000": installDir: COVID The Outbreak launch: - config: @@ -79539,7 +78388,7 @@ description: Launch executable: COVID The Outbreak.exe type: default -'1287030': +"1287030": installDir: BUBBLE BOBBLE 4 FRIENDS launch: - config: @@ -79551,38 +78400,36 @@ koreana: 버블보블 4 프렌즈 스컬 몬스터와 창작마당 schinese: 泡泡龙4伙伴 头骨怪与创意工坊 tchinese: 泡泡龍4伙伴 骷髏阿怪與工作坊 -'1287040': +"1287040": installDir: Gun Devil launch: - executable: Gun Devil.exe type: default -'1287130': +"1287130": nameLocalized: schinese: 监狱岛的女看守 tchinese: 監獄島的女看守 -'1287140': +"1287140": installDir: Sonia and the Hypnotic City launch: - executable: Game.exe type: default -'1287530': +"1287530": installDir: Lords & Villeins launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Lords and Villeins.exe type: default -'1287840': +"1287840": installDir: Disciples Liberation launch: - - arguments: '--gamePid DL4' + - arguments: "--gamePid DL4" description: with Kalypso Launcher - description_loc: - english: with Kalypso Launcher executable: LauncherDisciplesLiberation.exe type: config -'1288310': +"1288310": installDir: Firework launch: - config: @@ -79593,43 +78440,37 @@ japanese: 花火 schinese: 烟火 tchinese: 煙火 -'1288320': +"1288320": installDir: WayOfTheHunter launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Way of the Hunter (Default) - description_loc: - english: Way of the Hunter (Default) executable: WayOfTheHunter.exe type: default - - arguments: '-dx11' + - arguments: "-dx11" config: - osarch: '64' + osarch: "64" oslist: windows description: Way of the Hunter (DirectX 11) - description_loc: - english: Way of the Hunter (DirectX 11) executable: WayOfTheHunter.exe type: option1 - - arguments: '-dx12' + - arguments: "-dx12" config: - osarch: '64' + osarch: "64" oslist: windows description: Way of the Hunter (DirectX 12) - description_loc: - english: Way of the Hunter (DirectX 12) executable: WayOfTheHunter.exe type: option2 -'1288410': +"1288410": installDir: Outshine launch: - config: oslist: windows executable: Outshine.exe type: default -'1288610': +"1288610": installDir: Wildcat Gun Machine launch: - config: @@ -79640,34 +78481,28 @@ betakey: demo oslist: windows description: Wildcat Gun Machine Demo - description_loc: - english: Wildcat Gun Machine Demo executable: Wildcat Gun Machine Demo.exe type: option1 nameLocalized: schinese: 暴走枪姬 Wildcat Gun Machine tchinese: 暴走槍姬 Wildcat Gun Machine -'1288710': {} -'1288900': +"1288710": {} +"1288900": installDir: Title_Pending launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Title_Pending - description_loc: - english: Title_Pending executable: Title_Pending.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: Title_Pending - description_loc: - english: Title_Pending executable: Title_Pending.sh type: default -'1289310': +"1289310": installDir: Helltaker launch: - config: @@ -79676,57 +78511,55 @@ type: default - config: oslist: macos - executable: helltaker_osx.app\\Contents\\MacOS\\Helltaker + executable: "helltaker_osx.app\\\\Contents\\\\MacOS\\\\Helltaker" type: default - config: oslist: linux executable: helltaker_lnx.x86_64 type: default -'1289340': +"1289340": installDir: Tastemaker launch: - config: oslist: windows executable: TasteMaker.exe type: none -'1289380': +"1289380": installDir: Sheltered 2 launch: - executable: Sheltered2.exe type: none nameLocalized: schinese: 避难所2 -'1289990': - installDir: Alan's Automaton Workshop +"1289990": + installDir: "Alan's Automaton Workshop" launch: - config: oslist: macos - executable: Alan's Automaton Workshop.app + executable: "Alan's Automaton Workshop.app" type: default - config: oslist: windows - executable: Alan's Automaton Workshop.exe + executable: "Alan's Automaton Workshop.exe" type: default - - arguments: '--develop' + - arguments: "--develop" config: betakey: develop oslist: windows description: AAW (Developer Mode) - executable: Alan's Automaton Workshop.exe + executable: "Alan's Automaton Workshop.exe" type: option1 - config: betakey: develop oslist: windows executable: Open Savefile Folder.bat type: config - - arguments: '--develop' + - arguments: "--develop" config: betakey: develop oslist: macos description: AAW (Developer Mode) - description_loc: - english: AAW (Developer Mode) - executable: Alan's Automaton Workshop.app + executable: "Alan's Automaton Workshop.app" type: option1 - config: betakey: develop @@ -79735,66 +78568,58 @@ type: config - config: oslist: linux - executable: Alan's Automaton Workshop.x86_64 + executable: "Alan's Automaton Workshop.x86_64" type: default - - arguments: '--develop' + - arguments: "--develop" config: betakey: develop oslist: linux description: AAW (Developer Mode) - description_loc: - english: AAW (Developer Mode) - executable: Alan's Automaton Workshop.x86_64 + executable: "Alan's Automaton Workshop.x86_64" type: option1 - - arguments: '--beta' + - arguments: "--beta" config: betakey: beta oslist: linux description: AAW (Beta Test) - description_loc: - english: AAW (Beta Test) - executable: Alan's Automaton Workshop.x86_64 + executable: "Alan's Automaton Workshop.x86_64" type: option1 - - arguments: '--beta' + - arguments: "--beta" config: betakey: beta oslist: macos description: AAW (Beta Test) - description_loc: - english: AAW (Beta Test) - executable: Alan's Automaton Workshop.app + executable: "Alan's Automaton Workshop.app" type: option1 - - arguments: '--beta' + - arguments: "--beta" config: betakey: beta oslist: windows description: AAW (Beta Test) - description_loc: - english: AAW (Beta Test) - executable: Alan's Automaton Workshop.exe + executable: "Alan's Automaton Workshop.exe" type: option1 nameLocalized: tchinese: 艾倫的自動機工坊 -'12900': +"12900": installDir: Audiosurf launch: - arguments: Q3DStart.q3d description: Default - executable: engine\\QuestViewer.exe + executable: "engine\\\\QuestViewer.exe" workingdir: engine -'1290000': +"1290000": installDir: PowerWash Simulator launch: - executable: PowerWashSimulator.exe type: default -'1290220': +"1290220": installDir: elma launch: - config: oslist: windows executable: ElmaLauncher/ElmaLauncher.exe type: default -'1290270': +"1290270": installDir: Vampire The Masquerade — Night Road launch: - config: @@ -79809,7 +78634,7 @@ oslist: linux executable: NightRoad type: none -'1290350': +"1290350": installDir: Vampire The Masquerade — Out for Blood launch: - config: @@ -79824,7 +78649,7 @@ oslist: linux executable: OutForBlood type: none -'1290780': +"1290780": installDir: residual launch: - config: @@ -79835,7 +78660,7 @@ oslist: linux executable: residual type: default -'1290920': +"1290920": installDir: Roll Control launch: - config: @@ -79844,9 +78669,9 @@ type: default - config: oslist: macos - executable: Roll Control Mac.app\\Contents\\MacOS\\Roll Control Mac + executable: "Roll Control Mac.app\\\\Contents\\\\MacOS\\\\Roll Control Mac" type: default -'1291010': +"1291010": installDir: Warpips launch: - config: @@ -79855,34 +78680,28 @@ type: none - config: oslist: windows - ownsdlc: '1606930' + ownsdlc: "1606930" description: Bonus Content - description_loc: - english: Bonus Content executable: open_bonus_win.bat type: none - config: betakey: experimental oslist: macos - ownsdlc: '1606930' + ownsdlc: "1606930" description: Bonus Content - description_loc: - english: Bonus Content executable: open_bonus_osx.sh type: none - config: betakey: experimental oslist: linux - ownsdlc: '1606930' + ownsdlc: "1606930" description: Bonus Content - description_loc: - english: Bonus Content executable: open_bonus_lin.sh type: none nameLocalized: schinese: 小兵大战 - Warpips tchinese: 戰爭迷你兵 - Warpips -'1291340': +"1291340": installDir: Townscaper launch: - config: @@ -79895,24 +78714,22 @@ type: default nameLocalized: schinese: 城镇叠叠乐 -'1291860': +"1291860": installDir: Rough Justice launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: RoughJustice.exe type: default - config: oslist: windows - ownsdlc: '2289840' + ownsdlc: "2289840" description: Bonus Content - description_loc: - english: Bonus Content executable: open_bonus_win.bat nameLocalized: - schinese: 粗暴的正义:'84 年 - Rough Justice '84 -'1292010': + schinese: "粗暴的正义:'84 年 - Rough Justice '84" +"1292010": installDir: MissileCommandRecharged launch: - config: @@ -79927,44 +78744,44 @@ oslist: linux executable: MissileCommandRecharged.x86_64 type: none -'1292170': - installDir: Krush Kill 'N Destroy Xtreme +"1292170": + installDir: "Krush Kill 'N Destroy Xtreme" launch: - config: oslist: windows executable: KKNDgame.exe type: default -'1292180': +"1292180": installDir: Krush Kill ‘N Destroy 2 Krossfire launch: - config: oslist: windows executable: KKND2.exe type: default -'1292630': +"1292630": installDir: 3on3 FreeStyle Rebound launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: DoubleClutch.exe type: default -'1292690': +"1292690": installDir: Corruption of Champions II launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: - osarch: '64' + osarch: "64" oslist: windows executable: CoC II.exe type: default - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: - osarch: '64' + osarch: "64" oslist: linux executable: coc2electron type: default -'1292940': +"1292940": installDir: Cube Escape Collection launch: - config: @@ -79975,7 +78792,7 @@ oslist: macos executable: CubeEscapeCollection.app type: none -'1293120': +"1293120": installDir: Silmaris launch: - config: @@ -79991,114 +78808,110 @@ executable: silmaris.x86_64 type: none nameLocalized: - english: 'Silmaris: Dice Kingdom' - french: 'Silmaris: Dice Kingdom' - german: 'Silmaris: Dice Kingdom' - russian: 'Silmaris: Dice Kingdom' -'1293160': + english: "Silmaris: Dice Kingdom" + french: "Silmaris: Dice Kingdom" + german: "Silmaris: Dice Kingdom" + russian: "Silmaris: Dice Kingdom" +"1293160": installDir: The Medium launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Medium.exe type: default - config: betakey: bleeding_edge - osarch: '64' + osarch: "64" oslist: windows description: Dev EXEC - executable: Medium\\Binaries\\Win64\\Medium.exe + executable: "Medium\\\\Binaries\\\\Win64\\\\Medium.exe" type: option1 - workingdir: Medium\\Binaries\\Win64 - - arguments: '-dx12' + workingdir: "Medium\\\\Binaries\\\\Win64" + - arguments: "-dx12" config: - osarch: '64' + osarch: "64" oslist: windows description: The Medium DX12 - description_loc: - english: The Medium DX12 executable: Medium.exe type: option2 - - arguments: '-dx12' + - arguments: "-dx12" config: betakey: bleeding_edge - osarch: '64' + osarch: "64" oslist: windows description: Dev EXEC DX12 - executable: Medium\\Binaries\\Win64\\Medium.exe + executable: "Medium\\\\Binaries\\\\Win64\\\\Medium.exe" type: option3 - workingdir: Medium\\Binaries\\Win64 + workingdir: "Medium\\\\Binaries\\\\Win64" - config: betakey: beta_stable - osarch: '64' + osarch: "64" oslist: windows description: Dev EXEC - executable: Medium\\Binaries\\Win64\\Medium.exe + executable: "Medium\\\\Binaries\\\\Win64\\\\Medium.exe" type: option1 - workingdir: Medium\\Binaries\\Win64 - - arguments: '-dx12' + workingdir: "Medium\\\\Binaries\\\\Win64" + - arguments: "-dx12" config: betakey: beta_stable - osarch: '64' + osarch: "64" oslist: windows description: DX12 mode executable: Medium.exe type: option2 - - arguments: '-dx12' + - arguments: "-dx12" config: betakey: beta_stable - osarch: '64' + osarch: "64" oslist: windows description: Dev EXEC DX12 - executable: Medium\\Binaries\\Win64\\Medium.exe + executable: "Medium\\\\Binaries\\\\Win64\\\\Medium.exe" type: option3 - workingdir: Medium\\Binaries\\Win64 + workingdir: "Medium\\\\Binaries\\\\Win64" - config: betakey: nvidia_builds - osarch: '64' + osarch: "64" oslist: windows description: Dev EXEC - executable: Medium\\Binaries\\Win64\\Medium.exe + executable: "Medium\\\\Binaries\\\\Win64\\\\Medium.exe" type: option1 - workingdir: Medium\\Binaries\\Win64 - - arguments: '-dx12' + workingdir: "Medium\\\\Binaries\\\\Win64" + - arguments: "-dx12" config: betakey: nvidia_builds - osarch: '64' + osarch: "64" oslist: windows description: Dev EXEC DX12 - executable: Medium\\Binaries\\Win64\\Medium.exe + executable: "Medium\\\\Binaries\\\\Win64\\\\Medium.exe" type: option3 - workingdir: Medium\\Binaries\\Win64 + workingdir: "Medium\\\\Binaries\\\\Win64" - config: betakey: amd_builds - osarch: '64' + osarch: "64" oslist: windows description: Dev EXEC - executable: Medium\\Binaries\\Win64\\Medium.exe + executable: "Medium\\\\Binaries\\\\Win64\\\\Medium.exe" type: option1 - workingdir: Medium\\Binaries\\Win64 - - arguments: '-dx12' + workingdir: "Medium\\\\Binaries\\\\Win64" + - arguments: "-dx12" config: betakey: amd_builds - osarch: '64' + osarch: "64" oslist: windows description: Dev EXEC DX12 - executable: Medium\\Binaries\\Win64\\Medium.exe + executable: "Medium\\\\Binaries\\\\Win64\\\\Medium.exe" type: option3 - workingdir: Medium\\Binaries\\Win64 - - arguments: '-showopts' + workingdir: "Medium\\\\Binaries\\\\Win64" + - arguments: "-showopts" config: - osarch: '64' + osarch: "64" oslist: windows description: The Medium launcher - description_loc: - english: The Medium launcher executable: Medium.exe type: option3 -'1293170': {} -'1293180': +"1293170": {} +"1293180": installDir: SuchArt launch: - config: @@ -80106,11 +78919,11 @@ executable: SuchArt.exe type: default nameLocalized: - japanese: 'SuchArt: アーティストシミュレーター' - koreana: 'SuchArt: 아티스트 시뮬레이터' - schinese: 'SuchArt: 艺术家模拟器' - tchinese: 'SuchArt: 藝術家模擬器' -'1293230': + japanese: "SuchArt: アーティストシミュレーター" + koreana: "SuchArt: 아티스트 시뮬레이터" + schinese: "SuchArt: 艺术家模拟器" + tchinese: "SuchArt: 藝術家模擬器" +"1293230": installDir: House of Detention launch: - config: @@ -80123,9 +78936,9 @@ type: default - config: oslist: macos - executable: Contents\\MacOS\\House of Detention + executable: "Contents\\\\MacOS\\\\House of Detention" type: default -'1293460': +"1293460": installDir: Ash of Gods The Way launch: - executable: TheWay.exe @@ -80133,23 +78946,23 @@ nameLocalized: schinese: 诸神灰烬:抉择 tchinese: 諸神灰燼:抉擇 -'1293540': +"1293540": installDir: Outerverse launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SpaceVoxel.exe type: default -'1293730': +"1293730": installDir: Broken Pieces launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: BrokenPieces.exe type: default -'1293820': +"1293820": installDir: YOU and ME and HER - A Love Story launch: - config: @@ -80157,7 +78970,7 @@ executable: totono_Steam.exe nameLocalized: schinese: 你和她和她的恋爱。 -'1293830': +"1293830": installDir: ForzaHorizon4 launch: - config: @@ -80166,26 +78979,20 @@ executable: ForzaHorizon4.exe type: default - config: - betakey: 'nightlyinstall,mainlineinstall,rcinstall' + betakey: "nightlyinstall,mainlineinstall,rcinstall" oslist: windows description: Sunrise Profile - description_loc: - english: Sunrise Profile executable: forza_x64_profile.exe type: option1 - config: - betakey: 'nightlyinstall,mainlineinstall,rcinstall' + betakey: "nightlyinstall,mainlineinstall,rcinstall" oslist: windows description: Sunrise Release - description_loc: - english: Sunrise Release executable: forza_x64_release.exe type: option2 - config: - betakey: 'nightlyinstall,mainlineinstall,rcinstall' + betakey: "nightlyinstall,mainlineinstall,rcinstall" description: Sunrise Release Final - description_loc: - english: Sunrise Release Final executable: forza_x64_release_final.exe type: option3 - config: @@ -80207,19 +79014,19 @@ type: option3 nameLocalized: schinese: 极限竞速:地平线 4 -'1293910': {} -'1294340': +"1293910": {} +"1294340": installDir: Wonhon - A Vengeful Spirit launch: - executable: Wonhon.exe type: none nameLocalized: - koreana: '원혼: 복수의 영혼' -'1294420': + koreana: "원혼: 복수의 영혼" +"1294420": installDir: ROLLERDROME launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ROLLERDROME.exe nameLocalized: @@ -80227,17 +79034,17 @@ koreana: 롤러드롬 schinese: 酷极轮滑 tchinese: 室內滑輪賽 -'1294450': +"1294450": installDir: Little Witch Academia VR Broom Racing launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: LWAVR.exe type: vr nameLocalized: japanese: リトルウィッチアカデミアVR ほうき星に願いを -'1294620': +"1294620": nameLocalized: brazilian: CrocApoca!! Uma Donzela Crocodilo no Fim do Mundo english: CrocApoca!! Crocodile maiden at the End of the World @@ -80248,99 +79055,77 @@ russian: CrocApoca!! Конец Света с Кроко-тян schinese: CrocApoca!! 和鳄鱼少女共度世界末日 tchinese: CrocApoca!! 和鱷魚少女共度世界末日 -'1294650': +"1294650": installDir: TheMansion launch: - config: oslist: windows executable: TheMansion.exe type: none -'1294660': +"1294660": installDir: Divine Knockout launch: - - arguments: >- - -hirezenv=RETAIL -homedir=DivineKnockout -oss=Steam - -servicediscoveryurl=xhttps://api.divineknockout.com/config/v1/discovery + - arguments: "-hirezenv=RETAIL -homedir=DivineKnockout -oss=Steam -servicediscoveryurl=xhttps://api.divineknockout.com/config/v1/discovery" config: oslist: windows executable: DivineKnockout.exe type: default nameLocalized: schinese: 《Divine Knockout》(DKO) -'1294810': +"1294810": installDir: Redfall launch: - - executable: Redfall\\Binaries\\Win64\\Redfall.exe + - executable: "Redfall\\\\Binaries\\\\Win64\\\\Redfall.exe" type: default - - arguments: >- - -messaging -SessionName=\"SteamQA\" -tracefile=C:\\temp\\OmenClientCapture_All.utrace -statnamedevents - -trace=log,bookmark,frame,cpu,gpu,loadtime,file,net -noverifygc + - arguments: "-messaging -SessionName=\\\"SteamQA\\\" -tracefile=C:\\\\temp\\\\OmenClientCapture_All.utrace -statnamedevents -trace=log,bookmark,frame,cpu,gpu,loadtime,file,net -noverifygc" config: betakey: main - description: 'With Insights: All Channels' - description_loc: - english: 'With Insights: All Channels' - executable: Redfall\\Binaries\\Win64\\Redfall.exe + description: "With Insights: All Channels" + executable: "Redfall\\\\Binaries\\\\Win64\\\\Redfall.exe" type: option1 - - arguments: >- - -messaging -SessionName=\"SteamQA\" -tracefile=C:\\temp\\OmenClientCapture_Minimal.utrace -statnamedevents - -trace=log,frame,cpu,loadtime,net -noverifygc + - arguments: "-messaging -SessionName=\\\"SteamQA\\\" -tracefile=C:\\\\temp\\\\OmenClientCapture_Minimal.utrace -statnamedevents -trace=log,frame,cpu,loadtime,net -noverifygc" config: betakey: main - description: 'With Insights: Minimal Channels' - description_loc: - english: 'With Insights: Minimal Channels' - executable: Redfall\\Binaries\\Win64\\Redfall.exe + description: "With Insights: Minimal Channels" + executable: "Redfall\\\\Binaries\\\\Win64\\\\Redfall.exe" type: option2 - - arguments: >- - -messaging -SessionName=\"SteamQA\" -tracefile=C:\\temp\\OmenClientCapture_Network.utrace - -trace=bookmark,frame,cpu,net -NetTrace=1 -noverifygc + - arguments: "-messaging -SessionName=\\\"SteamQA\\\" -tracefile=C:\\\\temp\\\\OmenClientCapture_Network.utrace -trace=bookmark,frame,cpu,net -NetTrace=1 -noverifygc" config: betakey: main - description: 'With Insights: Network Channels' - description_loc: - english: 'With Insights: Network Channels' - executable: Redfall\\Binaries\\Win64\\Redfall.exe + description: "With Insights: Network Channels" + executable: "Redfall\\\\Binaries\\\\Win64\\\\Redfall.exe" type: option3 - - arguments: '-logPSO' + - arguments: "-logPSO" config: betakey: staging description: Collect PSO data - description_loc: - english: Collect PSO data - executable: Redfall\\Binaries\\Win64\\Redfall.exe + executable: "Redfall\\\\Binaries\\\\Win64\\\\Redfall.exe" type: none - arguments: District_01_Adventure_Mode?ActivateIntroMission=0 -disable_arknet config: betakey: buildsystem description: Adventure Mode - description_loc: - english: Adventure Mode - executable: Redfall\\Binaries\\Win64\\Redfall.exe - - arguments: '-logPSO' + executable: "Redfall\\\\Binaries\\\\Win64\\\\Redfall.exe" + - arguments: "-logPSO" config: betakey: main description: Collect PSO data - description_loc: - english: Collect PSO data - executable: Redfall\\Binaries\\Win64\\Redfall.exe + executable: "Redfall\\\\Binaries\\\\Win64\\\\Redfall.exe" - config: betakey: main description: Launch Development Build Hack - description_loc: - english: Launch Development Build Hack - executable: Redfall\\Binaries\\Win64\\Redfall-DevelopmentHack.exe -'1294880': + executable: "Redfall\\\\Binaries\\\\Win64\\\\Redfall-DevelopmentHack.exe" +"1294880": installDir: Blind Fate Edo no Yami launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Yami.exe type: default nameLocalized: - schinese: '盲目命运:江户之夜 / Blind Fate: Edo No Yami' -'1294970': + schinese: "盲目命运:江户之夜 / Blind Fate: Edo No Yami" +"1294970": installDir: Undead Darlings launch: - config: @@ -80355,98 +79140,94 @@ oslist: linux executable: UndeadDarlings.x86_64 type: none -'1295270': +"1295270": installDir: SaGa Frontier Remastered launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SaGa Frontier Remastered.exe type: none nameLocalized: japanese: サガ フロンティア リマスター -'1295500': +"1295500": installDir: Warhammer 40000 Battlesector launch: - config: betakey: default devtest battlesectorgw blacklabtest devtest2 preview battlesectorbeta - osarch: '64' + osarch: "64" oslist: windows description: Launcher - description_loc: - english: Launcher executable: Launcher.exe type: default - config: betakey: blacklabtest - osarch: '64' + osarch: "64" oslist: windows description: Launch Game - description_loc: - english: Launch Game executable: Warhammer 40K Battlesector.exe type: none -'1295510': +"1295510": installDir: DRAGON QUEST XI S launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: shipping build - executable: Game\\Binaries\\Win64\\DRAGON QUEST XI S.exe + executable: "Game\\\\Binaries\\\\Win64\\\\DRAGON QUEST XI S.exe" type: none - - arguments: '-culture=ja' + - arguments: "-culture=ja" config: betakey: autouploadwithdebug_j - osarch: '64' + osarch: "64" oslist: windows description: Test build (Debug mode enabled) - executable: Game\\Binaries\\Win64\\DRAGON QUEST XI S (Test).exe + executable: "Game\\\\Binaries\\\\Win64\\\\DRAGON QUEST XI S (Test).exe" type: none - - arguments: '-culture=ja' + - arguments: "-culture=ja" config: betakey: autouploadwithdebug_j - osarch: '64' + osarch: "64" oslist: windows description: Shipping build (No Denuvo) - executable: Game\\Binaries\\Win64\\DRAGON QUEST XI S (No Denuvo).exe + executable: "Game\\\\Binaries\\\\Win64\\\\DRAGON QUEST XI S (No Denuvo).exe" type: none - config: betakey: autouploadwithdebug_ww - osarch: '64' + osarch: "64" oslist: windows description: Test build (Debug mode enabled) - executable: Game\\Binaries\\Win64\\DRAGON QUEST XI S (Test).exe + executable: "Game\\\\Binaries\\\\Win64\\\\DRAGON QUEST XI S (Test).exe" type: none - config: betakey: autouploadwithdebug_ww - osarch: '64' + osarch: "64" oslist: windows description: Shipping build (No Denuvo) - executable: Game\\Binaries\\Win64\\DRAGON QUEST XI S (No Denuvo).exe + executable: "Game\\\\Binaries\\\\Win64\\\\DRAGON QUEST XI S (No Denuvo).exe" type: none nameLocalized: - french: 'DRAGON QUEST XI S : Les Combattants de la destinée – Édition ultime' - german: 'DRAGON QUEST XI S: Streiter des Schicksals – Definitive Edition' - italian: 'DRAGON QUEST XI S: Echi di un''era perduta – Edizione definitiva' + french: "DRAGON QUEST XI S : Les Combattants de la destinée – Édition ultime" + german: "DRAGON QUEST XI S: Streiter des Schicksals – Definitive Edition" + italian: "DRAGON QUEST XI S: Echi di un'era perduta – Edizione definitiva" japanese: ドラゴンクエストXI 過ぎ去りし時を求めて S koreana: 드래곤 퀘스트 XI S 지나간 시간을 찾아서 - Definitive Edition schinese: 勇者斗恶龙XI S 寻觅逝去的时光 - Definitive Edition - spanish: 'DRAGON QUEST XI S: Ecos de un pasado perdido – Edición definitiva' + spanish: "DRAGON QUEST XI S: Ecos de un pasado perdido – Edición definitiva" tchinese: 勇者鬥惡龍XI S 尋覓逝去的時光 - Definitive Edition -'1295790': +"1295790": installDir: The Longest Road on Earth launch: - executable: The Longest Road on Earth.exe type: default -'1295920': +"1295920": installDir: The Mortuary Assistant launch: - config: oslist: windows executable: The Mortuary Assistant.exe type: default -'1296260': +"1296260": installDir: Sakura Knight 2 launch: - config: @@ -80461,37 +79242,37 @@ oslist: linux executable: SakuraKnight2.sh type: default -'1296360': +"1296360": installDir: Archvale launch: - config: oslist: windows executable: Archvale.exe type: none -'1296430': +"1296430": installDir: SaboteurSiO launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SaboteurSiO.exe type: default -'1296510': +"1296510": installDir: Dread X Collection launch: - - arguments: '-screen-fullscreen 1' + - arguments: "-screen-fullscreen 1" config: oslist: windows description: Fullscreen Mode executable: Dread X Collection.exe type: option1 - - arguments: '-screen-fullscreen 0' + - arguments: "-screen-fullscreen 0" config: oslist: windows description: Windowed Mode executable: Dread X Collection.exe type: option2 -'1296610': +"1296610": installDir: Peglin launch: - config: @@ -80505,187 +79286,163 @@ nameLocalized: schinese: 哥布林弹球 Peglin tchinese: 柏青哥布林 Peglin -'1296980': +"1296980": installDir: Forgotten Fields launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch - description_loc: - english: Launch executable: Forgotten Fields.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch - description_loc: - english: Launch executable: Forgotten Fields.exe type: default - config: oslist: macos description: Launch - description_loc: - english: Launch - executable: Forgotten Fields.app\\Contents\\MacOS\\Forgotten Fields + executable: "Forgotten Fields.app\\\\Contents\\\\MacOS\\\\Forgotten Fields" type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch - description_loc: - english: Launch executable: Forgotten Fields.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch - description_loc: - english: Launch executable: Forgotten Fields.x86 type: default -'1297300': +"1297300": installDir: TheShore launch: - - arguments: '-nohmd' + - arguments: "-nohmd" config: oslist: windows executable: TheShore.exe type: default -'1297330': +"1297330": installDir: Olija launch: - config: oslist: windows executable: Olija.exe type: default -'1297430': +"1297430": installDir: Deadly Dozen Reloaded launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: DeadlyDozenReloaded.exe type: default -'1297550': +"1297550": installDir: TKO launch: - - arguments: '-noconsole -conf fullscreen.conf -conf dosbox.conf -conf launch.conf -exit' + - arguments: "-noconsole -conf fullscreen.conf -conf dosbox.conf -conf launch.conf -exit" config: oslist: windows description: full screen - description_loc: - english: full screen - executable: DOSBox\\dosbox.exe + executable: "DOSBox\\\\dosbox.exe" type: option1 - workingdir: DOSBox\\Configuration - - arguments: '-noconsole -conf 320x200.conf -conf dosbox.conf -conf launch.conf -exit' + workingdir: "DOSBox\\\\Configuration" + - arguments: "-noconsole -conf 320x200.conf -conf dosbox.conf -conf launch.conf -exit" config: oslist: windows description: windowed 320x200 - description_loc: - english: windowed 320x200 - executable: DOSBox\\dosbox.exe + executable: "DOSBox\\\\dosbox.exe" type: option1 - workingdir: DOSBox\\Configuration - - arguments: '-noconsole -conf 640x400.conf -conf dosbox.conf -conf launch.conf -exit' + workingdir: "DOSBox\\\\Configuration" + - arguments: "-noconsole -conf 640x400.conf -conf dosbox.conf -conf launch.conf -exit" config: oslist: windows description: windowed 640x400 - description_loc: - english: windowed 640x400 - executable: DOSBox\\dosbox.exe + executable: "DOSBox\\\\dosbox.exe" type: option1 - workingdir: DOSBox\\Configuration - - arguments: '-noconsole -conf 1280x800.conf -conf dosbox.conf -conf launch.conf -exit' + workingdir: "DOSBox\\\\Configuration" + - arguments: "-noconsole -conf 1280x800.conf -conf dosbox.conf -conf launch.conf -exit" config: oslist: windows description: windowed 1280x800 - description_loc: - english: windowed 1280x800 - executable: DOSBox\\dosbox.exe + executable: "DOSBox\\\\dosbox.exe" type: option1 - workingdir: DOSBox\\Configuration - - arguments: '-noconsole -conf 2560x1600.conf -conf dosbox.conf -conf launch.conf -exit' + workingdir: "DOSBox\\\\Configuration" + - arguments: "-noconsole -conf 2560x1600.conf -conf dosbox.conf -conf launch.conf -exit" config: oslist: windows description: windowed 2560x1600 - description_loc: - english: windowed 2560x1600 - executable: DOSBox\\dosbox.exe + executable: "DOSBox\\\\dosbox.exe" type: option1 - workingdir: DOSBox\\Configuration -'1297560': + workingdir: "DOSBox\\\\Configuration" +"1297560": installDir: Timequest launch: - - arguments: '-conf dosbox_w_1280x960.conf -conf dosbox_auto_launch.conf -noconsole -exit' + - arguments: "-conf dosbox_w_1280x960.conf -conf dosbox_auto_launch.conf -noconsole -exit" config: oslist: windows description: windowed 1280x960 - executable: dosbox_windows\\DOSBox.exe + executable: "dosbox_windows\\\\DOSBox.exe" type: option1 - workingdir: dosbox_windows\\ - - arguments: '-conf dosbox_w_320x240.conf -conf dosbox_auto_launch.conf -noconsole -exit' + workingdir: "dosbox_windows\\\\" + - arguments: "-conf dosbox_w_320x240.conf -conf dosbox_auto_launch.conf -noconsole -exit" config: oslist: windows description: windowed 320x240 - executable: dosbox_windows\\DOSBox.exe + executable: "dosbox_windows\\\\DOSBox.exe" type: option1 - workingdir: dosbox_windows\\ - - arguments: '-conf dosbox_w_640x480.conf -conf dosbox_auto_launch.conf -noconsole -exit' + workingdir: "dosbox_windows\\\\" + - arguments: "-conf dosbox_w_640x480.conf -conf dosbox_auto_launch.conf -noconsole -exit" config: oslist: windows description: windowed 640x480 - executable: dosbox_windows\\DOSBox.exe + executable: "dosbox_windows\\\\DOSBox.exe" type: option1 - workingdir: dosbox_windows\\ - - arguments: '-conf dosbox_w_2560x1920.conf -conf dosbox_auto_launch.conf -noconsole -exit' + workingdir: "dosbox_windows\\\\" + - arguments: "-conf dosbox_w_2560x1920.conf -conf dosbox_auto_launch.conf -noconsole -exit" config: oslist: windows description: windowed 2560x1920 - executable: dosbox_windows\\DOSBox.exe + executable: "dosbox_windows\\\\DOSBox.exe" type: option1 - workingdir: dosbox_windows\\ - - arguments: '-conf dosbox_fs.conf -conf dosbox_auto_launch.conf -noconsole -exit' + workingdir: "dosbox_windows\\\\" + - arguments: "-conf dosbox_fs.conf -conf dosbox_auto_launch.conf -noconsole -exit" config: oslist: windows description: full screen - executable: dosbox_windows\\DOSBox.exe + executable: "dosbox_windows\\\\DOSBox.exe" type: option1 - workingdir: dosbox_windows\\ -'1297570': {} -'1297900': {} -'1298140': + workingdir: "dosbox_windows\\\\" +"1297570": {} +"1297900": {} +"1298140": installDir: FobiaStDinfnaHotel launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: DirectX 11 - description_loc: - english: DirectX 11 executable: Fobia.exe type: default - - arguments: '-dx12' + - arguments: "-dx12" config: - osarch: '64' + osarch: "64" oslist: windows description: DirectX 12 (Raytracing) - description_loc: - english: DirectX 12 (Raytracing) executable: Fobia.exe -'1298480': +"1298480": installDir: Kardboard Kings launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: /Kardboard Kings/Kardboard Kings.exe type: default -'1299320': +"1299320": installDir: Midnight Castle Succubus launch: - description: NSFW Version @@ -80696,19 +79453,17 @@ type: option2 nameLocalized: schinese: 午夜淫魔城 -'1299360': +"1299360": installDir: Mighty Goose launch: - config: oslist: windows description: Launch the game - description_loc: - english: Launch the game executable: Mighty Goose.exe type: default - config: oslist: macos - executable: Mighty Goose.app\\Contents\\MacOS\\Chowdren + executable: "Mighty Goose.app\\\\Contents\\\\MacOS\\\\Chowdren" type: default - config: oslist: linux @@ -80718,168 +79473,166 @@ japanese: マイティ・グース schinese: 暴走大鹅 tchinese: 暴走大鹅 -'1299480': +"1299480": installDir: The Fabled Woods launch: - config: oslist: windows executable: TheFabledWoods.exe type: default - - arguments: '-d3d11' + - arguments: "-d3d11" config: oslist: windows description: Launch with DirectX 11 - description_loc: - english: Launch with DirectX 11 executable: TheFabledWoods.exe type: option1 -'1299510': +"1299510": installDir: VTMS launch: - - arguments: '-SaveToUserDir' + - arguments: "-SaveToUserDir" config: - osarch: '64' + osarch: "64" oslist: windows executable: Swansong.exe -'1299710': +"1299710": installDir: Return of the Phantom launch: - - arguments: '-conf dosbox_w_1280x960.conf -conf dosbox_auto_launch.conf -noconsole -exit' + - arguments: "-conf dosbox_w_1280x960.conf -conf dosbox_auto_launch.conf -noconsole -exit" config: oslist: windows description: windowed 1280x960 - executable: dosbox_windows\\DOSBox.exe + executable: "dosbox_windows\\\\DOSBox.exe" type: option1 - workingdir: dosbox_windows\\ - - arguments: '-conf dosbox_w_320x240.conf -conf dosbox_auto_launch.conf -noconsole -exit' + workingdir: "dosbox_windows\\\\" + - arguments: "-conf dosbox_w_320x240.conf -conf dosbox_auto_launch.conf -noconsole -exit" config: oslist: windows description: windowed 320x240 - executable: dosbox_windows\\DOSBox.exe + executable: "dosbox_windows\\\\DOSBox.exe" type: option1 - workingdir: dosbox_windows\\ - - arguments: '-conf dosbox_w_640x480.conf -conf dosbox_auto_launch.conf -noconsole -exit' + workingdir: "dosbox_windows\\\\" + - arguments: "-conf dosbox_w_640x480.conf -conf dosbox_auto_launch.conf -noconsole -exit" config: oslist: windows description: windowed 640x480 - executable: dosbox_windows\\DOSBox.exe + executable: "dosbox_windows\\\\DOSBox.exe" type: option1 - workingdir: dosbox_windows\\ - - arguments: '-conf dosbox_w_2560x1920.conf -conf dosbox_auto_launch.conf -noconsole -exit' + workingdir: "dosbox_windows\\\\" + - arguments: "-conf dosbox_w_2560x1920.conf -conf dosbox_auto_launch.conf -noconsole -exit" config: oslist: windows description: windowed 2560x1920 - executable: dosbox_windows\\DOSBox.exe + executable: "dosbox_windows\\\\DOSBox.exe" type: option1 - workingdir: dosbox_windows\\ - - arguments: '-conf dosbox_fs.conf -conf dosbox_auto_launch.conf -noconsole -exit' + workingdir: "dosbox_windows\\\\" + - arguments: "-conf dosbox_fs.conf -conf dosbox_auto_launch.conf -noconsole -exit" config: oslist: windows description: full screen - executable: dosbox_windows\\DOSBox.exe + executable: "dosbox_windows\\\\DOSBox.exe" type: option1 - workingdir: dosbox_windows\\ -'1299720': + workingdir: "dosbox_windows\\\\" +"1299720": installDir: Les Manley in Search for the King launch: - - arguments: '-conf dosbox_w_1280x960.conf -conf dosbox_auto_launch.conf -noconsole -exit' + - arguments: "-conf dosbox_w_1280x960.conf -conf dosbox_auto_launch.conf -noconsole -exit" config: oslist: windows description: windowed 1280x960 - executable: dosbox_windows\\DOSBox.exe + executable: "dosbox_windows\\\\DOSBox.exe" type: option1 - workingdir: dosbox_windows\\ - - arguments: '-conf dosbox_w_320x240.conf -conf dosbox_auto_launch.conf -noconsole -exit' + workingdir: "dosbox_windows\\\\" + - arguments: "-conf dosbox_w_320x240.conf -conf dosbox_auto_launch.conf -noconsole -exit" config: oslist: windows description: windowed 320x240 - executable: dosbox_windows\\DOSBox.exe + executable: "dosbox_windows\\\\DOSBox.exe" type: option1 - workingdir: dosbox_windows\\ - - arguments: '-conf dosbox_w_640x480.conf -conf dosbox_auto_launch.conf -noconsole -exit' + workingdir: "dosbox_windows\\\\" + - arguments: "-conf dosbox_w_640x480.conf -conf dosbox_auto_launch.conf -noconsole -exit" config: oslist: windows description: windowed 640x480 - executable: dosbox_windows\\DOSBox.exe + executable: "dosbox_windows\\\\DOSBox.exe" type: option1 - workingdir: dosbox_windows\\ - - arguments: '-conf dosbox_w_2560x1920.conf -conf dosbox_auto_launch.conf -noconsole -exit' + workingdir: "dosbox_windows\\\\" + - arguments: "-conf dosbox_w_2560x1920.conf -conf dosbox_auto_launch.conf -noconsole -exit" config: oslist: windows description: windowed 2560x1920 - executable: dosbox_windows\\DOSBox.exe + executable: "dosbox_windows\\\\DOSBox.exe" type: option1 - workingdir: dosbox_windows\\ - - arguments: '-conf dosbox_fs.conf -conf dosbox_auto_launch.conf -noconsole -exit' + workingdir: "dosbox_windows\\\\" + - arguments: "-conf dosbox_fs.conf -conf dosbox_auto_launch.conf -noconsole -exit" config: oslist: windows description: full screen - executable: dosbox_windows\\DOSBox.exe + executable: "dosbox_windows\\\\DOSBox.exe" type: option1 - workingdir: dosbox_windows\\ -'1299730': + workingdir: "dosbox_windows\\\\" +"1299730": installDir: Les Manley in Lost in LA launch: - - arguments: '-conf dosbox_w_1280x960.conf -conf dosbox_auto_launch.conf -noconsole -exit' + - arguments: "-conf dosbox_w_1280x960.conf -conf dosbox_auto_launch.conf -noconsole -exit" config: oslist: windows description: windowed 1280x960 - executable: dosbox_windows\\DOSBox.exe + executable: "dosbox_windows\\\\DOSBox.exe" type: option1 - workingdir: dosbox_windows\\ - - arguments: '-conf dosbox_w_320x240.conf -conf dosbox_auto_launch.conf -noconsole -exit' + workingdir: "dosbox_windows\\\\" + - arguments: "-conf dosbox_w_320x240.conf -conf dosbox_auto_launch.conf -noconsole -exit" config: oslist: windows description: windowed 320x240 - executable: dosbox_windows\\DOSBox.exe + executable: "dosbox_windows\\\\DOSBox.exe" type: option1 - workingdir: dosbox_windows\\ - - arguments: '-conf dosbox_w_640x480.conf -conf dosbox_auto_launch.conf -noconsole -exit' + workingdir: "dosbox_windows\\\\" + - arguments: "-conf dosbox_w_640x480.conf -conf dosbox_auto_launch.conf -noconsole -exit" config: oslist: windows description: windowed 640x480 - executable: dosbox_windows\\DOSBox.exe + executable: "dosbox_windows\\\\DOSBox.exe" type: option1 - workingdir: dosbox_windows\\ - - arguments: '-conf dosbox_w_2560x1920.conf -conf dosbox_auto_launch.conf -noconsole -exit' + workingdir: "dosbox_windows\\\\" + - arguments: "-conf dosbox_w_2560x1920.conf -conf dosbox_auto_launch.conf -noconsole -exit" config: oslist: windows description: windowed 2560x1920 - executable: dosbox_windows\\DOSBox.exe + executable: "dosbox_windows\\\\DOSBox.exe" type: option1 - workingdir: dosbox_windows\\ - - arguments: '-conf dosbox_fs.conf -conf dosbox_auto_launch.conf -noconsole -exit' + workingdir: "dosbox_windows\\\\" + - arguments: "-conf dosbox_fs.conf -conf dosbox_auto_launch.conf -noconsole -exit" config: oslist: windows description: full screen - executable: dosbox_windows\\DOSBox.exe + executable: "dosbox_windows\\\\DOSBox.exe" type: option1 - workingdir: dosbox_windows\\ -'130': + workingdir: "dosbox_windows\\\\" +"130": installDir: Half-Life launch: - - arguments: '-game bshift -steam' + - arguments: "-game bshift -steam" config: oslist: windows executable: hl.exe - - arguments: '-steam -game bshift' + - arguments: "-steam -game bshift" config: oslist: macos executable: hl.sh - - arguments: '-steam -game bshift' + - arguments: "-steam -game bshift" config: oslist: linux executable: hl.sh -'1300': +"1300": installDir: SiN Episodes Emergence launch: - executable: SinEpisodes.exe -'13000': +"13000": installDir: Ninja Reflex launch: - description: Ninja Reflex executable: NinjaReflex.exe -'1300100': +"1300100": installDir: Spectacular Sparky launch: - config: @@ -80890,7 +79643,7 @@ oslist: macos executable: Spectacular Sparky.app/Contents/MacOS/Spectacular Sparky type: none -'1300600': +"1300600": installDir: Blind Drive launch: - config: @@ -80901,52 +79654,48 @@ oslist: macos executable: Blind Drive.app/Contents/MacOS/Blind Drive type: default -'1300700': +"1300700": installDir: Kingdom Wars 4 launch: - - arguments: '-dev86' + - arguments: "-dev86" config: oslist: windows description: Launch executable: PKW.exe type: none -'1301010': +"1301010": installDir: World Racing 2 launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: World Racing 2 (64-bit) - description_loc: - english: World Racing 2 (64-bit) - executable: x64\\WR2_PC.exe + executable: "x64\\\\WR2_PC.exe" type: option1 - config: oslist: windows description: World Racing 2 (32-bit) - description_loc: - english: World Racing 2 (32-bit) executable: WR2_PC.exe type: option2 - config: oslist: windows executable: WR2_Setup.exe type: config -'1301210': +"1301210": installDir: Knockout City launch: - executable: Launch_Game.exe nameLocalized: schinese: 球胜大本营 tchinese: 《躲避球特攻隊》 -'1301230': +"1301230": installDir: Astro Dogs launch: - config: oslist: windows executable: astrodogs.exe type: none -'1301620': +"1301620": installDir: Cross Princess launch: - executable: CrossPrincess.exe @@ -80954,7 +79703,7 @@ nameLocalized: schinese: 女装少年短发妹 tchinese: 女裝少年短髮妹 -'1301720': +"1301720": installDir: Escape Room - The Sick Colleague launch: - config: @@ -80963,12 +79712,12 @@ type: default nameLocalized: german: Escape Room - Der kranke Kollege -'1301950': +"1301950": installDir: Time Loader launch: - executable: Time Loader.exe type: default -'1302050': +"1302050": installDir: Milky Way Prince – The Vampire Star launch: - config: @@ -80977,17 +79726,17 @@ type: default - config: oslist: macos - executable: MWP.app\\Contents\\MacOS\\MWP_MacOs_Current + executable: "MWP.app\\\\Contents\\\\MacOS\\\\MWP_MacOs_Current" type: default -'1302230': +"1302230": installDir: Dead Containment launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: DeadContainment.exe type: default -'1303050': +"1303050": installDir: Ruggnar launch: - config: @@ -80996,23 +79745,23 @@ type: none nameLocalized: schinese: 鲁格纳寻宝记 -'1303110': +"1303110": nameLocalized: japanese: 日本の女の子 -'1303510': {} -'1303950': +"1303510": {} +"1303950": installDir: Toodee and Topdee launch: - config: oslist: windows executable: ToodeeAndTopdee.exe type: none -'1304340': +"1304340": installDir: Monster Energy Supercross - The Official Videogame 4 launch: - executable: supercross4.exe type: none -'1304400': +"1304400": installDir: The End of Dyeus launch: - config: @@ -81023,51 +79772,51 @@ oslist: linux executable: dyeus type: none -'1304510': +"1304510": installDir: SCP Nine-Tailed Fox launch: - config: oslist: windows executable: SCP Nine-Tailed Fox.exe type: default -'1304580': +"1304580": installDir: BTGGFS launch: - config: oslist: windows executable: game.exe type: default -'1304680': +"1304680": installDir: Voidigo launch: - config: oslist: windows executable: voidigo.exe type: default -'1304770': +"1304770": installDir: The Magister launch: - executable: The Magister.exe type: default -'1304780': +"1304780": installDir: Non Gunz Doppelganger Edition launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Nongünz.exe type: none - config: - osarch: '32' + osarch: "32" oslist: windows executable: Nongünz.exe type: none -'1304930': +"1304930": installDir: The Outlast Trials launch: - executable: TOTClient.exe type: default -'1305310': +"1305310": installDir: Drox Operative 2 launch: - config: @@ -81080,7 +79829,7 @@ description: Launch executable: DroxOperative2 type: default -'1305450': +"1305450": installDir: 16BitvsReality launch: - config: @@ -81088,24 +79837,24 @@ oslist: windows executable: 16bvsr.exe type: default -'1305720': +"1305720": installDir: Delores launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Delores.exe type: none - config: oslist: macos - executable: Delores.app\\Contents\\MacOS\\Delores + executable: "Delores.app\\\\Contents\\\\MacOS\\\\Delores" type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: Delores type: none -'1306180': +"1306180": installDir: Retrocycles launch: - config: @@ -81113,7 +79862,7 @@ executable: Retrocycles.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Retrocycles type: default @@ -81121,27 +79870,27 @@ oslist: macos executable: Retrocycles.app type: default -'1306570': +"1306570": installDir: Fadeout Underground launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Grapple.exe type: default - - arguments: '-dx 10' + - arguments: "-dx 10" config: - osarch: '64' + osarch: "64" oslist: windows description: with DirectX 10 executable: Grapple.exe type: option2 - config: - osarch: '64' + osarch: "64" oslist: linux executable: Grapple.sh type: default -'1306630': +"1306630": installDir: LostRuins launch: - config: @@ -81149,7 +79898,7 @@ executable: LostRuins.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: LostRuins.x86_64 type: default @@ -81159,11 +79908,11 @@ type: default nameLocalized: japanese: ロスト・ルーインズ -'1307550': +"1307550": installDir: Craftopia launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Craftopia.exe type: default @@ -81172,7 +79921,7 @@ japanese: Craftopia / クラフトピア schinese: Craftopia / 创世理想乡 tchinese: Craftopia / 始世樂土 -'1307580': +"1307580": installDir: TOEM launch: - config: @@ -81185,14 +79934,14 @@ type: none nameLocalized: japanese: TOEM(トーエム) -'1307640': +"1307640": installDir: Choco Pixel 5 launch: - config: oslist: windows executable: Choco Pixel 5.exe type: default -'1307690': +"1307690": installDir: The Darkest Tales launch: - config: @@ -81201,61 +79950,61 @@ type: none nameLocalized: schinese: 最暗黑的故事 / The Darkest Tales -'1307710': +"1307710": installDir: GRID Legends launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: GridLegends.exe type: default - config: - betakey: 'domesticated_qa_branch_a, domesticated_qa_branch_b' + betakey: "domesticated_qa_branch_a, domesticated_qa_branch_b" oslist: macos executable: GRIDLegends.app type: default -'1307850': +"1307850": installDir: Simple Machines launch: - executable: Simple Machines.exe type: default -'1307870': +"1307870": installDir: Sensorium launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Sensorium.exe type: default -'1307890': +"1307890": installDir: Kingdoms Reborn launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: KingdomsReborn.exe type: default nameLocalized: schinese: Kingdoms Reborn 王国重生 -'1308380': +"1308380": installDir: Super Bomberman R Online launch: - config: oslist: windows executable: SuperBombermanR_Online.exe type: default -'1308700': +"1308700": installDir: Wizardry The Five Ordeals launch: - executable: WizardryFoV2.exe type: default nameLocalized: japanese: Wizardry外伝 五つの試練 -'1308760': +"1308760": installDir: Mesmer launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Mesmer.exe type: default @@ -81264,52 +80013,52 @@ executable: Mesmer.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Mesmer.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Mesmer.x86 type: none -'1308880': +"1308880": installDir: FORECLOSED launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Foreclosed.exe type: default -'1309080': +"1309080": installDir: Infinite Guitars launch: - config: oslist: windows executable: Infinite Guitars.exe type: default -'1309610': +"1309610": installDir: Line War launch: - config: oslist: windows executable: LineWarClient.exe type: none -'1309820': +"1309820": installDir: Remains launch: - executable: Remains.exe type: none -'1310330': +"1310330": installDir: Goodbye Volcano High launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Goodbye Volcano High.exe type: default -'1310410': {} -'1311070': +"1310410": {} +"1311070": installDir: Greak Memories of Azur launch: - config: @@ -81318,15 +80067,15 @@ type: none nameLocalized: schinese: 格雷克大冒险:阿祖尔的回忆 -'1311510': +"1311510": installDir: Embracelet launch: - config: oslist: windows executable: Embracelet.exe type: default -'1312660': {} -'1312960': +"1312660": {} +"1312960": installDir: Epic Chef launch: - config: @@ -81335,7 +80084,7 @@ type: none nameLocalized: schinese: 特级厨师 -'1313': +"1313": installDir: SiN 1 launch: - config: @@ -81359,7 +80108,7 @@ description: SiNED Editor executable: sdk/sintools/bin/sined.exe type: editor -'1313140': +"1313140": installDir: Cult of the Lamb launch: - config: @@ -81373,30 +80122,30 @@ nameLocalized: schinese: 咩咩启示录 tchinese: 進擊羔羊傳說 -'1313860': +"1313860": installDir: FIFA 21 launch: - - executable: 'link2ea://launchgame/1313860?platform=steam&theme=fifa21' + - executable: "link2ea://launchgame/1313860?platform=steam&theme=fifa21" type: none -'13140': - installDir: america's army 3 +"13140": + installDir: "america's army 3" launch: - - executable: Binaries\\AA3Loader.exe + - executable: "Binaries\\\\AA3Loader.exe" workingdir: Binaries -'1314460': +"1314460": installDir: Wick launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: FlickerOfHope.exe type: default - config: oslist: macos - executable: FlickerOfHope.app\\Contents\\MacOS\\FlickerOfHope + executable: "FlickerOfHope.app\\\\Contents\\\\MacOS\\\\FlickerOfHope" type: default -'1315200': +"1315200": installDir: KUF Heroes launch: - config: @@ -81404,8 +80153,8 @@ executable: HeroesLauncher.exe type: none nameLocalized: - koreana: '킹덤언더파이어: 히어로즈' -'1315610': + koreana: "킹덤언더파이어: 히어로즈" +"1315610": installDir: Source of Madness launch: - config: @@ -81414,143 +80163,137 @@ type: default - config: oslist: macos - executable: MAC BUILD.app\\Contents\\MacOS\\Source of Madness + executable: "MAC BUILD.app\\\\Contents\\\\MacOS\\\\Source of Madness" type: default - config: oslist: linux executable: Source of Madness.x86_64 type: none -'1315680': +"1315680": installDir: Men Bang launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: menbang.exe type: none - config: oslist: macos executable: Menbang.app -'1315910': - installDir: Bop'n Wrestle +"1315910": + installDir: "Bop'n Wrestle" launch: - - arguments: '-conf dosbox_fs.conf -conf dosbox_auto_launch.conf -noconsole -exit' + - arguments: "-conf dosbox_fs.conf -conf dosbox_auto_launch.conf -noconsole -exit" config: oslist: windows description: full screen - executable: dosbox_windows\\DOSBox.exe + executable: "dosbox_windows\\\\DOSBox.exe" type: option1 - workingdir: dosbox_windows\\ - - arguments: '-conf dosbox_w_320x200.conf -conf dosbox_auto_launch.conf -noconsole -exit' + workingdir: "dosbox_windows\\\\" + - arguments: "-conf dosbox_w_320x200.conf -conf dosbox_auto_launch.conf -noconsole -exit" config: oslist: windows description: windowed 320x200 - executable: dosbox_windows\\DOSBox.exe + executable: "dosbox_windows\\\\DOSBox.exe" type: option1 - workingdir: dosbox_windows\\ - - arguments: '-conf dosbox_w_640x400.conf -conf dosbox_auto_launch.conf -noconsole -exit' + workingdir: "dosbox_windows\\\\" + - arguments: "-conf dosbox_w_640x400.conf -conf dosbox_auto_launch.conf -noconsole -exit" config: oslist: windows description: windowed 640x400 - executable: dosbox_windows\\DOSBox.exe + executable: "dosbox_windows\\\\DOSBox.exe" type: option1 - workingdir: dosbox_windows\\ - - arguments: '-conf dosbox_w_1280x800.conf -conf dosbox_auto_launch.conf -noconsole -exit' + workingdir: "dosbox_windows\\\\" + - arguments: "-conf dosbox_w_1280x800.conf -conf dosbox_auto_launch.conf -noconsole -exit" config: oslist: windows description: windowed 1280x800 - executable: dosbox_windows\\DOSBox.exe + executable: "dosbox_windows\\\\DOSBox.exe" type: option1 - workingdir: dosbox_windows\\ - - arguments: '-conf dosbox_w_2560x1600.conf -conf dosbox_auto_launch.conf -noconsole -exit' + workingdir: "dosbox_windows\\\\" + - arguments: "-conf dosbox_w_2560x1600.conf -conf dosbox_auto_launch.conf -noconsole -exit" config: oslist: windows description: windowed 2560x1600 - executable: dosbox_windows\\DOSBox.exe + executable: "dosbox_windows\\\\DOSBox.exe" type: option1 - workingdir: dosbox_windows\\ -'1315920': + workingdir: "dosbox_windows\\\\" +"1315920": installDir: The Train Escape to Normandy launch: - - arguments: '-conf dosbox_w_1280x960.conf -conf dosbox_auto_launch.conf -noconsole -exit' + - arguments: "-conf dosbox_w_1280x960.conf -conf dosbox_auto_launch.conf -noconsole -exit" config: oslist: windows description: windowed 1280x960 - executable: dosbox_windows\\DOSBox.exe + executable: "dosbox_windows\\\\DOSBox.exe" type: option1 - workingdir: dosbox_windows\\ - - arguments: '-conf dosbox_w_640x480.conf -conf dosbox_auto_launch.conf -noconsole -exit' + workingdir: "dosbox_windows\\\\" + - arguments: "-conf dosbox_w_640x480.conf -conf dosbox_auto_launch.conf -noconsole -exit" config: oslist: windows description: windowed 640x480 - executable: dosbox_windows\\DOSBox.exe + executable: "dosbox_windows\\\\DOSBox.exe" type: option1 - workingdir: dosbox_windows\\ - - arguments: '-conf dosbox_w_320x240.conf -conf dosbox_auto_launch.conf -noconsole -exit' + workingdir: "dosbox_windows\\\\" + - arguments: "-conf dosbox_w_320x240.conf -conf dosbox_auto_launch.conf -noconsole -exit" config: oslist: windows description: windowed 320x240 - executable: dosbox_windows\\DOSBox.exe + executable: "dosbox_windows\\\\DOSBox.exe" type: option1 - workingdir: dosbox_windows\\ - - arguments: '-conf dosbox_w_2560x1920.conf -conf dosbox_auto_launch.conf -noconsole -exit' + workingdir: "dosbox_windows\\\\" + - arguments: "-conf dosbox_w_2560x1920.conf -conf dosbox_auto_launch.conf -noconsole -exit" config: oslist: windows description: windowed 2560x1920 - executable: dosbox_windows\\DOSBox.exe + executable: "dosbox_windows\\\\DOSBox.exe" type: option1 - workingdir: dosbox_windows\\ - - arguments: '-conf dosbox_fs.conf -conf dosbox_auto_launch.conf -noconsole -exit' + workingdir: "dosbox_windows\\\\" + - arguments: "-conf dosbox_fs.conf -conf dosbox_auto_launch.conf -noconsole -exit" config: oslist: windows description: full screen - executable: dosbox_windows\\DOSBox.exe + executable: "dosbox_windows\\\\DOSBox.exe" type: option1 - workingdir: dosbox_windows\\ -'1315980': + workingdir: "dosbox_windows\\\\" +"1315980": installDir: Tin Can launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Tin Can Classic - description_loc: - english: Tin Can Classic - executable: Tin Can Main\\Tin Can\\Tin Can.exe + executable: "Tin Can Main\\\\Tin Can\\\\Tin Can.exe" type: default - config: - osarch: '64' + osarch: "64" oslist: windows description: VR Mode Beta (WIP) - description_loc: - english: VR Mode Beta (WIP) - executable: Tin Can Main\\Tin Can VR\\Tin Can VR.exe + executable: "Tin Can Main\\\\Tin Can VR\\\\Tin Can VR.exe" type: vr nameLocalized: schinese: 罐舱逃生指南 Tin Can -'1316230': +"1316230": installDir: Force of Nature 2 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ForceOfNature.exe type: default -'1316870': +"1316870": installDir: Primordials Battle of Gods launch: - config: oslist: windows - description: 'Launch Primordials: Battle Of Gods' - description_loc: - english: 'Launch Primordials: Battle Of Gods' + description: "Launch Primordials: Battle Of Gods" executable: Primordials Battle of Gods.exe type: default -'1316910': +"1316910": installDir: smbbm launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: smbbm.exe type: default @@ -81559,30 +80302,30 @@ koreana: 퍼펙트! 슈퍼 몽키 볼 1&2 리메이크 schinese: 现尝好滋味!超级猴子球1&2重制版 tchinese: 現嚐好滋味!超級猴子球 1&2 重製版 -'1317020': +"1317020": installDir: 77p egg Eggwife launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: eggwife.exe type: default -'1318690': +"1318690": installDir: shapez.io launch: - - arguments: '--disable-direct-composition --in-process-gpu' + - arguments: "--disable-direct-composition --in-process-gpu" config: - osarch: '64' + osarch: "64" oslist: windows executable: shapezio.exe type: default - - arguments: '--disable-direct-composition --in-process-gpu' + - arguments: "--disable-direct-composition --in-process-gpu" config: - osarch: '64' + osarch: "64" oslist: linux executable: play.sh type: default - - arguments: '--disable-direct-composition --in-process-gpu' + - arguments: "--disable-direct-composition --in-process-gpu" config: oslist: macos executable: shapez.io-standalone.app/Contents/MacOS/shapezio @@ -81590,11 +80333,11 @@ workingdir: shapez.io-standalone.app/Contents/MacOS nameLocalized: schinese: 异形工厂(Shapez.io) -'1318740': +"1318740": installDir: Farlanders launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Farlanders.exe type: default @@ -81603,61 +80346,61 @@ executable: farlanders-macos.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: farlanders.x86_64 type: default -'1318750': +"1318750": installDir: 18 Wheels of Steel Hard Truck launch: - executable: Hard Truck 18 Wheels of Steel.exe type: none -'1319420': +"1319420": installDir: Chasing Static launch: - executable: Chasing Static.exe type: default -'1319460': +"1319460": installDir: Fashion Police Squad launch: - config: oslist: windows executable: Fashion Police Squad.exe type: default -'13200': +"13200": installDir: Unreal II The Awakening launch: - - executable: system\\Unreal2.exe + - executable: "system\\\\Unreal2.exe" workingdir: system -'1320110': +"1320110": installDir: Adventure2 launch: - executable: The Adventurer.exe type: default -'1320230': +"1320230": installDir: Curved Space launch: - config: oslist: windows executable: Curved Space.exe type: default -'1320490': +"1320490": installDir: Princess Farmer launch: - config: oslist: windows executable: Princess Farmer.exe type: default -'13210': +"13210": installDir: Unreal Tournament 3 launch: - - arguments: '-SteamClient' - executable: Binaries\\UT3.exe + - arguments: "-SteamClient" + executable: "Binaries\\\\UT3.exe" type: none - arguments: editor description: Launch Unreal Tournament 3 Editor - executable: Binaries\\ut3.exe -'1321030': + executable: "Binaries\\\\ut3.exe" +"1321030": installDir: No one lives in heaven launch: - config: @@ -81672,14 +80415,14 @@ oslist: linux executable: Linux/MEISTERVERSION/Game type: default -'1321070': +"1321070": installDir: Death Come True launch: - config: oslist: windows executable: DeathComeTrue.exe type: default -'1321440': +"1321440": installDir: Cassette Beasts launch: - config: @@ -81687,7 +80430,7 @@ executable: CassetteBeasts.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: CassetteBeasts.x86_64 type: default @@ -81700,29 +80443,29 @@ koreana: Cassette Beasts 카세트 비스트 schinese: Cassette Beasts 磁带妖怪 tchinese: Cassette Beasts 磁帶怪獸 -'1321450': +"1321450": installDir: American Theft 80s launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: American Theft 80s.exe type: default -'1321680': +"1321680": installDir: Hello Neighbor 2 Beta launch: - config: oslist: windows executable: HelloNeighbor2.exe -'1322170': +"1322170": installDir: Pluviophile launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Pluviophile.exe type: default -'1322290': +"1322290": installDir: The Case Book of Arne launch: - executable: Arne_Launcher.exe @@ -81731,21 +80474,21 @@ japanese: アルネの事件簿 schinese: 阿尔涅事件簿 tchinese: 阿爾涅事件簿 -'1322300': +"1322300": installDir: TSUGUNOHI launch: - executable: Tsugunohi_Launcher.exe type: none nameLocalized: japanese: つぐのひ -'1322490': +"1322490": installDir: The Charm of Love launch: - config: oslist: windows executable: CharmOfLove.exe type: none -'1322650': +"1322650": installDir: RITE launch: - config: @@ -81756,51 +80499,51 @@ oslist: linux executable: run.sh type: default -'13230': +"13230": installDir: Unreal Tournament 2004 launch: - - executable: system\\UT2004.exe + - executable: "system\\\\UT2004.exe" workingdir: system -'1323470': +"1323470": installDir: GetsuFumaDen launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: GetsuFumaDen.exe type: default -'1323540': +"1323540": installDir: Aerial_Knights Never Yield launch: - config: oslist: windows - executable: Aerial_Knight's Never Yield\\AKNY.exe + executable: "Aerial_Knight's Never Yield\\\\AKNY.exe" type: default -'1323900': +"1323900": installDir: Scrapnaut launch: - config: oslist: windows executable: Scrapnaut.exe type: none -'13240': +"13240": installDir: Unreal Tournament launch: - - executable: system\\UnrealTournament.exe + - executable: "system\\\\UnrealTournament.exe" workingdir: system -'1324130': +"1324130": installDir: Stranded Alien Dawn launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: StrandedSteam.exe type: default -'1324340': +"1324340": installDir: MadeInAbyss-BSFD launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: MadeInAbyss.exe type: default @@ -81808,11 +80551,11 @@ japanese: メイドインアビス 闇を目指した連星 schinese: 来自深渊 朝向黑暗的双星 tchinese: 來自深淵 朝向黑暗的雙星 -'1324350': +"1324350": installDir: Turbo Golf Racing launch: - executable: Turbo Golf Racing.exe -'1324530': +"1324530": installDir: Shootas Blood Teef launch: - config: @@ -81823,31 +80566,31 @@ oslist: macos executable: ShootasBloodAndTeef.app type: none -'13250': +"13250": installDir: Unreal Gold launch: - - executable: system\\Unreal.exe + - executable: "system\\\\Unreal.exe" workingdir: system -'1325200': +"1325200": installDir: Nioh2 launch: - executable: nioh2.exe type: none nameLocalized: japanese: 仁王2 Complete Edition -'1325470': +"1325470": installDir: Pianistic launch: - executable: Pianistic.exe type: default -'1325890': +"1325890": installDir: Silt launch: - executable: Silt.exe type: none nameLocalized: schinese: SILT - 黯海 -'1325900': +"1325900": installDir: Demon Turf launch: - config: @@ -81855,8 +80598,8 @@ executable: Demon Turf.exe type: none nameLocalized: - schinese: 'Demon Turf: 魅影飞蝠' -'1326000': + schinese: "Demon Turf: 魅影飞蝠" +"1326000": installDir: Sakura Succubus 2 launch: - config: @@ -81871,21 +80614,21 @@ oslist: macos executable: SakuraSuccubus2.app type: default -'1326270': +"1326270": installDir: Festival Tycoon launch: - config: oslist: windows executable: FestivalTycoon.exe type: default -'1326470': +"1326470": installDir: Sons Of The Forest launch: - config: oslist: windows executable: SonsOfTheForest.exe type: none -'1327080': +"1327080": installDir: Tower and Sword Succubus launch: - description: Sword of Succubus @@ -81897,26 +80640,26 @@ - description: Succubus Hunter executable: Succubus Hunter.txt type: option3 -'1327120': {} -'1328350': +"1327120": {} +"1328350": installDir: Turbo Overkill launch: - config: oslist: windows executable: Turbo Overkill.exe type: default -'1328660': +"1328660": installDir: Need For Speed Hot Pursuit Remastered launch: - - executable: 'link2ea://launchgame/1328660?platform=steam&theme=NFSHP' + - executable: "link2ea://launchgame/1328660?platform=steam&theme=NFSHP" type: none nameLocalized: schinese: 《极品飞车:热力追踪》重制版 tchinese: 《極速快感™:超熱力追緝》重製版 -'1328670': +"1328670": installDir: Mass Effect Legendary Edition launch: - - executable: 'link2ea://launchgame/1328670?platform=steam&theme=met' + - executable: "link2ea://launchgame/1328670?platform=steam&theme=met" type: none nameLocalized: french: Mass Effect™ Édition Légendaire @@ -81924,17 +80667,17 @@ russian: Mass Effect™ издание Legendary schinese: 《质量效应》传奇版 tchinese: 《質量效應》傳奇版 -'1328840': +"1328840": installDir: Lost in Play launch: - config: oslist: windows - executable: LostInPlay\\LostInPlay.exe + executable: "LostInPlay\\\\LostInPlay.exe" - config: oslist: macos executable: LIP.app type: default -'1328890': +"1328890": installDir: Succubus Affection launch: - executable: SuccubusAffection.exe @@ -81943,7 +80686,7 @@ japanese: サキュバスアフェクション schinese: 魅魔之恋 tchinese: 魅魔之戀 -'1328900': +"1328900": installDir: Explorer of Yggdrasil launch: - executable: Game.exe @@ -81952,7 +80695,7 @@ japanese: 忘却のイグドラシル schinese: 忘却的尤克特拉希尔 tchinese: 忘卻的尤克特拉希爾 -'1328910': +"1328910": installDir: Otome the Exorcist launch: - executable: Game.exe @@ -81961,7 +80704,7 @@ japanese: 討魔の乙女 schinese: 少女退魔记 tchinese: 少女退魔記 -'1328920': +"1328920": installDir: Mira and the Mysteries of Alchemy launch: - executable: Game.exe @@ -81970,8 +80713,8 @@ japanese: ミラと不思議な錬金術 schinese: 米拉与奇妙的炼金术 tchinese: 米拉與奇妙的煉金術 -'1328990': {} -'1329510': +"1328990": {} +"1329510": installDir: BigFarmStory launch: - config: @@ -81982,20 +80725,20 @@ oslist: macos executable: BigFarmStory.app type: default -'1329540': +"1329540": installDir: CROSSBOW Bloodnight launch: - executable: CROSSBOW Bloodnight.exe type: none -'1329790': +"1329790": installDir: Override 2 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Override.exe type: default -'1329880': +"1329880": installDir: Wild West Dynasty launch: - config: @@ -82004,7 +80747,7 @@ type: default nameLocalized: schinese: 狂野西部时代 -'1330250': +"1330250": installDir: Taimanin Collection launch: - config: @@ -82016,56 +80759,56 @@ executable: TaimaninCollection.app type: default nameLocalized: - english: 'Taimanin Collection: Battle Arena' - german: 'Taimanin-Sammlung: Kampfarena' + english: "Taimanin Collection: Battle Arena" + german: "Taimanin-Sammlung: Kampfarena" japanese: 対魔忍コレクション: 決戦アリーナ - koreana: '대마인 컬렉션 : 결전 아레나' - portuguese: 'Coleção Taimanin: Arena de Batalha' - russian: 'Тайманин Коллекция: Арена битвы' + koreana: "대마인 컬렉션 : 결전 아레나" + portuguese: "Coleção Taimanin: Arena de Batalha" + russian: "Тайманин Коллекция: Арена битвы" schinese: 对魔忍Collection:决战竞技场 - spanish: 'Colección de Taimanin: Arena de Batalla' + spanish: "Colección de Taimanin: Arena de Batalla" tchinese: 對魔忍Collection:決戰競技場 -'1330460': +"1330460": installDir: Becastled launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Becastled.exe type: default -'1330470': +"1330470": installDir: FISTGame launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ZingangGame.exe type: default nameLocalized: - english: 'F.I.S.T.: Forged In Shadow Torch' + english: "F.I.S.T.: Forged In Shadow Torch" japanese: フィスト 紅蓮城の闇 schinese: 暗影火炬城 tchinese: 暗影火炬城 -'1330660': +"1330660": installDir: Train Life - A Railway Simulator launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TrainLife.exe type: default -'1330740': {} -'1330790': +"1330740": {} +"1330790": installDir: Hunting Unlimited 2 launch: - executable: hu2.exe type: default -'1330820': +"1330820": installDir: Hunting Unlimited 3 launch: - executable: hu3.exe type: default -'1330890': +"1330890": installDir: Crystal Caves HD launch: - config: @@ -82076,7 +80819,7 @@ oslist: linux executable: CrystalCavesHD.x86_64 type: default -'1331210': +"1331210": installDir: Wolfstride launch: - config: @@ -82085,32 +80828,32 @@ type: default nameLocalized: schinese: 迅狼疾步 -'1331440': +"1331440": installDir: Fuser launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Fuser.exe type: default -'1331550': +"1331550": installDir: Big Ambitions launch: - - arguments: '-useSteam' + - arguments: "-useSteam" config: oslist: windows executable: Big Ambitions.exe - - arguments: '-useSteam' + - arguments: "-useSteam" config: oslist: macos executable: Big Ambitions.app type: default -'1331590': +"1331590": installDir: YouthSky launch: - config: oslist: windows - executable: YouthSky\\ys_1.exe + executable: "YouthSky\\\\ys_1.exe" type: default workingdir: YouthSky - config: @@ -82118,23 +80861,23 @@ executable: ys_1.sh type: default nameLocalized: - english: '7 summer days: Youth sky' -'1331910': + english: "7 summer days: Youth sky" +"1331910": installDir: Roosevelt launch: - config: oslist: windows executable: Morkredd.exe type: none -'1332010': +"1332010": installDir: Stray launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Stray.exe type: default -'1332090': +"1332090": installDir: Void Tyrant launch: - config: @@ -82143,7 +80886,7 @@ type: default - executable: game.exe type: none -'1332150': +"1332150": installDir: Zorya launch: - config: @@ -82155,7 +80898,7 @@ oslist: windows executable: Zorya.exe type: none -'1332380': +"1332380": installDir: Bring Dad Home launch: - config: @@ -82175,48 +80918,48 @@ schinese: 扶老豆回家 spanish: Trae a papá a casa tchinese: 扶老豆回家 -'1332720': +"1332720": installDir: Thief Simulator 2 launch: - executable: Thief Simulator 2.exe type: default -'1332970': +"1332970": installDir: Dab on Darkness! launch: - executable: DabonDarkness.exe type: none -'1333200': +"1333200": nameLocalized: japanese: ヌヌの唄:リーグ・オブ・レジェンド ストーリー - koreana: '누누의 노래: 리그 오브 레전드 이야기' + koreana: "누누의 노래: 리그 오브 레전드 이야기" schinese: 努努之歌:英雄联盟外传 tchinese: 《聯盟外傳:努努之歌》 - thai: 'Song of Nunu: เรื่องราวของ League of Legends' - vietnamese: 'Song of Nunu: Truyền Thuyết Liên Minh Huyền Thoại' -'1333470': + thai: "Song of Nunu: เรื่องราวของ League of Legends" + vietnamese: "Song of Nunu: Truyền Thuyết Liên Minh Huyền Thoại" +"1333470": installDir: Alex Kidd in Miracle World DX launch: - config: oslist: windows executable: Alex Kidd in Miracle World DX.exe type: default -'1333700': +"1333700": installDir: Real Heroes Firefighter launch: - config: oslist: windows executable: RHFirefighter.exe type: default -'1334300': +"1334300": installDir: Charge Kid launch: - config: - osarch: '64' + osarch: "64" oslist: linux executable: charge_kid.x86_64 type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: charge_kid.exe type: default @@ -82224,7 +80967,7 @@ oslist: macos executable: Charge Kid.app type: default -'1334590': +"1334590": installDir: Furry Love launch: - config: @@ -82237,7 +80980,7 @@ type: default - config: oslist: macos - executable: Contents\\MacOS\\Furry Love + executable: "Contents\\\\MacOS\\\\Furry Love" type: default nameLocalized: brazilian: Amor peludo @@ -82268,12 +81011,12 @@ turkish: Kürklü aşk ukrainian: Пухнаста любов vietnamese: Tình yêu lông -'1334730': +"1334730": installDir: Dread Templar launch: - executable: DreadTemplar.exe type: default -'1335200': +"1335200": installDir: Action Taimanin launch: - config: @@ -82288,52 +81031,52 @@ schinese: Action对魔忍 spanish: Action Taimanin tchinese: Action對魔忍 -'1335230': +"1335230": installDir: Sumire launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Sumire.exe type: default - config: oslist: macos - executable: Sumire.app\\Contents\\MacOS\\Sumire + executable: "Sumire.app\\\\Contents\\\\MacOS\\\\Sumire" type: default nameLocalized: japanese: すみれの空 schinese: 堇的天空 tchinese: 堇的天空 -'1335530': +"1335530": installDir: Alisa launch: - config: oslist: windows - executable: Alisa v1.0 (Windows)\\Alisa.exe + executable: "Alisa v1.0 (Windows)\\\\Alisa.exe" type: default - config: - osarch: '32' + osarch: "32" oslist: linux - executable: Alisa v1.0 (Linux)\\Alisa.x86 + executable: "Alisa v1.0 (Linux)\\\\Alisa.x86" type: default - config: - osarch: '64' + osarch: "64" oslist: linux - executable: Alisa v1.0 (Linux)\\Alisa.x86_64 + executable: "Alisa v1.0 (Linux)\\\\Alisa.x86_64" type: default - config: oslist: macos - executable: Alisa v1.0 (MacOS).app\\Contents\\MacOS\\Alisa v1.0 (MacOS) + executable: "Alisa v1.0 (MacOS).app\\\\Contents\\\\MacOS\\\\Alisa v1.0 (MacOS)" type: default -'1335790': +"1335790": installDir: Operation Tango launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Operation Tango.exe type: default -'1335800': +"1335800": installDir: dont_forget_me launch: - config: @@ -82348,17 +81091,17 @@ oslist: macos executable: dont_forget_me.app type: default -'1335830': - installDir: Len's Island +"1335830": + installDir: "Len's Island" launch: - config: oslist: windows - executable: Len's Island.exe + executable: "Len's Island.exe" type: default - config: oslist: macos - executable: Len's Island.app -'1336120': + executable: "Len's Island.app" +"1336120": installDir: Bridge Constructor The Walking Dead launch: - config: @@ -82371,11 +81114,11 @@ executable: BC_TWD.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: BC_TWD.x86_64 type: default -'1336380': +"1336380": installDir: Gripper launch: - config: @@ -82384,7 +81127,7 @@ type: default nameLocalized: schinese: 疾速摩爪 -'1336490': +"1336490": installDir: Against the Storm launch: - config: @@ -82394,11 +81137,11 @@ nameLocalized: schinese: 风暴之城 Against the Storm tchinese: 風暴之城 Against the Storm -'1336980': +"1336980": installDir: NOBU16 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: NOBU16_Launcher.exe type: none @@ -82406,65 +81149,59 @@ japanese: 信長の野望・新生 schinese: 信長之野望・新生 tchinese: 信長之野望・新生 -'1337010': +"1337010": installDir: Alba launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Alba.exe type: default -'1337100': +"1337100": installDir: Warhammer Age of Sigmar Tempestfall launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: WindowsNoEditor\\Tempestfall.exe + executable: "WindowsNoEditor\\\\Tempestfall.exe" type: vr -'1337520': +"1337520": nameLocalized: - schinese: '雨中冒险: 回归' -'1337530': + schinese: "雨中冒险: 回归" +"1337530": installDir: Maskmaker launch: - executable: Maskmaker.exe type: vr -'1337760': +"1337760": installDir: Potion Permit launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Win 64 - description_loc: - english: Win 64 executable: Potion Permit.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows description: Win 32 - description_loc: - english: Win 32 executable: Potion Permit.exe type: default - config: oslist: macos description: Mac OS - description_loc: - english: Mac OS executable: Potion Permit.app type: default nameLocalized: koreana: 포션퍼밋 schinese: 杏林物语 tchinese: 杏林物語 -'1337920': +"1337920": installDir: Serial Cleaners launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SerialCleaners.exe type: default @@ -82474,31 +81211,31 @@ koreana: 연쇄청소부들 Serial Cleaners schinese: 连环清道夫 (Serial Cleaners) tchinese: 《連環清潔工們》Serial Cleaners -'1338330': +"1338330": installDir: Lemon Cake launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: LemonCake.exe type: default -'1338580': +"1338580": installDir: McPixel 3 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: bin/McPixel3.exe type: default workingdir: bin/ - config: - osarch: '32' + osarch: "32" oslist: windows executable: bin/McPixel3_x86.exe type: default workingdir: bin/ - config: - osarch: '64' + osarch: "64" oslist: linux executable: bin/mcpixel3.sh type: default @@ -82509,7 +81246,7 @@ type: default nameLocalized: schinese: 像素哥3 -'1338610': +"1338610": installDir: Guardian Chronicle launch: - executable: GC.exe @@ -82517,43 +81254,43 @@ nameLocalized: koreana: 가디언 크로니클 tchinese: 塔塔守護者 -'1338770': +"1338770": installDir: Sniper Ghost Warrior Contracts 2 launch: - - executable: win_x64\\SGWContracts2.exe + - executable: "win_x64\\\\SGWContracts2.exe" type: none nameLocalized: schinese: 狙击手:幽灵战士契约 2 -'1338790': +"1338790": installDir: Good Mourning launch: - config: oslist: windows executable: Good Mourning.exe type: default -'1339450': +"1339450": installDir: Choco Pixel 6 launch: - executable: Choco Pixel 6.exe type: none -'1339620': +"1339620": installDir: across launch: - config: oslist: windows executable: ElmaLauncher/ElmaLauncher.exe type: default -'1339890': +"1339890": installDir: Hentai Milf Quiz launch: - executable: Hentai Milf Quiz.exe type: none -'1340120': +"1340120": installDir: IxSHE Tell launch: - executable: IXSHE.exe type: none -'1340130': +"1340130": installDir: Aokana Extra1 launch: - executable: AokanaEXTRA1.exe @@ -82562,7 +81299,7 @@ japanese: 蒼の彼方のフォーリズム EXTRA1 schinese: 苍之彼方的四重奏 EXTRA1 tchinese: 蒼之彼方的四重奏 EXTRA1 -'1340480': +"1340480": installDir: The Cosmic Wheel Sisterhood launch: - config: @@ -82571,7 +81308,7 @@ nameLocalized: schinese: 宇宙之轮姐妹会 tchinese: 寰宇之輪姊妹情 -'1340570': +"1340570": installDir: Golf On Mars launch: - config: @@ -82580,56 +81317,54 @@ type: default - config: oslist: macos - executable: GolfOnMars.app\\Contents\\MacOS\\GolfOnMars + executable: "GolfOnMars.app\\\\Contents\\\\MacOS\\\\GolfOnMars" type: default -'1340640': +"1340640": installDir: HORROR TALES The Wine launch: - executable: Horror_Tales_The_Wine/HorrorWine.exe type: none -'1341050': +"1341050": installDir: BALAN WONDERWORLD launch: - config: oslist: windows - executable: Happiness\\Binaries\\Win64\\BALAN WONDERWORLD.exe + executable: "Happiness\\\\Binaries\\\\Win64\\\\BALAN WONDERWORLD.exe" type: none nameLocalized: japanese: バランワンダーワールド schinese: 巴兰的异想奇境 tchinese: 巴蘭的異想奇境 -'1341060': +"1341060": installDir: Half-Life 2 GGEFC13 launch: - - arguments: '-game ggefc13' + - arguments: "-game ggefc13" config: oslist: windows executable: hl2.exe type: default -'1341170': +"1341170": installDir: Strategic Mind Spectre of Communism launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: StrategicMind.exe type: none nameLocalized: schinese: 战略思维:共产主义的幽灵 -'1341200': +"1341200": installDir: Dynasty Warriors 9 Empires launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: DW9Emp.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows description: Configuration - description_loc: - english: Configuration executable: Config.exe type: config nameLocalized: @@ -82637,92 +81372,90 @@ koreana: 진・삼국무쌍8 Empires schinese: 真・三国无双8 帝国 tchinese: 真・三國無雙8 Empires -'1341280': +"1341280": installDir: Notre Dame (VR) launch: - config: oslist: windows executable: Notre-Dame.exe type: default -'1341290': +"1341290": installDir: We Were Here Forever launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: We Were Here Forever.exe type: default - - arguments: '-force-d3d12' + - arguments: "-force-d3d12" config: - osarch: '64' + osarch: "64" oslist: windows description: DX12 - description_loc: - english: DX12 executable: We Were Here Forever.exe type: option1 -'1341550': +"1341550": installDir: PORN VR - Handyman launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: handyman vr.exe type: vr -'1341780': +"1341780": installDir: Super Huey III launch: - config: oslist: windows executable: SuperHuey03.exe type: none -'1341820': +"1341820": installDir: As Dusk Falls launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Dusk.exe type: default -'1341830': +"1341830": installDir: Steel Thunder launch: - - arguments: '-conf dosbox_w_1280x800.conf -conf dosbox_auto_launch.conf -noconsole -exit' + - arguments: "-conf dosbox_w_1280x800.conf -conf dosbox_auto_launch.conf -noconsole -exit" config: oslist: windows description: windowed 1280x800 - executable: dosbox_windows\\DOSBox.exe + executable: "dosbox_windows\\\\DOSBox.exe" type: option1 - workingdir: dosbox_windows\\ - - arguments: '-conf dosbox_w_640x400.conf -conf dosbox_auto_launch.conf -noconsole -exit' + workingdir: "dosbox_windows\\\\" + - arguments: "-conf dosbox_w_640x400.conf -conf dosbox_auto_launch.conf -noconsole -exit" config: oslist: windows description: windowed 640x400 - executable: dosbox_windows\\DOSBox.exe + executable: "dosbox_windows\\\\DOSBox.exe" type: option1 - workingdir: dosbox_windows\\ - - arguments: '-conf dosbox_w_320x200.conf -conf dosbox_auto_launch.conf -noconsole -exit' + workingdir: "dosbox_windows\\\\" + - arguments: "-conf dosbox_w_320x200.conf -conf dosbox_auto_launch.conf -noconsole -exit" config: oslist: windows description: windowed 320x200 - executable: dosbox_windows\\DOSBox.exe + executable: "dosbox_windows\\\\DOSBox.exe" type: option1 - workingdir: dosbox_windows\\ - - arguments: '-conf dosbox_w_2560x1600.conf -conf dosbox_auto_launch.conf -noconsole -exit' + workingdir: "dosbox_windows\\\\" + - arguments: "-conf dosbox_w_2560x1600.conf -conf dosbox_auto_launch.conf -noconsole -exit" config: oslist: windows description: windowed 2560x1600 - executable: dosbox_windows\\DOSBox.exe + executable: "dosbox_windows\\\\DOSBox.exe" type: option1 - workingdir: dosbox_windows\\ - - arguments: '-conf dosbox_fs.conf -conf dosbox_auto_launch.conf -noconsole -exit' + workingdir: "dosbox_windows\\\\" + - arguments: "-conf dosbox_fs.conf -conf dosbox_auto_launch.conf -noconsole -exit" config: oslist: windows description: full screen - executable: dosbox_windows\\DOSBox.exe + executable: "dosbox_windows\\\\DOSBox.exe" type: option1 - workingdir: dosbox_windows\\ -'1341890': + workingdir: "dosbox_windows\\\\" +"1341890": installDir: Corridor 7 launch: - config: @@ -82733,7 +81466,7 @@ oslist: macos executable: Corridor.command type: default -'1341900': +"1341900": installDir: Castle on the Coast launch: - config: @@ -82744,12 +81477,12 @@ oslist: macos executable: CastleOnTheCoast.app type: default -'1342040': +"1342040": installDir: Sylphy and the Sleepless Island launch: - executable: Game.exe type: default -'1342050': +"1342050": installDir: Lisa and the Grimoire launch: - executable: Game.exe @@ -82758,12 +81491,12 @@ japanese: リサと魔性のグリモワール schinese: 莉莎与欲望的魔导书 tchinese: 莉莎與慾望的魔導書 -'1342060': +"1342060": installDir: The Dead End launch: - executable: Game.exe type: default -'1342070': +"1342070": installDir: The Triumphant Return of Diabolos launch: - executable: Game.exe @@ -82771,7 +81504,7 @@ nameLocalized: japanese: ディアボロスの凱旋 schinese: 魔王的凯旋之旅 -'1342120': +"1342120": installDir: Castaway of the Ardusta Sea launch: - executable: Game.exe @@ -82779,8 +81512,8 @@ nameLocalized: japanese: アドゥスタ海の孤島 schinese: 阿多斯塔之海漂流记 - tchinese: ' 阿多斯塔之海漂流記' -'1342240': + tchinese: " 阿多斯塔之海漂流記" +"1342240": installDir: GUNBARICH launch: - config: @@ -82793,7 +81526,7 @@ description: Launch Configuration Tool executable: setting.exe type: none -'1342250': +"1342250": installDir: ZERO GUNNER 2- launch: - config: @@ -82806,7 +81539,7 @@ description: Launch Configuration Tool executable: setting.exe type: none -'1342260': +"1342260": installDir: SamuraiShodown launch: - config: @@ -82815,14 +81548,14 @@ type: default nameLocalized: japanese: SAMURAI SPIRITS -'1342330': +"1342330": installDir: Mad Games Tycoon 2 launch: - config: oslist: windows executable: Mad Games Tycoon 2.exe type: default -'1342410': +"1342410": installDir: Muv-Luv UNLIMITED TDA02 launch: - config: @@ -82830,13 +81563,13 @@ executable: tda02-win64vc14-release.exe type: default nameLocalized: - english: '[TDA02] Muv-Luv Unlimited: THE DAY AFTER - Episode 02 REMASTERED' - japanese: '【TDA02】マブラヴ アンリミテッド ザ・デイアフター episode:02 REMASTERED' -'1342620': + english: "[TDA02] Muv-Luv Unlimited: THE DAY AFTER - Episode 02 REMASTERED" + japanese: "【TDA02】マブラヴ アンリミテッド ザ・デイアフター episode:02 REMASTERED" +"1342620": installDir: Werewolf The Apocalypse - Heart of the Forest launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Heart of the Forest.exe type: default @@ -82845,120 +81578,102 @@ executable: Heart of the Forest.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Heart of the Forest type: default -'1342740': +"1342740": installDir: MLBeta01 launch: - executable: MooselifeGL.exe type: default - - arguments: '-mode 1' + - arguments: "-mode 1" executable: MooselifeGL.exe type: vr -'1342890': +"1342890": installDir: Who Needs a Hero launch: - config: oslist: windows executable: Who Needs a Hero.exe type: none -'1343240': +"1343240": installDir: Thymesia launch: - executable: PlagueProject.exe type: default - config: betakey: milestone - osarch: '64' + osarch: "64" oslist: windows description: Development Build - description_loc: - english: Development Build - executable: DeveloperBuild\\PlagueProject.exe + executable: "DeveloperBuild\\\\PlagueProject.exe" type: option1 - config: betakey: usability - osarch: '64' + osarch: "64" oslist: windows description: Development Build - description_loc: - english: Development Build - executable: DeveloperBuild\\PlagueProject.exe + executable: "DeveloperBuild\\\\PlagueProject.exe" type: option1 - config: betakey: usability - osarch: '64' + osarch: "64" oslist: windows description: Shipping Build (Usability) - description_loc: - english: Shipping Build (Usability) - executable: ShippingBuild\\PlagueProject.exe + executable: "ShippingBuild\\\\PlagueProject.exe" type: option2 - config: betakey: kakehashi - osarch: '64' + osarch: "64" oslist: windows description: Development Build (Kakehashi) - description_loc: - english: Development Build (Kakehashi) - executable: DeveloperBuild\\PlagueProject.exe + executable: "DeveloperBuild\\\\PlagueProject.exe" type: option1 - config: betakey: day1_builds - osarch: '64' + osarch: "64" oslist: windows description: Development Build - description_loc: - english: Development Build - executable: DeveloperBuild\\PlagueProject.exe + executable: "DeveloperBuild\\\\PlagueProject.exe" type: option1 - config: betakey: localisation - osarch: '64' + osarch: "64" oslist: windows description: Development Build - description_loc: - english: Development Build - executable: DeveloperBuild\\PlagueProject.exe + executable: "DeveloperBuild\\\\PlagueProject.exe" type: option1 - config: betakey: milestonetesting - osarch: '64' + osarch: "64" oslist: windows description: Development Build - description_loc: - english: Development Build - executable: DeveloperBuild\\PlagueProject.exe + executable: "DeveloperBuild\\\\PlagueProject.exe" type: option1 - config: betakey: twitch - osarch: '64' + osarch: "64" oslist: windows description: Development Build - description_loc: - english: Development Build - executable: DeveloperBuild\\PlagueProject.exe + executable: "DeveloperBuild\\\\PlagueProject.exe" type: option1 nameLocalized: schinese: 记忆边境 tchinese: 記憶邊境 -'1343370': +"1343370": installDir: Old School RuneScape launch: - config: betakey: internal - osarch: '64' + osarch: "64" oslist: windows description: Run Internal Launcher - description_loc: - english: Run Internal Launcher executable: bin/win64/oslaunch.exe type: default workingdir: bin/win64/ - config: - osarch: '64' + osarch: "64" oslist: windows description: Play Old School RuneScape executable: bin/win64/osclient.exe @@ -82968,37 +81683,33 @@ betakey: internal oslist: macos description: Run Internal Launcher - description_loc: - english: Run Internal Launcher executable: bin/osx/oslaunch.app type: default workingdir: bin/osx/ - config: oslist: macos description: Play Old School RuneScape - description_loc: - english: Play Old School RuneScape executable: bin/osx/osclient.app type: default workingdir: bin/osx/ -'1343400': +"1343400": installDir: RuneScape launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: bin/win32/RuneScape.exe type: default - - arguments: '--configURI http://world205a.runescape.com/jav_config.ws' + - arguments: "--configURI http://world205a.runescape.com/jav_config.ws" config: betakey: rc_build - osarch: '64' + osarch: "64" oslist: windows description: RuneScape using beta worlds executable: bin/win64/RuneScape.exe type: option2 - config: - osarch: '64' + osarch: "64" oslist: windows executable: bin/win64/RuneScape.exe type: default @@ -83012,15 +81723,13 @@ betakey: internal_2 oslist: macos description: internal_2 Test configuration - description_loc: - english: internal_2 Test configuration executable: bin/osx/rs2client.app type: option1 - config: oslist: macos executable: bin/osx/RuneScape.app type: default -'1344070': +"1344070": installDir: Trollhunters Defenders of Arcadia launch: - config: @@ -83028,31 +81737,31 @@ executable: Trollhunters_x64.exe type: default nameLocalized: - brazilian: 'Caçadores de Trolls: Defensores da Arcadia' - dutch: 'Trollenjagers: Verdedigers van Arcadia' - french: 'Chasseurs de Trolls : Protecteurs d''Arcadia' - german: 'Trolljäger: Verteidiger von Arcadia' - italian: 'Trollhunters: I Difensori di Arcadia' + brazilian: "Caçadores de Trolls: Defensores da Arcadia" + dutch: "Trollenjagers: Verdedigers van Arcadia" + french: "Chasseurs de Trolls : Protecteurs d'Arcadia" + german: "Trolljäger: Verteidiger von Arcadia" + italian: "Trollhunters: I Difensori di Arcadia" japanese: トロールハンターズ: アルカディアの守護者 - russian: 'Охотники на троллей: Защитник Аркадии' + russian: "Охотники на троллей: Защитник Аркадии" schinese: 巨怪猎人:幽林镇守护者 -'1344430': +"1344430": installDir: Kosta Projekt launch: - config: oslist: windows executable: KostaProjekt.exe type: none -'1344790': +"1344790": installDir: Unsung Kingdom launch: - config: - osarch: '64' + osarch: "64" oslist: linux executable: unsung-kingdom type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: unsung-kingdom.exe type: default @@ -83060,7 +81769,7 @@ oslist: macos executable: unsung-kingdom.app type: default -'1344840': +"1344840": installDir: AKER FERN launch: - config: @@ -83075,26 +81784,26 @@ oslist: linux executable: AkerFern.sh type: none -'1345450': {} -'1345730': +"1345450": {} +"1345730": installDir: 画江湖之杯莫停 launch: - executable: hjh.exe type: none -'1345740': +"1345740": installDir: Mystery Lover launch: - config: oslist: windows executable: MysteryLover.exe type: none -'1345760': +"1345760": installDir: Matchpoint launch: - config: oslist: windows executable: Matchpoint.exe -'1345860': +"1345860": installDir: Grapple Dog launch: - config: @@ -83102,11 +81811,11 @@ executable: Grapple Dog.exe nameLocalized: schinese: 狗钩 -'1345890': +"1345890": installDir: Deliver Us Mars launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: DeliverUsMars.exe type: none @@ -83115,19 +81824,19 @@ koreana: 딜리버 어스 마스 schinese: 火星孤征 tchinese: 火星孤征 -'1346010': +"1346010": installDir: RiMS launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: RiMS.exe type: none -'1346020': +"1346020": installDir: Wargroove 2 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: win64_bin/wargroove64.exe type: default @@ -83139,89 +81848,89 @@ japanese: ウォーグルーヴ 2 schinese: 战律 2 tchinese: 戰律 2 -'1346360': {} -'1346400': +"1346360": {} +"1346400": installDir: Battle Engine Aquila launch: - executable: BEA.exe type: none -'1347430': +"1347430": installDir: Cute Honey launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: CuteHoney.exe type: default -'1347450': +"1347450": installDir: DayAndNight launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: DayAndNight.exe type: default -'1347540': +"1347540": installDir: SkyFleet launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: launcher\\freedom-launcher.exe + executable: "launcher\\\\freedom-launcher.exe" type: default - config: oslist: macos - executable: SkyFleet.app\\Contents\\MacOS\\Sky Fleet + executable: "SkyFleet.app\\\\Contents\\\\MacOS\\\\Sky Fleet" type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: SkyFleet type: default -'1347550': +"1347550": installDir: TinyCombatArena launch: - config: oslist: windows executable: Arena.exe type: default -'1347760': +"1347760": installDir: Clash II launch: - config: oslist: windows executable: ClashII.exe type: default -'1347780': +"1347780": installDir: Freedom_Fighters launch: - config: oslist: windows executable: Launcher.exe type: default -'1347970': +"1347970": installDir: Patch Quest launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Patch Quest.exe type: none nameLocalized: schinese: 拼贴冒险传 / Patch Quest -'1348390': +"1348390": installDir: ATC4_g launch: - - arguments: TITLE\\ATC4TITLE.axa + - arguments: "TITLE\\\\ATC4TITLE.axa" config: oslist: windows executable: AXA.exe type: default -'1348690': +"1348690": installDir: Oaken launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Oaken.exe type: default @@ -83230,18 +81939,18 @@ executable: Oaken.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Oaken.x86_64 type: default nameLocalized: schinese: 精灵与橡木之歌 Oaken tchinese: 精灵与橡木之歌 Oaken -'1348700': +"1348700": installDir: Spice&Wolf VR2 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Spice and Wolf VR2.exe type: vr @@ -83249,16 +81958,16 @@ japanese: 狼と香辛料VR2 schinese: 狼与香辛料VR2 tchinese: 狼與辛香料VR2 -'1349230': +"1349230": installDir: 5dchesswithmultiversetimetravel launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: 5dchesswithmultiversetimetravel.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: 5dchesswithmultiversetimetravel type: default @@ -83266,9 +81975,9 @@ oslist: macos executable: 5D Chess.app/Contents/MacOS/5dchesswithmultiversetimetravel type: default -'1349300': {} -'1349730': {} -'1349850': +"1349300": {} +"1349730": {} +"1349850": installDir: FailedAdventure launch: - config: @@ -83278,7 +81987,7 @@ nameLocalized: english: Failed Adventurer tchinese: 失格冒險者與惡魔之石 -'1349970': +"1349970": installDir: Tomai launch: - config: @@ -83289,11 +81998,11 @@ oslist: linux executable: TOMAI.sh type: default -'13500': +"13500": installDir: Prince of Persia The Warrior Within launch: - executable: PrinceOfPersia.exe -'1350200': +"1350200": installDir: IMMORTALITY launch: - config: @@ -83304,27 +82013,27 @@ oslist: macos executable: Immortality.app type: default -'1350350': +"1350350": installDir: Touhou Gensokyo Visitor launch: - executable: TouhouGensokyoVisitor.exe type: none -'1350590': +"1350590": installDir: DUPA_Project launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: DUPA_Project.exe type: default -'1350710': +"1350710": installDir: Evenicle 2 - Clinical Trial Edition launch: - config: oslist: windows executable: Evenicle2Trial.exe type: none -'1350840': +"1350840": installDir: Song Of The Prairie launch: - config: @@ -83334,25 +82043,25 @@ nameLocalized: sc_schinese: 牧野之歌 schinese: 牧野之歌 -'13510': +"13510": installDir: Ghost Recon Advanced Warfighter 2 launch: - executable: graw2.exe -'1351080': +"1351080": installDir: Pharaoh A New Era launch: - config: oslist: windows executable: Pharaoh.exe type: none -'1351140': +"1351140": installDir: Kapia launch: - config: oslist: windows executable: kapia.exe type: default -'1351370': +"1351370": installDir: Sakura Knight 3 launch: - config: @@ -83363,14 +82072,14 @@ oslist: linux executable: SakuraKnight3.sh type: default -'1351450': +"1351450": installDir: Steel Fury Kharkov 1942 launch: - config: oslist: windows executable: starter.exe type: default -'1351630': +"1351630": installDir: Ys IX Monstrum Nox launch: - executable: ys9.exe @@ -83378,62 +82087,56 @@ - config: betakey: test description: English Debug Optimized - description_loc: - english: English Debug Optimized executable: ys9_debugopt.exe type: option1 - config: betakey: ph3_internal description: Japanese Release - description_loc: - english: Japanese Release executable: ys9_JP.exe type: option2 - config: betakey: ph3_internal description: Japanese Debug Optimized - description_loc: - english: Japanese Debug Optimized executable: ys9_debugopt_JP.exe type: option3 nameLocalized: japanese: イースIX -Monstrum NOX- -'13520': +"13520": installDir: FarCry launch: - - executable: Bin32\\FarCry.exe + - executable: "Bin32\\\\FarCry.exe" - description: Launch FarCry Config - executable: Bin32\\FarCryConfigurator.exe -'1352080': + executable: "Bin32\\\\FarCryConfigurator.exe" +"1352080": installDir: Smash Legends launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Smash_Legends.exe type: default -'1352200': +"1352200": installDir: Detective From The Crypt launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: DetectiveFromTheCrypt.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: DetectiveFromTheCrypt.x86_64 type: default -'1352850': +"1352850": installDir: Citystate II launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Citystate II.exe type: default -'1352910': +"1352910": installDir: 春と修羅 launch: - config: @@ -83442,7 +82145,7 @@ type: default nameLocalized: schinese: 春与修罗 -'1352930': +"1352930": installDir: Haak launch: - executable: haak.exe @@ -83454,27 +82157,27 @@ sc_schinese: 勇敢的哈克 schinese: 勇敢的哈克 tchinese: HAAK -'13530': +"13530": installDir: Prince of Persia Two Thrones launch: - executable: PrinceOfPersia.exe -'1353100': +"1353100": installDir: SCPTheFoundation launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: SCPTheFoundation.exe type: default -'1353230': +"1353230": installDir: BombRushCyberfunk launch: - config: oslist: windows executable: Bomb Rush Cyberfunk.exe type: default -'1353270': +"1353270": installDir: Five Dates launch: - config: @@ -83485,21 +82188,21 @@ oslist: macos executable: FiveDates.app/Contents/MacOS/Five Dates type: default -'13540': +"13540": installDir: Rainbow Six Vegas launch: - - executable: Binaries\\R6Vegas_Game.exe + - executable: "Binaries\\\\R6Vegas_Game.exe" type: none workingdir: Binaries -'1354830': +"1354830": installDir: Cat Cafe Manager launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: catcafe.exe type: default -'1354910': +"1354910": installDir: Tiny Lands launch: - config: @@ -83509,38 +82212,38 @@ nameLocalized: japanese: 小さな世界 schinese: 3D找茬 -'1355090': +"1355090": nameLocalized: schinese: 异星铁路 -'1355650': +"1355650": installDir: Filcher launch: - executable: Filcher.exe type: default -'1355680': {} -'13560': +"1355680": {} +"13560": installDir: Splinter Cell launch: - - executable: system\\splintercell.exe + - executable: "system\\\\splintercell.exe" workingdir: system -'1356040': +"1356040": installDir: Ampersat launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Ampersat.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: ampersat.x86_64 type: default - config: oslist: macos - executable: Ampersat.app\\Contents\\MacOS\\Ampersat_1.0-Mac + executable: "Ampersat.app\\\\Contents\\\\MacOS\\\\Ampersat_1.0-Mac" type: default -'1356240': +"1356240": installDir: Who Wants To Be A Millionaire launch: - config: @@ -83551,8 +82254,8 @@ oslist: macos executable: WWTBAM.app type: default -'1356250': {} -'1356280': +"1356250": {} +"1356280": installDir: Kitaria Fables launch: - config: @@ -83561,16 +82264,16 @@ type: none nameLocalized: japanese: ニャンザの冒険 -'1356580': +"1356580": installDir: Guild of Darksteel launch: - executable: Guild of Darksteel.exe type: none -'1356670': +"1356670": installDir: Sakuna Of Rice and Ruin launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Sakuna.exe type: none @@ -83579,7 +82282,7 @@ koreana: 천수의 사쿠나히메 schinese: 天穗之咲稻姬 tchinese: 天穗之咲稻姬 -'1356710': +"1356710": installDir: MyCreampieHeaven launch: - config: @@ -83588,261 +82291,249 @@ type: default - config: oslist: linux - executable: ./goddess.sh + executable: "./goddess.sh" type: default - config: oslist: macos executable: goddess.app type: default -'13570': +"13570": installDir: Splintercell Chaos Theory launch: - - executable: system\\splintercell3.exe + - executable: "system\\\\splintercell3.exe" workingdir: system -'1357210': +"1357210": installDir: Galactic Civilizations IV launch: - - description: 'Launch GalCiv IV: Supernova' - description_loc: - english: 'Launch GalCiv IV: Supernova' + - description: "Launch GalCiv IV: Supernova" executable: StardockLauncher.exe type: default -'1357350': {} -'1357490': +"1357350": {} +"1357490": installDir: Gunboat launch: - - arguments: '-conf dosbox_w_1280x960.conf -conf dosbox_auto_launch.conf -noconsole -exit' + - arguments: "-conf dosbox_w_1280x960.conf -conf dosbox_auto_launch.conf -noconsole -exit" config: oslist: windows description: windowed 1280x960 - executable: dosbox_windows\\DOSBox.exe + executable: "dosbox_windows\\\\DOSBox.exe" type: option1 - workingdir: dosbox_windows\\ - - arguments: '-conf dosbox_w_2560x1920.conf -conf dosbox_auto_launch.conf -noconsole -exit' + workingdir: "dosbox_windows\\\\" + - arguments: "-conf dosbox_w_2560x1920.conf -conf dosbox_auto_launch.conf -noconsole -exit" config: oslist: windows description: windowed 2560x1920 - executable: dosbox_windows\\DOSBox.exe + executable: "dosbox_windows\\\\DOSBox.exe" type: option1 - workingdir: dosbox_windows\\ - - arguments: '-conf dosbox_w_320x240.conf -conf dosbox_auto_launch.conf -noconsole -exit' + workingdir: "dosbox_windows\\\\" + - arguments: "-conf dosbox_w_320x240.conf -conf dosbox_auto_launch.conf -noconsole -exit" config: oslist: windows description: windowed 320x240 - executable: dosbox_windows\\DOSBox.exe + executable: "dosbox_windows\\\\DOSBox.exe" type: option1 - workingdir: dosbox_windows\\ - - arguments: '-conf dosbox_w_640x480.conf -conf dosbox_auto_launch.conf -noconsole -exit' + workingdir: "dosbox_windows\\\\" + - arguments: "-conf dosbox_w_640x480.conf -conf dosbox_auto_launch.conf -noconsole -exit" config: oslist: windows description: windowed 640x480 - executable: dosbox_windows\\DOSBox.exe + executable: "dosbox_windows\\\\DOSBox.exe" type: option1 - workingdir: dosbox_windows\\ - - arguments: '-conf dosbox_fs.conf -conf dosbox_auto_launch.conf -noconsole -exit' + workingdir: "dosbox_windows\\\\" + - arguments: "-conf dosbox_fs.conf -conf dosbox_auto_launch.conf -noconsole -exit" config: oslist: windows description: full screen - executable: dosbox_windows\\DOSBox.exe + executable: "dosbox_windows\\\\DOSBox.exe" type: option1 - workingdir: dosbox_windows\\ -'1357540': + workingdir: "dosbox_windows\\\\" +"1357540": installDir: Altered Destiny launch: - - arguments: '-conf dosbox_w_1280x960.conf -conf dosbox_auto_launch.conf -noconsole -exit' + - arguments: "-conf dosbox_w_1280x960.conf -conf dosbox_auto_launch.conf -noconsole -exit" config: oslist: windows description: windowed 1280x960 - executable: dosbox_windows\\DOSBox.exe + executable: "dosbox_windows\\\\DOSBox.exe" type: option1 - workingdir: dosbox_windows\\ - - arguments: '-conf dosbox_w_320x240.conf -conf dosbox_auto_launch.conf -noconsole -exit' + workingdir: "dosbox_windows\\\\" + - arguments: "-conf dosbox_w_320x240.conf -conf dosbox_auto_launch.conf -noconsole -exit" config: oslist: windows description: windowed 320x240 - executable: dosbox_windows\\DOSBox.exe + executable: "dosbox_windows\\\\DOSBox.exe" type: option1 - workingdir: dosbox_windows\\ - - arguments: '-conf dosbox_w_640x480.conf -conf dosbox_auto_launch.conf -noconsole -exit' + workingdir: "dosbox_windows\\\\" + - arguments: "-conf dosbox_w_640x480.conf -conf dosbox_auto_launch.conf -noconsole -exit" config: oslist: windows description: windowed 640x480 - executable: dosbox_windows\\DOSBox.exe + executable: "dosbox_windows\\\\DOSBox.exe" type: option1 - workingdir: dosbox_windows\\ - - arguments: '-conf dosbox_w_2560x1920.conf -conf dosbox_auto_launch.conf -noconsole -exit' + workingdir: "dosbox_windows\\\\" + - arguments: "-conf dosbox_w_2560x1920.conf -conf dosbox_auto_launch.conf -noconsole -exit" config: oslist: windows description: windowed 2560x1920 - executable: dosbox_windows\\DOSBox.exe + executable: "dosbox_windows\\\\DOSBox.exe" type: option1 - workingdir: dosbox_windows\\ - - arguments: '-conf dosbox_fs.conf -conf dosbox_auto_launch.conf -noconsole -exit' + workingdir: "dosbox_windows\\\\" + - arguments: "-conf dosbox_fs.conf -conf dosbox_auto_launch.conf -noconsole -exit" config: oslist: windows description: full screen - executable: dosbox_windows\\DOSBox.exe + executable: "dosbox_windows\\\\DOSBox.exe" type: option1 - workingdir: dosbox_windows\\ -'1357550': + workingdir: "dosbox_windows\\\\" +"1357550": installDir: Psi 5 Trading Co launch: - - arguments: '-conf dosbox_w_1280x800.conf -conf dosbox_auto_launch.conf -noconsole -exit' + - arguments: "-conf dosbox_w_1280x800.conf -conf dosbox_auto_launch.conf -noconsole -exit" config: oslist: windows description: windowed 1280x800 - executable: dosbox_windows\\DOSBox.exe + executable: "dosbox_windows\\\\DOSBox.exe" type: option1 - workingdir: dosbox_windows\\ - - arguments: '-conf dosbox_w_2560x1600.conf -conf dosbox_auto_launch.conf -noconsole -exit' + workingdir: "dosbox_windows\\\\" + - arguments: "-conf dosbox_w_2560x1600.conf -conf dosbox_auto_launch.conf -noconsole -exit" config: oslist: windows description: windowed 2560x1600 - executable: dosbox_windows\\DOSBox.exe + executable: "dosbox_windows\\\\DOSBox.exe" type: option1 - workingdir: dosbox_windows\\ - - arguments: '-conf dosbox_w_640x400.conf -conf dosbox_auto_launch.conf -noconsole -exit' + workingdir: "dosbox_windows\\\\" + - arguments: "-conf dosbox_w_640x400.conf -conf dosbox_auto_launch.conf -noconsole -exit" config: oslist: windows description: windowed 640x400 - executable: dosbox_windows\\DOSBox.exe + executable: "dosbox_windows\\\\DOSBox.exe" type: option1 - workingdir: dosbox_windows\\ - - arguments: '-conf dosbox_w_320x200.conf -conf dosbox_auto_launch.conf -noconsole -exit' + workingdir: "dosbox_windows\\\\" + - arguments: "-conf dosbox_w_320x200.conf -conf dosbox_auto_launch.conf -noconsole -exit" config: oslist: windows description: windowed 320x200 - executable: dosbox_windows\\DOSBox.exe + executable: "dosbox_windows\\\\DOSBox.exe" type: option1 - workingdir: dosbox_windows\\ - - arguments: '-conf dosbox_fs.conf -conf dosbox_auto_launch.conf -noconsole -exit' + workingdir: "dosbox_windows\\\\" + - arguments: "-conf dosbox_fs.conf -conf dosbox_auto_launch.conf -noconsole -exit" config: oslist: windows description: full screen - executable: dosbox_windows\\DOSBox.exe + executable: "dosbox_windows\\\\DOSBox.exe" type: option1 - workingdir: dosbox_windows\\ -'1357570': + workingdir: "dosbox_windows\\\\" +"1357570": installDir: Guardians of Infinity To Save Kennedy launch: - - arguments: '-noconsole -conf fullscreen.conf -conf dosbox.conf -conf launch.conf -exit' + - arguments: "-noconsole -conf fullscreen.conf -conf dosbox.conf -conf launch.conf -exit" config: oslist: windows description: full screen - description_loc: - english: full screen - executable: DOSBox\\DOSBox.exe + executable: "DOSBox\\\\DOSBox.exe" type: option1 - workingdir: DOSBox\\Configuration - - arguments: '-noconsole -conf 320x240.conf -conf dosbox.conf -conf launch.conf -exit' + workingdir: "DOSBox\\\\Configuration" + - arguments: "-noconsole -conf 320x240.conf -conf dosbox.conf -conf launch.conf -exit" config: oslist: windows description: windowed 320x240 - description_loc: - english: windowed 320x240 - executable: DOSBox\\DOSBox.exe + executable: "DOSBox\\\\DOSBox.exe" type: option1 - workingdir: DOSBox\\Configuration - - arguments: '-noconsole -conf 640x480.conf -conf dosbox.conf -conf launch.conf -exit' + workingdir: "DOSBox\\\\Configuration" + - arguments: "-noconsole -conf 640x480.conf -conf dosbox.conf -conf launch.conf -exit" config: oslist: windows description: windowed 640x480 - description_loc: - english: windowed 640x480 - executable: DOSBox\\DOSBox.exe + executable: "DOSBox\\\\DOSBox.exe" type: option1 - workingdir: DOSBox\\Configuration - - arguments: '-noconsole -conf 1280x960.conf -conf dosbox.conf -conf launch.conf -exit' + workingdir: "DOSBox\\\\Configuration" + - arguments: "-noconsole -conf 1280x960.conf -conf dosbox.conf -conf launch.conf -exit" config: oslist: windows description: windowed 1280x960 - description_loc: - english: windowed 1280x960 - executable: DOSBox\\DOSBox.exe + executable: "DOSBox\\\\DOSBox.exe" type: option1 - workingdir: DOSBox\\Configuration - - arguments: '-noconsole -conf 2560x1920.conf -conf dosbox.conf -conf launch.conf -exit' + workingdir: "DOSBox\\\\Configuration" + - arguments: "-noconsole -conf 2560x1920.conf -conf dosbox.conf -conf launch.conf -exit" config: oslist: windows description: windowed 2560x1920 - description_loc: - english: windowed 2560x1920 - executable: DOSBox\\DOSBox.exe + executable: "DOSBox\\\\DOSBox.exe" type: option1 - workingdir: DOSBox\\Configuration -'1357580': + workingdir: "DOSBox\\\\Configuration" +"1357580": installDir: XF5700 Mantis Experimental Fighter launch: - - arguments: '-conf dosbox_w_1280x800.conf -conf dosbox_auto_launch.conf -noconsole -exit' + - arguments: "-conf dosbox_w_1280x800.conf -conf dosbox_auto_launch.conf -noconsole -exit" config: oslist: windows description: windowed 1280x960 - executable: dosbox_windows\\DOSBox.exe + executable: "dosbox_windows\\\\DOSBox.exe" type: option1 - workingdir: dosbox_windows\\ - - arguments: '-conf dosbox_w_640x400.conf -conf dosbox_auto_launch.conf -noconsole -exit' + workingdir: "dosbox_windows\\\\" + - arguments: "-conf dosbox_w_640x400.conf -conf dosbox_auto_launch.conf -noconsole -exit" config: oslist: windows description: windowed 640x400 - executable: dosbox_windows\\DOSBox.exe + executable: "dosbox_windows\\\\DOSBox.exe" type: option1 - workingdir: dosbox_windows\\ - - arguments: '-conf dosbox_w_320x200.conf -conf dosbox_auto_launch.conf -noconsole -exit' + workingdir: "dosbox_windows\\\\" + - arguments: "-conf dosbox_w_320x200.conf -conf dosbox_auto_launch.conf -noconsole -exit" config: oslist: windows description: windowed 320x200 - executable: dosbox_windows\\DOSBox.exe + executable: "dosbox_windows\\\\DOSBox.exe" type: option1 - workingdir: dosbox_windows\\ - - arguments: '-conf dosbox_w_2560x1600.conf -conf dosbox_auto_launch.conf -noconsole -exit' + workingdir: "dosbox_windows\\\\" + - arguments: "-conf dosbox_w_2560x1600.conf -conf dosbox_auto_launch.conf -noconsole -exit" config: oslist: windows description: windowed 2560x1600 - executable: dosbox_windows\\DOSBox.exe + executable: "dosbox_windows\\\\DOSBox.exe" type: option1 - workingdir: dosbox_windows\\ - - arguments: '-conf dosbox_fs.conf -conf dosbox_auto_launch.conf -noconsole -exit' + workingdir: "dosbox_windows\\\\" + - arguments: "-conf dosbox_fs.conf -conf dosbox_auto_launch.conf -noconsole -exit" config: oslist: windows description: full screen - executable: dosbox_windows\\DOSBox.exe + executable: "dosbox_windows\\\\DOSBox.exe" type: option1 - workingdir: dosbox_windows\\ -'1357830': + workingdir: "dosbox_windows\\\\" +"1357830": installDir: Arcana Heat and Cold launch: - config: oslist: windows executable: nw.exe type: default -'1357840': +"1357840": installDir: Salthe launch: - executable: Salthe.exe type: default -'1357860': +"1357860": nameLocalized: - brazilian: 'Fuga: Melodies of Steel' - english: 'Fuga: Melodies of Steel' - french: 'Fuga: Melodies of Steel' - german: 'Fuga: Melodies of Steel' - italian: 'Fuga: Melodies of Steel' + brazilian: "Fuga: Melodies of Steel" + english: "Fuga: Melodies of Steel" + french: "Fuga: Melodies of Steel" + german: "Fuga: Melodies of Steel" + italian: "Fuga: Melodies of Steel" japanese: 戦場のフーガ koreana: 전장의 푸가 - latam: 'Fuga: Melodies of Steel' - russian: 'Fuga: Melodies of Steel' + latam: "Fuga: Melodies of Steel" + russian: "Fuga: Melodies of Steel" schinese: 战场的赋格曲 - spanish: 'Fuga: Melodies of Steel' + spanish: "Fuga: Melodies of Steel" tchinese: 戰場的賦格曲 -'13580': +"13580": installDir: Splinter Cell - Double Agent launch: - executable: SCDALauncher.exe -'1358090': +"1358090": installDir: Open Hexagon launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SSVOpenHexagon.exe type: default @@ -83850,48 +82541,48 @@ oslist: linux executable: run_ssvopenhexagon_linux.sh type: default -'1358140': +"1358140": installDir: Cooking Simulator VR launch: - - arguments: '-easterevent' + - arguments: "-easterevent" config: oslist: windows executable: CookingSimulatorVR.exe type: vr -'1358530': +"1358530": installDir: Saint Kotar launch: - config: oslist: windows executable: Saint Kotar.exe type: default -'1358700': +"1358700": installDir: STRANGER OF PARADISE FINAL FANTASY ORIGIN launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SOPFFO.exe type: default -'1358750': +"1358750": installDir: DRAGON QUEST X OFFLINE launch: - - arguments: '-DocumentDirSave=\"My Games\\DRAGON QUEST X OFFLINE\\Steam\\\\\"' + - arguments: "-DocumentDirSave=\\\"My Games\\\\DRAGON QUEST X OFFLINE\\\\Steam\\\\\\\\\\\"" config: oslist: windows - executable: Game\\Binaries\\Win64\\DQXOffline.exe + executable: "Game\\\\Binaries\\\\Win64\\\\DQXOffline.exe" nameLocalized: japanese: ドラゴンクエストX 目覚めし五つの種族 オフライン -'1358810': +"1358810": installDir: Metal Force for Steam launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Metal Force.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Metal Force.x86_64 type: default @@ -83900,17 +82591,17 @@ executable: Metal Force.app type: default nameLocalized: - english: 'Metal Force: Tank Games Online' - french: 'Metal Force: Guerre de Tank 3D' - german: 'Metal Force: Panzer Spiele PvP' - italian: 'Metal Force: Giochi di Guerra' + english: "Metal Force: Tank Games Online" + french: "Metal Force: Guerre de Tank 3D" + german: "Metal Force: Panzer Spiele PvP" + italian: "Metal Force: Giochi di Guerra" japanese: メタルフォース:戦車戦争のゲームオンライン - koreana: '메탈포스: 탱크 전쟁 온라인 게임 PvP' - russian: 'Metal Force: Динамичный танковый бой' - schinese: 'Metal Force: 战争机器' - spanish: 'Metal Force: Tanques de Guerra' - vietnamese: 'Metal Force: Game Bắn Xe tăng' -'1358840': + koreana: "메탈포스: 탱크 전쟁 온라인 게임 PvP" + russian: "Metal Force: Динамичный танковый бой" + schinese: "Metal Force: 战争机器" + spanish: "Metal Force: Tanques de Guerra" + vietnamese: "Metal Force: Game Bắn Xe tăng" +"1358840": installDir: Flat Eye launch: - config: @@ -83921,7 +82612,7 @@ oslist: macos executable: flat-eye-osxu.app type: default -'1359090': +"1359090": installDir: Zero Hour launch: - config: @@ -83929,52 +82620,52 @@ description: DX 11 Build executable: Zero Hour.exe type: default - - arguments: '-force-vulkan' + - arguments: "-force-vulkan" config: oslist: windows description: Vulkan Build(May Not Work) executable: Zero Hour.exe type: option1 -'1359450': +"1359450": installDir: Choco Pixel 7 launch: - config: oslist: windows executable: Choco Pixel 7.exe type: default -'1359920': +"1359920": installDir: Last Days of Lazarus launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SingurInCeasulMortii.exe type: default -'1359980': +"1359980": installDir: POSTAL Brain Damaged launch: - executable: POSTAL Brain Damaged.exe type: none -'13600': +"13600": installDir: Prince of Persia The Sands of Time launch: - - arguments: '-uplay_steam_mode' + - arguments: "-uplay_steam_mode" executable: PrinceOfPersia.EXE -'1360000': +"1360000": installDir: The Infected launch: - config: oslist: windows executable: TheInfected.exe type: default -'1360660': +"1360660": installDir: Neon Blight launch: - config: oslist: windows executable: Neon Blight.exe type: default -'1360980': +"1360980": installDir: Fetish Locator Week One - Extended Edition launch: - config: @@ -83983,13 +82674,13 @@ type: none - config: oslist: macos - executable: FetishLocator.app\\Contents\\MacOS\\FetishLocator + executable: "FetishLocator.app\\\\Contents\\\\MacOS\\\\FetishLocator" type: none - config: oslist: linux executable: FetishLocator.sh type: none -'1361000': +"1361000": installDir: In Silence launch: - arguments: +connect_lobby <64-bit lobby Steam ID> @@ -84001,29 +82692,27 @@ oslist: macos executable: InSilenceBuild.app type: default -'1361010': +"1361010": installDir: Vampires Dawn 3 launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows executable: Game.exe type: default -'1361210': - installDir: 'Warhammer 40,000 DARKTIDE' +"1361210": + installDir: "Warhammer 40,000 DARKTIDE" launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launcher backend - description_loc: - english: Launcher backend - executable: launcher\\launcher.exe - workingdir: launcher\\ + executable: "launcher\\\\launcher.exe" + workingdir: "launcher\\\\" nameLocalized: schinese: 战锤40K:暗潮 tchinese: 戰鎚40K:黑潮 -'1361230': +"1361230": installDir: CleoAPiratesTale launch: - config: @@ -84031,23 +82720,23 @@ executable: CleoAPiratesTale.exe - config: oslist: macos - executable: CleoAPiratesTale.app\\Contents\\MacOS\\CleoAPiratesTale -'1361320': + executable: "CleoAPiratesTale.app\\\\Contents\\\\MacOS\\\\CleoAPiratesTale" +"1361320": installDir: The Room Old Sins launch: - config: oslist: windows executable: OldSins.exe type: default -'1361400': +"1361400": installDir: Moonglow Bay launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: MoonglowBay.exe type: default -'1361510': +"1361510": installDir: TMNT launch: - config: @@ -84056,19 +82745,19 @@ type: default - config: oslist: linux - executable: ./TMNT + executable: "./TMNT" type: default nameLocalized: sc_schinese: 忍者龟:施莱德的复仇 schinese: 忍者龟:施莱德的复仇 -'1361670': +"1361670": installDir: Skate City launch: - config: oslist: windows executable: SkateCitySteam_v1.0.0.144/Skate City.exe type: default -'1361840': +"1361840": installDir: Tunnel of Doom launch: - executable: TOD.exe @@ -84076,91 +82765,85 @@ nameLocalized: schinese: 末日隧道(Tunnel of Doom) tchinese: 末日隧道(Tunnel of Doom) -'1361920': +"1361920": installDir: Bright Paw launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Bright Paw.exe type: default - config: oslist: macos - executable: Bright Paw.app\\Contents\\MacOS\\Bright Paw + executable: "Bright Paw.app\\\\Contents\\\\MacOS\\\\Bright Paw" type: default -'1362560': +"1362560": installDir: Fire Commander launch: - config: oslist: windows description: Fire Commander - description_loc: - english: Fire Commander executable: Fire Commander.exe type: default nameLocalized: schinese: 生死悍将 -'1362980': +"1362980": installDir: Hanapon Princess launch: - config: oslist: windows executable: HanaponPrincess.exe type: none -'1363080': +"1363080": nameLocalized: schinese: 庄园领主 Manor Lords tchinese: 莊園領主 Manor Lords -'1363400': {} -'1363840': +"1363400": {} +"1363840": installDir: SOSW-SOSC launch: - config: betakey: default - osarch: '64' + osarch: "64" oslist: windows description: Saviors of Sapphire Wings - description_loc: - english: Saviors of Sapphire Wings - executable: Launcher\\Launcher.exe + executable: "Launcher\\\\Launcher.exe" type: default workingdir: Launcher - config: betakey: gold - osarch: '64' + osarch: "64" oslist: windows description: Savior of Sapphire Wings - description_loc: - english: Savior of Sapphire Wings - executable: Launcher\\Launcher.exe + executable: "Launcher\\\\Launcher.exe" type: default workingdir: Launcher nameLocalized: japanese: 蒼き翼のシュバリエ + 新釈・剣の街の異邦人 -'1363900': +"1363900": installDir: Farworld Pioneers launch: - executable: Pioneers.exe type: default -'13640': +"13640": installDir: Ghost Recon Advanced Warfighter launch: - executable: graw.exe -'1364020': +"1364020": installDir: Boundary launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ProjectBoundarySteam.exe nameLocalized: schinese: 边境 tchinese: 邊境 -'1364100': +"1364100": installDir: Lacuna launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Lacuna.exe type: default @@ -84168,21 +82851,21 @@ german: Lacuna – Ein Sci-Fi-Noir-Abenteuer japanese: Lacuna – SFノワールアドベンチャー schinese: Lacuna – 黑暗科幻冒险 -'1364510': - installDir: '''Member the Alamo' +"1364510": + installDir: "'Member the Alamo" launch: - config: oslist: windows executable: Member The Alamo.exe type: default -'1364760': +"1364760": installDir: COTTOn RocknRoll launch: - config: oslist: windows executable: game.exe type: default -'1364780': +"1364780": installDir: Street Fighter 6 launch: - executable: StreetFighter6.exe @@ -84191,19 +82874,19 @@ koreana: Street Fighter 6 schinese: Street Fighter 6 tchinese: Street Fighter 6 -'13650': +"13650": installDir: Rainbow Six launch: - executable: rainbowsix.exe -'13660': +"13660": installDir: Rainbow Six 2 Rogue Spear launch: - executable: roguespear.exe -'1366540': +"1366540": installDir: Dyson Sphere Program launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: DSPGAME.exe type: default @@ -84211,16 +82894,14 @@ sc_schinese: 戴森球计划 schinese: 戴森球计划 tchinese: 戴森球計劃 -'1366560': +"1366560": installDir: MiLE HiGH TAXi launch: - config: betakey: beta1 - osarch: '64' + osarch: "64" oslist: windows description: Launch - description_loc: - english: Launch executable: MiLE HiGH TAXi.exe type: default - config: @@ -84228,223 +82909,197 @@ executable: MiLE_HiGH_TAXi.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: MiLE_HiGH_TAXi.x86_64 type: default -'1366850': +"1366850": installDir: Stuntfest launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Play next Stuntfest - description_loc: - english: Play next Stuntfest executable: JectedRivals/JectedRivals.exe type: default -'1367080': +"1367080": installDir: MobileSuitGundamBattleOperation2 launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Mobile Suit Gundam Battle Operation 2 - description_loc: - english: Mobile Suit Gundam Battle Operation 2 - japanese: 機動戦士ガンダム バトルオペレーション2 executable: start_protected_game.exe - config: - betakey: >- - dev-debug,qa-debug,compat,matching-test,master-dev-patch56,master-dev-patch57,aws_env_test,gmoport_env_test,master-dev-patch59,network_test_check,network_test_check2,master-dev-patch61,master-dev-patch63,master-dev-patch64,master-dev-patch65,master-dev-patch66,master-dev-patch67,master-dev-patch68,master-dev-patch69,debug_p70,obt_p64_patch,branchuploadtest,test_j - osarch: '64' + betakey: "dev-debug,qa-debug,compat,matching-test,master-dev-patch56,master-dev-patch57,aws_env_test,gmoport_env_test,master-dev-patch59,network_test_check,network_test_check2,master-dev-patch61,master-dev-patch63,master-dev-patch64,master-dev-patch65,master-dev-patch66,master-dev-patch67,master-dev-patch68,master-dev-patch69,debug_p70,obt_p64_patch,branchuploadtest,test_j" + osarch: "64" oslist: windows description: debug - description_loc: - english: debug - japanese: デバッグ版(最適化無し) executable: MSGBO2_Debug.exe - config: - betakey: >- - dev-debug,qa-debug,compat,press,matching-test,master-dev-patch56,ishikawa_test,master-dev-patch57,aws_env_test,gmoport_env_test,master-dev-patch59,network_test_check,network_test_check2,master-dev-patch61,master-dev-patch63,master-dev-patch64,master-dev-patch65,master-dev-patch66,master-dev-patch67,master-dev-patch68,master-dev-patch69,debug_p70,obt_p64_patch,branchuploadtest - osarch: '64' + betakey: "dev-debug,qa-debug,compat,press,matching-test,master-dev-patch56,ishikawa_test,master-dev-patch57,aws_env_test,gmoport_env_test,master-dev-patch59,network_test_check,network_test_check2,master-dev-patch61,master-dev-patch63,master-dev-patch64,master-dev-patch65,master-dev-patch66,master-dev-patch67,master-dev-patch68,master-dev-patch69,debug_p70,obt_p64_patch,branchuploadtest" + osarch: "64" oslist: windows description: debug(Opt) - description_loc: - english: debug(Opt) - japanese: デバッグ版(最適化有り) executable: MSGBO2_DebugOpt.exe - config: - betakey: >- - development,press,compat,master-dev-patch56,master-dev-patch57,aws_env_test,gmoport_env_test,master-dev-patch59,network_test_check,network_test_check2,master-dev-patch61,master-dev-patch63,master-dev-patch64,master-dev-patch65,master-dev-patch66,master-dev-patch67,master-release-patch67,master-dev-patch68,master-release-patch68,branchuploadtest - osarch: '64' + betakey: "development,press,compat,master-dev-patch56,master-dev-patch57,aws_env_test,gmoport_env_test,master-dev-patch59,network_test_check,network_test_check2,master-dev-patch61,master-dev-patch63,master-dev-patch64,master-dev-patch65,master-dev-patch66,master-dev-patch67,master-release-patch67,master-dev-patch68,master-release-patch68,branchuploadtest" + osarch: "64" oslist: windows description: release(stg-server) - description_loc: - english: release(stg-server) - japanese: リリース版(STGサーバー) executable: MSGBO2_STG.exe - config: - betakey: 'master-dev-patch67,master-release-patch67,master-dev-patch68,master-release-patch68,branchuploadtest' - osarch: '64' + betakey: "master-dev-patch67,master-release-patch67,master-dev-patch68,master-release-patch68,branchuploadtest" + osarch: "64" oslist: windows description: release(dev-server) - description_loc: - english: release(dev-server) - japanese: リリース版(DEVサーバー) executable: MSGBO2_DEV.exe - - arguments: '-server stg' + - arguments: "-server stg" config: - betakey: 'master-release-patch69,release_p70,branchuploadtest' - osarch: '64' + betakey: "master-release-patch69,release_p70,branchuploadtest" + osarch: "64" oslist: windows description: MSGBO2_Release.exe (stg-server) - description_loc: - english: MSGBO2_Release.exe (stg-server) - japanese: リリース版(STGサーバー) executable: MSGBO2_Release.exe - - arguments: '-server dev' + - arguments: "-server dev" config: - betakey: 'master-release-patch69,release_p70,branchuploadtest' - osarch: '64' + betakey: "master-release-patch69,release_p70,branchuploadtest" + osarch: "64" oslist: windows description: MSGBO2_Release.exe (dev-server) - description_loc: - english: MSGBO2_Release.exe (dev-server) - japanese: リリース版(DEVサーバー) executable: MSGBO2_Release.exe nameLocalized: japanese: 機動戦士ガンダム バトルオペレーション2 koreana: 기동전사 건담 배틀 오퍼레이션 2 schinese: 机动战士高达 激战任务2 tchinese: 機動戰士鋼彈 激戰任務2 -'1367160': +"1367160": installDir: Wetlands launch: - - arguments: '-conf dosbox_fs.conf -noconsole -exit' + - arguments: "-conf dosbox_fs.conf -noconsole -exit" config: oslist: windows description: full screen - executable: DOSBox\\DOSBox.exe + executable: "DOSBox\\\\DOSBox.exe" type: option1 - - arguments: '-conf dosbox_fs.conf -noconsole -exit' + - arguments: "-conf dosbox_fs.conf -noconsole -exit" config: oslist: macos description: full screen executable: DOSBox/dosbox.app/Contents/MacOS/DOSBox type: option1 - - arguments: '-conf dosbox_320x200.conf -noconsole -exit' + - arguments: "-conf dosbox_320x200.conf -noconsole -exit" config: oslist: windows description: windowed 320x200 - executable: DOSBox\\DOSBox.exe + executable: "DOSBox\\\\DOSBox.exe" type: option1 - - arguments: '-conf dosbox_320x200.conf -noconsole -exit' + - arguments: "-conf dosbox_320x200.conf -noconsole -exit" config: oslist: macos description: windowed 320x200 executable: DOSBox/dosbox.app/Contents/MacOS/DOSBox type: option1 - - arguments: '-conf dosbox_640x400.conf -noconsole -exit' + - arguments: "-conf dosbox_640x400.conf -noconsole -exit" config: oslist: windows description: windowed 640x400 - executable: DOSBox\\DOSBox.exe + executable: "DOSBox\\\\DOSBox.exe" type: option1 - - arguments: '-conf dosbox_640x400.conf -noconsole -exit' + - arguments: "-conf dosbox_640x400.conf -noconsole -exit" config: oslist: macos description: windowed 640x400 executable: DOSBox/dosbox.app/Contents/MacOS/DOSBox type: option1 - - arguments: '-conf dosbox_1280x800.conf -noconsole -exit' + - arguments: "-conf dosbox_1280x800.conf -noconsole -exit" config: oslist: windows description: windowed 1280x800 - executable: DOSBox\\DOSBox.exe + executable: "DOSBox\\\\DOSBox.exe" type: option1 - - arguments: '-conf dosbox_1280x800.conf -noconsole -exit' + - arguments: "-conf dosbox_1280x800.conf -noconsole -exit" config: oslist: macos description: windowed 1280x800 executable: DOSBox/dosbox.app/Contents/MacOS/DOSBox type: option1 - - arguments: '-conf dosbox_2560x1600.conf -noconsole -exit' + - arguments: "-conf dosbox_2560x1600.conf -noconsole -exit" config: oslist: windows description: windowed 2560x1600 - executable: DOSBox\\DOSBox.exe + executable: "DOSBox\\\\DOSBox.exe" type: option1 - - arguments: '-conf dosbox_2560x1600.conf -noconsole -exit' + - arguments: "-conf dosbox_2560x1600.conf -noconsole -exit" config: oslist: macos description: windowed 2560x1600 executable: DOSBox/dosbox.app/Contents/MacOS/DOSBox type: option1 -'1367170': - installDir: Planet's Edge +"1367170": + installDir: "Planet's Edge" launch: - - arguments: '-conf dosbox_fs.conf -noconsole' + - arguments: "-conf dosbox_fs.conf -noconsole" config: oslist: windows description: full screen - executable: DOSBox\\DOSBox.exe + executable: "DOSBox\\\\DOSBox.exe" type: option1 - - arguments: '-conf dosbox_fs.conf -noconsole' + - arguments: "-conf dosbox_fs.conf -noconsole" config: oslist: macos description: full screen executable: DOSBox/dosbox.app/Contents/MacOS/DOSBox type: option1 - - arguments: '-conf dosbox_320x200.conf -noconsole' + - arguments: "-conf dosbox_320x200.conf -noconsole" config: oslist: windows description: windowed 320x200 - executable: DOSBox\\DOSBox.exe + executable: "DOSBox\\\\DOSBox.exe" type: option1 - - arguments: '-conf dosbox_320x200.conf -noconsole' + - arguments: "-conf dosbox_320x200.conf -noconsole" config: oslist: macos description: windowed 320x200 executable: DOSBox/dosbox.app/Contents/MacOS/DOSBox type: option1 - - arguments: '-conf dosbox_640x400.conf -noconsole' + - arguments: "-conf dosbox_640x400.conf -noconsole" config: oslist: windows description: windowed 640x400 - executable: DOSBox\\DOSBox.exe + executable: "DOSBox\\\\DOSBox.exe" type: option1 - - arguments: '-conf dosbox_640x400.conf -noconsole' + - arguments: "-conf dosbox_640x400.conf -noconsole" config: oslist: macos description: windowed 640x400 executable: DOSBox/dosbox.app/Contents/MacOS/DOSBox type: option1 - - arguments: '-conf dosbox_1280x800.conf -noconsole' + - arguments: "-conf dosbox_1280x800.conf -noconsole" config: oslist: windows description: windowed 1280x800 - executable: DOSBox\\DOSBox.exe + executable: "DOSBox\\\\DOSBox.exe" type: option1 - - arguments: '-conf dosbox_1280x800.conf -noconsole' + - arguments: "-conf dosbox_1280x800.conf -noconsole" config: oslist: macos description: windowed 1280x800 executable: DOSBox/dosbox.app/Contents/MacOS/DOSBox type: option1 - - arguments: '-conf dosbox_2560x1600.conf -noconsole' + - arguments: "-conf dosbox_2560x1600.conf -noconsole" config: oslist: windows description: windowed 2560x1600 - executable: DOSBox\\DOSBox.exe + executable: "DOSBox\\\\DOSBox.exe" type: option1 - - arguments: '-conf dosbox_2560x1600.conf -noconsole' + - arguments: "-conf dosbox_2560x1600.conf -noconsole" config: oslist: macos description: windowed 2560x1600 executable: DOSBox/dosbox.app/Contents/MacOS/DOSBox type: option1 -'1367300': +"1367300": installDir: Blade Assault launch: - executable: BladeAssault.exe @@ -84452,17 +83107,17 @@ nameLocalized: japanese: Blade Evolution schinese: 刀锋战神 -'1367320': +"1367320": installDir: Close Combat Cross of Iron launch: - executable: Launcher.exe type: default -'1367330': +"1367330": installDir: Close Combat Modern Tactics launch: - executable: Launcher.exe type: default -'1367550': +"1367550": installDir: Kingdom Rush Vengeance launch: - config: @@ -84473,109 +83128,107 @@ oslist: macos executable: Kingdom Rush Vengeance.app/Contents/MacOS/Kingdom Rush Vengeance type: default -'1367590': +"1367590": installDir: Tormented Souls launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TormentedSouls.exe type: default -'1367690': - installDir: Tony Stewart's All-American Racing +"1367690": + installDir: "Tony Stewart's All-American Racing" launch: - config: - osarch: '64' + osarch: "64" oslist: windows - description: Play Tony Stewart's All-American Racing + description: "Play Tony Stewart's All-American Racing" executable: AllAmericanRacing.exe type: default - - arguments: '-MGI-reset-graphics-settings' + - arguments: "-MGI-reset-graphics-settings" config: - osarch: '64' + osarch: "64" oslist: windows description: Reset Graphic Settings executable: AllAmericanRacing.exe type: none - config: - osarch: '64' + osarch: "64" oslist: windows description: Delete Save Data executable: DeleteSaveData.bat type: none -'1368030': +"1368030": installDir: ANNOMutationem launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Anno.exe type: default nameLocalized: - english: 'ANNO: Mutationem' - japanese: 'ANNO: Mutationem アノー:ミューテーショネム' - koreana: '기원: 변이' - schinese: '纪元: 变异' - tchinese: '紀元: 變異' -'1368130': + english: "ANNO: Mutationem" + japanese: "ANNO: Mutationem アノー:ミューテーショネム" + koreana: "기원: 변이" + schinese: "纪元: 变异" + tchinese: "紀元: 變異" +"1368130": installDir: ParkBeyond launch: - description: Game - description_loc: - english: Game executable: ParkBeyond.exe nameLocalized: koreana: 파크 비욘드 schinese: 狂想乐园 tchinese: 狂想樂園 -'1368340': +"1368340": installDir: Beneath a Steel Sky launch: - - arguments: '--no-console --savepath=Saves -c BASS.ini BASS' + - arguments: "--no-console --savepath=Saves -c BASS.ini BASS" config: oslist: windows executable: ScummVM/scummvm.exe type: default - - arguments: '--savepath=Saves -c BASS.ini BASS' + - arguments: "--savepath=Saves -c BASS.ini BASS" config: - osarch: '64' + osarch: "64" oslist: linux executable: ScummVM/scummvm_x86_64 type: default - - arguments: '--savepath=Saves -c BASS.ini BASS' + - arguments: "--savepath=Saves -c BASS.ini BASS" config: - osarch: '32' + osarch: "32" oslist: linux executable: ScummVM/scummvm_i386 type: default -'1368430': +"1368430": installDir: Streets Of Kamurocho launch: - config: oslist: windows executable: Streets Of Kamurocho.exe type: default -'1368440': +"1368440": installDir: Armor Of Heroes launch: - executable: ArmorOfHeroes.exe type: none -'1368450': +"1368450": installDir: Endless Zone launch: - config: oslist: windows executable: EndlessZone.exe type: default -'1368460': +"1368460": installDir: Golden Axed launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: GAXD.exe type: default -'1368820': +"1368820": installDir: RollerCoaster Tycoon 3 Complete Edition launch: - config: @@ -84586,32 +83239,32 @@ oslist: macos executable: RollerCoaster Tycoon 3 Platinum.app type: none -'1368850': +"1368850": installDir: Cursed Treasure 2 Ultimate Edition launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: cursed-treasure-2.exe type: default nameLocalized: schinese: 被诅咒的宝藏2 终极版 -'1368870': +"1368870": installDir: Field of Glory II Medieval launch: - executable: Launcher.exe type: default -'1368910': +"1368910": installDir: Super Mecha Champions launch: - executable: launcher.exe type: none -'1369370': +"1369370": installDir: Combat Mission Shock Force 2 launch: - executable: Launcher.exe type: default -'1369520': +"1369520": installDir: Strangeland launch: - config: @@ -84621,8 +83274,6 @@ - config: oslist: windows description: Settings - description_loc: - english: Settings executable: winsetup.exe type: config - config: @@ -84633,30 +83284,30 @@ oslist: macos executable: Strangeland.app/Contents/MacOS/AGS type: default -'1369630': +"1369630": installDir: ENDER LILIES launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: EnderLilies.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: EnderLilies.sh type: default -'1369760': - installDir: '[NINJA GAIDEN Master Collection] NINJA GAIDEN 3 Razor''s Edge' +"1369760": + installDir: "[NINJA GAIDEN Master Collection] NINJA GAIDEN 3 Razor's Edge" launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: NINJA GAIDEN 3 Razor's Edge.exe + executable: "NINJA GAIDEN 3 Razor's Edge.exe" type: default nameLocalized: - japanese: '【NINJA GAIDEN: マスターコレクション】 NINJA GAIDEN 3: Razor''s Edge' -'13700': + japanese: "【NINJA GAIDEN: マスターコレクション】 NINJA GAIDEN 3: Razor's Edge" +"13700": installDir: Savage 2 A Tortured Soul launch: - config: @@ -84671,18 +83322,16 @@ oslist: macos description: Launch Mac executable: Savage 2 -'1370050': +"1370050": installDir: Trek to Yomi launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Start TrekToYomi.exe - description_loc: - english: Start TrekToYomi.exe executable: TrekToYomi.exe type: default -'1370140': +"1370140": installDir: Kao the Kangaroo launch: - executable: Kao the Kangaroo.exe @@ -84690,80 +83339,64 @@ nameLocalized: polish: Kangurek Kao schinese: 袋鼠闯天关 -'1370170': +"1370170": installDir: Diorama Builder launch: - config: oslist: windows description: Diorama Builder - Win (Std Version) - description_loc: - english: Diorama Builder - Win (Std Version) - executable: \\Diorama Builder\\Diorama Builder.exe + executable: "\\\\Diorama Builder\\\\Diorama Builder.exe" type: option1 - config: oslist: macos description: Diorama Builder - macOS (Std Version) - description_loc: - english: Diorama Builder - macOS (Std Version) - executable: Diorama Builder.app\\Contents\\MacOS\\Diorama Builder + executable: "Diorama Builder.app\\\\Contents\\\\MacOS\\\\Diorama Builder" type: option1 - config: oslist: windows description: Diorama Builder - Win (Tilt Five™ Version) - description_loc: - english: Diorama Builder - Win (Tilt Five™ Version) - executable: \\Diorama Builder - Tilt5\\Diorama Builder.exe + executable: "\\\\Diorama Builder - Tilt5\\\\Diorama Builder.exe" type: option1 -'1370850': +"1370850": installDir: elma2 launch: - config: oslist: windows executable: ElmaLauncher/ElmaLauncher.exe type: default -'1371580': +"1371580": installDir: Myth of Empires launch: - - arguments: '-ServerListOss' + - arguments: "-ServerListOss" config: - osarch: '64' + osarch: "64" oslist: windows - executable: MOE\\Binaries\\Win64\\ACE-Launcher64.exe + executable: "MOE\\\\Binaries\\\\Win64\\\\ACE-Launcher64.exe" type: default - - arguments: '-ListerHost=\"101.35.145.199:8098\"' + - arguments: "-ListerHost=\\\"101.35.145.199:8098\\\"" config: betakey: ywtest description: 运维测试 - description_loc: - english: 运维测试 - executable: MOE\\Binaries\\Win64\\ACE-Launcher64.exe - - arguments: >- - -ListerHost=\"101.35.145.199:8098\" -DBLogBaseURL=\"http://175.24.255.166:8082\" - -MarketClientURL=175.24.255.166:9991 + executable: "MOE\\\\Binaries\\\\Win64\\\\ACE-Launcher64.exe" + - arguments: "-ListerHost=\\\"101.35.145.199:8098\\\" -DBLogBaseURL=\\\"http://175.24.255.166:8082\\\" -MarketClientURL=175.24.255.166:9991" config: betakey: qatest oslist: windows description: QA-test - description_loc: - english: QA-test - executable: MOE\\Binaries\\Win64\\ACE-Launcher64.exe - - arguments: >- - -ListerHost=\"101.35.145.199:8098\" -DBLogBaseURL=\"http://175.24.255.166:8082\" - -MarketClientURL=175.24.255.166:9991 + executable: "MOE\\\\Binaries\\\\Win64\\\\ACE-Launcher64.exe" + - arguments: "-ListerHost=\\\"101.35.145.199:8098\\\" -DBLogBaseURL=\\\"http://175.24.255.166:8082\\\" -MarketClientURL=175.24.255.166:9991" config: betakey: qa-test oslist: windows description: QA-TEST - description_loc: - english: QA-TEST - executable: MOE\\Binaries\\Win64\\ACE-Launcher64.exe + executable: "MOE\\\\Binaries\\\\Win64\\\\ACE-Launcher64.exe" nameLocalized: schinese: 帝国神话 tchinese: 帝國神話 -'1371640': +"1371640": nameLocalized: arabic: اميرة -'1371660': +"1371660": installDir: Time For You launch: - config: @@ -84778,22 +83411,22 @@ oslist: linux executable: TIME_FOR_YOU(0.10.0).sh type: default -'1371690': +"1371690": installDir: GRAVEN launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Praest.exe type: none - - arguments: '-d3d11' + - arguments: "-d3d11" config: - osarch: '64' + osarch: "64" oslist: windows description: D3D11 - executable: Praest\\Binaries\\Win64\\Praest-Win64-Shipping.exe + executable: "Praest\\\\Binaries\\\\Win64\\\\Praest-Win64-Shipping.exe" type: none -'1371720': +"1371720": installDir: Card Shark launch: - config: @@ -84802,32 +83435,26 @@ type: default - config: oslist: macos - executable: Card_shark.app\\Contents\\MacOS\\Card_shark + executable: "Card_shark.app\\\\Contents\\\\MacOS\\\\Card_shark" type: default -'1372110': - installDir: JoJo's Bizarre Adventure All-Star Battle R +"1372110": + installDir: "JoJo's Bizarre Adventure All-Star Battle R" launch: - executable: start_protected_game.exe - config: - betakey: >- - development, dev-debug, dev-debug-preview, dev-release, dev-release-preview, dev-debug-patched, - dev-debug-patched-preview, dev-release-patched, dev-release-patched-preview + betakey: "development, dev-debug, dev-debug-preview, dev-release, dev-release-preview, dev-debug-patched, dev-debug-patched-preview, dev-release-patched, dev-release-patched-preview" description: Play without Easy Anti-Cheat - description_loc: - english: Play without Easy Anti-Cheat executable: ASBR.exe - config: - betakey: 'build-review, ccs-debug, compat, usk_build' + betakey: "build-review, ccs-debug, compat, usk_build" description: Play without Easy Anti-Cheat - description_loc: - english: Play without Easy Anti-Cheat executable: ASB.exe nameLocalized: japanese: ジョジョの奇妙な冒険 オールスターバトル R koreana: 죠죠의 기묘한 모험 올 스타 배틀 R schinese: JOJO的奇妙冒险 群星之战 重制版 tchinese: JOJO的奇妙冒險 群星之戰 重製版 -'1372280': +"1372280": installDir: MELTY BLOOD TYPE LUMINA launch: - config: @@ -84836,14 +83463,12 @@ type: none - config: oslist: windows - ownsdlc: '1590580' + ownsdlc: "1590580" description: MELTY BLOOD ARCHIVES - description_loc: - english: MELTY BLOOD ARCHIVES executable: Viewer/MELTY BLOOD ARCHIVES.exe type: option1 workingdir: Viewer -'1372300': +"1372300": installDir: Iwaihime launch: - executable: iw.exe @@ -84852,7 +83477,7 @@ japanese: 祝姫【国際版】 schinese: 祝姫 tchinese: 祝姫 (Iwaihime) -'1372320': +"1372320": installDir: Cloud Gardens launch: - config: @@ -84863,7 +83488,7 @@ oslist: macos executable: Cloud Gardens.app type: default -'1372810': +"1372810": installDir: Teamfight Manager launch: - config: @@ -84876,16 +83501,16 @@ type: none nameLocalized: koreana: 팀파이트 매니저 -'1372880': {} -'1373020': - installDir: Fox's Holiday 狐の假期 +"1372880": {} +"1373020": + installDir: "Fox's Holiday 狐の假期" launch: - executable: Fox.exe type: none nameLocalized: schinese: 狐の假期 -'1373090': {} -'1373430': +"1373090": {} +"1373430": installDir: Leisure Suit Larry - Wet Dreams Dry Twice launch: - config: @@ -84894,9 +83519,9 @@ type: default - config: oslist: macos - executable: Leisure Suit Larry - Wet Dreams Dry Twice.app\\Contents\\MacOS\\Leisure Suit Larry - Wet Dreams Dry Twice + executable: "Leisure Suit Larry - Wet Dreams Dry Twice.app\\\\Contents\\\\MacOS\\\\Leisure Suit Larry - Wet Dreams Dry Twice" type: default -'1373510': +"1373510": installDir: BloodRayne Terminal Cut launch: - config: @@ -84906,18 +83531,18 @@ - config: betakey: legacy oslist: windows - description: 'Legacy version (deprecated, no developer support)' - executable: Legacy Version\\rayne.exe + description: "Legacy version (deprecated, no developer support)" + executable: "Legacy Version\\\\rayne.exe" type: option1 - workingdir: Legacy Version\\ + workingdir: "Legacy Version\\\\" - config: betakey: internal-test oslist: windows description: Legacy version (unsupported) - executable: Legacy Version\\rayne.exe + executable: "Legacy Version\\\\rayne.exe" type: option1 - workingdir: Legacy Version\\ -'1373550': + workingdir: "Legacy Version\\\\" +"1373550": installDir: BloodRayne 2 Terminal Cut launch: - config: @@ -84927,33 +83552,29 @@ - config: betakey: legacy oslist: windows - description: 'Legacy version (deprecated, no developer support)' - executable: Legacy Version\\br2.exe + description: "Legacy version (deprecated, no developer support)" + executable: "Legacy Version\\\\br2.exe" type: option1 - workingdir: Legacy Version\\ + workingdir: "Legacy Version\\\\" - config: betakey: internal-test oslist: windows description: Legacy version (unsupported) - executable: Legacy Version\\br2.exe + executable: "Legacy Version\\\\br2.exe" type: option1 - workingdir: Legacy Version\\ -'1373560': + workingdir: "Legacy Version\\\\" +"1373560": installDir: Super Chopper launch: - config: oslist: windows description: Play Super Chopper - description_loc: - english: Play Super Chopper executable: SuperChopper.exe type: none - description: Launch Level Editor - description_loc: - english: Launch Level Editor executable: SuperChopperEditor.exe type: none -'1373600': +"1373600": installDir: Day of the Dead Solitaire Collection launch: - config: @@ -84968,59 +83589,59 @@ oslist: linux executable: Day of the Dead - Solitaire.x86_64 type: default -'1373770': +"1373770": installDir: Sea Legends launch: - - arguments: '-conf dosbox_w_1280x800.conf -conf dosbox_auto_launch.conf -noconsole -exit' + - arguments: "-conf dosbox_w_1280x800.conf -conf dosbox_auto_launch.conf -noconsole -exit" config: oslist: windows description: windowed 1280x800 - executable: dosbox_windows\\DOSBox.exe + executable: "dosbox_windows\\\\DOSBox.exe" type: option1 - workingdir: dosbox_windows\\ - - arguments: '-conf dosbox_w_640x400.conf -conf dosbox_auto_launch.conf -noconsole -exit' + workingdir: "dosbox_windows\\\\" + - arguments: "-conf dosbox_w_640x400.conf -conf dosbox_auto_launch.conf -noconsole -exit" config: oslist: windows description: windowed 640x400 - executable: dosbox_windows\\DOSBox.exe + executable: "dosbox_windows\\\\DOSBox.exe" type: option1 - workingdir: dosbox_windows\\ - - arguments: '-conf dosbox_w_320x200.conf -conf dosbox_auto_launch.conf -noconsole -exit' + workingdir: "dosbox_windows\\\\" + - arguments: "-conf dosbox_w_320x200.conf -conf dosbox_auto_launch.conf -noconsole -exit" config: oslist: windows description: windowed 320x200 - executable: dosbox_windows\\DOSBox.exe + executable: "dosbox_windows\\\\DOSBox.exe" type: option1 - workingdir: dosbox_windows\\ - - arguments: '-conf dosbox_w_2560x1600.conf -conf dosbox_auto_launch.conf -noconsole -exit' + workingdir: "dosbox_windows\\\\" + - arguments: "-conf dosbox_w_2560x1600.conf -conf dosbox_auto_launch.conf -noconsole -exit" config: oslist: windows description: windowed 2560x1600 - executable: dosbox_windows\\DOSBox.exe + executable: "dosbox_windows\\\\DOSBox.exe" type: option1 - workingdir: dosbox_windows\\ - - arguments: '-conf dosbox_fs.conf -conf dosbox_auto_launch.conf -noconsole -exit' + workingdir: "dosbox_windows\\\\" + - arguments: "-conf dosbox_fs.conf -conf dosbox_auto_launch.conf -noconsole -exit" config: oslist: windows description: full screen - executable: dosbox_windows\\DOSBox.exe + executable: "dosbox_windows\\\\DOSBox.exe" type: option1 - workingdir: dosbox_windows\\ -'1374350': + workingdir: "dosbox_windows\\\\" +"1374350": installDir: Tiny Troopers Global Ops launch: - executable: Tiny Troopers Global Ops.exe nameLocalized: schinese: 小小部队:全球行动 tchinese: 小小部队:全球行动 -'1374840': +"1374840": installDir: Dark Deity launch: - config: oslist: windows executable: launcher/freedom-launcher.exe type: default -'1374930': +"1374930": installDir: Black Geyser Couriers of Darkness launch: - config: @@ -85035,19 +83656,19 @@ oslist: macos executable: BlackGeyser.app/Contents/MacOS/BlackGeyser type: default -'1374970': +"1374970": installDir: Moonscars launch: - executable: Moonscars.exe type: default -'1374990': +"1374990": installDir: PAW Patrol Mighty Pups Save Adventure Bay launch: - config: oslist: windows executable: pp2.exe type: default -'1375400': +"1375400": installDir: Makaimura_GG_RE launch: - config: @@ -85058,7 +83679,7 @@ japanese: 帰ってきた 魔界村 schinese: 经典回归 魔界村 tchinese: 經典回歸 魔界村 -'1376760': +"1376760": installDir: Life of Delta launch: - config: @@ -85067,25 +83688,19 @@ type: default - config: oslist: windows - ownsdlc: '2176630' + ownsdlc: "2176630" description: Bonus Content - description_loc: - english: Bonus Content executable: open_bonus_win.bat - config: oslist: macos - ownsdlc: '2176630' + ownsdlc: "2176630" description: Bonus Content - description_loc: - english: Bonus Content executable: open_bonus_osx.sh - config: betakey: testing oslist: linux - ownsdlc: '2176630' - description: ' Bonus Content' - description_loc: - english: ' Bonus Content' + ownsdlc: "2176630" + description: " Bonus Content" executable: open_bonus_lin.sh - config: oslist: macos @@ -85094,7 +83709,7 @@ nameLocalized: schinese: Life of Delta 小丁历险记 tchinese: Life of Delta 德爾塔的生存之旅 -'1376910': +"1376910": installDir: Super_Catboy launch: - config: @@ -85107,7 +83722,7 @@ nameLocalized: schinese: 超级猫猫哥 tchinese: 超級貓貓哥 -'1377360': +"1377360": installDir: VampiresMelody launch: - config: @@ -85118,7 +83733,7 @@ oslist: macos executable: VampiresMelody.app/Contents/MacOS/VampiresMelody type: none -'1377580': +"1377580": installDir: Soulworker_TWN launch: - arguments: SoulWorker.exe --ip 20.94.35.245 --ip 20.88.118.59 --port 10000 @@ -85126,15 +83741,15 @@ oslist: windows executable: Soulworker_Launcher.exe type: default -'1377920': +"1377920": installDir: Big Mutha Truckers 2 launch: - config: oslist: windows - executable: Bin\\bmt2.exe + executable: "Bin\\\\bmt2.exe" type: default - workingdir: Bin\\ -'1378020': + workingdir: "Bin\\\\" +"1378020": installDir: Beasts of Maravilla Island launch: - config: @@ -85149,7 +83764,7 @@ japanese: マラビラ島の動物たち / Beasts of Maravilla Island schinese: 马拉维拉岛的奇禽异兽 / Beasts of Maravilla Island tchinese: 馬拉維拉島的奇禽異獸 / Beasts of Maravilla Island -'1378040': +"1378040": installDir: Tear and the Library of Labyrinths launch: - executable: Game.exe @@ -85158,7 +83773,7 @@ japanese: 魔導士ティアと不思議な大図書館 schinese: 魔导士蒂亚与不可思议的大图书馆 tchinese: 魔導士蒂亞與不可思議的大圖書館 -'1378260': +"1378260": installDir: Voodoo Kid launch: - config: @@ -85167,50 +83782,50 @@ type: default - config: oslist: macos - executable: vdk.app\\Contents\\MacOS\\vdk + executable: "vdk.app\\\\Contents\\\\MacOS\\\\vdk" type: default - config: oslist: linux executable: vdk.x86_64 type: default nameLocalized: - french: Le Voleur d'Esprits + french: "Le Voleur d'Esprits" latam: Vudú Kid spanish: Vudú Kid -'1378290': +"1378290": installDir: The Citadel launch: - config: oslist: windows executable: the_citadel.exe type: default -'1378370': +"1378370": installDir: Fallen Knight launch: - config: oslist: windows executable: Fallen Knight.exe type: none -'1378800': +"1378800": installDir: Squadron 51 launch: - - arguments: '-nohmd' + - arguments: "-nohmd" config: betakey: default oslist: windows executable: Squad51.exe type: default - - arguments: '-nohmd' + - arguments: "-nohmd" config: betakey: private-test executable: Squad51Private.exe type: default - - arguments: '-nohmd' + - arguments: "-nohmd" config: betakey: in-person-events executable: Squad51DemoForEvents.exe type: default - - arguments: '-nohmd' + - arguments: "-nohmd" config: betakey: private-test-without-qa-features executable: Squad51.exe @@ -85218,7 +83833,7 @@ nameLocalized: brazilian: Esquadrão 51 Contra os Discos Voadores schinese: 劲爆51飞行队(Squad 51 vs. the Flying Saucers) -'1378890': +"1378890": installDir: Indoorlands launch: - config: @@ -85233,11 +83848,11 @@ oslist: linux executable: Indoorlands.x86_64 type: default -'1378990': +"1378990": installDir: Crash Bandicoot 4 launch: - executable: Lava/Binaries/Win64/CrashBandicoot4.exe -'1379550': +"1379550": installDir: TUSFitG launch: - config: @@ -85246,7 +83861,7 @@ type: default nameLocalized: polish: Pendrive znaleziony w trawie -'1379560': +"1379560": installDir: Steven Universe Unleash the Light launch: - config: @@ -85255,57 +83870,57 @@ type: default - config: oslist: macos - executable: Unleash the Light.app\\Contents\\MacOS\\Unleash the Light + executable: "Unleash the Light.app\\\\Contents\\\\MacOS\\\\Unleash the Light" type: default nameLocalized: - brazilian: 'Steven Universo: Liberte a Luz' - french: 'Steven Universe: Déchaîne la lumière' - german: 'Steven Universe: Befreier des Lichts' - italian: 'Steven Universe: Scatena la luce' - japanese: 'スティーブン・ユニバース: アンリーシュ・ザ・ライト、光を放て!' - koreana: '스티븐 유니버스: 언리쉬 더 라이트' - latam: 'Steven Universe: Desata la luz' - russian: 'Steven Universe: Освободи свет' - schinese: '史蒂芬宇宙: 光明坦途' - spanish: 'Steven Universe: Desata la luz' + brazilian: "Steven Universo: Liberte a Luz" + french: "Steven Universe: Déchaîne la lumière" + german: "Steven Universe: Befreier des Lichts" + italian: "Steven Universe: Scatena la luce" + japanese: "スティーブン・ユニバース: アンリーシュ・ザ・ライト、光を放て!" + koreana: "스티븐 유니버스: 언리쉬 더 라이트" + latam: "Steven Universe: Desata la luz" + russian: "Steven Universe: Освободи свет" + schinese: "史蒂芬宇宙: 光明坦途" + spanish: "Steven Universe: Desata la luz" tchinese: 《神臍小捲毛: 綻放光明》 - turkish: 'Steven Universe: Işığı Serbest Bırak' -'1379630': + turkish: "Steven Universe: Işığı Serbest Bırak" +"1379630": installDir: RealRTCW launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: RealRTCW executable: RealRTCW.x64.exe type: option1 - config: - osarch: '64' + osarch: "64" oslist: windows description: RealRTCWCoop executable: coop/RTCWCoop.x64.exe type: option3 -'1379830': +"1379830": installDir: Cyber Crush 2069 launch: - executable: CyberCrush.exe type: none -'1379870': +"1379870": installDir: Tribal Hunter launch: - config: oslist: windows executable: Tribal Hunter.exe type: default -'1380060': +"1380060": installDir: Urban Trial Tricky launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: UrbanTrialTricky.exe type: default -'1380220': +"1380220": installDir: Starsand launch: - config: @@ -85314,29 +83929,29 @@ type: default nameLocalized: schinese: 星辰沙海 -'1380260': +"1380260": installDir: Space Empires Starfury launch: - config: oslist: windows executable: starfury.exe type: default -'1380390': +"1380390": installDir: Dread X Collection 2 launch: - - arguments: '-screen-fullscreen 1' + - arguments: "-screen-fullscreen 1" config: oslist: windows description: Fullscreen Mode executable: Dread X Collection 2.exe type: option1 - - arguments: '-screen-fullscreen 0' + - arguments: "-screen-fullscreen 0" config: oslist: windows description: Windowed Mode executable: Dread X Collection 2.exe type: option1 -'1380420': +"1380420": installDir: Grow Song of the Evertree launch: - config: @@ -85344,10 +83959,10 @@ executable: Grow.exe type: default nameLocalized: - koreana: '그로우: 에버트리의 노래 / Grow: Song of the Evertree' - schinese: '成长物语:永恒树之歌 / Grow: Song of the Evertree' - tchinese: '成長物語 : 永恆樹之歌 / Grow: Song of the Evertree' -'1380910': + koreana: "그로우: 에버트리의 노래 / Grow: Song of the Evertree" + schinese: "成长物语:永恒树之歌 / Grow: Song of the Evertree" + tchinese: "成長物語 : 永恆樹之歌 / Grow: Song of the Evertree" +"1380910": installDir: Stardeus launch: - config: @@ -85355,7 +83970,7 @@ executable: Stardeus.exe type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: Stardeus type: none @@ -85363,91 +83978,81 @@ oslist: macos executable: Stardeus.app type: none -'1380940': {} -'1381850': +"1380940": {} +"1381850": installDir: Strategic Mind Fight for Freedom launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: StrategicMind.exe type: none nameLocalized: schinese: 战略思维:为自由而战 -'1382070': +"1382070": installDir: Viewfinder launch: - config: oslist: windows description: Launch full build - description_loc: - english: Launch full build executable: Viewfinder.exe - - arguments: '-demo' + - arguments: "-demo" config: betakey: unstable description: Launch demo - description_loc: - english: Launch demo executable: Viewfinder.exe - - arguments: '-demo' + - arguments: "-demo" config: betakey: stable description: Launch demo - description_loc: - english: Launch demo executable: Viewfinder.exe - config: betakey: demo-pc-steam oslist: windows description: Launch Demo - description_loc: - english: Launch Demo executable: Viewfinder_Demo.exe -'1382200': +"1382200": installDir: Liquidators launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Liquidatortest.exe type: default -'1382330': +"1382330": installDir: P5S launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: game.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows - ownsdlc: '1523810' + ownsdlc: "1523810" description: Play Persona 5 Strikers Bonus Content - description_loc: - english: Play Persona 5 Strikers Bonus Content - executable: EXTRAS\\Persona 5 Strikers Bonus Content.exe + executable: "EXTRAS\\\\Persona 5 Strikers Bonus Content.exe" type: none - workingdir: EXTRAS\\ + workingdir: "EXTRAS\\\\" nameLocalized: japanese: ペルソナ5 スクランブル ザ ファントム ストライカーズ koreana: 페르소나 5 스크램블 더 팬텀 스트라이커즈 tchinese: 女神異聞錄5 亂戰:魅影攻手 -'1382790': +"1382790": installDir: Demons of Asteborg launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: steam_launcher.exe type: default -'1383010': +"1383010": installDir: BalconingSimulator2020 launch: - executable: Balconing Simulator 2020.exe type: none -'1383250': +"1383250": installDir: Please Fix The Road launch: - config: @@ -85455,7 +84060,7 @@ executable: Please Fix The Road.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Please Fix The Road.x86_64 type: default @@ -85464,78 +84069,78 @@ executable: Please Fix The Road.app type: default nameLocalized: - koreana: 'Please Fix The Road: 도로를 고쳐주세요' -'1383700': + koreana: "Please Fix The Road: 도로를 고쳐주세요" +"1383700": installDir: Jet Kave Adventure launch: - config: oslist: windows executable: JetKaveAdventure.exe type: default -'1383960': +"1383960": installDir: Nickelodeon Kart Racers 2 Grand Prix launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: GameSteamDRM.exe type: default -'1383970': +"1383970": installDir: Captain Sabertooth & the Magic Diamond launch: - config: oslist: windows executable: KapteinSabeltann.exe type: none -'1384070': {} -'1384160': +"1384070": {} +"1384160": installDir: GUILTY GEAR STRIVE launch: - config: betakey: debug - osarch: '64' + osarch: "64" oslist: windows executable: GGST.exe type: default -'1384700': +"1384700": installDir: A Gay Love Story About Gay Love launch: - executable: game.exe type: none -'1384770': +"1384770": installDir: Scrutinized launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Scrutinized.exe type: default -'1385100': +"1385100": installDir: Insurmountable launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Insurmountable.exe type: default nameLocalized: schinese: 孤山难越 Insurmountable -'1385320': +"1385320": installDir: Pipemania launch: - config: oslist: windows - executable: \\_exe\\Pipemania.exe + executable: "\\\\_exe\\\\Pipemania.exe" type: default - workingdir: \\_exe\\ -'1385700': + workingdir: "\\\\_exe\\\\" +"1385700": installDir: True Hate launch: - config: oslist: windows executable: True Hate.exe type: default -'1386620': +"1386620": installDir: Anuchard launch: - config: @@ -85546,64 +84151,64 @@ - config: betakey: test_launcher executable: FreedomLauncher/freedom-launcher.exe -'1386710': +"1386710": installDir: TheHeartBeat launch: - config: oslist: windows executable: TheHeartBeat.exe type: default -'1386750': {} -'1386780': +"1386750": {} +"1386780": installDir: City of Gangsters launch: - config: oslist: windows executable: CoG.exe type: default -'1386870': +"1386870": installDir: Wraith The Oblivion - Afterlife launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Jukebox.exe type: vr -'1386900': +"1386900": installDir: Observer System Redux launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch game - executable: Tokio\\Binaries\\Win64\\ObserverSystemRedux.exe + executable: "Tokio\\\\Binaries\\\\Win64\\\\ObserverSystemRedux.exe" type: default - workingdir: Tokio\\Binaries\\Win64 - - arguments: '-dx11' + workingdir: "Tokio\\\\Binaries\\\\Win64" + - arguments: "-dx11" config: - osarch: '64' + osarch: "64" oslist: windows - description: 'Observer: System Redux (DX11)' - executable: Tokio\\Binaries\\Win64\\ObserverSystemRedux.exe + description: "Observer: System Redux (DX11)" + executable: "Tokio\\\\Binaries\\\\Win64\\\\ObserverSystemRedux.exe" type: option1 - workingdir: Tokio\\Binaries\\Win64 - - arguments: '-dx12' + workingdir: "Tokio\\\\Binaries\\\\Win64" + - arguments: "-dx12" config: - osarch: '64' + osarch: "64" oslist: windows - description: 'Observer: System Redux (DX12)' - executable: Tokio\\Binaries\\Win64\\ObserverSystemRedux.exe + description: "Observer: System Redux (DX12)" + executable: "Tokio\\\\Binaries\\\\Win64\\\\ObserverSystemRedux.exe" type: option2 - workingdir: Tokio\\Binaries\\Win64 -'1386950': + workingdir: "Tokio\\\\Binaries\\\\Win64" +"1386950": installDir: HMB launch: - config: oslist: windows executable: Heavy Metal Babes.exe type: default -'1387190': {} -'1387900': +"1387190": {} +"1387900": installDir: Duru launch: - config: @@ -85612,29 +84217,29 @@ - config: oslist: macos executable: Duru_Mac.app -'1388550': +"1388550": nameLocalized: schinese: 人类一败涂地2 tchinese: 人類一敗塗地2 -'1388590': +"1388590": installDir: Yakuza 6 - The Song of Life launch: - executable: Yakuza6.exe type: default -'1388770': +"1388770": installDir: Cruelty Squad launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: crueltysquad.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: crueltysquad32.exe type: default -'1388860': +"1388860": installDir: Unmemory launch: - config: @@ -85652,14 +84257,14 @@ description: Linux executable: Unmemory.x86_64 type: none -'1388870': +"1388870": installDir: Arcade launch: - config: oslist: windows executable: ArcadeParadise.exe type: default -'1388880': +"1388880": installDir: Doki Doki Literature Club Plus launch: - config: @@ -85670,15 +84275,15 @@ oslist: macos executable: Doki Doki Literature Club Plus.app type: none -'1389020': +"1389020": installDir: The Cleaner launch: - executable: The Cleaner.exe -'1389550': +"1389550": installDir: Mind Scanners launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Mind Scanners.exe type: default @@ -85688,15 +84293,15 @@ type: default nameLocalized: schinese: 精神检验师 -'1389950': +"1389950": installDir: Amalgam launch: - - arguments: '-game Amalgam' + - arguments: "-game Amalgam" config: oslist: windows executable: hl2.exe type: default -'1390190': +"1390190": installDir: APICO launch: - config: @@ -85709,43 +84314,41 @@ type: default - config: oslist: macos - executable: APICO.app\\Contents\\MacOS\\Mac_Runner + executable: "APICO.app\\\\Contents\\\\MacOS\\\\Mac_Runner" type: default -'1390350': +"1390350": installDir: Webbed launch: - executable: webbed.exe type: default -'1390410': +"1390410": installDir: Midnight Fight Express launch: - config: oslist: windows executable: MidnightFightExpress.exe type: default -'1390670': +"1390670": installDir: Leyak launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Leyak.exe type: default - - arguments: '-d3d11' + - arguments: "-d3d11" config: - osarch: '64' + osarch: "64" oslist: windows description: Escape from Naraka with DirectX 11 - description_loc: - english: Escape from Naraka with DirectX 11 executable: Leyak.exe type: option1 -'1390740': +"1390740": installDir: Yogurt! launch: - executable: Yogurt!!/Yogurt!.exe type: none -'1390860': +"1390860": installDir: ReAward launch: - config: @@ -85754,56 +84357,53 @@ type: default - config: oslist: windows - ownsdlc: '1864760' - description: 'Re:Award -More Corridor 1-(DLC)' - description_loc: - english: 'Re:Award -More Corridor 1-(DLC)' - japanese: 'Re:Award -もっと廊下 1-(DLC)' + ownsdlc: "1864760" + description: "Re:Award -More Corridor 1-(DLC)" executable: DLC/ReAward -More Corridor 1-.exe type: option1 nameLocalized: - english: 'Re: Award' -'1392060': + english: "Re: Award" +"1392060": installDir: Erzurum launch: - executable: MyProject.exe type: none -'1392150': +"1392150": installDir: Hover Attack launch: - executable: HoverAttack.exe type: none -'1392700': +"1392700": installDir: AGOS launch: - - arguments: '-uplay_steam_mode -uplay' + - arguments: "-uplay_steam_mode -uplay" config: oslist: windows executable: AGOS.exe type: vr -'1392820': +"1392820": installDir: Milk inside a bag of milk inside a bag of milk launch: - config: oslist: windows executable: PMKM.exe type: none -'1392860': +"1392860": nameLocalized: japanese: リトルナイトメア3 koreana: 리틀 나이트메어 3 schinese: 小小梦魇3 tchinese: 小小夢魘3 -'1392960': +"1392960": installDir: STORY OF SEASONS Pioneers of Olive Town launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: STORY OF SEASONS Pioneers of Olive Town.exe type: none - config: - osarch: '64' + osarch: "64" oslist: windows executable: SOSPoOTLauncher.exe type: config @@ -85812,7 +84412,7 @@ koreana: 목장이야기 올리브 타운과 희망의 대지 schinese: 牧场物语 橄榄镇与希望的大地 tchinese: 牧場物語 橄欖鎮與希望的大地 -'1393370': +"1393370": installDir: Actraiser Renaissance launch: - config: @@ -85821,14 +84421,14 @@ type: default nameLocalized: japanese: アクトレイザー・ルネサンス -'1393410': +"1393410": installDir: Seek Girl V launch: - config: oslist: windows executable: Seek Girl V.exe type: default -'1393420': +"1393420": installDir: Tokoyo no Tou launch: - executable: TOKOYO NO TOU.exe @@ -85837,35 +84437,35 @@ japanese: 常世ノ塔 schinese: 常世之塔 tchinese: 常世之塔 -'1393750': - installDir: Ocean's Heart +"1393750": + installDir: "Ocean's Heart" launch: - config: oslist: windows - executable: Ocean's Heart.exe + executable: "Ocean's Heart.exe" type: default nameLocalized: japanese: オーシャンズハート schinese: 海洋之心 -'1393820': +"1393820": installDir: Prodigal launch: - executable: Prodigal.exe type: none -'1394270': +"1394270": installDir: SCP Escape Together launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SCP_ET.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: scp_et.x86_64 type: default -'1394480': +"1394480": installDir: RoccosIsland launch: - config: @@ -85876,14 +84476,14 @@ oslist: macos executable: RoccosIsland.app type: default -'1394650': +"1394650": nameLocalized: schinese: 不良少女:留级生 -'1395030': +"1395030": installDir: Kathy Rain Directors Cut launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: KathyRainDirectorsCut.exe type: default @@ -85892,20 +84492,20 @@ executable: KathyRainDirectorsCut.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: KathyRainDirectorsCut.x64 type: default -'1395120': - installDir: At Eve's Wake +"1395120": + installDir: "At Eve's Wake" launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: At Eve's Wake.exe + executable: "At Eve's Wake.exe" type: default -'1395520': {} -'1397290': +"1395520": {} +"1397290": installDir: Comet 64 launch: - config: @@ -85920,11 +84520,11 @@ oslist: linux executable: Comet 64.x86_64 type: none -'1398100': +"1398100": installDir: AnimalFarm launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Windows 64 launch executable: Animal Farm.exe @@ -85932,45 +84532,39 @@ - config: oslist: macos description: Mac 64 launch - executable: AnimalFarmMac.app\\Contents\\MacOS\\Animal Farm + executable: "AnimalFarmMac.app\\\\Contents\\\\MacOS\\\\Animal Farm" type: default -'1398170': +"1398170": installDir: Mourning Inc launch: - config: oslist: windows executable: Mourning Inc.exe type: default -'1398500': +"1398500": installDir: MECHBLAZE launch: - executable: mechblaze.exe type: none -'1399080': +"1399080": installDir: DFC launch: - - arguments: '-dx12' + - arguments: "-dx12" config: - osarch: '64' + osarch: "64" oslist: windows description: DX12 - description_loc: - english: DX12 - japanese: DX12 executable: DFC.exe - - arguments: '-dx11' + - arguments: "-dx11" config: - osarch: '64' + osarch: "64" oslist: windows description: DX11 - description_loc: - english: DX11 - japanese: DX11 executable: DFC.exe nameLocalized: schinese: 神领编年史 The DioField Chronicle tchinese: 神領編年史 The DioField Chronicle -'1399090': +"1399090": installDir: 生活模拟器 launch: - config: @@ -85980,35 +84574,35 @@ nameLocalized: english: Life Simulator schinese: 生活模拟器 -'1399370': +"1399370": installDir: Cute Honey 2 launch: - config: oslist: windows executable: CuteHoney2.exe type: default -'1399480': +"1399480": installDir: California Games launch: - - arguments: '-conf calgames.conf -noconsole' + - arguments: "-conf calgames.conf -noconsole" config: oslist: windows description: original resolution executable: DOSBox.exe type: option1 - - arguments: '-conf calgames720.conf -noconsole' + - arguments: "-conf calgames720.conf -noconsole" config: oslist: windows description: 720p resolution executable: DOSBox.exe type: option2 - - arguments: '-conf calgames1080.conf -noconsole' + - arguments: "-conf calgames1080.conf -noconsole" config: oslist: windows description: 1080p resolution executable: DOSBox.exe type: option3 -'1399690': +"1399690": installDir: ReverieKnights launch: - config: @@ -86017,13 +84611,13 @@ type: default - config: oslist: macos - executable: Contents\\MacOS\\Reverie Knights Tactics + executable: "Contents\\\\MacOS\\\\Reverie Knights Tactics" type: default - config: oslist: linux executable: Reverie Knights Tactics.x86_64 type: default -'1399700': +"1399700": installDir: Kapital Sparks of Revolution launch: - config: @@ -86038,52 +84632,52 @@ oslist: linux executable: Kapital.x86_64 type: default -'1399780': +"1399780": installDir: Spellbreak launch: - - arguments: '-UseSteamAuth' + - arguments: "-UseSteamAuth" config: - osarch: '64' + osarch: "64" oslist: windows executable: Launch_Spellbreak.exe type: default -'1399840': +"1399840": installDir: Neptunia Virtual Stars launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: resource\\bin\\NeptuniaVirtualStars.exe + executable: "resource\\\\bin\\\\NeptuniaVirtualStars.exe" type: default nameLocalized: japanese: ブイブイブイテューヌ tchinese: VVV戦機少女 -'1399930': +"1399930": installDir: Love Stories Furry Shades of Gay launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Love Stories/Love Stories.exe type: default -'1400520': +"1400520": installDir: Nomads of Driftland launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Nomads.exe type: default -'1400830': {} -'1401400': - installDir: Lovecraft's Untold Stories 2 +"1400830": {} +"1401400": + installDir: "Lovecraft's Untold Stories 2" launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: LUS2.exe type: default -'1401590': +"1401590": installDir: Disney Dreamlight Valley launch: - config: @@ -86094,7 +84688,7 @@ japanese: ディズニー ドリームライトバレー schinese: 迪士尼梦幻星谷 tchinese: 迪士尼夢光谷 -'1401610': +"1401610": installDir: Leons Identität launch: - config: @@ -86106,54 +84700,54 @@ executable: LeonsIdentitaet.app type: none - config: - osarch: '64' + osarch: "64" oslist: linux - executable: LinuxNoEditor\\LeonsIdentitaet.sh + executable: "LinuxNoEditor\\\\LeonsIdentitaet.sh" type: none -'1402020': +"1402020": installDir: SCP Labrat launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SCP Labrat.exe type: vr -'1402110': +"1402110": installDir: Eternights launch: - executable: Eternights.exe -'1402120': +"1402120": installDir: 9 Years of Shadows launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: 9 Years of Shadows.exe type: default -'1402320': +"1402320": installDir: respawn-entertainment-medal-of-honor-above-and-beyond launch: - - arguments: '-hmd=SteamVR' + - arguments: "-hmd=SteamVR" config: oslist: windows executable: Mohab.exe type: vr - - arguments: '-hmd=Oculus' + - arguments: "-hmd=Oculus" config: oslist: windows executable: Mohab.exe type: othervr nameLocalized: schinese: 《荣誉勋章™:超越巅峰》 - tchinese: '《Medal of Honor™: Above and Beyond》' -'1403080': + tchinese: "《Medal of Honor™: Above and Beyond》" +"1403080": installDir: Radioactive dwarfs evil from the sewers launch: - config: oslist: windows executable: Dwarfs.exe type: default -'1403310': +"1403310": installDir: Garden Simulator launch: - config: @@ -86163,8 +84757,8 @@ german: Garten Simulator japanese: ガーデン・シミュレーター schinese: 花园模拟器:繁花似梦 -'1403440': {} -'1403650': +"1403440": {} +"1403650": installDir: Everdream Valley launch: - config: @@ -86174,15 +84768,15 @@ nameLocalized: schinese: 梦幻谷 tchinese: 梦幻谷 -'1403830': +"1403830": installDir: Paper Beast Flat launch: - - arguments: '-store steam' + - arguments: "-store steam" config: oslist: windows executable: PaperBeast.exe type: default -'1403990': +"1403990": installDir: Paths & Danger launch: - config: @@ -86194,7 +84788,7 @@ - config: oslist: macos executable: Paths&Danger.app/Contents/MacOS/Paths _ Danger -'1404850': +"1404850": installDir: Luck be a Landlord launch: - config: @@ -86203,7 +84797,7 @@ type: default - config: oslist: macos - executable: Luck be a Landlord.app\\Contents\\MacOS\\Luck be a Landlord + executable: "Luck be a Landlord.app\\\\Contents\\\\MacOS\\\\Luck be a Landlord" type: default - config: oslist: linux @@ -86219,11 +84813,11 @@ koreana: 집주인이 너무해 latam: Luck be a Landlord polish: Dola Lokatora - russian: 'Удачи, арендодатель' + russian: "Удачи, арендодатель" schinese: 幸运房东 spanish: La Suerte es un Casero tchinese: 租戶賭財運 -'1405470': +"1405470": installDir: Scars of Summer launch: - executable: Game.exe @@ -86232,7 +84826,7 @@ japanese: 夏色のコワレモノ schinese: 夏色泡影 tchinese: 夏色泡影 -'1405660': +"1405660": installDir: Shoot Shoot My Waifu launch: - config: @@ -86247,19 +84841,19 @@ oslist: linux executable: Shoot Shoot My Waifu.x86_64 type: none -'1405790': +"1405790": installDir: John Wick Hex launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: John Wick Hex.exe type: default - config: oslist: macos - executable: JohnWickHex.app\\Contents\\MacOS\\JohnWickHex + executable: "JohnWickHex.app\\\\Contents\\\\MacOS\\\\JohnWickHex" type: default -'1406020': +"1406020": installDir: Sakura Succubus 3 launch: - config: @@ -86270,14 +84864,14 @@ oslist: linux executable: SakuraSuccubus3.sh type: default -'1406700': +"1406700": installDir: M1 Tank Platoon II launch: - executable: M1TP2.exe type: default - executable: M1_Tank_Platoon_II_Manual.pdf type: manual -'1406780': +"1406780": installDir: Viscerafest launch: - config: @@ -86288,15 +84882,15 @@ oslist: linux executable: Viscerafest.x86_64 type: default -'1406810': +"1406810": installDir: After Us launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: AfterUs.exe type: default -'1406850': +"1406850": installDir: The Legend of Liāu Thiam Ting launch: - config: @@ -86312,22 +84906,22 @@ japanese: 添丁の伝説 schinese: 廖添丁:绝代凶贼之末日 tchinese: 廖添丁 - 稀代兇賊の最期 -'1406990': +"1406990": installDir: NEKOPARA Vol. 4 launch: - config: oslist: windows executable: nekopara_vol4.exe type: none -'1407080': +"1407080": installDir: fistifluffs launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Fistifluffs.exe type: default -'1407090': +"1407090": installDir: Muv-Luv UNLIMITED TDA01 launch: - config: @@ -86335,9 +84929,9 @@ executable: tda01-win64vc14-release.exe type: default nameLocalized: - english: '[TDA01] Muv-Luv Unlimited: THE DAY AFTER - Episode 01 REMASTERED' - japanese: '【TDA01】マブラヴ アンリミテッド ザ・デイアフター episode:01 REMASTERED' -'1407100': + english: "[TDA01] Muv-Luv Unlimited: THE DAY AFTER - Episode 01 REMASTERED" + japanese: "【TDA01】マブラヴ アンリミテッド ザ・デイアフター episode:01 REMASTERED" +"1407100": installDir: Muv-Luv UNLIMITED TDA00 launch: - config: @@ -86345,78 +84939,78 @@ executable: tda00-win64vc14-release.exe type: default nameLocalized: - english: '[TDA00] Muv-Luv Unlimited: THE DAY AFTER - Episode 00 REMASTERED' - japanese: '【TDA00】マブラヴ アンリミテッド ザ・デイアフター episode:00 REMASTERED' -'1407200': + english: "[TDA00] Muv-Luv Unlimited: THE DAY AFTER - Episode 00 REMASTERED" + japanese: "【TDA00】マブラヴ アンリミテッド ザ・デイアフター episode:00 REMASTERED" +"1407200": installDir: World of Tanks launch: - config: oslist: windows executable: wgcs_api.exe type: default -'1407300': +"1407300": installDir: Hirilun launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Hirilun.exe type: none -'1407520': +"1407520": installDir: Television Trivia launch: - config: oslist: windows executable: game.exe type: default -'1408720': +"1408720": installDir: Krunker launch: - - arguments: '--steam' + - arguments: "--steam" config: oslist: windows executable: Official Krunker.io Client.exe type: default - - arguments: '--steam' + - arguments: "--steam" config: oslist: macos executable: Official Krunker.io Client.app type: default -'1409200': +"1409200": installDir: HYPERVIOLENT launch: - config: oslist: windows executable: HYPERVIOLENT.exe type: default -'1409640': +"1409640": installDir: Tomato Way 3 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TW3.exe type: default -'1410640': +"1410640": installDir: Syberia - The World Before launch: - config: oslist: windows executable: SyberiaTWB.exe type: default -'1410710': +"1410710": installDir: Democracy 4 launch: - config: oslist: windows executable: Democracy4.exe type: default -'1410980': +"1410980": installDir: Serafina and the Key to the Egg launch: - executable: Game.exe type: default -'1411740': +"1411740": installDir: Urbek launch: - config: @@ -86425,9 +85019,9 @@ type: none nameLocalized: schinese: 城市规划大师 -'1411810': {} -'1411910': {} -'1412170': +"1411810": {} +"1411910": {} +"1412170": installDir: Janosik launch: - config: @@ -86457,7 +85051,7 @@ oslist: macos executable: Janosik 1 ver1.6.app type: default -'1412850': +"1412850": installDir: Spacelines from the Far Out launch: - config: @@ -86470,28 +85064,26 @@ - config: oslist: macos executable: Spacelines From The Far Out.app/Contents/MacOS/Spacelines from the Far Out -'1413370': +"1413370": installDir: Power to the People launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Power to the People.exe type: default - config: betakey: demo - osarch: '64' + osarch: "64" oslist: windows description: Demo version - description_loc: - english: Demo version executable: Power to the People Demo.exe type: option1 -'1413480': +"1413480": installDir: smt3hd launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: smt3hd.exe type: none @@ -86500,41 +85092,41 @@ koreana: 진·여신전생3 NOCTURNE HD REMASTER schinese: 真・女神转生III NOCTURNE HD REMASTER tchinese: 真・女神轉生III NOCTURNE HD REMASTER -'1413550': +"1413550": installDir: CyberDetectiveErtat launch: - config: oslist: windows executable: CyberDetectiveErtat.exe type: default -'1413590': +"1413590": installDir: LA FORET DE PAGO LA VENGEANCE DU DRAGON launch: - config: oslist: windows executable: LAFORETDEPAGO.exe type: default -'1413870': +"1413870": installDir: Shadow Man Remastered launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: thoth_x64.exe type: default -'1413960': +"1413960": installDir: Chevalier Historie launch: - executable: Game.exe type: default -'1413980': +"1413980": installDir: The Demon Lord Is New in Town! launch: - executable: Demon Lord.exe type: default nameLocalized: schinese: 魔王的冒险者小镇 -'1413990': +"1413990": installDir: The Heart of Darkness launch: - executable: Game.exe @@ -86543,56 +85135,56 @@ japanese: ザ・ハート・オブ・ダークネス schinese: 黑暗之心 tchinese: 黑暗之心 -'1414250': +"1414250": installDir: CORPSE FACTORY launch: - config: oslist: windows executable: CORPSE FACTORY.exe type: default -'1414500': +"1414500": installDir: Voyeur launch: - - arguments: '-conf voyeur.conf -noconsole' + - arguments: "-conf voyeur.conf -noconsole" config: oslist: windows description: original resolution executable: DOSBox.exe type: option1 - - arguments: '-conf voyeur720.conf -noconsole' + - arguments: "-conf voyeur720.conf -noconsole" config: oslist: windows description: 720p resolution executable: DOSBox.exe type: option2 - - arguments: '-conf voyeur1080.conf -noconsole' + - arguments: "-conf voyeur1080.conf -noconsole" config: oslist: windows description: 1080p resolution executable: DOSBox.exe type: option3 -'1414850': +"1414850": installDir: Nickelodeon All-Star Brawl launch: - config: oslist: windows executable: Nickelodeon All-Star Brawl.exe type: default -'1416050': +"1416050": installDir: Shovel Knight Dig launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: skDig64.exe type: default -'1416230': +"1416230": installDir: Panzer Knights launch: - executable: Panzer Knights.exe type: none -'1416260': +"1416260": installDir: SpellForceThree launch: - config: @@ -86600,39 +85192,35 @@ oslist: windows executable: SF3ClientFinal.exe type: default - - arguments: '-launch SF3Final' + - arguments: "-launch SF3Final" config: oslist: windows - executable: launcher\\Versus\\Launcher.exe + executable: "launcher\\\\Versus\\\\Launcher.exe" type: default - - arguments: '-launch LevelEditor' + - arguments: "-launch LevelEditor" config: oslist: windows - executable: launcher\\Versus\\Launcher.exe + executable: "launcher\\\\Versus\\\\Launcher.exe" type: editor - - arguments: '-launch SF3Debug' + - arguments: "-launch SF3Debug" config: oslist: windows description: with Debug Tools - description_loc: - english: with Debug Tools - executable: launcher\\Versus\\Launcher.exe + executable: "launcher\\\\Versus\\\\Launcher.exe" type: option1 - - arguments: '-launch ModdingDocs' + - arguments: "-launch ModdingDocs" config: oslist: windows description: Open Modding Documentation - description_loc: - english: Open Modding Documentation - executable: launcher\\Versus\\Launcher.exe -'1417720': + executable: "launcher\\\\Versus\\\\Launcher.exe" +"1417720": installDir: Gemini launch: - config: oslist: windows executable: Gemini.exe type: default -'1417880': +"1417880": installDir: Winter Ember launch: - config: @@ -86643,7 +85231,7 @@ japanese: ウィンターエンバー schinese: 冬季余烬 tchinese: 冬季餘燼 -'1417890': +"1417890": installDir: Catie in MeowmeowLand launch: - config: @@ -86662,102 +85250,83 @@ japanese: キャティインニャンダーランド schinese: 凯蒂梦游喵喵仙境 tchinese: 凱蒂夢遊喵喵仙境 -'1417930': {} -'1418010': +"1417930": {} +"1418010": installDir: Black Chapter launch: - executable: BlackChapter.exe type: default -'1418100': +"1418100": installDir: Swords of Legends Online launch: - - arguments: >- - --fs=data:_index:_index serverlist_url_na=https://serverlist-gujian.gfsrv.net/na_s2.json - serverlist_url_eu=https://serverlist-gujian.gfsrv.net/eu_e2.json --gf-sdk=steam + - arguments: "--fs=data:_index:_index serverlist_url_na=https://serverlist-gujian.gfsrv.net/na_s2.json serverlist_url_eu=https://serverlist-gujian.gfsrv.net/eu_e2.json --gf-sdk=steam" executable: bin64/SOLO_Launcher.exe type: default - - arguments: >- - --fs=data:_index:_index - serverlist_url_na=https://serverlist-service-live.gujian-live.external.ing.production.k8s.gfsrv.net/serverlist/qa1 - serverlist_url_eu=https://serverlist-service-live.gujian-live.external.ing.production.k8s.gfsrv.net/serverlist/qa1 - --gf-sdk=steam + - arguments: "--fs=data:_index:_index serverlist_url_na=https://serverlist-service-live.gujian-live.external.ing.production.k8s.gfsrv.net/serverlist/qa1 serverlist_url_eu=https://serverlist-service-live.gujian-live.external.ing.production.k8s.gfsrv.net/serverlist/qa1 --gf-sdk=steam" config: betakey: qa_1 description: QA1 - description_loc: - english: QA1 executable: bin64/SOLO_Launcher.exe type: none - - arguments: >- - --fs=data:_index:_index - serverlist_url_na=https://serverlist-service-live.gujian-live.external.ing.production.k8s.gfsrv.net/serverlist/qa2 - serverlist_url_eu=https://serverlist-service-live.gujian-live.external.ing.production.k8s.gfsrv.net/serverlist/qa2 - --gf-sdk=steam + - arguments: "--fs=data:_index:_index serverlist_url_na=https://serverlist-service-live.gujian-live.external.ing.production.k8s.gfsrv.net/serverlist/qa2 serverlist_url_eu=https://serverlist-service-live.gujian-live.external.ing.production.k8s.gfsrv.net/serverlist/qa2 --gf-sdk=steam" config: betakey: qa_2 description: QA2 - description_loc: - english: QA2 executable: bin64/SOLO_Launcher.exe type: none - - arguments: >- - --fs=data:_index:_index - serverlist_url_na=https://serverlist-service-live.gujian-live.external.ing.production.k8s.gfsrv.net/serverlist/na - serverlist_url_eu=https://serverlist-gujian.gfsrv.net/eu_e2.json --gf-sdk=steam + - arguments: "--fs=data:_index:_index serverlist_url_na=https://serverlist-service-live.gujian-live.external.ing.production.k8s.gfsrv.net/serverlist/na serverlist_url_eu=https://serverlist-gujian.gfsrv.net/eu_e2.json --gf-sdk=steam" config: betakey: qa_live description: QA Live - description_loc: - english: QA Live executable: bin64/SOLO_Launcher.exe type: none -'1418160': +"1418160": installDir: Happy Quest launch: - config: oslist: windows executable: HappyQuest.exe type: default -'1418180': +"1418180": installDir: MUSICUS launch: - config: - osarch: '64' + osarch: "64" executable: musicus_steam.exe type: default - config: - osarch: '32' + osarch: "32" executable: musicus_steam_x86.exe type: default -'1418350': +"1418350": installDir: California Games II launch: - - arguments: '-conf cgii.conf -noconsole' + - arguments: "-conf cgii.conf -noconsole" config: oslist: windows description: original resolution executable: DOSBox.exe type: option1 - - arguments: '-conf cgii720.conf -noconsole' + - arguments: "-conf cgii720.conf -noconsole" config: oslist: windows description: 720p resolution executable: DOSBox.exe type: option2 - - arguments: '-conf cgii1080.conf -noconsole' + - arguments: "-conf cgii1080.conf -noconsole" config: oslist: windows description: 1080p resolution executable: DOSBox.exe type: option3 -'1418360': +"1418360": installDir: Lonesome Village launch: - config: oslist: windows executable: Lonesome Village.exe type: default -'1418990': +"1418990": installDir: Unicorns on Unicycles launch: - config: @@ -86768,7 +85337,7 @@ oslist: macos executable: Unicorns on Unicycles.app type: default -'1419160': +"1419160": installDir: Souldiers launch: - config: @@ -86777,17 +85346,17 @@ type: default nameLocalized: schinese: 英灵士魂 -'1419170': +"1419170": installDir: My Singing Monsters launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: MySingingMonsters.exe type: default nameLocalized: schinese: 萌怪合唱团 -'1419290': +"1419290": installDir: Out of Line launch: - config: @@ -86796,44 +85365,44 @@ type: none nameLocalized: schinese: 边界之外 -'1419380': +"1419380": installDir: Invisible Wings Chapter One launch: - config: oslist: windows executable: Invisible Wings.exe type: default -'1419730': +"1419730": installDir: Seek Gril Ⅵ launch: - config: oslist: windows executable: Seek Girl VI.exe type: none -'1419750': +"1419750": installDir: Apostle Rebellion launch: - executable: Game.exe type: default nameLocalized: japanese: 反逆のアパスル -'1419850': {} -'1420080': +"1419850": {} +"1420080": installDir: ASHA launch: - config: betakey: develop - osarch: '64' + osarch: "64" oslist: windows executable: MW4.exe type: default nameLocalized: japanese: ワンダーボーイ アーシャ・イン・モンスターワールド koreana: 원더보이・아샤 인 몬스터 월드 - russian: 'Чудо-мальчик: Аша в мире монстров' + russian: "Чудо-мальчик: Аша в мире монстров" schinese: 神奇小子・爱莎在怪物世界 tchinese: 神奇男孩・雅莎在怪物世界 -'1420290': +"1420290": installDir: No More Heroes launch: - config: @@ -86843,7 +85412,7 @@ - arguments: en executable: ConfigurationTool.exe type: config -'1420300': +"1420300": installDir: No More Heroes 2 Desperate Struggle launch: - config: @@ -86853,15 +85422,13 @@ - arguments: en executable: ConfigurationTool.exe type: config -'1420350': +"1420350": installDir: Fraymakers launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Fraymakers - DirectX (Recommended) - description_loc: - english: Fraymakers - DirectX (Recommended) executable: Fraymakers.exe type: option1 - config: @@ -86869,20 +85436,18 @@ executable: run.sh type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: run.sh type: default - arguments: hlboot-sdl.dat config: - osarch: '64' + osarch: "64" oslist: windows description: Fraymakers - SDL - description_loc: - english: Fraymakers - SDL executable: Fraymakers.exe type: option2 -'1420650': +"1420650": installDir: th95 launch: - config: @@ -86892,23 +85457,17 @@ - config: oslist: windows description: Game Setting - description_loc: - english: Game Setting - japanese: 環境設定 executable: custom.exe type: config - config: oslist: windows description: Replay Data Comment Editor - description_loc: - english: Replay Data Comment Editor - japanese: 東方リプレイコメントエディタ executable: replayview.exe type: editor nameLocalized: english: Touhou Bunkachou ~ Shoot the Bullet. japanese: 東方文花帖 ~ Shoot the Bullet. -'1420810': +"1420810": installDir: th09 launch: - config: @@ -86926,21 +85485,21 @@ nameLocalized: english: Touhou Kaeizuka ~ Phantasmagoria of Flower View. japanese: 東方花映塚 ~ Phantasmagoria of Flower View. -'1420830': +"1420830": installDir: Happy Numbers launch: - config: oslist: windows executable: HappyNumbers.exe type: default -'1421120': +"1421120": installDir: Montezuma launch: - config: oslist: windows - executable: SteamBin\\exe\\MonteX34.exe + executable: "SteamBin\\\\exe\\\\MonteX34.exe" type: default -'1421290': +"1421290": installDir: BattleShapers launch: - config: @@ -86951,30 +85510,28 @@ japanese: バトルシェーパーズ schinese: 塑战核心 tchinese: 塑战核心 -'1421490': +"1421490": installDir: Rise of the Triad - Ludicrous Edition launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: RottEX.exe type: default - - arguments: '-iwad fakeiwad.wad -file rott_tc_full.pk3' + - arguments: "-iwad fakeiwad.wad -file rott_tc_full.pk3" config: - osarch: '64' + osarch: "64" oslist: windows description: Return of the Triad - description_loc: - english: Return of the Triad executable: return/gzdoom.exe type: option1 - - arguments: '-editor' + - arguments: "-editor" config: - osarch: '64' + osarch: "64" oslist: windows executable: RottEX.exe type: editor -'1421760': +"1421760": installDir: What Comes After launch: - config: @@ -86985,11 +85542,11 @@ oslist: macos executable: What Comes After.app type: none -'1421790': +"1421790": installDir: Labyrinth City launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: labyrinthCity.exe type: default @@ -86998,27 +85555,27 @@ koreana: 미로 대탐정 schinese: 迷宫大侦探 tchinese: 迷宮大偵探 -'1422130': +"1422130": installDir: SimRail launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SimRail.exe type: default -'1422410': +"1422410": installDir: Into the Pit launch: - config: oslist: windows executable: Into The Pit.exe type: default -'1422420': +"1422420": installDir: DodgeballAcademia launch: - executable: DodgeballAcademia.exe type: default -'1422430': +"1422430": installDir: Next Space Rebels launch: - config: @@ -87029,90 +85586,90 @@ oslist: macos executable: NextSpaceRebels.app type: default -'1423010': +"1423010": installDir: Zephyr launch: - - arguments: '-conf dosbox_fs.conf -noconsole -exit' + - arguments: "-conf dosbox_fs.conf -noconsole -exit" config: oslist: windows description: full screen - executable: DOSBox\\DOSBox.exe + executable: "DOSBox\\\\DOSBox.exe" type: option1 - - arguments: '-conf dosbox_fs.conf -noconsole -exit ' + - arguments: "-conf dosbox_fs.conf -noconsole -exit " config: oslist: macos description: full screen executable: DOSBox/dosbox.app/Contents/MacOS/DOSBox type: option1 - - arguments: '-conf dosbox_640x400.conf -noconsole -exit' + - arguments: "-conf dosbox_640x400.conf -noconsole -exit" config: oslist: windows description: windowed 640x400 - executable: DOSBox\\DOSBox.exe + executable: "DOSBox\\\\DOSBox.exe" type: option1 - - arguments: '-conf dosbox_640x400.conf -noconsole -exit' + - arguments: "-conf dosbox_640x400.conf -noconsole -exit" config: oslist: macos description: windowed 640x400 executable: DOSBox/dosbox.app/Contents/MacOS/DOSBox type: option1 - - arguments: '-conf dosbox_1280x800.conf -noconsole -exit' + - arguments: "-conf dosbox_1280x800.conf -noconsole -exit" config: oslist: windows description: windowed 1280x800 - executable: DOSBox\\DOSBox.exe + executable: "DOSBox\\\\DOSBox.exe" type: option1 - - arguments: '-conf dosbox_1280x800.conf -noconsole -exit' + - arguments: "-conf dosbox_1280x800.conf -noconsole -exit" config: oslist: macos description: windowed 1280x800 executable: DOSBox/dosbox.app/Contents/MacOS/DOSBox type: option1 - - arguments: '-conf dosbox_2560x1600.conf -noconsole -exit' + - arguments: "-conf dosbox_2560x1600.conf -noconsole -exit" config: oslist: windows description: windowed 2560x1600 - executable: DOSBox\\DOSBox.exe + executable: "DOSBox\\\\DOSBox.exe" type: option1 - - arguments: '-conf dosbox_2560x1600.conf -noconsole -exit' + - arguments: "-conf dosbox_2560x1600.conf -noconsole -exit" config: oslist: macos description: windowed 2560x1600 executable: DOSBox/dosbox.app/Contents/MacOS/DOSBox type: option1 -'1423200': +"1423200": installDir: Legacy - Witch Island 2 launch: - config: oslist: windows executable: Legacy. Witch Island 23.exe type: default -'1423600': +"1423600": installDir: BLUE REFLECTION Second Light launch: - executable: BLUE REFLECTION Second Light.exe type: none nameLocalized: japanese: BLUE REFLECTION TIE/帝 - schinese: 'BLUE REFLECTION: 帝' - tchinese: 'BLUE REFLECTION: 帝' -'1424290': + schinese: "BLUE REFLECTION: 帝" + tchinese: "BLUE REFLECTION: 帝" +"1424290": installDir: Project Colonies MARS 2120 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ProjectMars_DEMO.exe -'1424330': +"1424330": installDir: Wobbledogs launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Wobbledogs_Windows_64/Wobbledogs.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: Wobbledogs_Windows_32/Wobbledogs.exe type: default @@ -87122,7 +85679,7 @@ type: default nameLocalized: schinese: 摇摆狗狗 -'1424710': +"1424710": installDir: Geneforge 1 - Mutagen launch: - config: @@ -87131,9 +85688,9 @@ type: default - config: oslist: macos - executable: Geneforge Mutagen.app\\Contents\\MacOS\\Geneforge Mutagen + executable: "Geneforge Mutagen.app\\\\Contents\\\\MacOS\\\\Geneforge Mutagen" type: default -'1424800': +"1424800": installDir: DK4HD launch: - executable: DK4HDLauncher.exe @@ -87141,8 +85698,6 @@ - config: betakey: dev_test2 description: direct start - description_loc: - english: direct start executable: DK4HD_jp.exe type: none nameLocalized: @@ -87150,36 +85705,36 @@ koreana: 대항해시대4 with 파워업키트 HD Version schinese: 大航海时代Ⅳ 威力加强版套装 HD Version tchinese: 大航海時代Ⅳ with 威力加強版 HD Version -'1424900': +"1424900": installDir: AirAttack launch: - config: oslist: macos - executable: ./aa.sh + executable: "./aa.sh" type: none - config: oslist: windows executable: aa.bat type: none -'1424910': +"1424910": installDir: KEO launch: - config: oslist: windows executable: KEO.exe type: none -'1424980': +"1424980": installDir: The Solitaire Conspiracy launch: - config: oslist: macos - executable: The Solitaire Conspiracy.app\\Contents\\MacOS\\The Solitaire Conspiracy + executable: "The Solitaire Conspiracy.app\\\\Contents\\\\MacOS\\\\The Solitaire Conspiracy" type: default - config: oslist: windows executable: The Solitaire Conspiracy.exe type: default -'1425110': +"1425110": installDir: Space Empires I launch: - arguments: Space_Em/SPACEMP.EXE >nul 2>&1 @@ -87187,25 +85742,25 @@ oslist: windows executable: otvdm.exe type: default -'1425240': +"1425240": installDir: Match It! launch: - config: oslist: windows executable: MatchIt.exe type: vr -'1425250': +"1425250": installDir: GravityField launch: - config: oslist: windows executable: GravityField.exe type: none -'1425730': +"1425730": installDir: GalGun Returns launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: game.exe type: default @@ -87213,11 +85768,11 @@ japanese: ぎゃる☆がん りたーんず koreana: 걸☆건 리턴즈 tchinese: 少女☆射擊 回歸初心 -'1426010': +"1426010": installDir: stasis2 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: STASIS2.exe type: default @@ -87225,15 +85780,15 @@ oslist: macos executable: STASIS2.app type: default -'1426210': +"1426210": installDir: ItTakesTwo launch: - - executable: 'link2ea://launchgame/1426210?platform=steam&theme=it2' + - executable: "link2ea://launchgame/1426210?platform=steam&theme=it2" type: none nameLocalized: schinese: 双人成行 tchinese: 雙人成行 -'1426330': +"1426330": installDir: Mega Veg Man launch: - config: @@ -87242,23 +85797,23 @@ type: none - config: oslist: macos - executable: Mac_Content.app\\Contents\\MacOS\\Mega Veg Man + executable: "Mac_Content.app\\\\Contents\\\\MacOS\\\\Mega Veg Man" type: none - config: oslist: linux executable: Mega Veg Man.x86_64 type: none -'1426450': +"1426450": installDir: Age of Darkness - Final Stand launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Achilles.exe type: default nameLocalized: - schinese: '黑暗时代:背水一战 ' -'1426500': + schinese: "黑暗时代:背水一战 " +"1426500": installDir: Reboot launch: - executable: Reboot.exe @@ -87266,48 +85821,44 @@ nameLocalized: english: Reboot schinese: 重启 -'1426900': +"1426900": installDir: Dread Nautical launch: - executable: DreadNautical.exe type: default -'1427800': +"1427800": installDir: MutantOps launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: VGDFinal.exe type: none -'1428100': +"1428100": installDir: Instruments of Destruction launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Play Instruments of Destruction - description_loc: - english: Play Instruments of Destruction executable: Instruments.exe type: default - - arguments: '-force-opengl' + - arguments: "-force-opengl" config: betakey: demobeta - osarch: '64' + osarch: "64" oslist: windows description: Play using OpenGL - description_loc: - english: Play using OpenGL executable: instruments.exe type: none -'1428140': +"1428140": installDir: Riding Seas launch: - config: oslist: windows executable: Riding Seas.exe type: default -'1428520': +"1428520": installDir: Mech Engineer launch: - config: @@ -87315,8 +85866,8 @@ description: Launch executable: Mech_Engineer.exe type: default -'1428700': {} -'1428710': +"1428700": {} +"1428710": installDir: TheTarnishingOfJuxtia launch: - config: @@ -87326,7 +85877,7 @@ type: default - config: betakey: development - osarch: '64' + osarch: "64" oslist: windows executable: TTOJ.exe type: default @@ -87362,13 +85913,13 @@ type: default - config: betakey: beta - osarch: '64' + osarch: "64" oslist: windows executable: TTOJ.exe type: default nameLocalized: schinese: 塔尼蚀:神之堕落 -'1429500': +"1429500": installDir: Frontier Hunter launch: - config: @@ -87381,36 +85932,34 @@ oslist: linux executable: Frontier_Hunter.exe nameLocalized: - arabic: 'فرونتير هنتر: عجلة الحظ في إرزا' - french: "La chasseresse de frontières\_: la roue du destin d’Erza" + arabic: "فرونتير هنتر: عجلة الحظ في إرزا" + french: "La chasseresse de frontières : la roue du destin d’Erza" japanese: フロンティアハンター ~エルザの運命の輪~ koreana: 프런티어 헌터: 엘사의 운명의 바퀴 - russian: 'Пограничный охотник: Колесо судьбы Эрзы' - schinese: '边境猎人: 艾尔莎的命运之轮' - tchinese: '邊境獵人: 艾爾莎的命運之輪' - thai: 'Frontier Hunter: วงล้อแห่งโชคชะตาของ Erza' - vietnamese: 'Thợ săn biên giới: Bánh xe vận may của Erza' -'1429670': + russian: "Пограничный охотник: Колесо судьбы Эрзы" + schinese: "边境猎人: 艾尔莎的命运之轮" + tchinese: "邊境獵人: 艾爾莎的命運之輪" + thai: "Frontier Hunter: วงล้อแห่งโชคชะตาของ Erza" + vietnamese: "Thợ săn biên giới: Bánh xe vận may của Erza" +"1429670": installDir: Dungeon Lord launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: DungeonLord.exe type: default nameLocalized: koreana: 던전 로드 -'1429780': +"1429780": installDir: Marble Maid launch: - config: oslist: windows description: Beta - description_loc: - english: Beta executable: MarbleMaid.exe type: default -'1430140': +"1430140": installDir: Space Empires II launch: - arguments: Space_Em2/SPACEMP2.EXE @@ -87418,89 +85967,89 @@ oslist: windows executable: otvdm.exe type: default -'1430200': +"1430200": installDir: Space Empires III launch: - config: oslist: windows executable: SE3.EXE type: default -'1430420': +"1430420": installDir: CBT With Yuuka Kazami launch: - executable: CBTWithYuukaKazami.exe type: none nameLocalized: japanese: 風見幽香とCBT -'1430680': +"1430680": installDir: Clash - Artifacts of Chaos launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Clash.exe type: default -'1430980': +"1430980": installDir: Space Love Delta launch: - config: oslist: windows executable: SpaceLoveDelta.exe type: none -'1431040': +"1431040": installDir: Golazo Soccer League launch: - executable: golazo/game.exe type: default -'1431290': - installDir: Sam & Max This Time It's Virtual! +"1431290": + installDir: "Sam & Max This Time It's Virtual!" launch: - config: oslist: windows executable: Sam and Max VR.exe type: vr -'1431350': +"1431350": installDir: Santa Claus in Trouble launch: - config: oslist: windows executable: SantaClausInTrouble.exe type: default -'1431940': +"1431940": installDir: Outwars launch: - executable: outwars.exe type: default -'1432050': +"1432050": installDir: Nobody Saves the World launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: NStW_x64.exe type: default -'1432220': +"1432220": installDir: G.I. Joe Operation Blackout launch: - - executable: GIJOE_FS\\Binaries\\Win64\\GIJOE.exe + - executable: "GIJOE_FS\\\\Binaries\\\\Win64\\\\GIJOE.exe" type: none -'1432260': +"1432260": installDir: The Surfeit Episode 1 launch: - config: oslist: windows executable: Surfeit1VNU.exe type: default -'1432390': +"1432390": installDir: Sonority_Alpha launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Sonority.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Sonority.x86_64 type: default @@ -87508,7 +86057,7 @@ oslist: macos executable: Sonority.app type: default -'1432500': +"1432500": installDir: The Sekimeiya Spun Glass launch: - config: @@ -87521,10 +86070,10 @@ type: default - config: oslist: macos - executable: The_Sekimeiya_Spun_Glass.app\\Contents\\MacOS\\The_Sekimeiya_Spun_Glass + executable: "The_Sekimeiya_Spun_Glass.app\\\\Contents\\\\MacOS\\\\The_Sekimeiya_Spun_Glass" type: default -'1432650': - installDir: Max's Big Bust 2 - Max's Bigger Bust +"1432650": + installDir: "Max's Big Bust 2 - Max's Bigger Bust" launch: - config: oslist: windows @@ -87538,19 +86087,19 @@ oslist: linux executable: BiggerBust.sh type: default -'1432750': +"1432750": installDir: Chionophile launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Chionophile.exe type: default -'1432910': +"1432910": installDir: Godlike Burger launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Godlike Burger.exe type: default @@ -87564,29 +86113,23 @@ type: default - config: oslist: windows - ownsdlc: '1670580' + ownsdlc: "1670580" description: Bonus Content - description_loc: - english: Bonus Content executable: open_bonus_win.bat - config: oslist: macos - ownsdlc: '1670580' + ownsdlc: "1670580" description: Bonus Content - description_loc: - english: Bonus Content executable: open_bonus_osx.sh - config: oslist: linux - ownsdlc: '1670580' + ownsdlc: "1670580" description: Bonus Content - description_loc: - english: Bonus Content executable: open_bonus_lin.sh nameLocalized: schinese: 宇宙汉堡王 Godlike Burger tchinese: 宇宙漢堡王 Godlike Burger -'1433010': +"1433010": installDir: Tennis Manager 2021 launch: - config: @@ -87597,57 +86140,55 @@ oslist: macos executable: Tennis Manager 2021.app type: none -'1433140': +"1433140": installDir: TCSM launch: - - arguments: '-EnablePlatformOSS -ExecCmds=\"stat fps\"' + - arguments: "-EnablePlatformOSS -ExecCmds=\\\"stat fps\\\"" config: betakey: sumo_dev sumo_staging sumo_custom sumo_custom2 sumo_main dev_morning dev_afternoon sumo_qa3 - osarch: '64' + osarch: "64" oslist: windows description: Developer Build - description_loc: - english: Developer Build executable: BBQClient.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: start_protected_game.exe type: default -'1433340': - installDir: Happy's Humble Burger Farm +"1433340": + installDir: "Happy's Humble Burger Farm" launch: - - executable: Happy's Humble Burger Farm.exe + - executable: "Happy's Humble Burger Farm.exe" type: default -'1433420': +"1433420": installDir: Hero By Chance launch: - config: oslist: windows executable: HeroByChance.exe type: default -'1433500': +"1433500": installDir: Hotel Transylvania 4 launch: - executable: Hotel Transylvania 4.exe nameLocalized: arabic: مغامرات القصة المرعبة Hotel Transylvania - brazilian: 'Hotel Transilvânia: Histórias para não dormir ' - french: 'Hôtel Transylvanie : Monstrueuses aventures' - german: 'Hotel Transsilvanien: Schaurig-schöne Abenteuer' - italian: 'Hotel Transylvania: Avventure da paura' - polish: 'Hotel Transylwania: Potworzaste Przygody' - russian: 'Монстры на каникулах: Приключения в страшных сказках' - spanish: 'Hotel Transilvania: Aventuras e historias de terror' -'1433860': + brazilian: "Hotel Transilvânia: Histórias para não dormir " + french: "Hôtel Transylvanie : Monstrueuses aventures" + german: "Hotel Transsilvanien: Schaurig-schöne Abenteuer" + italian: "Hotel Transylvania: Avventure da paura" + polish: "Hotel Transylwania: Potworzaste Przygody" + russian: "Монстры на каникулах: Приключения в страшных сказках" + spanish: "Hotel Transilvania: Aventuras e historias de terror" +"1433860": installDir: The Amazing American Circus launch: - config: oslist: windows executable: The Amazing American Circus.exe type: default -'1434310': +"1434310": installDir: Paw Patrol The Movie launch: - config: @@ -87656,27 +86197,27 @@ type: default nameLocalized: arabic: فيلم دورية المخالب نداءات مدينة المغامرة - brazilian: 'Patrulha Canina: O Filme A Cidade da Aventura está chamando ' - danish: 'PAW Patrol-filmen: Adventure City kalder ' - dutch: 'PAW Patrol De Film: Avonturenstad heeft je nodig ' - english: 'PAW Patrol The Movie: Adventure City Calls' - finnish: 'Ryhmä Hau -elokuva Seikkailukaupunki kutsuu ' - french: 'Paw Patrol, la Pat''Patrouille - le film À la rescousse d''Adventure City ' - german: "PAW Patrol\_– Der Kinofilm Abenteuerstadt ruft " - italian: 'PAW Patrol: Il film Adventure City chiama' - japanese: 'パウ・パトロール:ザ・ムービー アドベンチャー・シティが呼んでいる ' - koreana: '포 패트롤 더 무비 어드벤처 시티가 부릅니다 ' - latam: 'PAW Patrol La Pelicular: Adventure City Calls' - norwegian: 'PAW Patrol The Movie: Adventure City kaller ' - polish: 'PSI Patrol: Film Miasto Przygód wzywa ' - portuguese: 'Patrulha Pata - O Filme A Cidade da Aventura Chama ' - russian: 'Фильм «Щенячий патруль» Город приключений зовет ' - schinese: '《汪汪队立大功》剧场版电影 冒险市正呼唤着你 ' - spanish: 'La Patrulla Canina: La película La llamada de Ciudad Aventura ' - swedish: 'PAW Patrol: Filmen Äventyrsstaden kallar ' - tchinese: '汪汪隊立大功:電影版 冒險城的呼喚 ' - turkish: 'PAW Patrol Filmi: Macera Şehri''nin Sana İhtiyacı Var ' -'1434320': + brazilian: "Patrulha Canina: O Filme A Cidade da Aventura está chamando " + danish: "PAW Patrol-filmen: Adventure City kalder " + dutch: "PAW Patrol De Film: Avonturenstad heeft je nodig " + english: "PAW Patrol The Movie: Adventure City Calls" + finnish: "Ryhmä Hau -elokuva Seikkailukaupunki kutsuu " + french: "Paw Patrol, la Pat'Patrouille - le film À la rescousse d'Adventure City " + german: "PAW Patrol – Der Kinofilm Abenteuerstadt ruft " + italian: "PAW Patrol: Il film Adventure City chiama" + japanese: "パウ・パトロール:ザ・ムービー アドベンチャー・シティが呼んでいる " + koreana: "포 패트롤 더 무비 어드벤처 시티가 부릅니다 " + latam: "PAW Patrol La Pelicular: Adventure City Calls" + norwegian: "PAW Patrol The Movie: Adventure City kaller " + polish: "PSI Patrol: Film Miasto Przygód wzywa " + portuguese: "Patrulha Pata - O Filme A Cidade da Aventura Chama " + russian: "Фильм «Щенячий патруль» Город приключений зовет " + schinese: "《汪汪队立大功》剧场版电影 冒险市正呼唤着你 " + spanish: "La Patrulla Canina: La película La llamada de Ciudad Aventura " + swedish: "PAW Patrol: Filmen Äventyrsstaden kallar " + tchinese: "汪汪隊立大功:電影版 冒險城的呼喚 " + turkish: "PAW Patrol Filmi: Macera Şehri'nin Sana İhtiyacı Var " +"1434320": installDir: Fast and Furious Spy Racers launch: - config: @@ -87684,16 +86225,16 @@ executable: FF.exe type: default nameLocalized: - arabic: 'SH1FT3R نهوض Fast & Furious: Spy Racers' - brazilian: 'Velozes & Furiosos: Espiões do Asfalto Ascensão de SH1FT3R' - english: 'Fast & Furious: Spy Racers Rise of SH1FT3R' - french: 'Fast & Furious: Spy Racers L''ascension de SH1FT3R' - german: 'Fast & Furious: Spy Racers Der Aufstieg von SH1FT3R' - italian: 'Fast & Furious: Spy Racers Il ritorno della SH1FT3R' - polish: 'Fast & Furious: Spy Racers Narodziny SHIFTERA' - russian: 'Fast & Furious: Spy Racers Подъём SH1FT3R' - spanish: 'Fast & Furious: Spy Racers Retorno de SH1FT3R' -'1434330': + arabic: "SH1FT3R نهوض Fast & Furious: Spy Racers" + brazilian: "Velozes & Furiosos: Espiões do Asfalto Ascensão de SH1FT3R" + english: "Fast & Furious: Spy Racers Rise of SH1FT3R" + french: "Fast & Furious: Spy Racers L'ascension de SH1FT3R" + german: "Fast & Furious: Spy Racers Der Aufstieg von SH1FT3R" + italian: "Fast & Furious: Spy Racers Il ritorno della SH1FT3R" + polish: "Fast & Furious: Spy Racers Narodziny SHIFTERA" + russian: "Fast & Furious: Spy Racers Подъём SH1FT3R" + spanish: "Fast & Furious: Spy Racers Retorno de SH1FT3R" +"1434330": installDir: Blaze Racer launch: - config: @@ -87701,28 +86242,28 @@ executable: BLZ.exe type: default nameLocalized: - arabic: 'بلايز والشاحنات العملاقة: متسابقو مدينة أكسل' - brazilian: 'Blaze and the Monster Machines: Pilotos da Cidade Axle' - danish: 'Blaze and the Monster Machines: Axle City Racers' - dutch: 'Blaze en de Monsterwielen: Axle City Racers' - english: 'Blaze and the Monster Machines: Axle City Racers' - finnish: 'Blaze ja monsterikoneet: Axle Cityn kilpa-ajajat' - french: 'Blaze et les Monster Machines: Pilotes de Moteur City' - german: 'Blaze und die Monster-Maschinen: Reifenhausen-Rennfahrer' - italian: 'Blaze e le mega macchine: Piloti di Axle City' - japanese: 'ブレイズ&モンスターマシン: アクセル・シティのレーサーたち' - koreana: '블레이즈와 몬스터 머신: 액슬 시티 레이서' - latam: 'Blaze and the Monster Machines: Corredores de Ciudad Axle' - norwegian: 'Blaze and the Monster Machines: Axle City Racers' - polish: 'Blaze i megamaszyny: Wyścigówki ze Zderzakowa' - portuguese: 'Blaze e os Monster Machines: Corredores da Cidade Axle' - russian: 'Вспыш и чудо-машинки: Гонщики Эксл Сити' - schinese: '旋风战车队: 速度城赛车' - spanish: 'Blaze y los Monster Machines: Corredores de Ciudad Axle' - swedish: 'Blaze and the Monster Machines: Axle City Racers' - tchinese: '旋風戰車隊: 車軸市賽車' - turkish: 'Blaze ve Yol Canavarları: Axle Şehri Yarışçıları' -'1434480': + arabic: "بلايز والشاحنات العملاقة: متسابقو مدينة أكسل" + brazilian: "Blaze and the Monster Machines: Pilotos da Cidade Axle" + danish: "Blaze and the Monster Machines: Axle City Racers" + dutch: "Blaze en de Monsterwielen: Axle City Racers" + english: "Blaze and the Monster Machines: Axle City Racers" + finnish: "Blaze ja monsterikoneet: Axle Cityn kilpa-ajajat" + french: "Blaze et les Monster Machines: Pilotes de Moteur City" + german: "Blaze und die Monster-Maschinen: Reifenhausen-Rennfahrer" + italian: "Blaze e le mega macchine: Piloti di Axle City" + japanese: "ブレイズ&モンスターマシン: アクセル・シティのレーサーたち" + koreana: "블레이즈와 몬스터 머신: 액슬 시티 레이서" + latam: "Blaze and the Monster Machines: Corredores de Ciudad Axle" + norwegian: "Blaze and the Monster Machines: Axle City Racers" + polish: "Blaze i megamaszyny: Wyścigówki ze Zderzakowa" + portuguese: "Blaze e os Monster Machines: Corredores da Cidade Axle" + russian: "Вспыш и чудо-машинки: Гонщики Эксл Сити" + schinese: "旋风战车队: 速度城赛车" + spanish: "Blaze y los Monster Machines: Corredores de Ciudad Axle" + swedish: "Blaze and the Monster Machines: Axle City Racers" + tchinese: "旋風戰車隊: 車軸市賽車" + turkish: "Blaze ve Yol Canavarları: Axle Şehri Yarışçıları" +"1434480": installDir: MaitetsuLastRun launch: - executable: MaitetsuLastRun.exe @@ -87731,19 +86272,19 @@ japanese: まいてつ Last Run!! schinese: 爱上火车-Last Run!!- tchinese: 愛上火車-Last Run!!- -'1434650': +"1434650": installDir: Monster Girl Incursion launch: - executable: Monster Girl Incursion.exe type: none -'1434950': +"1434950": installDir: HighFleet launch: - config: oslist: windows executable: Highfleet.exe type: default -'1435670': +"1435670": installDir: Song of Farca launch: - config: @@ -87760,7 +86301,7 @@ type: default nameLocalized: schinese: 罪城骇客 -'1435790': +"1435790": installDir: Escape Simulator launch: - config: @@ -87775,15 +86316,15 @@ oslist: linux executable: EscapeSimulator type: default -'1436410': +"1436410": installDir: ReThink 4 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ReThink4.exe type: default -'1436590': +"1436590": installDir: Phoenotopia Awakening launch: - config: @@ -87792,47 +86333,43 @@ type: none - config: oslist: macos - executable: Contents\\MacOS\\phoenotopia + executable: "Contents\\\\MacOS\\\\phoenotopia" type: none nameLocalized: - japanese: 'フェノトピア(Phoenotopia: Awakening)' -'1436680': + japanese: "フェノトピア(Phoenotopia: Awakening)" +"1436680": installDir: Gachi run Running of the slaves launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: GachiRun.exe type: default -'1436700': +"1436700": installDir: Trine 5 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: trine5.exe type: none -'1436900': +"1436900": installDir: Sabotaj launch: - config: - osarch: '64' + osarch: "64" oslist: windows - description: ' (DirectX)' - description_loc: - english: ' (DirectX)' + description: " (DirectX)" executable: Sabotaj.exe type: option1 - - arguments: '-FeatureLevelES31' + - arguments: "-FeatureLevelES31" config: - osarch: '64' + osarch: "64" oslist: windows description: (OpenGL) - description_loc: - english: (OpenGL) executable: Sabotaj.exe type: option2 -'1436920': +"1436920": installDir: Tandem a tale of shadows launch: - config: @@ -87846,26 +86383,26 @@ nameLocalized: japanese: Tandem:影の物語 schinese: 艾玛和泰迪熊:影子历险记 -'1437040': +"1437040": installDir: Starshot launch: - config: oslist: windows executable: SpaceCircus.exe type: default -'1437050': +"1437050": installDir: EBOLA 2 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: EBOLA 2.exe type: default -'1437400': +"1437400": installDir: Project Mage launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ProjectMage.exe type: default @@ -87873,23 +86410,23 @@ oslist: macos executable: SaltAndSacrifice.app type: default -'1437500': +"1437500": installDir: Dread X Collection 3 launch: - - arguments: '-screen-fullscreen 1' + - arguments: "-screen-fullscreen 1" config: oslist: windows description: Fullscreen Mode executable: Dread X Collection 3.exe type: option1 - - arguments: '-screen-fullscreen 0' + - arguments: "-screen-fullscreen 0" config: oslist: windows description: Windowed Mode executable: Dread X Collection 3.exe type: option2 -'1437760': {} -'1437820': +"1437760": {} +"1437820": installDir: Sango1 launch: - executable: Sango.exe @@ -87903,7 +86440,7 @@ english: Heroes of the Three Kingdoms schinese: 三国群英传 tchinese: 三國群英傳 -'1437830': +"1437830": installDir: Sango2 launch: - executable: Sango2.exe @@ -87916,15 +86453,13 @@ - config: betakey: windowed description: 视窗化/窗口化/Windowed - description_loc: - english: 视窗化/窗口化/Windowed executable: SGConfig.exe type: option1 nameLocalized: english: Heroes of the Three Kingdoms 2 schinese: 三国群英传2 tchinese: 三國群英傳2 -'1437840': +"1437840": installDir: Sango3 launch: - executable: Sango3.exe @@ -87936,9 +86471,9 @@ type: option1 nameLocalized: english: Heroes of the Three Kingdoms 3 - schinese: ' 三国群英传3' + schinese: " 三国群英传3" tchinese: 三國群英傳3 -'1437850': +"1437850": installDir: Sango4 launch: - executable: Sango4.exe @@ -87952,7 +86487,7 @@ english: Heroes of the Three Kingdoms 4 schinese: 三国群英传4 tchinese: 三國群英傳4 -'1437860': +"1437860": installDir: Sango5 launch: - executable: Sango5.exe @@ -87966,7 +86501,7 @@ english: Heroes of the Three Kingdoms 5 schinese: 三国群英传5 tchinese: 三國群英傳5 -'1437870': +"1437870": installDir: Sango6 launch: - executable: Sango6.exe @@ -87980,7 +86515,7 @@ english: Heroes of the Three Kingdoms 6 schinese: 三国群英传6 tchinese: 三國群英傳6 -'1437880': +"1437880": installDir: Sango7 launch: - executable: Sango7.exe @@ -87989,51 +86524,51 @@ english: Heroes of the Three Kingdoms 7 schinese: 三国群英传7 tchinese: 三國群英傳7 -'1438100': +"1438100": installDir: Qbio launch: - config: oslist: windows executable: Qbio.exe type: default -'1439300': +"1439300": installDir: NASCAR 21 Ignition launch: - config: oslist: windows executable: NascarNext.exe type: default -'1439750': {} -'1440440': +"1439750": {} +"1440440": installDir: Sam & Max Save the World launch: - config: oslist: windows - executable: Launcher\\Launcher.exe + executable: "Launcher\\\\Launcher.exe" type: default -'1440500': +"1440500": installDir: th175 launch: - config: oslist: windows executable: game.exe type: none -'1440670': +"1440670": installDir: Zeepkist launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Zeepkist.exe type: default -'1442650': +"1442650": installDir: White Day VR Courage Test launch: - config: oslist: windows executable: WAVR_P1.exe type: vr -'1442670': +"1442670": installDir: Hamster Playground launch: - config: @@ -88042,53 +86577,53 @@ type: default - config: oslist: macos - executable: Hamster Playground.app\\Contents\\MacOS\\Hamster Playground + executable: "Hamster Playground.app\\\\Contents\\\\MacOS\\\\Hamster Playground" type: default - config: oslist: linux executable: Hamster Playground.x86_64 type: default -'1442820': +"1442820": installDir: R-Type Final 2 launch: - executable: RTypeFinal2.exe type: default -'1443200': - installDir: Class of '09 +"1443200": + installDir: "Class of '09" launch: - config: oslist: macos - executable: Class_Of_09-1.0-market\\Class_Of_09.app + executable: "Class_Of_09-1.0-market\\\\Class_Of_09.app" type: default - config: - osarch: '32' + osarch: "32" oslist: windows - executable: Class_Of_09-1.0-market\\Class_Of_09-32.exe + executable: "Class_Of_09-1.0-market\\\\Class_Of_09-32.exe" type: default - config: - osarch: '64' + osarch: "64" oslist: windows - executable: Class_Of_09-1.0-market\\Class_Of_09.exe + executable: "Class_Of_09-1.0-market\\\\Class_Of_09.exe" type: default - config: oslist: linux - executable: Class_Of_09-1.0-market\\Class_Of_09.sh + executable: "Class_Of_09-1.0-market\\\\Class_Of_09.sh" type: default -'1443430': +"1443430": installDir: Rogue launch: - - arguments: '-conf rogue.conf -noconsole' + - arguments: "-conf rogue.conf -noconsole" config: oslist: windows executable: DOSBox.exe type: default - - arguments: '-conf rogueresume.conf -noconsole' + - arguments: "-conf rogueresume.conf -noconsole" config: oslist: windows description: Rogue - Resume saved game executable: DOSBox.exe type: option1 -'1443470': +"1443470": installDir: Hauma launch: - config: @@ -88096,37 +86631,33 @@ executable: hauma.exe type: default nameLocalized: - schinese: '豪麻—黑色推理 ' + schinese: "豪麻—黑色推理 " tchinese: 豪麻—黑色推理 -'1443630': +"1443630": installDir: Turbo Sloths launch: - config: oslist: windows description: Turbo Sloths - description_loc: - english: Turbo Sloths executable: TurboSloths.exe - - arguments: '-d3d11' + - arguments: "-d3d11" config: oslist: windows description: Turbo Sloths (DX 11) Steam Deck - description_loc: - english: Turbo Sloths (DX 11) Steam Deck executable: TurboSloths.exe -'1443820': +"1443820": installDir: BustyBiz launch: - config: oslist: windows executable: BustyBiz.exe type: default -'1444300': +"1444300": installDir: Teacup launch: - executable: Teacup.exe type: none -'1444550': +"1444550": installDir: Waronoi launch: - config: @@ -88134,63 +86665,63 @@ description: Launch executable: Waronoi.exe type: default -'1444650': +"1444650": installDir: Haydee 2 launch: - - arguments: '-game' + - arguments: "-game" config: - osarch: '64' + osarch: "64" oslist: windows description: Haydee II executable: SteamGame.exe type: default - - arguments: '-edith' + - arguments: "-edith" config: - osarch: '64' + osarch: "64" oslist: windows description: Edith executable: SteamGame.exe type: editor nameLocalized: english: Haydee 2 -'1444920': +"1444920": installDir: Doctor Who The Edge of Reality launch: - executable: DrWhoEOR.exe type: none -'1445110': +"1445110": installDir: The Legend of Arcadieu 2 launch: - executable: Arcadieu2.exe type: none -'1445190': {} -'1445870': +"1445190": {} +"1445870": installDir: Terra Bomber launch: - config: oslist: windows executable: terraBomber.exe type: default -'1446160': +"1446160": installDir: Toy Soldiers HD launch: - executable: TSHD.exe -'1446230': +"1446230": installDir: Chasing Tail launch: - config: oslist: windows - executable: Chasing Tail Steam 3_8\\Chasing Tail.exe + executable: "Chasing Tail Steam 3_8\\\\Chasing Tail.exe" type: default -'1446350': +"1446350": installDir: You Will Die Here Tonight launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: You Will Die Here Tonight.exe type: default -'1446650': +"1446650": installDir: BRAVELY DEFAULT II launch: - config: @@ -88199,67 +86730,58 @@ type: default nameLocalized: japanese: ブレイブリーデフォルトⅡ -'1446780': +"1446780": installDir: MonsterHunterRise launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: MonsterHunterRise.exe type: default -'1447000': +"1447000": installDir: MotoGP™21 launch: - executable: motogp21.exe type: none -'1448030': +"1448030": installDir: Press Any Button launch: - config: oslist: windows executable: PAB.exe type: default -'1448440': +"1448440": installDir: WoLongFallenDynasty launch: - executable: WoLong.exe type: default - config: - ownsdlc: '2232890' + ownsdlc: "2232890" description: Launch Digital Art Book & Soundtrack - description_loc: - brazilian: Iniciar Livro de Arte Digital e Banda Sonora - english: Launch Digital Art Book & Soundtrack - french: Ouvrir l'Artbook Numérique et Bande Son - german: Digital Art Book & Soundtrack starten - japanese: Digital Art Book & Soundtrackを起動 - russian: Открыть цифровой артбук и саундтрек - schinese: 运行数字美术画集&原声碟 - tchinese: 執行數位美術畫集&原聲帶 - executable: ArtBookAndMiniSoundtrack\\WoLongArtBookAndMiniSoundtrack.exe + executable: "ArtBookAndMiniSoundtrack\\\\WoLongArtBookAndMiniSoundtrack.exe" nameLocalized: - schinese: 'Wo Long: Fallen Dynasty (卧龙:苍天陨落)' - tchinese: 'Wo Long: Fallen Dynasty (臥龍:蒼天隕落)' -'1448530': + schinese: "Wo Long: Fallen Dynasty (卧龙:苍天陨落)" + tchinese: "Wo Long: Fallen Dynasty (臥龍:蒼天隕落)" +"1448530": installDir: Soccer Manager 2021 launch: - config: oslist: windows executable: SM21.exe type: none -'1448760': +"1448760": installDir: The Plane Effect launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: THE_PLANE_EFFECT.exe type: default -'1448840': +"1448840": installDir: Very Very Valet launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: windows/VeryVeryValet_Release.exe type: default @@ -88269,7 +86791,7 @@ executable: macOS/Very Very Valet.app/Contents/MacOS/Very Very Valet type: default workingdir: macOS -'1449200': +"1449200": installDir: AI The Somnium Files 2 launch: - config: @@ -88278,9 +86800,9 @@ type: none nameLocalized: japanese: AI:ソムニウムファイル ニルヴァーナ イニシアチブ - schinese: ' AI:梦境档案 涅槃肇始' + schinese: " AI:梦境档案 涅槃肇始" tchinese: AI:夢境檔案 涅槃肇始 -'1449230': +"1449230": installDir: Glitchhikers - The Spaces Between launch: - config: @@ -88291,15 +86813,15 @@ oslist: macos executable: Glitchhikers.app type: none -'1449280': +"1449280": installDir: Ghostbusters The Video Game Remastered launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ghost.exe type: default -'1449320': +"1449320": installDir: Vertigo launch: - config: @@ -88308,60 +86830,48 @@ type: default nameLocalized: arabic: ألفريد هيتشكوك - الدوار - russian: 'Альфред Хичкок: «Головокружение»' + russian: "Альфред Хичкок: «Головокружение»" schinese: 阿尔弗莱德·希区柯克 — 迷魂记 tchinese: 亞佛列德·希區考克 — 迷魂記 -'1449500': +"1449500": installDir: Basmaster Fishing 2022 launch: - config: betakey: development oslist: windows - description: ' Development branch of Bassmaster Fishing 2022.' - description_loc: - english: ' Development branch of Bassmaster Fishing 2022.' - executable: FishingGame\\Binaries\\Win64\\BassmasterFishing.exe + description: " Development branch of Bassmaster Fishing 2022." + executable: "FishingGame\\\\Binaries\\\\Win64\\\\BassmasterFishing.exe" type: none - config: betakey: development_test oslist: windows description: Development Test branch of Bassmaster Fishing 2022. - description_loc: - english: Development Test branch of Bassmaster Fishing 2022. - executable: FishingGame\\Binaries\\Win64\\BassmasterFishing-Win64-Test.exe + executable: "FishingGame\\\\Binaries\\\\Win64\\\\BassmasterFishing-Win64-Test.exe" type: none - config: betakey: rc_test oslist: windows description: Release Candidate Test branch of Bassmaster Fishing 2022. - description_loc: - english: Release Candidate Test branch of Bassmaster Fishing 2022. - executable: FishingGame\\Binaries\\Win64\\BassmasterFishing-Win64-Test.exe + executable: "FishingGame\\\\Binaries\\\\Win64\\\\BassmasterFishing-Win64-Test.exe" type: none - config: betakey: rc_shipping oslist: windows description: Shipping branch of Bassmaster Fishing 2022. - description_loc: - english: Shipping branch of Bassmaster Fishing 2022. - executable: FishingGame\\Binaries\\Win64\\BassmasterFishing-Win64-Shipping.exe + executable: "FishingGame\\\\Binaries\\\\Win64\\\\BassmasterFishing-Win64-Shipping.exe" type: none - config: betakey: beta oslist: windows description: Beta branch of Bassmaster Fishing 2022. - description_loc: - english: Beta branch of Bassmaster Fishing 2022. - executable: FishingGame\\Binaries\\Win64\\BassmasterFishing-Win64-Test.exe + executable: "FishingGame\\\\Binaries\\\\Win64\\\\BassmasterFishing-Win64-Test.exe" type: none - config: oslist: windows description: Default branch of Bassmaster Fishing 2022. - description_loc: - english: Default branch of Bassmaster Fishing 2022. - executable: FishingGame\\Binaries\\Win64\\BassmasterFishing-Win64-Shipping.exe + executable: "FishingGame\\\\Binaries\\\\Win64\\\\BassmasterFishing-Win64-Shipping.exe" type: none -'1449510': +"1449510": installDir: Henchman Story launch: - config: @@ -88374,51 +86884,51 @@ type: default - config: oslist: macos - executable: Henchman Story.app\\Contents\\MacOS\\Henchman Story + executable: "Henchman Story.app\\\\Contents\\\\MacOS\\\\Henchman Story" type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: Henchman Story-32.exe type: default -'1449560': +"1449560": installDir: Metro Exodus Enhanced Edition launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: MetroExodus.exe type: default -'1449690': +"1449690": installDir: The Walking Dead The Telltale Definitive Series launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: WDC.exe type: default -'1449850': +"1449850": installDir: Yu-Gi-Oh! Master Duel launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: masterduel.exe type: default - config: betakey: pur_test - osarch: '64' + osarch: "64" oslist: windows executable: game.exe type: default -'1449920': +"1449920": installDir: GRUNND launch: - config: oslist: windows executable: GRUNND.exe type: default -'1450330': +"1450330": installDir: Concordia Digital Edition launch: - config: @@ -88429,14 +86939,14 @@ oslist: macos executable: Concordia.app/Contents/MacOS/Concordia type: none -'1450660': +"1450660": installDir: Brick Breaker Premium 2 launch: - config: oslist: windows executable: game.exe type: default -'1450830': +"1450830": installDir: AtDeadOfNight launch: - config: @@ -88447,50 +86957,48 @@ oslist: macos executable: /AtDeadOfNight.app type: none -'1450900': +"1450900": installDir: Desynced launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: Desynced\\Binaries\\Win64\\Desynced.exe + executable: "Desynced\\\\Binaries\\\\Win64\\\\Desynced.exe" type: default - config: betakey: demo - osarch: '64' + osarch: "64" oslist: windows description: Demo - description_loc: - english: Demo - executable: Desynced\\Binaries\\Win64\\DesyncedDemo.exe + executable: "Desynced\\\\Binaries\\\\Win64\\\\DesyncedDemo.exe" type: option1 -'1451080': +"1451080": installDir: DUNGEON ENCOUNTERS launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: DUNGEON ENCOUNTERS.exe type: none -'1451090': +"1451090": installDir: Tactics Ogre Reborn launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Tactics Ogre Reborn.exe type: default nameLocalized: japanese: タクティクスオウガ リボーン -'1451190': +"1451190": installDir: Undisputed launch: - executable: Undisputed.exe -'1451480': +"1451480": installDir: The Greatest Penguin Heist of All Time launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Penguin Heist.exe type: default @@ -88499,11 +87007,11 @@ executable: Penguin Heist.app/Contents/MacOS/Penguin Heist type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: PenguinHeist.x86_64 type: default -'1451810': +"1451810": installDir: LEGO2KDrive launch: - executable: LEGO2KDrive.exe @@ -88511,15 +87019,13 @@ - config: betakey: submission-final description: Really Launch the Game - description_loc: - english: Really Launch the Game executable: ArtemisClient.exe nameLocalized: japanese: レゴ®2K ドライブ koreana: 레고® 2K 드라이브 schinese: 乐高®2K竞速 tchinese: 樂高®2K 飆風賽車 -'1451940': +"1451940": installDir: NEEDY GIRL OVERDOSE launch: - config: @@ -88532,55 +87038,53 @@ type: default nameLocalized: english: NEEDY STREAMER OVERLOAD - koreana: '니디 걸 오버도즈 : NEEDY GIRL OVERDOSE ' + koreana: "니디 걸 오버도즈 : NEEDY GIRL OVERDOSE " schinese: 主播女孩重度依赖 tchinese: 主播女孩重度依賴 -'1451950': +"1451950": installDir: Street Outlaws 2 Winner Takes All launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Shipping - executable: StreetOutlaws\\Binaries\\Win64\\StreetOutlaws-Win64-Shipping.exe + executable: "StreetOutlaws\\\\Binaries\\\\Win64\\\\StreetOutlaws-Win64-Shipping.exe" type: default - config: betakey: internal_debug - osarch: '64' + osarch: "64" oslist: windows description: DebugGame - description_loc: - english: DebugGame - executable: StreetOutlaws\\Binaries\\Win64\\StreetOutlaws-Win64-DebugGame.exe + executable: "StreetOutlaws\\\\Binaries\\\\Win64\\\\StreetOutlaws-Win64-DebugGame.exe" type: default - config: betakey: internal_debug_ftue - osarch: '64' + osarch: "64" oslist: windows - executable: StreetOutlaws\\Binaries\\Win64\\StreetOutlaws-Win64-DebugGame.exe + executable: "StreetOutlaws\\\\Binaries\\\\Win64\\\\StreetOutlaws-Win64-DebugGame.exe" type: default - config: betakey: backup - osarch: '64' + osarch: "64" oslist: windows - executable: StreetOutlaws\\Binaries\\Win64\\StreetOutlaws-Win64-DebugGame.exe + executable: "StreetOutlaws\\\\Binaries\\\\Win64\\\\StreetOutlaws-Win64-DebugGame.exe" type: default -'1452500': +"1452500": installDir: The Good Life launch: - config: oslist: windows executable: StandaloneWindows64.exe type: default -'1453200': +"1453200": installDir: Metu Caligine launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Metu Caligine.exe type: default -'1453900': +"1453900": installDir: Curse of the Sea Rats launch: - executable: Curse Of The Sea Rats.exe @@ -88588,33 +87092,33 @@ koreana: 해적 쥐의 저주 schinese: 海鼠诅咒 tchinese: 海鼠的詛咒 -'1454160': +"1454160": installDir: One More Island launch: - config: oslist: windows executable: One More Island.exe type: default -'1454240': +"1454240": installDir: Mr. Parkour launch: - executable: Mr Parkour.exe type: none -'1454400': +"1454400": installDir: Cookie Clicker launch: - - arguments: '--in-process-gpu --process-start-args \"-disable-features=HardwareMediaKeyHandling\"' + - arguments: "--in-process-gpu --process-start-args \\\"-disable-features=HardwareMediaKeyHandling\\\"" executable: Cookie Clicker.exe type: default -'1454540': +"1454540": installDir: Lapin launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: LAPIN.exe type: default -'1454640': +"1454640": installDir: ATaleOfPaper launch: - config: @@ -88623,19 +87127,19 @@ type: default nameLocalized: schinese: 纸梦奇谭 A Tale of Paper -'1454730': +"1454730": installDir: Chenso Club launch: - executable: Chenso Club.exe type: none nameLocalized: schinese: 电锯娇娃 / Chenso Club -'1454890': +"1454890": installDir: Titanfall launch: - - executable: 'link2ea://launchgame/1454890?platform=steam&theme=tf' + - executable: "link2ea://launchgame/1454890?platform=steam&theme=tf" type: none -'1454930': +"1454930": installDir: TechnoRunner launch: - config: @@ -88648,34 +87152,28 @@ description: Play executable: TechnoRunner.x86_64 type: default -'1454970': +"1454970": installDir: New Tales from the Borderlands launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Play Nootka (Shipping) - description_loc: - english: Play Nootka (Shipping) - executable: Cypress2Game\\Binaries\\Win64\\NewTales.exe + executable: "Cypress2Game\\\\Binaries\\\\Win64\\\\NewTales.exe" - config: betakey: gbxinternal - osarch: '64' + osarch: "64" oslist: windows description: Play Nootka (TEST) - description_loc: - english: Play Nootka (TEST) - executable: Cypress2Game\\Binaries\\Win64\\Cypress2Game-Win64-Test.exe + executable: "Cypress2Game\\\\Binaries\\\\Win64\\\\Cypress2Game-Win64-Test.exe" - config: betakey: gbxinternal - osarch: '64' + osarch: "64" oslist: windows description: Play Nootka (DEV) - description_loc: - english: Play Nootka (DEV) - executable: Cypress2Game\\Binaries\\Win64\\Cypress2Game.exe + executable: "Cypress2Game\\\\Binaries\\\\Win64\\\\Cypress2Game.exe" nameLocalized: - czech: 'Borderlands: Nové příběhy z Pohraničí' + czech: "Borderlands: Nové příběhy z Pohraničí" dutch: Nieuwe verhalen uit de Borderlands japanese: 『ニュー・テイルズ・フロム・ザ・ボーダーランズ』 koreana: 뉴 테일즈 프롬 더 보더랜드 @@ -88683,79 +87181,67 @@ spanish: Nueva entrega de New Tales from the Borderlands tchinese: 《新邊緣禁地傳說》 thai: ภาคใหม่ของ Tales from the Borderlands - turkish: Borderlands'den Yeni Masallar -'1455220': + turkish: "Borderlands'den Yeni Masallar" +"1455220": installDir: Succubus Farm launch: - executable: Game.exe type: default -'1455380': +"1455380": installDir: Quiet Godo launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: QuietGodoGame/QuietGodo.exe type: none -'1455420': +"1455420": installDir: Choco Pixel S launch: - config: oslist: windows executable: Choco Pixel S.exe type: default -'1455630': +"1455630": installDir: The Game of Life 2 launch: - config: oslist: windows executable: GameOfLife2.exe type: default -'1455660': +"1455660": installDir: Out of the Park Baseball 22 launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch OOTP 22 - description_loc: - english: Launch OOTP 22 - koreana: OOTP22 실행 executable: ootp22_x64.exe type: default - config: oslist: macos description: Launch OOTP 22 - description_loc: - english: Launch OOTP 22 - koreana: OOTP22 실행 executable: OOTP Baseball 22.app type: default - config: oslist: linux description: Launch OOTP 22 - description_loc: - english: Launch OOTP 22 - koreana: OOTP22 실행 executable: ootp22.sh type: default - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch OOTP 22 - description_loc: - english: Launch OOTP 22 - koreana: OOTP22 실행 executable: ootp22.exe type: default -'1455720': +"1455720": installDir: Mr. Parkour 2 launch: - config: oslist: windows executable: Mr Parkour 2.exe type: none -'1455840': +"1455840": installDir: Dorfromantik launch: - config: @@ -88764,7 +87250,7 @@ type: none nameLocalized: sc_schinese: 筑梦颂 -'1455900': +"1455900": installDir: Plunder Panic launch: - config: @@ -88775,47 +87261,47 @@ oslist: macos executable: Plunder Panic.app type: default -'1456650': +"1456650": installDir: PascalsWager launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: PascalsWager.exe type: default nameLocalized: - english: 'Pascal''s Wager: Definitive Edition' + english: "Pascal's Wager: Definitive Edition" japanese: パスカルズ・ウェイジャー ディフィニティブ・エディション - koreana: '파스칼 웨이저: 완전판' + koreana: "파스칼 웨이저: 완전판" schinese: 帕斯卡契约:终极版 tchinese: 帕斯卡契約:終極版 -'1456830': +"1456830": nameLocalized: - russian: 'Sea Dogs: Легендарное Издание' -'1456880': + russian: "Sea Dogs: Легендарное Издание" +"1456880": installDir: ElecHead launch: - config: oslist: windows executable: ElecHead.exe type: default -'1456920': +"1456920": installDir: Mr. Parkour 3 launch: - config: oslist: windows executable: Mr Parkour 3.exe type: none -'1457080': +"1457080": installDir: The Mageseeker launch: - executable: The Mageseeker.exe nameLocalized: - japanese: 'メイジシーカー: リーグ・オブ・レジェンド ストーリー™' - koreana: '마력 척결관: 리그 오브 레전드 이야기™' + japanese: "メイジシーカー: リーグ・オブ・レジェンド ストーリー™" + koreana: "마력 척결관: 리그 오브 레전드 이야기™" schinese: 《搜魔人:英雄联盟传奇™》 tchinese: 《聯盟外傳:狙魔者™》 -'1457320': +"1457320": installDir: Techtonica launch: - config: @@ -88836,91 +87322,83 @@ nameLocalized: schinese: 星核工厂Techtonica tchinese: 星核工廠Techtonica -'1457520': +"1457520": installDir: The Legend of Heroes Zero no Kiseki KAI launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: game - description_loc: - english: game - japanese: ゲーム executable: ed71_steam.exe type: config - config: - osarch: '64' + osarch: "64" oslist: windows description: setting tool - description_loc: - english: setting tool - japanese: 設定ツール executable: Launcher_ED71.exe type: config nameLocalized: - english: 'The Legend of Heroes: Zero no Kiseki Kai' + english: "The Legend of Heroes: Zero no Kiseki Kai" japanese: 英雄伝説 零の軌跡:改 - koreana: '영웅전설 제로의 궤적: Kai' + koreana: "영웅전설 제로의 궤적: Kai" schinese: 英雄传说 零之轨迹:改 tchinese: 英雄傳說 零之軌跡:改 -'1457570': +"1457570": installDir: Taxi Chaos launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: Taxi\\Binaries\\Win64\\Taxi-Win64-Shipping.exe + executable: "Taxi\\\\Binaries\\\\Win64\\\\Taxi-Win64-Shipping.exe" type: default - config: betakey: internal_debug - osarch: '64' + osarch: "64" oslist: windows description: DEBUG GAME! WHY YOU NO WORK?! - description_loc: - english: DEBUG GAME! WHY YOU NO WORK?! - executable: Taxi\\Binaries\\Win64\\Taxi-Win64-DebugGame.exe + executable: "Taxi\\\\Binaries\\\\Win64\\\\Taxi-Win64-DebugGame.exe" type: default -'1457580': +"1457580": installDir: Speed 3 Grand Prix launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: Speed\\Binaries\\Win64\\Speed-Win64-Shipping.exe + executable: "Speed\\\\Binaries\\\\Win64\\\\Speed-Win64-Shipping.exe" type: default - config: betakey: internal_debug - osarch: '64' + osarch: "64" oslist: windows - executable: Speed\\Binaries\\Win64\\Speed-Win64-DebugGame.exe + executable: "Speed\\\\Binaries\\\\Win64\\\\Speed-Win64-DebugGame.exe" type: default -'1458100': +"1458100": installDir: Cozy Grove launch: - config: oslist: windows executable: CozyGrove.exe type: default -'1458560': - installDir: I'm on Observation Duty 3 +"1458560": + installDir: "I'm on Observation Duty 3" launch: - config: oslist: windows - executable: I'm on Observation Duty 3.exe + executable: "I'm on Observation Duty 3.exe" type: default - config: oslist: windows - executable: VR\\I'm on Observation Duty 3 VR.exe + executable: "VR\\\\I'm on Observation Duty 3 VR.exe" type: vr - config: oslist: linux - executable: I'm on Observation Duty 3.x86_64 + executable: "I'm on Observation Duty 3.x86_64" type: default - config: oslist: macos - executable: I'm on Observation Duty 3.app + executable: "I'm on Observation Duty 3.app" type: default -'1459710': +"1459710": installDir: Seiga_Kaku_uses_her_amazing_Taoist_arts_and_gives_you_a_life_lesson launch: - config: @@ -88935,7 +87413,7 @@ oslist: macos executable: SeigaKakusAmazingTaoistArts.app type: none -'1459960': +"1459960": installDir: Glitchpunk launch: - config: @@ -88946,34 +87424,32 @@ betakey: demo-test; biz-preview oslist: windows description: Glitchpunk Demo - description_loc: - english: Glitchpunk Demo executable: Glitchpunk Demo.exe type: option1 nameLocalized: schinese: Glitchpunk 故障朋克 tchinese: Glitchpunk 失靈叛客 -'1460010': {} -'1460040': +"1460010": {} +"1460040": installDir: Love Fantasy launch: - config: oslist: windows executable: Love Fantasy.exe type: default -'1460200': +"1460200": installDir: Merge Nymphs launch: - config: oslist: windows executable: Merge Nymphs.exe type: none -'1460490': +"1460490": installDir: Majikoi! Love Me Seriously! launch: - executable: Majikoi.exe type: default -'1460610': +"1460610": installDir: hocus 2 launch: - config: @@ -88984,125 +87460,119 @@ oslist: macos executable: hocus2.app type: default -'1460830': +"1460830": installDir: 6SeasonsAndAGame launch: - config: oslist: windows executable: CTG.exe type: none -'1461030': +"1461030": installDir: Carnivores Dinosaur Hunt launch: - config: oslist: windows executable: C2.exe type: default -'1461060': +"1461060": installDir: 法利恩戰記 Ⅱ (Furion Chronicles Ⅱ) launch: - executable: game.exe type: none -'1461920': +"1461920": installDir: The Legend of Heroes Ao no Kiseki KAI launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: game - description_loc: - english: game - japanese: ゲーム executable: ed72_steam.exe type: config - config: - osarch: '64' + osarch: "64" oslist: windows description: setting tool - description_loc: - english: setting tool - japanese: 設定ツール executable: Launcher_ED72.exe type: config nameLocalized: japanese: 英雄伝説 碧の軌跡:改 - koreana: '영웅전설 벽의 궤적: Kai' + koreana: "영웅전설 벽의 궤적: Kai" schinese: 英雄传说 碧之轨迹:改 tchinese: 英雄傳說 碧之軌跡:改 -'1462040': +"1462040": installDir: FINAL FANTASY VII REMAKE launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ff7remake.exe type: none -'1462150': +"1462150": installDir: R.B.I. Baseball 21 launch: - config: oslist: windows executable: RBIBaseball_2021.exe type: default -'1462210': +"1462210": installDir: Battle Bugs launch: - - arguments: '-conf bugs.conf -noconsole' + - arguments: "-conf bugs.conf -noconsole" config: oslist: windows description: original resolution executable: DOSBox.exe type: option1 - - arguments: '-conf bugs720.conf -noconsole' + - arguments: "-conf bugs720.conf -noconsole" config: oslist: windows description: 720p resolution executable: DOSBox.exe type: option2 - - arguments: '-conf bugs1080.conf -noconsole' + - arguments: "-conf bugs1080.conf -noconsole" config: oslist: windows description: 1080p resolution executable: DOSBox.exe type: option3 -'1462570': +"1462570": installDir: Lost in Random launch: - - executable: 'link2ea://launchgame/1462570?platform=steam&theme=lir' + - executable: "link2ea://launchgame/1462570?platform=steam&theme=lir" type: none nameLocalized: - japanese: 'ロスト・イン・ランダム ' + japanese: "ロスト・イン・ランダム " tchinese: 《Lost in Random™》 -'1462810': +"1462810": installDir: WRC 10 FIA World Rally Championship launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: WRC10.exe type: default -'1462970': +"1462970": installDir: Jumpman launch: - - arguments: '-conf jumpman.conf -noconsole' + - arguments: "-conf jumpman.conf -noconsole" config: oslist: windows description: original resolution executable: DOSBox.exe type: option1 - - arguments: '-conf jumpman720.conf -noconsole' + - arguments: "-conf jumpman720.conf -noconsole" config: oslist: windows description: 720p resolution executable: DOSBox.exe type: option2 - - arguments: '-conf jumpman1080.conf -noconsole' + - arguments: "-conf jumpman1080.conf -noconsole" config: oslist: windows description: 1080p resolution executable: DOSBox.exe type: option3 -'1463120': +"1463120": installDir: College Kings launch: - config: @@ -89117,12 +87587,12 @@ oslist: macos executable: CollegeKings.app type: default -'1463730': +"1463730": installDir: Arid launch: - executable: Arid.exe type: default -'1463920': +"1463920": installDir: hexceed launch: - config: @@ -89141,7 +87611,7 @@ japanese: ヘクスシード koreana: 육각형 schinese: 十六进制 -'1464010': +"1464010": installDir: Yolked launch: - config: @@ -89152,60 +87622,56 @@ oslist: macos executable: Yolked.app type: default -'1464380': +"1464380": installDir: Eclipse launch: - config: oslist: windows executable: Eclipse.exe type: default -'1464730': +"1464730": installDir: Metal Commando launch: - config: oslist: windows executable: Metal Commando.exe type: default -'1464930': +"1464930": installDir: Seek Girl Ⅶ launch: - executable: Seek Girl VII.exe type: none -'1465020': {} -'1465360': +"1465020": {} +"1465360": installDir: SnowRunner launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: ./Sources/Bin/SnowRunner.exe + executable: "./Sources/Bin/SnowRunner.exe" type: default - workingdir: ./Sources/Bin/ -'1465460': + workingdir: "./Sources/Bin/" +"1465460": nameLocalized: schinese: Infection Free Zone (无感染区) -'1465510': - installDir: Dusk '82 +"1465510": + installDir: "Dusk '82" launch: - config: - osarch: '64' + osarch: "64" oslist: windows - description: Launch Dusk '82 - description_loc: - english: Launch Dusk '82 - executable: Dusk '82.exe + description: "Launch Dusk '82" + executable: "Dusk '82.exe" type: default - description: View ReadMe - description_loc: - english: View ReadMe executable: readme.txt type: none -'1465550': +"1465550": installDir: One Lonely Outpost launch: - executable: One Lonely Outpost.exe type: default -'1465560': +"1465560": installDir: Against All Odds launch: - config: @@ -89213,12 +87679,12 @@ executable: Against All Odds.exe nameLocalized: schinese: 扑街派对 -'1466060': +"1466060": installDir: Tainted Grail FoA launch: - executable: Fall of Avalon.exe type: default -'1466640': +"1466640": installDir: Road 96 launch: - config: @@ -89254,7 +87720,7 @@ nameLocalized: schinese: 九十六号公路 tchinese: 九十六號公路 -'1466860': +"1466860": installDir: Age of Empires IV launch: - config: @@ -89262,76 +87728,71 @@ oslist: windows executable: RelicCardinal.exe type: default - - arguments: '-publicTest' + - arguments: "-publicTest" config: betakey: future_live oslist: windows description: Public Test - description_loc: - english: Public Test executable: RelicCardinal.exe type: default -'1467450': +"1467450": installDir: TheChroniclesOfMyrtana launch: - - arguments: '-game:TheChroniclesOfMyrtana.ini' + - arguments: "-game:TheChroniclesOfMyrtana.ini" executable: System/Gothic2.exe type: default - - arguments: '-game:TheChroniclesOfMyrtana.ini -target:debug' + - arguments: "-game:TheChroniclesOfMyrtana.ini -target:debug" config: betakey: git_master git_release git_betatest - description: 'The Chronicles Of Myrtana: Archolos (debug)' - description_loc: - english: 'The Chronicles Of Myrtana: Archolos (debug)' - polish: 'Kroniki Myrtany: Archolos (debug)' + description: "The Chronicles Of Myrtana: Archolos (debug)" executable: System/Gothic2.exe type: option1 nameLocalized: - german: 'Die Chroniken von Myrtana: Archolos' - italian: 'Le Cronache di Myrtana: Archolos' - polish: 'Kroniki Myrtany: Archolos' - russian: 'Хроники Миртаны: Архолос' -'1468110': {} -'1468180': - installDir: 'Bring me a man, Santa' + german: "Die Chroniken von Myrtana: Archolos" + italian: "Le Cronache di Myrtana: Archolos" + polish: "Kroniki Myrtany: Archolos" + russian: "Хроники Миртаны: Архолос" +"1468110": {} +"1468180": + installDir: "Bring me a man, Santa" launch: - config: oslist: windows - executable: 'Bring me a man, Santa.exe' + executable: "Bring me a man, Santa.exe" type: default -'1468250': +"1468250": installDir: Kukoos Lost Pets launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: KM.exe type: none -'1468400': +"1468400": nameLocalized: schinese: 梦想屋:游戏 -'1468810': +"1468810": nameLocalized: english: 鬼谷八荒 Tale of Immortal schinese: 鬼谷八荒 tchinese: 鬼谷八荒 -'1469170': +"1469170": installDir: Commandos 3 - HD Remaster launch: - config: - osarch: '64' + osarch: "64" executable: Commandos 3 HD.exe -'1469610': {} -'1470790': - installDir: Doug Flutie's Maximum Football 2020 +"1469610": {} +"1470790": + installDir: "Doug Flutie's Maximum Football 2020" launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Maximum Football 2020.exe type: default -'1470940': {} -'1471040': +"1470940": {} +"1471040": installDir: Base One launch: - config: @@ -89342,59 +87803,57 @@ - config: oslist: macos description: Launch - description_loc: - english: Launch executable: BaseOne.app type: default nameLocalized: japanese: ベースワン schinese: 基地一号 tchinese: 基地一號 -'1471410': +"1471410": installDir: SYNTHETIK 2 launch: - executable: Synthetik2.exe type: none -'1471680': +"1471680": installDir: Cyclemania launch: - - arguments: '-conf dosbox_fs.conf -conf dosbox_auto_launch.conf -noconsole -exit' + - arguments: "-conf dosbox_fs.conf -conf dosbox_auto_launch.conf -noconsole -exit" config: oslist: windows description: full screen - executable: dosbox_windows\\DOSBox.exe + executable: "dosbox_windows\\\\DOSBox.exe" type: option1 - workingdir: dosbox_windows\\ - - arguments: '-conf dosbox_w_640x480.conf -conf dosbox_auto_launch.conf -noconsole -exit' + workingdir: "dosbox_windows\\\\" + - arguments: "-conf dosbox_w_640x480.conf -conf dosbox_auto_launch.conf -noconsole -exit" config: oslist: windows description: windowed 640x480 - executable: dosbox_windows\\DOSBox.exe + executable: "dosbox_windows\\\\DOSBox.exe" type: option1 - workingdir: dosbox_windows\\ - - arguments: '-conf dosbox_w_1280x960.conf -conf dosbox_auto_launch.conf -noconsole -exit' + workingdir: "dosbox_windows\\\\" + - arguments: "-conf dosbox_w_1280x960.conf -conf dosbox_auto_launch.conf -noconsole -exit" config: oslist: windows description: windowed 1280x960 - executable: dosbox_windows\\DOSBox.exe + executable: "dosbox_windows\\\\DOSBox.exe" type: option1 - workingdir: dosbox_windows\\ - - arguments: '-conf dosbox_w_2560x1920.conf -conf dosbox_auto_launch.conf -noconsole -exit' + workingdir: "dosbox_windows\\\\" + - arguments: "-conf dosbox_w_2560x1920.conf -conf dosbox_auto_launch.conf -noconsole -exit" config: oslist: windows description: windowed 2560x1920 - executable: dosbox_windows\\DOSBox.exe + executable: "dosbox_windows\\\\DOSBox.exe" type: option1 - workingdir: dosbox_windows\\ -'1472250': + workingdir: "dosbox_windows\\\\" +"1472250": installDir: ROG CITADEL XV launch: - - arguments: '-single-instance' + - arguments: "-single-instance" config: oslist: windows executable: ROG CITADEL XV.exe type: default -'1472560': +"1472560": installDir: IAmFish launch: - config: @@ -89406,27 +87865,25 @@ koreana: 난 물고기야 schinese: 我是小鱼儿 / I Am Fish tchinese: 我是小魚 -'1473480': +"1473480": installDir: A.V.A launch: - - arguments: '-serveraddr\"rxgw.nlb.ava-st.pmang.cloud:28004\" ' + - arguments: "-serveraddr\\\"rxgw.nlb.ava-st.pmang.cloud:28004\\\" " config: oslist: windows description: AVA 실행 - description_loc: - english: AVA 실행 executable: Binaries/start_protected_game.exe type: default nameLocalized: schinese: 战地之王-国际 -'1473740': +"1473740": installDir: Maritime Calling launch: - config: oslist: windows executable: Maritime Calling.exe type: default -'1474550': +"1474550": installDir: Hexteria launch: - config: @@ -89441,73 +87898,65 @@ oslist: macos executable: Hexteria.app/Contents/MacOS/Hexteria type: default -'1474740': +"1474740": installDir: Stable Girl launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: StableGirl.exe type: none nameLocalized: - french: 'Horse Tales : La Vallée d''Emeraude' - german: 'Horse Tales: Rette Emerald Valley' -'1475810': + french: "Horse Tales : La Vallée d'Emeraude" + german: "Horse Tales: Rette Emerald Valley" +"1475810": installDir: Ghostwire Tokyo launch: - description: Launch Ghostwire Tokyo - description_loc: - english: Launch Ghostwire Tokyo executable: GWT.exe type: default - - arguments: '-NOVERIFYGC -NOSCREENMESSAGES' + - arguments: "-NOVERIFYGC -NOSCREENMESSAGES" config: betakey: tango_dev description: Launch Development or Test Ver. - description_loc: - english: Launch Development or Test Ver. executable: Snowfall.exe - - arguments: '-NOVERIFYGC -NOSCREENMESSAGES' + - arguments: "-NOVERIFYGC -NOSCREENMESSAGES" config: betakey: nv_dev description: Launch Development or Test Ver. - description_loc: - english: Launch Development or Test Ver. executable: Snowfall.exe - - arguments: '-NOVERIFYGC -NOSCREENMESSAGES' + - arguments: "-NOVERIFYGC -NOSCREENMESSAGES" config: betakey: shieldtest4 description: Launch Development or Test Ver. - description_loc: - english: Launch Development or Test Ver. executable: Snowfall.exe -'1475840': +"1475840": installDir: RHYTHM SPROUT launch: - executable: Rhythm Sprout.exe -'1475970': +"1475970": installDir: Defentron launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: DEFENTRON.exe type: default -'1476170': +"1476170": installDir: Godstrike launch: - config: oslist: windows executable: Godstrike.exe type: default - - arguments: '-debugBuild' + - arguments: "-debugBuild" config: betakey: debug oslist: windows description: Debug Branch executable: Godstrike.exe type: default -'1476340': +"1476340": installDir: TheAdventureOfNayu launch: - config: @@ -89522,7 +87971,7 @@ english: The Adventure of NAYU japanese: ナユの冒険 schinese: 奈优的冒险 -'1476970': +"1476970": installDir: Legends of Idleon launch: - config: @@ -89536,22 +87985,22 @@ japanese: IdleOn - 放置MMO koreana: IdleOn - 더 아이들 MMO schinese: IdleOn - 放置类MMO -'1477380': {} -'1477480': +"1477380": {} +"1477480": installDir: CielnosurgeDX launch: - executable: CielnosurgeDX_Launcher.exe type: none nameLocalized: japanese: シェルノサージュ ~失われた星へ捧ぐ詩~ DX -'1477490': +"1477490": installDir: ArnosurgeDX launch: - executable: ArnosurgeDX_Launcher.exe type: default nameLocalized: japanese: アルノサージュ ~生まれいずる星へ祈る詩~ DX -'1477700': +"1477700": installDir: Project Wunderwaffe launch: - config: @@ -89560,8 +88009,8 @@ type: default nameLocalized: schinese: 奇迹武器计划 -'1477790': - installDir: Luna's Fishing Garden +"1477790": + installDir: "Luna's Fishing Garden" launch: - config: oslist: windows @@ -89577,11 +88026,11 @@ type: none nameLocalized: schinese: 路纳的钓鱼花园 -'1477860': +"1477860": installDir: 7 Angels launch: - executable: Seven Angels.exe -'1478650': +"1478650": installDir: Diggles The Myth of Fenris launch: - config: @@ -89592,20 +88041,20 @@ german: Wiggles polish: Wiggles russian: Гномы -'1479390': +"1479390": installDir: Alekon launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Alekon.exe type: default -'1479730': {} -'1479890': +"1479730": {} +"1479890": installDir: Inua launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Inua.exe type: default @@ -89613,72 +88062,70 @@ oslist: macos executable: Inua.app type: default -'1480400': +"1480400": installDir: Ramses Rise of Empire launch: - config: oslist: windows executable: Ramses Rise of Empire.exe type: default -'1480560': +"1480560": installDir: Lawn Mowing Simulator launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Lawn Mowing Simulator.exe type: default nameLocalized: schinese: 割草模拟器 / Lawn Mowing Simulator -'1480810': +"1480810": installDir: Crimson Tactics White Banner launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Crimson Tactics White Banner.exe type: default -'1480830': +"1480830": installDir: Evil Tonight launch: - config: oslist: windows executable: evil_tonight.exe type: default -'1481400': +"1481400": installDir: Dagon launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Dagon.exe type: default - config: oslist: windows description: Dagon VR - description_loc: - english: Dagon VR executable: RunDagonVR.bat type: vr -'1481810': +"1481810": installDir: Ostrich Runner launch: - config: oslist: windows executable: game.exe type: default -'1482060': +"1482060": installDir: Lands Of Peace launch: - config: oslist: windows executable: LandsOfPeaceLegends.exe type: default -'1482860': +"1482860": installDir: Idle Research launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Idle Research.exe type: default @@ -89690,21 +88137,21 @@ oslist: linux executable: Idle Research.x86_64 type: default -'1482870': +"1482870": installDir: Midnight Legend launch: - config: oslist: windows executable: C_Racing.exe type: default -'1484720': +"1484720": installDir: Dead Estate launch: - config: oslist: windows executable: Dead Estate.exe type: default -'1484900': +"1484900": installDir: Hoa launch: - config: @@ -89717,20 +88164,20 @@ type: none nameLocalized: schinese: 花之灵 -'1484980': +"1484980": installDir: Super Huey™ 1 & 2 Airdrop launch: - config: oslist: windows executable: ConsoleLauncher.exe type: default -'1485590': +"1485590": nameLocalized: japanese: ENDLESS™ Dungeon (エンドレスダンジョン) - koreana: 'ENDLESS™ Dungeon (엔드리스 던전) ' + koreana: "ENDLESS™ Dungeon (엔드리스 던전) " schinese: ENDLESS™ Dungeon (无尽地牢) tchinese: ENDLESS™ Dungeon (無盡迷宮) -'1485690': +"1485690": installDir: Potion Tycoon launch: - config: @@ -89739,10 +88186,8 @@ type: default - config: oslist: windows - ownsdlc: '2239080' + ownsdlc: "2239080" description: Bonus Content - description_loc: - english: Bonus Content executable: open_bonus_win.bat nameLocalized: japanese: ポーション・タイクーン - Potion Tycoon @@ -89750,36 +88195,36 @@ russian: Магнат зельеварения - Potion Tycoon schinese: 药剂大亨 - Potion Tycoon tchinese: 藥劑大亨 - Potion Tycoon -'1486630': +"1486630": installDir: Intravenous launch: - config: oslist: windows executable: intravenous.exe type: default -'1486920': {} -'1487210': +"1486920": {} +"1487210": installDir: Super Mega Baseball 4 launch: - config: oslist: windows executable: supermegabaseball.exe -'1487390': +"1487390": installDir: ANVIL launch: - config: oslist: windows executable: ANVIL.exe type: default -'1487560': +"1487560": installDir: StarCrawlers Chimera launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: StarCrawlers Chimera.exe type: default -'1488100': +"1488100": installDir: IncrediMarble launch: - config: @@ -89788,20 +88233,18 @@ type: default - config: oslist: macos - executable: IncrediMarbleMac.app\\Contents\\MacOS\\IncrediMarble + executable: "IncrediMarbleMac.app\\\\Contents\\\\MacOS\\\\IncrediMarble" type: default - config: oslist: linux executable: IncrediMarble.x86_64 type: default -'1488200': +"1488200": installDir: SoW1 Project launch: - - description: 'Symphony of War: The Nephilim Saga' - description_loc: - english: 'Symphony of War: The Nephilim Saga' + - description: "Symphony of War: The Nephilim Saga" executable: steamshim.exe -'1489630': +"1489630": installDir: Carrier Command 2 launch: - config: @@ -89816,7 +88259,7 @@ oslist: windows executable: carrier_command_vr.exe type: vr -'1489680': +"1489680": installDir: Pixross launch: - config: @@ -89827,15 +88270,15 @@ oslist: linux executable: Pixross.x86_64 type: none -'1489970': +"1489970": installDir: City Next launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: HighriseCity.exe type: none -'1490340': +"1490340": installDir: We Are OFK launch: - config: @@ -89844,8 +88287,8 @@ - config: oslist: macos executable: We Are OFK.app -'1490830': {} -'1490890': +"1490830": {} +"1490890": installDir: Demon Slayer launch: - executable: APK.exe @@ -89854,17 +88297,17 @@ japanese: 鬼滅の刃 ヒノカミ血風譚 koreana: 귀멸의 칼날 히노카미 혈풍담 schinese: 鬼灭之刃 火之神血风谭 - spanish: "Guardianes de la Noche\_-Kimetsu no Yaiba- Las Crónicas de Hinokami" + spanish: Guardianes de la Noche -Kimetsu no Yaiba- Las Crónicas de Hinokami tchinese: 鬼滅之刃 火之神血風譚 -'1491000': +"1491000": installDir: WRFrontiers launch: - - arguments: '-fromsteam' + - arguments: "-fromsteam" config: oslist: windows executable: WarRobotsSteamLoader.exe type: default -'1491710': +"1491710": installDir: CrimeSight launch: - config: @@ -89874,7 +88317,7 @@ type: default nameLocalized: japanese: CRIMESIGHT (クライムサイト) -'1491720': +"1491720": installDir: Frick Inc launch: - config: @@ -89885,15 +88328,15 @@ oslist: linux executable: frickInc.x86_64 type: none -'1492290': +"1492290": installDir: Boulders Puzzle launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: boulders_puzzle.exe type: default -'1492310': +"1492310": installDir: Asterix & Obelix - Slap them All! launch: - config: @@ -89906,26 +88349,26 @@ type: default nameLocalized: french: Astérix & Obélix - Baffez-les Tous! -'1492320': +"1492320": installDir: Joe & Mac launch: - config: oslist: windows executable: NewJoeAndMac.exe type: default -'1492360': +"1492360": installDir: Recipe for Disaster launch: - executable: Recipe for Disaster.exe type: default -'1492680': +"1492680": installDir: The Pathless launch: - config: oslist: windows executable: Pathless.exe type: default -'1492730': +"1492730": installDir: DORAEMON STORY OF SEASONS FotGK launch: - config: @@ -89937,20 +88380,20 @@ koreana: 도라에몽 진구의 목장이야기 대자연의 왕국과 모두의 집 schinese: 哆啦A梦 牧场物语 自然王国与和乐家人 tchinese: 哆啦A夢 牧場物語 自然王國與和樂家人 -'1493360': +"1493360": installDir: Clouzy launch: - config: oslist: windows executable: Clouzy.exe type: default -'1493430': {} -'1493750': +"1493430": {} +"1493750": installDir: ED launch: - executable: EvilDead.exe type: default -'1493760': +"1493760": installDir: Youtubers Life 2 launch: - config: @@ -89961,114 +88404,114 @@ oslist: macos executable: Youtubers Life 2.app/Contents/MacOS/Youtubers Life 2 type: default -'1493970': +"1493970": installDir: The Chameleon launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: /Chameleon_Steam.exe type: none -'1494260': +"1494260": installDir: LootRiver launch: - config: oslist: windows executable: Loot River.exe type: default -'1494420': +"1494420": installDir: Silica launch: - executable: Silica.exe type: default -'1495320': +"1495320": installDir: CarnalInstinct launch: - config: oslist: windows executable: Carnal_Instinct.exe type: default -'1496250': +"1496250": installDir: Mary Skelter 2 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: MarySkelter2.exe type: default -'1496590': {} -'1496790': +"1496590": {} +"1496790": installDir: Gotham Knights launch: - executable: GothamKnights.exe type: default -'1497360': {} -'1497440': {} -'1497450': +"1497360": {} +"1497440": {} +"1497450": installDir: A Memoir Blue launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: A_Memoir_Blue.exe type: default -'1497680': +"1497680": installDir: Retro Classix Bad Dudes launch: - config: oslist: windows executable: Retro Classix Bad Dudes.exe type: default -'1497950': +"1497950": installDir: mikan launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: EDFWB.exe type: default nameLocalized: - english: 'EARTH DEFENSE FORCE: WORLD BROTHERS' - japanese: 'ま~るい地球が四角くなった!? デジボク地球防衛軍 EARTH DEFENSE FORCE: WORLD BROTHERS' - koreana: '동~그란 지구가 네모가 됐다고!? 디지복셀 지구방위군 EARTH DEFENSE FORCE: WORLD BROTHERS' - schinese: '圆滚地球变四方?! 数码方块地球防卫军 EARTH DEFENSE FORCE: WORLD BROTHERS' - tchinese: '圓滾地球變四方!? 數位方塊地球防衛軍 EARTH DEFENSE FORCE: WORLD BROTHERS' -'1498140': + english: "EARTH DEFENSE FORCE: WORLD BROTHERS" + japanese: "ま~るい地球が四角くなった!? デジボク地球防衛軍 EARTH DEFENSE FORCE: WORLD BROTHERS" + koreana: "동~그란 지구가 네모가 됐다고!? 디지복셀 지구방위군 EARTH DEFENSE FORCE: WORLD BROTHERS" + schinese: "圆滚地球变四方?! 数码方块地球防卫军 EARTH DEFENSE FORCE: WORLD BROTHERS" + tchinese: "圓滾地球變四方!? 數位方塊地球防衛軍 EARTH DEFENSE FORCE: WORLD BROTHERS" +"1498140": installDir: Cafe Owner Simulator launch: - executable: Cafe Owner Simulator.exe -'1498570': +"1498570": installDir: THE KING OF FIGHTERS XV launch: - config: oslist: windows executable: KOFXV_Steam.exe type: default -'1499120': +"1499120": installDir: I Expect You To Die 2 launch: - - arguments: '-vrmode oculus' + - arguments: "-vrmode oculus" config: oslist: windows executable: IEYTD2.exe type: othervr - - arguments: '-vrmode openvr' + - arguments: "-vrmode openvr" config: oslist: windows executable: IEYTD2.exe type: vr -'1499400': +"1499400": installDir: Retro Classix SRD - Super Real Darwin launch: - config: oslist: windows executable: Retro Classix SRD.exe type: none -'1500': +"1500": installDir: Darwinia launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: darwinia.exe type: default @@ -90076,7 +88519,7 @@ oslist: macos executable: Darwinia.app - config: - osarch: '64' + osarch: "64" oslist: linux executable: run.sh type: default @@ -90095,32 +88538,30 @@ oslist: windows executable: Darwinia.exe type: default -'15000': +"15000": installDir: Rainbow Six Lockdown launch: - executable: lockdown.exe -'1500310': +"1500310": installDir: Choco Pixel D launch: - config: oslist: windows executable: Choco Pixel D.exe type: default -'1500540': +"1500540": installDir: Hardwar launch: - description: Launch Hardwar Manager - description_loc: - english: Launch Hardwar Manager executable: Hardman.exe -'1500820': +"1500820": installDir: Caravaneer 2 launch: - config: oslist: windows executable: Caravaneer2.exe type: default -'1500980': +"1500980": installDir: Doomsday Vault launch: - config: @@ -90131,27 +88572,26 @@ oslist: macos executable: DoomsdayVault.app type: default -'1501570': +"1501570": installDir: Slender Hentai Edition launch: - config: oslist: windows executable: Slender Hentai Edition.exe type: default -'1501750': +"1501750": nameLocalized: japanese: Lords of the Fallen ロード オブ ザ フォールン schinese: Lords of the Fallen 堕落之主 -'1501980': +"1501980": installDir: ChefSquad launch: - config: oslist: windows executable: ChefSquad.exe type: default -'150208': - unknown: true -'1502540': +"150208": {} +"1502540": installDir: Sisters launch: - config: @@ -90164,23 +88604,23 @@ type: none nameLocalized: french: Les Sisters - Show Devant ! -'1502560': +"1502560": installDir: Smurfs launch: - executable: TheSmurfsMissionVileaf.exe type: none nameLocalized: - arabic: 'السنافر: مهمة شجرة الشر' + arabic: "السنافر: مهمة شجرة الشر" czech: Šmoulové – Mise Zlobýl danish: Smølferne - truslen fra slyngelplanterne dutch: De Smurfen - Missie Vileaf english: The Smurfs - Mission Vileaf - finnish: 'Smurffit: Operaatio Inhalehvä' + finnish: "Smurffit: Operaatio Inhalehvä" french: Les Schtroumpfs - Mission Malfeuille german: Die Schlümpfe – Mission Blattpest italian: I Puffi - Missione Vilfoglia japanese: スマーフ-邪悪な葉っぱ大作戦 - koreana: '개구쟁이 스머프: 미션 바일리프' + koreana: "개구쟁이 스머프: 미션 바일리프" norwegian: Smurfene – Operasjon sjofelvekst polish: Smerfy – Misja Złoliść portuguese: Os Smurfs – Missão Florrorosa @@ -90191,14 +88631,14 @@ swedish: Smurfarna - Uppdrag vidriga växten tchinese: 藍精靈:邪惡葉子大作戰 turkish: Şirinler - Vileaf Görevi -'1502710': +"1502710": installDir: Agent Intercept launch: - config: oslist: windows executable: AgentIntercept.exe type: default -'1502770': +"1502770": installDir: Re;Lord 2 ~The witch of Cologne and black cat~ launch: - config: @@ -90207,7 +88647,7 @@ type: default nameLocalized: japanese: Re;Lord 第二章 ~ケルンの魔女と黒猫~ -'1502970': +"1502970": installDir: Atelier Sophie DX launch: - executable: Atelier_Sophie_DX_Launcher.exe @@ -90216,7 +88656,7 @@ japanese: ソフィーのアトリエ ~不思議な本の錬金術士~ DX schinese: 苏菲的炼金工房 ~不可思议书的炼金术士~ DX tchinese: 蘇菲的鍊金工房 ~不可思議書的鍊金術士~ DX -'1502980': +"1502980": installDir: Atelier Firis DX launch: - executable: Atelier_Firis_DX_Launcher.exe @@ -90225,7 +88665,7 @@ japanese: フィリスのアトリエ ~不思議な旅の錬金術士~ DX schinese: 菲利丝的炼金工房 ~不可思议旅的炼金术士~ DX tchinese: 菲莉絲的鍊金工房 ~不可思議旅的鍊金術士~ DX -'1502990': +"1502990": installDir: Atelier Lydie and Suelle DX launch: - executable: Atelier_Lydie_and_Suelle_DX_Launcher.exe @@ -90234,14 +88674,14 @@ japanese: リディー&スールのアトリエ ~不思議な絵画の錬金術士~ DX schinese: 莉迪&苏瑞的炼金工房 ~不可思议绘画的炼金术士~ DX tchinese: 莉迪&蘇瑞的鍊金工房 ~不可思議繪畫的鍊金術士~ DX -'1503530': +"1503530": installDir: Minit Fun Racer launch: - config: oslist: windows executable: minit_racer.exe type: default -'1504500': +"1504500": installDir: OPUS Echo of Starsong launch: - config: @@ -90256,60 +88696,56 @@ japanese: OPUS 星歌の響き -Full Bloom Edition- schinese: OPUS:龙脉常歌 -最终版- tchinese: OPUS:龍脈常歌 -最終版- -'15060': +"15060": installDir: Rayman 2 - The Great Escape launch: - - arguments: '' + - arguments: "" description: Play Rayman 2 - The Great Escape executable: Rayman2.exe - workingdir: '' - - arguments: '' + workingdir: "" + - arguments: "" description: Launch Graphics Setup executable: GXSetup.exe - workingdir: '' -'1506440': + workingdir: "" +"1506440": installDir: Batora Lost Haven launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Batora.exe type: none - config: betakey: internal_dev - osarch: '64' + osarch: "64" oslist: windows description: Shipping - description_loc: - english: Shipping executable: Batora-Win64-Shipping.exe type: option1 - config: betakey: continuous_dev - osarch: '64' + osarch: "64" oslist: windows description: Shipping - description_loc: - english: Shipping executable: Batora-Win64-Shipping.exe type: option1 nameLocalized: schinese: 巴特拉:家在何方 -'1506510': +"1506510": installDir: The Ramp launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: The Ramp.exe type: default -'1506730': {} -'1506830': +"1506730": {} +"1506830": installDir: FIFA 22 launch: - - executable: 'link2ea://launchgame/1506830?platform=steam&theme=fifa22' + - executable: "link2ea://launchgame/1506830?platform=steam&theme=fifa22" type: none -'1507420': +"1507420": installDir: WanderLust launch: - config: @@ -90317,42 +88753,40 @@ description: Launch WanderLust executable: WanderLust.exe type: default -'1507570': +"1507570": installDir: HEXAD launch: - config: oslist: windows executable: HEXAD.exe type: none -'1507780': +"1507780": installDir: Space Warlord Organ Trading Simulator launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Space Warlord Organ Trading Simulator.exe type: default -'15080': +"15080": installDir: Rayman Raving Rabbids launch: - executable: checkapplication.exe -'1508270': +"1508270": installDir: Doctor Who Lonely Assassins launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: dwla.exe type: default -'1508400': +"1508400": installDir: Kaiju Wars launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Kaiju Wars DirectX - description_loc: - english: Kaiju Wars DirectX executable: KaijuWars.exe type: option1 - config: @@ -90360,44 +88794,42 @@ executable: KaijuWars.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: KaijuWars.x64 type: default - - arguments: '-force-glcore32' + - arguments: "-force-glcore32" config: - osarch: '64' + osarch: "64" oslist: windows description: Kaiju Wars OpenGL - description_loc: - english: Kaiju Wars OpenGL executable: KaijuWars.exe type: option2 -'1509080': +"1509080": installDir: Nox Archaist launch: - config: oslist: macos - executable: Nox Archaist.app\\Contents\\MacOS\\noxarchaist + executable: "Nox Archaist.app\\\\Contents\\\\MacOS\\\\noxarchaist" type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: noxarchaist.exe type: default -'1509090': +"1509090": installDir: Seek Girl Ⅷ launch: - executable: Seek Girl ⅤⅢ.exe type: none -'1509650': +"1509650": installDir: I Am Jesus Christ Prologue launch: - config: oslist: windows executable: Level1.exe type: default -'1510': +"1510": installDir: Uplink launch: - config: @@ -90409,51 +88841,45 @@ - config: oslist: linux executable: run_steam.sh -'15100': +"15100": installDir: Assassins Creed launch: - executable: AssassinsCreed_Game.exe -'1510460': +"1510460": installDir: Chicken Invaders Universe launch: - config: oslist: windows executable: CIU.exe type: none -'1510470': {} -'1510580': +"1510470": {} +"1510580": installDir: Toy Tinker Simulator launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ToyTinkerSimulator.exe type: default -'1511270': +"1511270": installDir: Ann launch: - config: oslist: windows description: English Version - description_loc: - english: English Version - japanese: 英語版 (English Version) - executable: Ann\\nw.exe + executable: "Ann\\\\nw.exe" type: option1 - config: oslist: windows description: 日本語ver. (Japanese Version) - description_loc: - english: 日本語ver. (Japanese Version) - japanese: 日本語版 - executable: AnnJP\\nw.exe + executable: "AnnJP\\\\nw.exe" type: option2 -'1511460': +"1511460": installDir: InfraSpace launch: - executable: InfraSpace.exe type: default -'1511780': +"1511780": installDir: Last Call BBS launch: - config: @@ -90468,12 +88894,12 @@ oslist: linux executable: LastCallBBS type: default -'15120': +"15120": installDir: Rainbow Six Vegas 2 launch: - - executable: binaries\\R6Vegas2_Game.exe + - executable: "binaries\\\\R6Vegas2_Game.exe" workingdir: binaries -'1512050': +"1512050": installDir: World Turtles launch: - config: @@ -90482,14 +88908,14 @@ type: default - config: oslist: macos - executable: World Turtles Demo.app\\Contents\\MacOS\\World Turtles + executable: "World Turtles Demo.app\\\\Contents\\\\MacOS\\\\World Turtles" type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: World Turtles Demo.x86_64 type: default -'1512390': +"1512390": installDir: The Whispering Valley launch: - config: @@ -90497,15 +88923,15 @@ executable: The Whispering Valley.exe - config: oslist: macos - executable: Contents\\MacOS\\The Whispering Valley -'1512480': + executable: "Contents\\\\MacOS\\\\The Whispering Valley" +"1512480": installDir: Gunlocked launch: - config: oslist: windows executable: Gunlocked.exe type: default -'15130': +"15130": installDir: Beyond Good and Evil launch: - executable: BGE.exe @@ -90513,10 +88939,8 @@ - config: oslist: windows description: Game Settings - description_loc: - english: Game Settings executable: SettingsApplication.exe -'1513120': +"1513120": installDir: The Zodiac Trial launch: - config: @@ -90527,22 +88951,22 @@ oslist: macos executable: TheNewImprovedZodiacTrial.app type: default -'1513250': +"1513250": installDir: ValleyWar launch: - config: oslist: windows executable: game.exe type: default -'15140': +"15140": installDir: Petz Dogz 2 launch: - executable: dogz.exe -'1514360': +"1514360": installDir: YuruCampVC1 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: yurucamp_vc1.exe type: vr @@ -90551,11 +88975,11 @@ koreana: 유루캠Δ VIRTUAL CAMP ~모토스호 편~ schinese: 摇曳露营△ VIRTUAL CAMP ~本栖湖篇~ tchinese: 搖曳露營△ VIRTUAL CAMP ~本栖湖篇~ -'1514370': +"1514370": installDir: YuruCampVC2 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: yurucamp_vc2.exe type: vr @@ -90564,27 +88988,27 @@ koreana: 유루캠Δ VIRTUAL CAMP ~산기슭 캠핑장 편~ schinese: 摇曳露营△ VIRTUAL CAMP ~山麓露营场篇~ tchinese: 搖曳露營△ VIRTUAL CAMP ~山麓露營場篇~ -'1514480': +"1514480": installDir: Lucid Cycle launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: LucidCycle.exe type: default -'1514910': +"1514910": installDir: LURE FREE launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: LureFree.exe type: default -'15150': +"15150": installDir: Petz Catz 2 launch: - executable: catz.exe -'1515210': +"1515210": installDir: The Past Within launch: - config: @@ -90595,12 +89019,12 @@ oslist: macos executable: ThePastWithin.app type: default -'1515230': +"1515230": installDir: LOLLIPOP! launch: - executable: LOLLIPOP!/LOLLIPOP!.exe type: none -'1515320': +"1515320": installDir: Harvest Days launch: - config: @@ -90608,38 +89032,36 @@ executable: Harvest Days.exe type: default nameLocalized: - schinese: '丰登之日: 我的梦中农场' -'1515330': {} -'1515450': + schinese: "丰登之日: 我的梦中农场" +"1515330": {} +"1515450": installDir: Galactic Pick Up Artist launch: - config: oslist: windows executable: Galactic_PickUpArtist.exe type: none -'1515460': +"1515460": installDir: Prison Tycoon Under New Management launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: PrisonTycoon.exe type: default -'1515640': +"1515640": installDir: Arcadegeddon launch: - - arguments: '-steam' + - arguments: "-steam" config: - osarch: '64' + osarch: "64" oslist: windows description: Default Launch - description_loc: - english: Default Launch executable: Arcade.exe type: default nameLocalized: schinese: 酷玩乱斗 -'1515900': +"1515900": installDir: Heaven Dust 2 launch: - config: @@ -90649,49 +89071,49 @@ nameLocalized: schinese: 秘馆疑踪2 / Heaven Dust 2 tchinese: 祕館疑蹤2 / Heaven Dust 2 -'1515950': +"1515950": installDir: Capcom Arcade Stadium launch: - executable: CapcomArcadeStadium.exe type: none -'15160': +"15160": installDir: Petz Horsez 2 launch: - executable: commonplayer.exe -'15170': +"15170": installDir: Heroes of Might and Magic 5 launch: - - executable: bin\\H5_Game.exe + - executable: "bin\\\\H5_Game.exe" workingdir: bin -'1517290': +"1517290": installDir: Battlefield 2042 launch: - - executable: 'link2ea://launchgame/1517290?platform=steam&theme=bf2042' + - executable: "link2ea://launchgame/1517290?platform=steam&theme=bf2042" type: none nameLocalized: schinese: 战地风云™ 2042 tchinese: 《戰地風雲™ 2042》 -'1517970': +"1517970": installDir: Aeterna Noctis launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Aeterna Noctis.exe type: default -'1518820': +"1518820": installDir: Horse Club Adventures launch: - config: oslist: windows executable: Horse Club.exe type: default -'15190': +"15190": installDir: Brothers in Arms Road to Hill 30 launch: - - executable: system\\bia.exe + - executable: "system\\\\bia.exe" workingdir: System -'1519010': +"1519010": installDir: Kamikaze Veggies launch: - config: @@ -90700,15 +89122,15 @@ type: default nameLocalized: schinese: 自杀蔬菜 -'1519350': +"1519350": installDir: Madden NFL 22 launch: - - executable: 'link2ea://launchgame/1519350?platform=steam&theme=nfl22' + - executable: "link2ea://launchgame/1519350?platform=steam&theme=nfl22" type: none nameLocalized: schinese: 《Madden NFL 22》 tchinese: 《Madden NFL 22》 -'1519730': +"1519730": installDir: Wildfire - Ticket to Rock launch: - config: @@ -90717,13 +89139,13 @@ type: default - config: oslist: macos - executable: Wildfire - Ticket to Rock.app\\Contents\\MacOS\\Wildfire - Ticket to Rock + executable: "Wildfire - Ticket to Rock.app\\\\Contents\\\\MacOS\\\\Wildfire - Ticket to Rock" type: default - config: oslist: linux executable: Wildfire - Ticket to Rock.sh type: default -'1520': +"1520": installDir: Defcon launch: - config: @@ -90737,11 +89159,11 @@ - config: oslist: linux executable: run_steam.sh -'15200': +"15200": installDir: Silent Hunters Wolves of the Pacific launch: - executable: sh4.exe -'1520060': +"1520060": installDir: Sheep Love launch: - config: @@ -90751,43 +89173,43 @@ nameLocalized: japanese: ヒツジコイ tchinese: 羊噗之戀 -'1520760': - installDir: Tyrant's Blessing +"1520760": + installDir: "Tyrant's Blessing" launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: tb-win.exe type: default - config: oslist: macos - executable: tb-osx.app/Contents/MacOS/Tyrant's Blessing + executable: "tb-osx.app/Contents/MacOS/Tyrant's Blessing" type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: tb-linux type: default -'15210': +"15210": installDir: Silent Hunter 3 launch: - executable: sh3.exe -'1521070': +"1521070": installDir: The Pegasus Expedition launch: - config: oslist: windows executable: The Pegasus Expedition.exe type: default -'1521160': +"1521160": installDir: AreYouSmarterThanA5thGrader launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: FifthGrader.exe type: default -'1521870': +"1521870": installDir: Riddle of the Sphinx - The Awakening launch: - config: @@ -90798,7 +89220,7 @@ oslist: macos executable: Riddle of the Sphinx - The Awakening.app type: default -'1521930': +"1521930": installDir: A Tale for Anna launch: - config: @@ -90809,29 +89231,27 @@ oslist: macos executable: A Tale for Anna.app type: default -'1521970': +"1521970": nameLocalized: schinese: 哥布林之石 / Goblin Stone tchinese: 哥布林之石 / Goblin Stone -'15220': +"15220": installDir: Blazing Angels Squadrons of WWII launch: - executable: Settingsapplication.exe -'1522260': +"1522260": installDir: Iragon Prologue 18 launch: - config: oslist: windows description: Launch Iragon - description_loc: - english: Launch Iragon executable: Iragon.exe type: none - config: oslist: windows executable: IragonVR.exe type: vr -'1522660': +"1522660": installDir: Introvert A Teenager Simulator launch: - config: @@ -90840,52 +89260,48 @@ type: none - config: oslist: macos - executable: introvertateenagersimulator.app\\Contents\\MacOS\\nwjs + executable: "introvertateenagersimulator.app\\\\Contents\\\\MacOS\\\\nwjs" type: none - config: oslist: linux executable: nw type: none -'1522820': +"1522820": installDir: Orcs Must Die 3 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Orcs Must Die! 3.exe type: default -'1522870': +"1522870": installDir: Supraland Six Inches Under launch: - config: - osarch: '64' + osarch: "64" oslist: windows - description: 'Supraland: Six Inches Under - DirectX 12 (Default)' - description_loc: - english: 'Supraland: Six Inches Under - DirectX 12 (Default)' + description: "Supraland: Six Inches Under - DirectX 12 (Default)" executable: SupralandSIU.exe type: option1 - - arguments: '-dx11' - description: 'Supraland: Six Inches Under - DirectX 11' - description_loc: - english: 'Supraland: Six Inches Under - DirectX 11' + - arguments: "-dx11" + description: "Supraland: Six Inches Under - DirectX 11" executable: SupralandSIU.exe type: option1 -'1522930': +"1522930": installDir: Transiruby launch: - - arguments: '-force-gfx-direct' + - arguments: "-force-gfx-direct" config: oslist: windows executable: Transiruby.exe type: default -'15230': +"15230": installDir: Blazing Angels 2 Secret Missions of WWII launch: - - executable: bin\\BA2.exe + - executable: "bin\\\\BA2.exe" workingdir: bin -'1523650': {} -'1523670': +"1523650": {} +"1523670": installDir: Eggy launch: - config: @@ -90896,42 +89312,40 @@ oslist: macos executable: Eggy.app type: default -'1523720': +"1523720": installDir: Cook-Out launch: - config: oslist: windows description: Launch - description_loc: - english: Launch executable: cook-out.exe type: vr -'1525330': +"1525330": installDir: GoH launch: - config: oslist: windows executable: GoH.exe type: default -'1525600': +"1525600": installDir: Sensual Adventures - The Game launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Sensual Adventures.exe type: default -'1525620': +"1525620": installDir: The Architect Paris launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: The Architect Paris.exe type: none nameLocalized: - schinese: 'The Architect: Paris / 巴黎建筑师' -'1525660': + schinese: "The Architect: Paris / 巴黎建筑师" +"1525660": installDir: Sunblaze launch: - config: @@ -90946,7 +89360,7 @@ oslist: linux executable: Sunblaze type: default -'1525700': +"1525700": installDir: Tavern Master launch: - config: @@ -90955,34 +89369,34 @@ type: default - config: oslist: macos - executable: TavernMaster_Mac.app\\Contents\\MacOS\\Tavern Master + executable: "TavernMaster_Mac.app\\\\Contents\\\\MacOS\\\\Tavern Master" type: default - config: oslist: linux executable: TavernMaster.x86_64 type: default -'15260': +"15260": installDir: Chessmaster Grandmaster Edition launch: - executable: gu.exe -'1526350': +"1526350": installDir: Harlow launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: Harlow\\Harlow.exe + executable: "Harlow\\\\Harlow.exe" type: default - config: oslist: macos - executable: Harlow\\Harlow.app + executable: "Harlow\\\\Harlow.app" type: default -'1526900': {} -'15270': +"1526900": {} +"15270": installDir: Cold Fear launch: - executable: coldfear_retail.exe -'1527950': +"1527950": installDir: Wartales launch: - config: @@ -90990,11 +89404,9 @@ executable: Wartales.exe - arguments: sdlboot.dat description: Wartales (OpenGL) - description_loc: - english: Wartales (OpenGL) executable: Wartales.exe -'1527980': - installDir: Woman's Prison +"1527980": + installDir: "Woman's Prison" launch: - executable: game.exe type: none @@ -91010,8 +89422,8 @@ spanish: Prisión de mujeres tchinese: 我在女子監獄開後宮 thai: เรือนจำหญิง -'1528000': - installDir: Natsuki's Imprisonment Life +"1528000": + installDir: "Natsuki's Imprisonment Life" launch: - executable: game.exe nameLocalized: @@ -91023,11 +89435,11 @@ latam: La vida en prisión de Natsuki portuguese: A Vida de Prisioneira de Natsuki russian: Нацуки. Жизнь в заточении - schinese: '夏树的监禁生活 ' + schinese: "夏树的监禁生活 " spanish: La vida en prisión de Natsuki tchinese: 夏樹的監禁生活 thai: ชีวิตที่ถูกจองจำของนัตสึกิ -'1528120': +"1528120": installDir: ComPressure launch: - config: @@ -91035,7 +89447,7 @@ executable: ComPressure.sh type: none - config: - osarch: '64' + osarch: "64" oslist: windows executable: ComPressure.exe type: none @@ -91043,8 +89455,8 @@ oslist: macos executable: ComPressure.sh type: none -'1528220': {} -'1528550': +"1528220": {} +"1528550": installDir: Imprisoned Queen launch: - executable: game.exe @@ -91063,19 +89475,19 @@ spanish: Reina Encarcelada tchinese: 監禁女王 thai: ราชินีที่ถูกคุมขัง -'15290': +"15290": installDir: Lost Via Domus launch: - - executable: detection\\Launcher.exe -'1529550': + - executable: "detection\\\\Launcher.exe" +"1529550": installDir: The Magnificent Trufflepigs launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Trufflepigs.exe type: default -'1529810': +"1529810": installDir: Psycholonials launch: - config: @@ -91087,11 +89499,11 @@ executable: psycholonials.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Psycholonials.x86_64 type: default -'1530': +"1530": installDir: Multiwinia launch: - config: @@ -91105,11 +89517,11 @@ - config: oslist: linux executable: run_steam.sh -'15300': +"15300": installDir: Ghost Recon launch: - executable: ghostrecon.exe -'1530160': +"1530160": installDir: Digimon World Next Order launch: - executable: Digimon World Next Order.exe @@ -91117,14 +89529,14 @@ koreana: 디지몬 월드 넥스트 오더 schinese: 数码宝贝世界 -next 0rder- tchinese: 數碼寶貝世界 -next 0rder- -'1530300': +"1530300": installDir: Auto Chess launch: - config: - osarch: '64' + osarch: "64" executable: ACPhoenix.exe type: default -'1530340': +"1530340": installDir: Incremental Epic Hero launch: - config: @@ -91137,134 +89549,130 @@ type: default nameLocalized: japanese: Incremental Epic Hero(インクリメンタル・エピックヒーロー) -'1530450': {} -'1530470': +"1530450": {} +"1530470": installDir: Daymare 1994 Sandcastle launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Ogre.exe type: default -'15310': +"15310": installDir: The Settlers Heritage of Kings launch: - - executable: bin\\SettlersHoK.exe + - executable: "bin\\\\SettlersHoK.exe" workingdir: bin -'1531250': +"1531250": installDir: Defend The Rook launch: - executable: Defend The Rook.exe type: default nameLocalized: schinese: 壁垒圣卫 -'1531430': +"1531430": installDir: Overprime launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ParagonClient.exe type: default nameLocalized: - koreana: '파라곤: 디 오버프라임' -'1531540': + koreana: "파라곤: 디 오버프라임" +"1531540": installDir: Distant Worlds 2 launch: - description: Normal Launch - description_loc: - english: Normal Launch executable: Launcher.exe - config: betakey: beta description: Distant Worlds 2 without Launcher - description_loc: - english: Distant Worlds 2 without Launcher executable: DistantWorlds2.exe type: option1 -'15320': +"15320": installDir: IL 2 Sturmovik 1946 launch: - executable: il2fb.exe -'1532200': +"1532200": installDir: Mars First Logistics launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Mars First Logistics.exe type: default -'1532690': +"1532690": installDir: BLACKTAIL launch: - - arguments: '-UseSteam -nohdr' + - arguments: "-UseSteam -nohdr" config: - osarch: '64' + osarch: "64" oslist: windows executable: BLACKTAIL.exe type: default nameLocalized: schinese: 女巫悲歌 -'15330': +"15330": installDir: The Settlers Rise of an Empire launch: - executable: Play Settlers 6.exe -'1533390': +"1533390": installDir: Gorilla Tag launch: - - arguments: '-vrmode openvr' + - arguments: "-vrmode openvr" config: - osarch: '64' + osarch: "64" oslist: windows executable: Gorilla Tag.exe type: vr - - arguments: '-vrmode oculus' + - arguments: "-vrmode oculus" config: - osarch: '64' + osarch: "64" oslist: windows executable: Gorilla Tag.exe type: othervr -'1533420': +"1533420": installDir: Neon White launch: - executable: Neon White.exe type: default -'1533470': +"1533470": installDir: TimeShifters launch: - config: oslist: windows executable: TimeShifters.exe -'1535100': +"1535100": installDir: Nadir launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Nadir.exe type: default -'1535610': +"1535610": installDir: Soul Nomad & the World Eaters launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: SoulNomad\\SoulNomad.exe + executable: "SoulNomad\\\\SoulNomad.exe" type: default workingdir: SoulNomad nameLocalized: japanese: SOUL CRADLE (ソウルクレイドル) 世界を喰らう者 -'1535780': +"1535780": installDir: Imp of the Sun launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: IotS.exe type: default nameLocalized: schinese: 炎赤子 -'1536610': +"1536610": installDir: OpenTTD launch: - config: @@ -91273,14 +89681,14 @@ type: default - config: oslist: macos - executable: OpenTTD.app\\Contents\\MacOS\\openttd + executable: "OpenTTD.app\\\\Contents\\\\MacOS\\\\openttd" type: default - - arguments: '-mfluidsynth:soundfont=soundfont/FluidR3_GM.sf2' + - arguments: "-mfluidsynth:soundfont=soundfont/FluidR3_GM.sf2" config: oslist: linux executable: openttd type: default -'1536980': +"1536980": installDir: Glass Masquerade 3 launch: - config: @@ -91289,15 +89697,15 @@ type: default - config: oslist: macos - executable: Glass Masquerade 3.app\\Contents\\MacOS\\Glass Masquerade 3 + executable: "Glass Masquerade 3.app\\\\Contents\\\\MacOS\\\\Glass Masquerade 3" type: default -'15370': +"15370": installDir: Heroes of Might and Magic 5 Tribes of the East launch: - - executable: bin\\H5_Game.exe + - executable: "bin\\\\H5_Game.exe" workingdir: bin -'1537810': {} -'1537830': +"1537810": {} +"1537830": installDir: DisneySpeedstorm launch: - config: @@ -91313,30 +89721,29 @@ koreana: 디즈니 스피드스톰 schinese: 迪士尼无限飞车 tchinese: 迪士尼無限飛車 -'1538570': +"1538570": installDir: Patron launch: - executable: GameLauncher.exe type: default -'1538640': +"1538640": installDir: Void_Dementia launch: - config: oslist: windows executable: VoidDementia.exe -'1538850': +"1538850": installDir: Grotto launch: - executable: Grotto.exe type: default -'15390': +"15390": installDir: Brothers in Arms Hells Highway launch: - - executable: Binaries\\biahh.exe -'1539081': - unknown: true -'1539400': {} -'1539620': + - executable: "Binaries\\\\biahh.exe" +"1539081": {} +"1539400": {} +"1539620": installDir: MONARK launch: - config: @@ -91348,12 +89755,12 @@ koreana: 모나크/Monark schinese: 罪恶王权/Monark tchinese: 罪惡王權/Monark -'15400': +"15400": installDir: Harvest Massive Encounter launch: - config: oslist: windows - description: 'Harvest: Massive Encounter' + description: "Harvest: Massive Encounter" executable: Harvest.exe - config: oslist: macos @@ -91362,92 +89769,88 @@ oslist: linux description: Linux executable: run_harvest -'1540240': {} -'1540350': {} -'1540410': +"1540240": {} +"1540350": {} +"1540410": installDir: Retro Classix Joe & Mac - Caveman Ninja launch: - config: oslist: windows executable: Retro Classix Joe and Mac.exe type: none -'1540420': +"1540420": installDir: Retro Classix Super BurgerTime launch: - config: oslist: windows executable: Retro Classix Super BurgerTime.exe type: none -'1540430': +"1540430": installDir: Retro Classix Gate of Doom launch: - config: oslist: windows executable: Retro Classix Gate of Doom.exe type: none -'1540440': +"1540440": installDir: Retro Classix Wizard Fire launch: - config: oslist: windows executable: Retro Classix Wizard Fire.exe type: none -'1540450': +"1540450": installDir: Retro Classix Two Crude launch: - config: oslist: windows executable: Retro Classix Two Crude.exe type: none -'1540470': +"1540470": installDir: Retro Classix Heavy Barrel launch: - config: oslist: windows executable: Retro Classix Heavy Barrel.exe type: none -'1541790': +"1541790": installDir: Punk Wars launch: - config: oslist: windows description: Launch - description_loc: - english: Launch executable: PunkWars.exe type: default - config: oslist: linux description: Launch - description_loc: - english: Launch executable: PW.x86_64 type: default - config: oslist: macos executable: PW.app/Contents/MacOS/PunkWars type: default -'1542110': +"1542110": installDir: Daydream launch: - - arguments: '-lean=1' + - arguments: "-lean=1" config: - osarch: '64' + osarch: "64" oslist: windows executable: DayDream.exe nameLocalized: japanese: デイドリーム:悲しみにさようなら - koreana: '백일몽: 잊힌 슬픔' + koreana: "백일몽: 잊힌 슬픔" schinese: 白日梦:被遗忘的悲伤 - thai: 'ฝันกลางวัน: ลืมความเศร้า' -'1542140': + thai: "ฝันกลางวัน: ลืมความเศร้า" +"1542140": installDir: Mage Noir - Infinity launch: - config: oslist: windows executable: magenoir_client_release_windows.exe type: default -'1542550': +"1542550": installDir: Scrap Riders launch: - config: @@ -91456,43 +89859,35 @@ - config: oslist: macos executable: ScrapRiders.app -'1542790': +"1542790": installDir: SRX Racing launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Play SRX Racing - description_loc: - english: Play SRX Racing executable: SRXRacing.exe type: default - - arguments: '-MGI-reset-graphics-settings' + - arguments: "-MGI-reset-graphics-settings" config: - osarch: '64' + osarch: "64" oslist: windows description: Reset Graphic Settings - description_loc: - english: Reset Graphic Settings executable: SRXRacing.exe type: none - config: - osarch: '64' + osarch: "64" oslist: windows description: Delete Save Data - description_loc: - english: Delete Save Data executable: DeleteSaveData.bat type: none - config: - osarch: '64' + osarch: "64" oslist: windows description: View Game Log File - description_loc: - english: View Game Log File executable: OpenGameLog.bat type: none -'1542810': +"1542810": installDir: Sunshine Heavy Industries launch: - config: @@ -91503,7 +89898,7 @@ oslist: macos executable: SUNSHINE HEAVY INDUSTRIES.app/Contents/MacOS/SUNSHINE HEAVY INDUSTRIES type: none -'1543030': +"1543030": installDir: 仙剑奇侠传七 launch: - config: @@ -91516,47 +89911,33 @@ sc_schinese: 仙剑奇侠传七 schinese: 仙剑奇侠传七 tchinese: 仙劍奇俠傳七 -'1543150': +"1543150": installDir: The Fermi Paradox launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: The Fermi Paradox.exe type: default -'1543240': +"1543240": installDir: Gigapocalypse launch: - executable: Gigapocalypse.exe type: none -'1543280': +"1543280": installDir: Espresso Tycoon launch: - description: Espresso Tycoon (standard) - description_loc: - brazilian: Espresso Tycoon (padrão) - dutch: Espresso Tycoon (standaard) - english: Espresso Tycoon (standard) - french: Espresso Tycoon (standard) - german: Espresso Tycoon (Standard) - italian: Espresso Tycoon (standard) - japanese: Espresso Tycoon(標準) - koreana: Espresso Tycoon (표준) - polish: Espresso Tycoon (standardowy) - russian: Espresso Tycoon (стандартный) - schinese: Espresso Tycoon(标准版) - spanish: Espresso Tycoon (estándar) - turkish: Espresso Tycoon (standart) executable: Espresso Tycoon.exe type: default -'1543430': +"1543430": installDir: Terrain of Magical Expertise launch: - config: oslist: windows executable: TOMERPG.exe type: default -'1543830': +"1543830": installDir: Addams Family launch: - config: @@ -91564,24 +89945,24 @@ executable: The Addams Family.exe type: default nameLocalized: - arabic: 'عائلة آدمز: قصر الفوضى' - brazilian: 'A Família Addams: Mansão da Confusão' - dutch: 'The Addams Family: Huize Herrie' - finnish: 'Perhe Addams: Kaaosta kartanossa' - french: "La famille Addams\_: Panique au manoir" - german: 'Die Addams Family: Villa-Wahnsinn' - italian: 'La Famiglia Addams: Caos in Casa' - japanese: 'アダムス・ファミリー: マンションメイハム' - latam: 'Los Locos Adams: Mansión Caótica' - polish: 'Rodzina Addamsów: Zamieszanie w rezydencji' - portuguese: 'A Familía Addams: Caos na mansão' - russian: 'Семейка Аддамс: Переполох в особняке' - schinese: '愛登士家庭 : 家翻宅乱' - spanish: 'La familia Addams: Caos en la mansión' + arabic: "عائلة آدمز: قصر الفوضى" + brazilian: "A Família Addams: Mansão da Confusão" + dutch: "The Addams Family: Huize Herrie" + finnish: "Perhe Addams: Kaaosta kartanossa" + french: "La famille Addams : Panique au manoir" + german: "Die Addams Family: Villa-Wahnsinn" + italian: "La Famiglia Addams: Caos in Casa" + japanese: "アダムス・ファミリー: マンションメイハム" + latam: "Los Locos Adams: Mansión Caótica" + polish: "Rodzina Addamsów: Zamieszanie w rezydencji" + portuguese: "A Familía Addams: Caos na mansão" + russian: "Семейка Аддамс: Переполох в особняке" + schinese: "愛登士家庭 : 家翻宅乱" + spanish: "La familia Addams: Caos en la mansión" swedish: Familjen Addams - Kaos i hemmet tchinese: 阿達一族:豪宅危機 - turkish: 'Addams Ailesi: Konak Karmaşası' -'1544020': + turkish: "Addams Ailesi: Konak Karmaşası" +"1544020": installDir: The Callisto Protocol launch: - config: @@ -91592,237 +89973,192 @@ betakey: uranium oslist: windows description: Non-Shipping Build - description_loc: - english: Non-Shipping Build executable: Phoenix.exe type: default - config: betakey: argon oslist: windows description: Non-Shipping Build - description_loc: - english: Non-Shipping Build executable: Phoenix.exe type: default nameLocalized: schinese: 《木卫四协议》 -'1544140': +"1544140": installDir: The Great Empire Relic of Egypt launch: - config: oslist: windows executable: The Great Empire Relic of Egypt.exe type: default -'1544360': - installDir: LEGO Builder's Journey +"1544360": + installDir: "LEGO Builder's Journey" launch: - config: oslist: windows - executable: Builder's Journey.exe + executable: "Builder's Journey.exe" type: none - - arguments: '-force-d3d11' + - arguments: "-force-d3d11" config: oslist: windows description: Play in compatibility mode (DX11) - description_loc: - english: Play in compatibility mode (DX11) - executable: Builder's Journey.exe + executable: "Builder's Journey.exe" type: none - - arguments: '-force-d3d11' + - arguments: "-force-d3d11" config: oslist: windows description: Play in classic mode (low spec) - description_loc: - english: Play in classic mode (low spec) - executable: LW/Builder's Journey.exe + executable: "LW/Builder's Journey.exe" type: none -'1544720': +"1544720": installDir: 4th & Inches launch: - - arguments: '-noconsole -conf fullscreen.conf -conf dosbox.conf -conf launch.conf -exit' + - arguments: "-noconsole -conf fullscreen.conf -conf dosbox.conf -conf launch.conf -exit" config: oslist: windows description: full screen - description_loc: - english: full screen - executable: DOSBox\\dosbox.exe + executable: "DOSBox\\\\dosbox.exe" type: option1 - workingdir: DOSBox\\Configuration - - arguments: '-noconsole -conf 320x200.conf -conf dosbox.conf -conf launch.conf -exit' + workingdir: "DOSBox\\\\Configuration" + - arguments: "-noconsole -conf 320x200.conf -conf dosbox.conf -conf launch.conf -exit" config: oslist: windows description: windowed 320x200 - description_loc: - english: windowed 320x200 - executable: DOSBox\\dosbox.exe + executable: "DOSBox\\\\dosbox.exe" type: option1 - workingdir: DOSBox\\Configuration - - arguments: '-noconsole -conf 640x400.conf -conf dosbox.conf -conf launch.conf -exit' + workingdir: "DOSBox\\\\Configuration" + - arguments: "-noconsole -conf 640x400.conf -conf dosbox.conf -conf launch.conf -exit" config: oslist: windows description: windowed 640x400 - description_loc: - english: windowed 640x400 - executable: DOSBox\\dosbox.exe + executable: "DOSBox\\\\dosbox.exe" type: option1 - workingdir: DOSBox\\Configuration - - arguments: '-noconsole -conf 1280x800.conf -conf dosbox.conf -conf launch.conf -exit' + workingdir: "DOSBox\\\\Configuration" + - arguments: "-noconsole -conf 1280x800.conf -conf dosbox.conf -conf launch.conf -exit" config: oslist: windows description: windowed 1280x800 - description_loc: - english: windowed 1280x800 - executable: DOSBox\\dosbox.exe + executable: "DOSBox\\\\dosbox.exe" type: option1 - workingdir: DOSBox\\Configuration - - arguments: '-noconsole -conf 2560x1600.conf -conf dosbox.conf -conf launch.conf -exit' + workingdir: "DOSBox\\\\Configuration" + - arguments: "-noconsole -conf 2560x1600.conf -conf dosbox.conf -conf launch.conf -exit" config: oslist: windows description: windowed 2560x1600 - description_loc: - english: windowed 2560x1600 - executable: DOSBox\\dosbox.exe + executable: "DOSBox\\\\dosbox.exe" type: option1 - workingdir: DOSBox\\Configuration -'1544730': + workingdir: "DOSBox\\\\Configuration" +"1544730": installDir: Fast Break launch: - - arguments: '-noconsole -conf fullscreen.conf -conf dosbox.conf -conf launch.conf -exit' + - arguments: "-noconsole -conf fullscreen.conf -conf dosbox.conf -conf launch.conf -exit" config: oslist: windows description: full screen - description_loc: - english: full screen - executable: DOSBox\\dosbox.exe + executable: "DOSBox\\\\dosbox.exe" type: option1 - workingdir: DOSBox\\Configuration - - arguments: '-noconsole -conf 320x200.conf -conf dosbox.conf -conf launch.conf -exit' + workingdir: "DOSBox\\\\Configuration" + - arguments: "-noconsole -conf 320x200.conf -conf dosbox.conf -conf launch.conf -exit" config: oslist: windows description: windowed 320x200 - description_loc: - english: windowed 320x200 - executable: DOSBox\\dosbox.exe + executable: "DOSBox\\\\dosbox.exe" type: option1 - workingdir: DOSBox\\Configuration - - arguments: '-noconsole -conf 640x400.conf -conf dosbox.conf -conf launch.conf -exit' + workingdir: "DOSBox\\\\Configuration" + - arguments: "-noconsole -conf 640x400.conf -conf dosbox.conf -conf launch.conf -exit" config: oslist: windows description: windowed 640x400 - description_loc: - english: windowed 640x400 - executable: DOSBox\\dosbox.exe + executable: "DOSBox\\\\dosbox.exe" type: option1 - workingdir: DOSBox\\Configuration - - arguments: '-noconsole -conf 1280x800.conf -conf dosbox.conf -conf launch.conf -exit' + workingdir: "DOSBox\\\\Configuration" + - arguments: "-noconsole -conf 1280x800.conf -conf dosbox.conf -conf launch.conf -exit" config: oslist: windows description: windowed 1280x800 - description_loc: - english: windowed 1280x800 - executable: DOSBox\\dosbox.exe + executable: "DOSBox\\\\dosbox.exe" type: option1 - workingdir: DOSBox\\Configuration - - arguments: '-noconsole -conf 2560x1600.conf -conf dosbox.conf -conf launch.conf -exit' + workingdir: "DOSBox\\\\Configuration" + - arguments: "-noconsole -conf 2560x1600.conf -conf dosbox.conf -conf launch.conf -exit" config: oslist: windows description: windowed 2560x1600 - description_loc: - english: windowed 2560x1600 - executable: DOSBox\\dosbox.exe + executable: "DOSBox\\\\dosbox.exe" type: option1 - workingdir: DOSBox\\Configuration -'1544740': + workingdir: "DOSBox\\\\Configuration" +"1544740": installDir: MicroProse Soccer launch: - - arguments: '-noconsole -conf fullscreen.conf -conf dosbox.conf -conf launch.conf -exit' + - arguments: "-noconsole -conf fullscreen.conf -conf dosbox.conf -conf launch.conf -exit" config: betakey: internal-test oslist: windows description: full screen - description_loc: - english: full screen - executable: DOSBox\\dosbox.exe + executable: "DOSBox\\\\dosbox.exe" type: option1 - workingdir: DOSBox\\Configuration - - arguments: '-noconsole -conf 320x200.conf -conf dosbox.conf -conf launch.conf -exit' + workingdir: "DOSBox\\\\Configuration" + - arguments: "-noconsole -conf 320x200.conf -conf dosbox.conf -conf launch.conf -exit" config: betakey: internal-test oslist: windows description: windowed 320x200 - description_loc: - english: windowed 320x200 - executable: DOSBox\\dosbox.exe + executable: "DOSBox\\\\dosbox.exe" type: option1 - workingdir: DOSBox\\Configuration - - arguments: '-noconsole -conf 640x400.conf -conf dosbox.conf -conf launch.conf -exit' + workingdir: "DOSBox\\\\Configuration" + - arguments: "-noconsole -conf 640x400.conf -conf dosbox.conf -conf launch.conf -exit" config: betakey: internal-test oslist: windows description: windowed 640x400 - description_loc: - english: windowed 640x400 - executable: DOSBox\\dosbox.exe + executable: "DOSBox\\\\dosbox.exe" type: option1 - workingdir: DOSBox\\Configuration - - arguments: '-noconsole -conf 1280x800.conf -conf dosbox.conf -conf launch.conf -exit' + workingdir: "DOSBox\\\\Configuration" + - arguments: "-noconsole -conf 1280x800.conf -conf dosbox.conf -conf launch.conf -exit" config: betakey: internal-test oslist: windows description: windowed 1280x800 - description_loc: - english: windowed 1280x800 - executable: DOSBox\\dosbox.exe + executable: "DOSBox\\\\dosbox.exe" type: option1 - workingdir: DOSBox\\Configuration - - arguments: '-noconsole -conf 2560x1600.conf -conf dosbox.conf -conf launch.conf -exit' + workingdir: "DOSBox\\\\Configuration" + - arguments: "-noconsole -conf 2560x1600.conf -conf dosbox.conf -conf launch.conf -exit" config: betakey: internal-test oslist: windows description: windowed 2560x1600 - description_loc: - english: windowed 2560x1600 - executable: DOSBox\\dosbox.exe + executable: "DOSBox\\\\dosbox.exe" type: option1 - workingdir: DOSBox\\Configuration + workingdir: "DOSBox\\\\Configuration" - description: Testing Launcher - description_loc: - english: Testing Launcher executable: ConsoleLauncher.exe type: option1 -'1545010': +"1545010": installDir: ExZeusCollection launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: ExZeusCollection.exe type: default -'1545560': +"1545560": installDir: Shadow Gambit The Cursed Crew launch: - - arguments: '-mimimi' + - arguments: "-mimimi" config: oslist: windows executable: ShadowGambit_TCC.exe type: default - - arguments: '-mimimi' + - arguments: "-mimimi" config: - betakey: >- - bizdev, development, development_debug, kowloon, loca, milestone, nightly, nightly_debug,playtest-internal, - playtest-internal-exp,taskforce,temp,testing-external-compatqa ,testing-external-qa - ,testing-external-qa-backup ,trailer-capturing ,trailer-capturing-backup + betakey: "bizdev, development, development_debug, kowloon, loca, milestone, nightly, nightly_debug,playtest-internal, playtest-internal-exp,taskforce,temp,testing-external-compatqa ,testing-external-qa ,testing-external-qa-backup ,trailer-capturing ,trailer-capturing-backup" oslist: windows description: skartoffel_unity.exe (legacy executable) - description_loc: - english: skartoffel_unity.exe (legacy executable) executable: skartoffel_unity.exe type: option1 nameLocalized: - japanese: 'Shadow Gambit: カリブの呪い' + japanese: "Shadow Gambit: カリブの呪い" schinese: 影子诡局:被诅咒的海盗 tchinese: 暗影詭計:受詛咒的船員 -'1546100': +"1546100": installDir: A Musical Story launch: - config: @@ -91837,32 +90173,28 @@ oslist: linux executable: MusicalStory.x86_64 type: default -'1546400': +"1546400": installDir: GigaBash launch: - executable: GigaBash.exe type: none -'1546570': +"1546570": installDir: PAL launch: - config: oslist: windows description: 98 version - description_loc: - english: 98 version - schinese: 仙剑奇侠传 98柔情篇 - tchinese: 仙劍奇俠傳 98柔情篇 executable: PalWorks.exe type: default nameLocalized: english: Sword and Fairy schinese: 仙剑奇侠传 tchinese: 仙劍奇俠傳 -'1546920': +"1546920": installDir: Overboard! launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Overboard!.exe type: default @@ -91870,39 +90202,33 @@ oslist: macos executable: Overboard!.app type: default -'1546970': +"1546970": installDir: GTA III - The Definitive Edition launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Play - description_loc: - english: Play executable: PlayGTA3.exe type: none -'1546990': +"1546990": installDir: GTA Vice City - The Definitive Edition launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Play - description_loc: - english: Play executable: PlayGTAViceCity.exe type: default -'1547000': +"1547000": installDir: GTA San Andreas - The Definitive Edition launch: - config: oslist: windows description: Play - description_loc: - english: Play executable: PlayGTASanAndreas.exe type: default -'1547380': +"1547380": installDir: KINGDOM of the DEAD launch: - config: @@ -91910,75 +90236,73 @@ executable: KINGDOM of the DEAD.exe type: none nameLocalized: - koreana: 'KINGDOM of the DEAD - 킹덤 오브 더 데드 ' -'1547860': + koreana: "KINGDOM of the DEAD - 킹덤 오브 더 데드 " +"1547860": installDir: EBOLA 3 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: EBOLA 3.exe type: default -'1547890': - installDir: Let's Build a Zoo +"1547890": + installDir: "Let's Build a Zoo" launch: - config: oslist: windows executable: LetsBuildAZoo.exe type: default -'1548750': +"1548750": installDir: Conway Disappearance at Dahlia View launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: DahliaView.exe type: default - - arguments: '-DX11' + - arguments: "-DX11" config: - osarch: '64' + osarch: "64" oslist: windows description: in DirectX 11 mode - description_loc: - english: in DirectX 11 mode executable: DahliaView.exe type: option1 -'1548850': +"1548850": installDir: Six Days in Fallujah launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SixDays.exe type: default -'1548940': +"1548940": installDir: Run launch: - config: oslist: windows executable: run.exe type: default -'1549000': +"1549000": installDir: Retro Classix Express Raider launch: - config: oslist: windows executable: Retro Classix Express Raider.exe type: none -'1549180': +"1549180": installDir: Propnight launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: Propnight\\Binaries\\Win64\\Propnight_BE.exe + executable: "Propnight\\\\Binaries\\\\Win64\\\\Propnight_BE.exe" type: default -'1549250': +"1549250": installDir: Undecember launch: - executable: UNDECEMBER.exe - workingdir: RzGame\\Binaries\\Win64 -'1549550': + workingdir: "RzGame\\\\Binaries\\\\Win64" +"1549550": installDir: Haven Park launch: - config: @@ -91987,64 +90311,58 @@ type: default - config: oslist: macos - executable: HavenPark.app\\Contents\\MacOS\\HavenPark + executable: "HavenPark.app\\\\Contents\\\\MacOS\\\\HavenPark" type: default - config: oslist: linux description: OpenGL - description_loc: - english: OpenGL executable: HavenPark.x86_64 type: default - - arguments: '-force-vulkan' + - arguments: "-force-vulkan" config: oslist: linux description: Force Vulkan - description_loc: - english: Force Vulkan executable: HavenPark.x86_64 type: default nameLocalized: japanese: Haven Park (ヘイブンパーク) -'1549750': +"1549750": installDir: Vomitoreum launch: - config: oslist: windows - executable: Vomitoreum\\Vomitoreum.exe + executable: "Vomitoreum\\\\Vomitoreum.exe" type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: Vomitoreum type: none -'1549970': +"1549970": installDir: Aliens Fireteam Elite launch: - - description: 'Play Aliens: Fireteam Elite' - description_loc: - english: 'Play Aliens: Fireteam Elite' + - description: "Play Aliens: Fireteam Elite" executable: Endeavor.exe type: default -'15500': +"15500": installDir: The Wonderful End of the World launch: - executable: main.exe -'1550260': +"1550260": installDir: BloodRayne Betrayal Fresh Bites launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: executable\\bloodrayne.exe + executable: "executable\\\\bloodrayne.exe" type: none nameLocalized: japanese: ブラッドレインビトレイヤル 鮮血 -'1550270': +"1550270": installDir: Togges launch: - executable: Togges.exe -'1550510': +"1550510": installDir: Creepy Tale 2 launch: - config: @@ -92062,25 +90380,25 @@ nameLocalized: schinese: 惊悚故事2 tchinese: 驚悚故事2 -'1550740': +"1550740": installDir: IgnitedSteel launch: - config: oslist: windows executable: IgnitedSteel.exe type: none -'1550750': +"1550750": installDir: Siren Head Hentai Edition launch: - config: oslist: windows executable: Siren Head Hentai Edition.exe type: default -'1550760': +"1550760": installDir: Blast Brigade vs. Evil Legion of Dr. Cread launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Blast Brigade.exe type: default @@ -92088,58 +90406,52 @@ oslist: macos executable: Blast Brigade.app type: default -'1551160': +"1551160": installDir: Combat Mission Cold War launch: - executable: Launcher.exe type: default -'1551360': +"1551360": installDir: ForzaHorizon5 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ForzaHorizon5.exe type: default - config: - betakey: 'mainlineinstall,rcinstall,sideload' - osarch: '64' + betakey: "mainlineinstall,rcinstall,sideload" + osarch: "64" oslist: windows description: Forza Horizon 5 (Profile) - description_loc: - english: Forza Horizon 5 (Profile) executable: forza_x64_profile.exe type: option1 - config: - betakey: 'mainlineinstall,rcinstall,sideload' - osarch: '64' + betakey: "mainlineinstall,rcinstall,sideload" + osarch: "64" oslist: windows description: Forza Horizon 5 (Release) - description_loc: - english: Forza Horizon 5 (Release) executable: forza_x64_release.exe type: option2 - config: - betakey: 'mainlineinstall,rcinstall,sideload' - osarch: '64' + betakey: "mainlineinstall,rcinstall,sideload" + osarch: "64" oslist: windows description: Forza Horizon 5 (Release Final) - description_loc: - english: Forza Horizon 5 (Release Final) executable: forza_x64_release_final.exe type: option3 nameLocalized: schinese: 极限竞速:地平线 5 -'1551520': +"1551520": installDir: Kamikaze Kommittee Ouka 2 launch: - executable: Game.exe type: default nameLocalized: japanese: トッコー委員会オウカRPG2 - schinese: '特攻委员会煌华2 ' + schinese: "特攻委员会煌华2 " tchinese: 特攻委員會煌華2 -'1551540': +"1551540": installDir: Tower of Ardia launch: - executable: Game.exe @@ -92148,7 +90460,7 @@ japanese: アルディアの塔 schinese: 阿尔迪亚之塔 tchinese: 阿爾迪亞之塔 -'1551570': +"1551570": installDir: Kung Fu Grand King launch: - executable: Game.exe @@ -92157,8 +90469,8 @@ japanese: カンフー・グランドキング schinese: 冠位功夫娘 tchinese: 冠位功夫娘 -'1551620': - installDir: Letina's Odyssey +"1551620": + installDir: "Letina's Odyssey" launch: - executable: Game.exe type: default @@ -92166,33 +90478,33 @@ japanese: Dungeon of Retina - ダンジョン・オブ・レティーナ schinese: 蕾缇娜历险记 tchinese: 蕾緹娜歷險記 -'15520': +"15520": installDir: AaaaaAAaaaAAAaaAAAAaAAAAA!!! launch: - executable: main.exe -'1552080': +"1552080": installDir: Deepest Chamber launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: DeepestChamber.exe type: default nameLocalized: schinese: 幽深密室 tchinese: 幽深密室 -'1552310': +"1552310": installDir: JANITOR BLEEDS launch: - config: oslist: windows executable: JANITOR BLEEDS.exe type: default -'1552350': +"1552350": installDir: The Jackbox Party Pack 8 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: The Jackbox Party Pack 8.exe type: default @@ -92201,42 +90513,37 @@ executable: The Jackbox Party Pack 8.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Launcher.sh type: default -'1552550': +"1552550": installDir: Castlevania Advance Collection launch: - description: DEBUG Build - description_loc: - english: DEBUG Build - japanese: DEBUGビルド executable: game.exe type: default -'1552810': +"1552810": installDir: TwinMirro launch: - config: oslist: windows description: Twin Mirror - description_loc: - english: Twin Mirror - executable: \\LOA.exe + executable: "\\\\LOA.exe" type: option1 nameLocalized: schinese: Twin Mirror 双子幻境 -'1553000': {} -'1553120': +"1553000": {} +"1553120": installDir: The Inheritance of Crimson Manor launch: - executable: CrimsonManor.exe -'1553140': {} -'15540': +"1553140": {} +"15540": installDir: 123kickit launch: - executable: 123KickIt.exe -'1554600': +"1554600": installDir: Wife Quest launch: - config: @@ -92244,54 +90551,46 @@ executable: Wife Quest.exe type: default - config: - ownsdlc: '1744540' + ownsdlc: "1744540" description: Art Book Wife Quest App - description_loc: - english: Art Book Wife Quest App executable: ArtBookExe/wife-quest-art-book.exe type: option1 - config: - ownsdlc: '1744540' + ownsdlc: "1744540" description: Art Book Wife Quest PDF - description_loc: - english: Art Book Wife Quest PDF executable: The_Art_of_Wife_Quest.pdf type: option2 -'1554640': +"1554640": installDir: Super Sami Roll launch: - config: oslist: windows executable: Super Sami Roll.exe type: default -'1554840': +"1554840": installDir: Toree 3D launch: - config: oslist: windows executable: Toree3D.exe type: none -'1555140': {} -'1555650': +"1555140": {} +"1555650": installDir: HEXCRAFT Harlequin Fair launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Base Game - description_loc: - english: Base Game - executable: Harlequin Fair\\Harlequin Fair.exe + executable: "Harlequin Fair\\\\Harlequin Fair.exe" type: default - config: - osarch: '64' + osarch: "64" oslist: windows - ownsdlc: '1960290' + ownsdlc: "1960290" description: Play Harbour Dawn Expansion Campaign - description_loc: - english: Play Harbour Dawn Expansion Campaign - executable: Harbour Dawn\\Harbour Dawn.exe -'15560': + executable: "Harbour Dawn\\\\Harbour Dawn.exe" +"15560": installDir: Awesome launch: - config: @@ -92306,100 +90605,96 @@ oslist: linux description: Aaaaa! for the Awesome executable: startgame.sh - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" config: oslist: windows description: Play Aaaaa! (show gfx options) executable: Awesome.exe - - arguments: '-vr -adapter 1' + - arguments: "-vr -adapter 1" config: oslist: macos description: Aaaaaculus! (VR) Extended executable: Awesome.app - - arguments: '-vr -show-screen-selector' + - arguments: "-vr -show-screen-selector" config: oslist: linux description: Aaaaaculus! mode! (Oculus Rift) Extended Mode executable: startgame.sh - - arguments: '-vr -adapter 1 -force-d3d11' + - arguments: "-vr -adapter 1 -force-d3d11" config: oslist: windows description: Aaaaaculus! (VR) Extended executable: Awesome.exe - - arguments: '-vr -show-screen-selector -adapter 1' + - arguments: "-vr -show-screen-selector -adapter 1" config: oslist: windows description: Aaaaaculus! (VR) Extended (show gfx options) executable: Awesome.exe - - arguments: '-vr -force-d3d11' + - arguments: "-vr -force-d3d11" config: oslist: windows description: Aaaaaculus! (VR) Direct Mode DX11 executable: Awesome_DirectToRift.exe - - arguments: '-vr -show-screen-selector -adapter 1' + - arguments: "-vr -show-screen-selector -adapter 1" config: oslist: macos description: Aaaaaculus! (VR) Extended (show gfx options) executable: Awesome.app - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" config: oslist: linux description: Aaaaa! for the Awesome (show GFX settings) executable: startgame.sh - - arguments: '-vr' + - arguments: "-vr" config: oslist: windows description: Aaaaaculus! (VR) Direct Mode DX9 executable: Awesome_DirectToRift.exe -'1556100': {} -'1556200': +"1556100": {} +"1556200": installDir: Predator Hunting Grounds launch: - - arguments: '-Steam' + - arguments: "-Steam" config: - osarch: '64' + osarch: "64" oslist: windows executable: EACLauncher.exe type: default -'1556490': +"1556490": installDir: Retreat To Enen launch: - executable: RetreatToEnen.exe type: default -'1556650': +"1556650": installDir: Castle of Shikigami 2 launch: - executable: Shiki2.exe type: default nameLocalized: japanese: 式神の城II -'1556790': +"1556790": installDir: Isonzo launch: - arguments: isonzo config: - osarch: '64' + osarch: "64" oslist: windows executable: Isonzo/Isonzo.exe type: default - - arguments: '-force-vulkan' + - arguments: "-force-vulkan" config: - osarch: '64' + osarch: "64" oslist: linux - description: 'Launch ' - description_loc: - english: 'Launch ' + description: "Launch " executable: Isonzo/Isonzo - config: oslist: macos description: Launch - description_loc: - english: Launch executable: Isonzo/Isonzo.app/Contents/MacOS/Isonzo type: default nameLocalized: schinese: 伊松佐河 -'1556870': +"1556870": installDir: Golf Club Wasteland launch: - config: @@ -92408,15 +90703,15 @@ type: default nameLocalized: schinese: 高尔夫:废土 -'1557480': +"1557480": installDir: Project MIKHAIL launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ProjectMIKHAIL.exe type: default -'1557510': +"1557510": installDir: MYASTERE launch: - config: @@ -92426,40 +90721,38 @@ nameLocalized: english: Myastere -Ruins of Deazniff- japanese: ミアステール~デズニフの遺跡~ -'1557740': +"1557740": installDir: ROUNDS launch: - config: oslist: windows executable: Rounds.exe type: none -'1557860': +"1557860": installDir: Gear.Club HD launch: - config: oslist: windows executable: GCU2.exe type: default -'1558830': {} -'1558930': +"1558830": {} +"1558930": installDir: Little Orpheus launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch Game - description_loc: - english: Launch Game executable: littleorpheus.exe type: default -'1558990': +"1558990": installDir: Siege of Avalon Anthology launch: - executable: Siege.exe type: default nameLocalized: - russian: 'Осада Авалона: Антология' -'1559390': + russian: "Осада Авалона: Антология" +"1559390": installDir: FateSeekerII launch: - config: @@ -92471,37 +90764,37 @@ japanese: 天命奇御二 schinese: 天命奇御二 tchinese: 天命奇御二 -'1559600': +"1559600": installDir: The Ranch of Rivershine launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TheRanchOfRivershine.exe type: default -'1560250': +"1560250": installDir: Rising Front launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Rising Front.exe type: default - config: oslist: macos executable: Rising Front.app -'1561040': +"1561040": installDir: Diluvian launch: - executable: DiluvianWinds.exe type: default nameLocalized: schinese: 洪流之风 Diluvian Winds -'1561660': +"1561660": installDir: The Lightbringer launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Lightbringer.exe type: default @@ -92509,17 +90802,17 @@ oslist: linux executable: Lightbringer.x86_64 type: default -'1561890': +"1561890": installDir: Recursive Ruin launch: - config: oslist: windows executable: Recursive Ruin.exe type: default -'15620': +"15620": installDir: Dawn of War 2 launch: - - arguments: '-logs' + - arguments: "-logs" config: oslist: windows executable: dow2.exe @@ -92532,7 +90825,7 @@ oslist: linux executable: DawnOfWar2.sh type: none -'1562230': +"1562230": installDir: EntityResearchers launch: - config: @@ -92543,21 +90836,21 @@ oslist: linux executable: EntityResearchers type: default -'1562420': +"1562420": installDir: FOREWARNED launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: FOREWARNED.exe type: default - - arguments: '-VirtualReality' + - arguments: "-VirtualReality" config: - osarch: '64' + osarch: "64" oslist: windows executable: FOREWARNED.exe type: vr -'1562430': +"1562430": installDir: DREDGE launch: - config: @@ -92566,21 +90859,21 @@ type: default nameLocalized: schinese: 《渔帆暗涌》 -'1562700': +"1562700": installDir: SANABI launch: - executable: SNB.exe nameLocalized: koreana: 산나비 schinese: 闪避刺客 -'1563130': +"1563130": installDir: SuperPower3 launch: - config: oslist: windows - executable: Exec\\ClientUE4.exe + executable: "Exec\\\\ClientUE4.exe" type: default -'1564220': +"1564220": installDir: Q.U.B.E. 10th Anniversary launch: - config: @@ -92590,40 +90883,38 @@ - config: oslist: windows description: Q.U.B.E. Create - description_loc: - english: Q.U.B.E. Create - executable: QUBECreate\\QUBE.exe -'1564230': + executable: "QUBECreate\\\\QUBE.exe" +"1564230": installDir: RAZE 2070 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: RAZE.exe type: none -'1564790': +"1564790": installDir: submachine launch: - config: oslist: windows executable: submachine.exe type: default -'1565080': +"1565080": installDir: Femboys of the Phalanx launch: - config: oslist: windows executable: FemboysofthePhalanx.exe type: default -'1565670': +"1565670": installDir: Five Nations launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: fivenations.exe type: default -'1565680': +"1565680": installDir: The Prophecy launch: - config: @@ -92634,7 +90925,7 @@ oslist: macos executable: MacBuild.app type: none -'1566060': +"1566060": installDir: Miss Furry launch: - config: @@ -92647,7 +90938,7 @@ type: default - config: oslist: macos - executable: Contents\\MacOS\\Miss Furry + executable: "Contents\\\\MacOS\\\\Miss Furry" type: default nameLocalized: arabic: ملكة جمال فروي @@ -92679,50 +90970,48 @@ turkish: Bayan Kürklü ukrainian: Міс Феррі vietnamese: Hoa hậu lông -'1566200': +"1566200": installDir: Tape to Tape launch: - executable: Tape to Tape.exe -'1566390': +"1566390": installDir: SoD_SH launch: - executable: SoD_SH.exe type: none -'1566880': +"1566880": nameLocalized: japanese: ソードアート・オンライン ラスト リコレクション koreana: 소드 아트 온라인 라스트 리콜렉션 schinese: 刀剑神域 异绊集结 tchinese: 刀劍神域 異絆集結 -'1567020': +"1567020": installDir: The Dark Pictures Anthology - The Devil In Me launch: - - arguments: '-dx11' + - arguments: "-dx11" config: - osarch: '64' + osarch: "64" oslist: windows executable: TheDevilInMe.exe type: default - - arguments: '-dx12' + - arguments: "-dx12" config: oslist: windows - description: 'The Dark Pictures Anthology: The Devil In Me (DX12)' - description_loc: - english: 'The Dark Pictures Anthology: The Devil In Me (DX12)' + description: "The Dark Pictures Anthology: The Devil In Me (DX12)" executable: TheDevilInMe.exe type: option1 nameLocalized: - koreana: '더 다크 픽처스 앤솔로지: 더 데빌 인 미' + koreana: "더 다크 픽처스 앤솔로지: 더 데빌 인 미" schinese: 《黑相集:心中魔》 tchinese: 《黑相集:心中魔》 -'1567440': +"1567440": installDir: inbento launch: - config: oslist: windows executable: inbento.exe type: default -'1567520': +"1567520": installDir: Blackwind launch: - config: @@ -92733,180 +91022,146 @@ oslist: macos executable: Blackwind.app type: none -'1567740': +"1567740": installDir: To Hell With It launch: - config: oslist: windows description: game (default) - description_loc: - english: game (default) executable: HellGamePrototype.exe type: option1 - - arguments: '-d3d11' + - arguments: "-d3d11" config: oslist: windows description: game using D3D11 (use if default crashes) - description_loc: - english: game using D3D11 (use if default crashes) executable: HellGamePrototype.exe type: option2 -'1567860': +"1567860": installDir: Femboy Bangers launch: - config: oslist: windows executable: FemboyBangers.exe type: default -'1568430': +"1568430": installDir: Discoveries of the Deep launch: - - arguments: '-noconsole -conf fullscreen.conf -conf dosbox.conf -conf launch.conf -exit' + - arguments: "-noconsole -conf fullscreen.conf -conf dosbox.conf -conf launch.conf -exit" config: oslist: windows description: full screen - description_loc: - english: full screen - executable: DOSBox\\dosbox.exe + executable: "DOSBox\\\\dosbox.exe" type: option1 - workingdir: DOSBox\\Configuration - - arguments: '-noconsole -conf 320x200.conf -conf dosbox.conf -conf launch.conf -exit' + workingdir: "DOSBox\\\\Configuration" + - arguments: "-noconsole -conf 320x200.conf -conf dosbox.conf -conf launch.conf -exit" config: oslist: windows description: windowed 320x200 - description_loc: - english: windowed 320x200 - executable: DOSBox\\dosbox.exe + executable: "DOSBox\\\\dosbox.exe" type: option1 - workingdir: DOSBox\\Configuration - - arguments: '-noconsole -conf 640x400.conf -conf dosbox.conf -conf launch.conf -exit' + workingdir: "DOSBox\\\\Configuration" + - arguments: "-noconsole -conf 640x400.conf -conf dosbox.conf -conf launch.conf -exit" config: oslist: windows description: windowed 640x400 - description_loc: - english: windowed 640x400 - executable: DOSBox\\dosbox.exe + executable: "DOSBox\\\\dosbox.exe" type: option1 - workingdir: DOSBox\\Configuration - - arguments: '-noconsole -conf 1280x800.conf -conf dosbox.conf -conf launch.conf -exit' + workingdir: "DOSBox\\\\Configuration" + - arguments: "-noconsole -conf 1280x800.conf -conf dosbox.conf -conf launch.conf -exit" config: oslist: windows description: windowed 1280x800 - description_loc: - english: windowed 1280x800 - executable: DOSBox\\dosbox.exe + executable: "DOSBox\\\\dosbox.exe" type: option1 - workingdir: DOSBox\\Configuration - - arguments: '-noconsole -conf 2560x1600.conf -conf dosbox.conf -conf launch.conf -exit' + workingdir: "DOSBox\\\\Configuration" + - arguments: "-noconsole -conf 2560x1600.conf -conf dosbox.conf -conf launch.conf -exit" config: oslist: windows description: windowed 2560x1600 - description_loc: - english: windowed 2560x1600 - executable: DOSBox\\dosbox.exe + executable: "DOSBox\\\\dosbox.exe" type: option1 - workingdir: DOSBox\\Configuration -'1568440': + workingdir: "DOSBox\\\\Configuration" +"1568440": installDir: Sands of Fire launch: - - arguments: '-noconsole -conf fullscreen.conf -conf dosbox.conf -conf launch.conf -exit' + - arguments: "-noconsole -conf fullscreen.conf -conf dosbox.conf -conf launch.conf -exit" config: oslist: windows description: full screen - description_loc: - english: full screen - executable: DOSBox\\dosbox.exe + executable: "DOSBox\\\\dosbox.exe" type: option1 - workingdir: DOSBox\\Configuration - - arguments: '-noconsole -conf 320x200.conf -conf dosbox.conf -conf launch.conf -exit' + workingdir: "DOSBox\\\\Configuration" + - arguments: "-noconsole -conf 320x200.conf -conf dosbox.conf -conf launch.conf -exit" config: oslist: windows description: windowed 320x200 - description_loc: - english: windowed 320x200 - executable: DOSBox\\dosbox.exe + executable: "DOSBox\\\\dosbox.exe" type: option1 - workingdir: DOSBox\\Configuration - - arguments: '-noconsole -conf 640x400.conf -conf dosbox.conf -conf launch.conf -exit' + workingdir: "DOSBox\\\\Configuration" + - arguments: "-noconsole -conf 640x400.conf -conf dosbox.conf -conf launch.conf -exit" config: oslist: windows description: windowed 640x400 - description_loc: - english: windowed 640x400 - executable: DOSBox\\dosbox.exe + executable: "DOSBox\\\\dosbox.exe" type: option1 - workingdir: DOSBox\\Configuration - - arguments: '-noconsole -conf 1280x800.conf -conf dosbox.conf -conf launch.conf -exit' + workingdir: "DOSBox\\\\Configuration" + - arguments: "-noconsole -conf 1280x800.conf -conf dosbox.conf -conf launch.conf -exit" config: oslist: windows description: windowed 1280x800 - description_loc: - english: windowed 1280x800 - executable: DOSBox\\dosbox.exe + executable: "DOSBox\\\\dosbox.exe" type: option1 - workingdir: DOSBox\\Configuration - - arguments: '-noconsole -conf 2560x1600.conf -conf dosbox.conf -conf launch.conf -exit' + workingdir: "DOSBox\\\\Configuration" + - arguments: "-noconsole -conf 2560x1600.conf -conf dosbox.conf -conf launch.conf -exit" config: oslist: windows description: windowed 2560x1600 - description_loc: - english: windowed 2560x1600 - executable: DOSBox\\dosbox.exe + executable: "DOSBox\\\\dosbox.exe" type: option1 - workingdir: DOSBox\\Configuration -'1568450': + workingdir: "DOSBox\\\\Configuration" +"1568450": installDir: Search for the Titanic launch: - - arguments: '-noconsole -conf fullscreen.conf -conf dosbox.conf -conf launch.conf -exit' + - arguments: "-noconsole -conf fullscreen.conf -conf dosbox.conf -conf launch.conf -exit" config: oslist: windows description: full screen - description_loc: - english: full screen - executable: DOSBox\\dosbox.exe + executable: "DOSBox\\\\dosbox.exe" type: option1 - workingdir: DOSBox\\Configuration - - arguments: '-noconsole -conf 320x240.conf -conf dosbox.conf -conf launch.conf -exit' + workingdir: "DOSBox\\\\Configuration" + - arguments: "-noconsole -conf 320x240.conf -conf dosbox.conf -conf launch.conf -exit" config: oslist: windows description: windowed 320x240 - description_loc: - english: windowed 320x240 - executable: DOSBox\\dosbox.exe + executable: "DOSBox\\\\dosbox.exe" type: option1 - workingdir: DOSBox\\Configuration - - arguments: '-noconsole -conf 640x480.conf -conf dosbox.conf -conf launch.conf -exit' + workingdir: "DOSBox\\\\Configuration" + - arguments: "-noconsole -conf 640x480.conf -conf dosbox.conf -conf launch.conf -exit" config: oslist: windows description: windowed 640x480 - description_loc: - english: windowed 640x480 - executable: DOSBox\\dosbox.exe + executable: "DOSBox\\\\dosbox.exe" type: option1 - workingdir: DOSBox\\Configuration - - arguments: '-noconsole -conf 1280x960.conf -conf dosbox.conf -conf launch.conf -exit' + workingdir: "DOSBox\\\\Configuration" + - arguments: "-noconsole -conf 1280x960.conf -conf dosbox.conf -conf launch.conf -exit" config: oslist: windows description: windowed 1280x960 - description_loc: - english: windowed 1280x960 - executable: DOSBox\\dosbox.exe + executable: "DOSBox\\\\dosbox.exe" type: option1 - workingdir: DOSBox\\Configuration - - arguments: '-noconsole -conf 2560x1920.conf -conf dosbox.conf -conf launch.conf -exit' + workingdir: "DOSBox\\\\Configuration" + - arguments: "-noconsole -conf 2560x1920.conf -conf dosbox.conf -conf launch.conf -exit" config: oslist: windows description: windowed 2560x1920 - description_loc: - english: windowed 2560x1920 - executable: DOSBox\\dosbox.exe + executable: "DOSBox\\\\dosbox.exe" type: option1 - workingdir: DOSBox\\Configuration -'1568590': + workingdir: "DOSBox\\\\Configuration" +"1568590": installDir: Goose Goose Duck launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Goose Goose Duck.exe type: default @@ -92914,11 +91169,11 @@ oslist: macos executable: GGD.app type: default -'1568940': +"1568940": installDir: Flower girl launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Flower Girl.exe type: default @@ -92930,15 +91185,15 @@ schinese: 花妖物语/Flower girl tchinese: 花妖物語 vietnamese: Câu chuyện quái vật hoa -'1568970': +"1568970": nameLocalized: schinese: 流离归途 tchinese: 流離歸途 -'1569040': +"1569040": installDir: Football Manager 2022 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: fm.exe type: none @@ -92946,77 +91201,73 @@ oslist: macos executable: fm.app type: none -'1569200': +"1569200": installDir: Brewmaster launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: BrewmasterMain.exe type: default nameLocalized: schinese: Brewmaster 酿酒大师 -'1569220': +"1569220": installDir: Abermore launch: - config: betakey: developer executable: Abermore.exe type: none -'1569550': +"1569550": installDir: Dread X Collection The Hunt launch: - - arguments: '-screen-fullscreen 1' + - arguments: "-screen-fullscreen 1" config: oslist: windows description: Fullscreen Mode - description_loc: - english: Fullscreen Mode executable: DXC4Launcher.exe type: option1 - - arguments: '-screen-fullscreen 0' + - arguments: "-screen-fullscreen 0" config: oslist: windows description: Windowed Mode - description_loc: - english: Windowed Mode executable: DXC4Launcher.exe type: option2 -'15700': +"15700": installDir: Oddworld Abes Oddysee launch: - executable: AbeWin.exe -'1570010': +"1570010": installDir: FAR Changing Tides launch: - - arguments: '-platform-steam' + - arguments: "-platform-steam" config: oslist: windows executable: FarChangingTides.exe type: default nameLocalized: japanese: 『ファー:チェンジング タイド』 - koreana: '파: 변화의 파도' + koreana: "파: 변화의 파도" schinese: 《远方:涌变暗潮》 tchinese: 《遠方:湧變暗潮》 -'1570020': - installDir: World's End Club +"1570020": + installDir: "World's End Club" launch: - config: oslist: windows - executable: World'sEndClub.exe + executable: "World'sEndClub.exe" type: none -'1570070': +"1570070": installDir: PaintBucket launch: - config: oslist: windows executable: Beholder3.exe -'15710': +"15710": installDir: Oddworld Abes Exoddus launch: - executable: Exoddus.exe -'1571170': +"1571170": installDir: Summer with Mia Season 1 launch: - config: @@ -93030,7 +91281,7 @@ - config: oslist: linux executable: SummerWithMiaS1.sh -'1571280': +"1571280": installDir: Street Legal 1 REVision launch: - config: @@ -93040,31 +91291,29 @@ - config: oslist: windows description: Workshop Installer - description_loc: - english: Workshop Installer executable: WorkshopInstaller.exe type: editor -'1571460': +"1571460": installDir: Zorro the Chronicles launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Zorro_The_Chronicles.exe type: default -'1571940': +"1571940": installDir: Ctrl Alt Ego launch: - executable: Ctrl Alt Ego.exe type: default -'1572450': +"1572450": installDir: Femboy Besties launch: - config: oslist: windows executable: FemboyBesties.exe type: default -'1572920': +"1572920": installDir: SuperTux launch: - config: @@ -93073,24 +91322,22 @@ type: default - config: oslist: windows - executable: bin\\supertux2.exe + executable: "bin\\\\supertux2.exe" type: default - config: oslist: macos executable: SuperTux.app type: default -'1573090': +"1573090": installDir: Impaler launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Impaler - description_loc: - english: Impaler executable: Impaler.exe type: default -'1573390': +"1573390": installDir: LilasSkyArk launch: - config: @@ -93103,9 +91350,9 @@ type: default - config: oslist: macos - executable: SkyArk.app\\Contents\\MacOS\\SkyArk + executable: "SkyArk.app\\\\Contents\\\\MacOS\\\\SkyArk" type: default -'1573720': +"1573720": installDir: Agatha Christie - Hercule Poirot The First Cases launch: - config: @@ -93117,43 +91364,43 @@ executable: Poirot.app type: none nameLocalized: - arabic: 'أجاثا كريستي - هرقل بوارو: الحالات المبكرة' - japanese: 'アガサ・クリスティ - エルキュール・ポアロ: 初事件' - koreana: '애거서 크리스티 – 에르퀼 푸아로: 첫 번째 사건' + arabic: "أجاثا كريستي - هرقل بوارو: الحالات المبكرة" + japanese: "アガサ・クリスティ - エルキュール・ポアロ: 初事件" + koreana: "애거서 크리스티 – 에르퀼 푸아로: 첫 번째 사건" schinese: 阿加莎·克里斯蒂 - 赫尔克里·波洛:最初的案件 tchinese: 阿加莎·克莉絲蒂 - 赫丘勒·白羅:最初的案件 -'15740': +"15740": installDir: Oddworld Munchs Oddysee launch: - - executable: bin\\Launcher.exe + - executable: "bin\\\\Launcher.exe" workingdir: bin -'1574240': +"1574240": installDir: Dread Delusion launch: - config: oslist: windows - executable: \\windows_content\\Dread Delusion.exe + executable: "\\\\windows_content\\\\Dread Delusion.exe" type: none -'1574250': +"1574250": installDir: Spookware launch: - executable: SPOOKWARE.exe type: none -'1574260': +"1574260": installDir: My Friendly Neighborhood launch: - config: oslist: windows executable: My Friendly Neighborhood.exe type: default -'1574270': +"1574270": installDir: Sucker for Love launch: - config: oslist: windows executable: SUCKER FOR LOVE.exe type: default -'1574310': +"1574310": installDir: Oxenfree II Lost Signals launch: - config: @@ -93164,86 +91411,82 @@ oslist: macos executable: Oxenfree2.app type: default -'1574360': +"1574360": installDir: Uncharted Waters Origin launch: - executable: Uwo.exe - workingdir: Uwo\\Binaries\\Win64 + workingdir: "Uwo\\\\Binaries\\\\Win64" nameLocalized: japanese: 大航海時代 Origin schinese: 大航海时代:起源 tchinese: 大航海時代:起源 -'1574480': {} -'1574580': +"1574480": {} +"1574580": installDir: Strange Horticulture launch: - config: oslist: windows executable: Strange Horticulture.exe type: none -'1574870': +"1574870": installDir: USC Counterforce launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: USC Counterforce.exe type: default nameLocalized: schinese: 终极太空突击队:反击势力 -'15750': - installDir: Stranger's Wrath +"15750": + installDir: "Stranger's Wrath" launch: - executable: launcher.exe -'1575470': +"1575470": installDir: Frogun launch: - config: oslist: windows - executable: Windows\\Frogun.exe + executable: "Windows\\\\Frogun.exe" type: default - config: oslist: linux - executable: Linux\\Frogun + executable: "Linux\\\\Frogun" type: default -'1575640': +"1575640": installDir: SOL CRESTA launch: - config: oslist: windows executable: SolCresta.exe type: default -'1575670': +"1575670": installDir: SNK VS. CAPCOM THE MATCH OF THE MILLENNIUM launch: - config: oslist: windows description: Launch - description_loc: - english: Launch executable: NGPCS.exe type: default nameLocalized: - english: 'SNK VS. CAPCOM: THE MATCH OF THE MILLENNIUM' + english: "SNK VS. CAPCOM: THE MATCH OF THE MILLENNIUM" japanese: 頂上決戦 最強ファイターズ SNK VS. CAPCOM -'1575990': {} -'1576240': +"1575990": {} +"1576240": installDir: The Shadow of Yidhra launch: - config: oslist: windows executable: The Shadow of Yidhra.exe type: none -'1577120': +"1577120": installDir: The Quarry launch: - description: Launch with 2KLauncher - description_loc: - english: Launch with 2KLauncher - executable: 2KLauncher\\LauncherPatcher.exe + executable: "2KLauncher\\\\LauncherPatcher.exe" type: option1 - config: - betakey: '2kqa_a,2kqa_b,2k_marketing' + betakey: "2kqa_a,2kqa_b,2k_marketing" executable: TheQuarry.exe type: default nameLocalized: @@ -93251,27 +91494,27 @@ koreana: 쿼리 schinese: 采石场惊魂 tchinese: 獵逃驚魂 -'1577240': +"1577240": installDir: Cions of Vega launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: CionsOfVega.exe type: default -'1577250': +"1577250": installDir: The Chant launch: - - arguments: '-NoVerifyGC' + - arguments: "-NoVerifyGC" executable: Chant.exe -'1577420': +"1577420": installDir: Love Sucks Night One launch: - config: oslist: windows executable: LoveSucks.exe type: default -'1577620': +"1577620": installDir: The Signal State launch: - config: @@ -93285,11 +91528,11 @@ nameLocalized: schinese: 信号法则 The Signal State tchinese: 訊號法則 The Signal State -'1578330': +"1578330": installDir: Doki Doki Ragnarok launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Doki Doki Ragnarok.exe type: default @@ -93301,7 +91544,7 @@ oslist: linux executable: Doki Doki Ragnarok type: default -'1578650': +"1578650": installDir: Citizen Sleeper launch: - config: @@ -93310,26 +91553,26 @@ - config: oslist: macos executable: Citizen Sleeper.app -'1579280': +"1579280": installDir: The Last Worker launch: - executable: The Last Worker.exe type: default - - arguments: '-VR' + - arguments: "-VR" executable: The Last Worker.exe type: vr - - arguments: '-VR -Oculus' + - arguments: "-VR -Oculus" executable: The Last Worker.exe type: othervr -'1579320': +"1579320": installDir: Futanari of the Amazon launch: - config: oslist: windows executable: FutanarioftheAmazon.exe type: default -'1579380': - installDir: Shadow Tactics - Aiko's Choice +"1579380": + installDir: "Shadow Tactics - Aiko's Choice" launch: - config: oslist: windows @@ -93340,27 +91583,27 @@ executable: Shadow Tactics type: default nameLocalized: - schinese: 'Shadow Tactics: 爱子的选择 Aiko''s Choice' - tchinese: 'Shadow Tactics: 愛子的抉擇 Aiko''s Choice' -'1579880': + schinese: "Shadow Tactics: 爱子的选择 Aiko's Choice" + tchinese: "Shadow Tactics: 愛子的抉擇 Aiko's Choice" +"1579880": installDir: The Light Brigade launch: - executable: LightBrigade.exe type: vr -'15800': +"15800": installDir: Planet Busters launch: - executable: planet.exe -'1580240': +"1580240": installDir: Rune Factory 4 Special launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: RF4S.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: RF4SLauncher.exe type: config @@ -93368,35 +91611,35 @@ japanese: ルーンファクトリー4スペシャル koreana: 룬 팩토리 4 스페셜 tchinese: 符文工廠4豪華版 -'1580520': +"1580520": installDir: Lost Eidolons launch: - - arguments: '-pcplatform steam' + - arguments: "-pcplatform steam" config: oslist: windows executable: LostEidolons.exe type: default -'1580780': - installDir: '[NINJA GAIDEN Master Collection] NINJA GAIDEN Σ' +"1580780": + installDir: "[NINJA GAIDEN Master Collection] NINJA GAIDEN Σ" launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: NINJA GAIDEN SIGMA.exe type: default nameLocalized: - japanese: '【NINJA GAIDEN: マスターコレクション】 NINJA GAIDEN Σ' -'1580790': - installDir: '[NINJA GAIDEN Master Collection] NINJA GAIDEN Σ2' + japanese: "【NINJA GAIDEN: マスターコレクション】 NINJA GAIDEN Σ" +"1580790": + installDir: "[NINJA GAIDEN Master Collection] NINJA GAIDEN Σ2" launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: NINJA GAIDEN SIGMA2.exe type: default nameLocalized: - japanese: '【NINJA GAIDEN: マスターコレクション】 NINJA GAIDEN Σ2' -'1580970': + japanese: "【NINJA GAIDEN: マスターコレクション】 NINJA GAIDEN Σ2" +"1580970": installDir: Samorost 1 launch: - config: @@ -93407,7 +91650,7 @@ oslist: macos executable: Samorost1.app type: none -'1581040': +"1581040": installDir: ElShaddaiASCENSION_OF_THE_METATRON launch: - config: @@ -93416,49 +91659,49 @@ type: default nameLocalized: schinese: 天使之王:梅塔特隆的飞升 高清复刻版 -'1581200': +"1581200": installDir: Enemy Engaged 2 Desert Operations launch: - config: oslist: windows - executable: cohokum\\ee2Deopt.exe + executable: "cohokum\\\\ee2Deopt.exe" type: default workingdir: cohokum -'1581480': +"1581480": installDir: Humanity launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: HUMANITY.exe type: default - - arguments: '-vr hmd=SteamVR' + - arguments: "-vr hmd=SteamVR" config: - osarch: '64' + osarch: "64" oslist: windows executable: HUMANITY.exe type: vr - - arguments: '-vr hmd=OculusHMD' + - arguments: "-vr hmd=OculusHMD" config: - osarch: '64' + osarch: "64" oslist: windows executable: HUMANITY.exe type: othervr -'1581700': +"1581700": installDir: Wild Wet West launch: - config: oslist: windows executable: Wild Wet West.exe -'1581770': +"1581770": installDir: SpellForce Conquest of Eo launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SFCoE.exe type: default -'1581880': +"1581880": installDir: Super Mega Zero launch: - executable: supermegazero.exe @@ -93466,70 +91709,68 @@ oslist: macos executable: supermegazero.app type: default -'1582290': +"1582290": installDir: LumbearJack launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: LumbearJack.exe type: none - config: betakey: demo - osarch: '64' + osarch: "64" oslist: windows description: Demo - description_loc: - english: Demo executable: LumbearJack Demo.exe -'1582500': +"1582500": installDir: Purple War launch: - executable: PurpleWar.exe -'1582620': +"1582620": installDir: ROCKMAN X DiVE launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Game.exe type: default nameLocalized: schinese: ROCKMAN X DiVE tchinese: ROCKMAN X DiVE -'1582680': - installDir: 'Trolley Problem, Inc' +"1582680": + installDir: "Trolley Problem, Inc" launch: - - arguments: '-nohmd' + - arguments: "-nohmd" executable: WindowsNoEditor/TheTrolleyProblem.exe nameLocalized: schinese: 《电车难题公司》 -'1582890': +"1582890": installDir: My Catgirl Maid Thinks She Runs the Place launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: MyCatgirlMaidComplete-1.0-pc/MyCatgirlMaidComplete.exe type: default -'1583230': +"1583230": installDir: HighOnLife launch: - executable: Oregon.exe -'1583280': +"1583280": installDir: Hog Hunter 2021 launch: - config: oslist: windows - executable: BuildStuff\\HogHunter2021.exe + executable: "BuildStuff\\\\HogHunter2021.exe" type: default -'1583720': +"1583720": installDir: EntropyZero2 launch: - - arguments: '-game EntropyZero2' + - arguments: "-game EntropyZero2" executable: hl2.exe type: none -'1585220': +"1585220": installDir: Melatonin launch: - config: @@ -93540,7 +91781,7 @@ oslist: macos executable: Melatonin.app type: default -'1585330': +"1585330": installDir: Survival Z launch: - config: @@ -93551,15 +91792,15 @@ oslist: macos executable: Survival Z.app type: none -'1585440': +"1585440": installDir: They Always Run launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: They Always Run.exe type: default -'1585700': +"1585700": installDir: Trap Genesis launch: - executable: Jyosou_Souseiki.exe @@ -93568,25 +91809,23 @@ japanese: 女装創世記 schinese: 女装创世记 tchinese: 女裝創世記 -'1586290': +"1586290": installDir: CARNAL launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: CARNAL.exe type: default -'1586350': +"1586350": installDir: NEOGEO POCKET COLOR SELECTION Vol.1 launch: - config: oslist: windows description: Launch - description_loc: - english: Launch executable: NGPCS.exe type: default -'1586700': +"1586700": installDir: Marsupilami Hoobadventure launch: - config: @@ -93598,42 +91837,42 @@ executable: 202111081_MARSU_MAC_STEAM.app nameLocalized: french: MARSUPILAMI - LE SECRET DU SARCOPHAGE -'1586800': +"1586800": installDir: Lil Gator Game launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Lil Gator Game.exe type: default -'1586880': +"1586880": installDir: Essays on Empathy launch: - executable: Essays-on-Empathy.exe type: none -'1587130': +"1587130": installDir: Blood West launch: - config: oslist: windows executable: Blood West.exe type: default -'1587540': +"1587540": installDir: Anvil Saga launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Anvil Saga.exe type: default -'1587860': - installDir: Let's Ride! Silver Buckle Stables +"1587860": + installDir: "Let's Ride! Silver Buckle Stables" launch: - config: oslist: windows executable: LetsRide.exe type: default -'1588010': +"1588010": installDir: PGA TOUR 2K23 launch: - config: @@ -93645,14 +91884,14 @@ schinese: 《PGA TOUR 2K23》 swedish: PGA-TOUREN 2K23 tchinese: 《PGA TOUR 2K23》 -'1588380': +"1588380": installDir: Blaster Master Zero 3 launch: - config: oslist: windows executable: game.exe type: default -'1588940': +"1588940": installDir: Storm Tale 2 launch: - config: @@ -93667,18 +91906,18 @@ oslist: linux executable: Storm Tale 2.x86_64 type: default -'15900': +"15900": installDir: 7 Wonders 2 launch: - executable: WondersII_1_13.exe -'1590160': +"1590160": installDir: Liberte launch: - config: oslist: windows executable: Liberte.exe type: default -'1590750': +"1590750": installDir: JARS launch: - config: @@ -93687,7 +91926,7 @@ type: default - config: oslist: macos - executable: Jars.app\\Contents\\MacOS\\Jars + executable: "Jars.app\\\\Contents\\\\MacOS\\\\Jars" type: default - config: oslist: linux @@ -93695,56 +91934,50 @@ type: default - config: oslist: windows - ownsdlc: '1634000' + ownsdlc: "1634000" description: Bonus Content - description_loc: - english: Bonus Content executable: open_bonus_win.bat - config: oslist: macos - ownsdlc: '163400' + ownsdlc: "163400" description: Bonus Content - description_loc: - english: Bonus Content executable: open_bonus_osx.sh - config: oslist: linux - ownsdlc: '1634000' + ownsdlc: "1634000" description: Bonus Content - description_loc: - english: Bonus Content executable: open_bonus_lin.sh nameLocalized: russian: СКЛЯНКИ - JARS schinese: 瓶瓶罐罐 - JARS tchinese: 碎碎瓶安 - JARS -'1590760': {} -'1590910': +"1590760": {} +"1590910": installDir: Forgive me Father launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: FMF.exe type: default -'15910': +"15910": installDir: LuxorAR launch: - config: oslist: windows executable: Luxor AR.exe -'1591450': +"1591450": installDir: Aka launch: - config: oslist: windows - executable: Aka\\Aka.exe + executable: "Aka\\\\Aka.exe" type: default -'1591530': +"1591530": installDir: SAMURAI WARRIORS 5 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SW5.exe type: none @@ -93752,28 +91985,28 @@ japanese: 戦国無双5 schinese: 战国无双5 tchinese: 戰國無雙5 -'1591540': +"1591540": installDir: HardMinus2k launch: - config: oslist: windows executable: hm2k1_32x.exe type: default -'1591690': +"1591690": installDir: DEATHRUN TV launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: DeathRun_1.2.1_Win\\DeathRun TV.exe + executable: "DeathRun_1.2.1_Win\\\\DeathRun TV.exe" type: default - config: oslist: macos - executable: DeathRun_1.2.1_Mac.app\\Contents\\MacOS\\DeathRun TV + executable: "DeathRun_1.2.1_Mac.app\\\\Contents\\\\MacOS\\\\DeathRun TV" type: option1 - workingdir: DeathRun_1.2.1_Mac.app\\Contents\\MacOS -'1591760': {} -'1591900': + workingdir: "DeathRun_1.2.1_Mac.app\\\\Contents\\\\MacOS" +"1591760": {} +"1591900": installDir: My Universe - My Interior Design launch: - config: @@ -93782,16 +92015,16 @@ type: none - config: oslist: macos - executable: InteriorDesigner.app\\Contents\\MacOS\\My Universe Interior Designer + executable: "InteriorDesigner.app\\\\Contents\\\\MacOS\\\\My Universe Interior Designer" type: default nameLocalized: german: My Universe - Gestalte dein Zuhause -'15920': +"15920": installDir: Luxor 2 launch: - executable: Luxor2.exe type: none -'1592100': +"1592100": installDir: Evil Wizard launch: - config: @@ -93800,7 +92033,7 @@ type: default nameLocalized: schinese: 祖上阔过的二代坏蛋巫师反击伪善英雄夺回祖传城堡的神奇大冒险 -'1592110': +"1592110": installDir: Spirit Of The Island launch: - config: @@ -93809,19 +92042,19 @@ type: default nameLocalized: schinese: 海岛之魂 -'1592120': +"1592120": installDir: Paladin Dream launch: - executable: Game.exe type: none -'1592280': {} -'1592320': +"1592280": {} +"1592320": installDir: Aztech Forgotten Gods launch: - executable: Aztech Forgotten Gods.exe type: default -'1592490': {} -'1592740': +"1592490": {} +"1592740": installDir: Railroad Ink Challenge launch: - config: @@ -93832,7 +92065,7 @@ oslist: macos executable: RailroadInk.app type: none -'15930': +"15930": installDir: Luxor 3 launch: - config: @@ -93841,14 +92074,14 @@ - config: oslist: macos executable: Luxor 3.app -'1593030': +"1593030": installDir: Terra Nil launch: - config: oslist: windows executable: Terra Nil.exe - config: - osarch: '64' + osarch: "64" oslist: linux executable: Terra Nil.x86_64 - config: @@ -93856,31 +92089,31 @@ executable: Terra Nil.app nameLocalized: schinese: 伊始之地 -'1593500': +"1593500": installDir: GodOfWar launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: GoW.exe type: default -'15940': +"15940": installDir: The Office launch: - executable: TheOffice.exe -'1594040': {} -'1594320': +"1594040": {} +"1594320": installDir: Captain of Industry launch: - config: oslist: windows executable: Captain of Industry.exe type: default -'1594940': +"1594940": installDir: Little Witch in the Woods launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: LWIW.exe type: none @@ -93891,15 +92124,15 @@ nameLocalized: koreana: 숲속의 작은 마녀 schinese: 林中小女巫 -'15950': +"15950": installDir: Reaxxion launch: - executable: Reaxxion.exe -'15960': +"15960": installDir: Little Farm launch: - executable: LittleFarm.exe -'1596730': +"1596730": installDir: Dynopunk launch: - config: @@ -93908,19 +92141,19 @@ type: default nameLocalized: schinese: 恐龙朋克 / Dynopunk -'1596750': +"1596750": installDir: Buddy and Lucky Solitaire launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Buddy and Lucky Solitaire.exe type: none - config: oslist: macos - executable: Buddy and Lucky Solitaire.app\\Contents\\MacOS\\Buddy and Lucky Solitaire + executable: "Buddy and Lucky Solitaire.app\\\\Contents\\\\MacOS\\\\Buddy and Lucky Solitaire" type: none -'15970': +"15970": installDir: Luxor launch: - config: @@ -93929,87 +92162,85 @@ - config: oslist: macos executable: Luxor.app -'1597080': {} -'1597580': +"1597080": {} +"1597580": installDir: Clid the Snail launch: - config: oslist: windows executable: Clid The Snail.exe type: none -'1598130': +"1598130": installDir: Movie Actor Trivia launch: - config: oslist: windows executable: game.exe type: default -'1598300': +"1598300": installDir: Dungeon Coup launch: - config: oslist: windows executable: Dungeon Coup.exe type: default -'15990': +"15990": installDir: Elf Bowling Hawaiian Vacation launch: - executable: elfbowling.exe -'1599020': +"1599020": installDir: Tinykin launch: - executable: Tinykin.exe -'1599340': +"1599340": installDir: Lost Ark launch: - - arguments: '-steam_login_pub' + - arguments: "-steam_login_pub" config: - osarch: '64' + osarch: "64" oslist: windows - executable: Binaries\\Win64\\Launch_Game.exe + executable: "Binaries\\\\Win64\\\\Launch_Game.exe" type: none -'1599600': +"1599600": installDir: PlateUp launch: - - arguments: '-appid 1599600' + - arguments: "-appid 1599600" description: Launch - description_loc: - english: Launch executable: PlateUp/PlateUp.exe nameLocalized: schinese: 速速上菜! tchinese: 速速上菜! -'1599660': +"1599660": installDir: Sackboy launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: GingerBread\\Binaries\\Win64\\Launcher.exe + executable: "GingerBread\\\\Binaries\\\\Win64\\\\Launcher.exe" type: default nameLocalized: - brazilian: 'Sackboy™: Uma Grande Aventura' + brazilian: "Sackboy™: Uma Grande Aventura" finnish: Sackboy™ Suuri seikkailu - greek: 'Sackboy™: Η Μεγάλη Περιπέτεια' + greek: "Sackboy™: Η Μεγάλη Περιπέτεια" italian: Sackboy™ una grande avventura japanese: リビッツ! ビッグ・アドベンチャー - latam: 'Sackboy™: Una gran aventura' - norwegian: 'Sackboy™: Et Stort Eventyr' - polish: 'Sackboy™: Wielka Przygoda' - portuguese: 'Sackboy™: Uma Grande Aventura' - russian: 'Сэкбой™: Большое приключение' + latam: "Sackboy™: Una gran aventura" + norwegian: "Sackboy™: Et Stort Eventyr" + polish: "Sackboy™: Wielka Przygoda" + portuguese: "Sackboy™: Uma Grande Aventura" + russian: "Сэкбой™: Большое приключение" schinese: 麻布仔大冒险 spanish: Sackboy™ Una aventura a lo grande swedish: Sackboy™ Ett Stort Äventyr - turkish: 'Sackboy™: Büyük Macera' -'1599860': + turkish: "Sackboy™: Büyük Macera" +"1599860": installDir: Vanaris launch: - config: oslist: windows executable: Vanaris.exe type: none -'1599880': +"1599880": installDir: Cats in Time launch: - config: @@ -94022,204 +92253,174 @@ portuguese: Gatos no Tempo (Cats in Time) schinese: 时间猫 (Cats in Time) tchinese: 時間貓 (Cats in Time) -'1600': +"1600": installDir: Dangerous Waters launch: - executable: Steamrun.exe -'16000': +"16000": installDir: Discovery! A Seek and Find Adventure launch: - executable: Discovery.exe -'1600370': +"1600370": installDir: Not Tonight 2 launch: - config: oslist: windows executable: NotTonight2.exe type: none -'1600780': +"1600780": installDir: My Little Pony launch: - config: oslist: windows executable: MLP.exe nameLocalized: - arabic: 'MY LITTLE PONY: مغامرة في خليج مارتايم' - brazilian: 'MY LITTLE PONY: Uma aventura em Maretime Bay' - danish: 'MY LITTLE PONY: Et Maretime Bay-eventyr' - dutch: 'MY LITTLE PONY: Op avontuur in Hoefdorp aan Zee' - french: 'MY LITTLE PONY: Aventure à la Baie de Port-poney' - german: 'MY LITTLE PONY: Ein Maretime Bucht-Abenteuer' - italian: 'MY LITTLE PONY: Avventura a Maretime Bay' + arabic: "MY LITTLE PONY: مغامرة في خليج مارتايم" + brazilian: "MY LITTLE PONY: Uma aventura em Maretime Bay" + danish: "MY LITTLE PONY: Et Maretime Bay-eventyr" + dutch: "MY LITTLE PONY: Op avontuur in Hoefdorp aan Zee" + french: "MY LITTLE PONY: Aventure à la Baie de Port-poney" + german: "MY LITTLE PONY: Ein Maretime Bucht-Abenteuer" + italian: "MY LITTLE PONY: Avventura a Maretime Bay" japanese: マイリトルポニー:メアタイムベイの冒険 - koreana: '마이 리틀 포니: 메어타임 베이 어드벤처' - latam: 'MY LITTLE PONY: Aventura en Bahía Yeguamar' - polish: 'MY LITTLE PONY: Przygoda w Zatoce Grzyw' - portuguese: 'MY LITTLE PONY: Uma aventura em Maretime Bay' - russian: 'MY LITTLE PONY: Приключение в бухте Мэритайм ' + koreana: "마이 리틀 포니: 메어타임 베이 어드벤처" + latam: "MY LITTLE PONY: Aventura en Bahía Yeguamar" + polish: "MY LITTLE PONY: Przygoda w Zatoce Grzyw" + portuguese: "MY LITTLE PONY: Uma aventura em Maretime Bay" + russian: "MY LITTLE PONY: Приключение в бухте Мэритайм " schinese: 《小马宝莉:玛泰湾冒险》 - spanish: 'MY LITTLE PONY: Aventura en Bahía Yeguamar' + spanish: "MY LITTLE PONY: Aventura en Bahía Yeguamar" tchinese: 彩虹小馬:馬兒灣大冒險 - turkish: 'MY LITTLE PONY: Kısrak Koyu Macerası' - ukrainian: 'MY LITTLE PONY: пригода в Мейртайм-Бей' -'1600970': + turkish: "MY LITTLE PONY: Kısrak Koyu Macerası" + ukrainian: "MY LITTLE PONY: пригода в Мейртайм-Бей" +"1600970": installDir: Green Fairy VR launch: - config: oslist: windows - executable: WindowsNoEditor\\OptimizedGF.exe + executable: "WindowsNoEditor\\\\OptimizedGF.exe" type: vr -'1601580': +"1601580": nameLocalized: japanese: フロストパンク2 koreana: 프로스트펑크2 schinese: 冰汽时代2 tchinese: 冰汽時代2 -'1601890': +"1601890": installDir: Rescue Rover Collection launch: - - arguments: '-noconsole -conf fullscreen.conf -conf dosbox.conf -conf launch.conf -exit' + - arguments: "-noconsole -conf fullscreen.conf -conf dosbox.conf -conf launch.conf -exit" config: oslist: windows description: full screen - description_loc: - english: full screen - executable: DOSBox\\dosbox.exe + executable: "DOSBox\\\\dosbox.exe" type: option1 - workingdir: DOSBox\\Configuration - - arguments: '-noconsole -conf 320x200.conf -conf dosbox.conf -conf launch.conf -exit' + workingdir: "DOSBox\\\\Configuration" + - arguments: "-noconsole -conf 320x200.conf -conf dosbox.conf -conf launch.conf -exit" config: oslist: windows description: windowed 320x200 - description_loc: - english: windowed 320x200 - executable: DOSBox\\dosbox.exe + executable: "DOSBox\\\\dosbox.exe" type: option1 - workingdir: DOSBox\\Configuration - - arguments: '-noconsole -conf 640x400.conf -conf dosbox.conf -conf launch.conf -exit' + workingdir: "DOSBox\\\\Configuration" + - arguments: "-noconsole -conf 640x400.conf -conf dosbox.conf -conf launch.conf -exit" config: oslist: windows description: windowed 640x400 - description_loc: - english: windowed 640x400 - executable: DOSBox\\dosbox.exe + executable: "DOSBox\\\\dosbox.exe" type: option1 - workingdir: DOSBox\\Configuration - - arguments: '-noconsole -conf 1280x800.conf -conf dosbox.conf -conf launch.conf -exit' + workingdir: "DOSBox\\\\Configuration" + - arguments: "-noconsole -conf 1280x800.conf -conf dosbox.conf -conf launch.conf -exit" config: oslist: windows description: windowed 1280x800 - description_loc: - english: windowed 1280x800 - executable: DOSBox\\dosbox.exe + executable: "DOSBox\\\\dosbox.exe" type: option1 - workingdir: DOSBox\\Configuration - - arguments: '-noconsole -conf 2560x1600.conf -conf dosbox.conf -conf launch.conf -exit' + workingdir: "DOSBox\\\\Configuration" + - arguments: "-noconsole -conf 2560x1600.conf -conf dosbox.conf -conf launch.conf -exit" config: oslist: windows description: windowed 2560x1600 - description_loc: - english: windowed 2560x1600 - executable: DOSBox\\dosbox.exe + executable: "DOSBox\\\\dosbox.exe" type: option1 - workingdir: DOSBox\\Configuration -'1601900': + workingdir: "DOSBox\\\\Configuration" +"1601900": installDir: Slordax The Unknown Enemy launch: - - arguments: '-noconsole -conf fullscreen.conf -conf dosbox.conf -conf launch.conf -exit' + - arguments: "-noconsole -conf fullscreen.conf -conf dosbox.conf -conf launch.conf -exit" config: oslist: windows description: full screen - description_loc: - english: full screen - executable: DOSBox\\dosbox.exe + executable: "DOSBox\\\\dosbox.exe" type: option1 - workingdir: DOSBox\\Configuration - - arguments: '-noconsole -conf 320x200.conf -conf dosbox.conf -conf launch.conf -exit' + workingdir: "DOSBox\\\\Configuration" + - arguments: "-noconsole -conf 320x200.conf -conf dosbox.conf -conf launch.conf -exit" config: oslist: windows description: windowed 320x200 - description_loc: - english: windowed 320x200 - executable: DOSBox\\dosbox.exe + executable: "DOSBox\\\\dosbox.exe" type: option1 - workingdir: DOSBox\\Configuration - - arguments: '-noconsole -conf 640x400.conf -conf dosbox.conf -conf launch.conf -exit' + workingdir: "DOSBox\\\\Configuration" + - arguments: "-noconsole -conf 640x400.conf -conf dosbox.conf -conf launch.conf -exit" config: oslist: windows description: windowed 640x400 - description_loc: - english: windowed 640x400 - executable: DOSBox\\dosbox.exe + executable: "DOSBox\\\\dosbox.exe" type: option1 - workingdir: DOSBox\\Configuration - - arguments: '-noconsole -conf 1280x800.conf -conf dosbox.conf -conf launch.conf -exit' + workingdir: "DOSBox\\\\Configuration" + - arguments: "-noconsole -conf 1280x800.conf -conf dosbox.conf -conf launch.conf -exit" config: oslist: windows description: windowed 1280x800 - description_loc: - english: windowed 1280x800 - executable: DOSBox\\dosbox.exe + executable: "DOSBox\\\\dosbox.exe" type: option1 - workingdir: DOSBox\\Configuration - - arguments: '-noconsole -conf 2560x1600.conf -conf dosbox.conf -conf launch.conf -exit' + workingdir: "DOSBox\\\\Configuration" + - arguments: "-noconsole -conf 2560x1600.conf -conf dosbox.conf -conf launch.conf -exit" config: oslist: windows description: windowed 2560x1600 - description_loc: - english: windowed 2560x1600 - executable: DOSBox\\dosbox.exe + executable: "DOSBox\\\\dosbox.exe" type: option1 - workingdir: DOSBox\\Configuration -'1601930': - installDir: ScubaVenture The Search for Pirate's Treasure + workingdir: "DOSBox\\\\Configuration" +"1601930": + installDir: "ScubaVenture The Search for Pirate's Treasure" launch: - - arguments: '-noconsole -conf fullscreen.conf -conf dosbox.conf -conf launch.conf -exit' + - arguments: "-noconsole -conf fullscreen.conf -conf dosbox.conf -conf launch.conf -exit" config: oslist: windows description: full screen - description_loc: - english: full screen - executable: DOSBox\\dosbox.exe + executable: "DOSBox\\\\dosbox.exe" type: option1 - workingdir: DOSBox\\Configuration - - arguments: '-noconsole -conf 320x200.conf -conf dosbox.conf -conf launch.conf -exit' + workingdir: "DOSBox\\\\Configuration" + - arguments: "-noconsole -conf 320x200.conf -conf dosbox.conf -conf launch.conf -exit" config: oslist: windows description: windowed 320x200 - description_loc: - english: windowed 320x200 - executable: DOSBox\\dosbox.exe + executable: "DOSBox\\\\dosbox.exe" type: option1 - workingdir: DOSBox\\Configuration - - arguments: '-noconsole -conf 640x400.conf -conf dosbox.conf -conf launch.conf -exit' + workingdir: "DOSBox\\\\Configuration" + - arguments: "-noconsole -conf 640x400.conf -conf dosbox.conf -conf launch.conf -exit" config: oslist: windows description: windowed 640x400 - description_loc: - english: windowed 640x400 - executable: DOSBox\\dosbox.exe + executable: "DOSBox\\\\dosbox.exe" type: option1 - workingdir: DOSBox\\Configuration - - arguments: '-noconsole -conf 1280x800.conf -conf dosbox.conf -conf launch.conf -exit' + workingdir: "DOSBox\\\\Configuration" + - arguments: "-noconsole -conf 1280x800.conf -conf dosbox.conf -conf launch.conf -exit" config: oslist: windows description: windowed 1280x800 - description_loc: - english: windowed 1280x800 - executable: DOSBox\\dosbox.exe + executable: "DOSBox\\\\dosbox.exe" type: option1 - workingdir: DOSBox\\Configuration - - arguments: '-noconsole -conf 2560x1600.conf -conf dosbox.conf -conf launch.conf -exit' + workingdir: "DOSBox\\\\Configuration" + - arguments: "-noconsole -conf 2560x1600.conf -conf dosbox.conf -conf launch.conf -exit" config: oslist: windows description: windowed 2560x1600 - description_loc: - english: windowed 2560x1600 - executable: DOSBox\\dosbox.exe + executable: "DOSBox\\\\dosbox.exe" type: option1 - workingdir: DOSBox\\Configuration -'1601970': + workingdir: "DOSBox\\\\Configuration" +"1601970": installDir: Tunguska The Visitation launch: - config: @@ -94227,17 +92428,17 @@ executable: Tunguska.exe type: default nameLocalized: - russian: 'Тунгуска: Посещение' + russian: "Тунгуска: Посещение" schinese: 战栗通古斯 -'16020': +"16020": installDir: Samantha Swift and the Hidden Roses of Athena launch: - executable: SamanthaSwiftAndTheHiddenRosesOfAthena.exe -'1602010': +"1602010": installDir: P4U2 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: P4U2.exe type: default @@ -94246,28 +92447,28 @@ koreana: 페르소나4 디 얼티맥스 울트라 수플렉스 홀드 schinese: 女神异闻录4 无敌究极后桥背摔 tchinese: 女神異聞錄4 無敵究極背橋摔 -'1602080': +"1602080": installDir: Soulstice launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: Soulstice\\Binaries\\Win64\\Soulstice.exe + executable: "Soulstice\\\\Binaries\\\\Win64\\\\Soulstice.exe" type: default -'16030': +"16030": installDir: 7 Wonders - The Treasures of Seven launch: - executable: 7 Wonders - Treasures of Seven.exe -'1603300': +"1603300": installDir: Timothy Learys Mind MIrror launch: - executable: mm.bat type: default -'1603640': +"1603640": installDir: The House of Da Vinci 3 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: The House of da Vinci 3.exe type: default @@ -94275,62 +92476,50 @@ oslist: macos executable: The House of da Vinci 3.app/Contents/MacOS/The House of da Vinci 3 type: default -'1603900': +"1603900": installDir: Love & Enchants launch: - executable: LoveAndEnchants.exe -'1603920': +"1603920": installDir: 天狗 launch: - config: oslist: windows description: 暴 あば れん 坊天狗 ぼうてんぐ - Zombie Nation - description_loc: - english: 暴 あば れん 坊天狗 ぼうてんぐ - Zombie Nation executable: ZN/ZN.EXE type: option1 workingdir: ZN nameLocalized: japanese: 暴れん坊天狗 & ZOMBIE NATION -'1603980': - installDir: If On A Winter's Night Four Travelers +"1603980": + installDir: "If On A Winter's Night Four Travelers" launch: - config: oslist: windows description: Launch game - description_loc: - english: Launch game executable: ioawn4t.exe type: default - config: oslist: windows description: Configuration Tool - description_loc: - english: Configuration Tool executable: winsetup.exe type: config - config: oslist: linux description: Launch game - description_loc: - english: Launch game executable: ioawn4t type: default - description: Readme - description_loc: - english: Readme executable: readme.pdf type: manual - description: Troubleshooting Guide - description_loc: - english: Troubleshooting Guide executable: troubleshooting.pdf type: none -'16040': +"16040": installDir: Luxor Quest for the Afterlife launch: - executable: Luxor4.exe -'1604000': +"1604000": installDir: Milk outside a bag of milk outside a bag of milk launch: - config: @@ -94345,13 +92534,13 @@ oslist: macos executable: PMKM2.app type: default -'1604030': +"1604030": installDir: VRising launch: - executable: VRising.exe type: default -'1604270': {} -'1604300': +"1604270": {} +"1604300": installDir: LOVE 3 launch: - config: @@ -94361,7 +92550,7 @@ - config: oslist: linux executable: LOVE3 -'1604780': +"1604780": installDir: Lovely Planet Remix launch: - config: @@ -94372,38 +92561,32 @@ oslist: macos executable: LovelyPlanetRemix.app type: default -'1605190': +"1605190": installDir: Connect The Dots launch: - config: oslist: windows executable: ConnectTheDots.exe type: default -'1605220': +"1605220": installDir: D4X launch: - arguments: hlbootdx.dat config: oslist: windows - description: 'Dune: Spice Wars (DirectX)' - description_loc: - english: 'Dune: Spice Wars (DirectX)' + description: "Dune: Spice Wars (DirectX)" executable: D4X.exe type: option1 - config: oslist: windows - description: 'Dune: Spice Wars (OpenGL)' - description_loc: - english: 'Dune: Spice Wars (OpenGL)' + description: "Dune: Spice Wars (OpenGL)" executable: D4X.exe type: option1 - config: betakey: shiro description: Test - description_loc: - english: Test executable: launch.bat -'1605320': +"1605320": installDir: Unusual Findings launch: - config: @@ -94416,18 +92599,18 @@ - config: oslist: macos executable: UnusualFindings.app -'16060': +"16060": installDir: Samantha Swift and the Golden Touch launch: - executable: Samantha Swift and the Golden Touch.exe -'1606280': +"1606280": installDir: Hentai Aim Trainer launch: - config: oslist: windows executable: Hentai Aim Trainer.exe type: default -'1607040': +"1607040": installDir: Evertried launch: - config: @@ -94442,7 +92625,7 @@ oslist: linux executable: Evertried_Release.x86_64 type: default -'1607130': +"1607130": installDir: Lust Theory launch: - config: @@ -94453,21 +92636,21 @@ oslist: macos executable: LustTheoryS1.app type: default -'1607240': +"1607240": installDir: Mail Time launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: MailTime.exe type: default - config: oslist: macos executable: MailTime.app -'1607250': +"1607250": nameLocalized: japanese: 僕のヒーローアカデミア ULTRA RUMBLE -'1607670': +"1607670": installDir: Secret Agent HD launch: - config: @@ -94478,7 +92661,7 @@ oslist: linux executable: SecretAgentHD.x86_64 type: default -'1607680': +"1607680": installDir: Bread & Fred launch: - config: @@ -94491,7 +92674,7 @@ workingdir: BreadAndFred.app/Contents/MacOS nameLocalized: schinese: 面包和年糕 (Bread & Fred) -'1608070': +"1608070": installDir: CCFF7R launch: - config: @@ -94500,21 +92683,19 @@ type: default - config: oslist: windows - ownsdlc: '2131710' + ownsdlc: "2131710" description: CCFF7 Digital Contents - description_loc: - english: CCFF7 Digital Contents - executable: DigitalContents\\CCFF7R_DigiCont.exe -'1608230': + executable: "DigitalContents\\\\CCFF7R_DigiCont.exe" +"1608230": installDir: Planet of Lana launch: - executable: Planet of Lana.exe -'1608290': +"1608290": installDir: GNOSIA launch: - executable: Gnosia.exe type: none -'1608450': +"1608450": installDir: Hellslave launch: - config: @@ -94523,36 +92704,36 @@ type: default nameLocalized: schinese: 地狱仆从 -'1608550': +"1608550": installDir: Firegirl launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: FireG.exe type: none -'1608700': +"1608700": installDir: SoundfallGame launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: BeatShooter.exe type: default -'1608730': +"1608730": installDir: Dawn of Corruption launch: - executable: Dawn of Corruption.exe type: default -'1609080': - installDir: Summer of '58 +"1609080": + installDir: "Summer of '58" launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Summer_of_58.exe type: default -'1609230': +"1609230": installDir: ScarletHollow launch: - config: @@ -94569,34 +92750,28 @@ type: default - config: oslist: windows - description: Windows Alternative Launch (Only use if above launcher doesn't work) - description_loc: - english: Windows Alternative Launch (Only use if above launcher doesn't work) + description: "Windows Alternative Launch (Only use if above launcher doesn't work)" executable: ScarletHollow-market.zip/ScarletHollow.exe type: option2 - config: oslist: macos - description: Mac Alternative Launch (Only use if above launcher doesn't work) - description_loc: - english: Mac Alternative Launch (Only use if above launcher doesn't work) + description: "Mac Alternative Launch (Only use if above launcher doesn't work)" executable: ScarletHollow-market/ScarletHollow.app type: option2 - config: oslist: linux - description: Linux Alternative Launch (Only use if above launcher doesn't work) - description_loc: - english: Linux Alternative Launch (Only use if above launcher doesn't work) + description: "Linux Alternative Launch (Only use if above launcher doesn't work)" executable: ScarletHollow-market/ScarletHollow.sh type: option2 -'1610': +"1610": installDir: Space Empires IV Deluxe launch: - - executable: se4\\se4.exe -'16100': + - executable: "se4\\\\se4.exe" +"16100": installDir: Virtual Villagers launch: - executable: VirtualVillagers.exe -'1610500': +"1610500": installDir: Bibots launch: - config: @@ -94605,70 +92780,58 @@ type: default nameLocalized: schinese: 超能机器人 -'1610900': +"1610900": installDir: The Genesis Project launch: - config: oslist: windows description: Start normally - description_loc: - english: Start normally executable: The Genesis Project.exe type: default - config: oslist: linux description: Start normally - description_loc: - english: Start normally executable: The Genesis Project type: default - arguments: The Genesis Project.app/Contents/MacOS config: oslist: macos description: Start normally - description_loc: - english: Start normally executable: The Genesis Project.app/Contents/MacOS/The Genesis Project type: default -'16110': +"16110": installDir: Virtual Villagers The Lost Children launch: - executable: Virtual Villagers - The Lost Children.exe -'1611430': +"1611430": installDir: TheBridgeCurse launch: - - arguments: '-dx11' + - arguments: "-dx11" config: - osarch: '64' + osarch: "64" oslist: windows description: with DirectX 11 - description_loc: - english: with DirectX 11 - tchinese: 使用DirectX 11 - executable: TBC\\Binaries\\Win64\\TBC-Win64-Shipping.exe + executable: "TBC\\\\Binaries\\\\Win64\\\\TBC-Win64-Shipping.exe" type: option1 - - arguments: '-dx12' + - arguments: "-dx12" config: - osarch: '64' + osarch: "64" oslist: windows description: with DirectX 12 - description_loc: - english: with DirectX 12 - tchinese: 使用DirectX 12 - executable: TBC\\Binaries\\Win64\\TBC-Win64-Shipping.exe + executable: "TBC\\\\Binaries\\\\Win64\\\\TBC-Win64-Shipping.exe" type: option2 nameLocalized: schinese: 女鬼桥 开魂路 tchinese: 女鬼橋 開魂路 thai: คำสาปสะพานเฮี้ยนถนนสู่ความรอด -'1611600': +"1611600": installDir: WARNO launch: - config: oslist: windows executable: WARNO.exe type: default -'1611910': +"1611910": installDir: ChaosGate launch: - config: @@ -94676,55 +92839,51 @@ executable: ChaosGate.exe type: none nameLocalized: - japanese: 'Warhammer 40,000: ケイオス・ゲート - ディーモンハンターズ' - schinese: '《Warhammer 40,000:混沌之门 - 恶魔猎人》' - tchinese: '《Warhammer 40,000:混沌之門 - 惡魔獵人》' -'16120': + japanese: "Warhammer 40,000: ケイオス・ゲート - ディーモンハンターズ" + schinese: "《Warhammer 40,000:混沌之门 - 恶魔猎人》" + tchinese: "《Warhammer 40,000:混沌之門 - 惡魔獵人》" +"16120": installDir: Plant Tycoon launch: - executable: plant tycoon.exe -'1612780': +"1612780": installDir: The Centennial Case launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: CCSS.exe type: default nameLocalized: - english: 'The Centennial Case : A Shijima Story' - french: 'The Centennial Case : A Shijima Story' - german: 'The Centennial Case : A Shijima Story' - italian: 'The Centennial Case : A Shijima Story' + english: "The Centennial Case : A Shijima Story" + french: "The Centennial Case : A Shijima Story" + german: "The Centennial Case : A Shijima Story" + italian: "The Centennial Case : A Shijima Story" japanese: 春ゆきてレトロチカ - koreana: '백 년의 봄날은 가고 The Centennial Case: A Shijima Story' - schinese: '春逝百年抄 The Centennial Case: A Shijima Story' - spanish: 'The Centennial Case : A Shijima Story' - tchinese: '春逝百年抄 The Centennial Case: A Shijima Story' -'1612810': + koreana: "백 년의 봄날은 가고 The Centennial Case: A Shijima Story" + schinese: "春逝百年抄 The Centennial Case: A Shijima Story" + spanish: "The Centennial Case : A Shijima Story" + tchinese: "春逝百年抄 The Centennial Case: A Shijima Story" +"1612810": installDir: Star Chef 2 Cooking Game launch: - config: betakey: development oslist: windows description: Development build - description_loc: - english: Development build executable: Star Chef 2.exe type: default - config: betakey: test oslist: windows description: Testing build - description_loc: - english: Testing build executable: Star Chef 2.exe type: default -'16130': +"16130": installDir: Fish Tycoon launch: - executable: fishtycoon.exe -'1613190': +"1613190": installDir: The Sin Collector Repentless launch: - config: @@ -94732,9 +92891,9 @@ executable: Sin Collector - Repentless.exe type: none nameLocalized: - english: 'The Sin Collector: Repentless' - polish: 'Komornik: Nieskruszony' -'1613960': + english: "The Sin Collector: Repentless" + polish: "Komornik: Nieskruszony" +"1613960": installDir: TDIT launch: - config: @@ -94749,7 +92908,7 @@ oslist: linux executable: TheDeathIntoTrouble type: none -'1614040': +"1614040": installDir: How We Got Here launch: - config: @@ -94758,7 +92917,7 @@ type: none - config: oslist: macos - executable: howwegothere.app\\Contents\\MacOS\\nwjs + executable: "howwegothere.app\\\\Contents\\\\MacOS\\\\nwjs" type: none - config: oslist: linux @@ -94778,33 +92937,31 @@ schinese: 我们是如何到达这里的 spanish: Como Llegamos Aqui turkish: Buraya Nasıl Geldik -'1614270': +"1614270": installDir: Submerged Hidden Depths launch: - config: betakey: developer - osarch: '64' + osarch: "64" oslist: windows - description: 'Submerged: HD Launch' - description_loc: - english: 'Submerged: HD Launch' - executable: Submerged\\Binaries\\Win64\\Submerged.exe + description: "Submerged: HD Launch" + executable: "Submerged\\\\Binaries\\\\Win64\\\\Submerged.exe" type: default -'1614550': +"1614550": installDir: Astro Colony launch: - config: oslist: windows executable: AstroColony.exe type: default -'1614890': +"1614890": installDir: Baldo the guardian owls launch: - config: oslist: windows executable: Baldo The guardian owls.exe type: none -'1615100': +"1615100": installDir: The Last Stand Trilogy launch: - config: @@ -94815,35 +92972,33 @@ oslist: macos executable: TheLastStandLegacyCollection.app type: none -'1615290': +"1615290": installDir: Ravenous devils launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Ravenous_Devils.exe type: default -'1616210': +"1616210": installDir: Mystery of Camp Enigma launch: - config: oslist: windows executable: Enigma/Mystery of Camp Enigma.exe type: none -'1617580': +"1617580": installDir: The Scorchfarer launch: - config: oslist: windows description: Launch - description_loc: - english: Launch executable: The Scorchfarer.exe -'16180': +"16180": installDir: Virtual Villagers 3 The Secret City launch: - executable: Virtual Villagers - The Secret City.exe -'1619590': +"1619590": installDir: AFTERLIFE launch: - config: @@ -94854,8 +93009,8 @@ oslist: macos executable: Mac_Content.app type: default -'1619750': - installDir: Karryn's Prison +"1619750": + installDir: "Karryn's Prison" launch: - config: oslist: windows @@ -94863,93 +93018,83 @@ type: default nameLocalized: japanese: カリンズ・プリズン -'1619820': +"1619820": installDir: Operation Pinkeye launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Windows - 64-bit - description_loc: - english: Windows - 64-bit executable: OP64.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows description: Windows - 32-bit - description_loc: - english: Windows - 32-bit executable: OP32.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux description: Linux - 32-bit - description_loc: - english: Linux - 32-bit executable: OP.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: Linux - 64-bit - description_loc: - english: Linux - 64-bit executable: OP.x86_64 type: default - config: oslist: macos description: Macintosh - description_loc: - english: Macintosh executable: Operation- Pinkeye.app nameLocalized: - french: 'Opération: Pinkeye' - italian: 'Operazione: Pinkeye' - russian: 'Операция: Розовый глаз' -'1620': {} -'16200': + french: "Opération: Pinkeye" + italian: "Operazione: Pinkeye" + russian: "Операция: Розовый глаз" +"1620": {} +"16200": installDir: Virtual Families launch: - executable: Virtual Families.exe -'1620030': +"1620030": installDir: Avatar The Last Airbender - Quest for Balance launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: Ala\\Binaries\\Win64\\Ala-Win64-ShippingDRM.exe + executable: "Ala\\\\Binaries\\\\Win64\\\\Ala-Win64-ShippingDRM.exe" type: default -'1620040': +"1620040": installDir: Nickelodeon Kart Racers 3 launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: Nor\\Binaries\\Win64\\NKR3.exe + executable: "Nor\\\\Binaries\\\\Win64\\\\NKR3.exe" type: default -'1620340': +"1620340": installDir: Wrestling Empire launch: - config: oslist: windows executable: Wrestling Empire.exe type: default -'1620520': +"1620520": installDir: Mondealy launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Mondealy.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Mondealy_Full type: default -'1620540': +"1620540": installDir: Pixel Cup Soccer - Ultimate Edition launch: - config: @@ -94961,25 +93106,25 @@ executable: pixelcupsoccer.x86_64 - config: oslist: macos - executable: pixelcupsoccer.app\\\\Contents\\\\MacOS\\\\Pixel Cup Soccer Ultimate Edition + executable: "pixelcupsoccer.app\\\\\\\\Contents\\\\\\\\MacOS\\\\\\\\Pixel Cup Soccer Ultimate Edition" type: default -'1620720': +"1620720": installDir: The Forest Quartet launch: - executable: The Forest Quartet.exe nameLocalized: schinese: 森林四重奏 / The Forest Quartet -'1620920': +"1620920": installDir: Guazu The Rescue launch: - - arguments: '-fullscreen' + - arguments: "-fullscreen" config: oslist: windows executable: Guazu The Rescue.exe type: default nameLocalized: - portuguese: 'Guazu: O Resgate' -'1621310': + portuguese: "Guazu: O Resgate" +"1621310": installDir: Atelier Sophie 2 launch: - executable: Atelier_Sophie_2.exe @@ -94989,7 +93134,7 @@ koreana: 소피의 아틀리에2 ~신비한 꿈의 연금술사~ schinese: 苏菲的炼金工房2 ~不可思议梦的炼金术士~ tchinese: 蘇菲的鍊金工房2 ~不可思議夢的鍊金術士~ -'1621690': +"1621690": installDir: Core Keeper launch: - config: @@ -95002,176 +93147,153 @@ type: default nameLocalized: schinese: Core Keeper 地心护核者 -'1621760': +"1621760": installDir: Decision Red Daze launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: DecisionRedDaze.exe type: default nameLocalized: schinese: 生死抉择:血霾 -'1621990': +"1621990": installDir: Stray Blade launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Stray Blade.exe type: default nameLocalized: - koreana: 'Stray Blade - 스트레이 블레이드 ' + koreana: "Stray Blade - 스트레이 블레이드 " schinese: Stray Blade - 迷失之刃 tchinese: 《迷失之刃》Stray Blade -'1622040': - installDir: Lila's Tale +"1622040": + installDir: "Lila's Tale" launch: - - executable: Lila's Tale and the Hidden Forest.exe -'1622710': + - executable: "Lila's Tale and the Hidden Forest.exe" +"1622710": installDir: Oceanhorn 2 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: OH2.exe type: default nameLocalized: japanese: オーシャンホーン2:亡国の騎士 - koreana: 'Oceanhorn 2: 잃어버린 왕국의 기사단' - russian: 'Оушенхорн 2: Рыцари затерянного королевства' + koreana: "Oceanhorn 2: 잃어버린 왕국의 기사단" + russian: "Оушенхорн 2: Рыцари затерянного королевства" schinese: Oceanhorn 2:失落王国的骑士 tchinese: 海之號角2:失落王國的騎士 -'1622900': {} -'1623000': +"1622900": {} +"1623000": installDir: Kate launch: - config: oslist: windows executable: Kate.exe type: none -'1623070': +"1623070": installDir: Master-Of-Magic launch: - executable: Launcher.exe type: default -'1623210': +"1623210": installDir: Soulash launch: - config: oslist: windows executable: Soulash.exe type: default -'1623420': +"1623420": installDir: Serious Sam Kamikaze Attack launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Serious Sam Kamikaze Attack!.exe type: default -'1623440': +"1623440": installDir: TimeBreaker launch: - - arguments: '-dx12' + - arguments: "-dx12" config: oslist: windows description: Play in DirectX 12 version - description_loc: - english: Play in DirectX 12 version - french: Jouer en version DirectX 12 executable: TimeBreaker.exe - - arguments: '-dx11' + - arguments: "-dx11" config: oslist: windows description: Play in DirectX 11 version - description_loc: - english: Play in DirectX 11 version - french: Jouer en version DirectX 11 executable: TimeBreaker.exe - - arguments: '-vulkan' + - arguments: "-vulkan" config: oslist: windows description: Play in Vulkan version - description_loc: - english: Play in Vulkan version - french: Jouer en version Vulkan executable: TimeBreaker.exe -'1623660': +"1623660": installDir: MIR4 launch: - - arguments: '-ResX=1280 -ResY=720 -DX11 -steam' + - arguments: "-ResX=1280 -ResY=720 -DX11 -steam" config: - osarch: '64' + osarch: "64" oslist: windows - executable: MirMobile\\Binaries\\Win64\\Mir4S.exe + executable: "MirMobile\\\\Binaries\\\\Win64\\\\Mir4S.exe" type: default - arguments: Mir4S.exe -ResX=1280 -ResY=720 -DX11 -steam config: betakey: beta description: Beta Loader ON - description_loc: - english: Beta Loader ON - executable: MirMobile\\Binaries\\Win64\\ucldr_MirTrilogy4_ST_loader_x64.exe - - arguments: '-ResX=1280 -ResY=720 -DX11 -steam' + executable: "MirMobile\\\\Binaries\\\\Win64\\\\ucldr_MirTrilogy4_ST_loader_x64.exe" + - arguments: "-ResX=1280 -ResY=720 -DX11 -steam" config: betakey: beta description: Beta Loader OFF - description_loc: - english: Beta Loader OFF - executable: MirMobile\\Binaries\\Win64\\Mir4S.exe + executable: "MirMobile\\\\Binaries\\\\Win64\\\\Mir4S.exe" - arguments: Mir4S.exe -ResX=1280 -ResY=720 -DX11 -steam config: betakey: stage description: Stage Loader ON - description_loc: - english: Stage Loader ON - executable: MirMobile\\Binaries\\Win64\\ucldr_MirTrilogy4_ST_loader_x64.exe - - arguments: '-ResX=1280 -ResY=720 -DX11 -steam' + executable: "MirMobile\\\\Binaries\\\\Win64\\\\ucldr_MirTrilogy4_ST_loader_x64.exe" + - arguments: "-ResX=1280 -ResY=720 -DX11 -steam" config: betakey: stage description: Stage Loader OFF - description_loc: - english: Stage Loader OFF - executable: MirMobile\\Binaries\\Win64\\Mir4S.exe + executable: "MirMobile\\\\Binaries\\\\Win64\\\\Mir4S.exe" - arguments: Mir4S.exe -ResX=1280 -ResY=720 -DX11 -steam config: - betakey: 'featured ' + betakey: "featured " description: featured Loader ON - description_loc: - english: featured Loader ON - executable: MirMobile\\Binaries\\Win64\\ucldr_MirTrilogy4_ST_loader_x64.exe - - arguments: '-ResX=1280 -ResY=720 -DX11 -steam' + executable: "MirMobile\\\\Binaries\\\\Win64\\\\ucldr_MirTrilogy4_ST_loader_x64.exe" + - arguments: "-ResX=1280 -ResY=720 -DX11 -steam" config: - betakey: 'featured ' + betakey: "featured " description: featured Loader OFF - description_loc: - english: featured Loader OFF - executable: MirMobile\\Binaries\\Win64\\Mir4S.exe -'1623700': + executable: "MirMobile\\\\Binaries\\\\Win64\\\\Mir4S.exe" +"1623700": installDir: Deiland Pocket Planet Edition launch: - config: oslist: windows executable: Deiland.exe type: default -'1623730': +"1623730": nameLocalized: japanese: Palworld / パルワールド schinese: Palworld / 幻兽帕鲁 tchinese: Palworld / 幻獸帕魯 -'1623940': +"1623940": installDir: Bramble The Mountain King launch: - - executable: IntermediateBuildDRM\\WindowsNoEditor\\Bramble_TMK.exe + - executable: "IntermediateBuildDRM\\\\WindowsNoEditor\\\\Bramble_TMK.exe" - config: betakey: development description: Play development branch - description_loc: - english: Play development branch - executable: IntermediateBuildDRM\\WindowsNoEditor\\Bramble_TMK.exe -'1624060': {} -'1624540': + executable: "IntermediateBuildDRM\\\\WindowsNoEditor\\\\Bramble_TMK.exe" +"1624060": {} +"1624540": installDir: Storyteller launch: - config: @@ -95180,18 +93302,18 @@ type: default - config: oslist: macos - executable: Storyteller.app\\Contents\\MacOS\\Storyteller + executable: "Storyteller.app\\\\Contents\\\\MacOS\\\\Storyteller" type: default -'1625950': {} -'1625960': +"1625950": {} +"1625960": installDir: Loverowind launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Loverowind.exe type: default -'1626610': +"1626610": installDir: Bunny Dance launch: - config: @@ -95202,7 +93324,7 @@ oslist: macos executable: Bunny Dance.app type: default -'1627120': +"1627120": installDir: Operation Body Count launch: - config: @@ -95213,138 +93335,116 @@ oslist: macos executable: BodyCount.command type: default -'1627130': +"1627130": installDir: Shadoworlds launch: - - arguments: '-noconsole -conf fullscreen.conf -conf dosbox.conf -conf launch.conf -exit' + - arguments: "-noconsole -conf fullscreen.conf -conf dosbox.conf -conf launch.conf -exit" config: oslist: windows description: full screen - description_loc: - english: full screen - executable: DOSBox\\dosbox.exe + executable: "DOSBox\\\\dosbox.exe" type: option1 - workingdir: DOSBox\\Configuration - - arguments: '-noconsole -conf 320x200.conf -conf dosbox.conf -conf launch.conf -exit' + workingdir: "DOSBox\\\\Configuration" + - arguments: "-noconsole -conf 320x200.conf -conf dosbox.conf -conf launch.conf -exit" config: oslist: windows description: windowed 320x200 - description_loc: - english: windowed 320x200 - executable: DOSBox\\dosbox.exe + executable: "DOSBox\\\\dosbox.exe" type: option1 - workingdir: DOSBox\\Configuration - - arguments: '-noconsole -conf 640x400.conf -conf dosbox.conf -conf launch.conf -exit' + workingdir: "DOSBox\\\\Configuration" + - arguments: "-noconsole -conf 640x400.conf -conf dosbox.conf -conf launch.conf -exit" config: oslist: windows description: windowed 640x400 - description_loc: - english: windowed 640x400 - executable: DOSBox\\dosbox.exe + executable: "DOSBox\\\\dosbox.exe" type: option1 - workingdir: DOSBox\\Configuration - - arguments: '-noconsole -conf 1280x800.conf -conf dosbox.conf -conf launch.conf -exit' + workingdir: "DOSBox\\\\Configuration" + - arguments: "-noconsole -conf 1280x800.conf -conf dosbox.conf -conf launch.conf -exit" config: oslist: windows description: windowed 1280x800 - description_loc: - english: windowed 1280x800 - executable: DOSBox\\dosbox.exe + executable: "DOSBox\\\\dosbox.exe" type: option1 - workingdir: DOSBox\\Configuration - - arguments: '-noconsole -conf 2560x1600.conf -conf dosbox.conf -conf launch.conf -exit' + workingdir: "DOSBox\\\\Configuration" + - arguments: "-noconsole -conf 2560x1600.conf -conf dosbox.conf -conf launch.conf -exit" config: oslist: windows description: windowed 2560x1600 - description_loc: - english: windowed 2560x1600 - executable: DOSBox\\dosbox.exe + executable: "DOSBox\\\\dosbox.exe" type: option1 - workingdir: DOSBox\\Configuration -'1627140': + workingdir: "DOSBox\\\\Configuration" +"1627140": installDir: Sabre Team launch: - - arguments: '-noconsole -conf fullscreen.conf -conf dosbox.conf -conf launch.conf -exit' + - arguments: "-noconsole -conf fullscreen.conf -conf dosbox.conf -conf launch.conf -exit" config: oslist: windows description: full screen - description_loc: - english: full screen - executable: DOSBox\\dosbox.exe + executable: "DOSBox\\\\dosbox.exe" type: option1 - workingdir: DOSBox\\Configuration - - arguments: '-noconsole -conf 320x200.conf -conf dosbox.conf -conf launch.conf -exit' + workingdir: "DOSBox\\\\Configuration" + - arguments: "-noconsole -conf 320x200.conf -conf dosbox.conf -conf launch.conf -exit" config: oslist: windows description: windowed 320x200 - description_loc: - english: windowed 320x200 - executable: DOSBox\\dosbox.exe + executable: "DOSBox\\\\dosbox.exe" type: option1 - workingdir: DOSBox\\Configuration - - arguments: '-noconsole -conf 640x400.conf -conf dosbox.conf -conf launch.conf -exit' + workingdir: "DOSBox\\\\Configuration" + - arguments: "-noconsole -conf 640x400.conf -conf dosbox.conf -conf launch.conf -exit" config: oslist: windows description: windowed 640x400 - description_loc: - english: windowed 640x400 - executable: DOSBox\\dosbox.exe + executable: "DOSBox\\\\dosbox.exe" type: option1 - workingdir: DOSBox\\Configuration - - arguments: '-noconsole -conf 1280x800.conf -conf dosbox.conf -conf launch.conf -exit' + workingdir: "DOSBox\\\\Configuration" + - arguments: "-noconsole -conf 1280x800.conf -conf dosbox.conf -conf launch.conf -exit" config: oslist: windows description: windowed 1280x800 - description_loc: - english: windowed 1280x800 - executable: DOSBox\\dosbox.exe + executable: "DOSBox\\\\dosbox.exe" type: option1 - workingdir: DOSBox\\Configuration - - arguments: '-noconsole -conf 2560x1600.conf -conf dosbox.conf -conf launch.conf -exit' + workingdir: "DOSBox\\\\Configuration" + - arguments: "-noconsole -conf 2560x1600.conf -conf dosbox.conf -conf launch.conf -exit" config: oslist: windows description: windowed 2560x1600 - description_loc: - english: windowed 2560x1600 - executable: DOSBox\\dosbox.exe + executable: "DOSBox\\\\dosbox.exe" type: option1 - workingdir: DOSBox\\Configuration -'1627150': + workingdir: "DOSBox\\\\Configuration" +"1627150": installDir: Retro Classix Joe and Mac Returns launch: - config: oslist: windows executable: Retro Classix Joe and Mac Returns.exe type: default -'1627220': +"1627220": installDir: Retro Classix Night Slashers launch: - config: oslist: windows executable: Retro Classix Night Slashers.exe type: default -'1627230': +"1627230": installDir: Retro Classix BreakThru launch: - config: oslist: windows executable: Retro Classix Breakthru.exe type: default -'1627720': +"1627720": installDir: Lies of P launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Lies of P - description_loc: - english: Lies of P executable: LOP.exe type: default nameLocalized: koreana: P의 거짓 (Lies of P) -'1628120': {} -'1628760': +"1628120": {} +"1628760": installDir: Kawaii Neko Girls launch: - config: @@ -95355,18 +93455,18 @@ oslist: macos executable: KNG.app type: default -'1628940': +"1628940": installDir: Street Striker launch: - config: oslist: windows executable: Street Striker.exe type: default -'1629530': +"1629530": installDir: Spark the Electric Jester 3 launch: - executable: Spark the Electric Jester 3.exe -'1629910': +"1629910": installDir: ChronosSouls launch: - config: @@ -95379,11 +93479,11 @@ sc_schinese: 时灵 星辰愚者 schinese: 时灵 星辰愚者 tchinese: 時靈 星辰愚者 -'16300': +"16300": installDir: Everyday Shooter launch: - executable: EverydayShooter.exe -'1630080': +"1630080": installDir: College Bound launch: - config: @@ -95402,26 +93502,26 @@ betakey: test executable: CollegeBound.exe type: default -'1630110': +"1630110": installDir: Gungrave G.O.R.E launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: GunGraveGore.exe type: default -'1630290': +"1630290": installDir: Yu Crossing Animals launch: - config: - osarch: '64' + osarch: "64" executable: Yu Crossing Animals.exe type: default -'1630420': +"1630420": installDir: Slime Girl Smoothies launch: - executable: SlimegirlMixer.exe -'1630960': +"1630960": installDir: Centipede Recharged launch: - executable: Centipede Recharged.exe @@ -95432,26 +93532,24 @@ - config: oslist: linux executable: centipde_recharged.x86_64 -'1631500': +"1631500": installDir: Dumpy & Bumpy launch: - config: oslist: windows description: Launch Dumpy & Bumpy - description_loc: - english: Launch Dumpy & Bumpy executable: DumpyAndBumpy.exe type: default -'1632980': +"1632980": installDir: schoolbreak.io launch: - - arguments: '--disable-direct-composition --in-process-gpu' + - arguments: "--disable-direct-composition --in-process-gpu" config: - osarch: '64' + osarch: "64" oslist: windows executable: schoolbreak.exe type: default -'1634080': +"1634080": installDir: Nocturnal launch: - config: @@ -95459,7 +93557,7 @@ executable: Nocturnal.exe nameLocalized: schinese: 离火长明 -'1634150': +"1634150": installDir: Behind the Frame - The Finest Scenery launch: - config: @@ -95467,36 +93565,34 @@ executable: Behind the Frame.app type: default - config: - osarch: '64' + osarch: "64" oslist: windows - executable: BehindTheFrame_PC_Steam\\Behind the Frame.exe + executable: "BehindTheFrame_PC_Steam\\\\Behind the Frame.exe" type: default - config: betakey: beta_pc oslist: windows description: Beta PC Branch - description_loc: - english: Beta PC Branch executable: Behind the Frame.exe type: option1 nameLocalized: - french: 'Behind the Frame: Les plus beaux paysages' - german: 'Behind the Frame: Das schönste Bild' - italian: 'Behind the Frame: Il paesaggio più bello' + french: "Behind the Frame: Les plus beaux paysages" + german: "Behind the Frame: Das schönste Bild" + italian: "Behind the Frame: Il paesaggio più bello" japanese: Behind the Frame 〜とっておきの景色を〜 - koreana: 'Behind the Frame: 가장 아름다운 경치' - russian: 'Behind the Frame: Живые полотна' - schinese: '倾听画语: 最美好的景色' - spanish: 'Behind the Frame: El paisaje más bello' - tchinese: '傾聽畫語: 最美好的景色' -'1634450': + koreana: "Behind the Frame: 가장 아름다운 경치" + russian: "Behind the Frame: Живые полотна" + schinese: "倾听画语: 最美好的景色" + spanish: "Behind the Frame: El paisaje más bello" + tchinese: "傾聽畫語: 最美好的景色" +"1634450": installDir: B-17 Flying Fortress World War II Bombers in Action launch: - config: oslist: windows executable: B_17Launcher.exe type: config -'1635590': +"1635590": installDir: My Friend Peppa Pig launch: - executable: My Friend Peppa Pig.exe @@ -95519,39 +93615,39 @@ portuguese: A Minha Amiga Peppa russian: Мой Друг Свинка Пеппа schinese: 我的好友小猪佩奇 - spanish: 'Mi Amiga, Peppa Pig' + spanish: "Mi Amiga, Peppa Pig" swedish: Min Vän Greta Gris tchinese: 我的好友:粉紅豬小妹 turkish: Arkadaşım Peppa Pig -'1635600': +"1635600": installDir: PJ Masks Heroes of the Night launch: - executable: PJ Masks.exe type: none nameLocalized: - arabic: 'PJ MASKS: أبطال الليل' - brazilian: 'PJ MASKS: HERÓIS DA NOITE' - danish: 'PJ MASKS: NATTENS HELTE' - dutch: 'PJ MASKS: HELDEN VAN DE NACHT' - english: 'PJ MASKS: HEROES OF THE NIGHT' - finnish: 'PJ MASKS: YÖN SANKARIT' - french: 'PYJAMASQUES: HÉROS DE LA NUIT' - german: 'PJ MASKS: HELDEN DER NACHT' - italian: 'PJ MASKS: EROI DELLA NOTTE' - japanese: 'しゅつどう!パジャマスク: 夜のヒーロー' - koreana: '파자마 삼총사 : 밤의 영웅들' - latam: 'PJ MASKS: SALVEMOS LA NOCHE' - norwegian: 'PJ MASKS: NATTENS HELTER' - polish: 'PJ MASKS: BOHATEROWIE NOCY' - portuguese: 'PJ MASKS: HEROES OF THE NIGHT' - russian: 'ГЕРОИ В МАСКАХ: ГЕРОИ НОЧИ' + arabic: "PJ MASKS: أبطال الليل" + brazilian: "PJ MASKS: HERÓIS DA NOITE" + danish: "PJ MASKS: NATTENS HELTE" + dutch: "PJ MASKS: HELDEN VAN DE NACHT" + english: "PJ MASKS: HEROES OF THE NIGHT" + finnish: "PJ MASKS: YÖN SANKARIT" + french: "PYJAMASQUES: HÉROS DE LA NUIT" + german: "PJ MASKS: HELDEN DER NACHT" + italian: "PJ MASKS: EROI DELLA NOTTE" + japanese: "しゅつどう!パジャマスク: 夜のヒーロー" + koreana: "파자마 삼총사 : 밤의 영웅들" + latam: "PJ MASKS: SALVEMOS LA NOCHE" + norwegian: "PJ MASKS: NATTENS HELTER" + polish: "PJ MASKS: BOHATEROWIE NOCY" + portuguese: "PJ MASKS: HEROES OF THE NIGHT" + russian: "ГЕРОИ В МАСКАХ: ГЕРОИ НОЧИ" schinese: 睡衣小英雄 :黑夜英雄 - spanish: 'PJ MASKS: HÉROES DE LA NOCHE' - swedish: 'PJ MASKS: NATTENS HJÄLTAR' + spanish: "PJ MASKS: HÉROES DE LA NOCHE" + swedish: "PJ MASKS: NATTENS HJÄLTAR" tchinese: 睡衣小英雄 :黑夜英雄 - turkish: 'PJ MASKS: GECENİN KAHRAMANLARI' -'1635640': {} -'1636660': + turkish: "PJ MASKS: GECENİN KAHRAMANLARI" +"1635640": {} +"1636660": installDir: Absolute Tactics launch: - config: @@ -95560,11 +93656,11 @@ type: none nameLocalized: schinese: 绝对战略:仁慈之女 -'1637230': +"1637230": installDir: Metal Max Xeno Reborn launch: - executable: METAL MAX Xeno Reborn.exe -'1637320': +"1637320": installDir: Dome Keeper launch: - config: @@ -95597,7 +93693,7 @@ nameLocalized: schinese: Dome Keeper 穹顶守护者 tchinese: Dome Keeper 穹頂守護者 -'1637730': +"1637730": installDir: Crystal Project launch: - config: @@ -95609,46 +93705,34 @@ - config: oslist: macos executable: Crystal Project.app -'1638220': +"1638220": installDir: SWD3E launch: - arguments: /WC config: - osarch: '64' + osarch: "64" oslist: windows - description: '視窗:自動' - description_loc: - english: '視窗:自動' - schinese: '视窗:自动' - tchinese: '視窗:自動' + description: "視窗:自動" executable: swd3e.exe type: option1 - arguments: /w 800 config: - osarch: '64' + osarch: "64" oslist: windows - description: '视窗:800x600' - description_loc: - english: '视窗:800x600' - schinese: '視窗:800x600' - tchinese: '视窗:800x600' + description: "视窗:800x600" executable: swd3e.exe type: option2 - arguments: /F config: - osarch: '64' + osarch: "64" oslist: windows description: 全螢幕 - description_loc: - english: 全螢幕 - schinese: 全画面 - tchinese: 全螢幕 executable: swd3e.exe type: option3 nameLocalized: schinese: 轩辕剑叁外传 天之痕 tchinese: 軒轅劍參外傳 天之痕 -'1638330': +"1638330": installDir: Darius Cozmic Collection Arcade launch: - config: @@ -95657,25 +93741,25 @@ type: default nameLocalized: japanese: ダライアス コズミックコレクション アーケード -'1638660': +"1638660": installDir: Blood Spear launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: WindowsNoEditor\\Blood_Spear.exe + executable: "WindowsNoEditor\\\\Blood_Spear.exe" type: default -'1639000': {} -'1639080': {} -'1639790': +"1639000": {} +"1639080": {} +"1639790": installDir: Northern journey launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Skog.exe type: default -'1639990': +"1639990": installDir: Dreams of Desire Definitive Edition launch: - config: @@ -95686,14 +93770,14 @@ oslist: linux executable: DreamsofDesire.sh type: default -'1640': +"1640": installDir: Disciples II Galleans Return launch: - description: Disciples II Galleans Return executable: discipl2.exe - - description: '#Steam_LaunchOption_SetupUtility' + - description: "#Steam_LaunchOption_SetupUtility" executable: ConfigEditor.exe -'1640160': +"1640160": installDir: G-Darius HD launch: - config: @@ -95702,157 +93786,149 @@ type: default nameLocalized: japanese: GダライアスHD -'1640300': +"1640300": installDir: Project Warlock II launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Project Warlock 2.exe type: default -'1640320': +"1640320": installDir: B.I.O.T.A launch: - - arguments: '--in-process-gpu --disable-direct-composition' + - arguments: "--in-process-gpu --disable-direct-composition" config: oslist: windows executable: nw.exe type: default -'1640400': {} -'1640660': {} -'1640930': +"1640400": {} +"1640660": {} +"1640930": installDir: BeeFense BeeMastered launch: - config: oslist: windows executable: BeeFense.exe type: default -'1641120': {} -'1641830': +"1641120": {} +"1641830": installDir: Axis Football 2021 launch: - config: oslist: windows description: Launch - description_loc: - english: Launch executable: Axis Football 2021.exe type: default - config: oslist: macos description: Launch - description_loc: - english: Launch executable: Axis Football 2021.app type: default - config: oslist: linux description: Launch - description_loc: - english: Launch executable: Axis Football 2021.x86_64 type: default -'1641860': +"1641860": installDir: Bankrupt Heroines 2 launch: - executable: Bankrupt Heroines 2.exe -'1641960': +"1641960": installDir: Forever Skies launch: - config: betakey: default executable: ForeverSkies.exe type: default - - arguments: '-saveddirsuffix=BetaFlight' + - arguments: "-saveddirsuffix=BetaFlight" config: betakey: beta_flight executable: ForeverSkies.exe type: default nameLocalized: schinese: 永恒天空 -'1642110': +"1642110": installDir: BATS the Game launch: - config: oslist: windows executable: B.A.T.S.exe type: default -'1642170': +"1642170": installDir: Dawn of the Monsters launch: - config: oslist: windows executable: DotM.exe type: default -'1642260': +"1642260": installDir: Kimagure Temptation launch: - config: oslist: windows executable: kimaten.exe type: default -'1642620': +"1642620": installDir: Sa・Ga COLLECTION launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Sa・Ga COLLECTION.exe type: default nameLocalized: japanese: Sa・Ga COLLECTION -'1643310': {} -'1643320': {} -'1643470': +"1643310": {} +"1643320": {} +"1643470": installDir: Flying Corps launch: - config: oslist: windows - executable: DOSBox-0.74-3\\DOSBox.exe + executable: "DOSBox-0.74-3\\\\DOSBox.exe" type: default -'1644320': +"1644320": installDir: Railway Empire 2 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: RailwayEmpire2.exe type: default -'1644750': {} -'1644960': +"1644750": {} +"1644960": installDir: NBA 2K22 launch: - executable: nba2k22.exe type: none -'1644990': +"1644990": installDir: BeFunnyNow launch: - config: oslist: windows executable: BeFunnyNow.exe type: default -'16450': +"16450": installDir: FEAR2 launch: - executable: FEAR2.exe -'1646120': +"1646120": installDir: Citizens launch: - config: oslist: windows description: Windows (x64) - description_loc: - english: Windows (x64) executable: Citizens.exe type: default nameLocalized: - german: 'Citizens: Ferne Länder' - italian: 'Citizens: Terre Lontane' - polish: 'Citizens: Dalekie Ziemie' - russian: 'Citizens: Дальние Земли' + german: "Citizens: Ferne Länder" + italian: "Citizens: Terre Lontane" + polish: "Citizens: Dalekie Ziemie" + russian: "Citizens: Дальние Земли" schinese: 海岛物语 tchinese: 海島物語 -'1646930': +"1646930": installDir: TheFeebleFiles launch: - config: @@ -95868,45 +93944,45 @@ executable: launch_game_linux-voiceonly.sh type: default nameLocalized: - german: 'Floyd: Es gibt noch Helden' + german: "Floyd: Es gibt noch Helden" polish: Flojd -'1647160': +"1647160": installDir: Deepest Sword launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Deepest Sword.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: Deepest Sword.exe type: default - config: oslist: macos - executable: DeepestSword.app\\Contents\\MacOS\\Deepest Sword + executable: "DeepestSword.app\\\\Contents\\\\MacOS\\\\Deepest Sword" type: default -'1647550': +"1647550": installDir: NEO The World Ends with You launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: NEO The World Ends with You.exe type: default nameLocalized: japanese: 新すばらしきこのせかい -'1647730': +"1647730": installDir: Zool Redimensioned launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Zool.exe type: default -'1648190': {} -'1648300': +"1648190": {} +"1648300": installDir: Forbidden World launch: - arguments: SteamPC @@ -95916,11 +93992,9 @@ type: default - arguments: SteamOpenVR description: SteamVR - description_loc: - english: SteamVR executable: CostumeParty/CostumePartyVR.exe type: vr -'1649010': +"1649010": installDir: Miasma launch: - config: @@ -95930,7 +94004,7 @@ koreana: 미아스마 크로니클(Miasma Chronicles) schinese: 迷瘴纪事 (Miasma Chronicles) tchinese: 迷瘴記事 (Miasma Chronicles) -'1649080': +"1649080": installDir: Two Point Campus launch: - config: @@ -95945,111 +94019,95 @@ oslist: linux executable: TPC.x86_64 type: default - - arguments: '-force-glcore' + - arguments: "-force-glcore" config: betakey: press_build oslist: macos description: Two Point Campus (OpenGL) - description_loc: - english: Two Point Campus (OpenGL) executable: TPC.app type: option1 - - arguments: '-easter_streamers -useDevSeasonalContent' + - arguments: "-easter_streamers -useDevSeasonalContent" config: betakey: challenge_easter_beta oslist: windows description: Two Point Campus (Easter Beta) - description_loc: - english: Two Point Campus (Easter Beta) executable: TPC.exe type: option1 - - arguments: '-easter_streamers -useDevSeasonalContent' + - arguments: "-easter_streamers -useDevSeasonalContent" config: betakey: challenge_easter_beta oslist: macos description: Two Point Campus (Easter Beta) - description_loc: - english: Two Point Campus (Easter Beta) executable: TPC.app type: option1 - - arguments: '-easter_streamers -useDevSeasonalContent' + - arguments: "-easter_streamers -useDevSeasonalContent" config: betakey: challenge_easter_beta oslist: linux description: Two Point Campus (Easter Beta) - description_loc: - english: Two Point Campus (Easter Beta) executable: TPC.x86_64 type: option1 nameLocalized: - schinese: '双点校园 ' -'1649210': {} -'1649240': + schinese: "双点校园 " +"1649210": {} +"1649240": installDir: Returnal launch: - executable: Returnal/Binaries/Win64/Launcher.exe type: default -'1649340': +"1649340": installDir: Theatre of War launch: - - arguments: '-noconsole -conf fullscreen.conf -conf dosbox.conf -conf launch.conf -exit' + - arguments: "-noconsole -conf fullscreen.conf -conf dosbox.conf -conf launch.conf -exit" config: oslist: windows description: full screen - description_loc: - english: full screen - executable: DOSBox\\dosbox.exe + executable: "DOSBox\\\\dosbox.exe" type: option1 - workingdir: DOSBox\\Configuration - - arguments: '-noconsole -conf 640x480.conf -conf dosbox.conf -conf launch.conf -exit' + workingdir: "DOSBox\\\\Configuration" + - arguments: "-noconsole -conf 640x480.conf -conf dosbox.conf -conf launch.conf -exit" config: oslist: windows description: windowed 640x480 - description_loc: - english: windowed 640x480 - executable: DOSBox\\dosbox.exe + executable: "DOSBox\\\\dosbox.exe" type: option2 - workingdir: DOSBox\\Configuration - - arguments: '-noconsole -conf 1280x960.conf -conf dosbox.conf -conf launch.conf -exit' + workingdir: "DOSBox\\\\Configuration" + - arguments: "-noconsole -conf 1280x960.conf -conf dosbox.conf -conf launch.conf -exit" config: oslist: windows description: windowed 1280x960 - description_loc: - english: windowed 1280x960 - executable: DOSBox\\dosbox.exe + executable: "DOSBox\\\\dosbox.exe" type: option1 - workingdir: DOSBox\\Configuration - - arguments: '-noconsole -conf 2560x1920.conf -conf dosbox.conf -conf launch.conf -exit' + workingdir: "DOSBox\\\\Configuration" + - arguments: "-noconsole -conf 2560x1920.conf -conf dosbox.conf -conf launch.conf -exit" config: oslist: windows description: windowed 2560x1920 - description_loc: - english: windowed 2560x1920 - executable: DOSBox\\dosbox.exe + executable: "DOSBox\\\\dosbox.exe" type: option1 - workingdir: DOSBox\\Configuration -'16500': + workingdir: "DOSBox\\\\Configuration" +"16500": installDir: ChaosTheory launch: - executable: ChaosTheory.exe -'1650010': +"1650010": installDir: RIDE 5 launch: - executable: ride5.exe type: none -'1650550': +"1650550": installDir: Workshop Simulator launch: - config: oslist: windows - executable: WS2020\\Binaries\\Win64\\Workshop-Win64-Shipping.exe + executable: "WS2020\\\\Binaries\\\\Win64\\\\Workshop-Win64-Shipping.exe" type: default - workingdir: WS2020\\Binaries\\Win64 -'1650810': + workingdir: "WS2020\\\\Binaries\\\\Win64" +"1650810": installDir: Loopmancer launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Loopmancer.exe type: default @@ -96057,7 +94115,7 @@ english: Loopmancer schinese: 生死轮回 tchinese: 生死輪回 -'1651960': +"1651960": installDir: HextechMayhem launch: - config: @@ -96071,11 +94129,11 @@ type: default nameLocalized: japanese: ヘクステックメイヘム:リーグ・オブ・レジェンド ストーリー™ - koreana: '마법공학 아수라장: 리그 오브 레전드 이야기' + koreana: "마법공학 아수라장: 리그 오브 레전드 이야기" schinese: 《海克斯炸欢天:英雄联盟外传》 tchinese: 《聯盟外傳™:海克斯失序》 - vietnamese: 'Hextech Mayhem: Truyền Thuyết Liên Minh Huyền Thoại™' -'1652030': + vietnamese: "Hextech Mayhem: Truyền Thuyết Liên Minh Huyền Thoại™" +"1652030": installDir: Flowering Nightshade launch: - config: @@ -96090,281 +94148,233 @@ oslist: macos executable: Flowering_Nightshade.app type: default -'1654660': +"1654660": installDir: EnGarde launch: - - arguments: '-DX11' + - arguments: "-DX11" config: - osarch: '64' + osarch: "64" oslist: windows description: DirectX 11 - description_loc: - english: DirectX 11 executable: /EnGarde.exe type: default - - arguments: '-DX12' + - arguments: "-DX12" config: - osarch: '64' + osarch: "64" oslist: windows description: En Garde! DirectX 12 - description_loc: - english: En Garde! DirectX 12 executable: /EnGarde.exe type: option2 -'1655220': +"1655220": installDir: Star Trek Prodigy launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: StarTrekProdigy.exe type: default nameLocalized: - arabic: 'Star Trek Prodigy: سوبرنوفا' - japanese: 'Star Trek Prodigy: スーパーノヴァ' - koreana: 'Star Trek Prodigy: 슈퍼노바' - russian: 'Star Trek Prodigy: Сверхновая' + arabic: "Star Trek Prodigy: سوبرنوفا" + japanese: "Star Trek Prodigy: スーパーノヴァ" + koreana: "Star Trek Prodigy: 슈퍼노바" + russian: "Star Trek Prodigy: Сверхновая" schinese: Star Trek Prodigy:超新星 tchinese: 《Star Trek Prodigy:超新星》 - turkish: 'Star Trek Prodigy: Süpernova' - ukrainian: 'Star Trek Prodigy: Супернова' -'1655410': + turkish: "Star Trek Prodigy: Süpernova" + ukrainian: "Star Trek Prodigy: Супернова" +"1655410": installDir: Witchaven launch: - - description: '(Enhanced version, recommended)' - description_loc: - english: '(Enhanced version, recommended)' - executable: Enhanced\\run-game.bat + - description: "(Enhanced version, recommended)" + executable: "Enhanced\\\\run-game.bat" type: option1 workingdir: Enhanced - description: Edit game settings (Enhanced version) - description_loc: - english: Edit game settings (Enhanced version) - executable: Enhanced\\run-setup.bat + executable: "Enhanced\\\\run-setup.bat" type: none workingdir: Enhanced - description: Edit DOSBox settings (Enhanced version) - description_loc: - english: Edit DOSBox settings (Enhanced version) - executable: Enhanced\\run-graphics-config.bat + executable: "Enhanced\\\\run-graphics-config.bat" type: none workingdir: Enhanced - description: (Original version) - description_loc: - english: (Original version) - executable: Original\\run-game.bat + executable: "Original\\\\run-game.bat" type: option3 workingdir: Original -'1655430': +"1655430": installDir: Witchaven II Blood Vengeance launch: - - description: '(Enhanced version, recommended)' - description_loc: - english: '(Enhanced version, recommended)' - executable: Enhanced\\run-game.bat + - description: "(Enhanced version, recommended)" + executable: "Enhanced\\\\run-game.bat" type: option1 workingdir: Enhanced - description: Edit game settings (Enhanced version) - description_loc: - english: Edit game settings (Enhanced version) - executable: Enhanced\\run-setup.bat + executable: "Enhanced\\\\run-setup.bat" type: none workingdir: Enhanced - description: Edit DOSBox settings (Enhanced version) - description_loc: - english: Edit DOSBox settings (Enhanced version) - executable: Enhanced\\run-graphics-config.bat + executable: "Enhanced\\\\run-graphics-config.bat" type: none workingdir: Enhanced - description: (Original version) - description_loc: - english: (Original version) - executable: Original\\run-game.bat + executable: "Original\\\\run-game.bat" type: option3 workingdir: Original -'1656780': - installDir: Hero's Hour +"1656780": + installDir: "Hero's Hour" launch: - - executable: Hero's Hour.exe + - executable: "Hero's Hour.exe" type: default nameLocalized: japanese: ヒーローズアワー koreana: 히어로즈 아워 schinese: 英雄之时 tchinese: 英雄之時 -'1656820': +"1656820": installDir: Cotton Reboot launch: - config: oslist: windows executable: cotton_reboot.exe type: default -'1657050': {} -'1657630': +"1657050": {} +"1657630": installDir: Slime Rancher 2 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SlimeRancher2.exe type: default -'1658150': +"1658150": nameLocalized: schinese: 月光石岛 -'1658280': +"1658280": nameLocalized: japanese: 百英雄伝 - koreana: '백영웅전 Eiyuden Chronicle: Hundred Heroes' - schinese: '\"百英雄传 Eiyuden Chronicle: Hundred Heroes\"' - tchinese: '《百英雄傳》Eiyuden Chronicle: Hundred Heroes' -'1658290': + koreana: "백영웅전 Eiyuden Chronicle: Hundred Heroes" + schinese: "\\\"百英雄传 Eiyuden Chronicle: Hundred Heroes\\\"" + tchinese: "《百英雄傳》Eiyuden Chronicle: Hundred Heroes" +"1658290": installDir: Eiyuden Chronicle Rising launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Eiyuden Chronicle Rising.exe type: default nameLocalized: japanese: 百英雄伝 Rising - schinese: 'Eiyuden Chronicle: Rising 百英雄传:崛起' - tchinese: '《百英雄傳: 崛起》Eiyuden Chronicle: Rising' -'1658740': + schinese: "Eiyuden Chronicle: Rising 百英雄传:崛起" + tchinese: "《百英雄傳: 崛起》Eiyuden Chronicle: Rising" +"1658740": installDir: Zyconix launch: - - arguments: '-noconsole -conf fullscreen.conf -conf dosbox.conf -conf launch.conf -exit' + - arguments: "-noconsole -conf fullscreen.conf -conf dosbox.conf -conf launch.conf -exit" config: oslist: windows description: full screen - description_loc: - english: full screen - executable: DOSBox\\dosbox.exe + executable: "DOSBox\\\\dosbox.exe" type: option1 - workingdir: DOSBox\\Configuration - - arguments: '-noconsole -conf 320x200.conf -conf dosbox.conf -conf launch.conf -exit' + workingdir: "DOSBox\\\\Configuration" + - arguments: "-noconsole -conf 320x200.conf -conf dosbox.conf -conf launch.conf -exit" config: oslist: windows description: windowed 320x200 - description_loc: - english: windowed 320x200 - executable: DOSBox\\dosbox.exe + executable: "DOSBox\\\\dosbox.exe" type: option1 - workingdir: DOSBox\\Configuration - - arguments: '-noconsole -conf 640x400.conf -conf dosbox.conf -conf launch.conf -exit' + workingdir: "DOSBox\\\\Configuration" + - arguments: "-noconsole -conf 640x400.conf -conf dosbox.conf -conf launch.conf -exit" config: oslist: windows description: windowed 640x400 - description_loc: - english: windowed 640x400 - executable: DOSBox\\dosbox.exe + executable: "DOSBox\\\\dosbox.exe" type: option1 - workingdir: DOSBox\\Configuration - - arguments: '-noconsole -conf 1280x800.conf -conf dosbox.conf -conf launch.conf -exit' + workingdir: "DOSBox\\\\Configuration" + - arguments: "-noconsole -conf 1280x800.conf -conf dosbox.conf -conf launch.conf -exit" config: oslist: windows description: windowed 1280x800 - description_loc: - english: windowed 1280x800 - executable: DOSBox\\dosbox.exe + executable: "DOSBox\\\\dosbox.exe" type: option1 - workingdir: DOSBox\\Configuration - - arguments: '-noconsole -conf 2560x1600.conf -conf dosbox.conf -conf launch.conf -exit' + workingdir: "DOSBox\\\\Configuration" + - arguments: "-noconsole -conf 2560x1600.conf -conf dosbox.conf -conf launch.conf -exit" config: oslist: windows description: windowed 2560x1600 - description_loc: - english: windowed 2560x1600 - executable: DOSBox\\dosbox.exe + executable: "DOSBox\\\\dosbox.exe" type: option1 - workingdir: DOSBox\\Configuration -'1658750': + workingdir: "DOSBox\\\\Configuration" +"1658750": installDir: Revelation launch: - - arguments: '-noconsole -conf fullscreen.conf -conf dosbox.conf -conf launch.conf -exit' + - arguments: "-noconsole -conf fullscreen.conf -conf dosbox.conf -conf launch.conf -exit" config: oslist: windows description: full screen - description_loc: - english: full screen - executable: DOSBox\\dosbox.exe + executable: "DOSBox\\\\dosbox.exe" type: option1 - workingdir: DOSBox\\Configuration - - arguments: '-noconsole -conf 320x200.conf -conf dosbox.conf -conf launch.conf -exit' + workingdir: "DOSBox\\\\Configuration" + - arguments: "-noconsole -conf 320x200.conf -conf dosbox.conf -conf launch.conf -exit" config: oslist: windows description: windowed 320x200 - description_loc: - english: windowed 320x200 - executable: DOSBox\\dosbox.exe + executable: "DOSBox\\\\dosbox.exe" type: option1 - workingdir: DOSBox\\Configuration - - arguments: '-noconsole -conf 640x400.conf -conf dosbox.conf -conf launch.conf -exit' + workingdir: "DOSBox\\\\Configuration" + - arguments: "-noconsole -conf 640x400.conf -conf dosbox.conf -conf launch.conf -exit" config: oslist: windows description: windowed 640x400 - description_loc: - english: windowed 640x400 - executable: DOSBox\\dosbox.exe + executable: "DOSBox\\\\dosbox.exe" type: option1 - workingdir: DOSBox\\Configuration - - arguments: '-noconsole -conf 1280x800.conf -conf dosbox.conf -conf launch.conf -exit' + workingdir: "DOSBox\\\\Configuration" + - arguments: "-noconsole -conf 1280x800.conf -conf dosbox.conf -conf launch.conf -exit" config: oslist: windows description: windowed 1280x800 - description_loc: - english: windowed 1280x800 - executable: DOSBox\\dosbox.exe + executable: "DOSBox\\\\dosbox.exe" type: option1 - workingdir: DOSBox\\Configuration - - arguments: '-noconsole -conf 2560x1600.conf -conf dosbox.conf -conf launch.conf -exit' + workingdir: "DOSBox\\\\Configuration" + - arguments: "-noconsole -conf 2560x1600.conf -conf dosbox.conf -conf launch.conf -exit" config: oslist: windows description: windowed 2560x1600 - description_loc: - english: windowed 2560x1600 - executable: DOSBox\\dosbox.exe + executable: "DOSBox\\\\dosbox.exe" type: option1 - workingdir: DOSBox\\Configuration -'1658770': + workingdir: "DOSBox\\\\Configuration" +"1658770": installDir: Grandmaster Chess launch: - - arguments: '-noconsole -conf fullscreen.conf -conf dosbox.conf -conf launch.conf -exit' + - arguments: "-noconsole -conf fullscreen.conf -conf dosbox.conf -conf launch.conf -exit" config: oslist: windows description: full screen - description_loc: - english: full screen - executable: DOSBox\\dosbox.exe + executable: "DOSBox\\\\dosbox.exe" type: option1 - workingdir: DOSBox\\Configuration - - arguments: '-noconsole -conf 640x480.conf -conf dosbox.conf -conf launch.conf -exit' + workingdir: "DOSBox\\\\Configuration" + - arguments: "-noconsole -conf 640x480.conf -conf dosbox.conf -conf launch.conf -exit" config: oslist: windows description: windowed 640x480 - description_loc: - english: windowed 640x480 - executable: DOSBox\\dosbox.exe + executable: "DOSBox\\\\dosbox.exe" type: option1 - workingdir: DOSBox\\Configuration - - arguments: '-noconsole -conf 1280x960.conf -conf dosbox.conf -conf launch.conf -exit' + workingdir: "DOSBox\\\\Configuration" + - arguments: "-noconsole -conf 1280x960.conf -conf dosbox.conf -conf launch.conf -exit" config: oslist: windows description: windowed 1280x960 - description_loc: - english: windowed 1280x960 - executable: DOSBox\\dosbox.exe + executable: "DOSBox\\\\dosbox.exe" type: option1 - workingdir: DOSBox\\Configuration - - arguments: '-noconsole -conf 2560x1920.conf -conf dosbox.conf -conf launch.conf -exit' + workingdir: "DOSBox\\\\Configuration" + - arguments: "-noconsole -conf 2560x1920.conf -conf dosbox.conf -conf launch.conf -exit" config: oslist: windows description: windowed 2560x1920 - description_loc: - english: windowed 2560x1920 - executable: DOSBox\\dosbox.exe + executable: "DOSBox\\\\dosbox.exe" type: option1 - workingdir: DOSBox\\Configuration -'1658830': + workingdir: "DOSBox\\\\Configuration" +"1658830": installDir: Vampire Slave 1 launch: - config: @@ -96379,108 +94389,94 @@ oslist: macos executable: VampireSlave1.app type: default -'1659040': +"1659040": installDir: HITMAN 3 launch: - config: oslist: windows executable: Launcher.exe type: default -'1659050': +"1659050": installDir: Creatures Docking Station launch: - - arguments: '--autokill Docking Station' + - arguments: "--autokill Docking Station" config: oslist: windows description: Docking Station - description_loc: - english: Docking Station - executable: Docking Station\\engine.exe + executable: "Docking Station\\\\engine.exe" type: default - - arguments: '--autokill Creatures 3' + - arguments: "--autokill Creatures 3" config: - ownsdlc: '1797350' + ownsdlc: "1797350" description: Creatures 3 (Legacy Standalone) - description_loc: - english: Creatures 3 (Legacy Standalone) - executable: Creatures 3\\engine.exe + executable: "Creatures 3\\\\engine.exe" type: option2 - description: Language / Sprache / Langue - description_loc: - english: Language / Sprache / Langue - executable: Docking Station\\C2ELanguageSelector.exe + executable: "Docking Station\\\\C2ELanguageSelector.exe" - config: oslist: windows - ownsdlc: '1838430' + ownsdlc: "1838430" description: Biochemistry Set - description_loc: - english: Biochemistry Set - executable: Science Kit\\BiochemistrySet.exe + executable: "Science Kit\\\\BiochemistrySet.exe" - config: oslist: windows - ownsdlc: '1838430' + ownsdlc: "1838430" description: Genetics Kit - description_loc: - english: Genetics Kit - executable: Science Kit\\Genetics Kit\\Creatures 3 Genetics Kit.exe + executable: "Science Kit\\\\Genetics Kit\\\\Creatures 3 Genetics Kit.exe" - config: oslist: windows - ownsdlc: '1838430' + ownsdlc: "1838430" description: Brain in a Vat - description_loc: - english: Brain in a Vat - executable: Science Kit\\Vat.exe -'1659420': + executable: "Science Kit\\\\Vat.exe" +"1659420": installDir: Uncharted Legacy of Thieves Collection launch: - config: oslist: windows - description: 'Uncharted: Legacy of Thieves' - description_loc: - english: 'Uncharted: Legacy of Thieves' + description: "Uncharted: Legacy of Thieves" executable: u4.exe type: option3 nameLocalized: - arabic: 'UNCHARTED™: مجموعة إرث اللصوص' - brazilian: 'UNCHARTED™: Coleção Legado dos Ladrões' - italian: 'UNCHARTED™: Raccolta L''eredità dei ladri' + arabic: "UNCHARTED™: مجموعة إرث اللصوص" + brazilian: "UNCHARTED™: Coleção Legado dos Ladrões" + italian: "UNCHARTED™: Raccolta L'eredità dei ladri" japanese: アンチャーテッド トレジャーハンターコレクション™ - koreana: 'UNCHARTED™: 레거시 오브 시브즈 컬렉션' - latam: 'UNCHARTED™: Colección Legado de ladrones' - polish: 'UNCHARTED™: Kolekcja Dziedzictwo Złodziei' - portuguese: 'UNCHARTED™: Coleção Legado dos Ladrões' - russian: 'UNCHARTED™: Наследие воров. Коллекция' - schinese: 'UNCHARTED™: 盗贼传奇合辑' - spanish: 'UNCHARTED™: Colección Legado de los Ladrones' - tchinese: 'UNCHARTED™: 盜賊傳奇合輯' - turkish: 'UNCHARTED™: Hırsızlar Mirası Koleksiyonu' -'1659600': + koreana: "UNCHARTED™: 레거시 오브 시브즈 컬렉션" + latam: "UNCHARTED™: Colección Legado de ladrones" + polish: "UNCHARTED™: Kolekcja Dziedzictwo Złodziei" + portuguese: "UNCHARTED™: Coleção Legado dos Ladrões" + russian: "UNCHARTED™: Наследие воров. Коллекция" + schinese: "UNCHARTED™: 盗贼传奇合辑" + spanish: "UNCHARTED™: Colección Legado de los Ladrones" + tchinese: "UNCHARTED™: 盜賊傳奇合輯" + turkish: "UNCHARTED™: Hırsızlar Mirası Koleksiyonu" +"1659600": installDir: TMNT Cowabunga launch: - executable: tmnt_cowabunga.exe -'1659810': +"1659810": installDir: Figurine Scene Simulator launch: - executable: Figurine Scene Simulator.exe type: none -'16600': +"16600": installDir: Trials 2 Second Edition launch: - executable: launcher.exe -'1660040': - installDir: Upaon A Snake's Journey +"1660040": + installDir: "Upaon A Snake's Journey" launch: - config: oslist: windows executable: Upaon.exe type: none -'1661330': {} -'1661360': +"1661330": {} +"1661360": installDir: The Book of the Game launch: - executable: TBotG.exe type: none -'1661900': +"1661900": installDir: Human Apocalypse launch: - config: @@ -96488,7 +94484,7 @@ executable: Human Apocalypse.exe - config: oslist: macos - executable: humanapocalypse.app\\Contents\\MacOS\\humanapocalypse + executable: "humanapocalypse.app\\\\Contents\\\\MacOS\\\\humanapocalypse" - config: oslist: linux executable: Human Apocalypse @@ -96510,7 +94506,7 @@ tchinese: 人類啟示錄 thai: คติของมนุษย์ turkish: İnsan Kıyameti -'16620': +"16620": installDir: Monster Trucks Nitro launch: - config: @@ -96519,45 +94515,41 @@ - config: oslist: macos executable: MonsterTrucksNitro.app -'1662010': +"1662010": installDir: ProjectAbsentia launch: - arguments: +vid_preferbackend 1 config: - osarch: '64' + osarch: "64" oslist: windows description: with Vulkan Renderer (Recommended) - description_loc: - english: with Vulkan Renderer (Recommended) executable: wigzdoom.exe type: option1 - arguments: +vid_preferbackend 0 config: - osarch: '64' + osarch: "64" oslist: windows description: with OpenGL Renderer - description_loc: - english: with OpenGL Renderer executable: wigzdoom.exe type: option2 -'1662570': +"1662570": installDir: Rescue Party Live! launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: RescuePartyLive\\RescuePartyLive.exe + executable: "RescuePartyLive\\\\RescuePartyLive.exe" type: default nameLocalized: - koreana: '구조대작전: 라이브! / Rescue Party: Live!' + koreana: "구조대작전: 라이브! / Rescue Party: Live!" schinese: 实况!救援大作战 - tchinese: '實況!救援大作戰 Rescue Party: Live!' -'1662840': + tchinese: "實況!救援大作戰 Rescue Party: Live!" +"1662840": installDir: Parquet launch: - executable: PARQUET.exe type: none -'1663220': +"1663220": installDir: Coffee Talk Episode 2 Hibiscus & Butterfly launch: - config: @@ -96566,32 +94558,27 @@ type: default - config: oslist: macos - executable: CTHB.app\\Contents\\MacOS\\CTHB + executable: "CTHB.app\\\\Contents\\\\MacOS\\\\CTHB" type: default -'1663850': {} -'1664220': +"1663850": {} +"1664220": installDir: TRAIL OUT launch: - - arguments: '-d3d11' + - arguments: "-d3d11" config: - osarch: '64' + osarch: "64" oslist: windows description: DirectX 11 - description_loc: - english: DirectX 11 - russian: DirectX 11 (Стандартное) - executable: \\TrailOut\\Binaries\\Win64\\TrailOut-Win64-Shipping.exe + executable: "\\\\TrailOut\\\\Binaries\\\\Win64\\\\TrailOut-Win64-Shipping.exe" type: option1 - - arguments: '-d3d12' + - arguments: "-d3d12" config: - osarch: '64' + osarch: "64" oslist: windows description: DirectX 12 (RTX) - description_loc: - english: DirectX 12 (RTX) - executable: \\TrailOut\\Binaries\\Win64\\TrailOut-Win64-Shipping.exe + executable: "\\\\TrailOut\\\\Binaries\\\\Win64\\\\TrailOut-Win64-Shipping.exe" type: option2 -'1664430': +"1664430": installDir: SENSEs Midnight launch: - config: @@ -96599,27 +94586,25 @@ executable: SENSEs Midnight.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Midnight_Linux.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: SENSEs Midnight.exe type: default -'1665130': +"1665130": installDir: PAC-MAN MUSEUM PLUS launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: PAC-MAN MUSEUM+ - description_loc: - english: PAC-MAN MUSEUM+ executable: PAC-MAN MUSEUM+.exe type: default -'1665190': +"1665190": installDir: Monster Prom 3 - Monster Roadtrip launch: - config: @@ -96631,16 +94616,16 @@ - config: oslist: linux executable: MonsterRoadtrip.x86_64 -'1665260': {} -'1665270': +"1665260": {} +"1665270": installDir: Soulmate launch: - - arguments: ' -NotInstalled' + - arguments: " -NotInstalled" config: - osarch: '64' + osarch: "64" oslist: windows executable: Soulmate.exe -'1665280': +"1665280": installDir: Skábma launch: - config: @@ -96651,163 +94636,137 @@ betakey: bluebox oslist: windows description: Workaround for launching an older branch because we have renamed the executable for later builds - description_loc: - english: Workaround for launching an older branch because we have renamed the executable for later builds executable: Snowfall.exe type: default nameLocalized: schinese: 永夜:雪落 -'1665460': +"1665460": installDir: eFootball launch: - description: Launch - description_loc: - english: Launch - executable: eFootball\\Binaries\\Win64\\eFootball.exe + executable: "eFootball\\\\Binaries\\\\Win64\\\\eFootball.exe" type: none -'1666250': +"1666250": installDir: CircusElectrique launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: CircusElectrique.exe type: default -'1666640': {} -'1667130': +"1666640": {} +"1667130": installDir: Beautiful Mystic Defenders launch: - config: oslist: windows executable: BeautifulMysticDefenders.exe type: default -'1668080': +"1668080": installDir: Flåklypa Grand Prix launch: - config: oslist: windows executable: FGP_Project.exe type: default -'1668130': +"1668130": installDir: Orbit.Industries launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Lithium.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Lithium.sh type: default -'1668190': +"1668190": installDir: Once Upon a Jester launch: - executable: Once Upon a Jester.exe type: none -'1668510': +"1668510": installDir: The Legend of Heroes Trails from Zero launch: - executable: zero.exe type: default - config: - betakey: 'ph3_internal, test' + betakey: "ph3_internal, test" description: Debug - description_loc: - english: Debug executable: zero_debug.exe type: option1 - - arguments: '-latest' + - arguments: "-latest" description: Resume from the latest save - description_loc: - english: Resume from the latest save executable: zero.exe - - arguments: \"SSS Classified Files Digital Art Book.pdf\" + - arguments: "\\\"SSS Classified Files Digital Art Book.pdf\\\"" config: - ownsdlc: '2098610' + ownsdlc: "2098610" description: Open Digital Art Book - description_loc: - english: Open Digital Art Book executable: launch.bat nameLocalized: japanese: 英雄伝説 零の軌跡:改 -'1668520': +"1668520": installDir: The Legend of Heroes Trails to Azure launch: - executable: ao.exe type: default - config: - betakey: 'ph3_internal, test' + betakey: "ph3_internal, test" description: Debug - description_loc: - english: Debug executable: ao_debug.exe type: option1 - - arguments: '-latest' + - arguments: "-latest" description: Resume from the latest save - description_loc: - english: Resume from the latest save executable: ao.exe - - arguments: \"Azure Archives Art Book.pdf\" + - arguments: "\\\"Azure Archives Art Book.pdf\\\"" config: - ownsdlc: '2318450' + ownsdlc: "2318450" description: Open Official Art Book - description_loc: - english: Open Official Art Book executable: launch.bat nameLocalized: japanese: 英雄伝説 碧の軌跡:改 -'1668530': +"1668530": installDir: The Legend of Nayuta Boundless Trails launch: - config: - betakey: 'ph3_internal, test' + betakey: "ph3_internal, test" executable: nys_JP.exe type: default - config: - betakey: 'ph3_internal, test' + betakey: "ph3_internal, test" description: Debug Optimized - description_loc: - english: Debug Optimized executable: nys_debugopt_JP.exe type: option1 - config: - betakey: 'ph3_internal, test' + betakey: "ph3_internal, test" description: Debug Optimized with Z-Bias GUI - description_loc: - english: Debug Optimized with Z-Bias GUI executable: nys_debugopt_JP_zbias_gui.exe type: option3 - config: - betakey: 'ph3_internal, test' + betakey: "ph3_internal, test" description: With Z-Bias GUI - description_loc: - english: With Z-Bias GUI executable: nys_JP_zbias_gui.exe type: option2 nameLocalized: japanese: 那由多の軌跡:改 -'1668540': +"1668540": installDir: The Legend of Heroes Trails into Reverie launch: - - executable: bin\\Win64\\hnk.exe + - executable: "bin\\\\Win64\\\\hnk.exe" type: default - config: - betakey: 'ph3_internal, test' + betakey: "ph3_internal, test" description: Debug - description_loc: - english: Debug - executable: bin\\Win64\\hnk_debugopt.exe + executable: "bin\\\\Win64\\\\hnk_debugopt.exe" type: option1 - - arguments: '-latest' + - arguments: "-latest" description: Resume from the latest save - description_loc: - english: Resume from the latest save - executable: bin\\Win64\\hnk.exe + executable: "bin\\\\Win64\\\\hnk.exe" nameLocalized: japanese: 英雄伝説 創の軌跡 (はじまりのきせき) -'1668690': +"1668690": installDir: Alina of the Arena launch: - config: @@ -96821,29 +94780,27 @@ nameLocalized: schinese: 斗技场的阿利娜 Alina of the Arena tchinese: 鬥技場的阿利娜 -'1669000': +"1669000": installDir: Age of Wonders 4 launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: launcher-se\\Paradox Launcher.exe + executable: "launcher-se\\\\Paradox Launcher.exe" type: default - config: betakey: staging description: non-SE launcher - description_loc: - english: non-SE launcher executable: dowser.exe type: option1 -'1669420': +"1669420": installDir: Islets launch: - config: oslist: windows executable: Islets.exe type: default -'1670': +"1670": installDir: Iron Warriors launch: - executable: start.bat @@ -96852,47 +94809,47 @@ - description: View Iron Warriors Quickstart executable: Iron Warrior Quick Start.pdf - description: View Iron Warriors Manual (Recommended) - executable: Docs\\IW Manual.pdf -'1670870': + executable: "Docs\\\\IW Manual.pdf" +"1670870": installDir: MADiSON launch: - config: oslist: windows executable: MADiSON.exe -'16710': +"16710": installDir: Insecticide Part 1 launch: - executable: game.exe -'1671200': +"1671200": installDir: HonkaiImpact3rd launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: BH3.exe type: default -'1671210': {} -'1671360': {} -'1671410': +"1671210": {} +"1671360": {} +"1671410": installDir: Somerville launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Somerville.exe type: default -'1671480': +"1671480": installDir: ABRISS launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ABRISS - build to destroy.exe type: default nameLocalized: schinese: 一触即发 tchinese: 一触即发 -'16720': +"16720": installDir: Velvet Assassin launch: - config: @@ -96901,7 +94858,7 @@ - config: oslist: macos executable: Velvet Assassin.app -'1672310': +"1672310": installDir: Decarnation launch: - config: @@ -96909,58 +94866,54 @@ executable: Decarnation.exe nameLocalized: schinese: 心之蜃 -'1672340': +"1672340": installDir: Street Racer launch: - config: oslist: windows description: Street Racer (DOS version) - description_loc: - english: Street Racer (DOS version) executable: dosbox.exe type: option1 - config: oslist: windows description: Street Racer (16-bit version) - description_loc: - english: Street Racer (16-bit version) executable: 16bit/street racer.exe type: option2 -'1672350': +"1672350": installDir: First Samurai launch: - config: oslist: windows executable: first samurai.exe type: default -'1672360': +"1672360": installDir: Second Samurai launch: - config: oslist: windows executable: second samurai.exe type: default -'1672670': +"1672670": installDir: TSOA launch: - config: oslist: windows executable: TSOA.exe type: default -'1672970': +"1672970": installDir: MinecraftDungeons launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Dungeons.exe type: default -'16730': +"16730": installDir: Legendary launch: - - executable: binaries\\Legendary.exe + - executable: "binaries\\\\Legendary.exe" workingdir: binaries -'1673460': +"1673460": installDir: Swoon! launch: - config: @@ -96969,31 +94922,31 @@ type: default - config: oslist: macos - executable: SWOON MAC OS.app\\Contents\\MacOS\\Swoon! Earth Escape -'1674640': + executable: "SWOON MAC OS.app\\\\Contents\\\\MacOS\\\\Swoon! Earth Escape" +"1674640": installDir: XEL launch: - config: oslist: windows executable: XEL.exe type: default -'1674780': +"1674780": installDir: Lone Fungus launch: - config: oslist: windows executable: Lone Fungus.exe type: default -'1674820': +"1674820": installDir: TFC The Fertile Crescent launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: The Fertile Crescent.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: game.x86_64 type: default @@ -97001,137 +94954,107 @@ oslist: macos executable: Build/game.app type: default -'1675680': {} -'1675900': +"1675680": {} +"1675900": installDir: warlander launch: - - arguments: '--exec=\"warlander.exe\" --argv=\"\"' + - arguments: "--exec=\\\"warlander.exe\\\" --argv=\\\"\\\"" config: betakey: release_candidate - osarch: '64' + osarch: "64" oslist: windows description: Play Warlander - description_loc: - english: Play Warlander - japanese: Warlander をプレイ executable: launcher.exe - config: betakey: testing_gbtn libra_external preview_event preview_event_jp - osarch: '64' + osarch: "64" oslist: windows description: Play Warlander - description_loc: - english: Play Warlander - japanese: Warlander をプレイ executable: warlander.exe - - arguments: '--exec=\"warlander.exe\" --argv=\"\"' + - arguments: "--exec=\\\"warlander.exe\\\" --argv=\\\"\\\"" config: betakey: ds_testing_compat - osarch: '64' + osarch: "64" oslist: windows description: Play Warlander - description_loc: - english: Play Warlander - japanese: Warlander をプレイ executable: sbs.exe - - arguments: '--exec=\"warlander.exe\" --argv=\"\"' + - arguments: "--exec=\\\"warlander.exe\\\" --argv=\\\"\\\"" config: - betakey: >- - ds_testing dev_testing libra_tl_latest_build libra_tl_dev_test_play open_beta libra2_latest_build_develop_opt - libra2_daily_develop_opt - osarch: '64' + betakey: ds_testing dev_testing libra_tl_latest_build libra_tl_dev_test_play open_beta libra2_latest_build_develop_opt libra2_daily_develop_opt + osarch: "64" oslist: windows description: Play Warlander - description_loc: - english: Play Warlander - japanese: Warlander をプレイ executable: launcher.exe - config: - betakey: >- - ds_testing dev_testing open_beta ds_testing_compat libra_tl_latest_build libra_tl_dev_test_play - libra2_daily_develop_opt libra2_latest_build_develop_opt - osarch: '64' + betakey: ds_testing dev_testing open_beta ds_testing_compat libra_tl_latest_build libra_tl_dev_test_play libra2_daily_develop_opt libra2_latest_build_develop_opt + osarch: "64" oslist: windows - description: 'Play Warlander (TestBuild : DevelopOpt)' - description_loc: - english: 'Play Warlander (TestBuild : DevelopOpt)' - japanese: Warlander をプレイ (DevelopOptビルド) - executable: dev\\developopt\\warlander.exe + description: "Play Warlander (TestBuild : DevelopOpt)" + executable: "dev\\\\developopt\\\\warlander.exe" - config: - betakey: >- - ds_testing dev_testing open_beta ds_testing_compat libra_tl_latest_build libra_tl_dev_test_play - libra2_daily_develop_opt libra2_latest_build_develop_opt - osarch: '64' + betakey: ds_testing dev_testing open_beta ds_testing_compat libra_tl_latest_build libra_tl_dev_test_play libra2_daily_develop_opt libra2_latest_build_develop_opt + osarch: "64" oslist: windows - description: 'Play Warlander (TestBuild : Profile)' - description_loc: - english: 'Play Warlander (TestBuild : Profile)' - japanese: Warlander をプレイ (Profileビルド) - executable: dev\\profile\\warlander.exe - - arguments: '--exec=\"warlander.exe\" --argv=\"--dev\"' + description: "Play Warlander (TestBuild : Profile)" + executable: "dev\\\\profile\\\\warlander.exe" + - arguments: "--exec=\\\"warlander.exe\\\" --argv=\\\"--dev\\\"" config: betakey: libra_tl_sentry - osarch: '64' + osarch: "64" oslist: windows description: Sentry Warlander - description_loc: - english: Sentry Warlander - japanese: SentryからWarlanderを起動 executable: launcher.exe - - arguments: '--exec=\"dev\\profile\\warlander.exe\" --working-directory=\"..\\..\\\" --argv=\"--dev\"' + - arguments: "--exec=\\\"dev\\\\profile\\\\warlander.exe\\\" --working-directory=\\\"..\\\\..\\\\\\\" --argv=\\\"--dev\\\"" config: betakey: ds_testing dev_testing libra_tl_latest_build libra_tl_dev_test_play open_beta - osarch: '64' + osarch: "64" oslist: windows - description: 'Play Warlander (TestBuild : Profile with Sentry)' - description_loc: - english: 'Play Warlander (TestBuild : Profile with Sentry)' - japanese: Warlander をプレイ (Profileビルド Sentry有効) + description: "Play Warlander (TestBuild : Profile with Sentry)" executable: launcher.exe -'1676130': +"1676130": installDir: Deadlink launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Deadlink.exe type: default -'1676580': +"1676580": installDir: My Stepmom is a Futanari launch: - config: oslist: windows executable: MyStepmomIsAFutanari.exe type: default -'1676840': +"1676840": installDir: For The King II launch: - executable: For The King II.exe nameLocalized: schinese: 为了吾王II / For The King II tchinese: 為了吾王 II / For the King II -'1676910': +"1676910": installDir: Onde launch: - config: oslist: windows executable: Onde.exe type: default -'1677280': +"1677280": installDir: Company of Heroes 3 launch: - - arguments: '-crash_on_initlist_failure' + - arguments: "-crash_on_initlist_failure" executable: RelicCoH3.exe type: default -'1677350': +"1677350": installDir: PGA Tour launch: - - executable: 'link2ea://launchgame/1677350?platform=steam&theme=talladega' -'1677740': + - executable: "link2ea://launchgame/1677350?platform=steam&theme=talladega" +"1677740": installDir: Stumble Guys launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Stumble Guys.exe type: default @@ -97139,49 +95062,45 @@ oslist: macos executable: stumble.app type: default -'1677770': +"1677770": installDir: The Case of the Golden Idol launch: - executable: game.exe type: default -'1677970': {} -'1678420': +"1677970": {} +"1678420": installDir: Blade Runner Enhanced Edition launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: BladeRunnerRemastered.exe type: default - - arguments: '--no-console -c \"scummvm-bladerunner.ini\" bladerunner' + - arguments: "--no-console -c \\\"scummvm-bladerunner.ini\\\" bladerunner" config: - osarch: '64' + osarch: "64" oslist: windows description: Blade Runner Classic - description_loc: - english: Blade Runner Classic - executable: Classic\\ScummVM\\ScummVM.exe + executable: "Classic\\\\ScummVM\\\\ScummVM.exe" type: option1 - workingdir: Classic\\ScummVM\\ - - arguments: '--no-console -c \"scummvm-bladerunner.ini\" bladerunner-rc' + workingdir: "Classic\\\\ScummVM\\\\" + - arguments: "--no-console -c \\\"scummvm-bladerunner.ini\\\" bladerunner-rc" config: - osarch: '64' + osarch: "64" oslist: windows description: Blade Runner Classic with restored content - description_loc: - english: Blade Runner Classic with restored content - executable: Classic\\ScummVM\\ScummVM.exe + executable: "Classic\\\\ScummVM\\\\ScummVM.exe" type: option1 - workingdir: Classic\\ScummVM\\ -'1678430': + workingdir: "Classic\\\\ScummVM\\\\" +"1678430": installDir: PowerSlave Exhumed launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: anubis_Shipping_Steam_x64.exe type: default -'1679210': +"1679210": installDir: The Spirit And The Mouse launch: - config: @@ -97190,16 +95109,16 @@ type: default - config: oslist: macos - executable: TheSpiritAndTheMouse.app\\Contents\\MacOS\\TheSpiritAndTheMouse + executable: "TheSpiritAndTheMouse.app\\\\Contents\\\\MacOS\\\\TheSpiritAndTheMouse" type: default -'1679290': +"1679290": installDir: Fire & Maneuver launch: - config: oslist: windows executable: Fire & Maneuver.exe type: default -'1679870': +"1679870": installDir: Arcana Heat and Cold. Season 2 launch: - config: @@ -97207,81 +95126,69 @@ executable: nw.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: nw type: default -'1680340': +"1680340": installDir: Succubus With Guns launch: - config: oslist: windows description: Launch - description_loc: - english: Launch executable: Succubus With Guns.exe type: none -'1680550': +"1680550": installDir: Impact Point launch: - executable: Impact Point.exe type: default -'1680880': +"1680880": installDir: FORSPOKEN launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: FORSPOKEN.exe type: default - config: betakey: beta - osarch: '64' + osarch: "64" oslist: windows description: Debug version(DiscRelease) - description_loc: - english: Debug version(DiscRelease) executable: FORSPOKENd.exe type: option1 - config: betakey: theta - osarch: '64' + osarch: "64" oslist: windows description: Debug version(DiscRelease) - description_loc: - english: Debug version(DiscRelease) executable: FORSPOKENd.exe type: option1 - config: betakey: epsilon - osarch: '64' + osarch: "64" oslist: windows description: Debug version(DiscRelease) - description_loc: - english: Debug version(DiscRelease) executable: FORSPOKENd.exe type: option1 - config: betakey: weta - osarch: '64' + osarch: "64" oslist: windows description: Debug version(DiscRelease) - description_loc: - english: Debug version(DiscRelease) executable: FORSPOKENd.exe type: option1 - config: betakey: feta - osarch: '64' + osarch: "64" oslist: windows description: Debug version(DiscRelease) - description_loc: - english: Debug version(DiscRelease) executable: FORSPOKENd.exe type: option1 nameLocalized: japanese: FORSPOKEN -'16810': +"16810": installDir: Civilization IV Colonization launch: - config: @@ -97291,7 +95198,7 @@ oslist: macos description: Launch executable: Colonization.app -'1681160': +"1681160": installDir: Piratopia launch: - config: @@ -97302,78 +95209,78 @@ oslist: macos executable: Piratopia.app/Contents/MacOS/Piratopia type: none -'1681430': {} -'1681880': +"1681430": {} +"1681880": installDir: NHRA Championship Drag Racing Speed For All launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: NHRA\\Binaries\\Win64\\NHRA-Win64-Shipping.exe + executable: "NHRA\\\\Binaries\\\\Win64\\\\NHRA-Win64-Shipping.exe" type: default - config: betakey: internal_debug - osarch: '64' + osarch: "64" oslist: windows - executable: NHRA\\Binaries\\Win64\\NHRA-Win64-DebugGame.exe + executable: "NHRA\\\\Binaries\\\\Win64\\\\NHRA-Win64-DebugGame.exe" type: default - config: betakey: internal_testing oslist: windows - executable: NHRA\\Binaries\\Win64\\NHRA-Win64-Test.exe + executable: "NHRA\\\\Binaries\\\\Win64\\\\NHRA-Win64-Test.exe" type: default - config: betakey: burnoutiteration - executable: NHRA\\Binaries\\Win64\\NHRA-Win64-Test.exe + executable: "NHRA\\\\Binaries\\\\Win64\\\\NHRA-Win64-Test.exe" type: default - config: betakey: remoteqa_testing - executable: NHRA\\Binaries\\Win64\\NHRA-Win64-Test.exe + executable: "NHRA\\\\Binaries\\\\Win64\\\\NHRA-Win64-Test.exe" - config: betakey: remoteqa_debug - executable: NHRA\\Binaries\\Win64\\NHRA-Win64-DebugGame.exe + executable: "NHRA\\\\Binaries\\\\Win64\\\\NHRA-Win64-DebugGame.exe" type: default - config: betakey: progressbuild_debug - executable: NHRA\\Binaries\\Win64\\NHRA-Win64-DebugGame.exe + executable: "NHRA\\\\Binaries\\\\Win64\\\\NHRA-Win64-DebugGame.exe" type: default - config: betakey: pr_demo - osarch: '64' + osarch: "64" oslist: windows - executable: NHRA\\Binaries\\Win64\\NHRA-Win64-Test.exe + executable: "NHRA\\\\Binaries\\\\Win64\\\\NHRA-Win64-Test.exe" type: default - config: betakey: marketing - osarch: '64' + osarch: "64" oslist: windows - executable: NHRA\\Binaries\\Win64\\NHRA-Win64-Test.exe + executable: "NHRA\\\\Binaries\\\\Win64\\\\NHRA-Win64-Test.exe" type: default - config: betakey: screenshots - osarch: '64' + osarch: "64" oslist: windows - executable: NHRA\\Binaries\\Win64\\NHRA-Win64-DebugGame.exe + executable: "NHRA\\\\Binaries\\\\Win64\\\\NHRA-Win64-DebugGame.exe" type: default - config: betakey: marketing_alternative - osarch: '64' + osarch: "64" oslist: windows - executable: NHRA\\Binaries\\Win64\\NHRA-Win64-Test.exe + executable: "NHRA\\\\Binaries\\\\Win64\\\\NHRA-Win64-Test.exe" type: default - config: betakey: marketing2 - osarch: '64' + osarch: "64" oslist: windows - executable: NHRA\\Binaries\\Win64\\NHRA-Win64-Test.exe + executable: "NHRA\\\\Binaries\\\\Win64\\\\NHRA-Win64-Test.exe" type: default - config: betakey: publisherqa_shipping - osarch: '64' + osarch: "64" oslist: windows - executable: NHRA\\Binaries\\Win64\\NHRA-Win64-Shipping.exe + executable: "NHRA\\\\Binaries\\\\Win64\\\\NHRA-Win64-Shipping.exe" type: default -'1681970': +"1681970": installDir: Luoyang launch: - config: @@ -97384,7 +95291,7 @@ oslist: macos executable: Luoyang.app/Contents/MacOS/Luoyang type: default -'1682060': +"1682060": installDir: Warriors of the Nile 2 launch: - config: @@ -97395,7 +95302,7 @@ japanese: Warriors of the Nile ~太陽の勇士~2 sc_schinese: 尼罗河勇士2 schinese: 尼罗河勇士2 -'1683100': +"1683100": installDir: Ultra Age launch: - config: @@ -97405,27 +95312,27 @@ nameLocalized: japanese: ウルトラエージ koreana: 울트라 에이지 -'1684120': +"1684120": installDir: 4 Alice Magical Autistic Girls launch: - config: oslist: windows - executable: MagicalAutisticGirls\\MagicalAutisticGirls.exe + executable: "MagicalAutisticGirls\\\\MagicalAutisticGirls.exe" type: default - config: oslist: macos - executable: MagicalAutisticGirls\\MagicalAutisticGirls.app + executable: "MagicalAutisticGirls\\\\MagicalAutisticGirls.app" type: default - config: oslist: linux - executable: MagicalAutisticGirls\\MagicalAutisticGirls.sh + executable: "MagicalAutisticGirls\\\\MagicalAutisticGirls.sh" type: default - config: - osarch: '32' + osarch: "32" oslist: windows - executable: MagicalAutisticGirls\\MagicalAutisticGirls-32.exe + executable: "MagicalAutisticGirls\\\\MagicalAutisticGirls-32.exe" type: default -'1684170': +"1684170": installDir: Fetish Locator Week Two launch: - config: @@ -97434,95 +95341,91 @@ type: none - config: oslist: macos - executable: FetishLocatorWeek2.app\\Contents\\MacOS\\FetishLocatorWeek2 + executable: "FetishLocatorWeek2.app\\\\Contents\\\\MacOS\\\\FetishLocatorWeek2" type: none - config: oslist: linux executable: FetishLocatorWeek2.sh type: none - config: - osarch: '32' + osarch: "32" oslist: windows executable: FetishLocatorWeek2-32.exe -'1684270': - installDir: It's a wrap! +"1684270": + installDir: "It's a wrap!" launch: - executable: Itsawrap.exe type: default -'1684400': +"1684400": installDir: Best Month Ever! launch: - executable: BestMonthEver.exe type: none nameLocalized: polish: Najlepszy miesiąc życia! -'1684760': +"1684760": installDir: Two Clusters Cold Haven launch: - config: oslist: windows executable: Game.exe type: default -'1684930': +"1684930": installDir: CULTIC launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: CULTIC.exe type: default -'1685470': +"1685470": installDir: XQGZN70 launch: - executable: game.exe type: none -'1685730': +"1685730": installDir: Cynthia Hidden in the Moonshadow launch: - config: oslist: windows executable: Cynthia Hidden in the Moonshadow.exe -'1685750': +"1685750": installDir: CAPCOM FIGHTING COLLECTION launch: - executable: CapcomFightingCollection.exe nameLocalized: japanese: カプコン ファイティング コレクション -'1685870': {} -'1687700': {} -'1687760': +"1685870": {} +"1687700": {} +"1687760": installDir: Exos Heroes launch: - executable: Exos Heroes.exe -'1687950': +"1687950": installDir: P5R launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: P5R.exe - config: betakey: develop segalocaltest daily qualityassurance beta sugar qa_spice - osarch: '64' + osarch: "64" oslist: windows description: Release + minimum Debug - description_loc: - english: Release + minimum Debug executable: P5RReleaseDebug.exe - config: betakey: develop segalocaltest daily qualityassurance beta sugar qa_spice - osarch: '64' + osarch: "64" oslist: windows description: Develop version - description_loc: - english: Develop version executable: P5ROptimize.exe nameLocalized: japanese: ペルソナ5 ザ・ロイヤル koreana: 페르소나 5 더 로열 schinese: 女神异闻录5皇家版 tchinese: 女神異聞錄5皇家版 -'1687990': +"1687990": installDir: Clunky Hero launch: - config: @@ -97533,75 +95436,67 @@ executable: ClunkyHero.x86_64 - config: oslist: macos - executable: ClunkyHero.app\\Contents\\MacOS\\ClunkyHero -'1689130': + executable: "ClunkyHero.app\\\\Contents\\\\MacOS\\\\ClunkyHero" +"1689130": nameLocalized: english: MaguSphere - Magical Cannon Girls japanese: 魔砲少女のメイガスフィア schinese: 魔炮少女梅加斯菲亚 -'1689190': +"1689190": installDir: RAYZE launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: RAYZE.exe type: default -'1689270': - installDir: Raven's Hike +"1689270": + installDir: "Raven's Hike" launch: - config: oslist: windows - executable: Raven's Hike.exe + executable: "Raven's Hike.exe" type: none -'1690': +"1690": installDir: SpaceEmpiresV launch: - description: Space Empires V - executable: se5\\se5.exe -'16900': + executable: "se5\\\\se5.exe" +"16900": installDir: Ground Branch launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch - description_loc: - english: Launch executable: GroundBranch.exe type: default -'1690150': +"1690150": installDir: Futanari Vampire Girlfriend launch: - config: oslist: windows executable: FutanariVampireGirlfriend.exe type: default -'1690530': +"1690530": installDir: Yearning A Gay Story launch: - config: oslist: windows description: Launch - description_loc: - english: Launch executable: YAGS.exe type: default - config: oslist: macos description: Launch - description_loc: - english: Launch executable: YAGS.app type: default - config: oslist: linux description: Launch - description_loc: - english: Launch executable: YAGS.sh type: default -'1690710': +"1690710": installDir: Incremental Epic Hero 2 launch: - config: @@ -97614,52 +95509,46 @@ nameLocalized: japanese: インクリメンタル・エピックヒーロー2 - Incremental Epic Hero 2 schinese: 增量史诗英雄2 - Incremental Epic Hero 2 -'1691970': +"1691970": installDir: Danganronpa S Ultimate Summer Camp launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: danganronpa s ultimate summer camp.exe type: default nameLocalized: japanese: ハッピーダンガンロンパS 超高校級の南国サイコロ合宿 tchinese: 幸福槍彈辯駁S 超高中級的南國擲骰合宿 -'1692070': +"1692070": installDir: CROWZ launch: - - arguments: >- - CrowFPS\\Binaries\\Win64\\CrowFPSClient-Win64-Shipping.exe -ServerIP=75.2.116.177 -ServerPort=27015 - -NotInstalled + - arguments: "CrowFPS\\\\Binaries\\\\Win64\\\\CrowFPSClient-Win64-Shipping.exe -ServerIP=75.2.116.177 -ServerPort=27015 -NotInstalled" config: - osarch: '64' + osarch: "64" oslist: windows executable: Crowz.exe -'1692240': {} -'1692250': +"1692240": {} +"1692250": installDir: F1 22 launch: - config: oslist: windows description: F1® 22 - description_loc: - english: F1® 22 executable: F1_22.exe type: default - - arguments: '-vr' + - arguments: "-vr" config: - osarch: '64' + osarch: "64" oslist: windows description: F1® 22 - description_loc: - english: F1® 22 executable: F1_22.exe type: vr -'1692290': +"1692290": installDir: INHUMAN launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: REAL_PROJECT.exe type: default @@ -97693,23 +95582,21 @@ turkish: İNSANLIK DIŞI ukrainian: НЕЛЮДСЬКИЙ vietnamese: CON NGƯỜI -'1692510': +"1692510": installDir: Boo Party launch: - config: oslist: windows description: Launch Boo Party - description_loc: - english: Launch Boo Party executable: BooParty.exe type: default -'1693280': +"1693280": installDir: Supplice launch: - executable: supplice.exe type: none -'1693350': {} -'1693980': +"1693350": {} +"1693980": installDir: Dead Space (2023) launch: - executable: Dead Space.exe @@ -97717,53 +95604,53 @@ nameLocalized: schinese: 死亡空间 tchinese: 《絕命異次元》 -'1694600': +"1694600": installDir: THE HOUSE OF THE DEAD Remake launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: The House of the Dead Remake.exe type: default -'1694610': +"1694610": installDir: Beku launch: - config: oslist: windows executable: Beku.exe type: none -'1695510': +"1695510": installDir: MagicalDropDX launch: - executable: magicalDropDX.exe type: none -'1695680': - installDir: Lunar's Chosen +"1695680": + installDir: "Lunar's Chosen" launch: - config: oslist: windows executable: LunarsChosen.exe type: default -'1695830': - installDir: Baldur's Gate - Dark Alliance +"1695830": + installDir: "Baldur's Gate - Dark Alliance" launch: - config: oslist: windows - executable: Baldur's Gate - Dark Alliance.exe + executable: "Baldur's Gate - Dark Alliance.exe" - config: oslist: macos - executable: Baldur's Gate - Dark Alliance.app/Contents/MacOS/Baldur's Gate - Dark Alliance - workingdir: Baldur's Gate - Dark Alliance.app + executable: "Baldur's Gate - Dark Alliance.app/Contents/MacOS/Baldur's Gate - Dark Alliance" + workingdir: "Baldur's Gate - Dark Alliance.app" - config: oslist: linux - executable: Baldur's Gate - Dark Alliance -'1696080': + executable: "Baldur's Gate - Dark Alliance" +"1696080": installDir: Deadwater Saloon launch: - config: oslist: windows executable: Deadwater Saloon.exe -'1696220': +"1696220": installDir: FixFox launch: - config: @@ -97772,7 +95659,7 @@ - config: oslist: macos executable: FixFox.app -'1697400': +"1697400": installDir: House of Sin launch: - config: @@ -97782,20 +95669,18 @@ - config: betakey: test description: Launch QA Branch - description_loc: - english: Launch QA Branch executable: HouseofSinQASteam.exe type: default -'1697700': - installDir: Who's Lila +"1697700": + installDir: "Who's Lila" launch: - config: oslist: windows executable: WhosLila.exe type: default nameLocalized: - schinese: 莱拉是谁 Who's Lila? -'1697760': + schinese: "莱拉是谁 Who's Lila?" +"1697760": installDir: DC League of Super Pets launch: - config: @@ -97803,20 +95688,20 @@ executable: DC League of Super Pets.exe type: none nameLocalized: - arabic: 'دوري الحیوانات الخارقة DC: مغامرات كريبتو وآيس' - brazilian: 'DC Liga dos Superpets: As Aventuras de Krypto e Ace' - danish: 'DC League af Super Kæledyrene: Krypto og Aces eventyr' - dutch: 'DC Club van Super-Pets: De avonturen van Krypto en Ace' - finnish: 'DC Super Lemmikien: Krypton ja Ässän seikkailuja' - french: 'DC Krypto Super-Chien: Les aventures de Krypto et Ace' - german: 'DC League of Super-Pets: Die Abenteuer von Krypto und Ace' - italian: 'DC League of Super-Pets: Le avventure di Krypto e Asso' - polish: 'DC Liga Super-Pets: Przygody Krypto I Asa' - russian: 'DC лига Суперпитомцы: Приключения Крипто и Туза' - spanish: 'DC Liga de Supermascotas: Aventuras de Krypto & Ace' - swedish: 'DC League of Super-Pets: Krypto och Aces äventyr' -'1697770': {} -'1697940': + arabic: "دوري الحیوانات الخارقة DC: مغامرات كريبتو وآيس" + brazilian: "DC Liga dos Superpets: As Aventuras de Krypto e Ace" + danish: "DC League af Super Kæledyrene: Krypto og Aces eventyr" + dutch: "DC Club van Super-Pets: De avonturen van Krypto en Ace" + finnish: "DC Super Lemmikien: Krypton ja Ässän seikkailuja" + french: "DC Krypto Super-Chien: Les aventures de Krypto et Ace" + german: "DC League of Super-Pets: Die Abenteuer von Krypto und Ace" + italian: "DC League of Super-Pets: Le avventure di Krypto e Asso" + polish: "DC Liga Super-Pets: Przygody Krypto I Asa" + russian: "DC лига Суперпитомцы: Приключения Крипто и Туза" + spanish: "DC Liga de Supermascotas: Aventuras de Krypto & Ace" + swedish: "DC League of Super-Pets: Krypto och Aces äventyr" +"1697770": {} +"1697940": installDir: The Whisperer launch: - config: @@ -97824,8 +95709,8 @@ executable: The Whisperer.exe - config: oslist: macos - executable: Contents\\MacOS\\The Whisperer -'1698220': + executable: "Contents\\\\MacOS\\\\The Whisperer" +"1698220": installDir: Teslagrad 2 launch: - config: @@ -97833,52 +95718,47 @@ executable: Teslagrad 2.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Teslagrad 2.x86_64 type: default -'1698960': +"1698960": installDir: Paper Lily - Project Kat launch: - config: oslist: windows description: Play Project Kat - description_loc: - english: Play Project Kat executable: ProjectKat.exe type: default -'1699200': +"1699200": installDir: ZC2 launch: - executable: ShooterGame2/Binaries/Win64/ShooterGameClient-Win64-Shipping.exe type: none -'1700': +"1700": installDir: Arx Fatalis launch: - executable: arx.bat type: none -'1700220': +"1700220": installDir: Ultimate Vitality of Imagination launch: - executable: THUVoI.d3d11.exe type: default - description: Launch with Direct3D 9 (Compatible with older devices) - description_loc: - english: Launch with Direct3D 9 (Compatible with older devices) - schinese: 通过 Direct3D 9 启动(兼容较旧的设备) executable: THUVoI.exe -'1700870': +"1700870": installDir: Clanfolk launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Clanfolk.exe type: default nameLocalized: schinese: 族人 Clanfolk tchinese: 族人 Clanfolk -'1700890': +"1700890": installDir: Asteroids Recharged launch: - executable: Asteroids Recharged.exe @@ -97889,39 +95769,35 @@ - config: oslist: macos executable: asteroidsrecharged.app -'1701300': +"1701300": installDir: Violet Girl launch: - config: oslist: windows executable: VioletGirl.exe type: default -'1701380': +"1701380": installDir: Cricket 22 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: cricket22.exe type: default -'1701460': +"1701460": installDir: HipWitch launch: - config: oslist: windows description: HipWitch Windows Build - description_loc: - english: HipWitch Windows Build executable: HipWitch.exe type: default - config: oslist: macos description: HipWitch Mac Build - description_loc: - english: HipWitch Mac Build executable: HipWitch.app type: default -'1701520': +"1701520": installDir: Afterimage launch: - config: @@ -97934,29 +95810,29 @@ sc_schinese: 心渊梦境 schinese: 心渊梦境 tchinese: 心淵夢境 -'1701660': +"1701660": installDir: Demons Rise Up! launch: - executable: DemonsRiseUp.exe -'1701800': +"1701800": installDir: Lunistice launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Lunistice.exe -'1701840': {} -'1702010': +"1701840": {} +"1702010": installDir: Sengoku Dynasty launch: - - arguments: '-PLATFORM=STEAM' + - arguments: "-PLATFORM=STEAM" config: oslist: windows executable: SengokuDynasty.exe type: default nameLocalized: schinese: 战国王朝 -'1702330': +"1702330": installDir: Rune Factory 5 launch: - config: @@ -98017,59 +95893,59 @@ koreana: 룬 팩토리 5 schinese: 符文工厂5 tchinese: 符文工廠5 -'1703070': +"1703070": installDir: Airborne Ranger launch: - - arguments: '-conf dosbox.conf -conf win.conf -noconsole' + - arguments: "-conf dosbox.conf -conf win.conf -noconsole" config: oslist: windows - executable: dosbox\\dosbox.exe + executable: "dosbox\\\\dosbox.exe" type: default - - arguments: '-conf dosbox.conf -conf osx.conf -noconsole' + - arguments: "-conf dosbox.conf -conf osx.conf -noconsole" config: oslist: macos executable: DOSBox/dosbox.app/Contents/MacOS/DOSBox type: default -'1703080': +"1703080": installDir: Strike Eagle launch: - - arguments: '-conf dosbox.conf -conf win.conf -noconsole' + - arguments: "-conf dosbox.conf -conf win.conf -noconsole" config: oslist: windows - executable: dosbox\\dosbox.exe + executable: "dosbox\\\\dosbox.exe" type: default - - arguments: '-conf dosbox.conf -conf osx.conf -noconsole' + - arguments: "-conf dosbox.conf -conf osx.conf -noconsole" config: oslist: macos executable: DOSBox/dosbox.app/Contents/MacOS/DOSBox type: default -'1703090': +"1703090": installDir: Solo Flight launch: - - arguments: '-conf dosbox.conf -conf win.conf -noconsole' + - arguments: "-conf dosbox.conf -conf win.conf -noconsole" config: oslist: windows - executable: dosbox\\dosbox.exe + executable: "dosbox\\\\dosbox.exe" type: default - - arguments: '-conf dosbox.conf -conf osx.conf -noconsole' + - arguments: "-conf dosbox.conf -conf osx.conf -noconsole" config: oslist: macos executable: DOSBox/dosbox.app/Contents/MacOS/DOSBox type: default -'1703100': +"1703100": installDir: Crusade in Europe launch: - - arguments: '-conf dosbox.conf -conf win.conf -noconsole' + - arguments: "-conf dosbox.conf -conf win.conf -noconsole" config: oslist: windows - executable: dosbox\\dosbox.exe + executable: "dosbox\\\\dosbox.exe" type: default - - arguments: '-conf dosbox.conf -conf osx.conf -noconsole' + - arguments: "-conf dosbox.conf -conf osx.conf -noconsole" config: oslist: macos executable: DOSBox/dosbox.app/Contents/MacOS/DOSBox type: default -'1703340': +"1703340": installDir: The Stanley Parable Ultra Deluxe launch: - config: @@ -98084,33 +95960,33 @@ oslist: macos executable: TSPUD.app/Contents/MacOS/The Stanley Parable_ Ultra Deluxe type: default -'1704620': +"1704620": installDir: Harrier Jump Jet launch: - - arguments: '-conf dosbox.conf -conf win.conf -noconsole' + - arguments: "-conf dosbox.conf -conf win.conf -noconsole" config: oslist: windows - executable: dosbox\\dosbox.exe + executable: "dosbox\\\\dosbox.exe" type: default - - arguments: '-conf dosbox.conf -conf osx.conf -noconsole' + - arguments: "-conf dosbox.conf -conf osx.conf -noconsole" config: oslist: macos executable: DOSBox/dosbox.app/Contents/MacOS/DOSBox type: default -'1704630': +"1704630": installDir: Dogfight 80 Years of Aerial Warfare launch: - - arguments: '-conf dosbox.conf -conf win.conf -noconsole' + - arguments: "-conf dosbox.conf -conf win.conf -noconsole" config: oslist: windows - executable: dosbox\\dosbox.exe + executable: "dosbox\\\\dosbox.exe" type: default - - arguments: '-conf dosbox.conf -conf osx.conf -noconsole' + - arguments: "-conf dosbox.conf -conf osx.conf -noconsole" config: oslist: macos executable: DOSBox/dosbox.app/Contents/MacOS/DOSBox type: default -'1705580': +"1705580": installDir: SiNKR 3 launch: - config: @@ -98129,83 +96005,81 @@ japanese: SiNKR 3 / シズめル 3 schinese: SiNKR 3 / 冰钩 3 tchinese: SiNKR 3 / 冰钩 3 -'1705720': {} -'1706170': +"1705720": {} +"1706170": installDir: Dark Crypt launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: DarkCrypt.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: DarkCrypt.x86_64 type: default - config: oslist: macos - executable: Dark Crypt.app\\Contents\\MacOS\\Dark Crypt + executable: "Dark Crypt.app\\\\Contents\\\\MacOS\\\\Dark Crypt" type: default -'1707550': +"1707550": installDir: Granny 3 launch: - config: oslist: windows executable: Granny 3.exe type: default -'1707620': +"1707620": installDir: GAZZLERS launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch - description_loc: - english: Launch executable: GAZZLERS.exe type: openxr nameLocalized: japanese: ガズラーズ koreana: 개즐러 schinese: 油老虎 -'17080': +"17080": installDir: Tribes launch: - - arguments: '-hostx=45.79.222.67' - executable: binaries\\win32\\TribesAscend.exe + - arguments: "-hostx=45.79.222.67" + executable: "binaries\\\\win32\\\\TribesAscend.exe" type: none -'1708010': +"1708010": installDir: Artemis launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Artemis.exe type: default -'1708520': +"1708520": installDir: F1Manager2022 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: F1Manager22.exe type: default -'1708550': +"1708550": installDir: Cassiodora launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: projectCassiodora.exe type: default - - arguments: '-steamdeck -vulkan' + - arguments: "-steamdeck -vulkan" config: - osarch: '64' + osarch: "64" oslist: linux executable: projectCassiodora.exe type: default -'1708800': +"1708800": installDir: COTTOn 2 Saturn Tribute launch: - config: @@ -98231,7 +96105,7 @@ swedish: COTTOn 2 - Saturn hyllning tchinese: 小魔女 2 Saturn 致敬精選輯 turkish: COTTOn 2 Satürn’e Övgü -'1708810': +"1708810": installDir: COTTOn Boomerang Saturn Tribute launch: - config: @@ -98257,7 +96131,7 @@ swedish: COTTOn Boomerang - Saturn hyllning tchinese: 小魔女Boomerang Saturn 致敬精選輯 turkish: COTTOn Boomerang Satürn’e Övgü -'1708820': +"1708820": installDir: Guardian Force Saturn Tribute launch: - config: @@ -98283,7 +96157,7 @@ swedish: Guardian Force - Saturn hyllning tchinese: 守護者 Saturn 致敬精選輯 turkish: Guardian Force Satürn’e Övgü -'1709550': +"1709550": installDir: Schizm Mysterious Journey launch: - config: @@ -98291,8 +96165,8 @@ executable: playgame.exe type: default nameLocalized: - polish: 'Schizm: Prawdziwe Wyzwanie' -'1709730': + polish: "Schizm: Prawdziwe Wyzwanie" +"1709730": installDir: Beyond The Edge Of Owlsgard launch: - config: @@ -98307,37 +96181,31 @@ oslist: linux executable: Owlsgard type: default -'17100': +"17100": installDir: Children of the Nile launch: - executable: cotn.exe -'1710170': +"1710170": installDir: Blade of Darkness launch: - config: oslist: windows description: (recommended) - description_loc: - english: (recommended) - executable: bin\\bin\\Blade.exe + executable: "bin\\\\bin\\\\Blade.exe" type: option1 - workingdir: bin\\bin + workingdir: "bin\\\\bin" - config: oslist: windows description: (old version) - description_loc: - english: (old version) - executable: classic\\Bin\\Blade.exe + executable: "classic\\\\Bin\\\\Blade.exe" type: option1 - workingdir: classic\\Bin + workingdir: "classic\\\\Bin" - config: oslist: windows description: configurator (old version) - description_loc: - english: configurator (old version) - executable: classic\\Bin\\nglide_config.exe + executable: "classic\\\\Bin\\\\nglide_config.exe" type: config - workingdir: classic\\Bin + workingdir: "classic\\\\Bin" - config: oslist: linux executable: bin/bin/Blade @@ -98347,13 +96215,13 @@ executable: Blade.app type: default nameLocalized: - french: 'Severance: Blade of Darkness' - german: 'Severance: Blade of Darkness' - italian: 'Severance: Blade of Darkness' + french: "Severance: Blade of Darkness" + german: "Severance: Blade of Darkness" + italian: "Severance: Blade of Darkness" schinese: 黑暗之刃 - spanish: 'Blade: The Edge of Darkness' + spanish: "Blade: The Edge of Darkness" tchinese: 黑暗之刃 -'1710540': +"1710540": installDir: Fall of Porcupine launch: - config: @@ -98363,27 +96231,27 @@ nameLocalized: schinese: 豪猪镇之秋 tchinese: 豪豬鎮之秋 -'1710580': +"1710580": installDir: MotoGP™22 launch: - executable: motogp22.exe type: none -'1711700': {} -'1711950': +"1711700": {} +"1711950": installDir: GWENT Rogue Mage launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: REDprelauncher.exe type: default nameLocalized: japanese: グウェント:ローグメイジ - koreana: '궨트: 방랑 마법사' - polish: 'GWINT: Mag Renegat' - russian: 'ГВИНТ: Маг-Отступник' + koreana: "궨트: 방랑 마법사" + polish: "GWINT: Mag Renegat" + russian: "ГВИНТ: Маг-Отступник" tchinese: 《昆特牌:異始法師》 -'1712390': +"1712390": installDir: Martial Law launch: - config: @@ -98398,63 +96266,61 @@ oslist: macos executable: Martial Law.app type: default -'1712830': - installDir: Baldi's Basics Classic Remastered +"1712830": + installDir: "Baldi's Basics Classic Remastered" launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: BALDI.exe - config: - osarch: '64' + osarch: "64" oslist: linux executable: BALDI.x86_64 - config: oslist: macos executable: BALDI.app -'1712840': +"1712840": installDir: Pawpaw launch: - config: oslist: windows description: Shipping - description_loc: - english: Shipping - executable: Binaries\\Win32\\Launcher.exe + executable: "Binaries\\\\Win32\\\\Launcher.exe" type: option1 nameLocalized: - french: 'Tiny Tina et la Forteresse du Dragon: Une aventure merveilleuse' - german: 'Tiny Tinas Sturm auf die Drachenfestung: Ein einmaliges Wonderlands-Abenteuer' - italian: 'Assalto alla Rocca del Drago di Tiny Tina: Un''avventura unica nelle Wonderlands' + french: "Tiny Tina et la Forteresse du Dragon: Une aventure merveilleuse" + german: "Tiny Tinas Sturm auf die Drachenfestung: Ein einmaliges Wonderlands-Abenteuer" + italian: "Assalto alla Rocca del Drago di Tiny Tina: Un'avventura unica nelle Wonderlands" japanese: タイニー・ティナとドラゴンの城塞 ~ワンダーランズで一発限りの大冒険! - koreana: '타이니 티나의 드래곤 요새 습격: 원더랜드 원 샷 어드벤처' - spanish: 'Tina Chiquitina asalta la mazmorra del dragón: una aventura única' + koreana: "타이니 티나의 드래곤 요새 습격: 원더랜드 원 샷 어드벤처" + spanish: "Tina Chiquitina asalta la mazmorra del dragón: una aventura única" tchinese: 奇幻樂園大冒險之小蒂娜強襲龍堡 -'1713610': +"1713610": installDir: Purrgatory launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: purrgatory.exe type: none -'1713720': +"1713720": installDir: Wall of insanity launch: - config: oslist: windows executable: WallOfInsanity/Wall Of Insanity.exe type: default -'1713810': +"1713810": installDir: Lumencraft launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Lumencraft.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Lumencraft.x86_64 type: default @@ -98464,11 +96330,11 @@ type: default nameLocalized: schinese: 深岩破裂者 -'17140': +"17140": installDir: Hinterland launch: - executable: Hinterland.exe -'1714040': +"1714040": installDir: Super Auto Pets launch: - config: @@ -98476,11 +96342,11 @@ executable: Super Auto Pets.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: superautopets.x86_64 type: default -'1714180': +"1714180": installDir: Black Widow Recharged launch: - config: @@ -98493,7 +96359,7 @@ - config: oslist: linux executable: BlackWidowRecharged.x86_64 -'1714190': +"1714190": installDir: Breakout Recharged launch: - config: @@ -98506,7 +96372,7 @@ - config: oslist: linux executable: breakout_recharged.x86_64 -'1714580': +"1714580": installDir: moon launch: - config: @@ -98517,21 +96383,21 @@ oslist: macos executable: moon.app type: default -'1715130': +"1715130": installDir: Crysis Remastered launch: - config: oslist: windows - executable: Bin64\\CrysisRemastered.exe + executable: "Bin64\\\\CrysisRemastered.exe" type: default -'1715350': +"1715350": installDir: Undetected launch: - config: oslist: windows executable: ProjectSAR.exe type: default -'1715690': +"1715690": installDir: REKKR Sunken Land launch: - config: @@ -98541,10 +96407,8 @@ - config: oslist: windows description: Multiplayer Frontend - description_loc: - english: Multiplayer Frontend executable: Multiplayer GUI.exe -'1715980': +"1715980": installDir: オバケイドロ! launch: - config: @@ -98553,7 +96417,7 @@ type: default nameLocalized: japanese: オバケイドロ! -'1716120': +"1716120": installDir: mfdx launch: - config: @@ -98562,42 +96426,40 @@ type: none nameLocalized: japanese: モンスターファーム1&2 DX -'1716740': +"1716740": installDir: Starfield launch: - executable: Starfield.exe type: default -'1717020': +"1717020": installDir: Ed-0 Zombie Uprising launch: - executable: edozero.exe -'1717170': - installDir: Gentlemen's Club +"1717170": + installDir: "Gentlemen's Club" launch: - config: oslist: windows description: Launch Regular - description_loc: - english: Launch Regular executable: Gentlemens-Club.exe type: default -'1717250': {} -'1717270': +"1717250": {} +"1717270": installDir: Arkanoid-EternalBattle launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Arkanoid-EternalBattle.exe type: default -'1717410': +"1717410": installDir: Prince of Qin launch: - config: oslist: windows executable: Poq.exe type: default -'1717510': +"1717510": installDir: Time On Frog Island launch: - config: @@ -98606,43 +96468,43 @@ nameLocalized: schinese: 蛙岛时光 tchinese: 蛙岛时光 -'1717640': +"1717640": installDir: Mahokenshi launch: - config: oslist: windows executable: Mahokenshi.exe type: none -'17180': - installDir: Mosby's Confederacy +"17180": + installDir: "Mosby's Confederacy" launch: - executable: MosbysConfederacy.exe -'1718160': +"1718160": installDir: Crimzon Clover World EXplosion launch: - executable: CrimzonCloverWEX.exe type: default -'1720090': - installDir: Aspire Ina's Tale +"1720090": + installDir: "Aspire Ina's Tale" launch: - config: oslist: windows - executable: Aspire Ina's Tale.exe + executable: "Aspire Ina's Tale.exe" type: default -'1721170': +"1721170": installDir: What lies in the multiverse launch: - executable: What Lies in the Multiverse.exe -'1721470': +"1721470": installDir: Poppy Playtime launch: - - arguments: '-dx11' + - arguments: "-dx11" config: - osarch: '64' + osarch: "64" oslist: windows executable: PlaytimeLauncher/PlaytimeLauncher.exe type: default -'1721530': +"1721530": installDir: The Captain launch: - config: @@ -98657,7 +96519,7 @@ oslist: linux executable: TheCaptain type: none -'1721870': +"1721870": installDir: Neon Sundown launch: - config: @@ -98668,11 +96530,11 @@ oslist: macos executable: Neon Sundown.app type: default -'1722270': +"1722270": installDir: Innocence Or Money - Prelude launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: InnocenceOrMoney.exe type: none @@ -98681,18 +96543,18 @@ executable: InnocenceOrMoney.sh type: none - config: - osarch: '32' + osarch: "32" oslist: windows executable: InnocenceOrMoney-32.exe type: none -'1722620': +"1722620": installDir: Toree 2 launch: - config: oslist: windows executable: Toree2.exe type: none -'1723560': +"1723560": installDir: BalladsofHongye launch: - config: @@ -98702,9 +96564,9 @@ nameLocalized: english: Ballads of Hongye japanese: 東方:平野孤鴻 - schinese: '东方:平野孤鸿' - tchinese: '東方:平野孤鴻' -'1724190': + schinese: "东方:平野孤鸿" + tchinese: "東方:平野孤鴻" +"1724190": installDir: Come Home launch: - config: @@ -98712,7 +96574,7 @@ executable: ComeHome.exe type: none - config: - osarch: '32' + osarch: "32" oslist: windows executable: ComeHome-32.exe type: default @@ -98724,7 +96586,7 @@ oslist: macos executable: ComeHome.app type: default -'1724320': +"1724320": installDir: Noelle Does Her Best! launch: - executable: Game.exe @@ -98733,150 +96595,136 @@ japanese: ノエルがんばりますっ! schinese: 诺艾尔会努力的! tchinese: 諾艾爾會努力的! -'1724390': +"1724390": installDir: Power Chord launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: PowerChord.exe type: default -'1725350': +"1725350": installDir: Mari & Bayu launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Mari and Bayu The Road Home.exe nameLocalized: norwegian: Mari and Bayu - Veien Hjem -'1726120': +"1726120": installDir: Cursed to Golf launch: - config: oslist: windows executable: Cursed to Golf.exe type: default -'1726190': +"1726190": installDir: No Straight Roads launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: NoStraightRoads.exe type: default -'1726410': +"1726410": installDir: Seal of Evil launch: - executable: SOE.EXE type: none -'1726760': +"1726760": installDir: Curse Crackers For Whom the Belle Toils launch: - config: oslist: windows executable: Curse Crackers Belle.exe -'1728180': +"1728180": installDir: Astral Shipwright launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: AstralShipwright.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: AstralShipwright.sh type: default -'1729300': +"1729300": installDir: PlayForm launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: PlayForm.exe type: default -'17300': +"17300": installDir: Crysis launch: - - executable: bin32\\crysis.exe -'1730020': + - executable: "bin32\\\\crysis.exe" +"1730020": installDir: Teamkill launch: - description: Say hi to Teamguy! - description_loc: - english: Say hi to Teamguy! executable: TK.exe type: default -'1730590': +"1730590": installDir: The Entropy Centre launch: - config: oslist: windows executable: EntropyCentre.exe type: default -'1730650': +"1730650": installDir: REQUISITION launch: - arguments: +tracking SteamVR config: - osarch: '64' + osarch: "64" oslist: windows executable: Requisition.exe type: vr - config: betakey: beta - osarch: '64' + osarch: "64" oslist: windows executable: Requisition.exe type: vr - arguments: +tracking SteamVR config: betakey: alpha - osarch: '64' + osarch: "64" oslist: windows executable: Requisition.exe type: vr - arguments: +tracking Oculus config: betakey: alpha - osarch: '64' + osarch: "64" oslist: windows executable: Requisition.exe type: othervr - arguments: +tracking Oculus config: - osarch: '64' + osarch: "64" oslist: windows executable: Requisition.exe type: othervr -'1730680': +"1730680": installDir: KLONOA launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: KLONOA Phantasy Reverie Series - description_loc: - english: KLONOA Phantasy Reverie Series - japanese: 風のクロノア 1&2アンコール - koreana: 바람의 크로노아 1&2 모험의 시작 - schinese: 风之少年 克罗诺亚1&2 乘风归来 - tchinese: 風之少年 克羅諾亞1&2 乘風歸來 executable: Klonoa.exe type: option1 - config: - osarch: '64' + osarch: "64" oslist: windows - ownsdlc: '1913570' + ownsdlc: "1913570" description: KLONOA Digital Artbook & Soundtrack - description_loc: - english: KLONOA Digital Artbook & Soundtrack - japanese: 風のクロノア デジタルアートブック&サウンドトラック - koreana: 바람의 크로노아 디지털 아트북&사운드 트랙 - schinese: 风之少年 数位美术集&原声带 - tchinese: 風之少年 數位美術集&原聲帶 executable: KlonoaArtbook/KlonoaArtbook.exe type: option2 nameLocalized: @@ -98884,7 +96732,7 @@ koreana: 바람의 크로노아 1&2 모험의 시작 schinese: 风之少年 克罗诺亚 1&2 乘风归来 tchinese: 風之少年 克羅諾亞 1&2 乘風歸來 -'1730700': +"1730700": installDir: WLKRR launch: - config: @@ -98895,73 +96743,73 @@ koreana: 아바마마와 돌아온 데굴데굴~ 쫀득쫀득~ 괴혼 schinese: 人见人爱的块魂 安可+ 国王大人的小小回忆 tchinese: 人見人愛的塊魂 安可+ 國王大人的小小回憶 -'1731070': +"1731070": installDir: Asterigos launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Asterigos.exe type: default nameLocalized: schinese: 失落迷城:群星的诅咒 tchinese: Asterigos:失落迷城 -'1731270': +"1731270": installDir: Global City launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: City.exe - config: - osarch: '64' + osarch: "64" oslist: windows executable: City64.exe -'1731460': +"1731460": installDir: LEGO® Brawls launch: - config: oslist: windows executable: Brawls.exe type: default -'1732060': +"1732060": installDir: Makai Kingdom Reclaimed and Rebound launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: MakaiKingdom\\MakaiKingdom.exe + executable: "MakaiKingdom\\\\MakaiKingdom.exe" type: default workingdir: MakaiKingdom nameLocalized: japanese: ファントム・キングダム -'1732070': +"1732070": installDir: ZHP Unlosing Ranger vs. Darkdeath Evilman launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: ZHP\\ZHP.exe + executable: "ZHP\\\\ZHP.exe" type: default workingdir: ZHP nameLocalized: japanese: 絶対ヒーロー改造計画 -'1732190': +"1732190": installDir: FATAL FRAME MOBW launch: - executable: FATAL_FRAME_MOBW.exe type: none nameLocalized: - french: 'PROJECT ZERO : LA PRÊTRESSE DES EAUX NOIRES' - german: 'PROJECT ZERO: PRIESTERIN DES SCHWARZEN WASSERS' + french: "PROJECT ZERO : LA PRÊTRESSE DES EAUX NOIRES" + german: "PROJECT ZERO: PRIESTERIN DES SCHWARZEN WASSERS" japanese: 零 ~濡鴉ノ巫女~ schinese: 零 ~濡鸦之巫女~ tchinese: 零 ~濡鴉之巫女~ -'1732340': +"1732340": installDir: DEMON GAZE EXTRA launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: DEMON GAZE EXTRA.exe type: default @@ -98971,42 +96819,42 @@ koreana: 데몬 게이즈 엑스트라 schinese: 魔眼凝望EXTRA tchinese: 魔眼凝望EXTRA -'17330': +"17330": installDir: Crysis Warhead launch: - - executable: bin64\\crysis64.exe + - executable: "bin64\\\\crysis64.exe" type: none -'1733020': {} -'1733240': {} -'1733300': +"1733020": {} +"1733240": {} +"1733300": installDir: My Stepmom is a Futanari 2 launch: - config: oslist: windows executable: MyStepmomIsAFutanari2.exe type: default -'1733500': +"1733500": installDir: Looking For Aliens launch: - config: oslist: windows executable: Looking For Aliens.exe type: default -'1733840': +"1733840": installDir: YurukillTheCalumniationGames launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Yurukill.exe type: default nameLocalized: - english: 'Yurukill: The Calumniation Games' - french: 'Yurukill: The Calumniation Games' - german: 'Yurukill: The Calumniation Games' + english: "Yurukill: The Calumniation Games" + french: "Yurukill: The Calumniation Games" + german: "Yurukill: The Calumniation Games" japanese: 冤罪執行遊戯ユルキル schinese: 冤罪执行游戏Yurukill -'1733880': +"1733880": installDir: Gunvolt Chronicles Luminous Avenger iX 2 launch: - config: @@ -99017,12 +96865,12 @@ japanese: 白き鋼鉄のX 2 schinese: 银白钢铁伊克斯 2 tchinese: 銀白鋼鐵X 2 -'1733890': +"1733890": installDir: Battle Sister launch: - executable: Battle_Sisters.exe type: vr -'1734320': +"1734320": installDir: Brutal Orchestra launch: - config: @@ -99033,17 +96881,17 @@ oslist: linux executable: BrutalOrchestra.x86_64 type: default -'1734350': +"1734350": installDir: Chronomaster launch: - config: oslist: windows executable: PlayChronomaster.bat type: default - - arguments: '-conf \"dosbox_chronomaster.conf\"' + - arguments: "-conf \\\"dosbox_chronomaster.conf\\\"" config: oslist: macos - executable: DOSBox\\dosbox.app\\Contents\\MacOS\\DOSBox + executable: "DOSBox\\\\dosbox.app\\\\Contents\\\\MacOS\\\\DOSBox" type: default - config: oslist: linux @@ -99052,127 +96900,111 @@ - config: oslist: windows description: Play Demo - description_loc: - english: Play Demo executable: PlayChronomasterDemo.bat type: none - - arguments: '-conf \"Demo/dosbox_chronomaster_demo.conf\"' + - arguments: "-conf \\\"Demo/dosbox_chronomaster_demo.conf\\\"" config: oslist: macos description: Play Demo - description_loc: - english: Play Demo - executable: DOSBox\\dosbox.app\\Contents\\MacOS\\DOSBox + executable: "DOSBox\\\\dosbox.app\\\\Contents\\\\MacOS\\\\DOSBox" type: none - config: oslist: linux description: Play Demo - description_loc: - english: Play Demo executable: PlayChronomasterDemo.sh type: none -'1734390': +"1734390": installDir: The Pioneers surviving desolation launch: - executable: The Pioneers.exe -'1734680': +"1734680": installDir: INCISION launch: - config: oslist: windows executable: INCISION.exe type: default -'1735420': +"1735420": installDir: Fake Hostel launch: - config: oslist: windows executable: Fake_Hostel.exe type: none -'1736270': +"1736270": installDir: They are coming launch: - config: oslist: windows executable: They Are Coming!.exe type: default -'1736550': +"1736550": installDir: Deflector launch: - config: oslist: windows executable: Deflector.exe -'1737220': +"1737220": installDir: Myriads Renaissance launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Myriads.exe type: default -'17390': +"17390": installDir: Spore launch: - - executable: SporeBin\\SporeApp.exe + - executable: "SporeBin\\\\SporeApp.exe" - description: View Support Information - executable: Support\\EA Help\\Electronic_Arts_Technical_Support.htm -'1739000': + executable: "Support\\\\EA Help\\\\Electronic_Arts_Technical_Support.htm" +"1739000": installDir: Franchise Hockey Manager 8 launch: - config: oslist: windows description: Launch FHM 8 - description_loc: - english: Launch FHM 8 executable: fhm8.exe type: default - config: oslist: macos description: Launch FHM 8 - description_loc: - english: Launch FHM 8 executable: Franchise Hockey Manager 8.app type: default -'1739010': +"1739010": installDir: Out of the Park Baseball 23 launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch OOTP 23 - description_loc: - english: Launch OOTP 23 executable: ootp23_x64.exe type: default - config: oslist: macos description: Launch OOTP 23 - description_loc: - english: Launch OOTP 23 executable: OOTP Baseball 23.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch OOTP 23 - description_loc: - english: Launch OOTP 23 executable: ootp23.sh type: default -'1739880': +"1739880": installDir: Blood And Zombies launch: - config: oslist: windows executable: BloodAndZombies.exe type: default -'17400': +"17400": installDir: FIFA Manager 09 launch: - executable: runme.exe - description: View Support Information - executable: Support\\EA Help\\Electronic_Arts_Technical_Support.htm -'1740150': + executable: "Support\\\\EA Help\\\\Electronic_Arts_Technical_Support.htm" +"1740150": installDir: AWOL launch: - config: @@ -99183,7 +97015,7 @@ oslist: linux executable: awol type: default -'1740300': +"1740300": installDir: Smushi Come Home launch: - config: @@ -99196,12 +97028,12 @@ type: default nameLocalized: japanese: Smushi Come Home (スムシ・カム・ホーム) -'1740660': +"1740660": installDir: Miraculous launch: - executable: MiraculousRiseOfTheSphinx.exe type: default -'1740680': +"1740680": installDir: Voodoo Detective launch: - config: @@ -99216,14 +97048,14 @@ oslist: macos executable: Voodoo Detective.app/Contents/MacOS/Voodoo Detective type: none -'1740720': +"1740720": installDir: Have A Nice Death launch: - config: oslist: windows executable: HaveaNiceDeath.exe type: default -'1740730': +"1740730": installDir: Flesh Water launch: - config: @@ -99231,7 +97063,7 @@ executable: nw.exe - config: oslist: macos - executable: fleshwater.app\\Contents\\MacOS\\nwjs + executable: "fleshwater.app\\\\Contents\\\\MacOS\\\\nwjs" - config: oslist: linux executable: nw @@ -99248,95 +97080,87 @@ schinese: 血水 spanish: Agua de Carne turkish: Et suyu -'1740930': +"1740930": installDir: JellyCar Worlds launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: windows\\JellyCar Worlds.exe + executable: "windows\\\\JellyCar Worlds.exe" type: default - config: - osarch: '64' + osarch: "64" oslist: linux - executable: linux\\JellyCar Worlds.x86_64 + executable: "linux\\\\JellyCar Worlds.x86_64" type: default -'17410': +"17410": installDir: mirrors edge launch: - - executable: Binaries\\MirrorsEdge.exe + - executable: "Binaries\\\\MirrorsEdge.exe" workingdir: Binaries - description: View Support Information - executable: Support\\EA Help\\Electronic_Arts_Technical_Support.htm + executable: "Support\\\\EA Help\\\\Electronic_Arts_Technical_Support.htm" workingdir: Binaries -'1741120': +"1741120": installDir: Fantasy General launch: - - arguments: '-noconsole -conf fg-base.conf -conf fg-graphics.conf -conf fg-game.conf' + - arguments: "-noconsole -conf fg-base.conf -conf fg-graphics.conf -conf fg-game.conf" config: oslist: windows - executable: DOSBOX\\DOSBox.exe + executable: "DOSBOX\\\\DOSBox.exe" type: default - - arguments: '-conf fg-graphics.conf' + - arguments: "-conf fg-graphics.conf" config: oslist: windows description: Graphic Tool - description_loc: - english: Graphic Tool - executable: DOSBOX\\ConfigTool.exe + executable: "DOSBOX\\\\ConfigTool.exe" type: config - - arguments: '-noconsole -conf fg-base.conf -conf fg-graphics.conf -conf fg-setup.conf' + - arguments: "-noconsole -conf fg-base.conf -conf fg-graphics.conf -conf fg-setup.conf" config: oslist: windows description: Sound Setup - description_loc: - english: Sound Setup - executable: DOSBOX\\DOSBox.exe + executable: "DOSBOX\\\\DOSBox.exe" type: config -'1741130': +"1741130": installDir: Pacific General launch: - executable: PACGEN.EXE type: default nameLocalized: german: Pazifik Admiral -'1741140': +"1741140": installDir: War Wind launch: - executable: WW.EXE type: default - description: Scenario Editor - description_loc: - english: Scenario Editor executable: SCNEDIT.EXE type: editor - description: Map Editor - description_loc: - english: Map Editor - executable: Editor\\MAPEDIT.EXE + executable: "Editor\\\\MAPEDIT.EXE" type: editor workingdir: Editor -'1741150': +"1741150": installDir: War Wind II Human Onslaught launch: - executable: WARWIND2.EXE type: default nameLocalized: - german: 'War Wind II: Die Invasion' -'1742020': + german: "War Wind II: Die Invasion" +"1742020": installDir: Idol Showdown launch: - config: oslist: windows executable: Idol Showdown.exe type: none -'17430': +"17430": installDir: Need for Speed Undercover launch: - executable: nfs.exe - description: View Support Information - executable: Support\\EA Help\\Electronic_Arts_Technical_Support.htm -'1743260': + executable: "Support\\\\EA Help\\\\Electronic_Arts_Technical_Support.htm" +"1743260": installDir: Welcome to Free Will launch: - config: @@ -99347,53 +97171,39 @@ oslist: linux executable: WelcometoFreeWill.sh type: default -'1744330': +"1744330": installDir: No More Heroes 3 launch: - config: oslist: windows - description_loc: - japanese: No More Heroes 3をプレイ executable: nmh3.exe type: default - config: oslist: windows description: configuration tools - description_loc: - brazilian: ferramentas de configuração - dutch: Configuratie tools - english: configuration tools - french: les outils de configuration - german: Konfigurationstools - italian: gli strumenti di configurazione - japanese: 設定ツール - koreana: 구성 도구 - schinese: 配置工具 - spanish: herramientas de configuración - tchinese: 設定工具 executable: Launcher/Launcher.exe type: config -'1745200': +"1745200": installDir: SexyAirlines launch: - config: oslist: windows executable: SexyAirlines.exe type: default -'1745510': +"1745510": installDir: Lunacid launch: - executable: LUNACID.exe -'1745690': +"1745690": installDir: Deluge Threnody of Crashing Waves launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Deluge.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: Deluge-32.exe type: default @@ -99405,17 +97215,17 @@ oslist: macos executable: Deluge.app type: default -'17460': +"17460": installDir: Mass Effect launch: - - executable: Binaries\\MassEffect.exe + - executable: "Binaries\\\\MassEffect.exe" - description: View Support Information - executable: docs\\EA Help\\Electronic_Arts_Technical_Support.htm -'1746560': + executable: "docs\\\\EA Help\\\\Electronic_Arts_Technical_Support.htm" +"1746560": installDir: Blacken Slash launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: BlackenSlash.exe type: default @@ -99427,7 +97237,7 @@ oslist: macos executable: Blacken Slash.app type: default -'1746650': +"1746650": installDir: Paradise Trails launch: - config: @@ -99438,28 +97248,28 @@ oslist: windows executable: ParadiseTrails.exe type: vr -'17470': +"17470": installDir: Dead Space launch: - executable: Dead Space.exe - description: View Support Information - executable: Support\\EA Help\\Electronic_Arts_Technical_Support.htm -'1747030': + executable: "Support\\\\EA Help\\\\Electronic_Arts_Technical_Support.htm" +"1747030": installDir: The Trials launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TheTrials.exe type: default -'1747050': +"1747050": installDir: Sam & Max Beyond Time and Space launch: - config: oslist: windows - executable: Launcher\\Launcher.exe + executable: "Launcher\\\\Launcher.exe" type: default -'1747830': +"1747830": installDir: Blossom Tales 2 launch: - config: @@ -99467,23 +97277,23 @@ executable: BlossomTales2.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux - executable: ./BlossomTales2 + executable: "./BlossomTales2" type: default -'1747890': +"1747890": installDir: Demon Turf Neon Splash launch: - config: oslist: windows executable: Demon Turf NEON SPLASH.exe -'17480': +"17480": installDir: Command and Conquer Red Alert 3 launch: - executable: runme.exe - description: View Support Information - executable: Support\\EA Help\\Electronic_Arts_Technical_Support.htm -'1748230': + executable: "Support\\\\EA Help\\\\Electronic_Arts_Technical_Support.htm" +"1748230": installDir: RESTLESS SOUL launch: - config: @@ -99492,146 +97302,118 @@ type: default - config: oslist: macos - executable: mac.app\\Contents\\MacOS\\RESTLESS SOUL + executable: "mac.app\\\\Contents\\\\MacOS\\\\RESTLESS SOUL" type: default - config: oslist: linux executable: linux.x86_64 type: default -'1748280': {} -'1748620': {} -'1748660': +"1748280": {} +"1748620": {} +"1748660": installDir: VoiceofCardsTheForsakenMaiden launch: - executable: VoiceofCardsTheForsakenMaiden.exe nameLocalized: japanese: Voice of Cards できそこないの巫女 -'1749710': +"1749710": installDir: Legends of Murder Collection launch: - - arguments: '-noconsole -conf fullscreen.conf -conf dosbox.conf -conf launch.conf -exit' + - arguments: "-noconsole -conf fullscreen.conf -conf dosbox.conf -conf launch.conf -exit" config: oslist: windows description: full screen - description_loc: - english: full screen - executable: DOSBox\\dosbox.exe + executable: "DOSBox\\\\dosbox.exe" type: option1 - workingdir: DOSBox\\Configuration - - arguments: '-noconsole -conf 320x200.conf -conf dosbox.conf -conf launch.conf -exit' + workingdir: "DOSBox\\\\Configuration" + - arguments: "-noconsole -conf 320x200.conf -conf dosbox.conf -conf launch.conf -exit" config: oslist: windows description: windowed 320x200 - description_loc: - english: windowed 320x200 - executable: DOSBox\\dosbox.exe + executable: "DOSBox\\\\dosbox.exe" type: option1 - workingdir: DOSBox\\Configuration - - arguments: '-noconsole -conf 640x400.conf -conf dosbox.conf -conf launch.conf -exit' + workingdir: "DOSBox\\\\Configuration" + - arguments: "-noconsole -conf 640x400.conf -conf dosbox.conf -conf launch.conf -exit" config: oslist: windows description: windowed 640x400 - description_loc: - english: windowed 640x400 - executable: DOSBox\\dosbox.exe + executable: "DOSBox\\\\dosbox.exe" type: option1 - workingdir: DOSBox\\Configuration - - arguments: '-noconsole -conf 1280x800.conf -conf dosbox.conf -conf launch.conf -exit' + workingdir: "DOSBox\\\\Configuration" + - arguments: "-noconsole -conf 1280x800.conf -conf dosbox.conf -conf launch.conf -exit" config: oslist: windows description: windowed 1280x800 - description_loc: - english: windowed 1280x800 - executable: DOSBox\\dosbox.exe + executable: "DOSBox\\\\dosbox.exe" type: option1 - workingdir: DOSBox\\Configuration - - arguments: '-noconsole -conf 2560x1600.conf -conf dosbox.conf -conf launch.conf -exit' + workingdir: "DOSBox\\\\Configuration" + - arguments: "-noconsole -conf 2560x1600.conf -conf dosbox.conf -conf launch.conf -exit" config: oslist: windows description: windowed 2560x1600 - description_loc: - english: windowed 2560x1600 - executable: DOSBox\\dosbox.exe + executable: "DOSBox\\\\dosbox.exe" type: option1 - workingdir: DOSBox\\Configuration -'1749720': + workingdir: "DOSBox\\\\Configuration" +"1749720": installDir: Zombie Dinos from Planet Zeltoid launch: - - arguments: '-noconsole -conf fullscreen.conf -conf dosbox.conf -conf launch.conf -exit' + - arguments: "-noconsole -conf fullscreen.conf -conf dosbox.conf -conf launch.conf -exit" config: oslist: windows description: full screen - description_loc: - english: full screen - executable: DOSBox\\dosbox.exe + executable: "DOSBox\\\\dosbox.exe" type: option1 - workingdir: DOSBox\\Configuration - - arguments: '-noconsole -conf 320x200.conf -conf dosbox.conf -conf launch.conf -exit' + workingdir: "DOSBox\\\\Configuration" + - arguments: "-noconsole -conf 320x200.conf -conf dosbox.conf -conf launch.conf -exit" config: oslist: windows description: windowed 320x200 - description_loc: - english: windowed 320x200 - executable: DOSBox\\dosbox.exe + executable: "DOSBox\\\\dosbox.exe" type: option1 - workingdir: DOSBox\\Configuration - - arguments: '-noconsole -conf 640x400.conf -conf dosbox.conf -conf launch.conf -exit' + workingdir: "DOSBox\\\\Configuration" + - arguments: "-noconsole -conf 640x400.conf -conf dosbox.conf -conf launch.conf -exit" config: oslist: windows description: windowed 640x400 - description_loc: - english: windowed 640x400 - executable: DOSBox\\dosbox.exe + executable: "DOSBox\\\\dosbox.exe" type: option1 - workingdir: DOSBox\\Configuration - - arguments: '-noconsole -conf 1280x800.conf -conf dosbox.conf -conf launch.conf -exit' + workingdir: "DOSBox\\\\Configuration" + - arguments: "-noconsole -conf 1280x800.conf -conf dosbox.conf -conf launch.conf -exit" config: oslist: windows description: windowed 1280x800 - description_loc: - english: windowed 1280x800 - executable: DOSBox\\dosbox.exe + executable: "DOSBox\\\\dosbox.exe" type: option1 - workingdir: DOSBox\\Configuration - - arguments: '-noconsole -conf 2560x1600.conf -conf dosbox.conf -conf launch.conf -exit' + workingdir: "DOSBox\\\\Configuration" + - arguments: "-noconsole -conf 2560x1600.conf -conf dosbox.conf -conf launch.conf -exit" config: oslist: windows description: windowed 2560x1600 - description_loc: - english: windowed 2560x1600 - executable: DOSBox\\dosbox.exe + executable: "DOSBox\\\\dosbox.exe" type: option1 - workingdir: DOSBox\\Configuration -'1749750': + workingdir: "DOSBox\\\\Configuration" +"1749750": installDir: Disgaea 6 Complete launch: - executable: Disgaea6.exe - config: betakey: debug_with_pdb description: Debug - description_loc: - english: Debug executable: Disgaea6.exe type: option1 - config: betakey: debug_with_pdb description: Release - description_loc: - english: Release executable: Disgaea6R.exe type: option2 - config: betakey: release_with_pdb description: Release - description_loc: - english: Release executable: Disgaea6.exe type: option1 - config: betakey: release_with_pdb description: Debug - description_loc: - english: Debug executable: Disgaea6D.exe type: option2 nameLocalized: @@ -99639,27 +97421,27 @@ koreana: 마계전기 디스가이아6 schinese: 魔界战记 DISGAEA6 tchinese: 魔界戰記 DISGAEA6 -'17500': +"17500": installDir: Zombie Panic Source launch: - - arguments: '-game zps -steam -secure' + - arguments: "-game zps -steam -secure" config: oslist: linux executable: zps.sh type: default - - arguments: '-game zps -steam -secure' + - arguments: "-game zps -steam -secure" config: oslist: windows executable: zps.exe type: default -'1750030': {} -'1750570': +"1750030": {} +"1750570": installDir: Subway Midnight launch: - config: oslist: windows executable: SubwayMidnight/SubwayAfterMidnight.exe -'1750710': +"1750710": installDir: Boxville launch: - config: @@ -99674,92 +97456,84 @@ oslist: linux executable: Boxville.x86_64 type: default -'17510': +"17510": installDir: Source SDK Base 2007 launch: - - arguments: '-game ageofchivalry' + - arguments: "-game ageofchivalry" executable: hl2.exe - vacmodulefilename: resource\\sourceinit.dat -'1751100': +"1751100": installDir: GmodeArchivesPlus_DodonpachiDX launch: - executable: DodonpachiDX.exe type: none -'1751820': {} -'17520': +"1751820": {} +"17520": installDir: Synergy launch: - - arguments: '-game synergy -steam -novid' + - arguments: "-game synergy -steam -novid" config: oslist: windows executable: synergy.exe type: none - - arguments: '-game synergy -steam -novid' + - arguments: "-game synergy -steam -novid" config: oslist: linux executable: hl2.sh type: none - - arguments: '-game synergy -steam -novid' + - arguments: "-game synergy -steam -novid" config: oslist: macos executable: hl2.sh type: none -'1752220': +"1752220": installDir: Relumine launch: - config: oslist: windows executable: Relumine.exe type: default -'17530': +"17530": installDir: Source SDK Base 2007 launch: - - arguments: '-game diprip' + - arguments: "-game diprip" executable: hl2.exe - vacmodulefilename: resource\\sourceinit.dat -'1753410': +"1753410": installDir: King of Kinks launch: - - arguments: '-screen-width 454 -screen-height 804 -screen-fullscreen 0' + - arguments: "-screen-width 454 -screen-height 804 -screen-fullscreen 0" config: oslist: windows executable: KingOfKinks.exe type: default - - arguments: '-screen-width 454 -screen-height 804 -screen-fullscreen 0' + - arguments: "-screen-width 454 -screen-height 804 -screen-fullscreen 0" config: betakey: koks_stag oslist: windows description: King of Kinks - Staging Platform - description_loc: - english: King of Kinks - Staging Platform executable: KingOfKinks_Stag.exe type: option1 - - arguments: '-screen-width 454 -screen-height 804 -screen-fullscreen 0' + - arguments: "-screen-width 454 -screen-height 804 -screen-fullscreen 0" config: betakey: koks_dev oslist: windows description: King of Kinks - Dev Platform - description_loc: - english: King of Kinks - Dev Platform executable: KingOfKinks_Dev.exe type: option1 - - arguments: '-screen-width 454 -screen-height 804 -screen-fullscreen 0' + - arguments: "-screen-width 454 -screen-height 804 -screen-fullscreen 0" config: betakey: koks_pg oslist: windows - description: 'King of Kinks - PG Platform [Running Dev]' - description_loc: - english: 'King of Kinks - PG Platform [Running Dev]' + description: "King of Kinks - PG Platform [Running Dev]" executable: KingOfKinks_Dev.exe type: option1 -'1754150': +"1754150": installDir: Car Tuning Simulator launch: - config: oslist: windows executable: CarTuningSim.exe type: default -'1754860': +"1754860": installDir: Inside Jennifer - Season 1 launch: - executable: InsideJennifer.exe @@ -99770,7 +97544,7 @@ - config: oslist: linux executable: InsideJennifer.sh -'1754870': +"1754870": installDir: Lust Theory Season 2 launch: - config: @@ -99782,7 +97556,7 @@ - config: oslist: macos executable: LustTheory2.app -'1755030': +"1755030": installDir: Mothmen 1966 launch: - config: @@ -99791,21 +97565,21 @@ - config: oslist: macos executable: MM66.app/Contents/MacOS/Mothmen1966 -'1755300': +"1755300": installDir: Smart Factory Tycoon launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ToysWorkshop.exe type: default nameLocalized: schinese: 智能工厂大亨 Smart Factory Tycoon -'1755580': +"1755580": installDir: The Jackbox Party Starter launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: The Jackbox Party Starter.exe type: default @@ -99814,42 +97588,42 @@ executable: The Jackbox Party Starter.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Launcher.sh type: default -'1755830': {} -'1755910': +"1755830": {} +"1755910": installDir: Capcom Arcade 2nd Stadium launch: - executable: CapcomArcade2ndStadium.exe -'1756390': +"1756390": installDir: Mercs Fully Loaded launch: - config: oslist: windows executable: MercsFullyLoaded.exe -'17570': - installDir: 'pirates, vikings and knights ii' +"17570": + installDir: "pirates, vikings and knights ii" launch: - - arguments: '-steam -game ../pvkii' + - arguments: "-steam -game ../pvkii" config: oslist: windows - executable: sdkbase_pvkii\\pvkii.exe + executable: "sdkbase_pvkii\\\\pvkii.exe" type: none - - arguments: '-steam -game ../pvkii' + - arguments: "-steam -game ../pvkii" config: oslist: linux description: Launch executable: sdkbase_pvkii/pvkii.sh type: none - - arguments: '-steam -game ../pvkii' + - arguments: "-steam -game ../pvkii" config: oslist: macos description: Launch executable: sdkbase_pvkii/pvkii.sh type: none -'1757490': +"1757490": installDir: WaifuFighterFist launch: - config: @@ -99864,38 +97638,38 @@ koreana: 와이푸 파이터 F-ist schinese: 女拳主义F-ist! tchinese: 女拳主義F-ist! -'1757580': {} -'1757610': +"1757580": {} +"1757610": installDir: Puppet Master The Game launch: - config: oslist: windows executable: Puppet Master The Game.exe -'1757750': +"1757750": installDir: My Stepmom is a Futanari 3 launch: - config: oslist: windows executable: MyStepmomIsAFutanari3.exe type: default -'1757760': +"1757760": installDir: My Stepsis is a Futanari launch: - config: oslist: windows executable: MyStepsisIsAFutanari.exe type: default -'1757880': +"1757880": installDir: trip=true launch: - config: oslist: windows executable: trip=true.exe type: none -'17580': +"17580": installDir: Dystopia launch: - - arguments: '-steam' + - arguments: "-steam" config: oslist: windows executable: bin/win32/dystopia.exe @@ -99904,7 +97678,7 @@ oslist: linux executable: bin/dystopia.sh type: none -'1758910': +"1758910": installDir: Time Commando launch: - config: @@ -99915,52 +97689,48 @@ oslist: macos executable: Contents/MacOS/Launcher type: default -'1759350': +"1759350": installDir: Space Trash Scavenger launch: - config: oslist: windows description: High definition (modern gaming desktop PCs) - description_loc: - english: High definition (modern gaming desktop PCs) executable: SpaceTrashScavenger.exe type: default - config: oslist: windows description: Limited Textures (Steam Deck and lower spec systems) - description_loc: - english: Limited Textures (Steam Deck and lower spec systems) - executable: \\SpaceTrashScavengerLR\\SpaceTrashScavenger.exe -'17600': + executable: "\\\\SpaceTrashScavengerLR\\\\SpaceTrashScavenger.exe" +"17600": installDir: Out of the Park Baseball 9 launch: - executable: ootp9.exe -'1760080': +"1760080": installDir: NSFW Studio launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: NSFW Studio.exe type: default -'1760250': +"1760250": installDir: Madden NFL 23 launch: - - executable: 'link2ea://launchgame/1760250?platform=steam&theme=nfl23' -'1761270': + - executable: "link2ea://launchgame/1760250?platform=steam&theme=nfl23" +"1761270": installDir: Half-Life MMod launch: - - arguments: '-game HL1MMod' + - arguments: "-game HL1MMod" config: oslist: windows executable: hl.exe type: default - - arguments: '-game HL1MMod' + - arguments: "-game HL1MMod" config: oslist: linux executable: hl.sh type: default -'1761290': +"1761290": installDir: Japanese Rail Sim Journey to Kyoto launch: - config: @@ -99968,30 +97738,27 @@ executable: Japanese Rail Sim Journey to Kyoto.exe type: default nameLocalized: - brazilian: 'Simulador Ferroviário Japonês: Viagem a Kyoto' + brazilian: "Simulador Ferroviário Japonês: Viagem a Kyoto" japanese: 鉄道にっぽん!路線たび 叡山電車編 -'1761390': +"1761390": installDir: Hatsune Miku Project DIVA Mega Mix Plus launch: - config: oslist: windows description: Snow Cone - description_loc: - english: Snow Cone - japanese: Snow Cone executable: DivaMegaMix.exe nameLocalized: japanese: 初音ミク Project DIVA MEGA39’s+ koreana: 하츠네 미쿠 Project DIVA MEGA39’s+ schinese: 初音未来 Project DIVA MEGA39’s+ tchinese: 初音未來 Project DIVA MEGA39’s+ -'1761600': +"1761600": installDir: JETT The Far Shore launch: - config: oslist: windows executable: JETT The Far Shore.exe -'1761780': +"1761780": installDir: CreepyTale3 launch: - config: @@ -100010,7 +97777,7 @@ japanese: クリーピーテイル3:イングリッドの罪滅ぼし schinese: 惊悚故事3:英格莉忏悔录 tchinese: 惊悚故事3:英格莉忏悔录 -'1761870': +"1761870": installDir: FLASHOUT 3 launch: - config: @@ -100020,30 +97787,24 @@ - config: oslist: linux description: Launch Linux - description_loc: - english: Launch Linux executable: Flashout 3.x86_64 type: default - config: oslist: macos description: Launch Mac - description_loc: - english: Launch Mac executable: Flashout 3.app/Contents/MacOS/Flashout 3 type: default - - arguments: '-VR_ENABLED' + - arguments: "-VR_ENABLED" config: oslist: windows description: Flashout 3 VR - description_loc: - english: Flashout 3 VR executable: Flashout 3.exe type: openxr -'1762010': +"1762010": installDir: WroughtFlesh launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: WroughtFlesh.exe type: default @@ -100056,24 +97817,24 @@ executable: Wrought Flesh.app/Contents/MacOS/Wrought Flesh type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: WroughtFlesh.exe type: default -'1762570': +"1762570": installDir: Space Reign launch: - executable: Space Reign.exe -'1763060': +"1763060": installDir: Feral Flowers launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: feral.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: feral type: default @@ -100081,7 +97842,7 @@ oslist: macos executable: Feral Flowers.app/Contents/MacOS/Feral Flowers type: default -'1763150': +"1763150": installDir: Everglow launch: - config: @@ -100096,28 +97857,22 @@ oslist: linux executable: everglow.sh type: default -'1764390': +"1764390": installDir: BAD END THEATER launch: - config: oslist: windows description: Launch - description_loc: - english: Launch executable: badendtheater.exe type: default - config: oslist: macos description: Launch - description_loc: - english: Launch executable: badendtheater.app type: default - config: oslist: linux description: Launch - description_loc: - english: Launch executable: badendtheater.sh type: default nameLocalized: @@ -100133,29 +97888,29 @@ turkish: KÖTÜ SONLAR SAHNESİ ukrainian: ТЕАТР ПОГАНИХ КІНЦІВ vietnamese: NHÀ HÁT BI KẾT -'1764960': +"1764960": installDir: MikaAndSadie launch: - - executable: Mika and Sadie's Adventure.exe + - executable: "Mika and Sadie's Adventure.exe" type: none nameLocalized: japanese: ミカとサディの大冒険 -'1765520': +"1765520": installDir: Flippin Misfits launch: - config: oslist: windows executable: FlippinMisfits-Win64-Shipping.exe type: default -'1765780': +"1765780": installDir: ADACA launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ADACA.exe type: default -'1766390': +"1766390": installDir: Forward Escape the Fold launch: - config: @@ -100164,32 +97919,32 @@ type: default - config: oslist: macos - executable: Forward.app\\Contents\\MacOS\\Forward + executable: "Forward.app\\\\Contents\\\\MacOS\\\\Forward" type: default -'1766720': +"1766720": installDir: Outlanders launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Outlanders.exe -'1766740': +"1766740": installDir: Choo-Choo Charles launch: - executable: Obscure.exe type: default -'1766750': +"1766750": installDir: Spelldrifter launch: - config: oslist: windows executable: spelldrifter.exe type: default -'1767170': +"1767170": installDir: Super Bullet Break launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SuperBulletBreak.exe - config: @@ -100199,7 +97954,7 @@ japanese: スーパーバレットブレイク schinese: 超级子弹娘 tchinese: 超級子彈娘 -'1768280': +"1768280": installDir: Ozymandias launch: - config: @@ -100211,15 +97966,15 @@ type: default nameLocalized: schinese: 法老王:青铜帝国 Ozymandias -'1768550': +"1768550": installDir: ARD launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ARD.exe type: default -'1768780': +"1768780": installDir: Of Blades & Tails launch: - config: @@ -100230,9 +97985,9 @@ executable: game.x86_64 - config: oslist: macos - executable: Of Blades & Tails.app\\Contents\\MacOS\\Of Blades & Tails + executable: "Of Blades & Tails.app\\\\Contents\\\\MacOS\\\\Of Blades & Tails" type: default -'1769170': +"1769170": installDir: Shattered Pixel Dungeon launch: - config: @@ -100244,26 +97999,26 @@ type: default - config: oslist: linux - executable: bin\\Shattered Pixel Dungeon + executable: "bin\\\\Shattered Pixel Dungeon" type: default -'1769220': +"1769220": installDir: Battle Chess 4000 launch: - config: oslist: windows executable: PlayGame.bat type: default - - arguments: '-conf \"config/dosboxBC4K.conf\" -conf \"config/dosboxBC4K_single.conf\"' + - arguments: "-conf \\\"config/dosboxBC4K.conf\\\" -conf \\\"config/dosboxBC4K_single.conf\\\"" config: oslist: macos - executable: DOSBox\\dosbox.app\\Contents\\MacOS\\DOSBox + executable: "DOSBox\\\\dosbox.app\\\\Contents\\\\MacOS\\\\DOSBox" type: default - - arguments: \"-conf\" \"./config/dosboxBC4K.conf\" \"-conf\" \"./config/dosboxBC4K_single.conf\" \"-noconsole\" + - arguments: "\\\"-conf\\\" \\\"./config/dosboxBC4K.conf\\\" \\\"-conf\\\" \\\"./config/dosboxBC4K_single.conf\\\" \\\"-noconsole\\\"" config: oslist: linux executable: dosbox/dosbox type: default -'1769980': +"1769980": installDir: Mask of the Rose launch: - config: @@ -100277,136 +98032,130 @@ oslist: linux executable: Mask of the Rose type: default -'17700': +"17700": installDir: Source SDK Base launch: - - arguments: '-game insurgency -steam' + - arguments: "-game insurgency -steam" executable: hl2.exe - vacmodulefilename: resource\\sourceinit.dat -'1770080': +"1770080": installDir: Superfuse launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Superfuse.exe type: default -'1770490': +"1770490": installDir: PAW Patrol Racing launch: - executable: PAW.exe type: none nameLocalized: - arabic: 'دورية المخالب: بطولة الجائزة الكبرى ' - brazilian: 'Patrulha Canina: Grand Prix' - french: "Paw Patrol, la Pat'Patrouille\_: Grand Prix" - italian: 'PAW Patrol: Gran Premio' + arabic: "دورية المخالب: بطولة الجائزة الكبرى " + brazilian: "Patrulha Canina: Grand Prix" + french: "Paw Patrol, la Pat'Patrouille : Grand Prix" + italian: "PAW Patrol: Gran Premio" japanese: パウ・パトロール:グランプリ - koreana: '포 패트롤: 그랑 프리' - latam: 'Patrulla de Cachorros: Grand Prix' - polish: 'PSI Patrol: Grand Prix' - portuguese: 'La Patrulla Canina: Grand Prix' - russian: 'Щенячий патруль: Гран-при' + koreana: "포 패트롤: 그랑 프리" + latam: "Patrulla de Cachorros: Grand Prix" + polish: "PSI Patrol: Grand Prix" + portuguese: "La Patrulla Canina: Grand Prix" + russian: "Щенячий патруль: Гран-при" schinese: 《汪汪队立大功:锦标赛》 - spanish: 'La Patrulla Canina: Grand Prix' + spanish: "La Patrulla Canina: Grand Prix" tchinese: 汪汪隊立大功:大獎賽 - turkish: 'Pati Devriyesi: Büyük Yarış' - ukrainian: 'Щенячий патруль: Гран-прі' -'1770550': - installDir: 'Crypto Girls [18+] - SEXCoin' + turkish: "Pati Devriyesi: Büyük Yarış" + ukrainian: "Щенячий патруль: Гран-прі" +"1770550": + installDir: "Crypto Girls [18+] - SEXCoin" launch: - executable: Crypto Girls.exe type: none -'17710': +"17710": installDir: Nuclear Dawn launch: - - arguments: '-game nucleardawn -steam' + - arguments: "-game nucleardawn -steam" config: oslist: windows executable: nucleardawn.exe - - arguments: '-game nucleardawn -steam' + - arguments: "-game nucleardawn -steam" config: oslist: macos description: osx executable: nd_osx.sh - - arguments: '-game nucleardawn -steam' + - arguments: "-game nucleardawn -steam" config: oslist: linux description: linux executable: nd_linux.sh -'1771360': +"1771360": installDir: Gerda launch: - config: oslist: windows executable: Gerda.exe -'1772800': +"1772800": installDir: AirborneMotocross launch: - config: oslist: windows description: Airborne Motocross - description_loc: - english: Airborne Motocross executable: Airborne Motocross Pro.exe type: default - config: oslist: linux description: Airborne Motocross - description_loc: - english: Airborne Motocross executable: Airborne Motocross Pro.x86_64 type: default -'1772830': +"1772830": installDir: Mose launch: - executable: Rusted_Moss.exe nameLocalized: japanese: ラスティッド・モス -'17730': +"17730": installDir: Source SDK Base 2007 launch: - - arguments: '-game smashball' + - arguments: "-game smashball" executable: hl2.exe - vacmodulefilename: resource\\sourceinit.dat -'17740': +"17740": installDir: Empires launch: - - arguments: '-game ./empires -steam -nobreakpad -forceallmips' + - arguments: "-game ./empires -steam -nobreakpad -forceallmips" config: oslist: windows executable: hl2.exe type: default - - arguments: '-game ./empires -steam -nobreakpad -forceallmips' + - arguments: "-game ./empires -steam -nobreakpad -forceallmips" config: oslist: linux executable: hl2.sh type: default -'1774220': +"1774220": installDir: Jubilee launch: - executable: Jubilee.exe -'1774580': +"1774580": installDir: Jedi Survivor launch: - - executable: 'link2ea://launchgame/1774580?platform=steam&theme=applejack' + - executable: "link2ea://launchgame/1774580?platform=steam&theme=applejack" nameLocalized: japanese: STAR WARS ジェダイ:サバイバー™ - koreana: '스타워즈 제다이: 서바이버™' - polish: 'STAR WARS Jedi: Ocalały™' + koreana: "스타워즈 제다이: 서바이버™" + polish: "STAR WARS Jedi: Ocalały™" schinese: 星球大战 绝地:幸存者™ tchinese: STAR WARS 絕地:倖存者™ -'17750': {} -'1775550': - installDir: Gary Grigsby's War in the East 2 +"17750": {} +"1775550": + installDir: "Gary Grigsby's War in the East 2" launch: - executable: Launcher.exe type: default -'1776380': +"1776380": installDir: STAR OCEAN THE DIVINE FORCE launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SO6.exe type: default @@ -100414,48 +98163,38 @@ betakey: cpkcheck oslist: windows description: TDF(Debug) - description_loc: - english: TDF(Debug) - japanese: TDF(Debug) executable: SO6_RS.exe type: option1 - config: betakey: cpkcheck - osarch: '64' + osarch: "64" oslist: windows description: TDF(Master) - description_loc: - english: TDF(Master) - japanese: TDF(Master) executable: SO6_Master.exe type: option2 - config: betakey: tgs2022 - osarch: '64' + osarch: "64" oslist: windows description: TDF(Debug) - description_loc: - english: TDF(Debug) executable: SO6_RS.exe type: option1 - config: betakey: tgs2022 - osarch: '64' + osarch: "64" oslist: windows description: TDF(Master) - description_loc: - english: TDF(Master) executable: SO6_Master.exe type: option2 nameLocalized: japanese: スターオーシャン 6 THE DIVINE FORCE -'1776930': +"1776930": installDir: Undergrave launch: - config: oslist: windows executable: Undergrave.exe -'1777620': +"1777620": installDir: SOUL HACKERS2 launch: - config: @@ -100466,14 +98205,14 @@ koreana: 소울 해커즈2 schinese: 灵魂骇客2 tchinese: 靈魂駭客2 -'1778820': +"1778820": nameLocalized: japanese: 鉄拳8 koreana: 철권 8 schinese: 铁拳8 tchinese: 鐵拳8 -'1778840': {} -'1779200': +"1778840": {} +"1779200": installDir: Thrive launch: - config: @@ -100484,22 +98223,22 @@ oslist: linux executable: launch.sh type: default -'1779560': +"1779560": installDir: DonutDodo launch: - config: oslist: windows executable: DonutDodo.exe type: default -'1781350': +"1781350": installDir: Fireboy & Watergirl Fairy Tales launch: - - arguments: '--in-process-gpu --disable-direct-composition' + - arguments: "--in-process-gpu --disable-direct-composition" config: oslist: windows executable: Fbwg.exe type: default -'1781380': +"1781380": installDir: Jumphobia Homeward Bound launch: - config: @@ -100507,120 +98246,100 @@ executable: Jumphobia Homeward Bound.exe - config: oslist: macos - executable: Jumphobia Homeward Bound.app\\Contents\\MacOS\\Jumphobia Homeward Bound -'1781720': + executable: "Jumphobia Homeward Bound.app\\\\Contents\\\\MacOS\\\\Jumphobia Homeward Bound" +"1781720": installDir: Unstrong - Space Calamity launch: - executable: Unstrong Space Calamity.exe type: none -'1782070': +"1782070": installDir: Blue Max Aces of the Great War launch: - - arguments: '-noconsole -conf fullscreen.conf -conf dosbox.conf -conf launch.conf -exit' + - arguments: "-noconsole -conf fullscreen.conf -conf dosbox.conf -conf launch.conf -exit" config: oslist: windows description: full screen - description_loc: - english: full screen - executable: DOSBox\\dosbox.exe + executable: "DOSBox\\\\dosbox.exe" type: option1 - workingdir: DOSBox\\Configuration - - arguments: '-noconsole -conf 320x200.conf -conf dosbox.conf -conf launch.conf -exit' + workingdir: "DOSBox\\\\Configuration" + - arguments: "-noconsole -conf 320x200.conf -conf dosbox.conf -conf launch.conf -exit" config: oslist: windows description: windowed 320x200 - description_loc: - english: windowed 320x200 - executable: DOSBox\\dosbox.exe + executable: "DOSBox\\\\dosbox.exe" type: option1 - workingdir: DOSBox\\Configuration - - arguments: '-noconsole -conf 640x400.conf -conf dosbox.conf -conf launch.conf -exit' + workingdir: "DOSBox\\\\Configuration" + - arguments: "-noconsole -conf 640x400.conf -conf dosbox.conf -conf launch.conf -exit" config: oslist: windows description: windowed 640x400 - description_loc: - english: windowed 640x400 - executable: DOSBox\\dosbox.exe + executable: "DOSBox\\\\dosbox.exe" type: option1 - workingdir: DOSBox\\Configuration - - arguments: '-noconsole -conf 1280x800.conf -conf dosbox.conf -conf launch.conf -exit' + workingdir: "DOSBox\\\\Configuration" + - arguments: "-noconsole -conf 1280x800.conf -conf dosbox.conf -conf launch.conf -exit" config: oslist: windows description: windowed 1280x800 - description_loc: - english: windowed 1280x800 - executable: DOSBox\\dosbox.exe + executable: "DOSBox\\\\dosbox.exe" type: option1 - workingdir: DOSBox\\Configuration - - arguments: '-noconsole -conf 2560x1600.conf -conf dosbox.conf -conf launch.conf -exit' + workingdir: "DOSBox\\\\Configuration" + - arguments: "-noconsole -conf 2560x1600.conf -conf dosbox.conf -conf launch.conf -exit" config: oslist: windows description: windowed 2560x1600 - description_loc: - english: windowed 2560x1600 - executable: DOSBox\\dosbox.exe + executable: "DOSBox\\\\dosbox.exe" type: option1 - workingdir: DOSBox\\Configuration -'1782080': + workingdir: "DOSBox\\\\Configuration" +"1782080": installDir: Das Boot German U-Boat Simulation launch: - - arguments: '-noconsole -conf fullscreen.conf -conf dosbox.conf -conf launch.conf -exit' + - arguments: "-noconsole -conf fullscreen.conf -conf dosbox.conf -conf launch.conf -exit" config: oslist: windows description: full screen - description_loc: - english: full screen - executable: DOSBox\\dosbox.exe + executable: "DOSBox\\\\dosbox.exe" type: option1 - workingdir: DOSBox\\Configuration - - arguments: '-noconsole -conf 320x200.conf -conf dosbox.conf -conf launch.conf -exit' + workingdir: "DOSBox\\\\Configuration" + - arguments: "-noconsole -conf 320x200.conf -conf dosbox.conf -conf launch.conf -exit" config: oslist: windows description: windowed 320x200 - description_loc: - english: windowed 320x200 - executable: DOSBox\\dosbox.exe + executable: "DOSBox\\\\dosbox.exe" type: option1 - workingdir: DOSBox\\Configuration - - arguments: '-noconsole -conf 640x400.conf -conf dosbox.conf -conf launch.conf -exit' + workingdir: "DOSBox\\\\Configuration" + - arguments: "-noconsole -conf 640x400.conf -conf dosbox.conf -conf launch.conf -exit" config: oslist: windows description: windowed 640x400 - description_loc: - english: windowed 640x400 - executable: DOSBox\\dosbox.exe + executable: "DOSBox\\\\dosbox.exe" type: option1 - workingdir: DOSBox\\Configuration - - arguments: '-noconsole -conf 1280x800.conf -conf dosbox.conf -conf launch.conf -exit' + workingdir: "DOSBox\\\\Configuration" + - arguments: "-noconsole -conf 1280x800.conf -conf dosbox.conf -conf launch.conf -exit" config: oslist: windows description: windowed 1280x800 - description_loc: - english: windowed 1280x800 - executable: DOSBox\\dosbox.exe + executable: "DOSBox\\\\dosbox.exe" type: option1 - workingdir: DOSBox\\Configuration - - arguments: '-noconsole -conf 2560x1600.conf -conf dosbox.conf -conf launch.conf -exit' + workingdir: "DOSBox\\\\Configuration" + - arguments: "-noconsole -conf 2560x1600.conf -conf dosbox.conf -conf launch.conf -exit" config: oslist: windows description: windowed 2560x1600 - description_loc: - english: windowed 2560x1600 - executable: DOSBox\\dosbox.exe + executable: "DOSBox\\\\dosbox.exe" type: option1 - workingdir: DOSBox\\Configuration -'1782120': + workingdir: "DOSBox\\\\Configuration" +"1782120": installDir: ZERO Sievert launch: - config: oslist: windows executable: ZERO Sievert.exe type: default -'1782150': +"1782150": installDir: OVERLORD -ESCAPE FROM NAZARICK- launch: - executable: ESCAPE FROM NAZARICK.exe -'1782210': +"1782210": installDir: Crab Game launch: - config: @@ -100629,49 +98348,49 @@ type: default - config: oslist: macos - executable: Crab Game.app\\Contents\\MacOS\\Crab Game + executable: "Crab Game.app\\\\Contents\\\\MacOS\\\\Crab Game" type: default - config: oslist: linux executable: Crab Game.x86_64 type: default -'1782380': +"1782380": installDir: SCP Containment Breach Multiplayer launch: - executable: game.exe type: default -'1783050': +"1783050": installDir: ProjectVostok launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: ProjectVostok\\ProjectVostok.exe + executable: "ProjectVostok\\\\ProjectVostok.exe" type: default - config: - osarch: '32' + osarch: "32" oslist: windows - executable: ProjectVostok\\ProjectVostok-32.exe + executable: "ProjectVostok\\\\ProjectVostok-32.exe" type: default - config: oslist: macos - executable: ProjectVostok\\ProjectVostok.app + executable: "ProjectVostok\\\\ProjectVostok.app" type: default - config: oslist: linux - executable: ProjectVostok\\ProjectVostok.sh + executable: "ProjectVostok\\\\ProjectVostok.sh" type: default -'1783280': +"1783280": installDir: Ghostlore launch: - executable: Ghostlore.exe nameLocalized: schinese: 鬼怪传说 -'1784780': +"1784780": installDir: Hero of the Kingdom The Lost Tales 2 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Hero of the Kingdom The Lost Tales 2.exe type: default @@ -100684,30 +98403,30 @@ executable: Hero of the Kingdom The Lost Tales 2 type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: Hero of the Kingdom The Lost Tales 2 32bit.exe type: default nameLocalized: - russian: 'Hero of the Kingdom: The Lost Tales 2 / Герой Королевства: Утраченные Сказания 2' - schinese: 'Hero of the Kingdom: The Lost Tales 2 / 王国英雄:失落传说2' -'1785750': + russian: "Hero of the Kingdom: The Lost Tales 2 / Герой Королевства: Утраченные Сказания 2" + schinese: "Hero of the Kingdom: The Lost Tales 2 / 王国英雄:失落传说2" +"1785750": installDir: HostingTheTeacher launch: - executable: HostingTheTeacher.exe type: default -'1785910': +"1785910": installDir: SBK™22 launch: - executable: sbk1.exe type: none -'1786070': +"1786070": installDir: Edge Of War launch: - config: oslist: windows executable: EdgeOfWar.exe -'1786200': +"1786200": installDir: Wars and Roses launch: - config: @@ -100715,20 +98434,20 @@ executable: Wars and Roses.exe nameLocalized: schinese: 战争与玫瑰 -'1786230': +"1786230": installDir: Breakers Collection launch: - config: oslist: windows executable: BreakersCollection.exe -'1786730': +"1786730": installDir: Xenture launch: - config: oslist: windows executable: Xenture.exe type: none -'1786790': +"1786790": installDir: Magical Girl Celesphonia launch: - executable: Game.exe @@ -100737,24 +98456,24 @@ japanese: 魔法戦士セレスフォニア schinese: 魔法少女天穹法妮雅 tchinese: 魔法少女天穹法妮雅 -'1787150': +"1787150": installDir: Futanari Jigsaw Puzzle launch: - config: oslist: windows executable: FutanariJigsawPuzzle.exe type: default -'1787820': +"1787820": installDir: Mirror Party launch: - - executable: Launcher\\MirrorParty.Launcher.Host.exe + - executable: "Launcher\\\\MirrorParty.Launcher.Host.exe" type: default -'1788780': +"1788780": installDir: VenusBlood HOLLOW launch: - executable: VBHI.exe type: default -'1789370': +"1789370": installDir: Girl Genius Adventures In Castle Heterodyne launch: - config: @@ -100769,24 +98488,24 @@ oslist: linux executable: GirlGenius.x86_64 type: default -'1789480': +"1789480": installDir: PHtest launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: RaidGame.exe type: none nameLocalized: schinese: 星际海盗 -'1789560': - installDir: ReDrawn The Painted Tower Collector's Edition +"1789560": + installDir: "ReDrawn The Painted Tower Collector's Edition" launch: - config: oslist: windows executable: ReDrawn_ThePaintedTower_CE.exe type: default -'1791620': +"1791620": installDir: DISGAEA RPG launch: - config: @@ -100796,57 +98515,53 @@ nameLocalized: schinese: 魔界战记 DISGAEA RPG tchinese: 魔界戰記 DISGAEA RPG -'1791790': +"1791790": installDir: Fire & Steel launch: - executable: Fire & Steel.exe - config: oslist: macos executable: Fire & Steel.app -'1792250': +"1792250": installDir: Siberian Mayhem launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Bin/x64/SamSM.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows description: Play moddable version - description_loc: - english: Play moddable version executable: Bin/x64/SamSM_Unrestricted.exe -'1793030': +"1793030": installDir: Romancing SaGa -Minstrel Song- Remastered launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Romancing SaGa -Minstrel Song- Remastered.exe nameLocalized: japanese: ロマンシング サガ -ミンストレルソング- リマスター -'1793840': +"1793840": installDir: Gamer Girls Cyberpunk 2069 launch: - config: oslist: windows executable: Gamer 3.exe type: default -'1794680': +"1794680": installDir: Vampire Survivors launch: - config: oslist: windows executable: VampireSurvivors.exe type: default - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows description: with Steam Overlay enabled - description_loc: - english: with Steam Overlay enabled executable: VampireSurvivors.exe type: option1 - config: @@ -100857,15 +98572,13 @@ oslist: linux executable: launcher.sh type: default - - arguments: '--use-gpu-in-tests' + - arguments: "--use-gpu-in-tests" config: oslist: windows description: with Experimental Lag Fix - description_loc: - english: with Experimental Lag Fix executable: VampireSurvivors.exe type: option2 -'1794960': +"1794960": installDir: SonicOrigins launch: - config: @@ -100878,52 +98591,52 @@ koreana: 소닉 오리진스 schinese: 索尼克 起源 tchinese: 索尼克 起源 -'1795470': +"1795470": installDir: Flooded launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Flooded.exe type: default nameLocalized: schinese: 巨浪滔天 -'1796410': +"1796410": installDir: The Touryst launch: - config: oslist: windows executable: cengine.exe type: default -'1797350': {} -'1798010': +"1797350": {} +"1798010": installDir: MegaMan_BattleNetwork_LegacyCollection_Vol1 launch: - - executable: exe\\MMBN_LC1.exe + - executable: "exe\\\\MMBN_LC1.exe" workingdir: exe nameLocalized: japanese: ロックマンエグゼ アドバンスドコレクション Vol.1 koreana: ROCKMAN EXE ADVANCED COLLECTION Vol.1 schinese: ROCKMAN EXE 合集1 tchinese: ROCKMAN EXE 合集1 -'1798020': +"1798020": installDir: MegaMan_BattleNetwork_LegacyCollection_Vol2 launch: - - executable: exe\\MMBN_LC2.exe + - executable: "exe\\\\MMBN_LC2.exe" workingdir: exe nameLocalized: japanese: ロックマンエグゼ アドバンスドコレクション Vol.2 koreana: ROCKMAN EXE ADVANCED COLLECTION Vol.2 schinese: ROCKMAN EXE 合集2 tchinese: ROCKMAN EXE 合集2 -'1798780': +"1798780": installDir: Top Nep launch: - config: oslist: windows executable: TOP NEP.exe type: default -'1799380': +"1799380": installDir: MAGLAM LORD launch: - config: @@ -100934,21 +98647,19 @@ japanese: MAGLAM LORD/マグラムロード koreana: MAGLAM LORD/매그램 로드 tchinese: MAGLAM LORD/魔劍物語 -'1799850': +"1799850": installDir: Transformation Tycoon launch: - description: Launch the latest public release. - description_loc: - english: Launch the latest public release. executable: Transformation Tycoon.exe -'1799930': +"1799930": installDir: Redout2 launch: - config: oslist: windows executable: Redout2.exe type: default -'18000': +"18000": installDir: On the Rain-Slick Precipice of Darkness - Episode One launch: - config: @@ -100957,43 +98668,35 @@ - config: oslist: macos executable: RainSlickEp1Mac.app -'1801140': {} -'1801410': +"1801140": {} +"1801410": installDir: Deadnaut Signal Lost launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Start launcher - description_loc: - english: Start launcher executable: Screwfly Launcher.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: Start launcher - description_loc: - english: Start launcher executable: Screwfly Launcher type: default - config: - osarch: '64' + osarch: "64" oslist: windows description: game (skip launcher) - description_loc: - english: game (skip launcher) executable: Signal Lost.exe type: option1 - config: - osarch: '64' + osarch: "64" oslist: linux description: game (skip launcher) - description_loc: - english: game (skip launcher) executable: Signal Lost.x86_64 type: option1 -'18020': +"18020": installDir: Penny Arcade Adventures On the Rain-Slick Precipice of Darkness Episode 2 launch: - config: @@ -101002,29 +98705,29 @@ - config: oslist: macos executable: RainSlickEp2Mac.app -'1802630': +"1802630": installDir: Futa Battle TD launch: - config: oslist: windows executable: BattleTD.exe type: default -'1802690': +"1802690": installDir: Carrier Command launch: - config: oslist: windows executable: CCLauncher.exe type: config -'1803840': - installDir: Lucky's Tale VR +"1803840": + installDir: "Lucky's Tale VR" launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: LT.exe type: vr -'1803960': +"1803960": installDir: Demon Sword Incubus launch: - executable: Demon Sword Incubus.exe @@ -101032,7 +98735,7 @@ japanese: 魔剣インキュバス schinese: 魔剑梦魇 tchinese: 魔劍夢魘 -'18040': +"18040": installDir: DeathSpank launch: - config: @@ -101041,34 +98744,28 @@ - config: oslist: macos executable: DeathSpank.app -'1804370': +"1804370": installDir: Airball launch: - - arguments: '-conf airball.conf -noconsole' + - arguments: "-conf airball.conf -noconsole" config: oslist: windows description: in original resolution - description_loc: - english: in original resolution executable: DOSBox.exe type: option1 - - arguments: '-conf airball720.conf -noconsole' + - arguments: "-conf airball720.conf -noconsole" config: oslist: windows description: in 720p resolution - description_loc: - english: in 720p resolution executable: DOSBox.exe type: option2 - - arguments: '-conf airball1080.conf -noconsole' + - arguments: "-conf airball1080.conf -noconsole" config: oslist: windows description: in 1080p resolution - description_loc: - english: in 1080p resolution executable: DOSBox.exe type: option3 -'18050': +"18050": installDir: DeathSpankTOV launch: - config: @@ -101077,21 +98774,21 @@ - config: oslist: macos executable: DeathSpankTOV.app -'1805040': +"1805040": installDir: Implements of Hell launch: - config: oslist: windows executable: ImplementsOfHell.exe type: default -'1805100': - installDir: Dark City Paris Collector's Edition +"1805100": + installDir: "Dark City Paris Collector's Edition" launch: - config: oslist: windows executable: DarkCity_Paris_CE.exe type: default -'1805240': +"1805240": installDir: Layer Section S-Tribute launch: - config: @@ -101099,23 +98796,23 @@ executable: S-Tribute.exe nameLocalized: japanese: レイヤーセクション™ & ギャラクティックアタック™ Sトリビュート -'1805480': +"1805480": installDir: LikeADragonIshin launch: - - arguments: '/timing ' + - arguments: "/timing " config: - betakey: 'work99,aabbd,work12' - osarch: '64' + betakey: "work99,aabbd,work12" + osarch: "64" oslist: windows executable: startup.exe - config: - betakey: 'work98,work00,default,work13' - osarch: '64' + betakey: "work98,work00,default,work13" + osarch: "64" oslist: windows executable: startup.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: startup.exe nameLocalized: @@ -101123,7 +98820,7 @@ koreana: 용과 같이 유신! 극 schinese: 人中之龙 维新!极 tchinese: 人中之龍 維新! 極 -'18070': +"18070": installDir: TheBaconing launch: - config: @@ -101132,33 +98829,33 @@ - config: oslist: macos executable: The Baconing.app -'1807210': {} -'1807930': +"1807210": {} +"1807930": installDir: Railway Islands - Puzzle launch: - config: oslist: windows executable: Railway Islands.exe type: default -'1808060': +"1808060": installDir: ObamaMaze launch: - executable: Obama Maze.exe type: default -'1808120': +"1808120": installDir: button pusher launch: - config: oslist: windows executable: button pusher.exe type: default -'1808400': +"1808400": installDir: Tag The Power of Paint launch: - executable: Tag.exe type: default -'1808500': {} -'1808800': +"1808500": {} +"1808800": installDir: Duck Simulator 2 launch: - config: @@ -101167,40 +98864,38 @@ - config: oslist: macos executable: Duck Simulator 2.app -'1809500': +"1809500": installDir: Map Of Materials launch: - config: oslist: windows executable: Map Of Materials.exe -'1809540': +"1809540": nameLocalized: english: Nine Sols japanese: 九日ナインソール koreana: 나인 솔즈 schinese: 九日 tchinese: 九日 -'1809700': +"1809700": installDir: P3P launch: - description: Launch. - description_loc: - english: Launch. executable: P3P.exe nameLocalized: japanese: ペルソナ3 ポータブル koreana: 페르소나3 포터블 schinese: 女神异闻录3 携带版 tchinese: 女神異聞錄3 攜帶版 -'1810130': +"1810130": installDir: Classified Stories Color Out of Space launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Classified Stories 2.exe type: default -'1810230': +"1810230": installDir: The Wheel of Fortune launch: - config: @@ -101208,19 +98903,19 @@ executable: The_Wheel_of_Fortune.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: The_Wheel_of_Fortune-32.exe type: default - config: oslist: macos - executable: The_Wheel_of_Fortune.app\\Contents\\MacOS\\The_Wheel_of_Fortune + executable: "The_Wheel_of_Fortune.app\\\\Contents\\\\MacOS\\\\The_Wheel_of_Fortune" type: default - config: oslist: linux executable: The_Wheel_of_Fortune.sh type: default -'1810580': +"1810580": installDir: Nobody launch: - config: @@ -101235,7 +98930,7 @@ japanese: 大多数 schinese: 大多数 tchinese: 大多數 -'1810820': +"1810820": installDir: EO3HD launch: - config: @@ -101244,14 +98939,14 @@ type: default nameLocalized: japanese: 世界樹の迷宮Ⅲ 星海の来訪者 HD REMASTER - koreana: '세계수의 미궁3 성해의 방문자 HD REMASTER ' + koreana: "세계수의 미궁3 성해의 방문자 HD REMASTER " schinese: 世界树的迷宫Ⅲ 星海的访客 HD REMASTER tchinese: 世界樹的迷宮Ⅲ 星海的訪客 HD REMASTER -'18110': +"18110": installDir: Shattered_Horizon launch: - executable: client_exe/shattered_horizon.exe -'1811040': +"1811040": installDir: South of the Circle launch: - config: @@ -101261,21 +98956,21 @@ nameLocalized: schinese: 极圈以南 tchinese: 極圈以南 -'1811070': +"1811070": installDir: FritzChess 18 SteamEdition launch: - - arguments: '-Fritz18Steam' + - arguments: "-Fritz18Steam" config: oslist: windows - executable: ChessProgram18\\ChessProgram18.exe -'1811260': + executable: "ChessProgram18\\\\ChessProgram18.exe" +"1811260": installDir: FIFA 23 launch: - - executable: 'link2ea://launchgame/1811260?platform=steam&theme=fifa23' + - executable: "link2ea://launchgame/1811260?platform=steam&theme=fifa23" nameLocalized: schinese: EA SPORTS™《FIFA 23》 tchinese: EA SPORTS™《FIFA 23》 -'1811600': +"1811600": installDir: Vestaria Saga II The Sacred Sword of Silvanister launch: - config: @@ -101284,7 +98979,7 @@ type: default nameLocalized: schinese: 维斯塔利亚传说2:希尔瓦比西之圣剑 -'1811740': +"1811740": installDir: The Plague Doctor of Wippra launch: - config: @@ -101296,11 +98991,11 @@ executable: The Plague Doctor of Wippra.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: The Plague Doctor of Wippra.x86_64 type: default -'1811750': +"1811750": installDir: VELONE launch: - config: @@ -101312,21 +99007,17 @@ executable: VELONE.app - config: oslist: windows - ownsdlc: '1963730' + ownsdlc: "1963730" description: Bonus Content - description_loc: - english: Bonus Content executable: open_bonus_win.bat - config: oslist: macos - ownsdlc: '1963730' + ownsdlc: "1963730" description: Bonus Content - description_loc: - english: Bonus Content executable: open_bonus_osx.sh nameLocalized: schinese: VELONE 维隆系统 -'1811950': +"1811950": installDir: THE LEGEND OF HEROES KURO NO KISEKI launch: - config: @@ -101338,12 +99029,12 @@ executable: launcher/Launcher.exe type: config nameLocalized: - english: 'The Legend of Heroes: Kuro no Kiseki' + english: "The Legend of Heroes: Kuro no Kiseki" japanese: 英雄伝説 黎の軌跡 koreana: 영웅전설 여의 궤적 schinese: 英雄传说 黎之轨迹 tchinese: 英雄傳說 黎之軌跡 -'1811990': +"1811990": installDir: Wildfrost launch: - config: @@ -101355,7 +99046,7 @@ koreana: 와일드프로스트 (Wildfrost) schinese: 雪居之地 (Wildfrost) tchinese: 斯諾德維爾之戰 (Wildfrost) -'18120': +"18120": installDir: Unstoppable Gorg launch: - config: @@ -101364,137 +99055,111 @@ - config: oslist: macos executable: unstoppable_gorg.app -'1812090': +"1812090": installDir: Escape Academy launch: - executable: Escape Academy.exe -'1812280': +"1812280": installDir: CSSecretSanta launch: - config: oslist: windows - executable: Cave Story's Secret Santa.exe + executable: "Cave Story's Secret Santa.exe" type: default -'1812290': +"1812290": installDir: The Elder Scrolls Arena launch: - - arguments: '-noconsole -conf arena.conf -fullscreen' + - arguments: "-noconsole -conf arena.conf -fullscreen" description: Full Screen - description_loc: - english: Full Screen - executable: DOSBox-0.74\\DOSBox.exe + executable: "DOSBox-0.74\\\\DOSBox.exe" type: option1 workingdir: DOSBox-0.74 - - arguments: '-noconsole -conf arena.conf' + - arguments: "-noconsole -conf arena.conf" description: Windowed - description_loc: - english: Windowed - executable: DOSBox-0.74\\DOSBox.exe + executable: "DOSBox-0.74\\\\DOSBox.exe" type: option2 workingdir: DOSBox-0.74 -'1812300': +"1812300": installDir: Aquatico launch: - executable: Aquatico.exe type: default -'1812370': {} -'1812390': +"1812370": {} +"1812390": installDir: The Elder Scrolls Daggerfall launch: - - arguments: '-noconsole -conf df.conf -fullscreen' + - arguments: "-noconsole -conf df.conf -fullscreen" description: Full Screen - description_loc: - english: Full Screen - executable: DOSBox-0.74\\DOSBox.exe + executable: "DOSBox-0.74\\\\DOSBox.exe" type: option1 workingdir: DOSBox-0.74 - - arguments: '-noconsole -conf df.conf' + - arguments: "-noconsole -conf df.conf" description: Windowed - description_loc: - english: Windowed - executable: DOSBox-0.74\\DOSBox.exe + executable: "DOSBox-0.74\\\\DOSBox.exe" type: option2 workingdir: DOSBox-0.74 -'1812410': +"1812410": installDir: The Elder Scrolls Adventures Redguard launch: - - arguments: '-noconsole -conf rg.conf -fullscreen' + - arguments: "-noconsole -conf rg.conf -fullscreen" description: Full Screen - description_loc: - english: Full Screen - executable: DOSBox-0.73\\dosbox.exe + executable: "DOSBox-0.73\\\\dosbox.exe" type: option1 workingdir: DOSBox-0.73 - - arguments: '-noconsole -conf rg.conf' + - arguments: "-noconsole -conf rg.conf" description: Windowed - description_loc: - english: Windowed - executable: DOSBox-0.73\\dosbox.exe + executable: "DOSBox-0.73\\\\dosbox.exe" type: option2 workingdir: DOSBox-0.73 -'1812420': +"1812420": installDir: An Elder Scrolls Legend Battlespire launch: - - arguments: '-noconsole -conf bs.conf -conf bs_single.conf -fullscreen' + - arguments: "-noconsole -conf bs.conf -conf bs_single.conf -fullscreen" description: Full Screen - description_loc: - english: Full Screen - executable: DOSBox-0.73\\dosbox.exe + executable: "DOSBox-0.73\\\\dosbox.exe" type: option1 workingdir: DOSBox-0.73 - - arguments: '-noconsole -conf bs.conf -conf bs_single.conf' + - arguments: "-noconsole -conf bs.conf -conf bs_single.conf" description: Windowed - description_loc: - english: Windowed - executable: DOSBox-0.73\\dosbox.exe + executable: "DOSBox-0.73\\\\dosbox.exe" type: option2 workingdir: DOSBox-0.73 -'1812820': +"1812820": installDir: Bitburner launch: - config: oslist: windows description: normally - description_loc: - english: normally executable: bitburner.exe type: option1 - config: oslist: macos executable: bitburner.app type: default - - arguments: '--no-sandbox' + - arguments: "--no-sandbox" config: oslist: linux - description: '--no-sandbox (diff flags for different linux distro)' - description_loc: - english: '--no-sandbox (diff flags for different linux distro)' + description: "--no-sandbox (diff flags for different linux distro)" executable: bitburner type: option1 - - arguments: '--no-scripts' + - arguments: "--no-scripts" config: oslist: windows description: and kill all scripts at startup. - description_loc: - english: and kill all scripts at startup. executable: bitburner.exe type: option2 - config: oslist: linux description: no flags - description_loc: - english: no flags executable: bitburner type: option2 - - arguments: '--disable-seccomp-filter-sandbox' + - arguments: "--disable-seccomp-filter-sandbox" config: oslist: linux - description: '--disable-seccomp-filter-sandbox' - description_loc: - english: '--disable-seccomp-filter-sandbox' + description: "--disable-seccomp-filter-sandbox" executable: bitburner type: option3 -'1813270': +"1813270": installDir: Poptropica launch: - config: @@ -101503,14 +99168,14 @@ - config: oslist: macos executable: MAC/Poptropica.app -'1814200': +"1814200": installDir: He Will Shoot launch: - config: oslist: windows executable: HeWillShoot.exe type: default -'1814630': +"1814630": installDir: FarmD launch: - config: @@ -101521,129 +99186,109 @@ oslist: windows executable: FarmD.exe type: vr -'1814690': {} -'1814930': +"1814690": {} +"1814930": installDir: Kurokamisama launch: - executable: Kurokamisama.exe nameLocalized: japanese: クロカミサマの晩餐 -'1815330': +"1815330": installDir: Swelter launch: - - arguments: '-steam -nohmd -game \"Swelter\"' + - arguments: "-steam -nohmd -game \\\"Swelter\\\"" config: oslist: windows executable: hl2.exe type: default nameLocalized: russian: Зной -'1815570': +"1815570": installDir: Aces and Adventures launch: - executable: Aces and Adventures.exe nameLocalized: schinese: 王牌与冒险 -'1815780': +"1815780": installDir: Asphalt 9 Legends launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Asphalt9_Steam_x64_rtl.exe type: default -'1815970': +"1815970": installDir: A Clockwork Ley-Line Daybreak of Remnants Shadow launch: - executable: LeyLine 2.exe -'1816300': +"1816300": installDir: HARVESTELLA launch: - config: oslist: windows - description_loc: - japanese: 標準 executable: Harvestella.exe -'1816670': +"1816670": installDir: GUNDAM EVOLUTION launch: - - arguments: '-ExecCmdsInit=DisableAllScreenMessages -DisableAFK' + - arguments: "-ExecCmdsInit=DisableAllScreenMessages -DisableAFK" config: betakey: qa_debug_hirame oslist: windows description: qa_debug_hirame - description_loc: - english: qa_debug_hirame executable: EvoGameSteam.exe - - arguments: '-ExecCmdsInit=DisableAllScreenMessages -Provider=kamasu -DisableAFK' + - arguments: "-ExecCmdsInit=DisableAllScreenMessages -Provider=kamasu -DisableAFK" config: betakey: qa_debug_kamasu oslist: windows description: qa_debug_kamasu - description_loc: - english: qa_debug_kamasu executable: EvoLauncher.exe - - arguments: '-ExecCmdsInit=DisableAllScreenMessages -Provider=sayori -DisableAFK' + - arguments: "-ExecCmdsInit=DisableAllScreenMessages -Provider=sayori -DisableAFK" config: betakey: qa_debug_sayori oslist: windows description: qa_debug_sayori - description_loc: - english: qa_debug_sayori executable: EvoLauncher.exe - - arguments: '-noreuseconn -Provider=Live' + - arguments: "-noreuseconn -Provider=Live" config: betakey: qa_debug_live oslist: windows description: qa_debug_live - description_loc: - english: qa_debug_live executable: EvoLauncher.exe - - arguments: '-ExecCmdsInit=DisableAllScreenMessages -Provider=unagi' + - arguments: "-ExecCmdsInit=DisableAllScreenMessages -Provider=unagi" config: betakey: qa_debug_unagi oslist: windows description: qa_debug_unagi - description_loc: - english: qa_debug_unagi executable: EvoLauncher.exe - - arguments: '-ExecCmdsInit=DisableAllScreenMessages -Provider=saba' + - arguments: "-ExecCmdsInit=DisableAllScreenMessages -Provider=saba" config: betakey: qa_debug_saba oslist: windows description: qa_debug_saba - description_loc: - english: qa_debug_saba executable: EvoLauncher.exe - - arguments: '-Provider=okoze' + - arguments: "-Provider=okoze" config: betakey: review_okoze oslist: windows description: review_okoze - description_loc: - english: review_okoze executable: EvoLauncher.exe - - arguments: '-Provider=RC -noreuseconn' + - arguments: "-Provider=RC -noreuseconn" config: betakey: qa_debug_rc oslist: windows description: qa_debug_rc - description_loc: - english: qa_debug_rc executable: EvoLauncher.exe - - arguments: '-noreuseconn -Provider=Live' + - arguments: "-noreuseconn -Provider=Live" config: oslist: windows executable: EvoLauncher.exe - - arguments: '-ExecCmdsInit=DisableAllScreenMessages' + - arguments: "-ExecCmdsInit=DisableAllScreenMessages" config: betakey: qa_debug_s2 oslist: windows description: qa_debug_s2 - description_loc: - english: qa_debug_s2 executable: EvoLauncher.exe -'1817000': +"1817000": installDir: Zodiacats launch: - config: @@ -101652,166 +99297,126 @@ - config: oslist: linux executable: zodiacats.x86_64 -'1817070': - installDir: Marvel's Spider-Man Remastered +"1817070": + installDir: "Marvel's Spider-Man Remastered" launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch Spider-Man Remastered - description_loc: - english: Launch Spider-Man Remastered executable: Spider-Man.exe type: default - config: - betakey: >- - nixxesqa_dev, ig_dev, nixxes_art, nixxesqa_dev2, sie_ut, pc_ut, ig_marketing2, pre_ut, localisation_qa, - ig_alpha, ig_beta, sie_psn, nixxes_dev, nixxes_dev2 - osarch: '64' + betakey: "nixxesqa_dev, ig_dev, nixxes_art, nixxesqa_dev2, sie_ut, pc_ut, ig_marketing2, pre_ut, localisation_qa, ig_alpha, ig_beta, sie_psn, nixxes_dev, nixxes_dev2" + osarch: "64" oslist: windows - ownsdlc: '1830680' + ownsdlc: "1830680" description: Launch Final - description_loc: - english: Launch Final executable: i20_steam_Final.exe - config: - betakey: >- - latest, latest_dev, nixxesqa_dev, ig_dev, sieqa_dev, sieqa_dev2, nixxes_art, nixxesqa_dev2, sie_ut, pc_ut, - ext_partner1, ext_partner2, ig_marketing, ig_marketing2, pre_ut, localisation_qa, ig_alpha, compat, - nvidia_dev, nvidia_dev2, amd_dev, ig_beta, sie_psn, nixxes_dev, nixxes_dev2, ext_dev, intel_dev - osarch: '64' + betakey: "latest, latest_dev, nixxesqa_dev, ig_dev, sieqa_dev, sieqa_dev2, nixxes_art, nixxesqa_dev2, sie_ut, pc_ut, ext_partner1, ext_partner2, ig_marketing, ig_marketing2, pre_ut, localisation_qa, ig_alpha, compat, nvidia_dev, nvidia_dev2, amd_dev, ig_beta, sie_psn, nixxes_dev, nixxes_dev2, ext_dev, intel_dev" + osarch: "64" oslist: windows - ownsdlc: '1830680' + ownsdlc: "1830680" description: Launch Final with Debug menus - description_loc: - english: Launch Final with Debug menus executable: i20_steam_FinalDM.exe - - arguments: '-launcher -archive asset_archive/toc -warn review -no_debug_spam -lobby' + - arguments: "-launcher -archive asset_archive/toc -warn review -no_debug_spam -lobby" config: - betakey: >- - latest, latest_dev, nixxesqa_dev, ig_dev, sieqa_dev, sieqa_dev2, nixxes_art, nixxesqa_dev2, sie_ut, pc_ut, - ext_partner1, ext_partner2, ig_marketing, ig_marketing2, pre_ut, localisation_qa, ig_alpha, compat, - nvidia_dev, nvidia_dev2, amd_dev, ig_beta, sie_psn, nixxes_dev, nixxes_dev2, ext_dev, intel_dev - osarch: '64' + betakey: "latest, latest_dev, nixxesqa_dev, ig_dev, sieqa_dev, sieqa_dev2, nixxes_art, nixxesqa_dev2, sie_ut, pc_ut, ext_partner1, ext_partner2, ig_marketing, ig_marketing2, pre_ut, localisation_qa, ig_alpha, compat, nvidia_dev, nvidia_dev2, amd_dev, ig_beta, sie_psn, nixxes_dev, nixxes_dev2, ext_dev, intel_dev" + osarch: "64" oslist: windows - ownsdlc: '1830680' + ownsdlc: "1830680" description: Launch Release - description_loc: - english: Launch Release executable: i20_steam_Release.exe -'1817190': - installDir: Marvel's Spider-Man Miles Morales +"1817190": + installDir: "Marvel's Spider-Man Miles Morales" launch: - config: - osarch: '64' + osarch: "64" oslist: windows - description: 'Launch Spider-Man: Miles Morales' - description_loc: - english: 'Launch Spider-Man: Miles Morales' + description: "Launch Spider-Man: Miles Morales" executable: MilesMorales.exe type: default - - arguments: '-archive asset_archive/toc -warn review -no_debug_spam -lobby' + - arguments: "-archive asset_archive/toc -warn review -no_debug_spam -lobby" config: - betakey: 'sie_ut, ig_fp' - osarch: '64' + betakey: "sie_ut, ig_fp" + osarch: "64" oslist: windows - ownsdlc: '1830690' + ownsdlc: "1830690" description: Launch Final - description_loc: - english: Launch Final executable: i31_steam_Final.exe - config: - betakey: >- - latest, latest_dev, nixxesqa_dev, nixxesqa_dev2, ig_dev, sieqa_dev, sieqa_dev2, ig_fp, nixxes_art, sie_ut, - ig_marketing, ig_marketing2, ext_partner1, ext_partner2, compat, ig_beta, pssqa_development, nixxes_dev - osarch: '64' + betakey: "latest, latest_dev, nixxesqa_dev, nixxesqa_dev2, ig_dev, sieqa_dev, sieqa_dev2, ig_fp, nixxes_art, sie_ut, ig_marketing, ig_marketing2, ext_partner1, ext_partner2, compat, ig_beta, pssqa_development, nixxes_dev" + osarch: "64" oslist: windows - ownsdlc: '1830690' + ownsdlc: "1830690" description: Launch Final with Debug menus - description_loc: - english: Launch Final with Debug menus executable: i31_steam_FinalDM.exe - - arguments: '-launcher -archive asset_archive/toc -warn review -no_debug_spam -lobby' + - arguments: "-launcher -archive asset_archive/toc -warn review -no_debug_spam -lobby" config: - betakey: >- - latest, latest_dev, nixxesqa_dev, nixxesqa_dev2, ig_dev, sieqa_dev, sieqa_dev2, ig_fp, nixxes_art, sie_ut, - ig_marketing, ig_marketing2, ext_partner1, ext_partner2, compat, ig_beta, pssqa_development, nixxes_dev - osarch: '64' + betakey: "latest, latest_dev, nixxesqa_dev, nixxesqa_dev2, ig_dev, sieqa_dev, sieqa_dev2, ig_fp, nixxes_art, sie_ut, ig_marketing, ig_marketing2, ext_partner1, ext_partner2, compat, ig_beta, pssqa_development, nixxes_dev" + osarch: "64" oslist: windows - ownsdlc: '1830690' + ownsdlc: "1830690" description: Launch Release - description_loc: - english: Launch Release executable: i31_steam_Release.exe -'1817230': +"1817230": installDir: Hi-Fi RUSH launch: - description: Launch default. - description_loc: - english: Launch default. executable: Hi-Fi-RUSH.exe - - arguments: '-NOVERIFYGC -NOSCREENMESSAGES -ForceAsyncCompute' + - arguments: "-NOVERIFYGC -NOSCREENMESSAGES -ForceAsyncCompute" config: betakey: nv_dev description: Launch Development or Test Ver. (ForceAsyncCompute) - description_loc: - english: Launch Development or Test Ver. (ForceAsyncCompute) executable: Hibiki.exe - - arguments: '-NOVERIFYGC -NOSCREENMESSAGES' + - arguments: "-NOVERIFYGC -NOSCREENMESSAGES" config: betakey: beta tango_dev description: Launch Development or Test Ver. - description_loc: - english: Launch Development or Test Ver. executable: Hibiki.exe -'1817250': +"1817250": installDir: Ghostwire Tokyo Prelude launch: - executable: GWTPrelude.exe nameLocalized: - brazilian: 'Ghostwire: Tokyo - Prólogo' - czech: 'Ghostwire: Tokyo – Počátek' - english: 'Ghostwire: Tokyo - Prelude' - french: "Ghostwire:\_Tokyo - Préambule" - german: "Ghostwire: Tokyo\_– Präludium" - hungarian: 'Ghostwire: Tokyo – Előjáték' - italian: 'Ghostwire: Tokyo - Preludio' - japanese: 'Ghostwire: Tokyo - Prelude' - koreana: 'Ghostwire: Tokyo - 서막' - latam: 'Ghostwire: Tokyo - Preludio' - polish: 'Ghostwire: Tokyo – Preludium' - portuguese: 'Ghostwire: Tokyo - Prólogo' - russian: 'Ghostwire: Tokyo. Пролог' - schinese: 'Ghostwire: Tokyo - 序幕' - spanish: 'Preludio de Ghostwire: Tokyo' - tchinese: 'Ghostwire: Tokyo - 前傳' - turkish: 'Ghostwire: Tokyo - Başlangıç' -'1818340': + brazilian: "Ghostwire: Tokyo - Prólogo" + czech: "Ghostwire: Tokyo – Počátek" + english: "Ghostwire: Tokyo - Prelude" + french: "Ghostwire: Tokyo - Préambule" + german: "Ghostwire: Tokyo – Präludium" + hungarian: "Ghostwire: Tokyo – Előjáték" + italian: "Ghostwire: Tokyo - Preludio" + japanese: "Ghostwire: Tokyo - Prelude" + koreana: "Ghostwire: Tokyo - 서막" + latam: "Ghostwire: Tokyo - Preludio" + polish: "Ghostwire: Tokyo – Preludium" + portuguese: "Ghostwire: Tokyo - Prólogo" + russian: "Ghostwire: Tokyo. Пролог" + schinese: "Ghostwire: Tokyo - 序幕" + spanish: "Preludio de Ghostwire: Tokyo" + tchinese: "Ghostwire: Tokyo - 前傳" + turkish: "Ghostwire: Tokyo - Başlangıç" +"1818340": installDir: Creatures The Albian Years launch: - config: oslist: windows description: Creatures 1 - description_loc: - english: Creatures 1 - executable: Creatures 1\\Launcher.exe + executable: "Creatures 1\\\\Launcher.exe" type: option1 - - arguments: '-embedding' + - arguments: "-embedding" config: oslist: windows description: Creatures 1 (alternate launcher) - description_loc: - english: Creatures 1 (alternate launcher) - executable: Creatures 1\\Creatures.exe + executable: "Creatures 1\\\\Creatures.exe" type: option2 - config: oslist: windows description: Creatures 2 - description_loc: - english: Creatures 2 - executable: Creatures 2\\launcher.exe + executable: "Creatures 2\\\\launcher.exe" type: option3 -'1818610': +"1818610": installDir: Karagon launch: - config: @@ -101822,47 +99427,43 @@ betakey: server executable: Start_Server_STEAM___RUN_THIS!.bat type: server -'1818690': +"1818690": installDir: Grindstone launch: - executable: Grindstone.exe -'1818750': +"1818750": installDir: MultiVersus launch: - - arguments: '-allowsteam' + - arguments: "-allowsteam" config: - osarch: '64' + osarch: "64" oslist: windows executable: start_protected_game.exe type: default - - arguments: '-allowsteam' + - arguments: "-allowsteam" config: betakey: internaldev - osarch: '64' + osarch: "64" oslist: windows description: Without Easy Anti-Cheat - description_loc: - english: Without Easy Anti-Cheat executable: MultiVersus.exe type: option1 - - arguments: '-allowsteam' + - arguments: "-allowsteam" config: betakey: urtesting - osarch: '64' + osarch: "64" oslist: windows description: Without Easy Anti-Cheat - description_loc: - english: Without Easy Anti-Cheat executable: MultiVersus.exe type: option1 -'1819450': +"1819450": installDir: KoaFivePirates launch: - config: oslist: windows executable: Koa.exe -'1820400': {} -'1821310': +"1820400": {} +"1821310": installDir: TinyCat launch: - arguments: steam @@ -101874,79 +99475,77 @@ oslist: macos executable: TinyCat.app type: default - - arguments: 'gldevice:Vulkan' + - arguments: "gldevice:Vulkan" config: - osarch: '64' + osarch: "64" oslist: linux executable: TinyCat.bin.x86_64 nameLocalized: schinese: 小橘猫的纸箱被抢走了 -'1821340': +"1821340": installDir: Hole in the Clouds launch: - config: oslist: windows executable: Hole in the Clouds.exe -'1823200': +"1823200": installDir: Jumanji2 launch: - executable: Jumanji 2.exe nameLocalized: - brazilian: 'Jumanji: Aventuras Selvagens' - dutch: 'Jumanji: Wilde Avonturen' - french: 'Jumanji: Aventures Sauvages' - german: 'Jumanji: Wilde Abenteuer' - italian: 'Jumanji: Avventure selvagge' - japanese: 'ジュマンジ: ワイルドアドベンチャー' - koreana: '쥬만지: 와일드 어드벤처' - latam: 'Jumanji: Aventuras salvajes' - polish: 'Jumanji: Dzikie przygody' - russian: 'Джуманджи: дикие приключения' + brazilian: "Jumanji: Aventuras Selvagens" + dutch: "Jumanji: Wilde Avonturen" + french: "Jumanji: Aventures Sauvages" + german: "Jumanji: Wilde Abenteuer" + italian: "Jumanji: Avventure selvagge" + japanese: "ジュマンジ: ワイルドアドベンチャー" + koreana: "쥬만지: 와일드 어드벤처" + latam: "Jumanji: Aventuras salvajes" + polish: "Jumanji: Dzikie przygody" + russian: "Джуманджи: дикие приключения" schinese: 《勇敢者的游戏:荒野冒险》 - spanish: 'Jumanji: Aventuras salvajes' + spanish: "Jumanji: Aventuras salvajes" tchinese: 野蠻遊戲:瘋狂叢林 - turkish: 'Jumanji: Vahşi Maceralar' - ukrainian: 'Джуманджі: Дикі пригоди' -'1823900': + turkish: "Jumanji: Vahşi Maceralar" + ukrainian: "Джуманджі: Дикі пригоди" +"1823900": installDir: Creatures Village launch: - - arguments: '--autokill Creatures Village' + - arguments: "--autokill Creatures Village" config: oslist: windows executable: engine.exe -'1823930': +"1823930": installDir: Wavetale launch: - executable: Wavetale.exe -'1824220': +"1824220": installDir: Chivalry 2 launch: - - arguments: '-useeac -usebugsplat ' + - arguments: "-useeac -usebugsplat " config: - osarch: '64' + osarch: "64" oslist: windows executable: Chivalry2Launcher.exe type: default -'1824580': +"1824580": installDir: Dungeon Drafters launch: - - arguments: '-force-d3d11' + - arguments: "-force-d3d11" config: oslist: windows description: Dx11 version - description_loc: - english: Dx11 version executable: Dungeon Drafters.exe type: option1 - config: - osarch: '64' + osarch: "64" oslist: linux executable: Dungeon Drafters.x86_64 type: default nameLocalized: schinese: 魔卡地下城 tchinese: 地城魔法風雲 -'1825650': +"1825650": installDir: Human Apocalypse Prologue launch: - config: @@ -101954,54 +99553,50 @@ executable: Human Apocalypse Prologue.exe - config: oslist: macos - executable: humanapocalypse.app\\Contents\\MacOS\\humanapocalypseprologue + executable: "humanapocalypse.app\\\\Contents\\\\MacOS\\\\humanapocalypseprologue" - config: oslist: linux executable: Human Apocalypse Prologue -'1827430': +"1827430": installDir: Yum Yum Cookstar launch: - config: oslist: windows executable: YYC.exe type: default -'1827740': +"1827740": installDir: Kombinera launch: - config: oslist: windows description: Launch - description_loc: - english: Launch executable: Kombinera.exe type: default - config: oslist: macos description: Launch - description_loc: - english: Launch executable: kombinera.app - config: oslist: linux executable: Kombinera.x86_64 -'1828210': +"1828210": installDir: Requiem Of Science launch: - - arguments: '-game hl2ss' + - arguments: "-game hl2ss" executable: hl2.exe -'1828690': +"1828690": installDir: Security Booth Directors Cut launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: WindowsNoEditor\\SecurityBoothDC.exe + executable: "WindowsNoEditor\\\\SecurityBoothDC.exe" type: default -'1829470': - installDir: Melody's Escape 2 +"1829470": + installDir: "Melody's Escape 2" launch: - - executable: Melody's Escape 2.exe -'1829980': + - executable: "Melody's Escape 2.exe" +"1829980": installDir: CafeStella launch: - executable: CafeStella.exe @@ -102009,7 +99604,7 @@ japanese: 喫茶ステラと死神の蝶 schinese: 星光咖啡馆与死神之蝶 tchinese: 星光咖啡館與死神之蝶 -'18300': +"18300": installDir: Spectraball launch: - config: @@ -102021,18 +99616,18 @@ - config: oslist: macos executable: Spectraball.app -'1830620': +"1830620": installDir: Pleasure Party launch: - config: oslist: windows executable: PleasureParty.exe type: default -'1830640': +"1830640": installDir: Minigolf Adventure launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Minigolf Adventure.exe - config: @@ -102041,29 +99636,29 @@ - config: oslist: linux executable: Minigolf Adventure.x86_64 -'1831160': +"1831160": installDir: Monkey Barrels launch: - config: oslist: windows executable: mb.exe type: default -'1831260': +"1831260": installDir: My Therapist is a Futanari launch: - config: oslist: windows executable: MyTherapistIsAFutanari.exe type: default -'1831700': +"1831700": installDir: Tin Hearts launch: - - arguments: '-vrmode None' + - arguments: "-vrmode None" config: oslist: windows executable: Tin Hearts.exe type: default -'1832130': +"1832130": installDir: VINE launch: - config: @@ -102071,11 +99666,11 @@ oslist: windows executable: Vine.exe type: default -'1832640': +"1832640": installDir: Mirror 2 Project X launch: - - executable: Launcher\\Mirror2.ProjectX.Launcher.exe -'1835240': + - executable: "Launcher\\\\Mirror2.ProjectX.Launcher.exe" +"1835240": installDir: Spiritfall launch: - config: @@ -102090,49 +99685,43 @@ oslist: linux executable: Spiritfall.exe type: default -'1835810': +"1835810": installDir: Amelie launch: - config: oslist: windows description: Launch - description_loc: - english: Launch executable: Amelie.exe type: default - config: oslist: macos description: Launch - description_loc: - english: Launch executable: Amelie.app type: default - config: oslist: linux description: Launch - description_loc: - english: Launch executable: Amelie.sh type: default nameLocalized: schinese: 艾蜜莉 -'1835830': +"1835830": installDir: Dead End Aegis launch: - executable: DeadEndAegis.exe -'1836860': +"1836860": installDir: Neptunia x SENRAN KAGURA Ninja Wars launch: - config: oslist: windows - executable: \\GameData\\Neptunia x SENRAN KAGURA Ninja Wars.exe + executable: "\\\\GameData\\\\Neptunia x SENRAN KAGURA Ninja Wars.exe" type: default - workingdir: \\GameData + workingdir: "\\\\GameData" nameLocalized: japanese: 閃乱忍忍忍者大戦ネプテューヌ -少女達の響艶- - spanish: 'Neptunia x SENRAN KAGURA: Ninja Wars' + spanish: "Neptunia x SENRAN KAGURA: Ninja Wars" tchinese: 閃亂忍忍忍者大戰戰機少女 -少女們的響艷- -'1837330': +"1837330": installDir: Gibbon Beyond the Trees launch: - config: @@ -102143,90 +99732,88 @@ oslist: macos executable: Gibbon.app type: default -'1837620': +"1837620": installDir: Sans Logique launch: - config: oslist: windows executable: Sans Logique.exe type: default -'1837750': +"1837750": installDir: Demeo - PC Edition launch: - config: oslist: windows executable: demeo.exe type: default -'1837920': +"1837920": installDir: Mining Cats launch: - config: oslist: windows executable: Mining Cats.exe type: default -'1839940': +"1839940": installDir: Dakar Desert Rally launch: - config: oslist: windows executable: Dakar2Game.exe -'1839950': {} -'1839960': +"1839950": {} +"1839960": installDir: DEA Gaiden launch: - executable: DEA_Gaiden.exe type: default -'18400': +"18400": installDir: Crazy Machines 2 launch: - executable: cm2.exe -'1840080': {} -'1840490': +"1840080": {} +"1840490": installDir: Christmas Massacre launch: - config: oslist: windows description: Play the game - description_loc: - english: Play the game executable: Christmas Massacre.exe type: default -'1841780': +"1841780": installDir: It follows you launch: - config: oslist: windows executable: It follows you.exe type: default -'18420': +"18420": installDir: Crazy Machines launch: - executable: CrazyMachines.exe -'1842810': +"1842810": installDir: Taiko5DX launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Taiko5DXLauncher.exe nameLocalized: japanese: 太閤立志伝Ⅴ DX schinese: 太阁立志传Ⅴ DX tchinese: 太閤立志傳Ⅴ DX -'18430': +"18430": installDir: Crazy Machines 15 launch: - - executable: new from the lab\\testapp.exe - workingdir: \"new from the lab\" -'1843860': + - executable: "new from the lab\\\\testapp.exe" + workingdir: "\\\"new from the lab\\\"" +"1843860": installDir: The Redress of Mira launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Mira.exe type: default -'1843940': +"1843940": installDir: Brigandine The Legend of Runersia launch: - config: @@ -102236,47 +99823,47 @@ nameLocalized: english: Brigandine The Legend of Runersia japanese: ブリガンダイン ルーナジア戦記 -'1844380': {} -'1844400': +"1844380": {} +"1844400": installDir: RASETSU FUMADEN launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" executable: Rasetsu Fumaden.exe nameLocalized: english: Rasetsu Fumaden japanese: らせつ封魔伝 schinese: 罗刹封魔传 -'1845630': +"1845630": installDir: Aim Lab VR launch: - - arguments: '-popupwindow' + - arguments: "-popupwindow" config: oslist: windows executable: AimLab_tb.exe type: vr -'1846170': +"1846170": installDir: Iron Lung launch: - executable: Iron Lung.exe type: default -'1846380': +"1846380": installDir: Excalibur launch: - - executable: 'link2ea://launchgame/1846380?platform=steam&theme=excalibur' + - executable: "link2ea://launchgame/1846380?platform=steam&theme=excalibur" nameLocalized: schinese: 《极品飞车™:不羁》 tchinese: 《極速快感™:桀驁不馴》 -'1846460': +"1846460": installDir: Burnhouse Lane launch: - config: oslist: windows executable: BurnhouseLane.exe -'1846920': +"1846920": installDir: Lust Academy launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Lust-Academy.exe type: default @@ -102285,28 +99872,25 @@ executable: Lust-Academy.app type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: Lust-Academy-32.exe type: default -'1846940': - installDir: There Won't Be Light +"1846940": + installDir: "There Won't Be Light" launch: - - arguments: '-d3d11' + - arguments: "-d3d11" config: - osarch: '64' + osarch: "64" oslist: windows - description: There Won't be Light (DirectX 11) - description_loc: - brazilian: There Won't be Light (DirectX 11) - english: There Won't be Light (DirectX 11) + description: "There Won't be Light (DirectX 11)" executable: BHG_4.exe type: default -'18470': +"18470": installDir: Helldorado launch: - executable: Helldorado.exe -'1847240': +"1847240": installDir: GameDevStory launch: - config: @@ -102319,104 +99903,96 @@ schinese: 游戏开发物语 (Game Dev Story) tchinese: 遊戲發展國++ (Game Dev Story) thai: เรื่องราวคนสร้างเกม (Game Dev Story) -'18480': +"18480": installDir: Mata Hari launch: - executable: MataHari.exe -'1848450': +"1848450": installDir: Nightmare of Decay launch: - config: oslist: windows executable: NightmareOfDecay.exe type: default -'1848870': +"1848870": installDir: Hologram launch: - executable: HOLOGRAM.exe -'1849000': +"1849000": installDir: SEX with HITLER launch: - config: oslist: windows - executable: Build\\SexWithHitler.exe + executable: "Build\\\\SexWithHitler.exe" type: default -'1849250': {} -'1849900': +"1849250": {} +"1849900": installDir: Among Us VR launch: - - arguments: '-xrmode openvr' + - arguments: "-xrmode openvr" config: oslist: windows executable: AmongUsVR.exe type: vr - - arguments: '-xrmode oculus' + - arguments: "-xrmode oculus" config: oslist: windows executable: AmongUsVR.exe type: othervr -'18500': +"18500": installDir: DefenseGridTheAwakening launch: - executable: DefenseGrid.exe -'1850510': +"1850510": installDir: TRIANGLE STRATEGY launch: - executable: TRIANGLE_STRATEGY.exe nameLocalized: japanese: トライアングルストラテジー -'1850570': +"1850570": installDir: DEATH STRANDING DIRECTORS CUT launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ds.exe type: default - - arguments: '-package' + - arguments: "-package" config: - betakey: 'qa-rtdbg,working-branch,preview,trial,trial-2' - osarch: '64' + betakey: "qa-rtdbg,working-branch,preview,trial,trial-2" + osarch: "64" oslist: windows description: RuntimeDebug build - description_loc: - english: RuntimeDebug build executable: ds.rtdbg.exe type: option1 - config: - betakey: 'qa-rtdbg,working-branch,preview,trial,trial-2' - osarch: '64' + betakey: "qa-rtdbg,working-branch,preview,trial,trial-2" + osarch: "64" oslist: windows description: Submission build - description_loc: - english: Submission build executable: ds.exe type: option1 - - arguments: '-package' + - arguments: "-package" config: - betakey: 'qa-rtdbg,working-branch,preview,trial,trial-2' - osarch: '64' + betakey: "qa-rtdbg,working-branch,preview,trial,trial-2" + osarch: "64" oslist: windows description: ReleaseSym build - description_loc: - english: ReleaseSym build executable: ds.ReleaseSym.exe type: option1 - - arguments: '-package' + - arguments: "-package" config: - betakey: 'qa-rtdbg,working-branch,preview,trial,trial-2' - osarch: '64' + betakey: "qa-rtdbg,working-branch,preview,trial,trial-2" + osarch: "64" oslist: windows description: Steam Submission MiSecure - description_loc: - english: Steam Submission MiSecure executable: NIP.Win64.Submission.DX12.Steam.MiSecure.exe type: option1 -'1850960': +"1850960": installDir: The Jackbox Party Pack 9 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: The Jackbox Party Pack 9.exe type: default @@ -102425,103 +100001,99 @@ executable: The Jackbox Party Pack 9.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Launcher.sh type: default -'1851020': +"1851020": installDir: River City Girls Zero launch: - executable: RCGZ.exe nameLocalized: japanese: 新・熱血硬派 くにおたちの挽歌 -with River City Girls Extra- -'1852360': {} -'1852830': +"1852360": {} +"1852830": installDir: SPACE ACCIDENT launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SpaceAccident.exe type: default -'1853680': +"1853680": installDir: ForbiddenFruitRework launch: - config: oslist: windows executable: ForbiddenFruitRework-SB-pc/ForbiddenFruitRework.exe -'1853760': {} -'1854130': +"1853760": {} +"1854130": installDir: My Boss is a Futanari launch: - config: oslist: windows executable: MyBossIsAFutanari.exe type: default -'1854140': +"1854140": installDir: My Doctor is a Futanari launch: - config: oslist: windows executable: MyDoctorIsAFutanari.exe type: default -'1854800': +"1854800": installDir: My Yandere is a Futanari launch: - config: oslist: windows executable: MyYandereIsAFutanari.exe type: default -'1854810': +"1854810": installDir: My Pet Sitter is a Futanari launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: MyPetSitterIsAFutanari.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: MyPetSitterIsAFutanari-32.exe type: default -'1855580': {} -'1856750': +"1855580": {} +"1856750": installDir: Relayer Advanced launch: - executable: Relayer.exe -'1856910': +"1856910": installDir: Ganryu 2 launch: - executable: Ganryu 2.exe -'1857080': +"1857080": installDir: The Last Starship launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: LastStarship64.exe type: default - config: oslist: macos executable: Last Starship.app -'1857580': +"1857580": installDir: Get Achievements for Achievements launch: - - arguments: '@f+ @INFOOFF' + - arguments: "@f+ @INFOOFF" config: oslist: windows description: Full screen - description_loc: - english: Full screen executable: GetAchievementsForAchievements.win32_steam.exe type: option1 - - arguments: '@f1920x1080 @z0.9 @INFOOFF' + - arguments: "@f1920x1080 @z0.9 @INFOOFF" config: oslist: windows description: Windowed - description_loc: - english: Windowed executable: GetAchievementsForAchievements.win32_steam.exe type: option2 nameLocalized: @@ -102554,23 +100126,23 @@ turkish: Başarılar için Başarılar Elde Edin ukrainian: Отримуйте Досягнення за Досягнення vietnamese: Được thành Tựu cho những thành Tựu -'1858090': +"1858090": installDir: A Modest Legacy launch: - config: oslist: windows executable: A Modest Legacy.exe -'1858620': +"1858620": installDir: Drawer launch: - config: oslist: windows executable: Drawer.exe - config: - osarch: '64' + osarch: "64" oslist: linux executable: Drawer.x86_64 -'1859360': +"1859360": installDir: DungeonVillage launch: - config: @@ -102583,15 +100155,13 @@ schinese: 冒险村物语 (Dungeon Village) tchinese: 冒險村物語 (Dungeon Village) thai: เรื่องราวดันเจี้ยน (Dungeon Village) -'1859470': +"1859470": installDir: PAC-MAN WORLD Re-PAC launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: PAC-MAN WORLD Re-PAC - description_loc: - english: PAC-MAN WORLD Re-PAC executable: PAC-MAN WORLD Re-PAC.exe type: default nameLocalized: @@ -102599,19 +100169,19 @@ koreana: 팩맨 월드 리팩 schinese: 吃豆人 吃遍世界 tchinese: 吃豆人 吃遍世界 -'1859490': +"1859490": installDir: Planet TD launch: - executable: Planet TD.exe -'18600': +"18600": installDir: Mayhem Intergalactic launch: - executable: mayhemig.exe -'1860860': +"1860860": installDir: Flower girl 2 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Flower Girl 2.exe type: default @@ -102621,15 +100191,15 @@ koreana: 플라워 스토리 2 schinese: 花妖物语2 tchinese: 花妖物語2 -'1862210': +"1862210": installDir: Dodge It! 2 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: DodgeIt2.exe type: default -'1862940': +"1862940": installDir: Tetris_for_Two launch: - config: @@ -102641,34 +100211,32 @@ - config: oslist: linux executable: game -'1864590': +"1864590": installDir: 枝江第一舞斗会 launch: - config: oslist: windows executable: 枝江第一舞斗会.exe type: default -'1864750': {} -'1865730': +"1864750": {} +"1865730": installDir: Pandemonium launch: - config: oslist: windows executable: PandemoniumSteamAL.exe type: default -'1866180': +"1866180": installDir: Hooked on You launch: - config: oslist: windows description: Regular build - description_loc: - english: Regular build executable: Hooked on You.exe type: default nameLocalized: schinese: 心醉魂迷:《黎明杀机》主题恋爱模拟游戏™ -'1866420': +"1866420": installDir: La Pucelle Ragnarok launch: - config: @@ -102679,19 +100247,15 @@ betakey: debug oslist: windows description: Debug version - description_loc: - english: Debug version executable: LaPucelle_debug_en.exe type: option2 - config: - ownsdlc: '2071700' + ownsdlc: "2071700" description: Open Digital Art Book - description_loc: - english: Open Digital Art Book executable: artbook.html nameLocalized: japanese: ラ・ピュセル†ラグナロック -'1866430': +"1866430": installDir: Rhapsody A Musical Adventure launch: - config: @@ -102702,53 +100266,49 @@ betakey: debug oslist: windows description: Debug version - description_loc: - english: Debug version executable: Rhapsody_debug_en.exe type: option3 - config: - ownsdlc: '2071690' + ownsdlc: "2071690" description: Open Digital Art Book - description_loc: - english: Open Digital Art Book executable: artbook.html nameLocalized: japanese: マール王国の人形姫 -'1867400': +"1867400": installDir: Slide Furry Futanari launch: - config: oslist: windows executable: Slide Furry Futanari.exe type: default -'1867510': +"1867510": installDir: WrestleQuest launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: WrestleQuest.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: WrestleQuest.x86_64 type: default nameLocalized: schinese: 传奇摔角手 -'1867520': +"1867520": installDir: Homestead Arcana launch: - config: oslist: windows executable: Homestead Arcana.exe type: default -'1867530': +"1867530": installDir: Solar Ash launch: - executable: Solar.exe type: default -'1868140': +"1868140": installDir: Dave the Diver launch: - config: @@ -102758,56 +100318,42 @@ betakey: nightly oslist: windows description: 내부 테스트 브랜치 - description_loc: - english: 내부 테스트 브랜치 executable: DaveTheDiver.exe - config: betakey: develop oslist: windows description: 개발용 - description_loc: - english: 개발용 executable: DaveTheDiver.exe - config: betakey: build_fgt oslist: windows description: FGT 빌드 - description_loc: - english: FGT 빌드 executable: ProjectDR.exe - config: betakey: preview oslist: windows description: Preview 빌드 - description_loc: - english: Preview 빌드 executable: ProjectDR.exe - config: betakey: build_fgt_qa oslist: windows description: FGT QA빌드 - description_loc: - english: FGT QA빌드 executable: ProjectDR.exe - config: betakey: anticheat_qa oslist: windows description: 보안 QA 빌드 - description_loc: - english: 보안 QA 빌드 executable: DaveTheDiver.exe - config: betakey: master_dev oslist: windows description: 마스터 브랜치 빌드 - description_loc: - english: 마스터 브랜치 빌드 executable: DaveTheDiver.exe nameLocalized: japanese: デイヴ・ザ・ダイバー koreana: 데이브 더 다이버 schinese: 潜水员戴夫 DAVE THE DIVER -'1868170': +"1868170": installDir: EO2HD launch: - config: @@ -102818,11 +100364,11 @@ koreana: 세계수의 미궁2 제왕의 성배 HD REMASTER schinese: 世界树的迷宫Ⅱ 诸王的圣杯 HD REMASTER tchinese: 世界樹的迷宮Ⅱ 諸王的聖杯 HD REMASTER -'1868180': +"1868180": installDir: EOHD launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Etrian Odyssey.exe nameLocalized: @@ -102830,19 +100376,17 @@ koreana: 세계수의 미궁 HD REMASTER schinese: 世界树的迷宫 HD REMASTER tchinese: 世界樹的迷宮 HD REMASTER -'1869290': {} -'1869590': +"1869290": {} +"1869590": installDir: OmegaStrikers launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Omega Strikers - description_loc: - english: Omega Strikers executable: OmegaStrikers.exe type: option1 -'18700': +"18700": installDir: And Yet It Moves launch: - config: @@ -102854,31 +100398,31 @@ - config: oslist: linux executable: AndYetItMovesSteam.sh -'1870970': +"1870970": installDir: CastilloHDRP launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: CastilloHDRP\\CastilloShatteredMirrors.exe + executable: "CastilloHDRP\\\\CastilloShatteredMirrors.exe" type: default - config: oslist: macos - executable: CastilloHDRP\\CastilloHDRP.app + executable: "CastilloHDRP\\\\CastilloHDRP.app" type: default - config: oslist: linux - executable: CastilloHDRP\\CastilloLinux.x86_64 + executable: "CastilloHDRP\\\\CastilloLinux.x86_64" type: default -'1871000': +"1871000": installDir: Furry Futanari launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: game.exe type: default -'1871310': +"1871310": installDir: Hook 2 launch: - config: @@ -102888,112 +100432,104 @@ oslist: macos executable: Hook2.app - config: - osarch: '64' + osarch: "64" oslist: linux executable: Hook2.x86_64 -'1871750': +"1871750": installDir: Camp Focus launch: - description: a relax camp. - description_loc: - english: a relax camp. executable: CampFocus.exe -'1872550': +"1872550": installDir: Destroy All Humans Clone Carnage launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch - description_loc: - english: Launch executable: DH.exe type: default -'1872680': +"1872680": installDir: The Knight Witch launch: - executable: TheKnightWitch.exe type: default nameLocalized: schinese: 魔骑少女 -'1873030': +"1873030": installDir: Wolfenstein Enemy Territory launch: - executable: et.exe -'1873510': +"1873510": installDir: Aztlan Uncovered launch: - config: oslist: windows executable: AztlanUncovered.exe type: default -'1874090': {} -'1874170': +"1874090": {} +"1874170": installDir: Shredders launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Shredders.exe type: default -'1874490': +"1874490": installDir: Potionomics launch: - config: oslist: windows executable: Potionomics.exe type: default -'1874880': +"1874880": installDir: Arma Reforger launch: - - arguments: '-exe ArmaReforgerSteam.exe -beservice' + - arguments: "-exe ArmaReforgerSteam.exe -beservice" config: - osarch: '64' + osarch: "64" oslist: windows description: Game - description_loc: - english: Game executable: ArmaReforger_BE.exe type: option1 -'1875590': +"1875590": installDir: tower launch: - executable: tower.exe type: default -'1876350': +"1876350": installDir: HEROish launch: - config: oslist: windows executable: HEROish.exe type: default -'1877020': +"1877020": nameLocalized: japanese: 呪術廻戦 戦華双乱 koreana: 주술회전 전화향명 schinese: 咒术回战 双华乱舞 tchinese: 咒術迴戰 雙華亂舞 -'1877320': +"1877320": installDir: The Walking Dead Betrayal launch: - executable: WalkingDeadBetrayal.exe nameLocalized: schinese: 行尸走肉™:背叛 -'1878210': +"1878210": installDir: Pirate Jam launch: - config: oslist: windows description: Play the game - description_loc: - english: Play the game executable: Pirate Jam.exe type: default -'1879330': +"1879330": installDir: WARRIORS OROCHI 3 Ultimate launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: WO3U.exe type: default @@ -103001,40 +100537,40 @@ japanese: 無双OROCHI2 Ultimate schinese: 无双大蛇2 终极版 tchinese: 無雙OROCHI 蛇魔2 Ultimate -'1879670': +"1879670": installDir: Futa Spell launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: FutaSpell.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: FutaSpell-32.exe type: default -'1879720': +"1879720": installDir: AFTERLIFE KILLING DEATH launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: AFTERLIFE.exe type: default -'1880230': +"1880230": installDir: Trigger Witch launch: - executable: Trigger Witch.exe -'1880470': {} -'1881120': +"1880470": {} +"1881120": installDir: TRS launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: titanstation.exe -'1881420': +"1881420": installDir: VGDD launch: - config: @@ -103044,32 +100580,32 @@ nameLocalized: english: Cardfight!! Vanguard Dear Days japanese: カードファイト!! ヴァンガード ディアデイズ -'18820': +"18820": installDir: Zero Gear launch: - executable: ZeroGear.bat -'1882260': {} -'1882261': {} -'1882262': {} -'1882370': {} -'1883260': +"1882260": {} +"1882261": {} +"1882262": {} +"1882370": {} +"1883260": installDir: LITTLE NOAH launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: LittleNoah.exe type: default - executable: KeyConfig.exe type: config nameLocalized: - english: 'Little Noah: Scion of Paradise' + english: "Little Noah: Scion of Paradise" japanese: リトル ノア 楽園の後継者 -'1884300': +"1884300": installDir: Deathsmiles I-II launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: DeathsmilesI-II.exe type: default @@ -103078,46 +100614,40 @@ koreana: 데스 스마일즈I・II schinese: Deathsmiles I・II(死亡微笑I・II) tchinese: Deathsmiles I・II(死亡微笑I・II) -'1885750': +"1885750": installDir: Betrayal At Club Low launch: - config: oslist: windows description: Windows build. - description_loc: - english: Windows build. executable: Betrayal At Club Low.exe - config: oslist: macos description: Mac build. - description_loc: - english: Mac build. executable: BetrayalMac.app - config: oslist: linux description: Linux Build - description_loc: - english: Linux Build executable: Betrayal At Club Low.x86_64 -'1887010': +"1887010": installDir: Tiny Football launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: tinyfootball.exe -'1887960': +"1887960": installDir: Shadow of Egypt launch: - config: oslist: windows executable: Shadow of Egypt.exe type: default -'1888070': +"1888070": installDir: Drain Mansion launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: DrainMansion.exe - config: @@ -103128,28 +100658,20 @@ oslist: linux executable: DrainMansion.x86_64 type: default -'1888160': +"1888160": installDir: ARMORED CORE VI FIRES OF RUBICON launch: - description: ARMORED CORE™ VI FIRES OF RUBICON™ - description_loc: - english: ARMORED CORE™ VI FIRES OF RUBICON™ executable: Game/start_protected_game.exe workingdir: Game - config: - ownsdlc: '2308563' + ownsdlc: "2308563" description: ARMORED CORE™ VI FIRES OF RUBICON™ Digital Artbook & Soundtrack - description_loc: - english: ARMORED CORE™ VI FIRES OF RUBICON™ Digital Artbook & Soundtrack - schinese: 机战佣兵™VI 境界天火™ 数字美术书&原声带 - tchinese: 機戰傭兵™VI 境界天火™ 數位美術書&原聲帶 executable: ArtbookOST/ACVI_FOR Digital Artbook and Soundtrack.exe workingdir: ArtbookOST - config: betakey: dev-debug description: DebugExe - description_loc: - english: DebugExe executable: Game/FNR_Release_Steam_d3d12.exe workingdir: Game nameLocalized: @@ -103157,18 +100679,16 @@ koreana: 아머드 코어 VI 루비콘의 화염 schinese: 机战佣兵™VI 境界天火™ tchinese: 機戰傭兵™VI 境界天火™ -'1888810': +"1888810": installDir: CubicNeonNightclub launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: SteamVR - description_loc: - english: SteamVR executable: CubicNeonNightclub.exe type: vr -'1888930': +"1888930": installDir: The Last of Us Part I launch: - arguments: service steam @@ -103176,47 +100696,41 @@ type: default - arguments: service steam crsfulldump config: - ownsdlc: '2255770' + ownsdlc: "2255770" description: (DLC only) t1x release config (full debug) - description_loc: - english: (DLC only) t1x release config (full debug) executable: t1x-release.exe - arguments: service steam config: - ownsdlc: '2255770' + ownsdlc: "2255770" description: (DLC only) t1x final-pgo-lto config (minimal debug) - description_loc: - english: (DLC only) t1x final-pgo-lto config (minimal debug) executable: t1x-final-pgo-lto.exe - arguments: service steam config: - ownsdlc: '2255770' + ownsdlc: "2255770" description: (DLC only) t1x rtm config (shipping game) - description_loc: - english: (DLC only) t1x rtm config (shipping game) executable: t1x-rtm.exe nameLocalized: italian: The Last of Us™ Parte I latam: The Last of Us™ Part I portuguese: The Last of Us™ Parte I - russian: 'Одни из нас™: Часть I' + russian: "Одни из нас™: Часть I" spanish: The Last of Us™ Parte I -'1889740': {} -'1889930': - installDir: Baldur's Gate Dark Alliance II +"1889740": {} +"1889930": + installDir: "Baldur's Gate Dark Alliance II" launch: - config: oslist: windows - executable: Baldur's Gate - Dark Alliance II.exe + executable: "Baldur's Gate - Dark Alliance II.exe" - config: oslist: macos - executable: Baldur's Gate - Dark Alliance II.app/Contents/MacOS/Baldur's Gate - Dark Alliance II - workingdir: Baldur's Gate - Dark Alliance II.app + executable: "Baldur's Gate - Dark Alliance II.app/Contents/MacOS/Baldur's Gate - Dark Alliance II" + workingdir: "Baldur's Gate - Dark Alliance II.app" - config: oslist: linux - executable: Baldur's Gate - Dark Alliance II -'1890780': {} -'1891090': + executable: "Baldur's Gate - Dark Alliance II" +"1890780": {} +"1891090": installDir: Final Vendetta launch: - config: @@ -103225,125 +100739,109 @@ type: default - config: oslist: macos - executable: Final Vendetta.app\\Contents\\MacOS\\Final Vendetta + executable: "Final Vendetta.app\\\\Contents\\\\MacOS\\\\Final Vendetta" type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Final Vendetta type: default -'1892420': {} -'1893370': +"1892420": {} +"1893370": installDir: GHOSTWARE Arena of the Dead launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: GWARE.exe type: default -'1894430': +"1894430": installDir: Plan B Terraform launch: - executable: Plan B Terraform.exe type: default -'1894730': +"1894730": installDir: Asterix & Obelix XXXL The Ram from Hibernia launch: - executable: AOA.exe nameLocalized: - english: 'Asterix & Obelix XXXL : The Ram From Hibernia' + english: "Asterix & Obelix XXXL : The Ram From Hibernia" french: Astérix & Obélix XXXL – Le Bélier d’Hibernie - german: 'Asterix & Obelix XXXL : Der Widder aus Hibernia' -'1895350': {} -'1895780': + german: "Asterix & Obelix XXXL : Der Widder aus Hibernia" +"1895350": {} +"1895780": installDir: SexySpaceAirlines launch: - config: oslist: windows executable: SexySpaceAirlines.exe type: default -'1895810': +"1895810": nameLocalized: - english: 'Infinity Strash: DRAGON QUEST The Adventure of Dai' - french: 'Infinity Strash: DRAGON QUEST The Adventure of Dai' - german: 'Infinity Strash: DRAGON QUEST The Adventure of Dai' + english: "Infinity Strash: DRAGON QUEST The Adventure of Dai" + french: "Infinity Strash: DRAGON QUEST The Adventure of Dai" + german: "Infinity Strash: DRAGON QUEST The Adventure of Dai" japanese: インフィニティ ストラッシュ ドラゴンクエスト ダイの大冒険 koreana: 인피니티 스트랏슈 드래곤 퀘스트 다이의 대모험 - latam: 'Infinity Strash: DRAGON QUEST The Adventure of Dai' + latam: "Infinity Strash: DRAGON QUEST The Adventure of Dai" schinese: 无限神速斩 勇者斗恶龙 达伊的大冒险 tchinese: 無限神速斬 勇者鬥惡龍 達伊的大冒險 -'1895880': +"1895880": installDir: Ratchet & Clank - Rift Apart launch: - config: - osarch: '64' + osarch: "64" oslist: windows - description: 'Launch Ratchet & Clank: Rift Apart' - description_loc: - english: 'Launch Ratchet & Clank: Rift Apart' + description: "Launch Ratchet & Clank: Rift Apart" executable: RiftApart.exe type: default - config: - betakey: >- - ext_partner_amd1, ext_partner_amd2, latest, latest_dev, nixxesqa_dev, nixxesqa_dev2, compat, ext_partner1, - ext_partner2, ig_alpha, ig_beta, ig_marketing1, ig_marketing2, pssqa_dev1, pssqa_dev2, ig_dev, nixxes_dev - osarch: '64' + betakey: "ext_partner_amd1, ext_partner_amd2, latest, latest_dev, nixxesqa_dev, nixxesqa_dev2, compat, ext_partner1, ext_partner2, ig_alpha, ig_beta, ig_marketing1, ig_marketing2, pssqa_dev1, pssqa_dev2, ig_dev, nixxes_dev" + osarch: "64" oslist: windows - ownsdlc: '1911670' + ownsdlc: "1911670" description: Launch Final with Debug menus - description_loc: - english: Launch Final with Debug menus executable: i29_steam_FinalDM.exe - - arguments: '-launcher -archive toc -warn review -no_debug_spam -lobby --uxanalytics' + - arguments: "-launcher -archive toc -warn review -no_debug_spam -lobby --uxanalytics" config: - betakey: >- - ext_partner_amd1, ext_partner_amd2, latest, latest_dev, nixxesqa_dev, nixxesqa_dev2, compat, ext_partner1, - ext_partner2, ig_alpha, ig_beta, ig_marketing1, ig_marketing2, pssqa_dev1, pssqa_dev2, ig_dev, nixxes_dev - osarch: '64' + betakey: "ext_partner_amd1, ext_partner_amd2, latest, latest_dev, nixxesqa_dev, nixxesqa_dev2, compat, ext_partner1, ext_partner2, ig_alpha, ig_beta, ig_marketing1, ig_marketing2, pssqa_dev1, pssqa_dev2, ig_dev, nixxes_dev" + osarch: "64" oslist: windows - ownsdlc: '1911670' + ownsdlc: "1911670" description: Launch Release - description_loc: - english: Launch Release executable: i29_steam_Release.exe nameLocalized: - brazilian: 'Ratchet & Clank: Em Uma Outra Dimensão' + brazilian: "Ratchet & Clank: Em Uma Outra Dimensão" japanese: ラチェット&クランク パラレル・トラブル - latam: 'Ratchet & Clank: Una dimensión aparte' - portuguese: 'Ratchet & Clank: Uma Dimensão à Parte' - russian: 'Ratchet & Clank: Сквозь миры' + latam: "Ratchet & Clank: Una dimensión aparte" + portuguese: "Ratchet & Clank: Uma Dimensão à Parte" + russian: "Ratchet & Clank: Сквозь миры" schinese: 瑞奇与叮当 时空跳转 - spanish: 'Ratchet & Clank: Una dimensión aparte' - turkish: 'Ratchet & Clank: Ayrı Dünyalar' -'1896170': + spanish: "Ratchet & Clank: Una dimensión aparte" + turkish: "Ratchet & Clank: Ayrı Dünyalar" +"1896170": installDir: Prince of Suburbia - Part One launch: - config: oslist: windows description: Launch - description_loc: - english: Launch executable: PrinceOfSuburbia.exe type: default - config: oslist: macos description: Launch - description_loc: - english: Launch executable: PrinceOfSuburbia.app type: default - config: oslist: linux description: Launch - description_loc: - english: Launch executable: PrinceOfSuburbia.sh type: default -'1896700': +"1896700": installDir: Wylde Flowers launch: - executable: WyldeFlowers.exe -'1897050': +"1897050": installDir: VARIOUS DAYLIFE launch: - config: @@ -103352,22 +100850,20 @@ type: default nameLocalized: japanese: バリアスデイライフ -'1898210': +"1898210": installDir: Eros Fantasy launch: - config: oslist: windows executable: Eros Fantasy.exe type: default -'1898290': +"1898290": installDir: LEGO Bricktales launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch - description_loc: - english: Launch executable: LEGO_Bricktales.exe type: default - config: @@ -103375,86 +100871,78 @@ executable: LEGO_Bricktales.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: LEGO_Bricktales.x86_64 type: default -'1898500': +"1898500": installDir: Worldless launch: - config: oslist: windows executable: Worldless.exe -'1898610': +"1898610": installDir: Hands of Necromancy launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: handsofnecromancy.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: handsofnecromancy type: default - config: oslist: macos executable: Hands of Necromancy.app/Contents/MacOS/runscript -'1898950': +"1898950": installDir: O.D.T. Escape... Or Die Trying launch: - config: oslist: windows description: Launch PC version - description_loc: - english: Launch PC version executable: odt_launcher.exe type: option1 - config: oslist: windows description: Launch PSOne version - description_loc: - english: Launch PSOne version - executable: ps1\\o.d.t..exe + executable: "ps1\\\\o.d.t..exe" type: option2 -'1899810': +"1899810": installDir: Dread X Collection 5 launch: - - arguments: '-screen-fullscreen 1' + - arguments: "-screen-fullscreen 1" config: oslist: windows description: Fullscreen Mode - description_loc: - english: Fullscreen Mode executable: Collection 5.exe type: option1 - - arguments: '-screen-fullscreen 0' + - arguments: "-screen-fullscreen 0" config: oslist: windows description: Windowed Mode - description_loc: - english: Windowed Mode executable: Collection 5.exe type: option2 -'1899950': +"1899950": installDir: Dolmenjord launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Dolmenjord.exe - config: oslist: macos - executable: Dolmenjord.app\\Contents\\MacOS\\Dolmenjord -'1900': + executable: "Dolmenjord.app\\\\Contents\\\\MacOS\\\\Dolmenjord" +"1900": installDir: Earth 2160 launch: - config: oslist: windows description: Earth 2160 executable: Earth2160_START.exe - - arguments: '-safemode' + - arguments: "-safemode" config: oslist: windows description: Earth 2160 Safe Mode (window 640x480) @@ -103481,169 +100969,163 @@ type: config - config: oslist: windows - ownsdlc: '986170' + ownsdlc: "986170" description: Earth 2160 Benchmark executable: Earth2160_Mark.bat type: none - config: oslist: windows - ownsdlc: '986170' + ownsdlc: "986170" description: Earth 2160 Sliding Puzzle executable: Puzzle.exe type: none - config: oslist: windows - ownsdlc: '986170' + ownsdlc: "986170" description: Digital Deluxe Content executable: ddc.cmd type: none - config: oslist: macos - ownsdlc: '986170' + ownsdlc: "986170" description: Digital Deluxe Content executable: ddc type: none - config: oslist: linux - ownsdlc: '986170' + ownsdlc: "986170" description: Digital Deluxe Content executable: ddc_xdg type: none -'19000': +"19000": installDir: Silent Hill Homecoming launch: - - executable: Bin\\SilentHill.exe + - executable: "Bin\\\\SilentHill.exe" workingdir: Bin -'1901370': +"1901370": installDir: Ib launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows executable: Game.exe -'1901560': +"1901560": installDir: Rescue Team Heist of the Century launch: - config: oslist: windows executable: Rescue Team Heist of the Century.exe type: default -'19020': +"19020": installDir: Puzzle Chronicles launch: - executable: PuzzleChronicles.exe -'1902020': +"1902020": installDir: Phil Alone launch: - config: oslist: windows description: Phil Alone - English - description_loc: - english: Phil Alone - English - executable: Phil Alone - Steam Version Beta\\Game.exe + executable: "Phil Alone - Steam Version Beta\\\\Game.exe" - config: oslist: windows description: Phil Alone - Portuguese BR - description_loc: - english: Phil Alone - Portuguese BR - executable: Phil Alone - Steam Version Beta PTBR\\Game.exe -'1902300': + executable: "Phil Alone - Steam Version Beta PTBR\\\\Game.exe" +"1902300": installDir: DROP launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Drop.exe type: default -'1902490': +"1902490": installDir: Aperture Desk Job launch: - config: oslist: windows - executable: game\\bin\\win64\\deskjob.exe + executable: "game\\\\bin\\\\win64\\\\deskjob.exe" type: default - - arguments: '-threads 6' + - arguments: "-threads 6" config: oslist: linux executable: game/deskjob.sh type: default -'1902690': {} -'1902850': +"1902690": {} +"1902850": installDir: Dreams in the Witch House launch: - executable: Dreams in the Witch House.exe - description: Launch Configuration Tool - description_loc: - english: Launch Configuration Tool executable: winsetup.exe -'19030': +"19030": installDir: Rocket Knight launch: - executable: RocketKnight_ConfigTool.exe -'1903670': {} -'1903910': +"1903670": {} +"1903910": nameLocalized: japanese: スレイブ ゼロ X -'1903970': +"1903970": installDir: World Championship Boxing Manager 2 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: World Championship Boxing Manager 2.exe type: default -'1904520': {} -'1904521': {} -'1904522': {} -'1904523': {} -'1904524': {} -'1904525': {} -'1904526': {} -'1904540': +"1904520": {} +"1904521": {} +"1904522": {} +"1904523": {} +"1904524": {} +"1904525": {} +"1904526": {} +"1904540": installDir: Football Manager 2023 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: fm.exe - config: oslist: macos executable: fm.app -'1904550': {} -'1904551': {} -'1904560': +"1904550": {} +"1904551": {} +"1904560": installDir: Dungeons & Dragons Ravenloft Series launch: - - executable: .\\Launcher\\Launcher.exe + - executable: ".\\\\Launcher\\\\Launcher.exe" type: default -'1904570': {} -'1904600': {} -'1904601': {} -'1904620': {} -'1904621': {} -'1904622': {} -'1904640': - installDir: Al-Qadim The Genie's Curse +"1904570": {} +"1904600": {} +"1904601": {} +"1904620": {} +"1904621": {} +"1904622": {} +"1904640": + installDir: "Al-Qadim The Genie's Curse" launch: - - executable: .\\Launcher\\Launcher.exe + - executable: ".\\\\Launcher\\\\Launcher.exe" type: default -'1904650': +"1904650": installDir: D&D Stronghold Kingdom Simulator launch: - - executable: .\\Launcher\\Launcher.exe + - executable: ".\\\\Launcher\\\\Launcher.exe" type: default -'1904790': +"1904790": nameLocalized: brazilian: Agatha Christie - Assassinato no Expresso Oriente czech: Agatha Christie - Vražda v Orient Expresu danish: Agatha Christie - Mordet i Orientekspressen dutch: Agatha Christie - Moord in de Oriënt-Expres finnish: Agatha Christie - Idän Pikajunan Arvoitus - french: Agatha Christie - Le Crime de l'Orient-Express + french: "Agatha Christie - Le Crime de l'Orient-Express" german: Agatha Christie - Mord im Orient-Express - italian: Agatha Christie - Assassinio sull'Orient Express + italian: "Agatha Christie - Assassinio sull'Orient Express" japanese: アガサ・クリスティ:オリエント急行殺人事件 - koreana: '애거서 크리스티: 오리엔트 특급 살인' + koreana: "애거서 크리스티: 오리엔트 특급 살인" norwegian: Agatha Christie - Mord på Orientekspressen polish: Agatha Christie - Morderstwo w Orient Expressie portuguese: Agatha Christie - Crime no Expresso do Oriente @@ -103654,7 +101136,7 @@ tchinese: 阿加莎·克莉絲蒂:東方快車謀殺案 turkish: Agatha Christie - Doğu Ekspresinde Cinayet ukrainian: Аґата Крісті - Убивство у Східному Експресі -'1904860': +"1904860": installDir: Legends of Kingdom Rush launch: - config: @@ -103663,16 +101145,14 @@ - config: oslist: macos executable: legends.app -'1905420': +"1905420": installDir: Henshinko! launch: - config: oslist: windows description: Launch the latest public release. - description_loc: - english: Launch the latest public release. executable: Henshinko!.exe -'1905430': +"1905430": installDir: Gravitar Recharged launch: - config: @@ -103684,38 +101164,38 @@ - config: oslist: linux executable: Gravitar_steam_Linux.x86_64 -'1905950': +"1905950": installDir: Shelter 69 launch: - config: oslist: windows executable: Shelter69.exe type: default -'1907000': +"1907000": installDir: Gloomgrave launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Gloomgrave.exe type: default -'1907440': +"1907440": installDir: Super Lone Survivor launch: - config: oslist: windows executable: Super Lone Survivor.exe -'1907720': +"1907720": installDir: AVPB launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Autonauts vs Pirate Bots.exe type: default nameLocalized: schinese: 奥拓星球:强敌 / Autonauts VS. Piratebots -'1908790': +"1908790": installDir: Penny for Your Thoughts launch: - config: @@ -103726,11 +101206,11 @@ oslist: linux executable: PennyforYourThoughts.sh type: default -'1908870': +"1908870": installDir: LIFEnotfound launch: - executable: LIFEnotfound.exe -'1909260': +"1909260": installDir: Looping Bravery launch: - config: @@ -103739,14 +101219,14 @@ - config: oslist: windows executable: Looping Bravery.exe -'1909320': +"1909320": installDir: Furry Futanari Jigsaw launch: - config: oslist: windows executable: Furry Futanari Jigsaw.exe type: default -'1911220': +"1911220": installDir: Smurfs Kart launch: - executable: Smurfs Kart.exe @@ -103760,23 +101240,23 @@ japanese: スマーフカート norwegian: Smurfenes Gokart polish: Smerfy Kart - russian: 'Смурфики: Картинг' + russian: "Смурфики: Картинг" schinese: 蓝精灵卡丁车 spanish: Pitufos Kart swedish: Smurf Gokart tchinese: 藍色小精靈卡丁車 turkish: Şirinler Kart - ukrainian: 'Смурфики: Картинг' -'1911360': + ukrainian: "Смурфики: Картинг" +"1911360": installDir: Trinity Fusion launch: - executable: Trinity Fusion.exe type: default -'1911390': +"1911390": installDir: Knightfall launch: - executable: Knightfall.exe -'1911800': +"1911800": installDir: Atari Mania launch: - config: @@ -103787,25 +101267,25 @@ oslist: linux executable: AtariMania.x86_64 type: default -'1912380': +"1912380": installDir: Soccer Story launch: - config: oslist: windows executable: Soccer Story.exe type: default -'1913160': +"1913160": installDir: COPS 2170 launch: - executable: PoL.exe type: default -'1913210': +"1913210": installDir: AEWFightForever launch: - config: oslist: windows executable: AEWFightForever.exe -'1913620': +"1913620": installDir: Puzzle Bobble S-Tribute launch: - config: @@ -103814,7 +101294,7 @@ type: default nameLocalized: japanese: パズルボブル™2X/バスト ア ムーブ™2 アーケードエディション & パズルボブル™3/バスト ア ムーブ™3 Sトリビュート -'1913670': +"1913670": installDir: METAL BLACK S-Tribute launch: - config: @@ -103823,7 +101303,7 @@ type: default nameLocalized: japanese: メタルブラック™ Sトリビュート -'1913680': +"1913680": installDir: Elevator Action Returns S-Tribute launch: - config: @@ -103832,7 +101312,7 @@ type: default nameLocalized: japanese: エレベーターアクション™ -リターンズ- Sトリビュート -'1913690': +"1913690": installDir: Cleopatra Fortune S-Tribute launch: - config: @@ -103841,103 +101321,93 @@ type: default nameLocalized: japanese: クレオパトラフォーチュン™ Sトリビュート -'1913730': +"1913730": installDir: chimeraland launch: - arguments: /steam config: oslist: windows - executable: client\\x64\\Release\\Chimeraland.exe + executable: "client\\\\x64\\\\Release\\\\Chimeraland.exe" type: default nameLocalized: japanese: 神獣伝説〜エボルション・ディバウア〜 koreana: 키메라랜드:서바이벌 이볼브드 tchinese: 妄想山海·乾坤 -'1913740': +"1913740": installDir: SUPER BOMBERMAN R2 launch: - config: oslist: windows executable: SuperBombermanR2.exe type: default -'1914680': +"1914680": installDir: Sex Search launch: - executable: Sex Search.exe -'1914940': +"1914940": installDir: 枝江小镇 launch: - config: oslist: windows - executable: \\ZhijiangTown\\ZhijiangTown.exe + executable: "\\\\ZhijiangTown\\\\ZhijiangTown.exe" type: default nameLocalized: english: Zhijiang Town schinese: 枝江小镇 -'1916290': +"1916290": installDir: One Night With Stalin launch: - config: oslist: windows executable: One Night With Stalin.exe type: default -'1917850': +"1917850": nameLocalized: japanese: 幽霊屋敷リノベーター - schinese: ' 鬼屋改造家' + schinese: " 鬼屋改造家" thai: นักปรับปรุงบ้านผีสิง -'1917920': +"1917920": installDir: Polda 7 launch: - config: oslist: windows description: Play Polda 7 - description_loc: - czech: Hrát Poldu 7 - english: Play Polda 7 executable: Polda7.exe - config: oslist: macos description: Play Polda 7 - description_loc: - czech: Hrát Poldu 7 - english: Play Polda 7 executable: Polda 7.app type: default -'1918700': +"1918700": installDir: Artistic Girl 1 launch: - executable: ArtisticGirl1.exe -'1919470': +"1919470": installDir: Atari50 launch: - - arguments: '--gfx opengl' + - arguments: "--gfx opengl" description: openGL Version - description_loc: - english: openGL Version executable: atari50.exe type: option1 - description: DirectX Version - description_loc: - english: DirectX Version executable: atari50.exe type: option2 -'1919590': +"1919590": installDir: NBA 2K23 launch: - executable: NBA2K23.exe -'19200': +"19200": installDir: Tank Universal SteamWorks Edition launch: - executable: TU.exe -'1920100': +"1920100": installDir: BackFirewall_ launch: - config: oslist: windows executable: Backfirewall_.exe type: default -'1920480': +"1920480": installDir: River City Girls 2 launch: - config: @@ -103949,61 +101419,57 @@ koreana: 열혈경파 쿠니오군 외전 리버시티 걸즈 2 schinese: 热血硬派国夫君外传 热血少女2 tchinese: 熱血硬派國夫君外傳 熱血少女2 -'1920490': - installDir: The Outer Worlds Spacer's Choice +"1920490": + installDir: "The Outer Worlds Spacer's Choice" launch: - config: oslist: windows executable: TheOuterWorldsSpacersChoiceEdition.exe type: default -'1920520': +"1920520": installDir: Risky Woods launch: - config: oslist: windows executable: dosbox.exe type: default -'1920780': +"1920780": installDir: Stray Gods launch: - executable: StrayGods.exe -'1920960': +"1920960": installDir: VPet launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: x64 - description_loc: - english: x64 executable: VPet-Simulator.Windows.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows description: x86 - description_loc: - english: x86 executable: VPet-Simulator.Windows_x86.exe type: default nameLocalized: english: VPet-Simulator schinese: 虚拟桌宠模拟器 -'1921340': +"1921340": installDir: Fallen Legion Revenants launch: - executable: Fallen Legion Revenants.exe -'1921560': +"1921560": installDir: Flowers -Le volume sur hiver- launch: - executable: FLOWERS.exe type: default -'1921740': +"1921740": installDir: CRAYON SHINCHAN The Storm Called! FLAMING KASUKABE RUNNER!! launch: - - arguments: '-windowed' + - arguments: "-windowed" config: - osarch: '64' + osarch: "64" oslist: windows executable: CRAYON SHINCHAN The Storm Called! FLAMING KASUKABE RUNNER!!.exe type: default @@ -104014,38 +101480,38 @@ schinese: 蜡笔小新 风起云涌! 火焰的春日部快腿侠!! spanish: CRAYON SHINCHAN ¡Llamando al viento! ¡El CORREDOR de las llamas de KASUKABE! tchinese: 蠟筆小新 風起雲湧! 火焰的春日部快腿俠!! -'1921980': +"1921980": nameLocalized: schinese: 地平线之间 tchinese: 地平線之間 -'1922560': +"1922560": installDir: PVZGW2 launch: - - executable: 'link2ea://launchgame/1922560?platform=steam&theme=pvzgw2' + - executable: "link2ea://launchgame/1922560?platform=steam&theme=pvzgw2" nameLocalized: - arabic: 'Plants vs. Zombies™ Garden Warfare 2: Deluxe Edition' - brazilian: 'Plants vs. Zombies™ Garden Warfare 2: Edição Deluxe' - czech: 'Plants vs. Zombies™ Garden Warfare 2: Deluxe Edition' - danish: 'Plants vs. Zombies™ Garden Warfare 2: Deluxe Edition' - dutch: 'Plants vs. Zombies™ Garden Warfare 2: Deluxe Edition' - finnish: 'Plants vs. Zombies™ Garden Warfare 2: Deluxe Edition' - french: "Plants vs. Zombies™ Garden Warfare\_2\_: Édition Deluxe" - german: 'Plants vs. Zombies™ Garden Warfare 2: Deluxe Edition' - italian: 'Plants vs. Zombies™ Garden Warfare 2: Deluxe Edition' + arabic: "Plants vs. Zombies™ Garden Warfare 2: Deluxe Edition" + brazilian: "Plants vs. Zombies™ Garden Warfare 2: Edição Deluxe" + czech: "Plants vs. Zombies™ Garden Warfare 2: Deluxe Edition" + danish: "Plants vs. Zombies™ Garden Warfare 2: Deluxe Edition" + dutch: "Plants vs. Zombies™ Garden Warfare 2: Deluxe Edition" + finnish: "Plants vs. Zombies™ Garden Warfare 2: Deluxe Edition" + french: "Plants vs. Zombies™ Garden Warfare 2 : Édition Deluxe" + german: "Plants vs. Zombies™ Garden Warfare 2: Deluxe Edition" + italian: "Plants vs. Zombies™ Garden Warfare 2: Deluxe Edition" japanese: Plants vs. Zombies™ Garden Warfare 2 デラックス版 - koreana: 'Plants vs. Zombies™ Garden Warfare 2: Deluxe Edition' - latam: 'Plants vs. Zombies™ Garden Warfare 2: Edición Deluxe' - norwegian: 'Plants vs. Zombies™ Garden Warfare 2: Deluxe Edition' - polish: 'Plants vs. Zombies™ Garden Warfare 2: Edycja Deluxe' - portuguese: 'Plants vs. Zombies™ Garden Warfare 2: Edição Deluxe' - russian: 'Plants vs. Zombies™ Garden Warfare 2: Deluxe Edition' - schinese: 'Plants vs. Zombies™ Garden Warfare 2:豪华版' - spanish: 'Plants vs. Zombies™ Garden Warfare 2: Edición Deluxe' - swedish: 'Plants vs. Zombies™ Garden Warfare 2: Deluxe Edition' + koreana: "Plants vs. Zombies™ Garden Warfare 2: Deluxe Edition" + latam: "Plants vs. Zombies™ Garden Warfare 2: Edición Deluxe" + norwegian: "Plants vs. Zombies™ Garden Warfare 2: Deluxe Edition" + polish: "Plants vs. Zombies™ Garden Warfare 2: Edycja Deluxe" + portuguese: "Plants vs. Zombies™ Garden Warfare 2: Edição Deluxe" + russian: "Plants vs. Zombies™ Garden Warfare 2: Deluxe Edition" + schinese: "Plants vs. Zombies™ Garden Warfare 2:豪华版" + spanish: "Plants vs. Zombies™ Garden Warfare 2: Edición Deluxe" + swedish: "Plants vs. Zombies™ Garden Warfare 2: Deluxe Edition" tchinese: 《植物大戰殭屍™:花園戰爭 2》 豪華版 - thai: 'Plants vs. Zombies™ Garden Warfare 2: Deluxe Edition' - turkish: 'Plants vs. Zombies™ Garden Warfare 2: Deluxe Sürüm' -'1923790': + thai: "Plants vs. Zombies™ Garden Warfare 2: Deluxe Edition" + turkish: "Plants vs. Zombies™ Garden Warfare 2: Deluxe Sürüm" +"1923790": installDir: Linelith launch: - config: @@ -104059,58 +101525,52 @@ - config: oslist: linux executable: Linelith linux.x86_64 -'1924140': +"1924140": installDir: ISEKAI FRONT LINE launch: - executable: ISEKAI FRONTLINE.exe -'1924170': +"1924170": installDir: TT3 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TT3.exe type: default -'1924400': +"1924400": installDir: Hand of Doom launch: - executable: Hand of Doom.exe -'1924780': {} -'1924810': +"1924780": {} +"1924810": installDir: Kamiwaza Way of the Thief launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Kamiwaza Way of the Thief (Shipping) - description_loc: - english: Kamiwaza Way of the Thief (Shipping) - executable: Kamiwaza\\Binaries\\Win64\\Kamiwaza.exe + executable: "Kamiwaza\\\\Binaries\\\\Win64\\\\Kamiwaza.exe" type: default - config: betakey: qa-l10n-development - osarch: '64' + osarch: "64" oslist: windows description: Kamiwaza Way of the Thief (Development) - description_loc: - english: Kamiwaza Way of the Thief (Development) - executable: Development\\Kamiwaza\\Binaries\\Win64\\Kamiwaza.exe + executable: "Development\\\\Kamiwaza\\\\Binaries\\\\Win64\\\\Kamiwaza.exe" type: option2 - - arguments: '-stompmalloc' + - arguments: "-stompmalloc" config: betakey: qa-l10n-development - osarch: '64' + osarch: "64" oslist: windows description: Kamiwaza Way of the Thief (Development+stompmalloc) - description_loc: - english: Kamiwaza Way of the Thief (Development+stompmalloc) - executable: Development\\Kamiwaza\\Binaries\\Win64\\Kamiwaza.exe + executable: "Development\\\\Kamiwaza\\\\Binaries\\\\Win64\\\\Kamiwaza.exe" type: option3 nameLocalized: japanese: 神業 盗来 -KAMIWAZA TOURAI- - koreana: "神業 도둑의 길\_-신업 도둑의 길-" + koreana: 神業 도둑의 길 -신업 도둑의 길- tchinese: 神技 盜來 -KAMIWAZA TOURAI- -'1926440': +"1926440": installDir: Twin Edge launch: - config: @@ -104125,11 +101585,11 @@ oslist: linux executable: TwinEdge.x86_64 type: default -'1926680': +"1926680": installDir: FUCK PUTIN launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: FP.exe type: default @@ -104137,39 +101597,39 @@ oslist: linux executable: FP.sh type: default -'1927720': +"1927720": installDir: Monument Valley launch: - - arguments: '-screen-fullscreen 1' + - arguments: "-screen-fullscreen 1" config: - osarch: '64' + osarch: "64" oslist: windows executable: Monument Valley.exe - - arguments: '-screen-fullscreen 1' + - arguments: "-screen-fullscreen 1" config: oslist: macos executable: Monument Valley.app -'1927740': +"1927740": installDir: Monument Valley 2 launch: - - arguments: '-screen-fullscreen 1' + - arguments: "-screen-fullscreen 1" config: - osarch: '64' + osarch: "64" oslist: windows executable: Monument Valley 2.exe - - arguments: '-screen-fullscreen 1' + - arguments: "-screen-fullscreen 1" config: oslist: macos executable: Monument Valley 2.app -'1928020': {} -'1928090': +"1928020": {} +"1928090": installDir: Cook Serve Forever launch: - config: oslist: windows executable: CookServeForever.exe type: default -'1928420': +"1928420": installDir: Farlight 84 launch: - config: @@ -104180,27 +101640,25 @@ betakey: devtest oslist: windows description: devtest - description_loc: - english: devtest executable: start_protected_game.exe type: default -'1928870': +"1928870": installDir: MinecraftLegends launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: MinecraftLegends.Windows.exe type: default -'1928980': {} -'1929870': +"1928980": {} +"1929870": installDir: Nomad Survival launch: - config: oslist: windows executable: Nomad Survival.exe type: default -'1930': +"1930": installDir: Two Worlds - Epic Edition launch: - config: @@ -104214,17 +101672,17 @@ type: none - config: oslist: windows - ownsdlc: '301210' + ownsdlc: "301210" description: Strategy Guide executable: 2WSG.exe - config: oslist: linux executable: RunGame type: default - - arguments: '-safemode' + - arguments: "-safemode" config: oslist: linux - description: 'Two Worlds: Epic Edition (safe mode)' + description: "Two Worlds: Epic Edition (safe mode)" executable: RunGame type: option1 - config: @@ -104235,37 +101693,37 @@ oslist: macos executable: Two Worlds - Epic Edition.app type: default - - arguments: '-safemode' + - arguments: "-safemode" config: oslist: windows - description: 'Two Worlds: Epic Edition (safe mode)' + description: "Two Worlds: Epic Edition (safe mode)" executable: TwoWorlds.exe type: option2 - config: oslist: windows - ownsdlc: '986290' + ownsdlc: "986290" description: Digital Deluxe Content executable: ddc.cmd type: none - config: oslist: macos - ownsdlc: '986290' + ownsdlc: "986290" description: Digital Deluxe Content executable: ddc type: none - config: oslist: linux - ownsdlc: '986290' + ownsdlc: "986290" description: Digital Deluxe Content executable: ddc_xdg type: none - config: oslist: windows - ownsdlc: '986290' + ownsdlc: "986290" description: Two Worlds Pinball executable: dp3d.exe type: none -'1930310': +"1930310": installDir: Soul King launch: - config: @@ -104278,28 +101736,28 @@ oslist: linux executable: run.sh type: default -'1931020': +"1931020": installDir: Slayers X launch: - config: oslist: windows executable: Slayers X Terminal Aftermath Vengance of the Slayer.exe type: default -'1931380': {} -'1931730': +"1931380": {} +"1931730": installDir: Fort Solis launch: - - arguments: '-demo ' + - arguments: "-demo " config: betakey: gdc2023_demo - osarch: '64' + osarch: "64" oslist: windows - executable: Sycamore\\Binaries\\Win64\\Sycamore.exe - - arguments: '-nolumenhrtonamd' + executable: "Sycamore\\\\Binaries\\\\Win64\\\\Sycamore.exe" + - arguments: "-nolumenhrtonamd" config: - osarch: '64' + osarch: "64" oslist: windows - executable: Sycamore\\Binaries\\Win64\\fortsolis.exe + executable: "Sycamore\\\\Binaries\\\\Win64\\\\fortsolis.exe" type: default - config: betakey: macintosh @@ -104308,38 +101766,38 @@ type: default nameLocalized: schinese: 索利斯堡 -'1931770': +"1931770": installDir: Chants of Sennaar launch: - executable: Chants Of Sennaar.exe nameLocalized: schinese: 巴别塔圣歌 -'19320': +"19320": installDir: Space Ark launch: - config: oslist: windows description: Launch Space Ark executable: SpaceArk.exe -'1932160': +"1932160": installDir: Neptunia Sisters VS Sisters launch: - executable: neptunia-sisters-vs-sisters.exe type: default nameLocalized: japanese: 超次元ゲイム ネプテューヌ Sisters vs Sisters -'1932640': +"1932640": nameLocalized: japanese: 幻想水滸伝 I&II HDリマスター 門の紋章戦争 / デュナン統一戦争 -'1932680': +"1932680": installDir: LunarLux launch: - config: oslist: windows executable: LunarLux.exe type: default -'1933000': {} -'1933650': +"1933000": {} +"1933650": installDir: The Imperial Gatekeeper launch: - executable: Game.exe @@ -104347,79 +101805,75 @@ nameLocalized: japanese: 帝國の関所番 schinese: 帝国入境所 -'1933740': +"1933740": installDir: The Caligula Effect 2 launch: - - arguments: '-savefolder=steam' + - arguments: "-savefolder=steam" executable: TheCaligulaEffect2.exe nameLocalized: japanese: カリギュラ2 koreana: 칼리굴라2 tchinese: 卡里古拉2 -'1934570': {} -'1934780': +"1934570": {} +"1934780": installDir: VEILED EXPERTS launch: - arguments: source=nexonsteam config: - osarch: '64' + osarch: "64" oslist: windows executable: VeiledExperts/Binaries/Win64/VeiledExperts-Win64-Shipping.exe type: default -'1935660': +"1935660": installDir: Chop Goblins launch: - executable: Chop Goblins.exe -'1935710': +"1935710": installDir: Sex Diary - Futanari Jail launch: - config: oslist: windows executable: SexDiary - FUTANARI JAIL.exe type: default -'1937160': +"1937160": installDir: The Nightmare Catcher launch: - config: oslist: windows description: Awesome Game - description_loc: - english: Awesome Game executable: NightmareCatcher.exe type: default -'1937230': +"1937230": installDir: Shatter Remaster launch: - config: oslist: windows description: Shatter Remastered - description_loc: - english: Shatter Remastered executable: Shatter.exe type: default - config: oslist: macos - executable: Shatter.app\\Contents\\MacOS\\Shatter + executable: "Shatter.app\\\\Contents\\\\MacOS\\\\Shatter" type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Shatter.x86_64 type: default nameLocalized: arabic: الارتداد الساحق النسخة الفاخرة - koreana: '《Shatter》 섀터: 리마스터 디럭스' - russian: 'Shatter: переиздание (версия Deluxe)' + koreana: "《Shatter》 섀터: 리마스터 디럭스" + russian: "Shatter: переиздание (версия Deluxe)" schinese: 《破碎砖块》豪华复刻版 tchinese: 《Shatter》重製豪華版 -'1937570': +"1937570": installDir: Horse Club Adventures 2 Hazelwood Stories launch: - config: oslist: windows executable: Horse Club Adventures 2.exe type: default -'1937620': +"1937620": installDir: Tennis Manager 2022 launch: - config: @@ -104429,102 +101883,88 @@ - config: oslist: macos executable: Tennis Manager 2022.app -'1937780': {} -'1938010': +"1937780": {} +"1938010": installDir: WILD HEARTS launch: - - executable: 'link2ea://launchgame/1938010?platform=steam&theme=BOhni' + - executable: "link2ea://launchgame/1938010?platform=steam&theme=BOhni" nameLocalized: schinese: 《WILD HEARTS™》 tchinese: 《WILD HEARTS™》 -'1938090': +"1938090": installDir: Call of Duty HQ launch: - arguments: cod.exe config: - osarch: '64' + osarch: "64" oslist: windows description: Launch Bootstrapper.exe - description_loc: - english: Launch Bootstrapper.exe executable: bootstrapper.exe type: default nameLocalized: koreana: 콜 오브 듀티® schinese: 使命召唤® tchinese: 《決勝時刻®》 -'1939160': +"1939160": installDir: Shadows Over Loathing launch: - config: oslist: macos description: launch generic game - description_loc: - english: launch generic game - executable: Shadows Over Loathing.app\\Contents\\MacOS\\Shadows Over Loathing + executable: "Shadows Over Loathing.app\\\\Contents\\\\MacOS\\\\Shadows Over Loathing" type: default - config: oslist: windows description: launch generic game - description_loc: - english: launch generic game - executable: Shadows Over Loathing\\Shadows Over Loathing.exe + executable: "Shadows Over Loathing\\\\Shadows Over Loathing.exe" type: default -'1940090': +"1940090": installDir: Murder Is Game Over launch: - executable: Game.exe -'1940340': +"1940340": installDir: Darkest Dungeon® II launch: - executable: Darkest Dungeon II.exe - - arguments: '-allowEditorPrefs' + - arguments: "-allowEditorPrefs" config: betakey: staging description: Allow Editor Prefs - description_loc: - english: Allow Editor Prefs executable: Darkest Dungeon II.exe - - arguments: '-allowEditorPrefs' + - arguments: "-allowEditorPrefs" config: betakey: visual_parity description: Allow Editor Prefs - description_loc: - english: Allow Editor Prefs executable: Darkest Dungeon II.exe - - arguments: '-allowEditorPrefs' + - arguments: "-allowEditorPrefs" config: betakey: private_test description: Allow Editor Prefs - description_loc: - english: Allow Editor Prefs executable: Darkest Dungeon II.exe -'1940370': +"1940370": installDir: WindowsNoEditor launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: © Copyright NR Studio. All Rights Reserved - description_loc: - english: © Copyright NR Studio. All Rights Reserved executable: NRStudio.exe type: default -'1940910': +"1940910": installDir: tfzhs launch: - config: oslist: windows executable: newTfzhs.exe type: default -'1941000': +"1941000": installDir: Booty Farm launch: - config: oslist: windows executable: Booty Farm.exe type: default -'1941110': +"1941110": installDir: Higurashi When They Cry Hou - Rei launch: - config: @@ -104541,25 +101981,23 @@ type: default nameLocalized: japanese: ひぐらしのなく頃に奉 礼 -'1941370': {} -'1942010': +"1941370": {} +"1942010": installDir: Vengeful Guardian Moonrider launch: - - arguments: '--force_high_performance_gpu' + - arguments: "--force_high_performance_gpu" description: Main Launch - description_loc: - english: Main Launch executable: Vengeful Guardian Moonrider.exe type: default -'1942120': +"1942120": installDir: The Complex Found Footage launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TheComplexFF.exe type: default -'1942280': +"1942280": installDir: Brotato launch: - config: @@ -104573,31 +102011,31 @@ type: editor nameLocalized: schinese: 土豆兄弟(Brotato) -'1942330': +"1942330": installDir: Haunted House launch: - config: oslist: windows executable: Haunted House.exe type: default -'1942540': +"1942540": installDir: No Cat Fights Here launch: - config: oslist: windows executable: No Cat Fights Here.exe type: default -'1942660': +"1942660": installDir: WWE 2K23 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: WWE2K23_x64.exe type: default nameLocalized: tchinese: 《WWE 2K23》 -'1943310': +"1943310": installDir: Dragon Caffi launch: - config: @@ -104611,60 +102049,58 @@ oslist: linux executable: Dragon_Caffi.x86_64 type: default -'1943610': +"1943610": installDir: Aero Tales Online The World launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Aero Tales Online The World.exe type: default -'1943850': +"1943850": installDir: Indecent Details - Find the Difference launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" executable: Game.exe type: default -'1944430': +"1944430": installDir: Amnesia The Bunker launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: AmnesiaTheBunker.exe -'1944570': +"1944570": installDir: Boneraiser Minions launch: - config: oslist: windows description: Launch - description_loc: - english: Launch executable: Boneraiser Minions.exe type: default -'1944790': +"1944790": installDir: Train Sim World 3 launch: - config: oslist: windows - executable: WindowsNoEditor\\TS2Prototype.exe -'1945780': + executable: "WindowsNoEditor\\\\TS2Prototype.exe" +"1945780": installDir: Under The Moon launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: UnderTheMoon.exe type: default -'1946010': - installDir: I'm looking for 3024 people +"1946010": + installDir: "I'm looking for 3024 people" launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: I'm looking for 3024 people.exe + executable: "I'm looking for 3024 people.exe" type: default -'1946070': +"1946070": installDir: Ten Dates launch: - config: @@ -104677,11 +102113,11 @@ type: default nameLocalized: schinese: 《十个约会》Ten Dates -'1946430': +"1946430": installDir: Garage Bad Dream Adventure launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Garage.exe type: default @@ -104689,39 +102125,37 @@ japanese: GARAGE ガラージュ schinese: GARAGE 工房库:噩梦历险记 tchinese: GARAGE 工房庫:噩夢歷險記 -'1946700': +"1946700": installDir: Layers of Fear launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: LayersOfFear.exe type: default - config: oslist: macos description: Launch - description_loc: - english: Launch executable: LayersOfFear-Mac-Shipping.app type: default -'1947500': +"1947500": installDir: The Walking Dead Saints & Sinners - Chapter 2 Retribution launch: - - arguments: '-steam -saveddirsuffix=CH2' + - arguments: "-steam -saveddirsuffix=CH2" executable: TWD.exe type: vr -'1947750': - installDir: Queen's Wish 2 The Tormentor +"1947750": + installDir: "Queen's Wish 2 The Tormentor" launch: - config: oslist: windows - executable: Queen's Wish 2.exe + executable: "Queen's Wish 2.exe" type: default - config: oslist: macos - executable: Queen's Wish 2.app\\Contents\\MacOS\\Queen's Wish 2 + executable: "Queen's Wish 2.app\\\\Contents\\\\MacOS\\\\Queen's Wish 2" type: default -'1947940': +"1947940": installDir: beat refle launch: - config: @@ -104730,7 +102164,7 @@ type: default nameLocalized: japanese: ビートリフレ -'1948280': +"1948280": installDir: Stacklands launch: - config: @@ -104739,88 +102173,78 @@ - config: oslist: macos executable: Stacklands.app -'1948430': +"1948430": installDir: Planet S launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: PlanS.exe type: default -'1948650': +"1948650": installDir: Jigsaw Novel - Futanari Nurse launch: - config: oslist: windows executable: Jigsaw Novel - Futanari Nurse.exe type: default -'1949030': +"1949030": installDir: Sherlock Holmes The Awakened launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: SH3RE\\Binaries\\Win64\\SHTA.exe + executable: "SH3RE\\\\Binaries\\\\Win64\\\\SHTA.exe" type: default - - arguments: '-log -windowed -resx=1600 -resy=900' + - arguments: "-log -windowed -resx=1600 -resy=900" config: betakey: development - osarch: '64' + osarch: "64" oslist: windows description: SH3-RE Windowed Mod With Log - description_loc: - english: SH3-RE Windowed Mod With Log - executable: SH3RE\\Binaries\\Win64\\SHTA.exe + executable: "SH3RE\\\\Binaries\\\\Win64\\\\SHTA.exe" type: option1 - config: betakey: "test huwiz-test silent-review2\t" - osarch: '64' + osarch: "64" oslist: windows description: Run SH3-RE Test - description_loc: - english: Run SH3-RE Test - executable: SH3RE\\Binaries\\Win64\\SHTA.exe + executable: "SH3RE\\\\Binaries\\\\Win64\\\\SHTA.exe" type: option1 - config: betakey: silent-review - osarch: '64' + osarch: "64" oslist: windows description: Run SH3-RE Test - description_loc: - english: Run SH3-RE Test - executable: SH3RE\\Binaries\\Win64\\SH3RE-Win64-Test.exe + executable: "SH3RE\\\\Binaries\\\\Win64\\\\SH3RE-Win64-Test.exe" type: option1 - arguments: LocalizationQA=5 UserNameQA=Loc BuildID=1925 config: betakey: localization - osarch: '64' + osarch: "64" oslist: windows description: Run SH3-RE Test for Localization - description_loc: - english: Run SH3-RE Test for Localization - executable: SH3RE\\Binaries\\Win64\\SH3RE-Win64-Test.exe + executable: "SH3RE\\\\Binaries\\\\Win64\\\\SH3RE-Win64-Test.exe" type: option1 - - arguments: '-windowed -resx=1600 -resy=900' + - arguments: "-windowed -resx=1600 -resy=900" config: betakey: huwiz-test - osarch: '64' + osarch: "64" oslist: windows description: Run SH3-RE Test Windowed 1600x900 - description_loc: - english: Run SH3-RE Test Windowed 1600x900 - executable: SH3RE\\Binaries\\Win64\\SHTA.exe + executable: "SH3RE\\\\Binaries\\\\Win64\\\\SHTA.exe" type: option1 -'1949190': +"1949190": installDir: Necrosmith launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Necrosmith.exe type: default nameLocalized: schinese: 亡灵巫师 -'1949810': +"1949810": installDir: RocketMania launch: - config: @@ -104831,36 +102255,34 @@ oslist: macos executable: RocketMania.app type: default -'1949960': +"1949960": installDir: Super Kiwi 64 launch: - config: oslist: windows description: Launch - description_loc: - english: Launch executable: SuperKiwi64.exe -'19500': +"19500": installDir: Eternitys Child launch: - - executable: Eternity's Child.exe - - description: Launch Eternity's Child MapEditor + - executable: "Eternity's Child.exe" + - description: "Launch Eternity's Child MapEditor" executable: MapEditor.exe -'1950460': +"1950460": installDir: My Trainer is a Futanari launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: MyTrainerIsAFutanari.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: MyTrainerIsAFutanari-32.exe type: default -'1951000': {} -'1951230': +"1951000": {} +"1951230": installDir: Pizza Possum launch: - config: @@ -104873,7 +102295,7 @@ type: default nameLocalized: schinese: 负鼠闹翻天 -'1952250': +"1952250": installDir: SAMURAI MAIDEN launch: - config: @@ -104890,7 +102312,7 @@ koreana: 사무라이 메이든 -SAMURAI MAIDEN- schinese: SAMURAI MAIDEN -武士少女- tchinese: SAMURAI MAIDEN -武士少女- -'1953070': +"1953070": installDir: SD Shin Kamen Rider Rumble launch: - executable: SD Shin Kamen Rider Rumble.exe @@ -104900,71 +102322,69 @@ koreana: SD 신 가면라이더 난무 schinese: SD 新 KAMEN RIDER 乱舞 tchinese: SD 新 KAMEN RIDER 亂舞 -'1953520': +"1953520": installDir: WRC Generations - The FIA WRC Official Game launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: WRCG.exe type: default -'1953760': +"1953760": installDir: Symbiotic launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: Symbiotic\\Symbiotic\\RLFPS.exe -'1953860': + executable: "Symbiotic\\\\Symbiotic\\\\RLFPS.exe" +"1953860": installDir: Garden in! launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: WindowsNoEditor\\GardenIn\\Binaries\\Win64\\GardenIn-Win64-Shipping.exe + executable: "WindowsNoEditor\\\\GardenIn\\\\Binaries\\\\Win64\\\\GardenIn-Win64-Shipping.exe" type: default - workingdir: WindowsNoEditor\\GardenIn\\Binaries\\Win64\\ + workingdir: "WindowsNoEditor\\\\GardenIn\\\\Binaries\\\\Win64\\\\" - config: betakey: development - osarch: '64' + osarch: "64" oslist: windows description: development - description_loc: - english: development - executable: WindowsNoEditor\\GardenIn\\Binaries\\Win64\\GardenIn.exe + executable: "WindowsNoEditor\\\\GardenIn\\\\Binaries\\\\Win64\\\\GardenIn.exe" type: default - config: oslist: linux - executable: LinuxNoEditor\\GardenIn\\Binaries\\Linux\\GardenIn-Linux-Shipping + executable: "LinuxNoEditor\\\\GardenIn\\\\Binaries\\\\Linux\\\\GardenIn-Linux-Shipping" type: default - workingdir: LinuxNoEditor\\GardenIn\\Binaries\\Linux\\ -'1954200': + workingdir: "LinuxNoEditor\\\\GardenIn\\\\Binaries\\\\Linux\\\\" +"1954200": installDir: Kena Bridge of Spirits launch: - config: oslist: windows executable: Kena.exe type: default -'1954300': - installDir: Porcupine's Fate +"1954300": + installDir: "Porcupine's Fate" launch: - config: oslist: windows executable: Porcupines_FateFinal.exe -'1954750': +"1954750": installDir: Acquitted launch: - config: oslist: windows executable: acquitted.exe -'1955230': +"1955230": nameLocalized: english: Penny’s Big Breakaway japanese: ペニーの大脱走 koreana: 페니의 대탈출 schinese: 《佩妮大逃脱》 tchinese: 佩妮的大逃亡 -'1955330': +"1955330": installDir: Save Room - Organization Puzzle launch: - config: @@ -104973,7 +102393,7 @@ - config: oslist: linux executable: SaveRoom.x86_64 -'1956040': +"1956040": installDir: Kingdom 80s launch: - config: @@ -104982,55 +102402,55 @@ - config: oslist: macos executable: Kingdom80s.app - - arguments: '-screen-fullscreen 1 -screen-width 1920 -screen-height 1080' + - arguments: "-screen-fullscreen 1 -screen-width 1920 -screen-height 1080" config: oslist: linux executable: Kingdom80s.x86 nameLocalized: schinese: 王国 80年代 -'1956430': +"1956430": installDir: Terminal_Velocity_Boosted_Edition launch: - executable: terminal_velocity.exe -'1956830': +"1956830": installDir: The Bathhouse 地獄銭湯 launch: - executable: TheBathhouse.exe -'1958240': +"1958240": installDir: True Skate launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SkateUE.exe type: default -'1958390': +"1958390": installDir: Innocence Or Money - V 0.0.3 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: InnocenceOrMoney.exe - config: - osarch: '32' + osarch: "32" oslist: windows executable: InnocenceOrMoney-32.exe - config: oslist: linux executable: InnocenceOrMoney.sh -'1959960': +"1959960": installDir: Burg launch: - config: oslist: windows executable: Burg.exe type: default -'1960110': +"1960110": nameLocalized: japanese: FREDERICA(フレデリカ) schinese: FREDERICA(芙蕾德利卡) tchinese: FREDERICA(芙蕾德利卡) -'1960920': +"1960920": installDir: Zetria launch: - config: @@ -105039,40 +102459,38 @@ - config: oslist: windows executable: Zetria.exe -'1961950': +"1961950": installDir: CHAOS;HEAD NOAH launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: CHAOS;HEAD NOAH - description_loc: - english: CHAOS;HEAD NOAH executable: Game_Steam.exe -'1962150': +"1962150": installDir: Mein Reiterhof 3 launch: - executable: My Life - Riding Stables 3.exe type: default nameLocalized: - arabic: 'My Life: Riding Stables 3' - danish: 'My Life: Riding Stables 3' - dutch: 'Mijn Leven: Paardenwereld 3' - english: 'My Life: Riding Stables 3' - finnish: 'My Life: Riding Stables 3' - french: 'Ma Vie: avec les Chevaux 3' + arabic: "My Life: Riding Stables 3" + danish: "My Life: Riding Stables 3" + dutch: "Mijn Leven: Paardenwereld 3" + english: "My Life: Riding Stables 3" + finnish: "My Life: Riding Stables 3" + french: "Ma Vie: avec les Chevaux 3" german: Wendy - Meine Pferdewelt - italian: 'La mia vita: Scuderia 3' - japanese: 'My Life: Riding Stables 3' - norwegian: 'My Life: Riding Stables 3' - polish: 'My Life: Riding Stables 3' - portuguese: 'My Life: Riding Stables 3' - russian: 'Моя жизнь: Моя конюшня 3' - spanish: 'Mi Vida: con Caballos 3' - swedish: 'My Life: Riding Stables 3' - turkish: 'My Life: Riding Stables 3' - ukrainian: 'My Life: Riding Stables 3' -'1962430': + italian: "La mia vita: Scuderia 3" + japanese: "My Life: Riding Stables 3" + norwegian: "My Life: Riding Stables 3" + polish: "My Life: Riding Stables 3" + portuguese: "My Life: Riding Stables 3" + russian: "Моя жизнь: Моя конюшня 3" + spanish: "Mi Vida: con Caballos 3" + swedish: "My Life: Riding Stables 3" + turkish: "My Life: Riding Stables 3" + ukrainian: "My Life: Riding Stables 3" +"1962430": installDir: MonochromeMobius Rights and Wrongs Forgotten launch: - config: @@ -105081,36 +102499,36 @@ nameLocalized: japanese: モノクロームメビウス 刻ノ代贖 tchinese: 黑白莫比烏斯 歲月的代價 -'1962450': +"1962450": installDir: RitualSummon launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: RitualSummon.exe -'1962663': +"1962663": nameLocalized: - koreana: '콜 오브 듀티®: 워존' + koreana: "콜 오브 듀티®: 워존" schinese: 使命召唤®:战争地带™ - tchinese: '《決勝時刻®: 現代戰域™》' -'1963210': + tchinese: "《決勝時刻®: 現代戰域™》" +"1963210": installDir: VALKYRIE ELYSIUM launch: - executable: VALKYRIE ELYSIUM.exe -'1963570': +"1963570": installDir: Cuisineer launch: - executable: Cuisineer.exe type: default nameLocalized: japanese: Cuisineer(キュイジニア) -'1964000': +"1964000": installDir: Sunline launch: - config: oslist: windows executable: Sunline.exe -'1965970': +"1965970": installDir: QuantumTripper launch: - config: @@ -105121,49 +102539,43 @@ oslist: macos executable: QuantumTripper.app type: default -'1966130': +"1966130": installDir: Strategic Command American Civil War launch: - executable: Launcher.exe type: default -'1966420': +"1966420": installDir: Harmony The Fall of Reverie launch: - - description: 'Harmony: The Fall of Reverie' - description_loc: - english: 'Harmony: The Fall of Reverie' - executable: HMY\\Binaries\\Win64\\HMY-Win64-Shipping.exe + - description: "Harmony: The Fall of Reverie" + executable: "HMY\\\\Binaries\\\\Win64\\\\HMY-Win64-Shipping.exe" type: option1 - config: - ownsdlc: '1977320' + ownsdlc: "1977320" description: Test - description_loc: - english: Test - executable: HMY\\Binaries\\Win64\\HMY-Win64-Test.exe + executable: "HMY\\\\Binaries\\\\Win64\\\\HMY-Win64-Test.exe" - config: - ownsdlc: '1977320' + ownsdlc: "1977320" description: Dev - description_loc: - english: Dev - executable: HMY\\Binaries\\Win64\\HMY.exe -'1966700': + executable: "HMY\\\\Binaries\\\\Win64\\\\HMY.exe" +"1966700": installDir: Windfolk Sky is just the Beginning launch: - config: oslist: windows executable: Windfolk.exe -'1966720': +"1966720": installDir: Lethal Company launch: - config: - osarch: '64' + osarch: "64" executable: Lethal Company.exe type: default -'1966900': +"1966900": installDir: 20MinuteTillDawn launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: MinutesTillDawn.exe - config: @@ -105172,7 +102584,7 @@ nameLocalized: schinese: 黎明前20分钟 tchinese: 黎明前20分鐘 -'1967260': +"1967260": installDir: DoubleDragonGaiden_ROTD launch: - config: @@ -105184,30 +102596,30 @@ executable: DoubleDragonGaiden_ROTD.app/Contents/MacOS/DoubleDragonGaiden_ROTD type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: DoubleDragonGaiden_ROTD nameLocalized: schinese: 双截龙外传:双龙出海 tchinese: 雙截龍外傳:雙龍出海 -'1967430': +"1967430": installDir: Ghost Trick launch: - config: oslist: windows executable: Ghost Trick.exe nameLocalized: - english: 'Ghost Trick: Phantom Detective' - french: 'Ghost Trick: Détective fantôme' - german: 'Ghost Trick: Phantom-Detektiv' - italian: 'Ghost Trick: Detective fantasma' + english: "Ghost Trick: Phantom Detective" + french: "Ghost Trick: Détective fantôme" + german: "Ghost Trick: Phantom-Detektiv" + italian: "Ghost Trick: Detective fantasma" japanese: ゴースト トリック koreana: Ghost Trick - latam: 'Ghost Trick: Detective fantasma' - schinese: 'Ghost Trick: Phantom Detective' - spanish: 'Ghost Trick: Detective fantasma' - tchinese: 'Ghost Trick: Phantom Detective' -'1967510': + latam: "Ghost Trick: Detective fantasma" + schinese: "Ghost Trick: Phantom Detective" + spanish: "Ghost Trick: Detective fantasma" + tchinese: "Ghost Trick: Phantom Detective" +"1967510": installDir: Railbound launch: - config: @@ -105222,7 +102634,7 @@ koreana: 레일바운드 - Railbound schinese: 轨道连结 - Railbound tchinese: 軌道連結 - Railbound -'1967870': +"1967870": installDir: Ballads at Midnight launch: - config: @@ -105233,31 +102645,29 @@ oslist: macos executable: BalladsatMidnight.app type: default -'19680': +"19680": installDir: Alice Madness Returns launch: - - executable: Binaries\\Win32\\AliceMadnessReturns.exe -'1968330': + - executable: "Binaries\\\\Win32\\\\AliceMadnessReturns.exe" +"1968330": installDir: Trasamire launch: - config: oslist: windows executable: Trasamire.exe type: default -'1968730': +"1968730": installDir: Bounty of One launch: - - description_loc: - french: 'Jouer en mode fenêtré (pour les autres résolutions que 16:9)' - executable: BountyOfOne.exe -'1968840': + - executable: BountyOfOne.exe +"1968840": installDir: Scarlet Maiden launch: - config: oslist: windows executable: ScarletMaiden.exe type: default -'1969080': +"1969080": installDir: A Building Full of Cats launch: - config: @@ -105266,7 +102676,7 @@ - config: oslist: linux executable: Building.x86_64 -'1969440': +"1969440": installDir: Sunday Gold launch: - config: @@ -105275,87 +102685,67 @@ type: default nameLocalized: schinese: 黄金魁犬 -'1969870': +"1969870": installDir: 生死狙击2 launch: - - arguments: >- - --ChannelId 10 --SubChannelId 40960 --DisableGc -force-d3d11-no-singlethreaded -affinity --updateurl - https%3A%2F%2Fmicro.ssjj2.com%2FSSJJ2%2Fboot_config%2Fsteam + - arguments: "--ChannelId 10 --SubChannelId 40960 --DisableGc -force-d3d11-no-singlethreaded -affinity --updateurl https%3A%2F%2Fmicro.ssjj2.com%2FSSJJ2%2Fboot_config%2Fsteam" config: betakey: default - osarch: '64' + osarch: "64" oslist: windows - realm: steamglobal - executable: client\\ACE-Launcher64.exe + executable: "client\\\\ACE-Launcher64.exe" type: default - - arguments: '--ChannelId 10 --SubChannelId 40960' + - arguments: "--ChannelId 10 --SubChannelId 40960" config: betakey: qatest - osarch: '64' + osarch: "64" oslist: windows - realm: steamglobal - executable: client\\ACE-Launcher64.exe + executable: "client\\\\ACE-Launcher64.exe" type: default - - arguments: >- - --ChannelId 10 --SubChannelId 40960 --DisableGc -force-d3d11-no-singlethreaded -affinity --updateurl - https%3A%2F%2Fmicro-livetest.ssjj2.com%2FSSJJ2%2Fboot_config%2Fsteam_livetest + - arguments: "--ChannelId 10 --SubChannelId 40960 --DisableGc -force-d3d11-no-singlethreaded -affinity --updateurl https%3A%2F%2Fmicro-livetest.ssjj2.com%2FSSJJ2%2Fboot_config%2Fsteam_livetest" config: betakey: test - osarch: '64' + osarch: "64" oslist: windows - realm: steamglobal - executable: client\\ACE-Launcher64.exe + executable: "client\\\\ACE-Launcher64.exe" type: default - - arguments: >- - --ChannelId 11 --SubChannelId 45056 --DisableGc -force-d3d11-no-singlethreaded -affinity --updateurl - https%3A%2F%2Fmicro.ssjj2.com%2FSSJJ2%2Fboot_config%2Fsteam + - arguments: "--ChannelId 11 --SubChannelId 45056 --DisableGc -force-d3d11-no-singlethreaded -affinity --updateurl https%3A%2F%2Fmicro.ssjj2.com%2FSSJJ2%2Fboot_config%2Fsteam" config: - osarch: '64' + osarch: "64" oslist: windows - realm: steamchina - executable: client\\ACE-Launcher64.exe + executable: "client\\\\ACE-Launcher64.exe" type: default - - arguments: ' --ChannelId 11 --SubChannelId 45056 --DisableGc -force-d3d11-no-singlethreaded -affinity' + - arguments: " --ChannelId 11 --SubChannelId 45056 --DisableGc -force-d3d11-no-singlethreaded -affinity" config: betakey: steam_china_only - osarch: '64' + osarch: "64" oslist: windows - realm: steamchina - executable: client\\hallclient.exe + executable: "client\\\\hallclient.exe" type: default - - arguments: >- - --ChannelId 10 --SubChannelId 40961 --DisableGc -force-d3d11-no-singlethreaded -affinity --updateurl - https%3A%2F%2Fmicro-tur.ssjj2.com%2FSSJJ2%2Fboot_config%2Fsteam_tur + - arguments: "--ChannelId 10 --SubChannelId 40961 --DisableGc -force-d3d11-no-singlethreaded -affinity --updateurl https%3A%2F%2Fmicro-tur.ssjj2.com%2FSSJJ2%2Fboot_config%2Fsteam_tur" config: betakey: turkish_test - osarch: '64' + osarch: "64" oslist: windows - realm: steamglobal - executable: client\\hallclient.exe + executable: "client\\\\hallclient.exe" type: default - - arguments: >- - --ChannelId 10 --SubChannelId 40962 --DisableGc -force-d3d11-no-singlethreaded -affinity --updateurl - https%3A%2F%2Fmicro-mx.ssjj2.com%2FSSJJ2%2Fboot_config%2Fofficial + - arguments: "--ChannelId 10 --SubChannelId 40962 --DisableGc -force-d3d11-no-singlethreaded -affinity --updateurl https%3A%2F%2Fmicro-mx.ssjj2.com%2FSSJJ2%2Fboot_config%2Fofficial" config: betakey: westusa_test - osarch: '64' + osarch: "64" oslist: windows - realm: steamglobal - executable: client\\hallclient.exe + executable: "client\\\\hallclient.exe" type: default - - arguments: >- - --ChannelId 10 --SubChannelId 40963 --DisableGc -force-d3d11-no-singlethreaded -affinity --updateurl - http%3A%2F%2Fmicro-brazil.ssjj2.com%2FSSJJ2%2Fboot_config%2Fofficial + - arguments: "--ChannelId 10 --SubChannelId 40963 --DisableGc -force-d3d11-no-singlethreaded -affinity --updateurl http%3A%2F%2Fmicro-brazil.ssjj2.com%2FSSJJ2%2Fboot_config%2Fofficial" config: betakey: brazil_test - osarch: '64' + osarch: "64" oslist: windows - realm: steamglobal - executable: client\\hallclient.exe + executable: "client\\\\hallclient.exe" type: default nameLocalized: sc_schinese: 生死狙击2-国服 -'1970580': +"1970580": installDir: Backpack Hero launch: - config: @@ -105372,69 +102762,61 @@ type: default nameLocalized: schinese: 背包英雄 Backpack Hero -'1971650': +"1971650": installDir: Octopath_Traveler2 launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: Octopath_Traveler2\\Binaries\\Win64\\Octopath_Traveler2-Win64-Shipping.exe + executable: "Octopath_Traveler2\\\\Binaries\\\\Win64\\\\Octopath_Traveler2-Win64-Shipping.exe" type: default - config: - betakey: 'ship-qa-denuvo,ship-qa,ship-qa-release,ship-temporary' - osarch: '64' + betakey: "ship-qa-denuvo,ship-qa,ship-qa-release,ship-temporary" + osarch: "64" oslist: windows description: ship launch only - description_loc: - english: ship launch only - executable: Octopath_Traveler2\\Binaries\\Win64\\Octopath_Traveler2-Win64-Shipping.exe + executable: "Octopath_Traveler2\\\\Binaries\\\\Win64\\\\Octopath_Traveler2-Win64-Shipping.exe" type: config - config: - betakey: 'dev-qa-release,dev-qa,dev-test,dev-temporary' - osarch: '64' + betakey: "dev-qa-release,dev-qa,dev-test,dev-temporary" + osarch: "64" oslist: windows description: dev launch only - description_loc: - english: dev launch only - executable: Octopath_Traveler2\\Binaries\\Win64\\Octopath_Traveler2.exe + executable: "Octopath_Traveler2\\\\Binaries\\\\Win64\\\\Octopath_Traveler2.exe" type: config nameLocalized: japanese: オクトパストラベラー II koreana: 옥토패스 트래블러 II schinese: 歧路旅人 II tchinese: 歧路旅人 II -'1971870': +"1971870": installDir: Mortal Kombat 1 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: MK12.exe type: default - - arguments: '-bootconfig=Test' + - arguments: "-bootconfig=Test" config: betakey: develop drop prod ratings moon phantom elks moose reindeer cookie view - osarch: '64' + osarch: "64" oslist: windows description: Mortal Kombat 1 Debug - description_loc: - english: Mortal Kombat 1 Debug executable: MK12.exe type: option1 - - arguments: '-bootconfig=Test -logpso' + - arguments: "-bootconfig=Test -logpso" config: betakey: develop drop prod - osarch: '64' + osarch: "64" oslist: windows description: Mortal Kombat 1 Debug + PSO Cache Collecting - description_loc: - english: Mortal Kombat 1 Debug + PSO Cache Collecting executable: MK12.exe type: option1 nameLocalized: - schinese: '真人快打 1 ' - tchinese: '真人快打 1 ' -'1972400': + schinese: "真人快打 1 " + tchinese: "真人快打 1 " +"1972400": installDir: Package Rush launch: - config: @@ -105443,9 +102825,9 @@ type: default - config: oslist: macos - executable: PackageRush.app\\Contents\\MacOS\\PackageRush + executable: "PackageRush.app\\\\Contents\\\\MacOS\\\\PackageRush" type: default -'1972440': +"1972440": installDir: Shotgun King The Final Checkmate launch: - config: @@ -105456,87 +102838,85 @@ config: oslist: windows description: Compatibility mode - CRT effect disabled - description_loc: - english: Compatibility mode - CRT effect disabled executable: shotgun_king.exe type: option1 -'1973040': +"1973040": installDir: Hunt for Junk launch: - config: oslist: windows executable: Hunt For Junk.exe type: default -'1973710': +"1973710": installDir: HeavenBurnsRed launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: HeavenBurnsRed.exe nameLocalized: japanese: ヘブンバーンズレッド koreana: 헤븐 번즈 레드 tchinese: 緋染天空 Heaven Burns Red -'1974050': +"1974050": installDir: Torchlight Infinite launch: - arguments: UserDir=TorchLight config: oslist: windows - executable: UE_game\\Binaries\\Win64\\torchlight_infinite.exe + executable: "UE_game\\\\Binaries\\\\Win64\\\\torchlight_infinite.exe" type: default nameLocalized: - arabic: 'Torchlight: Infinite' - brazilian: 'Torchlight: Infinite' - bulgarian: 'Torchlight: Infinite' - czech: 'Torchlight: Infinite' - danish: 'Torchlight: Infinite' - dutch: 'Torchlight: Infinite' - english: 'Torchlight: Infinite' - finnish: 'Torchlight: Infinite' - french: 'Torchlight: Infinite' - german: 'Torchlight: Infinite' - greek: 'Torchlight: Infinite' - hungarian: 'Torchlight: Infinite' - italian: 'Torchlight: Infinite' + arabic: "Torchlight: Infinite" + brazilian: "Torchlight: Infinite" + bulgarian: "Torchlight: Infinite" + czech: "Torchlight: Infinite" + danish: "Torchlight: Infinite" + dutch: "Torchlight: Infinite" + english: "Torchlight: Infinite" + finnish: "Torchlight: Infinite" + french: "Torchlight: Infinite" + german: "Torchlight: Infinite" + greek: "Torchlight: Infinite" + hungarian: "Torchlight: Infinite" + italian: "Torchlight: Infinite" japanese: トーチライト:インフィニティ - koreana: '토치라이트:인피니트' - latam: 'Torchlight: Infinite' - norwegian: 'Torchlight: Infinite' - polish: 'Torchlight: Infinite' - portuguese: 'Torchlight: Infinite' - romanian: 'Torchlight: Infinite' - russian: 'Torchlight: Infinite' + koreana: "토치라이트:인피니트" + latam: "Torchlight: Infinite" + norwegian: "Torchlight: Infinite" + polish: "Torchlight: Infinite" + portuguese: "Torchlight: Infinite" + romanian: "Torchlight: Infinite" + russian: "Torchlight: Infinite" schinese: 火炬之光:无限 - spanish: 'Torchlight: Infinite' - swedish: 'Torchlight: Infinite' + spanish: "Torchlight: Infinite" + swedish: "Torchlight: Infinite" tchinese: 火炬之光:無限 - thai: 'Torchlight: Infinite' - turkish: 'Torchlight: Infinite' - ukrainian: 'Torchlight: Infinite' - vietnamese: 'Torchlight: Infinite' -'1974090': + thai: "Torchlight: Infinite" + turkish: "Torchlight: Infinite" + ukrainian: "Torchlight: Infinite" + vietnamese: "Torchlight: Infinite" +"1974090": installDir: Slava Ukraini launch: - config: oslist: windows - executable: Slava Ukraini\\Slava Ukraini.exe + executable: "Slava Ukraini\\\\Slava Ukraini.exe" type: default -'1975360': +"1975360": installDir: DRAINUS launch: - executable: DRAINUS.exe -'1975440': +"1975440": installDir: Under The Waves launch: - executable: UnderTheWaves.exe type: default -'1975660': +"1975660": installDir: Space Tail Every Journey Leads Home launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Space Tail.exe type: default @@ -105544,12 +102924,12 @@ oslist: linux executable: Space Tail.x86_64 type: default -'1976720': +"1976720": installDir: SGQJZ720 launch: - executable: game.exe type: none -'1976950': +"1976950": installDir: Desktop Dungeons Rewind launch: - config: @@ -105558,75 +102938,65 @@ type: default nameLocalized: schinese: 桌面地下城:回溯 -'1977170': {} -'1978210': +"1977170": {} +"1978210": installDir: The Grinch launch: - config: oslist: windows executable: TheGrinch.exe nameLocalized: - brazilian: 'O Grinch: Aventuras de Natal' - dutch: "De Grinch: Kerstavonturen\_" - french: 'Le Grinch : Les aventures de Noël' - german: 'Der Grinch: Weihnachtsabenteuer' - italian: 'Il Grinch: Avventure Natalizie' - koreana: '그린치: 크리스마스 어드벤처' - latam: 'The Grinch: Aventuras navideñas' - polish: 'The Grinch: Świąteczne przygody' - russian: 'Гринч: рождественские приключения' + brazilian: "O Grinch: Aventuras de Natal" + dutch: "De Grinch: Kerstavonturen " + french: "Le Grinch : Les aventures de Noël" + german: "Der Grinch: Weihnachtsabenteuer" + italian: "Il Grinch: Avventure Natalizie" + koreana: "그린치: 크리스마스 어드벤처" + latam: "The Grinch: Aventuras navideñas" + polish: "The Grinch: Świąteczne przygody" + russian: "Гринч: рождественские приключения" schinese: 《圣诞怪杰:圣诞大冒险》 tchinese: 鬼靈精:聖誕節大冒險 - ukrainian: 'Ґрінч: Різдвяні пригоди' - vietnamese: 'The Grinch: Những cuộc phiêu lưu Giáng sinh' -'1978800': + ukrainian: "Ґрінч: Різдвяні пригоди" + vietnamese: "The Grinch: Những cuộc phiêu lưu Giáng sinh" +"1978800": installDir: AQtion launch: - config: oslist: windows description: AQtion - description_loc: - english: AQtion executable: aqtion.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: AQtion - description_loc: - english: AQtion executable: aqtion type: default - config: oslist: macos description: AQtion - description_loc: - english: AQtion executable: launch.sh type: default - config: betakey: playtest - osarch: '64' + osarch: "64" oslist: windows description: AQtion - description_loc: - english: AQtion executable: aqtion.exe type: default -'1979210': +"1979210": installDir: Dissent launch: - description: Dissent - description_loc: - english: Dissent - executable: Dissent-1.0-pc\\Dissent-32.exe -'1979440': {} -'19800': + executable: "Dissent-1.0-pc\\\\Dissent-32.exe" +"1979440": {} +"19800": installDir: Brothers in Arms Earned in Blood launch: - - executable: system\\eib.exe + - executable: "system\\\\eib.exe" workingdir: system -'1980920': +"1980920": installDir: DPET launch: - config: @@ -105635,30 +103005,30 @@ - config: oslist: macos executable: DPET.app -'19810': +"19810": installDir: The Sum of All Fears launch: - executable: SOAF.exe -'1981570': +"1981570": installDir: Land of the Vikings launch: - executable: VikingOyunu.exe -'1981610': +"1981610": installDir: Wanted Dead launch: - config: oslist: windows executable: WDGame.exe type: default -'1982150': +"1982150": installDir: RWBY Arrowfell launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: RWBY_x64.exe type: default -'1982340': +"1982340": installDir: Blanc launch: - executable: BlancLauncher.exe @@ -105668,7 +103038,7 @@ koreana: Blanc 블랑 schinese: 白之旅 tchinese: 白之旅 -'1982750': +"1982750": installDir: WONDER POT launch: - config: @@ -105676,44 +103046,40 @@ oslist: windows executable: WONDER POT.exe type: default -'19830': +"19830": installDir: Rainbow Six 3 Gold launch: - - description: 'Launch Rainbow Six 3: Raven Shield' - executable: system\\ravenshield.exe -'1983430': + - description: "Launch Rainbow Six 3: Raven Shield" + executable: "system\\\\ravenshield.exe" +"1983430": installDir: Viltnemda launch: - config: oslist: windows description: Launch - description_loc: - english: Launch executable: Viltnemda.exe type: default -'1983840': +"1983840": installDir: xyxz840 launch: - executable: game.exe type: none -'1983850': +"1983850": installDir: NEOGEO POCKET COLOR SELECTION Vol.2 launch: - config: oslist: windows description: Launch - description_loc: - english: Launch executable: NGPCS.exe type: default -'1983940': +"1983940": installDir: txy launch: - config: oslist: windows executable: play.exe type: default -'1983970': +"1983970": installDir: Affogato launch: - config: @@ -105724,22 +103090,20 @@ japanese: アフォガート schinese: 加把劲魔女 tchinese: Affogato -'1983990': {} -'1984110': +"1983990": {} +"1984110": installDir: Goetia 2 launch: - executable: Goetia 2.exe -'1984350': +"1984350": installDir: 打工吧!天使酱 ~天使在魔界的劳改生活~ launch: - config: oslist: windows description: 打工吧!天使酱 - description_loc: - english: 打工吧!天使酱 executable: Game.exe type: default -'1985260': +"1985260": installDir: Kinkoi Golden Time launch: - executable: kinkoi_gt.exe @@ -105747,74 +103111,70 @@ japanese: 金色ラブリッチェ -Golden Time- schinese: 金辉恋曲四重奏 -Golden Time- tchinese: 金輝戀曲四重奏 -Golden Time- -'1985520': {} -'1985690': +"1985520": {} +"1985690": installDir: The Looker launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: The Looker.exe type: default -'1985810': +"1985810": installDir: Call of Duty Black Ops Cold War launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: BlackOpsColdWar.exe type: default -'1985820': +"1985820": installDir: Call of Duty Vanguard launch: - arguments: Vanguard.exe config: - osarch: '64' + osarch: "64" oslist: windows description: Launch Bootstrapper.exe - description_loc: - english: Launch Bootstrapper.exe executable: bootstrapper.exe type: default -'1986760': +"1986760": installDir: Police Stories The Academy launch: - config: oslist: windows executable: PoliceStories.exe type: default -'1986770': +"1986770": installDir: Jacktus Green launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Jacktus Green.exe type: default -'1986780': +"1986780": installDir: MetalBorn launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: WindowsNoEditor\\FPS_Prototype.exe + executable: "WindowsNoEditor\\\\FPS_Prototype.exe" type: default -'1987080': +"1987080": installDir: Inside The Backrooms launch: - config: oslist: windows executable: Inside the Backrooms.exe - - arguments: '-vrmode OpenXR -enableVR' + - arguments: "-vrmode OpenXR -enableVR" config: - osarch: '64' + osarch: "64" oslist: windows description: VR Compatibility Mode - description_loc: - english: VR Compatibility Mode executable: Inside the Backrooms.exe type: vr -'1988190': +"1988190": installDir: College Craze launch: - config: @@ -105826,7 +103186,7 @@ - config: oslist: macos executable: Contents/MacOS/CollegeCraze -'1988540': +"1988540": installDir: The Zachtronics Solitaire Collection launch: - config: @@ -105841,102 +103201,98 @@ oslist: linux executable: TheZachtronicsSolitaireCollection type: default -'1988750': +"1988750": installDir: Project Crypt launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Fidelity (64-bit) - description_loc: - english: Fidelity (64-bit) executable: Project_Crypt_GZ/project_crypt.exe type: option1 - config: oslist: windows - ownsdlc: '1988920' + ownsdlc: "1988920" description: Performance (32-bit) - description_loc: - english: Performance (32-bit) executable: project_crypt_LZ/lzdoom.exe type: option2 -'1988830': +"1988830": installDir: ProjectWunderwaffeProlog launch: - executable: ProjectWunderwaffe.exe type: default -'1989270': {} -'1989910': {} -'19900': +"1989270": {} +"1989910": {} +"19900": installDir: Far Cry 2 launch: - - executable: bin\\FarCry2.exe + - executable: "bin\\\\FarCry2.exe" workingdir: bin - description: Launch Map Editor - executable: bin\\FC2Editor.exe + executable: "bin\\\\FC2Editor.exe" workingdir: bin - description: Launch Benchmark Tool - executable: bin\\FC2BenchmarkTool.exe + executable: "bin\\\\FC2BenchmarkTool.exe" workingdir: bin - description: Launch Dedicated Server - executable: bin\\FC2ServerLauncher.exe + executable: "bin\\\\FC2ServerLauncher.exe" workingdir: bin -'1990190': +"1990190": installDir: Futanari Sex - BDSM Room launch: - config: oslist: windows executable: Futanari_Sex_BDSM_Room_win.exe type: default -'1990690': +"1990690": installDir: Cooking Live Restaurant Game launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: cl.exe type: default -'1990730': +"1990730": installDir: Pylorus - Footsteps of Greed launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: pylorus.exe type: default -'1991990': +"1991990": installDir: Futanari Sex - The Fertility Doctor launch: - config: oslist: windows executable: FUTANARI SEX - The Fertility Doctor.exe type: default -'1992120': +"1992120": installDir: Gamebook Edgar A. Poe The Oval Portrait launch: - config: oslist: windows executable: Gamebook The Oval Portrait.exe -'1992430': +"1992430": installDir: Cheese Game launch: - config: oslist: windows - executable: CheeseGameBuild\\Cheese Game.exe -'1993230': + executable: "CheeseGameBuild\\\\Cheese Game.exe" +"1993230": installDir: GDZC launch: - config: oslist: windows executable: game.exe -'1994220': - installDir: It's Dark +"1994220": + installDir: "It's Dark" launch: - config: oslist: windows - executable: It'sDark\\Its Dark.exe + executable: "It'sDark\\\\Its Dark.exe" type: default -'1994230': +"1994230": installDir: Almost Home Now launch: - config: @@ -105945,32 +103301,28 @@ nameLocalized: schinese: 快到家了,快到家了 tchinese: 快到家了,快到家了 -'1994680': +"1994680": installDir: Cazzarion Demon Hunting launch: - config: oslist: windows description: Launch - description_loc: - english: Launch executable: Cazzarion_Demon_Hunting.exe type: default -'1995700': - installDir: Champ's Nightmare +"1995700": + installDir: "Champ's Nightmare" launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: Champ's Nightmare.exe + executable: "Champ's Nightmare.exe" type: default - config: oslist: macos description: Mac - description_loc: - english: Mac executable: Champs_Nightmare.app type: default -'1996420': +"1996420": installDir: ICommissionedSomeBees launch: - config: @@ -105987,8 +103339,8 @@ schinese: 我委托了一些蜜蜂 spanish: Mi gran comisión de abejas swedish: Jag anlitade några bin -'1996770': {} -'1997040': +"1996770": {} +"1997040": installDir: MARVEL SNAP launch: - config: @@ -105999,123 +103351,109 @@ japanese: MARVEL SNAP (マーベル・スナップ) koreana: 마블스냅 tchinese: 漫威:瞬戰超能 -'1997080': +"1997080": installDir: Just A Humble Swordsmith launch: - executable: Just a Humble Swordsmith.exe type: default -'1997230': +"1997230": installDir: LIGHTWORKERS launch: - config: oslist: windows executable: LIGHTWORKERS.exe -'1997520': +"1997520": installDir: Futanari Sex - The New Boss launch: - config: oslist: windows executable: FUTANARI SEX - The New Boss.exe type: default -'1997560': +"1997560": installDir: Futanari Sex - Unexpected Roomate launch: - config: oslist: windows executable: Futanari_Sex_Unexpected_Roommate.exe type: default -'19980': +"19980": installDir: Prince of Persia launch: - - arguments: '-uplay_steam_mode' - description: '' - executable: Launcher\\Launcher.exe - workingdir: '' -'1998330': + - arguments: "-uplay_steam_mode" + description: "" + executable: "Launcher\\\\Launcher.exe" + workingdir: "" +"1998330": installDir: Yomawari Lost in the Dark launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: yomawariMaster.exe - config: betakey: debug - osarch: '64' + osarch: "64" oslist: windows description: Yomawari Lost In the Dark (Development) - description_loc: - english: Yomawari Lost In the Dark (Development) executable: YomawariDebug.exe type: option3 - - arguments: \"Yomawari Lost in the Dark - Mini Art Book.pdf\" + - arguments: "\\\"Yomawari Lost in the Dark - Mini Art Book.pdf\\\"" config: - ownsdlc: '2134170' + ownsdlc: "2134170" description: Open Mini Art Book - description_loc: - english: Open Mini Art Book executable: launch.bat nameLocalized: japanese: 夜廻三 - koreana: '요마와리 3: 떠도는 밤' + koreana: "요마와리 3: 떠도는 밤" schinese: 夜回三 tchinese: 夜迴三 -'1998340': +"1998340": installDir: Labyrinth of Galleria The Moon Society launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: LabyrinthOfGalleria.exe type: default - config: betakey: debug_with_pdb description: Debug - description_loc: - english: Debug executable: LabyrinthOfGalleria.exe type: option1 - config: betakey: debug_with_pdb description: Release - description_loc: - english: Release executable: LabyrinthOfGalleriaR.exe type: option2 - config: betakey: release_with_pdb description: Release - description_loc: - english: Release executable: LabyrinthOfGalleria.exe type: option1 - config: betakey: release_with_pdb description: Debug - description_loc: - english: Debug executable: LabyrinthOfGalleriaD.exe type: option2 - - arguments: \"Tome of Wonders Art Book.pdf\" + - arguments: "\\\"Tome of Wonders Art Book.pdf\\\"" config: - ownsdlc: '2253220' + ownsdlc: "2253220" description: Open Tome of Wonders Art Book - description_loc: - english: Open Tome of Wonders Art Book executable: launch.bat nameLocalized: japanese: ガレリアの地下迷宮と魔女ノ旅団 -'19990': +"19990": installDir: Shaun White Snowboarding launch: - executable: ShaunWhiteSnowboarding.exe -'1999090': +"1999090": installDir: UltimateFighters launch: - config: oslist: windows executable: UltimateFighters.exe type: default -'1999140': +"1999140": installDir: Extraneum launch: - config: @@ -106126,7 +103464,7 @@ oslist: linux executable: extraneum.x86_64 type: default -'1999770': +"1999770": installDir: Atelier Ryza 3 launch: - executable: Atelier_Ryza_3.exe @@ -106135,34 +103473,32 @@ koreana: 라이자의 아틀리에3 ~종극의 연금술사와 비밀의 열쇠~ schinese: 莱莎的炼金工房3 ~终结之炼金术士与秘密钥匙~ tchinese: 萊莎的鍊金工房3 ~終結之鍊金術士與秘密鑰匙~ -'20': +"20": installDir: Half-Life launch: - - arguments: '-steam -game tfc' + - arguments: "-steam -game tfc" config: oslist: windows executable: hl.exe - vacmodulefilename: resource\\sourceinit.dat - - arguments: '-steam -game tfc' + - arguments: "-steam -game tfc" config: oslist: macos executable: hl.sh - vacmodulefilename: resource\\sourceinit_macos.dat - - arguments: '-steam -game tfc' + - arguments: "-steam -game tfc" config: oslist: linux executable: hl.sh -'200010': +"200010": installDir: Quantum Conundrum launch: - arguments: try_mainmenu -noscreenmessages -disabledebugoutputdevice -fullscreen -vsync -norc -seekfreeloadingpcconsole - executable: Binaries\\Win32\\TryGame-Win32-Shipping.exe -'2000150': + executable: "Binaries\\\\Win32\\\\TryGame-Win32-Shipping.exe" +"2000150": installDir: Banana Drama launch: - config: oslist: windows - executable: Master_Build_Windows\\Banana_Drama_Git.exe + executable: "Master_Build_Windows\\\\Banana_Drama_Git.exe" type: default - config: oslist: macos @@ -106170,137 +103506,135 @@ type: default - config: oslist: linux - executable: Master_Build_Linux\\LINUX_RELEASE_BUILD.x86_64 + executable: "Master_Build_Linux\\\\LINUX_RELEASE_BUILD.x86_64" type: default -'2000180': +"2000180": installDir: Office Run launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: OfficeRun.exe type: default -'200020': +"200020": installDir: Global Ops Commando Libya launch: - - executable: Binaries\\GlobalOps.exe -'2000270': + - executable: "Binaries\\\\GlobalOps.exe" +"2000270": installDir: Dual Universe launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Bin/equ8-launch-dual.exe type: default -'2000320': - installDir: 'Keep it Cool, Man' +"2000320": + installDir: "Keep it Cool, Man" launch: - config: oslist: windows - executable: 'Keep it Cool, Man.exe' + executable: "Keep it Cool, Man.exe" type: default - config: oslist: linux - executable: 'Keep it Cool, Man.x86_64' + executable: "Keep it Cool, Man.x86_64" type: default - config: oslist: macos - executable: 'Contents/MacOS/Keep it Cool, Man' + executable: "Contents/MacOS/Keep it Cool, Man" type: default -'200050': +"200050": installDir: Naval War Arctic Circle launch: - config: oslist: windows executable: NWAC.exe type: default -'2000760': {} -'2000770': {} -'200080': +"2000760": {} +"2000770": {} +"200080": installDir: Nancy Drew - Shadow Waters Edge launch: - config: oslist: windows executable: Shadow.exe type: default - - arguments: '-psn' + - arguments: "-psn" config: oslist: macos - executable: Shadow at the Water's Edge.app + executable: "Shadow at the Water's Edge.app" type: none -'2000950': +"2000950": installDir: Call of Duty Modern Warfare launch: - arguments: ModernWarfare.exe config: - osarch: '64' + osarch: "64" oslist: windows description: Launch Bootstrapper.exe - description_loc: - english: Launch Bootstrapper.exe executable: bootstrapper.exe type: default -'200110': +"200110": installDir: nosgoth launch: - - arguments: '-steam' + - arguments: "-steam" config: oslist: windows description: Nosgoth Launcher executable: NosgothLauncher.exe type: none - config: - betakey: 'phos_beta,qa,m0ntr34l,mtl_m1l3st0n3,closedbeta,sel_marketing,msreview,sem_loc_team,psyonix' + betakey: "phos_beta,qa,m0ntr34l,mtl_m1l3st0n3,closedbeta,sel_marketing,msreview,sem_loc_team,psyonix" oslist: windows description: No Nosgoth Launcher executable: Binaries/Win32/Nosgoth.exe type: none workingdir: Binaries/Win32 -'200130': +"200130": installDir: PuzzlerWorld2 launch: - executable: Puzzler World 2.exe -'2001340': +"2001340": installDir: Fuga Melodies of Steel 2 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TANK.exe type: default nameLocalized: - english: 'Fuga: Melodies of Steel 2' - french: 'Fuga: Melodies of Steel 2' - german: 'Fuga: Melodies of Steel 2' - italian: 'Fuga: Melodies of Steel 2' + english: "Fuga: Melodies of Steel 2" + french: "Fuga: Melodies of Steel 2" + german: "Fuga: Melodies of Steel 2" + italian: "Fuga: Melodies of Steel 2" japanese: 戦場のフーガ2 koreana: 전장의 푸가2 - latam: 'Fuga: Melodies of Steel 2' - portuguese: 'Fuga: Melodies of Steel 2' - russian: 'Fuga: Melodies of Steel 2' + latam: "Fuga: Melodies of Steel 2" + portuguese: "Fuga: Melodies of Steel 2" + russian: "Fuga: Melodies of Steel 2" schinese: 战场的赋格曲2 - spanish: 'Fuga: Melodies of Steel 2' + spanish: "Fuga: Melodies of Steel 2" tchinese: 戰場的賦格曲 2 -'200150': +"200150": installDir: Battlechess Game of Kings launch: - config: oslist: windows description: Launch executable: battlechessgok.exe -'200170': +"200170": installDir: WormsRevolution launch: - executable: WormsRevolution.exe -'200190': +"200190": installDir: sideway launch: - - executable: Win32\\Sideway_ShippingWin32Steam.exe -'200210': + - executable: "Win32\\\\Sideway_ShippingWin32Steam.exe" +"200210": installDir: Realm of the Mad God launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Play Realm of the Mad God Exalt executable: RotMG Exalt Launcher.exe @@ -106310,17 +103644,17 @@ description: Play Realm of the Mad God Exalt executable: RotMG Exalt Launcher.app type: none -'200230': +"200230": installDir: Off-Road Drive launch: - - executable: Binaries\\Win32\\ORD.exe - workingdir: Binaries\\Win32 -'200260': + - executable: "Binaries\\\\Win32\\\\ORD.exe" + workingdir: "Binaries\\\\Win32" +"200260": installDir: Batman Arkham City GOTY launch: - config: oslist: windows - executable: Binaries\\Win32\\BatmanAC.exe + executable: "Binaries\\\\Win32\\\\BatmanAC.exe" - config: oslist: windows description: Configure PC Options @@ -106329,77 +103663,73 @@ oslist: macos description: Mac Binary executable: Batman Arkham City GOTY.app -'2002850': +"2002850": installDir: Raiden IV x MIKADO remix launch: - executable: RaidenIVx.exe nameLocalized: japanese: 雷電Ⅳ×MIKADO remix -'2002860': +"2002860": installDir: Raiden III x MIKADO MANIAX launch: - config: oslist: windows - executable: Raiden III x MIKADO MANIAX\\Raiden3.exe + executable: "Raiden III x MIKADO MANIAX\\\\Raiden3.exe" workingdir: Raiden III x MIKADO MANIAX - - arguments: 'VKD3D_DISABLE_EXTENSIONS=VK_KHR_present_id,VK_KHR_present_wait %command%' + - arguments: "VKD3D_DISABLE_EXTENSIONS=VK_KHR_present_id,VK_KHR_present_wait %command%" config: oslist: linux - executable: Raiden III x MIKADO MANIAX\\Raiden3.exe + executable: "Raiden III x MIKADO MANIAX\\\\Raiden3.exe" workingdir: Raiden III x MIKADO MANIAX nameLocalized: japanese: 雷電III×MIKADO MANIAX -'2002870': +"2002870": installDir: Rhapsody II Ballad of the Little Princess launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Rhapsody2_en.exe type: default - config: betakey: debug - osarch: '64' + osarch: "64" oslist: windows description: Debug version - description_loc: - english: Debug version executable: Rhapsody2_debug_en.exe type: option3 nameLocalized: japanese: リトルプリンセス マール王国の人形姫2 -'2002880': +"2002880": installDir: Rhapsody III Memories of Marl Kingdom launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Rhapsody3_en.exe type: default - config: betakey: debug - osarch: '64' + osarch: "64" oslist: windows description: Debug version - description_loc: - english: Debug version executable: Rhapsody3_debug_en.exe type: option3 nameLocalized: japanese: 天使のプレゼント マール王国物語 -'200350': +"200350": installDir: Project Silverado launch: - - arguments: '-bundle-dir .' + - arguments: "-bundle-dir ." executable: starvoid.exe -'200370': +"200370": installDir: A Game of Dwarves launch: - - arguments: '-bundle-dir .' + - arguments: "-bundle-dir ." config: oslist: windows executable: A Game of Dwarves.exe -'200390': +"200390": installDir: Oil Rush launch: - config: @@ -106411,55 +103741,55 @@ - config: oslist: linux executable: launcher_steam.sh -'200410': +"200410": installDir: Sol Exodus launch: - - executable: Binaries\\Win32\\SOLExodus.exe -'2004360': + - executable: "Binaries\\\\Win32\\\\SOLExodus.exe" +"2004360": installDir: Hell Division launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: HellDivision.exe type: default -'2004500': {} -'2004640': {} -'2004780': +"2004500": {} +"2004640": {} +"2004780": installDir: XYY780 launch: - executable: Loader.exe -'200490': +"200490": installDir: Memento Mori launch: - config: oslist: windows description: Play game executable: run_game.cmd -'2005010': +"2005010": installDir: Boltgun launch: - config: oslist: windows - executable: 'Warhammer 40,000 Boltgun.exe' + executable: "Warhammer 40,000 Boltgun.exe" type: default -'200510': +"200510": installDir: XCom-Enemy-Unknown launch: - config: oslist: windows - executable: Binaries\\Win32\\XComGame.exe + executable: "Binaries\\\\Win32\\\\XComGame.exe" - config: oslist: macos description: Mac Edition executable: XCOM Enemy Unknown.app - - arguments: '-arch=x86_64' + - arguments: "-arch=x86_64" config: - osarch: '64' + osarch: "64" oslist: linux description: XCOM Enemy Unknown executable: xcom.sh -'2005210': +"2005210": installDir: Void Scrappers launch: - config: @@ -106471,71 +103801,69 @@ - config: oslist: macos executable: Contents/MacOS/VoidScrappers -'200550': +"200550": installDir: Dungeons - The Dark Lord launch: - executable: DungeonsTheDarkLord.exe -'2005950': - installDir: The Rabbit's Scroll +"2005950": + installDir: "The Rabbit's Scroll" launch: - - executable: exe\\The Rabbit's Scroll.exe + - executable: "exe\\\\The Rabbit's Scroll.exe" type: default - workingdir: exe\\ -'2006090': + workingdir: "exe\\\\" +"2006090": installDir: GhostTrap launch: - config: oslist: windows executable: GhostTrap.exe -'2006140': +"2006140": installDir: Withering Rooms launch: - config: oslist: windows executable: Withering Rooms.exe type: default -'200630': +"200630": installDir: Gettysburg Armored Warfare launch: - executable: ArmoredWarfare.exe -'2006330': +"2006330": installDir: Fungiman launch: - config: oslist: windows description: Launch Füngiman - description_loc: - english: Launch Füngiman executable: Füngiman.exe type: default -'200670': +"200670": installDir: Disciples III Resurrection launch: - executable: DisciplesIII.exe -'200710': +"200710": installDir: Torchlight II launch: - config: oslist: windows description: Torchlight II executable: ModLauncher.exe - workingdir: . + workingdir: "." - config: oslist: macos description: Torchlight II executable: Torchlight2.app - config: - osarch: '64' + osarch: "64" oslist: linux description: Torchlight II executable: ModLauncher.bin.x86_64 - config: - osarch: '32' + osarch: "32" oslist: linux description: Torchlight II executable: ModLauncher.bin.x86 -'2007430': {} -'2007530': +"2007430": {} +"2007530": installDir: Spellbook Demonslayers launch: - executable: Spellbook Demonslayers.exe @@ -106544,11 +103872,11 @@ japanese: スペルブック・デーモンスレイヤーズ schinese: 魔法书幸存者 tchinese: 魔導書幸存者 -'2008410': +"2008410": installDir: Garfield Lasagna Party launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: GarfieldLasagnaParty.exe type: default @@ -106556,8 +103884,8 @@ oslist: macos executable: GarfieldLasagnaParty.app type: default -'2008420': {} -'200900': +"2008420": {} +"200900": installDir: Cave Story+ launch: - config: @@ -106569,7 +103897,7 @@ - config: oslist: linux executable: CaveStory+ -'200910': +"200910": installDir: Sequence launch: - config: @@ -106578,103 +103906,103 @@ type: none - config: oslist: linux - executable: ./BeforeTheEcho + executable: "./BeforeTheEcho" type: none - config: oslist: macos executable: Before The Echo.app type: none -'2009100': +"2009100": installDir: ImmortalsOfAveum launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: x64\\Windows\\ImmortalsOfAveum.exe + executable: "x64\\\\Windows\\\\ImmortalsOfAveum.exe" type: default nameLocalized: japanese: アヴェウムの騎士団 schinese: 不朽者传奇 tchinese: 亙古魔戰 -'200940': +"200940": installDir: Sonic CD launch: - executable: soniccd.exe - description: Video Setup executable: setup.exe -'200960': +"200960": installDir: Geneforge launch: - executable: Geneforge.exe -'200980': +"200980": installDir: Geneforge 2 launch: - executable: Geneforge 2.exe -'200990': +"200990": installDir: Geneforge 3 launch: - executable: Geneforge 3.exe -'201000': +"201000": installDir: Geneforge 4 launch: - executable: Geneforge 4.exe -'201010': +"201010": installDir: Geneforge 5 launch: - executable: Geneforge 5.exe -'2010150': +"2010150": installDir: Blast Off Far Away launch: - executable: BlastOffFarAway.exe type: default -'2010170': +"2010170": installDir: Kogarashi launch: - executable: Kogarashi.exe type: default -'201020': +"201020": installDir: NBA 2K12 launch: - description: NBA 2K12 executable: nba2k12.exe -'201040': +"201040": installDir: Galcon Legends launch: - config: oslist: windows description: Windows executable: galcon2.exe - workingdir: . + workingdir: "." - config: oslist: macos description: Mac executable: Galcon Legends.app - workingdir: . + workingdir: "." - config: oslist: linux description: Linux executable: bin/main workingdir: bin -'201070': +"201070": installDir: Revelations 2012 launch: - executable: revelations.exe -'2010960': +"2010960": installDir: Downtown Jam launch: - config: oslist: windows executable: DownTown Jam.exe type: default -'2011310': +"2011310": installDir: Entropic Float This World Will Decay And Disappear launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: EntropicFloat.exe - config: - osarch: '32' + osarch: "32" oslist: windows executable: EntropicFloat-32.exe type: default @@ -106686,11 +104014,11 @@ oslist: macos executable: EntropicFloat.app/Contents/MacOS/EntropicFloat type: default -'2011900': +"2011900": installDir: Zero Wing launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ZeroWing.exe type: default @@ -106701,11 +104029,9 @@ - config: oslist: macos description: New MacOS .app executable - description_loc: - english: New MacOS .app executable executable: Zerowing.app type: default -'201210': +"201210": installDir: Pox Nora launch: - config: @@ -106723,22 +104049,22 @@ betakey: test_qa oslist: macos description: Pox Nora (Unity-OSX) - executable: PoxNora.app\\Contents\\MacOS\\PoxNora + executable: "PoxNora.app\\\\Contents\\\\MacOS\\\\PoxNora" type: default - config: oslist: macos description: Pox Nora (Unity-OSX) - executable: PoxNora.app\\Contents\\MacOS\\PoxNora + executable: "PoxNora.app\\\\Contents\\\\MacOS\\\\PoxNora" type: option1 -'2012290': {} -'201230': +"2012290": {} +"201230": installDir: EverQuest 2 launch: - - arguments: 'Updates:enable=0 Updates:PatchSelf=1 promoID=133 campaignID=1063054 launchArgs=STEAM_ENABLED launchPoint=steam' + - arguments: "Updates:enable=0 Updates:PatchSelf=1 promoID=133 campaignID=1063054 launchArgs=STEAM_ENABLED launchPoint=steam" executable: LaunchPad.exe -'2012510': {} -'201271': {} -'201290': +"2012510": {} +"201271": {} +"201290": installDir: Sins of a Solar Empire Trinity launch: - description: Play Sins of a Solar Empire Diplomacy @@ -106747,30 +104073,30 @@ executable: Sins of a Solar Empire Entrenchment.exe - description: Play Sins of a Solar Empire executable: Sins of a Solar Empire.exe -'2013180': +"2013180": installDir: Futanari Sex - Pool Party launch: - config: oslist: windows executable: Futanari_Sex_Pool_Party_Win.exe type: default -'2013360': +"2013360": installDir: The Oregon Trail launch: - - arguments: '-dx12' + - arguments: "-dx12" config: - osarch: '64' + osarch: "64" oslist: windows executable: TheOregonTrail.exe type: default -'2013650': +"2013650": installDir: Logicality launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Logicality.exe -'201420': +"201420": installDir: Toki Tori 2 launch: - config: @@ -106780,14 +104106,14 @@ oslist: macos executable: Toki Tori 2+.app - config: - osarch: '32' + osarch: "32" oslist: linux executable: TokiTori2.bin.x86 - config: - osarch: '64' + osarch: "64" oslist: linux executable: TokiTori2.bin.x86_64 -'2014380': +"2014380": installDir: LIVEALIVE launch: - config: @@ -106796,60 +104122,46 @@ type: default nameLocalized: japanese: ライブアライブ -'2014780': +"2014780": installDir: X-Plane 12 launch: - config: - osarch: '64' + osarch: "64" oslist: linux description: X-Plane - description_loc: - english: X-Plane executable: X-Plane-x86_64 type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: Plane Maker - description_loc: - english: Plane Maker executable: Plane Maker-x86_64 type: editor - config: - osarch: '64' + osarch: "64" oslist: linux description: Airfoil Maker - description_loc: - english: Airfoil Maker executable: Airfoil Maker-x86_64 - config: - osarch: '64' + osarch: "64" oslist: windows description: X-Plane - description_loc: - english: X-Plane executable: X-Plane.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows description: Plane Maker - description_loc: - english: Plane Maker executable: Plane Maker.exe type: editor - config: - osarch: '64' + osarch: "64" oslist: windows description: Airfoil Maker - description_loc: - english: Airfoil Maker executable: Airfoil Maker.exe - config: oslist: macos description: X-Plane - description_loc: - english: X-Plane executable: X-Plane.app type: default - config: @@ -106859,54 +104171,50 @@ - config: oslist: macos description: Airfoil Maker - description_loc: - english: Airfoil Maker executable: Airfoil Maker.app - - arguments: '--force_vr' + - arguments: "--force_vr" config: - osarch: '64' + osarch: "64" oslist: windows description: X-Plane in VR mode - description_loc: - english: X-Plane in VR mode executable: X-Plane.exe type: vr -'201480': +"201480": installDir: Serious Sam The Random Encounter launch: - executable: sstre.exe -'201490': +"201490": installDir: Airline Tycoon 2 launch: - description: Airline Tycoon 2 executable: airlinetycoon2.exe -'2015040': +"2015040": installDir: Ignited Steel Prologue launch: - config: oslist: windows executable: IgnitedSteel.exe -'201510': +"201510": installDir: Flatout 3 launch: - executable: Flatout.exe -'201570': +"201570": installDir: RBS launch: - executable: Really Big Sky.exe -'2015770': +"2015770": installDir: myzg770 launch: - executable: game.exe type: none -'2016510': +"2016510": installDir: Burning Requiem Fates launch: - config: oslist: windows executable: Burning Requiem Fates Windows.exe -'2016590': {} -'201700': +"2016590": {} +"201700": installDir: DiRT Showdown launch: - config: @@ -106914,35 +104222,35 @@ executable: showdown.exe - config: oslist: linux - executable: ./dirt + executable: "./dirt" - config: oslist: macos description: Launch executable: DiRT Showdown.app -'2017080': +"2017080": installDir: Nickelodeon All-Star Brawl 2 launch: - executable: Nickelodeon All-Star Brawl 2.exe -'201760': +"201760": installDir: Cities XL 2012 launch: - executable: CitiesXL_2012.exe -'201790': +"201790": installDir: Orcs Must Die 2 launch: - - executable: build\\release\\OrcsMustDie2.exe - workingdir: build\\release -'201810': + - executable: "build\\\\release\\\\OrcsMustDie2.exe" + workingdir: "build\\\\release" +"201810": installDir: Wolfenstein.The.New.Order launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: WolfNewOrder_x64.exe nameLocalized: - german: 'Wolfenstein: The New Order International Edition' -'201830': + german: "Wolfenstein: The New Order International Edition" +"201830": installDir: JurassicPark launch: - config: @@ -106951,60 +104259,54 @@ - config: oslist: macos executable: JurassicPark100.app -'2018490': +"2018490": installDir: Veggie Menace launch: - executable: Veggie Menace.exe type: default -'201870': - installDir: Assassin's Creed Revelations +"201870": + installDir: "Assassin's Creed Revelations" launch: - - arguments: '-uplay_steam_mode' - description: Launch Assassin's Creed Revelations - Singleplayer + - arguments: "-uplay_steam_mode" + description: "Launch Assassin's Creed Revelations - Singleplayer" executable: ACRSP.exe type: none - - arguments: '-uplay_steam_mode' - description: Launch Assassin's Creed Revelations - Multiplayer + - arguments: "-uplay_steam_mode" + description: "Launch Assassin's Creed Revelations - Multiplayer" executable: ACRMP.exe -'2018990': +"2018990": installDir: Mythic Origins launch: - config: oslist: windows description: Launch - description_loc: - english: Launch executable: ClientDesktop/ClientDesktop.exe type: default - config: oslist: macos description: Launch - description_loc: - english: Launch executable: ClientDesktop.app/Contents/MacOS/ClientDesktop type: default - config: oslist: linux description: Launch - description_loc: - english: Launch executable: ClientDesktop/bin/ClientDesktop type: default -'2019270': +"2019270": installDir: ShiningJumpJump launch: - config: oslist: windows executable: ShiningJumpJump.exe type: default -'2019830': +"2019830": installDir: The Backroom - Lost and Found launch: - config: oslist: windows executable: TheBackroom.exe type: default -'2019990': +"2019990": installDir: Yars Recharged launch: - config: @@ -107018,62 +104320,60 @@ - config: oslist: linux executable: YarsRecharged.x86_64 -'20200': +"20200": installDir: Galactic Bowling launch: - executable: Game.exe -'2020030': +"2020030": installDir: Tails The Backbone Preludes launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: BackboneStories.exe type: default -'2020270': +"2020270": installDir: Memory Puzzle - Futanari Mistress launch: - config: oslist: windows executable: Memory Puzzle - Futanari Mistress.exe type: default -'202050': {} -'2020570': +"202050": {} +"2020570": installDir: Charlie and Friends launch: - config: oslist: windows executable: Charlie_and_Friends.exe -'202070': +"202070": installDir: Choplifter HD launch: - executable: ChopLaunch.exe -'202090': +"202090": installDir: MagickaWizardWars launch: - - arguments: >- - bitsquid_win32_dev.exe -bundle-dir ./data_win32_bundled -window-title \"Magicka: Wizard Wars\" -ini - settings_client -property-order client server -use-steam -network-profile internet + - arguments: "bitsquid_win32_dev.exe -bundle-dir ./data_win32_bundled -window-title \\\"Magicka: Wizard Wars\\\" -ini settings_client -property-order client server -use-steam -network-profile internet" config: oslist: windows description: Play Magicka Wizard Wars executable: WizardWarsLauncher.exe -'2021210': +"2021210": installDir: DRAGON QUEST TREASURES launch: - config: oslist: windows - executable: DragonQuestTreasures\\Binaries\\Win64\\DragonQuestTreasures.exe + executable: "DragonQuestTreasures\\\\Binaries\\\\Win64\\\\DragonQuestTreasures.exe" nameLocalized: japanese: ドラゴンクエスト トレジャーズ 蒼き瞳と大空の羅針盤 koreana: 드래곤 퀘스트 트레저즈 푸른 눈동자와 하늘의 나침반 schinese: 勇者斗恶龙 寻宝探险团 蓝色眼眸与天空罗盘 tchinese: 勇者鬥惡龍 尋寶探險團 藍色眼眸與天空羅盤 -'202130': +"202130": installDir: Impire launch: - executable: Impire.exe -'202170': +"202170": installDir: SleepingDogs launch: - config: @@ -107082,61 +104382,61 @@ - config: oslist: macos executable: Sleeping Dogs.app -'2021840': +"2021840": installDir: Glyph-Bound launch: - executable: Glyph-Bound Alpha.exe type: default -'2021910': +"2021910": installDir: FPS Chess launch: - executable: FPSChess.exe type: default -'202200': +"202200": installDir: Galactic Civilizations II - Ultimate Edition launch: - - executable: Twilight\\GC2TwilightOfTheArnor.exe + - executable: "Twilight\\\\GC2TwilightOfTheArnor.exe" workingdir: Twilight -'2022270': +"2022270": installDir: Bakso Simulator launch: - config: oslist: windows executable: Bakso Simulator.exe -'2022360': +"2022360": installDir: Heal & Hurt launch: - executable: Heal & Hurt.exe -'2022670': +"2022670": nameLocalized: japanese: ソニックスーパースターズ koreana: 소닉 슈퍼스타즈 schinese: 索尼克 超级巨星 tchinese: 索尼克 超級巨星 thai: โซนิค ซูเปอร์สตาร์ -'202270': +"202270": installDir: Leviathan Warships launch: - config: oslist: windows - description: 'Launch Leviathan: Warships' + description: "Launch Leviathan: Warships" executable: Leviathan.exe - config: oslist: macos - description: 'Launch Leviathan: Warships' + description: "Launch Leviathan: Warships" executable: Leviathan.app -'2022780': +"2022780": installDir: FLASHOUT 3D Enhanced Edition launch: - config: oslist: windows executable: Flashout3D-EE.exe type: default -'2022880': +"2022880": installDir: Truxton launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Truxton.exe - config: @@ -107146,13 +104446,11 @@ - config: oslist: macos description: New MacOS .app executable - description_loc: - english: New MacOS .app executable executable: Truxton.app type: default nameLocalized: japanese: Tatsujin -'2022910': +"2022910": installDir: Twin Cobra launch: - config: @@ -107166,17 +104464,15 @@ - config: oslist: macos description: New MacOS .app executable - description_loc: - english: New MacOS .app executable executable: TwinCobra.app type: default nameLocalized: japanese: 究極 Tiger -'2022920': +"2022920": installDir: Outzone launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: OutZone.exe type: default @@ -107187,11 +104483,9 @@ - config: oslist: macos description: New MacOS .app executable - description_loc: - english: New MacOS .app executable executable: OutZone.app type: default -'2022980': +"2022980": installDir: Slap Fight launch: - config: @@ -107205,11 +104499,9 @@ - config: oslist: macos description: New MacOS .app executable - description_loc: - english: New MacOS .app executable executable: SlapFight.app type: default -'2022990': +"2022990": installDir: Flying Shark launch: - config: @@ -107224,29 +104516,29 @@ oslist: macos executable: FlyingShark.app type: default -'202310': +"202310": installDir: Ridge Racer Unbounded launch: - executable: RRU.exe -'202330': {} -'2023360': +"202330": {} +"2023360": installDir: The Last Case of Benedict Fox launch: - executable: The Last Case of Benedict Fox.exe type: default -'2023430': +"2023430": installDir: Hermea launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: WindowsNoEditor\\Hermea.exe + executable: "WindowsNoEditor\\\\Hermea.exe" type: default -'202370': +"202370": installDir: Scarygirl launch: - executable: Game.exe -'202410': +"202410": installDir: Scoregasm launch: - config: @@ -107255,63 +104547,61 @@ - config: oslist: macos executable: Scoregasm.app -'2024230': +"2024230": installDir: Project Lazarus launch: - executable: Project Lazarus.exe type: default nameLocalized: english: Project Lazarus -'2025060': +"2025060": installDir: Futanari Sex - The Gym launch: - config: oslist: windows executable: FUTANARI SEX - The GYM.exe type: default -'202530': +"202530": installDir: Sonic the Hedgehog 4 EP 1 launch: - - arguments: '-QuickBoot' + - arguments: "-QuickBoot" executable: SonicLauncher.exe - description: Configure executable: SonicLauncher.exe -'2025320': +"2025320": installDir: Estencel launch: - config: oslist: windows executable: Estencel.exe type: default -'2025830': +"2025830": installDir: Brutal Japan launch: - config: oslist: windows executable: Brutal Japan.exe type: default -'202670': +"202670": installDir: Nancy Drew Alibi in Ashes launch: - config: oslist: windows executable: Alibi.exe - - arguments: '-psn' + - arguments: "-psn" config: oslist: macos executable: Nancy Drew - Alibi In Ashes.app/Contents/MacOS/cider -'202690': +"202690": installDir: Hegemony Gold launch: - executable: Launcher.exe -'2027000': +"2027000": installDir: ICommissionedSomeBees2 launch: - config: oslist: windows description: Launch the game - description_loc: - english: Launch the game executable: ICommissionedSomeBees2.exe type: default nameLocalized: @@ -107324,42 +104614,42 @@ schinese: 我委托了一些蜜蜂2 spanish: Mi gran comisión de abejas 2 swedish: Jag anlitade några bin 2 -'202710': +"202710": installDir: Demigod launch: - description: Play Demigod - executable: bin\\demigod.exe - workingdir: bin\\ -'202730': + executable: "bin\\\\demigod.exe" + workingdir: "bin\\\\" +"202730": installDir: Dynamite Jack launch: - config: oslist: windows description: Windows executable: Dynamite Jack.exe - workingdir: . + workingdir: "." - config: oslist: macos description: MacOS executable: Dynamite Jack.app - workingdir: . + workingdir: "." - config: oslist: linux description: Linux executable: bin/main workingdir: bin -'2027360': +"2027360": installDir: After the Inferno launch: - config: oslist: windows executable: AfterTheInferno.exe type: default -'202750': +"202750": installDir: alan wakes american nightmare launch: - executable: alan_wakes_american_nightmare.exe -'2027530': +"2027530": installDir: non-binary launch: - config: @@ -107371,7 +104661,7 @@ executable: non-binary.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: non-binary.x86_64 type: default @@ -107380,21 +104670,21 @@ executable: non-binary.app/Contents/MacOS/non-binary type: default workingdir: non-binary.app/Contents/MacOS -'2027550': +"2027550": installDir: My Therapy launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: My_therapy-1.0-pc\\My_therapy.exe + executable: "My_therapy-1.0-pc\\\\My_therapy.exe" - config: oslist: linux - executable: My_therapy-1.0-pc\\My_therapy.sh + executable: "My_therapy-1.0-pc\\\\My_therapy.sh" - config: - osarch: '32' + osarch: "32" oslist: windows - executable: My_therapy-1.0-pc\\My_therapy-32.exe -'202860': + executable: "My_therapy-1.0-pc\\\\My_therapy-32.exe" +"202860": installDir: Real Warfare 2 Northern Crusades launch: - description: Play @@ -107403,13 +104693,12 @@ executable: editor.exe - description: Configure executable: config.exe -'202970': +"202970": installDir: Call of Duty Black Ops II launch: - description: Single Player executable: t6sp.exe - vacmodulefilename: resource\\sourceinit.dat -'203140': +"203140": installDir: Hitman Absolution launch: - config: @@ -107420,7 +104709,7 @@ oslist: macos description: Launch Mac executable: Hitman Absolution.app -'203160': +"203160": installDir: Tomb Raider launch: - config: @@ -107436,21 +104725,17 @@ executable: TombRaider.sh type: none - config: - betakey: 'latest,seqa_pub1' + betakey: "latest,seqa_pub1" oslist: windows description: Launch TRAS Final - description_loc: - english: Launch TRAS Final executable: TRAS_win32_final.exe - - arguments: '-archive -norootchange -mainmenu -noassert -launcher' + - arguments: "-archive -norootchange -mainmenu -noassert -launcher" config: - betakey: 'latest,seqa_pub1' + betakey: "latest,seqa_pub1" oslist: windows description: Launch TRAS Release - description_loc: - english: Launch TRAS Release executable: TRAS_win32_release.exe -'203210': +"203210": installDir: Titan Attacks launch: - config: @@ -107462,15 +104747,15 @@ - config: oslist: linux executable: titanattacks.sh -'203250': +"203250": installDir: StarTrek launch: - - arguments: '-stripped' + - arguments: "-stripped" config: oslist: windows executable: ST.exe -'203290': - installDir: America's Army +"203290": + installDir: "America's Army" launch: - config: oslist: windows @@ -107479,16 +104764,16 @@ type: default workingdir: AAPG/Binaries/Win32/ - arguments: /DS - description: 'Host a Dedicated America''s Army: Proving Grounds Server' + description: "Host a Dedicated America's Army: Proving Grounds Server" executable: AAPG/Binaries/Win32/AALauncher32.exe type: none workingdir: AAPG/Binaries/Win32/ - - description: 'America''s Army: Proving Grounds Editor' + - description: "America's Army: Proving Grounds Editor" executable: AAPG/Binaries/Win32/AALauncher32.exe type: editor workingdir: AAPG/Binaries/Win32/ -'203350': - installDir: King's Bounty - Warriors of the North +"203350": + installDir: "King's Bounty - Warriors of the North" launch: - config: oslist: windows @@ -107496,13 +104781,13 @@ type: default - config: oslist: macos - executable: King's Bounty - Warriors of the North.app + executable: "King's Bounty - Warriors of the North.app" type: default -'203510': +"203510": installDir: Fortune Summoners launch: - executable: sotes.exe -'203560': +"203560": installDir: Containment launch: - config: @@ -107515,49 +104800,49 @@ oslist: linux description: Launch executable: containment.x86 -'203630': +"203630": installDir: Warlock - Master of the Arcane launch: - executable: game.exe - - arguments: '-safe_mode' + - arguments: "-safe_mode" description: Safe mode executable: game.exe - description: Read the user manual - executable: support\\manual.pdf + executable: "support\\\\manual.pdf" - description: Go to game official site - executable: support\\game.url - - description: Go to \"Paradox Interactive\" official site - executable: support\\paradox.url - - description: Go to \"Ino-Co Plus\" official site - executable: support\\ino_co_com.url -'203650': + executable: "support\\\\game.url" + - description: "Go to \\\"Paradox Interactive\\\" official site" + executable: "support\\\\paradox.url" + - description: "Go to \\\"Ino-Co Plus\\\" official site" + executable: "support\\\\ino_co_com.url" +"203650": installDir: Sonic the Hedgehog 4 - EP 2 launch: - - arguments: '-q' + - arguments: "-q" executable: Launcher.exe - description: Configure executable: Launcher.exe -'203680': +"203680": installDir: f1 race stars launch: - executable: f1racestars.exe -'203730': +"203730": installDir: QUBE launch: - config: oslist: windows - executable: Binaries\\Win32\\QUBE.exe + executable: "Binaries\\\\Win32\\\\QUBE.exe" - config: oslist: macos description: Play Q.U.B.E. Mac executable: Q.U.B.E.app -'203750': +"203750": installDir: Binary Domain launch: - executable: BinaryDomain.exe - description: Configure Binary Domain executable: BinaryDomainConfiguration.exe -'203770': +"203770": installDir: Crusader Kings II launch: - config: @@ -107569,31 +104854,31 @@ - config: oslist: linux executable: ck2 - - arguments: '-gs_test' + - arguments: "-gs_test" config: betakey: atlantis_rising atlantis_unleashed atlantis_forsaken oslist: windows description: on GameSparks Test Server USE THIS! executable: CK2game.exe type: option1 - - arguments: '-gs_test' + - arguments: "-gs_test" config: betakey: atlantis_rising atlantis_unleashed atlantis_forsaken oslist: macos description: on GameSparks Test Server USE THIS! executable: ck2.app type: option1 -'203810': +"203810": installDir: Dear Esther launch: - config: oslist: windows executable: dearesther.exe - - arguments: '-game dearesther -steam' + - arguments: "-game dearesther -steam" config: oslist: macos executable: dearesther_osx.sh -'203830': +"203830": installDir: TheDarkEye Cos launch: - config: @@ -107608,12 +104893,12 @@ oslist: macos description: Launch executable: Satinav.app - workingdir: ./ -'203850': + workingdir: "./" +"203850": installDir: Microsoft Flight launch: - executable: Flight.exe -'203990': +"203990": installDir: Satazius launch: - config: @@ -107624,11 +104909,11 @@ oslist: linux executable: Satazius type: default -'204030': +"204030": installDir: Fable The Lost Chapters launch: - executable: Fable.exe -'204060': +"204060": installDir: Superbrothers Sword & Sworcery EP launch: - config: @@ -107640,26 +104925,26 @@ - config: oslist: linux executable: run.sh -'204080': +"204080": installDir: Showdown launch: - - arguments: '-bundle-dir \".\" -ini settings -window-title \"The Showdown Effect\"' + - arguments: "-bundle-dir \\\".\\\" -ini settings -window-title \\\"The Showdown Effect\\\"" config: oslist: windows - executable: binaries\\showdown.exe + executable: "binaries\\\\showdown.exe" workingdir: contents - config: oslist: macos executable: showdown.app -'204100': +"204100": installDir: Max Payne 3 launch: - config: oslist: windows - executable: Max Payne 3\\PlayMaxPayne3.exe + executable: "Max Payne 3\\\\PlayMaxPayne3.exe" type: none workingdir: Max Payne 3 - - arguments: '-psn' + - arguments: "-psn" config: oslist: macos description: Max Payne 3 OSX @@ -107668,23 +104953,23 @@ - config: betakey: qabeta3 description: Test - executable: Max Payne 3\\PlayMaxPayne3.exe + executable: "Max Payne 3\\\\PlayMaxPayne3.exe" type: none - config: betakey: qabeta2 description: Test D - executable: Max Payne 3\\PlayMaxPayne3.exe + executable: "Max Payne 3\\\\PlayMaxPayne3.exe" type: none -'204120': +"204120": installDir: LEGO Harry Potter Years 5-7 launch: - executable: harry2.exe -'204140': +"204140": installDir: All Zombies Must Die launch: - - arguments: '-seekfreeloading' + - arguments: "-seekfreeloading" executable: Binaries/Win32/ShippingPC-Bzb2Game.exe -'204180': +"204180": installDir: Waveform launch: - config: @@ -107692,11 +104977,11 @@ executable: Waveform.exe - config: oslist: macos - executable: ./Waveform + executable: "./Waveform" - config: oslist: linux - executable: ./Waveform -'204220': + executable: "./Waveform" +"204220": installDir: snapshot launch: - config: @@ -107710,7 +104995,7 @@ oslist: linux description: Launch Snapshot executable: snapshot -'204240': +"204240": installDir: TheBridge launch: - config: @@ -107725,24 +105010,21 @@ oslist: macos description: Runs The Bridge. executable: TheBridge.app/Contents/MacOS/The Bridge -'204300': +"204300": installDir: Awesomenauts launch: - config: oslist: windows description: Start game using launcher executable: AwesomenautsLauncher.exe - vacmodulefilename: resource\\sourceinit.dat - config: oslist: macos description: Game executable: Awesomenauts.app/Contents/MacOS/Awesomenauts - vacmodulefilename: resource\\sourceinit_macos.dat - config: oslist: macos description: Settings executable: awesomeLauncher.app/Contents/MacOS/awesomeLauncher - vacmodulefilename: resource\\sourceinit_macos.dat - config: oslist: linux description: Game @@ -107754,7 +105036,7 @@ - config: betakey: beta oslist: windows - ownsdlc: '387985' + ownsdlc: "387985" description: Play Awesomenauts Beta executable: Beta/AwesomenautsLauncher.exe type: none @@ -107762,7 +105044,7 @@ - config: betakey: beta oslist: macos - ownsdlc: '387986' + ownsdlc: "387986" description: Beta executable: Beta/Awesomenauts.app/Contents/MacOS/Awesomenauts type: none @@ -107770,7 +105052,7 @@ - config: betakey: beta oslist: macos - ownsdlc: '387986' + ownsdlc: "387986" description: Beta Settings executable: Beta/awesomeLauncher.app/Contents/MacOS/awesomeLauncher type: none @@ -107778,61 +105060,61 @@ - config: betakey: beta oslist: linux - ownsdlc: '387987' + ownsdlc: "387987" description: Beta - executable: ./Beta/run_game.sh + executable: "./Beta/run_game.sh" type: none - workingdir: ./Beta/ + workingdir: "./Beta/" - config: betakey: beta oslist: linux - ownsdlc: '387987' + ownsdlc: "387987" description: Beta Settings - executable: ./Beta/run_settings.sh + executable: "./Beta/run_settings.sh" type: none - workingdir: ./Beta/ + workingdir: "./Beta/" - config: oslist: windows - ownsdlc: '561521' + ownsdlc: "561521" description: Play Awesomenauts Offline (version 3.5) executable: Offline/AwesomenautsLauncher.exe type: none workingdir: Offline - config: oslist: macos - ownsdlc: '561520' + ownsdlc: "561520" description: Play Offline (version 3.5) executable: Offline/Awesomenauts.app/Contents/MacOS/Awesomenauts type: none workingdir: Offline - config: oslist: macos - ownsdlc: '561520' + ownsdlc: "561520" description: Offline Settings executable: Offline/awesomeLauncher.app/Contents/MacOS/awesomeLauncher type: none workingdir: Offline - config: oslist: linux - ownsdlc: '634000' + ownsdlc: "634000" description: Play Offline (version 3.5) - executable: ./Offline/run_game.sh + executable: "./Offline/run_game.sh" type: none - workingdir: ./Offline/ + workingdir: "./Offline/" - config: oslist: linux - ownsdlc: '634000' + ownsdlc: "634000" description: Offline settings - executable: ./Offline/run_settings.sh + executable: "./Offline/run_settings.sh" type: none - workingdir: ./Offline/ + workingdir: "./Offline/" - config: betakey: betatest oslist: linux description: BETATEST - executable: ./Beta/run_game.sh + executable: "./Beta/run_game.sh" type: none - workingdir: ./Beta + workingdir: "./Beta" - config: betakey: betatest oslist: macos @@ -107847,16 +105129,16 @@ executable: Beta/AwesomenautsLauncher.exe type: none workingdir: Beta -'204340': +"204340": installDir: Serious Sam 2 launch: - - executable: Bin\\Sam2.exe -'204360': {} -'204390': + - executable: "Bin\\\\Sam2.exe" +"204360": {} +"204390": installDir: Pineapple Smash Crew launch: - executable: PineappleSmashCrew.exe -'204440': +"204440": installDir: Pickers launch: - config: @@ -107865,14 +105147,14 @@ - config: oslist: macos executable: Pickers.app -'204450': +"204450": installDir: CoJ Gunslinger launch: - config: oslist: windows description: Launch the game. executable: CoJGunslinger.exe -'204530': +"204530": installDir: Infested Planet launch: - config: @@ -107883,15 +105165,15 @@ oslist: macos description: Launch executable: InfestedPlanet.app -'204560': +"204560": installDir: Confrontation launch: - executable: Confrontation.exe -'204580': +"204580": installDir: Rotastic launch: - executable: Rotastic.exe -'204630': +"204630": installDir: Retro City Rampage launch: - config: @@ -107906,26 +105188,26 @@ oslist: linux description: Launch executable: retrocityrampage -'204760': +"204760": installDir: Deep Black Reloaded launch: - executable: deepblack.exe -'204840': +"204840": installDir: Babel Rising launch: - - arguments: '' + - arguments: "" config: oslist: windows description: launch the game! executable: BabelRising3d.exe - workingdir: '' - - arguments: '' + workingdir: "" + - arguments: "" config: oslist: macos - description: '' + description: "" executable: S3DEngine_Mac.app - workingdir: '' -'204860': + workingdir: "" +"204860": installDir: Men of War Condemned Heroes launch: - config: @@ -107936,40 +105218,40 @@ oslist: windows description: Launch Editor executable: CondemnedHeroesEditor.exe -'204880': +"204880": installDir: Sins of a Solar Empire Rebellion launch: - executable: StardockLauncher.exe type: default -'204940': +"204940": installDir: Crusader Kings launch: - executable: Crusaders.exe -'204960': +"204960": installDir: Magical Drop V launch: - - arguments: '-console' + - arguments: "-console" description: Launch With console executable: magicaldropv.exe -'20500': +"20500": installDir: Red Faction Guerrilla launch: - config: oslist: windows executable: rfg_launcher.exe - - arguments: '-nod3d11' + - arguments: "-nod3d11" config: oslist: windows description: Launch Red Faction Guerilla DX9 Mode executable: rfg.exe -'2050080': +"2050080": installDir: Futanari Sex - Naughty Massage launch: - config: oslist: windows executable: Futanari_Sex_Naughty_Massage_Win.exe type: default -'205020': +"205020": installDir: LuminoCity launch: - config: @@ -107984,8 +105266,8 @@ oslist: linux description: Launch executable: bin/LuminoCity -'2050420': {} -'205060': +"2050420": {} +"205060": installDir: BIT.TRIP CORE launch: - config: @@ -107995,16 +105277,16 @@ oslist: macos description: OS X launch executable: BIT.TRIP.CORE.app -'2050650': +"2050650": installDir: RESIDENT EVIL 4 BIOHAZARD RE4 launch: - config: oslist: windows executable: re4.exe nameLocalized: - japanese: 'BIOHAZARD RE:4' - koreana: 'BIOHAZARD RE:4' -'205070': + japanese: "BIOHAZARD RE:4" + koreana: "BIOHAZARD RE:4" +"205070": installDir: BIT.TRIP VOID launch: - config: @@ -108016,7 +105298,7 @@ description: Mac Launch executable: BIT.TRIP.VOID.app type: none -'205080': +"205080": installDir: BIT.TRIP FATE launch: - config: @@ -108027,7 +105309,7 @@ oslist: macos description: Mac Launch executable: BIT.TRIP.FATE.app -'205090': +"205090": installDir: bit_trip_flux launch: - config: @@ -108038,11 +105320,11 @@ oslist: macos description: Mac Launch executable: BIT.TRIP.FLUX.app -'20510': +"20510": installDir: STALKER Clear Sky launch: - - executable: bin\\xrengine.exe -'205100': + - executable: "bin\\\\xrengine.exe" +"205100": installDir: Dishonored launch: - config: @@ -108050,37 +105332,37 @@ description: Dishonored executable: Binaries/Win32/Dishonored.exe workingdir: Binaries -'2051120': {} -'2051880': +"2051120": {} +"2051880": installDir: Memory Puzzle - Futanari Doctor launch: - config: oslist: windows executable: Memory Puzzle - Futanari Doctor.exe type: default -'205190': +"205190": installDir: Rocksmith launch: - config: oslist: windows executable: Rocksmith.exe -'205230': +"205230": installDir: Hell Yeah launch: - config: oslist: windows description: RC17 executable: HELLYEAH.exe -'2052410': +"2052410": nameLocalized: japanese: 魔法使いの夜 schinese: 魔法使之夜 tchinese: 魔法使之夜 -'20530': +"20530": installDir: Red Faction launch: - executable: RedFaction.exe -'205330': +"205330": installDir: lawandorder launch: - config: @@ -108089,31 +105371,31 @@ - config: oslist: macos executable: LawAndOrder101.app -'205350': +"205350": installDir: Mortal Kombat Arcade Kollection launch: - - executable: BINARIES\\WIN32\\MKHDGame.exe -'20540': + - executable: "BINARIES\\\\WIN32\\\\MKHDGame.exe" +"20540": installDir: Company of Heroes launch: - executable: RelicCOH.exe -'2054640': +"2054640": installDir: Futanari Sex - The Birthday Massage launch: - config: oslist: windows executable: FUTANARI SEX - The Birthday Massage.exe type: default -'2054970': {} -'20550': +"2054970": {} +"20550": installDir: Red Faction II launch: - executable: Red Faction II.exe -'2055290': +"2055290": installDir: SonicColorsUltimate launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: exec/SonicColorsUltimate.exe type: default @@ -108123,7 +105405,7 @@ koreana: 소닉 컬러즈 얼티밋 schinese: 索尼克 缤纷色彩 究极版 tchinese: 索尼克 繽紛色彩 究極版 -'205530': +"205530": installDir: Gratuitous Tank Battles launch: - config: @@ -108132,19 +105414,17 @@ - config: oslist: macos executable: Gratuitous Tank Battles.app -'2055390': +"2055390": installDir: 11号小镇综合症 launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: 11号小镇综合症 - description_loc: - english: 11号小镇综合症 executable: game.exe type: default -'2055410': {} -'205550': +"2055410": {} +"205550": installDir: foreign legion multi massacre launch: - config: @@ -108155,36 +105435,36 @@ oslist: macos description: Mac OS executable: FL_MM.app -'2055500': +"2055500": installDir: Repetendium launch: - config: oslist: windows executable: Repetendium.exe type: default -'205590': +"205590": installDir: Legends of Pegasus launch: - executable: LoP.exe -'205610': +"205610": installDir: Port Royale 3 launch: - executable: PortRoyale3.exe -'2056220': +"2056220": installDir: Bloody Hell launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Bloody Hell.exe type: default -'205650': +"205650": installDir: The Testament of Sherlock Holmes launch: - description: Main executable executable: game.exe type: default -'205690': +"205690": installDir: 1000 Amps launch: - config: @@ -108193,18 +105473,18 @@ - config: oslist: macos executable: 1000 Amps.app -'2056920': +"2056920": installDir: SnowBrawl launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SnowballProject.exe type: default -'20570': +"20570": installDir: Dawn of War 2 launch: - - arguments: '-logs' + - arguments: "-logs" config: oslist: windows executable: dow2.exe @@ -108217,12 +105497,12 @@ oslist: linux executable: DawnOfWar2.sh type: none -'205710': +"205710": installDir: Everquest F2P launch: - - arguments: 'Updates:enable=0 Updates:PatchSelf=1 campaignID=1063243 promoID=142 launchArgs=STEAM_ENABLED launchPoint=steam' + - arguments: "Updates:enable=0 Updates:PatchSelf=1 campaignID=1063243 promoID=142 launchArgs=STEAM_ENABLED launchPoint=steam" executable: LaunchPad.exe -'205730': +"205730": installDir: Insanely Twisted Shadow Planet launch: - config: @@ -108234,83 +105514,83 @@ - config: oslist: linux executable: fcengine-bin32 -'2058060': +"2058060": installDir: Faraway launch: - config: oslist: windows executable: Faraway.exe -'205810': +"205810": installDir: Jagged Alliance Crossfire launch: - - description: 'Play Jagged Alliance: Crossfire' + - description: "Play Jagged Alliance: Crossfire" executable: JaggedAllianceCF.exe -'2058150': +"2058150": installDir: Duck Paradox launch: - config: oslist: windows executable: Duck Paradox.exe -'2058180': +"2058180": installDir: Judgment launch: - arguments: /timing config: betakey: work99 - executable: runtime\\media\\startup.exe + executable: "runtime\\\\media\\\\startup.exe" workingdir: runtime/media - arguments: /timing config: betakey: work98 - executable: runtime\\media\\startup.exe + executable: "runtime\\\\media\\\\startup.exe" workingdir: runtime/media nameLocalized: japanese: JUDGE EYES:死神の遺言Remastered koreana: 저지 아이즈:사신의 유언 Remastered schinese: 审判之眼:死神的遗言 Remastered tchinese: 審判之眼:死神的遺言 Remastered -'2058190': +"2058190": installDir: Lost Judgment launch: - arguments: /timing config: - betakey: 'work99,test99' - osarch: '64' + betakey: "work99,test99" + osarch: "64" oslist: windows - executable: runtime\\media\\startup.exe + executable: "runtime\\\\media\\\\startup.exe" type: default workingdir: runtime/media - arguments: /timing config: - betakey: 'work98,test98' - osarch: '64' + betakey: "work98,test98" + osarch: "64" oslist: windows - executable: runtime\\media\\startup.exe + executable: "runtime\\\\media\\\\startup.exe" workingdir: runtime/media nameLocalized: japanese: LOST JUDGMENT:裁かれざる記憶 - koreana: '로스트 저지먼트: 심판받지 않은 기억' + koreana: "로스트 저지먼트: 심판받지 않은 기억" schinese: 审判之逝:湮灭的记忆 tchinese: 審判之逝:湮滅的記憶 -'2058240': +"2058240": installDir: TimeMelters - Challenges launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TimemeltersChallenges.exe type: default -'205830': +"205830": installDir: Luxor Evolved launch: - executable: luxor_ev_x86.exe -'205840': +"205840": installDir: Yesterday launch: - executable: Yesterday.exe - description: Configuration executable: PSConfig.exe -'205870': +"205870": installDir: Auditorium launch: - config: @@ -108321,11 +105601,11 @@ oslist: macos description: Mac executable: Auditorium.app -'2058750': +"2058750": installDir: Monster Energy Supercross - The Official Videogame 6 launch: - executable: supercross6.exe -'205890': +"205890": installDir: Chronicle launch: - config: @@ -108341,43 +105621,43 @@ description: Chronicle Mod Uploader executable: WorkshopTool/WorkshopManager.exe type: option1 -'2058980': +"2058980": installDir: Prototypers launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Prototypers.exe type: default -'20590': +"20590": installDir: League of Legends launch: - executable: lol.launcher.exe -'205910': +"205910": installDir: TinyAndBig launch: - - arguments: '--dialog=0' + - arguments: "--dialog=0" config: - osarch: '32' + osarch: "32" oslist: windows executable: tinyandbig.exe - - arguments: '--dialog=0' + - arguments: "--dialog=0" config: oslist: macos - description: '' + description: "" executable: tinyandbig.app/Contents/MacOS/tinyandbig - workingdir: '' - - arguments: '--dialog=0' + workingdir: "" + - arguments: "--dialog=0" config: oslist: linux executable: tinyandbig - - arguments: '--dialog=0' + - arguments: "--dialog=0" config: - osarch: '64' + osarch: "64" oslist: windows description: Launch - executable: bin64\\tinyandbig.exe -'205930': + executable: "bin64\\\\tinyandbig.exe" +"205930": installDir: Hitman Sniper Challenge launch: - config: @@ -108387,53 +105667,47 @@ oslist: macos description: Launch executable: Hitman Sniper Challenge.app -'205950': +"205950": installDir: Jet Set Radio launch: - config: oslist: windows executable: jsrsetup.exe -'2059570': {} -'2059660': +"2059570": {} +"2059660": installDir: Cavern of Dreams launch: - executable: Cavern of Dreams.exe type: default -'2059670': +"2059670": installDir: Moss Book II launch: - config: betakey: beta oslist: windows description: Test version - description_loc: - english: Test version - executable: Moss2\\Binaries\\Win64\\Moss2-Win64-Test.exe + executable: "Moss2\\\\Binaries\\\\Win64\\\\Moss2-Win64-Test.exe" type: vr - config: oslist: windows description: Shipping version - description_loc: - english: Shipping version - executable: Moss2\\Binaries\\Win64\\Moss2-Win64-Shipping.exe + executable: "Moss2\\\\Binaries\\\\Win64\\\\Moss2-Win64-Shipping.exe" type: vr - config: betakey: development oslist: windows description: Development version - description_loc: - english: Development version - executable: Moss2\\Binaries\\Win64\\Moss2.exe + executable: "Moss2\\\\Binaries\\\\Win64\\\\Moss2.exe" type: vr -'2059740': +"2059740": installDir: Hoverboy 1.0 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Hoverboy (game).exe type: default -'2059810': +"2059810": installDir: rich4 launch: - executable: Launcher.exe @@ -108441,7 +105715,7 @@ english: Richman 4 schinese: 大富翁4 tchinese: 大富翁4 -'205990': +"205990": installDir: Warlock 2 launch: - config: @@ -108456,122 +105730,114 @@ oslist: macos description: Launch executable: Game.app -'2059960': +"2059960": installDir: The Rumble Fish 2 launch: - executable: TRF2.exe type: default -'2060130': +"2060130": installDir: Return to Monkey Island launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Return to Monkey Island.exe - config: oslist: macos - executable: Return to Monkey Island.app\\Contents\\MacOS\\Return to Monkey Island + executable: "Return to Monkey Island.app\\\\Contents\\\\MacOS\\\\Return to Monkey Island" - config: - osarch: '64' + osarch: "64" oslist: linux executable: Return to Monkey Island nameLocalized: schinese: 重返猴岛 tchinese: 重返猴島 -'206020': +"206020": installDir: Avernum 4 launch: - executable: Avernum 4.exe -'206040': +"206040": installDir: Avernum 5 launch: - executable: Avernum 5.exe -'2060550': +"2060550": installDir: FabularPrologue launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: FabularPrologue.exe type: default -'206060': +"206060": installDir: Avernum 6 launch: - executable: Avernum 6.exe -'2060870': {} -'2061230': +"2060870": {} +"2061230": installDir: Chasm The Rift launch: - executable: Chasm.exe type: default - - arguments: '-noconsole -conf chasm-base.conf -conf chasm-graphics.conf -conf chasm-game.conf' - description: 'Chasm: The Rift (DOSBox)' - description_loc: - english: 'Chasm: The Rift (DOSBox)' - executable: Chasm The Rift Original\\DOSBOX\\dosbox.exe + - arguments: "-noconsole -conf chasm-base.conf -conf chasm-graphics.conf -conf chasm-game.conf" + description: "Chasm: The Rift (DOSBox)" + executable: "Chasm The Rift Original\\\\DOSBOX\\\\dosbox.exe" type: option2 workingdir: Chasm The Rift Original - - arguments: '-noconsole -conf chasm-base.conf -conf chasm-graphics.conf -conf chasm-addon.conf' + - arguments: "-noconsole -conf chasm-base.conf -conf chasm-graphics.conf -conf chasm-addon.conf" description: Addon (DOSBox) - description_loc: - english: Addon (DOSBox) - executable: Chasm The Rift Original\\DOSBOX\\dosbox.exe + executable: "Chasm The Rift Original\\\\DOSBOX\\\\dosbox.exe" type: option3 workingdir: Chasm The Rift Original - - arguments: '-conf chasm-graphics.conf' + - arguments: "-conf chasm-graphics.conf" description: Configure graphics (DOSBox) - description_loc: - english: Configure graphics (DOSBox) - executable: Chasm The Rift Original\\DOSBOX\\ConfigTool.exe + executable: "Chasm The Rift Original\\\\DOSBOX\\\\ConfigTool.exe" workingdir: Chasm The Rift Original - - arguments: '-noconsole -conf chasm-base.conf -conf chasm-graphics.conf -conf chasm-edit.conf' + - arguments: "-noconsole -conf chasm-base.conf -conf chasm-graphics.conf -conf chasm-edit.conf" description: Launch Editor (DOSBox) - description_loc: - english: Launch Editor (DOSBox) - executable: Chasm The Rift Original\\DOSBOX\\dosbox.exe + executable: "Chasm The Rift Original\\\\DOSBOX\\\\dosbox.exe" workingdir: Chasm The Rift Original nameLocalized: - japanese: 'Chasm: The Rift | キャズム ザ・リフト' - schinese: 'Chasm: The Rift | 深渊:地狱裂谷' - tchinese: 'Chasm: The Rift | 鴻溝:裂谷' -'2061250': + japanese: "Chasm: The Rift | キャズム ザ・リフト" + schinese: "Chasm: The Rift | 深渊:地狱裂谷" + tchinese: "Chasm: The Rift | 鴻溝:裂谷" +"2061250": installDir: Shin chan Summer Vacation launch: - executable: Shin chan Summer.exe nameLocalized: - english: 'Shin chan: Me and the Professor on Summer Vacation The Endless Seven-Day Journey' - german: 'Shin chan: Meine Sommerferien mit dem Professor ~Die endlose Sieben-Tage-Reise~' + english: "Shin chan: Me and the Professor on Summer Vacation The Endless Seven-Day Journey" + german: "Shin chan: Meine Sommerferien mit dem Professor ~Die endlose Sieben-Tage-Reise~" japanese: クレヨンしんちゃん「オラと博士の夏休み」~おわらない七日間の旅~ koreana: 짱구는 못말려 나와 박사의 여름 방학 ~끝나지 않는 7일간의 여행~ - portuguese: 'Shin chan: O Meu verão com o Professor —A Semana Interminável—' + portuguese: "Shin chan: O Meu verão com o Professor —A Semana Interminável—" schinese: 蜡笔小新 我与博士的暑假 ~没有终点的七日之旅~ - spanish: 'Shin chan: Mi verano con el Profesor —La semana infinita—' + spanish: "Shin chan: Mi verano con el Profesor —La semana infinita—" tchinese: 蠟筆小新 我與博士的暑假 ~永不結束的七日之旅~ -'2061290': +"2061290": installDir: Hauling Away launch: - config: - osarch: '64' + osarch: "64" executable: Haulingaway.exe type: default - config: - osarch: '32' + osarch: "32" executable: Haulingaway-32.exe type: default -'2061510': +"2061510": installDir: WoodlockManor launch: - config: oslist: windows executable: WoodlockManor.exe -'2061710': +"2061710": installDir: DO NOT OPEN launch: - config: oslist: windows executable: DoNotOpen.exe type: default -'206190': +"206190": installDir: Gunpoint launch: - config: @@ -108586,76 +105852,67 @@ oslist: linux description: Launch executable: GunpointSteam -'206210': +"206210": installDir: Gotham City Impostors F2P launch: - executable: Impostors.exe -'206230': +"206230": installDir: Clan Of Champions launch: - description: Clan Of Champions executable: ClanOfChampions.exe - description: Clan Of Champions Setting executable: ConfigTool.exe -'206250': +"206250": installDir: ClaDun x2 launch: - executable: CladunX2.exe nameLocalized: japanese: クラシックダンジョンX2 -'2062550': +"2062550": installDir: hololive ERROR the Game launch: - executable: hololive ERROR.exe -'2062930': +"2062930": installDir: Owinka Shooter launch: - config: oslist: windows executable: OWINKA SHOOTER.exe type: default -'2063310': +"2063310": installDir: Joe Wander launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Joe Wander.exe type: default -'2063510': +"2063510": installDir: KAKUDO launch: - - arguments: '-d3d11' + - arguments: "-d3d11" config: - osarch: '64' + osarch: "64" oslist: windows description: the game with DirectX 11 - description_loc: - english: the game with DirectX 11 - french: ' KAKUDO avec DirectX 11' executable: KAKUDO.exe type: option1 - - arguments: '-d3d12' + - arguments: "-d3d12" config: - osarch: '64' + osarch: "64" oslist: windows description: the game with DirectX 12 (Required for Ray Tracing) - description_loc: - english: the game with DirectX 12 (Required for Ray Tracing) - french: ' KAKUDO avec DirectX 12 (Requis pour le Ray Tracing)' executable: KAKUDO.exe type: option2 - - arguments: '-vulkan' + - arguments: "-vulkan" config: - osarch: '64' + osarch: "64" oslist: windows description: the game with Vulkan - description_loc: - english: the game with Vulkan - french: KAKUDO avec Vulkan executable: KAKUDO.exe type: option3 -'206370': +"206370": installDir: Tales from Space Mutant Blobs Attack launch: - config: @@ -108667,11 +105924,11 @@ - config: oslist: macos executable: MutantBlobsAttack_Steam.app -'206410': +"206410": installDir: Crazy Machines Elements launch: - executable: cmElements.exe -'206420': +"206420": installDir: Saints Row IV launch: - config: @@ -108680,121 +105937,121 @@ type: default - config: oslist: linux - executable: ./saintsrow4 + executable: "./saintsrow4" type: default -'2064320': +"2064320": installDir: Vermis Orbita launch: - executable: Vermis Orbita.exe -'206440': +"206440": installDir: To the Moon launch: - - arguments: '-console' + - arguments: "-console" config: oslist: windows description: Launch with Console - executable: To the Moon\\To the Moon.exe + executable: "To the Moon\\\\To the Moon.exe" workingdir: To the Moon - arguments: ToTheMoon.app/Contents/MacOS/mkxp config: oslist: macos executable: ToTheMoon.app/Contents/MacOS/steamshim_parent type: none - - arguments: ./ToTheMoon.bin.x86 --enableReset=false + - arguments: "./ToTheMoon.bin.x86 --enableReset=false" config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: steamshim/parent.x86 type: none - - arguments: ./ToTheMoon.bin.x86_64 --enableReset=false + - arguments: "./ToTheMoon.bin.x86_64 --enableReset=false" config: - osarch: '64' + osarch: "64" oslist: linux executable: steamshim/parent.amd64 type: none - config: oslist: windows - ownsdlc: '338250' + ownsdlc: "338250" description: Play SigCorp - Minisode 1 - executable: Minisode_1\\Sigmund Holiday Special 1\\Siggy - Holiday Special.exe - workingdir: Minisode_1\\Sigmund Holiday Special 1 + executable: "Minisode_1\\\\Sigmund Holiday Special 1\\\\Siggy - Holiday Special.exe" + workingdir: "Minisode_1\\\\Sigmund Holiday Special 1" - config: oslist: windows - ownsdlc: '339550' + ownsdlc: "339550" description: Play SigCorp - Minisode 2 - executable: Minisode_2\\Sigmund Holiday Special 2\\SigCorp Minisode 2.exe - workingdir: Minisode_2\\Sigmund Holiday Special 2 + executable: "Minisode_2\\\\Sigmund Holiday Special 2\\\\SigCorp Minisode 2.exe" + workingdir: "Minisode_2\\\\Sigmund Holiday Special 2" - config: oslist: linux - ownsdlc: '338250' + ownsdlc: "338250" description: SigCorp - Minisode 1 executable: Sigmund Holiday Special 1/launch_linux.sh type: option1 workingdir: Sigmund Holiday Special 1 - config: oslist: linux - ownsdlc: '339550' + ownsdlc: "339550" description: SigCorp - Minisode 2 executable: Sigmund Holiday Special 2/launch_linux.sh type: option2 workingdir: Sigmund Holiday Special 2 - config: oslist: macos - ownsdlc: '338250' + ownsdlc: "338250" description: Play SigCorp - Minisode 1 executable: SigCorp Minisode 1 - Holiday Special 2013.app type: none - config: oslist: macos - ownsdlc: '339550' + ownsdlc: "339550" description: Play SigCorp - Minisode 2 executable: SigCorp Minisode 2.app type: none -'2064650': +"2064650": installDir: Tower of Fantasy launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: Tower of Fantasy\\Launcher\\tof_launcher.exe + executable: "Tower of Fantasy\\\\Launcher\\\\tof_launcher.exe" type: default -'206480': +"206480": installDir: Dungeons and Dragons Online launch: - - arguments: '-steam' + - arguments: "-steam" config: oslist: windows executable: DNDLauncher.exe - - arguments: '-steam' + - arguments: "-steam" config: oslist: macos executable: DNDLauncher.app -'2064870': +"2064870": installDir: Deceit 2 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: start_protected_game.exe type: default nameLocalized: schinese: 黑暗逃生2 -'206500': +"206500": installDir: AirMech launch: - - arguments: '' + - arguments: "" description: Launch Game executable: AirMech.exe - workingdir: '' -'2065840': + workingdir: "" +"2065840": installDir: TROUBLE JUICE launch: - config: oslist: windows executable: troubleJuice.exe type: default -'206610': +"206610": installDir: 3SwitcheD launch: - config: @@ -108804,47 +106061,41 @@ oslist: macos executable: 3SwitcheD.app - config: - osarch: '64' + osarch: "64" oslist: linux executable: RunGame type: none -'2066250': +"2066250": installDir: HBDIE The Nonce 2 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: HBDIE The Nonce 2.exe - config: oslist: macos executable: HBDIE The Nonce 2.exe - workingdir: HBDIE The Nonce 2 Steam Mac.app\\Contents\\MacOS -'2066550': + workingdir: "HBDIE The Nonce 2 Steam Mac.app\\\\Contents\\\\MacOS" +"2066550": installDir: Error143 launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch - description_loc: - english: Launch executable: Error143.exe type: default - config: oslist: macos description: Launch - description_loc: - english: Launch executable: Error143.app type: default - config: oslist: linux description: Launch - description_loc: - english: Launch executable: Error143.sh type: default -'206690': +"206690": installDir: ibomber defense pacific launch: - config: @@ -108856,16 +106107,16 @@ - config: oslist: linux executable: iBomberDefensePacific -'2066920': +"2066920": installDir: ColorCube launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ColorCube.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: ColorCube.sh type: default @@ -108873,208 +106124,184 @@ japanese: カラフルな立方体 russian: КрасочныйКуб schinese: 颜色方块 -'2067000': +"2067000": installDir: Momo Mother Bird Final Story launch: - config: oslist: windows executable: Momo Is Here 2.exe type: default -'2067150': +"2067150": installDir: Nitro Racers launch: - - arguments: '-noconsole -conf fullscreen.conf -conf dosbox.conf -conf launch.conf -exit' + - arguments: "-noconsole -conf fullscreen.conf -conf dosbox.conf -conf launch.conf -exit" config: oslist: windows description: full screen - description_loc: - english: full screen - executable: DOSBox\\dosbox.exe + executable: "DOSBox\\\\dosbox.exe" type: option1 - workingdir: DOSBox\\Configuration - - arguments: '-noconsole -conf 2560x1600.conf -conf dosbox.conf -conf launch.conf -exit' + workingdir: "DOSBox\\\\Configuration" + - arguments: "-noconsole -conf 2560x1600.conf -conf dosbox.conf -conf launch.conf -exit" config: oslist: windows description: windowed 2560x1600 - description_loc: - english: windowed 2560x1600 - executable: DOSBox\\dosbox.exe + executable: "DOSBox\\\\dosbox.exe" type: option1 - workingdir: DOSBox\\Configuration - - arguments: '-noconsole -conf 1280x800.conf -conf dosbox.conf -conf launch.conf -exit' + workingdir: "DOSBox\\\\Configuration" + - arguments: "-noconsole -conf 1280x800.conf -conf dosbox.conf -conf launch.conf -exit" config: oslist: windows description: windowed 1280x800 - description_loc: - english: windowed 1280x800 - executable: DOSBox\\dosbox.exe + executable: "DOSBox\\\\dosbox.exe" type: option1 - workingdir: DOSBox\\Configuration - - arguments: '-noconsole -conf 640x400.conf -conf dosbox.conf -conf launch.conf -exit' + workingdir: "DOSBox\\\\Configuration" + - arguments: "-noconsole -conf 640x400.conf -conf dosbox.conf -conf launch.conf -exit" config: oslist: windows description: windowed 640x400 - description_loc: - english: windowed 640x400 - executable: DOSBox\\dosbox.exe + executable: "DOSBox\\\\dosbox.exe" type: option1 - workingdir: DOSBox\\Configuration - - arguments: '-noconsole -conf 320x200.conf -conf dosbox.conf -conf launch.conf -exit' + workingdir: "DOSBox\\\\Configuration" + - arguments: "-noconsole -conf 320x200.conf -conf dosbox.conf -conf launch.conf -exit" config: oslist: windows description: windowed 320x200 - description_loc: - english: windowed 320x200 - executable: DOSBox\\dosbox.exe + executable: "DOSBox\\\\dosbox.exe" type: option1 - workingdir: DOSBox\\Configuration -'206740': + workingdir: "DOSBox\\\\Configuration" +"206740": installDir: WWTBAM launch: - - executable: Binaries\\Win32\\ShippingPC-WWTBAMGame.exe -'2067570': + - executable: "Binaries\\\\Win32\\\\ShippingPC-WWTBAMGame.exe" +"2067570": installDir: Egghead Grumpty launch: - config: oslist: windows executable: Egghead_Gumpty.exe -'206760': +"206760": installDir: Painkiller Recurring Evil launch: - - executable: Bin\\RecurringEvil.exe + - executable: "Bin\\\\RecurringEvil.exe" - description: Editor - executable: Bin\\RecurringEvilEditor.exe -'2067750': + executable: "Bin\\\\RecurringEvilEditor.exe" +"2067750": installDir: Jigsaw Puzzle - Futanari Roomate launch: - config: oslist: windows executable: Jigsaw Puzzle - Futanari Roomate.exe type: default -'2067760': +"2067760": installDir: Trash Bomber launch: - executable: Trash Bomber.exe -'2067790': +"2067790": installDir: Crimson Snow launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: CrimsonSnow.exe nameLocalized: schinese: 猩红之雪 -'2067850': +"2067850": installDir: Drakensang Online launch: - - arguments: '-x86_64' + - arguments: "-x86_64" config: - osarch: '64' + osarch: "64" oslist: windows executable: thinclient.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: thinclient.exe type: default -'2067920': +"2067920": installDir: Rogue Genesia launch: - config: betakey: rg0.6 oslist: windows description: Play Windows Version - description_loc: - english: Play Windows Version - french: Windows executable: Rogue Genesia.exe type: default - config: oslist: linux description: Linux - description_loc: - english: Linux - french: Linux executable: Rogue Genesia.x86_64 type: default - config: oslist: windows description: Vanilla - description_loc: - english: Vanilla executable: Vanilla/Rogue Genesia.exe type: option1 - config: oslist: windows description: Modded - description_loc: - english: Modded executable: Modded/Rogue Genesia.exe type: option1 - config: betakey: rg0.7 oslist: windows - description: 'Play Version 0.7 of Rogue: Genesia' - description_loc: - english: 'Play Version 0.7 of Rogue: Genesia' + description: "Play Version 0.7 of Rogue: Genesia" executable: Rogue Genesia.exe type: default nameLocalized: - english: 'Rogue: Genesia' + english: "Rogue: Genesia" schinese: 罗格:救世传说 -'2068350': +"2068350": installDir: My Sugar Mommy is a Futanari launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: MySugarMommyIsAFutanari.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: MySugarMommyIsAFutanari-32.exe type: default -'2068360': +"2068360": installDir: The Futanati launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TheFutanati.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: TheFutanati-32.exe type: default -'2068370': +"2068370": installDir: My Agent is a Futanari launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: MyAgentIsAFutanari.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: MyAgentIsAFutanari-32.exe type: default -'2068950': +"2068950": installDir: wdjh95 launch: - executable: game.exe type: none -'2069110': +"2069110": installDir: I commissioned some bees 3 launch: - config: oslist: windows description: Launch the game - description_loc: - english: Launch the game executable: ICommissionedSomeBees3.exe type: default nameLocalized: @@ -109087,49 +106314,49 @@ schinese: 我委托了一些蜜蜂3 spanish: Mi gran comisión de abejas 3 swedish: Jag anlitade några bin 3 -'2069990': +"2069990": installDir: Peepo Island launch: - config: oslist: windows executable: Peepo_Island.exe -'20700': +"20700": installDir: Starscape launch: - executable: Starscape.exe -'207000': +"207000": installDir: Alien Spidy launch: - config: oslist: windows description: Alien Spidy Game executable: AlienSpidy.exe - workingdir: . + workingdir: "." - config: oslist: macos description: Alien Spidy Mac Game executable: Alien Spidy.app - workingdir: . -'207020': + workingdir: "." +"207020": installDir: BangBangRacing launch: - description: Bang Bang Racing executable: BangBangRacing.exe - - arguments: '-safemode' + - arguments: "-safemode" description: Bang Bang Racing (Safe Mode) executable: BangBangRacing.exe -'2070390': +"2070390": installDir: Spellbook Demonslayers Prologue launch: - executable: Spellbook Demonslayers.exe type: default -'207040': +"207040": installDir: Sine Mora launch: - config: oslist: windows executable: SineMora.exe -'2070550': +"2070550": installDir: A Castle Full of Cats launch: - config: @@ -109138,15 +106365,15 @@ - config: oslist: linux executable: Castle.x86_64 -'207060': +"207060": installDir: MLB 2K12 launch: - executable: MLB2K12.exe -'20710': +"20710": installDir: MrRobot launch: - executable: MrRobot.exe -'207140': +"207140": installDir: SpeedRunners launch: - config: @@ -109157,20 +106384,20 @@ executable: SpeedRunners.app/Contents/MacOS/SpeedRunners type: none - config: - osarch: '32' + osarch: "32" oslist: linux - executable: ./SpeedRunners.bin.x86 + executable: "./SpeedRunners.bin.x86" type: none - config: - osarch: '64' + osarch: "64" oslist: linux - executable: ./SpeedRunners.bin.x86_64 + executable: "./SpeedRunners.bin.x86_64" type: none -'207150': +"207150": installDir: Stellar Impact launch: - executable: StellarImpact.exe -'2071530': +"2071530": installDir: Half-Earth Socialism launch: - config: @@ -109185,7 +106412,7 @@ oslist: linux executable: half-earth type: default -'207170': +"207170": installDir: Legend of Grimrock launch: - config: @@ -109197,35 +106424,35 @@ - config: oslist: linux executable: Grimrock.bin.x86 -'207190': +"207190": installDir: Fireburst launch: - - executable: Binaries\\Win32\\FireburstLauncher.exe -'207210': - installDir: Tony Hawk's Pro Skater HD + - executable: "Binaries\\\\Win32\\\\FireburstLauncher.exe" +"207210": + installDir: "Tony Hawk's Pro Skater HD" launch: - - executable: binaries\\Win32\\THHDGame.exe -'207230': + - executable: "binaries\\\\Win32\\\\THHDGame.exe" +"207230": installDir: ArcheBlade launch: - config: oslist: windows - executable: Binaries\\Win32\\Archeblade.exe + executable: "Binaries\\\\Win32\\\\Archeblade.exe" workingdir: Binaries -'2072400': +"2072400": installDir: Futanari Sex - Mile High Fun launch: - config: oslist: windows executable: FUTANARI SEX - Mile High Fun.exe type: default -'2072450': +"2072450": nameLocalized: japanese: 龍が如く8 koreana: 용과 같이8 schinese: 人中之龙8 tchinese: 人中之龍8 -'207250': +"207250": installDir: Cubemen launch: - config: @@ -109238,7 +106465,7 @@ oslist: linux description: Linux executable: startgame.sh -'207320': +"207320": installDir: Ys The Oath in Felghana launch: - executable: ysf_win_dx9.exe @@ -109250,15 +106477,15 @@ type: option1 - executable: config.exe type: config -'2073250': {} -'207350': +"2073250": {} +"207350": installDir: Ys Origin launch: - executable: yso_win.exe type: default - executable: config.exe type: config -'2073530': +"2073530": installDir: Stereo Boy launch: - config: @@ -109266,24 +106493,24 @@ executable: StereoBoy.app type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: StereoBoy.exe type: default -'207370': +"207370": installDir: eXceed - Gun Bullet Children launch: - executable: eXceed.exe -'207380': +"207380": installDir: eXceed 2nd - Vampire REX launch: - executable: eXceed2nd-VR.exe -'2073850': {} -'207400': +"2073850": {} +"207400": installDir: eXceed 3rd - Jade Penetrate Black Package launch: - executable: eXceed3rd-BR.exe -'207420': +"207420": installDir: Wizorb launch: - config: @@ -109296,8 +106523,8 @@ - config: oslist: linux description: Launch - executable: ./Wizorb -'207430': + executable: "./Wizorb" +"207430": installDir: HackSlashLoot launch: - config: @@ -109310,7 +106537,7 @@ oslist: linux executable: HackSlashLoot type: none -'207490': +"207490": installDir: ValveTestApp207490 launch: - config: @@ -109320,23 +106547,23 @@ oslist: macos description: Launch executable: Rayman Origins.app -'2074920': +"2074920": nameLocalized: koreana: 퍼스트 디센던트 -'207530': +"207530": installDir: Noitu Love 2 Devolution launch: - executable: nl2.exe - description: Video and Mouse Configuration executable: config.exe -'2075340': +"2075340": installDir: Eo launch: - config: oslist: windows executable: Eo.exe type: default -'207570': +"207570": installDir: English Country Tune launch: - config: @@ -109348,9 +106575,9 @@ - config: oslist: linux executable: English Country Tune -'2075900': {} -'2076010': {} -'207610': +"2075900": {} +"2076010": {} +"207610": installDir: The Walking Dead launch: - config: @@ -109359,11 +106586,11 @@ - config: oslist: macos executable: TheWalkingDead.app -'2076220': +"2076220": installDir: AkaiKatana launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: AKAI_KATANA_SHIN.exe type: default @@ -109372,7 +106599,7 @@ koreana: 아카이카타나 진 schinese: 《Akai Katana Shin》 tchinese: 赤刀真 -'207650': +"207650": installDir: A Virus Named TOM launch: - config: @@ -109385,8 +106612,8 @@ - config: oslist: linux description: Launch - executable: ./AVirusNamedTOM -'207670': + executable: "./AVirusNamedTOM" +"207670": installDir: Avseq launch: - config: @@ -109395,7 +106622,7 @@ - config: oslist: macos executable: Avseq-Mac.app -'207690': +"207690": installDir: Botanicula launch: - config: @@ -109406,25 +106633,25 @@ executable: Botanicula.app - config: oslist: windows - ownsdlc: '650250' + ownsdlc: "650250" description: Botanicula Art Book executable: Botanicula Art Book/Botanicula Art Book.pdf type: none - config: oslist: windows - ownsdlc: '650250' + ownsdlc: "650250" description: Play soundtrack from playlist executable: Botanicula Soundtrack MP3/Dva - Botanicula Soundtrack.m3u type: none - config: oslist: macos - ownsdlc: '650250' + ownsdlc: "650250" description: Play Soundtrack executable: OSX_Play-Soundtrack.sh type: none - config: oslist: macos - ownsdlc: '650250' + ownsdlc: "650250" description: Open Art Book (pdf) executable: OSX_Open-ArtBook.sh type: none @@ -109433,13 +106660,13 @@ koreana: Botanicula (보타니큘라) schinese: 植物精灵 (Botanicula) tchinese: 植物精靈 (Botanicula) -'2077040': +"2077040": installDir: 明日、初めて彼女と❤ launch: - config: oslist: windows executable: game.exe -'207710': +"207710": installDir: Bumbledore launch: - config: @@ -109448,25 +106675,25 @@ - config: oslist: windows executable: bumbledore.exe -'2077180': +"2077180": installDir: SCP Daybreak launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Daybreak.exe type: default -'207730': +"207730": installDir: Arena Wars 2 launch: - executable: ArenaWars.exe -'2077430': - installDir: Vespa's Test +"2077430": + installDir: "Vespa's Test" launch: - config: oslist: windows - executable: Vespa's Test.exe -'207750': + executable: "Vespa's Test.exe" +"207750": installDir: Symphony launch: - config: @@ -109477,63 +106704,63 @@ description: Launch OSX executable: Symphony.app - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: Symphony.bin.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Symphony.bin.x86_64 -'2077550': - installDir: Eremidia - Archivist's Curse +"2077550": + installDir: "Eremidia - Archivist's Curse" launch: - config: oslist: windows executable: Game.exe -'207790': +"207790": installDir: Janes Advanced Strike Fighters launch: - executable: GameLauncher.exe -'2078040': +"2078040": installDir: White Day2 The Flower That Tells Lies launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: WD.exe -'2078350': +"2078350": nameLocalized: - brazilian: 'Bluey: o video game' - danish: 'Bluey: Videospillet' - dutch: 'Bluey: De Videogame' - finnish: 'Bluey: videopeli' - french: 'Bluey: Le Jeu Vidéo' - german: 'Bluey: Das Videospiel' - italian: 'Bluey: Il Videogioco' - japanese: 'Bluey: ビデオゲーム' - koreana: '블루이: 비디오 게임' - latam: 'Bluey: El Videojuego' - norwegian: 'Bluey: Videospillet' - polish: 'Bluey: Gra wideo' - portuguese: 'Bluey: O Videojogo' - russian: 'Bluey: Игра' - schinese: '布鲁伊: 电子游戏' - spanish: 'Bluey: El Videojuego' - swedish: 'Bluey: TV-spelet' - tchinese: '布麗:電玩版' - turkish: 'Bluey: Video oyunu' - ukrainian: 'Bluey: Гра' -'2078360': + brazilian: "Bluey: o video game" + danish: "Bluey: Videospillet" + dutch: "Bluey: De Videogame" + finnish: "Bluey: videopeli" + french: "Bluey: Le Jeu Vidéo" + german: "Bluey: Das Videospiel" + italian: "Bluey: Il Videogioco" + japanese: "Bluey: ビデオゲーム" + koreana: "블루이: 비디오 게임" + latam: "Bluey: El Videojuego" + norwegian: "Bluey: Videospillet" + polish: "Bluey: Gra wideo" + portuguese: "Bluey: O Videojogo" + russian: "Bluey: Игра" + schinese: "布鲁伊: 电子游戏" + spanish: "Bluey: El Videojuego" + swedish: "Bluey: TV-spelet" + tchinese: "布麗:電玩版" + turkish: "Bluey: Video oyunu" + ukrainian: "Bluey: Гра" +"2078360": installDir: Futa University launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Futa University.exe type: default -'207890': +"207890": installDir: Football Manager 2013 launch: - config: @@ -109542,29 +106769,29 @@ - config: oslist: macos executable: fm.app -'207930': +"207930": installDir: sacred_citadel launch: - config: oslist: windows description: Launch executable: sacredcitadel.exe -'208030': +"208030": installDir: Moon Breakers launch: - executable: mb.exe -'208090': +"208090": installDir: Loadout launch: - - arguments: '' + - arguments: "" description: Loadout - Beta executable: Loadout.exe - workingdir: '' -'2081080': + workingdir: "" +"2081080": nameLocalized: schinese: 神奇英侠 Capes tchinese: 神奇英侠 Capes -'208110': +"208110": installDir: Myst V launch: - config: @@ -109575,18 +106802,18 @@ oslist: macos executable: Myst V End of Ages.app type: default -'208140': +"208140": installDir: Endless Space launch: - - arguments: '-single-instance' + - arguments: "-single-instance" config: oslist: windows executable: EndlessSpace.exe - - arguments: '-single-instance' + - arguments: "-single-instance" config: oslist: macos executable: Endless Space.app -'2081400': +"2081400": installDir: Grim Guardians Demon Purge launch: - config: @@ -109594,12 +106821,12 @@ executable: game.exe type: default nameLocalized: - english: 'Gal Guardians: Demon Purge' + english: "Gal Guardians: Demon Purge" japanese: グリム・ガーディアンズ デーモンパージ - koreana: '그림 가디언즈: 데몬 퍼지' + koreana: "그림 가디언즈: 데몬 퍼지" schinese: 少女魔净 tchinese: 少女魔淨 -'2081460': +"2081460": installDir: Breeze launch: - config: @@ -109607,7 +106834,7 @@ executable: Breeze_demo.exe nameLocalized: schinese: 微风 -'2081860': +"2081860": installDir: The Van Game launch: - config: @@ -109618,7 +106845,7 @@ oslist: macos executable: TheVanGame.app type: default -'20820': +"20820": installDir: Shatter launch: - config: @@ -109634,53 +106861,51 @@ - config: oslist: linux executable: SettingsEditor.bin.x86 -'208200': +"208200": installDir: DOOM 3 BFG Edition launch: - - description: 'Launch Doom 3: BFG Edition' + - description: "Launch Doom 3: BFG Edition" executable: Doom3BFG.exe -'2082260': +"2082260": installDir: TAXINAUT launch: - executable: taxinaut.exe type: default -'2083010': +"2083010": installDir: Another World Quest launch: - config: oslist: windows executable: AnotherWorldQuest.exe type: default -'2083100': +"2083100": installDir: Megafortress Collection launch: - config: oslist: windows executable: Launcher/ConsoleLauncher.exe -'2083160': +"2083160": installDir: Disfigure launch: - config: oslist: windows description: Windows - description_loc: - english: Windows executable: Disfigure.exe type: default -'2083790': +"2083790": installDir: Capitals launch: - config: oslist: windows executable: Capitals.exe -'20840': +"20840": installDir: RugbyChallenge launch: - description: Rugby Challenge executable: RugbyChallenge.exe - description: Rugby Challenge Settings Editor - executable: tools\\RugbyChallengeSettingsEditor.exe -'208400': + executable: "tools\\\\RugbyChallengeSettingsEditor.exe" +"208400": installDir: Avernum Escape From the Pit launch: - config: @@ -109689,34 +106914,32 @@ - config: oslist: macos executable: Avernum.app -'2084110': +"2084110": installDir: Desktop Jumpscares launch: - config: oslist: windows description: regular - description_loc: - english: regular executable: Desktop Jumpscares.exe type: default -'208460': +"208460": installDir: Tryst launch: - - arguments: '-skipoptionsload -biglog -skipbalance -newmain -usesteam -disablelanguagetest' + - arguments: "-skipoptionsload -biglog -skipbalance -newmain -usesteam -disablelanguagetest" executable: GameClient/Tryst.exe -'208480': - installDir: Assassin's Creed 3 +"208480": + installDir: "Assassin's Creed 3" launch: - - arguments: '-uplay_steam_mode ' + - arguments: "-uplay_steam_mode " config: oslist: windows - description: Launch Assassin's Creed III + description: "Launch Assassin's Creed III" executable: AC3SP.exe -'208500': +"208500": installDir: F1 2012 launch: - executable: F1_2012.exe -'208520': +"208520": installDir: Omerta launch: - config: @@ -109727,7 +106950,7 @@ oslist: macos description: Mac OSX launch option executable: OmertaSteam.app -'2085790': +"2085790": installDir: Mutant Meltdown launch: - config: @@ -109741,7 +106964,7 @@ oslist: linux executable: MutantMeltdown.x86_64 type: default -'208580': +"208580": installDir: Knights of the Old Republic II launch: - config: @@ -109753,9 +106976,9 @@ type: default - config: oslist: linux - executable: ./KOTOR2 + executable: "./KOTOR2" type: default -'2085970': +"2085970": installDir: Cracking the Cryptic launch: - config: @@ -109764,7 +106987,7 @@ - config: oslist: macos executable: cracking_the_cryptic.app -'208600': +"208600": installDir: Lunar Flight launch: - config: @@ -109783,7 +107006,7 @@ oslist: windows executable: LunarFlight.exe type: othervr -'2086180': +"2086180": installDir: ICommissionedSomeBees4 launch: - config: @@ -109800,7 +107023,7 @@ schinese: 我委托了一些蜜蜂4 spanish: Mi gran comisión de abejas 4 swedish: Jag anlitade några bin 4 -'208620': +"208620": installDir: Midnight Mysteries 2 Salem Witch Trials launch: - config: @@ -109809,7 +107032,7 @@ - config: oslist: macos executable: Midnight Mysteries - Salem Witch Trials CE.app -'208630': +"208630": installDir: Midnight Mysteries 3 Devil on the Mississippi launch: - config: @@ -109818,25 +107041,25 @@ - config: oslist: macos executable: Midnight Mysteries - Devil on the Mississippi CE.app -'2086360': +"2086360": nameLocalized: japanese: ダブルドラゴン アドバンス schinese: 双截龙ADVANCE tchinese: 雙截龍ADVANCE -'2086370': +"2086370": nameLocalized: japanese: リターン・オブ・ダブルドラゴン schinese: 超级双截龙 tchinese: 超級雙截龍 -'2086380': - installDir: Miss Kobayashi's Dragon Maid +"2086380": + installDir: "Miss Kobayashi's Dragon Maid" launch: - config: oslist: windows executable: MissKobayashisDragonMaid.exe nameLocalized: - japanese: 小林さんちのメイドラゴン 炸裂!!ちょろゴン☆ブレス DIRECTOR'S CUT -'208640': + japanese: "小林さんちのメイドラゴン 炸裂!!ちょろゴン☆ブレス DIRECTOR'S CUT" +"208640": installDir: Midnight Mysteries 4 launch: - config: @@ -109845,16 +107068,16 @@ - config: oslist: macos executable: Midnight Mysteries - Haunted Houdini CE.app -'208650': +"208650": installDir: Batman Arkham Knight launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch - executable: Binaries\\Win64\\BatmanAK.exe - workingdir: Binaries\\Win64 -'208670': + executable: "Binaries\\\\Win64\\\\BatmanAK.exe" + workingdir: "Binaries\\\\Win64" +"208670": installDir: Blades of Time launch: - config: @@ -109863,28 +107086,28 @@ - config: oslist: macos executable: BladesOfTime.app -'2086830': +"2086830": installDir: jjsg830 launch: - executable: game.exe type: none -'2087000': +"2087000": installDir: IdleBakerBoss launch: - config: oslist: windows executable: Idle Baker Boss.exe type: default -'2087030': +"2087030": installDir: Shatterline launch: - - arguments: '-platform_type Steam -bugsplat_enabled' + - arguments: "-platform_type Steam -bugsplat_enabled" config: - osarch: '64' + osarch: "64" oslist: windows executable: Launch_Game.exe type: default -'208710': +"208710": installDir: ColourBind launch: - config: @@ -109894,11 +107117,11 @@ oslist: macos executable: Colour Bind.app workingdir: Colour Bind.app/Contents/Resources -'208730': +"208730": installDir: Game of Thrones launch: - - executable: Binaries\\Win32\\ShippingPC-AGOTGame.exe -'2087470': + - executable: "Binaries\\\\Win32\\\\ShippingPC-AGOTGame.exe" +"2087470": installDir: ICommissionedSomeBees5 launch: - config: @@ -109915,7 +107138,7 @@ schinese: 我委托了一些蜜蜂5 spanish: Mi gran comisión de abejas 5 swedish: Jag anlitade några bin 5 -'2087480': +"2087480": installDir: ICommissionedSomeBees6 launch: - config: @@ -109932,7 +107155,7 @@ schinese: 我委托了一些蜜蜂6 spanish: Mi gran comisión de abejas 6 swedish: Jag anlitade några bin 6 -'208750': +"208750": installDir: Apotheon launch: - config: @@ -109941,14 +107164,14 @@ - config: oslist: linux description: Launch - executable: ./Apotheon - - arguments: '/gldevice:OpenGL' + executable: "./Apotheon" + - arguments: "/gldevice:OpenGL" config: oslist: macos description: Launch executable: Apotheon.app/Contents/MacOS/Apotheon type: none -'2088080': +"2088080": installDir: KEEK launch: - config: @@ -109959,29 +107182,29 @@ oslist: macos executable: MacOS.app type: default -'2088520': +"2088520": installDir: Shooting Game KARI launch: - executable: ShootingGameKari.exe nameLocalized: english: Shooting Game KARI japanese: Shooting Game (仮) -'208860': +"208860": installDir: Mad Riders launch: - executable: MadRidersGame_x86.exe -'2089000': +"2089000": installDir: The Past Rhapsody launch: - executable: ThePastRhapsody.exe -'2089340': +"2089340": installDir: Adventures of Quin85 launch: - config: oslist: windows executable: AOQ85.exe type: default -'2089350': +"2089350": installDir: Hatsune Miku Logic Paint S launch: - config: @@ -109990,7 +107213,7 @@ type: default nameLocalized: japanese: 初音ミク ロジックペイントS -'2089720': +"2089720": installDir: Asian Maiden Creator launch: - config: @@ -110001,16 +107224,16 @@ oslist: macos executable: nw-app.app type: default -'20900': +"20900": installDir: The Witcher Enhanced Edition launch: - config: oslist: windows - executable: system\\witcher.exe + executable: "system\\\\witcher.exe" - config: oslist: windows description: Launch Adventure Editor - executable: system\\djinni!.exe + executable: "system\\\\djinni!.exe" - config: oslist: macos description: Launch The Witcher @@ -110018,52 +107241,46 @@ - config: oslist: windows description: Launch The Witcher Digital Comic - executable: Digital Comic\\DigitalComic.exe -'209000': + executable: "Digital Comic\\\\DigitalComic.exe" +"209000": installDir: Batman Arkham Origins launch: - description: Single-Player - executable: SinglePlayer\\Binaries\\Win32\\BatmanOrigins.exe - - description: 'Batman™: Arkham Origins Online' - executable: Online\\Binaries\\Win32\\BatmanOriginsOnline.exe -'2090230': + executable: "SinglePlayer\\\\Binaries\\\\Win32\\\\BatmanOrigins.exe" + - description: "Batman™: Arkham Origins Online" + executable: "Online\\\\Binaries\\\\Win32\\\\BatmanOriginsOnline.exe" +"2090230": installDir: SCPCBR launch: - config: oslist: windows executable: SCPCBR.exe type: default - - arguments: '-debug' + - arguments: "-debug" config: betakey: staging oslist: windows description: in Debug Mode - description_loc: - english: in Debug Mode executable: SCPCBR.exe type: option1 - - arguments: '-resetachievements' + - arguments: "-resetachievements" config: oslist: windows description: Reset Achievement Progress - description_loc: - english: Reset Achievement Progress executable: SCPCBR.exe - - arguments: '-resetsettings' + - arguments: "-resetsettings" config: oslist: windows description: Reset Launcher & In-Game Settings - description_loc: - english: Reset Launcher & In-Game Settings executable: SCPCBR.exe -'2090370': +"2090370": nameLocalized: - english: 'River City: Rival Showdown' + english: "River City: Rival Showdown" japanese: ダウンタウン熱血物語SP koreana: 다운타운 열혈이야기 SP schinese: 热血物语SP tchinese: 熱血物語SP -'209060': +"209060": installDir: Drunken Robot Pornography launch: - config: @@ -110074,7 +107291,7 @@ oslist: linux description: Launch executable: DRP.x86 -'209080': +"209080": installDir: Guns of Icarus Online launch: - config: @@ -110097,7 +107314,7 @@ description: Launch Workshop Tool executable: workshop/launch.sh workingdir: workshop - - arguments: '-force-d3d9' + - arguments: "-force-d3d9" config: oslist: windows description: Play Guns of Icarus Online (DirectX 9) @@ -110109,15 +107326,15 @@ executable: workshop/Workshop.exe type: none workingdir: workshop -'209100': +"209100": installDir: Resident Evil Operation Raccoon City launch: - executable: RaccoonCity.exe -'209120': +"209120": installDir: Street Fighter X Tekken launch: - executable: SFTK.exe -'2091220': +"2091220": installDir: Kach launch: - config: @@ -110126,25 +107343,25 @@ - config: oslist: macos executable: Kach.app/Contents/MacOS/Kach -'2091250': +"2091250": installDir: Koishi Navigation Desktop Youkai launch: - executable: KoishiNavigationDesktopYoukai.exe nameLocalized: english: Koishi Navigation Desktop Youkai - japanese: '旅行こいし: デスクトップ少女 ~ Koishi Navigation Desktop Youkai' - schinese: '旅行恋恋: 桌面少女 ~ Koishi Navigation Desktop Youkai' -'209160': + japanese: "旅行こいし: デスクトップ少女 ~ Koishi Navigation Desktop Youkai" + schinese: "旅行恋恋: 桌面少女 ~ Koishi Navigation Desktop Youkai" +"209160": installDir: Call of Duty Ghosts launch: - executable: iw6sp64_ship.exe -'209190': +"209190": installDir: StealthBastardDeluxe launch: - config: oslist: windows description: Launch game - executable: 'StealthBastard[Steam].exe' + executable: "StealthBastard[Steam].exe" - config: oslist: linux description: Launch game @@ -110153,7 +107370,7 @@ oslist: macos description: Launch game executable: StealthBastardDeluxe.app -'20920': +"20920": installDir: the witcher 2 launch: - config: @@ -110168,25 +107385,25 @@ oslist: linux description: Play The Witcher 2 executable: launcher -'2092130': +"2092130": installDir: Notes From Province launch: - config: oslist: windows executable: Game.exe type: default -'2092190': +"2092190": installDir: Nomori (Pre-Alpha) launch: - config: oslist: windows executable: Nomori.exe type: default -'209230': +"209230": installDir: sh_thob launch: - executable: The_Hound_of_The_Baskervilles.exe -'209270': +"209270": installDir: Hero Academy launch: - config: @@ -110197,8 +107414,8 @@ executable: Hero Academy.app - config: oslist: linux - executable: ./HeroAcademy.bin.x86 -'209330': + executable: "./HeroAcademy.bin.x86" +"209330": installDir: A Valley Without Wind launch: - config: @@ -110208,28 +107425,28 @@ oslist: macos executable: AVWW.app - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: AVWWLinux.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: AVWWLinux.x86_64 -'209340': +"209340": installDir: ride_to_hell_retribution launch: - config: oslist: windows description: Play Ride to Hell executable: Binaries/Ride_To_Hell_Retribution.exe -'209360': +"209360": installDir: All Zombies Must Die - Scorepocalypse launch: - - arguments: '-seekfreeloading' + - arguments: "-seekfreeloading" executable: Binaries/Win32/AZMD.exe -'209370': +"209370": installDir: Analogue A Hate Story launch: - config: @@ -110241,14 +107458,14 @@ - config: oslist: linux executable: Analogue.sh -'209390': +"209390": installDir: Dungeonbowl launch: - - arguments: '' + - arguments: "" description: Default executable: DB.exe - workingdir: '' -'2094090': + workingdir: "" +"2094090": installDir: Table Ball launch: - config: @@ -110263,7 +107480,7 @@ oslist: macos executable: Table Ball.app type: default -'2094380': +"2094380": installDir: Chai launch: - config: @@ -110275,7 +107492,7 @@ - config: oslist: linux executable: Chai.x86_64 -'2094730': +"2094730": installDir: Tux and Fanny launch: - config: @@ -110287,7 +107504,7 @@ - config: oslist: linux executable: TuxAndFanny_Linux/TuxAndFanny.x86_64 -'209520': +"209520": installDir: Mini Motor Racing launch: - config: @@ -110300,14 +107517,14 @@ description: Launch MMR executable: Mini Motor Racing Evo.app/Contents/MacOS/Mini Motor workingdir: Mini Motor Racing Evo.app/Contents/MacOS/ -'2095340': +"2095340": installDir: Road 96 Mile 0 launch: - config: oslist: windows executable: Road96-Mile0.exe type: default -'209540': +"209540": installDir: strikesuitzero launch: - config: @@ -110325,48 +107542,48 @@ description: Launch game executable: linux/main/binary/StrikeSuitZero workingdir: linux/main/binary -'209610': +"209610": installDir: RollerCoasterRampage launch: - - arguments: '' + - arguments: "" description: Launch executable: rcr.exe - workingdir: '' -'209630': + workingdir: "" +"209630": installDir: Magrunner launch: - - arguments: '-NOSCREENMESSAGES' + - arguments: "-NOSCREENMESSAGES" config: oslist: windows description: Play the game - executable: Binaries\\Win32\\Magrunner.exe - workingdir: Binaries\\Win32 - - arguments: '-NOSCREENMESSAGES -lowgraphics' + executable: "Binaries\\\\Win32\\\\Magrunner.exe" + workingdir: "Binaries\\\\Win32" + - arguments: "-NOSCREENMESSAGES -lowgraphics" config: oslist: windows description: Launch in Safe Mode - executable: Binaries\\Win32\\Magrunner.exe - workingdir: Binaries\\Win32 -'209650': + executable: "Binaries\\\\Win32\\\\Magrunner.exe" + workingdir: "Binaries\\\\Win32" +"209650": installDir: Call of Duty Advanced Warfare launch: - description: Launch executable: s1_sp64_ship.exe -'2096600': +"2096600": installDir: Crysis2Remastered launch: - config: oslist: windows - executable: Bin64\\Crysis2Remastered.exe + executable: "Bin64\\\\Crysis2Remastered.exe" type: default -'2096610': +"2096610": installDir: Crysis3Remastered launch: - config: oslist: windows - executable: Bin64\\Crysis3Remastered.exe + executable: "Bin64\\\\Crysis3Remastered.exe" type: default -'209670': +"209670": installDir: Cortex Command launch: - config: @@ -110381,7 +107598,7 @@ oslist: linux description: Launch executable: CortexCommandHaxLoader -'209690': +"209690": installDir: Fieldrunners launch: - config: @@ -110389,63 +107606,59 @@ executable: Fieldrunners.exe - config: oslist: macos - executable: ./Fieldrunners-Mac -'209710': + executable: "./Fieldrunners-Mac" +"209710": installDir: War of the Immortals launch: - - arguments: '/Steam /arc:1' + - arguments: "/Steam /arc:1" description: Open Launcher executable: Launcher.exe workingdir: Bin -'2097230': {} -'209730': +"2097230": {} +"209730": installDir: R.A.W. Realms of Ancient War launch: - executable: Realms Of Ancient War.exe - description: Configuration executable: Realms Of Ancient War - Config.exe -'2097490': +"2097490": installDir: DESORDRE launch: - config: oslist: windows - description_loc: - french: Jouer avec DirectX 12 executable: Desordre.exe type: default - - arguments: '-vulkan' + - arguments: "-vulkan" config: oslist: windows description: Vulkan Version - description_loc: - english: Vulkan Version executable: Desordre.exe -'209750': +"209750": installDir: Cannon Fodder 3 launch: - config: oslist: windows description: Cannon Fodder 3 executable: cf3.exe -'2097540': +"2097540": installDir: My First Femboy Date launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: MyFirstFemboyDate.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: MyFirstFemboyDate-32.exe type: default -'2097880': - installDir: Nayla's Castle +"2097880": + installDir: "Nayla's Castle" launch: - executable: player.exe -'2097890': {} -'209790': +"2097890": {} +"209790": installDir: Splice launch: - config: @@ -110460,7 +107673,7 @@ oslist: linux description: Linux32 executable: Splice -'209830': +"209830": installDir: Lone Survivor launch: - config: @@ -110469,14 +107682,14 @@ - config: oslist: macos executable: LoneSurvivor.app -'2098470': +"2098470": installDir: What if George Washington was a Girl launch: - config: oslist: windows executable: Alter Historia - What if George Washington was a Girl.exe type: default -'209850': +"209850": installDir: Highborn launch: - config: @@ -110485,38 +107698,38 @@ - config: oslist: macos executable: Highborn.app -'209870': +"209870": installDir: blacklightretribution launch: - - arguments: '-zcureurl=zcure-pc.hardsuitlabs.com -zcureport=443 -presenceurl=zcure-pc.hardsuitlabs.com -presenceport=9004' + - arguments: "-zcureurl=zcure-pc.hardsuitlabs.com -zcureport=443 -presenceurl=zcure-pc.hardsuitlabs.com -presenceport=9004" config: oslist: windows description: Main Executable - executable: binaries\\win32\\foxgame-win32-shipping_BE.exe + executable: "binaries\\\\win32\\\\foxgame-win32-shipping_BE.exe" type: option1 -'2099050': +"2099050": installDir: Home Deco Puzzles launch: - executable: Home Deco Puzzles.exe -'209950': +"209950": installDir: TripleTown launch: - - arguments: '-console' + - arguments: "-console" config: oslist: macos description: Launch with Console executable: TripleTown.app/Contents/MacOS/TripleTown - - arguments: '-console' + - arguments: "-console" config: oslist: windows description: Launch with Console executable: TripleTown.exe -'2100': +"2100": installDir: Dark Messiah Might and Magic Single Player launch: - - arguments: '-steam' + - arguments: "-steam" executable: mm.exe -'21000': +"21000": installDir: Lego Batman launch: - config: @@ -110526,24 +107739,24 @@ oslist: macos description: Mac Launch executable: LEGO Batman.app -'2100160': +"2100160": installDir: MotoGP™23 launch: - executable: motogp23.exe -'21010': +"21010": installDir: Watchmen launch: - - arguments: '-enginedir=exe' - executable: .\\data\\engine\\MultiLauncher.exe -'2101220': + - arguments: "-enginedir=exe" + executable: ".\\\\data\\\\engine\\\\MultiLauncher.exe" +"2101220": installDir: StoryWalker launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: StoryWalker.exe type: default -'210150': +"210150": installDir: Pole Position 2012 launch: - config: @@ -110552,7 +107765,7 @@ - config: oslist: macos executable: PP2012.app -'210170': +"210170": installDir: Spirits launch: - config: @@ -110567,34 +107780,30 @@ oslist: linux description: Launch Game executable: Spirits -'2101800': +"2101800": installDir: The Pinball Wizard launch: - config: oslist: windows description: Launch - description_loc: - english: Launch executable: Pinball Wizard.exe type: default - config: oslist: macos description: Launch - description_loc: - english: Launch executable: ThePinballWizard.app type: default -'210230': +"210230": installDir: Nancy Drew - Tomb of the Lost Queen launch: - config: oslist: windows executable: Tomb.exe - - arguments: '-psn' + - arguments: "-psn" config: oslist: macos executable: Nancy Drew - Tomb of the Lost Queen.app/Contents/MacOS/cider -'2102760': +"2102760": installDir: OVER Devil Legend of the sacred stone launch: - config: @@ -110602,56 +107811,56 @@ executable: Game.exe type: default nameLocalized: - english: 'OVER‧DeviL: Legend of the sacred stone' + english: "OVER‧DeviL: Legend of the sacred stone" japanese: OVER‧DeviL:聖石の少女 schinese: OVER‧DeviL:圣石少女篇 tchinese: OVER‧DeviL:聖石少女篇 -'21030': +"21030": installDir: Watchmen Part 2 launch: - - arguments: '-enginedir=exe' - executable: .\\data\\engine\\MultiLauncher.exe -'210490': + - arguments: "-enginedir=exe" + executable: ".\\\\data\\\\engine\\\\MultiLauncher.exe" +"210490": installDir: Fray launch: - executable: fray.exe -'210550': +"210550": installDir: Angry Birds Space launch: - config: oslist: windows executable: AngryBirdsSpace.exe -'2106840': +"2106840": installDir: PARANORMASIGHT launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: PARANORMASIGHT.exe nameLocalized: japanese: パラノマサイト FILE23 本所七不思議 -'21070': +"21070": installDir: Wanted - Weapons of Fate launch: - executable: Wanted.exe -'2107410': {} -'2107670': +"2107410": {} +"2107670": installDir: Warhaven launch: - - arguments: '-PlatformProvider=TOY -steam -saveddirsuffix=GL' - executable: Warhaven\\Binaries\\Win64\\Warhaven-Win64-Shipping.exe - - arguments: '-PlatformProvider=TOY -steam -saveddirsuffix=GL' + - arguments: "-PlatformProvider=TOY -steam -saveddirsuffix=GL" + executable: "Warhaven\\\\Binaries\\\\Win64\\\\Warhaven-Win64-Shipping.exe" + - arguments: "-PlatformProvider=TOY -steam -saveddirsuffix=GL" config: betakey: staging - executable: Warhaven\\Binaries\\Win64\\Warhaven-Win64-Shipping.exe -'210770': + executable: "Warhaven\\\\Binaries\\\\Win64\\\\Warhaven-Win64-Shipping.exe" +"210770": installDir: Sanctum2 launch: - config: oslist: windows description: Launch Game - executable: Binaries\\Win32\\SanctumGame-Win32-Shipping.exe - workingdir: Binaries\\Win32\\ + executable: "Binaries\\\\Win32\\\\SanctumGame-Win32-Shipping.exe" + workingdir: "Binaries\\\\Win32\\\\" - config: oslist: linux description: Launch @@ -110660,7 +107869,7 @@ oslist: macos description: Launch executable: Sanctum2.app -'2107860': +"2107860": installDir: Yggdra Union launch: - config: @@ -110671,137 +107880,115 @@ japanese: YGGDRA UNION ユグドラ・ユニオン koreana: 유그드라 유니온 tchinese: 聖劍同盟 -'21080': +"21080": installDir: Terminator Salvation launch: - executable: TerminatorSalvation.exe -'2108330': +"2108330": installDir: F1 23 launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: F1® 23 - description_loc: - english: F1® 23 executable: F1_23.exe type: default - - arguments: '-vr' + - arguments: "-vr" config: - osarch: '64' + osarch: "64" oslist: windows description: F1® 23 - description_loc: - english: F1® 23 executable: F1_23.exe type: vr nameLocalized: schinese: F1® 23 tchinese: F1® 23 -'2108440': +"2108440": installDir: Lawless West launch: - executable: Lawless West.exe type: default nameLocalized: russian: Бандитский Запад -'210870': +"210870": installDir: Cloudberry Kingdom launch: - executable: CloudberryKingdom.exe -'21090': +"21090": installDir: FEAR Ultimate Shooter Edition launch: - executable: FEAR.exe -'2109370': +"2109370": installDir: TheGreatWar launch: - arguments: DUMP_MINI IGNOREASSERTS config: - osarch: '64' + osarch: "64" oslist: windows description: Gold - description_loc: - english: Gold executable: ClientLauncherG64.exe type: default - - arguments: 'NOHOTRELOAD IGNOREASSERTS DUMP_FULL COORDURL=https://coordinator.online-staging.playthegreatwar.com/' + - arguments: "NOHOTRELOAD IGNOREASSERTS DUMP_FULL COORDURL=https://coordinator.online-staging.playthegreatwar.com/" config: - betakey: 'internal_1, external_1, internal_2, external_6, internal_3, internal_7, internal_8, internal_9, internal_10' - osarch: '64' + betakey: "internal_1, external_1, internal_2, external_6, internal_3, internal_7, internal_8, internal_9, internal_10" + osarch: "64" oslist: windows description: Debugkeys Build (Staging) - description_loc: - english: Debugkeys Build (Staging) executable: ClientLauncherR64.exe type: option1 - arguments: NOHOTRELOAD IGNOREASSERTS DUMP_FULL config: - betakey: 'internal_1, external_1, external_6, internal_3, internal_7, internal_8, internal_10' - osarch: '64' + betakey: "internal_1, external_1, external_6, internal_3, internal_7, internal_8, internal_10" + osarch: "64" oslist: windows description: Debugkeys Build (Production) - description_loc: - english: Debugkeys Build (Production) executable: ClientLauncherR64.exe type: option2 - arguments: NOHOTRELOAD IGNOREASSERTS DUMP_FULL config: - betakey: >- - internal_1, internal_2, external_1, external_6, external_7, internal_4, internal_3, internal_7, internal_8, - internal_9, internal_10 - osarch: '64' + betakey: "internal_1, internal_2, external_1, external_6, external_7, internal_4, internal_3, internal_7, internal_8, internal_9, internal_10" + osarch: "64" oslist: windows description: Gold (Production) - description_loc: - english: Gold (Production) executable: ClientLauncherG64.exe type: option3 - - arguments: 'NOHOTRELOAD IGNOREASSERTS DUMP_FULL COORDURL=https://coordinator.online-staging.playthegreatwar.com/' + - arguments: "NOHOTRELOAD IGNOREASSERTS DUMP_FULL COORDURL=https://coordinator.online-staging.playthegreatwar.com/" config: - betakey: 'internal_1, external_1, internal_2, external_6, internal_3, internal_7, internal_8, internal_9, internal_10' - osarch: '64' + betakey: "internal_1, external_1, internal_2, external_6, internal_3, internal_7, internal_8, internal_9, internal_10" + osarch: "64" oslist: windows description: Gold (Staging) - description_loc: - english: Gold (Staging) executable: ClientLauncherG64.exe type: option3 - arguments: RUN_EDITOR config: - betakey: 'internal_1, external_1, internal_2, external_6, internal_3, internal_7, internal_8, internal_9, internal_10' - osarch: '64' + betakey: "internal_1, external_1, internal_2, external_6, internal_3, internal_7, internal_8, internal_9, internal_10" + osarch: "64" oslist: windows description: Editor Debugkeys Build - description_loc: - english: Editor Debugkeys Build executable: ClientLauncherR64.exe type: editor -'2109430': +"2109430": installDir: Tron Identity launch: - config: oslist: windows description: PC launch option - description_loc: - english: PC launch option executable: identity.exe type: default - config: oslist: macos description: Mac launch option - description_loc: - english: Mac launch option executable: identity.app/Contents/MacOS/identity type: default -'210950': +"210950": installDir: Rune Classic launch: - - arguments: '' + - arguments: "" description: Launch executable: System/Rune.exe workingdir: System -'210970': +"210970": installDir: The Witness launch: - config: @@ -110813,36 +108000,36 @@ oslist: macos executable: The Witness.app type: none -'2109710': +"2109710": installDir: M.U.D.S. Mean Ugly Dirty Sport launch: - config: oslist: windows executable: Launcher/ConsoleLauncher.exe -'210990': +"210990": installDir: Pro Cycling Manager 2012 launch: - executable: PCM.exe - - arguments: '-dbeditor' + - arguments: "-dbeditor" description: Database Editor executable: PCM.exe - description: Stage Editor executable: CTStageEditor.exe -'21100': +"21100": installDir: F.E.A.R. 3 launch: - executable: F.E.A.R. 3.exe -'211010': +"211010": installDir: Alien Shooter 2 Conscription launch: - config: oslist: windows executable: AlienShooter.exe type: default -'211050': +"211050": installDir: Battle vs Chess launch: - - arguments: '-dlc00 data\\dlc\\dark_desert\\ -dlc01 data\\dlc\\floating_island\\ %1 %2 %3 %4 %5 %6 %7 %8 %9' + - arguments: "-dlc00 data\\\\dlc\\\\dark_desert\\\\ -dlc01 data\\\\dlc\\\\floating_island\\\\ %1 %2 %3 %4 %5 %6 %7 %8 %9" config: oslist: windows executable: battlevschess.exe @@ -110855,19 +108042,19 @@ type: default - config: oslist: windows - ownsdlc: '510140' + ownsdlc: "510140" description: Explore Premium Content executable: ddc.cmd type: none - config: oslist: macos - ownsdlc: '510140' + ownsdlc: "510140" description: Explore Premium Content executable: ddc type: none - config: oslist: linux - ownsdlc: '510140' + ownsdlc: "510140" description: Explore Premium Content executable: ddc_xdg type: none @@ -110876,56 +108063,47 @@ description: MacOS Catalina executable: RunGame type: default -'2111170': +"2111170": installDir: STORY OF SEASONS A Wonderful Life launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: STORY OF SEASONS A Wonderful Life.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch Configuration Tool - description_loc: - english: Launch Configuration Tool - french: Lancer l’outil de configuration - german: Konfigurationstool - japanese: 設定ツールを起動 - koreana: 설정 도구 시작 - schinese: 启动配置工具 - spanish: Iniciar herramienta de configuración - tchinese: 啟動設定工具 executable: SOSAWLLauncher.exe nameLocalized: japanese: 牧場物語 Welcome!ワンダフルライフ koreana: 목장이야기 Welcome! 원더풀 라이프 schinese: 牧场物语 Welcome!美丽人生 tchinese: 牧場物語 Welcome!美麗人生 -'211120': +"211120": installDir: The Political Machine 2012 launch: - description: Launch with Console executable: PolMachine2012.exe -'211140': +"211140": installDir: Shin Sangokumusou 6 TC launch: - - arguments: '' - description: '' + - arguments: "" + description: "" executable: SM6TC.exe - workingdir: . -'211160': + workingdir: "." +"211160": installDir: Viking Battle for Asgard launch: - description: Play Game... executable: viking.exe - description: Configure Game... executable: ConfigTool.exe -'211180': +"211180": installDir: Unmechanical launch: - - arguments: '-installed' + - arguments: "-installed" config: oslist: windows executable: Binaries/Win32/UDK.exe @@ -110937,35 +108115,35 @@ executable: Binaries/Win32/UDKGame.exe type: none workingdir: Binaries/Win32 - - arguments: '-installed' + - arguments: "-installed" config: oslist: macos description: Launch executable: Unmechanical.app/Contents/MacOS/UDKGame workingdir: Unmechanical.app/Contents/MacOS - - arguments: '-installed' + - arguments: "-installed" config: oslist: linux description: Launch executable: Binaries/Linux/UDKGame-Linux workingdir: Binaries/Linux -'21120': +"21120": installDir: FEAR Ultimate Shooter Edition launch: - - description: 'Launch Fear: Perseus Mandate' - executable: FEARXP2\\FEARXP2.exe + - description: "Launch Fear: Perseus Mandate" + executable: "FEARXP2\\\\FEARXP2.exe" workingdir: FEARXP2 -'211200': {} -'211201': {} -'211202': {} -'211203': {} -'211204': {} -'211205': {} -'211206': {} -'211207': {} -'211208': {} -'211209': {} -'211260': +"211200": {} +"211201": {} +"211202": {} +"211203": {} +"211204": {} +"211205": {} +"211206": {} +"211207": {} +"211208": {} +"211209": {} +"211260": installDir: they bleed pixels launch: - config: @@ -110974,38 +108152,32 @@ - config: oslist: linux description: Launch - executable: ./TheyBleedPixels + executable: "./TheyBleedPixels" - config: oslist: macos description: Launch executable: They Bleed Pixels.app -'211280': +"211280": installDir: primalfears launch: - config: oslist: windows description: Launch executable: project4.exe -'21130': +"21130": installDir: LEGO Harry Potter launch: - executable: LEGOHarryPotter.exe -'211340': +"211340": installDir: Magical Diary launch: - config: oslist: windows - description: >- - You have been invited to attend a magical school. Here you can make new friends, learn dozens of spells, face - exams in the school dungeons, run for class office, and try to find a date for the May Day Ball. But be careful! - You might end up in detention, + description: "You have been invited to attend a magical school. Here you can make new friends, learn dozens of spells, face exams in the school dungeons, run for class office, and try to find a date for the May Day Ball. But be careful! You might end up in detention," executable: MagicalDiary.exe - config: oslist: macos - description: >- - You have been invited to attend a magical school. Here you can make new friends, learn dozens of spells, face - exams in the school dungeons, run for class office, and try to find a date for the May Day Ball. But be careful! - You might end up in detention, + description: "You have been invited to attend a magical school. Here you can make new friends, learn dozens of spells, face exams in the school dungeons, run for class office, and try to find a date for the May Day Ball. But be careful! You might end up in detention," executable: MagicalDiary.app - config: oslist: linux @@ -111015,14 +108187,14 @@ description: in safe mode. This starts the game with more reliable (but less featureful) settings. executable: Play_in_safe_mode.sh type: option1 -'2113570': +"2113570": installDir: Ascend Reborn launch: - config: oslist: windows executable: bin/Game.exe type: default -'211360': +"211360": installDir: Offspring Fling! launch: - config: @@ -111031,7 +108203,7 @@ - config: oslist: macos executable: Offspring Fling.app -'2113920': +"2113920": installDir: THE LEGEND OF HEROES KURO NO KISEKI2 launch: - config: @@ -111040,10 +108212,6 @@ type: default - config: oslist: windows - description_loc: - japanese: 設定ツール - koreana: 설정 도구 - tchinese: 設定工具 executable: launcher/Launcher.exe type: config nameLocalized: @@ -111052,41 +108220,41 @@ koreana: 영웅전설 여의 궤적 Ⅱ -CRIMSON SiN- schinese: 英雄传说 黎之轨迹Ⅱ -绯红原罪- tchinese: 英雄傳說 黎之軌跡Ⅱ -緋紅原罪- -'21140': +"21140": installDir: LEGO Universe launch: - - executable: patcher\\LEGOUniverseLauncher.exe + - executable: "patcher\\\\LEGOUniverseLauncher.exe" workingdir: patcher -'211400': +"211400": installDir: Deadlight launch: - description: Launch executable: Binaries/Win32/LOTDGame.exe workingdir: Binaries -'211420': +"211420": installDir: Dark Souls Prepare to Die Edition launch: - config: oslist: windows executable: DATA/DARKSOULS.exe workingdir: DATA -'211440': +"211440": installDir: Adventures Of Shuggy launch: - config: oslist: windows executable: Shuggy.exe type: none - workingdir: . + workingdir: "." - config: oslist: linux - executable: ./Shuggy + executable: "./Shuggy" type: default - config: oslist: macos executable: Shuggy.app/Contents/MacOS/Shuggy type: default -'2114740': +"2114740": installDir: Blasphemous 2 launch: - config: @@ -111096,7 +108264,7 @@ nameLocalized: japanese: ブラスフェマス 2 schinese: 神之亵渎2 -'2114990': +"2114990": installDir: Missile Command Recharged launch: - config: @@ -111111,11 +108279,11 @@ oslist: linux executable: Missile Command Recharged.x86_64 type: default -'211500': +"211500": installDir: raceroom racing experience launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: RaceRoom (64-bit) executable: Game/x64/RRRE64.exe @@ -111127,134 +108295,134 @@ executable: Game/RRRE.exe type: option2 workingdir: Game - - arguments: '-vr' + - arguments: "-vr" config: - osarch: '64' + osarch: "64" oslist: windows description: RaceRoom (64-bit) executable: Game/x64/RRRE64.exe type: vr workingdir: Game/x64 - - arguments: '-vr' + - arguments: "-vr" config: oslist: windows description: RaceRoom (32-bit) executable: Game/RRRE.exe type: vr workingdir: Game -'211580': +"211580": installDir: Wanderlust Rebirth launch: - executable: Wanderlust.exe -'211600': +"211600": installDir: thief_gold launch: - - arguments: '' + - arguments: "" description: Launch Thief Gold executable: thief.exe - workingdir: '' -'211670': + workingdir: "" +"211670": installDir: 007 Legends launch: - executable: Bond2012PC.exe -'2117160': {} -'211740': +"2117160": {} +"211740": installDir: thief_2 launch: - - arguments: '' + - arguments: "" description: Launch Thief 2 executable: thief2.exe - workingdir: '' -'2117440': + workingdir: "" +"2117440": installDir: Lollypop launch: - config: oslist: windows executable: Launcher/ConsoleLauncher.exe -'211780': +"211780": installDir: conflict_desert_storm launch: - - arguments: '' + - arguments: "" description: Launch Conflict Desert Storm executable: DesertStorm.exe - workingdir: '' -'211800': + workingdir: "" +"211800": installDir: DeadHungryDiner launch: - executable: DHDSteam.exe -'211820': +"211820": installDir: Starbound launch: - config: - osarch: '64' + osarch: "64" oslist: linux executable: linux/run-client.sh type: default workingdir: linux/ - config: - osarch: '64' + osarch: "64" oslist: macos executable: osx/Starbound.app type: default workingdir: osx/ - config: - osarch: '32' + osarch: "32" oslist: windows executable: win32/starbound.exe type: default workingdir: win32/ - config: - osarch: '64' + osarch: "64" oslist: windows executable: win64/starbound.exe type: default workingdir: win64/ - config: - osarch: '64' + osarch: "64" oslist: linux executable: linux/run-server.sh type: server workingdir: linux/ - config: - osarch: '64' + osarch: "64" oslist: macos executable: osx/run-server.sh type: server workingdir: osx/ - config: - osarch: '32' + osarch: "32" oslist: windows executable: win32/starbound_server.exe type: server workingdir: win32/ - config: - osarch: '64' + osarch: "64" oslist: windows executable: win64/starbound_server.exe type: server workingdir: win64/ - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch Mod Uploader Tool executable: win64/mod_uploader.exe type: none - config: - osarch: '64' + osarch: "64" oslist: windows description: Play Starbound (32-bit) executable: win32/starbound.exe type: none workingdir: win32 -'2118370': +"2118370": installDir: Bosorka launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Bosorka.exe type: default -'211900': +"211900": installDir: ConquestOfElysium3 launch: - config: @@ -111269,72 +108437,60 @@ oslist: macos description: Play Game executable: coe3.app/Contents/MacOS/coe3 -'211970': +"211970": installDir: TDFerrari launch: - - arguments: '' - description: 'Launch Test Drive: Ferrari Racing Legends' + - arguments: "" + description: "Launch Test Drive: Ferrari Racing Legends" executable: TDFerrari.exe - workingdir: '' -'212010': + workingdir: "" +"212010": installDir: Galaxy On Fire 2 HD launch: - config: oslist: windows executable: GoF2Launcher.exe -'212030': +"212030": installDir: KungFuStrike launch: - executable: KungFuStrike.exe -'212050': +"212050": installDir: Resonance launch: - config: oslist: windows description: Launch Resonance - description_loc: - english: Launch Resonance executable: Resonance.exe type: default - config: oslist: windows description: Settings - description_loc: - english: Settings executable: winsetup.exe type: config - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch 64 bit - description_loc: - english: Launch 64 bit - executable: ./Start.sh + executable: "./Start.sh" type: default - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch 32 bit - description_loc: - english: Launch 32 bit - executable: ./Start.sh + executable: "./Start.sh" type: default - - arguments: '--windowed' + - arguments: "--windowed" config: oslist: linux description: Resonance (Windowed) - description_loc: - english: Resonance (Windowed) - executable: ./Start.sh + executable: "./Start.sh" type: option1 - config: oslist: macos description: Launch - description_loc: - english: Launch executable: Resonance.app/Contents/MacOS/AGS type: default -'212070': +"212070": installDir: star conflict launch: - config: @@ -111348,106 +108504,85 @@ oslist: linux description: Game Launch executable: StarConflict -'212110': +"212110": installDir: Sugar Cube Bittersweet Factory launch: - config: oslist: windows description: Launch with Console. executable: SugarCube-BF.exe -'2121200': {} -'2121210': +"2121200": {} +"2121210": installDir: Femboy Bangers 2 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: FemboyBangers2.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: FemboyBangers2-32.exe type: default -'2121510': {} -'212160': +"2121510": {} +"212160": installDir: Vindictus launch: - - arguments: >- - Vindictus.exe -passport {passport} -noupdate -steamclient --nx:title=Vindictus -lang en-US -nexonsn - {tracking_uid} -sessionid {tracking_sessionid} + - arguments: "Vindictus.exe -passport {passport} -noupdate -steamclient --nx:title=Vindictus -lang en-US -nexonsn {tracking_uid} -sessionid {tracking_sessionid}" config: betakey: public oslist: windows executable: en-us/nxsteam/nxsteam.exe type: default workingdir: en-US - - arguments: >- - Vindictus.exe -passport {passport} -noupdate -steamclient --nx:title=Vindictus --nx:env=pre -lang en-US - -nexonsn {tracking_uid} -sessionid {tracking_sessionid} + - arguments: "Vindictus.exe -passport {passport} -noupdate -steamclient --nx:title=Vindictus --nx:env=pre -lang en-US -nexonsn {tracking_uid} -sessionid {tracking_sessionid}" config: betakey: staging oslist: windows description: staging - description_loc: - english: staging executable: en-us/nxsteam/nxsteam.exe type: default workingdir: en-US -'2121980': +"2121980": installDir: Void Stranger launch: - config: oslist: windows executable: VoidStranger.exe type: default -'212200': +"212200": installDir: Mabinogi launch: - - arguments: >- - \"Client.exe code:1622 locale:USA env:Regular ver:246 logip:35.162.171.43 logport:11000 chatip:54.214.176.167 - chatport:8002 setting:\\\"file://data/features.xml\\\" sn:{tracking_uid} sid:{tracking_sessionid} /P:{passport} - -Steam\" --nx:title=Mabinogi --nx:serviceId=880915460 + - arguments: "\\\"Client.exe code:1622 locale:USA env:Regular ver:246 logip:35.162.171.43 logport:11000 chatip:54.214.176.167 chatport:8002 setting:\\\\\\\"file://data/features.xml\\\\\\\" sn:{tracking_uid} sid:{tracking_sessionid} /P:{passport} -Steam\\\" --nx:title=Mabinogi --nx:serviceId=880915460" config: oslist: windows description: Launch with Console - description_loc: - english: Launch with Console - executable: nxsteam\\nxsteam.exe + executable: "nxsteam\\\\nxsteam.exe" type: default - - arguments: >- - \"Client.exe code:1622 locale:USA env:Regular ver:246 logip:52.25.96.185 logport:11000 chatip:52.25.96.185 - chatport:8002 setting:\\\"file://data/features.xml\\\" sn:{tracking_uid} sid:{tracking_sessionid} /P:{passport} - -Steam\" --nx:title=Mabinogi --nx:serviceId=880915460 + - arguments: "\\\"Client.exe code:1622 locale:USA env:Regular ver:246 logip:52.25.96.185 logport:11000 chatip:52.25.96.185 chatport:8002 setting:\\\\\\\"file://data/features.xml\\\\\\\" sn:{tracking_uid} sid:{tracking_sessionid} /P:{passport} -Steam\\\" --nx:title=Mabinogi --nx:serviceId=880915460" config: betakey: test oslist: windows description: Beta - description_loc: - english: Beta - executable: nxsteam\\nxsteam.exe + executable: "nxsteam\\\\nxsteam.exe" type: default - - arguments: >- - \"Client.exe code:1622 locale:USA env:Test logip:35.162.133.173 logport:11000 chatip:35.162.133.173 - chatport:8002 setting:\\\"file://data/features.xml\\\" sn:{tracking_uid} sid:{tracking_sessionid} /P:${passport} - -Steam\" --nx:title=Mabinogi -- nx:serviceID=880915460 + - arguments: "\\\"Client.exe code:1622 locale:USA env:Test logip:35.162.133.173 logport:11000 chatip:35.162.133.173 chatport:8002 setting:\\\\\\\"file://data/features.xml\\\\\\\" sn:{tracking_uid} sid:{tracking_sessionid} /P:${passport} -Steam\\\" --nx:title=Mabinogi -- nx:serviceID=880915460" config: betakey: PTS Test Environment oslist: windows description: PTS test - description_loc: - english: PTS test - executable: nxsteam\\nxsteam.exe + executable: "nxsteam\\\\nxsteam.exe" type: default -'2122210': +"2122210": installDir: Battle of Vukovar Rain of Steel launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: WindowsNoEditor/BattleOfVukovar.exe type: default -'2122360': +"2122360": installDir: My Giant Friend launch: - config: @@ -111457,18 +108592,16 @@ nameLocalized: japanese: マイジャイアントフレンド schinese: 我的巨人朋友 -'2123640': {} -'212390': +"2123640": {} +"212390": installDir: C9 launch: - config: oslist: windows description: C9 Launcher - description_loc: - english: C9 Launcher executable: C9Launcher.exe type: none -'212410': +"212410": installDir: Inversion launch: - config: @@ -111476,22 +108609,20 @@ description: Launch Inversion executable: bin/Inversion.exe workingdir: bin -'2124380': +"2124380": installDir: Super Lesbian Animal RPG launch: - config: oslist: windows description: Launch game - description_loc: - english: Launch game executable: Game.exe type: default -'2124490': {} -'2124570': +"2124490": {} +"2124570": installDir: Dark Throne launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Dark Throne.exe type: default @@ -111502,7 +108633,7 @@ japanese: ダークスローン koreana: 다크쓰론 schinese: 黑暗王座:女王崛起 -'2124780': +"2124780": installDir: Endoparasitic launch: - config: @@ -111514,28 +108645,28 @@ - config: oslist: macos executable: Endoparasitic.app -'212480': +"212480": installDir: Sonic & All-Stars Racing Transformed launch: - description: Launch Game executable: ASN_App_PcDx9_Final.exe - workingdir: . + workingdir: "." - description: Configure executable: Launcher.exe - workingdir: . -'212500': + workingdir: "." +"212500": installDir: Lord of the Rings Online launch: - - arguments: '-steam' + - arguments: "-steam" config: oslist: windows executable: lotrolauncher.exe type: none - - arguments: '-steam' + - arguments: "-steam" config: oslist: macos executable: LotroLauncher.app -'2125090': +"2125090": installDir: Tintin - Cigars of the Pharaoh launch: - executable: Cigars.exe @@ -111546,133 +108677,119 @@ french: Tintin Reporter - Les Cigares du Pharaon german: Tintin Reporter - Die Zigarren des Pharaos italian: Tintin Reporter - I Sigari del Faraone - japanese: 'タンタン レポーター : ファラオの葉巻 (Tintin Reporter - Cigars of the Pharaoh)' - koreana: 'Tintin 기자 : 파라오의 시가' + japanese: "タンタン レポーター : ファラオの葉巻 (Tintin Reporter - Cigars of the Pharaoh)" + koreana: "Tintin 기자 : 파라오의 시가" portuguese: Tintim Reporter - Os Charutos do Farao - russian: 'Репортер тинтин: сигары фараона' + russian: "Репортер тинтин: сигары фараона" schinese: 丁丁历险记:法老的雪茄 (Tintin Reporter - Cigars of the Pharaoh) spanish: Tintin Reporter - Los Cigarros del Faraon swedish: Reportern Tintin – Faraos Cigarrer - tchinese: '丁丁記者 : 法老的雪茄 (Tintin Reporter - Cigars of the Pharaoh)' + tchinese: "丁丁記者 : 法老的雪茄 (Tintin Reporter - Cigars of the Pharaoh)" ukrainian: РЕПОРТЕР ТЕНТЕН – ФАРАОНОВІ СИГАРИ -'212580': +"212580": installDir: The Amazing Spider-Man launch: - - arguments: '' - description: '' + - arguments: "" + description: "" executable: ASMLauncher.exe - workingdir: '' -'212630': - installDir: Tom Clancy's Ghost Recon Future Soldier + workingdir: "" +"212630": + installDir: "Tom Clancy's Ghost Recon Future Soldier" launch: - - arguments: '-uplay_steam_mode' + - arguments: "-uplay_steam_mode" executable: Future Soldier.exe -'2126680': +"2126680": installDir: Lust Academy Season 2 launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Lust Academy 2 - description_loc: - english: Lust Academy 2 executable: Lust-Academy-2.exe - config: - osarch: '32' + osarch: "32" oslist: windows description: Lust Academy 2 - description_loc: - english: Lust Academy 2 executable: Lust-Academy-2-32.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows - ownsdlc: '2361800' + ownsdlc: "2361800" description: Lust Academy 2 Cordale Pack - description_loc: - english: Lust Academy 2 Cordale Pack executable: Cordale-Pack/Lust-Academy-2-Cordale-Pack.exe - config: oslist: macos description: Lust Academy 2 - description_loc: - english: Lust Academy 2 executable: Lust-Academy-2.app type: default - config: oslist: macos - ownsdlc: '2361800' + ownsdlc: "2361800" description: Lust Academy 2 Cordale Pack - description_loc: - english: Lust Academy 2 Cordale Pack executable: Cordale-Pack/Lust-Academy-2-Cordale-Pack.app - config: oslist: linux description: Lust Academy 2 - description_loc: - english: Lust Academy 2 executable: Lust-Academy-2.sh - config: oslist: linux - ownsdlc: '2361800' + ownsdlc: "2361800" description: Lust Academy 2 Cordale Pack - description_loc: - english: Lust Academy 2 Cordale Pack executable: Cordale-Pack/Lust-Academy-2-Cordale-Pack.sh -'212680': +"212680": installDir: FTL Faster Than Light launch: - config: oslist: windows description: Launch FTL executable: FTLGame.exe - workingdir: ./ + workingdir: "./" - config: oslist: macos description: Launch OSX FTL executable: FTL.app - workingdir: ./ + workingdir: "./" - config: oslist: linux description: Launch Linux FTL executable: FTL - workingdir: ./data/ -'2126810': {} -'212700': + workingdir: "./data/" +"2126810": {} +"212700": installDir: Party of Sin launch: - - arguments: '' + - arguments: "" description: Launch normally executable: bin/PartyOfSin.exe workingdir: bin -'2127230': +"2127230": installDir: MOONPONG Tales of Epic Lunacy launch: - config: oslist: windows executable: moonpong.exe type: default -'2127300': +"2127300": installDir: Killfest launch: - config: oslist: windows executable: Killfest.exe -'212780': +"212780": installDir: New Star Soccer 5 launch: - - arguments: '-console' + - arguments: "-console" config: oslist: windows description: Launch with Console executable: NSS5.exe - - arguments: '-console' + - arguments: "-console" config: oslist: macos description: Launch with Console executable: NSS5.app -'212800': +"212800": installDir: supercratebox launch: - config: @@ -111687,67 +108804,67 @@ oslist: linux executable: runner type: default -'2128440': +"2128440": installDir: Enclosure 3-D launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: enclosure3d.exe - config: - osarch: '64' + osarch: "64" oslist: linux executable: enclosure3d - config: oslist: macos executable: Enclosure 3-D.app -'2128670': +"2128670": installDir: Twitch Place launch: - executable: twitch place.exe -'21300': +"21300": installDir: Gravitron2 launch: - executable: Gravitron2.exe -'213030': +"213030": installDir: Precipice Of Darkness 3 launch: - - arguments: '-console' + - arguments: "-console" config: oslist: windows description: Launch with Console executable: Rainslick3.exe - config: oslist: macos - executable: Penny Arcade's On The Rain-Slick Precipice of Darkness 3.app -'2130460': + executable: "Penny Arcade's On The Rain-Slick Precipice of Darkness 3.app" +"2130460": installDir: FATAL FRAME MOL launch: - executable: FATAL_FRAME_MOL.exe nameLocalized: - french: 'PROJECT ZERO : Le Masque de l''Éclipse Lunaire' - german: 'PROJECT ZERO: Die Maske der Mondfinsternis' + french: "PROJECT ZERO : Le Masque de l'Éclipse Lunaire" + german: "PROJECT ZERO: Die Maske der Mondfinsternis" japanese: 零 ~月蝕の仮面~ schinese: 零 ~月蚀的假面~ tchinese: 零 ~月蝕的假面~ -'2131000': +"2131000": installDir: Five Nights With Firearms launch: - config: oslist: windows executable: 1/Five Nights With Firearms.exe type: default -'213120': +"213120": installDir: Transformers Fall of Cybertron launch: - - executable: binaries\\TFOC.exe -'2131630': + - executable: "binaries\\\\TFOC.exe" +"2131630": installDir: MGS1 launch: - executable: METAL GEAR SOLID.exe nameLocalized: japanese: METAL GEAR SOLID (MASTER COLLECTION版) -'2131640': +"2131640": installDir: MGS2 launch: - config: @@ -111756,7 +108873,7 @@ type: default nameLocalized: japanese: METAL GEAR SOLID 2 SONS OF LIBERTY (MASTER COLLECTION版) -'2131650': +"2131650": installDir: MGS3 launch: - config: @@ -111765,41 +108882,41 @@ type: default nameLocalized: japanese: METAL GEAR SOLID 3 SNAKE EATER (MASTER COLLECTION版) -'2131680': +"2131680": nameLocalized: - japanese: 'METAL GEAR SOLID: MASTER COLLECTION Vol.1 METAL GEAR & METAL GEAR 2 SOLID SNAKE' -'2131800': + japanese: "METAL GEAR SOLID: MASTER COLLECTION Vol.1 METAL GEAR & METAL GEAR 2 SOLID SNAKE" +"2131800": installDir: Gimmick! Special Edition launch: - config: oslist: windows - executable: TRICK\\TRICK.EXE + executable: "TRICK\\\\TRICK.EXE" type: default workingdir: TRICK -'2132560': {} -'213330': +"2132560": {} +"213330": installDir: LEGO Batman 2 launch: - - arguments: '' + - arguments: "" description: Play LEGO Batman 2 executable: LEGOBatman2.exe - workingdir: '' -'213350': + workingdir: "" +"213350": installDir: MDK 2 HD launch: - config: oslist: windows description: Launch executable: mdk2hd.exe -'213390': +"213390": installDir: Atooms To Moolecules launch: - - arguments: '' - description: '' + - arguments: "" + description: "" executable: Atooms to Moolecules.exe - workingdir: '' -'2134770': {} -'2134970': + workingdir: "" +"2134770": {} +"2134970": installDir: The Hotel launch: - config: @@ -111808,141 +108925,133 @@ - config: oslist: macos executable: THGOSX.app -'213610': +"213610": installDir: Sonic Adventure 2 launch: - config: oslist: windows description: Config executable: launcher.exe -'213670': +"213670": installDir: South Park - The Stick of Truth launch: - - arguments: '-steam' + - arguments: "-steam" description: Launch Game executable: South Park - The Stick of Truth.exe -'2138010': +"2138010": installDir: A Clockwork Ley-Line Flowers Falling in the Morning Mist launch: - executable: LeyLine 3.exe -'2138090': +"2138090": installDir: Atelier Marie Remake launch: - executable: Atelier_Marie_Remake.exe nameLocalized: - english: 'Atelier Marie Remake: The Alchemist of Salburg' + english: "Atelier Marie Remake: The Alchemist of Salburg" japanese: マリーのアトリエ Remake ~ザールブルグの錬金術士~ koreana: 마리의 아틀리에 Remake ~잘부르그의 연금술사~ schinese: 玛莉的炼金工房 Remake ~萨尔布鲁克的炼金术士~ tchinese: 瑪莉的鍊金工房 Remake ~薩爾布魯克的鍊金術士~ -'2138150': +"2138150": installDir: My Stepsis is a Furry Futa Fox launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: MyStepsisIsAFurryFutaFox.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: MyStepsisIsAFurryFutaFox-32.exe type: default -'213850': +"213850": installDir: Magic 2014 launch: - - executable: ./DotP_D14.exe -'2138710': + - executable: "./DotP_D14.exe" +"2138710": installDir: Sifu launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Sifu.exe type: default -'2139040': {} -'2139230': {} -'2139300': +"2139040": {} +"2139230": {} +"2139300": installDir: Redemption Reapers launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: RedemptionReapers.exe type: default -'21400': +"21400": installDir: Project Aftermath launch: - executable: ProjectAftermath.exe -'2140020': +"2140020": nameLocalized: - koreana: '스트롱홀드: 결정판' - polish: 'Twierdza: Edycja Ostateczna' - schinese: 'Stronghold: Definitive Edition 要塞:决定版' - tchinese: 'Stronghold: Definitive Edition 要塞:決定版' -'2140330': + koreana: "스트롱홀드: 결정판" + polish: "Twierdza: Edycja Ostateczna" + schinese: "Stronghold: Definitive Edition 要塞:决定版" + tchinese: "Stronghold: Definitive Edition 要塞:決定版" +"2140330": installDir: Madden NFL 24 launch: - - executable: 'link2ea://launchgame/2140330?platform=steam&theme=madden24' + - executable: "link2ea://launchgame/2140330?platform=steam&theme=madden24" nameLocalized: schinese: 《Madden NFL 24》 - tchinese: ' 《Madden NFL 24》' -'2140540': {} -'2140650': + tchinese: " 《Madden NFL 24》" +"2140540": {} +"2140650": installDir: Harvest Moon The Winds of Anthos launch: - executable: Harvest Moon The Winds of Anthos.exe -'214100': +"214100": installDir: rigonauts launch: - config: oslist: windows description: Launch executable: rigonauts.exe -'214130': +"214130": installDir: aerofly FS launch: - description: Launch executable: aerofly-fs.exe - - arguments: '-noconfigs' + - arguments: "-noconfigs" description: Launch with default settings executable: aerofly-fs.exe -'214150': +"214150": installDir: Galactic Civilizations I Ultimate Edition launch: - description: GalCiv - Altarian Prophecy (Full Screen) - description_loc: - english: GalCiv - Altarian Prophecy (Full Screen) executable: AltarianProphecy/GalCiv.exe type: default workingdir: AltarianProphecy - description: Galactic Civilizations I (Full Screen) - description_loc: - english: Galactic Civilizations I (Full Screen) executable: GalCiv/galciv.exe type: option1 workingdir: GalCiv - arguments: w description: Altarian Prophecy (Windowed) - description_loc: - english: Altarian Prophecy (Windowed) executable: AltarianProphecy/GalCiv.exe type: option1 workingdir: AltarianProphecy - arguments: w description: GalCiv (Windowed) - description_loc: - english: GalCiv (Windowed) executable: GalCiv/galciv.exe type: option1 workingdir: GalCiv -'2141520': +"2141520": installDir: SurvivorMercs launch: - config: oslist: windows executable: SurvivorMercs.exe -'214170': +"214170": installDir: divine_divinity launch: - config: @@ -111952,7 +109061,7 @@ oslist: windows description: Configure executable: configtool.exe -'214190': +"214190": installDir: Minimum launch: - config: @@ -111961,7 +109070,7 @@ executable: Binaries/Win32/Minimum.exe type: none workingdir: Binaries/Win32/ - - arguments: '-seekfreeloading' + - arguments: "-seekfreeloading" config: betakey: test description: Test Release @@ -111974,70 +109083,64 @@ executable: Binaries/MinimumLauncher.exe type: none workingdir: Binaries -'2141910': +"2141910": installDir: MTGA launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: MTGA.exe type: default -'214210': - installDir: Cabela's Hunting Expedition +"214210": + installDir: "Cabela's Hunting Expedition" launch: - description: Launch executable: bin/CSA2_Main.exe workingdir: bin -'214230': +"214230": installDir: Family Guy Back to the Multiverse launch: - executable: FGUY.exe -'2142330': {} -'214250': +"2142330": {} +"214250": installDir: I am Alive launch: - - arguments: '-console' + - arguments: "-console" description: Launch with Console executable: src/SYSTEM/iamalive_game.exe workingdir: src/SYSTEM/ -'214320': +"214320": installDir: Dollar Dash launch: - - arguments: '-console' + - arguments: "-console" config: oslist: windows description: Launch with Console executable: Binaries/win32/PKGame-Win32-Shipping.exe -'2143340': +"2143340": installDir: Dark Nights launch: - config: oslist: windows description: Play Dark Nights - description_loc: - english: Play Dark Nights - executable: DarkNights-1.0-pc\\DarkNights.exe + executable: "DarkNights-1.0-pc\\\\DarkNights.exe" type: default - config: oslist: macos description: Play Dark Nights - description_loc: - english: Play Dark Nights executable: DarkNights.app type: default - config: oslist: linux description: Play Dark Nights - description_loc: - english: Play Dark Nights - executable: DarkNights-1.0-pc\\DarkNights.sh + executable: "DarkNights-1.0-pc\\\\DarkNights.sh" type: default -'214340': +"214340": installDir: Deponia launch: - config: oslist: windows - description: 'Launch ' + description: "Launch " executable: deponia.exe type: default - config: @@ -112046,7 +109149,7 @@ executable: Deponia.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: start @@ -112065,23 +109168,23 @@ type: config - config: oslist: windows - ownsdlc: '566450' + ownsdlc: "566450" description: Bonus Content executable: open_bonus_win.bat type: none - config: oslist: macos - ownsdlc: '566450' + ownsdlc: "566450" description: Bonus Content executable: open_bonus_osx.sh type: none - config: oslist: linux - ownsdlc: '566450' + ownsdlc: "566450" description: Bonus Content executable: open_bonus_lin.sh type: none -'214360': +"214360": installDir: Tower Wars launch: - config: @@ -112092,25 +109195,25 @@ oslist: macos description: Mac Client Launch executable: Tower Wars.app -'214400': +"214400": installDir: american_mensa launch: - config: oslist: windows description: Launch executable: AmericanMensaAcademy.exe -'214420': +"214420": installDir: GearUp launch: - arguments: Application.config config: - osarch: '64' + osarch: "64" oslist: windows description: Launch - executable: bin64\\Traktor.Amalgam.Game.App.exe + executable: "bin64\\\\Traktor.Amalgam.Game.App.exe" type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: bin/Traktor.Amalgam.Game.App @@ -112119,42 +109222,42 @@ oslist: macos description: Launch executable: GearUp.app -'2144350': +"2144350": installDir: Ubaste launch: - executable: Ubaste.exe -'2144740': +"2144740": nameLocalized: koreana: 고스트러너 2 (Ghostrunner 2) schinese: 幽灵行者 2(Ghostrunner 2) tchinese: 《幽影行者 2》 Ghostrunner 2 -'2144830': +"2144830": installDir: Voodolls launch: - executable: Voodolls.exe -'214490': +"214490": installDir: Alien Isolation launch: - config: oslist: windows - description: 'Play Alien: Isolation' + description: "Play Alien: Isolation" executable: AI.exe - config: oslist: macos description: Launch executable: Alien Isolation.app - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: AlienIsolation.sh -'2145090': {} -'214510': +"2145090": {} +"214510": installDir: LEGO Lord of the Rings launch: - description: Launch executable: LEGOlotr.exe -'214550': +"214550": installDir: eets_munchies launch: - config: @@ -112170,7 +109273,7 @@ description: Launch Eets Munchies executable: bin/eets2 workingdir: bin -'214560': +"214560": installDir: mark_of_the_ninja launch: - config: @@ -112186,17 +109289,17 @@ description: Launch executable: bin/ninja-bin32 workingdir: bin -'214570': +"214570": installDir: Ether Vapor Remaster launch: - executable: EtherVaporRemaster.exe type: default -'214590': +"214590": installDir: Fairy Bloom Freesia launch: - executable: FairyBloomFreesia.exe type: default -'214610': +"214610": installDir: Cherry Tree High Comedy Club launch: - executable: CTHCC.exe @@ -112204,7 +109307,7 @@ - description: Westernized Localization executable: Game.exe type: option1 -'2146600': +"2146600": installDir: ICommissionedSomeBees7 launch: - config: @@ -112221,7 +109324,7 @@ schinese: 我委托了一些蜜蜂7 spanish: Mi gran comisión de abejas 7 swedish: Jag anlitade några bin 7 -'214700': +"214700": installDir: thirty_flights_of_loving launch: - config: @@ -112234,14 +109337,14 @@ executable: Thirty Flights of Loving.app - config: oslist: linux - executable: ./tfol -'214730': + executable: "./tfol" +"214730": installDir: Space Rangers HD A War Apart launch: - config: oslist: windows executable: Rangers.exe -'214770': +"214770": installDir: Guacamelee launch: - config: @@ -112254,7 +109357,7 @@ - config: oslist: macos executable: Guacamelee_Steam.app -'214790': +"214790": installDir: basement launch: - config: @@ -112263,24 +109366,24 @@ - config: oslist: macos executable: collectionMac.app -'214830': +"214830": installDir: Half Minute Hero launch: - - arguments: '-console' + - arguments: "-console" config: oslist: windows description: Launch with Console executable: HMH.exe -'214870': +"214870": installDir: Painkiller Hell & Damnation launch: - - arguments: '-seekfreeloadingpcconsole -fullscreen' + - arguments: "-seekfreeloadingpcconsole -fullscreen" config: oslist: windows description: Launch Painkiller Hell & Damnation executable: Binaries/Win32/PKHDGame-Win32-Shipping.exe workingdir: Binaries/Win32 - - arguments: '-seekfreeloadingpcconsole -windowed' + - arguments: "-seekfreeloadingpcconsole -windowed" config: oslist: windows description: Launch Painkiller Hell & Damnation Windowed @@ -112294,14 +109397,14 @@ oslist: linux description: View BETA Release Notes executable: view-release-notes.sh - - arguments: '-seekfreeloadingpcconsole -fullscreen' + - arguments: "-seekfreeloadingpcconsole -fullscreen" config: oslist: macos description: Launch Painkiller Hell & Damnation executable: PKHDGame.app/Contents/MacOS/PKHDGame - description: View Modkit & User generated Content Documentation executable: Docs/PDK_Instructions.pdf -'214910': +"214910": installDir: Air Conflicts - Pacific Carriers launch: - config: @@ -112329,23 +109432,23 @@ oslist: linux description: Configuration executable: run.sh -'214950': +"214950": installDir: Total War Rome II launch: - config: oslist: windows - description: 'Play Total War: ROME II' + description: "Play Total War: ROME II" executable: launcher/launcher.exe type: none - config: oslist: macos - description: 'Play Total War: ROME II' + description: "Play Total War: ROME II" executable: Rome2.app - config: oslist: linux - description: 'Play Total War: ROME II' + description: "Play Total War: ROME II" executable: Rome2 -'214970': +"214970": installDir: Intrusion 2 launch: - config: @@ -112356,74 +109459,69 @@ oslist: linux description: Linux launch executable: intrusion2 -'21500': +"21500": installDir: Pyroblazer launch: - executable: Pyroblazer.exe -'2150660': +"2150660": installDir: TouhouNewWorld launch: - executable: bin/game.exe type: default workingdir: bin - description: Boot Config - description_loc: - english: Boot Config - japanese: 設定変更 - schinese: 配置 - tchinese: 配置 executable: bin/ConfigTool.exe workingdir: bin nameLocalized: japanese: 東方シンセカイ schinese: 东方New World tchinese: 東方New World -'2150700': +"2150700": installDir: Magic Axolotl launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Magic Axolotl.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Magic Axolotl.x86_64 type: default -'215080': +"215080": installDir: Wakfu launch: - - arguments: '-steam:215080' + - arguments: "-steam:215080" config: - osarch: '32' + osarch: "32" oslist: linux executable: Ankama Launcher-Setup-i386.AppImage type: default - - arguments: '-steam:215080' + - arguments: "-steam:215080" config: - osarch: '64' + osarch: "64" oslist: linux executable: Ankama Launcher-Setup-x86_64.AppImage type: default - - arguments: '-steam:215080' + - arguments: "-steam:215080" config: oslist: windows - executable: 'Ankama Launcher [steam].exe' + executable: "Ankama Launcher [steam].exe" type: default - - arguments: '-steam:215080' + - arguments: "-steam:215080" config: oslist: macos - executable: 'Ankama Launcher [steam].app' + executable: "Ankama Launcher [steam].app" type: default -'215120': +"215120": installDir: ROSE Online launch: - config: oslist: windows description: Launch Rose Online executable: WPLauncher.exe -'215160': +"215160": installDir: The Book of Unwritten Tales launch: - config: @@ -112442,115 +109540,115 @@ oslist: linux description: Play The Book of Unwritten Tales executable: bout.sh -'2152070': +"2152070": installDir: My Girlfriend is a Futanari launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: MyGirlfriendIsAFutanari.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: MyGirlfriendIsAFutanari-32.exe type: default -'2152080': +"2152080": installDir: Futanari of the Apocalypse launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: FutanariOfTheApocalypse.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: FutanariOfTheApocalypse-32.exe type: default -'2152090': +"2152090": installDir: My Futanari Stepmom Impregnated Me launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: MyFutanariStepmomImpregnatedMe.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: MyFutanariStepmomImpregnatedMe-32.exe type: default -'2152100': +"2152100": installDir: Big Bad Futanari Wolf launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: BigBadFutanariWolf.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: BigBadFutanariWolf-32.exe type: default -'2152690': +"2152690": installDir: Actua Soccer 2 launch: - executable: game.exe type: none -'2152710': +"2152710": installDir: Actua Ice Hockey launch: - executable: game.exe type: none -'2152720': +"2152720": installDir: Actua Ice Hockey 2 launch: - executable: game.exe type: none -'2152730': +"2152730": installDir: Actua Tennis launch: - executable: game.exe type: none -'215280': +"215280": installDir: Secret World Legends launch: - - arguments: '-normal' + - arguments: "-normal" executable: ClientPatcher.exe type: default -'215390': +"215390": installDir: Damage Inc launch: - description: Play Damage Inc executable: Game.exe -'215450': +"215450": installDir: transcripted launch: - config: oslist: windows description: Basic Win Launch executable: Transcripted.exe - workingdir: . + workingdir: "." - config: oslist: macos description: Basic Mac OSX Launch executable: Transcripted.app - workingdir: . -'215470': + workingdir: "." +"215470": installDir: primal_carnage launch: - description: Launch with Console executable: Binaries/Win32/PrimalCarnageGame.exe -'215510': +"215510": installDir: rocketbirds_hardboiled launch: - config: oslist: windows description: Play Game - executable: ./Game.exe - workingdir: . + executable: "./Game.exe" + workingdir: "." - config: oslist: macos description: Play Game @@ -112559,7 +109657,7 @@ oslist: linux description: Play game executable: rocketbirds.bin.x86 -'215530': +"215530": installDir: The Incredible Adventures of Van Helsing launch: - config: @@ -112570,34 +109668,34 @@ oslist: macos description: Launch The Incredible Adventures of Van Helsing (OSX) executable: TIAOVH.app -'215550': +"215550": installDir: Zombie Playground launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: zombieplayground.exe type: none - config: - osarch: '64' + osarch: "64" oslist: macos description: Launch executable: zombieplayground.app type: none - config: - osarch: '64' + osarch: "64" oslist: windows executable: zombieplayground.exe type: none -'215630': +"215630": installDir: demonicon launch: - config: oslist: windows description: Launch the game executable: demoniconR.exe -'215670': +"215670": installDir: Home launch: - config: @@ -112607,7 +109705,7 @@ oslist: macos description: Launch executable: home-mac-eng.app -'215690': +"215690": installDir: Zeno Clash 2 launch: - config: @@ -112615,34 +109713,34 @@ description: Launch the game executable: Binaries/Win32/ZC2.exe workingdir: Binaries/Win32 -'215710': +"215710": installDir: Fieldrunners 2 launch: - - arguments: '--bpp 32 --noresize --controls stickydrag --fps 60 --mipmaps -.36' + - arguments: "--bpp 32 --noresize --controls stickydrag --fps 60 --mipmaps -.36" config: oslist: windows description: Fieldrunners 2 executable: Fieldrunners2.exe - workingdir: . + workingdir: "." - config: oslist: macos description: Fieldrunners 2 executable: Fieldrunners2.app/Contents/MacOS/Fieldrunners2 - workingdir: . + workingdir: "." - config: oslist: linux description: Fieldrunners 2 executable: fieldrunners2-32 - workingdir: . -'2157560': {} -'215770': + workingdir: "." +"2157560": {} +"215770": installDir: ShadO launch: - config: oslist: windows description: Launch executable: shado.exe -'215790': +"215790": installDir: dream_pinball_3D launch: - config: @@ -112651,46 +109749,46 @@ - config: oslist: macos description: Dream Pinball 3D - executable: Dream Pinball 3D.app\\Contents\\MacOS\\Dream Pinball 3D + executable: "Dream Pinball 3D.app\\\\Contents\\\\MacOS\\\\Dream Pinball 3D" - config: - osarch: '64' + osarch: "64" oslist: linux description: Dream Pinball 3D executable: RunGame type: none -'215830': +"215830": installDir: closers launch: - - arguments: '-STEAM 1' + - arguments: "-STEAM 1" config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: LAUNCHER.exe type: default -'215870': +"215870": installDir: DungeonParty launch: - executable: DungeonParty.exe -'2158860': +"2158860": installDir: JBMod launch: - - arguments: '-steam -game jbmod' + - arguments: "-steam -game jbmod" config: oslist: windows executable: jbmod.exe type: default - - arguments: '-steam -game jbmod' + - arguments: "-steam -game jbmod" config: oslist: linux executable: hl2.sh type: default - - arguments: '-steam -game jbmod' + - arguments: "-steam -game jbmod" config: oslist: macos executable: hl2.sh type: default -'215930': +"215930": installDir: ja2_wildfire launch: - config: @@ -112709,39 +109807,39 @@ type: default - config: oslist: windows - ownsdlc: '545210' + ownsdlc: "545210" description: Jagged Alliance 2 Classic executable: JA2Classic/RunGame.bat type: option3 workingdir: JA2Classic - config: oslist: macos - ownsdlc: '545210' + ownsdlc: "545210" description: Jagged Alliance 2 Classic executable: Jagged Alliance 2 Classic.app type: option3 - config: oslist: linux - ownsdlc: '545210' + ownsdlc: "545210" description: Jagged Alliance 2 Classic executable: JA2Classic/RunGame type: option2 workingdir: JA2Classic -'21600': +"21600": installDir: Age of Booty launch: - executable: Age of Booty.exe -'2160480': {} -'216090': +"2160480": {} +"216090": installDir: Go Home Dinosaurs launch: - description: Play executable: Eastgate.exe -'21610': +"21610": installDir: MotoGP 08 launch: - executable: launcher.exe -'216110': +"216110": installDir: tinytroopers launch: - config: @@ -112752,7 +109850,7 @@ oslist: macos description: Launch executable: tiny_troopers_mac.app -'216130': +"216130": installDir: GeminiWars launch: - config: @@ -112763,150 +109861,108 @@ oslist: macos description: Launch with Console executable: gw.app -'216150': +"216150": installDir: MapleStory launch: - - arguments: 'MapleStory.exe SteamStart {passport} {country_code} {cloud_platform} --nx:title=Maplestory' + - arguments: "MapleStory.exe SteamStart {passport} {country_code} {cloud_platform} --nx:title=Maplestory" config: oslist: windows - executable: nxsteam\\nxsteam.exe - - arguments: 'MapleStory.exe SteamStart {passport} {country_code} {cloud_platform} --nx:title=Maplestory --nx:env=pre' + executable: "nxsteam\\\\nxsteam.exe" + - arguments: "MapleStory.exe SteamStart {passport} {country_code} {cloud_platform} --nx:title=Maplestory --nx:env=pre" config: betakey: staging_test oslist: windows description: stage branch to live - description_loc: - english: stage branch to live - executable: nxsteam\\nxsteam.exe + executable: "nxsteam\\\\nxsteam.exe" type: option1 - - arguments: >- - MapleStory.exe SteamStart {passport} {country_code} {cloud_platform} 54.148.59.7 8484 --nx:title=Maplestory - --nx:env=test + - arguments: "MapleStory.exe SteamStart {passport} {country_code} {cloud_platform} 54.148.59.7 8484 --nx:title=Maplestory --nx:env=test" config: betakey: test oslist: windows description: ms test server 4 live country code param - description_loc: - english: ms test server 4 live country code param - executable: nxsteam\\nxsteam.exe + executable: "nxsteam\\\\nxsteam.exe" type: option1 - - arguments: >- - MapleStory.exe SteamStart {passport} {country_code} {cloud_platform} 52.41.179.92 8484 --nx:title=Maplestory - --nx:env=pre + - arguments: "MapleStory.exe SteamStart {passport} {country_code} {cloud_platform} 52.41.179.92 8484 --nx:title=Maplestory --nx:env=pre" config: betakey: staging_test oslist: windows description: ms staging server - description_loc: - english: ms staging server - executable: nxsteam\\nxsteam.exe + executable: "nxsteam\\\\nxsteam.exe" type: option1 - - arguments: >- - MapleStory.exe SteamStart {passport} {country_code} {cloud_platform} 52.43.197.199 8484 --nx:title=Maplestory - --nx:env=test + - arguments: "MapleStory.exe SteamStart {passport} {country_code} {cloud_platform} 52.43.197.199 8484 --nx:title=Maplestory --nx:env=test" config: betakey: test2 oslist: windows description: ms test server 2 next version - description_loc: - english: ms test server 2 next version - executable: nxsteam\\nxsteam.exe + executable: "nxsteam\\\\nxsteam.exe" type: option1 - - arguments: >- - MapleStory.exe SteamStart {passport} {country_code} {cloud_platform} 54.148.16.230 8484 --nx:title=Maplestory - --nx:env=test + - arguments: "MapleStory.exe SteamStart {passport} {country_code} {cloud_platform} 54.148.16.230 8484 --nx:title=Maplestory --nx:env=test" config: betakey: test3 oslist: windows description: mstest server 3 - description_loc: - english: mstest server 3 - executable: nxsteam\\nxsteam.exe + executable: "nxsteam\\\\nxsteam.exe" type: option1 - - arguments: >- - MapleStory.exe SteamStart {passport} {country_code} {cloud_platform} 34.208.247.177 8484 --nx:title=Maplestory - --nx:env=live + - arguments: "MapleStory.exe SteamStart {passport} {country_code} {cloud_platform} 34.208.247.177 8484 --nx:title=Maplestory --nx:env=live" config: betakey: gfntest oslist: windows description: ms geforce now - description_loc: - english: ms geforce now - executable: nxsteam\\nxsteam.exe + executable: "nxsteam\\\\nxsteam.exe" type: option1 - - arguments: >- - MapleStory.exe SteamStart {passport} {country_code} {cloud_platform} 54.148.59.7 8484 --nx:title=Maplestory - --nx:env=test + - arguments: "MapleStory.exe SteamStart {passport} {country_code} {cloud_platform} 54.148.59.7 8484 --nx:title=Maplestory --nx:env=test" config: betakey: test4 oslist: windows description: mstest server 4 - description_loc: - english: mstest server 4 - executable: nxsteam\\nxsteam.exe + executable: "nxsteam\\\\nxsteam.exe" type: option1 - - arguments: >- - MapleStory.exe SteamStart {passport} {country_code} {cloud_platform} 34.208.247.177 8484 --nx:title=Maplestory - --nx:env=live + - arguments: "MapleStory.exe SteamStart {passport} {country_code} {cloud_platform} 34.208.247.177 8484 --nx:title=Maplestory --nx:env=live" config: betakey: gftest2 oslist: windows description: ms geforce now with parameter - description_loc: - english: ms geforce now with parameter - executable: nxsteam\\nxsteam.exe + executable: "nxsteam\\\\nxsteam.exe" type: option1 - - arguments: >- - MapleStory.exe SteamStart {passport} {cloud_platform} {country_code} 54.148.16.230 8484 --nx:title=Maplestory - --nx:env=test + - arguments: "MapleStory.exe SteamStart {passport} {cloud_platform} {country_code} 54.148.16.230 8484 --nx:title=Maplestory --nx:env=test" config: betakey: test3 oslist: windows description: mstest server 3 cloud country - description_loc: - english: mstest server 3 cloud country - executable: nxsteam\\nxsteam.exe + executable: "nxsteam\\\\nxsteam.exe" type: option1 - - arguments: >- - MapleStory.exe SteamStart {passport} {country_code} {cloud_platform} 34.217.160.238 8484 --nx:title=Maplestory - --nx:env=test + - arguments: "MapleStory.exe SteamStart {passport} {country_code} {cloud_platform} 34.217.160.238 8484 --nx:title=Maplestory --nx:env=test" config: betakey: test1 oslist: windows description: mstest server 1 - description_loc: - english: mstest server 1 - executable: nxsteam\\nxsteam.exe + executable: "nxsteam\\\\nxsteam.exe" type: option1 - - arguments: >- - MapleStory.exe SteamStart {passport} {country_code} {cloud_platform} 52.89.167.110 8484 --nx:title=Maplestory - --nx:env=test + - arguments: "MapleStory.exe SteamStart {passport} {country_code} {cloud_platform} 52.89.167.110 8484 --nx:title=Maplestory --nx:env=test" config: betakey: test6 oslist: windows description: mstest server 6 (EU) - description_loc: - english: mstest server 6 (EU) - executable: nxsteam\\nxsteam.exe + executable: "nxsteam\\\\nxsteam.exe" type: option1 -'2161700': +"2161700": nameLocalized: japanese: ペルソナ3 リロード koreana: 페르소나3 리로드 schinese: 女神异闻录3 Reload tchinese: 女神異聞錄3 Reload -'21620': +"21620": installDir: Neopets Puzzle Adventure launch: - executable: Neopets.exe -'2162020': +"2162020": installDir: Strayed Lights launch: - executable: Strayed Lights.exe nameLocalized: schinese: 末光 tchinese: 末光 -'216210': +"216210": installDir: SecretFiles3 launch: - config: @@ -112917,48 +109973,48 @@ oslist: windows description: Configuration executable: configtool.exe -'2162130': - installDir: Deck 'Em! +"2162130": + installDir: "Deck 'Em!" launch: - config: oslist: windows - executable: Deck 'Em!.exe + executable: "Deck 'Em!.exe" type: default - config: oslist: macos executable: DeckEm.app type: default -'216250': +"216250": installDir: diriptide launch: - config: oslist: windows description: Launch the game. executable: DeadIslandGame_x86_rwdi.exe -'216260': +"216260": installDir: DBC14 launch: - config: oslist: windows description: Launch executable: cricket14.exe -'2162720': +"2162720": installDir: Shepherds Crossing launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SheepVillage.exe type: default nameLocalized: japanese: 箱庭牧場 ひつじ村 -'216290': +"216290": installDir: Gateways launch: - config: oslist: windows executable: Gateways.exe - workingdir: . + workingdir: "." - config: oslist: macos description: Launch @@ -112968,68 +110024,64 @@ oslist: linux description: Launch executable: Gateways -'2163030': +"2163030": installDir: Dreamcutter launch: - description: Play Game - description_loc: - english: Play Game executable: Dreamcutter.exe -'216390': +"216390": installDir: Elemental Fallen Enchantress launch: - description: Launch game executable: FallenEnchantress.exe -'21640': +"21640": installDir: FLOCK launch: - executable: Flock.exe -'2165340': +"2165340": installDir: Quiz.com launch: - config: oslist: macos description: Start the app - description_loc: - english: Start the app executable: Quiz.com.app/Contents/MacOS/Quiz.com - config: oslist: windows executable: Quiz.com.exe type: default -'2165690': +"2165690": installDir: NFL Pro Era launch: - config: oslist: windows executable: NFL PRO ERA.exe type: openxr -'21660': +"21660": installDir: Street Fighter IV launch: - executable: SF4Launcher.exe -'2166060': +"2166060": installDir: Amanda the Adventurer launch: - executable: Amanda The Adventurer.exe -'216670': +"216670": installDir: Great Big War Game launch: - executable: GLWG2.exe -'21670': +"21670": installDir: Bionic Commando launch: - description: Bionic Commando executable: bionic_commando.exe -'21680': +"21680": installDir: Bionic Commando Rearmed launch: - executable: bcr.exe -'2168150': +"2168150": installDir: Teslagrad 1 Remake launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Teslagrad.exe type: default @@ -113041,13 +110093,13 @@ oslist: linux executable: Teslagrad.x86_64 type: default -'216890': +"216890": installDir: Blood Bowl Chaos Edition launch: - - arguments: '-skip_videos' + - arguments: "-skip_videos" executable: BB_Chaos.exe type: none -'21690': +"21690": installDir: Resident Evil 5 launch: - config: @@ -113056,12 +110108,12 @@ nameLocalized: japanese: BIOHAZARD 5 koreana: BIOHAZARD 5 -'216910': +"216910": installDir: Of Orcs And Men launch: - description: Launch executable: OfOrcsAndMen_Steam.exe -'2169220': +"2169220": installDir: GPRO launch: - arguments: steam=1 @@ -113075,15 +110127,15 @@ - arguments: steam=1 config: oslist: macos - executable: GPRO.app\\Contents\\MacOS\\GPRO -'216930': + executable: "GPRO.app\\\\Contents\\\\MacOS\\\\GPRO" +"216930": installDir: Luxor Amun Rising HD launch: - config: oslist: windows executable: luxor_ar_hd_x86.exe -'2169930': {} -'217060': +"2169930": {} +"217060": installDir: total war battles shogun launch: - config: @@ -113094,12 +110146,12 @@ oslist: macos description: Launch Title executable: twbattles.app -'217080': +"217080": installDir: Doctor Who Eternity Clock launch: - description: Launch with Console - executable: Binaries\\Win32\\DWTEC.exe -'217100': + executable: "Binaries\\\\Win32\\\\DWTEC.exe" +"217100": installDir: Dementium 2 launch: - config: @@ -113110,7 +110162,7 @@ oslist: macos description: Launch without Console executable: /DII.app -'217120': +"217120": installDir: Waves 2 launch: - config: @@ -113118,22 +110170,22 @@ description: Launch executable: Waves.exe type: default - - arguments: '-opengl' + - arguments: "-opengl" config: oslist: windows description: Waves² (OpenGL For AMD Cards) executable: Waves.exe type: option1 - - arguments: '-FeatureLevelES31' + - arguments: "-FeatureLevelES31" config: oslist: windows - description: Waves² (Compatibility Mode For Low End PC's) + description: "Waves² (Compatibility Mode For Low End PC's)" executable: Waves.exe type: option2 -'217140': +"217140": installDir: Rise of the Triad launch: - - arguments: '-32bit' + - arguments: "-32bit" config: oslist: windows description: Launch ROTT @@ -113152,22 +110204,22 @@ description: Launch ROTT 64bit executable: Binaries/ROTTLauncher.exe workingdir: Binaries/ -'2171440': +"2171440": installDir: Fear & Hunger 2 Termina launch: - config: oslist: windows executable: Game.exe type: default -'217200': +"217200": installDir: Worms Armageddon launch: - config: oslist: windows description: Launch executable: WA.exe - workingdir: .\\ -'2172600': + workingdir: ".\\\\" +"2172600": installDir: My Universe - My Baby Dragon launch: - config: @@ -113178,14 +110230,14 @@ oslist: macos executable: mybabydragon.app type: default -'217270': +"217270": installDir: Karateka launch: - description: Launch executable: Binaries/karateka.exe workingdir: binaries -'217290': - installDir: Din's Curse +"217290": + installDir: "Din's Curse" launch: - config: oslist: windows @@ -113194,55 +110246,49 @@ - config: oslist: macos description: Launch - executable: Din's Curse.app + executable: "Din's Curse.app" - config: oslist: linux description: Launch executable: DinsCurse -'21730': +"21730": installDir: CSI Hard Evidence launch: - executable: CSI4.exe -'21750': +"21750": installDir: CSI New York launch: - executable: csi.exe -'2175650': +"2175650": installDir: Polda 3 launch: - config: oslist: windows description: Play Polda 3 - description_loc: - czech: Hrát Poldu 3 - english: Play Polda 3 executable: Polda3.exe type: default - config: oslist: macos description: Play Polda 3 - description_loc: - czech: Hrát Poldu 3 - english: Play Polda 3 executable: Polda3.app type: default -'21760': +"21760": installDir: World in Conflict launch: - executable: wic.exe -'2176320': +"2176320": installDir: Magical Drop VI launch: - config: oslist: windows executable: MagicalDropVI.exe -'2176400': +"2176400": installDir: Baby Storm launch: - config: oslist: windows executable: BabyStorm.exe -'217690': +"217690": installDir: Anna launch: - config: @@ -113257,40 +110303,38 @@ oslist: linux description: Normal launch executable: Anna -'2176930': +"2176930": installDir: Trinity Trigger launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TRINITY TRIGGER.exe nameLocalized: japanese: 聖塔神記 トリニティトリガー -'217750': +"217750": installDir: Age of Conan launch: - description: Start Age of Conan executable: ConanPatcher.exe -'2177750': +"2177750": installDir: Half-Life 2 VR launch: - config: - osarch: '32' + osarch: "32" oslist: windows - description: 'Half-Life 2: VR Mod - Episode 1' - description_loc: - english: 'Half-Life 2: VR Mod - Episode 1' + description: "Half-Life 2: VR Mod - Episode 1" executable: ep1vr.exe type: vr -'2177760': +"2177760": installDir: Half-Life 2 VR launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: ep2vr.exe type: vr -'217790': +"217790": installDir: Dogfight 1942 launch: - config: @@ -113300,13 +110344,13 @@ - config: oslist: windows description: Dogfight 1942 options - executable: Launcher\\Dogfight_1942_Launcher.exe - workingdir: Launcher\\ -'21780': + executable: "Launcher\\\\Dogfight_1942_Launcher.exe" + workingdir: "Launcher\\\\" +"21780": installDir: Driver Parallel Lines launch: - executable: DriverParallelLines.exe -'2178170': +"2178170": installDir: Scurvy Dogs launch: - config: @@ -113318,17 +110362,17 @@ executable: Scurvy Dogs.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Scurvy Dogs.x86_64 type: default -'217860': +"217860": installDir: Special Forces Team X launch: - description: Launch executable: Binaries/Win32/SealTeamXGame-Win32-Shipping.exe workingdir: Binaries/ -'217920': +"217920": installDir: AlienRage launch: - config: @@ -113340,36 +110384,36 @@ description: Multiplayer executable: Multiplayer/Binaries/Win32/ARageMP.exe workingdir: Multiplayer/Binaries/Win32 -'2179470': +"2179470": installDir: Rocket Inc launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Rocket Inc.exe type: default - config: oslist: macos executable: Rocket Inc.app -'2179850': +"2179850": installDir: Cobalt Core launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: CobaltCore.exe -'21800': +"21800": installDir: Tom Clancys Endwar launch: - - executable: binaries\\endwar.exe + - executable: "binaries\\\\endwar.exe" workingdir: binaries -'218020': +"218020": installDir: nethergate_resurrection launch: - - arguments: '-console' + - arguments: "-console" description: Launch with Console executable: Nethergate.exe -'218040': +"218040": installDir: Democracy 2 launch: - config: @@ -113378,7 +110422,7 @@ - config: oslist: macos executable: Democracy2.app -'218060': +"218060": installDir: bittriprunner2 launch: - config: @@ -113390,7 +110434,7 @@ - config: oslist: linux executable: runner2 -'218090': +"218090": installDir: Unity of Command launch: - config: @@ -113409,17 +110453,17 @@ oslist: windows description: Scenario Editor executable: uoc-sc.exe - - arguments: '--app scenario' + - arguments: "--app scenario" config: oslist: macos description: Scenario Editor executable: Unity of Command.app/Contents/MacOS/uoc - - arguments: '--app scenario' + - arguments: "--app scenario" config: oslist: linux description: Scenario Editor executable: bin/uoc -'218130': +"218130": installDir: Dungeonland launch: - config: @@ -113430,60 +110474,58 @@ oslist: macos description: Launch executable: dungeonland.app -'2181720': +"2181720": installDir: Scarlet Tower launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: The Scarlet Tower.exe type: default -'218230': +"218230": installDir: PlanetSide 2 launch: - - arguments: >- - Updates:enable=0 Updates:PatchSelf=1 campaignID=1063272 promoID=146 launchPoint=steam - launchArgs=STEAM_ENABLED=1 + - arguments: "Updates:enable=0 Updates:PatchSelf=1 campaignID=1063272 promoID=146 launchPoint=steam launchArgs=STEAM_ENABLED=1" description: Game LaunchPad executable: LaunchPad.exe -'2182910': +"2182910": installDir: Video Game Trivia launch: - config: oslist: windows executable: game.exe type: default -'2182920': +"2182920": installDir: Retro Racers launch: - executable: game.exe type: none -'2182930': +"2182930": installDir: The Music Trivia Challenge launch: - executable: game.exe type: none -'2182940': +"2182940": installDir: UFO No! launch: - config: oslist: windows executable: game.exe type: default -'2182960': +"2182960": installDir: Martian Invaders launch: - config: oslist: windows executable: MartianInvaders.exe type: default -'2182970': +"2182970": installDir: The Sports Trivia Challenge launch: - executable: game.exe type: none -'218310': {} -'218330': +"218310": {} +"218330": installDir: TGT Season 2 launch: - config: @@ -113495,18 +110537,18 @@ oslist: macos executable: TGT.app/Contents/MacOS/TGT type: default -'2183600': +"2183600": installDir: Kingdom Under Fire War of Heroes launch: - config: oslist: windows executable: KingdomUnderFire.exe type: default -'2183650': +"2183650": installDir: MEGA_MAN_X_DiVE_Offline launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Game.exe type: default @@ -113514,13 +110556,13 @@ japanese: ロックマンX DiVE オフライン schinese: ROCKMAN X DiVE Offline tchinese: ROCKMAN X DiVE Offline -'2183800': +"2183800": installDir: Actua Golf launch: - executable: game.exe type: none -'2183900': {} -'218410': +"2183900": {} +"218410": installDir: DefendersQuest launch: - config: @@ -113530,14 +110572,14 @@ type: option1 workingdir: deluxe/ - config: - osarch: '64' + osarch: "64" oslist: macos description: Deluxe version (recommended) executable: deluxe/DefendersQuest.app type: option1 workingdir: deluxe/ - config: - osarch: '64' + osarch: "64" oslist: linux description: Deluxe version (recommended) executable: deluxe/DefendersQuest.sh @@ -113545,7 +110587,7 @@ workingdir: deluxe/ - config: oslist: windows - description: 'Deluxe version (OpenGL - Windows XP, etc)' + description: "Deluxe version (OpenGL - Windows XP, etc)" executable: deluxe_gl/DefendersQuest.exe type: option2 workingdir: deluxe_gl/ @@ -113575,17 +110617,17 @@ workingdir: deluxe/ - config: oslist: windows - description: 'Mod Editor (OpenGL - Windows XP, etc)' + description: "Mod Editor (OpenGL - Windows XP, etc)" executable: deluxe_gl/LevelEditor.exe type: option3 workingdir: deluxe_gl/ - config: - osarch: '64' + osarch: "64" oslist: linux executable: deluxe/LevelEditor.sh type: editor workingdir: deluxe/ -'218510': +"218510": installDir: planets under attack launch: - config: @@ -113594,7 +110636,7 @@ - config: oslist: macos executable: PlanetsUnderAttack.app -'218620': +"218620": installDir: PAYDAY 2 launch: - config: @@ -113605,13 +110647,13 @@ oslist: macos executable: payday2.app - config: - osarch: '64' + osarch: "64" oslist: linux executable: payday2_release type: default - config: oslist: windows - ownsdlc: '826090' + ownsdlc: "826090" description: PAYDAY 2 VR executable: payday2_win32_release_vr.exe type: vr @@ -113620,7 +110662,7 @@ oslist: windows executable: payday2_win32_release_vr.exe type: vr -'2186240': +"2186240": installDir: Saint Kotar The Crawling Man launch: - config: @@ -113633,15 +110675,15 @@ type: default - config: oslist: macos - executable: Contents\\MacOS\\Saint Kotar The Crawling Man + executable: "Contents\\\\MacOS\\\\Saint Kotar The Crawling Man" type: default -'218640': +"218640": installDir: Lucius launch: - config: oslist: windows executable: Lucius.exe -'218660': +"218660": installDir: iBomber Attack launch: - config: @@ -113656,39 +110698,39 @@ oslist: linux description: Launch Game executable: iBomberAttack -'2186680': {} -'218680': +"2186680": {} +"218680": installDir: Scribblenauts launch: - - description: 'Launch Scribblenauts: Unlimited' + - description: "Launch Scribblenauts: Unlimited" executable: Scribble.exe -'218700': +"218700": installDir: Angelica Weaver - Catch Me When You Can CE launch: - config: oslist: windows executable: Angelica Weaver - Catch Me When You Can CE.exe -'2187220': +"2187220": nameLocalized: - english: 'Apollo Justice: Ace Attorney Trilogy' - french: 'Apollo Justice: Ace Attorney Trilogy' - german: 'Apollo Justice: Ace Attorney Trilogy' + english: "Apollo Justice: Ace Attorney Trilogy" + french: "Apollo Justice: Ace Attorney Trilogy" + german: "Apollo Justice: Ace Attorney Trilogy" japanese: 逆転裁判456 王泥喜セレクション koreana: 역전재판456 오도로키 셀렉션 schinese: 逆转裁判456 王泥喜精选集 tchinese: 逆轉裁判456 王泥喜精選集 -'2187290': +"2187290": installDir: Wall World launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: WallWorld.exe type: default nameLocalized: schinese: 墙世界 tchinese: 牆世界 -'218740': +"218740": installDir: Pid launch: - config: @@ -113699,7 +110741,7 @@ oslist: macos description: Launch Game executable: Pid.app -'218820': +"218820": installDir: mercenary_kings launch: - config: @@ -113714,12 +110756,12 @@ - config: oslist: linux description: Launch - executable: ./MercenaryKings -'218860': - installDir: Cabela's Dangerous Hunts + executable: "./MercenaryKings" +"218860": + installDir: "Cabela's Dangerous Hunts" launch: - executable: dh_2013.exe -'218980': +"218980": installDir: Patterns launch: - config: @@ -113731,13 +110773,13 @@ description: Launch Win executable: win/game.exe workingdir: win -'21900': - installDir: Tom Clany's HAWX +"21900": + installDir: "Tom Clany's HAWX" launch: - executable: HAWX.exe - description: Launch DirectX10 version executable: HAWX_dx10.exe -'219070': +"219070": installDir: Miner Wars Arena Special Edition launch: - config: @@ -113748,7 +110790,7 @@ oslist: macos description: Play executable: Arena.app -'219150': +"219150": installDir: hotline_miami launch: - config: @@ -113763,7 +110805,7 @@ oslist: linux description: Launch with Console executable: hotline_launcher -'219190': +"219190": installDir: Ultratron launch: - config: @@ -113778,11 +110820,11 @@ oslist: linux description: Launch the game executable: ultratron.sh -'21920': +"21920": installDir: Wheelman launch: - executable: run_game.bat -'219200': +"219200": installDir: Droid Assault launch: - config: @@ -113797,26 +110839,26 @@ oslist: linux description: Launch the game executable: droidassault.sh -'2193050': +"2193050": installDir: Bleak Sword DX launch: - executable: BleakSwordDX.exe nameLocalized: schinese: 荒绝之剑 DX -'219340': +"219340": installDir: the banner saga factions launch: - - arguments: '--factions' + - arguments: "--factions" config: oslist: macos description: Launch executable: The Banner Saga Factions.app/Contents/MacOS/The Banner Saga Factions - - arguments: '--factions' + - arguments: "--factions" config: oslist: windows description: Launch executable: win32/The Banner Saga Factions.exe -'2193940': +"2193940": installDir: The Hidden and Unknown launch: - config: @@ -113829,34 +110871,34 @@ - config: oslist: linux executable: TheHiddenandUnknown.sh -'2194660': +"2194660": installDir: Criminal Expert launch: - config: oslist: windows executable: CriminalExpert.exe -'2194810': +"2194810": installDir: SEX with HITLER 2 launch: - executable: SexWithHitlerFutanari.exe -'21950': +"21950": installDir: Greys Anatomy launch: - executable: GreysAnatomy.exe -'2195250': +"2195250": installDir: EA Sports FC 24 launch: - - executable: 'link2ea://launchgame/2195250?platform=steam&theme=fc24' -'2195390': + - executable: "link2ea://launchgame/2195250?platform=steam&theme=fc24" +"2195390": installDir: Femdemic launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Femdemic.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: femdemic.x86_64 type: default @@ -113864,82 +110906,82 @@ oslist: macos executable: femdemic_mac.app type: default -'2195530': +"2195530": installDir: Theocracy launch: - config: oslist: windows executable: theocracy.exe -'219600': +"219600": installDir: NBA2K13 launch: - config: oslist: windows executable: nba2k13.exe -'2196170': +"2196170": installDir: Clad in Iron Chincha Islands 1866 launch: - config: oslist: windows executable: Totem3_CladInIron_Chincha_Islands.exe type: default -'219640': +"219640": installDir: chivalrymedievalwarfare launch: - config: - osarch: '64' + osarch: "64" oslist: windows - description: 'Chivalry: Medieval Warfare' - executable: Binaries\\Win64\\CMW.exe + description: "Chivalry: Medieval Warfare" + executable: "Binaries\\\\Win64\\\\CMW.exe" type: option1 - config: oslist: macos - description: 'Chivalry: Medieval Warfare' + description: "Chivalry: Medieval Warfare" executable: Chivalry.app/Contents/MacOS/UDKGame type: option1 workingdir: Chivalry.app/Contents/MacOS - config: oslist: linux - description: 'Chivalry: Medieval Warfare' - executable: Binaries\\Linux\\UDKGame-Linux + description: "Chivalry: Medieval Warfare" + executable: "Binaries\\\\Linux\\\\UDKGame-Linux" type: option1 - workingdir: Binaries\\Linux\\ + workingdir: "Binaries\\\\Linux\\\\" - config: - osarch: '64' + osarch: "64" oslist: windows - ownsdlc: '241280' - description: 'Chivalry: Deadliest Warrior' - executable: CDW\\Binaries\\Win64\\CDW.exe + ownsdlc: "241280" + description: "Chivalry: Deadliest Warrior" + executable: "CDW\\\\Binaries\\\\Win64\\\\CDW.exe" type: option2 - config: oslist: windows - description: 'Chivalry: Medieval Warfare (32-bit)' - executable: Binaries\\Win32\\CMW.exe + description: "Chivalry: Medieval Warfare (32-bit)" + executable: "Binaries\\\\Win32\\\\CMW.exe" type: none - config: oslist: windows - ownsdlc: '241280' - description: 'Chivalry: Deadliest Warrior (32-bit)' - executable: CDW\\Binaries\\Win32\\CDW.exe + ownsdlc: "241280" + description: "Chivalry: Deadliest Warrior (32-bit)" + executable: "CDW\\\\Binaries\\\\Win32\\\\CDW.exe" - config: oslist: windows - description: 'Launcher (SDK, Workshop, Safe Mode)' + description: "Launcher (SDK, Workshop, Safe Mode)" executable: ChivLauncher.exe - config: oslist: macos - ownsdlc: '241280' - description: 'Chivalry: Deadliest Warrior' + ownsdlc: "241280" + description: "Chivalry: Deadliest Warrior" executable: CDW/ChivalryDeadliestWarrior.app/Contents/MacOS/CDWGame type: option2 workingdir: CDW/ChivalryDeadliestWarrior.app/Contents/MacOS - config: oslist: linux - ownsdlc: '241280' - description: 'Chivalry: Deadliest Warrior' - executable: CDW\\Binaries\\Linux\\CDWGame-Linux + ownsdlc: "241280" + description: "Chivalry: Deadliest Warrior" + executable: "CDW\\\\Binaries\\\\Linux\\\\CDWGame-Linux" type: option2 - workingdir: CDW\\Binaries\\Linux\\ -'219680': + workingdir: "CDW\\\\Binaries\\\\Linux\\\\" +"219680": installDir: Proteus launch: - config: @@ -113951,7 +110993,7 @@ description: Launch executable: Proteus.app/Contents/MacOS/Proteus type: none - - arguments: '-window' + - arguments: "-window" config: oslist: windows description: Play (Force Windowed) @@ -113959,47 +111001,45 @@ - config: oslist: linux description: Launch - executable: ./Proteus -'21970': + executable: "./Proteus" +"21970": installDir: R.U.S.E launch: - config: oslist: windows executable: RUSE.exe - vacmodulefilename: resource\\sourceinit.dat - config: oslist: macos executable: RUSE.app/Contents/MacOS/RUSE - vacmodulefilename: resource\\sourceinit_macos.dat -'219700': +"219700": installDir: Dogs of War Online launch: - config: oslist: windows description: Default launch executable: DogsOfWar.exe -'2197240': {} -'219740': +"2197240": {} +"219740": installDir: dont_starve launch: - config: oslist: windows - description: Don't Starve for Windows + description: "Don't Starve for Windows" executable: bin/dontstarve_steam.exe workingdir: bin - config: oslist: macos - description: Don't Starve for OSX + description: "Don't Starve for OSX" executable: dontstarve_steam.app - config: oslist: linux - description: Don't Starve for Linux + description: "Don't Starve for Linux" executable: bin/dontstarve_steam workingdir: bin nameLocalized: schinese: 饥荒 tchinese: 饑荒 -'219760': +"219760": installDir: beyond_divinity launch: - config: @@ -114009,29 +111049,29 @@ oslist: windows description: Configure executable: configtool.exe -'219780': +"219780": installDir: divinity2_dev_cut launch: - config: oslist: windows executable: Autorun.exe -'21980': +"21980": installDir: Call of Juarez - Bound in Blood launch: - executable: CoJBiBGame_x86.exe -'219800': +"219800": installDir: Pro Cycling Manager 2013 launch: - config: oslist: windows executable: PCM.exe - - arguments: '-dbeditor' + - arguments: "-dbeditor" description: Database Editor executable: PCM.exe - description: Stage Editor executable: CTStageEditor.exe -'219830': - installDir: King Arthur's Gold +"219830": + installDir: "King Arthur's Gold" launch: - arguments: steam noautoupdate noconsole config: @@ -114042,14 +111082,14 @@ config: oslist: macos description: Launch in steam mode without kag2d.com update - executable: KAG.app\\Contents\\MacOS\\KAG + executable: "KAG.app\\\\Contents\\\\MacOS\\\\KAG" - arguments: steam noautoupdate config: oslist: linux description: Launch in steam mode without kag2d.com update executable: rungame.sh type: none -'219870': +"219870": installDir: Football Superstars launch: - arguments: FSPatchR.exe @@ -114057,7 +111097,7 @@ oslist: windows description: Patcher Launch executable: PatchBootstrap.exe -'219890': +"219890": installDir: Antichamber launch: - config: @@ -114072,14 +111112,14 @@ - config: oslist: linux description: Launch - executable: Binaries\\Linux\\UDKGame-Linux - workingdir: Binaries\\Linux\\ -'21990': + executable: "Binaries\\\\Linux\\\\UDKGame-Linux" + workingdir: "Binaries\\\\Linux\\\\" +"21990": installDir: Teenage Mutant Ninja Turtles launch: - executable: TMNT.exe -'219910': - installDir: Edna and Harvey Harvey's New Eyes +"219910": + installDir: "Edna and Harvey Harvey's New Eyes" launch: - config: oslist: windows @@ -114087,13 +111127,13 @@ executable: harvey.exe type: default - config: - osarch: '64' + osarch: "64" oslist: macos description: Launch executable: Harvey.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: start @@ -114112,15 +111152,15 @@ type: config - config: betakey: experimental - osarch: '64' + osarch: "64" oslist: windows executable: harvey64.exe type: default -'2199420': {} -'219950': +"2199420": {} +"219950": installDir: NiGHTS Into Dreams launch: - - arguments: '-q' + - arguments: "-q" config: oslist: windows description: Play Game @@ -114129,7 +111169,7 @@ oslist: windows description: Game Configuration executable: Launcher.exe -'219990': +"219990": installDir: Grim Dawn launch: - config: @@ -114138,7 +111178,7 @@ executable: grim dawn.exe type: none - config: - osarch: '64' + osarch: "64" oslist: windows description: Play Grim Dawn (x64) executable: x64/grim dawn.exe @@ -114149,31 +111189,31 @@ description: Play Grim Dawn (x86) - Legacy DX9 Renderer executable: grim dawn.exe type: none -'220': +"220": installDir: Half-Life 2 launch: - - arguments: '-game hl2 -steam' + - arguments: "-game hl2 -steam" config: oslist: windows executable: hl2.exe workingdir: bin - - arguments: '-game hl2 -steam' + - arguments: "-game hl2 -steam" config: oslist: macos executable: hl2.sh - - arguments: '-game hl2 -steam' + - arguments: "-game hl2 -steam" config: oslist: linux executable: hl2.sh -'2200': +"2200": installDir: Quake 3 Arena launch: - executable: quake3.exe -'22000': +"22000": installDir: World of Goo launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: WorldOfGoo.exe type: default @@ -114182,32 +111222,32 @@ executable: World of Goo.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: WorldOfGoo.bin.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: WorldOfGoo.bin.x86_64 type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: Win64/WorldOfGoo.exe type: default - config: betakey: beta - osarch: '64' + osarch: "64" oslist: windows description: 32-bit executable: WorldOfGoo.exe type: option1 -'220050': +"220050": installDir: The Walking Dead - Survival Instinct launch: - executable: WalkingDead.exe -'2200580': +"2200580": installDir: KIKIKAIKAI KuroMantonoNazo launch: - config: @@ -114219,7 +111259,7 @@ koreana: 奇々怪界 黒マントの謎 schinese: 奇々怪界 黒マントの謎 tchinese: 奇々怪界 黒マントの謎 -'220090': +"220090": installDir: The Journey Down launch: - config: @@ -114235,16 +111275,16 @@ description: Run executable: JourneyDown1 type: none -'220160': +"220160": installDir: TrialsPC launch: - - arguments: '-uplay_steam_mode' + - arguments: "-uplay_steam_mode" config: oslist: windows description: Launch with Console executable: datapack/trialsFMX.exe workingdir: datapack/ -'2201940': +"2201940": installDir: Ship Graveyard Simulator 2 launch: - config: @@ -114253,7 +111293,7 @@ type: default nameLocalized: schinese: 船舶墓地模拟器2 -'220200': +"220200": installDir: Kerbal Space Program launch: - config: @@ -114262,7 +111302,7 @@ executable: KSP.app type: none - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch KSP (64-bit) executable: KSP_x64.exe @@ -114271,19 +111311,19 @@ oslist: linux executable: KSP.x86_64 type: none -'220240': +"220240": installDir: Far Cry 3 launch: - - arguments: '-uplay_steam_mode ' + - arguments: "-uplay_steam_mode " config: oslist: windows description: Launch Far Cry 3 executable: bin/FC3UpdaterSteam.exe workingdir: bin -'220260': +"220260": installDir: Farming Simulator 2013 launch: - - arguments: '-name FarmingSimulator2013' + - arguments: "-name FarmingSimulator2013" config: oslist: windows description: Default @@ -114292,25 +111332,25 @@ oslist: macos description: Default executable: Farming Simulator 2013.app -'2203070': {} -'220420': +"2203070": {} +"220420": installDir: Nancy Drew - TheDeadlyDevice launch: - config: oslist: windows description: Launch executable: DeadlyDevice.exe - - arguments: '-psn' + - arguments: "-psn" config: oslist: macos description: Launch on Mac executable: /Nancy Drew - The Deadly Device.app/Contents/MacOS/cider workingdir: Nancy Drew - TheDeadlyDevice/ -'220440': +"220440": installDir: DmC Devil May Cry launch: - executable: Binaries/Win32/DMC-DevilMayCry.exe -'220460': +"220460": installDir: cargo commander launch: - config: @@ -114323,32 +111363,32 @@ executable: CargoCommander.app/Contents/MacOS/CargoCommander workingdir: CargoCommander.app/Contents - config: - osarch: '32' + osarch: "32" oslist: linux description: Linux 32 executable: CargoCommander.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Linux 64 -> 32 executable: CargoCommander.x86 -'2206210': +"2206210": installDir: GYLT launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Gylt.exe type: default -'220660': +"220660": installDir: StarDrive launch: - config: oslist: windows description: Launch executable: StarDrive.exe -'2207310': {} -'220740': +"2207310": {} +"220740": installDir: Chaos on Deponia launch: - config: @@ -114361,19 +111401,19 @@ description: Visionaire Configuration Tool executable: VisionaireConfigurationTool.exe - config: - osarch: '64' + osarch: "64" oslist: macos description: Launch executable: Deponia2.app type: default - workingdir: ./ + workingdir: "./" - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: start type: default -'220780': +"220780": installDir: thomaswasalone launch: - config: @@ -114388,7 +111428,7 @@ oslist: linux description: linux default executable: thomasWasAlone -'220820': +"220820": installDir: Zombie_Driver_HD launch: - arguments: nosetup=1 @@ -114402,7 +111442,7 @@ description: Configure Zombie Driver HD executable: bin/ZombieDriverHD.exe workingdir: bin -'220860': +"220860": installDir: mcpixel launch: - config: @@ -114413,35 +111453,31 @@ oslist: macos description: Play McPixel! executable: McLauncher.app -'2208920': - installDir: Assassin's Creed Valhalla +"2208920": + installDir: "Assassin's Creed Valhalla" launch: - - arguments: '-uplay_steam_mode' + - arguments: "-uplay_steam_mode" config: - osarch: '64' + osarch: "64" oslist: windows - ownsdlc: '2251610' + ownsdlc: "2251610" executable: ACValhalla.exe type: default - - arguments: '-upc_steam_free_package_id 62377 -uplay_steam_mode' + - arguments: "-upc_steam_free_package_id 62377 -uplay_steam_mode" config: - osarch: '64' + osarch: "64" oslist: windows - ownsdlc: '2247900' + ownsdlc: "2247900" description: Free weekend - description_loc: - english: Free weekend executable: ACValhalla.exe - - arguments: '-upc_steam_free_package_id 62547 -uplay_steam_mode' + - arguments: "-upc_steam_free_package_id 62547 -uplay_steam_mode" config: - osarch: '64' + osarch: "64" oslist: windows - ownsdlc: '2253270' + ownsdlc: "2253270" description: Free weekend - description_loc: - english: Free weekend executable: ACValhalla.exe -'220900': +"220900": installDir: jack_lumber launch: - config: @@ -114456,32 +111492,32 @@ oslist: linux description: Play Jack Lumber executable: startgame.sh - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" config: oslist: macos description: Play Jack Lumber (show GFX options) executable: JackLumber.app - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" config: oslist: windows description: Play Jack Lumber (show GFX options) executable: JackLumber.exe - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" config: oslist: linux description: Play Jack Lumber (show GFX options) executable: startgame.sh -'2210': +"2210": installDir: Quake 4 launch: - - arguments: '' + - arguments: "" description: Default executable: Quake4.exe -'22100': +"22100": installDir: Mount and Blade launch: - executable: runme.exe -'221020': +"221020": installDir: towns launch: - config: @@ -114496,7 +111532,7 @@ oslist: linux description: Launch with Console executable: towns.sh -'221040': +"221040": installDir: Resident Evil 6 launch: - description: Default @@ -114504,106 +111540,106 @@ nameLocalized: japanese: BIOHAZARD 6 koreana: BIOHAZARD 6 -'2210800': +"2210800": installDir: Monster Racing League launch: - - arguments: '-steam -multiplay' + - arguments: "-steam -multiplay" config: - osarch: '64' + osarch: "64" oslist: windows executable: Monster Racing League.exe type: default - - arguments: '-steam -multiplay' + - arguments: "-steam -multiplay" config: oslist: macos executable: Monster Racing League.app type: default -'221100': +"221100": installDir: DayZ launch: - - arguments: '-exe DayZ_x64.exe' + - arguments: "-exe DayZ_x64.exe" config: betakey: stableprep - osarch: '64' + osarch: "64" description: Play DayZ x64 executable: DayZ_BE.exe type: default - - arguments: '-exe DayZ_x64.exe -dologs' + - arguments: "-exe DayZ_x64.exe -dologs" config: betakey: internalplaytest - osarch: '64' + osarch: "64" description: Play DayZ (with logs) executable: DayZ_BE.exe type: none - - arguments: '-mission=.\\Missions\\dayzOffline.ChernarusPlus' + - arguments: "-mission=.\\\\Missions\\\\dayzOffline.ChernarusPlus" config: betakey: internalplaytest - osarch: '64' + osarch: "64" description: Play DayZ Offline executable: DayZ_x64.exe type: none - - arguments: '-mod=mod_sg -nosplash' + - arguments: "-mod=mod_sg -nosplash" config: - betakey: 'dayz_bratislava_test2, survivor_gamez_test, survivor_gamez, survivor_gamez_int' - osarch: '64' - ownsdlc: '830660' + betakey: "dayz_bratislava_test2, survivor_gamez_test, survivor_gamez, survivor_gamez_int" + osarch: "64" + ownsdlc: "830660" description: Play Survivor GameZ executable: DayZ_BE.exe type: none - config: - osarch: '64' + osarch: "64" description: Run DayZ Launcher executable: DayZLauncher.exe type: default - - arguments: '-exe DayZ_x64.exe' + - arguments: "-exe DayZ_x64.exe" config: - osarch: '64' + osarch: "64" description: Run DayZ Client executable: DayZ_BE.exe type: none -'2211280': +"2211280": installDir: RollerChampions launch: - - arguments: '-env dev -upc_steam_free_package_id 62323 -uplay_steam_mode ' + - arguments: "-env dev -upc_steam_free_package_id 62323 -uplay_steam_mode " config: betakey: main_dev executable: Roller.exe type: default - - arguments: '-env preprod -upc_steam_free_package_id 62329 -uplay_steam_mode ' + - arguments: "-env preprod -upc_steam_free_package_id 62329 -uplay_steam_mode " config: betakey: live_preprod executable: Roller.exe - - arguments: '-env preprod -upc_steam_free_package_id 62329 -uplay_steam_mode ' + - arguments: "-env preprod -upc_steam_free_package_id 62329 -uplay_steam_mode " config: betakey: main_preprod executable: Roller.exe - - arguments: '-env uat -upc_steam_free_package_id 62323 -uplay_steam_mode ' + - arguments: "-env uat -upc_steam_free_package_id 62323 -uplay_steam_mode " config: betakey: main_uat executable: Roller.exe - - arguments: '-env uat -upc_steam_free_package_id 62323 -uplay_steam_mode ' + - arguments: "-env uat -upc_steam_free_package_id 62323 -uplay_steam_mode " config: betakey: tu_uat executable: Roller.exe - - arguments: '-env preprod -upc_steam_free_package_id 62329 -uplay_steam_mode ' + - arguments: "-env preprod -upc_steam_free_package_id 62329 -uplay_steam_mode " config: betakey: tu_preprod executable: Roller.exe - - arguments: '-env uat -upc_steam_free_package_id 62323 -uplay_steam_mode ' + - arguments: "-env uat -upc_steam_free_package_id 62323 -uplay_steam_mode " config: betakey: live_uat executable: Roller.exe - - arguments: '-env dev -upc_steam_free_package_id 62323 -uplay_steam_mode ' + - arguments: "-env dev -upc_steam_free_package_id 62323 -uplay_steam_mode " config: betakey: live_dev executable: Roller.exe - - arguments: '-env dev -upc_steam_free_package_id 62323 -uplay_steam_mode ' + - arguments: "-env dev -upc_steam_free_package_id 62323 -uplay_steam_mode " config: betakey: tu_dev executable: Roller.exe - - arguments: '-upc_steam_free_package_id 62329 -uplay_steam_mode ' + - arguments: "-upc_steam_free_package_id 62329 -uplay_steam_mode " executable: Roller.exe -'221180': +"221180": installDir: Eufloria HD launch: - config: @@ -114615,31 +111651,31 @@ description: Launch executable: Eufloria HD.app - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: EufloriaHD.bin.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: EufloriaHD.bin.x86_64 -'22120': +"22120": installDir: Penumbra Black Plague launch: - config: oslist: windows - executable: redist\\penumbra.exe + executable: "redist\\\\penumbra.exe" workingdir: redist - config: oslist: macos - description: 'Penumbra: Black Plague' + description: "Penumbra: Black Plague" executable: BlackPlague.app/Contents/MacOS/BlackPlague - config: oslist: linux - description: 'Penumbra: Black Plague' + description: "Penumbra: Black Plague" executable: blackplague -'221260': +"221260": installDir: Little Inferno Beta launch: - config: @@ -114651,49 +111687,49 @@ description: Launch Game executable: Little Inferno.app/Contents/MacOS/Little Inferno - config: - osarch: '32' + osarch: "32" oslist: linux executable: LittleInferno.bin.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: LittleInferno.bin.x86_64 type: default -'22130': +"22130": installDir: Hearts of Iron 2 Complete Pack launch: - executable: hoi2.exe - - description: 'Launch Hearts of Iron 2: Armageddon' + - description: "Launch Hearts of Iron 2: Armageddon" executable: hoi2.bat -'221300': +"221300": installDir: Monopoly launch: - executable: monopolywin.exe -'2213300': +"2213300": installDir: Might & Magic Clash of Heroes - Definitive Edition launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: MMCoH_HD.exe type: default nameLocalized: schinese: 魔法门:英雄交锋决定版 -'221340': +"221340": installDir: Infected_TheTwinVaccineCE launch: - description: Launch executable: InfectedTTVCE.exe - description: Launch executable: InfectedTTV.exe -'221380': +"221380": installDir: Age2HD launch: - config: oslist: windows executable: Launcher.exe -'2213980': +"2213980": installDir: Caverns Of Mars Recharged launch: - config: @@ -114703,78 +111739,72 @@ oslist: macos executable: CavernsOfMarsRecharged.app - config: - osarch: '64' + osarch: "64" oslist: linux executable: MarsRecharged.x86_64 -'2214040': +"2214040": installDir: The Humans Meet the Ancestors launch: - config: oslist: windows executable: Humans.exe type: default -'221430': +"221430": installDir: Pro Evolution Soccer 2013 launch: - config: oslist: windows executable: PES2013.exe -'2215260': +"2215260": installDir: Scott Pilgrim vs The World launch: - - arguments: '-uplay_steam_mode' + - arguments: "-uplay_steam_mode" config: oslist: windows executable: Scott.exe type: default -'221540': +"221540": installDir: DefenseGrid2 launch: - config: oslist: windows - description: 'Launch DG2: Defense Grid 2' + description: "Launch DG2: Defense Grid 2" executable: DefenseGrid2_Release.exe - config: oslist: linux - description: 'Launch DG2: Defense Grid 2' + description: "Launch DG2: Defense Grid 2" executable: run_dg2.sh - config: oslist: macos - description: 'Launch DG2: Defense Grid 2' + description: "Launch DG2: Defense Grid 2" executable: run_dg2.sh -'2215540': +"2215540": installDir: Colossal Cave launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Windows 64bit executable File - description_loc: - english: Windows 64bit executable File executable: Colossal Cave.exe type: default - config: oslist: macos description: Mac 64bit + Silicon App - description_loc: - english: Mac 64bit + Silicon App - executable: Colossal Cave.app\\Contents\\MacOS\\Colossal Cave + executable: "Colossal Cave.app\\\\Contents\\\\MacOS\\\\Colossal Cave" type: default - config: oslist: linux description: Linux-SteamOS - description_loc: - english: Linux-SteamOS executable: Colossal Cave.x86_64 type: default -'221560': +"221560": installDir: Windborne launch: - description: Launch Windborne executable: WindborneLauncher.exe - description: Bypass the Launcher executable: Windborne.exe -'221640': +"221640": installDir: Super Hexagon launch: - config: @@ -114787,11 +111817,11 @@ - config: oslist: linux description: Linux - executable: ./SuperHexagon -'221680': + executable: "./SuperHexagon" +"221680": installDir: Rocksmith2014 launch: - - arguments: '-uplay_steam_mode' + - arguments: "-uplay_steam_mode" config: oslist: windows description: Basic @@ -114800,27 +111830,27 @@ oslist: macos description: Launch Mac executable: Rocksmith2014.app -'2217730': +"2217730": installDir: theBlu_VR launch: - executable: theBlu.exe type: openxr -'22180': +"22180": installDir: Penumbra Overture launch: - config: oslist: windows - executable: redist\\penumbra.exe + executable: "redist\\\\penumbra.exe" workingdir: redist - config: oslist: macos - description: 'Penumbra: Overture' + description: "Penumbra: Overture" executable: Penumbra.app/Contents/MacOS/Penumbra - config: oslist: linux - description: 'Penumbra: Overture' + description: "Penumbra: Overture" executable: penumbra -'221810': +"221810": installDir: TheCave launch: - config: @@ -114833,22 +111863,22 @@ - config: oslist: linux executable: Cave.bin.x86 -'221830': +"221830": installDir: The Critter Chronicles launch: - config: oslist: windows - description: 'Play The Book of Unwritten Tales: The Critter Chronicles' + description: "Play The Book of Unwritten Tales: The Critter Chronicles" executable: CritterChronicles.exe - config: oslist: macos - description: 'Play The Book of Unwritten Tales: The Critter Chronicles' + description: "Play The Book of Unwritten Tales: The Critter Chronicles" executable: Critter Chronicles.app - config: oslist: linux - description: 'Play The Book of Unwritten Tales: The Critter Chronicles' + description: "Play The Book of Unwritten Tales: The Critter Chronicles" executable: boutvc.sh -'2218750': +"2218750": installDir: Halls of Torment launch: - config: @@ -114858,48 +111888,44 @@ oslist: linux executable: HallsOfTorment.x86_64 - config: - osarch: '64' + osarch: "64" oslist: windows description: Force Dedicated GPU - description_loc: - english: Force Dedicated GPU executable: force_gpu.bat - - arguments: '--rendering-driver opengl3' + - arguments: "--rendering-driver opengl3" config: - osarch: '64' + osarch: "64" oslist: windows description: OpenGL (has lower performance) - description_loc: - english: OpenGL (has lower performance) executable: HallsOfTorment.exe -'2218770': +"2218770": installDir: Meat Puppet launch: - config: oslist: windows executable: mt_launcher.exe type: default -'221910': +"221910": installDir: The Stanley Parable launch: - - arguments: '-game thestanleyparable' + - arguments: "-game thestanleyparable" config: oslist: windows executable: stanley.exe - - arguments: '-game thestanleyparable' + - arguments: "-game thestanleyparable" config: oslist: macos executable: stanley - - arguments: '-game thestanleyparable' + - arguments: "-game thestanleyparable" config: oslist: linux executable: stanley -'22200': +"22200": installDir: ZenoClash launch: - description: ZenoClash executable: zenoclash.exe -'222140': +"222140": installDir: puddle launch: - config: @@ -114913,94 +111939,81 @@ oslist: linux description: Script that redefine LD_LIBRARY_PATH executable: Puddle -'2221490': - installDir: Tom Clancy's The Division 2 +"2221490": + installDir: "Tom Clancy's The Division 2" launch: - - arguments: '-uplay_steam_mode' + - arguments: "-uplay_steam_mode" config: - osarch: '64' + osarch: "64" oslist: windows - ownsdlc: '2424600' + ownsdlc: "2424600" description: Default - description_loc: - english: Default executable: TheDivision2.exe type: default - - arguments: ' -public_key_store_address pks-pc.tctd2.ubisoft.com -public_key_store_port 27015 -proxylist pc-charlie.tctd2.ubisoft.com -proxylist_port 51000 -online -sdfonly -login_ubiservices -uplay_launcher -retail_frontend -use_public_key_store -retail_certs -startgame -dnatracking -enable_client_tracking -uplay_steam_mode' + - arguments: " -public_key_store_address pks-pc.tctd2.ubisoft.com -public_key_store_port 27015 -proxylist pc-charlie.tctd2.ubisoft.com -proxylist_port 51000 -online -sdfonly -login_ubiservices -uplay_launcher -retail_frontend -use_public_key_store -retail_certs -startgame -dnatracking -enable_client_tracking -uplay_steam_mode" config: betakey: tu17_rel - osarch: '64' + osarch: "64" oslist: windows description: Release - description_loc: - english: Release executable: Rogue_x64_Release.exe type: default - - arguments: ' -public_key_store_address pks-pc.tctd2.ubisoft.com -public_key_store_port 27015 -proxylist pc-echo.tctd2.ubisoft.com -proxylist_port 51000 -online -sdfonly -login_ubiservices -uplay_launcher -retail_frontend -use_public_key_store -retail_certs -startgame -dnatracking -enable_client_tracking -uplay_steam_mode' + - arguments: " -public_key_store_address pks-pc.tctd2.ubisoft.com -public_key_store_port 27015 -proxylist pc-echo.tctd2.ubisoft.com -proxylist_port 51000 -online -sdfonly -login_ubiservices -uplay_launcher -retail_frontend -use_public_key_store -retail_certs -startgame -dnatracking -enable_client_tracking -uplay_steam_mode" config: betakey: qc-rel - osarch: '64' + osarch: "64" oslist: windows description: Release - description_loc: - english: Release executable: Rogue_x64_Release.exe type: default - - arguments: '-upc_steam_free_package_id 63144 -uplay_steam_mode' + - arguments: "-upc_steam_free_package_id 63144 -uplay_steam_mode" config: - osarch: '64' + osarch: "64" oslist: windows - ownsdlc: '2424601' + ownsdlc: "2424601" description: Free Weekend - description_loc: - english: Free Weekend executable: TheDivision2.exe - - arguments: >- - -public_key_store_address pks-pc.tctd2.ubisoft.com -public_key_store_port 27015 -proxylist 10.35.22.218 - -proxylist_port 51000 -online -sdfonly -login_ubiservices -uplay_launcher -retail_frontend -use_public_key_store - -retail_certs -startgame -dnatracking -enable_client_tracking -uplay_steam_mode + - arguments: "-public_key_store_address pks-pc.tctd2.ubisoft.com -public_key_store_port 27015 -proxylist 10.35.22.218 -proxylist_port 51000 -online -sdfonly -login_ubiservices -uplay_launcher -retail_frontend -use_public_key_store -retail_certs -startgame -dnatracking -enable_client_tracking -uplay_steam_mode" config: betakey: tu19 - osarch: '64' + osarch: "64" oslist: windows description: Release - description_loc: - english: Release executable: Rogue_x64_Release.exe type: default -'222160': +"222160": installDir: Hamlet launch: - config: oslist: windows description: Launch executable: Hamlet.exe -'222180': +"222180": installDir: MushroomMenTruffleTrouble launch: - - arguments: '-seekfreeloadingpcconsole' + - arguments: "-seekfreeloadingpcconsole" description: Launch Game executable: Binaries/Win32/MMTTGame-Win32-Shipping.exe -'2221920': +"2221920": installDir: Immortals Fenyx Rising launch: - - arguments: '-uplay_steam_mode' + - arguments: "-uplay_steam_mode" executable: ImmortalsFenyxRising.exe -'2221940': +"2221940": installDir: The Feast launch: - executable: The Feast.exe nameLocalized: russian: Праздник -'22230': +"22230": installDir: Rock of Ages launch: - - executable: Binaries\\Win32\\RoA.exe -'2223350': + - executable: "Binaries\\\\Win32\\\\RoA.exe" +"2223350": installDir: Zodongga (Build Development) launch: - executable: Zodongga.exe -'2223740': +"2223740": installDir: TheLondonCase launch: - config: @@ -115009,10 +112022,10 @@ type: default nameLocalized: japanese: アガサ・クリスティ:エルキュール・ポアロ - ロンドン事件簿 - koreana: '애거서 크리스티: 에르퀼 푸아로 – 런던 사건' + koreana: "애거서 크리스티: 에르퀼 푸아로 – 런던 사건" schinese: 阿加莎·克里斯蒂- 赫尔克里·波洛:伦敦案件 tchinese: 阿加莎·克莉絲蒂- 赫丘勒·白羅:倫敦案件 -'2223810': +"2223810": installDir: Hedgewars launch: - config: @@ -115023,47 +112036,43 @@ oslist: linux executable: usr/lib/hedgewars/bin/hedgewars type: default -'222420': - installDir: The King of Fighters'98 Ultimate Match +"222420": + installDir: "The King of Fighters'98 Ultimate Match" launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch - description_loc: - english: Launch executable: KingOfFighters98UM.exe - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch (64-bit) - description_loc: - english: Launch (64-bit) executable: KingOfFighters98UM_x64.exe type: default -'222440': +"222440": installDir: The King of Fighters 2002 Unlimited Match launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: KingOfFighters2002UM.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: KingOfFighters2002UM_x64.exe type: default -'2224430': +"2224430": installDir: InstallAFCT launch: - executable: Satay Shop Tycoon.exe type: default nameLocalized: english: Asian Food Cart Tycoon -'2224440': +"2224440": installDir: Warung Nasi Campur launch: - config: @@ -115072,7 +112081,7 @@ type: default nameLocalized: english: Rice Bowl Restaurant -'222480': +"222480": installDir: RESIDENT EVIL REVELATIONS launch: - config: @@ -115082,43 +112091,43 @@ nameLocalized: japanese: BIOHAZARD REVELATIONS koreana: BIOHAZARD REVELATIONS -'2224920': +"2224920": installDir: Evacuation launch: - - arguments: '-steam -nohmd -game \"evacuation\"' + - arguments: "-steam -nohmd -game \\\"evacuation\\\"" config: - osarch: '64' + osarch: "64" oslist: windows executable: hl2.exe -'2225070': +"2225070": installDir: Trackmania launch: - - arguments: '-upc_steam_free_package_id 62710 -uplay_steam_mode' + - arguments: "-upc_steam_free_package_id 62710 -uplay_steam_mode" config: - osarch: '64' + osarch: "64" oslist: windows executable: Trackmania.exe type: default -'222520': +"222520": installDir: regnum launch: - - arguments: '-steam' + - arguments: "-steam" config: oslist: windows description: Champions of Regnum executable: rolaunchersteam.exe - - arguments: '-steam' + - arguments: "-steam" config: oslist: linux description: Champions of Regnum executable: rolauncher_steam - - arguments: '-steam' + - arguments: "-steam" config: oslist: macos description: Champions of Regnum executable: ROLauncherSteam.app workingdir: bin -'2225520': +"2225520": installDir: PANIC IN SWEETS LAND launch: - config: @@ -115128,27 +112137,27 @@ nameLocalized: english: 爆裂!スイーツランド - PANIC IN SWEETS LAND - japanese: 爆裂!スイーツランド - PANIC IN SWEETS LAND - -'222640': +"222640": installDir: Aarklash Legacy launch: - config: oslist: windows executable: Aarklash.exe -'222660': +"222660": installDir: RetroGrade launch: - config: oslist: windows description: Normal launch executable: RetroGrade.exe -'2226940': +"2226940": installDir: Space Haste 2 launch: - config: oslist: windows executable: SpaceHaste.exe type: default -'222730': +"222730": installDir: Reus launch: - config: @@ -115158,75 +112167,75 @@ - config: oslist: linux description: Launch - executable: ./Reus + executable: "./Reus" - config: oslist: macos description: Launch executable: Reus.app -'222750': +"222750": installDir: Wargame Airland Battle launch: - config: oslist: windows - description: 'Wargame: AirLand Battle' + description: "Wargame: AirLand Battle" executable: wargame2.exe - config: oslist: linux - description: 'Wargame: AirLand Battle' + description: "Wargame: AirLand Battle" executable: Wargame - config: oslist: macos description: Launch executable: Wargame -'2228030': +"2228030": installDir: Dr. Fetus Mean Meat Machine launch: - config: oslist: windows - executable: Dr. Fetus' Mean Meat Machine.exe + executable: "Dr. Fetus' Mean Meat Machine.exe" type: default -'222880': +"222880": installDir: insurgency2 launch: - - arguments: '-console -crashinprocess' + - arguments: "-console -crashinprocess" config: oslist: windows description: Launch with Console executable: insurgency_BE.exe type: none workingdir: bin - - arguments: '-console' + - arguments: "-console" config: oslist: macos description: Launch with Console executable: insurgency.sh - - arguments: '-console' + - arguments: "-console" config: oslist: linux description: Launch with Console executable: insurgency.sh type: none -'222900': +"222900": installDir: Dead Island Epidemic launch: - config: oslist: windows description: Standard Launch executable: Dead Island Epidemic - Launcher.exe -'222940': +"222940": installDir: King of Fighters XIII launch: - - arguments: '-console' + - arguments: "-console" config: oslist: windows description: Launch with Console executable: kofxiii.exe -'222980': +"222980": installDir: deadpixels launch: - description: Launch the game launcher. executable: Dead Pixels Launcher.exe -'22300': +"22300": installDir: Fallout 3 launch: - executable: FalloutLauncherSteam.exe @@ -115234,136 +112243,130 @@ - config: betakey: beta description: Test Branch - description_loc: - english: Test Branch executable: FalloutLauncherSteam.exe type: none -'223000': +"223000": installDir: 7 Wonders Ancient Alien Makeover launch: - - arguments: '-run' + - arguments: "-run" config: oslist: windows executable: 7 Wonders - Ancient Alien Makeover.exe -'2230650': {} -'22310': +"2230650": {} +"22310": installDir: Rogue Warrior launch: - executable: RW.exe -'223100': +"223100": installDir: Homefront_The_Revolution launch: - config: oslist: windows - executable: Bin64\\Homefront2_Release.exe + executable: "Bin64\\\\Homefront2_Release.exe" type: default - config: oslist: linux - description: ' - Linux' + description: " - Linux" executable: run_hf2 type: default -'2231080': +"2231080": installDir: Sword of Fargoal launch: - executable: game.exe type: none -'2231380': +"2231380": installDir: Ghost Recon Breakpoint launch: - - arguments: '-uplay_steam_mode' + - arguments: "-uplay_steam_mode" config: - osarch: '64' + osarch: "64" oslist: windows description: Ghost Recon Breakpoint - Vulkan - description_loc: - english: Ghost Recon Breakpoint - Vulkan executable: GRB_vulkan.exe type: option1 - - arguments: '-uplay_steam_mode' + - arguments: "-uplay_steam_mode" config: - osarch: '64' + osarch: "64" oslist: windows description: Ghost Recon Breakpoint - DX11 - description_loc: - english: Ghost Recon Breakpoint - DX11 executable: GRB.exe type: option2 -'2231450': +"2231450": installDir: Pizza Tower launch: - executable: PizzaTower.exe type: default -'22320': +"22320": installDir: Morrowind launch: - executable: Morrowind Launcher.exe -'223220': +"223220": installDir: Giana Sisters Twisted Dreams launch: - description: Start with Launcher - executable: launcher\\GSLauncher.exe - workingdir: Launcher\\ + executable: "launcher\\\\GSLauncher.exe" + workingdir: "Launcher\\\\" - config: betakey: kubi oslist: windows executable: GSGameExe.exe type: default -'223280': +"223280": installDir: CutTheRope launch: - config: oslist: windows executable: CutTheRopeApp.exe -'2232840': +"2232840": installDir: Garten Of Banban launch: - config: oslist: windows executable: Garten_of_Banban.exe -'22330': +"22330": installDir: Oblivion launch: - executable: OblivionLauncher.exe -'223330': +"223330": installDir: Sea Dogs To Each His Own launch: - executable: ENGINE.exe type: default -'223390': +"223390": installDir: Forge launch: - arguments: ForgeMenu TERMINALIP=account.playforgewar.com config: oslist: windows description: Launch - executable: Binaries\\Win32\\ForgeGame.exe -'22340': + executable: "Binaries\\\\Win32\\\\ForgeGame.exe" +"22340": installDir: Call of Cthulhu launch: - - executable: Engine\\CoCDCoTELauncher.exe + - executable: "Engine\\\\CoCDCoTELauncher.exe" workingdir: Engine -'223410': +"223410": installDir: Perpetuum launch: - description: Launch executable: Perpetuum.exe - - arguments: '-safe' + - arguments: "-safe" description: Launch in safe mode executable: Perpetuum.exe type: none -'223430': +"223430": installDir: MinerWars launch: - - arguments: '-FromLauncher' + - arguments: "-FromLauncher" description: Launch executable: MinerWars.exe - workingdir: . -'223450': + workingdir: "." +"223450": installDir: Dyad launch: - description: Launch Dyad executable: Dyad.exe -'223470': +"223470": installDir: POSTAL2Complete launch: - config: @@ -115371,17 +112374,17 @@ description: POSTAL 2 executable: Postal 2.app type: none - - arguments: '-USERINI=Postal2MPUser.ini' + - arguments: "-USERINI=Postal2MPUser.ini" config: oslist: macos description: Multiplayer (Unsupported) executable: ShareThePain/Share The Pain.app type: none - - arguments: '-SAVEDGAMEINI=PLSavedGameInfo.ini -USERINI=PLUser.ini' + - arguments: "-SAVEDGAMEINI=PLSavedGameInfo.ini -USERINI=PLUser.ini" config: oslist: macos - ownsdlc: '360960' - description: 'POSTAL 2: Paradise Lost' + ownsdlc: "360960" + description: "POSTAL 2: Paradise Lost" executable: Paradise Lost/Paradise Lost.app type: none - config: @@ -115390,86 +112393,85 @@ executable: System/postal2-bin type: none workingdir: System - - arguments: '-SAVEDGAMEINI=PLSavedGameInfo.ini -USERINI=PLUser.ini' + - arguments: "-SAVEDGAMEINI=PLSavedGameInfo.ini -USERINI=PLUser.ini" config: oslist: linux - ownsdlc: '360960' - description: 'POSTAL 2: Paradise Lost' + ownsdlc: "360960" + description: "POSTAL 2: Paradise Lost" executable: Paradise Lost/System/paradiselost-bin type: none workingdir: Paradise Lost/System - config: oslist: windows description: POSTAL 2 - executable: System\\Postal2.exe + executable: "System\\\\Postal2.exe" workingdir: System - config: oslist: windows description: Multiplayer (Unsupported) - executable: ShareThePain\\System\\Postal2MP.exe + executable: "ShareThePain\\\\System\\\\Postal2MP.exe" type: none - workingdir: ShareThePain\\System\\ + workingdir: "ShareThePain\\\\System\\\\" - config: oslist: windows - ownsdlc: '360960' - description: 'POSTAL 2: Paradise Lost' - executable: Paradise Lost\\System\\ParadiseLost.exe - workingdir: Paradise Lost\\System\\ -'223490': + ownsdlc: "360960" + description: "POSTAL 2: Paradise Lost" + executable: "Paradise Lost\\\\System\\\\ParadiseLost.exe" + workingdir: "Paradise Lost\\\\System\\\\" +"223490": installDir: Blockscape launch: - description: Blockscape Launcher executable: Blockscape.exe -'22350': +"22350": installDir: BRINK launch: - executable: brink.exe - vacmodulefilename: resource\\sourceinit.dat -'223510': +"223510": installDir: Miasmata launch: - config: oslist: windows executable: miasmata.exe -'2235340': +"2235340": installDir: Urban Flow launch: - executable: Urban Flow.exe -'2235430': {} -'2235800': +"2235430": {} +"2235800": installDir: Futapunk 2069 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Futapunk2069.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: Futapunk2069-32.exe type: default -'223630': +"223630": installDir: AirBuccaneers launch: - - arguments: '-steam' + - arguments: "-steam" config: oslist: windows description: Launch normally executable: abu.exe - - arguments: '-steam' + - arguments: "-steam" config: oslist: macos executable: ABU.app/Contents/MacOS/AirBuccaneers -'223650': +"223650": installDir: FEAR Online launch: - - arguments: '-steam' + - arguments: "-steam" config: oslist: windows description: Launch executable: Launcher.exe -'223670': +"223670": installDir: f12013 launch: - config: @@ -115480,12 +112482,12 @@ oslist: macos description: Launch OS X executable: F1 2013.app -'223710': +"223710": installDir: Cry of Fear launch: - description: Launch with Console executable: CoFLaunchApp.exe -'2237190': +"2237190": installDir: Hellfire launch: - config: @@ -115499,11 +112501,9 @@ - config: oslist: macos description: New MacOS .app executable - description_loc: - english: New MacOS .app executable executable: Hellfire.app type: default -'2237200': +"2237200": installDir: Fire Shark launch: - config: @@ -115517,7 +112517,7 @@ - config: oslist: macos executable: FireShark.app -'223730': +"223730": installDir: FLYN launch: - config: @@ -115525,41 +112525,41 @@ description: Launch Flyn executable: Source/Flyn.exe workingdir: Source -'223750': +"223750": installDir: DCSWorld launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Default Launch - executable: bin\\DCS.exe + executable: "bin\\\\DCS.exe" type: default - - arguments: '--force_enable_VR --force_steam_VR' + - arguments: "--force_enable_VR --force_steam_VR" config: - osarch: '64' + osarch: "64" oslist: windows description: SteamVR - executable: bin\\DCS.exe + executable: "bin\\\\DCS.exe" type: vr - - arguments: '--force_enable_VR' + - arguments: "--force_enable_VR" config: - osarch: '64' + osarch: "64" oslist: windows description: OculusVR - executable: bin\\DCS.exe + executable: "bin\\\\DCS.exe" type: othervr -'22380': +"22380": installDir: Fallout New Vegas launch: - executable: FalloutNVLauncher.exe -'223810': +"223810": installDir: Ys I launch: - executable: ys1plus.exe type: default - executable: config.exe type: config -'223830': +"223830": installDir: Xenonauts launch: - config: @@ -115576,22 +112576,22 @@ description: Launch Game executable: Xenonauts.bin.x86 type: default - - arguments: '-nolauncher' + - arguments: "-nolauncher" config: oslist: macos description: Skip Launcher executable: Xenonauts.app type: none - - arguments: '-nolauncher' + - arguments: "-nolauncher" config: oslist: linux description: Skip Launcher executable: Xenonauts.bin.x86 type: none -'2238900': +"2238900": nameLocalized: english: STAR OCEAN THE SECOND STORY R -'2239150': +"2239150": installDir: Thronefall launch: - config: @@ -115602,41 +112602,41 @@ oslist: macos executable: Thronefall.app type: default -'2239550': +"2239550": installDir: WatchDogs_Legion launch: - - arguments: '-uplay_steam_mode -sound2d' - executable: bin\\WatchDogsLegion.exe -'224000': + - arguments: "-uplay_steam_mode -sound2d" + executable: "bin\\\\WatchDogsLegion.exe" +"224000": installDir: Eagle launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Eagle.exe type: default -'224040': +"224040": installDir: Lococycle launch: - config: oslist: windows description: Launch executable: Launcher.exe -'224060': +"224060": installDir: Deadpool launch: - - executable: Binaries\\DP.exe -'2241510': {} -'224220': + - executable: "Binaries\\\\DP.exe" +"2241510": {} +"224220": installDir: pressure launch: - description: Launch game executable: bin/pressure.exe workingdir: bin -'224260': +"224260": installDir: nmrih launch: - - arguments: '-steam -game nmrih' + - arguments: "-steam -game nmrih" config: oslist: windows description: Play No More Room in Hell @@ -115645,60 +112645,49 @@ - config: oslist: windows description: Hammer Editor - description_loc: - english: Hammer Editor - executable: bin\\hammer.bat + executable: "bin\\\\hammer.bat" type: editor workingdir: bin - - arguments: '-steam -game nmrih' + - arguments: "-steam -game nmrih" config: oslist: linux description: Play No More Room in Hell executable: hl2.sh type: default -'224300': +"224300": installDir: legacy_kain_defiance launch: - description: Play Game executable: defiance.exe -'224340': +"224340": installDir: Fast and Furious Showdown launch: - executable: Fast and Furious Showdown.exe -'224360': +"224360": installDir: Ice Age 4 launch: - executable: IceAge4.exe -'2243710': +"2243710": installDir: Rune Factory 3 Special launch: - executable: Rune Factory 3 Special.exe type: default - description: Launch Configuration Tool - description_loc: - english: Launch Configuration Tool - french: Lancer l’outil de configuration - german: Konfigurationstool - japanese: 設定ツールを起動 - koreana: 설정 도구 시작 - schinese: 启动配置工具 - spanish: Iniciar herramienta de configuración - tchinese: 啟動設定工具 - executable: Launcher\\RF3S_Launcher.exe + executable: "Launcher\\\\RF3S_Launcher.exe" nameLocalized: japanese: ルーンファクトリー3スペシャル koreana: 룬 팩토리 3 스페셜 schinese: 符文工厂3豪华版 tchinese: 符文工廠3豪華版 -'2243900': +"2243900": installDir: Unexpected Futa Corruption launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Unexpected Futa Corruption.exe type: default -'224420': +"224420": installDir: Afterfall InSanity launch: - config: @@ -115706,23 +112695,22 @@ description: Launch GAME executable: Binaries/Win32/InSanity-Win32-Shipping.exe workingdir: Binaries/Win32 - - arguments: '-dlc' + - arguments: "-dlc" config: oslist: windows description: Launch DLC executable: Binaries/Win32/InSanity-Win32-Shipping.exe workingdir: Binaries/Win32 - - arguments: '-safemode' + - arguments: "-safemode" config: oslist: windows description: Launch in SAFE MODE - executable: >- - Binaries/Win32/InSanity-Win32-Shipping.exeBinaries/Win32/InSanity-Win32-Shipping.exeBinaries/Win32/InSanity-Win32-Shipping.exe + executable: Binaries/Win32/InSanity-Win32-Shipping.exeBinaries/Win32/InSanity-Win32-Shipping.exeBinaries/Win32/InSanity-Win32-Shipping.exe workingdir: Binaries/Win32 -'224440': +"224440": installDir: Folk Tale launch: - - arguments: '-force-d3d11' + - arguments: "-force-d3d11" config: oslist: windows description: Play Folk Tale @@ -115732,18 +112720,18 @@ oslist: macos description: Launch executable: Folk Tale.app - - arguments: '-force-d3d9' + - arguments: "-force-d3d9" config: oslist: windows description: Folk Tale (Older DirectX 9c) executable: Folk Tale.exe type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Folk Tale.x84_64 -'224460': +"224460": installDir: Contrast launch: - config: @@ -115751,16 +112739,16 @@ description: Launch Win executable: Binaries/Win32/ContrastGame.exe workingdir: Binaries/Win32 - - arguments: '-SKIPGPUCHECK -windowed -w 1280 -h 720' + - arguments: "-SKIPGPUCHECK -windowed -w 1280 -h 720" config: oslist: windows description: Launch in Safe Mode executable: Binaries/Win32/ContrastGame.exe workingdir: Binaries/Win32 -'2244780': +"2244780": nameLocalized: schinese: 深渊国度:天启 -'224480': +"224480": installDir: Octodad Dadliest Catch launch: - config: @@ -115775,14 +112763,14 @@ oslist: linux description: Launch executable: OctodadDadliestCatch -'22450': +"22450": installDir: Hunted launch: - - executable: BINARIES\\WIN32\\hunted.exe -'224500': + - executable: "BINARIES\\\\WIN32\\\\hunted.exe" +"224500": installDir: Gnomoria launch: - - arguments: '-console' + - arguments: "-console" config: oslist: windows description: Launch with Console @@ -115790,13 +112778,13 @@ - config: oslist: linux description: Launch - executable: ./Gnomoria + executable: "./Gnomoria" - config: oslist: macos description: Launch executable: Gnomoria.app/Contents/MacOS/Gnomoria type: none -'224540': +"224540": installDir: aceofspades launch: - config: @@ -115807,63 +112795,63 @@ oslist: macos description: Ace of Spades executable: aos -'224580': +"224580": installDir: Arma 2 Operation Arrowhead launch: - arguments: 0 0 -beta=@dayz -noLogs description: Launch OA executable: ArmA2OA_BE.exe type: none - workingdir: ./ -'2245840': + workingdir: "./" +"2245840": installDir: ZAVOD launch: - config: oslist: windows executable: zavod_game.exe type: default -'224600': +"224600": installDir: Defiance launch: - arguments: /steam executable: Patcher.exe - - arguments: '-steam' + - arguments: "-steam" config: betakey: internal description: GlyphInternal executable: GlyphClientInternal.exe type: option1 -'2246110': +"2246110": installDir: Q Remastered launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Q.exe -'224700': +"224700": installDir: The Game of Life launch: - executable: The Game of Life.exe -'224740': +"224740": installDir: Clockwork Empires launch: - config: oslist: windows description: Launch executable: Clockwork Empires.exe - workingdir: . + workingdir: "." - config: oslist: macos description: Launch executable: Clockwork Empires.app -'224760': +"224760": installDir: FEZ launch: - config: oslist: windows description: Launch FEZ executable: FEZ.exe - workingdir: . + workingdir: "." - config: oslist: macos description: Launch @@ -115872,20 +112860,20 @@ - config: oslist: linux description: Launch - executable: ./FEZ -'2247640': + executable: "./FEZ" +"2247640": installDir: bonedust launch: - config: oslist: windows executable: Bone Dust.exe -'224820': +"224820": installDir: super house of dead ninjas launch: - config: oslist: windows executable: SHODN.exe -'224860': +"224860": installDir: ArmaTactics launch: - config: @@ -115900,12 +112888,12 @@ oslist: macos description: Launch executable: ArmaTactics.app - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" config: oslist: windows description: Configure game options executable: ArmaTactics.exe -'224900': +"224900": installDir: Iron Sky Invasion launch: - config: @@ -115924,31 +112912,31 @@ description: Iron Sky Invasion executable: RunGame type: default -'2249160': +"2249160": installDir: September 7th launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: September_7th.exe type: default -'224920': +"224920": installDir: Legacy of Kain Soul Reaver launch: - description: Plau executable: kain2.exe -'224940': +"224940": installDir: Legacy of Kain Soul Reaver 2 launch: - description: Play executable: sr2.exe -'224960': +"224960": installDir: Tomb Raider (I) launch: - - arguments: '-conf dosboxtr.conf' + - arguments: "-conf dosboxtr.conf" description: Tomb Raider I executable: DOSBox.exe - - arguments: '-conf dosboxtrWindowed.conf' + - arguments: "-conf dosboxtrWindowed.conf" description: Tomb Raider 1 (Windowed) executable: DOSBox.exe type: none @@ -115962,21 +112950,21 @@ description: Launch Tomb Raider - UB executable: tombub.exe type: none -'224980': +"224980": installDir: Tomb Raider (IV) The Last Revelation launch: - description: Tomb Raider IV executable: Tomb4.exe type: default - - arguments: '-setup' + - arguments: "-setup" description: Run Setup executable: Tomb4.exe type: config -'22500': +"22500": installDir: Spectromancer launch: - executable: Spectromancer.exe -'225000': +"225000": installDir: Tomb Raider (V) Chronicles launch: - description: Play @@ -115984,7 +112972,7 @@ - arguments: Setup description: Launch Setup program executable: PCTomb5.exe -'2250060': +"2250060": installDir: ICommissionedSomeBees0 launch: - config: @@ -116002,23 +112990,23 @@ german: Ich beauftragte ein paar Bienen 0 japanese: 私はいくつかのミツバチを委託しました 0 koreana: 나는 벌을 의뢰했다 0 - polish: ' Zbierz rój pszczół 0' + polish: " Zbierz rój pszczół 0" russian: Я припрятал юрких пчел 0 schinese: 我委托了一些蜜蜂0 spanish: Mi gran comisión de abejas 0 swedish: Jag anlitade några bin 0 -'225020': +"225020": installDir: Tomb Raider (VI) The Angel of Darkness launch: - description: Play executable: Launcher.exe -'2250600': +"2250600": nameLocalized: japanese: 魔界戦記ディスガイア7 koreana: 마계전기 디스가이아7 schinese: 魔界战记DISGAEA 7 tchinese: 魔界戰記DISGAEA 7 -'225080': +"225080": installDir: Brothers - A Tale of Two Sons launch: - config: @@ -116031,64 +113019,64 @@ description: Brothers Launcher executable: Binaries/Win32/BrothersLauncher.exe workingdir: Binaries/Win32 -'225140': +"225140": installDir: Duke Nukem 3D launch: - config: oslist: windows description: Play Duke Nukem 3D (OpenGL) - executable: bin\\duke3d.exe + executable: "bin\\\\duke3d.exe" workingdir: gameroot - config: oslist: macos - description: 'Play Duke Nukem 3D (OpenGL) ' + description: "Play Duke Nukem 3D (OpenGL) " executable: bin/duke3d.sh workingdir: gameroot - - arguments: '-conf dosbox.conf -conf dosbox_setup.conf -noconsole -c exit' + - arguments: "-conf dosbox.conf -conf dosbox_setup.conf -noconsole -c exit" config: oslist: windows description: Play Duke Nukem 3D (Classic) executable: bin/dosbox/dosbox.exe - workingdir: gameroot\\classic + workingdir: "gameroot\\\\classic" - config: oslist: macos description: Play Duke Nukem 3D (Classic) executable: bin/duke3d_dosbox.sh workingdir: gameroot/classic - - arguments: '-addon 1' + - arguments: "-addon 1" config: oslist: windows description: Play Duke It Out In D.C - executable: bin\\duke3d.exe + executable: "bin\\\\duke3d.exe" workingdir: gameroot - - arguments: '-addon 2' + - arguments: "-addon 2" config: oslist: windows - description: 'Play Duke: Nuclear Winter' - executable: bin\\duke3d.exe + description: "Play Duke: Nuclear Winter" + executable: "bin\\\\duke3d.exe" workingdir: gameroot - - arguments: '-addon 3' + - arguments: "-addon 3" config: oslist: windows - description: 'Play Duke Caribbean: Life''s A Beach' - executable: bin\\duke3d.exe + description: "Play Duke Caribbean: Life's A Beach" + executable: "bin\\\\duke3d.exe" workingdir: gameroot - - arguments: '-addon 1' + - arguments: "-addon 1" config: oslist: macos description: Play Duke It Out In D.C executable: bin/duke3d.sh workingdir: gameroot - - arguments: '-addon 2' + - arguments: "-addon 2" config: oslist: macos - description: 'Play Duke: Nuclear Winter' + description: "Play Duke: Nuclear Winter" executable: bin/duke3d.sh workingdir: gameroot - - arguments: '-addon 3' + - arguments: "-addon 3" config: oslist: macos - description: 'Play Duke Caribbean: Life''s A Beach' + description: "Play Duke Caribbean: Life's A Beach" executable: bin/duke3d.sh workingdir: gameroot - config: @@ -116100,28 +113088,28 @@ description: Play Duke Nukem 3D (Classic) executable: bin/duke3d_dosbox.sh workingdir: gameroot/classic - - arguments: '-addon 1' + - arguments: "-addon 1" config: oslist: linux description: Play Duke It Out In D.C executable: bin/duke3d.sh workingdir: gameroot - - arguments: '-addon 2' + - arguments: "-addon 2" config: oslist: linux - description: 'Play Duke: Nuclear Winter' + description: "Play Duke: Nuclear Winter" executable: bin/duke3d.sh workingdir: gameroot - - arguments: '-addon 3' + - arguments: "-addon 3" config: oslist: linux - description: 'Play Duke Caribbean: Life''s A Beach' + description: "Play Duke Caribbean: Life's A Beach" executable: bin/duke3d.sh workingdir: gameroot - config: oslist: windows description: Launch Level Editor - executable: bin\\build.exe + executable: "bin\\\\build.exe" workingdir: gameroot - config: oslist: linux @@ -116133,7 +113121,7 @@ description: Launch Level Editor executable: bin/build_mac.sh workingdir: gameroot -'225160': +"225160": installDir: Shadow Warrior Classic launch: - config: @@ -116146,37 +113134,37 @@ description: Play Shadow Warrior Classic Redux executable: bin/sw.sh workingdir: gameroot - - arguments: '-addon1' + - arguments: "-addon1" config: oslist: windows - description: 'Play Shadow Warrior: Wanton Destruction ' + description: "Play Shadow Warrior: Wanton Destruction " executable: bin/sw.exe workingdir: gameroot - - arguments: '-addon1' + - arguments: "-addon1" config: oslist: macos - description: 'Play Shadow Warrior: Wanton Destruction' + description: "Play Shadow Warrior: Wanton Destruction" executable: bin/sw.sh workingdir: gameroot - - arguments: '-addon2' + - arguments: "-addon2" config: oslist: windows - description: 'Play Shadow Warrior: Twin Dragon ' + description: "Play Shadow Warrior: Twin Dragon " executable: bin/sw.exe workingdir: gameroot - - arguments: '-addon2' + - arguments: "-addon2" config: oslist: macos - description: 'Play Shadow Warrior: Twin Dragon' + description: "Play Shadow Warrior: Twin Dragon" executable: bin/sw.sh workingdir: gameroot - - arguments: '-conf dosbox_swarrior.conf -conf dosbox_swarrior_single.conf -noconsole -c exit' + - arguments: "-conf dosbox_swarrior.conf -conf dosbox_swarrior_single.conf -noconsole -c exit" config: oslist: windows description: Play Shadow Warrior Classic (1997) executable: bin/dosbox/dosbox.exe workingdir: gameroot/classic - - arguments: '-conf dosbox_swarrior.conf -conf dosbox_swarrior_single.conf -noconsole -c exit' + - arguments: "-conf dosbox_swarrior.conf -conf dosbox_swarrior_single.conf -noconsole -c exit" config: oslist: macos description: Play Shadow Warrior Classic (1997) @@ -116187,19 +113175,19 @@ description: Launch executable: bin/sw.sh workingdir: gameroot - - arguments: '-addon1' + - arguments: "-addon1" config: oslist: linux - description: 'Play Shadow Warrior: Wanton Destruction' + description: "Play Shadow Warrior: Wanton Destruction" executable: bin/sw.sh workingdir: gameroot - - arguments: '-addon2' + - arguments: "-addon2" config: oslist: linux - description: 'Play Shadow Warrior: Twin Dragon ' + description: "Play Shadow Warrior: Twin Dragon " executable: bin/sw.sh workingdir: gameroot - - arguments: '-conf dosbox_swarrior.conf -conf dosbox_swarrior_single.conf -noconsole -c exit' + - arguments: "-conf dosbox_swarrior.conf -conf dosbox_swarrior_single.conf -noconsole -c exit" config: oslist: linux description: Play Shadow Warrior Classic (1997) @@ -116208,7 +113196,7 @@ - config: oslist: windows description: Launch Level Editor - executable: bin\\build.exe + executable: "bin\\\\build.exe" workingdir: gameroot - config: oslist: linux @@ -116220,14 +113208,14 @@ description: Launch Level Editor executable: bin/build_mac.sh workingdir: gameroot -'225220': +"225220": installDir: NASCAR The Game 2013 launch: - config: oslist: windows description: Launch NASCAR The Game 2013 executable: bin/NTG2013.exe -'225260': +"225260": installDir: BrutalLegend launch: - config: @@ -116239,22 +113227,22 @@ - config: oslist: linux executable: Buddha.bin.x86 -'225280': +"225280": installDir: FullMojoRampage launch: - config: oslist: windows executable: FullMojo.exe -'225300': +"225300": installDir: Tomb Raider (II) launch: - description: Play executable: Tomb2.exe - - arguments: '-setup' + - arguments: "-setup" description: Configuration executable: Tomb2.exe type: config -'225320': +"225320": installDir: TombRaider (III) launch: - description: Play @@ -116262,18 +113250,18 @@ - arguments: setup description: Launch Setup executable: tomb3.exe -'2253580': +"2253580": installDir: The Space Bar launch: - executable: SPACEBAR.EXE type: default -'225360': +"225360": installDir: Dark launch: - config: oslist: windows executable: DarkApp.exe -'225420': +"225420": installDir: Cities in Motion 2 launch: - config: @@ -116283,18 +113271,18 @@ - config: oslist: macos description: Launch Game - executable: Cities in Motion 2.app\\Contents\\MacOS\\Cities in Motion 2 + executable: "Cities in Motion 2.app\\\\Contents\\\\MacOS\\\\Cities in Motion 2" - config: oslist: linux description: Launch Game executable: Cities in Motion 2 -'2254740': +"2254740": nameLocalized: japanese: ペルソナ5 タクティカ koreana: 페르소나5 택티카 schinese: 女神异闻录5 战略版 tchinese: 女神異聞錄5 戰略版 -'225540': +"225540": installDir: Just Cause 3 launch: - config: @@ -116302,32 +113290,32 @@ description: Launch executable: JustCause3.exe type: default -'225600': +"225600": installDir: Blade Symphony launch: - config: - osarch: '32' + osarch: "32" oslist: windows - executable: bin\\win32\\berimbau.exe + executable: "bin\\\\win32\\\\berimbau.exe" type: none - workingdir: bin\\win32\\ + workingdir: "bin\\\\win32\\\\" - config: - osarch: '64' + osarch: "64" oslist: windows - executable: bin\\win64\\berimbau.exe + executable: "bin\\\\win64\\\\berimbau.exe" type: none - workingdir: bin\\win64\\ - - arguments: '-game berimbau' + workingdir: "bin\\\\win64\\\\" + - arguments: "-game berimbau" config: oslist: macos - executable: bin\\berimbau.sh + executable: "bin\\\\berimbau.sh" type: none - - arguments: '-game berimbau' + - arguments: "-game berimbau" config: oslist: linux - executable: bin\\berimbau.sh + executable: "bin\\\\berimbau.sh" type: none -'225640': +"225640": installDir: Sacred 2 Gold launch: - config: @@ -116335,31 +113323,31 @@ description: Launch Sacred 2 executable: system/sacred2.exe workingdir: system -'2256420': +"2256420": installDir: Infiltrator launch: - - arguments: \"INF.EXE\" -conf \"dosbox_infiltrator.conf\" -noconsole -exit + - arguments: "\\\"INF.EXE\\\" -conf \\\"dosbox_infiltrator.conf\\\" -noconsole -exit" config: oslist: windows - executable: dosbox_windows\\dosbox.exe + executable: "dosbox_windows\\\\dosbox.exe" type: default -'2256430': +"2256430": installDir: FiendishFreddys launch: - - arguments: \"FREDDY.EXE\" -conf \"dosbox_fiendishFreddys.conf\" -noconsole -exit + - arguments: "\\\"FREDDY.EXE\\\" -conf \\\"dosbox_fiendishFreddys.conf\\\" -noconsole -exit" config: oslist: windows - executable: dosbox_windows\\dosbox.exe + executable: "dosbox_windows\\\\dosbox.exe" type: default -'2256440': +"2256440": installDir: InfiltratorII launch: - - arguments: \"INF.EXE\" -conf \"dosbox_infiltrator2.conf\" -noconsole -exit + - arguments: "\\\"INF.EXE\\\" -conf \\\"dosbox_infiltrator2.conf\\\" -noconsole -exit" config: oslist: windows - executable: dosbox_windows\\dosbox.exe + executable: "dosbox_windows\\\\dosbox.exe" type: default -'225840': +"225840": installDir: Sven Co-op launch: - config: @@ -116375,8 +113363,6 @@ - config: oslist: windows description: Game Server - description_loc: - english: Game Server executable: svends.exe type: server - config: @@ -116387,24 +113373,24 @@ - description: Game Manual executable: svencoop/manual/index.html type: manual -'2258500': +"2258500": nameLocalized: japanese: クライマキナ/CRYMACHINA koreana: 크라이마키나 tchinese: CRYMACHINA 慟哭奇機 -'2258770': +"2258770": installDir: The Shell Part I launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TheShell.exe type: default nameLocalized: schinese: 壳之少女 tchinese: 殼之少女 -'2258940': - installDir: Mage Kanade's Futanari Dungeon Quest +"2258940": + installDir: "Mage Kanade's Futanari Dungeon Quest" launch: - config: oslist: windows @@ -116412,7 +113398,7 @@ type: default nameLocalized: schinese: 魔导士小奏的扶她地牢探险 -'22600': +"22600": installDir: Worms Reloaded launch: - config: @@ -116423,24 +113409,24 @@ executable: WormsReloaded.app - config: oslist: linux - executable: ./WormsReloaded.bin.x86 -'2260030': + executable: "./WormsReloaded.bin.x86" +"2260030": installDir: Delirium launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Delirium.exe -'22610': +"22610": installDir: Alien Breed Impact launch: - - executable: Binaries\\AlienBreed-Impact.exe -'226100': + - executable: "Binaries\\\\AlienBreed-Impact.exe" +"226100": installDir: NomNomGalaxy launch: - description: Launch executable: NomNomGalaxy.exe -'226120': +"226120": installDir: Weird Worlds launch: - config: @@ -116448,29 +113434,29 @@ description: Launch Weird Worlds executable: weirdworlds.exe - config: - osarch: '64' + osarch: "64" oslist: macos description: Launch Weird Worlds executable: WeirdWorlds.app - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch Weird Worlds executable: weirdworlds_steam_32 type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch Weird Worlds executable: weirdworlds_steam_64 type: default -'2262770': +"2262770": installDir: Garten Of Banban 2 launch: - config: oslist: windows executable: Garten of Banban 2.exe -'226280': +"226280": installDir: WarpFrontier launch: - config: @@ -116483,52 +113469,52 @@ type: default - config: oslist: macos - executable: WarpFrontier.app\\Contents\\MacOS\\WarpFrontier + executable: "WarpFrontier.app\\\\Contents\\\\MacOS\\\\WarpFrontier" type: default -'226320': +"226320": installDir: Marvel Heroes launch: - - arguments: '-steam -nobitraider -nosolidstate' + - arguments: "-steam -nobitraider -nosolidstate" config: - osarch: '64' + osarch: "64" oslist: windows description: Play (64-Bit) - executable: unrealengine3\\binaries\\win64\\MarvelHeroesOmega.exe + executable: "unrealengine3\\\\binaries\\\\win64\\\\MarvelHeroesOmega.exe" type: none - workingdir: unrealengine3\\binaries\\win64 - - arguments: '-steam -nobitraider -nosolidstate' + workingdir: "unrealengine3\\\\binaries\\\\win64" + - arguments: "-steam -nobitraider -nosolidstate" config: oslist: macos description: App Launch executable: unrealengine3/binaries/mac/MarvelHeroesOmega.app type: none workingdir: unrealengine3/binaries/mac - - arguments: '-steam -nobitraider -nosolidstate' + - arguments: "-steam -nobitraider -nosolidstate" config: - osarch: '32' + osarch: "32" oslist: windows description: Play (32-Bit) - executable: unrealengine3\\binaries\\win32\\MarvelHeroesOmega.exe + executable: "unrealengine3\\\\binaries\\\\win32\\\\MarvelHeroesOmega.exe" type: none - workingdir: unrealengine3\\binaries\\win32 -'226410': {} -'22650': + workingdir: "unrealengine3\\\\binaries\\\\win32" +"226410": {} +"22650": installDir: Alien Breed 2 Assault launch: - - executable: Binaries\\AlienBreed2Assault.exe -'226560': + - executable: "Binaries\\\\AlienBreed2Assault.exe" +"226560": installDir: Escape Dead Island launch: - - arguments: '-bundle-dir bundle' + - arguments: "-bundle-dir bundle" executable: EscapeDeadIsland.exe -'226580': +"226580": installDir: F1 2014 launch: - config: oslist: windows description: Launch executable: f1_2014.exe -'226620': +"226620": installDir: Desktop Dungeons launch: - config: @@ -116543,28 +113529,26 @@ oslist: linux description: Launch executable: DesktopDungeons.sh -'22670': +"22670": installDir: Alien Breed 3 Descent launch: - - executable: Binaries\\AlienBreed3Descent.exe -'226700': + - executable: "Binaries\\\\AlienBreed3Descent.exe" +"226700": installDir: The War Z launch: - - arguments: '-steam -fupd' + - arguments: "-steam -fupd" config: oslist: windows - description: 'Start Infestation: Survivor Stories' - description_loc: - english: 'Start Infestation: Survivor Stories' + description: "Start Infestation: Survivor Stories" executable: InfestationLauncher.exe type: default -'226720': +"226720": installDir: Lost Planet 3 launch: - description: Launch - executable: Binaries\\Win32\\LP3Launcher.exe - workingdir: Binaries\\Win32\\ -'226740': + executable: "Binaries\\\\Win32\\\\LP3Launcher.exe" + workingdir: "Binaries\\\\Win32\\\\" +"226740": installDir: MonsterLovesYou launch: - config: @@ -116578,18 +113562,18 @@ executable: MonsterLovesYou.app type: option1 - config: - osarch: '32' + osarch: "32" oslist: linux description: Monster Loves You! executable: MonsterLovesYou.x86 type: option1 - config: - osarch: '64' + osarch: "64" oslist: linux description: Monster Loves You! executable: MonsterLovesYou.x86_64 type: option1 -'226760': +"226760": installDir: Rugby Challenge 2 launch: - config: @@ -116599,27 +113583,27 @@ - config: oslist: windows description: Rugby Challenge 2 Settings Editor - executable: tools\\RugbyChallenge2SettingsEditor.exe -'226780': + executable: "tools\\\\RugbyChallenge2SettingsEditor.exe" +"226780": installDir: MUD Motocross World Championship launch: - config: oslist: windows executable: MUD.EXE -'226820': +"226820": installDir: Nancy Drew The Ghost of Thornton Hall launch: - config: oslist: windows description: Launch executable: Thornton.exe - - arguments: '-psn' + - arguments: "-psn" config: oslist: macos description: Launch Mac executable: Nancy Drew - Ghost of Thornton Hall.app/Contents/MacOS/cider workingdir: Nancy Drew The Ghost of Thornton Hall/ -'226840': +"226840": installDir: AoW3 launch: - config: @@ -116630,26 +113614,26 @@ oslist: macos description: Launch AoWIII executable: AoW3Launcher.app - - arguments: ./AoW3Launcher.sh + - arguments: "./AoW3Launcher.sh" config: oslist: linux description: Launch AoWIII executable: AoW3Launcher.run -'226860': +"226860": installDir: Galactic Civilizations III launch: - executable: StardockLauncher.exe type: default -'226920': {} -'2269230': +"226920": {} +"2269230": installDir: How I Escaped Futa Prison launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: futa-prison.exe type: default -'226960': +"226960": installDir: Ironclad Tactics launch: - config: @@ -116661,7 +113645,7 @@ - config: oslist: macos executable: Ironclad Tactics.app -'226980': +"226980": installDir: Pinball FX2 launch: - config: @@ -116669,87 +113653,70 @@ description: Launch Game executable: Pinball FX2.exe type: default -'2270': +"2270": installDir: Wolfenstein 3D launch: - - arguments: base\\Wolf3d.exe -conf base\\wolf3d.conf -fullscreen -exit - executable: base\\dosbox.exe -'227000': + - arguments: "base\\\\Wolf3d.exe -conf base\\\\wolf3d.conf -fullscreen -exit" + executable: "base\\\\dosbox.exe" +"227000": installDir: Primordia launch: - config: oslist: windows description: Launch Primordia - description_loc: - english: Launch Primordia - italian: Lancia Primordia executable: Primordia.exe type: default - config: oslist: macos description: Launch - description_loc: - english: Launch - italian: Lancia executable: Primordia.app/Contents/MacOS/AGS type: default - config: - osarch: '32' + osarch: "32" oslist: linux - description: 'Launch [32bit]' - description_loc: - english: 'Launch [32bit]' - italian: ' Lancia [32bit]' - executable: ./Start.sh + description: "Launch [32bit]" + executable: "./Start.sh" type: default - config: - osarch: '64' + osarch: "64" oslist: linux - description: 'Launch [64bit]' - description_loc: - english: 'Launch [64bit]' - italian: '[Lancia 64bit]' - executable: ./Start.sh + description: "Launch [64bit]" + executable: "./Start.sh" type: default - - arguments: '--windowed' + - arguments: "--windowed" config: oslist: linux description: Windowed - description_loc: - english: Windowed - executable: ./Start.sh + executable: "./Start.sh" type: option1 - config: oslist: windows description: Options - description_loc: - english: Options - italian: Opzioni executable: winsetup.exe type: config -'227020': +"227020": installDir: Rise of Venice launch: - config: oslist: windows description: Launch executable: RiseOfVenice.exe -'227060': +"227060": installDir: Hegemony Rome launch: - config: oslist: windows description: Launch Hegemony Rome executable: Hegemony Rome Launcher.exe -'227080': +"227080": installDir: PapoYo launch: - - arguments: '-seekfreeloading' + - arguments: "-seekfreeloading" config: oslist: windows description: Launch - executable: Binaries\\Win32\\PYGame-Win32-Shipping.exe - workingdir: Binaries\\Win32\\ + executable: "Binaries\\\\Win32\\\\PYGame-Win32-Shipping.exe" + workingdir: "Binaries\\\\Win32\\\\" - config: oslist: macos description: Launch @@ -116761,33 +113728,33 @@ description: Launch executable: PapoYo.sh type: none -'227100': +"227100": installDir: NZA launch: - - executable: bin\\NZA.exe -'2271050': {} -'227160': + - executable: "bin\\\\NZA.exe" +"2271050": {} +"227160": installDir: Kinetic Void launch: - config: oslist: windows executable: Kinetic Void.exe - config: - osarch: '32' + osarch: "32" oslist: linux executable: Kinetic Void.x86 - config: oslist: macos executable: Kinetic Void.app - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Kinetic Void.x86_64 -'227180': +"227180": installDir: Dawn of Fantasy launch: - - arguments: '-dev86' + - arguments: "-dev86" config: oslist: windows description: Play Kingdom Wars @@ -116800,7 +113767,7 @@ oslist: windows description: World Editor executable: Editor.exe -'227200': +"227200": installDir: Waking Mars launch: - config: @@ -116815,86 +113782,86 @@ oslist: linux description: Linux Launch Waking Mars executable: wakingmars/wakingmars -'227220': +"227220": installDir: Sang-Froid Tales of Werewolves launch: - config: oslist: windows - description: 'Launch ' + description: "Launch " executable: SangFroid.exe -'2272250': +"2272250": installDir: Forgive Me Father 2 launch: - config: oslist: windows executable: FMF2.exe type: default -'227280': +"227280": installDir: No Time to Explain launch: - - arguments: '-console' + - arguments: "-console" config: oslist: windows description: Launch with Console - executable: NoTime\\NoTimeToExplain.exe + executable: "NoTime\\\\NoTimeToExplain.exe" workingdir: NoTime - - arguments: '-console' + - arguments: "-console" config: oslist: macos description: Launch with Console executable: no-time-to-explain/build/NoTimeToExplain.app workingdir: no-time-to-explain -'227300': +"227300": installDir: Euro Truck Simulator 2 launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Play Euro Truck Simulator 2 (64-bit) executable: bin/win_x64/eurotrucks2.exe type: default - - arguments: '-rdevice dx9' + - arguments: "-rdevice dx9" config: betakey: temporary_1_35 - osarch: '64' + osarch: "64" oslist: windows description: Launch with DirectX9 (64-bit) executable: bin/win_x64/eurotrucks2.exe type: none - - arguments: '-rdevice dx11' + - arguments: "-rdevice dx11" config: - osarch: '64' + osarch: "64" oslist: windows description: Launch with DirectX11 (64-bit) executable: bin/win_x64/eurotrucks2.exe type: none - - arguments: '-rdevice gl' + - arguments: "-rdevice gl" config: - osarch: '64' + osarch: "64" oslist: windows description: Launch with OpenGL (64-bit) executable: bin/win_x64/eurotrucks2.exe type: none - - arguments: '-safe' + - arguments: "-safe" config: - osarch: '64' + osarch: "64" oslist: windows description: Launch in safe mode (64-bit) executable: bin/win_x64/eurotrucks2.exe type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: bin/linux_x86/eurotrucks2 type: none workingdir: bin/linux_x86 - config: - osarch: '64' + osarch: "64" oslist: linux executable: bin/linux_x64/eurotrucks2 type: none workingdir: bin/linux_x64 - - arguments: '-safe' + - arguments: "-safe" config: oslist: linux description: Launch with safe mode @@ -116910,33 +113877,33 @@ description: Play Euro Truck Simulator 2 (32-bit) executable: bin/win_x86/eurotrucks2.exe type: none - - arguments: '-rdevice dx9' + - arguments: "-rdevice dx9" config: betakey: temporary_1_35 oslist: windows description: Launch with DirectX9 (32-bit) executable: bin/win_x86/eurotrucks2.exe type: none - - arguments: '-rdevice dx11' + - arguments: "-rdevice dx11" config: oslist: windows description: Launch with DirectX11 (32-bit) executable: bin/win_x86/eurotrucks2.exe type: none - - arguments: '-rdevice gl' + - arguments: "-rdevice gl" config: oslist: windows description: Launch with OpenGL (32-bit) executable: bin/win_x86/eurotrucks2.exe type: none - - arguments: '-safe' + - arguments: "-safe" config: oslist: windows description: Launch in safe mode (32-bit) executable: bin/win_x86/eurotrucks2.exe type: none -'227380': - installDir: Dragon's Lair +"227380": + installDir: "Dragon's Lair" launch: - config: oslist: windows @@ -116944,38 +113911,38 @@ executable: DragonsLair.exe - config: oslist: macos - executable: Dragon's Lair.app + executable: "Dragon's Lair.app" - config: oslist: linux executable: DragonsLair.x86 type: none -'2273920': +"2273920": installDir: WojakRush003 launch: - config: oslist: windows - executable: WojakRush003\\WojakRush.exe + executable: "WojakRush003\\\\WojakRush.exe" type: default -'227400': +"227400": installDir: Darkfall Unholy Wars launch: - - arguments: '-steam' + - arguments: "-steam" executable: DFUWLobby.exe -'2274120': +"2274120": installDir: NSFW Solitaire launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: NSFWSolitaire_Win64\\NSFWSolitaire.exe + executable: "NSFWSolitaire_Win64\\\\NSFWSolitaire.exe" - config: oslist: macos executable: NSFWSolitaire_Mac.app - config: - osarch: '64' + osarch: "64" oslist: linux executable: NSFWSolitaire_Linux/NSFWSolitaire.x86_64 -'227480': +"227480": installDir: GodMode launch: - config: @@ -116983,7 +113950,7 @@ description: Launch game executable: bin/GodMode.exe workingdir: bin -'2275150': +"2275150": installDir: SLUDGE LIFE 2 launch: - config: @@ -116992,8 +113959,8 @@ nameLocalized: schinese: 污泥人生2 tchinese: 淤泥餘生2 -'227520': {} -'227560': +"227520": {} +"227560": installDir: Scourge Outbreak launch: - config: @@ -117003,9 +113970,9 @@ - config: oslist: windows description: Launch - executable: Binaries\\Win32\\ScourgeGame.exe -'227580': - installDir: '10000000' + executable: "Binaries\\\\Win32\\\\ScourgeGame.exe" +"227580": + installDir: "10000000" launch: - config: oslist: windows @@ -117019,7 +113986,7 @@ oslist: linux description: Launch 10000000 executable: 10000000.x86 -'227600': +"227600": installDir: Castle of Illusion launch: - config: @@ -117028,28 +113995,28 @@ - config: oslist: macos executable: Castle of Illusion.app -'227680': +"227680": installDir: StarForge launch: - - arguments: '-nolog' + - arguments: "-nolog" config: oslist: windows executable: StarForge.exe -'2276850': +"2276850": installDir: The Voidness - LIDAR Horror Survival Game launch: - executable: The Voidness.exe type: default -'227700': +"227700": installDir: Firefall launch: - - arguments: '--steam' + - arguments: "--steam" config: oslist: windows description: Launch Firefall executable: system/bin/FirefallClient.exe workingdir: system/bin/ -'227720': +"227720": installDir: Under the Ocean launch: - config: @@ -117060,24 +114027,24 @@ oslist: macos description: Launch executable: Under the Ocean.app -'227760': +"227760": installDir: March of the Eagles launch: - config: oslist: windows executable: MotE_game.exe -'227780': +"227780": installDir: Serious Sam Revolution launch: - config: oslist: windows executable: Bin/SeriousSam.exe -'227800': +"227800": installDir: Retrovirus launch: - description: Launch Retrovirus executable: RetrovirusLauncher.exe -'227860': +"227860": installDir: Castle Story launch: - config: @@ -117097,38 +114064,38 @@ oslist: linux executable: Castle Story type: none -'227900': +"227900": installDir: Battleship launch: - executable: Battleship.exe -'2279160': {} -'227920': +"2279160": {} +"227920": installDir: Risk launch: - executable: Risk.exe -'227940': +"227940": installDir: Heroes & Generals launch: - config: oslist: windows description: Launch H&G executable: hngsteamlauncher.exe -'2280': +"2280": installDir: Ultimate Doom launch: - config: - osarch: '64' - executable: rerelease\\DOOM.exe + osarch: "64" + executable: "rerelease\\\\DOOM.exe" type: none - - arguments: '-conf base\\ultimatem.conf -fullscreen -exit' + - arguments: "-conf base\\\\ultimatem.conf -fullscreen -exit" description: Launch DOS version - executable: base\\dosbox.exe + executable: "base\\\\dosbox.exe" type: none - - arguments: '-conf base\\ultimate.conf -fullscreen -exit' + - arguments: "-conf base\\\\ultimate.conf -fullscreen -exit" description: Launch DOS version with classic controls - executable: base\\dosbox.exe + executable: "base\\\\dosbox.exe" type: none -'2280390': +"2280390": installDir: Tennis Manager 2023 launch: - config: @@ -117137,7 +114104,7 @@ - config: oslist: macos executable: Tennis Manager 2023.app -'2281730': +"2281730": installDir: Combat Master launch: - config: @@ -117152,31 +114119,31 @@ oslist: linux executable: CombatMaster.x86_64 type: default -'2281940': {} -'228260': +"2281940": {} +"228260": installDir: FE Legendary Heroes launch: - description: Play Legendary Heroes executable: LegendaryHeroes.exe -'228280': - installDir: Baldur's Gate Enhanced Edition +"228280": + installDir: "Baldur's Gate Enhanced Edition" launch: - config: oslist: windows executable: Baldur.exe - config: oslist: macos - executable: Baldur's Gate - Enhanced Edition.app + executable: "Baldur's Gate - Enhanced Edition.app" - config: oslist: linux executable: BaldursGate -'228300': +"228300": installDir: Remember Me launch: - - arguments: '-seekfreeloadingpcconsole' + - arguments: "-seekfreeloadingpcconsole" description: Launch with Console executable: Binaries/Win32/RememberMe.exe -'228320': +"228320": installDir: A Valley Without Wind 2 launch: - config: @@ -117187,16 +114154,16 @@ executable: Valley2.app workingdir: bin - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: Valley2Linux.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Valley2Linux.x86_64 -'228360': +"228360": installDir: Full Throttle Remastered launch: - config: @@ -117211,7 +114178,7 @@ oslist: linux executable: Throttle type: default -'228380': +"228380": installDir: Wreckfest launch: - config: @@ -117224,19 +114191,19 @@ description: Wreckfest (32-bit) executable: Wreckfest.exe type: option2 - - arguments: '-disable_mods' + - arguments: "-disable_mods" config: oslist: windows description: Wreckfest (64-bit) with mods disabled executable: Wreckfest_x64.exe type: option3 -'228400': +"228400": installDir: Ace Combat Assault Horizon launch: - config: oslist: windows executable: Ace Combat_AH.exe -'228440': +"228440": installDir: Cubemen 2 launch: - config: @@ -117249,20 +114216,20 @@ oslist: linux description: Linux executable: startgame.sh -'228560': +"228560": installDir: TMNT-OotS launch: - description: Launch executable: Binaries/Win32/TMNT-OotS.exe workingdir: Binaries/Win32 -'2287220': +"2287220": installDir: F1 Manager 2023 launch: - executable: F1Manager23.exe -'2287330': +"2287330": nameLocalized: french: Les Fourmis -'2287560': +"2287560": installDir: VOMP launch: - config: @@ -117273,18 +114240,18 @@ oslist: macos executable: VOMP.app type: default -'228760': +"228760": installDir: ManiaPlanet_TMCanyon launch: - arguments: /silent //startuptitle=TMCanyon description: Play executable: ManiaPlanetLauncher.exe type: none - workingdir: .\\ + workingdir: ".\\\\" - description: Launcher executable: ManiaPlanetLauncher.exe - workingdir: .\\ -'2288070': + workingdir: ".\\\\" +"2288070": installDir: The Ninja Saviors Return of the Warriors launch: - config: @@ -117292,27 +114259,27 @@ executable: The Ninja Saviors Return of the Warriors.exe type: default nameLocalized: - japanese: 'The Ninja Saviors: Return of the Warriors (ザ・ニンジャウォーリアーズ ワンスアゲイン)' -'228880': + japanese: "The Ninja Saviors: Return of the Warriors (ザ・ニンジャウォーリアーズ ワンスアゲイン)" +"228880": installDir: Ashes of the Singularity launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch DirectX 11 Version executable: Ashes_DX11.exe - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch DirectX 12 Version (Windows 10 Only) executable: Ashes_DX12.exe - - arguments: '-s CPUBench' + - arguments: "-s CPUBench" config: betakey: ashes_bwd-e_demo description: Run Ashes CPU Loop executable: Ashes_DX12.exe type: option1 -'228940': +"228940": installDir: Carnage Racing launch: - config: @@ -117323,7 +114290,7 @@ oslist: macos description: Launch with Console executable: CarnageRacing.app -'228960': +"228960": installDir: Skulls of the Shogun launch: - config: @@ -117333,96 +114300,89 @@ - config: oslist: linux description: Launch - executable: ./SkullsOfTheShogun + executable: "./SkullsOfTheShogun" - config: oslist: macos description: Launch executable: Skulls of the Shogun.app -'2290': +"2290": installDir: Final Doom launch: - - arguments: '-conf .\\base\\plutoniam.conf -fullscreen -exit' - executable: base\\dosbox.exe - - arguments: '-conf .\\base\\plutonia.conf -fullscreen -exit' + - arguments: "-conf .\\\\base\\\\plutoniam.conf -fullscreen -exit" + executable: "base\\\\dosbox.exe" + - arguments: "-conf .\\\\base\\\\plutonia.conf -fullscreen -exit" description: Launch Plutonia Mission with classic controls - executable: base\\dosbox.exe - - arguments: '-conf .\\base\\tntm.conf -fullscreen -exit' - description: 'Launch Final Doom: TNT Evilution' - executable: base\\dosbox.exe - - arguments: '-conf .\\base\\tnt.conf -fullscreen -exit' - description: 'Launch Final Doom: TNT Evilution with classic controls' - executable: base\\dosbox.exe -'2290180': + executable: "base\\\\dosbox.exe" + - arguments: "-conf .\\\\base\\\\tntm.conf -fullscreen -exit" + description: "Launch Final Doom: TNT Evilution" + executable: "base\\\\dosbox.exe" + - arguments: "-conf .\\\\base\\\\tnt.conf -fullscreen -exit" + description: "Launch Final Doom: TNT Evilution with classic controls" + executable: "base\\\\dosbox.exe" +"2290180": installDir: RidersRepublic launch: - - arguments: '-uplay_steam_mode' + - arguments: "-uplay_steam_mode" config: - osarch: '64' + osarch: "64" oslist: windows executable: RidersRepublic.exe type: default -'2291020': +"2291020": installDir: AC launch: - config: oslist: windows description: ANONYMOUS;CODE Main Game - description_loc: - english: ANONYMOUS;CODE Main Game - japanese: ANONYMOUS;CODE Main Game - schinese: ANONYMOUS;CODE Main Game - tchinese: ANONYMOUS;CODE Main Game executable: MAGESgamelauncher.exe type: option1 - config: oslist: windows - ownsdlc: '2459570' + ownsdlc: "2459570" description: Artbook - description_loc: - english: Artbook - executable: Steam\\AC_guidebook.exe + executable: "Steam\\\\AC_guidebook.exe" type: option2 nameLocalized: schinese: 匿名代码 tchinese: 匿名代碼 -'2291760': - installDir: Papa's Freezeria Deluxe +"2291760": + installDir: "Papa's Freezeria Deluxe" launch: - config: oslist: windows - executable: Papa's Freezeria Deluxe.exe + executable: "Papa's Freezeria Deluxe.exe" type: default -'2292260': {} -'2293380': +"2292260": {} +"2293380": installDir: The horror of secret experiments launch: - executable: The horror of secret experiments.exe -'229480': +"229480": installDir: Dungeons & Dragons HD launch: - config: oslist: windows description: Run game normally executable: ManaGame.exe -'229520': +"229520": installDir: Dungeon Hearts launch: - config: oslist: macos description: Launch executable: DungeonHearts.app - workingdir: . + workingdir: "." - config: oslist: windows description: Launch executable: DungeonHearts.exe - workingdir: . + workingdir: "." - config: oslist: linux description: Launch - executable: ./DungeonHearts - workingdir: . -'229560': + executable: "./DungeonHearts" + workingdir: "." +"229560": installDir: Hacker Evolution IMMERSION launch: - config: @@ -117442,7 +114402,7 @@ description: HEI World Editor executable: HEI - World Editor.exe type: editor -'229580': +"229580": installDir: Dream launch: - config: @@ -117450,14 +114410,14 @@ description: Play Dream executable: Binaries/Win32/Dream.exe workingdir: Binaries/Win32 -'2295970': +"2295970": nameLocalized: english: UFO ROBOT GRENDIZER – The Feast of the Wolves french: GOLDORAK – Le Festin des Loups german: UFO ROBOT GOLDORAK - The Feast of the Wolves italian: UFO ROBOT GOLDRAKE – Il Banchetto dei Lupi japanese: UFOロボ グレンダイザー:たとえ我が命つきるとも -'229600': +"229600": installDir: Bientot_l_ete launch: - config: @@ -117468,26 +114428,26 @@ oslist: macos description: Launch executable: Bientôt l’été.app -'229790': +"229790": installDir: Might and Magic Heroes VI - Shades of Darkness -'229810': +"229810": installDir: Fistful of Gun launch: - config: oslist: windows description: Launch executable: FistfulofGun.exe -'229870': +"229870": installDir: ManiaPlanet_SMStorm launch: - arguments: /silent /startuptitle=SMStorm description: Play executable: ManiaPlanetLauncher.exe - workingdir: .\\ + workingdir: ".\\\\" - description: Launcher executable: ManiaPlanetLauncher.exe - workingdir: .\\ -'229890': + workingdir: ".\\\\" +"229890": installDir: Joe Danger launch: - config: @@ -117504,13 +114464,13 @@ oslist: macos description: Launch Game executable: Joe Danger.app - workingdir: ../../MacOS -'2300': + workingdir: "../../MacOS" +"2300": installDir: Doom 2 launch: - config: - osarch: '64' - executable: rerelease\\DOOM II.exe + osarch: "64" + executable: "rerelease\\\\DOOM II.exe" type: none - description: Launch DOS version executable: doom2 + mouse.bat @@ -117518,14 +114478,14 @@ - description: Launch DOS version with classic controls executable: doom2.bat type: none -'2300070': +"2300070": installDir: Twerk it Girl! launch: - config: oslist: windows executable: Twerk it Girl!.exe type: default -'230050': +"230050": installDir: DLC Quest launch: - config: @@ -117535,11 +114495,11 @@ - config: oslist: macos executable: DLCQuest.app -'230070': +"230070": installDir: Age of Decadence launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: 64-bit version executable: AoD64.exe @@ -117549,7 +114509,7 @@ description: 32-bit version executable: AoD.exe type: option1 -'230150': +"230150": installDir: Incredipede launch: - config: @@ -117560,15 +114520,13 @@ oslist: macos description: Launch Game Mac executable: Incredipede.app/Contents/MacOS/Incredipede -'230190': +"230190": installDir: War For The Overworld launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch Game - description_loc: - english: Launch Game executable: WFTOGame.exe - config: oslist: linux @@ -117579,7 +114537,7 @@ description: Launch Game executable: WFTO.app - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch Game executable: WFTOGame.exe @@ -117587,20 +114545,16 @@ betakey: v2.0.8build oslist: windows description: Launch Game - description_loc: - english: Launch Game executable: WFTO.exe type: default - config: betakey: unity5.4.6 oslist: windows description: Launch Game - description_loc: - english: Launch Game executable: WFTO.exe type: default -'230210': {} -'230230': +"230210": {} +"230230": installDir: Divinity - Original Sin launch: - config: @@ -117612,7 +114566,7 @@ oslist: macos description: Launch executable: Divinity - Original Sin.app -'230270': +"230270": installDir: N++ launch: - config: @@ -117624,52 +114578,52 @@ executable: N++.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: N++.bin.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: N++.bin.x86_64 type: default -'230290': +"230290": installDir: Universe Sandbox 2 launch: - config: - osarch: '32' + osarch: "32" oslist: windows - executable: x32\\Universe Sandbox x32.exe + executable: "x32\\\\Universe Sandbox x32.exe" type: default - config: oslist: macos executable: Universe Sandbox.app - config: - osarch: '32' + osarch: "32" oslist: linux executable: Universe Sandbox.x86 - config: - osarch: '64' + osarch: "64" oslist: linux executable: Universe Sandbox.x86_64 - config: - osarch: '64' + osarch: "64" oslist: windows executable: Universe Sandbox x64.exe type: default - - arguments: '-vrmode openvr' + - arguments: "-vrmode openvr" config: - osarch: '64' + osarch: "64" oslist: windows executable: Universe Sandbox x64.exe type: vr - - arguments: '-vrmode oculus' + - arguments: "-vrmode oculus" config: - osarch: '64' + osarch: "64" oslist: windows executable: Universe Sandbox x64.exe type: othervr -'230310': +"230310": installDir: Akaneiro Demon Hunters launch: - config: @@ -117684,7 +114638,7 @@ oslist: linux description: Linux executable: Akaneiro -'230330': +"230330": installDir: FFXINA launch: - config: @@ -117693,38 +114647,38 @@ executable: SquareEnix/FINAL FANTASY XI/polboot.exe workingdir: SquareEnix/FINAL FANTASY XI - description: Launch PlayOnline Config Utility - executable: SquareEnix\\PlayOnlineViewer\\polcfg\\polcfg.exe + executable: "SquareEnix\\\\PlayOnlineViewer\\\\polcfg\\\\polcfg.exe" - description: Launch FINAL FANTASY XI Config Utility - executable: SquareEnix\\FINAL FANTASY XI\\ToolsUS\\FINAL FANTASY XI Config.exe -'230410': + executable: "SquareEnix\\\\FINAL FANTASY XI\\\\ToolsUS\\\\FINAL FANTASY XI Config.exe" +"230410": installDir: Warframe launch: - - arguments: '-cluster:public -registry:Steam' + - arguments: "-cluster:public -registry:Steam" config: oslist: windows description: Play executable: Tools/Launcher.exe workingdir: Tools -'230650': +"230650": installDir: Lords of Football launch: - description: Lords of Football executable: lof.exe - description: Lords of Football - Database Editor executable: dbeditor.exe -'2306590': +"2306590": installDir: Apewar launch: - config: oslist: windows executable: Apewar.exe type: default -'2306740': +"2306740": installDir: MGS Master Collection Bonus Content launch: - executable: MGS MC1 Bonus Content.exe type: default -'230700': +"230700": installDir: La-Mulana launch: - config: @@ -117745,11 +114699,11 @@ executable: RunGameNoSteamRT.sh - config: oslist: windows - ownsdlc: '1279252' + ownsdlc: "1279252" description: one hit death mode executable: LaMulana_one-hit-death/LaMulanaWin_one-hit-death.exe type: option1 -'230760': +"230760": installDir: DIVO launch: - config: @@ -117764,14 +114718,14 @@ oslist: linux description: Launch for x64 executable: DIVO_lnx.x86_64 -'2308120': +"2308120": installDir: Dark Rift launch: - config: oslist: windows executable: dark_rift_launcher.exe type: default -'230820': +"230820": installDir: The Night of the Rabbit launch: - config: @@ -117788,31 +114742,31 @@ description: Launch executable: The Night of the Rabbit.app type: default - workingdir: ./ + workingdir: "./" - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: start type: default -'230840': +"230840": installDir: Daylight launch: - config: oslist: windows description: Launch the game executable: DaylightLauncher.exe - - arguments: '-nosli -nolightfx' + - arguments: "-nosli -nolightfx" config: oslist: windows description: Launch in safe mode executable: DaylightLauncher.exe - - arguments: '-rundiag' + - arguments: "-rundiag" config: oslist: windows description: Launch with Diagnostic Tool executable: DaylightLauncher.exe -'230860': +"230860": installDir: Cannon Brawl launch: - config: @@ -117827,8 +114781,8 @@ oslist: linux description: Launch executable: LinuxCannon -'2309440': {} -'230980': +"2309440": {} +"230980": installDir: Starseed Pilgrim launch: - config: @@ -117843,29 +114797,23 @@ oslist: linux description: Play executable: Starseed Pilgrim.??? -'2310': +"2310": installDir: Quake launch: - executable: rerelease/Quake_x64_steam.exe type: default - description: Quake (Original) - description_loc: - english: Quake (Original) executable: glquake.exe type: option1 - - arguments: '-hipnotic' + - arguments: "-hipnotic" description: Scourge of Armagon (Original) - description_loc: - english: Scourge of Armagon (Original) executable: glquake.exe type: option1 - - arguments: '-rogue' + - arguments: "-rogue" description: Dissolution of Eternity (Original) - description_loc: - english: Dissolution of Eternity (Original) executable: glquake.exe type: option1 -'231020': +"231020": installDir: Storm launch: - description: Launch game @@ -117874,42 +114822,42 @@ - description: Options videos executable: StormExe/DetectVideo.exe workingdir: StormExe -'231040': +"231040": installDir: Beatbuddy launch: - config: oslist: windows description: Launch on Windows executable: Beatbuddy.exe - workingdir: . + workingdir: "." - config: oslist: macos description: Launch on OSX executable: Beatbuddy.app - workingdir: . + workingdir: "." - config: oslist: linux description: Launch on Linux executable: beatbuddy.sh - workingdir: . -'231060': + workingdir: "." +"231060": installDir: Ragnarok Online 2 launch: - config: oslist: windows description: Launch RO2 executable: WPLauncher.exe -'2311190': +"2311190": installDir: Garten of Banban 3 launch: - config: oslist: windows executable: Garten of Banban 3.exe -'231140': +"231140": installDir: Cities XL Platinum launch: - executable: CitiesXL_Platinum.exe -'231160': +"231160": installDir: The Swapper launch: - config: @@ -117917,12 +114865,12 @@ description: Play Game... executable: TheSwapper.exe - config: - osarch: '64' + osarch: "64" oslist: linux description: Play Game... executable: TheSwapper - config: - osarch: '32' + osarch: "32" oslist: linux description: Play Game... executable: TheSwapper @@ -117930,11 +114878,11 @@ oslist: macos description: Play Game... executable: RunTheSwapper -'23120': +"23120": installDir: Droplitz launch: - executable: Cascade.exe -'231200': +"231200": installDir: KentuckyRouteZero launch: - config: @@ -117946,22 +114894,22 @@ description: Launch executable: KentuckyRouteZero.app - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: KentuckyRouteZero.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: KentuckyRouteZero.x86_64 - - arguments: '-force-opengl' + - arguments: "-force-opengl" config: oslist: windows description: Play with OpenGL (black screen fix) executable: KentuckyRouteZero.exe type: none -'231310': +"231310": installDir: MirrorMoonEP launch: - config: @@ -117976,16 +114924,16 @@ oslist: linux description: Launch executable: MirrorMoonEP.x86 -'231330': +"231330": installDir: Deadfall Adventures launch: - - arguments: '-seekfreeloadingpcconsole -fullscreen' + - arguments: "-seekfreeloadingpcconsole -fullscreen" config: oslist: windows description: Launch Deadfall Adventures executable: Binaries/Win32/ADVGame-Win32-Shipping.exe workingdir: Binaries/Win32 - - arguments: '-seekfreeloadingpcconsole -windowed' + - arguments: "-seekfreeloadingpcconsole -windowed" config: oslist: windows description: Launch Deadfall Adventures Windowed @@ -117999,7 +114947,7 @@ oslist: linux description: View BETA Release Notes executable: view-release-notes.sh -'231430': +"231430": installDir: Company of Heroes 2 launch: - config: @@ -118014,11 +114962,11 @@ oslist: linux description: Launch executable: CompanyOfHeroes2.sh -'23150': +"23150": installDir: Fluttabyes launch: - executable: Fluttabyes.exe -'231670': +"231670": installDir: Football Manager 2014 launch: - config: @@ -118033,7 +114981,7 @@ oslist: linux description: Launch executable: fm -'231720': +"231720": installDir: Bad Hotel launch: - config: @@ -118048,7 +114996,7 @@ oslist: linux description: Launch executable: BadHotel -'231740': +"231740": installDir: Knights of Pen and Paper launch: - config: @@ -118063,8 +115011,8 @@ oslist: linux description: Launcher executable: knightspp.x86 -'2318070': {} -'231910': +"2318070": {} +"231910": installDir: Leisure Suit Larry in the Land of the Lounge Lizards Reloaded launch: - config: @@ -118079,24 +115027,24 @@ oslist: linux description: Launch executable: Larry-Linux.x86 -'2319100': +"2319100": installDir: ROBOCOCK launch: - executable: ROBOCOCK.exe -'231990': +"231990": installDir: Spider-Man (TM) SD launch: - description: Launch executable: Launcher.exe -'2320': +"2320": installDir: Quake 2 launch: - executable: quake2.exe -'23200': +"23200": installDir: I-Fluid launch: - executable: I-Fluid.exe -'232010': +"232010": installDir: Euro Truck Simulator launch: - config: @@ -118112,7 +115060,7 @@ oslist: windows description: Configure Euro Truck Simulator executable: eurotrucks.exe -'232050': +"232050": installDir: Eador. Masters of the Broken World launch: - config: @@ -118124,20 +115072,19 @@ oslist: linux description: Play game executable: runme.sh -'232090': +"232090": installDir: killingfloor2 launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: Binaries/Win64/KFGame.exe - vacmodulefilename: resource\\sourceinit.dat -'232430': +"232430": installDir: Gone Home launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: 64-bit launch executable: GoneHome.exe @@ -118151,11 +115098,11 @@ executable: Launch.sh type: default - config: - osarch: '32' + osarch: "32" oslist: windows description: 32-bit launch executable: GoneHome32.exe -'232450': +"232450": installDir: SolForge launch: - config: @@ -118163,18 +115110,18 @@ description: Launch App executable: solforge.exe type: default - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" config: oslist: windows executable: solforge.exe type: config - config: - osarch: '32' + osarch: "32" oslist: linux executable: solforge_standalonelinux_Final_Live_0.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: solforge_standalonelinux_Final_Live_0.x86_64 type: default @@ -118188,13 +115135,13 @@ description: Launch KUSC executable: kusc.exe type: default -'2324650': +"2324650": installDir: Themurderofsonicthehedgehog launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: The Murder of Sonic The Hedgehog\\The Murder of Sonic The Hedgehog.exe + executable: "The Murder of Sonic The Hedgehog\\\\The Murder of Sonic The Hedgehog.exe" type: default - config: oslist: macos @@ -118205,7 +115152,7 @@ koreana: 소닉 더 헤지혹 살인 사건 schinese: 刺猬索尼克谋杀案 tchinese: 刺猬索尼克的謀殺懸案 -'2326780': +"2326780": installDir: Embarrassed Shina-chan~ the Naked Wandering College Girl launch: - config: @@ -118216,11 +115163,11 @@ japanese: 全裸徘徊女子大生 はずかしーなちゃん schinese: 全裸徘徊的女子大学生~害羞的椎名酱 tchinese: 全裸徘徊的女子大學生~害羞的椎名酱 -'232750': +"232750": installDir: Mars War Logs launch: - executable: MarsWarlogs.exe -'232770': +"232770": installDir: POSTAL1 launch: - config: @@ -118235,7 +115182,7 @@ oslist: linux description: Play POSTAL 1 executable: postal1 -'232790': +"232790": installDir: Broken Age launch: - config: @@ -118250,48 +115197,48 @@ oslist: linux description: Launch executable: BrokenAge -'232810': +"232810": installDir: Godus launch: - config: oslist: windows description: Launch - executable: ./windows/Godus.exe + executable: "./windows/Godus.exe" type: default - workingdir: ./windows + workingdir: "./windows" - config: oslist: macos description: Launch Mac Normal - executable: ./mac/godus.app/Contents/MacOS/godus + executable: "./mac/godus.app/Contents/MacOS/godus" type: default - workingdir: ./mac -'2328760': + workingdir: "./mac" +"2328760": installDir: Pinball FX launch: - config: oslist: windows executable: PinballFX.exe type: default -'232890': +"232890": installDir: Stronghold Crusader 2 launch: - config: oslist: windows description: Stronghold Crusader 2 - executable: bin\\win32_release\\Crusader2.exe - workingdir: bin\\win32_release -'232910': + executable: "bin\\\\win32_release\\\\Crusader2.exe" + workingdir: "bin\\\\win32_release" +"232910": installDir: ManiaPlanet_TMStadium launch: - arguments: /silent //startuptitle=TMStadium description: Play executable: ManiaPlanetLauncher.exe type: none - workingdir: .\\ + workingdir: ".\\\\" - description: Launcher executable: ManiaPlanetLauncher.exe - workingdir: .\\ -'232950': + workingdir: ".\\\\" +"232950": installDir: BridgeProject launch: - config: @@ -118302,20 +115249,20 @@ oslist: macos description: Start game (Mac) executable: bridgeproject.app -'232970': +"232970": installDir: Thunder Wolves launch: - description: Start game executable: ThunderWolves.exe -'23300': +"23300": installDir: Yosumin launch: - executable: Yosumin.exe -'23310': +"23310": installDir: The Last Remnant launch: - - executable: Binaries\\TLR.exe -'233110': + - executable: "Binaries\\\\TLR.exe" +"233110": installDir: DefenseTechnica launch: - config: @@ -118326,19 +115273,19 @@ oslist: macos description: Launch with Console executable: DefenseMac.app/Contents/MacOS/Defense Technica -'233130': +"233130": installDir: Shadow Warrior launch: - config: oslist: windows description: Launch - executable: dx11\\\\launcher.exe + executable: "dx11\\\\\\\\launcher.exe" workingdir: dx11 - - arguments: '-safe' + - arguments: "-safe" config: oslist: windows description: Safe Mode - executable: dx11\\\\launcher.exe + executable: "dx11\\\\\\\\launcher.exe" workingdir: dx11 - config: oslist: macos @@ -118352,7 +115299,7 @@ oslist: windows description: Play Shadow Warrior (Windows XP) executable: sw.exe - - arguments: '-safe' + - arguments: "-safe" config: oslist: windows description: Safe Mode (Windows XP) @@ -118361,7 +115308,7 @@ oslist: linux description: No Steam Runtime Mode executable: RunGameNoSteamRT.sh -'233150': +"233150": installDir: Luftrausers launch: - config: @@ -118377,14 +115324,14 @@ oslist: macos description: Launch executable: LUFTRAUSERS.app -'233190': +"233190": installDir: Final Exam launch: - config: oslist: windows description: Launch executable: final_exam.exe -'233210': +"233210": installDir: Air Conflicts Vietnam launch: - config: @@ -118410,7 +115357,7 @@ oslist: macos description: Configure executable: Air Conflicts - Vietnam Configuration.app -'233230': +"233230": installDir: Kairo launch: - config: @@ -118425,64 +115372,56 @@ oslist: linux description: Launch Game executable: Kairo -'233250': +"233250": installDir: Planetary Annihilation launch: - - arguments: '--mods-url https://mods.planetaryannihilation.net/' + - arguments: "--mods-url https://mods.planetaryannihilation.net/" config: - osarch: '32' + osarch: "32" oslist: windows description: Launch PA - description_loc: - english: Launch PA - executable: bin_x86\\pa.exe - - arguments: '--mods-url https://mods.planetaryannihilation.net/' + executable: "bin_x86\\\\pa.exe" + - arguments: "--mods-url https://mods.planetaryannihilation.net/" config: oslist: macos description: Launch PA - description_loc: - english: Launch PA executable: PA.app - - arguments: '--mods-url https://mods.planetaryannihilation.net/' + - arguments: "--mods-url https://mods.planetaryannihilation.net/" config: - osarch: '64' + osarch: "64" oslist: linux description: Launch PA - description_loc: - english: Launch PA executable: PA - - arguments: '--mods-url https://mods.planetaryannihilation.net/' + - arguments: "--mods-url https://mods.planetaryannihilation.net/" config: - osarch: '64' + osarch: "64" oslist: windows description: Launch PA (64-bit) - description_loc: - english: Launch PA (64-bit) - executable: bin_x64\\pa.exe -'233270': + executable: "bin_x64\\\\pa.exe" +"233270": installDir: Far Cry 3 Blood Dragon launch: - - arguments: '-uplay_steam_mode' + - arguments: "-uplay_steam_mode" config: oslist: windows description: Launch Blood Dragon executable: bin/FC3BDUpdaterSteam.exe workingdir: bin -'233290': +"233290": installDir: Murdered Soul Suspect launch: - config: oslist: windows description: Launch - executable: Binaries\\Win64\\Murdered.exe - workingdir: Binaries\\Win64 - - arguments: '-SystemSettings=SafeMode' + executable: "Binaries\\\\Win64\\\\Murdered.exe" + workingdir: "Binaries\\\\Win64" + - arguments: "-SystemSettings=SafeMode" config: oslist: windows description: Launch in Safe Mode - executable: Binaries\\Win64\\Murdered.exe - workingdir: Binaries\\Win64 -'233310': + executable: "Binaries\\\\Win64\\\\Murdered.exe" + workingdir: "Binaries\\\\Win64" +"233310": installDir: Avadon 2 launch: - config: @@ -118493,21 +115432,21 @@ oslist: macos description: Launch executable: Avadon 2.app -'233350': +"233350": installDir: Sudeki launch: - config: oslist: windows description: Sudeki Launcher executable: SudekiLauncher.exe -'233370': +"233370": installDir: The Raven launch: - config: oslist: windows description: Launch The Raven executable: launcher/TheRavenLauncher.exe - - arguments: '-launched' + - arguments: "-launched" config: oslist: macos description: Launch The Raven @@ -118522,7 +115461,7 @@ description: Launch The Raven 64bit executable: raven/real_raven_game_64.sh workingdir: raven -'233390': +"233390": installDir: Cart Life launch: - config: @@ -118533,7 +115472,7 @@ oslist: windows description: Settings executable: winsetup.exe -'233410': +"233410": installDir: Final Hours of Tomb Raider launch: - config: @@ -118542,34 +115481,34 @@ - config: oslist: macos executable: Final Hours Of Tomb Raider.app -'233450': +"233450": installDir: Prison Architect launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: Launcher\\dowser.exe + executable: "Launcher\\\\dowser.exe" type: default - config: oslist: macos - executable: Launcher\\dowser + executable: "Launcher\\\\dowser" type: none - - arguments: '-safemode' + - arguments: "-safemode" config: oslist: windows description: Launch in SAFE MODE executable: prison architect.exe type: none - - arguments: '-safemode' + - arguments: "-safemode" config: oslist: macos description: Launch in SAFE MODE executable: Prison Architect.app - config: oslist: linux - executable: Launcher\\dowser + executable: "Launcher\\\\dowser" type: none - - arguments: '-safemode' + - arguments: "-safemode" config: oslist: linux description: Launch in SAFE MODE @@ -118615,7 +115554,7 @@ description: Prison Architect Anniversary - 2018 version executable: PrisonArchitect type: option1 -'233470': +"233470": installDir: Evoland launch: - config: @@ -118630,27 +115569,27 @@ oslist: linux description: Launch executable: Evo32 -'2334780': +"2334780": installDir: CANINE launch: - config: oslist: windows - executable: CANINE v1.2\\CANINE.exe + executable: "CANINE v1.2\\\\CANINE.exe" type: default -'233510': +"233510": installDir: Lunnye Devitsy launch: - description: 2013 Edition executable: Lunnye Devitsy 2013.exe - description: Play Classic (2009) executable: /Bonus/original/lunnye devitsy.exe -'233530': +"233530": installDir: Wake launch: - executable: Wake 2013.exe - description: Play Classic (2009) executable: /Bonus/original/wake.exe -'233550': +"233550": installDir: Another World launch: - config: @@ -118677,10 +115616,10 @@ oslist: macos description: Bonus executable: mac-menubonus.sh -'233610': +"233610": installDir: Distance launch: - - arguments: '-vrmode none' + - arguments: "-vrmode none" config: oslist: windows executable: Distance.exe @@ -118692,31 +115631,31 @@ - config: oslist: linux description: Launch - executable: ./Distance - - arguments: '-vrmode openvr' + executable: "./Distance" + - arguments: "-vrmode openvr" config: oslist: windows executable: Distance.exe type: vr - - arguments: '-vrmode oculus' + - arguments: "-vrmode oculus" config: oslist: windows executable: Distance.exe type: othervr -'233630': +"233630": installDir: Ascend Hand of Kul launch: - config: oslist: windows description: Launch Game Directly - executable: bin\\game.exe + executable: "bin\\\\game.exe" workingdir: bin - config: oslist: windows description: Use Launcher - executable: bin\\launcher\\launcher.exe - workingdir: bin\\launcher -'233700': + executable: "bin\\\\launcher\\\\launcher.exe" + workingdir: "bin\\\\launcher" +"233700": installDir: The Pit launch: - config: @@ -118730,7 +115669,7 @@ oslist: linux description: Launch executable: ThePit -'233720': +"233720": installDir: Surgeon Simulator launch: - config: @@ -118745,7 +115684,7 @@ oslist: linux description: Launch executable: ss2013.bin -'233740': +"233740": installDir: OrganTrailDC launch: - config: @@ -118760,29 +115699,29 @@ oslist: linux description: Launch executable: OrganTrailLinux -'2337630': +"2337630": installDir: AFL 23 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: afl2.exe type: default -'23380': +"23380": installDir: Gyromancer launch: - executable: Gyromancer.exe -'2338140': +"2338140": installDir: Dokapon Kingdom Connect launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: DkkStm.exe type: default nameLocalized: japanese: ドカポンキングダム コネクト -'233840': +"233840": installDir: Worms Clan Wars launch: - config: @@ -118796,16 +115735,16 @@ oslist: linux description: Launch executable: WormsClanWars.bin.x86 -'233860': +"233860": installDir: Kenshi launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch 64-bit (recommended) executable: kenshi_x64.exe - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch 32-bit executable: kenshi_x32.exe @@ -118814,20 +115753,20 @@ description: Modding tool executable: forgotten construction set.exe type: editor -'2338770': +"2338770": installDir: NBA 2K24 launch: - executable: NBA2K24.exe -'2339040': +"2339040": installDir: Landnama launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Landnama.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Landnama.x86_64 type: default @@ -118835,36 +115774,36 @@ oslist: macos executable: Landnama.app type: default -'233980': +"233980": installDir: Unepic launch: - - arguments: '-console' + - arguments: "-console" config: oslist: windows description: Launch with Console executable: unepic.exe - - arguments: '-console' + - arguments: "-console" config: oslist: macos description: Launch executable: Unepic.app - - arguments: '-console' + - arguments: "-console" config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: unepic32s - - arguments: '-console' + - arguments: "-console" config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: unepic64s -'23400': +"23400": installDir: Imperium Romanum launch: - executable: Imperium Romanum.exe -'234000': +"234000": installDir: Superfrog launch: - config: @@ -118879,7 +115818,7 @@ oslist: macos description: Launch executable: Superfrog HD.app -'234060': +"234060": installDir: Timelines - Assault on America launch: - config: @@ -118897,7 +115836,7 @@ description: OSX executable: bin/rts_game_osx workingdir: bin -'234080': +"234080": installDir: CastlevaniaLoS launch: - config: @@ -118905,16 +115844,16 @@ description: Retail version executable: bin/castlevanialosue.exe workingdir: bin -'234140': +"234140": installDir: Mad Max launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: MadMax.exe - config: - osarch: '64' + osarch: "64" oslist: macos executable: Mad Max.app type: none @@ -118922,13 +115861,13 @@ oslist: linux executable: MadMax.sh type: none -'234160': +"234160": installDir: Strike Suit Infinity launch: - description: Launch Game executable: pc/main/Binary/SSZ.exe workingdir: pc/main/Binary -'234190': +"234190": installDir: Receiver launch: - config: @@ -118943,11 +115882,11 @@ oslist: linux description: Launch executable: receiver -'23420': +"23420": installDir: Europa Universalis Rome launch: - executable: RomeGame.exe -'234270': +"234270": installDir: The Pillars of the Earth launch: - config: @@ -118955,22 +115894,22 @@ executable: pillars.exe type: default - config: - osarch: '64' + osarch: "64" oslist: macos executable: The Pillars of the Earth.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: start type: default - config: - osarch: '64' + osarch: "64" oslist: macos executable: The Pillars of the Earth.app/Contents/Applications/visconfig.app type: config - config: - osarch: '64' + osarch: "64" oslist: linux executable: configure type: config @@ -118980,41 +115919,41 @@ type: config - config: betakey: experimental - osarch: '64' + osarch: "64" oslist: windows executable: pillars64.exe type: default -'2342830': +"2342830": installDir: Skedaddling In Egypt launch: - config: oslist: windows executable: Skeddadle.exe type: default -'234290': +"234290": installDir: ZackZero launch: - config: oslist: windows description: Ejecucion del juego executable: ZackZero.exe -'234330': +"234330": installDir: Marvel Puzzle Quest launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Play Marvel Puzzle Quest executable: Binaries/x64/Ship/Marvel Puzzle Quest.exe type: none workingdir: Binaries/x64/Ship/ -'234350': +"234350": installDir: Luxor 2 HD launch: - config: oslist: windows executable: luxor_2_x86.exe -'234370': +"234370": installDir: Shattered Haven launch: - config: @@ -119024,16 +115963,16 @@ oslist: macos executable: ShatteredHaven.app - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: ShatteredHavenLinux.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: ShatteredHavenLinux.x86_64 -'234390': +"234390": installDir: TeleglitchDME launch: - config: @@ -119049,12 +115988,12 @@ oslist: linux description: Launch executable: runme -'2344020': +"2344020": installDir: Shadow Sorcerer launch: - - executable: .\\Launcher\\Launcher.exe + - executable: ".\\\\Launcher\\\\Launcher.exe" type: default -'2344520': +"2344520": nameLocalized: french: Diablo® IV german: Diablo® IV @@ -119068,46 +116007,46 @@ spanish: Diablo® IV tchinese: 《暗黑破壞神® IV》 turkish: Diablo® IV -'234490': +"234490": installDir: Rush Bros launch: - - arguments: '-console' + - arguments: "-console" config: oslist: windows description: Launch with Console executable: Rush Bros.exe - - arguments: '-console' + - arguments: "-console" config: oslist: macos description: Launch with Console executable: Rush Bros.app -'23450': +"23450": installDir: Grand Ages Rome launch: - executable: Rome.exe -'234510': {} -'234530': +"234510": {} +"234530": installDir: War of the Vikings launch: - arguments: start.exe wotv.exe -bundle-dir bundle -eac -force-paradox-os executable: run_game.exe -'23460': +"23460": installDir: Ceville launch: - executable: Ceville.exe -'234630': +"234630": installDir: pCars launch: - - arguments: '-novr' + - arguments: "-novr" config: - osarch: '32' + osarch: "32" oslist: windows description: Launch (32-bit) executable: pCARS.exe type: none - - arguments: '-novr' + - arguments: "-novr" config: - osarch: '64' + osarch: "64" oslist: windows description: Launch (64-bit) executable: pCARS64.exe @@ -119118,7 +116057,7 @@ - description: Project CARS - Oculus Rift executable: pCARS64.exe type: othervr -'234650': +"234650": installDir: Shadowrun Returns launch: - config: @@ -119129,34 +116068,34 @@ oslist: macos description: Launch Game executable: Shadowrun.app/Contents/MacOS/Shadowrun - - arguments: '-logFile output.txt' + - arguments: "-logFile output.txt" config: oslist: linux description: Launch Game executable: Shadowrun -'234670': +"234670": installDir: NARUTO SHIPPUDEN Ultimate Ninja STORM 3 Full Burst launch: - config: oslist: windows - description: 'NARUTO SHIPPUDEN: UNS3 FB' + description: "NARUTO SHIPPUDEN: UNS3 FB" executable: NS3FB_launcher.exe type: option1 - config: oslist: windows - ownsdlc: '543890' - description: 'HD - NARUTO SHIPPUDEN: UNS3 FB' + ownsdlc: "543890" + description: "HD - NARUTO SHIPPUDEN: UNS3 FB" executable: dlc/NSUNS3.exe type: option1 workingdir: dlc - config: betakey: ns3_debug oslist: windows - description: 'Debug HD NARUTO SHIPPUDEN: Ultimate Ninja STORM 3 Full Burst' + description: "Debug HD NARUTO SHIPPUDEN: Ultimate Ninja STORM 3 Full Burst" executable: dlc_debug/NSUNS3.exe type: option1 workingdir: dlc_debug -'234710': +"234710": installDir: Poker Night 2 launch: - config: @@ -119165,34 +116104,34 @@ - config: oslist: macos executable: PokerNight2.app -'23490': +"23490": installDir: Tropico 3 launch: - executable: tropico3.exe -'234900': +"234900": installDir: Anodyne launch: - config: oslist: windows description: Launch with Console executable: Anodyne.exe - workingdir: . + workingdir: "." - config: oslist: linux description: Launch with Console executable: run.sh - workingdir: . + workingdir: "." - config: oslist: macos description: Launch with Console executable: Contents/MacOS/Anodyne - workingdir: . + workingdir: "." nameLocalized: japanese: Anodyne (アノダイン) -'2349140': +"2349140": nameLocalized: japanese: この素晴らしい世界に祝福を! この欲望の衣装に寵愛を! -'234920': +"234920": installDir: Dyscourse launch: - config: @@ -119207,49 +116146,49 @@ oslist: linux description: Launch Dyscourse executable: Dyscourse.x86 -'234940': +"234940": installDir: The39Steps launch: - - arguments: '-console' + - arguments: "-console" config: oslist: windows description: Launch with Console executable: 39steps.exe - - arguments: '-console' + - arguments: "-console" config: oslist: macos description: Launch with Console executable: 39Steps.app - - arguments: '-console' + - arguments: "-console" config: oslist: linux description: Launch with Console executable: 39stepslinux.x86 -'23500': +"23500": installDir: Puzzle Quest Galactrix launch: - executable: Galactrix.exe -'2350520': +"2350520": installDir: DragonStrike launch: - - executable: .\\Launcher\\Launcher.exe + - executable: ".\\\\Launcher\\\\Launcher.exe" type: default -'2350530': +"2350530": installDir: Fantasy Empires launch: - - executable: .\\Launcher\\Launcher.exe + - executable: ".\\\\Launcher\\\\Launcher.exe" type: default -'2350540': +"2350540": installDir: DeathKeep launch: - - executable: .\\Launcher\\Launcher.exe + - executable: ".\\\\Launcher\\\\Launcher.exe" type: default -'2350550': +"2350550": installDir: Spelljammer Pirates of Realmspace launch: - - executable: .\\Launcher\\Launcher.exe + - executable: ".\\\\Launcher\\\\Launcher.exe" type: default -'235070': +"235070": installDir: BadBots launch: - config: @@ -119258,19 +116197,19 @@ - config: oslist: macos executable: BadBots.app -'2350720': +"2350720": installDir: Tower of Boin launch: - executable: Tower Of BOIN.exe -'235210': +"235210": installDir: Strider launch: - config: oslist: windows description: Launch executable: Strider.exe -'2352230': {} -'235250': +"2352230": {} +"235250": installDir: SanctumTD launch: - config: @@ -119281,48 +116220,48 @@ oslist: macos description: Launch executable: Super Sanctum TD.app -'23530': +"23530": installDir: Earth Defense Force Insect Armageddon launch: - executable: EDF-IA.exe -'235320': +"235320": installDir: Original War launch: - - arguments: '-launch' + - arguments: "-launch" description: Play Original War executable: owar.exe type: none - description: Settings executable: Owar.EXE type: none -'2353280': +"2353280": installDir: Fantavision202X launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: fv.exe type: default - workingdir: fv\\Binaries\\Win64\\ - - arguments: '-SteamVR' + workingdir: "fv\\\\Binaries\\\\Win64\\\\" + - arguments: "-SteamVR" config: - osarch: '64' + osarch: "64" oslist: windows executable: fv.exe type: vr - workingdir: fv\\Binaries\\Win64\\ + workingdir: "fv\\\\Binaries\\\\Win64\\\\" nameLocalized: english: FANTAVISION 202X japanese: ファンタビジョン202X -'235340': +"235340": installDir: PrimeWorld launch: - - arguments: '-steam' + - arguments: "-steam" config: oslist: windows description: Launch executable: PWLauncher.exe -'235360': +"235360": installDir: Prime World Defenders launch: - config: @@ -119333,10 +116272,10 @@ oslist: macos description: Launch OSX executable: pw_defenders.app -'235380': +"235380": installDir: Blitzkrieg3 launch: - - arguments: '-force-gfx-direct' + - arguments: "-force-gfx-direct" config: oslist: macos description: Launch @@ -119347,7 +116286,7 @@ description: Blitzkrieg 3 executable: B3.exe type: none -'235400': +"235400": installDir: Kings Bounty Legions launch: - config: @@ -119356,75 +116295,75 @@ - config: oslist: macos executable: KingsBounty.app -'235460': +"235460": installDir: METAL GEAR RISING REVENGEANCE launch: - config: oslist: windows description: Launch executable: METAL GEAR RISING REVENGEANCE.exe - - arguments: '-psn' + - arguments: "-psn" config: oslist: macos description: Launch executable: /Metal Gear Rising - Revengeance.app/Contents/MacOS/MetalGearRisingRevengeance type: none -'2354600': +"2354600": installDir: Renfield launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Renfield.exe type: default nameLocalized: schinese: 雷恩菲尔德:赋血古拉口 -'235520': +"235520": installDir: TheWhiteLaboratory launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: TheWhiteLaboratory_x86.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: TheWhiteLaboratory_x64.exe type: default - - arguments: '-sel' + - arguments: "-sel" config: - osarch: '32' + osarch: "32" oslist: windows executable: TheWhiteLaboratory_x86.exe type: config - - arguments: '-sel' + - arguments: "-sel" config: - osarch: '64' + osarch: "64" oslist: windows executable: TheWhiteLaboratory_x64.exe type: config -'235540': +"235540": installDir: Warhammer End Times Vermintide launch: - description: Launch Normal Version - executable: launcher\\launcher.exe + executable: "launcher\\\\launcher.exe" type: default - workingdir: launcher\\ - - arguments: '-bundle-dir ..\\bundle -ini settings' + workingdir: "launcher\\\\" + - arguments: "-bundle-dir ..\\\\bundle -ini settings" description: Run without Launcher (NOT OFFICIALLY SUPPORTED) - executable: binaries\\vermintide.exe + executable: "binaries\\\\vermintide.exe" type: none - workingdir: binaries\\ -'235600': - installDir: Tom Clancy's Splinter Cell Blacklist + workingdir: "binaries\\\\" +"235600": + installDir: "Tom Clancy's Splinter Cell Blacklist" launch: - - arguments: ' -uplay_steam_mode' + - arguments: " -uplay_steam_mode" config: oslist: windows - description: Launch Tom Clancy's Splinter Cell® Blacklist™ + description: "Launch Tom Clancy's Splinter Cell® Blacklist™" executable: Blacklist_Launcher.exe -'235620': +"235620": installDir: SmallWorld2 launch: - arguments: steam @@ -119432,9 +116371,9 @@ betakey: version_2.5 oslist: windows description: Small World 2.5 - executable: SW2Executable.app\\Contents\\Win32\\SW2Executable.exe + executable: "SW2Executable.app\\\\Contents\\\\Win32\\\\SW2Executable.exe" type: option1 - workingdir: SW2Executable.app\\Contents\\Win32 + workingdir: "SW2Executable.app\\\\Contents\\\\Win32" - arguments: steam config: betakey: version_2.5 @@ -119458,7 +116397,7 @@ description: Small World executable: SmallWorld.exe type: default -'235660': +"235660": installDir: Eador. Genesis launch: - description: Launch Game @@ -119466,50 +116405,42 @@ - arguments: f description: Launch Game (fullscreen mode) executable: Eador.exe -'235720': +"235720": installDir: Cubetractor launch: - config: oslist: windows description: Launch executable: Cubetractor.exe - workingdir: . + workingdir: "." - config: oslist: macos description: Launch executable: Cubetractor.app - workingdir: . -'2357570': + workingdir: "." +"2357570": installDir: Overwatch launch: - executable: Overwatch.exe - - arguments: '--BNetEnabled --cluster proac --bnetserver us.actual.battle.net:1119' + - arguments: "--BNetEnabled --cluster proac --bnetserver us.actual.battle.net:1119" config: betakey: review description: Review Branch Args - description_loc: - english: Review Branch Args executable: Overwatch.exe - - arguments: '--BNetEnabled --BNetServer st1.bgs.battle.net:1119 --cluster pro_haze' + - arguments: "--BNetEnabled --BNetServer st1.bgs.battle.net:1119 --cluster pro_haze" config: betakey: dev1 description: Dev1 branch args - description_loc: - english: Dev1 branch args executable: Overwatch.exe - - arguments: '--BNetEnabled --BNetServer st1.bgs.battle.net:1119 --cluster pro_haze' + - arguments: "--BNetEnabled --BNetServer st1.bgs.battle.net:1119 --cluster pro_haze" config: betakey: local description: local branch args - description_loc: - english: local branch args executable: Overwatch.exe - - arguments: '--BNetEnabled --BNetServer test.actual.battle.net:1119 --cluster ProDev7' + - arguments: "--BNetEnabled --BNetServer test.actual.battle.net:1119 --cluster ProDev7" config: betakey: dev2 description: Dev2 branch args - description_loc: - english: Dev2 branch args executable: Overwatch.exe nameLocalized: brazilian: Overwatch® 2 @@ -119527,10 +116458,10 @@ tchinese: 《鬥陣特攻® 2》 thai: Overwatch® 2 turkish: Overwatch® 2 -'235760': +"235760": installDir: Young Justice Legacy launch: - - arguments: '-s' + - arguments: "-s" config: oslist: windows description: Launch Game @@ -119539,15 +116470,15 @@ oslist: windows description: Launch Game Configuration Tool executable: Launcher.exe -'235780': +"235780": installDir: MINERVA launch: - - arguments: '-game metastasis' + - arguments: "-game metastasis" config: oslist: windows description: Launch executable: hl2.exe -'235800': +"235800": installDir: Audiosurf 2 launch: - config: @@ -119559,42 +116490,42 @@ description: Launch executable: Audiosurf2.app - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: launch.sh -'235820': +"235820": installDir: Element4l launch: - - arguments: '-console' + - arguments: "-console" config: oslist: macos description: Launch with Console executable: element4l.app workingdir: Contents - - arguments: '-console' + - arguments: "-console" config: oslist: windows description: Launch with Console executable: element4l.exe - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: element4l.x86_64 - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: element4l.x86 -'2358660': {} -'2358720': +"2358660": {} +"2358720": nameLocalized: japanese: 黒神話:悟空 - koreana: '검은 신화: 오공' + koreana: "검은 신화: 오공" schinese: 黑神话:悟空 tchinese: 黑神話:悟空 -'235980': +"235980": installDir: Tetrobot and Co launch: - config: @@ -119609,12 +116540,12 @@ oslist: linux description: Default Launch executable: Tetrobot and Co.x86 -'2360': +"2360": installDir: Hexen launch: - - arguments: base\\hexen.exe -conf base\\hexen.conf -fullscreen -exit - executable: base\\dosbox.exe -'23600': + - arguments: "base\\\\hexen.exe -conf base\\\\hexen.conf -fullscreen -exit" + executable: "base\\\\dosbox.exe" +"23600": installDir: Depths of Peril launch: - config: @@ -119627,36 +116558,34 @@ oslist: linux description: Launch executable: DepthsOfPeril -'2360020': +"2360020": installDir: Kao the Kangaroo (2000 re-release) launch: - executable: kao.exe type: default - description: Settings - description_loc: - english: Settings executable: Configuration.exe type: config -'2360030': +"2360030": installDir: Kao the Kangaroo Mystery of the Volcano launch: - executable: kao_tw.exe type: default -'236010': +"236010": installDir: Bloxitivity launch: - config: oslist: windows executable: Bloxitivity.exe type: default -'2360690': +"2360690": installDir: Pixel Ripped 1978 launch: - config: oslist: windows executable: PixelRipped1978.exe type: vr -'236090': +"236090": installDir: Dust An Elysian Tail launch: - config: @@ -119666,12 +116595,12 @@ - config: oslist: linux description: Launch - executable: ./DustAET + executable: "./DustAET" - config: oslist: macos description: Launch executable: DustAET.app -'236110': +"236110": installDir: Dungeon Defenders 2 launch: - config: @@ -119686,14 +116615,14 @@ oslist: linux description: Launch executable: LinuxDownloadLauncher -'236130': +"236130": installDir: Horizon launch: - config: oslist: windows description: Horizon Launcher executable: launcher.exe -'236150': +"236150": installDir: Starpoint Gemini 2 launch: - config: @@ -119707,119 +116636,99 @@ description: Launch in Windows 7 compatibility mode executable: StarpointGemini2_win7.exe type: none -'2361560': {} -'2362300': +"2361560": {} +"2362300": installDir: Train Sim World 4 launch: - config: oslist: windows - executable: WindowsNoEditor\\TrainSimWorld.exe -'2362420': + executable: "WindowsNoEditor\\\\TrainSimWorld.exe" +"2362420": installDir: Mass Effect 2 (2010) Edition launch: - - executable: 'link2ea://launchgame/2362420?platform=steam&theme=me2' -'2362740': + - executable: "link2ea://launchgame/2362420?platform=steam&theme=me2" +"2362740": installDir: POOSTALL Royale launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Poostall_Royale.exe type: default -'236290': +"236290": installDir: Cranky Cat launch: - config: oslist: windows description: Basic Launch executable: CrankyCat.exe -'236370': +"236370": installDir: Interstellar Marines launch: - arguments: masterserver=68.183.59.221 ecschatserver=68.183.59.221 config: oslist: macos description: Launch Interstellar Marines - description_loc: - english: Launch Interstellar Marines executable: Interstellar Marines.app type: none - arguments: masterserver=68.183.59.221 ecschatserver=68.183.59.221 config: oslist: windows description: Launch Interstellar Marines - description_loc: - english: Launch Interstellar Marines executable: InterstellarMarines.exe type: none - arguments: masterserver=68.183.59.221 ecschatserver=68.183.59.221 config: - osarch: '32' + osarch: "32" oslist: linux description: Launch Interstellar Marines - description_loc: - english: Launch Interstellar Marines executable: InterstellarMarines.x86 type: none - arguments: masterserver=68.183.59.221 ecschatserver=68.183.59.221 config: - osarch: '64' + osarch: "64" oslist: linux description: Launch Interstellar Marines - description_loc: - english: Launch Interstellar Marines executable: InterstellarMarines.x64 type: none -'236390': +"236390": installDir: War Thunder launch: - config: betakey: DISABLED oslist: windows description: Launcher - description_loc: - english: Launcher executable: launcher.exe type: default - config: oslist: macos description: Launcher - description_loc: - english: Launcher executable: WarThunderLauncher.app type: none - config: - osarch: '64' + osarch: "64" oslist: linux - steamdeck: '0' description: Launcher - description_loc: - english: Launcher executable: launcher type: config - - arguments: '-eac_dir ../EasyAntiCheat -skip_pkg_validation -forcestart -config:gameplay/enableVR:b=no' + - arguments: "-eac_dir ../EasyAntiCheat -skip_pkg_validation -forcestart -config:gameplay/enableVR:b=no" config: - osarch: '64' + osarch: "64" oslist: windows description: Launch Game - description_loc: - english: Launch Game executable: eac_wt_mlauncher.exe type: default - - arguments: '-eac_dir ../EasyAntiCheat -eac_launcher_settings Settings32.json -forcestart -skip_pkg_validation' + - arguments: "-eac_dir ../EasyAntiCheat -eac_launcher_settings Settings32.json -forcestart -skip_pkg_validation" config: - osarch: '32' + osarch: "32" oslist: windows - executable: win32\\eac_launcher.exe + executable: "win32\\\\eac_launcher.exe" type: default - arguments: ignoreGameUpdate config: betakey: release_candidate oslist: windows description: Configurator - description_loc: - english: Configurator - russian: Конфигуратор executable: launcher.exe type: config - arguments: force_timestamp_check @@ -119827,128 +116736,99 @@ betakey: DISABLED oslist: windows description: Update Game Manually - description_loc: - english: Update Game Manually - russian: Принудительное обновление executable: launcher.exe type: config - - arguments: '-eac_dir ../EasyAntiCheat -eac_launcher_settings Settings64.json -forcestart -skip_pkg_validation' + - arguments: "-eac_dir ../EasyAntiCheat -eac_launcher_settings Settings64.json -forcestart -skip_pkg_validation" config: betakey: DISABLED - osarch: '64' + osarch: "64" oslist: windows description: Launch Game - description_loc: - english: Launch Game - russian: Запустить игру - executable: win32\\eac_launcher.exe + executable: "win32\\\\eac_launcher.exe" type: default - - arguments: '-eac_dir ../EasyAntiCheat -eac_launcher_settings Settings32.json -forcestart -skip_pkg_validation' + - arguments: "-eac_dir ../EasyAntiCheat -eac_launcher_settings Settings32.json -forcestart -skip_pkg_validation" config: betakey: DISABLED - osarch: '64' + osarch: "64" oslist: windows description: Play War Thunder (32 bit version) - description_loc: - czech: Play War Thunder (32 bit version) - english: Play War Thunder (32 bit version) - french: Play War Thunder (32 bit version) - german: Spielen Sie War Thunder (32 bit version) - hungarian: Play War Thunder (32 bit version) - italian: Play War Thunder (32 bit version) - japanese: Play War Thunder (32 bit version) - koreana: Play War Thunder (32 bit version) - polish: Play War Thunder (32 bit version) - portuguese: Play War Thunder (32 bit version) - russian: Запустить War Thunder (32 битная версия) - schinese: Play War Thunder (32 bit version) - tchinese: Play War Thunder (32 bit version) - ukrainian: Играть War Thunder (32 битная версия) - vietnamese: Play War Thunder (32 bit version) - executable: win32\\eac_launcher.exe + executable: "win32\\\\eac_launcher.exe" type: none - arguments: force_timestamp_check config: oslist: windows - description: ' Manual Game Update' - description_loc: - english: ' Manual Game Update' - russian: Принудительное обновление игры + description: " Manual Game Update" executable: launcher.exe type: config - - arguments: '-eac_dir ../EasyAntiCheat -skip_pkg_validation -forcestart -config:gameplay/enableVR:b=yes' + - arguments: "-eac_dir ../EasyAntiCheat -skip_pkg_validation -forcestart -config:gameplay/enableVR:b=yes" config: - osarch: '64' + osarch: "64" oslist: windows - description_loc: - russian: Режим ВР executable: eac_wt_mlauncher.exe type: vr - - arguments: '-skip_pkg_validation -forcestart' + - arguments: "-skip_pkg_validation -forcestart" config: - osarch: '64' + osarch: "64" oslist: linux description: Launch Game - description_loc: - english: Launch Game executable: linux64/aces type: default -'236430': +"236430": installDir: Dark Souls II launch: - description: Launch executable: Game/DarkSoulsII.exe workingdir: Game -'236450': +"236450": installDir: PAC-MAN Championship Edition DX+ launch: - config: oslist: windows description: PAC-MAN Championship Edition DX+ executable: PAC-MAN.exe -'236470': +"236470": installDir: Pac-Man Museum launch: - config: oslist: windows description: PAC-MAN MUSEUM executable: PACMuseum.exe -'236490': +"236490": installDir: Hexodius launch: - config: oslist: windows description: Launch executable: hexodius.exe - workingdir: . -'236510': + workingdir: "." +"236510": installDir: Takedown Red Sabre Early Access launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch Takedown 64bit - executable: Binaries\\Win64\\TakedownGame-Win64-Shipping.exe - workingdir: Binaries\\Win64\\ + executable: "Binaries\\\\Win64\\\\TakedownGame-Win64-Shipping.exe" + workingdir: "Binaries\\\\Win64\\\\" - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch Takedown 32bit - executable: Binaries\\Win32\\TakedownGame-Win32-Shipping.exe - workingdir: Binaries\\Win32\\ -'236530': + executable: "Binaries\\\\Win32\\\\TakedownGame-Win32-Shipping.exe" + workingdir: "Binaries\\\\Win32\\\\" +"236530": installDir: Hot Wheels WBD launch: - description: Normal Game Launch executable: game.exe -'2365810': +"2365810": installDir: Pseudoregalia launch: - config: oslist: windows executable: pseudoregalia.exe type: default -'236690': +"236690": installDir: Blood Bowl 2 launch: - config: @@ -119967,10 +116847,10 @@ type: editor - config: oslist: windows - description: 'Blood Bowl: Death Zone' + description: "Blood Bowl: Death Zone" executable: launcher.bat type: none -'236730': +"236730": installDir: Anomaly 2 launch: - config: @@ -119982,126 +116862,90 @@ - config: oslist: macos executable: Anomaly 2.app -'2367480': {} -'236790': +"2367480": {} +"236790": installDir: Agricultural Simulator 2013 launch: - config: oslist: windows description: Normal launch executable: agrarsimulator2013.exe -'236850': +"236850": installDir: Europa Universalis IV launch: - config: - betakey: >- - public atlantis_rising_beta subscription 1.29.0 1.29.6 1.30.3 1.30.4 1.30.6 1.31.0 1.31.1 1.31.2 1.31.3 1.31.4 - 1.31.5 1.31.6 1.32.0 1.32.1 1.32.2 1.33.2 - osarch: '64' + betakey: public atlantis_rising_beta subscription 1.29.0 1.29.6 1.30.3 1.30.4 1.30.6 1.31.0 1.31.1 1.31.2 1.31.3 1.31.4 1.31.5 1.31.6 1.32.0 1.32.1 1.32.2 1.33.2 + osarch: "64" oslist: windows executable: dowser.exe type: default - config: - betakey: >- - public atlantis_rising_beta subscription 1.29.0 1.29.6 1.30.3 1.30.4 1.30.6 1.31.0 1.31.1 1.31.2 1.31.3 1.31.4 - 1.31.5 1.31.6 1.32.0 1.32.1 1.32.2 1.33.2 + betakey: public atlantis_rising_beta subscription 1.29.0 1.29.6 1.30.3 1.30.4 1.30.6 1.31.0 1.31.1 1.31.2 1.31.3 1.31.4 1.31.5 1.31.6 1.32.0 1.32.1 1.32.2 1.33.2 oslist: macos executable: dowser type: default - config: - betakey: >- - public atlantis_rising_beta subscription 1.29.0 1.29.6 1.30.3 1.30.4 1.30.6 1.31.0 1.31.1 1.31.2 1.31.3 1.31.4 - 1.31.5 1.31.6 1.32.0 1.32.1 1.32.2 1.33.2 - osarch: '64' + betakey: public atlantis_rising_beta subscription 1.29.0 1.29.6 1.30.3 1.30.4 1.30.6 1.31.0 1.31.1 1.31.2 1.31.3 1.31.4 1.31.5 1.31.6 1.32.0 1.32.1 1.32.2 1.33.2 + osarch: "64" oslist: linux executable: dowser type: default - config: - betakey: >- - 1.10.1 1.11.4 1.12.2 1.13.2 1.14.4 1.15.1 1.16.3 1.17.1 1.18.4 1.19.2 1.20.1 1.21.1 1.22.2 1.23.1 1.24.1 - 1.25.1 1.26.1 1.27.2 1.28.3 1.4.1 1.5.1 1.6.2 1.7.3 1.8.1 1.9.2 - osarch: '32' + betakey: 1.10.1 1.11.4 1.12.2 1.13.2 1.14.4 1.15.1 1.16.3 1.17.1 1.18.4 1.19.2 1.20.1 1.21.1 1.22.2 1.23.1 1.24.1 1.25.1 1.26.1 1.27.2 1.28.3 1.4.1 1.5.1 1.6.2 1.7.3 1.8.1 1.9.2 + osarch: "32" oslist: windows executable: eu4.exe type: default - config: - betakey: >- - 1.10.1 1.11.4 1.12.2 1.13.2 1.14.4 1.15.1 1.16.3 1.17.1 1.18.4 1.19.2 1.20.1 1.21.1 1.22.2 1.23.1 1.24.1 - 1.25.1 1.26.1 1.27.2 1.28.3 1.4.1 1.5.1 1.6.2 1.7.3 1.8.1 1.9.2 + betakey: 1.10.1 1.11.4 1.12.2 1.13.2 1.14.4 1.15.1 1.16.3 1.17.1 1.18.4 1.19.2 1.20.1 1.21.1 1.22.2 1.23.1 1.24.1 1.25.1 1.26.1 1.27.2 1.28.3 1.4.1 1.5.1 1.6.2 1.7.3 1.8.1 1.9.2 oslist: macos executable: eu4.app type: default - config: - betakey: >- - 1.10.1 1.11.4 1.12.2 1.13.2 1.14.4 1.15.1 1.16.3 1.17.1 1.18.4 1.19.2 1.20.1 1.21.1 1.22.2 1.23.1 1.24.1 - 1.25.1 1.26.1 1.27.2 1.28.3 1.4.1 1.5.1 1.6.2 1.7.3 1.8.1 1.9.2 - osarch: '32' + betakey: 1.10.1 1.11.4 1.12.2 1.13.2 1.14.4 1.15.1 1.16.3 1.17.1 1.18.4 1.19.2 1.20.1 1.21.1 1.22.2 1.23.1 1.24.1 1.25.1 1.26.1 1.27.2 1.28.3 1.4.1 1.5.1 1.6.2 1.7.3 1.8.1 1.9.2 + osarch: "32" oslist: linux executable: eu4 type: default - - arguments: '-steammp' + - arguments: "-steammp" config: - betakey: >- - public atlantis_rising_beta subscription 1.29.0 1.29.6 1.30.3 1.30.4 1.30.6 1.31.0 1.31.1 1.31.2 1.31.3 1.31.4 - 1.31.5 1.31.6 1.32.0 1.32.1 1.32.2 1.33.2 + betakey: public atlantis_rising_beta subscription 1.29.0 1.29.6 1.30.3 1.30.4 1.30.6 1.31.0 1.31.1 1.31.2 1.31.3 1.31.4 1.31.5 1.31.6 1.32.0 1.32.1 1.32.2 1.33.2 oslist: windows description: Steam Multiplayer - description_loc: - english: Steam Multiplayer executable: dowser.exe - - arguments: '-nakamamp' + - arguments: "-nakamamp" config: - betakey: >- - public atlantis_rising_beta subscription 1.29.0 1.29.6 1.30.3 1.30.4 1.30.6 1.31.0 1.31.1 1.31.2 1.31.3 1.31.4 - 1.31.5 1.31.6 1.32.0 1.32.1 1.32.2 1.33.2 + betakey: public atlantis_rising_beta subscription 1.29.0 1.29.6 1.30.3 1.30.4 1.30.6 1.31.0 1.31.1 1.31.2 1.31.3 1.31.4 1.31.5 1.31.6 1.32.0 1.32.1 1.32.2 1.33.2 oslist: windows description: Nakama Crossplay Multiplayer - description_loc: - english: Nakama Crossplay Multiplayer executable: dowser.exe - - arguments: '-steammp' + - arguments: "-steammp" config: - betakey: >- - public atlantis_rising_beta subscription 1.29.0 1.29.6 1.30.3 1.30.4 1.30.6 1.31.0 1.31.1 1.31.2 1.31.3 1.31.4 - 1.31.5 1.31.6 1.32.0 1.32.1 1.32.2 1.33.2 + betakey: public atlantis_rising_beta subscription 1.29.0 1.29.6 1.30.3 1.30.4 1.30.6 1.31.0 1.31.1 1.31.2 1.31.3 1.31.4 1.31.5 1.31.6 1.32.0 1.32.1 1.32.2 1.33.2 oslist: macos description: Steam Multiplayer - description_loc: - english: Steam Multiplayer executable: dowser - - arguments: '-nakamamp' + - arguments: "-nakamamp" config: - betakey: >- - public atlantis_rising_beta subscription 1.29.0 1.29.6 1.30.3 1.30.4 1.30.6 1.31.0 1.31.1 1.31.2 1.31.3 1.31.4 - 1.31.5 1.31.6 1.32.0 1.32.1 1.32.2 1.33.2 + betakey: public atlantis_rising_beta subscription 1.29.0 1.29.6 1.30.3 1.30.4 1.30.6 1.31.0 1.31.1 1.31.2 1.31.3 1.31.4 1.31.5 1.31.6 1.32.0 1.32.1 1.32.2 1.33.2 oslist: macos description: Nakama Crossplay Multiplayer - description_loc: - english: Nakama Crossplay Multiplayer executable: dowser - - arguments: '-steammp' + - arguments: "-steammp" config: - betakey: >- - public atlantis_rising_beta subscription 1.29.0 1.29.6 1.30.3 1.30.4 1.30.6 1.31.0 1.31.1 1.31.2 1.31.3 1.31.4 - 1.31.5 1.31.6 1.32.0 1.32.1 1.32.2 1.33.2 - osarch: '64' + betakey: public atlantis_rising_beta subscription 1.29.0 1.29.6 1.30.3 1.30.4 1.30.6 1.31.0 1.31.1 1.31.2 1.31.3 1.31.4 1.31.5 1.31.6 1.32.0 1.32.1 1.32.2 1.33.2 + osarch: "64" oslist: linux description: Steam Multiplayer - description_loc: - english: Steam Multiplayer executable: dowser - - arguments: '-nakamamp' + - arguments: "-nakamamp" config: - betakey: >- - public atlantis_rising_beta subscription 1.29.0 1.29.6 1.30.3 1.30.4 1.30.6 1.31.0 1.31.1 1.31.2 1.31.3 1.31.4 - 1.31.5 1.31.6 1.32.0 1.32.1 1.32.2 1.33.2 - osarch: '64' + betakey: public atlantis_rising_beta subscription 1.29.0 1.29.6 1.30.3 1.30.4 1.30.6 1.31.0 1.31.1 1.31.2 1.31.3 1.31.4 1.31.5 1.31.6 1.32.0 1.32.1 1.32.2 1.33.2 + osarch: "64" oslist: linux description: Nakama Crossplay Multiplayer - description_loc: - english: Nakama Crossplay Multiplayer executable: dowser -'236870': +"236870": installDir: Hitman™ launch: - config: @@ -120116,7 +116960,7 @@ oslist: macos executable: Hitman.app type: none -'236930': +"236930": installDir: Blackwell Epiphany launch: - config: @@ -120126,58 +116970,48 @@ - config: oslist: windows description: Configure - description_loc: - english: Configure executable: winsetup.exe type: none - config: - osarch: '64' + osarch: "64" oslist: linux - description: 'Launch [64 bit]' - description_loc: - english: 'Launch [64 bit]' - executable: ./Start.sh + description: "Launch [64 bit]" + executable: "./Start.sh" type: default - config: - osarch: '32' + osarch: "32" oslist: linux - description: 'Launch [32 bit]' - description_loc: - english: 'Launch [32 bit]' - executable: ./Start.sh + description: "Launch [32 bit]" + executable: "./Start.sh" type: default - - arguments: '--windowed' + - arguments: "--windowed" config: oslist: linux description: windowed - description_loc: - english: windowed - executable: ./Start.sh + executable: "./Start.sh" type: option1 - config: oslist: macos description: Launch - description_loc: - english: Launch executable: Epiphany.app/Contents/MacOS/AGS type: default -'2369390': +"2369390": installDir: Far Cry 6 launch: - - arguments: '-uplay_steam_mode' - executable: bin\\FarCry6.exe -'236970': + - arguments: "-uplay_steam_mode" + executable: "bin\\\\FarCry6.exe" +"236970": installDir: Jack Keane 2 launch: - config: oslist: windows description: Launch Jack Keane 2 executable: JackKeane2.exe -'23700': +"23700": installDir: Puzzle Kingdoms launch: - executable: Kingdoms.exe -'237110': +"237110": installDir: MortalKombat_KompleteEdition launch: - description: Launch @@ -120186,31 +117020,25 @@ - description: Run Advanced Options Configuration executable: DiscContentPC/MKLauncher.exe workingdir: DiscContentPC -'2371630': +"2371630": installDir: SAOIF launch: - config: oslist: windows executable: SAOIF.exe type: default - workingdir: ./ + workingdir: "./" - config: - betakey: 'qa-debug,qa-release,dev-debug,development' + betakey: "qa-debug,qa-release,dev-debug,development" oslist: windows description: 日本版 - description_loc: - english: 日本版 - japanese: 日本版 executable: jp/SAOIF.exe type: default workingdir: jp/ - config: - betakey: 'qa-debug-row,qa-release-row,dev-release,development' + betakey: "qa-debug-row,qa-release-row,dev-release,development" oslist: windows description: 海外版 - description_loc: - english: 海外版 - japanese: 海外版 executable: gl/SAOIF.exe type: default workingdir: gl/ @@ -120218,14 +117046,14 @@ japanese: ソードアート・オンライン インテグラル・ファクター koreana: 소드 아트 온라인 인테그럴 팩터 tchinese: 刀劍神域 關鍵鬥士 -'237310': +"237310": installDir: Elsword launch: - config: oslist: windows description: Launch executable: ESSTEAM.exe -'237350': +"237350": installDir: Frozen Endzone launch: - config: @@ -120240,7 +117068,7 @@ oslist: linux description: Launch executable: runCortex.sh -'237430': +"237430": installDir: Expeditions Conquistador launch: - config: @@ -120257,39 +117085,39 @@ executable: ExpeditionsConquistador.x86 - config: oslist: linux - description: 'Play Expeditions: Conquistador - 64 bits' + description: "Play Expeditions: Conquistador - 64 bits" executable: ExpeditionsConquistador.x86_64 -'237470': +"237470": installDir: BattleWorldsKronos launch: - - arguments: '-launched' + - arguments: "-launched" config: oslist: windows - description: 'Launch Battle Worlds: Kronos' + description: "Launch Battle Worlds: Kronos" executable: BattleWorldsKronos.exe - - arguments: '-launched' + - arguments: "-launched" config: oslist: macos - description: 'Launch Battle Worlds: Kronos' + description: "Launch Battle Worlds: Kronos" executable: BattleWorldsKronos.app - - arguments: '-launched' + - arguments: "-launched" config: - osarch: '64' + osarch: "64" oslist: linux - description: 'Launch Battle Worlds: Kronos' + description: "Launch Battle Worlds: Kronos" executable: BattleWorldsKronos.x86_64 - - arguments: '-launched' + - arguments: "-launched" config: - osarch: '32' + osarch: "32" oslist: linux - description: 'Launch Battle Worlds: Kronos' + description: "Launch Battle Worlds: Kronos" executable: BattleWorldsKronos.x86.sh - config: oslist: windows description: Launch Battleworlds Builder executable: Battleworlds Builder/BattleworldsBuilder.exe workingdir: Battleworlds Builder -'237550': +"237550": installDir: Realms of Arkania launch: - config: @@ -120300,37 +117128,37 @@ oslist: macos description: Launch executable: schick.app - - arguments: '-logfile output_log.txt' + - arguments: "-logfile output_log.txt" config: oslist: linux description: Launch x86 executable: schick.x86 - - arguments: '-force-d3d9' + - arguments: "-force-d3d9" config: oslist: windows description: Launch compatible mode executable: schick.exe - - arguments: '-logfile output_log.txt' + - arguments: "-logfile output_log.txt" config: oslist: linux description: Launch (Betabranch only) executable: schickhd - config: oslist: windows - description: lunatic's Mod Manager + description: "lunatic's Mod Manager" executable: Blade of Destiny HD Mod Control.exe -'2375550': +"2375550": nameLocalized: japanese: 龍が如く7外伝 名を消した男 koreana: 용과 같이7 외전 이름을 지운 자 schinese: 人中之龙7外传 无名之龙 tchinese: 人中之龍7外傳 英雄無名 -'237570': - installDir: Penny Arcade's On the Rain-Slick Precipice of Darkness 4 +"237570": + installDir: "Penny Arcade's On the Rain-Slick Precipice of Darkness 4" launch: - description: Launch executable: Rainslick4.exe -'237590': +"237590": installDir: RIPD The Game launch: - config: @@ -120338,18 +117166,18 @@ description: Launch the Game executable: bin/RIPD.exe workingdir: bin -'237630': +"237630": installDir: DuckTales Remastered launch: - description: Launch Game - executable: Executable\\DuckTales.exe - workingdir: . -'237740': + executable: "Executable\\\\DuckTales.exe" + workingdir: "." +"237740": installDir: Angry Video Game Nerd Adventures launch: - description: Launch executable: avgn.exe -'237760': +"237760": installDir: Intake launch: - config: @@ -120360,11 +117188,11 @@ oslist: macos description: Launch executable: Intake.app -'2377660': - installDir: Jane Austen's 8-bit Adventure +"2377660": + installDir: "Jane Austen's 8-bit Adventure" launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: jane.exe type: default @@ -120373,11 +117201,11 @@ executable: Jane.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: jane type: default -'237850': +"237850": installDir: Dreamfall Chapters launch: - config: @@ -120385,16 +117213,16 @@ description: Launch executable: Dreamfall Chapters.exe - config: - osarch: '64' + osarch: "64" oslist: macos description: Launch executable: Dreamfall Chapters.app - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Dreamfall Chapters -'237870': +"237870": installDir: Planet Explorers launch: - config: @@ -120409,38 +117237,38 @@ oslist: linux description: Launch executable: PE_Launcher -'237890': +"237890": installDir: Agarest Generations of War launch: - config: oslist: windows description: Launch executable: Agarest.exe -'2378900': +"2378900": installDir: The Coffin of Andy and Leyley launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows executable: Game.exe type: default -'237930': +"237930": installDir: Transistor launch: - - arguments: /c ..\\ + - arguments: "/c ..\\\\" config: - osarch: '64' + osarch: "64" oslist: windows description: Launch 64-bit - executable: x64\\Transistor.exe - workingdir: x64\\ - - arguments: /c ..\\ + executable: "x64\\\\Transistor.exe" + workingdir: "x64\\\\" + - arguments: "/c ..\\\\" config: - osarch: '32' + osarch: "32" oslist: windows description: Launch 32-bit - executable: x86\\Transistor.exe - workingdir: x86\\ + executable: "x86\\\\Transistor.exe" + workingdir: "x86\\\\" - config: oslist: linux description: Launch @@ -120450,44 +117278,44 @@ description: Launch executable: Transistor.app/Contents/MacOS/Transistor type: default - - arguments: /c ..\\.. + - arguments: "/c ..\\\\.." config: betakey: alpha - osarch: '64' + osarch: "64" oslist: windows description: Debug - executable: Debug\\x64\\Transistor.exe + executable: "Debug\\\\x64\\\\Transistor.exe" type: option1 - workingdir: Debug\\x64 - - arguments: /c ..\\.. + workingdir: "Debug\\\\x64" + - arguments: "/c ..\\\\.." config: betakey: alpha - osarch: '32' + osarch: "32" oslist: windows description: Debug - executable: Debug\\x86\\Transistor.exe + executable: "Debug\\\\x86\\\\Transistor.exe" type: option1 - workingdir: Debug\\x86 -'2379390': + workingdir: "Debug\\\\x86" +"2379390": installDir: Tom Clancy’s Rainbow Six Extraction launch: - - arguments: '-uplay_steam_mode' + - arguments: "-uplay_steam_mode" config: - osarch: '64' + osarch: "64" oslist: windows executable: R6-Extraction.exe type: default -'237950': +"237950": installDir: UFO Afterlight launch: - description: Launch executable: UFO.exe -'237970': +"237970": installDir: MementoMori2 launch: - description: Launch executable: MEMENTO2.exe -'237990': +"237990": installDir: tbs launch: - config: @@ -120498,8 +117326,8 @@ oslist: windows description: Launch executable: win32/The Banner Saga.exe -'238010': - installDir: Deus Ex Human Revolution Director's Cut +"238010": + installDir: "Deus Ex Human Revolution Director's Cut" launch: - config: oslist: windows @@ -120509,53 +117337,53 @@ oslist: macos description: Mac Binary executable: Deus Ex Human Revolution - Directors Cut.app -'2380550': {} -'238070': +"2380550": {} +"238070": installDir: Shadow Warrior Original launch: - - arguments: '-conf dosbox_swarrior.conf -conf dosbox_swarrior_single.conf -noconsole -c exit' + - arguments: "-conf dosbox_swarrior.conf -conf dosbox_swarrior_single.conf -noconsole -c exit" config: oslist: windows description: Shadow Warrior (1997) - executable: bin\\DOSBox.exe + executable: "bin\\\\DOSBox.exe" type: default workingdir: gameroot - - arguments: '-conf dosbox_swarrior.conf -conf dosbox_swarrior_single.conf -noconsole -c exit' + - arguments: "-conf dosbox_swarrior.conf -conf dosbox_swarrior_single.conf -noconsole -c exit" config: oslist: macos description: Shadow Warrior (1997) executable: bin/DOSBox.app/Contents/MacOS/DOSBox type: default workingdir: gameroot - - arguments: '-conf dosbox_swarrior.conf -conf dosbox_swarrior_client_betas.conf -noconsole -c exit' + - arguments: "-conf dosbox_swarrior.conf -conf dosbox_swarrior_client_betas.conf -noconsole -c exit" config: oslist: windows description: Prototypes/Betas - executable: bin\\DOSBox.exe + executable: "bin\\\\DOSBox.exe" type: option1 workingdir: gameroot - - arguments: '-conf dosbox_swarrior.conf -conf dosbox_swarrior_client_betas.conf -noconsole -c exit' + - arguments: "-conf dosbox_swarrior.conf -conf dosbox_swarrior_client_betas.conf -noconsole -c exit" config: oslist: macos description: Prototypes/Betas executable: bin/DOSBox.app/Contents/MacOS/DOSBox type: option1 workingdir: gameroot -'238090': +"238090": installDir: Sniper Elite 3 launch: - - executable: Launcher\\Sniper3Launcher.exe -'2381520': {} -'238210': + - executable: "Launcher\\\\Sniper3Launcher.exe" +"2381520": {} +"238210": installDir: SS2 launch: - - arguments: '-console' + - arguments: "-console" config: oslist: windows description: Launch with Console executable: SS2.exe type: none - - arguments: '-fm' + - arguments: "-fm" config: oslist: windows description: Launch Fan Mission Selector @@ -120570,14 +117398,14 @@ description: Launch executable: bin/cxsteamwrapper type: none -'238240': +"238240": installDir: Edge of Space launch: - config: oslist: windows description: Launch executable: launcher.exe -'238260': +"238260": installDir: PinballArcade launch: - config: @@ -120601,7 +117429,7 @@ description: Play Pinball Arcade in Cabinet Mode (DX11) executable: PinballArcadeCabinet.exe type: none -'238280': +"238280": installDir: LegendofDungeon launch: - config: @@ -120616,13 +117444,13 @@ oslist: linux description: Launch executable: LegendofDungeon.x86 - - arguments: '-force-d3d11' + - arguments: "-force-d3d11" config: oslist: windows description: Launch old VR Mode (opt into beta for working version) executable: LegendofDungeon_DirectToRift.exe type: none - - arguments: '-vrmode openvr' + - arguments: "-vrmode openvr" config: betakey: beta oslist: windows @@ -120638,13 +117466,13 @@ oslist: windows executable: LoD_SteamVR.bat type: vr -'2383120': +"2383120": installDir: Garten of Banban 4 launch: - config: oslist: windows executable: Garten of Banban 4.exe -'238320': +"238320": installDir: Outlast launch: - config: @@ -120652,12 +117480,12 @@ description: Play Outlast executable: OutlastLauncher.exe - config: - osarch: '32' + osarch: "32" oslist: linux description: Play Outlast executable: Binaries/Linux/OLGame.i686 - config: - osarch: '64' + osarch: "64" oslist: linux description: Play Outlast executable: Binaries/Linux/OLGame.x86_64 @@ -120665,7 +117493,7 @@ oslist: macos description: Play Outlast executable: Outlast.app -'238370': +"238370": installDir: Magicka 2 launch: - config: @@ -120675,13 +117503,13 @@ type: none workingdir: engine - config: - osarch: '32' + osarch: "32" oslist: linux description: Play Magicka 2 executable: engine/Magicka2 workingdir: engine - config: - osarch: '64' + osarch: "64" oslist: linux description: Play Magicka 2 executable: engine/Magicka2_x64 @@ -120691,26 +117519,26 @@ description: Play Magicka 2 executable: engine/Magicka2.app workingdir: engine -'2383860': +"2383860": installDir: Octodad launch: - config: oslist: windows executable: Octodad.exe type: default -'2383990': +"2383990": installDir: GBSU launch: - - arguments: '-steam' + - arguments: "-steam" config: - osarch: '64' + osarch: "64" oslist: windows executable: SwayzeGame.exe type: default -'238430': +"238430": installDir: Contagion launch: - - arguments: '-steam' + - arguments: "-steam" config: oslist: windows description: Play Contagion @@ -120721,15 +117549,15 @@ description: Contagion SDK executable: bin/ContagionSDK.exe type: editor - - arguments: '-steam' + - arguments: "-steam" config: betakey: engine_update - osarch: '64' + osarch: "64" oslist: windows description: Contagion 64-Bit executable: contagion_x64.exe type: option2 -'238460': +"238460": installDir: BattleBlock Theater launch: - config: @@ -120744,15 +117572,15 @@ oslist: macos description: Launch executable: BattleBlockTheater.app/Contents/MacOS/BattleBlockTheater -'2384850': +"2384850": installDir: Bottle launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: BottleRe.exe type: default -'238530': +"238530": installDir: Super Puzzle Platformer Deluxe launch: - config: @@ -120763,7 +117591,7 @@ oslist: macos description: Launch executable: Super Puzzle Platformer Deluxe.app -'238630': +"238630": installDir: Fist Puncher launch: - config: @@ -120773,16 +117601,16 @@ - config: oslist: linux description: Launch - executable: ./FistPuncher + executable: "./FistPuncher" - config: oslist: macos description: Launch executable: Fist Puncher.app/Contents/MacOS/FistPuncher type: none -'238750': +"238750": installDir: Might & Magic X - Legacy launch: - - arguments: '-uplay_steam_mode' + - arguments: "-uplay_steam_mode" config: oslist: windows description: Launch @@ -120791,15 +117619,15 @@ oslist: macos description: Launch executable: MightAndMagicXLegacy.app -'2388620': {} -'238870': +"2388620": {} +"238870": installDir: Citadels launch: - config: oslist: windows description: Launch Citadels executable: bin/release_bin90dx9x86/citadels.exe -'238890': +"238890": installDir: Skyward Collapse launch: - config: @@ -120809,16 +117637,16 @@ oslist: macos executable: Collapse.app - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: CollapseLinux.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: CollapseLinux.x86_64 -'238910': +"238910": installDir: Bionic_Dues launch: - config: @@ -120830,16 +117658,16 @@ description: Launch executable: Bionic.app - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: BionicLinux.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: BionicLinux.x86_64 -'238930': +"238930": installDir: 7 Grand Steps 01 launch: - config: @@ -120849,28 +117677,28 @@ - config: oslist: macos executable: 7 Grand Steps.app -'238960': +"238960": installDir: Path of Exile launch: - - arguments: '--nopatch' + - arguments: "--nopatch" config: oslist: windows description: Play Path of Exile executable: PathOfExileSteam.exe type: none - - arguments: '--steam' + - arguments: "--steam" config: oslist: macos description: Play Path of Exile executable: PathOfExileClient.app type: none -'2389830': {} -'2390': +"2389830": {} +"2390": installDir: Heretic Shadow of the Serpent Riders launch: - - arguments: base\\heretic.exe -conf base\\heretic.conf -fullscreen -exit - executable: base\\dosbox.exe -'239030': + - arguments: "base\\\\heretic.exe -conf base\\\\heretic.conf -fullscreen -exit" + executable: "base\\\\dosbox.exe" +"239030": installDir: PapersPlease launch: - arguments: t @@ -120916,7 +117744,7 @@ oslist: macos description: Launch (Software Rendering) executable: PapersPlease.app/Contents/MacOS/PapersPlease -'239070': +"239070": installDir: Hammerwatch launch: - config: @@ -120936,7 +117764,7 @@ oslist: linux description: Launch executable: RunHammerwatch -'239090': +"239090": installDir: Samurai Gunn launch: - config: @@ -120948,63 +117776,63 @@ description: Launch executable: SamuraiGunn.app type: none -'239120': +"239120": installDir: Final Fantasy III launch: - config: oslist: windows description: Launch executable: FF3_Launcher.exe -'239140': +"239140": installDir: Dying Light launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch Dying Light executable: DyingLightGame.exe - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch Dying Light executable: DyingLightGame - config: - osarch: '64' + osarch: "64" oslist: macos executable: DyingLightGame.app type: default - config: - osarch: '64' + osarch: "64" oslist: windows description: Dying Light Custom Game executable: DevTools/DyingLightPlayer.exe type: option1 - config: - osarch: '64' + osarch: "64" oslist: linux description: Dying Light Custom Game executable: DevTools/DyingLightGame type: option1 workingdir: DevTools -'239160': +"239160": installDir: Thief launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Play Game (64 bit) - executable: binaries\\win64\\shipping-thiefgame.exe + executable: "binaries\\\\win64\\\\shipping-thiefgame.exe" - config: - osarch: '32' + osarch: "32" oslist: windows description: Play Game (32 bit) - executable: binaries\\win32\\shipping-thiefgame.exe + executable: "binaries\\\\win32\\\\shipping-thiefgame.exe" - config: - osarch: '64' + osarch: "64" oslist: macos description: Launch executable: Thief.app -'239200': +"239200": installDir: Machine for Pigs launch: - config: @@ -121016,7 +117844,7 @@ description: Amnesia Game executable: AmnesiaAMFP.app - config: - osarch: '32' + osarch: "32" oslist: linux description: Amnesia Game executable: AmnesiaAMFP.bin.x86 @@ -121025,7 +117853,7 @@ description: Run Settings Launcher executable: AmnesiaAMFPLauncher.app - config: - osarch: '32' + osarch: "32" oslist: linux description: Run Settings Launcher executable: Launcher.bin.x86 @@ -121034,53 +117862,53 @@ description: Run Settings Launcher executable: Launcher.exe - config: - osarch: '64' + osarch: "64" oslist: linux description: Amnesia Game executable: AmnesiaAMFP.bin.x86_64 - config: - osarch: '64' + osarch: "64" oslist: linux description: Run Settings Launcher executable: Launcher.bin.x86_64 -'239220': +"239220": installDir: The Mighty Quest For Epic Loot launch: - description: Play Game - executable: Launcher\\PublicLauncher.exe + executable: "Launcher\\\\PublicLauncher.exe" workingdir: Launcher - description: Run diagnostics tool - executable: Launcher\\MQELDiagnostics.exe + executable: "Launcher\\\\MQELDiagnostics.exe" workingdir: Launcher -'239250': +"239250": installDir: Castlevania Lords of Shadow 2 launch: - config: oslist: windows description: Launch executable: bin/CLOS2.exe - - arguments: '-safemode' + - arguments: "-safemode" config: oslist: windows description: Safe Mode executable: bin/CLOS2.exe -'239350': +"239350": installDir: Spelunky launch: - config: oslist: windows description: Launch executable: Spelunky.exe -'239410': +"239410": installDir: Catan launch: - - arguments: '--dx' + - arguments: "--dx" config: oslist: windows description: Catan (DirectX) executable: bin/Release/Catan.exe workingdir: bin/Release - - arguments: '--ogl' + - arguments: "--ogl" config: oslist: windows description: Catan (OpenGL) @@ -121091,30 +117919,30 @@ description: Catan Editor executable: bin/Release/CatanEdit.exe workingdir: bin/Release -'239430': +"239430": installDir: QUBE Directors Cut launch: - config: oslist: windows description: Play Normal Game - executable: Binaries\\Win32\\QUBEGame.exe - - arguments: '-Oculus' + executable: "Binaries\\\\Win32\\\\QUBEGame.exe" + - arguments: "-Oculus" config: oslist: windows description: Play with Oculus Rift (Rift Required) - executable: Binaries\\Win32\\QUBEGame.exe + executable: "Binaries\\\\Win32\\\\QUBEGame.exe" - config: oslist: linux description: Launch (Linux) executable: Binaries/Linux/QUBEGame-Linux workingdir: Binaries/Linux/ - config: - osarch: '64' + osarch: "64" oslist: macos description: Launch (MacOSX) executable: QUBE.app/Contents/MacOS/QUBEGame workingdir: QUBE.app/Contents/MacOS/ -'239450': +"239450": installDir: Gun Monkeys launch: - config: @@ -121125,36 +117953,36 @@ oslist: macos description: Launch game (mac) executable: gun_monkeys.app -'2395210': +"2395210": nameLocalized: - brazilian: Tony Hawk's™ Pro Skater™ 1 + 2 - danish: Tony Hawk's™ Pro Skater™ 1 + 2 - dutch: Tony Hawk's™ Pro Skater™ 1 + 2 - finnish: Tony Hawk's™ Pro Skater™ 1 + 2 - french: Tony Hawk's™ Pro Skater™ 1 + 2 - german: Tony Hawk's™ Pro Skater™ 1 + 2 - italian: Tony Hawk's™ Pro Skater™ 1 + 2 + brazilian: "Tony Hawk's™ Pro Skater™ 1 + 2" + danish: "Tony Hawk's™ Pro Skater™ 1 + 2" + dutch: "Tony Hawk's™ Pro Skater™ 1 + 2" + finnish: "Tony Hawk's™ Pro Skater™ 1 + 2" + french: "Tony Hawk's™ Pro Skater™ 1 + 2" + german: "Tony Hawk's™ Pro Skater™ 1 + 2" + italian: "Tony Hawk's™ Pro Skater™ 1 + 2" japanese: トニー・ホーク™ プロ・スケーター™ 1+2 - koreana: Tony Hawk's™ Pro Skater™ 1 + 2 - latam: Tony Hawk's™ Pro Skater™ 1 + 2 - norwegian: Tony Hawk's™ Pro Skater™ 1 + 2 - polish: Tony Hawk's™ Pro Skater™ 1 + 2 - portuguese: Tony Hawk's™ Pro Skater™ 1 + 2 - russian: Tony Hawk's™ Pro Skater™ 1 + 2 + koreana: "Tony Hawk's™ Pro Skater™ 1 + 2" + latam: "Tony Hawk's™ Pro Skater™ 1 + 2" + norwegian: "Tony Hawk's™ Pro Skater™ 1 + 2" + polish: "Tony Hawk's™ Pro Skater™ 1 + 2" + portuguese: "Tony Hawk's™ Pro Skater™ 1 + 2" + russian: "Tony Hawk's™ Pro Skater™ 1 + 2" schinese: 托尼·霍克™:职业滑板手™ 1 + 2 - spanish: Tony Hawk's™ Pro Skater™ 1 + 2 - swedish: Tony Hawk's™ Pro Skater™ 1 + 2 - tchinese: Tony Hawk's™ Pro Skater™ 一代與二代 - turkish: Tony Hawk's™ Pro Skater™ 1 + 2 -'2395450': + spanish: "Tony Hawk's™ Pro Skater™ 1 + 2" + swedish: "Tony Hawk's™ Pro Skater™ 1 + 2" + tchinese: "Tony Hawk's™ Pro Skater™ 一代與二代" + turkish: "Tony Hawk's™ Pro Skater™ 1 + 2" +"2395450": installDir: Re-Loaded launch: - - arguments: '-conf z_reloaded.conf -c \"imgmount d z_cdrom.iso -t iso\" -c cls RELOADED.EXE -noconsole -exit' + - arguments: "-conf z_reloaded.conf -c \\\"imgmount d z_cdrom.iso -t iso\\\" -c cls RELOADED.EXE -noconsole -exit" config: oslist: windows executable: DOSBOX/dosbox.exe type: default - - arguments: '-conf z_reloaded.conf -c \"imgmount d z_cdrom.iso -t iso\" -c cls RELOADED.EXE -noconsole -exit' + - arguments: "-conf z_reloaded.conf -c \\\"imgmount d z_cdrom.iso -t iso\\\" -c cls RELOADED.EXE -noconsole -exit" config: oslist: linux executable: dosbox/dosbox @@ -121163,7 +117991,7 @@ oslist: macos executable: launch.sh type: default -'239700': +"239700": installDir: Hate Plus launch: - config: @@ -121178,22 +118006,22 @@ oslist: linux description: Launch executable: HatePlus.sh -'239720': +"239720": installDir: Pac-Man and the Ghostly Adventures launch: - config: oslist: windows description: Launch executable: PacMan.exe -'2397300': {} -'2397510': +"2397300": {} +"2397510": nameLocalized: french: Corsairs – La Bataille des Caraibes japanese: Corsairs – カリブ海の戦い - koreana: '커세어: 배틀 오브 캐리비언 Corsairs - Battle of the Caribbean' + koreana: "커세어: 배틀 오브 캐리비언 Corsairs - Battle of the Caribbean" schinese: 海盗:加勒比海战 Corsairs - Battle of the Caribbean tchinese: 稱霸四海 - 加勒比海之戰 Corsairs - Battle of the Caribbean -'239800': +"239800": installDir: Bleed launch: - config: @@ -121208,8 +118036,8 @@ - config: oslist: linux description: Launch - executable: ./Bleed -'239820': + executable: "./Bleed" +"239820": installDir: Game Dev Tycoon launch: - config: @@ -121224,104 +118052,96 @@ oslist: linux description: Launch executable: start.sh -'239840': +"239840": installDir: Dead State launch: - description: Launch executable: ZRPG.exe -'2399730': +"2399730": installDir: FRONT MISSION 1st Remake launch: - config: oslist: windows executable: FRONT MISSION 1st Remake.exe -'2399830': +"2399830": installDir: ARK Survival Ascended launch: - - arguments: '-VideoReplayEnabled=false' + - arguments: "-VideoReplayEnabled=false" config: - osarch: '64' + osarch: "64" oslist: windows description: Launch ARK - description_loc: - english: Launch ARK - executable: ShooterGame\\Binaries\\Win64\\ArkAscended_BE.exe - workingdir: ShooterGame\\Binaries\\Win64 - - arguments: '-VideoReplayEnabled=false' + executable: "ShooterGame\\\\Binaries\\\\Win64\\\\ArkAscended_BE.exe" + workingdir: "ShooterGame\\\\Binaries\\\\Win64" + - arguments: "-VideoReplayEnabled=false" config: - osarch: '64' + osarch: "64" oslist: windows - description: 'Play ARK: No BattlEye AntiCheat, Unofficial Servers Only' - description_loc: - english: 'Play ARK: No BattlEye AntiCheat, Unofficial Servers Only' - executable: ShooterGame\\Binaries\\Win64\\ArkAscended.exe - workingdir: ShooterGame\\Binaries\\Win64 - - arguments: '-VideoReplayEnabled=false' + description: "Play ARK: No BattlEye AntiCheat, Unofficial Servers Only" + executable: "ShooterGame\\\\Binaries\\\\Win64\\\\ArkAscended.exe" + workingdir: "ShooterGame\\\\Binaries\\\\Win64" + - arguments: "-VideoReplayEnabled=false" config: betakey: yeoldebuild - osarch: '64' + osarch: "64" oslist: windows description: OLD launch exe (ignore) - description_loc: - english: OLD launch exe (ignore) - executable: ShooterGame\\Binaries\\Win64\\ShooterGame-Win64-Shipping.exe - workingdir: ShooterGame\\Binaries\\Win64 -'240': + executable: "ShooterGame\\\\Binaries\\\\Win64\\\\ShooterGame-Win64-Shipping.exe" + workingdir: "ShooterGame\\\\Binaries\\\\Win64" +"240": installDir: Counter-Strike Source launch: - - arguments: '-steam -game cstrike' + - arguments: "-steam -game cstrike" config: oslist: windows executable: hl2.exe - vacmodulefilename: resource\\sourceinit.dat - - arguments: '-steam -game cstrike' + - arguments: "-steam -game cstrike" config: oslist: macos executable: hl2_osx - vacmodulefilename: resource\\sourceinit_macos.dat - - arguments: '-game cstrike -steam' + - arguments: "-game cstrike -steam" config: oslist: linux executable: hl2.sh -'2400': +"2400": installDir: The Ship launch: - - arguments: '-steam' + - arguments: "-steam" executable: ship.exe -'24010': +"24010": installDir: RailWorks launch: - executable: RailWorks.exe - description: Play Train Simulator 64-bit Edition executable: Railworks64.exe type: none -'240160': +"240160": installDir: Duke Nukem 1 launch: - - arguments: '-conf \"..\\NUKEM1.conf\" -noconsole -c' + - arguments: "-conf \\\"..\\\\NUKEM1.conf\\\" -noconsole -c" config: oslist: windows description: Launch - executable: dosbox\\dosbox.exe - workingdir: dosbox\\ + executable: "dosbox\\\\dosbox.exe" + workingdir: "dosbox\\\\" - config: oslist: macos description: Launch executable: DukeNukem.app -'240180': +"240180": installDir: Duke Nukem 2 launch: - - arguments: '-conf \"..\\NUKEM2.conf\" -noconsole -c' + - arguments: "-conf \\\"..\\\\NUKEM2.conf\\\" -noconsole -c" config: oslist: windows description: Launch - executable: dosbox\\dosbox.exe - workingdir: dosbox\\ + executable: "dosbox\\\\dosbox.exe" + workingdir: "dosbox\\\\" - config: oslist: macos description: Launch executable: DukeNukemII.app -'240200': +"240200": installDir: Duke Nukem Manhatten Project launch: - config: @@ -121336,14 +118156,14 @@ oslist: windows description: Options executable: DukeNukemManhattanLauncher.exe -'240320': +"240320": installDir: Panzar launch: - config: oslist: windows description: Launch executable: PnzSteamLauncher.exe -'240340': +"240340": installDir: Space Ace launch: - config: @@ -121358,8 +118178,8 @@ oslist: linux executable: SpaceAce.x86 type: none -'240360': - installDir: Dragon's Lair II +"240360": + installDir: "Dragon's Lair II" launch: - config: oslist: windows @@ -121368,24 +118188,24 @@ - config: oslist: macos description: Launch - executable: Dragon's Lair 2.app + executable: "Dragon's Lair 2.app" - config: oslist: linux executable: DragonsLair2.x86 type: none -'2403620': {} -'240380': +"2403620": {} +"240380": installDir: SolsticeArena launch: - description: Launch executable: SolsticeArena.exe -'2404370': +"2404370": nameLocalized: japanese: 幻日のヨハネ -BLAZE in the DEEPBLUE- koreana: 환일의 요하네 -BLAZE in the DEEPBLUE- schinese: 幻日夜羽 -湛海耀光- tchinese: 幻日夜羽 -湛海耀光- -'240440': +"240440": installDir: quadrilateralcowboy launch: - config: @@ -121395,25 +118215,25 @@ type: default - config: oslist: windows - ownsdlc: '489490' + ownsdlc: "489490" description: Quadrilateral Cowboy Art Book executable: artbook/artbook.exe type: option1 workingdir: artbook - config: - osarch: '32' + osarch: "32" oslist: linux executable: qc.bin.x86 type: default - config: oslist: linux - ownsdlc: '489490' + ownsdlc: "489490" description: Quadrilateral Cowboy Art Book executable: artbook/QCArtBook type: option1 - config: oslist: macos - ownsdlc: '489490' + ownsdlc: "489490" description: Quadrilateral Cowboy Art Book executable: artbook/QC Art Book.app/Contents/MacOS/QCArtBook type: option1 @@ -121423,34 +118243,34 @@ executable: Quadrilateral Cowboy.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: qc.bin.x86_64 type: default -'240460': +"240460": installDir: WWE 2K15 launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: WWE2K15Launcher.exe -'240600': +"240600": installDir: MotoGP2013 launch: - description: Launch executable: MotoGP13.exe -'240620': +"240620": installDir: Wanderlust Adventures launch: - config: oslist: windows description: Launch executable: Wanderlust.exe -'240660': +"240660": installDir: Mirage launch: - - arguments: '-console' + - arguments: "-console" config: oslist: windows description: Launch with Console @@ -121459,40 +118279,40 @@ oslist: macos description: Launch executable: RainBlood_Mirage.app -'240720': +"240720": installDir: Getting Over It launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: GettingOverIt.exe type: default - config: - osarch: '64' + osarch: "64" oslist: macos executable: GettingOverIt.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: GettingOverIt.x86_64 type: default -'240760': +"240760": installDir: Wasteland 2 launch: - config: oslist: windows description: Launch - executable: Build\\WL2.exe + executable: "Build\\\\WL2.exe" - config: oslist: macos description: Launch - executable: OSX\\WL2.app\\Contents\\MacOS\\WL2 + executable: "OSX\\\\WL2.app\\\\Contents\\\\MacOS\\\\WL2" - config: oslist: linux description: Launch - executable: Linux\\WL2 -'2409500': + executable: "Linux\\\\WL2" +"2409500": installDir: Inspector Gadget - Mad Time Party launch: - config: @@ -121518,15 +118338,15 @@ swedish: Inspector Gadget - MAD Time Party tchinese: 神探蓋傑特:瘋狂時光派對 turkish: Inspector Gadget - MAD Time Party -'240970': +"240970": installDir: Half Minute Hero Two launch: - config: oslist: windows description: Launch executable: HMH2.exe -'241000': - installDir: Jon Shafer's At the Gates +"241000": + installDir: "Jon Shafer's At the Gates" launch: - config: oslist: windows @@ -121540,9 +118360,9 @@ - config: oslist: linux description: Launch - executable: ./AtTheGates + executable: "./AtTheGates" type: none -'241240': +"241240": installDir: ContraptionMaker launch: - config: @@ -121554,27 +118374,27 @@ description: New Launch - 026 executable: ContraptionMaker.app - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: ContraptionMaker -'241260': +"241260": installDir: Sherlock Holmes - Crimes and Punishments launch: - - arguments: '-NOSCREENMESSAGES' + - arguments: "-NOSCREENMESSAGES" config: oslist: windows description: Play the game - executable: Binaries\\Win32\\Sherlock.exe - workingdir: Binaries\\Win32 - - arguments: . + executable: "Binaries\\\\Win32\\\\Sherlock.exe" + workingdir: "Binaries\\\\Win32" + - arguments: "." config: - ownsdlc: '1168710' + ownsdlc: "1168710" description: Show Artbook - executable: Artbook\\launch.bat + executable: "Artbook\\\\launch.bat" type: none workingdir: Artbook -'241300': +"241300": installDir: CCN2 launch: - config: @@ -121586,16 +118406,16 @@ executable: CCN2.app type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: CCN2.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: CCN2.x86_64 type: none -'241320': +"241320": installDir: Ittle Dew launch: - config: @@ -121610,96 +118430,80 @@ oslist: linux description: Launch executable: IttleDew.x86 -'241410': +"241410": installDir: CastleStorm launch: - config: oslist: windows description: Launch executable: CastleStorm.exe -'2414320': +"2414320": installDir: Veil of Darkness launch: - - arguments: '-noconsole -conf vod-eng-base.conf -conf vod-eng-graphics.conf -conf vod-eng-game.conf' + - arguments: "-noconsole -conf vod-eng-base.conf -conf vod-eng-graphics.conf -conf vod-eng-game.conf" description: Launch game - description_loc: - english: Launch game - executable: .\\DOSBOX\\DOSBox.exe + executable: ".\\\\DOSBOX\\\\DOSBox.exe" type: default - - arguments: '-conf vod-eng-graphics.conf' + - arguments: "-conf vod-eng-graphics.conf" description: Graphics settings - description_loc: - english: Graphics settings - executable: .\\DOSBOX\\ConfigTool.exe + executable: ".\\\\DOSBOX\\\\ConfigTool.exe" type: config -'2414340': +"2414340": installDir: Star General launch: - executable: STARGEN.EXE type: default - - arguments: '-noconsole -conf stargen-eng-base.conf -conf stargen-eng-graphics.conf -conf stargen-eng-game.conf' + - arguments: "-noconsole -conf stargen-eng-base.conf -conf stargen-eng-graphics.conf -conf stargen-eng-game.conf" description: Star General (DOSBox) - description_loc: - english: Star General (DOSBox) - executable: .\\Star General - ENG\\DOSBOX\\dosbox.exe + executable: ".\\\\Star General - ENG\\\\DOSBOX\\\\dosbox.exe" type: option1 workingdir: Star General - ENG - - arguments: '-conf stargen-eng-graphics.conf' + - arguments: "-conf stargen-eng-graphics.conf" description: Configure graphics (DOSBox) - description_loc: - english: Configure graphics (DOSBox) - executable: .\\Star General - ENG\\DOSBOX\\ConfigTool.exe + executable: ".\\\\Star General - ENG\\\\DOSBOX\\\\ConfigTool.exe" workingdir: Star General - ENG -'2414350': +"2414350": installDir: The Summoning launch: - - arguments: '-noconsole -conf summon-eng-base.conf -conf summon-eng-graphics.conf -conf summon-eng-game.conf' + - arguments: "-noconsole -conf summon-eng-base.conf -conf summon-eng-graphics.conf -conf summon-eng-game.conf" description: Launch game - description_loc: - english: Launch game - executable: .\\DOSBOX\\DOSBox.exe + executable: ".\\\\DOSBOX\\\\DOSBox.exe" type: default - - arguments: ' -conf summon-eng-graphics.conf' + - arguments: " -conf summon-eng-graphics.conf" description: Graphics settings - description_loc: - english: Graphics settings - executable: .\\DOSBOX\\ConfigTool.exe + executable: ".\\\\DOSBOX\\\\ConfigTool.exe" type: config -'2414360': +"2414360": installDir: Dark Legions launch: - - arguments: '-noconsole -conf dl-base.conf -conf dl-graphics.conf -conf dl-game.conf' + - arguments: "-noconsole -conf dl-base.conf -conf dl-graphics.conf -conf dl-game.conf" description: Launch game - description_loc: - english: Launch game - executable: .\\DOSBOX\\DOSBox.exe + executable: ".\\\\DOSBOX\\\\DOSBox.exe" type: default - - arguments: '-conf dl-graphics.conf' + - arguments: "-conf dl-graphics.conf" description: Graphics settings - description_loc: - english: Graphics settings - executable: .\\DOSBOX\\ConfigTool.exe + executable: ".\\\\DOSBOX\\\\ConfigTool.exe" type: config -'2414630': +"2414630": nameLocalized: japanese: ウツロマユ - Hollow Cocoon - -'241540': +"241540": installDir: State of Decay launch: - config: oslist: windows description: Launch executable: StateOfDecay.exe -'241560': +"241560": installDir: The Crew launch: - - arguments: '-uplay_steam_mode' + - arguments: "-uplay_steam_mode" config: oslist: windows description: Launch executable: TheCrew.exe type: none -'241600': +"241600": installDir: Rogue Legacy launch: - config: @@ -121714,20 +118518,20 @@ - config: oslist: linux description: Launch - executable: ./RogueLegacy + executable: "./RogueLegacy" - config: oslist: windows description: The Lament of Zors Mod by default0 - executable: .\\RogueMod\\ZorsLegacy.exe + executable: ".\\\\RogueMod\\\\ZorsLegacy.exe" type: option2 workingdir: RogueMod -'241620': +"241620": installDir: Inquisitor launch: - description: Launch executable: Game/Inquisitor.exe workingdir: Game -'241640': +"241640": installDir: HauntedMemories launch: - config: @@ -121742,26 +118546,26 @@ oslist: linux description: Launch executable: HM.x86 -'24170': +"24170": installDir: Star Wars Galaxies launch: - executable: LaunchPad.exe -'241720': +"241720": installDir: Guncraft launch: - description: Launch executable: GunCraft.exe -'241760': +"241760": installDir: Kill to Collect launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch Kill to Collect executable: ktc.exe type: none -'2417610': {} -'241910': +"2417610": {} +"241910": installDir: Goodbye Deponia launch: - config: @@ -121775,73 +118579,73 @@ executable: VisionaireConfigurationTool.exe type: config - config: - osarch: '64' + osarch: "64" oslist: macos description: Launch executable: Goodbye Deponia.app type: default - workingdir: ./ + workingdir: "./" - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: start type: default -'241930': +"241930": installDir: ShadowOfMordor launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: x64/ShadowOfMordor.exe workingdir: x64 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: ShadowOfMordor.sh - config: - osarch: '64' + osarch: "64" oslist: macos description: Launch executable: Middle Earth Shadow of Mordor.app -'241990': +"241990": installDir: Sorcerer King launch: - config: oslist: windows description: Launch Sorcerer King executable: SorcererKing.exe -'24200': +"24200": installDir: DC Universe Online launch: - - arguments: 'Updates:enable=0 Updates:PatchSelf=1 campaignID=1063044 promoID=132 launchArgs=-STEAM_ENABLED launchPoint=steam' + - arguments: "Updates:enable=0 Updates:PatchSelf=1 campaignID=1063044 promoID=132 launchArgs=-STEAM_ENABLED launchPoint=steam" executable: LaunchPad.exe -'2420110': +"2420110": nameLocalized: brazilian: Horizon Forbidden West™ - Edição Completa koreana: 호라이즌 포비든 웨스트 컴플리트 에디션 - latam: ' Edición Completa de Horizon Forbidden West™' + latam: " Edición Completa de Horizon Forbidden West™" polish: Horizon Forbidden West™ Edycja kompletna - portuguese: ' Horizon Forbidden West™ Edição Completa' - russian: ' Полное издание «Horizon Запретный Запад»' + portuguese: " Horizon Forbidden West™ Edição Completa" + russian: " Полное издание «Horizon Запретный Запад»" schinese: 《地平线 西之绝境™》完整版 tchinese: 《地平線 西域禁地》完全版 - ukrainian: ' Повне видання Horizon Forbidden West™' -'242050': - installDir: Assassin's Creed IV Black Flag + ukrainian: " Повне видання Horizon Forbidden West™" +"242050": + installDir: "Assassin's Creed IV Black Flag" launch: - - arguments: '-uplay_steam_mode' + - arguments: "-uplay_steam_mode" config: oslist: windows - description: 'Launch Assassin''s Creed IV Black Flag ' + description: "Launch Assassin's Creed IV Black Flag " executable: AC4BFSP.exe -'2420510': +"2420510": installDir: HoloCure launch: - executable: HoloCure.exe -'242110': +"242110": installDir: Joe Danger 2 The Movie launch: - config: @@ -121853,22 +118657,22 @@ oslist: macos description: Launch Game executable: Joe Danger 2 The Movie.app - workingdir: ../../MacOS + workingdir: "../../MacOS" - config: oslist: linux description: Launch Linux executable: BIN/JD2Launcher workingdir: BIN -'242130': +"242130": installDir: VectorThrust launch: - description: Launch executable: VectorThrust.exe -'24240': +"24240": installDir: PAYDAY The Heist launch: - executable: payday_win32_release.exe -'242530': +"242530": installDir: Chaos engine launch: - config: @@ -121883,14 +118687,14 @@ oslist: linux description: Launch executable: TheChaosEngineSteam -'242550': +"242550": installDir: Rayman Legends launch: - - arguments: '-uplay_steam_mode' + - arguments: "-uplay_steam_mode" config: oslist: windows executable: Rayman Legends.exe -'242570': +"242570": installDir: Space Hulk launch: - config: @@ -121905,14 +118709,14 @@ oslist: linux description: Launch executable: game.x86 -'2425910': +"2425910": installDir: Old Town Bus Simulator launch: - config: oslist: windows executable: Old Town Bus Simulator.exe type: default -'242610': +"242610": installDir: Grappledrome launch: - config: @@ -121923,29 +118727,29 @@ oslist: linux executable: RoverGame.sh type: default -'2426310': +"2426310": installDir: Arcana Heat n Cold Stories launch: - config: oslist: windows executable: nw.exe type: default -'242640': +"242640": installDir: Styx launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch - executable: Binaries\\Win32\\StyxGame.exe - workingdir: Binaries\\Win32 + executable: "Binaries\\\\Win32\\\\StyxGame.exe" + workingdir: "Binaries\\\\Win32" - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch - executable: Binaries\\Win64\\StyxGame.exe - workingdir: Binaries\\Win64 -'242680': + executable: "Binaries\\\\Win64\\\\StyxGame.exe" + workingdir: "Binaries\\\\Win64" +"242680": installDir: Nuclear Throne launch: - config: @@ -121963,23 +118767,23 @@ description: Launch Nuclear Throne. executable: run.sh type: default -'242700': +"242700": installDir: InjusticeGodsAmongUs_UltimateEdition launch: - description: Launch - executable: DiscContentPCG\\Injustice.exe + executable: "DiscContentPCG\\\\Injustice.exe" workingdir: DiscContentPCG - description: Launcher - executable: DiscContentPCG\\InjusticeLauncher.exe + executable: "DiscContentPCG\\\\InjusticeLauncher.exe" workingdir: DiscContentPCG -'242720': +"242720": installDir: GunZ 2 The Second Duel launch: - config: oslist: windows description: Launch executable: Gunz2_Steam.exe -'242760': +"242760": installDir: The Forest launch: - config: @@ -121987,7 +118791,7 @@ description: Launch executable: TheForest.exe - config: - osarch: '32' + osarch: "32" description: The Forest 32-bit executable: TheForest32.exe type: none @@ -121999,7 +118803,7 @@ - description: The Forest VR executable: TheForestVR.exe type: vr -'242780': +"242780": installDir: Cognition launch: - config: @@ -122012,7 +118816,7 @@ description: Cognition - Launcher executable: Launcher/Cognition Launcher.app workingdir: Launcher -'242800': +"242800": installDir: DayOne launch: - config: @@ -122020,8 +118824,8 @@ description: Launch executable: /Binaries/Win32/DayOne.exe workingdir: /Binaries/Win32 -'242820': - installDir: '140' +"242820": + installDir: "140" launch: - config: oslist: windows @@ -122035,36 +118839,36 @@ oslist: linux description: Launch executable: 140Linux.x86 -'242840': +"242840": installDir: In Verbis Virtus launch: - - arguments: '-seekfreeloading' + - arguments: "-seekfreeloading" config: oslist: windows description: Launch IVV - executable: Binaries\\Win32\\IVV.exe - - arguments: '-seekfreeloading -windowed resx=800 resy=600' + executable: "Binaries\\\\Win32\\\\IVV.exe" + - arguments: "-seekfreeloading -windowed resx=800 resy=600" config: oslist: windows description: Launch IVV (safe-mode) - executable: Binaries\\Win32\\IVV.exe + executable: "Binaries\\\\Win32\\\\IVV.exe" - config: oslist: macos description: Launch IVV executable: /InVerbisVirtus.app/Contents/Resources/drive_c/Program Files/In Verbis Virtus/Binaries/Win32/UserCode/sutilsmo - - arguments: /run explorer .\\Soundtrack\\ + - arguments: "/run explorer .\\\\Soundtrack\\\\" config: - ownsdlc: '385930' + ownsdlc: "385930" description: Open Soundtrack folder - executable: Binaries\\Win32\\UserCode\\cmdow.exe + executable: "Binaries\\\\Win32\\\\UserCode\\\\cmdow.exe" type: none -'242860': +"242860": installDir: WW1GameSeries launch: - config: oslist: windows description: Launch - executable: Verdun\\Verdun.exe + executable: "Verdun\\\\Verdun.exe" type: none - config: oslist: macos @@ -122072,7 +118876,7 @@ executable: Verdun/Verdun.app/Contents/MacOS/WW1 Game Series type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Verdun/Verdun @@ -122089,139 +118893,121 @@ description: Legacy Verdun.app executable: Verdun.app/Contents/MacOS/Verdun type: none -'242880': +"242880": installDir: SirYouAreBeingHunted launch: - config: betakey: version-1.4 oslist: macos description: Play 1.4 - description_loc: - english: Play 1.4 executable: launcher/sir.app/Contents/MacOS/sir type: default - config: betakey: version-1.4 oslist: linux description: Play 1.4 - description_loc: - english: Play 1.4 executable: launcher/sir type: default - config: betakey: version-1.4 oslist: windows description: Play 1.4 - description_loc: - english: Play 1.4 executable: launcher/sir.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows description: single player - description_loc: - english: single player executable: x64/sir.exe type: option1 workingdir: x64 - config: - osarch: '64' + osarch: "64" oslist: windows description: multiplayer - description_loc: - english: multiplayer executable: x64/multiplayer/sir.exe type: option2 workingdir: x64/multiplayer - config: oslist: macos description: single player - description_loc: - english: single player executable: sir.app/Contents/MacOS/SirYouAreBeingHunted type: option1 - config: oslist: macos description: multiplayer - description_loc: - english: multiplayer executable: multiplayer/sir.app/Contents/MacOS/sir type: none workingdir: multiplayer - config: - osarch: '64' + osarch: "64" oslist: linux description: single player - description_loc: - english: single player executable: sir type: option1 - config: - osarch: '64' + osarch: "64" oslist: linux description: multiplayer - description_loc: - english: multiplayer executable: multiplayer/sir type: option2 workingdir: multiplayer -'242920': +"242920": installDir: Banished launch: - config: - osarch: '32' + osarch: "32" description: Launch executable: Application-steam-x32.exe - config: - osarch: '64' + osarch: "64" description: Launch executable: Application-steam-x64.exe -'242940': +"242940": installDir: Anachronox launch: - description: Launch executable: anox.exe -'242960': +"242960": installDir: Blood Omen 2 Legacy of Kain launch: - description: Launch executable: bo2.exe -'242980': +"242980": installDir: Daikatana launch: - description: Launch executable: daikatana.exe -'243000': +"243000": installDir: Omikron launch: - description: Launch executable: Runtime.exe -'243020': +"243020": installDir: Pandemonium launch: - description: Launch executable: Pandy3.exe -'2430280': {} -'243040': +"2430280": {} +"243040": installDir: Startopia launch: - description: Launch executable: Startopia.exe -'243060': +"243060": installDir: Urban Chaos launch: - description: Launch executable: fallen.exe -'243120': +"243120": installDir: Betrayer launch: - config: oslist: windows description: Launch - executable: Binaries\\Win32\\Betrayer.exe - workingdir: Binaries\\Win32 -'243140': + executable: "Binaries\\\\Win32\\\\Betrayer.exe" + workingdir: "Binaries\\\\Win32" +"243140": installDir: Glare launch: - config: @@ -122236,7 +119022,7 @@ oslist: linux description: Launch executable: Glare -'243160': +"243160": installDir: Mushroom 11 launch: - config: @@ -122254,7 +119040,7 @@ description: Launch executable: Mushroom_11.sh type: none -'243200': +"243200": installDir: Memoria launch: - config: @@ -122267,19 +119053,19 @@ description: Visionaire Configuration Tool executable: VisionaireConfigurationTool.exe - config: - osarch: '64' + osarch: "64" oslist: macos description: Launch executable: Memoria.app type: default - workingdir: ./ + workingdir: "./" - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: start type: default -'243220': +"243220": installDir: FRACTOSC launch: - config: @@ -122290,8 +119076,8 @@ oslist: macos description: Launch executable: FRACTOSC.app -'243240': {} -'243280': +"243240": {} +"243280": installDir: Poof launch: - config: @@ -122306,7 +119092,7 @@ oslist: linux description: Launch executable: Poof.sh -'243320': +"243320": installDir: Rekoil launch: - arguments: WeaponRange_PC?Game=Rikochet.RGameInfo_MainMenu?modcontent -modcontent @@ -122332,43 +119118,43 @@ description: Launch Workshop Manager (Preview) executable: Binaries/Win32/RekoilShop.exe workingdir: Binaries/Win32 -'243360': +"243360": installDir: ManiaPlanet_TMValley launch: - arguments: /silent //startuptitle=TMValley description: Play executable: ManiaPlanetLauncher.exe type: none - workingdir: .\\ + workingdir: ".\\\\" - description: Launcher executable: ManiaPlanetLauncher.exe - workingdir: .\\ -'243380': + workingdir: ".\\\\" +"243380": installDir: Might & Magic VI launch: - description: Launch executable: MM6.exe -'243450': +"243450": installDir: Urban Trial Freestyle launch: - description: Launch executable: UrbanTrialFreestyle.exe -'243470': +"243470": installDir: Watch_Dogs launch: - - arguments: '-uplay_steam_mode' + - arguments: "-uplay_steam_mode" config: oslist: windows description: Launch - executable: bin\\Watch_Dogs.exe + executable: "bin\\\\Watch_Dogs.exe" workingdir: bin -'243560': +"243560": installDir: Adventure Time Explore the Dungeon Because I DON’T KNOW! launch: - description: Launch Game - executable: Executable\\AdventureTime.exe - workingdir: . -'243780': + executable: "Executable\\\\AdventureTime.exe" + workingdir: "." +"243780": installDir: Monsters launch: - config: @@ -122383,7 +119169,7 @@ oslist: linux description: Launch executable: Monsters.sh -'243800': +"243800": installDir: GasGuzzlersExtreme launch: - config: @@ -122399,36 +119185,36 @@ type: none workingdir: Bin32 - config: - osarch: '64' + osarch: "64" oslist: windows description: Gas Guzzlers Extreme x64 executable: Bin64/GasGuzzlers.exe type: none workingdir: Bin64 - config: - osarch: '64' + osarch: "64" oslist: windows description: Dedicated Server Launcher x64 executable: Bin64/GGDedicatedServerLauncher.exe type: none workingdir: Bin64 -'2438190': +"2438190": installDir: Lethal Crisis launch: - config: oslist: windows executable: Lethal Crisis.exe type: default -'2438200': +"2438200": installDir: Lethal Crisis PS launch: - config: oslist: windows executable: Lethal Crisis PS.exe type: default -'243870': {} -'2439280': {} -'243930': +"243870": {} +"2439280": {} +"243930": installDir: Bound By Flame launch: - config: @@ -122444,15 +119230,15 @@ description: Debug executable: BoundByFlameDO type: none -'243950': +"243950": installDir: Divinity Dragon Commander launch: - config: oslist: windows description: Launch - executable: Shipping\\DCApp.exe + executable: "Shipping\\\\DCApp.exe" workingdir: Shipping -'243970': +"243970": installDir: InvisibleInc launch: - config: @@ -122467,15 +119253,15 @@ oslist: linux description: Launch executable: run-linux.sh -'2439780': {} -'24400': +"2439780": {} +"24400": installDir: King Arthur - The Role-playing Wargame launch: - description: King Arthur - The Role-playing Wargame executable: KingArthur.exe - description: King Arthur - The Role-playing Wargame Multiplayer executable: KingArthurMulti.exe -'244030': +"244030": installDir: Take On Mars launch: - description: Play Take On Mars @@ -122484,7 +119270,7 @@ executable: TKOM_dev.exe - description: Open Launcher executable: TKOM_Loader.exe -'244050': +"244050": installDir: Rise of Flight 2.0 launch: - config: @@ -122492,68 +119278,68 @@ description: Launch executable: bin_game/release/rof.exe workingdir: bin_game/release -'2440510': +"2440510": nameLocalized: schinese: Forza Motorsport 极限竞速 -'244070': - installDir: Sid Meier's Ace Patrol +"244070": + installDir: "Sid Meier's Ace Patrol" launch: - config: oslist: windows description: Launch executable: AcePatrol.exe -'244090': +"244090": installDir: Pacific Skies launch: - config: oslist: windows description: Launch executable: AcePatrol2.exe -'24410': +"24410": installDir: Crusaders Thy Kingdom Come launch: - description: Crusaders - Thy Kingdom Come executable: Loader.exe - - arguments: 'gamestartmode:MultiPlayer' + - arguments: "gamestartmode:MultiPlayer" description: Crusaders - Thy Kingdome Come LAN Multiplayer executable: Loader.exe -'244160': +"244160": installDir: Homeworld launch: - config: oslist: windows description: Homeworld Launcher (NEW) - executable: HWLauncher\\Launcher.exe + executable: "HWLauncher\\\\Launcher.exe" workingdir: HWLauncher - config: oslist: macos description: Homeworld Remastered executable: HomeworldRemastered.app - - arguments: '-params=..\\Params\\HWVR-Baseline.txt -params=..\\Params\\HWVR-Parkinglot.txt' + - arguments: "-params=..\\\\Params\\\\HWVR-Baseline.txt -params=..\\\\Params\\\\HWVR-Parkinglot.txt" config: betakey: mango oslist: windows description: Parkinglot - executable: HomeworldRM\\bin\\Release\\HomeworldRM.exe + executable: "HomeworldRM\\\\bin\\\\Release\\\\HomeworldRM.exe" type: vr - workingdir: HomeworldRM\\bin\\Release - - arguments: '-params=..\\Params\\HWVR-Baseline.txt -params=..\\Params\\HWVR-HW1-Skirmish.txt' + workingdir: "HomeworldRM\\\\bin\\\\Release" + - arguments: "-params=..\\\\Params\\\\HWVR-Baseline.txt -params=..\\\\Params\\\\HWVR-HW1-Skirmish.txt" config: betakey: mango oslist: windows description: HW1 2v2 CPU Spectator - executable: HomeworldRM\\bin\\Release\\HomeworldRM.exe + executable: "HomeworldRM\\\\bin\\\\Release\\\\HomeworldRM.exe" type: vr - workingdir: HomeworldRM\\bin\\Release - - arguments: '-params=..\\Params\\HWVR-Baseline.txt -params=..\\Params\\HWVR-HW2-Skirmish.txt' + workingdir: "HomeworldRM\\\\bin\\\\Release" + - arguments: "-params=..\\\\Params\\\\HWVR-Baseline.txt -params=..\\\\Params\\\\HWVR-HW2-Skirmish.txt" config: betakey: mango oslist: windows description: HW2 2v2 CPU Spectator - executable: HomeworldRM\\bin\\Release\\HomeworldRM.exe + executable: "HomeworldRM\\\\bin\\\\Release\\\\HomeworldRM.exe" type: vr - workingdir: HomeworldRM\\bin\\Release -'24420': + workingdir: "HomeworldRM\\\\bin\\\\Release" +"24420": installDir: Aquaria launch: - config: @@ -122562,7 +119348,7 @@ - config: oslist: linux executable: aquaria -'244210': +"244210": installDir: assettocorsa launch: - config: @@ -122573,14 +119359,14 @@ koreana: 아세토 코르사 Assetto Corsa schinese: 神力科莎 Assetto Corsa tchinese: 出賽準備 Assetto Corsa -'2443360': +"2443360": installDir: Zortch launch: - config: oslist: windows executable: Zortch.exe type: default -'244410': +"244410": installDir: Supreme Ruler 1936 launch: - config: @@ -122591,7 +119377,7 @@ oslist: macos description: Launch executable: SupremeRuler1936.app -'244430': +"244430": installDir: realMyst Masterpiece Edition launch: - config: @@ -122602,7 +119388,7 @@ oslist: macos description: Launch executable: realMyst.app -'244450': +"244450": installDir: Men of War Assault Squad 2 launch: - config: @@ -122613,14 +119399,14 @@ oslist: windows description: Editor executable: mowas_2_ed.exe - - arguments: '-safe' + - arguments: "-safe" description: Safe mode executable: mowas_2.exe - - arguments: '-no_mods' + - arguments: "-no_mods" description: Safe mode (no mods) executable: mowas_2.exe -'2444760': {} -'244590': +"2444760": {} +"244590": installDir: Epigenesis launch: - config: @@ -122628,26 +119414,26 @@ description: Launch executable: Binaries/Win32/Epigenesis.exe workingdir: Binaries/Win32/ -'24460': +"24460": installDir: King Arthur - Fallen Champions launch: - executable: Launcher.exe -'244630': +"244630": installDir: NEOTOKYO launch: - - arguments: '-game NeotokyoSource -steam' + - arguments: "-game NeotokyoSource -steam" config: oslist: windows description: Launch executable: hl2.exe -'244690': +"244690": installDir: Face Noir launch: - config: oslist: windows description: Launch executable: Face Noir.exe -'244710': +"244710": installDir: Shelter launch: - config: @@ -122658,14 +119444,14 @@ oslist: macos description: Launch Game executable: Shelter.app -'244730': +"244730": installDir: Divekick launch: - config: oslist: windows description: Launch executable: DivekickD3D11.exe -'244750': +"244750": installDir: Aztez launch: - config: @@ -122680,29 +119466,29 @@ oslist: linux description: Launch executable: Aztez.x86 -'244770': +"244770": installDir: StarMade launch: - - arguments: '--steam' + - arguments: "--steam" config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: starmade-launcher.exe type: default - - arguments: '--steam' + - arguments: "--steam" config: oslist: linux description: Launch - executable: ./starmade-launcher + executable: "./starmade-launcher" type: default - - arguments: '--steam' + - arguments: "--steam" config: oslist: macos description: Launch executable: starmade-launcher.app/Contents/MacOS/Electron type: default - - arguments: '-steam' + - arguments: "-steam" config: oslist: windows description: with old launcher (Java) @@ -122711,26 +119497,26 @@ - config: oslist: macos description: with old launcher (Java) - executable: ./start + executable: "./start" type: option1 - config: oslist: linux description: with old launcher (Java) - executable: ./start + executable: "./start" type: option1 - - arguments: '--steam' + - arguments: "--steam" config: betakey: test - osarch: '64' + osarch: "64" oslist: windows description: launcher dev build executable: starmade-launcher.exe type: option1 -'24480': +"24480": installDir: KingArthurII launch: - executable: KingArthurII.exe -'244810': +"244810": installDir: Foul Play launch: - config: @@ -122745,22 +119531,22 @@ oslist: linux description: Launch executable: foul_play -'244850': +"244850": installDir: SpaceEngineers launch: - config: - osarch: '32' + osarch: "32" description: Launch - executable: Bin\\SpaceEngineers.exe + executable: "Bin\\\\SpaceEngineers.exe" workingdir: Bin - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch - executable: Bin64\\SpaceEngineers.exe + executable: "Bin64\\\\SpaceEngineers.exe" type: none workingdir: Bin64 -'244870': +"244870": installDir: ElectronicSuperJoy launch: - config: @@ -122775,13 +119561,13 @@ oslist: linux description: Launch executable: ElectronicSuperJoy -'244890': +"244890": installDir: VelocityUltra launch: - description: Launch executable: settings/settings.exe -'2448930': {} -'244910': +"2448930": {} +"244910": installDir: Homesick launch: - config: @@ -122793,16 +119579,16 @@ oslist: macos description: Launch executable: Homesick.app -'244930': +"244930": installDir: SNOW launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: bin\\win_x64\\GameLauncher.exe + executable: "bin\\\\win_x64\\\\GameLauncher.exe" type: default - workingdir: bin\\win_x64 -'244950': + workingdir: "bin\\\\win_x64" +"244950": installDir: Where is my Heart launch: - config: @@ -122813,23 +119599,23 @@ oslist: macos description: Launch executable: Where is my Heart.app -'2450': +"2450": installDir: Bloody Good Time launch: - - arguments: '-steam -game pm' + - arguments: "-steam -game pm" executable: bgt.exe -'24500': +"24500": installDir: Dreamkiller launch: - executable: dreamkiller.exe - description: View Readme executable: localized_readme.exe -'245010': +"245010": installDir: Deathtrap Dungeon launch: - description: Launch executable: dd_cd.exe -'245050': +"245050": installDir: SpellForce 2 - Demons of the Past launch: - config: @@ -122840,9 +119626,9 @@ oslist: windows description: Launch SpellForce 2 Demons of the Past Editor executable: SpellForce2DemonsOfThePastEditor.exe -'2450820': {} -'2451320': {} -'245150': +"2450820": {} +"2451320": {} +"245150": installDir: The Novelist launch: - config: @@ -122854,72 +119640,60 @@ description: Launch executable: The Novelist.app - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: The Novelist.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: The Novelist.x86_64 -'245170': +"245170": installDir: Skullgirls launch: - config: oslist: windows description: Skullgirls - description_loc: - english: Skullgirls executable: Skullgirls.exe type: option1 - config: oslist: macos description: Skullgirls - description_loc: - english: Skullgirls executable: Skullgirls.app type: option1 - config: - osarch: '64' + osarch: "64" oslist: linux description: Skullgirls - description_loc: - english: Skullgirls executable: Skullgirls.x86_64-pc-linux-gnu type: option1 - config: oslist: windows description: Skullgirls Beta (Multiplayer Refactor) - description_loc: - english: Skullgirls Beta (Multiplayer Refactor) executable: SGBeta/Skullgirls.exe type: option2 - config: oslist: macos description: Skullgirls Beta (Multiplayer Refactor) - description_loc: - english: Skullgirls Beta (Multiplayer Refactor) executable: SGBeta/Skullgirls.app type: option2 - config: - osarch: '64' + osarch: "64" oslist: linux description: Skullgirls Beta (Multiplayer Refactor) - description_loc: - english: Skullgirls Beta (Multiplayer Refactor) executable: SGBeta/Skullgirls.x86_64-pc-linux-gnu type: option2 -'245280': +"245280": installDir: Enslaved launch: - - arguments: '-NOSPLASH' + - arguments: "-NOSPLASH" config: oslist: windows description: Launch Shipping - executable: Binaries\\Win32\\Enslaved.exe + executable: "Binaries\\\\Win32\\\\Enslaved.exe" workingdir: Binaries -'245300': +"245300": installDir: Disney Epic Mickey 2 launch: - config: @@ -122930,62 +119704,62 @@ oslist: windows description: Run the Launcher (Configure game settings) executable: Launch.exe -'245370': +"245370": installDir: Etherium launch: - executable: Etherium.exe -'245390': +"245390": installDir: IHNMAIMS launch: - - arguments: '--no-console -c \"scummvm-ihnmaims-opengl.ini\" ihnm' + - arguments: "--no-console -c \\\"scummvm-ihnmaims-opengl.ini\\\" ihnm" config: oslist: windows description: Launch - executable: ScummVM_Windows\\scummvm.exe + executable: "ScummVM_Windows\\\\scummvm.exe" type: default - workingdir: ScummVM_Windows\\ - - arguments: '--no-console -c \"scummvm-ihnmaims-safe.ini\" ihnm' + workingdir: "ScummVM_Windows\\\\" + - arguments: "--no-console -c \\\"scummvm-ihnmaims-safe.ini\\\" ihnm" config: oslist: windows description: Play in Safe Graphics Mode - executable: ScummVM_Windows\\scummvm.exe + executable: "ScummVM_Windows\\\\scummvm.exe" type: none - workingdir: ScummVM_Windows\\ - - arguments: '-c scummvm-ihnmaims-opengl.ini ihnm' + workingdir: "ScummVM_Windows\\\\" + - arguments: "-c scummvm-ihnmaims-opengl.ini ihnm" config: oslist: macos description: Launch - executable: ScummVM_Mac\\ScummVM.app\\Contents\\MacOS\\scummvm + executable: "ScummVM_Mac\\\\ScummVM.app\\\\Contents\\\\MacOS\\\\scummvm" type: default - workingdir: ScummVM_Mac\\ - - arguments: '-c scummvm-ihnmaims-safe.ini ihnm' + workingdir: "ScummVM_Mac\\\\" + - arguments: "-c scummvm-ihnmaims-safe.ini ihnm" config: oslist: macos description: Play in Safe Graphics Mode - executable: ScummVM_Mac\\ScummVM.app\\Contents\\MacOS\\scummvm + executable: "ScummVM_Mac\\\\ScummVM.app\\\\Contents\\\\MacOS\\\\scummvm" type: none - workingdir: ScummVM_Mac\\ + workingdir: "ScummVM_Mac\\\\" - config: oslist: linux - executable: ScummVM_Linux\\launch_ihnmaims_opengl.sh + executable: "ScummVM_Linux\\\\launch_ihnmaims_opengl.sh" type: default - workingdir: ScummVM_Linux\\ + workingdir: "ScummVM_Linux\\\\" - config: oslist: linux description: Play in Safe Graphics Mode - executable: ScummVM_Linux\\launch_ihnmaims_safe.sh + executable: "ScummVM_Linux\\\\launch_ihnmaims_safe.sh" type: none - workingdir: ScummVM_Linux\\ -'245410': + workingdir: "ScummVM_Linux\\\\" +"245410": installDir: Wizardry6 launch: - - arguments: '-conf dosbox_wizardry6.conf -conf dosbox_wizardry6_launch_windows.conf -noconsole' + - arguments: "-conf dosbox_wizardry6.conf -conf dosbox_wizardry6_launch_windows.conf -noconsole" config: oslist: windows description: Play Wizardry 6 executable: dosbox_windows/dosbox.exe workingdir: dosbox_windows/ - - arguments: '-conf dosbox_wizardry6.conf -conf dosbox_wizardry6_launch_windows.conf -noconsole' + - arguments: "-conf dosbox_wizardry6.conf -conf dosbox_wizardry6_launch_windows.conf -noconsole" config: oslist: windows description: Play Wizardry 6 with DOSBox Daum @@ -123005,41 +119779,41 @@ oslist: macos description: Launch Wizardry 6 executable: Wizardry 6.app -'245430': +"245430": installDir: Wizardry7 launch: - - arguments: '-conf dosbox_wizardry7.conf -conf dosbox_wizardry7_launch_windows.conf -noconsole' + - arguments: "-conf dosbox_wizardry7.conf -conf dosbox_wizardry7_launch_windows.conf -noconsole" config: oslist: windows - description: 'Play Wizardry 7: COTDS (MS-DOS)' + description: "Play Wizardry 7: COTDS (MS-DOS)" executable: dosbox_windows/dosbox.exe workingdir: dosbox_windows/ - - arguments: '-conf dosbox_wizardry7.conf -conf dosbox_wizardry7_launch_windows.conf -noconsole' + - arguments: "-conf dosbox_wizardry7.conf -conf dosbox_wizardry7_launch_windows.conf -noconsole" config: oslist: windows - description: 'Play Wizardry 7: COTDS (MS-DOS) with DOSBox Daum' + description: "Play Wizardry 7: COTDS (MS-DOS) with DOSBox Daum" executable: dosbox_windows/daum/dosbox.exe workingdir: dosbox_windows/daum/ - config: oslist: windows - description: 'Play Wizardry 7: COTDS Gold Edition' + description: "Play Wizardry 7: COTDS Gold Edition" executable: wizardry7gold/WIZARD.EXE workingdir: wizardry7gold/ - config: oslist: linux - description: 'Play Wizardry 7: COTDS (MS-DOS)' + description: "Play Wizardry 7: COTDS (MS-DOS)" executable: dosbox_linux/launch_wizardry7_game.sh workingdir: dosbox_linux/ - config: oslist: linux - description: 'Play Wizardry 7: COTDS (MS-DOS) with DOSBox Daum' + description: "Play Wizardry 7: COTDS (MS-DOS) with DOSBox Daum" executable: dosbox_linux/daum/launch_wizardry7_game_daum.sh workingdir: dosbox_linux/daum/ - config: oslist: macos description: Play Wizardry 7 executable: Wizardry 7.app -'245450': +"245450": installDir: Wizardry8 launch: - config: @@ -123060,7 +119834,7 @@ description: Launch executable: Wizardry 8.app type: default -'245470': +"245470": installDir: Democracy 3 launch: - config: @@ -123072,27 +119846,27 @@ description: Launch executable: Democracy3.app - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: Democracy3.bin.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Democracy3.bin.x86_64 type: default -'245490': +"245490": installDir: Trials Fusion launch: - - arguments: '-uplay_steam_mode' + - arguments: "-uplay_steam_mode" config: oslist: windows description: Launch Trials Fusion - executable: datapack\\trials_fusion.exe + executable: "datapack\\\\trials_fusion.exe" workingdir: datapack -'245620': +"245620": installDir: Tropico 5 launch: - config: @@ -123107,31 +119881,31 @@ oslist: linux description: Launch executable: Tropico5 -'2456960': {} -'2457220': {} -'245730': +"2456960": {} +"2457220": {} +"245730": installDir: Flashback launch: - - arguments: '-uplay_steam_mode' + - arguments: "-uplay_steam_mode" config: oslist: windows description: Launch executable: Binaries/Win32/Flashback.exe -'245760': +"245760": installDir: Transformers - Rise of the Dark Spark launch: - description: Launch executable: Binaries/TransGame.exe workingdir: Binaries -'2458830': {} -'2458980': {} -'2459750': +"2458830": {} +"2458980": {} +"2459750": nameLocalized: english: Yohane the Parhelion - NUMAZU in the MIRAGE - japanese: 幻日のヨハネ - NUMAZU in the MIRAGE - schinese: 幻日夜羽 - 蜃景努玛梓 - tchinese: 幻日夜羽 - 蜃景努瑪梓 - -'246070': +"246070": installDir: HacknSlash launch: - config: @@ -123146,7 +119920,7 @@ oslist: linux description: Launch executable: Hack -'246090': +"246090": installDir: SpacebaseDF9 launch: - config: @@ -123161,7 +119935,7 @@ oslist: linux description: Launch executable: Space -'246110': +"246110": installDir: Massive Chalice launch: - config: @@ -123176,20 +119950,20 @@ oslist: linux description: Launch (1.0) executable: MC -'2461850': {} -'246280': +"2461850": {} +"246280": installDir: HappyWars launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: HappyWars executable: Launcher.exe -'24630': +"24630": installDir: Trainz Sim 2010 launch: - executable: trainz.exe -'246300': +"246300": installDir: paranormal launch: - config: @@ -123202,44 +119976,44 @@ description: Paranormal executable: Paranormal.app - config: - osarch: '64' + osarch: "64" oslist: windows - description: 'Paranormal: UE4 ALPHA V007' + description: "Paranormal: UE4 ALPHA V007" executable: WindowsNoEditor/Paranormal.exe type: none workingdir: WindowsNoEditor - config: oslist: macos - description: 'Paranormal: UE4 Playable Teaser 1' + description: "Paranormal: UE4 Playable Teaser 1" executable: PT1/ParanormalPT1.app workingdir: PT1 - config: - osarch: '32' + osarch: "32" oslist: windows - description: 'Paranormal: UE4 ALPHA V003 (32-bit)' + description: "Paranormal: UE4 ALPHA V003 (32-bit)" executable: WindowsNoEditor/Paranormal.exe type: none workingdir: WindowsNoEditor -'246360': +"246360": installDir: Perfection launch: - config: oslist: windows description: Launch - executable: PC\\Perfection.-win-steam.exe + executable: "PC\\\\Perfection.-win-steam.exe" - config: oslist: macos description: Launch - executable: Mac\\Perfection.app + executable: "Mac\\\\Perfection.app" - config: oslist: linux description: Launch - executable: Unix\\runner -'24640': + executable: "Unix\\\\runner" +"24640": installDir: Trainz Sim 2010 launch: - executable: trainz.exe -'246420': +"246420": installDir: Kingdom Rush launch: - config: @@ -123304,47 +120078,45 @@ description: Launch debug version executable: run.sh type: none -'2464280': {} -'2464520': +"2464280": {} +"2464520": nameLocalized: schinese: 德波尼亚求生 - Surviving Deponia -'2464660': {} -'2464670': +"2464660": {} +"2464670": installDir: Take No Prisoners launch: - executable: tnp.exe type: default -'2464680': +"2464680": installDir: Necrodome launch: - executable: NECRO95.EXE type: default -'2464690': +"2464690": installDir: CyClones launch: - - arguments: '-noconsole -conf cyclones-base.conf -conf cyclones-graphics.conf -conf cyclones-game.conf' - executable: .\\DOSBOX\\dosbox.exe + - arguments: "-noconsole -conf cyclones-base.conf -conf cyclones-graphics.conf -conf cyclones-game.conf" + executable: ".\\\\DOSBOX\\\\dosbox.exe" type: default - - arguments: '-conf cyclones-graphics.conf' + - arguments: "-conf cyclones-graphics.conf" description: Graphics settings - description_loc: - english: Graphics settings - executable: .\\DOSBOX\\ConfigTool.exe + executable: ".\\\\DOSBOX\\\\ConfigTool.exe" type: config -'24650': +"24650": installDir: Trainz Sim 2010 launch: - executable: trainz.exe -'246580': +"246580": installDir: Typing of the Dead Overkill launch: - description: Launch executable: HOTD_NG.exe -'24660': +"24660": installDir: Trainz Sim 2010 launch: - executable: trainz.exe -'246620': +"246620": installDir: PlagueInc launch: - config: @@ -123359,7 +120131,7 @@ oslist: linux description: Launch executable: PlagueIncEvolved.x86 -'246680': +"246680": installDir: Secrets of Raetikon launch: - config: @@ -123371,40 +120143,40 @@ description: Launch executable: Raetikon.exe - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch (32 bit) executable: Raetikon - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch (64 bit) executable: Raetikon64 -'24670': +"24670": installDir: TS2012 launch: - executable: trainz.exe -'246700': +"246700": installDir: StrikeVector launch: - arguments: SW_02 config: oslist: windows description: Launch - executable: Binaries\\Win32\\udk.exe - workingdir: Binaries\\Win32 -'246720': + executable: "Binaries\\\\Win32\\\\udk.exe" + workingdir: "Binaries\\\\Win32" +"246720": installDir: WaywardManor launch: - config: oslist: windows description: Launch - executable: Wayward Manor Windows\\WaywardManor.exe + executable: "Wayward Manor Windows\\\\WaywardManor.exe" - config: oslist: macos description: Launch executable: WaywardManor.app -'246740': +"246740": installDir: Huntsman The Orphanage launch: - config: @@ -123415,7 +120187,7 @@ oslist: macos description: Game Launch executable: H-TO.app -'246760': +"246760": installDir: Eisenwald launch: - config: @@ -123424,7 +120196,7 @@ executable: Eisenwald.exe nameLocalized: russian: Легенды Эйзенвальда -'246800': +"246800": installDir: BeatBlastersIII launch: - config: @@ -123436,31 +120208,31 @@ description: Launch executable: BeatBlastersIII.app - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: BeatBlastersIII - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: BeatBlastersIII -'246820': +"246820": installDir: Jeklynn Heights launch: - - arguments: '-seekfreeloadingpc' + - arguments: "-seekfreeloadingpc" config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: Binaries/Win32/UDK.exe type: none -'246840': +"246840": installDir: FATE launch: - description: Launch executable: fate.exe -'246880': +"246880": installDir: Recruits launch: - config: @@ -123468,7 +120240,7 @@ description: Launch Game executable: Binaries/Win32/UDK.exe workingdir: Binaries/Win32/ -'246900': +"246900": installDir: Viscera launch: - config: @@ -123477,7 +120249,7 @@ executable: Binaries/win32/UDK.exe type: none - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch 64bit executable: Binaries/win64/UDK.exe @@ -123486,13 +120258,13 @@ oslist: macos description: Launch Mac executable: VisceraCleanup.app - - arguments: ' editor' + - arguments: " editor" config: oslist: windows description: Launch Editor executable: Binaries/UDKLift.exe type: none -'246920': +"246920": installDir: Bombernauts launch: - config: @@ -123507,19 +120279,19 @@ oslist: linux description: Launch executable: Bombernauts.x86 -'246940': +"246940": installDir: Lords of the Black Sun launch: - config: oslist: windows executable: Lords of the Black Sun.exe -'246960': +"246960": installDir: GSTD - Rise of the Owlverlord launch: - description: Launch - executable: launcher\\GSLauncher.exe + executable: "launcher\\\\GSLauncher.exe" workingdir: launcher -'246980': +"246980": installDir: InFlux launch: - config: @@ -123532,7 +120304,7 @@ description: Launch executable: InFlux.app workingdir: InFlux.app -'247000': +"247000": installDir: Talisman launch: - config: @@ -123543,7 +120315,7 @@ oslist: macos description: Launch executable: talisman.app -'247020': +"247020": installDir: CookServeDelicious launch: - config: @@ -123559,120 +120331,110 @@ description: Launch executable: Cook Serve Delicious.app type: none -'247080': +"247080": installDir: Crypt of the NecroDancer launch: - - arguments: '1' + - arguments: "1" config: oslist: windows description: Launch full screen executable: NecroDancer.exe - - arguments: '0' + - arguments: "0" config: oslist: windows description: Launch in windowed mode executable: NecroDancer.exe - - arguments: '1' + - arguments: "1" config: oslist: macos description: Launch full screen executable: NecroDancer.app - - arguments: '0' + - arguments: "0" config: oslist: macos description: Launch in windowed mode executable: NecroDancer.app - - arguments: '1' + - arguments: "1" config: oslist: linux description: Launch full screen executable: NecroDancer.sh - - arguments: '0' + - arguments: "0" config: oslist: linux description: Launch in windowed mode executable: NecroDancer.sh - config: - osarch: '64' + osarch: "64" oslist: windows - ownsdlc: '1985570' + ownsdlc: "1985570" description: DLC64 - description_loc: - english: DLC64 executable: Beta64/Necrodancer.exe workingdir: Beta64 - config: - osarch: '32' + osarch: "32" oslist: windows - ownsdlc: '1985570' + ownsdlc: "1985570" description: DLC32 - description_loc: - english: DLC32 executable: Beta/Necrodancer.exe workingdir: Beta - - arguments: '1' + - arguments: "1" config: betakey: experimental_client - osarch: '32' + osarch: "32" oslist: windows description: Launch Fullscreen Experimental Client - description_loc: - english: Launch Fullscreen Experimental Client - executable: Necrodancer\\Necrodancer.exe + executable: "Necrodancer\\\\Necrodancer.exe" workingdir: Necrodancer - - arguments: '1' + - arguments: "1" config: betakey: experimental_client - osarch: '64' + osarch: "64" oslist: windows description: Launch Fullscreen Experimental Client - description_loc: - english: Launch Fullscreen Experimental Client - executable: Necrodancer64\\Necrodancer.exe + executable: "Necrodancer64\\\\Necrodancer.exe" workingdir: Necrodancer64 - config: - osarch: '64' + osarch: "64" oslist: linux - ownsdlc: '1985570' + ownsdlc: "1985570" description: DLC64 Linux - description_loc: - english: DLC64 Linux executable: Beta64/NecroDancer workingdir: Beta64 -'2471120': +"2471120": installDir: Rocket Jockey launch: - executable: Jockey.exe type: default -'2471130': +"2471130": installDir: Obsidian launch: - - arguments: '--no-console --music-driver=windows --zoom-splash=white -c \"obsidian-win.ini\" obsidian-win' + - arguments: "--no-console --music-driver=windows --zoom-splash=white -c \\\"obsidian-win.ini\\\" obsidian-win" config: oslist: windows - executable: ScummVM\\scummvm.exe + executable: "ScummVM\\\\scummvm.exe" type: default - config: oslist: macos executable: start.sh type: default - - arguments: '--zoom-splash=white -c \"obsidian-win.ini\" obsidian-win' + - arguments: "--zoom-splash=white -c \\\"obsidian-win.ini\\\" obsidian-win" config: oslist: linux executable: scummvm/scummvm type: default nameLocalized: japanese: オブシディアン -'2471140': {} -'2471150': {} -'2471160': {} -'2471170': {} -'247120': +"2471140": {} +"2471150": {} +"2471160": {} +"2471170": {} +"247120": installDir: Portal 2 Sixense Perceptual Pack launch: - description: Launch executable: portal2.exe -'247140': +"247140": installDir: Soundodger launch: - config: @@ -123683,7 +120445,7 @@ oslist: macos description: Launch executable: soundodgerplus.app -'247240': +"247240": installDir: Volgarr launch: - config: @@ -123698,75 +120460,71 @@ oslist: macos description: Launch executable: Volgarr.app -'247310': +"247310": installDir: Gravi launch: - config: oslist: windows description: Gravi - Puzzle Platformer executable: Gravi_Steam_v1.13b.exe -'247350': +"247350": installDir: Artemis launch: - config: oslist: windows description: Launch executable: Artemis.exe -'247370': +"247370": installDir: MutantMuddsDeluxe launch: - config: oslist: windows description: Launch executable: MutantMuddsDeluxeSteam.exe -'24740': +"24740": installDir: Burnout(TM) Paradise The Ultimate Box launch: - executable: BurnoutParadise.exe - description: Configuration executable: BurnoutConfigTool.exe - description: View Support Information - executable: .\\Support\\EA Help\\Electronic_Arts_Technical_Support.htm -'247430': + executable: ".\\\\Support\\\\EA Help\\\\Electronic_Arts_Technical_Support.htm" +"247430": installDir: Hitman Contracts launch: - description: Launch executable: HitmanContracts.exe -'2475790': +"2475790": installDir: War Of Being launch: - config: - osarch: '64' + osarch: "64" oslist: windows - description: 'War of Being (VR) ' - description_loc: - english: 'War of Being (VR) ' + description: "War of Being (VR) " executable: WarOfBeing.exe type: vr - - arguments: '-nohmd' + - arguments: "-nohmd" config: - osarch: '64' + osarch: "64" oslist: windows description: War of Being (No VR) - description_loc: - english: War of Being (No VR) executable: WarOfBeing.exe type: option2 -'247580': +"247580": installDir: MagickaWotST launch: - config: oslist: windows description: Launch executable: iMagicka.exe -'247660': - installDir: Deadly Premonition The Director's Cut +"247660": + installDir: "Deadly Premonition The Director's Cut" launch: - config: oslist: windows description: Launch executable: DPLauncher.exe -'2477090': +"2477090": installDir: Mosa Lina launch: - config: @@ -123775,32 +120533,32 @@ - config: oslist: linux executable: Mosa Lina -'247730': +"247730": installDir: Nether launch: - description: Run Nether - executable: Game\\Binaries\\Win64\\Nether.exe + executable: "Game\\\\Binaries\\\\Win64\\\\Nether.exe" type: none - workingdir: Game\\ -'247770': - installDir: Cabela's Big Game Hunter Pro Hunts + workingdir: "Game\\\\" +"247770": + installDir: "Cabela's Big Game Hunter Pro Hunts" launch: - executable: bgh_2014.exe -'24780': +"24780": installDir: SimCity 4 Deluxe launch: - config: oslist: windows - executable: Apps\\SimCity 4.exe + executable: "Apps\\\\SimCity 4.exe" - config: oslist: windows description: View Support Information - executable: Support\\EA Help\\Electronic_Arts_Technical_Support.htm + executable: "Support\\\\EA Help\\\\Electronic_Arts_Technical_Support.htm" - config: oslist: macos executable: Sim City 4 Deluxe Edition.app -'2478020': {} -'247870': +"2478020": {} +"247870": installDir: Redshirt launch: - config: @@ -123815,22 +120573,22 @@ oslist: linux description: Launch executable: Redshirt.sh -'2478970': {} -'24790': +"2478970": {} +"24790": installDir: Command and Conquer 3 Tiberium Wars launch: - executable: CNC3.exe - description: View Support Information - executable: Support\\EA Help\\Electronic_Arts_Technical_Support.htm -'247910': + executable: "Support\\\\EA Help\\\\Electronic_Arts_Technical_Support.htm" +"247910": installDir: Sniper Elite Nazi Zombie Army 2 launch: - description: Launch - executable: bin\\NZA2.exe -'2479230': + executable: "bin\\\\NZA2.exe" +"2479230": installDir: Planet X3 launch: - - arguments: '-noconsole -conf px3.conf' + - arguments: "-noconsole -conf px3.conf" config: oslist: windows executable: Windows/dosbox.exe @@ -123839,18 +120597,18 @@ oslist: macos executable: px3.command type: default -'247950': +"247950": installDir: Sacred 3 launch: - description: Launch Sacred 3 executable: sacred3.exe -'24800': +"24800": installDir: Command and Conquer Red Alert 3 Uprising launch: - executable: RA3EP1.exe - description: View Support Information - executable: Support\\EA Help\\Electronic_Arts_Technical_Support.htm -'248190': + executable: "Support\\\\EA Help\\\\Electronic_Arts_Technical_Support.htm" +"248190": installDir: Knytt Underground launch: - config: @@ -123865,13 +120623,13 @@ oslist: linux description: Launch Linux executable: run.sh -'24820': +"24820": installDir: The Godfather launch: - executable: The Godfather The Game.exe - description: View Support Information - executable: Support\\EA Help\\Electronic_Arts_Technical_Support.htm -'248270': + executable: "Support\\\\EA Help\\\\Electronic_Arts_Technical_Support.htm" +"248270": installDir: Songs2See launch: - arguments: 6zu78uimmn32p9 @@ -123886,18 +120644,18 @@ description: Play Songs2See Game executable: Songs2See Game/Songs2See Game.app/Contents/MacOS/Songs2See Game workingdir: Songs2See Game -'248290': +"248290": installDir: ReachForTheSun launch: - description: Launch executable: ReachForTheSun.exe -'24830': +"24830": installDir: Godfather 2 launch: - executable: godfather2.exe - description: View Support Information - executable: Support\\EA Help\\Electronic_Arts_Technical_Support.htm -'248310': + executable: "Support\\\\EA Help\\\\Electronic_Arts_Technical_Support.htm" +"248310": installDir: Freedom Planet launch: - config: @@ -123912,7 +120670,7 @@ oslist: macos executable: Freedom Planet.app type: default -'248330': +"248330": installDir: DinoRunDX launch: - config: @@ -123923,19 +120681,19 @@ oslist: macos executable: Dino Run DX.app type: default -'248350': +"248350": installDir: Omegalodon launch: - config: oslist: windows description: Launch executable: Omegalodon.exe -'248370': +"248370": installDir: Bridge It (plus) launch: - description: Launch executable: BridgeIt.exe -'248390': +"248390": installDir: CraftTheWorld launch: - config: @@ -123950,21 +120708,21 @@ oslist: windows executable: editor.exe type: editor - - arguments: '-video:d3d9' + - arguments: "-video:d3d9" config: oslist: windows description: Craft The World (d3d9) executable: CraftWorld.exe type: option1 -'24840': +"24840": installDir: Medal of Honor Airborne launch: - - executable: UnrealEngine3\\Binaries\\MOHA.exe - workingdir: UnrealEngine3\\Binaries + - executable: "UnrealEngine3\\\\Binaries\\\\MOHA.exe" + workingdir: "UnrealEngine3\\\\Binaries" - description: View Support Information - executable: Support\\EA Help\\Electronic_Arts_Technical_Support.htm - workingdir: UnrealEngine3\\Binaries -'248410': + executable: "Support\\\\EA Help\\\\Electronic_Arts_Technical_Support.htm" + workingdir: "UnrealEngine3\\\\Binaries" +"248410": installDir: LegendsOfAethereus launch: - config: @@ -123979,8 +120737,8 @@ oslist: macos description: Launch executable: Loa.app -'2484110': {} -'248450': +"2484110": {} +"248450": installDir: SalvationProphecy launch: - config: @@ -123993,7 +120751,7 @@ description: Launch executable: build/release/SalvationProphecy workingdir: build/release -'248470': +"248470": installDir: Doorways Prelude launch: - config: @@ -124010,18 +120768,18 @@ oslist: macos description: Launch Doorways executable: Doorways.app -'248490': +"248490": installDir: 1953 - KGB Unleashed launch: - executable: Bin/Phobos.exe workingdir: Bin -'24850': +"24850": installDir: FIFA Manager 10 launch: - executable: Manager10.exe - description: View Support Information - executable: Support\\EA Help\\Electronic_Arts_Technical_Support.htm -'248510': + executable: "Support\\\\EA Help\\\\Electronic_Arts_Technical_Support.htm" +"248510": installDir: Dominions3 launch: - config: @@ -124036,14 +120794,14 @@ oslist: macos description: Launch executable: Dominions3.app/Contents/MacOS/Dominions3 -'248530': +"248530": installDir: DepthHunter2 launch: - config: oslist: windows description: Launch executable: dh2.exe -'248550': +"248550": installDir: MegabytePunch launch: - config: @@ -124058,7 +120816,7 @@ oslist: macos description: Launch executable: MegabytePunch.app -'248570': +"248570": installDir: Toribash launch: - config: @@ -124076,14 +120834,14 @@ description: Play Toribash executable: toribash_steam type: default -'248590': {} -'24860': +"248590": {} +"24860": installDir: Battlefield 2 launch: - executable: BF2.exe - description: View Support Information - executable: Support\\EA Help\\Electronic_Arts_Technical_Support.htm -'248610': + executable: "Support\\\\EA Help\\\\Electronic_Arts_Technical_Support.htm" +"248610": installDir: DoorKickers launch: - config: @@ -124098,7 +120856,7 @@ oslist: linux executable: DoorKickers type: default -'248630': +"248630": installDir: KingdomsRise launch: - config: @@ -124106,20 +120864,20 @@ description: Launch executable: KR.exe type: none -'248650': +"248650": installDir: DrawAStickmanEpic launch: - config: oslist: windows description: Launch executable: DrawAStickman.Steam.exe -'24870': +"24870": installDir: Need For Speed Shift launch: - executable: Shift.exe - description: View Support Information - executable: Support\\EA Help\\Electronic_Arts_Technical_Support.htm -'248710': + executable: "Support\\\\EA Help\\\\Electronic_Arts_Technical_Support.htm" +"248710": installDir: Iesabel launch: - config: @@ -124134,12 +120892,12 @@ oslist: macos description: Launch executable: Iesabel.app -'248730': +"248730": installDir: AWalkInTheDark launch: - description: Launch executable: AWalkInTheDark.exe -'248800': +"248800": installDir: DysfunctionalSystemsEpisode1 launch: - config: @@ -124154,7 +120912,7 @@ oslist: macos description: Mac Launch executable: Dysfunctional Systems - Episode 1.app -'248820': +"248820": installDir: Risk of Rain launch: - config: @@ -124170,7 +120928,7 @@ oslist: linux description: Launch executable: run.sh -'248860': +"248860": installDir: NEO Scavenger launch: - config: @@ -124185,7 +120943,7 @@ oslist: linux description: Launch executable: NEOScavenger -'248970': +"248970": installDir: Vector launch: - arguments: fullscreen 1 @@ -124198,20 +120956,20 @@ oslist: windows description: Launch in Window executable: launch.exe -'249050': +"249050": installDir: Dungeon of the Endless launch: - - arguments: '-single-instance' + - arguments: "-single-instance" config: oslist: windows description: Launch executable: DungeonoftheEndless.exe - - arguments: '-single-instance' + - arguments: "-single-instance" config: oslist: macos description: Launch executable: DungeonoftheEndless.app -'249130': +"249130": installDir: LEGO Marvel Super Heroes launch: - config: @@ -124222,7 +120980,7 @@ oslist: macos description: Launch executable: LEGO Marvel Super Heroes.app -'249190': +"249190": installDir: AncientSpace launch: - config: @@ -124233,19 +120991,19 @@ oslist: macos description: Launch executable: Ancient_Space.app -'249230': +"249230": installDir: Risen 3 launch: - config: oslist: windows description: Launch executable: system/Risen3.exe -'2492390': +"2492390": installDir: LogiartGrimoire launch: - executable: game.exe type: none -'249330': +"249330": installDir: Unholy Heights launch: - config: @@ -124254,7 +121012,7 @@ executable: UnholyHeights.exe nameLocalized: japanese: メゾン・ド・魔王 -'249360': +"249360": installDir: ZafehouseDiaries launch: - config: @@ -124265,32 +121023,32 @@ oslist: windows description: Run diagnostics and troubleshooting tool executable: ZafeDiag.exe -'249380': +"249380": installDir: Carmageddon_Reincarnation launch: - config: oslist: windows description: Launch - executable: bin\\Carmageddon_Reincarnation.exe - - arguments: '-carmodgeddon' + executable: "bin\\\\Carmageddon_Reincarnation.exe" + - arguments: "-carmodgeddon" config: oslist: windows description: Launch CarMODgeddon mode - executable: bin\\Carmageddon_Reincarnation.exe - - arguments: '-disable_game_threading' + executable: "bin\\\\Carmageddon_Reincarnation.exe" + - arguments: "-disable_game_threading" config: oslist: windows description: Launch in Safe Mode - executable: bin\\Carmageddon_Reincarnation.exe + executable: "bin\\\\Carmageddon_Reincarnation.exe" type: none -'249550': +"249550": installDir: NEStalgia launch: - config: oslist: windows description: Launch executable: NEStalgia.exe -'249570': +"249570": installDir: CastleDoctrine launch: - config: @@ -124305,7 +121063,7 @@ oslist: linux description: Linux launch executable: steamGateClient -'249590': +"249590": installDir: Teslagrad launch: - config: @@ -124320,20 +121078,20 @@ oslist: linux description: Launch executable: Teslagrad -'24960': +"24960": installDir: Battlefield Bad Company 2 launch: - executable: BFBC2Game.exe - description: View Support Information - executable: Support\\EA Help\\Electronic_Arts_Technical_Support.htm -'249610': + executable: "Support\\\\EA Help\\\\Electronic_Arts_Technical_Support.htm" +"249610": installDir: GalacticArmsRace launch: - config: oslist: windows description: Launch executable: GAR Client 1.2.exe -'249630': +"249630": installDir: Delver launch: - config: @@ -124349,7 +121107,7 @@ oslist: linux description: Launch executable: run-delver.sh -'249650': +"249650": installDir: Blackguards launch: - config: @@ -124360,60 +121118,56 @@ oslist: macos description: Launch executable: Blackguards.app -'249680': +"249680": installDir: Marlow Briggs launch: - description: Launch executable: kick_win.exe -'2496830': +"2496830": installDir: Commander Keen launch: - config: oslist: windows executable: Commander Keen in Keen Dreams Definitive Edition.exe -'2496850': +"2496850": installDir: Bombshell Barista Speed Dating launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch - description_loc: - english: Launch executable: BBSD.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch - description_loc: - english: Launch executable: BBSD.exe type: default -'24980': +"24980": installDir: Mass Effect 2 launch: - - arguments: '' + - arguments: "" description: Default - executable: Binaries\\MassEffect2.exe - - arguments: '' + executable: "Binaries\\\\MassEffect2.exe" + - arguments: "" description: Mass Effect 2 Launcher executable: MassEffect2Launcher.exe - description: View Support Information - executable: docs\\EAHelp\\Electronic_Arts_Technical_Support.htm -'249870': + executable: "docs\\\\EAHelp\\\\Electronic_Arts_Technical_Support.htm" +"249870": installDir: Scribblenauts Unmasked launch: - description: Play Scribblenauts Unmasked executable: scribble.exe -'249930': +"249930": installDir: A-Train8DL launch: - description: Launch executable: A-Train8DL.exe - description: A-Train8 Settings executable: A-Train8ConfigDL.exe -'249950': +"249950": installDir: ForgeQuest launch: - config: @@ -124425,21 +121179,21 @@ description: Launch executable: Forge Quest Rpg.app - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: GameClient - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: GameClient -'2499780': {} -'2499800': {} -'249990': +"2499780": {} +"2499800": {} +"249990": installDir: FORCED launch: - - arguments: '-force-d3d9' + - arguments: "-force-d3d9" config: oslist: windows description: Launch @@ -124454,7 +121208,7 @@ oslist: linux description: Automatic Launch executable: run_steam.sh -'2500': +"2500": installDir: Shadowgrounds launch: - config: @@ -124467,7 +121221,7 @@ - config: oslist: macos executable: shadowgrounds.app -'25000': +"25000": installDir: Overgrowth launch: - config: @@ -124477,7 +121231,7 @@ oslist: macos executable: Overgrowth.app - config: - osarch: '64' + osarch: "64" oslist: linux executable: Overgrowth.bin.x86_64 type: none @@ -124486,7 +121240,7 @@ description: Play Overgrowth (Force 32bit) executable: Overgrowth.bin.x86 type: none -'250030': +"250030": installDir: Lilly Looking Through launch: - config: @@ -124496,8 +121250,8 @@ - config: oslist: macos description: Launch - executable: LillyLookingThrough.app\\Contents\\MacOS\\LillyLookingThrough -'250050': + executable: "LillyLookingThrough.app\\\\Contents\\\\MacOS\\\\LillyLookingThrough" +"250050": installDir: Life Goes On launch: - config: @@ -124509,16 +121263,16 @@ description: Launch executable: Life Goes On.app - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: Life Goes On.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Life Goes On.x86_64 -'250070': +"250070": installDir: TorqueL launch: - config: @@ -124530,11 +121284,11 @@ description: Launch executable: TorqueL.app - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: TorqueL.x86 -'25010': +"25010": installDir: Lugaru HD launch: - config: @@ -124546,7 +121300,7 @@ - config: oslist: linux executable: Lugaru -'250110': +"250110": installDir: Assault Android Cactus launch: - config: @@ -124560,30 +121314,30 @@ executable: cactus_osx.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: cactus.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch 64-bit executable: cactus.x86_64 type: default -'250180': +"250180": installDir: Metal Slug 3 launch: - config: oslist: windows description: Launch executable: mslug3.exe -'250200': - installDir: Cabela's African Adventures +"250200": + installDir: "Cabela's African Adventures" launch: - executable: bin/CAA_Main.exe workingdir: bin -'250240': +"250240": installDir: Racing Manager 2014 launch: - config: @@ -124594,7 +121348,7 @@ oslist: macos description: Launch executable: RacingManager2014.app -'250260': +"250260": installDir: Jazzpunk launch: - config: @@ -124609,7 +121363,7 @@ oslist: macos description: Launch executable: mac/Jazzpunk.app -'250280': +"250280": installDir: Super Comboman launch: - config: @@ -124620,7 +121374,7 @@ oslist: macos description: Launch executable: SCM.app -'250320': +"250320": installDir: The Wolf Among Us launch: - config: @@ -124631,7 +121385,7 @@ oslist: macos description: Launch The Wolf Among Us executable: The Wolf Among Us.app -'250340': +"250340": installDir: Blockland launch: - arguments: ptlaaxobimwroe -noconsole -steam @@ -124644,7 +121398,7 @@ oslist: macos description: Launch executable: Blockland.app -'250380': +"250380": installDir: Knock-knock launch: - config: @@ -124663,23 +121417,21 @@ oslist: windows description: Configure & Launch executable: knock.cfg.exe -'250400': +"250400": installDir: How to Survive launch: - description: Launch executable: HowToSurvive.exe - description: Configuration executable: Detect.exe -'250420': +"250420": installDir: 8BitMMO launch: - - arguments: >- - -Djava.net.preferIPv4Stack=true -classpath - \"DesktopLauncher.jar;jre\\lib\\jfxrt.jar;lib\\json-simple-1.1.1.jar\" DesktopLauncher/Main + - arguments: "-Djava.net.preferIPv4Stack=true -classpath \\\"DesktopLauncher.jar;jre\\\\lib\\\\jfxrt.jar;lib\\\\json-simple-1.1.1.jar\\\" DesktopLauncher/Main" config: oslist: windows description: Launch - executable: jre\\bin\\javaw.exe + executable: "jre\\\\bin\\\\javaw.exe" - config: oslist: linux description: Launch @@ -124688,8 +121440,8 @@ oslist: macos description: Launch executable: desktopLaunchLogging.sh -'250440': {} -'250460': +"250440": {} +"250460": installDir: BridgeConstructor launch: - config: @@ -124701,22 +121453,22 @@ description: Launch executable: Bridge Constructor.app - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: BridgeConstructor.x86_64 type: none -'250500': +"250500": installDir: Super Amazing Wagon Adventure launch: - description: Launch executable: WagonAdventure.exe -'250520': +"250520": installDir: Underrail launch: - description: Launch executable: underrail.exe -'250540': +"250540": installDir: C-Wars launch: - config: @@ -124725,7 +121477,7 @@ - config: oslist: macos executable: cwars.app -'250560': +"250560": installDir: FightTheDragon launch: - config: @@ -124737,7 +121489,7 @@ - config: oslist: linux executable: startgame.sh -'250580': +"250580": installDir: ParanauticalActivity launch: - config: @@ -124752,7 +121504,7 @@ oslist: linux description: Launch executable: Paranautical Activity.x86 -'250600': +"250600": installDir: The Plan launch: - config: @@ -124767,7 +121519,7 @@ oslist: linux description: Launch executable: The Plan.x86 -'250620': +"250620": installDir: Among the Sleep launch: - config: @@ -124782,7 +121534,7 @@ oslist: linux description: Launch executable: Among the Sleep.x86 -'250640': +"250640": installDir: CroixleurSigma launch: - config: @@ -124795,21 +121547,21 @@ description: (Old Edition) Config executable: CroixleurSigmaConfig.exe type: option2 -'250660': +"250660": installDir: Bunny Must Die launch: - description: Launch executable: bunnymustdie.exe -'250680': +"250680": installDir: BELOW launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch BELOW executable: BelowD3D11Steam_x64.exe -'2506890': {} -'250700': +"2506890": {} +"250700": installDir: SuperTimeForceUltra launch: - config: @@ -124822,25 +121574,25 @@ executable: STFU.app type: none - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: STFU.bin.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: STFU.bin.x86_64 type: none -'250720': +"250720": installDir: StarlightInception launch: - config: oslist: windows description: Launch executable: Game.exe -'250740': +"250740": installDir: Ragnarok_Europe launch: - config: @@ -124849,40 +121601,40 @@ executable: Registration.exe - description: Setup client executable: Setup.exe -'250760': +"250760": installDir: Shovel Knight launch: - - arguments: '-test' + - arguments: "-test" config: oslist: windows description: Launch executable: ShovelKnight.exe - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: 32/ShovelKnight - workingdir: '32' + workingdir: "32" - config: oslist: macos description: Launch executable: ShovelKnight.app - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: 64/ShovelKnight - workingdir: '64' + workingdir: "64" nameLocalized: japanese: ショベルナイト -'250870': +"250870": installDir: Pro Evolution Soccer 2014 launch: - config: oslist: windows description: Launch executable: PES2014.exe -'250900': +"250900": installDir: The Binding of Isaac Rebirth launch: - config: @@ -124890,7 +121642,7 @@ description: Launch executable: isaac-ng.exe - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: run-x64.sh @@ -124899,18 +121651,18 @@ description: Launch executable: The Binding of Isaac Rebirth.app - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: run-i386.sh -'251020': +"251020": installDir: RailroadX launch: - config: oslist: windows description: Launch executable: EEP10.exe -'251060': +"251060": installDir: Wargame Red Dragon launch: - config: @@ -124918,16 +121670,16 @@ description: Launch executable: wargame3.exe - config: - osarch: '64' + osarch: "64" oslist: macos description: Launch executable: WarGame3 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: WarGame3 -'251110': +"251110": installDir: infra launch: - config: @@ -124938,7 +121690,7 @@ oslist: macos description: Launch executable: infra.sh -'251130': +"251130": installDir: ChromaSquad launch: - config: @@ -124953,7 +121705,7 @@ oslist: linux description: Launch executable: chromasquad.x86 -'251150': +"251150": installDir: Trails in the Sky FC launch: - executable: ed6_win_DX9.exe @@ -124966,13 +121718,13 @@ - description: DirectX8 Configuration Tool executable: Config.exe type: config -'251170': +"251170": installDir: Damned launch: - description: Launch executable: Damned.exe - workingdir: ./ -'251210': + workingdir: "./" +"251210": installDir: Hive launch: - config: @@ -124987,12 +121739,12 @@ oslist: linux description: Launch executable: Hive -'251230': +"251230": installDir: Livelock launch: - description: Launch executable: Livelock.exe -'251270': +"251270": installDir: Corpse Party launch: - config: @@ -125005,7 +121757,7 @@ type: default nameLocalized: japanese: コープスパーティーブラッドカバー -'251290': +"251290": installDir: Trails in the Sky SC launch: - executable: ed6_win2_DX9.exe @@ -125018,14 +121770,14 @@ - description: DirectX8 Configuration Tool executable: Config2.exe type: config -'251310': +"251310": installDir: Eleusis launch: - config: oslist: windows description: Launch executable: Eleusis Game Launcher.exe -'251370': +"251370": installDir: Escape Goat launch: - config: @@ -125035,29 +121787,29 @@ - config: oslist: linux description: Launch - executable: ./EscapeGoat + executable: "./EscapeGoat" - config: oslist: macos description: Launch executable: Escape Goat.app - - arguments: '-windowed' + - arguments: "-windowed" config: oslist: windows description: Launch (Windowed) executable: EscapeGoat.exe - - arguments: '-windowed' + - arguments: "-windowed" config: oslist: linux description: Launch (Windowed) - executable: ./EscapeGoat -'251390': + executable: "./EscapeGoat" +"251390": installDir: TheWastedLand launch: - config: oslist: windows description: Launch executable: Cthulhu.exe -'251410': +"251410": installDir: dark matter iw launch: - config: @@ -125072,7 +121824,7 @@ oslist: linux description: Launch executable: darkmatter.sh -'251430': +"251430": installDir: TheInnerWorld launch: - config: @@ -125087,18 +121839,18 @@ oslist: linux description: Launch-Linux executable: TIW_start.sh -'251450': +"251450": installDir: Heroes of Havoc launch: - config: oslist: macos - executable: havoc.app\\Contents\\MacOS\\havoc + executable: "havoc.app\\\\Contents\\\\MacOS\\\\havoc" type: default - config: oslist: windows executable: havoc.exe type: default -'251470': +"251470": installDir: TowerFall launch: - config: @@ -125108,13 +121860,13 @@ - config: oslist: linux description: Launch - executable: ./TowerFall + executable: "./TowerFall" - config: oslist: macos description: Launch executable: TowerFall.app/Contents/MacOS/TowerFall type: none -'251490': +"251490": installDir: GravityGhost launch: - config: @@ -125126,24 +121878,24 @@ description: Launch executable: GravityGhost.app - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: GravityGhost.x86_64 - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: GravityGhost.x86 -'251510': +"251510": installDir: ConstantC launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: ConstantC.exe -'251530': +"251530": installDir: Anomaly Korea launch: - config: @@ -125158,71 +121910,71 @@ oslist: macos description: Launch executable: AnomalyKoreaMac.app -'251570': +"251570": installDir: 7 Days To Die launch: - - arguments: '-from-steam' + - arguments: "-from-steam" config: oslist: windows description: Launch game executable: 7dLauncher.exe type: none - - arguments: '-from-steam' + - arguments: "-from-steam" config: oslist: macos description: Launch game executable: 7dLauncher.app type: none - - arguments: '-from-steam' + - arguments: "-from-steam" config: oslist: linux description: Launch game executable: 7DaysToDie.sh type: none - - arguments: '-show-launcher -from-steam' + - arguments: "-show-launcher -from-steam" config: oslist: windows description: Show game launcher executable: 7dLauncher.exe type: none - - arguments: '-show-launcher -from-steam' + - arguments: "-show-launcher -from-steam" config: oslist: macos description: Show game launcher executable: 7dLauncher.app type: none - - arguments: '-show-launcher -from-steam' + - arguments: "-show-launcher -from-steam" config: oslist: linux description: Show game launcher executable: 7DaysToDie.sh type: none -'251590': +"251590": installDir: Soul Saga launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Soul Saga.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Soul Saga.x86_64 type: default -'251610': +"251610": installDir: Barbie Dreamhouse Party launch: - config: oslist: windows description: Launch Game executable: barbie.exe - - arguments: '-c' + - arguments: "-c" config: oslist: windows description: Launch Game Configuration Tool executable: barbie.exe -'251630': +"251630": installDir: TheImpossibleGame launch: - config: @@ -125249,11 +122001,11 @@ oslist: macos description: Level Editor executable: TheImpossibleGame.app/Contents/Resources/Editor.sh -'251650': - installDir: Ray's The Dead +"251650": + installDir: "Ray's The Dead" launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: RaysTheDead.exe @@ -125264,12 +122016,12 @@ executable: RaysTheDead.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: RaysTheDead.x86_64 type: default -'251670': +"251670": installDir: BattleNations launch: - config: @@ -125279,14 +122031,14 @@ - arguments: show_logs description: Show Logs executable: bin/battlenations.exe -'251690': +"251690": installDir: Speedball 2 HD launch: - config: oslist: windows description: Launch executable: Speedball2_steam.exe -'251710': +"251710": installDir: ChainsawWarrior launch: - config: @@ -125301,7 +122053,7 @@ oslist: windows description: Launch executable: CWSteamPC.exe -'251730': +"251730": installDir: Legend of Grimrock 2 launch: - config: @@ -125312,7 +122064,7 @@ oslist: macos description: Launch executable: Legend of Grimrock 2.app -'251770': +"251770": installDir: ShadowMan launch: - config: @@ -125327,18 +122079,18 @@ oslist: macos description: Launch executable: Shadow Man.app -'251790': +"251790": installDir: steelstorm-ammo launch: - config: oslist: windows - description: 'Play Steel Storm: A.M.M.O.' + description: "Play Steel Storm: A.M.M.O." executable: steelstorm-ammo.exe -'251830': +"251830": installDir: StickItToTheMan launch: - config: - osarch: '32' + osarch: "32" oslist: macos description: Launch executable: StickItToTheMan.app @@ -125346,7 +122098,7 @@ oslist: windows description: Launch executable: StickIt.exe -'251850': +"251850": installDir: MasterReboot launch: - config: @@ -125357,64 +122109,64 @@ oslist: macos description: Launch executable: MasterReboot.app -'251870': +"251870": installDir: GoGoNippon launch: - config: oslist: windows description: Go Go Nippon! (original) - executable: GoGoNippon\\BGI.exe + executable: "GoGoNippon\\\\BGI.exe" type: option1 workingdir: GoGoNippon - config: oslist: windows - ownsdlc: '397030' + ownsdlc: "397030" description: Go Go Nippon! 2015 - executable: GoGoNippon2015\\ggn2015.exe + executable: "GoGoNippon2015\\\\ggn2015.exe" type: option2 workingdir: GoGoNippon - config: oslist: windows - ownsdlc: '534840' + ownsdlc: "534840" description: Go Go Nippon! 2016 - executable: GoGoNippon2016\\ggn2016.exe + executable: "GoGoNippon2016\\\\ggn2016.exe" type: option3 -'251890': +"251890": installDir: World of Diving launch: - - arguments: '-UnityVR' + - arguments: "-UnityVR" config: oslist: windows executable: WorldOfDiving.exe type: vr - - arguments: '-vrmode none' + - arguments: "-vrmode none" config: oslist: macos description: Launch executable: WorldOfDiving.app - - arguments: '-vrmode none' + - arguments: "-vrmode none" config: oslist: linux description: Launch executable: WorldOfDiving.x86_64 type: none - - arguments: '-vrmode none' + - arguments: "-vrmode none" config: oslist: windows description: Launch World of Diving executable: WorldOfDiving.exe type: none -'2518960': +"2518960": installDir: Wizardry launch: - executable: wizardry.exe type: default -'2519060': +"2519060": nameLocalized: - koreana: '콜 오브 듀티®: 모던 워페어 III 2023' + koreana: "콜 오브 듀티®: 모던 워페어 III 2023" schinese: 《使命召唤®:现代战争® III 2023》 tchinese: 《決勝時刻®:現代戰爭® III 2023》 -'251910': +"251910": installDir: Solar Flux launch: - config: @@ -125429,22 +122181,22 @@ oslist: macos description: Launch executable: SolarFlux.app -'251950': +"251950": installDir: WWIIONLINE launch: - - arguments: '-steamlogin' + - arguments: "-steamlogin" config: oslist: macos description: World War II Online executable: World War II Online.app type: option1 - - arguments: '-settings' + - arguments: "-settings" config: oslist: macos - description: 'World War II Online: Settings' + description: "World War II Online: Settings" executable: World War II Online.app type: config - - arguments: '-steamlogin' + - arguments: "-steamlogin" config: oslist: windows description: World War II Online @@ -125452,24 +122204,24 @@ type: default - config: oslist: windows - description: 'World War II Online: Settings' + description: "World War II Online: Settings" executable: Settings.exe type: config - - arguments: '-steamlogin' + - arguments: "-steamlogin" config: betakey: closedalpha oslist: macos description: World War II Online - Alpha executable: World War II Online Alpha.app type: option1 - - arguments: '-settings' + - arguments: "-settings" config: betakey: closedalpha oslist: macos - description: 'World War II Online: Settings - Alpha' + description: "World War II Online: Settings - Alpha" executable: World War II Online Alpha.app type: config - - arguments: '-steamlogin' + - arguments: "-steamlogin" config: betakey: closedalpha oslist: windows @@ -125479,24 +122231,24 @@ - config: betakey: closedalpha oslist: windows - description: 'World War II Online: Settings - Alpha' + description: "World War II Online: Settings - Alpha" executable: Settings.exe type: config - - arguments: '-steamlogin' + - arguments: "-steamlogin" config: betakey: closedbeta oslist: macos description: World War II Online - Beta executable: World War II Online Beta.app type: option1 - - arguments: '-settings' + - arguments: "-settings" config: betakey: closedbeta oslist: macos - description: 'World War II Online: Settings - Beta' + description: "World War II Online: Settings - Beta" executable: World War II Online Beta.app type: config - - arguments: '-steamlogin' + - arguments: "-steamlogin" config: betakey: closedbeta oslist: windows @@ -125506,14 +122258,14 @@ - config: betakey: closedbeta oslist: windows - description: 'World War II Online: Settings - Beta' + description: "World War II Online: Settings - Beta" executable: Settings.exe type: config -'2519850': +"2519850": installDir: Pigsaw launch: - - executable: Pigsaw 1.3.0\\Pigsaw.exe -'251990': + - executable: "Pigsaw 1.3.0\\\\Pigsaw.exe" +"251990": installDir: LongLiveTheQueen launch: - config: @@ -125528,19 +122280,19 @@ oslist: macos description: Launch executable: LongLiveTheQueen.app -'2520': +"2520": installDir: Gumboy Crazy Adventures launch: - executable: GumboyCrazyAdventures.exe -'252010': +"252010": installDir: Oniken launch: - - arguments: '-steamwin' + - arguments: "-steamwin" config: oslist: windows description: Launch Oniken executable: Oniken.exe - - arguments: '-steammac' + - arguments: "-steammac" config: oslist: macos description: Launch Oniken @@ -125549,7 +122301,7 @@ oslist: linux description: Launch Oniken executable: play.sh -'252030': +"252030": installDir: ValdisStoryAbyssalCity launch: - config: @@ -125560,19 +122312,19 @@ oslist: macos description: Launch executable: VSAC.app -'252050': +"252050": installDir: Construction Machines 2014 launch: - description: Launch executable: ConstructionMachines.exe - description: Launch Configuration executable: Settings.exe -'252070': +"252070": installDir: Gimbal launch: - description: Launch executable: Gimbal.exe -'252090': +"252090": installDir: LacunaPassage launch: - config: @@ -125581,9 +122333,9 @@ type: default - config: oslist: macos - executable: LacunaPassage.app\\Contents\\MacOS\\LacunaPassage + executable: "LacunaPassage.app\\\\Contents\\\\MacOS\\\\LacunaPassage" type: default -'252110': +"252110": installDir: Lovers in a Dangerous Spacetime launch: - config: @@ -125595,16 +122347,16 @@ description: Launch executable: LoversInADangerousSpacetime.app - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: LoversInADangerousSpacetime.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: LoversInADangerousSpacetime.x86_64 -'252130': +"252130": installDir: Divide by sheep launch: - config: @@ -125615,14 +122367,14 @@ oslist: macos description: Launch executable: dividebysheep.app -'252150': +"252150": installDir: Grimm launch: - config: oslist: windows description: Launch executable: GrimmLauncher.exe -'252170': +"252170": installDir: UntitledApp launch: - config: @@ -125637,60 +122389,60 @@ oslist: macos description: Launch executable: Anomaly Warzone Earth - Mobile Campaign.app -'252210': +"252210": installDir: DungeonDashers launch: - description: Play Dungeon Dashers executable: Dungeon Dashers.exe - description: Launch Level Editor executable: DD_Public_LevelEditor_70.exe -'252230': +"252230": installDir: Yaiba Ninja Gaiden Z launch: - description: Launch - executable: Binaries\\Win32\\NRZGameLauncher.exe - workingdir: Binaries\\Win32\\ -'252250': + executable: "Binaries\\\\Win32\\\\NRZGameLauncher.exe" + workingdir: "Binaries\\\\Win32\\\\" +"252250": installDir: Maia launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: Maia.exe type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: RunMaia - config: - osarch: '64' + osarch: "64" oslist: macos description: Launch executable: Maia.app - config: - osarch: '32' + osarch: "32" oslist: windows executable: 32bit/maia32.exe type: none workingdir: 32bit/ -'252270': +"252270": installDir: ZombieTycoon2 launch: - - arguments: '-seekfreeloadingpcconsole' + - arguments: "-seekfreeloadingpcconsole" config: - osarch: '64' + osarch: "64" oslist: windows description: Launch The Game - executable: Binaries\\Win64\\ZombieGame.exe - - arguments: '-seekfreeloadingpcconsole' + executable: "Binaries\\\\Win64\\\\ZombieGame.exe" + - arguments: "-seekfreeloadingpcconsole" config: - osarch: '32' + osarch: "32" oslist: windows description: Launch The Game 32 - executable: Binaries\\Win32\\ZombieGame.exe -'252290': + executable: "Binaries\\\\Win32\\\\ZombieGame.exe" +"252290": installDir: ElegyForADeadWorld launch: - config: @@ -125705,10 +122457,10 @@ oslist: linux description: Launch executable: Elegy.x86 -'252310': +"252310": installDir: SyderArcade launch: - - arguments: '-console' + - arguments: "-console" config: oslist: windows description: Launch @@ -125723,11 +122475,11 @@ oslist: linux description: Launch executable: SyderArcade.x86 -'252330': +"252330": installDir: Slender - The Arrival launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: Slender - The Arrival.exe @@ -125735,7 +122487,7 @@ oslist: macos description: Launch executable: Slender - The Arrival.app -'252350': +"252350": installDir: Double Dragon Neon launch: - config: @@ -125743,78 +122495,62 @@ description: Launch executable: bin/DoubleDragon.exe workingdir: bin -'252370': +"252370": installDir: Shivah launch: - config: oslist: windows description: Launch - description_loc: - english: Launch executable: Shivah.exe type: default - config: betakey: original oslist: macos description: Launch - description_loc: - english: Launch executable: Shivah.app type: default - config: betakey: original - osarch: '32' + osarch: "32" oslist: linux description: Launch - description_loc: - english: Launch executable: Shivah.bin.x86 type: default - config: betakey: original - osarch: '64' + osarch: "64" oslist: linux description: Launch - description_loc: - english: Launch executable: Shivah.bin.x86_64 type: default - config: oslist: windows description: Settings - description_loc: - english: Settings executable: winsetup.exe type: config - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch 32bit - description_loc: - english: Launch 32bit - executable: ./Start.sh + executable: "./Start.sh" type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch 64bit - description_loc: - english: Launch 64bit - executable: ./Start.sh + executable: "./Start.sh" type: default - - arguments: '--windowed' + - arguments: "--windowed" config: oslist: linux description: The Shivah (Windowed) - description_loc: - english: The Shivah (Windowed) - executable: ./Start.sh + executable: "./Start.sh" type: option1 - config: oslist: macos executable: Shivah.app/Contents/MacOS/AGS type: default -'252390': +"252390": installDir: DwarfCorp launch: - config: @@ -125824,21 +122560,21 @@ - config: oslist: macos description: Launch - executable: DwarfCorp.app\\Contents\\MacOS\\DwarfCorpFNA + executable: "DwarfCorp.app\\\\Contents\\\\MacOS\\\\DwarfCorpFNA" type: default - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: DwarfCorp.sh type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: DwarfCorp.sh type: default -'252410': +"252410": installDir: SteamWorld Dig launch: - config: @@ -125853,7 +122589,7 @@ oslist: linux description: Launch executable: SteamWorldDig -'252430': +"252430": installDir: DustyRevenge launch: - config: @@ -125864,11 +122600,11 @@ oslist: macos description: Launch executable: DustyRevengeCoOp.app -'252450': +"252450": installDir: StarDrive 2 launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: SD2.exe @@ -125880,28 +122616,28 @@ oslist: linux description: Launch executable: SD2.x86_64 -'252470': +"252470": installDir: SPAZ2 launch: - - arguments: '-vrmode none' + - arguments: "-vrmode none" config: - osarch: '64' + osarch: "64" oslist: windows executable: SPAZ2_64.exe type: default - - arguments: '-vrmode none' + - arguments: "-vrmode none" config: - osarch: '32' + osarch: "32" oslist: windows executable: SPAZ2_32.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: SPAZ2_64.exe type: vr - config: - osarch: '64' + osarch: "64" oslist: windows executable: SPAZ2_64.exe type: othervr @@ -125910,32 +122646,32 @@ executable: SPAZ2_Mac.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: SPAZ2_Linux.x86_64 type: default -'252490': +"252490": installDir: Rust launch: - - arguments: '-logfile \"output_log.txt\"' + - arguments: "-logfile \\\"output_log.txt\\\"" config: oslist: windows description: Launch executable: rust.exe type: default - - arguments: '-logfile \"output_log.txt\"' + - arguments: "-logfile \\\"output_log.txt\\\"" config: oslist: macos description: Launch - executable: ./rust.app + executable: "./rust.app" type: default - - arguments: '-logfile \"output_log.txt\"' + - arguments: "-logfile \\\"output_log.txt\\\"" config: oslist: linux description: Launch executable: rust type: default -'252530': +"252530": installDir: OMSI 2 launch: - config: @@ -125943,7 +122679,7 @@ description: Launch executable: Launcher.exe type: default -'252550': +"252550": installDir: Qbeh-1 launch: - config: @@ -125958,7 +122694,7 @@ oslist: macos description: Launch executable: Qbeh-1.app -'252570': +"252570": installDir: Depths of Fear Knossos launch: - config: @@ -125969,7 +122705,7 @@ oslist: macos description: Launch executable: DOFK.app -'252610': +"252610": installDir: DeathRoadToCanada launch: - config: @@ -125984,11 +122720,11 @@ oslist: macos description: Launch executable: DR2C.app/Contents/MacOS/DR2C -'252630': +"252630": installDir: Eldritch launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: Eldritch.exe @@ -126006,7 +122742,7 @@ description: 32-bit (classic) executable: Eldritch_x86.exe type: none -'252670': +"252670": installDir: Nihilumbra launch: - config: @@ -126018,18 +122754,18 @@ description: Launch executable: Nihilumbra.app - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: x64/Nihilumbra.x86_64 workingdir: x64 - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: x86/Nihilumbra.x86 workingdir: x86 -'252690': +"252690": installDir: Fantasy Grounds launch: - config: @@ -126041,7 +122777,7 @@ description: Launch executable: FantasyGrounds.app type: default -'252710': +"252710": installDir: LastExpress launch: - config: @@ -126052,15 +122788,15 @@ oslist: macos description: Launch executable: TheLastExpressSteam.app -'252730': +"252730": installDir: YDKJ_VOL1XL launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: YDKJV1.EXE -'252750': +"252750": installDir: MouseCraft launch: - config: @@ -126075,20 +122811,20 @@ oslist: linux description: Launch executable: MouseCraft.x86 -'252770': +"252770": installDir: Vox launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch Vox executable: Vox.exe - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch Vox executable: Vox_64.exe -'252830': +"252830": installDir: Claire launch: - config: @@ -126099,57 +122835,57 @@ oslist: macos description: Launch executable: ClaireMac.app -'252850': +"252850": installDir: Streamline launch: - config: oslist: windows - executable: ./hns/Binaries/Win64/Streamline.exe + executable: "./hns/Binaries/Win64/Streamline.exe" type: default -'252870': +"252870": installDir: PULSARLostColony launch: - - arguments: '-enable_steam' + - arguments: "-enable_steam" config: oslist: windows - description: 'Launch PULSAR: Lost Colony' + description: "Launch PULSAR: Lost Colony" executable: PULSAR_LostColony.exe type: default - - arguments: '-enable_steam' + - arguments: "-enable_steam" config: oslist: macos description: Launch executable: PULSARLostColony.app type: none - - arguments: '-enable_steam' + - arguments: "-enable_steam" config: oslist: linux description: Launch executable: PULSAR_LostColony.x86_64 type: none - - arguments: '-force-open-vr -enable_steam' + - arguments: "-force-open-vr -enable_steam" config: oslist: windows description: PULSAR executable: PULSAR_LostColony.exe type: vr - - arguments: '-force-open-vr -enable_steam' + - arguments: "-force-open-vr -enable_steam" config: betakey: leafytesting oslist: linux executable: PULSAR_LostColony.x86_64 type: vr -'252890': +"252890": installDir: Dracula - Love Kills launch: - description: Launch executable: Dracula_LoveKills.exe -'252910': +"252910": installDir: Skyscraper Simulator launch: - description: Launch executable: skyscraper.exe -'252950': +"252950": installDir: rocketleague launch: - config: @@ -126169,7 +122905,7 @@ description: Launch executable: Binaries/Linux/RocketLeague type: default -'252970': +"252970": installDir: McDROID launch: - config: @@ -126184,7 +122920,7 @@ oslist: linux description: Launch executable: McDROID.x86 -'253030': +"253030": installDir: RaceTheSun launch: - config: @@ -126211,63 +122947,63 @@ description: Launch with Oculus Drivers executable: RaceTheSun.exe type: othervr -'253110': +"253110": installDir: TheCatLady launch: - config: oslist: windows description: Launch executable: TheCatLady.exe - - arguments: '--setup' + - arguments: "--setup" config: oslist: windows description: Setup executable: TheCatLady.exe -'253130': +"253130": installDir: Rescue launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: Rescue2013.exe -'253150': +"253150": installDir: Halfway launch: - - arguments: '-steam' + - arguments: "-steam" config: oslist: windows description: Launch executable: Halfway.exe - - arguments: '-steam' + - arguments: "-steam" config: oslist: macos description: Launch executable: Halfway.app - - arguments: '-steam' + - arguments: "-steam" config: oslist: linux description: Launch executable: Halfway - - arguments: '-steam -editor' + - arguments: "-steam -editor" config: oslist: macos description: Launch Modding Tools... executable: Halfway.app - - arguments: '-steam -editor' + - arguments: "-steam -editor" config: oslist: windows description: Launch Modding Tools... executable: Halfway.exe - - arguments: '-steam -editor' + - arguments: "-steam -editor" config: oslist: linux description: Launch Modding Tools... executable: Halfway -'253190': +"253190": installDir: KW2 Battles launch: - - arguments: '-dev86' + - arguments: "-dev86" config: oslist: windows description: Launch @@ -126280,7 +123016,7 @@ oslist: windows description: Scenario Editor executable: Editor.exe -'253230': +"253230": installDir: HatinTime launch: - config: @@ -126295,11 +123031,11 @@ executable: HatinTimeGame.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux - executable: ./hatintime.run + executable: "./hatintime.run" type: default -'253250': +"253250": installDir: Stonehearth launch: - config: @@ -126310,7 +123046,7 @@ oslist: macos executable: Stonehearth.app/Contents/MacOS/Stonehearth type: default -'253290': +"253290": installDir: Fotonica launch: - config: @@ -126325,7 +123061,7 @@ oslist: linux description: Launch executable: FOTONICA.x86 -'253310': +"253310": installDir: Fester Mudd - Episode 1 launch: - config: @@ -126340,7 +123076,7 @@ oslist: linux description: Linux Launch executable: fester_mudd_linux.x86 -'253330': +"253330": installDir: Neverending Nightmares launch: - config: @@ -126355,7 +123091,7 @@ oslist: macos description: Launch via an app executable: Neverending Nightmares.app -'253350': +"253350": installDir: TinyBarbarianDX launch: - config: @@ -126367,18 +123103,18 @@ description: Launch executable: TinyBarbarian.app/Contents/MacOS/TinyBarbarian - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch (32-bit) executable: run-i386.sh type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch (64-bit) executable: run-x64.sh type: none -'253390': +"253390": installDir: Hot Tin Roof launch: - config: @@ -126390,16 +123126,16 @@ description: Launch executable: HotTinRoof.app - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: HotTinRoof.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: HotTinRoof.x86_64 -'253410': +"253410": installDir: Ravensword2 launch: - config: @@ -126414,77 +123150,77 @@ oslist: macos description: Launch executable: Ravensword2Mac.app/Contents/MacOS/Ravensword2 -'253430': +"253430": installDir: CastleMiner Z launch: - description: Launch executable: CastleMinerZ.exe -'253470': +"253470": installDir: RWR launch: - description: Launch executable: RWR.exe -'253490': +"253490": installDir: SteamCabal launch: - arguments: steamLauncher config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: cabal.exe -'253510': +"253510": installDir: Warmachine Tactics launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: DX11 executable: WarmachineGame/Binaries/Win64/WarmachineGame-Win64-Shipping.exe workingdir: WarmachineGame/Binaries/Win64 - config: - osarch: '64' + osarch: "64" oslist: macos executable: WarmachineGame.app - - arguments: '-d3d10' + - arguments: "-d3d10" config: - osarch: '64' + osarch: "64" oslist: windows description: DX10 executable: WarmachineGame/Binaries/Win64/WarmachineGame-Win64-Shipping.exe workingdir: WarmachineGame/Binaries/Win64 - config: - osarch: '32' + osarch: "32" oslist: windows description: DX11 executable: WarmachineGame/Binaries/Win32/WarmachineGame-Win32-Shipping.exe workingdir: WarmachineGame/Binaries/Win32 - - arguments: '-d3d10' + - arguments: "-d3d10" config: - osarch: '32' + osarch: "32" oslist: windows description: DX10 executable: WarmachineGame/Binaries/Win32/WarmachineGame-Win32-Shipping.exe workingdir: WarmachineGame/Binaries/Win32 -'253530': +"253530": installDir: Fortress Forever launch: - - arguments: '-game FortressForever -allowdebug -tickrate 66' + - arguments: "-game FortressForever -allowdebug -tickrate 66" config: oslist: windows description: Launch Windows executable: hl2.exe - - arguments: '-game FortressForever -allowdebug -tickrate 66' + - arguments: "-game FortressForever -allowdebug -tickrate 66" config: oslist: macos description: Launch OSX executable: hl2_osx - - arguments: '-game FortressForever -allowdebug -tickrate 66' + - arguments: "-game FortressForever -allowdebug -tickrate 66" config: oslist: linux description: Launch Linux executable: hl2.sh -'253570': +"253570": installDir: Gentlemen! launch: - config: @@ -126496,16 +123232,16 @@ description: Launch executable: Gentlemen!.app - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: Gentlemen.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Gentlemen.x86_64 -'253610': +"253610": installDir: Wrack launch: - config: @@ -126513,8 +123249,8 @@ description: Launch executable: Wrack_steam.exe - description: Launch level editor - executable: editor\\WrackEd_steam.exe -'253630': + executable: "editor\\\\WrackEd_steam.exe" +"253630": installDir: Steam Marines launch: - config: @@ -126529,7 +123265,7 @@ oslist: linux description: Launch executable: run.sh -'253650': +"253650": installDir: Sparkle2 launch: - config: @@ -126544,14 +123280,14 @@ oslist: linux description: Launch executable: sparkle2evo.x86 -'253690': +"253690": installDir: tinybrains launch: - config: oslist: windows description: Launch - executable: Binaries\\Win32\\TinyBrains.exe -'253710': + executable: "Binaries\\\\Win32\\\\TinyBrains.exe" +"253710": installDir: theHunter launch: - arguments: steam @@ -126560,29 +123296,29 @@ description: Launcher executable: launcher/launcher.exe workingdir: launcher -'253750': +"253750": installDir: Ikaruga launch: - config: oslist: windows description: Launch executable: game.exe -'253770': +"253770": installDir: Bus-Simulator 2012 launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch - executable: Bin_Basic_Win32\\BusSimulator2012.exe + executable: "Bin_Basic_Win32\\\\BusSimulator2012.exe" workingdir: Bin_Basic_Win32 - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch - executable: Bin_High_Win64\\BusSimulator2012.exe + executable: "Bin_High_Win64\\\\BusSimulator2012.exe" workingdir: Bin_High_Win64 -'253790': +"253790": installDir: rymdkapsel launch: - config: @@ -126598,20 +123334,20 @@ oslist: linux description: Launch executable: run.sh -'253840': +"253840": installDir: Shantae Half-Genie Hero launch: - config: oslist: windows description: Launch - executable: executable\\ShantaeHero.exe + executable: "executable\\\\ShantaeHero.exe" - config: - osarch: '64' + osarch: "64" oslist: windows - description: 'Shantae: Half-Genie Hero (64-Bit DX11)' - executable: executable\\ShantaeHero64.exe + description: "Shantae: Half-Genie Hero (64-Bit DX11)" + executable: "executable\\\\ShantaeHero64.exe" type: none -'253860': +"253860": installDir: Earth 2140 launch: - config: @@ -126625,14 +123361,14 @@ - config: oslist: windows description: EARTH 2140 Classic XP (Eng / Ger) - executable: classic\\E2140.exe - workingdir: classic\\ -'253880': + executable: "classic\\\\E2140.exe" + workingdir: "classic\\\\" +"253880": installDir: Earth 2150 EftbP launch: - config: oslist: windows - description: 'Earth 2150: Escape from the blue Planet' + description: "Earth 2150: Escape from the blue Planet" executable: Earth2150.exe - config: oslist: windows @@ -126645,68 +123381,68 @@ - config: oslist: macos description: Graphic Settings - executable: Earth 2150 Trilogy.app\\Setup.app + executable: "Earth 2150 Trilogy.app\\\\Setup.app" - config: oslist: windows - ownsdlc: '986230' + ownsdlc: "986230" description: Digital Deluxe Content executable: ddc.cmd type: none - config: oslist: macos - ownsdlc: '986230' + ownsdlc: "986230" description: Digital Deluxe Content executable: ddc type: none - config: oslist: linux - ownsdlc: '986230' + ownsdlc: "986230" description: Digital Deluxe Content executable: ddc_xdg type: none - config: oslist: windows - ownsdlc: '986230' + ownsdlc: "986230" description: Earth 2150 Sliding Puzzle executable: Puzzle.exe type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: Start game executable: RunGame type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: Start config(RUN FIRST) executable: RunSetup type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: Start LS executable: RunGame1 type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: Start config LS(RUN FIRST) executable: RunSetup1 type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: Start TMP executable: RunGame2 type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: Start config TMP(RUN FIRST) executable: RunSetup2 type: none -'253900': +"253900": installDir: Knights and Merchants Historical Version launch: - config: @@ -126716,8 +123452,8 @@ - config: oslist: windows description: HD Version - executable: hd\\Knights_and_Merchants_steam.exe - workingdir: hd\\ + executable: "hd\\\\Knights_and_Merchants_steam.exe" + workingdir: "hd\\\\" - config: oslist: macos description: Launch @@ -126738,29 +123474,29 @@ type: config - config: oslist: windows - ownsdlc: '986240' + ownsdlc: "986240" description: Digital Deluxe Content executable: ddc.cmd type: none - config: oslist: macos - ownsdlc: '986240' + ownsdlc: "986240" description: Digital Deluxe Content executable: ddc type: none - config: oslist: linux - ownsdlc: '986240' + ownsdlc: "986240" description: Digital Deluxe Content executable: ddc_xdg type: none - config: oslist: windows - ownsdlc: '986240' + ownsdlc: "986240" description: KaM Sliding Puzzle executable: Puzzle_KaM.exe type: none -'253920': +"253920": installDir: Gorky 17 launch: - config: @@ -126782,25 +123518,25 @@ type: config - config: oslist: windows - ownsdlc: '986180' + ownsdlc: "986180" description: Digital Deluxe Content executable: ddc.cmd type: none - config: oslist: macos - ownsdlc: '986180' + ownsdlc: "986180" description: Digital Deluxe Content executable: ddc type: none - config: oslist: linux - ownsdlc: '986180' + ownsdlc: "986180" description: Digital Deluxe Content executable: ddc_xdg type: none - config: oslist: windows - ownsdlc: '986180' + ownsdlc: "986180" description: Gorky 17 Sliding Puzzle executable: puzzle.exe type: none @@ -126810,7 +123546,7 @@ description: Beta2 executable: RunGame type: option1 -'253940': +"253940": installDir: Septerra Core launch: - config: @@ -126828,39 +123564,39 @@ type: default - config: oslist: windows - ownsdlc: '1026171' + ownsdlc: "1026171" description: Digital Deuxe Content executable: ddc.cmd type: none - config: oslist: macos - ownsdlc: '1026171' + ownsdlc: "1026171" description: Digital Deluxe Content executable: ddc type: none - config: oslist: linux - ownsdlc: '1026171' + ownsdlc: "1026171" description: Digital Deluxe Content executable: ddc_xdg type: none -'253960': +"253960": installDir: Jack Orlando launch: - config: oslist: windows - description: Jack Orlando Director's Cut + description: "Jack Orlando Director's Cut" executable: JackStart.exe - config: oslist: macos - description: Jack Orlando Director's Cut - executable: Jack Orlando Director's Cut.app + description: "Jack Orlando Director's Cut" + executable: "Jack Orlando Director's Cut.app" - config: oslist: linux - description: Jack Orlando Director's Cut + description: "Jack Orlando Director's Cut" executable: RunGame type: default -'253980': +"253980": installDir: Enclave launch: - config: @@ -126877,29 +123613,29 @@ type: default - config: oslist: windows - ownsdlc: '985460' + ownsdlc: "985460" description: Digital Deluxe Content executable: ddc.cmd type: none - config: oslist: macos - ownsdlc: '985460' + ownsdlc: "985460" description: Dirgital Deluxe Content executable: ddc type: none - config: oslist: linux - ownsdlc: '985460' + ownsdlc: "985460" description: Digital Deluxe Content executable: ddc_xdg type: none -'2539910': {} -'2540': +"2539910": {} +"2540": installDir: RIP launch: - - executable: rip\\rip.exe + - executable: "rip\\\\rip.exe" workingdir: RIP -'254060': +"254060": installDir: KnightShift launch: - config: @@ -126912,46 +123648,46 @@ executable: KnightShift.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: Start game executable: RunGame type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: Start config(RUN FIRST) executable: RunConfig type: none -'254080': +"254080": installDir: World War III Black Gold launch: - config: oslist: windows - description: 'World War III: Black Gold' + description: "World War III: Black Gold" executable: WW3.exe type: default - config: oslist: macos - description: 'World War III: Black Gold' + description: "World War III: Black Gold" executable: World War III Black Gold.app type: default - config: oslist: macos description: Graphic Settings - executable: World War III Black Gold.app\\Setup.app + executable: "World War III Black Gold.app\\\\Setup.app" type: config - config: oslist: linux - description: 'World War III: Black Gold' + description: "World War III: Black Gold" executable: RunGame type: default -'254100': +"254100": installDir: World War II Panzer Claws launch: - config: oslist: windows - description: 'World War II: Panzer Claws' + description: "World War II: Panzer Claws" executable: PanzerClawsII.exe type: default - config: @@ -126962,40 +123698,40 @@ - config: oslist: macos description: Graphic Settings - executable: World War II Panzer Claws.app\\Setup.app + executable: "World War II Panzer Claws.app\\\\Setup.app" type: config - config: oslist: linux description: World War II Panzer Claws executable: RunGame type: default -'2541170': +"2541170": installDir: GmodeArchivesPlus_persona launch: - executable: persona.exe -'254130': +"254130": installDir: NASCAR 14 launch: - config: oslist: windows - description: Launch NASCAR '14 + description: "Launch NASCAR '14" executable: bin/NASCAR14.exe workingdir: /bin -'254200': +"254200": installDir: FortressCraft launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Play FortressCraft - executable: 32\\fortresscraft.exe - workingdir: '32' + executable: "32\\\\fortresscraft.exe" + workingdir: "32" - config: - osarch: '64' + osarch: "64" oslist: windows description: Play FortressCraft Evolved(64bit) - executable: 64\\FC_64.exe - workingdir: '64' + executable: "64\\\\FC_64.exe" + workingdir: "64" - config: oslist: linux description: Play FortesscCraft Evolved @@ -127006,21 +123742,21 @@ description: Launch OSX executable: FortressCraft.app type: none -'254300': +"254300": installDir: Dofus launch: - config: oslist: windows - executable: transition\\transition.exe + executable: "transition\\\\transition.exe" type: default -'2543180': +"2543180": nameLocalized: japanese: ポッピュコム koreana: 팝유컴 sc_schinese: 泡姆泡姆 schinese: 泡姆泡姆 tchinese: 泡姆泡姆 -'254320': +"254320": installDir: Duskers launch: - config: @@ -127033,20 +123769,20 @@ executable: Duskers_mac.app type: none - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch (x32) executable: Duskers_linux.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch (x64) executable: Duskers_linux.x86_64 type: none -'2543430': +"2543430": installDir: Savant - Ascent REMIX Soundtrack -'254370': +"254370": installDir: Aquanox Deep Descent launch: - config: @@ -127054,71 +123790,71 @@ description: Launch Aquanox Deep Descent executable: ANX.exe type: default -'2543760': +"2543760": nameLocalized: japanese: 闇の仕事人KAGE Shadow of the Ninja schinese: KAGE ~ Shadow of the Ninja 绝影战士 tchinese: KAGE~Shadow of the Ninja 絕影戰士 -'2544110': {} -'254440': +"2544110": {} +"254440": installDir: Pool Nation launch: - config: oslist: windows description: Launch executable: Pool.exe -'254460': +"254460": installDir: Obscure launch: - config: oslist: windows description: Launch executable: Obscure.exe -'254480': +"254480": installDir: Obscure2 launch: - config: oslist: windows description: Launch executable: Obscure2.exe -'2545': +"2545": installDir: RIP 2 - Strike Back launch: - - executable: ripsb\\rip.exe + - executable: "ripsb\\\\rip.exe" workingdir: RIPSB -'254590': +"254590": installDir: Theme Park Studio launch: - description: Theme Park Studio English executable: ThemeParkStudio.exe type: none - - arguments: '-fr' + - arguments: "-fr" description: Theme Park Studio French executable: ThemeParkStudio.exe type: none - - arguments: '-ge' + - arguments: "-ge" description: Theme Park Studio German executable: ThemeParkStudio.exe type: none - - arguments: '-it' + - arguments: "-it" description: Theme Park Studio Italian executable: ThemeParkStudio.exe type: none - - arguments: '-po' + - arguments: "-po" description: Theme Park Studio Polish executable: ThemeParkStudio.exe type: none - - arguments: '-sp' + - arguments: "-sp" description: Theme Park Studio Spanish executable: ThemeParkStudio.exe type: none -'254650': +"254650": installDir: Storm of Vengeance launch: - description: Launch executable: SoV.exe -'2546810': {} -'254700': +"2546810": {} +"254700": installDir: Resident Evil 4 launch: - description: Launch @@ -127127,91 +123863,91 @@ nameLocalized: japanese: biohazard 4 koreana: biohazard 4 -'254760': {} -'254780': {} -'254800': {} -'254820': +"254760": {} +"254780": {} +"254800": {} +"254820": installDir: Ground Control Anthology launch: - description: Launch - executable: Launcher\\GC1Launcher.exe -'254840': + executable: "Launcher\\\\GC1Launcher.exe" +"254840": installDir: Ground Control II launch: - description: Launch - executable: Launcher\\GC2Launcher.exe -'254860': + executable: "Launcher\\\\GC2Launcher.exe" +"254860": installDir: Lords of the Realm III launch: - description: Launch - executable: Launcher\\LOTR3Launcher.exe -'254880': + executable: "Launcher\\\\LOTR3Launcher.exe" +"254880": installDir: Moonbase Commander launch: - description: Launch executable: moonbase.exe -'254900': +"254900": installDir: Gunlok launch: - executable: gl.exe type: default -'254920': +"254920": installDir: Lords of the Realm I launch: - config: oslist: windows description: Launch - executable: English\\DOSBOX\\Launcher\\LOTR1Launcher.exe + executable: "English\\\\DOSBOX\\\\Launcher\\\\LOTR1Launcher.exe" type: default - workingdir: English\\DOSBOX\\Launcher\\ -'254940': + workingdir: "English\\\\DOSBOX\\\\Launcher\\\\" +"254940": installDir: Free Running launch: - config: oslist: windows executable: FRLauncher.exe type: none -'254960': +"254960": installDir: Silent Storm launch: - config: oslist: windows description: Launch Silent Storm executable: game.exe -'2550': +"2550": installDir: RIP 3 - The Last Hero launch: - - executable: rip3\\rip3.exe + - executable: "rip3\\\\rip3.exe" workingdir: RIP3 -'25500': +"25500": installDir: Cricket Revolution launch: - executable: CricketRevolution.exe -'255030': +"255030": installDir: Echo Prime launch: - - arguments: '-test' + - arguments: "-test" config: oslist: windows description: Launch executable: Echo Prime.exe -'255070': +"255070": installDir: abyss_odyssey launch: - config: oslist: windows description: Launch - executable: .\\Binaries\\Win32\\AO.exe + executable: ".\\\\Binaries\\\\Win32\\\\AO.exe" - config: oslist: linux description: Launch - executable: ./Binaries/Linux/AO - workingdir: ./Binaries/Linux/ + executable: "./Binaries/Linux/AO" + workingdir: "./Binaries/Linux/" - config: oslist: macos description: Launch - executable: ./AOGame.app/Contents/MacOS/AOGame -'255220': + executable: "./AOGame.app/Contents/MacOS/AOGame" +"255220": installDir: GRID Autosport launch: - config: @@ -127219,7 +123955,7 @@ description: Play GRID Autosport executable: GRIDAutosport.exe type: none - - arguments: '-enable_touch' + - arguments: "-enable_touch" config: oslist: windows description: Play GRID Autosport (Touch Enabled) @@ -127233,13 +123969,13 @@ oslist: macos executable: GRID Autosport.app type: none -'255260': +"255260": installDir: Pro Cycling Manager 2014 launch: - description: Launch executable: pcm.exe -'2552600': {} -'255280': +"2552600": {} +"255280": installDir: 1954 Alcatraz launch: - config: @@ -127250,7 +123986,7 @@ oslist: macos description: Launch executable: Alcatraz.app -'255300': +"255300": installDir: Journey of a Roach launch: - config: @@ -127274,7 +124010,7 @@ description: Launch 32bit executable: JoaR.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch 64bit (no Achievements) executable: JoaR.x86_64 @@ -127283,11 +124019,11 @@ description: Configuration Dialog executable: JoaR_config.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Configuration Dialog 64bit executable: JoaR_config.x86_64 -'255320': +"255320": installDir: Edna & Harvey The Breakout launch: - config: @@ -127296,13 +124032,10 @@ type: default - config: oslist: windows - description: 'Edna & Harvey: The Breakout (Java)' - description_loc: - english: 'Edna & Harvey: The Breakout (Java)' - german: Edna bricht aus (Java) + description: "Edna & Harvey: The Breakout (Java)" executable: Edna.exe type: option1 -'255340': +"255340": installDir: Escape Goat 2 launch: - config: @@ -127312,33 +124045,33 @@ - config: oslist: linux description: Launch - executable: ./EscapeGoat2 + executable: "./EscapeGoat2" - config: oslist: macos description: Launch executable: Escape Goat 2.app -'255370': +"255370": installDir: KickBeat launch: - description: Launch executable: KickBeat.exe -'255390': +"255390": installDir: Max The Curse of Brotherhood launch: - config: oslist: windows description: Launch executable: Max2.exe -'255420': +"255420": installDir: Magic 2015 launch: - - executable: ./DotP_D15.exe -'255480': + - executable: "./DotP_D15.exe" +"255480": installDir: NBA2K14 launch: - description: Launch executable: nba2k14.exe -'255500': +"255500": installDir: Entropy launch: - config: @@ -127353,14 +124086,14 @@ oslist: macos description: Launch Entropy executable: EntropyOSX.app -'255520': +"255520": installDir: Viscera Cleanup Detail Shadow Warrior launch: - description: Launch executable: Binaries/Win32/UDK.exe - description: Launch 64 bit executable: Binaries/Win64/UDK.exe -'2555320': +"2555320": installDir: Povestka launch: - config: @@ -127370,7 +124103,7 @@ nameLocalized: english: Summon ukrainian: Повістка -'255710': +"255710": installDir: Cities_Skylines launch: - config: @@ -127384,7 +124117,7 @@ executable: Cities.app/Contents/Launcher/dowser type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: dowser @@ -127395,7 +124128,7 @@ description: baseline launch executable: Cities.exe type: option1 -'255870': +"255870": installDir: Shooter launch: - config: @@ -127410,52 +124143,52 @@ oslist: macos description: Launch executable: CaveShooter.app -'255920': +"255920": installDir: The 7th Guest launch: - - arguments: '--no-console -c scummvm-t7g-opengl.ini t7g' + - arguments: "--no-console -c scummvm-t7g-opengl.ini t7g" config: oslist: windows - executable: ScummVM_Windows\\scummvm.exe + executable: "ScummVM_Windows\\\\scummvm.exe" type: default - workingdir: ScummVM_Windows\\ - - arguments: '--no-console -c scummvm-t7g-safe.ini t7g' + workingdir: "ScummVM_Windows\\\\" + - arguments: "--no-console -c scummvm-t7g-safe.ini t7g" config: oslist: windows - description: Play in 'Safe Graphics' Mode - executable: ScummVM_Windows\\scummvm.exe + description: "Play in 'Safe Graphics' Mode" + executable: "ScummVM_Windows\\\\scummvm.exe" type: none - workingdir: ScummVM_Windows\\ - - arguments: '-c scummvm-t7g-opengl.ini t7g' + workingdir: "ScummVM_Windows\\\\" + - arguments: "-c scummvm-t7g-opengl.ini t7g" config: oslist: macos - executable: ScummVM_Mac\\ScummVM.app\\Contents\\MacOS\\scummvm + executable: "ScummVM_Mac\\\\ScummVM.app\\\\Contents\\\\MacOS\\\\scummvm" type: default - workingdir: ScummVM_Mac\\ - - arguments: '-c scummvm-t7g-safe.ini t7g' + workingdir: "ScummVM_Mac\\\\" + - arguments: "-c scummvm-t7g-safe.ini t7g" config: oslist: macos - description: Play in 'Safe Graphics' Mode - executable: ScummVM_Mac\\ScummVM.app\\Contents\\MacOS\\scummvm + description: "Play in 'Safe Graphics' Mode" + executable: "ScummVM_Mac\\\\ScummVM.app\\\\Contents\\\\MacOS\\\\scummvm" type: none - workingdir: ScummVM_Mac\\ + workingdir: "ScummVM_Mac\\\\" - config: oslist: linux - executable: ScummVM_Linux\\launch_the7thguest_opengl.sh + executable: "ScummVM_Linux\\\\launch_the7thguest_opengl.sh" type: default - workingdir: ScummVM_Linux\\ + workingdir: "ScummVM_Linux\\\\" - config: oslist: linux - description: Play in 'Safe Graphics' Mode - executable: ScummVM_Linux\\launch_the7thguest_safe.sh + description: "Play in 'Safe Graphics' Mode" + executable: "ScummVM_Linux\\\\launch_the7thguest_safe.sh" type: none - workingdir: ScummVM_Linux\\ -'2559370': + workingdir: "ScummVM_Linux\\\\" +"2559370": nameLocalized: japanese: スクランブルヴァイス schinese: 爆轰机动队 tchinese: 爆轟機動隊 -'255940': +"255940": installDir: The11thHour launch: - config: @@ -127466,14 +124199,14 @@ oslist: macos executable: The 11th Hour.app type: default -'255960': +"255960": installDir: BadMojo launch: - config: oslist: windows description: Launch executable: launcher.exe -'25600': +"25600": installDir: Eschalon Book I launch: - config: @@ -127485,7 +124218,7 @@ - config: oslist: linux executable: eschalon_book_1 -'256010': +"256010": installDir: Jagged Alliance Flashback launch: - config: @@ -127500,39 +124233,39 @@ oslist: linux description: Launch executable: game.x86 -'256030': +"256030": installDir: Shadows - Heretic Kingdoms launch: - config: oslist: windows description: Launch executable: Shadows.exe -'256050': +"256050": installDir: AdventurePark launch: - - arguments: '-console' + - arguments: "-console" config: oslist: windows executable: AdventurePark-Steam.exe -'256070': +"256070": installDir: Truck Racer launch: - description: Launch executable: TruckRacer.exe -'256190': +"256190": installDir: Enemy Front launch: - config: oslist: windows description: Launch - executable: Bin32\\EnemyFront.exe + executable: "Bin32\\\\EnemyFront.exe" workingdir: Bin32 - config: oslist: windows description: Dedicated Server - executable: Bin32\\DedicatedServer.exe + executable: "Bin32\\\\DedicatedServer.exe" workingdir: Bin32 -'25620': +"25620": installDir: Eschalon Book 2 launch: - config: @@ -127544,7 +124277,7 @@ - config: oslist: linux executable: eschalon_book_2 -'256290': +"256290": installDir: Child of Light launch: - arguments: uplay= -uplay_steam_mode @@ -127552,40 +124285,40 @@ oslist: windows description: Launch Child of Light executable: ChildofLight.exe -'256330': +"256330": installDir: WRC 4 launch: - description: Launch executable: WRC4.exe -'256350': +"256350": installDir: WRC Powerslide launch: - description: Launch executable: WRCPowerslide.exe -'256370': +"256370": installDir: MXGP launch: - description: Launch executable: MXGP.exe -'256390': +"256390": installDir: MotoGP2014 launch: - config: - osarch: '32' + osarch: "32" description: Launch 32-bit executable: MotoGP14.exe - config: - osarch: '64' + osarch: "64" description: Launch 64-bit executable: MotoGP14X64.exe -'256410': {} -'256440': +"256410": {} +"256440": installDir: Monsters & Munitions launch: - config: oslist: windows executable: monsters_x86.exe -'256460': +"256460": installDir: Cosmic Star Heroine launch: - config: @@ -127598,20 +124331,20 @@ executable: CSH Mac.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: CSHLinux.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: CSHLinux.x86_64 type: default -'2570': +"2570": installDir: Vigil Blood Bitterness launch: - executable: vigil blood bitterness.exe -'25700': +"25700": installDir: BaboInvasion launch: - config: @@ -127620,13 +124353,13 @@ - config: oslist: macos executable: BaboInvasion.app -'257030': +"257030": installDir: Project Nimbus launch: - config: - osarch: '32' + osarch: "32" oslist: windows - description: 'Project Nimbus : Original Edition in 32 bit mode' + description: "Project Nimbus : Original Edition in 32 bit mode" executable: Binaries/Win32/UDK.exe type: default - config: @@ -127635,26 +124368,26 @@ executable: Project Nimbus.app type: default - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch Project Nimbus Application Launcher executable: ProjectNimbusLauncher.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows - description: 'Project Nimbus: Original Edition with RAZER Chroma integration' + description: "Project Nimbus: Original Edition with RAZER Chroma integration" executable: RunGameWithChroma.bat type: none -'257050': +"257050": installDir: Darkout launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch 32-bit Darkout Client executable: Darkout.exe -'257080': +"257080": installDir: Tiny Thief launch: - config: @@ -127665,7 +124398,7 @@ oslist: macos description: Launch executable: Tiny Thief.app/tiny_thief.sh -'257120': +"257120": installDir: Not The Robots launch: - config: @@ -127680,25 +124413,25 @@ oslist: macos description: Launch executable: Not the Robots.app -'2571540': +"2571540": installDir: Obesity Simulator launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Obesity Simulator.exe -'257170': +"257170": installDir: Rebuild Gangs of Deadsville launch: - config: oslist: windows description: Launch Win - executable: game\\Rebuild3.exe + executable: "game\\\\Rebuild3.exe" - config: oslist: macos description: Launch Mac executable: Rebuild3Mac.app/Contents/MacOS/Rebuild3 -'257220': +"257220": installDir: Secret Files Sam Peters launch: - config: @@ -127709,7 +124442,7 @@ oslist: windows description: Configuration executable: configtool.exe -'257260': +"257260": installDir: Inherit the Earth launch: - config: @@ -127724,8 +124457,8 @@ oslist: linux description: Launch executable: itegame.bin -'257350': - installDir: Baldur's Gate II Enhanced Edition +"257350": + installDir: "Baldur's Gate II Enhanced Edition" launch: - config: oslist: windows @@ -127737,46 +124470,44 @@ - config: oslist: linux executable: BaldursGateII -'257420': +"257420": installDir: Serious Sam 4 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Bin/x64/Sam4.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows description: Play moddable version - description_loc: - english: Play moddable version executable: Bin/x64/Sam4_Unrestricted.exe type: none -'257510': +"257510": installDir: The Talos Principle launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Play executable: Bin/x64/Talos.exe type: none - config: - osarch: '64' + osarch: "64" oslist: windows description: Play moddable version executable: Bin/x64/Talos_Unrestricted.exe type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: Play executable: Bin/x64/Talos type: none workingdir: Bin/x64 - config: - osarch: '64' + osarch: "64" oslist: linux description: Play moddable version executable: Bin/x64/Talos_Unrestricted @@ -127814,11 +124545,11 @@ executable: Bin/Talos_Unrestricted type: none workingdir: Bin -'2575900': +"2575900": installDir: Corn Kidz 64 launch: - executable: Corn Kidz 64.exe -'257630': +"257630": installDir: Blast Em! launch: - config: @@ -127830,7 +124561,7 @@ description: Launch executable: BlastEm.app type: default -'257670': +"257670": installDir: ElderSign launch: - config: @@ -127842,16 +124573,16 @@ description: Launch executable: ElderSign.app - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: ElderSign.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: ElderSign.x86_64 -'257690': +"257690": installDir: JULIA-Among the Stars launch: - config: @@ -127862,24 +124593,24 @@ oslist: linux description: Launch executable: rungame_hd.sh - - arguments: '-ignore _sd' + - arguments: "-ignore _sd" config: oslist: macos description: Launch executable: JULIA-ATS.app/Contents/MacOS/JULIA-ATS - - arguments: '-ignore _hd' + - arguments: "-ignore _hd" config: oslist: macos description: Launch 1280x720 version executable: JULIA-ATS.app/Contents/MacOS/JULIA-ATS - config: oslist: macos - ownsdlc: '360340' + ownsdlc: "360340" description: Launch J.U.L.I.A. Untold executable: DLC/Julia-Untold/JULIA-Untold.app/Contents/MacOS/JULIA-Untold type: none workingdir: DLC/JULIA-Untold -'257710': +"257710": installDir: MaxGentlemen launch: - config: @@ -127895,7 +124626,7 @@ description: Launch executable: MaxGentlemenLinux type: none -'257730': +"257730": installDir: InfinityWars launch: - config: @@ -127906,12 +124637,12 @@ oslist: windows executable: InfinityHeroes Windows desktop 64-bit.exe type: default -'257750': +"257750": installDir: Bloody Trapland launch: - description: Bloody Trapland executable: Bloody Trapland.exe -'257770': +"257770": installDir: Signal Ops launch: - config: @@ -127926,15 +124657,15 @@ oslist: macos description: Launch executable: signalops_client -'257790': +"257790": installDir: Riptide GP2 launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: GameWin32RetailSteam.exe -'257830': +"257830": installDir: Violett launch: - config: @@ -127949,7 +124680,7 @@ oslist: linux description: Launch executable: violett.x86 -'257850': +"257850": installDir: HyperLightDrifter launch: - config: @@ -127966,7 +124697,7 @@ description: Launch executable: run.sh type: default -'257870': +"257870": installDir: eschalon_book_3 launch: - config: @@ -127981,15 +124712,15 @@ oslist: linux description: Launch executable: eschalon_book_3 -'257890': +"257890": installDir: FrozenHearth launch: - config: oslist: windows description: Launch - executable: Application\\Deploy\\FrozenHearth.exe - workingdir: Application\\Deploy -'257930': + executable: "Application\\\\Deploy\\\\FrozenHearth.exe" + workingdir: "Application\\\\Deploy" +"257930": installDir: Race To Mars launch: - config: @@ -128007,14 +124738,14 @@ description: Launch executable: RTM.x86 type: none -'2579470': - installDir: "Futanari girlfriends ⚧\U0001F467\U0001F346" +"2579470": + installDir: Futanari girlfriends ⚧👧🍆 launch: - config: oslist: windows executable: FutaGF.exe type: default -'257970': +"257970": installDir: Loren Amazon Princess launch: - config: @@ -128029,14 +124760,14 @@ oslist: macos description: Launch executable: LorenRPG.app -'257990': +"257990": installDir: Oozi Earth Adventure launch: - config: oslist: windows description: Launch executable: Oozi.exe -'25800': +"25800": installDir: Europa Universalis III - Complete launch: - config: @@ -128045,12 +124776,12 @@ - config: oslist: macos executable: EU3 Complete.app -'258010': +"258010": installDir: RingRunner launch: - description: Launch executable: RingRunner.exe -'258030': +"258030": installDir: Earthlock launch: - config: @@ -128065,7 +124796,7 @@ oslist: linux executable: Earthlock.x86 type: default -'258050': +"258050": installDir: Survivor Squad launch: - config: @@ -128082,20 +124813,20 @@ executable: Survivor_Squad.x86 - config: oslist: windows - ownsdlc: '344510' - description: 'Play Thank You: The Game' + ownsdlc: "344510" + description: "Play Thank You: The Game" executable: thank_you/ThankYou_TheGame.exe - config: oslist: macos - ownsdlc: '344510' - description: 'Play Thank You: The Game' + ownsdlc: "344510" + description: "Play Thank You: The Game" executable: thank_you/ThankYou_TheGame.app - config: oslist: linux - ownsdlc: '344510' - description: 'Play Thank You: The Game' + ownsdlc: "344510" + description: "Play Thank You: The Game" executable: thank_you/ThankYou_TheGame.x86 -'258070': +"258070": installDir: Probability 0 launch: - config: @@ -128106,79 +124837,79 @@ oslist: macos description: Play executable: Probability 0.app -'258090': +"258090": installDir: 99 Spirits launch: - description: Launch executable: 99 Spirits.eXe - config: - ownsdlc: '262142' + ownsdlc: "262142" description: Cage of Night - English - executable: Cage of Night\\English\\Cage of Night.exe - workingdir: Cage of Night\\English + executable: "Cage of Night\\\\English\\\\Cage of Night.exe" + workingdir: "Cage of Night\\\\English" - config: - ownsdlc: '262142' + ownsdlc: "262142" description: Cage of Night - Japanese - executable: Cage of Night\\Japanese\\Cage of Night.exe - workingdir: Cage of Night\\Japanese + executable: "Cage of Night\\\\Japanese\\\\Cage of Night.exe" + workingdir: "Cage of Night\\\\Japanese" - config: - ownsdlc: '262230' - description: Weeping Demon's Bell - English - executable: Weeping Demon's Bell\\English\\weeping demon's bell.exe - workingdir: Weeping Demon's Bell\\English + ownsdlc: "262230" + description: "Weeping Demon's Bell - English" + executable: "Weeping Demon's Bell\\\\English\\\\weeping demon's bell.exe" + workingdir: "Weeping Demon's Bell\\\\English" - config: - ownsdlc: '262230' - description: Weeping Demon's Bell - Japanese - executable: Weeping Demon's Bell\\Japanese\\weeping demon's bell.exe - workingdir: Weeping Demon's Bell\\Japanese -'258160': + ownsdlc: "262230" + description: "Weeping Demon's Bell - Japanese" + executable: "Weeping Demon's Bell\\\\Japanese\\\\weeping demon's bell.exe" + workingdir: "Weeping Demon's Bell\\\\Japanese" +"258160": installDir: Rise_of_Incarnates launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: exe/roi.exe workingdir: exe - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: exe32/roi32.exe workingdir: exe32 -'258180': +"258180": installDir: Deus Ex The Fall launch: - config: oslist: windows - description: 'Launch Deus Ex: The Fall' + description: "Launch Deus Ex: The Fall" executable: DeusEx_steam.exe -'258200': +"258200": installDir: Talisman Prologue launch: - config: oslist: windows description: Launch executable: Talisman.exe -'258220': +"258220": installDir: Blood Knights launch: - config: oslist: windows executable: BloodKnights.exe -'258240': +"258240": installDir: Tank Operations European Campaign launch: - config: oslist: windows description: Launch executable: game.exe -'25830': +"25830": installDir: Knights of Honor launch: - executable: KoH.exe -'2584260': {} -'25850': +"2584260": {} +"25850": installDir: Elven Legacy launch: - executable: ElvenLegacy.exe @@ -128186,49 +124917,49 @@ - description: Elven Legacy Map Editor executable: MapEditor.exe type: editor -'258520': +"258520": installDir: The Vanishing of Ethan Carter launch: - config: oslist: windows description: Launch - executable: Binaries\\Launcher.exe -'258590': + executable: "Binaries\\\\Launcher.exe" +"258590": installDir: Adventure Time launch: - description: Launch executable: FJEpicQuest.exe -'25870': +"25870": installDir: Stalin vs Martians launch: - - executable: bin\\Game.exe + - executable: "bin\\\\Game.exe" workingdir: bin -'258760': +"258760": installDir: Scania Truck Driving Simulator launch: - config: oslist: windows description: Launch executable: bin/win_x86/scania_truck_driving_simulator.exe - - arguments: '-rdevice dx9' + - arguments: "-rdevice dx9" config: oslist: windows description: Launch with DirectX executable: bin/win_x86/scania_truck_driving_simulator.exe - - arguments: '-rdevice gl' + - arguments: "-rdevice gl" config: oslist: windows description: Launch with OpenGL executable: bin/win_x86/scania_truck_driving_simulator.exe - - arguments: '-safe' + - arguments: "-safe" description: Launch with safe mode executable: bin/win_x86/scania_truck_driving_simulator.exe -'258880': +"258880": installDir: Professional Farmer 2014 launch: - description: Launch executable: Landwirt.exe -'258890': +"258890": installDir: Type Rider launch: - config: @@ -128243,7 +124974,7 @@ oslist: linux description: Launch executable: TypeRider.x86 -'25890': +"25890": installDir: Hearts of Iron 3 launch: - config: @@ -128252,13 +124983,13 @@ - config: oslist: macos executable: Hearts of Iron 3.app -'258910': +"258910": installDir: Citizens of Earth launch: - description: Launch executable: CitizensOfEarth.exe -'258950': - installDir: Montague's Mount +"258950": + installDir: "Montague's Mount" launch: - config: oslist: windows @@ -128272,25 +125003,25 @@ - config: oslist: macos description: Launch - executable: MontaguesMount.app\\Contents\\MacOS\\MontaguesMount + executable: "MontaguesMount.app\\\\Contents\\\\MacOS\\\\MontaguesMount" - config: oslist: linux description: Launch executable: MontaguesMount.x86 -'258970': +"258970": installDir: Gauntlet launch: - - arguments: '-bundle-dir contents -ini settings ' + - arguments: "-bundle-dir contents -ini settings " config: oslist: windows description: Launch - executable: binaries\\gauntlet.exe -'2590': + executable: "binaries\\\\gauntlet.exe" +"2590": installDir: Alpha Prime launch: - executable: AlphaPrime.exe -'25900': - installDir: King's Bounty - The Legend +"25900": + installDir: "King's Bounty - The Legend" launch: - config: oslist: windows @@ -128302,17 +125033,17 @@ executable: save_fixer.exe - config: oslist: macos - executable: King' s Bounty - The Legend.app/Contents/MacOS/LegendLauncher.sh + executable: "King' s Bounty - The Legend.app/Contents/MacOS/LegendLauncher.sh" type: default -'259000': {} -'259020': - installDir: Dragon's Prophet (EU) +"259000": {} +"259020": + installDir: "Dragon's Prophet (EU)" launch: - config: oslist: windows description: Launch executable: dplogin.exe -'259060': +"259060": installDir: Dominions4 launch: - config: @@ -128327,20 +125058,18 @@ betakey: legacy oslist: macos description: Launch - description_loc: - english: Launch executable: Dominions4.app/Contents/MacOS/Dominions4 type: none - config: oslist: macos executable: dom4_mac type: default -'25910': +"25910": installDir: Supreme Ruler 2020 launch: - executable: SupremeRuler2020GC.exe -'2591010': {} -'259130': +"2591010": {} +"259130": installDir: Wasteland launch: - config: @@ -128356,26 +125085,26 @@ oslist: linux description: Launch executable: wasteland -'259170': +"259170": installDir: Alone in the Dark launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: Alone.exe -'259190': +"259190": installDir: Alone in the Dark - The New Nightmare launch: - config: - osarch: '32' + osarch: "32" description: Launch executable: alone4.exe -'25930': +"25930": installDir: East India Company launch: - executable: eastindia.exe -'259320': +"259320": installDir: Heli Heroes launch: - config: @@ -128387,24 +125116,24 @@ description: Graphics settings executable: Setup.exe - config: - osarch: '64' + osarch: "64" oslist: linux description: Run game executable: RunGame type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: Change resolution (run first) executable: RunWinecfg type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: Test resolution (run second) executable: RunSetup type: none -'259340': +"259340": installDir: Chicken Shoot launch: - config: @@ -128417,7 +125146,7 @@ description: Chicken Shoot Gold executable: Chicken Shoot Gold.app type: default -'259390': +"259390": installDir: Arachnid Games launch: - config: @@ -128433,11 +125162,11 @@ description: Launch executable: BPU.x86_64 - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: BPU.x86 -'259410': +"259410": installDir: SneakySneaky launch: - config: @@ -128448,7 +125177,7 @@ oslist: macos description: Launch executable: Sneaky.app -'259430': +"259430": installDir: Zigfrak launch: - config: @@ -128462,19 +125191,19 @@ executable: Zigfrak/Zigfrak.app workingdir: Zigfrak - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: Zigfrak/Zigfrak.x86 type: none workingdir: Zigfrak - config: - osarch: '64' + osarch: "64" oslist: linux executable: Zigfrak/Zigfrak.x86_64 type: none workingdir: Zigfrak -'259450': +"259450": installDir: Drifter launch: - config: @@ -128482,25 +125211,25 @@ description: Launch executable: drifter.exe - config: - osarch: '64' + osarch: "64" oslist: macos description: Launch executable: Drifter OSX.app - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: Drifter-x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Drifter-x86-64 -'259470': +"259470": installDir: Particulars launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch Win executable: particulars_win.exe @@ -128512,10 +125241,10 @@ oslist: linux description: Launch executable: particulars_lin -'259490': +"259490": installDir: BeastBoxingTurbo launch: - - arguments: '-nolog' + - arguments: "-nolog" config: oslist: windows description: Launch @@ -128524,7 +125253,7 @@ oslist: macos description: Launch executable: BeastBoxingTurbo.app -'259510': +"259510": installDir: ShufflepuckCantinaDeluxe launch: - config: @@ -128534,12 +125263,12 @@ - config: oslist: macos description: OSX - executable: Shufflepuck Cantina Deluxe Steam.app\\Contents\\MacOS\\Shufflepuck Cantina Deluxe Steam + executable: "Shufflepuck Cantina Deluxe Steam.app\\\\Contents\\\\MacOS\\\\Shufflepuck Cantina Deluxe Steam" - config: oslist: linux description: Linux executable: ShufflepuckCantinaDeluxe -'259530': +"259530": installDir: SavantAscent launch: - config: @@ -128554,11 +125283,11 @@ oslist: linux description: Launch executable: run.sh -'259550': +"259550": installDir: Hero of the Kingdom launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Hero of the Kingdom.exe type: default @@ -128571,7 +125300,7 @@ executable: Hero of the Kingdom type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: Hero of the Kingdom 32bit.exe type: default @@ -128579,15 +125308,15 @@ russian: Hero of the Kingdom / Герой Королевства schinese: Hero of the Kingdom / 王国英雄 ukrainian: Hero of the Kingdom / Герой Королівства -'259570': +"259570": installDir: Eden Star Pre-Alpha launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch - executable: EdenGame\\Binaries\\Win64\\EdenGame.exe -'259600': + executable: "EdenGame\\\\Binaries\\\\Win64\\\\EdenGame.exe" +"259600": installDir: FindingTeddy launch: - config: @@ -128602,8 +125331,8 @@ oslist: macos description: Launch executable: Finding Teddy.app -'259620': - installDir: '3079' +"259620": + installDir: "3079" launch: - config: oslist: windows @@ -128617,7 +125346,7 @@ oslist: macos description: Launch Mac executable: 3079.sh -'259640': +"259640": installDir: Guise Of The Wolf launch: - config: @@ -128630,15 +125359,15 @@ description: High Resolution (1400x1050 / 1440x900 / 1600x900) executable: Game/Guise Of The Wolf H.exe workingdir: Game -'259660': +"259660": installDir: VoidDestroyer launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: VoidDestroyer.exe -'259680': +"259680": installDir: TalesMajEyal launch: - config: @@ -128646,12 +125375,12 @@ description: Launch executable: t-engine.exe - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: t-engine - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: t-engine64 @@ -128659,14 +125388,14 @@ oslist: macos description: Launch executable: T-Engine.app/Contents/MacOS/t-engine -'259700': +"259700": installDir: DeadSky launch: - config: oslist: windows description: Launch executable: DeadSky.exe - - arguments: '-force-d3d9' + - arguments: "-force-d3d9" config: oslist: windows description: Launch using D3D9 @@ -128679,7 +125408,7 @@ oslist: linux description: Launch executable: DeadSky -'259720': +"259720": installDir: FadingHearts launch: - config: @@ -128694,21 +125423,21 @@ oslist: macos description: Launch executable: Fading Hearts.app -'259740': +"259740": installDir: Nightmares from the Deep The Cursed Heart launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: NightmaresFromTheDeep_TheCursedHeart.exe - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: NightmaresFromTheDeep_TheCursedHeart_i386 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: NightmaresFromTheDeep_TheCursedHeart_amd64 @@ -128716,14 +125445,14 @@ oslist: macos description: Launch executable: mac_steam.app/Contents/MacOS/mac_steam -'259760': +"259760": installDir: Two Brothers launch: - config: oslist: windows description: Launch executable: TwoBrothers.exe -'259780': +"259780": installDir: NimbleQuest launch: - config: @@ -128738,13 +125467,13 @@ oslist: windows description: Launch executable: NimbleQuest.exe -'25980': +"25980": installDir: Majesty 2 launch: - executable: Majesty2.exe - description: Map Editor executable: M2Editor.exe -'259810': +"259810": installDir: HSH Farmageddon launch: - config: @@ -128752,7 +125481,7 @@ description: Launch executable: Home Sheep Home Farmageddon Party Edition.exe type: none -'259830': +"259830": installDir: WoodenSenSeY launch: - config: @@ -128764,125 +125493,125 @@ description: Launch executable: WoodenSenSeY.app - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: launch32.sh - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: launch64.sh -'259870': +"259870": installDir: OMG Zombies launch: - config: oslist: windows description: Launch executable: OMGZ.exe -'259890': +"259890": installDir: Historical Farming launch: - description: Launch executable: agrarhistory2012.exe -'25990': +"25990": installDir: Majesty Gold Edition launch: - description: Launch Majesty - executable: Majesty\\Majesty.exe - - description: 'Launch Majesty: Northern Expansion' - executable: MajX\\MajX.exe -'259910': + executable: "Majesty\\\\Majesty.exe" + - description: "Launch Majesty: Northern Expansion" + executable: "MajX\\\\MajX.exe" +"259910": installDir: Farming Giant launch: - description: Launch executable: farminggiant.exe -'259940': +"259940": installDir: YDKJ_VOL2 launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: YDKJV2.EXE -'259960': +"259960": installDir: YDKJ_VOL3 launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: YDKJV3.EXE -'259980': +"259980": installDir: YDKJ_VOL4 launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: YDKJV4.EXE -'2600': +"2600": installDir: Vampire The Masquerade - Bloodlines launch: - executable: vampire.exe -'26000': +"26000": installDir: The Maw launch: - executable: TheMaw.exe - - arguments: '-rundlc' + - arguments: "-rundlc" config: oslist: windows - ownsdlc: '26005' + ownsdlc: "26005" description: Launch DLC executable: TheMaw.exe -'260000': +"260000": installDir: YDKJ_MOVIES launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: YDKJVM.EXE -'260020': +"260020": installDir: YDKJ_SPORTS launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: YDKJVS.EXE -'260040': +"260040": installDir: YDKJ_TV launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: YDKJVT.EXE -'260060': +"260060": installDir: YDKJ_HEADRUSH launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: YDKJVH.EXE -'260080': +"260080": installDir: YDKJ_VOL6 launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: YDKJ6.exe -'260130': +"260130": installDir: Agarest Zero launch: - config: oslist: windows description: Launch executable: AgarestZero.exe -'260160': +"260160": installDir: The Last Tinker City of Colors launch: - config: @@ -128897,8 +125626,8 @@ oslist: linux description: Launch executable: the last tinker.x86 -'260190': - installDir: Marc Ecko's Getting Up 2 +"260190": + installDir: "Marc Ecko's Getting Up 2" launch: - config: oslist: windows @@ -128909,34 +125638,34 @@ oslist: windows executable: _Bin/launcher.exe type: default -'260210': - installDir: Assassin's Creed Liberation +"260210": + installDir: "Assassin's Creed Liberation" launch: - - arguments: '-uplay_steam_mode' + - arguments: "-uplay_steam_mode" config: oslist: windows description: Launch executable: ac3lhd_32.exe -'260230': +"260230": installDir: Valiant Hearts launch: - - arguments: '-uplay_steam_mode' + - arguments: "-uplay_steam_mode" config: oslist: windows description: Launch executable: Valiant Hearts.exe -'260250': +"260250": installDir: Blood of the Werewolf launch: - description: Launch executable: bin/Blood of the Werewolf.exe workingdir: bin -'260270': +"260270": installDir: Shadows Price For Our Sins launch: - executable: Shadows.exe -'260309': {} -'260330': +"260309": {} +"260330": installDir: Flockers launch: - config: @@ -128948,24 +125677,24 @@ description: Launch executable: Flockers.app - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: Flockers.bin.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Flockers.bin.x64 -'260380': +"260380": installDir: Ninja Cats vs Samurai Dogs launch: - - arguments: '-force-opengl -single-instance' + - arguments: "-force-opengl -single-instance" config: oslist: windows description: Launch executable: NCvSD.exe -'260410': +"260410": installDir: Get Off My Lawn launch: - config: @@ -128976,7 +125705,7 @@ oslist: macos description: Launch executable: GOML.app/Contents/MacOS/Get Off My Lawn! -'260430': +"260430": installDir: The Four Kings Casino and Slots launch: - config: @@ -128989,14 +125718,14 @@ description: Launch executable: The Four Kings Casino and Slots.app/Contents/MacOS/The Four Kings Casino and Slots type: none -'260510': +"260510": installDir: World Basketball Tycoon launch: - config: oslist: windows description: Launch executable: WBMTycoon.exe -'260530': +"260530": installDir: So Many Me launch: - config: @@ -129008,16 +125737,16 @@ description: Launch executable: SoManyMe.app - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: SoManyMe.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: SoManyMe.x86_64 -'260550': +"260550": installDir: Haunted launch: - config: @@ -129025,7 +125754,7 @@ description: Launch executable: bin/release_optimized/Haunted.exe workingdir: bin/release_optimized -'260570': +"260570": installDir: Gray Matter launch: - config: @@ -129036,26 +125765,26 @@ oslist: windows description: Display Configuration executable: config.exe -'260650': +"260650": installDir: Cold War launch: - config: oslist: windows description: Launch Cold War executable: coldwar.exe -'260690': +"260690": installDir: Dark Fall 1 The Journal launch: - - description: 'Launch Dark Fall: The Journal' + - description: "Launch Dark Fall: The Journal" executable: DarkFall.exe -'260710': +"260710": installDir: Dark Fall 2 Lights Out launch: - config: oslist: windows - description: 'Launch Dark Fall 2: Lights Out' + description: "Launch Dark Fall 2: Lights Out" executable: DarkFall2.exe -'260730': +"260730": installDir: Desperados Wanted Dead or Alive launch: - config: @@ -129073,13 +125802,13 @@ description: Launch Desperados Wanted Dead or Alive executable: Desperados.app type: default -'260750': +"260750": installDir: Neighbours from Hell launch: - config: oslist: windows description: Launch Neighbours from Hell - executable: bin\\game.exe + executable: "bin\\\\game.exe" workingdir: bin - config: oslist: macos @@ -129089,7 +125818,7 @@ oslist: linux executable: NeighboursFromHell.x86 type: none -'260770': +"260770": installDir: Neighbours from Hell 2 launch: - config: @@ -129105,7 +125834,7 @@ oslist: linux executable: NeighboursFromHell2.x86 type: none -'260790': +"260790": installDir: 1001 Spikes launch: - config: @@ -129113,52 +125842,52 @@ description: Launch executable: 1001 Spikes.exe - config: - osarch: '64' + osarch: "64" oslist: macos description: Launch executable: 1001 Spikes.app - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: run-i386.sh - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: run-x64.sh -'260930': +"260930": installDir: Emergency 2014 launch: - config: oslist: windows description: Launch - executable: \\bin.x86\\em2014.exe -'2610': + executable: "\\\\bin.x86\\\\em2014.exe" +"2610": installDir: GUN launch: - executable: gun.exe -'261030': +"261030": installDir: The Walking Dead Season Two launch: - config: oslist: windows - description: 'Launch The Walking Dead: Season 2' + description: "Launch The Walking Dead: Season 2" executable: TheWalkingDead2.exe - config: oslist: macos - description: 'Launch The Walking Dead: Season 2' + description: "Launch The Walking Dead: Season 2" executable: The Walking Dead 2.app -'261110': +"261110": installDir: KillerIsDead launch: - - arguments: '-debug_steamapi' + - arguments: "-debug_steamapi" config: - osarch: '32' + osarch: "32" oslist: windows description: Launch - executable: Binaries\\Win32\\KidGame.exe -'261180': + executable: "Binaries\\\\Win32\\\\KidGame.exe" +"261180": installDir: lethalleague launch: - config: @@ -129173,11 +125902,11 @@ oslist: linux description: Launch executable: LethalLeague -'261350': +"261350": installDir: Steam Bandits Outpost launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: sbo.exe @@ -129186,65 +125915,57 @@ description: Launch executable: SteamBanditsOutpost.app - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: SteamBanditsOutpost.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: SteamBanditsOutpost.x86_64 -'261430': +"261430": installDir: AION launch: - - arguments: >- - /LauncherID:\"GameForge\" /CompanyID:\"11\" /GameID:\"AION-LIVE\" /LUpdateAddr:\"update.aion.gfsrv.net\" - /ExAccessToken:\"gfsteam\" + - arguments: "/LauncherID:\\\"GameForge\\\" /CompanyID:\\\"11\\\" /GameID:\\\"AION-LIVE\\\" /LUpdateAddr:\\\"update.aion.gfsrv.net\\\" /ExAccessToken:\\\"gfsteam\\\"" config: oslist: windows description: AION Live executable: NCLauncher.exe type: none - - arguments: >- - /LauncherID:\"GameForge\" /CompanyID:\"11\" /GameID:\"AION-QA\" /LUpdateAddr:\"dev.update.aion.gfsrv.net\" - /ExAccessToken:\"gfsteam\" + - arguments: "/LauncherID:\\\"GameForge\\\" /CompanyID:\\\"11\\\" /GameID:\\\"AION-QA\\\" /LUpdateAddr:\\\"dev.update.aion.gfsrv.net\\\" /ExAccessToken:\\\"gfsteam\\\"" config: betakey: aion-qa1 oslist: windows description: AION QA1 executable: NCLauncher.exe type: none - - arguments: >- - /LauncherID:\"GameForge\" /CompanyID:\"11\" /GameID:\"AION-QA2\" /LUpdateAddr:\"dev.update.aion.gfsrv.net\" - /ExAccessToken:\"gfsteam\" + - arguments: "/LauncherID:\\\"GameForge\\\" /CompanyID:\\\"11\\\" /GameID:\\\"AION-QA2\\\" /LUpdateAddr:\\\"dev.update.aion.gfsrv.net\\\" /ExAccessToken:\\\"gfsteam\\\"" config: betakey: aion-qa2 oslist: windows description: AION QA2 executable: NCLauncher.exe type: none - - arguments: >- - /LauncherID:\"GameForge\" /CompanyID:\"11\" /GameID:\"AION-LIVE\" /LUpdateAddr:\"update.aion.gfsrv.net\" - /ExAccessToken:\"gfsteam\" + - arguments: "/LauncherID:\\\"GameForge\\\" /CompanyID:\\\"11\\\" /GameID:\\\"AION-LIVE\\\" /LUpdateAddr:\\\"update.aion.gfsrv.net\\\" /ExAccessToken:\\\"gfsteam\\\"" config: betakey: beta oslist: windows description: Debug executable: NCLauncher.exe type: default -'261470': +"261470": installDir: Distant Worlds Universe launch: - config: oslist: windows description: Launch executable: autorun.exe -'261490': +"261490": installDir: Bedlam launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: bedlam.exe @@ -129252,7 +125973,7 @@ oslist: macos description: Launch executable: bedlam.app -'261510': +"261510": installDir: Tesla Effect launch: - config: @@ -129263,7 +125984,7 @@ oslist: macos description: Play Tesla Effect executable: TeslaEffect.app -'261530': +"261530": installDir: Lifeless Planet launch: - config: @@ -129275,15 +125996,15 @@ description: Launch executable: LifelessPlanet.app - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: LifelessPlanet.x86_64 -'261550': +"261550": installDir: Mount & Blade II Bannerlord launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch Game executable: bin/Win64_Shipping_Client/TaleWorlds.MountAndBlade.Launcher.exe @@ -129292,31 +126013,29 @@ - config: oslist: linux description: Launch Game - description_loc: - english: Launch Game executable: bin/Win64_Shipping_Client/Bannerlord.Native.exe workingdir: bin/Win64_Shipping_Client -'261570': +"261570": installDir: Ori launch: - config: oslist: windows description: Launch executable: Ori.exe -'261600': +"261600": installDir: BPM14 launch: - config: oslist: windows description: Launch executable: BPM.exe -'261640': +"261640": installDir: BorderlandsPreSequel launch: - config: oslist: windows description: Launch - executable: Binaries\\Win32\\Launcher.exe + executable: "Binaries\\\\Win32\\\\Launcher.exe" - config: oslist: macos description: Launch @@ -129324,8 +126043,8 @@ - config: oslist: linux description: Launch - executable: ./BorderlandsPreSequel -'261680': + executable: "./BorderlandsPreSequel" +"261680": installDir: Journal launch: - config: @@ -129340,8 +126059,8 @@ oslist: linux description: Launch executable: Journal -'261700': - installDir: Eryi's Action +"261700": + installDir: "Eryi's Action" launch: - config: oslist: windows @@ -129351,7 +126070,7 @@ oslist: linux executable: EryisAction type: default -'261720': +"261720": installDir: Holy Avatar vs Maidens of the Dead launch: - config: @@ -129369,75 +126088,75 @@ description: Manual executable: x86_installer/Maidens of the dead.pdf workingdir: x86_installer -'261740': +"261740": installDir: HumansMustAnswer launch: - config: oslist: windows description: Launch executable: Humans Must Answer.exe -'261760': +"261760": installDir: Lichdom Battlemage launch: - config: - osarch: '32' + osarch: "32" oslist: windows - description: 'Play Lichdom: Battlemage (32-bit)' + description: "Play Lichdom: Battlemage (32-bit)" executable: Bin32/LichdomBattlemage.exe - config: - osarch: '64' + osarch: "64" oslist: windows - description: 'Play Lichdom: Battlemage (64-bit)' + description: "Play Lichdom: Battlemage (64-bit)" executable: Bin64/LichdomBattlemage.exe -'2618090': +"2618090": installDir: Mistward launch: - config: oslist: windows executable: mistward.exe -'261820': +"261820": installDir: Estranged Act I launch: - - arguments: '-game estrangedact1 -steam' + - arguments: "-game estrangedact1 -steam" config: oslist: windows description: Launch executable: hl2.exe workingdir: estrangedact1 - - arguments: '-game estrangedact1 -steam' + - arguments: "-game estrangedact1 -steam" config: oslist: macos description: Launch executable: hl2.sh workingdir: estrangedact1 - - arguments: '-game estrangedact1 -steam' + - arguments: "-game estrangedact1 -steam" config: oslist: linux description: Launch executable: hl2.sh workingdir: estrangedact1 - config: - osarch: '64' + osarch: "64" oslist: windows description: Mount Workshop Items executable: WorkshopMount.bat type: none - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch Level Editor executable: Hammer.bat type: none -'261880': +"261880": installDir: Corporate Lifestyle Simulator launch: - description: Launch executable: NotZombies.exe -'261900': +"261900": installDir: The Real Texas launch: - config: - osarch: '32' + osarch: "32" oslist: linux executable: texas_steam_linux32.sh type: default @@ -129450,26 +126169,26 @@ executable: texas type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: texas_steam_linux64.sh type: default -'261940': +"261940": installDir: MCO - Secret Paths launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: Launcher.exe -'261960': +"261960": installDir: CubeAndStar_AnArbitraryLove launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch - executable: Cube and Star PC 64 bit\\Cube and Star An Arbitrary Love.exe + executable: "Cube and Star PC 64 bit\\\\Cube and Star An Arbitrary Love.exe" workingdir: Cube and Star PC 64 bit - config: oslist: linux @@ -129480,20 +126199,20 @@ description: Launch executable: Cube and Star An Arbitrary Love.app - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch - executable: Cube and Star PC 32 bit\\Cube and Star An Arbitrary Love.exe + executable: "Cube and Star PC 32 bit\\\\Cube and Star An Arbitrary Love.exe" workingdir: Cube and Star PC 32 bit -'261980': +"261980": installDir: Half-Life launch: - - arguments: '-game before' + - arguments: "-game before" config: oslist: windows description: Launch executable: hl.exe -'2620': +"2620": installDir: Call of Duty launch: - config: @@ -129511,7 +126230,7 @@ oslist: macos description: Launch Call of Duty Multiplayer executable: Call of Duty MP.app -'262000': +"262000": installDir: Gabriel Knight 1 launch: - config: @@ -129522,45 +126241,45 @@ oslist: macos description: Launch executable: GK1.app -'262060': +"262060": installDir: DarkestDungeon launch: - - arguments: '-skipvalidation' + - arguments: "-skipvalidation" config: oslist: windows description: Launch executable: _windows/darkest.exe type: none workingdir: _windows - - arguments: '-skipvalidation' + - arguments: "-skipvalidation" config: oslist: macos description: Launch executable: _osx/darkest.app type: none - - arguments: '-skipvalidation' + - arguments: "-skipvalidation" config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: _linux/darkest.bin.x86 type: none - - arguments: '-skipvalidation' + - arguments: "-skipvalidation" config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: _linux/darkest.bin.x86_64 type: none -'262080': +"262080": installDir: BluBeeGames launch: - config: oslist: windows description: Launch - executable: Binaries\\Win32\\IronSoul.exe - workingdir: Binaries\\Win32 -'262100': + executable: "Binaries\\\\Win32\\\\IronSoul.exe" + workingdir: "Binaries\\\\Win32" +"262100": installDir: Trench Run launch: - arguments: noautoupdate steam noconsole @@ -129576,16 +126295,16 @@ - arguments: steam noautoupdate config: oslist: macos - executable: TR.app\\Contents\\MacOS\\TR + executable: "TR.app\\\\Contents\\\\MacOS\\\\TR" type: none -'262120': +"262120": installDir: Toy Soldiers Complete launch: - config: oslist: windows description: Launch executable: Game.exe -'262150': +"262150": installDir: vanguard-princess launch: - config: @@ -129606,47 +126325,47 @@ oslist: linux executable: bin/cxsteamwrapper type: none -'262190': +"262190": installDir: Zombeer launch: - config: oslist: windows description: Launch executable: Zombeer.exe -'262210': +"262210": installDir: Last Knight launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch - executable: Binaries\\Win32\\LastKnight.exe + executable: "Binaries\\\\Win32\\\\LastKnight.exe" - config: oslist: macos description: Launch executable: LastKnight.app -'262240': +"262240": installDir: Suguri launch: - description: Launch executable: Suguri.exe -'262260': +"262260": installDir: JnG Gold launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: jng_gold.exe - config: oslist: macos description: Launch - executable: Jets'n'Guns Gold.app + executable: "Jets'n'Guns Gold.app" - config: oslist: linux description: Launch executable: jng_gold -'262280': +"262280": installDir: Dungeons2 launch: - config: @@ -129661,7 +126380,7 @@ oslist: linux description: Launch executable: Dungeons2 -'262370': +"262370": installDir: A.N.N.E launch: - config: @@ -129676,7 +126395,7 @@ oslist: linux executable: ANNE.x86_64 type: default -'262390': +"262390": installDir: Cloudbuilt launch: - config: @@ -129687,7 +126406,7 @@ oslist: windows description: Launch Level Editor executable: CommunityLevelEditor.exe -'262410': +"262410": installDir: WOG launch: - config: @@ -129701,22 +126420,22 @@ oslist: linux description: Launch executable: disasm.x86 -'262450': +"262450": installDir: Dead Mans Draw launch: - config: oslist: windows - description: Play Dead Man's Draw + description: "Play Dead Man's Draw" executable: DeadMansDraw.exe -'262470': +"262470": installDir: RollersOfTheRealm launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: rollers.exe -'262510': +"262510": installDir: Crimson Room launch: - config: @@ -129731,15 +126450,15 @@ betakey: debug executable: CrimsonRoomDecade.exe type: vr -'262550': +"262550": installDir: GunmanClive launch: - config: oslist: windows description: Launch executable: gunmanclive.exe -'262590': - installDir: Chuck's Challenge 3D 2020 +"262590": + installDir: "Chuck's Challenge 3D 2020" launch: - config: oslist: windows @@ -129755,7 +126474,7 @@ description: Launch executable: ChucksChallenge3D-Full.x86 type: none -'262630': +"262630": installDir: ArmiesOfHell launch: - config: @@ -129766,7 +126485,7 @@ oslist: macos executable: ArmiesOfHell.app type: default -'262690': +"262690": installDir: Little Racers STREET launch: - config: @@ -129781,7 +126500,7 @@ oslist: linux description: Launch executable: LittleRacersStreet -'262750': +"262750": installDir: GoDFactoryWingmen launch: - config: @@ -129789,12 +126508,12 @@ description: Launch executable: GoDFactoryWingmen.exe - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: GoDFactoryWingmen.x86_64 - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch32 executable: GoDFactoryWingmen.x86 @@ -129802,7 +126521,7 @@ oslist: macos description: Launch executable: GoDFactoryWingmen.app -'262770': +"262770": installDir: Freedom Fall launch: - config: @@ -129813,21 +126532,21 @@ oslist: macos description: Launch executable: Freedom Fall.app -'262790': +"262790": installDir: ODP launch: - config: oslist: windows description: Play ODP executable: nw.exe -'262810': +"262810": installDir: Super Turbo Demon Busters! launch: - config: oslist: windows executable: stdb.exe type: default -'262830': +"262830": installDir: Crimsonland launch: - config: @@ -129846,7 +126565,7 @@ - config: oslist: windows description: Old Classic Crimsonland 2003 version - executable: crimsonland-2003-classic\\old-crimsonland.exe + executable: "crimsonland-2003-classic\\\\old-crimsonland.exe" type: option1 workingdir: crimsonland-2003-classic - config: @@ -129854,7 +126573,7 @@ description: Crimsonland (D3D11) executable: Crimsonland-D3D11.exe type: option2 -'262850': +"262850": installDir: The Journey Down Chapter Two launch: - config: @@ -129869,28 +126588,28 @@ oslist: linux description: Run executable: JourneyDown2 -'262870': +"262870": installDir: Recovery Search and Rescue launch: - - arguments: '-console' + - arguments: "-console" description: Launch executable: SearchAndRescue/SearchAndRescue.exe workingdir: SearchAndRescue -'262900': +"262900": installDir: SmoothOperators launch: - config: oslist: windows description: Launch executable: Smooth Operators.exe -'262920': +"262920": installDir: SuperChainCrusherHorizon launch: - config: oslist: windows description: Launch executable: SuperChainCrusherHorizon.exe -'262940': +"262940": installDir: Broken Sword 5 launch: - config: @@ -129906,26 +126625,26 @@ executable: BS5 type: default nameLocalized: - french: 'Les Chevaliers de Baphomet 5 : La Malédiction du Serpent' + french: "Les Chevaliers de Baphomet 5 : La Malédiction du Serpent" german: Baphomets Fluch 5 - Der Sündenfall italian: Broken Sword 5 - La maledizione del serpente polish: Broken Sword 5 – Klątwa Węża - russian: 'Сломанный Меч 5: Проклятие Змея' - spanish: 'Broken Sword 5: La maldición de la serpiente' -'262960': + russian: "Сломанный Меч 5: Проклятие Змея" + spanish: "Broken Sword 5: La maldición de la serpiente" +"262960": installDir: Castle In The Darkness launch: - config: oslist: windows description: Launch executable: CastleInTheDarkness.exe -'262980': +"262980": installDir: C-RUSH launch: - config: oslist: windows executable: C-RUSH.exe -'2630': +"2630": installDir: Call of Duty 2 launch: - config: @@ -129943,12 +126662,12 @@ oslist: macos description: Launch Call of Duty 2 Multiplayer executable: Call of Duty 2.app/Contents/Call of Duty 2 Multiplayer.app -'26300': +"26300": installDir: Merchants of Brooklyn launch: - description: Merchants of Brooklyn executable: Bin32/launcher.exe -'263020': +"263020": installDir: Starwhal launch: - config: @@ -129963,16 +126682,16 @@ oslist: linux description: Launch executable: Starwhal.x86 -'263040': +"263040": installDir: BotColonyApp launch: - - arguments: '-console' + - arguments: "-console" config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: BotColony.exe -'263060': +"263060": installDir: Blockstorm launch: - config: @@ -129987,7 +126706,7 @@ oslist: macos description: Launch executable: Blockstorm.app -'263080': +"263080": installDir: Pixel Boy launch: - config: @@ -129999,38 +126718,38 @@ - config: oslist: macos executable: Pixel Boy.app -'263100': +"263100": installDir: 903m launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: Binaries/Win32/903m.exe - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: Binaries/Win32/903m.exe -'263120': +"263120": installDir: LUDWIG launch: - - arguments: '-popupwindow' + - arguments: "-popupwindow" config: oslist: windows description: Launch executable: ludwig.exe -'263140': +"263140": installDir: PostmortemGame launch: - description: Launch - executable: PostmortemGame\\PostmortemGame.exe + executable: "PostmortemGame\\\\PostmortemGame.exe" - description: Configure Key Bindings - executable: PostmortemGame\\KeyBinder.exe - workingdir: PostmortemGame\\ + executable: "PostmortemGame\\\\KeyBinder.exe" + workingdir: "PostmortemGame\\\\" - description: View Bonus Materials - executable: ScytheCutBonusMaterials\\ -'263180': + executable: "ScytheCutBonusMaterials\\\\" +"263180": installDir: Squirts Adventure launch: - config: @@ -130041,7 +126760,7 @@ oslist: windows description: Launch executable: squirt_win.exe -'263200': +"263200": installDir: Signs of Life launch: - config: @@ -130054,26 +126773,26 @@ description: Signs of Life - .sh executable: SignsOfLife.sh type: default -'263260': +"263260": installDir: Motor Rock launch: - description: Launch executable: MR.exe -'263280': +"263280": installDir: Spintires launch: - config: oslist: windows description: Launch executable: SpinTires.exe -'263300': +"263300": installDir: BlazBlue Calamity Trigger launch: - config: oslist: windows description: Launch executable: BBCT.exe -'263320': +"263320": installDir: SaturdayMorningRPG launch: - config: @@ -130088,7 +126807,7 @@ oslist: linux description: Launch executable: SMRPG_Linux.x86 -'263340': +"263340": installDir: Continue_4 launch: - config: @@ -130103,8 +126822,8 @@ oslist: macos description: Launch executable: Continue_OSX_1_4.app -'263360': - installDir: '3089' +"263360": + installDir: "3089" launch: - config: oslist: windows @@ -130118,7 +126837,7 @@ oslist: macos description: Launch Mac executable: 3089.sh -'263380': +"263380": installDir: Driftmoon launch: - config: @@ -130130,16 +126849,16 @@ executable: Driftmoon.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: driftmoon.x86_64 type: default -'263400': +"263400": installDir: War of the Human Tanks launch: - description: Launch executable: War of the Human Tanks.exe -'263420': +"263420": installDir: Probably Archery launch: - config: @@ -130150,12 +126869,12 @@ oslist: macos description: Launch executable: Probably Archery.app - - arguments: '-logFile log.txt' + - arguments: "-logFile log.txt" config: oslist: linux description: Launch executable: ProbablyArchery.x86 -'263460': +"263460": installDir: GirlsLikeRobots launch: - config: @@ -130170,15 +126889,15 @@ oslist: macos description: Launch executable: GirlsLikeRobots.app/Contents/MacOS/GirlsLikeRobots -'263480': +"263480": installDir: FinalRush launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: binaries/win32/FinalRushGame.exe -'263500': +"263500": installDir: Dragons&Titans launch: - config: @@ -130193,49 +126912,49 @@ oslist: linux description: Launch executable: dnt.x86 -'263520': +"263520": installDir: Enola launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Windows launch - executable: Binaries\\Win32\\udk.exe + executable: "Binaries\\\\Win32\\\\udk.exe" - config: oslist: macos description: Mac lauch executable: Enola.app -'263540': +"263540": installDir: VillagersAndHeroes launch: - - arguments: '-useSteam' + - arguments: "-useSteam" config: oslist: windows description: Launch executable: AMysticalLandSAC/VillagersAndHeroes.exe workingdir: AMysticalLandSAC -'263560': +"263560": installDir: PaperSorcerer launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: PaperSorcererPC.exe -'263620': +"263620": installDir: Mitsurugi Kamui Hikae launch: - description: Launch executable: mitsurugi.exe -'263640': +"263640": installDir: CDFGhostship launch: - config: oslist: windows description: Launch (32Bit) - executable: binaries\\win32\\udk.exe - workingdir: binaries\\win32\\ -'263680': + executable: "binaries\\\\win32\\\\udk.exe" + workingdir: "binaries\\\\win32\\\\" +"263680": installDir: UnearthedEpisode1 launch: - config: @@ -130246,7 +126965,7 @@ oslist: macos description: Launch executable: UnearthedEpisode1.app -'263700': +"263700": installDir: Muffin Knight launch: - config: @@ -130257,35 +126976,35 @@ oslist: macos description: Launch executable: Muffin Knight.app -'263720': +"263720": installDir: Brawlout launch: - config: oslist: windows executable: Brawlout.exe type: default - - arguments: '-window-mode exclusive' + - arguments: "-window-mode exclusive" config: oslist: windows description: Brawlout (Exclusive Fullscreen) executable: Brawlout.exe type: option1 - - arguments: '-force-d3d9' + - arguments: "-force-d3d9" config: oslist: windows description: Brawlout (Direct3D9) executable: Brawlout.exe type: option2 - - arguments: '-reset_settings' + - arguments: "-reset_settings" config: oslist: windows description: Brawlout (Reset Settings) executable: Brawlout.exe type: option3 -'263740': +"263740": installDir: FootLOL launch: - - arguments: '-console' + - arguments: "-console" config: oslist: windows description: Launch @@ -130304,10 +127023,10 @@ - config: betakey: test(hidden) oslist: windows - description: 'FootLOL: Mayhem Edition' - executable: FootLOL Mayhem Edition\\FootLOL Mayhem Edition.exe + description: "FootLOL: Mayhem Edition" + executable: "FootLOL Mayhem Edition\\\\FootLOL Mayhem Edition.exe" type: option1 -'263760': +"263760": installDir: TurboDismount launch: - config: @@ -130318,19 +127037,19 @@ oslist: macos description: Launch executable: TurboDismount.app/Contents/MacOS/Turbo Dismount -'263800': +"263800": installDir: Spaceforce Constellations launch: - config: oslist: windows description: Launch executable: Constellations.exe -'263820': +"263820": installDir: EvilQuestInstall launch: - description: Launch executable: EvilQuest.exe -'263840': +"263840": installDir: OOTP Baseball 14 launch: - config: @@ -130345,11 +127064,11 @@ oslist: linux description: Launch executable: OOTP14.sh -'263860': +"263860": installDir: SPACECOM launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: SPACECOM.exe @@ -130362,14 +127081,14 @@ oslist: linux description: Launch executable: SPACECOM.x86 -'263880': +"263880": installDir: Aqua Kitty launch: - config: oslist: windows description: Launch executable: aqua_kitty.exe -'263920': +"263920": installDir: ZombieGrinder launch: - config: @@ -130387,27 +127106,27 @@ description: Launch executable: Binary/Game workingdir: Binary/ -'263940': +"263940": installDir: Red Baron launch: - - arguments: '-conf \"..\\dosboxred1.conf\" -conf \"..\\dosboxred1_single.conf\" -noconsole -c exit' + - arguments: "-conf \\\"..\\\\dosboxred1.conf\\\" -conf \\\"..\\\\dosboxred1_single.conf\\\" -noconsole -c exit" config: oslist: windows description: Red Baron Classic - executable: Red Baron\\DOSBOX\\DOSBox.exe + executable: "Red Baron\\\\DOSBOX\\\\DOSBox.exe" type: option1 - workingdir: Red Baron\\DOSBOX\\ + workingdir: "Red Baron\\\\DOSBOX\\\\" - config: oslist: windows description: Red Baron 3D - executable: Red Baron 3D\\Baron.exe + executable: "Red Baron 3D\\\\Baron.exe" type: option1 - config: oslist: windows description: Red Baron 3D Multiplayer - executable: Red Baron 3D\\Baronmmp.exe + executable: "Red Baron 3D\\\\Baronmmp.exe" type: option1 -'263960': +"263960": installDir: Wyv and Keep in The Temple of the Lost Idol launch: - config: @@ -130417,12 +127136,12 @@ - config: oslist: linux description: Launch - executable: ./WyvAndKeep + executable: "./WyvAndKeep" - config: oslist: macos description: Launch executable: Wyv and Keep.app -'263980': +"263980": installDir: outtheresomewhere launch: - config: @@ -130433,7 +127152,7 @@ oslist: macos description: Launch executable: ots.app -'264000': +"264000": installDir: Son of Nor launch: - config: @@ -130448,7 +127167,7 @@ oslist: linux description: Launch executable: SON.x86 -'264060': +"264060": installDir: FullBore launch: - config: @@ -130459,7 +127178,7 @@ oslist: linux description: Launch executable: gofullbore.sh -'264080': +"264080": installDir: Vangers launch: - config: @@ -130469,47 +127188,47 @@ type: none workingdir: data - config: - osarch: '32' + osarch: "32" oslist: linux description: Russian Linux 32bit executable: bin/linux/vangers32 workingdir: data - config: - osarch: '64' + osarch: "64" oslist: linux description: Russian Linux 64bit executable: bin/linux/vangers64 workingdir: data - config: - osarch: '64' + osarch: "64" oslist: windows description: win64 executable: bin/windows-64/vangers.exe type: none workingdir: data - config: - osarch: '32' + osarch: "32" oslist: windows description: win32 executable: bin/windows-32/vangers.exe type: none workingdir: data -'264120': +"264120": installDir: Victory launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: Victory.exe -'264140': +"264140": installDir: Pixel Piracy launch: - config: oslist: windows description: WINDOWS (DIRECTX9) executable: PixelPiracy.exe - - arguments: '-force-opengl ' + - arguments: "-force-opengl " config: oslist: windows description: WINDOWS (OPENGL) @@ -130522,7 +127241,7 @@ oslist: macos description: Launch executable: pixelpiracy.app -'264160': +"264160": installDir: WazHack launch: - config: @@ -130537,43 +127256,43 @@ oslist: linux description: Launch executable: WazHack -'264200': +"264200": installDir: One Finger Death Punch launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: One Finger Death Punch Windows executable: One Finger Death Punch.exe -'264220': +"264220": installDir: MrBree+ launch: - config: oslist: windows description: Launch executable: MrBree.exe -'264240': +"264240": installDir: Consortium launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: consortium.exe - - arguments: '-dev' + - arguments: "-dev" config: - osarch: '32' + osarch: "32" oslist: windows description: Launch Development executable: consortium.exe -'264260': +"264260": installDir: GlobalOutbreak launch: - config: oslist: windows description: Launch executable: GlobalOutbreak.exe -'264280': +"264280": installDir: 99 Levels To Hell launch: - config: @@ -130588,7 +127307,7 @@ oslist: macos description: Launch executable: 99 Levels To Hell.app -'264300': +"264300": installDir: GunsNZombies launch: - config: @@ -130599,14 +127318,14 @@ oslist: macos description: Launch executable: GNZ.app -'264320': +"264320": installDir: CaptainMorgane launch: - config: oslist: windows description: Launch executable: CaptainMorgane.exe -'264340': +"264340": installDir: MajorMayhem launch: - config: @@ -130621,14 +127340,14 @@ oslist: linux description: Launch executable: MajorMayhem.exe -'264360': +"264360": installDir: La Tale launch: - config: oslist: windows description: Launch executable: ogpsteam.exe -'264380': +"264380": installDir: narcissu2 launch: - config: @@ -130643,14 +127362,14 @@ oslist: macos description: Launch executable: Contents/MacOS/narcissu -'264400': +"264400": installDir: JacobJonesAndTheBigFootMysteryEpisode1 launch: - config: oslist: windows description: Launch - executable: Binaries\\Win32\\JacobJonesGame.exe -'264440': + executable: "Binaries\\\\Win32\\\\JacobJonesGame.exe" +"264440": installDir: ChildrenOfLiberty launch: - config: @@ -130665,15 +127384,15 @@ oslist: linux description: Launch executable: ChildrenOfLiberty.x86 -'264460': +"264460": installDir: AMen launch: - config: oslist: windows description: Launch executable: A-men.exe -'264480': {} -'264520': +"264480": {} +"264520": installDir: Moebius Empire Rising launch: - config: @@ -130685,21 +127404,21 @@ executable: Moebius.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Moebius.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Moebius.x86_64 type: default -'264540': +"264540": installDir: Platformines launch: - description: Launch executable: platformines.exe -'264560': +"264560": installDir: Quest for Infamy launch: - config: @@ -130707,12 +127426,12 @@ description: Launch executable: QFI.exe - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: QFI.bin.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: QFI.bin.x86_64 @@ -130729,73 +127448,62 @@ - description: Read Quickstart Walkthrough... executable: QFI-QuickStartWalkThrough.pdf - config: - osarch: '32' + osarch: "32" oslist: linux description: Setup Options... executable: ags-setup.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Setup Options... executable: ags-setup.x86_64 -'264580': +"264580": installDir: Lost Civilization launch: - config: oslist: windows description: Launch executable: Lost Civilization.exe -'264690': +"264690": installDir: Coin Crypt launch: - config: oslist: windows description: Launch - executable: PC\\CoinCrypt-win.exe + executable: "PC\\\\CoinCrypt-win.exe" - config: oslist: macos description: Launch - executable: Mac\\CoinCrypt.app\\Contents\\MacOS\\Mac_Runner + executable: "Mac\\\\CoinCrypt.app\\\\Contents\\\\MacOS\\\\Mac_Runner" type: none - config: oslist: linux description: Launch - executable: Unix\\runner -'264710': + executable: "Unix\\\\runner" +"264710": installDir: Subnautica launch: - - arguments: '-silent-crashes -vrmode none' + - arguments: "-silent-crashes -vrmode none" config: - osarch: '64' + osarch: "64" oslist: windows description: Launch - description_loc: - english: Launch - sc_schinese: 开始 executable: Subnautica.exe type: default - config: oslist: macos description: Launch - description_loc: - english: Launch - sc_schinese: 开始 executable: Subnautica.app type: default - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch - description_loc: - english: Launch - sc_schinese: 开始 executable: Subnautica32.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows - description_loc: - sc_schinese: 开始 executable: Subnautica.exe type: vr nameLocalized: @@ -130803,7 +127511,7 @@ koreana: 서브노티카 sc_schinese: 深海迷航 schinese: 深海迷航 -'264730': +"264730": installDir: Deadly30 launch: - config: @@ -130818,7 +127526,7 @@ oslist: linux description: Linux Game Launch executable: Deadly30 -'26500': +"26500": installDir: Cogs launch: - config: @@ -130830,7 +127538,7 @@ - config: oslist: linux executable: Cogs -'265000': +"265000": installDir: FORCED SHOWDOWN launch: - config: @@ -130846,32 +127554,32 @@ oslist: linux executable: run_steam.sh type: none -'265020': +"265020": installDir: Ashes Cricket 2013 launch: - description: Launch executable: Game.exe -'265120': +"265120": installDir: Meridian - New World launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: Meridian - New World.exe -'265170': +"265170": installDir: Acceleration of Suguri launch: - description: Launch executable: AoSuguriHD.exe -'265210': - installDir: Viscera Cleanup Detail Santa's Rampage +"265210": + installDir: "Viscera Cleanup Detail Santa's Rampage" launch: - description: Launch 32 bit executable: Binaries/Win32/UDK.exe - description: Launch 64 bit executable: Binaries/Win64/UDK.exe -'265240': +"265240": installDir: Crazy Machines Golden Gears launch: - config: @@ -130886,15 +127594,15 @@ oslist: linux description: Launch executable: cmgg -'265300': +"265300": installDir: Lords Of The Fallen launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch Game - executable: bin\\LordsOfTheFallen.exe -'265330': + executable: "bin\\\\LordsOfTheFallen.exe" +"265330": installDir: Gomo launch: - config: @@ -130905,8 +127613,8 @@ oslist: macos description: Launch executable: Gomo.app - workingdir: ./ -'265380': + workingdir: "./" +"265380": installDir: Grimind launch: - config: @@ -130921,12 +127629,12 @@ oslist: linux description: Launch executable: Grimind -'265400': +"265400": installDir: FX Football launch: - description: Launch executable: FXFootball.exe -'265470': +"265470": installDir: Even the Ocean launch: - config: @@ -130938,53 +127646,53 @@ oslist: macos executable: rungame.sh type: default -'265550': +"265550": installDir: deadrising3 launch: - description: Launch executable: deadrising3.exe -'265590': +"265590": installDir: TheRedSolstice launch: - config: oslist: windows description: Launch - executable: bin\\game.exe + executable: "bin\\\\game.exe" workingdir: bin -'265610': +"265610": installDir: Epic Battle Fantasy 4 launch: - description: Launch executable: EBF4.exe -'265630': +"265630": installDir: Fistful of Frags launch: - - arguments: '-steam -game ../fof' + - arguments: "-steam -game ../fof" config: oslist: windows description: Launch - executable: sdk\\hl2.exe - - arguments: '-steam -game ../fof' + executable: "sdk\\\\hl2.exe" + - arguments: "-steam -game ../fof" config: oslist: linux description: Launch - executable: sdk\\hl2.sh - - arguments: '-steam -game ../fof' + executable: "sdk\\\\hl2.sh" + - arguments: "-steam -game ../fof" config: oslist: macos description: Launch - executable: sdk\\hl2.sh -'265650': + executable: "sdk\\\\hl2.sh" +"265650": installDir: Project X launch: - arguments: steamapp config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: JYSGUpdate.exe type: none -'265670': +"265670": installDir: Imagine Me launch: - config: @@ -130999,29 +127707,29 @@ oslist: macos description: Launch executable: AA.app -'265690': +"265690": installDir: NaissanceE launch: - description: Launch - executable: Binaries\\Win32\\UDK.exe - workingdir: Binaries\\Win32 -'265730': - installDir: Frane Dragons' Odyssey + executable: "Binaries\\\\Win32\\\\UDK.exe" + workingdir: "Binaries\\\\Win32" +"265730": + installDir: "Frane Dragons' Odyssey" launch: - config: oslist: windows - executable: Frane Dragons' Odyssey.exe + executable: "Frane Dragons' Odyssey.exe" type: none nameLocalized: - japanese: フラン ~Dragons' Odyssey~ -'265750': + japanese: "フラン ~Dragons' Odyssey~" +"265750": installDir: SecretPonchos launch: - config: oslist: windows description: Default executable: bin/secretponchosd3d11.exe -'265770': +"265770": installDir: CLR launch: - config: @@ -131036,19 +127744,19 @@ oslist: macos description: Launch executable: clr.app -'265790': +"265790": installDir: Residue launch: - description: Launch executable: Residue.exe -'265810': +"265810": installDir: TheSandbox launch: - config: oslist: windows description: Launch executable: The Sandbox.exe -'265830': +"265830": installDir: Monochroma launch: - config: @@ -131065,14 +127773,14 @@ description: Launch executable: Monochroma.x86 type: none -'265870': +"265870": installDir: AlphaKimoriSteam1 launch: - config: oslist: windows description: Launch executable: AlphaKimori1.exe -'265890': +"265890": installDir: Hexcells launch: - config: @@ -131084,26 +127792,26 @@ description: Launch executable: Hexcells.app - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: Hexcells.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: Hexcells.x86_64 type: none -'265930': +"265930": installDir: GoatSimulator launch: - config: oslist: windows description: Launch - executable: Binaries\\Win32\\GoatGame-Win32-Shipping.exe - workingdir: Binaries\\Win32\\ + executable: "Binaries\\\\Win32\\\\GoatGame-Win32-Shipping.exe" + workingdir: "Binaries\\\\Win32\\\\" - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: Binaries/linux-x86/GoatGame @@ -131112,63 +127820,63 @@ description: Launch executable: GoatSimulator.app - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Binaries/linux-amd64/GoatGame -'265950': +"265950": installDir: Ether One launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: Binaries/Win32/UDK.exe -'265970': +"265970": installDir: WorldsOfMagic launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: launcher.exe - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch - executable: ./WorldsOfMagic + executable: "./WorldsOfMagic" - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch - executable: ./WorldsOfMagic + executable: "./WorldsOfMagic" - config: oslist: macos description: Launch executable: WorldsOfMagic.app - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: WorldsOfMagic.exe -'265990': - installDir: Rogue's Tale +"265990": + installDir: "Rogue's Tale" launch: - - arguments: '-windows' + - arguments: "-windows" config: oslist: windows - description: Launch Rogue's Tale + description: "Launch Rogue's Tale" executable: Launcher.exe - config: oslist: linux - description: Launch Rogue's Tale + description: "Launch Rogue's Tale" executable: launcher - config: oslist: macos - description: Launch Rogue's Tale + description: "Launch Rogue's Tale" executable: launcher.app type: none -'266010': +"266010": installDir: LYNE launch: - config: @@ -131182,54 +127890,54 @@ executable: LYNE.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: LYNE.x64 type: default -'266030': +"266030": installDir: DRAKERZ-Confrontation launch: - config: oslist: windows description: Launch DRAKERZ-Confrontation executable: Drakerz.exe -'266050': +"266050": installDir: Into the Dark launch: - config: oslist: windows description: Into the Dark Launcher - executable: into-the-dark\\ITD_Launcher.exe + executable: "into-the-dark\\\\ITD_Launcher.exe" type: default - workingdir: into-the-dark\\ + workingdir: "into-the-dark\\\\" - config: oslist: windows description: Into the Asylum (Halloween 2015 Free MiniGame) - executable: halloween2015_Beta04\\halloween2015_Beta04.exe + executable: "halloween2015_Beta04\\\\halloween2015_Beta04.exe" type: option2 - workingdir: halloween2015_Beta04\\ + workingdir: "halloween2015_Beta04\\\\" - config: - osarch: '64' + osarch: "64" oslist: windows - description: 'Into the Ice: Nazis of Neuschwabenland (Teaser Level)' - executable: IceL3halloween\\IceL3halloween.exe + description: "Into the Ice: Nazis of Neuschwabenland (Teaser Level)" + executable: "IceL3halloween\\\\IceL3halloween.exe" type: option3 - workingdir: IceL3halloween\\ + workingdir: "IceL3halloween\\\\" - config: - osarch: '64' + osarch: "64" oslist: windows - description: 'Into the Ice: AI Test' - executable: IntoTheIce_AItest\\IntoTheIce_AItest.exe + description: "Into the Ice: AI Test" + executable: "IntoTheIce_AItest\\\\IntoTheIce_AItest.exe" type: option1 - workingdir: IntoTheIce_AItest\\ -'266070': + workingdir: "IntoTheIce_AItest\\\\" +"266070": installDir: CityofSteam launch: - config: oslist: windows executable: Launcher.exe -'266090': +"266090": installDir: StarliteAR launch: - config: @@ -131244,7 +127952,7 @@ oslist: linux description: Launch executable: StarliteAstronautRescue.x86 -'266110': +"266110": installDir: TowerofGuns launch: - config: @@ -131260,7 +127968,7 @@ description: Launch executable: Binaries/Linux/UDKGame-Linux workingdir: Binaries/Linux -'266130': +"266130": installDir: BreachAndClear launch: - config: @@ -131275,13 +127983,13 @@ oslist: linux description: Launch executable: bnc_linux.x86 -'266170': +"266170": installDir: Windforge launch: - description: Launch executable: Bin/Game.exe workingdir: Bin -'266190': +"266190": installDir: Astral Terra launch: - config: @@ -131289,7 +127997,7 @@ description: Launch executable: Astral Terra.exe type: none -'266210': +"266210": installDir: One Way Heroics launch: - config: @@ -131298,11 +128006,11 @@ executable: game.exe nameLocalized: japanese: 片道勇者 -'266230': +"266230": installDir: Last Dream launch: - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: LastDream.bin.x86_64 @@ -131313,19 +128021,19 @@ executable: LastDream.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: LastDream.bin.i686 type: default - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: LastDream_32.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: LastDream_64.exe @@ -131335,37 +128043,37 @@ description: Last Dream (Older Graphics Cards) executable: Game.exe type: option1 -'266250': +"266250": installDir: Procyon launch: - description: Launch executable: Procyon.exe -'266270': +"266270": installDir: Gridiron Solitaire launch: - description: Launch executable: Gridiron Solitaire.exe -'266290': +"266290": installDir: Helicopter Simulator 2014 - SAR launch: - config: oslist: windows description: Launch executable: HSSAR.exe -'266330': +"266330": installDir: Ethan Meteor Hunter launch: - description: Launch executable: Ethan.exe - description: Configure executable: LaunchConfig.exe -'266370': +"266370": installDir: Gauntlet launch: - description: Launch executable: bin/SomaLauncher.exe workingdir: bin/ -'266390': +"266390": installDir: Farm for your Life launch: - config: @@ -131380,18 +128088,16 @@ oslist: macos description: Launch executable: FarmForYourLife.app -'266410': +"266410": installDir: iRacing launch: - - arguments: 'https://members.iracing.com/membersite/steamlogin.jsp' + - arguments: "https://members.iracing.com/membersite/steamlogin.jsp" config: oslist: windows description: using the iRacing Interface - description_loc: - english: using the iRacing Interface executable: StartPlayingBetaUINow.bat type: option1 -'266430': +"266430": installDir: Anarchy Arcade launch: - config: @@ -131399,7 +128105,7 @@ description: Launch Anarchy Arcade executable: frontend/bin/arcade_launcher.exe type: default -'266450': +"266450": installDir: ConquestOfChampions launch: - config: @@ -131410,24 +128116,24 @@ oslist: macos description: Launch executable: ConquestGame.app/Contents/MacOS/ConquestGame -'266470': +"266470": installDir: MechanizedCorps launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: DHMCDev.exe type: none - config: betakey: public_beta_testing - osarch: '64' + osarch: "64" oslist: linux executable: DHMCDev type: none - config: betakey: public_beta_testing - osarch: '64' + osarch: "64" oslist: macos executable: DHMCDev.app type: none @@ -131438,19 +128144,19 @@ type: none - config: betakey: linux_prealpha_testing - osarch: '64' + osarch: "64" oslist: linux executable: DHMCDev type: none - config: betakey: windows_prealpha_testing - osarch: '64' + osarch: "64" oslist: windows description: Launch Test executable: DHMCDev.exe type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: DHMCDev type: none @@ -131458,42 +128164,42 @@ oslist: macos executable: DHMCDev.app type: none -'266490': +"266490": installDir: LiliApp launch: - config: oslist: windows description: Launch - executable: .\\Binaries\\Win32\\MazeGame-Win32-Shipping.exe - workingdir: .\\Binaries\\Win32\\ -'266510': + executable: ".\\\\Binaries\\\\Win32\\\\MazeGame-Win32-Shipping.exe" + workingdir: ".\\\\Binaries\\\\Win32\\\\" +"266510": installDir: Hand of Fate launch: - config: oslist: windows description: Hand of Fate DirectX 11 executable: Hand of Fate.exe - - arguments: '-force-glcore' + - arguments: "-force-glcore" config: oslist: macos description: Launch executable: Hand of Fate.app - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: Hand of Fate.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Hand of Fate.x86_64 - - arguments: '-force-d3d9' + - arguments: "-force-d3d9" config: oslist: windows description: Hand of Fate DirectX 9 executable: Hand of Fate.exe -'266550': +"266550": installDir: sparkrising launch: - config: @@ -131508,7 +128214,7 @@ oslist: windows description: Play Retro Rising Rampage executable: Retro Rising Rampage Alpha 34/RRR Alpha 34.exe -'266840': +"266840": installDir: Age of Mythology launch: - config: @@ -131521,7 +128227,7 @@ description: Age of Mythology (Bypass Launcher) executable: aomx.exe type: option1 -'266980': +"266980": installDir: The Labyrinth of Time launch: - config: @@ -131536,7 +128242,7 @@ oslist: linux description: Launch executable: labyrinth.bin -'267060': +"267060": installDir: Gravity Badgers launch: - config: @@ -131551,31 +128257,27 @@ oslist: macos description: Launch executable: Gravity Badgers.app -'267220': +"267220": installDir: Line Of Defense Tactics launch: - config: oslist: windows description: Launch - description_loc: - english: Launch executable: LODTactics.exe type: default - config: betakey: publictest - osarch: '64' + osarch: "64" oslist: windows description: Dev Test Branch - description_loc: - english: Dev Test Branch executable: LOD Tactics_U.exe type: none -'267340': +"267340": installDir: Beware Planet Earth! launch: - description: Launch executable: BewarePlanetEarth_Steam.exe -'267360': +"267360": installDir: MURI launch: - config: @@ -131586,7 +128288,7 @@ oslist: macos description: Launch executable: MURI.app -'267490': +"267490": installDir: Batman Arkham Origins Blackgate HD launch: - config: @@ -131594,7 +128296,7 @@ description: Launch executable: Bin/Game.exe workingdir: Bin -'267530': +"267530": installDir: The LEGO Movie - Videogame launch: - config: @@ -131605,24 +128307,24 @@ oslist: macos description: Launch executable: The LEGO Movie.app -'267550': +"267550": installDir: The Amazing Spider-Man 2 launch: - description: Launch executable: ASM2Launcher.exe -'267600': +"267600": installDir: Airport Simulator 2014 launch: - description: Launch executable: airport2014.exe -'267610': +"267610": installDir: Woodcutter Simulator 2013 launch: - config: oslist: windows description: Launch executable: woodcutter2013.exe -'267670': +"267670": installDir: Realms of Arkania 1 BoD Classic launch: - config: @@ -131637,25 +128339,25 @@ oslist: macos description: Launch executable: start.sh -'267730': +"267730": installDir: Ground Pounders launch: - config: oslist: windows description: Launch - executable: bin\\gp.win32.exe + executable: "bin\\\\gp.win32.exe" workingdir: bin - config: oslist: linux description: Launch - executable: gp.linux32\\start_game.sh + executable: "gp.linux32\\\\start_game.sh" workingdir: gp.linux32 - config: oslist: macos description: Launch - executable: gp.mac32\\Ground Pounders.app + executable: "gp.mac32\\\\Ground Pounders.app" workingdir: gp.mac32 -'267750': +"267750": installDir: ShadowrunChronicles launch: - config: @@ -131670,7 +128372,7 @@ oslist: linux description: Launch executable: Shadowrun.x86 -'267900': +"267900": installDir: GUILTY GEAR ISUKA launch: - config: @@ -131681,37 +128383,37 @@ oslist: windows description: Configure Settings executable: config.exe -'267920': +"267920": installDir: Gun Metal launch: - config: oslist: windows description: Launch executable: gunmetal.exe -'267940': +"267940": installDir: Glacier 3 The Meltdown launch: - config: oslist: windows description: Launch executable: Game.exe -'267960': +"267960": installDir: Hyper Fighters launch: - description: Launch executable: game.exe -'267980': +"267980": installDir: Hostile Waters Antaeus Rising launch: - config: oslist: windows description: Launch executable: HostileSetup.exe -'2680': +"2680": installDir: The History Channel Civil War launch: - executable: cw.exe -'26800': +"26800": installDir: Braid launch: - config: @@ -131723,15 +128425,15 @@ - config: oslist: linux executable: Braid.bin.x86 -'268050': +"268050": installDir: TheEvilWithin launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: evilwithin.exe -'268130': +"268130": installDir: Heat Signature launch: - config: @@ -131741,18 +128443,18 @@ type: none - config: oslist: windows - ownsdlc: '710350' + ownsdlc: "710350" description: Supporter Edition Extras executable: Extras Launcher.exe type: option2 - - arguments: '-compatibility' + - arguments: "-compatibility" config: oslist: windows description: Heat Signature (Compatibility Mode) executable: Heat_Signature.exe type: option1 -'268150': {} -'268200': +"268150": {} +"268200": installDir: Antisquad launch: - config: @@ -131764,38 +128466,38 @@ description: Launch executable: antisquad.app - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: antisquad.x86 - - arguments: '-bigPicture' + - arguments: "-bigPicture" config: - osarch: '32' + osarch: "32" oslist: linux description: Launch Big Picture executable: antisquad.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: antisquad.x86_64 - - arguments: '-bigPicture' + - arguments: "-bigPicture" config: - osarch: '64' + osarch: "64" oslist: linux description: Launch Big Picture executable: antisquad.x86_64 - - arguments: '-bigPicture' + - arguments: "-bigPicture" config: oslist: windows description: Launch Big Picture executable: antisquad.exe - - arguments: '-bigPicture' + - arguments: "-bigPicture" config: oslist: macos description: Launch Big Picture executable: antisquad.app -'268220': +"268220": installDir: Meltdown launch: - config: @@ -131810,16 +128512,16 @@ oslist: linux description: Launch executable: Meltdown.x86 -'268240': +"268240": installDir: Mechanic Escape launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: MechanicEscapeLauncher.exe - config: - osarch: '64' + osarch: "64" oslist: macos description: Launch executable: MechanicEscape.app @@ -131827,21 +128529,21 @@ oslist: linux description: Launch executable: MechanicEscape.x86 -'268260': - installDir: Let's Sing +"268260": + installDir: "Let's Sing" launch: - config: oslist: windows description: Launch executable: LetsSing.exe -'268320': +"268320": installDir: Grapple launch: - config: oslist: windows description: Launch executable: Grapple.exe -'268340': +"268340": installDir: High Strangeness launch: - config: @@ -131853,16 +128555,16 @@ description: Launch executable: HS.app - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch 64 Bit executable: HS.x86_64 - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch 32 Bit executable: HS.x86 -'268360': +"268360": installDir: Krautscape launch: - config: @@ -131875,20 +128577,20 @@ description: Launch executable: Krautscape.app/Contents/MacOS/Krautscape type: default - - arguments: '-force-opengl' + - arguments: "-force-opengl" config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: Krautscape.x86 type: default - - arguments: '-force-opengl' + - arguments: "-force-opengl" config: - osarch: '64' + osarch: "64" oslist: linux executable: Krautscape.x86_64 type: default -'268400': +"268400": installDir: Panzer Corps launch: - config: @@ -131899,228 +128601,224 @@ oslist: macos executable: PanzerCorps.app type: default -'268420': +"268420": installDir: Aura Kingdom launch: - - arguments: '-steam' + - arguments: "-steam" config: oslist: windows description: Launch executable: Launcher.exe -'268500': +"268500": installDir: XCOM 2 launch: - - arguments: '-steam_auto_login -game-61483=-review -game-61483=-noRedscreens' + - arguments: "-steam_auto_login -game-61483=-review -game-61483=-noRedscreens" config: betakey: old - osarch: '64' + osarch: "64" oslist: windows description: Launcher - description_loc: - english: Launcher - executable: launcher\\launcher.exe + executable: "launcher\\\\launcher.exe" type: none workingdir: launcher - - arguments: '-noRedScreens -review' + - arguments: "-noRedScreens -review" config: betakey: 2k_marketing - osarch: '64' + osarch: "64" oslist: windows - ownsdlc: '593380' + ownsdlc: "593380" description: 2K Marketing - executable: binaries\\Win64\\launcher\\ModLauncherWPF.exe + executable: "binaries\\\\Win64\\\\launcher\\\\ModLauncherWPF.exe" type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: XCOM2.sh type: none - config: - osarch: '64' + osarch: "64" oslist: macos executable: XCOM 2.app type: none - - arguments: '-allowconsole -noRedScreens -review' + - arguments: "-allowconsole -noRedScreens -review" config: betakey: age_ratings - osarch: '64' + osarch: "64" oslist: windows description: Age Ratings - executable: binaries\\Win64\\XCom2.exe + executable: "binaries\\\\Win64\\\\XCom2.exe" type: none - - arguments: '-allowconsole -noRedScreens -review -CrashDumpWatcher' + - arguments: "-allowconsole -noRedScreens -review -CrashDumpWatcher" config: betakey: 2kqa_a - osarch: '64' + osarch: "64" oslist: windows description: Lazarus Debug - executable: binaries\\Win64\\launcher\\ModLauncherWPF.exe + executable: "binaries\\\\Win64\\\\launcher\\\\ModLauncherWPF.exe" type: none - - arguments: '-allowconsole -noRedScreens -review' + - arguments: "-allowconsole -noRedScreens -review" config: betakey: age_ratings_asia - osarch: '64' + osarch: "64" oslist: windows - executable: binaries\\Win64\\XCom2.exe + executable: "binaries\\\\Win64\\\\XCom2.exe" type: none - - arguments: '-log -allowconsole -CrashDumpWatcher -noRedScreens' + - arguments: "-log -allowconsole -CrashDumpWatcher -noRedScreens" config: betakey: Firaxis_QA - osarch: '64' + osarch: "64" oslist: windows - ownsdlc: '593380' + ownsdlc: "593380" description: Oz Debug - executable: binaries\\Win64\\launcher\\ModLauncherWPF.exe + executable: "binaries\\\\Win64\\\\launcher\\\\ModLauncherWPF.exe" type: none - - arguments: '-log -allowconsole -CrashDumpWatcher -noRedScreens' + - arguments: "-log -allowconsole -CrashDumpWatcher -noRedScreens" config: betakey: 2kqa_a - osarch: '64' + osarch: "64" oslist: windows - ownsdlc: '593380' + ownsdlc: "593380" description: Oz Debug - executable: binaries\\Win64\\launcher\\ModLauncherWPF.exe + executable: "binaries\\\\Win64\\\\launcher\\\\ModLauncherWPF.exe" type: none - - arguments: '-log -allowconsole -CrashDumpWatcher -noRedScreens' + - arguments: "-log -allowconsole -CrashDumpWatcher -noRedScreens" config: betakey: 2kqa_b - osarch: '64' + osarch: "64" oslist: windows - ownsdlc: '593380' + ownsdlc: "593380" description: Oz Debug - executable: binaries\\Win64\\launcher\\ModLauncherWPF.exe + executable: "binaries\\\\Win64\\\\launcher\\\\ModLauncherWPF.exe" type: none - - arguments: '-log -allowconsole -CrashDumpWatcher -noRedScreens' + - arguments: "-log -allowconsole -CrashDumpWatcher -noRedScreens" config: betakey: firaxis_QA_02 - osarch: '64' + osarch: "64" oslist: windows description: Debug - executable: binaries\\Win64\\launcher\\ModLauncherWPF.exe + executable: "binaries\\\\Win64\\\\launcher\\\\ModLauncherWPF.exe" type: none - - arguments: '-CrashDumpWatcher -noRedScreens -review' + - arguments: "-CrashDumpWatcher -noRedScreens -review" config: betakey: 2kqa_a - ownsdlc: '593380' + ownsdlc: "593380" description: Oz Review - executable: binaries\\Win64\\launcher\\ModLauncherWPF.exe + executable: "binaries\\\\Win64\\\\launcher\\\\ModLauncherWPF.exe" type: none - - arguments: '-CrashDumpWatcher -noRedScreens -review' + - arguments: "-CrashDumpWatcher -noRedScreens -review" config: betakey: 2kqa_b - osarch: '64' + osarch: "64" oslist: windows - ownsdlc: '593380' + ownsdlc: "593380" description: Oz Review - executable: binaries\\Win64\\launcher\\ModLauncherWPF.exe + executable: "binaries\\\\Win64\\\\launcher\\\\ModLauncherWPF.exe" type: none - - arguments: '-CrashDumpWatcher -noRedScreens -review' + - arguments: "-CrashDumpWatcher -noRedScreens -review" config: betakey: firaxis_qa - ownsdlc: '593380' + ownsdlc: "593380" description: Oz Review - executable: binaries\\Win64\\launcher\\ModLauncherWPF.exe + executable: "binaries\\\\Win64\\\\launcher\\\\ModLauncherWPF.exe" type: none - - arguments: '-CrashDumpWatcher -noRedScreens -review' + - arguments: "-CrashDumpWatcher -noRedScreens -review" config: betakey: milestone - osarch: '64' + osarch: "64" oslist: windows - ownsdlc: '593380' + ownsdlc: "593380" description: Oz Review - executable: binaries\\Win64\\launcher\\ModLauncherWPF.exe + executable: "binaries\\\\Win64\\\\launcher\\\\ModLauncherWPF.exe" type: none - - arguments: '-log -allowconsole -CrashDumpWatcher -noRedScreens' + - arguments: "-log -allowconsole -CrashDumpWatcher -noRedScreens" config: betakey: milestone - ownsdlc: '593380' + ownsdlc: "593380" description: Oz Debug - executable: binaries\\Win64\\launcher\\ModLauncherWPF.exe + executable: "binaries\\\\Win64\\\\launcher\\\\ModLauncherWPF.exe" type: none - - arguments: '-log -allowconsole -CrashDumpWatcher' + - arguments: "-log -allowconsole -CrashDumpWatcher" config: betakey: 2k_marketing - ownsdlc: '593380' + ownsdlc: "593380" description: Oz Debug - executable: Ozzy\\Binaries\\Win64\\Launcher\\ModLauncherWPF.exe + executable: "Ozzy\\\\Binaries\\\\Win64\\\\Launcher\\\\ModLauncherWPF.exe" type: none - - arguments: '-allowconsole -CrashDumpWatcher -noRedScreens' + - arguments: "-allowconsole -CrashDumpWatcher -noRedScreens" config: betakey: 2k_marketing - ownsdlc: '593380' + ownsdlc: "593380" description: Oz Review - executable: Ozzy\\Binaries\\Win64\\Launcher\\ModLauncherWPF.exe + executable: "Ozzy\\\\Binaries\\\\Win64\\\\Launcher\\\\ModLauncherWPF.exe" type: none - - arguments: '-noRedScreens -review -crashdumpwatcher' + - arguments: "-noRedScreens -review -crashdumpwatcher" config: betakey: 2kqa_compat - osarch: '64' + osarch: "64" oslist: windows - ownsdlc: '593380' + ownsdlc: "593380" description: Oz Compat - executable: Ozzy\\Binaries\\Win64\\Launcher\\ModLauncherWPF.exe + executable: "Ozzy\\\\Binaries\\\\Win64\\\\Launcher\\\\ModLauncherWPF.exe" type: none - - arguments: '-noRedScreens -review -crashdumpwatcher' + - arguments: "-noRedScreens -review -crashdumpwatcher" config: betakey: 2kqa_compat2 - osarch: '64' + osarch: "64" oslist: windows - ownsdlc: '593380' + ownsdlc: "593380" description: Oz Compat - executable: Ozzy\\Binaries\\Win64\\Launcher\\ModLauncherWPF.exe + executable: "Ozzy\\\\Binaries\\\\Win64\\\\Launcher\\\\ModLauncherWPF.exe" type: none - config: oslist: linux - ownsdlc: '593380' - description: 'XCOM 2: War of the Chosen' + ownsdlc: "593380" + description: "XCOM 2: War of the Chosen" executable: XCOM2WotC/XCOM2WotC.sh type: none - config: oslist: macos - ownsdlc: '593380' - description: 'XCOM 2: War of the Chosen' + ownsdlc: "593380" + description: "XCOM 2: War of the Chosen" executable: XCOM 2 WotC.app type: none - - arguments: '-noRedScreens -review -crashdumpwatcher' + - arguments: "-noRedScreens -review -crashdumpwatcher" config: betakey: review_build - osarch: '64' + osarch: "64" oslist: windows - ownsdlc: '393380' - executable: binaries\\Win64\\launcher\\ModLauncherWPF.exe + ownsdlc: "393380" + executable: "binaries\\\\Win64\\\\launcher\\\\ModLauncherWPF.exe" type: none - config: betakey: domesticated_submission_loc_fix oslist: macos - ownsdlc: '593380' - description: 'XCOM 2: War of the Chosen' + ownsdlc: "593380" + description: "XCOM 2: War of the Chosen" executable: XCOM 2 WotC.app type: none - config: betakey: domesticated_submission_loc_fix oslist: linux - ownsdlc: '593380' - description: 'XCOM 2: War of the Chosen' + ownsdlc: "593380" + description: "XCOM 2: War of the Chosen" executable: XCOM2WotC/XCOM2WotC.sh type: none - - arguments: '-steam_auto_login -game-61483=-review -game-61483=-noRedscreens' + - arguments: "-steam_auto_login -game-61483=-review -game-61483=-noRedscreens" config: - osarch: '64' + osarch: "64" oslist: windows description: XCOM 2 - 2K Launcher - description_loc: - english: XCOM 2 - 2K Launcher - executable: 2KLauncher\\LauncherPatcher.exe + executable: "2KLauncher\\\\LauncherPatcher.exe" type: default -'268520': +"268520": installDir: Orc Attack launch: - config: oslist: windows description: Launch - executable: OrcAttack\\game.exe - workingdir: OrcAttack\\ -'268540': + executable: "OrcAttack\\\\game.exe" + workingdir: "OrcAttack\\\\" +"268540": installDir: The Whispered World Special Edition launch: - config: @@ -132133,14 +128831,14 @@ description: Visionaire Configuration Tool executable: VisionaireConfigurationTool.exe - config: - osarch: '64' + osarch: "64" oslist: macos description: Launch executable: TWWSE.app type: default - workingdir: ./ + workingdir: "./" - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: start @@ -132160,7 +128858,7 @@ description: Bonus Content executable: open_bonus_lin.sh type: none -'268650': +"268650": installDir: From The Depths launch: - config: @@ -132174,31 +128872,31 @@ executable: From_The_Depths.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: From_The_Depths.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: From_The_Depths.x86_64 -'268670': +"268670": installDir: The Memory of Eldurim launch: - config: oslist: windows description: Launch executable: EldurimLauncher.exe -'268710': +"268710": installDir: ZeroPoint launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: FirstTryLaunch executable: ZeroPoint.exe -'268750': +"268750": installDir: Magicite launch: - config: @@ -132212,9 +128910,9 @@ - config: oslist: macos description: Launch - executable: Magicite.app\\Contents\\MacOS\\Magicite - workingdir: Magicite.app\\Contents\\MacOS -'268770': + executable: "Magicite.app\\\\Contents\\\\MacOS\\\\Magicite" + workingdir: "Magicite.app\\\\Contents\\\\MacOS" +"268770": installDir: TreasureAdventureWorld launch: - config: @@ -132222,7 +128920,7 @@ description: Launch executable: taw_launcher.exe type: none -'268810': +"268810": installDir: ParanormalStateCE launch: - config: @@ -132237,58 +128935,58 @@ oslist: linux description: Launch executable: paranormal-bin -'268830': +"268830": installDir: Doctor Who The Adventure Games launch: - config: oslist: windows - description: 'Play Doctor Who: The Adventure Games' + description: "Play Doctor Who: The Adventure Games" executable: DoctorWhoS1.exe workingdir: Series1 - config: oslist: windows - description: 'Play Doctor Who: The Gunpowder Plot' + description: "Play Doctor Who: The Gunpowder Plot" executable: DoctorWhoS2.exe workingdir: Series2 -'268870': +"268870": installDir: SatelliteReign launch: - config: oslist: macos description: Launch executable: SatelliteReignMac.app - - arguments: '-force-glcore' + - arguments: "-force-glcore" config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: SatelliteReignLinux.x86_64 type: none - - arguments: '-force-glcore' + - arguments: "-force-glcore" config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: SatelliteReignLinux.x86 type: none - - arguments: '-force-d3d11' + - arguments: "-force-d3d11" config: oslist: windows description: Satellite Reign DirectX 11 executable: SatelliteReignWindows.exe - - arguments: '-force-d3d9' + - arguments: "-force-d3d9" config: oslist: windows description: Satellite Reign DirectX 9 executable: SatelliteReignWindows.exe - - arguments: '-force-opengl' + - arguments: "-force-opengl" config: - osarch: '64' + osarch: "64" oslist: linux description: Launch using legacy (safe) OpenGL renderer executable: SatelliteReignLinux.x86_64 type: none -'268890': +"268890": installDir: Masters of the World launch: - config: @@ -132299,7 +128997,7 @@ oslist: macos description: Launch executable: MASTERS OF THE WORLD.app -'268910': +"268910": installDir: Cuphead launch: - config: @@ -132308,26 +129006,26 @@ type: default - config: oslist: macos - executable: Cuphead.app\\Contents\\MacOS\\Cuphead + executable: "Cuphead.app\\\\Contents\\\\MacOS\\\\Cuphead" type: default -'268930': +"268930": installDir: Malevolence - The Sword of Ahkranox launch: - config: oslist: windows description: Launch executable: Malevolence Launcher.exe -'268970': +"268970": installDir: YANTH launch: - config: oslist: windows description: Launch executable: Game.exe -'268990': +"268990": installDir: TheDishwasherVampireSmile launch: - - arguments: '-dsound' + - arguments: "-dsound" config: oslist: windows description: Launch @@ -132335,17 +129033,17 @@ type: none - config: oslist: linux - executable: ./VampireSmile + executable: "./VampireSmile" type: none - config: oslist: macos executable: Vampire Smile.app/Contents/MacOS/VampireSmile type: none -'2690': +"2690": installDir: Empires Dawn of the Modern World launch: - executable: Empires_DMW.exe -'26900': +"26900": installDir: Crayon Physics Deluxe launch: - config: @@ -132354,7 +129052,7 @@ - config: oslist: macos executable: Crayon Physics Deluxe.app -'269010': +"269010": installDir: ScienceGirls launch: - config: @@ -132369,14 +129067,14 @@ oslist: macos description: Launch executable: ScienceGirls!.app -'269030': +"269030": installDir: The Yawhg launch: - config: oslist: windows description: Launch executable: the yawhg.exe -'269050': +"269050": installDir: YearWalk launch: - config: @@ -132389,7 +129087,7 @@ executable: yearwalk.app type: none workingdir: yearwalk.app -'269110': +"269110": installDir: Super Motherload launch: - config: @@ -132400,7 +129098,7 @@ oslist: windows description: Launch Motherload Goldium executable: Goldium/Motherload Goldium.exe -'269150': +"269150": installDir: Luxuria Superbia launch: - config: @@ -132412,129 +129110,115 @@ description: Launch executable: Luxuria Superbia.app - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: LuxuriaSuperbia.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: LuxuriaSuperbia.x86_64 -'269170': +"269170": installDir: PoolNationVR launch: - - arguments: '-culture=\"en\" ' + - arguments: "-culture=\\\"en\\\" " config: oslist: windows description: Vive executable: PoolNationVR.exe type: vr - - arguments: '-culture=\"en\"' + - arguments: "-culture=\\\"en\\\"" config: betakey: staging oslist: windows description: Multi-Platform executable: PoolNationVR.exe type: vr - - arguments: '-culture=\"en\" -VRPlatform=SteamVR -ForceLogFlush' + - arguments: "-culture=\\\"en\\\" -VRPlatform=SteamVR -ForceLogFlush" config: betakey: development oslist: windows description: Vive (-ForceLogFlush) executable: PoolNationVR.exe type: vr - - arguments: '-culture=\"en\"' + - arguments: "-culture=\\\"en\\\"" config: betakey: oculus oslist: windows description: Multi-Platform executable: PoolNationVR.exe type: vr - - arguments: '-culture=\"en\"' + - arguments: "-culture=\\\"en\\\"" config: betakey: miller oslist: windows description: Miller Branch executable: PoolNationVR.exe type: vr -'269190': +"269190": installDir: Edge Of Eternity launch: - config: oslist: windows executable: EdgeOfEternity.exe type: default - - arguments: '-force-vulkan' + - arguments: "-force-vulkan" config: betakey: dx12 oslist: windows description: Edge Of Eternity - Vulkan Renderer (Experimental) - description_loc: - english: Edge Of Eternity - Vulkan Renderer (Experimental) executable: EdgeOfEternity.exe type: option1 - - arguments: '-force-d3d12' + - arguments: "-force-d3d12" config: betakey: dx12 oslist: windows description: Edge Of Eternity - DirectX 12 Renderer (Experimental) - description_loc: - english: Edge Of Eternity - DirectX 12 Renderer (Experimental) executable: EdgeOfEternity.exe type: option2 - - arguments: '-force-glcore' + - arguments: "-force-glcore" config: betakey: trunk_disabled description: Edge Of Eternity - OpenGL Renderer (Experimental) executable: EdgeOfEternity.exe type: option3 - - arguments: '-force-glcore' + - arguments: "-force-glcore" config: betakey: debug_disabled oslist: windows description: Edge Of Eternity - OpenGL Renderer (Experimental) - description_loc: - english: Edge Of Eternity - OpenGL Renderer (Experimental) executable: EdgeOfEternity.exe type: option3 - - arguments: '-force-d3d12' + - arguments: "-force-d3d12" config: betakey: debug_disabled oslist: windows description: Edge Of Eternity - DirectX 12 Renderer (Experimental) - description_loc: - english: Edge Of Eternity - DirectX 12 Renderer (Experimental) executable: EdgeOfEternity.exe type: option2 - - arguments: '-force-vulkan' + - arguments: "-force-vulkan" config: betakey: debug_disabled oslist: windows description: Edge Of Eternity - Vulkan Renderer (Experimental) - description_loc: - english: Edge Of Eternity - Vulkan Renderer (Experimental) executable: EdgeOfEternity.exe type: option1 - - arguments: '--fastload' + - arguments: "--fastload" config: oslist: windows description: Continue From Latest Save - description_loc: - english: Continue From Latest Save executable: EdgeOfEternity.exe type: none - - arguments: '--seasonal=16' + - arguments: "--seasonal=16" config: betakey: debug oslist: windows description: Play with the Halloween Special Event - description_loc: - english: Play with the Halloween Special Event executable: EdgeOfEternity.exe type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: EdgeOfEternity.exe type: default @@ -132544,64 +129228,54 @@ type: default nameLocalized: schinese: 永恒边缘 -'269210': +"269210": installDir: HeroSiege launch: - config: betakey: default oslist: windows description: Launch - description_loc: - english: Launch executable: bin/Hero_Siege.exe workingdir: bin - config: oslist: macos description: Launch - description_loc: - english: Launch executable: mac/Hero_Siege.app workingdir: mac - config: oslist: linux description: Launch - description_loc: - english: Launch executable: linux/run.sh type: default workingdir: linux/ - config: betakey: closedtest - osarch: '64' + osarch: "64" oslist: windows description: EAC - description_loc: - english: EAC executable: bin/start_protected_game.exe workingdir: bin - config: betakey: openbeta - osarch: '64' + osarch: "64" oslist: windows description: EAC beta - description_loc: - english: EAC beta executable: bin/start_protected_game.exe workingdir: bin -'269230': +"269230": installDir: Aces Wild launch: - config: oslist: windows description: Launch executable: Aces Wild.exe -'269250': +"269250": installDir: WEE01 launch: - config: oslist: windows description: WORLD END ECONOMiCA HD Edition episode.01 - executable: WEE1 HD\\WEE1.exe + executable: "WEE1 HD\\\\WEE1.exe" type: option1 - config: oslist: macos @@ -132609,13 +129283,13 @@ executable: WEE1 HD/WEE1.app type: option1 - config: - osarch: '32' + osarch: "32" oslist: linux description: WORLD END ECONOMiCA HD Edition episode.01 executable: WEE1 HD/WEE1.x86 type: option1 - config: - osarch: '64' + osarch: "64" oslist: linux description: WORLD END ECONOMiCA HD Edition episode.01 executable: WEE1 HD/WEE1.x86_64 @@ -132623,22 +129297,22 @@ - config: betakey: renpy_old oslist: windows - description: WORLD END ECONOMiCA episode.01 (Ren'Py version) + description: "WORLD END ECONOMiCA episode.01 (Ren'Py version)" executable: wee.exe type: option2 - config: betakey: renpy_old oslist: macos - description: WORLD END ECONOMiCA episode.01 (Ren'Py version) + description: "WORLD END ECONOMiCA episode.01 (Ren'Py version)" executable: wee.app type: option2 - config: betakey: renpy_old oslist: linux - description: WORLD END ECONOMiCA episode.01 (Ren'Py version) + description: "WORLD END ECONOMiCA episode.01 (Ren'Py version)" executable: wee.sh type: none -'269270': +"269270": installDir: Love launch: - config: @@ -132659,7 +129333,7 @@ oslist: macos executable: LOVE.app type: none -'269310': +"269310": installDir: Infectonator Survivors launch: - config: @@ -132674,14 +129348,14 @@ oslist: linux description: Launch executable: Survivors -'269330': +"269330": installDir: Chronology launch: - config: oslist: windows description: Launch executable: Chronology.exe -'269350': +"269350": installDir: Montas launch: - config: @@ -132692,7 +129366,7 @@ oslist: macos description: Launch Montas executable: Montas.app/Contents/MacOS/UDKGame -'269370': +"269370": installDir: Reaper launch: - config: @@ -132704,20 +129378,20 @@ executable: Reaper type: default - config: - osarch: '64' + osarch: "64" oslist: macos - executable: Reaper.app\\Contents\\MacOS\\Reaper + executable: "Reaper.app\\\\Contents\\\\MacOS\\\\Reaper" type: default nameLocalized: - czech: 'Reaper: Příběh bledého zabijáka' - french: 'Reaper: Les Contes de Lame Sombre' - german: 'Reaper: Die Geschichte des schwarzen Schwertkämpfers' - italian: 'Reaper: La Novella del Pallido Spadaccino' - latam: 'Reaper: La leyenda del espadachín pálido' - polish: 'Reaper: Przygoda bladego zabijaka' - russian: 'Reaper: история о бледноликом мечнике' - spanish: 'Reaper: La leyenda del espadachín pálido' -'269430': + czech: "Reaper: Příběh bledého zabijáka" + french: "Reaper: Les Contes de Lame Sombre" + german: "Reaper: Die Geschichte des schwarzen Schwertkämpfers" + italian: "Reaper: La Novella del Pallido Spadaccino" + latam: "Reaper: La leyenda del espadachín pálido" + polish: "Reaper: Przygoda bladego zabijaka" + russian: "Reaper: история о бледноликом мечнике" + spanish: "Reaper: La leyenda del espadachín pálido" +"269430": installDir: Burning Cars launch: - config: @@ -132725,7 +129399,7 @@ description: Launch executable: /Burning Cars Launcher.exe workingdir: / -'269490': +"269490": installDir: Bardbarian launch: - config: @@ -132736,7 +129410,7 @@ oslist: macos description: Launch executable: Bardbarian_OSX.app/Contents/MacOS/Bardbarian -'269530': +"269530": installDir: VoiceOfPripyat launch: - config: @@ -132751,19 +129425,19 @@ oslist: macos description: Launch executable: vop3d.app -'269590': +"269590": installDir: Claustrophobia - The Downward Struggle launch: - config: oslist: windows description: Launch executable: Claustrophobia.exe -'269610': +"269610": installDir: ArcaneWorlds launch: - description: Start game executable: game.exe -'269630': +"269630": installDir: A Mass Of Dead launch: - config: @@ -132778,7 +129452,7 @@ oslist: macos description: OSX executable: A Mass of Dead.app -'269650': +"269650": installDir: Dex launch: - config: @@ -132802,22 +129476,22 @@ executable: GamepadConfigTool.exe type: config - config: - osarch: '32' + osarch: "32" oslist: linux description: Gamepad configuration executable: GamepadConfigTool.x86 type: config - config: - osarch: '64' + osarch: "64" oslist: linux description: Gamepad configuration executable: GamepadConfigTool.x86_64 type: config -'269670': +"269670": installDir: BADLAND launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: Badland.exe @@ -132829,24 +129503,24 @@ oslist: linux description: Launch executable: badland -'269690': +"269690": installDir: RymdResa launch: - config: oslist: windows description: Launch executable: nw.exe - - arguments: '--file-descriptor-limit=10000' + - arguments: "--file-descriptor-limit=10000" config: oslist: macos description: Launch executable: RymdResa.app - - arguments: '--disable-gpu' + - arguments: "--disable-gpu" config: oslist: linux - executable: ./RymdResa + executable: "./RymdResa" type: default -'269710': +"269710": installDir: Tumblestone launch: - config: @@ -132863,7 +129537,7 @@ oslist: macos description: Launches Tumblestone executable: Tumblestone.app/Contents/MacOS/Tumblestone -'269730': +"269730": installDir: TheGolfClub launch: - arguments: Server=AWS @@ -132871,28 +129545,28 @@ oslist: windows description: Launch executable: golf.exe - - arguments: '-show-screen-selector Server=AWS' + - arguments: "-show-screen-selector Server=AWS" config: oslist: windows description: Launch Options executable: golf.exe -'269770': +"269770": installDir: SecretsOfGrindea launch: - config: - osarch: '32' + osarch: "32" description: Launch executable: Secrets Of Grindea.exe -'269790': +"269790": installDir: DreadOut launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Play DreadOut executable: dreadout.exe - config: - osarch: '64' + osarch: "64" oslist: windows description: Play DreadOut (32-bits) executable: dreadout32.exe @@ -132905,11 +129579,11 @@ description: Play DreadOut executable: dreadout.sh - config: - osarch: '32' + osarch: "32" oslist: windows description: Play DreadOut (32-bits) executable: dreadout32.exe -'269810': +"269810": installDir: Spate launch: - config: @@ -132917,7 +129591,7 @@ description: Launch executable: Spate.exe - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: Spate.x86 @@ -132926,11 +129600,11 @@ description: Launch executable: Spate.app - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Spate.x86_64 -'269890': +"269890": installDir: Ar-k launch: - config: @@ -132943,62 +129617,62 @@ description: Run launcher executable: Launcher.app - config: - osarch: '32' + osarch: "32" oslist: linux description: Run launcher executable: Launcher.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Run launcher executable: Launcher.x86_64 -'269950': +"269950": installDir: X-Plane 11 launch: - config: - osarch: '64' + osarch: "64" oslist: linux description: X-Plane executable: X-Plane-x86_64 type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: Plane Maker executable: Plane Maker-x86_64 type: editor - config: - osarch: '64' + osarch: "64" oslist: linux description: Airfoil Maker executable: Airfoil Maker-x86_64 type: none - config: - osarch: '64' + osarch: "64" oslist: windows description: X-Plane executable: X-Plane.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows description: Plane Maker executable: Plane Maker.exe type: editor - config: - osarch: '64' + osarch: "64" oslist: windows description: Airfoil Maker executable: Airfoil Maker.exe type: none - config: - osarch: '64' + osarch: "64" oslist: macos description: X-Plane executable: X-Plane.app type: default - config: - osarch: '64' + osarch: "64" oslist: macos description: Plane Maker executable: Plane Maker.app @@ -133008,14 +129682,14 @@ description: Airfoil Maker executable: Airfoil Maker.app type: none - - arguments: '--force_vr' + - arguments: "--force_vr" config: - osarch: '64' + osarch: "64" oslist: windows description: X-Plane in VR mode executable: X-Plane.exe type: vr -'269990': +"269990": installDir: SeaOfStars launch: - config: @@ -133023,11 +129697,11 @@ description: Launch executable: seaofstars.exe - config: - osarch: '64' + osarch: "64" oslist: macos description: Launch Sea of Stars executable: InfiniteSpaceIII.app -'2700': +"2700": installDir: Rollercoaster Tycoon 3 Gold launch: - config: @@ -133037,22 +129711,22 @@ oslist: macos description: OS X executable: RollerCoaster Tycoon 3 Platinum.app -'27000': +"27000": installDir: The Path launch: - arguments: Q3DStart.q3d config: oslist: windows executable: PathViewer.exe - - arguments: '-psn' + - arguments: "-psn" config: oslist: macos executable: The Path.app/Contents/MacOS/cider workingdir: The Path -'270010': +"270010": installDir: TimeRifters launch: - - arguments: '-force-d3d9' + - arguments: "-force-d3d9" config: oslist: windows description: Play Time Rifters @@ -133062,19 +129736,19 @@ oslist: macos description: Play Time Rifters executable: TimeRifters.app - - arguments: '-UseRift' + - arguments: "-UseRift" config: oslist: linux description: Play Time Rifters (Oculus Rift) executable: TimeRifters_DirectToRift.exe type: none - - arguments: '-UseRift' + - arguments: "-UseRift" config: oslist: linux description: Play Time Rifters (Oculus Rift) executable: TimeRifters.app type: none -'270030': +"270030": installDir: SnowHorse launch: - config: @@ -133089,7 +129763,7 @@ oslist: linux executable: SNOWHORSE.x86 type: default -'270050': +"270050": installDir: QuestofDungeons launch: - config: @@ -133104,76 +129778,76 @@ oslist: linux description: Launch executable: QuestofDungeons -'270070': +"270070": installDir: TheGirlAndTheRobot launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Windows Version - executable: WINDOWS\\GirlAndRobot.exe + executable: "WINDOWS\\\\GirlAndRobot.exe" type: default - config: oslist: macos description: MaC Version - executable: MAC\\GirlAndRobot.app + executable: "MAC\\\\GirlAndRobot.app" type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: Linux 64 Bits Version - executable: LINUX\\GirlAndRobot.x86_64 + executable: "LINUX\\\\GirlAndRobot.x86_64" type: default - config: - osarch: '64' + osarch: "64" oslist: windows description: Windows 64 Bits Version - executable: WINDOWS(64BITS)\\GirlAndRobot.exe + executable: "WINDOWS(64BITS)\\\\GirlAndRobot.exe" type: default - config: - osarch: '32' + osarch: "32" oslist: linux description: Linux Version - executable: LINUX\\GirlAndRobot.x86 + executable: "LINUX\\\\GirlAndRobot.x86" type: default -'270090': +"270090": installDir: NPPD Rush launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: NPPDRUSH.exe -'270110': +"270110": installDir: BlockStory launch: - config: oslist: windows description: Launch executable: Block Story.exe -'270130': +"270130": installDir: The Gallery Call of the Starseed launch: - config: - osarch: '64' + osarch: "64" oslist: windows - description: 'The Gallery EP1 : Call of the Starseed (OpenVR SDK)' - executable: TheGallery_EP1\\TheGallery_EP1.exe + description: "The Gallery EP1 : Call of the Starseed (OpenVR SDK)" + executable: "TheGallery_EP1\\\\TheGallery_EP1.exe" type: vr - config: betakey: native_ovr - osarch: '64' + osarch: "64" oslist: windows - description: 'The Gallery EP1 : Call of the Starseed (Oculus SDK)' + description: "The Gallery EP1 : Call of the Starseed (Oculus SDK)" executable: TheGallery_EP1.exe type: othervr - config: - osarch: '64' + osarch: "64" oslist: windows - description: 'The Gallery EP1 : Call of the Starseed (Oculus SDK)' - executable: \\TheGallery_EP1_OVR\\TheGallery_EP1.exe + description: "The Gallery EP1 : Call of the Starseed (Oculus SDK)" + executable: "\\\\TheGallery_EP1_OVR\\\\TheGallery_EP1.exe" type: othervr -'270150': +"270150": installDir: RunningWithRifles launch: - config: @@ -133212,7 +129886,7 @@ description: Configure (32-bit) executable: RunningWithRifles.app/Contents/MacOS/Config.app type: none -'270170': +"270170": installDir: DepressionQuest launch: - config: @@ -133227,14 +129901,14 @@ oslist: linux description: Launch executable: nw -'270190': +"270190": installDir: 1Heart launch: - config: oslist: windows description: Launch executable: 1Heart.exe -'27020': +"27020": installDir: The Graveyard launch: - config: @@ -133244,16 +129918,16 @@ oslist: macos executable: The Graveyard.app - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch Linux 32-bit executable: TheGraveyard.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch Linux 64-bit executable: TheGraveyard.x86_64 -'270210': +"270210": installDir: MelodysEscape launch: - config: @@ -133267,8 +129941,8 @@ - config: oslist: linux description: Launch - executable: ./MelodysEscape -'270230': + executable: "./MelodysEscape" +"270230": installDir: Prominence launch: - config: @@ -133276,11 +129950,11 @@ description: Launch executable: prominence.exe type: default -'270270': +"270270": installDir: FrozenState launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: fs.exe @@ -133289,21 +129963,21 @@ description: Launch executable: fs.app - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: fs64.exe - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: fs.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: fs.x86_64 -'270310': +"270310": installDir: DominiquePamplemousse launch: - config: @@ -133314,7 +129988,7 @@ oslist: macos description: Launch executable: Dominique Pamplemousse.app -'270330': +"270330": installDir: KuEp1 launch: - config: @@ -133329,33 +130003,33 @@ oslist: macos description: Launch executable: kuSOTM.app -'270370': +"270370": installDir: Lambda Wars launch: - - arguments: '-game lambdawars' + - arguments: "-game lambdawars" config: oslist: windows description: Launch executable: lambdawars.exe type: default -'270410': +"270410": installDir: I WANT TO BE HUMAN launch: - executable: IWTBH.exe type: default -'270430': +"270430": installDir: CypressInheritance launch: - config: oslist: windows description: Launch - executable: CypressInheritanceGame\\Binaries\\Win\\CypressInheritanceGame-Win32-Shipping.exe - workingdir: CypressInheritanceGame\\Binaries\\Win\\ + executable: "CypressInheritanceGame\\\\Binaries\\\\Win\\\\CypressInheritanceGame-Win32-Shipping.exe" + workingdir: "CypressInheritanceGame\\\\Binaries\\\\Win\\\\" - config: oslist: macos description: Launch executable: Cypressinheritance.app -'270450': +"270450": installDir: Disco Dodgeball launch: - config: @@ -133371,25 +130045,25 @@ description: Launch executable: Disco Dodgeball.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Disco Dodgeball.x86_64 -'270490': +"270490": installDir: The Forest of Doom launch: - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: The Forest of Doom.x86_64 - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: The Forest of Doom.x86 - config: - osarch: '64' + osarch: "64" oslist: macos description: Launch executable: The Forest of Doom.app @@ -133397,7 +130071,7 @@ oslist: windows description: Launch executable: The Forest of Doom.exe -'27050': +"27050": installDir: FATALE launch: - config: @@ -133407,20 +130081,20 @@ oslist: macos executable: FATALE.app - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch Linux 32-bit executable: Fatale.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch Linux 64-bit executable: Fatale.x86_64 -'270510': +"270510": installDir: EPOCH launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: Binaries/Win64/UDK.exe @@ -133430,18 +130104,18 @@ description: Play EPOCH (32-bit) executable: Binaries/Win32/UDK.exe workingdir: Binaries/Win32/ -'270550': +"270550": installDir: Yet Another Zombie Defense launch: - config: oslist: windows description: Launch executable: YetAnotherZombieDefense.exe -'270570': +"270570": installDir: Reversion launch: - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: reversion @@ -133450,11 +130124,11 @@ description: Launch executable: Reversion.exe - config: - osarch: '64' + osarch: "64" oslist: macos description: Launch executable: Reversion.app/Contents/MacOS/reversion -'270590': +"270590": installDir: SteamBuild launch: - config: @@ -133465,7 +130139,7 @@ oslist: linux description: Launch executable: long_night.x86_64 -'270610': +"270610": installDir: Mages Initiation launch: - config: @@ -133473,28 +130147,28 @@ description: Launch executable: Mages_Initiation.exe type: none - - arguments: '--setup' + - arguments: "--setup" config: oslist: windows description: Setup executable: Mages_Initiation.exe type: none - - arguments: '--windowed' + - arguments: "--windowed" config: oslist: linux description: with OpenGL in a Window - executable: ./Start.sh + executable: "./Start.sh" type: option1 - config: oslist: macos description: Play in Fullscreen - executable: Mage's Initiation.app/Contents/MacOS/Mage's Initiation + executable: "Mage's Initiation.app/Contents/MacOS/Mage's Initiation" type: none - - arguments: '--fullscreen' + - arguments: "--fullscreen" config: oslist: linux description: with OpenGL in Fullscreen - executable: ./Start.sh + executable: "./Start.sh" type: option2 - config: oslist: windows @@ -133504,7 +130178,7 @@ oslist: macos executable: launchmanual_osx.sh type: manual -'270630': +"270630": installDir: Haunt the House Terrortown launch: - config: @@ -133515,7 +130189,7 @@ oslist: macos description: Launch executable: HauntTheHouseTerrortown.app -'270750': +"270750": installDir: Realms of Arkania 2 Startrail Classic launch: - config: @@ -133530,7 +130204,7 @@ oslist: linux description: Launch executable: start.sh -'270760': +"270760": installDir: Realms of Arkania 3 SoR Classic launch: - config: @@ -133545,23 +130219,23 @@ oslist: linux description: Launch executable: start.sh -'270770': +"270770": installDir: Etherlords launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: CompatLaunch executable: Run.cmd -'270790': +"270790": installDir: Etherlords II launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: Run.cmd -'270810': +"270810": installDir: Jones On Fire launch: - config: @@ -133572,12 +130246,12 @@ oslist: windows description: Launch executable: JonesOnFire.exe -'270830': +"270830": installDir: Global ATC Simulator launch: - description: Global ATC executable: GATC.exe -'270850': +"270850": installDir: Car Mechanic Simulator launch: - config: @@ -133588,51 +130262,51 @@ oslist: macos description: Launch executable: cms.app -'270880': +"270880": installDir: American Truck Simulator launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: bin/win_x64/amtrucks.exe type: default - - arguments: '-rdevice dx9' + - arguments: "-rdevice dx9" config: betakey: temporary_1_35 - osarch: '64' + osarch: "64" oslist: windows description: Launch with DirectX9 executable: bin/win_x64/amtrucks.exe type: none - - arguments: '-rdevice dx11' + - arguments: "-rdevice dx11" config: - osarch: '64' + osarch: "64" oslist: windows description: Launch with DirectX11 executable: bin/win_x64/amtrucks.exe type: none - - arguments: '-rdevice gl' + - arguments: "-rdevice gl" config: - osarch: '64' + osarch: "64" oslist: windows description: Launch with OpenGL executable: bin/win_x64/amtrucks.exe type: none - - arguments: '-safe' + - arguments: "-safe" config: - osarch: '64' + osarch: "64" oslist: windows executable: bin/win_x64/amtrucks.exe type: safemode - config: - osarch: '64' + osarch: "64" oslist: linux executable: bin/linux_x64/amtrucks type: default workingdir: bin/linux_x64 - - arguments: '-safe' + - arguments: "-safe" config: - osarch: '64' + osarch: "64" oslist: linux executable: bin/linux_x64/amtrucks type: safemode @@ -133643,43 +130317,43 @@ type: default - config: betakey: unsupported_32bit - osarch: '32' + osarch: "32" oslist: windows executable: bin/win_x64/amtrucks.exe type: none -'270910': +"270910": installDir: WormsWorldParty launch: - config: oslist: windows description: Launch executable: w2.exe -'270950': +"270950": installDir: Ski Region Simulator launch: - - arguments: '-name SkiRegionSimulator2012' + - arguments: "-name SkiRegionSimulator2012" description: Launch executable: SkiRegionSimulator2012Game.exe -'2710': +"2710": installDir: Act of War Direct Action launch: - executable: ACTOFWAR.EXE -'271240': +"271240": installDir: Offworld Trading Company launch: - - arguments: '-multidisplay' + - arguments: "-multidisplay" config: oslist: macos description: Launch executable: Offworld.app type: default - - arguments: '-multidisplay' + - arguments: "-multidisplay" config: - osarch: '64' + osarch: "64" oslist: linux executable: Offworld.x86_64 type: default - - arguments: '-multidisplay' + - arguments: "-multidisplay" config: oslist: windows executable: StardockLauncher.exe @@ -133689,38 +130363,38 @@ description: in Safer Mode executable: StardockLauncher.exe type: option1 -'271260': +"271260": installDir: Star Control - Origins launch: - - executable: Game\\StardockLauncher.exe + - executable: "Game\\\\StardockLauncher.exe" type: default - workingdir: Game\\ + workingdir: "Game\\\\" - config: betakey: ihvbuilds - osarch: '64' + osarch: "64" oslist: windows - description: 'Star Control: Origins DirectX 12' - executable: Game\\StarControl_DX12.exe + description: "Star Control: Origins DirectX 12" + executable: "Game\\\\StarControl_DX12.exe" type: option1 - workingdir: Game\\ + workingdir: "Game\\\\" - config: - betakey: 'vulkan, ihvbuilds' - osarch: '64' - description: 'Star Control: Origins Vulkan' - executable: Game\\StarControl_Vulkan.exe + betakey: "vulkan, ihvbuilds" + osarch: "64" + description: "Star Control: Origins Vulkan" + executable: "Game\\\\StarControl_Vulkan.exe" type: option1 - workingdir: Game\\ -'271290': + workingdir: "Game\\\\" +"271290": installDir: Hawken launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: Binaries/Win64/HawkenGame-Win64-Shipping.exe type: none workingdir: Binaries/Win64 -'271360': +"271360": installDir: Industry Giant 2 launch: - description: Launch @@ -133729,26 +130403,26 @@ betakey: beta executable: Editor.exe type: editor -'271370': +"271370": installDir: Transport Giant launch: - config: oslist: windows description: Launch executable: transportgiant.exe -'271500': +"271500": installDir: Sniper Art of Victory launch: - description: Launch executable: Sniper.exe -'271550': +"271550": installDir: Tribloos 2 launch: - config: oslist: windows description: Launch executable: TheTribloos2.exe -'271570': +"271570": installDir: SpaceFarmers launch: - config: @@ -133763,38 +130437,38 @@ oslist: macos description: Launch executable: SpaceFarmers.app -'271590': +"271590": installDir: Grand Theft Auto V launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: PlayGTAV.exe type: none - - arguments: '-StraightIntoFreemode' + - arguments: "-StraightIntoFreemode" config: - osarch: '64' + osarch: "64" oslist: windows description: GTA Online executable: PlayGTAV.exe type: option1 - - arguments: '-nosocialclub' + - arguments: "-nosocialclub" config: betakey: externalbuilds - osarch: '64' + osarch: "64" oslist: windows description: Grand Theft Auto V Play executable: GTA5.exe type: none -'271640': +"271640": installDir: Humanity Asset launch: - config: oslist: windows description: Launch executable: HumanityAsset.exe -'271670': +"271670": installDir: 10 Second Ninja launch: - config: @@ -133805,7 +130479,7 @@ oslist: macos description: Launch executable: 10 Second Ninja.app -'271730': +"271730": installDir: Light launch: - config: @@ -133820,7 +130494,7 @@ oslist: linux description: Launch executable: Light.x86 -'271760': +"271760": installDir: Dungeon Lords launch: - config: @@ -133828,7 +130502,7 @@ description: Launch Dungeon Lords Steam Edition executable: DLSteamEdition.exe type: default -'271820': +"271820": installDir: Card City Nights launch: - config: @@ -133843,14 +130517,14 @@ oslist: linux description: Launch executable: ccn.x86 -'271860': +"271860": installDir: SuperKillerHornet launch: - description: Launch SKH-Resurrection executable: SKHR.exe - description: Launch SKH Original (Bonus content) executable: SKH/Hornet.exe -'271900': +"271900": installDir: Hexcells Plus launch: - config: @@ -133862,17 +130536,17 @@ description: Launch executable: Hexcells Plus.app - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: Hexcells Plus.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: Hexcells Plus.x86_64 type: none -'271920': +"271920": installDir: WorldsAdriftEditor launch: - config: @@ -133885,41 +130559,41 @@ description: Launch executable: island_gen.app type: none -'271970': +"271970": installDir: Hero and Daughter launch: - executable: game.exe type: default -'271990': +"271990": installDir: Dreamscape launch: - config: oslist: windows description: Launch - executable: Dreamscape\\Dreamscape.exe + executable: "Dreamscape\\\\Dreamscape.exe" workingdir: Dreamscape - config: - ownsdlc: '366740' + ownsdlc: "366740" description: View Walkthrough - executable: Guide\\Dreamscape-The-Ultimate-Guide.pdf -'2720': + executable: "Guide\\\\Dreamscape-The-Ultimate-Guide.pdf" +"2720": installDir: tshb launch: - - description: 'Play ThreadSpace: Hyperbol' + - description: "Play ThreadSpace: Hyperbol" executable: Hyperbol.exe -'27200': +"27200": installDir: Summer Athletics launch: - executable: summerathletics.exe -'272010': +"272010": installDir: Aveyond Lord of Twilight launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: Aveyond - Lord of Twilight.exe -'272040': +"272040": installDir: KAMI launch: - config: @@ -133930,16 +130604,16 @@ oslist: macos description: Launch executable: KAMI.app/Contents/MacOS/KAMI -'272060': +"272060": installDir: Serena launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: Dagon.exe - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch (64-bit) executable: Dagon64.exe @@ -133948,16 +130622,16 @@ description: Launch executable: Dagon.app/Contents/MacOS/Dagon - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: dagon - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: dagon.64 -'272230': +"272230": installDir: Sub Rosa launch: - config: @@ -133969,38 +130643,38 @@ description: Launch executable: subrosa.app - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: subrosa.x64 -'272270': +"272270": installDir: Torment Tides of Numenera launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch - executable: WIN\\TidesOfNumenera.exe + executable: "WIN\\\\TidesOfNumenera.exe" type: none - config: - osarch: '64' + osarch: "64" oslist: macos description: Launch - executable: OSX\\TidesOfNumenera.app\\Contents\\MacOS\\TidesOfNumenera + executable: "OSX\\\\TidesOfNumenera.app\\\\Contents\\\\MacOS\\\\TidesOfNumenera" type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch - executable: LINUX\\TidesOfNumenera + executable: "LINUX\\\\TidesOfNumenera" type: none - config: betakey: development - osarch: '64' + osarch: "64" oslist: linux - executable: LINUX\\start.sh + executable: "LINUX\\\\start.sh" type: none -'272330': +"272330": installDir: ShadowBlade launch: - config: @@ -134016,7 +130690,7 @@ oslist: linux executable: shadowbladelinux.x86 type: none -'272470': +"272470": installDir: The Incredible Adventures of Van Helsing II launch: - config: @@ -134027,16 +130701,16 @@ oslist: macos description: Launch The Incredible Adventures of Van Helsing II executable: TIAOVH2.app -'272510': +"272510": installDir: NARUTO SHIPPUDEN ULTIMATE NINJA STORM REVOLUTION launch: - - arguments: '-csl' + - arguments: "-csl" config: - osarch: '32' + osarch: "32" oslist: windows description: Launch with Console executable: NSUNSR_launcher.exe -'272600': +"272600": installDir: Detective Grimoire launch: - config: @@ -134051,7 +130725,7 @@ oslist: linux description: Launch executable: run.sh -'272620': +"272620": installDir: Serious Sams Bogus Detour launch: - config: @@ -134061,7 +130735,7 @@ - arguments: dx config: oslist: windows - description: Serious Sam's Bogus Detour (DirectX 11) + description: "Serious Sam's Bogus Detour (DirectX 11)" executable: SSBD.exe type: none - config: @@ -134076,7 +130750,7 @@ oslist: linux executable: EDITOR type: editor -'272670': +"272670": installDir: OOTP Baseball 15 launch: - config: @@ -134091,7 +130765,7 @@ oslist: linux description: Launch executable: ootp15.sh -'272890': +"272890": installDir: Vertiginous Golf launch: - config: @@ -134103,16 +130777,16 @@ description: Launch executable: Vertiginous Golf.app - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: vgolf.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: vgolf.x86_64 -'272920': +"272920": installDir: Rail Adventures launch: - config: @@ -134120,34 +130794,34 @@ description: Rail Adventures executable: Rail Adventures.exe type: default -'272990': +"272990": installDir: GAUGE launch: - description: Launch executable: Gauge.exe -'27300': +"27300": installDir: Saw launch: - - executable: .\\\\Binaries\\\\SawGame.exe -'273030': + - executable: ".\\\\\\\\Binaries\\\\\\\\SawGame.exe" +"273030": installDir: Pro Rugby Manager 2015 launch: - config: oslist: windows description: Launch executable: rugby.exe - - arguments: '-nomaster' + - arguments: "-nomaster" config: oslist: windows ownsdlc: cyanide - description: '-nomaster' + description: "-nomaster" executable: rugby.exe - - arguments: '-cdb' + - arguments: "-cdb" config: ownsdlc: cyanide description: Launch Custom DB executable: rugby.exe -'273070': +"273070": installDir: The Last Federation launch: - config: @@ -134159,92 +130833,92 @@ description: Launch executable: LastFederation.app - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: LastFederationLinux.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: LastFederationLinux.x86_64 -'273110': +"273110": installDir: CSNZ launch: - description: Launch executable: bin/cstrike-online.exe workingdir: bin -'273240': +"273240": installDir: GUNHOUNDEX launch: - config: oslist: windows description: Launch executable: GunHoundEx.exe -'27330': +"27330": installDir: Blacklight Tango Down launch: - - executable: .\\Binaries\\Win32\\BLTD.exe -'273350': + - executable: ".\\\\Binaries\\\\Win32\\\\BLTD.exe" +"273350": installDir: EvolveGame launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Bin64_SteamRetail/Evolve.exe workingdir: Bin64_SteamRetail/ - config: - osarch: '64' + osarch: "64" oslist: macos description: Launch executable: Evolve.app - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Evolve.sh -'273500': +"273500": installDir: Over 9000 Zombies! launch: - config: oslist: windows description: Launch executable: Over9000Zombies.exe -'273570': +"273570": installDir: Descent launch: - config: oslist: windows executable: launch descent.bat type: default - - arguments: '-conf \"config/dosboxDescent.conf\" -conf \"config/dosboxDescent_single.conf\" -noconsole' + - arguments: "-conf \\\"config/dosboxDescent.conf\\\" -conf \\\"config/dosboxDescent_single.conf\\\" -noconsole" config: oslist: macos executable: DOSBox/dosbox.app/Contents/MacOS/DOSBox type: default - - arguments: '-conf \"config/dosboxDescent.conf\" -conf \"config/dosboxDescent_single.conf\" -noconsole' + - arguments: "-conf \\\"config/dosboxDescent.conf\\\" -conf \\\"config/dosboxDescent_single.conf\\\" -noconsole" config: oslist: linux executable: dosbox/dosbox type: default -'273580': +"273580": installDir: Descent 2 launch: - config: oslist: windows description: Launch executable: launch descent 2.bat - - arguments: '-conf \"./config/dosboxDescent2.conf\" -conf \"./config/dosboxDescent2_single.conf\" -noconsole' + - arguments: "-conf \\\"./config/dosboxDescent2.conf\\\" -conf \\\"./config/dosboxDescent2_single.conf\\\" -noconsole" config: oslist: macos executable: DOSBox/dosbox.app/Contents/MacOS/DOSBox type: default - - arguments: '-conf \"./config/dosboxDescent2.conf\" -conf \"./config/dosboxDescent2_single.conf\" -noconsole' + - arguments: "-conf \\\"./config/dosboxDescent2.conf\\\" -conf \\\"./config/dosboxDescent2_single.conf\\\" -noconsole" config: oslist: linux executable: dosbox/dosbox type: default -'273590': +"273590": installDir: Descent 3 launch: - config: @@ -134252,7 +130926,7 @@ description: Launch executable: Descent 3.exe - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: descent3 @@ -134262,33 +130936,33 @@ description: Launch executable: Descent 3.app type: none -'273600': +"273600": installDir: Freespace launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Launcher executable: freespace.exe -'273620': +"273620": installDir: Freespace 2 launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: fs2.exe -'273730': +"273730": installDir: Driving School Simulator launch: - config: oslist: windows description: Launch executable: Driving School Simulator.exe -'273740': +"273740": installDir: ExtremeRoadsUSA launch: - - arguments: '-debug' + - arguments: "-debug" config: oslist: windows description: Launch @@ -134297,7 +130971,7 @@ oslist: macos description: Launch executable: xrusa.app -'273750': +"273750": installDir: Formula Truck 2013 launch: - description: Launch @@ -134308,45 +130982,45 @@ - description: Dedicated Server Tool executable: FTruck Dedicated.exe type: server -'273760': +"273760": installDir: Towtruck Simulator 2015 launch: - config: oslist: windows description: Launch executable: towtruck.exe -'273770': +"273770": installDir: Game Tycoon 1.5 launch: - executable: Game_Tycoon.exe -'273790': +"273790": installDir: Agricultural Simulator 2012 launch: - config: oslist: windows description: Launch executable: farm2012.exe -'273800': +"273800": installDir: Forestry 2017 - The Simulation launch: - config: oslist: windows executable: forestry.exe type: default -'273820': +"273820": installDir: Mining and Tunneling Simulation launch: - config: oslist: windows executable: tunneling.exe -'273830': +"273830": installDir: Aviator - Bush Pilot launch: - config: oslist: windows description: Launch executable: Buschpilot.exe -'273840': +"273840": installDir: Stock Car Extreme launch: - description: Launch @@ -134355,15 +131029,15 @@ type: config - executable: GSC Dedicated.exe type: server -'273850': +"273850": installDir: Ski World Simulator launch: - executable: skiresort2012.exe -'273860': +"273860": installDir: Snowcat Simulator launch: - executable: snowcat.exe -'273890': +"273890": installDir: Arctic Trucker Simulator launch: - config: @@ -134375,23 +131049,23 @@ executable: ArcticTrucker.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: ArcticTrucker.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: ArcticTrucker.x86_64 type: default -'273940': +"273940": installDir: Warehouse and Logistics Simulator launch: - config: oslist: windows description: Launch executable: Launcher.exe -'273960': +"273960": installDir: Black Talons launch: - config: @@ -134399,12 +131073,12 @@ description: Launch executable: BlackTalons.exe - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch 64-Bit executable: BlackTalons.x86_64 - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch 32-Bit executable: BlackTalons.x86 @@ -134412,16 +131086,16 @@ oslist: macos description: Launch executable: blacktalons.app -'27400': +"27400": installDir: Dangerous High School Girls in Trouble launch: - config: oslist: windows - executable: prog\\brigiton.exe + executable: "prog\\\\brigiton.exe" - config: oslist: macos executable: Dangerous Girls.app -'274010': +"274010": installDir: Ship Simulator Maritime Search and Rescue launch: - config: @@ -134432,12 +131106,12 @@ oslist: macos description: Launch executable: Ship Simulator - Maritime Search and Rescue.app -'274130': +"274130": installDir: Rambo launch: - description: Start game launcher executable: GameLauncher.exe -'274170': +"274170": installDir: Hotline Miami 2 launch: - config: @@ -134449,16 +131123,16 @@ description: Launch executable: HotlineMiami2.app/Contents/MacOS/HotlineMiami2 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: HotlineMiami2 - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: HotlineMiami2_32 -'274190': +"274190": installDir: Broforce launch: - config: @@ -134470,18 +131144,18 @@ description: Launch executable: Broforce.app - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: Broforce.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Broforce.x86_64 type: none -'274230': +"274230": installDir: RONIN launch: - config: @@ -134497,13 +131171,13 @@ oslist: linux executable: run.sh type: default -'274250': +"274250": installDir: OlliOlli launch: - config: oslist: windows description: Launch - executable: bin\\olliolli.exe + executable: "bin\\\\olliolli.exe" workingdir: gamedata - config: oslist: macos @@ -134514,7 +131188,7 @@ description: Launch executable: bin/olliolli.sh workingdir: gamedata -'274270': +"274270": installDir: Not a Hero launch: - config: @@ -134537,7 +131211,7 @@ description: Run in safe mody (legacy) executable: LEGACY.exe type: none -'274290': +"274290": installDir: Gods Will Be Watching launch: - config: @@ -134552,7 +131226,7 @@ oslist: macos description: OSX Build executable: Gods Will Be Watching.app -'274310': +"274310": installDir: Always Sometimes Monsters launch: - config: @@ -134571,13 +131245,13 @@ type: none - config: betakey: linux_beta_pro - osarch: '64' + osarch: "64" oslist: linux description: Always Sometimes Monsters Beta executable: runasm.bin type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: Always Sometimes Monsters executable: runasm.bin @@ -134588,14 +131262,14 @@ description: Launch executable: run.sh type: default - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: betakey: asm_touch oslist: windows description: Alternate Reality executable: ar/alternatereality.exe type: default -'274350': +"274350": installDir: Dropsy launch: - config: @@ -134607,19 +131281,19 @@ description: Launch executable: Dropsy.app - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Dropsy.x86_64 type: none - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch (32 bit) executable: Dropsy.x86 type: none -'274440': {} -'274450': +"274440": {} +"274450": installDir: Powerpuff Girls launch: - config: @@ -134634,7 +131308,7 @@ oslist: linux description: Launch executable: ppg_linux -'274480': +"274480": installDir: Drox Operative launch: - config: @@ -134649,7 +131323,7 @@ oslist: linux description: Launch executable: DroxOperative -'274500': +"274500": installDir: Brigador launch: - config: @@ -134667,10 +131341,10 @@ nameLocalized: japanese: ブリゲイダー 装甲強化版 koreana: 브리게이더 장갑강화판 - polish: 'Brigador: Edycja Dopancerzona' + polish: "Brigador: Edycja Dopancerzona" schinese: 叛击士 装甲强化版 tchinese: 叛擊士 裝甲強化版 -'274520': +"274520": installDir: Darkwood launch: - config: @@ -134679,40 +131353,40 @@ executable: Darkwood.exe type: default - config: - osarch: '64' + osarch: "64" oslist: macos description: Launch executable: Darkwood.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Darkwood.x86_64 type: default - - arguments: '-popupwindow' + - arguments: "-popupwindow" config: oslist: windows description: Borderless window executable: Darkwood.exe type: none -'274560': +"274560": installDir: Revolution Ace launch: - description: Launch - executable: Binaries\\Win32\\ShmupGame.exe + executable: "Binaries\\\\Win32\\\\ShmupGame.exe" type: none -'274620': +"274620": installDir: Skara The Blade Remains launch: - - arguments: '-foo' + - arguments: "-foo" config: - osarch: '64' + osarch: "64" oslist: windows description: SkaraGame executable: SkaraGame.exe type: none -'274700': +"274700": installDir: 868-HACK launch: - config: @@ -134723,14 +131397,14 @@ oslist: macos description: Launch executable: 868-HACK.app -'274880': +"274880": installDir: JetCarStunts launch: - config: oslist: windows description: Launch executable: Game.exe -'274900': +"274900": installDir: MurderMiners launch: - config: @@ -134740,47 +131414,47 @@ type: none - config: oslist: linux - executable: ./MurderMiners + executable: "./MurderMiners" type: none - config: oslist: macos executable: Murder Miners.app type: none -'274940': +"274940": installDir: Depth launch: - arguments: DepthMain?Game=DepthGame.DPGameInfoFrontEnd?LIVEMatchMaking config: oslist: windows description: Play Depth - executable: Binaries\\Win32\\DepthGame.exe + executable: "Binaries\\\\Win32\\\\DepthGame.exe" type: none - workingdir: . + workingdir: "." - arguments: Editor config: - osarch: '64' + osarch: "64" oslist: windows - ownsdlc: '335640' + ownsdlc: "335640" description: Launch Depth Editor - executable: SDK\\Binaries\\Win64\\DepthEd.exe + executable: "SDK\\\\Binaries\\\\Win64\\\\DepthEd.exe" type: none - workingdir: . + workingdir: "." - arguments: DepthMain?Game=DepthGame.DPGameInfoFrontEnd?QAMatchMaking -MatchmakerEnv=QA config: oslist: windows - ownsdlc: '605240' + ownsdlc: "605240" description: Play Depth Public Beta - executable: BETA\\Binaries\\Win32\\DepthGame.exe + executable: "BETA\\\\Binaries\\\\Win32\\\\DepthGame.exe" type: none - workingdir: . -'274960': + workingdir: "." +"274960": installDir: Tech Executive Tycoon launch: - config: oslist: windows executable: Tech Executive Tycoon.exe type: none -'274980': +"274980": installDir: Influent launch: - config: @@ -134796,35 +131470,35 @@ description: Launch executable: Influent.x86 type: none -'275060': +"275060": installDir: Alone in the Dark launch: - - arguments: '-NOSCREENMESSAGES' + - arguments: "-NOSCREENMESSAGES" config: - osarch: '64' + osarch: "64" oslist: windows description: Launch - executable: Dark\\Binaries\\Win64\\Dark-Win64-Shipping.exe - workingdir: Dark\\Binaries\\Win64 - - arguments: '-NOSCREENMESSAGES' + executable: "Dark\\\\Binaries\\\\Win64\\\\Dark-Win64-Shipping.exe" + workingdir: "Dark\\\\Binaries\\\\Win64" + - arguments: "-NOSCREENMESSAGES" config: betakey: nspace-internal-qa - osarch: '64' + osarch: "64" oslist: windows description: Beta - executable: Dark\\Binaries\\Win64\\Dark.exe + executable: "Dark\\\\Binaries\\\\Win64\\\\Dark.exe" type: none - workingdir: Dark\\Binaries\\Win64 - - arguments: '-NOSCREENMESSAGES' + workingdir: "Dark\\\\Binaries\\\\Win64" + - arguments: "-NOSCREENMESSAGES" config: betakey: nspace - osarch: '64' + osarch: "64" oslist: windows description: Play the Evaluation Build - executable: Dark\\Binaries\\Win64\\Dark.exe + executable: "Dark\\\\Binaries\\\\Win64\\\\Dark.exe" type: none - workingdir: Dark\\Binaries\\Win64 -'275080': + workingdir: "Dark\\\\Binaries\\\\Win64" +"275080": installDir: Post Master Simulator launch: - config: @@ -134835,7 +131509,7 @@ oslist: macos description: Launch executable: PostMaster.app/Contents/MacOS/PostMaster -'275100': +"275100": installDir: Shelter2 launch: - config: @@ -134850,7 +131524,7 @@ oslist: linux description: Launch executable: Shelter2.x86 -'275180': +"275180": installDir: CostumeQuest2 launch: - config: @@ -134870,7 +131544,7 @@ oslist: windows description: Play Costume Quest 2 (DirectX 9) executable: CostumeQuest2_DX9.exe -'275200': +"275200": installDir: Westerado launch: - config: @@ -134881,77 +131555,77 @@ oslist: macos description: Launch executable: WesteradoDB.app -'275290': +"275290": installDir: Graviteam Tactics Operation Star launch: - description: Launch executable: starter.exe -'275310': +"275310": installDir: Victorian Admirals launch: - description: Launch executable: Victorian_Admirals.exe -'275330': +"275330": installDir: Anmynor Puzzles launch: - description: Launch executable: AnmynorPuzzles.exe -'275350': +"275350": installDir: Sentinel 3 launch: - description: Launch executable: Sentinel3.exe -'275370': +"275370": installDir: Paper Monsters launch: - description: Launch executable: PaperMonsters.exe -'275390': +"275390": installDir: DrinkBox_Game4 launch: - description: Launch executable: game.exe -'275470': +"275470": installDir: Chip launch: - config: oslist: windows description: Launch executable: chip.win32.exe -'275490': +"275490": installDir: Canyon Capers launch: - description: Launch executable: CanyonCapers.exe -'275510': +"275510": installDir: Z2 launch: - config: oslist: windows description: Launch Z Steel Soldiers executable: Z2.exe -'275530': +"275530": installDir: Z launch: - config: oslist: windows description: Launch executable: Z.exe -'275570': +"275570": installDir: Summoner launch: - config: oslist: windows description: Launch Summoner executable: Summoner.exe -'275610': +"275610": installDir: W40K Kill Team launch: - config: oslist: windows description: Launch executable: killteam.exe -'275670': +"275670": installDir: Space Run launch: - config: @@ -134966,80 +131640,80 @@ oslist: linux description: Launch executable: oSpaceGameMerged -'275810': +"275810": installDir: 7 Wonders launch: - config: oslist: windows executable: 7Wonders.exe -'275830': +"275830": installDir: 7 Wonders Magical Mystery Tour launch: - config: oslist: windows executable: 7W4.exe -'275850': - installDir: No Man's Sky +"275850": + installDir: "No Man's Sky" launch: - config: oslist: windows - executable: Binaries\\NMS.exe + executable: "Binaries\\\\NMS.exe" type: default workingdir: Binaries - - arguments: '-HmdEnable 1' + - arguments: "-HmdEnable 1" config: oslist: windows - description: No Man's Sky VR - executable: Binaries\\NMS.exe + description: "No Man's Sky VR" + executable: "Binaries\\\\NMS.exe" type: vr workingdir: Binaries -'2760': +"2760": installDir: Neverwinter Nights 2 launch: - executable: nwn2.exe -'27600': +"27600": installDir: Mevo and the Grooveriders launch: - executable: Mevo.exe -'276220': +"276220": installDir: Cats & Dogs Best Friends launch: - executable: BestFriends.exe -'276240': +"276240": installDir: Pet Vet Friends in Need launch: - executable: TAPLand.exe -'276300': +"276300": installDir: My Riding Stables launch: - config: oslist: windows description: Launch - executable: bin\\win32\\gestuet.exe - workingdir: bin\\win32 -'276340': + executable: "bin\\\\win32\\\\gestuet.exe" + workingdir: "bin\\\\win32" +"276340": installDir: My Riding Stables 2 launch: - config: oslist: windows description: Launch executable: MG2.exe -'276360': +"276360": installDir: Riding Star 3 launch: - config: oslist: windows description: Launch executable: rs3.exe -'276380': +"276380": installDir: Pet Hotel launch: - executable: Tierpension.exe -'276430': +"276430": installDir: Pet Hotel 2 launch: - executable: TP2.exe -'276440': +"276440": installDir: Kingdom Tales launch: - config: @@ -135049,9 +131723,9 @@ - config: oslist: macos description: Launch - executable: Kingdom Tales.app\\Contents\\MacOS\\Kingdom Tales - workingdir: Kingdom Tales.app\\Contents\\MacOS -'276460': + executable: "Kingdom Tales.app\\\\Contents\\\\MacOS\\\\Kingdom Tales" + workingdir: "Kingdom Tales.app\\\\Contents\\\\MacOS" +"276460": installDir: Tales From The Dragon Mountain 2 The Lair launch: - config: @@ -135061,9 +131735,9 @@ - config: oslist: macos description: Launch - executable: Tales from the Dragon Mountain - The Lair.app\\Contents\\MacOS\\cageplayer_cateia_cpromo - workingdir: Tales from the Dragon Mountain - The Lair.app\\Contents\\MacOS -'276730': + executable: "Tales from the Dragon Mountain - The Lair.app\\\\Contents\\\\MacOS\\\\cageplayer_cateia_cpromo" + workingdir: "Tales from the Dragon Mountain - The Lair.app\\\\Contents\\\\MacOS" +"276730": installDir: Tango Fiesta launch: - config: @@ -135073,29 +131747,29 @@ - config: oslist: macos description: Launch - executable: TangoFiesta.app\\Contents\\MacOS\\Tango Fiesta -'276750': + executable: "TangoFiesta.app\\\\Contents\\\\MacOS\\\\Tango Fiesta" +"276750": installDir: ChessBase launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: ChessProgram14/ChessProgram14.exe - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: ChessProgram14/ChessProgram14.exe -'276770': +"276770": installDir: ToySoldiersWarChest launch: - - arguments: '-uplay_steam_mode' + - arguments: "-uplay_steam_mode" config: oslist: windows description: Launch Release executable: Game.exe -'276810': +"276810": installDir: mordheim launch: - config: @@ -135103,24 +131777,24 @@ description: Launch executable: mordheim.exe - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: mordheim.x86_64 type: none -'276870': +"276870": installDir: Dwelvers launch: - config: oslist: windows description: Launch executable: dwelvers.exe -'276890': +"276890": installDir: FATE Undiscovered Realms launch: - description: Launch executable: fate.exe -'277110': +"277110": installDir: Return to Mysterious Island launch: - config: @@ -135131,14 +131805,14 @@ oslist: macos description: Launch executable: SteamTest.app/Contents/MacOS/SteamTest -'277270': +"277270": installDir: Return To Mysterious Island 2 launch: - config: oslist: windows description: Launch executable: RTMI2.exe -'277390': +"277390": installDir: VIDEOBALL launch: - config: @@ -135146,27 +131820,27 @@ description: Launch executable: Videoball.exe type: none -'277430': +"277430": installDir: Halo Spartan Assault launch: - description: Launch executable: HaloSpartanAssault.exe workingdir: Data -'277450': +"277450": installDir: Imperial Glory launch: - config: oslist: windows description: Launch executable: ImperialGlory.exe -'277460': +"277460": installDir: Praetorians launch: - config: oslist: windows description: Launch executable: Praetorians.exe -'277470': +"277470": installDir: The Book of Legends launch: - config: @@ -135174,10 +131848,10 @@ description: Launch executable: TheBookOfLegends.exe - config: - ownsdlc: '366750' + ownsdlc: "366750" description: View Walkthrough - executable: Guide\\The-Book-of-Legends–Official-Guide.pdf -'277490': + executable: "Guide\\\\The-Book-of-Legends–Official-Guide.pdf" +"277490": installDir: Battlegroup2 launch: - config: @@ -135189,16 +131863,16 @@ description: Launch Game executable: BattleGroup2.app - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: BattleGroup2.x86_64.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: BattleGroup2.x86_64.x86_64 -'277500': +"277500": installDir: Farming World launch: - config: @@ -135209,7 +131883,7 @@ oslist: macos description: Launch executable: FarmingWorld.app -'277510': +"277510": installDir: Shiny The Firefly launch: - config: @@ -135224,7 +131898,7 @@ oslist: linux description: Launch executable: Shiny.x86 -'277520': +"277520": installDir: Albedo Eyes from Outer Space launch: - config: @@ -135235,7 +131909,7 @@ oslist: macos description: Launch executable: Albedo.app -'277540': +"277540": installDir: Tales From The Dragon Mountain The Strix launch: - config: @@ -135245,9 +131919,9 @@ - config: oslist: macos description: Launch - executable: The Strix.app\\Contents\\MacOS\\The Strix - workingdir: The Strix.app\\Contents\\MacOS -'277560': + executable: "The Strix.app\\\\Contents\\\\MacOS\\\\The Strix" + workingdir: "The Strix.app\\\\Contents\\\\MacOS" +"277560": installDir: Where Angels Cry launch: - config: @@ -135257,22 +131931,22 @@ - config: oslist: macos description: Launch - executable: Where Angels Cry.app\\Contents\\MacOS\\game - workingdir: Where Angels Cry.app\\Contents\\MacOS -'277590': - installDir: Assassin's Creed Freedom Cry + executable: "Where Angels Cry.app\\\\Contents\\\\MacOS\\\\game" + workingdir: "Where Angels Cry.app\\\\Contents\\\\MacOS" +"277590": + installDir: "Assassin's Creed Freedom Cry" launch: - - arguments: '-uplay_steam_mode' + - arguments: "-uplay_steam_mode" config: oslist: windows - description: Launch Assassin's Creed Freedom Cry + description: "Launch Assassin's Creed Freedom Cry" executable: ACFC.exe -'277630': +"277630": installDir: Panzer Tactics HD launch: - description: Launch executable: PT.exe -'277650': +"277650": installDir: Kult Heretic Kingdoms launch: - config: @@ -135281,28 +131955,28 @@ executable: kult.bat - description: Configure executable: configure.exe -'277680': +"277680": installDir: About Love Hate and the other ones launch: - config: oslist: windows description: Launch - executable: bin32\\loveandhate.exe + executable: "bin32\\\\loveandhate.exe" - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: bin64/loveandhate - config: oslist: macos description: Launch - executable: 'About Love, Hate and the other ones.app/Contents/MacOS/loveandhate' + executable: "About Love, Hate and the other ones.app/Contents/MacOS/loveandhate" - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: bin32/loveandhate -'277700': +"277700": installDir: On Rusty Trails launch: - config: @@ -135310,36 +131984,36 @@ description: Launch executable: On Rusty Trails.app/Contents/MacOS/integrate - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: bin32/integrate - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: bin64/integrate - config: betakey: previous - osarch: '32' + osarch: "32" oslist: windows description: Launch - executable: bin32\\integrate.exe + executable: "bin32\\\\integrate.exe" type: default - config: betakey: previous - osarch: '64' + osarch: "64" oslist: windows description: Launch - executable: bin64\\integrate.exe + executable: "bin64\\\\integrate.exe" type: default - config: oslist: windows description: Launch executable: integrate.exe type: default -'277751': {} -'277850': +"277751": {} +"277850": installDir: Sportsfriends launch: - arguments: fakefullscreen @@ -135356,121 +132030,121 @@ oslist: macos description: Launch executable: Sportsfriends.app - - arguments: '-windowed 1' + - arguments: "-windowed 1" config: oslist: macos description: Play Sportsfriends (Windowed) executable: Sportsfriends.app - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Sportsfriends64 - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: Sportsfriends32 - arguments: windowed config: - osarch: '64' + osarch: "64" oslist: linux description: Play Sportsfriends (Windowed) executable: Sportsfriends64 - arguments: windowed config: - osarch: '32' + osarch: "32" oslist: linux description: Play Sportsfriends (Windowed) executable: Sportsfriends32 -'277870': +"277870": installDir: DiehardDungeon launch: - description: Launch executable: DiehardDungeon.exe -'277890': +"277890": installDir: RiskysRevenge launch: - description: Launch - executable: Executable\\RiskysRevenge.exe - workingdir: . -'277910': + executable: "Executable\\\\RiskysRevenge.exe" + workingdir: "." +"277910": installDir: MarsColonyChallenger launch: - config: oslist: windows description: Launch executable: MarsColonyChallenger.exe -'277930': +"277930": installDir: TUG launch: - config: - osarch: '64' + osarch: "64" description: TUG - 64 bit executable: TUG.exe - config: - osarch: '32' + osarch: "32" description: TUG - 32 bit executable: TUG32.exe -'277950': +"277950": installDir: Deadbreed launch: - - arguments: '-steam=1' + - arguments: "-steam=1" config: oslist: windows description: Launch executable: Deadbreed.exe -'2780': +"2780": installDir: ArmA Armed Assault launch: - executable: arma.exe - - description: 'ArmA: Armed Assault dedicated server' + - description: "ArmA: Armed Assault dedicated server" executable: arma_server.exe -'27800': +"27800": installDir: Space Giraffe launch: - executable: SpaceGiraffePC.exe -'278080': +"278080": installDir: Dynasty Warriors 8 launch: - config: oslist: windows description: Launch executable: Launch.exe - workingdir: .\\ + workingdir: ".\\\\" - config: oslist: windows description: Configuration executable: Config.exe - workingdir: .\\ + workingdir: ".\\\\" nameLocalized: japanese: 真・三國無双7 with 猛将伝 koreana: 진・삼국무쌍7 with 맹장전 schinese: 真・三国无双7 with 猛将传 tchinese: 真・三國無雙7 with 猛將傳 -'27810': +"27810": installDir: GridRunner Revolution launch: - executable: GridRunnerRev_PC.exe -'278100': +"278100": installDir: RIVE launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: rive.exe type: default - config: - osarch: '64' + osarch: "64" oslist: macos executable: RIVE.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: RIVE.bin.x86_64 type: default -'278360': +"278360": installDir: A Story About My Uncle launch: - config: @@ -135482,16 +132156,16 @@ executable: A Story About My Uncle.app/Contents/MacOS/ASAMU type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: Binaries/linux-x86/ASAMU type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: /Binaries/linux-amd64/ASAMU type: none -'278420': +"278420": installDir: Spider Rite of the Shrouded Moon launch: - config: @@ -135506,7 +132180,7 @@ oslist: linux description: Launch executable: Spider2 -'278440': +"278440": installDir: 0rbitalis launch: - config: @@ -135517,7 +132191,7 @@ oslist: macos description: Launch executable: 0RBITALIS.app -'278460': +"278460": installDir: Skyborn launch: - config: @@ -135525,16 +132199,16 @@ description: Launch executable: Game.exe type: none - - arguments: ./Skyborn.amd64 + - arguments: "./Skyborn.amd64" config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: steamshim/parent.amd64 type: none - - arguments: ./Skyborn.x86 + - arguments: "./Skyborn.x86" config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: steamshim/parent.x86 @@ -135545,15 +132219,15 @@ description: Launch executable: Skyborn.app/Contents/MacOS/steamshim_parent type: none -'278490': +"278490": installDir: Aveyond Gates of Night launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: Aveyond - Gates of Night.exe -'278510': +"278510": installDir: JUDGEMENT SILVERSWORD -Resurrection- launch: - config: @@ -135561,7 +132235,7 @@ description: Launch executable: JSSResurrection.exe type: default -'278530': +"278530": installDir: 3 Stars of Destiny launch: - config: @@ -135569,10 +132243,10 @@ description: Launch executable: 3Stars.exe - config: - ownsdlc: '366730' + ownsdlc: "366730" description: View Walkthrough - executable: Guide\\3-Stars-of-Destiny-Guide.pdf -'278550': + executable: "Guide\\\\3-Stars-of-Destiny-Guide.pdf" +"278550": installDir: A-Train 9 V4.0 Japan Rail Simulator launch: - executable: ATrain9v4.exe @@ -135580,12 +132254,12 @@ - description: Config executable: ATrain9v4Config.exe type: config -'278570': +"278570": installDir: Labyrinthine Dreams launch: - description: Launch executable: Game.exe -'278590': +"278590": installDir: Heroes of Legionwood launch: - config: @@ -135593,7 +132267,7 @@ description: Launch executable: Launcher.exe type: default -'278620': +"278620": installDir: TinyKeep launch: - config: @@ -135608,7 +132282,7 @@ oslist: macos description: Launch executable: tinykeep.app -'278640': +"278640": installDir: KR17 launch: - config: @@ -135623,7 +132297,7 @@ oslist: macos description: Launch executable: KR-17.app -'278810': +"278810": installDir: LA Cops launch: - config: @@ -135638,14 +132312,14 @@ oslist: linux description: Launch LA Cops executable: lacops.x86 -'278850': +"278850": installDir: SpaceforceHomeworld launch: - config: oslist: windows description: Launch executable: Start.exe -'278890': +"278890": installDir: Angvik launch: - config: @@ -135656,7 +132330,7 @@ oslist: macos description: Launch executable: nw.app -'278910': +"278910": installDir: Interplanetary launch: - config: @@ -135671,7 +132345,7 @@ oslist: linux description: Interplanetary internal alpha linux executable: Interplanetary.x86 -'278930': +"278930": installDir: Gigantic Army launch: - config: @@ -135682,43 +132356,37 @@ oslist: linux executable: GiganticArmy type: default -'278970': +"278970": installDir: DiggerWorld launch: - config: oslist: windows description: Steam Direct - description_loc: - english: Steam Direct - russian: Steam executable: Digger/Digger.exe type: option1 - config: oslist: windows description: VK Launcher - description_loc: - english: VK Launcher - russian: Вконтакте Лаунчере executable: launcher.exe type: option1 nameLocalized: russian: Копатель Онлайн -'2790': +"2790": installDir: Atari 80 Classic Games launch: - executable: Menu.exe -'27900': +"27900": installDir: TwinSector launch: - executable: TwinSector_Steam.exe -'279070': +"279070": installDir: 9thDawnII launch: - config: oslist: windows executable: ninthdawnii.exe type: default -'279140': +"279140": installDir: The Great War launch: - config: @@ -135733,7 +132401,7 @@ oslist: linux description: Launch executable: mhtgw -'279160': +"279160": installDir: Ultionus launch: - config: @@ -135747,18 +132415,18 @@ - config: oslist: linux executable: run.sh -'27920': +"27920": installDir: boostertrooper launch: - executable: BTroopers.exe -'279260': +"279260": installDir: RichardAndAlice launch: - config: oslist: windows description: Launch executable: richardandalice.exe - - arguments: '--setup' + - arguments: "--setup" config: oslist: windows description: Setup @@ -135766,17 +132434,17 @@ - config: oslist: linux description: Launch - executable: ./RichardAndAlice -'27940': + executable: "./RichardAndAlice" +"27940": installDir: DeadHorde launch: - executable: deadhorde.exe -'279420': +"279420": installDir: Gardens Inc launch: - description: Launch executable: GardensInc.exe -'279440': +"279440": installDir: Joe Dever’s Lone Wolf launch: - config: @@ -135787,21 +132455,21 @@ oslist: macos description: Launch executable: lonewolf.app -'279460': +"279460": installDir: IHF Handball Challenge 14 launch: - config: oslist: windows description: Master executable: HC14.exe -'279480': +"279480": installDir: Abalone launch: - config: oslist: windows description: Launch executable: Abalone.exe -'279500': +"279500": installDir: Nicolas Eymerich The Inquisitor launch: - config: @@ -135812,7 +132480,7 @@ oslist: macos description: Launch executable: Eymerich01.app -'279520': +"279520": installDir: Rage Runner launch: - arguments: aRageRunner.stk @@ -135828,7 +132496,7 @@ oslist: linux description: Launch executable: rage.sh -'279540': +"279540": installDir: Pretentious Game launch: - config: @@ -135840,7 +132508,7 @@ description: Launch executable: pretentiousgame.app type: option1 -'279560': +"279560": installDir: Dracula 5 The Blood Legacy launch: - config: @@ -135851,22 +132519,22 @@ oslist: macos description: Launch executable: Dracula 4 and 5.app -'279580': - installDir: Devil's Dare +"279580": + installDir: "Devil's Dare" launch: - config: oslist: windows description: Launch - executable: Devil's Dare.exe + executable: "Devil's Dare.exe" - config: oslist: macos description: Launch - executable: Devil's Dare.app + executable: "Devil's Dare.app" - config: oslist: linux description: Launch - executable: Devil's Dare.x86 -'279640': + executable: "Devil's Dare.x86" +"279640": installDir: Troma launch: - config: @@ -135877,9 +132545,9 @@ - config: oslist: windows description: Bonus Content - executable: BonerMaterial\\START.exe + executable: "BonerMaterial\\\\START.exe" type: option2 -'279720': +"279720": installDir: The I of the Dragon launch: - config: @@ -135896,7 +132564,7 @@ description: The I of The Dragon executable: RunGame type: default -'279800': +"279800": installDir: Grim Legends Song of the Dark Swan launch: - config: @@ -135904,12 +132572,12 @@ description: Launch executable: GrimLegends_SongOfTheDarkSwan.exe - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: GrimLegends_SongOfTheDarkSwan_i386 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: GrimLegends_SongOfTheDarkSwan_amd64 @@ -135917,7 +132585,7 @@ oslist: macos description: Launch executable: mac_steam.app/Contents/MacOS/mac_steam -'279900': +"279900": installDir: Soul Axiom launch: - config: @@ -135929,16 +132597,16 @@ description: Launch executable: SoulAxiom.app - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: SoulAxiom.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: SoulAxiom.x86_64 -'279920': +"279920": installDir: Infinity Runner launch: - config: @@ -135953,7 +132621,7 @@ oslist: linux description: Launch executable: Infinity Runner.x86 -'279940': +"279940": installDir: The Book of Unwritten Tales 2 launch: - config: @@ -135965,16 +132633,16 @@ description: Launch executable: Osx/BouT2.app - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: Linux/BouT2.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Linux/BouT2.x86_64 -'279990': +"279990": installDir: Bridge Constructor Playground launch: - config: @@ -135982,7 +132650,7 @@ description: Launch executable: BridgeConstructorPlayground.exe - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: BridgeConstructorPlayground.x86_64 @@ -135992,36 +132660,36 @@ description: Launch executable: Bridge_Constructor_Playground.app type: none -'280': +"280": installDir: Half-Life 2 launch: - - arguments: '-game hl1 -steam' + - arguments: "-game hl1 -steam" config: oslist: windows description: Launch executable: hl2.exe - - arguments: '-game hl1 -steam' + - arguments: "-game hl1 -steam" config: oslist: macos description: Launch executable: hl2.sh - - arguments: '-game hl1 -steam' + - arguments: "-game hl1 -steam" config: oslist: linux description: Launch executable: hl2.sh -'2800': +"2800": installDir: X2 - The Threat launch: - executable: x2.exe -'28000': +"28000": installDir: Kane & Lynch 2 - Dog Days launch: - executable: KL2.exe - - arguments: '-setup' - description: 'Setup Kane & Lynch 2: Dog Days' + - arguments: "-setup" + description: "Setup Kane & Lynch 2: Dog Days" executable: KL2.exe -'280010': +"280010": installDir: Gunjitsu launch: - config: @@ -136032,7 +132700,7 @@ oslist: macos description: Launch executable: Gunjitsu.app -'280040': +"280040": installDir: A Wizards Lizard launch: - config: @@ -136042,12 +132710,12 @@ - config: oslist: macos description: Launch - executable: A Wizard's Lizard.app + executable: "A Wizard's Lizard.app" - config: oslist: linux executable: nw type: default -'280140': +"280140": installDir: Millennium 1 launch: - config: @@ -136055,20 +132723,20 @@ description: Launch executable: Millennium.exe - config: - ownsdlc: '306100' + ownsdlc: "306100" description: View Walkthrough - executable: Guide\\Millennium1_Official_Walkthrough.pdf -'280160': + executable: "Guide\\\\Millennium1_Official_Walkthrough.pdf" +"280160": installDir: Aragami launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Aragami x64 executable: Aragami.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Aragami.x86_64 type: default @@ -136077,17 +132745,17 @@ executable: Aragami.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Aragami.x86 type: default - config: - osarch: '32' + osarch: "32" oslist: windows description: Aragami x86 executable: Aragami.exe type: default -'280180': +"280180": installDir: Hover launch: - config: @@ -136105,20 +132773,20 @@ description: Launch executable: hover.x86 type: default - - arguments: '-force-d3d9' + - arguments: "-force-d3d9" config: oslist: windows description: Mode DirectX 9 (Compatibility) executable: hover.exe type: option1 -'280200': +"280200": installDir: Eterium launch: - config: oslist: windows description: Launcher executable: EteriumLauncher.exe -'280220': +"280220": installDir: Creeper World 3 launch: - config: @@ -136133,7 +132801,7 @@ oslist: macos description: Launch executable: CW3.app -'280320': +"280320": installDir: Adventurer Manager launch: - config: @@ -136144,7 +132812,7 @@ oslist: macos description: Launch executable: Adventurer Manager.app -'280360': +"280360": installDir: Interstellaria launch: - config: @@ -136159,21 +132827,21 @@ oslist: linux description: Launch executable: Interstellaria.x86 -'280380': +"280380": installDir: Uprising44 launch: - config: oslist: windows description: Launch executable: Uprising44.exe -'280440': +"280440": installDir: MAV launch: - config: oslist: windows description: Launch executable: MAV.exe -'280460': +"280460": installDir: Pulstar launch: - config: @@ -136188,14 +132856,14 @@ oslist: linux description: Launch executable: Pulstar.x86 -'28050': +"28050": installDir: Deus Ex - Human Revolution launch: - executable: dxhr.exe - - arguments: '-setup' - description: 'Setup Deus Ex: Human Revolution' + - arguments: "-setup" + description: "Setup Deus Ex: Human Revolution" executable: dxhr.exe -'280500': +"280500": installDir: KRUNCH launch: - config: @@ -136206,7 +132874,7 @@ oslist: windows description: Launch executable: KRUNCH.exe -'280520': +"280520": installDir: Crea launch: - config: @@ -136221,7 +132889,7 @@ oslist: linux description: Launch executable: Crea -'280540': +"280540": installDir: GhostControlInc launch: - config: @@ -136233,78 +132901,74 @@ description: Launch executable: GhostControl.app - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: GhostControl.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: GhostControl.x86_64 type: none -'280560': +"280560": installDir: DanmakuUnlimited2 launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: DU2.exe -'280600': +"280600": installDir: BloodLust Shadowhunter launch: - config: oslist: windows description: Launch - description_loc: - english: Launch executable: bloodlust_start.bat type: none -'280620': +"280620": installDir: Fiesta Online launch: - - arguments: '-i 46.253.147.130 -p 9010' + - arguments: "-i 46.253.147.130 -p 9010" config: oslist: windows description: Launch - description_loc: - english: Launch executable: Fiesta.exe type: default -'280640': +"280640": installDir: Dark Shadows launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: Dark Shadows.exe -'280720': +"280720": installDir: ImagineEarth launch: - config: oslist: windows executable: ImagineEarth.exe -'280740': +"280740": installDir: Aperture Tag launch: - - arguments: '-game aperturetag -steam' + - arguments: "-game aperturetag -steam" config: oslist: windows description: Launch executable: portal2.exe - - arguments: '-game aperturetag -steam' + - arguments: "-game aperturetag -steam" config: oslist: macos description: Launch executable: portal2_osx - - arguments: '-game aperturetag -steam' + - arguments: "-game aperturetag -steam" config: oslist: linux description: Launch executable: portal2_linux -'280790': +"280790": installDir: Creativerse launch: - config: @@ -136315,7 +132979,7 @@ oslist: windows description: Launch executable: Creativerse.exe -'280830': +"280830": installDir: Foosball Street Edition launch: - config: @@ -136330,32 +132994,32 @@ oslist: macos description: Launch executable: Foosball Street Edition.app -'280850': +"280850": installDir: Dollhouse launch: - config: oslist: windows executable: Dollhouse.exe type: default -'280890': +"280890": installDir: GSaftermath launch: - config: oslist: windows description: Launch - executable: binaries\\win32\\udk.exe - workingdir: binaries\\win32 + executable: "binaries\\\\win32\\\\udk.exe" + workingdir: "binaries\\\\win32" - config: oslist: windows description: LaunchVR - executable: GhostShipaftermathVR\\binaries\\win32\\udk.exe - workingdir: GhostShipaftermathVR\\binaries\\win32 + executable: "GhostShipaftermathVR\\\\binaries\\\\win32\\\\udk.exe" + workingdir: "GhostShipaftermathVR\\\\binaries\\\\win32" - config: oslist: windows description: Launch HassleFree - executable: GSAHassleFree\\binaries\\win32\\udk.exe - workingdir: GSAHassleFree\\binaries\\win32 -'280910': + executable: "GSAHassleFree\\\\binaries\\\\win32\\\\udk.exe" + workingdir: "GSAHassleFree\\\\binaries\\\\win32" +"280910": installDir: TEC3001 launch: - config: @@ -136370,14 +133034,14 @@ oslist: macos description: Launch executable: TEC3001.app -'280930': +"280930": installDir: Battlepillars launch: - config: oslist: windows description: Launch executable: Battlepillars.Steam.exe -'2810': +"2810": installDir: X3 - Reunion launch: - config: @@ -136392,7 +133056,7 @@ oslist: macos description: X3 - Reunion.app/Contents/MacOS/X3 - Reunion executable: X3 - Reunion.app -'281060': +"281060": installDir: Reversion - The Meeting launch: - config: @@ -136404,11 +133068,11 @@ description: Launch executable: reversion - config: - osarch: '64' + osarch: "64" oslist: macos description: Launch executable: Reversion2.app/Contents/MacOS/reversion -'281080': +"281080": installDir: Reversion - The Return launch: - config: @@ -136416,7 +133080,7 @@ description: Launch executable: Reversion3.exe type: default -'281200': +"281200": installDir: A Boy and His Blob launch: - config: @@ -136428,16 +133092,16 @@ description: Launch executable: A Boy and His Blob.app - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Blob - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: Blob32 -'281220': +"281220": installDir: Blood Rayne Betrayal launch: - config: @@ -136445,115 +133109,115 @@ description: Launch executable: bin/bloodrayne.exe workingdir: bin -'281240': +"281240": installDir: Adventure Chronicles The Search For Lost Treasure launch: - description: Launch executable: AdventureChronicles.exe -'281260': +"281260": installDir: Desert Gunner launch: - description: Launch executable: dgunner.exe type: none -'281280': +"281280": installDir: Mashed launch: - description: Launch executable: MASHED.exe -'281350': +"281350": installDir: US and THEM launch: - description: Launch executable: UAT.exe -'281370': +"281370": installDir: Real Horror Stories Expansion launch: - description: Launch executable: Real Horror Stories.exe -'281390': +"281390": installDir: ORB launch: - description: Launch executable: orb.exe -'281410': +"281410": installDir: Ubersoldier II launch: - description: Launch executable: xtend.exe -'281430': +"281430": installDir: Clans launch: - description: Launch executable: clans.exe -'281450': +"281450": installDir: Disciples Sacred Lands Gold launch: - config: oslist: windows description: Launch executable: start.bat -'281560': +"281560": installDir: DWARFS launch: - description: Launch executable: bin/DWARFS.exe -'281580': +"281580": installDir: Wings Over Europe launch: - description: Launch executable: WOE.exe -'281610': +"281610": installDir: Deserts of Kharak launch: - - arguments: '--steam' + - arguments: "--steam" config: - osarch: '32' + osarch: "32" oslist: windows description: Deserts of Kharak (32-bit) executable: DesertsOfKharak32.exe type: none - - arguments: '--steam' + - arguments: "--steam" config: - osarch: '64' + osarch: "64" oslist: windows description: Deserts of Kharak (64-bit) executable: DesertsOfKharak64.exe type: none - config: oslist: windows - ownsdlc: '433240' + ownsdlc: "433240" description: Launch Expedition Guide - executable: TechnicalManual\\DoK_Manual.exe + executable: "TechnicalManual\\\\DoK_Manual.exe" type: none - - arguments: '-force-d3d9' + - arguments: "-force-d3d9" config: betakey: qa_testing - osarch: '64' + osarch: "64" oslist: windows - description: 'DoK (64bit, d3d9)' + description: "DoK (64bit, d3d9)" executable: DesertsOfKharak64.exe type: none - - arguments: '-force-d3d9' + - arguments: "-force-d3d9" config: betakey: qa_testing - osarch: '32' + osarch: "32" oslist: windows - description: 'DoK (32bit, d3d9)' + description: "DoK (32bit, d3d9)" executable: DesertsOfKharak32.exe type: none - config: oslist: macos description: Deserts of Kharak - executable: DesertsOfKharak.app\\Contents\\MacOS\\DesertsOfKharak + executable: "DesertsOfKharak.app\\\\Contents\\\\MacOS\\\\DesertsOfKharak" type: none - config: oslist: macos - ownsdlc: '433240' + ownsdlc: "433240" description: Launch Expedition Guide executable: DoKManual.app type: none -'281640': +"281640": installDir: tbs2 launch: - config: @@ -136566,14 +133230,14 @@ description: Launch executable: win32/The Banner Saga 2.exe type: none -'281690': +"281690": installDir: The Legend of Korra launch: - config: oslist: windows description: Launch executable: LoK.exe -'281750': +"281750": installDir: Munin launch: - config: @@ -136588,14 +133252,14 @@ oslist: macos description: Launch executable: Munin.app -'281820': +"281820": installDir: Explodemon launch: - config: oslist: windows description: Launch executable: explodemon.exe -'281840': +"281840": installDir: 4PM launch: - config: @@ -136606,14 +133270,14 @@ oslist: macos description: Launch executable: 4PM.app -'281860': +"281860": installDir: RefleX launch: - executable: RefleX.exe type: default - executable: RefleXConfig.exe type: config -'281920': +"281920": installDir: Splatter launch: - config: @@ -136628,14 +133292,14 @@ oslist: macos description: Launch executable: Splatter_OSX -'281940': +"281940": installDir: WoolfeTRHD launch: - config: oslist: windows description: Launcher executable: WoolfeLauncher.exe -'281990': +"281990": installDir: Stellaris launch: - config: @@ -136654,64 +133318,46 @@ description: Do not use for versions prior to 2.4.0 executable: dowser type: default - - arguments: '-- ' + - arguments: "-- " config: - betakey: >- - 1.0.3 1.1.0 1.2.5 1.3.2 1.4.1 1.5.1 1.6.2 1.8.3 1.9.1 2.0.5 2.1.3 2.2.7 2.3.2 gwen_test perf_test 2.3.3 - crossplay_rollback + betakey: 1.0.3 1.1.0 1.2.5 1.3.2 1.4.1 1.5.1 1.6.2 1.8.3 1.9.1 2.0.5 2.1.3 2.2.7 2.3.2 gwen_test perf_test 2.3.3 crossplay_rollback oslist: windows description: Only for versions prior to 2.4.0 executable: stellaris.exe type: option1 - - arguments: '-- ' + - arguments: "-- " config: - betakey: >- - 1.0.3 1.1.0 1.2.5 1.3.2 1.4.1 1.5.1 1.6.2 1.8.3 1.9.1 2.0.5 2.1.3 2.2.7 2.3.2 gwen_test perf_test 2.3.3 - crossplay_rollback + betakey: 1.0.3 1.1.0 1.2.5 1.3.2 1.4.1 1.5.1 1.6.2 1.8.3 1.9.1 2.0.5 2.1.3 2.2.7 2.3.2 gwen_test perf_test 2.3.3 crossplay_rollback oslist: linux description: Only for versions prior to 2.4.0 executable: stellaris type: option1 - - arguments: '-- ' + - arguments: "-- " config: - betakey: >- - 1.0.3 1.1.0 1.2.5 1.3.2 1.4.1 1.5.1 1.6.2 1.8.3 1.9.1 2.0.5 2.1.3 2.2.7 2.3.2 gwen_test perf_test 2.3.3 - crossplay_rollback + betakey: 1.0.3 1.1.0 1.2.5 1.3.2 1.4.1 1.5.1 1.6.2 1.8.3 1.9.1 2.0.5 2.1.3 2.2.7 2.3.2 gwen_test perf_test 2.3.3 crossplay_rollback oslist: macos description: Only for versions prior to 2.4.0 executable: stellaris.app type: default - config: - betakey: >- - atlantis_rising atlantis_rising_ij pdxcon_general pdxcon_press stellaris_launcher stellaris_test - crossplay_rollback 2.4.0 2.4.1 2.5.0 2.5.1 2.6.0 2.6.1 2.6.2 2.6.3 2.7.2 2.8.1 3.0.2 3.0.4 + betakey: atlantis_rising atlantis_rising_ij pdxcon_general pdxcon_press stellaris_launcher stellaris_test crossplay_rollback 2.4.0 2.4.1 2.5.0 2.5.1 2.6.0 2.6.1 2.6.2 2.6.3 2.7.2 2.8.1 3.0.2 3.0.4 oslist: windows description: Stellaris with new launcher - description_loc: - english: Stellaris with new launcher executable: dowser.exe type: option1 - config: - betakey: >- - atlantis_rising atlantis_rising_ij pdxcon_general pdxcon_press stellaris_launcher stellaris_test - crossplay_rollback 2.4.0 2.4.1 2.5.0 2.5.1 2.6.0 2.6.1 2.6.2 2.6.3 2.7.2 2.8.1 3.0.2 3.0.4 + betakey: atlantis_rising atlantis_rising_ij pdxcon_general pdxcon_press stellaris_launcher stellaris_test crossplay_rollback 2.4.0 2.4.1 2.5.0 2.5.1 2.6.0 2.6.1 2.6.2 2.6.3 2.7.2 2.8.1 3.0.2 3.0.4 oslist: linux description: Stellaris with new launcher - description_loc: - english: Stellaris with new launcher executable: dowser type: option1 - config: - betakey: >- - atlantis_rising atlantis_rising_ij pdxcon_general pdxcon_press stellaris_launcher stellaris_test - crossplay_rollback 2.4.0 2.4.1 2.5.0 2.5.1 2.6.0 2.6.1 2.6.2 2.6.3 2.7.2 2.8.1 3.0.2 3.0.4 + betakey: atlantis_rising atlantis_rising_ij pdxcon_general pdxcon_press stellaris_launcher stellaris_test crossplay_rollback 2.4.0 2.4.1 2.5.0 2.5.1 2.6.0 2.6.1 2.6.2 2.6.3 2.7.2 2.8.1 3.0.2 3.0.4 oslist: macos description: Stellaris with new launcher - description_loc: - english: Stellaris with new launcher executable: dowser type: option1 -'2820': +"2820": installDir: X3 Terran Conflict launch: - config: @@ -136725,53 +133371,53 @@ oslist: macos description: Launch newest version executable: X3 - Terran Conflict.app -'282010': +"282010": installDir: Carmageddon1 launch: - - arguments: ' -conf ..\\dosboxCARMA.conf -conf ..\\dosboxCARMA_single.conf -noconsole -c exit' + - arguments: " -conf ..\\\\dosboxCARMA.conf -conf ..\\\\dosboxCARMA_single.conf -noconsole -c exit" config: oslist: windows description: Carmageddon - executable: DOSBOX\\dosbox.exe - workingdir: DOSBOX\\ - - arguments: '-conf ..\\dosboxCARSPLAT.conf -conf ..\\dosboxCARSPLAT_single.conf -noconsole -c exit' + executable: "DOSBOX\\\\dosbox.exe" + workingdir: "DOSBOX\\\\" + - arguments: "-conf ..\\\\dosboxCARSPLAT.conf -conf ..\\\\dosboxCARSPLAT_single.conf -noconsole -c exit" config: oslist: windows description: Launch Carmageddon Splat Pack - executable: DOSBOX\\dosbox.exe - workingdir: DOSBOX\\ - - arguments: '-conf ..\\dosboxCARSPLAT.conf -conf ..\\dosboxCARSPLAT_server.conf -noconsole -c exit' + executable: "DOSBOX\\\\dosbox.exe" + workingdir: "DOSBOX\\\\" + - arguments: "-conf ..\\\\dosboxCARSPLAT.conf -conf ..\\\\dosboxCARSPLAT_server.conf -noconsole -c exit" config: oslist: windows description: Launch Carmageddon Splat Pack Multiplayer Host - executable: DOSBOX\\dosbox.exe - workingdir: DOSBOX\\ - - arguments: '-conf ..\\dosboxCARSPLAT.conf -conf ..\\dosboxCARSPLAT_client.conf -noconsole -c exit' + executable: "DOSBOX\\\\dosbox.exe" + workingdir: "DOSBOX\\\\" + - arguments: "-conf ..\\\\dosboxCARSPLAT.conf -conf ..\\\\dosboxCARSPLAT_client.conf -noconsole -c exit" config: oslist: windows description: Launch Carmageddon Splat Pack Multiplayer Client - executable: DOSBOX\\dosbox.exe - workingdir: DOSBOX\\ - - arguments: '-conf ..\\dosboxCARMA.conf -conf ..\\dosboxCARMA_server.conf -noconsole -c exit' + executable: "DOSBOX\\\\dosbox.exe" + workingdir: "DOSBOX\\\\" + - arguments: "-conf ..\\\\dosboxCARMA.conf -conf ..\\\\dosboxCARMA_server.conf -noconsole -c exit" config: oslist: windows description: Launch Carmageddon Multiplayer Host - executable: DOSBOX\\dosbox.exe - workingdir: DOSBOX\\ - - arguments: '-conf ..\\dosboxCARMA.conf -conf ..\\dosboxCARMA_client.conf -noconsole -c exit' + executable: "DOSBOX\\\\dosbox.exe" + workingdir: "DOSBOX\\\\" + - arguments: "-conf ..\\\\dosboxCARMA.conf -conf ..\\\\dosboxCARMA_client.conf -noconsole -c exit" config: oslist: windows description: Launch Carmageddon Multiplayer Client - executable: DOSBOX\\dosbox.exe - workingdir: DOSBOX\\ -'282030': + executable: "DOSBOX\\\\dosbox.exe" + workingdir: "DOSBOX\\\\" +"282030": installDir: Carmageddon2 launch: - config: oslist: windows description: Carmageddon 2 executable: CARMA2_HW.EXE -'282050': +"282050": installDir: MX vs ATV Supercross Encore Edition launch: - config: @@ -136793,7 +133439,7 @@ description: Launch MX vs. ATV Supercross Encore Workshop Edition executable: MXStorm_PC_UGC.exe type: none -'282070': +"282070": installDir: This War of Mine launch: - config: @@ -136814,55 +133460,55 @@ description: Tools executable: Storyteller.exe type: none -'282100': +"282100": installDir: Fearless Fantasy launch: - description: Launch executable: FearlessFantasy.exe -'282140': +"282140": installDir: SOMA launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch Game executable: Soma.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Soma.bin.x86_64 type: default - config: - osarch: '64' + osarch: "64" oslist: macos description: Launch executable: Soma.app type: default - config: - osarch: '64' + osarch: "64" oslist: windows description: Mod executable: ModLauncher.exe type: option1 - config: - osarch: '64' + osarch: "64" oslist: linux description: Mod executable: ModLauncher.bin.x86_64 type: option1 - config: - osarch: '64' + osarch: "64" oslist: macos description: Mod executable: ModLauncher.app type: option1 -'282210': - installDir: Sid Meier's Starships +"282210": + installDir: "Sid Meier's Starships" launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch 32-bit executable: Starships.exe @@ -136871,17 +133517,17 @@ description: Launch executable: Starships.app - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch 64-bit executable: Starships64.exe -'282350': +"282350": installDir: NBA2K15 launch: - description: Default executable: nba2k15.exe -'282370': {} -'282400': +"282370": {} +"282400": installDir: SuperPower 2 launch: - config: @@ -136895,34 +133541,34 @@ - config: oslist: windows description: Launch Editor - executable: Extras\\GLEditor.exe -'282440': + executable: "Extras\\\\GLEditor.exe" +"282440": installDir: Quake Live launch: - description: Launch executable: quakelive_steam.exe -'282530': +"282530": installDir: Castlevania Lords of Shadow - Mirror of Fate HD launch: - config: oslist: windows description: Launch executable: CMOF.exe - - arguments: '-safemode' + - arguments: "-safemode" config: oslist: windows description: Safe Mode executable: CMOF.exe -'282560': +"282560": installDir: RollerCoaster Tycoon World launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: RollerCoaster Tycoon World.exe type: none -'282590': +"282590": installDir: Star Ruler 2 launch: - config: @@ -136933,11 +133579,11 @@ oslist: linux description: Launch executable: StarRuler2.sh -'282620': +"282620": installDir: The Battle of Sol launch: - - executable: Binaries\\Win32\\TheBattleOfSol.exe -'282640': + - executable: "Binaries\\\\Win32\\\\TheBattleOfSol.exe" +"282640": installDir: Lost Orbit launch: - config: @@ -136945,12 +133591,12 @@ description: Launch executable: LOSTORBIT.exe - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: LOSTORBIT.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: LOSTORBIT.x86_64 @@ -136958,10 +133604,10 @@ oslist: macos description: Launch executable: LOSTORBIT.app -'282680': +"282680": installDir: Warring States launch: - - arguments: '-window-mode exclusive' + - arguments: "-window-mode exclusive" config: oslist: windows description: Launch @@ -136975,20 +133621,20 @@ oslist: linux description: Launch executable: WarringStates - - arguments: '-window-mode borderless' + - arguments: "-window-mode borderless" config: oslist: windows description: Play Warring States - Borderless Window Mode executable: WarringStates.exe type: none -'282740': +"282740": installDir: OrganicPanic launch: - config: oslist: windows description: Launch executable: organicpanic.exe -'282760': +"282760": installDir: Circuits launch: - config: @@ -137015,8 +133661,8 @@ oslist: linux description: Circuits Composer executable: Composer/Composer.x86 -'282780': - installDir: Stick 'Em Up 2 +"282780": + installDir: "Stick 'Em Up 2" launch: - config: oslist: windows @@ -137025,41 +133671,39 @@ - config: oslist: macos description: Launch - executable: Stick 'Em Up 2.app + executable: "Stick 'Em Up 2.app" - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: SEU2.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: SEU2.x86_64 -'282800': +"282800": installDir: 100 Orange Juice launch: - config: - osarch: '64' + osarch: "64" description: Launch - description_loc: - english: Launch executable: 100orange.exe type: none - config: - osarch: '32' + osarch: "32" executable: 100orange_x86.exe type: none nameLocalized: japanese: 100%おれんじじゅ~すっ! -'282860': +"282860": installDir: Masterspace launch: - config: oslist: windows description: Launch executable: Masterspace.exe -'282880': +"282880": installDir: FaeVerseAlchemy launch: - config: @@ -137074,7 +133718,7 @@ oslist: linux description: Launch executable: FaeVerseAlchemy.sh -'282900': +"282900": installDir: Neptunia Rebirth1 launch: - config: @@ -137084,82 +133728,79 @@ nameLocalized: japanese: 超次次元ゲイム ネプテューヌRe;Birth1 tchinese: 超次次元遊戲戰機少女重生1 -'282960': +"282960": installDir: Atajrubah launch: - config: - osarch: '64' + osarch: "64" oslist: windows - vrmode: '0' description: Win64 - executable: \\Atajrubah.exe + executable: "\\\\Atajrubah.exe" - config: - osarch: '32' + osarch: "32" oslist: windows - vrmode: '0' description: Win32 - executable: \\Atajrubah.exe + executable: "\\\\Atajrubah.exe" - config: oslist: linux - vrmode: '0' description: Launch - executable: \\Binaries\\Linux\\Atajrubah -'283000': + executable: "\\\\Binaries\\\\Linux\\\\Atajrubah" +"283000": installDir: StrategicWarInEurope launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: setup_swie.exe -'283020': +"283020": installDir: FallWeiss launch: - config: oslist: windows description: Launch executable: fw_setup.exe -'283040': +"283040": installDir: Paper Dungeons launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: Paper Dungeons.exe - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Paper Dungeons.x86_64 - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: Paper Dungeons.x86 - config: - osarch: '32' + osarch: "32" oslist: macos description: Launch executable: Paper Dungeons.app - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: Paper Dungeons 64.exe - config: - osarch: '64' + osarch: "64" oslist: macos description: Launch executable: Paper Dungeons 64.app -'283060': +"283060": installDir: Lucent Heart launch: - arguments: /steam description: Launch executable: LucentPatch.exe type: none -'283080': +"283080": installDir: SuperChibiKnight launch: - config: @@ -137174,14 +133815,14 @@ oslist: linux description: Launch executable: run.sh -'283100': +"283100": installDir: Colonies Online launch: - config: oslist: windows description: Launch executable: launcher.exe -'283160': +"283160": installDir: DyingSun launch: - config: @@ -137189,26 +133830,26 @@ description: Play House of the Dying Sun (DirectX 11.0) executable: dyingsun.exe type: default - - arguments: '-force-d3d9' + - arguments: "-force-d3d9" config: oslist: windows description: Play House of the Dying Sun (DirectX 9.0) executable: dyingsun.exe type: none - - arguments: '-force-d3d11 -vrmode openvr' + - arguments: "-force-d3d11 -vrmode openvr" config: oslist: windows description: House of the Dying Sun executable: dyingsun.exe type: vr -'283180': +"283180": installDir: TheSamaritanParadox launch: - config: oslist: windows description: Launch executable: samaritan.exe - - arguments: '--setup' + - arguments: "--setup" config: oslist: windows description: Setup @@ -137216,8 +133857,8 @@ - config: oslist: linux description: Launch - executable: ./Samaritan -'283230': + executable: "./Samaritan" +"283230": installDir: Spoiler Alert launch: - config: @@ -137231,20 +133872,20 @@ - config: oslist: linux description: Launch - executable: Spoiler_Alert\\runner + executable: "Spoiler_Alert\\\\runner" type: none -'283270': +"283270": installDir: Jagged Alliance Gold launch: - config: oslist: windows description: Jagged Alliance - executable: Jagged Alliance\\run.bat + executable: "Jagged Alliance\\\\run.bat" workingdir: Jagged Alliance - config: oslist: windows description: Jagged Alliance Deadly Games - executable: Jagged Alliance Deadly Games\\run.bat + executable: "Jagged Alliance Deadly Games\\\\run.bat" workingdir: Jagged Alliance Deadly Games - config: oslist: linux @@ -137262,25 +133903,25 @@ oslist: macos description: Jagged Alliance Deadly Games executable: Jagged Alliance Deadly Games/run.sh -'283290': +"283290": installDir: Nosferatu The Wrath of Malachi launch: - description: Launch executable: Nosferatu.exe -'283310': +"283310": installDir: Soulbringer launch: - description: Launch Game executable: Soulbringer.exe - description: Choose Language executable: SBLang.exe -'283330': +"283330": installDir: Desert Thunder launch: - description: Launch executable: system/DT.exe workingdir: system -'283350': +"283350": installDir: Eurofighter Typhoon launch: - config: @@ -137289,14 +133930,14 @@ executable: Typhoon.exe - description: Configure Settings executable: config3dr2000.exe -'283370': +"283370": installDir: Marine Sharpshooter 2 Jungle Warfare launch: - config: oslist: windows description: Launch executable: MS2.exe -'283390': +"283390": installDir: Incoming + Incoming Forces launch: - description: Play Incoming Forces @@ -137305,90 +133946,90 @@ - description: Play Incoming executable: Incoming/incoming.exe workingdir: Incoming -'283410': +"283410": installDir: CT Special Forces launch: - description: Launch executable: CT Special Forces.exe -'283430': +"283430": installDir: Litil Divil launch: - - arguments: '-conf dosboxLilDevil.conf' + - arguments: "-conf dosboxLilDevil.conf" description: Launch executable: dosbox.exe -'283450': +"283450": installDir: Zooloretto launch: - config: oslist: windows description: Launch executable: Zooloretto.exe -'283470': +"283470": installDir: The Secret Of Hildegards launch: - config: oslist: windows description: Launch executable: Hildegards.exe -'283490': +"283490": installDir: Ihf Handball Challenge 12 launch: - config: oslist: windows description: Launch executable: IHF_HC12.exe -'283560': +"283560": installDir: Munich Bus Simulator launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch - executable: Bin32\\CBS2.exe + executable: "Bin32\\\\CBS2.exe" workingdir: Bin32 - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch - executable: Bin64\\CBS2.exe + executable: "Bin64\\\\CBS2.exe" workingdir: Bin64 -'283580': +"283580": installDir: New York Bus Simulator launch: - config: oslist: windows description: Launch executable: CBS.exe -'283600': +"283600": installDir: World of Subways 2 – Berlin Line 7 launch: - config: oslist: windows description: Launch executable: WoS.exe -'283620': +"283620": installDir: World of Subways 3 – London Underground Circle Line launch: - description: Launch - executable: Bin\\WOS3.exe + executable: "Bin\\\\WOS3.exe" workingdir: Bin -'283640': +"283640": installDir: Salt and Sanctuary launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: salt.exe - config: oslist: linux - executable: ./SaltAndSanctuary + executable: "./SaltAndSanctuary" type: none - config: oslist: macos executable: Salt.app/Contents/MacOS/SaltAndSanctuary type: none -'283660': +"283660": installDir: RabbitHole3D launch: - config: @@ -137400,66 +134041,66 @@ description: Launch executable: RabbitHole3DMacSteam.app - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: RabbitHole3DForLinux.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: RabbitHole3DForLinux.x86_64 type: none -'283680': +"283680": installDir: Astebreed launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: Astebreed.exe -'283820': +"283820": installDir: Kamui launch: - executable: Kamui.exe type: default - executable: config.exe type: config -'283840': +"283840": installDir: Alltynex Second launch: - executable: alltynex2nd.exe type: default - executable: config.exe type: config -'283880': - installDir: Heroine's Quest +"283880": + installDir: "Heroine's Quest" launch: - - arguments: '-windowed' + - arguments: "-windowed" config: oslist: windows - executable: Heroine's Quest.exe + executable: "Heroine's Quest.exe" type: default - - arguments: '-fullscreen' + - arguments: "-fullscreen" config: oslist: windows description: in full screen mode - executable: Heroine's Quest.exe + executable: "Heroine's Quest.exe" type: option1 - - executable: Heroine's Quest manual English.pdf + - executable: "Heroine's Quest manual English.pdf" type: manual - - arguments: '--setup' + - arguments: "--setup" config: oslist: windows - executable: Heroine's Quest.exe + executable: "Heroine's Quest.exe" type: config - - arguments: '-windowed' + - arguments: "-windowed" config: oslist: linux executable: Game.sh type: default - - arguments: '-fullscreen' + - arguments: "-fullscreen" config: oslist: linux description: in full screen mode @@ -137468,198 +134109,198 @@ - arguments: alpha4.ags config: oslist: windows - ownsdlc: '769130' + ownsdlc: "769130" description: Play Early Alpha Build - executable: Heroine's Quest.exe + executable: "Heroine's Quest.exe" type: none - config: - ownsdlc: '769130' + ownsdlc: "769130" description: Show Fornsigtuna Movie executable: Fornsigtuna.avi type: none - config: - ownsdlc: '769130' + ownsdlc: "769130" description: Show Developer Notes - executable: Heroine's Quest Developer Notes.pdf + executable: "Heroine's Quest Developer Notes.pdf" type: none - config: oslist: linux - ownsdlc: '769130' + ownsdlc: "769130" description: Play Early Alpha Build executable: alpha4.sh type: none - config: - ownsdlc: '769130' + ownsdlc: "769130" description: Play Soundtrack executable: Soundtrack/playlist.m3u type: none workingdir: Soundtrack - config: oslist: macos - executable: Heroine's Quest.app + executable: "Heroine's Quest.app" type: default -'283920': +"283920": installDir: Putt-Putt 1 launch: - - arguments: '--no-console -c scummvm-puttputtjoinstheparade.ini puttputt' + - arguments: "--no-console -c scummvm-puttputtjoinstheparade.ini puttputt" config: oslist: windows description: Launch - executable: ScummVM_Windows\\scummvm.exe - workingdir: ScummVM_Windows\\ - - arguments: '-c scummvm-puttputtjoinstheparade.ini puttputt' + executable: "ScummVM_Windows\\\\scummvm.exe" + workingdir: "ScummVM_Windows\\\\" + - arguments: "-c scummvm-puttputtjoinstheparade.ini puttputt" config: oslist: macos description: Launch - executable: ScummVM_Mac\\ScummVM.app\\Contents\\MacOS\\scummvm - workingdir: ScummVM_Mac\\ + executable: "ScummVM_Mac\\\\ScummVM.app\\\\Contents\\\\MacOS\\\\scummvm" + workingdir: "ScummVM_Mac\\\\" - config: oslist: linux description: Launch - executable: ScummVM_Linux\\launch_puttputtjoinstheparade.sh - workingdir: ScummVM_Linux\\ -'283940': + executable: "ScummVM_Linux\\\\launch_puttputtjoinstheparade.sh" + workingdir: "ScummVM_Linux\\\\" +"283940": installDir: Freddi Fish 1 - Kelp Seeds launch: - - arguments: '--no-console -c scummvm-freddifish1-opengl.ini freddi' + - arguments: "--no-console -c scummvm-freddifish1-opengl.ini freddi" config: oslist: windows - executable: ScummVM_Windows\\scummvm.exe + executable: "ScummVM_Windows\\\\scummvm.exe" type: default - workingdir: ScummVM_Windows\\ - - arguments: '--no-console -c scummvm-freddifish1-safe.ini freddi' + workingdir: "ScummVM_Windows\\\\" + - arguments: "--no-console -c scummvm-freddifish1-safe.ini freddi" config: oslist: windows - description: Play in \"Safe Graphics\" Mode - executable: ScummVM_Windows\\scummvm.exe + description: "Play in \\\"Safe Graphics\\\" Mode" + executable: "ScummVM_Windows\\\\scummvm.exe" type: none - workingdir: ScummVM_Windows\\ - - arguments: '-c scummvm-freddifish1-opengl.ini freddi' + workingdir: "ScummVM_Windows\\\\" + - arguments: "-c scummvm-freddifish1-opengl.ini freddi" config: oslist: macos - executable: ScummVM_Mac\\ScummVM.app\\Contents\\MacOS\\scummvm + executable: "ScummVM_Mac\\\\ScummVM.app\\\\Contents\\\\MacOS\\\\scummvm" type: default - workingdir: ScummVM_Mac\\ - - arguments: '-c scummvm-freddifish1-safe.ini freddi' + workingdir: "ScummVM_Mac\\\\" + - arguments: "-c scummvm-freddifish1-safe.ini freddi" config: oslist: macos - description: Play in \"Safe Graphics\" Mode - executable: ScummVM_Mac\\ScummVM.app\\Contents\\MacOS\\scummvm + description: "Play in \\\"Safe Graphics\\\" Mode" + executable: "ScummVM_Mac\\\\ScummVM.app\\\\Contents\\\\MacOS\\\\scummvm" type: none - workingdir: ScummVM_Mac\\ + workingdir: "ScummVM_Mac\\\\" - config: - osarch: '64' + osarch: "64" oslist: linux - executable: ScummVM_Linux\\launch_freddifish1_opengl.sh + executable: "ScummVM_Linux\\\\launch_freddifish1_opengl.sh" type: default - workingdir: ScummVM_Linux\\ + workingdir: "ScummVM_Linux\\\\" - config: - osarch: '64' + osarch: "64" oslist: linux - description: Play in \"Safe Graphics\" Mode - executable: ScummVM_Linux\\launch_freddifish1_safe.sh + description: "Play in \\\"Safe Graphics\\\" Mode" + executable: "ScummVM_Linux\\\\launch_freddifish1_safe.sh" type: none - workingdir: ScummVM_Linux\\ -'283960': + workingdir: "ScummVM_Linux\\\\" +"283960": installDir: Pajama Sam 1 launch: - - arguments: '--no-console -c scummvm-pajamasam1.ini pajama' + - arguments: "--no-console -c scummvm-pajamasam1.ini pajama" config: oslist: windows description: Launch - executable: ScummVM_Windows\\scummvm.exe - workingdir: ScummVM_Windows\\ - - arguments: '-c scummvm-pajamasam1.ini pajama' + executable: "ScummVM_Windows\\\\scummvm.exe" + workingdir: "ScummVM_Windows\\\\" + - arguments: "-c scummvm-pajamasam1.ini pajama" config: oslist: macos description: Launch - executable: ScummVM_Mac\\ScummVM.app\\Contents\\MacOS\\scummvm - workingdir: ScummVM_Mac\\ + executable: "ScummVM_Mac\\\\ScummVM.app\\\\Contents\\\\MacOS\\\\scummvm" + workingdir: "ScummVM_Mac\\\\" - config: oslist: linux description: Launch - executable: ScummVM_Linux\\launch_pajamasam1.sh - workingdir: ScummVM_Linux\\ -'283980': + executable: "ScummVM_Linux\\\\launch_pajamasam1.sh" + workingdir: "ScummVM_Linux\\\\" +"283980": installDir: Spy Fox 1 launch: - - arguments: '--no-console -c scummvm-spyfox1.ini spyfox' + - arguments: "--no-console -c scummvm-spyfox1.ini spyfox" config: oslist: windows description: Launch - executable: ScummVM_Windows\\scummvm.exe - workingdir: ScummVM_Windows\\ - - arguments: '-c scummvm-spyfox1.ini spyfox' + executable: "ScummVM_Windows\\\\scummvm.exe" + workingdir: "ScummVM_Windows\\\\" + - arguments: "-c scummvm-spyfox1.ini spyfox" config: oslist: macos description: Launch - executable: ScummVM_Mac\\ScummVM.app\\Contents\\MacOS\\scummvm - workingdir: ScummVM_Mac\\ + executable: "ScummVM_Mac\\\\ScummVM.app\\\\Contents\\\\MacOS\\\\scummvm" + workingdir: "ScummVM_Mac\\\\" - config: oslist: linux description: Launch - executable: ScummVM_Linux\\launch_spyfox1.sh - workingdir: ScummVM_Linux\\ -'2840': + executable: "ScummVM_Linux\\\\launch_spyfox1.sh" + workingdir: "ScummVM_Linux\\\\" +"2840": installDir: X Beyond the Frontier launch: - executable: runme.exe -'284000': +"284000": installDir: Putt-Putt and Peps Balloon-o-Rama launch: - - arguments: '--no-console -c scummvm-puttputtballoonorama.ini puttballoon' + - arguments: "--no-console -c scummvm-puttputtballoonorama.ini puttballoon" config: oslist: windows description: Launch - executable: ScummVM_Windows\\scummvm.exe - workingdir: ScummVM_Windows\\ - - arguments: '-c scummvm-puttputtballoonorama.ini puttballoon' + executable: "ScummVM_Windows\\\\scummvm.exe" + workingdir: "ScummVM_Windows\\\\" + - arguments: "-c scummvm-puttputtballoonorama.ini puttballoon" config: oslist: macos description: Launch - executable: ScummVM_Mac\\ScummVM.app\\Contents\\MacOS\\scummvm - workingdir: ScummVM_Mac\\ + executable: "ScummVM_Mac\\\\ScummVM.app\\\\Contents\\\\MacOS\\\\scummvm" + workingdir: "ScummVM_Mac\\\\" - config: oslist: linux description: Launch - executable: ScummVM_Linux\\launch_puttputtballoonorama.sh - workingdir: ScummVM_Linux\\ -'284020': + executable: "ScummVM_Linux\\\\launch_puttputtballoonorama.sh" + workingdir: "ScummVM_Linux\\\\" +"284020": installDir: Freddi Fish and Luthers Maze Madness launch: - - arguments: '--no-console -c scummvm-freddimazemadness.ini freddimazemadness' + - arguments: "--no-console -c scummvm-freddimazemadness.ini freddimazemadness" config: oslist: windows description: Launch - executable: ScummVM_Windows\\scummvm.exe - workingdir: ScummVM_Windows\\ - - arguments: '-c scummvm-freddimazemadness.ini freddimazemadness' + executable: "ScummVM_Windows\\\\scummvm.exe" + workingdir: "ScummVM_Windows\\\\" + - arguments: "-c scummvm-freddimazemadness.ini freddimazemadness" config: oslist: macos description: Launch - executable: ScummVM_Mac\\ScummVM.app\\Contents\\MacOS\\scummvm - workingdir: ScummVM_Mac\\ + executable: "ScummVM_Mac\\\\ScummVM.app\\\\Contents\\\\MacOS\\\\scummvm" + workingdir: "ScummVM_Mac\\\\" - config: oslist: linux description: Launch - executable: ScummVM_Linux\\launch_freddimazemadness.sh - workingdir: ScummVM_Linux\\ -'284050': + executable: "ScummVM_Linux\\\\launch_freddimazemadness.sh" + workingdir: "ScummVM_Linux\\\\" +"284050": installDir: Sanitarium launch: - config: oslist: windows description: Launch executable: Asylum.exe -'284080': {} -'284100': +"284080": {} +"284100": installDir: Unclaimed World launch: - config: oslist: windows description: Launch executable: UnclaimedWorld.exe -'284140': +"284140": installDir: MajesticNights launch: - config: @@ -137674,7 +134315,7 @@ oslist: linux description: Launch executable: MajesticNights -'284160': +"284160": installDir: BeamNG.drive launch: - config: @@ -137682,33 +134323,33 @@ description: Launch executable: BeamNG.drive.exe type: default -'284180': +"284180": installDir: Magicians and Looters launch: - description: Launch executable: mal.exe -'284200': +"284200": installDir: RobotRescueRevolution launch: - config: oslist: windows description: Launch executable: RobotRescue3_final.exe -'284220': +"284220": installDir: Diadra Empty launch: - description: Launch executable: DiadraEmpty.exe -'284240': +"284240": installDir: Maize launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch - executable: Maize\\Binaries\\Win64\\Maize.exe + executable: "Maize\\\\Binaries\\\\Win64\\\\Maize.exe" type: default -'284260': +"284260": installDir: PANORAMICAL launch: - config: @@ -137723,12 +134364,12 @@ oslist: linux description: Launch executable: Panoramical.x86 -'284290': +"284290": installDir: FMC 2014 launch: - description: Launch executable: FMC2014.exe -'284390': +"284390": installDir: The Last Door CE launch: - config: @@ -137743,8 +134384,8 @@ oslist: linux description: Launch executable: run.sh -'284410': - installDir: 'Cornerstone, The Song Of Tyrim' +"284410": + installDir: "Cornerstone, The Song Of Tyrim" launch: - config: oslist: windows @@ -137758,7 +134399,7 @@ oslist: linux description: Launch executable: Cornerstone.x86 -'284460': +"284460": installDir: DeadCore launch: - config: @@ -137773,28 +134414,28 @@ oslist: macos description: Launch executable: DeadCore.app -'284580': +"284580": installDir: ZAMB! Biomutant Extermination launch: - config: oslist: windows description: Launch executable: ZAMB.exe -'284710': +"284710": installDir: Abyss The Wraiths of Eden launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: Abyss_TheWraithsOfEden.exe - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: Abyss_TheWraithsOfEden_i386 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Abyss_TheWraithsOfEden_amd64 @@ -137802,7 +134443,7 @@ oslist: macos description: Launch executable: mac_steam.app/Contents/MacOS/mac_steam -'284730': +"284730": installDir: Dark Arcana The Carnival launch: - config: @@ -137810,12 +134451,12 @@ description: Launch executable: DarkArcana_TheCarnival.exe - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: DarkArcana_TheCarnival_i386 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: DarkArcana_TheCarnival_amd64 @@ -137823,21 +134464,21 @@ oslist: macos description: Launch executable: mac_steam.app/Contents/MacOS/mac_steam -'284750': +"284750": installDir: Enigmatis The Ghosts of Maple Creek launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: Enigmatis_TheGhostsOfMapleCreek.exe - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: Enigmatis_TheGhostsOfMapleCreek_i386 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Enigmatis_TheGhostsOfMapleCreek_amd64 @@ -137845,21 +134486,21 @@ oslist: macos description: Launch executable: mac_steam.app/Contents/MacOS/mac_steam -'284770': +"284770": installDir: Enigmatis The Mists of Ravenwood launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: Enigmatis_TheMistsOfRavenwood.exe - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: Enigmatis_TheMistsOfRavenwood_i386 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Enigmatis_TheMistsOfRavenwood_amd64 @@ -137867,21 +134508,21 @@ oslist: macos description: Launch executable: mac_steam.app/Contents/MacOS/mac_steam -'284790': +"284790": installDir: NightmaresFromTheDeep_TheSirensCall launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: NightmaresFromTheDeep_TheSirensCall.exe - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: NightmaresFromTheDeep_TheSirensCall_i386 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: NightmaresFromTheDeep_TheSirensCall_amd64 @@ -137889,7 +134530,7 @@ oslist: macos description: Launch executable: mac_steam.app/Contents/MacOS/mac_steam -'284810': +"284810": installDir: Nightmares from the Deep Davy Jones launch: - config: @@ -137897,12 +134538,12 @@ description: Launch executable: NightmaresFromTheDeep_DavyJones.exe - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: NightmaresFromTheDeep_DavyJones_i386 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: NightmaresFromTheDeep_DavyJones_amd64 @@ -137910,21 +134551,21 @@ oslist: macos description: Launch executable: mac_steam.app/Contents/MacOS/mac_steam -'284830': +"284830": installDir: Clockwork Tales Of Glass and Ink launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: ClockworkTales_OfGlassAndInk.exe - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: ClockworkTales_OfGlassAndInk_i386 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: ClockworkTales_OfGlassAndInk_amd64 @@ -137932,21 +134573,21 @@ oslist: macos description: Launch executable: mac_steam.app/Contents/MacOS/mac_steam -'284850': +"284850": installDir: Grim Legends The Forsaken Bride launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: GrimLegends_TheForsakenBride.exe - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: GrimLegends_TheForsakenBride_i386 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: GrimLegends_TheForsakenBride_amd64 @@ -137954,21 +134595,21 @@ oslist: macos description: Launch executable: mac_steam.app/Contents/MacOS/mac_steam -'284870': +"284870": installDir: 9 Clues The Secret of Serpent Creek launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: NineClues.exe - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: NineClues_i386 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: NineClues_amd64 @@ -137976,7 +134617,7 @@ oslist: macos description: Launch executable: mac_steam.app/Contents/MacOS/mac_steam -'284890': +"284890": installDir: Left in the Dark No One on Board launch: - config: @@ -137985,12 +134626,12 @@ executable: LeftInTheDark_NoOneOnBoard.exe type: none - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: LeftInTheDark_NoOneOnBoard_i386 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: LeftInTheDark_NoOneOnBoard_amd64 @@ -137998,54 +134639,54 @@ oslist: macos description: Launch executable: mac_steam.app/Contents/MacOS/mac_steam -'284910': +"284910": installDir: Battlemage Arena launch: - description: Launch executable: Purgatory.exe -'284930': +"284930": installDir: Speed Kills launch: - description: Launch - executable: Binaries\\Win32\\SKGame.exe -'284950': + executable: "Binaries\\\\Win32\\\\SKGame.exe" +"284950": installDir: Pixel Puzzles Japan launch: - config: oslist: windows description: Launch executable: Pixel Puzzles - Japan.exe -'284970': +"284970": installDir: Project Root launch: - config: oslist: windows description: Launch executable: ProjectRoot.exe -'284990': +"284990": installDir: Solarix launch: - config: oslist: windows description: Launch executable: Binaries/Win32/UDK.exe -'2850': +"2850": installDir: X-Tension launch: - executable: runme.exe -'285010': +"285010": installDir: Pixel Puzzles UndeadZ launch: - description: Launch executable: Pixel Puzzles - UndeadZ.exe -'285030': +"285030": installDir: Actua Soccer 3 launch: - config: oslist: windows description: Launch executable: SOCCER3.exe -'285050': +"285050": installDir: Showtime launch: - config: @@ -138056,39 +134697,39 @@ oslist: windows description: Launch Editor executable: editor.exe -'285070': +"285070": installDir: Between me and The Night launch: - config: - osarch: '64' + osarch: "64" oslist: macos description: Launch executable: Between Me and The Night.app type: default - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: Between Me and The Night.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: Between Me and The Night 32bit.exe type: default - config: - osarch: '32' + osarch: "32" oslist: macos description: Launch executable: Between Me and The Night 32bit.app type: default -'285090': +"285090": installDir: Robowars launch: - description: Launch executable: RoboWars.exe -'285110': +"285110": installDir: GearCity launch: - config: @@ -138101,7 +134742,7 @@ executable: GearCity.app type: default - config: - betakey: '1.22' + betakey: "1.22" oslist: linux description: Launch executable: GearCityStart @@ -138112,71 +134753,63 @@ executable: runGearCity type: none - config: - osarch: '32' + osarch: "32" oslist: linux description: Video Settings Editor - description_loc: - english: Video Settings Editor - executable: ./ModTools/VideoSettings - workingdir: ./ModTools/ + executable: "./ModTools/VideoSettings" + workingdir: "./ModTools/" - config: - osarch: '32' + osarch: "32" oslist: linux description: Mod Tools - description_loc: - english: Mod Tools - executable: ./ModTools/GearCity_ModToolSuite - workingdir: ./ModTools/ + executable: "./ModTools/GearCity_ModToolSuite" + workingdir: "./ModTools/" - config: oslist: macos description: Mod Tools - executable: ./GearCity.app/Contents/MacOS/GearCity_ModToolSuite + executable: "./GearCity.app/Contents/MacOS/GearCity_ModToolSuite" type: editor - config: oslist: windows description: Video Settings Editor - executable: ./ModTools/VideoSettings.exe + executable: "./ModTools/VideoSettings.exe" type: none - workingdir: ./ModTools/ + workingdir: "./ModTools/" - config: oslist: windows description: Mod Tools - executable: ./ModTools/GearCity_ModToolSuite.exe + executable: "./ModTools/GearCity_ModToolSuite.exe" type: none - workingdir: ./ModTools/ + workingdir: "./ModTools/" - config: oslist: macos description: Video Settings Editor - executable: ./GearCity.app/Contents/MacOS/VideoSettings + executable: "./GearCity.app/Contents/MacOS/VideoSettings" type: config - config: - osarch: '64' + osarch: "64" oslist: linux description: Video Settings Editor - description_loc: - english: Video Settings Editor - executable: ./ModTools/launchVS.sh + executable: "./ModTools/launchVS.sh" type: config - workingdir: ./ModTools + workingdir: "./ModTools" - config: - osarch: '64' + osarch: "64" oslist: linux description: Mod Tools - description_loc: - english: Mod Tools - executable: ./ModTools/launchMT.sh + executable: "./ModTools/launchMT.sh" type: editor - workingdir: ./ModTools -'285130': + workingdir: "./ModTools" +"285130": installDir: BattlePlan American Civil War launch: - description: Launch executable: BPACW.exe -'285160': +"285160": installDir: LEGO - The Hobbit launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: LEGOHobbit.exe @@ -138184,12 +134817,12 @@ oslist: macos description: Launch executable: LEGO The Hobbit.app -'285190': +"285190": installDir: Dawn of War III launch: - - arguments: '-disableHKThreads' + - arguments: "-disableHKThreads" config: - osarch: '64' + osarch: "64" oslist: windows executable: RelicDoW3.exe type: default @@ -138201,72 +134834,72 @@ oslist: linux executable: DawnOfWar3.sh type: none -'285310': +"285310": installDir: RollerCoaster Tycoon Deluxe launch: - description: Launch executable: rct.exe -'285330': +"285330": installDir: Rollercoaster Tycoon 2 launch: - description: Launch executable: rct2.exe -'285350': +"285350": installDir: Kingdom Elemental launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: kingdom elemental.exe -'285380': +"285380": installDir: On The Road launch: - - arguments: '-cleanedLogFile Log.txt' + - arguments: "-cleanedLogFile Log.txt" config: - osarch: '64' + osarch: "64" oslist: windows executable: OnTheRoad.exe type: default - - arguments: '-cleanedLogFile Log.txt' + - arguments: "-cleanedLogFile Log.txt" config: oslist: macos executable: OSX.app type: default -'285420': +"285420": installDir: Deadly Sin 2 launch: - description: Launch executable: Game.exe -'285440': +"285440": installDir: Crimzon Clover launch: - description: Launch executable: CrimzonClover_WI.exe -'285480': +"285480": installDir: The Entente Gold launch: - description: Launch executable: Antanta.exe -'285500': +"285500": installDir: Hard Truck Apocalypse launch: - description: Launch executable: hta.exe -'285520': +"285520": installDir: Sledgehammer launch: - description: Launch executable: GearGrinder.exe -'285580': +"285580": installDir: ACE launch: - - arguments: '-seekfreeloadingpcconsole -NOSCREENMESSAGES' + - arguments: "-seekfreeloadingpcconsole -NOSCREENMESSAGES" config: oslist: windows description: Launch - executable: Binaries\\Win32\\cyphgame.exe -'285670': + executable: "Binaries\\\\Win32\\\\cyphgame.exe" +"285670": installDir: Galactic Command Echo Squad SE launch: - config: @@ -138274,11 +134907,11 @@ description: Launch Game executable: GCES_SE.EXE type: default -'285740': +"285740": installDir: Kitty Powers Matchmaker launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: matchmaker.exe @@ -138286,14 +134919,14 @@ - config: oslist: macos description: Launch - executable: matchmaker.app\\Contents\\MacOS\\matchmaker + executable: "matchmaker.app\\\\Contents\\\\MacOS\\\\matchmaker" - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch 32-bit executable: matchmaker.exe type: none -'285800': +"285800": installDir: Braveland launch: - config: @@ -138304,21 +134937,21 @@ oslist: macos description: Launch executable: Braveland.app - - arguments: '-screen-fullscreen 0' + - arguments: "-screen-fullscreen 0" config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: Braveland.x86_64 type: none - - arguments: '-screen-fullscreen 0' + - arguments: "-screen-fullscreen 0" config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Braveland.x86_64 type: none -'285820': +"285820": installDir: Action Henk launch: - config: @@ -138326,12 +134959,12 @@ description: Launch executable: ActionHenk.exe - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: ActionHenk.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: ActionHenk.x86_64 @@ -138339,7 +134972,7 @@ oslist: macos description: Launch executable: ActionHenk.app -'285840': +"285840": installDir: EnemyMind launch: - config: @@ -138350,7 +134983,7 @@ oslist: macos description: Launch executable: EnemyMind.app -'285900': +"285900": installDir: Gang Beasts launch: - config: @@ -138360,34 +134993,32 @@ - config: oslist: macos description: Launch - description_loc: - english: Launch executable: Gang Beasts.app - config: oslist: linux description: Launch executable: Gang Beasts.x86_64 type: none -'285920': +"285920": installDir: TerraTech launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: TerraTechWin64.exe - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: TerraTechLinux64.x86_64 - config: - osarch: '64' + osarch: "64" oslist: macos description: Launch executable: TerraTechOSX64.app type: none -'285960': +"285960": installDir: QBert launch: - config: @@ -138395,7 +135026,7 @@ description: Launch executable: QBert.exe - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: QBert.x86 @@ -138404,20 +135035,20 @@ description: Launch executable: QBert.app - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: QBert.x86_64 -'285980': +"285980": installDir: Kromaia launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: exe/kromaia.exe workingdir: exe -'286000': +"286000": installDir: ToothAndTail launch: - config: @@ -138431,11 +135062,9 @@ - config: oslist: macos description: Launch - description_loc: - english: Launch executable: ToothAndTail.app/Contents/MacOS/ToothAndTail type: none -'286040': +"286040": installDir: DeadEffect launch: - config: @@ -138446,22 +135075,22 @@ oslist: macos description: Launch executable: DeadEffect.app -'286080': +"286080": installDir: Thinking with Time Machine launch: - - arguments: '-game TWTM -steam' + - arguments: "-game TWTM -steam" config: oslist: windows description: Play TWTM executable: portal2.exe type: default - - arguments: '-game TWTM -steam' + - arguments: "-game TWTM -steam" config: oslist: macos description: Play TWTM executable: TWTM_osx type: default - - arguments: '-game TWTM -steam' + - arguments: "-game TWTM -steam" config: oslist: linux description: Play TWTM @@ -138470,9 +135099,9 @@ - config: oslist: windows description: Launch SDK (beta) - executable: bin\\SDKLauncher.exe + executable: "bin\\\\SDKLauncher.exe" type: editor -'286100': +"286100": installDir: You Have to Win the Game launch: - config: @@ -138488,7 +135117,7 @@ oslist: macos description: Launch executable: TheGame.app -'286120': +"286120": installDir: QuestRun launch: - config: @@ -138499,7 +135128,7 @@ oslist: macos description: Launch executable: Questrun.app -'286140': +"286140": installDir: Eidolon launch: - config: @@ -138510,7 +135139,7 @@ oslist: macos description: Eidolon Launcher executable: EIDOLON.app -'286160': +"286160": installDir: Tabletop Simulator launch: - config: @@ -138523,35 +135152,31 @@ description: Launch Mac executable: Tabletop Simulator.app type: default - - arguments: '-vr -novid' + - arguments: "-vr -novid" config: oslist: windows description: VR executable: Tabletop Simulator.exe type: vr - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch Linux - description_loc: - english: Launch Linux executable: Tabletop Simulator.x86_64 type: default - - arguments: '-force-glcore' + - arguments: "-force-glcore" config: oslist: windows description: OpenGL executable: Tabletop Simulator.exe type: none - - arguments: '-force-metal' + - arguments: "-force-metal" config: oslist: macos description: Metal (faster but has graphical issues) - description_loc: - english: Metal (faster but has graphical issues) executable: Tabletop Simulator.app type: none -'286200': +"286200": installDir: ReignMaker launch: - config: @@ -138566,7 +135191,7 @@ oslist: linux description: Launch executable: ReignMaker -'286220': +"286220": installDir: PSHD launch: - config: @@ -138581,7 +135206,7 @@ oslist: windows description: Launch executable: pshd.exe -'286240': +"286240": installDir: DogSledSaga launch: - config: @@ -138596,7 +135221,7 @@ oslist: macos description: Launch executable: DogSledSaga.app -'286260': +"286260": installDir: faultms1 launch: - config: @@ -138611,14 +135236,14 @@ oslist: linux executable: faultms1.sh type: default -'286280': +"286280": installDir: Steel Armor Blaze of War launch: - config: oslist: windows description: Launch executable: starter.exe -'286300': +"286300": installDir: AlgoBot launch: - config: @@ -138626,12 +135251,12 @@ executable: Algobot.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Algobot.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Algobot.x86_64 type: default @@ -138639,7 +135264,7 @@ oslist: macos executable: Algobot.app/Contents/MacOS/Algobot type: default -'286320': +"286320": installDir: Oknytt launch: - config: @@ -138650,7 +135275,7 @@ oslist: windows description: Languages & Settings executable: settings.exe -'286340': +"286340": installDir: FarSky launch: - config: @@ -138665,7 +135290,7 @@ oslist: macos description: Launch executable: farskyExec.app -'286360': +"286360": installDir: ShadowsOnTheVatican_1 launch: - config: @@ -138686,7 +135311,7 @@ executable: hd/SotV1.exe type: option2 workingdir: hd/ -'286380': +"286380": installDir: Strata launch: - config: @@ -138701,7 +135326,7 @@ oslist: linux description: Launch executable: Strata.x86 -'286440': +"286440": installDir: Rover Rescue launch: - config: @@ -138712,7 +135337,7 @@ oslist: windows description: Configure Settings executable: Rover Rescue Options.exe -'286460': +"286460": installDir: Black Mirror 2 - Reigning Evil launch: - config: @@ -138720,8 +135345,8 @@ description: Launch Black Mirror II executable: BlackMirror2.exe - description: Black Mirror II Manual - executable: Docs\\Manual.pdf -'286480': + executable: "Docs\\\\Manual.pdf" +"286480": installDir: Black Mirror 3 - Final Fear launch: - config: @@ -138729,9 +135354,9 @@ description: Launch Black Mirror III executable: BlackMirrorIII.exe - description: Black Mirror III Manual - executable: Docs\\Manual.pdf -'286500': - installDir: 'House of 1,000 Doors - Family Secrets' + executable: "Docs\\\\Manual.pdf" +"286500": + installDir: "House of 1,000 Doors - Family Secrets" launch: - config: oslist: windows @@ -138741,7 +135366,7 @@ oslist: macos description: Launch executable: House of 1000 Doors.app -'286520': +"286520": installDir: Viking Brothers launch: - config: @@ -138752,38 +135377,38 @@ oslist: macos description: Launch executable: VikingBrothers.app -'286540': - installDir: Nearwood - Collector's Edition +"286540": + installDir: "Nearwood - Collector's Edition" launch: - config: oslist: windows description: Launch executable: Nearwood_CE.exe -'286570': +"286570": installDir: F1 2015 launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: F1_2015.exe - config: betakey: intel_dx12 - osarch: '64' + osarch: "64" oslist: windows description: F1 2015 (DirectX 12) executable: f1_2015_dx12.exe type: none - config: betakey: devtestinstall - osarch: '64' + osarch: "64" oslist: windows description: F1 2015 (DirectX 12) executable: f1_2015_dx12.exe type: none - config: betakey: dx12_test - osarch: '64' + osarch: "64" oslist: windows description: F1 2015 (DirectX 12) executable: f1_2015_dx12.exe @@ -138796,8 +135421,8 @@ oslist: linux executable: F12015.sh type: none -'286590': {} -'286660': +"286590": {} +"286660": installDir: Avoid Sensory Overload launch: - config: @@ -138812,7 +135437,7 @@ oslist: macos description: Launch executable: avoid.app -'286690': +"286690": installDir: Metro 2033 Redux launch: - config: @@ -138820,7 +135445,7 @@ description: Launch executable: metro.exe - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: metro @@ -138829,52 +135454,52 @@ description: Launch executable: MetroRedux2033.app type: none -'286730': +"286730": installDir: Gunship launch: - config: oslist: windows description: Launch executable: gunship.exe -'286750': +"286750": installDir: Zoo Empire launch: - config: oslist: windows description: Launch executable: ze.exe -'286770': +"286770": installDir: Shadow Ops Red Mercury launch: - config: oslist: windows - executable: System\\RM.exe - workingdir: System\\ -'286790': + executable: "System\\\\RM.exe" + workingdir: "System\\\\" +"286790": installDir: Falcon AT launch: - config: oslist: windows executable: FalconATLauncher.exe type: default -'286810': +"286810": installDir: HARD TRUCK APOCALYPSE RISE OF CLANS launch: - description: Launch executable: Meridian113.exe -'286830': +"286830": installDir: HARD TRUCK APOCALYPSE ARCADE launch: - description: Launch executable: emarcade.exe -'286880': +"286880": installDir: Disney Planes launch: - config: oslist: windows description: Launch Disney Planes executable: PlanesLauncher.exe -'286930': +"286930": installDir: Crouching Pony Hidden Dragon launch: - config: @@ -138885,12 +135510,12 @@ oslist: macos description: Launch executable: CPHD.app -'286940': +"286940": installDir: SKILL launch: - description: Launch executable: DFUBG.exe -'2870': +"2870": installDir: X Rebirth launch: - config: @@ -138899,78 +135524,76 @@ executable: XRebirth.exe - arguments: XRebirth config: - osarch: '64' + osarch: "64" oslist: linux description: Default executable: testandlaunch - config: - osarch: '64' + osarch: "64" oslist: macos description: Launch executable: XRebirth.app -'287020': +"287020": installDir: Harvester launch: - - arguments: '-conf dosbox_harvester.conf -conf dosbox_harvester_launch_windows.conf -noconsole' + - arguments: "-conf dosbox_harvester.conf -conf dosbox_harvester_launch_windows.conf -noconsole" config: oslist: windows description: Play Harvester - executable: dosbox_windows\\dosbox.exe - workingdir: dosbox_windows\\ - - arguments: '-conf dosbox_harvester.conf -conf dosbox_harvester_launch_windows.conf -noconsole' + executable: "dosbox_windows\\\\dosbox.exe" + workingdir: "dosbox_windows\\\\" + - arguments: "-conf dosbox_harvester.conf -conf dosbox_harvester_launch_windows.conf -noconsole" config: oslist: windows description: Play Harvester with DOSBox Daum - executable: dosbox_windows\\daum\\dosbox.exe - workingdir: dosbox_windows\\daum\\ - - arguments: '-conf dosbox_harvester.conf -conf dosbox_harvester_config_windows.conf -noconsole' + executable: "dosbox_windows\\\\daum\\\\dosbox.exe" + workingdir: "dosbox_windows\\\\daum\\\\" + - arguments: "-conf dosbox_harvester.conf -conf dosbox_harvester_config_windows.conf -noconsole" config: oslist: windows description: Harvester - Configuration - executable: dosbox_windows\\dosbox.exe - workingdir: dosbox_windows\\ + executable: "dosbox_windows\\\\dosbox.exe" + workingdir: "dosbox_windows\\\\" - config: oslist: linux description: Play Harvester - executable: dosbox_linux\\launch_harvester_game.sh + executable: "dosbox_linux\\\\launch_harvester_game.sh" type: none - workingdir: dosbox_linux\\ + workingdir: "dosbox_linux\\\\" - config: oslist: linux description: Play Harvester with DOSBox Daum - executable: dosbox_linux\\daum\\launch_harvester_game_daum.sh - workingdir: dosbox_linux\\daum\\ + executable: "dosbox_linux\\\\daum\\\\launch_harvester_game_daum.sh" + workingdir: "dosbox_linux\\\\daum\\\\" - config: oslist: linux description: Harvester - Configuration - executable: dosbox_linux\\launch_harvester_config.sh - workingdir: dosbox_linux\\ - - arguments: '-conf dosbox_harvester.conf -conf dosbox_harvester_windows.conf -noconsole' + executable: "dosbox_linux\\\\launch_harvester_config.sh" + workingdir: "dosbox_linux\\\\" + - arguments: "-conf dosbox_harvester.conf -conf dosbox_harvester_windows.conf -noconsole" config: betakey: beta - osarch: '64' + osarch: "64" oslist: windows description: Harvester New - description_loc: - english: Harvester New - executable: dosbox_windows\\DOSBox-X.exe - workingdir: dosbox_windows\\ -'287070': + executable: "dosbox_windows\\\\DOSBox-X.exe" + workingdir: "dosbox_windows\\\\" +"287070": installDir: Battle Academy launch: - description: Launch executable: BA_STEAM.exe -'287100': +"287100": installDir: Chaos Domain launch: - description: Launch - executable: Binaries\\Win32\\CDGame.exe -'287120': + executable: "Binaries\\\\Win32\\\\CDGame.exe" +"287120": installDir: Ionball 2 Ionstorm launch: - description: Launch executable: IonStorm_v1.1.exe -'287140': +"287140": installDir: Selfie launch: - config: @@ -138979,16 +135602,16 @@ executable: selfiebuild15.03.exe - config: oslist: windows - description: 'Extended displays(please use windowed fullscreen) ' + description: "Extended displays(please use windowed fullscreen) " executable: selfie.bat -'287200': +"287200": installDir: Wildlife Park 3 launch: - - arguments: '-console' + - arguments: "-console" config: oslist: windows executable: WLP3-Steam.exe -'287220': +"287220": installDir: Autocraft launch: - config: @@ -138999,17 +135622,17 @@ oslist: macos description: Launch executable: Autocraft.app -'287260': +"287260": installDir: ToyboxTurbos launch: - config: oslist: windows description: Launch executable: ToyboxTurbos.exe -'287290': +"287290": installDir: RESIDENT EVIL REVELATIONS 2 launch: - - arguments: '-console' + - arguments: "-console" config: oslist: windows description: Launch @@ -139017,14 +135640,12 @@ nameLocalized: japanese: BIOHAZARD REVELATIONS 2 koreana: BIOHAZARD REVELATIONS 2 -'287310': +"287310": installDir: Re-Volt launch: - config: oslist: windows description: Launch - description_loc: - english: Launch executable: revolt.exe type: default nameLocalized: @@ -139033,7 +135654,7 @@ koreana: 리볼트 schinese: 梦幻遥控车(Re-Volt) tchinese: 夢幻遙控車(Re-Volt) -'287340': +"287340": installDir: Colin McRae Rally launch: - config: @@ -139044,7 +135665,7 @@ oslist: macos description: Launch executable: Cmr.app -'287390': +"287390": installDir: Metro Last Light Redux launch: - config: @@ -139052,53 +135673,53 @@ description: Launch executable: metro.exe - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: metro - config: - osarch: '64' + osarch: "64" oslist: macos description: Launch executable: MetroLastLightRedux.app -'287450': +"287450": installDir: Rise of Nations launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: patriots.exe -'287580': +"287580": installDir: Pandora launch: - config: oslist: windows description: Launch - executable: Launcher\\autorun.exe + executable: "Launcher\\\\autorun.exe" workingdir: Binaries - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch - executable: Binaries\\Pandora + executable: "Binaries\\\\Pandora" workingdir: Binaries - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch - executable: Binaries\\Pandora + executable: "Binaries\\\\Pandora" workingdir: Binaries - config: oslist: macos description: Launch - executable: Binaries\\Pandora + executable: "Binaries\\\\Pandora" workingdir: Binaries -'287600': +"287600": installDir: Sunset launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch on Windows executable: Sunset_32.exe @@ -139107,47 +135728,47 @@ description: Launch on Mac executable: Sunset.app - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch on Linux (32 bit) executable: Sunset.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch on Linux (64 bit) executable: Sunset.x86_64 - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch on Windows (64 bit) executable: Sunset.exe -'287630': +"287630": installDir: The Council launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: The Council.exe type: default - config: - betakey: 'internal,testqa,testlab,focus_loca' - osarch: '64' + betakey: "internal,testqa,testlab,focus_loca" + osarch: "64" oslist: windows description: Exe release avec options de debug executable: Viewer_Release_64.exe type: none -'287680': +"287680": installDir: Pro Evolution Soccer 2015 launch: - description: Launch executable: PES2015.exe -'287700': +"287700": installDir: MGS_TPP launch: - description: Launch executable: mgsvtpp.exe -'287720': +"287720": installDir: Nostradamus launch: - config: @@ -139158,8 +135779,8 @@ oslist: macos description: Launch executable: Nostradamus - The Last Prophecy.app -'287740': - installDir: The Witch's Yarn +"287740": + installDir: "The Witch's Yarn" launch: - config: oslist: windows @@ -139169,7 +135790,7 @@ oslist: macos description: Launch executable: the witchs yarn.app -'287780': +"287780": installDir: DerrickTheDeathfin launch: - config: @@ -139184,15 +135805,15 @@ oslist: linux description: Launch executable: DerrickTheDeathfin.x86 -'287840': +"287840": installDir: TY the Tasmanian Tiger 4 launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: TY4.exe -'287860': +"287860": installDir: 8bitcommando launch: - arguments: commando.love --fused @@ -139209,7 +135830,7 @@ type: default - arguments: commando.love --fused config: - osarch: '64' + osarch: "64" oslist: linux executable: love type: default @@ -139221,42 +135842,42 @@ russian: 8-битный Коммандо schinese: 8位机敢死队 swedish: 8-Bit Kommando -'287900': +"287900": installDir: Pro Pinball Ultra launch: - config: oslist: macos - executable: Pro Pinball.app\\Contents\\MacOS\\Pro Pinball + executable: "Pro Pinball.app\\\\Contents\\\\MacOS\\\\Pro Pinball" type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: ProPinball.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: ProPinball.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: ProPinball type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: ProPinball type: default -'287920': +"287920": installDir: Mortal Online launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: Mortal Online Launcher.exe -'287960': +"287960": installDir: Yomi launch: - config: @@ -139268,16 +135889,16 @@ description: Launch executable: Yomi.app - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: Yomi.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Yomi.x86_64 -'287980': +"287980": installDir: MiniMetro launch: - config: @@ -139292,11 +135913,11 @@ oslist: linux description: Launch executable: launchscript -'288000': +"288000": installDir: Oncoming Death launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: Oncoming Death.exe @@ -139308,7 +135929,7 @@ oslist: macos description: Launch executable: Oncoming Death.app -'288020': +"288020": installDir: Rex Rocket launch: - config: @@ -139318,12 +135939,12 @@ - config: oslist: linux description: Launch - executable: ./RexRocket + executable: "./RexRocket" - config: oslist: macos description: Launch executable: Rex Rocket.app -'288040': +"288040": installDir: Actual Sunlight launch: - config: @@ -139334,7 +135955,7 @@ oslist: macos executable: Game.app type: none -'288060': +"288060": installDir: WhisperingWillows launch: - config: @@ -139344,16 +135965,16 @@ oslist: macos executable: WhisperingWillows.app - config: - osarch: '32' + osarch: "32" oslist: linux description: x86 executable: WhisperingWillows.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: x86 64 executable: WhisperingWillows.x86_64 -'288100': +"288100": installDir: MechRunner launch: - config: @@ -139368,12 +135989,12 @@ oslist: linux executable: MechRunner.x86 type: none -'288120': +"288120": installDir: Dungeonmans launch: - description: Launch executable: dungeonmans.exe -'288140': +"288140": installDir: Perfect Golf launch: - config: @@ -139388,14 +136009,14 @@ oslist: linux description: Launch executable: Perfect Golf.x86 -'288160': +"288160": installDir: TheRoom launch: - config: oslist: windows description: Launch executable: TheRoom.exe -'288220': +"288220": installDir: BackstagePass launch: - config: @@ -139413,7 +136034,7 @@ description: Launch executable: backstagepass-1j-market/backstagepass.sh type: none -'288260': +"288260": installDir: conflicks launch: - config: @@ -139425,76 +136046,76 @@ description: Launch executable: conflicks.app - config: - osarch: '32' + osarch: "32" oslist: linux executable: conflicks.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: conflicks.x86_64 type: none -'288370': +"288370": installDir: SSZ Directors Cut launch: - arguments: asd config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: pc/main/Binary/SSZ.exe workingdir: pc/main/Binary - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: pc/main/Binary/SSZ32.exe workingdir: pc/main/Binary - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch 64 bit executable: linux/main/Binary64/SSZ workingdir: linux/main/Binary64/ - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch 32 bit executable: linux/main/Binary32/SSZ workingdir: linux/main/Binary32 - arguments: nothreadedload config: - osarch: '32' + osarch: "32" oslist: linux description: Launch 32 bit - Unthreaded Load executable: linux/main/Binary32/SSZ workingdir: linux/main/Binary32 - arguments: nothreadedload config: - osarch: '64' + osarch: "64" oslist: linux description: Launch 64 bit - Unthreaded Load executable: linux/main/Binary64/SSZ workingdir: linux/main/Binary64/ -'288470': +"288470": installDir: Fable Anniversary launch: - config: oslist: windows description: Launch - executable: binaries\\Win32\\Fable Anniversary.exe - workingdir: binaries\\Win32 - - arguments: '-NOSEEKFREELOADING' + executable: "binaries\\\\Win32\\\\Fable Anniversary.exe" + workingdir: "binaries\\\\Win32" + - arguments: "-NOSEEKFREELOADING" config: - ownsdlc: '319120' + ownsdlc: "319120" description: Launch MODDED GAME - executable: binaries\\Win32\\Fable Anniversary.exe - - arguments: ' -NoGADWarning' + executable: "binaries\\\\Win32\\\\Fable Anniversary.exe" + - arguments: " -NoGADWarning" config: - ownsdlc: '319120' + ownsdlc: "319120" description: Launch Editor - executable: binaries\\Win32\\Editor.exe -'288500': + executable: "binaries\\\\Win32\\\\Editor.exe" +"288500": installDir: Black Rainbow launch: - config: @@ -139504,9 +136125,9 @@ - config: oslist: macos description: Launch - executable: Black Rainbow.app\\Contents\\MacOS\\blackrainbow - workingdir: Black Rainbow.app\\Contents\\MacOS -'288610': + executable: "Black Rainbow.app\\\\Contents\\\\MacOS\\\\blackrainbow" + workingdir: "Black Rainbow.app\\\\Contents\\\\MacOS" +"288610": installDir: Kingdom Tales 2 launch: - config: @@ -139514,13 +136135,13 @@ executable: ktales2.exe - config: oslist: macos - executable: Kingdom Tales 2.app\\Contents\\MacOS\\Kingdom Tales 2 - workingdir: Kingdom Tales 2.app\\Contents\\MacOS -'288630': + executable: "Kingdom Tales 2.app\\\\Contents\\\\MacOS\\\\Kingdom Tales 2" + workingdir: "Kingdom Tales 2.app\\\\Contents\\\\MacOS" +"288630": installDir: Sharpe Investigations Death on the Seine launch: - executable: foodcritic.exe -'288650': +"288650": installDir: HTR_Plus_High_Tech_Racing launch: - config: @@ -139531,7 +136152,7 @@ oslist: macos description: Launch executable: HTR_Plus.app/Contents/MacOS/HTR+ High Tech Racing -'288670': +"288670": installDir: Myths Of Orion launch: - config: @@ -139539,30 +136160,30 @@ executable: orion.exe - config: oslist: macos - executable: Myths of Orion.app\\Contents\\MacOS\\orion - workingdir: Myths of Orion.app\\Contents\\MacOS -'288690': + executable: "Myths of Orion.app\\\\Contents\\\\MacOS\\\\orion" + workingdir: "Myths of Orion.app\\\\Contents\\\\MacOS" +"288690": installDir: Sudokuball Detective launch: - config: oslist: windows description: Launch executable: sudokuball.exe -'288710': +"288710": installDir: Demolition Master 3D launch: - config: oslist: windows description: Launch executable: DM3D.exe -'288730': +"288730": installDir: Redneck Racers launch: - config: oslist: windows description: Launch executable: RR.exe -'288750': +"288750": installDir: Hotel Collectors Edition launch: - config: @@ -139572,23 +136193,23 @@ - config: oslist: macos description: Launch - executable: Hotel - Collector's Edition.app\\Contents\\MacOS\\Hotel -'288790': + executable: "Hotel - Collector's Edition.app\\\\Contents\\\\MacOS\\\\Hotel" +"288790": installDir: White Haven Mysteries launch: - description: Launch executable: WhiteHaven.exe -'288830': +"288830": installDir: Voodoo Whisperer Curse of a Legend launch: - description: Launch executable: VoodooWhisperer_CurseofaLegend.exe -'288840': +"288840": installDir: Haunted Past Realm of Ghosts launch: - description: Launch executable: HP-RealmofGhosts.exe -'288860': +"288860": installDir: Realms of Arkania – Star Trail launch: - config: @@ -139603,14 +136224,14 @@ - config: oslist: windows description: StarTrail Modding Tools - executable: ModTools\\DSACraftyTools.exe + executable: "ModTools\\\\DSACraftyTools.exe" type: editor - workingdir: ModTools\\ + workingdir: "ModTools\\\\" - config: oslist: macos executable: schweif.app type: default -'288880': +"288880": installDir: Pineview Drive launch: - config: @@ -139621,7 +136242,7 @@ oslist: linux description: Launch executable: PineviewDrive.x86 -'288930': +"288930": installDir: The Charnel House Trilogy launch: - config: @@ -139635,22 +136256,22 @@ - config: oslist: linux description: Start Game - executable: ./CHT + executable: "./CHT" - config: oslist: linux description: Setup - executable: ./data/acsetup.cfg -'288970': + executable: "./data/acsetup.cfg" +"288970": installDir: Dark Lore Mysteries The Hunt For Truth launch: - description: Launch executable: DarkLoreMysteries_TheHuntForTruth.exe -'289050': - installDir: Shannon Tweed's Attack Of The Groupies +"289050": + installDir: "Shannon Tweed's Attack Of The Groupies" launch: - description: Launch executable: AttackOfTheGroupies.exe -'289060': +"289060": installDir: The Emerald Tablet launch: - config: @@ -139661,70 +136282,66 @@ oslist: macos executable: theemeraldtablet.app type: default -'289070': - installDir: Sid Meier's Civilization VI +"289070": + installDir: "Sid Meier's Civilization VI" launch: - config: - osarch: '64' + osarch: "64" oslist: macos executable: Civ6.app type: none - - arguments: '-steam_auto_login' + - arguments: "-steam_auto_login" config: - osarch: '64' + osarch: "64" oslist: windows description: 2K Launcher - description_loc: - english: 2K Launcher - executable: 2KLauncher\\LauncherPatcher.exe + executable: "2KLauncher\\\\LauncherPatcher.exe" type: option1 - - arguments: '-steam_auto_login' + - arguments: "-steam_auto_login" config: betakey: old - osarch: '64' + osarch: "64" oslist: windows - description: Sid Meier's Civilization VI - Launcher - description_loc: - english: Sid Meier's Civilization VI - Launcher + description: "Sid Meier's Civilization VI - Launcher" executable: LaunchPad/LaunchPad.exe type: default workingdir: LaunchPad - config: oslist: linux - executable: ./Civ6 + executable: "./Civ6" type: none - config: betakey: usk_review - osarch: '64' + osarch: "64" oslist: windows - description: Sid Meier's Civilization VI Portcullis + description: "Sid Meier's Civilization VI Portcullis" executable: Base/Binaries/Win64Portcullis/CivilizationVI.exe type: option1 - config: betakey: Marketing - osarch: '64' + osarch: "64" oslist: windows - description: Sid Meier's Civilization VI Portcullis + description: "Sid Meier's Civilization VI Portcullis" executable: Base/Binaries/Win64Portcullis/CivilizationVI.exe type: option1 - config: betakey: Marketing - osarch: '64' + osarch: "64" oslist: windows - description: Sid Meier's Civilization VI Portcullis (DX12) + description: "Sid Meier's Civilization VI Portcullis (DX12)" executable: Base/Binaries/Win64Portcullis/CivilizationVI_DX12.exe type: option2 - config: betakey: usk_review - osarch: '64' + osarch: "64" oslist: windows - description: Sid Meier's Civilization VI Portcullis (DX12) + description: "Sid Meier's Civilization VI Portcullis (DX12)" executable: Base/Binaries/Win64Portcullis/CivilizationVI_DX12.exe type: option2 - - arguments: '--launchConfig Config/Civ6/config.bin' + - arguments: "--launchConfig Config/Civ6/config.bin" config: betakey: ltest - osarch: '64' + osarch: "64" oslist: windows description: LaunchConfig executable: LaunchPad/LaunchPad.exe @@ -139732,64 +136349,62 @@ workingdir: LaunchPad - config: betakey: agerating3 - osarch: '64' + osarch: "64" oslist: windows - description: Sid Meier's Civilization VI Age Rating DX11 + description: "Sid Meier's Civilization VI Age Rating DX11" executable: Base/Binaries/Win64Portcullis/CivilizationVI.exe type: option1 - config: betakey: preview - osarch: '64' + osarch: "64" oslist: windows - description: Sid Meier's Civilization VI Preview (DX11) + description: "Sid Meier's Civilization VI Preview (DX11)" executable: Base/Binaries/Win64Portcullis/CivilizationVI.exe type: option1 - config: betakey: preview - osarch: '64' + osarch: "64" oslist: windows - description: Sid Meier's Civilization VI Preview (DX12) + description: "Sid Meier's Civilization VI Preview (DX12)" executable: Base/Binaries/Win64Portcullis/CivilizationVI_DX12.exe type: option2 - config: betakey: agerating2 - osarch: '64' + osarch: "64" oslist: windows - description: Sid Meier's Civilization VI Age Rating DX11 + description: "Sid Meier's Civilization VI Age Rating DX11" executable: Base/Binaries/Win64Portcullis/CivilizationVI.exe type: option1 - config: betakey: agerating1 - osarch: '64' + osarch: "64" oslist: windows - description: Sid Meier's Civilization VI Age Rating DX11 - executable: Sid Meier's Civilization VI Age Rating DX11 + description: "Sid Meier's Civilization VI Age Rating DX11" + executable: "Sid Meier's Civilization VI Age Rating DX11" type: option1 - config: betakey: frankenstein - osarch: '64' + osarch: "64" oslist: windows description: Frankenstein - description_loc: - english: Frankenstein executable: Base/Binaries/Win64Portcullis/CivilizationVI.exe type: option1 -'289090': +"289090": installDir: Ampu-Tea launch: - config: oslist: windows description: Launch executable: AmpuTea.exe -'289130': +"289130": installDir: Endless Legend launch: - - arguments: '-single-instance' + - arguments: "-single-instance" config: oslist: windows description: Launch executable: EndlessLegend.exe - - arguments: '-single-instance -useembedded' + - arguments: "-single-instance -useembedded" config: oslist: macos description: Launch @@ -139798,28 +136413,28 @@ nameLocalized: schinese: 无尽帝国 tchinese: 無盡帝國 -'289180': +"289180": installDir: AIM2 launch: - config: oslist: windows description: Launch executable: AIMII.exe -'289200': +"289200": installDir: AttT launch: - config: oslist: windows description: Launch executable: ATThrone.exe -'289220': +"289220": installDir: BorderZone launch: - config: oslist: windows description: Launch executable: BorderZone.exe -'289240': +"289240": installDir: PerimeterET launch: - config: @@ -139830,7 +136445,7 @@ oslist: windows description: Configure executable: Config.exe -'289260': +"289260": installDir: Dreamscapes The Sandman launch: - config: @@ -139841,14 +136456,14 @@ oslist: macos description: Launch executable: Dreamscapes_TheSandman_CE.app -'289280': +"289280": installDir: El Matador launch: - config: oslist: windows description: Launch executable: pc_matador.exe -'289300': +"289300": installDir: Faces of War launch: - config: @@ -139859,54 +136474,54 @@ oslist: windows description: Editor executable: fowed.exe -'289320': +"289320": installDir: Morozko launch: - config: oslist: windows description: Launch executable: mrazik.exe -'289340': +"289340": installDir: FreightTycoon launch: - config: oslist: windows description: Launch executable: Tycoon.exe - - arguments: '-s' + - arguments: "-s" config: oslist: windows description: Configure executable: Tycoon.exe -'289360': +"289360": installDir: Konung2 launch: - config: oslist: windows description: Launch executable: Konung2.exe -'289380': +"289380": installDir: Konung3 launch: - config: oslist: windows description: Launch executable: Konung3.exe -'289400': +"289400": installDir: Parkan2 launch: - config: oslist: windows description: Launch executable: Parkan2.exe -'289420': +"289420": installDir: PlanetAlcatraz launch: - config: oslist: windows description: Launch executable: Erasers.exe -'289440': +"289440": installDir: Perimeter launch: - config: @@ -139917,28 +136532,28 @@ oslist: windows description: Configuration executable: Config.exe -'289460': +"289460": installDir: RCCars launch: - config: oslist: windows description: Launch executable: RCCars.exe -'289480': +"289480": installDir: TW launch: - config: oslist: windows description: Launch executable: ZV.exe -'289500': +"289500": installDir: UFOAftershock launch: - config: oslist: windows description: Launch executable: UFO.exe -'289520': +"289520": installDir: Darkside launch: - config: @@ -139949,36 +136564,36 @@ oslist: macos description: MacOS executable: kingsbounty.app -'289580': +"289580": installDir: Aggression - Reign Over Europe launch: - config: oslist: windows description: Launch executable: adico.exe -'289600': +"289600": installDir: Man Of Prey launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: E8.exe -'289620': +"289620": installDir: Collapse launch: - description: Launch executable: collapse.exe -'289650': - installDir: Assassin's Creed Unity +"289650": + installDir: "Assassin's Creed Unity" launch: - - arguments: '-uplay_steam_mode' + - arguments: "-uplay_steam_mode" config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: ACU.exe -'289690': +"289690": installDir: Lara Croft and the Temple of Osiris launch: - config: @@ -139989,7 +136604,7 @@ oslist: macos executable: Lara Croft and the Temple of Osiris.app type: none -'289760': +"289760": installDir: ROCKETSROCKETSROCKETS launch: - config: @@ -140001,23 +136616,23 @@ description: ROCKETS executable: Rockets.app - config: - osarch: '32' + osarch: "32" oslist: linux description: ROCKETS executable: Rockets.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: ROCKETS executable: Rockets.x86_64 -'289780': +"289780": installDir: Requiem launch: - config: oslist: windows description: Launch Requiem executable: WPLauncher.exe -'289800': +"289800": installDir: Dracula The Resurrection launch: - config: @@ -140028,7 +136643,7 @@ oslist: macos description: Launch executable: Dracula Resurrection.app -'289820': +"289820": installDir: Dracula The Last Sanctuary launch: - config: @@ -140039,7 +136654,7 @@ oslist: macos description: Launch executable: Dracula The Last Sanctuary.app -'289840': +"289840": installDir: Dracula The Path of the Dragon launch: - config: @@ -140050,8 +136665,8 @@ oslist: macos description: Launch executable: Dracula 3.app -'289890': - installDir: '7.62' +"289890": + installDir: "7.62" launch: - config: oslist: windows @@ -140061,14 +136676,14 @@ oslist: windows description: Configure executable: E6Config.exe -'289910': +"289910": installDir: Ropeway Simulator 2014 launch: - config: oslist: windows description: Launch executable: seilbahn.exe -'289930': +"289930": installDir: TransOcean - The Shipping Company launch: - config: @@ -140079,7 +136694,7 @@ oslist: macos description: Launch OSX executable: TransOcean.app -'289950': +"289950": installDir: ConSim2015 launch: - config: @@ -140091,23 +136706,23 @@ description: Launch executable: ConSim2015.app - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: start.sh type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: start.sh type: default -'289980': {} -'2900': +"289980": {} +"2900": installDir: 688(I) Hunter-Killer launch: - executable: SteamRun.exe -'290000': +"290000": installDir: DubWars launch: - config: @@ -140119,18 +136734,18 @@ description: Launch executable: DubWars.app - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: DubWars.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: Linux 32bit Launch executable: DubWars.x86_64 type: none -'290020': +"290020": installDir: LogicBots launch: - config: @@ -140138,7 +136753,7 @@ description: Launch executable: LogicBots.exe - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: LogicBots.x86_64 @@ -140149,12 +136764,12 @@ executable: LogicBots.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: LogicBots.x86 type: default -'290040': +"290040": installDir: Retro Game Crunch launch: - config: @@ -140165,7 +136780,7 @@ oslist: macos description: Launch executable: Retro Game Crunch.app -'290060': +"290060": installDir: Glitchspace launch: - config: @@ -140177,32 +136792,32 @@ description: Launch executable: glitchspace.app - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: glitchspace.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: glitchspace.x86_64 -'290080': +"290080": installDir: Life is Feudal Your Own launch: - config: oslist: windows description: Launch executable: yo_cm_client.exe -'290100': {} -'290180': +"290100": {} +"290180": installDir: Gnomancer launch: - executable: Gnomancer.exe type: default - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" executable: Gnomancer.exe type: config -'290260': +"290260": installDir: Sokobond launch: - config: @@ -140217,7 +136832,7 @@ oslist: linux description: Launch executable: sokobond/run-sokobond.sh -'290280': +"290280": installDir: Volt launch: - config: @@ -140225,12 +136840,12 @@ description: Launch executable: Volt.exe - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: volt.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: volt.x86_64 @@ -140238,7 +136853,7 @@ oslist: macos description: Launch executable: volt.app -'290300': +"290300": installDir: RebelGalaxy launch: - config: @@ -140249,7 +136864,7 @@ oslist: macos description: Launch executable: Launcher.app -'290320': +"290320": installDir: Project Temporality launch: - config: @@ -140259,14 +136874,14 @@ - config: oslist: windows description: Troubleshooting mode - executable: Launcher\\\\Project Temporality Launcher.exe - workingdir: Launcher\\\\ - - arguments: '-forcewindowed' + executable: "Launcher\\\\\\\\Project Temporality Launcher.exe" + workingdir: "Launcher\\\\\\\\" + - arguments: "-forcewindowed" config: oslist: windows description: Force Windowed Mode executable: Project Temporality.exe -'290340': +"290340": installDir: Armello launch: - config: @@ -140278,20 +136893,20 @@ description: Launch executable: armello.app type: none - - arguments: LANG=\"\" %command% + - arguments: "LANG=\\\"\\\" %command%" config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: armello.x86 type: none - - arguments: LANG=\"\" %command% + - arguments: "LANG=\\\"\\\" %command%" config: - osarch: '64' + osarch: "64" oslist: linux executable: armello.x86_64 type: none -'290380': +"290380": installDir: Micron launch: - config: @@ -140303,36 +136918,36 @@ description: Launch executable: Micron.app - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: Micron.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Micron.x86_64 -'290410': +"290410": installDir: Falling Skies The Game launch: - config: oslist: windows description: Launch Game executable: fallingskies.exe - - arguments: '-c' + - arguments: "-c" config: oslist: windows description: Launch Game Configuration executable: fallingskies.exe -'290440': +"290440": installDir: QUALIA3 launch: - description: Launch executable: QUALIA3.exe - description: Config executable: Config.exe -'290460': - installDir: Legionwood 2 - Rise of the Eternal's Realm +"290460": + installDir: "Legionwood 2 - Rise of the Eternal's Realm" launch: - config: oslist: windows @@ -140342,14 +136957,14 @@ oslist: macos description: Launch executable: Legionwood 2.app -'290470': +"290470": installDir: Onigiri launch: - config: oslist: windows description: Launch Onigiri executable: onigiri.exe -'290490': +"290490": installDir: TheFlock launch: - config: @@ -140358,57 +136973,57 @@ executable: flock.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: flock.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: flock.x86_64 type: default - - arguments: '-capture' + - arguments: "-capture" config: betakey: debug oslist: windows description: The Flock with packet capturing executable: flock.exe type: option1 - - arguments: '-capture' + - arguments: "-capture" config: betakey: debug - osarch: '32' + osarch: "32" oslist: linux description: The Flock with packet capturing executable: flock.x86 type: option1 - - arguments: '-capture' + - arguments: "-capture" config: betakey: debug - osarch: '64' + osarch: "64" oslist: linux description: The Flock with packet capturing executable: flock.x86_64 type: option1 - - arguments: '-capture' + - arguments: "-capture" config: betakey: debug-feature oslist: windows description: The Flock with packet capturing executable: flock.exe type: option1 - - arguments: '-capture' + - arguments: "-capture" config: betakey: debug-feature - osarch: '32' + osarch: "32" oslist: linux description: The Flock with packet capturing executable: flock.x86 type: option1 - - arguments: '-capture' + - arguments: "-capture" config: betakey: debug-feature - osarch: '64' + osarch: "64" oslist: linux description: The Flock with packet capturing executable: flock.x86_64 @@ -140417,7 +137032,7 @@ oslist: macos executable: flock.app type: default - - arguments: '-capture' + - arguments: "-capture" config: betakey: mactastic oslist: macos @@ -140426,35 +137041,35 @@ type: option1 - config: oslist: windows - ownsdlc: '544060' + ownsdlc: "544060" description: The Flock Public Beta (recommended) executable: beta/flock.exe type: option2 workingdir: beta - config: - osarch: '32' + osarch: "32" oslist: linux - ownsdlc: '544060' + ownsdlc: "544060" description: The Flock Public Beta (recommended) executable: beta/flock.x86 type: option2 workingdir: beta - config: - osarch: '64' + osarch: "64" oslist: linux - ownsdlc: '544060' + ownsdlc: "544060" description: The Flock Public Beta (recommended) executable: beta/flock.x86_64 type: option2 workingdir: beta - config: oslist: macos - ownsdlc: '544060' + ownsdlc: "544060" description: The Flock Public Beta (recommended) executable: beta/flock.app type: option2 workingdir: beta -'290510': +"290510": installDir: GNOG launch: - config: @@ -140479,7 +137094,7 @@ description: GNOG with mouse accessibility support executable: GNOG.exe type: option1 -'290530': +"290530": installDir: Clandestine launch: - config: @@ -140492,13 +137107,13 @@ description: Launch Linux executable: Clandestine.x86_64 type: none -'290650': +"290650": installDir: Time Ramesside launch: - description: Launch executable: TimeRammeside.exe type: none -'290690': +"290690": installDir: Tonight We Riot launch: - config: @@ -140507,14 +137122,14 @@ type: default - config: oslist: macos - executable: TonightWeRiot_Mac.app\\Contents\\MacOS\\TonightWeRiot_Mac + executable: "TonightWeRiot_Mac.app\\\\Contents\\\\MacOS\\\\TonightWeRiot_Mac" type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: TonightWeRiot_Linux.x86_64 type: default -'290710': +"290710": installDir: CloudChamber launch: - config: @@ -140525,21 +137140,19 @@ oslist: macos description: Launch executable: CloudChamber.app -'290730': +"290730": installDir: MyLands launch: - config: betakey: default oslist: windows description: Launch - description_loc: - english: Launch executable: MyLands.exe - config: betakey: test oslist: windows executable: MyLands.exe -'290750': +"290750": installDir: Earth Year 2066 launch: - config: @@ -140551,16 +137164,16 @@ description: Launch executable: Earth Year 2066.app - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: Earth Year 2066.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Earth Year 2066.x86_64 -'290770': +"290770": installDir: TheFall launch: - config: @@ -140576,31 +137189,30 @@ description: Launch executable: TheFall.x86 type: none -'290790': +"290790": installDir: GreyGoo launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: ClientLauncherG.exe - vacmodulefilename: resource\\sourceinit.dat -'290810': +"290810": installDir: CKC_KLB launch: - config: oslist: windows description: Launch executable: Kaiju.exe -'290850': +"290850": installDir: X-Team launch: - config: oslist: windows - executable: bin\\Game.exe + executable: "bin\\\\Game.exe" type: default workingdir: bin -'290870': +"290870": installDir: Steam Squad launch: - config: @@ -140608,12 +137220,12 @@ description: Launch executable: SteamSquad.exe - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: SteamSquad.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: SteamSquad.x86_64 @@ -140621,7 +137233,7 @@ oslist: macos description: Launch executable: Steam Squad.app -'290890': +"290890": installDir: YMBAB launch: - config: @@ -140636,8 +137248,8 @@ oslist: linux description: Launch executable: YMBAB.x86 -'290970': - installDir: '1849' +"290970": + installDir: "1849" launch: - config: oslist: windows @@ -140647,7 +137259,7 @@ oslist: macos description: Launch executable: 1849.app -'290990': +"290990": installDir: FlowerShopSIF launch: - config: @@ -140662,11 +137274,11 @@ oslist: linux description: Launch executable: Summer In Fairbrook.sh -'2910': +"2910": installDir: Fleet Command launch: - executable: SteamRun.exe -'291010': +"291010": installDir: The Hat Man Shadow Ward launch: - config: @@ -140677,7 +137289,7 @@ oslist: macos description: Launch executable: The Hat Man.app -'291030': +"291030": installDir: AlwaysRememberMe launch: - config: @@ -140692,7 +137304,7 @@ oslist: linux description: Launch executable: Always Remember Me.sh -'291050': +"291050": installDir: PlanetStronghold launch: - config: @@ -140707,49 +137319,45 @@ oslist: linux description: Launch executable: Planet Stronghold.sh -'291070': +"291070": installDir: Slip launch: - config: oslist: windows description: Launch - executable: \\Binaries\\Win32\\UDK.exe + executable: "\\\\Binaries\\\\Win32\\\\UDK.exe" - config: oslist: macos description: Launch executable: Slip.app -'291090': +"291090": installDir: IGTCED launch: - config: oslist: windows executable: IGTCED.exe type: none -'291130': +"291130": installDir: AkaneTheKunoichi launch: - description: Launch executable: AkaneTheKunoichi.exe -'291150': +"291150": installDir: EvolutionRTS launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Evolution RTS - description_loc: - english: Evolution RTS executable: launch.bat type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: Evolution RTS - description_loc: - english: Evolution RTS executable: launch.sh type: default -'291170': +"291170": installDir: RoyalDefense launch: - config: @@ -140760,7 +137368,7 @@ oslist: macos description: Launch executable: Royal Defense.app -'291190': +"291190": installDir: Heroes of Steel launch: - config: @@ -140770,16 +137378,16 @@ - config: oslist: macos description: Launch - executable: HeroesOfSteel.app\\Contents\\MacOS\\HeroesOfSteel + executable: "HeroesOfSteel.app\\\\Contents\\\\MacOS\\\\HeroesOfSteel" - config: oslist: linux description: Play executable: heroesofsteel -'29120': +"29120": installDir: Yumsters 2 Around the World launch: - executable: Yumsters2.exe -'291250': +"291250": installDir: JumpDrive launch: - config: @@ -140788,23 +137396,23 @@ executable: jumpdrive.exe type: none - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch 32 - executable: ./jumpdrive_launcher + executable: "./jumpdrive_launcher" type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch 64 - executable: ./jumpdrive_launcher + executable: "./jumpdrive_launcher" type: none - config: oslist: macos description: Launch OSX - executable: ./jumpdrive_launcher + executable: "./jumpdrive_launcher" type: none -'291270': +"291270": installDir: Vitrum launch: - config: @@ -140815,7 +137423,7 @@ oslist: windows description: Launch Stage Editor executable: Vitrum Stage Editor.exe -'291290': +"291290": installDir: Motte Island launch: - config: @@ -140824,19 +137432,19 @@ executable: Motteisland.exe - description: Launch executable: Motteisland.app -'29130': +"29130": installDir: Musaic Box launch: - - executable: bin\\musaic_Release.exe + - executable: "bin\\\\musaic_Release.exe" workingdir: bin -'291330': +"291330": installDir: FinalSlam2 launch: - config: oslist: windows description: Launch executable: Final Slam 2.exe -'291370': +"291370": installDir: Undead Overlord launch: - config: @@ -140851,7 +137459,7 @@ oslist: linux description: Launch executable: undeadoverlord.x86 -'291390': +"291390": installDir: Three Dead Zed launch: - config: @@ -140862,28 +137470,28 @@ oslist: linux description: Launch executable: 3dz -'291410': +"291410": installDir: Duelyst launch: - - arguments: '-s --token=foo' + - arguments: "-s --token=foo" config: - osarch: '64' + osarch: "64" oslist: windows executable: Duelyst.exe type: default - - arguments: '-s --token=foo' + - arguments: "-s --token=foo" config: - osarch: '64' + osarch: "64" oslist: macos - executable: Duelyst.app\\Contents\\MacOS\\Duelyst + executable: "Duelyst.app\\\\Contents\\\\MacOS\\\\Duelyst" type: default - - arguments: '-s --token=foo' + - arguments: "-s --token=foo" config: - osarch: '32' + osarch: "32" oslist: windows executable: Duelyst.exe type: default -'291430': +"291430": installDir: LostMarbles launch: - config: @@ -140898,23 +137506,23 @@ oslist: linux description: Launch executable: LostMarbles.x86 -'291450': +"291450": installDir: Smugglers5 launch: - config: oslist: windows description: Launch executable: Smugglers5.exe -'291480': +"291480": installDir: Warface launch: - - arguments: '-FromSteam' + - arguments: "-FromSteam" config: oslist: windows description: Launch executable: WarfaceMycomSteamLoader.exe type: none -'291550': +"291550": installDir: Brawlhalla launch: - config: @@ -140925,7 +137533,7 @@ oslist: macos description: Launch executable: Brawlhalla.app -'29160': +"29160": installDir: Blueberry Garden launch: - config: @@ -140934,84 +137542,84 @@ - config: oslist: linux description: Launch - executable: ./BlueberryGarden + executable: "./BlueberryGarden" - config: oslist: macos description: Launch executable: Blueberry Garden.app/Contents/MacOS/BlueberryGarden type: none -'291610': +"291610": installDir: Growing Pains launch: - config: oslist: windows description: Launch executable: GrowingPains.exe - workingdir: . + workingdir: "." - config: oslist: linux - executable: ./GrowingPains + executable: "./GrowingPains" type: none - config: oslist: macos executable: Growing Pains.app/Contents/MacOS/GrowingPains type: none -'291630': +"291630": installDir: Mirror Mysteries launch: - description: Launch executable: mm.exe -'291640': +"291640": installDir: Mirror Mysteries 2 Forgotten Kingdoms launch: - description: Launch executable: MirrorMysteries2_ForgottenKingdoms.exe -'291650': +"291650": installDir: Pillars of Eternity launch: - - arguments: '-steam' + - arguments: "-steam" config: oslist: windows description: Launch executable: PillarsOfEternity.exe - - arguments: '-steam' + - arguments: "-steam" config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: PillarsOfEternity - - arguments: '-steam' + - arguments: "-steam" config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: PillarsOfEternity - - arguments: '-steam' + - arguments: "-steam" config: oslist: macos description: Launch executable: PillarsOfEternity.app -'291690': +"291690": installDir: Empathy launch: - config: oslist: windows executable: Empathy.exe type: default -'291710': +"291710": installDir: The Lost Crown launch: - config: oslist: windows description: Launch executable: TheLostCrown.exe -'291750': {} -'291770': +"291750": {} +"291770": installDir: Midnight Horror launch: - executable: Launcher.exe type: default -'29180': +"29180": installDir: Osmos launch: - config: @@ -141023,14 +137631,14 @@ - config: oslist: linux executable: Osmos -'291840': +"291840": installDir: The Feud launch: - config: oslist: windows description: Launch executable: Feud.exe -'291860': +"291860": installDir: Pit People launch: - config: @@ -141042,16 +137650,16 @@ oslist: macos executable: Pit People.app type: none -'291910': +"291910": installDir: Firefighters 2014 launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: Firefighters2014-x86.exe - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: Firefighters2014-x64.exe @@ -141059,44 +137667,44 @@ oslist: macos description: Launch executable: firefighters2014_osx.app -'291930': +"291930": installDir: Industry Empire launch: - config: oslist: windows description: Launch executable: IndustryEmpire.exe -'291960': +"291960": installDir: Elminage Gothic launch: - config: oslist: windows description: Launch executable: Elminage.exe -'2920': +"2920": installDir: Sub Command launch: - executable: SteamRun.exe -'292000': {} -'292030': +"292000": {} +"292030": installDir: The Witcher 3 launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch - executable: bin\\x64\\witcher3.exe - workingdir: bin\\x64 + executable: "bin\\\\x64\\\\witcher3.exe" + workingdir: "bin\\\\x64" nameLocalized: - czech: 'Zaklínač 3: Divoký hon' - polish: 'Wiedźmin 3: Dziki Gon' - russian: 'Ведьмак 3: Дикая Охота' + czech: "Zaklínač 3: Divoký hon" + polish: "Wiedźmin 3: Dziki Gon" + russian: "Ведьмак 3: Дикая Охота" schinese: 巫师 3:狂猎 -'292090': +"292090": installDir: Rube Works launch: - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: Rube.x86 @@ -141109,11 +137717,11 @@ description: Launch executable: Rube.app - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Rube.x86_64 -'292120': +"292120": installDir: FINAL FANTASY XIII launch: - arguments: /boot @@ -141123,7 +137731,7 @@ executable: FFXiiiLauncher.exe nameLocalized: japanese: ファイナルファンタジーXIII -'292140': +"292140": installDir: FINAL FANTASY XIII-2 launch: - arguments: /boot @@ -141133,7 +137741,7 @@ executable: FFXiii2Launcher.exe nameLocalized: japanese: ファイナルファンタジーXIII-2 -'292160': +"292160": installDir: UFO Aftermath launch: - config: @@ -141144,11 +137752,11 @@ oslist: windows description: Configure executable: Launcher.exe -'292180': +"292180": installDir: X-Plane 10 launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: X-Plane 64Bit executable: X-Plane.exe @@ -141165,7 +137773,7 @@ description: Plane Maker executable: Plane-Maker.exe - config: - osarch: '64' + osarch: "64" oslist: linux description: X-Plane executable: X-Plane-x86_64 @@ -141174,7 +137782,7 @@ description: X-Plane 10 Global - 32 Bit executable: X-Plane-i386 - config: - osarch: '64' + osarch: "64" oslist: macos description: X-Plane executable: X-Plane.app @@ -141198,128 +137806,128 @@ oslist: linux description: Airfoil Maker executable: Airfoil-Maker-i386 -'292200': +"292200": installDir: Crazy Plant Shop launch: - description: Launch executable: CrazyPlantShop.exe -'292240': +"292240": installDir: Spy Fox 2 launch: - - arguments: '--no-console -c scummvm-spyfox2.ini spyfox2' + - arguments: "--no-console -c scummvm-spyfox2.ini spyfox2" config: oslist: windows description: Launch - executable: ScummVM_Windows\\scummvm.exe - workingdir: ScummVM_Windows\\ - - arguments: '-c scummvm-spyfox2.ini spyfox2' + executable: "ScummVM_Windows\\\\scummvm.exe" + workingdir: "ScummVM_Windows\\\\" + - arguments: "-c scummvm-spyfox2.ini spyfox2" config: oslist: macos description: Launch - executable: ScummVM_Mac\\ScummVM.app\\Contents\\MacOS\\scummvm - workingdir: ScummVM_Mac\\ + executable: "ScummVM_Mac\\\\ScummVM.app\\\\Contents\\\\MacOS\\\\scummvm" + workingdir: "ScummVM_Mac\\\\" - config: oslist: linux description: Launch - executable: ScummVM_Linux\\launch_spyfox2.sh - workingdir: ScummVM_Linux\\ -'292260': + executable: "ScummVM_Linux\\\\launch_spyfox2.sh" + workingdir: "ScummVM_Linux\\\\" +"292260": installDir: Spy Fox 3 launch: - - arguments: '--no-console -c scummvm-spyfox3-opengl.ini spyozon' + - arguments: "--no-console -c scummvm-spyfox3-opengl.ini spyozon" config: oslist: windows - executable: ScummVM_Windows\\scummvm.exe + executable: "ScummVM_Windows\\\\scummvm.exe" type: default - workingdir: ScummVM_Windows\\ - - arguments: '--no-console -c scummvm-spyfox3-safe.ini spyozon' + workingdir: "ScummVM_Windows\\\\" + - arguments: "--no-console -c scummvm-spyfox3-safe.ini spyozon" config: oslist: windows - description: Play in \"Safe Graphics\" Mode - executable: ScummVM_Windows\\scummvm.exe + description: "Play in \\\"Safe Graphics\\\" Mode" + executable: "ScummVM_Windows\\\\scummvm.exe" type: none - workingdir: ScummVM_Windows\\ - - arguments: '-c scummvm-spyfox3-opengl.ini spyozon' + workingdir: "ScummVM_Windows\\\\" + - arguments: "-c scummvm-spyfox3-opengl.ini spyozon" config: oslist: macos - executable: ScummVM_Mac\\ScummVM.app\\Contents\\MacOS\\scummvm + executable: "ScummVM_Mac\\\\ScummVM.app\\\\Contents\\\\MacOS\\\\scummvm" type: default - workingdir: ScummVM_Mac\\ - - arguments: '-c scummvm-spyfox3-safe.ini spyozon' + workingdir: "ScummVM_Mac\\\\" + - arguments: "-c scummvm-spyfox3-safe.ini spyozon" config: oslist: macos - description: Play in \"Safe Graphics\" Mode - executable: ScummVM_Mac\\ScummVM.app\\Contents\\MacOS\\scummvm + description: "Play in \\\"Safe Graphics\\\" Mode" + executable: "ScummVM_Mac\\\\ScummVM.app\\\\Contents\\\\MacOS\\\\scummvm" type: none - workingdir: ScummVM_Mac\\ + workingdir: "ScummVM_Mac\\\\" - config: - osarch: '64' + osarch: "64" oslist: linux - executable: ScummVM_Linux\\launch_spyfox3_opengl.sh + executable: "ScummVM_Linux\\\\launch_spyfox3_opengl.sh" type: default - workingdir: ScummVM_Linux\\ + workingdir: "ScummVM_Linux\\\\" - config: - osarch: '64' + osarch: "64" oslist: linux - description: Play in \"Safe Graphics\" Mode - executable: ScummVM_Linux\\launch_spyfox3_safe.sh + description: "Play in \\\"Safe Graphics\\\" Mode" + executable: "ScummVM_Linux\\\\launch_spyfox3_safe.sh" type: none - workingdir: ScummVM_Linux\\ -'292280': + workingdir: "ScummVM_Linux\\\\" +"292280": installDir: Spy Fox In Cheese Chase launch: - - arguments: '--no-console -c scummvm-spyfoxcheesechase.ini chase' + - arguments: "--no-console -c scummvm-spyfoxcheesechase.ini chase" config: oslist: windows description: Launch - executable: ScummVM_Windows\\scummvm.exe - workingdir: ScummVM_Windows\\ - - arguments: '-c scummvm-spyfoxcheesechase.ini chase' + executable: "ScummVM_Windows\\\\scummvm.exe" + workingdir: "ScummVM_Windows\\\\" + - arguments: "-c scummvm-spyfoxcheesechase.ini chase" config: oslist: macos description: Launch - executable: ScummVM_Mac\\ScummVM.app\\Contents\\MacOS\\scummvm - workingdir: ScummVM_Mac\\ + executable: "ScummVM_Mac\\\\ScummVM.app\\\\Contents\\\\MacOS\\\\scummvm" + workingdir: "ScummVM_Mac\\\\" - config: oslist: linux description: Launch - executable: ScummVM_Linux\\launch_spyfoxcheesechase.sh - workingdir: ScummVM_Linux\\ -'292300': + executable: "ScummVM_Linux\\\\launch_spyfoxcheesechase.sh" + workingdir: "ScummVM_Linux\\\\" +"292300": installDir: Spy Fox In Hold the Mustard launch: - - arguments: '--no-console -c scummvm-spyfoxholdthemustard.ini mustard' + - arguments: "--no-console -c scummvm-spyfoxholdthemustard.ini mustard" config: oslist: windows description: Launch - executable: ScummVM_Windows\\scummvm.exe - workingdir: ScummVM_Windows\\ - - arguments: '-c scummvm-spyfoxholdthemustard.ini mustard' + executable: "ScummVM_Windows\\\\scummvm.exe" + workingdir: "ScummVM_Windows\\\\" + - arguments: "-c scummvm-spyfoxholdthemustard.ini mustard" config: oslist: macos description: Launch - executable: ScummVM_Mac\\ScummVM.app\\Contents\\MacOS\\scummvm - workingdir: ScummVM_Mac\\ + executable: "ScummVM_Mac\\\\ScummVM.app\\\\Contents\\\\MacOS\\\\scummvm" + workingdir: "ScummVM_Mac\\\\" - config: oslist: linux description: Launch - executable: ScummVM_Linux\\launch_spyfoxholdthemustard.sh - workingdir: ScummVM_Linux\\ -'292330': + executable: "ScummVM_Linux\\\\launch_spyfoxholdthemustard.sh" + workingdir: "ScummVM_Linux\\\\" +"292330": installDir: Starship Corporation launch: - config: oslist: windows description: Launch executable: StarshipCorporation.exe -'292370': +"292370": installDir: DarkEnd launch: - config: oslist: windows description: Launch executable: game.exe -'292380': +"292380": installDir: Racer 8 launch: - config: @@ -141330,16 +137938,16 @@ oslist: macos description: Launch executable: Racer8.app -'292390': +"292390": installDir: Realms of the Haunting launch: - - arguments: ' -conf \"..\\dosboxROTH.conf\" -conf \"..\\dosboxROTH_single.conf\" -noconsole -c exit' + - arguments: " -conf \\\"..\\\\dosboxROTH.conf\\\" -conf \\\"..\\\\dosboxROTH_single.conf\\\" -noconsole -c exit" config: oslist: windows description: Launch - executable: dosbox\\dosbox.exe + executable: "dosbox\\\\dosbox.exe" workingdir: DOSBOX -'292400': +"292400": installDir: Unrest launch: - config: @@ -141354,7 +137962,7 @@ oslist: macos description: Launch executable: Unrest.app -'292410': +"292410": installDir: Street Racing Syndicate launch: - config: @@ -141362,7 +137970,7 @@ description: Launch executable: bin/SRS.exe workingdir: bin -'292420': +"292420": installDir: Panzer Elite Action Fields of Glory launch: - config: @@ -141372,13 +137980,13 @@ - config: oslist: windows description: Launch Panzer Elite Action - executable: Docs\\PEA_Manual.pdf -'292480': + executable: "Docs\\\\PEA_Manual.pdf" +"292480": installDir: Magical Battle Festa launch: - description: Launch executable: MBF.exe -'292500': +"292500": installDir: Kero Blaster launch: - config: @@ -141390,21 +137998,21 @@ english: Kero Blaster japanese: ケロブラスター schinese: 青蛙爆破者 -'292570': +"292570": installDir: Chompy Chomp Chomp launch: - config: oslist: windows description: Launch executable: ChompyChompChomp.exe -'292600': +"292600": installDir: Duet launch: - config: oslist: windows description: Launch executable: Duet.exe - - arguments: '-tablet 1' + - arguments: "-tablet 1" config: oslist: windows description: Tablet Interface @@ -141414,19 +138022,19 @@ executable: Duet.app type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: Duet type: none -'292620': +"292620": installDir: Pressured launch: - config: oslist: windows description: Launch executable: Pressured.exe -'292630': - installDir: Uriel's Chasm +"292630": + installDir: "Uriel's Chasm" launch: - config: oslist: windows @@ -141436,144 +138044,144 @@ oslist: windows description: dxwebsetup.exe (recommended first time) executable: dxwebsetup.exe -'292660': +"292660": installDir: Princess Isabella launch: - description: Launch executable: Princess.exe -'292670': +"292670": installDir: Princess Isabella - Return of the Curse launch: - description: Launch executable: PrincessIsabella_ReturnoftheCurse.exe -'292730': +"292730": installDir: Call of Duty - Infinite Warfare launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: iw7_ship.exe type: default -'292760': +"292760": installDir: Rise of Prussia Gold launch: - description: Launch executable: ROP.exe -'292780': +"292780": installDir: Pajama Sam 2 launch: - - arguments: '--no-console -c scummvm-pajamasam2-opengl.ini pajama2' + - arguments: "--no-console -c scummvm-pajamasam2-opengl.ini pajama2" config: oslist: windows - executable: ScummVM_Windows\\scummvm.exe + executable: "ScummVM_Windows\\\\scummvm.exe" type: default - workingdir: ScummVM_Windows\\ - - arguments: '--no-console -c scummvm-pajamasam2-safe.ini pajama2' + workingdir: "ScummVM_Windows\\\\" + - arguments: "--no-console -c scummvm-pajamasam2-safe.ini pajama2" config: oslist: windows - description: Play in \"Safe Graphics\" Mode - executable: ScummVM_Windows\\scummvm.exe + description: "Play in \\\"Safe Graphics\\\" Mode" + executable: "ScummVM_Windows\\\\scummvm.exe" type: none - workingdir: ScummVM_Windows\\ - - arguments: '-c scummvm-pajamasam2-opengl.ini pajama2' + workingdir: "ScummVM_Windows\\\\" + - arguments: "-c scummvm-pajamasam2-opengl.ini pajama2" config: oslist: macos - executable: ScummVM_Mac\\ScummVM.app\\Contents\\MacOS\\scummvm + executable: "ScummVM_Mac\\\\ScummVM.app\\\\Contents\\\\MacOS\\\\scummvm" type: default - workingdir: ScummVM_Mac\\ - - arguments: '-c scummvm-pajamasam2-safe.ini pajama2' + workingdir: "ScummVM_Mac\\\\" + - arguments: "-c scummvm-pajamasam2-safe.ini pajama2" config: oslist: macos - description: Play in \"Safe Graphics\" Mode - executable: ScummVM_Mac\\ScummVM.app\\Contents\\MacOS\\scummvm + description: "Play in \\\"Safe Graphics\\\" Mode" + executable: "ScummVM_Mac\\\\ScummVM.app\\\\Contents\\\\MacOS\\\\scummvm" type: none - workingdir: ScummVM_Mac\\ + workingdir: "ScummVM_Mac\\\\" - config: - osarch: '64' + osarch: "64" oslist: linux - executable: ScummVM_Linux\\launch_pajamasam2_opengl.sh + executable: "ScummVM_Linux\\\\launch_pajamasam2_opengl.sh" type: default - workingdir: ScummVM_Linux\\ + workingdir: "ScummVM_Linux\\\\" - config: - osarch: '64' + osarch: "64" oslist: linux - description: Play in \"Safe Graphics\" Mode - executable: ScummVM_Linux\\launch_pajamasam2_safe.sh + description: "Play in \\\"Safe Graphics\\\" Mode" + executable: "ScummVM_Linux\\\\launch_pajamasam2_safe.sh" type: none - workingdir: ScummVM_Linux\\ -'292800': + workingdir: "ScummVM_Linux\\\\" +"292800": installDir: Pajama Sam 3 launch: - - arguments: '--no-console -c scummvm-pajamasam3.ini pajama3' + - arguments: "--no-console -c scummvm-pajamasam3.ini pajama3" config: oslist: windows description: Launch - executable: ScummVM_Windows\\scummvm.exe - workingdir: ScummVM_Windows\\ - - arguments: '-c scummvm-pajamasam3.ini pajama3' + executable: "ScummVM_Windows\\\\scummvm.exe" + workingdir: "ScummVM_Windows\\\\" + - arguments: "-c scummvm-pajamasam3.ini pajama3" config: oslist: macos description: Launch - executable: ScummVM_Mac\\ScummVM.app\\Contents\\MacOS\\scummvm - workingdir: ScummVM_Mac\\ + executable: "ScummVM_Mac\\\\ScummVM.app\\\\Contents\\\\MacOS\\\\scummvm" + workingdir: "ScummVM_Mac\\\\" - config: oslist: linux description: Launch - executable: ScummVM_Linux\\launch_pajamasam3.sh - workingdir: ScummVM_Linux\\ -'292820': + executable: "ScummVM_Linux\\\\launch_pajamasam3.sh" + workingdir: "ScummVM_Linux\\\\" +"292820": installDir: Pajama Sam 4 launch: - config: oslist: windows description: Launch executable: PajamaLRS.exe -'292840': +"292840": installDir: Pajama Sams Sock Works launch: - - arguments: '--no-console -c scummvm-pajamasamssockworks.ini pajamasockworks' + - arguments: "--no-console -c scummvm-pajamasamssockworks.ini pajamasockworks" config: oslist: windows description: Launch - executable: ScummVM_Windows\\scummvm.exe - workingdir: ScummVM_Windows\\ - - arguments: '-c scummvm-pajamasamssockworks.ini pajamasockworks' + executable: "ScummVM_Windows\\\\scummvm.exe" + workingdir: "ScummVM_Windows\\\\" + - arguments: "-c scummvm-pajamasamssockworks.ini pajamasockworks" config: oslist: macos description: Launch - executable: ScummVM_Mac\\ScummVM.app\\Contents\\MacOS\\scummvm - workingdir: ScummVM_Mac\\ + executable: "ScummVM_Mac\\\\ScummVM.app\\\\Contents\\\\MacOS\\\\scummvm" + workingdir: "ScummVM_Mac\\\\" - config: oslist: linux description: Launch - executable: ScummVM_Linux\\launch_pajamasamssockworks.sh - workingdir: ScummVM_Linux\\ -'292860': + executable: "ScummVM_Linux\\\\launch_pajamasamssockworks.sh" + workingdir: "ScummVM_Linux\\\\" +"292860": installDir: Pajama Sams Lost and Found launch: - - arguments: '--no-console -c scummvm-pajamasamslostandfound.ini pajamalostandfound' + - arguments: "--no-console -c scummvm-pajamasamslostandfound.ini pajamalostandfound" config: oslist: windows description: Launch - executable: ScummVM_Windows\\scummvm.exe - workingdir: ScummVM_Windows\\ - - arguments: '-c scummvm-pajamasamslostandfound.ini pajamalostandfound' + executable: "ScummVM_Windows\\\\scummvm.exe" + workingdir: "ScummVM_Windows\\\\" + - arguments: "-c scummvm-pajamasamslostandfound.ini pajamalostandfound" config: oslist: macos description: Launch - executable: ScummVM_Mac\\ScummVM.app\\Contents\\MacOS\\scummvm - workingdir: ScummVM_Mac\\ + executable: "ScummVM_Mac\\\\ScummVM.app\\\\Contents\\\\MacOS\\\\scummvm" + workingdir: "ScummVM_Mac\\\\" - config: oslist: linux description: Launch - executable: ScummVM_Linux\\launch_pajamasamslostandfound.sh - workingdir: ScummVM_Linux\\ -'292880': - installDir: Robin's Quest + executable: "ScummVM_Linux\\\\launch_pajamasamslostandfound.sh" + workingdir: "ScummVM_Linux\\\\" +"292880": + installDir: "Robin's Quest" launch: - description: Launch executable: RobinsQuest.exe -'292910': +"292910": installDir: Deponia The Complete Journey launch: - config: @@ -141585,25 +138193,25 @@ description: Visionaire Configuration Tool executable: VisionaireConfigurationTool.exe - config: - osarch: '64' + osarch: "64" oslist: macos description: Launch executable: Deponia - The Complete Journey.app - workingdir: ./ + workingdir: "./" - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: start -'292930': +"292930": installDir: Black Mirror launch: - config: oslist: windows description: Launch Black Mirror executable: agds.exe -'292990': - installDir: Nobunaga's Ambition Souzou +"292990": + installDir: "Nobunaga's Ambition Souzou" launch: - config: oslist: windows @@ -141611,14 +138219,14 @@ executable: Nobu14Launcher.exe nameLocalized: tchinese: 信長之野望・創造 -'293010': +"293010": installDir: Caribbean! launch: - config: oslist: windows description: Launch executable: caribbean!.exe -'293160': +"293160": installDir: AntharioN launch: - config: @@ -141629,14 +138237,14 @@ oslist: windows description: Launch executable: AntharioN.exe -'293180': +"293180": installDir: Overcast - Walden and the Werewolf launch: - config: oslist: windows description: Launch executable: Overcast - Walden and the Werewolf.exe -'293200': +"293200": installDir: Sentinel launch: - config: @@ -141651,37 +138259,37 @@ oslist: linux description: Launch executable: Sentinel.x86 -'293220': +"293220": installDir: H-Hour Worlds Elite launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: H-Hour - executable: .\\Launch_H-Hour.exe + executable: ".\\\\Launch_H-Hour.exe" type: none -'293240': +"293240": installDir: Cosmochoria launch: - - arguments: '--enable-webgl --ignore-gpu-blacklist' + - arguments: "--enable-webgl --ignore-gpu-blacklist" config: oslist: windows description: Launch executable: nw.exe type: default - - arguments: '--enable-webgl --ignore-gpu-blacklist --in-process-gpu' + - arguments: "--enable-webgl --ignore-gpu-blacklist --in-process-gpu" config: oslist: macos description: Launch executable: nw.app type: default - - arguments: '--enable-webgl --ignore-gpu-blacklist --in-process-gpu' + - arguments: "--enable-webgl --ignore-gpu-blacklist --in-process-gpu" config: oslist: linux description: Launch executable: nw type: default -'293260': +"293260": installDir: CardHunter launch: - config: @@ -141693,15 +138301,15 @@ description: Launch executable: CardHunter.app/Contents/MacOS/CardHunter workingdir: CardHunter.app/Contents/Resources/ -'293280': +"293280": installDir: Wander launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: bin64/wander.exe -'293300': +"293300": installDir: LEVEL 22 launch: - config: @@ -141713,23 +138321,23 @@ description: Launch executable: LEVEL 22.app - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: LEVEL 22 Linux.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: LEVEL 22.x86_64 -'293320': +"293320": installDir: ComaMortuary launch: - config: oslist: windows description: Episode One - executable: Binaries\\Win32\\UDK.exe -'293340': + executable: "Binaries\\\\Win32\\\\UDK.exe" +"293340": installDir: The Good Life launch: - config: @@ -141740,7 +138348,7 @@ oslist: macos description: Launch executable: TGL.app -'293400': +"293400": installDir: Epic Space launch: - config: @@ -141749,26 +138357,26 @@ type: none - config: oslist: macos - description: 'Epic Space: Online (3D)' + description: "Epic Space: Online (3D)" executable: Run_ESO_Launchpad(Mac).command type: none - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch 32bit Linux executable: Run_ESO_Launchpad_Linux32.sh - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch 64bit Linux executable: Run_ESO_Launchpad_Linux64.sh - config: - osarch: '64' + osarch: "64" oslist: windows - description: 'Play Epic Space: Online (3D)' + description: "Play Epic Space: Online (3D)" executable: ESO_Launcher.exe type: none -'293420': +"293420": installDir: Heldric launch: - config: @@ -141776,20 +138384,20 @@ description: Launch executable: heldric.exe - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: heldric.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: heldric.x86_64 -'293440': +"293440": installDir: ElliotQuestApp launch: - config: - osarch: '64' + osarch: "64" oslist: macos description: Launch Mac (original html5 version) executable: elliot_quest.app @@ -141800,30 +138408,30 @@ executable: ElliotQuest.exe type: none - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch Linux 32 (original html5 version) executable: elliot_quest/elliot type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch Linux 64 (original html5 version) executable: elliot_quest/elliot type: none -'293460': +"293460": installDir: IShallRemain launch: - config: oslist: windows description: Launch - executable: ./System/IShallRemain.exe - workingdir: ./System/ -'293480': + executable: "./System/IShallRemain.exe" + workingdir: "./System/" +"293480": installDir: FRONTIERS launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: Frontiers.exe @@ -141837,11 +138445,11 @@ description: Launch executable: Frontiers.x86 - config: - osarch: '64' + osarch: "64" oslist: windows executable: Frontiers.exe type: none -'293500': +"293500": installDir: Amazing World launch: - config: @@ -141852,26 +138460,26 @@ oslist: macos description: Launch executable: AmazingWorld.app -'293520': +"293520": installDir: CarnivoresReborn launch: - description: Launch executable: Carnivores-master.exe -'293540': +"293540": installDir: GAR launch: - config: oslist: windows description: Launch executable: GAR.exe -'293600': +"293600": installDir: Arson And Plunder launch: - config: oslist: windows description: Launch executable: ArsonAndPlunder.exe -'293660': +"293660": installDir: TRI launch: - config: @@ -141879,23 +138487,23 @@ description: Launch executable: tri.exe - config: - osarch: '64' + osarch: "64" oslist: macos description: Launch executable: tri.app - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: tri.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: tri.x86_64 nameLocalized: schinese: TRI:友情与癫狂的魔法三角 -'293680': +"293680": installDir: Cinders launch: - config: @@ -141907,27 +138515,27 @@ description: Launch executable: Cinders.app/Contents/MacOS/Mac_Runner type: none -'293720': +"293720": installDir: Dark Raid launch: - config: oslist: windows description: Launch executable: Binaries/Win32/UDK.exe -'293740': +"293740": installDir: RoadNotTaken launch: - - arguments: '-console' + - arguments: "-console" config: oslist: macos description: Launch with Console executable: run_osx.sh - - arguments: '-console' + - arguments: "-console" config: oslist: windows description: Launch with Console executable: RoadNotTaken.exe -'293760': +"293760": installDir: Automation launch: - config: @@ -141940,44 +138548,38 @@ executable: Automation_Shipping_Steam.exe type: none - config: - osarch: '64' + osarch: "64" oslist: windows description: Play Automation - No Launcher executable: UE424/AutomationGame/Binaries/Win64/AutomationGame-Win64-Shipping.exe type: none - config: - osarch: '32' + osarch: "32" oslist: windows description: Play Automation - No Launcher executable: UE424/AutomationGame/Binaries/Win32/AutomationGame-Win32-Shipping.exe type: none - config: betakey: nightly - osarch: '64' + osarch: "64" oslist: windows description: Nightly Dev - description_loc: - english: Nightly Dev executable: UE427/AutomationGame/Binaries/Win64/AutomationGame.exe - config: betakey: closedbeta - osarch: '64' + osarch: "64" oslist: windows description: Automation - No Launcher (Beta) - description_loc: - english: Automation - No Launcher (Beta) executable: UE427/AutomationGame/Binaries/Win64/AutomationGame-Win64-Shipping.exe type: option1 - config: betakey: openbeta - osarch: '64' + osarch: "64" oslist: windows description: Automation - No Launcher (Beta) - description_loc: - english: Automation - No Launcher (Beta) executable: UE427/AutomationGame/Binaries/Win64/AutomationGame-Win64-Shipping.exe type: option1 -'293780': +"293780": installDir: Crawl launch: - config: @@ -141985,7 +138587,7 @@ description: Launch executable: Crawl.exe - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: Crawl.x86 @@ -141994,12 +138596,12 @@ description: Launch executable: Crawl.app - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Crawl.x86_64 -'293800': {} -'293840': +"293800": {} +"293840": installDir: CultOfTheWind launch: - config: @@ -142014,7 +138616,7 @@ oslist: linux description: Launch executable: cultofthewind.x86 -'293860': +"293860": installDir: White Noise Online launch: - config: @@ -142029,7 +138631,7 @@ oslist: linux description: Launch executable: WhiteNoiseOnline -'293880': +"293880": installDir: Dark Scavenger launch: - config: @@ -142043,8 +138645,8 @@ - config: oslist: linux description: Run script - executable: ./run.sh -'293900': + executable: "./run.sh" +"293900": installDir: Pivvot launch: - config: @@ -142059,7 +138661,7 @@ oslist: linux description: Launch Pivvot executable: Pivvot.x86 -'293920': +"293920": installDir: SpiritedHeart launch: - config: @@ -142074,12 +138676,11 @@ oslist: linux description: Launch executable: SpiritedHeartDeluxe.sh -'293940': +"293940": installDir: Kill The Bad Guy launch: - config: oslist: windows - vrmode: '0' description: Launch executable: KillTheBadGuy.exe - config: @@ -142090,19 +138691,19 @@ oslist: linux description: Launch executable: KillTheBadGuy_x86.sh -'293960': +"293960": installDir: Spice Road launch: - config: oslist: windows description: Launch executable: SpiceRoad.exe -'293980': +"293980": installDir: baronwittard launch: - description: Launch executable: baron_wittard.exe -'294000': +"294000": installDir: KnightSquad launch: - config: @@ -142110,7 +138711,7 @@ description: Start Knight Squad executable: KnightSquad.exe - config: - osarch: '32' + osarch: "32" oslist: linux description: Start Knight Squad executable: KnightSquad.x86 @@ -142119,11 +138720,11 @@ description: Start Knight Squad executable: KnightSquad.app - config: - osarch: '64' + osarch: "64" oslist: linux description: Start Knight Squad executable: KnightSquad.x86_64 -'294020': +"294020": installDir: MerchantsOfKaidan launch: - config: @@ -142142,15 +138743,15 @@ oslist: linux description: Launch executable: Kaidan.x86 -'294040': +"294040": installDir: Loot Hero DX launch: - config: oslist: windows description: Launch executable: Loot Hero DX.exe -'294060': - installDir: Aaru's Awakening +"294060": + installDir: "Aaru's Awakening" launch: - config: oslist: windows @@ -142164,11 +138765,11 @@ oslist: linux description: Launch executable: aaru.x86 -'294100': +"294100": installDir: RimWorld launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: RimWorldWin.exe @@ -142183,60 +138784,60 @@ executable: start_RimWorld.sh type: none - config: - osarch: '64' + osarch: "64" oslist: windows executable: RimWorldWin64.exe type: none - config: betakey: beta18 - osarch: '64' + osarch: "64" oslist: windows description: RimWorld Beta 18 executable: RimWorldWin.exe type: none - config: betakey: alpha17 - osarch: '64' + osarch: "64" oslist: windows description: RimWorld Alpha 17 executable: RimWorldWin.exe type: none - config: betakey: alpha16 - osarch: '64' + osarch: "64" oslist: windows description: RimWorld Alpha 16 executable: RimWorldWin.exe type: none - config: betakey: alpha15 - osarch: '64' + osarch: "64" oslist: windows description: RimWorld Alpha 15 executable: RimWorldWin.exe type: none - config: betakey: alpha14 - osarch: '64' + osarch: "64" oslist: windows description: RimWorld Alpha 14 executable: RimWorldWin.exe type: none - config: betakey: alpha13 - osarch: '64' + osarch: "64" oslist: windows description: RimWorld Alpha 13 executable: RimWorldWin.exe type: none - config: betakey: alpha4 - osarch: '64' + osarch: "64" oslist: windows description: RimWorld Alpha 4 executable: RimWorldWin.exe type: none -'294120': +"294120": installDir: Carnage launch: - config: @@ -142253,7 +138854,7 @@ description: Launch Linux executable: Carnage.x86 type: none -'294140': +"294140": installDir: They Breathe launch: - config: @@ -142271,32 +138872,32 @@ oslist: macos executable: Mac/TheyBreathe.app/Contents/MacOS/They Breathe type: none -'294160': +"294160": installDir: Galcon 2 launch: - config: oslist: windows description: Windows executable: galcon2.exe - workingdir: . + workingdir: "." - config: oslist: macos description: Mac executable: Galcon 2.app - workingdir: . + workingdir: "." - config: oslist: linux description: Linux executable: bin/main workingdir: bin -'294190': +"294190": installDir: A-Men 2 launch: - config: oslist: windows description: Launch executable: A-Men 2.exe -'294230': +"294230": installDir: Millie launch: - config: @@ -142311,14 +138912,14 @@ oslist: linux description: Launch executable: Millie.x86 -'294280': +"294280": installDir: Scooby-Doo! & Looney Tunes Cartoon Universe Adventure launch: - config: oslist: windows description: Launch executable: CartoonUniverse.exe -'294370': +"294370": installDir: Crowntakers launch: - config: @@ -142333,12 +138934,12 @@ oslist: linux description: Launch executable: Crowntakers.x86 -'294390': +"294390": installDir: Escape The Lost Kingdom The Forgotten Pharaoh launch: - description: Launch executable: ETLK.exe -'294440': +"294440": installDir: Shadowgate launch: - config: @@ -142353,297 +138954,297 @@ oslist: linux description: Launch executable: Shadowgate.x86 -'294460': +"294460": installDir: Fenix Rage launch: - config: oslist: windows description: Launch executable: Fenix Rage.exe -'294530': +"294530": installDir: Freddi Fish 2 launch: - - arguments: '--no-console -c scummvm-freddifish2.ini freddi2' + - arguments: "--no-console -c scummvm-freddifish2.ini freddi2" config: oslist: windows description: Launch - executable: ScummVM_Windows\\scummvm.exe - workingdir: ScummVM_Windows\\ - - arguments: '-c scummvm-freddifish2.ini freddi2' + executable: "ScummVM_Windows\\\\scummvm.exe" + workingdir: "ScummVM_Windows\\\\" + - arguments: "-c scummvm-freddifish2.ini freddi2" config: oslist: macos description: Launch - executable: ScummVM_Mac\\ScummVM.app\\Contents\\MacOS\\scummvm - workingdir: ScummVM_Mac\\ + executable: "ScummVM_Mac\\\\ScummVM.app\\\\Contents\\\\MacOS\\\\scummvm" + workingdir: "ScummVM_Mac\\\\" - config: oslist: linux description: Launch - executable: ScummVM_Linux\\launch_freddifish2.sh - workingdir: ScummVM_Linux\\ -'294540': + executable: "ScummVM_Linux\\\\launch_freddifish2.sh" + workingdir: "ScummVM_Linux\\\\" +"294540": installDir: Freddi Fish 3 launch: - - arguments: '--no-console -c scummvm-freddifish3.ini freddi3' + - arguments: "--no-console -c scummvm-freddifish3.ini freddi3" config: oslist: windows description: Launch - executable: ScummVM_Windows\\scummvm.exe - workingdir: ScummVM_Windows\\ - - arguments: '-c scummvm-freddifish3.ini freddi3' + executable: "ScummVM_Windows\\\\scummvm.exe" + workingdir: "ScummVM_Windows\\\\" + - arguments: "-c scummvm-freddifish3.ini freddi3" config: oslist: macos description: Launch - executable: ScummVM_Mac\\ScummVM.app\\Contents\\MacOS\\scummvm - workingdir: ScummVM_Mac\\ + executable: "ScummVM_Mac\\\\ScummVM.app\\\\Contents\\\\MacOS\\\\scummvm" + workingdir: "ScummVM_Mac\\\\" - config: oslist: linux description: Launch - executable: ScummVM_Linux\\launch_freddifish3.sh - workingdir: ScummVM_Linux\\ -'294550': + executable: "ScummVM_Linux\\\\launch_freddifish3.sh" + workingdir: "ScummVM_Linux\\\\" +"294550": installDir: Freddi Fish 4 launch: - - arguments: '--no-console -c scummvm-freddifish4.ini freddi4' + - arguments: "--no-console -c scummvm-freddifish4.ini freddi4" config: oslist: windows description: Launch - executable: ScummVM_Windows\\scummvm.exe - workingdir: ScummVM_Windows\\ - - arguments: '-c scummvm-freddifish4.ini freddi4' + executable: "ScummVM_Windows\\\\scummvm.exe" + workingdir: "ScummVM_Windows\\\\" + - arguments: "-c scummvm-freddifish4.ini freddi4" config: oslist: macos description: Launch - executable: ScummVM_Mac\\ScummVM.app\\Contents\\MacOS\\scummvm - workingdir: ScummVM_Mac\\ + executable: "ScummVM_Mac\\\\ScummVM.app\\\\Contents\\\\MacOS\\\\scummvm" + workingdir: "ScummVM_Mac\\\\" - config: oslist: linux description: Launch - executable: ScummVM_Linux\\launch_freddifish4.sh - workingdir: ScummVM_Linux\\ -'294570': + executable: "ScummVM_Linux\\\\launch_freddifish4.sh" + workingdir: "ScummVM_Linux\\\\" +"294570": installDir: Freddi Fish 5 launch: - - arguments: '--no-console -c scummvm-freddifish5.ini freddi5' + - arguments: "--no-console -c scummvm-freddifish5.ini freddi5" config: oslist: windows description: Launch - executable: ScummVM_Windows\\scummvm.exe - workingdir: ScummVM_Windows\\ - - arguments: '-c scummvm-freddifish5.ini freddi5' + executable: "ScummVM_Windows\\\\scummvm.exe" + workingdir: "ScummVM_Windows\\\\" + - arguments: "-c scummvm-freddifish5.ini freddi5" config: oslist: macos description: Launch - executable: ScummVM_Mac\\ScummVM.app\\Contents\\MacOS\\scummvm - workingdir: ScummVM_Mac\\ + executable: "ScummVM_Mac\\\\ScummVM.app\\\\Contents\\\\MacOS\\\\scummvm" + workingdir: "ScummVM_Mac\\\\" - config: oslist: linux description: Launch - executable: ScummVM_Linux\\launch_freddifish5.sh - workingdir: ScummVM_Linux\\ -'294580': + executable: "ScummVM_Linux\\\\launch_freddifish5.sh" + workingdir: "ScummVM_Linux\\\\" +"294580": installDir: Freddi Fish and Luthers Water Worries launch: - - arguments: '--no-console -c scummvm-freddiwaterworries.ini freddiwaterworries' + - arguments: "--no-console -c scummvm-freddiwaterworries.ini freddiwaterworries" config: oslist: windows description: Launch - executable: ScummVM_Windows\\scummvm.exe - workingdir: ScummVM_Windows\\ - - arguments: '-c scummvm-freddiwaterworries.ini freddiwaterworries' + executable: "ScummVM_Windows\\\\scummvm.exe" + workingdir: "ScummVM_Windows\\\\" + - arguments: "-c scummvm-freddiwaterworries.ini freddiwaterworries" config: oslist: macos description: Launch - executable: ScummVM_Mac\\ScummVM.app\\Contents\\MacOS\\scummvm - workingdir: ScummVM_Mac\\ + executable: "ScummVM_Mac\\\\ScummVM.app\\\\Contents\\\\MacOS\\\\scummvm" + workingdir: "ScummVM_Mac\\\\" - config: oslist: linux description: Launch - executable: ScummVM_Linux\\launch_freddiwaterworries.sh - workingdir: ScummVM_Linux\\ -'294590': + executable: "ScummVM_Linux\\\\launch_freddiwaterworries.sh" + workingdir: "ScummVM_Linux\\\\" +"294590": installDir: Wars and Warriors - Joan of Arc launch: - config: oslist: windows description: Launch executable: joan.exe -'294650': +"294650": installDir: Putt-Putt 2 launch: - - arguments: '--no-console -c scummvm-puttputtgoestothemoon.ini puttmoon' + - arguments: "--no-console -c scummvm-puttputtgoestothemoon.ini puttmoon" config: oslist: windows description: Launch - executable: ScummVM_Windows\\scummvm.exe - workingdir: ScummVM_Windows\\ - - arguments: '-c scummvm-puttputtgoestothemoon.ini puttmoon' + executable: "ScummVM_Windows\\\\scummvm.exe" + workingdir: "ScummVM_Windows\\\\" + - arguments: "-c scummvm-puttputtgoestothemoon.ini puttmoon" config: oslist: macos description: Launch - executable: ScummVM_Mac\\ScummVM.app\\Contents\\MacOS\\scummvm - workingdir: ScummVM_Mac\\ + executable: "ScummVM_Mac\\\\ScummVM.app\\\\Contents\\\\MacOS\\\\scummvm" + workingdir: "ScummVM_Mac\\\\" - config: oslist: linux description: Launch - executable: ScummVM_Linux\\launch_puttputtgoestothemoon.sh - workingdir: ScummVM_Linux\\ -'294660': + executable: "ScummVM_Linux\\\\launch_puttputtgoestothemoon.sh" + workingdir: "ScummVM_Linux\\\\" +"294660": installDir: Putt-Putt Saves The Zoo launch: - - arguments: '--no-console -c scummvm-puttzoo-opengl.ini puttzoo' + - arguments: "--no-console -c scummvm-puttzoo-opengl.ini puttzoo" config: oslist: windows - executable: ScummVM_Windows\\scummvm.exe + executable: "ScummVM_Windows\\\\scummvm.exe" type: default - workingdir: ScummVM_Windows\\ - - arguments: '--no-console -c scummvm-puttzoo-safe.ini puttzoo' + workingdir: "ScummVM_Windows\\\\" + - arguments: "--no-console -c scummvm-puttzoo-safe.ini puttzoo" config: oslist: windows - description: Play in \"Safe Graphics\" Mode - executable: ScummVM_Windows\\scummvm.exe + description: "Play in \\\"Safe Graphics\\\" Mode" + executable: "ScummVM_Windows\\\\scummvm.exe" type: none - workingdir: ScummVM_Windows\\ - - arguments: '-c scummvm-puttzoo-opengl.ini puttzoo' + workingdir: "ScummVM_Windows\\\\" + - arguments: "-c scummvm-puttzoo-opengl.ini puttzoo" config: oslist: macos - executable: ScummVM_Mac\\ScummVM.app\\Contents\\MacOS\\scummvm + executable: "ScummVM_Mac\\\\ScummVM.app\\\\Contents\\\\MacOS\\\\scummvm" type: default - workingdir: ScummVM_Mac\\ - - arguments: '-c scummvm-puttzoo-safe.ini puttzoo' + workingdir: "ScummVM_Mac\\\\" + - arguments: "-c scummvm-puttzoo-safe.ini puttzoo" config: oslist: macos - description: Play in \"Safe Graphics\" Mode - executable: ScummVM_Mac\\ScummVM.app\\Contents\\MacOS\\scummvm + description: "Play in \\\"Safe Graphics\\\" Mode" + executable: "ScummVM_Mac\\\\ScummVM.app\\\\Contents\\\\MacOS\\\\scummvm" type: none - workingdir: ScummVM_Mac\\ + workingdir: "ScummVM_Mac\\\\" - config: - osarch: '64' + osarch: "64" oslist: linux - executable: ScummVM_Linux\\launch_puttzoo_opengl.sh + executable: "ScummVM_Linux\\\\launch_puttzoo_opengl.sh" type: default - workingdir: ScummVM_Linux\\ + workingdir: "ScummVM_Linux\\\\" - config: - osarch: '64' + osarch: "64" oslist: linux - description: Play in \"Safe Graphics\" Mode - executable: ScummVM_Linux\\launch_puttzoo_safe.sh + description: "Play in \\\"Safe Graphics\\\" Mode" + executable: "ScummVM_Linux\\\\launch_puttzoo_safe.sh" type: none - workingdir: ScummVM_Linux\\ -'294670': + workingdir: "ScummVM_Linux\\\\" +"294670": installDir: Putt-Putt 4 launch: - - arguments: '--no-console -c scummvm-puttputttravelsthroughtime.ini putttime' + - arguments: "--no-console -c scummvm-puttputttravelsthroughtime.ini putttime" config: oslist: windows description: Launch - executable: ScummVM_Windows\\scummvm.exe - workingdir: ScummVM_Windows\\ - - arguments: '-c scummvm-puttputttravelsthroughtime.ini putttime' + executable: "ScummVM_Windows\\\\scummvm.exe" + workingdir: "ScummVM_Windows\\\\" + - arguments: "-c scummvm-puttputttravelsthroughtime.ini putttime" config: oslist: macos description: Launch - executable: ScummVM_Mac\\ScummVM.app\\Contents\\MacOS\\scummvm - workingdir: ScummVM_Mac\\ + executable: "ScummVM_Mac\\\\ScummVM.app\\\\Contents\\\\MacOS\\\\scummvm" + workingdir: "ScummVM_Mac\\\\" - config: oslist: linux description: Launch - executable: ScummVM_Linux\\launch_puttputttravelsthroughtime.sh - workingdir: ScummVM_Linux\\ -'294680': + executable: "ScummVM_Linux\\\\launch_puttputttravelsthroughtime.sh" + workingdir: "ScummVM_Linux\\\\" +"294680": installDir: Putt-Putt 5 launch: - - arguments: '--no-console -c scummvm-puttputtenterstherace.ini puttrace' + - arguments: "--no-console -c scummvm-puttputtenterstherace.ini puttrace" config: oslist: windows description: Launch - executable: ScummVM_Windows\\scummvm.exe - workingdir: ScummVM_Windows\\ - - arguments: '-c scummvm-puttputtenterstherace.ini puttrace' + executable: "ScummVM_Windows\\\\scummvm.exe" + workingdir: "ScummVM_Windows\\\\" + - arguments: "-c scummvm-puttputtenterstherace.ini puttrace" config: oslist: macos description: Launch - executable: ScummVM_Mac\\ScummVM.app\\Contents\\MacOS\\scummvm - workingdir: ScummVM_Mac\\ + executable: "ScummVM_Mac\\\\ScummVM.app\\\\Contents\\\\MacOS\\\\scummvm" + workingdir: "ScummVM_Mac\\\\" - config: oslist: linux description: Launch - executable: ScummVM_Linux\\launch_puttputtenterstherace.sh - workingdir: ScummVM_Linux\\ -'294690': + executable: "ScummVM_Linux\\\\launch_puttputtenterstherace.sh" + workingdir: "ScummVM_Linux\\\\" +"294690": installDir: Putt-Putt 6 launch: - - arguments: '--no-console -c scummvm-puttputtjoinsthecircus.ini puttcircus' + - arguments: "--no-console -c scummvm-puttputtjoinsthecircus.ini puttcircus" config: oslist: windows description: Launch - executable: ScummVM_Windows\\scummvm.exe - workingdir: ScummVM_Windows\\ - - arguments: '-c scummvm-puttputtjoinsthecircus.ini puttcircus' + executable: "ScummVM_Windows\\\\scummvm.exe" + workingdir: "ScummVM_Windows\\\\" + - arguments: "-c scummvm-puttputtjoinsthecircus.ini puttcircus" config: oslist: macos description: Launch - executable: ScummVM_Mac\\ScummVM.app\\Contents\\MacOS\\scummvm - workingdir: ScummVM_Mac\\ + executable: "ScummVM_Mac\\\\ScummVM.app\\\\Contents\\\\MacOS\\\\scummvm" + workingdir: "ScummVM_Mac\\\\" - config: oslist: linux description: Launch - executable: ScummVM_Linux\\launch_puttputtjoinsthecircus.sh - workingdir: ScummVM_Linux\\ -'294700': + executable: "ScummVM_Linux\\\\launch_puttputtjoinsthecircus.sh" + workingdir: "ScummVM_Linux\\\\" +"294700": installDir: Putt-Putt 7 launch: - config: oslist: windows description: Launch executable: PuttPuttPBS.exe -'294710': +"294710": installDir: Putt-Putt and Peps Dog on a Stick launch: - - arguments: '--no-console -c scummvm-puttputtdogonastick.ini puttdog' + - arguments: "--no-console -c scummvm-puttputtdogonastick.ini puttdog" config: oslist: windows description: Launch - executable: ScummVM_Windows\\scummvm.exe - workingdir: ScummVM_Windows\\ - - arguments: '-c scummvm-puttputtdogonastick.ini puttdog' + executable: "ScummVM_Windows\\\\scummvm.exe" + workingdir: "ScummVM_Windows\\\\" + - arguments: "-c scummvm-puttputtdogonastick.ini puttdog" config: oslist: macos description: Launch - executable: ScummVM_Mac\\ScummVM.app\\Contents\\MacOS\\scummvm - workingdir: ScummVM_Mac\\ + executable: "ScummVM_Mac\\\\ScummVM.app\\\\Contents\\\\MacOS\\\\scummvm" + workingdir: "ScummVM_Mac\\\\" - config: oslist: linux description: Launch - executable: ScummVM_Linux\\launch_puttputtdogonastick.sh - workingdir: ScummVM_Linux\\ -'294720': + executable: "ScummVM_Linux\\\\launch_puttputtdogonastick.sh" + workingdir: "ScummVM_Linux\\\\" +"294720": installDir: Putt-Putt and Fatty Bears Activity Pack launch: - - arguments: '--no-console -c scummvm-ppafbactivitypack.ini activity' + - arguments: "--no-console -c scummvm-ppafbactivitypack.ini activity" config: oslist: windows description: Launch - executable: ScummVM_Windows\\scummvm.exe - workingdir: ScummVM_Windows\\ - - arguments: '-c scummvm-ppafbactivitypack.ini activity' + executable: "ScummVM_Windows\\\\scummvm.exe" + workingdir: "ScummVM_Windows\\\\" + - arguments: "-c scummvm-ppafbactivitypack.ini activity" config: oslist: macos description: Launch - executable: ScummVM_Mac\\ScummVM.app\\Contents\\MacOS\\scummvm - workingdir: ScummVM_Mac\\ + executable: "ScummVM_Mac\\\\ScummVM.app\\\\Contents\\\\MacOS\\\\scummvm" + workingdir: "ScummVM_Mac\\\\" - config: oslist: linux description: Launch - executable: ScummVM_Linux\\launch_ppafbactivitypack.sh - workingdir: ScummVM_Linux\\ -'294730': + executable: "ScummVM_Linux\\\\launch_ppafbactivitypack.sh" + workingdir: "ScummVM_Linux\\\\" +"294730": installDir: Marine Park Empire launch: - config: oslist: windows description: Launch executable: mpe.exe -'294750': +"294750": installDir: Anomaly Defenders launch: - config: @@ -142658,7 +139259,7 @@ oslist: linux description: Launch executable: AnomalyDefenders -'294770': +"294770": installDir: Haegemonia Legions of Iron launch: - config: @@ -142669,31 +139270,31 @@ oslist: macos description: Launch executable: Haegemonia LOI.app -'294790': +"294790": installDir: Haegemonia The Solon Heritage launch: - config: oslist: windows description: Launch executable: Hgma.exe -'294810': +"294810": installDir: BlazBlue Continuum Shift Extend launch: - config: oslist: windows description: Launch executable: BBCSE.exe -'294830': +"294830": installDir: RECYCLE launch: - config: oslist: windows description: Launch executable: recycle.exe -'294860': +"294860": installDir: Valkyria Chronicles launch: - - arguments: '-bootgame' + - arguments: "-bootgame" config: oslist: windows description: Launch Valkyria Chronicles @@ -142702,20 +139303,20 @@ oslist: windows description: Configure Valkyria Chronicles executable: Launcher.exe -'295110': +"295110": installDir: Just Survive launch: - - arguments: 'Updates:enable=0 Updates:PatchSelf=1 campaignID=1065726 promoID=155 launchPoint=steam launchArgs=STEAM_ENABLED=1' + - arguments: "Updates:enable=0 Updates:PatchSelf=1 campaignID=1065726 promoID=155 launchPoint=steam launchArgs=STEAM_ENABLED=1" config: - osarch: '64' + osarch: "64" oslist: windows description: Game LaunchPad executable: LaunchPad.exe -'29520': +"29520": installDir: Lineage launch: - executable: TestApp.exe -'295250': +"295250": installDir: Stranded launch: - config: @@ -142729,8 +139330,8 @@ - config: oslist: linux description: Launch game - executable: ./Stranded.sh -'295270': + executable: "./Stranded.sh" +"295270": installDir: Football Manager 2015 launch: - config: @@ -142745,20 +139346,20 @@ oslist: linux description: Launch executable: fm -'295490': - installDir: Schrodinger's Cat And The Raiders Of The Lost Quark +"295490": + installDir: "Schrodinger's Cat And The Raiders Of The Lost Quark" launch: - config: oslist: windows description: Launch executable: game.exe - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch 32bit executable: game.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch 64bit executable: game.x86_64 @@ -142766,27 +139367,27 @@ oslist: macos description: Launch executable: game.app -'295550': +"295550": installDir: Royal Quest launch: - config: oslist: windows description: Launch executable: rqlauncher.exe -'295590': +"295590": installDir: HeroGenerations launch: - - arguments: '-console' + - arguments: "-console" config: oslist: windows description: Launch with Console executable: HeroGenerations.exe - - arguments: '-console' + - arguments: "-console" config: oslist: macos description: Launch with Console executable: HeroGenerations.app -'295610': +"295610": installDir: Inescapable launch: - config: @@ -142801,7 +139402,7 @@ oslist: macos description: Launch executable: inescapable -'295630': +"295630": installDir: Defense zone 2 launch: - config: @@ -142816,15 +139417,15 @@ oslist: linux description: Launch executable: Defense Zone 2.x86 -'295650': +"295650": installDir: StrengCheck launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: StrengCheck.exe type: none -'295670': +"295670": installDir: Hive Jump launch: - config: @@ -142839,7 +139440,7 @@ oslist: linux executable: HiveJump.x86 type: default -'295690': +"295690": installDir: PARTICLEMACE launch: - config: @@ -142851,7 +139452,7 @@ description: Launch executable: PARTICLEMACE_executable.exe type: none -'295710': +"295710": installDir: darkwind launch: - config: @@ -142862,14 +139463,14 @@ oslist: macos description: Launch executable: DarkwindOSXClient.app -'295730': +"295730": installDir: Sweezy Gunner launch: - config: oslist: windows description: Launch executable: Sweezy Gunner.exe -'295750': +"295750": installDir: TheFloorIsJelly launch: - config: @@ -142881,14 +139482,14 @@ oslist: macos description: Launch executable: jelly.app -'295770': +"295770": installDir: Rogue Shooter launch: - config: oslist: windows description: Launch executable: RogueShooter.exe -'295790': +"295790": installDir: NeverAlone launch: - config: @@ -142900,25 +139501,25 @@ description: Launch executable: Never_Alone.app - config: - osarch: '64' + osarch: "64" oslist: linux executable: Never_Alone.x64 type: none - config: betakey: linux32bit-beta - osarch: '32' + osarch: "32" oslist: linux executable: Never_Alone.x86 type: none -'29580': {} -'295810': +"29580": {} +"295810": installDir: Killjoy Games launch: - config: oslist: windows description: Launch executable: Air Control Final.exe -'295850': +"295850": installDir: Vlad launch: - config: @@ -142929,7 +139530,7 @@ oslist: macos description: Launch executable: Vlad.app -'295870': +"295870": installDir: The Dungeoning launch: - config: @@ -142943,45 +139544,45 @@ - config: oslist: linux description: Launch - executable: ./start.sh + executable: "./start.sh" - config: oslist: macos description: Launch executable: TheDungeoning.app -'295910': +"295910": installDir: Olympia Rising launch: - - arguments: \"--in-process-gpu\" + - arguments: "\\\"--in-process-gpu\\\"" config: oslist: windows description: Launch executable: OlympiaRising.exe - - arguments: \"--in-process-gpu\" + - arguments: "\\\"--in-process-gpu\\\"" config: oslist: macos description: Launch executable: OlympiaRising.app -'295930': +"295930": installDir: Swipecart launch: - description: Launch executable: game.exe -'295950': +"295950": installDir: XLX launch: - config: oslist: windows - executable: ./client/ClientTest - steam.bat + executable: "./client/ClientTest - steam.bat" type: default - workingdir: ./client/ -'295990': + workingdir: "./client/" +"295990": installDir: Evopollution launch: - config: oslist: windows description: Launch executable: evopollution.exe -'296010': +"296010": installDir: NeonXSZ launch: - config: @@ -142989,12 +139590,12 @@ description: Launch executable: NeonXSZ.exe - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: NeonXSZ.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: NeonXSZ.x86_64 @@ -143002,7 +139603,7 @@ oslist: macos description: Launch executable: NeonXSZ.app -'296030': +"296030": installDir: Qasir al-Wasat launch: - config: @@ -143017,7 +139618,7 @@ oslist: linux description: Launch executable: Qasir al-Wasat.x86 -'296050': +"296050": installDir: Battlepaths launch: - config: @@ -143028,7 +139629,7 @@ oslist: linux description: Launch executable: run.sh -'296070': +"296070": installDir: Mind_Path_to_Thalamus launch: - config: @@ -143039,7 +139640,7 @@ - config: betakey: old_mind oslist: windows - executable: Binaries\\Win32\\Mind.exe + executable: "Binaries\\\\Win32\\\\Mind.exe" type: none - config: oslist: macos @@ -143047,7 +139648,7 @@ type: none - config: oslist: linux - executable: Mind_Pathtothalamus\\Binaries\\Linux\\Mind_Pathtothalamus + executable: "Mind_Pathtothalamus\\\\Binaries\\\\Linux\\\\Mind_Pathtothalamus" type: default - config: oslist: windows @@ -143057,8 +139658,8 @@ oslist: windows executable: Mind_Pathtothalamus_vr.exe type: vr -'29610': {} -'296150': +"29610": {} +"296150": installDir: GBall launch: - config: @@ -143069,14 +139670,14 @@ oslist: macos description: Launch executable: GBall.app -'296180': +"296180": installDir: Iron Storm launch: - config: oslist: windows description: Launch executable: IronStorm.exe -'296210': +"296210": installDir: E5 launch: - config: @@ -143085,7 +139686,7 @@ executable: E5.exe - description: Configure executable: E5Config.exe -'296220': +"296220": installDir: Farm Frenzy 4 launch: - config: @@ -143096,7 +139697,7 @@ oslist: macos description: Launch executable: FarmFrenzy4.app -'296240': +"296240": installDir: The Promised Land launch: - config: @@ -143108,7 +139709,7 @@ description: Launch executable: The Promised Land.app type: none -'296280': +"296280": installDir: TownCraft launch: - config: @@ -143119,48 +139720,48 @@ oslist: macos description: Launch executable: TownCraft Steam.app -'296300': +"296300": installDir: Ballistic launch: - - arguments: '-logfile output.txt' + - arguments: "-logfile output.txt" config: oslist: windows executable: BallisticOverkill.exe type: none - - arguments: '-force-glcore -logfile output.txt' + - arguments: "-force-glcore -logfile output.txt" config: oslist: macos executable: BallisticOverkill.app type: none - - arguments: '-logfile output.txt' + - arguments: "-logfile output.txt" config: - osarch: '64' + osarch: "64" oslist: linux description: Ballistic 64x executable: BallisticOverkill.x86_64 type: default - - arguments: '-logfile output.txt' + - arguments: "-logfile output.txt" config: - osarch: '64' + osarch: "64" oslist: linux description: Ballistic i386 executable: BallisticOverkill.x86 type: option1 -'296470': +"296470": installDir: Mount Your Friends launch: - config: oslist: windows description: Launch executable: MountYourFriends.exe -'296490': +"296490": installDir: GemCraft Chasing Shadows launch: - config: oslist: windows description: Launch executable: GemCraft Chasing Shadows.exe -'296510': +"296510": installDir: MBN launch: - config: @@ -143168,12 +139769,12 @@ description: Launch executable: MagneticByNature.exe - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch Linux 32-bit executable: MagneticByNature.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch Linux 64-bit executable: MagneticByNature.x86_64 @@ -143181,7 +139782,7 @@ oslist: macos description: Launch executable: MagneticByNature.app/Contents/MacOS/MagneticByNature -'296530': +"296530": installDir: Coldfire Keep launch: - config: @@ -143192,21 +139793,21 @@ oslist: macos description: Launch executable: ColdfireKeep.app -'296550': +"296550": installDir: NikoTTD launch: - config: oslist: windows description: Launch - executable: Binaries\\Win32\\NIKO.exe + executable: "Binaries\\\\Win32\\\\NIKO.exe" type: default - config: oslist: windows description: Config Game - executable: NikoConfig\\NikoConfig.exe + executable: "NikoConfig\\\\NikoConfig.exe" type: config workingdir: NikoConfig -'296570': +"296570": installDir: LordsOfXulima launch: - config: @@ -143221,22 +139822,22 @@ oslist: linux description: Launch executable: LinuxLauncher -'296590': +"296590": installDir: Draconian Wars launch: - config: oslist: windows description: Launch executable: DraconianWars.exe -'296630': +"296630": installDir: Kraven Manor launch: - - arguments: '-seekfreeloading' + - arguments: "-seekfreeloading" config: oslist: windows description: Launch executable: Binaries/Win32/KravenManor.exe -'296650': +"296650": installDir: PuddingPanic launch: - config: @@ -143247,22 +139848,22 @@ oslist: macos description: Launch executable: PuddingPanic.app -'296710': +"296710": installDir: Monstrum launch: - - arguments: '-force-d3d9' + - arguments: "-force-d3d9" config: oslist: windows description: Play Monstrum (DirectX 9) executable: Monstrum.exe type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Monstrum.x86_64 - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: Monstrum.x86 @@ -143275,21 +139876,21 @@ description: Play Monstrum (DirectX 11) executable: Monstrum.exe type: none - - arguments: '-oculus' + - arguments: "-oculus" config: oslist: windows description: Monstrum executable: Monstrum.exe type: othervr -'296730': +"296730": installDir: Viktor launch: - config: oslist: windows description: Launch executable: launcher.exe -'296750': {} -'296770': +"296750": {} +"296770": installDir: RealBoxing launch: - config: @@ -143302,12 +139903,12 @@ description: Launcher executable: /Binaries/RBLauncher.exe workingdir: /Binaries -'296790': +"296790": installDir: ThunderWheels launch: - executable: ThunderWheels.exe type: default -'296810': +"296810": installDir: JumpTanks launch: - config: @@ -143315,7 +139916,7 @@ description: Jump Tanks (Full Screen) executable: JumpTanks.exe type: option1 - - arguments: '--windowed' + - arguments: "--windowed" config: oslist: windows description: Jump Tanks (Windowed) @@ -143329,32 +139930,32 @@ oslist: linux executable: JumpTanks.x86 type: default - - arguments: '--PlayFabTitleId=AEB2 --windowed' + - arguments: "--PlayFabTitleId=AEB2 --windowed" config: betakey: developer oslist: windows description: Developer executable: JumpTanks.exe type: none - - arguments: '--PlayFabTitleId=492F --windowed' + - arguments: "--PlayFabTitleId=492F --windowed" config: betakey: quality-assurance oslist: windows description: Quality Assurance executable: JumpTanks.exe type: none - - arguments: '--PlayFabTitleId=6DE7 --windowed' + - arguments: "--PlayFabTitleId=6DE7 --windowed" config: betakey: tank-punks oslist: windows description: Tank Punks executable: JumpTanks.exe type: none -'296830': +"296830": installDir: LuciusII launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: LuciusII.exe @@ -143362,14 +139963,14 @@ oslist: linux description: Launch executable: LuciusII.x86 -'296850': +"296850": installDir: AlEmmo launch: - config: oslist: windows description: Launch executable: al-emmo.exe - - arguments: '--setup' + - arguments: "--setup" config: oslist: windows description: Setup @@ -143377,8 +139978,8 @@ - config: oslist: linux description: Launch - executable: ./al-emmo -'296870': + executable: "./al-emmo" +"296870": installDir: Dreaming Sarah launch: - config: @@ -143388,9 +139989,9 @@ type: default - config: betakey: linux_test - osarch: '64' + osarch: "64" oslist: linux - description: 'Launch ' + description: "Launch " executable: nw type: default - config: @@ -143398,18 +139999,18 @@ executable: DreamingSarah.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: DreamingSarah type: default -'296890': +"296890": installDir: Neon Shadow launch: - config: oslist: windows executable: Neon Shadow.exe type: none -'296910': +"296910": installDir: 8BitBoy launch: - config: @@ -143420,7 +140021,7 @@ oslist: macos description: Launch executable: 8bitboy.app -'296930': +"296930": installDir: Ascendant launch: - config: @@ -143435,7 +140036,7 @@ oslist: linux description: Launch executable: Ascendant.x86 -'296950': +"296950": installDir: Subject 9 launch: - config: @@ -143446,48 +140047,48 @@ oslist: macos description: Launch executable: Subject9.app -'296970': +"296970": installDir: Renowned Explorers launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: win32/abbeycore_win32_steam.exe - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: win64/abbeycore_win32_steam.exe - config: - osarch: '64' + osarch: "64" oslist: macos description: Launch executable: abbeycore_steam.app - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: x86/abbeycore_steam - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: x86_64/abbeycore_steam -'29700': {} -'297000': +"29700": {} +"297000": installDir: Heroes of Might & Magic III - HD Edition launch: - description: Heroes of Might & Magic III - HD Edition executable: HOMM3Launcher.exe -'297020': +"297020": installDir: Culling Of The Cows launch: - config: oslist: windows description: Launch executable: Culling Of The Cows.exe -'297060': +"297060": installDir: Freaking Meatbags launch: - config: @@ -143495,12 +140096,12 @@ description: Launch executable: Freaking_MeatBags.exe - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: FreakingMeatbags.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: FreakingMeatbags.x86_64 @@ -143508,7 +140109,7 @@ oslist: macos description: Launch executable: FreakingMeatbags.app -'297070': +"297070": installDir: Nicolas Eymerich The Inquisitor Book II The Village launch: - config: @@ -143519,20 +140120,20 @@ oslist: macos description: Launch executable: Eymerich02.app -'297080': +"297080": installDir: Navpoint launch: - description: Launch executable: Navpoint.exe type: default -'297090': +"297090": installDir: World War 1 Centennial Edition launch: - config: oslist: windows description: Launch executable: steam_launcher.bat -'297100': +"297100": installDir: Beyond Space launch: - config: @@ -143544,7 +140145,7 @@ description: Launch executable: BeyondSpace.app type: none -'297110': +"297110": installDir: Cosmic DJ launch: - config: @@ -143555,7 +140156,7 @@ oslist: macos description: Launch executable: CosmicDJ.app -'297120': +"297120": installDir: Heavy Bullets launch: - config: @@ -143567,16 +140168,16 @@ description: Launch executable: HEAVY_BULLETS.app - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: HEAVY_BULLETS.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: HEAVY_BULLETS.x86_64 -'297130': +"297130": installDir: Titan Souls launch: - config: @@ -143587,25 +140188,25 @@ oslist: macos description: Launch executable: Titan Souls.app -'297190': +"297190": installDir: Grayland launch: - config: oslist: windows executable: Grayland.exe type: none -'29720': +"29720": installDir: Guild Wars launch: - executable: Gw.exe -'297210': +"297210": installDir: Famaze launch: - config: oslist: windows description: Launch executable: Famaze.exe -'297270': +"297270": installDir: FracturedEmpire launch: - config: @@ -143613,7 +140214,7 @@ description: Launch executable: FracturedEmpire.exe - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: FracturedEmpire.x86_64 @@ -143622,11 +140223,11 @@ description: Launch executable: FracturedEmpire.app - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: FracturedEmpire.x86 -'297290': +"297290": installDir: CaseBot launch: - config: @@ -143640,7 +140241,7 @@ oslist: linux executable: Case_Bot type: none -'297310': +"297310": installDir: ProWrestlingX launch: - config: @@ -143651,21 +140252,21 @@ oslist: macos executable: pwx.app type: none -'297330': +"297330": installDir: Arcadecraft launch: - config: oslist: windows description: Launch executable: Arcadecraft.exe -'297350': +"297350": installDir: Old City launch: - config: oslist: windows description: Launch executable: Binaries/Win32/UDK.exe -'297370': +"297370": installDir: Hero of Many launch: - config: @@ -143676,16 +140277,16 @@ oslist: macos description: Launch executable: HoM.app -'297390': +"297390": installDir: Collateral launch: - description: Launch - executable: Binaries\\Win32\\CollateralGame.exe + executable: "Binaries\\\\Win32\\\\CollateralGame.exe" - config: - osarch: '64' + osarch: "64" description: Launch 64-bit - executable: Binaries\\Win64\\CollateralGame.exe -'297410': + executable: "Binaries\\\\Win64\\\\CollateralGame.exe" +"297410": installDir: Trace Vector launch: - config: @@ -143693,7 +140294,7 @@ description: Launch executable: Trace Vector.exe - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Trace-Vector @@ -143701,25 +140302,25 @@ oslist: macos description: Launch executable: Trace Vector.app -'297450': +"297450": installDir: ZombiesOnAPlane launch: - description: Game For Windows - executable: Binaries\\Win32\\udk.exe + executable: "Binaries\\\\Win32\\\\udk.exe" type: option1 - config: oslist: macos description: Game For Mac OS X - executable: ZombiesOnAPlane.app\\Contents\\MacOS\\UDKGame + executable: "ZombiesOnAPlane.app\\\\Contents\\\\MacOS\\\\UDKGame" type: option1 -'297470': +"297470": installDir: Xsyon launch: - config: oslist: windows description: Launch executable: XsyonSteam.exe -'297490': +"297490": installDir: Spy Chameleon RGB Agent launch: - config: @@ -143734,12 +140335,12 @@ oslist: linux description: Launch executable: Spy Chameleon RGB Agent.x86 -'297570': +"297570": installDir: Warrior Kings launch: - description: Launch executable: warrior_kings.exe -'297590': +"297590": installDir: Monsters Ate My Birthday Cake launch: - config: @@ -143754,12 +140355,12 @@ oslist: linux description: Launch executable: MAMBC -'297620': - installDir: Rocko's Quest +"297620": + installDir: "Rocko's Quest" launch: - description: Launch executable: Rocko.exe -'297660': +"297660": installDir: Super Rad Raygun launch: - config: @@ -143774,11 +140375,11 @@ oslist: linux executable: SuperRadRaygun type: default -'297720': +"297720": installDir: Corpse of Discovery launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: CorpseOfDiscovery.exe @@ -143787,7 +140388,7 @@ description: Launch executable: CorpseOfDiscovery.app type: none -'297740': +"297740": installDir: Overruled! launch: - config: @@ -143803,46 +140404,44 @@ description: Launch executable: Overruled.x86 type: none -'297750': +"297750": installDir: Close Combat - Gateway to Caen launch: - config: oslist: windows description: Launch executable: autorun.exe -'297760': +"297760": installDir: Qvadriga launch: - config: oslist: windows description: Launch executable: autorun.exe -'297810': +"297810": installDir: Landmark launch: - - arguments: >- - Updates:enable=0 Updates:PatchSelf=1 campaignID=1064454 promoID=151 launchPoint=steam - launchArgs=STEAM_ENABLED=1 + - arguments: "Updates:enable=0 Updates:PatchSelf=1 campaignID=1064454 promoID=151 launchPoint=steam launchArgs=STEAM_ENABLED=1" config: - osarch: '64' + osarch: "64" oslist: windows description: Game LaunchPad executable: LaunchPad.exe -'297860': +"297860": installDir: SplitSecond launch: - config: oslist: windows description: Launch executable: SplitSecond.exe -'297920': +"297920": installDir: Space Colony launch: - config: oslist: windows description: Launch Space Colony executable: FFLauncher.exe -'29800': +"29800": installDir: Caster launch: - config: @@ -143851,12 +140450,12 @@ - config: oslist: macos executable: Caster.app -'298020': +"298020": installDir: Escape The Museum launch: - description: Launch executable: Museum.exe -'298030': +"298030": installDir: Total Annihilation launch: - config: @@ -143867,42 +140466,42 @@ oslist: windows description: Launch Map Editor executable: TAE.exe -'298050': +"298050": installDir: Master of Orion launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: MasterOfOrion.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: MasterOfOrion.x86_64 type: default - config: - osarch: '64' + osarch: "64" oslist: macos executable: MasterOfOrion.app type: default -'298110': +"298110": installDir: Far Cry 4 launch: - - arguments: '-uplay_steam_mode' + - arguments: "-uplay_steam_mode" config: - osarch: '64' + osarch: "64" oslist: windows description: Final executable: bin/FarCry4.exe -'298140': +"298140": installDir: Rhiannon Curse of the Four Branches launch: - config: oslist: windows description: Launch executable: RhiannonMeridian4.exe -'298160': +"298160": installDir: Eldevin launch: - arguments: steam @@ -143915,21 +140514,21 @@ oslist: macos description: Launch executable: Eldevin.app -'298180': +"298180": installDir: The Desolate Hope launch: - config: oslist: windows description: Launch executable: The Desolate Hope.exe -'298220': +"298220": installDir: Terraformer Expedition to Mars launch: - config: oslist: windows description: Launch executable: Terraformer.exe -'298240': +"298240": installDir: WT3 launch: - config: @@ -143940,7 +140539,7 @@ oslist: windows executable: War Trigger 3.exe type: default -'298260': +"298260": installDir: Only If launch: - config: @@ -143955,7 +140554,7 @@ oslist: linux description: Launch executable: Only If.x86 -'298280': +"298280": installDir: XenoRaptor launch: - config: @@ -143970,7 +140569,7 @@ oslist: macos description: Launch executable: XenoRaptor.app -'298340': +"298340": installDir: Flashout2 launch: - config: @@ -143985,19 +140584,19 @@ oslist: macos description: Launch executable: FLASHOUT2.app -'298360': +"298360": installDir: ImmortalDefense launch: - description: Launch executable: idefense.exe -'298380': +"298380": installDir: ReefShot launch: - config: oslist: windows description: Launch executable: ReefShot.exe -'298400': +"298400": installDir: KnightmareTower launch: - config: @@ -144012,11 +140611,11 @@ oslist: linux description: Launch executable: Knightmare Tower.x86 -'298420': +"298420": installDir: dreii launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: Dreii.exe @@ -144027,18 +140626,18 @@ executable: Dreii.app type: none - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: Dreii.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Dreii.x86_64 type: none -'298480': +"298480": installDir: VictoryAtSea launch: - config: @@ -144053,7 +140652,7 @@ oslist: linux description: Launch executable: VictoryAtSea.x86 -'298520': +"298520": installDir: Orbital Gear launch: - config: @@ -144068,7 +140667,7 @@ oslist: windows description: Launch executable: OrbitalGear.exe -'298560': +"298560": installDir: cap4ever launch: - config: @@ -144083,7 +140682,7 @@ oslist: linux description: Launch executable: cap4ever.x86 -'298600': +"298600": installDir: Lovely Planet launch: - config: @@ -144098,22 +140697,22 @@ oslist: macos description: Launch executable: LovelyPlanet.app -'298610': +"298610": installDir: Ylands launch: - - arguments: '-logFile ./Ylands_Data/output_log.txt' + - arguments: "-logFile ./Ylands_Data/output_log.txt" config: betakey: default description: Launch executable: Ylands.exe type: none - - arguments: '-logFile ./Ylands_Data/output_log.txt -cfggrp:bi-exp' + - arguments: "-logFile ./Ylands_Data/output_log.txt -cfggrp:bi-exp" config: betakey: i_will_back_up_my_saves description: Ylands Experimental executable: Ylands.exe type: option1 -'298630': +"298630": installDir: The Escapists launch: - config: @@ -144140,7 +140739,7 @@ description: Launch Map Editor executable: Map Editor.app type: editor -'298790': +"298790": installDir: Rock Boshers DX launch: - config: @@ -144152,11 +140751,11 @@ description: Launch executable: RBDXSteam - config: - osarch: '64' + osarch: "64" oslist: macos description: Launch executable: RBDXSteam.app -'298820': +"298820": installDir: Millennium 2 - Take Me Higher launch: - config: @@ -144164,10 +140763,10 @@ description: Launch executable: MM2.exe - config: - ownsdlc: '357110' + ownsdlc: "357110" description: View Walkthrough - executable: Guide\\Millennium-2-Guide.pdf -'298830': + executable: "Guide\\\\Millennium-2-Guide.pdf" +"298830": installDir: Millennium 3 - Cry Wolf launch: - config: @@ -144175,10 +140774,10 @@ description: Launch executable: MM3.exe - config: - ownsdlc: '357080' + ownsdlc: "357080" description: View Walkthrough - executable: Guide\\MM3_OfficialGuide.pdf -'298840': + executable: "Guide\\\\MM3_OfficialGuide.pdf" +"298840": installDir: Millennium 4 - Beyond Sunset launch: - config: @@ -144186,10 +140785,10 @@ description: Launch executable: MM4.exe - config: - ownsdlc: '357090' + ownsdlc: "357090" description: View Walkthrough - executable: Guide\\MM4_OfficialWalkthrough.pdf -'298850': + executable: "Guide\\\\MM4_OfficialWalkthrough.pdf" +"298850": installDir: Millennium 5 - The Battle of the Millennium launch: - config: @@ -144197,79 +140796,79 @@ description: Launch executable: MM5.exe - config: - ownsdlc: '357100' + ownsdlc: "357100" description: View Walkthrough - executable: Guide\\MM5-Complete-Official-Walkthrough.pdf -'298890': + executable: "Guide\\\\MM5-Complete-Official-Walkthrough.pdf" +"298890": installDir: Adventure Time The Secret Of The Nameless Kingdom launch: - description: Launch - executable: executable\\at3.exe - workingdir: . -'298900': + executable: "executable\\\\at3.exe" + workingdir: "." +"298900": installDir: Space Hulk Deathwing launch: - description: Space Hulk Deathwing executable: SpaceHulkGame.exe type: default - - arguments: '-SaveToUserDir' + - arguments: "-SaveToUserDir" config: - betakey: 'local,test,quickmatch_test' + betakey: "local,test,quickmatch_test" description: Test - executable: SpaceHulkGame\\Binaries\\Win64\\SpaceHulkGame-Win64-Test.exe + executable: "SpaceHulkGame\\\\Binaries\\\\Win64\\\\SpaceHulkGame-Win64-Test.exe" type: option1 -'298930': +"298930": installDir: Darkness Within launch: - config: oslist: windows description: Play Darkness Within executable: DarknessWithin.exe -'298950': +"298950": installDir: Darkness Within 2 launch: - config: oslist: windows description: Play Darkness Within 2 executable: DarkLineage.exe -'2990': +"2990": installDir: FlatOut2 launch: - executable: FlatOut2.exe -'29900': +"29900": installDir: Dark Sector launch: - executable: DS.exe -'299020': +"299020": installDir: Runaway Express Mystery launch: - config: oslist: windows executable: REM.exe -'299030': +"299030": installDir: One Unit Whole Blood launch: - - arguments: '-conf dosboxBlood.conf -noconsole -c \"exit\"' + - arguments: "-conf dosboxBlood.conf -noconsole -c \\\"exit\\\"" config: oslist: windows description: Launch executable: dosbox.exe -'299050': +"299050": installDir: Blood II launch: - description: Launch executable: BLOOD2.EXE -'299070': +"299070": installDir: Warrior Kings Battles launch: - description: Launch executable: Warrior Kings - Battles.exe -'299080': +"299080": installDir: the white chamber launch: - executable: game.exe type: none -'299090': +"299090": installDir: Cosplay Maker launch: - config: @@ -144284,41 +140883,41 @@ oslist: linux executable: Cosplay Maker.x86 type: default -'299100': +"299100": installDir: Back To Life 2 launch: - description: Launch executable: back_to_life_2.exe -'299110': +"299110": installDir: Theatre Of The Absurd launch: - description: Launch executable: Theatre of the Absurd CE.exe -'299150': +"299150": installDir: Empress Of The Deep launch: - description: Launch executable: Empress of the Deep 632.exe -'299160': +"299160": installDir: Empress Of The Deep 2 Song Of The Blue Whale launch: - description: Launch executable: EmpressoftheDeep2_SongoftheBlueWhale.exe -'299170': +"299170": installDir: Vault Cracker launch: - description: Launch executable: VaultCracker.exe -'299180': +"299180": installDir: Millionaire Manor launch: - description: Launch executable: THOS3.exe -'299250': +"299250": installDir: European Ship Simulator launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: ess.exe @@ -144326,7 +140925,7 @@ oslist: macos description: Launch executable: ess.app -'299260': +"299260": installDir: Commander Jack launch: - config: @@ -144334,17 +140933,17 @@ description: Launch executable: CommandoJack_OSX.app - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: CommandoJackWindows.exe type: none - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: CommandoJackWindows64.exe -'299340': +"299340": installDir: Habitat launch: - config: @@ -144356,126 +140955,126 @@ description: Launch executable: Habitat.app - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: Habitat.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Habitat.x86_64 -'299360': +"299360": installDir: BlockNLoad launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch Block N Load executable: BlockNLoadLauncher.exe type: none - arguments: +no_sound config: - osarch: '64' + osarch: "64" oslist: macos description: Launch Block N Load executable: OSX64/BlockNLoad.app - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch Block N Load executable: BlockNLoadLauncher.exe type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch Block N Load executable: Linux64/BlockNLoad.x86-64 - - arguments: '-force-d3d9' + - arguments: "-force-d3d9" config: - osarch: '64' + osarch: "64" oslist: windows - ownsdlc: '344020' - description: '[DEV] DirectX 9' + ownsdlc: "344020" + description: "[DEV] DirectX 9" executable: BlockNLoadLauncher.exe type: none - - arguments: '-force-opengl' + - arguments: "-force-opengl" config: - osarch: '64' + osarch: "64" oslist: windows - ownsdlc: '344020' - description: '[DEV] OpenGL' + ownsdlc: "344020" + description: "[DEV] OpenGL" executable: BlockNLoadLauncher.exe type: none - - arguments: '-force-d3d9' + - arguments: "-force-d3d9" config: - osarch: '32' + osarch: "32" oslist: windows - ownsdlc: '344020' - description: '[DEV] DirectX 9' + ownsdlc: "344020" + description: "[DEV] DirectX 9" executable: BlockNLoadLauncher.exe type: none - - arguments: '-force-opengl' + - arguments: "-force-opengl" config: - osarch: '32' + osarch: "32" oslist: windows - ownsdlc: '344020' - description: '[DEV] OpenGL' + ownsdlc: "344020" + description: "[DEV] OpenGL" executable: BlockNLoadLauncher.exe type: none -'299380': +"299380": installDir: Masquerade - The Baubles of Doom launch: - config: oslist: windows description: Launch executable: masquerade.exe -'299400': +"299400": installDir: XING launch: - - arguments: '-noHMD -TESTANALYTICS' + - arguments: "-noHMD -TESTANALYTICS" config: oslist: windows description: Play XING on a standard monitor executable: XING.exe type: none - - arguments: '-vr -TESTANALYTICS' + - arguments: "-vr -TESTANALYTICS" config: oslist: windows - description: 'XING using SteamVR ' + description: "XING using SteamVR " executable: XING.exe type: vr - - arguments: '-vr -TESTANALYTICS' + - arguments: "-vr -TESTANALYTICS" config: oslist: windows description: XING using Oculus SDK executable: XING.exe type: othervr -'299420': +"299420": installDir: CubeGun launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: CubeGun.exe - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch win32 executable: CubeGun_32.exe -'299440': +"299440": installDir: RooksKeep launch: - description: Launch executable: Binaries/win32/UDK.exe - description: Launch 64bit executable: Binaries/win64/UDK.exe - - arguments: ' editor' + - arguments: " editor" description: Launch Editor executable: Binaries/UDKLift.exe type: none -'299460': +"299460": installDir: WoodleTreeAdventures launch: - config: @@ -144490,7 +141089,7 @@ oslist: linux description: Launch executable: WoodleTreeAdventures.x86_64 -'299480': +"299480": installDir: RogueStormers launch: - config: @@ -144500,14 +141099,14 @@ type: default - config: oslist: linux - executable: ./bin/RogueStormers.sh + executable: "./bin/RogueStormers.sh" type: default -'299500': +"299500": installDir: International Snooker launch: - description: Launch executable: IS2012.exe -'299540': +"299540": installDir: HeroesRiseTheProdigy launch: - config: @@ -144522,8 +141121,8 @@ oslist: linux description: Launch executable: HeroesRiseTheProdigy -'299580': {} -'299600': +"299580": {} +"299600": installDir: DragonFinSoup launch: - config: @@ -144531,20 +141130,20 @@ description: Launch executable: DragonFinSoup.exe type: default -'299640': +"299640": installDir: Afterfall_Reconquest_1 launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Win32 Launch executable: Binaries/Win32/PearlGame.exe - config: - osarch: '64' + osarch: "64" oslist: windows description: Win65 Launch executable: Binaries/Win64/PearlGame.exe -'299660': +"299660": installDir: 6180 the moon launch: - config: @@ -144559,7 +141158,7 @@ oslist: linux description: Launch executable: 6180 the moon.x86 -'299680': +"299680": installDir: Tengami launch: - config: @@ -144570,22 +141169,22 @@ oslist: macos description: Launch executable: Tengami.app -'299720': +"299720": installDir: Terrorhedron launch: - config: oslist: windows description: Launch executable: terrorhedron.exe -'299740': +"299740": installDir: Miscreated launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: Miscreated.exe -'299780': +"299780": installDir: NoirSyndrome launch: - config: @@ -144600,7 +141199,7 @@ oslist: linux description: Launch executable: noir-syndrome.run -'299800': +"299800": installDir: The Land Of Eyas launch: - config: @@ -144613,21 +141212,21 @@ description: Video Setup executable: EyasConfig.exe type: config -'299820': +"299820": installDir: Paradigm Shift launch: - config: oslist: windows description: Launch executable: Paradigmshift.exe -'299840': +"299840": installDir: MetalPlanet launch: - config: oslist: windows description: Launch executable: Xmetal.exe -'299890': +"299890": installDir: Franchise Hockey Manager 2014 launch: - config: @@ -144638,7 +141237,7 @@ oslist: macos description: Launch FHM 2014 (Mac OS X) executable: Franchise Hockey Manager 2014.app -'299910': +"299910": installDir: Forgotten Myths CCG launch: - config: @@ -144647,83 +141246,79 @@ type: default - config: oslist: macos - executable: Forgotten Myths CCG.app\\Contents\\MacOS\\Forgotten Myths CCG + executable: "Forgotten Myths CCG.app\\\\Contents\\\\MacOS\\\\Forgotten Myths CCG" type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Forgotten Myths CCG.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Forgotten Myths CCG.x86_64 type: default -'299950': +"299950": installDir: GetEven launch: - - arguments: '-seekfreeloadingpcconsole' + - arguments: "-seekfreeloadingpcconsole" config: - osarch: '64' + osarch: "64" oslist: windows description: Shipping version of the game - executable: \\Binaries\\Win64\\GetEven.exe + executable: "\\\\Binaries\\\\Win64\\\\GetEven.exe" type: default - - arguments: '-seekfreeloadingpcconsole' + - arguments: "-seekfreeloadingpcconsole" config: betakey: jpn-qa_debug - osarch: '64' + osarch: "64" oslist: windows - description: development version (use if default doesn't work) - executable: \\Binaries\\Win64\\GetEvenGame.exe + description: "development version (use if default doesn't work)" + executable: "\\\\Binaries\\\\Win64\\\\GetEvenGame.exe" type: option1 - - arguments: '-seekfreeloadingpcconsole' + - arguments: "-seekfreeloadingpcconsole" config: betakey: bne-qa_debug - osarch: '64' + osarch: "64" oslist: windows - description: development version (use if default doesn't work) - executable: \\Binaries\\Win64\\GetEvenGame.exe + description: "development version (use if default doesn't work)" + executable: "\\\\Binaries\\\\Win64\\\\GetEvenGame.exe" type: option1 -'30': +"30": installDir: Half-Life launch: - - arguments: '-steam -game dod' + - arguments: "-steam -game dod" config: oslist: windows executable: hl.exe - vacmodulefilename: resource\\sourceinit.dat - - arguments: '-steam -game dod' + - arguments: "-steam -game dod" config: oslist: macos executable: hl.sh - vacmodulefilename: resource\\sourceinit_macos.dat - - arguments: '-steam -game dod' + - arguments: "-steam -game dod" config: oslist: linux executable: hl.sh -'300': +"300": installDir: Day of Defeat Source launch: - - arguments: '-steam -game dod' + - arguments: "-steam -game dod" config: oslist: windows executable: hl2.exe - vacmodulefilename: resource\\sourceinit.dat - - arguments: '-steam -game dod' + - arguments: "-steam -game dod" config: oslist: macos executable: hl2_osx - vacmodulefilename: resource\\sourceinit_macos.dat - - arguments: '-game dod -steam' + - arguments: "-game dod -steam" config: oslist: linux executable: hl2.sh -'3000': +"3000": installDir: GTI Racing launch: - executable: GTIRacing.exe -'300040': +"300040": installDir: Divine Souls launch: - arguments: true USESTEAM @@ -144731,31 +141326,31 @@ oslist: windows description: Launch executable: client.exe -'300060': +"300060": installDir: ADR1FT launch: - - arguments: '-steam' + - arguments: "-steam" config: - osarch: '64' + osarch: "64" oslist: windows description: Launch - executable: .\\ADR1FT.exe + executable: ".\\\\ADR1FT.exe" type: default - - arguments: '-steam' + - arguments: "-steam" config: - osarch: '64' + osarch: "64" oslist: windows description: VR (Oculus) - executable: .\\ADR1FT.exe + executable: ".\\\\ADR1FT.exe" type: othervr - - arguments: '-steam -steamvr' + - arguments: "-steam -steamvr" config: - osarch: '64' + osarch: "64" oslist: windows description: VR (SteamVR) - executable: .\\ADR1FT.exe + executable: ".\\\\ADR1FT.exe" type: vr -'300080': +"300080": installDir: Total War Battles KINGDOM launch: - config: @@ -144767,7 +141362,7 @@ description: Launch executable: TWB_Kingdom.app type: none -'300160': +"300160": installDir: Bridge! launch: - config: @@ -144779,26 +141374,26 @@ description: Choose Language executable: Bridge_ChooseLanguage.exe type: config -'300200': +"300200": installDir: Urban Legends launch: - config: oslist: windows description: Launch executable: UrbanLegends.exe -'300220': +"300220": installDir: Victim of Xen launch: - config: oslist: windows description: Launch executable: Victim of Xen.exe -'300260': +"300260": installDir: Planetoid Pioneers launch: - - arguments: \"Planetoid Pioneers.c2d\" + - arguments: "\\\"Planetoid Pioneers.c2d\\\"" config: - osarch: '64' + osarch: "64" oslist: windows executable: Crush2D.exe type: default @@ -144811,15 +141406,15 @@ description: Launch executable: planetoidpioneers.sh type: default -'300280': +"300280": installDir: Adventurezator launch: - - arguments: '-screen-width 640 -screen-height 360' + - arguments: "-screen-width 640 -screen-height 360" config: oslist: windows description: Launch executable: Launcher.exe - - arguments: '-screen-width 640 -screen-height 360' + - arguments: "-screen-width 640 -screen-height 360" config: oslist: linux description: Launch @@ -144828,7 +141423,7 @@ oslist: macos description: Launch executable: Adventurezator.app -'300300': +"300300": installDir: Ichi launch: - config: @@ -144843,7 +141438,7 @@ oslist: linux description: Launch executable: Ichi.x86 -'300320': +"300320": installDir: TheFew launch: - config: @@ -144854,20 +141449,19 @@ oslist: macos description: Launch executable: TheFew.app -'300340': +"300340": installDir: Lemma launch: - config: oslist: windows description: Launch executable: Lemma.exe - - arguments: '-vr' + - arguments: "-vr" config: oslist: windows - vrmode: '1' description: Launch executable: Lemma.exe -'300360': +"300360": installDir: EvilPumpkin launch: - config: @@ -144882,75 +141476,75 @@ oslist: linux description: Launch executable: EvilPumpkin_i386 -'300380': +"300380": installDir: RoadRedemption launch: - - arguments: '-window-mode borderless' + - arguments: "-window-mode borderless" config: - osarch: '64' + osarch: "64" oslist: windows description: in standard mode executable: RoadRedemption.exe type: option1 - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: RoadRedemptionEarlyAccess.exe - config: oslist: linux - description: 'Launch ' + description: "Launch " executable: RoadRedemption.x86_64 type: none - - arguments: '-window-mode exclusive' + - arguments: "-window-mode exclusive" config: - osarch: '64' + osarch: "64" oslist: windows description: in remoteplay mode (for REMOTEPLAY only!) executable: RoadRedemption.exe type: option1 - config: oslist: macos - ownsdlc: '725880' + ownsdlc: "725880" description: Concept Art and Videos - executable: \\ArtBook\\ + executable: "\\\\ArtBook\\\\" type: none - config: oslist: windows - ownsdlc: '727050' + ownsdlc: "727050" description: Original 2014 Alpha Version - executable: \\Road Redemption Alpha\\RoadRedemption.exe + executable: "\\\\Road Redemption Alpha\\\\RoadRedemption.exe" type: none - config: oslist: windows - ownsdlc: '727440' + ownsdlc: "727440" description: Road Redemption Origins Video - executable: RoadRedemptionOriginsVideo\\playVideo.bat + executable: "RoadRedemptionOriginsVideo\\\\playVideo.bat" type: none - config: oslist: macos - ownsdlc: '727440' + ownsdlc: "727440" description: Road Redemption Origins Video - executable: \\RoadRedemptionOriginsVideo\\ + executable: "\\\\RoadRedemptionOriginsVideo\\\\" type: none - config: oslist: macos description: Play Road Redemption executable: Road Redemption.app type: none - - arguments: '-force-d3d9' + - arguments: "-force-d3d9" config: oslist: windows - description: 'DirectX 9 Compatibility Mode ' + description: "DirectX 9 Compatibility Mode " executable: RoadRedemption.exe type: none - config: oslist: windows - ownsdlc: '725880' + ownsdlc: "725880" description: Concept Art and Videos - executable: \\ArtBook\\art.bat + executable: "\\\\ArtBook\\\\art.bat" type: none -'300400': +"300400": installDir: Unpossible launch: - config: @@ -144965,20 +141559,20 @@ oslist: linux description: Launch executable: Unpossible.x86 -'300510': +"300510": installDir: Them - The Summoning launch: - config: oslist: windows description: Launch executable: Them_1_20120412_MULTI.exe -'300540': +"300540": installDir: Sweet Lily Dreams launch: - description: Launch executable: Game.exe -'300550': - installDir: Shadowrun Dragonfall Director's Cut +"300550": + installDir: "Shadowrun Dragonfall Director's Cut" launch: - config: oslist: windows @@ -144988,12 +141582,12 @@ oslist: macos description: Launch executable: Dragonfall.app/Contents/MacOS/Dragonfall - - arguments: '-logFile output.txt' + - arguments: "-logFile output.txt" config: oslist: linux description: Launch executable: Dragonfall -'300570': +"300570": installDir: Infinifactory launch: - config: @@ -145005,16 +141599,16 @@ description: Launch executable: Infinifactory.app - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: infinifactory.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: infinifactory.x86_64 -'300580': +"300580": installDir: Galak-Z launch: - config: @@ -145026,21 +141620,21 @@ executable: Galak-Z.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Galak-Z.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Galak-Z.x86_64 type: default -'300610': +"300610": installDir: Pure Pool launch: - description: Launch executable: MantisConfig.exe -'300620': +"300620": installDir: Flyhunter Origins launch: - config: @@ -145051,24 +141645,24 @@ oslist: macos description: Launch executable: FlyHunter.app -'300630': +"300630": installDir: Pure Chess launch: - description: Launch executable: MantisConfig.exe -'300760': +"300760": installDir: EPSILON launch: - description: Launch executable: EPSILON.exe -'300820': +"300820": installDir: Toy Story 3 launch: - config: oslist: windows description: Launch executable: Game-TS3.exe -'300840': +"300840": installDir: JUJU launch: - config: @@ -145076,38 +141670,38 @@ description: Launch executable: Binaries/Win32/PCLauncher.exe workingdir: Binaries/Win32 -'300900': +"300900": installDir: Hippocampal The White Sofa launch: - description: Launch executable: /Binaries/Win32/Hippocampal.exe workingdir: /Binaries/Win32 -'300910': +"300910": installDir: Monster Challenge Circus launch: - description: Launch executable: dehon.exe -'3010': +"3010": installDir: Xpand Rally launch: - executable: xpandrally.exe - description: Launch Xpand Rally Editor executable: ChromEd.exe -'301050': +"301050": installDir: Night Shift launch: - config: oslist: windows description: Launch executable: NightShift.exe -'301120': +"301120": installDir: Eastside Hockey Manager launch: - config: oslist: windows description: Launch executable: ehm.exe -'301150': +"301150": installDir: Montezuma 4 launch: - config: @@ -145118,7 +141712,7 @@ oslist: macos description: Launch executable: The_Treasures_Of_Montezuma_4.app -'301190': +"301190": installDir: FredericROM launch: - config: @@ -145133,7 +141727,7 @@ oslist: linux description: Launch executable: Frederic.x86 - - arguments: '--touch' + - arguments: "--touch" config: oslist: windows description: Launch using touch input @@ -145142,7 +141736,7 @@ oslist: windows description: Soundtrack executable: soundtrack.cmd -'301200': +"301200": installDir: Frederic Evil Strikes Back launch: - config: @@ -145157,7 +141751,7 @@ oslist: linux description: Launch executable: Frederic2.x86 - - arguments: '--touch' + - arguments: "--touch" config: oslist: windows description: Launch using touch input @@ -145166,7 +141760,7 @@ oslist: windows description: Soundtrack executable: soundtrack.cmd -'301220': +"301220": installDir: Legends of Persia launch: - description: Launch @@ -145175,20 +141769,20 @@ - description: Change Settings and Play executable: bin/release/LoPLauncher.exe workingdir: bin/release/ -'301250': +"301250": installDir: Live Duel launch: - config: oslist: windows description: Launch executable: LIVE-DUELL.exe -'301260': +"301260": installDir: Gardens Inc. 2 The Road to Fame launch: - description: Launch executable: GardensInc2.exe -'301280': {} -'301300': +"301280": {} +"301300": installDir: Chicken Invaders 4 launch: - config: @@ -145207,131 +141801,131 @@ type: none - config: oslist: windows - ownsdlc: '370400' + ownsdlc: "370400" description: Christmas Edition DLC executable: DLC_xmas/CI4Xmas.exe workingdir: DLC_xmas - config: oslist: linux - ownsdlc: '370400' + ownsdlc: "370400" description: Christmas Edition DLC executable: DLC_xmas/CI4Xmas.exe type: none workingdir: DLC_xmas - config: oslist: macos - ownsdlc: '370400' + ownsdlc: "370400" description: Christmas Edition DLC executable: DLC_xmas/Chicken Invaders 4 Xmas Steam.app/Contents/MacOS/CI4Xmas.exe type: none workingdir: DLC_xmas - config: oslist: windows - ownsdlc: '370401' + ownsdlc: "370401" description: Easter Edition DLC executable: DLC_easter/CI4Easter.exe workingdir: DLC_easter - config: oslist: linux - ownsdlc: '370401' + ownsdlc: "370401" description: Easter Edition DLC executable: DLC_easter/CI4Easter.exe type: none workingdir: DLC_easter - config: oslist: macos - ownsdlc: '370401' + ownsdlc: "370401" description: Easter Edition DLC executable: DLC_easter/Chicken Invaders 4 Easter Steam.app/Contents/MacOS/CI4Easter.exe type: none workingdir: DLC_easter - config: oslist: windows - ownsdlc: '370402' + ownsdlc: "370402" description: Thanksgiving Edition DLC executable: DLC_thanksgiving/CI4Thanksgiving.exe workingdir: DLC_thanksgiving - config: oslist: linux - ownsdlc: '370402' + ownsdlc: "370402" description: Thanksgiving Edition DLC executable: DLC_thanksgiving/CI4Thanksgiving.exe type: none workingdir: DLC_thanksgiving - config: oslist: macos - ownsdlc: '370402' + ownsdlc: "370402" description: Thanksgiving Edition DLC executable: DLC_thanksgiving/Chicken Invaders 4 Thanksgiving Steam.app/Contents/MacOS/CI4Thanksgiving.exe type: none workingdir: DLC_thanksgiving -'301320': +"301320": installDir: NoLimits 2 launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch - executable: 64bit\\nolimits2stm.exe + executable: "64bit\\\\nolimits2stm.exe" type: default - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch - executable: 32bit\\nolimits2stm.exe + executable: "32bit\\\\nolimits2stm.exe" type: default - - arguments: '--openvr' + - arguments: "--openvr" config: - osarch: '64' + osarch: "64" oslist: windows description: NoLimits 2 - HTC Vive - executable: 64bit\\nolimits2stm.exe + executable: "64bit\\\\nolimits2stm.exe" type: vr - - arguments: '--openvr' + - arguments: "--openvr" config: - osarch: '32' + osarch: "32" oslist: windows description: NoLimits 2 - HTC Vive - executable: 32bit\\nolimits2stm.exe + executable: "32bit\\\\nolimits2stm.exe" type: vr - - arguments: '--vr' + - arguments: "--vr" config: - osarch: '64' + osarch: "64" oslist: windows description: NoLimits 2 - Oculus Rift - executable: 64bit\\nolimits2stm.exe + executable: "64bit\\\\nolimits2stm.exe" type: othervr - - arguments: '--vr' + - arguments: "--vr" config: - osarch: '32' + osarch: "32" oslist: windows description: NoLimits 2 - Oculus Rift - executable: 32bit\\nolimits2stm.exe + executable: "32bit\\\\nolimits2stm.exe" type: othervr - config: oslist: macos description: Launch executable: macos/NoLimits2.app type: default -'301360': +"301360": installDir: KillFunYeah launch: - config: oslist: windows description: Play Kill Fun Yeah executable: KFY_Client.exe - - arguments: '--editor' + - arguments: "--editor" config: oslist: windows description: Launch Editor executable: KFY_Client.exe - config: - osarch: '64' + osarch: "64" oslist: linux description: Play Kill Fun Yeah executable: runClient.sh - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch Editor executable: runEditor.sh @@ -145339,12 +141933,12 @@ oslist: macos description: Play Kill Fun Yeah executable: KFY.app/Contents/Resources/KFY_Client - - arguments: '--editor' + - arguments: "--editor" config: oslist: macos description: Launch Editor executable: KFY.app/Contents/Resources/KFY_Client -'301380': +"301380": installDir: DateWarp launch: - config: @@ -145359,14 +141953,14 @@ oslist: macos description: Launch executable: DateWarp.app -'301420': +"301420": installDir: ThirdEyeCrime launch: - config: oslist: windows description: Launch executable: ThirdEyeCrime.exe -'301460': +"301460": installDir: GrooveCity launch: - config: @@ -145381,21 +141975,21 @@ oslist: linux description: Launch executable: GrooveCity.x86 -'301480': +"301480": installDir: GEARCRACK Arena launch: - config: oslist: windows description: Launch executable: GEARCRACK Arena.exe -'301500': +"301500": installDir: BOMB launch: - config: oslist: windows description: Launch - executable: bin\\release\\BOMB.exe - workingdir: bin\\release + executable: "bin\\\\release\\\\BOMB.exe" + workingdir: "bin\\\\release" - config: oslist: linux description: Launch @@ -145406,7 +142000,7 @@ description: Launch executable: bin/release/BOMB.app/Contents/MacOS/BOMB workingdir: bin/release -'301520': +"301520": installDir: Robocraft launch: - config: @@ -145418,23 +142012,23 @@ description: Launch executable: robocraft.app - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: Robocraft.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Robocraft.x86_64 -'301540': +"301540": installDir: RhythmDestruction launch: - config: oslist: windows description: Launch executable: RhythmDestruction.exe -'301560': +"301560": installDir: White Night launch: - config: @@ -145452,30 +142046,30 @@ description: Launch executable: Bin/Linux32/WNight workingdir: Bin/Linux32 -'301640': +"301640": installDir: Zombie Army Trilogy launch: - - executable: launcher\\ZATLauncher.exe -'301650': + - executable: "launcher\\\\ZATLauncher.exe" +"301650": installDir: Battlezone 98 Redux launch: - config: oslist: windows description: Launch - executable: \\launcher\\BZLauncher.exe + executable: "\\\\launcher\\\\BZLauncher.exe" type: none - config: oslist: macos - executable: \\Battlezone 98 Redux (Steam).app\\Contents\\MacOS\\Battlezone 98 Redux (Steam) + executable: "\\\\Battlezone 98 Redux (Steam).app\\\\Contents\\\\MacOS\\\\Battlezone 98 Redux (Steam)" type: none -'301670': +"301670": installDir: Salammbo Battle for Carthage launch: - config: oslist: windows description: Launch executable: Salammbo.exe -'301680': +"301680": installDir: Psichodelya launch: - config: @@ -145487,26 +142081,26 @@ description: Launch executable: Psichodelya.app - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: Psichodelya.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Psichodelya.x86_64 -'301690': +"301690": installDir: Cobi Treasure Deluxe launch: - description: Launch executable: Cobi Treasure Deluxe.exe -'301700': +"301700": installDir: Numba Deluxe launch: - description: Launch executable: numba.exe -'301730': +"301730": installDir: 300 Dwarves launch: - config: @@ -145517,7 +142111,7 @@ oslist: macos description: Launch executable: 300Dwarves.app -'301740': +"301740": installDir: Castle Never Judge a Book by its Cover launch: - config: @@ -145528,74 +142122,72 @@ oslist: macos description: Launch executable: Castle.app -'301750': +"301750": installDir: RADical ROACH launch: - description: Launch - description_loc: - english: Launch executable: RADical ROACH.exe type: none -'301760': +"301760": installDir: Cars 2 launch: - description: Launch executable: Game-Cars.exe -'301830': +"301830": installDir: Disney-Pixar Brave launch: - config: oslist: windows description: Launch executable: Brave.exe -'301840': +"301840": installDir: City Of Brass launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Play City Of Brass executable: COB/Binaries/Win64/COB-Win64-Shipping.exe type: default workingdir: COB/Binaries/Win64 -'301860': +"301860": installDir: Submerged launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch x64 - executable: Submerged\\Binaries\\Win64\\Submerged-Win64-Shipping.exe - workingdir: Submerged\\Binaries\\Win64\\ + executable: "Submerged\\\\Binaries\\\\Win64\\\\Submerged-Win64-Shipping.exe" + workingdir: "Submerged\\\\Binaries\\\\Win64\\\\" - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch Linux - executable: Submerged\\Binaries\\Linux\\Submerged - workingdir: Submerged\\Binaries\\Linux\\ -'301910': + executable: "Submerged\\\\Binaries\\\\Linux\\\\Submerged" + workingdir: "Submerged\\\\Binaries\\\\Linux\\\\" +"301910": installDir: Saints Row Gat out of Hell launch: - config: oslist: windows - description: 'Saint''s Row: Gat Out Of Hell' + description: "Saint's Row: Gat Out Of Hell" executable: SaintsRowGatOutOfHell.exe - config: oslist: linux - executable: ./saintsrowgooh + executable: "./saintsrowgooh" type: default -'301920': +"301920": installDir: War of the Human Tanks - ALTeR launch: - description: Launch executable: War of the Human Tanks ALTeR.exe -'301930': +"301930": installDir: War of the Human Tanks - Limited Operations launch: - description: Launch executable: War of the Human Tanks LO.exe type: none -'301970': +"301970": installDir: Screencheat launch: - config: @@ -145610,38 +142202,38 @@ oslist: linux description: Launch executable: screencheat.x86 -'301980': +"301980": installDir: Pirates of the Caribbean - At Worlds End launch: - config: oslist: windows description: Launch executable: At Worlds End.exe -'301990': +"301990": installDir: SchoolBusFun launch: - description: Launch executable: SchoolBusFunSteam.exe -'3020': +"3020": installDir: Call of Juarez launch: - executable: CoJ.exe - description: Run Call of Juarez - DirectX 10 executable: CoJ_DX10.exe - - arguments: '-safemode' + - arguments: "-safemode" description: Run Call of Juarez in safe mode executable: CoJ.exe - - arguments: '-safemode' + - arguments: "-safemode" description: Run Call of Juarez in safe mode - DirectX 10 executable: CoJ_DX10.exe - - arguments: '-server -dedicated -internet' + - arguments: "-server -dedicated -internet" description: Run Call of Juarez dedicated internet server executable: CoJ.exe - description: Run Call of Juarez DirectX 10 benchmark executable: cojdx10_benchmark.exe - description: ChromEd executable: chromEd.exe -'302010': +"302010": installDir: TheBlueFlamingo launch: - config: @@ -145652,14 +142244,14 @@ oslist: macos description: Launch executable: TheBlueFlamingo.app -'302060': +"302060": installDir: Trucks & Trailers launch: - config: oslist: windows description: Play Trucks & Trailers executable: bin/win_x86/trucks_n_trailers.exe -'302080': +"302080": installDir: Bus Driver launch: - config: @@ -145670,68 +142262,68 @@ oslist: windows description: Configure Bus Driver executable: bin/win_x86/launcher.exe -'302110': +"302110": installDir: Small Town Terrors Pilgrims Hook CE launch: - description: Launch executable: SmallTownTerrors_PilgrimsHookCE.exe -'302130': +"302130": installDir: Brink of Consciousness Dorian Gray Syndrome launch: - config: oslist: windows description: Launch executable: DorianGraySyndromeCE.exe -'302160': +"302160": installDir: The Egyptian Prophecy launch: - config: oslist: windows description: Launch executable: Egypt3.exe -'302170': +"302170": installDir: The Cameron Files The Secret at Loch Ness launch: - config: oslist: windows description: Launch executable: Lochness.exe -'302180': +"302180": installDir: Journey to the Moon launch: - config: oslist: windows description: Launch executable: Moon.exe -'302190': +"302190": installDir: Amerzone The Explorers Legacy launch: - config: oslist: windows description: Launch executable: Amerzone.exe -'302210': +"302210": installDir: Curse The Eye of Isis launch: - config: oslist: windows description: Launch executable: RunCurse.exe -'302240': +"302240": installDir: Chernobyl Commando launch: - description: Launch executable: CC.exe -'302250': +"302250": installDir: Manhunter launch: - description: Launch executable: MH.exe -'302260': +"302260": installDir: Truffle Saga launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: TruffleSaga.exe @@ -145739,21 +142331,21 @@ oslist: macos description: Launch executable: TruffleSaga.app -'302270': +"302270": installDir: DunDefEternity launch: - config: oslist: windows description: Launch - executable: DungeonDefendersEternity\\Binaries\\Win32\\DunDefGame.exe + executable: "DungeonDefendersEternity\\\\Binaries\\\\Win32\\\\DunDefGame.exe" - config: oslist: linux description: Launch - executable: DungeonDefendersEternity\\Binaries\\Linux\\DunDefGame + executable: "DungeonDefendersEternity\\\\Binaries\\\\Linux\\\\DunDefGame" - config: oslist: macos description: Launch - executable: DungeonDefendersEternity\\DunDef.app + executable: "DungeonDefendersEternity\\\\DunDef.app" - arguments: LinkSteam.sh config: oslist: linux @@ -145764,22 +142356,22 @@ oslist: linux description: Unlink Steam Libraries executable: LaunchScript.sh - - arguments: '-OFFLINE' + - arguments: "-OFFLINE" config: oslist: windows description: Play Offline - executable: DungeonDefendersEternity\\Binaries\\Win32\\DunDefGame.exe - - arguments: '-OFFLINE' + executable: "DungeonDefendersEternity\\\\Binaries\\\\Win32\\\\DunDefGame.exe" + - arguments: "-OFFLINE" config: oslist: linux description: Play Offline - executable: DungeonDefendersEternity\\Binaries\\Linux\\DunDefGame - - arguments: '-OFFLINE' + executable: "DungeonDefendersEternity\\\\Binaries\\\\Linux\\\\DunDefGame" + - arguments: "-OFFLINE" config: oslist: macos description: Play Offline - executable: DungeonDefendersEternity\\DunDef.app -'302290': + executable: "DungeonDefendersEternity\\\\DunDef.app" +"302290": installDir: Infinite Game Works Episode 0 launch: - config: @@ -145794,7 +142386,7 @@ oslist: linux description: Launch executable: Infinite Game Works.sh -'302310': +"302310": installDir: Dungeon of Elements launch: - config: @@ -145809,20 +142401,20 @@ oslist: linux description: Launch executable: DungeonofElements -'302320': +"302320": installDir: Storm over the Pacific launch: - description: Launch executable: sop_setup.exe -'302330': +"302330": installDir: Tex Murphy 1 launch: - - arguments: '-conf dosbox_texmurphy1.conf -conf dosbox_texmurphy1_launch_windows.conf -noconsole' + - arguments: "-conf dosbox_texmurphy1.conf -conf dosbox_texmurphy1_launch_windows.conf -noconsole" config: oslist: windows description: Launch - executable: dosbox_windows\\dosbox.exe - workingdir: dosbox_windows\\ + executable: "dosbox_windows\\\\dosbox.exe" + workingdir: "dosbox_windows\\\\" - config: oslist: macos description: Launch @@ -145830,108 +142422,108 @@ - config: oslist: linux description: Launch - executable: dosbox_linux\\launch_texmurphy1_game.sh - workingdir: dosbox_linux\\ + executable: "dosbox_linux\\\\launch_texmurphy1_game.sh" + workingdir: "dosbox_linux\\\\" - config: oslist: linux - description: 'Play Tex Murphy: Mean Streets with DOSBox Daum' - executable: dosbox_linux\\daum\\launch_texmurphy1_game_daum.sh - workingdir: dosbox_linux\\daum\\ -'302340': + description: "Play Tex Murphy: Mean Streets with DOSBox Daum" + executable: "dosbox_linux\\\\daum\\\\launch_texmurphy1_game_daum.sh" + workingdir: "dosbox_linux\\\\daum\\\\" +"302340": installDir: Tex Murphy 2 launch: - - arguments: '-conf dosbox_texmurphy2.conf -conf dosbox_texmurphy2_launch_windows.conf -noconsole' + - arguments: "-conf dosbox_texmurphy2.conf -conf dosbox_texmurphy2_launch_windows.conf -noconsole" config: oslist: windows - description: 'Play Tex Murphy: Martian Memorandum' - executable: dosbox_windows\\dosbox.exe - workingdir: dosbox_windows\\ - - arguments: '-conf dosbox_texmurphy2.conf -conf dosbox_texmurphy2_launch_windows.conf -noconsole' + description: "Play Tex Murphy: Martian Memorandum" + executable: "dosbox_windows\\\\dosbox.exe" + workingdir: "dosbox_windows\\\\" + - arguments: "-conf dosbox_texmurphy2.conf -conf dosbox_texmurphy2_launch_windows.conf -noconsole" config: oslist: windows - description: 'Play Tex Murphy: Martian Memorandum with DOSBox Daum' - executable: dosbox_windows\\daum\\dosbox.exe - workingdir: dosbox_windows\\daum\\ + description: "Play Tex Murphy: Martian Memorandum with DOSBox Daum" + executable: "dosbox_windows\\\\daum\\\\dosbox.exe" + workingdir: "dosbox_windows\\\\daum\\\\" - config: oslist: macos - description: 'Play Tex Murphy: Martian Memorandum' + description: "Play Tex Murphy: Martian Memorandum" executable: Tex Murphy Martian Memorandum.app - config: oslist: linux - description: 'Play Tex Murphy: Martian Memorandum' - executable: dosbox_linux\\launch_texmurphy2_game.sh - workingdir: dosbox_linux\\ + description: "Play Tex Murphy: Martian Memorandum" + executable: "dosbox_linux\\\\launch_texmurphy2_game.sh" + workingdir: "dosbox_linux\\\\" - config: oslist: linux - description: 'Play Tex Murphy: Martian Memorandum with DOSBox Daum' - executable: dosbox_linux\\daum\\launch_texmurphy2_game_daum.sh - workingdir: dosbox_linux\\daum\\ -'302350': + description: "Play Tex Murphy: Martian Memorandum with DOSBox Daum" + executable: "dosbox_linux\\\\daum\\\\launch_texmurphy2_game_daum.sh" + workingdir: "dosbox_linux\\\\daum\\\\" +"302350": installDir: Tex Murphy 3 launch: - - arguments: '-conf dosbox_texmurphy3.conf -conf dosbox_texmurphy3_launch_windows.conf -noconsole' + - arguments: "-conf dosbox_texmurphy3.conf -conf dosbox_texmurphy3_launch_windows.conf -noconsole" config: oslist: windows - description: 'Play Tex Murphy: Under a Killing Moon' - executable: dosbox_windows\\dosbox.exe - workingdir: dosbox_windows\\ - - arguments: '-conf dosbox_texmurphy3.conf -conf dosbox_texmurphy3_launch_windows.conf -noconsole' + description: "Play Tex Murphy: Under a Killing Moon" + executable: "dosbox_windows\\\\dosbox.exe" + workingdir: "dosbox_windows\\\\" + - arguments: "-conf dosbox_texmurphy3.conf -conf dosbox_texmurphy3_launch_windows.conf -noconsole" config: oslist: windows - description: 'Play Tex Murphy: Under a Killing Moon with DOSBox Daum' - executable: dosbox_windows\\daum\\dosbox.exe - workingdir: dosbox_windows\\daum\\ + description: "Play Tex Murphy: Under a Killing Moon with DOSBox Daum" + executable: "dosbox_windows\\\\daum\\\\dosbox.exe" + workingdir: "dosbox_windows\\\\daum\\\\" - config: oslist: macos description: Launch executable: Tex Murphy Under a Killing Moon.app - config: oslist: linux - description: 'Play Tex Murphy: Under a Killing Moon' - executable: dosbox_linux\\launch_texmurphy3_game.sh - workingdir: dosbox_linux\\ + description: "Play Tex Murphy: Under a Killing Moon" + executable: "dosbox_linux\\\\launch_texmurphy3_game.sh" + workingdir: "dosbox_linux\\\\" - config: oslist: linux - description: 'Play Tex Murphy: Under a Killing Moon with DOSBox Daum' - executable: dosbox_linux\\daum\\launch_texmurphy3_game_daum.sh - workingdir: dosbox_linux\\daum\\ -'302360': + description: "Play Tex Murphy: Under a Killing Moon with DOSBox Daum" + executable: "dosbox_linux\\\\daum\\\\launch_texmurphy3_game_daum.sh" + workingdir: "dosbox_linux\\\\daum\\\\" +"302360": installDir: Tex Murphy 4 launch: - - arguments: '-conf dosbox_texmurphy4.conf -conf dosbox_texmurphy4_launch_windows.conf -noconsole' + - arguments: "-conf dosbox_texmurphy4.conf -conf dosbox_texmurphy4_launch_windows.conf -noconsole" config: oslist: windows - description: 'Play Tex Murphy: The Pandora Directive' - executable: dosbox_windows\\dosbox.exe - workingdir: dosbox_windows\\ - - arguments: '-conf dosbox_texmurphy4.conf -conf dosbox_texmurphy4_launch_windows.conf -noconsole' + description: "Play Tex Murphy: The Pandora Directive" + executable: "dosbox_windows\\\\dosbox.exe" + workingdir: "dosbox_windows\\\\" + - arguments: "-conf dosbox_texmurphy4.conf -conf dosbox_texmurphy4_launch_windows.conf -noconsole" config: oslist: windows - description: 'Play Tex Murphy: The Pandora Directive with DOSBox Daum' - executable: dosbox_windows\\daum\\dosbox.exe - workingdir: dosbox_windows\\daum\\ + description: "Play Tex Murphy: The Pandora Directive with DOSBox Daum" + executable: "dosbox_windows\\\\daum\\\\dosbox.exe" + workingdir: "dosbox_windows\\\\daum\\\\" - config: oslist: macos description: Launch executable: Tex Murphy The Pandora Directive.app - config: oslist: linux - description: 'Play Tex Murphy: The Pandora Directive' - executable: dosbox_linux\\launch_texmurphy4_game.sh - workingdir: dosbox_linux\\ + description: "Play Tex Murphy: The Pandora Directive" + executable: "dosbox_linux\\\\launch_texmurphy4_game.sh" + workingdir: "dosbox_linux\\\\" - config: oslist: linux - description: 'Play Tex Murphy: The Pandora Directive with DOSBox Daum' - executable: dosbox_linux\\daum\\launch_texmurphy4_game_daum.sh - workingdir: dosbox_linux\\daum\\ -'302370': + description: "Play Tex Murphy: The Pandora Directive with DOSBox Daum" + executable: "dosbox_linux\\\\daum\\\\launch_texmurphy4_game_daum.sh" + workingdir: "dosbox_linux\\\\daum\\\\" +"302370": installDir: Overseer launch: - config: oslist: windows - description: 'Play Tex Murphy: Overseer' + description: "Play Tex Murphy: Overseer" executable: OVERSEER.EXE -'302380': +"302380": installDir: Floating Point launch: - config: @@ -145946,14 +142538,14 @@ oslist: linux description: Launch executable: Floating Point.x86 -'302390': +"302390": installDir: Necronomicon The Dawning of Darkness launch: - config: oslist: windows description: Launch executable: Necrono.exe -'302440': +"302440": installDir: Roadside Assistance Simulator launch: - config: @@ -145964,7 +142556,7 @@ oslist: macos description: Launch executable: RoadsideAssistanceSimulator.app -'302460': +"302460": installDir: I Am Vegend launch: - config: @@ -145974,15 +142566,15 @@ - config: oslist: macos description: Launch - executable: IAmVegend.app\\Contents\\MacOS\\I Am Vegend -'302470': + executable: "IAmVegend.app\\\\Contents\\\\MacOS\\\\I Am Vegend" +"302470": installDir: Battle Mages launch: - config: oslist: windows description: Launch executable: mages.exe -'302490': +"302490": installDir: Ballad of Solar launch: - config: @@ -145993,15 +142585,15 @@ oslist: macos description: Launch executable: Ballad_of_Solar.app -'302510': +"302510": installDir: Ryse Son of Rome launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch - executable: Bin64\\Ryse.exe -'302570': + executable: "Bin64\\\\Ryse.exe" +"302570": installDir: Dangerous launch: - config: @@ -146012,14 +142604,14 @@ oslist: windows description: Launch Dangerous for Windows executable: dangerous.exe -'302590': +"302590": installDir: OfGuardsAndThieves launch: - config: oslist: windows description: Launch executable: OGAT.exe -'302610': +"302610": installDir: Boson X launch: - config: @@ -146034,18 +142626,18 @@ oslist: macos description: Launch executable: bosonx -'302650': +"302650": installDir: Cyto launch: - config: oslist: macos description: Launch - executable: Cyto.app\\Contents\\MacOS\\Cyto + executable: "Cyto.app\\\\Contents\\\\MacOS\\\\Cyto" - config: oslist: windows description: Launch executable: Cyto.exe -'302670': +"302670": installDir: Call to Arms launch: - description: Launch @@ -146053,36 +142645,36 @@ type: none - config: betakey: legacy - osarch: '64' + osarch: "64" description: Play Call to Arms 64bit (singleplayer) executable: binaries/x64/call_to_arms.exe type: none - config: - osarch: '64' + osarch: "64" description: Editor executable: binaries/x64/call_to_arms_ed.exe type: none - - arguments: '-safe' + - arguments: "-safe" description: Safe mode executable: binaries/x64/call_to_arms.exe type: none - - arguments: '-no_mods' + - arguments: "-no_mods" description: Safe mode (no mods) executable: binaries/x64/call_to_arms.exe type: none -'302690': +"302690": installDir: MetalDead launch: - config: oslist: windows description: Launch executable: MetalDead.exe - - arguments: '--setup' + - arguments: "--setup" config: oslist: windows description: Setup executable: MetalDead.exe -'302710': +"302710": installDir: Blaze Rush launch: - config: @@ -146097,8 +142689,8 @@ oslist: linux description: Launch executable: blazerush -'302730': - installDir: Namarel Legends. Iron Lord Collector's Edition +"302730": + installDir: "Namarel Legends. Iron Lord Collector's Edition" launch: - config: oslist: windows @@ -146112,7 +142704,7 @@ oslist: linux description: Launch executable: NamarielLegends_IronLord_CE -'302750': +"302750": installDir: CountingKingdom launch: - config: @@ -146123,26 +142715,26 @@ oslist: macos description: Launch executable: CKMac.app -'302790': +"302790": installDir: Momodora III launch: - config: oslist: windows description: Launch executable: Momodora3.exe -'302810': +"302810": installDir: DiviniaChronicles launch: - - arguments: '-game ..//divchronicles' + - arguments: "-game ..//divchronicles" config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: sdk/hl2.exe type: none nameLocalized: schinese: 蒂维妮娅编年史:甘缇遗物 -'302830': +"302830": installDir: Blockade3d launch: - config: @@ -146150,7 +142742,7 @@ description: Launch executable: Blockade3D.exe type: none -'302850': +"302850": installDir: TeamIndie launch: - config: @@ -146161,22 +142753,22 @@ oslist: macos description: Launch executable: TeamIndie.app -'302870': +"302870": installDir: StainedGame launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: StainedGame.exe -'302910': +"302910": installDir: The House launch: - config: oslist: windows description: Launch executable: TheHouse.exe -'302950': +"302950": installDir: Heileen1 launch: - config: @@ -146191,12 +142783,12 @@ oslist: linux description: Launch executable: Heileen.sh -'302970': +"302970": installDir: RadiantDefense launch: - description: Launch executable: RadiantDefense.exe -'303210': +"303210": installDir: The Beginners Guide launch: - config: @@ -146204,17 +142796,17 @@ description: Launch executable: beginnersguide.exe type: none - - arguments: '-game beginnersguide' + - arguments: "-game beginnersguide" config: oslist: macos executable: launchit.sh type: none - - arguments: '-game beginnersguide' + - arguments: "-game beginnersguide" config: oslist: linux executable: launchit.sh type: none -'303260': +"303260": installDir: Tristoy launch: - config: @@ -146229,17 +142821,17 @@ oslist: linux description: Launch executable: TRISTOY.x86 -'303290': +"303290": installDir: OZMAFIA launch: - executable: ozmafia.exe type: none -'303310': +"303310": installDir: The House in Fata Morgana launch: - executable: fata.exe type: none -'303340': +"303340": installDir: Concursion launch: - config: @@ -146251,7 +142843,7 @@ oslist: macos description: Launch executable: Concursion.app -'303390': +"303390": installDir: Dead Bits launch: - config: @@ -146262,7 +142854,7 @@ oslist: macos description: Launch executable: Dead Bits.app -'303410': +"303410": installDir: DysanTheShapeshifter launch: - config: @@ -146273,7 +142865,7 @@ oslist: macos description: Launch executable: ds.app -'303430': +"303430": installDir: Roundabout launch: - config: @@ -146290,41 +142882,41 @@ executable: Roundabout.app - config: oslist: windows - ownsdlc: '309920' + ownsdlc: "309920" description: View Deluxe Edition Extras executable: RoundaboutDeluxe.exe - config: oslist: linux - ownsdlc: '309920' + ownsdlc: "309920" description: View Deluxe Edition Extras executable: RoundaboutDeluxe.x86 - config: oslist: macos - ownsdlc: '309920' + ownsdlc: "309920" description: View Deluxe Edition Extras executable: RoundaboutDeluxe.app -'303470': +"303470": installDir: Rush for Glory launch: - description: Launch executable: RfG.exe -'303510': +"303510": installDir: Dungeons The Eye Of Draconus launch: - config: oslist: windows description: Launch executable: DungeonsLauncher.exe -'303530': +"303530": installDir: Sentris launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Sentris executable: Sentris.exe - config: - osarch: '64' + osarch: "64" oslist: windows description: Sentris executable: Sentris.exe @@ -146333,212 +142925,212 @@ description: Sentris executable: Sentris.app - config: - osarch: '32' + osarch: "32" oslist: linux description: Sentris executable: Sentris.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Sentris executable: Sentris.x86_64 - config: oslist: macos description: 1) Debut Prototype - executable: debut\\Sentris Debut Prototype.app + executable: "debut\\\\Sentris Debut Prototype.app" type: none - config: oslist: windows description: 1) Debut Prototype - executable: debut\\Sentris Debut Prototype.exe + executable: "debut\\\\Sentris Debut Prototype.exe" type: none - config: - osarch: '32' + osarch: "32" oslist: linux description: 1) Debut Prototype - executable: debut\\Sentris.Debut.Prototype.x86 + executable: "debut\\\\Sentris.Debut.Prototype.x86" type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: 1) Debut Prototype - executable: debut\\Sentris.Debut.Prototype.x86_64 + executable: "debut\\\\Sentris.Debut.Prototype.x86_64" type: none - config: oslist: macos description: 6) Alpha 1 - executable: alpha1\\Sentris Alpha 1.app + executable: "alpha1\\\\Sentris Alpha 1.app" type: none - config: oslist: macos description: 7) Alpha 2 - executable: alpha2\\Sentris Alpha 2.app + executable: "alpha2\\\\Sentris Alpha 2.app" type: none - config: oslist: macos description: 2) Donut Prototype - executable: donut\\Sentris Donut Prototype.app + executable: "donut\\\\Sentris Donut Prototype.app" type: none - config: oslist: macos - description: 9) \"Glacier\" Update - executable: glacier\\Sentris Glacier.app + description: "9) \\\"Glacier\\\" Update" + executable: "glacier\\\\Sentris Glacier.app" type: none - - description: 8) \"Honeycomb\" Update - executable: honeycomb\\Sentris Honeycomb.app + - description: "8) \\\"Honeycomb\\\" Update" + executable: "honeycomb\\\\Sentris Honeycomb.app" type: none - config: oslist: macos description: 3) Pre-Alpha 1 - executable: prealpha1\\Sentris Pre-Alpha 1.app + executable: "prealpha1\\\\Sentris Pre-Alpha 1.app" type: none - config: oslist: macos description: 5) Pre-Alpha 2 - executable: prealpha2\\Sentris Pre-Alpha 2.app + executable: "prealpha2\\\\Sentris Pre-Alpha 2.app" type: none - config: oslist: macos description: 4) Tidepool Prototype - executable: tidepool\\Sentris Tidepool Prototype.app + executable: "tidepool\\\\Sentris Tidepool Prototype.app" type: none - config: oslist: windows description: 6) Alpha 1 - executable: alpha1\\Sentris Alpha 1.exe + executable: "alpha1\\\\Sentris Alpha 1.exe" type: none - config: oslist: windows description: 7) Alpha 2 - executable: alpha2\\Sentris Alpha 2.exe + executable: "alpha2\\\\Sentris Alpha 2.exe" type: none - config: oslist: windows description: 2) Donut Prototype - executable: donut\\Sentris Donut Prototype.exe + executable: "donut\\\\Sentris Donut Prototype.exe" type: none - config: oslist: windows - description: 9) \"Glacier\" Update - executable: glacier\\Sentris Glacier.exe + description: "9) \\\"Glacier\\\" Update" + executable: "glacier\\\\Sentris Glacier.exe" type: none - config: oslist: windows - description: 8) \"Honeycomb\" Update - executable: honeycomb\\Sentris Honeycomb.exe + description: "8) \\\"Honeycomb\\\" Update" + executable: "honeycomb\\\\Sentris Honeycomb.exe" type: none - config: oslist: windows description: 3) Pre-Alpha 1 - executable: prealpha1\\Sentris Pre-Alpha 1.exe + executable: "prealpha1\\\\Sentris Pre-Alpha 1.exe" type: none - config: oslist: windows description: 5) Pre-Alpha 2 - executable: prealpha2\\Sentris Pre-Alpha 2.exe + executable: "prealpha2\\\\Sentris Pre-Alpha 2.exe" type: none - config: oslist: windows description: 4) Tidepool Prototype - executable: tidepool\\Sentris Tidepool Prototype.exe + executable: "tidepool\\\\Sentris Tidepool Prototype.exe" type: none - config: - osarch: '32' + osarch: "32" oslist: linux description: 6) Alpha 1 - executable: alpha1\\Sentris.Alpha.1.x86 + executable: "alpha1\\\\Sentris.Alpha.1.x86" type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: 6) Alpha 1 - executable: alpha1\\Sentris.Alpha.1.x86_64 + executable: "alpha1\\\\Sentris.Alpha.1.x86_64" type: none - config: - osarch: '32' + osarch: "32" oslist: linux description: 7) Alpha 2 - executable: alpha2\\Sentris.Alpha.2.x86 + executable: "alpha2\\\\Sentris.Alpha.2.x86" type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: 7) Alpha 2 - executable: alpha2\\Sentris.Alpha.2.x86_64 + executable: "alpha2\\\\Sentris.Alpha.2.x86_64" type: none - config: - osarch: '32' + osarch: "32" oslist: linux description: 2) Donut Prototype - executable: donut\\Sentris_Donut_Prototype.x86 + executable: "donut\\\\Sentris_Donut_Prototype.x86" type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: 2) Donut Prototype - executable: donut\\Sentris_Donut_Prototype.x86_64 + executable: "donut\\\\Sentris_Donut_Prototype.x86_64" type: none - config: - osarch: '32' + osarch: "32" oslist: linux - description: 9) \"Glacier\" Update - executable: glacier\\Sentris.Glacier.x86 + description: "9) \\\"Glacier\\\" Update" + executable: "glacier\\\\Sentris.Glacier.x86" type: none - config: - osarch: '64' + osarch: "64" oslist: linux - description: 9) \"Glacier\" Update - executable: glacier\\Sentris.Glacier.x86_64 + description: "9) \\\"Glacier\\\" Update" + executable: "glacier\\\\Sentris.Glacier.x86_64" type: none - config: - osarch: '32' + osarch: "32" oslist: linux - description: 8) \"Honeycomb\" Update - executable: honeycomb\\Sentris.Honeycomb.x86 + description: "8) \\\"Honeycomb\\\" Update" + executable: "honeycomb\\\\Sentris.Honeycomb.x86" type: none - config: - osarch: '64' + osarch: "64" oslist: linux - description: 8) \"Honeycomb\" Update - executable: honeycomb\\Sentris.Honeycomb.x86_64 + description: "8) \\\"Honeycomb\\\" Update" + executable: "honeycomb\\\\Sentris.Honeycomb.x86_64" type: none - config: - osarch: '32' + osarch: "32" oslist: linux description: 3) Pre-Alpha 1 - executable: prealpha1\\Sentris.PreAlpha1.x86 + executable: "prealpha1\\\\Sentris.PreAlpha1.x86" type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: 3) Pre-Alpha 1 - executable: prealpha1\\Sentris.PreAlpha1.x86_64 + executable: "prealpha1\\\\Sentris.PreAlpha1.x86_64" type: none - config: - osarch: '32' + osarch: "32" oslist: linux description: 5) Pre-Alpha 2 - executable: prealpha2\\Sentris.PreAlpha2.x86 + executable: "prealpha2\\\\Sentris.PreAlpha2.x86" type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: 5) Pre-Alpha 2 - executable: prealpha2\\Sentris.PreAlpha2.x86_64 + executable: "prealpha2\\\\Sentris.PreAlpha2.x86_64" type: none - config: - osarch: '32' + osarch: "32" oslist: linux description: 4) Tidepool Prototype - executable: tidepool\\Sentris.Tidepool.Prototype.x86 + executable: "tidepool\\\\Sentris.Tidepool.Prototype.x86" type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: 4) Tidepool Prototype - executable: tidepool\\Sentris.Tidepool.Prototype.x86_64 + executable: "tidepool\\\\Sentris.Tidepool.Prototype.x86_64" type: none -'303550': +"303550": installDir: Adventures of Pip launch: - config: @@ -146549,7 +143141,7 @@ oslist: macos description: Launch executable: pip.app -'303590': +"303590": installDir: HiddenInPlainSight launch: - config: @@ -146558,13 +143150,13 @@ executable: HiddenInPlainSight.exe - config: oslist: linux - executable: ./HiddenInPlainSight + executable: "./HiddenInPlainSight" type: none - config: oslist: macos executable: Hidden in Plain Sight.app/Contents/MacOS/HiddenInPlainSight type: none -'303610': +"303610": installDir: Suicide Guy launch: - config: @@ -146579,38 +143171,38 @@ oslist: linux executable: SuicideGuy.x86_64 type: none -'303680': +"303680": installDir: FATE The Traitor Soul launch: - description: Launch executable: fate.exe -'303690': +"303690": installDir: FATE The Cursed King launch: - description: Launch executable: Fate.exe -'303710': +"303710": installDir: Monomino launch: - description: Launch executable: Monomino.exe -'303720': +"303720": installDir: killallzombies launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Kill All Zombies executable: zombies.exe type: default -'303790': +"303790": installDir: Faery - Legends of Avalon launch: - config: oslist: windows description: Launch executable: FaerySteam.exe -'303800': +"303800": installDir: The Witcher Adventure Game launch: - config: @@ -146621,22 +143213,22 @@ oslist: macos description: Launch executable: TheWitcherAdventureGame.app -'303820': +"303820": installDir: Rugby 15 launch: - config: oslist: windows description: Launch executable: Rugby15.exe -'303830': +"303830": installDir: Motorcycle Club launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: MotorcycleClub.exe -'303840': +"303840": installDir: Point Perfect launch: - config: @@ -146647,7 +143239,7 @@ oslist: macos description: Launch executable: PointPerfect-Mac.app -'303860': +"303860": installDir: Machines At War 3 launch: - config: @@ -146658,16 +143250,16 @@ oslist: macos description: Launch executable: Machines at War 3.app -'303870': +"303870": installDir: Blinding Dark launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: BlindingDark_x64.exe - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: BlindingDark_x32.exe @@ -146676,16 +143268,16 @@ description: Launch executable: BlindingDark_OSX.app - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: BlindingDark_Linux.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: BlindingDark_Linux.x86_64 -'303880': +"303880": installDir: TriBlaster launch: - config: @@ -146700,12 +143292,12 @@ oslist: linux description: Launch executable: TriBlaster_Linux.x86 -'303910': +"303910": installDir: Time of Fury launch: - description: Launch executable: tof_setup.exe -'303940': +"303940": installDir: CAPSULE launch: - config: @@ -146716,18 +143308,16 @@ oslist: macos description: Launch executable: CAPSULE.app -'304030': +"304030": installDir: ArcheAge launch: - - arguments: '-provider=steam -env=live -extra1=legacy' + - arguments: "-provider=steam -env=live -extra1=legacy" description: Launch - description_loc: - english: Launch executable: ArcheAge_Launcher.exe -'304050': +"304050": installDir: Trove launch: - - arguments: '-steam' + - arguments: "-steam" config: oslist: windows description: Launch Windows @@ -146738,17 +143328,17 @@ description: Launch OSX executable: Glyph.app/Contents/MacOS/Glyph type: default - - arguments: '-steam' + - arguments: "-steam" config: betakey: internal oslist: windows description: GlyphInternal executable: GlyphClientInternal.exe type: option1 -'304150': +"304150": installDir: Bloodbath launch: - - arguments: '-s' + - arguments: "-s" config: oslist: windows description: Launch Game @@ -146757,10 +143347,10 @@ oslist: windows description: Launch Game Configuration Tool executable: Launcher.exe -'304170': +"304170": installDir: Kick-Ass 2 launch: - - arguments: '-s' + - arguments: "-s" config: oslist: windows description: Launch Game @@ -146769,7 +143359,7 @@ oslist: windows description: Launch Game Configuration Tool executable: Launcher.exe -'304190': +"304190": installDir: Bloonz Toonz launch: - config: @@ -146780,7 +143370,7 @@ oslist: macos executable: mac_bloonztoonz.app type: default -'304240': +"304240": installDir: Resident Evil Biohazard HD REMASTER launch: - config: @@ -146790,7 +143380,7 @@ nameLocalized: japanese: biohazard HD REMASTER koreana: biohazard HD REMASTER -'304290': +"304290": installDir: Heroes Rise The Hero Project launch: - config: @@ -146805,94 +143395,92 @@ oslist: linux description: Launch executable: HeroesRiseTheHeroProject -'304350': +"304350": installDir: Wildlife Park 2 launch: - - arguments: '-console' + - arguments: "-console" config: oslist: windows description: Launch executable: WLP2-Steam.exe -'304390': +"304390": installDir: For Honor launch: - - arguments: '-uplay_steam_mode /startedByUplay:Prod,2916,Live_LIVEPC' + - arguments: "-uplay_steam_mode /startedByUplay:Prod,2916,Live_LIVEPC" config: oslist: windows - ownsdlc: '751800' + ownsdlc: "751800" executable: forhonor.exe type: default - - arguments: '-uplay_steam_mode /startedByUplay:UAT,2916,Test_DUSS' + - arguments: "-uplay_steam_mode /startedByUplay:UAT,2916,Test_DUSS" config: betakey: duss oslist: windows description: DUSS executable: forhonor.exe type: option1 - - arguments: '-uplay_steam_mode /startedByUplay:UAT,2916,Test_DEEPTEST2' + - arguments: "-uplay_steam_mode /startedByUplay:UAT,2916,Test_DEEPTEST2" config: betakey: devopslive oslist: windows description: DEEPTEST2 executable: forhonor.exe type: option1 - - arguments: '-uplay_steam_mode /startedByUplay:Prod,2916,Cert_CERTPC-A' + - arguments: "-uplay_steam_mode /startedByUplay:Prod,2916,Cert_CERTPC-A" config: betakey: steamcertpc oslist: windows description: STEAMCERTPC executable: forhonor.exe type: option1 - - arguments: '-uplay_steam_mode /startedByUplay:UAT,2916,Test_MAINPC-2' + - arguments: "-uplay_steam_mode /startedByUplay:UAT,2916,Test_MAINPC-2" config: betakey: testretail oslist: windows description: MAINPC-2 executable: forhonor.exe type: option1 - - arguments: '-uplay_steam_mode /startedByUplay:Prod,2916,Staging_STAGINGPC' + - arguments: "-uplay_steam_mode /startedByUplay:Prod,2916,Staging_STAGINGPC" config: betakey: stagingpc oslist: windows description: STGGPC executable: forhonor.exe type: option1 - - arguments: '-upc_steam_free_package_id 58443 -uplay_steam_mode' + - arguments: "-upc_steam_free_package_id 58443 -uplay_steam_mode" config: - ownsdlc: '648240' + ownsdlc: "648240" description: Free Weekend WW executable: forhonor.exe type: default - - arguments: '-upc_steam_free_package_id 17478 -uplay_steam_mode' + - arguments: "-upc_steam_free_package_id 17478 -uplay_steam_mode" config: - ownsdlc: '690190' + ownsdlc: "690190" description: Free Weekend RUS executable: forhonor.exe type: default - - arguments: '-uplay_steam_mode /startedByUplay:UAT,2916,Test_TUPC' + - arguments: "-uplay_steam_mode /startedByUplay:UAT,2916,Test_TUPC" config: betakey: tupc oslist: windows description: TUPC executable: forhonor.exe type: option1 - - arguments: '-uplay_steam_mode /startedByUplay:UAT,2916,Test_TUPC-2' + - arguments: "-uplay_steam_mode /startedByUplay:UAT,2916,Test_TUPC-2" config: betakey: tupc2 oslist: windows description: TUPC-2 executable: forhonor.exe type: option1 - - arguments: '-uplay_steam_mode /startedByUplay:UAT,2916,Cert_DEBUG' + - arguments: "-uplay_steam_mode /startedByUplay:UAT,2916,Cert_DEBUG" config: betakey: certdebug oslist: windows description: Cert_DEBUG - description_loc: - english: Cert_DEBUG executable: forhonor.exe type: option1 -'304410': +"304410": installDir: Hexcells Infinite launch: - config: @@ -146904,17 +143492,17 @@ description: Launch executable: Hexcells Infinite.app - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: Hexcells Infinite.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: Hexcells Infinite.x86_64 type: none -'304430': +"304430": installDir: INSIDE launch: - config: @@ -146926,7 +143514,7 @@ oslist: macos executable: INSIDE.app type: default -'304460': +"304460": installDir: Qora launch: - config: @@ -146941,7 +143529,7 @@ oslist: linux description: Launch executable: Qora_VM -'304500': +"304500": installDir: Rooms The Main Building launch: - config: @@ -146952,39 +143540,39 @@ oslist: macos description: Launch executable: Rooms_TMB.app -'304530': +"304530": installDir: Agents of Mayhem launch: - - arguments: '-packfiles' + - arguments: "-packfiles" config: oslist: windows description: AOM Release Final - executable: aom\\AOM_Release_Final.exe + executable: "aom\\\\AOM_Release_Final.exe" type: default workingdir: aom - - arguments: '-packfiles' + - arguments: "-packfiles" config: betakey: ds_testing_locqa oslist: windows description: Deep Silver test branch with debug - executable: aom\\game_Release.exe + executable: "aom\\\\game_Release.exe" type: option1 workingdir: aom -'304540': +"304540": installDir: FreakOut Extreme Freeride launch: - config: oslist: windows description: Launch FreakOut Extreme Freeride executable: FreakOut.exe -'304580': +"304580": installDir: Project Nano launch: - config: oslist: windows description: Launch executable: Cityconomy.exe -'304650': +"304650": installDir: SunlessSea launch: - config: @@ -146996,32 +143584,32 @@ description: Launch executable: Sunless Sea.app - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Sunless Sea.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: Sunless Sea.x86 type: default -'304670': +"304670": installDir: aeoncommand launch: - - arguments: '-force-gfx-st' + - arguments: "-force-gfx-st" config: oslist: windows description: Launch executable: aeoncommand.exe - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: aeoncommand.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: aeoncommand.x86_64 @@ -147029,22 +143617,22 @@ oslist: macos description: Launch executable: aeoncommand.app -'304690': +"304690": installDir: StarSonata2 launch: - - arguments: '-steam' + - arguments: "-steam" config: oslist: windows description: Launch Game executable: Star Sonata.exe type: default - - arguments: '-autostart -steam' + - arguments: "-autostart -steam" config: oslist: windows description: Run Patchbot executable: patchbot.exe type: none -'304730': +"304730": installDir: Train Fever launch: - config: @@ -147059,21 +143647,21 @@ oslist: macos description: Launch executable: run.sh -'304750': +"304750": installDir: VoodooChronicles launch: - description: Launch executable: Voodoo chronicles - First sign HD.exe -'304810': +"304810": installDir: TesserAct launch: - - arguments: '-seekfreeloading' + - arguments: "-seekfreeloading" config: oslist: windows description: Launch - executable: Binaries\\Win32\\UDK.exe - workingdir: Binaries\\Win32 -'304850': + executable: "Binaries\\\\Win32\\\\UDK.exe" + workingdir: "Binaries\\\\Win32" +"304850": installDir: Worlds launch: - config: @@ -147084,7 +143672,7 @@ oslist: linux executable: worlds type: default -'304910': +"304910": installDir: SGSR launch: - config: @@ -147099,11 +143687,11 @@ oslist: linux description: Launch executable: bin32/game.sh -'304930': +"304930": installDir: Unturned launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Unturned_BE.exe type: default @@ -147112,33 +143700,33 @@ executable: Unturned.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Unturned.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Unturned.x86_64 type: default - config: - osarch: '64' + osarch: "64" oslist: windows description: without BattlEye Anti-Cheat executable: Unturned.exe type: option1 - config: - osarch: '32' + osarch: "32" oslist: windows executable: Unturned_BE.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows description: without BattlEye Anti-Cheat executable: Unturned.exe type: option1 -'304950': +"304950": installDir: Castaway Paradise launch: - config: @@ -147151,38 +143739,38 @@ description: Launch executable: Castaway Paradise.exe type: default - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" config: oslist: windows description: Configure executable: Castaway Paradise.exe type: config - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" config: oslist: macos description: Configure executable: Castaway Paradise.app type: config - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" config: oslist: windows description: Version 3.0 - Controller Only executable: Beta/Castaway Paradise.exe type: option3 - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" config: oslist: macos description: Version 3.0 - Controller Only executable: Beta/Castaway Paradise.app type: option3 - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" config: betakey: beta oslist: windows description: Version 3.0 - Controller Only executable: Beta/Castaway Paradise.exe type: option3 -'3050': +"3050": installDir: Xpand Rally Xtreme launch: - executable: xrx.exe @@ -147192,20 +143780,20 @@ - arguments: safemode description: Safemode executable: xrx.exe - - arguments: '-server -dedicated -internet' + - arguments: "-server -dedicated -internet" description: Dedicated Server executable: xrx.exe - description: Editor executable: ChromEd.exe - description: ReadMe executable: readme.txt -'305010': +"305010": installDir: Toxic Bunny HD launch: - description: Launch executable: ToxicBunnyHD.exe -'305030': {} -'305050': +"305030": {} +"305050": installDir: Outland launch: - config: @@ -147224,7 +143812,7 @@ oslist: linux description: No Steam Runtime Mode executable: RunGameNoSteamRT.sh -'305070': +"305070": installDir: FIST OF AWESOME launch: - config: @@ -147235,42 +143823,42 @@ oslist: windows description: Launch executable: fistofawesome.exe - - arguments: '-w' + - arguments: "-w" config: oslist: windows description: Windowed executable: fistofawesome.exe -'305260': +"305260": installDir: Battle Islands launch: - config: oslist: windows description: Launch executable: BattleIslands.exe -'305380': +"305380": installDir: Blue Estate launch: - - arguments: '-steambp32' + - arguments: "-steambp32" config: - osarch: '32' + osarch: "32" description: Play Blue Estate (32 bits) executable: Binaries/Win32/Launch BlueEstate.exe workingdir: Binaries/Win32 - - arguments: '-steambp64' + - arguments: "-steambp64" config: - osarch: '64' + osarch: "64" description: Play Blue Estate (64 bits) executable: Binaries/Win32/Launch BlueEstate.exe workingdir: Binaries/Win32 - description: Configure Blue Estate executable: Binaries/Win32/Launch BlueEstate.exe workingdir: Binaries/Win32 -'305390': +"305390": installDir: World War 2 Time of Wrath launch: - description: Launch executable: tow_setup.exe -'305460': +"305460": installDir: FranknJohn launch: - config: @@ -147282,17 +143870,17 @@ description: Launch executable: FranknJohn.app - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: FranknJohn.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: FranknJohn.x86_64 type: none -'305480': +"305480": installDir: Heileen 2 The Hands Of Fate launch: - config: @@ -147307,7 +143895,7 @@ oslist: linux description: Launch executable: Heileen2.sh -'305490': +"305490": installDir: Heileen 3 New Horizons launch: - config: @@ -147322,7 +143910,7 @@ oslist: linux description: Launch executable: Heileen3.sh -'305500': +"305500": installDir: TrappedDeadLockdown launch: - arguments: 1234 9876 @@ -147332,17 +143920,17 @@ executable: TrappedDeadLockdown.exe - arguments: 1234 9876 config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: TrappedDeadLockdown.x86_64 - arguments: 1234 9876 config: - osarch: '64' + osarch: "64" oslist: macos description: Launch executable: TrappedDeadLockdown.app -'305510': +"305510": installDir: Servo launch: - config: @@ -147353,7 +143941,7 @@ oslist: macos description: Launch Servo executable: Servo.app -'305620': +"305620": installDir: TheLongDark launch: - config: @@ -147365,18 +143953,18 @@ description: Launch executable: tld.app - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch 64-bit executable: tld.x86_64 type: none - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch 32-bit executable: tld.x86 type: none -'305640': +"305640": installDir: Shattered Planet launch: - config: @@ -147387,7 +143975,7 @@ oslist: macos description: Launch executable: shatteredPlanet.app -'305660': +"305660": installDir: Virus 14 launch: - config: @@ -147399,7 +143987,7 @@ description: Launch executable: Infect and Destroy.x86 type: none -'305700': +"305700": installDir: Infinite Scuba launch: - config: @@ -147410,7 +143998,7 @@ oslist: macos executable: InfiniteScuba.app type: default -'305720': +"305720": installDir: HOI launch: - config: @@ -147421,14 +144009,14 @@ oslist: windows description: Launch executable: Game.exe -'305740': +"305740": installDir: Pitiri1977 launch: - config: oslist: windows description: Launch executable: Pitiri1977.exe -'305760': +"305760": installDir: Redirection launch: - config: @@ -147443,14 +144031,14 @@ oslist: linux executable: Redirection type: default -'305780': +"305780": installDir: Echo of the Wilds launch: - config: oslist: windows description: Launch executable: Echo of the Wilds.exe -'305800': +"305800": installDir: POPME1 launch: - config: @@ -147461,7 +144049,7 @@ oslist: windows description: Launch executable: popme1.exe -'305820': +"305820": installDir: CuteThingsDyingViolently launch: - config: @@ -147476,37 +144064,37 @@ oslist: linux description: Launch executable: ctdv.x86 -'305840': +"305840": installDir: ShallowSpace launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: sspace.exe - config: - osarch: '64' + osarch: "64" oslist: macos - executable: sspace.app\\Contents\\MacOS\\sspace + executable: "sspace.app\\\\Contents\\\\MacOS\\\\sspace" type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: sspace.x86_64 type: none -'305880': +"305880": installDir: LeonasTrickyAdventures launch: - config: oslist: windows description: Launch executable: Leona_Starter.exe -'305920': +"305920": installDir: AnotherPerspective launch: - description: Launch executable: ap.exe -'305940': +"305940": installDir: Project Aura launch: - arguments: Q3DStart.q3d @@ -147514,7 +144102,7 @@ oslist: windows description: Launch executable: Project Aura.exe -'305960': +"305960": installDir: Dragon launch: - config: @@ -147526,24 +144114,24 @@ description: Dragon EA for the Mac executable: Dragon_EA_OSX.app - config: - osarch: '32' + osarch: "32" oslist: linux description: Dragon EA for Linux OS executable: Dragon_EA.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: Dragon_EA.x86_64 type: none -'305980': +"305980": installDir: HeavyFireAfghanistan launch: - config: oslist: windows description: Play executable: HF_Starter.exe -'306000': +"306000": installDir: Super Dungeon Bros launch: - config: @@ -147556,7 +144144,7 @@ description: Launch executable: SDB.app type: default -'306020': +"306020": installDir: BloonsTD5 launch: - config: @@ -147567,7 +144155,7 @@ oslist: macos description: Launch executable: btd5steam.app -'306040': +"306040": installDir: Howler launch: - config: @@ -147578,7 +144166,7 @@ oslist: macos description: Launch executable: howler.dmg -'306130': +"306130": installDir: Zenimax Online launch: - config: @@ -147589,14 +144177,14 @@ oslist: macos description: Launch executable: The Elder Scrolls Online (Steam).app -'306200': +"306200": installDir: Happy Hereafter launch: - config: oslist: windows description: Launch executable: TheHappyHereafter.exe -'306260': +"306260": installDir: SelknamDefense launch: - config: @@ -147607,82 +144195,82 @@ oslist: macos description: Launch executable: SelknamDefense.app -'306290': {} -'306350': +"306290": {} +"306350": installDir: Slipstream 5000 launch: - - arguments: ' -conf SS5000.conf' + - arguments: " -conf SS5000.conf" description: Launch executable: dosbox.exe type: none -'306370': +"306370": installDir: World of Subways 1 – The Path launch: - config: oslist: windows description: Launch executable: WoS.exe -'306410': +"306410": installDir: Crystals of Time launch: - config: oslist: windows description: Launch executable: Crystals of Time.exe -'306440': +"306440": installDir: Oblitus launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: Oblitus.exe - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: Oblitus(x86).exe -'306480': +"306480": installDir: Wildlife Park 2 launch: - - arguments: '-console' + - arguments: "-console" config: oslist: windows description: Launch executable: WLP2Addon1-Steam.exe -'306490': +"306490": installDir: Railroad Pioneer launch: - config: oslist: windows description: Launch Railroad Pioneer - executable: Bin\\Railroad.exe + executable: "Bin\\\\Railroad.exe" workingdir: Bin - description: Open Manual - executable: Docs\\RailroadPioneerManual.pdf -'306520': + executable: "Docs\\\\RailroadPioneerManual.pdf" +"306520": installDir: Ford Street Racing launch: - description: Launch executable: fsr.exe -'306550': +"306550": installDir: Runers launch: - config: oslist: windows description: Launch executable: Runers.exe -'306620': +"306620": installDir: Frontline Road to Moscow launch: - description: Launch executable: autorun.exe -'306630': +"306630": installDir: Civil War II launch: - description: Launch executable: autorun.exe -'306640': +"306640": installDir: Battle Academy 2 launch: - config: @@ -147693,7 +144281,7 @@ oslist: macos description: Launch executable: BASteam_1.0.1.app -'306660': +"306660": installDir: Ultimate General Gettysburg launch: - config: @@ -147716,37 +144304,37 @@ oslist: macos description: Multiplayer executable: Ultimate General Multiplayer.app - - arguments: '-force-opengl' + - arguments: "-force-opengl" config: oslist: windows description: Alternative render executable: Ultimate General Gettysburg.exe - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: Ultimate General Gettysburg.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Ultimate General Gettysburg.x86_64 - config: - osarch: '32' + osarch: "32" oslist: linux description: Mutliplayer executable: Ultimate General Multiplayer.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Multiplayer executable: Ultimate General Multiplayer.x86_64 - - arguments: '-force-opengl' + - arguments: "-force-opengl" config: oslist: windows - description: 'Multiplayer Alternative render ' + description: "Multiplayer Alternative render " executable: Ultimate General Multiplayer.exe -'306670': +"306670": installDir: OverlordFOE launch: - config: @@ -147761,21 +144349,21 @@ oslist: linux description: Launch Linux Overlord executable: Overlord.x86 -'306680': +"306680": installDir: Lexica launch: - config: oslist: windows description: Launch executable: Lexica.exe -'306700': +"306700": installDir: Iron Fisticle launch: - config: oslist: windows description: Launch executable: IronFisticle.exe -'306760': +"306760": installDir: Obduction launch: - config: @@ -147796,14 +144384,14 @@ oslist: windows executable: Obduction.exe type: othervr -'306930': +"306930": installDir: Battlespace launch: - config: oslist: windows description: Launch executable: BattleSpace.exe -'306950': +"306950": installDir: Heroes&Legends launch: - config: @@ -147818,7 +144406,7 @@ oslist: linux description: Launch executable: HeroesAndLegends.x86_64 -'307010': +"307010": installDir: Northmark HOTW launch: - config: @@ -147829,10 +144417,10 @@ oslist: macos description: Launch executable: Northmark.app -'307030': +"307030": installDir: Fractured Soul launch: - - arguments: '--fullscreen' + - arguments: "--fullscreen" config: oslist: windows description: Launch @@ -147841,12 +144429,12 @@ oslist: windows description: Launch (windowed) executable: FracturedSoul.exe - - arguments: '--resetcontrolconfig' + - arguments: "--resetcontrolconfig" config: oslist: windows description: Reset all input mappings to factory defaults executable: FracturedSoul.exe -'307050': +"307050": installDir: Shan Gui launch: - config: @@ -147861,14 +144449,14 @@ oslist: linux description: Launch executable: ShanGui.sh -'307070': +"307070": installDir: Memories of a Vagabond launch: - config: oslist: windows description: Launch executable: GAME.exe -'307090': +"307090": installDir: FancySkulls launch: - config: @@ -147884,11 +144472,11 @@ description: Launch executable: fancy_skulls.app - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: fancy_skulls.x86_64 -'307110': +"307110": installDir: WeNeedtoGoDeeper launch: - config: @@ -147903,30 +144491,30 @@ oslist: linux executable: WeNeedToGoDeeper type: none -'307130': +"307130": installDir: Asteria launch: - config: oslist: windows description: Launch executable: Asteria.exe -'307150': +"307150": installDir: Survival Games launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: BlockGame.exe type: none -'307170': +"307170": installDir: Borealis launch: - config: oslist: windows description: Launch executable: Borealis.exe -'307190': +"307190": installDir: NicoleOtome launch: - config: @@ -147941,7 +144529,7 @@ oslist: linux description: Launch executable: Nicole.sh -'307210': +"307210": installDir: Will Fight for Food launch: - config: @@ -147956,14 +144544,14 @@ oslist: macos description: Launch executable: WFFF.app -'307230': - installDir: 'I, Zombie' +"307230": + installDir: "I, Zombie" launch: - config: oslist: windows description: Launch - executable: 'I, Zombie.exe' -'307270': + executable: "I, Zombie.exe" +"307270": installDir: SuperLemonadeFactory launch: - config: @@ -147974,7 +144562,7 @@ oslist: macos executable: SuperLemonadeFactory.app type: default -'307290': +"307290": installDir: VelvetSundown launch: - config: @@ -147985,22 +144573,22 @@ oslist: macos description: Launch executable: Velvet Sundown.app/Contents/MacOS/VelvetSundown -'307340': +"307340": installDir: Platypus launch: - description: Launc executable: platypus.exe -'307350': +"307350": installDir: Nux launch: - description: Launch executable: Nux.exe -'307410': +"307410": installDir: Martial Arts Capoeira launch: - description: Launch executable: Capoeira.exe -'307430': +"307430": installDir: Reversi launch: - config: @@ -148015,12 +144603,12 @@ oslist: linux description: Launch executable: Reversi -'307560': +"307560": installDir: Run For Rum launch: - description: Launch executable: Run for Rum.exe -'307570': +"307570": installDir: A Golden Wake launch: - config: @@ -148033,70 +144621,58 @@ description: Configure Settings executable: winsetup.exe type: config - - arguments: '--windowed' + - arguments: "--windowed" config: oslist: linux description: using OpenGL (Windowed) - executable: ./startgame + executable: "./startgame" type: option1 - - arguments: '--fullscreen' + - arguments: "--fullscreen" config: oslist: linux description: using OpenGL (Fullscreen) - executable: ./startgame + executable: "./startgame" type: option2 - config: oslist: macos executable: A Golden Wake.app/Contents/MacOS/A Golden Wake type: default -'307580': +"307580": installDir: Technobabylon launch: - config: oslist: windows description: Launch - description_loc: - english: Launch executable: Technobabylon.exe type: default - config: oslist: windows description: Setup - description_loc: - english: Setup executable: winsetup.exe - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch 64bit - description_loc: - english: Launch 64bit - executable: ./Start.sh + executable: "./Start.sh" type: default - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch 32Bit - description_loc: - english: Launch 32Bit - executable: ./Start.sh + executable: "./Start.sh" type: default - - arguments: '--windowed' + - arguments: "--windowed" config: oslist: linux description: Windowed - description_loc: - english: Windowed - executable: ./Start.sh + executable: "./Start.sh" type: option1 - config: oslist: macos description: Launch - description_loc: - english: Launch executable: Technobabylon.app/Contents/MacOS/AGS type: default -'307590': +"307590": installDir: Penarium launch: - config: @@ -148111,7 +144687,7 @@ oslist: linux description: Launch executable: Penarium_launcher.sh -'307600': +"307600": installDir: Chainsaw Warrior 2 Lords of the Night launch: - config: @@ -148126,7 +144702,7 @@ oslist: linux description: Launch executable: ChainsawWarrior2.x86 -'307620': +"307620": installDir: CursesNChaos launch: - config: @@ -148137,18 +144713,18 @@ oslist: macos description: Launch executable: CursesNChaos.app -'307640': +"307640": installDir: Stick RPG 2 launch: - config: oslist: windows description: Launch - executable: Stick RPG 2 Director's Cut.exe + executable: "Stick RPG 2 Director's Cut.exe" - config: oslist: macos description: Launch - executable: Stick RPG 2 Director's Cut.app -'307670': + executable: "Stick RPG 2 Director's Cut.app" +"307670": installDir: HardWest launch: - config: @@ -148161,28 +144737,28 @@ executable: HardWest.app type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: HardWest.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: HardWest.x86_64 type: none -'307690': +"307690": installDir: SleepingDogsDefinitiveEdition launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SDHDShip.exe - config: - osarch: '64' + osarch: "64" oslist: macos executable: Sleeping Dogs Definitive Edition.app type: none -'307760': +"307760": installDir: Zoo Park launch: - config: @@ -148193,22 +144769,22 @@ oslist: macos description: Launch executable: zoopark.app -'307770': +"307770": installDir: Wildlife Park 2 launch: - - arguments: '-console' + - arguments: "-console" config: oslist: windows description: Launch executable: WLP2Addon2-Steam.exe -'307780': +"307780": installDir: MK10 launch: - description: Launch - executable: Binaries\\retail\\MK10.exe + executable: "Binaries\\\\retail\\\\MK10.exe" - description: Configure - executable: Binaries\\retail\\MKXLauncher.exe -'307880': + executable: "Binaries\\\\retail\\\\MKXLauncher.exe" +"307880": installDir: Savage Lands launch: - config: @@ -148224,29 +144800,29 @@ oslist: macos description: Launch executable: SavageLands.app -'307900': +"307900": installDir: Wildlife Park 2 launch: - - arguments: '-console' + - arguments: "-console" config: oslist: windows description: Launch executable: WLP2Addon3-Steam.exe -'307920': +"307920": installDir: Wildlife Park 2 launch: - - arguments: '-console' + - arguments: "-console" description: Launch executable: WLP2Addon4-Steam.exe -'307930': +"307930": installDir: Wildlife Park 2 launch: - - arguments: '-console' + - arguments: "-console" config: oslist: windows description: Launch executable: WLP2Addon5-Steam.exe -'307940': +"307940": installDir: RadiationIsland launch: - config: @@ -148254,54 +144830,54 @@ description: Launch executable: win32/RadiationIsland.exe type: none -'307950': +"307950": installDir: Caliber launch: - - arguments: '-steam' + - arguments: "-steam" config: oslist: windows executable: Caliber.exe type: default nameLocalized: russian: Калибр -'307960': +"307960": installDir: IL-2 Sturmovik Battle of Stalingrad launch: - arguments: or_enable=0 config: - osarch: '64' + osarch: "64" oslist: windows description: Launch - executable: bin\\game\\Il-2.exe + executable: "bin\\\\game\\\\Il-2.exe" type: default - workingdir: bin\\game + workingdir: "bin\\\\game" - arguments: or_enable=1;exclusive=1 config: - osarch: '64' + osarch: "64" oslist: windows description: Launch in VR - executable: bin\\game\\Il-2.exe + executable: "bin\\\\game\\\\Il-2.exe" type: vr - workingdir: bin\\game + workingdir: "bin\\\\game" nameLocalized: - russian: 'Ил-2 Штурмовик: Битва за Сталинград' + russian: "Ил-2 Штурмовик: Битва за Сталинград" schinese: IL-2捍卫雄鹰:斯大林格勒战役 -'307980': +"307980": installDir: Cricket Captain 2014 launch: - config: oslist: windows description: Launch executable: Cricket2014.exe -'307990': +"307990": installDir: Wildlife Park 2 launch: - - arguments: '-console' + - arguments: "-console" config: oslist: windows description: Launch executable: WLP2fantasy-Steam.exe -'308000': +"308000": installDir: Gold Rush - Classic launch: - config: @@ -148312,7 +144888,7 @@ oslist: windows description: Configure Settings executable: conf.exe -'308040': +"308040": installDir: BackToBed launch: - config: @@ -148320,7 +144896,7 @@ description: Launch executable: BackToBed.exe - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: BackToBed.x86 @@ -148329,11 +144905,11 @@ description: Launch executable: BackToBed.app - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: BackToBed.x86_64 -'308060': +"308060": installDir: BlackTheFall launch: - config: @@ -148350,16 +144926,14 @@ description: Launch executable: black.x86_64 type: default -'308080': +"308080": installDir: Wing Breakers launch: - config: oslist: windows description: Launch - description_loc: - english: Launch - executable: build\\WingBreakers.exe -'308173': + executable: "build\\\\WingBreakers.exe" +"308173": installDir: Hegemony III launch: - description: Launch Hegemony III @@ -148371,15 +144945,15 @@ - description: Launch in Forced 32bit Mode executable: launch32.bat type: none -'308180': +"308180": installDir: JacobJonesAndTheBigfootMysteryEpisode2 launch: - config: oslist: windows description: Launch - executable: Binaries\\Win32\\JacobJonesEpisode2Game.exe -'308270': - installDir: Buzz Aldrin's Space Program Manager + executable: "Binaries\\\\Win32\\\\JacobJonesEpisode2Game.exe" +"308270": + installDir: "Buzz Aldrin's Space Program Manager" launch: - config: oslist: windows @@ -148389,40 +144963,40 @@ oslist: macos description: Launch executable: SPM-OSX.app -'308320': +"308320": installDir: Total Pro Golf 3 launch: - description: Launch executable: TPG3.exe -'308330': +"308330": installDir: Lost Chronicles of Zerzura launch: - config: oslist: windows description: Launch executable: Zerzura.exe -'308360': +"308360": installDir: LogiGun launch: - config: oslist: windows description: Launch executable: Logigun.exe -'308380': +"308380": installDir: Airship Dragoon launch: - config: oslist: windows description: Launch executable: Airship Dragoon.exe -'308400': +"308400": installDir: Cube Samurai Run launch: - config: oslist: windows executable: CSR.exe type: default -'308420': +"308420": installDir: Ziggurat launch: - config: @@ -148443,7 +145017,7 @@ description: Launch (Native libraries) executable: Ziggurat type: none -'308440': +"308440": installDir: Pushcat launch: - config: @@ -148454,7 +145028,7 @@ oslist: macos description: Launch executable: Pushcat.app -'308460': +"308460": installDir: War in a Box - Paper Tanks launch: - config: @@ -148469,7 +145043,7 @@ oslist: linux description: Launch executable: War in a Box - Paper Tanks.x86 -'308520': +"308520": installDir: Minimon launch: - config: @@ -148483,16 +145057,16 @@ - config: oslist: linux description: Launch - executable: ./Minimon -'308540': + executable: "./Minimon" +"308540": installDir: BBA launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: BBA.exe type: default -'308560': +"308560": installDir: CityQuest launch: - config: @@ -148504,16 +145078,16 @@ description: Launch executable: CityQuest.app - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: CityQuest.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: CityQuest.x86_64 -'308580': +"308580": installDir: Orborun launch: - config: @@ -148521,7 +145095,7 @@ description: Orborun executable: Orborun.exe - config: - osarch: '32' + osarch: "32" oslist: linux description: Orborun executable: Orborun.x86 @@ -148530,11 +145104,11 @@ description: Orborun executable: Orborun.app - config: - osarch: '64' + osarch: "64" oslist: linux description: Orborun executable: Orborun.x86_64 -'308600': +"308600": installDir: Geneshift launch: - config: @@ -148545,7 +145119,7 @@ oslist: linux executable: Geneshift type: default -'309900': +"309900": installDir: Super Sky Arena launch: - config: @@ -148560,7 +145134,7 @@ oslist: linux executable: SuperSkyArena.x86_64 type: default -'310060': +"310060": installDir: Knights of Pen and Paper 2 launch: - config: @@ -148578,7 +145152,7 @@ description: Launch executable: kopp2.x86 type: none -'310070': +"310070": installDir: The Nightmare Cooperative launch: - config: @@ -148590,16 +145164,16 @@ description: Launch executable: nightmareCoop.app - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: nightmareCoop.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: nightmareCoop.x86_64 -'310080': +"310080": installDir: Hatoful Boyfriend launch: - config: @@ -148612,28 +145186,28 @@ executable: hatoful.app type: none - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: hatoful.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: hatoful.x86_64 -'310110': +"310110": installDir: Combat launch: - config: oslist: windows - description: 'Run NS2:Combat' + description: "Run NS2:Combat" executable: ns2combat.exe - config: oslist: linux - description: 'Run NS2:Combat' + description: "Run NS2:Combat" executable: ns2combat_linux32 workingdir: ia32 -'310360': +"310360": installDir: Higurashi When They Cry launch: - config: @@ -148650,11 +145224,11 @@ executable: HigurashiEp01.app nameLocalized: japanese: ひぐらしのなく頃に奉 鬼隠し編 -'310370': +"310370": installDir: The Way of Life launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: TheWayOfLifeDemoWindows.exe @@ -148664,23 +145238,23 @@ description: Launch executable: TheWayOfLifeDemoMac.app - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: TheWayOfLifeDemoLinux.x86_64.X86_64 type: none - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: TheWayOfLifeDemoWindows.exe type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: TheWayOfLifeDemoLinux.x86_64.x86 type: none -'310380': +"310380": installDir: Space launch: - config: @@ -148688,19 +145262,19 @@ executable: launcher/launcher.exe type: default workingdir: launcher -'310390': +"310390": installDir: Advanced Tactics Gold launch: - description: Launch executable: autorun.exe -'310450': +"310450": installDir: Steel & Steam Episode 1 launch: - config: oslist: windows description: Launch executable: Game.exe -'310460': +"310460": installDir: Corto Maltese Secrets of Venice launch: - config: @@ -148711,7 +145285,7 @@ oslist: macos description: Launch executable: CortoMaltese_Mac_V1.1.app -'310470': +"310470": installDir: Grand Ages Medieval launch: - config: @@ -148724,15 +145298,15 @@ executable: App - config: oslist: macos - executable: Grand Ages Medieval.app\\Contents\\MacOS\\Grand Ages Medieval + executable: "Grand Ages Medieval.app\\\\Contents\\\\MacOS\\\\Grand Ages Medieval" type: none -'310490': +"310490": installDir: Crookz launch: - config: oslist: windows description: Launch - executable: Binaries\\Win32\\Crookz.exe + executable: "Binaries\\\\Win32\\\\Crookz.exe" - config: oslist: macos description: Launch @@ -148742,7 +145316,7 @@ description: Launch executable: Binaries/Linux/Launch workingdir: Binaries/Linux/ -'310510': +"310510": installDir: Deathtrap launch: - config: @@ -148753,7 +145327,7 @@ oslist: macos description: Launch executable: DEATHTRAP.app -'310560': +"310560": installDir: DiRT Rally launch: - config: @@ -148768,12 +145342,12 @@ oslist: macos executable: Dirt Rally.app type: none -'310640': +"310640": installDir: European Fishing 2014 launch: - description: Launch executable: Play.exe -'310700': +"310700": installDir: Super Win the Game launch: - config: @@ -148788,7 +145362,7 @@ oslist: macos description: Launch executable: SuperGame.app -'310740': +"310740": installDir: NEON STRUCT launch: - config: @@ -148803,16 +145377,16 @@ oslist: linux description: Launch executable: Neon -'310760': +"310760": installDir: Sky Nations launch: - arguments: Launch config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: SkyNations.exe -'310790': +"310790": installDir: Geometry Wars 3 - Dimensions launch: - config: @@ -148827,37 +145401,37 @@ oslist: linux description: Launch executable: GeometryWars3 -'310810': +"310810": installDir: Shiftlings launch: - description: Launch executable: Shiftlings.exe -'310830': +"310830": installDir: Retrobooster launch: - config: oslist: windows description: Launch - executable: bin\\retrobooster.exe + executable: "bin\\\\retrobooster.exe" - config: oslist: linux description: Launch executable: retrobooster -'310850': +"310850": installDir: Onikira-DemonKiller launch: - config: oslist: windows description: Launch executable: onikira.exe -'310870': {} -'310880': +"310870": {} +"310880": installDir: Basketball Pro Management 2015 launch: - - arguments: 'c}cGp8QE&2CZ3]9A3,c,i4P-dA)h.Xd93s385,fMWY+9,]7b3VSvp-j-mW5:' + - arguments: "c}cGp8QE&2CZ3]9A3,c,i4P-dA)h.Xd93s385,fMWY+9,]7b3VSvp-j-mW5:" description: Launch the game executable: BPM2015.exe -'310890': +"310890": installDir: Breach & Clear Deadline launch: - config: @@ -148873,22 +145447,22 @@ description: Launch executable: DEADline.x86_64 type: none -'310950': +"310950": installDir: StreetFighterV launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: StreetFighterV.exe type: default - - arguments: '-lowspec' + - arguments: "-lowspec" config: - osarch: '64' + osarch: "64" oslist: windows description: Street Fighter V(Low spec mode) executable: StreetFighterV.exe type: option1 -'310970': +"310970": installDir: Legions of Ashworld launch: - config: @@ -148903,18 +145477,18 @@ oslist: macos description: Launch executable: Legions of Ashworld.app -'310990': +"310990": installDir: Man in a Maze Deathmatch launch: - config: oslist: windows description: Launch executable: ManinaMaze.exe -'31100': +"31100": installDir: Wallace and Gromit Ep1 launch: - executable: WallaceGromit101.exe -'311010': +"311010": installDir: The Way launch: - config: @@ -148932,64 +145506,64 @@ type: default - config: betakey: debug - osarch: '64' + osarch: "64" oslist: windows description: debug version executable: debug.bat type: option1 -'311040': +"311040": installDir: Rulers of Nations launch: - config: oslist: windows description: Launch executable: _start.exe -'311060': +"311060": installDir: Battle Mages Sign of Darkness launch: - config: oslist: windows description: Launch executable: bmages_sod.exe -'311080': +"311080": installDir: Echelon launch: - description: Launch executable: GameLauncher.bat -'311100': +"311100": installDir: Echelon Wind Warriors launch: - config: oslist: windows description: Launch executable: GameLauncher.bat -'311120': +"311120": installDir: The Stalin Subway Red Veil launch: - description: Launch executable: metro25.exe -'311140': +"311140": installDir: The Stalin Subway launch: - config: oslist: windows description: Launch executable: metro2.exe -'311170': +"311170": installDir: Moonlight Minions launch: - config: oslist: windows description: Launch executable: moonlightminions.exe -'311190': +"311190": installDir: Super Panda Adventures launch: - config: oslist: windows description: Launch Super Panda Adventures executable: Super Panda Adventures.exe -'311210': +"311210": installDir: Call of Duty Black Ops III launch: - config: @@ -149001,7 +145575,7 @@ oslist: macos executable: CoDBlkOps3.app type: none -'311240': +"311240": installDir: Zero Escape launch: - config: @@ -149012,9 +145586,9 @@ config: oslist: windows description: Launch - executable: launcher\\ZeroEscape-Launcher.exe + executable: "launcher\\\\ZeroEscape-Launcher.exe" type: config -'311250': +"311250": installDir: Doorways The Underworld launch: - config: @@ -149031,95 +145605,89 @@ oslist: macos description: Launch Doorways executable: Doorways.app -'311260': +"311260": installDir: The Guild 3 launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch the Guild 3 executable: Guild3.exe type: default - - arguments: '-safemode' + - arguments: "-safemode" config: - osarch: '64' + osarch: "64" oslist: windows description: The Guild 3 SafeMode executable: Guild3.exe type: option1 -'311290': +"311290": installDir: SpellForceThree launch: - config: - betakey: 'presentation,gamescom' + betakey: "presentation,gamescom" executable: StartSpellForce3.bat type: default - config: - betakey: 'playground,testgate' + betakey: "playground,testgate" oslist: windows description: Launch SpellForce 3 with Debug stuff executable: SF3Client.exe type: default - - arguments: '-launch SF3Final' + - arguments: "-launch SF3Final" config: oslist: windows - executable: launcher\\SF3\\Launcher.exe + executable: "launcher\\\\SF3\\\\Launcher.exe" type: default - config: oslist: windows - description: 'SpellForce 3: Legacy Edition' - description_loc: - english: 'SpellForce 3: Legacy Edition' + description: "SpellForce 3: Legacy Edition" executable: SF3LegacyLauncher.exe type: option1 - - arguments: '-launch LevelEditor' + - arguments: "-launch LevelEditor" config: oslist: windows - executable: launcher\\SF3\\Launcher.exe + executable: "launcher\\\\SF3\\\\Launcher.exe" type: editor - - arguments: '-launch SF3Debug' + - arguments: "-launch SF3Debug" config: oslist: windows description: with Debug Tools - description_loc: - english: with Debug Tools - executable: launcher\\SF3\\Launcher.exe + executable: "launcher\\\\SF3\\\\Launcher.exe" type: option2 - - arguments: '-launch ModdingDocs' + - arguments: "-launch ModdingDocs" config: oslist: windows description: Open Modding Documentation - description_loc: - english: Open Modding Documentation - executable: launcher\\SF3\\Launcher.exe -'311310': + executable: "launcher\\\\SF3\\\\Launcher.exe" +"311310": installDir: Naval Action launch: - - arguments: 'dev -CustomArgs:logintype=steam -logFile logs\\unity_log.txt' + - arguments: "dev -CustomArgs:logintype=steam -logFile logs\\\\unity_log.txt" description: Launch Game executable: Client.exe - description: Report Crash executable: NavalActionCrashSender.exe type: none - - arguments: '-connectivityTest' + - arguments: "-connectivityTest" description: Report Connection Test executable: NavalActionCrashSender.exe type: none -'311340': +"311340": installDir: Metal Gear Solid Ground Zeroes launch: - config: oslist: windows description: Launch executable: MgsGroundZeroes.exe -'311400': +"311400": installDir: OceanCityRacingRedux launch: - config: oslist: windows description: Launch - executable: \\Binaries\\Win32\\UDK.exe -'311480': + executable: "\\\\Binaries\\\\Win32\\\\UDK.exe" +"311480": installDir: Vertical Drop Heroes HD launch: - config: @@ -149129,28 +145697,28 @@ - config: oslist: windows description: Play Vertical Drop Heroes HD (Press Preview) - executable: PRESS PREVIEW\\Vertical Drop Heroes HD - press.exe + executable: "PRESS PREVIEW\\\\Vertical Drop Heroes HD - press.exe" - config: oslist: macos description: Play Vertical Drop Heroes HD (Mac OS X) executable: Vertical Drop Heroes HD.app -'311490': +"311490": installDir: Spirit Run launch: - config: oslist: windows description: Launch executable: SpiritRun.exe -'311560': - installDir: Assassin's Creed Rogue +"311560": + installDir: "Assassin's Creed Rogue" launch: - - arguments: '-uplay_steam_mode' + - arguments: "-uplay_steam_mode" config: - osarch: '64' + osarch: "64" oslist: windows - description: Launch Assassin's Creed Rogue + description: "Launch Assassin's Creed Rogue" executable: ACC.exe -'311680': +"311680": installDir: Flower Shop Winter In Fairbrook launch: - config: @@ -149165,7 +145733,7 @@ oslist: linux description: Launch executable: Winter In Fairbrook.sh -'311690': +"311690": installDir: Enter the Gungeon launch: - config: @@ -149173,7 +145741,7 @@ description: Enter the Gungeon (OSX) executable: EtG_OSX.app - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: EtG.x86 @@ -149183,12 +145751,12 @@ description: Enter the Gungeon executable: EtG.exe - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: EtG.x86_64 type: none -'31170': +"31170": installDir: Tales of Monkey Island - Chapter 1 launch: - config: @@ -149197,11 +145765,11 @@ - config: oslist: macos executable: MonkeyIsland101.app -'311700': +"311700": installDir: BloodRealm Battlegrounds launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: BRSteamAir.exe @@ -149209,7 +145777,7 @@ oslist: macos description: Launch executable: BRSteamAir.app -'311720': +"311720": installDir: Sproggiwood launch: - config: @@ -149221,34 +145789,34 @@ description: Launch executable: Sproggiwood.app - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Sproggiwood.x86_64 - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: Sproggiwood.x86 -'311730': +"311730": installDir: Dead or Alive 5 Last Round launch: - - arguments: \"%USERPROFILE%\\Documents\\KoeiTecmo\\DOA5LR\\DOA5LR.ini\" + - arguments: "\\\"%USERPROFILE%\\\\Documents\\\\KoeiTecmo\\\\DOA5LR\\\\DOA5LR.ini\\\"" config: oslist: windows description: Launch executable: game.exe - - arguments: \"%USERPROFILE%\\Documents\\KoeiTecmo\\DOA5LR\\DOA5LR.ini\" + - arguments: "\\\"%USERPROFILE%\\\\Documents\\\\KoeiTecmo\\\\DOA5LR\\\\DOA5LR.ini\\\"" config: oslist: windows description: Config executable: startup_setting.exe -'311770': +"311770": installDir: LEGO® Pirates of the Caribbean The Video Game launch: - description: Launch executable: LEGOPirates.exe -'311800': +"311800": installDir: Black Ice launch: - config: @@ -149262,12 +145830,12 @@ executable: Black Ice.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Black Ice.x86_64 type: default -'311810': {} -'311820': +"311810": {} +"311820": installDir: RC Mini Racers launch: - config: @@ -149281,19 +145849,19 @@ executable: RC Mini Racers.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: RCMiniRacers.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: RCMiniRacers.x86_64 type: default -'311840': +"311840": installDir: Wildlife Park launch: - - arguments: '-console' + - arguments: "-console" config: oslist: windows description: Launch @@ -149301,27 +145869,27 @@ - config: oslist: macos description: WildlifePark-OSX-launch - executable: WildlifePark-STEAM-OSX.app\\Contents\\MacOS\\WildlifePark-STEAM-OSX + executable: "WildlifePark-STEAM-OSX.app\\\\Contents\\\\MacOS\\\\WildlifePark-STEAM-OSX" type: default -'311850': +"311850": installDir: Zombie Solitaire launch: - executable: Zombie Solitaire.exe -'311860': +"311860": installDir: Data Hacker Initiation launch: - config: oslist: windows description: Launch executable: game.exe -'311870': +"311870": installDir: Super Trench Attack! launch: - config: oslist: windows description: Launch executable: Super Trench Attack.exe -'311910': +"311910": installDir: DIG IT! - A Digger Simulator launch: - config: @@ -149332,7 +145900,7 @@ oslist: macos description: Launch executable: DigIt.app -'311930': +"311930": installDir: Tinertia launch: - config: @@ -149346,13 +145914,13 @@ executable: Tinertia-OSX.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Tinertia-LinuxUniversal.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: Tinertia-LinuxUniversal.x86 @@ -149362,41 +145930,41 @@ description: Tinertia executable: Tinertia-Windows.exe type: vr -'311940': +"311940": installDir: P-3 Biotic launch: - config: oslist: windows description: Launch executable: P-3Biotic.exe -'311980': +"311980": installDir: Isomer launch: - description: Launch executable: AppLauncher.exe -'312010': +"312010": installDir: Bird Assassin launch: - config: oslist: windows description: Launch executable: Bird Assassin.exe -'312020': +"312020": installDir: Bounders and Cads launch: - config: oslist: windows description: Bounders and Cads executable: bounderscads.exe -'312050': - installDir: Red Johnson's Chronicles - 1+2 - Steam Special Edition +"312050": + installDir: "Red Johnson's Chronicles - 1+2 - Steam Special Edition" launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: redjohnson.exe -'312150': +"312150": installDir: Wild Warfare launch: - config: @@ -149407,7 +145975,7 @@ oslist: macos description: Launch executable: wild-warfare.app -'312200': +"312200": installDir: Chasm launch: - config: @@ -149422,7 +145990,7 @@ oslist: linux description: Launch executable: Chasm -'312210': +"312210": installDir: The Fifth Day launch: - config: @@ -149434,12 +146002,12 @@ description: Launch executable: TheFifthDay.app type: none -'312220': +"312220": installDir: Tales of Adventure 2 launch: - description: Launch executable: talesofadwenture2.exe -'312230': +"312230": installDir: Spirits of Xanadu launch: - config: @@ -149451,53 +146019,53 @@ description: Launch executable: Spirits of Xanadu.app - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Spirits of Xanadu.x86_64 - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: Spirits of Xanadu.x86 - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" config: - osarch: '32' + osarch: "32" oslist: linux description: Launch with resolution dialog executable: Spirits of Xanadu.x86 - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" config: - osarch: '64' + osarch: "64" oslist: linux description: Launch with resolution dialog executable: Spirits of Xanadu.x86_64 - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" config: oslist: macos description: Launch with resolution dialog executable: Spirits of Xanadu.app -'312240': +"312240": installDir: SEAL Team 12 launch: - description: Launch executable: SEAL_Team_12.exe -'312270': +"312270": installDir: Siege of Inaolia Early Access launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch - executable: Binaries\\Win32\\SoIGLAlpha1.exe - workingdir: Binaries\\Win32 + executable: "Binaries\\\\Win32\\\\SoIGLAlpha1.exe" + workingdir: "Binaries\\\\Win32" - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch - executable: Binaries\\Win32\\SoIGLAlpha1.exe - workingdir: Binaries\\Win32 -'312280': + executable: "Binaries\\\\Win32\\\\SoIGLAlpha1.exe" + workingdir: "Binaries\\\\Win32" +"312280": installDir: Chess launch: - config: @@ -149512,7 +146080,7 @@ oslist: linux description: Launch executable: Chess -'312300': +"312300": installDir: HeroesRiseHeroFall launch: - config: @@ -149527,7 +146095,7 @@ oslist: linux description: Launch executable: HeroesRiseHeroFall -'312310': +"312310": installDir: Ensign-1 launch: - config: @@ -149536,13 +146104,13 @@ executable: Ender3.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: Ensign32 type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Ensign64 @@ -149552,28 +146120,28 @@ executable: SawkrenServer.exe type: server - config: - osarch: '32' + osarch: "32" oslist: linux executable: SawkrenServer32 type: server - config: - osarch: '64' + osarch: "64" oslist: linux executable: SawkrenServer64 type: server -'312350': +"312350": installDir: Commander The Great War launch: - config: oslist: windows description: Launch executable: autorun.exe -'312360': +"312360": installDir: To End All Wars launch: - description: Launch executable: autorun.exe -'312370': +"312370": installDir: Warhammer 40000 Armageddon launch: - config: @@ -149584,14 +146152,14 @@ oslist: macos executable: Armageddon.app type: default -'312400': +"312400": installDir: Frontline Longest Day launch: - config: oslist: windows description: Launch executable: autorun.exe -'312410': +"312410": installDir: Defense Zone launch: - config: @@ -149607,40 +146175,40 @@ description: Launch executable: Defense Zone.x86_64 type: none -'312420': +"312420": installDir: Hell launch: - config: oslist: windows description: Launch executable: autorun.exe -'312430': +"312430": installDir: Sovereignty Crown of Kings launch: - config: oslist: windows description: Launch executable: autorun.exe -'312440': +"312440": installDir: Legions of Steel launch: - description: Launch executable: autorun.exe -'312450': +"312450": installDir: Order of Battle Pacific launch: - - arguments: '-steam' + - arguments: "-steam" config: oslist: windows executable: autorun.exe type: default - - arguments: '-steam' + - arguments: "-steam" config: oslist: macos description: Launch executable: Order of Battle - WW2.app type: none -'312510': +"312510": installDir: MegaCoinSquad launch: - config: @@ -149655,7 +146223,7 @@ oslist: linux description: Launch executable: MegaCoinSquad.x86 -'312520': +"312520": installDir: Rain World launch: - config: @@ -149663,14 +146231,14 @@ description: Launch executable: RainWorld.exe type: none -'312530': +"312530": installDir: Duck Game launch: - config: oslist: windows description: Launch executable: DuckGame.exe -'312540': +"312540": installDir: Ys VI launch: - executable: ys6_win_dx9.exe @@ -149683,28 +146251,28 @@ - description: DirectX8 Configuration executable: config.exe type: config -'312560': +"312560": installDir: Xanadu Next launch: - executable: XANADU.exe type: default - executable: xanadu_cfg.exe type: config -'312600': +"312600": installDir: Rime Berta launch: - config: oslist: windows description: Launch executable: RimeBerta.exe -'312610': +"312610": installDir: Metal Slug X launch: - config: oslist: windows description: Launch executable: mslugx.exe -'312630': +"312630": installDir: OTTTD launch: - config: @@ -149719,7 +146287,7 @@ oslist: linux description: Play 32bit executable: OTTTD-linux.x86 -'312640': +"312640": installDir: Power-Up launch: - config: @@ -149730,38 +146298,38 @@ oslist: windows description: Install XNA 4.0 Redistributable executable: xnafx40_redist.msi -'312650': +"312650": installDir: Battlezone launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: Launcher\\battlezone.exe + executable: "Launcher\\\\battlezone.exe" type: default - config: - osarch: '64' + osarch: "64" oslist: windows - executable: Launcher\\battlezone.exe + executable: "Launcher\\\\battlezone.exe" type: vr - - arguments: '-showconfig' + - arguments: "-showconfig" config: - osarch: '64' + osarch: "64" oslist: windows - executable: Launcher\\battlezone.exe + executable: "Launcher\\\\battlezone.exe" type: config -'312660': +"312660": installDir: Sniper Elite 4 launch: - description: Launcher - executable: Launcher\\SniperElite4.exe + executable: "Launcher\\\\SniperElite4.exe" type: none -'312670': +"312670": installDir: StrangeBrigade launch: - description: Launch - executable: bin\\StrangeBrigade.exe + executable: "bin\\\\StrangeBrigade.exe" type: none -'31270': +"31270": installDir: Puzzle Agent launch: - config: @@ -149770,13 +146338,13 @@ - config: oslist: macos executable: Puzzle Agent.app -'312710': +"312710": installDir: Broadsword Age of Chivalry launch: - description: Launch executable: Broadsword24-08-2015.exe type: none -'312720': +"312720": installDir: Khet 2.0 launch: - config: @@ -149791,28 +146359,28 @@ oslist: linux description: Launch executable: Khet -'312750': +"312750": installDir: Final Fantasy IV launch: - config: oslist: windows description: Launch executable: FF4_Launcher.exe -'312780': +"312780": installDir: Way of the Samurai 4 launch: - config: oslist: windows description: Launch executable: WayOfTheSamurai4.exe -'312790': +"312790": installDir: Agarest Generations of War 2 launch: - config: oslist: windows description: Launch executable: Agarest2.exe -'31280': +"31280": installDir: Poker Night at the Inventory launch: - config: @@ -149821,7 +146389,7 @@ - config: oslist: macos executable: CelebrityPoker.app -'312840': +"312840": installDir: Kelvin launch: - config: @@ -149835,8 +146403,8 @@ - config: oslist: linux description: Launch - executable: ./Fahrenheit -'31290': + executable: "./Fahrenheit" +"31290": installDir: Back to the Future Ep 1 launch: - config: @@ -149845,7 +146413,7 @@ - config: oslist: macos executable: BacktotheFuture.app -'312900': +"312900": installDir: Zoo Rampage launch: - config: @@ -149856,21 +146424,21 @@ oslist: macos description: Launch executable: rampage.app -'312920': +"312920": installDir: Rugby League Live 3 launch: - config: oslist: windows description: Launch executable: rll3.exe -'312960': +"312960": installDir: Starion Tactics launch: - config: oslist: windows description: Launch executable: Starion.exe -'312970': +"312970": installDir: My Ex-Boyfriend the Space Tyrant launch: - config: @@ -149887,15 +146455,15 @@ description: Launch executable: main type: none -'312980': +"312980": installDir: Graviteam Tactics Mius-Front launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: starter_x64.exe type: default -'312990': +"312990": installDir: Broforce The Expendables Missions launch: - config: @@ -149906,66 +146474,66 @@ oslist: macos description: Launch executable: Expendabros.app -'3130': +"3130": installDir: Men of War Red Tide launch: - config: oslist: windows executable: RedTide.exe -'31300': +"31300": installDir: Tunnel Rats launch: - executable: Launcher.exe -'313010': +"313010": installDir: Cities XXL launch: - description: Launch executable: CitiesXXL.exe - config: betakey: qa_test - ownsdlc: '415750' + ownsdlc: "415750" executable: MapEditor.bat type: editor -'313020': +"313020": installDir: Soul Gambler launch: - config: oslist: windows description: Launch executable: nw.exe -'313040': +"313040": installDir: Pixel Hunter launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch game executable: PixelHunter.exe - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch game executable: PixelHunter.x86_64 - config: - osarch: '64' + osarch: "64" oslist: macos description: Launch game executable: PixelHunter.app - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch game executable: PixelHunter.exe - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch game executable: PixelHunter.x86 -'313080': +"313080": installDir: The Masterplan launch: - config: - osarch: '64' + osarch: "64" oslist: macos description: Launch executable: The Masterplan.app @@ -149977,17 +146545,17 @@ oslist: linux description: Launch executable: The Masterplan -'313120': +"313120": installDir: Stranded Deep launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Play Stranded Deep executable: Stranded_Deep_x86.exe type: none - config: - osarch: '64' + osarch: "64" oslist: windows description: Play Stranded Deep executable: Stranded_Deep_x64.exe @@ -149997,12 +146565,12 @@ executable: Stranded_Deep_x64.app type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: 64 bit launch executable: Stranded_Deep type: none -'313130': +"313130": installDir: Metrocide launch: - config: @@ -150013,75 +146581,69 @@ oslist: macos description: Launch executable: Metrocide Steam.app -'313140': +"313140": installDir: Black Bay Asylum launch: - arguments: Blackbay Asylum.q3d description: Launch executable: Launcher.exe -'313160': +"313160": installDir: Farming Simulator 15 launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: x86/FarmingSimulator2015Game.exe - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: x64/FarmingSimulator2015Game.exe - config: - osarch: '64' + osarch: "64" oslist: macos description: Launch executable: Farming Simulator 2015.app -'313190': +"313190": installDir: Graviteam Tactics Shilovo 1942 launch: - description: Launch executable: PLF.exe -'313200': +"313200": installDir: The Abbey launch: - description: Launch executable: TheAbbeyGame.exe -'313210': +"313210": installDir: Alpha Zylon launch: - description: Launch executable: AlphaZylon.exe -'313240': +"313240": installDir: Wilson Chronicles launch: - - arguments: '-game wilson_chronicles' + - arguments: "-game wilson_chronicles" config: oslist: windows description: WC Default Launcher - description_loc: - english: WC Default Launcher - french: Lanceur Wilson Chronicles executable: hl2.exe type: none - - arguments: '-game wilson_chronicles -console' + - arguments: "-game wilson_chronicles -console" config: oslist: windows description: WC Default Launcher + Console - description_loc: - english: WC Default Launcher + Console - french: Lanceur Wilson Chronicles + Console executable: hl2.exe type: none -'313330': +"313330": installDir: 4x4 Dream Race launch: - config: oslist: windows description: Launch - executable: BIN\\DGLauncher.exe - workingdir: \\BIN -'313340': + executable: "BIN\\\\DGLauncher.exe" + workingdir: "\\\\BIN" +"313340": installDir: Mountain launch: - config: @@ -150093,17 +146655,17 @@ description: Launch executable: Mountain.app - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: Mountain.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Mountain.x86_64 -'313360': - installDir: The Maker's Eden +"313360": + installDir: "The Maker's Eden" launch: - config: oslist: linux @@ -150119,21 +146681,21 @@ description: Launch executable: run.app type: none -'313390': +"313390": installDir: Vertical Strike Endless Challenge Edition launch: - config: oslist: windows description: Launch executable: vse.exe -'313400': +"313400": installDir: REVOLVER360REACTOR launch: - config: oslist: windows description: Play REVOLVER360 REACTOR executable: REVOLVER360REACTOR.exe -'313470': +"313470": installDir: Boot Hill Heroes launch: - config: @@ -150141,43 +146703,43 @@ description: Launch executable: Boot Hill Heroes.exe type: none -'313480': +"313480": installDir: Blitzkrieg Anthology launch: - config: oslist: windows description: Blitzkrieg - executable: Blitzkrieg\\game.exe - workingdir: Blitzkrieg\\ + executable: "Blitzkrieg\\\\game.exe" + workingdir: "Blitzkrieg\\\\" - config: oslist: windows description: Blitzkrieg - Burning Horizon - executable: Burning Horizon\\game.exe - workingdir: Burning Horizon\\ + executable: "Burning Horizon\\\\game.exe" + workingdir: "Burning Horizon\\\\" - config: oslist: windows description: Blitzkrieg - Rolling Thunder - executable: Rolling Thunder\\game.exe - workingdir: Rolling Thunder\\ -'313500': + executable: "Rolling Thunder\\\\game.exe" + workingdir: "Rolling Thunder\\\\" +"313500": installDir: Blitzkrieg 2 Anthology launch: - config: oslist: windows description: Blitzkrieg 2 - executable: Blitzkrieg 2\\bin\\game.exe - workingdir: Blitzkrieg 2\\bin\\ + executable: "Blitzkrieg 2\\\\bin\\\\game.exe" + workingdir: "Blitzkrieg 2\\\\bin\\\\" - config: oslist: windows description: Blitzkrieg 2 - Fall of the Reich - executable: Blitzkrieg 2 - Fall of the Reich\\bin\\game.exe - workingdir: Blitzkrieg 2 - Fall of the Reich\\bin\\ + executable: "Blitzkrieg 2 - Fall of the Reich\\\\bin\\\\game.exe" + workingdir: "Blitzkrieg 2 - Fall of the Reich\\\\bin\\\\" - config: oslist: windows description: Blitzkrieg 2 - Liberation - executable: Blitzkrieg 2 - Liberation\\bin\\game.exe - workingdir: Blitzkrieg 2 - Liberation\\bin\\ -'313590': + executable: "Blitzkrieg 2 - Liberation\\\\bin\\\\game.exe" + workingdir: "Blitzkrieg 2 - Liberation\\\\bin\\\\" +"313590": installDir: Boo Bunny Plague launch: - config: @@ -150188,7 +146750,7 @@ oslist: macos description: Launch executable: BooBunnyPlague.app -'313620': +"313620": installDir: The Terminal 2 launch: - config: @@ -150199,56 +146761,56 @@ oslist: macos description: Launch executable: The_Terminal_2_MAC_OS_X.app.zip -'313630': +"313630": installDir: TheSolusProject launch: - - arguments: '-nohmd' + - arguments: "-nohmd" config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: Solus/Binaries/Win64/Solus-Win64-Shipping.exe type: default workingdir: Solus/Binaries/Win64/ - - arguments: '-d3d10' + - arguments: "-d3d10" config: - osarch: '64' + osarch: "64" oslist: windows description: DirectX10 - Compatibility mode executable: Solus/Binaries/Win64/Solus-Win64-Shipping.exe type: option1 workingdir: Solus/Binaries/Win64/ - - arguments: '-SolusVR' + - arguments: "-SolusVR" config: - osarch: '64' + osarch: "64" oslist: windows description: Experimental VR executable: Solus/Binaries/Win64/Solus-Win64-Shipping.exe type: vr workingdir: Solus/Binaries/Win64/ - - arguments: '-SolusVR -hmd=OculusHMD' + - arguments: "-SolusVR -hmd=OculusHMD" config: - osarch: '64' + osarch: "64" oslist: windows description: Experimental VR for Oculus executable: Solus/Binaries/Win64/Solus-Win64-Shipping.exe type: othervr workingdir: Solus/Binaries/Win64/ -'313650': +"313650": installDir: Time Mysteries The Ancient Spectres launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: TimeMysteries_TheAncientSpectres.exe - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: TimeMysteries_TheAncientSpectres_i386 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: TimeMysteries_TheAncientSpectres_amd64 @@ -150256,16 +146818,16 @@ oslist: macos description: Launch executable: mac_steam.app/Contents/MacOS/mac_steam -'313660': +"313660": installDir: Alea Jacta Est launch: - description: Launch executable: autorun.exe -'313690': +"313690": installDir: LEGO Batman 3 Beyond Gotham launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: LEGOBatman3.exe @@ -150273,13 +146835,13 @@ oslist: macos description: Launch executable: LEGO Batman 3.app -'313730': +"313730": installDir: Sunrider launch: - config: oslist: macos description: Launch - executable: SunriderMaskofArcadius-Steam.app\\Contents\\MacOS\\SunriderMaskofArcadius-Steam + executable: "SunriderMaskofArcadius-Steam.app\\\\Contents\\\\MacOS\\\\SunriderMaskofArcadius-Steam" - config: oslist: windows description: Launch @@ -150288,13 +146850,13 @@ oslist: linux description: Launch executable: SunriderMaskofArcadius-Steam.sh -'313740': +"313740": installDir: Sakura Spirit launch: - config: oslist: macos description: Launch - executable: Sakura Spirit.app\\Contents\\MacOS\\Sakura Spirit + executable: "Sakura Spirit.app\\\\Contents\\\\MacOS\\\\Sakura Spirit" - config: oslist: windows description: Launch @@ -150303,16 +146865,16 @@ oslist: linux description: Launch executable: Sakura Spirit.sh -'313780': +"313780": installDir: Conarium launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Conarium.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Conarium.sh type: default @@ -150320,7 +146882,7 @@ oslist: macos executable: conarium.app/Contents/MacOS/Conarium type: default -'313810': +"313810": installDir: Legend of Kay Anniversary launch: - config: @@ -150331,72 +146893,68 @@ oslist: macos description: Launch Legend of Kay Anniversary executable: legendofkay.app/Contents/MacOS/legendofkay -'313830': +"313830": installDir: SeeNoEvil launch: - config: oslist: windows description: Launch executable: See No Evil.exe -'313870': +"313870": installDir: A Vampyre Story launch: - description: Launch - executable: game\\main.exe - workingdir: \\game -'313960': + executable: "game\\\\main.exe" + workingdir: "\\\\game" +"313960": installDir: Exodus launch: - config: oslist: windows description: Launch - executable: .\\bin\\release\\Exodus.exe - workingdir: bin\\release\\ -'313980': + executable: ".\\\\bin\\\\release\\\\Exodus.exe" + workingdir: "bin\\\\release\\\\" +"313980": installDir: Proxy Blade Zero launch: - config: oslist: windows description: With Settings Launcher - description_loc: - english: With Settings Launcher executable: Proxy Blade Launcher.exe type: none - config: oslist: windows description: Without Launcher - description_loc: - english: Without Launcher executable: Proxy Blade Zero.exe type: none -'314000': +"314000": installDir: Pool Nation FX launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch - executable: PoolNationFX\\Binaries\\Win64\\PoolNationFX.exe -'314010': + executable: "PoolNationFX\\\\Binaries\\\\Win64\\\\PoolNationFX.exe" +"314010": installDir: Boid launch: - description: Launch executable: Boid.exe -'314020': +"314020": installDir: Morphopolis launch: - config: oslist: windows description: Launch executable: project.exe -'314030': - installDir: 'Guilty Gear X2 #Reload' +"314030": + installDir: "Guilty Gear X2 #Reload" launch: - - description: 'Play Guilty Gear X2 #Reload' + - description: "Play Guilty Gear X2 #Reload" executable: ggx2.exe - description: Configure Settings executable: config.exe -'314050': +"314050": installDir: Spheritis launch: - config: @@ -150404,45 +146962,45 @@ description: Launch executable: spheritis.exe - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: spheritis.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: spheritis.x86_64 -'314070': +"314070": installDir: Super Mega Baseball launch: - config: oslist: windows description: Launch executable: supermegabaseball.exe -'314120': - installDir: Frayed Knights The Skull of S'makh-Daon +"314120": + installDir: "Frayed Knights The Skull of S'makh-Daon" launch: - description: Launch executable: FrayedKnights_Steam.exe -'314150': +"314150": installDir: Double Dragon Trilogy launch: - config: oslist: windows description: Launch executable: ddtrilogy.exe -'314160': +"314160": installDir: FSX launch: - description: Launch executable: fsx.exe -'314180': +"314180": installDir: Deathsmiles launch: - executable: default.exe type: default -'314200': +"314200": installDir: Bionic Heart launch: - config: @@ -150457,7 +147015,7 @@ oslist: linux description: Launch executable: Bionic Heart.sh -'314210': +"314210": installDir: Tesla Breaks the World launch: - config: @@ -150469,16 +147027,16 @@ description: Launch OSX executable: TBTW-OSX.app - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch Linux executable: TBTW-Linux.x86_64 - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch Linux 32-bit executable: TBTW-Linux.x86 -'314220': +"314220": installDir: Bombing Bastards launch: - config: @@ -150493,7 +147051,7 @@ oslist: linux description: Launch executable: BombingBastards.x86 -'314230': +"314230": installDir: Rodina launch: - config: @@ -150501,7 +147059,7 @@ description: Launch executable: Rodina_Steam.exe type: none -'314240': +"314240": installDir: RPG Tycoon launch: - config: @@ -150512,56 +147070,56 @@ oslist: macos description: Launch executable: RPGTycoon.app -'314250': +"314250": installDir: Jet Force launch: - config: oslist: windows description: Launch executable: jetgunner.exe -'314280': +"314280": installDir: tfo launch: - - arguments: '-game tfo -steam' + - arguments: "-game tfo -steam" config: oslist: windows description: Launch executable: hl2.exe type: default - - arguments: '-game tfo -steam' + - arguments: "-game tfo -steam" config: oslist: linux description: Launch executable: hl2.sh type: default - - arguments: '-game tfo -steam' + - arguments: "-game tfo -steam" config: oslist: macos description: Launch executable: hl2.sh type: default -'314290': +"314290": installDir: Obludia launch: - config: oslist: windows description: Launch executable: Obludia.exe -'314300': +"314300": installDir: CubeZ launch: - config: oslist: windows description: Launch executable: /WindowsNoEditor/cubez.exe -'314320': +"314320": installDir: GamersGoMakers launch: - config: oslist: windows description: Launch executable: ggm.exe -'314330': +"314330": installDir: DROD Gunthro and the Epic Blunder launch: - config: @@ -150573,27 +147131,27 @@ executable: drod type: default - config: - osarch: '64' + osarch: "64" oslist: macos - executable: DROD.app\\Contents\\MacOS\\drod + executable: "DROD.app\\\\Contents\\\\MacOS\\\\drod" type: default -'314340': +"314340": installDir: Chess2 launch: - config: oslist: windows description: Launch executable: Chess2Client.exe -'314350': +"314350": installDir: Abatron launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: Abatron.exe type: default -'314360': +"314360": installDir: AritanaHF launch: - config: @@ -150604,7 +147162,7 @@ oslist: macos description: Launch executable: Aritana.app -'314370': +"314370": installDir: Box Life launch: - config: @@ -150616,23 +147174,23 @@ executable: boxlife.app type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: boxlife.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: boxlife.x86_64 type: none -'314380': +"314380": installDir: Lantern Forge launch: - config: oslist: windows description: Launch executable: LanternForge.exe -'314410': +"314410": installDir: Rampage Knights launch: - config: @@ -150643,7 +147201,7 @@ oslist: macos description: Launch executable: Rampage Knights.app -'314420': +"314420": installDir: Company of Heroes Relaunch launch: - config: @@ -150654,7 +147212,7 @@ oslist: windows description: Launch Dev Mode executable: tgw1918dev.bat -'314450': +"314450": installDir: Saviors launch: - config: @@ -150669,18 +147227,18 @@ oslist: macos description: Launch executable: Saviors.app -'314460': +"314460": installDir: Jamsouls launch: - config: oslist: windows description: Launch executable: Jamsouls.exe -'314470': +"314470": installDir: Heroes of a Broken Land launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: hobl.exe @@ -150689,16 +147247,16 @@ description: Launch executable: hobl.app - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: hobl.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: hobl.x86_64 -'314510': +"314510": installDir: Fall of the New Age launch: - config: @@ -150713,76 +147271,76 @@ oslist: linux description: Launch executable: Fall_Of_The_New_Age_CE -'314520': +"314520": installDir: Fishing launch: - config: oslist: windows description: Launch on Windows - executable: FishingGame\\Binaries\\Win64\\FishingGame-Win64-Shipping.exe + executable: "FishingGame\\\\Binaries\\\\Win64\\\\FishingGame-Win64-Shipping.exe" type: none - config: oslist: windows description: Launch Legacy - executable: WindowsNoEditor\\FishingGame\\Binaries\\Win64\\FishingGame-Win64-Shipping.exe + executable: "WindowsNoEditor\\\\FishingGame\\\\Binaries\\\\Win64\\\\FishingGame-Win64-Shipping.exe" type: none - config: betakey: dlctest oslist: windows description: Launch DLC Test - executable: FishingGame\\Binaries\\Win64\\FishingGame.exe + executable: "FishingGame\\\\Binaries\\\\Win64\\\\FishingGame.exe" type: none - config: betakey: development oslist: windows description: Development Branch - executable: FishingGame\\Binaries\\Win64\\FishingGame.exe + executable: "FishingGame\\\\Binaries\\\\Win64\\\\FishingGame.exe" type: none - config: betakey: jonastest oslist: windows description: Jonas Only - executable: FishingGame\\Binaries\\Win64\\FishingGame.exe + executable: "FishingGame\\\\Binaries\\\\Win64\\\\FishingGame.exe" type: none -'314530': +"314530": installDir: Aware launch: - description: Launch executable: aware.exe -'314540': +"314540": installDir: Paper Monsters Recut launch: - config: oslist: windows description: Launch executable: PaperMonstersRecut_PC.exe -'314560': +"314560": installDir: Kyn launch: - config: oslist: windows description: Launch executable: Kyn.exe -'314570': +"314570": installDir: The Sun at Night launch: - config: oslist: windows description: Launch executable: TheSunAtNight-ST.exe -'314590': +"314590": installDir: room13 launch: - description: Launch executable: room13.exe -'314610': +"314610": installDir: Vincere Totus Astrum launch: - config: oslist: windows executable: VTA.exe type: none -'314630': +"314630": installDir: the thin silence launch: - config: @@ -150793,40 +147351,40 @@ oslist: windows executable: TTS-WIN/TTS/TTS.exe type: default -'314650': +"314650": installDir: SpaceEngine launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Desktop - executable: system\\SpaceEngine.exe + executable: "system\\\\SpaceEngine.exe" type: default workingdir: system - - arguments: '-mode=VR_Oculus' + - arguments: "-mode=VR_Oculus" config: - osarch: '64' + osarch: "64" oslist: windows description: Oculus Rift - executable: system\\SpaceEngine.exe + executable: "system\\\\SpaceEngine.exe" type: othervr workingdir: system - - arguments: '-mode=VR_OpenVR' + - arguments: "-mode=VR_OpenVR" config: - osarch: '64' + osarch: "64" oslist: windows description: Steam VR (HTC Vive & Mixed Reality) - executable: system\\SpaceEngine.exe + executable: "system\\\\SpaceEngine.exe" type: vr workingdir: system - config: - osarch: '64' + osarch: "64" oslist: windows description: Workshop configuration and uploading tool - executable: system\\LaunchPad.exe + executable: "system\\\\LaunchPad.exe" type: config workingdir: system -'314660': +"314660": installDir: Oddworld New n Tasty launch: - config: @@ -150841,34 +147399,34 @@ oslist: linux description: Launch executable: NNT.x86 -'314700': {} -'314710': +"314700": {} +"314710": installDir: Mighty No. 9 launch: - - arguments: '-nohomedir -seekfreeloadingpcconsole' + - arguments: "-nohomedir -seekfreeloadingpcconsole" config: oslist: windows description: Launch - executable: Binaries\\Win32\\MN9Game.exe + executable: "Binaries\\\\Win32\\\\MN9Game.exe" type: none - workingdir: binaries\\Win32\\ + workingdir: "binaries\\\\Win32\\\\" - config: - osarch: '64' + osarch: "64" oslist: macos executable: MN9Game.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Binaries/Linux/MN9Game.bin.x86_64 type: default - config: betakey: devmaclinux - osarch: '64' + osarch: "64" oslist: windows - executable: Binaries\\Win64\\MN9Game.exe + executable: "Binaries\\\\Win64\\\\MN9Game.exe" type: default -'314760': +"314760": installDir: Direct Hit Missile War launch: - config: @@ -150881,28 +147439,28 @@ description: Launch (skip intro movie) executable: /DirectHitNoVideo.exe workingdir: / -'314770': +"314770": installDir: Pe-2 Dive Bomber launch: - - arguments: '-w' + - arguments: "-w" config: oslist: windows description: Run Eng (Window mode) - executable: \\eng\\pe2.exe + executable: "\\\\eng\\\\pe2.exe" - config: oslist: windows description: Run Eng (Fullscreen mode 1024x768) - executable: \\eng\\pe2.exe - - arguments: '-w' + executable: "\\\\eng\\\\pe2.exe" + - arguments: "-w" config: oslist: windows description: Run Russian (Window mode) - executable: \\rus\\pe2.exe + executable: "\\\\rus\\\\pe2.exe" - config: oslist: windows description: Run Russian (Fullscreen mode) - executable: \\rus\\pe2.exe -'314790': + executable: "\\\\rus\\\\pe2.exe" +"314790": installDir: Silence launch: - config: @@ -150918,8 +147476,8 @@ oslist: linux executable: StartSilence_x86.sh type: default -'314810': - installDir: Randal's Monday +"314810": + installDir: "Randal's Monday" launch: - config: oslist: windows @@ -150928,7 +147486,7 @@ - config: oslist: macos description: Launch - executable: Randal's Monday.app + executable: "Randal's Monday.app" - config: betakey: beta oslist: windows @@ -150941,7 +147499,7 @@ description: Bonus Content executable: open_bonus_osx.sh type: none -'314830': +"314830": installDir: Blackguards 2 launch: - config: @@ -150952,23 +147510,23 @@ oslist: windows description: Launch executable: Blackguards 2.exe -'314850': +"314850": installDir: Haunted House launch: - config: oslist: windows description: Launch - executable: HauntedHouseGame\\Binaries\\Win32\\HauntedHouseGame-Win32-Shipping.exe -'314860': + executable: "HauntedHouseGame\\\\Binaries\\\\Win32\\\\HauntedHouseGame-Win32-Shipping.exe" +"314860": installDir: DayBreak Online launch: - - arguments: '-windowed' + - arguments: "-windowed" config: betakey: default oslist: windows executable: DBLauncher.exe type: default -'314950': +"314950": installDir: Spectre launch: - config: @@ -150980,11 +147538,11 @@ description: Launch executable: Spectre.exe - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Spectre.x86_64 -'314970': +"314970": installDir: Age of Conquest IV launch: - config: @@ -150996,11 +147554,11 @@ description: Launch executable: app_main.app - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: app_main -'314980': +"314980": installDir: Supreme Ruler Ultimate launch: - config: @@ -151011,11 +147569,11 @@ oslist: macos description: Launch executable: SupremeRulerUltimate.app -'3150': +"3150": installDir: GM Rally launch: - executable: GM Rally.exe -'315060': +"315060": installDir: Bloop Reloaded launch: - config: @@ -151023,28 +147581,28 @@ description: Launch executable: BloopReloaded.exe - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: BloopReloaded.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: BloopReloaded.x86_64 type: none -'315070': +"315070": installDir: Blob from Space launch: - description: Launch Blob from Space executable: Blob.exe -'315080': +"315080": installDir: Foresight launch: - description: Launch executable: Foresight.exe -'315110': +"315110": installDir: WoahDave launch: - config: @@ -151059,7 +147617,7 @@ oslist: linux description: Launch executable: WoahDave -'315130': +"315130": installDir: CO-OP Decrypted launch: - config: @@ -151074,22 +147632,22 @@ oslist: linux description: Launch executable: CO-OP-Decrypted.x86 -'315210': +"315210": nameLocalized: - brazilian: 'Esquadrão Suicida: Mate a Liga da Justiça' + brazilian: "Esquadrão Suicida: Mate a Liga da Justiça" japanese: スーサイド・スクワッド キル・ザ・ジャスティス・リーグ - koreana: '수어사이드 스쿼드: 킬 더 저스티스 리그' - polish: 'Legion Samobójców: Śmierć Lidze Sprawiedliwości' + koreana: "수어사이드 스쿼드: 킬 더 저스티스 리그" + polish: "Legion Samobójców: Śmierć Lidze Sprawiedliwości" schinese: 自杀小队:消灭正义联盟 tchinese: 自殺突擊隊:戰勝正義聯盟 -'315260': +"315260": installDir: Space Hack launch: - config: oslist: windows description: Launch executable: main.exe -'315320': +"315320": installDir: Skilltree Saga launch: - config: @@ -151104,55 +147662,55 @@ oslist: macos description: Launch executable: Skilltree.app -'315330': +"315330": installDir: All Guns On Deck launch: - config: oslist: windows description: Launch executable: All Guns On Deck.exe -'315340': +"315340": installDir: ARES EX launch: - config: oslist: windows description: Launch executable: ARES_EX.exe -'315430': +"315430": installDir: Polarity launch: - config: oslist: windows description: Launch executable: Polarity.exe -'315440': +"315440": installDir: TRON Evolution launch: - config: oslist: windows description: Launch - executable: Binaries\\Win32Live\\GridGameLauncher.exe - workingdir: Binaries\\Win32Live\\ + executable: "Binaries\\\\Win32Live\\\\GridGameLauncher.exe" + workingdir: "Binaries\\\\Win32Live\\\\" - config: betakey: qa oslist: windows description: testbranch launch - executable: Binaries\\Win32Live\\GridGameLauncher.exe + executable: "Binaries\\\\Win32Live\\\\GridGameLauncher.exe" type: option1 - workingdir: Binaries\\Win32Live\\ -'315450': + workingdir: "Binaries\\\\Win32Live\\\\" +"315450": installDir: Bliss launch: - config: oslist: windows description: Launch executable: Bliss.exe -'315460': +"315460": installDir: Dig or Die launch: - description: Launch executable: DigOrDie.exe -'315480': +"315480": installDir: The Escapist launch: - config: @@ -151160,12 +147718,12 @@ description: Launch executable: The Escapist v1.1.exe - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: The Escapist v1.1.x86_64 - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: The Escapist v1.1.x86 @@ -151173,33 +147731,33 @@ oslist: macos description: Launch executable: The Escapist v1.1.app -'315540': +"315540": installDir: Joylancer launch: - config: oslist: windows description: Launch executable: JOYLANCER.exe -'315550': +"315550": installDir: Taxi launch: - config: oslist: windows description: Launch executable: taxi.exe -'315600': +"315600": installDir: Ford Racing 3 launch: - description: Launch executable: fr3.exe -'315610': - installDir: Spud's Quest +"315610": + installDir: "Spud's Quest" launch: - config: oslist: windows description: Launch executable: SpudsQuest.exe -'315650': +"315650": installDir: Deep Under the Sky launch: - config: @@ -151210,20 +147768,20 @@ oslist: macos description: Launch executable: DeepUnderTheSky.app/Contents/MacOS/DeepUnderTheSky -'315660': +"315660": installDir: Trainz A New Era launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: tane.exe - config: - osarch: '64' + osarch: "64" oslist: macos description: Launch executable: Trainz A New Era.app -'315670': +"315670": installDir: Raiden 3 Digital Edition launch: - config: @@ -151234,7 +147792,7 @@ oslist: windows description: Config executable: Config.exe -'315680': +"315680": installDir: Spellcrafter launch: - config: @@ -151249,12 +147807,12 @@ oslist: linux description: Launch executable: Spellcrafter -'315740': +"315740": installDir: Ford Racing Off Road launch: - description: Launch executable: FordORR.exe -'315810': +"315810": installDir: eden launch: - config: @@ -151262,11 +147820,11 @@ description: Launch executable: eden_en.exe - config: - ownsdlc: '945720' + ownsdlc: "945720" description: Play eden* PLUS MOSAIC executable: eden PLUS MOSAIC/eden_pm_en.exe type: none -'315830': +"315830": installDir: Daedalus - no escape launch: - arguments: game @@ -151288,20 +147846,20 @@ - arguments: editor config: oslist: windows - description: 'Daedalus - No Escape [map editor]' + description: "Daedalus - No Escape [map editor]" executable: daedalus.bat - arguments: editor config: oslist: linux - description: 'Daedalus - No Escape [map editor]' + description: "Daedalus - No Escape [map editor]" executable: daedalus.sh - arguments: editor config: oslist: macos - description: 'Daedalus - No Escape [map editor]' + description: "Daedalus - No Escape [map editor]" executable: daedalus.app/Contents/MacOS/daedalus.sh workingdir: daedalus.app/Contents/MacOS -'315840': +"315840": installDir: Catacomb Kids launch: - config: @@ -151324,12 +147882,12 @@ description: Launch Dev Build executable: CatacombKids.app/Contents/MacOS/Catacomb_Kids type: none -'315850': +"315850": installDir: AmazingPrincessSarah launch: - description: Launch executable: AmazingPrincessSarah.exe -'315860': +"315860": installDir: Celestian Tales Old North launch: - config: @@ -151342,21 +147900,21 @@ description: Launch executable: CTON MacOSX.app - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch Linux 32 executable: CTON Linux.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch Linux 64 executable: CTON Linux.x86_64 -'315920': +"315920": installDir: Stonerid launch: - description: Launch executable: StoneRid.exe -'315930': +"315930": installDir: Bravada launch: - config: @@ -151371,33 +147929,33 @@ oslist: linux description: Launch executable: Bravada.x86 -'315940': +"315940": installDir: Top Hat launch: - description: Launch executable: Top Hat.exe -'3160': +"3160": installDir: A Farewell to Dragons launch: - executable: thegame.exe -'316010': +"316010": installDir: Magic Duels launch: - description: Launch - executable: ./MagicDuels.exe -'316020': + executable: "./MagicDuels.exe" +"316020": installDir: Hangeki launch: - config: oslist: windows description: Launch executable: Hangeki.exe -'316030': +"316030": installDir: Alice in Wonderland launch: - description: Launch executable: Alice.exe -'316080': +"316080": installDir: Parcel launch: - config: @@ -151409,30 +147967,30 @@ description: Launch executable: Parcel.app - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: Parcel.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Parcel.x86_64 -'316140': +"316140": installDir: Appointment With FEAR launch: - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Appointment with FEAR.x86_64 - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: Appointment with FEAR.x86 - config: - osarch: '64' + osarch: "64" oslist: macos description: Launch executable: Appointment with FEAR.app @@ -151440,14 +147998,14 @@ oslist: windows description: Launch executable: Appointment with FEAR.exe -'316160': +"316160": installDir: Broken Sword 4 launch: - config: oslist: windows description: Launch executable: bs4.exe -'316180': +"316180": installDir: A City Sleeps launch: - config: @@ -151458,39 +148016,39 @@ oslist: macos description: Launch executable: ACitySleeps.app -'316240': +"316240": installDir: Professional Lumberjack 2015 launch: - description: Launch executable: WoodCutter2015.exe -'316260': +"316260": installDir: Disney Universe launch: - description: Launch executable: DisneyUPC.exe -'316320': +"316320": installDir: Cars Toon launch: - description: Launch executable: cars.exe -'316370': +"316370": installDir: Wave of Darkness launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch - executable: system\\game_lod.exe + executable: "system\\\\game_lod.exe" workingdir: system -'316390': +"316390": installDir: sZone-Online launch: - config: oslist: windows description: Launch - executable: game\\SZoneOnline.exe + executable: "game\\\\SZoneOnline.exe" workingdir: game -'316420': +"316420": installDir: The Curse of the Werewolves launch: - config: @@ -151501,80 +148059,80 @@ oslist: macos description: Launch executable: The Curse of the Werewolves.app -'316430': +"316430": installDir: Battle of Empires 1914-1918 launch: - config: oslist: windows - description: 'Play Battle of Empires: 1914-1918' + description: "Play Battle of Empires: 1914-1918" executable: BoE-1914.exe - - arguments: '-package 342010 -splash battle_for_berlin.bmp' + - arguments: "-package 342010 -splash battle_for_berlin.bmp" config: oslist: windows - ownsdlc: '342010' + ownsdlc: "342010" description: Play Victory Pack executable: BoE-1914.exe type: none - config: oslist: windows - ownsdlc: '334810' + ownsdlc: "334810" description: Editor executable: BoE-1914_editor.exe - config: oslist: windows - ownsdlc: '409230' + ownsdlc: "409230" description: BoE-1914 Windows Theme - executable: .\\Artwork collection\\Windows theme\\boe.themepack + executable: ".\\\\Artwork collection\\\\Windows theme\\\\boe.themepack" type: none - config: oslist: linux - description: 'Play Battle of Empires: 1914-1918' + description: "Play Battle of Empires: 1914-1918" executable: BoE-1914 type: none - config: oslist: macos - description: 'Play Battle of Empires: 1914-1918' + description: "Play Battle of Empires: 1914-1918" executable: BoE-1914.app type: none - - arguments: '-package 342010 -splash battle_for_berlin.bmp' + - arguments: "-package 342010 -splash battle_for_berlin.bmp" config: oslist: linux - ownsdlc: '342010' + ownsdlc: "342010" description: Play Victory Pack executable: BoE-1914 type: none - - arguments: '-package 342010 -splash battle_for_berlin.bmp' + - arguments: "-package 342010 -splash battle_for_berlin.bmp" config: oslist: macos - ownsdlc: '342010' + ownsdlc: "342010" description: Play Victory Pack executable: BoE-1914.app type: none - config: oslist: linux - ownsdlc: '334810' + ownsdlc: "334810" description: Editor executable: BoE-1914_editor type: none - config: oslist: macos - ownsdlc: '334810' + ownsdlc: "334810" description: Editor executable: BoE-1914_editor.app type: none -'316480': +"316480": installDir: Shadow Puppeteer launch: - config: oslist: windows description: Launch executable: ShadowPuppeteer.exe -'316600': +"316600": installDir: QP Shooting - Dangerous launch: - description: Launch executable: QP Shooting.exe -'316610': +"316610": installDir: A Good Snowman Is Hard To Build launch: - config: @@ -151590,7 +148148,7 @@ description: Launch executable: a-good-snowman.sh type: none -'316660': +"316660": installDir: Toast Time launch: - config: @@ -151602,23 +148160,23 @@ description: Toast Time (OS X) executable: Toast Time.app/Contents/MacOS/Toast Time - config: - osarch: '64' + osarch: "64" oslist: linux description: Toast Time (Linux) executable: game -'316700': +"316700": installDir: FrontPageSportsFootball launch: - description: Launch executable: Client.exe -'316720': +"316720": installDir: planetarian ~the reverie of a little planet~ launch: - config: oslist: windows description: Launch executable: RealLiveMaxEx.exe -'316740': +"316740": installDir: Biglands launch: - config: @@ -151629,16 +148187,16 @@ oslist: windows description: Launch executable: Biglands.exe -'316750': +"316750": installDir: Tetris Ultimate launch: - - arguments: '-uplay_steam_mode' + - arguments: "-uplay_steam_mode" config: oslist: windows description: Launch executable: TetrisUltimate.exe type: none -'316790': +"316790": installDir: Grim Fandango Remastered launch: - config: @@ -151653,7 +148211,7 @@ oslist: linux description: Launch executable: GrimFandango -'316810': +"316810": installDir: Shadowcrypt launch: - config: @@ -151669,12 +148227,12 @@ oslist: macos executable: Shadowcrypt.app/Contents/MacOS/YoYo70 type: none -'316840': +"316840": installDir: Sacred Tears True launch: - executable: The Sacred Tears TRUE.exe type: default -'316890': +"316890": installDir: Calvino Noir launch: - config: @@ -151685,7 +148243,7 @@ oslist: macos description: Launch executable: calvinonoirosx -'316930': +"316930": installDir: Kings of Kung Fu launch: - config: @@ -151697,28 +148255,28 @@ description: Launch executable: kok.app/Contents/MacOS/kok - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: kok.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: kok.x86_64 -'316950': +"316950": installDir: War Operations launch: - description: Launch executable: War Operations.exe -'316970': +"316970": installDir: The Waste Land launch: - config: oslist: windows description: Launch executable: TheWasteLand.exe -'3170': +"3170": installDir: Kings Bounty Armored Princess launch: - config: @@ -151726,52 +148284,52 @@ executable: kb.exe - config: oslist: macos - executable: King's Bounty - Armored Princess.app/Contents/MacOS/PrincessLauncher.sh -'31700': + executable: "King's Bounty - Armored Princess.app/Contents/MacOS/PrincessLauncher.sh" +"31700": installDir: Iron Grip Warlord launch: - executable: igwarlord.exe -'317020': +"317020": installDir: Pajama Sam GTPOAD launch: - - arguments: '--no-console -c scummvm-pjsgtpoad.ini pjgames' + - arguments: "--no-console -c scummvm-pjsgtpoad.ini pjgames" config: oslist: windows description: Launch - executable: ScummVM_Windows\\ScummVM.exe - workingdir: ScummVM_Windows\\ - - arguments: '-c scummvm-pjsgtpoad.ini pjgames' + executable: "ScummVM_Windows\\\\ScummVM.exe" + workingdir: "ScummVM_Windows\\\\" + - arguments: "-c scummvm-pjsgtpoad.ini pjgames" config: oslist: macos description: Launch - executable: ScummVM_Mac\\ScummVM.app\\Contents\\MacOS\\scummvm - workingdir: ScummVM_Mac\\ + executable: "ScummVM_Mac\\\\ScummVM.app\\\\Contents\\\\MacOS\\\\scummvm" + workingdir: "ScummVM_Mac\\\\" - config: oslist: linux description: Launch - executable: ScummVM_Linux\\launch_pjgames.sh - workingdir: ScummVM_Linux\\ -'317030': - installDir: Fatty Bear's Birthday Surprise + executable: "ScummVM_Linux\\\\launch_pjgames.sh" + workingdir: "ScummVM_Linux\\\\" +"317030": + installDir: "Fatty Bear's Birthday Surprise" launch: - - arguments: '--no-console -c scummvm-fbear.ini fbear' + - arguments: "--no-console -c scummvm-fbear.ini fbear" config: oslist: windows description: Launch - executable: ScummVM_Windows\\ScummVM.exe - workingdir: ScummVM_Windows\\ - - arguments: '-c scummvm-fbear.ini fbear' + executable: "ScummVM_Windows\\\\ScummVM.exe" + workingdir: "ScummVM_Windows\\\\" + - arguments: "-c scummvm-fbear.ini fbear" config: oslist: macos description: Launch - executable: ScummVM_Mac\\ScummVM.app\\Contents\\MacOS\\scummvm - workingdir: ScummVM_Mac\\ + executable: "ScummVM_Mac\\\\ScummVM.app\\\\Contents\\\\MacOS\\\\scummvm" + workingdir: "ScummVM_Mac\\\\" - config: oslist: linux description: Launch - executable: ScummVM_Linux\\launch_fbear.sh - workingdir: ScummVM_Linux\\ -'317040': + executable: "ScummVM_Linux\\\\launch_fbear.sh" + workingdir: "ScummVM_Linux\\\\" +"317040": installDir: Strife launch: - config: @@ -151786,21 +148344,21 @@ oslist: linux description: Launch executable: strife-ve.sh - - arguments: '-conf .\\dosbox_strife.conf' + - arguments: "-conf .\\\\dosbox_strife.conf" config: oslist: windows description: Launch DOS Strife - executable: DOS\\DOSBox.exe + executable: "DOS\\\\DOSBox.exe" type: none workingdir: DOS - - arguments: '-conf .\\dosbox_strifebeta.conf' + - arguments: "-conf .\\\\dosbox_strifebeta.conf" config: oslist: windows description: Launch Strife 1995 Beta - executable: DOS\\DOSBox.exe + executable: "DOS\\\\DOSBox.exe" type: none workingdir: DOS -'317060': +"317060": installDir: Attractio launch: - config: @@ -151816,7 +148374,7 @@ oslist: macos executable: Attractio type: default -'317080': +"317080": installDir: MotorSport Revolution launch: - config: @@ -151827,7 +148385,7 @@ oslist: macos description: Launch executable: MotorsportRevolution_SteamVR.app -'317100': +"317100": installDir: Republique launch: - config: @@ -151840,7 +148398,7 @@ description: Launch executable: Republique.app type: default -'317250': +"317250": installDir: Airscape launch: - config: @@ -151856,7 +148414,7 @@ oslist: linux description: Launch executable: nw -'317280': +"317280": installDir: Solstice launch: - config: @@ -151867,7 +148425,7 @@ oslist: macos executable: Solstice.app/Contents/MacOS/Mac_Runner type: none -'317290': +"317290": installDir: Bionic Heart 2 launch: - config: @@ -151882,7 +148440,7 @@ oslist: linux description: Launch executable: Bionic Heart 2.sh -'317300': +"317300": installDir: Roommates launch: - config: @@ -151897,7 +148455,7 @@ oslist: linux description: Launch executable: Roommates.sh -'317320': +"317320": installDir: Nelly Cootalot launch: - config: @@ -151909,16 +148467,16 @@ executable: Nelly.app type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: Nelly.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: Nelly.x86_64 type: none -'317330': +"317330": installDir: Defenders of Time launch: - config: @@ -151929,20 +148487,20 @@ oslist: macos description: Launch executable: dtc.app -'317360': +"317360": installDir: Double Action launch: - - arguments: '-game dab' + - arguments: "-game dab" config: oslist: windows description: Launch executable: hl2.exe - - arguments: '-game dab' + - arguments: "-game dab" config: oslist: linux description: Launch executable: hl2.sh - - arguments: '-game dab' + - arguments: "-game dab" config: oslist: macos description: Launch @@ -151952,7 +148510,7 @@ description: Double Action Map Editor executable: bin/hammer.exe type: none -'317370': +"317370": installDir: The Keep launch: - config: @@ -151963,7 +148521,7 @@ oslist: macos executable: TheKeep.app type: default -'317380': +"317380": installDir: War on Folvos launch: - executable: War on Folvos.exe @@ -151971,26 +148529,26 @@ nameLocalized: russian: War on Folvos / Война на Фолвос ukrainian: War on Folvos / Війна на Фолвосі -'317400': +"317400": installDir: Portal Stories Mel launch: - - arguments: '-game portal_stories -steam -condebug' + - arguments: "-game portal_stories -steam -condebug" config: oslist: windows description: Launch executable: portal2.exe - - arguments: '-game portal_stories -steam -condebug' + - arguments: "-game portal_stories -steam -condebug" config: oslist: macos description: Launch executable: portal2_osx - - arguments: '-game portal_stories -steam' + - arguments: "-game portal_stories -steam" config: oslist: linux description: Launch executable: portal2.sh type: none -'317410': +"317410": installDir: Color Symphony launch: - config: @@ -152002,21 +148560,21 @@ oslist: windows executable: Color Changer.exe type: config -'317440': +"317440": installDir: Quantum Rush Champions launch: - config: oslist: windows description: Launch executable: QuantumRushChampions.exe -'317470': +"317470": installDir: Cubic Castles launch: - config: oslist: windows description: Launch executable: Cubic.exe -'317510': +"317510": installDir: Beyond Gravity launch: - config: @@ -152028,30 +148586,30 @@ description: Launch executable: BeyondGravity.exe - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: BeyondGravity.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: BeyondGravity.x86_64 -'317530': +"317530": installDir: Congo launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch - executable: Congo1\\Binaries\\Win64\\Congo1-Win64-Shipping.exe + executable: "Congo1\\\\Binaries\\\\Win64\\\\Congo1-Win64-Shipping.exe" type: none -'317580': +"317580": installDir: Toy Story Mania launch: - description: Launch executable: tsmania.exe -'317600': +"317600": installDir: Company of Heroes Relaunch launch: - config: @@ -152059,7 +148617,7 @@ description: SOMEWHERE ELSE! Testing only! executable: EF_Bin/CoHEF.exe type: option1 -'317610': +"317610": installDir: Prophour23 launch: - config: @@ -152075,7 +148633,7 @@ oslist: linux description: Launch executable: Prophour23 -'317620': +"317620": installDir: Space Hulk Ascension launch: - config: @@ -152090,7 +148648,7 @@ oslist: linux description: Launch executable: game.x86 -'317710': +"317710": installDir: Velocibox launch: - config: @@ -152105,21 +148663,21 @@ oslist: linux description: Launch executable: Velocibox.x86 -'317720': +"317720": installDir: Tiestru launch: - config: oslist: windows description: Launch executable: Tiestru.exe -'317730': +"317730": installDir: ReewGames launch: - config: oslist: windows description: Launch executable: ReverseSide.exe -'317780': +"317780": installDir: Eternal Fate launch: - config: @@ -152130,58 +148688,50 @@ oslist: macos description: Launch executable: Eternal Fate.app -'317790': +"317790": installDir: Rexaura launch: - - arguments: '-game rexaura -steam' + - arguments: "-game rexaura -steam" config: oslist: windows description: Launch executable: hl2.exe type: default - - arguments: '-game rexaura -steam' + - arguments: "-game rexaura -steam" config: oslist: macos description: Launch executable: hl2.sh type: default - - arguments: '-game rexaura -steam' + - arguments: "-game rexaura -steam" config: oslist: linux description: Launch executable: hl2.sh type: default -'317820': +"317820": installDir: Guild of Dungeoneering launch: - config: oslist: windows description: Launch - description_loc: - english: Launch executable: Ultimate Dungeoneering.exe type: default - config: oslist: macos description: Launch - description_loc: - english: Launch executable: GuildUltimate.app type: default - config: betakey: classic oslist: windows description: Guild Classic - description_loc: - english: Guild Classic executable: dungeoneering.exe type: option1 - config: betakey: classic oslist: macos description: Guild Classic - description_loc: - english: Guild Classic executable: dungeoneering.app type: option1 nameLocalized: @@ -152189,56 +148739,56 @@ koreana: 길드 오브 던저니어링 얼티밋 에디션 Guild of Dungeoneering Ultimate Edition schinese: 地下城探险公会终极版 Guild of Dungeoneering Ultimate Edition tchinese: 《地下城探險公會》終極版 Guild of Dungeoneering Ultimate Edition -'317840': +"317840": installDir: Dokuro launch: - config: oslist: windows description: Launch executable: main.exe -'317850': +"317850": installDir: Company of Heroes 2 - Ardennes Assault -'317920': +"317920": installDir: Hills Of Glory 3D launch: - config: oslist: windows description: Launch executable: HOG3D.exe -'317940': +"317940": installDir: Karmaflow The Rock Opera Videogame launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch - executable: Binaries\\Win32\\KFGame.exe + executable: "Binaries\\\\Win32\\\\KFGame.exe" - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch - executable: Binaries\\Win64\\KFGame.exe -'317950': + executable: "Binaries\\\\Win64\\\\KFGame.exe" +"317950": installDir: KEL Reaper of Entropy launch: - - arguments: '-fullscreen' + - arguments: "-fullscreen" config: oslist: windows description: Launch on Windows - executable: Binaries\\Win32\\UDK.exe - workingdir: Binaries\\Win32 -'317970': + executable: "Binaries\\\\Win32\\\\UDK.exe" + workingdir: "Binaries\\\\Win32" +"317970": installDir: Dusk 12 launch: - config: oslist: windows description: Launch executable: dusk.exe -'31800': +"31800": installDir: Nancy Drew Danger by Design launch: - executable: Game.exe -'318020': +"318020": installDir: Act of Aggression launch: - config: @@ -152248,10 +148798,10 @@ type: default - config: oslist: windows - description: 'Act of Aggression: Reboot Edition' + description: "Act of Aggression: Reboot Edition" executable: ActOfAggressionRE.exe type: option1 -'318090': +"318090": installDir: Dicetiny launch: - config: @@ -152262,18 +148812,18 @@ oslist: macos executable: Dicetiny.app type: default -'31810': +"31810": installDir: Nancy Drew Last Train to Blue Moon Canyon launch: - executable: Game.exe -'318100': +"318100": installDir: AXYOS launch: - config: oslist: windows description: Launch Game executable: Binaries/Win32/UDK.exe -'318130': +"318130": installDir: DoomAndDestiny launch: - config: @@ -152289,11 +148839,11 @@ description: Launch executable: run.sh type: none -'31820': +"31820": installDir: Nancy Drew The Haunted Carousel launch: - executable: Game.exe -'318220': +"318220": installDir: Enforcer launch: - config: @@ -152304,7 +148854,7 @@ oslist: macos description: Launch executable: Enforcer.app -'318230': +"318230": installDir: Convoy launch: - config: @@ -152319,7 +148869,7 @@ oslist: linux description: Launch executable: Convoy.x86 -'318260': +"318260": installDir: Supreme launch: - config: @@ -152331,25 +148881,25 @@ description: Launch executable: Supreme.app - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Supreme.x86_64 - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: Supreme.x86 -'31830': +"31830": installDir: Nancy Drew Curse of Blackmoor Manor launch: - executable: Game.exe -'318300': +"318300": installDir: Phineas and Ferb New Inventions launch: - description: Launch executable: Lang.exe -'318310': +"318310": installDir: ChoiceOfTheDeathless launch: - config: @@ -152364,7 +148914,7 @@ oslist: linux description: Launch executable: ChoiceOfTheDeathless -'318330': +"318330": installDir: MechaAce launch: - config: @@ -152379,16 +148929,16 @@ oslist: linux description: Launch executable: MechaAce -'318350': - installDir: Disney Fairies Tinker Bell's Adventure +"318350": + installDir: "Disney Fairies Tinker Bell's Adventure" launch: - description: Launch executable: FairiesPC.exe -'31840': +"31840": installDir: Nancy Drew Danger on Deception Island launch: - executable: Game.exe -'318430': +"318430": installDir: Squishy launch: - config: @@ -152401,37 +148951,37 @@ description: Launch executable: mac/Squishy the Suicidal Pig.app workingdir: mac -'318440': +"318440": installDir: Cubesis launch: - config: oslist: windows description: Launch executable: Cubesis.exe -'318480': +"318480": installDir: Burnstar launch: - config: oslist: windows description: Launch Game executable: BurnStar.exe -'31850': +"31850": installDir: Nancy Drew Ghost Dogs of Moon Lake launch: - executable: Game.exe -'318530': +"318530": installDir: Wings Of Vi launch: - config: oslist: windows description: Launch executable: Wings Of Vi.exe -'318560': +"318560": installDir: Unlimited Escape 2 launch: - description: Launch executable: escape2.exe -'318570': +"318570": installDir: Hunters Of The Dead launch: - config: @@ -152442,42 +148992,36 @@ oslist: macos description: Launch executable: Hunters of the Dead.app -'31860': +"31860": installDir: Nancy Drew Legend of The Crystal Skull launch: - executable: Game.exe -'318600': +"318600": installDir: FlameInTheFlood launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch - description_loc: - english: Launch - sc_schinese: Launch executable: RiverGame.exe type: none - - arguments: '-pak' + - arguments: "-pak" config: oslist: macos description: Launch - description_loc: - english: Launch - sc_schinese: Launch executable: RiverGame.app type: none nameLocalized: sc_schinese: 洪潮之焰 schinese: 洪潮之焰 / The Flame in the Flood -'318650': +"318650": installDir: SunAgeBattleForElysium launch: - config: oslist: windows description: Launch executable: sunage_win7_steam.exe - - arguments: '-windowed' + - arguments: "-windowed" config: oslist: windows description: Launch windowed @@ -152486,16 +149030,16 @@ oslist: macos description: Launch executable: SunAge - Battle for Elysium.app - - arguments: '-win:1024x768' + - arguments: "-win:1024x768" config: oslist: macos description: Launch windowed executable: SunAge - Battle for Elysium.app -'318660': +"318660": installDir: Crazy Chicken Tales launch: - executable: CC_Tales.exe -'318680': +"318680": installDir: History in Letters - The Eternal Alchemist launch: - config: @@ -152507,31 +149051,31 @@ description: Launch executable: tea.app type: none -'318690': +"318690": installDir: Cargo 3 launch: - - arguments: '-fullscreen' + - arguments: "-fullscreen" config: oslist: windows description: Play Cargo 3 32bit executable: Binaries/Win32/cargo3.exe - - arguments: '-fullscreen' + - arguments: "-fullscreen" description: Play Cargo 3 64bit executable: Binaries/Win64/cargo3.exe -'31870': - installDir: 'Nancy Drew Lights, Camera, Curses' +"31870": + installDir: "Nancy Drew Lights, Camera, Curses" launch: - executable: Curses.exe -'318740': +"318740": installDir: Princess and The Frog launch: - description: Launch executable: PrincessAndFrog.exe -'31880': +"31880": installDir: Nancy Drew Secret of the Old Clock launch: - executable: Game.exe -'318860': +"318860": installDir: Malebolgia launch: - config: @@ -152544,22 +149088,22 @@ description: Launch executable: palace.app type: none -'31890': +"31890": installDir: Nancy Drew Secret of the Scarlet Hand launch: - executable: Game.exe -'318950': +"318950": installDir: Disney Tangled launch: - config: oslist: windows description: Launch executable: Rapunzel.exe -'318970': +"318970": installDir: StarCrawlers launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: StarCrawlers (32-bit) executable: StarCrawlers_x86.exe @@ -152569,47 +149113,47 @@ description: Launch executable: StarCrawlers.app - config: - osarch: '64' + osarch: "64" oslist: windows description: StarCrawlers (64-bit) executable: StarCrawlers_x86_64.exe type: option1 - config: - osarch: '32' + osarch: "32" oslist: linux - description: ' StarCrawlers (x32)' + description: " StarCrawlers (x32)" executable: starcrawlers.x86 type: option2 - config: - osarch: '64' + osarch: "64" oslist: linux description: StarCrawlers (x64) executable: starcrawlers.x86_64 type: option1 -'31900': +"31900": installDir: Nancy Drew The Creature of Kapu Cave launch: - executable: Game.exe -'319050': +"319050": installDir: ChaosReborn launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: ChaosRebornWin32.exe - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: ChaosRebornWin64.exe - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: ChaosRebornLinux.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: ChaosRebornLinux.x86_64 @@ -152617,52 +149161,52 @@ oslist: macos description: Launch executable: ChaosRebornMac.app/Contents/MacOS/ChaosRebornMac -'319080': +"319080": installDir: Disney Princess My Fairytale Adventure launch: - config: oslist: windows description: Launch executable: DisneyPrincess.exe -'31910': +"31910": installDir: Nancy Drew The Haunting of Castle Malloy launch: - executable: CastleMalloy.exe -'319140': +"319140": installDir: Xeodrifter launch: - config: oslist: windows description: Launch executable: XeodrifterSteam.exe -'319150': +"319150": installDir: Hazard Ops launch: - description: Launch2 executable: UnrealEngine3/Binaries/Win32/InfernumLogin.exe workingdir: UnrealEngine3/Binaries/Win32 -'319170': +"319170": installDir: G-Force launch: - description: Launch executable: GForce.exe -'319180': +"319180": installDir: Platypus II launch: - description: Launch executable: PlatypusII.exe -'31920': +"31920": installDir: Nancy Drew The Phantom of Venice launch: - executable: PhantomOfVenice.exe -'319210': +"319210": installDir: SpaceSalvager launch: - config: oslist: windows description: Launch executable: SpaceSalvager.exe -'319230': +"319230": installDir: Gold Rush Anniversary launch: - config: @@ -152677,12 +149221,12 @@ oslist: linux description: Launch executable: Gold Rush! Anniversary.x86 -'319250': +"319250": installDir: Magicmaker launch: - description: Launch executable: model.exe -'319270': +"319270": installDir: Great Permutator launch: - config: @@ -152697,43 +149241,43 @@ oslist: macos description: Launch executable: GreatPermutator.app -'319280': +"319280": installDir: Yatagarasu launch: - executable: YatagarasuLauncher.exe type: default - config: - ownsdlc: '338210' + ownsdlc: "338210" description: Beta - executable: beta\\YatagarasuLauncher.exe + executable: "beta\\\\YatagarasuLauncher.exe" type: option1 workingdir: beta -'31930': +"31930": installDir: Nancy Drew - The White Wolf of Icicle Creek launch: - executable: Game.exe -'319300': +"319300": installDir: Trainz Trouble launch: - config: oslist: windows description: Launch executable: Trainz Trouble.exe -'319320': +"319320": installDir: Time Mysteries The Final Enigma launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: TimeMysteries_TheFinalEnigma.exe - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: TimeMysteries_TheFinalEnigma_i386 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: TimeMysteries_TheFinalEnigma_amd64 @@ -152741,36 +149285,36 @@ oslist: macos description: Launch executable: mac_steam.app/Contents/MacOS/mac_steam -'319400': +"319400": installDir: Animated Storybook Winnie the Pooh launch: - config: oslist: windows description: Launch executable: Game-Winnie.exe -'319410': +"319410": installDir: Duck Dynasty launch: - description: Launch executable: Bin/DuckDynasty.exe workingdir: Bin -'319430': +"319430": installDir: CHAOS - In the Darkness launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: Chaos.exe type: default -'319450': +"319450": installDir: Chariot launch: - config: oslist: windows description: Launch executable: Chariot.exe -'319470': +"319470": installDir: NinjaPizzaGirl launch: - config: @@ -152782,32 +149326,32 @@ description: Launch executable: NinjaPizzaGirl.app - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: NinjaPizzaGirl.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: NinjaPizzaGirl.x86_64 -'319480': +"319480": installDir: Odallus launch: - description: Launch executable: Launcher.exe -'319510': - installDir: Five Nights at Freddy's +"319510": + installDir: "Five Nights at Freddy's" launch: - config: oslist: windows description: Launch executable: FiveNightsatFreddys.exe -'319540': +"319540": installDir: A Year Of Rain launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: AYearOfRain.exe type: default @@ -152817,34 +149361,34 @@ executable: AYearOfRain.app type: default - config: - betakey: 'experimental, testing, patch-testing' - osarch: '64' + betakey: "experimental, testing, patch-testing" + osarch: "64" oslist: linux executable: AYearOfRain.sh type: default - config: oslist: windows - ownsdlc: '945011' + ownsdlc: "945011" description: Bonus Content executable: open_bonus_win.bat type: none - config: oslist: macos - ownsdlc: '945011' + ownsdlc: "945011" description: Bonus Content executable: open_bonus_osx.sh type: none - config: oslist: linux - ownsdlc: '945011' + ownsdlc: "945011" description: Bonus Content executable: open_bonus_lin.sh type: none -'319550': +"319550": installDir: The Collider launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: Collider.exe @@ -152853,16 +149397,16 @@ description: Launch executable: Collider.app - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: Collider.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Collider.x86_64 -'319560': +"319560": installDir: Reprisal Universe launch: - config: @@ -152873,7 +149417,7 @@ oslist: macos description: Launch Reprisal Universe executable: reprisaluniverse.app -'319570': +"319570": installDir: Heroes of SoulCraft launch: - config: @@ -152886,7 +149430,7 @@ description: Start Launcher with Settings and Controls first executable: GameLauncher.exe type: config -'319630': +"319630": installDir: Life Is Strange launch: - config: @@ -152894,7 +149438,7 @@ description: Launch Life Is Strange executable: Binaries/Win32/LifeIsStrange.exe workingdir: Binaries/Win32 - - arguments: '-ForceMinGraphics' + - arguments: "-ForceMinGraphics" config: oslist: windows description: Launch Safe Mode @@ -152908,22 +149452,22 @@ oslist: macos executable: Life Is Strange.app type: none -'319730': +"319730": installDir: Granado Espada launch: - - arguments: '-steam' + - arguments: "-steam" config: oslist: windows executable: ge.exe type: none -'319740': +"319740": installDir: There Came an Echo launch: - config: oslist: windows description: Launch executable: therecameanecho.exe -'319760': +"319760": installDir: Oh My Gore launch: - config: @@ -152931,13 +149475,13 @@ description: Launch executable: Oh My Gore.exe - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: OhMyGore.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: OhMyGore.x86 @@ -152947,7 +149491,7 @@ description: Launch executable: Oh My Gore.app type: default -'319780': +"319780": installDir: Airport Simulator 2015 launch: - config: @@ -152958,16 +149502,16 @@ oslist: macos description: Launch executable: Airport_2015_Mac.app -'31980': +"31980": installDir: Nancy Drew Ransom of the Seven Ships launch: - executable: Ransom.exe -'319830': +"319830": installDir: AX EL launch: - description: Launch executable: Air XenoDawn.exe -'319850': +"319850": installDir: Bridge Constructor Medieval launch: - config: @@ -152981,12 +149525,12 @@ executable: BridgeConstructorMedieval.app type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: BridgeConstructorMedieval.x86_64 type: none -'319870': +"319870": installDir: Jenny LeClue - Detectivu launch: - config: @@ -153000,17 +149544,17 @@ executable: Jenny LeClue - Detectivu.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Jenny LeClue - Detectivu/Jenny LeClue - Detectivu.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Jenny LeClue - Detectivu/Jenny LeClue - Detectivu.x86_64 type: default -'319910': +"319910": installDir: Trine 3 launch: - config: @@ -153024,7 +149568,7 @@ - config: oslist: linux executable: trine3.sh -'319970': +"319970": installDir: The Detail launch: - config: @@ -153039,28 +149583,26 @@ oslist: macos description: Launch executable: The Detail.app -'320': +"320": installDir: Half-Life 2 Deathmatch launch: - - arguments: '-steam -game hl2mp' + - arguments: "-steam -game hl2mp" config: oslist: windows executable: hl2.exe - vacmodulefilename: resource\\sourceinit.dat - - arguments: '-steam -game hl2mp' + - arguments: "-steam -game hl2mp" config: oslist: macos executable: hl2_osx - vacmodulefilename: resource\\sourceinit_macos.dat - - arguments: '-game hl2mp -steam' + - arguments: "-game hl2mp -steam" config: oslist: linux executable: hl2.sh -'32000': +"32000": installDir: Raycatcher launch: - executable: Raycatcher.exe -'320020': +"320020": installDir: Monkey Tales launch: - config: @@ -153071,7 +149613,7 @@ oslist: macos description: Launch executable: Monkey Tales.app -'320040': +"320040": installDir: Moon Hunters launch: - config: @@ -153080,38 +149622,38 @@ executable: MoonHunters.exe - config: oslist: macos - executable: MoonHunters.app\\Contents\\MacOS\\MoonHunters + executable: "MoonHunters.app\\\\Contents\\\\MacOS\\\\MoonHunters" type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: MoonHunters.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: MoonHunters.x86_64 type: default -'320090': +"320090": installDir: This Starry Midnight We Make launch: - description: Launch executable: StarryMidnight.exe -'320110': +"320110": installDir: Train Town launch: - config: oslist: windows description: Launch executable: TrainTown.exe -'320120': +"320120": installDir: Meadowland launch: - config: oslist: windows description: Launch executable: Meadowland Steam.exe -'320140': +"320140": installDir: Absolute Drift launch: - config: @@ -153120,14 +149662,14 @@ - config: oslist: macos executable: AbsoluteDrift.app - - arguments: '-screen-fullscreen 0' + - arguments: "-screen-fullscreen 0" config: - osarch: '64' + osarch: "64" oslist: linux description: Launch (Linux 64-Bit) executable: AbsoluteDrift.x64 type: default -'320150': +"320150": installDir: Deadlings - Rotten Edition launch: - config: @@ -153142,18 +149684,18 @@ oslist: linux description: Launch executable: Deadlings.x86 -'320240': +"320240": installDir: WeHappyFew launch: - - arguments: '-installed' + - arguments: "-installed" config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: GlimpseGame/Binaries/Win64/GlimpseGame.exe workingdir: GlimpseGame/Binaries/Win64 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: GlimpseGame.sh @@ -153163,7 +149705,7 @@ description: Launch executable: GlimpseGame/Binaries/Mac/GlimpseGame-Mac-Shipping.app/Contents/MacOS/GlimpseGame-Mac-Shipping type: none -'320300': +"320300": installDir: Car Mechanic Simulator 2015 launch: - config: @@ -153174,19 +149716,19 @@ oslist: macos description: Launch executable: cms2015.app -'320310': +"320310": installDir: World Truck Racing launch: - description: Launch executable: Build_ang.exe -'320320': +"320320": installDir: Darkstone launch: - config: oslist: windows description: Launch executable: Darkstone.exe -'320330': +"320330": installDir: Earthworms launch: - config: @@ -153194,26 +149736,26 @@ description: Launch executable: Earthworms.exe type: none -'320340': +"320340": installDir: Cosmonautica launch: - description: Launch - executable: bin\\cosmonautica.exe + executable: "bin\\\\cosmonautica.exe" workingdir: bin -'320400': +"320400": installDir: Magnifico launch: - config: oslist: windows description: Magnifico executable: Magnifico.exe -'320410': +"320410": installDir: Near Impact launch: - description: Launch - executable: Bin\\Release\\NEARImpact.exe - workingdir: Bin\\Release -'320430': + executable: "Bin\\\\Release\\\\NEARImpact.exe" + workingdir: "Bin\\\\Release" +"320430": installDir: Ascension launch: - config: @@ -153223,9 +149765,9 @@ - config: oslist: macos description: Launch - executable: Ascension.app\\Contents\\MacOS\\Ascension + executable: "Ascension.app\\\\Contents\\\\MacOS\\\\Ascension" type: none -'320520': +"320520": installDir: Oscura Lost Light launch: - config: @@ -153240,7 +149782,7 @@ oslist: linux description: Launch executable: Oscura Lost Light.x86 -'320540': +"320540": installDir: Coffin Dodgers launch: - config: @@ -153257,33 +149799,33 @@ executable: CoffinDodgers.x86 - config: oslist: windows - ownsdlc: '503470' + ownsdlc: "503470" executable: CoffinDodgersVR.exe type: othervr -'320590': +"320590": installDir: Warside launch: - - arguments: '--steam' + - arguments: "--steam" config: oslist: windows description: Play (if the server still works) - executable: files\\stable\\bin\\game.exe + executable: "files\\\\stable\\\\bin\\\\game.exe" type: default - workingdir: files\\stable\\bin - - arguments: . + workingdir: "files\\\\stable\\\\bin" + - arguments: "." config: oslist: windows - ownsdlc: '362641' + ownsdlc: "362641" description: View Collector Edition Materials... - executable: files\\stable\\bin\\explore.exe + executable: "files\\\\stable\\\\bin\\\\explore.exe" workingdir: Collector Edition Bonuses - config: oslist: windows description: Dev mode / LAN lobby - executable: files\\stable\\bin\\starter.exe + executable: "files\\\\stable\\\\bin\\\\starter.exe" type: none - workingdir: files\\stable\\bin -'320610': + workingdir: "files\\\\stable\\\\bin" +"320610": installDir: Questerium - Sinister Trinity launch: - config: @@ -153294,21 +149836,21 @@ oslist: macos description: Launch executable: Questerium_Sinister_Trinity.app -'320630': +"320630": installDir: Season Match launch: - config: oslist: windows description: Launch executable: SeasonMatch.exe -'320650': +"320650": installDir: Season Match 2 launch: - config: oslist: windows description: Launch executable: SeasonMatch2.exe -'320670': +"320670": installDir: Season Match 3 - Curse of the Witch Crow launch: - config: @@ -153319,28 +149861,28 @@ oslist: macos description: Launch executable: SeasonMatch3.app -'320690': +"320690": installDir: The Treasures of Montezuma 3 launch: - config: oslist: windows description: Launch executable: TreasuresOfMontezuma3.exe -'320760': +"320760": installDir: Tokyo School Life launch: - config: oslist: windows description: Launch executable: TSL.exe -'320790': +"320790": installDir: Fabula Mortis launch: - config: oslist: windows description: Launch executable: Binaries/Win32/FabulaMortis.exe -'320820': +"320820": installDir: Toren launch: - config: @@ -153355,7 +149897,7 @@ oslist: linux description: Launch executable: Toren.x86 -'320840': +"320840": installDir: Wings! Remastered Edition launch: - config: @@ -153366,14 +149908,14 @@ oslist: macos description: Launch executable: Wings.app -'320890': +"320890": installDir: The Chronicles of Narnia - Prince Caspian launch: - config: oslist: windows description: Launch executable: Caspian.exe -'320970': +"320970": installDir: IGT Slots Paradise Garden launch: - config: @@ -153384,12 +149926,12 @@ oslist: macos description: Launch executable: IGT Slots Paradise Garden.app -'321030': +"321030": installDir: One Day For Ched launch: - description: Launch executable: ONE DAY for Ched.exe -'321060': +"321060": installDir: Gender Bender DNA Twister Extreme launch: - config: @@ -153404,7 +149946,7 @@ oslist: linux description: Launch executable: gbdnate.sh -'321080': +"321080": installDir: Pirate Hell launch: - config: @@ -153414,8 +149956,8 @@ - config: oslist: linux description: Launch - executable: ./runPirateHell.sh -'32110': + executable: "./runPirateHell.sh" +"32110": installDir: Luxor Mahjong launch: - config: @@ -153424,8 +149966,8 @@ - config: oslist: macos executable: Luxor Mahjong.app -'321110': {} -'321150': +"321110": {} +"321150": installDir: Melissa K and the Heart of Gold launch: - config: @@ -153436,7 +149978,7 @@ oslist: macos description: Launch executable: MelissaK_Steam.app/Contents/MacOS/MelissaK_Steam -'321160': +"321160": installDir: TimberTennisVersus launch: - config: @@ -153447,16 +149989,16 @@ oslist: macos executable: timbertennisvs.app type: none -'321190': +"321190": installDir: Cho Dengeki Stryker launch: - config: oslist: windows description: Launch - executable: Cho Dengeki Stryker\\BGI.exe + executable: "Cho Dengeki Stryker\\\\BGI.exe" type: default workingdir: Cho Dengeki Stryker -'32120': +"32120": installDir: Chainz 2 launch: - config: @@ -153465,21 +150007,21 @@ - config: oslist: macos executable: Chainz 2.app -'321260': +"321260": installDir: Wickland launch: - config: oslist: windows description: Launch executable: Binaries/Win32/Wickland.exe -'321270': +"321270": installDir: UNLOVED launch: - config: oslist: windows description: Launch executable: Unloved.exe -'321290': +"321290": installDir: Dandelion - Wishes brought to you - launch: - config: @@ -153490,7 +150032,7 @@ oslist: macos description: Launch executable: Dandelion - Wishes brought to you -.app -'321310': +"321310": installDir: Zen Fish SIM launch: - config: @@ -153498,37 +150040,35 @@ description: Launch executable: fishSIMbuild11.exe - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: linuxbuild11.x86 -'321330': +"321330": installDir: ENYO ARCADE launch: - config: oslist: windows description: Launch executable: ENYOArcade.exe -'321350': +"321350": installDir: Fairspace launch: - config: oslist: windows description: Launch executable: fairSpacegame.exe -'321360': +"321360": installDir: Primal Carnage Extinction launch: - - arguments: '-seekfreeloadingpcconsole' + - arguments: "-seekfreeloadingpcconsole" config: - osarch: '64' + osarch: "64" oslist: windows description: Launch - description_loc: - english: Launch - executable: Binaries\\Win64\\PrimalCarnageGame.exe + executable: "Binaries\\\\Win64\\\\PrimalCarnageGame.exe" type: default -'321370': +"321370": installDir: SignMotion launch: - config: @@ -153543,39 +150083,39 @@ oslist: linux description: Launch executable: SignMotion.x86_64 -'321390': +"321390": installDir: Zone 22 launch: - config: oslist: windows description: Launch executable: Z.exe -'32140': +"32140": installDir: Midnight Mysteries launch: - executable: Midnight Mysteries - Edgar Allan Poe Conspiracy.exe -'321400': +"321400": installDir: Supraball launch: - config: oslist: windows description: Launch - executable: launcher\\supraball-launcher.exe + executable: "launcher\\\\supraball-launcher.exe" type: default -'321410': +"321410": installDir: Command Modern Air Naval Operations launch: - description: Launch - executable: GameMenu_CMANO\\autorun.exe + executable: "GameMenu_CMANO\\\\autorun.exe" type: none -'321450': +"321450": installDir: Aquadelic GT launch: - description: Play executable: Run.exe - description: Configure Aquadelic GT executable: Launcher.exe -'321480': +"321480": installDir: Sigils of Elohim launch: - config: @@ -153590,22 +150130,22 @@ oslist: linux description: Launch executable: Sigils.x86 -'321490': +"321490": installDir: MotoG14_Compact launch: - config: - osarch: '32' + osarch: "32" description: Launch 32-bit executable: MotoGP14.exe - config: - osarch: '64' + osarch: "64" description: Launch 64-bit executable: MotoGP14X64.exe -'32150': +"32150": installDir: Everyday Genius SquareLogic launch: - executable: SquareLogic.exe -'321560': +"321560": installDir: TheSunAndMoon launch: - config: @@ -153616,24 +150156,24 @@ oslist: macos description: Launch executable: The Sun And Moon.app -'32160': +"32160": installDir: Zombie Bowl-O-Rama launch: - executable: ZombieBowl.exe -'321600': +"321600": installDir: The Flying Dutchman launch: - description: Launch executable: TheFlyingDutchman.exe -'321610': +"321610": installDir: Demonlisher launch: - description: Launch executable: demonlisher.exe -'321660': +"321660": installDir: MiningIndustries launch: - - arguments: '-debug' + - arguments: "-debug" config: oslist: windows description: Launch @@ -153646,12 +150186,12 @@ oslist: macos description: Launch executable: indminer.app -'321710': +"321710": installDir: Battle Of Europe launch: - description: Launch executable: boe.exe -'321800': +"321800": installDir: Icewind Dale Enhanced Edition launch: - config: @@ -153660,21 +150200,21 @@ executable: icewind.exe - config: oslist: macos - description: 'Icewind Dale: Enhanced Edition' + description: "Icewind Dale: Enhanced Edition" executable: IcewindDale.app - config: oslist: linux - description: 'Icewind Dale: Enhanced Edition' + description: "Icewind Dale: Enhanced Edition" executable: IcewindDale -'321830': +"321830": installDir: Cavern Kings launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: Cavern Kings.exe -'321840': +"321840": installDir: Rising Angels -Reborn- launch: - config: @@ -153684,36 +150224,36 @@ - config: oslist: macos description: Launch - executable: Rising Angels- Reborn.app\\Contents\\MacOS\\Rising Angels- Reborn + executable: "Rising Angels- Reborn.app\\\\Contents\\\\MacOS\\\\Rising Angels- Reborn" - config: oslist: linux description: Launch executable: Rising Angels- Reborn.sh -'321870': +"321870": installDir: Silence of the Sleep launch: - config: oslist: windows description: Launch executable: sots.exe -'321880': +"321880": installDir: Aveyond The Lost Orb launch: - description: Launch executable: Aveyond - The Lost Orb.exe -'321890': +"321890": installDir: Aveyond The Darkthrop Prophecy launch: - description: Launch executable: Aveyond - The Darkthrop Prophecy.exe -'321920': +"321920": installDir: Schein launch: - config: oslist: windows description: Launch executable: SCHEINwin32.exe -'321940': +"321940": installDir: Moorhuhn - Tiger & Chicken launch: - config: @@ -153721,7 +150261,7 @@ description: Launch executable: TigerAndChicken.exe type: default -'321950': +"321950": installDir: Yury launch: - config: @@ -153736,46 +150276,46 @@ oslist: macos description: Launch executable: Yury.app -'321960': +"321960": installDir: Might & Magic Heroes VII launch: - - arguments: '-uplay_steam_mode' + - arguments: "-uplay_steam_mode" config: - osarch: '64' + osarch: "64" oslist: windows description: Might and Magic Heroes VII - executable: Binaries\\Win64\\MMH7Game-Win64-Shipping.exe - workingdir: Binaries\\Win64\\ + executable: "Binaries\\\\Win64\\\\MMH7Game-Win64-Shipping.exe" + workingdir: "Binaries\\\\Win64\\\\" - config: - osarch: '64' + osarch: "64" oslist: windows description: Might and Magic Heroes VII - Editor - executable: Binaries\\Win64\\MMH7Editor-Win64-Shipping.exe - workingdir: Binaries\\Win64\\ -'321980': + executable: "Binaries\\\\Win64\\\\MMH7Editor-Win64-Shipping.exe" + workingdir: "Binaries\\\\Win64\\\\" +"321980": installDir: Hardland launch: - config: oslist: windows description: Launch Hardland executable: Hardland.exe -'32200': +"32200": installDir: MetalDrift launch: - executable: MetalDrift.exe -'322030': +"322030": installDir: Unlimited Escape launch: - description: Launch executable: unlimited_escape.exe -'322040': +"322040": installDir: Cooking Academy Collection launch: - config: oslist: windows description: Launch executable: Cooking Academy Collection.exe -'322080': +"322080": installDir: Disorder launch: - config: @@ -153786,19 +150326,19 @@ oslist: macos description: Launch Disorder executable: Disorder.app -'322110': +"322110": installDir: 20XX launch: - config: oslist: windows description: Launch executable: 20XX.exe -'322130': - installDir: Disney's Princess Enchanted Journey +"322130": + installDir: "Disney's Princess Enchanted Journey" launch: - description: Launch executable: play.exe -'322170': +"322170": installDir: Geometry Dash launch: - config: @@ -153809,7 +150349,7 @@ oslist: macos description: Launch executable: Geometry Dash.app -'322190': +"322190": installDir: SteamWorld Heist launch: - config: @@ -153824,10 +150364,9 @@ oslist: linux executable: Heist type: default -'3221903386': - unknown: true -'322210': - installDir: 'Guns, Gore and Cannoli' +"3221903386": {} +"322210": + installDir: "Guns, Gore and Cannoli" launch: - config: oslist: windows @@ -153837,7 +150376,7 @@ oslist: macos description: Launch executable: ggc.app -'322290': +"322290": installDir: Gurumin A Monstrous Adventure launch: - config: @@ -153848,64 +150387,44 @@ oslist: windows description: Skip Configuration and Play executable: game.exe -'322300': +"322300": installDir: The Repopulation launch: - description: Launch Launcher executable: Launcher.exe -'322330': - installDir: Don't Starve Together +"322330": + installDir: "Don't Starve Together" launch: - config: - osarch: '64' + osarch: "64" oslist: windows - description: Play Don't Starve Together - description_loc: - english: Play Don't Starve Together - schinese: 玩饥荒联机版 - tchinese: 玩飢荒聯機版 + description: "Play Don't Starve Together" executable: bin64/dontstarve_steam_x64.exe workingdir: bin64 - config: oslist: macos - description: Play Don't Starve Together - description_loc: - english: Play Don't Starve Together - schinese: 玩饥荒联机版 - tchinese: 玩飢荒聯機版 + description: "Play Don't Starve Together" executable: dontstarve_steam.app - config: - osarch: '64' + osarch: "64" oslist: linux - description: Play Don't Starve Together - description_loc: - english: Play Don't Starve Together - schinese: 玩饥荒联机版 - tchinese: 玩飢荒聯機版 + description: "Play Don't Starve Together" executable: bin64/dontstarve_steam_x64 workingdir: bin64 - config: oslist: windows - description: Play Don't Starve Together (32 Bit) - description_loc: - english: Play Don't Starve Together (32 Bit) - schinese: 玩饥荒联机版 (32 Bit) - tchinese: 玩飢荒聯機版 (32 Bit) + description: "Play Don't Starve Together (32 Bit)" executable: bin/dontstarve_steam.exe workingdir: bin - config: oslist: linux - description: Play Don't Starve Together (32 Bit) - description_loc: - english: Play Don't Starve Together (32 Bit) - schinese: 玩饥荒联机版 (32 Bit) - tchinese: 玩飢荒聯機版 (32 Bit) + description: "Play Don't Starve Together (32 Bit)" executable: bin/dontstarve_steam workingdir: bin nameLocalized: schinese: 饥荒联机版 tchinese: 饑荒聯機版 -'322410': +"322410": installDir: Bin Weevils Arty Arcade launch: - config: @@ -153916,19 +150435,19 @@ oslist: macos description: Launch executable: ArtyArcade.app -'322430': +"322430": installDir: BubonicOutbreak launch: - config: oslist: windows executable: BubonicBuild.exe type: default -'322440': +"322440": installDir: Red Goddess Inner World launch: - description: Launch executable: RG.exe -'322450': +"322450": installDir: FRAMED launch: - config: @@ -153948,7 +150467,7 @@ executable: application/Framed type: none workingdir: application -'322500': +"322500": installDir: SUPERHOT launch: - config: @@ -153992,7 +150511,7 @@ oslist: linux executable: superhot type: none -'322520': +"322520": installDir: Dynasty Warriors 8 - Empires launch: - config: @@ -154008,14 +150527,14 @@ koreana: 진・삼국무쌍7 Empires schinese: 真・三国无双7 Empires tchinese: 真・三國無雙7 Empires -'322540': +"322540": installDir: Galactic Inheritors launch: - config: oslist: windows description: Launch executable: Galactic Inheritors.exe -'322550': +"322550": installDir: Standpoint launch: - config: @@ -154030,7 +150549,7 @@ oslist: linux description: Launch executable: Standpoint -'322580': +"322580": installDir: Dungeon Lurk II - Leona launch: - config: @@ -154041,19 +150560,19 @@ oslist: linux description: Launch executable: DungeonLurk2.x86 -'322600': +"322600": installDir: PURE launch: - description: Launch executable: Pure.exe -'322630': +"322630": installDir: Mind Zero launch: - config: oslist: windows description: Launch executable: MIND.exe -'322680': +"322680": installDir: BLACKHOLE launch: - config: @@ -154071,7 +150590,7 @@ description: Launch executable: BLACKHOLE.app type: default -'322750': +"322750": installDir: Drifting Lands launch: - config: @@ -154082,46 +150601,44 @@ oslist: macos executable: drifting-lands.app type: default -'322770': +"322770": installDir: VanishingRealms launch: - config: oslist: windows executable: VanishingRealms.exe type: vr -'322780': +"322780": installDir: WorldsAdrift launch: - - arguments: >- - -show-screen-selector +appName worlds_adrift +projectName worlds_adrift +authProvider steam +linkProtocol RakNet - +assetDatabaseStrategy Local +localAssetDatabasePath ./Assets + - arguments: "-show-screen-selector +appName worlds_adrift +projectName worlds_adrift +authProvider steam +linkProtocol RakNet +assetDatabaseStrategy Local +localAssetDatabasePath ./Assets" config: oslist: windows description: Launch executable: worldsadrift.exe type: none -'322850': +"322850": installDir: Pro Cycling Manager 2015 launch: - config: oslist: windows description: Launch executable: PCM.exe -'322900': - installDir: 'War, the Game' +"322900": + installDir: "War, the Game" launch: - config: oslist: windows description: Launch executable: warthegame.exe -'322910': - installDir: 'Warhammer 40,000 Regicide' +"322910": + installDir: "Warhammer 40,000 Regicide" launch: - config: oslist: windows description: Launch executable: Warhammer 40K Regicide.exe -'322920': +"322920": installDir: theHunterPrimal launch: - config: @@ -154129,22 +150646,22 @@ description: Launch executable: launcher/launcher.exe workingdir: launcher -'322930': +"322930": installDir: aerofly RC 7 launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: aerofly-rc-7.exe -'322950': +"322950": installDir: Pure HoldEm launch: - config: oslist: windows description: Launch executable: MantisConfig.exe -'322970': +"322970": installDir: Subject 13 launch: - config: @@ -154155,10 +150672,10 @@ oslist: macos description: Launch executable: Subject13.app -'322980': +"322980": installDir: Gods vs Humans launch: - - arguments: '--show_config_dialog=yes' + - arguments: "--show_config_dialog=yes" config: oslist: windows description: Launch @@ -154167,8 +150684,8 @@ oslist: macos description: Launch executable: GodsVsHumans.app -'322990': - installDir: Black Viper Sophia's Fate +"322990": + installDir: "Black Viper Sophia's Fate" launch: - config: oslist: windows @@ -154178,12 +150695,12 @@ oslist: macos description: Launch executable: Black Viper.app -'3230': +"3230": installDir: Genesis Rising launch: - - executable: bin\\GenesisRising.exe + - executable: "bin\\\\GenesisRising.exe" workingdir: bin -'323000': +"323000": installDir: RoamingFortress launch: - config: @@ -154194,7 +150711,7 @@ oslist: windows description: Launch executable: Roaming Fortress.exe -'323020': +"323020": installDir: Destructamundo launch: - config: @@ -154205,7 +150722,7 @@ oslist: macos description: Launch executable: Destructamundo.app/Contents/MacOS/Destructamundo -'323040': +"323040": installDir: Laserlife launch: - config: @@ -154216,11 +150733,11 @@ oslist: macos description: Launch executable: Laserlife.app/Contents/MacOS/Laserlife -'323060': +"323060": installDir: Tharsis launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: tharsis.exe @@ -154229,7 +150746,7 @@ description: Launch executable: Tharsis.app/Contents/MacOS/osx type: none -'32310': +"32310": installDir: Indiana Jones and the Last Crusade launch: - config: @@ -154238,11 +150755,11 @@ - config: oslist: macos executable: The Last Crusade.app -'323190': +"323190": installDir: Frostpunk launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: Frostpunk.exe @@ -154251,13 +150768,13 @@ oslist: macos executable: Frostpunk.app type: default -'323220': +"323220": installDir: vagante launch: - description: Launch executable: vagante.exe type: none -'323240': +"323240": installDir: The World II launch: - config: @@ -154268,31 +150785,31 @@ oslist: macos description: Launch executable: world2_mac.app -'323250': +"323250": installDir: Hexus launch: - description: Launch executable: Hexus.exe -'323260': - installDir: Robin's Island Adventure +"323260": + installDir: "Robin's Island Adventure" launch: - description: Launch executable: game.exe -'323270': +"323270": installDir: Jane Angel Templar Mystery launch: - description: Launch executable: Jane Angel - Templar Mystery.exe -'323280': - installDir: Sea Legends Phantasmal Light Collector's Edition +"323280": + installDir: "Sea Legends Phantasmal Light Collector's Edition" launch: - description: Launch executable: SeaLegends_PhantasmalLight_CE.exe -'32330': +"32330": installDir: LEGO Indiana Jones The Original Adventures launch: - executable: LEGOIndy.exe -'323320': +"323320": installDir: GrowHome launch: - config: @@ -154302,19 +150819,19 @@ type: default - arguments: LC_ALL=C %command% config: - osarch: '64' + osarch: "64" oslist: linux description: Launch Grow Home executable: GrowHome.x86_64 type: default - arguments: LC_ALL=C %command% config: - osarch: '32' + osarch: "32" oslist: linux description: Launch Grow Home executable: GrowHome.x86 type: default -'323370': +"323370": installDir: TERA launch: - config: @@ -154322,7 +150839,7 @@ description: Launch executable: launcher.exe type: none -'323380': +"323380": installDir: The Magic Circle launch: - config: @@ -154334,16 +150851,16 @@ description: Launch executable: TheMagicCircle.app - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: TheMagicCircle.x86_64 - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: TheMagicCircle.x86 -'32340': +"32340": installDir: LOOM launch: - config: @@ -154352,8 +150869,8 @@ - config: oslist: macos executable: Loom.app -'323430': {} -'323450': +"323430": {} +"323450": installDir: Alphadia Genesis launch: - config: @@ -154362,19 +150879,19 @@ executable: alphak.exe nameLocalized: japanese: アルファディア ジェネシス -'323460': +"323460": installDir: Raiden IV OverKill launch: - description: Launch executable: game.exe -'323470': +"323470": installDir: DB Xenoverse launch: - executable: DBXV.exe -'323490': +"323490": installDir: Oblivious Garden ~Carmina Burana launch: - - arguments: '-dbstyle=d3d' + - arguments: "-dbstyle=d3d" config: oslist: windows description: Launch @@ -154382,11 +150899,11 @@ nameLocalized: schinese: 遗忘花园 Oblivious Garden ~Carmina Burana tchinese: 遺忘花園 Oblivious Garden ~Carmina Burana -'32350': +"32350": installDir: Star Wars Starfighter launch: - executable: Starfighter.exe -'323580': +"323580": installDir: Jotun launch: - config: @@ -154404,29 +150921,29 @@ description: Launch executable: Jotun.x86 type: none - - arguments: '-force-d3d9' + - arguments: "-force-d3d9" config: oslist: windows description: Play Jotun (Direct3D 9) executable: Jotun.exe type: none -'32360': +"32360": installDir: The Secret of Monkey Island Special Edition launch: - executable: MISE.exe -'323610': +"323610": installDir: 911 First Responders launch: - description: Launch executable: em4.exe -'323630': +"323630": installDir: Ubinota launch: - config: oslist: windows description: Launch executable: Ubinota.exe -'323670': +"323670": installDir: Super Indie Karts launch: - config: @@ -154438,49 +150955,49 @@ description: Launch executable: SuperIndieKarts.app - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: SuperIndieKarts.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: SuperIndieKarts.x86_64 type: none -'323680': +"323680": installDir: Caffeine launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: In DirectX 11 Mode - executable: \\WindowsNoEditor\\CaffeineGame\\Binaries\\Win64\\CaffeineGame.exe + executable: "\\\\WindowsNoEditor\\\\CaffeineGame\\\\Binaries\\\\Win64\\\\CaffeineGame.exe" type: option1 - - arguments: '-DX12' + - arguments: "-DX12" config: oslist: windows description: In DirectX 12 Mode (Windows 10 Only) - executable: \\WindowsNoEditor\\CaffeineGame\\Binaries\\Win64\\CaffeineGame.exe + executable: "\\\\WindowsNoEditor\\\\CaffeineGame\\\\Binaries\\\\Win64\\\\CaffeineGame.exe" type: option2 - config: oslist: macos - executable: \\CaffeineGame.app + executable: "\\\\CaffeineGame.app" type: none - - arguments: '-opengl4' + - arguments: "-opengl4" config: oslist: linux description: Start In OpenGL 4 Mode Recommended - executable: \\LinuxNoEditor\\CaffeineGame\\Binaries\\Linux\\CaffeineGame + executable: "\\\\LinuxNoEditor\\\\CaffeineGame\\\\Binaries\\\\Linux\\\\CaffeineGame" type: none - - arguments: '-opengl3' + - arguments: "-opengl3" config: oslist: linux description: Start In OpenGL 3 Mode - executable: \\LinuxNoEditor\\CaffeineGame\\Binaries\\Linux\\CaffeineGame + executable: "\\\\LinuxNoEditor\\\\CaffeineGame\\\\Binaries\\\\Linux\\\\CaffeineGame" type: none -'32370': +"32370": installDir: swkotor launch: - config: @@ -154489,7 +151006,7 @@ - config: oslist: macos executable: Knights of the Old Republic.app -'323700': +"323700": installDir: PoltergeistAPixelatedHorror launch: - config: @@ -154501,16 +151018,16 @@ description: Launch executable: Poltergeist.app - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: Poltergeist.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Poltergeist.x86_64 -'323720': +"323720": installDir: Decay - The Mare launch: - config: @@ -154525,20 +151042,20 @@ oslist: macos description: Launch executable: Decay - The Mare.app -'323780': +"323780": installDir: Fireworks Simulator launch: - config: oslist: windows description: Launch executable: Grossfeuerwerksimulator.exe -'32380': +"32380": installDir: Star Wars Jedi Knight launch: - - arguments: '-windowGUI' + - arguments: "-windowGUI" executable: JediKnight.exe type: none -'323850': +"323850": installDir: Move or Die launch: - config: @@ -154557,13 +151074,13 @@ oslist: macos description: Launch executable: start_osx32.sh -'32390': +"32390": installDir: Jedi Knight Mysteries of the Sith launch: - - arguments: '-windowGUI' + - arguments: "-windowGUI" executable: JediKnightM.exe type: none -'323900': +"323900": installDir: March of WarFace Off launch: - config: @@ -154574,20 +151091,20 @@ oslist: macos description: Launch executable: game.app -'32400': +"32400": installDir: Dark Forces launch: - - arguments: \"Game\\\\dark.exe\" + - arguments: "\\\"Game\\\\\\\\dark.exe\\\"" config: oslist: windows - executable: DosBox\\\\dosbox.exe + executable: "DosBox\\\\\\\\dosbox.exe" type: none - config: oslist: macos executable: Star Wars Dark Forces.app type: none -'324050': {} -'324060': +"324050": {} +"324060": installDir: PlanetAncyraChronicles launch: - config: @@ -154595,7 +151112,7 @@ description: Launch executable: Binaries/Win32/UDK.exe type: none -'324070': +"324070": installDir: iO launch: - config: @@ -154610,7 +151127,7 @@ oslist: linux description: Launch executable: iO_Linux_Full.x86 -'324080': +"324080": installDir: RisingWorld launch: - config: @@ -154628,7 +151145,7 @@ description: Java Version executable: risingworld type: none - - arguments: '-platform=steam' + - arguments: "-platform=steam" config: betakey: unity oslist: windows @@ -154636,7 +151153,7 @@ executable: _New Version/RisingWorld.exe type: none workingdir: _New Version - - arguments: '-platform=steam' + - arguments: "-platform=steam" config: betakey: unity oslist: linux @@ -154644,7 +151161,7 @@ executable: _New Version/RisingWorld.x64 type: none workingdir: _New Version - - arguments: '-platform=steam' + - arguments: "-platform=steam" config: betakey: unity oslist: macos @@ -154652,23 +151169,23 @@ executable: _New Version/RisingWorld.app/Contents/MacOS/Rising World type: none workingdir: _New Version -'324090': +"324090": installDir: Football Club Simulator launch: - description: Launch executable: FCS.exe -'32410': +"32410": installDir: Lucidity launch: - executable: Lucidity.exe -'324110': +"324110": installDir: Moto Racer Collection launch: - config: oslist: windows description: Launch executable: motoracer.exe -'324120': +"324120": installDir: Verde Station launch: - config: @@ -154680,12 +151197,12 @@ description: Launch executable: VerdeStation.app - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: VerdeStation.x86_64 - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: VerdeStation.x86 @@ -154695,14 +151212,14 @@ description: Crazy Early Vive Pre-Alpha executable: VerdeStationVR.exe type: vr -'324140': +"324140": installDir: Kalimba launch: - config: oslist: windows description: Launch executable: Kalimba.exe -'324160': +"324160": installDir: CLANNAD launch: - config: @@ -154714,7 +151231,7 @@ oslist: windows executable: SiglusEngine_Steam.exe type: default -'324170': +"324170": installDir: Pyrite Heart launch: - config: @@ -154724,12 +151241,12 @@ - config: oslist: macos description: Launch - executable: Pyrite Heart.app\\Contents\\MacOS\\Pyrite Heart + executable: "Pyrite Heart.app\\\\Contents\\\\MacOS\\\\Pyrite Heart" - config: oslist: linux description: Launch executable: Pyrite Heart.sh -'324190': +"324190": installDir: CodeSpells launch: - config: @@ -154741,15 +151258,15 @@ description: Launch executable: codespells.app - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: codespells.x86_64 -'32420': +"32420": installDir: Star Wars The Clone Wars launch: - executable: RepublicHeroesLauncher.exe -'324240': +"324240": installDir: I Will Escape launch: - config: @@ -154776,7 +151293,7 @@ oslist: macos description: change keybinding and resolution executable: LaunchConfig -'324260': +"324260": installDir: VoidExpanse launch: - config: @@ -154789,17 +151306,17 @@ executable: VoidExpanse.app type: none - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: VoidExpanse.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: VoidExpanse.x86_64 -'324270': - installDir: Revenge Rhobar's myth +"324270": + installDir: "Revenge Rhobar's myth" launch: - config: oslist: windows @@ -154807,12 +151324,12 @@ executable: RevengeLauncher.exe - config: betakey: devbuild - osarch: '64' + osarch: "64" oslist: windows description: Revenge UE4 executable: Revenge.exe type: option1 -'32430': +"32430": installDir: Star Wars The Force Unleashed launch: - config: @@ -154821,42 +151338,42 @@ - config: oslist: macos executable: Star Wars The Force Unleashed.app -'324310': +"324310": installDir: Bus Simulator 16 launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: BusSimulator16.exe type: none - config: - osarch: '64' + osarch: "64" oslist: macos description: Launch executable: BusSimulator16.app type: none -'324360': +"324360": installDir: TOTM launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: Totem.exe -'324390': +"324390": installDir: The Body Changer launch: - config: oslist: windows description: Launch executable: TheBodyChanger.exe - - arguments: ' > TheBodyChanger.log 2>&1' + - arguments: " > TheBodyChanger.log 2>&1" config: oslist: linux description: Launch - executable: ./TheBodyChanger -'32440': + executable: "./TheBodyChanger" +"32440": installDir: Lego Star Wars Saga launch: - config: @@ -154867,7 +151384,7 @@ oslist: macos executable: LEGO Star Wars Saga.app type: none -'324400': +"324400": installDir: Pocket God vs Desert Ashes launch: - config: @@ -154877,8 +151394,8 @@ - config: oslist: macos description: Launch - executable: PocketGodVsDesertAshes.app\\Contents\\MacOS\\PocketGodVsDesertAshes -'324420': + executable: "PocketGodVsDesertAshes.app\\\\Contents\\\\MacOS\\\\PocketGodVsDesertAshes" +"324420": installDir: Desert Ashes launch: - config: @@ -154888,9 +151405,9 @@ - config: oslist: macos description: Launch - executable: DesertAshes.app\\Contents\\MacOS\\DesertAshes - workingdir: DesertAshes.app\\Contents\\MacOS -'324450': + executable: "DesertAshes.app\\\\Contents\\\\MacOS\\\\DesertAshes" + workingdir: "DesertAshes.app\\\\Contents\\\\MacOS" +"324450": installDir: Earth Under Siege launch: - config: @@ -154901,7 +151418,7 @@ oslist: windows description: Launch executable: eus.exe -'324470': +"324470": installDir: SinaRun launch: - config: @@ -154916,48 +151433,46 @@ oslist: linux executable: SinaRun.x86 type: none -'32450': +"32450": installDir: Lego Indiana Jones 2 launch: - executable: LEGOIndy2.exe -'324510': +"324510": installDir: Boundless launch: - config: - osarch: '64' + osarch: "64" oslist: macos description: Launch executable: Boundless.app type: none - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: boundless.exe type: none - config: - osarch: '64' + osarch: "64" oslist: windows - ownsdlc: '331130' + ownsdlc: "331130" description: Launch World Builder - executable: worldbuilder\\boundlessworldbuilder.exe + executable: "worldbuilder\\\\boundlessworldbuilder.exe" type: none - config: - osarch: '64' + osarch: "64" oslist: macos - ownsdlc: '331130' + ownsdlc: "331130" description: Launch World Builder executable: worldbuilder/Boundless World Builder.app type: none -'324520': +"324520": installDir: Defense Zone 3 Ultra HD launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch - description_loc: - english: Launch executable: Defense Zone 3 Ultra HD.exe type: none - config: @@ -154971,14 +151486,12 @@ executable: Defense Zone 3 Ultra HD.x86_64 type: none - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch - description_loc: - english: Launch executable: /x86/Defense Zone 3 Ultra HD.exe type: none -'324570': +"324570": installDir: HaloSpartanStrike launch: - config: @@ -154986,11 +151499,11 @@ description: Launch executable: Game.exe workingdir: Data -'32460': +"32460": installDir: Monkey2 launch: - executable: Monkey2.exe -'324610': +"324610": installDir: The Shopkeeper launch: - config: @@ -155005,16 +151518,16 @@ oslist: linux description: Launch executable: TheShopkeeper.x86 -'324650': +"324650": installDir: GeminiHeroesReborn launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: GeminiHeroesReborn.exe type: none -'324680': +"324680": installDir: Impossible Creatures launch: - config: @@ -155029,12 +151542,12 @@ oslist: windows description: Launch Impossible Creatures Editor executable: MissionEditor.exe - - arguments: '-modname Insect' + - arguments: "-modname Insect" config: oslist: windows description: Launch Impossible Creatures Insect Invasion executable: IC.exe - - arguments: '-window' + - arguments: "-window" config: oslist: windows description: Launch Impossible Creatures Windowed @@ -155043,34 +151556,34 @@ - config: oslist: windows description: Launch Impossible Creatures Workshop Tool - executable: WorkshopTool\\ICWorkshopTool.exe + executable: "WorkshopTool\\\\ICWorkshopTool.exe" type: none - config: oslist: windows description: Launch Impossible Creatures Workshop Manual - executable: WorkshopTool\\IC_Wokshop_Manual_v1.0.pdf + executable: "WorkshopTool\\\\IC_Wokshop_Manual_v1.0.pdf" type: none -'32470': +"32470": installDir: Star Wars Empire at War launch: - executable: runme.exe - description: Forces of Corruption executable: runme2.exe -'324710': +"324710": installDir: To Be or Not To Be launch: - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: To Be or Not To Be.x86_64 - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: To Be or Not To Be.x86 - config: - osarch: '64' + osarch: "64" oslist: macos description: Launch executable: To Be or Not To Be.app @@ -155078,16 +151591,16 @@ oslist: windows description: Launch executable: To Be or Not To Be.exe -'324730': +"324730": installDir: Caverns of the Snow Witch launch: - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Caverns of the Snow Witch.x86_64 - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: Caverns of the Snow Witch.x86 @@ -155099,21 +151612,21 @@ oslist: windows description: Launch executable: Caverns of the Snow Witch.exe -'324740': +"324740": installDir: The Warlock of Firetop Mountain launch: - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: The Warlock of Firetop Mountain.x86_64 - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: The Warlock of Firetop Mountain.x86 - config: - osarch: '64' + osarch: "64" oslist: macos description: Launch executable: The Warlock of Firetop Mountain.app @@ -155121,7 +151634,7 @@ oslist: windows description: Launch executable: The Warlock of Firetop Mountain.exe -'324750': +"324750": installDir: StuntMANIA Reloaded launch: - config: @@ -155132,7 +151645,7 @@ oslist: macos description: Launch executable: StuntMANIA Reloaded.app -'324760': +"324760": installDir: Monster Truck Destruction launch: - config: @@ -155147,48 +151660,48 @@ oslist: linux description: Launch executable: MTD.x86_64 -'324770': +"324770": installDir: Experience112 launch: - config: oslist: windows description: Launch executable: experience112.exe -'324800': +"324800": installDir: Shadow Warrior 2 launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Default executable: ShadowWarrior2.exe type: default -'324810': +"324810": installDir: TOXIKK launch: - - arguments: '?FullscreenLaunch' + - arguments: "?FullscreenLaunch" config: oslist: windows - executable: \\Binaries\\ToxikkLauncher.exe + executable: "\\\\Binaries\\\\ToxikkLauncher.exe" type: default - - arguments: '?FullscreenLaunch?automatchmaking' + - arguments: "?FullscreenLaunch?automatchmaking" config: oslist: windows description: Quick Match - executable: \\Binaries\\ToxikkLauncher.exe + executable: "\\\\Binaries\\\\ToxikkLauncher.exe" type: none - arguments: editor ?FullscreenLaunch config: oslist: windows - ownsdlc: '503270' + ownsdlc: "503270" description: SDKK Editor - executable: \\Binaries\\ToxikkLauncher.exe + executable: "\\\\Binaries\\\\ToxikkLauncher.exe" type: none -'32500': +"32500": installDir: Star Wars The Force Unleashed 2 launch: - executable: SWTFU2.exe -'325060': +"325060": installDir: Parallax launch: - config: @@ -155203,7 +151716,7 @@ oslist: linux description: Launch Linux executable: launch.sh -'325090': +"325090": installDir: deepdungeonsofdoom launch: - config: @@ -155214,16 +151727,16 @@ oslist: macos description: Launch executable: ddd.app -'32510': +"32510": installDir: Lego Star Wars III - The Clone Wars launch: - executable: LEGOCloneWars.exe -'325110': +"325110": installDir: Save the Furries launch: - description: Launch executable: SaveTheFurries.exe -'325120': +"325120": installDir: Notch The Innocent LunA Eclipsed SinnerS launch: - config: @@ -155231,9 +151744,9 @@ description: Launch executable: notch.exe nameLocalized: - schinese: '刻痕 Notch - The Innocent LunA: Eclipsed SinnerS' - tchinese: '刻痕 Notch - The Innocent LunA: Eclipsed SinnerS' -'325150': + schinese: "刻痕 Notch - The Innocent LunA: Eclipsed SinnerS" + tchinese: "刻痕 Notch - The Innocent LunA: Eclipsed SinnerS" +"325150": installDir: Run or Die launch: - config: @@ -155254,7 +151767,7 @@ oslist: windows executable: Run or Die.exe type: default -'325160': +"325160": installDir: Bik launch: - config: @@ -155266,16 +151779,16 @@ description: Launch executable: Bik.app - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: Bik.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Bik.x86_64 -'325210': +"325210": installDir: Eternal Winter launch: - config: @@ -155288,7 +151801,7 @@ description: Launch executable: Arctico.app type: none -'325300': +"325300": installDir: BEARZERKERS launch: - config: @@ -155299,7 +151812,7 @@ oslist: macos description: Launch executable: bearzerkers.app -'325320': +"325320": installDir: Mythos The Beginning launch: - config: @@ -155311,7 +151824,7 @@ description: Launch executable: Mythos The Beginning.app type: none -'325370': +"325370": installDir: Nova-111 launch: - config: @@ -155322,25 +151835,25 @@ oslist: macos description: Launch executable: Nova-111.app -'325420': +"325420": installDir: Homebrew - Patent Unknown launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Homebrew V15.1 executable: HB.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows - description: '[BETA] Version' + description: "[BETA] Version" executable: BETA/HB-beta.exe type: option3 - description: Open Warehouse - executable: 'https://warehouse.homebrewgame.com/' + executable: "https://warehouse.homebrewgame.com/" type: none -'325430': +"325430": installDir: Metaverse launch: - config: @@ -155351,14 +151864,14 @@ oslist: macos description: Launch executable: Metaverse.app -'325470': +"325470": installDir: 1953 NATO vs Warsaw Pact launch: - config: oslist: windows description: Launch executable: 1953 Setup.exe -'325520': +"325520": installDir: Fire launch: - config: @@ -155370,43 +151883,43 @@ description: Launch executable: Fire.app - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Fire.x86_64 - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: Fire.x86 - config: oslist: windows description: Play the Prototype - executable: BonusContent\\Prototype\\fire_prototype.exe - workingdir: BonusContent\\Prototype + executable: "BonusContent\\\\Prototype\\\\fire_prototype.exe" + workingdir: "BonusContent\\\\Prototype" - config: - osarch: '64' + osarch: "64" oslist: macos description: Play the Prototype - executable: BonusContent\\Prototype\\Fire Prototype.app - workingdir: BonusContent\\Prototype + executable: "BonusContent\\\\Prototype\\\\Fire Prototype.app" + workingdir: "BonusContent\\\\Prototype" - config: - osarch: '64' + osarch: "64" oslist: linux description: Play the Prototype - executable: BonusContent\\Prototype\\start - workingdir: BonusContent\\Prototype -'325600': + executable: "BonusContent\\\\Prototype\\\\start" + workingdir: "BonusContent\\\\Prototype" +"325600": installDir: Sword Coast Legends launch: - config: - osarch: '64' + osarch: "64" oslist: macos description: Launch executable: SwordCoast.app type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: SwordCoast.x86_64 @@ -155415,7 +151928,7 @@ oslist: windows executable: SwordCoast.exe type: default -'325610': +"325610": installDir: Total War Attila launch: - config: @@ -155432,7 +151945,7 @@ description: Launch executable: Attila type: none -'325630': +"325630": installDir: Arms Dealer launch: - config: @@ -155442,9 +151955,9 @@ - config: oslist: windows description: Arms Dealer Mod Editor - executable: Editor\\Country_Add_App.exe + executable: "Editor\\\\Country_Add_App.exe" type: editor -'325730': +"325730": installDir: The Hive launch: - config: @@ -155453,12 +151966,12 @@ executable: hive.exe type: none - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: hive.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: hive.x86_64 @@ -155466,7 +151979,7 @@ oslist: macos description: Launch executable: hive.app -'325790': +"325790": installDir: Fallen A2P Protocol launch: - config: @@ -155481,7 +151994,7 @@ oslist: linux description: Launch executable: Fallen.x86 -'325860': +"325860": installDir: Fat Chicken launch: - config: @@ -155496,14 +152009,14 @@ oslist: linux description: Launch executable: FatChicken.x86 -'325870': +"325870": installDir: Clash of Puppets launch: - config: oslist: windows description: Launch executable: CoP.exe -'325880': +"325880": installDir: Crystal Catacombs launch: - config: @@ -155518,7 +152031,7 @@ oslist: linux description: Launch executable: Crystal Catacombs.x86 -'325930': +"325930": installDir: Viking Squad launch: - config: @@ -155529,13 +152042,13 @@ - config: oslist: macos description: Launch - executable: VikingSquad.app\\Contents\\MacOS\\VikingSquad + executable: "VikingSquad.app\\\\Contents\\\\MacOS\\\\VikingSquad" type: default -'3260': +"3260": installDir: Safecracker 2 launch: - executable: Safecracker.exe -'326060': +"326060": installDir: Starlight Drifter launch: - config: @@ -155550,22 +152063,22 @@ oslist: macos description: Launch executable: Starlight Drifter.app -'32610': +"32610": installDir: Delta Force Xtreme 2 launch: - executable: dfx2.exe - - description: 'Launch Delta Force: Xtreme 2 Editor' + - description: "Launch Delta Force: Xtreme 2 Editor" executable: dfx2med.exe -'326110': +"326110": installDir: DOTLC launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: Defenders.exe type: default -'326120': +"326120": installDir: Horizon Shift launch: - config: @@ -155574,7 +152087,7 @@ executable: speedlauncher.exe - description: Settings executable: Horizon Shift.exe -'326130': +"326130": installDir: Monument Builders Alcatraz launch: - config: @@ -155585,7 +152098,7 @@ oslist: macos description: Launch executable: Alcatraz.app -'326150': +"326150": installDir: DeathSkidMarks launch: - config: @@ -155598,40 +152111,40 @@ description: Launch (old version) executable: DeathSkidMarks.exe type: none -'326160': +"326160": installDir: SotA launch: - config: oslist: windows executable: Shroud of the Avatar.exe - workingdir: . - - arguments: '-popupwindow' + workingdir: "." + - arguments: "-popupwindow" config: oslist: windows description: Borderless Fullscreen Mode executable: Shroud of the Avatar.exe - workingdir: . + workingdir: "." - config: oslist: macos executable: Shroud of the Avatar.app - config: - osarch: '32' + osarch: "32" oslist: linux executable: ShroudOfTheAvatar.sh type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: ShroudOfTheAvatar.sh type: none -'326180': +"326180": installDir: Sinister City launch: - config: oslist: windows description: Launch executable: SinisterCity.exe -'326190': +"326190": installDir: Alchemy Mysteries Prague Legends launch: - config: @@ -155642,29 +152155,29 @@ oslist: linux description: Launch executable: Alchemy -'32620': +"32620": installDir: Delta Force launch: - executable: Df.exe -'326230': +"326230": installDir: Smugglers 5 Invasion launch: - description: Launch executable: Smugglers5Invasion.exe -'32630': +"32630": installDir: Delta Force 2 launch: - executable: Df2.exe - description: Launch Delta Force 2 - Mission Editor executable: Df2med.exe -'326340': +"326340": installDir: River City Super Sports Challenge All Star Special launch: - config: oslist: windows executable: AllStarsSpecial.exe type: none -'326360': +"326360": installDir: Warspear Online MMORPG launch: - config: @@ -155678,18 +152191,18 @@ executable: warspear.app/Contents/MacOS/Warspear Online Steam type: default - config: - osarch: '32' + osarch: "32" oslist: linux description: Linux32 build executable: warspear_32 type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: Linux64 build executable: warspear_64 type: default -'326380': +"326380": installDir: Mystery of Neuschwanstein launch: - config: @@ -155700,13 +152213,13 @@ oslist: macos description: Launch executable: mon_osx.app -'32640': +"32640": installDir: Delta Force Land Warrior launch: - executable: Dflw.exe - - description: 'Launch Delta Force: Land Warrior - Mission Editor' + - description: "Launch Delta Force: Land Warrior - Mission Editor" executable: Dflwmedc.exe -'326410': +"326410": installDir: Windward launch: - config: @@ -155720,15 +152233,15 @@ - config: oslist: linux description: Launch - executable: ./Windward.x86 -'326420': + executable: "./Windward.x86" +"326420": installDir: Sam Glyph Private Eye! launch: - config: oslist: windows description: Launch executable: SG.exe -'326460': +"326460": installDir: ShellShock Live launch: - config: @@ -155740,16 +152253,16 @@ description: Launch executable: ShellShockLive.app - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: ShellShockLive.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: ShellShockLive.x86_64 -'326470': +"326470": installDir: Space Warp launch: - config: @@ -155760,7 +152273,7 @@ oslist: macos description: Launch executable: Space Warp.app -'326480': +"326480": installDir: If My Heart Had Wings launch: - config: @@ -155772,16 +152285,16 @@ betakey: demotest oslist: windows description: LoveKami DEMO - executable: LoveKami_DEMO\\AdvHD.exe + executable: "LoveKami_DEMO\\\\AdvHD.exe" type: option1 workingdir: LoveKami_DEMO -'32650': +"32650": installDir: Delta Force Task Force Dagger launch: - executable: DFTFD.exe - - description: 'Launch Delta Force: Task Force Dagger - Mission Editor' + - description: "Launch Delta Force: Task Force Dagger - Mission Editor" executable: dftfdmed.exe -'326520': +"326520": installDir: Chime Sharp launch: - config: @@ -155799,41 +152312,41 @@ description: Launch executable: ChimeSharp.app type: none -'326590': +"326590": installDir: Cinemaware Anthology 1986-1991 launch: - config: oslist: windows description: Launch executable: Anthology.exe -'32660': +"32660": installDir: Delta Force Xtreme launch: - executable: DFX.EXE - description: Launch Delta Force Xtreme Editor executable: dfxmed.exe -'326630': +"326630": installDir: Club Manager 2015 launch: - arguments: tor description: Launch executable: Start.exe -'326650': - installDir: ' The Legend of Candlewind' +"326650": + installDir: " The Legend of Candlewind" launch: - arguments: candle config: oslist: windows description: Launch executable: Candlewind.exe -'326670': +"326670": installDir: Warhammer Quest launch: - config: oslist: windows description: Launch executable: WarhammerQuest.exe - - arguments: '-force-opengl' + - arguments: "-force-opengl" config: oslist: linux description: Launch @@ -155843,33 +152356,33 @@ oslist: macos description: Launch executable: WarhammerQuest.app -'32670': +"32670": installDir: Delta Force Black Hawk Down launch: - executable: dfbhd.exe - description: Black Hawk Down - Mission Editor executable: dfbhdmed.exe -'326720': +"326720": installDir: Instant Dungeon! launch: - config: oslist: windows description: Launch executable: bin/instantdungeon.exe -'326730': +"326730": installDir: Whisper of a Rose launch: - description: Play Whisper of a Rose executable: game.exe - config: - ownsdlc: '333410' + ownsdlc: "333410" description: View Walkthrough executable: WhisperofaRose_StrategyGuide2015_FULL.pdf -'326840': +"326840": installDir: HeartnSlash launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: HeartnSlash.exe @@ -155883,12 +152396,12 @@ description: Launch executable: heartnslash - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: HeartnSlash64.exe type: default -'326950': +"326950": installDir: Sword of Asumi launch: - config: @@ -155903,13 +152416,13 @@ oslist: macos description: Launch executable: Sword of Asumi.app -'326960': +"326960": installDir: KillingFloor launch: - config: oslist: windows description: Launch - executable: '' + executable: "" - config: oslist: linux description: Launch @@ -155919,20 +152432,20 @@ oslist: macos description: KillingFloor executable: modstart.sh -'326990': +"326990": installDir: Deep Eclipse launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: DeepEclipse.exe -'3270': +"3270": installDir: Painkiller Overdose launch: - - executable: bin\\Overdose.exe + - executable: "bin\\\\Overdose.exe" workingdir: bin -'327000': +"327000": installDir: Infinite Game Works Episode 1 launch: - config: @@ -155947,12 +152460,12 @@ oslist: linux executable: Infinite Game Works Ep1.sh type: none -'327010': +"327010": installDir: Motorama launch: - description: Launch executable: Motorama.exe -'327030': +"327030": installDir: WormsWMD launch: - config: @@ -155961,23 +152474,23 @@ executable: Worms W.M.D.exe type: default - config: - osarch: '64' + osarch: "64" oslist: macos executable: Worms W.M.D.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: Play Worms W.M.D executable: Worms W.M.Dx64 type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: Worms W.M.D (Run.sh) executable: Run.sh type: option1 -'327060': +"327060": installDir: Feist launch: - config: @@ -155990,37 +152503,37 @@ description: Launch executable: Feist.exe - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: Feist.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Feist.x86_64 -'327070': +"327070": installDir: Gloria Victis launch: - - arguments: '-runUsingSteam' + - arguments: "-runUsingSteam" description: Launch executable: gv.exe type: none -'327090': +"327090": installDir: Out of Reach launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: OutOfReach.exe - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: OutOfReach.x86_64 - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: OutOfReach.x84 @@ -156028,22 +152541,22 @@ oslist: macos description: Launch executable: OutOfReach.app -'32710': +"32710": installDir: Armored Fist 3 launch: - executable: AF3.EXE - description: Launch Armored Fist 3 - Mission Editor executable: AF3MED.EXE -'327140': +"327140": installDir: Tilt Brush launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: tiltbrush.exe type: vr -'327150': +"327150": installDir: Deadstone launch: - config: @@ -156056,23 +152569,23 @@ executable: Deadstone.app type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Deadstone.x86_64 -'32720': +"32720": installDir: F-16 Multirole Fighter launch: - executable: F16.EXE - description: Launch Fixed Wing Editor executable: FWE.EXE -'327210': +"327210": installDir: Cheesecake Cool Conrad launch: - description: Launch executable: Cheesecake Cool Conrad.exe -'327220': - installDir: Anna's Quest +"327220": + installDir: "Anna's Quest" launch: - config: oslist: windows @@ -156083,67 +152596,59 @@ description: Visionaire Configuration Tool executable: VisionaireConfigurationTool.exe - config: - osarch: '64' + osarch: "64" oslist: macos description: Launch - executable: Anna's Quest.app - workingdir: ./ + executable: "Anna's Quest.app" + workingdir: "./" - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: start - config: oslist: windows - description: 'Bonus: Prologue' + description: "Bonus: Prologue" executable: bonus content/Prologue/ANNAS_QUEST_PROLOGUE.exe - config: - betakey: 'experimental, testing' - osarch: '64' + betakey: "experimental, testing" + osarch: "64" oslist: windows - description: Anna's Quest (64 Bit) - description_loc: - english: Anna's Quest (64 Bit) + description: "Anna's Quest (64 Bit)" executable: anna_64.exe type: option1 - config: - betakey: 'experimental, testing' + betakey: "experimental, testing" oslist: windows executable: VisionaireConfigurationTool.bat type: config - config: - betakey: 'experimental, testing' + betakey: "experimental, testing" oslist: macos - executable: Anna's Quest.app/Contents/Applications/visconfig.app + executable: "Anna's Quest.app/Contents/Applications/visconfig.app" type: config - config: - betakey: 'experimental, testing' - osarch: '64' + betakey: "experimental, testing" + osarch: "64" oslist: linux executable: configure type: config - config: - betakey: 'experimental, testing' + betakey: "experimental, testing" oslist: windows description: Bonus Content - description_loc: - english: Bonus Content executable: open_bonus_win.bat - config: - betakey: 'experimental, testing' + betakey: "experimental, testing" oslist: macos description: Bonus Content - description_loc: - english: Bonus Content executable: open_bonus_osx.sh - config: - betakey: 'experimental, testing' + betakey: "experimental, testing" oslist: linux description: Bonus Content - description_loc: - english: Bonus Content executable: open_bonus_lin.sh -'327260': +"327260": installDir: Life of Pixel launch: - config: @@ -156159,13 +152664,13 @@ oslist: linux description: Launch executable: lifeofpixel.x86 -'32730': +"32730": installDir: F-22 Lightning 3 launch: - executable: L3.exe - description: Launch Fixed-Wing Mission Editor executable: Fwe.exe -'327310': +"327310": installDir: The Marvellous Miss Take launch: - config: @@ -156176,208 +152681,208 @@ oslist: macos description: Launch executable: Miss Take.app -'327370': +"327370": installDir: Brink of Consciousness The Lonely Hearts Murders launch: - config: oslist: windows description: Launch executable: BrinkOfConsciousness_LonelyHeartsMurdersCE.exe -'327380': - installDir: Sid Meier's Pirates! Gold +"327380": + installDir: "Sid Meier's Pirates! Gold" launch: - - arguments: '-conf dosbox_smpiratesgold.conf -conf dosbox_smpiratesgold_launch_windows.conf -noconsole' + - arguments: "-conf dosbox_smpiratesgold.conf -conf dosbox_smpiratesgold_launch_windows.conf -noconsole" config: oslist: windows description: Launch - executable: dosbox_windows\\dosbox.exe - workingdir: dosbox_windows\\ - - arguments: '-conf dosbox_smpiratesgold.conf -conf dosbox_smpiratesgold_launch_windows.conf -noconsole' + executable: "dosbox_windows\\\\dosbox.exe" + workingdir: "dosbox_windows\\\\" + - arguments: "-conf dosbox_smpiratesgold.conf -conf dosbox_smpiratesgold_launch_windows.conf -noconsole" config: oslist: windows description: Play Pirates! Gold (Classic) in DOSBox Daum - executable: dosbox_windows\\daum\\dosbox.exe - workingdir: dosbox_windows\\daum\\ - - arguments: '-conf dosbox_smpiratesgold.conf -conf dosbox_smpiratesgold_config_windows.conf -noconsole' + executable: "dosbox_windows\\\\daum\\\\dosbox.exe" + workingdir: "dosbox_windows\\\\daum\\\\" + - arguments: "-conf dosbox_smpiratesgold.conf -conf dosbox_smpiratesgold_config_windows.conf -noconsole" config: oslist: windows description: Pirates! Gold (Classic) Configuration - executable: dosbox_windows\\dosbox.exe - workingdir: dosbox_windows\\ - - arguments: '-conf dosbox_smpirates.conf -conf dosbox_smpirates_launch_windows.conf -noconsole' + executable: "dosbox_windows\\\\dosbox.exe" + workingdir: "dosbox_windows\\\\" + - arguments: "-conf dosbox_smpirates.conf -conf dosbox_smpirates_launch_windows.conf -noconsole" config: oslist: windows - description: Play Sid Meier's Pirates! - executable: dosbox_windows\\dosbox.exe - workingdir: dosbox_windows\\ - - arguments: '-conf dosbox_smpirates.conf -conf dosbox_smpirates_launch_windows.conf -noconsole' + description: "Play Sid Meier's Pirates!" + executable: "dosbox_windows\\\\dosbox.exe" + workingdir: "dosbox_windows\\\\" + - arguments: "-conf dosbox_smpirates.conf -conf dosbox_smpirates_launch_windows.conf -noconsole" config: oslist: windows - description: Play Sid Meier's Pirates! in DOSBox Daum - executable: dosbox_windows\\daum\\dosbox.exe - workingdir: dosbox_windows\\daum\\ + description: "Play Sid Meier's Pirates! in DOSBox Daum" + executable: "dosbox_windows\\\\daum\\\\dosbox.exe" + workingdir: "dosbox_windows\\\\daum\\\\" - config: oslist: macos description: Launch - executable: Sid Meier's Pirates! Gold.app + executable: "Sid Meier's Pirates! Gold.app" - config: oslist: linux description: Play Pirates! Gold (Classic) - executable: dosbox_linux\\launch_smpiratesgold_game.sh - workingdir: dosbox_linux\\ + executable: "dosbox_linux\\\\launch_smpiratesgold_game.sh" + workingdir: "dosbox_linux\\\\" - config: oslist: linux description: Play Pirates! Gold (Classic) in DOSBox Daum - executable: dosbox_linux\\daum\\launch_smpiratesgold_game_daum.sh - workingdir: dosbox_linux\\daum\\ + executable: "dosbox_linux\\\\daum\\\\launch_smpiratesgold_game_daum.sh" + workingdir: "dosbox_linux\\\\daum\\\\" - config: oslist: linux description: Pirates! Gold Configuration - executable: dosbox_linux\\launch_smpiratesgold_config.sh - workingdir: dosbox_linux\\ + executable: "dosbox_linux\\\\launch_smpiratesgold_config.sh" + workingdir: "dosbox_linux\\\\" - config: oslist: linux - description: Play Sid Meier's Pirates! - executable: dosbox_linux\\launch_smpirates_game.sh - workingdir: dosbox_linux\\ + description: "Play Sid Meier's Pirates!" + executable: "dosbox_linux\\\\launch_smpirates_game.sh" + workingdir: "dosbox_linux\\\\" - config: oslist: linux - description: Play Sid Meier's Pirates! in DOSBox Daum - executable: dosbox_linux\\daum\\launch_smpirates_game_daum.sh - workingdir: dosbox_linux\\daum\\ -'327390': - installDir: Sid Meier's Covert Action + description: "Play Sid Meier's Pirates! in DOSBox Daum" + executable: "dosbox_linux\\\\daum\\\\launch_smpirates_game_daum.sh" + workingdir: "dosbox_linux\\\\daum\\\\" +"327390": + installDir: "Sid Meier's Covert Action" launch: - - arguments: '-conf dosbox_smcovert.conf -conf dosbox_smcovert_launch_windows.conf -noconsole' + - arguments: "-conf dosbox_smcovert.conf -conf dosbox_smcovert_launch_windows.conf -noconsole" config: oslist: windows description: Launch - executable: dosbox_windows\\dosbox.exe - workingdir: dosbox_windows\\ - - arguments: '-conf dosbox_smcovert.conf -conf dosbox_smcovert_launch_windows.conf -noconsole' + executable: "dosbox_windows\\\\dosbox.exe" + workingdir: "dosbox_windows\\\\" + - arguments: "-conf dosbox_smcovert.conf -conf dosbox_smcovert_launch_windows.conf -noconsole" config: oslist: windows - description: Play Sid Meier's Covert Action in DOSBox Daum - executable: dosbox_windows\\daum\\dosbox.exe - workingdir: dosbox_windows\\daum\\ + description: "Play Sid Meier's Covert Action in DOSBox Daum" + executable: "dosbox_windows\\\\daum\\\\dosbox.exe" + workingdir: "dosbox_windows\\\\daum\\\\" - config: oslist: macos description: Launch - executable: Sid Meier's Covert Action.app + executable: "Sid Meier's Covert Action.app" - config: oslist: linux description: Launch - executable: dosbox_linux\\launch_smcovert_game.sh - workingdir: dosbox_linux\\ + executable: "dosbox_linux\\\\launch_smcovert_game.sh" + workingdir: "dosbox_linux\\\\" - config: oslist: linux - description: Play Sid Meier's Covert Action in DOSBox Daum - executable: dosbox_linux\\daum\\launch_smcovert_game_daum.sh - workingdir: dosbox_linux\\daum\\ -'32740': + description: "Play Sid Meier's Covert Action in DOSBox Daum" + executable: "dosbox_linux\\\\daum\\\\launch_smcovert_game_daum.sh" + workingdir: "dosbox_linux\\\\daum\\\\" +"32740": installDir: MiG-29 Fulcrum launch: - executable: M29.exe - description: Launch Fixed Wing Editor executable: Fwe.exe -'327400': - installDir: Sid Meier's Colonization +"327400": + installDir: "Sid Meier's Colonization" launch: - - arguments: '-conf dosbox_smcolonization.conf -conf dosbox_smcolonization_launch_windows.conf -noconsole' + - arguments: "-conf dosbox_smcolonization.conf -conf dosbox_smcolonization_launch_windows.conf -noconsole" config: oslist: windows description: Launch - executable: dosbox_windows\\dosbox.exe - workingdir: dosbox_windows\\ - - arguments: '-conf dosbox_smcolonization.conf -conf dosbox_smcolonization_launch_windows.conf -noconsole' + executable: "dosbox_windows\\\\dosbox.exe" + workingdir: "dosbox_windows\\\\" + - arguments: "-conf dosbox_smcolonization.conf -conf dosbox_smcolonization_launch_windows.conf -noconsole" config: oslist: windows - description: Play Sid Meier's Colonization in DOSBox Daum - executable: dosbox_windows\\daum\\dosbox.exe - workingdir: dosbox_windows\\daum\\ - - arguments: '-conf dosbox_smcolonization.conf -conf dosbox_smcolonization_editor_windows.conf -noconsole' + description: "Play Sid Meier's Colonization in DOSBox Daum" + executable: "dosbox_windows\\\\daum\\\\dosbox.exe" + workingdir: "dosbox_windows\\\\daum\\\\" + - arguments: "-conf dosbox_smcolonization.conf -conf dosbox_smcolonization_editor_windows.conf -noconsole" config: oslist: windows - description: Launch Sid Meier's Colonization Map Editor - executable: dosbox_windows\\dosbox.exe - workingdir: dosbox_windows\\ - - arguments: '-conf dosbox_smcolonization.conf -conf dosbox_smcolonization_config_windows.conf -noconsole' + description: "Launch Sid Meier's Colonization Map Editor" + executable: "dosbox_windows\\\\dosbox.exe" + workingdir: "dosbox_windows\\\\" + - arguments: "-conf dosbox_smcolonization.conf -conf dosbox_smcolonization_config_windows.conf -noconsole" config: oslist: windows - description: Sid Meier's Colonization - Configuration - executable: dosbox_windows\\dosbox.exe - workingdir: dosbox_windows\\ + description: "Sid Meier's Colonization - Configuration" + executable: "dosbox_windows\\\\dosbox.exe" + workingdir: "dosbox_windows\\\\" - config: oslist: macos description: Launch - executable: Sid Meier's Colonization.app + executable: "Sid Meier's Colonization.app" - config: oslist: linux description: Launch - executable: dosbox_linux\\launch_smcolonization_game.sh - workingdir: dosbox_linux\\ + executable: "dosbox_linux\\\\launch_smcolonization_game.sh" + workingdir: "dosbox_linux\\\\" - config: oslist: linux - description: Play Sid Meier's Colonization in DOSBox Daum - executable: dosbox_linux\\daum\\launch_smcolonization_game_daum.sh - workingdir: dosbox_linux\\daum\\ + description: "Play Sid Meier's Colonization in DOSBox Daum" + executable: "dosbox_linux\\\\daum\\\\launch_smcolonization_game_daum.sh" + workingdir: "dosbox_linux\\\\daum\\\\" - config: oslist: linux - description: Launch Sid Meier's Colonization Map Editor - executable: dosbox_linux\\launch_smcolonization_editor.sh - workingdir: dosbox_linux\\ + description: "Launch Sid Meier's Colonization Map Editor" + executable: "dosbox_linux\\\\launch_smcolonization_editor.sh" + workingdir: "dosbox_linux\\\\" - config: oslist: linux - description: Sid Meier's Colonization - Configuration - executable: dosbox_linux\\launch_smcolonization_config.sh - workingdir: dosbox_linux\\ -'327410': + description: "Sid Meier's Colonization - Configuration" + executable: "dosbox_linux\\\\launch_smcolonization_config.sh" + workingdir: "dosbox_linux\\\\" +"327410": installDir: A Bird Story launch: - config: oslist: windows description: Launch - executable: A Bird Story\\A Bird Story.exe + executable: "A Bird Story\\\\A Bird Story.exe" workingdir: A Bird Story - - arguments: '--enableReset=false' + - arguments: "--enableReset=false" config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: ABirdStory.x86 - - arguments: '--enableReset=false' + - arguments: "--enableReset=false" config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: ABirdStory.amd64 - - arguments: A\\ Bird\\ Story.app/Contents/MacOS/mkxp --enableReset=false + - arguments: "A\\\\ Bird\\\\ Story.app/Contents/MacOS/mkxp --enableReset=false" config: oslist: macos description: Launch executable: A Bird Story.app/Contents/MacOS/steamshim_parent type: none -'327440': +"327440": installDir: Hail to the King Deathbat launch: - config: oslist: windows description: Launch executable: Deathbat.exe -'327450': +"327450": installDir: Ballads of Reemus When the Bed Bites launch: - config: oslist: windows description: Launch executable: ballads-of-reemus.exe -'32750': +"32750": installDir: Comanche 4 launch: - executable: c4.exe - - description: 'Launch Comanche 4: Mission Editor' + - description: "Launch Comanche 4: Mission Editor" executable: c4medc.exe -'327500': +"327500": installDir: Zenzizenzic launch: - config: @@ -156389,30 +152894,30 @@ description: Launch executable: Zenzizenzic.app - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Zenzizenzic.x86_64 - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: Zenzizenzic.x86 -'327510': +"327510": installDir: Wasted launch: - config: oslist: windows description: Launch executable: Wasted.exe -'327520': +"327520": installDir: Traverser launch: - config: oslist: windows description: Launch - executable: Binaries\\Win32\\Traverser.exe -'327560': + executable: "Binaries\\\\Win32\\\\Traverser.exe" +"327560": installDir: Near Death launch: - config: @@ -156424,16 +152929,16 @@ executable: Near Death.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Near Death.x86_64 type: default -'32760': +"32760": installDir: Tachyon The Fringe launch: - executable: Tachyon.exe -'327640': +"327640": installDir: CaesarIA launch: - config: @@ -156448,14 +152953,14 @@ oslist: macos description: Start CaesarIA executable: caesaria.macos -'327650': +"327650": installDir: MaysMysteries launch: - config: oslist: windows description: Launch executable: MaysMystery.exe -'327670': +"327670": installDir: Ironcast launch: - config: @@ -156470,26 +152975,26 @@ oslist: linux description: Launch Ironcast executable: Ironcast.x86 -'327680': {} -'327690': +"327680": {} +"327690": installDir: Gigantic launch: - executable: ArcSteamHelper.exe type: default -'32770': +"32770": installDir: Joint Operations Combined Arms launch: - executable: runme.exe -'327740': +"327740": installDir: Tron 2.0 launch: - description: Launch executable: TronLauncher.exe -'327760': +"327760": installDir: Bacon Man An Adventure launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: BaconMan.exe @@ -156499,7 +153004,7 @@ description: Launch executable: BaconMan/Binaries/Mac/BaconMan.app type: default -'327860': +"327860": installDir: Salt launch: - config: @@ -156514,10 +153019,10 @@ oslist: linux description: Launch executable: Salt.x86 -'327880': +"327880": installDir: Sublevel Zero launch: - - arguments: '-vrmode none' + - arguments: "-vrmode none" config: oslist: windows description: Sublevel Zero @@ -156537,7 +153042,7 @@ description: Sublevel Zero VR executable: SublevelZero.exe type: vr -'327890': +"327890": installDir: iambread launch: - config: @@ -156548,54 +153053,54 @@ oslist: windows description: Launch executable: iambread.exe - - arguments: '-force-d3d9' + - arguments: "-force-d3d9" config: oslist: windows description: Launch (Force DX9) executable: iambread.exe - - arguments: '-force-opengl' + - arguments: "-force-opengl" config: oslist: windows description: Launch (Force OpenGL) executable: iambread.exe - - arguments: '-safemode' + - arguments: "-safemode" config: oslist: windows description: Launch Safe Mode executable: iambread.exe - - arguments: '-safemode' + - arguments: "-safemode" config: oslist: macos description: Launch Safe Mode executable: iambread.app -'327910': +"327910": installDir: 7th Legion launch: - config: oslist: windows description: Launch executable: legion.exe -'327920': +"327920": installDir: BloodNet launch: - - arguments: '-conf dosbox_bloodnet.conf -conf dosbox_bloodnet_launch_windows.conf -noconsole' + - arguments: "-conf dosbox_bloodnet.conf -conf dosbox_bloodnet_launch_windows.conf -noconsole" config: oslist: windows description: Launch - executable: dosbox_windows\\dosbox.exe - workingdir: dosbox_windows\\ - - arguments: '-conf dosbox_bloodnet.conf -conf dosbox_bloodnet_launch_windows.conf -noconsole' + executable: "dosbox_windows\\\\dosbox.exe" + workingdir: "dosbox_windows\\\\" + - arguments: "-conf dosbox_bloodnet.conf -conf dosbox_bloodnet_launch_windows.conf -noconsole" config: oslist: windows description: Play BloodNet in DOSBox Daum - executable: dosbox_windows\\daum\\dosbox.exe - workingdir: dosbox_windows\\daum\\ - - arguments: '-conf dosbox_bloodnet.conf -conf dosbox_bloodnet_config_windows.conf -noconsole' + executable: "dosbox_windows\\\\daum\\\\dosbox.exe" + workingdir: "dosbox_windows\\\\daum\\\\" + - arguments: "-conf dosbox_bloodnet.conf -conf dosbox_bloodnet_config_windows.conf -noconsole" config: oslist: windows description: BloodNet - Configuration - executable: dosbox_windows\\dosbox.exe - workingdir: dosbox_windows\\ + executable: "dosbox_windows\\\\dosbox.exe" + workingdir: "dosbox_windows\\\\" - config: oslist: macos description: Launch @@ -156603,39 +153108,39 @@ - config: oslist: linux description: Launch - executable: dosbox_linux\\launch_bloodnet_game.sh - workingdir: dosbox_linux\\ + executable: "dosbox_linux\\\\launch_bloodnet_game.sh" + workingdir: "dosbox_linux\\\\" - config: oslist: linux description: Play BloodNet in DOSBox Daum - executable: dosbox_linux\\daum\\launch_bloodnet_game_daum.sh - workingdir: dosbox_linux\\daum\\ + executable: "dosbox_linux\\\\daum\\\\launch_bloodnet_game_daum.sh" + workingdir: "dosbox_linux\\\\daum\\\\" - config: oslist: linux description: BloodNet - Configuration - executable: dosbox_linux\\launch_bloodnet_config.sh - workingdir: dosbox_linux\\ -'327930': + executable: "dosbox_linux\\\\launch_bloodnet_config.sh" + workingdir: "dosbox_linux\\\\" +"327930": installDir: Darklands launch: - - arguments: '-conf dosbox_darklands.conf -conf dosbox_darklands_launch_windows.conf -noconsole' + - arguments: "-conf dosbox_darklands.conf -conf dosbox_darklands_launch_windows.conf -noconsole" config: oslist: windows description: Launch - executable: dosbox_windows\\dosbox.exe - workingdir: dosbox_windows\\ - - arguments: '-conf dosbox_darklands.conf -conf dosbox_darklands_launch_windows.conf -noconsole' + executable: "dosbox_windows\\\\dosbox.exe" + workingdir: "dosbox_windows\\\\" + - arguments: "-conf dosbox_darklands.conf -conf dosbox_darklands_launch_windows.conf -noconsole" config: oslist: windows description: Play Darklands in DOSBox Daum - executable: dosbox_windows\\daum\\dosbox.exe - workingdir: dosbox_windows\\daum\\ - - arguments: '-conf dosbox_darklands.conf -conf dosbox_darklands_config_windows.conf -noconsole' + executable: "dosbox_windows\\\\daum\\\\dosbox.exe" + workingdir: "dosbox_windows\\\\daum\\\\" + - arguments: "-conf dosbox_darklands.conf -conf dosbox_darklands_config_windows.conf -noconsole" config: oslist: windows description: Darklands - Configuration - executable: dosbox_windows\\dosbox.exe - workingdir: dosbox_windows\\ + executable: "dosbox_windows\\\\dosbox.exe" + workingdir: "dosbox_windows\\\\" - config: oslist: macos description: Launch @@ -156643,39 +153148,39 @@ - config: oslist: linux description: Launch - executable: dosbox_linux\\launch_darklands_game.sh - workingdir: dosbox_linux\\ + executable: "dosbox_linux\\\\launch_darklands_game.sh" + workingdir: "dosbox_linux\\\\" - config: oslist: linux description: Play Darklands in DOSBox Daum - executable: dosbox_linux\\daum\\launch_darklands_game_daum.sh - workingdir: dosbox_linux\\daum\\ + executable: "dosbox_linux\\\\daum\\\\launch_darklands_game_daum.sh" + workingdir: "dosbox_linux\\\\daum\\\\" - config: oslist: linux description: Darklands - Configuration - executable: dosbox_linux\\launch_darklands_config.sh - workingdir: dosbox_linux\\ -'327940': + executable: "dosbox_linux\\\\launch_darklands_config.sh" + workingdir: "dosbox_linux\\\\" +"327940": installDir: Dragonsphere launch: - - arguments: '-conf dosbox_dragonsphere.conf -conf dosbox_dragonsphere_launch_windows.conf -noconsole' + - arguments: "-conf dosbox_dragonsphere.conf -conf dosbox_dragonsphere_launch_windows.conf -noconsole" config: oslist: windows description: Launch - executable: dosbox_windows\\dosbox.exe - workingdir: dosbox_windows\\ - - arguments: '-conf dosbox_dragonsphere.conf -conf dosbox_dragonsphere_launch_windows.conf -noconsole' + executable: "dosbox_windows\\\\dosbox.exe" + workingdir: "dosbox_windows\\\\" + - arguments: "-conf dosbox_dragonsphere.conf -conf dosbox_dragonsphere_launch_windows.conf -noconsole" config: oslist: windows description: Play Dragonsphere in DOSBox Daum - executable: dosbox_windows\\daum\\dosbox.exe - workingdir: dosbox_windows\\daum\\ - - arguments: '-conf dosbox_dragonsphere.conf -conf dosbox_dragonsphere_config_windows.conf -noconsole' + executable: "dosbox_windows\\\\daum\\\\dosbox.exe" + workingdir: "dosbox_windows\\\\daum\\\\" + - arguments: "-conf dosbox_dragonsphere.conf -conf dosbox_dragonsphere_config_windows.conf -noconsole" config: oslist: windows description: Dragonsphere - Configuration - executable: dosbox_windows\\dosbox.exe - workingdir: dosbox_windows\\ + executable: "dosbox_windows\\\\dosbox.exe" + workingdir: "dosbox_windows\\\\" - config: oslist: macos description: Launch @@ -156683,33 +153188,33 @@ - config: oslist: linux description: Launch - executable: dosbox_linux\\launch_dragonsphere_game.sh - workingdir: dosbox_linux\\ + executable: "dosbox_linux\\\\launch_dragonsphere_game.sh" + workingdir: "dosbox_linux\\\\" - config: oslist: linux description: Play Dragonsphere in DOSBox Daum - executable: dosbox_linux\\daum\\launch_dragonsphere_game_daum.sh - workingdir: dosbox_linux\\daum\\ + executable: "dosbox_linux\\\\daum\\\\launch_dragonsphere_game_daum.sh" + workingdir: "dosbox_linux\\\\daum\\\\" - config: oslist: linux description: Dragonsphere - Configuration - executable: dosbox_linux\\launch_dragonsphere_config.sh - workingdir: dosbox_linux\\ -'327950': + executable: "dosbox_linux\\\\launch_dragonsphere_config.sh" + workingdir: "dosbox_linux\\\\" +"327950": installDir: Sword of the Samurai launch: - - arguments: '-conf dosbox_swordofthesamurai.conf -conf dosbox_swordofthesamurai_launch_windows.conf -noconsole' + - arguments: "-conf dosbox_swordofthesamurai.conf -conf dosbox_swordofthesamurai_launch_windows.conf -noconsole" config: oslist: windows description: Launch - executable: dosbox_windows\\dosbox.exe - workingdir: dosbox_windows\\ - - arguments: '-conf dosbox_swordofthesamurai.conf -conf dosbox_swordofthesamurai_launch_windows.conf -noconsole' + executable: "dosbox_windows\\\\dosbox.exe" + workingdir: "dosbox_windows\\\\" + - arguments: "-conf dosbox_swordofthesamurai.conf -conf dosbox_swordofthesamurai_launch_windows.conf -noconsole" config: oslist: windows description: Play Sword of the Samurai in DOSBox Daum - executable: dosbox_windows\\daum\\dosbox.exe - workingdir: dosbox_windows\\daum\\ + executable: "dosbox_windows\\\\daum\\\\dosbox.exe" + workingdir: "dosbox_windows\\\\daum\\\\" - config: oslist: macos description: Launch @@ -156717,21 +153222,21 @@ - config: oslist: linux description: Launch - executable: dosbox_linux\\launch_swordofthesamurai_game.sh - workingdir: dosbox_linux\\ + executable: "dosbox_linux\\\\launch_swordofthesamurai_game.sh" + workingdir: "dosbox_linux\\\\" - config: oslist: linux description: Play Sword of the Samurai in DOSBox Daum - executable: dosbox_linux\\daum\\launch_swordofthesamurai_game_daum.sh - workingdir: dosbox_linux\\daum\\ -'327960': + executable: "dosbox_linux\\\\daum\\\\launch_swordofthesamurai_game_daum.sh" + workingdir: "dosbox_linux\\\\daum\\\\" +"327960": installDir: Journey of the King launch: - config: oslist: windows description: Launch executable: JotK.exe -'327980': +"327980": installDir: Dragon Fantasy Book I launch: - config: @@ -156746,12 +153251,12 @@ oslist: linux description: Launch executable: DragonFantasy -'32800': +"32800": installDir: War in the North launch: - - arguments: '-disc 1 -paq 1' + - arguments: "-disc 1 -paq 1" executable: witn.exe -'328000': +"328000": installDir: Dragon Fantasy Book II launch: - config: @@ -156766,21 +153271,21 @@ oslist: linux description: Launch executable: DragonFantasy2 -'328060': +"328060": installDir: Tales Runner launch: - config: oslist: windows description: Launch executable: ogpsteam.exe -'328070': +"328070": installDir: reflexfps launch: - config: oslist: windows description: Launch executable: reflex.exe -'328080': +"328080": installDir: Rise to Ruins launch: - config: @@ -156798,7 +153303,7 @@ description: Launch executable: RtR.sh type: none -'328100': +"328100": installDir: Gunspell_SE launch: - config: @@ -156810,25 +153315,25 @@ description: Launch executable: Gunspell_SE_Mac.app - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: Gunspell_SE_LINUX.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Gunspell_SE_LINUX.x86_64 -'328220': +"328220": installDir: Wild Season launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: Wild Season.exe - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: Wild Season.exe @@ -156837,16 +153342,16 @@ description: Launch executable: Wild Season.app - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: Wild Season.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Wild Season.x86_64 -'328270': +"328270": installDir: Leviathan The Last Day of the Decade launch: - config: @@ -156862,7 +153367,7 @@ description: Play Leviathan! executable: ldod.x86 type: default -'328310': +"328310": installDir: Logistics Company launch: - config: @@ -156873,27 +153378,27 @@ oslist: macos description: Launch executable: LogisticsSimulator.app -'328430': +"328430": installDir: Rex Nebular and the Cosmic Gender Bender launch: - - arguments: '-conf dosbox_rexnebular.conf -conf dosbox_rexnebular_launch_windows.conf -noconsole' + - arguments: "-conf dosbox_rexnebular.conf -conf dosbox_rexnebular_launch_windows.conf -noconsole" config: oslist: windows description: Launch - executable: dosbox_windows\\dosbox.exe - workingdir: dosbox_windows\\ - - arguments: '-conf dosbox_rexnebular.conf -conf dosbox_rexnebular_launch_windows.conf -noconsole' + executable: "dosbox_windows\\\\dosbox.exe" + workingdir: "dosbox_windows\\\\" + - arguments: "-conf dosbox_rexnebular.conf -conf dosbox_rexnebular_launch_windows.conf -noconsole" config: oslist: windows description: Play Rex Nebular in DOSBox Daum - executable: dosbox_windows\\daum\\dosbox.exe - workingdir: dosbox_windows\\daum\\ - - arguments: '-conf dosbox_rexnebular.conf -conf dosbox_rexnebular_config_windows.conf -noconsole' + executable: "dosbox_windows\\\\daum\\\\dosbox.exe" + workingdir: "dosbox_windows\\\\daum\\\\" + - arguments: "-conf dosbox_rexnebular.conf -conf dosbox_rexnebular_config_windows.conf -noconsole" config: oslist: windows description: Rex Nebular - Configuration - executable: dosbox_windows\\dosbox.exe - workingdir: dosbox_windows\\ + executable: "dosbox_windows\\\\dosbox.exe" + workingdir: "dosbox_windows\\\\" - config: oslist: macos description: Launch @@ -156901,40 +153406,40 @@ - config: oslist: linux description: Launch - executable: dosbox_linux\\launch_rexnebular_game.sh - workingdir: dosbox_linux\\ + executable: "dosbox_linux\\\\launch_rexnebular_game.sh" + workingdir: "dosbox_linux\\\\" - config: oslist: linux description: Play Rex Nebular in DOSBox Daum - executable: dosbox_linux\\daum\\launch_rexnebular_game_daum.sh - workingdir: dosbox_linux\\daum\\ + executable: "dosbox_linux\\\\daum\\\\launch_rexnebular_game_daum.sh" + workingdir: "dosbox_linux\\\\daum\\\\" - config: oslist: linux description: Rex Nebular - Configuration - executable: dosbox_linux\\launch_rexnebular_config.sh - workingdir: dosbox_linux\\ -'328440': + executable: "dosbox_linux\\\\launch_rexnebular_config.sh" + workingdir: "dosbox_linux\\\\" +"328440": installDir: Deadlock launch: - config: oslist: windows description: Launch executable: deadlock.exe -'328450': +"328450": installDir: Deadlock2 launch: - config: oslist: windows description: Launch executable: DEADLOCK.EXE -'328460': +"328460": installDir: Redline launch: - config: oslist: windows description: Launch executable: redline.exe -'328470': +"328470": installDir: Slave Zero launch: - config: @@ -156945,7 +153450,7 @@ oslist: windows description: Configure nGlide executable: nglide_config.exe -'328500': +"328500": installDir: Potatoman launch: - config: @@ -156956,7 +153461,7 @@ oslist: windows description: Launch executable: Potatoman Seeks The Troof.exe -'328510': +"328510": installDir: Monsters & Monocles launch: - config: @@ -156967,21 +153472,21 @@ oslist: macos description: Launch executable: Monocles.app - - arguments: '-force-opengl' + - arguments: "-force-opengl" config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: Monocles.x86 type: none - - arguments: '-force-opengl' + - arguments: "-force-opengl" config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Monocles.x86_64 type: none -'328550': +"328550": installDir: ThievesGambitCurseOfTheBlackCat launch: - config: @@ -156996,60 +153501,60 @@ oslist: linux description: Launch executable: ThievesGambitCurseOfTheBlackCat -'328590': - installDir: Don't Knock Twice +"328590": + installDir: "Don't Knock Twice" launch: - - arguments: '-platform None' + - arguments: "-platform None" config: - osarch: '64' + osarch: "64" oslist: windows executable: DontKnockTwice.exe type: default - - arguments: '-platform SteamVR' + - arguments: "-platform SteamVR" config: - osarch: '64' + osarch: "64" oslist: windows executable: DontKnockTwice.exe type: vr - - arguments: '-platform Oculus' + - arguments: "-platform Oculus" config: - osarch: '64' + osarch: "64" oslist: windows executable: DontKnockTwice.exe type: othervr - - arguments: '-platform SteamVR' + - arguments: "-platform SteamVR" config: betakey: demo - osarch: '64' + osarch: "64" oslist: windows description: VR Demo executable: DKT_VRDemo.exe type: option1 -'328600': +"328600": installDir: FrozenSynapsePrime launch: - config: oslist: windows description: Launch executable: FrozenSynapse.exe -'328640': +"328640": installDir: RockZombie launch: - description: Launch executable: RockZombie.exe -'328650': +"328650": installDir: Knight of the Hamsters launch: - config: oslist: windows description: Launch executable: KOTH.exe -'328670': +"328670": installDir: Deer Hunt Legends launch: - description: Launch executable: Game.win32.steam.exe -'328680': +"328680": installDir: Crab Cakes Rescue launch: - config: @@ -157060,27 +153565,27 @@ oslist: macos description: Launch executable: CrabCakesRescueLauncher.app -'328710': +"328710": installDir: One Last Day launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch default version executable: OLDx64.exe type: none - config: - osarch: '32' + osarch: "32" oslist: windows description: Compatibility mode (32 bits) executable: OLD.exe type: none - config: oslist: macos - description: 'Launch OSX version (testing, do not use!)' + description: "Launch OSX version (testing, do not use!)" executable: OLD.app type: default -'328730': +"328730": installDir: Letter Quest launch: - config: @@ -157091,19 +153596,19 @@ oslist: macos description: Launch executable: letterquest.app -'328740': +"328740": installDir: Bit Odyssey launch: - description: Launch executable: Bit Odyssey.exe -'328760': +"328760": installDir: SanctuaryRPG - Black Edition launch: - config: oslist: windows description: Launch executable: SanctuaryRPG.exe -'328780': +"328780": installDir: Vampires Guide Them to Safety launch: - config: @@ -157113,22 +153618,22 @@ - config: oslist: macos description: Launch - executable: ./Vampires.app/Contents/MacOS/Vampires -'328830': + executable: "./Vampires.app/Contents/MacOS/Vampires" +"328830": installDir: Rugby Union Team Manager 2015 launch: - config: oslist: windows description: Launch executable: RUTM2015_Startup.exe -'328870': +"328870": installDir: Draft Day Sports Pro Basketball 4 launch: - config: oslist: windows description: Launch executable: DDSPB4.exe -'328880': +"328880": installDir: Space Legends At the Edge of the Universe launch: - config: @@ -157139,82 +153644,82 @@ oslist: macos description: Launch executable: Space Legends.app -'328890': +"328890": installDir: Fritz for Fun 13 launch: - config: oslist: windows description: Launch executable: ChessProgram13/ChessProgram13.exe -'328900': +"328900": installDir: B-17 Flying Fortress launch: - config: oslist: windows description: Launch executable: B17Setup.exe -'328920': +"328920": installDir: F-117A Nighthawk Stealth Fighter launch: - - arguments: '-conf dosbox_F117A.conf -conf dosbox_F117A_launch_windows.conf -noconsole' + - arguments: "-conf dosbox_F117A.conf -conf dosbox_F117A_launch_windows.conf -noconsole" config: oslist: windows description: Launch - executable: dosbox_windows\\dosbox.exe - workingdir: dosbox_windows\\ - - arguments: '-conf dosbox_F117A.conf -conf dosbox_F117A_launch_windows.conf -noconsole' + executable: "dosbox_windows\\\\dosbox.exe" + workingdir: "dosbox_windows\\\\" + - arguments: "-conf dosbox_F117A.conf -conf dosbox_F117A_launch_windows.conf -noconsole" config: oslist: windows description: Play F-117A NSF 2.0 in DOSBox Daum - executable: dosbox_windows\\daum\\dosbox.exe - workingdir: dosbox_windows\\daum\\ + executable: "dosbox_windows\\\\daum\\\\dosbox.exe" + workingdir: "dosbox_windows\\\\daum\\\\" - config: oslist: linux description: Launch - executable: dosbox_linux\\launch_F117A_game.sh - workingdir: dosbox_linux\\ + executable: "dosbox_linux\\\\launch_F117A_game.sh" + workingdir: "dosbox_linux\\\\" - config: oslist: linux description: Play F-117A NSF 2.0 in DOSBox Daum - executable: dosbox_linux\\daum\\launch_F117A_game_daum.sh - workingdir: dosbox_linux\\daum\\ -'328930': + executable: "dosbox_linux\\\\daum\\\\launch_F117A_game_daum.sh" + workingdir: "dosbox_linux\\\\daum\\\\" +"328930": installDir: Fleet Defender launch: - - arguments: '-conf dosbox_fleetdefender.conf -conf dosbox_fleetdefender_launch_windows.conf -noconsole' + - arguments: "-conf dosbox_fleetdefender.conf -conf dosbox_fleetdefender_launch_windows.conf -noconsole" config: oslist: windows description: Launch - executable: dosbox_windows\\dosbox.exe - workingdir: dosbox_windows\\ - - arguments: '-conf dosbox_fleetdefender.conf -conf dosbox_fleetdefender_launch_windows.conf -noconsole' + executable: "dosbox_windows\\\\dosbox.exe" + workingdir: "dosbox_windows\\\\" + - arguments: "-conf dosbox_fleetdefender.conf -conf dosbox_fleetdefender_launch_windows.conf -noconsole" config: oslist: windows description: Play Fleet Defender in DOSBox Daum - executable: dosbox_windows\\daum\\dosbox.exe - workingdir: dosbox_windows\\daum\\ - - arguments: '-conf dosbox_fleetdefender.conf -conf dosbox_fleetdefender_jukebox_windows.conf -noconsole' + executable: "dosbox_windows\\\\daum\\\\dosbox.exe" + workingdir: "dosbox_windows\\\\daum\\\\" + - arguments: "-conf dosbox_fleetdefender.conf -conf dosbox_fleetdefender_jukebox_windows.conf -noconsole" config: oslist: windows description: Fleet Defender - Jukebox - executable: dosbox_windows\\dosbox.exe - workingdir: dosbox_windows\\ + executable: "dosbox_windows\\\\dosbox.exe" + workingdir: "dosbox_windows\\\\" - config: oslist: linux description: Launch - executable: dosbox_linux\\launch_fleetdefender_game.sh - workingdir: dosbox_linux\\ + executable: "dosbox_linux\\\\launch_fleetdefender_game.sh" + workingdir: "dosbox_linux\\\\" - config: oslist: linux description: Play Fleet Defender in DOSBox Daum - executable: dosbox_linux\\daum\\launch_fleetdefender_game_daum.sh - workingdir: dosbox_linux\\daum\\ + executable: "dosbox_linux\\\\daum\\\\launch_fleetdefender_game_daum.sh" + workingdir: "dosbox_linux\\\\daum\\\\" - config: oslist: linux description: Fleet Defender - Jukebox - executable: dosbox_linux\\launch_fleetdefender_jukebox.sh - workingdir: dosbox_linux\\ -'328940': + executable: "dosbox_linux\\\\launch_fleetdefender_jukebox.sh" + workingdir: "dosbox_linux\\\\" +"328940": installDir: The Deer God launch: - config: @@ -157229,23 +153734,23 @@ oslist: linux description: Launch executable: thedeergod.x86 -'328990': +"328990": installDir: Koya Rift launch: - config: oslist: windows description: Launch executable: Koya Rift.exe -'32900': +"32900": installDir: Restaurant Empire 2 launch: - executable: re2.exe -'329000': +"329000": installDir: Data Hacker Corruption launch: - description: Launch executable: game.exe -'329020': +"329020": installDir: Battlegrounds of Eldhelm launch: - config: @@ -157256,7 +153761,7 @@ oslist: macos description: Launch executable: Eldhelm.app -'329040': +"329040": installDir: Dungeon Kingdom launch: - config: @@ -157271,29 +153776,29 @@ oslist: linux executable: DungeonKingdom.x86_64 type: default -'329050': +"329050": installDir: Special Edition launch: - config: oslist: windows description: Launch executable: DevilMayCry4SpecialEdition.exe -'329070': +"329070": installDir: SpyParty launch: - config: oslist: windows - executable: SpyPartyProgramFiles\\spyparty.exe + executable: "SpyPartyProgramFiles\\\\spyparty.exe" type: none - workingdir: SpyPartyProgramFiles\\ -'329110': + workingdir: "SpyPartyProgramFiles\\\\" +"329110": installDir: Gems of War launch: - config: oslist: windows description: Launch executable: GemsOfWar.exe -'329130': +"329130": installDir: Reassembly launch: - config: @@ -157314,7 +153819,7 @@ description: Reassembly (Windows XP) executable: win32/ReassemblyReleaseXP.exe type: option2 -'329190': +"329190": installDir: Volo Airsport launch: - config: @@ -157325,38 +153830,38 @@ oslist: macos executable: volo_airsport.app type: default - - arguments: '-vrmode oculus' + - arguments: "-vrmode oculus" config: betakey: test oslist: windows executable: volo_airsport.exe type: othervr - config: - osarch: '32' + osarch: "32" oslist: linux executable: volo_airsport.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: volo_airsport.x86_64 type: default - - arguments: '-vrmode openvr' + - arguments: "-vrmode openvr" config: oslist: windows executable: volo_airsport.exe type: vr - config: - osarch: '32' + osarch: "32" oslist: windows executable: volo_airsport.exe type: default -'329200': +"329200": installDir: Astray launch: - description: Launch executable: Astray.exe -'329240': +"329240": installDir: Weaponographist launch: - config: @@ -157368,7 +153873,7 @@ oslist: macos description: Launch executable: Weaponographist.app -'329280': +"329280": installDir: Avalon Lords launch: - config: @@ -157383,9 +153888,9 @@ type: none - config: oslist: linux - executable: ./avalonlords.x86 + executable: "./avalonlords.x86" type: none -'329310': +"329310": installDir: Tile Miner launch: - config: @@ -157397,7 +153902,7 @@ oslist: macos description: Launch executable: TileMiner.app -'329320': +"329320": installDir: QbQbQb launch: - config: @@ -157405,7 +153910,7 @@ description: Launch executable: qbqbqb.exe - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: qbqbqb @@ -157413,7 +153918,7 @@ oslist: macos description: Launch executable: qbqbqb.app -'329340': +"329340": installDir: Cloudphobia launch: - config: @@ -157421,24 +153926,24 @@ description: Launch executable: cloudphobia.exe type: none -'329380': +"329380": installDir: Stealth Inc 2 launch: - description: Launch executable: settings/settings.exe -'329430': +"329430": installDir: State of Decay YOSE launch: - config: oslist: windows description: Launch executable: StateOfDecay.exe -'329440': +"329440": installDir: Sonic Lost World launch: - description: Launch executable: slw.exe -'329460': +"329460": installDir: JumpJetRex launch: - config: @@ -157450,16 +153955,16 @@ description: Launch executable: JumpJetRex.app/Contents/MacOS/JumpJetRex - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: JumpJetRex.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: JumpJetRex.x86_64 -'329480': +"329480": installDir: Snow Light launch: - config: @@ -157470,13 +153975,13 @@ oslist: linux description: Launch executable: Snow Light -'329490': +"329490": installDir: Phantom Breaker Battle Grounds launch: - description: Launch executable: bin/pbbg_win32.exe workingdir: bin -'329610': +"329610": installDir: R.B.I. Baseball 15 launch: - config: @@ -157487,27 +153992,27 @@ oslist: macos description: Launch executable: RBIBaseball.app -'329620': +"329620": installDir: Across The Rhine launch: - - arguments: '-conf dosbox_atr.conf -conf dosbox_atr_launch_windows.conf -noconsole' + - arguments: "-conf dosbox_atr.conf -conf dosbox_atr_launch_windows.conf -noconsole" config: oslist: windows description: Launch - executable: dosbox_windows\\dosbox.exe - workingdir: dosbox_windows\\ - - arguments: '-conf dosbox_atr.conf -conf dosbox_atr_launch_windows.conf -noconsole' + executable: "dosbox_windows\\\\dosbox.exe" + workingdir: "dosbox_windows\\\\" + - arguments: "-conf dosbox_atr.conf -conf dosbox_atr_launch_windows.conf -noconsole" config: oslist: windows description: Play Across The Rhine in DOSBox Daum - executable: dosbox_windows\\daum\\dosbox.exe - workingdir: dosbox_windows\\daum\\ - - arguments: '-conf dosbox_atr.conf -conf dosbox_atr_config_windows.conf -noconsole' + executable: "dosbox_windows\\\\daum\\\\dosbox.exe" + workingdir: "dosbox_windows\\\\daum\\\\" + - arguments: "-conf dosbox_atr.conf -conf dosbox_atr_config_windows.conf -noconsole" config: oslist: windows description: Across The Rhine - Configuration - executable: dosbox_windows\\dosbox.exe - workingdir: dosbox_windows\\ + executable: "dosbox_windows\\\\dosbox.exe" + workingdir: "dosbox_windows\\\\" - config: oslist: macos description: Launch @@ -157515,39 +154020,39 @@ - config: oslist: linux description: Launch - executable: dosbox_linux\\launch_atr_game.sh - workingdir: dosbox_linux\\ + executable: "dosbox_linux\\\\launch_atr_game.sh" + workingdir: "dosbox_linux\\\\" - config: oslist: linux description: Play Across The Rhine in DOSBox Daum - executable: dosbox_linux\\daum\\launch_atr_game_daum.sh - workingdir: dosbox_linux\\daum\\ + executable: "dosbox_linux\\\\daum\\\\launch_atr_game_daum.sh" + workingdir: "dosbox_linux\\\\daum\\\\" - config: oslist: linux description: Across The Rhine - Configuration - executable: dosbox_linux\\launch_atr_config.sh - workingdir: dosbox_linux\\ -'329630': + executable: "dosbox_linux\\\\launch_atr_config.sh" + workingdir: "dosbox_linux\\\\" +"329630": installDir: Command HQ launch: - - arguments: '-conf dosbox_commandhq.conf -conf dosbox_commandhq_launch_windows.conf -noconsole' + - arguments: "-conf dosbox_commandhq.conf -conf dosbox_commandhq_launch_windows.conf -noconsole" config: oslist: windows description: Launch - executable: dosbox_windows\\dosbox.exe - workingdir: dosbox_windows\\ - - arguments: '-conf dosbox_commandhq.conf -conf dosbox_commandhq_launch_windows.conf -noconsole' + executable: "dosbox_windows\\\\dosbox.exe" + workingdir: "dosbox_windows\\\\" + - arguments: "-conf dosbox_commandhq.conf -conf dosbox_commandhq_launch_windows.conf -noconsole" config: oslist: windows description: Play Command HQ in DOSBox Daum - executable: dosbox_windows\\daum\\dosbox.exe - workingdir: dosbox_windows\\daum\\ - - arguments: '-conf dosbox_commandhq.conf -conf dosbox_commandhq_config_windows.conf -noconsole' + executable: "dosbox_windows\\\\daum\\\\dosbox.exe" + workingdir: "dosbox_windows\\\\daum\\\\" + - arguments: "-conf dosbox_commandhq.conf -conf dosbox_commandhq_config_windows.conf -noconsole" config: oslist: windows description: Command HQ - Configuration - executable: dosbox_windows\\dosbox.exe - workingdir: dosbox_windows\\ + executable: "dosbox_windows\\\\dosbox.exe" + workingdir: "dosbox_windows\\\\" - config: oslist: macos description: Launch @@ -157555,39 +154060,39 @@ - config: oslist: linux description: Launch - executable: dosbox_linux\\launch_commandhq_game.sh - workingdir: dosbox_linux\\ + executable: "dosbox_linux\\\\launch_commandhq_game.sh" + workingdir: "dosbox_linux\\\\" - config: oslist: linux description: Play Command HQ in DOSBox Daum - executable: dosbox_linux\\daum\\launch_commandhq_game_daum.sh - workingdir: dosbox_linux\\daum\\ + executable: "dosbox_linux\\\\daum\\\\launch_commandhq_game_daum.sh" + workingdir: "dosbox_linux\\\\daum\\\\" - config: oslist: linux description: Command HQ - Configuration - executable: dosbox_linux\\launch_commandhq_config.sh - workingdir: dosbox_linux\\ -'329640': + executable: "dosbox_linux\\\\launch_commandhq_config.sh" + workingdir: "dosbox_linux\\\\" +"329640": installDir: Eradicator launch: - - arguments: '-conf dosbox_eradicator.conf -conf dosbox_eradicator_launch_windows.conf -noconsole' + - arguments: "-conf dosbox_eradicator.conf -conf dosbox_eradicator_launch_windows.conf -noconsole" config: oslist: windows description: Launch - executable: dosbox_windows\\dosbox.exe - workingdir: dosbox_windows\\ - - arguments: '-conf dosbox_eradicator.conf -conf dosbox_eradicator_launch_windows.conf -noconsole' + executable: "dosbox_windows\\\\dosbox.exe" + workingdir: "dosbox_windows\\\\" + - arguments: "-conf dosbox_eradicator.conf -conf dosbox_eradicator_launch_windows.conf -noconsole" config: oslist: windows description: Play Eradicator in DOSBox Daum - executable: dosbox_windows\\daum\\dosbox.exe - workingdir: dosbox_windows\\daum\\ - - arguments: '-conf dosbox_eradicator.conf -conf dosbox_eradicator_config_windows.conf -noconsole' + executable: "dosbox_windows\\\\daum\\\\dosbox.exe" + workingdir: "dosbox_windows\\\\daum\\\\" + - arguments: "-conf dosbox_eradicator.conf -conf dosbox_eradicator_config_windows.conf -noconsole" config: oslist: windows description: Eradicator - Configuration - executable: dosbox_windows\\dosbox.exe - workingdir: dosbox_windows\\ + executable: "dosbox_windows\\\\dosbox.exe" + workingdir: "dosbox_windows\\\\" - config: oslist: macos description: Launch @@ -157595,50 +154100,50 @@ - config: oslist: linux description: Launch - executable: dosbox_linux\\launch_eradicator_game.sh - workingdir: dosbox_linux\\ + executable: "dosbox_linux\\\\launch_eradicator_game.sh" + workingdir: "dosbox_linux\\\\" - config: oslist: linux description: Play Eradicator in DOSBox Daum - executable: dosbox_linux\\daum\\launch_eradicator_game_daum.sh - workingdir: dosbox_linux\\daum\\ + executable: "dosbox_linux\\\\daum\\\\launch_eradicator_game_daum.sh" + workingdir: "dosbox_linux\\\\daum\\\\" - config: oslist: linux description: Eradicator - Configuration - executable: dosbox_linux\\launch_eradicator_config.sh - workingdir: dosbox_linux\\ - - arguments: '-conf dosbox_eradicator.conf -conf dosbox_eradicator_editor_windows.conf -noconsole' + executable: "dosbox_linux\\\\launch_eradicator_config.sh" + workingdir: "dosbox_linux\\\\" + - arguments: "-conf dosbox_eradicator.conf -conf dosbox_eradicator_editor_windows.conf -noconsole" config: oslist: windows description: Launch Eradicator Level Editor - executable: dosbox_windows\\dosbox.exe - workingdir: dosbox_windows\\ + executable: "dosbox_windows\\\\dosbox.exe" + workingdir: "dosbox_windows\\\\" - config: oslist: linux description: Launch Eradicator Level Editor - executable: dosbox_linux\\launch_eradicator_editor.sh - workingdir: dosbox_linux\\ -'329650': + executable: "dosbox_linux\\\\launch_eradicator_editor.sh" + workingdir: "dosbox_linux\\\\" +"329650": installDir: Nam launch: - - arguments: '-conf dosbox_nam.conf -conf dosbox_nam_launch_windows.conf -noconsole' + - arguments: "-conf dosbox_nam.conf -conf dosbox_nam_launch_windows.conf -noconsole" config: oslist: windows description: Launch - executable: dosbox_windows\\dosbox.exe - workingdir: dosbox_windows\\ - - arguments: '-conf dosbox_nam.conf -conf dosbox_nam_launch_windows.conf -noconsole' + executable: "dosbox_windows\\\\dosbox.exe" + workingdir: "dosbox_windows\\\\" + - arguments: "-conf dosbox_nam.conf -conf dosbox_nam_launch_windows.conf -noconsole" config: oslist: windows description: Play Nam in DOSbox Daum - executable: dosbox_windows\\daum\\dosbox.exe - workingdir: dosbox_windows\\daum\\ - - arguments: '-conf dosbox_nam.conf -conf dosbox_nam_config_windows.conf -noconsole' + executable: "dosbox_windows\\\\daum\\\\dosbox.exe" + workingdir: "dosbox_windows\\\\daum\\\\" + - arguments: "-conf dosbox_nam.conf -conf dosbox_nam_config_windows.conf -noconsole" config: oslist: windows description: Nam - Configuration - executable: dosbox_windows\\dosbox.exe - workingdir: dosbox_windows\\ + executable: "dosbox_windows\\\\dosbox.exe" + workingdir: "dosbox_windows\\\\" - config: oslist: macos description: Launch @@ -157646,40 +154151,40 @@ - config: oslist: linux description: Launch - executable: dosbox_linux\\launch_nam_game.sh - workingdir: dosbox_linux\\ + executable: "dosbox_linux\\\\launch_nam_game.sh" + workingdir: "dosbox_linux\\\\" - config: oslist: linux description: Play Nam in DOSbox Daum - executable: dosbox_linux\\daum\\launch_nam_game_daum.sh - workingdir: dosbox_linux\\daum\\ + executable: "dosbox_linux\\\\daum\\\\launch_nam_game_daum.sh" + workingdir: "dosbox_linux\\\\daum\\\\" - config: oslist: linux description: Nam - Configuration - executable: dosbox_linux\\launch_nam_config.sh - workingdir: dosbox_linux\\ -'329660': {} -'329670': + executable: "dosbox_linux\\\\launch_nam_config.sh" + workingdir: "dosbox_linux\\\\" +"329660": {} +"329670": installDir: Silent Service 2 launch: - - arguments: '-conf dosbox_silentservice2.conf -conf dosbox_silentservice2_launch_windows.conf -noconsole' + - arguments: "-conf dosbox_silentservice2.conf -conf dosbox_silentservice2_launch_windows.conf -noconsole" config: oslist: windows description: Launch - executable: dosbox_windows\\dosbox.exe - workingdir: dosbox_windows\\ - - arguments: '-conf dosbox_silentservice2.conf -conf dosbox_silentservice2_launch_windows.conf -noconsole' + executable: "dosbox_windows\\\\dosbox.exe" + workingdir: "dosbox_windows\\\\" + - arguments: "-conf dosbox_silentservice2.conf -conf dosbox_silentservice2_launch_windows.conf -noconsole" config: oslist: windows description: Play Silent Service 2 in DOSBox Daum - executable: dosbox_windows\\daum\\dosbox.exe - workingdir: dosbox_windows\\daum\\ - - arguments: '-conf dosbox_silentservice2.conf -conf dosbox_silentservice2_config_windows.conf -noconsole' + executable: "dosbox_windows\\\\daum\\\\dosbox.exe" + workingdir: "dosbox_windows\\\\daum\\\\" + - arguments: "-conf dosbox_silentservice2.conf -conf dosbox_silentservice2_config_windows.conf -noconsole" config: oslist: windows description: Silent Service 2 - Configuration - executable: dosbox_windows\\dosbox.exe - workingdir: dosbox_windows\\ + executable: "dosbox_windows\\\\dosbox.exe" + workingdir: "dosbox_windows\\\\" - config: oslist: macos description: Launch @@ -157687,39 +154192,39 @@ - config: oslist: linux description: Launch - executable: dosbox_linux\\launch_silentservice2_game.sh - workingdir: dosbox_linux\\ + executable: "dosbox_linux\\\\launch_silentservice2_game.sh" + workingdir: "dosbox_linux\\\\" - config: oslist: linux description: Play Silent Service 2 in DOSBox Daum - executable: dosbox_linux\\daum\\launch_silentservice2_game_daum.sh - workingdir: dosbox_linux\\daum\\ + executable: "dosbox_linux\\\\daum\\\\launch_silentservice2_game_daum.sh" + workingdir: "dosbox_linux\\\\daum\\\\" - config: oslist: linux description: Silent Service 2 - Configuration - executable: dosbox_linux\\launch_silentservice2_config.sh - workingdir: dosbox_linux\\ -'329680': + executable: "dosbox_linux\\\\launch_silentservice2_config.sh" + workingdir: "dosbox_linux\\\\" +"329680": installDir: Task Force 1942 launch: - - arguments: '-conf dosbox_taskforce1942.conf -conf dosbox_taskforce1942_launch_windows.conf -noconsole' + - arguments: "-conf dosbox_taskforce1942.conf -conf dosbox_taskforce1942_launch_windows.conf -noconsole" config: oslist: windows description: Launch - executable: dosbox_windows\\dosbox.exe - workingdir: dosbox_windows\\ - - arguments: '-conf dosbox_taskforce1942.conf -conf dosbox_taskforce1942_launch_windows.conf -noconsole' + executable: "dosbox_windows\\\\dosbox.exe" + workingdir: "dosbox_windows\\\\" + - arguments: "-conf dosbox_taskforce1942.conf -conf dosbox_taskforce1942_launch_windows.conf -noconsole" config: oslist: windows description: Play Task Force 1942 in DOSBox Daum - executable: dosbox_windows\\daum\\dosbox.exe - workingdir: dosbox_windows\\daum\\ - - arguments: '-conf dosbox_taskforce1942.conf -conf dosbox_taskforce1942_config_windows.conf -noconsole' + executable: "dosbox_windows\\\\daum\\\\dosbox.exe" + workingdir: "dosbox_windows\\\\daum\\\\" + - arguments: "-conf dosbox_taskforce1942.conf -conf dosbox_taskforce1942_config_windows.conf -noconsole" config: oslist: windows description: Task Force 1942 - Configuration - executable: dosbox_windows\\dosbox.exe - workingdir: dosbox_windows\\ + executable: "dosbox_windows\\\\dosbox.exe" + workingdir: "dosbox_windows\\\\" - config: oslist: macos description: Launch @@ -157727,27 +154232,27 @@ - config: oslist: linux description: Launch - executable: dosbox_linux\\launch_taskforce1942_game.sh - workingdir: dosbox_linux\\ + executable: "dosbox_linux\\\\launch_taskforce1942_game.sh" + workingdir: "dosbox_linux\\\\" - config: oslist: linux description: Play Task Force 1942 in DOSBox Daum - executable: dosbox_linux\\daum\\launch_taskforce1942_game_daum.sh - workingdir: dosbox_linux\\daum\\ + executable: "dosbox_linux\\\\daum\\\\launch_taskforce1942_game_daum.sh" + workingdir: "dosbox_linux\\\\daum\\\\" - config: oslist: linux description: Task Force 1942 - Configuration - executable: dosbox_linux\\launch_taskforce1942_config.sh - workingdir: dosbox_linux\\ -'329690': + executable: "dosbox_linux\\\\launch_taskforce1942_config.sh" + workingdir: "dosbox_linux\\\\" +"329690": installDir: BasketBelle launch: - config: oslist: windows description: Launch executable: BasketBelle.exe -'329770': - installDir: '4089' +"329770": + installDir: "4089" launch: - config: oslist: windows @@ -157770,43 +154275,41 @@ executable: 4089.bat type: vr - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch with OSVR API - description_loc: - english: Launch with OSVR API executable: 4089-osvr.bat type: option1 -'329790': +"329790": installDir: Krosmaster 3D launch: - config: oslist: windows - executable: transition\\transition.exe + executable: "transition\\\\transition.exe" type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: transition/transition type: default - config: - osarch: '64' + osarch: "64" oslist: macos executable: Updater Krosmaster 3D.app/Contents/MacOS/transition type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: transition/transition type: default -'329830': +"329830": installDir: The Moon Sliver launch: - config: oslist: windows description: Launch executable: The Moon Sliver.exe -'329860': +"329860": installDir: CatlateralDamage launch: - config: @@ -157816,12 +154319,10 @@ - config: oslist: macos description: Launch 64-bit version - description_loc: - english: Launch 64-bit version executable: Catlateral Damage (64-bit).app type: default - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch 32-bit version executable: CatlateralDamage.x86 @@ -157834,27 +154335,25 @@ type: vr - config: oslist: windows - ownsdlc: '474720' + ownsdlc: "474720" description: Catlateral Damage VR (Requires HTC Vive) executable: CatlateralDamageVR.exe type: vr - config: oslist: macos description: Catlateral Damage (32-bit version) - description_loc: - english: Catlateral Damage (32-bit version) executable: Catlateral Damage.app type: option1 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch 64-bit version executable: CatlateralDamage.x86_64 type: none nameLocalized: japanese: にゃんこラテラル・ダメージ -'329950': {} -'329970': +"329950": {} +"329970": installDir: KeeperRL launch: - config: @@ -157870,13 +154369,13 @@ oslist: macos description: Launch executable: keeper_mac.command - - arguments: '--restore_settings' + - arguments: "--restore_settings" config: oslist: windows description: Clear settings executable: keeper.exe type: none -'329980': +"329980": installDir: ASA Remastered Edition launch: - config: @@ -157893,10 +154392,10 @@ description: Launch executable: start - config: - ownsdlc: '1561790' + ownsdlc: "1561790" executable: ASA_Bonus_DLC.zip type: none -'3300': +"3300": installDir: Bejeweled 2 Deluxe launch: - config: @@ -157905,7 +154404,7 @@ - config: oslist: macos executable: Bejeweled 2 Deluxe.app -'330000': +"330000": installDir: Kingdoms CCG launch: - config: @@ -157916,7 +154415,7 @@ oslist: macos description: Launch executable: KingdomsCCG.app -'330020': +"330020": installDir: ChildrenOfMorta launch: - config: @@ -157934,37 +154433,28 @@ description: Launch executable: ChildrenOfMorta type: default -'330100': +"330100": installDir: BossConstructor launch: - - arguments: >- - -cp - lib/natives-linux.jar;lib/natives-mac.jar;lib/natives-windows.jar;lib/lwjgl.jar;lib/slick.jar;lib/slick-util.jar;lib/lwjgl_util.jar;lib/jorbis-0.0.15.jar;lib/jogg-0.0.7.jar;lib/jinput.jar;lib/luaj-jse-3.0.jar;lib/steamworks4j-1.2.3.jar;build - -Xmx500m -Xms400m -XX:MaxDirectMemorySize=256m -Djava.library.path=native -jar bc.jar + - arguments: "-cp lib/natives-linux.jar;lib/natives-mac.jar;lib/natives-windows.jar;lib/lwjgl.jar;lib/slick.jar;lib/slick-util.jar;lib/lwjgl_util.jar;lib/jorbis-0.0.15.jar;lib/jogg-0.0.7.jar;lib/jinput.jar;lib/luaj-jse-3.0.jar;lib/steamworks4j-1.2.3.jar;build -Xmx500m -Xms400m -XX:MaxDirectMemorySize=256m -Djava.library.path=native -jar bc.jar" config: oslist: windows description: Launch BossConstructor executable: jre/bin/javaw.exe type: default - - arguments: >- - -cp - lib/natives-linux.jar:lib/natives-mac.jar:lib/natives-windows.jar:lib/lwjgl.jar:lib/slick.jar:lib/slick-util.jar:lib/lwjgl_util.jar:lib/jorbis-0.0.15.jar:lib/jogg-0.0.7.jar:lib/jinput.jar:lib/luaj-jse-3.0.jar:lib/steamworks4j-1.2.3.jar:build - -Xmx512m -Xms256m -XX:MaxDirectMemorySize=256m -Djava.library.path=native -jar bc.jar + - arguments: "-cp lib/natives-linux.jar:lib/natives-mac.jar:lib/natives-windows.jar:lib/lwjgl.jar:lib/slick.jar:lib/slick-util.jar:lib/lwjgl_util.jar:lib/jorbis-0.0.15.jar:lib/jogg-0.0.7.jar:lib/jinput.jar:lib/luaj-jse-3.0.jar:lib/steamworks4j-1.2.3.jar:build -Xmx512m -Xms256m -XX:MaxDirectMemorySize=256m -Djava.library.path=native -jar bc.jar" config: oslist: linux description: Launch executable: jre/bin/java type: default - - arguments: >- - -cp - lib/natives-linux.jar:lib/natives-mac.jar:lib/natives-windows.jar:lib/lwjgl.jar:lib/slick.jar:lib/slick-util.jar:lib/lwjgl_util.jar:lib/jorbis-0.0.15.jar:lib/jogg-0.0.7.jar:lib/jinput.jar:lib/luaj-jse-3.0.jar:lib/steamworks4j-1.2.3.jar:build - -Xmx4g -Xms600m -Djava.library.path=native -jar bc.jar + - arguments: "-cp lib/natives-linux.jar:lib/natives-mac.jar:lib/natives-windows.jar:lib/lwjgl.jar:lib/slick.jar:lib/slick-util.jar:lib/lwjgl_util.jar:lib/jorbis-0.0.15.jar:lib/jogg-0.0.7.jar:lib/jinput.jar:lib/luaj-jse-3.0.jar:lib/steamworks4j-1.2.3.jar:build -Xmx4g -Xms600m -Djava.library.path=native -jar bc.jar" config: oslist: macos description: Launch executable: bcmac.sh type: default -'330110': +"330110": installDir: Wild Frontera launch: - config: @@ -157979,7 +154469,7 @@ oslist: linux description: Launch executable: WildFrontera.x86 -'330180': +"330180": installDir: Pix the Cat launch: - config: @@ -157987,7 +154477,7 @@ description: Launch executable: PixTheCat.exe - config: - osarch: '64' + osarch: "64" oslist: macos description: Launch executable: PixTheCat.app @@ -157995,14 +154485,14 @@ oslist: linux description: Launch executable: PixtheCat -'330210': +"330210": installDir: Asteroids launch: - config: oslist: windows description: Launch executable: aslauncher.exe -'330270': +"330270": installDir: Warlocks launch: - config: @@ -158017,7 +154507,7 @@ oslist: linux description: Launch executable: Warlocks.x86 -'330350': +"330350": installDir: Robotex launch: - description: Launch @@ -158040,14 +154530,14 @@ oslist: windows description: Launch executable: rbtx.exe -'330370': +"330370": installDir: Reload launch: - config: oslist: windows description: Launch executable: reload.exe -'330390': +"330390": installDir: Grandia II Anniversary Edition launch: - config: @@ -158063,7 +154553,7 @@ nameLocalized: japanese: グランディアⅡ HDリマスター schinese: 冒險奇譚II高畫質重製版 -'330420': +"330420": installDir: The Interactive Adventures of Dog Mendonça and Pizzaboy launch: - config: @@ -158079,7 +154569,7 @@ oslist: macos description: Launch executable: godot.osx.opt.32 -'330450': +"330450": installDir: Runes of Brennos launch: - config: @@ -158090,7 +154580,7 @@ oslist: macos description: Launch executable: RunesOfBrennos.app -'330460': +"330460": installDir: Celestial Command launch: - config: @@ -158098,12 +154588,12 @@ description: Windows executable: CelestialCommand.exe - config: - osarch: '32' + osarch: "32" oslist: linux description: Linux 32 executable: CelestialCommand.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Linux 64 executable: CelestialCommand.x86_64 @@ -158111,28 +154601,28 @@ oslist: macos description: OSX univesal executable: CelestialCommand.app -'330470': +"330470": installDir: Over The Void launch: - description: Launch executable: Over The Void.exe -'330500': +"330500": installDir: planktOs launch: - config: oslist: windows - executable: .\\Planktos\\Binaries\\Win32\\Planktos.exe + executable: ".\\\\Planktos\\\\Binaries\\\\Win32\\\\Planktos.exe" type: default -'330520': +"330520": installDir: Tail Drift launch: - description: Launch executable: taildrift.exe -'330570': +"330570": installDir: Noct launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: Noct.exe @@ -158144,14 +154634,14 @@ oslist: linux description: Launch executable: Noct.x86 -'330580': +"330580": installDir: Shark Attack Deathmatch 2 launch: - config: oslist: windows description: Launch executable: Shark Attack Deathmatch 2.exe -'330590': +"330590": installDir: Independence War Deluxe launch: - config: @@ -158159,29 +154649,29 @@ description: Independence War executable: IWar.exe type: none - - description: 'Independence War: Defiance' - executable: \\Defiance\\IWDE_start.exe -'330620': - installDir: It's A Wipe! + - description: "Independence War: Defiance" + executable: "\\\\Defiance\\\\IWDE_start.exe" +"330620": + installDir: "It's A Wipe!" launch: - config: oslist: windows description: Launch executable: IAWgame.exe -'330660': +"330660": installDir: Lunas_Wandering_Stars launch: - - arguments: '-debug_steamapi' + - arguments: "-debug_steamapi" config: oslist: windows description: Launch executable: LunasWanderingStars.exe - - arguments: '-debug_steamapi' + - arguments: "-debug_steamapi" config: oslist: macos description: Launch executable: LunasWanderingStars.app -'330670': +"330670": installDir: DiscStorm launch: - config: @@ -158196,26 +154686,26 @@ oslist: linux description: Launch executable: DiscStorm.x86 -'330680': +"330680": installDir: Solar Struggle launch: - config: oslist: windows description: Launch executable: SolarStruggle.exe -'330720': +"330720": installDir: Flashpoint Campaigns Red Storm launch: - description: Launch executable: autorun.exe -'330760': +"330760": installDir: Running Shadow launch: - config: oslist: windows description: Launch executable: runningshadow.exe -'330770': +"330770": installDir: Radial-G Racing Revolved launch: - config: @@ -158234,14 +154724,12 @@ executable: Radial-G.exe type: othervr - config: - osarch: '64' + osarch: "64" oslist: windows description: on OSVR (beta channel only) - description_loc: - english: on OSVR (beta channel only) executable: Radial-G.exe type: option1 -'330820': +"330820": installDir: Read Only Memories launch: - config: @@ -158252,21 +154740,21 @@ - config: oslist: macos description: Launch - executable: ROM.app\\Contents\\MacOS\\ROM + executable: "ROM.app\\\\Contents\\\\MacOS\\\\ROM" type: default - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: ROM.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: ROM.x86_64 type: default -'330830': +"330830": installDir: Tales from the Borderlands launch: - config: @@ -158277,7 +154765,7 @@ oslist: macos description: Launch executable: Tales from the Borderlands.app -'330840': +"330840": installDir: Game of Thrones launch: - config: @@ -158288,14 +154776,14 @@ oslist: macos description: Launch executable: Game of Thrones.app -'330880': +"330880": installDir: Redemption launch: - config: oslist: windows description: Launch executable: Redemption.exe -'330990': +"330990": installDir: Demon Hunter Chronicles from Beyond launch: - config: @@ -158303,12 +154791,12 @@ description: Launch executable: DemonHunter.exe - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: DemonHunter_i386 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: DemonHunter_amd64 @@ -158316,7 +154804,7 @@ oslist: macos description: Launch executable: mac_steam.app/Contents/MacOS/mac_steam -'3310': +"3310": installDir: Chuzzle Deluxe launch: - config: @@ -158325,41 +154813,41 @@ - config: oslist: macos executable: Chuzzle Deluxe.app -'33100': +"33100": installDir: Alien Shooter launch: - executable: AlienShooter.exe -'331050': +"331050": installDir: DemonsAge launch: - - arguments: r$#33 + - arguments: "r$#33" config: oslist: windows executable: DemonsAge.exe type: default - - arguments: r$#33 + - arguments: "r$#33" config: oslist: macos executable: DemonsAge.app type: default -'33110': +"33110": installDir: Alien Shooter - Revisited launch: - executable: AlienShooter.exe -'331120': +"331120": installDir: Passing Pineview Forest launch: - description: Launch - executable: .autorun\\autorun.exe - workingdir: .autorun -'331160': + executable: ".autorun\\\\autorun.exe" + workingdir: ".autorun" +"331160": installDir: Cars launch: - config: oslist: windows description: Launch executable: Cars.exe -'331190': +"331190": installDir: Master Spy launch: - config: @@ -158370,11 +154858,11 @@ oslist: macos description: Launch executable: MasterSpy.app -'33120': +"33120": installDir: Alien Shooter 2 - Reloaded launch: - executable: AlienShooter.exe -'331200': +"331200": installDir: Grass Simulator launch: - config: @@ -158389,7 +154877,7 @@ oslist: linux description: Launch executable: Grass Simulator.x86 -'331210': +"331210": installDir: Bolt Riley Chapter 1 launch: - config: @@ -158405,22 +154893,22 @@ executable: Bolt_Riley_Chapter_1.x86 type: default - config: - ownsdlc: '510820' + ownsdlc: "510820" description: Bolt Riley Chapter 1 Soundtrack - executable: Bolt Riley Chapter 1 OST\\mp3\\ + executable: "Bolt Riley Chapter 1 OST\\\\mp3\\\\" type: option1 - workingdir: Bolt Riley Chapter 1 OST\\mp3\\ -'331220': + workingdir: "Bolt Riley Chapter 1 OST\\\\mp3\\\\" +"331220": installDir: Thief Town launch: - config: - osarch: '64' + osarch: "64" oslist: macos description: Launch executable: run.sh type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: run.sh @@ -158430,7 +154918,7 @@ description: Launch executable: run.vbs type: default -'331290': +"331290": installDir: Miko Gakkou Second Year launch: - config: @@ -158442,11 +154930,11 @@ oslist: windows description: Settings executable: miko2.exe -'33130': +"33130": installDir: Zombie Shooter launch: - executable: ZombieShooter.exe -'331340': +"331340": installDir: Tulpa launch: - config: @@ -158458,48 +154946,48 @@ description: Launch Tulpa for OSX executable: Tulpa.app - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch Tulpa on Linux executable: Tulpa.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch Tulpa on Linux executable: Tulpa.x86_64 -'331360': +"331360": installDir: Heavy Metal Machines launch: - - arguments: '--crashHandler=Legacy' + - arguments: "--crashHandler=Legacy" config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: WDLauncherSO.exe type: none - - arguments: '--crashHandler=Legacy' + - arguments: "--crashHandler=Legacy" config: betakey: rafatest oslist: windows description: WDLauncher executable: WDLauncher.exe type: none -'331390': - installDir: Winged Sakura Mindy's Arc +"331390": + installDir: "Winged Sakura Mindy's Arc" launch: - config: oslist: windows description: Launch - executable: Winged Sakura Mindy's Arc.exe + executable: "Winged Sakura Mindy's Arc.exe" - config: oslist: linux description: Launch - executable: Winged Sakura Mindy's Arc.x86 + executable: "Winged Sakura Mindy's Arc.x86" - config: oslist: macos description: Launch - executable: Winged Sakura Mindy's Arc.app -'331400': + executable: "Winged Sakura Mindy's Arc.app" +"331400": installDir: Luna Shattered Hearts Episode 1 launch: - config: @@ -158510,12 +154998,12 @@ oslist: macos description: Launch executable: Luna.app -'331430': - installDir: Toby's Island +"331430": + installDir: "Toby's Island" launch: - executable: Game.exe type: default -'331440': +"331440": installDir: bit Dungeon II launch: - config: @@ -158526,12 +155014,12 @@ oslist: macos description: Launch executable: bitDungeonII.app -'331450': +"331450": installDir: Finding Nemo launch: - description: Launch executable: NemoAdv.exe -'331460': +"331460": installDir: Rooms2 launch: - config: @@ -158547,20 +155035,18 @@ description: Launch executable: Rooms2.x86 - config: - osarch: '64' + osarch: "64" oslist: windows description: Steam VR Launch executable: Rooms2_VR.exe type: vr -'331470': +"331470": installDir: Everlasting Summer launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch - description_loc: - english: Launch executable: Everlasting Summer.exe type: none - config: @@ -158573,7 +155059,7 @@ description: Launch executable: Everlasting Summer.sh - config: - osarch: '32' + osarch: "32" oslist: windows executable: Everlasting Summer-32.exe type: none @@ -158581,11 +155067,9 @@ betakey: beta oslist: windows description: Launch - description_loc: - english: Launch executable: Everlasting Summer.exe type: none -'331480': +"331480": installDir: Pinstripe launch: - config: @@ -158602,31 +155086,31 @@ description: Launch executable: Pinstripe.x86 type: none -'331500': +"331500": installDir: Executive Assault launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Executive Assault executable: ExecutiveAssault64.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows description: Executive Assault 32-bit v1.199.992 executable: ExecutiveAssault.exe type: option1 -'331510': +"331510": installDir: Amphora launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: Amphora.exe - config: - osarch: '64' + osarch: "64" oslist: macos description: Launch executable: Amphora.app @@ -158634,30 +155118,30 @@ oslist: linux description: Launch executable: Amphora -'331570': +"331570": installDir: Wimp Who Stole My Pants launch: - config: oslist: windows description: Launch executable: WimpStarter.exe -'331580': +"331580": installDir: ULTRAWORLD EXODUS launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch - executable: bin\\win_x64\\ULTRAWORLD EXODUS.exe + executable: "bin\\\\win_x64\\\\ULTRAWORLD EXODUS.exe" type: default -'331600': +"331600": installDir: OPPW3 launch: - config: oslist: windows description: Launch executable: oppw3.exe -'331610': +"331610": installDir: Movie Studio Boss The Sequel launch: - config: @@ -158668,24 +155152,24 @@ oslist: macos description: Launch executable: MovieStudioBossTheSequel.app -'331650': +"331650": installDir: Carmageddon TDR 2000 launch: - config: oslist: windows description: Launch executable: TDR2000.exe - - arguments: '-setup' + - arguments: "-setup" config: oslist: windows description: TDR 2000 Setup executable: TDR2000.exe - - arguments: '-f' + - arguments: "-f" config: oslist: windows description: TDR 2000 Hi-Res Mode executable: TDR2000.exe -'331660': +"331660": installDir: Prehistorik launch: - config: @@ -158696,11 +155180,11 @@ oslist: macos description: Launch executable: prehistorik.app -'331670': +"331670": installDir: The Jackbox Party Pack launch: - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Launcher.sh @@ -158718,7 +155202,7 @@ oslist: windows executable: TJPP.exe type: default -'331690': +"331690": installDir: crossingsouls launch: - config: @@ -158733,49 +155217,49 @@ oslist: linux executable: crossingsouls.x86 type: none -'331710': {} -'331720': +"331710": {} +"331720": installDir: Survivor Squad Gauntlets launch: - config: oslist: windows - description: 'Play Survivor Squad: Gauntlets' + description: "Play Survivor Squad: Gauntlets" executable: SurvivorSquad_Gauntlets.exe type: none - config: oslist: macos - description: 'Play Survivor Squad: Gauntlets' + description: "Play Survivor Squad: Gauntlets" executable: SurvivorSquad_Gauntlets.app type: none - config: oslist: linux - description: 'Play Survivor Squad: Gauntlets' + description: "Play Survivor Squad: Gauntlets" executable: SurvivorSquad_Gauntlets.x86 type: none - config: oslist: windows - ownsdlc: '419660' - description: 'Play Thank You: The Game 2' + ownsdlc: "419660" + description: "Play Thank You: The Game 2" executable: thank_you2/ThankYou_TheGame2.exe type: none - config: oslist: macos - ownsdlc: '419660' - description: 'Play Thank You: The Game 2' + ownsdlc: "419660" + description: "Play Thank You: The Game 2" executable: thank_you2/ThankYou_TheGame2.app type: none - config: oslist: linux - ownsdlc: '419660' - description: 'Play Thank You: The Game 2' + ownsdlc: "419660" + description: "Play Thank You: The Game 2" executable: thank_you2/ThankYou_TheGame2.x86 type: none -'331750': +"331750": installDir: WALL E launch: - description: Launch - executable: WALL-E\\WALL-E.exe -'331760': + executable: "WALL-E\\\\WALL-E.exe" +"331760": installDir: Supreme League of Patriots Issue 1 launch: - config: @@ -158787,51 +155271,51 @@ description: Launch executable: Ep1Mac.app - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: Ep1Linux.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Ep1Linux.x86_64 -'331790': +"331790": installDir: Data Hacker Reboot launch: - description: Launch executable: Game.exe -'33180': +"33180": installDir: Zombie Shooter 2 launch: - config: oslist: windows executable: ZombieShooter2.exe type: default -'331810': +"331810": installDir: Lost Region launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: WindowsNoEditor/LostRegionLauncher.exe type: none - - arguments: '-vulkan' + - arguments: "-vulkan" config: - osarch: '64' + osarch: "64" oslist: windows description: Lost Region Vulkan API(Experimental) executable: WindowsNoEditor/SurvivalGame/Binaries/Win64/SurvivalGame-Win64-Shipping.exe type: option1 - - arguments: '-dx12' + - arguments: "-dx12" config: - osarch: '64' + osarch: "64" oslist: windows description: Lost Region DirectX12(Experimental) executable: WindowsNoEditor/SurvivalGame/Binaries/Win64/SurvivalGame-Win64-Shipping.exe type: option2 -'331870': +"331870": installDir: AER launch: - config: @@ -158846,17 +155330,17 @@ oslist: linux executable: AER.x86 type: default -'331880': +"331880": installDir: Truck Mechanic 2015 launch: - description: Launch executable: tms.exe -'331910': +"331910": installDir: Beach Resort Simulator launch: - description: Launch executable: BeachResort.exe -'331920': +"331920": installDir: Airline Tycoon Deluxe launch: - config: @@ -158871,27 +155355,27 @@ oslist: macos description: Launch executable: Airline Tycoon Deluxe.app -'331970': +"331970": installDir: Treasure Planet Battle at Procyon launch: - description: Launch executable: tp_win32.exe -'331980': +"331980": installDir: Last Inua launch: - config: oslist: macos description: Launch - executable: LastInua_osx.app\\Contents\\MacOS\\Last Inua + executable: "LastInua_osx.app\\\\Contents\\\\MacOS\\\\Last Inua" - config: oslist: windows description: Launch executable: LastInua_x86.exe -'3320': +"3320": installDir: Insaniquarium Deluxe launch: - executable: Insaniquarium.exe -'332070': +"332070": installDir: School of Dragons How to Train Your Dragon launch: - config: @@ -158902,18 +155386,18 @@ oslist: macos description: Launch executable: DOMain.app -'33210': +"33210": installDir: Dawn of Discovery launch: - executable: Anno4.exe -'332150': +"332150": installDir: LEVEL_UP launch: - config: oslist: windows description: Launch executable: game.exe -'332200': +"332200": installDir: Axiom Verge launch: - config: @@ -158928,32 +155412,29 @@ oslist: linux description: Launch executable: AxiomVerge -'332250': +"332250": installDir: The Next Penelope launch: - config: oslist: windows description: Launch executable: nw.exe - - arguments: >- - --disable-extensions --disable-plugins --disable-internal-flash --disable-popup-blocking --enable-gamepad - --enable-html5-camera --ignore-gpu-blacklist --file-descriptor-limit<40000> --allow-file-access-from-files - --disable-software-rasterizer + - arguments: "--disable-extensions --disable-plugins --disable-internal-flash --disable-popup-blocking --enable-gamepad --enable-html5-camera --ignore-gpu-blacklist --file-descriptor-limit<40000> --allow-file-access-from-files --disable-software-rasterizer" config: oslist: macos description: Launch executable: nw.app - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: nw -'332260': +"332260": installDir: Cars Mater-National launch: - description: Launch executable: Cars_Mater.exe -'332270': +"332270": installDir: Gunmetal Arcadia launch: - config: @@ -158969,59 +155450,59 @@ oslist: linux description: Launch executable: GunArc_NFML -'33229': {} -'33230': - installDir: Assassin's Creed 2 +"33229": {} +"33230": + installDir: "Assassin's Creed 2" launch: - - arguments: '-uplay_steam_mode' + - arguments: "-uplay_steam_mode" config: oslist: windows description: AssassinsCreedIIGame.exe executable: AssassinsCreedIIGame.exe - config: oslist: macos - description: Assassin's Creed 2 - executable: Assassin's Creed 2.app -'332310': + description: "Assassin's Creed 2" + executable: "Assassin's Creed 2.app" +"332310": installDir: LEGO Worlds launch: - config: betakey: testsession - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: LEGO_Worlds_DX11.exe type: none - config: betakey: qa - osarch: '64' + osarch: "64" oslist: windows executable: LEGO_Worlds_DX11.exe type: none - config: betakey: master - osarch: '64' + osarch: "64" oslist: windows description: Launch 64-bit executable: LEGO_Worlds_DX11.exe type: default - config: betakey: design - osarch: '64' + osarch: "64" oslist: windows description: Launch 64-bit executable: LEGO_Worlds_DX11.exe type: default - config: betakey: legobuilds - osarch: '64' + osarch: "64" oslist: windows description: Launch 64-bit executable: LEGO_Worlds_DX11.exe type: default - config: betakey: qa2 - osarch: '64' + osarch: "64" oslist: windows description: Launch 64-bit executable: LEGO_Worlds_DX11.exe @@ -159031,21 +155512,21 @@ description: Launch executable: LEGO_Worlds.exe type: default -'332330': +"332330": installDir: ShooterUltimate launch: - config: oslist: windows description: Launch executable: ShooterUltimate.exe -'332370': +"332370": installDir: Miko Gakkou Monogatari Kaede Episode launch: - config: oslist: windows executable: mikostory2.exe type: default -'332380': +"332380": installDir: Asguaard launch: - config: @@ -159053,10 +155534,10 @@ description: Launch executable: Asguaard.exe - config: - ownsdlc: '362950' + ownsdlc: "362950" description: View Walkthrough - executable: Guide\\Asguaard-Official-Guide.pdf -'332390': + executable: "Guide\\\\Asguaard-Official-Guide.pdf" +"332390": installDir: Undefeated launch: - config: @@ -159064,17 +155545,17 @@ description: Launch executable: Undefeated.exe - config: - ownsdlc: '362980' + ownsdlc: "362980" description: View Walkthrough - executable: Guide\\Undefeated-Official-Guide.pdf -'332400': + executable: "Guide\\\\Undefeated-Official-Guide.pdf" +"332400": installDir: Girlfriend Rescue launch: - config: oslist: windows description: Launch executable: GirlfriendRescue.exe -'332410': +"332410": installDir: Moonchild launch: - config: @@ -159082,48 +155563,44 @@ description: Launch executable: Moonchild.exe - config: - ownsdlc: '366710' + ownsdlc: "366710" description: View Walkthrough - executable: Guide\\Moonchild-Official-Walkthrough.pdf -'332480': + executable: "Guide\\\\Moonchild-Official-Walkthrough.pdf" +"332480": installDir: Phoenix Force launch: - config: oslist: windows description: Launch executable: PhoenixForceXNA.exe -'332490': +"332490": installDir: Battle Fleet 2 launch: - - arguments: \"-vrmode none\" + - arguments: "\\\"-vrmode none\\\"" config: oslist: windows description: Launch Battle Fleet 2 - description_loc: - english: Launch Battle Fleet 2 executable: Battle Fleet 2.exe type: none - config: oslist: macos description: Launch executable: Battle Fleet 2.app - - arguments: \"-vrmode OpenVR\" + - arguments: "\\\"-vrmode OpenVR\\\"" config: oslist: windows description: Battle Fleet 2 - description_loc: - english: Battle Fleet 2 executable: Battle Fleet 2.exe type: vr -'332500': +"332500": installDir: GRAV launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: .\\Binaries\\Win64\\CAGGame-Win64-Shipping.exe - workingdir: .\\Binaries\\Win64\\ -'332530': + executable: ".\\\\Binaries\\\\Win64\\\\CAGGame-Win64-Shipping.exe" + workingdir: ".\\\\Binaries\\\\Win64\\\\" +"332530": installDir: Shutshimi launch: - config: @@ -159138,7 +155615,7 @@ oslist: linux description: Launch Shutshimi executable: Shutshimi.x86 -'332540': +"332540": installDir: We Slay Monsters launch: - config: @@ -159149,81 +155626,61 @@ oslist: macos description: Launch executable: weslaymonsters.app -'332570': +"332570": installDir: Amazing Frog launch: - config: oslist: windows description: Amazing Frog? V2 ( Being Remastered ) - description_loc: - english: Amazing Frog? V2 ( Being Remastered ) executable: remastered/AmazingFrog.exe type: option1 - config: oslist: macos description: Amazing Frog? V2 ( Being Remastered ) - description_loc: - english: Amazing Frog? V2 ( Being Remastered ) executable: remastered/AmazingFrog.app type: option1 - config: oslist: linux description: Amazing Frog? V2 ( Being Remastered ) - description_loc: - english: Amazing Frog? V2 ( Being Remastered ) executable: remastered/AmazingFrog type: option1 - config: oslist: windows description: Amazing Frog? BETA V3 ( The Next Generation ) - description_loc: - english: Amazing Frog? BETA V3 ( The Next Generation ) executable: V3/AmazingFrog.exe type: option1 - config: oslist: macos description: Amazing Frog? BETA V3 ( The Next Generation ) - description_loc: - english: Amazing Frog? BETA V3 ( The Next Generation ) executable: V3/AmazingFrog.app type: option1 - config: oslist: linux description: Amazing Frog? BETA V3 ( The Next Generation ) - description_loc: - english: Amazing Frog? BETA V3 ( The Next Generation ) executable: V3/AmazingFrog type: option1 - config: oslist: windows description: Amazing Frog? Legacy ( The Original ) - description_loc: - english: Amazing Frog? Legacy ( The Original ) executable: AmazingFrog.exe type: option1 - config: oslist: macos description: Amazing Frog? Legacy ( The Original ) - description_loc: - english: Amazing Frog? Legacy ( The Original ) executable: AmazingFrog.app type: option1 - config: - osarch: '32' + osarch: "32" oslist: linux description: Amazing Frog? Legacy ( The Original ) - description_loc: - english: Amazing Frog? Legacy ( The Original ) executable: AmazingFrog.x86 type: option1 - config: oslist: linux description: Amazing Frog? Legacy ( The Original ) - description_loc: - english: Amazing Frog? Legacy ( The Original ) executable: AmazingFrog.x86_64 type: option1 -'332580': +"332580": installDir: Mimpi launch: - config: @@ -159234,7 +155691,7 @@ oslist: macos description: Launch executable: MIMPI.app -'332610': +"332610": installDir: Mystik_Belle launch: - config: @@ -159249,7 +155706,7 @@ oslist: linux description: Launch executable: run.sh -'332620': +"332620": installDir: Poncho launch: - config: @@ -159267,7 +155724,7 @@ description: Launch executable: Poncho.x86 type: default -'332630': +"332630": installDir: The Guilt and the Shadow launch: - config: @@ -159278,7 +155735,7 @@ oslist: macos description: Launch executable: TGATSmac.app -'332650': +"332650": installDir: The Exiled launch: - config: @@ -159293,32 +155750,32 @@ oslist: macos executable: exiled.app/Contents/MacOS/exiled type: default -'33270': +"33270": installDir: Cloudy with a Chance of Meatballs launch: - executable: JadeEngine_Final.exe -'332700': +"332700": installDir: Mike was Cursed launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Home.exe type: default -'332710': +"332710": installDir: 1Quest launch: - description: Launch executable: 1Quest.exe -'332730': +"332730": installDir: BarbarianBrawl launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: GameWin32.exe -'332760': +"332760": installDir: Friendship Club launch: - config: @@ -159331,35 +155788,35 @@ executable: Friendship Club.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: Friendship Club (Linux) executable: game -'332780': {} -'332790': +"332780": {} +"332790": installDir: The Darkness Assault launch: - config: oslist: windows description: Launch executable: Darkness Assault.exe -'33280': +"33280": installDir: James Cameron Avatar launch: - - executable: bin\\Avatar.exe -'332800': - installDir: Five Nights at Freddy's 2 + - executable: "bin\\\\Avatar.exe" +"332800": + installDir: "Five Nights at Freddy's 2" launch: - config: oslist: windows description: Launch executable: FiveNightsatFreddys2.exe -'332810': - installDir: Midnight Mysteries Witches of Abraham - Collector's Edition +"332810": + installDir: "Midnight Mysteries Witches of Abraham - Collector's Edition" launch: - description: Launch executable: MidnightMysteries_WitchesOfAbrahamCE.exe -'332830': +"332830": installDir: Prelogate launch: - config: @@ -159367,17 +155824,17 @@ description: Launch executable: Prelogate.exe - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: Prelogate.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Prelogate.x86_64 -'332880': - installDir: Don't Shoot Yourself! +"332880": + installDir: "Don't Shoot Yourself!" launch: - config: oslist: windows @@ -159387,31 +155844,31 @@ oslist: macos description: Launch executable: dsy.app -'332950': +"332950": installDir: Dark Deception launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: DDeception.exe type: default -'332970': +"332970": installDir: Storm United launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch Win64 executable: WindowsClient/StormUnited/Binaries/Win64/StormUnitedClient-Win64-Shipping.exe workingdir: WindowsClient/StormUnited/Binaries/Win64 - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch Win32 executable: WindowsClient/StormUnited/Binaries/Win32/StormUnitedClient-Win32-Shipping.exe workingdir: WindowsClient/StormUnited/Binaries/Win32 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch Linux64 executable: LinuxClient/StormUnited/Binaries/Linux/StormUnitedClient-Linux-Shipping @@ -159423,7 +155880,7 @@ executable: MacClient/StormUnited.app/Contents/MacOS/StormUnited type: none workingdir: StormUnited.app/Contents/MacOS/ -'3330': +"3330": installDir: Zuma Deluxe launch: - config: @@ -159432,41 +155889,41 @@ - config: oslist: macos executable: Zuma Deluxe.app -'333100': +"333100": installDir: Demesne launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: Demesne.exe type: default -'333120': +"333120": installDir: Inside The Gear launch: - description: Launch executable: InsideTheGear1.01.exe -'333130': +"333130": installDir: Do Not Fall launch: - description: Launch executable: Launcher.exe -'33320': +"33320": installDir: Prince of Persia Forgotten Sands launch: - - arguments: '-uplay_steam_mode' + - arguments: "-uplay_steam_mode" executable: Prince of Persia.exe -'333210': +"333210": installDir: Kaiju-A-GoGo launch: - description: Launch executable: kaiju.exe -'333220': +"333220": installDir: Cherry Tree High I My Girls launch: - executable: Game.exe type: default -'333250': +"333250": installDir: Forward to the Sky launch: - config: @@ -159476,19 +155933,19 @@ - config: oslist: macos description: Launch - executable: ForwardToTheSky.app\\Contents\\MacOS\\ForwardToTheSky + executable: "ForwardToTheSky.app\\\\Contents\\\\MacOS\\\\ForwardToTheSky" - config: oslist: linux description: Launch executable: ForwardToTheSky.x86 -'333260': - installDir: Marvin's Mittens +"333260": + installDir: "Marvin's Mittens" launch: - config: oslist: windows description: Launch executable: Jumpman.exe -'333290': +"333290": installDir: Mos Speedrun 2 launch: - config: @@ -159503,7 +155960,7 @@ oslist: macos description: Launch executable: Mos Speedrun 2.app -'333300': +"333300": installDir: ADOM launch: - config: @@ -159518,7 +155975,7 @@ oslist: linux description: Launch executable: adom -'333330': +"333330": installDir: Song of the Myrne What Lies Beneath launch: - config: @@ -159534,7 +155991,7 @@ oslist: macos description: Launch executable: WhatLiesBeneath.app -'333340': +"333340": installDir: StarRangers launch: - config: @@ -159546,16 +156003,16 @@ description: Launch executable: Star Rangers.app - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: Star Rangers.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Star Rangers.x86_64 -'333350': +"333350": installDir: Cults and Daggers launch: - config: @@ -159566,14 +156023,14 @@ oslist: macos description: Launch executable: cnd.app -'333380': +"333380": installDir: SilverQuest Gaiden launch: - config: oslist: windows description: Launch executable: SilverQuest Gaiden.exe -'333390': +"333390": installDir: Tales of Aravorn Seasons Of The Wolf launch: - config: @@ -159588,39 +156045,31 @@ oslist: linux description: Launch executable: SOTW.sh -'333420': +"333420": installDir: Cossacks 3 launch: - config: betakey: default oslist: windows description: Game - description_loc: - english: Game executable: cossacks.exe type: default - config: betakey: default oslist: windows description: Config - description_loc: - english: Config executable: config.exe type: config - config: betakey: default oslist: windows description: Editor - description_loc: - english: Editor executable: editor.exe type: editor - config: betakey: default oslist: windows description: Mod Manager - description_loc: - english: Mod Manager executable: modman.exe type: none - config: @@ -159642,194 +156091,152 @@ betakey: default oslist: linux description: Mod Manager - description_loc: - english: Mod Manager executable: modman type: none - config: betakey: beta - osarch: '64' + osarch: "64" oslist: windows description: Game - description_loc: - english: Game - executable: bin\\win64\\cossacks.exe + executable: "bin\\\\win64\\\\cossacks.exe" type: default - config: betakey: beta - osarch: '64' + osarch: "64" oslist: windows description: Config - description_loc: - english: Config - executable: bin\\win64\\config.exe + executable: "bin\\\\win64\\\\config.exe" type: config - config: betakey: beta - osarch: '64' + osarch: "64" oslist: windows description: Editor - description_loc: - english: Editor - executable: bin\\win64\\editor.exe + executable: "bin\\\\win64\\\\editor.exe" type: editor - config: betakey: beta - osarch: '64' + osarch: "64" oslist: windows description: Mod Manager - description_loc: - english: Mod Manager - executable: bin\\win64\\modman.exe + executable: "bin\\\\win64\\\\modman.exe" type: none - config: betakey: beta - osarch: '32' + osarch: "32" oslist: windows description: Game - description_loc: - english: Game - executable: bin\\win32\\cossacks.exe + executable: "bin\\\\win32\\\\cossacks.exe" type: default - config: betakey: beta - osarch: '32' + osarch: "32" oslist: windows description: Config - description_loc: - english: Config - executable: bin\\win32\\config.exe + executable: "bin\\\\win32\\\\config.exe" type: config - config: betakey: beta - osarch: '32' + osarch: "32" oslist: windows description: Editor - description_loc: - english: Editor - executable: bin\\win32\\editor.exe + executable: "bin\\\\win32\\\\editor.exe" type: editor - config: betakey: beta - osarch: '32' + osarch: "32" oslist: windows description: Mod Manager - description_loc: - english: Mod Manager - executable: bin\\win32\\modman.exe + executable: "bin\\\\win32\\\\modman.exe" type: none - config: betakey: beta - osarch: '64' + osarch: "64" oslist: linux description: Game - description_loc: - english: Game executable: bin/gnu64/cossacks type: default - config: betakey: beta - osarch: '64' + osarch: "64" oslist: linux description: Config - description_loc: - english: Config executable: bin/gnu64/config type: config - config: betakey: beta - osarch: '64' + osarch: "64" oslist: linux description: Editor - description_loc: - english: Editor executable: bin/gnu64/editor type: editor - config: betakey: beta - osarch: '64' + osarch: "64" oslist: linux description: Mod Manager - description_loc: - english: Mod Manager executable: bin/gnu64/modman type: none - config: betakey: beta - osarch: '32' + osarch: "32" oslist: linux description: Game - description_loc: - english: Game executable: bin/gnu32/cossacks type: default - config: betakey: beta - osarch: '32' + osarch: "32" oslist: linux description: Config - description_loc: - english: Config executable: bin/gnu32/config type: config - config: betakey: beta - osarch: '32' + osarch: "32" oslist: linux description: Editor - description_loc: - english: Editor executable: bin/gnu32/editor type: editor - config: betakey: beta - osarch: '32' + osarch: "32" oslist: linux description: Mod Manager - description_loc: - english: Mod Manager executable: bin/gnu32/modman type: none - config: betakey: beta oslist: macos description: Game - description_loc: - english: Game executable: cossacks.app/Contents/MacOS/cossacks type: default - config: betakey: beta oslist: macos description: Config - description_loc: - english: Config executable: cossacks.app/Contents/MacOS/config type: config - config: betakey: beta oslist: macos description: Editor - description_loc: - english: Editor executable: cossacks.app/Contents/MacOS/editor type: editor - config: betakey: beta oslist: macos description: Mod Manager - description_loc: - english: Mod Manager executable: cossacks.app/Contents/MacOS/modman type: none -'333430': +"333430": installDir: Sinking Island launch: - config: oslist: windows description: Launch executable: Sinking Island.exe -'333490': +"333490": installDir: Replay - VHS is not dead - Beta launch: - config: @@ -159841,7 +156248,7 @@ description: Launch executable: Replay.app type: none -'333510': +"333510": installDir: Isbarah launch: - config: @@ -159853,16 +156260,16 @@ description: Launch executable: isbarah.app - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: isbarah.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: isbarah.x86_64 -'333530': +"333530": installDir: AERENA - Masters Edition launch: - config: @@ -159873,7 +156280,7 @@ oslist: macos description: Launch executable: Aerena.app -'333540': +"333540": installDir: Neocolonialism launch: - config: @@ -159888,8 +156295,8 @@ oslist: linux description: Launch executable: Neocolonialism -'333580': - installDir: 'Slow Down, Bull' +"333580": + installDir: "Slow Down, Bull" launch: - config: oslist: windows @@ -159903,14 +156310,14 @@ oslist: macos description: Launch executable: SlowDownBull.app -'333600': +"333600": installDir: NEKOPARA Vol. 1 launch: - config: oslist: windows description: Launch executable: nekopara_vol1.exe -'333640': +"333640": installDir: Caves of Qud launch: - config: @@ -159922,21 +156329,21 @@ description: Launch executable: CoQ.app - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch 64-bit executable: CoQ.x86_64 - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: CoQ.x86 -'333650': +"333650": installDir: PahelikaRV launch: - description: Launch executable: PahelikaRVJNIRelease.exe -'333660': +"333660": installDir: Towers of Altrac launch: - config: @@ -159947,7 +156354,7 @@ oslist: macos description: Launch executable: Towers of Altrac.app -'333690': +"333690": installDir: Epanalepsis launch: - config: @@ -159962,7 +156369,7 @@ oslist: linux description: Launch executable: epanalepsis -'333730': +"333730": installDir: DarkGates launch: - config: @@ -159973,21 +156380,21 @@ oslist: linux description: Launch executable: dark-gates -'333740': +"333740": installDir: The Falling Sun launch: - config: oslist: windows description: Launch executable: The Falling Sun.exe -'333760': +"333760": installDir: Vintage Year launch: - config: oslist: windows description: Launch executable: Vintage Year.exe -'333820': +"333820": installDir: Out of the Park Baseball 16 launch: - config: @@ -160002,7 +156409,7 @@ oslist: linux description: Launch executable: ootp16.sh -'333830': +"333830": installDir: Franchise Hockey Manager 2 launch: - config: @@ -160013,7 +156420,7 @@ oslist: macos description: Launch FHM 2 (Mac OS X) executable: Franchise Hockey Manager 2.app -'333860': +"333860": installDir: Project Night launch: - config: @@ -160025,21 +156432,21 @@ description: Launch executable: ProjectNight.app - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: ProjectNight.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: ProjectNight.x86_64 -'333870': +"333870": installDir: Feel-A-Maze launch: - description: Launch executable: feelamaze.exe -'333880': +"333880": installDir: Braveland Wizard launch: - config: @@ -160050,74 +156457,66 @@ oslist: macos description: Launch executable: Braveland Wizard.app - - arguments: '-screen-fullscreen 0' + - arguments: "-screen-fullscreen 0" config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: Braveland Wizard.x86 type: none - - arguments: '-screen-fullscreen 0' + - arguments: "-screen-fullscreen 0" config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Braveland Wizard.x86_64 type: none -'33390': +"33390": installDir: Zeit2 launch: - executable: Zeit2.exe -'333930': +"333930": installDir: Dirty Bomb launch: - - arguments: >- - -flUrl=\"https://api.fireteam.net\" -flDomain=\"net.nexon.shooter.steam\" - -flClientIdSecret=\"086418c2-980e-5f4c-a5b3-140414328555:f7f8ba288459923e94240364240e79c4ae95fdfe\" + - arguments: "-flUrl=\\\"https://api.fireteam.net\\\" -flDomain=\\\"net.nexon.shooter.steam\\\" -flClientIdSecret=\\\"086418c2-980e-5f4c-a5b3-140414328555:f7f8ba288459923e94240364240e79c4ae95fdfe\\\"" config: oslist: windows executable: DirtyBombLauncher.exe type: default - - arguments: >- - -flUrl=\"https://api.fireteam.net\" -flDomain=\"net.nexon.shooter.steam\" - -flClientIdSecret=\"086418c2-980e-5f4c-a5b3-140414328555:f7f8ba288459923e94240364240e79c4ae95fdfe\" -WITH_GFE + - arguments: "-flUrl=\\\"https://api.fireteam.net\\\" -flDomain=\\\"net.nexon.shooter.steam\\\" -flClientIdSecret=\\\"086418c2-980e-5f4c-a5b3-140414328555:f7f8ba288459923e94240364240e79c4ae95fdfe\\\" -WITH_GFE" config: betakey: ext_test oslist: windows description: Shadowplay Highlights executable: Binaries/Win64/ShooterGame-Win32-Shipping.exe type: none - - arguments: >- - -flUrl=\"https://api.fireteam.net\" -flDomain=\"net.nexon.shooter.steam\" - -flClientIdSecret=\"086418c2-980e-5f4c-a5b3-140414328555:f7f8ba288459923e94240364240e79c4ae95fdfe\" -WITH_GFE + - arguments: "-flUrl=\\\"https://api.fireteam.net\\\" -flDomain=\\\"net.nexon.shooter.steam\\\" -flClientIdSecret=\\\"086418c2-980e-5f4c-a5b3-140414328555:f7f8ba288459923e94240364240e79c4ae95fdfe\\\" -WITH_GFE" config: betakey: Beta oslist: windows description: Coherent executable: Binaries/Win32/ShooterGame-Win32-Shipping.exe type: none - - arguments: >- - -flUrl=\"https://api.fireteam.net\" -flDomain=\"com.warchest.dirtybomb.staging\" - -flClientIdSecret=\"086418c2-980e-5f4c-a5b3-140414328555:9f074c3d8d805ca95bf9f0ceb99ce8acacc0e947\"-with_gfe + - arguments: "-flUrl=\\\"https://api.fireteam.net\\\" -flDomain=\\\"com.warchest.dirtybomb.staging\\\" -flClientIdSecret=\\\"086418c2-980e-5f4c-a5b3-140414328555:9f074c3d8d805ca95bf9f0ceb99ce8acacc0e947\\\"-with_gfe" config: betakey: test_branch description: FaceIT Test executable: DirtyBombLauncher.exe type: none -'333950': +"333950": installDir: MedievalEngineers launch: - config: - osarch: '32' + osarch: "32" description: Launch - executable: Bin\\MedievalEngineers.exe + executable: "Bin\\\\MedievalEngineers.exe" workingdir: Bin - config: - osarch: '64' + osarch: "64" description: Launch - executable: Bin64\\MedievalEngineers.exe + executable: "Bin64\\\\MedievalEngineers.exe" workingdir: Bin64 -'333970': +"333970": installDir: a_druids_duel launch: - config: @@ -160131,18 +156530,18 @@ description: Launch executable: ADruidsDuel_Linux.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: ADruidsDuel_Linux.x86_64 -'333980': - installDir: Akiba's Trip Undead & Undressed +"333980": + installDir: "Akiba's Trip Undead & Undressed" launch: - executable: AkibaUU.exe type: default nameLocalized: japanese: AKIBA’S TRIP2 -'333990': +"333990": installDir: Conclave launch: - config: @@ -160151,15 +156550,15 @@ executable: conclave.exe type: default - config: - osarch: '64' + osarch: "64" oslist: macos executable: Conclave.app type: default -'3340': +"3340": installDir: AstroPop Deluxe launch: - executable: WinAp.exe -'334030': +"334030": installDir: Epic Arena launch: - config: @@ -160174,15 +156573,15 @@ oslist: linux description: Launch executable: EpicArena.x86_64 -'334040': +"334040": installDir: Down To One launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: DownToOne.exe -'334070': +"334070": installDir: Hektor launch: - config: @@ -160192,8 +156591,8 @@ - config: oslist: macos description: Launch - executable: ./HektorOSX.app/Contents/MacOS/HektorOSX -'334100': + executable: "./HektorOSX.app/Contents/MacOS/HektorOSX" +"334100": installDir: Extreme Exorcism launch: - config: @@ -160204,7 +156603,7 @@ oslist: windows description: Launch executable: ExtremeExorcism.exe -'334120': +"334120": installDir: Armikrog launch: - config: @@ -160216,16 +156615,16 @@ description: Launch executable: Armikrog.app - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: Armikrog.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Armikrog.x86_64 -'334140': +"334140": installDir: Roche Fusion launch: - config: @@ -160235,33 +156634,33 @@ - config: oslist: macos description: Launch - executable: Roche Fusion.app\\Contents\\MacOS\\Kick + executable: "Roche Fusion.app\\\\Contents\\\\MacOS\\\\Kick" type: default -'334190': +"334190": installDir: Insanitys Blade launch: - config: oslist: windows description: Launch executable: IBLaunch.exe -'33420': +"33420": installDir: Call of Juarez - The Cartel launch: - - arguments: '-uplay_steam_mode' + - arguments: "-uplay_steam_mode" executable: CoJ_TheCartel.exe - arguments: /dx11 -uplay_steam_mode - description: 'Call of Juarez: The Cartel - DirectX 11' + description: "Call of Juarez: The Cartel - DirectX 11" executable: CoJ_TheCartel.exe -'334210': +"334210": installDir: Fortified launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: Fortified.exe type: default -'334230': +"334230": installDir: Town of Salem launch: - config: @@ -160272,7 +156671,7 @@ oslist: macos description: Launch executable: TownOfSalem.app -'334260': +"334260": installDir: Icebound launch: - config: @@ -160287,7 +156686,7 @@ oslist: linux description: Launch executable: Icebound.sh -'334270': +"334270": installDir: Star Traders 4X Empires launch: - config: @@ -160301,8 +156700,8 @@ - config: oslist: macos description: Play - executable: Star Traders 4X.app\\Contents\\MacOS\\Star Traders 4X -'334280': + executable: "Star Traders 4X.app\\\\Contents\\\\MacOS\\\\Star Traders 4X" +"334280": installDir: Lost Sea launch: - config: @@ -160317,16 +156716,16 @@ oslist: macos executable: lostsea.app type: none -'334290': +"334290": installDir: Gates of Horizon launch: - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: Gates of Horizon.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Gates of Horizon.x86_64 @@ -160338,7 +156737,7 @@ oslist: macos description: Launch executable: Gates of Horizon.app -'334300': +"334300": installDir: Fake Colours launch: - config: @@ -160353,7 +156752,7 @@ oslist: linux description: Launch executable: Fake Colours.x86 -'334310': +"334310": installDir: PQTC launch: - config: @@ -160362,35 +156761,35 @@ executable: PQTC.exe type: none nameLocalized: - koreana: '플레비 퀘스트: 더 크루세이즈' + koreana: "플레비 퀘스트: 더 크루세이즈" schinese: 冒险之旅:十字军东征 tchinese: 冒險之旅:十字軍東征 -'334350': {} -'334360': +"334350": {} +"334360": installDir: Passcode Breaker TDB launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Passcode Breaker The Day Before.exe type: default -'33440': +"33440": installDir: Driver San Francisco launch: - - arguments: '-uplay_steam_mode' + - arguments: "-uplay_steam_mode" config: oslist: windows executable: Driver.exe - config: oslist: macos executable: Driver San Francisco.app -'334410': +"334410": installDir: Jump launch: - description: Launch executable: jump.exe type: vr -'334420': +"334420": installDir: OutThereOmega launch: - config: @@ -160407,43 +156806,43 @@ description: Launch executable: OutThereOmega.x86_64 type: default -'334470': +"334470": installDir: Adventures of Robinson Crusoe launch: - description: Launch executable: RobinsonCrusoe.exe -'334480': +"334480": installDir: Robinson Crusoe and the Cursed Pirates launch: - description: Launch executable: RobinsonCrusoeCursedPirates.exe -'334490': +"334490": installDir: The Fool launch: - description: Launch executable: TheFool.exe -'334540': +"334540": installDir: Vox Machinae launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Play in Non-VR Mode executable: vm.exe type: default - - arguments: '-vrmode Oculus' + - arguments: "-vrmode Oculus" config: - osarch: '64' + osarch: "64" oslist: windows executable: vm.exe type: othervr - - arguments: '-vrmode OpenVR' + - arguments: "-vrmode OpenVR" config: - osarch: '64' + osarch: "64" oslist: windows executable: vm.exe type: vr -'334560': +"334560": installDir: Square Heroes launch: - config: @@ -160451,7 +156850,7 @@ description: Launch executable: SquareHeroes.exe - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: SquareHeroes.bin.x86_64 @@ -160459,12 +156858,12 @@ oslist: macos description: Launch executable: SquareHeroes.app -'33460': +"33460": installDir: From Dust launch: - - arguments: '-uplay_steam_mode' + - arguments: "-uplay_steam_mode" executable: From_Dust.exe -'334620': +"334620": installDir: Soccertron launch: - config: @@ -160476,40 +156875,40 @@ description: Launch executable: Soccertron.app - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: Soccertron.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Soccertron.x86_64 -'334670': +"334670": installDir: Moving Hazard launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: MHGame.exe type: default -'334690': +"334690": installDir: Squirreltopia launch: - config: oslist: windows description: Launch executable: Squirreltopia.exe -'334710': +"334710": installDir: Ilamentia launch: - config: oslist: windows description: Launch executable: Ilamentia.exe -'334750': {} -'334830': +"334750": {} +"334830": installDir: Entropy Rising launch: - config: @@ -160517,7 +156916,7 @@ description: Launch executable: EntropyRising.exe type: default -'334840': +"334840": installDir: Drive to Hell launch: - config: @@ -160532,14 +156931,14 @@ oslist: linux description: Launch executable: DriveToHell.x86 -'334850': +"334850": installDir: Scheherazade launch: - config: oslist: windows description: Launch executable: Scheherazade.exe -'334920': +"334920": installDir: Zero-K launch: - config: @@ -160547,61 +156946,61 @@ executable: Zero-K.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Zero-K_linux64.sh type: default -'334930': +"334930": installDir: The Ingenious Machine New and Improved Edition launch: - config: oslist: windows description: Launch - executable: .\\PC\\IngeniousMachine.exe + executable: ".\\\\PC\\\\IngeniousMachine.exe" - config: oslist: macos description: Launch - executable: .\\Mac\\IngeniousMachine.app -'334940': + executable: ".\\\\Mac\\\\IngeniousMachine.app" +"334940": installDir: Yokus Island Express launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Yoku.exe type: default -'334960': +"334960": installDir: Cell HD emergence launch: - config: oslist: windows description: Launch executable: CellGame.exe -'334980': +"334980": installDir: Into Blue Valley launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch Standard Version 64bit executable: IntoBlueValley_64bit.exe type: none - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch Standard Version 32bit executable: IntoBlueValley_32bit.exe type: none -'3350': +"3350": installDir: Bejeweled Deluxe launch: - executable: WinBej.exe -'33500': +"33500": installDir: Hired Guns The Jagged Edge launch: - - executable: bin\\game.exe + - executable: "bin\\\\game.exe" workingdir: bin -'335000': +"335000": installDir: Tormentum launch: - config: @@ -160612,21 +157011,21 @@ oslist: macos description: Launch executable: Tormentum.app -'335010': +"335010": installDir: Steam and Metal launch: - config: oslist: windows description: Launch executable: Steam and Metal.exe -'335050': +"335050": installDir: World Of Leaders launch: - config: oslist: windows description: Launch executable: _start.exe -'335070': +"335070": installDir: Virtual RC Pro launch: - arguments: /steam @@ -160634,14 +157033,14 @@ oslist: windows description: Launch executable: vrcpro.exe -'335080': +"335080": installDir: Biology Battle launch: - config: oslist: windows description: Launch executable: BiologyBattle.exe -'335090': +"335090": installDir: Goscurry launch: - config: @@ -160649,12 +157048,12 @@ description: Launch executable: Goscurry.exe - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: Goscurry.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Goscurry.x86_64 @@ -160662,20 +157061,18 @@ oslist: macos description: Launch executable: Goscurry.app -'335100': +"335100": installDir: Dwarf Tower launch: - config: oslist: windows description: Launch - description_loc: - english: Launch executable: DwarfTower.exe - config: oslist: macos description: Launch executable: Dwarf Tower.app -'335120': +"335120": installDir: Serpent in the Staglands launch: - config: @@ -160683,70 +157080,68 @@ description: Launch executable: Serpent in the Staglands.app - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch x32 executable: Serpent in the Staglands.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch x64 executable: Serpent in the Staglands.x86_64 - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch x32 executable: Serpent in the Staglands.exe - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch x64 executable: Serpent in the Staglands.exe -'335150': {} -'335190': +"335150": {} +"335190": installDir: 200 Mixed Juice! launch: - description: Launch executable: 200MJ.exe -'33520': +"33520": installDir: Tropico launch: - executable: Tropico.EXE -'335200': +"335200": installDir: ManaCollect launch: - description: Launch executable: ManaCollect.exe -'335210': +"335210": installDir: RC_Alpha launch: - config: oslist: windows description: Launch - description_loc: - english: Launch executable: RC_ALPHA_DirectToRift.exe - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: RC_Alpha.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: RC_Alpha.x86_64 - config: - osarch: '32' + osarch: "32" oslist: macos description: Launch executable: RC_Alpha.app - config: - osarch: '64' + osarch: "64" oslist: macos description: Launch executable: RC_Alpha.app -'335220': +"335220": installDir: But to Paint a Universe launch: - config: @@ -160754,7 +157149,7 @@ description: Launch executable: btpau_steam.exe type: default -'335240': +"335240": installDir: Transformice launch: - config: @@ -160767,68 +157162,68 @@ oslist: linux executable: transformice.sh type: none -'33530': +"33530": installDir: Tropico 2 launch: - executable: Tropico2.exe -'335300': +"335300": installDir: Dark Souls II Scholar of the First Sin launch: - description: Launch executable: Game/DarkSoulsII.exe workingdir: Game -'335310': +"335310": installDir: EisenbahnX launch: - description: Launch executable: EEP10.exe -'335320': +"335320": installDir: Bet On Soldier launch: - config: oslist: windows description: Launch executable: BoS.exe -'335330': +"335330": installDir: Brick-Force ROW launch: - config: oslist: windows description: Launch executable: InfernumLogin.exe -'33540': +"33540": installDir: Dawn of Magic II launch: - executable: dawnofmagic2.exe -'335420': +"335420": installDir: LunaticDawnPotB launch: - description: Launch executable: Ld95.exe -'335430': +"335430": installDir: Grimoire Manastorm launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: Binaries/Win32/UDK.exe - config: betakey: developer - osarch: '32' + osarch: "32" oslist: windows description: UDK Development executable: Binaries/Win32/UDK.exe type: option2 - workingdir: 'D:/GameDev/UDK/Grimoire' -'335440': + workingdir: "D:/GameDev/UDK/Grimoire" +"335440": installDir: Dungeon Shooter 2 launch: - config: oslist: windows description: Launch executable: ds2.exe -'335450': +"335450": installDir: Curse of the Assassin launch: - config: @@ -160836,35 +157231,35 @@ description: Launch executable: Gamebook Adventures Curse of the Assassin.exe - config: - osarch: '64' + osarch: "64" oslist: macos description: Launch executable: Gamebook Adventures Curse of the Assassin.app - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: Gamebook Adventures Curse of the Assassin.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Gamebook Adventures Curse of the Assassin.x86_64 -'335460': +"335460": installDir: An Assassin in Orlandes launch: - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Gamebook Adventures An Assassin in Orlandes.x86_64 - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: Gamebook Adventures An Assassin in Orlandes.x86 - config: - osarch: '64' + osarch: "64" oslist: macos description: Launch executable: Gamebook Adventures An Assassin in Orlandes.app @@ -160872,8 +157267,8 @@ oslist: windows description: Launch executable: Gamebook Adventures An Assassin in Orlandes.exe -'335550': {} -'335560': +"335550": {} +"335560": installDir: Light Bound launch: - config: @@ -160884,12 +157279,12 @@ oslist: macos description: Launch executable: LightBound.app -'335570': +"335570": installDir: Back To Life 3 launch: - description: Launch executable: back_to_life3.exe -'335620': +"335620": installDir: Star Traders Frontiers launch: - config: @@ -160900,7 +157295,7 @@ - config: oslist: macos description: Launch - executable: StarTradersFrontiers.app\\Contents\\MacOS\\StarTradersFrontiers + executable: "StarTradersFrontiers.app\\\\Contents\\\\MacOS\\\\StarTradersFrontiers" type: default - config: oslist: linux @@ -160909,28 +157304,22 @@ type: default - config: oslist: windows - description: 'Moddable Star Traders: Frontiers' - description_loc: - english: 'Moddable Star Traders: Frontiers' - executable: modversion\\StarTradersFrontiersMods.exe + description: "Moddable Star Traders: Frontiers" + executable: "modversion\\\\StarTradersFrontiersMods.exe" type: option1 workingdir: modversion - config: oslist: linux - description: 'Moddable Star Traders: Frontiers' - description_loc: - english: 'Moddable Star Traders: Frontiers' + description: "Moddable Star Traders: Frontiers" executable: modversion/startraders2_mods type: option1 workingdir: modversion - config: oslist: macos - description: 'Moddable Star Traders: Frontiers' - description_loc: - english: 'Moddable Star Traders: Frontiers' + description: "Moddable Star Traders: Frontiers" executable: StarTradersFrontiers_Mods.app type: option1 -'335660': +"335660": installDir: CAFE 0 ~The Drowned Mermaid~ launch: - config: @@ -160947,7 +157336,7 @@ executable: Cafe0.sh nameLocalized: japanese: カフェ・ゼロ~溺れた人魚~ -'335670': +"335670": installDir: LISA launch: - config: @@ -160965,42 +157354,42 @@ description: LISA executable: LISA.app type: option1 - - arguments: '--preloadScript=mkxp/preload.rb' + - arguments: "--preloadScript=mkxp/preload.rb" config: oslist: windows description: Play LISA on mkxp (better controller support) - executable: mkxp\\lisa.exe + executable: "mkxp\\\\lisa.exe" type: option1 workingdir: mkxp - config: oslist: linux - ownsdlc: '379310' + ownsdlc: "379310" description: LISA the Joyful executable: joyful/launch_joyful.sh type: option2 workingdir: joyful - config: oslist: macos - ownsdlc: '379310' + ownsdlc: "379310" description: LISA the Joyful executable: LISAtheJoyful.app type: option2 - config: oslist: windows - ownsdlc: '379310' + ownsdlc: "379310" description: LISA the Joyful on rmvxa (legacy) - executable: Joyful\\Game.exe + executable: "Joyful\\\\Game.exe" type: option2 workingdir: Joyful - - arguments: '--preloadScript=../mkxp/preload.rb --gameFolder=../Joyful --iconPath=../Joyful/icon.png' + - arguments: "--preloadScript=../mkxp/preload.rb --gameFolder=../Joyful --iconPath=../Joyful/icon.png" config: oslist: windows - ownsdlc: '379310' + ownsdlc: "379310" description: LISA the Joyful on mkxp (better controller support) - executable: mkxp\\lisa.exe + executable: "mkxp\\\\lisa.exe" type: option2 workingdir: mkxp -'335690': +"335690": installDir: dUpLicity ~Beyond the Lies~ launch: - config: @@ -161017,11 +157406,11 @@ executable: duplicity.sh nameLocalized: japanese: デュプリシティ~嘘の先にあるもの~ -'33570': +"33570": installDir: Patrician III launch: - executable: Patrician3.exe -'335700': +"335700": installDir: I am weapon Revival launch: - config: @@ -161032,21 +157421,21 @@ oslist: macos executable: IAmWeaponRevival.app type: none -'335740': +"335740": installDir: Escape From Darkmoor Manor launch: - config: oslist: windows description: Launch executable: Darkmoor_Manor.exe -'335770': +"335770": installDir: Tkl Online launch: - config: oslist: windows description: Launch executable: start.exe -'335790': +"335790": installDir: Words for Evil launch: - config: @@ -161057,20 +157446,20 @@ oslist: macos description: Launch executable: WordsforEvil_Mac.app -'33580': +"33580": installDir: The Great Art Race launch: - executable: TGAR.exe -'335820': +"335820": installDir: DOMO_US launch: - description: Launch executable: Main/DOMO.exe workingdir: Main/ -'335830': +"335830": installDir: Distant Star Revenant Fleet launch: - - arguments: '-popupwindow' + - arguments: "-popupwindow" config: oslist: windows description: Launch @@ -161084,14 +157473,14 @@ oslist: linux executable: Distant Star.x86 type: default -'335840': +"335840": installDir: Goats on a Bridge launch: - config: oslist: windows description: Launch executable: goab.exe -'335850': +"335850": installDir: After Reset RPG launch: - config: @@ -161099,12 +157488,12 @@ description: Launch executable: afterreset.exe - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: afterreset.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: afterreset.x86_64 @@ -161112,14 +157501,14 @@ oslist: macos description: Launch executable: afterreset.app -'335890': +"335890": installDir: Nanofights launch: - description: Launch executable: start.exe - description: Config executable: config.exe -'335900': +"335900": installDir: Angels of Fasaria 2D RPG launch: - config: @@ -161127,20 +157516,20 @@ description: Angels of Fasaria Offline RPG executable: Angels of Fasaria.exe type: default - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows description: Fasaria World Online executable: fasariaworldonline.exe type: option2 -'335920': +"335920": installDir: Ephemerid A Musical Adventure launch: - config: oslist: windows description: Launch executable: ephemerid_windows.exe -'335940': +"335940": installDir: Mech Marines launch: - config: @@ -161149,13 +157538,13 @@ executable: MechMarines.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux description: Play (32-bit) executable: MechMarines.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: Play (64-bit) executable: MechMarines.x86_64 @@ -161165,7 +157554,7 @@ description: Play executable: MechMarines.app type: default -'335950': +"335950": installDir: Insecters War launch: - config: @@ -161176,11 +157565,11 @@ oslist: macos description: Launch executable: InsectersWar.app -'3360': +"3360": installDir: Big Money Deluxe launch: - executable: WinBM.exe -'33600': +"33600": installDir: Broken Sword 2 launch: - config: @@ -161192,38 +157581,38 @@ - config: oslist: linux executable: BS2Remastered_i386 - - arguments: '-c' + - arguments: "-c" config: oslist: windows - ownsdlc: '580440' - description: 'Broken Sword 2: Original Version' + ownsdlc: "580440" + description: "Broken Sword 2: Original Version" executable: Launcher.exe type: option1 - - arguments: '-c' + - arguments: "-c" config: oslist: macos - ownsdlc: '580440' - description: 'Broken Sword 2: Original Version' + ownsdlc: "580440" + description: "Broken Sword 2: Original Version" executable: Launcher.app/Contents/MacOS/Launcher type: option1 - - arguments: '-c' + - arguments: "-c" config: oslist: linux - ownsdlc: '580440' - description: 'Broken Sword 2: Original Version' + ownsdlc: "580440" + description: "Broken Sword 2: Original Version" executable: Launcher type: option1 -'336010': +"336010": installDir: MXGP Compact launch: - description: Launch executable: MXGP.exe -'336020': +"336020": installDir: Pahelika Secret Legends launch: - description: Launch executable: PahelikaRelease.exe -'336030': +"336030": installDir: Race.a.bit launch: - config: @@ -161239,26 +157628,26 @@ oslist: macos executable: raceabit.app type: default -'336040': +"336040": installDir: Combat Monsters launch: - config: oslist: windows description: Launch executable: CombatMonsters.exe -'336060': +"336060": installDir: Raptor Call of The Shadows - 2015 Edition launch: - config: oslist: windows description: Launch executable: Raptor.exe -'336080': +"336080": installDir: Vietnam ‘65 launch: - description: Launch executable: autorun.exe -'336090': +"336090": installDir: Sky Mercenaries launch: - config: @@ -161271,11 +157660,11 @@ description: Sky Mercenaries Linux executable: run.sh type: none -'33610': +"33610": installDir: Broken Sword 3 launch: - executable: BSTSD.exe -'336100': +"336100": installDir: Rooster Teeth vs. Zombiens launch: - config: @@ -161286,14 +157675,14 @@ oslist: windows description: Launch executable: Zombiens.exe -'336110': +"336110": installDir: Bloody Streets launch: - config: oslist: windows description: Launch executable: Bloody Streets.exe -'336130': +"336130": installDir: Shardlight launch: - config: @@ -161303,39 +157692,31 @@ - config: oslist: windows description: Setup - description_loc: - english: Setup executable: winsetup.exe type: config - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch 64bit - description_loc: - english: Launch 64bit - executable: ./Start.sh + executable: "./Start.sh" type: default - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch 32bit - description_loc: - english: Launch 32bit - executable: ./Start.sh + executable: "./Start.sh" type: default - - arguments: '--windowed' + - arguments: "--windowed" config: oslist: linux description: Shardlight (Windowed) - description_loc: - english: Shardlight (Windowed) - executable: ./Start.sh + executable: "./Start.sh" type: option1 - config: oslist: macos executable: Shardlight.app/Contents/MacOS/AGS type: default -'336140': +"336140": installDir: Unavowed launch: - config: @@ -161349,44 +157730,36 @@ executable: winsetup.exe type: config - config: - osarch: '32' + osarch: "32" oslist: linux - description: 'Launch [32bit]' - description_loc: - english: 'Launch [32bit]' - executable: ./Start.sh + description: "Launch [32bit]" + executable: "./Start.sh" type: default - config: - osarch: '64' + osarch: "64" oslist: linux - description: 'Launch [64bit]' - description_loc: - english: 'Launch [64bit]' - executable: ./Start.sh + description: "Launch [64bit]" + executable: "./Start.sh" type: default - - arguments: '--windowed' + - arguments: "--windowed" config: oslist: linux description: Windowed - description_loc: - english: Windowed - executable: ./Start.sh + executable: "./Start.sh" type: option1 - config: oslist: macos description: Launch - description_loc: - english: Launch executable: Unavowed.app/Contents/MacOS/AGS type: default -'336150': +"336150": installDir: Virtual Pool 4 launch: - config: oslist: windows description: Launch executable: vp4S.exe -'336160': +"336160": installDir: Monsters! Reborn! launch: - config: @@ -161398,62 +157771,61 @@ description: Launch executable: Monsters.app - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: Monsters.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Monsters.x86 type: default - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" config: oslist: windows description: Launch Resolution Dialog executable: Monsters.exe type: config - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" config: oslist: macos description: Launch Resolution Dialog executable: Monsters.app type: config -'33620': +"33620": installDir: Crash Time III launch: - executable: HighwayNights.exe -'336200': +"336200": installDir: Starlaxis launch: - config: oslist: windows description: Launch executable: starlaxis.exe -'336210': +"336210": installDir: JustDeath launch: - config: oslist: windows - vrmode: '0' description: Launch executable: JustDeath.exe -'336220': +"336220": installDir: ORBITOR launch: - config: oslist: windows description: Launch - executable: Windows\\ORBITOR.exe -'336230': + executable: "Windows\\\\ORBITOR.exe" +"336230": installDir: waytogo launch: - config: oslist: windows description: Launch - executable: waytogo.app\\Contents\\Resources\\Game.exe + executable: "waytogo.app\\\\Contents\\\\Resources\\\\Game.exe" - config: oslist: macos description: Launch @@ -161461,8 +157833,8 @@ - config: oslist: linux description: Launch - executable: ./Game.sh -'336240': + executable: "./Game.sh" +"336240": installDir: Typoman launch: - config: @@ -161474,25 +157846,25 @@ executable: Typoman.app/Contents/MacOS/Typoman type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Typoman.x86_64 type: default -'336250': +"336250": installDir: Monster Jam launch: - config: oslist: windows description: Launch executable: Game.exe -'336280': +"336280": installDir: Chronicles of a Dark Lord Episode 1 Tides of Fate Complete launch: - config: oslist: windows description: Launch executable: Game.exe -'336300': +"336300": installDir: Hearthlands launch: - config: @@ -161507,16 +157879,16 @@ oslist: macos description: Launch executable: Hearthlands.app -'336380': +"336380": installDir: Catmouth launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: catmouth.exe - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: catmouth.x86_64 @@ -161525,22 +157897,22 @@ description: Launch executable: catmouths64bit.app - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: catmouth.x86 - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: catmouth32.exe -'336420': +"336420": installDir: BloodsportsTV launch: - - arguments: '-bundle-dir bundle' + - arguments: "-bundle-dir bundle" description: Launch executable: bloodsports.exe -'336440': +"336440": installDir: Super Cane Magic ZERO launch: - config: @@ -161552,18 +157924,16 @@ description: Launch executable: canemagic.app - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch - description_loc: - english: Launch executable: canemagic type: none -'33650': +"33650": installDir: PuzzlerWorld launch: - executable: PuzzlerWorld.exe -'336510': +"336510": installDir: Anno Online launch: - config: @@ -161578,7 +157948,7 @@ oslist: macos description: Launch executable: Anno Online.app -'336520': +"336520": installDir: Might & Magic Heroes Online launch: - config: @@ -161593,29 +157963,29 @@ oslist: macos description: Launch executable: Might & Magic Heroes Online.app -'33660': +"33660": installDir: Ziro launch: - executable: Ziro.exe -'336610': +"336610": installDir: Outcast 1.1 launch: - config: oslist: windows description: Launch executable: outcast 1.1.exe -'336630': +"336630": installDir: Crash And Burn Racing launch: - executable: Crash&Burn.exe -'336670': +"336670": installDir: HIT launch: - config: oslist: windows description: Launch - executable: Hit\\Binaries\\Win64\\Hit.exe -'336680': + executable: "Hit\\\\Binaries\\\\Win64\\\\Hit.exe" +"336680": installDir: TREBUCHET game launch: - config: @@ -161626,11 +157996,11 @@ oslist: macos description: Launch executable: TREBUCHET_game.app -'33670': +"33670": installDir: Disciples 3 launch: - executable: DisciplesIII.exe -'336700': +"336700": installDir: Elastrix launch: - config: @@ -161642,16 +158012,16 @@ description: Launch executable: Elastrix.app - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: elastrix.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: elastrix.x86_64 -'336760': +"336760": installDir: Pilot Brothers launch: - config: @@ -161659,7 +158029,7 @@ description: Launch executable: bin/Pilot Brothers.exe workingdir: bin -'336770': +"336770": installDir: Pilot Brothers 2 launch: - config: @@ -161667,13 +158037,13 @@ description: Launch executable: bin/Pilot Brothers.exe workingdir: bin -'336780': +"336780": installDir: Pilot Brothers 3 Back Side of the Earth launch: - description: Launch executable: bin/Pilot Brothers.exe workingdir: bin -'336790': +"336790": installDir: KWAAN launch: - config: @@ -161684,13 +158054,13 @@ oslist: macos description: Launch executable: Kwaan.app - - arguments: '-force-opengl' + - arguments: "-force-opengl" config: oslist: linux description: Launch executable: Kwaan.x86_64 type: none -'33680': +"33680": installDir: Eversion launch: - config: @@ -161705,7 +158075,7 @@ oslist: linux description: Linux executable: Eversion -'336840': +"336840": installDir: Color Guardians launch: - config: @@ -161716,32 +158086,32 @@ oslist: macos description: Launch executable: ColorGuardians.app -'336930': +"336930": installDir: ReduxDarkMatters launch: - config: oslist: windows description: Launch executable: Redux_Starter.exe -'336940': +"336940": installDir: Basingstoke launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Basingstoke.exe type: default - config: - osarch: '64' + osarch: "64" oslist: macos executable: Basingstoke.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Basingstoke.x86_64 type: default -'3370': +"3370": installDir: BookWorm Deluxe launch: - config: @@ -161750,58 +158120,52 @@ - config: oslist: macos executable: Bookworm Deluxe.app -'33700': +"33700": installDir: Paws and Claws Pampered Pets launch: - executable: PamperedPets.exe -'337000': +"337000": installDir: Deus Ex Mankind Divided launch: - config: oslist: windows - executable: retail\\DXMD.exe + executable: "retail\\\\DXMD.exe" type: none - - arguments: '-launcher' + - arguments: "-launcher" config: - betakey: >- - amd1, amd_master, denuvo, dxmd_playtest, eidosmontreal_devteam, latest, microsoft1, nvidia, nvidia_fixed, qa1, - qa2, qa3_localization, qa4_compat, razer, tobii, master, nixxes_dev, nixxes_qa, qa5_localization, - qa6_patch,nixxes_dev2 + betakey: "amd1, amd_master, denuvo, dxmd_playtest, eidosmontreal_devteam, latest, microsoft1, nvidia, nvidia_fixed, qa1, qa2, qa3_localization, qa4_compat, razer, tobii, master, nixxes_dev, nixxes_qa, qa5_localization, qa6_patch,nixxes_dev2" oslist: windows - ownsdlc: '443870' + ownsdlc: "443870" description: Release - executable: release\\engine.exe + executable: "release\\\\engine.exe" type: none - config: - betakey: >- - amd1, amd_master, denuvo, dxmd_playtest, eidosmontreal_devteam, latest, microsoft1, nvidia, nvidia_fixed, qa1, - qa2, qa3_localization, qa4_compat, razer, tobii, master, nixxes_dev, nixxes_qa, qa5_localization, - qa6_patch,nixxes_dev2 + betakey: "amd1, amd_master, denuvo, dxmd_playtest, eidosmontreal_devteam, latest, microsoft1, nvidia, nvidia_fixed, qa1, qa2, qa3_localization, qa4_compat, razer, tobii, master, nixxes_dev, nixxes_qa, qa5_localization, qa6_patch,nixxes_dev2" oslist: windows - ownsdlc: '443870' + ownsdlc: "443870" description: GameRelease - executable: gamerelease\\engine.exe + executable: "gamerelease\\\\engine.exe" type: none - - arguments: '-nolauncher' + - arguments: "-nolauncher" config: - betakey: 'e3_demo, e3_microsoft' + betakey: "e3_demo, e3_microsoft" oslist: windows description: E3 Demo - executable: gamerelease\\engine.exe + executable: "gamerelease\\\\engine.exe" type: none - - arguments: '-vrdemo -nolauncher' + - arguments: "-vrdemo -nolauncher" config: - betakey: 'e3_demo, e3_demo_breach, vr_experience' + betakey: "e3_demo, e3_demo_breach, vr_experience" oslist: windows description: E3 Demo VR - executable: gamerelease\\engine.exe + executable: "gamerelease\\\\engine.exe" type: none - - arguments: '-nolauncher -ao ShowBreachDemo true' + - arguments: "-nolauncher -ao ShowBreachDemo true" config: betakey: e3_demo_breach oslist: windows description: E3 Demo - executable: gamerelease\\engine.exe + executable: "gamerelease\\\\engine.exe" type: none - config: oslist: macos @@ -161811,7 +158175,7 @@ oslist: linux executable: DeusExMD.sh type: none -'337040': +"337040": installDir: Deadnaut launch: - config: @@ -161838,12 +158202,12 @@ oslist: linux description: View manual (recommended) executable: manual.sh -'33710': +"33710": installDir: Paws and Claws Pet School launch: - - executable: bin\\win32\\petschool.hta - workingdir: bin\\win32 -'337110': + - executable: "bin\\\\win32\\\\petschool.hta" + workingdir: "bin\\\\win32" +"337110": installDir: bardtothefuture launch: - config: @@ -161858,8 +158222,8 @@ oslist: linux description: Launch executable: bardtothefuture -'337130': - installDir: Bosch's Damnation +"337130": + installDir: "Bosch's Damnation" launch: - config: oslist: windows @@ -161867,9 +158231,9 @@ executable: Bosch.exe - config: oslist: macos - executable: Bosch's Damnation.app + executable: "Bosch's Damnation.app" type: none -'337150': +"337150": installDir: Sentinels of the Multiverse launch: - config: @@ -161881,28 +158245,28 @@ description: Launch executable: Sentinels.app - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: Sentinels.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Sentinels.x86_64 -'337180': +"337180": installDir: Velocity 2X launch: - config: oslist: windows description: Launch executable: Velocity2X.exe -'33720': +"33720": installDir: Paws and Claws Pet Vet launch: - - executable: bin\\win32\\tpraxis.hta - workingdir: bin\\win32 -'337210': + - executable: "bin\\\\win32\\\\tpraxis.hta" + workingdir: "bin\\\\win32" +"337210": installDir: Royal Bounty HD launch: - config: @@ -161913,14 +158277,14 @@ oslist: macos description: Launch executable: Royal Bounty HD.app -'337220': +"337220": installDir: Guild Commander launch: - config: oslist: windows description: Launch executable: Guild Commander.exe -'337270': +"337270": installDir: Ostrich Island launch: - config: @@ -161928,12 +158292,12 @@ description: Launch executable: OstrichIsland.exe - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: OstrichIsland.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: OstrichIsland.x86_64 @@ -161941,7 +158305,7 @@ oslist: macos description: Launch executable: OstrichIsland.app -'337280': +"337280": installDir: Planetship launch: - config: @@ -161954,13 +158318,13 @@ description: Launch Game executable: planetship.app type: default - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" config: oslist: windows description: Configure Planetship executable: planetship.exe type: config - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" config: oslist: macos description: Configure Planetship @@ -161971,7 +158335,7 @@ description: Launch Game executable: planetship.x86 type: default - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" config: oslist: linux description: Configure Planetship @@ -161982,7 +158346,7 @@ description: Launch Game (64-bit) executable: planetship.x86_64 type: default - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" config: oslist: linux description: Configure Planetship (64-bit) @@ -161993,34 +158357,34 @@ description: Planetship VR executable: VR/planetship.exe type: vr -'337290': +"337290": installDir: Still Not Dead launch: - config: oslist: windows executable: SND.exe type: none -'33730': +"33730": installDir: 18 Wheels of Steel Extreme Trucker launch: - - executable: bin\\win_x86\\extremetrucker.exe -'337320': + - executable: "bin\\\\win_x86\\\\extremetrucker.exe" +"337320": installDir: Paint the Town Red launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: PaintTheTownRed.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: PaintTheTownRed.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: Latest Builds executable: PaintTheTownRed.x86_64 @@ -162041,24 +158405,24 @@ description: previousversion executable: PaintTheTownRed.app/Contents/MacOS/PaintTheTownRed type: default -'337340': +"337340": installDir: Finding Paradise launch: - config: oslist: windows description: Launch - executable: Finding Paradise\\Finding Paradise.exe + executable: "Finding Paradise\\\\Finding Paradise.exe" type: default workingdir: Finding Paradise - - arguments: ./FindingParadise.amd64 + - arguments: "./FindingParadise.amd64" config: - osarch: '64' + osarch: "64" oslist: linux executable: steamshim/parent.amd64 type: default - - arguments: ./FindingParadise.x86 + - arguments: "./FindingParadise.x86" config: - osarch: '32' + osarch: "32" oslist: linux executable: steamshim/parent.x86 type: default @@ -162067,7 +158431,7 @@ oslist: macos executable: FindingParadise.app/Contents/MacOS/steamshim_parent type: default -'337350': +"337350": installDir: Flywrench launch: - config: @@ -162082,7 +158446,7 @@ oslist: linux executable: runner type: none -'337360': +"337360": installDir: Dead Island Retro Revenge launch: - config: @@ -162090,39 +158454,39 @@ description: Launch executable: DeadIslandRetroRevenge.exe type: none -'33740': +"33740": installDir: John Deere Drive Green launch: - executable: DriveGreen1.exe -'337410': +"337410": installDir: Karos launch: - config: oslist: windows description: Launch executable: launchpoint.exe -'337420': +"337420": installDir: Final Dusk launch: - config: oslist: windows description: Launch executable: Final Dusk.exe -'337450': +"337450": installDir: Dream Tale launch: - description: Launch executable: Dream Tale.exe -'337460': +"337460": installDir: 18 WoS Pedal to the Metal launch: - executable: pttm.exe type: default - - arguments: '-setup' + - arguments: "-setup" description: Changed Settings executable: pttm.exe type: config -'337480': +"337480": installDir: Zombie Vikings launch: - config: @@ -162139,7 +158503,7 @@ description: Launch executable: ZombieVikings.x86 type: none -'337490': +"337490": installDir: FourSidedFantasy launch: - config: @@ -162151,16 +158515,16 @@ oslist: macos executable: FourSidedFantasy.app type: none -'33750': +"33750": installDir: Prison Tycoon 4 Supermax launch: - - executable: data\\prisonTycoon4.exe + - executable: "data\\\\prisonTycoon4.exe" workingdir: data -'33760': +"33760": installDir: Amelia Earhart launch: - executable: amelia.exe -'337630': +"337630": installDir: Bermuda launch: - config: @@ -162175,7 +158539,7 @@ oslist: linux description: Launch executable: bermuda -'337650': +"337650": installDir: Soft Body launch: - config: @@ -162187,7 +158551,7 @@ oslist: macos executable: Soft_Body.app type: default -'337670': +"337670": installDir: Default Dan launch: - config: @@ -162202,7 +158566,7 @@ oslist: linux description: Launch executable: runner -'337680': +"337680": installDir: Star Hammer launch: - config: @@ -162213,19 +158577,19 @@ oslist: macos description: Launch executable: StarHammerVP.app -'33770': +"33770": installDir: Drakensang The River of Time launch: - executable: drakensang.exe -'337700': +"337700": installDir: deORBIT launch: - config: oslist: windows - description: 'SCS deORBIT ' - executable: \\WWIP\\drbt.exe + description: "SCS deORBIT " + executable: "\\\\WWIP\\\\drbt.exe" type: default -'337720': +"337720": installDir: The Sea Will Claim Everything launch: - config: @@ -162233,19 +158597,19 @@ description: Launch executable: TSWCE.exe type: none -'337730': +"337730": installDir: Battletank LOBA launch: - description: Launch executable: battletank.exe -'337760': +"337760": installDir: Decisive Campaigns The Blitzkrieg from Warsaw to Paris launch: - config: oslist: windows description: Launch executable: autorun.exe -'337820': +"337820": installDir: The Mims Beginning launch: - config: @@ -162253,12 +158617,12 @@ description: Launch executable: TheMimsBeginning.exe - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: TheMimsBeginning.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: TheMimsBeginning.x86_64 @@ -162266,7 +158630,7 @@ oslist: macos description: Launch executable: TheMimsBeginning.app -'337850': +"337850": installDir: Avernum 2 Crystal Souls launch: - config: @@ -162277,14 +158641,14 @@ oslist: macos description: Launch executable: Avernum 2.app -'337880': +"337880": installDir: One Late Night Deadline launch: - config: oslist: windows description: Launch executable: One Late Night - Deadline.exe -'337890': +"337890": installDir: Dysfunctional Systems Orientation launch: - config: @@ -162299,7 +158663,7 @@ oslist: macos executable: Dysfunctional Systems - Episode 0.app/Contents/MacOS/Dysfunctional Systems - Episode 0 type: default -'33790': +"33790": installDir: Elizabeth Find M.D. - Diagnosis Mystery - Season 2 launch: - config: @@ -162309,7 +158673,7 @@ oslist: macos description: Elizabeth Find Season 2 executable: Elizabeth Find Season 2.app -'337930': +"337930": installDir: Nameless ~The one thing you must recall~ launch: - config: @@ -162320,14 +158684,14 @@ oslist: macos description: Launch executable: Nameless ~The One Thing You Must Recall~.app -'337940': +"337940": installDir: X-note launch: - config: oslist: windows description: Launch executable: x-note.exe -'337950': +"337950": installDir: The SKIES launch: - executable: TheSkies.exe @@ -162345,7 +158709,7 @@ betakey: test executable: TheSkies.exe type: none -'337960': +"337960": installDir: ClusterPuck 99 launch: - config: @@ -162360,10 +158724,10 @@ oslist: linux description: Launch executable: ClusterPuck99.x86 -'337970': +"337970": installDir: Wildlife Park launch: - - arguments: '-console' + - arguments: "-console" config: oslist: windows description: Launch @@ -162371,20 +158735,20 @@ - config: oslist: macos description: WildCreatures-OSX-launch - executable: WildCreatures-STEAM-OSX.app\\Contents\\MacOS\\WildCreatures-STEAM-OSX + executable: "WildCreatures-STEAM-OSX.app\\\\Contents\\\\MacOS\\\\WildCreatures-STEAM-OSX" type: default -'337980': +"337980": installDir: Vagrant Hearts launch: - config: oslist: windows description: Launch executable: game.exe -'3380': +"3380": installDir: Dynomite Deluxe launch: - executable: Dynomite.exe -'338000': +"338000": installDir: Echoes+ launch: - config: @@ -162395,7 +158759,7 @@ oslist: macos description: Launch executable: echoes_plus.app/Contents/MacOS/Echoes+ -'338030': +"338030": installDir: Mission Control NanoMech launch: - config: @@ -162406,17 +158770,17 @@ oslist: windows description: Launch executable: NanoMech.exe -'338040': +"338040": installDir: BCD launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: BCD.exe type: default - executable: HogBall.exe type: none -'338050': +"338050": installDir: Anoxemia launch: - config: @@ -162431,27 +158795,27 @@ oslist: macos description: Launch executable: Anoxemia.app -'338060': +"338060": installDir: MahJong Nagomi launch: - description: Launch executable: MahjongPrettyGirlsBattle.exe -'338070': +"338070": installDir: LunaticDawn_LP launch: - description: Launch executable: LUNATICDAWN_LP.exe -'338090': +"338090": installDir: Atlas_LP launch: - description: Launch executable: ATLAS_LP.exe -'338100': +"338100": installDir: Eikan_LP launch: - description: Launch executable: EIKAN_LP.exe -'338110': +"338110": installDir: Khaba launch: - config: @@ -162462,31 +158826,31 @@ oslist: macos description: Launch executable: Khaba.app -'338120': +"338120": installDir: Marble Duel launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: MarbleDuel.exe type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: MarbleDuel.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: MarbleDuel.x86_64 type: none - config: - osarch: '32' + osarch: "32" oslist: windows executable: MarbleDuel.exe type: default -'338130': +"338130": installDir: Strategy & Tactics launch: - config: @@ -162497,13 +158861,13 @@ oslist: macos executable: ST.app type: default -'338140': +"338140": installDir: Venetica launch: - description: Launch - executable: bin\\release\\Venetica.exe - workingdir: bin\\release -'338170': + executable: "bin\\\\release\\\\Venetica.exe" + workingdir: "bin\\\\release" +"338170": installDir: Ratz Instagib launch: - config: @@ -162521,7 +158885,7 @@ description: Launch RatzEd executable: RatzEd/MapEditor-Admin.bat type: editor -'338180': +"338180": installDir: Batla launch: - config: @@ -162533,23 +158897,23 @@ description: Launch executable: batla.app - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: batla.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: batla.x86_64 -'338190': +"338190": installDir: Just Get Through launch: - config: oslist: windows description: Launch executable: JustGetThrough.exe -'338260': +"338260": installDir: Usagi Yojimbo Way of the Ronin launch: - config: @@ -162560,7 +158924,7 @@ oslist: macos description: Launch executable: UsagiYojimbo.app -'338290': +"338290": installDir: Molecats launch: - config: @@ -162575,12 +158939,12 @@ oslist: macos executable: Molecats.app type: default -'338300': +"338300": installDir: Chicken Little Ace in Action launch: - description: Launch executable: Launcher.exe -'338310': +"338310": installDir: WardenMotU launch: - config: @@ -162591,19 +158955,19 @@ oslist: macos executable: warden.app type: none - - arguments: '-force-opengl' + - arguments: "-force-opengl" config: - osarch: '32' + osarch: "32" oslist: linux executable: Warden.x86 type: none - - arguments: '-force-opengl' + - arguments: "-force-opengl" config: - osarch: '64' + osarch: "64" oslist: linux executable: Warden.x86_64 type: none -'338320': +"338320": installDir: Pixel Heroes launch: - config: @@ -162611,12 +158975,12 @@ description: Launch executable: Pixel Heroes - Byte and Magic.exe - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: Pixel Heroes - Byte and Magic.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Pixel Heroes - Byte and Magic.x86_64 @@ -162624,7 +158988,7 @@ oslist: macos description: Launch executable: Pixel Heroes - Byte and Magic.app -'338330': +"338330": installDir: Super Treasure Arena launch: - config: @@ -162635,17 +158999,17 @@ oslist: macos executable: Super Treasure Arena.app type: none -'338340': +"338340": installDir: Nightbanes launch: - config: oslist: windows description: Launch executable: Nightbanes.exe -'338350': +"338350": installDir: Farm World launch: - - arguments: '-console' + - arguments: "-console" config: oslist: windows description: FarmWorld-windows-launch @@ -162654,9 +159018,9 @@ - config: oslist: macos description: FarmWorld-OSX-launch - executable: FarmWorld-STEAM-OSX.app\\Contents\\MacOS\\FarmWorld-STEAM-OSX + executable: "FarmWorld-STEAM-OSX.app\\\\Contents\\\\MacOS\\\\FarmWorld-STEAM-OSX" type: default -'338390': +"338390": installDir: The Technomancer launch: - config: @@ -162665,18 +159029,17 @@ executable: TheTechnomancer.exe type: none - config: - betakey: >- - qa_test,qa_test2,dev_test,age_rating,baseline,fcswhatsnext,localization,microsoft,partner,partner2,playtest_lab,quantic,e32016_safe,e32016,hw_test + betakey: "qa_test,qa_test2,dev_test,age_rating,baseline,fcswhatsnext,localization,microsoft,partner,partner2,playtest_lab,quantic,e32016_safe,e32016,hw_test" oslist: windows description: The Technomancer - Debug executable: TheTechnomancerDO.exe type: none -'338400': +"338400": installDir: Teenage Mutant Ninja Turtles - Mutants in Manhattan launch: - executable: TMNT_MiM.exe type: default -'338420': +"338420": installDir: Alum launch: - config: @@ -162695,35 +159058,35 @@ oslist: linux description: Launch executable: Alum -'338530': +"338530": installDir: Trouble In The Manor launch: - config: oslist: windows description: Launch executable: TroubleManorClient.exe -'338540': +"338540": installDir: Navy Field 2 Conqueror of the Ocean launch: - - arguments: ',S' + - arguments: ",S" config: oslist: windows description: Launch executable: NF2_Launcher.exe -'338550': +"338550": installDir: Terra Lander Remastered launch: - description: Launch executable: terraLander.exe type: default -'338590': +"338590": installDir: The Race for the White House launch: - config: oslist: windows description: Launch executable: _start.exe -'338630': +"338630": installDir: Wildlife Camp launch: - config: @@ -162731,16 +159094,16 @@ description: Launch executable: WildlifeCamp-Steam.exe type: none -'338640': +"338640": installDir: Subsiege launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Play executable: Submerge.exe type: default -'338710': +"338710": installDir: Urja launch: - config: @@ -162751,7 +159114,7 @@ oslist: macos description: Launch executable: Urja.app -'338760': +"338760": installDir: Death Ray Manta launch: - config: @@ -162759,14 +159122,14 @@ description: Launch executable: DRM_Steam.exe type: none -'338800': +"338800": installDir: Seven Kingdoms 2 HD launch: - config: oslist: windows description: Launch executable: 7K2.EXE -'338810': +"338810": installDir: Demise of Nations - Rome launch: - config: @@ -162778,11 +159141,11 @@ description: Launch executable: app_main.app - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: app_main -'338830': +"338830": installDir: Star Nomad launch: - config: @@ -162793,33 +159156,33 @@ oslist: macos description: Launch executable: nw.app -'338840': +"338840": installDir: content launch: - config: oslist: windows - executable: Hollow's Land.exe + executable: "Hollow's Land.exe" type: default -'338890': +"338890": installDir: Harold launch: - config: oslist: windows description: Launch executable: Harold.exe -'338930': +"338930": installDir: TRANSFORMERS - Devastation launch: - description: Launch executable: TransformersDevastation.exe -'338960': +"338960": installDir: Rescue Team 1 launch: - config: oslist: windows description: Launch executable: RescueTeam.exe -'338980': +"338980": installDir: MOAI Build Your Dream launch: - config: @@ -162830,30 +159193,30 @@ oslist: macos description: Launch executable: moai.app -'3390': +"3390": installDir: Feeding Frenzy 2 Deluxe launch: - executable: FeedingFrenzyTwo.exe -'33900': +"33900": installDir: Arma 2 launch: - executable: arma2.exe - - arguments: '-window' + - arguments: "-window" description: Launch in windowed mode executable: arma2.exe -'339000': +"339000": installDir: Ukrainian Ninja launch: - config: oslist: windows description: Launch executable: Binaries/Win32/udk.exe -'339040': +"339040": installDir: Chicken Little launch: - description: Launch executable: Launcher.exe -'339090': +"339090": installDir: Pig Eat Ball launch: - config: @@ -162868,7 +159231,7 @@ oslist: linux executable: pigEatBallGame.x86_64 type: none -'339110': +"339110": installDir: Plith launch: - config: @@ -162883,8 +159246,8 @@ oslist: linux description: Launch executable: plith -'339120': - installDir: Fork Parker's Holiday Profit Hike +"339120": + installDir: "Fork Parker's Holiday Profit Hike" launch: - config: oslist: windows @@ -162894,7 +159257,7 @@ oslist: macos description: Launch executable: ForkParker.app -'339130': +"339130": installDir: Morningstar launch: - config: @@ -162907,47 +159270,41 @@ executable: morningstar.app - config: oslist: windows - description: 'Launch in windowed mode, 1024px wide' + description: "Launch in windowed mode, 1024px wide" executable: MorningstarWindowed1024.bat - config: oslist: windows - description: 'Launch in windowed mode, 1280px wide' + description: "Launch in windowed mode, 1280px wide" executable: MorningstarWindowed1280.bat - arguments: w 1024 config: oslist: macos - description: 'Launch in windowed mode, 1024px wide' + description: "Launch in windowed mode, 1024px wide" executable: morningstar.app - arguments: w 1280 config: oslist: macos - description: 'Launch in windowed mode, 1280px wide' + description: "Launch in windowed mode, 1280px wide" executable: morningstar.app -'339160': +"339160": installDir: Tales of the Orient - The Rising Sun launch: - config: oslist: windows description: Launch - description_loc: - english: Launch executable: Tales of the Orient - The Rising Sun.exe type: none - config: oslist: linux description: Launch - description_loc: - english: Launch executable: Tales of the Orient - The Rising Sun.x86_64 type: none - config: oslist: macos description: Launch - description_loc: - english: Launch executable: Tales of the Orient - The Rising Sun.app type: none -'339190': +"339190": installDir: Dead Synchronicity Tomorrow Comes Today launch: - config: @@ -162955,7 +159312,7 @@ description: Launch executable: Dead Synchronicity.exe - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: Dead Synchronicity.x86 @@ -162964,11 +159321,11 @@ description: Launch executable: Dead Synchronicity.app - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Dead Synchronicity.x86_64 -'339200': +"339200": installDir: Oceanhorn launch: - config: @@ -162979,7 +159336,7 @@ oslist: macos description: Launch executable: oceanhornosx-steam.app -'339210': +"339210": installDir: RESCUE 2 launch: - config: @@ -162990,15 +159347,15 @@ oslist: macos description: Launch executable: Rescue2.app -'339230': +"339230": installDir: ZOMBI launch: - - arguments: '-uplay_steam_mode' + - arguments: "-uplay_steam_mode" config: oslist: windows description: Launch executable: ZOMBI.exe -'339240': +"339240": installDir: 10 Years After launch: - config: @@ -163006,17 +159363,17 @@ description: Launch executable: 10 Years After.exe type: none -'339250': +"339250": installDir: Winged Sakura Endless Dream launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: Winged Sakura Endless Dream.exe type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Winged Sakura Endless Dream.x86_64 @@ -163026,33 +159383,33 @@ description: Launch executable: Winged Sakura Endless Dream.app type: none -'339280': +"339280": installDir: strife launch: - - arguments: '-steam' + - arguments: "-steam" config: oslist: windows description: Launch executable: bin/strife.exe - - arguments: '-steam' + - arguments: "-steam" config: oslist: macos description: Launch executable: MacOS/strife - - arguments: '-steam' + - arguments: "-steam" config: oslist: linux description: Launch executable: bin/strife-steam.sh type: none -'339290': +"339290": installDir: Castle launch: - config: oslist: windows description: Launch executable: Castle.exe -'339320': +"339320": installDir: Snake Blocks launch: - config: @@ -163067,7 +159424,7 @@ oslist: linux executable: SnakeBlocks.x86 type: default -'339340': +"339340": installDir: Resident Evil 0 launch: - config: @@ -163077,7 +159434,7 @@ nameLocalized: japanese: biohazard 0 HD REMASTER koreana: biohazard 0 HD REMASTER -'339350': +"339350": installDir: ChoiceOfRobots launch: - config: @@ -163092,7 +159449,7 @@ oslist: linux description: Launch executable: ChoiceOfRobots -'339400': +"339400": installDir: Runestone Keeper launch: - config: @@ -163104,7 +159461,7 @@ oslist: macos description: Launch executable: RuneStoneKeeper.app -'339440': +"339440": installDir: Critical Annihilation launch: - config: @@ -163114,13 +159471,13 @@ type: default - config: oslist: macos - executable: Critical Annihilation.app\\Contents\\MacOS\\Critical Annihilation + executable: "Critical Annihilation.app\\\\Contents\\\\MacOS\\\\Critical Annihilation" type: default - config: oslist: linux executable: Critical Annihilation.x86 type: default -'339460': +"339460": installDir: A Pixel Story launch: - config: @@ -163132,25 +159489,25 @@ description: Launch executable: A Pixel Story.app type: none -'339470': +"339470": installDir: Retention launch: - config: oslist: windows description: Launch executable: Retention.exe -'33950': +"33950": installDir: Fish Fillets 2 launch: - executable: Fillets2.exe - description: Launch Fish Fillets 2 Editor executable: Fillets2Editor.exe -'339500': +"339500": installDir: Blasted Fortress launch: - description: Launch executable: BlastedFortress.exe -'339510': +"339510": installDir: PsyHigh launch: - config: @@ -163165,7 +159522,7 @@ oslist: linux description: Launch executable: PsyHigh -'339530': +"339530": installDir: Origins of Malu launch: - config: @@ -163176,9 +159533,9 @@ - config: oslist: linux description: Launch - executable: Blueprint3RDP\\Binaries\\Linux\\Blueprint3RDP + executable: "Blueprint3RDP\\\\Binaries\\\\Linux\\\\Blueprint3RDP" type: default -'339540': +"339540": installDir: Artizens launch: - config: @@ -163186,30 +159543,30 @@ description: Launch executable: start_artizens.exe type: none -'339560': +"339560": installDir: Man Alive Game launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: ManAlive.exe - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: ManAlive.exe - config: - osarch: '64' + osarch: "64" oslist: macos description: Launch executable: ManAlive.dmg - config: - osarch: '32' + osarch: "32" oslist: macos description: Launch executable: ManAlive.dmg -'339570': +"339570": installDir: Enemy launch: - config: @@ -163229,7 +159586,7 @@ oslist: windows executable: enemy_editor.exe type: editor -'339580': +"339580": installDir: Ember launch: - config: @@ -163237,7 +159594,7 @@ description: Launch executable: Ember.exe type: none -'339590': +"339590": installDir: CrowmanWolfboy launch: - config: @@ -163248,7 +159605,7 @@ oslist: macos description: Launch executable: CrowmanWolfboy.app -'339600': +"339600": installDir: VEGA Conflict launch: - config: @@ -163259,14 +159616,14 @@ oslist: macos description: Launch executable: VEGAConflict.app -'339610': +"339610": installDir: FreeStyle2 launch: - config: oslist: windows description: Launch executable: LauncherSteam.exe -'339640': +"339640": installDir: Jagged Alliance Online Reloaded launch: - config: @@ -163281,19 +159638,19 @@ oslist: linux executable: JAO.x86 type: none -'339690': +"339690": installDir: Paperbound launch: - config: oslist: windows description: Launch executable: Paperbound.exe -'339700': - installDir: 'I, Gladiator' +"339700": + installDir: "I, Gladiator" launch: - description: Launch executable: IGladiator.exe -'339710': +"339710": installDir: CyberChicken launch: - config: @@ -163308,14 +159665,14 @@ oslist: macos executable: CC.app type: default -'339720': +"339720": installDir: Debugger 316 launch: - config: oslist: windows executable: debugger.exe type: default -'339790': +"339790": installDir: rFactor launch: - config: @@ -163330,44 +159687,44 @@ oslist: windows description: Dedicated Server executable: rFactor Dedicated.exe -'33980': +"33980": installDir: Pound of Ground launch: - executable: ZL007.exe -'339800': +"339800": installDir: HuniePop launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: HuniePop.exe - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: HuniePop.exe - config: - osarch: '32' + osarch: "32" oslist: macos description: Launch executable: HuniePop.app - config: - osarch: '64' + osarch: "64" oslist: macos description: Launch executable: HuniePop.app - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: HuniePop.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: HuniePop.x86_64 -'339820': +"339820": installDir: Starwalker launch: - config: @@ -163375,7 +159732,7 @@ description: Launch executable: Starwalker.exe type: none -'339830': +"339830": installDir: TheChurchInTheDarkness launch: - config: @@ -163386,23 +159743,23 @@ - config: oslist: macos description: Launch - executable: TheChurchInTheDarkness-Mac.app\\Contents\\MacOS\\TheChurchInTheDarkness-Mac + executable: "TheChurchInTheDarkness-Mac.app\\\\Contents\\\\MacOS\\\\TheChurchInTheDarkness-Mac" type: none -'339840': +"339840": installDir: The Moment of Silence launch: - config: oslist: windows description: Launch The Moment of Silence executable: mos.exe -'339850': +"339850": installDir: Overclocked launch: - config: oslist: windows description: Launch Overclocked executable: launcher.exe -'339860': +"339860": installDir: AoF World Online launch: - config: @@ -163412,48 +159769,48 @@ type: none - config: oslist: windows - ownsdlc: '384850' + ownsdlc: "384850" description: Install Ancients of Fasaria Server executable: Ancients of Fasaria Server Set Up.exe -'33990': +"33990": installDir: Alternativa launch: - executable: ALTERNATIVA.exe -'339900': +"339900": installDir: One Night launch: - config: oslist: windows description: Launch executable: OneNight.exe -'339910': +"339910": installDir: Uncraft World launch: - config: oslist: windows description: Launch executable: UncraftWorld.exe -'340': +"340": installDir: Half-Life 2 launch: - - arguments: '-game lostcoast -steam' + - arguments: "-game lostcoast -steam" config: oslist: windows executable: hl2.exe workingdir: bin - - arguments: '-game lostcoast -steam' + - arguments: "-game lostcoast -steam" config: oslist: macos executable: hl2.sh - - arguments: '-game lostcoast -steam' + - arguments: "-game lostcoast -steam" config: oslist: linux executable: hl2.sh -'3400': +"3400": installDir: Hammer Heads Deluxe launch: - executable: HammerHeads.exe -'340000': +"340000": installDir: Headlander launch: - config: @@ -163466,7 +159823,7 @@ description: Launch executable: Headlander.app/Contents/MacOS/Headlander type: default -'340030': +"340030": installDir: Dungeon of gain launch: - config: @@ -163476,15 +159833,15 @@ - config: oslist: linux description: Launch - executable: ./DungeonRL -'340050': + executable: "./DungeonRL" +"340050": installDir: Survivalist launch: - config: oslist: windows description: Launch executable: Survivalist.exe -'340070': +"340070": installDir: Battle Ranch launch: - config: @@ -163499,41 +159856,39 @@ oslist: linux description: Launch executable: Battle Ranch -'34009': {} -'34010': +"34009": {} +"34010": installDir: Alpha Protocol launch: - executable: APLauncher.exe -'340120': +"340120": installDir: CrazyChicken launch: - description: Launch executable: MoorhuhnDeluxe.exe -'340130': +"340130": installDir: Crazy Chicken - Invasion launch: - config: oslist: windows description: Launch executable: mh_invasion.exe -'340140': +"340140": installDir: Elemental World Part 1Rise Of The Guardians launch: - config: oslist: windows description: Not test build version - description_loc: - english: Not test build version executable: Elemental World ROTG.exe type: none - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch Non test build executable: ElementalWorldP1ROTG.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch non test build executable: ElementalWorldP1ROTG.x86_64 @@ -163543,7 +159898,7 @@ description: Launch non test build version executable: ElementalWorldP1ROTG.app type: none -'340150': +"340150": installDir: Basement launch: - config: @@ -163551,87 +159906,87 @@ description: Launch executable: Basement.app - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: Basement_32.exe - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: Basement_64.exe - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: Basement.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Basement.x86_64 -'340170': +"340170": installDir: FINAL FANTASY TYPE-0 HD launch: - - arguments: '0' + - arguments: "0" config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: fftype0hdlauncher.exe nameLocalized: japanese: ファイナルファンタジー 零式 -'340190': +"340190": installDir: Night Crisis launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Night Crisis.exe type: default -'340200': +"340200": installDir: Bloop launch: - config: oslist: windows description: Launch executable: Launcher.exe -'340210': +"340210": installDir: Predestination launch: - config: oslist: windows description: Launch Predestination executable: Predestination.exe -'340220': +"340220": installDir: Shadows of War launch: - - arguments: '--ignore-gpu-blacklist' + - arguments: "--ignore-gpu-blacklist" config: oslist: windows description: Launch executable: nw.exe - - arguments: '--ignore-gpu-blacklist' + - arguments: "--ignore-gpu-blacklist" config: oslist: linux description: Launch executable: nw - - arguments: '--in-process-GPU --ignore-gpu-blacklist' + - arguments: "--in-process-GPU --ignore-gpu-blacklist" config: oslist: windows description: Launch with Steam Overlay executable: nw.exe - - arguments: '--in-process-GPU --ignore-gpu-blacklist' + - arguments: "--in-process-GPU --ignore-gpu-blacklist" config: oslist: linux description: Launch with Steam Overlay executable: nw - - arguments: '--ignore-gpu-blacklist' + - arguments: "--ignore-gpu-blacklist" config: oslist: macos description: Launch executable: nw.app -'340250': +"340250": installDir: Crystal Towers 2 XL launch: - config: @@ -163643,7 +159998,7 @@ oslist: windows description: Play at 60fps (faster) executable: crystal2xl.exe -'340270': +"340270": installDir: TIMEframe launch: - config: @@ -163654,7 +160009,7 @@ oslist: macos description: Launch executable: TIMEframe.app -'340280': +"340280": installDir: Cubot launch: - config: @@ -163666,23 +160021,23 @@ description: Launch executable: Cubot.app - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: Cubot.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Cubot.x86_64 -'340290': +"340290": installDir: Dr.Green launch: - config: oslist: windows description: Launch executable: Dr.Green.exe -'34030': +"34030": installDir: Napoleon Total War launch: - config: @@ -163692,7 +160047,7 @@ oslist: macos description: Launch executable: Napoleon Total War.app -'340300': +"340300": installDir: Teddy Floppy Ear - Mountain Adventure launch: - config: @@ -163707,7 +160062,7 @@ oslist: linux description: Launch executable: Teddy Floppy Ear - Mountain Adventure.x86 -'340310': +"340310": installDir: Teddy Floppy Ear - Kayaking launch: - config: @@ -163722,7 +160077,7 @@ oslist: linux description: Launch executable: Teddy Floppy Ear - Kayaking.x86 -'340320': +"340320": installDir: Sinless launch: - config: @@ -163743,7 +160098,7 @@ description: Soundtrack executable: Soundtrack.cmd type: none -'340330': +"340330": installDir: Deity Quest launch: - config: @@ -163758,13 +160113,13 @@ oslist: macos description: Launch executable: DeityQuest -'340340': +"340340": installDir: Domestic Dog launch: - description: Launch executable: Domestic_Dog.exe type: none -'340350': +"340350": installDir: Quintet launch: - arguments: source=steam @@ -163783,7 +160138,7 @@ description: Launch executable: Quintet.x86_64 type: none -'340360': +"340360": installDir: Tomb of Tyrants launch: - config: @@ -163791,26 +160146,26 @@ description: Launch executable: ToT.exe - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: ToT.sh - config: - osarch: '64' + osarch: "64" oslist: macos description: Launch executable: ToT.app - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: ToT.sh - config: - osarch: '32' + osarch: "32" oslist: macos description: Launch executable: ToT.app -'340370': +"340370": installDir: Shades of Black launch: - config: @@ -163821,14 +160176,14 @@ oslist: macos executable: Shades of Black.app type: none -'340380': +"340380": installDir: Pizzarian launch: - config: oslist: windows description: Launch executable: Pizzarian.exe -'340390': +"340390": installDir: Abomination Tower launch: - config: @@ -163840,16 +160195,16 @@ description: Launch executable: AbominationTower.app - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: AbominationTower.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: AbominationTower.x86_64 -'340400': +"340400": installDir: Lucid Awakening 2 launch: - config: @@ -163857,14 +160212,14 @@ description: Launch executable: Game.exe type: none -'340410': +"340410": installDir: SuperBike TT launch: - config: oslist: windows description: Launch executable: Superbike_SteamVR.exe -'340440': +"340440": installDir: Grand Class Melee 2 launch: - config: @@ -163876,7 +160231,7 @@ oslist: macos executable: gcm2_wineskinner_x_01.app type: default -'340450': +"340450": installDir: Crashed Lander launch: - config: @@ -163884,22 +160239,22 @@ executable: CrashedLander.exe type: none - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: CrashedLander.x86 - config: oslist: macos description: Launch - executable: CrashedLander.app\\Contents\\MacOS\\CrashedLander + executable: "CrashedLander.app\\\\Contents\\\\MacOS\\\\CrashedLander" - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch 64bit executable: CrashedLander.x86_64 - config: oslist: windows - description: ' ' + description: " " executable: CrashedLander.exe type: vr - config: @@ -163911,11 +160266,11 @@ betakey: betatemp executable: CrashedLander.exe type: vr -'340460': +"340460": installDir: Spartans Vs Zombies Defense launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: svz.exe @@ -163924,21 +160279,21 @@ description: Launch executable: svz.app - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: svz.x86_64 - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: svz.x86 - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: svz32.exe -'340470': +"340470": installDir: You Are Not A Banana launch: - config: @@ -163953,41 +160308,41 @@ oslist: linux executable: YOU_ARE_NOT_A_BANANA.x86 type: none -'340480': +"340480": installDir: Project Green Beat launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Project Green Beat - executable: Binaries\\Win32\\ProjectGreenBeat.exe -'340490': + executable: "Binaries\\\\Win32\\\\ProjectGreenBeat.exe" +"340490": installDir: Subterrain launch: - config: oslist: windows description: Launch executable: Subterrain.exe - - arguments: '-popupwindow' + - arguments: "-popupwindow" config: oslist: windows description: Borderless window mode executable: Subterrain.exe type: none - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" config: oslist: windows description: Show display selector executable: Subterrain.exe type: none -'340500': +"340500": installDir: The Warriorlock™ launch: - config: oslist: windows executable: Game.exe type: default -'340520': +"340520": installDir: Tallowmere launch: - config: @@ -163999,30 +160354,30 @@ description: Launch executable: Tallowmere.app - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Tallowmere.x86_64 - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: Tallowmere.x86 -'340530': +"340530": installDir: Soccer Legends launch: - config: oslist: windows description: Launch executable: SoccerLegends.exe -'340540': +"340540": installDir: TDP4Team Battle launch: - config: oslist: windows description: Launch executable: tdp4air.exe -'340550': +"340550": installDir: Crunch Time launch: - config: @@ -164034,41 +160389,41 @@ description: Launch executable: CrunchTime.app - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: CrunchTime.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: CrunchTime.x86_64 -'340560': +"340560": installDir: WantedCorp launch: - description: Launch executable: WantedCorp.exe - description: Configuration executable: Detect.exe -'340570': +"340570": installDir: WolfWars launch: - config: oslist: windows description: Launch executable: wolfwars.exe -'340580': +"340580": installDir: Armed with Wings Rearmed launch: - config: oslist: windows description: Launch executable: Armed with Wings Rearmed.exe -'340600': +"340600": installDir: The Depths of Tolagal launch: - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: tolagal @@ -164077,7 +160432,7 @@ description: Launch executable: tolagal.app - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: tolagal-wrapper.sh @@ -164085,7 +160440,7 @@ oslist: windows description: Launch executable: nw.exe -'340630': +"340630": installDir: Ninja Guy launch: - config: @@ -164097,43 +160452,43 @@ description: Launch executable: ninjaguy.exe - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: NinjaGuy.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: NinjaGuy.x86_64 - description: Launch executable: game.exe -'340650': +"340650": installDir: Elements Soul of Fire launch: - description: Launch executable: E1.exe -'340680': +"340680": installDir: Bunny Bash launch: - config: - osarch: '64' + osarch: "64" oslist: macos description: Launch executable: BunnyBash.app type: default - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: BunnyBash.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: BunnyBash type: default -'340700': +"340700": installDir: Aqua Panic launch: - config: @@ -164152,7 +160507,7 @@ oslist: macos description: Launch executable: AquaPanic -'340720': +"340720": installDir: The Tiny Tale 2 launch: - config: @@ -164163,7 +160518,7 @@ oslist: macos description: Launch executable: TTT2.app -'340730': +"340730": installDir: Sunrider Academy launch: - config: @@ -164177,8 +160532,8 @@ - config: oslist: macos description: Launch - executable: SunriderAcademy.app\\Contents\\MacOS\\SunriderAcademy -'340750': + executable: "SunriderAcademy.app\\\\Contents\\\\MacOS\\\\SunriderAcademy" +"340750": installDir: Gunslugs2 launch: - config: @@ -164193,7 +160548,7 @@ oslist: linux description: Launch executable: gunslugs2 -'340770': +"340770": installDir: Death Goat launch: - config: @@ -164205,7 +160560,7 @@ oslist: macos executable: DeathGoat.app type: none -'340800': +"340800": installDir: Unhack launch: - config: @@ -164222,20 +160577,20 @@ executable: nw - config: oslist: windows - ownsdlc: '343580' - description: 'Play Unhack:Destruction' + ownsdlc: "343580" + description: "Play Unhack:Destruction" executable: destruction/unhack_destruction.exe - config: oslist: macos - ownsdlc: '343580' - description: 'Play Unhack:Destruction' + ownsdlc: "343580" + description: "Play Unhack:Destruction" executable: destruction/unhack_destruction.app - config: oslist: linux - ownsdlc: '343580' - description: 'Play Unhack:Destruction' + ownsdlc: "343580" + description: "Play Unhack:Destruction" executable: destruction/unhack_destruction -'340810': +"340810": installDir: Deepworld launch: - config: @@ -164246,14 +160601,14 @@ oslist: macos description: Launch executable: Deepworld.app -'340820': +"340820": installDir: Yelaxot launch: - config: oslist: windows executable: Yelaxot.exe type: default -'340830': +"340830": installDir: Razenroth launch: - config: @@ -164261,30 +160616,30 @@ description: Launch executable: Razenroth.exe - config: - osarch: '64' + osarch: "64" oslist: linux executable: Razenroth.x86_64 type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: Razenroth.x86 type: none -'340840': +"340840": installDir: The Corridor On Behalf Of The Dead launch: - config: oslist: windows executable: The Corridor.exe type: default -'340860': +"340860": installDir: RaidersSphere4th launch: - config: oslist: windows description: Launch executable: SpE4.exe -'340880': +"340880": installDir: Solar War launch: - config: @@ -164295,7 +160650,7 @@ oslist: linux description: Launch executable: solarwar.sh -'340920': +"340920": installDir: Siege of Turtle Enclave launch: - config: @@ -164304,16 +160659,16 @@ executable: SoTE.exe type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: SoTE.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: SoTE.x86_64 type: none -'340950': +"340950": installDir: Let There Be Life launch: - config: @@ -164324,28 +160679,28 @@ oslist: macos description: Launch executable: Let There Be Life.app -'340960': +"340960": installDir: Pulsen launch: - config: oslist: windows description: Launch - executable: Program\\run_from_steam.cmd + executable: "Program\\\\run_from_steam.cmd" - config: oslist: windows - ownsdlc: '370373' + ownsdlc: "370373" description: Editor - executable: Program\\run_editor_from_steam.cmd -'340990': + executable: "Program\\\\run_editor_from_steam.cmd" +"340990": installDir: Bolt launch: - description: Launch executable: DisneyBolt.exe -'3410': +"3410": installDir: Heavy Weapon Deluxe launch: - executable: Heavy Weapon Deluxe.exe -'341000': +"341000": installDir: Mad Games Tycoon launch: - config: @@ -164356,14 +160711,14 @@ oslist: macos executable: MadGamesTycoon.app type: none -'341010': +"341010": installDir: Pluck launch: - config: oslist: windows description: Launch executable: Pluck.exe -'341020': +"341020": installDir: Finding Teddy 2 launch: - config: @@ -164376,30 +160731,30 @@ description: Launch executable: FindingTeddy2.app type: none -'341030': +"341030": installDir: Colonial Conquest launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch Colonial Conquest 32-bit executable - executable: 32bit\\ColonialConquest.exe + executable: "32bit\\\\ColonialConquest.exe" workingdir: 32bit - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch Colonial Conquest 64-bit executable - executable: 64bit\\ColonialConquest.exe + executable: "64bit\\\\ColonialConquest.exe" workingdir: 64bit - config: oslist: macos executable: ColonialConquest.app type: default -'341040': +"341040": installDir: WAW launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: 64Bits/WAW.exe type: default @@ -164409,75 +160764,71 @@ executable: WAW.app type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: 32Bits/WAW.exe type: none workingdir: 32Bits -'341050': {} -'341060': +"341050": {} +"341060": installDir: The Lady launch: - config: oslist: windows description: Launch executable: TheLady.exe -'341070': +"341070": installDir: Stay Dead Evolution launch: - config: oslist: windows description: Launch executable: Stay Dead Evolution.exe -'341080': +"341080": installDir: Nexus One Core launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: NexusOneCoreGame.exe -'341090': +"341090": installDir: On A Roll 3D launch: - config: oslist: windows description: Play On A Roll 3D - executable: On A Roll 3D\\On A Roll 3D.exe + executable: "On A Roll 3D\\\\On A Roll 3D.exe" type: none - config: oslist: linux description: Play On A Roll 3D - description_loc: - english: Play On A Roll 3D - executable: On A Roll 3D\\On A Roll 3D.x86_64 + executable: "On A Roll 3D\\\\On A Roll 3D.x86_64" - config: oslist: macos description: Play On A Roll 3D - executable: On A Roll 3D\\On A Roll 3D.app + executable: "On A Roll 3D\\\\On A Roll 3D.app" type: none - config: oslist: windows - ownsdlc: '487570' + ownsdlc: "487570" description: Play On A Roll 2D - executable: On A Roll 2D\\On A Roll.exe + executable: "On A Roll 2D\\\\On A Roll.exe" type: none - config: oslist: linux - ownsdlc: '487570' + ownsdlc: "487570" description: Play On A Roll 2D - description_loc: - english: Play On A Roll 2D - executable: On A Roll 2D\\On A Roll.x86_64 + executable: "On A Roll 2D\\\\On A Roll.x86_64" type: none - config: oslist: macos - ownsdlc: '487570' + ownsdlc: "487570" description: Play On A Roll 2D - executable: On A Roll 2D\\On A Roll.app + executable: "On A Roll 2D\\\\On A Roll.app" type: none -'341110': {} -'341120': +"341110": {} +"341120": installDir: Glorkian Warrior The Trials Of Glork launch: - config: @@ -164489,7 +160840,7 @@ oslist: macos description: Launch executable: GLORK.app -'341150': +"341150": installDir: AOF2 launch: - config: @@ -164500,89 +160851,87 @@ - config: oslist: linux description: Launch - executable: ./aof2-start-linux.sh + executable: "./aof2-start-linux.sh" - config: oslist: macos description: Launch - executable: ./aof2-start-macosx.command - - arguments: '-config' + executable: "./aof2-start-macosx.command" + - arguments: "-config" config: oslist: windows description: Configuration executable: aof2-start-windows.bat type: none - - arguments: '-config' + - arguments: "-config" config: oslist: linux description: Configuration - executable: ./aof2-start-linux.sh + executable: "./aof2-start-linux.sh" type: none - - arguments: '-config' + - arguments: "-config" config: oslist: macos description: Configuration - executable: ./aof2-start-macosx.command + executable: "./aof2-start-macosx.command" type: none - config: oslist: windows - description: 'Play Age of Fear 2: The Chaos Lord (Log Console)' + description: "Play Age of Fear 2: The Chaos Lord (Log Console)" executable: aof2-start-windows-console.bat type: none - - arguments: '-workshop' + - arguments: "-workshop" config: oslist: windows description: Workshop Manager executable: aof2-start-windows-console.bat type: none - - arguments: '-workshop' + - arguments: "-workshop" config: oslist: macos description: Workshop Manager - executable: ./aof2-start-macosx.command + executable: "./aof2-start-macosx.command" type: none - - arguments: '-workshop' + - arguments: "-workshop" config: oslist: linux description: Workshop Manager - executable: ./aof2-start-linux.sh + executable: "./aof2-start-linux.sh" type: none - config: oslist: windows - description: 'Play Age of Fear 2: The Chaos Lord (Force 64bit)' - description_loc: - english: 'Play Age of Fear 2: The Chaos Lord (Force 64bit)' + description: "Play Age of Fear 2: The Chaos Lord (Force 64bit)" executable: aof2-start-windows-64.bat type: none -'341160': +"341160": installDir: Steam Heroes launch: - description: Launch executable: SteamHeroes(x86).exe -'341170': +"341170": installDir: Adventures of Chris launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Adventures of Chris.exe type: default - config: oslist: macos - executable: Adventures of Chris.app\\Contents\\MacOS\\Adventures of Chris + executable: "Adventures of Chris.app\\\\Contents\\\\MacOS\\\\Adventures of Chris" type: default - - arguments: '-screen-fullscreen 0' + - arguments: "-screen-fullscreen 0" config: - osarch: '64' + osarch: "64" oslist: linux executable: Adventures of Chris.x86_64 type: default - - arguments: '-screen-fullscreen 0' + - arguments: "-screen-fullscreen 0" config: - osarch: '32' + osarch: "32" oslist: linux executable: Adventures of Chris.x86 type: default -'341260': +"341260": installDir: Isaac the Adventurer launch: - config: @@ -164593,7 +160942,7 @@ oslist: macos description: Launch executable: isaac-the-adventurer.app -'341270': +"341270": installDir: Samphi launch: - config: @@ -164601,7 +160950,7 @@ description: Launch executable: Samphi.exe type: default -'341290': +"341290": installDir: Lazors launch: - config: @@ -164616,7 +160965,7 @@ oslist: macos executable: Lazors.app type: default -'341310': +"341310": installDir: Greyfox launch: - config: @@ -164624,7 +160973,7 @@ description: Launch executable: EQLauncher.exe type: default -'341360': +"341360": installDir: Paparazzi launch: - config: @@ -164639,7 +160988,7 @@ oslist: linux description: Launch executable: paparazzi.x86 -'341380': +"341380": installDir: Countless Rooms of Death launch: - config: @@ -164647,82 +160996,68 @@ description: Launch executable: Countless Rooms of Death.exe - description: Launch Windows Xp - executable: Binaries\\Win32\\CROD.exe -'341390': + executable: "Binaries\\\\Win32\\\\CROD.exe" +"341390": installDir: Vulture for NetHack launch: - config: oslist: windows description: View Game Manual - description_loc: - english: View Game Manual executable: manual/index.html type: manual - config: oslist: windows description: Play Vulture for NetHack 3.6.6 - description_loc: - english: Play Vulture for NetHack 3.6.6 - executable: Variants\\NetHack\\3.6.6\\Vulture-NetHack-3.6.6.exe + executable: "Variants\\\\NetHack\\\\3.6.6\\\\Vulture-NetHack-3.6.6.exe" type: none - workingdir: Variants\\NetHack\\3.6.6\\ + workingdir: "Variants\\\\NetHack\\\\3.6.6\\\\" - config: oslist: windows description: Play Vulture for NetHack 3.4.3 - description_loc: - english: Play Vulture for NetHack 3.4.3 - executable: Variants\\NetHack\\3.4.3\\Vulture-NetHack-3.4.3.exe + executable: "Variants\\\\NetHack\\\\3.4.3\\\\Vulture-NetHack-3.4.3.exe" type: none - workingdir: Variants\\NetHack\\3.4.3\\ + workingdir: "Variants\\\\NetHack\\\\3.4.3\\\\" - config: oslist: windows - ownsdlc: '348190' - description: Play Vulture for Slash'EM 0.0.7E7F2 - description_loc: - english: Play Vulture for Slash'EM 0.0.7E7F2 - executable: Variants\\SlashEM\\0.0.7E7F2\\Vulture-SlashEM-0.0.7E7F2.exe + ownsdlc: "348190" + description: "Play Vulture for Slash'EM 0.0.7E7F2" + executable: "Variants\\\\SlashEM\\\\0.0.7E7F2\\\\Vulture-SlashEM-0.0.7E7F2.exe" type: none - workingdir: Variants\\SlashEM\\0.0.7E7F2\\ + workingdir: "Variants\\\\SlashEM\\\\0.0.7E7F2\\\\" - config: oslist: linux description: Play Vulture for NetHack 3.6.6 - description_loc: - english: Play Vulture for NetHack 3.6.6 - executable: Variants\\NetHack\\3.6.6\\vulture-nethack-3.6.6 + executable: "Variants\\\\NetHack\\\\3.6.6\\\\vulture-nethack-3.6.6" type: none - workingdir: Variants\\NetHack\\3.6.6\\ + workingdir: "Variants\\\\NetHack\\\\3.6.6\\\\" - config: oslist: linux description: Play Vulture for NetHack 3.4.3 - description_loc: - english: Play Vulture for NetHack 3.4.3 - executable: Variants\\NetHack\\3.4.3\\vulture-nethack-3.4.3 + executable: "Variants\\\\NetHack\\\\3.4.3\\\\vulture-nethack-3.4.3" type: none - workingdir: Variants\\NetHack\\3.4.3\\ + workingdir: "Variants\\\\NetHack\\\\3.4.3\\\\" - config: oslist: linux - ownsdlc: '348190' - description: Play Vulture for Slash'EM 0.0.7E7F2 - description_loc: - english: Play Vulture for Slash'EM 0.0.7E7F2 - executable: Variants\\SlashEM\\0.0.7E7F2\\vulture-slashem-0.0.7E7F2 + ownsdlc: "348190" + description: "Play Vulture for Slash'EM 0.0.7E7F2" + executable: "Variants\\\\SlashEM\\\\0.0.7E7F2\\\\vulture-slashem-0.0.7E7F2" type: none - workingdir: Variants\\SlashEM\\0.0.7E7F2\\ -'341440': + workingdir: "Variants\\\\SlashEM\\\\0.0.7E7F2\\\\" +"341440": installDir: BANZAI PECAN The Last Hope For the Young Century launch: - config: oslist: windows description: Launch executable: BPECAN.exe -'341460': +"341460": installDir: Fallen Temple launch: - config: oslist: windows description: Launch executable: Game.exe -'341470': +"341470": installDir: Loot Hunter launch: - config: @@ -164733,7 +161068,7 @@ oslist: macos description: Launch executable: Loot Hunter.app -'341490': +"341490": installDir: Undead Legions launch: - config: @@ -164741,21 +161076,21 @@ description: Launch executable: Ulr.exe type: none -'341500': +"341500": installDir: Camera Obscura launch: - description: Launch executable: CameraObscura.exe - description: Launch Editor executable: Editor.exe -'341510': +"341510": installDir: Crayon Chronicles launch: - config: oslist: windows description: Launch executable: CrayonChronicles.exe -'341530': +"341530": installDir: Stardust Vanguards launch: - config: @@ -164766,7 +161101,7 @@ oslist: linux description: Launch (Linux) executable: StardustVanguards.sh -'341540': +"341540": installDir: TRIP launch: - config: @@ -164778,14 +161113,14 @@ oslist: macos description: Launch executable: TRIP_SE.app -'341550': +"341550": installDir: Super Cyborg launch: - config: oslist: windows description: Launch executable: Super Cyborg.exe -'341570': +"341570": installDir: Throbax TD launch: - config: @@ -164797,8 +161132,8 @@ oslist: linux description: Launch executable: mono -'341580': {} -'341640': +"341580": {} +"341640": installDir: Relativity Wars launch: - config: @@ -164809,35 +161144,35 @@ oslist: windows description: Launch executable: game.exe -'341660': +"341660": installDir: Survival Barren Roads launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: br64.exe - config: - osarch: '64' + osarch: "64" oslist: macos description: Launch executable: mac64.app - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: br32.exe - config: - osarch: '32' + osarch: "32" oslist: macos description: Launch executable: mac32.app - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: brLinuxuni.x86_64 -'341680': +"341680": installDir: stratO launch: - config: @@ -164849,11 +161184,11 @@ description: Launch executable: strato.app - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: stratOLinux.x86 -'341690': +"341690": installDir: The Great Fusion launch: - config: @@ -164865,23 +161200,23 @@ description: Launch executable: The Great Fusion.app - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: The Great Fusion.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: The Great Fusion.x86_64 -'341700': +"341700": installDir: Cahors Sunset launch: - config: oslist: windows description: Launch executable: cahorssunset.exe -'341710': +"341710": installDir: Crest launch: - config: @@ -164889,12 +161224,12 @@ description: Launch executable: Crest.exe - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: Crest.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Crest.x86_64 @@ -164902,7 +161237,7 @@ oslist: macos description: Launch executable: Crest.app -'341720': +"341720": installDir: AmongRipples launch: - config: @@ -164910,12 +161245,12 @@ description: Launch executable: AmongRipples.exe - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: AmongRipples.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: AmongRipples.x86_64 @@ -164923,7 +161258,7 @@ oslist: macos description: Launch executable: AmongRipples.app -'341730': +"341730": installDir: Dustoff Heli Rescue launch: - config: @@ -164934,15 +161269,15 @@ oslist: macos description: Launch executable: DustoffMacSteam.app -'341750': +"341750": installDir: AV launch: - - arguments: '-force-d3d11 -show-screen-selector' + - arguments: "-force-d3d11 -show-screen-selector" config: oslist: windows description: A.V. DX 11 (Recommended) executable: AV.exe - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" config: oslist: linux description: A.V. (x86) @@ -164951,28 +161286,28 @@ oslist: macos description: A.V. Launch executable: AV.app - - arguments: '-force-d3d11' + - arguments: "-force-d3d11" config: oslist: windows description: VR DX 11 executable: AV_DirectToRift.exe - - arguments: '-force-d3d9 -show-screen-selector' + - arguments: "-force-d3d9 -show-screen-selector" config: oslist: windows description: A.V. DX 9 executable: AV.exe - - arguments: '-VR' + - arguments: "-VR" config: oslist: macos description: VR Mode (Unstable) executable: AV.app - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" config: - osarch: '64' + osarch: "64" oslist: linux description: A.V. (x64) executable: AV.x86_64 -'341760': +"341760": installDir: Flem launch: - config: @@ -164983,38 +161318,38 @@ oslist: macos description: Launch executable: Flem.app -'341770': +"341770": installDir: Geared launch: - config: oslist: windows description: Launch executable: GearedForSteam.exe -'341780': +"341780": installDir: Chronicles of a Dark Lord Episode II War of The Abyss launch: - config: oslist: windows description: Launch executable: Game.exe -'34180': +"34180": installDir: Vancouver 2010 The Official Video Game of the Olympic Winter Games launch: - executable: Vancouver_.exe -'341800': +"341800": installDir: Keep Talking and Nobody Explodes launch: - - arguments: '-vrmode none' + - arguments: "-vrmode none" config: oslist: windows executable: ktane.exe type: default - - arguments: '-force-glcore' + - arguments: "-force-glcore" config: oslist: macos executable: Keep Talking and Nobody Explodes.app type: none - - arguments: '-steamvr' + - arguments: "-steamvr" config: oslist: windows description: Game @@ -165026,16 +161361,16 @@ executable: ktane.exe type: othervr - config: - osarch: '32' + osarch: "32" oslist: linux executable: ktane.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: ktane.x86_64 type: default -'341820': +"341820": installDir: Plush launch: - config: @@ -165047,16 +161382,16 @@ description: Launch executable: Plush.exe - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: Plush.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Plush.x86_64 -'341860': +"341860": installDir: SickBrick launch: - config: @@ -165065,12 +161400,12 @@ executable: SickBrick.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: SickBrick.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: SickBrick.x86_64 type: default @@ -165078,14 +161413,14 @@ oslist: macos executable: SickBrick.app type: default -'341870': +"341870": installDir: Tembo The Badass Elephant launch: - config: oslist: windows description: Play Tembo The Badass Elephant executable: Tembo The Badass Elephant.exe -'341890': +"341890": installDir: HitBox launch: - config: @@ -165093,20 +161428,20 @@ description: Launch executable: HitBox.exe type: default -'34190': +"34190": installDir: Sonic and SEGA All Stars Racing launch: - executable: Sonic & SEGA All-Stars Racing.exe - description: Sonic and SEGA All Stars Racing - Config executable: Config.exe -'341910': +"341910": installDir: Ultimate Space Commando launch: - config: oslist: windows description: Launch executable: USC.exe -'341930': +"341930": installDir: Space Station Alpha launch: - config: @@ -165118,28 +161453,28 @@ description: Launch executable: Space Station Alpha.app - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: SpaceStationAlpha.x86_64 - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: SpaceStationAlpha.x86 -'341940': +"341940": installDir: Hatred launch: - config: oslist: windows description: Launch - executable: Hatred\\Binaries\\Win64\\Hatred-Win64-Shipping.exe + executable: "Hatred\\\\Binaries\\\\Win64\\\\Hatred-Win64-Shipping.exe" type: default - config: oslist: linux - executable: Hatred\\Binaries\\Linux\\Hatred-Linux-Shipping + executable: "Hatred\\\\Binaries\\\\Linux\\\\Hatred-Linux-Shipping" type: default -'341950': +"341950": installDir: Lux Delux launch: - config: @@ -165154,12 +161489,12 @@ oslist: linux description: Launch executable: LuxDelux.sh -'341980': {} -'3420': +"341980": {} +"3420": installDir: Iggle Pop Deluxe launch: - executable: IgglePop.exe -'342020': +"342020": installDir: BiT Evolution launch: - config: @@ -165170,7 +161505,7 @@ oslist: macos description: Launch executable: BiT Evolution.app -'342080': +"342080": installDir: Rogue Invader launch: - config: @@ -165181,14 +161516,14 @@ oslist: macos executable: Rogue Invader.app type: default -'342090': +"342090": installDir: The Clans - Saga of the Twins launch: - config: oslist: windows description: Launch executable: Game.exe -'342100': +"342100": installDir: Sym launch: - config: @@ -165199,35 +161534,35 @@ oslist: macos description: Launch executable: SymMac.app -'342130': +"342130": installDir: Hashtag Dungeon launch: - config: oslist: windows executable: HashtagDungeon.exe type: default -'342150': +"342150": installDir: Games of Glory launch: - config: oslist: windows description: Launch executable: GoGClient.exe -'342180': +"342180": installDir: ArizonaSunshine launch: - - arguments: '-vrmode openvr' + - arguments: "-vrmode openvr" config: oslist: windows executable: ArizonaSunshine.exe type: vr -'342190': +"342190": installDir: Skyworld launch: - - arguments: '-UnityVR' + - arguments: "-UnityVR" executable: Skyworld.exe type: vr -'34220': +"34220": installDir: Football Manager 2011 launch: - config: @@ -165236,40 +161571,40 @@ - config: oslist: macos executable: fm.app -'342200': +"342200": installDir: MechWarrior Online launch: - arguments: +steam -flowthru config: - osarch: '64' + osarch: "64" oslist: windows description: Launch 64-bit - executable: bin64\\MWOClient.exe + executable: "bin64\\\\MWOClient.exe" type: none workingdir: bin64 -'342230': +"342230": installDir: Air Guardians launch: - description: Launch executable: Air Guardians.exe -'342240': +"342240": installDir: SCHAR Blue Shield Alliance launch: - config: oslist: windows description: Launch executable: SCHAR.exe -'342250': +"342250": installDir: Aspectus - Rinascimento Chronicles launch: - config: oslist: windows description: Launch executable: Aspectus - Rinascimento Chronicles.exe -'342260': +"342260": installDir: Nevermind launch: - - arguments: '-vrmode none' + - arguments: "-vrmode none" config: oslist: windows executable: Nevermind.exe @@ -165279,17 +161614,17 @@ description: Launch executable: Nevermind.app - config: - osarch: '64' + osarch: "64" oslist: windows executable: Nevermind.exe type: vr - - arguments: '-vrmode oculus' + - arguments: "-vrmode oculus" config: - osarch: '64' + osarch: "64" oslist: windows executable: Nevermind.exe type: othervr -'342280': +"342280": installDir: Manyland launch: - arguments: steamlaunch @@ -165298,7 +161633,7 @@ description: Launch executable: manyland.exe type: default -'342300': +"342300": installDir: Zombie Kill of the Week - Reborn launch: - config: @@ -165310,7 +161645,7 @@ description: Launch OSX version executable: reborn.app type: none -'342310': +"342310": installDir: RIOT launch: - config: @@ -165322,36 +161657,36 @@ executable: riot.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Riot.x86_64 type: default -'342350': +"342350": installDir: Into The Gloom launch: - config: oslist: windows - description: 'Into The Gloom 2018 (DX11) [Achievements]' + description: "Into The Gloom 2018 (DX11) [Achievements]" executable: IntoTheGloomSSE11.exe type: none - config: oslist: windows - description: 'Into The Gloom (DX9) [No Achievements]' + description: "Into The Gloom (DX9) [No Achievements]" executable: IntoTheGloomSSE.exe type: none - config: oslist: windows - description: 'ITG Classic (OLD) [Early Access Version]' + description: "ITG Classic (OLD) [Early Access Version]" executable: IntoTheGloom.exe type: none -'342360': +"342360": installDir: Train of Afterlife launch: - config: oslist: windows description: Launch executable: toa.exe -'342380': +"342380": installDir: Sakura Angels launch: - config: @@ -165367,7 +161702,7 @@ oslist: linux description: Launch executable: Sakura Angels.sh -'342450': +"342450": installDir: Sword Daughter launch: - config: @@ -165382,7 +161717,7 @@ oslist: macos description: Launch executable: SwordDaughter.app -'342480': +"342480": installDir: Gunscape launch: - config: @@ -165394,16 +161729,16 @@ description: Launch executable: Gunscape.app - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: Gunscape.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Gunscape.x86_64 -'342490': +"342490": installDir: Shipwreck launch: - config: @@ -165418,45 +161753,45 @@ oslist: linux description: Launch executable: Shipwreck -'342500': +"342500": installDir: Human Extinction Simulator launch: - config: oslist: windows description: Launch executable: hes.exe -'342510': +"342510": installDir: Bret Airborne launch: - description: Launch executable: BretAirborne.exe -'342520': - installDir: Indie-Dev\\BoxesWithGuns\\ +"342520": + installDir: "Indie-Dev\\\\BoxesWithGuns\\\\" launch: - config: oslist: windows description: Launch executable: BWGLauncher.exe -'342530': +"342530": installDir: HNL-PPPP launch: - - arguments: '-online' + - arguments: "-online" config: oslist: windows description: Launch executable: HNL-PPPP.exe - - arguments: '-online' + - arguments: "-online" config: oslist: macos description: Launch executable: HNL-PPPP.app - - arguments: '-online' + - arguments: "-online" config: oslist: linux description: Launch executable: HNL-PPPP.x86 type: none -'342540': +"342540": installDir: TerminalHacker01 launch: - config: @@ -165468,15 +161803,15 @@ oslist: linux executable: thackerLinux.x86_64 type: default -'342550': +"342550": installDir: Phantasmal launch: - - arguments: '-popupwindow -force-d3d9 -screen-fullscreen 0' + - arguments: "-popupwindow -force-d3d9 -screen-fullscreen 0" config: oslist: windows description: Launch executable: Phantasmal.exe -'342560': +"342560": installDir: Airships Conquer the Skies launch: - config: @@ -165500,7 +161835,7 @@ description: Launch using System Java executable: Airships_sysjava.sh type: none -'342570': +"342570": installDir: HIS (Heroes In the Sky) launch: - arguments: _STEAM_ @@ -165508,7 +161843,7 @@ oslist: windows description: Launch executable: hisstarter.exe -'342580': +"342580": installDir: 12 Labours of Hercules launch: - config: @@ -165523,7 +161858,7 @@ oslist: macos description: Launch executable: 12 Labours of Hercules.app -'342610': +"342610": installDir: HyperRogue launch: - config: @@ -165532,13 +161867,13 @@ executable: hyper.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: hyper64 type: default - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: hyper32 @@ -165548,18 +161883,18 @@ description: Launch executable: hyper type: default - - arguments: '-vr-enabled 1' + - arguments: "-vr-enabled 1" config: oslist: windows executable: hyper.exe type: vr - - arguments: '-vr-enabled 1' + - arguments: "-vr-enabled 1" config: - osarch: '64' + osarch: "64" oslist: linux executable: hyper64 type: vr -'342620': +"342620": installDir: FromSpace launch: - config: @@ -165572,17 +161907,17 @@ executable: FromSpace.app workingdir: FromSpace - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: FromSpace.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: FromSpace.x86_64 -'342630': - installDir: Witch's Pranks Frog's Fortune +"342630": + installDir: "Witch's Pranks Frog's Fortune" launch: - config: oslist: windows @@ -165592,21 +161927,21 @@ oslist: macos description: Launch executable: WitchesPranks_FrogsFortune_CE.app -'342640': +"342640": installDir: Pixel Privateers launch: - config: oslist: windows description: Launch executable: privateers.exe -'342650': - installDir: Fermi's Path +"342650": + installDir: "Fermi's Path" launch: - config: oslist: windows description: Launch executable: FerP.exe -'342660': +"342660": installDir: BrawlerzArena launch: - config: @@ -165622,7 +161957,7 @@ oslist: macos description: Launch executable: Brawlerz.app -'34270': +"34270": installDir: Sega Classics launch: - config: @@ -165641,50 +161976,50 @@ executable: SEGAGameRoom.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: SEGAGameRoom type: default - - arguments: '-VR' + - arguments: "-VR" config: oslist: windows description: Game hub (VR) executable: SEGAGameRoom.exe type: vr -'34272': {} -'34273': {} -'342730': {} -'34274': {} -'342740': {} -'34275': {} -'34276': {} -'34277': {} -'34278': {} -'34279': {} -'34280': {} -'34281': {} -'34282': {} -'34283': {} -'34284': {} -'34285': {} -'34286': {} -'342860': +"34272": {} +"34273": {} +"342730": {} +"34274": {} +"342740": {} +"34275": {} +"34276": {} +"34277": {} +"34278": {} +"34279": {} +"34280": {} +"34281": {} +"34282": {} +"34283": {} +"34284": {} +"34285": {} +"34286": {} +"342860": installDir: Dark Quest launch: - config: oslist: windows description: Launch executable: DarkQuest.exe -'34287': {} -'342870': +"34287": {} +"342870": installDir: Corona MotorSport launch: - config: oslist: windows description: Launch Corona MotorSport executable: CMSv1.03Alphafixed.exe -'34288': {} -'342880': +"34288": {} +"342880": installDir: NekoChan Hero - Collection launch: - config: @@ -165692,8 +162027,8 @@ description: NekoChan Hero Collection executable: NekoChan Hero Collection.exe type: default -'34289': {} -'342890': +"34289": {} +"342890": installDir: Synonymy launch: - config: @@ -165704,42 +162039,42 @@ oslist: macos description: Launch executable: Synonymy.app -'342910': +"342910": installDir: Vantage Primitive Survival Game launch: - config: oslist: windows description: Launch - executable: Client\\Vantage Client\\Vantage Client.exe + executable: "Client\\\\Vantage Client\\\\Vantage Client.exe" type: none -'342920': +"342920": installDir: TotoTempleDeluxe launch: - config: oslist: windows description: Launch executable: Toto Temple Deluxe.exe -'342940': +"342940": installDir: Project Gorgon launch: - - arguments: '-steam' + - arguments: "-steam" config: - osarch: '64' + osarch: "64" oslist: windows executable: WindowsPlayer.exe type: default - - arguments: '-steam' + - arguments: "-steam" config: oslist: macos executable: MacPlayer.app/Contents/MacOS/MacPlayer type: default - - arguments: '-steam' + - arguments: "-steam" config: - osarch: '64' + osarch: "64" oslist: linux executable: ProjectGorgon type: default -'342970': +"342970": installDir: Pixel Survivors launch: - config: @@ -165747,7 +162082,7 @@ description: Launch executable: Survivors Beta.exe type: default -'342980': +"342980": installDir: Destination Sol launch: - config: @@ -165762,7 +162097,7 @@ oslist: macos description: Launch executable: solOSX.sh -'342990': +"342990": installDir: 15 Days launch: - config: @@ -165770,39 +162105,39 @@ description: Launch 15 Days executable: rhc.exe - description: Launch 15 Days Manual - executable: Docs\\Manual.pdf -'3430': + executable: "Docs\\\\Manual.pdf" +"3430": installDir: Pizza Frenzy launch: - executable: PizzaFrenzy.exe -'343000': +"343000": installDir: The Mystery of the Druids launch: - description: Launch The Mystery of the Druids executable: edd.exe -'343020': +"343020": installDir: MagNets launch: - config: oslist: windows description: Launch executable: Magnets.exe -'343070': +"343070": installDir: World of Subways 4 – New York Line 7 launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch - executable: Bin\\x86_Release\\WoS4.exe - workingdir: Bin\\x86_Release + executable: "Bin\\\\x86_Release\\\\WoS4.exe" + workingdir: "Bin\\\\x86_Release" - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch - executable: Bin\\x64_Release\\WoS4.exe - workingdir: Bin\\x64_Release -'343090': + executable: "Bin\\\\x64_Release\\\\WoS4.exe" + workingdir: "Bin\\\\x64_Release" +"343090": installDir: SimpleRockets launch: - config: @@ -165813,8 +162148,8 @@ oslist: macos description: Launch executable: SimpleRockets.app -'34310': {} -'343100': +"34310": {} +"343100": installDir: Overture launch: - config: @@ -165824,54 +162159,54 @@ - config: oslist: macos description: Launch - executable: Overture.app\\Contents\\MacOS\\Mac_Runner -'34311': {} -'34312': {} -'343120': + executable: "Overture.app\\\\Contents\\\\MacOS\\\\Mac_Runner" +"34311": {} +"34312": {} +"343120": installDir: Motorbike launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: Motorbike.exe type: default - config: - osarch: '64' + osarch: "64" oslist: macos description: Launch - executable: Motorbike.app\\Contents\\MacOS\\Motorbike + executable: "Motorbike.app\\\\Contents\\\\MacOS\\\\Motorbike" type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Motorbike.x86_64 type: default - config: - osarch: '64' + osarch: "64" oslist: windows description: Motorbike executable: Motorbike.exe type: vr -'34313': {} -'34314': {} -'343140': +"34313": {} +"34314": {} +"343140": installDir: Cars Radiator Springs Adventures launch: - description: Launch executable: Cars.exe -'34315': {} -'343150': +"34315": {} +"343150": installDir: Endica 07 The Dream King launch: - config: oslist: windows executable: Endica 07 The Dream King.exe type: default -'34316': {} -'34317': {} -'343170': +"34316": {} +"34317": {} +"343170": installDir: Cyberpunk 3776 launch: - config: @@ -165882,8 +162217,8 @@ oslist: macos description: Launch executable: Cyberpunk3776.app -'34318': {} -'343180': +"34318": {} +"343180": installDir: Top Trumps launch: - config: @@ -165898,15 +162233,15 @@ oslist: linux description: Launch executable: TopTrumpsTurbo.x86 -'34319': {} -'343250': +"34319": {} +"343250": installDir: Gene launch: - config: oslist: windows description: Launch executable: gene.exe -'343270': +"343270": installDir: Disillusions Manga Horror launch: - config: @@ -165929,7 +162264,7 @@ oslist: macos description: DMH Oculus Rift VR Version executable: DMHvr.app -'343280': +"343280": installDir: Zotrix launch: - config: @@ -165944,7 +162279,7 @@ oslist: linux description: Launch executable: Zotrix -'34330': +"34330": installDir: Total War SHOGUN 2 launch: - config: @@ -165953,40 +162288,32 @@ - config: oslist: windows description: Encyclopaedia - executable: data\\encyclopedia\\how_to_play.html - - arguments: >- - /gui Benchmarks/Sekigahara_Intro.replay; Benchmarks/Sekigahara_Intro_Camera.xml; - benchmarks\\BenchmarkDX11GraphicsHigh1080p_preferences.script.txt; + executable: "data\\\\encyclopedia\\\\how_to_play.html" + - arguments: "/gui Benchmarks/Sekigahara_Intro.replay; Benchmarks/Sekigahara_Intro_Camera.xml; benchmarks\\\\BenchmarkDX11GraphicsHigh1080p_preferences.script.txt;" config: oslist: windows description: Benchmark DX11 Graphics High 1080p - executable: benchmarks\\benchmark_specify_properties.bat - - arguments: >- - /gui Benchmarks/Sekigahara_Intro.replay; Benchmarks/Sekigahara_Intro_Camera.xml; - benchmarks\\BenchmarkDX11GraphicsBalanced720p_preferences.script.txt; + executable: "benchmarks\\\\benchmark_specify_properties.bat" + - arguments: "/gui Benchmarks/Sekigahara_Intro.replay; Benchmarks/Sekigahara_Intro_Camera.xml; benchmarks\\\\BenchmarkDX11GraphicsBalanced720p_preferences.script.txt;" config: oslist: windows description: Benchmark DX11 Graphics Balanced 720p - executable: benchmarks\\benchmark_specify_properties.bat + executable: "benchmarks\\\\benchmark_specify_properties.bat" - arguments: /gui Benchmarks/Sekigahara_Intro.replay; Benchmarks/Sekigahara_Intro_Camera.xml; config: oslist: windows description: Benchmark Game Settings - executable: benchmarks\\benchmark_current_settings.bat - - arguments: >- - /gui Benchmarks/Sekigahara_Intro.replay; Benchmarks/Sekigahara_Intro_Camera.xml; - benchmarks\\BenchmarkDX9GraphicsBalanced720p_preferences.script.txt; + executable: "benchmarks\\\\benchmark_current_settings.bat" + - arguments: "/gui Benchmarks/Sekigahara_Intro.replay; Benchmarks/Sekigahara_Intro_Camera.xml; benchmarks\\\\BenchmarkDX9GraphicsBalanced720p_preferences.script.txt;" config: oslist: windows description: Benchmark DX9 Graphics Balanced 720p - executable: benchmarks\\benchmark_specify_properties.bat - - arguments: >- - /gui Benchmarks/BenchmarkDX9CPU.replay; Benchmarks/BenchmarkDX9CPU_camera.xml; - benchmarks\\BenchmarkDX9CPU_preferences.script.txt; + executable: "benchmarks\\\\benchmark_specify_properties.bat" + - arguments: "/gui Benchmarks/BenchmarkDX9CPU.replay; Benchmarks/BenchmarkDX9CPU_camera.xml; benchmarks\\\\BenchmarkDX9CPU_preferences.script.txt;" config: oslist: windows description: Benchmark DX9 CPU - executable: benchmarks\\benchmark_specify_properties.bat + executable: "benchmarks\\\\benchmark_specify_properties.bat" - config: oslist: macos executable: Total War SHOGUN 2.app @@ -165997,7 +162324,7 @@ nameLocalized: schinese: 全面战争:幕府将军2 tchinese: 全面戰爭:幕府將軍2 -'343320': +"343320": installDir: SynWorld launch: - config: @@ -166025,7 +162352,7 @@ executable: SynSDK/RapidPainter/textureeditor.exe type: none workingdir: SynSDK/RapidPainter -'343330': +"343330": installDir: Need for Madness launch: - config: @@ -166040,7 +162367,7 @@ oslist: linux description: Launch executable: Madness.sh -'343340': +"343340": installDir: Tiamat X launch: - config: @@ -166051,24 +162378,20 @@ oslist: linux description: Launch executable: TiamatX -'343360': +"343360": installDir: Particula launch: - config: oslist: windows description: Launch - description_loc: - english: Launch - executable: Particula\\Particula.exe + executable: "Particula\\\\Particula.exe" type: default - config: oslist: macos description: Launch - description_loc: - english: Launch - executable: Particula (Mac)\\Particula.app + executable: "Particula (Mac)\\\\Particula.app" type: default -'343370': +"343370": installDir: SLAMMED launch: - config: @@ -166083,7 +162406,7 @@ oslist: linux description: Launch executable: SLAMMED -'343390': +"343390": installDir: ElementaryMyDearMajesty launch: - config: @@ -166094,7 +162417,7 @@ oslist: macos description: Launch executable: Elementary My Dear Majesty.app -'343410': +"343410": installDir: inSynch launch: - config: @@ -166107,16 +162430,16 @@ executable: inSynch.sh - config: oslist: macos - executable: inSynchSteam.app\\Contents\\MacOS\\inSynchSteam + executable: "inSynchSteam.app\\\\Contents\\\\MacOS\\\\inSynchSteam" type: none -'343430': +"343430": installDir: Hypnosis launch: - config: oslist: windows description: Launch executable: Hypnosis.exe -'343440': +"343440": installDir: Crash Drive 2 launch: - config: @@ -166132,7 +162455,7 @@ oslist: macos description: Launch executable: Crash Drive 2.app/Contents/MacOS/Crash Drive 2 -'343560': +"343560": installDir: Bob Was Hungry launch: - config: @@ -166143,7 +162466,7 @@ oslist: macos description: Launch executable: bobwashungry.app -'343570': +"343570": installDir: Rainbow Hero launch: - description: Launch @@ -166151,33 +162474,33 @@ - arguments: window description: Launch (windowed mode) executable: RainbowHero.exe -'343630': +"343630": installDir: CroNix launch: - - arguments: '-seekfreeloading -CXHost=193.219.96.107 -CXChattingHost=193.219.96.107' + - arguments: "-seekfreeloading -CXHost=193.219.96.107 -CXChattingHost=193.219.96.107" config: - osarch: '32' + osarch: "32" oslist: windows description: Launch - executable: .\\Binaries\\Win32\\CroNixGame-Win32-Shipping.com + executable: ".\\\\Binaries\\\\Win32\\\\CroNixGame-Win32-Shipping.com" type: none - - arguments: '-seekfreeloading -CXHost=193.219.96.107 -CXChattingHost=193.219.96.107' + - arguments: "-seekfreeloading -CXHost=193.219.96.107 -CXChattingHost=193.219.96.107" config: - osarch: '64' + osarch: "64" oslist: windows description: Launch - executable: .\\Binaries\\Win64\\CroNixGame-Win64-Shipping.com + executable: ".\\\\Binaries\\\\Win64\\\\CroNixGame-Win64-Shipping.com" type: none -'343690': +"343690": installDir: Silicone-2 launch: - config: - osarch: '32' + osarch: "32" oslist: linux executable: Silicone-2.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: Silicone-2.x86_64 type: none @@ -166185,7 +162508,7 @@ oslist: windows executable: Silicone-2.exe type: none -'343710': +"343710": installDir: KHOLAT launch: - config: @@ -166193,7 +162516,7 @@ description: Launch executable: Kholat.exe - config: - osarch: '64' + osarch: "64" oslist: macos description: Launch executable: Kholat.app @@ -166201,29 +162524,29 @@ russian: Холат - перевал Дятлова schinese: 死山 tchinese: 死山 -'343730': +"343730": installDir: Irrational Exuberance launch: - config: - osarch: '64' + osarch: "64" description: Launch executable: irrex.exe type: vr -'343740': +"343740": installDir: InMind launch: - - arguments: '-vrmode None' + - arguments: "-vrmode None" config: oslist: windows executable: InMind.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: InMind.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: InMind.x86_64 type: default @@ -166239,7 +162562,7 @@ oslist: windows executable: InMind.exe type: vr -'343750': +"343750": installDir: FireflyOnlineCortex launch: - config: @@ -166250,7 +162573,7 @@ oslist: macos description: Launch executable: FireflyCortex.app -'343770': +"343770": installDir: Rotieer launch: - config: @@ -166262,23 +162585,23 @@ description: Launch executable: Rotieer.app - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: Rotieer.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Rotieer.x86_64 -'343780': +"343780": installDir: Cat Goes Fishing launch: - config: oslist: windows description: Launch executable: Cat Goes Fishing.exe -'343800': +"343800": installDir: Shadowgate MacVenture Series launch: - config: @@ -166294,7 +162617,7 @@ description: Launch executable: shadowgate type: none -'343810': +"343810": installDir: Uninvited MacVenture Series launch: - config: @@ -166310,7 +162633,7 @@ description: Launch executable: uninvited type: none -'343820': +"343820": installDir: Deja Vu MacVenture Series launch: - config: @@ -166326,7 +162649,7 @@ description: Launch executable: dejavu type: none -'343830': +"343830": installDir: Deja Vu II MacVenture Series launch: - config: @@ -166342,30 +162665,30 @@ description: Launch executable: dejavu2 type: none -'343840': +"343840": installDir: Trash TV launch: - description: Launch executable: TrashTV.exe -'343860': +"343860": installDir: Tacoma launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Tacoma.exe type: none - config: - osarch: '64' + osarch: "64" oslist: macos executable: Tacoma.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Launch.sh type: default -'343930': +"343930": installDir: Fort Defense launch: - config: @@ -166376,7 +162699,7 @@ oslist: macos description: Launch executable: Fort Defense.app -'343990': +"343990": installDir: Anti-Opoly launch: - config: @@ -166387,26 +162710,26 @@ oslist: macos description: Launch executable: Anti-Opoly.app -'3440': +"3440": installDir: Rocket Mania Deluxe launch: - executable: RocketMania.exe -'344030': +"344030": installDir: Ghost Pirates of Vooju Island launch: - description: Launch executable: main.exe -'344040': {} -'34410': +"344040": {} +"34410": installDir: Death to Spies Moment of Truth launch: - description: Launch Game executable: Truth.exe -'344100': +"344100": installDir: Never Ending Night launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Never Ending Night Full Game For Windows executable: NEN Windows 64 bit.exe @@ -166422,17 +162745,17 @@ executable: NEN Linux.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: Never Ending Night.exe type: default -'344130': +"344130": installDir: Cataegis The White Wind launch: - description: Launch executable: CataegisLauncher.exe type: none -'344160': +"344160": installDir: WOC_BASIC launch: - config: @@ -166441,28 +162764,28 @@ executable: WoC.exe - description: Launch in Windowed Mode executable: WoC_winmode.exe -'344180': +"344180": installDir: Valiant launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Valiant.exe type: vr -'344190': +"344190": installDir: Immortal Empire launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Immortal Empire.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: Immortal Empire.exe type: default -'34420': +"34420": installDir: XIII Century Gold Edition launch: - config: @@ -166472,7 +162795,7 @@ oslist: windows description: Configure executable: config.exe -'344220': +"344220": installDir: Janky Tanks launch: - config: @@ -166483,13 +162806,13 @@ oslist: macos description: Launch executable: janky-tanks.app -'344230': +"344230": installDir: Pixel Puzzles 2 - Birds launch: - description: Launch executable: Pixel Puzzles 2 - Birds.exe -'344240': - installDir: Man O' War Corsair +"344240": + installDir: "Man O' War Corsair" launch: - config: oslist: windows @@ -166506,49 +162829,49 @@ description: Launch executable: ManOWarCorsair type: none -'344260': {} -'344270': +"344260": {} +"344270": installDir: InnerCube launch: - config: oslist: windows description: Launch executable: InnerCube.exe -'344300': +"344300": installDir: Heckabomb launch: - config: oslist: windows description: Launch executable: Heckabomb.exe -'344340': +"344340": installDir: Front Office Football Seven launch: - config: oslist: windows description: Front Office Football executable: Front Office Football Seven.exe -'344410': +"344410": installDir: Magnetic Cage Closed launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: Magnetic.exe -'344440': +"344440": installDir: SacraTerraAngelicNight launch: - config: oslist: windows description: Launch executable: SacraTerra_AngelicNight.exe -'344480': +"344480": installDir: Quell launch: - description: Launch executable: Quell.exe -'344500': +"344500": installDir: Three Fourths Home launch: - config: @@ -166560,21 +162883,21 @@ description: Launch executable: Three Fourths Home Extended Edition.app - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: Three Fourths Home Extended Edition.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Three Fourths Home Extended Edition.x86_64 -'344630': +"344630": installDir: Princess Evangile launch: - description: Launch executable: Evangile.exe -'344740': +"344740": installDir: Cryptark launch: - config: @@ -166584,23 +162907,23 @@ type: none - config: oslist: linux - executable: ./Cryptark + executable: "./Cryptark" type: none - config: oslist: macos executable: Cryptark.app/Contents/MacOS/Cryptark type: none -'344750': {} -'344760': +"344750": {} +"344760": installDir: Reign Of Kings launch: - - arguments: '-nologger' + - arguments: "-nologger" config: - osarch: '64' + osarch: "64" oslist: windows executable: Reign of Kings.exe type: none -'344770': +"344770": installDir: faultms2a launch: - config: @@ -166617,7 +162940,7 @@ type: default nameLocalized: japanese: fault - milestone two 上 -'344790': +"344790": installDir: Mystery Masters Psycho Train Deluxe Edition launch: - config: @@ -166628,22 +162951,22 @@ oslist: macos description: Launch executable: PsychoTrain.app -'344800': +"344800": installDir: World of Mixed Martial Arts 3 launch: - description: Launch executable: WMMA3.exe -'344810': +"344810": installDir: Total Extreme Wrestling launch: - description: Launch executable: TEW2010.exe -'344820': +"344820": installDir: Forsaken Fortress Strategy launch: - executable: Forsaken Fortress Strategy.exe type: none -'344840': +"344840": installDir: Gratuitous Space Battles 2 launch: - config: @@ -166653,12 +162976,12 @@ - config: oslist: linux description: Launch - executable: ./GSB2 + executable: "./GSB2" - config: oslist: macos description: Launch executable: GSB2.app -'344850': +"344850": installDir: Big Pharma launch: - config: @@ -166673,7 +162996,7 @@ oslist: linux description: Launch executable: Big Pharma.x86 -'344860': +"344860": installDir: Crystal Story II launch: - config: @@ -166684,7 +163007,7 @@ oslist: macos description: Launch executable: Crystal Story II.app -'344880': +"344880": installDir: In Exilium launch: - config: @@ -166696,16 +163019,16 @@ description: Launch executable: In Exilium.app - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: In_Exilium_Linux.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: In_Exilium_Linux.x86_64 -'344890': +"344890": installDir: ARMPP launch: - config: @@ -166713,12 +163036,12 @@ executable: ARM.exe type: default - config: - osarch: '64' + osarch: "64" executable: ARM.exe type: vr - executable: ARM.exe type: othervr -'344900': +"344900": installDir: Undeadz! launch: - config: @@ -166726,7 +163049,7 @@ description: Launch executable: Undeadz.exe type: none -'344910': +"344910": installDir: SunBlast launch: - config: @@ -166741,22 +163064,22 @@ oslist: linux description: Launch executable: sunblast.bin.x86 -'344960': +"344960": installDir: Jaques Roque launch: - config: oslist: windows description: Launch executable: Jaques Roque.exe -'3450': +"3450": installDir: Typer Shark Deluxe launch: - executable: WinTS.exe -'34500': +"34500": installDir: Light of Altair launch: - executable: Altair.exe -'345010': +"345010": installDir: Ascent - The Space Game launch: - config: @@ -166769,16 +163092,16 @@ executable: thespacegame.app type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: thespacegame.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: thespacegame.x86_64 type: none -'345020': +"345020": installDir: A Feeble Saga launch: - config: @@ -166789,26 +163112,26 @@ oslist: macos executable: A Feeble Saga.app/Contents/MacOS/A Feeble Saga type: default -'345030': +"345030": installDir: 3d Engineers launch: - description: Launch executable: Start.exe -'345060': +"345060": installDir: Stay Alight launch: - config: oslist: windows description: Launch executable: Stay Alight.exe -'345080': +"345080": installDir: Flame Over launch: - config: oslist: windows description: Launch executable: FlameOver.exe -'345090': +"345090": installDir: Ancient Planet launch: - config: @@ -166819,108 +163142,108 @@ oslist: macos description: Launch executable: AncientPlanet.app -'345120': +"345120": installDir: Vox Populi Vox Dei(a werewolf thriller) Episode 2 launch: - config: oslist: windows description: Launch executable: VP2.exe -'345130': +"345130": installDir: Dark Matter launch: - config: oslist: windows description: Launch executable: Dark Matter.exe -'345140': +"345140": installDir: Crystal_Rift launch: - - arguments: '-screen-fullscreen 1 -screen-quality Desktop' + - arguments: "-screen-fullscreen 1 -screen-quality Desktop" config: - osarch: '64' + osarch: "64" oslist: windows description: Play Crystal Rift - Full Screen executable: CrystalRift_Win_x64.exe type: default - - arguments: '-screen-fullscreen 1 -screen-quality Desktop' + - arguments: "-screen-fullscreen 1 -screen-quality Desktop" config: - osarch: '32' + osarch: "32" oslist: windows description: Play Crystal Rift - Full Screen executable: CrystalRift_Win_x86.exe type: default - - arguments: '-screen-fullscreen 1 -screen-quality Desktop' + - arguments: "-screen-fullscreen 1 -screen-quality Desktop" config: - osarch: '64' + osarch: "64" oslist: macos description: Play Crystal Rift - Full Screen executable: CrystalRift_OSX_x64.app type: default - - arguments: '-screen-fullscreen 0 -screen-quality Desktop' + - arguments: "-screen-fullscreen 0 -screen-quality Desktop" config: - osarch: '64' + osarch: "64" oslist: windows description: Play Crystal Rift - Windowed executable: CrystalRift_Win_x64.exe type: none - - arguments: '-screen-fullscreen 0 -screen-quality Desktop' + - arguments: "-screen-fullscreen 0 -screen-quality Desktop" config: - osarch: '32' + osarch: "32" oslist: windows description: Play Crystal Rift - Windowed executable: CrystalRift_Win_x86.exe type: none - - arguments: '-screen-fullscreen 0' + - arguments: "-screen-fullscreen 0" config: - osarch: '64' + osarch: "64" oslist: macos description: Play Crystal Rift - Windowed executable: CrystalRift_OSX_x64.app type: none - - arguments: '-screen-fullscreen 1 -screen-quality Desktop' + - arguments: "-screen-fullscreen 1 -screen-quality Desktop" config: - osarch: '64' + osarch: "64" oslist: linux description: Play Crystal Rift (64Bit) - Full Screen executable: CrystalRift_Linux_x64.x86_64 type: none - - arguments: '-screen-fullscreen 0 -screen-quality Desktop' + - arguments: "-screen-fullscreen 0 -screen-quality Desktop" config: - osarch: '64' + osarch: "64" oslist: linux description: Play Crystal Rift (64Bit) - Windowed executable: CrystalRift_Linux_x64.x86_64 type: none - - arguments: '-screen-quality OculusRift' + - arguments: "-screen-quality OculusRift" config: - osarch: '64' + osarch: "64" oslist: windows description: Launch Oculus Rift in VR Mode executable: CrystalRift_Win_OculusRift_x64.exe type: othervr - - arguments: '-screen-quality SteamVR' + - arguments: "-screen-quality SteamVR" config: - osarch: '64' + osarch: "64" oslist: windows description: Steam VR executable: CrystalRift_Win_SteamVR_x64.exe type: vr - - arguments: '-screen-fullscreen 1 -screen-quality Desktop' + - arguments: "-screen-fullscreen 1 -screen-quality Desktop" config: - osarch: '32' + osarch: "32" oslist: linux description: Play Crystal Rift (32Bit) - Full Screen executable: CrystalRift_Linux_x64.x86 type: none - - arguments: '-screen-fullscreen 0 -screen-quality Desktop' + - arguments: "-screen-fullscreen 0 -screen-quality Desktop" config: - osarch: '64' + osarch: "64" oslist: linux description: Play Crystal Rift (32Bit) - Windowed executable: CrystalRift_Linux_x64.x86 type: none -'345180': +"345180": installDir: Victor Vran launch: - config: @@ -166935,7 +163258,7 @@ oslist: linux description: Launch executable: VictorVran -'345200': +"345200": installDir: Tasty Blue launch: - config: @@ -166946,7 +163269,7 @@ oslist: macos description: Launch executable: Tasty Blue.app -'345220': +"345220": installDir: Agent Awesome launch: - config: @@ -166957,47 +163280,47 @@ oslist: macos description: Launch executable: AgentA.app -'345230': +"345230": installDir: The Dark Inside Me launch: - config: oslist: windows executable: The Dark Inside Me.exe type: default -'345240': +"345240": installDir: Total War Shogun 1 Gold launch: - description: Launch executable: launcher/launcher.exe type: none -'345260': +"345260": installDir: Total War Medieval 1 Gold launch: - description: Launch executable: launcher/launcher.exe type: none -'345280': +"345280": installDir: Lost in a Forest launch: - config: oslist: windows description: Launch executable: Lost in a Forest.exe -'345290': +"345290": installDir: The Quivering launch: - config: oslist: windows description: Launch executable: QuivMenu.exe -'345330': +"345330": installDir: Eden Rising launch: - config: oslist: windows - executable: Client\\EdenRising.exe + executable: "Client\\\\EdenRising.exe" type: default -'345340': +"345340": installDir: The Grave Digger launch: - config: @@ -167005,16 +163328,16 @@ description: Launch executable: TheGraveDigger.exe - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: TheGraveDigger.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: TheGraveDigger.x86_64 -'345350': +"345350": installDir: LIGHTNING RETURNS FINAL FANTASY XIII launch: - config: @@ -167024,25 +163347,25 @@ type: none nameLocalized: japanese: ライトニング リターンズ ファイナルファンタジーXIII -'345390': - installDir: King's Quest +"345390": + installDir: "King's Quest" launch: - config: oslist: windows description: Launch executable: Binaries/Win/KingsQuest.exe -'345430': +"345430": installDir: The Cursed Forest launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch - executable: bin\\win_x64\\TCF.exe + executable: "bin\\\\win_x64\\\\TCF.exe" type: none nameLocalized: schinese: 诅咒丛林 -'345440': +"345440": installDir: Vapour launch: - config: @@ -167057,7 +163380,7 @@ oslist: linux description: Launch executable: Vapour_Part1.x86_64 -'345460': +"345460": installDir: War of Omens launch: - config: @@ -167075,7 +163398,7 @@ description: Launch development build executable: Badger.app type: none -'345480': +"345480": installDir: Lumo launch: - config: @@ -167084,26 +163407,26 @@ type: default - config: oslist: macos - executable: Lumo.app\\Contents\\MacOS\\Lumo + executable: "Lumo.app\\\\Contents\\\\MacOS\\\\Lumo" type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Lumo.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Lumo.x86_64 type: default -'345540': +"345540": installDir: Inbetween Land launch: - config: oslist: windows description: Launch executable: InbetweenLand.exe -'345580': +"345580": installDir: Universal Combat CE launch: - config: @@ -167111,23 +163434,23 @@ description: Universal Combat CE executable: UCCE.EXE type: default -'345610': +"345610": installDir: The Fruit of Grisaia launch: - description: Launch executable: GrisaiaLauncher.exe type: default -'345620': +"345620": installDir: The Labyrinth of Grisaia launch: - executable: GrisaiaLauncher.exe type: none -'345630': +"345630": installDir: The Eden of Grisaia launch: - executable: Grisaia3.exe type: default -'345640': +"345640": installDir: Block Legend DX launch: - config: @@ -167145,7 +163468,7 @@ executable: BlockLegendDX.x86 nameLocalized: schinese: 砖块传奇DX -'345650': +"345650": installDir: Without Within launch: - config: @@ -167160,20 +163483,20 @@ oslist: linux description: Launch executable: without_within.sh -'345660': +"345660": installDir: RIDE - Game launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: RideX64.exe - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: Ride.exe -'345690': +"345690": installDir: Crash Dummy launch: - config: @@ -167188,7 +163511,7 @@ oslist: linux executable: Crash Dummy 07 08 2015.x86 type: none -'345700': +"345700": installDir: Echo Tokyo Intro launch: - config: @@ -167206,14 +163529,14 @@ description: Launch executable: Echo Tokyo Intro.app type: none -'345710': +"345710": installDir: Damned Nation Reborn launch: - config: oslist: windows description: Launch - executable: windows_content\\DamnedNR.exe -'345750': + executable: "windows_content\\\\DamnedNR.exe" +"345750": installDir: Idol Hands launch: - config: @@ -167224,35 +163547,35 @@ - config: oslist: macos description: Launch - executable: IdolHands.app\\Contents\\MacOS\\IdolHands + executable: "IdolHands.app\\\\Contents\\\\MacOS\\\\IdolHands" type: default - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: IdolHands.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: IdolHands.x86_64 type: default -'345790': +"345790": installDir: Bridge Creator 2015 launch: - config: oslist: windows description: Launch executable: Launcher.exe -'345820': - installDir: Shantae and the Pirate's Curse +"345820": + installDir: "Shantae and the Pirate's Curse" launch: - config: oslist: windows description: Launch executable: ShantaeCurse.exe -'345860': +"345860": installDir: Super Galaxy Squadron launch: - config: @@ -167273,18 +163596,18 @@ - config: oslist: macos description: Play Super Galaxy Squadron EX Turbo (Mac) - executable: Super Galaxy Squadron EX Turbo.app\\Contents\\MacOS\\Mac_Runner + executable: "Super Galaxy Squadron EX Turbo.app\\\\Contents\\\\MacOS\\\\Mac_Runner" type: option1 -'345890': +"345890": installDir: NASCAR 15 launch: - config: oslist: windows - description: Launch NASCAR '15 + description: "Launch NASCAR '15" executable: bin/NASCAR15.exe workingdir: /bin -'345920': {} -'345990': +"345920": {} +"345990": installDir: Abraca launch: - config: @@ -167295,11 +163618,11 @@ oslist: macos description: Launch executable: Abraca.app -'3460': +"3460": installDir: Talismania Deluxe launch: - executable: Talismania.exe -'34600': +"34600": installDir: Order of War launch: - executable: oow_final.exe @@ -167307,7 +163630,7 @@ executable: oow_final_dx9.exe - description: Report Error executable: oow_report.exe -'346010': +"346010": installDir: Besiege launch: - config: @@ -167319,17 +163642,17 @@ description: Launch executable: Besiege.app - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: Besiege.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Besiege.x86_64 -'346040': - installDir: Joe's Diner +"346040": + installDir: "Joe's Diner" launch: - config: oslist: windows @@ -167345,12 +163668,12 @@ oslist: macos executable: JoesDiner.app type: default -'346060': +"346060": installDir: High School Musical 3 launch: - description: Launch executable: hsm.exe -'346080': +"346080": installDir: Astro Emporia launch: - config: @@ -167365,8 +163688,8 @@ oslist: macos description: Launch executable: Astro Emporia.app -'346090': - installDir: I Can't Escape Darkness +"346090": + installDir: "I Can't Escape Darkness" launch: - config: oslist: windows @@ -167380,90 +163703,90 @@ oslist: macos description: Launch executable: ICEDarkness -'346110': +"346110": installDir: ARK launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch ARK - executable: ShooterGame\\Binaries\\Win64\\ShooterGame_BE.exe + executable: "ShooterGame\\\\Binaries\\\\Win64\\\\ShooterGame_BE.exe" type: none - workingdir: ShooterGame\\Binaries\\Win64 + workingdir: "ShooterGame\\\\Binaries\\\\Win64" - config: - osarch: '64' + osarch: "64" oslist: windows - description: 'Play ARK: No BattlEye AntiCheat, Unofficial Servers Only' - executable: ShooterGame\\Binaries\\Win64\\ShooterGame.exe + description: "Play ARK: No BattlEye AntiCheat, Unofficial Servers Only" + executable: "ShooterGame\\\\Binaries\\\\Win64\\\\ShooterGame.exe" type: none - workingdir: ShooterGame\\Binaries\\Win64 - - arguments: '-sm4 -nomansky' + workingdir: "ShooterGame\\\\Binaries\\\\Win64" + - arguments: "-sm4 -nomansky" config: - osarch: '64' + osarch: "64" oslist: windows - description: 'Launch ARK (DirectX 10, Low-End Graphics)' - executable: ShooterGame\\Binaries\\Win64\\ShooterGame_BE.exe + description: "Launch ARK (DirectX 10, Low-End Graphics)" + executable: "ShooterGame\\\\Binaries\\\\Win64\\\\ShooterGame_BE.exe" type: none - workingdir: ShooterGame\\Binaries\\Win64 - - arguments: '-allowansel' + workingdir: "ShooterGame\\\\Binaries\\\\Win64" + - arguments: "-allowansel" config: - osarch: '64' + osarch: "64" oslist: windows description: Launch ARK with NVIDIA Ansel - executable: ShooterGame\\Binaries\\Win64\\ShooterGame_BE.exe + executable: "ShooterGame\\\\Binaries\\\\Win64\\\\ShooterGame_BE.exe" type: none - workingdir: ShooterGame\\Binaries\\Win64 + workingdir: "ShooterGame\\\\Binaries\\\\Win64" - config: oslist: linux description: Launch ARK executable: ShooterGame/Binaries/Linux/ShooterGame type: none - - arguments: '-TotalConversionMod=0' + - arguments: "-TotalConversionMod=0" config: - osarch: '64' + osarch: "64" oslist: windows description: Launch ARK (Reset Active Total Conversion) - executable: ShooterGame\\Binaries\\Win64\\ShooterGame.exe + executable: "ShooterGame\\\\Binaries\\\\Win64\\\\ShooterGame.exe" type: none - workingdir: ShooterGame\\Binaries\\Win64 - - arguments: '-lowmemory -sm4 -nomansky' + workingdir: "ShooterGame\\\\Binaries\\\\Win64" + - arguments: "-lowmemory -sm4 -nomansky" config: - osarch: '64' + osarch: "64" oslist: windows description: Launch ARK (Extremely Low Memory) - executable: ShooterGame\\Binaries\\Win64\\ShooterGame_BE.exe + executable: "ShooterGame\\\\Binaries\\\\Win64\\\\ShooterGame_BE.exe" type: none - workingdir: ShooterGame\\Binaries\\Win64 - - arguments: '-nomansky' + workingdir: "ShooterGame\\\\Binaries\\\\Win64" + - arguments: "-nomansky" config: - osarch: '64' + osarch: "64" oslist: windows description: Launch ARK (No Sky Effects) - executable: ShooterGame\\Binaries\\Win64\\ShooterGame_BE.exe + executable: "ShooterGame\\\\Binaries\\\\Win64\\\\ShooterGame_BE.exe" type: none - workingdir: ShooterGame\\Binaries\\Win64 - - arguments: '-resetres' + workingdir: "ShooterGame\\\\Binaries\\\\Win64" + - arguments: "-resetres" config: - osarch: '64' + osarch: "64" oslist: windows description: Reset Game Resolution - executable: ShooterGame\\Binaries\\Win64\\ShooterGame.exe + executable: "ShooterGame\\\\Binaries\\\\Win64\\\\ShooterGame.exe" type: none - workingdir: ShooterGame\\Binaries\\Win64 - - arguments: '4' + workingdir: "ShooterGame\\\\Binaries\\\\Win64" + - arguments: "4" config: - osarch: '64' + osarch: "64" oslist: windows description: Uninstall BattlEye - executable: ShooterGame\\Binaries\\Win64\\ShooterGame_BE.exe + executable: "ShooterGame\\\\Binaries\\\\Win64\\\\ShooterGame_BE.exe" type: none - workingdir: ShooterGame\\Binaries\\Win64 + workingdir: "ShooterGame\\\\Binaries\\\\Win64" - config: oslist: macos description: Launch ARK executable: ShooterGame.app type: none -'346120': +"346120": installDir: Boring Man - Online Tactical Stickman Combat launch: - config: @@ -167474,11 +163797,9 @@ - config: oslist: linux description: run.sh - description_loc: - english: run.sh executable: run.sh type: default -'346130': +"346130": installDir: rktcr launch: - config: @@ -167487,7 +163808,7 @@ executable: rktcr-steam.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: rktcr-steam @@ -167497,35 +163818,35 @@ description: Launch executable: rktcr-steam.app type: default - - arguments: '--for-robots' + - arguments: "--for-robots" config: betakey: for-robots oslist: windows - description: Play Rktcr with \"For Robots\" support + description: "Play Rktcr with \\\"For Robots\\\" support" executable: rktcr-steam.exe type: none - - arguments: '--for-robots' + - arguments: "--for-robots" config: betakey: for-robots oslist: macos - description: Play Rktcr with \"For Robots\" support + description: "Play Rktcr with \\\"For Robots\\\" support" executable: rktcr-steam.app type: none - - arguments: '--for-robots' + - arguments: "--for-robots" config: betakey: for-robots oslist: linux - description: Play Rktcr with \"For Robots\" support + description: "Play Rktcr with \\\"For Robots\\\" support" executable: rktcr-steam type: none -'346140': +"346140": installDir: HiddenObjectBundle5in1 launch: - config: oslist: windows description: Launch executable: 5in1Bundle.exe -'346150': +"346150": installDir: Martial Law launch: - config: @@ -167534,19 +163855,19 @@ executable: MartialLaw Beta Test V0.01.exe type: none - config: - osarch: '64' + osarch: "64" oslist: linux - description: 'Linux ' + description: "Linux " executable: MartialLaw Beta Test v0.01.x86_64 type: none -'346160': +"346160": installDir: Barter Empire launch: - config: oslist: windows description: Launch executable: game.exe -'346180': +"346180": installDir: David launch: - config: @@ -167557,7 +163878,7 @@ oslist: macos description: Launch executable: David.app -'346200': +"346200": installDir: Drew and the Floating Labyrinth launch: - config: @@ -167572,27 +163893,27 @@ oslist: macos description: Launch executable: Drew and the Floating Labyrinth - SD - MAC.app -'346210': +"346210": installDir: Garden Rescue launch: - config: oslist: windows description: Launch executable: garden_rescue.exe -'346220': +"346220": installDir: Lif launch: - description: Launch executable: Lif.exe type: none -'346240': +"346240": installDir: Ski Park Tycoon launch: - config: oslist: windows description: Launch executable: Ski Park Tycoon.exe -'346250': +"346250": installDir: The Old Tree launch: - config: @@ -167603,18 +163924,18 @@ oslist: macos description: Launch executable: TheOldTree.app -'346270': - installDir: Fortune's Tavern - The Fantasy Tavern Simulator! +"346270": + installDir: "Fortune's Tavern - The Fantasy Tavern Simulator!" launch: - config: oslist: windows description: Launch executable: game.exe -'34630': +"34630": installDir: Massive Assault launch: - executable: ma.exe -'346300': +"346300": installDir: Containment Protocol launch: - config: @@ -167625,61 +163946,61 @@ oslist: macos executable: ContainmentProtocol.app type: default -'346320': +"346320": installDir: Streets of Chaos launch: - config: oslist: windows description: Launch executable: streetschaos.exe -'346330': +"346330": installDir: brainbread2 launch: - - arguments: '-game brainbread2 -steam' + - arguments: "-game brainbread2 -steam" config: oslist: linux description: Launch executable: hl2.sh type: default - - arguments: '-steam -game brainbread2' + - arguments: "-steam -game brainbread2" config: oslist: macos description: Launch executable: hl2.sh type: default - - arguments: '-steam -game brainbread2' + - arguments: "-steam -game brainbread2" config: oslist: windows description: Launch executable: bb2.exe type: default -'346340': +"346340": installDir: Gran Vitreous launch: - config: oslist: windows description: Launch executable: GranVitreous.exe -'346370': +"346370": installDir: Into The War launch: - config: oslist: windows description: Launch executable: IntoTheWar.exe -'346390': {} -'34640': +"346390": {} +"34640": installDir: Massive Assault - Phantom Renaissance launch: - executable: mapr.exe -'346400': +"346400": installDir: Chaos Ride launch: - config: oslist: windows description: Launch - executable: .\\PC\\ChaosRide.exe -'346420': + executable: ".\\\\PC\\\\ChaosRide.exe" +"346420": installDir: The Spatials launch: - config: @@ -167691,11 +164012,11 @@ description: Launch executable: The Spatials.app - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: run-thespatials.sh -'346430': +"346430": installDir: Spectrum First Light launch: - config: @@ -167710,7 +164031,7 @@ oslist: linux description: Launch executable: Spectrum.x86 -'346440': +"346440": installDir: Musclecar Online launch: - config: @@ -167721,17 +164042,17 @@ oslist: macos description: Launch executable: Musclecar Online.app -'346450': +"346450": installDir: samurai_jazz launch: - config: oslist: windows description: Launch executable: samurai_jazz.exe -'346460': +"346460": installDir: Vector 36 launch: - - arguments: '-vrmode None' + - arguments: "-vrmode None" config: oslist: windows description: Launch @@ -167755,7 +164076,7 @@ description: Oculus executable: Vector36.exe type: othervr -'346470': +"346470": installDir: Tennis Elbow 2013 launch: - config: @@ -167783,26 +164104,26 @@ description: Launch executable: Tennis Elbow 2013.app type: default - - executable: Doc\\En_QuickStart.html + - executable: "Doc\\\\En_QuickStart.html" type: manual -'346490': +"346490": installDir: Toy Wars Invasion launch: - config: oslist: windows description: Launch - executable: \\binaries\\Win32\\ToyWarsInvasion.exe -'34650': + executable: "\\\\binaries\\\\Win32\\\\ToyWarsInvasion.exe" +"34650": installDir: Massive Assault Network 2 launch: - executable: man2.exe -'346500': +"346500": installDir: Road Scars Origins launch: - description: Launch executable: Road Scars Origins.exe type: default -'346510': +"346510": installDir: Hyphen launch: - config: @@ -167812,19 +164133,19 @@ - config: oslist: linux description: Launch - executable: ./Hyphen -'346550': + executable: "./Hyphen" +"346550": installDir: Cylne launch: - config: oslist: windows description: Launch executable: Binaries/Win32/UDK.exe -'346560': +"346560": installDir: Hero of the Kingdom II launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Hero of the Kingdom II.exe type: default @@ -167837,7 +164158,7 @@ executable: Hero of the Kingdom II type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: Hero of the Kingdom II 32bit.exe type: default @@ -167845,32 +164166,32 @@ russian: Hero of the Kingdom II / Герой Королевства II schinese: Hero of the Kingdom II / 王国英雄II ukrainian: Hero of the Kingdom II / Герой Королівства II -'346610': +"346610": installDir: RaceCraft launch: - config: oslist: windows executable: Racecraft.exe type: none -'346630': +"346630": installDir: Plazma Being launch: - config: oslist: windows description: Launch executable: game.exe -'346650': +"346650": installDir: Break the Cube launch: - config: oslist: windows description: Launch executable: Launch.bat -'346670': +"346670": installDir: Sky Battles launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: skybattles-pc-x86.exe @@ -167879,64 +164200,64 @@ description: Launch executable: skybattles-mac.app - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: skybattles-pc64.exe -'34670': +"34670": installDir: Order of War - Challenge launch: - executable: oow_final.exe - description: Report Error executable: oow_report.exe -'346730': +"346730": installDir: GOCCO OF WAR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: gocco_of_war_64.exe type: none - config: - osarch: '32' + osarch: "32" oslist: windows executable: gocco_of_war_32.exe type: none -'346750': +"346750": installDir: Merchant launch: - executable: Merchant.exe type: default -'346760': +"346760": installDir: ProtoMasons launch: - config: oslist: windows description: Launch executable: ProtoMasons.exe -'346770': +"346770": installDir: Quarries of Scred launch: - config: oslist: windows description: Launch executable: Quarry.exe -'346780': +"346780": installDir: Luminosity launch: - - arguments: . + - arguments: "." config: oslist: windows description: Launch executable: Luminosity.exe -'346800': +"346800": installDir: Damnation City of Death launch: - config: oslist: windows description: Launch executable: DamnationCityofDeath.exe -'346810': +"346810": installDir: Pre-Civilization Marble Age launch: - config: @@ -167947,38 +164268,38 @@ oslist: macos description: Launch executable: MarbleAge.app -'346820': +"346820": installDir: Crash Drive 3 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Crash Drive 3.exe type: none - - arguments: '-force-glcore' + - arguments: "-force-glcore" config: - osarch: '64' + osarch: "64" oslist: linux executable: Crash Drive 3 - config: oslist: macos executable: Crash Drive 3.app/Contents/MacOS/Crash Drive 3 type: none -'346830': +"346830": installDir: FINAL FANTASY IV THE AFTER YEARS launch: - config: oslist: windows description: Launch executable: FF4A_Launcher.exe -'346850': - installDir: Chip's Challenge 1 +"346850": + installDir: "Chip's Challenge 1" launch: - config: oslist: windows description: Launch executable: Chips1.exe -'346900': +"346900": installDir: AdVenture Capitalist launch: - config: @@ -167993,14 +164314,14 @@ oslist: linux description: Launch executable: adventure-capitalist.x86 -'346920': +"346920": installDir: Undead Shadows launch: - config: oslist: windows description: Launch executable: Undead Shadows.exe -'346930': +"346930": installDir: Deadhold launch: - arguments: +login 54.161.183.23 @@ -168069,7 +164390,7 @@ description: Deadhold (Internal Test Realm) executable: Deadhold.app type: option1 -'346940': +"346940": installDir: Shadowrun Hong Kong launch: - config: @@ -168080,20 +164401,20 @@ oslist: macos description: Launch executable: SRHK.app/Contents/MacOS/SRHK - - arguments: '-logFile output.txt' + - arguments: "-logFile output.txt" config: oslist: linux description: Launch executable: SRHK -'346950': +"346950": installDir: The Dark Stone from Mebara launch: - description: Launch executable: game.exe -'346970': +"346970": installDir: OBEY launch: - - arguments: '-force-d3d9' + - arguments: "-force-d3d9" config: oslist: windows description: Launch @@ -168107,11 +164428,11 @@ oslist: macos description: Launch executable: OBEY.app -'3470': +"3470": installDir: Bookworm Adventures Deluxe launch: - executable: BookwormAdventures.exe -'347000': +"347000": installDir: InnerSpace launch: - config: @@ -168120,16 +164441,16 @@ executable: InnerSpace.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: InnerSpace.x86_64 type: none - config: - osarch: '64' + osarch: "64" oslist: macos executable: InnerSpace.app type: none -'347030': +"347030": installDir: The Bluecoats North vs South launch: - config: @@ -168140,7 +164461,7 @@ oslist: macos description: Launch executable: NorthVsSouth.app -'347040': +"347040": installDir: Keebles launch: - config: @@ -168151,28 +164472,28 @@ oslist: macos description: Launch executable: Keebles.app -'347050': - installDir: Vol'Talkes - The AI War +"347050": + installDir: "Vol'Talkes - The AI War" launch: - config: oslist: windows description: Launch executable: TAIW.exe -'347060': +"347060": installDir: Pro Basketball Manager 2016 launch: - arguments: fVNdsJPe3mLkVDfywNCyU49X description: Launch executable: PBM2016.exe type: none -'347080': +"347080": installDir: NaughtReawakening launch: - config: oslist: windows description: Launch executable: Naught.exe -'347160': +"347160": installDir: Steredenn launch: - config: @@ -168184,16 +164505,16 @@ description: Launch executable: Steredenn.app - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: Steredenn.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Steredenn.x86_64 -'347170': +"347170": installDir: Combat Air Patrol 2 launch: - config: @@ -168201,237 +164522,237 @@ description: Launch executable: CAP2.exe type: default - - arguments: '-OCULUS_VR' + - arguments: "-OCULUS_VR" config: betakey: vrbeta oslist: windows description: Combat Air Patrol 2 executable: CAP2.exe type: othervr - - arguments: '-OPEN_VR' + - arguments: "-OPEN_VR" config: betakey: vrbeta oslist: windows description: Combat Air Patrol 2 executable: CAP2.exe type: vr - - arguments: '-OCULUS_VR' + - arguments: "-OCULUS_VR" config: betakey: beta oslist: windows description: Combat Air Patrol 2 executable: CAP2.exe type: othervr - - arguments: '-OPEN_VR' + - arguments: "-OPEN_VR" config: betakey: beta oslist: windows description: Combat Air Patrol 2 executable: CAP2.exe type: vr - - arguments: '-OCULUS_VR' + - arguments: "-OCULUS_VR" config: - osarch: '64' + osarch: "64" oslist: windows description: Combat Air Patrol 2 executable: CAP2.exe type: othervr - - arguments: '-OPEN_VR' + - arguments: "-OPEN_VR" config: - osarch: '64' + osarch: "64" oslist: windows description: Combat Air Patrol 2 executable: CAP2.exe type: vr -'347220': +"347220": installDir: The Cosmos Is Mine! launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: Cosmos.exe - config: - osarch: '64' + osarch: "64" oslist: macos description: Launch executable: Cosmos.app - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: Cosmos.exe -'347230': +"347230": installDir: 1942 - The Pacific Air War launch: - - arguments: '-conf dosbox_1942_TPAW.conf -conf dosbox_1942_TPAW_launch_windows.conf -noconsole' + - arguments: "-conf dosbox_1942_TPAW.conf -conf dosbox_1942_TPAW_launch_windows.conf -noconsole" config: oslist: windows description: Launch - executable: dosbox_windows\\dosbox.exe - workingdir: dosbox_windows\\ - - arguments: '-conf dosbox_1942_TPAW.conf -conf dosbox_1942_TPAW_launch_windows.conf -noconsole' + executable: "dosbox_windows\\\\dosbox.exe" + workingdir: "dosbox_windows\\\\" + - arguments: "-conf dosbox_1942_TPAW.conf -conf dosbox_1942_TPAW_launch_windows.conf -noconsole" config: oslist: windows - description: 'Play 1942: The Pacific Air War in DOSBox Daum' - executable: dosbox_windows\\daum\\dosbox.exe - workingdir: dosbox_windows\\daum\\ - - arguments: '-conf dosbox_1942_TPAW.conf -conf dosbox_1942_TPAW_config_windows.conf -noconsole' + description: "Play 1942: The Pacific Air War in DOSBox Daum" + executable: "dosbox_windows\\\\daum\\\\dosbox.exe" + workingdir: "dosbox_windows\\\\daum\\\\" + - arguments: "-conf dosbox_1942_TPAW.conf -conf dosbox_1942_TPAW_config_windows.conf -noconsole" config: oslist: windows - description: '1942: The Pacific Air War - Configuration' - executable: dosbox_windows\\dosbox.exe - workingdir: dosbox_windows\\ + description: "1942: The Pacific Air War - Configuration" + executable: "dosbox_windows\\\\dosbox.exe" + workingdir: "dosbox_windows\\\\" - config: oslist: linux description: Launch - executable: dosbox_linux\\launch_1942_TPAW_game.sh - workingdir: dosbox_linux\\ + executable: "dosbox_linux\\\\launch_1942_TPAW_game.sh" + workingdir: "dosbox_linux\\\\" - config: oslist: linux - description: 'Play 1942: The Pacific Air War in DOSBox Daum' - executable: dosbox_linux\\daum\\launch_1942_TPAW_game_daum.sh - workingdir: dosbox_linux\\daum\\ + description: "Play 1942: The Pacific Air War in DOSBox Daum" + executable: "dosbox_linux\\\\daum\\\\launch_1942_TPAW_game_daum.sh" + workingdir: "dosbox_linux\\\\daum\\\\" - config: oslist: linux - description: '1942: The Pacific Air War - Configuration' - executable: dosbox_linux\\launch_1942_TPAW_config.sh - workingdir: dosbox_linux\\ + description: "1942: The Pacific Air War - Configuration" + executable: "dosbox_linux\\\\launch_1942_TPAW_config.sh" + workingdir: "dosbox_linux\\\\" - config: oslist: macos description: Launch executable: 1942 - TPAW.app -'347240': +"347240": installDir: Challenge of the Five Realms launch: - - arguments: '-conf dosbox_cotfr.conf -conf dosbox_cotfr_launch_windows.conf -noconsole' + - arguments: "-conf dosbox_cotfr.conf -conf dosbox_cotfr_launch_windows.conf -noconsole" config: oslist: windows description: Launch - executable: dosbox_windows\\dosbox.exe - workingdir: dosbox_windows\\ - - arguments: '-conf dosbox_cotfr.conf -conf dosbox_cotfr_launch_windows.conf -noconsole' + executable: "dosbox_windows\\\\dosbox.exe" + workingdir: "dosbox_windows\\\\" + - arguments: "-conf dosbox_cotfr.conf -conf dosbox_cotfr_launch_windows.conf -noconsole" config: oslist: windows description: Play Challenge of the Five Realms in DOSBox Daum - executable: dosbox_windows\\daum\\dosbox.exe - workingdir: dosbox_windows\\daum\\ - - arguments: '-conf dosbox_cotfr.conf -conf dosbox_cotfr_face_windows.conf -noconsole' + executable: "dosbox_windows\\\\daum\\\\dosbox.exe" + workingdir: "dosbox_windows\\\\daum\\\\" + - arguments: "-conf dosbox_cotfr.conf -conf dosbox_cotfr_face_windows.conf -noconsole" config: oslist: windows description: Launch The Face Paint Program - executable: dosbox_windows\\dosbox.exe - workingdir: dosbox_windows\\ - - arguments: '-conf dosbox_cotfr.conf -conf dosbox_cotfr_config_windows.conf -noconsole' + executable: "dosbox_windows\\\\dosbox.exe" + workingdir: "dosbox_windows\\\\" + - arguments: "-conf dosbox_cotfr.conf -conf dosbox_cotfr_config_windows.conf -noconsole" config: oslist: windows description: Challenge of the Five Realms - Configuration - executable: dosbox_windows\\dosbox.exe - workingdir: dosbox_windows\\ + executable: "dosbox_windows\\\\dosbox.exe" + workingdir: "dosbox_windows\\\\" - config: oslist: linux description: Launch - executable: dosbox_linux\\launch_cotfr_game.sh - workingdir: dosbox_linux\\ + executable: "dosbox_linux\\\\launch_cotfr_game.sh" + workingdir: "dosbox_linux\\\\" - config: oslist: linux description: Play Challenge of the Five Realms in DOSBox Daum - executable: dosbox_linux\\daum\\launch_cotfr_game_daum.sh - workingdir: dosbox_linux\\daum\\ + executable: "dosbox_linux\\\\daum\\\\launch_cotfr_game_daum.sh" + workingdir: "dosbox_linux\\\\daum\\\\" - config: oslist: linux description: Launch The Face Paint Program - executable: dosbox_linux\\launch_cotfr_face.sh - workingdir: dosbox_linux\\ + executable: "dosbox_linux\\\\launch_cotfr_face.sh" + workingdir: "dosbox_linux\\\\" - config: oslist: linux description: Challenge of the Five Realms - Configuration - executable: dosbox_linux\\launch_cotfr_config.sh - workingdir: dosbox_linux\\ + executable: "dosbox_linux\\\\launch_cotfr_config.sh" + workingdir: "dosbox_linux\\\\" - config: oslist: macos description: Launch executable: COTFR.app -'347250': +"347250": installDir: F-19 Stealth Fighter launch: - - arguments: '-conf dosbox_f19sf.conf -conf dosbox_f19sf_launch_windows.conf -noconsole' + - arguments: "-conf dosbox_f19sf.conf -conf dosbox_f19sf_launch_windows.conf -noconsole" config: oslist: windows description: Launch - executable: dosbox_windows\\dosbox.exe - workingdir: dosbox_windows\\ - - arguments: '-conf dosbox_f19sf.conf -conf dosbox_f19sf_launch_windows.conf -noconsole' + executable: "dosbox_windows\\\\dosbox.exe" + workingdir: "dosbox_windows\\\\" + - arguments: "-conf dosbox_f19sf.conf -conf dosbox_f19sf_launch_windows.conf -noconsole" config: oslist: windows description: Play F-19 Stealth Fighter in DOSBox Daum - executable: dosbox_windows\\daum\\dosbox.exe - workingdir: dosbox_windows\\daum\\ + executable: "dosbox_windows\\\\daum\\\\dosbox.exe" + workingdir: "dosbox_windows\\\\daum\\\\" - config: oslist: linux description: Launch - executable: dosbox_linux\\launch_f19sf_game.sh - workingdir: dosbox_linux\\ + executable: "dosbox_linux\\\\launch_f19sf_game.sh" + workingdir: "dosbox_linux\\\\" - config: oslist: linux description: Play F-19 Stealth Fighter in DOSBox Daum - executable: dosbox_linux\\daum\\launch_f19sf_game_daum.sh - workingdir: dosbox_linux\\daum\\ -'347260': + executable: "dosbox_linux\\\\daum\\\\launch_f19sf_game_daum.sh" + workingdir: "dosbox_linux\\\\daum\\\\" +"347260": installDir: Hyperspeed launch: - - arguments: '-conf dosbox_hyperspeed.conf -conf dosbox_hyperspeed_launch_windows.conf -noconsole' + - arguments: "-conf dosbox_hyperspeed.conf -conf dosbox_hyperspeed_launch_windows.conf -noconsole" config: oslist: windows description: Launch - executable: dosbox_windows\\dosbox.exe - workingdir: dosbox_windows\\ - - arguments: '-conf dosbox_hyperspeed.conf -conf dosbox_hyperspeed_launch_windows.conf -noconsole' + executable: "dosbox_windows\\\\dosbox.exe" + workingdir: "dosbox_windows\\\\" + - arguments: "-conf dosbox_hyperspeed.conf -conf dosbox_hyperspeed_launch_windows.conf -noconsole" config: oslist: windows description: Play Hyperspeed in DOSBox Daum - executable: dosbox_windows\\daum\\dosbox.exe - workingdir: dosbox_windows\\daum\\ + executable: "dosbox_windows\\\\daum\\\\dosbox.exe" + workingdir: "dosbox_windows\\\\daum\\\\" - config: oslist: linux description: Launch - executable: dosbox_linux\\launch_hyperspeed_game.sh - workingdir: dosbox_linux\\ + executable: "dosbox_linux\\\\launch_hyperspeed_game.sh" + workingdir: "dosbox_linux\\\\" - config: oslist: linux description: Play Hyperspeed in DOSBox Daum - executable: dosbox_linux\\daum\\launch_hyperspeed_game_daum.sh - workingdir: dosbox_linux\\daum\\ + executable: "dosbox_linux\\\\daum\\\\launch_hyperspeed_game_daum.sh" + workingdir: "dosbox_linux\\\\daum\\\\" - config: oslist: macos description: Launch executable: Hyperspeed.app -'347270': +"347270": installDir: Knights of the Sky launch: - - arguments: '-conf dosbox_kots.conf -conf dosbox_kots_launch_windows.conf -noconsole' + - arguments: "-conf dosbox_kots.conf -conf dosbox_kots_launch_windows.conf -noconsole" config: oslist: windows description: Launch - executable: dosbox_windows\\dosbox.exe - workingdir: dosbox_windows\\ - - arguments: '-conf dosbox_kots.conf -conf dosbox_kots_launch_windows.conf -noconsole' + executable: "dosbox_windows\\\\dosbox.exe" + workingdir: "dosbox_windows\\\\" + - arguments: "-conf dosbox_kots.conf -conf dosbox_kots_launch_windows.conf -noconsole" config: oslist: windows description: Play Knights of the Sky in DOSBox Daum - executable: dosbox_windows\\daum\\dosbox.exe - workingdir: dosbox_windows\\daum\\ + executable: "dosbox_windows\\\\daum\\\\dosbox.exe" + workingdir: "dosbox_windows\\\\daum\\\\" - config: oslist: linux description: Launch - executable: dosbox_linux\\launch_kots_game.sh - workingdir: dosbox_linux\\ + executable: "dosbox_linux\\\\launch_kots_game.sh" + workingdir: "dosbox_linux\\\\" - config: oslist: linux description: Play Knights of the Sky in DOSBox Daum - executable: dosbox_linux\\daum\\launch_kots_game_daum.sh - workingdir: dosbox_linux\\daum\\ -'347280': + executable: "dosbox_linux\\\\daum\\\\launch_kots_game_daum.sh" + workingdir: "dosbox_linux\\\\daum\\\\" +"347280": installDir: A Quiver of Crows launch: - config: @@ -168449,38 +164770,38 @@ description: A Quiver of Crows executable: AQuiverOfCrows.app type: default -'347290': +"347290": installDir: Rise & Shine launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: RiseAndShine.exe - config: oslist: macos description: Launch - executable: RiseAndShine.app\\Contents\\MacOS\\RiseAndShine + executable: "RiseAndShine.app\\\\Contents\\\\MacOS\\\\RiseAndShine" type: none - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: RiseAndShine.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: RiseAndShine.x86_64 type: none - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: RiseAndShine.exe type: none -'347330': +"347330": installDir: HeartZ launch: - config: @@ -168493,18 +164814,18 @@ executable: HeartZ.app type: none - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: HeartZ.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: HeartZ.x86_64 type: none -'347430': +"347430": installDir: FrankensteinMasterOfDeath launch: - config: @@ -168519,15 +164840,15 @@ oslist: linux description: Launch executable: Frankenstein_MasterOfDeath.x86 -'347440': +"347440": installDir: Pneuma Breath of Life launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: Pneuma Breath of Life.exe -'347470': +"347470": installDir: Mayan Death Robots launch: - config: @@ -168542,7 +164863,7 @@ oslist: linux description: Launch executable: Mayan Death Robots.x86 -'347480': +"347480": installDir: Super Pixalo launch: - config: @@ -168554,16 +164875,16 @@ description: Launch executable: Windows/SuperPixalo.exe - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: Linux32/SuperPixalo - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Linux64/SuperPixalo -'347510': +"347510": installDir: Rats - Time is running out! launch: - config: @@ -168571,33 +164892,33 @@ description: Launch executable: Rats.exe - config: - osarch: '64' + osarch: "64" oslist: macos executable: Rats - Time is running out!.app type: default -'347520': +"347520": installDir: Legends of Atlantis Exodus launch: - config: oslist: windows description: Launch executable: Game_Atlantis.exe -'347530': {} -'347560': +"347530": {} +"347560": installDir: Terra Incognita ~ Chapter One The Descendant launch: - config: oslist: windows description: Launch executable: Game.exe -'347580': +"347580": installDir: Evolution II Fighting for Survival launch: - config: oslist: windows description: Launch executable: setup.exe -'347590': +"347590": installDir: HeroesofHellas3Athens launch: - config: @@ -168608,7 +164929,7 @@ oslist: macos description: Launch executable: HeroesOfHellas3Athens.app -'347600': +"347600": installDir: Total Miner launch: - config: @@ -168616,14 +164937,14 @@ description: Launch executable: StudioForge.TotalMiner.exe type: none -'347610': +"347610": installDir: HiddenObject4in1 launch: - config: oslist: windows executable: HiddenObject4in1.exe type: default -'347620': +"347620": installDir: gaokao100 launch: - config: @@ -168633,12 +164954,12 @@ nameLocalized: schinese: 高考恋爱一百天 tchinese: 高考戀愛一百天 -'347630': +"347630": installDir: 16 Bit Arena launch: - description: Launch executable: run16.bat -'347660': +"347660": installDir: Caromble launch: - config: @@ -168646,33 +164967,33 @@ description: Launch executable: Caromble.exe type: default - - arguments: ' -server -Xms600m -Xmx1600m -XX:+TieredCompilation -XX:ReservedCodeCacheSize=400m -XX:CompileThreshold=2500 -XX:+AggressiveOpts -Djava.library.path=\"lib\" -jar Caromble-GAME.jar' + - arguments: " -server -Xms600m -Xmx1600m -XX:+TieredCompilation -XX:ReservedCodeCacheSize=400m -XX:CompileThreshold=2500 -XX:+AggressiveOpts -Djava.library.path=\\\"lib\\\" -jar Caromble-GAME.jar" config: oslist: macos executable: java/bin/java type: default - - arguments: '-server -XX:ReservedCodeCacheSize=128m -XX:+UseZGC -Xmx1600m -Djava.library.path=\"lib\" -jar Caromble-GAME.jar' + - arguments: "-server -XX:ReservedCodeCacheSize=128m -XX:+UseZGC -Xmx1600m -Djava.library.path=\\\"lib\\\" -jar Caromble-GAME.jar" config: - osarch: '64' + osarch: "64" oslist: linux executable: java/bin/java type: default -'347670': +"347670": installDir: Karate Master 2 Knock Down Blow launch: - config: oslist: windows description: Launch executable: Karate Master 2 KDB.exe -'347690': +"347690": installDir: Natural Soccer launch: - config: oslist: windows description: Launch executable: NaturalSoccer.exe -'347700': {} -'347710': +"347700": {} +"347710": installDir: The Perils of Man launch: - config: @@ -168687,36 +165008,36 @@ oslist: linux description: Launch executable: PoM.x86 -'347720': +"347720": installDir: Soda Drinker Pro launch: - - arguments: '-logFile log.log' + - arguments: "-logFile log.log" config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: SodaDrinkerPro.exe -'347730': +"347730": installDir: Wait - Extended launch: - config: oslist: windows executable: game.exe type: none -'347790': +"347790": installDir: Terraform launch: - config: oslist: windows description: Launch executable: Terraform.exe -'347800': +"347800": installDir: GhostSong launch: - description: Launch executable: GhostSong.exe type: none -'347820': +"347820": installDir: Street Arena launch: - config: @@ -168731,28 +165052,28 @@ oslist: macos description: Launch executable: sa-game-startup -'347830': +"347830": installDir: Fairy Fencer F launch: - config: oslist: windows description: Launch executable: FairyFencer.exe -'347930': +"347930": installDir: Hatland Adventures launch: - config: oslist: windows description: Launch executable: Hatland Adventures.exe -'347940': +"347940": installDir: Forsaken Isle launch: - config: oslist: windows description: Launch executable: ForsakenIsle.exe -'347950': +"347950": installDir: Palace-of-Cards launch: - config: @@ -168763,7 +165084,7 @@ oslist: macos executable: palace.app type: default -'3480': +"3480": installDir: Peggle Deluxe launch: - config: @@ -168772,51 +165093,51 @@ - config: oslist: macos executable: Peggle Deluxe.app -'34800': +"34800": installDir: Chronicles of Mystery - The Scorpio Ritual launch: - executable: CoM.exe -'348000': +"348000": installDir: Datswer launch: - config: oslist: windows description: Launch - executable: Datswer\\Datswer.exe -'348020': {} -'348030': + executable: "Datswer\\\\Datswer.exe" +"348020": {} +"348030": installDir: Trackday Manager launch: - config: oslist: windows description: Launch executable: Trackday Manager.exe -'34810': +"34810": installDir: Project Freedom launch: - executable: projectfreedom.exe -'348160': +"348160": installDir: RUMP launch: - config: oslist: windows description: Launch executable: RumpC.exe -'348180': +"348180": installDir: Starship Traveller launch: - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Starship Traveller.x86_64 - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: Starship Traveller.x86 - config: - osarch: '64' + osarch: "64" oslist: macos description: Launch executable: Starship Traveller.app @@ -168824,11 +165145,11 @@ oslist: windows description: Launch executable: Starship Traveller.exe -'34820': +"34820": installDir: Combat Wings Battle of Britain launch: - executable: game.exe -'348240': +"348240": installDir: Gun Wings launch: - executable: GunWings.exe @@ -168836,16 +165157,16 @@ nameLocalized: schinese: 铳翼 Gun Wings tchinese: 銃翼 Gun Wings -'348250': +"348250": installDir: EarthVR launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Full app executable: Earth.exe type: vr -'348270': +"348270": installDir: Social Justice Warriors launch: - config: @@ -168857,23 +165178,23 @@ executable: SocialJusticeWarriors.app/Contents/MacOS/SocialJusticeWarriors type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: SocialJusticeWarriors.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: AutomataEmpire.x86_64 type: default -'348280': +"348280": installDir: ORBIT launch: - config: oslist: windows description: Launch executable: ORBIT.exe -'348290': +"348290": installDir: Hospital Manager launch: - config: @@ -168884,22 +165205,22 @@ oslist: macos description: Launch executable: Hospital Manager.app -'3483': +"3483": installDir: Peggle Extreme launch: - executable: PeggleExtreme.exe -'34830': +"34830": installDir: Sniper Ghost Warrior launch: - executable: Sniper_x86.exe -'348300': - installDir: Chip's Challenge 2 +"348300": + installDir: "Chip's Challenge 2" launch: - config: oslist: windows description: Launch executable: Chips2.exe -'348340': +"348340": installDir: Siege Wars launch: - config: @@ -168920,7 +165241,7 @@ oslist: linux executable: SW.sh type: none -'348360': +"348360": installDir: Doodle God launch: - config: @@ -168935,14 +165256,14 @@ oslist: macos description: Launch executable: DoodleGod.app -'348380': +"348380": installDir: The Interview launch: - config: oslist: windows description: Launch executable: The Interview.exe -'348400': +"348400": installDir: BattleLore Command launch: - config: @@ -168953,71 +165274,71 @@ oslist: macos description: Launch executable: BattleLore.App -'348430': +"348430": installDir: Quell Reflect launch: - description: Launch executable: QuellReflect.exe -'348440': +"348440": installDir: Quell Memento launch: - description: Launch executable: QuellMemento.exe -'348450': +"348450": installDir: Lex Mortis launch: - config: oslist: windows description: Launch executable: Bin32/LEXMORTIS.exe -'348460': +"348460": installDir: Bierzerkers launch: - - arguments: '-pak' + - arguments: "-pak" config: - osarch: '64' + osarch: "64" oslist: windows description: Launch - executable: Local\\VikingGame\\Binaries\\Win64\\VikingGame.exe - workingdir: Local\\VikingGame\\Binaries\\Win64 - - arguments: '-pak' + executable: "Local\\\\VikingGame\\\\Binaries\\\\Win64\\\\VikingGame.exe" + workingdir: "Local\\\\VikingGame\\\\Binaries\\\\Win64" + - arguments: "-pak" config: - osarch: '32' + osarch: "32" oslist: windows description: Launch - executable: Local\\VikingGame\\Binaries\\Win32\\VikingGame.exe - workingdir: Local\\VikingGame\\Binaries\\Win32 - - arguments: '-pak' + executable: "Local\\\\VikingGame\\\\Binaries\\\\Win32\\\\VikingGame.exe" + workingdir: "Local\\\\VikingGame\\\\Binaries\\\\Win32" + - arguments: "-pak" config: oslist: macos description: Launch - executable: VikingGame\\Binaries\\Mac\\Bierzerkers.app\\Contents\\MacOS\\Bierzerkers + executable: "VikingGame\\\\Binaries\\\\Mac\\\\Bierzerkers.app\\\\Contents\\\\MacOS\\\\Bierzerkers" type: none - workingdir: VikingGame\\Binaries\\Mac - - arguments: '-pak -nosteam' + workingdir: "VikingGame\\\\Binaries\\\\Mac" + - arguments: "-pak -nosteam" config: - osarch: '64' + osarch: "64" oslist: windows description: LAN Game - executable: Local\\VikingGame\\Binaries\\Win64\\VikingGame.exe + executable: "Local\\\\VikingGame\\\\Binaries\\\\Win64\\\\VikingGame.exe" type: option1 - workingdir: Local\\VikingGame\\Binaries\\Win64 -'348470': + workingdir: "Local\\\\VikingGame\\\\Binaries\\\\Win64" +"348470": installDir: SAMURAI WARRIORS 4-II launch: - config: oslist: windows description: SW4II executable: SW4II.exe - workingdir: .\\ -'348490': + workingdir: ".\\\\" +"348490": installDir: Beyond Sol launch: - config: oslist: windows description: Launch executable: BeyondSol.exe -'348510': +"348510": installDir: Autobahn Police Simulator launch: - config: @@ -169030,19 +165351,19 @@ description: Launch executable: highwaypatrol2015.app type: none - - arguments: '-force-d3d9' + - arguments: "-force-d3d9" config: oslist: windows description: Launch in DX9 Mode executable: highwaypatrol2015.exe -'348530': +"348530": installDir: Incognito launch: - config: oslist: windows description: Launch Incognito executable: Game.exe -'348540': +"348540": installDir: Divine Slice of Life launch: - config: @@ -169057,14 +165378,14 @@ oslist: linux description: Launch executable: Divine Slice of Life.sh -'348550': +"348550": installDir: Guilty Gear XX Accent Core Plus R launch: - config: oslist: windows description: Launch executable: GGXXACPR_Win.exe -'348570': +"348570": installDir: Monster Minis Extreme Off-Road launch: - config: @@ -169075,13 +165396,13 @@ oslist: linux description: Launch executable: MonsterMinis.sh -'348580': {} -'34860': +"348580": {} +"34860": installDir: MotorM4X Offroad Extreme launch: - - executable: bin\\MotorM4X.exe + - executable: "bin\\\\MotorM4X.exe" workingdir: bin -'348620': +"348620": installDir: Voices from the Sea launch: - config: @@ -169091,38 +165412,38 @@ type: none - config: oslist: windows - ownsdlc: '356440' + ownsdlc: "356440" description: Play Voices from the Sea - Plus executable: voices.exe type: none -'348650': +"348650": installDir: The Asskickers launch: - config: oslist: windows description: Launch executable: TheAsskickers.exe -'348670': +"348670": installDir: Immune launch: - - arguments: '-steam' + - arguments: "-steam" config: oslist: windows description: Launch executable: Immune.exe - - arguments: '-steam' + - arguments: "-steam" config: oslist: macos description: Launch - executable: Immune.app\\Contents\\MacOS\\Immune -'34870': + executable: "Immune.app\\\\Contents\\\\MacOS\\\\Immune" +"34870": installDir: SniperGhostWarrior2 launch: - config: oslist: windows executable: Bin32/SniperGhostWarrior2.exe workingdir: Bin32 -'348700': +"348700": installDir: Walkover launch: - config: @@ -169135,40 +165456,40 @@ description: Walkover executable: walkover.sh type: default -'348710': +"348710": installDir: SSSS launch: - config: oslist: windows executable: SSSS.exe type: default -'348730': +"348730": installDir: Abyss Uncharted launch: - config: oslist: windows description: Launch executable: AbyssUncharted.exe -'348740': +"348740": installDir: Abyss Cave launch: - config: oslist: windows executable: Abyss.exe type: default -'348790': +"348790": installDir: Wooden Floor launch: - config: oslist: windows description: Launch 32-bit - executable: Binaries\\Win32\\UDK.exe + executable: "Binaries\\\\Win32\\\\UDK.exe" - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch 64-bit - executable: Binaries\\Win64\\UDK.exe -'348800': + executable: "Binaries\\\\Win64\\\\UDK.exe" +"348800": installDir: Chester One launch: - config: @@ -169181,7 +165502,7 @@ description: Adjust keybindings and display settings. executable: ChesterSettings.exe type: config -'348810': +"348810": installDir: M4 Tank Brigade launch: - config: @@ -169198,21 +165519,21 @@ executable: M4TankBrigade.app/Contents/MacOS/WarBirds type: default workingdir: M4TankBrigade.app/Resources -'348820': +"348820": installDir: FIM Speedway Grand Prix 2015 launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: FIMSGP15.exe type: none - config: - osarch: '32' + osarch: "32" oslist: windows executable: 32BitError.exe type: none -'348840': +"348840": installDir: UFHO2 launch: - config: @@ -169224,21 +165545,21 @@ description: Launch executable: UFHO2.exe - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: UFHO2.x86_64 - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: UFHO2.x86 -'348850': - installDir: Disney Mickey's Typing Adventure +"348850": + installDir: "Disney Mickey's Typing Adventure" launch: - description: Launch - executable: Disney Mickey's Typing Adventure.exe -'348860': + executable: "Disney Mickey's Typing Adventure.exe" +"348860": installDir: MyDream launch: - config: @@ -169249,25 +165570,23 @@ oslist: macos description: Launch executable: MyDream_OSX32.app -'348870': +"348870": installDir: Night Mysteries - The Amphora Prisoner launch: - config: oslist: windows description: Launch executable: NightMysteries.exe -'348910': +"348910": installDir: Faerie Solitaire Harvest launch: - config: oslist: windows description: Launch - description_loc: - english: Launch executable: FaerieSolitaireHarvest.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: FaerieSolitaireHarvest.x86_64 @@ -169276,14 +165595,14 @@ oslist: macos executable: Faerie Solitaire Harvest.app/Contents/MacOS/FaerieSolitaireHarvest type: default -'348950': +"348950": installDir: Ame no Marginal -Rain Marginal- launch: - config: oslist: windows description: Launch executable: Rain marginal.exe -'348960': +"348960": installDir: Odysseus Long Way Home launch: - config: @@ -169294,26 +165613,25 @@ oslist: macos description: Launch executable: Odysseus.app -'348980': +"348980": installDir: INIT launch: - config: oslist: windows - vrmode: '0' description: Launch executable: INIT.exe -'3490': +"3490": installDir: Venice launch: - executable: Venice.exe -'34900': +"34900": installDir: Bad Rats launch: - - arguments: '-nc -d w' - description: 'Bad Rats: the Rats Revenge' + - arguments: "-nc -d w" + description: "Bad Rats: the Rats Revenge" executable: Rats.exe type: none -'349020': +"349020": installDir: Hyperspace Pinball launch: - config: @@ -169328,7 +165646,7 @@ oslist: linux description: Launch executable: hp.x86 -'349040': +"349040": installDir: NARUTO SHIPPUDEN Ultimate Ninja STORM 4 launch: - executable: NSUNS4.exe @@ -169337,28 +165655,28 @@ koreana: NARUTO -나루토- 질풍전 나루티밋 스톰 4 schinese: 火影忍者 疾风传 终极风暴4 tchinese: 火影忍者 疾風傳 終極風暴4 -'349060': +"349060": installDir: Fruits Inc. Deluxe Pack launch: - description: Fruits Inc. 2 executable: Fruits Inc 2/Fruits Inc. 2.exe workingdir: Fruits Inc 2 - description: Fruits Inc. 1 - executable: Fruits Inc 1/Fruit's Inc.exe + executable: "Fruits Inc 1/Fruit's Inc.exe" workingdir: Fruits Inc 1 -'349100': +"349100": installDir: Notrium launch: - config: oslist: windows executable: Notrium.exe type: default -'349140': - installDir: 'Corrosion - Cold Winter Waiting [Enhanced Edition]' +"349140": + installDir: "Corrosion - Cold Winter Waiting [Enhanced Edition]" launch: - description: Launch executable: corrosion_pc_en_1280_st.exe -'349150': +"349150": installDir: Dead TrailZ launch: - config: @@ -169374,31 +165692,31 @@ description: Launch executable: DeadTrailZ.x86 type: none -'349190': +"349190": installDir: Soul Locus launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: Soul Locus.exe - config: - osarch: '64' + osarch: "64" oslist: macos description: Launch executable: Soul Locus.app - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: Soul Locus 64.exe -'34920': +"34920": installDir: Razor2 launch: - - arguments: '-nc' + - arguments: "-nc" description: Razor2 Hidden Skies executable: razor.exe -'349220': +"349220": installDir: The Black Watchmen launch: - config: @@ -169413,17 +165731,17 @@ oslist: linux executable: tbw.x86 type: none -'349240': +"349240": installDir: Edolie launch: - description: Launch executable: game.exe -'349250': +"349250": installDir: Copy Kitty launch: - executable: kitty.exe type: default -'349260': +"349260": installDir: BlastZone 2 launch: - description: Play BlastZone 2 @@ -169442,7 +165760,7 @@ description: View level editing documentation executable: BlastZone-2-Level-Editing-Documentation.txt type: none -'349270': +"349270": installDir: Mosaic launch: - config: @@ -169457,39 +165775,39 @@ oslist: linux description: Launch executable: Mosaic.x86 -'349300': +"349300": installDir: Littlewitch Romanesque Editio Regia launch: - config: oslist: windows description: Launch executable: Littlewitch.exe -'349320': +"349320": installDir: The Rainy Port Keelung launch: - config: oslist: windows description: Launch executable: RainyKeelung.exe -'349440': +"349440": installDir: The Undying Plague launch: - config: oslist: windows description: Launch executable: game.exe -'349450': +"349450": installDir: Dark Forester launch: - config: oslist: windows description: Launch executable: darkforester.exe -'349460': +"349460": installDir: Lord of the Dark Castle launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: Lord_of_the_Dark_Castle.exe @@ -169498,21 +165816,21 @@ description: Launch executable: run_mac.command - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: run_linux.sh - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: run_linux_x86_64.sh - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: Lord_of_the_Dark_Castle_32bit.exe -'349470': +"349470": installDir: Drift Stage launch: - config: @@ -169524,23 +165842,23 @@ executable: driftstage.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: driftstage.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: driftstage.x86_64 type: default -'349500': +"349500": installDir: Cubicle Quest launch: - config: oslist: windows description: Launch - executable: scripts\\Game.exe -'349510': + executable: "scripts\\\\Game.exe" +"349510": installDir: Hanako_Honor_and_Blade launch: - config: @@ -169548,14 +165866,14 @@ description: Launch executable: Hanako.exe type: default -'349530': +"349530": installDir: TableTop Cricket launch: - config: oslist: windows description: Launch executable: tdcricket.exe -'349540': +"349540": installDir: PeriAreion launch: - config: @@ -169566,7 +165884,7 @@ oslist: macos description: Launch executable: PeriAreion.app -'349550': +"349550": installDir: MightyDungeons launch: - arguments: main.lua @@ -169574,23 +165892,23 @@ oslist: windows description: Launch Mighty Dungeons executable: MightyDungeons.exe -'349580': +"349580": installDir: Burstfire launch: - - arguments: '-steam' + - arguments: "-steam" description: Launch executable: BurstfireLauncher.exe -'349650': +"349650": installDir: Tokyo Hosto launch: - description: Launch executable: TokyoHosto.exe -'349670': +"349670": installDir: Solar System Conflict launch: - description: Launch executable: SSC.exe -'349680': +"349680": installDir: Supercharged Robot Vulkaiser launch: - config: @@ -169603,7 +165921,7 @@ type: default nameLocalized: japanese: 超電気ロボ バルカイザー -'349690': +"349690": installDir: Armed Seven launch: - config: @@ -169614,13 +165932,13 @@ oslist: linux executable: ArmedSeven type: default -'349700': +"349700": installDir: Aftermath launch: - - arguments: '-steam' + - arguments: "-steam" executable: AMLauncher.exe type: none -'349710': +"349710": installDir: Shwip launch: - config: @@ -169631,26 +165949,26 @@ oslist: macos executable: 206cmac.app type: default -'349720': +"349720": installDir: Audition Online launch: - arguments: /T3ENTER 1500FC0A057D730978333A594831472234405E3C4F config: oslist: windows executable: Audition.exe -'349730': +"349730": installDir: Popup Dungeon launch: - description: Launch executable: Popup Dungeon.exe -'349750': +"349750": installDir: Cold Contract launch: - config: oslist: windows description: Launch executable: cc.exe -'349760': +"349760": installDir: SnailBob2 launch: - config: @@ -169663,8 +165981,8 @@ description: Launch executable: SnailBob2.app type: none -'349780': - installDir: Fatty Maze's Adventures +"349780": + installDir: "Fatty Maze's Adventures" launch: - config: oslist: windows @@ -169674,7 +165992,7 @@ oslist: macos description: Launch executable: FattyMazePC.app -'349790': +"349790": installDir: Galaxy of Pen and Paper launch: - config: @@ -169688,18 +166006,18 @@ executable: GalaxyOfPenAndPaper.app type: none - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: GalaxyOfPenAndPaper.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: Lauch executable: GalaxyOfPenAndPaper.x86_64 type: none -'349840': +"349840": installDir: Ancestory launch: - config: @@ -169707,29 +166025,29 @@ description: Launch executable: Ancestory.exe type: none -'349950': +"349950": installDir: GunWorld launch: - config: oslist: windows description: Launch executable: GunWorld Steam.exe -'349980': +"349980": installDir: Gremlin Invasion Survivor launch: - config: oslist: windows description: Launch executable: GremlinInvasionSurvivor.exe -'3500': +"3500": installDir: Mystery PI launch: - executable: MysteryPI.exe -'35000': +"35000": installDir: Mini Ninjas launch: - executable: ninja.exe -'350000': +"350000": installDir: Exostorm launch: - config: @@ -169744,7 +166062,7 @@ oslist: linux description: Launch executable: ExostormGame -'350010': +"350010": installDir: Time Mysteries Inheritance Remastered launch: - config: @@ -169752,12 +166070,12 @@ description: Launch executable: TimeMysteries_Inheritance.exe - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: TimeMysteries_Inheritance_i386 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: TimeMysteries_Inheritance_amd64 @@ -169765,7 +166083,7 @@ oslist: macos description: Launch executable: mac_steam.app/Contents/MacOS/mac_steam -'350020': +"350020": installDir: The Gate launch: - config: @@ -169780,8 +166098,8 @@ oslist: linux description: Linux executable: The Gate -'350050': {} -'350070': +"350050": {} +"350070": installDir: Environmental Station Alpha launch: - config: @@ -169792,17 +166110,17 @@ oslist: macos description: Launch executable: esa_launcher.sh -'350080': +"350080": installDir: Wolfenstein The Old Blood launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: WolfOldBlood_x64.exe nameLocalized: - german: 'Wolfenstein: The Old Blood International Version' -'350090': + german: "Wolfenstein: The Old Blood International Version" +"350090": installDir: No Pineapple Left Behind launch: - config: @@ -169814,13 +166132,13 @@ description: Launch executable: nplb.app - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: nplb.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: nplb.x86_64 type: none @@ -169828,7 +166146,7 @@ oslist: linux executable: nplb_old_computer.sh type: none -'350110': +"350110": installDir: TransOcean2 launch: - config: @@ -169841,7 +166159,7 @@ description: Launch OSX executable: TransOcean2.app type: default -'350150': +"350150": installDir: Scraps launch: - config: @@ -169853,13 +166171,13 @@ description: Play Scraps executable: Scraps.app - config: - osarch: '32' + osarch: "32" oslist: linux description: Play Scraps executable: Scraps32.sh type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: Play Scraps executable: Scraps64.sh @@ -169870,7 +166188,7 @@ description: Start a dedicated server (with GUI) executable: Scraps.exe type: none - - arguments: '-batchmode +server' + - arguments: "-batchmode +server" config: oslist: windows description: Start a dedicated server (no GUI) @@ -169882,7 +166200,7 @@ description: Start a dedicated server (with GUI) executable: Scraps.app type: none - - arguments: '-batchmode +server' + - arguments: "-batchmode +server" config: oslist: macos description: Start a dedicated server (no GUI) @@ -169890,41 +166208,41 @@ type: none - arguments: +server config: - osarch: '32' + osarch: "32" oslist: linux description: Start a dedicated server (with GUI) executable: Scraps32.sh type: none - - arguments: '-batchmode +server' + - arguments: "-batchmode +server" config: - osarch: '32' + osarch: "32" oslist: linux description: Start a dedicated server (no GUI) executable: Scraps32.sh type: none - arguments: +server config: - osarch: '64' + osarch: "64" oslist: linux description: Start a dedicated server (with GUI) executable: Scraps64.sh type: none - - arguments: '-batchmode +server' + - arguments: "-batchmode +server" config: - osarch: '64' + osarch: "64" oslist: linux description: Start a dedicated server (no GUI) executable: Scraps64.sh type: none -'350200': +"350200": installDir: Revolution 60 launch: - config: oslist: windows description: Launch - executable: Binaries\\Win32\\UDK.exe + executable: "Binaries\\\\Win32\\\\UDK.exe" type: none -'350210': +"350210": installDir: MightySwitchForce_Academy launch: - config: @@ -169942,32 +166260,30 @@ description: Launch executable: MightySwitchForceAcademy.app type: none -'350220': +"350220": installDir: Dead Sea launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch - description_loc: - english: Launch - executable: WindowsNoEditor\\EasySurvivalRPGv2_5.exe + executable: "WindowsNoEditor\\\\EasySurvivalRPGv2_5.exe" type: none -'350280': +"350280": installDir: LawBreakers launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Nexon - executable: ShooterGame\\Binaries\\Win64\\LawBreakers.exe + executable: "ShooterGame\\\\Binaries\\\\Win64\\\\LawBreakers.exe" type: default -'35030': +"35030": installDir: Championship Manager 2010 launch: - - executable: Launcher\\CMLauncher.exe + - executable: "Launcher\\\\CMLauncher.exe" workingdir: Launcher -'350300': +"350300": installDir: Gang of Four launch: - config: @@ -169980,22 +166296,22 @@ description: Launch executable: GangOfFour.app type: none -'350310': +"350310": installDir: BLADESTORM Nightmare launch: - config: oslist: windows description: Launch executable: Launch.exe - workingdir: .\\ + workingdir: ".\\\\" - config: oslist: windows description: Configuration executable: Config.exe - workingdir: .\\ + workingdir: ".\\\\" nameLocalized: japanese: ブレイドストーム 百年戦争&ナイトメア -'350330': +"350330": installDir: Call of the Ninja launch: - config: @@ -170010,14 +166326,14 @@ oslist: windows description: Launch Ninja Builder executable: NinjaBuilderCommunity.exe -'350380': +"350380": installDir: TheMartianVR launch: - config: oslist: windows - executable: MartianVR\\Binaries\\Win64\\MartianVR-Win64-Shipping.exe + executable: "MartianVR\\\\Binaries\\\\Win64\\\\MartianVR-Win64-Shipping.exe" type: vr -'350480': +"350480": installDir: Tales of Cosmos launch: - config: @@ -170033,7 +166349,7 @@ oslist: macos executable: TalesOfCosmos.app type: editor -'350490': +"350490": installDir: Love And Order launch: - config: @@ -170048,12 +166364,12 @@ oslist: linux description: Launch executable: LoveAndOrder.sh -'350500': +"350500": installDir: Fly in the House launch: - description: Launch executable: StartGame.exe -'350510': +"350510": installDir: HassleHeart launch: - config: @@ -170064,7 +166380,7 @@ oslist: macos description: Launch executable: HassleHeart.app -'350530': +"350530": installDir: Airport Firefighters - The Simulation launch: - config: @@ -170075,8 +166391,8 @@ oslist: macos description: Launch executable: fhf2015.app -'350540': {} -'350550': +"350540": {} +"350550": installDir: Area-X launch: - config: @@ -170085,15 +166401,15 @@ executable: area-x.exe - config: oslist: windows - ownsdlc: '383860' + ownsdlc: "383860" description: Play Area-X - Extra Gallery executable: area-x_gallery_online.exe type: none -'350600': +"350600": installDir: BIOS launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: BIOS.exe @@ -170101,108 +166417,108 @@ oslist: macos description: Launch executable: Reload.app -'350610': +"350610": installDir: Combat Cats launch: - config: oslist: windows description: Launch executable: Combat_Cats.exe -'350620': +"350620": installDir: Sandmason launch: - config: oslist: windows description: Launch executable: Sandmason.exe -'350630': +"350630": installDir: Dodge launch: - config: oslist: windows description: Launch executable: Dodge.exe -'350640': - installDir: Sherlock Holmes - The Devil's Daughter +"350640": + installDir: "Sherlock Holmes - The Devil's Daughter" launch: - - arguments: '-NOSCREENMESSAGES -SEEKFREELOADINGPCCONSOLE' + - arguments: "-NOSCREENMESSAGES -SEEKFREELOADINGPCCONSOLE" config: oslist: windows description: Launch Full Build - executable: Binaries\\Win64\\Sherlock.exe + executable: "Binaries\\\\Win64\\\\Sherlock.exe" type: default - workingdir: Binaries\\Win64\\ + workingdir: "Binaries\\\\Win64\\\\" - arguments: CaseLauncher -NOSCREENMESSAGES config: betakey: e3 oslist: windows description: Launch E3 - executable: Binaries\\Win64\\SH8Game-NoEditor.exe + executable: "Binaries\\\\Win64\\\\SH8Game-NoEditor.exe" type: none - workingdir: Binaries\\Win64\\ - - arguments: '-NOSCREENMESSAGES' + workingdir: "Binaries\\\\Win64\\\\" + - arguments: "-NOSCREENMESSAGES" config: betakey: ms-4 oslist: windows description: Launch Milestone 4 - executable: Binaries\\Win64\\SH8Game-NoEditor.exe + executable: "Binaries\\\\Win64\\\\SH8Game-NoEditor.exe" type: none - workingdir: Binaries\\Win64\\ - - arguments: '-NOSCREENMESSAGES -SEEKFREELOADINGPCCONSOLE' + workingdir: "Binaries\\\\Win64\\\\" + - arguments: "-NOSCREENMESSAGES -SEEKFREELOADINGPCCONSOLE" config: betakey: ms-7 oslist: windows description: Launch Milestone 7 - executable: Binaries\\Win64\\SH8Game.exe + executable: "Binaries\\\\Win64\\\\SH8Game.exe" type: none - workingdir: Binaries\\Win64\\ - - arguments: '-NOSCREENMESSAGES -SEEKFREELOADINGPCCONSOLE' + workingdir: "Binaries\\\\Win64\\\\" + - arguments: "-NOSCREENMESSAGES -SEEKFREELOADINGPCCONSOLE" config: - betakey: 'evaluation, testbuilds, loca, locjp' + betakey: "evaluation, testbuilds, loca, locjp" oslist: windows description: Launch DENUVO Steam build - executable: Binaries\\Win64\\SH8Game-Steam.exe + executable: "Binaries\\\\Win64\\\\SH8Game-Steam.exe" type: none - - arguments: '-NOSCREENMESSAGES -SEEKFREELOADINGPCCONSOLE' + - arguments: "-NOSCREENMESSAGES -SEEKFREELOADINGPCCONSOLE" config: betakey: shippingtestbuilds oslist: windows description: Launch PCConsole_Steam_Test build - executable: Binaries\\Win64\\SH8Game-Win64-Shipping-Steam.exe + executable: "Binaries\\\\Win64\\\\SH8Game-Win64-Shipping-Steam.exe" type: none - - arguments: '-NOSCREENMESSAGES -SEEKFREELOADINGPCCONSOLE' + - arguments: "-NOSCREENMESSAGES -SEEKFREELOADINGPCCONSOLE" config: - betakey: 'testbuilds, loca' + betakey: "testbuilds, loca" oslist: windows description: Launch DENUVO - executable: Binaries\\Win64\\SH8Game-Steam-Denuvo.exe + executable: "Binaries\\\\Win64\\\\SH8Game-Steam-Denuvo.exe" type: none - - arguments: '-NOSCREENMESSAGES -SEEKFREELOADINGPCCONSOLE' + - arguments: "-NOSCREENMESSAGES -SEEKFREELOADINGPCCONSOLE" config: - betakey: 'shippingtestbuilds, pressbuild, optimizedbiuld' + betakey: "shippingtestbuilds, pressbuild, optimizedbiuld" oslist: windows description: Launch DENUVO Shipping - executable: Binaries\\Win64\\SH8Game-Win64-Shipping-Steam-Denuvo.exe + executable: "Binaries\\\\Win64\\\\SH8Game-Win64-Shipping-Steam-Denuvo.exe" type: none - - arguments: '-NOSCREENMESSAGES -SEEKFREELOADINGPCCONSOLE' + - arguments: "-NOSCREENMESSAGES -SEEKFREELOADINGPCCONSOLE" config: betakey: shippingtestbuilds oslist: windows description: Launch Sherlock.exe - executable: Binaries\\Win64\\Sherlock.exe + executable: "Binaries\\\\Win64\\\\Sherlock.exe" type: none -'350660': +"350660": installDir: Alganon launch: - config: oslist: windows description: Launch executable: Alganon.exe -'35070': +"35070": installDir: Floras Fruit Farm launch: - executable: FlorasFruitFarm.exe -'350700': +"350700": installDir: Red Stone Online launch: - arguments: steam @@ -170210,8 +166526,8 @@ oslist: windows description: Launch executable: Launcher.exe -'350710': {} -'350740': +"350710": {} +"350740": installDir: TheBugButcher launch: - config: @@ -170226,7 +166542,7 @@ oslist: linux description: Launch executable: TheBugButcher.x86 -'350770': +"350770": installDir: Giana Sisters 2D launch: - config: @@ -170237,49 +166553,49 @@ oslist: macos description: Launch executable: Giana.app -'350780': - installDir: MANOS Director's Cut +"350780": + installDir: "MANOS Director's Cut" launch: - config: oslist: windows description: Launch executable: MANOS-PC.exe -'350800': +"350800": installDir: Cannibal launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch - executable: win_x64_release\\GameSDK.exe + executable: "win_x64_release\\\\GameSDK.exe" type: default -'350810': +"350810": installDir: Pixel Puzzles 2 Anime launch: - description: Launch executable: Pixel Puzzles 2 - Anime.exe -'350840': +"350840": installDir: Bonetown - The Power of Death launch: - config: oslist: windows description: Launch executable: Bonetown.exe -'350880': +"350880": installDir: Archamon launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: ArchamonLauncher.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: Archamon.exe type: default -'350910': +"350910": installDir: Streets of Fury EX launch: - description: Streets of Fury EX - Open GL (FNA) @@ -170291,7 +166607,7 @@ description: Streets of Fury EX - DirectX (XNA) executable: Streets of Fury EX.exe type: option2 -'350970': +"350970": installDir: Planet of the Eyes launch: - config: @@ -170302,25 +166618,25 @@ oslist: macos description: Launch executable: PlanetOfTheEyes.app -'350990': +"350990": installDir: Bloodwood Reload launch: - config: oslist: windows executable: Bloodwood Reload.exe type: default -'3510': +"3510": installDir: Amazing Adventures The Lost Tomb launch: - executable: AmazingAdventures.exe -'351030': +"351030": installDir: Pixel Puzzles Ultimate launch: - config: oslist: windows executable: Pixel Puzzles Ultimate.exe type: none -'351050': +"351050": installDir: Cricket Captain 2015 launch: - config: @@ -170328,16 +166644,16 @@ description: Launch Cricket Captain (OpenGL) executable: CricketCaptain.exe type: none -'351060': +"351060": installDir: Outpost 13 launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: Win64_A1.3_O13.exe - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: Win32_A1.3_O13.exe @@ -170346,21 +166662,21 @@ description: Launch executable: Mac_A1.3_O13.app - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: Linux_A1.3_O13.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Linux_A1.3_O13.x86_64 -'351080': +"351080": installDir: The Corporate Machine launch: - description: Launch executable: machine.exe -'351090': +"351090": installDir: Regency Solitaire launch: - config: @@ -170371,7 +166687,7 @@ oslist: macos description: Launch executable: RegencySolitaire.app -'351100': +"351100": installDir: Niffelheim launch: - config: @@ -170388,51 +166704,51 @@ type: none - config: oslist: windows - ownsdlc: '875620' - description: Odin`s Blessing DLC Launch + ownsdlc: "875620" + description: "Odin`s Blessing DLC Launch" executable: /OdinBlessDLC/OdinBlessDLC.exe type: none workingdir: /OdinBlessDLC/ - config: oslist: macos - ownsdlc: '875620' - description: Odin`s Blessing DLC Launch + ownsdlc: "875620" + description: "Odin`s Blessing DLC Launch" executable: /OdinBlessDLC/OdinBlessDLC.app type: none workingdir: /OdinBlessDLC/ - config: oslist: linux - ownsdlc: '875620' - description: Odin`s Blessing DLC Launch + ownsdlc: "875620" + description: "Odin`s Blessing DLC Launch" executable: /OdinBlessDLC/OdinBlessDLC.x86 type: none workingdir: /OdinBlessDLC/ - config: - ownsdlc: '735433' + ownsdlc: "735433" executable: /NiffelheimOST type: none - config: oslist: windows - ownsdlc: '875621' + ownsdlc: "875621" description: Bloody Moon DLC Launch executable: /BloodyMoonDLC/BloodyMoonDLC.exe type: none workingdir: /BloodyMoonDLC/ - config: oslist: macos - ownsdlc: '875621' + ownsdlc: "875621" description: Bloody Moon DLC Launch executable: /BloodyMoonDLC/BloodyMoonDLC.app type: none workingdir: /BloodyMoonDLC/ - config: oslist: linux - ownsdlc: '875621' + ownsdlc: "875621" description: Bloody Moon DLC Launch executable: /BloodyMoonDLC/BloodyMoonDLC.x86 type: none workingdir: /BloodyMoonDLC/ -'351140': +"351140": installDir: Rustbucket Rumble launch: - config: @@ -170447,14 +166763,14 @@ oslist: linux description: Launch executable: RustbucketRumble -'351150': +"351150": installDir: DRAGON A Game About a Dragon launch: - config: oslist: windows description: Launch executable: AGameAboutADragon.exe -'351170': +"351170": installDir: Pixel launch: - config: @@ -170464,25 +166780,25 @@ type: default - config: oslist: windows - ownsdlc: '559810' + ownsdlc: "559810" description: Pixel - Local Arcade Mode for Tournaments executable: Pixel.Arcade.exe type: option1 -'351220': +"351220": installDir: Tower of Eglathia launch: - config: oslist: windows description: Launch executable: TowerOfEglathia.exe -'351230': +"351230": installDir: Counter Spell launch: - config: oslist: windows description: Launch executable: CounterSpell.exe -'351240': +"351240": installDir: Venusian Vengeance launch: - config: @@ -170493,53 +166809,47 @@ oslist: macos description: Launch executable: VenusianVengeanceMac.app -'351250': +"351250": installDir: Avalanche 2 Super Avalanche launch: - config: oslist: windows description: Launch executable: Avalanche2.exe -'351290': +"351290": installDir: Survival Postapocalypse Now launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: x64 - description_loc: - english: x64 executable: start_protected_game.exe - config: - osarch: '32' + osarch: "32" oslist: windows description: x32 executable: Cv2_Base/Binaries/Win32/Cv2_BaseClient_Shipping.exe type: none - config: betakey: devel - osarch: '64' + osarch: "64" oslist: windows description: Play Development version - description_loc: - english: Play Development version executable: Cv2_Base/Binaries/Win64/Cv2_BaseClient_Shipping.exe - config: betakey: devel - osarch: '32' + osarch: "32" oslist: windows description: Play Development version - description_loc: - english: Play Development version executable: Cv2_Base/Binaries/Win32/Cv2_BaseClient_Shipping.exe -'35130': +"35130": installDir: Lara Croft and the Guardian of Light launch: - executable: lcgol.exe - - arguments: '-setup' + - arguments: "-setup" description: Setup Lara Croft and the Guardian of Light executable: lcgol.exe -'351300': +"351300": installDir: Ceres launch: - config: @@ -170548,20 +166858,20 @@ executable: Ceres.exe type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: Ceres.x86 type: none - config: oslist: macos - executable: Ceres.app\\Contents\\MacOS\\Ceres + executable: "Ceres.app\\\\Contents\\\\MacOS\\\\Ceres" type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Ceres.x86_64 type: none -'351320': +"351320": installDir: DROD The Second Sky launch: - config: @@ -170573,11 +166883,11 @@ executable: drod type: default - config: - osarch: '64' + osarch: "64" oslist: macos - executable: DROD.app\\Contents\\MacOS\\drod + executable: "DROD.app\\\\Contents\\\\MacOS\\\\drod" type: default -'351330': +"351330": installDir: DROD RPG launch: - config: @@ -170589,51 +166899,51 @@ executable: drod type: default - config: - osarch: '64' + osarch: "64" oslist: macos - executable: DROD RPG.app\\Contents\\MacOS\\drod + executable: "DROD RPG.app\\\\Contents\\\\MacOS\\\\drod" type: default -'351340': +"351340": installDir: Belladonna launch: - config: oslist: windows description: Launch executable: Belladonna.exe -'35140': +"35140": installDir: Batman Arkham Asylum GOTY launch: - config: oslist: windows - executable: Binaries\\BmLauncher.exe + executable: "Binaries\\\\BmLauncher.exe" workingdir: Binaries - config: oslist: macos description: Launch executable: Batman Arkham Asylum GOTY.app -'351400': +"351400": installDir: The Defenders The Second Wave launch: - config: oslist: windows description: Launch executable: TheDefenders.exe -'351410': - installDir: Clean'Em Up +"351410": + installDir: "Clean'Em Up" launch: - config: oslist: windows description: Launch the game executable: CleanEmUp.exe type: default -'351420': +"351420": installDir: Veteran Combat launch: - config: oslist: windows description: Launch executable: vc.exe -'351450': +"351450": installDir: Scribble Space launch: - config: @@ -170648,14 +166958,14 @@ oslist: linux executable: run.sh type: default -'351470': +"351470": installDir: Sometimes Success Requires Sacrifice launch: - config: oslist: windows description: Launch executable: Sometimes.exe -'351480': +"351480": installDir: AOF launch: - config: @@ -170666,60 +166976,58 @@ - config: oslist: linux description: Launch - executable: ./aof-start-linux.sh + executable: "./aof-start-linux.sh" - config: oslist: macos description: Launch - executable: ./aof-start-macosx.command - - arguments: '-config' + executable: "./aof-start-macosx.command" + - arguments: "-config" config: oslist: windows description: Configuration executable: aof-start-windows.bat type: none - - arguments: '-config' + - arguments: "-config" config: oslist: linux description: Configuration - executable: ./aof-start-linux.sh + executable: "./aof-start-linux.sh" type: none - - arguments: '-config' + - arguments: "-config" config: oslist: macos description: Configuration - executable: ./aof-start-macosx.command + executable: "./aof-start-macosx.command" type: none - config: oslist: windows - description: 'Play Age of Fear: The Undead King (Log Console)' + description: "Play Age of Fear: The Undead King (Log Console)" executable: aof-start-windows-console.bat type: none - - arguments: '-workshop' + - arguments: "-workshop" config: oslist: windows description: Workshop Manager executable: aof-start-windows-console.bat type: none - - arguments: '-workshop' + - arguments: "-workshop" config: oslist: macos description: Workshop Manager - executable: ./aof-start-macosx.command + executable: "./aof-start-macosx.command" type: none - - arguments: '-workshop' + - arguments: "-workshop" config: oslist: linux description: Workshop Manager - executable: ./aof-start-linux.sh + executable: "./aof-start-linux.sh" type: none - config: oslist: windows - description: 'Play Age of Fear: The Undead King (Force 64bit)' - description_loc: - english: 'Play Age of Fear: The Undead King (Force 64bit)' + description: "Play Age of Fear: The Undead King (Force 64bit)" executable: aof-start-windows-64.bat type: none -'351490': +"351490": installDir: Intergalactic Bubbles launch: - config: @@ -170731,19 +167039,19 @@ description: Launch executable: Intergalactic Bubbles.exe - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: Intergalactic Bubbles.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Intergalactic Bubbles.x86_64 -'351510': +"351510": installDir: Quiplash launch: - - arguments: '-jbg.config serverUrl=ecast.jackboxgames.com' + - arguments: "-jbg.config serverUrl=ecast.jackboxgames.com" config: oslist: windows description: Launch @@ -170754,12 +167062,12 @@ description: Launch executable: Quiplash.app - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Launcher.sh type: none -'351630': +"351630": installDir: Fire With Fire Online Tower Attack and Defense launch: - config: @@ -170767,18 +167075,18 @@ description: Launch executable: Firewithfire-steam.exe type: default -'351640': +"351640": installDir: Eternal Senia launch: - description: Launch executable: game.exe -'351690': +"351690": installDir: Apple Jack 1&2 launch: - description: Launch executable: Chooser.exe type: none -'351700': +"351700": installDir: UnRealWorld launch: - config: @@ -170794,7 +167102,7 @@ executable: UrW.app/Contents/Resources/urw3-bin type: default workingdir: UrW.app/Contents/Resources/ -'351710': +"351710": installDir: Neptunia Rebirth2 launch: - config: @@ -170804,7 +167112,7 @@ nameLocalized: japanese: 超次次元ゲイム ネプテューヌRe;Birth2 tchinese: 超次次元遊戲 戰機少女 重生2 -'351720': +"351720": installDir: SolarDivision launch: - config: @@ -170821,7 +167129,7 @@ oslist: macos executable: SolarDivision.app type: none -'351730': +"351730": installDir: On My Own launch: - config: @@ -170833,18 +167141,18 @@ description: Launch executable: omo.app - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: omo.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: omo.x86_64 type: none -'351790': +"351790": installDir: Invisible Apartment launch: - config: @@ -170853,13 +167161,13 @@ executable: ia.exe type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: ia.sh type: none - config: - osarch: '64' + osarch: "64" oslist: macos description: Launch executable: ia.app/Contents/MacOS/ia @@ -170882,99 +167190,99 @@ description: Invisible Apartment bundle executable: ia.app/Contents/MacOS/ia type: option1 -'351800': +"351800": installDir: Dev Guy launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch - executable: Binaries\\Win32\\Dev Guy.exe + executable: "Binaries\\\\Win32\\\\Dev Guy.exe" - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch (64 Bit) - executable: Binaries\\Win64\\Dev Guy.exe -'351810': + executable: "Binaries\\\\Win64\\\\Dev Guy.exe" +"351810": installDir: MadSpace launch: - - arguments: '-conf dosbox_madspace.conf -conf dosbox_madspace_launch_windows.conf -noconsole' + - arguments: "-conf dosbox_madspace.conf -conf dosbox_madspace_launch_windows.conf -noconsole" config: oslist: windows description: Launch - executable: dosbox_windows\\dosbox.exe - workingdir: dosbox_windows\\ - - arguments: '-conf dosbox_madspace.conf -conf dosbox_madspace_launch_windows.conf -noconsole' + executable: "dosbox_windows\\\\dosbox.exe" + workingdir: "dosbox_windows\\\\" + - arguments: "-conf dosbox_madspace.conf -conf dosbox_madspace_launch_windows.conf -noconsole" config: oslist: windows - description: 'Play MadSpace: To Hell and Beyond in DOSBox Daum' - executable: dosbox_windows\\daum\\dosbox.exe - workingdir: dosbox_windows\\daum\\ - - arguments: '-conf dosbox_madspace.conf -conf dosbox_madspace_config_windows.conf -noconsole' + description: "Play MadSpace: To Hell and Beyond in DOSBox Daum" + executable: "dosbox_windows\\\\daum\\\\dosbox.exe" + workingdir: "dosbox_windows\\\\daum\\\\" + - arguments: "-conf dosbox_madspace.conf -conf dosbox_madspace_config_windows.conf -noconsole" config: oslist: windows - description: 'MadSpace: To Hell and Beyond - Configuration' - executable: dosbox_windows\\dosbox.exe - workingdir: dosbox_windows\\ + description: "MadSpace: To Hell and Beyond - Configuration" + executable: "dosbox_windows\\\\dosbox.exe" + workingdir: "dosbox_windows\\\\" - config: oslist: linux description: Launch - executable: dosbox_linux\\launch_madspace_game.sh - workingdir: dosbox_linux\\ + executable: "dosbox_linux\\\\launch_madspace_game.sh" + workingdir: "dosbox_linux\\\\" - config: oslist: linux - description: 'Play MadSpace: To Hell and Beyond in DOSBox Daum' - executable: dosbox_linux\\daum\\launch_madspace_game_daum.sh - workingdir: dosbox_linux\\daum\\ + description: "Play MadSpace: To Hell and Beyond in DOSBox Daum" + executable: "dosbox_linux\\\\daum\\\\launch_madspace_game_daum.sh" + workingdir: "dosbox_linux\\\\daum\\\\" - config: oslist: linux - description: 'MadSpace: To Hell and Beyond - Configuration' - executable: dosbox_linux\\launch_madspace_config.sh - workingdir: dosbox_linux\\ -'351820': + description: "MadSpace: To Hell and Beyond - Configuration" + executable: "dosbox_linux\\\\launch_madspace_config.sh" + workingdir: "dosbox_linux\\\\" +"351820": installDir: Z.A.R launch: - - arguments: '-conf dosbox_zar.conf -conf dosbox_zar_launch_windows.conf -noconsole' + - arguments: "-conf dosbox_zar.conf -conf dosbox_zar_launch_windows.conf -noconsole" config: oslist: windows description: Launch - executable: dosbox_windows\\dosbox.exe - workingdir: dosbox_windows\\ - - arguments: '-conf dosbox_zar.conf -conf dosbox_zar_launch_windows.conf -noconsole' + executable: "dosbox_windows\\\\dosbox.exe" + workingdir: "dosbox_windows\\\\" + - arguments: "-conf dosbox_zar.conf -conf dosbox_zar_launch_windows.conf -noconsole" config: oslist: windows description: Play Z.A.R. in DOSBox Daum - executable: dosbox_windows\\daum\\dosbox.exe - workingdir: dosbox_windows\\daum\\ - - arguments: '-conf dosbox_zar.conf -conf dosbox_zar_config_windows.conf -noconsole' + executable: "dosbox_windows\\\\daum\\\\dosbox.exe" + workingdir: "dosbox_windows\\\\daum\\\\" + - arguments: "-conf dosbox_zar.conf -conf dosbox_zar_config_windows.conf -noconsole" config: oslist: windows description: Z.A.R. - Configuration - executable: dosbox_windows\\dosbox.exe - workingdir: dosbox_windows\\ + executable: "dosbox_windows\\\\dosbox.exe" + workingdir: "dosbox_windows\\\\" - config: oslist: linux description: Launch - executable: dosbox_linux\\launch_zar_game.sh - workingdir: dosbox_linux\\ + executable: "dosbox_linux\\\\launch_zar_game.sh" + workingdir: "dosbox_linux\\\\" - config: oslist: linux description: Play Z.A.R. in DOSBox Daum - executable: dosbox_linux\\daum\\launch_zar_game_daum.sh - workingdir: dosbox_linux\\daum\\ + executable: "dosbox_linux\\\\daum\\\\launch_zar_game_daum.sh" + workingdir: "dosbox_linux\\\\daum\\\\" - config: oslist: linux description: Z.A.R. - Configuration - executable: dosbox_linux\\launch_zar_config.sh - workingdir: dosbox_linux\\ -'351840': + executable: "dosbox_linux\\\\launch_zar_config.sh" + workingdir: "dosbox_linux\\\\" +"351840": installDir: Odyssey launch: - config: oslist: windows description: Launch executable: ody.exe -'351860': +"351860": installDir: Cultures Northland launch: - config: @@ -170985,7 +167293,7 @@ oslist: windows description: Editor executable: Editor.exe -'351870': +"351870": installDir: Cultures 8th Wonder launch: - config: @@ -170996,14 +167304,14 @@ oslist: windows description: Editor executable: Editor.exe -'351900': +"351900": installDir: Pregnancy launch: - config: oslist: windows description: Launch executable: Pregnancy.exe -'351910': +"351910": installDir: ValhallaHills launch: - config: @@ -171019,7 +167327,7 @@ oslist: linux executable: ValhallaHills/Binaries/Linux/ValhallaHills-Linux-Shipping type: none -'351920': +"351920": installDir: CM3 launch: - config: @@ -171030,7 +167338,7 @@ nameLocalized: schinese: 疯狂机器3 - Crazy Machines 3 tchinese: 瘋狂機器3 - Crazy Machines 3 -'351940': +"351940": installDir: The Descendant launch: - config: @@ -171041,24 +167349,24 @@ oslist: macos executable: The Descendant.app type: default -'351970': +"351970": installDir: Tales of Zestiria launch: - description: Launch executable: Tales of Zestiria.exe type: default -'351990': +"351990": installDir: Riff Racer launch: - config: oslist: windows description: Launch executable: game.exe -'3520': +"3520": installDir: Mystery PI The Vegas Heist launch: - executable: MysteryPIVegas.exe -'352010': +"352010": installDir: Beach Bounce launch: - config: @@ -171073,7 +167381,7 @@ oslist: macos description: Launch executable: BeachBounce.app -'352030': +"352030": installDir: The World Named Fred launch: - config: @@ -171084,7 +167392,7 @@ oslist: windows description: Launch executable: The World Named Fred.exe -'352050': +"352050": installDir: Chesster launch: - config: @@ -171097,30 +167405,30 @@ type: none - config: oslist: macos - executable: Chesster.app\\Contents\\MacOS\\Chesster + executable: "Chesster.app\\\\Contents\\\\MacOS\\\\Chesster" type: none -'352070': +"352070": installDir: Fort Meow launch: - config: oslist: windows description: Launch executable: FortMeow.exe -'352080': +"352080": installDir: Judge Dredd launch: - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Judge Dredd Countdown Sec 106.x86_64 - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: Judge Dredd Countdown Sec 106.x86 - config: - osarch: '64' + osarch: "64" oslist: macos description: Launch executable: Judge Dredd Countdown Sec 106.app @@ -171128,17 +167436,17 @@ oslist: windows description: Launch executable: Judge Dredd Countdown Sec 106.exe -'352120': +"352120": installDir: Fair Strike launch: - description: Launch executable: FS.exe -'352130': +"352130": installDir: Locoland launch: - description: Launch executable: Steam.exe -'352140': +"352140": installDir: Finders launch: - config: @@ -171149,20 +167457,20 @@ oslist: macos description: Launch executable: Finders.app -'352160': +"352160": installDir: Curse of Mermos launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: Curse Of Mermos.exe - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: Curse Of Mermos.exe -'352170': +"352170": installDir: MadOut launch: - config: @@ -171171,13 +167479,13 @@ executable: Windows/Launcher.exe workingdir: Windows - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: Linux/Launcher workingdir: Linux - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Linux64/Launcher @@ -171186,7 +167494,7 @@ oslist: macos description: Launch executable: MadOut.app -'352190': +"352190": installDir: Spirit Of War launch: - config: @@ -171197,7 +167505,7 @@ oslist: macos description: Launch executable: SpiritOfWar.app -'352210': +"352210": installDir: Little Cells launch: - config: @@ -171212,7 +167520,7 @@ oslist: linux description: Launch executable: cell -'352220': +"352220": installDir: King of Dragon Pass launch: - config: @@ -171223,7 +167531,7 @@ oslist: windows description: Launch executable: King of Dragon Pass.exe -'352240': +"352240": installDir: The Westport Independent launch: - config: @@ -171235,17 +167543,17 @@ description: Launch executable: the_westport_independent.app - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: the_westport_independent type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: the_westport_independent type: none -'352360': +"352360": installDir: Reflections launch: - config: @@ -171257,16 +167565,16 @@ description: Play executable: Reflections.app - config: - osarch: '32' + osarch: "32" oslist: linux description: Play executable: Reflections.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Play executable: Reflections.x86_64 -'352370': +"352370": installDir: Defect launch: - config: @@ -171282,41 +167590,41 @@ description: Launch executable: Defect.x86 type: none -'352400': +"352400": installDir: LEGO Jurassic World launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: LEGOJurassicWorld.exe - config: - osarch: '64' + osarch: "64" oslist: macos description: Launch executable: LEGO Jurassic World.app -'352430': +"352430": installDir: Farlight Explorers launch: - config: oslist: windows executable: FarlightExplorers.exe type: default -'352440': +"352440": installDir: Catacombs of the Undercity launch: - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Gamebook Adventures Catacombs of the Undercity.x86_64 - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: Gamebook Adventures Catacombs of the Undercity.x86 - config: - osarch: '64' + osarch: "64" oslist: macos description: Launch executable: Gamebook Adventures Catacombs of the Undercity.app @@ -171324,8 +167632,8 @@ oslist: windows description: Launch executable: Gamebook Adventures Catacombs of the Undercity.exe -'352450': {} -'352460': +"352450": {} +"352460": installDir: DeadRealm launch: - config: @@ -171336,7 +167644,7 @@ oslist: macos description: Launch executable: DeadRealm.app -'352520': +"352520": installDir: The Silent Age launch: - config: @@ -171348,23 +167656,23 @@ description: Launch executable: TheSilentAge.app - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: TheSilentAge.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: TheSilentAge.x86_64 -'352530': +"352530": installDir: Poppy Kart launch: - config: oslist: windows executable: PoppyKart.exe type: none -'352550': +"352550": installDir: Urban Empire launch: - config: @@ -171372,14 +167680,14 @@ description: Launch executable: LaunchUE.exe type: default -'352580': +"352580": installDir: Hidden On the trail of the Ancients launch: - config: oslist: windows description: Launch executable: hidden.exe -'352610': +"352610": installDir: The Way We All Go launch: - config: @@ -171393,8 +167701,8 @@ - config: oslist: macos description: Launch - executable: The way we all go.app\\Contents\\MacOS\\The way we all go -'352620': + executable: "The way we all go.app\\\\Contents\\\\MacOS\\\\The way we all go" +"352620": installDir: Porcunipine launch: - config: @@ -171410,14 +167718,14 @@ description: Launch executable: Porcunipine.x86 type: none -'352640': +"352640": installDir: The Indie Mixtape launch: - config: oslist: windows description: Launch executable: Mixtape.exe -'352700': +"352700": installDir: Continuum launch: - config: @@ -171429,7 +167737,7 @@ description: Linux (Wine 5.5+ required) executable: run.sh type: default -'352720': +"352720": installDir: The Universim launch: - config: @@ -171443,12 +167751,12 @@ executable: The Universim.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: The Universim.x86_64 type: default -'352740': +"352740": installDir: Princess Battles launch: - config: @@ -171463,7 +167771,7 @@ oslist: linux description: Launch executable: PrincessBattles.sh -'352750': +"352750": installDir: RoadWorks launch: - config: @@ -171474,7 +167782,7 @@ oslist: windows description: Start Road Works Editor executable: RoadWorksEditor.exe -'352760': +"352760": installDir: KaijuPanic launch: - config: @@ -171489,7 +167797,7 @@ oslist: linux executable: KaijuPanic.x86 type: default -'352780': +"352780": installDir: An Octave Higher launch: - config: @@ -171505,7 +167813,7 @@ oslist: linux description: Launch executable: An Octave Higher -'352790': +"352790": installDir: Futuridium EP Deluxe launch: - config: @@ -171514,13 +167822,13 @@ type: default - config: oslist: macos - executable: futuridiumepd.app\\Contents\\MacOS\\futuridiumepd + executable: "futuridiumepd.app\\\\Contents\\\\MacOS\\\\futuridiumepd" type: default - config: oslist: linux executable: futuridiumepd.x86 type: default -'352810': +"352810": installDir: Yukie A Japanese Winter Fairy Tale launch: - config: @@ -171529,27 +167837,27 @@ type: default nameLocalized: japanese: 雪絵 -'352850': +"352850": installDir: DGU launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: DGU.exe - config: - osarch: '64' + osarch: "64" oslist: macos description: Launch executable: DGU.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: DGU/Binaries/Linux/DGU type: default -'352890': +"352890": installDir: Caravan launch: - config: @@ -171565,17 +167873,17 @@ description: Launch executable: Caravan.x86_64 - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: Caravan.x86 -'352900': +"352900": installDir: Giana Sisters Dream Runners launch: - description: Start with Launcher - executable: launcher\\GSLauncher.exe - workingdir: Launcher\\ -'352950': + executable: "launcher\\\\GSLauncher.exe" + workingdir: "Launcher\\\\" +"352950": installDir: Better Late Than Dead launch: - config: @@ -171586,7 +167894,7 @@ oslist: macos description: Launch executable: BLTD.app -'352960': +"352960": installDir: Star Horizon launch: - config: @@ -171598,31 +167906,31 @@ description: Launch executable: starhorizon.app - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: starhorizon.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: starhorizon.x86_64 -'3530': +"3530": installDir: Amazing Adventures Around the World launch: - executable: AmazingAdventures2.exe -'35300': +"35300": installDir: Warfare launch: - executable: StartUp.exe -'353070': - installDir: Ghost Encounters Deadwood - Collector's Edition +"353070": + installDir: "Ghost Encounters Deadwood - Collector's Edition" launch: - config: oslist: windows description: Launch executable: GhostEncountersDeadwood.exe -'353080': +"353080": installDir: Redrum Time Lies launch: - config: @@ -171630,7 +167938,7 @@ description: Launch executable: Redrum2.exe type: none -'353090': +"353090": installDir: Chicken Invaders 5 launch: - config: @@ -171649,59 +167957,59 @@ type: none - config: oslist: windows - ownsdlc: '402990' + ownsdlc: "402990" description: Halloween Edition DLC executable: DLC_halloween/CI5Halloween.exe type: none workingdir: DLC_halloween - config: oslist: linux - ownsdlc: '402990' + ownsdlc: "402990" description: Halloween Edition DLC executable: DLC_halloween/CI5Halloween.exe type: none workingdir: DLC_halloween - config: oslist: macos - ownsdlc: '402990' + ownsdlc: "402990" description: Halloween Edition DLC executable: DLC_halloween/Chicken Invaders 5 Halloween Steam.app/Contents/MacOS/CI5Halloween.exe type: none workingdir: DLC_halloween - config: oslist: windows - ownsdlc: '543610' + ownsdlc: "543610" description: Christmas Edition DLC executable: DLC_xmas/CI5Xmas.exe type: none workingdir: DLC_xmas - config: oslist: linux - ownsdlc: '543610' + ownsdlc: "543610" description: Christmas Edition DLC executable: DLC_xmas/CI5Xmas.exe type: none workingdir: DLC_xmas - config: oslist: macos - ownsdlc: '543610' + ownsdlc: "543610" description: Christmas Edition DLC executable: DLC_xmas/Chicken Invaders 5 Xmas Steam.app/Contents/MacOS/CI5Xmas.exe type: none workingdir: DLC_xmas -'35310': +"35310": installDir: Clutch launch: - executable: Clutch.exe -'353110': - installDir: Dreamscapes Nightmare's Heir +"353110": + installDir: "Dreamscapes Nightmare's Heir" launch: - config: oslist: windows description: Launch executable: Dreamscapes_Nightmares_Heir.exe type: none -'353130': +"353130": installDir: TimeOfDragons launch: - config: @@ -171713,26 +168021,26 @@ executable: tod.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: tod.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: tod.x86 type: default -'353190': +"353190": installDir: Bombshell launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: Binaries/Win32/Bombshell.exe workingdir: Binaries/Win32/ - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: Binaries/Win64/Bombshell.exe @@ -171745,39 +168053,39 @@ workingdir: Help/ - config: oslist: windows - ownsdlc: '437580' + ownsdlc: "437580" description: View Digital Word Map executable: ddx/world_maps.bat type: none workingdir: ddx/ - config: oslist: windows - ownsdlc: '437580' + ownsdlc: "437580" description: View Digital Artbook executable: ddx/artbook.bat type: none workingdir: ddx/ -'35320': +"35320": installDir: Insane2 launch: - executable: i2.exe -'353220': +"353220": installDir: Fast Detect launch: - - arguments: '-game FastDetect' + - arguments: "-game FastDetect" config: oslist: windows executable: FastDetect.exe type: default -'353260': +"353260": installDir: Snails launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: snails.exe -'353270': +"353270": installDir: Hyperdimension Neptunia Re;Birth3 launch: - config: @@ -171787,7 +168095,7 @@ nameLocalized: japanese: 神次次元ゲイム ネプテューヌRe;Birth3 V CENTURY tchinese: 神次次元遊戲 戰機少女 重生3 V世紀 -'353280': +"353280": installDir: Metamorphabet launch: - config: @@ -171798,7 +168106,7 @@ oslist: macos description: Launch executable: Metamorphabet.app -'353300': +"353300": installDir: Rooftop Cop launch: - config: @@ -171809,7 +168117,7 @@ oslist: macos description: Launch executable: ROOFTOP COP.app -'353330': +"353330": installDir: loveatfirstsight launch: - config: @@ -171824,7 +168132,7 @@ oslist: macos description: Launch executable: loveatfirstsight.app/Contents/MacOS/loveatfirstsight -'353340': +"353340": installDir: DungeonHighway launch: - config: @@ -171839,7 +168147,7 @@ oslist: linux description: Launch executable: DungeonHighway.x86 -'353360': +"353360": installDir: how do you Do It launch: - config: @@ -171849,12 +168157,12 @@ - config: oslist: windows description: Launch - executable: how_do_you_Do_It\\how do you Do It.exe -'353540': - installDir: Stephen's Sausage Roll + executable: "how_do_you_Do_It\\\\how do you Do It.exe" +"353540": + installDir: "Stephen's Sausage Roll" launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: Sausage.exe type: none @@ -171863,21 +168171,21 @@ executable: Sausage.app/Contents/MacOS/Sausage type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: Sausage.x86_64 type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: Sausage.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: windows executable: Sausage.exe type: none -'353550': +"353550": installDir: House of Caravan launch: - config: @@ -171888,7 +168196,7 @@ oslist: macos description: Launch executable: hoc.app -'353560': +"353560": installDir: Plug & Play launch: - config: @@ -171900,12 +168208,12 @@ description: Launch executable: pnp.app/Contents/MacOS/pnp - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: pnp.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: pnp.x86_64 @@ -171913,19 +168221,19 @@ japanese: プラグ・アンド・プレイ schinese: 即插即玩 tchinese: 即插即玩 -'353580': +"353580": installDir: RadRodgers launch: - config: oslist: windows executable: Rad.exe type: default -'353600': +"353600": installDir: Spellbind launch: - description: Launch executable: Spellbind.exe -'353610': +"353610": installDir: DEM2 launch: - config: @@ -171936,7 +168244,7 @@ oslist: macos description: Launch-Mac executable: DEM2_20140401_MAC_UNIV_NoDialog_NoLevelSelect.app -'353630': +"353630": installDir: Oil Enterprise launch: - config: @@ -171951,7 +168259,7 @@ oslist: macos description: Launch executable: oilenterprise.app -'353640': +"353640": installDir: Train Valley launch: - config: @@ -171963,44 +168271,44 @@ description: Launch executable: train-valley.app - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: train-valley.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: train-valley.x86_64 -'353690': +"353690": installDir: DUST launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: Dust.exe type: none -'353700': +"353700": installDir: the_deadly_tower_of_monsters launch: - config: oslist: windows - executable: .\\Binaries\\Win32\\TS.exe + executable: ".\\\\Binaries\\\\Win32\\\\TS.exe" type: default -'353790': +"353790": installDir: Spud! launch: - config: oslist: windows description: Launch executable: SpudMenu.exe -'353890': +"353890": installDir: Lacrosse launch: - description: Launch executable: lacrosse.exe -'353940': +"353940": installDir: AOTL launch: - config: @@ -172011,15 +168319,15 @@ oslist: macos description: Launch executable: Aces of the Luftwaffe.app -'353980': +"353980": installDir: Ankh - Anniversary Edition launch: - config: oslist: windows description: Launch - executable: bin\\release\\Ankh.exe - workingdir: bin\\release -'353990': + executable: "bin\\\\release\\\\Ankh.exe" + workingdir: "bin\\\\release" +"353990": installDir: Parvaneh launch: - executable: Parvaneh.exe @@ -172027,48 +168335,48 @@ - description: Settings executable: GameLauncher.exe type: none -'3540': +"3540": installDir: Peggle Nights launch: - - arguments: ' ' + - arguments: " " config: oslist: windows executable: PeggleNights.exe - config: oslist: macos executable: Peggle Nights.app -'354030': +"354030": installDir: VolChaos launch: - config: oslist: windows description: Launch executable: VolChaos.exe -'354040': +"354040": installDir: Hypership launch: - config: oslist: windows executable: Hypership.exe type: default -'354050': +"354050": installDir: Starlight Tactics launch: - config: oslist: windows description: Launch executable: starlighttacticspc.exe -'354140': - installDir: Five Nights at Freddy's 3 +"354140": + installDir: "Five Nights at Freddy's 3" launch: - config: oslist: windows description: Launch executable: FiveNightsatFreddys3.exe -'354160': +"354160": installDir: WRC 5 launch: - - arguments: '-dx11' + - arguments: "-dx11" config: oslist: windows description: WRC 5 DirectX 11 @@ -172079,18 +168387,18 @@ description: WRC 5 DirectX 9 executable: WRC5.exe type: option2 -'354180': +"354180": installDir: Bunker launch: - description: Launch executable: Bunker.exe -'35420': +"35420": installDir: killingfloor launch: - - arguments: '-mod=DA2' + - arguments: "-mod=DA2" description: Defence Alliance 2 - executable: System\\KillingFloor.exe -'354200': + executable: "System\\\\KillingFloor.exe" +"354200": installDir: Aberoth launch: - config: @@ -172098,21 +168406,21 @@ description: Windows Launch executable: Aberoth.exe - config: - osarch: '32' + osarch: "32" oslist: linux description: Linux (32 bit) Launch executable: launch_aberoth - config: - osarch: '64' + osarch: "64" oslist: macos description: OSX Launch executable: Aberoth.app - config: - osarch: '64' + osarch: "64" oslist: linux description: Linux (64 bit) Launch executable: launch_aberoth -'354230': +"354230": installDir: Devouring Stars launch: - config: @@ -172124,17 +168432,17 @@ description: Launch executable: DevouringStars.app - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: DevouringStars.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: DevouringStars.x86_64 -'354240': - installDir: 'Please, Don’t Touch Anything' +"354240": + installDir: "Please, Don’t Touch Anything" launch: - config: oslist: windows @@ -172149,38 +168457,38 @@ oslist: linux executable: run.sh type: default -'354280': +"354280": installDir: ChaosTower launch: - config: oslist: windows description: Launch executable: ChaosTowerStarter.exe -'354290': +"354290": installDir: LoveBeat launch: - arguments: from_steam config: oslist: windows executable: LoveBeat.exe -'354310': +"354310": installDir: Claws & Feathers launch: - config: oslist: windows description: Launch executable: ClawsAndFeathers.exe -'354380': +"354380": installDir: Assassins Creed Chronicles China launch: - - arguments: '-uplay_steam_mode -seekfreeloadingpcconsole' + - arguments: "-uplay_steam_mode -seekfreeloadingpcconsole" config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: Binaries/Win32/ACCGame-Win32-Shipping.exe workingdir: Binaries/Win32 -'354400': +"354400": installDir: Tadpole Treble launch: - config: @@ -172192,16 +168500,16 @@ executable: Tadpole Treble mac.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Tadpole Treble lin.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Tadpole Treble lin.x86_64 type: default -'354430': +"354430": installDir: STAR WARS X-Wing launch: - config: @@ -172210,38 +168518,37 @@ executable: remastered/XWING95.EXE type: none workingdir: remastered - - arguments: '-conf \"..\\dosbox_xwing.conf\" -conf \"..\\dosbox_xwing_single.conf\" -noconsole -c exit' + - arguments: "-conf \\\"..\\\\dosbox_xwing.conf\\\" -conf \\\"..\\\\dosbox_xwing_single.conf\\\" -noconsole -c exit" config: oslist: windows - description: 'Play STAR WARS™: X-Wing Classic' + description: "Play STAR WARS™: X-Wing Classic" executable: classic/DOSBOX/DOSBox.exe workingdir: classic/DOSBOX - - arguments: '-conf \"..\\dosbox_xwingcd.conf\" -conf \"..\\dosbox_xwingcd_single.conf\" -noconsole -c exit' + - arguments: "-conf \\\"..\\\\dosbox_xwingcd.conf\\\" -conf \\\"..\\\\dosbox_xwingcd_single.conf\\\" -noconsole -c exit" config: oslist: windows - description: 'Play STAR WARS™: X-Wing Collector''s CD-ROM' + description: "Play STAR WARS™: X-Wing Collector's CD-ROM" executable: collectors_cd/DOSBOX/DOSBox.exe type: none workingdir: collectors_cd/DOSBOX - - arguments: '-conf dosbox_xwing.conf -conf dosbox_xwing_single.conf -conf DOSBoxPreferences.conf -noconsole -c exit' + - arguments: "-conf dosbox_xwing.conf -conf dosbox_xwing_single.conf -conf DOSBoxPreferences.conf -noconsole -c exit" config: oslist: macos - description: 'Play STAR WARS™: X-Wing Classic' + description: "Play STAR WARS™: X-Wing Classic" executable: dosbox/DOSBox type: option1 - - arguments: '-conf dosbox_xwingcd.conf -conf dosbox_xwingcd_single.conf -conf DOSBoxPreferences.conf -noconsole -c exit' + - arguments: "-conf dosbox_xwingcd.conf -conf dosbox_xwingcd_single.conf -conf DOSBoxPreferences.conf -noconsole -c exit" config: oslist: macos - description: 'Play STAR WARS™: X-Wing Collector''s CD-ROM' + description: "Play STAR WARS™: X-Wing Collector's CD-ROM" executable: dosbox/DOSBox type: option2 -'354480': {} -'35450': +"354480": {} +"35450": installDir: Red Orchestra 2 launch: - - executable: binaries\\win32\\rogame.exe - vacmodulefilename: resource\\sourceinit.dat -'354560': + - executable: "binaries\\\\win32\\\\rogame.exe" +"354560": installDir: We Are Legion launch: - config: @@ -172251,32 +168558,32 @@ - config: oslist: linux description: Launch - executable: ./WeAreLegion + executable: "./WeAreLegion" type: none - config: oslist: macos description: Launch executable: We Are Legion.app type: none -'35460': +"35460": installDir: The Ball launch: - - executable: ./Binaries/Win32/TheBall.exe -'354600': + - executable: "./Binaries/Win32/TheBall.exe" +"354600": installDir: Decisive Campaigns Case Blue launch: - config: oslist: windows description: Launch executable: autorun.exe -'354620': +"354620": installDir: MinerWarfare launch: - config: oslist: windows description: Launch executable: Miner Warfare.exe -'354640': +"354640": installDir: The Settlers Online launch: - config: @@ -172291,7 +168598,7 @@ oslist: macos description: Launch executable: The Settlers Online.app -'354650': +"354650": installDir: MISSING An Interactive Thriller launch: - config: @@ -172302,7 +168609,7 @@ oslist: macos description: Launch executable: missing_universal.app -'354680': +"354680": installDir: Adventures of Bertram Fiddle Episode 1 A Dreadly Business launch: - config: @@ -172313,22 +168620,22 @@ oslist: macos description: Launch executable: The Adventures of Bertram Fiddle Episode 1.app -'354690': +"354690": installDir: The Lost City Of Malathedra launch: - description: Launch executable: S3Engine.exe -'354720': +"354720": installDir: STATIC Investigator Training launch: - description: Launch executable: SeleniteWin32.exe -'354730': +"354730": installDir: Deadly Sin launch: - description: Launch executable: game.exe -'354740': +"354740": installDir: Echoes Of Aetheria launch: - config: @@ -172338,25 +168645,25 @@ type: none - config: oslist: windows - ownsdlc: '433021' + ownsdlc: "433021" description: View Strategy Guide executable: Echoes of Aetheria Strategy Guide.pdf type: none - config: oslist: windows - ownsdlc: '433030' + ownsdlc: "433030" description: View Artbook executable: Echoes of Aetheria Art Book.pdf type: none - - arguments: ./EchoesOfAetheria.amd64 + - arguments: "./EchoesOfAetheria.amd64" config: - osarch: '64' + osarch: "64" oslist: linux executable: steamshim/parent.amd64 type: default - - arguments: ./EchoesOfAetheria.x86 + - arguments: "./EchoesOfAetheria.x86" config: - osarch: '32' + osarch: "32" oslist: linux executable: steamshim/parent.x86 type: default @@ -172365,14 +168672,14 @@ oslist: macos executable: EchoesOfAetheria.app/Contents/MacOS/steamshim_parent type: default -'354770': +"354770": installDir: Trigger Saint launch: - config: oslist: windows description: Launch executable: Trigger Saint.exe -'35480': +"35480": installDir: Dwarfs launch: - config: @@ -172384,7 +168691,7 @@ - config: oslist: linux executable: Dwarfs -'354810': +"354810": installDir: Coated launch: - config: @@ -172399,15 +168706,15 @@ oslist: linux description: Linux executable: Coated -'354820': +"354820": installDir: Prison Tycoon Alcatraz launch: - config: oslist: windows description: Launch executable: alcatraz.exe -'354850': {} -'354860': +"354850": {} +"354860": installDir: The Adventures of Tree launch: - config: @@ -172415,7 +168722,7 @@ description: Windows Launch executable: TheAdventuresOfTree.exe type: none - - arguments: '-force-opengl' + - arguments: "-force-opengl" config: oslist: linux description: Linux Launch @@ -172426,7 +168733,7 @@ description: Mac Launch executable: TheAdventuresOfTree.app type: none -'354900': +"354900": installDir: headcrab frenzy launch: - config: @@ -172437,7 +168744,7 @@ oslist: linux description: Launch Headcrab Frenzy! executable: launcher -'354910': +"354910": installDir: Indie Assault launch: - config: @@ -172450,12 +168757,12 @@ description: Launch executable: IndieAssault_8_22_15.app type: none -'354920': +"354920": installDir: Pester launch: - description: Launch executable: Pester.exe -'354930': +"354930": installDir: Slinki launch: - config: @@ -172463,16 +168770,16 @@ description: Launch executable: Slinki.exe - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: Slinki.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Slinki.x86_64 -'354950': +"354950": installDir: East Tower - Akio launch: - config: @@ -172485,19 +168792,19 @@ executable: East Tower - Akio.app nameLocalized: japanese: イーストタワー・アキオ編(シリーズ Vol.1) -'354960': +"354960": installDir: An Imp A Fiend launch: - config: oslist: windows description: Launch executable: An Imp A Fiend.exe -'354970': +"354970": installDir: Shin Samurai Jazz launch: - description: Launch executable: Shin Samurai Jazz.exe -'355010': +"355010": installDir: Race Online launch: - config: @@ -172513,14 +168820,14 @@ oslist: linux executable: RaceOnline.x86 type: none -'355020': +"355020": installDir: Bomb The Monsters! launch: - config: oslist: windows description: Launch executable: Bomb-the-Monsters.exe -'355050': +"355050": installDir: Sky Force Anniversary launch: - config: @@ -172532,34 +168839,34 @@ description: Launch executable: Sky Force Anniversary.app - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: Sky Force Anniversary.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Sky Force Anniversary.x86_64 -'355060': +"355060": installDir: Sébastien Loeb Rally EVO launch: - config: - osarch: '64' + osarch: "64" description: Launch executable: SLRX64.exe - config: - osarch: '32' + osarch: "32" description: Launch executable: SLR.exe -'355070': +"355070": installDir: TDP5 Arena 3D launch: - config: oslist: windows description: Launch executable: tdp5.exe -'355080': +"355080": installDir: Crazy Steam Bros 2 launch: - config: @@ -172574,23 +168881,23 @@ oslist: linux description: Launch executable: runner -'355090': +"355090": installDir: SCTT launch: - description: Launch executable: SCTT.exe -'35510': +"35510": installDir: Cities XL launch: - executable: runme.exe -'355100': +"355100": installDir: Dungeon Crawlers HD launch: - config: oslist: windows description: Launch executable: Dungeon Crawlers HD.exe - - arguments: '-force-d3d11' + - arguments: "-force-d3d11" config: oslist: windows description: Launch Oculus VR Version (READ Release Notes!) @@ -172601,35 +168908,35 @@ executable: DungeonCrawlers HD.app type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: DCHD.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: DCHD.x86 type: default -'355120': {} -'355130': +"355120": {} +"355130": installDir: MotoGP15 launch: - config: - osarch: '32' + osarch: "32" description: Launch executable: MotoGP15.exe - config: - osarch: '64' + osarch: "64" description: Launch executable: MotoGP15X64.exe -'355140': +"355140": installDir: Traps N Gemstones launch: - config: oslist: windows description: Launch executable: TrapsNGemstones.exe -'355150': +"355150": installDir: gravilon launch: - config: @@ -172642,57 +168949,57 @@ description: Launch executable: gravilon.app - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: gravilon.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: gravilon.x86_64 -'355170': +"355170": installDir: Sam and Max Hit the Road launch: - - arguments: '-c ../samnmax.ini samnmax' + - arguments: "-c ../samnmax.ini samnmax" config: oslist: windows description: Launch executable: ScummVM/scummvm.exe type: none workingdir: ScummVM - - arguments: '-c ../samnmax.ini samnmax' + - arguments: "-c ../samnmax.ini samnmax" config: oslist: macos executable: ScummVM/scummvm type: none workingdir: ScummVM -'355180': +"355180": installDir: Codename CURE launch: - - arguments: '-game cure -steam' + - arguments: "-game cure -steam" config: oslist: windows description: Launch executable: cure.exe type: none - - arguments: '-game cure -steam' + - arguments: "-game cure -steam" config: oslist: macos description: Launch executable: cure.sh type: none - - arguments: '-game cure -steam' + - arguments: "-game cure -steam" config: oslist: linux description: Launch executable: cure.sh type: none -'355190': +"355190": installDir: Geocore launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: geocore.exe @@ -172706,7 +169013,7 @@ description: Launch executable: geocore.app type: none -'355230': +"355230": installDir: Faceted Flight launch: - config: @@ -172714,11 +169021,11 @@ description: Faceted Flight executable: FacetedFlight.exe type: vr - - arguments: '-vrmode oculus' + - arguments: "-vrmode oculus" description: Faceted Flight executable: FacetedFlight.exe type: othervr -'355240': +"355240": installDir: NEO AQUARIUM - The King of Crustaceans - launch: - config: @@ -172729,7 +169036,7 @@ oslist: windows description: Option executable: custom.exe -'355250': +"355250": installDir: STAR WARS Tie Fighter launch: - config: @@ -172737,40 +169044,40 @@ description: Launch executable: remastered/TIE95.EXE workingdir: remastered - - arguments: '-conf \"..\\dosbox_tie.conf\" -conf \"..\\dosbox_tie_single.conf\" -noconsole -c exit' + - arguments: "-conf \\\"..\\\\dosbox_tie.conf\\\" -conf \\\"..\\\\dosbox_tie_single.conf\\\" -noconsole -c exit" config: oslist: windows - description: 'Play STAR WARS™: TIE Fighter Classic' + description: "Play STAR WARS™: TIE Fighter Classic" executable: classic/DOSBOX/dosbox.exe type: none workingdir: classic/DOSBOX - - arguments: '-conf \"..\\dosbox_tiecd.conf\" -conf \"..\\dosbox_tiecd_single.conf\" -noconsole -c exit\"' + - arguments: "-conf \\\"..\\\\dosbox_tiecd.conf\\\" -conf \\\"..\\\\dosbox_tiecd_single.conf\\\" -noconsole -c exit\\\"" config: oslist: windows - description: 'Play STAR WARS™: TIE Fighter Collector''s CD-ROM' - executable: collectors_cd\\DOSBOX/dosbox.exe + description: "Play STAR WARS™: TIE Fighter Collector's CD-ROM" + executable: "collectors_cd\\\\DOSBOX/dosbox.exe" type: none workingdir: collectors_cd/DOSBOX - - arguments: '-conf dosbox_tie.conf -conf dosbox_tie_single.conf -conf DOSBoxPreferences.conf -noconsole -c exit' + - arguments: "-conf dosbox_tie.conf -conf dosbox_tie_single.conf -conf DOSBoxPreferences.conf -noconsole -c exit" config: oslist: macos - description: 'Play STAR WARS™: TIE Fighter Classic' + description: "Play STAR WARS™: TIE Fighter Classic" executable: dosbox/DOSBox type: option1 - - arguments: '-conf dosbox_tiecd.conf -conf dosbox_tiecd_single.conf -conf DOSBoxPreferences.conf -noconsole -c exit' + - arguments: "-conf dosbox_tiecd.conf -conf dosbox_tiecd_single.conf -conf DOSBoxPreferences.conf -noconsole -c exit" config: oslist: macos - description: 'Play STAR WARS™: TIE Fighter Collector''s CD-ROM' + description: "Play STAR WARS™: TIE Fighter Collector's CD-ROM" executable: dosbox/DOSBox type: option2 -'355270': +"355270": installDir: 199X launch: - config: oslist: windows description: Launch executable: Game.exe -'355280': +"355280": installDir: Brave Furries launch: - config: @@ -172778,12 +169085,12 @@ executable: BraveFurries.exe type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: BraveFurries.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: BraveFurries.x86_64 type: default @@ -172791,15 +169098,15 @@ oslist: macos executable: BraveFurries.app type: default -'355310': +"355310": installDir: Blood Alloy Reborn launch: - config: oslist: windows executable: BloodAlloyRebornWindows.exe type: none -'355330': {} -'355350': +"355330": {} +"355350": installDir: Reign of Bullets launch: - config: @@ -172807,12 +169114,12 @@ description: Launch executable: RoB.exe - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: RoB.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: RoB.x86_64 @@ -172820,7 +169127,7 @@ oslist: macos description: Launch executable: RoB_Mac.app -'355370': +"355370": installDir: Vidar launch: - config: @@ -172833,11 +169140,11 @@ executable: Vidar.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: launch64 type: default -'355380': +"355380": installDir: Perfection of Wisdom launch: - config: @@ -172845,16 +169152,16 @@ description: Launch executable: POW-161111.exe type: none -'355400': +"355400": installDir: DieselGuns launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: VehicleGame.exe type: default -'355410': +"355410": installDir: Radium launch: - config: @@ -172869,7 +169176,7 @@ oslist: macos description: Launch executable: Radium.app -'355420': +"355420": installDir: Flamberge launch: - config: @@ -172886,27 +169193,27 @@ executable: flamberge.x86 type: none - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: flamberge.x86 -'355430': +"355430": installDir: Snowflake Tattoo launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: snowflaketattoo.exe -'355460': +"355460": installDir: Thunderbird launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: Thunderbird.exe type: vr -'355490': +"355490": installDir: Stratus launch: - config: @@ -172914,37 +169221,37 @@ description: Launch executable: stratus.exe type: default -'355510': +"355510": installDir: Crazy Belts launch: - config: oslist: windows description: Launch executable: CrazyBelts.exe -'355520': +"355520": installDir: The Albino Hunter launch: - config: oslist: windows description: Launch executable: Game.exe -'355530': +"355530": installDir: Last Word launch: - config: oslist: windows description: Launch executable: game.exe - - arguments: ./LastWord.amd64 + - arguments: "./LastWord.amd64" config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: steamshim/parent.amd64 type: none - - arguments: ./LastWord.x86 + - arguments: "./LastWord.x86" config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: steamshim/parent.x86 @@ -172955,14 +169262,14 @@ description: Launch executable: LastWord.app/Contents/MacOS/steamshim_parent type: none -'355560': +"355560": installDir: Trigger_Runners launch: - config: oslist: windows executable: Trigger_Runners.exe type: default -'355570': +"355570": installDir: enigmawindows launch: - config: @@ -172971,7 +169278,7 @@ executable: game.exe - executable: game.exe type: none -'355630': +"355630": installDir: Leo’s Fortune launch: - config: @@ -172983,8 +169290,8 @@ description: Launch executable: LeosFortune.app type: none -'355650': - installDir: Pirates vs Corsairs Davy Jones's Gold +"355650": + installDir: "Pirates vs Corsairs Davy Jones's Gold" launch: - config: oslist: windows @@ -172994,18 +169301,18 @@ oslist: macos description: Launch executable: PiratesVsCorsairs.app -'355670': +"355670": installDir: Puzzle Expedition launch: - config: oslist: windows description: Launch executable: PuzzleExpedition.exe -'355680': +"355680": installDir: Overland launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: Overland.exe @@ -173016,24 +169323,24 @@ executable: Overland.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: Overland.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Overland.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: Overland.exe type: default -'355690': +"355690": installDir: Deputy Dangle launch: - config: @@ -173048,38 +169355,38 @@ oslist: macos executable: DeputyDangle.app type: default -'355750': {} -'355760': +"355750": {} +"355760": installDir: Drizzlepath launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch - executable: Bin32\\GameSDK.exe + executable: "Bin32\\\\GameSDK.exe" - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch - executable: Bin64\\GameSDK.exe -'355790': + executable: "Bin64\\\\GameSDK.exe" +"355790": installDir: Styx Shards of Darkness launch: - - arguments: '-SaveToUserDir' + - arguments: "-SaveToUserDir" config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: Styx2.exe type: default -'355800': +"355800": installDir: Space Run Galaxy launch: - config: oslist: windows description: Launch executable: oSRGalaxyGame.exe -'355810': +"355810": installDir: Centauri Sector launch: - config: @@ -173094,7 +169401,7 @@ oslist: macos description: Launch executable: centaurisector.app -'355820': +"355820": installDir: FutureGrind launch: - config: @@ -173105,17 +169412,17 @@ - config: oslist: macos description: Launch Mac - executable: FutureGrind.app\\Contents\\MacOS\\FutureGrind + executable: "FutureGrind.app\\\\Contents\\\\MacOS\\\\FutureGrind" type: default -'355840': +"355840": installDir: Survarium launch: - config: oslist: windows description: Launch - executable: game\\binaries\\x64\\survarium_launcher.exe + executable: "game\\\\binaries\\\\x64\\\\survarium_launcher.exe" type: none -'355860': +"355860": installDir: Albino Lullaby launch: - config: @@ -173123,7 +169430,7 @@ description: Launch executable: AlbinoLullaby.exe type: default - - arguments: '-nointro -vr' + - arguments: "-nointro -vr" config: oslist: windows executable: AlbinoLullaby.exe @@ -173132,7 +169439,7 @@ betakey: episode2 executable: AlbinoLullabyEp2.exe type: none -'355910': +"355910": installDir: Piloteer launch: - config: @@ -173147,14 +169454,14 @@ oslist: linux description: Launch Piloteer executable: Piloteer.x86 -'355920': +"355920": installDir: Pixel Puzzles 2 Space launch: - config: oslist: windows executable: Pixel Puzzles 2 Space.exe type: default -'355970': +"355970": installDir: Home is Where One Starts launch: - config: @@ -173166,12 +169473,12 @@ description: Launch executable: HomeStarts_Mac.app - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: HomeStarts_Linux.x86_64 type: none -'355980': +"355980": installDir: Dungeon Warfare launch: - config: @@ -173183,23 +169490,23 @@ description: Launch executable: DungeonWarfare.app - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: DW.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: DW.x86_64 type: none -'3560': +"3560": installDir: Bejeweled Twist launch: - - arguments: ' ' + - arguments: " " executable: BejeweledTwist.exe -'35600': +"35600": installDir: Big Brain Wolf launch: - config: @@ -173208,7 +169515,7 @@ - config: oslist: macos executable: BigBrainWolf.app -'356000': +"356000": installDir: TheHeroOfKendrickstone launch: - config: @@ -173223,7 +169530,7 @@ oslist: linux description: Launch executable: TheHeroOfKendrickstone -'356040': +"356040": installDir: Sheltered launch: - config: @@ -173231,12 +169538,12 @@ description: Launch executable: Sheltered.exe - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch 32bit executable: Sheltered.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch 64bit executable: Sheltered.x86_64 @@ -173244,7 +169551,7 @@ oslist: macos description: Launch executable: Sheltered.app -'356050': +"356050": installDir: Beyond Eyes launch: - config: @@ -173256,16 +169563,16 @@ description: Launch executable: BeyondEyes.app - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch 32Bit executable: BeyondEyes.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch 64Bit executable: BeyondEyes.x86_64 -'356070': +"356070": installDir: Commander Cool 2 launch: - config: @@ -173280,7 +169587,7 @@ oslist: linux description: Launch executable: CommanderCool.x86 -'356090': +"356090": installDir: Machineers launch: - config: @@ -173295,7 +169602,7 @@ oslist: macos description: Launch executable: Machineers.app -'356100': +"356100": installDir: Fuego launch: - arguments: 162.243.31.164 30001 1 @@ -173310,14 +169617,14 @@ description: Launch executable: Fuego type: none -'356110': +"356110": installDir: Box Out! launch: - config: oslist: windows description: Launch executable: Box out-SCIENCE.exe -'356130': +"356130": installDir: Heroes Of Scene launch: - config: @@ -173332,15 +169639,15 @@ oslist: macos description: Heroes of Scene Launcher executable: HeroesOfScene.app -'356160': +"356160": installDir: The Emptiness Deluxe Edition launch: - description: Launch executable: TheEmptiness.exe -'356170': +"356170": installDir: Tile Rider launch: - - arguments: '-invertGamePadY' + - arguments: "-invertGamePadY" config: oslist: linux description: FullScreen @@ -173349,34 +169656,34 @@ oslist: windows description: FullScreen executable: TileRider.exe - - arguments: '-window -noantialis' + - arguments: "-window -noantialis" config: oslist: windows description: Safe Mode executable: TileRider.exe - - arguments: '-window -noantialis -invertGamePadY' + - arguments: "-window -noantialis -invertGamePadY" config: oslist: linux description: Safe Mode executable: TileRider -'356180': +"356180": installDir: Time Machine VR launch: - config: oslist: windows - executable: .\\Nautilus.exe + executable: ".\\\\Nautilus.exe" type: vr - workingdir: . -'356190': + workingdir: "." +"356190": installDir: ShadowOfWar launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: x64\\ShadowOfWar.exe + executable: "x64\\\\ShadowOfWar.exe" type: default - workingdir: x64\\ -'356200': + workingdir: "x64\\\\" +"356200": installDir: Keen Dreams launch: - config: @@ -173388,51 +169695,51 @@ executable: Keen Dreams.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: KDreams type: default -'356210': +"356210": installDir: Tony Tough launch: - - arguments: '--no-console -c \"scummvm-tonytough-opengl.ini\" tony-win' + - arguments: "--no-console -c \\\"scummvm-tonytough-opengl.ini\\\" tony-win" config: oslist: windows description: Launch - executable: ScummVM_Windows\\scummvm.exe - workingdir: ScummVM_Windows\\ - - arguments: '--no-console -c \"scummvm-tonytough-safe.ini\" tony-win' + executable: "ScummVM_Windows\\\\scummvm.exe" + workingdir: "ScummVM_Windows\\\\" + - arguments: "--no-console -c \\\"scummvm-tonytough-safe.ini\\\" tony-win" config: oslist: windows - description: Play in 'Safe Graphics' Mode - executable: ScummVM_Windows\\scummvm.exe + description: "Play in 'Safe Graphics' Mode" + executable: "ScummVM_Windows\\\\scummvm.exe" type: none - workingdir: ScummVM_Windows\\ - - arguments: '-c \"scummvm-tonytough-opengl.ini\" tony-win' + workingdir: "ScummVM_Windows\\\\" + - arguments: "-c \\\"scummvm-tonytough-opengl.ini\\\" tony-win" config: oslist: macos description: Launch - executable: ScummVM_Mac\\ScummVM.app\\Contents\\MacOS\\scummvm - workingdir: ScummVM_Mac\\ - - arguments: '-c \"scummvm-tonytough-safe.ini\" tony-win' + executable: "ScummVM_Mac\\\\ScummVM.app\\\\Contents\\\\MacOS\\\\scummvm" + workingdir: "ScummVM_Mac\\\\" + - arguments: "-c \\\"scummvm-tonytough-safe.ini\\\" tony-win" config: oslist: macos - description: Play in 'Safe Graphics' Mode - executable: ScummVM_Mac\\ScummVM.app\\Contents\\MacOS\\scummvm + description: "Play in 'Safe Graphics' Mode" + executable: "ScummVM_Mac\\\\ScummVM.app\\\\Contents\\\\MacOS\\\\scummvm" type: none - workingdir: ScummVM_Mac\\ + workingdir: "ScummVM_Mac\\\\" - config: oslist: linux description: Launch - executable: ScummVM_Linux\\launch_tonytough_opengl.sh - workingdir: ScummVM_Linux\\ + executable: "ScummVM_Linux\\\\launch_tonytough_opengl.sh" + workingdir: "ScummVM_Linux\\\\" - config: oslist: linux - description: Play in 'Safe Graphics' Mode - executable: ScummVM_Linux\\launch_tonytough_safe.sh + description: "Play in 'Safe Graphics' Mode" + executable: "ScummVM_Linux\\\\launch_tonytough_safe.sh" type: none - workingdir: ScummVM_Linux\\ -'356250': + workingdir: "ScummVM_Linux\\\\" +"356250": installDir: Gathering Sky launch: - config: @@ -173440,54 +169747,54 @@ description: Launch executable: GatheringSky.exe - config: - osarch: '64' + osarch: "64" oslist: macos description: Launch executable: GatheringSky.app/Contents/MacOS/GatheringSky - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: GatheringSky -'356260': +"356260": installDir: Stalingrad launch: - config: oslist: windows description: Launch executable: Game.exe -'356270': +"356270": installDir: CMC launch: - config: oslist: windows description: Launch executable: Game.exe -'356280': +"356280": installDir: DesertLaw launch: - config: oslist: windows description: Launch executable: Game.exe -'356290': +"356290": installDir: IceCrusade launch: - config: oslist: windows description: Launch executable: Game.exe -'356310': +"356310": installDir: METAL SLUG DEFENSE launch: - config: oslist: windows description: Launch executable: msdf-steam.exe -'356330': +"356330": installDir: Dragomon Hunter launch: - - arguments: '-steam' + - arguments: "-steam" config: oslist: windows description: LIVE builds branch @@ -173499,7 +169806,7 @@ description: TEST builds branch executable: DSUS_Steam_Test_Login.bat type: option1 -'356370': +"356370": installDir: Soccer Manager 2015 launch: - config: @@ -173510,26 +169817,26 @@ oslist: macos description: Launch executable: Soccer Manager 2015.app -'356380': +"356380": installDir: Orbit launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: orbit.exe - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: orbit.exe - config: - osarch: '64' + osarch: "64" oslist: macos description: OSX 64-bit executable: orbit.app - config: - osarch: '32' + osarch: "32" oslist: macos description: OSX 32-bit executable: orbit.app @@ -173537,7 +169844,7 @@ oslist: linux executable: nw type: default -'356390': +"356390": installDir: The Slaughter Act One launch: - config: @@ -173552,36 +169859,36 @@ oslist: macos executable: theslaughteractone.app type: default -'356400': +"356400": installDir: Thumper launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Thumper executable: THUMPER_win8.exe type: option1 - - arguments: '-openvr' + - arguments: "-openvr" config: - osarch: '64' + osarch: "64" oslist: windows description: Thumper executable: THUMPER_win8.exe type: vr - - arguments: '-oculus' + - arguments: "-oculus" config: - osarch: '64' + osarch: "64" oslist: windows description: Thumper executable: THUMPER_win8.exe type: othervr - config: - osarch: '64' + osarch: "64" oslist: windows description: Thumper DX9 legacy mode executable: THUMPER_dx9.exe type: option1 -'356420': +"356420": installDir: Interloper Game launch: - config: @@ -173596,31 +169903,31 @@ oslist: linux description: Launch executable: Interloper -'356430': +"356430": installDir: Locomotion launch: - config: oslist: windows description: Launch executable: Loco.exe -'356450': +"356450": installDir: Creature Romances launch: - config: oslist: windows - executable: Kokonoe\\kokonoe.exe + executable: "Kokonoe\\\\kokonoe.exe" type: default - config: oslist: linux - executable: Kokonoe\\kokonoe.x86 + executable: "Kokonoe\\\\kokonoe.x86" type: default - config: oslist: macos - executable: Kokonoe\\Kokonoe.app + executable: "Kokonoe\\\\Kokonoe.app" type: default nameLocalized: japanese: リーチャーと恋しよっ! ここのえこころ -'356460': +"356460": installDir: DriveDriveDrive launch: - config: @@ -173632,7 +169939,7 @@ oslist: macos executable: DriveDriveDrive.app type: none -'356500': +"356500": installDir: STAR WARS - Galactic Battlegrounds Saga launch: - arguments: xlogo1.avi xintro.avi battlegrounds_x1.exe @@ -173640,14 +169947,14 @@ executable: Game/player.exe type: none workingdir: Game -'356510': +"356510": installDir: Soccer Rage launch: - config: oslist: windows description: Launch executable: soccer_rage.exe -'356520': +"356520": installDir: Port of Call launch: - config: @@ -173658,7 +169965,7 @@ oslist: macos description: Launch executable: PortOfCall.app -'356530': +"356530": installDir: The Royal Trap launch: - config: @@ -173673,7 +169980,7 @@ oslist: windows description: Launch executable: The Royal Trap HD.exe -'356540': +"356540": installDir: East Tower - Takashi launch: - config: @@ -173686,7 +169993,7 @@ executable: East Tower - Takashi.app nameLocalized: japanese: イーストタワー・タカシ編(シリーズ Vol.2) -'356550': +"356550": installDir: East Tower - Kuon launch: - config: @@ -173699,7 +170006,7 @@ executable: East Tower - Kuon.app nameLocalized: japanese: イーストタワー・クオン編(シリーズ Vol.3) -'356560': +"356560": installDir: East Tower - Kurenai launch: - config: @@ -173712,7 +170019,7 @@ executable: East Tower - Kurenai.app nameLocalized: japanese: イーストタワー・紅編(シリーズ Vol.4) -'356570': +"356570": installDir: Party Hard launch: - config: @@ -173723,19 +170030,19 @@ oslist: macos executable: PartyHardGame.app type: none - - arguments: '-force-opengl' + - arguments: "-force-opengl" config: - osarch: '32' + osarch: "32" oslist: linux executable: PartyHardGame.x86 type: none - - arguments: '-force-opengl' + - arguments: "-force-opengl" config: - osarch: '64' + osarch: "64" oslist: linux executable: PartyHardGame.x86_64 type: none -'356580': +"356580": installDir: Aerannis launch: - config: @@ -173744,18 +170051,16 @@ type: none - config: oslist: macos - executable: Aerannis.app\\Contents\\MacOS\\love + executable: "Aerannis.app\\\\Contents\\\\MacOS\\\\love" type: none -'356650': - installDir: Death's Gambit +"356650": + installDir: "Death's Gambit" launch: - description: Launch Original game - description_loc: - english: Launch Original game executable: deathsgambit397.exe type: none -'356670': - installDir: Spooky's House of Jump Scares +"356670": + installDir: "Spooky's House of Jump Scares" launch: - config: oslist: windows @@ -173764,26 +170069,26 @@ type: none - config: oslist: windows - ownsdlc: '414150' + ownsdlc: "414150" description: Karamari Hospital - executable: Karamari_Hospital\\KH.exe + executable: "Karamari_Hospital\\\\KH.exe" type: none - workingdir: Karamari_Hospital\\ + workingdir: "Karamari_Hospital\\\\" - config: oslist: windows - ownsdlc: '1390840' + ownsdlc: "1390840" description: The Doll House - executable: The_Doll_House\\SDH.exe + executable: "The_Doll_House\\\\SDH.exe" type: none - workingdir: The_Doll_House\\ -'356710': + workingdir: "The_Doll_House\\\\" +"356710": installDir: Band of Drones launch: - config: oslist: windows description: Launch executable: BandOfDrones.bat -'356730': +"356730": installDir: The Hole Story launch: - config: @@ -173799,18 +170104,18 @@ description: Launch executable: TheHoleStory.x86 type: default -'356770': +"356770": installDir: AstronautSimulator launch: - config: oslist: windows description: Launch executable: AstronautSimulator.exe -'356790': +"356790": installDir: Galacide launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: Galacide.exe @@ -173819,11 +170124,11 @@ description: Launch executable: Galacide/Binaries/Linux/Galacide-Linux-Shipping - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: Galacide/Binaries/Win32/Galacide.exe -'356800': +"356800": installDir: ChoiceOfThePetalThrone launch: - config: @@ -173838,21 +170143,21 @@ oslist: macos description: Launch executable: Choice of the Petal Throne.app/Contents/MacOS/Choice of the Petal Throne -'356820': +"356820": installDir: NemoDungeon launch: - config: oslist: windows executable: NemoDungeon.exe type: default -'356870': +"356870": installDir: Devoured Time_Data launch: - config: oslist: windows description: Launch executable: Devoured Time.exe -'356880': +"356880": installDir: Eron launch: - config: @@ -173863,7 +170168,7 @@ oslist: linux description: Launch executable: eron.x86 -'356890': +"356890": installDir: One More Line launch: - config: @@ -173875,45 +170180,45 @@ description: Play executable: OneMoreLine.app - config: - osarch: '32' + osarch: "32" oslist: linux description: Play executable: OneMoreLine.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Play executable: OneMoreLine.x86_64 -'356910': +"356910": installDir: Battle Fantasia Revised Edition launch: - config: oslist: windows description: Launch executable: QtLauncher.exe -'3570': +"3570": installDir: Mystery PI - The New York Fortune launch: - executable: MysteryPINewYork.exe -'35700': +"35700": installDir: Trine launch: - config: oslist: windows - executable: _enchanted_edition_\\trine1_launcher.exe + executable: "_enchanted_edition_\\\\trine1_launcher.exe" workingdir: _enchanted_edition_ - config: oslist: macos - executable: _enchanted_edition_\\trine1.app + executable: "_enchanted_edition_\\\\trine1.app" - config: oslist: linux - executable: _enchanted_edition_\\trine1.sh + executable: "_enchanted_edition_\\\\trine1.sh" workingdir: _enchanted_edition_ -'357010': +"357010": installDir: The Collider 2 launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: TheCollider2.exe @@ -173923,16 +170228,16 @@ executable: DontCollide/Binaries/Linux/TheCollider2 type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: TheCollider2.exe type: vr - config: - osarch: '64' + osarch: "64" oslist: windows executable: TheCollider2.exe type: othervr -'357030': +"357030": installDir: Excubitor launch: - config: @@ -173946,18 +170251,18 @@ executable: Excubitor.app type: none - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch Linux x86 executable: Excubitor.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch Linux x64 executable: Excubitor.x86_64 type: none -'357070': +"357070": installDir: UBERMOSH launch: - config: @@ -173970,7 +170275,7 @@ description: Launch executable: run.sh type: default -'357120': +"357120": installDir: BigActionMegaFight launch: - config: @@ -173981,14 +170286,14 @@ oslist: macos executable: BigActionMegaFight.app type: default -'357190': +"357190": installDir: ULTIMATE MARVEL VS. CAPCOM 3 launch: - config: oslist: windows executable: umvc3.exe type: default -'35720': +"35720": installDir: Trine 2 launch: - config: @@ -174000,14 +170305,14 @@ - config: oslist: linux executable: trine2.sh -'357200': +"357200": installDir: 500Years launch: - config: oslist: windows description: Launch executable: 500Years.exe -'357280': +"357280": installDir: Alter World launch: - description: Launch @@ -174018,33 +170323,33 @@ description: Launch executable: AlterWorld.app - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: AlterWorld.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: AlterWorld.x86_64 - config: - osarch: '32' + osarch: "32" oslist: linux description: Play executable: AlterWorld.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Play executable: AlterWorld.x86_64 -'357290': +"357290": installDir: Red Lake launch: - config: oslist: windows description: Launch executable: Red Lake.exe -'357300': +"357300": installDir: Snakebird launch: - config: @@ -174059,103 +170364,103 @@ oslist: macos description: Launch executable: Snakebird.app -'357310': +"357310": installDir: Oriental Empires launch: - config: oslist: windows executable: Oriental Empires.exe type: default -'357320': +"357320": installDir: Break_In launch: - config: oslist: windows description: Launch executable: game.exe -'357330': +"357330": installDir: Space Beast Terror Fright launch: - config: oslist: windows description: Launch executable: sbtf_pub.exe -'357340': +"357340": installDir: Cobalt launch: - - arguments: '-bundle-dir bundle' + - arguments: "-bundle-dir bundle" config: oslist: windows description: Launch executable: cobalt.exe type: default - - arguments: '-dev -editor -appstate steam' + - arguments: "-dev -editor -appstate steam" config: oslist: windows description: Cobalt Map Editor executable: CobaltDM.exe type: editor -'357370': +"357370": installDir: Return NULL - Episode 1 launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: Return NULL - Episode 1.exe - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: Return NULL - Episode 1.exe - config: - osarch: '32' + osarch: "32" oslist: macos description: Launch executable: Return NULL - Episode 1.app - config: - osarch: '64' + osarch: "64" oslist: macos description: Launch executable: Return NULL - Episode 1.app - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: returnnullep1 type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: returnnullep1 type: default -'357480': +"357480": installDir: Frozen Free Fall - Snowball Fight launch: - config: oslist: windows description: Launch executable: FFFE.exe -'357490': +"357490": installDir: Astroloco1 launch: - config: oslist: windows - description: 'Launch Astroloco: Worst Contact' + description: "Launch Astroloco: Worst Contact" executable: AstroLoco1.exe - config: oslist: windows - description: 'Configure Astroloco: Worst Contact' + description: "Configure Astroloco: Worst Contact" executable: winsetup.exe -'357500': +"357500": installDir: RumbleFighter launch: - config: oslist: windows executable: RFstl.exe type: default -'357600': +"357600": installDir: Unium launch: - config: @@ -174163,7 +170468,7 @@ description: Launch executable: unium.exe - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: Unium.x86 @@ -174172,11 +170477,11 @@ description: Launch executable: Unium.app - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Unium.x86_64 -'357650': +"357650": installDir: Project Explore launch: - config: @@ -174200,45 +170505,45 @@ description: Ubuntu executable: runner type: none -'357670': +"357670": installDir: Home Improvisation launch: - - arguments: '-vrmode None' + - arguments: "-vrmode None" config: oslist: windows description: Home Improvisation (non-VR) executable: homeimprov.exe type: option1 - - arguments: '-vrmode None' + - arguments: "-vrmode None" config: oslist: macos description: Launch executable: homeimprov.app type: none - - arguments: '-vrmode None' + - arguments: "-vrmode None" config: oslist: linux description: Launch executable: homeimprov.x86 type: none - - arguments: '-vrmode OpenVR' + - arguments: "-vrmode OpenVR" config: oslist: windows description: Home Improvisation executable: homeimprov.exe type: vr - - arguments: '-vrmode Oculus' + - arguments: "-vrmode Oculus" config: oslist: windows description: Home Improvisation executable: homeimprov.exe type: othervr -'357690': +"357690": installDir: APT launch: - description: Launch executable: APT_AlphaDemo.exe -'357700': +"357700": installDir: SpaceSluggers launch: - config: @@ -174252,16 +170557,16 @@ executable: RogueContinuum.app type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: RogueContinuum.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: RogueContinuum.x86_64 type: none -'357720': +"357720": installDir: Inside My Radio launch: - config: @@ -174270,23 +170575,23 @@ executable: InsideMyRadio.exe - description: Configure executable: LaunchConfig.exe -'357750': +"357750": installDir: Damn virgins launch: - - arguments: '-seekfreeloading -simmobileinput' + - arguments: "-seekfreeloading -simmobileinput" config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: Binaries/Win32/UDK.exe - - arguments: '-seekfreeloading -simmobileinput' + - arguments: "-seekfreeloading -simmobileinput" config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: Binaries/Win64/UDK.exe -'357770': {} -'357780': +"357770": {} +"357780": installDir: DYL launch: - config: @@ -174301,28 +170606,28 @@ oslist: linux description: Launch executable: dyl.x86 -'357830': +"357830": installDir: Attack of the Labyrinth launch: - config: oslist: windows description: Launch executable: AotL.exe -'357840': +"357840": installDir: ZombieCamp launch: - config: oslist: windows description: Launch executable: ZombieCamp.exe -'357890': +"357890": installDir: Vortex_Attack launch: - config: oslist: windows description: Launch executable: VortexAttack.exe -'357900': +"357900": installDir: Make it indie! launch: - config: @@ -174334,29 +170639,29 @@ description: Launch executable: MII.app - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: MII.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: MII.x86_64 -'357910': +"357910": installDir: QuestEvent launch: - description: Start QuestEvent executable: Game.exe -'357920': +"357920": installDir: Final Strike launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: FinalStrike_SteamVR.exe type: vr -'357930': +"357930": installDir: ROOTS launch: - config: @@ -174368,19 +170673,19 @@ oslist: linux executable: roots type: none -'357940': +"357940": installDir: Telepath Tactics launch: - config: oslist: windows description: Launch executable: Telepath Tactics.exe -'3580': +"3580": installDir: The Wizards Pen launch: - - arguments: ' ' + - arguments: " " executable: wizardspen.exe -'35800': +"35800": installDir: Brainpipe launch: - config: @@ -174389,7 +170694,7 @@ - config: oslist: macos executable: Brainpipe.app -'358000': +"358000": installDir: The Curse of Nordic Cove launch: - config: @@ -174404,7 +170709,7 @@ oslist: linux description: Launch executable: TheCurseOfNordicCove -'358030': +"358030": installDir: Another Star launch: - config: @@ -174419,7 +170724,7 @@ oslist: macos description: Launch executable: AnotherStar.app -'358070': +"358070": installDir: Earthtongue launch: - config: @@ -174430,22 +170735,22 @@ oslist: macos description: Launch executable: Earthtongue.app -'358080': +"358080": installDir: No Turning Back The Pixel Art Action-Adventure Roguelike launch: - config: oslist: windows description: Launch executable: game.exe -'358090': - installDir: D4 Dark Dreams Don't Die +"358090": + installDir: "D4 Dark Dreams Don't Die" launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch - executable: .\\D4.exe -'358130': + executable: ".\\\\D4.exe" +"358130": installDir: The Curious Expedition launch: - config: @@ -174454,15 +170759,15 @@ executable: The Curious Expedition.exe type: none - config: - osarch: '64' + osarch: "64" oslist: macos description: Launch - executable: ./run_app.sh + executable: "./run_app.sh" type: none - config: oslist: linux description: Launch - executable: ./The Curious Expedition + executable: "./The Curious Expedition" type: none - config: betakey: xp_vista @@ -174473,443 +170778,443 @@ nameLocalized: schinese: 奇妙探险队 Curious Expedition tchinese: 奇妙探险队 Curious Expedition -'358170': +"358170": installDir: Arctic Adventure launch: - - arguments: '-conf \"..\\Artic.conf\" -noconsole -c' + - arguments: "-conf \\\"..\\\\Artic.conf\\\" -noconsole -c" config: oslist: windows description: Launch - executable: Artic adventure\\dosbox\\dosbox.exe - workingdir: Artic adventure\\dosbox\\ + executable: "Artic adventure\\\\dosbox\\\\dosbox.exe" + workingdir: "Artic adventure\\\\dosbox\\\\" - config: oslist: macos description: Launch executable: Artic Adventure.app - - arguments: '-conf \"..\\ARTIC.conf\" -noconsole -c' + - arguments: "-conf \\\"..\\\\ARTIC.conf\\\" -noconsole -c" config: oslist: linux description: Launch - executable: Dosbox\\dosbox.exe - workingdir: Dosbox\\ -'358180': + executable: "Dosbox\\\\dosbox.exe" + workingdir: "Dosbox\\\\" +"358180": installDir: Bio Menace launch: - - arguments: '-conf \"..\\BMENACE.conf\" -noconsole -c' + - arguments: "-conf \\\"..\\\\BMENACE.conf\\\" -noconsole -c" config: oslist: windows description: Launch - executable: Bio menace\\dosbox\\dosbox.exe - workingdir: Bio menace\\dosbox + executable: "Bio menace\\\\dosbox\\\\dosbox.exe" + workingdir: "Bio menace\\\\dosbox" - config: oslist: macos description: Launch executable: Bio Menace.app - - arguments: '-conf \"..\\BMENACE.conf\" -noconsole -c' + - arguments: "-conf \\\"..\\\\BMENACE.conf\\\" -noconsole -c" config: oslist: linux description: Launch - executable: Dosbox\\dosbox - workingdir: Dosbox\\ -'358190': + executable: "Dosbox\\\\dosbox" + workingdir: "Dosbox\\\\" +"358190": installDir: Blake Stone Aliens of Gold launch: - - arguments: '-conf \"..\\BSAOG.conf\" -noconsole -c' + - arguments: "-conf \\\"..\\\\BSAOG.conf\\\" -noconsole -c" config: oslist: windows description: Launch - executable: Blake Stone - Aliens of Gold\\dosbox\\dosbox.exe - workingdir: Blake Stone - Aliens of Gold\\dosbox\\ + executable: "Blake Stone - Aliens of Gold\\\\dosbox\\\\dosbox.exe" + workingdir: "Blake Stone - Aliens of Gold\\\\dosbox\\\\" - config: oslist: macos description: Launch executable: Blake Stone AOG.app - - arguments: '-conf \"..\\BSAOG.conf\" -noconsole -c' + - arguments: "-conf \\\"..\\\\BSAOG.conf\\\" -noconsole -c" config: oslist: linux description: Launch - executable: Dosbox\\dosbox - workingdir: Dosbox\\ -'358200': + executable: "Dosbox\\\\dosbox" + workingdir: "Dosbox\\\\" +"358200": installDir: Math Rescue launch: - - arguments: '-conf \"..\\MATH.conf\" -noconsole -c' + - arguments: "-conf \\\"..\\\\MATH.conf\\\" -noconsole -c" config: oslist: windows description: Launch - executable: Math Rescue\\dosbox\\dosbox.exe - workingdir: Math Rescue\\dosbox\\ + executable: "Math Rescue\\\\dosbox\\\\dosbox.exe" + workingdir: "Math Rescue\\\\dosbox\\\\" - config: oslist: macos description: Launch executable: Math Rescue.app - - arguments: '-conf \"..\\MATH.conf\" -noconsole -c' + - arguments: "-conf \\\"..\\\\MATH.conf\\\" -noconsole -c" config: oslist: linux description: Launch - executable: Dosbox\\dosbox - workingdir: Dosbox\\ -'358210': + executable: "Dosbox\\\\dosbox" + workingdir: "Dosbox\\\\" +"358210": installDir: Monster Bash launch: - - arguments: '-conf \"..\\MBASH.conf\" -noconsole -c' + - arguments: "-conf \\\"..\\\\MBASH.conf\\\" -noconsole -c" config: oslist: windows description: Launch - executable: Monster Bash\\dosbox\\dosbox.exe - workingdir: Monster Bash\\dosbox\\ + executable: "Monster Bash\\\\dosbox\\\\dosbox.exe" + workingdir: "Monster Bash\\\\dosbox\\\\" - config: oslist: macos description: Launch executable: Monster Bash.app - - arguments: Monster Bash\\ + - arguments: "Monster Bash\\\\" config: oslist: linux description: Launch - executable: Dosbox\\dosbox - workingdir: Dosbox\\ -'358220': + executable: "Dosbox\\\\dosbox" + workingdir: "Dosbox\\\\" +"358220": installDir: Mystic Towers launch: - - arguments: '-conf \"..\\TOWERS.conf\" -noconsole -c' + - arguments: "-conf \\\"..\\\\TOWERS.conf\\\" -noconsole -c" config: oslist: windows description: Launch - executable: Mystic Towers\\dosbox\\dosbox.exe - workingdir: Mystic Towers\\dosbox\\ + executable: "Mystic Towers\\\\dosbox\\\\dosbox.exe" + workingdir: "Mystic Towers\\\\dosbox\\\\" - config: oslist: macos description: Launch executable: Mystic Towers.app - - arguments: '-conf \"..\\TOWERS.conf\" -noconsole -c' + - arguments: "-conf \\\"..\\\\TOWERS.conf\\\" -noconsole -c" config: oslist: linux description: Launch - executable: Dosbox\\dosbox.app - workingdir: Dosbox\\ -'358230': + executable: "Dosbox\\\\dosbox.app" + workingdir: "Dosbox\\\\" +"358230": installDir: Paganitzu launch: - - arguments: '-conf \"..\\PAGA.conf\" -noconsole -c' + - arguments: "-conf \\\"..\\\\PAGA.conf\\\" -noconsole -c" config: oslist: windows description: Launch - executable: Paganitzu\\Dosbox\\dosbox.exe - workingdir: Paganitzu\\dosbox\\ + executable: "Paganitzu\\\\Dosbox\\\\dosbox.exe" + workingdir: "Paganitzu\\\\dosbox\\\\" - config: oslist: macos description: Launch executable: Paganitzu.app - - arguments: '-conf \"..\\PAGA.conf\" -noconsole -c' + - arguments: "-conf \\\"..\\\\PAGA.conf\\\" -noconsole -c" config: oslist: linux description: Launch - executable: Dosbox\\dosbox - workingdir: Dosbox\\ -'358240': + executable: "Dosbox\\\\dosbox" + workingdir: "Dosbox\\\\" +"358240": installDir: Monuments of Mars launch: - - arguments: '-conf \"..\\MARS.conf\" -noconsole -c' + - arguments: "-conf \\\"..\\\\MARS.conf\\\" -noconsole -c" config: oslist: windows description: Launch - executable: Monuments of Mars\\dosbox\\dosbox.exe - workingdir: Monuments of Mars\\dosbox\\ + executable: "Monuments of Mars\\\\dosbox\\\\dosbox.exe" + workingdir: "Monuments of Mars\\\\dosbox\\\\" - config: oslist: macos description: Launch executable: Monuments of Mars.app - - arguments: '-conf \"..\\MARS.conf\" -noconsole -c' + - arguments: "-conf \\\"..\\\\MARS.conf\\\" -noconsole -c" config: oslist: linux description: Launch - executable: Dosbox\\dosbox - workingdir: Dosbox\\ -'358250': - installDir: Cosmo's Cosmic Adventure + executable: "Dosbox\\\\dosbox" + workingdir: "Dosbox\\\\" +"358250": + installDir: "Cosmo's Cosmic Adventure" launch: - - arguments: '-conf \"..\\COSMO.conf\" -noconsole -c' + - arguments: "-conf \\\"..\\\\COSMO.conf\\\" -noconsole -c" config: oslist: windows description: Launch - executable: Cosmo Cosmic Adventure\\dosbox\\dosbox.exe - workingdir: Cosmo Cosmic Adventure\\dosbox\\ + executable: "Cosmo Cosmic Adventure\\\\dosbox\\\\dosbox.exe" + workingdir: "Cosmo Cosmic Adventure\\\\dosbox\\\\" - config: oslist: macos description: Launch executable: Cosmo Cosmic Adventure.app - - arguments: '-conf \"..\\COSMO.conf\" -noconsole -c' + - arguments: "-conf \\\"..\\\\COSMO.conf\\\" -noconsole -c" config: oslist: linux description: Launch - executable: Dosbox\\dosbox - workingdir: Dosbox\\ -'358260': + executable: "Dosbox\\\\dosbox" + workingdir: "Dosbox\\\\" +"358260": installDir: Crystal Caves launch: - - arguments: '-conf \"..\\CRYSTAL.conf\" -noconsole -c' + - arguments: "-conf \\\"..\\\\CRYSTAL.conf\\\" -noconsole -c" config: oslist: windows description: Launch - executable: Crystal Caves\\dosbox\\dosbox.exe - workingdir: Crystal Caves\\dosbox\\ + executable: "Crystal Caves\\\\dosbox\\\\dosbox.exe" + workingdir: "Crystal Caves\\\\dosbox\\\\" - config: oslist: macos description: Launch executable: Crystal Caves.app - - arguments: '-conf \"..\\CRYSTAL.conf\" -noconsole -c' + - arguments: "-conf \\\"..\\\\CRYSTAL.conf\\\" -noconsole -c" config: oslist: linux description: Launch - executable: Dosbox\\dosbox - workingdir: Dosbox\\ -'358270': + executable: "Dosbox\\\\dosbox" + workingdir: "Dosbox\\\\" +"358270": installDir: Death Rally launch: - config: oslist: windows description: Launch - executable: Death Rally\\dr.exe - workingdir: Death Rally\\ + executable: "Death Rally\\\\dr.exe" + workingdir: "Death Rally\\\\" - config: oslist: macos description: Launch executable: Death Rally.app - - arguments: '-conf \"..\\Death.conf\" -noconsole -c' + - arguments: "-conf \\\"..\\\\Death.conf\\\" -noconsole -c" config: oslist: linux description: Launch - executable: Dosbox\\dosbox - workingdir: Dosbox\\ -'358280': + executable: "Dosbox\\\\dosbox" + workingdir: "Dosbox\\\\" +"358280": installDir: Alien Carnage Halloween Harry launch: - - arguments: '-conf \"..\\Carnage.conf\" -noconsole -c' + - arguments: "-conf \\\"..\\\\Carnage.conf\\\" -noconsole -c" config: oslist: windows description: Launch - executable: Alien Carnage\\Dosbox\\dosbox.exe - workingdir: Alien Carnage\\Dosbox\\ + executable: "Alien Carnage\\\\Dosbox\\\\dosbox.exe" + workingdir: "Alien Carnage\\\\Dosbox\\\\" - config: oslist: macos description: Launch executable: Alien Carnage.app - - arguments: '-conf \"..\\CARNAGE.conf\" -noconsole -c' + - arguments: "-conf \\\"..\\\\CARNAGE.conf\\\" -noconsole -c" config: oslist: linux description: Launch - executable: Dosbox\\dosbox - workingdir: Dosbox\\ -'358290': + executable: "Dosbox\\\\dosbox" + workingdir: "Dosbox\\\\" +"358290": installDir: Hocus Pocus launch: - - arguments: '-conf \"..\\HOCUS.conf\" -noconsole -c' + - arguments: "-conf \\\"..\\\\HOCUS.conf\\\" -noconsole -c" config: oslist: windows description: Launch - executable: Hocus Pocus\\dosbox\\dosbox.exe - workingdir: Hocus Pocus\\dosbox\\ + executable: "Hocus Pocus\\\\dosbox\\\\dosbox.exe" + workingdir: "Hocus Pocus\\\\dosbox\\\\" - config: oslist: macos description: Launch executable: Hocus Pocus.app - - arguments: '-conf \"..\\HOCUS.conf\" -noconsole -c' + - arguments: "-conf \\\"..\\\\HOCUS.conf\\\" -noconsole -c" config: oslist: linux description: Launch - executable: Dosbox\\dosbox - workingdir: Dosbox\\ -'358300': + executable: "Dosbox\\\\dosbox" + workingdir: "Dosbox\\\\" +"358300": installDir: Major Stryker launch: - - arguments: '-conf \"..\\STRYKER.conf\" -noconsole -c' + - arguments: "-conf \\\"..\\\\STRYKER.conf\\\" -noconsole -c" config: oslist: windows description: Launch - executable: Major Stryker\\dosbox\\dosbox.exe - workingdir: Major Stryker\\dosbox\\ + executable: "Major Stryker\\\\dosbox\\\\dosbox.exe" + workingdir: "Major Stryker\\\\dosbox\\\\" - config: oslist: macos description: Launch executable: Major Stryker.app - - arguments: '-conf \"..\\STRYKER.conf\" -noconsole -c' + - arguments: "-conf \\\"..\\\\STRYKER.conf\\\" -noconsole -c" config: oslist: linux description: Launch - executable: Dosbox\\dosbox - workingdir: Dosbox\\ -'358310': + executable: "Dosbox\\\\dosbox" + workingdir: "Dosbox\\\\" +"358310": installDir: Blake Stone Planet Strike launch: - - arguments: '-conf \"..\\BSPS.conf\" -noconsole -c' + - arguments: "-conf \\\"..\\\\BSPS.conf\\\" -noconsole -c" config: oslist: windows description: Launch - executable: Blake Stone - Planet Strike\\dosbox\\dosbox.exe - workingdir: Blake Stone - Planet Strike\\dosbox\\ + executable: "Blake Stone - Planet Strike\\\\dosbox\\\\dosbox.exe" + workingdir: "Blake Stone - Planet Strike\\\\dosbox\\\\" - config: oslist: macos description: Launch executable: Blake Stone PS.app - - arguments: '-conf \"..\\BSPS.conf\" -noconsole -c' + - arguments: "-conf \\\"..\\\\BSPS.conf\\\" -noconsole -c" config: oslist: linux description: Launch - executable: Dosbox\\dosbox.exe - workingdir: Dosbox\\ -'358320': + executable: "Dosbox\\\\dosbox.exe" + workingdir: "Dosbox\\\\" +"358320": installDir: Realms of Chaos launch: - - arguments: '-conf \"..\\CHAOS.conf\" -noconsole -c' + - arguments: "-conf \\\"..\\\\CHAOS.conf\\\" -noconsole -c" config: oslist: windows description: Launch - executable: Realms of Chaos\\dosbox\\dosbox.exe - workingdir: Realms of Chaos\\dosbox\\ + executable: "Realms of Chaos\\\\dosbox\\\\dosbox.exe" + workingdir: "Realms of Chaos\\\\dosbox\\\\" - config: oslist: macos description: Launch executable: Realms of Chaos.app - - arguments: '-conf \"..\\CHAOS.conf\" -noconsole -c' + - arguments: "-conf \\\"..\\\\CHAOS.conf\\\" -noconsole -c" config: oslist: linux description: Launch - executable: Dosbox\\dosbox - workingdir: Dosbox\\ -'358330': - installDir: Pharaoh's Tomb + executable: "Dosbox\\\\dosbox" + workingdir: "Dosbox\\\\" +"358330": + installDir: "Pharaoh's Tomb" launch: - - arguments: '-conf \"..\\TOMB.conf\" -noconsole -c' + - arguments: "-conf \\\"..\\\\TOMB.conf\\\" -noconsole -c" config: oslist: windows description: Launch - executable: Pharaoh's tomb\\dosbox\\dosbox.exe - workingdir: Pharaoh's tomb\\dosbox\\ + executable: "Pharaoh's tomb\\\\dosbox\\\\dosbox.exe" + workingdir: "Pharaoh's tomb\\\\dosbox\\\\" - config: oslist: macos description: Launch - executable: Pharaoh's Tomb.app - - arguments: '-conf \"..\\TOMB.conf\" -noconsole -c' + executable: "Pharaoh's Tomb.app" + - arguments: "-conf \\\"..\\\\TOMB.conf\\\" -noconsole -c" config: oslist: linux description: Launch - executable: Dosbox\\dosbox - workingdir: Dosbox\\ -'358340': + executable: "Dosbox\\\\dosbox" + workingdir: "Dosbox\\\\" +"358340": installDir: Word Rescue launch: - - arguments: '-conf \"..\\WORD.conf\" -noconsole -c' + - arguments: "-conf \\\"..\\\\WORD.conf\\\" -noconsole -c" config: oslist: windows description: Launch - executable: Word Rescue\\dosbox\\dosbox.exe - workingdir: Word Rescue\\dosbox\\ + executable: "Word Rescue\\\\dosbox\\\\dosbox.exe" + workingdir: "Word Rescue\\\\dosbox\\\\" - config: oslist: macos description: Launch executable: Word Rescue.app - - arguments: '-conf \"..\\WORD.conf\" -noconsole -c' + - arguments: "-conf \\\"..\\\\WORD.conf\\\" -noconsole -c" config: oslist: linux description: Launch - executable: Dosbox\\dosbox - workingdir: Dosbox\\ -'358350': + executable: "Dosbox\\\\dosbox" + workingdir: "Dosbox\\\\" +"358350": installDir: Secret Agent launch: - - arguments: '-conf \"..\\Agent.conf\" -noconsole -c' + - arguments: "-conf \\\"..\\\\Agent.conf\\\" -noconsole -c" config: oslist: windows description: Launch - executable: Secret Agent\\dosbox\\dosbox.exe - workingdir: Secret Agent\\dosbox\\ + executable: "Secret Agent\\\\dosbox\\\\dosbox.exe" + workingdir: "Secret Agent\\\\dosbox\\\\" - config: oslist: macos description: Launch executable: Secret Agent.app - - arguments: osbox\\dosbox.exe + - arguments: "osbox\\\\dosbox.exe" config: oslist: linux description: Launch - executable: Dosbox\\dosbox - workingdir: Dosbox\\ -'358360': + executable: "Dosbox\\\\dosbox" + workingdir: "Dosbox\\\\" +"358360": installDir: Raptor Call of the Shadows launch: - - arguments: '-conf \"..\\RAPTOR.conf\" -noconsole -c' + - arguments: "-conf \\\"..\\\\RAPTOR.conf\\\" -noconsole -c" config: oslist: windows description: Launch - executable: Raptor - Call of the Shadows\\dosbox\\dosbox.exe - workingdir: Raptor - Call of the Shadows\\dosbox\\ + executable: "Raptor - Call of the Shadows\\\\dosbox\\\\dosbox.exe" + workingdir: "Raptor - Call of the Shadows\\\\dosbox\\\\" - config: oslist: macos description: Launch executable: Raptor Call of the Shadows.app - - arguments: '-conf \"..\\RAPTOR.conf\" -noconsole -c' + - arguments: "-conf \\\"..\\\\RAPTOR.conf\\\" -noconsole -c" config: oslist: linux description: Launch - executable: Dosbox\\dosbox - workingdir: Dosbox\\ -'358370': + executable: "Dosbox\\\\dosbox" + workingdir: "Dosbox\\\\" +"358370": installDir: Terminal Velocity launch: - - arguments: '-conf \"..\\TV.conf\" -noconsole -c' + - arguments: "-conf \\\"..\\\\TV.conf\\\" -noconsole -c" config: oslist: windows description: Launch - executable: Terminal Velocity\\dosbox\\dosbox.exe - workingdir: Terminal Velocity\\dosbox\\ + executable: "Terminal Velocity\\\\dosbox\\\\dosbox.exe" + workingdir: "Terminal Velocity\\\\dosbox\\\\" - config: oslist: macos description: Launch executable: Terminal Velocity.app - - arguments: '-conf \"..\\TV.conf\" -noconsole -c' + - arguments: "-conf \\\"..\\\\TV.conf\\\" -noconsole -c" config: oslist: linux description: Launch - executable: Dosbox\\dosbox - workingdir: Dosbox\\ -'358380': + executable: "Dosbox\\\\dosbox" + workingdir: "Dosbox\\\\" +"358380": installDir: Wacky Wheels launch: - - arguments: '-conf \"..\\Wacky.conf\" -noconsole -c' + - arguments: "-conf \\\"..\\\\Wacky.conf\\\" -noconsole -c" config: oslist: windows description: Launch - executable: Wacky Wheels\\dosbox\\dosbox.exe - workingdir: Wacky Wheels\\dosbox\\ + executable: "Wacky Wheels\\\\dosbox\\\\dosbox.exe" + workingdir: "Wacky Wheels\\\\dosbox\\\\" - config: oslist: macos description: Launch executable: Wacky Wheels.app - - arguments: '-conf \"..\\Wacky.conf\" -noconsole -c' + - arguments: "-conf \\\"..\\\\Wacky.conf\\\" -noconsole -c" config: oslist: linux description: Launch - executable: Dosbox\\dosbox - workingdir: Dosbox\\ -'358390': + executable: "Dosbox\\\\dosbox" + workingdir: "Dosbox\\\\" +"358390": installDir: Stargunner launch: - - arguments: '-conf \"..\\STARGUN.conf\" -noconsole -c' + - arguments: "-conf \\\"..\\\\STARGUN.conf\\\" -noconsole -c" config: oslist: windows description: Launch - executable: Stargunner\\Dosbox\\dosbox.exe - workingdir: Stargunner\\Dosbox\\ + executable: "Stargunner\\\\Dosbox\\\\dosbox.exe" + workingdir: "Stargunner\\\\Dosbox\\\\" - config: oslist: macos description: Launch executable: Stargunner.app - - arguments: '-conf \"..\\STARGUN.conf\" -noconsole -c' + - arguments: "-conf \\\"..\\\\STARGUN.conf\\\" -noconsole -c" config: oslist: linux description: Launch - executable: Dosbox\\dosbox - workingdir: Dosbox\\ -'358400': + executable: "Dosbox\\\\dosbox" + workingdir: "Dosbox\\\\" +"358400": installDir: Shadow Warrior DOS launch: - config: @@ -174920,92 +171225,92 @@ oslist: macos description: Launch executable: Shadow Warrior.app - - arguments: '-conf \"..\\SW.conf\" -noconsole -c' + - arguments: "-conf \\\"..\\\\SW.conf\\\" -noconsole -c" config: oslist: linux description: Launch - executable: Dosbox\\dosbox - workingdir: Dosbox\\ + executable: "Dosbox\\\\dosbox" + workingdir: "Dosbox\\\\" - config: oslist: windows - description: 'Launch Shadow Warrior source port [experimental]' - executable: Shadow Warrior\\SWP.exe - workingdir: Shadow Warrior\\ -'358410': + description: "Launch Shadow Warrior source port [experimental]" + executable: "Shadow Warrior\\\\SWP.exe" + workingdir: "Shadow Warrior\\\\" +"358410": installDir: Rise of the Triad Dark War launch: - - arguments: '-conf \"..\\ROTT.conf\" -noconsole -c' + - arguments: "-conf \\\"..\\\\ROTT.conf\\\" -noconsole -c" config: oslist: windows description: Launch - executable: Rise of the Triad - Dark War\\dosbox\\dosbox.exe - workingdir: Rise of the Triad - Dark War\\dosbox\\ + executable: "Rise of the Triad - Dark War\\\\dosbox\\\\dosbox.exe" + workingdir: "Rise of the Triad - Dark War\\\\dosbox\\\\" - config: oslist: macos description: Launch executable: Rise of the triad.app - - arguments: '-conf \"..\\ROTT.conf\" -noconsole -c' + - arguments: "-conf \\\"..\\\\ROTT.conf\\\" -noconsole -c" config: oslist: linux description: Launch - executable: Dosbox\\dosbox - workingdir: Dosbox\\ -'358420': + executable: "Dosbox\\\\dosbox" + workingdir: "Dosbox\\\\" +"358420": installDir: Xenophage launch: - - arguments: '-conf \"..\\XENO.conf\" -noconsole -c' + - arguments: "-conf \\\"..\\\\XENO.conf\\\" -noconsole -c" config: oslist: windows description: Launch - executable: Xenophage\\dosbox\\dosbox.exe - workingdir: Xenophage\\dosbox + executable: "Xenophage\\\\dosbox\\\\dosbox.exe" + workingdir: "Xenophage\\\\dosbox" - config: oslist: macos description: Launch executable: Xenophage.app - - arguments: '-conf \"..\\XENO.conf\" -noconsole -c' + - arguments: "-conf \\\"..\\\\XENO.conf\\\" -noconsole -c" config: oslist: linux description: Launch - executable: Dosbox\\dosbox - workingdir: Dosbox\\ -'358430': + executable: "Dosbox\\\\dosbox" + workingdir: "Dosbox\\\\" +"358430": installDir: Balls of Steel launch: - config: oslist: windows - description: 'Launch Balls of Steel ' - executable: Balls of Steel\\bos.exe - workingdir: Balls of Steel\\ + description: "Launch Balls of Steel " + executable: "Balls of Steel\\\\bos.exe" + workingdir: "Balls of Steel\\\\" - config: oslist: windows description: Launch Balls of Steel Compatibility Mode executable: Balls of Steel.bat - workingdir: Balls of Steel\\ + workingdir: "Balls of Steel\\\\" - config: oslist: macos description: Launch executable: Balls of Steel.app -'358440': +"358440": installDir: Dark Ages launch: - - arguments: '-conf \"..\\DARK.conf\" -noconsole -c' + - arguments: "-conf \\\"..\\\\DARK.conf\\\" -noconsole -c" config: oslist: windows description: Launch - executable: Dark Ages\\dosbox\\dosbox.exe - workingdir: Dark Ages\\dosbox\\ + executable: "Dark Ages\\\\dosbox\\\\dosbox.exe" + workingdir: "Dark Ages\\\\dosbox\\\\" - config: oslist: macos description: Launch executable: Dark Ages.app - - arguments: '-conf \"..\\DARK.conf\" -noconsole -c' + - arguments: "-conf \\\"..\\\\DARK.conf\\\" -noconsole -c" config: oslist: linux description: Launch - executable: Dosbox\\dosbox - workingdir: Dosbox\\ -'358460': + executable: "Dosbox\\\\dosbox" + workingdir: "Dosbox\\\\" +"358460": installDir: Talisman Horus Heresy launch: - config: @@ -175018,26 +171323,26 @@ description: Launch executable: horus.app type: none -'358480': +"358480": installDir: DarkBase-01 launch: - config: oslist: windows description: Launch executable: darkbase01.exe -'358490': +"358490": installDir: Drip Drip launch: - config: oslist: windows executable: Drip Drip.exe type: default -'358610': +"358610": installDir: Exowar launch: - description: Launch executable: Exowar.jar -'358650': +"358650": installDir: Gryphon Knight Epic launch: - config: @@ -175052,12 +171357,12 @@ oslist: macos description: Launch executable: gke.app -'358700': +"358700": installDir: 3d Bridges launch: - description: Launch executable: 3dBridges.exe -'358750': +"358750": installDir: Sunrider Liberation Day launch: - config: @@ -175072,7 +171377,7 @@ oslist: linux executable: Sunrider Liberation Day.sh type: default -'358760': +"358760": installDir: Selenon Rising launch: - config: @@ -175090,7 +171395,7 @@ description: Launch executable: Selenon Rising.sh type: none -'358770': +"358770": installDir: The Reject Demon Toko Chapter 0 - Prelude launch: - config: @@ -175106,9 +171411,9 @@ - config: oslist: macos description: Launch - executable: The Reject Demon_ Toko - ch0 Remix.app\\Contents\\MacOS\\The Reject Demon_ Toko - ch0 Remix + executable: "The Reject Demon_ Toko - ch0 Remix.app\\\\Contents\\\\MacOS\\\\The Reject Demon_ Toko - ch0 Remix" type: default -'358810': +"358810": installDir: Luckslinger launch: - config: @@ -175118,19 +171423,19 @@ - config: oslist: macos description: Launch - executable: Luckslinger.app\\Contents\\MacOS\\Luckslinger + executable: "Luckslinger.app\\\\Contents\\\\MacOS\\\\Luckslinger" - config: oslist: linux description: Launch executable: Luckslinger.x86_64 -'358830': +"358830": installDir: Good Robot launch: - config: oslist: windows executable: GoodRobot.exe type: none -'358840': +"358840": installDir: ZombieRun launch: - config: @@ -175145,47 +171450,47 @@ oslist: linux description: Launch executable: ZombieRun.sh -'358920': +"358920": installDir: Star Control Classic launch: - - arguments: ' -conf \"dosboxSC2.conf\" -conf \"dosboxSC2_single.conf\" -noconsole -c exit' + - arguments: " -conf \\\"dosboxSC2.conf\\\" -conf \\\"dosboxSC2_single.conf\\\" -noconsole -c exit" description: Play Star Control 2 - executable: Star Control 2\\DOSBOX\\DOSBox.exe + executable: "Star Control 2\\\\DOSBOX\\\\DOSBox.exe" type: default - workingdir: .\\Star Control 2\\ - - arguments: ' -conf \"dosboxSC2.conf\" -conf \"dosboxSC2_addon.conf\" -noconsole -c exit' + workingdir: ".\\\\Star Control 2\\\\" + - arguments: " -conf \\\"dosboxSC2.conf\\\" -conf \\\"dosboxSC2_addon.conf\\\" -noconsole -c exit" description: Star Control 2 Super Melee Battle - executable: Star Control 2\\DOSBOX\\DOSBox.exe + executable: "Star Control 2\\\\DOSBOX\\\\DOSBox.exe" type: option1 - workingdir: .\\Star Control 2\\ - - arguments: ' -conf \"dosboxSC2.conf\" -conf \"dosboxSC2_settings.conf\" -noconsole -c exit' + workingdir: ".\\\\Star Control 2\\\\" + - arguments: " -conf \\\"dosboxSC2.conf\\\" -conf \\\"dosboxSC2_settings.conf\\\" -noconsole -c exit" description: Configure Star Control 2 Keys - executable: Star Control 2\\DOSBOX\\DOSBox.exe + executable: "Star Control 2\\\\DOSBOX\\\\DOSBox.exe" type: option1 - workingdir: .\\Star Control 2\\ - - arguments: '-conf \"dosboxSC1.conf\" -conf \"dosboxSC1_single.conf\" -noconsole -c exit' + workingdir: ".\\\\Star Control 2\\\\" + - arguments: "-conf \\\"dosboxSC1.conf\\\" -conf \\\"dosboxSC1_single.conf\\\" -noconsole -c exit" description: Star Control 1 - executable: Star Control 1\\DOSBOX\\DOSBox.exe + executable: "Star Control 1\\\\DOSBOX\\\\DOSBox.exe" type: option1 - workingdir: .\\Star Control 1\\ - - arguments: '-conf \"dosboxSC1.conf\" -conf \"dosboxSC1_settings.conf\" -noconsole -c exit' + workingdir: ".\\\\Star Control 1\\\\" + - arguments: "-conf \\\"dosboxSC1.conf\\\" -conf \\\"dosboxSC1_settings.conf\\\" -noconsole -c exit" description: Configure Star Control 1 Keys - executable: Star Control 1\\DOSBOX\\DOSBox.exe + executable: "Star Control 1\\\\DOSBOX\\\\DOSBox.exe" type: option1 - workingdir: .\\Star Control 1\\ -'358930': + workingdir: ".\\\\Star Control 1\\\\" +"358930": installDir: Star Control 3 launch: - - arguments: '-conf \"dosboxSC3.conf\" -conf \"dosboxSC3_single.conf\" -noconsole -c exit' - description: 'Play Star Control: Kessari Quadrant' - executable: DOSBOX\\DOSBox.exe + - arguments: "-conf \\\"dosboxSC3.conf\\\" -conf \\\"dosboxSC3_single.conf\\\" -noconsole -c exit" + description: "Play Star Control: Kessari Quadrant" + executable: "DOSBOX\\\\DOSBox.exe" type: default - workingdir: DOSBOX\\ -'358960': + workingdir: "DOSBOX\\\\" +"358960": installDir: Canabalt launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: Canabalt.exe @@ -175194,43 +171499,43 @@ description: Launch executable: Canabalt.app - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: Canabalt.exe - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: Canabalt.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Canabalt.x86_64 -'3590': +"3590": installDir: Plants Vs Zombies launch: - - arguments: ' ' + - arguments: " " config: oslist: windows executable: PlantsVsZombies.exe - config: oslist: macos executable: Plants vs. Zombies.app -'359040': +"359040": installDir: The Music Machine launch: - description: Launch executable: The Music Machine.exe -'359050': +"359050": installDir: Showerdad launch: - config: oslist: windows description: Launch executable: showerdad.exe -'359060': +"359060": installDir: Switch Galaxy Ultra launch: - config: @@ -175244,13 +171549,13 @@ executable: switch_galaxy type: default - config: - osarch: '64' + osarch: "64" oslist: macos description: Play Switch Galaxy Ultra executable: switch_galaxy.app type: default workingdir: switch_galaxy.app/Contents/MacOS/ -'359070': +"359070": installDir: Hunter Gatherer launch: - config: @@ -175265,14 +171570,14 @@ oslist: linux description: Launch executable: game.x86_64 -'359090': +"359090": installDir: Gare Sapphire Mechs launch: - config: oslist: windows description: Launch executable: Gare.exe -'359100': +"359100": installDir: Q.U.B.E. 2 launch: - config: @@ -175280,13 +171585,13 @@ description: Play Game executable: QUBE.exe type: default - - arguments: '-dx12' + - arguments: "-dx12" config: oslist: windows description: Q.U.B.E. 2 with DirectX 12 (Fixes Green Screens) executable: QUBE.exe type: option1 -'359140': +"359140": installDir: Kick Ass Commandos launch: - config: @@ -175301,16 +171606,16 @@ oslist: linux executable: KickAssCommandos.x86 type: default -'359160': +"359160": installDir: TAKEN launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: TAKEN.exe - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: TAKEN.exe @@ -175322,8 +171627,8 @@ oslist: linux description: Launch executable: TAKEN_BP - workingdir: TAKEN_BP\\Binaries\\Linux -'359190': + workingdir: "TAKEN_BP\\\\Binaries\\\\Linux" +"359190": installDir: Rituals launch: - config: @@ -175338,7 +171643,7 @@ oslist: macos description: Launch executable: rituals.app -'359220': +"359220": installDir: MX vs. ATV Unleashed launch: - config: @@ -175349,26 +171654,26 @@ oslist: windows description: Launch MX vs. ATV Unleashed Track Editor executable: Unleashed Editor.exe -'359230': +"359230": installDir: Lethis - Path of Progress launch: - config: oslist: windows description: Launch executable: Lethis-Path_Of_Progress.exe -'359250': +"359250": installDir: City of Fools launch: - description: Launch executable: City of Fools.exe -'359260': +"359260": installDir: Green Moon launch: - config: oslist: windows description: Launch executable: GreenMoon.exe -'359280': +"359280": installDir: HeroesofLoot launch: - config: @@ -175383,7 +171688,7 @@ oslist: linux description: Launch executable: HeroesOfLoot -'359290': +"359290": installDir: Crazy Cars - Hit the Road launch: - config: @@ -175394,14 +171699,14 @@ oslist: macos description: Launch executable: Crazycars.app -'359300': +"359300": installDir: hdmp launch: - config: oslist: windows description: Launch executable: DeathPirateSP_Steam2.exe -'359310': +"359310": installDir: Evoland 2 launch: - config: @@ -175414,15 +171719,13 @@ description: Launch executable: Evoland2.app type: none -'359320': +"359320": installDir: Elite Dangerous launch: - arguments: /Steam /novr config: oslist: windows description: Elite Dangerous - description_loc: - english: Elite Dangerous executable: EDLaunch.exe type: option1 - arguments: /Steam /VR @@ -175430,14 +171733,14 @@ oslist: windows executable: EDLaunch.exe type: vr -'359340': +"359340": installDir: Pixel Puzzles Mosaics launch: - config: oslist: windows executable: Pixel Puzzles Mosaics.exe type: none -'359350': +"359350": installDir: Defunct launch: - config: @@ -175462,21 +171765,21 @@ description: Defunct Test executable: Defunct.exe type: option3 -'359370': +"359370": installDir: PiratesLife launch: - config: oslist: windows description: Launch executable: PiratesLife.exe -'359390': +"359390": installDir: Amnesia launch: - config: oslist: windows description: Launch executable: amnesia.exe -'359400': +"359400": installDir: Why Am I Dead At Sea launch: - config: @@ -175487,44 +171790,44 @@ oslist: macos description: Launch executable: WhyAmIDeadAtSea.app -'359420': +"359420": installDir: The Journeyman Project 1 Pegasus Prime launch: - config: oslist: windows executable: pegasusMessageProxy.exe type: default -'359440': +"359440": installDir: Artifact Adventure launch: - config: oslist: windows description: Launch executable: launcher.exe -'359450': +"359450": installDir: In Space We Brawl launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: InSpaceWeBrawl_x64_steam.exe - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: InSpaceWeBrawl_x86_steam.exe - config: - osarch: '64' + osarch: "64" oslist: macos description: Launch executable: InSpaceWeBrawl_osx64.app - config: - osarch: '32' + osarch: "32" oslist: macos description: Launch executable: InSpaceWeBrawl_osx32_steam.app -'359510': +"359510": installDir: Tangle Tower launch: - config: @@ -175535,190 +171838,186 @@ oslist: macos executable: TangleTowerSteamMac.app type: default -'359550': - installDir: Tom Clancy's Rainbow Six Siege +"359550": + installDir: "Tom Clancy's Rainbow Six Siege" launch: - - arguments: '-uplay_steam_mode' + - arguments: "-uplay_steam_mode" config: - osarch: '64' + osarch: "64" oslist: windows - ownsdlc: '461960' + ownsdlc: "461960" description: Launch executable: RainbowSix.exe type: none - - arguments: '-upc_steam_free_package_id 59730 -uplay_steam_mode' + - arguments: "-upc_steam_free_package_id 59730 -uplay_steam_mode" config: - osarch: '64' + osarch: "64" oslist: windows - ownsdlc: '461961' + ownsdlc: "461961" description: Free weekend - description_loc: - english: Free weekend executable: RainbowSix.exe type: none - - arguments: '-upc_steam_free_package_id 59731 -uplay_steam_mode' + - arguments: "-upc_steam_free_package_id 59731 -uplay_steam_mode" config: - osarch: '64' + osarch: "64" oslist: windows - ownsdlc: '462300' + ownsdlc: "462300" description: Free weekend - description_loc: - english: Free weekend executable: RainbowSix.exe type: none - - arguments: '-upc_steam_required_product_id 1843 -uplay_steam_mode -orbit_uat' + - arguments: "-upc_steam_required_product_id 1843 -uplay_steam_mode -orbit_uat" config: - ownsdlc: '416950' + ownsdlc: "416950" description: Test executable: RainbowSix.exe type: none - - arguments: '-upc_steam_required_product_id 3315 -uplay_steam_mode' + - arguments: "-upc_steam_required_product_id 3315 -uplay_steam_mode" config: - osarch: '64' + osarch: "64" oslist: windows - ownsdlc: '485320' + ownsdlc: "485320" description: Starter Edition WW executable: RainbowSix.exe type: none - - arguments: '-upc_steam_required_product_id 3315 -uplay_steam_mode' + - arguments: "-upc_steam_required_product_id 3315 -uplay_steam_mode" config: - osarch: '64' + osarch: "64" oslist: windows - ownsdlc: '485321' + ownsdlc: "485321" description: Starter Edition RUS + CIS executable: RainbowSix.exe type: none - - arguments: '-upc_steam_required_product_id 3658 -uplay_steam_mode' + - arguments: "-upc_steam_required_product_id 3658 -uplay_steam_mode" config: - osarch: '64' + osarch: "64" oslist: windows - ownsdlc: '813490' - description: 'Starter Edition ' + ownsdlc: "813490" + description: "Starter Edition " executable: RainbowSix.exe type: none - - arguments: '-upc_steam_required_product_id 3658 -uplay_steam_mode' + - arguments: "-upc_steam_required_product_id 3658 -uplay_steam_mode" config: - osarch: '64' + osarch: "64" oslist: windows - ownsdlc: '813491' + ownsdlc: "813491" description: Starter Edition RU executable: RainbowSix.exe type: none - - arguments: '-uplay_steam_mode' + - arguments: "-uplay_steam_mode" config: - osarch: '64' + osarch: "64" oslist: windows - ownsdlc: '461960' - description: Play Tom Clancy's Rainbow Six Siege - Vulkan + ownsdlc: "461960" + description: "Play Tom Clancy's Rainbow Six Siege - Vulkan" executable: RainbowSix_Vulkan.exe type: none - - arguments: '-upc_steam_required_product_id 3315 -uplay_steam_mode' + - arguments: "-upc_steam_required_product_id 3315 -uplay_steam_mode" config: - osarch: '64' + osarch: "64" oslist: windows - ownsdlc: '485320' - description: Tom Clancy's Rainbow Six Siege - Vulkan + ownsdlc: "485320" + description: "Tom Clancy's Rainbow Six Siege - Vulkan" executable: RainbowSix_Vulkan.exe type: none - - arguments: '-upc_steam_required_product_id 3315 -uplay_steam_mode' + - arguments: "-upc_steam_required_product_id 3315 -uplay_steam_mode" config: - osarch: '64' + osarch: "64" oslist: windows - ownsdlc: '485321' - description: Tom Clancy's Rainbow Six Siege - Vulkan + ownsdlc: "485321" + description: "Tom Clancy's Rainbow Six Siege - Vulkan" executable: RainbowSix_Vulkan.exe type: none - - arguments: '-upc_steam_required_product_id 3658 -uplay_steam_mode' + - arguments: "-upc_steam_required_product_id 3658 -uplay_steam_mode" config: - osarch: '64' + osarch: "64" oslist: windows - ownsdlc: '813490' - description: Tom Clancy's Rainbow Six Siege - Vulkan + ownsdlc: "813490" + description: "Tom Clancy's Rainbow Six Siege - Vulkan" executable: RainbowSix_Vulkan.exe type: none - - arguments: '-upc_steam_required_product_id 3658 -uplay_steam_mode' + - arguments: "-upc_steam_required_product_id 3658 -uplay_steam_mode" config: - osarch: '64' + osarch: "64" oslist: windows - ownsdlc: '813491' - description: Tom Clancy's Rainbow Six Siege - Vulkan + ownsdlc: "813491" + description: "Tom Clancy's Rainbow Six Siege - Vulkan" executable: RainbowSix_Vulkan.exe type: none - - arguments: '-uplay_steam_mode -vulkan' + - arguments: "-uplay_steam_mode -vulkan" config: betakey: livecert_stable - description: '-vulkan_exe=RainbowSix_Vulkan.exe' + description: "-vulkan_exe=RainbowSix_Vulkan.exe" executable: RainbowSix.exe type: none - - arguments: '-uplay_steam_mode -vulkan' + - arguments: "-uplay_steam_mode -vulkan" config: betakey: livecert_stable - description: '-vulkan_exe=RainbowSix.exe' + description: "-vulkan_exe=RainbowSix.exe" executable: RainbowSix.exe type: none -'359560': +"359560": installDir: Shutter launch: - config: oslist: windows description: Launch executable: Shutter.exe -'359580': +"359580": installDir: Uncanny Valley launch: - config: oslist: windows description: Launch executable: PPA2IP.exe -'359600': +"359600": installDir: Assassins Creed Chronicles Russia launch: - - arguments: '-orbit_debug -uplay_steam_mode -seekfreeloadingpcconsole' + - arguments: "-orbit_debug -uplay_steam_mode -seekfreeloadingpcconsole" config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: Binaries/Win32/ACCGame-Win32-Shipping.exe workingdir: Binaries/Win32 -'359610': +"359610": installDir: Assassins Creed Chronicles India launch: - - arguments: '-uplay_steam_mode -seekfreeloadingpcconsole' + - arguments: "-uplay_steam_mode -seekfreeloadingpcconsole" config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: Binaries/Win32/ACCGame-Win32-Shipping.exe workingdir: Binaries/Win32 -'359620': +"359620": installDir: Prisoner of Ice launch: - config: oslist: windows - executable: Dosbox\\launch.bat + executable: "Dosbox\\\\launch.bat" type: none workingdir: Dosbox -'359630': +"359630": installDir: Independence War 2 - Edge of Chaos launch: - - arguments: '-ac iwar2.icGame -dl 3' + - arguments: "-ac iwar2.icGame -dl 3" description: Launch - executable: bin\\release\\loader.exe -'359650': + executable: "bin\\\\release\\\\loader.exe" +"359650": installDir: Star Trek 25th Anniversary launch: - config: oslist: windows description: Launch executable: Launch Star Trek 25th Anniversary.cmd -'359670': +"359670": installDir: Vagrant Hearts 2 launch: - config: oslist: windows description: Launch executable: game.exe -'359800': +"359800": installDir: Copa Petrobras de Marcas launch: - description: Launch @@ -175726,7 +172025,7 @@ - description: Configuration Tool executable: Config.exe type: config -'359810': +"359810": installDir: Hare In The Hat launch: - config: @@ -175739,15 +172038,15 @@ executable: Hare In The Hat.app - config: oslist: windows - ownsdlc: '460890' - description: 'Hare In The Hat: The Abyss DLC' + ownsdlc: "460890" + description: "Hare In The Hat: The Abyss DLC" executable: HIH2W7.exe type: option1 - config: oslist: linux executable: HIH.sh type: none -'359840': +"359840": installDir: Shift Happens launch: - config: @@ -175755,45 +172054,45 @@ description: Launch executable: Shift Happens.exe - config: - osarch: '32' + osarch: "32" oslist: linux executable: Shift Happens.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: Shift Happens.x86_64 type: none -'359850': +"359850": installDir: Duke Nukem 3D launch: - config: oslist: windows - description: 'Launch Duke Nukem 3D [EDuke32]' - executable: Duke Nukem 3D\\eduke32.exe - workingdir: Duke Nukem 3D\\ + description: "Launch Duke Nukem 3D [EDuke32]" + executable: "Duke Nukem 3D\\\\eduke32.exe" + workingdir: "Duke Nukem 3D\\\\" - config: oslist: windows - description: 'Launch Duke Nukem 3D [DOS]' + description: "Launch Duke Nukem 3D [DOS]" executable: Duke Nukem 3D - DOS.bat - config: oslist: macos description: Launch executable: Duke Nukem 3D.app - - arguments: '-conf \"..\\DUKE3d.conf\" -noconsole -c' + - arguments: "-conf \\\"..\\\\DUKE3d.conf\\\" -noconsole -c" config: oslist: linux description: Launch - executable: Dosbox\\dosbox - workingdir: Dosbox\\ -'359870': + executable: "Dosbox\\\\dosbox" + workingdir: "Dosbox\\\\" +"359870": installDir: FINAL FANTASY FFX&FFX-2 HD Remaster launch: - config: oslist: windows description: Launch executable: FFX&X-2_LAUNCHER.exe -'359900': +"359900": installDir: The Incredible Adventures of Van Helsing III launch: - config: @@ -175804,22 +172103,22 @@ oslist: macos description: Launch executable: TIAOVH3.app -'359920': +"359920": installDir: Highlands launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: Highlands.exe -'359940': +"359940": installDir: Shadows Peak launch: - config: oslist: windows description: Launch executable: ShadowsPeak.exe -'359960': +"359960": installDir: Choice Chamber launch: - config: @@ -175830,38 +172129,38 @@ oslist: macos executable: choicechamber.app type: none -'359970': +"359970": installDir: Alpha Version.0 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: nw.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Run.sh type: default -'360': +"360": installDir: Half-Life 1 Source Deathmatch launch: - - arguments: '-game hl1mp -steam' + - arguments: "-game hl1mp -steam" config: oslist: windows description: Launch executable: hl2.exe - - arguments: '-game hl1mp -steam' + - arguments: "-game hl1mp -steam" config: oslist: macos description: Launch executable: hl2.sh - - arguments: '-game hl1mp -steam' + - arguments: "-game hl1mp -steam" config: oslist: linux description: Launch executable: hl2.sh -'3600': +"3600": installDir: Escape Rosecliff Island launch: - config: @@ -175870,7 +172169,7 @@ - config: oslist: macos executable: Escape Rosecliff Island.app -'36000': +"36000": installDir: Foreign Legion (Buckets of Blood) launch: - config: @@ -175879,12 +172178,12 @@ - config: oslist: macos executable: Foreign Legion.app -'360010': +"360010": installDir: Remnants Of Isolation launch: - description: Launch executable: Game.exe -'360030': +"360030": installDir: XLarn launch: - config: @@ -175900,15 +172199,15 @@ description: Launch executable: SteamLarn type: none -'360040': - installDir: Our Nation's Miner +"360040": + installDir: "Our Nation's Miner" launch: - config: oslist: windows description: Launch - executable: Our Nation's Miner.exe + executable: "Our Nation's Miner.exe" type: default -'360130': +"360130": installDir: Cloud Knights launch: - config: @@ -175919,14 +172218,14 @@ oslist: macos description: Launch executable: Cloud Knights.app -'360150': +"360150": installDir: How To Survive Third Person launch: - description: Launch executable: HowToSurvive.exe - description: Configuration executable: Detect.exe -'360170': +"360170": installDir: How to Survive 2 launch: - executable: Exe/HowToSurvive2.exe @@ -175935,7 +172234,7 @@ - executable: Exe/Detect.exe type: config workingdir: Exe -'360380': +"360380": installDir: Ratventure Challenge launch: - config: @@ -175948,52 +172247,50 @@ description: Launch executable: Tiny Bridge Ratventure.exe type: none -'360390': +"360390": installDir: Nightside launch: - - arguments: '-force-d3d9' + - arguments: "-force-d3d9" config: oslist: windows description: Play Nightside executable: NIGHTSIDE.exe - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: NIGHTSIDE - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: NIGHTSIDE.64 - - arguments: '-force-d3d11' + - arguments: "-force-d3d11" config: oslist: windows description: Play Nightside DX11 executable: NIGHTSIDE.exe - - arguments: '-force-opengl' + - arguments: "-force-opengl" config: oslist: windows description: Play Nightside OGL executable: NIGHTSIDE.exe type: none -'360400': +"360400": installDir: ZQ-FullPC launch: - config: oslist: windows - executable: ZQ-FullPC\\ZQ.exe + executable: "ZQ-FullPC\\\\ZQ.exe" type: default -'360430': +"360430": installDir: Mafia III launch: - config: betakey: legacy - osarch: '64' + osarch: "64" oslist: windows description: using launcher - description_loc: - english: using launcher executable: launcher.exe type: default - config: @@ -176002,26 +172299,24 @@ type: none - config: betakey: sanitycheck - osarch: '64' + osarch: "64" oslist: windows executable: mafia3.exe type: none - config: - osarch: '64' + osarch: "64" oslist: windows description: 2K Launcher - description_loc: - english: 2K Launcher - executable: \\2KLauncher\\LauncherPatcher.exe + executable: "\\\\2KLauncher\\\\LauncherPatcher.exe" type: default -'360450': +"360450": installDir: Kiai Resonance launch: - config: oslist: windows description: Launch executable: Kiai Resonance.exe -'360500': +"360500": installDir: SnakeCubed launch: - config: @@ -176029,15 +172324,15 @@ description: Launch executable: SnakeCubed.exe type: none -'360510': +"360510": installDir: Into the Stars launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: Nebraska.exe -'360520': +"360520": installDir: Hypt launch: - config: @@ -176045,20 +172340,20 @@ description: Launch executable: Hypt.exe - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: Hypt.x86 - config: oslist: macos description: Launch - executable: Hypt.app\\Contents\\MacOS\\Hypt + executable: "Hypt.app\\\\Contents\\\\MacOS\\\\Hypt" - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Hypt.x86_64 -'360530': +"360530": installDir: WE ARE DOOMED launch: - config: @@ -176069,7 +172364,7 @@ oslist: macos description: Launch executable: WE ARE DOOMED.app/Contents/MacOS/WE ARE DOOMED -'360550': +"360550": installDir: Cursed Sight launch: - config: @@ -176084,19 +172379,19 @@ oslist: linux description: Launch executable: cursed_sight.sh -'360580': +"360580": installDir: AbductionActionPlus launch: - config: oslist: windows description: Launch executable: AbductionActionPC.exe -'360590': - installDir: 'Once Bitten, Twice Dead!' +"360590": + installDir: "Once Bitten, Twice Dead!" launch: - description: Launch executable: OBTD.exe -'360600': +"360600": installDir: 99 Waves to Die launch: - config: @@ -176107,14 +172402,14 @@ oslist: linux description: Launch executable: 99waves_to_die.x86 -'360610': - installDir: 'Houston, we have a problem' +"360610": + installDir: "Houston, we have a problem" launch: - config: oslist: windows description: Launch executable: Houston.exe -'360620': +"360620": installDir: Spellsworn launch: - config: @@ -176126,7 +172421,7 @@ description: Launch executable: Spellsworn/Binaries/Linux/Spellsworn-Linux-Test type: none -'360640': +"360640": installDir: 12 Labours of Hercules II The Cretan Bull launch: - config: @@ -176141,7 +172436,7 @@ oslist: linux description: Launch executable: Hercules2 -'360650': +"360650": installDir: 12 Labours of Hercules III Girl Power launch: - config: @@ -176156,22 +172451,22 @@ oslist: macos description: Launch executable: 12 Labours of Hercules III.app -'360680': +"360680": installDir: Drone Zero Gravity launch: - config: oslist: windows executable: DroneZG.exe -'360700': +"360700": installDir: With Your Destiny launch: - - arguments: '-steam' + - arguments: "-steam" config: oslist: windows description: Launch executable: SDLauncher.exe type: none -'360720': +"360720": installDir: Soda Star launch: - config: @@ -176186,7 +172481,7 @@ oslist: linux description: Launch executable: SodaStar.x86 -'360730': +"360730": installDir: Cards and Castles launch: - config: @@ -176199,50 +172494,50 @@ description: Launch executable: Cards and Castles.exe type: none -'360740': +"360740": installDir: Downwell launch: - config: oslist: windows executable: downwell.exe type: default -'360750': {} -'360760': +"360750": {} +"360760": installDir: Run and Fire launch: - config: oslist: windows description: Launch executable: launchpoint.exe -'360830': +"360830": installDir: YookaLaylee launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: YookaLaylee64.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: YookaLaylee.x86_64 type: default - config: oslist: macos - executable: YookaLaylee.app\\Contents\\MacOS\\YookaLaylee + executable: "YookaLaylee.app\\\\Contents\\\\MacOS\\\\YookaLaylee" type: default - - arguments: '-window-mode exclusive -screen-fullscreen 1' + - arguments: "-window-mode exclusive -screen-fullscreen 1" config: - osarch: '64' + osarch: "64" oslist: windows description: Launch in Exclusive Mode executable: YookaLaylee64.exe type: none -'360840': +"360840": installDir: Lumini launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: lumini_Win32.exe @@ -176252,17 +172547,17 @@ executable: Lumini.app type: none - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: lumini_Linux32.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: lumini_Linux64.x86_64 - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: lumini_Win64.exe @@ -176271,24 +172566,24 @@ description: Launch executable: Lumini.app type: none -'360850': {} -'360870': +"360850": {} +"360870": installDir: Ultimate Tic-Tac-Toe launch: - config: oslist: windows description: Launch executable: UltimTicTacToe.exe -'360880': +"360880": installDir: Nightfall Escape launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch W32 executable: NightfallEscape.exe - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch W64 executable: NightfallEscape.exe @@ -176297,47 +172592,47 @@ description: Launch OSx executable: NightfallEscape.app - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch X86 executable: NightfallEscape.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: NightfallEscape.x86_64 - config: - osarch: '64' + osarch: "64" oslist: windows - ownsdlc: '514630' + ownsdlc: "514630" executable: NightfallEclipse.exe type: vr -'360890': +"360890": installDir: The Lost Valley launch: - config: oslist: windows description: Launch - executable: LV\\Bin64\\LV.exe -'360940': + executable: "LV\\\\Bin64\\\\LV.exe" +"360940": installDir: The Mean Greens - Plastic Warfare launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch - executable: TheMeanGreens\\Binaries\\Win64\\TheMeanGreens-Win64-Shipping.exe + executable: "TheMeanGreens\\\\Binaries\\\\Win64\\\\TheMeanGreens-Win64-Shipping.exe" type: none - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch - executable: TheMeanGreens\\Binaries\\Win32\\TheMeanGreens-Win32-Shipping.exe + executable: "TheMeanGreens\\\\Binaries\\\\Win32\\\\TheMeanGreens-Win32-Shipping.exe" type: none - config: oslist: linux description: Launch - executable: TheMeanGreens\\Binaries\\Linux\\TheMeanGreens-Linux-Shipping + executable: "TheMeanGreens\\\\Binaries\\\\Linux\\\\TheMeanGreens-Linux-Shipping" type: none - config: oslist: macos @@ -176346,81 +172641,81 @@ type: default - config: betakey: beta - osarch: '64' - executable: TheMeanGreens\\Binaries\\Win64\\TheMeanGreens.exe + osarch: "64" + executable: "TheMeanGreens\\\\Binaries\\\\Win64\\\\TheMeanGreens.exe" type: none -'360950': +"360950": installDir: Descent Underground launch: - - arguments: '--steam' + - arguments: "--steam" config: - osarch: '64' + osarch: "64" oslist: windows - executable: launcher\\Descent.exe + executable: "launcher\\\\Descent.exe" type: default - - arguments: '--manual' + - arguments: "--manual" config: - osarch: '64' + osarch: "64" oslist: windows - executable: launcher\\Descent.exe + executable: "launcher\\\\Descent.exe" type: manual - - arguments: '--steam' + - arguments: "--steam" config: - osarch: '64' + osarch: "64" oslist: linux executable: launcher/descent.sh type: default - - arguments: '--manual' + - arguments: "--manual" config: - osarch: '64' + osarch: "64" oslist: linux executable: launcher/descent.sh type: manual - - arguments: '--steam' + - arguments: "--steam" config: - osarch: '64' + osarch: "64" oslist: macos executable: launcher/Descent.app/Contents/MacOS/Descent type: default - - arguments: '--manual' + - arguments: "--manual" config: - osarch: '64' + osarch: "64" oslist: macos executable: launcher/Descent.app/Contents/MacOS/Descent type: manual - - arguments: '--steam --vr=steamvr' + - arguments: "--steam --vr=steamvr" config: - osarch: '64' + osarch: "64" oslist: windows - executable: launcher\\Descent.exe + executable: "launcher\\\\Descent.exe" type: vr - - arguments: '--steam --vr=oculusvr' + - arguments: "--steam --vr=oculusvr" config: - osarch: '64' + osarch: "64" oslist: windows description: OculusVR - executable: launcher\\Descent.exe + executable: "launcher\\\\Descent.exe" type: othervr - - arguments: '--steam --vr=steamvr' + - arguments: "--steam --vr=steamvr" config: - osarch: '64' + osarch: "64" oslist: linux executable: launcher/descent.sh type: vr - - arguments: '--steam --vr=steamvr' + - arguments: "--steam --vr=steamvr" config: - osarch: '64' + osarch: "64" oslist: macos executable: launcher/Descent.app/Contents/MacOS/Descent type: vr - - arguments: '--steam --vr=osvr' + - arguments: "--steam --vr=osvr" config: - osarch: '64' + osarch: "64" oslist: windows description: Launch in OSVR mode - executable: launcher\\Descent.exe + executable: "launcher\\\\Descent.exe" type: none -'360970': +"360970": installDir: Heaven Forest NIGHTS launch: - config: @@ -176443,29 +172738,29 @@ oslist: windows executable: HeavenForestNights.exe type: othervr -'360990': +"360990": installDir: Ongaku launch: - config: oslist: windows description: Launch executable: OngakuSteam.exe -'3610': +"3610": installDir: Mystery PI - Lost in Los Angeles launch: - executable: MysteryPILosAngeles.exe -'36100': +"36100": installDir: Tradewinds Classic launch: - executable: TradewindsClassic.exe -'361020': +"361020": installDir: Luxor HD launch: - config: oslist: windows description: Launch executable: luxor_hd_x86.exe -'361040': +"361040": installDir: Doom & Destiny Advanced launch: - config: @@ -176481,11 +172776,11 @@ oslist: linux executable: run.sh type: default -'36110': +"36110": installDir: Tradewinds 2 launch: - executable: Tradewinds2.exe -'361100': +"361100": installDir: DualSouls launch: - config: @@ -176502,21 +172797,19 @@ type: default - config: oslist: windows - ownsdlc: '1125120' - description: 'Slashers: The Power Battle' - description_loc: - english: 'Slashers: The Power Battle' + ownsdlc: "1125120" + description: "Slashers: The Power Battle" executable: slashers/Slashers.exe type: option2 workingdir: slashers/ -'361110': +"361110": installDir: Prometheus - The Fire Thief launch: - config: oslist: windows description: Launch executable: Prometheus v1.3.exe -'361130': +"361130": installDir: Card Dungeon launch: - config: @@ -176531,8 +172824,8 @@ oslist: linux description: Launch executable: Card Dungeon.x86_64 -'361160': - installDir: Steamalot Epoch's Journey +"361160": + installDir: "Steamalot Epoch's Journey" launch: - config: oslist: macos @@ -176542,7 +172835,7 @@ oslist: windows description: Launch executable: Steamalot_Epochs_Journey.exe -'361190': +"361190": installDir: Sparkle 3 Genesis launch: - config: @@ -176561,15 +172854,15 @@ oslist: windows description: Soundtrack executable: soundtrack.cmd -'36120': +"36120": installDir: Tradewinds Legends launch: - executable: TradewindsLegends.exe -'361200': +"361200": installDir: Coast Guard launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: Coastguard_1.0.6_PC.exe @@ -176580,26 +172873,26 @@ executable: CoastGuard.app type: none - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch 2 executable: Coastguard_1.0.7_PC_Steam.exe type: none -'361230': +"361230": installDir: Super Daryl Deluxe launch: - config: oslist: windows executable: Super Daryl Deluxe.exe type: none -'361250': +"361250": installDir: Strange Space launch: - config: oslist: windows executable: Strange Space.exe type: none -'361280': +"361280": installDir: Turmoil launch: - config: @@ -176629,11 +172922,11 @@ oslist: linux executable: run.sh type: default -'36130': +"36130": installDir: Tradewinds Caravans launch: - executable: TradewindsCaravans.exe -'361300': +"361300": installDir: Mother Russia Bleeds launch: - config: @@ -176643,51 +172936,51 @@ - config: oslist: macos description: Launch - executable: Mother Russia Bleeds.app\\Contents\\MacOS\\Mother Russia Bleeds + executable: "Mother Russia Bleeds.app\\\\Contents\\\\MacOS\\\\Mother Russia Bleeds" type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Mother Russia Bleeds.x86_64 type: none - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: Mother Russia Bleeds.x86 type: none -'361320': +"361320": installDir: Casino Inc launch: - config: oslist: windows description: Launch executable: CIncMenu.exe -'361330': +"361330": installDir: Shrooms launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch Shrooms executable: shrooms_windows_32.exe - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch Shrooms executable: shrooms_linux.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch Shrooms executable: shrooms_linux.x86_64 - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch Shrooms executable: shrooms_windows_64.exe -'361350': +"361350": installDir: Skyhook launch: - config: @@ -176699,57 +172992,57 @@ description: Launch executable: Skyhook.app - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: skyhook.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: skyhook.x86_64 type: none -'361360': +"361360": installDir: Goosebumps launch: - config: oslist: windows description: Launch - executable: executable\\goosebumps.exe -'361370': + executable: "executable\\\\goosebumps.exe" +"361370": installDir: Deer Hunter launch: - config: oslist: windows executable: DeerHunter.exe type: none -'361380': +"361380": installDir: WWI launch: - description: Launch executable: game.exe -'36140': +"36140": installDir: Tradewinds Odyssey launch: - executable: TradewindsOdyssey.exe -'361400': +"361400": installDir: AYSTAFG launch: - config: oslist: windows description: Launch executable: game.exe -'361420': +"361420": installDir: ASTRONEER launch: - executable: Astro.exe type: default - - arguments: '-Windowed' + - arguments: "-Windowed" description: Play ASTRONEER (Windowed) executable: Astro.exe type: none -'361430': +"361430": installDir: The Little Crane That Could launch: - config: @@ -176757,37 +173050,37 @@ description: Launch executable: Dig.exe - config: - osarch: '64' + osarch: "64" oslist: macos description: Launch executable: Little Crane.app/Contents/MacOS/Little Crane - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: dig -'36150': +"36150": installDir: Westward launch: - executable: Westward.exe -'361550': +"361550": installDir: Cradle launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch - executable: bin\\cradle_x64.exe + executable: "bin\\\\cradle_x64.exe" - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch - executable: bin\\cradle_x86.exe + executable: "bin\\\\cradle_x86.exe" - config: oslist: linux description: Launch executable: cradle.sh -'361560': +"361560": installDir: Ice Cream Surfer launch: - config: @@ -176798,90 +173091,90 @@ - config: oslist: macos description: Launch - executable: IceCreamSurfer.app\\Contents\\MacOS\\IceCreamSurfer + executable: "IceCreamSurfer.app\\\\Contents\\\\MacOS\\\\IceCreamSurfer" type: none -'36160': +"36160": installDir: Westward 2 launch: - executable: Westward2.exe -'361600': +"361600": installDir: Luna Sky launch: - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: lunasky - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: lunasky.exe -'361620': +"361620": installDir: True Bliss launch: - description: Launch executable: TrueBliss.exe -'361630': +"361630": installDir: 404Sight launch: - config: oslist: windows description: Save The Internet executable: 404Sight.exe -'361660': +"361660": installDir: AccidentalRunner launch: - config: oslist: windows description: Launch - executable: WindowsNoEditor\\AccidentalRunner\\Binaries\\Win32\\AccidentalRunner.exe -'361670': + executable: "WindowsNoEditor\\\\AccidentalRunner\\\\Binaries\\\\Win32\\\\AccidentalRunner.exe" +"361670": installDir: Star Wars X-Wing Alliance launch: - description: Launch executable: Alliance.EXE -'361680': +"361680": installDir: KnightDamsel launch: - config: oslist: windows description: Launch executable: KnightAndDamsel.Windows.exe -'361690': +"361690": installDir: STAR WARS X-Wing vs TIE Fighter launch: - description: Launch executable: XWINGTIE.EXE -'36170': +"36170": installDir: Westward 3 launch: - executable: Westward_III.exe -'361790': - installDir: Winged Sakura Mindy's Arc 2 +"361790": + installDir: "Winged Sakura Mindy's Arc 2" launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch - executable: Winged Sakura Mindy's Arc 2.exe + executable: "Winged Sakura Mindy's Arc 2.exe" type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch - executable: Winged Sakura Mindy's Arc 2.x86_64 + executable: "Winged Sakura Mindy's Arc 2.x86_64" type: default - config: oslist: macos description: Launch - executable: Winged Sakura Mindy's Arc 2.app + executable: "Winged Sakura Mindy's Arc 2.app" type: default -'36180': +"36180": installDir: Cake Mania launch: - executable: CakeMania.exe -'361800': +"361800": installDir: TreeOfLife launch: - arguments: NEWSTART ENABLE_REDSHELL @@ -176896,27 +173189,25 @@ betakey: launcherlightweight oslist: windows description: Tree of Life - description_loc: - english: Tree of Life executable: Client2/launcher_lightweight.exe workingdir: Client2 nameLocalized: koreana: 트리 오브 라이프 -'361830': +"361830": installDir: in Space launch: - config: oslist: windows description: Launch executable: in Space.exe -'361850': +"361850": installDir: Portal of Evil Stolen Runes Collectors Edition launch: - config: oslist: windows description: Launch executable: PortalOfEvil_StolenRunes.exe -'361890': +"361890": installDir: Chronostorm Siberian Border launch: - config: @@ -176925,12 +173216,12 @@ type: default workingdir: Bin nameLocalized: - russian: 'Chronostorm: Сибирский Рубеж' -'36190': + russian: "Chronostorm: Сибирский Рубеж" +"36190": installDir: Cake Mania 2 launch: - executable: CakeMania2.exe -'361930': +"361930": installDir: Farm Frenzy Hurricane Season launch: - config: @@ -176942,7 +173233,7 @@ oslist: macos executable: FarmFrenzy_HurricaneSeason.app type: default -'361950': +"361950": installDir: MOAI 2 Path to Another World launch: - config: @@ -176955,12 +173246,12 @@ description: Launch executable: moai2.app type: default -'361970': - installDir: Weather Lord The Successor's Path +"361970": + installDir: "Weather Lord The Successor's Path" launch: - description: Launch - executable: WeatherLord_TheSuccessor's_Path.exe -'361990': + executable: "WeatherLord_TheSuccessor's_Path.exe" +"361990": installDir: Lakeview Cabin Collection launch: - config: @@ -176971,16 +173262,16 @@ oslist: macos description: Launch executable: LakeviewCabinCollection.app -'3620': - installDir: Zuma's Revenge +"3620": + installDir: "Zuma's Revenge" launch: - - arguments: ' ' + - arguments: " " executable: ZumasRevenge.exe -'36200': +"36200": installDir: Cake Mania 3 launch: - executable: CakeMania3.exe -'362020': +"362020": installDir: QueenAtArms launch: - config: @@ -176995,21 +173286,21 @@ oslist: linux executable: QueenAtArms.sh type: default -'362030': +"362030": installDir: Morgiana launch: - config: oslist: windows description: Launch executable: morgiana.exe -'362060': +"362060": installDir: Construct launch: - config: oslist: windows executable: Construct Embers of Life.exe type: default -'362070': +"362070": installDir: Metal Reaper Online launch: - arguments: /Steam @@ -177017,7 +173308,7 @@ oslist: windows description: Launch executable: MRLauncher.exe -'362090': +"362090": installDir: Siralim launch: - config: @@ -177032,18 +173323,18 @@ oslist: linux description: Launch executable: run.sh -'36210': +"36210": installDir: Monster Mash launch: - executable: MonsterMash.exe -'362130': +"362130": installDir: Ashes of Immortality launch: - config: oslist: windows description: Launch executable: game.exe -'362140': +"362140": installDir: Ashes of Immortality II launch: - config: @@ -177051,23 +173342,23 @@ description: Launch executable: game.exe - config: - ownsdlc: '366720' + ownsdlc: "366720" description: View Walkthrough - executable: Guide\\Ashes-Of-Immortality-2-Official-Guide.pdf -'362150': + executable: "Guide\\\\Ashes-Of-Immortality-2-Official-Guide.pdf" +"362150": installDir: Ashes of Immortality II - Bad Blood launch: - description: Launch executable: Game.exe type: none -'362160': - installDir: Sydney's World +"362160": + installDir: "Sydney's World" launch: - config: oslist: windows executable: game.exe type: none -'362290': +"362290": installDir: The Living Dungeon launch: - config: @@ -177075,12 +173366,12 @@ executable: TheLivingDungeon.exe type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: TheLivingDungeon.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: thelivingdungeon.x86_64 type: none @@ -177088,7 +173379,7 @@ oslist: macos executable: TheLivingDungeon.app type: none -'362310': +"362310": installDir: Dungeon League launch: - config: @@ -177103,18 +173394,18 @@ oslist: linux description: Launch executable: Dungeon League.x86 -'362350': +"362350": installDir: Boss Monster launch: - config: oslist: windows description: Launch executable: DBMGameSteam.exe -'362370': +"362370": installDir: Dog Fight launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: DogFight.exe @@ -177127,11 +173418,11 @@ oslist: macos executable: DogFight.app type: default -'362380': +"362380": installDir: Push Me Pull You launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: push me pull you.exe type: default @@ -177140,41 +173431,41 @@ executable: push me pull you.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: push me pull you.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: push me pull you.x86_64 type: default - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" config: - osarch: '64' + osarch: "64" oslist: windows description: Game (set display options) executable: push me pull you.exe type: option1 - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" config: - osarch: '32' + osarch: "32" oslist: linux description: Game (set display options) executable: push me pull you.x86 type: option3 - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" config: - osarch: '64' + osarch: "64" oslist: linux description: Game (set display options) executable: push me pull you.x86_64 type: option3 -'36240': +"36240": installDir: Kuros launch: - executable: Kuros.exe -'362400': +"362400": installDir: Regimental Chess launch: - config: @@ -177185,42 +173476,42 @@ oslist: macos description: Launch executable: RChess.app -'362410': - installDir: Adam's Venture Chronicles +"362410": + installDir: "Adam's Venture Chronicles" launch: - - description: Launch Adam's Venture Chronicles + - description: "Launch Adam's Venture Chronicles" executable: Binaries/Win32/VentureGame.exe workingdir: Binaries/Win32/ -'362490': +"362490": installDir: Exanima launch: - config: oslist: windows description: Launch executable: Exanima.exe -'362610': +"362610": installDir: High On Racing launch: - config: oslist: windows description: Launch executable: racer.exe -'362620': +"362620": installDir: Software Inc launch: - - arguments: '-logfile output_log.txt' + - arguments: "-logfile output_log.txt" config: oslist: windows description: Launch executable: Software Inc.exe type: none - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: Software Inc.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Software Inc.x86_64 @@ -177228,28 +173519,22 @@ oslist: macos description: Launch executable: Software Inc.app/Contents/MacOS/Software Inc -'362660': +"362660": installDir: Blue Rose launch: - config: oslist: windows description: Launch - description_loc: - english: Launch - executable: BlueRoseReprise-1.0-market\\BlueRoseReprise.exe + executable: "BlueRoseReprise-1.0-market\\\\BlueRoseReprise.exe" - config: oslist: macos description: Launch - description_loc: - english: Launch - executable: BlueRoseReprise-1.0-market\\BlueRoseReprise.app + executable: "BlueRoseReprise-1.0-market\\\\BlueRoseReprise.app" - config: oslist: linux description: Launch - description_loc: - english: Launch - executable: BlueRoseReprise-1.0-market\\BlueRoseReprise.sh -'362670': + executable: "BlueRoseReprise-1.0-market\\\\BlueRoseReprise.sh" +"362670": installDir: Curse of the Deadwood launch: - config: @@ -177257,7 +173542,7 @@ oslist: windows executable: Deadwood.exe type: default -'362680': +"362680": installDir: Fran Bow launch: - config: @@ -177272,33 +173557,33 @@ oslist: linux description: Launch executable: runner -'36270': +"36270": installDir: Granny in Paradise launch: - executable: GrannyInParadise.exe -'362740': +"362740": installDir: Age of Enigma launch: - config: oslist: windows description: Launch executable: Enigma.exe -'362780': +"362780": installDir: 18 WoS Extreme Trucker 2 launch: - config: oslist: windows description: Launch - executable: bin\\win_x86\\extremetrucker.exe -'362790': + executable: "bin\\\\win_x86\\\\extremetrucker.exe" +"362790": installDir: Word Wonders launch: - config: oslist: windows description: Launch executable: StartWordWonders.exe -'362800': {} -'362810': +"362800": {} +"362810": installDir: Fighties launch: - config: @@ -177313,7 +173598,7 @@ oslist: linux description: Launch executable: Fighties -'362830': +"362830": installDir: 3D Mini Golf launch: - config: @@ -177324,7 +173609,7 @@ oslist: macos description: Launch executable: minigolf2015.app -'362860': +"362860": installDir: Sylvio launch: - config: @@ -177335,21 +173620,21 @@ oslist: macos description: Launch executable: sylvio_mac.app -'362890': +"362890": installDir: Black Mesa launch: - - arguments: '-game bms +developer 0 -steam' + - arguments: "-game bms +developer 0 -steam" config: oslist: windows description: Launch executable: bms.exe - - arguments: '-game bms +developer 0 -steam' + - arguments: "-game bms +developer 0 -steam" config: oslist: linux description: Launch executable: bms.sh type: none -'362920': +"362920": installDir: Atlantis 2 Beyond Atlantis launch: - config: @@ -177360,7 +173645,7 @@ oslist: macos description: Launch executable: Atlantis 2.app -'362930': +"362930": installDir: Garfield Kart launch: - config: @@ -177378,188 +173663,188 @@ description: BETA MULTI OPT-IN executable: Garfield_Master7.exe type: default -'362940': +"362940": installDir: Courier of the Crypts launch: - config: oslist: windows description: Launch executable: CourierOfTheCrypts.exe -'362960': +"362960": installDir: Tyranny launch: - - arguments: '-steam' + - arguments: "-steam" config: oslist: windows description: Launch executable: Tyranny.exe type: none - - arguments: '-steam' + - arguments: "-steam" config: oslist: macos executable: Tyranny.app type: none - - arguments: '-steam' + - arguments: "-steam" config: oslist: linux executable: Tyranny.x86_64 type: none -'3630': +"3630": installDir: Bookworm Adventures Volume 2 launch: - - arguments: ' ' + - arguments: " " executable: BookwormAdventuresVol2.exe -'36300': +"36300": installDir: Cake Mania Main Street launch: - executable: CakeMania_MainStreet.exe -'363050': - installDir: Let's Explore The Airport with Buzzy +"363050": + installDir: "Let's Explore The Airport with Buzzy" launch: - - arguments: '--no-console -c \"scummvm-leta-opengl.ini\" airport-win' + - arguments: "--no-console -c \\\"scummvm-leta-opengl.ini\\\" airport-win" config: oslist: windows description: Launch - executable: ScummVM_Windows\\scummvm.exe - workingdir: ScummVM_Windows\\ - - arguments: '--no-console -c \"scummvm-leta-safe.ini\" airport-win' + executable: "ScummVM_Windows\\\\scummvm.exe" + workingdir: "ScummVM_Windows\\\\" + - arguments: "--no-console -c \\\"scummvm-leta-safe.ini\\\" airport-win" config: oslist: windows description: Play in Non-OpenGL Graphics Mode - executable: ScummVM_Windows\\scummvm.exe - workingdir: ScummVM_Windows\\ - - arguments: '-c \"scummvm-leta-opengl.ini\" airport-win' + executable: "ScummVM_Windows\\\\scummvm.exe" + workingdir: "ScummVM_Windows\\\\" + - arguments: "-c \\\"scummvm-leta-opengl.ini\\\" airport-win" config: oslist: macos description: Launch - executable: ScummVM_Mac\\ScummVM.app\\Contents\\MacOS\\scummvm - workingdir: ScummVM_Mac\\ - - arguments: '-c \"scummvm-leta-safe.ini\" airport-win' + executable: "ScummVM_Mac\\\\ScummVM.app\\\\Contents\\\\MacOS\\\\scummvm" + workingdir: "ScummVM_Mac\\\\" + - arguments: "-c \\\"scummvm-leta-safe.ini\\\" airport-win" config: oslist: macos description: Play in Non-OpenGL Graphics Mode - executable: ScummVM_Mac\\ScummVM.app\\Contents\\MacOS\\scummvm - workingdir: ScummVM_Mac\\ + executable: "ScummVM_Mac\\\\ScummVM.app\\\\Contents\\\\MacOS\\\\scummvm" + workingdir: "ScummVM_Mac\\\\" - config: oslist: linux description: Launch - executable: ScummVM_Linux\\launch_leta_opengl.sh - workingdir: ScummVM_Linux\\ + executable: "ScummVM_Linux\\\\launch_leta_opengl.sh" + workingdir: "ScummVM_Linux\\\\" - config: oslist: linux description: Play in Non-OpenGL Graphics Mode - executable: ScummVM_Linux\\launch_leta_safe.sh - workingdir: ScummVM_Linux\\ -'363060': - installDir: Let's Explore The Farm with Buzzy + executable: "ScummVM_Linux\\\\launch_leta_safe.sh" + workingdir: "ScummVM_Linux\\\\" +"363060": + installDir: "Let's Explore The Farm with Buzzy" launch: - - arguments: '--no-console -c \"scummvm-letf-opengl.ini\" farm-win' + - arguments: "--no-console -c \\\"scummvm-letf-opengl.ini\\\" farm-win" config: oslist: windows description: Launch - executable: ScummVM_Windows\\scummvm.exe - workingdir: ScummVM_Windows\\ - - arguments: '--no-console -c \"scummvm-letf-safe.ini\" farm-win' + executable: "ScummVM_Windows\\\\scummvm.exe" + workingdir: "ScummVM_Windows\\\\" + - arguments: "--no-console -c \\\"scummvm-letf-safe.ini\\\" farm-win" config: oslist: windows description: Play in Non-OpenGL Graphics Mode - executable: ScummVM_Windows\\scummvm.exe - workingdir: ScummVM_Windows\\ - - arguments: '-c \"scummvm-letf-opengl.ini\" farm-win' + executable: "ScummVM_Windows\\\\scummvm.exe" + workingdir: "ScummVM_Windows\\\\" + - arguments: "-c \\\"scummvm-letf-opengl.ini\\\" farm-win" config: oslist: macos description: Launch - executable: ScummVM_Mac\\ScummVM.app\\Contents\\MacOS\\scummvm - workingdir: ScummVM_Mac\\ - - arguments: '-c \"scummvm-letf-safe.ini\" farm-win' + executable: "ScummVM_Mac\\\\ScummVM.app\\\\Contents\\\\MacOS\\\\scummvm" + workingdir: "ScummVM_Mac\\\\" + - arguments: "-c \\\"scummvm-letf-safe.ini\\\" farm-win" config: oslist: macos description: Play in Non-OpenGL Graphics Mode - executable: ScummVM_Mac\\ScummVM.app\\Contents\\MacOS\\scummvm - workingdir: ScummVM_Mac\\ + executable: "ScummVM_Mac\\\\ScummVM.app\\\\Contents\\\\MacOS\\\\scummvm" + workingdir: "ScummVM_Mac\\\\" - config: oslist: linux description: Launch - executable: ScummVM_Linux\\launch_letf_opengl.sh - workingdir: ScummVM_Linux\\ + executable: "ScummVM_Linux\\\\launch_letf_opengl.sh" + workingdir: "ScummVM_Linux\\\\" - config: oslist: linux description: Play in Non-OpenGL Graphics Mode - executable: ScummVM_Linux\\launch_letf_safe.sh - workingdir: ScummVM_Linux\\ -'363070': - installDir: Let's Explore The Jungle with Buzzy + executable: "ScummVM_Linux\\\\launch_letf_safe.sh" + workingdir: "ScummVM_Linux\\\\" +"363070": + installDir: "Let's Explore The Jungle with Buzzy" launch: - - arguments: '--no-console -c \"scummvm-letj-opengl.ini\" jungle-win' + - arguments: "--no-console -c \\\"scummvm-letj-opengl.ini\\\" jungle-win" config: oslist: windows description: Launch - executable: ScummVM_Windows\\scummvm.exe - workingdir: ScummVM_Windows\\ - - arguments: '--no-console -c \"scummvm-letj-safe.ini\" jungle-win' + executable: "ScummVM_Windows\\\\scummvm.exe" + workingdir: "ScummVM_Windows\\\\" + - arguments: "--no-console -c \\\"scummvm-letj-safe.ini\\\" jungle-win" config: oslist: windows description: Play in Non-OpenGL Graphics Mode - executable: ScummVM_Windows\\scummvm.exe - workingdir: ScummVM_Windows\\ - - arguments: '-c \"scummvm-letj-opengl.ini\" jungle-win' + executable: "ScummVM_Windows\\\\scummvm.exe" + workingdir: "ScummVM_Windows\\\\" + - arguments: "-c \\\"scummvm-letj-opengl.ini\\\" jungle-win" config: oslist: macos description: Launch - executable: ScummVM_Mac\\ScummVM.app\\Contents\\MacOS\\scummvm - workingdir: ScummVM_Mac\\ - - arguments: '-c \"scummvm-letj-safe.ini\" jungle-win' + executable: "ScummVM_Mac\\\\ScummVM.app\\\\Contents\\\\MacOS\\\\scummvm" + workingdir: "ScummVM_Mac\\\\" + - arguments: "-c \\\"scummvm-letj-safe.ini\\\" jungle-win" config: oslist: macos description: Play in Non-OpenGL Graphics Mode - executable: ScummVM_Mac\\ScummVM.app\\Contents\\MacOS\\scummvm - workingdir: ScummVM_Mac\\ + executable: "ScummVM_Mac\\\\ScummVM.app\\\\Contents\\\\MacOS\\\\scummvm" + workingdir: "ScummVM_Mac\\\\" - config: oslist: linux description: Launch - executable: ScummVM_Linux\\launch_letj_opengl.sh - workingdir: ScummVM_Linux\\ + executable: "ScummVM_Linux\\\\launch_letj_opengl.sh" + workingdir: "ScummVM_Linux\\\\" - config: oslist: linux description: Play in Non-OpenGL Graphics Mode - executable: ScummVM_Linux\\launch_letj_safe.sh - workingdir: ScummVM_Linux\\ -'363090': - installDir: NOBUNAGA'S AMBITION Kakushin with Power Up Kit + executable: "ScummVM_Linux\\\\launch_letj_safe.sh" + workingdir: "ScummVM_Linux\\\\" +"363090": + installDir: "NOBUNAGA'S AMBITION Kakushin with Power Up Kit" launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: N12LauncherPK.exe nameLocalized: japanese: 信長の野望・革新 with パワーアップキット -'36310': +"36310": installDir: Westward IV launch: - executable: Westward_IV.exe -'363110': - installDir: NOBUNAGA'S AMBITION Tendou with Power Up Kit +"363110": + installDir: "NOBUNAGA'S AMBITION Tendou with Power Up Kit" launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: N13LauncherPK.exe nameLocalized: japanese: 信長の野望・天道 with パワーアップキット -'363130': +"363130": installDir: TOUKIDEN Kiwami launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: ToukidenKiwamiLauncher.exe nameLocalized: japanese: 討鬼伝 極 tchinese: 討鬼傳 極 -'363150': +"363150": installDir: Romance of the Three Kingdoms 13 launch: - executable: SAN13Launcher.exe @@ -177569,7 +173854,7 @@ japanese: 三國志13 koreana: 삼국지13 tchinese: 三國志13 -'363180': +"363180": installDir: tenshuGeneral launch: - config: @@ -177585,18 +173870,18 @@ oslist: macos executable: TenshuGeneral.sh type: none -'36320': +"36320": installDir: Iron Roses launch: - executable: IronRoses.exe -'363200': - installDir: Virus Jigglin' Fever +"363200": + installDir: "Virus Jigglin' Fever" launch: - config: oslist: windows description: Launch executable: Viruses.exe -'363220': +"363220": installDir: GitM launch: - config: @@ -177606,13 +173891,13 @@ - config: oslist: linux description: Launch - executable: ./gitm + executable: "./gitm" - config: - osarch: '64' + osarch: "64" oslist: macos description: Launch executable: gitm.app -'363240': +"363240": installDir: cavemancraig launch: - config: @@ -177623,7 +173908,7 @@ oslist: macos description: Launch executable: CavemanCraig.app -'363270': +"363270": installDir: O3DX launch: - config: @@ -177634,7 +173919,7 @@ oslist: macos description: Launch executable: O3DX.app -'363330': +"363330": installDir: Mind Snares Alices Journey launch: - config: @@ -177642,12 +173927,12 @@ description: Launch executable: MindSnares.exe - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: MindSnares_i386 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: MindSnares_amd64 @@ -177655,16 +173940,16 @@ oslist: macos description: Launch executable: mac_steam.app/Contents/MacOS/mac_steam -'363360': +"363360": installDir: Interstellar Rift launch: - - arguments: '-splashscreen' + - arguments: "-splashscreen" config: oslist: windows description: Launch - executable: \\Build\\IRLauncher.exe + executable: "\\\\Build\\\\IRLauncher.exe" type: default -'363410': +"363410": installDir: Always The Same Blue Sky launch: - config: @@ -177679,12 +173964,12 @@ oslist: linux description: Launch executable: AlwaysTheSameBlueSky.sh -'363420': +"363420": installDir: Leap of Fate launch: - description: Launch executable: LoF.exe -'363430': +"363430": installDir: DSERIES2 launch: - config: @@ -177702,7 +173987,7 @@ description: DSeries 2 Linux executable: DSERIES2.x86 type: none -'363440': +"363440": installDir: Suzy launch: - config: @@ -177711,7 +173996,7 @@ executable: Proteus.exe nameLocalized: japanese: ロックマン クラシックス コレクション -'363460': +"363460": installDir: Spermination launch: - config: @@ -177735,28 +174020,26 @@ executable: Spermination.bat type: vr - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch with OSVR API - description_loc: - english: Launch with OSVR API executable: Spermination-osvr.bat type: option1 -'363480': +"363480": installDir: GP Redux part 1 launch: - config: oslist: windows description: Launch executable: graveprosperityredux.exe -'363490': +"363490": installDir: Escape Machines launch: - config: oslist: windows description: Launch executable: EMBeta.exe -'363500': +"363500": installDir: Ossuary launch: - config: @@ -177766,8 +174049,6 @@ - config: oslist: macos description: Launch - description_loc: - english: Launch executable: OssuarySetup.app type: default - config: @@ -177775,12 +174056,12 @@ oslist: macos executable: OssuarySetup.app type: default -'363510': +"363510": installDir: STAR-BOX launch: - description: Launch executable: game.exe -'363520': +"363520": installDir: Goliath launch: - config: @@ -177791,7 +174072,7 @@ oslist: macos executable: Goliath.app type: default -'363530': +"363530": installDir: Robot Arena 3 launch: - config: @@ -177799,7 +174080,7 @@ description: Launch RobotArena3.exe executable: RobotArena3.exe type: default -'363580': +"363580": installDir: PING 1.5 launch: - config: @@ -177813,18 +174094,18 @@ executable: pingplus.app type: none - config: - osarch: '32' + osarch: "32" oslist: linux description: Linux x86 executable: pingplus.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: Linux x64 executable: pingplus.x86_64 type: none -'363600': +"363600": installDir: Holy Potatoes! A Weapon Shop! launch: - config: @@ -177836,23 +174117,23 @@ description: Launch Windows executable: HPAWS.exe - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch Linux 32 Bit executable: HPAWS.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch Linux 64 bit executable: HPAWS.x86_64 -'363610': +"363610": installDir: Botology launch: - config: oslist: windows description: Launch executable: BTL_Game.exe -'363620': +"363620": installDir: Tea Party Simulator 2015 launch: - config: @@ -177865,35 +174146,35 @@ description: Launch executable: TeaPartySimulator.app - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: TeaPartySimulator.x86_64 - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: TeaPartySimulator.x86 - - arguments: '-force-d3d9' + - arguments: "-force-d3d9" config: oslist: windows description: Launch (DirectX 9) executable: TeaPartySimulator.exe type: none -'363650': - installDir: Hacker's Beat +"363650": + installDir: "Hacker's Beat" launch: - config: oslist: windows description: Play - executable: Hacker'sBeat_steam.exe + executable: "Hacker'sBeat_steam.exe" type: default - config: oslist: windows description: Manual - executable: Hacker'sBeat_editmode_manual.pdf + executable: "Hacker'sBeat_editmode_manual.pdf" type: manual -'363660': +"363660": installDir: Holiday Island Simulator launch: - config: @@ -177903,33 +174184,33 @@ - config: oslist: macos description: Launch - executable: IFS.app\\Contents\\MacOS\\X - workingdir: IFS.app\\Contents\\MacOS -'363670': + executable: "IFS.app\\\\Contents\\\\MacOS\\\\X" + workingdir: "IFS.app\\\\Contents\\\\MacOS" +"363670": installDir: Seeders launch: - description: Seeders Puzzle Reboot (recommended) - executable: SeedersPR\\game.exe + executable: "SeedersPR\\\\game.exe" type: option1 workingdir: SeedersPR - description: Seeders Classic (old hardcore version) - executable: Seeders\\game.exe + executable: "Seeders\\\\game.exe" type: option1 workingdir: Seeders -'363680': +"363680": installDir: Battlefleet Gothic Armada launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: BattleFleetGothic.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: BattleFleetGothic_32.exe type: default -'363790': +"363790": installDir: Egg Returns Home launch: - config: @@ -177938,30 +174219,30 @@ executable: EggReturnsHome.app type: default - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: EggReturnsHome.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: EggReturnsHome_x86.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: EggReturnsHome.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: EggReturnsHome.x86_64 type: default -'363840': +"363840": installDir: Ancient Battle Rome launch: - config: @@ -177972,36 +174253,34 @@ oslist: macos executable: AncientBattleRome.app type: none -'363860': +"363860": installDir: MythForce launch: - config: betakey: default oslist: windows description: Launch MythForce - description_loc: - english: Launch MythForce executable: MythForce.exe type: default -'363900': +"363900": installDir: Super Goo Goo launch: - config: oslist: windows description: Launch - executable: PC\\SuperGooGoo.exe + executable: "PC\\\\SuperGooGoo.exe" - config: oslist: macos description: Launch - executable: Mac\\SuperGooGoo.app -'363920': + executable: "Mac\\\\SuperGooGoo.app" +"363920": installDir: SWR JST DX Selective Memory Erase Effect launch: - config: oslist: windows description: Launch executable: SwrJstDXSelectiveMemoryEraseEffect.exe -'363930': +"363930": installDir: Dead Age launch: - config: @@ -178018,7 +174297,7 @@ description: Launch executable: DeadAge.x86 type: none -'363940': +"363940": installDir: Solar Shifter EX launch: - config: @@ -178033,39 +174312,39 @@ oslist: linux executable: SolarShifter.x86 type: default -'363950': +"363950": installDir: Windscape launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: 32 bit version executable: Windscape.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows description: 64 bit version executable: Windscape.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Windscape.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Windscape.x86_64 type: default -'363960': +"363960": installDir: DevilsAndDemons launch: - config: oslist: windows description: Launch executable: DevilsAndDemons.exe -'363970': +"363970": installDir: Clicker Heroes launch: - config: @@ -178076,7 +174355,7 @@ oslist: macos description: Launch executable: ClickerHeroes.app -'363980': +"363980": installDir: Forget Me Not My Organic Garden launch: - config: @@ -178089,7 +174368,7 @@ executable: mog.app nameLocalized: japanese: わすれなオルガン -'364000': +"364000": installDir: Culina Hands in the Kitchen launch: - config: @@ -178104,7 +174383,7 @@ oslist: linux executable: Culina.x86 type: none -'364050': +"364050": installDir: Face It - A game to fight inner demons launch: - config: @@ -178119,7 +174398,7 @@ oslist: macos executable: FaceIt.app type: none -'364060': +"364060": installDir: Capsule Force launch: - config: @@ -178134,7 +174413,7 @@ oslist: linux description: Launch executable: CapsuleForce -'364100': +"364100": installDir: SRSZS launch: - config: @@ -178145,14 +174424,14 @@ oslist: macos description: Launch executable: SRSZS.app -'364110': +"364110": installDir: Swordsman launch: - - arguments: 'steam:1' + - arguments: "steam:1" executable: patcher/patcher.exe type: none workingdir: bin -'364130': +"364130": installDir: Ride the Bullet launch: - config: @@ -178164,16 +174443,16 @@ description: Launch executable: Ride the Bullet.exe - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Ride the Bullet.x86_64 - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: Ride the Bullet.x86 -'364190': +"364190": installDir: ASDAD launch: - config: @@ -178184,7 +174463,7 @@ oslist: macos executable: ASDAD type: default -'364200': +"364200": installDir: Farabel launch: - config: @@ -178196,16 +174475,16 @@ executable: Farabel.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Farabel.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Farabel.x86_64 type: default -'364210': +"364210": installDir: Sierra Ops launch: - config: @@ -178213,7 +174492,7 @@ description: Launch executable: SierraOps2019.exe type: default -'364230': +"364230": installDir: LuciusDemake launch: - config: @@ -178226,13 +174505,13 @@ description: Launch executable: LuciusDemake.x86 type: none -'364250': +"364250": installDir: XIIZEAL launch: - description: Launch executable: xiizeal.exe -'364260': - installDir: Warlock's Citadel +"364260": + installDir: "Warlock's Citadel" launch: - config: oslist: windows @@ -178247,14 +174526,14 @@ oslist: linux executable: wc type: default -'364270': +"364270": installDir: Lilly and Sasha Curse of the Immortals launch: - config: oslist: windows description: Launch executable: Lilly and Sasha.exe -'364300': +"364300": installDir: Space Rogue launch: - config: @@ -178265,14 +174544,14 @@ oslist: macos description: Launch executable: SpaceRogue.app -'364350': +"364350": installDir: TheApotheosisProject launch: - config: oslist: windows description: Launch executable: The Apotheosis Project.exe - - arguments: '--setup' + - arguments: "--setup" config: oslist: windows description: Setup @@ -178280,116 +174559,116 @@ - config: oslist: linux description: Launch - executable: ./TheApotheosisProject -'364360': + executable: "./TheApotheosisProject" +"364360": installDir: Total War WARHAMMER launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launcher executable: launcher/launcher.exe type: none workingdir: launcher/ - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: launcher/unsupported.exe type: none - config: betakey: cottage - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: Warhammer.exe type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: TotalWarhammer.sh type: none - config: - osarch: '64' + osarch: "64" oslist: macos executable: Total War Warhammer.app type: none -'364370': +"364370": installDir: The Sheltered launch: - config: oslist: windows description: Launch executable: game.exe -'364380': +"364380": installDir: CINEVEO - Virtual Reality Cinema launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: CINEVEO Cinema Themes (SteamVR)\\CINEVEO - 4D Movie Theater v4.0\\CINEVEO.exe + executable: "CINEVEO Cinema Themes (SteamVR)\\\\CINEVEO - 4D Movie Theater v4.0\\\\CINEVEO.exe" type: vr - workingdir: CINEVEO Cinema Themes (SteamVR)\\CINEVEO - 4D Movie Theater v4.0 + workingdir: "CINEVEO Cinema Themes (SteamVR)\\\\CINEVEO - 4D Movie Theater v4.0" - config: oslist: windows - description: '[ + ] Open Movie Playlist Directory' - executable: CINEVEO Cinema Themes (SteamVR)\\CINEVEO - 4D Movie Theater v4.0\\movies\\dir_shortcut.bat + description: "[ + ] Open Movie Playlist Directory" + executable: "CINEVEO Cinema Themes (SteamVR)\\\\CINEVEO - 4D Movie Theater v4.0\\\\movies\\\\dir_shortcut.bat" type: none - config: - osarch: '64' + osarch: "64" oslist: windows description: 1960 Drive-in Theater v2.0 - executable: CINEVEO Cinema Themes (SteamVR)\\CINEVEO - 1960 Drive-in Theater v2.0\\CINEVEO.exe + executable: "CINEVEO Cinema Themes (SteamVR)\\\\CINEVEO - 1960 Drive-in Theater v2.0\\\\CINEVEO.exe" type: vr - workingdir: CINEVEO Cinema Themes (SteamVR)\\CINEVEO - 1960 Drive-in Theater v2.0 + workingdir: "CINEVEO Cinema Themes (SteamVR)\\\\CINEVEO - 1960 Drive-in Theater v2.0" - config: oslist: windows - description: '[ + ] Open Movie Playlist Directory' - executable: CINEVEO Cinema Themes (SteamVR)\\CINEVEO - 1960 Drive-in Theater v2.0\\movies\\dir_shortcut.bat + description: "[ + ] Open Movie Playlist Directory" + executable: "CINEVEO Cinema Themes (SteamVR)\\\\CINEVEO - 1960 Drive-in Theater v2.0\\\\movies\\\\dir_shortcut.bat" type: none - config: - osarch: '64' + osarch: "64" oslist: windows description: The Void v3.0 - executable: CINEVEO Cinema Themes (SteamVR)\\CINEVEO - The Void v3.0\\CINEVEO.exe + executable: "CINEVEO Cinema Themes (SteamVR)\\\\CINEVEO - The Void v3.0\\\\CINEVEO.exe" type: vr - workingdir: CINEVEO Cinema Themes (SteamVR)\\CINEVEO - The Void v3.0 + workingdir: "CINEVEO Cinema Themes (SteamVR)\\\\CINEVEO - The Void v3.0" - config: oslist: windows - description: '[ + ] Open Movie Playlist Directory' - executable: CINEVEO Cinema Themes (SteamVR)\\CINEVEO - The Void v3.0\\movies\\dir_shortcut.bat + description: "[ + ] Open Movie Playlist Directory" + executable: "CINEVEO Cinema Themes (SteamVR)\\\\CINEVEO - The Void v3.0\\\\movies\\\\dir_shortcut.bat" type: none - config: - osarch: '64' + osarch: "64" oslist: windows description: Ocean Theater v2.0 - executable: CINEVEO Cinema Themes (SteamVR)\\CINEVEO - Ocean Theater v2.0\\CINEVEO.exe + executable: "CINEVEO Cinema Themes (SteamVR)\\\\CINEVEO - Ocean Theater v2.0\\\\CINEVEO.exe" type: vr - workingdir: CINEVEO Cinema Themes (SteamVR)\\CINEVEO - Ocean Theater v2.0 + workingdir: "CINEVEO Cinema Themes (SteamVR)\\\\CINEVEO - Ocean Theater v2.0" - config: oslist: windows - description: '[ + ] Open Movie Playlist Directory' - executable: CINEVEO Cinema Themes (SteamVR)\\CINEVEO - Ocean Theater v2.0\\movies\\dir_shortcut.bat + description: "[ + ] Open Movie Playlist Directory" + executable: "CINEVEO Cinema Themes (SteamVR)\\\\CINEVEO - Ocean Theater v2.0\\\\movies\\\\dir_shortcut.bat" type: none - config: - osarch: '64' + osarch: "64" oslist: windows description: Haunted Valley v2.0 - executable: CINEVEO Cinema Themes (SteamVR)\\CINEVEO - Haunted Valley v2.0\\CINEVEO.exe + executable: "CINEVEO Cinema Themes (SteamVR)\\\\CINEVEO - Haunted Valley v2.0\\\\CINEVEO.exe" type: vr - workingdir: CINEVEO Cinema Themes (SteamVR)\\CINEVEO - Haunted Valley v2.0 + workingdir: "CINEVEO Cinema Themes (SteamVR)\\\\CINEVEO - Haunted Valley v2.0" - config: oslist: windows - description: '[ + ] Open Movie Playlist Directory' - executable: CINEVEO Cinema Themes (SteamVR)\\CINEVEO - Haunted Valley v2.0\\movies\\dir_shortcut.bat + description: "[ + ] Open Movie Playlist Directory" + executable: "CINEVEO Cinema Themes (SteamVR)\\\\CINEVEO - Haunted Valley v2.0\\\\movies\\\\dir_shortcut.bat" type: none - config: oslist: windows - description: 'Internet Cinema v0.6 [ BETA TEST ]' - executable: CINEVEO Cinema Themes (SteamVR)\\CINEVEO - Internet Cinema v0.6 BETA\\CINEVEO.exe + description: "Internet Cinema v0.6 [ BETA TEST ]" + executable: "CINEVEO Cinema Themes (SteamVR)\\\\CINEVEO - Internet Cinema v0.6 BETA\\\\CINEVEO.exe" type: vr - workingdir: CINEVEO Cinema Themes (SteamVR)\\CINEVEO - Internet Cinema v0.6 BETA -'364390': + workingdir: "CINEVEO Cinema Themes (SteamVR)\\\\CINEVEO - Internet Cinema v0.6 BETA" +"364390": installDir: Downfall launch: - config: @@ -178397,7 +174676,7 @@ description: Launch executable: DOWNFALL.exe type: none - - arguments: '--setup' + - arguments: "--setup" config: oslist: windows description: Setup @@ -178406,19 +174685,19 @@ - config: oslist: windows description: Launch Downfall (2009 freeware version - English) - executable: downfall_2009\\Downfall.exe + executable: "downfall_2009\\\\Downfall.exe" type: none - config: oslist: windows description: Setup Downfall (2009 freeware version - English) - executable: downfall_2009\\winsetup.exe + executable: "downfall_2009\\\\winsetup.exe" type: none - config: oslist: linux description: Launch (Linux) - executable: ./Downfall + executable: "./Downfall" type: none -'364420': +"364420": installDir: Roguelands launch: - config: @@ -178434,15 +174713,15 @@ - config: oslist: macos description: Launch - executable: Roguelands.app\\Contents\\MacOS\\Roguelands + executable: "Roguelands.app\\\\Contents\\\\MacOS\\\\Roguelands" type: none - workingdir: Roguelands.app\\Contents\\MacOS + workingdir: "Roguelands.app\\\\Contents\\\\MacOS" - config: oslist: linux description: Launch executable: Roguelands.x86_64 type: none -'364450': +"364450": installDir: Freshman Year launch: - config: @@ -178452,8 +174731,8 @@ - config: oslist: windows description: Launch - executable: freshmanyear\\Freshman Year.exe -'364470': + executable: "freshmanyear\\\\Freshman Year.exe" +"364470": installDir: The Elder Scrolls Legends launch: - config: @@ -178464,38 +174743,38 @@ oslist: macos executable: app.app/Contents/MacOS/app type: default -'364480': +"364480": installDir: Red Goblin Cursed Forest launch: - - arguments: '-popupwindow ' + - arguments: "-popupwindow " config: oslist: windows description: Launch executable: RedGoblinV1.01.exe -'364500': +"364500": installDir: Endless Dead launch: - config: oslist: windows description: Launch executable: EndlessDead_VR.exe -'364510': +"364510": installDir: Transcendence launch: - config: oslist: windows description: Launch executable: transcendence.exe -'364630': +"364630": installDir: AirMechCommand launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: AirMech.exe type: vr -'364640': +"364640": installDir: FreeCell Quest launch: - config: @@ -178510,28 +174789,28 @@ oslist: linux executable: FreeCell Quest.x86 type: default -'364660': +"364660": installDir: Luminoso launch: - config: oslist: windows description: Launch executable: Luminoso.exe -'364670': +"364670": installDir: Skyflower launch: - config: oslist: windows description: Launch executable: Skyflower.exe -'364690': +"364690": installDir: SUPER DISTRO launch: - config: oslist: windows description: Launch executable: SUPERDITROXXL.exe -'364700': +"364700": installDir: Dawn of the Plow launch: - config: @@ -178545,12 +174824,12 @@ executable: dotp type: none - config: - osarch: '64' + osarch: "64" oslist: macos description: Launch executable: DawnofthePlow.app type: none -'364710': +"364710": installDir: Wonky Pigeon! launch: - config: @@ -178562,23 +174841,23 @@ description: Launch executable: WonkyPigeon.app - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: WonkyPigeon.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: WonkyPigeon.x86_64 -'364720': +"364720": installDir: Reagan Gorbachev launch: - config: oslist: windows description: Launch with Console executable: Reagan Gorbachev.exe -'364740': +"364740": installDir: Magi launch: - config: @@ -178589,14 +174868,14 @@ oslist: macos executable: Magi.app/Contents/MacOS/YoYo70 type: none -'364770': +"364770": installDir: Super Furball launch: - config: oslist: windows description: Launch executable: SuperFurball.exe -'364790': +"364790": installDir: Voyage to Farland launch: - config: @@ -178611,21 +174890,21 @@ oslist: macos description: Launch executable: voyage_launch.sh -'364800': +"364800": installDir: Star Trek Judgment Rights launch: - config: oslist: windows description: Launch executable: launch judgment rites.cmd -'364810': +"364810": installDir: Star Trek Starfleet Academy launch: - config: oslist: windows description: Launch executable: sfad3d.exe -'364820': +"364820": installDir: Star Trek Starfleet Command Gold Edition launch: - config: @@ -178633,18 +174912,18 @@ executable: sfc.exe type: none - description: Full Manual - executable: Manuals\\SFCfullMan.pdf + executable: "Manuals\\\\SFCfullMan.pdf" type: manual - description: Quick Manual - executable: Manuals\\SFCquick.pdf + executable: "Manuals\\\\SFCquick.pdf" type: manual - description: Supplemental Manual - executable: Manuals\\Supplemental Manual.pdf + executable: "Manuals\\\\Supplemental Manual.pdf" type: manual - description: Updated Ship Data - executable: Manuals\\Updated Ship Data.pdf + executable: "Manuals\\\\Updated Ship Data.pdf" type: manual -'364830': +"364830": installDir: BLEAK launch: - config: @@ -178653,33 +174932,33 @@ type: default - config: oslist: macos - executable: BLEAK.app\\Contents\\MacOS\\BLEAK + executable: "BLEAK.app\\\\Contents\\\\MacOS\\\\BLEAK" type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: BLEAK.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: BLEAK.x86 type: default -'364840': +"364840": installDir: N2O launch: - config: oslist: windows description: Launch executable: N2O.exe -'364850': +"364850": installDir: StartBolita launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch - executable: Laucher\\LaucherStartBolita.exe + executable: "Laucher\\\\LaucherStartBolita.exe" type: none - config: oslist: linux @@ -178691,21 +174970,21 @@ description: StartBolita executable: StartBolita.app type: default -'364880': +"364880": installDir: Genesis of Drones launch: - config: oslist: windows executable: GoD.exe type: default -'364890': +"364890": installDir: The Lost Battalion All Out Warfare launch: - config: oslist: windows description: Launch executable: The Lost Battalion All Out Warfare.exe -'364900': +"364900": installDir: Red Bit Ninja launch: - config: @@ -178713,7 +174992,7 @@ description: Launch executable: RedBitNinja.exe type: none -'364910': +"364910": installDir: Redemption launch: - config: @@ -178721,8 +175000,8 @@ description: Launch executable: REDEMPTION.exe type: none -'364930': - installDir: 'Koi-Koi Japan [Hanafuda playing cards]' +"364930": + installDir: "Koi-Koi Japan [Hanafuda playing cards]" launch: - config: oslist: windows @@ -178734,12 +175013,12 @@ description: Launch executable: KoiKoiJapan.app type: none -'364940': +"364940": installDir: Pony World 3 launch: - description: Launch executable: Pony World 3.exe -'364960': +"364960": installDir: Restricted-RPS launch: - config: @@ -178750,7 +175029,7 @@ - config: oslist: linux description: Launch Client - executable: ./client + executable: "./client" type: default - config: oslist: macos @@ -178759,16 +175038,16 @@ type: default - config: oslist: linux - executable: ./server.sh + executable: "./server.sh" type: server -'364980': +"364980": installDir: Bunker Constructor launch: - config: oslist: windows executable: BunkerConstructor.exe type: none -'365020': +"365020": installDir: Gynophobia launch: - config: @@ -178779,21 +175058,21 @@ oslist: macos description: Launch executable: Gynophobia.app -'365050': +"365050": installDir: Escape (2D Game) launch: - config: oslist: windows description: Launch executable: Escape.exe -'365060': +"365060": installDir: Titanis launch: - config: oslist: windows description: Launch executable: Titanis.exe -'365070': +"365070": installDir: One Manga Day launch: - config: @@ -178808,35 +175087,35 @@ oslist: macos description: Launch executable: OneMangaDay.app -'365080': +"365080": installDir: Unheard Screams - King Leopold II rule over the Congo launch: - config: oslist: windows description: Launch executable: Unheard Screams.exe -'365090': +"365090": installDir: Super Snow Fight launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: SuperSnowFight.exe - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch 32-bit executable: SuperSnowFightx86.exe type: none -'365110': +"365110": installDir: After All launch: - config: oslist: windows description: Launch executable: afterall2.exe -'365120': +"365120": installDir: Curse of the Crescent Isle DX launch: - config: @@ -178848,23 +175127,23 @@ description: Launch executable: CotCIDX.app - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: CotCIDX.bin.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: CotCIDX.bin.x86_64 -'365140': +"365140": installDir: DREAMFLIGHTVR launch: - config: oslist: windows executable: DreamflightVR.exe type: othervr -'365150': +"365150": installDir: Go Home - Rage incoming launch: - config: @@ -178879,7 +175158,7 @@ oslist: macos description: Launch executable: game.app -'365160': +"365160": installDir: Kona launch: - config: @@ -178897,21 +175176,21 @@ description: Metal Mode (Default) executable: Kona.app type: none - - arguments: '-force-opengl' + - arguments: "-force-opengl" config: - osarch: '64' + osarch: "64" oslist: macos description: OpenGL Mode executable: Kona.app type: none - - arguments: '-vrmode openvr' + - arguments: "-vrmode openvr" config: - osarch: '64' + osarch: "64" oslist: windows - ownsdlc: '886280' + ownsdlc: "886280" executable: Kona.exe type: vr -'365190': +"365190": installDir: Lethal Tactics launch: - config: @@ -178922,7 +175201,7 @@ oslist: macos description: Launch executable: LethalTactics.app -'365200': +"365200": installDir: LOUD on Planet X launch: - config: @@ -178933,7 +175212,7 @@ oslist: macos executable: loud.app type: default -'365210': +"365210": installDir: HollywoodVisionary launch: - config: @@ -178948,14 +175227,14 @@ oslist: linux description: Launch executable: HollywoodVisionary -'365240': +"365240": installDir: Galaxy Union launch: - config: oslist: windows description: Launch executable: Galaxy Union.exe -'365260': +"365260": installDir: Crash Dive launch: - config: @@ -178963,47 +175242,47 @@ description: Launch executable: CrashDive.exe type: none -'365270': +"365270": installDir: Shadow Hunter launch: - config: oslist: windows description: Launch executable: shadowhunter.exe -'365280': +"365280": installDir: Alexia Crow launch: - config: oslist: windows description: Launch executable: Alexia.exe -'365290': +"365290": installDir: House of Nightmares B-Movie Edition launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch - executable: Binaries\\Win32\\House of Nightmares.exe + executable: "Binaries\\\\Win32\\\\House of Nightmares.exe" type: default - workingdir: Binaries\\Win32 -'365300': + workingdir: "Binaries\\\\Win32" +"365300": installDir: Transmissions Element 120 launch: - - arguments: '-game te120' + - arguments: "-game te120" config: oslist: windows description: Launch executable: hl2.exe type: default - - arguments: '-game te120' + - arguments: "-game te120" config: oslist: linux description: Launch executable: hl2.sh type: default -'365310': {} -'365320': +"365310": {} +"365320": installDir: Quadrant launch: - config: @@ -179015,7 +175294,7 @@ description: Launch executable: quadrant.x86 type: none -'365330': +"365330": installDir: iaidoka_interlude launch: - config: @@ -179023,14 +175302,14 @@ description: Launch executable: Game.exe type: none -'365340': +"365340": installDir: The Way of the Pixelated Fist launch: - config: oslist: windows description: Launch executable: The Way of the Pixelated Fist.exe -'365350': +"365350": installDir: How to Take Off Your Mask launch: - config: @@ -179045,31 +175324,29 @@ japanese: 貴方の仮面の外し方 koreana: 가면을 벗는 방법 russian: Как снять маску -'365360': +"365360": installDir: Battle Brothers launch: - config: oslist: windows description: Launch - executable: win32\\BattleBrothers.exe - - arguments: '-reset' + executable: "win32\\\\BattleBrothers.exe" + - arguments: "-reset" config: oslist: windows description: Reset Configuration - executable: win32\\BattleBrothers.exe + executable: "win32\\\\BattleBrothers.exe" type: none - config: - ownsdlc: '365381' + ownsdlc: "365381" description: Open Digital Lore & Art Book - executable: Extras\\Lore & Art Book.pdf + executable: "Extras\\\\Lore & Art Book.pdf" type: none - config: - ownsdlc: '1910050' + ownsdlc: "1910050" description: Open The Caretaker - A Battle Brothers Comic - description_loc: - english: Open The Caretaker - A Battle Brothers Comic - executable: Extras\\The Caretaker - A Battle Brothers Comic.pdf -'365400': + executable: "Extras\\\\The Caretaker - A Battle Brothers Comic.pdf" +"365400": installDir: Spoko and Poko launch: - config: @@ -179080,21 +175357,21 @@ oslist: macos description: Launch executable: spoko&poko.app -'365420': +"365420": installDir: Apollo4x launch: - config: oslist: windows description: Launch executable: apollo4x.exe -'365430': +"365430": installDir: EBW launch: - config: oslist: windows description: Launch executable: EBW-STEAM.exe -'365440': +"365440": installDir: Platfinity launch: - config: @@ -179102,7 +175379,7 @@ description: Launch executable: Platfinity.exe type: none -'365450': +"365450": installDir: Hacknet launch: - config: @@ -179119,14 +175396,14 @@ description: Linux Launch executable: Hacknet type: none -'365460': +"365460": installDir: CHARIOT WARS launch: - config: oslist: windows description: Launch executable: ChariotWars.exe -'365480': +"365480": installDir: Ravenmark launch: - config: @@ -179134,7 +175411,7 @@ description: Launch executable: autorun.exe type: none -'365500': +"365500": installDir: quadrant launch: - config: @@ -179152,8 +175429,8 @@ - config: oslist: windows description: upload workshop item - executable: workshop\\uploadWorkshopItem.exe -'365510': + executable: "workshop\\\\uploadWorkshopItem.exe" +"365510": installDir: Flip launch: - config: @@ -179161,7 +175438,7 @@ description: Launch executable: Flip.exe type: none -'365560': +"365560": installDir: Battle of the Bulge launch: - config: @@ -179174,7 +175451,7 @@ description: Launch executable: BattleOfTheBulge.app type: none -'365580': +"365580": installDir: Beeswing launch: - config: @@ -179189,25 +175466,25 @@ oslist: linux description: Launch executable: beeswing1.12 -'365590': - installDir: Tom Clancy's The Division +"365590": + installDir: "Tom Clancy's The Division" launch: - - arguments: '-uplay_steam_mode' + - arguments: "-uplay_steam_mode" config: - osarch: '64' + osarch: "64" oslist: windows - ownsdlc: '571030' + ownsdlc: "571030" executable: TheDivision.exe type: default - - arguments: '-upc_steam_free_package_id 12439 -uplay_steam_mode' + - arguments: "-upc_steam_free_package_id 12439 -uplay_steam_mode" config: - osarch: '64' + osarch: "64" oslist: windows - ownsdlc: '571031' + ownsdlc: "571031" description: Free Weekend executable: TheDivision.exe type: default -'365620': +"365620": installDir: WarBirds - World War II Combat Aviation launch: - config: @@ -179224,7 +175501,7 @@ executable: WarBirds.app/Contents/MacOS/WarBirds type: default workingdir: WarBirds.app/Contents/Resources -'365660': +"365660": installDir: OlliOlli2 launch: - config: @@ -179234,12 +175511,12 @@ - config: oslist: macos description: Launch - executable: OlliOlli2.app\\Contents\\MacOS\\OlliOlli2 + executable: "OlliOlli2.app\\\\Contents\\\\MacOS\\\\OlliOlli2" - config: oslist: linux description: Launch executable: olliolli2 -'365680': +"365680": installDir: BRAWL launch: - config: @@ -179251,31 +175528,31 @@ description: Launch executable: BRAWL.app - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: BRAWL.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: BRAWL.x86_64 -'365730': +"365730": installDir: Gilbert Goodmate launch: - config: oslist: windows description: Launch - executable: Bin\\Gilbert.exe - workingdir: Bin\\ -'365750': + executable: "Bin\\\\Gilbert.exe" + workingdir: "Bin\\\\" +"365750": installDir: Rugby World Cup 2015 launch: - config: oslist: windows description: Launch executable: RWC_2015.exe -'365760': +"365760": installDir: Vektor Wars launch: - config: @@ -179290,7 +175567,7 @@ oslist: linux description: Launch executable: VectorWars.x86 -'365770': +"365770": installDir: Volume launch: - config: @@ -179300,8 +175577,8 @@ - config: oslist: macos description: Launch - executable: Volume.app\\Contents\\MacOS\\Volume -'365800': + executable: "Volume.app\\\\Contents\\\\MacOS\\\\Volume" +"365800": installDir: AdvertCity launch: - config: @@ -179310,44 +175587,44 @@ executable: AdvertCity.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: start_linux.sh type: default - config: - osarch: '64' + osarch: "64" oslist: macos description: Launch executable: AdvertCity.app/Contents/MacOS/run.sh type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: start_linux.sh type: default -'365810': +"365810": installDir: Flying Tigers Shadows Over China launch: - description: Launch executable: SETUPAPPLICATION.exe type: none -'365820': {} -'365850': +"365820": {} +"365850": installDir: Starchaser Priestess of the Night Sky launch: - config: oslist: windows description: Launch executable: Hoshimiko.exe -'365860': +"365860": installDir: Spaceman Sparkles 2 launch: - config: oslist: windows description: Launch executable: Spaceman Sparkles 2 - v1.4.exe -'365870': +"365870": installDir: Below Kryll launch: - arguments: steamapp=1 @@ -179355,7 +175632,7 @@ oslist: windows description: Launch executable: Kryll.exe -'365880': +"365880": installDir: Mirrored - Chapter 1 launch: - config: @@ -179366,12 +175643,12 @@ type: none - config: betakey: Internal Beta - osarch: '32' + osarch: "32" oslist: linux executable: Mirrored.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: Mirrored.x86 type: none @@ -179379,7 +175656,7 @@ oslist: macos executable: Mirrored.app type: none -'365890': +"365890": installDir: Heroes of Normandie launch: - config: @@ -179387,7 +175664,7 @@ description: Launch executable: autorun.exe type: default -'365900': +"365900": installDir: Pixel Dungeon launch: - config: @@ -179402,49 +175679,49 @@ oslist: linux description: Launch executable: PD -'365930': +"365930": installDir: STOORM - Yellow Edition launch: - config: oslist: windows description: Launch executable: STOORM-Game.exe -'365960': +"365960": installDir: rFactor 2 launch: - config: oslist: windows description: rFactor 2 - executable: Launcher\\Launch rFactor.exe + executable: "Launcher\\\\Launch rFactor.exe" type: default workingdir: Launcher - config: betakey: beta oslist: windows description: rFactor 2 Graphics Configuration - executable: Bin32\\rF Config.exe + executable: "Bin32\\\\rF Config.exe" type: config - config: oslist: windows description: rFactor 2 Graphics Configuration - executable: Bin32\\rF Config.exe + executable: "Bin32\\\\rF Config.exe" type: config - arguments: +modmode config: betakey: beta oslist: windows description: rFactor 2 Dev Mode - executable: Launcher\\Launch rFactor.exe + executable: "Launcher\\\\Launch rFactor.exe" type: editor workingdir: Launcher - arguments: +modmode config: oslist: windows description: rFactor 2 Dev Mode - executable: Launcher\\Launch rFactor.exe + executable: "Launcher\\\\Launch rFactor.exe" type: editor workingdir: Launcher -'365980': +"365980": installDir: Useless Box launch: - config: @@ -179457,23 +175734,23 @@ executable: Useless Box.app type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: Useless Box.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: Useless Box.x86_64 type: none -'366000': +"366000": installDir: Rogue System launch: - config: oslist: windows executable: RogueSystemSim.exe type: none -'366010': +"366010": installDir: Generic Space Shooter launch: - config: @@ -179488,41 +175765,41 @@ oslist: linux executable: GSS.exe type: default -'366040': - installDir: Iggy's Egg Adventure +"366040": + installDir: "Iggy's Egg Adventure" launch: - config: oslist: windows description: Launch - executable: Binaries\\Win32\\IEA.exe + executable: "Binaries\\\\Win32\\\\IEA.exe" - config: oslist: macos executable: UDKGame.app type: none -'366050': +"366050": installDir: Star Balls launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: StarBalls.exe - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: StarBalls.exe - config: - osarch: '32' + osarch: "32" oslist: macos description: Launch executable: StarBalls.app - config: - osarch: '64' + osarch: "64" oslist: macos description: Launch executable: StarBalls.app -'366060': +"366060": installDir: Teddy Terror Early Access launch: - config: @@ -179530,7 +175807,7 @@ description: Launch executable: TeddyTerror_EarlyAccessVersion1_10_1.exe type: none -'366090': +"366090": installDir: Colony Survival launch: - config: @@ -179538,12 +175815,12 @@ executable: colonyclient.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: colonyclient.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: colonyclient.x86 type: default @@ -179551,14 +175828,14 @@ oslist: macos executable: colonyclient.app type: default -'366100': +"366100": installDir: Champions Of Chaos 2 launch: - config: oslist: windows description: Launch executable: Champions of Chaos 2.exe -'366160': +"366160": installDir: Hounds The Last Hope launch: - arguments: +Authkey 1 @@ -179566,7 +175843,7 @@ oslist: windows executable: HoundsApp.exe type: none -'366180': +"366180": installDir: Disposable Heroes Content launch: - config: @@ -179574,13 +175851,13 @@ description: Launch executable: Disposableheroes_4.6.exe type: none -'36620': +"36620": installDir: Forsaken World launch: - - arguments: 'steam:1' + - arguments: "steam:1" executable: patcher.exe workingdir: update -'366210': +"366210": installDir: Sleep Attack launch: - config: @@ -179591,7 +175868,7 @@ oslist: macos description: Launch executable: Sleep Attack.app -'366220': +"366220": installDir: Wurm Unlimited launch: - config: @@ -179604,62 +175881,60 @@ executable: WurmLauncher/WurmLauncher type: default workingdir: WurmLauncher/ -'366230': +"366230": installDir: BASEBALL STARS 2 launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: bstars2.exe -'366240': +"366240": installDir: GAROU MARK OF THE WOLVES launch: - config: oslist: windows description: Launch executable: Garou.exe -'366250': +"366250": installDir: METAL SLUG launch: - config: oslist: windows description: Launch executable: mslug1.exe -'366260': +"366260": installDir: METAL SLUG 2 launch: - config: oslist: windows description: Launch executable: mslug2.exe -'366270': +"366270": installDir: SHOCK TROOPERS launch: - description: SHOCK TROOPERS executable: shocktro.exe type: default -'366280': +"366280": installDir: TWINKLE STAR SPRITES launch: - description: Launch executable: twinspri.exe -'366290': +"366290": installDir: Carp Fishing Simulator launch: - config: oslist: windows description: Launch Carp Fish Sim - description_loc: - english: Launch Carp Fish Sim executable: Carp Fish Sim.exe type: default -'36630': +"36630": installDir: Rusty Hearts launch: - - arguments: 'steam:1' + - arguments: "steam:1" executable: clientlauncher.exe -'366320': +"366320": installDir: Seasons after Fall launch: - config: @@ -179667,7 +175942,7 @@ description: Launch executable: Seasons after Fall.exe type: default - - arguments: '-force-opengl' + - arguments: "-force-opengl" config: oslist: linux executable: Seasons after Fall.x86 @@ -179676,14 +175951,14 @@ oslist: macos executable: Seasons after Fall.app type: none -'366350': +"366350": installDir: ROGUS - Kingdom of The Lost Souls launch: - config: oslist: windows description: Launch executable: nw.exe -'366380': +"366380": installDir: MYTH launch: - config: @@ -179698,35 +175973,33 @@ oslist: macos executable: MYTH.app type: none -'366400': +"366400": installDir: DeadStar launch: - - arguments: >- - -i $/needle/loaders/startup.sgpr -l $/needle/ui/loadingscreen/scripts/initial_loading_screen.sgpr -d - $/needle_win.bpdeps -vc network_ServerAddress=\"auto\" -vc inputRequiresAppFocus=true + - arguments: "-i $/needle/loaders/startup.sgpr -l $/needle/ui/loadingscreen/scripts/initial_loading_screen.sgpr -d $/needle_win.bpdeps -vc network_ServerAddress=\\\"auto\\\" -vc inputRequiresAppFocus=true" config: - osarch: '64' + osarch: "64" oslist: windows description: Launch - executable: Bin64\\DeadStar.exe + executable: "Bin64\\\\DeadStar.exe" type: default -'366410': +"366410": installDir: Ludoku launch: - config: oslist: windows description: Launch executable: Ludoku.exe -'366440': +"366440": installDir: Savage Resurrection launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: Savage/Binaries/Win64/Savage-Win64-Shipping.exe type: default -'366460': +"366460": installDir: Pavel Quest launch: - config: @@ -179737,36 +176010,36 @@ oslist: macos description: Launch executable: PavelQuest.app -'366510': +"366510": installDir: Ruzar - The Life Stone launch: - config: oslist: macos description: Launch - executable: Contents\\MacOS\\Ruzar - The Life Stone + executable: "Contents\\\\MacOS\\\\Ruzar - The Life Stone" - config: oslist: windows description: Launch executable: Ruzar_TheLifeStone.exe - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Ruzar_TheLifeStone.x86_64 - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: Ruzar_TheLifeStone.x86 -'366570': +"366570": installDir: CastleAbra launch: - config: oslist: windows description: Launch executable: CastleAbra.exe -'366580': {} -'366590': +"366580": {} +"366590": installDir: Prompt launch: - config: @@ -179782,21 +176055,21 @@ description: Launch executable: Prompt.app type: none -'366600': +"366600": installDir: Withstand Apotheosis launch: - config: oslist: windows description: Launch executable: Withstand.exe -'366610': +"366610": installDir: Not without my donuts launch: - config: oslist: windows description: Launch executable: Notwithoutmydonuts1.6.exe -'366620': +"366620": installDir: Broken Bots launch: - config: @@ -179808,20 +176081,20 @@ description: Play Broken Bots executable: Broken Bots.app - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Broken Bots.x86_64 -'366640': +"366640": installDir: Shiness launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Shiness x64 - executable: \\Binaries\\Win64\\ShinessGame.exe + executable: "\\\\Binaries\\\\Win64\\\\ShinessGame.exe" type: option1 -'366670': +"366670": installDir: The Travels of Marco Polo launch: - config: @@ -179832,21 +176105,21 @@ oslist: macos description: Launch executable: Marco Polo.app -'366690': +"366690": installDir: Cue Club 2 launch: - config: oslist: windows description: Launch executable: cueclub2.exe -'366700': +"366700": installDir: Breakout Invaders launch: - config: oslist: windows description: Launch executable: Breakout Invaders.exe -'366760': +"366760": installDir: Adorables launch: - config: @@ -179854,25 +176127,25 @@ executable: adorables.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Adorables.x86_64 type: default -'366780': +"366780": installDir: Magical Eyes - Red is for Anguish launch: - executable: magical_eyes.exe type: none -'366800': +"366800": installDir: Mainland launch: - description: Launch executable: instead-mainland.exe -'366810': +"366810": installDir: Dungeon Hero launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch (64-bit DirectX 10/11) executable: Dungeon Hero.exe @@ -179886,7 +176159,7 @@ description: Launch executable: Dungeon Hero - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch (64-bit DirectX 10/11) executable: Dungeon Hero.exe @@ -179899,7 +176172,7 @@ oslist: linux executable: Dungeon Hero type: vr -'366860': +"366860": installDir: Spy Bugs launch: - config: @@ -179911,96 +176184,96 @@ description: Launch executable: SpyBugs.app - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: SpyBugs.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: SpyBugs.x86_64 -'366870': +"366870": installDir: Narcosis launch: - - arguments: '-vrmode none' + - arguments: "-vrmode none" config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: Narcosis.exe type: default - - arguments: '-debug' + - arguments: "-debug" config: betakey: playtest - osarch: '64' + osarch: "64" oslist: windows description: Narcosis (-debug) executable: Narcosis.exe type: option1 - config: - osarch: '64' + osarch: "64" oslist: macos executable: Narcosis.app type: none - - arguments: '-vrmode oculus' + - arguments: "-vrmode oculus" config: - osarch: '64' + osarch: "64" oslist: windows executable: Narcosis.exe type: othervr - - arguments: '-vrmode OpenVR' + - arguments: "-vrmode OpenVR" config: - osarch: '64' + osarch: "64" oslist: windows executable: Narcosis.exe type: vr - config: oslist: windows description: DLC folder - executable: DLC\\Utils\\autoOpen.bat + executable: "DLC\\\\Utils\\\\autoOpen.bat" type: none - config: oslist: macos description: DLC folder executable: DLC/Utils/autoOpen.sh type: none - - arguments: '-force-d3d11 -vrmode none' + - arguments: "-force-d3d11 -vrmode none" config: - osarch: '64' + osarch: "64" oslist: windows description: Narcosis (forced dx11) executable: Narcosis.exe type: option1 -'366890': {} -'366910': +"366890": {} +"366910": installDir: The Long Journey Home launch: - - arguments: '-NOEPICREPORT' + - arguments: "-NOEPICREPORT" config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: tljh.exe type: none - - arguments: '-demo' + - arguments: "-demo" config: betakey: events - osarch: '64' + osarch: "64" oslist: windows description: Demo Mode executable: tljh.exe type: none - - arguments: '-tljh_carebear_me -tljh_report -NOLOGTOMEMORY' + - arguments: "-tljh_carebear_me -tljh_report -NOLOGTOMEMORY" config: - betakey: 'development, loca, testing, closed_beta' + betakey: "development, loca, testing, closed_beta" oslist: windows description: Testing Mode executable: tljh.exe type: none - config: oslist: windows - ownsdlc: '648710' + ownsdlc: "648710" description: Bonus Content executable: open_bonus_win.bat type: none @@ -180010,14 +176283,14 @@ type: default - config: oslist: macos - ownsdlc: '648710' + ownsdlc: "648710" description: Bonus Content executable: open_bonus_osx.sh type: none nameLocalized: schinese: 漫漫归途 - The Long Journey Home tchinese: 漫漫歸途 - The Long Journey Home -'366920': +"366920": installDir: Ruler by Default launch: - config: @@ -180030,42 +176303,42 @@ type: default - config: oslist: macos - executable: RulerbyDefault.app\\Contents\\MacOS\\RulerbyDefault + executable: "RulerbyDefault.app\\\\Contents\\\\MacOS\\\\RulerbyDefault" type: default -'366960': +"366960": installDir: SECTOR launch: - config: oslist: windows description: Launch executable: SECTOR.exe -'366970': +"366970": installDir: Mighty Switch Force! Hyper Drive Edition launch: - config: oslist: windows description: Launch executable: MSF_HD.exe -'366990': +"366990": installDir: PuzzleStation launch: - config: oslist: windows description: Launch executable: PuzzleStation.exe -'36700': +"36700": installDir: The Scourge Project Ep 1 - 2 launch: - - arguments: '-seekfreeloading -fullscreen -installed' - executable: \\Binaries\\Win32\\ScourgeGame.exe -'367000': + - arguments: "-seekfreeloading -fullscreen -installed" + executable: "\\\\Binaries\\\\Win32\\\\ScourgeGame.exe" +"367000": installDir: Fine Sweeper launch: - config: oslist: windows description: Launch executable: Fine Sweeper.exe -'367010': +"367010": installDir: Vernons Legacy launch: - config: @@ -180073,7 +176346,7 @@ description: Launch executable: proj_mansion_unreal.exe type: none -'367020': +"367020": installDir: No One But You launch: - config: @@ -180088,7 +176361,7 @@ oslist: linux description: Launch executable: NOBY.sh -'367030': +"367030": installDir: Lootfest launch: - config: @@ -180096,7 +176369,7 @@ description: Closed beta executable: Game.exe type: default -'367040': +"367040": installDir: InsanZ - Retro Survival Horror launch: - config: @@ -180114,21 +176387,21 @@ description: DLC2 Insanz - DR. TEST HOME executable: /DLC/Insanz - DR. TEST HOME.exe type: none -'367050': +"367050": installDir: Vindicator Uprising launch: - config: oslist: windows description: Launch executable: Vindicator-Uprising.exe -'367060': +"367060": installDir: Helena The 3rd launch: - config: oslist: windows description: Launch executable: Helena.exe -'367080': +"367080": installDir: Songbringer launch: - config: @@ -180139,21 +176412,21 @@ - config: oslist: windows description: Launch - executable: windows\\Songbringer.exe + executable: "windows\\\\Songbringer.exe" type: none - arguments: linux config: oslist: linux executable: linux/Songbringer type: none -'367110': +"367110": installDir: Dustbowl launch: - config: oslist: windows executable: Dustbowl.exe type: none -'367120': +"367120": installDir: Seduce Me the Otome launch: - config: @@ -180168,54 +176441,54 @@ oslist: linux description: Launch executable: Seduce Me Official.sh -'367140': +"367140": installDir: Wish Project launch: - executable: WishProject.exe type: default -'367220': +"367220": installDir: EgyptianSettlementGold launch: - config: oslist: windows description: Launch executable: EgyptianSettlementGold.exe -'367240': +"367240": installDir: Avenging Angel launch: - config: oslist: windows description: Launch executable: AvengingAngel.exe -'367260': +"367260": installDir: Dwarven Brawl Bros launch: - config: oslist: windows description: Launch executable: Dwarven Brawl Bros.exe -'367270': +"367270": installDir: Angels Fall First launch: - - arguments: '-SEEKFREELOADING' + - arguments: "-SEEKFREELOADING" config: oslist: windows description: Launch - executable: .\\Binaries\\AFFLift.exe - - arguments: '-SEEKFREELOADING -DX11' + executable: ".\\\\Binaries\\\\AFFLift.exe" + - arguments: "-SEEKFREELOADING -DX11" config: oslist: windows description: Experimental DX11 mode - executable: .\\Binaries\\AFFLift.exe + executable: ".\\\\Binaries\\\\AFFLift.exe" type: none -'367300': +"367300": installDir: Pixel Star launch: - config: oslist: windows description: Launch executable: PIXELSTAR.exe -'367340': +"367340": installDir: FleetCOMM launch: - config: @@ -180223,7 +176496,7 @@ description: FleetCOMM Single Player executable: RogueStar.exe type: option1 -'367350': +"367350": installDir: Demon Hearts launch: - config: @@ -180233,13 +176506,13 @@ type: default - config: oslist: macos - executable: DemonHearts.app\\Contents\\MacOS\\DemonHearts + executable: "DemonHearts.app\\\\Contents\\\\MacOS\\\\DemonHearts" type: default - config: oslist: linux executable: DemonHearts.x86 type: default -'367430': +"367430": installDir: redshift_blueshift launch: - config: @@ -180251,11 +176524,11 @@ executable: redshiftblueshift type: default - config: - osarch: '64' + osarch: "64" oslist: macos executable: redshiftblueshift.app/Contents/MacOS/redshiftblueshift type: default -'367450': +"367450": installDir: Poly Bridge launch: - config: @@ -180267,21 +176540,21 @@ description: Launch executable: Poly Bridge.app - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: polybridge.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: polybridge.x86_64 -'367500': +"367500": installDir: DDDA launch: - description: Launch executable: DDDA.exe -'367520': +"367520": installDir: Hollow Knight launch: - config: @@ -180298,14 +176571,14 @@ description: Launch executable: hollow_knight.x86_64 type: none -'367550': +"367550": installDir: Rugby League Team Manager 2015 launch: - config: oslist: windows description: Launch executable: RLTM2015_StartUp.exe -'367570': +"367570": installDir: oO launch: - config: @@ -180317,34 +176590,32 @@ description: Launch executable: ooMac.app - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: oo.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: oo.x86_64 -'367580': +"367580": installDir: Hook launch: - config: oslist: windows description: Launch - description_loc: - english: Launch executable: Hook.exe - config: oslist: macos description: Launch executable: hook.app - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: hook.x86_64 -'367600': +"367600": installDir: Skyshine launch: - config: @@ -180356,21 +176627,21 @@ description: Skyshines BEDLAM for OSX executable: Skyshines BEDLAM.app/Contents/MacOS/Skyshines BEDLAM type: default -'367660': +"367660": installDir: UfoPilot Astro-Creeps Elite launch: - config: oslist: windows description: Launch executable: ace_steam.exe -'367700': +"367700": installDir: SHOFER Race Driver launch: - config: oslist: windows description: Launch executable: SHOFER Race Driver.exe -'367710': +"367710": installDir: Afterlife Empire launch: - config: @@ -180399,9 +176670,9 @@ - arguments: MultiLow config: oslist: windows - description: 'Safe Mode, Run if there is still an OpenGL Error' + description: "Safe Mode, Run if there is still an OpenGL Error" executable: Afterlife Empire.exe -'367780': +"367780": installDir: aerosquest launch: - config: @@ -180412,7 +176683,7 @@ oslist: macos description: Launch executable: aerosquest.app -'367800': +"367800": installDir: Diamond Deeps launch: - config: @@ -180427,34 +176698,34 @@ oslist: macos description: Launch executable: Diamond Deeps.app -'367820': +"367820": installDir: Decromancer launch: - - arguments: '-popupwindow' + - arguments: "-popupwindow" config: oslist: windows description: Launch executable: decromancer.exe type: default - - arguments: '-popupwindow' + - arguments: "-popupwindow" config: oslist: macos description: Launch executable: decromancer.app type: default - - arguments: '-popupwindow' + - arguments: "-popupwindow" config: - osarch: '32' + osarch: "32" oslist: linux executable: Decromancer.x86 type: default - - arguments: '-popupwindow' + - arguments: "-popupwindow" config: - osarch: '64' + osarch: "64" oslist: linux executable: Decromancer.x86_64 type: default -'367990': +"367990": installDir: 3D Paraglider launch: - config: @@ -180466,29 +176737,29 @@ description: Launcher executable: 3dparaglider.app - config: - osarch: '32' + osarch: "32" oslist: linux description: Launcher executable: 3dparaglider.x86 -'368000': +"368000": installDir: 100ft Robot Golf launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch 100ft Robot Golf (64-bit) executable: golf64.exe type: none -'368040': +"368040": installDir: ExoCorps launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch - executable: Binaries\\Win32\\UDK.exe + executable: "Binaries\\\\Win32\\\\UDK.exe" type: none -'368050': +"368050": installDir: Almightree-TheLastDreamer launch: - config: @@ -180500,32 +176771,32 @@ description: Launch executable: Almightree-TheLastDreamer.app - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: Almightree-TheLastDreamer.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Almightree-TheLastDreamer.x86_64 type: none -'368070': +"368070": installDir: Sniper Ghost Warrior 3 launch: - config: oslist: windows description: Launch - executable: win_x64\\SGW3.exe + executable: "win_x64\\\\SGW3.exe" type: none -'368080': +"368080": installDir: AURION_GAME launch: - - executable: \\AURION_GAME\\Aurion.exe + - executable: "\\\\AURION_GAME\\\\Aurion.exe" type: default - workingdir: AURION_GAME\\ -'368140': + workingdir: "AURION_GAME\\\\" +"368140": installDir: Tobari and the Night of the Curious Moon launch: - config: @@ -180538,22 +176809,22 @@ executable: Tobari nameLocalized: japanese: 不思議な月の夜のとばり -'368150': +"368150": installDir: Rising Angels Hope launch: - config: oslist: windows - executable: Rising_Angels_Hope-all\\Rising_Angels_Hope-all\\Rising Angels Hope.exe + executable: "Rising_Angels_Hope-all\\\\Rising_Angels_Hope-all\\\\Rising Angels Hope.exe" type: none - config: oslist: macos - executable: Rising_Angels_Hope-all\\Rising_Angels_Hope-all\\Rising Angels Hope.app\\Contents\\MacOS\\Rising Angels Hope + executable: "Rising_Angels_Hope-all\\\\Rising_Angels_Hope-all\\\\Rising Angels Hope.app\\\\Contents\\\\MacOS\\\\Rising Angels Hope" type: none - config: oslist: linux - executable: Rising_Angels_Hope-all\\Rising_Angels_Hope-all\\Rising Angels Hope.sh + executable: "Rising_Angels_Hope-all\\\\Rising_Angels_Hope-all\\\\Rising Angels Hope.sh" type: none -'368160': +"368160": installDir: WORLD END ECONOMiCA episode.02 launch: - config: @@ -180564,23 +176835,23 @@ type: default - config: oslist: windows - executable: WEE2 HD\\WEE2.exe + executable: "WEE2 HD\\\\WEE2.exe" type: option1 - config: oslist: macos executable: WEE2 HD/WEE2.app type: option1 - config: - osarch: '32' + osarch: "32" oslist: linux executable: WEE2 HD/WEE2.x86 type: option1 - config: - osarch: '64' + osarch: "64" oslist: linux executable: WEE2 HD/WEE2.x86_64 type: option1 -'368180': +"368180": installDir: Polyball launch: - config: @@ -180594,25 +176865,25 @@ executable: polyball.app type: none - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: polyball.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: polyball.x86_64 type: none -'368220': +"368220": installDir: Close Combat Panthers in the Fog launch: - config: oslist: windows description: Launch executable: autorun.exe -'368230': +"368230": installDir: Kingdom launch: - config: @@ -180630,7 +176901,7 @@ description: Launch executable: Kingdom.x86 type: none -'368250': +"368250": installDir: Valiant Resurrection launch: - config: @@ -180638,51 +176909,42 @@ description: Launch executable: game.exe - config: - ownsdlc: '368510' + ownsdlc: "368510" description: View Walkthrough - executable: Guide\\Valiant-Strategy-Guide.pdf -'368260': - installDir: Marvel's Midnight Suns + executable: "Guide\\\\Valiant-Strategy-Guide.pdf" +"368260": + installDir: "Marvel's Midnight Suns" launch: - - arguments: '-saveddirsuffix=Steam' + - arguments: "-saveddirsuffix=Steam" config: - betakey: >- - firaxis_qa_main_shipping, firaxis_qa_main_test, firaxis_qa_rtm_shipping, firaxis_qa_rtm_test, - firaxis_stable_rtm, denuvo, press_build, ageratings, nvidia_stable, amd_stable_test, - amd_stable_shipping,2kqa_shipping,firaxis_stable_main,2kqa_dlc_a,2kqa_dlc_b, amd_stable_dev + betakey: "firaxis_qa_main_shipping, firaxis_qa_main_test, firaxis_qa_rtm_shipping, firaxis_qa_rtm_test, firaxis_stable_rtm, denuvo, press_build, ageratings, nvidia_stable, amd_stable_test, amd_stable_shipping,2kqa_shipping,firaxis_stable_main,2kqa_dlc_a,2kqa_dlc_b, amd_stable_dev" description: Play Midnight Suns - description_loc: - english: Play Midnight Suns executable: MidnightSuns.exe type: default - - arguments: '-saveddirsuffix=Steam' + - arguments: "-saveddirsuffix=Steam" config: oslist: windows description: Launch the 2K Launcher - description_loc: - english: Launch the 2K Launcher - executable: 2KLauncher\\LauncherPatcher.exe - - arguments: '-saveddirsuffix=Steam' + executable: "2KLauncher\\\\LauncherPatcher.exe" + - arguments: "-saveddirsuffix=Steam" config: betakey: firaxis_qa_main_test oslist: linux description: Test do not use - description_loc: - english: Test do not use executable: MidnightSuns.sh nameLocalized: japanese: マーベル ミッドナイト・サンズ koreana: 마블 미드나잇 선즈 schinese: 漫威暗夜之子 tchinese: 漫威午夜之子 -'368290': +"368290": installDir: Visibility launch: - config: oslist: windows description: Launch executable: Visibility.exe -'368310': +"368310": installDir: Marble Muse launch: - config: @@ -180697,27 +176959,27 @@ oslist: linux description: Launch from Linux executable: Marble Muse.x86 -'368340': +"368340": installDir: CrossCode launch: - - arguments: '--startedFromSteam' + - arguments: "--startedFromSteam" config: oslist: windows description: Launch executable: CrossCode.exe type: default - - arguments: '--in-process-gpu --startedFromSteam' + - arguments: "--in-process-gpu --startedFromSteam" config: oslist: linux description: Launch executable: CrossCode type: default - - arguments: '--startedFromSteam' + - arguments: "--startedFromSteam" config: oslist: macos executable: CrossCode.app type: default -'368360': +"368360": installDir: 60 Seconds! launch: - config: @@ -180729,16 +176991,16 @@ description: Launch executable: 60Seconds.app - config: - osarch: '32' + osarch: "32" oslist: linux executable: 60Seconds.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: 60Seconds.x86_64 type: none -'368370': +"368370": installDir: HER STORY launch: - config: @@ -180749,7 +177011,7 @@ oslist: windows description: Launch executable: HerStory.exe -'368390': +"368390": installDir: The Darkside Detective launch: - config: @@ -180758,67 +177020,67 @@ type: default - config: oslist: macos - executable: thedarksidedetective.app\\Contents\\MacOS\\thedarksidedetective + executable: "thedarksidedetective.app\\\\Contents\\\\MacOS\\\\thedarksidedetective" type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: thedarksidedetective.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: thedarksidedetective.x86_64 type: default -'368420': +"368420": installDir: Mirage Arcane Warfare launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Latte Shipping executable: TBL-Win64-Shipping.exe type: default - - arguments: '-novsync -noverifygc -uncapfps' + - arguments: "-novsync -noverifygc -uncapfps" config: - osarch: '64' + osarch: "64" oslist: windows - ownsdlc: '536820' + ownsdlc: "536820" description: Test -- TBL-Win64-Test.exe executable: TBL-Win64-Test.exe type: none - - arguments: '-log' + - arguments: "-log" config: - osarch: '64' + osarch: "64" oslist: windows - ownsdlc: '536820' + ownsdlc: "536820" description: Development -- TBL.exe executable: TBL.exe type: none - - arguments: '-log' + - arguments: "-log" config: - osarch: '64' + osarch: "64" oslist: windows - ownsdlc: '536820' + ownsdlc: "536820" description: Debug -- TBL-Win64-Debug.exe executable: TBL-Win64-Debug.exe type: none - config: - osarch: '64' + osarch: "64" oslist: windows - ownsdlc: '536820' - description: 'Shipping, no wrapper' - executable: TBL\\Binaries\\Win64\\TBL-Win64-Shipping.exe + ownsdlc: "536820" + description: "Shipping, no wrapper" + executable: "TBL\\\\Binaries\\\\Win64\\\\TBL-Win64-Shipping.exe" type: none -'368430': +"368430": installDir: Through the Woods launch: - executable: Through the Woods.exe type: default - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" executable: Through the Woods.exe type: config -'368450': +"368450": installDir: Rememoried launch: - config: @@ -180835,24 +177097,24 @@ description: Launch executable: rememoried.x86 type: none -'368500': - installDir: Assassin's Creed Syndicate +"368500": + installDir: "Assassin's Creed Syndicate" launch: - - arguments: '-uplay_steam_mode' + - arguments: "-uplay_steam_mode" config: - osarch: '64' + osarch: "64" oslist: windows description: Launch Final executable: ACS.exe type: none -'368570': +"368570": installDir: Beat Da Beat launch: - config: oslist: windows executable: Beat Da Beat.exe type: none -'368590': +"368590": installDir: AlbertandOtto launch: - config: @@ -180865,87 +177127,78 @@ executable: AlbertandOtto.app type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: AlbertandOtto.x86_64 type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: AlbertandOtto.x86 type: none -'368600': +"368600": installDir: Terra Nova Strike Force Centauri launch: - - arguments: '-conf dosbox_terranova.conf -conf dosbox_terranova_launch_windows.conf -noconsole' + - arguments: "-conf dosbox_terranova.conf -conf dosbox_terranova_launch_windows.conf -noconsole" config: oslist: windows description: Launch - executable: dosbox_windows\\dosbox.exe - workingdir: dosbox_windows\\ - - arguments: '-conf dosbox_terranova.conf -conf dosbox_terranova_launch_windows.conf -noconsole' + executable: "dosbox_windows\\\\dosbox.exe" + workingdir: "dosbox_windows\\\\" + - arguments: "-conf dosbox_terranova.conf -conf dosbox_terranova_launch_windows.conf -noconsole" config: oslist: windows description: Play Terra Nova in DOSBox Daum - executable: dosbox_windows\\daum\\dosbox.exe - workingdir: dosbox_windows\\daum\\ - - arguments: '-conf dosbox_terranova.conf -conf dosbox_terranova_config_windows.conf -noconsole' + executable: "dosbox_windows\\\\daum\\\\dosbox.exe" + workingdir: "dosbox_windows\\\\daum\\\\" + - arguments: "-conf dosbox_terranova.conf -conf dosbox_terranova_config_windows.conf -noconsole" config: oslist: windows description: Terra Nova - Configuration - executable: dosbox_windows\\dosbox.exe + executable: "dosbox_windows\\\\dosbox.exe" type: none - workingdir: dosbox_windows\\ + workingdir: "dosbox_windows\\\\" - config: oslist: linux description: Launch - executable: dosbox_linux\\launch_terranova_game.sh - workingdir: dosbox_linux\\ + executable: "dosbox_linux\\\\launch_terranova_game.sh" + workingdir: "dosbox_linux\\\\" - config: oslist: linux description: Play Terra Nova in DOSBox Daum - executable: dosbox_linux\\daum\\launch_terranova_game_daum.sh - workingdir: dosbox_linux\\daum\\ + executable: "dosbox_linux\\\\daum\\\\launch_terranova_game_daum.sh" + workingdir: "dosbox_linux\\\\daum\\\\" - config: oslist: linux description: Terra Nova - Configuration - executable: dosbox_linux\\launch_terranova_config.sh + executable: "dosbox_linux\\\\launch_terranova_config.sh" type: none - workingdir: dosbox_linux\\ + workingdir: "dosbox_linux\\\\" - config: oslist: macos description: Launch executable: Terra Nova.app -'368610': +"368610": installDir: The Enchanted Cave 2 launch: - config: oslist: windows description: Launch - description_loc: - english: Launch - sc_schinese: 启动 executable: Enchanted Cave 2.exe type: none - config: oslist: macos description: Launch - description_loc: - english: Launch - sc_schinese: 启动 executable: Enchanted Cave 2.app type: none - config: oslist: linux description: Launch - description_loc: - english: Launch - sc_schinese: 启动 executable: Enchanted Cave 2 type: none nameLocalized: sc_schinese: 魔法洞穴2 -'368620': +"368620": installDir: Timespinner launch: - config: @@ -180956,8 +177209,6 @@ - config: oslist: macos description: Launch - description_loc: - english: Launch executable: Timespinner.app type: default - config: @@ -180965,16 +177216,16 @@ description: Launch executable: Timespinner type: default -'368640': - installDir: htoL#NiQ The Firefly Diary +"368640": + installDir: "htoL#NiQ The Firefly Diary" launch: - config: oslist: windows description: Launch executable: Hotaru.exe nameLocalized: - japanese: htoL#NiQ-ホタルノニッキ- -'368650': + japanese: "htoL#NiQ-ホタルノニッキ-" +"368650": installDir: Dark Echo launch: - config: @@ -180986,21 +177237,21 @@ description: Launch executable: DarkEcho.app - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: DarkEcho.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: DarkEcho.x86_64 -'368680': +"368680": installDir: Super Mutant Alien Assault launch: - description: Launch executable: SuperMutantAlienAssault.exe -'368690': +"368690": installDir: Chronoclysm launch: - config: @@ -181013,7 +177264,7 @@ oslist: linux executable: Chronoclysm.x86 type: default - - arguments: '-editor' + - arguments: "-editor" config: oslist: windows executable: Chronoclysm.exe @@ -181023,33 +177274,33 @@ oslist: linux executable: Chronoclysm.x86 type: default - - arguments: '-editor' + - arguments: "-editor" config: oslist: linux executable: Chronoclysm.x86 type: editor - - arguments: '-event' + - arguments: "-event" config: betakey: beta oslist: windows description: Event Mode executable: Chronoclysm.exe type: option1 -'368700': +"368700": installDir: Mysterious Space launch: - config: oslist: windows description: Launch executable: MysteriousSpace.exe -'368710': +"368710": installDir: Power of Love launch: - config: oslist: windows description: Launch executable: power of love.exe -'368720': +"368720": installDir: Sirius Online launch: - config: @@ -181058,7 +177309,7 @@ description: Launch executable: SiriusOnlineLauncher.exe type: default -'368730': +"368730": installDir: No Time To Explain Remastered launch: - config: @@ -181073,38 +177324,38 @@ oslist: linux description: Launch executable: NoTimeToExplain.x86 -'368740': +"368740": installDir: Obliteracers launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: Obliteracers.exe type: default -'368750': +"368750": installDir: Nebula launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: Nebula Online.exe type: default - config: oslist: macos - executable: Nebula Online.app\\Contents\\MacOS\\Nebula Online + executable: "Nebula Online.app\\\\Contents\\\\MacOS\\\\Nebula Online" type: none - config: oslist: linux executable: Nebula Online.x86_64 type: none - config: - osarch: '64' + osarch: "64" oslist: windows executable: Nebula Online.exe type: none -'368760': +"368760": installDir: PH3 - Vikings launch: - config: @@ -181118,8 +177369,8 @@ - config: oslist: linux description: Launch - executable: ./Playing_History_-_Vikings.x86 -'368770': + executable: "./Playing_History_-_Vikings.x86" +"368770": installDir: PFAD - Floodings launch: - config: @@ -181130,7 +177381,7 @@ oslist: macos description: Launch executable: PFAD - Floodings.app -'368780': +"368780": installDir: PFAD - Corruption launch: - config: @@ -181141,7 +177392,7 @@ oslist: macos description: Launch executable: PFAD - Corruption.app -'368790': +"368790": installDir: OreLight launch: - config: @@ -181156,14 +177407,14 @@ oslist: linux description: Launch executable: OreLight.x86 -'368800': +"368800": installDir: Apocalypse launch: - config: oslist: windows description: Launch executable: Apocalypse.exe -'368830': +"368830": installDir: TowerOfFlight launch: - config: @@ -181175,16 +177426,16 @@ description: Launch executable: TowerOfFlight.app - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: TowerOfFlight.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: TowerOfFlight.x86_64 -'368860': +"368860": installDir: Garbage Day launch: - config: @@ -181193,18 +177444,18 @@ type: none - config: oslist: macos - executable: gday410.app\\Contents\\MacOS\\gday410 + executable: "gday410.app\\\\Contents\\\\MacOS\\\\gday410" type: none -'368880': +"368880": installDir: Mystery Maze Of Balthasar Castle launch: - config: - osarch: '32' + osarch: "32" oslist: linux executable: Mystery Maze Of Balthasar Castle.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: Mystery Maze Of Balthasar Castle.x86_64 type: none @@ -181214,10 +177465,10 @@ type: none - config: oslist: macos - executable: Mystery Maze Of Balthasar Castle.app\\Contents\\MacOS\\Mystery Maze Of Balthasar Castle + executable: "Mystery Maze Of Balthasar Castle.app\\\\Contents\\\\MacOS\\\\Mystery Maze Of Balthasar Castle" type: none - workingdir: Mystery Maze Of Balthasar Castle.app\\Contents\\MacOS -'368890': + workingdir: "Mystery Maze Of Balthasar Castle.app\\\\Contents\\\\MacOS" +"368890": installDir: ARK The Great Sphere launch: - config: @@ -181232,22 +177483,22 @@ oslist: linux description: Launch executable: ark3.x86 -'368900': {} -'368950': +"368900": {} +"368950": installDir: Jigoku Kisetsukan launch: - config: oslist: windows description: Launch executable: Jigoku_Kisetsukan.exe -'368970': +"368970": installDir: Haywire on Fuel Station Zeta launch: - config: oslist: windows description: Launch executable: Haywire.exe -'368980': +"368980": installDir: Force of Elements launch: - config: @@ -181255,19 +177506,19 @@ description: Launch executable: forceOfElements.exe type: default -'368990': +"368990": installDir: Despair launch: - config: oslist: windows description: Launch executable: Despair.exe -'36900': +"36900": installDir: Angle Of Attack launch: - description: Angle Of Attack executable: aoa.exe -'369000': +"369000": installDir: Pongo launch: - config: @@ -181282,14 +177533,14 @@ oslist: linux description: Launch executable: Pongo.x86 -'369030': +"369030": installDir: Vinyl launch: - config: oslist: windows executable: Vinyl.exe type: default -'369040': +"369040": installDir: Yargis - Space Melee launch: - description: Launch Game @@ -181300,11 +177551,11 @@ type: editor - description: Launch Dedicated Server Config executable: YargisServerConfig.exe - - arguments: ' /width 1024 /height 768 /windowed' + - arguments: " /width 1024 /height 768 /windowed" description: Launch - Video Safe Mode executable: Yargis.exe type: safemode -'369060': +"369060": installDir: Amygdala launch: - config: @@ -181321,7 +177572,7 @@ description: Launch executable: amygdala.command workingdir: amygdala.app/Content/MacOS -'369070': +"369070": installDir: Slain! launch: - config: @@ -181336,7 +177587,7 @@ oslist: linux description: Launch executable: Slain.x86_64 -'369080': +"369080": installDir: Age of Survival launch: - config: @@ -181344,19 +177595,19 @@ description: Launch Age of Survival Early Access 2020 executable: Age_of_Survival_2020.exe type: default -'36910': +"36910": installDir: All Aspect Warfare launch: - description: All Aspect Warfare executable: aaw.exe -'369100': +"369100": installDir: Predator Simulator launch: - config: oslist: windows description: Launch executable: Predator Simulator.exe -'369110': +"369110": installDir: The Swindle launch: - config: @@ -181371,7 +177622,7 @@ oslist: linux description: Launch executable: TheSwindle.x86 -'369120': +"369120": installDir: Invisible Apartment Zero launch: - config: @@ -181379,7 +177630,7 @@ description: Launch executable: ia0.exe - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: ia0.sh @@ -181387,42 +177638,42 @@ oslist: macos description: Launch executable: ia0.app/Contents/MacOS/ia0 -'369180': +"369180": installDir: Soulcraft launch: - config: oslist: windows description: Launch executable: Soulcraft.exe -'369200': +"369200": installDir: firstassault launch: - config: oslist: windows - executable: .\\Shipping\\nxsteam.exe + executable: ".\\\\Shipping\\\\nxsteam.exe" type: default -'369230': +"369230": installDir: Kung Fu Panda Showdown of Legendary Legends launch: - config: oslist: windows description: Launch executable: KFP.exe -'369270': +"369270": installDir: Megatect launch: - config: oslist: windows description: Launch executable: Megatect.exe -'369280': +"369280": installDir: Hidden Mysteries Titanic launch: - config: oslist: windows description: Launch executable: Titanic.exe -'369290': +"369290": installDir: Airport Madness World Edition launch: - config: @@ -181433,25 +177684,25 @@ oslist: windows description: Launch executable: AMWE.exe -'369300': +"369300": installDir: Adventure Time Finn and Jake Investigations launch: - config: oslist: windows description: Launch executable: AdventureTimeFJI.exe -'369310': +"369310": installDir: Monstro Battle Tactics launch: - config: oslist: windows - description: 'Launch Monstro: Battle Tactics' + description: "Launch Monstro: Battle Tactics" executable: Monstro Battle Tactics.exe - config: oslist: macos executable: Monstro.app type: default -'369360': +"369360": installDir: Car Washer Summer of the Ninja launch: - config: @@ -181459,22 +177710,22 @@ description: Launch executable: CarWasher.exe type: none -'369370': +"369370": installDir: Crossfire Dungeons launch: - - arguments: '-Xms512m -Xmx512m -jar CrossfireDungeon.jar' + - arguments: "-Xms512m -Xmx512m -jar CrossfireDungeon.jar" config: oslist: windows description: Launch - executable: jre8\\bin\\javaw.exe -'369390': + executable: "jre8\\\\bin\\\\javaw.exe" +"369390": installDir: Scourge of War Waterloo launch: - config: oslist: windows executable: sowwl.exe type: default -'369400': +"369400": installDir: Let the Cat In launch: - config: @@ -181485,7 +177736,7 @@ oslist: macos description: Launch executable: ltci_mac.app -'369420': +"369420": installDir: 9 Clues 2 The Ward launch: - config: @@ -181493,12 +177744,12 @@ description: Launch executable: Ward.exe - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: Ward_i386 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Ward_amd64 @@ -181506,13 +177757,13 @@ oslist: macos description: Launch executable: mac_steam.app/Contents/MacOS/mac_steam -'369440': +"369440": installDir: immortal launch: - description: Launch executable: immortal.exe type: none -'369460': +"369460": installDir: Professor Why launch: - config: @@ -181527,16 +177778,16 @@ oslist: linux executable: The Quantum Eye.x86 type: none -'369530': +"369530": installDir: Void Destroyer 2 launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: Void Destroyer 2.exe type: default -'369550': +"369550": installDir: BlackseaOdyssey launch: - config: @@ -181554,7 +177805,7 @@ description: Launch executable: BlackseaOdyssey.x86 type: default -'369560': +"369560": installDir: The Story Goes On launch: - config: @@ -181570,7 +177821,7 @@ oslist: macos executable: The Story Goes On.app type: none -'369570': +"369570": installDir: Spectra launch: - config: @@ -181585,7 +177836,7 @@ oslist: macos description: Launch executable: spectra.app -'369580': +"369580": installDir: NotTheNameWeWanted launch: - config: @@ -181600,9 +177851,9 @@ - config: oslist: macos description: Launch - executable: NotTheNameWeWanted.app\\Contents\\MacOS\\Mac_Runner + executable: "NotTheNameWeWanted.app\\\\Contents\\\\MacOS\\\\Mac_Runner" type: none -'369620': +"369620": installDir: F-1 drive launch: - config: @@ -181613,7 +177864,7 @@ oslist: windows description: Launch executable: F-1_drive_launcher.exe -'369640': +"369640": installDir: Treeker The Lost Glasses launch: - config: @@ -181621,14 +177872,14 @@ description: Launch executable: Treeker.exe type: none -'369700': +"369700": installDir: Tanzia launch: - config: oslist: windows description: Launch executable: Tanzia.exe -'369830': +"369830": installDir: Toonstruck launch: - config: @@ -181643,13 +177894,13 @@ oslist: linux executable: PlayGame.sh type: default -'369840': {} -'369860': +"369840": {} +"369860": installDir: Brain Guzzler launch: - description: Launch executable: Brain Guzzler.exe -'369890': +"369890": installDir: Riddled Corpses launch: - config: @@ -181664,7 +177915,7 @@ oslist: macos description: Launch executable: Riddled_Corpses_steam.app -'369990': +"369990": installDir: Gremlins launch: - config: @@ -181676,25 +177927,25 @@ executable: Gremlins_Inc.app type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: Gremlins_Inc.x86 - config: oslist: linux executable: Gremlins_Inc.x86_64 -'3700': +"3700": installDir: Sniper Elite launch: - description: Play Sniper Elite executable: SniperElite.exe -'37000': +"37000": installDir: The Void launch: - - executable: bin\\win32\\Game.exe + - executable: "bin\\\\win32\\\\Game.exe" - description: Launch The Void Configuration Utility - executable: bin\\win32\\Config.exe -'370010': {} -'370020': + executable: "bin\\\\win32\\\\Config.exe" +"370010": {} +"370020": installDir: Templar Battleforce launch: - config: @@ -181705,21 +177956,21 @@ - config: oslist: macos description: Launch - executable: TemplarBattleforce.app\\Contents\\MacOS\\TemplarBattleforce + executable: "TemplarBattleforce.app\\\\Contents\\\\MacOS\\\\TemplarBattleforce" type: default - config: oslist: linux description: Launch executable: battlefront type: default -'370040': +"370040": installDir: Lilly and Sasha Nexus of Souls launch: - config: oslist: windows description: Launch executable: NexusOfSouls.exe -'370050': +"370050": installDir: Scarab Tales launch: - config: @@ -181734,7 +177985,7 @@ oslist: linux description: Launch executable: Scarab_Tales.x86 -'370060': +"370060": installDir: Coffee Shop Tycoon launch: - config: @@ -181745,7 +177996,7 @@ oslist: macos executable: Coffee Shop Tycoon.app type: none -'370070': +"370070": installDir: Wyrmsun launch: - config: @@ -181754,12 +178005,12 @@ executable: launcher.exe type: none - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: wyrmsun32 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: wyrmsun64 @@ -181775,7 +178026,7 @@ description: Launch executable: wyrmsun.exe type: none -'370080': +"370080": installDir: Breezeblox launch: - config: @@ -181787,16 +178038,16 @@ description: Launch executable: Breezeblox.app - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: Breezeblox.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Breezeblox.x86_64 -'370090': +"370090": installDir: Axis Football 2015 launch: - config: @@ -181811,12 +178062,12 @@ oslist: linux description: Launch executable: AxisFootball15.x86 -'37010': +"37010": installDir: Ninja Blade launch: - executable: NinjaBlade.exe -'370100': {} -'370120': +"370100": {} +"370120": installDir: Pirate Code launch: - config: @@ -181827,7 +178078,7 @@ oslist: macos executable: Pirate Code.app type: default -'370130': +"370130": installDir: Lion Quest launch: - config: @@ -181840,33 +178091,33 @@ description: Launch executable: Lion Quest.exe type: default - - arguments: '-force-opengl' + - arguments: "-force-opengl" config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: Lion Quest.x86 type: none - - arguments: '-force-opengl' + - arguments: "-force-opengl" config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Lion Quest.x86_64 type: default -'370140': +"370140": installDir: Nebulous launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Nebulous.exe type: default - config: oslist: macos - executable: Nebulous.app\\Contents\\MacOS\\Nebulous + executable: "Nebulous.app\\\\Contents\\\\MacOS\\\\Nebulous" type: default -'370150': +"370150": installDir: LOOP launch: - config: @@ -181881,7 +178132,7 @@ oslist: macos description: Launch executable: LOOP.app -'370160': +"370160": installDir: Front Wars launch: - config: @@ -181892,7 +178143,7 @@ oslist: windows description: Launch executable: FrontWars.exe -'370170': +"370170": installDir: Dale Hardshovel HD launch: - config: @@ -181901,7 +178152,7 @@ executable: DaleHD.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: Linux 64 executable: DaleHD.x86_64 @@ -181911,28 +178162,28 @@ description: Mac executable: DaleHD.app type: default -'370190': +"370190": installDir: Ruzh Delta Z launch: - config: oslist: windows description: Launch executable: RuzhDeltaZ.exe -'370200': +"370200": installDir: Two Steps Back launch: - config: oslist: windows description: Launch executable: Two Steps Backwards.exe -'370210': +"370210": installDir: FIRMA launch: - config: oslist: windows executable: firma.exe type: vr -'370220': +"370220": installDir: AnimalGods launch: - config: @@ -181940,7 +178191,7 @@ executable: ag.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: ag_lin.x86_64 type: none @@ -181949,19 +178200,19 @@ executable: ag_mac.app type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: ag_lin.x86 type: none -'370240': +"370240": installDir: NBA 2K16 launch: - description: Default executable: nba2k16.exe -'370270': +"370270": installDir: Jim Power Lost Dimension launch: - - arguments: '-conf JimPower.conf -noconsole -c' + - arguments: "-conf JimPower.conf -noconsole -c" config: oslist: windows description: Launch DOS @@ -181970,16 +178221,14 @@ - config: oslist: windows description: Launch SNES - description_loc: - english: Launch SNES executable: snes_jim_power/jim power.exe - - arguments: '-conf JimPower.conf -noconsole -c' + - arguments: "-conf JimPower.conf -noconsole -c" config: oslist: linux description: Launch DOS executable: dosbox type: none - - arguments: '-conf JimPower.conf -noconsole -c' + - arguments: "-conf JimPower.conf -noconsole -c" config: oslist: macos description: Launch DOS @@ -181988,16 +178237,12 @@ - config: oslist: windows description: Launch NES - description_loc: - english: Launch NES executable: nes_jim_power/jim power.exe - config: oslist: windows description: Launch Genesis - description_loc: - english: Launch Genesis executable: smd_jim_power/jim power.exe -'370280': +"370280": installDir: Season of 12 Colors launch: - config: @@ -182015,50 +178260,48 @@ nameLocalized: schinese: 十二色的季节 tchinese: 十二色的季節 -'37030': +"37030": installDir: UFO Extraterrestrials Gold launch: - executable: UFO_ET.exe -'370300': +"370300": installDir: 8-Bit Adventures - The Forgotten Journey Remastered Edition launch: - config: oslist: windows description: Launch executable: Game.exe -'370310': +"370310": installDir: Tompi Jones launch: - config: oslist: windows description: Launch executable: TompiJones.exe -'370330': +"370330": nameLocalized: japanese: 無題のゲームへようこそ Welcome To The Untitled Game schinese: 欢迎来到无题游戏 Welcome To The Untitled Game tchinese: 歡迎來到無題遊戲 Welcome To The Untitled Game -'370350': +"370350": installDir: LOTUS-Simulator launch: - config: oslist: windows executable: LOTUS.exe type: default - - arguments: '-VRon' + - arguments: "-VRon" config: oslist: windows executable: LOTUS.exe type: vr - config: - osarch: '64' + osarch: "64" oslist: windows description: LOTUS (32bit) - description_loc: - english: LOTUS (32bit) executable: LOTUS_32.exe type: option1 -'370360': +"370360": installDir: TIS-100 launch: - config: @@ -182070,16 +178313,16 @@ description: Launch executable: TIS-100.app - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: tis100.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: tis100.x86_64 -'370390': +"370390": installDir: Path to the Sky launch: - config: @@ -182091,22 +178334,22 @@ description: Launch executable: Path to the Sky type: none -'370440': +"370440": installDir: No70EyeOfBasir launch: - - arguments: '-nohmd' + - arguments: "-nohmd" config: oslist: windows executable: No70EyeOfBasir.exe type: default -'370460': +"370460": installDir: Arcana Heart 3 LOVE MAX launch: - config: oslist: windows description: Launch executable: AH3LM.exe -'370480': +"370480": installDir: Pixel Galaxy launch: - config: @@ -182117,14 +178360,14 @@ oslist: macos executable: PixelGalaxy.app type: none -'370490': +"370490": installDir: ASCII Attack launch: - config: oslist: windows executable: Ascii Attack.exe type: default -'370510': +"370510": installDir: Fragile Ball launch: - config: @@ -182132,19 +178375,19 @@ description: Launch executable: EQLauncher.exe type: none -'370540': - installDir: Gary Grigsby's War in the East +"370540": + installDir: "Gary Grigsby's War in the East" launch: - config: oslist: windows description: Launch executable: autorun.exe -'370550': +"370550": installDir: Sparkle 2 launch: - description: Launch executable: Sparkle2.exe -'370560': +"370560": installDir: Geek Resort launch: - config: @@ -182152,12 +178395,12 @@ description: Launch executable: GeekResort.exe type: default -'370570': +"370570": installDir: Color Assembler launch: - description: Launch executable: ColorAssembler.exe -'370590': +"370590": installDir: Gem Wars Attack of the Jiblets launch: - config: @@ -182172,64 +178415,64 @@ executable: bin/l64-release/Gem Wars type: default workingdir: bin/l64-release -'370600': +"370600": installDir: Hello Kitty and Sanrio Friends Racing launch: - config: oslist: windows description: Launch executable: Hello Kitty And Sanrio Friends Racing.exe -'370620': +"370620": installDir: Onyx launch: - description: Launch executable: Onyx.exe type: none -'370640': - installDir: Midnight's Blessing +"370640": + installDir: "Midnight's Blessing" launch: - config: oslist: windows description: Launch executable: game.exe - config: - ownsdlc: '371110' + ownsdlc: "371110" description: View Walkthrough - executable: Guide\\MidnightBlessingStrategyGuide.pdf -'370660': + executable: "Guide\\\\MidnightBlessingStrategyGuide.pdf" +"370660": installDir: Opaline launch: - description: Launch executable: Opaline.exe type: none -'370670': +"370670": installDir: The Tale of a Common Man launch: - description: Launch executable: Game.exe type: none -'370690': +"370690": installDir: Elendia Ceus launch: - description: Start executable: Game.exe type: none -'370700': +"370700": installDir: Black Home launch: - config: oslist: windows description: Launch executable: game.exe -'370710': +"370710": installDir: Last Heroes launch: - config: oslist: windows description: Launch executable: game.exe -'370730': - installDir: NOBUNAGA'S AMBITION Tenshouki with Power Up Kit HD version +"370730": + installDir: "NOBUNAGA'S AMBITION Tenshouki with Power Up Kit HD version" launch: - config: oslist: windows @@ -182243,28 +178486,28 @@ type: option1 nameLocalized: japanese: 信長の野望・天翔記 with パワーアップキット HD Version -'370750': +"370750": installDir: Dungeoncraft launch: - config: oslist: windows description: Launch executable: dungeoncraft.exe -'370770': +"370770": installDir: Holodrive launch: - config: oslist: windows description: Launch executable: holodrive.exe -'370780': +"370780": installDir: Fated Souls launch: - config: oslist: windows description: Launch executable: game.exe -'370800': +"370800": installDir: Fields of Battle launch: - config: @@ -182273,7 +178516,7 @@ type: default - executable: FOB.exe type: vr -'370840': +"370840": installDir: Rugby Challenge 3 launch: - config: @@ -182283,26 +178526,26 @@ type: none - config: oslist: windows - executable: tools\\RugbyChallenge3SettingsEditor.exe + executable: "tools\\\\RugbyChallenge3SettingsEditor.exe" type: editor -'370870': +"370870": installDir: Dark Future Blood Red States launch: - - arguments: '-Installed' + - arguments: "-Installed" config: - osarch: '64' + osarch: "64" oslist: windows executable: DarkFuture.exe type: default - - arguments: '-Installed' + - arguments: "-Installed" config: - osarch: '64' + osarch: "64" oslist: windows - ownsdlc: '1084700' - description: Developer's Archive + ownsdlc: "1084700" + description: "Developer's Archive" executable: dlclauncher.exe type: option1 -'370910': +"370910": installDir: Kathy Rain launch: - config: @@ -182310,7 +178553,7 @@ description: Launch executable: kathyrain.exe type: none - - arguments: ' --setup' + - arguments: " --setup" config: oslist: windows description: Game Setup @@ -182321,7 +178564,7 @@ description: Launch executable: KathyRain.app type: default -'370920': +"370920": installDir: Cosmophony launch: - config: @@ -182336,7 +178579,7 @@ oslist: linux description: Launch executable: Cosmophony.x86 -'370940': +"370940": installDir: Demons with Shotguns launch: - config: @@ -182351,7 +178594,7 @@ oslist: linux description: Launch executable: dws.x86 -'370970': +"370970": installDir: Unlimited Escape 3 & 4 Double Pack launch: - description: Escape 3 @@ -182360,11 +178603,11 @@ - description: Escape 4 executable: Escape 4/escape4.exe workingdir: /Escape 4 -'3710': +"3710": installDir: DreddVsDeath launch: - executable: Dredd.exe -'37100': +"37100": installDir: Aztaka launch: - config: @@ -182383,12 +178626,12 @@ oslist: linux description: Launch Aztaka! executable: Aztaka -'371000': +"371000": installDir: Cave Coaster launch: - description: Launch executable: CaveCoaster.exe -'371010': +"371010": installDir: Nomad Fleet launch: - config: @@ -182396,12 +178639,12 @@ description: Launch executable: NomadFleet.exe - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch (32bit) executable: NomadFleet.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch (64bit) executable: NomadFleet.x86_64 @@ -182409,7 +178652,7 @@ oslist: macos description: Launch (OSX) executable: NomadFleet.app -'371100': +"371100": installDir: Waste Walkers launch: - config: @@ -182418,21 +178661,21 @@ executable: Game.exe type: default - config: - ownsdlc: '439900' + ownsdlc: "439900" description: Deliverance DLC - executable: Deliverance\\Game.exe + executable: "Deliverance\\\\Game.exe" type: option1 - config: - ownsdlc: '443750' + ownsdlc: "443750" description: Awareness DLC - executable: Awareness\\Game.exe + executable: "Awareness\\\\Game.exe" type: option2 - config: - ownsdlc: '581080' + ownsdlc: "581080" description: Subsistence DLC - executable: Subsistence\\Game.exe + executable: "Subsistence\\\\Game.exe" type: option3 -'371120': +"371120": installDir: Discouraged Workers launch: - config: @@ -182442,7 +178685,7 @@ - config: oslist: macos description: Launch - executable: Discouraged-Workers.app\\Contents\\MacOS\\Discouraged-Workers + executable: "Discouraged-Workers.app\\\\Contents\\\\MacOS\\\\Discouraged-Workers" - config: oslist: linux description: Launch @@ -182452,7 +178695,7 @@ russian: Отчаявшиеся работники schinese: 失望失业者 spanish: Trabajadores desanimados -'371140': +"371140": installDir: Aegis Defenders launch: - config: @@ -182461,10 +178704,10 @@ type: default - config: oslist: macos - executable: AegisDefenders.app\\Contents\\MacOS\\AegisDefenders + executable: "AegisDefenders.app\\\\Contents\\\\MacOS\\\\AegisDefenders" type: default -'371180': - installDir: Super 3-D Noah's Ark +"371180": + installDir: "Super 3-D Noah's Ark" launch: - config: oslist: linux @@ -182477,8 +178720,8 @@ - config: oslist: macos description: Launch - executable: Super 3D Noah's Ark.app/Contents/MacOS/noah3d -'371200': + executable: "Super 3D Noah's Ark.app/Contents/MacOS/noah3d" +"371200": installDir: Halcyon 6 Starbase Commander launch: - config: @@ -182487,14 +178730,14 @@ type: default - config: oslist: macos - executable: H6.app\\Contents\\MacOS\\H6 + executable: "H6.app\\\\Contents\\\\MacOS\\\\H6" type: default - config: oslist: linux executable: H6.x86 type: default -'371210': {} -'371220': +"371210": {} +"371220": installDir: VERLIES II launch: - config: @@ -182504,18 +178747,18 @@ type: none - config: oslist: windows - ownsdlc: '563720' + ownsdlc: "563720" description: VERLIES executable: verlies.exe type: option1 -'371280': +"371280": installDir: Rolling Shapes launch: - config: oslist: windows description: Launch executable: Rolling Shapes.exe -'371300': +"371300": installDir: Knee Deep launch: - config: @@ -182528,12 +178771,12 @@ description: Launch executable: Knee Deep.app - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: Knee Deep.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Knee Deep.x86_64 @@ -182545,14 +178788,14 @@ oslist: windows executable: Knee Deep.exe type: othervr -'371310': +"371310": installDir: Karos Returns launch: - config: oslist: windows executable: RFstl.exe type: default -'371320': +"371320": installDir: Samsa and the Knights of Light launch: - config: @@ -182560,7 +178803,7 @@ description: Samsa and the Knights of Light executable: game.exe type: default -'371330': +"371330": installDir: Two Digits launch: - config: @@ -182572,16 +178815,16 @@ description: Launch executable: twodigits.app - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: twodigits.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: twodigits.x86_64 -'371360': +"371360": installDir: Orc Assault launch: - config: @@ -182589,7 +178832,7 @@ description: Launch executable: OrcAssault_SteamVR.exe type: vr -'371370': +"371370": installDir: Advent launch: - config: @@ -182597,7 +178840,7 @@ description: Launch executable: Game.exe type: default -'371380': +"371380": installDir: Dr. Spacezoo launch: - config: @@ -182609,35 +178852,35 @@ executable: DrSpacezoo.app/Contents/MacOS/DrSpacezoo type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: DrSpacezoo.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: DrSpacezoo.x86_64 type: default -'371390': +"371390": installDir: Flix The Flea launch: - config: oslist: windows description: Launch executable: Flix The Flea.exe -'371400': +"371400": installDir: Downpour launch: - config: oslist: windows description: Launch executable: Downpour.exe -'371410': +"371410": installDir: Hostile Dimension launch: - description: Launch executable: Hostile Dimension.exe -'371420': +"371420": installDir: TeddyFloppyEar_TheRace launch: - config: @@ -182652,7 +178895,7 @@ oslist: linux description: Launch executable: Teddy Floppy Ear - The Race.x86 -'371430': +"371430": installDir: SpaceGrunts launch: - config: @@ -182667,12 +178910,12 @@ oslist: linux description: Launch executable: spacegrunts -'371440': {} -'371450': +"371440": {} +"371450": installDir: Awe launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch Windows x64 executable: Awe.exe @@ -182683,24 +178926,24 @@ executable: Awe.app type: default - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch Windows x86 executable: Awe.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch Linux x86 executable: Awe.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch Linux x64 executable: Awe.x86_64 type: default -'371460': +"371460": installDir: GnumzMastersOfDefense launch: - config: @@ -182709,9 +178952,9 @@ type: none - config: oslist: macos - executable: GnumzMastersOfDefense.app\\Contents\\MacOS\\Gnumz - Masters of Defense + executable: "GnumzMastersOfDefense.app\\\\Contents\\\\MacOS\\\\Gnumz - Masters of Defense" type: none -'371500': +"371500": installDir: GreyCubes launch: - config: @@ -182719,7 +178962,7 @@ description: Launch executable: GreyCubes.exe - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: GreyCubes.x86 @@ -182728,15 +178971,15 @@ description: Launch executable: GreyCubes.app - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: GreyCubes.x86_64 -'371510': +"371510": installDir: Gunnheim launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: Gunnheim.exe @@ -182746,18 +178989,18 @@ executable: Gunnheim.app type: none - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: Gunnheim.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Gunnheim.x86_64 type: none -'371520': +"371520": installDir: Bounty Train launch: - config: @@ -182770,44 +179013,44 @@ executable: BountyTrainSteam.exe type: default - config: - betakey: 'testing02, testing' - osarch: '32' + betakey: "testing02, testing" + osarch: "32" oslist: linux executable: BountyTrainSteam.x86 type: default - config: - betakey: 'testing02, testing' - osarch: '64' + betakey: "testing02, testing" + osarch: "64" oslist: linux executable: BountyTrainSteam.x86_64 type: default - config: oslist: windows - ownsdlc: '394090' + ownsdlc: "394090" description: Bonus Content executable: open_bonus_win.bat type: none - config: oslist: macos - ownsdlc: '394090' + ownsdlc: "394090" description: Bonus Content executable: open_bonus_osx.sh type: none - config: - betakey: 'testing02, testing' + betakey: "testing02, testing" oslist: linux - ownsdlc: '394090' + ownsdlc: "394090" description: Bonus Content executable: open_bonus_lin.sh type: none nameLocalized: schinese: 赏金列车 - Bounty Train tchinese: 賞金列車 - Bounty Train -'371530': +"371530": installDir: Legends of Pixelia launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: Legends of Pixelia.exe @@ -182817,98 +179060,98 @@ description: Launch executable: Legends of Pixelia.app - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: Legends of Pixelia.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Legends of Pixelia.x86_64 - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: Legends of Pixelia.exe -'371550': - installDir: A Bastard's Tale +"371550": + installDir: "A Bastard's Tale" launch: - config: oslist: windows description: Launch executable: a_bastards_tale.exe -'371570': +"371570": installDir: Tap Heroes launch: - config: oslist: windows description: Launch executable: Tap Heroes.exe -'371600': +"371600": installDir: F1 Chequered Flag launch: - config: oslist: windows description: Launch executable: F-1.exe -'371620': +"371620": installDir: SBXInvasion launch: - config: oslist: windows description: Windows Content executable: SBXInvasion_SteamRelease.exe -'371650': +"371650": installDir: COLINA Legacy launch: - config: oslist: windows executable: ColinaLegacy.exe type: default - - arguments: '-force-opengl' + - arguments: "-force-opengl" config: oslist: linux description: OPENGL executable: ColinaLegacy.x86_64 type: default - - arguments: '-force-vulkan' + - arguments: "-force-vulkan" config: oslist: linux description: VULKAN executable: ColinaLegacy.x86_64 type: default -'371660': +"371660": installDir: Far Cry Primal launch: - - arguments: '-uplay_steam_mode' + - arguments: "-uplay_steam_mode" description: Launch executable: bin/FCPrimal.exe type: none -'371670': +"371670": installDir: Rolling Sun launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch64 - executable: Bin64\\RollingSun.exe - workingdir: Bin64\\ + executable: "Bin64\\\\RollingSun.exe" + workingdir: "Bin64\\\\" - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch32 - executable: Bin32\\RollingSun.exe - workingdir: Bin32\\ -'371690': {} -'371700': + executable: "Bin32\\\\RollingSun.exe" + workingdir: "Bin32\\\\" +"371690": {} +"371700": installDir: Hypership2 launch: - config: oslist: windows executable: HyperShip2.exe type: default -'371710': +"371710": installDir: Age of Castles Warlords launch: - config: @@ -182920,50 +179163,50 @@ description: Launch executable: AgeOfCastlesWarlords.app - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: AgeOfCastlesWarlords.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: AgeOfCastlesWarlords.x86_64 -'371790': +"371790": installDir: Ramayana launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch - executable: win64\\Ramayana.exe + executable: "win64\\\\Ramayana.exe" - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch - executable: win32\\Ramayana.exe + executable: "win32\\\\Ramayana.exe" - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch - executable: linux64\\Ramayana -'371810': + executable: "linux64\\\\Ramayana" +"371810": installDir: Dreaming launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: _bin/Dreaming.exe type: default -'371850': +"371850": installDir: Football Mogul 2014 launch: - config: oslist: windows description: Launch executable: FB2K14.exe -'371880': +"371880": installDir: Collider launch: - arguments: collider.love @@ -182973,23 +179216,23 @@ type: default - arguments: collider.love config: - osarch: '64' + osarch: "64" oslist: macos executable: love.app/Contents/MacOS/love type: default - arguments: collider.love config: - osarch: '32' + osarch: "32" oslist: linux executable: love.bin.x86 type: default - arguments: collider.love config: - osarch: '64' + osarch: "64" oslist: linux executable: love.bin.x86_64 type: default -'371890': +"371890": installDir: Gunslugs launch: - config: @@ -183004,14 +179247,14 @@ oslist: linux description: Launch executable: gunslugs -'371900': +"371900": installDir: Pillar launch: - config: oslist: windows description: Launch executable: Pillar.exe -'371970': +"371970": installDir: Barony launch: - config: @@ -183023,34 +179266,34 @@ description: Launch Editor executable: editor.exe - config: - osarch: '64' + osarch: "64" oslist: macos description: Launch Barony executable: barony.app - config: - osarch: '64' + osarch: "64" oslist: macos description: Launch Editor executable: editor.app - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch Barony executable: barony.x86_64 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch Editor executable: editor.x86_64 -'3720': +"3720": installDir: Evil Genius launch: - executable: EvilGeniusLauncher.exe -'37200': +"37200": installDir: Chessmaster launch: - executable: chess.exe -'372000': +"372000": installDir: TreeOfSavior launch: - config: @@ -183058,7 +179301,7 @@ description: Launch executable: release/patch/tos.exe type: none -'372030': +"372030": installDir: Starship Rubicon launch: - config: @@ -183073,7 +179316,7 @@ oslist: linux description: Launch executable: Rubicon -'372080': +"372080": installDir: Ananias Roguelike launch: - config: @@ -183088,7 +179331,7 @@ oslist: linux executable: ananias-roguelike type: default -'37210': +"37210": installDir: Chocolatier Decadence by Design launch: - config: @@ -183097,12 +179340,12 @@ - config: oslist: macos executable: chocolatier-decadence-design.app -'372150': +"372150": installDir: Yasai Ninja launch: - description: Launch executable: Yasai.exe -'372160': +"372160": installDir: Soviet Monsters Ekranoplan launch: - config: @@ -183114,14 +179357,14 @@ oslist: macos executable: ekranoplans.app type: none -'372190': +"372190": installDir: Astro Lords Oort Cloud launch: - config: oslist: windows description: Launch executable: SteamLauncher.exe -'37220': +"37220": installDir: Cooking Dash launch: - config: @@ -183130,7 +179373,7 @@ - config: oslist: macos executable: Cooking Dash.app -'372210': +"372210": installDir: Spooky Cats launch: - config: @@ -183141,7 +179384,7 @@ oslist: macos executable: spookycats.app type: none -'372250': +"372250": installDir: Turnover launch: - config: @@ -183151,18 +179394,18 @@ - config: oslist: linux description: Launch - executable: ./turnover + executable: "./turnover" type: none - config: oslist: macos description: Launch executable: Turnover.app -'372260': +"372260": installDir: Weird Park Trilogy launch: - description: Launch executable: WeirdParkTrilogy.exe -'37230': +"37230": installDir: Diaper Dash launch: - config: @@ -183171,7 +179414,7 @@ - config: oslist: macos executable: Diaper Dash.app -'372320': +"372320": installDir: LOST ORBIT - Terminal Velocity launch: - config: @@ -183181,19 +179424,19 @@ type: default - config: oslist: macos - executable: LostOrbit-TerminalVelocity.app\\Contents\\MacOS\\LostOrbit-TerminalVelocity + executable: "LostOrbit-TerminalVelocity.app\\\\Contents\\\\MacOS\\\\LostOrbit-TerminalVelocity" type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: LostOrbit_TerminalVelocity.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: LostOrbit_TerminalVelocity.x86_64 type: default -'372330': +"372330": installDir: Beauty Bounce launch: - config: @@ -183211,7 +179454,7 @@ description: Launch executable: BeautyBounce.sh type: none -'372340': +"372340": installDir: SnarfQuest Tales launch: - config: @@ -183222,14 +179465,14 @@ - config: oslist: macos description: Launch - executable: ./SnarfQuest_Tales.app\\Contents\\MacOS\\SnarfQuest_Tales + executable: "./SnarfQuest_Tales.app\\\\Contents\\\\MacOS\\\\SnarfQuest_Tales" type: default - config: oslist: linux description: Launch - executable: ./SnarfQuest_Tales.x86_64 + executable: "./SnarfQuest_Tales.x86_64" type: default -'372350': +"372350": installDir: Tumbleweed Express launch: - config: @@ -183244,14 +179487,14 @@ oslist: linux executable: TumbleweedExpress.x86 type: default -'372360': +"372360": installDir: Tales of Symphonia launch: - config: oslist: windows description: Launch executable: TOS.exe -'372380': +"372380": installDir: Warriors and Castles launch: - config: @@ -183260,20 +179503,20 @@ executable: GeC.exe type: none - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: GeC.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: GeC.x86_64 type: none - executable: game.exe type: none -'37240': +"37240": installDir: Diner Dash Hometown Hero launch: - config: @@ -183282,7 +179525,7 @@ - config: oslist: macos executable: DinerDashHometownHero.app -'372430': +"372430": installDir: WD launch: - config: @@ -183290,13 +179533,13 @@ description: Launch executable: WDHost.exe type: default -'372480': +"372480": installDir: Spaceforce Rogue Universe HD launch: - description: Launch - executable: System\\Start.exe + executable: "System\\\\Start.exe" workingdir: System -'372490': +"372490": installDir: Groovy launch: - config: @@ -183307,7 +179550,7 @@ oslist: linux executable: /Groovy/Binaries/Linux/Groovy type: none -'37250': +"37250": installDir: Dream Chronicles The Chosen Child launch: - config: @@ -183316,24 +179559,24 @@ - config: oslist: macos executable: Dream Chronicles - The Chosen Child.app -'372540': +"372540": installDir: The Lost Mythologies launch: - config: oslist: windows description: Launch executable: Basaltic.exe -'372560': +"372560": installDir: Tanita a plasticine dream launch: - description: Launch executable: Tanita.exe -'372570': +"372570": installDir: A Stroke of Fate Operation Bunker launch: - description: Launch executable: game.exe -'37260': +"37260": installDir: Emerald City Confidential launch: - config: @@ -183342,21 +179585,21 @@ - config: oslist: macos executable: Emerald City Confidential.app -'372670': +"372670": installDir: Realm of Perpetual Guilds launch: - config: oslist: windows description: Launch executable: Game.exe -'372690': +"372690": installDir: Chiptune Champion launch: - config: oslist: windows executable: ChiptuneChampion.exe type: none -'37270': +"37270": installDir: Wandering Willows launch: - config: @@ -183365,44 +179608,44 @@ - config: oslist: macos executable: Wandering Willows.app -'372720': +"372720": installDir: The Language Game launch: - config: oslist: windows description: Launch - executable: Bin\\Lingo.exe + executable: "Bin\\\\Lingo.exe" workingdir: Bin -'372740': +"372740": installDir: Second Warfare launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: Second Warfare.exe type: none - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: SecondWarfare.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: SecondWarfare.x86_64 - config: oslist: macos description: Launch - executable: Second Warfare.app\\Contents\\MacOS\\Second Warfare + executable: "Second Warfare.app\\\\Contents\\\\MacOS\\\\Second Warfare" type: none - config: - osarch: '32' + osarch: "32" oslist: windows executable: Second Warfare.exe type: none -'372750': +"372750": installDir: Girl Amazon Survival launch: - config: @@ -183412,7 +179655,7 @@ - config: oslist: macos description: Launch - executable: Girl Amazon Survival.app\\Contents\\MacOS\\Girl Amazon Survival + executable: "Girl Amazon Survival.app\\\\Contents\\\\MacOS\\\\Girl Amazon Survival" type: default - config: oslist: linux @@ -183424,7 +179667,7 @@ description: Launch x86 executable: Girl Amazon Survival.x86 type: default -'372770': +"372770": installDir: Floors of Discomfort launch: - config: @@ -183435,7 +179678,7 @@ oslist: linux description: Launch executable: fod -'372780': +"372780": installDir: Pulse launch: - config: @@ -183451,7 +179694,7 @@ description: Launch executable: Pulse.x86 type: none -'37280': +"37280": installDir: Wedding Dash 2 Rings Around the World launch: - config: @@ -183460,7 +179703,7 @@ - config: oslist: macos executable: Wedding Dash 2.app -'372800': +"372800": installDir: RPG MO launch: - config: @@ -183475,22 +179718,22 @@ oslist: macos description: Launch executable: RPG MO.app -'372820': +"372820": installDir: Shot In The Dark launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: ShotInTheDark.exe -'372830': +"372830": installDir: Fitz the Fox launch: - config: oslist: windows description: Run that poop! executable: fitz the fox.exe -'372890': +"372890": installDir: Red Crow Mysteries Legion launch: - config: @@ -183500,9 +179743,9 @@ - config: oslist: macos description: Launch - executable: Legion.app\\Contents\\MacOS\\Legion - workingdir: Legion.app\\Contents\\MacOS -'37290': + executable: "Legion.app\\\\Contents\\\\MacOS\\\\Legion" + workingdir: "Legion.app\\\\Contents\\\\MacOS" +"37290": installDir: Zenerchi launch: - config: @@ -183511,7 +179754,7 @@ - config: oslist: macos executable: Zenerchi.app -'372930': +"372930": installDir: New York Mysteries Secrets of the Mafia Collectors Edition launch: - config: @@ -183523,7 +179766,7 @@ oslist: macos executable: New York Mysteries Secrets of the Mafia CE.app type: none -'372940': +"372940": installDir: Lost Lands The Four Horsemen Collectors Edition launch: - config: @@ -183534,7 +179777,7 @@ oslist: macos description: Launch executable: Lost Lands 2 The Four Horsemen CE.app -'372950': +"372950": installDir: Professor Why - Chemistry 1 launch: - config: @@ -183545,24 +179788,24 @@ oslist: macos description: Launch executable: ProfessorWhyChemistry1.app/Contents/MacOS/Professor Why Chemistry 1 -'372960': +"372960": installDir: Robbery Bob launch: - config: oslist: windows description: Launch - executable: bin\\RobberyBob.exe + executable: "bin\\\\RobberyBob.exe" workingdir: bin -'372970': +"372970": installDir: Cash_Out launch: - description: Launch executable: CashOut.exe -'3730': +"3730": installDir: Aliens versus Predator Classic launch: - - executable: Launcher\\AvpGoldLauncher.exe -'37300': + - executable: "Launcher\\\\AvpGoldLauncher.exe" +"37300": installDir: DinerTown Tycoon launch: - config: @@ -183571,7 +179814,7 @@ - config: oslist: macos executable: DinerTown Tycoon.app -'37310': +"37310": installDir: DinerTown Detective Agency launch: - config: @@ -183580,30 +179823,30 @@ - config: oslist: macos executable: DinerTown Detective Agency.app -'373110': {} -'373120': +"373110": {} +"373120": installDir: Bernie Needs Love launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Windows 32-bit - executable: windows_32\\bernie-needs-love.exe + executable: "windows_32\\\\bernie-needs-love.exe" - config: oslist: linux description: Linux 32-bit executable: linux_32/bernieneedslove - config: - osarch: '64' + osarch: "64" oslist: windows description: Windows 64-bit - executable: windows_64\\bernie-needs-love.exe + executable: "windows_64\\\\bernie-needs-love.exe" - config: - osarch: '64' + osarch: "64" oslist: linux description: Linux 64-bit executable: linux_64/bernieneedslove -'373140': +"373140": installDir: Grail to the Thief launch: - config: @@ -183615,16 +179858,16 @@ description: Launch executable: Grail to the Thief v1.05 (Mac).app - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: Grail to the Thief v1.05 (Linux).x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Grail to the Thief v1.05 (Linux).x86_64 -'373180': +"373180": installDir: Kung Fury Street Rage launch: - config: @@ -183632,12 +179875,12 @@ description: Launch executable: KungFury.exe - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: KungFury.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: KungFury.x86_64 @@ -183645,7 +179888,7 @@ oslist: macos description: Launch executable: KungFury.app -'37320': +"37320": installDir: Nightshift Code launch: - config: @@ -183654,15 +179897,15 @@ - config: oslist: macos executable: NightShiftCode.app -'373240': +"373240": installDir: Black Sails launch: - config: oslist: windows description: Launch - executable: \\bin\\release\\BlackSails.exe - workingdir: \\bin\\release -'373290': + executable: "\\\\bin\\\\release\\\\BlackSails.exe" + workingdir: "\\\\bin\\\\release" +"373290": installDir: Stones of Sorrow launch: - config: @@ -183670,7 +179913,7 @@ description: Launch executable: StonesofSorrow.exe - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch 32-bit executable: StonesofSorrow.x86 @@ -183680,12 +179923,12 @@ description: Launch executable: StonesofSorrow.app - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch 64-bit executable: StonesofSorrow.x86_64 type: default -'37330': +"37330": installDir: NightShift Legacy launch: - config: @@ -183694,14 +179937,14 @@ - config: oslist: macos executable: The Nightshift Legacy.app -'373330': +"373330": installDir: All Is Dust launch: - config: oslist: windows description: Launch executable: allisdust.exe -'373360': +"373360": installDir: Cast of the Seven Godsends launch: - config: @@ -183712,7 +179955,7 @@ oslist: macos description: Launch executable: Cast_MAC.app -'373390': +"373390": installDir: Contradiction launch: - config: @@ -183723,11 +179966,9 @@ - config: oslist: windows description: Launch - description_loc: - english: Launch executable: /nw.exe type: none -'37340': +"37340": installDir: Fitness Dash launch: - config: @@ -183736,22 +179977,22 @@ - config: oslist: macos executable: Fitness Dash.app -'373410': +"373410": installDir: TheKindred launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: TheKindred.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: TheKindred.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: TheKindred.x86_64 type: default @@ -183759,41 +180000,41 @@ oslist: macos executable: TheKindred.App/Contents/MacOS/TheKindred type: default - - arguments: '-force-d3d9' + - arguments: "-force-d3d9" config: - osarch: '64' + osarch: "64" oslist: windows description: (compatibility mode) executable: TheKindred.exe type: option1 - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" config: - osarch: '64' + osarch: "64" oslist: windows description: (settings launcher) executable: TheKindred.exe type: option1 - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" config: - osarch: '64' + osarch: "64" oslist: linux description: (settings launcher) executable: TheKindred.x86_64 type: option1 - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" config: - osarch: '32' + osarch: "32" oslist: linux description: (settings launcher) executable: TheKindred.x86 type: option1 - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" config: oslist: macos description: (settings launcher) executable: TheKindred.App/Contents/MacOS/TheKindred type: option1 -'373420': +"373420": installDir: Divinity Original Sin Enhanced Edition launch: - config: @@ -183802,31 +180043,31 @@ executable: Shipping/EoCApp.exe workingdir: Shipping - config: - osarch: '64' + osarch: "64" oslist: macos description: Launch executable: Divinity - Original Sin.app type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: runner.sh type: none -'373440': +"373440": installDir: Stargazer launch: - config: oslist: windows description: Launch executable: Stargazer.exe -'373460': +"373460": installDir: Fury Of The Gods launch: - description: Launch - executable: Binaries\\Win32\\FuryGame.exe - workingdir: Binaries\\Win32\\ -'373470': + executable: "Binaries\\\\Win32\\\\FuryGame.exe" + workingdir: "Binaries\\\\Win32\\\\" +"373470": installDir: Soul Thief launch: - config: @@ -183837,22 +180078,22 @@ oslist: macos executable: SoulThief.app type: default -'373480': +"373480": installDir: 1993 Space Machine launch: - config: oslist: macos executable: SpaceMachine_Mac_FinalBuild.app/Contents/MacOS/SpaceMachine_Mac_FinalBuild type: default - - arguments: '-force-opengl' + - arguments: "-force-opengl" config: - osarch: '32' + osarch: "32" oslist: linux executable: spacemachine.x86 type: default - - arguments: '-force-opengl' + - arguments: "-force-opengl" config: - osarch: '64' + osarch: "64" oslist: linux executable: 1993Spacemachine.x86_64 type: default @@ -183862,7 +180103,7 @@ type: default nameLocalized: japanese: 1993 シェナンドー -'37360': +"37360": installDir: Mahjong Roadshow launch: - config: @@ -183871,43 +180112,43 @@ - config: oslist: macos executable: MahjongRoadshow.app -'373600': +"373600": installDir: Weapon of Choice launch: - description: Launch executable: WoCGame.exe -'373610': +"373610": installDir: Shoot 1UP launch: - description: Launch executable: Shoot1UP.exe -'373620': +"373620": installDir: Explosionade launch: - description: Launch executable: Explosionade.exe -'373630': +"373630": installDir: Game Type launch: - description: Launch executable: GameType.exe -'373640': +"373640": installDir: Splotches launch: - config: oslist: windows executable: Splotches.exe type: default -'373650': +"373650": installDir: The Assembly launch: - - arguments: '-nohmd' + - arguments: "-nohmd" config: oslist: windows description: The Assembly in Non VR executable: TheAssembly.exe type: option1 - - arguments: '-forcehmd=steamvr' + - arguments: "-forcehmd=steamvr" config: oslist: windows description: The Assembly @@ -183918,14 +180159,14 @@ description: The Assembly executable: TheAssembly.exe type: othervr -'373670': +"373670": installDir: Arkhelom 3D launch: - config: oslist: windows description: Launch executable: Arkhelom3D.exe -'37370': +"37370": installDir: Trijinx launch: - config: @@ -183934,7 +180175,7 @@ - config: oslist: macos executable: TriJinx.app -'373700': +"373700": installDir: Lineage II launch: - config: @@ -183942,7 +180183,7 @@ description: Launch executable: L2.exe type: none -'373720': +"373720": installDir: Ryzom launch: - config: @@ -183969,14 +180210,14 @@ oslist: macos executable: Ryzom.app/Contents/MacOS/RyzomConfiguration type: config -'373730': +"373730": installDir: Way of Gold and Steel launch: - config: oslist: windows description: Launch executable: Prog.exe -'373750': +"373750": installDir: DinoSystem launch: - config: @@ -183984,7 +180225,7 @@ description: Launch DinoSystem executable: run_game.exe type: default -'373770': +"373770": installDir: LiEat launch: - config: @@ -183992,7 +180233,7 @@ description: Launch executable: LiEat_Launcher.exe type: none -'37380': +"37380": installDir: Valerie Porter launch: - config: @@ -184001,43 +180242,43 @@ - config: oslist: macos executable: Valerie Porter and the Scarlet Scandal.app -'373800': +"373800": installDir: Fantastic Pinball Thrills launch: - config: oslist: windows description: Launch executable: FantasticPinballThrills.exe -'373810': +"373810": installDir: Hot Pinball Thrills launch: - description: Launch executable: HotPinballThrills.exe -'373820': +"373820": installDir: Soccer Pinball Thrills launch: - config: oslist: windows description: Launch executable: SoccerPinballThrills.exe -'373860': +"373860": installDir: Apothecarium launch: - description: Launch executable: Apothecarium - The Renaissance of Evil CE.exe -'373870': +"373870": installDir: Sister’s Secrecy launch: - description: Launch executable: SistersSecrecy_ArcanumBloodlines_Premium.exe -'373880': +"373880": installDir: Fleeting Ages launch: - config: oslist: windows description: Test executable: game.exe -'37390': +"37390": installDir: Gemini Lost launch: - config: @@ -184046,41 +180287,41 @@ - config: oslist: macos executable: Gemini Lost.app -'373920': +"373920": installDir: Eisenhorn XENOS launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch 32-bit - executable: Binaries\\Win32\\XenosGame.exe + executable: "Binaries\\\\Win32\\\\XenosGame.exe" - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch 64-bit - executable: Binaries\\Win64\\XenosGame.exe -'373930': + executable: "Binaries\\\\Win64\\\\XenosGame.exe" +"373930": installDir: Sudden Strike 4 launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: SuddenStrike4.exe type: default - config: - osarch: '64' + osarch: "64" oslist: macos description: Launch - executable: SuddenStrike4.app\\Contents\\MacOS\\SuddenStrike4 + executable: "SuddenStrike4.app\\\\Contents\\\\MacOS\\\\SuddenStrike4" type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: SuddenStrike4.x86_64 type: default -'373970': +"373970": installDir: Letter Quest Remastered launch: - config: @@ -184092,16 +180333,16 @@ description: Launch executable: letterquestremastered.app - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: letterquestremastered.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: letterquestremastered.x86_64 -'373990': +"373990": installDir: Metrico+ launch: - config: @@ -184115,24 +180356,24 @@ executable: Metrico+.app/Contents/MacOS/Metrico+ type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Metrico+.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: Metrico+.x86 type: default -'37400': - installDir: 'Time Gentlemen, Please!' +"37400": + installDir: "Time Gentlemen, Please!" launch: - executable: TGP.exe - - description: 'Configure Time Gentlemen, Please!' + - description: "Configure Time Gentlemen, Please!" executable: winsetup.exe -'374010': +"374010": installDir: Sherlock Holmes Consulting Detective launch: - config: @@ -184144,7 +180385,7 @@ description: Launch executable: Case 1 Mummys Curse 2.app type: none -'374030': +"374030": installDir: Virginia launch: - config: @@ -184154,14 +180395,14 @@ - config: oslist: macos description: Launch - executable: Virginia.app\\Contents\\MacOS\\Virginia + executable: "Virginia.app\\\\Contents\\\\MacOS\\\\Virginia" type: none -'374040': +"374040": installDir: Portal Knights launch: - description: Launch Portal Knights executable: portal_knights_x64.exe -'374050': +"374050": installDir: Infinium Strike launch: - config: @@ -184178,29 +180419,29 @@ oslist: linux executable: InfiniumStrike.x86 type: default -'374060': +"374060": installDir: Stairs launch: - config: oslist: windows description: Launch - executable: Binaries\\Win32\\UDK.exe + executable: "Binaries\\\\Win32\\\\UDK.exe" type: none -'374080': +"374080": installDir: Falcon launch: - config: oslist: windows executable: FalconLauncher.exe type: default -'374090': +"374090": installDir: Wintergames launch: - config: oslist: windows description: Launch executable: applauncher.exe -'374120': +"374120": installDir: Forktruck Challenge launch: - config: @@ -184208,12 +180449,12 @@ description: Launch executable: Forktruck Challenge.exe type: default -'374140': +"374140": installDir: Gravity Core - Braintwisting Space Odyssey launch: - description: Launch executable: GravityCore.exe -'374150': +"374150": installDir: Concealed Intent launch: - config: @@ -184223,46 +180464,46 @@ type: default - config: oslist: macos - executable: ConcealedIntent.app\\Contents\\MacOS\\ConcealedIntent + executable: "ConcealedIntent.app\\\\Contents\\\\MacOS\\\\ConcealedIntent" type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: ConcealedIntent.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: ConcealedIntent.x86_64 type: default -'374170': +"374170": installDir: Sniper Tactical launch: - executable: SniperTactical.exe type: none -'374190': +"374190": installDir: Infernax launch: - config: oslist: windows description: Launch executable: Infernax.exe -'37420': - installDir: 'Ben There, Dan That!' +"37420": + installDir: "Ben There, Dan That!" launch: - executable: BTDT.exe - - description: 'Configure Ben There, Dan That!' + - description: "Configure Ben There, Dan That!" executable: winsetup.exe -'374230': +"374230": installDir: Twin Robots launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: TwinRobots.exe - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: TwinRobots.exe @@ -184271,16 +180512,16 @@ description: Launch executable: TwinRobots.app - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: TwinRobots.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: TwinRobots.x86_64 -'374240': +"374240": installDir: Eternal_Step launch: - config: @@ -184298,25 +180539,25 @@ description: OSX executable: eternalstep.app type: none -'374280': +"374280": installDir: Hired Ops launch: - config: oslist: windows executable: hops.exe type: default -'374320': +"374320": installDir: DARK SOULS III launch: - description: Launch executable: Game/DarkSoulsIII.exe workingdir: Game -'374380': +"374380": installDir: Revolution Under Siege Gold launch: - description: Launch executable: autorun.exe -'374410': +"374410": installDir: TransPlan launch: - config: @@ -184328,16 +180569,16 @@ description: Launch executable: TransPlan.app - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: TransPlan.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: TransPlan.x86_64 -'374420': +"374420": installDir: Questria launch: - config: @@ -184348,26 +180589,26 @@ oslist: macos executable: Questria.app/Contents/MacOS/Questria type: default -'374450': +"374450": installDir: Cheats 4 Hire launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: c4h.exe - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: c4h64.exe - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: c4h.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: c4h.x86_64 @@ -184375,7 +180616,7 @@ oslist: macos description: Launch executable: c4h.app -'374460': +"374460": installDir: Impossiball launch: - config: @@ -184390,7 +180631,7 @@ oslist: macos executable: Impossiball.app type: default -'374510': +"374510": installDir: The Last Dogma launch: - config: @@ -184401,16 +180642,16 @@ oslist: linux description: Launch executable: TLD.x86 -'374520': +"374520": installDir: Champions of Anteria launch: - - arguments: '-uplay_steam_mode --steam' + - arguments: "-uplay_steam_mode --steam" config: oslist: windows description: Launch executable: CoA.exe type: none -'374620': +"374620": installDir: S.O.R.S launch: - config: @@ -184419,16 +180660,16 @@ type: default - config: oslist: macos - executable: SORSv1.01.app\\Contents\\MacOS\\SORSv1.01 + executable: "SORSv1.01.app\\\\Contents\\\\MacOS\\\\SORSv1.01" type: default -'374630': +"374630": installDir: Mactabilis launch: - config: oslist: windows description: Launch executable: Mactabilis.exe -'374640': +"374640": installDir: March of Industry launch: - config: @@ -184442,16 +180683,16 @@ type: default - config: oslist: macos - executable: MarchOfIndustry.app\\Contents\\MacOS\\AESU.bin + executable: "MarchOfIndustry.app\\\\Contents\\\\MacOS\\\\AESU.bin" type: none -'374670': +"374670": installDir: Ember Strike launch: - config: oslist: windows executable: EmberStrike.exe type: none -'374680': +"374680": installDir: Tiki Galore launch: - config: @@ -184464,8 +180705,8 @@ description: Launch executable: TikiGalore.app type: none -'374780': {} -'374830': +"374780": {} +"374830": installDir: Defend The Highlands launch: - config: @@ -184473,12 +180714,12 @@ description: Launch executable: Defend the Highlands.exe - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: Defend The Highlands.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Defend The Highlands.x86_64 @@ -184486,7 +180727,7 @@ oslist: macos description: Launch executable: Defend The Highlands.app -'374900': +"374900": installDir: Agatha Christie The ABC Murders launch: - config: @@ -184495,13 +180736,13 @@ type: default - config: oslist: macos - executable: The ABC Murders.app\\Contents\\MacOS\\The ABC Murders + executable: "The ABC Murders.app\\\\Contents\\\\MacOS\\\\The ABC Murders" type: default - config: oslist: linux executable: The ABC Murders.x86 type: default -'374940': +"374940": installDir: Tank Battle Normandy launch: - config: @@ -184512,7 +180753,7 @@ oslist: macos executable: TankBattleNormandy.app type: none -'374950': +"374950": installDir: ADventure Lib launch: - config: @@ -184527,7 +180768,7 @@ oslist: macos description: Launch executable: ADventureLib -'374960': +"374960": installDir: Civil War Bull Run 1861 launch: - config: @@ -184538,7 +180779,7 @@ oslist: macos executable: BullRun1861.app type: none -'374970': +"374970": installDir: Golf Masters launch: - config: @@ -184546,7 +180787,7 @@ description: Launch executable: GolfMasters_SteamVR.exe type: none -'374990': +"374990": installDir: OrcSlayer launch: - config: @@ -184561,18 +180802,18 @@ oslist: linux executable: OrcSlayer.x86_64 type: none -'37500': +"37500": installDir: Magnetis launch: - executable: Magnetis.exe -'375000': +"375000": installDir: Icarus-X Tides of Fire launch: - config: oslist: windows description: Launch executable: Icarus-X-ToF.exe -'375010': +"375010": installDir: Energy Balance launch: - config: @@ -184584,28 +180825,28 @@ description: Launch executable: EnergyBalance.app - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: EnergyBalance.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: EnergyBalance.x86_64 -'375020': +"375020": installDir: Postcards from Anozira launch: - config: oslist: windows description: Launch executable: Postcards_from_Anozira.exe - - arguments: '--setup' + - arguments: "--setup" config: oslist: windows description: Setup executable: Postcards_from_Anozira.exe -'375030': +"375030": installDir: Korwin The Game launch: - config: @@ -184620,15 +180861,15 @@ oslist: linux executable: Korwin.x86 type: none -'375040': +"375040": installDir: Death Tractor launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: DeathTractor.exe -'375090': +"375090": installDir: the_eigengrau_menagerie launch: - config: @@ -184639,7 +180880,7 @@ oslist: macos executable: The Eigengrau Menagerie.app type: none -'375120': +"375120": installDir: Super Star Path launch: - config: @@ -184651,12 +180892,12 @@ description: Launch executable: super_star_path.app - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: runner type: none -'375130': +"375130": installDir: TinStar launch: - config: @@ -184671,7 +180912,7 @@ oslist: linux description: Launch executable: TinStar -'375170': +"375170": installDir: Gunpowder launch: - config: @@ -184686,7 +180927,7 @@ oslist: linux description: Launch executable: Gunpowder -'375180': +"375180": installDir: Lunch Truck Tycoon launch: - config: @@ -184701,15 +180942,15 @@ oslist: linux description: Launch executable: runner -'375190': +"375190": installDir: VROOM - Aerie launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: VROOM - Aerie.exe type: vr -'375200': +"375200": installDir: Sakura Fantasy launch: - config: @@ -184723,8 +180964,8 @@ - config: oslist: macos description: Launch - executable: Sakura Fantasy.app\\Contents\\MacOS\\Sakura Fantasy -'375210': + executable: "Sakura Fantasy.app\\\\Contents\\\\MacOS\\\\Sakura Fantasy" +"375210": installDir: Unveil launch: - config: @@ -184737,7 +180978,7 @@ description: with Terminal enabled executable: Unveil Terminal.exe type: option1 -'375220': +"375220": installDir: Bitweb launch: - config: @@ -184748,172 +180989,152 @@ oslist: windows description: Launch executable: Bitweb.exe -'375230': - installDir: 'Warhammer 40,000 - Eternal Crusade' +"375230": + installDir: "Warhammer 40,000 - Eternal Crusade" launch: - - arguments: >- - ?EnableMBP=1?IsPveLocked=0?UsePersistence=1?UseTurbulentApi=1?PktLag=0?PktLagVariance=0?PktLoss=0?PktOrder=0?PktDup=0?UseLobby=1?ServiceApi=\"http://live-latest.eternalcrusade.com\" + - arguments: "?EnableMBP=1?IsPveLocked=0?UsePersistence=1?UseTurbulentApi=1?PktLag=0?PktLagVariance=0?PktLoss=0?PktOrder=0?PktDup=0?UseLobby=1?ServiceApi=\\\"http://live-latest.eternalcrusade.com\\\"" config: oslist: windows description: Launch Eternal Crusade (Live) executable: EternalCrusadeClient.exe type: none - - arguments: >- - ?PktLag=0?EnableMBP=1?UsePersistence=1?UseTurbulentApi=1?UseDevFeatures=1?UseLobby=1?ServiceApi=\"http://dev.sandbox.eternalcrusade.com\" + - arguments: "?PktLag=0?EnableMBP=1?UsePersistence=1?UseTurbulentApi=1?UseDevFeatures=1?UseLobby=1?ServiceApi=\\\"http://dev.sandbox.eternalcrusade.com\\\"" config: - betakey: 'dev-shipping,dev' + betakey: "dev-shipping,dev" oslist: windows description: Launch using AWS dev env executable: EternalCrusadeClient.exe type: none - - arguments: >- - ?EnableMBP=1?IsPveLocked=0?UsePersistence=1?UseTurbulentApi=1?PktLag=0?PktLagVariance=0?PktLoss=0?PktOrder=0?PktDup=0?UseLobby=1?ServiceApi=\"http://latest.eternalcrusade.com\"?StashboardApi=\"https://wh40k-dev-stashboard.appspot.com\" + - arguments: "?EnableMBP=1?IsPveLocked=0?UsePersistence=1?UseTurbulentApi=1?PktLag=0?PktLagVariance=0?PktLoss=0?PktOrder=0?PktDup=0?UseLobby=1?ServiceApi=\\\"http://latest.eternalcrusade.com\\\"?StashboardApi=\\\"https://wh40k-dev-stashboard.appspot.com\\\"" config: - betakey: 'latest-dev,latest-shipping' + betakey: "latest-dev,latest-shipping" oslist: windows - description: Launch using AWS \"latest.eternalcrusade.com\" + description: "Launch using AWS \\\"latest.eternalcrusade.com\\\"" executable: EternalCrusadeClient.exe type: none - - arguments: >- - ?EnableMBP=1?UsePersistence=1?UseTurbulentApi=1?PktLag=0?PktLagVariance=0?PktLoss=0?PktOrder=0?PktDup=0?UseLobby=1?ServiceApi=\"http://qa-3-6-1.eternalcrusade.com\" + - arguments: "?EnableMBP=1?UsePersistence=1?UseTurbulentApi=1?PktLag=0?PktLagVariance=0?PktLoss=0?PktOrder=0?PktDup=0?UseLobby=1?ServiceApi=\\\"http://qa-3-6-1.eternalcrusade.com\\\"" config: betakey: asia oslist: windows description: Play using Asia core executable: EternalCrusadeClient.exe type: none - - arguments: >- - ?EnableMBP=1?IsPveLocked=0?ServiceApi=\"http://twitch.sandbox.eternalcrusade.com\"?UsePersistence=1?UseTurbulentApi=1?PktLag=0?PktLagVariance=0?PktLoss=0?PktOrder=0?PktDup=0?UseDevFeatures=1?UseLobby=1?StashboardApi=\"https://wh40k-dev-stashboard.appspot.com\" + - arguments: "?EnableMBP=1?IsPveLocked=0?ServiceApi=\\\"http://twitch.sandbox.eternalcrusade.com\\\"?UsePersistence=1?UseTurbulentApi=1?PktLag=0?PktLagVariance=0?PktLoss=0?PktOrder=0?PktDup=0?UseDevFeatures=1?UseLobby=1?StashboardApi=\\\"https://wh40k-dev-stashboard.appspot.com\\\"" config: betakey: twitch oslist: windows - description: Launch using \"twitch.sandbox.eternalcrusade.com\" + description: "Launch using \\\"twitch.sandbox.eternalcrusade.com\\\"" executable: EternalCrusadeClient.exe type: none - - arguments: >- - ?UseDevFeatures=1?IsPveLocked=0?EnableMBP=1?UsePersistence=1?UseTurbulentApi=1?PktLag=0?PktLagVariance=0?PktLoss=0?PktOrder=0?PktDup=0?UseLobby=1?ServiceApi=\"http://pve.sandbox.eternalcrusade.com\"?StashboardApi=\"https://wh40k-dev-stashboard.appspot.com\" + - arguments: "?UseDevFeatures=1?IsPveLocked=0?EnableMBP=1?UsePersistence=1?UseTurbulentApi=1?PktLag=0?PktLagVariance=0?PktLoss=0?PktOrder=0?PktDup=0?UseLobby=1?ServiceApi=\\\"http://pve.sandbox.eternalcrusade.com\\\"?StashboardApi=\\\"https://wh40k-dev-stashboard.appspot.com\\\"" config: betakey: pve-dev description: Launch PVE executable: EternalCrusadeClient.exe type: none - - arguments: >- - ?IsUnderNDA=0?IsPveLocked=0?EnableMBP=1?UsePersistence=1?UseTurbulentApi=1?PktLag=0?PktLagVariance=0?PktLoss=0?PktOrder=0?PktDup=0?UseLobby=1?ServiceApi=\"http://uat-latest.eternalcrusade.com\"?StashboardApi=\"https://wh40k-uat-stashboard.appspot.com\" + - arguments: "?IsUnderNDA=0?IsPveLocked=0?EnableMBP=1?UsePersistence=1?UseTurbulentApi=1?PktLag=0?PktLagVariance=0?PktLoss=0?PktOrder=0?PktDup=0?UseLobby=1?ServiceApi=\\\"http://uat-latest.eternalcrusade.com\\\"?StashboardApi=\\\"https://wh40k-uat-stashboard.appspot.com\\\"" config: - betakey: 'uat-dev,uat-shipping,win32-shipping' + betakey: "uat-dev,uat-shipping,win32-shipping" description: Launch UAT build executable: EternalCrusadeClient.exe type: none - - arguments: >- - ?UseDevFeatures=1?IsPveLocked=0?EnableMBP=1?UsePersistence=1?UseTurbulentApi=1?PktLag=0?PktLagVariance=0?PktLoss=0?PktOrder=0?PktDup=0?UseLobby=1?ServiceApi=\"http://qa-latest.eternalcrusade.com\"?StashboardApi=\"https://wh40k-qa-stashboard.appspot.com\" + - arguments: "?UseDevFeatures=1?IsPveLocked=0?EnableMBP=1?UsePersistence=1?UseTurbulentApi=1?PktLag=0?PktLagVariance=0?PktLoss=0?PktOrder=0?PktDup=0?UseLobby=1?ServiceApi=\\\"http://qa-latest.eternalcrusade.com\\\"?StashboardApi=\\\"https://wh40k-qa-stashboard.appspot.com\\\"" config: - betakey: 'qa-dev,qa-shipping' + betakey: "qa-dev,qa-shipping" description: Launch QA build executable: EternalCrusadeClient.exe type: none - - arguments: >- - ?UseDevFeatures=1?EnableMBP=1?UsePersistence=1?UseTurbulentApi=1?PktLag=0?PktLagVariance=0?PktLoss=0?PktOrder=0?PktDup=0?UseLobby=1?ServiceApi=\"http://stage-latest.eternalcrusade.com\"?StashboardApi=\"https://wh40k-stage-stashboard.appspot.com\" + - arguments: "?UseDevFeatures=1?EnableMBP=1?UsePersistence=1?UseTurbulentApi=1?PktLag=0?PktLagVariance=0?PktLoss=0?PktOrder=0?PktDup=0?UseLobby=1?ServiceApi=\\\"http://stage-latest.eternalcrusade.com\\\"?StashboardApi=\\\"https://wh40k-stage-stashboard.appspot.com\\\"" config: betakey: mav-dev description: Launch Maverick environment executable: EternalCrusadeClient.exe type: none - - arguments: >- - ?EnableMBP=1?UsePersistence=1?UseTurbulentApi=1?PktLag=0?PktLagVariance=0?PktLoss=0?PktOrder=0?PktDup=0?UseDevFeatures=1?UseLobby=1?ServiceApi=\"cp.sandbox.eternalcrusade.com\" + - arguments: "?EnableMBP=1?UsePersistence=1?UseTurbulentApi=1?PktLag=0?PktLagVariance=0?PktLoss=0?PktOrder=0?PktDup=0?UseDevFeatures=1?UseLobby=1?ServiceApi=\\\"cp.sandbox.eternalcrusade.com\\\"" config: - betakey: 'cp-dev,cp-shipping' + betakey: "cp-dev,cp-shipping" description: Crossplay executable: EternalCrusadeClient.exe type: none - - arguments: >- - ?UseDevFeatures=1?EnableMBP=1?UsePersistence=1?UseTurbulentApi=1?PktLag=0?PktLagVariance=0?PktLoss=0?PktOrder=0?PktDup=0?UseLobby=1?ServiceApi=\"http://stage-latest.eternalcrusade.com\"?StashboardApi=\"https://wh40k-stage-stashboard.appspot.com\" + - arguments: "?UseDevFeatures=1?EnableMBP=1?UsePersistence=1?UseTurbulentApi=1?PktLag=0?PktLagVariance=0?PktLoss=0?PktOrder=0?PktDup=0?UseLobby=1?ServiceApi=\\\"http://stage-latest.eternalcrusade.com\\\"?StashboardApi=\\\"https://wh40k-stage-stashboard.appspot.com\\\"" config: betakey: namco-shipping description: Stage/Namco (shipping) executable: EternalCrusadeClient.exe type: none - - arguments: >- - ?UseDevFeatures=1?EnableMBP=1?UsePersistence=1?UseTurbulentApi=1?PktLag=0?PktLagVariance=0?PktLoss=0?PktOrder=0?PktDup=0?UseLobby=1?ServiceApi=\"http://stage-latest.eternalcrusade.com\"?StashboardApi=\"https://wh40k-stage-stashboard.appspot.com\" + - arguments: "?UseDevFeatures=1?EnableMBP=1?UsePersistence=1?UseTurbulentApi=1?PktLag=0?PktLagVariance=0?PktLoss=0?PktOrder=0?PktDup=0?UseLobby=1?ServiceApi=\\\"http://stage-latest.eternalcrusade.com\\\"?StashboardApi=\\\"https://wh40k-stage-stashboard.appspot.com\\\"" config: betakey: ratings description: PEGI Ratings executable: EternalCrusadeClient.exe type: none - - arguments: >- - ?UseDevFeatures=1?EnableMBP=1?UsePersistence=1?UseTurbulentApi=1?PktLag=0?PktLagVariance=0?PktLoss=0?PktOrder=0?PktDup=0?UseLobby=1?ServiceApi=\"http://loc.sandbox.eternalcrusade.com\"?StashboardApi=\"https://wh40k-uat-stashboard.appspot.com\" + - arguments: "?UseDevFeatures=1?EnableMBP=1?UsePersistence=1?UseTurbulentApi=1?PktLag=0?PktLagVariance=0?PktLoss=0?PktOrder=0?PktDup=0?UseLobby=1?ServiceApi=\\\"http://loc.sandbox.eternalcrusade.com\\\"?StashboardApi=\\\"https://wh40k-uat-stashboard.appspot.com\\\"" config: betakey: localization description: Localization executable: EternalCrusadeClient.exe type: none - - arguments: >- - ?EnableMBP=1?IsPveLocked=0?UsePersistence=1?UseTurbulentApi=1?PktLag=0?PktLagVariance=0?PktLoss=0?PktOrder=0?PktDup=0?UseLobby=1?ServiceApi=\"http://latest.eternalcrusade.com\"?StashboardApi=\"https://wh40k-dev-stashboard.appspot.com\" + - arguments: "?EnableMBP=1?IsPveLocked=0?UsePersistence=1?UseTurbulentApi=1?PktLag=0?PktLagVariance=0?PktLoss=0?PktOrder=0?PktDup=0?UseLobby=1?ServiceApi=\\\"http://latest.eternalcrusade.com\\\"?StashboardApi=\\\"https://wh40k-dev-stashboard.appspot.com\\\"" config: betakey: patch-shipping description: Special patch testing branch executable: EternalCrusadeClient.exe type: none - - arguments: >- - ?EnableMBP=1?UsePersistence=1?UseTurbulentApi=1?UseDevFeatures=1?UseLobby=1?ServiceApi=\"http://debug.sandbox.eternalcrusade.com\" + - arguments: "?EnableMBP=1?UsePersistence=1?UseTurbulentApi=1?UseDevFeatures=1?UseLobby=1?ServiceApi=\\\"http://debug.sandbox.eternalcrusade.com\\\"" config: betakey: colt-none - description: Launch using \"debug.sandbox.eternalcrusade.com\" + description: "Launch using \\\"debug.sandbox.eternalcrusade.com\\\"" executable: EternalCrusadeClient.exe type: none - - arguments: '?ServiceApi=\"http://debug.sandbox.eternalcrusade.com\"' + - arguments: "?ServiceApi=\\\"http://debug.sandbox.eternalcrusade.com\\\"" config: - betakey: 'colt-dev,colt-shipping' - description: Launch COLT on \"debug.sandbox.eternalcrusade.com\" + betakey: "colt-dev,colt-shipping" + description: "Launch COLT on \\\"debug.sandbox.eternalcrusade.com\\\"" executable: EternalCrusadeClient.exe type: none - - arguments: >- - ?EnableMBP=1?IsPveLocked=0?UsePersistence=1?UseTurbulentApi=1?PktLag=0?PktLagVariance=0?PktLoss=0?PktOrder=0?PktDup=0?UseLobby=1?ServiceApi=\"http://live-latest.eternalcrusade.com\" + - arguments: "?EnableMBP=1?IsPveLocked=0?UsePersistence=1?UseTurbulentApi=1?PktLag=0?PktLagVariance=0?PktLoss=0?PktOrder=0?PktDup=0?UseLobby=1?ServiceApi=\\\"http://live-latest.eternalcrusade.com\\\"" config: betakey: default-development - description: Launch a Test (profiling build) based on 'Default-Development' branch - executable: EternalCrusade\\Binaries\\Win64\\EternalCrusadeClient-Win64-Test.exe + description: "Launch a Test (profiling build) based on 'Default-Development' branch" + executable: "EternalCrusade\\\\Binaries\\\\Win64\\\\EternalCrusadeClient-Win64-Test.exe" type: none - - arguments: >- - ?IsUnderNDA=0?IsPveLocked=0?EnableMBP=1?UsePersistence=1?UseTurbulentApi=1?PktLag=0?PktLagVariance=0?PktLoss=0?PktOrder=0?PktDup=0?UseLobby=1?ServiceApi=\"http://uat-latest.eternalcrusade.com\"?StashboardApi=\"https://wh40k-uat-stashboard.appspot.com\" - -d3d10 + - arguments: "?IsUnderNDA=0?IsPveLocked=0?EnableMBP=1?UsePersistence=1?UseTurbulentApi=1?PktLag=0?PktLagVariance=0?PktLoss=0?PktOrder=0?PktDup=0?UseLobby=1?ServiceApi=\\\"http://uat-latest.eternalcrusade.com\\\"?StashboardApi=\\\"https://wh40k-uat-stashboard.appspot.com\\\" -d3d10" config: - betakey: 'uat-dev,uat-shipping' + betakey: "uat-dev,uat-shipping" description: Launch UAT build (DirectX 10) executable: EternalCrusadeClient.exe type: none - - arguments: >- - ?EnableMBP=1?IsPveLocked=0?UsePersistence=1?UseTurbulentApi=1?PktLag=0?PktLagVariance=0?PktLoss=0?PktOrder=0?PktDup=0?UseLobby=1?ServiceApi=\"http://live-latest.eternalcrusade.com\" - -d3d10 + - arguments: "?EnableMBP=1?IsPveLocked=0?UsePersistence=1?UseTurbulentApi=1?PktLag=0?PktLagVariance=0?PktLoss=0?PktOrder=0?PktDup=0?UseLobby=1?ServiceApi=\\\"http://live-latest.eternalcrusade.com\\\" -d3d10" description: Launch using DirectX 10 (Live) executable: EternalCrusadeClient.exe type: none -'375250': +"375250": installDir: PizzaExpress launch: - config: oslist: windows description: Play Pizza Express executable: PizzaExpress.exe -'375290': +"375290": installDir: Superstatic launch: - config: oslist: windows executable: Superstatic.vbs type: default -'375310': +"375310": installDir: Mighty Switch Force! Hose It Down! launch: - config: oslist: windows description: Launch executable: HoseItDown.exe -'375320': +"375320": installDir: Colortone launch: - arguments: Colortone config: - osarch: '32' + osarch: "32" oslist: windows description: Colortone executable: colortone.exe @@ -184921,7 +181142,7 @@ - arguments: Colortone config: oslist: macos - executable: colortone.app\\Contents\\MacOS\\colortone + executable: "colortone.app\\\\Contents\\\\MacOS\\\\colortone" type: default workingdir: osx - arguments: Colortone @@ -184932,12 +181153,12 @@ workingdir: linux - arguments: Colortone config: - osarch: '64' + osarch: "64" oslist: windows description: Colortone executable: colortone.exe type: default -'375330': +"375330": installDir: Butsbal launch: - config: @@ -184945,18 +181166,18 @@ description: Launch executable: Butsbal.exe - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: Butsbal.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Butsbal.x86_64 -'375340': {} -'375390': {} -'375400': +"375340": {} +"375390": {} +"375400": installDir: ICY launch: - config: @@ -184967,7 +181188,7 @@ oslist: macos description: Launch executable: Icy_Mac.app -'375420': +"375420": installDir: The Architect launch: - config: @@ -184978,39 +181199,39 @@ oslist: macos description: Launch executable: TheArchitect.app -'375430': +"375430": installDir: Logomancer launch: - config: oslist: windows description: Launch executable: game.exe -'375440': +"375440": installDir: Hero-U Rogue to Redemption launch: - - arguments: '-steam' + - arguments: "-steam" config: oslist: windows executable: Hero-U.exe type: default - - arguments: '-steam' + - arguments: "-steam" config: - osarch: '32' + osarch: "32" oslist: linux executable: Hero-U.x86 type: default - - arguments: '-steam' + - arguments: "-steam" config: - osarch: '64' + osarch: "64" oslist: linux executable: Hero-U.x86_64 type: default - - arguments: '-steam' + - arguments: "-steam" config: oslist: macos executable: Hero-U.app/Contents/MacOS/Hero-U type: default -'375450': +"375450": installDir: NOBUNAGAS_AMBITION_Souzou_SengokuRisshiden launch: - config: @@ -185021,14 +181242,14 @@ nameLocalized: japanese: 信長の野望・創造 戦国立志伝 tchinese: 信長之野望・創造 戰國立志傳 -'375460': +"375460": installDir: 16bittrader launch: - config: oslist: windows description: Launch executable: Trader.exe - - arguments: '--touch' + - arguments: "--touch" config: oslist: windows description: Launch using touch input @@ -185041,7 +181262,7 @@ oslist: linux description: Launch executable: Trader.x86 -'375480': +"375480": installDir: Chronicon launch: - config: @@ -185062,7 +181283,7 @@ type: default nameLocalized: schinese: Chronicon - 英雄旧忆 -'375500': +"375500": installDir: The Deep Paths Labyrinth Of Andokost launch: - config: @@ -185074,24 +181295,22 @@ oslist: macos executable: TheDeepPaths.app type: default -'375510': +"375510": installDir: New kind of adventure launch: - config: oslist: windows description: Launch executable: NKOAgame.exe -'375520': +"375520": installDir: Taimumari launch: - config: oslist: windows - description: 'Taimumari: Definitive Edition' - description_loc: - english: 'Taimumari: Definitive Edition' + description: "Taimumari: Definitive Edition" executable: Taimumari_DefinitiveEdition.exe - config: - osarch: '64' + osarch: "64" oslist: linux executable: run.sh type: default @@ -185101,10 +181320,10 @@ type: none - config: oslist: windows - description: 'Taimumari: Classic' - executable: Classic\\game.exe + description: "Taimumari: Classic" + executable: "Classic\\\\game.exe" type: none -'375530': +"375530": installDir: Football Tactics launch: - executable: game64.exe @@ -185119,7 +181338,7 @@ description: Launch game32 (legacy) executable: game32.exe type: none -'375550': +"375550": installDir: DungeonRift launch: - config: @@ -185131,16 +181350,16 @@ description: Launch executable: DungeonRift.app - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: DungeonRift.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: DungeonRift.x86_64 -'375570': +"375570": installDir: GoblinQuestEscape launch: - config: @@ -185148,14 +181367,14 @@ description: Launch executable: mook.exe type: default -'375580': +"375580": installDir: Three Days launch: - config: oslist: windows description: Launch executable: Threedays.exe -'375600': +"375600": installDir: Air Brawl launch: - config: @@ -185170,7 +181389,7 @@ oslist: linux description: Launch executable: Air Brawl.x86 -'375620': +"375620": installDir: CortexGear AngryDroids launch: - config: @@ -185180,13 +181399,13 @@ type: default - config: oslist: macos - executable: CortexGear AngryDroids (CGAD)MAC.app\\Contents\\MacOs\\CortexGear AngryDroids + executable: "CortexGear AngryDroids (CGAD)MAC.app\\\\Contents\\\\MacOs\\\\CortexGear AngryDroids" type: default - config: oslist: linux executable: CortexGear AngryDroids (CGAD) LINUX.x86 type: default -'375680': +"375680": installDir: Apartment 666 launch: - config: @@ -185197,7 +181416,7 @@ oslist: macos executable: apartment666.app type: default -'375710': +"375710": installDir: The Adventures of Mr. Bobley launch: - config: @@ -185213,19 +181432,19 @@ description: Launch executable: Bobley.x86 type: none -'375720': +"375720": installDir: TukRuk launch: - config: oslist: windows description: Launch executable: tukruk.exe -'375740': {} -'375750': +"375740": {} +"375750": installDir: Invisigun Reloaded launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: Invisigun.exe @@ -185236,13 +181455,13 @@ executable: Invisigun.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch 64-bit executable: Invisigun.x86_64 type: default -'375760': {} -'375770': +"375760": {} +"375770": installDir: Quantum Conscience launch: - config: @@ -185257,15 +181476,13 @@ oslist: linux description: Launch executable: QuantumConscience.sh -'375790': +"375790": installDir: Build-N-Bump launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows description: Launch - description_loc: - english: Launch executable: build-n-bump.exe type: none - config: @@ -185274,12 +181491,12 @@ executable: build-n-bump.app type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: launch.sh type: none -'375810': +"375810": installDir: ForgettableDungeon launch: - config: @@ -185287,7 +181504,7 @@ description: Launch executable: ForgettableDungeon.exe type: none -'375820': +"375820": installDir: Human Resource Machine launch: - config: @@ -185297,18 +181514,18 @@ - config: oslist: macos description: Launch - executable: Human Resource Machine.app\\Contents\\MacOS\\Human Resource Machine + executable: "Human Resource Machine.app\\\\Contents\\\\MacOS\\\\Human Resource Machine" - config: - osarch: '32' + osarch: "32" oslist: linux executable: HumanResourceMachine.bin.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: HumanResourceMachine.bin.x86_64 type: default -'375850': +"375850": installDir: IslandDefense launch: - config: @@ -185317,17 +181534,17 @@ executable: bin/IslandDefense_steam.exe type: none workingdir: bin/ -'375870': +"375870": installDir: SLIDE platformer launch: - config: oslist: windows description: Launch executable: slide_win32.exe -'375900': +"375900": installDir: Trackmania Turbo launch: - - arguments: '-upc_steam_required_product_id 3239 -uplay_steam_mode /steam_vr=0' + - arguments: "-upc_steam_required_product_id 3239 -uplay_steam_mode /steam_vr=0" config: oslist: windows executable: TrackmaniaTurbo.exe @@ -185337,26 +181554,26 @@ description: Config executable: Config.exe type: none - - arguments: '-upc_steam_required_product_id 3239 -uplay_steam_mode' + - arguments: "-upc_steam_required_product_id 3239 -uplay_steam_mode" config: oslist: windows executable: TrackmaniaTurbo.exe type: vr -'375910': +"375910": installDir: Anno 2205 launch: - - arguments: '-uplay_steam_mode' + - arguments: "-uplay_steam_mode" description: Launch - executable: Bin\\Win64\\Anno2205.exe + executable: "Bin\\\\Win64\\\\Anno2205.exe" type: none -'375930': +"375930": installDir: Trap Them launch: - config: oslist: windows description: Launch executable: Trap Them.exe -'375950': +"375950": installDir: Viridi launch: - config: @@ -185368,23 +181585,23 @@ description: Launch (OSX) executable: Viridi.app - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch (Linux) executable: Viridi.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch (Linux 64b) executable: Viridi.x86_64 type: none -'375960': +"375960": installDir: Pro Evolution Soccer 2016 launch: - description: Launch executable: PES2016.exe -'37600': +"37600": installDir: Windosill launch: - config: @@ -185395,7 +181612,7 @@ description: Launch executable: Windosill.app type: none -'376110': +"376110": installDir: Black Island launch: - config: @@ -185406,7 +181623,7 @@ oslist: macos executable: Black Island.app type: default -'376120': +"376120": installDir: Assault CorpsII launch: - config: @@ -185418,7 +181635,7 @@ oslist: macos description: Launch executable: AssaultCorps.app -'376130': +"376130": installDir: Illuminascii launch: - config: @@ -185433,40 +181650,40 @@ oslist: linux description: Launch executable: illuminasciiL.x86 -'376140': +"376140": installDir: SAGA launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: saga.exe -'376150': +"376150": installDir: Industry Transporters launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: Industry Transporters.exe -'376160': - installDir: DNO Rasa's Journey +"376160": + installDir: "DNO Rasa's Journey" launch: - config: oslist: windows description: Launch executable: DNORasasJourney.exe -'376210': +"376210": installDir: The Isle launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Play The Isle executable: TheIsle.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: Play The Isle executable: TheIsle.sh @@ -185476,14 +181693,14 @@ description: Play The Isle executable: TheIsle.app type: default -'376240': +"376240": installDir: Hadean Lands launch: - config: oslist: windows executable: Hadean Lands.exe type: default - - arguments: '--no-sandbox' + - arguments: "--no-sandbox" config: oslist: linux executable: Hadean Lands @@ -185492,7 +181709,7 @@ oslist: macos executable: Hadean Lands.app/Contents/MacOS/Hadean Lands type: default -'376250': +"376250": installDir: Ground Breakers launch: - config: @@ -185509,28 +181726,28 @@ description: OSX executable: GroundBreakers.app type: default -'376300': +"376300": installDir: GUILTY GEAR Xrd -SIGN- launch: - description: Launch executable: BootGGXrd.bat -'376310': +"376310": installDir: Otherland launch: - config: oslist: windows description: Launch - executable: UnrealEngine3\\Binaries\\Win32\\Otherland-Shipping.exe + executable: "UnrealEngine3\\\\Binaries\\\\Win32\\\\Otherland-Shipping.exe" type: none - workingdir: UnrealEngine3\\Binaries\\Win32 -'376350': + workingdir: "UnrealEngine3\\\\Binaries\\\\Win32" +"376350": installDir: OVERGRAVITY launch: - config: oslist: windows description: Launch executable: overgravity.exe -'376410': +"376410": installDir: Acaratus launch: - config: @@ -185538,30 +181755,30 @@ description: Launch executable: Acaratus.exe type: default -'376450': +"376450": installDir: Last Days of Old Earth launch: - config: oslist: windows executable: autorun.exe type: default -'376480': +"376480": installDir: Ohr launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ohr.exe type: default -'376490': +"376490": installDir: TheGreatGatsby launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: GatsbyWin32.exe type: none -'376520': +"376520": installDir: Kelvin and the Infamous Machine launch: - config: @@ -185570,20 +181787,20 @@ type: default - config: oslist: macos - executable: Infamous Machine.app\\Contents\\MacOS\\JavaApplicationStub + executable: "Infamous Machine.app\\\\Contents\\\\MacOS\\\\JavaApplicationStub" type: default - config: oslist: linux executable: InfamousMachine.sh type: default -'376560': +"376560": installDir: Big Fish Legend launch: - config: oslist: windows description: Launch executable: bfl.exe -'376570': +"376570": installDir: WildStar launch: - config: @@ -185592,46 +181809,46 @@ type: default - config: oslist: windows - ownsdlc: '448740' + ownsdlc: "448740" description: WildStarDev - executable: \\WildStarDev\\Steam_WildStar.exe + executable: "\\\\WildStarDev\\\\Steam_WildStar.exe" type: none - config: oslist: windows - ownsdlc: '448741' + ownsdlc: "448741" description: WildStarQA - executable: \\WildStarQA\\Steam_WildStarQA.exe + executable: "\\\\WildStarQA\\\\Steam_WildStarQA.exe" type: none - config: oslist: windows - ownsdlc: '454710' + ownsdlc: "454710" description: WildStar Public Test Realm - executable: \\WildStarPTR\\Steam_WildStarPTR.exe + executable: "\\\\WildStarPTR\\\\Steam_WildStarPTR.exe" type: none -'376620': +"376620": installDir: Arkin launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Arkin_x64.exe type: default - - arguments: '-force-d3d12' + - arguments: "-force-d3d12" config: betakey: test - osarch: '64' + osarch: "64" oslist: windows description: Arkin DirectX 12 (Experimental) executable: Arkin_x64.exe type: option1 -'376680': +"376680": installDir: Splendor launch: - config: oslist: windows description: Launch executable: Splendor.exe -'376730': +"376730": installDir: Monument launch: - config: @@ -185647,130 +181864,130 @@ oslist: macos description: Launch executable: Monument.app -'376750': +"376750": installDir: World War II GI launch: - - arguments: '-conf dosbox_ww2gi.conf -conf dosbox_ww2gi_launch_windows.conf -noconsole' + - arguments: "-conf dosbox_ww2gi.conf -conf dosbox_ww2gi_launch_windows.conf -noconsole" config: oslist: windows description: Launch - executable: dosbox_windows\\dosbox.exe - workingdir: dosbox_windows\\ - - arguments: '-conf dosbox_ww2gi.conf -conf dosbox_ww2gi_launch_windows.conf -noconsole' + executable: "dosbox_windows\\\\dosbox.exe" + workingdir: "dosbox_windows\\\\" + - arguments: "-conf dosbox_ww2gi.conf -conf dosbox_ww2gi_launch_windows.conf -noconsole" config: oslist: windows description: Play World War II GI in DOSBox Daum - executable: dosbox_windows\\daum\\dosbox.exe - workingdir: dosbox_windows\\daum\\ - - arguments: '-conf dosbox_ww2gi.conf -conf dosbox_ww2gi_config_windows.conf -noconsole' + executable: "dosbox_windows\\\\daum\\\\dosbox.exe" + workingdir: "dosbox_windows\\\\daum\\\\" + - arguments: "-conf dosbox_ww2gi.conf -conf dosbox_ww2gi_config_windows.conf -noconsole" config: oslist: windows description: World War II GI - Configuration - executable: dosbox_windows\\dosbox.exe - workingdir: dosbox_windows\\ + executable: "dosbox_windows\\\\dosbox.exe" + workingdir: "dosbox_windows\\\\" - config: oslist: linux description: Launch - executable: dosbox_linux\\launch_ww2gi_game.sh - workingdir: dosbox_linux\\ + executable: "dosbox_linux\\\\launch_ww2gi_game.sh" + workingdir: "dosbox_linux\\\\" - config: oslist: linux description: Play World War II GI in DOSBox Daum - executable: dosbox_linux\\daum\\launch_ww2gi_game_daum.sh - workingdir: dosbox_linux\\daum\\ + executable: "dosbox_linux\\\\daum\\\\launch_ww2gi_game_daum.sh" + workingdir: "dosbox_linux\\\\daum\\\\" - config: oslist: linux description: World War II GI - Configuration - executable: dosbox_linux\\launch_ww2gi_config.sh - workingdir: dosbox_linux\\ - - arguments: '-conf dosbox_ww2gi.conf -conf dosbox_ww2gi_platoon_launch_windows.conf -noconsole' + executable: "dosbox_linux\\\\launch_ww2gi_config.sh" + workingdir: "dosbox_linux\\\\" + - arguments: "-conf dosbox_ww2gi.conf -conf dosbox_ww2gi_platoon_launch_windows.conf -noconsole" config: oslist: windows description: Play Platoon Leader Expansion - executable: dosbox_windows\\dosbox.exe + executable: "dosbox_windows\\\\dosbox.exe" type: none - workingdir: dosbox_windows\\ + workingdir: "dosbox_windows\\\\" - config: oslist: linux description: Play Platoon Leader Expansion - executable: dosbox_linux\\launch_ww2gi_platoon_game.sh + executable: "dosbox_linux\\\\launch_ww2gi_platoon_game.sh" type: none - workingdir: dosbox_linux\\ -'376760': + workingdir: "dosbox_linux\\\\" +"376760": installDir: Big Thinkers Kindergarten launch: - - arguments: '--no-console -c \"scummvm-btk-opengl.ini\" thinkerk-us' + - arguments: "--no-console -c \\\"scummvm-btk-opengl.ini\\\" thinkerk-us" config: oslist: windows description: Launch - executable: ScummVM_Windows\\scummvm.exe - workingdir: ScummVM_Windows\\ - - arguments: '--no-console -c \"scummvm-btk-safe.ini\" thinkerk-us' + executable: "ScummVM_Windows\\\\scummvm.exe" + workingdir: "ScummVM_Windows\\\\" + - arguments: "--no-console -c \\\"scummvm-btk-safe.ini\\\" thinkerk-us" config: oslist: windows description: Play in Non-OpenGL Graphics Mode - executable: ScummVM_Windows\\scummvm.exe - workingdir: ScummVM_Windows\\ - - arguments: '-c \"scummvm-btk-opengl.ini\" thinkerk-us' + executable: "ScummVM_Windows\\\\scummvm.exe" + workingdir: "ScummVM_Windows\\\\" + - arguments: "-c \\\"scummvm-btk-opengl.ini\\\" thinkerk-us" config: oslist: macos description: Launch - executable: ScummVM_Mac\\ScummVM.app\\Contents\\MacOS\\scummvm - workingdir: ScummVM_Mac\\ - - arguments: '-c \"scummvm-btk-safe.ini\" thinkerk-us' + executable: "ScummVM_Mac\\\\ScummVM.app\\\\Contents\\\\MacOS\\\\scummvm" + workingdir: "ScummVM_Mac\\\\" + - arguments: "-c \\\"scummvm-btk-safe.ini\\\" thinkerk-us" config: oslist: macos description: Play in Non-OpenGL Graphics Mode - executable: ScummVM_Mac\\ScummVM.app\\Contents\\MacOS\\scummvm - workingdir: ScummVM_Mac\\ + executable: "ScummVM_Mac\\\\ScummVM.app\\\\Contents\\\\MacOS\\\\scummvm" + workingdir: "ScummVM_Mac\\\\" - config: oslist: linux description: Launch - executable: ScummVM_Linux\\launch_btk_opengl.sh - workingdir: ScummVM_Linux\\ + executable: "ScummVM_Linux\\\\launch_btk_opengl.sh" + workingdir: "ScummVM_Linux\\\\" - config: oslist: linux description: Play in Non-OpenGL Graphics Mode - executable: ScummVM_Linux\\launch_btk_safe.sh - workingdir: ScummVM_Linux\\ -'376770': + executable: "ScummVM_Linux\\\\launch_btk_safe.sh" + workingdir: "ScummVM_Linux\\\\" +"376770": installDir: Big Thinkers 1st Grade launch: - - arguments: '--no-console -c \"scummvm-btfg-opengl.ini\" thinker1-us' + - arguments: "--no-console -c \\\"scummvm-btfg-opengl.ini\\\" thinker1-us" config: oslist: windows description: Launch - executable: ScummVM_Windows\\scummvm.exe - workingdir: ScummVM_Windows\\ - - arguments: '--no-console -c \"scummvm-btfg-safe.ini\" thinker1-us' + executable: "ScummVM_Windows\\\\scummvm.exe" + workingdir: "ScummVM_Windows\\\\" + - arguments: "--no-console -c \\\"scummvm-btfg-safe.ini\\\" thinker1-us" config: oslist: windows description: Play in Non-OpenGL Graphics Mode - executable: ScummVM_Windows\\scummvm.exe - workingdir: ScummVM_Windows\\ - - arguments: '-c \"scummvm-btfg-opengl.ini\" thinker1-us' + executable: "ScummVM_Windows\\\\scummvm.exe" + workingdir: "ScummVM_Windows\\\\" + - arguments: "-c \\\"scummvm-btfg-opengl.ini\\\" thinker1-us" config: oslist: macos description: Launch - executable: ScummVM_Mac\\ScummVM.app\\Contents\\MacOS\\scummvm - workingdir: ScummVM_Mac\\ - - arguments: '-c \"scummvm-btfg-safe.ini\" thinker1-us' + executable: "ScummVM_Mac\\\\ScummVM.app\\\\Contents\\\\MacOS\\\\scummvm" + workingdir: "ScummVM_Mac\\\\" + - arguments: "-c \\\"scummvm-btfg-safe.ini\\\" thinker1-us" config: oslist: macos description: Play in Non-OpenGL Graphics Mode - executable: ScummVM_Mac\\ScummVM.app\\Contents\\MacOS\\scummvm - workingdir: ScummVM_Mac\\ + executable: "ScummVM_Mac\\\\ScummVM.app\\\\Contents\\\\MacOS\\\\scummvm" + workingdir: "ScummVM_Mac\\\\" - config: oslist: linux description: Launch - executable: ScummVM_Linux\\launch_btfg_opengl.sh - workingdir: ScummVM_Linux\\ + executable: "ScummVM_Linux\\\\launch_btfg_opengl.sh" + workingdir: "ScummVM_Linux\\\\" - config: oslist: linux description: Play in Non-OpenGL Graphics Mode - executable: ScummVM_Linux\\launch_btfg_safe.sh - workingdir: ScummVM_Linux\\ -'376780': + executable: "ScummVM_Linux\\\\launch_btfg_safe.sh" + workingdir: "ScummVM_Linux\\\\" +"376780": installDir: Sherlock Holmes Consulting Detective The Case of the Tin Soldier launch: - config: @@ -185781,7 +181998,7 @@ oslist: macos executable: TinSoldier.app type: default -'376790': +"376790": installDir: Sherlock Holmes Consulting Detective The Case of the Mystified Murderess launch: - config: @@ -185793,7 +182010,7 @@ description: Launch executable: Case 3 Mystified Murderess.app type: none -'376870': +"376870": installDir: Minecraft Story Mode - A Telltale Game Series launch: - config: @@ -185805,12 +182022,12 @@ description: Launch executable: Minecraft Story Mode.app - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Minecraft64 type: default -'376880': +"376880": installDir: AstroKill launch: - config: @@ -185821,25 +182038,25 @@ oslist: linux executable: AstroKill.sh type: default - - arguments: '-vulkan' + - arguments: "-vulkan" config: oslist: linux description: Vulkan executable: AstroKill.sh type: option1 - - arguments: '-fullscreen -novsync -vr' + - arguments: "-fullscreen -novsync -vr" config: oslist: windows description: VR executable: AstroKill.exe type: option1 - - arguments: '-fullscreen -novsync -vr' + - arguments: "-fullscreen -novsync -vr" config: oslist: linux description: VR executable: AstroKill.sh type: option2 -'376910': +"376910": installDir: Hot Guns launch: - config: @@ -185847,12 +182064,12 @@ executable: HotGuns.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: HotGuns.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: HotGuns.x86_64 type: default @@ -185860,7 +182077,7 @@ oslist: macos executable: HotGuns.app type: default -'376920': +"376920": installDir: Tiki Man launch: - config: @@ -185875,19 +182092,19 @@ oslist: linux description: Launch executable: TikiMan-Steam-Linux.x86 -'37700': +"37700": installDir: Darkest of Days launch: - executable: darkestofdays.exe -'377060': +"377060": installDir: On a Roll launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: On a Roll.exe type: default -'377070': +"377070": installDir: Noctropolis launch: - config: @@ -185900,11 +182117,11 @@ executable: Noctropolis.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: noctropolis type: default -'377080': +"377080": installDir: Hatoful Boyfriend Holiday Star launch: - config: @@ -185919,7 +182136,7 @@ oslist: linux description: Launch executable: HB2.x86_64 -'377100': +"377100": installDir: UnderEarth launch: - config: @@ -185931,12 +182148,12 @@ oslist: macos executable: UnderEarth.app type: default -'377120': +"377120": installDir: Chronicle Keepers The Dreaming Garden launch: - description: Launch executable: ChronicleKeepers_TheDreamingGarden.exe -'377140': +"377140": installDir: h2o_game launch: - config: @@ -185944,12 +182161,12 @@ executable: launch_h2o.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: h2o.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: h2o.x86_64 type: none @@ -185957,43 +182174,43 @@ oslist: macos executable: h2o.app type: none -'377150': +"377150": installDir: Tactical Genius launch: - description: With Resolution Dialog executable: TacticalGenius.exe -'377160': +"377160": installDir: Fallout 4 launch: - config: - osarch: '64' + osarch: "64" description: Launch executable: Fallout4Launcher.exe type: none -'377190': +"377190": installDir: Pale Echoes launch: - executable: Game.exe type: default -'377200': +"377200": installDir: Daemon Detective Gaiden launch: - description: Launch executable: Daemon Detective Gaiden.exe -'377220': +"377220": installDir: Deficis launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: Deficis.exe - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: Deficis.exe -'377250': +"377250": installDir: Subaeria launch: - config: @@ -186001,7 +182218,7 @@ description: Launch executable: Subaeria.exe type: default -'377260': +"377260": installDir: Unearned Bounty launch: - config: @@ -186014,16 +182231,16 @@ executable: UnearnedBounty.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: UnearnedBounty.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: UnearnedBounty.x86_64 type: default -'377280': +"377280": installDir: Alarameth TD launch: - config: @@ -186035,16 +182252,16 @@ description: Launch executable: Alarameth TD.app - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Alarameth_TD.x86_64 - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: Alarameth_TD.x86 -'377290': +"377290": installDir: Biodrone Battle launch: - config: @@ -186059,70 +182276,70 @@ oslist: macos description: Launch executable: BiodroneBattle.app -'377300': +"377300": installDir: ThunderTierOne launch: - config: betakey: development - osarch: '64' + osarch: "64" oslist: windows executable: Thunder2305.exe type: default - - arguments: '-fps -unit' + - arguments: "-fps -unit" config: betakey: internal - osarch: '64' + osarch: "64" oslist: windows executable: Thunder2305.exe type: default - - arguments: '-fps -unit' + - arguments: "-fps -unit" config: betakey: diagnostics - osarch: '64' + osarch: "64" oslist: windows executable: Thunder2305.exe type: default - - arguments: '-AlphaVersion' + - arguments: "-AlphaVersion" config: betakey: default - osarch: '64' + osarch: "64" oslist: windows executable: Thunder2305.exe type: default - - arguments: '-fps -unit' + - arguments: "-fps -unit" config: betakey: debug - osarch: '64' + osarch: "64" oslist: windows executable: Thunder2305.exe type: default - config: betakey: shipping - osarch: '64' + osarch: "64" oslist: windows executable: Thunder2305.exe type: default - config: betakey: capture - osarch: '64' + osarch: "64" oslist: windows executable: Thunder2305.exe type: default - - arguments: '-AlphaVersion' + - arguments: "-AlphaVersion" config: betakey: alpha - osarch: '64' + osarch: "64" oslist: windows executable: Thunder2305.exe type: default - - arguments: '-AlphaVersion' + - arguments: "-AlphaVersion" config: betakey: alphadev - osarch: '64' + osarch: "64" oslist: windows executable: Thunder2305.exe type: default -'377310': +"377310": installDir: The Tower Of Elements launch: - config: @@ -186136,8 +182353,8 @@ - config: oslist: macos description: Launch - executable: TheTowerOfElements.app\\Contents\\MacOS\\TheTowerOfElements -'377320': + executable: "TheTowerOfElements.app\\\\Contents\\\\MacOS\\\\TheTowerOfElements" +"377320": installDir: Hexters launch: - config: @@ -186155,22 +182372,22 @@ description: Launch executable: hexters.app type: default -'377330': +"377330": installDir: Close Your Eyes launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows executable: Game.exe type: none - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows - ownsdlc: '645840' + ownsdlc: "645840" description: Close Your Eyes - The Twisted Puzzle executable: TwistedPuzzle/TwistedPuzzle.exe type: none -'377360': +"377360": installDir: Western Press launch: - config: @@ -186193,7 +182410,7 @@ description: Launch Workshop Uploader executable: /uploader/uploader.app type: none -'377430': +"377430": installDir: Who Is Mike launch: - config: @@ -186208,7 +182425,7 @@ oslist: macos executable: WhoisMike.app type: none -'377450': +"377450": installDir: Lost Lands Dark Overlord Collectors Edition launch: - config: @@ -186219,7 +182436,7 @@ oslist: macos executable: Lost Lands Dark Overlord CE.app type: none -'377460': +"377460": installDir: Chicken Invaders 3 launch: - config: @@ -186238,59 +182455,59 @@ type: none - config: oslist: windows - ownsdlc: '378620' + ownsdlc: "378620" description: Christmas Edition DLC executable: DLC_xmas/CI3Xmas.exe workingdir: DLC_xmas - config: oslist: linux - ownsdlc: '378620' + ownsdlc: "378620" description: Christmas Edition DLC executable: DLC_xmas/CI3Xmas.exe type: none workingdir: DLC_xmas - config: oslist: macos - ownsdlc: '378620' + ownsdlc: "378620" description: Christmas Edition DLC executable: DLC_xmas/Chicken Invaders 3 Xmas Steam.app/Contents/MacOS/CI3Xmas.exe type: none workingdir: DLC_xmas - config: oslist: windows - ownsdlc: '378621' + ownsdlc: "378621" description: Easter Edition DLC executable: DLC_easter/CI3Easter.exe workingdir: DLC_easter - config: oslist: linux - ownsdlc: '378621' + ownsdlc: "378621" description: Easter Edition DLC executable: DLC_easter/CI3Easter.exe type: none workingdir: DLC_easter - config: oslist: macos - ownsdlc: '378621' + ownsdlc: "378621" description: Easter Edition DLC executable: DLC_easter/Chicken Invaders 3 Easter Steam.app/Contents/MacOS/CI3Easter.exe type: none workingdir: DLC_easter -'377470': +"377470": installDir: Enki launch: - config: oslist: windows description: Launch executable: ENKI.exe -'377480': +"377480": installDir: Nero launch: - config: oslist: windows executable: NERO.exe type: default -'377500': +"377500": installDir: Prismatica launch: - config: @@ -186301,33 +182518,33 @@ oslist: macos description: Launch executable: Prismatica.app -'377510': +"377510": installDir: XFieldPaintball3 launch: - config: oslist: windows - executable: ./XFP3.exe + executable: "./XFP3.exe" type: default -'377520': +"377520": installDir: Pike & Shot Campaigns launch: - description: Launch executable: autorun.exe -'377530': +"377530": installDir: Tale of Wuxia launch: - - arguments: '-launch' + - arguments: "-launch" config: oslist: windows executable: wuxia.exe type: default -'377550': +"377550": installDir: Unfair Jousting Fair launch: - description: Launch executable: Unfair Jousting Fair.exe type: none -'377570': +"377570": installDir: Space Drifters 2D launch: - config: @@ -186339,14 +182556,14 @@ - config: oslist: linux executable: Space Drifters 2D.x86 -'377600': +"377600": installDir: Tcheco in the Castle of Lucio launch: - config: oslist: windows description: Launch executable: TCHECO.exe -'377660': +"377660": installDir: Blockwick 2 launch: - config: @@ -186358,16 +182575,16 @@ description: Launch executable: Blockwick 2.app - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: Blockwick 2.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Blockwick 2.x86_64 -'377670': +"377670": installDir: G-senjou no Maou - The Devil on G-String launch: - config: @@ -186376,7 +182593,7 @@ type: default nameLocalized: japanese: G線上の魔王 -'377680': +"377680": installDir: Sakura Beach launch: - config: @@ -186391,22 +182608,22 @@ oslist: linux description: Launch executable: Sakura Beach.sh -'377690': +"377690": installDir: Starlight Vega launch: - config: oslist: windows - executable: StarlightVega-1.2-all\\Starlight Vega.exe + executable: "StarlightVega-1.2-all\\\\Starlight Vega.exe" type: default - config: oslist: macos - executable: StarlightVega-1.2-all\\Starlight Vega.app + executable: "StarlightVega-1.2-all\\\\Starlight Vega.app" type: default - config: oslist: linux - executable: StarlightVega-1.2-all\\Starlight Vega.sh + executable: "StarlightVega-1.2-all\\\\Starlight Vega.sh" type: default -'377710': +"377710": installDir: Idol Magical Girl Chiruchiru Michiru Part 1 launch: - config: @@ -186415,7 +182632,7 @@ executable: MichiruPt1Launcher.exe nameLocalized: japanese: アイドル魔法少女ちるちる☆みちる 前編 -'377720': +"377720": installDir: Idol Magical Girl Chiruchiru Michiru Part 2 launch: - config: @@ -186424,7 +182641,7 @@ executable: MichiruPt2Launcher.exe nameLocalized: japanese: アイドル魔法少女ちるちる☆みちる 後編 -'377760': +"377760": installDir: Fox and Flock launch: - config: @@ -186439,30 +182656,30 @@ oslist: linux description: Launch executable: foxandflock.sh -'377840': +"377840": installDir: FINAL FANTASY IX launch: - config: oslist: windows executable: FF9_Launcher.exe type: default -'377860': +"377860": installDir: Mushihimesama launch: - description: Launch executable: default.exe -'377870': +"377870": installDir: DARIUSBURST Chronicle Saviours launch: - description: Launch executable: dariusburstcs.exe type: none -'377880': +"377880": installDir: Eternal Destiny launch: - executable: eternal.exe type: none -'377890': +"377890": installDir: Blue Libra launch: - config: @@ -186474,40 +182691,40 @@ description: Launch executable: BlueLibra - config: - osarch: '64' + osarch: "64" oslist: macos description: Launch executable: BlueLibra.app -'377900': +"377900": installDir: Empire TV Tycoon launch: - - arguments: '-force-d3d9' + - arguments: "-force-d3d9" config: oslist: windows description: Launch executable: EmpireTV.exe type: default - - arguments: '-force-d3d9' + - arguments: "-force-d3d9" config: - osarch: '32' + osarch: "32" oslist: linux description: LaunchLinux executable: EmpireTV.x86 type: default - - arguments: '-force-d3d9' + - arguments: "-force-d3d9" config: oslist: macos description: LaunchOSX executable: EmpireTV.app type: default - - arguments: '-force-d3d9' + - arguments: "-force-d3d9" config: - osarch: '64' + osarch: "64" oslist: linux description: LaunchLinux64 executable: EmpireTV.x86_64 type: default -'377940': +"377940": installDir: Slam launch: - config: @@ -186521,56 +182738,56 @@ executable: slam.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: slam.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: slam.x86_64 type: default - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" config: oslist: windows description: Select Resolution executable: slam.exe type: config - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" config: oslist: macos description: Select Resolution executable: slam.app type: config - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" config: - osarch: '32' + osarch: "32" oslist: linux description: Select Resolution executable: slam.x86 type: config - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" config: - osarch: '64' + osarch: "64" oslist: linux description: Select Resolution executable: slam.x86_64 type: config - - arguments: '-vrmode OpenVR' + - arguments: "-vrmode OpenVR" config: oslist: windows executable: slam.exe type: vr -'377950': +"377950": installDir: Jamestown+ launch: - config: oslist: windows executable: JamestownPlus.exe type: default -'377970': +"377970": installDir: VoidandMeddler launch: - config: @@ -186581,7 +182798,7 @@ oslist: macos executable: Void_Meddler.app type: default -'377980': +"377980": installDir: Mortos launch: - config: @@ -186589,7 +182806,7 @@ description: Launch executable: Mortos.exe type: none -'37800': +"37800": installDir: QuantZ launch: - config: @@ -186598,26 +182815,26 @@ - config: oslist: macos executable: QuantZ.app -'378020': +"378020": installDir: Protocol launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: protocol.exe - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: protocol.exe - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: protocol.X86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: protocol.X86_64 @@ -186625,7 +182842,7 @@ oslist: macos description: Launch executable: protocol.app -'378030': +"378030": installDir: Cardinal Quest 2 launch: - config: @@ -186641,10 +182858,10 @@ description: Launch executable: cq2 type: none -'378070': +"378070": installDir: Energy Hook launch: - - arguments: '-vrmode none' + - arguments: "-vrmode none" config: oslist: windows description: Launch @@ -186655,19 +182872,19 @@ description: Launch executable: Energy Hook.app - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: EnergyHook.x86_64 type: none - - arguments: '-vrmode Oculus' + - arguments: "-vrmode Oculus" config: - osarch: '64' + osarch: "64" oslist: windows description: VR with the Oculus Rift executable: Energy Hook.exe type: othervr -'378080': +"378080": installDir: Rack N Ruin launch: - config: @@ -186682,7 +182899,7 @@ oslist: macos description: Launch executable: RackNRuin.app -'378090': +"378090": installDir: Rebel Wings launch: - config: @@ -186691,13 +182908,13 @@ executable: RebelWings.exe - config: oslist: macos - executable: RebelWings.app\\Contents\\MacOS\\RebelWings + executable: "RebelWings.app\\\\Contents\\\\MacOS\\\\RebelWings" type: default - config: oslist: linux executable: RebelWings.x86 type: default -'378100': +"378100": installDir: Nyctophobia launch: - config: @@ -186709,14 +182926,14 @@ description: Launch executable: macdepot_update.app type: none -'378110': +"378110": installDir: Hack RUN launch: - config: oslist: windows description: Launch executable: HackRUN.exe -'378120': +"378120": installDir: Football Manager 2016 launch: - config: @@ -186731,69 +182948,67 @@ oslist: linux description: Launch executable: fm -'378240': +"378240": installDir: The Mors launch: - config: oslist: windows executable: The Mors.exe type: default -'378260': +"378260": installDir: Fortify launch: - config: oslist: windows executable: Fortify.exe type: none -'378270': +"378270": installDir: Putrefaction launch: - config: oslist: windows description: Launch executable: Putrefaction.exe -'378280': +"378280": installDir: PAC launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: pac.exe - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: pac - config: betakey: betatest - osarch: '64' + osarch: "64" oslist: windows description: PAC Beta Testing executable: pacbeta.exe type: none -'378300': +"378300": installDir: The Knobbly Crook launch: - config: oslist: windows description: Launch - description_loc: - english: Launch executable: Knobbly Crook.exe type: default - config: oslist: windows executable: winsetup.exe type: config -'378350': +"378350": installDir: Chromadrome 2 launch: - config: oslist: windows executable: Chromadrome2Steam.exe type: default -'378360': +"378360": installDir: Ymir launch: - config: @@ -186801,13 +183016,13 @@ description: Launch executable: Ymir.exe type: none -'378370': +"378370": installDir: Nomad launch: - config: oslist: windows executable: Nomad.exe -'378390': +"378390": installDir: Production Inc launch: - config: @@ -186815,25 +183030,25 @@ description: Launch executable: Code/main.exe workingdir: Code -'378410': +"378410": installDir: Dont Be Patchman launch: - config: oslist: linux - description: Don't Be Patchman - Linux Launch + description: "Don't Be Patchman - Linux Launch" executable: dont-be-patchman.sh type: none - config: oslist: windows - description: Don't Be Patchman - Windows Launch + description: "Don't Be Patchman - Windows Launch" executable: dont-be-patchman.exe type: default - config: oslist: macos - description: Don't Be Patchman - OSX Launch - executable: Don't Be Patchman.app\\Contents\\MacOS\\Don't Be Patchman + description: "Don't Be Patchman - OSX Launch" + executable: "Don't Be Patchman.app\\\\Contents\\\\MacOS\\\\Don't Be Patchman" type: default -'378420': +"378420": installDir: Jurassic Island The Dinosaur Zoo launch: - config: @@ -186845,40 +183060,40 @@ oslist: macos executable: Jurassic Island The Dinosaur Zoo.app type: default -'378450': +"378450": installDir: Robot Tsunami launch: - config: oslist: windows executable: Binaries/Win32/RobotTsunami.exe type: default -'378480': +"378480": installDir: Badland Bandits launch: - - arguments: '-user_type steam' + - arguments: "-user_type steam" config: oslist: windows description: Launch executable: BadlandBandits.exe - - arguments: '-user_type steam' + - arguments: "-user_type steam" config: oslist: linux description: Launch executable: BadlandBandits.x86_64 - - arguments: '-user_type steam' + - arguments: "-user_type steam" config: oslist: macos description: Launch executable: BadlandBandits.app -'378490': +"378490": installDir: Sunny Hillride launch: - config: oslist: windows executable: SunnyHillride.exe type: none -'378510': - installDir: 'Witches, Heroes and Magic' +"378510": + installDir: "Witches, Heroes and Magic" launch: - config: oslist: windows @@ -186888,7 +183103,7 @@ oslist: macos description: Launch executable: Witches Heroes and Magic.app -'378530': +"378530": installDir: NaturesZombieApocalypse launch: - config: @@ -186903,40 +183118,40 @@ oslist: linux description: Launch executable: NZA.x86 -'378540': +"378540": installDir: The Surge launch: - description: Launch Steam Version (Cloud Saves enabled) - executable: bin\\TheSurge.exe + executable: "bin\\\\TheSurge.exe" type: none - workingdir: bin\\ - - arguments: '-wipe_steam_saves=true' + workingdir: "bin\\\\" + - arguments: "-wipe_steam_saves=true" config: - betakey: 'qa_test,focus_nightly' + betakey: "qa_test,focus_nightly" description: Wipe Steam cloud saves for The Surge - executable: bin\\TheSurge.exe + executable: "bin\\\\TheSurge.exe" type: none - workingdir: bin\\ -'378570': + workingdir: "bin\\\\" +"378570": installDir: Robo Miner launch: - config: oslist: windows description: Launch executable: RoboMiner.exe -'378580': +"378580": installDir: Untamed Life Of A Cougar launch: - description: Launch executable: Untamed Life of a Cougar.exe -'378590': +"378590": installDir: Forest Warrior launch: - config: oslist: windows description: Launch executable: forest_warrior.exe -'378610': +"378610": installDir: Valley launch: - config: @@ -186949,28 +183164,28 @@ description: Launch executable: Valley.app type: default - - arguments: '-force-opengl' + - arguments: "-force-opengl" config: oslist: linux description: Launch executable: Valley.x86_64 type: default - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" config: oslist: windows executable: Valley.exe type: config - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" config: oslist: macos executable: Valley.app type: config - - arguments: '-show-screen-selector -force-opengl' + - arguments: "-show-screen-selector -force-opengl" config: oslist: linux executable: Valley.x86_64 type: config -'378630': +"378630": installDir: ShadowsOnTheVatican_2 launch: - config: @@ -186991,10 +183206,10 @@ executable: hd/SotV2.exe type: option2 workingdir: hd/ -'378660': +"378660": installDir: Blues and Bullets launch: - - arguments: '-force-d3d9' + - arguments: "-force-d3d9" config: oslist: windows description: Launch @@ -187007,61 +183222,61 @@ oslist: linux executable: Blues and Bullets.x86 type: none -'378690': {} -'378700': +"378690": {} +"378700": installDir: Neptune Flux launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: NeptuneFlux.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: NeptuneFlux.exe type: vr - config: - osarch: '64' + osarch: "64" oslist: windows executable: NeptuneFlux.exe type: othervr - config: - osarch: '64' + osarch: "64" oslist: macos executable: NeptuneFlux.app type: default -'378720': +"378720": installDir: Thea The Awakening launch: - config: oslist: windows - description: 'Thea: The Awakening' + description: "Thea: The Awakening" executable: Thea.exe - config: - osarch: '64' + osarch: "64" oslist: macos executable: Thea.app type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: Thea.x86_64 type: none - - arguments: '-force-gfx-direct -force-d3d9' + - arguments: "-force-gfx-direct -force-d3d9" config: oslist: windows description: in GFX Direct mode executable: Thea.exe type: option1 - - arguments: '-force-gfx-direct -force-d3d9' + - arguments: "-force-gfx-direct -force-d3d9" config: oslist: windows - ownsdlc: '488130' - description: 'Thea: MultiPrayer in GFX Direct mode' + ownsdlc: "488130" + description: "Thea: MultiPrayer in GFX Direct mode" executable: MP/TheaMP.exe type: option1 -'378750': +"378750": installDir: Sayonara Umihara Kawase launch: - config: @@ -187070,20 +183285,20 @@ executable: UmiByeWin.exe - executable: UmiByeVR.exe type: vr -'378770': +"378770": installDir: ESCHATOS launch: - description: Launch executable: ESCHATOS.exe type: none -'378790': +"378790": installDir: KaguraDouchuuki launch: - config: oslist: windows executable: s_kagura_r.exe type: default -'378800': +"378800": installDir: Project Hero launch: - config: @@ -187095,19 +183310,19 @@ oslist: macos executable: Police Tactics Imperio.app type: none -'378810': +"378810": installDir: Steamroll launch: - config: oslist: windows executable: Steamroll.exe type: default - - arguments: '-opengl' + - arguments: "-opengl" config: oslist: macos executable: Steamroll.app type: default - - arguments: '-opengl4' + - arguments: "-opengl4" config: oslist: linux description: OpenGL 4 version @@ -187118,141 +183333,141 @@ description: OpenGL 3 version (For older hardware and drivers) executable: LinuxNoEditor/Steamroll/Binaries/Linux/Steamroll-Linux-Shipping type: option1 -'378830': - installDir: The Princess' Heart +"378830": + installDir: "The Princess' Heart" launch: - description: Launch executable: game.exe -'378850': - installDir: Galagan's Island Reprymian Rising +"378850": + installDir: "Galagan's Island Reprymian Rising" launch: - config: oslist: windows - description: 'Launch Galagan''s Island: Reprymian Rising' - executable: Galagan's Island.exe + description: "Launch Galagan's Island: Reprymian Rising" + executable: "Galagan's Island.exe" type: none - config: oslist: macos - description: 'Launch Galagan''s Island: Reprymian Rising' - executable: Galagan's Island.app + description: "Launch Galagan's Island: Reprymian Rising" + executable: "Galagan's Island.app" type: none - config: oslist: windows - ownsdlc: '406500' - description: 'Launch Galagan''s Island: Metagalactic Monstrosities' - executable: GI_MM_Windows\\Galagan's Island Metagalactic Monstrosities.exe + ownsdlc: "406500" + description: "Launch Galagan's Island: Metagalactic Monstrosities" + executable: "GI_MM_Windows\\\\Galagan's Island Metagalactic Monstrosities.exe" type: none - config: oslist: macos - ownsdlc: '406500' - description: 'Launch Galagan''s Island: Metagalactic Monstrosities' - executable: GI_MM_Mac\\Galagan's Island Metagalactic Monstrosities.app + ownsdlc: "406500" + description: "Launch Galagan's Island: Metagalactic Monstrosities" + executable: "GI_MM_Mac\\\\Galagan's Island Metagalactic Monstrosities.app" type: none - config: oslist: windows - ownsdlc: '432840' - description: 'Launch Galagan''s Island: Reprymian Rising Holiday 2015 Skin' - executable: Holiday2015Skin_Windows\\Galagan's Island_Holiday2015.exe + ownsdlc: "432840" + description: "Launch Galagan's Island: Reprymian Rising Holiday 2015 Skin" + executable: "Holiday2015Skin_Windows\\\\Galagan's Island_Holiday2015.exe" type: none - config: oslist: macos - ownsdlc: '432840' - description: 'Launch Galagan''s Island: Reprymian Rising Holiday 2015 Skin' - executable: Holiday2015Skin_Mac\\Galagan's Island_Holiday2015.app + ownsdlc: "432840" + description: "Launch Galagan's Island: Reprymian Rising Holiday 2015 Skin" + executable: "Holiday2015Skin_Mac\\\\Galagan's Island_Holiday2015.app" type: none -'378860': +"378860": installDir: Project CARS 2 launch: - - arguments: '-novr' + - arguments: "-novr" config: - osarch: '64' + osarch: "64" oslist: windows description: Project CARS 2 (64-bit) executable: pCARS2.exe type: default - config: betakey: backup - osarch: '64' + osarch: "64" oslist: windows description: Project CARS 2 Gold Build executable: pCARS2Gld.exe type: option2 - config: betakey: backup - osarch: '64' + osarch: "64" oslist: windows description: Project CARS 2 QA Build executable: pCARS2QA.exe type: option3 - config: - osarch: '64' + osarch: "64" oslist: windows description: Project CARS 2 executable: pCARS2.exe type: vr - config: - osarch: '64' + osarch: "64" oslist: windows description: Project CARS 2 executable: pCARS2.exe type: othervr - config: betakey: stagingtest - osarch: '64' + osarch: "64" oslist: windows description: Project CARS 2 Gold Build executable: pCARS2Gld.exe type: option2 - config: betakey: stagingtest - osarch: '64' + osarch: "64" oslist: windows description: Project CARS 2 QA Build executable: pCARS2QA.exe type: option3 - config: betakey: wmdtesting - osarch: '64' + osarch: "64" oslist: windows description: Project CARS 2 QA Build executable: pCARS2QA.exe type: option3 - config: betakey: wmdtesting - osarch: '64' + osarch: "64" oslist: windows description: Project CARS 2 Gold Build executable: pCARS2Gld.exe type: option3 - config: betakey: testingnew - osarch: '64' + osarch: "64" oslist: windows description: Project CARS 2 Gold build executable: pCARS2Gld.exe type: option3 - config: betakey: testingnew - osarch: '64' + osarch: "64" oslist: windows description: Project CARS 2 QA build executable: pCARS2QA.exe type: option3 - config: betakey: tobii - osarch: '64' + osarch: "64" oslist: windows description: Project CARS 2 QA build executable: pCARS2QA.exe type: option3 -'378930': +"378930": installDir: PesadeloRegressao launch: - config: oslist: windows executable: PesadeloRegressao.exe type: default -'379210': +"379210": installDir: Wayward launch: - config: @@ -187270,7 +183485,7 @@ description: Launch executable: wayward_launcher type: default -'379260': +"379260": installDir: Atlantic Quest Solitaire launch: - config: @@ -187280,9 +183495,9 @@ - config: oslist: macos description: Launch - executable: AtlanticQuest-Solitaire.app\\Contents\\MacOS\\AtlanticQuest-Solitaire - workingdir: AtlanticQuest-Solitaire.app\\Contents\\MacOS -'379290': + executable: "AtlanticQuest-Solitaire.app\\\\Contents\\\\MacOS\\\\AtlanticQuest-Solitaire" + workingdir: "AtlanticQuest-Solitaire.app\\\\Contents\\\\MacOS" +"379290": installDir: Sumo Revise launch: - config: @@ -187293,62 +183508,62 @@ oslist: windows description: Mode Editor executable: SumoModeEditor.exe -'379320': +"379320": installDir: Clandestinity of Elsie launch: - config: oslist: windows description: Launch executable: Game.exe -'379340': +"379340": installDir: Buggy launch: - config: oslist: windows description: Launch executable: Buggy.exe -'379350': +"379350": installDir: Sol Divide launch: - description: Launch executable: Sol Divide.exe -'379370': +"379370": installDir: Mobile Light Force launch: - config: oslist: windows description: Launch executable: Mobile Light Force.exe -'379380': +"379380": installDir: ReLoaded launch: - description: Launch executable: Reloaded.exe -'379390': +"379390": installDir: Superstar Dance Club launch: - config: oslist: windows description: Launch executable: Superstar Dance Club.exe -'379420': +"379420": installDir: Polynomial 2 launch: - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: Polynomial2_32 type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Polynomial2_64 type: none - - arguments: '--no_vr=1' + - arguments: "--no_vr=1" config: - osarch: '32' + osarch: "32" oslist: windows description: Launch (32 bit no VR) executable: Polynomial2.exe @@ -187358,47 +183573,47 @@ description: Launch executable: Polynomial2_osx.app type: none - - arguments: '--steam_openvr=1' + - arguments: "--steam_openvr=1" config: - osarch: '32' + osarch: "32" oslist: windows executable: Polynomial2.exe type: vr - - arguments: '--steam_openvr=1' + - arguments: "--steam_openvr=1" config: - osarch: '64' + osarch: "64" oslist: windows description: 64-bit executable: bin_w64/Polynomial2_64.exe type: vr - - arguments: '--no_vr=1' + - arguments: "--no_vr=1" config: - osarch: '64' + osarch: "64" oslist: windows description: Launch (64 bit no vr) executable: bin_w64/Polynomial2_64.exe type: default - - arguments: '--vr_api=1' + - arguments: "--vr_api=1" config: - osarch: '64' + osarch: "64" oslist: windows description: experimentally executable: bin_w64/Polynomial2_64.exe type: othervr -'379430': +"379430": installDir: KingdomComeDeliverance launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: Bin\\Win64\\KingdomCome.exe + executable: "Bin\\\\Win64\\\\KingdomCome.exe" type: none -'379520': +"379520": installDir: DELTAZEAL launch: - description: Launch executable: deltazeal.exe -'379530': +"379530": installDir: Fate Tectonics launch: - config: @@ -187410,26 +183625,24 @@ oslist: macos executable: FateTectonics.app type: none -'37960': +"37960": installDir: Jewel Quest launch: - executable: JewelQuest.exe -'379600': +"379600": installDir: Diner Mania launch: - config: oslist: windows description: Launch executable: DinerMania.exe -'379610': +"379610": installDir: Animated Puzzles launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Animated Puzzles x86 - description_loc: - english: Animated Puzzles x86 executable: AnimatedPuzzles.exe type: option1 - config: @@ -187445,11 +183658,9 @@ - config: oslist: windows description: Launch - description_loc: - english: Launch executable: AnimatedPuzzles_x64.exe type: default -'379640': +"379640": installDir: Bloo Kid 2 launch: - config: @@ -187460,28 +183671,28 @@ oslist: windows executable: BlooKid2 Workshop Tool.exe type: editor -'379670': +"379670": installDir: Technolust launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Technolust.exe type: othervr -'37970': +"37970": installDir: Jewel Quest 2 launch: - executable: JewelQuest2.exe -'379720': +"379720": installDir: DOOM launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: DOOM executable: DOOMx64.exe type: default -'379760': +"379760": installDir: GravityError launch: - config: @@ -187492,27 +183703,27 @@ oslist: windows description: Launch executable: GravityError.exe -'37980': +"37980": installDir: Jewel Quest 3 launch: - executable: JewelQuest3.exe -'379870': +"379870": installDir: Alteil Horizons launch: - config: oslist: windows description: Launch executable: bin/AlteilHorizons.exe -'37990': +"37990": installDir: Jewel Quest Mysteries launch: - executable: EmeraldTear.exe -'379960': - installDir: 'MPGB [School Girls Edition]' +"379960": + installDir: "MPGB [School Girls Edition]" launch: - description: Launch - executable: 'MahjongPrettyGirlsBattle[SchoolGirlsEdition].exe' -'379980': + executable: "MahjongPrettyGirlsBattle[SchoolGirlsEdition].exe" +"379980": installDir: Panzermadels launch: - config: @@ -187524,45 +183735,45 @@ oslist: macos executable: Panzermadels.app type: none -'379990': +"379990": installDir: HUSH launch: - config: oslist: windows description: Launch executable: hush.exe -'380': +"380": installDir: Half-Life 2 launch: - - arguments: '-game episodic -steam' + - arguments: "-game episodic -steam" config: oslist: windows executable: hl2.exe workingdir: bin - - arguments: '-game episodic -steam' + - arguments: "-game episodic -steam" config: oslist: macos executable: hl2.sh - - arguments: '-game episodic -steam' + - arguments: "-game episodic -steam" config: oslist: linux executable: hl2.sh -'3800': +"3800": installDir: Advent Rising launch: - description: Launcher - executable: System\\Play Advent Rising.exe + executable: "System\\\\Play Advent Rising.exe" type: none - workingdir: System\\ + workingdir: "System\\\\" - description: Advent Rising - executable: System\\advent.exe + executable: "System\\\\advent.exe" type: option1 - workingdir: System\\ -'38000': + workingdir: "System\\\\" +"38000": installDir: Mahjong Quest launch: - executable: Mahjong.exe -'380000': +"380000": installDir: MiniOne Racing launch: - config: @@ -187573,14 +183784,14 @@ oslist: macos description: Launch executable: MiniOne Racing.app -'380020': +"380020": installDir: Fairytales Three Heroes launch: - config: oslist: windows description: Launch - executable: bin\\game.exe -'380100': + executable: "bin\\\\game.exe" +"380100": installDir: Flute Master launch: - config: @@ -187589,17 +183800,17 @@ type: default - config: oslist: macos - executable: Flute Master.app\\Contents\\MacOS\\Flute Master + executable: "Flute Master.app\\\\Contents\\\\MacOS\\\\Flute Master" type: default -'380110': {} -'380120': - installDir: Celia's Quest +"380110": {} +"380120": + installDir: "Celia's Quest" launch: - config: oslist: windows description: Launch executable: Game.exe -'380130': +"380130": installDir: Warhawks launch: - config: @@ -187607,7 +183818,7 @@ description: Launch executable: AirStrikeClassic_oculusTest.exe type: none -'380140': +"380140": installDir: The Secret of Tremendous Corporation launch: - config: @@ -187615,19 +183826,17 @@ description: Launch executable: TSoTC.exe type: default - - arguments: '-f -a1' + - arguments: "-f -a1" config: oslist: linux description: Launch - description_loc: - english: Launch executable: launcher type: default - config: oslist: macos executable: The Secret of Tremendous Corporation.app/Contents/MacOS/SLUDGE type: default -'380150': +"380150": installDir: STASIS launch: - config: @@ -187640,7 +183849,7 @@ executable: StasisLauncher.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: start @@ -187654,15 +183863,15 @@ description: and Bypass Launcher (NOT RECOMMENDED) executable: Stasis.app type: option1 - workingdir: ./ -'380210': + workingdir: "./" +"380210": installDir: Signal to Noise launch: - config: oslist: windows executable: signal.exe type: default -'380220': +"380220": installDir: HoverJunkers launch: - config: @@ -187670,7 +183879,7 @@ description: Multiplayer Alpha executable: HoverJunkers.exe type: vr -'380360': +"380360": installDir: Tap Tap Infinity launch: - config: @@ -187681,57 +183890,57 @@ oslist: macos description: Launch executable: Tap Tap Infinity.app -'380540': +"380540": installDir: Inevitability launch: - config: oslist: windows executable: Inevitability.exe -'380550': +"380550": installDir: Incandescent launch: - description: English executable: Incandecsent.exe - - arguments: '-german' + - arguments: "-german" description: Deutsch executable: Incandecsent.exe - - arguments: '-russian' + - arguments: "-russian" description: ру́сский язы́к executable: Incandecsent.exe -'380560': +"380560": installDir: Spandex Force - Champion Rising launch: - config: oslist: windows description: Launch executable: SpandexForceChampionRising.exe -'380570': +"380570": installDir: Axion launch: - description: Launch executable: Start.bat -'380580': +"380580": installDir: SpaceCorn launch: - config: oslist: windows executable: CSpacecorn.exe type: none -'38060': +"38060": installDir: Risk 2 launch: - executable: RiskII.exe -'380600': +"380600": installDir: Fishing Planet launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: FishingPlanet.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: FishingPlanet.exe @@ -187742,103 +183951,101 @@ executable: FishingPlanet.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: FishingPlanet.X86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: FishingPlanet.X86 type: default - config: betakey: vrbeta - osarch: '64' + osarch: "64" oslist: windows executable: FishingPlanet.exe type: vr -'380650': +"380650": installDir: Hard Lander launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch - description_loc: - english: Launch executable: HardLander.exe type: default - config: oslist: macos executable: mac_content.app type: default -'380660': +"380660": installDir: Killing Time at Lightspeed launch: - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: nw type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: nw type: none - config: - osarch: '64' + osarch: "64" oslist: macos description: Launch executable: nw.app - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: nw.exe type: none - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: nw.exe type: none -'380670': +"380670": installDir: Final Approach launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: FinalApproachVR.exe type: vr - - arguments: '-vrmode Oculus' + - arguments: "-vrmode Oculus" config: - osarch: '64' + osarch: "64" oslist: windows executable: FinalApproachVR.exe type: othervr -'380690': - installDir: Don'Yoku +"380690": + installDir: "Don'Yoku" launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: nw.exe - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: nw.exe -'38070': +"38070": installDir: Coconut Queen launch: - executable: CoconutQueen.exe -'380700': +"380700": installDir: Zombie Killtime launch: - config: @@ -187849,10 +184056,10 @@ oslist: macos description: Launch executable: ZombieKilltime.app -'380750': +"380750": installDir: Anima Gate of Memories launch: - - arguments: '-popupwindow' + - arguments: "-popupwindow" config: oslist: windows executable: AnimaGateOfMemories.exe @@ -187862,53 +184069,53 @@ executable: AnimaGateOfMemories.app type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: GoMLinux.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: GoMLinux.x86_64 type: none -'380770': +"380770": installDir: Wind of Luck Arena launch: - arguments: BUY_GOLD_ENABLED=FALSE config: oslist: windows description: Launch - executable: Game\\SteamLauncher.exe -'380790': {} -'38080': + executable: "Game\\\\SteamLauncher.exe" +"380790": {} +"38080": installDir: Build-A-Lot 1 launch: - executable: Buildalot.exe -'380810': +"380810": installDir: Herald launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Herald.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Herald.x86_64 type: default - config: - osarch: '64' + osarch: "64" oslist: macos - executable: Herald.app\\Contents\\MacOS\\Herald + executable: "Herald.app\\\\Contents\\\\MacOS\\\\Herald" type: default -'380840': +"380840": installDir: Teeworlds launch: - config: oslist: windows description: Launch - executable: tw\\teeworlds.exe + executable: "tw\\\\teeworlds.exe" type: default - config: oslist: linux @@ -187921,7 +184128,7 @@ executable: tw/teeworlds type: default workingdir: MacOS/ -'380860': +"380860": installDir: Barbara-ian launch: - config: @@ -187932,11 +184139,11 @@ oslist: macos description: Launch executable: Babs.app -'38090': +"38090": installDir: Build-A-Lot 2 launch: - executable: Buildalot2.exe -'380920': +"380920": installDir: Boss 101 launch: - config: @@ -187944,36 +184151,36 @@ description: Launch executable: Boss_101.exe type: default -'380950': +"380950": installDir: Bocce Revolution launch: - config: oslist: windows description: Launch executable: main.exe -'380990': +"380990": installDir: B.A.D Battle Armor Division launch: - config: oslist: windows description: Launch executable: BAD Battle Armor Division.exe -'3810': +"3810": installDir: BloodRayne launch: - executable: rayne.exe -'38100': +"38100": installDir: Build-A-Lot 3 launch: - executable: Buildalot3.exe -'381000': +"381000": installDir: 6 Nights launch: - config: oslist: windows executable: Nights.exe type: default -'381010': +"381010": installDir: Orion A Sci-Fi Visual Novel launch: - config: @@ -187982,13 +184189,13 @@ type: none - config: oslist: macos - executable: Orion.app\\Contents\\MacOS\\Orion + executable: "Orion.app\\\\Contents\\\\MacOS\\\\Orion" type: default - config: oslist: linux executable: Orion.sh type: none -'381020': +"381020": installDir: Sky Rogue launch: - config: @@ -188003,7 +184210,7 @@ oslist: linux description: Launch executable: skyrogue.x86 -'381050': +"381050": installDir: The Ritual on Weylyn Island launch: - config: @@ -188014,61 +184221,61 @@ oslist: macos description: Default OSX Launch executable: Ritual.app -'381090': +"381090": installDir: Ted by Dawn launch: - config: oslist: windows description: Launch executable: tedbydawn.exe -'38110': +"38110": installDir: Build-A-Lot 4 launch: - executable: Buildalot4.exe -'381100': +"381100": installDir: The Men of Yoshiwara Kikuya launch: - - arguments: '-windowed' + - arguments: "-windowed" config: oslist: windows executable: kikuya.exe type: default -'381120': +"381120": installDir: Shoppe Keep launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: Shoppe Keep.exe - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: Shoppe Keep.exe - config: - osarch: '32' + osarch: "32" oslist: macos description: Launch executable: Shoppe Keep.app - config: - osarch: '64' + osarch: "64" oslist: macos description: Launch executable: Shoppe Keep.app - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: Shoppe Keep.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Shoppe Keep.x86_64 type: default -'381130': +"381130": installDir: Karma launch: - config: @@ -188079,7 +184286,7 @@ oslist: linux executable: Karma.x86 type: none -'381140': +"381140": installDir: Cruel Arena launch: - config: @@ -188087,7 +184294,7 @@ description: Launch executable: Cruel_Arena.exe type: none -'381170': +"381170": installDir: Lost in Paradise launch: - config: @@ -188099,48 +184306,48 @@ description: Launch executable: Lost in Paradise.app - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch Lost in Paradise for Linux 32 bit executable: Lost_in_Paradise - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch Lost in Paradise 64 bit executable: Lost_in_Paradise -'381180': +"381180": installDir: Edengrad launch: - description: Launch executable: edengrad.exe type: none -'38120': +"38120": installDir: Farm Frenzy launch: - executable: farm.exe -'381210': +"381210": installDir: Dead by Daylight launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: DeadByDaylight.exe type: none nameLocalized: schinese: 黎明杀机 -'381220': +"381220": installDir: Hydraulic Empire launch: - config: oslist: windows description: Launch executable: Hydraulic Empire.exe -'381250': +"381250": installDir: Stardrift Nomads launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: stardrift_nomads.exe @@ -188154,11 +184361,11 @@ executable: stardrift_nomads.x86 type: none - config: - osarch: '32' + osarch: "32" oslist: windows executable: stardrift_nomads32.exe type: none -'381260': +"381260": installDir: Orion Trail launch: - config: @@ -188170,16 +184377,16 @@ description: Launch executable: Orion Trail.app - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: Orion Trail.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Orion Trail.x86_64 -'381290': +"381290": installDir: Dragon Rider launch: - config: @@ -188188,41 +184395,41 @@ type: default - config: oslist: macos - executable: DragonRider.app\\Contents\\MacOS\\DragonRider + executable: "DragonRider.app\\\\Contents\\\\MacOS\\\\DragonRider" type: default -'38130': +"38130": installDir: Farm Frenzy 2 launch: - executable: farm2.exe -'381310': +"381310": installDir: Proton Pulse launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch in SteamVR executable: protonpulse.exe type: vr - - arguments: '-oculus' + - arguments: "-oculus" config: betakey: beta-oculus-support - osarch: '64' + osarch: "64" oslist: windows description: Launch in Oculus executable: protonpulse.exe type: othervr -'381320': +"381320": installDir: Bezier launch: - config: oslist: windows executable: Bezier.exe type: none -'381340': +"381340": installDir: Mallow Drops launch: - config: - osarch: '64' + osarch: "64" oslist: macos description: Launch executable: MallowDropSteam.app @@ -188232,23 +184439,23 @@ description: Launch executable: MallowDropSteam.exe type: none -'38140': +"38140": installDir: Farm Frenzy Pizza Party launch: - executable: FarmFrenzyPizzaParty.exe -'38150': +"38150": installDir: Farm Frenzy 3 launch: - executable: FarmFrenzy3.exe -'381550': +"381550": installDir: Arcslinger launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ArcSlinger.exe type: vr -'381560': +"381560": installDir: Epic Cards Battle launch: - config: @@ -188259,46 +184466,36 @@ oslist: macos description: Launch executable: Epic Cards Battle.app -'381590': +"381590": installDir: Shred! Remastered launch: - config: oslist: windows description: Launch - description_loc: - english: Launch executable: Shred! Remastered.exe - config: oslist: macos description: Launch - description_loc: - english: Launch executable: Shred! Remastered.app - config: betakey: testing oslist: windows description: Shred! Remastered Test Branch - description_loc: - english: Shred! Remastered Test Branch executable: Shred! Remastered.exe - config: betakey: testing oslist: macos description: Shred! Remastered Beta - description_loc: - english: Shred! Remastered Beta executable: Shred! Remastered.app - config: oslist: windows description: Shred! Dowhill MTB (original 2015 version) - description_loc: - english: Shred! Dowhill MTB (original 2015 version) - executable: \\Shred1\\Shred!DownhillMTB.exe -'38160': + executable: "\\\\Shred1\\\\Shred!DownhillMTB.exe" +"38160": installDir: Farm Frenzy 3 American Pie launch: - executable: FarmFrenzy3_America.exe -'381610': +"381610": installDir: Dandy launch: - config: @@ -188309,12 +184506,12 @@ oslist: windows description: Launch executable: Dandy.exe -'381620': {} -'38170': +"381620": {} +"38170": installDir: Cradle of Rome launch: - executable: CradleOfRome.exe -'381750': +"381750": installDir: RCSIM2 launch: - config: @@ -188331,7 +184528,7 @@ description: Linux Version executable: RCSIM2.x86 type: none -'381780': +"381780": installDir: 80 Days launch: - config: @@ -188342,11 +184539,11 @@ oslist: macos description: Launch executable: 80 Days.app -'38180': +"38180": installDir: Cradle of Persia launch: - executable: CradleOfPersia.exe -'381800': +"381800": installDir: DRIFT_84 launch: - config: @@ -188357,8 +184554,8 @@ oslist: macos description: Launch executable: game.app -'381810': {} -'381850': +"381810": {} +"381850": installDir: Paperboat launch: - config: @@ -188374,87 +184571,77 @@ description: Launch Linux executable: Paperboat/Binaries/Linux/Paperboat-Linux-Shipping type: none -'381870': +"381870": installDir: Koala Kids launch: - config: oslist: windows description: Launch executable: KoalaKids.exe -'381880': - installDir: Red Rope - Don't Fall Behind +"381880": + installDir: "Red Rope - Don't Fall Behind" launch: - config: oslist: windows - description: Red Rope - Don't Fall Behind - executable: Red Rope - Don't Fall Behind.exe + description: "Red Rope - Don't Fall Behind" + executable: "Red Rope - Don't Fall Behind.exe" type: default - config: - osarch: '64' + osarch: "64" oslist: linux - description: Red Rope - Don't Fall Behind - executable: Red Rope - Don't Fall Behind.x86_64 + description: "Red Rope - Don't Fall Behind" + executable: "Red Rope - Don't Fall Behind.x86_64" type: default - config: oslist: macos - description: Red Rope - Don't Fall Behind - executable: Red Rope - Don't Fall Behind.app + description: "Red Rope - Don't Fall Behind" + executable: "Red Rope - Don't Fall Behind.app" type: default - config: - osarch: '32' + osarch: "32" oslist: linux - description: Red Rope - Don't Fall Behind - executable: Red Rope - Don't Fall Behind.x86 + description: "Red Rope - Don't Fall Behind" + executable: "Red Rope - Don't Fall Behind.x86" type: default -'381890': +"381890": installDir: Induction launch: - config: oslist: windows description: Launch - description_loc: - english: Launch executable: Induction.exe type: none - config: oslist: macos description: Launch - description_loc: - english: Launch executable: Induction.app type: none - config: betakey: legacy - osarch: '32' + osarch: "32" oslist: linux description: Launch - description_loc: - english: Launch executable: Induction.x86 type: none - config: betakey: legacy - osarch: '64' + osarch: "64" oslist: linux description: Launch - description_loc: - english: Launch executable: Induction.x86_64 type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch - description_loc: - english: Launch executable: Induction type: none -'38190': +"38190": installDir: Romance of Rome launch: - executable: Romance of Rome.exe -'381900': - installDir: Bard's Gold +"381900": + installDir: "Bard's Gold" launch: - config: oslist: windows @@ -188463,24 +184650,24 @@ - config: oslist: macos description: Launch - executable: Bard's Gold.app + executable: "Bard's Gold.app" - config: oslist: linux description: Launch executable: runner -'381910': +"381910": installDir: Xenocide launch: - description: Launch executable: xenocide.exe -'381940': +"381940": installDir: Trials on Tatooine launch: - config: oslist: windows executable: Kona.exe type: vr -'381990': +"381990": installDir: Dragon Saga launch: - config: @@ -188488,32 +184675,32 @@ description: Launch Dragon Saga executable: WPLauncher.exe type: none -'3820': +"3820": installDir: BloodRayne 2 launch: - executable: br2.exe -'38200': +"38200": installDir: Raven Squad launch: - executable: RS.exe -'382000': +"382000": installDir: Mindshow launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Mindshow executable: Mindshow.exe type: vr - - arguments: Mindhole_Backend_Host \"api-staging.mindshow.com\" Mindhole_Frontend_Host \"home-staging.mindshow.com\" + - arguments: "Mindhole_Backend_Host \\\"api-staging.mindshow.com\\\" Mindhole_Frontend_Host \\\"home-staging.mindshow.com\\\"" config: - betakey: 'pre-internal,internal,blufocus' - osarch: '64' + betakey: "pre-internal,internal,blufocus" + osarch: "64" oslist: windows description: STAGING executable: Mindshow.exe type: vr -'382050': +"382050": installDir: Eon Altar launch: - config: @@ -188524,21 +184711,21 @@ oslist: macos description: Launch executable: EonAltar.app -'382070': +"382070": installDir: Neoncube launch: - config: oslist: windows description: Launch executable: Neoncube.exe -'382080': +"382080": installDir: The Alien Wasteland launch: - config: oslist: windows description: Launch - executable: Binaries\\Win32\\UDK.exe -'382090': + executable: "Binaries\\\\Win32\\\\UDK.exe" +"382090": installDir: Dungeon Nightmares II - The Memory launch: - config: @@ -188549,11 +184736,11 @@ oslist: macos description: Launch executable: DungeonNightmaresII.app -'38210': +"38210": installDir: Roogoo launch: - executable: Roogoo.exe -'382120': +"382120": installDir: Journey To The Center Of The Earth launch: - config: @@ -188570,32 +184757,32 @@ description: Launch executable: journey to the center of the earth.app type: none -'382130': - installDir: Exile's End +"382130": + installDir: "Exile's End" launch: - config: oslist: windows description: Launch executable: exiles_end.exe - config: - osarch: '64' + osarch: "64" oslist: macos description: Launch executable: exiles_end type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: exiles_end type: none - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: exiles_end type: none -'382140': +"382140": installDir: Skyhill launch: - config: @@ -188609,41 +184796,41 @@ executable: Skyhill.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: Skyhill.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Skyhill.x86_64 type: default -'382160': +"382160": installDir: Dark Years launch: - executable: DarkYears.exe type: none -'382180': +"382180": installDir: Devilry launch: - description: Launch executable: Devilry.exe -'38220': +"38220": installDir: Section 8 launch: - executable: S8.exe -'382230': {} -'382250': +"382230": {} +"382250": installDir: Lightrise™ launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: lightrise.exe type: default -'382260': +"382260": installDir: 8Bit Fiesta Steam launch: - config: @@ -188655,7 +184842,7 @@ oslist: linux executable: nw type: default -'382270': +"382270": installDir: SpaceXonix launch: - config: @@ -188663,7 +184850,7 @@ description: Launch executable: SpaceXonixQt.exe - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: SpaceXonixQtLinux.sh @@ -188671,11 +184858,11 @@ oslist: macos description: Launch executable: SpaceXonixQt.app -'38230': +"38230": installDir: Hotel Giant 2 launch: - executable: HG2.exe -'382300': +"382300": installDir: Kidnapped launch: - config: @@ -188690,23 +184877,23 @@ oslist: linux description: Launch executable: Kidnapped.x86 -'382310': {} -'382320': +"382310": {} +"382320": installDir: HeartOfEmber01.1_Data launch: - config: oslist: windows description: Launch executable: HeartOfEmber01.1.exe -'382330': +"382330": installDir: Killers and Thieves launch: - config: oslist: windows executable: Killersandthieves.exe type: default -'382350': - installDir: Devil's Bluff +"382350": + installDir: "Devil's Bluff" launch: - config: oslist: windows @@ -188716,21 +184903,21 @@ oslist: macos executable: Devils Bluff.app type: none -'382360': +"382360": installDir: johnwick launch: - config: oslist: windows - executable: WindowsNoEditor\\wick.exe + executable: "WindowsNoEditor\\\\wick.exe" type: vr -'382380': +"382380": installDir: The Amber Throne launch: - config: oslist: windows description: Launch executable: Game.exe -'382420': +"382420": installDir: E.T. Armies launch: - config: @@ -188738,40 +184925,40 @@ description: Launch E.T. Armies executable: ETArmiesLauncher.exe type: none -'382480': +"382480": installDir: Super Dungeon Run launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: DungeonRun.exe - config: - osarch: '32' + osarch: "32" oslist: macos description: Launch executable: DungeonRun.app - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: DungeonRun.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: DungeonRun.x86_64 - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: DungeonRun.exe - config: - osarch: '64' + osarch: "64" oslist: macos description: Launch executable: DungeonRun.app -'382490': +"382490": installDir: Relic Hunters Zero launch: - config: @@ -188787,7 +184974,7 @@ description: Launch executable: RelicHuntersZero type: none -'382560': +"382560": installDir: Hot Lava launch: - config: @@ -188796,27 +184983,27 @@ executable: archive/build/hotlava.exe type: default workingdir: archive/build -'382570': +"382570": installDir: Glass Wing launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch - executable: 'Glass Wing [Eager Passion LLC].exe' + executable: "Glass Wing [Eager Passion LLC].exe" type: none - description: Control Config executable: SET_CONTROLS.exe -'382850': +"382850": installDir: Piercing Blow launch: - - arguments: '20' + - arguments: "20" config: oslist: windows description: Launch executable: PiercingBlow.exe type: none -'382880': +"382880": installDir: Feudalism launch: - config: @@ -188831,7 +185018,7 @@ oslist: linux executable: Feudalism.x86 type: default -'382890': +"382890": installDir: FINAL FANTASY V launch: - config: @@ -188839,7 +185026,7 @@ description: Launch executable: FFV_Launcher.exe type: none -'382900': +"382900": installDir: Final Fantasy 6 launch: - config: @@ -188852,7 +185039,7 @@ description: Start Final Fantasy VI Launcher executable: FF6_Launcher.exe type: none -'382920': +"382920": installDir: RETSNOM launch: - config: @@ -188863,7 +185050,7 @@ oslist: macos description: Launch executable: RETSNOM.app -'382970': +"382970": installDir: Risk - The Game of Global Domination launch: - config: @@ -188874,7 +185061,7 @@ oslist: macos executable: Risk.app type: default -'3830': +"3830": installDir: Psychonauts launch: - config: @@ -188886,14 +185073,14 @@ - config: oslist: linux executable: Psychonauts -'383010': +"383010": installDir: JamG launch: - config: oslist: windows description: Launch executable: JamG.exe -'383020': +"383020": installDir: a Family of Grave Diggers launch: - config: @@ -188901,61 +185088,61 @@ description: Launch executable: GraveDiggers.exe type: default -'383030': {} -'383070': +"383030": {} +"383070": installDir: The Fleets of Sol launch: - - executable: Binaries\\Win32\\TheFleetsOfSol.exe -'383080': + - executable: "Binaries\\\\Win32\\\\TheFleetsOfSol.exe" +"383080": installDir: Sakura Clicker launch: - config: oslist: windows description: Launch executable: Sakura Clicker.exe -'383100': +"383100": installDir: Fragile Allegiance launch: - config: oslist: windows description: Launch executable: FAMenu.exe -'383120': +"383120": installDir: Empyrion - Galactic Survival launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: EmpyrionLauncher.exe type: none -'383150': +"383150": installDir: DIDE launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: DeadIslandGame.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: DeadIslandGame type: default -'383180': +"383180": installDir: DIRDE launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: DeadIslandRiptideGame.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: DeadIslandRiptideGame type: default -'383190': +"383190": installDir: SUMICO - The Numbers Game launch: - config: @@ -188970,9 +185157,9 @@ - config: oslist: linux description: Launch - executable: ./Sumico + executable: "./Sumico" type: none -'383230': +"383230": installDir: Dungeon Souls launch: - config: @@ -188990,33 +185177,25 @@ description: Launch Dungeon Souls executable: DungeonSouls.app/Contents/MacOS/Mac_Runner type: none -'383240': +"383240": installDir: Angels That Kill launch: - config: oslist: windows description: Angels That Kill - The Final Cut - description_loc: - english: Angels That Kill - The Final Cut - executable: Angels That Kill The Final Cut\\Angels That Kill - The Final Cut.exe + executable: "Angels That Kill The Final Cut\\\\Angels That Kill - The Final Cut.exe" type: default - config: oslist: macos description: Angels That Kill - The Final Cut - description_loc: - english: Angels That Kill - The Final Cut - executable: >- - Angels That Kill The Final Cut\\Angels That Kill - The Final Cut.app\\Contents\\MacOS\\Angels That Kill - The - Final Cut + executable: "Angels That Kill The Final Cut\\\\Angels That Kill - The Final Cut.app\\\\Contents\\\\MacOS\\\\Angels That Kill - The Final Cut" type: default - config: oslist: linux description: Angels That Kill - The Final Cut - description_loc: - english: Angels That Kill - The Final Cut - executable: Angels That Kill The Final Cut\\Angels That Kill - The Final Cut.x86 + executable: "Angels That Kill The Final Cut\\\\Angels That Kill - The Final Cut.x86" type: default -'383270': +"383270": installDir: Hue launch: - config: @@ -189025,26 +185204,26 @@ type: default - config: oslist: macos - executable: Hue.app\\Contents\\MacOS\\Hue + executable: "Hue.app\\\\Contents\\\\MacOS\\\\Hue" type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Hue.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Hue.x86_64 type: default -'383330': +"383330": installDir: Star Chronicles Delta Quadrant launch: - config: oslist: windows description: Launch executable: Delta Quadrant.exe -'383460': +"383460": installDir: Sound of Drop - fall into poison - launch: - config: @@ -189059,26 +185238,26 @@ oslist: macos description: Launch executable: shizuku.app -'383520': +"383520": installDir: Lilly and Sasha Guardian Angels launch: - config: oslist: windows description: Launch executable: GuardianAngels.exe -'383530': +"383530": installDir: Vortex launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch - executable: Vortex\\Binaries\\Win64\\Vortex.exe -'383540': + executable: "Vortex\\\\Binaries\\\\Win64\\\\Vortex.exe" +"383540": installDir: Metro Warp launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: Metro Warp.exe @@ -189089,42 +185268,42 @@ executable: Metro Warp.app/Contents/MacOS/Metro Warp type: none - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: Metro Warp.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Metro Warp.x86_64 type: default - - arguments: '-vrmode Oculus' + - arguments: "-vrmode Oculus" config: - osarch: '64' + osarch: "64" oslist: windows executable: Metro Warp.exe type: othervr - - arguments: '-vrmode Vive' + - arguments: "-vrmode Vive" config: - osarch: '64' + osarch: "64" oslist: windows executable: Metro Warp.exe type: vr -'383560': +"383560": installDir: Squarelands launch: - config: oslist: windows description: Launch executable: Squarelands.exe -'383580': +"383580": installDir: Flesh Eaters launch: - description: Launch executable: game.exe -'383590': +"383590": installDir: Expert Rifleman launch: - config: @@ -189135,7 +185314,7 @@ oslist: macos description: Launch executable: Expert Rifleman Reloaded.app -'383620': +"383620": installDir: Flight Unlimited Las Vegas launch: - config: @@ -189146,7 +185325,7 @@ oslist: macos description: Launch executable: Flight Unlimited Las Vegas.app -'383630': +"383630": installDir: SEEP Universe launch: - config: @@ -189154,7 +185333,7 @@ description: Launch executable: SEEP Universe.exe type: none -'383670': +"383670": installDir: That Old Time Religion launch: - config: @@ -189169,7 +185348,7 @@ oslist: linux description: Launch executable: That Old Time Religion.sh -'383690': +"383690": installDir: mucomplex launch: - config: @@ -189183,22 +185362,22 @@ executable: start_mc.sh type: default - config: - osarch: '64' + osarch: "64" oslist: macos description: Launch executable: start_mc.sh type: default -'383700': +"383700": installDir: Boneless Zombie launch: - description: Launch executable: BonelessZombie.exe -'383710': +"383710": installDir: Princess KAGUYA launch: - description: Launch executable: PrincessKaguya.exe -'383720': +"383720": installDir: Swords and Crossbones launch: - config: @@ -189209,7 +185388,7 @@ oslist: linux description: Launch executable: sacaeps -'383740': +"383740": installDir: Marble Age Remastered launch: - config: @@ -189221,23 +185400,23 @@ executable: Marble Age Remastered.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Marble Age Remastered.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Marble Age Remastered type: default -'383750': +"383750": installDir: Funk of Titans launch: - config: oslist: windows description: Launch executable: FunkOfTitans.exe -'383780': +"383780": installDir: Judgement launch: - config: @@ -189245,7 +185424,7 @@ description: Launch executable: Judgement.exe type: none -'383790': +"383790": installDir: The Ship Remasted launch: - config: @@ -189257,52 +185436,52 @@ executable: TheShipRemasted.app/Contents/MacOS/TheShipRemasted type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: TheShipRemasted.x86_64 type: default -'383800': +"383800": installDir: Close Order launch: - config: oslist: windows description: Launch executable: CloseOrder.exe -'383810': +"383810": installDir: Doomedndamned launch: - config: oslist: windows description: Launch executable: doomedndamned.exe -'383840': +"383840": installDir: Nimbatus launch: - config: oslist: macos - executable: Mac\\Nimbatus.app\\Contents\\MacOS\\Nimbatus + executable: "Mac\\\\Nimbatus.app\\\\Contents\\\\MacOS\\\\Nimbatus" type: default - config: - osarch: '32' + osarch: "32" oslist: linux - executable: Linux\\Nimbatus.x86 + executable: "Linux\\\\Nimbatus.x86" type: default - config: - osarch: '64' + osarch: "64" oslist: linux - executable: Linux\\Nimbatus.x86_64 + executable: "Linux\\\\Nimbatus.x86_64" type: default - config: - osarch: '64' + osarch: "64" oslist: windows - executable: Windows64\\Nimbatus.exe + executable: "Windows64\\\\Nimbatus.exe" type: default - config: - osarch: '32' + osarch: "32" oslist: windows - executable: Windows32\\Nimbatus.exe + executable: "Windows32\\\\Nimbatus.exe" type: default -'383870': +"383870": installDir: Firewatch launch: - config: @@ -189310,18 +185489,18 @@ description: Launch executable: firewatch.exe - config: - osarch: '64' + osarch: "64" oslist: macos description: Launch executable: firewatch.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: fw.x86_64 type: none -'383930': +"383930": installDir: Doorways Holy Mountains of Flesh launch: - config: @@ -189340,7 +185519,7 @@ description: Launch Doorways executable: Doorways.app type: none -'383940': +"383940": installDir: Steam Marines 2 launch: - config: @@ -189357,14 +185536,14 @@ oslist: linux executable: SM2.x86_64 type: none -'383950': +"383950": installDir: League of Mermaids launch: - config: oslist: windows executable: Game_Pearls2.exe type: none -'383960': +"383960": installDir: Planet Ruler launch: - config: @@ -189373,26 +185552,26 @@ executable: Game.exe nameLocalized: japanese: 星樹の機神 プラネットルーラー -'383970': {} -'383980': +"383970": {} +"383980": installDir: Rivals of Aether launch: - config: oslist: windows description: Launch executable: RivalsofAether.exe -'38400': +"38400": installDir: Fallout launch: - config: oslist: windows executable: falloutlauncher.exe - - arguments: '-classic' + - arguments: "-classic" config: oslist: windows description: Play Classic Version (Best for older systems) executable: falloutlauncher.exe -'384000': +"384000": installDir: crossofthedutchman launch: - config: @@ -189407,7 +185586,7 @@ oslist: linux description: Launch executable: CrossOfTheDutchman.x86_64 -'384010': +"384010": installDir: Castles launch: - config: @@ -189417,25 +185596,25 @@ type: default - config: betakey: whootgames - osarch: '32' + osarch: "32" oslist: linux executable: Castles.x86 type: default - config: betakey: whootgames - osarch: '64' + osarch: "64" oslist: linux executable: Castles.x86_64 type: default -'384030': +"384030": installDir: Florensia launch: - - arguments: '-steam' + - arguments: "-steam" config: oslist: windows executable: Bin/FlorensiaEN.exe type: none -'384040': +"384040": installDir: Impulse Revolution launch: - config: @@ -189447,16 +185626,16 @@ executable: Impulse Revolution.app type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: Impulse Revolution.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: Impulse Revolution.x86_64 type: none -'384080': +"384080": installDir: Industry Manager launch: - config: @@ -189468,7 +185647,7 @@ oslist: macos executable: IndustryManager.app type: none -'384090': +"384090": installDir: Sketch Tales launch: - config: @@ -189476,7 +185655,7 @@ description: Launch executable: SketchTales.exe type: default - - arguments: '-force-d3d9' + - arguments: "-force-d3d9" config: oslist: windows description: in dx9 mode @@ -189487,25 +185666,25 @@ executable: SketchTales.app/Contents/MacOS/SketchTales type: default - config: - osarch: '64' + osarch: "64" oslist: windows description: multiplayer executable: Multiplayer/SketchTales.exe type: option2 -'38410': +"38410": installDir: Fallout 2 launch: - config: oslist: windows executable: fallout2launcher.exe - - arguments: '-classic' + - arguments: "-classic" description: Play Classic Version (Best for older systems) executable: fallout2launcher.exe -'384100': +"384100": installDir: Slybots Frantic Zone launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: Slybots.exe @@ -189516,37 +185695,37 @@ executable: Slybots.app type: none - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: Slybots.exe type: none - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: Slybots.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Slybots.x86_64 type: none -'384110': +"384110": installDir: Pathologic Classic HD launch: - config: oslist: windows description: Launch - executable: bin\\Final\\Game.exe - workingdir: bin\\Final\\ -'384120': + executable: "bin\\\\Final\\\\Game.exe" + workingdir: "bin\\\\Final\\\\" +"384120": installDir: WonderCat Adventures launch: - description: Launch executable: WonderCatAdventures.exe -'384150': +"384150": installDir: TeraBlaster launch: - config: @@ -189556,75 +185735,67 @@ - config: oslist: macos description: Launch - executable: TeraBlaster.app\\Contents\\MacOS\\Mac_Runner -'384180': + executable: "TeraBlaster.app\\\\Contents\\\\MacOS\\\\Mac_Runner" +"384180": installDir: Prominence Poker launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: Prominence\\Binaries\\Win64\\Prominence-Win64-Shipping.exe + executable: "Prominence\\\\Binaries\\\\Win64\\\\Prominence-Win64-Shipping.exe" type: default - config: betakey: development - osarch: '64' + osarch: "64" oslist: windows description: Debug (dev) - description_loc: - english: Debug (dev) - executable: Debug\\Prominence\\Binaries\\Win64\\Prominence.exe + executable: "Debug\\\\Prominence\\\\Binaries\\\\Win64\\\\Prominence.exe" type: option1 - config: betakey: testing - osarch: '64' + osarch: "64" oslist: windows description: Debug (testing) - description_loc: - english: Debug (testing) - executable: Debug\\Prominence\\Binaries\\Win64\\Prominence.exe + executable: "Debug\\\\Prominence\\\\Binaries\\\\Win64\\\\Prominence.exe" type: option1 - config: betakey: release - osarch: '64' + osarch: "64" oslist: windows description: Debug (release) - description_loc: - english: Debug (release) - executable: Debug\\Prominence\\Binaries\\Win64\\Prominence.exe + executable: "Debug\\\\Prominence\\\\Binaries\\\\Win64\\\\Prominence.exe" type: option1 - config: betakey: locqa - osarch: '64' + osarch: "64" oslist: windows description: Debug (locqa) - description_loc: - english: Debug (locqa) - executable: Debug\\Prominence\\Binaries\\Win64\\Prominence.exe + executable: "Debug\\\\Prominence\\\\Binaries\\\\Win64\\\\Prominence.exe" type: option1 -'384190': +"384190": installDir: ABZU launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: AbzuGame.exe type: none -'38420': +"38420": installDir: Fallout Tactics launch: - config: oslist: windows executable: tacticslauncher.exe - - arguments: '-classic' + - arguments: "-classic" config: oslist: windows description: Play Classic Version (Best for older systems) executable: tacticslauncher.exe - - arguments: '-win8' + - arguments: "-win8" description: Play Windowed (Workaround for Windows 8) executable: tacticslauncher.exe -'384200': +"384200": installDir: Raging Justice launch: - config: @@ -189641,14 +185812,14 @@ oslist: macos executable: RagingJustice.app/Contents/MacOS/RagingJustice type: default -'384210': +"384210": installDir: Quadle launch: - config: oslist: windows description: Launch executable: Quadle.exe -'384230': +"384230": installDir: Block Party Sports launch: - config: @@ -189659,14 +185830,14 @@ oslist: macos executable: BlockPartySports_Mac.app type: default -'384250': +"384250": installDir: Super Rude Bear Resurrection launch: - config: oslist: windows executable: SRBR.exe type: default -'384280': +"384280": installDir: MuteCrimsonPlus launch: - config: @@ -189683,47 +185854,39 @@ executable: MuteCrimsonPlus - config: betakey: beta - osarch: '64' + osarch: "64" oslist: windows description: Mute Crimson DX - description_loc: - english: Mute Crimson DX - executable: new\\MuteCrimsonDX.exe + executable: "new\\\\MuteCrimsonDX.exe" type: option1 workingdir: new - config: betakey: beta - osarch: '64' + osarch: "64" oslist: windows description: Mute Crimson+ (2015) - description_loc: - english: Mute Crimson+ (2015) executable: MuteCrimsonPlus.exe type: option2 - config: betakey: beta - osarch: '64' + osarch: "64" oslist: linux description: Mute Crimson DX - description_loc: - english: Mute Crimson DX - executable: new\\MuteCrimsonDX + executable: "new\\\\MuteCrimsonDX" type: option1 workingdir: new - config: betakey: beta - osarch: '64' + osarch: "64" oslist: linux description: Mute Crimson+ (2015) - description_loc: - english: Mute Crimson+ (2015) executable: MuteCrimsonPlus type: option2 -'38430': +"38430": installDir: Kingpin launch: - executable: Kingpin.exe -'384310': +"384310": installDir: Dead In Bermuda launch: - config: @@ -189736,7 +185899,7 @@ description: Launch all executable: Dead In Bermuda.app type: none -'384320': +"384320": installDir: Handball 16 launch: - description: Launch @@ -189747,7 +185910,7 @@ executable: Exe/Detect.exe type: config workingdir: Exe -'384330': +"384330": installDir: PolyRace launch: - config: @@ -189759,35 +185922,35 @@ executable: PolyRace.app/Contents/MacOS/PolyRace type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: PolyRace.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: PolyRace.x86_64 type: default -'384360': +"384360": installDir: Fingered launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows description: Launch executable: nw.exe -'38440': +"38440": installDir: Sacrifice launch: - executable: Sacrifice.exe -'384400': +"384400": installDir: Hordelicious launch: - config: oslist: windows description: Launch executable: Hordelicious.exe -'384480': +"384480": installDir: SixSidesOfTheWorld launch: - config: @@ -189796,13 +185959,13 @@ executable: SixSides.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: SixSides.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: SixSides.x86_64 type: default @@ -189810,7 +185973,7 @@ oslist: macos executable: SixSides.app type: default -'384490': +"384490": installDir: Necropolis launch: - config: @@ -189823,29 +185986,27 @@ description: Launch executable: Necropolis.app/Contents/MacOS/Necropolis type: default -'38450': +"38450": installDir: MDK launch: - executable: MDKD3D.exe type: default - description: Launch Glide Version - description_loc: - english: Launch Glide Version executable: MDK3DFX.EXE type: none -'384500': +"384500": installDir: Zombie Party launch: - config: oslist: windows description: Launch executable: Zombie_Party_v2.exe -'384550': +"384550": installDir: PaintersGuild launch: - description: Launch executable: PaintersGuild.exe -'384570': +"384570": installDir: ZanZarah launch: - config: @@ -189858,7 +186019,7 @@ description: Bonus Content executable: open_bonus_win.bat type: none -'384590': +"384590": installDir: Polychromatic launch: - config: @@ -189872,11 +186033,11 @@ oslist: linux description: Launch executable: polychromatic -'38460': +"38460": installDir: MDK 2 launch: - executable: mdk2Main.exe -'384630': +"384630": installDir: Aviary Attorney launch: - config: @@ -189887,7 +186048,7 @@ oslist: macos description: Launch executable: aviaryattorney.app -'384660': +"384660": installDir: RED Fuse launch: - config: @@ -189898,7 +186059,7 @@ oslist: macos description: Launch executable: RedFuse.app -'384680': +"384680": installDir: MechaNika launch: - config: @@ -189913,19 +186074,19 @@ oslist: macos description: Launch executable: MechaNika.app -'384690': +"384690": installDir: UmiharaKawase launch: - config: oslist: windows executable: UmiFstWin.exe type: none -'384700': +"384700": installDir: UmiharaKawase Shun SE launch: - executable: UmiShunWin.exe type: none -'384740': +"384740": installDir: CAT Interstellar launch: - config: @@ -189937,7 +186098,7 @@ oslist: linux executable: CATInterstellar.sh type: default -'384750': +"384750": installDir: Everest VR launch: - config: @@ -189945,80 +186106,80 @@ description: Vive executable: EverestVR.exe type: vr -'38480': +"38480": installDir: Earthworm Jim launch: - config: oslist: windows - executable: Earthworm Jim 1\\runme.exe + executable: "Earthworm Jim 1\\\\runme.exe" type: default workingdir: Earthworm Jim 1 - - arguments: '-conf \"./Earthworm Jim 1/ewj1.conf\"' + - arguments: "-conf \\\"./Earthworm Jim 1/ewj1.conf\\\"" config: oslist: macos executable: DOSBox/dosbox.app/Contents/MacOS/DOSBox type: default - - arguments: '-conf \"./Earthworm Jim 1/ewj1.conf\"' + - arguments: "-conf \\\"./Earthworm Jim 1/ewj1.conf\\\"" config: oslist: linux executable: dosbox/dosbox type: default -'384840': +"384840": installDir: DBA Southern England launch: - config: oslist: windows - description: 'Dead But Alive: Southern England (classic edition, with slot machine combat)' + description: "Dead But Alive: Southern England (classic edition, with slot machine combat)" executable: DeadButAlive.exe type: option2 - - description: 'Dead But Alive: Southern England (2nd edition)' + - description: "Dead But Alive: Southern England (2nd edition)" executable: DeadButAliveSE.exe type: option1 -'384880': +"384880": installDir: Judged A Court Simulator launch: - config: oslist: windows executable: Judged.exe type: default -'384890': +"384890": installDir: Hack Run ZERO launch: - config: oslist: windows description: Launch executable: HackZero.exe -'38490': +"38490": installDir: Earthworm Jim launch: - config: oslist: windows - executable: Earthworm Jim 2\\runme.exe + executable: "Earthworm Jim 2\\\\runme.exe" type: default workingdir: Earthworm Jim 2 - - arguments: '-conf \"./Earthworm Jim 2/ewj2.conf\"' + - arguments: "-conf \\\"./Earthworm Jim 2/ewj2.conf\\\"" config: oslist: macos executable: DOSBox/dosbox.app/Contents/MacOS/DOSBox type: default - - arguments: '-conf \"./Earthworm Jim 2/ewj2.conf\"' + - arguments: "-conf \\\"./Earthworm Jim 2/ewj2.conf\\\"" config: oslist: linux executable: dosbox/dosbox type: default -'384900': +"384900": installDir: Temporal Shift launch: - description: Launch executable: ts.exe -'384910': +"384910": installDir: Last Half of Darkness - Society of the Serpent Moon launch: - config: oslist: windows description: Launch executable: StartMenu.exe -'384920': +"384920": installDir: ABD A Beautiful Day launch: - config: @@ -190026,14 +186187,14 @@ description: Launch executable: ABD.exe type: default -'384930': +"384930": installDir: Pilot Crusader launch: - config: oslist: windows description: Launch executable: SpaceFighter.exe -'384940': +"384940": installDir: Magical Brickout launch: - config: @@ -190049,7 +186210,7 @@ oslist: linux executable: MagicalBrickout.x86 type: none -'384950': +"384950": installDir: Macabre launch: - config: @@ -190064,32 +186225,32 @@ oslist: linux description: Launch executable: macabre -'384960': +"384960": installDir: Vengeance launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: DirectX executable: Vengeance Reboot.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Vengeance.x86_64 type: default -'384970': - installDir: '#SOHVR' +"384970": + installDir: "#SOHVR" launch: - config: oslist: windows executable: FilmFest_Zane.exe type: vr -'384980': +"384980": installDir: BattleforBlood launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: bfb.exe @@ -190102,12 +186263,12 @@ description: Launch executable: Battle for Blood.app - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: bfb.exe -'384990': - installDir: Gon' E-Choo! +"384990": + installDir: "Gon' E-Choo!" launch: - config: oslist: windows @@ -190118,22 +186279,22 @@ description: Launch executable: gonechoo.app - config: - osarch: '32' + osarch: "32" oslist: linux executable: gonechoo.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: gonechoo.x86_64 type: default -'385020': +"385020": installDir: Ancients of Fasaria Chess Club launch: - description: Launch executable: aofchessclub.exe type: none -'385030': +"385030": installDir: CKane launch: - config: @@ -190150,107 +186311,107 @@ description: Launch executable: ckane type: none -'385060': +"385060": installDir: The Last Warlock launch: - - arguments: '-fullscreen' + - arguments: "-fullscreen" config: oslist: windows description: Launch Fullscreen executable: TheLastWarlock.exe type: default - - arguments: '-fullscreen' + - arguments: "-fullscreen" config: oslist: macos description: Launch executable: TheLastWarlock.app - - arguments: '-fullscreen' + - arguments: "-fullscreen" config: oslist: linux description: Launch Fullscreen executable: TheLastWarlock.sh - - arguments: '-windowed' + - arguments: "-windowed" config: oslist: windows description: Launch Windowed executable: TheLastWarlock.exe type: none - - arguments: '-windowed' + - arguments: "-windowed" config: oslist: macos description: Launch Windowed executable: TheLastWarlock.app - - arguments: '-windowed' + - arguments: "-windowed" config: oslist: linux description: Launch Windowed executable: TheLastWarlock.sh - - arguments: '-fullscreen -opengl' + - arguments: "-fullscreen -opengl" config: oslist: windows description: Launch Fullscreen (OpenGL) executable: TheLastWarlock.exe type: none - - arguments: '-windowed -opengl' + - arguments: "-windowed -opengl" config: oslist: windows description: Launch Windowed (OpenGL) executable: TheLastWarlock.exe type: none -'385070': +"385070": installDir: Atonement Scourge of Time launch: - description: Launch executable: game.exe -'385080': +"385080": installDir: Guardians of Victoria launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: nw.exe type: none - config: - osarch: '64' + osarch: "64" oslist: windows executable: nw.exe type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: guardiansofvictoria type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: guardiansofvictoria type: none - config: - osarch: '32' + osarch: "32" oslist: macos executable: guardiansofvictoria.app type: none - config: - osarch: '64' + osarch: "64" oslist: macos executable: guardiansofvictoria.app type: none -'385100': +"385100": installDir: Space - The Return Of The Pixxelfrazzer launch: - config: oslist: windows description: Launch executable: Space.exe -'385130': - installDir: 'DvDrum, Ultimate Drum Simulator!' +"385130": + installDir: "DvDrum, Ultimate Drum Simulator!" launch: - config: oslist: windows description: DvDrum executable: DvDrum.exe type: none -'385150': +"385150": installDir: Stranded In Time launch: - config: @@ -190265,27 +186426,27 @@ oslist: linux description: Launch executable: StrandedInTime_Linux.x86 -'385190': - installDir: Celestial Tear Demon's Revenge +"385190": + installDir: "Celestial Tear Demon's Revenge" launch: - description: Launch executable: Game.exe -'385200': {} -'385220': +"385200": {} +"385220": installDir: Pulut Adventure launch: - config: oslist: windows description: Launch executable: pulutadventure.exe -'385230': +"385230": installDir: Ninjahtic launch: - config: oslist: windows description: Launch executable: Ninjahtic.exe -'385240': +"385240": installDir: Ultimate Arena launch: - config: @@ -190293,7 +186454,7 @@ description: Launch executable: Ultimate Arena.exe type: none -'385250': +"385250": installDir: Paint it Back launch: - config: @@ -190309,14 +186470,14 @@ oslist: linux executable: pib_launcher.sh type: none -'385260': +"385260": installDir: Lamia Must Die launch: - config: oslist: windows description: Launch executable: Game.exe -'385270': +"385270": installDir: JReX launch: - config: @@ -190330,26 +186491,26 @@ executable: jrex.app/Contents/MacOS/jrex type: default - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch 32-bit executable: jrex.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch 64-bit executable: jrex.x86_64 type: default -'38530': +"38530": installDir: Top Gun launch: - - executable: ./binary/runme.exe - workingdir: ./binary + - executable: "./binary/runme.exe" + workingdir: "./binary" - description: Configuration Tool - executable: ./binary/ConfigTool.exe - workingdir: ./binary -'385310': + executable: "./binary/ConfigTool.exe" + workingdir: "./binary" +"385310": installDir: The Land Of Lamia launch: - config: @@ -190364,14 +186525,14 @@ oslist: linux description: Launch executable: Linux.x86_64 -'385330': +"385330": installDir: Stray Cat Crossing launch: - config: oslist: windows description: Launch executable: Game.exe -'385350': +"385350": installDir: Deadweight launch: - config: @@ -190382,14 +186543,14 @@ oslist: macos executable: Deadweight.app type: default -'385360': +"385360": installDir: Super Trench Attack 2 launch: - config: oslist: windows description: Launch executable: sta2.exe -'385370': +"385370": installDir: Radiator 2 launch: - config: @@ -190401,11 +186562,11 @@ executable: radiator2_steam_mac-osx.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: radiator2_steam_linux.x64 type: default -'385380': +"385380": installDir: Planet Centauri launch: - config: @@ -190414,25 +186575,25 @@ executable: PlanetCentauri.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: PlanetCentauri type: default - config: - osarch: '64' + osarch: "64" oslist: macos description: Launch executable: Launcher type: default -'385390': +"385390": installDir: Hidden Mysteries Civil War launch: - config: oslist: windows description: Launch executable: CivilWar.exe -'385400': +"385400": installDir: Weapons Genius launch: - config: @@ -190442,18 +186603,18 @@ type: default - config: oslist: windows - ownsdlc: '1247480' + ownsdlc: "1247480" description: Launch DLC executable: WeaponGenius.exe type: option1 -'385410': +"385410": installDir: The Journey launch: - config: oslist: windows executable: The Journey Bobs Story.exe type: default -'385440': +"385440": installDir: Buff Knight Advanced launch: - config: @@ -190463,17 +186624,17 @@ type: none - executable: Buff Knight Advanced.app type: none -'385460': +"385460": installDir: ATV GP launch: - description: Launch executable: ATVgp.exe -'385470': +"385470": installDir: Railroad Lines launch: - description: Launch executable: train.exe -'385490': +"385490": installDir: MiniDrivers launch: - config: @@ -190486,42 +186647,42 @@ description: Launch executable: MiniDrivers.app type: default -'385560': +"385560": installDir: Shadow Complex Remastered launch: - config: oslist: windows description: Shadow Complex - executable: .\\Binaries\\Win32\\ShadowComplex-Win32.exe + executable: ".\\\\Binaries\\\\Win32\\\\ShadowComplex-Win32.exe" type: default - config: oslist: macos description: Shadow Complex Remastered executable: Shadow Complex Remastered.app/Contents/MacOS/ShadowComplexRemastered type: default -'385580': +"385580": installDir: The Empty Inn launch: - config: oslist: windows description: Launch executable: nw.exe -'385590': +"385590": installDir: Lethal RPG War launch: - config: oslist: windows description: Launch executable: LRW.exe -'385600': +"385600": installDir: Heavy Fire Shattered Spear launch: - config: oslist: windows description: Launch executable: launcher.exe -'385630': {} -'385680': +"385630": {} +"385680": installDir: Galactic Conquerors launch: - config: @@ -190533,23 +186694,23 @@ description: Launch executable: Galactic Conquerors.app - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: Galactic Conquerors.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Galactic Conquerors.x86_64 -'385690': +"385690": installDir: Wave Mechanics launch: - config: oslist: windows description: Launch executable: Wave Mechanics.exe -'385700': +"385700": installDir: Battle For The Sun launch: - config: @@ -190561,16 +186722,16 @@ description: Launch executable: Battle for the Sun.app - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: Battle for the Sun.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Battle for the Sun.x86_64 -'385710': +"385710": installDir: INK launch: - config: @@ -190585,21 +186746,21 @@ oslist: linux description: Launch executable: run.sh -'385730': +"385730": installDir: WWE2K16 launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: WWE2K16.exe type: none -'385760': +"385760": installDir: NBA 2K17 launch: - executable: NBA2K17.exe type: none -'385770': +"385770": installDir: TimeClickers launch: - config: @@ -190611,23 +186772,23 @@ description: Launch executable: TimeClickers.app - config: - osarch: '32' + osarch: "32" oslist: linux description: Time Clickers (x86) executable: TimeClickers.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Time Clickers (x86_64) executable: TimeClickers.x86_64 -'385800': +"385800": installDir: NEKOPARA Vol. 0 launch: - config: oslist: windows description: Launch executable: nekopara_vol0.exe -'385810': +"385810": installDir: Retaliation Enemy Mine launch: - config: @@ -190637,9 +186798,9 @@ type: default - config: oslist: macos - executable: Retaliation Enemy Mine.app\\Contents\\MacOS\\Retaliation Enemy Mine + executable: "Retaliation Enemy Mine.app\\\\Contents\\\\MacOS\\\\Retaliation Enemy Mine" type: default -'385830': +"385830": installDir: Burgers launch: - config: @@ -190650,41 +186811,41 @@ oslist: macos description: Launch executable: Burgers.app -'385840': +"385840": installDir: The Beard in the Mirror launch: - config: oslist: windows executable: The Beard in the Mirror.exe type: none -'385850': +"385850": installDir: Life in the Dorms launch: - config: oslist: windows executable: DormStory.exe type: default -'385860': +"385860": installDir: Tachyon Project launch: - config: oslist: windows description: Launch executable: Tachyon.exe -'385880': +"385880": installDir: Gladiators Online Death Before Dishonor launch: - - arguments: '-steamversion' + - arguments: "-steamversion" config: oslist: windows description: Launch executable: gladiator.exe - - arguments: '-steamversion' + - arguments: "-steamversion" config: oslist: macos description: MacOS launch executable: gladiator.app -'385890': +"385890": installDir: GoldenRush launch: - config: @@ -190698,25 +186859,25 @@ executable: GoldenRush.app type: none - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch - executable: ./GoldenRush.x86 + executable: "./GoldenRush.x86" type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch - executable: ./GoldenRush.x86_64 + executable: "./GoldenRush.x86_64" type: none -'385900': +"385900": installDir: Arevan launch: - config: oslist: windows description: Launch executable: game.exe -'385940': +"385940": installDir: Battles of the Ancient World launch: - config: @@ -190727,8 +186888,8 @@ oslist: macos executable: BattlesOfTheAncientWorld.app type: none -'385950': - installDir: Infection Humanity's Last Gasp +"385950": + installDir: "Infection Humanity's Last Gasp" launch: - config: oslist: windows @@ -190738,7 +186899,7 @@ oslist: macos description: Launch executable: Infection.app -'385960': +"385960": installDir: Russian Front launch: - config: @@ -190749,14 +186910,14 @@ oslist: macos description: Launch executable: RussianFront.app -'385980': +"385980": installDir: Scott in Space launch: - config: oslist: windows description: Launch executable: scottinspace.exe -'38600': +"38600": installDir: Faerie Solitaire launch: - config: @@ -190768,7 +186929,7 @@ - config: oslist: linux executable: FaerieSolitaire -'386010': +"386010": installDir: Steambirds Alliance launch: - config: @@ -190777,96 +186938,88 @@ type: default - config: oslist: macos - executable: Steambirds.app\\Contents\\MacOS\\Steambirds Alliance + executable: "Steambirds.app\\\\Contents\\\\MacOS\\\\Steambirds Alliance" type: default - - arguments: '-connectionConfig beta -ignoreSteamBranchForConnection' + - arguments: "-connectionConfig beta -ignoreSteamBranchForConnection" config: betakey: test oslist: windows description: On Beta Servers executable: Steambirds.exe type: option1 - - arguments: '-connectionConfig beta -ignoreSteamBranchForConnection' + - arguments: "-connectionConfig beta -ignoreSteamBranchForConnection" config: betakey: test oslist: macos description: On Beta Servers - executable: Steambirds.app\\Contents\\MacOS\\Steambirds Alliance + executable: "Steambirds.app\\\\Contents\\\\MacOS\\\\Steambirds Alliance" type: option1 - config: oslist: linux executable: Steambirds.x86_64 type: default - - arguments: '-connectionConfig beta -ignoreSteamBranchForConnection' + - arguments: "-connectionConfig beta -ignoreSteamBranchForConnection" config: betakey: test oslist: linux description: On Beta Servers executable: Steambirds.x86_64 type: option1 - - arguments: '-connectionConfig prod -ignoreSteamBranchForConnection' + - arguments: "-connectionConfig prod -ignoreSteamBranchForConnection" config: betakey: test oslist: windows description: On Prod Servers executable: Steambirds.exe type: option2 - - arguments: '-connectionConfig prod -ignoreSteamBranchForConnection' + - arguments: "-connectionConfig prod -ignoreSteamBranchForConnection" config: betakey: test oslist: macos description: On Prod Servers - executable: Steambirds.app\\Contents\\MacOS\\Steambirds Alliance + executable: "Steambirds.app\\\\Contents\\\\MacOS\\\\Steambirds Alliance" type: option2 - - arguments: '-connectionConfig prod -ignoreSteamBranchForConnection' + - arguments: "-connectionConfig prod -ignoreSteamBranchForConnection" config: betakey: test oslist: linux description: On Prod Servers executable: Steambirds.x86_64 type: option2 -'386050': +"386050": installDir: Proto Raider launch: - config: oslist: windows description: Launch executable: ProtoRaider.exe -'386070': +"386070": installDir: Planetary Annihilation Titans launch: - - arguments: '--steam --mods-url https://mods.planetaryannihilation.net/' + - arguments: "--steam --mods-url https://mods.planetaryannihilation.net/" config: - osarch: '64' + osarch: "64" oslist: windows description: Launch PA - description_loc: - english: Launch PA - executable: bin_x64\\pa.exe - - arguments: '--steam --mods-url https://mods.planetaryannihilation.net/' + executable: "bin_x64\\\\pa.exe" + - arguments: "--steam --mods-url https://mods.planetaryannihilation.net/" config: - osarch: '32' + osarch: "32" oslist: windows description: Launch PA (32-bit) - description_loc: - english: Launch PA (32-bit) - executable: bin_x86\\pa.exe - - arguments: '--steam --mods-url https://mods.planetaryannihilation.net/' + executable: "bin_x86\\\\pa.exe" + - arguments: "--steam --mods-url https://mods.planetaryannihilation.net/" config: oslist: macos description: Launch PA - description_loc: - english: Launch PA executable: PA.app - - arguments: '--steam --mods-url https://mods.planetaryannihilation.net/' + - arguments: "--steam --mods-url https://mods.planetaryannihilation.net/" config: - osarch: '64' + osarch: "64" oslist: linux description: Launch PA - description_loc: - english: Launch PA executable: PA -'386080': +"386080": installDir: Pharaonic launch: - config: @@ -190881,35 +187034,35 @@ oslist: linux description: Launch executable: Pharaonic -'386090': +"386090": installDir: Nandeyanen! - The 1st Sutra launch: - config: oslist: windows description: Launch executable: Nandeyanen.exe -'386100': +"386100": installDir: Pylon launch: - config: oslist: windows executable: Pylon.exe type: default -'386110': +"386110": installDir: Raywin launch: - config: oslist: windows description: Launch executable: game.exe -'386140': +"386140": installDir: After The End The Harvest launch: - config: oslist: windows description: Launch executable: game.exe -'386160': +"386160": installDir: Vampire of the Sands launch: - config: @@ -190919,55 +187072,45 @@ - config: oslist: linux description: Launch - executable: ./game.sh -'386180': + executable: "./game.sh" +"386180": installDir: Crossout launch: - - arguments: '-steam' + - arguments: "-steam" config: oslist: windows executable: launcher.exe type: default - - arguments: '-steam -staging' + - arguments: "-steam -staging" config: betakey: staging oslist: windows description: Launch staging client executable: launcher.exe type: default - - arguments: '-fromlauncher --enable-eac --no-relaunch -eac_launcher_settings Settings64.json' + - arguments: "-fromlauncher --enable-eac --no-relaunch -eac_launcher_settings Settings64.json" config: betakey: test_compat oslist: windows description: Launch test noyuplay client - description_loc: - english: Launch test noyuplay client executable: CrossoutLauncher.exe type: default - config: betakey: test_compat oslist: windows description: Launch test noyuplay noeac - description_loc: - english: Launch test noyuplay noeac executable: bin/win64/Crossout.exe - - arguments: '-fromlauncher --enable-eac --no-relaunch -eac_launcher_settings Settings64.json' + - arguments: "-fromlauncher --enable-eac --no-relaunch -eac_launcher_settings Settings64.json" config: betakey: test_compat description: EAC without sandbox - description_loc: - english: EAC without sandbox executable: bin/win64/Crossout.exe - - arguments: >- - -fromlauncher -cwd bin\\win64 -eacdir ..\\..\\EasyAntiCheat --enable-eac --no-relaunch -eac_launcher_settings - Settings64.json + - arguments: "-fromlauncher -cwd bin\\\\win64 -eacdir ..\\\\..\\\\EasyAntiCheat --enable-eac --no-relaunch -eac_launcher_settings Settings64.json" config: betakey: test_compat description: EAC for lightweight app - description_loc: - english: EAC for lightweight app executable: CrossoutLauncher.exe -'386200': +"386200": installDir: Survivor The Living Dead launch: - config: @@ -190975,15 +187118,15 @@ description: Launch executable: STLD Redux Ep 2.exe type: none -'386260': +"386260": installDir: Microcosmum Survival of cells launch: - config: oslist: windows description: Launch executable: Microcosmum.exe -'386280': - installDir: Vendetta - curse of Raven's Cry +"386280": + installDir: "Vendetta - curse of Raven's Cry" launch: - config: oslist: windows @@ -191004,7 +187147,7 @@ oslist: windows executable: VCR_Launcher.exe type: config -'386290': +"386290": installDir: Kumoon launch: - config: @@ -191019,14 +187162,14 @@ oslist: windows executable: Kumoon.exe type: vr -'386320': +"386320": installDir: Naninights launch: - config: oslist: windows description: Launch executable: Naninights.exe -'386330': +"386330": installDir: On open seas launch: - config: @@ -191043,7 +187186,7 @@ oslist: linux executable: OnOpenSeas.x86_64 type: default -'386340': +"386340": installDir: MegaSphere launch: - config: @@ -191055,16 +187198,16 @@ description: Launch executable: MegaSphereAlpha.exe - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: MegaSphereAlpha.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: MegaSphereAlpha.x86_64 -'386350': +"386350": installDir: Rise launch: - config: @@ -191072,12 +187215,12 @@ description: Launch executable: Rise.exe - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: rise.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: rise.x86_64 @@ -191085,31 +187228,25 @@ oslist: macos description: Launch executable: rise.app -'386360': +"386360": installDir: SMITE launch: - - arguments: >- - -pid=017 -steam -anon -eac_launcher_settings Settings64.json -seekfreeloadingpcconsole -eac_dir - \"..\\\\EasyAntiCheat\\\\\" + - arguments: "-pid=017 -steam -anon -eac_launcher_settings Settings64.json -seekfreeloadingpcconsole -eac_dir \\\"..\\\\\\\\EasyAntiCheat\\\\\\\\\\\"" config: - osarch: '64' + osarch: "64" oslist: windows description: SMITE 64-bit - executable: Binaries\\Win64\\SmiteEAC.exe + executable: "Binaries\\\\Win64\\\\SmiteEAC.exe" type: option1 workingdir: Binaries - - arguments: >- - -pid=017 -steam -anon -eac_launcher_settings Settings.json -seekfreeloadingpcconsole -eac_dir - \"..\\\\EasyAntiCheat\\\\\" + - arguments: "-pid=017 -steam -anon -eac_launcher_settings Settings.json -seekfreeloadingpcconsole -eac_dir \\\"..\\\\\\\\EasyAntiCheat\\\\\\\\\\\"" config: oslist: windows description: Smite 32-bit - description_loc: - english: Smite 32-bit - executable: Binaries\\Win32\\SmiteEAC.exe + executable: "Binaries\\\\Win32\\\\SmiteEAC.exe" type: option2 workingdir: Binaries -'386390': +"386390": installDir: Dad Beat Dads launch: - config: @@ -191122,14 +187259,14 @@ description: Launch executable: dadbeatdads.app type: default -'386400': +"386400": installDir: Foosball launch: - description: Launch executable: Foosball.exe - description: Configure executable: Configure.exe -'386420': +"386420": installDir: Job the Leprechaun launch: - config: @@ -191144,16 +187281,16 @@ oslist: macos executable: Job_the_Leprechaun_STEAM.app type: none -'386430': {} -'386460': - installDir: Baxter's Venture Director's Cut +"386430": {} +"386460": + installDir: "Baxter's Venture Director's Cut" launch: - config: oslist: windows description: Launch executable: nw.exe -'386470': {} -'386480': +"386470": {} +"386480": installDir: Blood Code launch: - config: @@ -191164,23 +187301,19 @@ - config: oslist: macos description: Launch - description_loc: - english: Launch executable: lib/mac-x86_64/renpy type: default - config: oslist: linux description: Launch - description_loc: - english: Launch executable: lib/linux-x86_64/renpy type: default -'386490': +"386490": installDir: Wanda launch: - executable: Game.exe type: none -'386510': +"386510": installDir: Pyramid Raid launch: - config: @@ -191205,7 +187338,7 @@ description: Launch ProModeEditor executable: PyramidRaid_PROEDITOR.app type: none -'386520': +"386520": installDir: ChampionOfTheGods launch: - config: @@ -191220,33 +187353,33 @@ oslist: linux description: Launch executable: ChampionOfTheGods -'386540': +"386540": installDir: A.I. Invasion launch: - description: Launch executable: AIInvasion.exe -'386560': +"386560": installDir: PsychoStarshipRampage launch: - - arguments: '-jar ./PsychoStarshipRampage.jar' + - arguments: "-jar ./PsychoStarshipRampage.jar" config: oslist: linux description: Launch executable: jre/bin/java - - arguments: '-jar ./PsychoStarshipRampage.jar' + - arguments: "-jar ./PsychoStarshipRampage.jar" config: oslist: windows description: Launch executable: jre/bin/javaw.exe -'386590': +"386590": installDir: Novus Inceptio launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: NovusInceptio.exe -'386600': +"386600": installDir: Pixel Fodder launch: - config: @@ -191256,9 +187389,9 @@ - config: oslist: macos description: Mac OS Launcher - executable: Pixel Fodder.app\\Contents\\MacOS\\Main + executable: "Pixel Fodder.app\\\\Contents\\\\MacOS\\\\Main" type: none -'386620': +"386620": installDir: CookServeDelicious2 launch: - config: @@ -191276,21 +187409,21 @@ description: Launch Linux Game executable: NEW_CSD2_PS4Steam type: default -'386630': +"386630": installDir: Nirvana The First Travel launch: - config: oslist: windows description: Launch executable: nirvanaTFT.exe -'386640': +"386640": installDir: Affected Zone Tactics launch: - config: oslist: windows executable: client.exe type: default -'386650': +"386650": installDir: Dungeons & Robots launch: - config: @@ -191305,7 +187438,7 @@ oslist: linux executable: DNRS.x86 type: default -'386690': +"386690": installDir: Fantastic Contraption launch: - config: @@ -191318,7 +187451,7 @@ description: Launch executable: FantasticContraption.app type: default -'386700': +"386700": installDir: The Oil Blue launch: - arguments: set __COMPAT_LAYER=WIN7RTM @@ -191330,28 +187463,28 @@ oslist: windows description: The Oil Blue Achievement Unlocker/Helper App executable: datafiles/TOBHelperApp.exe -'386710': +"386710": installDir: c_raft launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: craft.exe type: default - - arguments: '-cp ./:craft.jar:lib/* com.nhydock.storymode.DesktopLauncher' + - arguments: "-cp ./:craft.jar:lib/* com.nhydock.storymode.DesktopLauncher" config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: jre/bin/java type: default - - arguments: '-cp ./:craft.jar:lib/* com.nhydock.storymode.DesktopLauncher' + - arguments: "-cp ./:craft.jar:lib/* com.nhydock.storymode.DesktopLauncher" config: oslist: macos executable: jre/bin/java type: default -'386740': +"386740": installDir: Puzzle Strike launch: - config: @@ -191363,23 +187496,23 @@ executable: PuzzleStrike.app type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: PuzzleStrike.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: PuzzleStrike.x86_64 type: none -'386750': +"386750": installDir: Cashtronauts launch: - config: oslist: windows description: Launch - executable: \\windows\\cashtronauts.exe -'386770': + executable: "\\\\windows\\\\cashtronauts.exe" +"386770": installDir: Caladrius Blaze launch: - config: @@ -191387,12 +187520,12 @@ description: Launch game executable: game.exe type: default -'386840': +"386840": installDir: Sentinel4 launch: - description: Launch executable: Sentinel4.exe -'386870': +"386870": installDir: PH2 - Slave Trade launch: - config: @@ -191403,7 +187536,7 @@ oslist: macos description: Launch executable: Slave Trade.app -'386880': +"386880": installDir: Rake launch: - config: @@ -191415,7 +187548,7 @@ description: Rake_Multiplayer executable: MP_Runner.bat type: none -'386900': +"386900": installDir: The Cat Machine launch: - config: @@ -191430,7 +187563,7 @@ oslist: macos description: Launch executable: TheCatMachine.app -'386930': +"386930": installDir: Dragonflight launch: - config: @@ -191443,7 +187576,7 @@ description: Launch executable: Dragonflight.exe type: vr -'386940': +"386940": installDir: Ultimate Chicken Horse launch: - config: @@ -191458,27 +187591,27 @@ oslist: macos description: Launch executable: UltimateChickenHorse.app -'386960': +"386960": installDir: Order of Ataxia Initial Effects launch: - config: oslist: windows - executable: OrderofAtaxia\\Order of Ataxia.exe + executable: "OrderofAtaxia\\\\Order of Ataxia.exe" type: none - config: oslist: linux - executable: OrderofAtaxia\\Order of Ataxia.sh + executable: "OrderofAtaxia\\\\Order of Ataxia.sh" type: none - config: oslist: macos - executable: OrderofAtaxia\\Order of Ataxia.app\\Contents\\MacOS\\Order of Ataxia + executable: "OrderofAtaxia\\\\Order of Ataxia.app\\\\Contents\\\\MacOS\\\\Order of Ataxia" type: none -'386970': - installDir: Memory's Dogma CODE01 +"386970": + installDir: "Memory's Dogma CODE01" launch: - executable: game.exe type: none -'386990': +"386990": installDir: Asphyxia launch: - config: @@ -191493,7 +187626,7 @@ oslist: macos description: Launch executable: Asphyxia.app -'38700': +"38700": installDir: Toki Tori launch: - config: @@ -191504,8 +187637,8 @@ executable: Toki Tori.app - config: oslist: linux - executable: ./TokiTori.bin.x86 -'387010': + executable: "./TokiTori.bin.x86" +"387010": installDir: FIVE Guardians of David launch: - config: @@ -191516,7 +187649,7 @@ oslist: macos executable: Five.app type: default -'387060': +"387060": installDir: Earth Overclocked launch: - config: @@ -191529,12 +187662,12 @@ description: Full Launch executable: Earth Overclocked.app type: default -'387070': +"387070": installDir: One Final Breath launch: - description: Launch executable: OFB.exe -'387090': +"387090": installDir: Revolution_VPS launch: - config: @@ -191542,12 +187675,12 @@ description: Launch executable: Revolution_VPS.exe - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: Revolution_VPS.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Revolution_VPS_Linux.x86_64 @@ -191555,7 +187688,7 @@ oslist: macos description: Launch executable: Revolution_VPS_Mac.app -'387100': +"387100": installDir: Walkerman launch: - config: @@ -191571,7 +187704,7 @@ oslist: linux executable: Walkerman.sh type: default -'387110': +"387110": installDir: Shmup Love Boom launch: - config: @@ -191587,15 +187720,15 @@ description: Launch executable: Shmup Love Boom.x86 workingdir: SLBLinux -'387130': - installDir: 'Zombie Hunter, Inc' +"387130": + installDir: "Zombie Hunter, Inc" launch: - config: oslist: windows description: Launch executable: Launcher.exe type: none -'38720': +"38720": installDir: RUSH launch: - config: @@ -191606,8 +187739,8 @@ executable: RUSH.app - config: oslist: linux - executable: ./RUSH.bin.x86 -'387240': + executable: "./RUSH.bin.x86" +"387240": installDir: STEELRAIN launch: - config: @@ -191620,21 +187753,21 @@ description: Linux executable: run.sh type: default -'387270': +"387270": installDir: Mystical launch: - config: oslist: windows description: Launch executable: Mystical.exe -'387280': +"387280": installDir: Inferno 2 launch: - config: oslist: windows description: Launch executable: inferno2_steam.exe -'387290': +"387290": installDir: Ori DE launch: - config: @@ -191642,19 +187775,19 @@ description: Launch executable: OriDE.exe type: none -'387340': +"387340": installDir: Neptunia U launch: - config: oslist: windows executable: Neptunia.exe type: default -'387370': +"387370": installDir: Sol 0 Mars Colonization launch: - config: oslist: windows - description: 'Sol 0: Mars Colonization' + description: "Sol 0: Mars Colonization" executable: Sol 0.exe type: default - config: @@ -191665,33 +187798,33 @@ - config: oslist: macos description: Sol 0 - executable: Sol 0.app\\Contents\\MacOS\\Sol 0 + executable: "Sol 0.app\\\\Contents\\\\MacOS\\\\Sol 0" type: option1 - config: oslist: macos - executable: Map Editor.app\\Contents\\MacOS\\Map Editor + executable: "Map Editor.app\\\\Contents\\\\MacOS\\\\Map Editor" type: editor - config: - osarch: '64' + osarch: "64" oslist: linux executable: Sol 0.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Sol 0.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Map Editor.x86_64 type: editor - config: - osarch: '32' + osarch: "32" oslist: linux executable: Map Editor.x86 type: editor -'38740': +"38740": installDir: EDGE launch: - config: @@ -191702,35 +187835,35 @@ executable: EDGE.app - config: oslist: linux - executable: ./EDGE.bin.x86 -'387400': + executable: "./EDGE.bin.x86" +"387400": installDir: CREEPS launch: - config: oslist: windows description: Launch executable: CREEPS.exe -'387430': +"387430": installDir: The Viceroy launch: - description: Launch executable: The Viceroy.exe -'387450': +"387450": installDir: Shadow of Kingdoms launch: - config: oslist: windows description: Launch executable: ShadowOfKingdoms.exe -'387820': {} -'387840': +"387820": {} +"387840": installDir: Alpha Runner launch: - config: oslist: windows description: Launch executable: runner.exe -'387850': +"387850": installDir: Airport Madness 4 launch: - config: @@ -191741,7 +187874,7 @@ oslist: windows description: Launch executable: AM4.exe -'387860': +"387860": installDir: the static speaks my name launch: - config: @@ -191756,7 +187889,7 @@ oslist: linux description: Launch executable: thestatic_linux.x86 -'387870': +"387870": installDir: Mold on Pizza Deluxe launch: - config: @@ -191771,33 +187904,33 @@ oslist: linux executable: runner type: none -'387880': +"387880": installDir: Ninjahtic Mind Tricks launch: - config: oslist: windows description: Launch executable: Ninjahtic Mind Tricks.exe -'387890': +"387890": installDir: Radial Impact launch: - config: oslist: windows description: Launch Test executable: RadialImpact.exe -'387930': +"387930": installDir: The Tape launch: - config: oslist: windows executable: The Tape.exe type: default -'387960': +"387960": installDir: Paintball eXtreme launch: - description: Launch executable: launcher.exe -'387970': +"387970": installDir: Clown House launch: - config: @@ -191812,17 +187945,17 @@ oslist: macos description: Launch executable: ClownHouse.app -'387990': +"387990": installDir: Scrap Mechanic launch: - config: - osarch: '32' + osarch: "32" oslist: windows - executable: ./Release/ScrapMechanic.exe + executable: "./Release/ScrapMechanic.exe" type: default - workingdir: ./Release -'388000': - installDir: Wellington's Victory + workingdir: "./Release" +"388000": + installDir: "Wellington's Victory" launch: - config: oslist: windows @@ -191832,7 +187965,7 @@ oslist: macos executable: wellingtonsvictory.app type: none -'388010': +"388010": installDir: Tick - The Time Based Puzzle Game launch: - config: @@ -191840,7 +187973,7 @@ description: Test Launch executable: Tick_V2.exe type: none -'388050': +"388050": installDir: Snik launch: - config: @@ -191852,16 +187985,16 @@ executable: snik.app type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: snik.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: snik.x86_64 type: none -'388060': +"388060": installDir: The Escapists The Walking Dead launch: - config: @@ -191875,18 +188008,18 @@ executable: The Escapists - The Walking Dead.app type: none - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch 32Bit executable: The Escapists - The Walking Dead.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch 64Bit executable: The Escapists - The Walking Dead.x86_64 type: none -'388090': +"388090": installDir: FiveNightsatFreddys4 launch: - config: @@ -191899,15 +188032,15 @@ description: Launch Halloween Edition executable: HalloweenEdition.exe type: none -'388120': {} -'388140': +"388120": {} +"388140": installDir: Strategic Command Classic WWI launch: - config: oslist: windows executable: autorun.exe type: default -'388160': +"388160": installDir: Project_Druid launch: - config: @@ -191915,7 +188048,7 @@ description: Launch executable: Project_Druid_retail_Update.exe type: none -'388210': +"388210": installDir: Day of the Tentacle Remastered launch: - config: @@ -191930,32 +188063,32 @@ oslist: linux executable: Dott type: default -'388260': +"388260": installDir: Super Slam Dunk Touchdown launch: - config: oslist: windows description: Launch executable: SSDT.exe -'388270': +"388270": installDir: Baseball Mogul 2015 launch: - config: oslist: windows description: Version 17.13 executable: BB2K15.exe -'38830': +"38830": installDir: CrimeCraft launch: - executable: SteamLauncher.exe -'388300': +"388300": installDir: Just Alone launch: - config: oslist: windows description: Launch executable: Launcher.exe -'388320': +"388320": installDir: 1979 Revolution launch: - config: @@ -191966,19 +188099,19 @@ oslist: macos executable: 1979Revolution.app type: none -'388340': +"388340": installDir: Super Hipster Lumberjack launch: - description: Launch executable: SuperHipsterLumberjackV2.exe -'388360': +"388360": installDir: Shoppy Mart Steam Edition launch: - config: oslist: windows description: Launch executable: ShoppyMartSteamEdition.exe -'388370': +"388370": installDir: Nova Blitz launch: - config: @@ -191989,23 +188122,23 @@ - config: oslist: macos description: Nova Blitz Live Build for Mac OS X - executable: NovaBlitz.app\\Contents\\MacOS\\NovaBlitz + executable: "NovaBlitz.app\\\\Contents\\\\MacOS\\\\NovaBlitz" type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: NovaBlitz.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: NovaBlitz.x86 type: default -'388390': +"388390": installDir: Glow Ball - The billiard puzzle game launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: GlowBall.exe @@ -192013,7 +188146,7 @@ oslist: linux description: Launch executable: GlowBall.x86_64 -'388410': +"388410": installDir: Darksiders II Deathinitive Edition launch: - config: @@ -192027,21 +188160,21 @@ description: Reset options executable: Darksiders2.exe type: none - - arguments: '-dx11' + - arguments: "-dx11" config: betakey: testgate oslist: windows description: Launch Darksiders 2 Deathinitive Edition DirectX 11 executable: Darksiders2.exe type: none - - arguments: '-gl' + - arguments: "-gl" config: betakey: testgate oslist: windows description: Launch Darksiders 2 Deathinitive Edition OpenGL executable: Darksiders2.exe type: none -'388420': +"388420": installDir: In Between launch: - config: @@ -192056,14 +188189,14 @@ oslist: linux description: Launch executable: In Between.x86 -'388430': +"388430": installDir: TankZoneBattle launch: - config: oslist: windows description: Launch executable: TankZoneBattle.exe -'388440': +"388440": installDir: Big Journey to Home launch: - config: @@ -192083,7 +188216,7 @@ type: default - config: oslist: windows - ownsdlc: '439710' + ownsdlc: "439710" description: Collection of Builds executable: old_builds/main.exe type: option1 @@ -192094,7 +188227,7 @@ description: Legacy Version executable: runner type: option1 -'388450': +"388450": installDir: Spooky Bonus launch: - config: @@ -192107,17 +188240,17 @@ description: Launch executable: SpookyBonus.app type: none -'388460': {} -'388490': +"388460": {} +"388490": installDir: One Way To Die launch: - - arguments: 'res://src/splash.tscn' + - arguments: "res://src/splash.tscn" config: oslist: windows description: Launch executable: die.exe type: none - - arguments: 'res://src/splash.tscn' + - arguments: "res://src/splash.tscn" config: oslist: linux description: Launch @@ -192127,7 +188260,7 @@ oslist: macos executable: One Way To Die.app type: default -'388500': +"388500": installDir: Super Space Meltdown launch: - config: @@ -192135,7 +188268,7 @@ description: Launch executable: Super Space Meltdown.exe type: none -'388540': +"388540": installDir: DrBulbaceous launch: - config: @@ -192147,16 +188280,16 @@ description: Launch executable: gamecake.osx - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: gamecake.x32 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: gamecake.x64 -'388550': +"388550": installDir: Galactic Missile Defense launch: - config: @@ -192174,7 +188307,7 @@ description: Launch (Linux) executable: GMD_Steam/runner type: default -'388620': +"388620": installDir: DungeonUp launch: - config: @@ -192185,7 +188318,7 @@ oslist: macos executable: DungeonUp.app type: none -'388660': +"388660": installDir: ProjectTarvotan launch: - config: @@ -192197,8 +188330,8 @@ oslist: macos executable: Tarvotan.app type: none -'388680': - installDir: Unfinished - An Artist's Lament +"388680": + installDir: "Unfinished - An Artist's Lament" launch: - config: oslist: windows @@ -192215,14 +188348,14 @@ description: Launch executable: unfinished_v1_04_MAC.app type: none -'388720': +"388720": installDir: Link_TheUnleashedNexus launch: - config: oslist: windows description: Launch executable: Project_Link.exe -'388730': +"388730": installDir: BrighterDay launch: - config: @@ -192233,38 +188366,38 @@ oslist: macos description: Launch executable: BrighterDay.app -'388750': +"388750": installDir: BlazBlue Chronophantasma Extend launch: - config: oslist: windows executable: BBCPEX.exe type: none -'388800': +"388800": installDir: Azure Striker Gunvolt launch: - config: oslist: windows description: Launch - executable: exe\\gv_win.exe - workingdir: exe\\ -'388830': + executable: "exe\\\\gv_win.exe" + workingdir: "exe\\\\" +"388830": installDir: TribeQuest Red Killer launch: - config: oslist: windows executable: TQRK.exe type: default -'388840': +"388840": installDir: CATS launch: - config: oslist: windows executable: cats.exe type: none -'388860': {} -'388870': {} -'388880': +"388860": {} +"388870": {} +"388880": installDir: Oxenfree launch: - config: @@ -192278,26 +188411,24 @@ executable: Oxenfree.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch - Linux 64 executable: Oxenfree.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch - Linux 32 executable: Oxenfree.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch - Linux 64 (new) - description_loc: - english: Launch - Linux 64 (new) executable: OXENFREE type: default -'388900': +"388900": installDir: Fracture the Flag launch: - config: @@ -192310,14 +188441,14 @@ description: Launch executable: FractureTheFlag.app type: none -'388910': +"388910": installDir: Sentinels launch: - config: oslist: windows description: Launch executable: Sentinels.exe -'388960': +"388960": installDir: Torn Tales launch: - config: @@ -192328,19 +188459,19 @@ oslist: macos executable: TornTales.app type: default - - arguments: '-force-opengl' + - arguments: "-force-opengl" config: oslist: linux executable: TornTales.x86 type: default -'388970': +"388970": installDir: iZBOT launch: - config: oslist: windows description: Launch executable: iZBOT.exe -'389010': +"389010": installDir: Unnamed Fiasco launch: - config: @@ -192355,22 +188486,22 @@ oslist: linux executable: unnamed fiasco.x86 type: default -'389040': +"389040": installDir: Project Genom launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ProjectGenomClient.exe type: none -'389050': +"389050": installDir: Pocket Rumble launch: - config: oslist: windows executable: Pocket Rumble.exe type: default -'389120': +"389120": installDir: 10 Minute Barbarian launch: - config: @@ -192381,7 +188512,7 @@ oslist: macos executable: 10 Minute Barbarian.app/Contents/MacOS/10 Minute Barbarian type: default -'389140': +"389140": installDir: Horizon Chase launch: - config: @@ -192393,17 +188524,17 @@ executable: HorizonChase.app type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: HorizonChase.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: Horizon Chase (x64) executable: HorizonChase.x86_64 type: default -'389160': +"389160": installDir: Shadow Ninja Apocalypse launch: - config: @@ -192412,9 +188543,9 @@ type: default - config: oslist: macos - executable: Shadow Ninja Apocalypse.app\\Contents\\MacOS\\PTPlayer + executable: "Shadow Ninja Apocalypse.app\\\\Contents\\\\MacOS\\\\PTPlayer" type: default -'389170': +"389170": installDir: A Lenda do Herói - O Jogo launch: - config: @@ -192431,7 +188562,7 @@ type: default nameLocalized: brazilian: A Lenda do Herói - Edição Definitiva -'389190': +"389190": installDir: Goblins & Grottos launch: - config: @@ -192442,17 +188573,17 @@ oslist: macos executable: GoblinsAndGrottos.app type: default -'389200': +"389200": installDir: NANOS launch: - description: Launch executable: Nanos.exe -'389220': +"389220": installDir: MaximumOverride launch: - description: Launch executable: maximum.exe -'389230': +"389230": installDir: Fish or Die launch: - config: @@ -192464,7 +188595,7 @@ oslist: macos executable: fishordie-v5.29.4.app/Contents/MacOS/fishordie-v5.29.4 type: default -'389250': +"389250": installDir: PlanetAlcatraz2 launch: - description: Launch @@ -192473,29 +188604,29 @@ oslist: windows description: Configure executable: GameSetup.exe -'389260': +"389260": installDir: Lucid Trips launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: LucidTrips.exe type: vr - config: betakey: beta - osarch: '64' + osarch: "64" oslist: windows description: Early Access for friends & press executable: LucidTrips.exe type: vr -'389270': +"389270": installDir: Through Abandoned - The Underground City launch: - config: oslist: windows executable: 1 Through Abandoned - The Underground City.exe type: none -'389280': +"389280": installDir: FSW launch: - config: @@ -192519,7 +188650,7 @@ - config: betakey: test oslist: windows - ownsdlc: '389290' + ownsdlc: "389290" description: release build executable: fswr.exe type: option1 @@ -192549,7 +188680,7 @@ type: default - config: betakey: preview - osarch: '64' + osarch: "64" oslist: windows executable: fsw.exe type: default @@ -192559,27 +188690,27 @@ type: default - config: betakey: previewms - osarch: '64' + osarch: "64" oslist: windows executable: dfs.exe type: default - config: betakey: compacttest - osarch: '64' + osarch: "64" oslist: windows executable: fswr.exe type: default - config: betakey: stable - osarch: '64' + osarch: "64" oslist: windows - ownsdlc: '389290' + ownsdlc: "389290" description: release build executable: fswr.exe type: option1 - config: betakey: graphics - osarch: '64' + osarch: "64" oslist: windows executable: fswr.exe type: default @@ -192589,7 +188720,7 @@ description: (Hybrid) executable: FSW.exe type: default -'389310': +"389310": installDir: Tic-Toc-Tower launch: - config: @@ -192601,36 +188732,36 @@ description: Launch executable: Tic-Toc-Tower.app - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Tic-Toc-Tower.x86_64 - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: Tic-Toc-Tower.x86 -'389330': +"389330": installDir: Vegas Party launch: - config: oslist: windows executable: VegasParty.exe type: none -'389400': +"389400": installDir: The chronicles of Emerland Solitaire launch: - config: oslist: windows description: Launch executable: solitaire.exe -'389430': +"389430": installDir: Knight Online launch: - - arguments: '-login %u %p -applaunch %id %c' + - arguments: "-login %u %p -applaunch %id %c" executable: launcher.exe type: none -'389460': +"389460": installDir: Robot vs Birds Zombies launch: - config: @@ -192645,16 +188776,16 @@ oslist: linux description: Launch executable: rbz.x86_64 -'389470': +"389470": installDir: Shadow of the Comet launch: - config: oslist: windows description: Launch - executable: Dosbox\\launch.bat + executable: "Dosbox\\\\launch.bat" type: none workingdir: Dosbox -'389510': +"389510": installDir: Wild Animal Racing launch: - config: @@ -192669,15 +188800,15 @@ oslist: linux executable: WildAnimalRacing.x86 type: none -'389530': +"389530": installDir: garlock_online launch: - config: oslist: windows executable: Garlock-Online.exe type: default -'389540': {} -'389570': +"389540": {} +"389570": installDir: Mitos.is The Game launch: - config: @@ -192688,74 +188819,74 @@ oslist: macos description: Launch executable: Mitosis.app/Contents/MacOS/Mitosis -'389650': +"389650": installDir: Stardust Galaxy Warriors launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Stardust Galaxy Warriors Win64.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: Stardust Galaxy Warriors Win32.exe type: default - config: - osarch: '64' + osarch: "64" oslist: macos executable: Stardust Galaxy Warriors Mac64.app type: default - config: - osarch: '32' + osarch: "32" oslist: macos executable: Stardust Galaxy Warriors Mac32.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Stardust Galaxy Warriors Lin64.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Stardust Galaxy Warriors Lin32.x86 type: default -'389670': +"389670": installDir: Formula Fusion launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch Pacer executable: Pacer.exe type: none -'389680': +"389680": installDir: Luxury Hotel Emporium launch: - description: Launch executable: HotelImperium.exe -'389690': +"389690": installDir: Nightclub Emporium launch: - description: Launch executable: NightClubImperium.exe -'389700': +"389700": installDir: My Bones launch: - config: oslist: windows description: Launch executable: My Bones.exe -'389730': +"389730": installDir: TEKKEN 7 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TEKKEN 7.exe type: none -'389740': +"389740": installDir: DGeneration HD launch: - config: @@ -192766,47 +188897,47 @@ oslist: macos executable: DGeneration HD.app type: none -'389800': +"389800": installDir: AlterVerse launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: AlterVerse.exe type: default -'389810': +"389810": installDir: Rubber and Lead launch: - config: oslist: windows description: Launch executable: rubberandlead.exe -'389840': +"389840": installDir: Deserter Simulator launch: - config: oslist: windows description: Launch - executable: exe\\Deserter Simulator.exe + executable: "exe\\\\Deserter Simulator.exe" - config: oslist: macos description: Launch - executable: app\\Deserter Simulator.app -'389850': - installDir: 'Warhammer 40,000 Herald of Oblivion' + executable: "app\\\\Deserter Simulator.app" +"389850": + installDir: "Warhammer 40,000 Herald of Oblivion" launch: - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Games Workshop - Herald of Oblivion.x86_64 - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: Games Workshop - Herald of Oblivion.x86 - config: - osarch: '64' + osarch: "64" oslist: macos description: Launch executable: Games Workshop - Herald of Oblivion.app @@ -192814,39 +188945,39 @@ oslist: windows description: Launch executable: Games Workshop - Herald of Oblivion.exe -'389860': {} -'389870': +"389860": {} +"389870": installDir: Mugen Souls launch: - description: Launch executable: MugenSouls.exe -'389900': +"389900": installDir: HogsofWar launch: - config: oslist: windows description: Launch executable: HOWMenu.exe -'389940': +"389940": installDir: MoonStrike launch: - - arguments: '-steam' + - arguments: "-steam" config: - osarch: '64' + osarch: "64" oslist: windows executable: MoonStrike.exe type: vr -'3900': - installDir: Sid Meier's Civilization IV +"3900": + installDir: "Sid Meier's Civilization IV" launch: - config: oslist: windows executable: Civilization4.exe -'39000': +"39000": installDir: Moon Base Alpha launch: - - executable: Binaries\\Win32\\MoonBaseAlphaGame.exe -'390030': + - executable: "Binaries\\\\Win32\\\\MoonBaseAlphaGame.exe" +"390030": installDir: Desync launch: - config: @@ -192855,10 +188986,10 @@ executable: DESYNC.exe - config: betakey: dev_test - description: 'DESYNC[developer_test]' + description: "DESYNC[developer_test]" executable: DESYNC_DevTest.exe type: none -'390040': +"390040": installDir: Small Radios Big Televisions launch: - config: @@ -192866,7 +188997,7 @@ description: Launch executable: SRBT.exe type: default -'390090': +"390090": installDir: ShotOnline launch: - config: @@ -192874,27 +189005,27 @@ description: Launch executable: ShotOnline.exe type: none -'390100': +"390100": installDir: 9Dragons launch: - config: oslist: windows executable: RFstl.exe type: default -'390200': - installDir: Queen's Quest Tower of Darkness +"390200": + installDir: "Queen's Quest Tower of Darkness" launch: - config: oslist: windows description: Launch executable: QueensQuest_TowerOfDarkness.exe - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: QueensQuest_TowerOfDarkness_i386 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: QueensQuest_TowerOfDarkness_amd64 @@ -192902,7 +189033,7 @@ oslist: macos description: Launch executable: mac_steam.app/Contents/MacOS/mac_steam -'390210': +"390210": installDir: FreezeME launch: - config: @@ -192911,20 +189042,20 @@ type: default - config: oslist: macos - executable: FreezeME_TEST_MACOS.app\\Contents\\MacOS\\FreezeME + executable: "FreezeME_TEST_MACOS.app\\\\Contents\\\\MacOS\\\\FreezeME" type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: FreezeME_Linux.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: FreezeME_Linux.x86_64 type: default -'390220': - installDir: SteamApps\\common\\Toilet Tycoon\\ +"390220": + installDir: "SteamApps\\\\common\\\\Toilet Tycoon\\\\" launch: - config: oslist: windows @@ -192932,7 +189063,7 @@ type: default nameLocalized: german: Klomanager Deluxe -'390290': +"390290": installDir: Bulb Boy launch: - config: @@ -192944,17 +189075,17 @@ executable: BulbBoy.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: BulbBoy.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: BulbBoy.x86_64 type: default -'390310': - installDir: Little King's Story +"390310": + installDir: "Little King's Story" launch: - config: oslist: windows @@ -192962,11 +189093,11 @@ type: default nameLocalized: japanese: 王様物語 -'390330': +"390330": installDir: Mekazoo launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Mekazoo for Windows (x86) executable: Mekazoo.exe @@ -192977,24 +189108,24 @@ executable: Mekazoo.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux description: Mekazoo for Linux (x86) executable: Mekazoo.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: Mekazoo for Linux (x64) executable: Mekazoo.x86_64 type: default - config: - osarch: '64' + osarch: "64" oslist: windows description: Mekazoo for Windows (x64) executable: Mekazoo.exe type: default -'390340': +"390340": installDir: Umbrella Corps launch: - config: @@ -193004,20 +189135,20 @@ nameLocalized: japanese: BIOHAZARD UMBRELLA CORPS koreana: Resident Evil Umbrella Corps -'390460': +"390460": installDir: Tyler launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: Tyler.exe type: none -'390510': +"390510": installDir: Sim Junta launch: - description: Launch executable: SimJunta.exe -'390520': +"390520": installDir: PewDiePie Legend of the Brofist launch: - config: @@ -193028,27 +189159,27 @@ oslist: macos executable: PewDiePieLegendOfTheBrofist.app type: none -'390540': +"390540": installDir: High Fidelity launch: - - arguments: '--display=\"OpenVR (Vive)\",\"Oculus Rift\" --no-updater --suppress-settings-reset' + - arguments: "--display=\\\"OpenVR (Vive)\\\",\\\"Oculus Rift\\\" --no-updater --suppress-settings-reset" config: - osarch: '64' + osarch: "64" oslist: windows executable: interface.exe type: vr - - arguments: '--display=\"Desktop\" --no-updater --suppress-settings-reset' + - arguments: "--display=\\\"Desktop\\\" --no-updater --suppress-settings-reset" config: betakey: dev-build - osarch: '64' + osarch: "64" oslist: windows executable: interface.exe type: default -'390560': +"390560": installDir: Fantasy Strike launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: FS_Win64.exe type: none @@ -193057,11 +189188,11 @@ executable: FS_Mac.app type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: FS_Linux.bin type: none -'390570': +"390570": installDir: Three Digits launch: - config: @@ -193073,17 +189204,17 @@ description: Launch executable: ThreeDigits.app - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: ThreeDigits.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: ThreeDigits.x86_64 type: none -'390610': +"390610": installDir: Circa Infinity launch: - config: @@ -193099,7 +189230,7 @@ description: Linux Launch executable: run.sh type: none -'390620': +"390620": installDir: AlienMagnet launch: - config: @@ -193114,48 +189245,34 @@ oslist: linux executable: aawam.x86 type: default -'390660': +"390660": installDir: Call of Tomsk-7 launch: - config: oslist: windows description: Launch executable: Call of Tomsk-7.exe -'390670': +"390670": installDir: Steel Ocean launch: - - arguments: >- - -log -AgentAddr=10.12.28.216:1002 -Addr=10.12.28.216:4001 -MaxClientNumber=10 -TServerName=\"Cyou Server\" - -server=errorreport.steam.zj.playcool.com/dumplog/zj + - arguments: "-log -AgentAddr=10.12.28.216:1002 -Addr=10.12.28.216:4001 -MaxClientNumber=10 -TServerName=\\\"Cyou Server\\\" -server=errorreport.steam.zj.playcool.com/dumplog/zj" config: oslist: windows description: Launch - description_loc: - english: Launch - executable: Binaries\\win32\\SeaGame.exe - - arguments: >- - -seekfreeloading -NOSCREENMESSAGES -AgentAddr=43.134.214.96:1002 -Addr=43.134.214.96:4001 -EnableReadEncrypted - -EnableWriteEncrypted -MaxClientNumber=10 -TServerName=\"beta Server\" - -server=errorreport.steam.zj.playcool.com/dumplog/zj + executable: "Binaries\\\\win32\\\\SeaGame.exe" + - arguments: "-seekfreeloading -NOSCREENMESSAGES -AgentAddr=43.134.214.96:1002 -Addr=43.134.214.96:4001 -EnableReadEncrypted -EnableWriteEncrypted -MaxClientNumber=10 -TServerName=\\\"beta Server\\\" -server=errorreport.steam.zj.playcool.com/dumplog/zj" config: betakey: beta oslist: windows description: Beta - description_loc: - english: Beta - executable: Binaries\\win32\\SeaGame.exe - - arguments: >- - -seekfreeloading -NOSCREENMESSAGES -AgentAddr=43.154.57.213:1002 -Addr=43.154.50.172:4001 -EnableReadEncrypted - -EnableWriteEncrypted -MaxClientNumber=10 -TServerName=\"new Server\" - -server=errorreport.steam.zj.playcool.com/dumplog/zj + executable: "Binaries\\\\win32\\\\SeaGame.exe" + - arguments: "-seekfreeloading -NOSCREENMESSAGES -AgentAddr=43.154.57.213:1002 -Addr=43.154.50.172:4001 -EnableReadEncrypted -EnableWriteEncrypted -MaxClientNumber=10 -TServerName=\\\"new Server\\\" -server=errorreport.steam.zj.playcool.com/dumplog/zj" config: betakey: newst oslist: windows description: newst - description_loc: - english: newst - executable: Binaries\\win32\\SeaGame.exe -'390680': + executable: "Binaries\\\\win32\\\\SeaGame.exe" +"390680": installDir: Spacejacked launch: - config: @@ -193164,35 +189281,35 @@ executable: SPACEJACKED.exe type: default - config: - osarch: '64' + osarch: "64" oslist: macos description: Launch executable: SPACEJACKED.app type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch - executable: ./SPACEJACKED + executable: "./SPACEJACKED" type: none -'390710': +"390710": installDir: Acceleration of SUGURI 2 launch: - executable: aos2.exe type: none -'390720': +"390720": installDir: Anarcute launch: - config: oslist: windows description: Launch executable: anarcute.exe -'390730': +"390730": installDir: Sora launch: - executable: sora.exe type: none -'390870': +"390870": installDir: Circuit Breakers launch: - config: @@ -193207,21 +189324,21 @@ oslist: macos executable: Circuit Breakers.app type: none -'390880': +"390880": installDir: Redemption Eternal Quest launch: - config: oslist: windows description: Launch executable: redemption.exe -'390890': +"390890": installDir: Angry Arrows launch: - config: oslist: windows description: Launch executable: angryarrows.exe -'390910': +"390910": installDir: collisions launch: - arguments: collisions.love --fused @@ -193237,7 +189354,7 @@ type: default - arguments: collisions.love --fused config: - osarch: '64' + osarch: "64" oslist: linux executable: love type: default @@ -193252,29 +189369,29 @@ russian: Столкновения schinese: 碰撞 演示 swedish: Kollisioner -'390920': +"390920": installDir: Army of Pixels launch: - - arguments: '-force-d3d9' + - arguments: "-force-d3d9" config: oslist: windows executable: ArmyOfPixels.exe type: default -'390930': +"390930": installDir: AIPD launch: - config: oslist: windows executable: FatBull.exe type: default -'390940': - installDir: The Musketeers Victoria's Quest +"390940": + installDir: "The Musketeers Victoria's Quest" launch: - config: oslist: windows description: Launch - executable: The Musketeers. Victoria's Quest.exe -'390960': + executable: "The Musketeers. Victoria's Quest.exe" +"390960": installDir: The Last Sunshine launch: - config: @@ -193282,25 +189399,25 @@ description: Launch executable: The Last Sunshine.exe type: none -'390970': {} -'3910': - installDir: Sid Meier's Civilization III Complete +"390970": {} +"3910": + installDir: "Sid Meier's Civilization III Complete" launch: - - executable: Conquests\\Civ3Conquests.exe + - executable: "Conquests\\\\Civ3Conquests.exe" workingdir: Conquests -'391000': +"391000": installDir: Farm Frenzy Collection launch: - config: oslist: windows description: Launch executable: FarmFrenzyMegaPack.exe -'391030': +"391030": installDir: Hard to Be a God launch: - description: Launch executable: AWE.exe -'391040': +"391040": installDir: F1 2016 launch: - config: @@ -193311,33 +189428,33 @@ oslist: macos executable: F1 2016.app type: none -'391070': +"391070": installDir: Stellar 2D launch: - config: oslist: windows description: Launch executable: game.exe -'39110': +"39110": installDir: The Cherry Blossom Murders launch: - executable: CherryBlossomMurders.exe -'391100': +"391100": installDir: Frizzy launch: - config: oslist: windows - executable: windows\\Frizzy_Steam_v1.5\\Frizzy.exe + executable: "windows\\\\Frizzy_Steam_v1.5\\\\Frizzy.exe" type: default -'391120': +"391120": installDir: The Archetype launch: - config: oslist: windows executable: The Archetype.exe type: default -'391130': {} -'391140': +"391130": {} +"391140": installDir: Blast-off launch: - config: @@ -193345,7 +189462,7 @@ description: Launch executable: Blastoff2.exe type: default -'391160': +"391160": installDir: The Deletion launch: - config: @@ -193356,7 +189473,7 @@ oslist: macos executable: thedeletion.app type: none -'391170': +"391170": installDir: VoidInvaders launch: - config: @@ -193374,27 +189491,27 @@ description: install dependencies (Debian & derivatives) executable: installdeps-debian.sh type: option2 -'391180': +"391180": installDir: Ladra launch: - config: oslist: windows executable: Game.exe type: default -'391190': +"391190": installDir: Dolguth launch: - config: oslist: macos - executable: Dolguth.app\\Contents\\MacOS\\Dolguth + executable: "Dolguth.app\\\\Contents\\\\MacOS\\\\Dolguth" type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Dolguth.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Dolguth.x86_64 type: default @@ -193402,25 +189519,25 @@ oslist: windows executable: Dolguth.exe type: default -'39120': +"39120": installDir: RIFT launch: - - arguments: '-steam' + - arguments: "-steam" executable: riftpatchlive.exe type: none - - arguments: '-steam' + - arguments: "-steam" config: betakey: internal description: GlyphInternal executable: GlyphClientInternal.exe type: option1 - - arguments: '-steam -single -game 1' + - arguments: "-steam -single -game 1" config: betakey: staging description: Glyph executable: GlyphClient.exe type: option2 -'391210': +"391210": installDir: ArclightCascade launch: - config: @@ -193431,48 +189548,48 @@ oslist: macos description: Launch executable: ArclightCascade.app -'391220': +"391220": installDir: Rise of the Tomb Raider launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch TR2 GM executable: ROTTR.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows - ownsdlc: '437290' + ownsdlc: "437290" description: Launch TR2 Final executable: TR2_x64_final.exe type: none - - arguments: '-archive -norootchange -mainmenu -noassert -launcher' + - arguments: "-archive -norootchange -mainmenu -noassert -launcher" config: - osarch: '64' - ownsdlc: '437290' + osarch: "64" + ownsdlc: "437290" description: Launch TR2 Release executable: TR2_x64_release.exe type: none - config: - osarch: '64' + osarch: "64" oslist: windows - ownsdlc: '437290' + ownsdlc: "437290" description: Launch ROTTR Protected executable: ROTTR_prot.exe type: none - config: - osarch: '64' + osarch: "64" oslist: windows - ownsdlc: '437290' + ownsdlc: "437290" description: Launch ROTTR Original GM executable: ROTTR_orig.exe type: none - - arguments: '-nolauncher -vr' + - arguments: "-nolauncher -vr" config: - osarch: '64' + osarch: "64" oslist: windows - ownsdlc: '505540' + ownsdlc: "505540" executable: ROTTR.exe type: vr - config: @@ -193481,12 +189598,12 @@ executable: Rise of the Tomb Raider.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: RiseOfTheTombRaider.sh type: default -'391240': +"391240": installDir: Forgotten Lore launch: - config: @@ -193500,24 +189617,24 @@ executable: ForgottenLore.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: Default launch for Linux 64 bit builds executable: ForgottenLore.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: linux description: Default launch for Linux 32 bit builds executable: ForgottenLore.x86 type: default - config: - osarch: '32' + osarch: "32" oslist: windows description: 32 bit executable: ForgottenLore.exe type: default -'391250': +"391250": installDir: Alien Robot Monsters launch: - config: @@ -193532,28 +189649,28 @@ oslist: macos description: Launch executable: Alien Robot Monsters.app -'391260': +"391260": installDir: Labyronia launch: - config: oslist: windows description: Launch executable: Game.exe -'391270': +"391270": installDir: Fingerbones launch: - description: Launch executable: Fingerbones.exe -'391280': +"391280": installDir: Epic Manager launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Epic Manager 64bit - executable: \\64\\Epic Manager64.exe + executable: "\\\\64\\\\Epic Manager64.exe" type: option1 - workingdir: \\64 + workingdir: "\\\\64" - config: oslist: windows description: Epic Manager 32-bit @@ -193563,14 +189680,14 @@ oslist: macos executable: Epic Manager.app type: default -'391290': +"391290": installDir: DeathCrank launch: - description: Launch executable: DeathCrank.exe type: default -'391300': {} -'391310': +"391300": {} +"391310": installDir: ZVEZDOLIOTIK launch: - config: @@ -193579,18 +189696,18 @@ executable: AAIS.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows - description: 'Alien Attack: Zero' - executable: AAZ\\AAZ.exe + description: "Alien Attack: Zero" + executable: "AAZ\\\\AAZ.exe" type: option1 - config: - osarch: '64' + osarch: "64" oslist: windows - description: 'Alien Attack: Zero' - executable: AAZ\\AAZ.exe + description: "Alien Attack: Zero" + executable: "AAZ\\\\AAZ.exe" type: option2 -'391340': +"391340": installDir: FerrumSecrets launch: - config: @@ -193598,23 +189715,23 @@ description: Launch executable: FerrumSecrets.exe - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: FerrumLinux.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: FerrumLinux.x86_64 -'391380': +"391380": installDir: Tormented 12 launch: - config: oslist: windows executable: nw.exe type: default -'391390': +"391390": installDir: Mayhem Triple launch: - config: @@ -193632,48 +189749,48 @@ description: Launch Workshop Mods Client executable: Mayhem3Custom.exe type: none -'39140': +"39140": installDir: FINAL FANTASY VII launch: - config: oslist: windows description: FINAL FANTASY VII Launcher executable: FF7_Launcher.exe -'391400': +"391400": installDir: Game of Dragons launch: - config: oslist: windows executable: Game of Dragons.exe type: none -'391410': - installDir: 'Rock, the Tree Hugger' +"391410": + installDir: "Rock, the Tree Hugger" launch: - config: oslist: windows description: Launch executable: Rock_the_Tree_Hugger.exe -'391420': +"391420": installDir: Gun Rocket launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: GunRocket.exe type: none - config: - osarch: '32' + osarch: "32" oslist: windows executable: GunRocket.exe type: none -'391440': +"391440": installDir: XenoBloom launch: - config: oslist: windows description: Launch executable: XenoBloom.exe -'391460': +"391460": installDir: WARMODE launch: - config: @@ -193681,8 +189798,8 @@ description: Launch executable: warmode.exe type: none -'391480': {} -'391490': +"391480": {} +"391490": installDir: Braveland Pirate launch: - config: @@ -193693,28 +189810,28 @@ oslist: macos description: Launch executable: Braveland Pirate.app - - arguments: '-screen-fullscreen 0' + - arguments: "-screen-fullscreen 0" config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: Braveland Pirate.x86 type: none - - arguments: '-screen-fullscreen 0' + - arguments: "-screen-fullscreen 0" config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Braveland Pirate.x86_64 type: none -'39150': +"39150": installDir: FINAL FANTASY VIII launch: - config: oslist: windows description: FINAL FANTASY VIII Launcher executable: FF8_Launcher.exe -'391510': +"391510": installDir: RHEM IV The Golden Fragments launch: - config: @@ -193725,9 +189842,9 @@ - config: oslist: macos description: RHEM IV SE The Golden Fragments - executable: RHEM_IV_SE.app\\Contents\\MacOS\\RHEM_IV_SE + executable: "RHEM_IV_SE.app\\\\Contents\\\\MacOS\\\\RHEM_IV_SE" type: default -'391520': +"391520": installDir: Labyrinth Simulator launch: - config: @@ -193735,42 +189852,40 @@ description: Launch executable: labyrinth.exe type: default -'391530': +"391530": installDir: BlastOut launch: - - arguments: '-userType \"StandardUser\"' + - arguments: "-userType \\\"StandardUser\\\"" config: betakey: default - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: BlastOut.exe type: none - - arguments: '--host=\"dev-api.ruin-game.com\" --xmpp=\"dev-xmpp.ruin-game.com\" -userType \"Developer\"' + - arguments: "--host=\\\"dev-api.ruin-game.com\\\" --xmpp=\\\"dev-xmpp.ruin-game.com\\\" -userType \\\"Developer\\\"" config: betakey: devbuild oslist: windows description: Launch-dev executable: BlastOut.exe type: none - - arguments: ' -userType \"Developer\" -GAGame \"bbd518705abfbffce87a5b83929ea0fb\" -GASecretKey \"c9b73147b3b694433a4c3a6015b65a698572f490\"' + - arguments: " -userType \\\"Developer\\\" -GAGame \\\"bbd518705abfbffce87a5b83929ea0fb\\\" -GASecretKey \\\"c9b73147b3b694433a4c3a6015b65a698572f490\\\"" config: betakey: releasecandidate executable: BlastOut.exe type: none - - arguments: '--host=\"dev-api.ruin-game.com\" -userType \"Developer\"' + - arguments: "--host=\\\"dev-api.ruin-game.com\\\" -userType \\\"Developer\\\"" config: betakey: qualityassurance executable: BlastOut.exe type: none - - arguments: >- - --host=\"rc-api.ruin-game.com\" -userType \"Developer\" -GAGame \"bbd518705abfbffce87a5b83929ea0fb\" - -GASecretKey \"c9b73147b3b694433a4c3a6015b65a698572f490\" + - arguments: "--host=\\\"rc-api.ruin-game.com\\\" -userType \\\"Developer\\\" -GAGame \\\"bbd518705abfbffce87a5b83929ea0fb\\\" -GASecretKey \\\"c9b73147b3b694433a4c3a6015b65a698572f490\\\"" config: betakey: event executable: BlastOut.exe type: none -'391540': +"391540": installDir: Undertale launch: - config: @@ -193785,16 +189900,16 @@ oslist: linux executable: runner type: none -'391550': +"391550": installDir: BFB launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: Beyondfleshandblood.exe type: default -'391580': +"391580": installDir: Egyptian Senet launch: - config: @@ -193805,7 +189920,7 @@ oslist: macos description: Launch executable: EgyptianSenet.app -'391590': +"391590": installDir: Dream Chamber launch: - config: @@ -193816,12 +189931,12 @@ oslist: macos description: Launch executable: DreamChamber.app -'39160': +"39160": installDir: Dungeon Siege III launch: - - arguments: '-steam' + - arguments: "-steam" executable: Dungeon Siege III.exe -'391600': +"391600": installDir: King Lucas launch: - config: @@ -193833,46 +189948,46 @@ executable: KingLucas.app/Contents/MacOS/KingLucas type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: KingLucas.x86_64 type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: KingLucas.x86 type: none -'391630': +"391630": installDir: Necromonads launch: - executable: Necromonads.exe type: none -'391640': +"391640": installDir: Stage Presence launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Stage Presence.exe type: vr - config: - osarch: '64' + osarch: "64" oslist: windows executable: Stage Presence.exe type: default -'391650': +"391650": installDir: Escape From BioStation launch: - config: oslist: windows executable: EscapeFromBioStation.exe type: none -'391660': +"391660": installDir: Incitement 3 launch: - description: Launch executable: game.exe -'391720': +"391720": installDir: Layers of Fear launch: - config: @@ -193881,18 +189996,18 @@ executable: Layers Of Fear.exe type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: LOF type: none - config: - osarch: '64' + osarch: "64" oslist: macos description: Launch executable: LOF.app type: none -'391730': +"391730": installDir: Crashlands launch: - config: @@ -193903,21 +190018,21 @@ betakey: beta oslist: macos description: Beta Launcher - executable: Crashlands.app\\Contents\\MacOS\\Crashlands + executable: "Crashlands.app\\\\Contents\\\\MacOS\\\\Crashlands" type: none - config: oslist: macos - executable: Crashlands.app\\Contents\\MacOS\\Mac_Runner + executable: "Crashlands.app\\\\Contents\\\\MacOS\\\\Mac_Runner" type: default - config: oslist: linux description: Ubuntu_16.04_Launcher - executable: Crashlands_1604\\Crashlands + executable: "Crashlands_1604\\\\Crashlands" type: default - config: oslist: linux description: Ubuntu_18.04_Launcher - executable: Crashlands_1804\\Crashlands + executable: "Crashlands_1804\\\\Crashlands" type: none - config: betakey: beta @@ -193925,32 +190040,32 @@ description: Beta Launcher executable: Crashlands type: none -'391740': +"391740": installDir: Blaster Shooter GunGuy! launch: - config: oslist: windows description: Launch executable: BlasterShooterGunGuy.exe -'391780': +"391780": installDir: Uebergame launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Uebergame.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: Uebergame-32-bit.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Uebergame type: default -'391820': +"391820": installDir: Evolution launch: - config: @@ -193966,11 +190081,11 @@ oslist: macos executable: evolution.app type: default -'39190': +"39190": installDir: Dungeon Siege 1 launch: - executable: DungeonSiege.exe -'391910': +"391910": installDir: All Fall Down launch: - config: @@ -193990,36 +190105,36 @@ description: Oculus Rift executable: allfalldown.exe type: othervr -'391920': +"391920": installDir: Ether One HD launch: - config: oslist: windows executable: EtherOne.exe type: none -'391960': +"391960": installDir: Super Mega Bob launch: - config: oslist: windows executable: Super Mega Bob.exe type: none -'3920': - installDir: Sid Meier's Pirates! +"3920": + installDir: "Sid Meier's Pirates!" launch: - executable: Pirates!.exe -'39200': +"39200": installDir: Dungeon Siege 2 launch: - executable: DungeonSiege2.exe -'392000': +"392000": installDir: Tron Escape launch: - config: oslist: windows description: Test build executable: TronGame.exe -'392020': +"392020": installDir: RFLEX launch: - config: @@ -194027,12 +190142,12 @@ description: Launch executable: RFLEX.sh - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: RFLEX32.exe - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: RFLEX64.exe @@ -194040,32 +190155,32 @@ oslist: macos description: Launch executable: RFLEX.command -'392030': +"392030": installDir: Murasaki launch: - config: oslist: windows - executable: Murasaki\\mu.exe + executable: "Murasaki\\\\mu.exe" type: default - config: oslist: windows - executable: Murasaki\\config.exe + executable: "Murasaki\\\\config.exe" type: config - config: betakey: beta - osarch: '32' + osarch: "32" oslist: windows executable: Murasaki/mu.exe type: default -'392040': +"392040": installDir: War Blade launch: - config: oslist: windows executable: War Blade.exe type: default -'392050': {} -'392060': +"392050": {} +"392060": installDir: BattleSouls launch: - config: @@ -194078,7 +190193,7 @@ description: Launch executable: BattleSouls.app type: none -'392070': +"392070": installDir: Pumped BMX + launch: - config: @@ -194086,22 +190201,22 @@ description: Launch executable: Pumped_BMX_+.exe type: default -'392080': +"392080": installDir: Zero Falls launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: WTF.exe type: default -'39210': +"39210": installDir: FINAL FANTASY XIV Online launch: - - arguments: '-issteam' + - arguments: "-issteam" config: oslist: windows executable: boot/ffxivboot.exe -'392100': +"392100": installDir: Fatal Theory launch: - config: @@ -194118,11 +190233,11 @@ oslist: linux executable: Fatal Theory type: default -'392110': +"392110": installDir: Endless Space 2 launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: EndlessSpace2.exe @@ -194131,7 +190246,7 @@ oslist: macos executable: EndlessSpace2.app type: none -'392120': +"392120": installDir: City Z launch: - config: @@ -194143,12 +190258,12 @@ executable: CityZ.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: CityZ.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: CityZ.x86_64 type: default @@ -194160,8 +190275,8 @@ oslist: windows executable: CityZ_VR.exe type: othervr -'392150': - installDir: 'VRUnicorns #SkiJump' +"392150": + installDir: "VRUnicorns #SkiJump" launch: - config: oslist: windows @@ -194177,14 +190292,14 @@ type: default - config: betakey: ponybeta - osarch: '64' + osarch: "64" oslist: windows description: The BETA build executable: SkiJump3Client.exe type: default - executable: SkiJumpPlayTestingWin.exe - executable: SkiJumpPlayTestingMac.app -'392160': +"392160": installDir: X4 Foundations launch: - config: @@ -194195,14 +190310,14 @@ oslist: linux executable: testandlaunch type: default -'392190': - installDir: 'VRUnicorns #SelfieTennis' +"392190": + installDir: "VRUnicorns #SelfieTennis" launch: - config: oslist: windows executable: SelfieTennis.exe type: vr -'392260': +"392260": installDir: Rogue Wizards launch: - config: @@ -194213,14 +190328,14 @@ oslist: macos description: Launch executable: Rogue Wizards.app -'392280': +"392280": installDir: The Franz Kafka Videogame launch: - config: oslist: windows executable: kafka.exe type: default -'392290': +"392290": installDir: Macroboy Y launch: - config: @@ -194233,7 +190348,7 @@ type: default - executable: game.exe type: none -'392330': +"392330": installDir: Take Command - 2nd Manassas launch: - config: @@ -194241,7 +190356,7 @@ description: Launch executable: TC2M.exe type: default -'392370': +"392370": installDir: Wish -tale of the sixteenth night of lunar month- launch: - config: @@ -194256,11 +190371,11 @@ oslist: linux executable: Wish.x86 type: default -'392410': +"392410": installDir: ToyOdyssey launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: ToyOdyssey.exe type: default @@ -194268,28 +190383,28 @@ oslist: macos executable: ToyOdyssey.app type: default -'392450': +"392450": installDir: Silver Creek Falls Chapter 1 launch: - config: oslist: windows description: Launch executable: Silver Creek Falls.exe -'392470': - installDir: NOBUNAGA'S AMBITION Sphere of Influence +"392470": + installDir: "NOBUNAGA'S AMBITION Sphere of Influence" launch: - config: oslist: windows description: Launch executable: N14PKLauncher.exe -'392580': +"392580": installDir: WARSHIFT launch: - config: oslist: windows description: Launch executable: WARSHIFT.exe -'392600': +"392600": installDir: Volvox launch: - config: @@ -194299,19 +190414,19 @@ type: none - config: oslist: macos - executable: Volvox.app\\Contents\\MacOS\\Volvox + executable: "Volvox.app\\\\Contents\\\\MacOS\\\\Volvox" type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: Volvox.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Volvox.x86_64 type: default -'392610': +"392610": installDir: TriconeLab launch: - config: @@ -194323,7 +190438,7 @@ description: Launch executable: TriconeLab.app type: none -'392620': +"392620": installDir: Lucadian Chronicles launch: - config: @@ -194334,31 +190449,31 @@ oslist: macos executable: LucadianChronicles.app type: default -'392680': +"392680": installDir: Jeeboman launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: HTC Vive - executable: Vive\\Jeeboman.exe + executable: "Vive\\\\Jeeboman.exe" type: vr workingdir: Vive - config: - osarch: '64' + osarch: "64" oslist: windows description: Oculus Rift + Touch - executable: Oculus\\Jeeboman.exe + executable: "Oculus\\\\Jeeboman.exe" type: vr workingdir: Oculus -'392690': +"392690": installDir: Erwins Timewarp launch: - config: oslist: windows executable: ErwinsTimewarp.exe type: default -'392700': +"392700": installDir: GlueckAuf launch: - config: @@ -194366,7 +190481,7 @@ description: Launch executable: GlueckAuf.exe type: none -'392720': +"392720": installDir: Daily Espada launch: - config: @@ -194378,15 +190493,15 @@ description: Launch executable: out-mac.app type: none -'392730': {} -'392780': +"392730": {} +"392780": installDir: Mondrian - Abstraction in Beauty launch: - config: oslist: windows description: Launch executable: mondrian.exe -'392790': +"392790": installDir: Football Manager 2016 Test App launch: - config: @@ -194401,11 +190516,11 @@ oslist: linux description: Launch executable: fm -'392820': +"392820": installDir: Wild_Island_Quest launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: wiq-instead.exe @@ -194420,32 +190535,32 @@ description: Launch executable: WildIslandQuest.app/Contents/MacOS/sdl-instead type: default - - arguments: '-fullscreen -standalone -game wild_island_quest' + - arguments: "-fullscreen -standalone -game wild_island_quest" config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: wiq-instead.exe type: default -'392870': {} -'392890': +"392870": {} +"392890": installDir: Trucker 2 launch: - description: Launch executable: trucker2.exe -'392920': +"392920": installDir: Arvale launch: - config: oslist: windows description: Launch executable: game.exe -'392930': +"392930": installDir: A Sirius Game launch: - description: Launch executable: A Sirius Game.exe -'392940': +"392940": installDir: Epic Quest of the 4 Crystals launch: - config: @@ -194453,7 +190568,7 @@ description: Launch executable: game.exe type: none -'392950': +"392950": installDir: Lost Lands A Hidden Object Adventure launch: - config: @@ -194464,7 +190579,7 @@ oslist: macos executable: Lost Lands A Hidden Object Adventure.app type: default -'392970': +"392970": installDir: New York Mysteries High Voltage launch: - config: @@ -194475,15 +190590,15 @@ oslist: macos executable: New York Mysteries High Voltage CE.app type: none -'393080': +"393080": installDir: Call of Duty Modern Warfare Remastered launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: h1_sp64_ship.exe type: default -'393150': +"393150": installDir: The Dreamatorium of Dr. Magnus 2 launch: - config: @@ -194495,18 +190610,18 @@ description: Launch executable: mac_steam.app - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: Dreamatorium2_i386 type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Dreamatorium2_amd64 type: none -'393170': +"393170": installDir: Bit Shifter launch: - config: @@ -194518,7 +190633,7 @@ description: Launch executable: bitshifter.sh type: none -'393190': +"393190": installDir: TSIOQUE launch: - config: @@ -194530,19 +190645,19 @@ description: Launch executable: Tsioque.app type: none -'393200': +"393200": installDir: Bad Rats Show launch: - description: Launch executable: rats2.exe -'393220': +"393220": installDir: Super Man Or Monster launch: - config: oslist: windows description: Launch executable: SuperManOrMonster.exe -'393230': +"393230": installDir: The Youthdrainers content launch: - config: @@ -194550,15 +190665,15 @@ description: Launch executable: The_youthdrainers_1.0.exe type: none -'393240': - installDir: Sir! I'd Like To Report A Bug! +"393240": + installDir: "Sir! I'd Like To Report A Bug!" launch: - config: oslist: windows description: Launch the game executable: Sir.exe type: default -'393280': +"393280": installDir: Clash Cup Turbo launch: - config: @@ -194567,58 +190682,58 @@ type: default - config: oslist: macos - executable: CCT_Mac.app\\Contents\\MacOS\\CCT_Mac + executable: "CCT_Mac.app\\\\Contents\\\\MacOS\\\\CCT_Mac" type: default - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" config: oslist: windows executable: Clash Cup Turbo.exe type: config - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" config: oslist: macos - executable: CCT_Mac.app\\Contents\\MacOS\\CCT_Mac + executable: "CCT_Mac.app\\\\Contents\\\\MacOS\\\\CCT_Mac" type: config -'393290': +"393290": installDir: Motorhead launch: - executable: Motorhead.exe type: none -'393350': +"393350": installDir: ShusGarden launch: - config: oslist: windows description: Launch - executable: Shu's Garden.exe + executable: "Shu's Garden.exe" - config: oslist: macos description: Launch - executable: Shu's Garden.app -'393380': + executable: "Shu's Garden.app" +"393380": installDir: Squad launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: squad_launcher.exe type: default - - arguments: '-noeac' + - arguments: "-noeac" config: betakey: internal-testing - osarch: '64' + osarch: "64" oslist: windows description: without EAC executable: Squad.exe type: option1 -'393390': +"393390": installDir: CatSimulator launch: - config: oslist: windows executable: catsim.exe type: none -'393410': +"393410": installDir: World of Soccer online launch: - config: @@ -194626,17 +190741,17 @@ description: Launch executable: World of Soccer.exe type: none -'393420': +"393420": installDir: Hurtworld launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: experimental/hurtworld.exe type: default workingdir: experimental - config: - osarch: '64' + osarch: "64" oslist: linux executable: experimental/Hurtworld.x86_64 type: default @@ -194646,20 +190761,20 @@ executable: experimental/Hurtworld.app type: default workingdir: experimental - - arguments: '-force-gfx-direct' + - arguments: "-force-gfx-direct" config: - osarch: '64' + osarch: "64" oslist: windows description: Legacy With Single Threaded Renderer executable: Hurtworld.exe type: option2 - config: - osarch: '32' + osarch: "32" oslist: windows executable: Hurtworld.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows description: Legacy executable: Hurtworld.exe @@ -194674,7 +190789,7 @@ description: Legacy executable: Hurtworld.x86_64 type: option1 -'393430': +"393430": installDir: IceLakes launch: - config: @@ -194690,7 +190805,7 @@ oslist: linux executable: IceLakes.x86 type: none - - arguments: '-force-dx9' + - arguments: "-force-dx9" config: oslist: windows description: Ice Lakes with DirectX 9 @@ -194701,7 +190816,7 @@ oslist: windows executable: IceLakes.exe type: vr -'393460': +"393460": installDir: Crazy Pixel Streaker launch: - config: @@ -194718,7 +190833,7 @@ description: Launch Linux executable: run.sh type: none -'393520': +"393520": installDir: Iconoclasts launch: - config: @@ -194727,13 +190842,13 @@ type: none - config: oslist: macos - executable: Iconoclasts.app\\Contents\\MacOS\\Chowdren + executable: "Iconoclasts.app\\\\Contents\\\\MacOS\\\\Chowdren" type: default - config: oslist: linux executable: run.sh type: none -'393530': +"393530": installDir: Insanity Clicker launch: - config: @@ -194744,18 +190859,18 @@ oslist: macos executable: InsanityClicker.app type: default -'393540': +"393540": installDir: TNN Motorsports Hardcore TR launch: - config: oslist: windows description: Launch executable: TNN Motorsports Hardcore TR.exe -'393550': +"393550": installDir: The Journey Back launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: TheJourneyBack.exe @@ -194766,19 +190881,19 @@ executable: TheJourneyBack.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: TheJourneyBack.x86_64 type: default -'393600': +"393600": installDir: Robot Exploration Squad launch: - config: oslist: windows description: Launch executable: RobotExplorationSquad.exe -'393610': +"393610": installDir: ROOT launch: - config: @@ -194793,14 +190908,14 @@ oslist: linux executable: ROOT.x86 type: default -'393660': +"393660": installDir: Streamline launch: - config: oslist: windows description: Launch executable: Streamline.exe -'393740': +"393740": installDir: Synchrom launch: - config: @@ -194815,60 +190930,60 @@ oslist: macos executable: Synchrom.app type: none -'393750': +"393750": installDir: pollen launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: pollen64.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: pollen64.exe type: vr - config: - osarch: '64' + osarch: "64" oslist: windows executable: pollen64.exe type: othervr -'393770': +"393770": installDir: BenjiChallenges launch: - config: oslist: windows executable: BenjiChallenges.exe type: none -'393790': +"393790": installDir: Rogue Operatives launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: Rogue_Operatives.exe type: default -'393800': +"393800": installDir: GearStorm launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: GearStorm\\Binaries\\Win64\\GearStorm.exe + executable: "GearStorm\\\\Binaries\\\\Win64\\\\GearStorm.exe" type: default - config: oslist: macos executable: GearStorm.app type: default -'393820': +"393820": installDir: At the Mountains of Madness launch: - config: oslist: windows executable: mountainsofmadness2.exe type: default -'393860': +"393860": installDir: Smoots World Cup Tennis launch: - config: @@ -194879,11 +190994,9 @@ oslist: macos executable: SmootsTennisMac.app type: default -'39391': - unknown: true -'39392': - unknown: true -'393920': +"39391": {} +"39392": {} +"393920": installDir: Auto Dealership Tycoon launch: - config: @@ -194901,7 +191014,7 @@ description: Launch executable: Auto Dealership Tycoon.app type: none -'393930': +"393930": installDir: RoShamBo Arena launch: - config: @@ -194912,13 +191025,13 @@ oslist: windows description: Launch executable: roshambo_arena.exe -'393950': +"393950": installDir: Get Over Here launch: - description: Launch executable: GOH.exe type: none -'393980': +"393980": installDir: Pretty Girls Mahjong Solitaire launch: - config: @@ -194931,47 +191044,47 @@ description: Launch executable: PrettyGirlsMahjongSolitaire.app type: none -'394010': +"394010": installDir: The Contact launch: - config: oslist: windows executable: contact.exe type: default -'394030': +"394030": installDir: Trigonarium launch: - config: oslist: windows description: Launch executable: trigonarium.exe -'394120': +"394120": installDir: AtomUniverse launch: - config: oslist: windows description: Launch executable: AtomUniverse.exe -'394130': +"394130": installDir: Water Bears VR launch: - config: oslist: windows executable: WaterBearsVR.exe type: vr -'394140': +"394140": installDir: Sound Shift launch: - description: Launch executable: Sound Shift.exe -'394160': +"394160": installDir: PAC-MAN launch: - config: oslist: windows executable: PAC-MAN.exe type: default -'394220': +"394220": installDir: Last Horizon launch: - config: @@ -194982,21 +191095,21 @@ oslist: macos executable: Last Horizon.app type: default -'394230': +"394230": installDir: Battleborn launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Play Battleborn - executable: Binaries\\Win64\\Battleborn.exe + executable: "Binaries\\\\Win64\\\\Battleborn.exe" type: none -'394260': +"394260": installDir: Dance Magic launch: - description: Launch executable: game.exe -'394270': +"394270": installDir: Country Tales launch: - config: @@ -195006,9 +191119,9 @@ - config: oslist: macos description: Launch - executable: Country Tales.app\\Contents\\MacOS\\Country Tales - workingdir: Country Tales.app\\Contents\\MacOS -'394280': + executable: "Country Tales.app\\\\Contents\\\\MacOS\\\\Country Tales" + workingdir: "Country Tales.app\\\\Contents\\\\MacOS" +"394280": installDir: Dark Heritage Guardians of Hope launch: - config: @@ -195016,12 +191129,12 @@ description: Launch executable: DarkHeritage.exe - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: DarkHeritage_i386 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: DarkHeritage_amd64 @@ -195029,7 +191142,7 @@ oslist: macos description: Launch executable: mac_steam.app/Contents/MacOS/mac_steam -'394290': +"394290": installDir: Tennis in the Face launch: - config: @@ -195037,7 +191150,7 @@ description: Launch executable: TennisInTheFace.exe type: none -'394310': +"394310": installDir: Punch Club launch: - config: @@ -195053,23 +191166,23 @@ oslist: linux executable: Punch Club.x86 type: none -'394360': +"394360": installDir: Hearts of Iron IV launch: - - arguments: '-- ' + - arguments: "-- " config: - osarch: '64' + osarch: "64" oslist: windows executable: dowser.exe type: default - - arguments: '-- ' + - arguments: "-- " config: oslist: macos executable: dowser type: default - - arguments: '-- ' + - arguments: "-- " config: - osarch: '64' + osarch: "64" oslist: linux executable: dowser type: default @@ -195077,76 +191190,56 @@ betakey: 1.0.0 1.1.0 1.2.1 1.3.3 1.4.2 1.5.3 1.5.4 1.6.0 1.6.1 1.6.2 1.7.0 1.7.1 oslist: windows description: Launch game (1.7.1 and older) - description_loc: - english: Launch game (1.7.1 and older) executable: hoi4.exe - config: betakey: 1.0.0 1.1.0 1.2.1 1.3.3 1.4.2 1.5.3 1.5.4 1.6.0 1.6.1 1.6.2 1.7.0 1.7.1 oslist: macos description: Launch game (1.7.1 and older) - description_loc: - english: Launch game (1.7.1 and older) executable: hoi4.app - config: betakey: 1.0.0 1.1.0 1.2.1 1.3.3 1.4.2 1.5.3 1.5.4 1.6.0 1.6.1 1.6.2 1.7.0 1.7.1 oslist: linux description: Launch game (1.7.1 and older) - description_loc: - english: Launch game (1.7.1 and older) executable: hoi4 - config: betakey: public atlantis_rising open_beta live_lab_build preview ur_test nakama 1.8.2 1.9.x 1.10.5 1.10.8 oslist: windows description: Launch game (skip launcher) - description_loc: - english: Launch game (skip launcher) executable: hoi4.exe - config: betakey: public atlantis_rising open_beta live_lab_build preview ur_test nakama 1.8.2 1.9.x 1.10.5 1.10.8 oslist: macos description: Launch game (skip launcher) - description_loc: - english: Launch game (skip launcher) executable: hoi4.app - config: betakey: public atlantis_rising open_beta live_lab_build preview nakama ur_test oslist: linux description: Launch game (skip launcher) - description_loc: - english: Launch game (skip launcher) executable: run_hoi4 - config: betakey: 1.8.2 1.9.x 1.10.5 1.10.8 oslist: linux description: Launch game (skip launcher) - description_loc: - english: Launch game (skip launcher) executable: hoi4 - - arguments: '-nakama' + - arguments: "-nakama" config: betakey: nakama oslist: windows description: Launch game (Nakama MP) - description_loc: - english: Launch game (Nakama MP) executable: hoi4.exe - - arguments: '-nakama' + - arguments: "-nakama" config: betakey: nakama oslist: macos description: Launch game (Nakama MP) - description_loc: - english: Launch game (Nakama MP) executable: hoi4.app - - arguments: '-nakama' + - arguments: "-nakama" config: betakey: nakama oslist: linux description: Launch game (Nakama MP) - description_loc: - english: Launch game (Nakama MP) executable: run_hoi4 -'394380': +"394380": installDir: BattleStick launch: - config: @@ -195154,16 +191247,16 @@ executable: BattleStick.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: BattleStick type: default - config: - osarch: '64' + osarch: "64" oslist: macos executable: BattleStick.app type: default -'394390': +"394390": installDir: Daydreamer launch: - config: @@ -195171,7 +191264,7 @@ description: Launch executable: Daydreamer.exe type: none -'394430': +"394430": installDir: Dimension Drive launch: - config: @@ -195179,12 +191272,12 @@ executable: Dimension Drive.exe type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: DimensionDrive.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: DimensionDrive.x86_64 type: none @@ -195192,15 +191285,15 @@ oslist: macos executable: DimensionDrive.app type: none -'394450': - installDir: 'Warhammer 40,000 Deathwatch - Tyranid Invasion' +"394450": + installDir: "Warhammer 40,000 Deathwatch - Tyranid Invasion" launch: - config: oslist: windows description: Launch executable: DeathwatchGame type: default -'394480': +"394480": installDir: Ringies launch: - config: @@ -195211,86 +191304,86 @@ oslist: macos executable: Ringies.app type: none -'394490': +"394490": installDir: Buildanauts launch: - config: oslist: windows executable: Buildanauts.exe type: default -'394510': +"394510": installDir: Helldivers launch: - - arguments: '-bundle-dir contents -ini settings' + - arguments: "-bundle-dir contents -ini settings" config: - osarch: '32' + osarch: "32" oslist: windows description: 32-bit - executable: binaries\\x86\\helldivers.exe + executable: "binaries\\\\x86\\\\helldivers.exe" type: default - - arguments: '-port 14030 -backend_url \"https://api-qa.helldiversgame.com/sp-int/1.0/\" -bundle-dir contents -ini settings' + - arguments: "-port 14030 -backend_url \\\"https://api-qa.helldiversgame.com/sp-int/1.0/\\\" -bundle-dir contents -ini settings" config: - betakey: 'enzyme, progression_reset' - osarch: '32' + betakey: "enzyme, progression_reset" + osarch: "32" oslist: windows description: Enzyme 32-bit - executable: binaries\\x86\\helldivers.exe + executable: "binaries\\\\x86\\\\helldivers.exe" type: option1 - - arguments: '-port 14030 -backend_url \"https://api-qa.helldiversgame.com/sp-int/1.0/\" -bundle-dir contents -ini settings' + - arguments: "-port 14030 -backend_url \\\"https://api-qa.helldiversgame.com/sp-int/1.0/\\\" -bundle-dir contents -ini settings" config: - betakey: 'enzyme_dev, progression_reset_dev' - osarch: '32' + betakey: "enzyme_dev, progression_reset_dev" + osarch: "32" oslist: windows description: Enzyme 32-bit Dev - executable: binaries\\x86\\helldivers.exe + executable: "binaries\\\\x86\\\\helldivers.exe" type: option1 - - arguments: '-bundle-dir contents -ini settings' + - arguments: "-bundle-dir contents -ini settings" config: - osarch: '64' + osarch: "64" oslist: windows description: 64-bit - executable: binaries\\x64\\helldivers.exe + executable: "binaries\\\\x64\\\\helldivers.exe" type: default - - arguments: '-port 14030 -backend_url \"https://api-qa.helldiversgame.com/sp-int/1.0/\" -bundle-dir contents -ini settings' + - arguments: "-port 14030 -backend_url \\\"https://api-qa.helldiversgame.com/sp-int/1.0/\\\" -bundle-dir contents -ini settings" config: - betakey: 'enzyme, progression_reset' - osarch: '64' + betakey: "enzyme, progression_reset" + osarch: "64" oslist: windows description: Enzyme 64-bit - executable: binaries\\x64\\helldivers.exe + executable: "binaries\\\\x64\\\\helldivers.exe" type: option1 - - arguments: '-port 14030 -backend_url \"https://api-qa.helldiversgame.com/sp-int/1.0/\" -bundle-dir contents -ini settings' + - arguments: "-port 14030 -backend_url \\\"https://api-qa.helldiversgame.com/sp-int/1.0/\\\" -bundle-dir contents -ini settings" config: - betakey: 'enzyme_dev, progression_reset_dev' - osarch: '64' + betakey: "enzyme_dev, progression_reset_dev" + osarch: "64" oslist: windows description: Enzyme 64-bit Dev - executable: binaries\\x64\\helldivers.exe + executable: "binaries\\\\x64\\\\helldivers.exe" type: option1 - - arguments: '-bundle-dir contents -ini settings' + - arguments: "-bundle-dir contents -ini settings" config: - osarch: '64' + osarch: "64" oslist: windows description: 32-bit - executable: binaries\\x86\\helldivers.exe + executable: "binaries\\\\x86\\\\helldivers.exe" type: safemode - - arguments: '-port 14030 -backend_url \"https://api-qa.helldiversgame.com/sp-int/1.0/\" -bundle-dir contents -ini settings' + - arguments: "-port 14030 -backend_url \\\"https://api-qa.helldiversgame.com/sp-int/1.0/\\\" -bundle-dir contents -ini settings" config: - betakey: 'enzyme, progression_reset' - osarch: '64' + betakey: "enzyme, progression_reset" + osarch: "64" oslist: windows description: Enzyme 32-bit - executable: binaries\\x86\\helldivers.exe + executable: "binaries\\\\x86\\\\helldivers.exe" type: option1 - - arguments: '-port 14030 -backend_url \"https://api-qa.helldiversgame.com/sp-int/1.0/\" -bundle-dir contents -ini settings' + - arguments: "-port 14030 -backend_url \\\"https://api-qa.helldiversgame.com/sp-int/1.0/\\\" -bundle-dir contents -ini settings" config: - betakey: 'enzyme_dev, progression_reset_dev' - osarch: '64' + betakey: "enzyme_dev, progression_reset_dev" + osarch: "64" oslist: windows description: Enzyme 32-bit Dev - executable: binaries\\x86\\helldivers.exe + executable: "binaries\\\\x86\\\\helldivers.exe" type: option1 -'394540': +"394540": installDir: Spaceport Hope launch: - config: @@ -195306,14 +191399,14 @@ executable: bin/spaceport_hope type: default workingdir: bin/ -'394550': +"394550": installDir: Gunman Clive 2 launch: - config: oslist: windows description: Launch executable: gc2.exe -'394600': +"394600": installDir: Mighty Gunvolt launch: - config: @@ -195321,7 +191414,7 @@ description: Launch executable: MightyGunvolt.exe type: default -'394680': +"394680": installDir: MountainCrime launch: - config: @@ -195332,38 +191425,32 @@ oslist: macos description: Launch executable: MountainCrimeRequital.app -'394690': +"394690": installDir: Tower Unite launch: - - arguments: '-nohmd' + - arguments: "-nohmd" config: oslist: windows description: Tower Unite DirectX 11 - description_loc: - english: Tower Unite DirectX 11 executable: tower.exe type: option1 - config: oslist: linux executable: Tower/Binaries/Linux/Tower-Linux-Shipping type: none - - arguments: '-d3d10 -nohmd' + - arguments: "-d3d10 -nohmd" config: oslist: windows description: Tower Unite DirectX 10 (for slower computers) - description_loc: - english: Tower Unite DirectX 10 (for slower computers) executable: tower.exe type: option2 - - arguments: '-vr' + - arguments: "-vr" config: oslist: windows - description: 'Tower Unite VR Mode (alpha, no menu)' - description_loc: - english: 'Tower Unite VR Mode (alpha, no menu)' + description: "Tower Unite VR Mode (alpha, no menu)" executable: tower.exe type: option3 -'394700': +"394700": installDir: Karma. Incarnation 1 launch: - config: @@ -195372,9 +191459,9 @@ type: default - config: oslist: windows - executable: game\\game.exe + executable: "game\\\\game.exe" type: default -'394720': +"394720": installDir: The Legend of Tango launch: - config: @@ -195382,15 +191469,15 @@ description: Launch executable: Game.exe type: none -'394740': +"394740": installDir: Battleline Steel Warfare launch: - - arguments: '-standalone' + - arguments: "-standalone" config: oslist: windows executable: BattleLine.exe type: default -'394760': +"394760": installDir: Dead Effect 2 launch: - config: @@ -195403,31 +191490,31 @@ description: Launch executable: DeadEffect2.app type: default - - arguments: '-force-d3d9' + - arguments: "-force-d3d9" config: oslist: windows description: Dead Effect 2 - DirectX 9 Exclusive Mode executable: DeadEffect2.exe type: option1 - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" config: oslist: windows description: Change resolution executable: DeadEffect2.exe type: config - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" config: oslist: macos description: Change resolution executable: DeadEffect2.app type: config - - arguments: '-force-opengl' + - arguments: "-force-opengl" config: oslist: macos description: DeadEffect2 - OpenGL compatibility mode executable: DeadEffect2.app type: option1 -'394770': +"394770": installDir: owysgame launch: - config: @@ -195442,7 +191529,7 @@ oslist: linux description: Launch executable: run.sh -'394830': +"394830": installDir: One Upon Light launch: - config: @@ -195453,12 +191540,12 @@ oslist: windows executable: OneUponLight_1.0.1.exe type: default -'394840': +"394840": installDir: Mars Colony Frontier launch: - description: Launch executable: Frontier.exe -'394850': +"394850": installDir: Square Brawl launch: - config: @@ -195473,18 +191560,18 @@ oslist: linux executable: Square Brawl.x86 type: none -'394870': +"394870": installDir: Office Battle launch: - - description: \"Office Battle\" + - description: "\\\"Office Battle\\\"" executable: Office_Battle.exe type: option1 - config: oslist: windows description: Reset all settings to default - executable: Office_Battle_Data\\StreamingAssets\\clear_settings.bat + executable: "Office_Battle_Data\\\\StreamingAssets\\\\clear_settings.bat" type: none -'394950': +"394950": installDir: Mystery Castle launch: - config: @@ -195495,14 +191582,14 @@ oslist: macos executable: MysteryCastle.app type: default -'394960': +"394960": installDir: The Facility launch: - config: oslist: windows executable: thefacility.exe type: none -'394970': +"394970": installDir: DEADBOLT launch: - config: @@ -195517,7 +191604,7 @@ oslist: linux executable: run.sh type: default -'394990': +"394990": installDir: Habitus launch: - config: @@ -195532,30 +191619,28 @@ oslist: linux executable: nw type: default -'39500': +"39500": installDir: Gothic 3 launch: - executable: Gothic3.exe -'39510': +"39510": installDir: Gothic II launch: - - executable: system\\Gothic2.exe + - executable: "system\\\\Gothic2.exe" - config: betakey: workshop description: Mod launcher - description_loc: - english: Mod launcher - executable: launcher\\Gothic2SteamWorkshopLauncher.exe + executable: "launcher\\\\Gothic2SteamWorkshopLauncher.exe" type: option1 workingdir: launcher -'395100': +"395100": installDir: Systematic Immunity launch: - config: oslist: windows executable: Systematic Immunity.exe type: none -'395140': +"395140": installDir: Miracle Fly launch: - config: @@ -195564,29 +191649,29 @@ type: default - config: oslist: macos - executable: MiracleFly.app\\Contents\\MacOS\\mfly + executable: "MiracleFly.app\\\\Contents\\\\MacOS\\\\mfly" type: default -'395150': +"395150": installDir: Dark Storm VR Missions launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch UE4 Version X64 executable: darkstorm.exe type: default - config: oslist: macos - executable: DarkStormVRMissions.app\\Contents\\MacOS\\UDKGame + executable: "DarkStormVRMissions.app\\\\Contents\\\\MacOS\\\\UDKGame" type: none workingdir: Launch - config: oslist: windows description: Launch UDK Version (Old) - executable: \\Binaries\\Win32\\udk.exe + executable: "\\\\Binaries\\\\Win32\\\\udk.exe" type: option1 - workingdir: \\Binaries\\Win32\\ -'395160': + workingdir: "\\\\Binaries\\\\Win32\\\\" +"395160": installDir: Toby The Secret Mine launch: - config: @@ -195601,7 +191686,7 @@ oslist: linux executable: Toby.x86 type: default -'395170': +"395170": installDir: DISTRAINT launch: - config: @@ -195609,21 +191694,21 @@ executable: distraint.exe type: default nameLocalized: - japanese: 'ドットホラーストーリー (DISTRAINT: Deluxe Edition)' -'395190': - installDir: Reiner Knizia's The Confrontation + japanese: "ドットホラーストーリー (DISTRAINT: Deluxe Edition)" +"395190": + installDir: "Reiner Knizia's The Confrontation" launch: - config: oslist: macos description: Launch - executable: Reiner Knizia's The Confrontation.app/Contents/MacOS/Reiner Knizia's The Confrontation + executable: "Reiner Knizia's The Confrontation.app/Contents/MacOS/Reiner Knizia's The Confrontation" type: default - config: oslist: windows description: Launch - executable: Reiner Knizia's The Confrontation.exe + executable: "Reiner Knizia's The Confrontation.exe" type: default -'39520': +"39520": installDir: Europa 1400 The Guild - Gold Edition launch: - config: @@ -195633,14 +191718,14 @@ oslist: windows description: Launch with newer graphics cards executable: Europa1400Gold_TL.exe -'395200': +"395200": installDir: Ben and Ed launch: - config: oslist: windows description: Launch executable: BenAndEd.exe -'395250': +"395250": installDir: The Adventures of Fatman launch: - config: @@ -195648,7 +191733,7 @@ description: Launch executable: Fatman_.exe type: none - - arguments: '--setup' + - arguments: "--setup" config: oslist: windows description: Setup @@ -195657,17 +191742,17 @@ - config: oslist: windows description: Special Features - executable: specialfeatures\\Special_Features.exe -'395270': + executable: "specialfeatures\\\\Special_Features.exe" +"395270": installDir: A Wolf in Autumn launch: - executable: AWiA.exe type: none -'39530': +"39530": installDir: Painkiller Black Edition launch: - - executable: Bin\\Painkiller.exe -'395300': + - executable: "Bin\\\\Painkiller.exe" +"395300": installDir: Voxel Blast launch: - config: @@ -195682,7 +191767,7 @@ oslist: macos executable: VoxelBlast.app type: default -'395350': +"395350": installDir: Doors launch: - config: @@ -195693,15 +191778,15 @@ oslist: macos executable: doors.app type: default -'395370': {} -'395380': +"395370": {} +"395380": installDir: ANKI launch: - config: oslist: windows description: Launch executable: ANKI.exe -'39540': +"39540": installDir: Spellforce Platinum Edition launch: - executable: Spellforce.exe @@ -195709,10 +191794,8 @@ betakey: publictest oslist: windows description: SpellForce Mod Launcher - description_loc: - english: SpellForce Mod Launcher - executable: modlauncher\\ModLauncher.exe -'395400': + executable: "modlauncher\\\\ModLauncher.exe" +"395400": installDir: Freedom Cry launch: - config: @@ -195720,7 +191803,7 @@ description: Launch executable: game.exe type: none -'395420': +"395420": installDir: The Dwarf Run launch: - config: @@ -195735,7 +191818,7 @@ oslist: macos description: Launch executable: The Dwarf Run.app -'395470': +"395470": installDir: ICARUS1 launch: - config: @@ -195746,14 +191829,14 @@ - config: oslist: macos description: Launch - executable: ICARUS.1.app\\Contents\\MacOS\\ICARUS.1 + executable: "ICARUS.1.app\\\\Contents\\\\MacOS\\\\ICARUS.1" - config: oslist: windows - ownsdlc: '631610' + ownsdlc: "631610" description: Launch PROTOTYPE EDITION executable: ICARUS.0.exe type: none -'395480': +"395480": installDir: Mr Makeshifter launch: - config: @@ -195761,12 +191844,12 @@ description: Launch executable: MrMakeshifter.exe - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: MrMakeshifter.x86_64 - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: MrMakeshifter.x86 @@ -195774,18 +191857,18 @@ oslist: macos description: Launch executable: MrMakeshifter.app -'39550': +"39550": installDir: Spellforce 2 Gold Edition launch: - executable: spellforce2.exe -'395500': +"395500": installDir: Rot Gut launch: - config: oslist: windows executable: Main.exe type: none -'395520': +"395520": installDir: Missing Translation launch: - config: @@ -195797,7 +191880,7 @@ oslist: macos executable: nw.app type: default -'395550': +"395550": installDir: Operation Hardcore launch: - config: @@ -195809,14 +191892,14 @@ description: Launch executable: OH.app type: none -'395560': +"395560": installDir: Lost Horizon 2 launch: - config: oslist: windows executable: LostHorizon2.exe type: default -'395570': +"395570": installDir: We Are The Dwarves launch: - config: @@ -195827,13 +191910,13 @@ oslist: macos executable: watd.app type: default - - arguments: '-force-opengl' + - arguments: "-force-opengl" config: - osarch: '64' + osarch: "64" oslist: linux executable: watd.x86_64 type: default -'395580': +"395580": installDir: Inventioneers launch: - config: @@ -195848,13 +191931,13 @@ oslist: linux executable: Inventioneers.x86 type: default -'39560': +"39560": installDir: Painkiller Resurrection launch: - - executable: bin\\Resurrection.exe + - executable: "bin\\\\Resurrection.exe" workingdir: bin -'395600': - installDir: 'Armor Clash [RTS]' +"395600": + installDir: "Armor Clash [RTS]" launch: - config: oslist: windows @@ -195865,16 +191948,16 @@ executable: ArmorClash.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: ArmorClash.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: ArmorClash.x86 type: default -'395620': +"395620": installDir: Ittle Dew 2 launch: - config: @@ -195887,46 +191970,46 @@ executable: ID2.app type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: ID2.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: ID2.x86_64 type: default -'395640': +"395640": installDir: Velocity Stream launch: - config: oslist: windows executable: Velocity Stream.exe type: default -'395830': {} -'395850': +"395830": {} +"395850": installDir: Bear Simulator launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: Bear Simulator (Windows 32 bit).exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: Bear Simulator (Windows 64 bit).exe type: default - config: oslist: macos - executable: Bear Simulator (OSX).app\\Contents\\MacOS\\Bear Simulator (OSX) + executable: "Bear Simulator (OSX).app\\\\Contents\\\\MacOS\\\\Bear Simulator (OSX)" type: default - config: oslist: linux executable: Bear Simulator (Linux).x86_64 type: default -'395860': - installDir: The Last Dream Developer's edition +"395860": + installDir: "The Last Dream Developer's edition" launch: - config: oslist: windows @@ -195936,14 +192019,14 @@ oslist: macos executable: The Last Dream Steam.app type: none -'395880': +"395880": installDir: Sky Tower launch: - config: oslist: windows executable: Sky Tower.exe type: vr -'395890': +"395890": installDir: Lapland Solitaire launch: - config: @@ -195954,19 +192037,19 @@ oslist: macos executable: LaplandSolitaire.app type: default -'395900': +"395900": installDir: Backgammon launch: - description: Launch executable: MantisConfig.exe -'395910': +"395910": installDir: Get Rich or Die Gaming launch: - config: oslist: windows executable: Get Rich or Die Gaming.exe type: none -'395920': +"395920": installDir: PH1 - The Plague launch: - config: @@ -195977,7 +192060,7 @@ oslist: macos description: Launch executable: PH1Plague.app -'395930': +"395930": installDir: Farm Frenzy Heave Ho launch: - config: @@ -195988,7 +192071,7 @@ oslist: macos executable: Farm Frenzy Heave Ho.app type: none -'395940': +"395940": installDir: ScribbledArena launch: - config: @@ -195996,44 +192079,44 @@ description: this is default build executable: ScribbledArena.exe type: default -'395960': +"395960": installDir: Areeb World launch: - config: oslist: windows - executable: system\\AreebSteamLauncher.exe + executable: "system\\\\AreebSteamLauncher.exe" type: none -'395980': {} -'3960': +"395980": {} +"3960": installDir: Shattered Union launch: - executable: ShatteredUnion.exe -'39600': +"39600": installDir: Agatha Christie And then there were None launch: - executable: ac.exe -'396010': +"396010": installDir: The Rise of Chubtan launch: - config: oslist: windows executable: roc.exe type: none -'396030': +"396030": installDir: InCell launch: - - arguments: '-vrmode None' + - arguments: "-vrmode None" config: oslist: windows executable: InCell.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: InCell.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: InCell.x86_64 type: default @@ -196049,16 +192132,16 @@ oslist: windows executable: InCell.exe type: vr -'396060': +"396060": installDir: TheRoseAndI launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: RoseAndI.exe type: vr -'396090': +"396090": installDir: Rogue State launch: - config: @@ -196071,33 +192154,33 @@ executable: winsetup.exe - arguments: RogueState.ags config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: ags64 - arguments: RogueState.ags config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: ags32 - arguments: RogueState.ags --windowed config: - osarch: '64' + osarch: "64" oslist: linux description: Play Rogue State (Windowed Mode) executable: ags64 - arguments: RogueState.ags --windowed config: - osarch: '32' + osarch: "32" oslist: linux description: Play Rogue State (Windowed Mode) executable: ags32 -'39610': +"39610": installDir: Agatha Christie Evil Under the Sun launch: - executable: euts.exe -'396160': +"396160": installDir: Secret Of Magia launch: - config: @@ -196105,11 +192188,11 @@ description: Launch executable: EQLauncher.exe type: none -'39620': +"39620": installDir: Agatha Christie Murder on the Orient Express launch: - executable: motoe.exe -'396230': +"396230": installDir: VersusTheLostOnes launch: - config: @@ -196124,25 +192207,25 @@ oslist: linux description: Launch executable: VersusTheLostOnes -'396260': - installDir: World's Fastest Pizza +"396260": + installDir: "World's Fastest Pizza" launch: - config: oslist: windows - executable: World's Fastest Pizza.exe + executable: "World's Fastest Pizza.exe" type: default -'396280': +"396280": installDir: Anarchy Online launch: - config: oslist: windows executable: AnarchyOnline.exe type: default -'39630': +"39630": installDir: AquaNox launch: - executable: Aqua.exe -'396310': +"396310": installDir: Masochisia launch: - config: @@ -196154,16 +192237,16 @@ executable: MASOCHISIA-OSX.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: MASOCHISIA-Linux.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: MASOCHISIA-Linux.x86 type: default -'396320': +"396320": installDir: Tank Battle 1944 launch: - config: @@ -196174,7 +192257,7 @@ oslist: macos executable: TankBattle1944.app type: default -'396350': +"396350": installDir: Bleed 2 launch: - config: @@ -196183,13 +192266,13 @@ type: none - config: oslist: linux - executable: ./Bleed2 + executable: "./Bleed2" type: none - config: oslist: macos executable: Bleed 2.app/Contents/MacOS/Bleed2 type: none -'396360': +"396360": installDir: LowcoBall launch: - config: @@ -196201,60 +192284,60 @@ oslist: linux executable: LowcoBall.x86_64 type: none -'396390': +"396390": installDir: Barbie and Her Sisters Puppy Rescue launch: - config: oslist: windows - description: 'Play: Barbie and Her Sisters Puppy Rescue' + description: "Play: Barbie and Her Sisters Puppy Rescue" executable: Barbie2.exe type: default - - arguments: '-c' + - arguments: "-c" config: oslist: windows description: Configure game settings executable: Barbie2.exe type: config -'39640': +"39640": installDir: AquaNox 2 Revelation launch: - executable: AquaNox 2 Revelation.exe -'396400': +"396400": installDir: Monster High New Ghoul in School launch: - config: oslist: windows - description: 'Play: Monster High: New Ghoul in School' + description: "Play: Monster High: New Ghoul in School" executable: MonsterHigh2.exe type: default - - arguments: '-c' + - arguments: "-c" config: oslist: windows description: Configure game settings executable: MonsterHigh2.exe type: config -'396420': +"396420": installDir: The Spookening launch: - config: oslist: windows description: Launch - executable: bin\\Spookening.exe -'396450': + executable: "bin\\\\Spookening.exe" +"396450": installDir: One-eyed Jak launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: bin/barehunter.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: bin64/barehunter.exe type: default -'396480': +"396480": installDir: Battlevoid Harbinger launch: - config: @@ -196271,45 +192354,45 @@ oslist: macos executable: harbinger.app type: config -'39650': +"39650": installDir: The Guild II launch: - executable: GuildII.exe -'396530': +"396530": installDir: Fireflies launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: fireflies.exe type: none -'396540': +"396540": installDir: Cliffs of War Fortress Defenders launch: - config: oslist: windows description: Launch executable: CliffsOfWar.exe -'396560': +"396560": installDir: Front Defense launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: FrontDefense.exe type: vr -'396590': +"396590": installDir: CMYW launch: - config: oslist: windows executable: CMYW.exe type: default -'39660': +"39660": installDir: The Guild II - Pirates of the European Seas launch: - executable: GuildII.exe -'396610': +"396610": installDir: Quantum Flux launch: - config: @@ -196320,14 +192403,14 @@ oslist: macos description: Launch executable: quantumflux.app -'396640': +"396640": installDir: TowerClimb launch: - config: oslist: windows executable: TowerClimb_V1_Steam4.exe type: default -'396650': +"396650": installDir: ACE Academy launch: - config: @@ -196345,7 +192428,7 @@ description: Linux Launch executable: ACE Academy.sh type: default -'396660': +"396660": installDir: Tahira launch: - config: @@ -196357,20 +192440,20 @@ executable: Tahira.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Tahira.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Tahira.x86_64 type: default -'396680': +"396680": installDir: Sol Trader launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: sol.exe type: default @@ -196383,15 +192466,15 @@ executable: sol type: none - config: - osarch: '32' + osarch: "32" oslist: windows executable: sol32.exe type: none -'39670': +"39670": installDir: Chaser launch: - executable: Chaser.exe -'396700': +"396700": installDir: Hover Cubes Arena launch: - config: @@ -196399,7 +192482,7 @@ description: Open Launcher executable: HCXLauncher.exe type: none -'396710': +"396710": installDir: The Adventure Pals launch: - config: @@ -196410,81 +192493,81 @@ oslist: macos executable: Adventure Pals.app type: default -'396730': +"396730": installDir: gShift launch: - config: oslist: windows description: Launch executable: gShift.exe -'396750': +"396750": installDir: EVERSPACE launch: - - arguments: '-nohmd' + - arguments: "-nohmd" config: - osarch: '64' + osarch: "64" oslist: windows - executable: RSG\\Binaries\\Win64\\RSG-Win64-Shipping.exe + executable: "RSG\\\\Binaries\\\\Win64\\\\RSG-Win64-Shipping.exe" type: default - config: oslist: macos executable: EVERSPACE.app type: default - - arguments: '-nohmd' + - arguments: "-nohmd" config: - osarch: '32' + osarch: "32" oslist: windows - executable: RSG\\Binaries\\Win32\\RSG-Win32-Shipping.exe + executable: "RSG\\\\Binaries\\\\Win32\\\\RSG-Win32-Shipping.exe" type: default - - arguments: '-vr' + - arguments: "-vr" config: - osarch: '64' + osarch: "64" oslist: windows description: EVERSPACE™ - executable: RSG\\Binaries\\Win64\\RSG-Win64-Shipping.exe + executable: "RSG\\\\Binaries\\\\Win64\\\\RSG-Win64-Shipping.exe" type: vr - - arguments: '-vr' + - arguments: "-vr" config: - osarch: '64' + osarch: "64" oslist: windows description: EVERSPACE™ - executable: RSG\\Binaries\\Win64\\RSG-Win64-Shipping.exe + executable: "RSG\\\\Binaries\\\\Win64\\\\RSG-Win64-Shipping.exe" type: othervr - config: oslist: windows - ownsdlc: '688700' + ownsdlc: "688700" description: Open Digital Artbook - executable: Artbook\\EVERSPACE_Official_Artbook.pdf + executable: "Artbook\\\\EVERSPACE_Official_Artbook.pdf" type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: EVERSPACE™ (system video libraries) executable: EverspaceWithSystemLibraries.sh type: default - workingdir: ./RSG/Scripts/ + workingdir: "./RSG/Scripts/" - config: oslist: macos - ownsdlc: '688700' + ownsdlc: "688700" description: Open Digital Artbook executable: RSG/Scripts/open.sh type: none - workingdir: ./RSG/Scripts/ + workingdir: "./RSG/Scripts/" - config: - osarch: '64' + osarch: "64" oslist: linux description: EVERSPACE™ (shipped video libraries) executable: EverspaceWithShippedLibraries.sh type: option1 - config: oslist: linux - ownsdlc: '688700' + ownsdlc: "688700" description: Open Digital Artbook executable: RSG/Scripts/open.sh type: none - workingdir: ./RSG/Scripts/ -'396790': - installDir: Dracula's Legacy + workingdir: "./RSG/Scripts/" +"396790": + installDir: "Dracula's Legacy" launch: - config: oslist: windows @@ -196494,11 +192577,11 @@ oslist: macos executable: DraculaLegacy.app type: none -'39680': +"39680": installDir: The Guild 2 Renaissance launch: - executable: GuildII.exe -'396800': +"396800": installDir: 12 Labours of Hercules IV Mother Nature launch: - config: @@ -196513,21 +192596,21 @@ oslist: linux executable: Hercules4 type: none -'396820': +"396820": installDir: Mass Destruction launch: - config: oslist: windows description: Launch executable: Mass Destruction.exe -'396850': +"396850": installDir: ChroniclesOfWAW launch: - config: oslist: windows executable: ChroniclesOfWAW.exe type: none -'396860': +"396860": installDir: Over The Hills And Far Away launch: - config: @@ -196545,7 +192628,7 @@ description: Launch executable: Over The Hills And Far Away.sh type: none -'396870': +"396870": installDir: Catyph launch: - config: @@ -196553,16 +192636,16 @@ description: Launch executable: Launcher.exe type: default -'396890': +"396890": installDir: Gridworld launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Gridworld_64b.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: Gridworld_32b.exe type: default @@ -196570,26 +192653,26 @@ oslist: linux executable: Gridworld.sh type: default -'39690': +"39690": installDir: Arcania Gothic 4 launch: - executable: Arcania.exe -'396900': +"396900": installDir: Grip launch: - - arguments: '-nohmd' + - arguments: "-nohmd" config: - osarch: '64' + osarch: "64" oslist: windows executable: Grip.exe type: default - - arguments: '-vr' + - arguments: "-vr" config: - osarch: '64' + osarch: "64" oslist: windows executable: Grip.exe type: vr -'396930': +"396930": installDir: Tidal Affair Before The Storm launch: - config: @@ -196600,39 +192683,39 @@ oslist: macos executable: TidalAffairBeforeTheStorm.app type: default -'3970': +"3970": installDir: Prey 2006 launch: - executable: prey.exe -'397020': +"397020": installDir: Ironkraft - Road to Hell launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: IronKraft - RoadToHell.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: IronKraft - RoadToHell.x86 type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: IronKraft - RoadToHell.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: IronKraft - RoadToHell.x86_64 type: default - config: oslist: macos - executable: IronKraft - RoadToHell.app\\Contents\\MacOS\\IronKraft - RoadToHell + executable: "IronKraft - RoadToHell.app\\\\Contents\\\\MacOS\\\\IronKraft - RoadToHell" type: default -'397030': {} -'397040': +"397030": {} +"397040": installDir: Sphere III launch: - config: @@ -196640,8 +192723,8 @@ executable: launchpoint.exe type: default nameLocalized: - russian: 'Сфера 3: Ярость сокрушителя' -'397060': + russian: "Сфера 3: Ярость сокрушителя" +"397060": installDir: Faeria launch: - config: @@ -196650,39 +192733,39 @@ type: default - config: oslist: macos - executable: Faeria.app\\Contents\\MacOS\\Faeria + executable: "Faeria.app\\\\Contents\\\\MacOS\\\\Faeria" type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Faeria.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Faeria.x86 type: default -'397090': +"397090": installDir: Wind Child launch: - description: Launch executable: game.exe type: none -'397100': +"397100": installDir: MachineCraft launch: - config: oslist: windows executable: McnCraft.exe type: default -'397150': +"397150": installDir: Stellar Overload launch: - config: oslist: windows executable: StellarOverload.exe type: default - - arguments: '-OpenGL' + - arguments: "-OpenGL" config: betakey: steam_ea1_v0.8.5.2 oslist: macos @@ -196696,7 +192779,7 @@ executable: StellarOverloadEA1/Binaries/Linux/StellarOverload type: option1 workingdir: StellarOverloadEA1/Binaries/Linux/ - - arguments: '-OpenGL4' + - arguments: "-OpenGL4" config: betakey: steam_ea1_v0.8.5.2 oslist: linux @@ -196704,7 +192787,7 @@ executable: StellarOverloadEA1/Binaries/Linux/StellarOverload type: option1 workingdir: StellarOverloadEA1/Binaries/Linux/ - - arguments: '-OpenGL' + - arguments: "-OpenGL" config: betakey: steam_ea2_v0.8.6.2 oslist: macos @@ -196718,7 +192801,7 @@ executable: StellarOverloadEA2/Binaries/Linux/StellarOverload type: option1 workingdir: StellarOverloadEA2/Binaries/Linux/ - - arguments: '-OpenGL4' + - arguments: "-OpenGL4" config: betakey: steam_ea2_v0.8.6.2 oslist: linux @@ -196726,7 +192809,7 @@ executable: StellarOverloadEA2/Binaries/Linux/StellarOverload type: option1 workingdir: StellarOverloadEA2/Binaries/Linux/ - - arguments: '-OpenGL' + - arguments: "-OpenGL" config: betakey: steam_ea3_v0.8.7.1 oslist: macos @@ -196738,7 +192821,7 @@ executable: StellarOverloadEA3/Binaries/Linux/StellarOverload type: default workingdir: StellarOverloadEA3/Binaries/Linux/ - - arguments: '-OpenGL4' + - arguments: "-OpenGL4" config: betakey: steam_ea3_v0.8.7.1 oslist: linux @@ -196750,7 +192833,7 @@ oslist: macos executable: StellarOverload.sh type: default - - arguments: '-MetalSM5' + - arguments: "-MetalSM5" config: oslist: macos description: Stellar Overload (Metal SM5) @@ -196761,7 +192844,7 @@ executable: StellarOverload.sh type: default workingdir: StellarOverloadEA5/Binaries/Linux/ - - arguments: '-OpenGL4' + - arguments: "-OpenGL4" config: oslist: linux description: Stellar Overload (OpenGL4) @@ -196774,7 +192857,7 @@ executable: StellarOverload.sh type: default workingdir: StellarOverloadEA4/Binaries/Linux/ - - arguments: '-OpenGL4' + - arguments: "-OpenGL4" config: betakey: steam_ea4_v0.8.8.3 oslist: linux @@ -196782,27 +192865,27 @@ executable: StellarOverload.sh type: option1 workingdir: StellarOverloadEA4/Binaries/Linux/ -'397160': +"397160": installDir: Aurora Dusk - Steam Age launch: - config: oslist: windows executable: Aurora.exe type: default -'397180': +"397180": installDir: Command Modern Air Naval Operations launch: - description: Launch - executable: GameMenu_CNI\\autorun.exe + executable: "GameMenu_CNI\\\\autorun.exe" type: none -'397190': +"397190": installDir: Sengoku Jidai launch: - config: oslist: windows executable: autorun.exe type: default -'397200': +"397200": installDir: Deliverance launch: - config: @@ -196815,14 +192898,14 @@ description: Launch executable: Deliverance.app type: none -'397210': +"397210": installDir: Kanji Training Game launch: - config: oslist: windows executable: KanjiTrainingGame.exe type: default -'397240': +"397240": installDir: Troubles Land launch: - config: @@ -196831,13 +192914,13 @@ type: default - config: oslist: macos - executable: TroublesLand.app\\Contents\\MacOS\\TroublesLand + executable: "TroublesLand.app\\\\Contents\\\\MacOS\\\\TroublesLand" type: default - config: oslist: linux executable: TroublesLand.x86 type: default -'397270': +"397270": installDir: A Kiss for the Petals - Remembering How We Met launch: - config: @@ -196852,77 +192935,63 @@ oslist: macos executable: RememberingHowWeMet.app type: default -'397310': +"397310": installDir: Looterkings launch: - config: oslist: windows executable: Looterkings.exe type: none -'397320': +"397320": installDir: CTU Counter Terrorism Unit launch: - config: oslist: windows executable: CTU_64b.exe type: none -'397330': - installDir: Twinsen's Little Big Adventure Classic +"397330": + installDir: "Twinsen's Little Big Adventure Classic" launch: - config: betakey: classic3.1.x oslist: windows description: TLBA Classic Edition - beta - description_loc: - english: TLBA Classic Edition - beta executable: TLBA1C.exe - config: betakey: retro3.1.x oslist: windows description: TLBA Original Edition - beta - description_loc: - english: TLBA Original Edition - beta executable: TLBA1.exe - config: oslist: windows - description: Twinsen's Little Big Adventure Classic - description_loc: - english: Twinsen's Little Big Adventure Classic + description: "Twinsen's Little Big Adventure Classic" executable: TLBA1C.exe type: option1 - config: oslist: windows - ownsdlc: '1857700' + ownsdlc: "1857700" description: DLC - Original Edition - description_loc: - english: DLC - Original Edition executable: TLBA1.exe type: option1 - config: oslist: windows - ownsdlc: '1972490' + ownsdlc: "1972490" description: DLC - 2015 Edition - description_loc: - english: DLC - 2015 Edition - executable: DotEmu\\LBA.exe + executable: "DotEmu\\\\LBA.exe" type: option1 - workingdir: DotEmu\\ + workingdir: "DotEmu\\\\" - config: oslist: macos description: Speedrun - DOS Mac Version - description_loc: - english: Speedrun - DOS Mac Version - executable: Speedrun\\Mac\\Contents\\MacOS\\Launcher + executable: "Speedrun\\\\Mac\\\\Contents\\\\MacOS\\\\Launcher" type: option1 - config: betakey: develop oslist: windows description: Remaster - description_loc: - english: Remaster - executable: LBA1Remake\\Windows\\RemasterProto.exe + executable: "LBA1Remake\\\\Windows\\\\RemasterProto.exe" type: option1 -'397340': +"397340": installDir: SimplePlanes launch: - config: @@ -196933,15 +193002,15 @@ oslist: macos executable: SimplePlanes.app type: default -'397350': +"397350": installDir: Lords of the Realm II launch: - description: Main Game - executable: English\\Lords of the Realm II\\Launcher\\LOTR2Launcher.exe + executable: "English\\\\Lords of the Realm II\\\\Launcher\\\\LOTR2Launcher.exe" type: default - workingdir: English\\Lords of the Realm II\\ -'397360': - installDir: Magician's Apprentice + workingdir: "English\\\\Lords of the Realm II\\\\" +"397360": + installDir: "Magician's Apprentice" launch: - config: oslist: windows @@ -196950,14 +193019,14 @@ - config: oslist: windows description: Quick launch - executable: Magician's Apprentice.exe + executable: "Magician's Apprentice.exe" type: default - config: oslist: windows description: Editor executable: Editor.exe type: editor -'397390': +"397390": installDir: Space Food Truck launch: - config: @@ -196969,16 +193038,16 @@ executable: SFT.exe type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: SFT.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: SFT.x86_64 type: none -'397400': +"397400": installDir: HueBots launch: - config: @@ -196992,18 +193061,18 @@ executable: HueBots.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: HueBots.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: HueBots.x86_64 type: default -'397420': +"397420": installDir: Hoyle Official Card Games Collection launch: - config: @@ -197016,35 +193085,35 @@ description: Launch executable: Hoyle Card Games.app type: none -'397430': +"397430": installDir: Zoombinis launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: Zoombinis.exe type: none - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: Zoombinis.exe type: none - config: - osarch: '64' + osarch: "64" oslist: macos description: Launch executable: Zoombinis.app type: none -'397440': +"397440": installDir: Lost Legends The Weeping Woman launch: - config: oslist: windows executable: LostLegends_TheWeepingWoman_CE.exe type: none -'397460': +"397460": installDir: The Jackbox Party Pack 2 launch: - config: @@ -197056,61 +193125,59 @@ description: Launch executable: The Jackbox Party Pack 2.app - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Launcher.sh type: none -'397500': +"397500": installDir: Labyronia RPG 2 launch: - config: oslist: windows executable: Game.exe type: default -'397540': +"397540": installDir: Borderlands 3 launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Play Oak (Shipping) - executable: OakGame\\Binaries\\Win64\\Borderlands3.exe + executable: "OakGame\\\\Binaries\\\\Win64\\\\Borderlands3.exe" type: none nameLocalized: japanese: ボーダーランズ3 koreana: 보더랜드 3 schinese: 无主之地3 tchinese: 邊緣禁地3 -'397550': +"397550": installDir: Deus Ex launch: - - executable: Revision\\System\\Revision.exe + - executable: "Revision\\\\System\\\\Revision.exe" type: default - config: betakey: TNM-Access - description: 'The Nameless Mod 2.0 [Workshop+Steam Overlay]' - executable: Revision\\TNM2\\TNM.exe + description: "The Nameless Mod 2.0 [Workshop+Steam Overlay]" + executable: "Revision\\\\TNM2\\\\TNM.exe" type: option1 - - arguments: '-hax0r' + - arguments: "-hax0r" config: betakey: private - description: 'The Nameless Mod 2.0 [+Steam Overlay]' - executable: Revision\\TNM2\\TNM.exe + description: "The Nameless Mod 2.0 [+Steam Overlay]" + executable: "Revision\\\\TNM2\\\\TNM.exe" type: option1 - config: betakey: stock description: Stock Revision - executable: System\\Revision.exe + executable: "System\\\\Revision.exe" type: option1 - config: betakey: 2.0-echelon - description: 'The Nameless Mod 2.0 [Workshop+Steam Overlay]' - description_loc: - english: 'The Nameless Mod 2.0 [Workshop+Steam Overlay]' - executable: Revision\\TNM2\\TNM.exe + description: "The Nameless Mod 2.0 [Workshop+Steam Overlay]" + executable: "Revision\\\\TNM2\\\\TNM.exe" type: option1 -'397570': +"397570": installDir: Shmadow launch: - config: @@ -197122,16 +193189,16 @@ executable: shmadow.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: shmadow.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: shmadow.x86_64 type: default -'397580': +"397580": installDir: Moonbase 332 launch: - config: @@ -197140,101 +193207,99 @@ executable: Moonbase 332.exe type: default - config: - ownsdlc: '611910' + ownsdlc: "611910" description: Endless Arcade executable: dlc.exe type: option1 - workingdir: \\DLC\\ -'397600': + workingdir: "\\\\DLC\\\\" +"397600": installDir: ViralEX launch: - config: oslist: windows executable: ViralEX.exe type: vr -'397620': {} -'397640': +"397620": {} +"397640": installDir: Nulldrifters launch: - config: oslist: windows executable: Nulldrifters.exe type: default -'397660': +"397660": installDir: BehindYou launch: - - arguments: '-fullscreen -VR' + - arguments: "-fullscreen -VR" config: oslist: windows description: VR Mode executable: WindowsNoEditor/FaceL.exe type: vr - - arguments: '-fullscreen' + - arguments: "-fullscreen" description: Desktop Mode executable: WindowsNoEditor/FaceL.exe type: default -'397670': +"397670": installDir: Run Run And Die launch: - config: oslist: windows executable: rrad.exe type: default -'397680': +"397680": installDir: FIREFIGHT RELOADED launch: - - arguments: '-steam -game firefightreloaded' + - arguments: "-steam -game firefightreloaded" config: oslist: windows description: FIREFIGHT RELOADED - description_loc: - english: FIREFIGHT RELOADED executable: fr.exe type: option1 - - arguments: '-steam -game firefightreloadedlockedalpha' + - arguments: "-steam -game firefightreloadedlockedalpha" config: oslist: windows - ownsdlc: '1324480' + ownsdlc: "1324480" description: FIREFIGHT RELOADED LOCKED ALPHA executable: fr.exe type: option3 - - arguments: '-steam -game firefightreloadedprebeta' + - arguments: "-steam -game firefightreloadedprebeta" config: oslist: windows - ownsdlc: '1324480' + ownsdlc: "1324480" description: FIREFIGHT RELOADED PRE-BETA executable: fr.exe type: option3 - - arguments: '-steam -game firefightreloadedbeta' + - arguments: "-steam -game firefightreloadedbeta" config: oslist: windows - ownsdlc: '1324480' + ownsdlc: "1324480" description: FIREFIGHT RELOADED BETA (0.2.0.2) executable: fr.exe type: option3 - - arguments: '-steam -game firefightreloadedpresteam' + - arguments: "-steam -game firefightreloadedpresteam" config: oslist: windows - ownsdlc: '1324480' + ownsdlc: "1324480" description: FIREFIGHT RELOADED FIRST MOD RELEASE executable: fr.exe type: option3 - - arguments: '-steam -game firefightreloadedsteamold' + - arguments: "-steam -game firefightreloadedsteamold" config: oslist: windows - ownsdlc: '1324480' + ownsdlc: "1324480" description: FIREFIGHT RELOADED FIRST STEAM RELEASE executable: fr.exe type: option3 -'397690': +"397690": installDir: HIIIPE launch: - config: oslist: windows executable: HIII.exe type: default -'397700': {} -'397720': +"397700": {} +"397720": installDir: RTK Maker launch: - config: @@ -197252,7 +193317,7 @@ type: none nameLocalized: japanese: 三国志ツクール -'397730': +"397730": installDir: Rescue Love Revenge launch: - config: @@ -197264,31 +193329,31 @@ executable: RLR.app type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: RLR.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: RLR.x86_64 type: none -'397740': +"397740": installDir: Hylics launch: - config: oslist: windows executable: Game.exe type: none -'397750': +"397750": installDir: Guided Meditation VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Guided Meditation VR.exe type: vr -'397760': +"397760": installDir: UWD launch: - config: @@ -197303,14 +193368,14 @@ oslist: linux executable: UrbanWarDefense.x86_64 type: default -'397770': +"397770": installDir: MeridianAgeofInvention launch: - config: oslist: windows executable: Meridian Age Of Invention.exe type: default -'397780': +"397780": installDir: WiseUseOfTime launch: - config: @@ -197325,63 +193390,63 @@ oslist: linux executable: WiseUseOfTime type: none -'397800': +"397800": installDir: BattleQuiz launch: - executable: Battle Quiz.exe type: none -'397810': +"397810": installDir: Super Bomb Rush launch: - config: oslist: windows executable: SBR.exe type: default -'397820': +"397820": installDir: LS2016 launch: - config: oslist: windows executable: LetsSing2016.exe type: none -'397830': +"397830": installDir: Zxill A Legend of Time launch: - config: oslist: windows executable: Zxill - A Legend of Time.exe type: none -'397840': +"397840": installDir: Car Mechanic Manager launch: - executable: CarMechanicManager.exe type: none -'397850': +"397850": installDir: SonderEP01 launch: - config: oslist: windows executable: SonderEP01.exe type: none -'397860': +"397860": installDir: Carnivore Land launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: CarnivoreLand.exe type: none - config: - osarch: '64' + osarch: "64" oslist: macos executable: CarnivoreLand.app type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: CarnivoreLand.x86_64 type: none -'397870': +"397870": installDir: ArcaneSorcery launch: - config: @@ -197392,10 +193457,10 @@ oslist: macos executable: Arcane Sorcery.app type: default -'397900': +"397900": installDir: Business Tour launch: - - arguments: '-logFile output_log.txt' + - arguments: "-logFile output_log.txt" config: oslist: windows executable: BusinessTour.exe @@ -197404,14 +193469,14 @@ oslist: macos executable: BusinessTour.app type: default -'397940': +"397940": installDir: No_Time_To_Live launch: - config: oslist: windows executable: NoTimeToLive.exe type: default -'397950': +"397950": installDir: ClusterTruck launch: - config: @@ -197423,38 +193488,38 @@ executable: Clustertruck.app type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: Clustertruck.x86_64 type: none -'397960': +"397960": installDir: Mystery Expedition Prisoners of Ice launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: MysteryExpeditionPrisonersOfIce.exe type: default -'397970': +"397970": installDir: Abandoned Chestnut Lodge Asylum launch: - config: oslist: windows executable: Abandoned.exe type: default -'397980': {} -'397990': +"397980": {} +"397990": installDir: WoofBlaster launch: - config: oslist: windows executable: WoofBlaster.exe type: default -'3980': +"3980": installDir: CivCity Rome launch: - executable: CivCity Rome.exe -'39800': +"39800": installDir: Nation Red launch: - config: @@ -197469,42 +193534,38 @@ oslist: linux executable: NationRed type: none -'398000': +"398000": installDir: Little Big Adventure 2 launch: - - arguments: '-conf LBA2.conf -noconsole' - executable: DOSBOX\\DOSBox.exe + - arguments: "-conf LBA2.conf -noconsole" + executable: "DOSBOX\\\\DOSBox.exe" type: none - config: betakey: classic3.1.x oslist: windows description: TLBA2 Classic Edition - beta - description_loc: - english: TLBA2 Classic Edition - beta executable: TLBA2C.exe - config: betakey: retro3.1.x oslist: windows description: TLBA2 Original Edition - beta - description_loc: - english: TLBA2 Original Edition - beta executable: TLBA2.exe -'398020': +"398020": installDir: Colony Assault launch: - config: oslist: windows executable: ColonyAssaultLauncher.exe type: default -'398030': +"398030": installDir: Old School Musical launch: - config: oslist: windows executable: osm.exe type: default -'398070': {} -'398100': +"398070": {} +"398100": installDir: Highschool Romance launch: - config: @@ -197522,14 +193583,14 @@ description: Launch executable: HSRomance.sh type: none -'398110': +"398110": installDir: Reigning Cats launch: - config: oslist: windows executable: Reigning Cats.exe type: default -'398120': +"398120": installDir: AGPEpica launch: - executable: Epica.exe @@ -197538,14 +193599,14 @@ oslist: linux executable: Epica.sh type: none -'398140': +"398140": installDir: Ino launch: - config: oslist: windows executable: Game.exe type: default -'398150': +"398150": installDir: Ace of Protectors launch: - config: @@ -197560,78 +193621,76 @@ oslist: linux executable: runner type: default -'398160': {} -'398170': +"398160": {} +"398170": installDir: Evochron Legacy launch: - executable: EvochronLegacySE.exe type: none - - arguments: '-vrenable' + - arguments: "-vrenable" description: VR - description_loc: - english: VR executable: EvochronLegacySE.exe type: vr -'398180': +"398180": installDir: Euclidean launch: - - arguments: '-show-screen-selector -vrmode None' + - arguments: "-show-screen-selector -vrmode None" config: oslist: windows description: 32 & 64 bit Windows Launch executable: Euclidean.exe type: default - - arguments: '-vrmode OpenVR' + - arguments: "-vrmode OpenVR" config: oslist: windows executable: Euclidean.exe type: vr - - arguments: '-show-screen-selector -vrmode None' + - arguments: "-show-screen-selector -vrmode None" config: oslist: linux executable: Euclidean.exe type: default - - arguments: '-vrmode OpenVR' + - arguments: "-vrmode OpenVR" config: oslist: linux executable: Euclidean.exe type: vr -'398210': +"398210": installDir: BlackShadows launch: - config: oslist: windows - executable: Binaries\\Win32\\UDK.exe + executable: "Binaries\\\\Win32\\\\UDK.exe" type: none -'398250': +"398250": installDir: Moonstrider launch: - config: oslist: windows executable: Moonstrider.exe type: none -'398260': +"398260": installDir: Eyestorm launch: - config: oslist: windows executable: Eyestorm.exe type: default -'398450': +"398450": installDir: Absent launch: - config: oslist: windows executable: Absent.exe type: default -'398460': +"398460": installDir: Mooch launch: - config: oslist: windows executable: nw.exe type: none -'398480': +"398480": installDir: Louie Cooks launch: - config: @@ -197643,13 +193702,13 @@ oslist: linux executable: LouieCooks.x86 type: default - - arguments: '-vrmode oculus' + - arguments: "-vrmode oculus" config: oslist: windows description: VR-Mode executable: LouieCooks.exe type: othervr -'398530': +"398530": installDir: GhostCleaner launch: - config: @@ -197660,40 +193719,40 @@ oslist: macos executable: GCleaner.app/Contents/MacOS/GCleaner type: none -'398620': +"398620": installDir: Living Legends 2 Pack launch: - executable: LivingLegendsLauncher.exe type: none -'398630': - installDir: Twisted Lands Trilogy Collector's Edition +"398630": + installDir: "Twisted Lands Trilogy Collector's Edition" launch: - config: oslist: windows executable: TwistedLands3in1.exe type: none -'398640': +"398640": installDir: Bowl Bound College Football launch: - config: oslist: windows executable: bbcf.exe type: none -'398670': +"398670": installDir: Shadow Heroes Vengeance In Flames launch: - config: oslist: windows executable: ShadowHeroes.exe type: default -'398680': +"398680": installDir: AceOfWords launch: - config: oslist: windows executable: AceOfWords.exe type: none -'398710': +"398710": installDir: Timberman launch: - config: @@ -197708,7 +193767,7 @@ oslist: linux executable: Timberman.x86_64 type: default -'398830': +"398830": installDir: b2gGOGGLES launch: - config: @@ -197723,7 +193782,7 @@ oslist: linux executable: goggles.x86 type: none -'398840': +"398840": installDir: War Of Beach launch: - config: @@ -197732,9 +193791,9 @@ type: default - config: oslist: macos - executable: war.app\\Contents\\MacOS\\war + executable: "war.app\\\\Contents\\\\MacOS\\\\war" type: default -'398850': +"398850": installDir: Epistory launch: - config: @@ -197742,12 +193801,12 @@ executable: Epistory.exe type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: Epistory.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: Epistory.x86_64 type: none @@ -197755,7 +193814,7 @@ oslist: macos executable: Epistory.app/Contents/MacOS/Epistory type: none -'398890': +"398890": installDir: ZombieGotchi launch: - config: @@ -197764,19 +193823,19 @@ type: default - config: oslist: macos - executable: zombie.app\\Contents\\MacOS\\zombie + executable: "zombie.app\\\\Contents\\\\MacOS\\\\zombie" type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: zombie.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: zombie.x86_64 type: default -'398900': +"398900": installDir: Fjall launch: - config: @@ -197791,21 +193850,21 @@ oslist: macos executable: FjallGame.sh type: default -'398920': +"398920": installDir: Tisnart Tiles launch: - config: oslist: windows executable: Tisnart Tiles.exe type: default -'398930': +"398930": installDir: MacGuffin launch: - config: oslist: windows - executable: MacGuffin\\MacGuffin.exe + executable: "MacGuffin\\\\MacGuffin.exe" type: default -'398940': +"398940": installDir: Respawn Man launch: - config: @@ -197814,31 +193873,31 @@ type: default - config: oslist: macos - executable: Respawn Man.app\\Contents\\MacOS\\Mac_Runner + executable: "Respawn Man.app\\\\Contents\\\\MacOS\\\\Mac_Runner" type: default - config: oslist: linux executable: run.sh type: default -'398950': +"398950": installDir: The End of an Age Fading Remnants launch: - executable: game.exe type: none -'398960': +"398960": installDir: Hoven the Sages Spinel launch: - config: oslist: windows executable: Game.exe type: default -'398970': +"398970": installDir: Fasaria World Online launch: - description: Fasaria World Online executable: fasariaworldonline.exe type: option1 - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows description: Fasaria World Achievements Center @@ -197846,10 +193905,10 @@ type: option2 - config: oslist: windows - description: 'Fasaria World: Ancients of Moons MMORPG' + description: "Fasaria World: Ancients of Moons MMORPG" executable: Fasaria_World_MMORPG.exe type: option2 -'398980': +"398980": installDir: Without Within 2 launch: - config: @@ -197864,11 +193923,11 @@ oslist: linux executable: wowi2.sh type: default -'39900': +"39900": installDir: Coniclysm launch: - executable: Coniclysm.exe -'399000': +"399000": installDir: Porradaria Upgrade launch: - config: @@ -197879,15 +193938,15 @@ oslist: linux executable: runner type: default -'399040': +"399040": installDir: Legends of Solitaire Curse of the Dragons launch: - config: oslist: windows executable: LoSCotD.exe type: none -'399070': - installDir: Dragon's Wake +"399070": + installDir: "Dragon's Wake" launch: - config: oslist: windows @@ -197901,7 +193960,7 @@ oslist: linux executable: Dragon.x86 type: default -'399090': +"399090": installDir: ITTGOFTSS launch: - config: @@ -197912,29 +193971,29 @@ oslist: linux executable: ITTGOFTSS_LINUX.x86_64 type: default -'399100': +"399100": installDir: Spheroid launch: - config: oslist: windows - executable: 'Spheroid[FSS].exe' + executable: "Spheroid[FSS].exe" type: default -'399120': +"399120": installDir: Prospekt launch: - - arguments: '-game prospekt' + - arguments: "-game prospekt" config: oslist: windows executable: hl2.exe type: default -'399130': +"399130": installDir: Massive Cleavage vs Zombies Awesome Edition launch: - config: oslist: windows executable: MassiveCleavageVsZombies.exe type: default -'399140': +"399140": installDir: Straima launch: - config: @@ -197942,19 +194001,19 @@ description: Launch executable: Straima.exe type: none -'399180': +"399180": installDir: Actua Golf 3 launch: - executable: Actua Golf.exe type: none -'399230': +"399230": installDir: Kitchen Simulator 2015 launch: - config: oslist: windows executable: Kitchen_Simulator.exe type: none -'399240': +"399240": installDir: XNemesis launch: - config: @@ -197971,22 +194030,22 @@ description: Game Directly Without Launcher executable: XNemesis.exe type: option3 -'399260': +"399260": installDir: AliceMomRescue launch: - config: oslist: windows executable: AliceMomRescue.exe type: default -'399270': {} -'399420': +"399270": {} +"399420": installDir: The Prism launch: - config: oslist: windows executable: The_Prism.exe type: default -'399430': +"399430": installDir: Tinboy launch: - config: @@ -198001,7 +194060,7 @@ oslist: linux executable: Tinboy.x86_64 type: none -'399520': +"399520": installDir: Comedy Quest launch: - config: @@ -198009,42 +194068,42 @@ description: Launch executable: winsetup.exe type: none -'399530': +"399530": installDir: Hyspherical 2 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: game.exe type: none - config: oslist: macos - executable: game.app\\Contents\\MacOS\\game + executable: "game.app\\\\Contents\\\\MacOS\\\\game" type: none - config: - osarch: '32' + osarch: "32" oslist: windows executable: game_x86.exe type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: game.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: game.x86_64 type: none -'399580': {} -'399600': +"399580": {} +"399600": installDir: I and Me launch: - config: oslist: windows executable: I and Me.exe type: none -'399640': +"399640": installDir: Flamebreak launch: - config: @@ -198059,15 +194118,15 @@ oslist: linux executable: flamebreak type: default -'399660': +"399660": installDir: BattleBattalions launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: ClientLauncherRS.exe type: default -'399670': +"399670": installDir: Game Corp DX launch: - config: @@ -198087,40 +194146,40 @@ type: default - config: oslist: windows - ownsdlc: '502490' - description: 'Play Thank You: The Game 3' + ownsdlc: "502490" + description: "Play Thank You: The Game 3" executable: thank_you3/ThankYou_TheGame3.exe type: none - config: oslist: macos - ownsdlc: '502490' - description: 'Play Thank You: The Game 3' + ownsdlc: "502490" + description: "Play Thank You: The Game 3" executable: thank_you3/ThankYou_TheGame3.app type: none - config: oslist: linux - ownsdlc: '502490' - description: 'Play Thank You: The Game 3' + ownsdlc: "502490" + description: "Play Thank You: The Game 3" executable: thank_you3/ThankYou_TheGame3.x86 type: none -'399720': +"399720": installDir: XO launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: XO.exe type: default - config: oslist: macos - executable: Contents\\MacOS\\XO + executable: "Contents\\\\MacOS\\\\XO" type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: XO.x86_64 type: none -'399780': +"399780": installDir: Expand launch: - config: @@ -198129,29 +194188,29 @@ type: default - config: oslist: macos - executable: ./Expand.app/Contents/MacOS/Expand + executable: "./Expand.app/Contents/MacOS/Expand" type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: runExpand type: default -'399790': +"399790": installDir: Elements of Power launch: - config: oslist: windows executable: EQLauncher.exe type: default -'399810': +"399810": installDir: Call of Cthulhu launch: - executable: CallOfCthulhu.exe type: none -'399820': +"399820": installDir: Kopanito All-Stars Soccer launch: - - arguments: ' --in-process-gpu --disable-direct-composition' + - arguments: " --in-process-gpu --disable-direct-composition" config: oslist: windows executable: kopanito.exe @@ -198164,14 +194223,14 @@ oslist: linux executable: kopanito.sh type: default -'399880': +"399880": installDir: Amos From Outer Space launch: - config: oslist: windows executable: AmosFromOuterSpace.exe type: default -'399890': +"399890": installDir: The Secret Order 2 Masked Intent launch: - config: @@ -198180,13 +194239,13 @@ executable: TheSecretOrder1.exe type: none - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: TheSecretOrder1_i386 type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: TheSecretOrder1_amd64 @@ -198196,7 +194255,7 @@ description: Launch executable: mac_steam.app/Contents/MacOS/mac_steam type: none -'399900': +"399900": installDir: Mad Snowboarding launch: - config: @@ -198207,7 +194266,7 @@ oslist: linux executable: MadSnowboarding.x86 type: default -'399910': +"399910": installDir: Ookibloks launch: - config: @@ -198216,89 +194275,87 @@ type: default - config: oslist: macos - executable: Ookibloks_Steam.app\\Contents\\MacOS\\Ookibloks_Steam + executable: "Ookibloks_Steam.app\\\\Contents\\\\MacOS\\\\Ookibloks_Steam" type: default -'399920': +"399920": installDir: Blowy Fish launch: - config: oslist: windows executable: BlowyFish.exe type: default -'40': +"40": installDir: Half-Life launch: - - arguments: '-steam -game dmc' + - arguments: "-steam -game dmc" config: oslist: windows executable: hl.exe - vacmodulefilename: resource\\sourceinit.dat - - arguments: '-steam -game dmc' + - arguments: "-steam -game dmc" config: oslist: macos executable: hl.sh - vacmodulefilename: resource\\sourceinit_macos.dat - - arguments: '-steam -game dmc' + - arguments: "-steam -game dmc" config: oslist: linux executable: hl.sh -'400': +"400": installDir: Portal launch: - - arguments: '-game portal -steam' + - arguments: "-game portal -steam" config: oslist: windows executable: hl2.exe workingdir: bin - - arguments: '-game portal -steam' + - arguments: "-game portal -steam" config: oslist: macos executable: hl2.sh - - arguments: '-game portal -steam' + - arguments: "-game portal -steam" config: oslist: linux executable: hl2.sh -'4000': +"4000": installDir: GarrysMod launch: - - arguments: '-steam -game garrysmod' + - arguments: "-steam -game garrysmod" config: oslist: windows - description: Play Garry's Mod + description: "Play Garry's Mod" executable: hl2.exe - - arguments: '-steam -game garrysmod' + - arguments: "-steam -game garrysmod" config: oslist: macos - description: Play Garry's Mod + description: "Play Garry's Mod" executable: hl2_osx - - arguments: '-steam -game garrysmod' + - arguments: "-steam -game garrysmod" config: oslist: linux - description: Play Garry's Mod + description: "Play Garry's Mod" executable: hl2.sh - - arguments: '-steam -game garrysmod' + - arguments: "-steam -game garrysmod" config: betakey: x86-64 oslist: windows - description: Launch Garry's Mod (32-bit) + description: "Launch Garry's Mod (32-bit)" executable: bin/gmod.exe type: none - - arguments: '-steam -game garrysmod' + - arguments: "-steam -game garrysmod" config: betakey: x86-64 - osarch: '64' + osarch: "64" oslist: windows - description: Launch Garry's Mod (64-bit) + description: "Launch Garry's Mod (64-bit)" executable: bin/win64/gmod.exe type: none - - arguments: '-steam -game garrysmod' + - arguments: "-steam -game garrysmod" config: betakey: chromium oslist: windows - description: Launch Garry's Mod (32-bit) + description: "Launch Garry's Mod (32-bit)" executable: bin/gmod.exe type: none -'400020': +"400020": installDir: Atari Vault launch: - config: @@ -198313,7 +194370,7 @@ oslist: macos executable: AtariVault.app type: none -'400030': +"400030": installDir: Cloney launch: - config: @@ -198328,26 +194385,26 @@ oslist: linux executable: Cloney type: default - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" config: oslist: macos description: Configure Resolution executable: Cloney.app type: config - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" config: oslist: windows description: Configure Resolution executable: cloney.exe type: config - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" config: oslist: linux description: Configure Resolution executable: Cloney type: config -'400070': {} -'400080': +"400070": {} +"400080": installDir: Out of Space launch: - config: @@ -198359,16 +194416,16 @@ executable: Out of Space.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Out of Space.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Out of Space.x86_64 type: default -'400110': +"400110": installDir: ElseHeartbreak launch: - config: @@ -198383,16 +194440,16 @@ oslist: linux executable: ElseHeartbreak type: none -'400130': +"400130": installDir: Freedom Poopie launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: FreedomPoopiePC64.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: FreedomPoopiePC32.exe type: default @@ -198402,13 +194459,13 @@ type: default - config: oslist: linux - executable: FreedomPoopiePC\\Binaries\\Linux\\FreedomPoopieLinux + executable: "FreedomPoopiePC\\\\Binaries\\\\Linux\\\\FreedomPoopieLinux" type: default -'400160': +"400160": installDir: Concrete Jungle launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: Concrete Jungle.exe type: default @@ -198422,20 +194479,20 @@ description: Wine Version executable: Wine/ConcreteJungle.app type: option2 -'400170': +"400170": installDir: The Incredible Adventures of Van Helsing Final Cut launch: - config: oslist: windows - description: 'Launch The Incredible Adventures of Van Helsing: Final Cut' + description: "Launch The Incredible Adventures of Van Helsing: Final Cut" executable: VanHelsing.exe type: none - config: oslist: macos - description: 'Launch The Incredible Adventures of Van Helsing: Final Cut' + description: "Launch The Incredible Adventures of Van Helsing: Final Cut" executable: TIAOVHFC.app type: none -'400180': +"400180": installDir: Okhlos launch: - config: @@ -198447,37 +194504,37 @@ executable: Okhlos.app type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: Okhlos.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: Okhlos.x86_64 type: none -'400200': +"400200": installDir: The Mystery of a Lost Planet launch: - config: oslist: windows executable: Planet.exe type: default -'400220': +"400220": installDir: Bass Blocks launch: - config: oslist: windows executable: BassBlocks.exe type: none -'400230': +"400230": installDir: StarForce 2193 launch: - config: oslist: windows executable: StarForce2193.exe type: default -'400240': +"400240": installDir: TheDeer launch: - config: @@ -198495,7 +194552,7 @@ description: Launch executable: TheDeer.x86 type: none -'400250': +"400250": installDir: ParadiseIsland launch: - config: @@ -198513,7 +194570,7 @@ description: Launch executable: ParadiseIsland.x86_64 type: none -'400280': +"400280": installDir: Lizard launch: - config: @@ -198521,12 +194578,12 @@ executable: lizard_steam.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: lizard_steam64 type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: lizard_steam32 type: default @@ -198534,15 +194591,13 @@ oslist: macos executable: lizard_steam64.app/Contents/MacOS/lizard_steam64 type: default -'400350': +"400350": installDir: Battle Fleet Ground Assault launch: - - arguments: \"-vrmode none\" + - arguments: "\\\"-vrmode none\\\"" config: oslist: windows - description: 'Launch Battle Fleet: Ground Assault' - description_loc: - english: 'Launch Battle Fleet: Ground Assault' + description: "Launch Battle Fleet: Ground Assault" executable: BattleFleetGroundAssault.exe type: none - config: @@ -198550,39 +194605,35 @@ description: Launch executable: BattleFleetGroundAssault.app type: none - - arguments: \"-vrmode OpenVR\" + - arguments: "\\\"-vrmode OpenVR\\\"" config: oslist: windows - description: 'Battle Fleet: Ground Assault VR' - description_loc: - english: 'Battle Fleet: Ground Assault VR' + description: "Battle Fleet: Ground Assault VR" executable: BattleFleetGroundAssault.exe type: vr - - arguments: \"-vrmode OpenVR\" + - arguments: "\\\"-vrmode OpenVR\\\"" config: betakey: beta oslist: windows - description: 'Battle Fleet: Ground Assault VR' - description_loc: - english: 'Battle Fleet: Ground Assault VR' + description: "Battle Fleet: Ground Assault VR" executable: BattleFleetGroundAssault.exe type: vr -'400360': - installDir: Adam's Venture Orgins +"400360": + installDir: "Adam's Venture Orgins" launch: - config: oslist: windows executable: AV_Origins.exe type: none -'400370': +"400370": installDir: Normality launch: - - arguments: ' -conf dosboxNORMAL.conf -conf dosboxNORMAL_single.conf' + - arguments: " -conf dosboxNORMAL.conf -conf dosboxNORMAL_single.conf" description: Launch executable: dosbox/dosbox.exe type: none workingdir: dosbox -'400380': +"400380": installDir: Tactical Soccer The New Season launch: - config: @@ -198593,30 +194644,30 @@ oslist: macos executable: TacticalSoccerTheNewSeason.app type: default -'400410': +"400410": installDir: OASE - Other Age Second Encounter launch: - config: oslist: windows executable: oase.exe type: none -'400430': +"400430": installDir: The Vanishing of Ethan Carter Redux launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch Game executable: EthanCarter.exe type: default - - arguments: '-cleanhal' + - arguments: "-cleanhal" config: - osarch: '64' + osarch: "64" oslist: windows description: Launch with default settings executable: EthanCarter.exe type: safemode -'400450': +"400450": installDir: NeuroVoider launch: - config: @@ -198634,14 +194685,14 @@ description: Launch executable: NeuroVoider type: none -'400470': +"400470": installDir: The Seven Years War (1756-1763) launch: - config: oslist: windows executable: thesevenyearswar.exe type: default -'400500': +"400500": installDir: MadOutIceStorm launch: - config: @@ -198651,14 +194702,14 @@ type: none workingdir: Windows - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: Linux/Launcher type: none workingdir: Linux - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Linux64/Launcher @@ -198669,7 +194720,7 @@ description: Launch executable: MadOut.app type: none -'400510': +"400510": installDir: FinalTake launch: - config: @@ -198684,16 +194735,16 @@ oslist: linux executable: FinalTake.x86 type: none -'400560': +"400560": installDir: WeaponizedChess launch: - config: - osarch: '64' + osarch: "64" oslist: linux executable: start type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: win_wc.exe type: default @@ -198701,7 +194752,7 @@ oslist: macos executable: WeaponizedChess.app type: default -'400570': +"400570": installDir: WarpBall launch: - config: @@ -198716,7 +194767,7 @@ oslist: linux executable: game.exe type: default -'400580': +"400580": installDir: Black Closet launch: - config: @@ -198731,7 +194782,7 @@ oslist: macos executable: BlackCloset.app type: default -'400630': +"400630": installDir: Wuppo launch: - config: @@ -198742,7 +194793,7 @@ oslist: macos executable: Wuppo.app type: none -'400660': +"400660": installDir: Reverse Crawl launch: - config: @@ -198755,51 +194806,45 @@ description: Reverse Crawl (Mac OS X) executable: ReverseCrawl.app type: default -'400710': +"400710": installDir: Bleeding Blocks launch: - config: oslist: windows executable: BleedinBlocks.exe type: none -'400740': +"400740": installDir: VERGELostchapter launch: - config: oslist: windows executable: VERGE.exe type: none -'400750': +"400750": installDir: Call to Arms - Gates of Hell launch: - description: Launch executable: binaries/x64/call_to_arms.exe type: none - description: Editor - description_loc: - english: Editor executable: binaries/x64/call_to_arms_ed.exe type: none - - arguments: '-safe' + - arguments: "-safe" description: Safe mode - description_loc: - english: Safe mode executable: binaries/x64/call_to_arms.exe type: none - - arguments: '-no_mods' + - arguments: "-no_mods" description: Safe mode (no mods) - description_loc: - english: Safe mode (no mods) executable: binaries/x64/call_to_arms.exe type: none -'400760': +"400760": installDir: Atomic VR launch: - config: oslist: windows - executable: ZenBlade\\ZenBlade.exe + executable: "ZenBlade\\\\ZenBlade.exe" type: vr -'400790': +"400790": installDir: The Juicer launch: - config: @@ -198807,18 +194852,18 @@ description: Launch executable: TheJuicer.exe type: none -'400800': +"400800": installDir: MXGP2 - The Official Motocross Videogame launch: - config: - osarch: '32' + osarch: "32" executable: MXGP_2.exe type: none - config: - osarch: '64' + osarch: "64" executable: MXGP_2X64.exe type: none -'400880': +"400880": installDir: Ultimate Rock Crawler launch: - config: @@ -198833,54 +194878,54 @@ oslist: linux executable: ultimaterockcrawler.x86 type: default -'400910': +"400910": installDir: Rabi-Ribi launch: - description: Start Rabi-Ribi executable: rabiribi.exe type: default - - arguments: '-safemode' + - arguments: "-safemode" description: Reset all settings (-safemode) executable: rabiribi.exe type: none - - arguments: '-nopreload' + - arguments: "-nopreload" description: No Preload / Fix black screen (-nopreload) executable: rabiribi.exe type: none - - arguments: '-softsound' + - arguments: "-softsound" description: Fix random noise problem (-softsound) executable: rabiribi.exe type: none - - arguments: '-nofpslimit' + - arguments: "-nofpslimit" description: Fix random FPS drop (-nofpslimit) executable: rabiribi.exe type: none - - arguments: '-fullload' + - arguments: "-fullload" description: Preload Everything (-fullload) executable: rabiribi.exe type: none - - arguments: '-monitor2' + - arguments: "-monitor2" description: Launch in second monitor (-monitor2) executable: rabiribi.exe type: none -'400940': +"400940": installDir: Budget Cuts launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Budget Cuts.exe type: vr -'40100': +"40100": installDir: Supreme Commander 2 launch: - config: oslist: windows - executable: bin\\SupremeCommander2.exe + executable: "bin\\\\SupremeCommander2.exe" - config: oslist: macos executable: Supreme Commander 2.app -'401120': +"401120": installDir: Anode launch: - config: @@ -198894,25 +194939,25 @@ executable: anode.app type: none - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: anode.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: anode.x86_64 type: none -'401170': +"401170": installDir: Birth of Shadows launch: - config: oslist: windows executable: BirthOfShadows.exe type: default -'401190': +"401190": installDir: Dinosaur Hunt Africa Contract launch: - config: @@ -198927,7 +194972,7 @@ oslist: linux executable: DinosaurHuntLinux.x86 type: default -'401200': +"401200": installDir: Invisible Apartment 2 launch: - config: @@ -198935,7 +194980,7 @@ executable: ia2.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: ia2.sh type: default @@ -198943,21 +194988,21 @@ oslist: macos executable: ia2.app/Contents/MacOS/ia2 type: default -'401210': +"401210": installDir: Puzzle Sages launch: - config: oslist: windows executable: Game.exe type: default -'401250': +"401250": installDir: Zulu Response launch: - config: oslist: windows - executable: \\Binaries\\Win32\\UDK.exe + executable: "\\\\Binaries\\\\Win32\\\\UDK.exe" type: default -'401280': +"401280": installDir: NubsAdventure launch: - config: @@ -198972,26 +195017,26 @@ oslist: linux executable: Nubs type: none -'401290': +"401290": installDir: Nusakana launch: - config: oslist: windows executable: Game.exe type: default -'401330': +"401330": installDir: Akuatica launch: - - arguments: '-windowed' + - arguments: "-windowed" config: oslist: windows executable: Akuatica.exe type: default - config: oslist: macos - executable: Akuatica.app\\Contents\\MacOS\\Akuatica + executable: "Akuatica.app\\\\Contents\\\\MacOS\\\\Akuatica" type: default -'401360': +"401360": installDir: The Aquatic Adventure of the Last Human launch: - config: @@ -199004,16 +195049,16 @@ type: none - config: oslist: macos - executable: TheAquaticAdventureOfTheLastHuman.app\\Contents\\MacOS\\Mac_Runner + executable: "TheAquaticAdventureOfTheLastHuman.app\\\\Contents\\\\MacOS\\\\Mac_Runner" type: none -'401420': +"401420": installDir: Match 3 Revolution launch: - config: oslist: windows executable: MATCH3 REVOLUTION.exe type: none -'401510': +"401510": installDir: Lavapools launch: - config: @@ -199030,25 +195075,25 @@ description: Launch Lavapools Linux Version executable: Lavapools.x86_64 type: default -'401550': +"401550": installDir: Legena Union Tides launch: - config: oslist: windows executable: Legena - Union Tides.exe type: default -'401560': {} -'401680': +"401560": {} +"401680": installDir: POSTAL Redux launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: POSTAL Redux (Win64) executable: PostalREDUX.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: POSTAL Redux (Linux) executable: PostalREDUX.sh @@ -199058,17 +195103,17 @@ description: POSTAL Redux (macOS) executable: PostalREDUX.app type: default -'401690': +"401690": installDir: Life in Bunker launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Windows 32 executable: lib.exe type: none - config: - osarch: '64' + osarch: "64" oslist: windows description: Windows 64 executable: lib.exe @@ -199079,18 +195124,18 @@ executable: lib.app type: none - config: - osarch: '32' + osarch: "32" oslist: linux description: Linux 32 executable: lib.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: Linux 64 executable: lib.x86_64 type: none -'401710': +"401710": installDir: Flinthook launch: - config: @@ -199099,30 +195144,30 @@ type: default - config: oslist: linux - executable: ./Flinthook + executable: "./Flinthook" type: none - config: oslist: macos description: Flinthook executable: Flinthook.app/Contents/MacOS/Flinthook type: none - - arguments: '-singlethread -singlethreadsaving' + - arguments: "-singlethread -singlethreadsaving" config: oslist: macos description: Flinthook (Singlethreaded Mode) executable: Flinthook.app/Contents/MacOS/Flinthook type: none -'401780': +"401780": installDir: Driveby Gangster launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Driveby Gangster.exe type: default - - arguments: '-safe' + - arguments: "-safe" config: - osarch: '64' + osarch: "64" oslist: windows executable: Driveby Gangster.exe type: safemode @@ -199130,7 +195175,7 @@ oslist: macos executable: Driveby Gangster.app/Contents/MacOS/Driveby Gangster type: default -'401800': +"401800": installDir: Bitku launch: - config: @@ -199141,7 +195186,7 @@ oslist: macos executable: Bitku.app type: default -'401810': +"401810": installDir: Poi launch: - config: @@ -199156,24 +195201,24 @@ oslist: linux executable: Poi.x86 type: default -'401820': +"401820": installDir: Fated launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Fated Game executable: Fated.exe type: vr -'401840': +"401840": installDir: ChargeShot launch: - config: oslist: windows description: Release Build - executable: \\windows_content\\ChargeShot.exe + executable: "\\\\windows_content\\\\ChargeShot.exe" type: default -'401890': +"401890": installDir: ARSLAN THE WARRIORS OF LEGEND launch: - config: @@ -199181,10 +195226,10 @@ description: Configuration and Launch executable: Config.exe type: none - workingdir: .\\ + workingdir: ".\\\\" nameLocalized: japanese: アルスラーン戦記×無双 -'401910': +"401910": installDir: Darknet launch: - description: Launch Darknet Non-VR Version @@ -199196,7 +195241,7 @@ - description: Launch Darknet Oculus Rift Version executable: DarknetRift.exe type: default -'401970': +"401970": installDir: Hypatia launch: - arguments: OSS=Steam @@ -199215,36 +195260,36 @@ oslist: linux executable: hypatia.sh type: default -'40200': +"40200": installDir: ItzaBitza launch: - executable: ItzaBitza.exe -'402000': +"402000": installDir: The Room of Black & White launch: - config: oslist: windows executable: The room of black & white.exe type: default -'402020': +"402020": installDir: The Park launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: AtlanticIslandPark\\Binaries\\Win64\\ThePark.exe + executable: "AtlanticIslandPark\\\\Binaries\\\\Win64\\\\ThePark.exe" type: default - config: - osarch: '64' + osarch: "64" oslist: macos executable: AtlanticIslandPark.app/Contents/MacOS/AtlanticIslandPark type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: AtlanticIslandPark/Binaries/Linux/AtlanticIslandPark-Linux-Shipping type: default -'402030': +"402030": installDir: Zenohell launch: - config: @@ -199252,7 +195297,7 @@ description: Launch Zenohell (Zenodyne II) executable: Zenohell.exe type: default -'402040': +"402040": installDir: The Guest launch: - config: @@ -199263,7 +195308,7 @@ oslist: macos executable: TheGuestMac.app type: none -'402060': +"402060": installDir: Californium launch: - config: @@ -199274,24 +195319,24 @@ oslist: macos executable: californium.app type: default -'402080': +"402080": installDir: JumpHead_Battle4Fun launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: JumpHead_Battle4Fun_x86(64).exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: JumpHead_Battle4Fun_x86(32).exe type: default -'40210': +"40210": installDir: ItzaZoo launch: - executable: ItzaZoo.exe -'402120': +"402120": installDir: Deathstate launch: - config: @@ -199300,25 +195345,25 @@ type: default - config: oslist: macos - executable: Deathstate.app\\Contents\\MacOS\\Deathstate + executable: "Deathstate.app\\\\Contents\\\\MacOS\\\\Deathstate" type: default -'402130': +"402130": installDir: FlatOut 4 Total Insanity launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch game executable: Flatout.exe type: default -'402150': +"402150": installDir: String Theory launch: - config: oslist: windows executable: StringTheory.exe type: default -'402160': +"402160": installDir: Star Command Galaxies launch: - config: @@ -199326,28 +195371,28 @@ executable: StarCommandGalaxies.app type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: StarCommandGalaxies.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: StarCommandGalaxies.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: StarCommandGalaxies.x86 type: default -'402170': +"402170": installDir: Puzzle Ball launch: - config: oslist: windows executable: Puzzle Ball.exe type: default -'402180': +"402180": installDir: Sakura Swim Club launch: - config: @@ -199362,14 +195407,14 @@ oslist: macos executable: Sakura Swim Club.app type: default -'402190': +"402190": installDir: Gamer Simulator launch: - config: oslist: windows executable: GamerSimulator.exe type: default -'402210': +"402210": installDir: Airport Madness Time Machine launch: - config: @@ -199380,45 +195425,45 @@ oslist: macos executable: AMTM.app type: none -'402220': +"402220": installDir: Lift It launch: - config: oslist: windows executable: Lift It.exe type: default -'402260': +"402260": installDir: Dead Secret launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Dead Secret.exe type: default - config: oslist: macos - executable: Dead Secret.app\\Contents\\MacOS\\Dead Secret + executable: "Dead Secret.app\\\\Contents\\\\MacOS\\\\Dead Secret" type: default - config: - osarch: '64' + osarch: "64" oslist: windows description: Vive Version - executable: VR\\Dead Secret_vive.exe + executable: "VR\\\\Dead Secret_vive.exe" type: vr -'402280': +"402280": installDir: SNIPER BLACKLIST launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SniperBlacklist.exe type: default -'402300': +"402300": installDir: Dungeon Manager ZV launch: - executable: DungeonManagerZV.exe type: none -'402310': +"402310": installDir: Overfall launch: - config: @@ -199430,16 +195475,16 @@ executable: Overfall.app/Contents/MacOS/Overfall type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Overfall.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Overfall.x86 type: default -'402330': +"402330": installDir: Press X to Not Die launch: - config: @@ -199454,14 +195499,14 @@ oslist: linux executable: Press X to Not Die type: default -'402340': +"402340": installDir: BlueRider launch: - config: oslist: windows executable: Blue Rider.exe type: default -'402390': +"402390": installDir: Hyperdrive Massacre launch: - config: @@ -199470,19 +195515,19 @@ type: none - config: oslist: macos - executable: HDM.app\\Contents\\MacOS\\HDM + executable: "HDM.app\\\\Contents\\\\MacOS\\\\HDM" type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: HDM.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: HDM.x86 type: default -'402430': +"402430": installDir: Out of the Park Baseball 17 launch: - config: @@ -199502,7 +195547,7 @@ type: none - config: betakey: beta64 - osarch: '64' + osarch: "64" oslist: windows description: Launch OOTP 17 64 bit BETA executable: ootp17_win64.exe @@ -199521,7 +195566,7 @@ description: Launch OOTP with log enabled executable: ootp17.exe type: none -'402450': +"402450": installDir: Linkrealms launch: - config: @@ -199533,7 +195578,7 @@ description: Linkrealms Map Editor executable: LinkRealmsMapEditor.exe type: editor -'402530': +"402530": installDir: TLDCE2 launch: - config: @@ -199545,16 +195590,16 @@ executable: tldce2.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: TLDCE2.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: TLDCE2.x86_64 type: default -'402560': +"402560": installDir: Tabletopia launch: - config: @@ -199582,23 +195627,21 @@ betakey: feature oslist: windows description: Tabletopia + Tilt Five - description_loc: - english: Tabletopia + Tilt Five executable: Tabletopia.exe type: option1 -'402570': +"402570": installDir: Atlas Reactor launch: - - arguments: '-steam' + - arguments: "-steam" executable: GlyphClient.exe type: none - - arguments: '-steam' + - arguments: "-steam" config: betakey: internal description: GlyphInternal executable: GlyphClientInternal.exe type: option1 -'402620': +"402620": installDir: Kindred Spirits on the Roof launch: - config: @@ -199613,7 +195656,7 @@ oslist: macos executable: KindredSpirits.app type: none -'402630': +"402630": installDir: The Coma launch: - config: @@ -199624,9 +195667,9 @@ - config: oslist: macos description: (OSX Version) - executable: TheComa.app\\Contents\\MacOS\\TheComa + executable: "TheComa.app\\\\Contents\\\\MacOS\\\\TheComa" type: default -'402670': +"402670": installDir: Space Thinger launch: - config: @@ -199634,63 +195677,63 @@ executable: SpaceThinger.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Space Thinger.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: Space Thinger.x86_64 type: none -'402710': +"402710": installDir: Osiris launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: OsirisNewDawn.exe type: default -'402750': +"402750": installDir: GiantMachines2017 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: GiantMachines2017.exe type: default - - arguments: '-screen-quality Low -screen-fullscreen 0 -screen-height 600 -screen-width 800 ' + - arguments: "-screen-quality Low -screen-fullscreen 0 -screen-height 600 -screen-width 800 " config: - osarch: '64' + osarch: "64" oslist: windows description: SAFE MODE executable: GiantMachines2017.exe type: option1 - config: - osarch: '64' + osarch: "64" oslist: linux executable: GiantMachines2017.x86_64 type: default - config: - osarch: '64' + osarch: "64" oslist: macos executable: GiantMachines2017.app type: default - - arguments: '-screen-quality Low -screen-fullscreen 0 -screen-height 600 -screen-width 800 ' + - arguments: "-screen-quality Low -screen-fullscreen 0 -screen-height 600 -screen-width 800 " config: - osarch: '64' + osarch: "64" oslist: macos description: SAFE MODE executable: GiantMachines2017.app type: option1 - - arguments: '-screen-quality Low -screen-fullscreen 0 -screen-height 600 -screen-width 800 ' + - arguments: "-screen-quality Low -screen-fullscreen 0 -screen-height 600 -screen-width 800 " config: - osarch: '64' + osarch: "64" oslist: linux description: SAFE MODE executable: GiantMachines2017.x86_64 type: option1 -'402800': +"402800": installDir: Chunks launch: - config: @@ -199698,7 +195741,7 @@ description: Chunks executable: Chunks.exe type: vr -'402840': +"402840": installDir: Crusaders of the Lost Idols launch: - config: @@ -199709,7 +195752,7 @@ oslist: macos executable: Crusaders.app type: default -'402850': +"402850": installDir: Miner Mayhem launch: - config: @@ -199727,7 +195770,7 @@ description: Launch executable: MinerMayhem.x86 type: none -'402880': +"402880": installDir: Age of Barbarian Extended Cut launch: - config: @@ -199735,7 +195778,7 @@ description: Launch executable: Age of Barbarian Ex.exe type: default -'402890': +"402890": installDir: Nyctophilia launch: - config: @@ -199750,14 +195793,14 @@ oslist: macos executable: Nyctophilia.sh type: default -'402910': +"402910": installDir: Undead Blackout launch: - config: oslist: windows executable: UndeadBlackout.exe type: default -'402940': +"402940": installDir: Dungeons of Betrayal launch: - config: @@ -199772,22 +195815,22 @@ oslist: linux executable: Game type: none -'402970': +"402970": installDir: Fringes of the Empire launch: - - arguments: '-wintitle \"Fringes of the Empire\"' + - arguments: "-wintitle \\\"Fringes of the Empire\\\"" config: oslist: windows description: Fullscreen 1080p executable: Fringes.exe type: default - - arguments: '-1080p -windowed -wintitle \"Fringes of the Empire\"' + - arguments: "-1080p -windowed -wintitle \\\"Fringes of the Empire\\\"" config: oslist: windows description: in a Window executable: Fringes.exe type: option1 - - arguments: editor -1080p -wintitle \"EDITOR Fringes of the Empire\" + - arguments: "editor -1080p -wintitle \\\"EDITOR Fringes of the Empire\\\"" config: oslist: windows description: with the Editor Fullscreen 1080p @@ -199799,13 +195842,13 @@ executable: Legacy/Fringes.exe type: option3 workingdir: Legacy/ - - arguments: editor -1080p -windowed -wintitle \"EDITOR Fringes of the Empire\" + - arguments: "editor -1080p -windowed -wintitle \\\"EDITOR Fringes of the Empire\\\"" config: oslist: windows description: Windowed Editor executable: Fringes.exe type: editor -'402980': +"402980": installDir: Osteya launch: - config: @@ -199821,31 +195864,31 @@ oslist: linux executable: osteya type: none -'40300': +"40300": installDir: Risen launch: - - executable: bin\\Risen.exe + - executable: "bin\\\\Risen.exe" workingdir: bin -'403010': +"403010": installDir: The Ultimate Showdown launch: - config: oslist: windows executable: UltimateShowdown.exe type: none -'403070': +"403070": installDir: Silver Creek Falls - Chapter 2 launch: - config: oslist: windows executable: Silver Creek Falls.exe type: default -'403090': +"403090": installDir: Rescue Team 2 launch: - executable: RescueTeam2.exe type: none -'403100': +"403100": installDir: Rescue Team 3 launch: - config: @@ -199853,7 +195896,7 @@ description: Launch executable: RescueTeam3.exe type: default -'403120': +"403120": installDir: THE GAME OF LIFE - The Official 2016 Edition launch: - config: @@ -199864,7 +195907,7 @@ oslist: macos executable: TheGameOfLife.app type: default -'403170': +"403170": installDir: Titan launch: - config: @@ -199875,7 +195918,7 @@ oslist: macos executable: titan.app type: default -'403180': +"403180": installDir: Draw a Stickman EPIC 2 launch: - config: @@ -199883,7 +195926,7 @@ description: Launch executable: Epic2.exe type: default -'403190': +"403190": installDir: Planetbase launch: - config: @@ -199894,28 +195937,28 @@ oslist: macos executable: Planetbase.app/Contents/MacOS/Planetbase type: default -'40320': +"40320": installDir: Rush for Berlin Gold Edition launch: - executable: RushForTheBomb.exe -'403200': +"403200": installDir: Legends of Dawn Reborn launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch - executable: system64\\game_lod.exe + executable: "system64\\\\game_lod.exe" type: none workingdir: system64 -'403230': +"403230": installDir: ZombieZoid - Zenith launch: - config: oslist: windows executable: /Binaries/Win32/ZZZ.exe type: default -'403270': +"403270": installDir: Cloudrift launch: - config: @@ -199930,7 +195973,7 @@ oslist: windows executable: Cloudrift.exe type: othervr -'403290': +"403290": installDir: Burly Men at Sea launch: - config: @@ -199941,13 +195984,13 @@ oslist: windows executable: Burly Men at Sea.exe type: default -'40330': +"40330": installDir: Secret Files Tunguska launch: - executable: Tunguska.exe - - description: 'Launch Secret Files: Tunguska Configuration Utility' + - description: "Launch Secret Files: Tunguska Configuration Utility" executable: ConfigTool.exe -'403300': +"403300": installDir: GravBlocks launch: - config: @@ -199960,44 +196003,44 @@ type: default - config: oslist: linux - executable: ./GravBlocks.x86 + executable: "./GravBlocks.x86" type: default -'403390': +"403390": installDir: Project submarine launch: - config: oslist: windows - executable: \\bin\\Kursk.exe + executable: "\\\\bin\\\\Kursk.exe" type: default - workingdir: \\bin\\ -'40340': + workingdir: "\\\\bin\\\\" +"40340": installDir: Secret Files Puritas Cordis launch: - executable: fsasgame.exe - - description: 'Launch Secret Files: Puritas Cordis Configuration Utility' + - description: "Launch Secret Files: Puritas Cordis Configuration Utility" executable: ConfigTool.exe -'403400': +"403400": installDir: DIG DUG launch: - config: oslist: windows executable: DIG DUG.exe type: default -'403410': +"403410": installDir: Ms. PAC-MAN launch: - config: oslist: windows executable: Ms. PAC-MAN.exe type: default -'403430': +"403430": installDir: GALAGA launch: - config: oslist: windows executable: GALAGA.exe type: default -'403440': +"403440": installDir: Evil Hazard launch: - config: @@ -200010,7 +196053,7 @@ description: Full Screen Mode executable: EvilHazardFullScreen.exe type: default -'403460': +"403460": installDir: SkyScrappers launch: - config: @@ -200022,27 +196065,27 @@ executable: SkyScrappers.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: SkyScrappers.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: SkyScrappers.x86_64 type: default -'403490': +"403490": installDir: Lands of Hope Redemption launch: - config: oslist: windows executable: game.exe type: none -'40350': +"40350": installDir: Lost Horizon launch: - executable: AutoStarter.exe -'403510': +"403510": installDir: Fairy Tale Mysteries 2 The Beanstalk launch: - config: @@ -200051,7 +196094,7 @@ executable: Beanstalk.exe type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Beanstalk_amd64 @@ -200062,46 +196105,46 @@ executable: mac_steam.app/Contents/MacOS/mac_steam type: none - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: Beanstalk_i386 type: none -'403560': +"403560": installDir: Eaten Alive launch: - executable: game.exe type: none -'403570': {} -'403590': +"403570": {} +"403590": installDir: Klepto launch: - config: oslist: windows executable: Klepto.exe type: default - - arguments: '-vr' + - arguments: "-vr" config: oslist: windows executable: Klepto.exe type: vr - - arguments: '-vr' + - arguments: "-vr" config: oslist: windows executable: Klepto.exe type: othervr -'403640': +"403640": installDir: Dishonored2 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Dishonored2.exe type: default - arguments: +net_usePlatformBackend 1 config: betakey: betahardware - osarch: '64' + osarch: "64" oslist: windows description: Dishonored 2 Retail executable: Dishonored2_x64Retail.exe @@ -200109,12 +196152,12 @@ - arguments: +net_usePlatformBackend 1 config: betakey: patch2 - osarch: '64' + osarch: "64" oslist: windows description: Dishonored 2 x64 Retail executable: Dishonored2_x64Retail.exe type: option2 -'403660': +"403660": installDir: Omnipresent launch: - config: @@ -200122,14 +196165,14 @@ description: Main Game Executable executable: Omnipresent.exe type: default -'403670': +"403670": installDir: Lumber Island - That Special Place launch: - config: oslist: windows executable: Lumber Island - That Special Place.exe type: default -'403680': +"403680": installDir: DexterityBall3D launch: - config: @@ -200161,26 +196204,26 @@ description: Select display monitor and launch Dexterity Ball 3D executable: DexterityBall3D.exe type: none -'403690': +"403690": installDir: Codename Rogue Fleet launch: - config: oslist: windows executable: RogueFleet.exe type: default -'40370': +"40370": installDir: Emergency 2012 launch: - - executable: bin.x86\\em2012.exe + - executable: "bin.x86\\\\em2012.exe" workingdir: bin.x86 -'403700': +"403700": installDir: Hatfall launch: - config: oslist: windows executable: hatfall.exe type: default -'403740': +"403740": installDir: GabeN The Final Decision launch: - config: @@ -200188,7 +196231,7 @@ description: GTFD executable: Game.exe type: default -'403780': +"403780": installDir: Color Symphony 2 launch: - config: @@ -200197,37 +196240,37 @@ type: none - config: oslist: macos - executable: ColorSymphony2.app\\Contents\\MacOS\\ColorSymphony2 + executable: "ColorSymphony2.app\\\\Contents\\\\MacOS\\\\ColorSymphony2" type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: ColorSymphony2.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: ColorSymphony2.x86_64 type: none -'40380': - installDir: Nail'd +"40380": + installDir: "Nail'd" launch: - executable: Naild_x86.exe -'403830': +"403830": installDir: The Consuming Shadow launch: - config: oslist: windows executable: consumingshadow.exe type: default -'403840': +"403840": installDir: Stacks TNT launch: - config: oslist: windows executable: stacks.exe type: none -'403850': +"403850": installDir: Sky To Fly - Faster Than Wind launch: - config: @@ -200239,16 +196282,16 @@ executable: SkyToFly.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: SkyTrek.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: SkyTrek.x86_64 type: default -'403860': +"403860": installDir: ALPAGES THE FIVE BOOKS launch: - config: @@ -200261,37 +196304,37 @@ type: none - config: oslist: macos - executable: alpagesthefivebooksmac.app\\Contents\\MacOS\\alpagesthefivebooksmac + executable: "alpagesthefivebooksmac.app\\\\Contents\\\\MacOS\\\\alpagesthefivebooksmac" type: none -'403880': +"403880": installDir: MotoGP™15 Compact launch: - config: - osarch: '32' + osarch: "32" executable: MotoGP15.exe type: none - config: - osarch: '64' + osarch: "64" executable: MotoGP15X64.exe type: none -'40390': +"40390": installDir: Risen 2 launch: - - executable: system\\risen2.exe -'403900': + - executable: "system\\\\risen2.exe" +"403900": installDir: Clergy Splode launch: - executable: game.exe type: none -'403940': +"403940": installDir: Dungelot Shattered Lands launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: Dungelot.exe type: default -'403950': +"403950": installDir: ConquestOfElysium4 launch: - config: @@ -200306,7 +196349,7 @@ oslist: macos executable: coe4_mac type: default -'403970': +"403970": installDir: The Dwarves launch: - config: @@ -200318,11 +196361,11 @@ executable: Dwarves.app type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: Dwarves type: none -'403980': +"403980": installDir: World Ship Simulator launch: - config: @@ -200333,7 +196376,7 @@ oslist: macos executable: WSS.app type: none -'40400': +"40400": installDir: AI War Fleet Command launch: - config: @@ -200347,11 +196390,11 @@ description: AI War - 32bit Build executable: AIWarLinux.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: AI War - 64bit Build executable: AIWarLinux.x86_64 -'404030': +"404030": installDir: Lucky Rabbit Reflex! launch: - config: @@ -200366,13 +196409,13 @@ oslist: linux executable: LRR.sh type: default -'404040': +"404040": installDir: Lords of Magic Special Edition launch: - - executable: English\\Launcher\\LOMLauncher.exe + - executable: "English\\\\Launcher\\\\LOMLauncher.exe" type: default workingdir: English -'404050': +"404050": installDir: Black & White Bushido launch: - config: @@ -200381,9 +196424,9 @@ type: default - config: oslist: macos - executable: BWBushido.app\\Contents\\MacOS\\BWBushido + executable: "BWBushido.app\\\\Contents\\\\MacOS\\\\BWBushido" type: default -'404070': +"404070": installDir: Lords_of_New_York launch: - config: @@ -200394,7 +196437,7 @@ oslist: macos executable: LordsOfNewYork.app type: default -'404080': +"404080": installDir: Murder launch: - config: @@ -200410,9 +196453,9 @@ - config: oslist: linux description: Launch game - executable: ./Murder.sh + executable: "./Murder.sh" type: none -'404100': +"404100": installDir: Steel Strider launch: - config: @@ -200423,18 +196466,18 @@ oslist: linux executable: SteelStrider type: default -'404150': - installDir: Lovely Weather We're Having +"404150": + installDir: "Lovely Weather We're Having" launch: - config: oslist: windows - executable: Lovely Weather We're Having.exe + executable: "Lovely Weather We're Having.exe" type: default - config: oslist: macos - executable: Lovely Weather We're Having.app\\Contents\\MacOS\\Lovely Weather We're Having + executable: "Lovely Weather We're Having.app\\\\Contents\\\\MacOS\\\\Lovely Weather We're Having" type: default -'404170': +"404170": installDir: BattleGirls launch: - config: @@ -200452,7 +196495,7 @@ description: Launch executable: BattleGirls.sh type: none -'404180': +"404180": installDir: Club Life launch: - config: @@ -200470,7 +196513,7 @@ description: Launch executable: Club Life.app type: none -'40420': +"40420": installDir: Tidalis launch: - config: @@ -200482,30 +196525,30 @@ description: Mac executable: Tidalis.app - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: TidalisLinux.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: TidalisLinux.x86_64 -'404200': +"404200": installDir: WARTILE launch: - config: oslist: windows executable: Wartile.exe type: none -'404270': +"404270": installDir: All My Gods launch: - config: oslist: windows executable: all_my_gods.exe type: none -'404290': +"404290": installDir: Fire & Forget - The Final Assault launch: - config: @@ -200516,7 +196559,7 @@ oslist: macos executable: FireForget.app type: default -'404370': +"404370": installDir: Tracks and Turrets launch: - config: @@ -200525,27 +196568,27 @@ type: default - config: oslist: macos - executable: TracksAndTurrets.app\\Contents\\MacOS\\TracksAndTurrets + executable: "TracksAndTurrets.app\\\\Contents\\\\MacOS\\\\TracksAndTurrets" type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: TracksAndTurrets.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: TracksAndTurrets.x86_64 type: default -'404380': {} -'404390': +"404380": {} +"404390": installDir: Evil Robot Traffic Jam HD launch: - config: oslist: windows executable: ERTJ.exe type: vr -'404400': +"404400": installDir: BADBLOOD launch: - config: @@ -200556,7 +196599,7 @@ oslist: macos executable: BADBLOOD_MAC.app/Contents/MacOS/BADBLOOD_MAC type: default -'404410': +"404410": installDir: Endless Sky launch: - config: @@ -200571,7 +196614,7 @@ oslist: macos executable: EndlessSky.app/Contents/MacOS/EndlessSky type: default -'404420': +"404420": installDir: Sun Dogs launch: - config: @@ -200582,14 +196625,14 @@ oslist: macos executable: Sun Dogs.app type: default -'404460': +"404460": installDir: Melter Man launch: - config: oslist: windows executable: MelterManSteamRelease-V1-32.exe type: default -'404480': +"404480": installDir: SC2VN - The eSports Visual Novel launch: - config: @@ -200604,8 +196647,8 @@ oslist: linux executable: SC2VN.sh type: default -'404510': - installDir: Heaven's Hope +"404510": + installDir: "Heaven's Hope" launch: - config: oslist: windows @@ -200615,50 +196658,50 @@ oslist: macos executable: Heavens Hope type: none -'404530': +"404530": installDir: Voxel Turf launch: - - arguments: '--steam' + - arguments: "--steam" config: oslist: windows executable: vtclient.exe type: none - - arguments: '--steam' + - arguments: "--steam" config: - osarch: '64' + osarch: "64" oslist: linux executable: vtclient type: none -'404540': +"404540": installDir: Nex Machina launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: nex_machina.exe type: default - config: betakey: nvidia_release_master - osarch: '64' + osarch: "64" oslist: windows executable: GameLauncher.exe type: default - config: betakey: nvidia_release - osarch: '64' + osarch: "64" oslist: windows executable: GameLauncher.exe type: default - config: betakey: amg_release - osarch: '64' + osarch: "64" oslist: windows executable: GameLauncher.exe type: default -'404550': +"404550": installDir: Dead Acres launch: - - arguments: '-windowed' + - arguments: "-windowed" config: oslist: windows executable: DeadAcres.exe @@ -200669,9 +196712,9 @@ type: default - config: oslist: macos - executable: DeadAcres.app\\Contents\\MacOS\\DeadAcres + executable: "DeadAcres.app\\\\Contents\\\\MacOS\\\\DeadAcres" type: default -'404580': +"404580": installDir: Relive launch: - config: @@ -200682,11 +196725,11 @@ oslist: macos executable: relive.app type: default -'404590': +"404590": installDir: Vikings - Wolves of Midgard launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: LaunchVi.exe type: default @@ -200698,14 +196741,14 @@ oslist: linux executable: vikings.x86_64 type: default -'404620': +"404620": installDir: Political Machine 2016 launch: - config: oslist: windows executable: PM2016.exe type: default -'404630': +"404630": installDir: One Hundred Ways launch: - config: @@ -200716,7 +196759,7 @@ oslist: macos executable: 100 Ways.app type: none -'404640': +"404640": installDir: Game Tycoon 2 launch: - config: @@ -200731,14 +196774,14 @@ oslist: linux executable: GameTycoon2.x86 type: default -'404660': +"404660": installDir: Vicky Saves the Big Dumb World launch: - config: oslist: windows executable: Vicky Saves the Big Dumb World(PC).exe type: default -'404680': +"404680": installDir: Hob launch: - arguments: skip_file_check @@ -200752,14 +196795,14 @@ description: Hob (no launcher) executable: Hob.exe type: option1 -'404690': +"404690": installDir: This Book Is A Dungeon launch: - config: oslist: windows executable: thisbookisadungeon.exe type: default -'404700': +"404700": installDir: Curvatron launch: - config: @@ -200771,16 +196814,16 @@ executable: nwjs.app type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: nw type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: nw type: none -'404750': +"404750": installDir: CarrottingBrain launch: - config: @@ -200788,12 +196831,12 @@ executable: CarrottingBrain.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: CarrottingBrain.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: CarrottingBrain.x86_64 type: default @@ -200801,7 +196844,7 @@ oslist: macos executable: CarrottingBrain.app type: default -'404770': +"404770": installDir: SUPERFIGHT launch: - config: @@ -200809,16 +196852,16 @@ executable: Superfight.exe type: none - config: - betakey: 'dev-current, live-current, stage-current' + betakey: "dev-current, live-current, stage-current" oslist: windows description: Debug executable: Debug/Superfight.exe type: option1 -'404810': +"404810": installDir: Escape from Puzzlegate launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Escape from Puzzlegate (Windows) executable: Puzzlegate.exe @@ -200833,14 +196876,14 @@ description: Escape from Puzzlegate (Linux) executable: Puzzlegate.sh type: default -'404820': +"404820": installDir: Ragdoll Runner launch: - config: oslist: windows executable: RagdollRunners.exe type: default -'404850': +"404850": installDir: DARTHY launch: - config: @@ -200851,29 +196894,29 @@ oslist: macos executable: DARTHY.app type: default -'404860': +"404860": installDir: Inside Me launch: - config: oslist: windows executable: InsideMe.exe type: default -'404890': {} -'404920': +"404890": {} +"404920": installDir: Emergency 2016 launch: - executable: bin/em5_launcher.exe type: default -'404960': +"404960": installDir: The Way of Life DEFINITIVE EDITION launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: The Way Of Life DEFINITIVE EDITION.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: The Way of Life DEFINITIVE EDITION.x86_64 type: default @@ -200881,11 +196924,11 @@ oslist: macos executable: The Way of Life DEFINITIVE EDITION.app type: default -'40500': +"40500": installDir: Sacraboar launch: - executable: game.exe -'405000': +"405000": installDir: UTOPIA9 launch: - config: @@ -200896,58 +196939,52 @@ oslist: macos executable: Utopia9.app/Contents/MacOS/Utopia9 type: default -'405010': +"405010": installDir: Bitardia launch: - config: oslist: windows description: Bitardia - description_loc: - english: Bitardia executable: Bitardia.exe type: default - config: oslist: linux description: Bitardia - description_loc: - english: Bitardia executable: Bitardia.x86_64 type: default - config: oslist: macos description: Bitardia - description_loc: - english: Bitardia - executable: Bitardia.app\\Contents\\MacOS\\Bitardia + executable: "Bitardia.app\\\\Contents\\\\MacOS\\\\Bitardia" type: default -'405040': {} -'405050': +"405040": {} +"405050": installDir: Fill Up! launch: - config: oslist: windows executable: gasstation.exe type: none -'405070': +"405070": installDir: The Worm launch: - executable: the_worm.exe type: none -'405180': +"405180": installDir: 123 Slaughter Me Street launch: - config: oslist: windows - executable: SMS\\123SMS.exe + executable: "SMS\\\\123SMS.exe" type: default -'405190': +"405190": installDir: MEG 9 Lost Echoes launch: - config: oslist: windows executable: LostEchoes.exe type: default -'405240': +"405240": installDir: Hairy Little Buggers launch: - config: @@ -200955,12 +196992,12 @@ executable: qutm.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: qutm.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: qutm.x86_64 type: default @@ -200968,35 +197005,35 @@ oslist: macos executable: qutm.app type: default -'405290': +"405290": installDir: Charlie Murder launch: - - arguments: '-dsound' + - arguments: "-dsound" config: oslist: windows executable: CharlieMurder.exe type: default - config: oslist: linux - executable: ./CharlieMurder + executable: "./CharlieMurder" type: none - config: oslist: macos executable: Charlie Murder.app/Contents/MacOS/CharlieMurder type: none -'405310': - installDir: LEGO Marvel's Avengers +"405310": + installDir: "LEGO Marvel's Avengers" launch: - config: oslist: windows executable: LEGOMarvelAvengers.exe type: default - config: - osarch: '64' + osarch: "64" oslist: macos executable: LEGO Marvels Avengers.app type: default -'405340': +"405340": installDir: Siegecraft Commander launch: - config: @@ -201013,7 +197050,7 @@ oslist: windows executable: SiegecraftCommanderVR.exe type: vr -'405370': +"405370": installDir: Sky Break launch: - config: @@ -201025,39 +197062,39 @@ executable: Sky Break.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: SkyBreak.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: SkyBreak.x86_64 type: none -'405440': +"405440": installDir: Ares Omega launch: - config: oslist: windows executable: AresOmega.exe type: default -'405480': +"405480": installDir: Tomorrow launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Tomorrow.exe type: vr -'405500': +"405500": installDir: Dangerous Golf launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Orlando.exe type: default -'405530': +"405530": installDir: Veer launch: - config: @@ -201066,19 +197103,19 @@ type: default - config: oslist: macos - executable: Veer.app\\Contents\\MacOS\\Veer + executable: "Veer.app\\\\Contents\\\\MacOS\\\\Veer" type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: veer.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: veer.x86_64 type: default -'405540': +"405540": installDir: Ninja Senki DX launch: - config: @@ -201087,24 +197124,24 @@ type: default - config: oslist: macos - executable: NinjaSenkiDX.app\\Contents\\MacOS\\Mac_Runner + executable: "NinjaSenkiDX.app\\\\Contents\\\\MacOS\\\\Mac_Runner" type: default -'405550': +"405550": installDir: Jet Set Knights launch: - config: oslist: windows executable: nw.exe type: none -'405590': +"405590": installDir: Stone Tales launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: StoneTales.exe type: default -'405610': +"405610": installDir: Flight of the Paladin launch: - config: @@ -201113,13 +197150,13 @@ type: default - config: oslist: macos - executable: FlightofthePaladin.app\\Contents\\MacOS\\FlightofthePaladin + executable: "FlightofthePaladin.app\\\\Contents\\\\MacOS\\\\FlightofthePaladin" type: default - config: oslist: linux executable: FlightofthePaladin.x86 type: default -'405640': +"405640": installDir: Pony Island launch: - config: @@ -201134,7 +197171,7 @@ oslist: linux executable: PonyIsland.x86 type: default -'405650': +"405650": installDir: Zero Reflex launch: - config: @@ -201143,16 +197180,16 @@ type: default - config: oslist: macos - executable: ZeroReflex.app\\Contents\\MacOS\\ZeroReflex + executable: "ZeroReflex.app\\\\Contents\\\\MacOS\\\\ZeroReflex" type: default - config: oslist: linux executable: ZeroReflex.x86_64 type: default -'405670': +"405670": installDir: Combat Core launch: - - arguments: ' -vrmode none' + - arguments: " -vrmode none" config: oslist: windows executable: CombatCore.exe @@ -201166,78 +197203,74 @@ description: in VR executable: CombatCore.exe type: option1 -'405680': {} -'405710': +"405680": {} +"405710": installDir: Staxel launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: bin/Staxel.SteamLauncher.exe type: default workingdir: bin/ - config: - osarch: '64' + osarch: "64" oslist: windows description: Staxel CE - description_loc: - english: Staxel CE - executable: StaxelCE\\Windows_64bit_FNA\\StaxelCE.exe + executable: "StaxelCE\\\\Windows_64bit_FNA\\\\StaxelCE.exe" type: option1 - config: - osarch: '64' + osarch: "64" oslist: windows description: Mod Manager Tool executable: bin/Staxel.ModManager.exe type: none workingdir: bin/ - - arguments: '--disableMultisampling --disableLateSwapTear --disableFullscreen --disableSliders --warnings' + - arguments: "--disableMultisampling --disableLateSwapTear --disableFullscreen --disableSliders --warnings" config: - osarch: '64' + osarch: "64" oslist: windows description: Compatibility Safe Mode executable: bin/Staxel.SteamLauncher.exe type: option1 workingdir: bin/ - config: - osarch: '64' + osarch: "64" oslist: windows executable: bin/Staxel.ServerWizard.exe type: server workingdir: bin/ - config: - osarch: '64' + osarch: "64" oslist: linux executable: StaxelCE/Linux_64bit_FNA/StaxelCE type: none - - arguments: '/gldevice:Vulkan' + - arguments: "/gldevice:Vulkan" config: oslist: macos executable: StaxelCE/MacOSX_64bit_FNA/StaxelCE.app/Contents/MacOS/StaxelCE type: none - - arguments: '/gldevice:OpenGL /glprofile:core' + - arguments: "/gldevice:OpenGL /glprofile:core" config: oslist: linux description: Staxel CE (OpenGL Core profile) - description_loc: - english: Staxel CE (OpenGL Core profile) executable: StaxelCE/Linux_64bit_FNA/StaxelCE type: option1 -'405720': +"405720": installDir: Perfect Universe launch: - config: oslist: windows executable: PerfectUniverse.exe type: none -'405760': +"405760": installDir: Robot Squad Simulator 2017 launch: - config: oslist: windows executable: Robot Squad Simulator 2017.exe type: default -'405780': +"405780": installDir: Alpha Polaris launch: - config: @@ -201251,14 +197284,14 @@ executable: AlphaPolaris.exe type: none workingdir: 1280x768 -'405810': +"405810": installDir: Valzar launch: - config: oslist: windows executable: Valzar.exe type: none -'405820': +"405820": installDir: Turok launch: - config: @@ -201271,7 +197304,7 @@ executable: Turok EX.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: TurokEx type: default @@ -201279,16 +197312,16 @@ oslist: windows executable: editor.exe type: editor -'405830': +"405830": installDir: Turok 2 - Seeds of Evil launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: horus_x64.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: horus_x64_ded.exe type: server @@ -201297,26 +197330,26 @@ executable: Turok 2 EX.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Turok2EX type: default -'405860': +"405860": installDir: Super Ubie Island REMIX launch: - config: - osarch: '32' + osarch: "32" oslist: windows - executable: win32\\SuperUbieIslandREMIX.exe + executable: "win32\\\\SuperUbieIslandREMIX.exe" type: default workingdir: win32 - config: - osarch: '64' + osarch: "64" oslist: windows - executable: win64\\SuperUbieIslandREMIX.exe + executable: "win64\\\\SuperUbieIslandREMIX.exe" type: default workingdir: win64 -'405900': +"405900": installDir: Disgaea PC launch: - executable: dis1_st.exe @@ -201325,7 +197358,7 @@ japanese: 魔界戦記ディスガイア PC koreana: 마계전기 디스가이아 PC tchinese: 魔界戰記DISGAEA PC -'405950': +"405950": installDir: Lowglow launch: - config: @@ -201336,11 +197369,11 @@ oslist: macos executable: Lowglow.app type: default -'405960': +"405960": installDir: Sunken launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Sunken_Steam_Test_Build.exe type: none @@ -201348,21 +197381,21 @@ oslist: linux executable: Sunken_linux_build.x86_64 type: none -'405970': +"405970": installDir: Flat Kingdom launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: FlatKingdom.exe type: none - config: - osarch: '64' + osarch: "64" oslist: windows executable: FlatKingdom.exe type: none - config: - osarch: '64' + osarch: "64" oslist: macos executable: FlatKingdom.app type: none @@ -201371,16 +197404,16 @@ executable: Flatkingdom.exe type: none - config: - osarch: '64' + osarch: "64" oslist: macos executable: Flatkingdom.app type: none -'405980': +"405980": installDir: Legend of Dungeon Master launch: - executable: LoDM.exe type: none -'406080': +"406080": installDir: Ant War Domination launch: - config: @@ -201398,34 +197431,34 @@ description: Launch executable: AntWar.x86 type: none -'406090': +"406090": installDir: LostMoon launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: LostMoon.exe type: default -'406110': +"406110": installDir: Asdivine Hearts launch: - - arguments: '-fullscreen' + - arguments: "-fullscreen" config: oslist: windows executable: AsdivineHearts.exe type: default - - arguments: '-fullscreen' + - arguments: "-fullscreen" config: oslist: macos executable: AsdivineHearts.app type: default nameLocalized: japanese: アスディバインハーツ -'406120': +"406120": installDir: AstralBreakers launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: astral-breakers32.exe type: default @@ -201434,7 +197467,7 @@ executable: astral-breakers.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: astral-breakers64.exe type: default @@ -201443,23 +197476,23 @@ executable: astral-breakers.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: astral-breakers.x86 type: default -'406130': +"406130": installDir: DarkMaus launch: - config: oslist: windows executable: DarkMaus.exe type: default -'406150': +"406150": installDir: Refunct launch: - config: oslist: windows - executable: Refunct\\Binaries\\Win32\\Refunct-Win32-Shipping.exe + executable: "Refunct\\\\Binaries\\\\Win32\\\\Refunct-Win32-Shipping.exe" type: default - config: oslist: macos @@ -201469,7 +197502,7 @@ oslist: linux executable: Refunct/Binaries/Linux/Refunct-Linux-Shipping type: default -'406170': +"406170": installDir: Vortex The Gateway launch: - config: @@ -201480,28 +197513,28 @@ oslist: macos executable: Vortex The Gateway.app type: none -'406220': +"406220": installDir: GnomesVsFairies launch: - - arguments: '-vrmode none -show-screen-selector' + - arguments: "-vrmode none -show-screen-selector" config: oslist: windows executable: GnomesVsFairies.exe type: default - - arguments: '-vrmode none' + - arguments: "-vrmode none" config: - osarch: '32' + osarch: "32" oslist: linux executable: GnomesVsFairies.x86 type: none - - arguments: '-vrmode none' + - arguments: "-vrmode none" config: - osarch: '64' + osarch: "64" oslist: linux executable: GnomesVsFairies.x86_64 type: none - config: - osarch: '64' + osarch: "64" oslist: macos executable: GnomesVsFairies.app type: none @@ -201509,17 +197542,17 @@ oslist: windows executable: GnomesVsFairies.exe type: othervr - - arguments: '-vrmode OpenVR' + - arguments: "-vrmode OpenVR" executable: GnomesVsFairies.exe type: vr -'406280': +"406280": installDir: DesertLand 2115 launch: - config: oslist: windows executable: DesertLand2115_Steam.exe type: default -'406290': +"406290": installDir: Twilight Struggle launch: - config: @@ -201528,17 +197561,17 @@ type: default - config: oslist: macos - executable: TwilightStruggle.app\\Contents\\MacOS\\TwilightStruggle + executable: "TwilightStruggle.app\\\\Contents\\\\MacOS\\\\TwilightStruggle" type: default -'406300': +"406300": installDir: Lighthockey launch: - config: oslist: windows - executable: Bin\\Lighthockey.exe + executable: "Bin\\\\Lighthockey.exe" type: none workingdir: Bin -'406310': +"406310": installDir: Stop Online - Battle of Words launch: - config: @@ -201553,82 +197586,67 @@ oslist: macos executable: Stop.app type: default -'406350': +"406350": installDir: KartKraft launch: - arguments: hmd=None config: - osarch: '64' + osarch: "64" oslist: windows executable: project_k.exe type: default - - arguments: '-vr hmd=SteamVR' + - arguments: "-vr hmd=SteamVR" config: - osarch: '64' + osarch: "64" oslist: windows executable: project_k.exe type: vr - - arguments: '-vr hmd=OculusHMD' + - arguments: "-vr hmd=OculusHMD" config: - osarch: '64' + osarch: "64" oslist: windows executable: project_k.exe type: othervr - - arguments: >- - hmd=None -UserDir=C:\\MotorsportGames\\KartKraft-Staging - -CloudDocumentServerURL=https://kartkraft-staging.herokuapp.com - -SchedulerHost=scheduler-dev.kartkraftgame.com:443 -SchedulerStaging=true -GSPreview=true + - arguments: "hmd=None -UserDir=C:\\\\MotorsportGames\\\\KartKraft-Staging -CloudDocumentServerURL=https://kartkraft-staging.herokuapp.com -SchedulerHost=scheduler-dev.kartkraftgame.com:443 -SchedulerStaging=true -GSPreview=true" config: betakey: fastpipe - osarch: '64' + osarch: "64" oslist: windows description: KartKraft with staging server - description_loc: - english: KartKraft with staging server executable: project_k.exe type: option1 - - arguments: >- - -vr hmd=SteamVR -UserDir=C:\\MotorsportGames\\KartKraft-Staging - -CloudDocumentServerURL=https://kartkraft-staging.herokuapp.com - -SchedulerHost=scheduler-dev.kartkraftgame.com:443 -SchedulerStaging=true -GSPreview=true + - arguments: "-vr hmd=SteamVR -UserDir=C:\\\\MotorsportGames\\\\KartKraft-Staging -CloudDocumentServerURL=https://kartkraft-staging.herokuapp.com -SchedulerHost=scheduler-dev.kartkraftgame.com:443 -SchedulerStaging=true -GSPreview=true" config: betakey: fastpipe - osarch: '64' + osarch: "64" oslist: windows description: KartKraft SteamVR with staging server - description_loc: - english: KartKraft SteamVR with staging server executable: project_k.exe type: option2 - - arguments: >- - -vr hmd=OculusHMD -UserDir=C:\\MotorsportGames\\KartKraft-Staging - -CloudDocumentServerURL=https://kartkraft-staging.herokuapp.com - -SchedulerHost=scheduler-dev.kartkraftgame.com:443 -SchedulerStaging=true -GSPreview=true + - arguments: "-vr hmd=OculusHMD -UserDir=C:\\\\MotorsportGames\\\\KartKraft-Staging -CloudDocumentServerURL=https://kartkraft-staging.herokuapp.com -SchedulerHost=scheduler-dev.kartkraftgame.com:443 -SchedulerStaging=true -GSPreview=true" config: betakey: fastpipe - osarch: '64' + osarch: "64" oslist: windows description: KartKraft OculusVR with staging server - description_loc: - english: KartKraft OculusVR with staging server executable: project_k.exe type: option3 -'406400': +"406400": installDir: Axes and Arrows launch: - config: oslist: windows executable: axesandarrows.exe type: default -'406410': +"406410": installDir: Minigolf VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: MinigolfVR/MinigolfVR.exe type: vr -'406550': +"406550": installDir: Umineko launch: - config: @@ -201640,13 +197658,13 @@ executable: Umineko1to4.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Umineko1to4 type: default nameLocalized: japanese: うみねこのなく頃に -'406650': +"406650": installDir: RatingsWar launch: - config: @@ -201661,15 +197679,15 @@ oslist: linux executable: RatingsWar type: none -'406670': {} -'406690': +"406670": {} +"406690": installDir: Roses and Gems launch: - config: oslist: windows executable: RosesAndGems.exe type: default -'406710': +"406710": installDir: Eclipse Edge Of Light launch: - config: @@ -201679,23 +197697,23 @@ - executable: Flat/EclipseEdgeOfLightFlat.exe type: default nameLocalized: - french: 'Éclipse: Bord de la Lumière' - german: 'Eclipse: Rand des Lichts' - japanese: 'エクリプス: 光の果て' - koreana: 'Eclipse : 빛의 가장자리' - latam: 'Eclipse: Al borde de la luz' - spanish: 'Eclipse: Al borde de la luz' - tchinese: ' 日蚀:光之边缘' -'406720': - installDir: Alekhine's Gun + french: "Éclipse: Bord de la Lumière" + german: "Eclipse: Rand des Lichts" + japanese: "エクリプス: 光の果て" + koreana: "Eclipse : 빛의 가장자리" + latam: "Eclipse: Al borde de la luz" + spanish: "Eclipse: Al borde de la luz" + tchinese: " 日蚀:光之边缘" +"406720": + installDir: "Alekhine's Gun" launch: - executable: AlekhinesGun.exe type: none -'406730': +"406730": installDir: 1000 Heads Among the Trees launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: 1000 Heads Among the Trees.exe type: default @@ -201704,11 +197722,11 @@ executable: 1000 Heads Among the Trees.app type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: 1000 Heads Among the Trees.exe type: default -'406760': +"406760": installDir: FL337 launch: - config: @@ -201723,7 +197741,7 @@ oslist: linux executable: FL337.x86 type: default -'406780': +"406780": installDir: Boon Hill launch: - config: @@ -201734,7 +197752,7 @@ oslist: macos executable: boon hill.app type: default -'406850': +"406850": installDir: Crush Your Enemies launch: - config: @@ -201743,20 +197761,20 @@ type: default - config: oslist: macos - executable: CYE.app\\Contents\\MacOS\\CYE + executable: "CYE.app\\\\Contents\\\\MacOS\\\\CYE" type: none - config: oslist: linux executable: cye.x86 type: none -'406860': +"406860": installDir: Blind launch: - config: oslist: windows executable: Blind.exe type: vr -'406870': +"406870": installDir: Eventide Slavic Fable launch: - config: @@ -201765,13 +197783,13 @@ executable: Eventide_SlavicFable.exe type: none - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: Eventide_SlavicFable_i386 type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Eventide_SlavicFable_amd64 @@ -201781,8 +197799,8 @@ description: Launch executable: mac_steam.app/Contents/MacOS/mac_steam type: none -'406890': {} -'406920': +"406890": {} +"406920": installDir: MLAND_SVG launch: - config: @@ -201790,14 +197808,14 @@ description: Monsterland executable: mlandfpc.exe type: default -'406930': +"406930": installDir: Epic Showdown launch: - config: oslist: windows executable: EpicShowdown.exe type: default -'406940': +"406940": installDir: Dub Dash launch: - config: @@ -201809,7 +197827,7 @@ oslist: macos executable: DubDash.app/Contents/MacOS/DubDash type: none -'406970': +"406970": installDir: The Uncertain launch: - config: @@ -201821,11 +197839,11 @@ executable: TUE1.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: TUE1.x86_64 type: none -'40700': +"40700": installDir: Machinarium launch: - config: @@ -201836,25 +197854,25 @@ executable: Machinarium.app - config: oslist: windows - ownsdlc: '40703' + ownsdlc: "40703" description: View Machinarium Art Book (DLC) - executable: Machinarium Art Book\\Machinarium Art Book.pdf + executable: "Machinarium Art Book\\\\Machinarium Art Book.pdf" type: none - config: oslist: windows - ownsdlc: '40703' + ownsdlc: "40703" description: Play Machinarium Soundtrack + Bonus EP (DLC) - executable: Machinarium Soundtrack + Bonus EP MP3\\Tomas Dvorak - Machinarium Soundtrack + Bonus EP.m3u + executable: "Machinarium Soundtrack + Bonus EP MP3\\\\Tomas Dvorak - Machinarium Soundtrack + Bonus EP.m3u" type: none - config: oslist: macos - ownsdlc: '40703' + ownsdlc: "40703" description: View Machinarium Art Book (DLC) executable: OSX_Open-ArtBook.sh type: none - config: oslist: macos - ownsdlc: '40703' + ownsdlc: "40703" description: Play Machinarium Soundtrack + Bonus EP (DLC) executable: OSX_Play-Soundtrack.sh type: none @@ -201863,40 +197881,40 @@ koreana: Machinarium (머시나리움) schinese: 机械迷城 (Machinarium) tchinese: 機械迷城 (Machinarium) -'407000': +"407000": installDir: SurvivalIsNotEnough launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: SurvivalIsNotEnough.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: SurvivalIsNotEnough.exe type: default - config: - osarch: '32' + osarch: "32" oslist: macos - executable: SurvivalIsNotEnough.app\\Contents\\MacOS\\SurvivalIsNotEnough + executable: "SurvivalIsNotEnough.app\\\\Contents\\\\MacOS\\\\SurvivalIsNotEnough" type: default - config: - osarch: '64' + osarch: "64" oslist: macos - executable: SurvivalIsNotEnough.app\\Contents\\MacOS\\SurvivalIsNotEnough + executable: "SurvivalIsNotEnough.app\\\\Contents\\\\MacOS\\\\SurvivalIsNotEnough" type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: SurvivalIsNotEnough.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: SurvivalIsNotEnough.x86_64 type: default -'407020': +"407020": installDir: Star Sky launch: - config: @@ -201913,24 +197931,24 @@ type: default nameLocalized: japanese: ブルームーン -'407050': +"407050": installDir: Mussoumano Ataque dos Haters launch: - config: oslist: windows executable: Mussoumano_A_d_H.exe type: default -'407060': +"407060": installDir: AltspaceVR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: AltspaceVR.exe type: default - executable: AltspaceVR.exe type: vr -'407100': +"407100": installDir: Gulf of Aden - Task Force Somalia launch: - config: @@ -201943,16 +197961,16 @@ type: default - config: oslist: macos - executable: GulfOfAden.app\\Contents\\MacOS\\GulfOfAden + executable: "GulfOfAden.app\\\\Contents\\\\MacOS\\\\GulfOfAden" type: default -'407110': +"407110": installDir: Swarm Universe launch: - config: oslist: windows executable: Swarm Universe.exe type: default -'407120': +"407120": installDir: Soccer Manager 2016 launch: - config: @@ -201963,7 +197981,7 @@ oslist: macos executable: Soccer Manager 2016.app type: none -'407130': +"407130": installDir: TankMechanicSimulator launch: - config: @@ -201975,11 +197993,9 @@ executable: TankMechanicSimulator.app/Contents/MacOS/TankMechanicSimulator type: default - description: Tank Mechanic Simulator Manual - description_loc: - english: Tank Mechanic Simulator Manual executable: TMS_Manual_EN.pdf type: manual -'407150': +"407150": installDir: Trap Them - Sniper Edition launch: - config: @@ -201987,7 +198003,7 @@ description: Launch executable: Trap Them - Sniper Edition.exe type: none -'407190': +"407190": installDir: Club Manager 2016 launch: - arguments: Tor @@ -201998,12 +198014,12 @@ - arguments: Tor config: oslist: windows - ownsdlc: '595970' + ownsdlc: "595970" description: Club Manager 2017 - executable: Club Manager 2017\\Start.exe + executable: "Club Manager 2017\\\\Start.exe" type: option1 workingdir: Club Manager 2017 -'40720': +"40720": installDir: Samorost 2 launch: - config: @@ -202012,7 +198028,7 @@ executable: Samorost2.exe type: none - config: - ownsdlc: '420690' + ownsdlc: "420690" description: Play soundtrack from playlist executable: Samorost 2 Soundtrack/samorost2_soundtrack.m3u type: none @@ -202022,26 +198038,26 @@ description: Play Samorost 2 executable: Samorost2.app type: default -'407230': +"407230": installDir: Legend of Mysteria launch: - description: Test executable: EQLauncher.exe type: default -'407250': +"407250": installDir: Pro Evolution Soccer 2016 myClub launch: - description: Launch executable: PES2016.exe type: none -'407290': +"407290": installDir: There Was a Caveman launch: - config: oslist: windows executable: ThereWasACaveman.exe type: default -'407300': +"407300": installDir: The Last NightMary - A Lenda do Cabeça de Cuia launch: - config: @@ -202050,7 +198066,7 @@ type: default - config: oslist: macos - executable: TheLastNightMary.app\\Contents\\MacOS\\TheLastNightMary + executable: "TheLastNightMary.app\\\\Contents\\\\MacOS\\\\TheLastNightMary" type: default - config: oslist: linux @@ -202058,19 +198074,19 @@ type: default - executable: game.exe type: none -'407310': +"407310": installDir: NEKO-NIN exHeart launch: - executable: nekonin.exe type: none nameLocalized: japanese: 猫忍えくすはーと -'407320': +"407320": installDir: My Little Kitties launch: - executable: My Little Kitties.exe type: default -'407330': +"407330": installDir: Sakura Dungeon launch: - config: @@ -202085,7 +198101,7 @@ oslist: linux executable: sakura_dungeon.sh type: default -'407340': +"407340": installDir: Strawberry Vinegar launch: - config: @@ -202100,14 +198116,14 @@ oslist: linux executable: Strawberry Vinegar.sh type: default -'407380': +"407380": installDir: Strania - The Stella Machina - launch: - config: oslist: windows executable: game.exe type: default -'407420': +"407420": installDir: Gabe Newell Simulator launch: - config: @@ -202127,93 +198143,93 @@ type: option1 - config: oslist: windows - ownsdlc: '480580' + ownsdlc: "480580" description: Portal Mode executable: Portal Mode DLC.exe type: option2 -'407510': +"407510": installDir: Devilian launch: - - arguments: '-steam' + - arguments: "-steam" config: oslist: windows description: Launch Windows executable: GlyphClient.exe type: default - - arguments: '-steam' + - arguments: "-steam" config: betakey: internal oslist: windows description: GlyphInternal executable: GlyphClientInternal.exe type: option1 -'407530': +"407530": installDir: ARK SOTF launch: - config: oslist: windows - description: 'Launch ARK: Survival of the Fittest' - executable: ShooterGame\\Binaries\\Win64\\ShooterGame_BE.exe + description: "Launch ARK: Survival of the Fittest" + executable: "ShooterGame\\\\Binaries\\\\Win64\\\\ShooterGame_BE.exe" type: none - workingdir: ShooterGame\\Binaries\\Win64\\ - - arguments: '-sm4 -lowmemory' + workingdir: "ShooterGame\\\\Binaries\\\\Win64\\\\" + - arguments: "-sm4 -lowmemory" config: oslist: windows - description: 'Launch Survival of the Fittest (Shader Model 4, Low Memory)' - executable: ShooterGame\\Binaries\\Win64\\ShooterGame_BE.exe + description: "Launch Survival of the Fittest (Shader Model 4, Low Memory)" + executable: "ShooterGame\\\\Binaries\\\\Win64\\\\ShooterGame_BE.exe" type: none - workingdir: ShooterGame\\Binaries\\Win64\\ - - arguments: '-nomansky' + workingdir: "ShooterGame\\\\Binaries\\\\Win64\\\\" + - arguments: "-nomansky" config: oslist: windows - description: Launch Survival of the Fittest ('No Sky') - executable: ShooterGame\\Binaries\\Win64\\ShooterGame_BE.exe + description: "Launch Survival of the Fittest ('No Sky')" + executable: "ShooterGame\\\\Binaries\\\\Win64\\\\ShooterGame_BE.exe" type: none - workingdir: ShooterGame\\Binaries\\Win64\\ - - arguments: '4' + workingdir: "ShooterGame\\\\Binaries\\\\Win64\\\\" + - arguments: "4" config: oslist: windows description: Uninstall BattlEye - executable: ShooterGame\\Binaries\\Win64\\ShooterGame_BE.exe + executable: "ShooterGame\\\\Binaries\\\\Win64\\\\ShooterGame_BE.exe" type: none - workingdir: ShooterGame\\Binaries\\Win64 + workingdir: "ShooterGame\\\\Binaries\\\\Win64" - config: oslist: linux - description: 'Launch ARK: Survival of the Fittest' + description: "Launch ARK: Survival of the Fittest" executable: ShooterGame/Binaries/Linux/ShooterGame type: none - config: oslist: macos - description: 'Launch ARK: Survival of the Fittest' + description: "Launch ARK: Survival of the Fittest" executable: ShooterGame.app type: none -'407560': +"407560": installDir: Killing Room launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: KillingRoom.exe type: none - config: - osarch: '32' + osarch: "32" oslist: windows executable: KillingRoom.exe type: none -'407570': {} -'407600': +"407570": {} +"407600": installDir: Raiden Legacy launch: - executable: raidenlegacy.exe type: default -'407620': +"407620": installDir: Indie Game Battle launch: - config: oslist: windows executable: Indie Game Battle.exe type: default -'407630': +"407630": installDir: Skein launch: - config: @@ -202222,13 +198238,13 @@ type: default - config: oslist: macos - executable: Skein.app\\Contents\\MacOS\\Skein + executable: "Skein.app\\\\Contents\\\\MacOS\\\\Skein" type: default - config: oslist: linux executable: Skein type: default -'407680': +"407680": installDir: Last Days of Spring Visual Novel launch: - config: @@ -202239,7 +198255,7 @@ oslist: macos executable: Last Days of Spring.app type: none -'407690': +"407690": installDir: R.B.I. Baseball 16 launch: - config: @@ -202252,34 +198268,34 @@ description: Launch executable: RBIBaseball.app type: none -'407700': +"407700": installDir: Lonath Online launch: - config: oslist: windows executable: Lonath Online.exe type: default -'407710': +"407710": installDir: The Grand Canyon VR Experience launch: - - arguments: '-steam' + - arguments: "-steam" config: oslist: windows executable: Canyon.exe type: vr - - arguments: '-steam' + - arguments: "-steam" config: - osarch: '64' + osarch: "64" oslist: windows executable: Canyon.exe type: othervr -'407720': +"407720": installDir: Poker Pretty Girls Battle launch: - description: Launch executable: PokerPrettyGirlsBattle.exe type: none -'407730': +"407730": installDir: Dungeons Of Kragmor launch: - config: @@ -202292,44 +198308,44 @@ description: DLC Music Player executable: WizardRockMusicPlayer.exe type: option1 -'407740': {} -'407750': {} -'407780': +"407740": {} +"407750": {} +"407780": installDir: Lethe - Episode One launch: - - arguments: '-UseAllAvailableCores' + - arguments: "-UseAllAvailableCores" config: oslist: windows - executable: Binaries\\Win32\\UDK.exe + executable: "Binaries\\\\Win32\\\\UDK.exe" type: default -'407810': +"407810": installDir: Hard Reset Redux launch: - config: oslist: windows executable: launcher.exe type: default -'407830': +"407830": installDir: Space Overlords launch: - config: oslist: windows executable: SpaceOverlords/SpaceOverlords.exe type: none -'407840': +"407840": installDir: Guardians of Orion launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Orion.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: Orion.exe type: default -'407880': +"407880": installDir: Mad Nords Probably an Epic Quest launch: - config: @@ -202342,9 +198358,9 @@ type: default - config: oslist: macos - executable: madnordsprobablyanepicquest.app\\Contents\\MacOS\\nwjs + executable: "madnordsprobablyanepicquest.app\\\\Contents\\\\MacOS\\\\nwjs" type: default -'407900': +"407900": installDir: Princess Remedy launch: - config: @@ -202355,7 +198371,7 @@ oslist: windows executable: remedy_gm5.exe type: safemode -'407940': +"407940": installDir: Hyper Bounce Blast launch: - config: @@ -202366,7 +198382,7 @@ - description: Launch Settings executable: HBBLauncher.exe type: none -'407980': +"407980": installDir: Sakura Beach 2 launch: - config: @@ -202381,7 +198397,7 @@ oslist: linux executable: Sakura Beach 2.sh type: none -'40800': +"40800": installDir: Super Meat Boy launch: - config: @@ -202393,7 +198409,7 @@ - config: oslist: linux executable: SuperMeatBoy -'408000': +"408000": installDir: Cinderella Escape! R12 launch: - config: @@ -202402,56 +198418,48 @@ type: default - config: oslist: macos - executable: CinderellaEscape!_R12_Mac.app\\Contents\\MacOS\\CinderellaEscape!_R12_Mac + executable: "CinderellaEscape!_R12_Mac.app\\\\Contents\\\\MacOS\\\\CinderellaEscape!_R12_Mac" type: default -'408030': +"408030": installDir: UniBall launch: - - arguments: '--disable-gpu' + - arguments: "--disable-gpu" config: oslist: windows executable: ubfrontend.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Uniball.sh type: default -'408060': +"408060": installDir: SAVAGE The Shard of Gosen launch: - config: oslist: windows description: SAVAGE The Shard of Gosen - description_loc: - english: SAVAGE The Shard of Gosen executable: SAVAGE The Shard of Gosen.exe type: option1 - config: - osarch: '64' + osarch: "64" description: SAVAGE 64-bit - description_loc: - english: SAVAGE 64-bit executable: SAVAGE The Shard of Gosen_x64.exe type: option1 - config: betakey: savagebetabranch oslist: windows description: SAVAGE beta - description_loc: - english: SAVAGE beta executable: SAVAGE The Shard of Gosen_beta.exe type: option1 - config: betakey: savagebetabranch - osarch: '64' + osarch: "64" oslist: windows description: SAVAGE beta 64-bit - description_loc: - english: SAVAGE beta 64-bit executable: SAVAGE The Shard of Gosen_betax64.exe type: option2 -'408110': +"408110": installDir: Planet_R_12 launch: - config: @@ -202462,79 +198470,79 @@ oslist: linux executable: Planet R-12 type: none -'408120': +"408120": installDir: Cibele launch: - config: oslist: windows description: Launch - executable: Cibele\\Cibele.exe + executable: "Cibele\\\\Cibele.exe" type: none - config: oslist: macos description: Launch executable: Cibele.app type: none -'408170': +"408170": installDir: Networm launch: - config: oslist: windows executable: Netw0rm.exe type: none -'408240': +"408240": installDir: Slime Jumper launch: - - arguments: '-jar SlimeJumper.jar' + - arguments: "-jar SlimeJumper.jar" config: oslist: linux executable: jre/bin/java type: default - - arguments: '-XstartOnFirstThread -jar SlimeJumper.jar' + - arguments: "-XstartOnFirstThread -jar SlimeJumper.jar" config: - osarch: '64' + osarch: "64" oslist: macos executable: jre/Contents/Home/bin/java type: default - - arguments: '-jar SlimeJumper.jar' + - arguments: "-jar SlimeJumper.jar" config: oslist: windows executable: jre/bin/javaw.exe type: default -'408250': +"408250": installDir: Eagle Flight launch: - - arguments: '-uplay_steam_mode -uplay_vr_mode ' + - arguments: "-uplay_steam_mode -uplay_vr_mode " config: - osarch: '64' + osarch: "64" oslist: windows executable: EagleFlight.exe type: vr - - arguments: '-uplay_steam_mode -uplay_vr_mode -uplayPCEnvironment uat -upc_uat' + - arguments: "-uplay_steam_mode -uplay_vr_mode -uplayPCEnvironment uat -upc_uat" config: betakey: testing-latest - osarch: '64' + osarch: "64" oslist: windows description: (UAT) executable: EagleFlight.exe type: vr - - arguments: '-uplay_steam_mode -uplay_vr_mode -uplayPCEnvironment uat -upc_uat' + - arguments: "-uplay_steam_mode -uplay_vr_mode -uplayPCEnvironment uat -upc_uat" config: betakey: uplaytest - osarch: '64' + osarch: "64" oslist: windows description: (UAT) executable: EagleFlight.exe type: vr - - arguments: '-uplay_steam_mode -uplay_vr_mode -uplayPCEnvironment uat -upc_uat' + - arguments: "-uplay_steam_mode -uplay_vr_mode -uplayPCEnvironment uat -upc_uat" config: betakey: updateone - osarch: '64' + osarch: "64" oslist: windows description: (UAT) executable: EagleFlight.exe type: vr -'408280': +"408280": installDir: MessageQuest launch: - config: @@ -202543,46 +198551,40 @@ type: default - config: oslist: macos - executable: mq.app\\Contents\\MacOS\\mq + executable: "mq.app\\\\Contents\\\\MacOS\\\\mq" type: default - config: oslist: linux executable: mq.x86_64 type: default -'408340': +"408340": installDir: GravityLab launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Gravity Lab - description_loc: - english: Gravity Lab executable: GravLab.exe type: default - - arguments: '-vrmode Oculus' + - arguments: "-vrmode Oculus" config: - osarch: '64' + osarch: "64" oslist: windows description: Force Oculus backend - description_loc: - english: Force Oculus backend executable: GravLab.exe type: othervr - - arguments: '-vrmode OpenVR' + - arguments: "-vrmode OpenVR" description: Force OpenVR backend - description_loc: - english: Force OpenVR backend executable: GravLab.exe type: none -'408400': +"408400": installDir: Swords and Sorcery - Underworld - Definitive Edition launch: - config: oslist: windows executable: ssude.exe type: default -'408410': +"408410": installDir: X-Morph Defense launch: - executable: bin/shooter_win64_release.exe @@ -202591,60 +198593,54 @@ - config: oslist: windows description: Configure video settings - description_loc: - english: Configure video settings executable: bin/X-Morph_Launcher.exe type: config workingdir: bin - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch X-Morph Level Editor (BETA) executable: tools/bin/level_editor_win64_release.exe type: editor workingdir: tools/bin - - arguments: >- - map=story_canada start_point=benchmark benchmark_name=story_canada_1 benchmark_length=120 - activate_second_player=1 loading_profiling=1 show_crash_dialog=0 benchmark_delay=40 + - arguments: map=story_canada start_point=benchmark benchmark_name=story_canada_1 benchmark_length=120 activate_second_player=1 loading_profiling=1 show_crash_dialog=0 benchmark_delay=40 config: betakey: intel - osarch: '64' + osarch: "64" oslist: windows description: Benchmark Canada executable: bin/shooter_win64_release.exe type: option1 workingdir: bin - - arguments: >- - map=story_britain start_point=benchmark_2 benchmark_name=story_britain_1 benchmark_length=120 - activate_second_player=1 loading_profiling=1 show_crash_dialog=0 benchmark_delay=40 + - arguments: map=story_britain start_point=benchmark_2 benchmark_name=story_britain_1 benchmark_length=120 activate_second_player=1 loading_profiling=1 show_crash_dialog=0 benchmark_delay=40 config: betakey: intel - osarch: '64' + osarch: "64" oslist: windows description: Benchmark Britain executable: bin/shooter_win64_release.exe type: option2 workingdir: bin -'408440': +"408440": installDir: Dream Factory launch: - executable: game.exe type: default -'408520': +"408520": installDir: FORM launch: - config: oslist: windows executable: FORM.exe type: vr -'408640': +"408640": installDir: CODE OF PRINCESS launch: - config: oslist: windows executable: game.exe type: default -'408650': +"408650": installDir: ChromaGun launch: - config: @@ -202656,16 +198652,16 @@ executable: Chromagun.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Chromagun.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Chromagun.x86_64 type: default -'408740': +"408740": installDir: Pro Gamer Manager launch: - config: @@ -202675,19 +198671,19 @@ type: default - config: oslist: windows - ownsdlc: '567740' + ownsdlc: "567740" description: Pro Gamer Manager - Firefight Career executable: NewPGM/PGM.exe type: option1 - config: oslist: macos - ownsdlc: '567740' + ownsdlc: "567740" description: Pro Gamer Manager - Firefight Career executable: NewPGM/PGM.app type: default - config: betakey: pgm2a - osarch: '64' + osarch: "64" oslist: windows description: Pro Gamer Manager 2 executable: pgm2.exe @@ -202700,30 +198696,30 @@ type: default - config: betakey: pgm2a - osarch: '64' + osarch: "64" oslist: linux description: Pro Gamer Manager 2 executable: pgm2.x86_64 type: default -'408750': +"408750": installDir: Starsphere launch: - config: oslist: windows executable: StarSphereSteam.exe type: default -'408760': +"408760": installDir: Pro Cycling Manager 2016 launch: - executable: PCM.exe type: default - - arguments: '-verbose' + - arguments: "-verbose" config: ownsdlc: candidate description: PCM LOG executable: PCM.exe type: default -'408770': +"408770": installDir: Highschool Possession launch: - config: @@ -202741,41 +198737,41 @@ description: Launch executable: Highschool Possession.app type: none -'408860': +"408860": installDir: Dead Stop launch: - config: oslist: windows executable: deadstop.exe type: none -'408880': +"408880": installDir: Heal Them All launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: healthemall.exe type: none - config: oslist: macos - executable: healthemall.app\\Contents\\MacOS\\healthemall + executable: "healthemall.app\\\\Contents\\\\MacOS\\\\healthemall" type: none -'408900': +"408900": installDir: Unfortunate Spacemen launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: UnfortunateSpacemen.exe type: none -'408920': +"408920": installDir: Krai Mira launch: - config: oslist: windows executable: KraiMira.exe type: none -'408960': +"408960": installDir: Zombasite launch: - config: @@ -202793,7 +198789,7 @@ description: Launch executable: Zombasite type: default -'408990': +"408990": installDir: Timber and Stone launch: - config: @@ -202804,7 +198800,7 @@ oslist: macos executable: Timber and Stone.app type: default -'409000': +"409000": installDir: Mystery Chronicle One Way Heroics launch: - config: @@ -202813,27 +198809,27 @@ type: default nameLocalized: japanese: 不思議のクロニクル 振リ返リマセン勝ツマデハ -'409040': +"409040": installDir: Herolike launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Herolike.exe type: none - config: - osarch: '32' + osarch: "32" oslist: windows executable: Herolike_32.exe type: none -'409070': +"409070": installDir: Fist Slash Of Ultimate Fury launch: - config: oslist: windows executable: FSv4.2b(001).exe type: none -'409090': +"409090": installDir: The Big Secret of a Small Town launch: - config: @@ -202841,21 +198837,21 @@ description: Launch executable: TheBigSecret.exe type: none -'409100': +"409100": installDir: The Purring Quest launch: - config: oslist: windows executable: ThePurringQuest.exe type: default -'409130': +"409130": installDir: Demigods launch: - config: oslist: windows executable: Demigods.exe type: none -'409160': +"409160": installDir: Dr Langeskov The Tiger and The Terribly Cursed Emerald A Whirlwind Heist launch: - config: @@ -202866,31 +198862,31 @@ - config: oslist: macos description: Launch - executable: DrLangeskov.app\\Contents\\MacOS\\DrLangeskov + executable: "DrLangeskov.app\\\\Contents\\\\MacOS\\\\DrLangeskov" type: default -'409170': +"409170": installDir: Contract launch: - config: oslist: windows executable: Contract.exe type: default -'40920': +"40920": installDir: NBA 2K10 launch: - executable: nba2k10.exe -'409280': +"409280": installDir: Blue Sheep launch: - config: oslist: windows description: WINDOWS - executable: BlueSheepWin32\\BlueSheep.exe + executable: "BlueSheepWin32\\\\BlueSheep.exe" type: default - config: oslist: macos description: MacOS - executable: BlueSheepMacOS\\BlueSheep.app\\Contents\\MacOS\\BlueSheep + executable: "BlueSheepMacOS\\\\BlueSheep.app\\\\Contents\\\\MacOS\\\\BlueSheep" type: default - arguments: chmod -x config: @@ -202898,7 +198894,7 @@ description: Linux executable: BlueSheepLinux/BlueSheep/Binaries/Linux/BlueSheep type: default -'409290': +"409290": installDir: HerdingDog launch: - config: @@ -202910,39 +198906,39 @@ oslist: macos executable: HerdingDog.app type: default -'40930': +"40930": installDir: WinterBottom launch: - executable: WinterBottom.exe -'409310': - installDir: The Rollingball's Melody +"409310": + installDir: "The Rollingball's Melody" launch: - config: oslist: windows executable: TRBM.exe type: default -'409320': +"409320": installDir: Syndrome launch: - - arguments: 1245huix++#$512cvf + - arguments: "1245huix++#$512cvf" config: - osarch: '64' + osarch: "64" oslist: windows executable: syndrome.exe type: none - - arguments: 1245huix++#$512cvf + - arguments: "1245huix++#$512cvf" config: - osarch: '64' + osarch: "64" oslist: macos executable: Syndrome.app type: none - - arguments: 1245huix++#$512cvf + - arguments: "1245huix++#$512cvf" config: - osarch: '64' + osarch: "64" oslist: linux executable: syndrome.x86_64 type: default -'409340': +"409340": installDir: Perraw launch: - config: @@ -202950,15 +198946,15 @@ description: Launch executable: Perraw.exe type: none -'409350': {} -'409360': - installDir: Faron's Fate +"409350": {} +"409360": + installDir: "Faron's Fate" launch: - config: oslist: windows executable: Launch_FaronsFate.exe type: default -'409370': +"409370": installDir: Monster RPG 2 launch: - config: @@ -202975,25 +198971,25 @@ type: default - config: oslist: windows - ownsdlc: '420240' + ownsdlc: "420240" description: Monster RPG 1 executable: Monster/monster.exe type: option1 workingdir: Monster - config: oslist: macos - ownsdlc: '420240' + ownsdlc: "420240" description: Monster RPG 1 executable: Monster 1.app/Contents/MacOS/monster type: option1 - config: oslist: linux - ownsdlc: '420240' + ownsdlc: "420240" description: Monster RPG 1 executable: Monster/monster type: option1 workingdir: Monster -'409380': +"409380": installDir: Among the Heavens launch: - config: @@ -203008,30 +199004,30 @@ oslist: linux executable: Among the Heavens type: none -'409390': +"409390": installDir: Marble Mountain launch: - - arguments: '-vrmode none -NoSteamVR' + - arguments: "-vrmode none -NoSteamVR" config: oslist: windows executable: marble.exe type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: marble.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: marble.x86_64 type: none - - arguments: '-NoSteamVR' + - arguments: "-NoSteamVR" config: oslist: windows executable: marble.exe type: othervr - - arguments: '-vrmode openvr' + - arguments: "-vrmode openvr" config: oslist: windows executable: marble.exe @@ -203040,15 +199036,13 @@ oslist: macos executable: marble.app type: none - - arguments: '-vrmode none -osvr' + - arguments: "-vrmode none -osvr" config: oslist: windows description: OSVR Mode - description_loc: - english: OSVR Mode executable: marble.exe type: option1 -'409410': +"409410": installDir: ClumsyMooseSeason launch: - config: @@ -203057,17 +199051,17 @@ type: default - config: oslist: macos - executable: ClumsyMooseSeason.app\\Contents\\MacOS\\ClumsyMooseSeason + executable: "ClumsyMooseSeason.app\\\\Contents\\\\MacOS\\\\ClumsyMooseSeason" type: default -'409420': +"409420": installDir: Knight Adventure launch: - config: oslist: windows executable: KnightAdventure.exe type: none -'409440': {} -'409450': +"409440": {} +"409450": installDir: The Fall of the Dungeon Guardians launch: - config: @@ -203079,16 +199073,16 @@ executable: The Fall of the Dungeon Guardians.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: The Fall of the Dungeon Guardians.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: The Fall of the Dungeon Guardians.x86_64 type: default -'409460': +"409460": installDir: Blackfaun launch: - config: @@ -203097,20 +199091,20 @@ type: default - config: oslist: macos - executable: blackfaun.app\\Contents\\MacOS\\Blackfaun + executable: "blackfaun.app\\\\Contents\\\\MacOS\\\\Blackfaun" type: default -'409490': +"409490": installDir: Rogue Harvest launch: - config: oslist: windows executable: Rogue Harvest.exe type: default -'40950': +"40950": installDir: Stronghold launch: - executable: Stronghold.exe -'409510': +"409510": installDir: Genesis Online launch: - config: @@ -203118,7 +199112,7 @@ description: Launch executable: GenesisOnline.exe type: none -'409520': +"409520": installDir: Ginger Beyond the Crystal launch: - config: @@ -203129,7 +199123,7 @@ oslist: macos executable: ginger_btc.app type: none -'409530': +"409530": installDir: 8DAYS launch: - config: @@ -203142,7 +199136,7 @@ description: Launch executable: 8DAYS.app type: none -'409560': +"409560": installDir: Run Rabbit Run launch: - config: @@ -203157,14 +199151,14 @@ oslist: linux executable: runrabbitrun type: none -'409580': +"409580": installDir: No1Left launch: - config: oslist: windows executable: No1Left.exe type: default -'409590': +"409590": installDir: Kingdoms launch: - config: @@ -203172,7 +199166,7 @@ description: Launch KINGDOMS executable: Kingdoms.exe type: none -'40960': +"40960": installDir: Stronghold 2 launch: - config: @@ -203180,21 +199174,21 @@ description: Stronghold 2 Launcher executable: FFLauncher.exe type: default -'409600': +"409600": installDir: Contract With The Devil launch: - config: oslist: windows executable: Contract with the Devil.exe type: none -'409610': +"409610": installDir: One Final Chaos launch: - config: oslist: windows executable: OFCStandalone.exe type: default -'409630': +"409630": installDir: Rumble launch: - config: @@ -203209,7 +199203,7 @@ oslist: linux executable: Rumble.x86 type: default -'409660': +"409660": installDir: Angry Video Game Nerd II ASSimilation launch: - config: @@ -203218,92 +199212,92 @@ type: default - config: oslist: macos - executable: AVGN2.app\\Contents\\MacOS\\AVGN2 + executable: "AVGN2.app\\\\Contents\\\\MacOS\\\\AVGN2" type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: AVGN2.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: AVGN2.x86_64 type: default -'409670': +"409670": installDir: Pink Hour launch: - config: oslist: windows executable: PinkHour.exe type: none -'409690': +"409690": installDir: Pink Heaven launch: - config: oslist: windows executable: PinkHeaven.exe type: none -'40970': +"40970": installDir: Stronghold Crusader Extreme launch: - config: oslist: windows description: Stronghold Crusader executable: Stronghold Crusader.exe -'409710': +"409710": installDir: BioShock Remastered launch: - config: oslist: windows - executable: Build\\Final\\BioshockHD.exe + executable: "Build\\\\Final\\\\BioshockHD.exe" type: default - workingdir: Build\\Final - - arguments: '-log' + workingdir: "Build\\\\Final" + - arguments: "-log" config: betakey: 2k_qa_minspec description: Release Build - executable: Build\\Release\\Bioshock.exe + executable: "Build\\\\Release\\\\Bioshock.exe" type: default - workingdir: Build\\Release + workingdir: "Build\\\\Release" - config: betakey: 2k_qa_fwl description: Final With Logging configuration - executable: Build\\FinalWithLogging\\BioshockHD.exe + executable: "Build\\\\FinalWithLogging\\\\BioshockHD.exe" type: default - workingdir: Build\\FinalWithLogging + workingdir: "Build\\\\FinalWithLogging" - config: betakey: bsg_qa_latest_fwl oslist: windows description: Final With Logging configuration - executable: Build\\FinalWithLogging\\BioshockHD.exe + executable: "Build\\\\FinalWithLogging\\\\BioshockHD.exe" type: default - workingdir: Build\\FinalWithLogging + workingdir: "Build\\\\FinalWithLogging" - config: betakey: preview oslist: windows description: Portcullis Key Entry - executable: SecSoftware\\Launcher.exe + executable: "SecSoftware\\\\Launcher.exe" type: option1 workingdir: SecSoftware - config: betakey: bsg_qa_latest oslist: windows - executable: Build\\Final\\BioShockHD.exe + executable: "Build\\\\Final\\\\BioShockHD.exe" type: default - workingdir: Build\\Final + workingdir: "Build\\\\Final" - config: betakey: bsg_qa_milestone oslist: windows - executable: Build\\Final\\BioShockHD.exe + executable: "Build\\\\Final\\\\BioShockHD.exe" type: default - workingdir: Build\\Final + workingdir: "Build\\\\Final" - config: betakey: 2k_qa oslist: windows - executable: Build\\Final\\BioShockHD.exe + executable: "Build\\\\Final\\\\BioShockHD.exe" type: default - workingdir: Build\\Final + workingdir: "Build\\\\Final" - config: oslist: macos executable: BioShock Remastered.app @@ -203312,55 +199306,51 @@ betakey: qatest1 oslist: windows description: Launch With 2KLauncher - description_loc: - english: Launch With 2KLauncher - executable: 2KLauncher\\LauncherPatcher.exe - workingdir: Build\\Final + executable: "2KLauncher\\\\LauncherPatcher.exe" + workingdir: "Build\\\\Final" - config: - betakey: 'qatest2,dev2klauncherintegration' + betakey: "qatest2,dev2klauncherintegration" description: Launch With 2KLauncher - description_loc: - english: Launch With 2KLauncher - executable: 2KLauncher\\LauncherPatcher.exe - workingdir: Build\\Final + executable: "2KLauncher\\\\LauncherPatcher.exe" + workingdir: "Build\\\\Final" nameLocalized: japanese: バイオショック リマスター koreana: 바이오쇼크 리마스터 schinese: 生化奇兵 重制版 tchinese: 生化奇兵 重製版 -'409720': +"409720": installDir: BioShock 2 Remastered launch: - config: oslist: windows - executable: Build\\Final\\Bioshock2HD.exe + executable: "Build\\\\Final\\\\Bioshock2HD.exe" type: default - workingdir: Build\\Final + workingdir: "Build\\\\Final" - config: betakey: 2k_qa_fwl oslist: windows - executable: Build\\FinalWithLogging\\Bioshock2HD.exe + executable: "Build\\\\FinalWithLogging\\\\Bioshock2HD.exe" type: default - workingdir: Build\\FinalWithLogging + workingdir: "Build\\\\FinalWithLogging" - config: betakey: bsg_qa_latest_fwl oslist: windows description: Final With Logging configuration - executable: Build\\FinalWithLogging\\Bioshock2HD.exe + executable: "Build\\\\FinalWithLogging\\\\Bioshock2HD.exe" type: default - workingdir: Build\\FinalWithLogging + workingdir: "Build\\\\FinalWithLogging" - config: betakey: bsg_qa_latest oslist: windows - executable: Build\\Final\\Bioshock2HD.exe + executable: "Build\\\\Final\\\\Bioshock2HD.exe" type: default - workingdir: Build\\Final + workingdir: "Build\\\\Final" - config: betakey: 2k_qa oslist: windows - executable: Build\\Final\\Bioshock2HD.exe + executable: "Build\\\\Final\\\\Bioshock2HD.exe" type: default - workingdir: Build\\Final + workingdir: "Build\\\\Final" - config: oslist: macos executable: BioShock 2 Remastered.app @@ -203369,24 +199359,20 @@ betakey: qatest1 oslist: windows description: Launch With 2KLauncher - description_loc: - english: Launch With 2KLauncher - executable: 2KLauncher\\LauncherPatcher.exe - workingdir: Build\\Final + executable: "2KLauncher\\\\LauncherPatcher.exe" + workingdir: "Build\\\\Final" - config: - betakey: 'qatest2,dev2klauncherintegration' + betakey: "qatest2,dev2klauncherintegration" oslist: windows description: Launch With 2KLauncher - description_loc: - english: Launch With 2KLauncher - executable: 2KLauncher\\LauncherPatcher.exe - workingdir: Build\\Final + executable: "2KLauncher\\\\LauncherPatcher.exe" + workingdir: "Build\\\\Final" nameLocalized: japanese: バイオショック 2 リマスター koreana: 바이오쇼크 2 리마스터 schinese: 生化奇兵2 重制版 tchinese: 生化奇兵2 重製版 -'409730': +"409730": installDir: DeathByGameShow launch: - config: @@ -203395,20 +199381,20 @@ type: default - config: oslist: macos - executable: Death by GameShow.app\\Contents\\MacOS\\Death by GameShow + executable: "Death by GameShow.app\\\\Contents\\\\MacOS\\\\Death by GameShow" type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Death by GameShow.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: Death by GameShow.x86_64 type: none -'409790': {} -'40980': +"409790": {} +"40980": installDir: Stronghold Legends launch: - config: @@ -203416,7 +199402,7 @@ description: Stronghold Legends Launcher executable: FFLauncher.exe type: default -'409850': +"409850": installDir: Criminal Girls Invite Only launch: - config: @@ -203426,7 +199412,7 @@ type: none nameLocalized: japanese: クリミナルガールズ INVITATION -'409870': +"409870": installDir: Phantom Brave PC launch: - config: @@ -203435,7 +199421,7 @@ type: default nameLocalized: japanese: ファントム・ブレイブ PC -'409890': +"409890": installDir: Stranger of Sword City launch: - config: @@ -203444,7 +199430,7 @@ type: default nameLocalized: japanese: 剣の街の異邦人 ~黒の宮殿~ -'40990': +"40990": installDir: Mafia launch: - description: Play Mafia @@ -203456,29 +199442,29 @@ type: none workingdir: Mafia/ - config: - ownsdlc: '746460' + ownsdlc: "746460" description: Play Mafia (2002) executable: game.exe type: none - config: - ownsdlc: '746460' + ownsdlc: "746460" description: Change Mafia (2002) Settings executable: Mafia/setup.exe type: none -'409910': +"409910": installDir: The Storm Guard launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: The Storm Guard.exe type: none - config: - osarch: '64' + osarch: "64" oslist: macos executable: The Storm Guard.app type: none -'409920': +"409920": installDir: Brilliant Shadows launch: - config: @@ -203489,15 +199475,15 @@ oslist: linux executable: Brilliant Shadows.sh type: default -'4100': +"4100": installDir: Poker Superstars II launch: - executable: PokerSuperstars2.exe -'41000': +"41000": installDir: Serious Sam HD The First Encounter launch: - - executable: Bin\\SamHD.exe -'410000': + - executable: "Bin\\\\SamHD.exe" +"410000": installDir: Chalo Chalo launch: - config: @@ -203508,42 +199494,42 @@ oslist: macos executable: Chalo_Chalo.app type: default -'410040': +"410040": installDir: Hope in Hell launch: - config: oslist: windows executable: HopeInHell.exe type: none -'410050': +"410050": installDir: The Forgotten Forest launch: - config: oslist: windows executable: game.exe type: default -'410110': +"410110": installDir: 12 is Better Than 6 launch: - config: oslist: windows description: 12 is Better Than 6 (High Resolution) - executable: 12ibt6Hi\\12ibt6.exe + executable: "12ibt6Hi\\\\12ibt6.exe" type: option1 - config: oslist: linux description: 12 is Better Than 6 (High Resolution) - executable: 12ibt6Hi\\runner + executable: "12ibt6Hi\\\\runner" type: option1 - config: oslist: windows description: 12 is Better Than 6 (Low Resolution) - executable: 12ibt6Low\\12ibt6.exe + executable: "12ibt6Low\\\\12ibt6.exe" type: option2 - config: oslist: linux description: 12 is Better Than 6 (Low Resolution) - executable: 12ibt6Low\\runner + executable: "12ibt6Low\\\\runner" type: option2 - config: oslist: macos @@ -203555,34 +199541,34 @@ description: 12 is Better Than 6 (Low Resolution) executable: 12isBetterThan6Low.app type: option2 -'410120': +"410120": installDir: AGON - The Mysterious Codex (Trilogy) launch: - config: oslist: windows executable: AGON.exe type: default -'410130': +"410130": installDir: AGON - The Lost Sword of Toledo launch: - config: oslist: windows executable: AGON.exe type: default -'41014': {} -'410150': +"41014": {} +"410150": installDir: Swapperoo launch: - executable: Swapperoo.exe type: none -'410210': +"410210": installDir: Ampersand launch: - config: oslist: windows executable: FuryRacing.exe type: none -'410290': +"410290": installDir: Acorn Assault Rodent Revolution launch: - config: @@ -203593,22 +199579,22 @@ oslist: macos executable: AARR.app type: default -'410320': +"410320": installDir: Earth Defense Force 4.1 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: EDF41.exe type: default -'410330': +"410330": installDir: TurretCraft launch: - config: oslist: windows executable: TurretCraft.exe type: default -'410340': +"410340": installDir: Liftoff launch: - config: @@ -203616,19 +199602,19 @@ description: Liftoff (default) executable: launch.sh type: option1 - - arguments: '-force-vulkan' + - arguments: "-force-vulkan" config: oslist: linux description: Liftoff (Vulkan rendering) executable: launch.sh type: option2 - - arguments: '-force-glcore' + - arguments: "-force-glcore" config: oslist: macos description: Liftoff (default) executable: Liftoff.app type: option1 - - arguments: '-force-metal' + - arguments: "-force-metal" config: oslist: macos description: Liftoff (Metal rendering) @@ -203639,24 +199625,22 @@ description: Liftoff (default) executable: Liftoff.exe type: option1 - - arguments: '-force-vulkan' + - arguments: "-force-vulkan" config: betakey: alphatesting oslist: windows description: Liftoff (Vulkan rendering) - description_loc: - english: Liftoff (Vulkan rendering) executable: Liftoff.exe type: option2 -'410350': {} -'410370': +"410350": {} +"410370": installDir: Huenison launch: - config: oslist: windows executable: Huenison.exe type: default -'410380': +"410380": installDir: HEX SHARDS OF FATE launch: - config: @@ -203667,40 +199651,40 @@ oslist: macos executable: Hex.app/Contents/MacOS/Hex type: none -'410390': +"410390": installDir: Warhammer End Times - VR launch: - - arguments: '-bundle-dir ..\\bundle -ini settings -network \"steam\"' - executable: binaries\\VermintideVR.exe + - arguments: "-bundle-dir ..\\\\bundle -ini settings -network \\\"steam\\\"" + executable: "binaries\\\\VermintideVR.exe" type: vr - workingdir: binaries\\ -'410430': + workingdir: "binaries\\\\" +"410430": installDir: Morphine launch: - config: oslist: windows executable: morphinegame.exe type: default -'410440': +"410440": installDir: Vertigo Void launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: VertigoVoid.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: VertigoVoid.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: VertigoVoid.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: VertigoVoid.x86_64 type: default @@ -203708,7 +199692,7 @@ oslist: macos executable: VertigoVoid.app type: default -'410470': +"410470": installDir: Expander launch: - config: @@ -203717,13 +199701,13 @@ type: none - config: oslist: macos - executable: Expander.app\\Contents\\MacOS\\Expander + executable: "Expander.app\\\\Contents\\\\MacOS\\\\Expander" type: default - config: oslist: linux executable: Expander.x86 type: default -'410490': +"410490": installDir: Elements Epic Heroes launch: - config: @@ -203740,109 +199724,109 @@ oslist: macos executable: epic.app/Contents/MacOS/epic type: default -'41050': +"41050": installDir: Serious Sam Classic The First Encounter launch: - - executable: Bin\\SeriousSam.exe + - executable: "Bin\\\\SeriousSam.exe" - description: SeriousEditor - executable: Bin\\SeriousEditor.exe + executable: "Bin\\\\SeriousEditor.exe" - description: SeriousModeler - executable: Bin\\SeriousModeler.exe -'410540': + executable: "Bin\\\\SeriousModeler.exe" +"410540": installDir: Starlord launch: - - arguments: '-conf dosbox_starlord.conf -conf dosbox_starlord_launch_windows.conf -noconsole' + - arguments: "-conf dosbox_starlord.conf -conf dosbox_starlord_launch_windows.conf -noconsole" config: oslist: windows description: Play Starlord - executable: dosbox_windows\\dosbox.exe + executable: "dosbox_windows\\\\dosbox.exe" type: none - workingdir: dosbox_windows\\ - - arguments: '-conf dosbox_starlord.conf -conf dosbox_starlord_launch_windows.conf -noconsole' + workingdir: "dosbox_windows\\\\" + - arguments: "-conf dosbox_starlord.conf -conf dosbox_starlord_launch_windows.conf -noconsole" config: oslist: windows description: Play Starlord in DOSBox Daum - executable: dosbox_windows\\daum\\dosbox.exe + executable: "dosbox_windows\\\\daum\\\\dosbox.exe" type: none - workingdir: dosbox_windows\\daum\\ - - arguments: '-conf dosbox_starlord.conf -conf dosbox_starlord_config_windows.conf -noconsole' + workingdir: "dosbox_windows\\\\daum\\\\" + - arguments: "-conf dosbox_starlord.conf -conf dosbox_starlord_config_windows.conf -noconsole" config: oslist: windows description: Starlord - Configuration - executable: dosbox_windows\\dosbox.exe + executable: "dosbox_windows\\\\dosbox.exe" type: none - workingdir: dosbox_windows\\ + workingdir: "dosbox_windows\\\\" - config: oslist: linux description: Play Starlord - executable: dosbox_linux\\launch_starlord_game.sh + executable: "dosbox_linux\\\\launch_starlord_game.sh" type: none - workingdir: dosbox_linux\\ + workingdir: "dosbox_linux\\\\" - config: oslist: linux description: Play Starlord in DOSBox Daum - executable: dosbox_linux\\daum\\launch_starlord_game_daum.sh + executable: "dosbox_linux\\\\daum\\\\launch_starlord_game_daum.sh" type: none - workingdir: dosbox_linux\\daum\\ + workingdir: "dosbox_linux\\\\daum\\\\" - config: oslist: linux description: Play Starlord in DOSBox Daum - executable: dosbox_linux\\launch_starlord_config.sh + executable: "dosbox_linux\\\\launch_starlord_config.sh" type: none - workingdir: dosbox_linux\\ -'410550': + workingdir: "dosbox_linux\\\\" +"410550": installDir: Tank The M1A1 ABTS launch: - - arguments: '-conf dosbox_m1a1abs.conf -conf dosbox_m1a1abs_launch_windows.conf -noconsole' + - arguments: "-conf dosbox_m1a1abs.conf -conf dosbox_m1a1abs_launch_windows.conf -noconsole" config: oslist: windows - description: 'Play Tank: The M1A1 Abrams Battle Tank Simulator' - executable: dosbox_windows\\dosbox.exe + description: "Play Tank: The M1A1 Abrams Battle Tank Simulator" + executable: "dosbox_windows\\\\dosbox.exe" type: none - workingdir: dosbox_windows\\ - - arguments: '-conf dosbox_m1a1abs.conf -conf dosbox_m1a1abs_launch_windows.conf -noconsole' + workingdir: "dosbox_windows\\\\" + - arguments: "-conf dosbox_m1a1abs.conf -conf dosbox_m1a1abs_launch_windows.conf -noconsole" config: oslist: windows description: Play in DOSBox Daum - executable: dosbox_windows\\daum\\dosbox.exe + executable: "dosbox_windows\\\\daum\\\\dosbox.exe" type: none - workingdir: dosbox_windows\\daum\\ + workingdir: "dosbox_windows\\\\daum\\\\" - config: oslist: linux - description: 'Play Tank: The M1A1 Abrams Battle Tank Simulator' - executable: dosbox_linux\\launch_m1a1abs_game.sh + description: "Play Tank: The M1A1 Abrams Battle Tank Simulator" + executable: "dosbox_linux\\\\launch_m1a1abs_game.sh" type: none - workingdir: dosbox_linux\\ + workingdir: "dosbox_linux\\\\" - config: oslist: linux description: Play in DOSBox Daum - executable: dosbox_linux\\daum\\launch_m1a1abs_game_daum.sh + executable: "dosbox_linux\\\\daum\\\\launch_m1a1abs_game_daum.sh" type: none - workingdir: dosbox_linux\\daum\\ -'410560': {} -'410570': + workingdir: "dosbox_linux\\\\daum\\\\" +"410560": {} +"410570": installDir: GUNJACK launch: - - arguments: '-PlatformService=Steam' + - arguments: "-PlatformService=Steam" config: oslist: windows executable: Gunjack.exe type: vr -'410590': {} -'41060': +"410590": {} +"41060": installDir: Serious Sam Classic The Second Encounter launch: - - executable: Bin\\SeriousSam.exe + - executable: "Bin\\\\SeriousSam.exe" - description: SeriousEditor - executable: Bin\\SeriousEditor.exe + executable: "Bin\\\\SeriousEditor.exe" - description: SeriousModeler - executable: Bin\\SeriousModeler.exe -'410670': + executable: "Bin\\\\SeriousModeler.exe" +"410670": installDir: Suits launch: - config: oslist: windows - description: 'Suits: A Business RPG' + description: "Suits: A Business RPG" executable: Game.exe type: option1 - config: @@ -203851,24 +199835,22 @@ type: default - config: oslist: macos - description: 'Suits: A Business RPG' + description: "Suits: A Business RPG" executable: Game.app type: option1 -'41070': +"41070": installDir: Serious Sam 3 launch: - config: oslist: windows - executable: Bin\\Sam3.exe - vacmodulefilename: resource\\sourceinit.dat + executable: "Bin\\\\Sam3.exe" - config: oslist: windows description: Play moddable version - executable: Bin\\Sam3_Unrestricted.exe + executable: "Bin\\\\Sam3_Unrestricted.exe" - config: oslist: macos executable: Bin/Sam3 - vacmodulefilename: resource\\sourceinit_macos.dat - config: oslist: macos description: Play moddable version @@ -203882,83 +199864,83 @@ description: Play moddable version executable: Bin/Sam3_Unrestricted workingdir: Bin -'410700': +"410700": installDir: SS1 launch: - - arguments: '-conf dosbox_systemshock.conf -conf dosbox_systemshockcd_launch_windows.conf -noconsole' + - arguments: "-conf dosbox_systemshock.conf -conf dosbox_systemshockcd_launch_windows.conf -noconsole" config: oslist: windows - description: 'System Shock: Classic - CD' - executable: dosbox_windows\\dosbox.exe + description: "System Shock: Classic - CD" + executable: "dosbox_windows\\\\dosbox.exe" type: none - workingdir: dosbox_windows\\ - - arguments: '-conf dosbox_systemshock.conf -conf dosbox_systemshockfd_launch_windows.conf -noconsole' + workingdir: "dosbox_windows\\\\" + - arguments: "-conf dosbox_systemshock.conf -conf dosbox_systemshockfd_launch_windows.conf -noconsole" config: oslist: windows - description: 'System Shock: Classic - Floppy' - executable: dosbox_windows\\dosbox.exe + description: "System Shock: Classic - Floppy" + executable: "dosbox_windows\\\\dosbox.exe" type: none - workingdir: dosbox_windows\\ - - arguments: '-conf dosbox_systemshock.conf -conf dosbox_systemshockcd_launch_windows.conf -noconsole' + workingdir: "dosbox_windows\\\\" + - arguments: "-conf dosbox_systemshock.conf -conf dosbox_systemshockcd_launch_windows.conf -noconsole" config: oslist: windows - description: 'System Shock: Classic - CD (DOSBox Daum)' - executable: dosbox_windows\\daum\\dosbox.exe + description: "System Shock: Classic - CD (DOSBox Daum)" + executable: "dosbox_windows\\\\daum\\\\dosbox.exe" type: none - workingdir: dosbox_windows\\daum\\ - - arguments: '-conf dosbox_systemshock.conf -conf dosbox_systemshockfd_launch_windows.conf -noconsole' + workingdir: "dosbox_windows\\\\daum\\\\" + - arguments: "-conf dosbox_systemshock.conf -conf dosbox_systemshockfd_launch_windows.conf -noconsole" config: oslist: windows - description: 'System Shock: Classic - Floppy (DOSBox Daum)' - executable: dosbox_windows\\daum\\dosbox.exe + description: "System Shock: Classic - Floppy (DOSBox Daum)" + executable: "dosbox_windows\\\\daum\\\\dosbox.exe" type: none - workingdir: dosbox_windows\\daum\\ - - arguments: '-conf dosbox_systemshock.conf -conf dosbox_systemshock_config_windows.conf -noconsole' + workingdir: "dosbox_windows\\\\daum\\\\" + - arguments: "-conf dosbox_systemshock.conf -conf dosbox_systemshock_config_windows.conf -noconsole" config: oslist: windows - description: 'System Shock: Classic - Configuration' - executable: dosbox_windows\\dosbox.exe + description: "System Shock: Classic - Configuration" + executable: "dosbox_windows\\\\dosbox.exe" type: none - workingdir: dosbox_windows\\ + workingdir: "dosbox_windows\\\\" - config: oslist: macos executable: System Shock Classic.app type: none - config: oslist: linux - description: 'System Shock: Classic - CD' - executable: dosbox_linux\\launch_systemshockcd_game.sh + description: "System Shock: Classic - CD" + executable: "dosbox_linux\\\\launch_systemshockcd_game.sh" type: none - workingdir: dosbox_linux\\ + workingdir: "dosbox_linux\\\\" - config: oslist: linux - description: 'System Shock: Classic - Floppy' - executable: dosbox_linux\\launch_systemshockfd_game.sh + description: "System Shock: Classic - Floppy" + executable: "dosbox_linux\\\\launch_systemshockfd_game.sh" type: none - workingdir: dosbox_linux\\ + workingdir: "dosbox_linux\\\\" - config: oslist: linux - description: 'System Shock: Classic - CD (DOSBox Daum)' - executable: dosbox_linux\\daum\\launch_systemshockcd_game_daum.sh + description: "System Shock: Classic - CD (DOSBox Daum)" + executable: "dosbox_linux\\\\daum\\\\launch_systemshockcd_game_daum.sh" type: none - workingdir: dosbox_linux\\daum\\ + workingdir: "dosbox_linux\\\\daum\\\\" - config: oslist: linux - description: 'System Shock: Classic - Floppy (DOSBox Daum)' - executable: dosbox_linux\\daum\\launch_systemshockfd_game_daum.sh + description: "System Shock: Classic - Floppy (DOSBox Daum)" + executable: "dosbox_linux\\\\daum\\\\launch_systemshockfd_game_daum.sh" type: none - workingdir: dosbox_linux\\daum\\ + workingdir: "dosbox_linux\\\\daum\\\\" - config: oslist: linux - description: 'System Shock: Classic - Configuration' - executable: dosbox_linux\\launch_systemshock_config.sh + description: "System Shock: Classic - Configuration" + executable: "dosbox_linux\\\\launch_systemshock_config.sh" type: none - workingdir: dosbox_linux\\ -'410710': + workingdir: "dosbox_linux\\\\" +"410710": installDir: SS1EE launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: sekhmet_x64.exe type: default @@ -203966,12 +199948,12 @@ oslist: macos executable: System Shock.app type: default -'410770': +"410770": installDir: Roads of Rome launch: - executable: RoadsOfRome.exe type: none -'410820': +"410820": installDir: Starward Rogue launch: - config: @@ -203983,16 +199965,16 @@ executable: StarwardRogue.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: StarwardRogueLinux.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: StarwardRogueLinux.x86_64 type: config -'410830': +"410830": installDir: Arena Gods launch: - config: @@ -204003,7 +199985,7 @@ oslist: macos executable: ArenaGods.app type: default -'410840': +"410840": installDir: RockGodTycoon launch: - config: @@ -204014,11 +199996,11 @@ oslist: linux executable: RockGodTycoon type: default -'410850': +"410850": installDir: Dragon Quest Heroes launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: DQH.exe type: default @@ -204026,7 +200008,7 @@ oslist: windows executable: Config.exe type: config -'410890': +"410890": installDir: Higurashi 02 - Watanagashi launch: - config: @@ -204046,7 +200028,7 @@ type: none nameLocalized: japanese: ひぐらしのなく頃に奉 綿流し編 -'410900': +"410900": installDir: Forts launch: - config: @@ -204054,7 +200036,7 @@ description: Launch executable: Forts.exe type: default -'410910': +"410910": installDir: DeathlessTheCitysThirst launch: - config: @@ -204063,19 +200045,19 @@ type: none - config: oslist: macos - executable: Deathless The City's Thirst.app/Contents/MacOS/Deathless The City's Thirst + executable: "Deathless The City's Thirst.app/Contents/MacOS/Deathless The City's Thirst" type: none - config: oslist: linux executable: DeathlessTheCitysThirst type: none -'410970': +"410970": installDir: Master of Orion 1 launch: - - arguments: '-conf \"..\\dosboxMOO1.conf\" -conf \"..\\dosboxMOO1_single.conf\" -noconsole -c exit' + - arguments: "-conf \\\"..\\\\dosboxMOO1.conf\\\" -conf \\\"..\\\\dosboxMOO1_single.conf\\\" -noconsole -c exit" config: oslist: windows - executable: DOSBOX\\DOSBox.exe + executable: "DOSBOX\\\\DOSBox.exe" type: default workingdir: DOSBOX - config: @@ -204086,13 +200068,13 @@ oslist: macos executable: Master Of Orion.app type: default -'410980': +"410980": installDir: Master of Orion 2 launch: - - arguments: '-conf \"..\\dosboxMOO2.conf\" -conf \"..\\dosboxMOO2_single.conf\" -noconsole -c exit' + - arguments: "-conf \\\"..\\\\dosboxMOO2.conf\\\" -conf \\\"..\\\\dosboxMOO2_single.conf\\\" -noconsole -c exit" config: oslist: windows - executable: DOSBOX\\DOSBox.exe + executable: "DOSBOX\\\\DOSBox.exe" type: default workingdir: DOSBOX - config: @@ -204103,14 +200085,14 @@ oslist: macos executable: Master Of Orion 2.app type: default -'410990': +"410990": installDir: Master of Orion 3 launch: - config: oslist: windows executable: moo3.exe type: default -'41100': +"41100": installDir: Hammerfight launch: - config: @@ -204124,7 +200106,7 @@ oslist: linux description: Launch executable: Hammerfight -'411000': +"411000": installDir: Sorcery! launch: - config: @@ -204135,19 +200117,19 @@ oslist: macos executable: Sorcery!.app type: default -'411060': +"411060": installDir: Roads of rome 2 launch: - executable: RoadsOfRome2.exe type: none -'411070': +"411070": installDir: mass_vector launch: - config: oslist: windows executable: massvector.exe type: default -'411080': +"411080": installDir: SHOWTIME 2073 launch: - config: @@ -204160,9 +200142,9 @@ type: none - config: oslist: macos - executable: ST2073.app\\Contents\\MacOS\\ST2073 + executable: "ST2073.app\\\\Contents\\\\MacOS\\\\ST2073" type: none -'411120': +"411120": installDir: Galaxy Admirals launch: - config: @@ -204177,25 +200159,25 @@ oslist: linux executable: GalaxyAdmirals.x86 type: none -'411130': +"411130": installDir: LeviathanTheCargo launch: - config: oslist: windows - description: 'Launch Leviathan: the Cargo' + description: "Launch Leviathan: the Cargo" executable: cargo.exe type: default - config: oslist: macos - description: 'Launch Leviathan: the Cargo' + description: "Launch Leviathan: the Cargo" executable: cargo.app type: default - config: oslist: linux - description: 'Launch Leviathan: the Cargo' + description: "Launch Leviathan: the Cargo" executable: cargo.x86 type: default -'411300': +"411300": installDir: ELEX launch: - config: @@ -204203,7 +200185,7 @@ description: Launch ELEX executable: system/ELEX.exe type: default -'411310': +"411310": installDir: Codename Panzers Phase One launch: - config: @@ -204216,13 +200198,13 @@ description: Launch Codename Panzers Phase One Mod Executable executable: PANZERS_MOD.exe type: none - - arguments: '-windowed' + - arguments: "-windowed" config: oslist: windows description: Launch Codename Panzers Phase One Windowed executable: PANZERS.exe type: none - - arguments: '-windowed' + - arguments: "-windowed" config: oslist: windows description: Launch Codename Panzers Phase One Mod Executable Windowed @@ -204232,7 +200214,7 @@ oslist: windows executable: editor.exe type: editor -'411320': +"411320": installDir: Codename Panzers Phase Two launch: - config: @@ -204245,13 +200227,13 @@ description: Launch Codename Panzers Phase Two Mod Executable executable: Panzers_Phase_2_mod.exe type: none - - arguments: '-windowed' + - arguments: "-windowed" config: oslist: windows description: Launch Codename Panzers Phase Two Windowed executable: Panzers_Phase_2.exe type: none - - arguments: '-windowed' + - arguments: "-windowed" config: oslist: windows description: Launch Codename Panzers Phase Two Mod Executable Windowed @@ -204261,40 +200243,40 @@ oslist: windows executable: EDITOR.exe type: editor -'411330': +"411330": installDir: Men of Valor launch: - config: oslist: windows description: Launch Men of Valor - executable: SYSTEM\\MenofValor.exe + executable: "SYSTEM\\\\MenofValor.exe" type: default - - arguments: '-windowed' + - arguments: "-windowed" config: oslist: windows description: Launch Men of Valor Windowed - executable: SYSTEM\\MenofValor.exe + executable: "SYSTEM\\\\MenofValor.exe" type: none -'411370': +"411370": installDir: MELTY BLOOD Actress Again Current Code launch: - config: oslist: windows executable: MBAA.exe type: default -'411390': +"411390": installDir: Getsuei Gakuen -kou- launch: - config: oslist: windows executable: Getsuei.exe type: default -'411480': +"411480": installDir: Battlecrew Space Pirates launch: - config: betakey: qa_btc - osarch: '64' + osarch: "64" oslist: windows description: Version QA executable: BSP.exe @@ -204303,26 +200285,26 @@ betakey: battlecrew oslist: windows description: BATTLECREW Beta Interne - executable: \\WAL\\Binaries\\Win64\\WAL.exe + executable: "\\\\WAL\\\\Binaries\\\\Win64\\\\WAL.exe" type: option1 - config: oslist: windows description: BATTLECREW Space Pirate executable: BSP.exe type: default -'411520': +"411520": installDir: State of Extinction launch: - config: oslist: windows executable: State of Extinction - Early Access.exe type: none -'411530': +"411530": installDir: Roads of Rome 3 launch: - executable: RoadsOfRome3.exe type: none -'411540': +"411540": installDir: Hybrid Wars launch: - config: @@ -204334,34 +200316,34 @@ executable: HW.exe type: none - config: - osarch: '64' + osarch: "64" oslist: macos executable: HW.app type: default -'411550': +"411550": installDir: Island Tribe launch: - executable: islands.exe type: none -'411560': +"411560": installDir: Reveal The Deep launch: - config: oslist: macos - description: 'Reveal the Deep : OSX' + description: "Reveal the Deep : OSX" executable: Reveal the Deep.app type: none - config: oslist: windows - description: 'Reveal The Deep : Windows' + description: "Reveal The Deep : Windows" executable: rtd.exe type: default - config: oslist: linux - description: 'Reveal The Deep : Linux' + description: "Reveal The Deep : Linux" executable: Linux/RevealTheDeep type: default -'411570': +"411570": installDir: ZombieExodus launch: - config: @@ -204376,7 +200358,7 @@ oslist: linux executable: ZombieExodus type: none -'411590': +"411590": installDir: Rivers of Alice launch: - config: @@ -204387,15 +200369,15 @@ oslist: macos executable: Alice.app type: none -'411600': +"411600": installDir: The Sentient launch: - config: oslist: windows executable: TheSentient.exe type: default -'411610': - installDir: Tick's Tales +"411610": + installDir: "Tick's Tales" launch: - config: oslist: windows @@ -204403,27 +200385,27 @@ type: none - config: oslist: macos - executable: Tick's Tales.app/Contents/MacOS/Tick's Tales + executable: "Tick's Tales.app/Contents/MacOS/Tick's Tales" type: none - config: - osarch: '64' + osarch: "64" oslist: linux - executable: amd64/Tick's Tales + executable: "amd64/Tick's Tales" type: none - config: - osarch: '32' + osarch: "32" oslist: linux - executable: i586/Tick's Tales + executable: "i586/Tick's Tales" type: none -'411620': +"411620": installDir: Pane In The Glass launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: PaneInTheGlass.exe type: vr -'411630': +"411630": installDir: Wicked Witches launch: - config: @@ -204438,7 +200420,7 @@ oslist: linux executable: WickedWitches.x86_64 type: default -'411680': +"411680": installDir: Loot Hound launch: - config: @@ -204449,32 +200431,32 @@ oslist: macos executable: Loot Hound.app/Contents/MacOS/Loot Hound type: default -'411690': +"411690": installDir: VROOM - Galleon launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: VROOM - Galleon.exe type: vr -'411720': +"411720": installDir: Quantum Lock launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: FreezeTag.exe type: none -'411740': +"411740": installDir: Yet Another World launch: - config: - osarch: '32' + osarch: "32" oslist: linux executable: yetanotherworld type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: yetanotherworld type: none @@ -204483,23 +200465,23 @@ executable: yetanotherworld.app type: none - config: - osarch: '32' + osarch: "32" oslist: windows executable: yetanotherworld.exe type: none - config: - osarch: '64' + osarch: "64" oslist: windows executable: yetanotherworld.exe type: none -'411750': +"411750": installDir: BrickInventions launch: - config: oslist: windows executable: BrickInventions.exe type: none -'411760': +"411760": installDir: Swordbreaker The Game launch: - config: @@ -204510,51 +200492,45 @@ oslist: macos executable: Swordbreaker The Game.app type: default -'411820': +"411820": installDir: TheFOOShow launch: - config: oslist: windows - description: 'Launch The FOO Show! ' + description: "Launch The FOO Show! " executable: foo.exe type: vr - - arguments: '-2dme' + - arguments: "-2dme" config: oslist: windows description: 2D Version executable: foo.exe type: option1 -'411830': +"411830": installDir: Senran Kagura Shinovi Versus launch: - executable: SKShinoviVersus.exe type: none - - arguments: '-oldserver' + - arguments: "-oldserver" config: betakey: beta - description: 'Play SENRAN KAGURA SHINOVI VERSUS [Steam version]' - description_loc: - english: 'Play SENRAN KAGURA SHINOVI VERSUS [Steam version]' - japanese: Steam版閃乱カグラSHINOVI VERSUS-少女達の証明-をプレイする + description: "Play SENRAN KAGURA SHINOVI VERSUS [Steam version]" executable: SKShinoviVersus.exe - - arguments: '-newserver' + - arguments: "-newserver" config: betakey: beta - description: 'Play SENRAN KAGURA SHINOVI VERSUS [GOG version]' - description_loc: - english: 'Play SENRAN KAGURA SHINOVI VERSUS [GOG version]' - japanese: GOG版閃乱カグラSHINOVI VERSUS-少女達の証明-をプレイする + description: "Play SENRAN KAGURA SHINOVI VERSUS [GOG version]" executable: SKShinoviVersus.exe nameLocalized: japanese: 閃乱カグラ SHINOVI VERSUS -少女達の証明- -'411860': +"411860": installDir: Save the Creatures launch: - config: oslist: windows executable: Creatures.exe type: none -'411870': +"411870": installDir: Discovering Colors - Animals launch: - config: @@ -204566,16 +200542,16 @@ executable: Discovering Colors.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Discovering Colors.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Discovering Colors.x86_64 type: default -'411880': +"411880": installDir: once13 launch: - config: @@ -204586,7 +200562,7 @@ oslist: macos executable: once13-win.app type: none -'411960': +"411960": installDir: TY the Tasmanian Tiger launch: - config: @@ -204599,7 +200575,7 @@ description: Launch executable: TY type: none -'411970': +"411970": installDir: TY the Tasmanian Tiger 2 launch: - config: @@ -204607,7 +200583,7 @@ description: Launch executable: TY2.exe type: none -'411980': +"411980": installDir: TY the Tasmanian Tiger 3 launch: - config: @@ -204615,7 +200591,7 @@ description: Launch executable: TY3.exe type: none -'412010': +"412010": installDir: Crossbow Warrior - The Legend of William Tell launch: - config: @@ -204624,18 +200600,18 @@ type: default - config: oslist: macos - executable: Crossbow_Warrior_OSX.app\\Contents\\MacOS\\Crossbow_Warrior_OSX + executable: "Crossbow_Warrior_OSX.app\\\\Contents\\\\MacOS\\\\Crossbow_Warrior_OSX" type: default -'412020': +"412020": installDir: Metro Exodus launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: MetroExodus.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: MetroExodus type: none @@ -204644,34 +200620,34 @@ description: Launch executable: MetroExodus.app type: none -'412050': +"412050": installDir: HordeZ launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ZenzVRSZombieDemoVive.exe type: vr -'41210': +"41210": installDir: Eufloria launch: - executable: Eufloria.exe -'412130': {} -'412140': {} -'412150': {} -'412170': +"412130": {} +"412140": {} +"412150": {} +"412170": installDir: City of Chains launch: - executable: game.exe type: none -'412210': +"412210": installDir: WarfrontDefenders launch: - config: oslist: windows executable: WarfrontDefenders.exe type: none -'412220': +"412220": installDir: DDraceNetwork launch: - config: @@ -204681,7 +200657,7 @@ workingdir: ddnet - config: oslist: windows - executable: ddnet\\DDNet.exe + executable: "ddnet\\\\DDNet.exe" type: default workingdir: ddnet - config: @@ -204689,16 +200665,14 @@ executable: ddnet/DDNet type: default workingdir: ddnet - - arguments: \"gfx_backend Vulkan\" + - arguments: "\\\"gfx_backend Vulkan\\\"" config: oslist: windows description: with Vulkan (for AMD GPU Beta driver) - description_loc: - english: with Vulkan (for AMD GPU Beta driver) - executable: ddnet\\DDNet.exe + executable: "ddnet\\\\DDNet.exe" type: option1 workingdir: ddnet -'412230': +"412230": installDir: InfiniTrap Classic launch: - config: @@ -204725,7 +200699,7 @@ oslist: macos executable: LevelEditor.app type: editor -'412250': +"412250": installDir: Empires Of Creation launch: - config: @@ -204740,7 +200714,7 @@ oslist: macos executable: EmpiresOfCreation.app type: none -'412270': +"412270": installDir: Stories of Bethem Full Moon Edition launch: - config: @@ -204749,20 +200723,20 @@ type: default - config: oslist: macos - executable: StoriesOfBethemFullMoon.app\\Contents\\MacOS\\StoriesOfBethemFullMoon + executable: "StoriesOfBethemFullMoon.app\\\\Contents\\\\MacOS\\\\StoriesOfBethemFullMoon" type: default - config: oslist: linux executable: StoriesOfBethemFullMoon type: default -'412290': +"412290": installDir: The Dreamlord launch: - config: oslist: windows executable: TheDreamlord.exe type: none -'412310': +"412310": installDir: Labyrinth launch: - config: @@ -204785,22 +200759,22 @@ description: Play Latest (Autobuild) executable: spelldrifter.app type: default -'412360': +"412360": installDir: SightLine launch: - config: - osarch: '64' + osarch: "64" oslist: windows - description: 'SightLine: The Chair' + description: "SightLine: The Chair" executable: Sightline - The Chair.exe type: vr - config: - osarch: '64' + osarch: "64" oslist: windows description: SightLine 2013 VR Jam Demo executable: SightLine.exe type: vr -'412370': +"412370": installDir: Parallels launch: - config: @@ -204809,21 +200783,21 @@ type: none - config: oslist: macos - executable: Parallels.app\\Contents\\MacOS\\PTPlayer + executable: "Parallels.app\\\\Contents\\\\MacOS\\\\PTPlayer" type: none -'412380': +"412380": installDir: Legend launch: - config: oslist: windows executable: legend.exe type: default -'412400': +"412400": installDir: GASP launch: - executable: GASP.exe type: none -'412410': +"412410": installDir: Castle Chaos launch: - config: @@ -204834,24 +200808,24 @@ oslist: macos executable: CastleChaos.app type: default - - arguments: '-force-opengl' + - arguments: "-force-opengl" config: - osarch: '32' + osarch: "32" oslist: linux executable: CastleChaos.x86 type: default - - arguments: '-force-opengl' + - arguments: "-force-opengl" config: - osarch: '64' + osarch: "64" oslist: linux executable: CastleChaos.x86_64 type: default -'412440': - installDir: Jane's Realty +"412440": + installDir: "Jane's Realty" launch: - executable: JanesRealty.exe type: none -'412450': +"412450": installDir: BlackDeath launch: - config: @@ -204863,22 +200837,22 @@ description: Launcher executable: PlagueLauncher.exe type: option1 -'412460': +"412460": installDir: Villagers launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch 64-Bit executable: Villagers.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Villagers.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Villagers.x86_64 type: default @@ -204887,41 +200861,41 @@ executable: Villagers.app type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: Villagers.exe type: default -'412470': +"412470": installDir: Metal War Online Retribution launch: - - arguments: '-platform-steam' + - arguments: "-platform-steam" executable: MWOLauncher.exe type: default -'412480': +"412480": installDir: Turtle Odyssey launch: - executable: Game.exe type: none -'412490': +"412490": installDir: Yrminsul launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Yrminsul.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: Yrminsul.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Yrminsul.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Yrminsul.x86 type: default @@ -204929,7 +200903,7 @@ oslist: macos executable: Yrminsul.app type: default -'412520': +"412520": installDir: Evil Defenders launch: - config: @@ -204938,16 +200912,16 @@ type: default - config: oslist: macos - executable: Evil Defenders.app\\Contents\\MacOS\\Evil Defenders + executable: "Evil Defenders.app\\\\Contents\\\\MacOS\\\\Evil Defenders" type: default -'412530': +"412530": installDir: Atlantic Quest 2 - New Adventure - launch: - config: oslist: windows executable: AQ2.exe type: default -'412540': +"412540": installDir: The Minotaur launch: - config: @@ -204956,14 +200930,14 @@ type: none - config: oslist: macos - executable: TheMinotaur.app\\Contents\\MacOS\\TheMinotaur + executable: "TheMinotaur.app\\\\Contents\\\\MacOS\\\\TheMinotaur" type: none -'412600': +"412600": installDir: Lup launch: - executable: game.exe type: none -'412620': +"412620": installDir: CropDuster Supreme launch: - config: @@ -204978,14 +200952,14 @@ oslist: linux executable: CropDusterSupreme.x86 type: none -'412640': +"412640": installDir: ImmerseCreator launch: - config: oslist: windows executable: ImmerseCreator.exe type: vr -'412660': +"412660": installDir: Klang launch: - config: @@ -204997,18 +200971,18 @@ description: achievementtesting executable: nw.exe type: option1 -'412670': +"412670": installDir: Bullet Heaven 2 launch: - executable: Bullet Heaven 2.exe type: none -'412720': +"412720": installDir: SMASH+GRAB launch: - arguments: ufgruntime.exe -authmethod session -ui_mode on -logFile UFGRuntime_log.txt executable: Bootstrapper.exe type: default -'412730': +"412730": installDir: DaysUnderCustody launch: - config: @@ -205021,16 +200995,16 @@ type: none - config: oslist: macos - executable: daysundercustody.app\\Contents\\MacOS\\nwjs + executable: "daysundercustody.app\\\\Contents\\\\MacOS\\\\nwjs" type: none -'412740': +"412740": installDir: Audioshield launch: - config: oslist: windows executable: Audioshield.exe type: vr -'412760': +"412760": installDir: Revolve launch: - config: @@ -205039,19 +201013,19 @@ type: default - config: oslist: macos - executable: Revolve.app\\Contents\\MacOS\\Revolve + executable: "Revolve.app\\\\Contents\\\\MacOS\\\\Revolve" type: default -'412770': +"412770": installDir: Boogeyman launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Windows64 executable: Boogeyman64.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows description: Windows32 executable: Boogeyman32.exe @@ -205061,98 +201035,92 @@ executable: Boogeyman.app type: default - config: - osarch: '64' + osarch: "64" oslist: windows description: VR Launcher executable: Boogeyman64.exe type: vr -'412790': - installDir: Adventure Time Magic Man's Head Games +"412790": + installDir: "Adventure Time Magic Man's Head Games" launch: - config: oslist: windows executable: atmmhg.exe type: vr -'412830': +"412830": installDir: STEINS;GATE launch: - config: oslist: windows executable: Launcher.exe type: default -'412860': +"412860": installDir: Zombie Office Politics launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: zop.exe type: none - config: - osarch: '32' + osarch: "32" oslist: windows executable: game.exe type: none -'412880': +"412880": installDir: Drift Streets Japan Windows launch: - config: oslist: windows executable: Drift Streets Japan.exe type: default -'412930': +"412930": installDir: Farm Mania Hot Vacation launch: - executable: Farm.exe type: none -'412940': +"412940": installDir: B2DI launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: bin/win_x64_release/Dinoisland1.exe type: default -'412970': +"412970": installDir: Beatbuddy Music Mix launch: - config: oslist: windows executable: BBMM.exe type: default -'41300': +"41300": installDir: Altitude launch: - config: oslist: linux description: Launch - description_loc: - english: Launch executable: bin/Altitude type: none - config: oslist: windows description: Launch - description_loc: - english: Launch executable: Altitude.exe type: none - config: oslist: macos description: Launch - description_loc: - english: Launch executable: Altitude.app type: none -'413030': +"413030": installDir: Mytheon launch: - - arguments: 'NOARTPROCESS ' + - arguments: "NOARTPROCESS " config: oslist: windows executable: PGLauncher.exe type: default -'413040': +"413040": installDir: Eekeemoo launch: - config: @@ -205163,21 +201131,21 @@ oslist: macos executable: Eekeemoo.app type: default -'413110': - installDir: Hero's Song +"413110": + installDir: "Hero's Song" launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: HerosSong.exe type: default - config: - osarch: '64' + osarch: "64" oslist: macos executable: HerosSong.app type: default -'413120': {} -'413150': +"413120": {} +"413150": installDir: Stardew Valley launch: - config: @@ -205194,35 +201162,35 @@ oslist: linux executable: StardewValley type: none -'413350': +"413350": installDir: Daydream Blue launch: - description: Launch executable: daydreamblue.exe type: vr -'413410': +"413410": installDir: Danganronpa Trigger Happy Havoc launch: - - arguments: '-s' + - arguments: "-s" config: oslist: windows executable: Launcher.exe type: config - - arguments: '-s' + - arguments: "-s" config: oslist: macos description: Start Launcher executable: Launcher.app/Contents/MacOS/Launcher type: default - - arguments: '-s' + - arguments: "-s" config: - osarch: '64' + osarch: "64" oslist: linux executable: Launcher type: default - - arguments: '-s -32' + - arguments: "-s -32" config: - osarch: '32' + osarch: "32" oslist: linux executable: Launcher type: default @@ -205233,28 +201201,28 @@ type: none nameLocalized: japanese: ダンガンロンパ 希望の学園と絶望の高校生 -'413420': +"413420": installDir: Danganronpa 2 Goodbye Despair launch: - - arguments: '-s' + - arguments: "-s" config: oslist: windows executable: Launcher.exe type: config - - arguments: '-s' + - arguments: "-s" config: oslist: macos executable: Launcher.app/Contents/MacOS/Launcher type: config - - arguments: '-s' + - arguments: "-s" config: - osarch: '64' + osarch: "64" oslist: linux executable: Launcher type: config - - arguments: '-s -32' + - arguments: "-s -32" config: - osarch: '32' + osarch: "32" oslist: linux executable: Launcher type: config @@ -205266,13 +201234,13 @@ nameLocalized: japanese: スーパーダンガンロンパ2 さよなら絶望学園 tchinese: 超級槍彈辯駁2 再會了絕望學園 -'413460': +"413460": installDir: Draft Day Sports College Basketball 3 launch: - description: Launch executable: DDSCB3.exe type: none -'413470': +"413470": installDir: Where Angels Cry - Tears Of The Fallen (Collectors Edition) launch: - config: @@ -205281,24 +201249,24 @@ type: default - config: oslist: macos - executable: WhereAngelsCry_TearsOfTheFallen_CE.app\\Contents\\MacOS\\WhereAngelsCry_TearsOfTheFallen_CE + executable: "WhereAngelsCry_TearsOfTheFallen_CE.app\\\\Contents\\\\MacOS\\\\WhereAngelsCry_TearsOfTheFallen_CE" type: default - workingdir: WhereAngelsCry_TearsOfTheFallen_CE.app\\Contents\\MacOS -'413480': + workingdir: "WhereAngelsCry_TearsOfTheFallen_CE.app\\\\Contents\\\\MacOS" +"413480": installDir: 101 Ways to Die launch: - config: oslist: windows executable: 101wtd.exe type: default -'413490': +"413490": installDir: Rothschild_TSWW launch: - config: oslist: windows executable: Rothschild.exe type: default -'413500': +"413500": installDir: Rocket Fist launch: - config: @@ -205314,17 +201282,17 @@ oslist: macos executable: RocketFist.app type: default -'413510': {} -'413540': +"413510": {} +"413540": installDir: Recourse launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: Recourse.exe type: none -'413580': +"413580": installDir: Reverse x Reverse launch: - config: @@ -205332,100 +201300,100 @@ description: Launch Reverse x Reverse. executable: revrev.exe type: default - - arguments: '-fullscreen' + - arguments: "-fullscreen" description: in fullscreen mode. executable: revrev.exe type: option1 -'413620': +"413620": installDir: Space Needle VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: EVR.exe type: vr -'413650': +"413650": installDir: Invasion of Area 51 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Area_51.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: Area_51.exe type: default nameLocalized: english: The Invasion of Area 51 -'413680': +"413680": installDir: Statues launch: - config: oslist: windows executable: Statues.exe type: none -'413700': +"413700": installDir: RunTurnDie launch: - config: oslist: windows executable: RunTurnDie.exe type: default -'413710': +"413710": installDir: Blood & Gold Caribbean! launch: - - description: 'Blood and Gold: Caribbean!' + - description: "Blood and Gold: Caribbean!" executable: Launcher.exe type: none - config: - ownsdlc: '659930' + ownsdlc: "659930" description: The Zombiest Adventures DLC - executable: Zombiest\\zombiest.exe + executable: "Zombiest\\\\zombiest.exe" type: none - workingdir: Zombiest\\ -'413740': + workingdir: "Zombiest\\\\" +"413740": installDir: Mines of Mars launch: - config: - osarch: '32' + osarch: "32" oslist: macos executable: MoM.app type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: MoM.exe type: default - - arguments: '-windowed' + - arguments: "-windowed" config: oslist: windows executable: MoM.exe type: none -'413750': +"413750": installDir: Turtle VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: .\\TurtleVR/Binaries/Win64/TurtleVR-Win64-Shipping.exe + executable: ".\\\\TurtleVR/Binaries/Win64/TurtleVR-Win64-Shipping.exe" type: vr -'413760': +"413760": installDir: Go To Bed Survive The Night launch: - config: oslist: windows executable: gotobedsteamedition.exe type: default -'413830': +"413830": installDir: Overdosed - A Trip To Hell launch: - config: oslist: windows executable: Overdosed.exe type: default -'413870': +"413870": installDir: Sickness launch: - config: @@ -205441,18 +201409,18 @@ oslist: linux executable: Sickness.sh type: none -'41400': +"41400": installDir: Doom Rails launch: - executable: Doom Rails.exe -'414060': +"414060": installDir: Iso-Sphere launch: - config: oslist: windows executable: game.exe type: default - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" config: oslist: windows executable: game.exe @@ -205461,13 +201429,13 @@ oslist: macos executable: iso-sphere.app type: default - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" config: oslist: macos executable: iso-sphere.app type: config -'414070': {} -'414080': +"414070": {} +"414080": installDir: Life is Hard launch: - config: @@ -205476,13 +201444,13 @@ executable: LifeIsHard.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux description: Linux x86 executable: LifeIsHard.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: Linux x64 executable: LifeIsHard.x86_64 @@ -205493,7 +201461,7 @@ executable: LifeIsHardMacOS.app type: default - config: - osarch: '64' + osarch: "64" oslist: windows description: LiH-Configurator executable: LiH-Configurator.exe @@ -205501,36 +201469,36 @@ - config: betakey: alpha oslist: windows - description: '''alpha'' branch' + description: "'alpha' branch" executable: Alpha_LifeIsHard7.exe type: option2 - config: betakey: legacy oslist: windows - description: '''legacy'' branch' + description: "'legacy' branch" executable: LiHPreBetav89.exe type: option2 -'414090': +"414090": installDir: The Warden launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: The Warden.exe type: default -'414120': +"414120": installDir: Modbox launch: - - arguments: '-desktop' + - arguments: "-desktop" executable: modbox.exe type: default - - arguments: '-steamvr' + - arguments: "-steamvr" executable: modbox.exe type: vr - - arguments: '-oculus' + - arguments: "-oculus" executable: modbox.exe type: othervr -'414130': +"414130": installDir: Fall of the Titanic launch: - config: @@ -205542,7 +201510,7 @@ description: Oculus Rift Version executable: Fall of the Titanic Oculus.exe type: none -'414140': +"414140": installDir: Jewel bits launch: - config: @@ -205551,13 +201519,13 @@ type: default - config: oslist: macos - executable: jewelbits.app\\Contents\\MacOS\\jewelbits + executable: "jewelbits.app\\\\Contents\\\\MacOS\\\\jewelbits" type: default -'414160': +"414160": installDir: Nubarron launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Nubarron.exe type: default @@ -205569,37 +201537,37 @@ oslist: linux executable: nubarron.x86_64 type: none -'414190': +"414190": installDir: Junk Jack launch: - config: - osarch: '32' + osarch: "32" oslist: windows - executable: bin\\x86\\junkjack.exe + executable: "bin\\\\x86\\\\junkjack.exe" type: default - config: oslist: macos - executable: Junk Jack.app\\Contents\\MacOS\\Junk Jack + executable: "Junk Jack.app\\\\Contents\\\\MacOS\\\\Junk Jack" type: default - config: - osarch: '64' + osarch: "64" oslist: windows - executable: bin\\x64\\junkjack.exe + executable: "bin\\\\x64\\\\junkjack.exe" type: default - config: - osarch: '64' + osarch: "64" oslist: linux - executable: bin\\junkjack + executable: "bin\\\\junkjack" type: default -'414260': +"414260": installDir: Ironclads 2 American Civil War launch: - config: oslist: windows executable: Ironclads_American_Civil_War_2.exe type: default -'414290': {} -'414330': +"414290": {} +"414330": installDir: WeAreChicago launch: - config: @@ -205619,28 +201587,24 @@ description: Install Video Codecs executable: VideoCodecInstaller.sh type: none -'414340': +"414340": installDir: Hellblade launch: - config: oslist: windows executable: HellbladeGame.exe type: default - - arguments: '-dx11' + - arguments: "-dx11" config: betakey: qloc_ms8 oslist: windows description: Launch with DirectX 11 - description_loc: - english: Launch with DirectX 11 executable: HellbladeGame.exe - config: oslist: windows description: Launch Without Prerequisites - description_loc: - english: Launch Without Prerequisites - executable: HellbladeGame\\Binaries\\Win64\\HellbladeGame-Win64-Shipping.exe -'414370': + executable: "HellbladeGame\\\\Binaries\\\\Win64\\\\HellbladeGame-Win64-Shipping.exe" +"414370": installDir: Raining Blobs launch: - config: @@ -205655,15 +201619,15 @@ oslist: macos executable: RainingBlobs type: none -'414470': +"414470": installDir: AzathothWindows launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Azathoth.exe type: none -'414490': +"414490": installDir: Crashnauts launch: - config: @@ -205674,15 +201638,15 @@ oslist: macos executable: Crashnauts.app type: none -'414500': +"414500": installDir: Caribbean Odyssey launch: - config: oslist: windows executable: Odyssey.exe type: default -'414510': - installDir: '5089' +"414510": + installDir: "5089" launch: - config: oslist: windows @@ -205705,38 +201669,36 @@ executable: 5089.bat type: vr - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch with OSVR API - description_loc: - english: Launch with OSVR API executable: 5089-osvr.bat type: option1 -'414530': +"414530": installDir: Skyforge launch: - - arguments: '-FromSteam' + - arguments: "-FromSteam" config: oslist: windows executable: SkyforgeMycomSteamLoader.exe type: none -'414550': +"414550": installDir: Death Toll launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: DeathToll.exe type: default -'414580': - installDir: Uriel's Chasm 2 +"414580": + installDir: "Uriel's Chasm 2" launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: et.exe type: default -'414660': +"414660": installDir: Vampire Legends launch: - config: @@ -205745,13 +201707,13 @@ executable: VampireLegends.exe type: none - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: VampireLegends_i386 type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: VampireLegends_amd64 @@ -205761,15 +201723,15 @@ description: Launch executable: mac_steam.app/Contents/MacOS/mac_steam type: none -'414700': +"414700": installDir: Outlast 2 launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: Binaries\\Win64\\Outlast2.exe + executable: "Binaries\\\\Win64\\\\Outlast2.exe" type: default -'414720': +"414720": installDir: Astrox launch: - config: @@ -205780,7 +201742,7 @@ oslist: macos executable: astrox.app type: none -'414730': +"414730": installDir: Epic Clicker Journey launch: - config: @@ -205795,15 +201757,15 @@ oslist: linux executable: Epic Clicker Journey.x86 type: default -'414740': +"414740": installDir: RAID World War II launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: raid_win64_d3d9_release.exe type: default -'414760': +"414760": installDir: Blue-CollarAstronaut launch: - config: @@ -205813,20 +201775,20 @@ type: default - config: oslist: macos - executable: Blue-CollarAstronaut.app\\Contents\\MacOS\\Blue-CollarAstronaut + executable: "Blue-CollarAstronaut.app\\\\Contents\\\\MacOS\\\\Blue-CollarAstronaut" type: default - config: oslist: linux executable: Blue-CollarAstronaut.x86 type: default -'414770': +"414770": installDir: Bionite_Origins launch: - config: oslist: windows executable: Bionite0010.exe type: default -'414810': +"414810": installDir: Observatory VR launch: - config: @@ -205862,42 +201824,42 @@ executable: slide.app type: none - config: - osarch: '64' + osarch: "64" oslist: windows description: Hamster Slide (Vive) executable: slide - vive.exe type: vr - config: - osarch: '64' + osarch: "64" oslist: windows description: Phantasmagoria (Vive) executable: phantasmagoria - vive.exe type: vr - config: - osarch: '64' + osarch: "64" oslist: macos description: Hamster Slide (Vive) executable: slide - vive.app type: vr - config: - osarch: '64' + osarch: "64" oslist: macos description: Phantasmagoria (Vive) executable: phantasmagoria - vive.app type: vr -'414870': +"414870": installDir: Super Mega Baseball 2 launch: - executable: supermegabaseball.exe type: default -'414920': +"414920": installDir: CORGI WARLOCK launch: - config: oslist: windows executable: corgi_warlock.exe type: default -'414950': +"414950": installDir: Star Nomad 2 launch: - config: @@ -205908,7 +201870,7 @@ oslist: macos executable: nw.app type: default -'41500': +"41500": installDir: Torchlight launch: - config: @@ -205918,23 +201880,23 @@ oslist: macos executable: TorchlightMac.app - config: - osarch: '32' + osarch: "32" oslist: linux executable: Torchlight.bin.x86 - config: - osarch: '64' + osarch: "64" oslist: linux executable: Torchlight.bin.x86_64 -'415010': +"415010": installDir: The Other 99 launch: - - arguments: '-fullscreen -UnderWithSteam' + - arguments: "-fullscreen -UnderWithSteam" config: - osarch: '64' + osarch: "64" oslist: windows executable: Under.exe type: default -'415030': +"415030": installDir: OneMoreDungeon launch: - config: @@ -205943,18 +201905,18 @@ type: none - config: oslist: macos - executable: OneMoreDungeon.app\\Contents\\MacOS\\OneMoreDungeon + executable: "OneMoreDungeon.app\\\\Contents\\\\MacOS\\\\OneMoreDungeon" type: none - config: oslist: linux executable: OneMoreDungeon.x86 type: none -'415080': +"415080": installDir: Cyber Team Manager launch: - executable: game.exe type: default -'415090': +"415090": installDir: KByte launch: - config: @@ -205962,12 +201924,12 @@ executable: KByte.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: KByte.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: KByte.x86_64 type: default @@ -205975,12 +201937,12 @@ oslist: macos executable: Kbyte.app type: default -'415150': +"415150": installDir: Pang Adventures launch: - executable: Pang.exe type: default -'415170': +"415170": installDir: Engare launch: - config: @@ -205991,14 +201953,14 @@ oslist: macos executable: Engare.app type: none -'415180': +"415180": installDir: Fort Zombie launch: - config: oslist: windows executable: FortZombie.exe type: none -'415200': +"415200": installDir: Motorsport Manager launch: - config: @@ -206013,30 +201975,30 @@ oslist: macos executable: MM.app type: default -'415240': +"415240": installDir: Feesh launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Play Feesh 32-bit executable: Feesh32.exe type: default - config: oslist: macos - executable: FeeshMac.app\\Contents\\MacOS\\FeeshMac + executable: "FeeshMac.app\\\\Contents\\\\MacOS\\\\FeeshMac" type: default - config: oslist: linux executable: FeeshLin.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch Feesh 64-bit executable: Feesh64.exe type: default -'415270': +"415270": installDir: Star Crusade CCG launch: - config: @@ -206051,23 +202013,23 @@ oslist: macos executable: app.app.zip type: none -'415300': +"415300": installDir: Monster Monpiece launch: - config: oslist: windows executable: MonsterMonpiece.exe type: default -'415330': +"415330": installDir: When In Rome launch: - executable: WhenInRome.exe type: none -'415350': +"415350": installDir: Shooting Stars launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ShootingStars.exe type: default @@ -206080,16 +202042,16 @@ executable: ShootingStars.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: ShootingStars32.exe type: default -'415390': +"415390": installDir: Viking Saga The Cursed Ring launch: - executable: VikingSaga.exe type: none -'415400': +"415400": installDir: Cross Set launch: - config: @@ -206098,80 +202060,80 @@ type: default - config: oslist: macos - executable: CrossSet.app\\contents\\MacOS\\CrossSet + executable: "CrossSet.app\\\\contents\\\\MacOS\\\\CrossSet" type: default - config: oslist: linux executable: CrossSet.x86 type: default -'415420': +"415420": installDir: Nyan Cat Lost In Space launch: - config: oslist: windows - executable: bin_x86\\NyanCat.exe + executable: "bin_x86\\\\NyanCat.exe" type: default workingdir: bin_x86 - config: - osarch: '64' + osarch: "64" oslist: linux executable: bin_x64_linux/game.sh type: none workingdir: bin_x64_linux - - arguments: '-oldschool' + - arguments: "-oldschool" config: oslist: windows description: Retro Mode - executable: bin_x86\\NyanCat.exe + executable: "bin_x86\\\\NyanCat.exe" type: option1 workingdir: bin_x86 - - arguments: '-windowed -w 960 -h 640' + - arguments: "-windowed -w 960 -h 640" config: oslist: windows description: Safe Mode - executable: bin_x86\\NyanCat.exe + executable: "bin_x86\\\\NyanCat.exe" type: option1 workingdir: bin_x86 -'415480': +"415480": installDir: Hyperdevotion Noire launch: - executable: Noire.exe type: default -'415490': {} -'415530': - installDir: 'Fly, Glowfly!' +"415490": {} +"415530": + installDir: "Fly, Glowfly!" launch: - config: oslist: windows executable: FlyGlowfly.exe type: default -'415590': +"415590": installDir: Earthfall launch: - - arguments: '-NoVerifyGC' + - arguments: "-NoVerifyGC" config: oslist: windows executable: Earthfall.exe type: default workingdir: / -'415600': +"415600": installDir: Kart Racing Pro launch: - config: oslist: windows executable: kart.exe type: default - - arguments: '-vrs' + - arguments: "-vrs" config: oslist: windows executable: kart.exe type: vr - - arguments: '-vro' + - arguments: "-vro" config: oslist: windows executable: kart.exe type: othervr -'415610': +"415610": installDir: Red Comrades Save the Galaxy Reloaded launch: - config: @@ -206184,32 +202146,32 @@ executable: petka.app type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: petka.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: petka.x86_64 type: none nameLocalized: russian: Петька и Василий Иванович Спасают Галактику. Перезагрузка -'415620': {} -'415660': +"415620": {} +"415660": installDir: Tiger Knight launch: - config: oslist: windows - executable: ./frontend/bin/frontend.exe + executable: "./frontend/bin/frontend.exe" type: none - workingdir: ./frontend/bin/ -'415670': + workingdir: "./frontend/bin/" +"415670": installDir: highriseheroes launch: - executable: Highrise.exe type: none -'415740': +"415740": installDir: OmniBus launch: - config: @@ -206221,48 +202183,48 @@ executable: OmniBus.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: OmniBus.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: OmniBus.x86_64 type: default -'415780': +"415780": installDir: Bacon Rebellion launch: - config: oslist: windows executable: BaconRebellion.exe type: default -'415830': +"415830": installDir: Gnomes Garden launch: - config: oslist: windows executable: Gnomes Garden.exe type: default -'415840': +"415840": installDir: Mystic Saga launch: - executable: MysticSaga.exe type: none -'415850': +"415850": installDir: BAD END launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: bad_end.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: bad_end_x86.exe type: default -'415860': +"415860": installDir: Tactical Craft Online launch: - config: @@ -206270,7 +202232,7 @@ description: Launch executable: TC.exe type: default -'415880': +"415880": installDir: Disc Jam launch: - config: @@ -206278,7 +202240,7 @@ description: Disc Jam executable: Icon.exe type: option1 - - arguments: '-lowendrenderer' + - arguments: "-lowendrenderer" config: oslist: windows description: Disc Jam (use renderer for low-end PCs) @@ -206289,13 +202251,13 @@ description: Disc Jam executable: DiscJam/Binaries/Linux/Icon-Linux-Shipping type: option1 - - arguments: '-LowEndRenderer' + - arguments: "-LowEndRenderer" config: oslist: linux description: Disc Jam (use renderer for low-end PCs) executable: DiscJam/Binaries/Linux/Icon-Linux-Shipping type: option2 -'415890': +"415890": installDir: Crystal Picnic launch: - config: @@ -206310,7 +202272,7 @@ oslist: macos executable: Crystal Picnic.app/Contents/MacOS/Crystal Picnic type: default -'415900': +"415900": installDir: Bugspeed Collider launch: - config: @@ -206321,7 +202283,7 @@ oslist: macos executable: BugspeedColliderMac.app/Contents/MacOS/BugspeedColliderMac type: default -'415910': +"415910": installDir: Gigachess launch: - config: @@ -206332,22 +202294,22 @@ oslist: macos executable: gigachess_steam_osx.app type: default -'415920': +"415920": installDir: Voidspire Tactics launch: - config: oslist: windows executable: VoidspireTactics.exe type: default -'415950': +"415950": installDir: Yohjo Simulator launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: YohjoSimulator.exe type: default -'415960': +"415960": installDir: Energy Cycle launch: - config: @@ -206361,41 +202323,41 @@ executable: EnergyCycle.app type: none - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: EnergyCycle.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: EnergyCycle.x86_64 type: none -'415980': +"415980": installDir: Quatro Luzes launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: QL64.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: QL.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: QL_linux.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: QL_linux.x86_64 type: default -'415990': +"415990": installDir: Lightbender launch: - config: @@ -206406,15 +202368,15 @@ oslist: macos executable: Lightbender.app type: default -'41600': +"41600": installDir: Earthworm Jim launch: - - executable: Earthworm Jim 3D\\EarthwormJim3D.exe + - executable: "Earthworm Jim 3D\\\\EarthwormJim3D.exe" workingdir: Earthworm Jim 3D -'416000': +"416000": installDir: OrangeSeason launch: - - arguments: '--in-process-gpu --ignore-gpu-blacklist' + - arguments: "--in-process-gpu --ignore-gpu-blacklist" config: oslist: windows description: Launch @@ -206428,64 +202390,64 @@ oslist: linux executable: nw type: default -'416020': +"416020": installDir: Heavy Gear Assault launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: HGGame\\Binaries\\Win64\\HGGame.exe + executable: "HGGame\\\\Binaries\\\\Win64\\\\HGGame.exe" type: default - config: - osarch: '64' + osarch: "64" oslist: windows - executable: HGGame\\Binaries\\Win64\\HGGameDedicatedServer.exe + executable: "HGGame\\\\Binaries\\\\Win64\\\\HGGameDedicatedServer.exe" type: server - config: oslist: linux - executable: HGGame\\Binaries\\Linux\\HGGame + executable: "HGGame\\\\Binaries\\\\Linux\\\\HGGame" type: default - config: oslist: linux - executable: HGGame\\Binaries\\Linux\\HGGameDedicatedServer + executable: "HGGame\\\\Binaries\\\\Linux\\\\HGGameDedicatedServer" type: server -'416030': +"416030": installDir: Your Quest launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: Your Quest.exe type: default -'416040': +"416040": installDir: CLASH launch: - config: oslist: windows executable: Clash.exe type: default -'416060': +"416060": installDir: Westboro launch: - config: oslist: windows executable: westboro.exe type: default -'416070': +"416070": installDir: Mars 2030 launch: - config: oslist: windows executable: Mars-2030.exe type: default -'416080': +"416080": installDir: The Odyssey launch: - config: oslist: windows executable: The Odyssey.exe type: none -'416090': +"416090": installDir: CaretakerRetribution launch: - config: @@ -206500,15 +202462,15 @@ oslist: macos executable: CaretakerRetribution.app type: default -'416110': +"416110": installDir: Blitz Breaker launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: nw.exe type: none -'416120': +"416120": installDir: InterSection launch: - config: @@ -206523,7 +202485,7 @@ oslist: linux executable: InterSection.x86 type: default -'416130': +"416130": installDir: Written in the Sky launch: - config: @@ -206538,43 +202500,43 @@ oslist: linux executable: WITS.sh type: none -'416140': {} -'416160': +"416140": {} +"416160": installDir: Heresy launch: - config: oslist: windows executable: Heresy.exe type: default -'416170': {} -'416180': +"416170": {} +"416180": installDir: Gun Bombers launch: - config: oslist: windows executable: GB.exe type: default -'416190': +"416190": installDir: Vehicle Simulator launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: vs_frame.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: vs_frame_32.exe type: default -'416200': +"416200": installDir: Door To Door launch: - config: oslist: windows - executable: Binaries\\Win32\\DoorToDoor.exe + executable: "Binaries\\\\Win32\\\\DoorToDoor.exe" type: default -'416210': +"416210": installDir: Blockhood launch: - config: @@ -206583,20 +202545,20 @@ type: default - config: oslist: macos - executable: BLOCKHOODv0_60_20_MAC.app\\Contents\\MacOS\\BLOCKHOODv0_60_20_MAC + executable: "BLOCKHOODv0_60_20_MAC.app\\\\Contents\\\\MacOS\\\\BLOCKHOODv0_60_20_MAC" type: default - config: oslist: linux executable: BH_LINUX_UNI.x86_64 type: default -'416220': +"416220": installDir: TLE (The Light Empire) launch: - config: oslist: windows executable: The Light Empire V2.0.exe type: default -'416240': +"416240": installDir: Space Impossible launch: - config: @@ -206611,7 +202573,7 @@ oslist: linux executable: SpaceImpossible.x86_64 type: none -'416250': +"416250": installDir: Tales launch: - config: @@ -206619,67 +202581,67 @@ description: Launch executable: Tales.exe type: none - - arguments: '--setup' + - arguments: "--setup" config: oslist: windows description: Setup executable: Tales.exe type: none -'416260': +"416260": installDir: The Lost Island launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TheLostIsland.exe type: default - config: betakey: prealpha_2018 - osarch: '64' + osarch: "64" oslist: windows description: Launch Between The Blue executable: BetweenTheBlue.exe type: option1 - config: betakey: old_1.0 - osarch: '64' + osarch: "64" oslist: windows - executable: TheLostIslandAlpha\\Binaries\\Win64\\TheLostIslandAlpha.exe + executable: "TheLostIslandAlpha\\\\Binaries\\\\Win64\\\\TheLostIslandAlpha.exe" type: default - config: betakey: old_1.1.3 - osarch: '64' + osarch: "64" oslist: windows - executable: TheLostIslandAlpha\\Binaries\\Win64\\TheLostIslandAlpha.exe + executable: "TheLostIslandAlpha\\\\Binaries\\\\Win64\\\\TheLostIslandAlpha.exe" type: default - config: betakey: old_1.2.0 - osarch: '64' + osarch: "64" oslist: windows - executable: ' TheLostIslandAlpha\\Binaries\\Win64\\TheLostIslandAlpha.exe' + executable: " TheLostIslandAlpha\\\\Binaries\\\\Win64\\\\TheLostIslandAlpha.exe" type: none - config: betakey: old_1.4 - osarch: '64' + osarch: "64" oslist: windows - executable: TheLostIslandAlpha\\Binaries\\Win64\\TheLostIslandAlpha.exe + executable: "TheLostIslandAlpha\\\\Binaries\\\\Win64\\\\TheLostIslandAlpha.exe" type: default -'416270': {} -'416290': +"416270": {} +"416290": installDir: Bleeding Border launch: - config: oslist: windows executable: bleedingborder.exe type: default -'416310': +"416310": installDir: GoblinDefenders launch: - config: oslist: windows executable: GoblinDefenders.exe type: default -'416320': +"416320": installDir: RescueTeam5 launch: - config: @@ -206690,21 +202652,21 @@ oslist: macos executable: Partner.app type: default -'416330': +"416330": installDir: Revolt launch: - config: oslist: windows executable: Revolt.exe type: none -'416340': +"416340": installDir: Viking Saga New World launch: - config: oslist: windows executable: Viking Saga 2 - New World.exe type: none -'416350': +"416350": installDir: MiniBikers launch: - config: @@ -206717,8 +202679,8 @@ description: Launch executable: MiniBikers.app type: default -'416360': - installDir: Max's Big Bust - A Captain Nekorai Tale +"416360": + installDir: "Max's Big Bust - A Captain Nekorai Tale" launch: - config: oslist: windows @@ -206732,23 +202694,23 @@ oslist: linux executable: MBB.sh type: default -'416370': +"416370": installDir: Showing Tonight Mindhunters Incident launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: windows executable: stmi.exe type: none - config: - osarch: '32' + osarch: "32" oslist: linux description: linux x86 executable: stmi.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: linux x64 executable: stmi.x86_64 @@ -206756,29 +202718,29 @@ - config: oslist: macos description: Mac OS X - executable: stmi.app\\Contents\\MacOS\\stmi + executable: "stmi.app\\\\Contents\\\\MacOS\\\\stmi" type: default -'416380': +"416380": installDir: The hurricane of the Varstray -Collateral hazard- launch: - config: oslist: windows executable: Varstray_steam.exe type: default -'416390': +"416390": installDir: Magnetron launch: - config: oslist: windows executable: Magnetron.exe type: default -'416430': - installDir: In The Dead Of Night - Urszula's Revenge +"416430": + installDir: "In The Dead Of Night - Urszula's Revenge" launch: - description: Launch executable: InTheDeadOfNight.exe type: none -'416450': +"416450": installDir: Emporea launch: - config: @@ -206787,9 +202749,9 @@ type: default - config: oslist: macos - executable: emporea.app\\Contents\\MacOS\\Emporea + executable: "emporea.app\\\\Contents\\\\MacOS\\\\Emporea" type: default -'416530': +"416530": installDir: Tacopocalypse launch: - config: @@ -206797,19 +202759,19 @@ description: Launch executable: Tacopocalypse/Binaries/Win32/Tacopocalypse-Win32-Shipping.exe type: default - - arguments: '-opengl4' + - arguments: "-opengl4" config: oslist: macos description: Launch Mac executable: Tacopocalypse/Binaries/Mac/Tacopocalypse-Mac-Shipping.app type: default - - arguments: '-opengl4' + - arguments: "-opengl4" config: oslist: linux description: Launch Linux executable: Tacopocalypse/Binaries/Linux/Tacopocalypse-Linux-Shipping type: default -'416550': +"416550": installDir: Rubber Ducky and the Rainbow Gun launch: - config: @@ -206826,43 +202788,43 @@ oslist: macos executable: Rubber Ducky.app type: none -'416590': +"416590": installDir: Emily Wants To Play launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Emily Wants To Play executable: EmilyWantsToPlay.exe type: default - config: - osarch: '64' + osarch: "64" oslist: macos description: Emily Wants To Play executable: EmilyWantsToPlay.app type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: EmilyWantsToPlay.exe type: default - - arguments: '-vr' + - arguments: "-vr" config: - osarch: '64' + osarch: "64" oslist: windows - executable: EMILYVR415\\EmilyWantsToPlay.exe + executable: "EMILYVR415\\\\EmilyWantsToPlay.exe" type: vr - - arguments: '-vr' + - arguments: "-vr" config: - osarch: '32' + osarch: "32" oslist: windows - executable: EMILYVR415\\EmilyWantsToPlay.exe + executable: "EMILYVR415\\\\EmilyWantsToPlay.exe" type: vr -'41660': +"41660": installDir: Tommy Tronic launch: - executable: tt.exe -'416600': +"416600": installDir: Full Metal Furies launch: - config: @@ -206871,13 +202833,13 @@ type: default - config: oslist: linux - executable: ./FullMetalFuries + executable: "./FullMetalFuries" type: default - config: oslist: macos executable: Full Metal Furies.app/Contents/MacOS/FullMetalFuries type: default -'416610': +"416610": installDir: The Growth Journey launch: - config: @@ -206889,19 +202851,19 @@ executable: tgj.app type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: tgj.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: tgj.x86_64 type: none -'416630': - installDir: True Lover's Knot +"416630": + installDir: "True Lover's Knot" launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows executable: nw.exe @@ -206920,7 +202882,7 @@ oslist: macos executable: nwjs.app type: none -'416640': +"416640": installDir: Diabolical launch: - config: @@ -206935,15 +202897,15 @@ oslist: linux executable: Diabolical type: none -'416670': +"416670": installDir: Gunslingers launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: Gunslingers.exe type: none -'416680': +"416680": installDir: Zombie Night Terror launch: - config: @@ -206955,16 +202917,16 @@ executable: znt.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: znt.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: znt.x86_64 type: default -'416690': +"416690": installDir: Oh Sir launch: - config: @@ -206977,33 +202939,33 @@ type: none - config: oslist: macos - executable: ohsir.app\\Contents\\MacOS\\ohsir + executable: "ohsir.app\\\\Contents\\\\MacOS\\\\ohsir" type: none -'416700': +"416700": installDir: 5 Minutes Rage launch: - - arguments: '-installed' + - arguments: "-installed" config: oslist: windows description: Launch game - executable: FiveMinutesRage\\Binaries\\Win32\\FiveMinutesRage-Win32-Shipping.exe + executable: "FiveMinutesRage\\\\Binaries\\\\Win32\\\\FiveMinutesRage-Win32-Shipping.exe" type: default - description: Open user data folder executable: open_user_data_folder.cmd type: none - - arguments: '-installed -windowed -ResX=1280 -ResY=720' + - arguments: "-installed -windowed -ResX=1280 -ResY=720" config: oslist: windows description: Safe mode - executable: FiveMinutesRage\\Binaries\\Win32\\FiveMinutesRage-Win32-Shipping.exe + executable: "FiveMinutesRage\\\\Binaries\\\\Win32\\\\FiveMinutesRage-Win32-Shipping.exe" type: none -'416720': +"416720": installDir: Toro launch: - description: Launch executable: Toro.exe type: none -'416760': +"416760": installDir: Pay2Win The Tricks Exposed launch: - config: @@ -207014,7 +202976,7 @@ oslist: macos executable: Pay2Win The Tricks Exposed.app/Contents/MacOS/Pay2Win The Tricks Exposed type: default -'416770': +"416770": installDir: SquareCells launch: - config: @@ -207029,7 +202991,7 @@ oslist: linux executable: SquareCells.x86 type: default -'416790': +"416790": installDir: Metronomicon launch: - config: @@ -207045,30 +203007,30 @@ type: default - config: oslist: windows - description: 'Create your own choreography for your own music! Then, pull it into the game and battle!' + description: "Create your own choreography for your own music! Then, pull it into the game and battle!" executable: Metronomicon/MetronomiconSongEditor.exe type: editor workingdir: Metronomicon - config: oslist: macos - description: 'Create your own choreography for your own music! Then, pull it into the game and battle!' + description: "Create your own choreography for your own music! Then, pull it into the game and battle!" executable: Metronomicon.app/Contents/MacOS/MetronomiconSongEditor type: editor workingdir: Metronomicon -'41680': +"41680": installDir: Death and the Fly launch: - executable: datf.exe -'416800': +"416800": installDir: Cluck Yegger in Escape From The Planet of The Poultroid launch: - config: - osarch: '32' + osarch: "32" oslist: linux executable: Cluck_Yegger_Linux_1.11.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Cluck_Yegger_Linux_1.11.x86_64 type: default @@ -207077,18 +203039,18 @@ executable: Cluck_Yegger.app type: default - config: - osarch: '32' + osarch: "32" oslist: windows - description: '1.11' + description: "1.11" executable: Cluck_Yegger_v1.11_x86.exe type: none - config: - osarch: '64' + osarch: "64" oslist: windows - description: '1.11' + description: "1.11" executable: Cluck_Yegger_v1.11_x64.exe type: none -'416830': +"416830": installDir: Light Fall launch: - config: @@ -207099,7 +203061,7 @@ oslist: macos executable: LightFall.app type: default -'416840': +"416840": installDir: Color By launch: - config: @@ -207111,16 +203073,16 @@ executable: ColorBy.app type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: ColorBy.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: ColorBy.x86_64 type: none -'416850': +"416850": installDir: Astral Gun launch: - config: @@ -207135,35 +203097,31 @@ oslist: linux executable: AstralGun.x86 type: none -'416870': +"416870": installDir: Kitty Powers Love Life launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch - description_loc: - english: Launch executable: lovelife.exe type: none - config: oslist: macos description: Launch Mac - executable: lovelife.app\\Contents\\MacOS\\lovelife + executable: "lovelife.app\\\\Contents\\\\MacOS\\\\lovelife" type: none - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch 32-bit - description_loc: - english: Launch 32-bit executable: lovelife.exe type: none -'41700': +"41700": installDir: Stalker Call of Pripyat launch: - - executable: bin\\xrengine.exe -'417020': + - executable: "bin\\\\xrengine.exe" +"417020": installDir: REalM Walk of Soul Book 1 launch: - config: @@ -207173,7 +203131,7 @@ oslist: macos executable: REalM Walk of Soul.app type: none -'417060': +"417060": installDir: UnSummoning the Spectral Horde launch: - config: @@ -207182,21 +203140,21 @@ type: default - config: oslist: macos - executable: UnSummoning.app\\Contents\\MacOS\\UnSummoning + executable: "UnSummoning.app\\\\Contents\\\\MacOS\\\\UnSummoning" type: default - config: oslist: linux executable: UnSummoning.x86 type: default -'417110': +"417110": installDir: Mayjasmine episode01 What is God launch: - config: oslist: windows executable: jasmine.exe type: none -'417130': {} -'417150': +"417130": {} +"417150": installDir: Pavilion launch: - config: @@ -207205,13 +203163,13 @@ type: none - config: oslist: macos - executable: pavilion.app\\Contents\\MacOS\\pavilion + executable: "pavilion.app\\\\Contents\\\\MacOS\\\\pavilion" type: none - config: oslist: linux executable: pavilion.x86 type: none -'417200': +"417200": installDir: Make Sail launch: - config: @@ -207226,50 +203184,50 @@ oslist: linux executable: Make Sail.x86 type: default -'417290': +"417290": installDir: Ghost of a Tale launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: GoaT.exe type: none -'41730': +"41730": installDir: Ion Assault launch: - executable: IonAssault.exe -'417310': +"417310": installDir: Hiragana Pixel Party launch: - config: oslist: windows executable: Hiragana Pixel Party.exe type: default -'417350': +"417350": installDir: Monkey King Saga launch: - - arguments: '-windowed' + - arguments: "-windowed" config: oslist: windows executable: MKTD_PC.exe type: default -'417360': +"417360": installDir: OnlyCans launch: - config: oslist: windows executable: OnlyCans Thirst Date.exe type: none -'41740': +"41740": installDir: Cargo! launch: - - executable: bin\\win32\\Game.exe + - executable: "bin\\\\win32\\\\Game.exe" - description: Cargo! Settings - executable: bin\\win32\\Config.exe + executable: "bin\\\\win32\\\\Config.exe" - arguments: /musictool description: Cargo! MusicTool - executable: bin\\win32\\Config.exe -'417400': + executable: "bin\\\\win32\\\\Config.exe" +"417400": installDir: LeftWay launch: - config: @@ -207277,12 +203235,12 @@ executable: leftway_windows.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: leftway_linux32 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: leftway_linux64 type: default @@ -207290,24 +203248,24 @@ oslist: macos executable: LeftWay.app type: default -'417410': +"417410": installDir: Northern Tale launch: - executable: NorthernTale.exe type: none -'417430': +"417430": installDir: Moto Racer 4 launch: - config: oslist: windows executable: MR4.exe type: default - - arguments: '-opengl' + - arguments: "-opengl" config: oslist: macos executable: MR4.app/Contents/MacOS/MR4 type: none -'417480': +"417480": installDir: Marcus Level launch: - config: @@ -207316,9 +203274,9 @@ type: default - config: oslist: macos - executable: MarcusLevel.app\\Contents\\MacOS\\MarcusLevel + executable: "MarcusLevel.app\\\\Contents\\\\MacOS\\\\MarcusLevel" type: default -'417730': +"417730": installDir: ShakedownRacing launch: - config: @@ -207329,21 +203287,21 @@ oslist: macos executable: SR.app type: default -'417750': +"417750": installDir: Left Alone launch: - config: oslist: windows executable: Left Alone.exe type: none -'417840': +"417840": installDir: Mysterious Castle launch: - config: oslist: windows executable: Mysterious Castle.exe type: default -'417860': +"417860": installDir: Emily is Away launch: - config: @@ -207361,49 +203319,49 @@ description: Linux Launcher executable: emily is away.x86 type: default -'417880': +"417880": installDir: Rapture launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Bin64/Rapture_Release.exe type: default - config: betakey: beta - osarch: '64' + osarch: "64" oslist: windows description: Profile executable: Bin64/Rapture.exe type: option1 -'417890': +"417890": installDir: Apotheon Arena launch: - executable: ApotheonArena.exe type: none -'417900': - installDir: 'Upwards, Lonely Robot' +"417900": + installDir: "Upwards, Lonely Robot" launch: - config: oslist: windows executable: upwards.exe type: none -'417910': +"417910": installDir: StreetWarriorsOnline launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: StreetWarriorsOnline.exe type: none -'417920': +"417920": installDir: Mistfal launch: - config: oslist: windows executable: mistfal.exe type: default -'417980': +"417980": installDir: Planet Diver launch: - config: @@ -207411,26 +203369,26 @@ executable: content-mac/PlanetDiver.app/Contents/MacOS/PlanetDiver type: none - config: - osarch: '64' + osarch: "64" oslist: windows executable: content-windows/PlanetDiver64/PlanetDiver.exe type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: content-linux/PlanetDiver.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: content-linux/PlanetDiver.x86_64 type: none - config: - osarch: '32' + osarch: "32" oslist: windows executable: content-windows/PlanetDiver32/PlanetDiver.exe type: none -'41800': +"41800": installDir: Gratuitous Space Battles launch: - config: @@ -207442,7 +203400,7 @@ - config: oslist: linux executable: run_game.sh -'418000': +"418000": installDir: Demented launch: - config: @@ -207450,22 +203408,22 @@ description: Launch Demented executable: Demented_Win.exe type: default -'418030': +"418030": installDir: Subsistence launch: - - arguments: '-forcelogflush' + - arguments: "-forcelogflush" config: - osarch: '64' + osarch: "64" oslist: windows - executable: Binaries\\Win64\\UDK.exe + executable: "Binaries\\\\Win64\\\\UDK.exe" type: default - - arguments: '-forcelogflush' + - arguments: "-forcelogflush" config: - osarch: '32' + osarch: "32" oslist: windows - executable: Binaries\\Win32\\UDK.exe + executable: "Binaries\\\\Win32\\\\UDK.exe" type: default -'418040': +"418040": installDir: hocus launch: - config: @@ -207476,7 +203434,7 @@ oslist: macos executable: hocus.app type: default -'418050': +"418050": installDir: FALL launch: - config: @@ -207485,14 +203443,14 @@ type: default - executable: game.exe type: none -'418060': +"418060": installDir: Battle Riders launch: - config: oslist: windows executable: BattleRiders.exe type: default -'418070': +"418070": installDir: Turbo Pug launch: - config: @@ -207500,31 +203458,31 @@ executable: game.exe type: none - config: - osarch: '32' + osarch: "32" oslist: windows executable: game.exe type: default -'418110': +"418110": installDir: MoW Face Off XL launch: - config: oslist: windows - description: 'Launch MoW: Face Off XL' + description: "Launch MoW: Face Off XL" executable: game.exe type: none - config: oslist: macos - description: 'Launch MoW: Face Off XL' + description: "Launch MoW: Face Off XL" executable: game.app type: none -'418120': - installDir: Cally's Caves 3 +"418120": + installDir: "Cally's Caves 3" launch: - config: oslist: windows executable: CC3 steam greenlight.exe type: default -'418150': +"418150": installDir: The Madness of Little Emma launch: - config: @@ -207539,19 +203497,19 @@ oslist: macos executable: emma type: default -'418160': +"418160": installDir: Garden Rescue Christmas Edition launch: - executable: garden_rescue.exe type: none -'418170': +"418170": installDir: MicroRC Simulation launch: - config: oslist: windows executable: MRC.exe type: default -'418180': +"418180": installDir: Tempest launch: - config: @@ -207559,7 +203517,7 @@ executable: Tempest.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Tempest.x86_64 @@ -207569,16 +203527,16 @@ description: Launch executable: Tempest.app type: default -'418190': - installDir: Helen's Mysterious Castle +"418190": + installDir: "Helen's Mysterious Castle" launch: - config: oslist: windows - executable: helen\\start.exe + executable: "helen\\\\start.exe" type: default nameLocalized: japanese: ふしぎの城のヘレン+ -'418210': +"418210": installDir: Metal Tales Fury of the Guitar Gods launch: - config: @@ -207587,25 +203545,25 @@ type: default - config: oslist: macos - executable: MetalTales.app\\Contents\\MacOS\\metal tales + executable: "MetalTales.app\\\\Contents\\\\MacOS\\\\metal tales" type: default - - arguments: '-screen-fullscreen 0 -screen-width 800 -screen-height 600' + - arguments: "-screen-fullscreen 0 -screen-width 800 -screen-height 600" config: oslist: windows description: Safe mode executable: metal tales.exe type: option1 - config: - osarch: '64' + osarch: "64" oslist: linux executable: MetalTales.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: MetalTales.x86 type: default -'418240': +"418240": installDir: Shadow Tactics launch: - config: @@ -207622,65 +203580,65 @@ type: default - config: oslist: windows - ownsdlc: '571410' + ownsdlc: "571410" description: Bonus Content executable: open_bonus_win.bat type: none - config: oslist: macos - ownsdlc: '571410' + ownsdlc: "571410" description: Bonus Content executable: open_bonus_osx.sh type: none - config: oslist: linux - ownsdlc: '571410' + ownsdlc: "571410" description: Bonus Content executable: open_bonus_lin.sh type: none -'418250': +"418250": installDir: Polaris Sector launch: - config: oslist: windows executable: autorun.exe type: default -'418260': +"418260": installDir: Gumball Drift launch: - config: oslist: windows executable: GumballDrift_SteamVR.exe type: vr -'418270': +"418270": installDir: Draw Slasher launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: Draw Slasher.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: Draw Slasher.exe type: default - config: - osarch: '64' + osarch: "64" oslist: macos - executable: DrawSlasher.app\\Contents\\MacOS\\DrawSlasher + executable: "DrawSlasher.app\\\\Contents\\\\MacOS\\\\DrawSlasher" type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: DrawSlasher.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: DrawSlasher.x86_64 type: default -'418280': +"418280": installDir: Retaliation launch: - config: @@ -207691,7 +203649,7 @@ oslist: macos executable: Retaliation.app type: default -'418300': +"418300": installDir: Wick launch: - config: @@ -207702,14 +203660,14 @@ oslist: macos executable: Wick.app type: none -'418310': +"418310": installDir: Chronicles of a Dark Lord Rhapsody Clash launch: - config: oslist: windows executable: Game.exe type: default -'418340': +"418340": installDir: RWBY_GE launch: - config: @@ -207720,7 +203678,7 @@ oslist: macos executable: rwby-ge.app type: none -'418360': +"418360": installDir: Gurgamoth launch: - config: @@ -207735,7 +203693,7 @@ oslist: linux executable: Gurgamoth.x86 type: none -'418370': +"418370": installDir: RESIDENT EVIL 7 biohazard launch: - config: @@ -207745,61 +203703,57 @@ nameLocalized: japanese: BIOHAZARD 7 resident evil koreana: BIOHAZARD 7 resident evil -'418430': +"418430": installDir: Survive Me Miolhr launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Full Game - description_loc: - english: Full Game executable: game2.exe type: default - config: betakey: portuguesbuild - osarch: '32' + osarch: "32" oslist: windows description: Português - description_loc: - english: Português executable: game3.exe nameLocalized: english: Miolhr -'418440': +"418440": installDir: Tick Tock Isle launch: - config: oslist: windows executable: Tick Tock Isle.exe type: none -'418460': +"418460": installDir: Rising Storm 2 launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: Binaries\\Win64\\RisingStorm2.exe + executable: "Binaries\\\\Win64\\\\RisingStorm2.exe" type: default - workingdir: Binaries\\win64 -'418520': + workingdir: "Binaries\\\\win64" +"418520": installDir: sculptrvr launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SculptrVR.exe type: vr -'418530': +"418530": installDir: Spelunky 2 launch: - arguments: random config: - osarch: '64' + osarch: "64" oslist: windows executable: Spel2.exe type: default -'418610': +"418610": installDir: Swiftly launch: - config: @@ -207811,38 +203765,38 @@ executable: Swiftly.app type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: Swiftly.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: Swiftly.x86_64 type: none -'418620': +"418620": installDir: TheTakeOver launch: - config: oslist: windows executable: The TakeOver.exe type: default -'418640': +"418640": installDir: Iron Commando launch: - config: oslist: windows executable: iron commando.exe type: default -'418650': +"418650": installDir: Space Pirate Trainer VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SpacePirateVR.exe type: vr -'418670': +"418670": installDir: Pankapu launch: - config: @@ -207857,7 +203811,7 @@ oslist: macos executable: pankapu.app type: default -'418910': +"418910": installDir: Idle Civilization launch: - config: @@ -207872,55 +203826,55 @@ oslist: linux executable: IdleCivilization.x86 type: default -'418940': +"418940": installDir: Waba launch: - config: oslist: windows executable: Waba.exe type: vr -'418950': +"418950": installDir: Keepers of The Dark launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: kotd.exe type: default -'418960': +"418960": installDir: Catorize launch: - config: oslist: windows executable: Catorize.exe type: default -'41900': +"41900": installDir: The Bards Tale launch: - config: oslist: windows - executable: The Bard's Tale.exe + executable: "The Bard's Tale.exe" - config: oslist: windows description: Graphics Settings - executable: Config/The Bard's Setup.exe + executable: "Config/The Bard's Setup.exe" type: none - config: oslist: macos - executable: The Bard's Tale.app/Contents/MacOS/The Bard's Tale - workingdir: The Bard's Tale.app + executable: "The Bard's Tale.app/Contents/MacOS/The Bard's Tale" + workingdir: "The Bard's Tale.app" - config: oslist: linux description: Launch executable: BardTale -'419000': +"419000": installDir: RELIC ALONE launch: - config: oslist: windows executable: RELICALONE.exe type: none -'419020': +"419020": installDir: Wishmere launch: - config: @@ -207932,16 +203886,16 @@ executable: Wishmere.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Wishmere.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Wishmere.x86_64 type: default -'419080': +"419080": installDir: Bridge Constructor Stunts launch: - config: @@ -207959,63 +203913,63 @@ description: Launch executable: Bridge_Constructor_Stunts.x86 type: default -'419090': +"419090": installDir: Vector Strain launch: - - arguments: '-force-d3d11' + - arguments: "-force-d3d11" config: oslist: windows description: Run Vector Strain dx11 executable: VectorStrain.exe type: none - - arguments: '-force-d3d9' + - arguments: "-force-d3d9" description: Play Vector Strain Dx9 executable: VectorStrain.exe type: none -'419130': +"419130": installDir: SOTSwordUltimate launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SwordUltimate.exe type: none -'419460': - installDir: 'That Dragon, Cancer' +"419460": + installDir: "That Dragon, Cancer" launch: - config: - osarch: '64' + osarch: "64" oslist: macos executable: TDC.app/Contents/MacOS/TDC type: none - config: - osarch: '64' + osarch: "64" oslist: windows executable: TDC.exe type: none - config: - osarch: '32' + osarch: "32" oslist: windows executable: TDC.exe type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: TDC.x86_64 type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: TDC.x86 type: none -'419480': +"419480": installDir: Starpoint Gemini Warlords launch: - config: oslist: windows executable: GameLauncher.exe type: default -'419500': +"419500": installDir: RedGame launch: - config: @@ -208028,17 +203982,17 @@ type: default - config: oslist: macos - executable: RedGame.app\\Contents\\MacOS\\RedGame + executable: "RedGame.app\\\\Contents\\\\MacOS\\\\RedGame" type: default -'419520': +"419520": installDir: Lifeless launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Lifeless.exe type: default -'419590': +"419590": installDir: Tales from the Void launch: - config: @@ -208049,7 +204003,7 @@ oslist: macos executable: tales_from_the_void.app type: default -'419700': +"419700": installDir: AT SUNDOWN launch: - config: @@ -208061,16 +204015,16 @@ executable: AT SUNDOWN.app/Contents/MacOS/AT SUNDOWN type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: AT SUNDOWN.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: AT SUNDOWN.x86_64 type: default -'419710': +"419710": installDir: Rogue Singularity launch: - config: @@ -208085,17 +204039,17 @@ oslist: linux executable: RogueSingularity.x86_64 type: default -'419810': +"419810": installDir: House of Hell launch: - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: House of Hell.x86_64 type: none - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: House of Hell.x86 @@ -208110,7 +204064,7 @@ description: Launch executable: House of Hell.exe type: none -'419990': +"419990": installDir: GanbareSuperStrikers launch: - config: @@ -208125,33 +204079,33 @@ oslist: linux executable: Ganbare.x86_64 type: default -'420': +"420": installDir: Half-Life 2 launch: - - arguments: '-game ep2 -steam' + - arguments: "-game ep2 -steam" config: oslist: windows executable: hl2.exe workingdir: bin - - arguments: '-game ep2 -steam' + - arguments: "-game ep2 -steam" config: oslist: macos executable: hl2.sh - - arguments: '-game ep2 -steam' + - arguments: "-game ep2 -steam" config: oslist: linux executable: hl2.sh -'42000': +"42000": installDir: Trino launch: - executable: Trino.exe -'420000': +"420000": installDir: Home Design 3D launch: - config: betakey: default oslist: windows - executable: \\HomeDesign3D.exe + executable: "\\\\HomeDesign3D.exe" type: default - config: oslist: macos @@ -208160,17 +204114,17 @@ - config: betakey: private_beta oslist: windows - executable: \\HomeDesign3D.exe + executable: "\\\\HomeDesign3D.exe" type: default -'420020': +"420020": installDir: EyeOfTheOwl launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Bosch28.exe type: vr -'420060': +"420060": installDir: Candle launch: - config: @@ -208182,32 +204136,32 @@ executable: Candle.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Candle.x86_64 type: default - config: betakey: testing oslist: windows - ownsdlc: '537210' + ownsdlc: "537210" description: Bonus Content executable: open_bonus_win.bat type: none - config: betakey: testing oslist: macos - ownsdlc: '537210' + ownsdlc: "537210" description: Bonus Content executable: open_bonus_osx.sh type: none - config: betakey: testing oslist: linux - ownsdlc: '537210' + ownsdlc: "537210" description: Bonus Content executable: open_bonus_lin.sh type: none -'420070': +"420070": installDir: Kill The Plumber launch: - config: @@ -208218,22 +204172,22 @@ oslist: macos executable: Kill_the_Plumber.app type: option1 -'420100': +"420100": installDir: CLANNAD Side Stories launch: - config: oslist: windows executable: RealLiveEn.exe type: default -'420110': +"420110": installDir: NEKOPARA Vol. 2 launch: - config: oslist: windows executable: nekopara_vol2.exe type: default -'420140': {} -'420160': +"420140": {} +"420160": installDir: Alphabeats PC Master Edition launch: - config: @@ -208248,7 +204202,7 @@ oslist: linux executable: AlphabeatsPCME.x86 type: default -'420170': +"420170": installDir: Shrug Island - The Meeting launch: - config: @@ -208259,7 +204213,7 @@ oslist: macos executable: ShrugIsland_Ch1.app type: default -'420180': +"420180": installDir: Chronicle of Innsmouth launch: - config: @@ -208270,15 +204224,15 @@ oslist: windows executable: winsetup.exe type: config -'420210': +"420210": installDir: KRUM - Edge Of Darkness launch: - config: oslist: windows - executable: system\\Krum - Edge Of Darkness.exe + executable: "system\\\\Krum - Edge Of Darkness.exe" type: default - workingdir: system\\ -'420270': + workingdir: "system\\\\" +"420270": installDir: Into the Void launch: - config: @@ -208287,19 +204241,19 @@ type: none - config: oslist: macos - executable: IntoTheVoid.app\\Contents\\MacOS\\IntoTheVoid + executable: "IntoTheVoid.app\\\\Contents\\\\MacOS\\\\IntoTheVoid" type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: IntoTheVoid.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: IntoTheVoid.x86_64 type: none -'420290': +"420290": installDir: Blackwake launch: - config: @@ -208310,21 +204264,21 @@ oslist: macos executable: Blackwake.app type: none -'420300': +"420300": installDir: The Admin launch: - config: oslist: windows executable: TheAdmin.exe type: none -'420330': +"420330": installDir: Heist launch: - config: oslist: windows executable: Heist.exe type: default -'420360': +"420360": installDir: Spectrum launch: - config: @@ -208337,21 +204291,21 @@ type: default - config: oslist: linux - executable: linux_content\\Spectrum.x86 + executable: "linux_content\\\\Spectrum.x86" type: default -'420370': +"420370": installDir: Gravity Island launch: - config: oslist: windows executable: GravityIsland.exe type: default -'420380': +"420380": installDir: Strike launch: - executable: strike_release.exe type: none -'420440': +"420440": installDir: Atlantic Fleet launch: - config: @@ -208362,8 +204316,8 @@ oslist: macos executable: AtlanticFleet.app type: none -'420500': - installDir: Rynn's Adventure Trouble in the Enchanted Forest +"420500": + installDir: "Rynn's Adventure Trouble in the Enchanted Forest" launch: - config: oslist: windows @@ -208371,9 +204325,9 @@ type: default - config: oslist: macos - executable: Rynn's Adventure.app\\Contents\\MacOS\\Rynn's Adventure + executable: "Rynn's Adventure.app\\\\Contents\\\\MacOS\\\\Rynn's Adventure" type: default -'420520': +"420520": installDir: Lost Technology launch: - config: @@ -208403,7 +204357,7 @@ type: option1 nameLocalized: japanese: ロストテクノロジー -'420530': +"420530": installDir: OneShot launch: - config: @@ -208420,7 +204374,7 @@ type: default nameLocalized: sc_schinese: 一次机会 -'420550': +"420550": installDir: SuperArcadeFootball launch: - config: @@ -208431,40 +204385,40 @@ oslist: macos executable: SuperArcadeFootball.app type: none -'420560': +"420560": installDir: Firefighting Simulator - The Squad launch: - config: oslist: windows executable: FG.exe type: default -'420570': +"420570": installDir: Cubixx HD launch: - description: Launch executable: Cubixx.exe type: none -'420660': - installDir: Burnin' Rubber 5 HD +"420660": + installDir: "Burnin' Rubber 5 HD" launch: - config: oslist: windows executable: BurninRubber5HD.exe type: default -'420670': +"420670": installDir: Elite vs. Freedom launch: - - executable: Binaries\\Win32\\UDK.exe + - executable: "Binaries\\\\Win32\\\\UDK.exe" type: none -'420740': +"420740": installDir: The Deed launch: - config: oslist: windows executable: Game.exe type: none -'420760': {} -'420770': +"420760": {} +"420770": installDir: The Legend of Dark Witch launch: - config: @@ -208475,7 +204429,7 @@ japanese: 魔神少女 -Chronicle 2D ACT- schinese: 魔神少女 tchinese: 魔神少女 -'420790': +"420790": installDir: StarBreak launch: - config: @@ -208483,42 +204437,42 @@ executable: mvmmoclient.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: mvmmoclient type: none - config: - osarch: '64' + osarch: "64" oslist: macos executable: MVMMOClient.app/Contents/MacOS/mvmmoclient.sh type: none -'420840': +"420840": installDir: BLARP! launch: - config: oslist: windows executable: BLARP.exe type: vr -'420850': +"420850": installDir: Cosmic Leap launch: - config: oslist: windows executable: CosmicLeap.exe type: default - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" config: oslist: windows executable: CosmicLeap.exe type: config -'420880': +"420880": installDir: I must kill... Fresh Meat launch: - config: oslist: windows executable: freshmeat.exe type: none -'420900': +"420900": installDir: Mech Anarchy launch: - config: @@ -208530,7 +204484,7 @@ description: beta channel (unstable) executable: run.sh type: default -'420910': +"420910": installDir: Store Manager Cellular Edition launch: - config: @@ -208545,7 +204499,7 @@ oslist: linux executable: StoreManagerLin.x86 type: none -'420920': +"420920": installDir: Lost Labyrinth Extended Version launch: - config: @@ -208556,7 +204510,7 @@ oslist: linux executable: laby type: default -'420930': +"420930": installDir: CHKN launch: - config: @@ -208571,7 +204525,7 @@ oslist: linux executable: CHKN type: none -'420950': +"420950": installDir: Time Tenshi launch: - config: @@ -208580,13 +204534,13 @@ type: default - config: oslist: macos - executable: Time Tenshi.app\\Contents\\MacOS\\Time Tenshi + executable: "Time Tenshi.app\\\\Contents\\\\MacOS\\\\Time Tenshi" type: default - config: oslist: linux executable: Time Tenshi.sh type: default -'420970': +"420970": installDir: RoBoRumble launch: - config: @@ -208599,7 +204553,7 @@ description: RoBoRumble executable: RoBoRumble.app type: default -'420980': +"420980": installDir: Army Gals launch: - config: @@ -208617,15 +204571,15 @@ description: Launch executable: Army Gals.sh type: none -'421010': {} -'421020': +"421010": {} +"421020": installDir: DiRT 4 launch: - config: oslist: windows executable: dirt4.exe type: default - - arguments: '-logging' + - arguments: "-logging" config: betakey: devtest oslist: windows @@ -208638,7 +204592,7 @@ description: RP15 - QA executable: dirt4_qa.exe type: option2 - - arguments: '-logging' + - arguments: "-logging" config: betakey: devtest oslist: windows @@ -208650,19 +204604,19 @@ executable: DiRT 4.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Dirt4.sh type: default -'421030': {} -'421040': +"421030": {} +"421040": installDir: Plantera launch: - config: oslist: windows executable: Plantera.exe type: none -'421050': +"421050": installDir: Deponia Doomsday launch: - config: @@ -208670,12 +204624,12 @@ executable: deponia4.exe type: default - config: - osarch: '64' + osarch: "64" oslist: macos executable: Deponia Doomsday.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: start type: default @@ -208688,7 +204642,7 @@ executable: Deponia Doomsday.app/Contents/Applications/visconfig.app type: config - config: - osarch: '64' + osarch: "64" oslist: linux executable: configure type: config @@ -208707,7 +204661,7 @@ description: Bonus Content executable: open_bonus_lin.sh type: none -'421060': +"421060": installDir: Age of Steel – Recharge launch: - config: @@ -208718,22 +204672,22 @@ oslist: macos executable: AOSR.app type: none -'421110': +"421110": installDir: AWAKE launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: For 64 bits executable: AWAKE64bits.exe type: config - config: - osarch: '32' + osarch: "32" oslist: windows description: For Windows 32bits executable: AWAKE.exe type: config -'421120': +"421120": installDir: Samorost 3 launch: - config: @@ -208746,25 +204700,25 @@ type: default - config: oslist: windows - ownsdlc: '455370' + ownsdlc: "455370" description: Samorost 3 Art Book executable: Samorost 3 Art Book/Samorost 3 Art Book.pdf type: none - config: oslist: windows - ownsdlc: '455370' + ownsdlc: "455370" description: Play soundtrack from playlist executable: Samorost 3 Soundtrack/Samorost 3 Soundtrack.m3u type: none - config: oslist: macos - ownsdlc: '455370' + ownsdlc: "455370" description: Play Soundtrack executable: OSX_Play-Soundtrack.sh type: none - config: oslist: macos - ownsdlc: '455370' + ownsdlc: "455370" description: Open Art Book (pdf) executable: OSX_Open-ArtBook.sh type: none @@ -208773,14 +204727,14 @@ koreana: Samorost 3 (사모로스트 3) schinese: 银河历险记3 (Samorost 3) tchinese: 銀河歷險記3 (Samorost 3) -'421140': +"421140": installDir: BladesOfTheRighteous launch: - config: oslist: windows executable: maingame.exe type: none -'421170': +"421170": installDir: Indivisible launch: - config: @@ -208788,7 +204742,7 @@ executable: Indivisible.exe type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: Indivisible.x86_64-pc-linux-gnu type: default @@ -208796,19 +204750,19 @@ oslist: macos executable: Indivisible.app type: default -'421180': +"421180": installDir: Umbra Shadow of Death launch: - config: oslist: windows executable: nw.exe type: default -'42120': +"42120": installDir: Lead and Gold Gangs of the Wild West launch: - description: public executable: lag_win32_public_dev.exe -'421260': +"421260": installDir: Militia launch: - config: @@ -208817,52 +204771,52 @@ type: none - config: oslist: macos - executable: militia.app\\Contents\\MacOS\\militia + executable: "militia.app\\\\Contents\\\\MacOS\\\\militia" type: none - - arguments: '-force-opengl -show-screen-selector' + - arguments: "-force-opengl -show-screen-selector" config: - osarch: '64' + osarch: "64" oslist: linux executable: militia.x86_64 type: none - - arguments: '-force-opengl -show-screen-selector' + - arguments: "-force-opengl -show-screen-selector" config: - osarch: '32' + osarch: "32" oslist: linux executable: militia.x86 type: none -'42140': - installDir: Hamilton's Great Adventure +"42140": + installDir: "Hamilton's Great Adventure" launch: - - arguments: '-bundle-dir bundle' + - arguments: "-bundle-dir bundle" config: oslist: windows executable: Hamilton.exe - - arguments: '-bundle-dir hamilton_macosx_bundled' + - arguments: "-bundle-dir hamilton_macosx_bundled" config: oslist: macos - executable: Hamilton's Great Adventure.app -'42160': + executable: "Hamilton's Great Adventure.app" +"42160": installDir: War of the Roses launch: - arguments: loader.exe wotr.exe -eac -bundle-dir bundle executable: run_game.exe -'421600': +"421600": installDir: RayGigant launch: - config: oslist: windows executable: RayGigant.exe type: default -'421610': +"421610": installDir: XBlaze Code Embryo launch: - config: oslist: windows - executable: _home\\_win\\BBADV_Steam.exe + executable: "_home\\\\_win\\\\BBADV_Steam.exe" type: default - workingdir: _home\\_win\\ -'421620': + workingdir: "_home\\\\_win\\\\" +"421620": installDir: Dissonance_Novelette launch: - config: @@ -208878,7 +204832,7 @@ oslist: linux executable: Linux/dissonance type: default -'421630': +"421630": installDir: StudyInSteampunkChoiceByGaslight launch: - config: @@ -208893,22 +204847,22 @@ oslist: linux executable: StudyInSteampunk type: none -'421650': +"421650": installDir: Breach launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: launcher.exe type: default -'421660': +"421660": installDir: Harmonia launch: - config: oslist: windows executable: SiglusEngine_SteamEN.exe type: default -'421670': +"421670": installDir: CUPID - A free to play Visual Novel launch: - config: @@ -208923,7 +204877,7 @@ oslist: macos executable: CupidVN.app type: none -'42170': +"42170": installDir: Krater launch: - arguments: krater.exe -bundle-dir data -data-dir data @@ -208933,7 +204887,7 @@ - config: oslist: macos executable: Krater.app/Contents/MacOS/Krater.sh -'421700': +"421700": installDir: Sakura Santa launch: - config: @@ -208948,54 +204902,54 @@ oslist: macos executable: Sakura Santa.app type: none -'421710': +"421710": installDir: Space Live - Advent of the Net Idols launch: - executable: SL.exe type: default -'421740': +"421740": installDir: goetia launch: - - arguments: '-forcecontrollerappid 421740' + - arguments: "-forcecontrollerappid 421740" config: oslist: windows executable: Goetia.exe type: default - - arguments: '-forcecontrollerappid 421740' + - arguments: "-forcecontrollerappid 421740" config: oslist: macos executable: Goetia.app type: default - - arguments: '-forcecontrollerappid 421740' + - arguments: "-forcecontrollerappid 421740" config: - osarch: '32' + osarch: "32" oslist: linux executable: goetia.x86 type: default - - arguments: '-forcecontrollerappid 421740' + - arguments: "-forcecontrollerappid 421740" config: - osarch: '64' + osarch: "64" oslist: linux executable: goetia.x86_64 type: default -'421790': +"421790": installDir: TheBradwellConspiracy launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TheBradwellConspiracy.exe type: default - config: betakey: testing - osarch: '64' + osarch: "64" oslist: windows executable: TheBradwellConspiracy.exe type: default -'421810': +"421810": installDir: OH! RPG! launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" description: Launch executable: game.exe type: none @@ -209003,11 +204957,11 @@ executable: game.exe type: none - config: - ownsdlc: '464720' + ownsdlc: "464720" description: View Strategy Guide executable: OH! RPG! Strategy Guide.pdf type: none -'421870': +"421870": installDir: Quatros Origins launch: - config: @@ -209016,25 +204970,25 @@ type: default - config: oslist: macos - executable: QuatrosOrigins.app\\Contents\\MacOS\\QuatrosOrigins + executable: "QuatrosOrigins.app\\\\Contents\\\\MacOS\\\\QuatrosOrigins" type: default - config: oslist: linux executable: QuatrosOrigins.x86 type: default -'421880': +"421880": installDir: Plastiland launch: - config: oslist: windows executable: plastiland.exe type: default -'421890': +"421890": installDir: Avaris 2 launch: - executable: AVARIS2.exe type: none -'421900': +"421900": installDir: Shadowrun Chronicles INFECTED! launch: - config: @@ -209049,19 +205003,19 @@ oslist: linux executable: Shadowrun.x86 type: default -'421910': +"421910": installDir: PANOPTES launch: - config: oslist: windows executable: Panoptes.exe type: default -'421960': {} -'42200': +"421960": {} +"42200": installDir: Nancy Drew Dossier - Resorting to Danger launch: - executable: ResortingToDanger.exe -'422010': +"422010": installDir: Eczema Angel Orifice launch: - config: @@ -209072,46 +205026,46 @@ oslist: linux executable: Eczema Angel Orifice type: default -'422020': +"422020": installDir: Dark Days launch: - config: oslist: windows executable: Dark Days.exe type: default -'422030': +"422030": installDir: ReVeN XBridge launch: - config: - osarch: '32' + osarch: "32" oslist: windows - executable: win32\\nw.exe + executable: "win32\\\\nw.exe" type: default workingdir: win32 - config: - osarch: '64' + osarch: "64" oslist: windows - executable: win64\\nw.exe + executable: "win64\\\\nw.exe" type: default workingdir: win64 -'42210': +"42210": installDir: Nancy Drew Secrets Can Kill launch: - config: oslist: windows executable: Secrets.exe - - arguments: '-psn' + - arguments: "-psn" config: oslist: macos executable: Secrets Can Kill REMASTERED.app/Contents/MacOS/cider -'422100': +"422100": installDir: HeavenIslandVIVE launch: - config: oslist: windows executable: HeavenIslandVIVE.exe type: vr -'422110': +"422110": installDir: Wand Wars launch: - config: @@ -209126,40 +205080,40 @@ oslist: linux executable: launch.sh type: default - - arguments: '-force-d3d9' + - arguments: "-force-d3d9" config: oslist: windows description: in DirectX9 mode executable: WandWars.exe type: option1 -'422130': +"422130": installDir: Comic Book Hero launch: - config: oslist: windows executable: CBH.exe type: default -'422140': +"422140": installDir: Wrestling Spirit 3 launch: - config: oslist: windows executable: WreSpi3.exe type: default -'422180': {} -'422181': {} -'422182': {} -'42220': +"422180": {} +"422181": {} +"422182": {} +"42220": installDir: Nancy Drew The Captive Curse launch: - config: oslist: windows executable: Captive.exe - - arguments: '-psn' + - arguments: "-psn" config: oslist: macos executable: Nancy Drew - The Captive Curse.app/Contents/MacOS/cider -'422210': +"422210": installDir: Rise of Keepers launch: - config: @@ -209167,123 +205121,123 @@ description: Launch executable: rok.exe type: default -'422250': +"422250": installDir: ShipLord launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: Shiplord.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Shiplord.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Shiplord.x86_64 type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: Shiplord.exe type: default - config: - osarch: '32' + osarch: "32" oslist: macos - executable: Shiplord.app\\Contents\\MacOS\\Shiplord + executable: "Shiplord.app\\\\Contents\\\\MacOS\\\\Shiplord" type: default - config: - osarch: '64' + osarch: "64" oslist: macos - executable: Shiplord.app\\Contents\\MacOS\\Shiplord + executable: "Shiplord.app\\\\Contents\\\\MacOS\\\\Shiplord" type: default -'422270': +"422270": installDir: City Play launch: - config: oslist: windows executable: CityPlay.exe type: default -'42230': +"42230": installDir: Nancy Drew Trail of the Twister launch: - config: oslist: windows description: windows executable: Twister.exe - - arguments: '-psn' + - arguments: "-psn" config: oslist: macos description: mac executable: Nancy Drew - Trail of the Twister.app/Contents/MacOS/cider -'422300': +"422300": installDir: Element launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: x86_64\\Element.exe + executable: "x86_64\\\\Element.exe" type: default - config: - osarch: '32' + osarch: "32" oslist: windows - executable: x86\\Element.exe + executable: "x86\\\\Element.exe" type: default - config: oslist: macos executable: OSX/Element.app/Contents/MacOS/Element type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: x86_64/Element.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: x86/Element.x86 type: default -'422420': +"422420": installDir: Godus Wars launch: - config: oslist: windows - executable: ./windows/Godus Wars.exe + executable: "./windows/Godus Wars.exe" type: default - workingdir: ./windows + workingdir: "./windows" - config: oslist: macos - executable: ./mac/Godus Wars.app/Contents/MacOS/Godus Wars + executable: "./mac/Godus Wars.app/Contents/MacOS/Godus Wars" type: default - workingdir: ./mac -'422500': + workingdir: "./mac" +"422500": installDir: Emmerholt Prologue launch: - config: oslist: windows - description: 'Emmerholt: Prologue' + description: "Emmerholt: Prologue" executable: Emmerholt.exe type: vr - config: oslist: windows - description: 'Emmerholt: Prologue' + description: "Emmerholt: Prologue" executable: Emmerholt.exe type: othervr -'422510': +"422510": installDir: DemonsTilt launch: - config: oslist: windows - executable: DEMON'S TILT.exe + executable: "DEMON'S TILT.exe" type: none - config: oslist: macos executable: DemonsTilt.app type: none -'422590': +"422590": installDir: Wacky Wheels HD launch: - config: @@ -209294,15 +205248,15 @@ oslist: macos executable: WackyWheels.app type: default -'422610': - installDir: '1775' +"422610": + installDir: "1775" launch: - config: oslist: windows executable: 1775.exe type: default - config: - osarch: '64' + osarch: "64" oslist: macos executable: 1775.app type: default @@ -209310,7 +205264,7 @@ oslist: linux executable: 1775.x86 type: default -'422630': +"422630": installDir: Metaverse Construction Kit launch: - config: @@ -209325,12 +205279,12 @@ oslist: windows executable: ConstructionKit.exe type: vr -'422640': +"422640": installDir: VR Karts SteamVR launch: - executable: VRKarts.exe type: vr -'422650': +"422650": installDir: Megamagic Wizards of the Neon Age launch: - config: @@ -209342,23 +205296,23 @@ executable: Megamagic.app type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: Megamagic.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: Megamagic.x86_64 type: none -'422760': +"422760": installDir: Ocean Rift launch: - config: oslist: windows executable: OceanRift_Vive.exe type: vr -'422810': +"422810": installDir: River City Ransom Underground launch: - config: @@ -209367,23 +205321,23 @@ type: default - config: oslist: linux - executable: ./RCRU + executable: "./RCRU" type: none - config: oslist: macos executable: RCRU.app/Contents/MacOS/RCRU type: none -'422860': +"422860": installDir: Holodance launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Holodance - Default executable: Holodance.exe type: vr -'422870': {} -'422900': +"422870": {} +"422900": installDir: Particle Fleet Emergence launch: - config: @@ -209398,7 +205352,7 @@ oslist: linux executable: PFLaunch type: default -'422910': +"422910": installDir: Creeper World launch: - config: @@ -209409,7 +205363,7 @@ oslist: macos executable: CreeperWorld.app type: default -'422920': +"422920": installDir: Creeper World 2 launch: - config: @@ -209420,15 +205374,15 @@ oslist: macos executable: CreeperWorld2.app type: default -'422940': +"422940": installDir: Divergence Online launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Divergence Online.exe type: none -'422970': +"422970": installDir: devildaggers launch: - config: @@ -209436,29 +205390,29 @@ executable: dd.exe type: none - config: - osarch: '64' + osarch: "64" oslist: macos executable: Devil Daggers.app type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: devildaggers type: none -'422980': +"422980": installDir: Super Robot Jump Jump launch: - config: oslist: windows executable: Super Robot Jump Jump.exe type: default -'4230': +"4230": installDir: Race launch: - executable: SteamProxy.exe - description: Race Video and Language Options executable: RaceConfig_Steam.exe -'423120': +"423120": installDir: CommunityCollegeHeroTrialByFire launch: - config: @@ -209473,13 +205427,13 @@ oslist: linux executable: CommunityCollegeHeroTrialByFire type: none -'423180': +"423180": installDir: A.I. Space Corps launch: - description: Launch executable: AISpaceCorps.exe type: none -'423220': +"423220": installDir: T-Kara Puzzles launch: - config: @@ -209489,25 +205443,23 @@ - config: oslist: linux description: Launch - description_loc: - english: Launch executable: TKara type: default -'423230': +"423230": installDir: Furi launch: - config: oslist: windows executable: Furi.exe type: none -'423270': +"423270": installDir: ZHEROS launch: - config: oslist: windows executable: zheros.exe type: default -'423320': +"423320": installDir: PendragonRising launch: - config: @@ -209522,7 +205474,7 @@ oslist: linux executable: PendragonRising type: none -'423440': +"423440": installDir: ChoiceOfKungFu launch: - config: @@ -209537,14 +205489,14 @@ oslist: linux executable: ChoiceOfKungFu type: none -'423460': +"423460": installDir: Trainz Driver 2016 launch: - config: oslist: windows executable: TD2016.exe type: none -'423490': +"423490": installDir: Air Missions HIND launch: - config: @@ -209559,14 +205511,14 @@ oslist: windows executable: MISSIONEDITOR2.exe type: editor -'423550': +"423550": installDir: Day D Tower Rush launch: - config: oslist: windows executable: Game.exe type: default -'423580': +"423580": installDir: Project Highrise launch: - config: @@ -209578,11 +205530,11 @@ executable: Game.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Game.x86_64 type: default -'423590': +"423590": installDir: The Little Acre launch: - config: @@ -209599,25 +205551,25 @@ type: default nameLocalized: schinese: 小小英亩 / The Little Acre -'423600': +"423600": installDir: Adelantado Trilogy. Book one launch: - executable: Adelantado.exe type: none -'423610': - installDir: Where's My Mommy +"423610": + installDir: "Where's My Mommy" launch: - config: oslist: windows executable: WMM.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: WMM.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: WMM.x86_64 type: default @@ -209625,7 +205577,7 @@ oslist: macos executable: WMM.app type: default -'423620': +"423620": installDir: Hero Defense launch: - config: @@ -209633,30 +205585,24 @@ description: Play Hero Defense executable: HauntedIsland.exe type: default -'423640': +"423640": installDir: Maid Cafe launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch - description_loc: - english: Launch executable: MaidCafe.exe - config: oslist: macos description: Launch - description_loc: - english: Launch executable: MaidCafe.app - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch - description_loc: - english: Launch executable: MaidCafe.sh -'423650': +"423650": installDir: Summer Fling launch: - config: @@ -209674,38 +205620,38 @@ description: Launch executable: Summer Fling.app type: none -'423700': +"423700": installDir: Apocalypse Hotel - The Post-Apocalyptic Hotel Simulator! launch: - executable: game.exe type: none -'423710': +"423710": installDir: Invasion Brain Craving launch: - executable: game.exe type: none -'423720': +"423720": installDir: ColorChaos launch: - config: oslist: windows executable: ColorChaos.exe type: default -'423730': +"423730": installDir: Hyper Gods launch: - config: oslist: windows - executable: Hyper Gods\\hgods.exe + executable: "Hyper Gods\\\\hgods.exe" type: default -'423740': +"423740": installDir: Save Your Mother launch: - config: oslist: windows executable: game.exe type: default -'423750': +"423750": installDir: Gardenarium launch: - config: @@ -209723,14 +205669,14 @@ description: Launch executable: Gardenarium.app type: none -'423760': +"423760": installDir: Hit Tank PRO launch: - config: oslist: windows executable: Hit Tank PRO v1.3.1.exe type: none -'423770': +"423770": installDir: Our Love Will Grow launch: - config: @@ -209738,7 +205684,7 @@ description: Launch executable: Our Love Will Grow.exe type: default -'423780': +"423780": installDir: Zero Gravity launch: - config: @@ -209751,10 +205697,10 @@ type: none - config: oslist: windows - description: 'Norsemen: The Lost Warrior' + description: "Norsemen: The Lost Warrior" executable: game.exe type: none -'423800': +"423800": installDir: Automata Empire launch: - config: @@ -209768,18 +205714,18 @@ executable: AutomataEmpire.app type: none - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: AutomataEmpire.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch 64-bit executable: AutomataEmpire.x86_64 type: none -'423810': +"423810": installDir: Marooners launch: - config: @@ -209788,7 +205734,7 @@ executable: Marooners.exe type: option1 - config: - osarch: '32' + osarch: "32" oslist: linux description: Marooners executable: Marooners.x86 @@ -209799,12 +205745,12 @@ executable: Marooners.app/Contents/MacOS/Marooners type: option1 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch linux 64bit executable: Marooners.x86_64 type: none -'423840': +"423840": installDir: BanHammer launch: - config: @@ -209813,9 +205759,9 @@ type: default - config: oslist: macos - executable: BanHammer.app\\Contents\\MacOS\\BanHammer + executable: "BanHammer.app\\\\Contents\\\\MacOS\\\\BanHammer" type: default -'423870': +"423870": installDir: Astervoid2000 launch: - config: @@ -209827,16 +205773,16 @@ executable: Astervoid2000.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Astervoid2000.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Astervoid2000.x86_64 type: default -'423880': +"423880": installDir: Carpe Diem launch: - config: @@ -209851,15 +205797,15 @@ oslist: linux executable: Carpe Diem.sh type: default -'423890': +"423890": installDir: Gods and Idols launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: Launch Gods and Idols.exe type: default -'423900': +"423900": installDir: Dinocide launch: - config: @@ -209873,89 +205819,89 @@ executable: Dinocide.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: Dinocide.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Dinocide.x86_64 type: default -'423920': {} -'423950': +"423920": {} +"423950": installDir: Deadlight Director’s Cut launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Binaries/Win64/LOTDGame.exe type: default -'424000': +"424000": installDir: Project Pulsation launch: - config: oslist: windows executable: ProjectPulsation.exe type: default -'424010': +"424010": installDir: Crudelis launch: - config: oslist: windows executable: Game.exe type: default -'424020': +"424020": installDir: EEP12 launch: - config: oslist: windows executable: EEP12.exe type: none -'424030': +"424030": installDir: War of Rights launch: - config: oslist: windows - executable: \\War of Rights Launcher.exe + executable: "\\\\War of Rights Launcher.exe" type: default -'424040': +"424040": installDir: Fragmental launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: LithiumUE4.exe type: default -'424060': +"424060": installDir: The Glow launch: - executable: game.exe type: none -'424100': +"424100": installDir: Celestrion launch: - config: oslist: windows executable: Celestrion.exe type: vr -'424170': +"424170": installDir: TheFallOfGods2_1_0_0_0 launch: - config: oslist: windows executable: TheFallOfGods2.exe type: default -'424200': +"424200": installDir: LittleMousesEncyclopedia launch: - config: oslist: windows executable: LittleMousesEncyclopedia.exe type: default - - arguments: '-force-glcore42 -force-clamped' + - arguments: "-force-glcore42 -force-clamped" config: oslist: linux executable: LittleMousesEncyclopedia.x86 @@ -209969,12 +205915,12 @@ brazilian: A Enciclopédia da Ratinha czech: Hravouka dutch: De Encyclopedie van Kleine Muis - english: Little Mouse's Encyclopedia + english: "Little Mouse's Encyclopedia" finnish: Hiiren luontokokoelma french: Ravouka La souris scientifique - german: 'Komm mit raus, Entdeckermaus' + german: "Komm mit raus, Entdeckermaus" hungarian: Egérke enciklopédiája - italian: L'Enciclopedia di Piccolo Topo + italian: "L'Enciclopedia di Piccolo Topo" japanese: 鼠ちゃんの 百科事典 latam: Enciclopedia de la Ratoncita polish: Mysia Encyklopedia @@ -209984,7 +205930,7 @@ tchinese: 大自然也太有趣!小棕鼠的自然生態百科 turkish: Minik Farenin Ansiklopedisi ukrainian: Енциклопедія Маленької Мишки -'424210': +"424210": installDir: SodaCity launch: - config: @@ -209993,13 +205939,13 @@ type: default - config: oslist: macos - executable: SodaCity.app\\Contents\\MacOS\\SodaCity + executable: "SodaCity.app\\\\Contents\\\\MacOS\\\\SodaCity" type: default - config: oslist: linux executable: SodaCity.x86_64 type: default -'424250': +"424250": installDir: Balrum launch: - config: @@ -210011,11 +205957,11 @@ executable: Balrum type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Balrum type: default -'424260': +"424260": installDir: Feelings Adrift launch: - config: @@ -210023,7 +205969,7 @@ description: Arranque executable: FeelingsAdrift.exe type: default -'424280': +"424280": installDir: Iron Snout launch: - config: @@ -210038,48 +205984,48 @@ oslist: linux executable: run.sh type: none -'424310': +"424310": installDir: Blessed Ones launch: - config: oslist: windows executable: Blessed Ones.exe type: default -'424320': +"424320": installDir: Anomaly 1729 launch: - config: oslist: windows - executable: \\Anomaly1729\\TheCube.exe + executable: "\\\\Anomaly1729\\\\TheCube.exe" type: default -'424370': +"424370": installDir: Wolcen launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: win_x64/Wolcen.exe type: none -'424590': +"424590": installDir: Farm Expert 2017 launch: - config: oslist: windows executable: FE2017.exe type: none -'424610': +"424610": installDir: Peasant Knight launch: - config: oslist: windows executable: PeasantKnight.exe type: default -'424640': +"424640": installDir: Karaski What Goes Up launch: - executable: Karaski.exe type: none -'424750': +"424750": installDir: The BoX launch: - config: @@ -210090,21 +206036,21 @@ oslist: macos executable: Mac_content/TheBoX.app type: default -'424760': +"424760": installDir: Bladestar launch: - config: oslist: windows executable: Bladestar.exe type: default -'424780': +"424780": installDir: Imperia Online launch: - config: oslist: windows executable: ImperiaOnline.exe type: none -'424830': +"424830": installDir: Bell Ringer launch: - config: @@ -210112,50 +206058,50 @@ description: Launch executable: BellRinger.exe type: none -'424840': +"424840": installDir: Little Nightmares launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: Atlas\\Binaries\\Win64\\LittleNightmares.exe + executable: "Atlas\\\\Binaries\\\\Win64\\\\LittleNightmares.exe" type: default -'424850': +"424850": installDir: Galactineers launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: Galactineers.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: GalactineersDedicatedServer.exe type: server - config: - osarch: '32' + osarch: "32" oslist: windows executable: GalactineersObjectEditor.exe type: editor -'424870': +"424870": installDir: Threads of Destiny launch: - description: Launch executable: game.exe type: none -'42500': +"42500": installDir: DogFighter launch: - config: oslist: windows - executable: bin\\x86_vc11\\DogFighterSteam.exe -'425010': + executable: "bin\\\\x86_vc11\\\\DogFighterSteam.exe" +"425010": installDir: ScudBuster launch: - executable: ScudBuster.exe type: none -'425040': +"425040": installDir: ComixPlay1 launch: - config: @@ -210166,31 +206112,31 @@ oslist: macos executable: comixplay.app type: default -'425070': +"425070": installDir: Asteroids Minesweeper launch: - - arguments: '-fullscreen' + - arguments: "-fullscreen" config: oslist: windows description: OpenGL version - X86 (ADVISED) executable: App_VS2008GL.exe type: option1 - - arguments: '-msaa -fullscreen' + - arguments: "-msaa -fullscreen" config: oslist: windows description: DirectX version - X86 (Windows 8 and later) executable: App_VS2013_DX_Desktop_Win32_Release.exe type: option2 - - arguments: '-msaa -fullscreen' + - arguments: "-msaa -fullscreen" config: - osarch: '64' + osarch: "64" oslist: windows - description: 'DirectX version - X64 (Win8 and later, 64 bit only)' + description: "DirectX version - X64 (Win8 and later, 64 bit only)" executable: App_VS2013_DX_Desktop_x64_Release.exe type: option3 - arguments: X86_64 ./linux_dependancies/64bit-steamos-2.0 -fullscreen config: - osarch: '64' + osarch: "64" oslist: linux description: Steam OS 2.0 - 64-bit executable: Run_App_Linux @@ -210201,14 +206147,14 @@ description: Ubuntu 16.04.1 LTS - 32-bit executable: Run_App_Linux type: option2 -'425150': +"425150": installDir: Assassins vs Pirates launch: - config: oslist: windows executable: Assassins vs Pirates.exe type: default -'425160': +"425160": installDir: Recursion Deluxe launch: - config: @@ -210223,7 +206169,7 @@ oslist: linux executable: RecursionDeluxe.x86 type: default -'425210': +"425210": installDir: Shadwen launch: - config: @@ -210238,15 +206184,15 @@ oslist: linux executable: shadwen.sh type: none -'425220': +"425220": installDir: ONE PIECE BURNING BLOOD launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: OPBB.exe type: none -'425230': +"425230": installDir: Sword N Board launch: - config: @@ -210257,7 +206203,7 @@ oslist: macos executable: swordnboard.app type: default -'425240': +"425240": installDir: PressureOverdrive launch: - config: @@ -210269,16 +206215,16 @@ executable: PressureOverdrive.app type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: PressureOverdrive.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: PressureOverdrive.x86_64 type: none -'425260': +"425260": installDir: Soul Harvest launch: - config: @@ -210296,7 +206242,7 @@ description: Vanilla - Linux executable: start_linux32.sh type: default -'425300': +"425300": installDir: Super Button Soccer launch: - config: @@ -210308,23 +206254,23 @@ executable: SuperButtonSoccer.app type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: SuperButtonSoccer.x86_64 type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: SuperButtonSoccer.x86 type: none -'425310': +"425310": installDir: Ghostbusters launch: - config: oslist: windows executable: Ghostbusters/Binaries/Win64/Ghostbusters.exe type: default -'425340': +"425340": installDir: Space Moth DX launch: - config: @@ -210332,42 +206278,40 @@ description: Play Space Moth DX executable: Space Moth DX.exe type: default -'425400': +"425400": installDir: Block Rocking Beats launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Block Rocking Beats - Oculus v1.53.exe type: othervr - config: - osarch: '64' + osarch: "64" oslist: windows executable: Block Rocking Beats - HTC Vive v1.53.exe type: vr -'425410': +"425410": installDir: Road to Ballhalla launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Road to Ballhalla - executable: Rerolled\\RoadToBallhallaUE4.exe + executable: "Rerolled\\\\RoadToBallhallaUE4.exe" type: option1 - config: oslist: windows - executable: Editor\\rtbtiled.exe + executable: "Editor\\\\rtbtiled.exe" type: editor - config: betakey: tinybetabuild - osarch: '64' + osarch: "64" oslist: windows description: Road To Ballhalla (Legacy) - description_loc: - english: Road To Ballhalla (Legacy) - executable: Legacy\\RoadToBallhallaUE4.exe + executable: "Legacy\\\\RoadToBallhallaUE4.exe" type: option2 -'425450': +"425450": installDir: GoatPunks launch: - config: @@ -210382,14 +206326,14 @@ oslist: linux executable: GoatPunks.x86 type: default -'425460': +"425460": installDir: Tokyo Twilight Ghost Hunters Daybreak Special Gigs launch: - config: oslist: windows executable: Tokyo Twilight Ghost Hunters Daybreak Special Gigs.exe type: none -'425580': +"425580": installDir: TheRoomTwo launch: - config: @@ -210397,12 +206341,12 @@ description: Launch executable: TheRoomTwo.exe type: none -'425600': - installDir: The Order of the Thorne - The King's Challenge +"425600": + installDir: "The Order of the Thorne - The King's Challenge" launch: - config: oslist: windows - description: Launch The King's Challenge... + description: "Launch The King's Challenge..." executable: OOTT-TKC.exe type: default - config: @@ -210416,51 +206360,51 @@ executable: tkc-manual.pdf type: none - config: - osarch: '32' + osarch: "32" oslist: linux - description: Launch The King's Challenge... + description: "Launch The King's Challenge..." executable: OotTTKC.bin.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux - description: Launch The King's Challenge... + description: "Launch The King's Challenge..." executable: OotTTKC.bin.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: linux description: Setup Game Options... executable: ags-setup.x86 type: config - config: - osarch: '64' + osarch: "64" oslist: linux description: Setup Game Options... executable: ags-setup.x86_64 type: config -'425650': +"425650": installDir: Halloween Forever launch: - config: oslist: windows executable: halloweenforever.exe type: default -'425670': +"425670": installDir: Seraph launch: - executable: Seraph.exe type: default -'425720': +"425720": installDir: Cloudlands launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: Cloudlands.exe type: vr -'425760': +"425760": installDir: Ego Protocol launch: - config: @@ -210471,46 +206415,46 @@ oslist: macos executable: Ego Protocol.app type: default -'425770': +"425770": installDir: atq launch: - description: Launch Game executable: ATQ64.exe type: default -'425820': +"425820": installDir: Dragonpath launch: - config: oslist: windows executable: Dragonpath.exe type: none -'425860': +"425860": installDir: Vector Assault launch: - executable: Vector Assault.exe type: none -'425870': +"425870": installDir: Gyrodisc Super League launch: - config: oslist: windows - executable: GyrodiscSuperLeague\\gyrodisc.exe + executable: "GyrodiscSuperLeague\\\\gyrodisc.exe" type: default - config: oslist: macos - executable: GyrodiscSuperLeague\\gyrodisc.app + executable: "GyrodiscSuperLeague\\\\gyrodisc.app" type: default - config: - osarch: '32' + osarch: "32" oslist: linux - executable: GyrodiscSuperLeague\\gyrodisc.x86 + executable: "GyrodiscSuperLeague\\\\gyrodisc.x86" type: default - config: - osarch: '64' + osarch: "64" oslist: linux - executable: GyrodiscSuperLeague\\gyrodisc.x86_64 + executable: "GyrodiscSuperLeague\\\\gyrodisc.x86_64" type: default -'425900': +"425900": installDir: Adventure Lamp launch: - config: @@ -210526,7 +206470,7 @@ oslist: windows executable: nw.exe type: default -'425990': +"425990": installDir: Space Junk Patrol launch: - config: @@ -210534,7 +206478,7 @@ description: Launch executable: SpaceJunkPatrol.exe type: vr -'426000': +"426000": installDir: HunieCam Studio launch: - config: @@ -210548,18 +206492,18 @@ executable: HunieCamStudio.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: HunieCamStudio.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: HunieCamStudio.x86_64 type: default -'426010': +"426010": installDir: Womb Room launch: - config: @@ -210570,21 +206514,21 @@ oslist: macos executable: macBuild.app type: none -'426040': +"426040": installDir: Goodnight Butcher launch: - config: oslist: windows executable: GoodnightButcher.exe type: default -'426050': +"426050": installDir: LEGIE launch: - config: oslist: windows executable: legie.exe type: none -'426170': +"426170": installDir: Defragmented launch: - config: @@ -210599,12 +206543,12 @@ oslist: linux executable: Defragmented.x86 type: none -'426190': +"426190": installDir: Miner Meltdown launch: - config: oslist: macos - executable: MinerMeltdown.app\\Contents\\MacOS\\MinerMeltdown + executable: "MinerMeltdown.app\\\\Contents\\\\MacOS\\\\MinerMeltdown" type: default - config: oslist: windows @@ -210614,30 +206558,30 @@ oslist: linux executable: minermeltdown.x86_64 type: default -'426210': +"426210": installDir: Tyran launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: Tyran.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: Tyran.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Tyran.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Tyran.x86_64 type: default -'426240': +"426240": installDir: Caretaker Sacrifice launch: - config: @@ -210648,14 +206592,14 @@ oslist: macos executable: CaretakerSacrifice.app type: none -'426250': +"426250": installDir: Periodonica launch: - config: oslist: windows executable: Periodonica.exe type: vr -'426290': +"426290": installDir: The Away Team launch: - config: @@ -210670,15 +206614,15 @@ oslist: macos executable: The Away Team.app type: default -'426310': +"426310": installDir: Perception launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Perception.exe type: default -'426330': +"426330": installDir: MetaHuman Inc launch: - config: @@ -210693,15 +206637,15 @@ oslist: linux executable: MetaHumanInc type: none -'42640': +"42640": installDir: Blur launch: - executable: Blur.exe -'42650': +"42650": installDir: Transformers War for Cybertron launch: - - executable: Binaries\\TWFC.exe -'426560': + - executable: "Binaries\\\\TWFC.exe" +"426560": installDir: Full Tilt Poker launch: - config: @@ -210713,57 +206657,57 @@ oslist: macos executable: FullTiltPoker.Steam.app/Contents/MacOS/FullTiltPoker.Net type: default -'426590': +"426590": installDir: Stoneworks_Games launch: - config: oslist: windows executable: BloodofMagic.exe type: default -'42660': +"42660": installDir: Shrek Forever After launch: - executable: ShrekForeverAfter.exe -'426630': +"426630": installDir: Bubsy Two-Fur launch: - config: oslist: windows executable: Bubsy Two-Fur.exe type: none -'426690': +"426690": installDir: Narcissu 10th Anniversary Anthology Project launch: - config: oslist: windows executable: game_loader_ex.exe type: default -'42670': +"42670": installDir: Singularity launch: - - executable: binaries\\Singularity.exe -'426790': + - executable: "binaries\\\\Singularity.exe" +"426790": installDir: Grow Up launch: - config: oslist: windows executable: GrowUP.exe type: default -'426930': +"426930": installDir: Moonshot launch: - config: oslist: windows executable: Moonshot.exe type: default -'426970': +"426970": installDir: Age of Magic launch: - config: oslist: windows executable: loader.exe type: default -'42700': +"42700": installDir: Call of Duty Black Ops launch: - config: @@ -210772,24 +206716,24 @@ - config: oslist: macos executable: CoDBlackOps.app -'427030': +"427030": installDir: SWD6E launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: SWD6E.exe type: default nameLocalized: - english: 'Xuan-Yuan Sword: The Gate of Firmament' + english: "Xuan-Yuan Sword: The Gate of Firmament" schinese: 轩辕剑外传 穹之扉 tchinese: 軒轅劍外傳 穹之扉 -'427040': +"427040": installDir: Pitstop Challenge launch: - executable: pitstop.exe type: none -'427050': +"427050": installDir: Siege launch: - config: @@ -210804,51 +206748,51 @@ oslist: macos executable: Siege.app type: default -'427100': +"427100": installDir: Fernbus Simulator launch: - config: oslist: windows - executable: Fernbus\\Binaries\\Win64\\Fernbus-Win64-Shipping.exe + executable: "Fernbus\\\\Binaries\\\\Win64\\\\Fernbus-Win64-Shipping.exe" type: none - arguments: FDLC_Main config: - ownsdlc: '729490' + ownsdlc: "729490" description: Fußball Mannschaftsbus - executable: Fernbus\\Binaries\\Win64\\Fernbus-Win64-Shipping.exe + executable: "Fernbus\\\\Binaries\\\\Win64\\\\Fernbus-Win64-Shipping.exe" type: option1 - - arguments: '-DX12' + - arguments: "-DX12" config: betakey: nighlybuild oslist: windows description: DirectX 12 (BETA) - executable: Fernbus\\Binaries\\Win64\\Fernbus-Win64-Shipping.exe + executable: "Fernbus\\\\Binaries\\\\Win64\\\\Fernbus-Win64-Shipping.exe" type: option1 - - arguments: '-DX12' + - arguments: "-DX12" config: betakey: local oslist: windows description: DirectX 12 (BETA) - executable: Fernbus\\Binaries\\Win64\\Fernbus-Win64-Shipping.exe + executable: "Fernbus\\\\Binaries\\\\Win64\\\\Fernbus-Win64-Shipping.exe" type: option1 - - arguments: '-DX12' + - arguments: "-DX12" config: betakey: closed_beta oslist: windows description: DirectX 12 (BETA) - executable: Fernbus\\Binaries\\Win64\\Fernbus-Win64-Shipping.exe + executable: "Fernbus\\\\Binaries\\\\Win64\\\\Fernbus-Win64-Shipping.exe" type: option1 nameLocalized: schinese: 长途客车模拟 -'427190': +"427190": installDir: Dead Rising launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: DeadRising.exe type: default -'427240': +"427240": installDir: CosmicTrip launch: - config: @@ -210858,59 +206802,59 @@ type: vr - config: oslist: windows - ownsdlc: '640401' + ownsdlc: "640401" description: Open Art Book executable: CosmicTripArtBook/open.bat type: vr - config: oslist: windows - ownsdlc: '640400' + ownsdlc: "640400" description: Open Soundtrack executable: CosmicTripSoundtrack/open.bat type: vr -'427250': +"427250": installDir: 8BitArmies launch: - executable: ClientLauncherG.exe type: default - - arguments: 'DUMP_FULL COORDURL=http://52.7.55.172:6530/' + - arguments: "DUMP_FULL COORDURL=http://52.7.55.172:6530/" config: betakey: beta2 description: 8Bit Beta Branch executable: ClientLauncherG.exe type: option1 -'427270': +"427270": installDir: OrcsMustDieUnchained launch: - config: oslist: windows description: Orcs Must Die! Unchained - executable: dashboard\\bin\\spitfiredashboard.exe + executable: "dashboard\\\\bin\\\\spitfiredashboard.exe" type: default - workingdir: dashboard\\bin\\ -'427290': + workingdir: "dashboard\\\\bin\\\\" +"427290": installDir: Vampyr launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch Vampyr executable: AVGame/Binaries/Win64/AVGame-Win64-Shipping.exe type: default workingdir: AVGame/Binaries/Win64 - config: - betakey: 'dne_qa,dne_dev,focus_qa,focus_prod,hw_test,focus_loca' - osarch: '64' + betakey: "dne_qa,dne_dev,focus_qa,focus_prod,hw_test,focus_loca" + osarch: "64" oslist: windows description: Win64-Test executable: AVGame/Binaries/Win64/AVGame-Win64-Test.exe type: option1 workingdir: AVGame/Binaries/Win64 -'42730': +"42730": installDir: 007 Blood Stone launch: - executable: bond.exe -'427470': +"427470": installDir: Democracy 3 launch: - config: @@ -210921,15 +206865,15 @@ oslist: macos executable: Democracy3Africa.app type: none -'427480': +"427480": installDir: FritzChess 15 launch: - - arguments: '-Fritz15' + - arguments: "-Fritz15" config: oslist: windows - executable: ChessProgram15\\ChessProgram15.exe + executable: "ChessProgram15\\\\ChessProgram15.exe" type: none -'427490': +"427490": installDir: Shadowhand launch: - config: @@ -210942,32 +206886,32 @@ description: Launch executable: Shadowhand.app type: none -'427510': +"427510": installDir: Way of the Samurai 3 launch: - description: Launch executable: WayOfTheSamurai3.exe type: none -'427520': +"427520": installDir: Factorio launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: bin/x64/Factorio.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: bin/Win32/Factorio.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: bin/x64/factorio type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: bin/i386/factorio type: default @@ -210975,8 +206919,8 @@ oslist: macos executable: factorio.app/Contents/MacOS/factorio type: default -'427550': - installDir: Tibetan Quest Beyond the World's End +"427550": + installDir: "Tibetan Quest Beyond the World's End" launch: - config: oslist: windows @@ -210984,13 +206928,13 @@ executable: BWE.exe type: none - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: BWE_i386 type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: BWE_amd64 @@ -211000,15 +206944,15 @@ description: Launch executable: mac_steam.app/Contents/MacOS/mac_steam type: none -'427570': +"427570": installDir: Dawn of Andromeda launch: - config: - osarch: '64' + osarch: "64" executable: Dawn of Andromeda.exe type: none -'427610': {} -'427640': +"427610": {} +"427640": installDir: The Ables Freepoint High launch: - config: @@ -211026,21 +206970,21 @@ description: Launch executable: Ables.x86 type: none -'427660': +"427660": installDir: NightCry launch: - config: oslist: windows executable: NightCry.exe type: default -'427680': +"427680": installDir: Zwei launch: - executable: zwei.exe type: default nameLocalized: japanese: ツヴァイ!! -'427700': +"427700": installDir: Zwei II launch: - executable: ZWEI2PDX9.exe @@ -211052,37 +206996,37 @@ type: option1 nameLocalized: japanese: ツヴァイ2 -'427730': +"427730": installDir: Whos Your Daddy launch: - config: oslist: macos - description: Who's Your Daddy Classic (2015 Version) + description: "Who's Your Daddy Classic (2015 Version)" executable: Classic/WhosYourDaddy.app type: option1 - config: oslist: macos - description: Who's Your Daddy?! Playtest (2020 Version) + description: "Who's Your Daddy?! Playtest (2020 Version)" executable: Remake/WhosYourDaddy.app type: option2 - config: oslist: windows - description: Who's Your Daddy?! Playtest (2020 Version) + description: "Who's Your Daddy?! Playtest (2020 Version)" executable: Remake/WhosYourDaddy.exe type: option2 - config: oslist: windows - description: Who's Your Daddy Classic (2015 Version) + description: "Who's Your Daddy Classic (2015 Version)" executable: Classic/WhosYourDaddy.exe type: option1 -'427760': +"427760": installDir: AChairinaRoom launch: - config: oslist: windows executable: AChairInARoom_Greenwater.exe type: vr -'427770': +"427770": installDir: Pills4Skills launch: - config: @@ -211091,13 +207035,13 @@ type: none - config: oslist: macos - executable: Pills4Skills.app\\Contents\\MacOS\\Pills4Skills + executable: "Pills4Skills.app\\\\Contents\\\\MacOS\\\\Pills4Skills" type: default - config: oslist: linux executable: p4s.x86 type: none -'427780': +"427780": installDir: PerfectAngle launch: - config: @@ -211105,26 +207049,26 @@ executable: PerfectAngle.app type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: PerfectAngle.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: PerfectAngle.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: PerfectAngle.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: PerfectAngle.x86 type: default -'427810': +"427810": installDir: CALENDULA launch: - config: @@ -211133,17 +207077,17 @@ type: default - config: oslist: macos - executable: CALENDULA.app\\Contents\\MacOS\\CALENDULA + executable: "CALENDULA.app\\\\Contents\\\\MacOS\\\\CALENDULA" type: default - config: oslist: linux executable: CALENDULA.x86 type: default -'427820': +"427820": installDir: Hitman GO launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: HitmanGo.exe type: default @@ -211152,57 +207096,57 @@ executable: HitmanGo.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: HitmanGo.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: HitmanGo.x86 type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: HitmanGo.exe type: default -'427860': +"427860": installDir: The Next World launch: - config: oslist: windows - ownsdlc: '491740' - description: 'The Next World: Planetary Exploration - AU' - executable: TNW_PE-market\\TNW_PE.exe + ownsdlc: "491740" + description: "The Next World: Planetary Exploration - AU" + executable: "TNW_PE-market\\\\TNW_PE.exe" type: option1 - config: oslist: macos - ownsdlc: '491740' - description: 'The Next World: Planetary Exploration - AU' - executable: TNW_PE-market\\TNW_PE.app + ownsdlc: "491740" + description: "The Next World: Planetary Exploration - AU" + executable: "TNW_PE-market\\\\TNW_PE.app" type: option1 - config: oslist: linux - ownsdlc: '491740' - description: 'The Next World: Planetary Exploration - AU' - executable: TNW_PE-market\\TNW_PE.sh + ownsdlc: "491740" + description: "The Next World: Planetary Exploration - AU" + executable: "TNW_PE-market\\\\TNW_PE.sh" type: option1 - config: oslist: windows description: The Next World - Anniversary Update - executable: The_Next_World-market\\The_Next_World.exe + executable: "The_Next_World-market\\\\The_Next_World.exe" type: option2 - config: oslist: macos description: The Next World - Anniversary Update - executable: The_Next_World-market\\The_Next_World.app + executable: "The_Next_World-market\\\\The_Next_World.app" type: option2 - config: oslist: linux description: The Next World - Anniversary Update - executable: The_Next_World-market\\The_Next_World.sh + executable: "The_Next_World-market\\\\The_Next_World.sh" type: option2 -'427880': +"427880": installDir: PAMELA launch: - config: @@ -211215,7 +207159,7 @@ description: Launch dedicated PAMELA server. executable: PAMELA.exe type: server -'427890': +"427890": installDir: Felt Tip Circus launch: - config: @@ -211224,11 +207168,11 @@ executable: FTC.exe type: vr - config: - ownsdlc: '469540' + ownsdlc: "469540" description: Launch Workshop Tool executable: FTC Act Uploader/FtcActUploader.exe type: editor -'427910': +"427910": installDir: Zavix Tower launch: - config: @@ -211236,14 +207180,14 @@ description: Launch executable: Delenar - Zavix Tower.exe type: none -'427920': +"427920": installDir: FNaF World launch: - config: oslist: windows executable: FNaF_World.exe type: none -'427930': +"427930": installDir: Army of Tentacles NACDS launch: - config: @@ -211252,30 +207196,30 @@ type: default - config: oslist: macos - executable: ArmyOfTentacles.app\\Contents\\MacOS\\ArmyOfTentacles + executable: "ArmyOfTentacles.app\\\\Contents\\\\MacOS\\\\ArmyOfTentacles" type: default - config: oslist: linux executable: ArmyOfTentacles.sh type: default -'427940': +"427940": installDir: Industries of Titan launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Titan.exe type: default -'427950': +"427950": installDir: The Withering launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TheWithering.exe type: none -'427970': - installDir: Heathen Engineering's Terran +"427970": + installDir: "Heathen Engineering's Terran" launch: - config: oslist: windows @@ -211290,13 +207234,13 @@ oslist: macos executable: HETerran.app type: none - - arguments: '-force-d3d11' + - arguments: "-force-d3d11" config: oslist: windows description: Force DirectX 11 executable: HETerran.exe type: none -'427980': +"427980": installDir: Aozora Meikyuu launch: - config: @@ -211311,7 +207255,7 @@ oslist: linux executable: Aozora_Meikyuu.sh type: default -'428020': +"428020": installDir: The ORPHEUS Ruse launch: - config: @@ -211326,7 +207270,7 @@ oslist: linux executable: TheORPHEUSRuse type: none -'428040': +"428040": installDir: Sixth Grade Detective launch: - config: @@ -211341,7 +207285,7 @@ oslist: linux executable: SixthGradeDetective type: none -'428060': +"428060": installDir: Millia -The ending- launch: - config: @@ -211349,31 +207293,31 @@ description: Lanch executable: Millia - The ending -.exe type: none -'428080': +"428080": installDir: Racket launch: - config: oslist: windows executable: RacketNx.exe type: vr -'42810': +"42810": installDir: For The Glory launch: - executable: FTG.exe -'428100': +"428100": installDir: Beyond Reality launch: - description: Launch executable: game.exe type: none -'428110': +"428110": installDir: Save Halloween City of Witches launch: - config: oslist: windows executable: STEAM_WIN8_Helloween.exe type: none -'428130': +"428130": installDir: Walk The Light launch: - config: @@ -211384,31 +207328,31 @@ oslist: macos executable: walkthelight.app type: default -'428170': +"428170": installDir: Little Reaper launch: - config: oslist: windows executable: LittleReaper.exe type: default -'428180': +"428180": installDir: Islet Online launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: For 32bit Execution executable: IsletClient_release.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows description: For 64 bit Execution executable: IsletClient_release(x64).exe type: default nameLocalized: - koreana: '아일렛 온라인 : 크래프트' -'428190': + koreana: "아일렛 온라인 : 크래프트" +"428190": installDir: MadOut_OpenCity launch: - config: @@ -211420,16 +207364,16 @@ executable: game.app type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: game.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: game.x86_64 type: none -'428200': +"428200": installDir: Attack Heroes launch: - config: @@ -211440,15 +207384,15 @@ oslist: macos executable: AttackHero.app type: default -'428210': +"428210": installDir: Horror in the Asylum launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: HorrorIntheAsylum_release.exe type: default -'428220': +"428220": installDir: TurnOn launch: - config: @@ -211457,9 +207401,9 @@ type: default - config: oslist: macos - executable: TurnOn.app\\Contents\\MacOS\\TurnOn + executable: "TurnOn.app\\\\Contents\\\\MacOS\\\\TurnOn" type: default -'428230': +"428230": installDir: Swift launch: - config: @@ -211470,38 +207414,38 @@ oslist: macos executable: Swift.app type: default -'428240': +"428240": installDir: Hauntsters launch: - config: oslist: windows executable: Hauntsters.exe type: default -'428250': - installDir: Mystery Castle The Mirror's Secret +"428250": + installDir: "Mystery Castle The Mirror's Secret" launch: - executable: MysteryCastleTheMirrorsSecretCE.exe type: default -'428260': +"428260": installDir: The Book of Desires launch: - executable: magic_book.exe type: default -'428270': +"428270": installDir: Twilight City Love as a Cure launch: - executable: DeadCity.exe type: default -'428280': +"428280": installDir: Mystery of Unicorn Castle The Beastmaster launch: - executable: MysteryOfUnicornCastle_TheBeastmasterCE.exe type: default -'42830': +"42830": installDir: Achtung Panzer - Kharkov 1943 launch: - executable: starter.exe -'428350': +"428350": installDir: Fear Equation launch: - config: @@ -211521,75 +207465,75 @@ oslist: linux executable: FearEquation.x86 type: default -'428370': +"428370": installDir: Windlands launch: - - arguments: '-vrmode None -desktop' + - arguments: "-vrmode None -desktop" config: - osarch: '32' + osarch: "32" oslist: windows description: Play Windlands executable: Windlands_Win_x86.exe type: default - - arguments: '-vrmode None -desktop' + - arguments: "-vrmode None -desktop" config: - osarch: '64' + osarch: "64" oslist: windows description: Play Windlands executable: Windlands_Win_x64.exe type: default - - arguments: '-vrmode Oculus -oculus' + - arguments: "-vrmode Oculus -oculus" config: - osarch: '64' + osarch: "64" oslist: windows description: Launch Oculus Rift in VR Mode executable: Windlands_Win_x64.exe type: othervr - config: - osarch: '64' + osarch: "64" oslist: windows description: Steam VR/Open VR executable: Windlands_Win_x64.exe type: vr - config: - osarch: '64' + osarch: "64" oslist: macos description: Play Windlands executable: Windlands_OSX_x64.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: Play Windlands executable: Windlands_Linux_x64.x86_64 type: default -'428410': +"428410": installDir: PRiO launch: - executable: PRiO.exe type: none -'428420': +"428420": installDir: Room 404 launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: Room404\\Room404.exe + executable: "Room404\\\\Room404.exe" type: default -'428430': +"428430": installDir: Endorlight launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Endorlight_x64.exe type: none - config: - osarch: '32' + osarch: "32" oslist: windows executable: Endorlight_x86.exe type: none -'428440': +"428440": installDir: Chasing Dead launch: - config: @@ -211601,16 +207545,16 @@ executable: ChasingDead.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: ChasingDead.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: ChasingDead.x86 type: default -'428460': +"428460": installDir: Kings of Israel launch: - config: @@ -211618,60 +207562,60 @@ executable: nw.exe type: default - config: - osarch: '64' + osarch: "64" oslist: macos executable: nw.app type: default -'428490': +"428490": installDir: germination launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Germination.exe type: default - config: betakey: macupdate oslist: macos - description: OSX-only launch for Germination. Shouldn't see this on other platforms. + description: "OSX-only launch for Germination. Shouldn't see this on other platforms." executable: Germination type: default - config: betakey: macupdate - osarch: '64' + osarch: "64" oslist: linux - description: Linux-only launch for Germination. Shouldn't see this on other platforms. + description: "Linux-only launch for Germination. Shouldn't see this on other platforms." executable: Germination type: none -'42850': +"42850": installDir: Arsenal of Democracy launch: - executable: aodgame.exe type: none - executable: Arsenal.exe type: config -'428510': +"428510": installDir: Solitaire Christmas. Match 2 Cards launch: - config: oslist: windows executable: Solitaire.exe type: none -'428530': +"428530": installDir: Machine Gun Train Run launch: - config: oslist: windows executable: MachineGunTrainRun.exe type: default -'428540': +"428540": installDir: Fragments of Him launch: - config: oslist: windows executable: Fragments of Him.exe type: none -'428550': +"428550": installDir: Momodora RUtM launch: - config: @@ -211682,19 +207626,19 @@ oslist: macos executable: MomodoraRUtM.app type: default - - arguments: export LC_NUMERIC=\"en_US.UTF-8\"; %command% + - arguments: "export LC_NUMERIC=\\\"en_US.UTF-8\\\"; %command%" config: oslist: linux executable: MomodoraRUtM.out type: default - - arguments: export LC_NUMERIC=\"en_US.UTF-8\"; %command% + - arguments: "export LC_NUMERIC=\\\"en_US.UTF-8\\\"; %command%" config: - betakey: 'mac_linuxtest, mac_linuxdebug' + betakey: "mac_linuxtest, mac_linuxdebug" oslist: linux description: test executable: MomodoraRUtM.out type: option1 -'428590': +"428590": installDir: Unearthing Colossal launch: - config: @@ -211706,56 +207650,56 @@ executable: UnearthingColossal.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: UnearthingColossal.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: UnearthingColossal.x86_64 type: default -'428610': +"428610": installDir: Longsword launch: - executable: Longsword.exe type: none -'428630': +"428630": installDir: White Mirror launch: - config: oslist: windows executable: White Mirror.exe type: none -'428660': +"428660": installDir: Deliver Us The Moon launch: - config: oslist: windows executable: MoonMan.exe type: default - - arguments: '-dx11 -rtxquality=0' + - arguments: "-dx11 -rtxquality=0" config: oslist: windows description: Deliver Us The Moon (DX11 no RTX) executable: MoonMan.exe type: option1 - - arguments: '-dx12 -rtxquality=0' + - arguments: "-dx12 -rtxquality=0" config: oslist: windows description: Deliver Us The Moon (DX12 no RTX) executable: MoonMan.exe type: option2 - - arguments: '-dx12 -rtxquality=3' + - arguments: "-dx12 -rtxquality=3" config: oslist: windows description: Deliver Us The Moon (DX12 with RTX) executable: MoonMan.exe type: option3 -'428690': +"428690": installDir: YoutubersLife launch: - - arguments: '-force-gfx-direct' + - arguments: "-force-gfx-direct" config: oslist: windows executable: YoutubersLife.exe @@ -211765,24 +207709,24 @@ executable: YoutubersLife.app/Contents/MacOS/YoutubersLife type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: YoutubersLife.x86_64 type: default - - arguments: '-nolog' + - arguments: "-nolog" config: - osarch: '32' + osarch: "32" oslist: linux executable: YoutubersLife.x86 type: default -'428740': +"428740": installDir: Nordenfelt launch: - config: oslist: windows executable: Nordenfelt.exe type: default -'428750': +"428750": installDir: Neon Chrome launch: - config: @@ -211799,7 +207743,7 @@ description: Launch Neon Chrome Linux executable: NeonChrome type: none -'428760': +"428760": installDir: Hatch and Slay launch: - config: @@ -211808,13 +207752,13 @@ type: default - config: oslist: macos - executable: HatchAndSlay.app\\Contents\\MacOS\\HatchAndSlay + executable: "HatchAndSlay.app\\\\Contents\\\\MacOS\\\\HatchAndSlay" type: default - config: oslist: linux executable: HatchAndSlay.x86 type: none -'428830': +"428830": installDir: Save the Dodos launch: - config: @@ -211829,41 +207773,37 @@ oslist: macos executable: nwjs.app type: none -'428860': +"428860": installDir: Red Haze launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows executable: nw.exe type: default - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: macos executable: Game.app type: default - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: - osarch: '64' + osarch: "64" oslist: linux executable: Game type: default - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: - ownsdlc: '1553270' + ownsdlc: "1553270" description: Bruises Glimmer in Starlight - description_loc: - english: Bruises Glimmer in Starlight executable: Bruises Glimmer in Starlight/Game.exe type: none - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: - ownsdlc: '1940300' + ownsdlc: "1940300" description: Red Haze Blackout - description_loc: - english: Red Haze Blackout executable: Red Haze Blackout/Game.exe -'428870': +"428870": installDir: Take the Dream IX launch: - config: @@ -211874,7 +207814,7 @@ oslist: macos executable: Game.app type: default -'428880': +"428880": installDir: The Quest launch: - config: @@ -211885,12 +207825,12 @@ oslist: macos executable: The Quest.app/Contents/MacOS/The Quest type: default -'42890': +"42890": installDir: Sword of the Stars Complete Collection launch: - executable: Sword of the Stars.exe -'428900': - installDir: 'Linea, the Game' +"428900": + installDir: "Linea, the Game" launch: - config: oslist: windows @@ -211900,19 +207840,19 @@ oslist: macos executable: Linea.app type: default - - arguments: '-force-opengl' + - arguments: "-force-opengl" config: - osarch: '32' + osarch: "32" oslist: linux executable: Linea.x86 type: default - - arguments: '-force-opengl' + - arguments: "-force-opengl" config: - osarch: '64' + osarch: "64" oslist: linux executable: Linea.x86_64 type: default -'428920': +"428920": installDir: WinKings launch: - config: @@ -211926,18 +207866,18 @@ executable: WinKings.app type: none - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: WinKings.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: WinKings.x86_64 type: none -'428930': +"428930": installDir: Into the Belly of the Beast launch: - config: @@ -211946,139 +207886,137 @@ type: default - config: oslist: macos - executable: ITBOTB.app\\Contents\\MacOS\\ITBOTB + executable: "ITBOTB.app\\\\Contents\\\\MacOS\\\\ITBOTB" type: default - - arguments: '-force-clamped +savemode' + - arguments: "-force-clamped +savemode" config: oslist: windows description: OpenGL Safemode executable: ITBOTB.exe type: safemode - - arguments: ' -force-d3d9 +savemode' + - arguments: " -force-d3d9 +savemode" config: oslist: windows description: Direct3D 9 - Safemode executable: ITBOTB.exe type: safemode -'428940': +"428940": installDir: CONTASION 2 launch: - config: oslist: windows executable: Contasion 2.exe type: default -'428950': - installDir: 'Kivi, Toilet and Shotgun' +"428950": + installDir: "Kivi, Toilet and Shotgun" launch: - executable: game.exe type: none -'428980': +"428980": installDir: Ethereal Legends launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Ethereal Legends executable: Ethereal.exe type: default -'429020': +"429020": installDir: lonewolfhorizon launch: - config: oslist: windows - description: 'LONE WOLF: Horizon' + description: "LONE WOLF: Horizon" executable: lonewolfhorizon.exe type: default - - arguments: '-force-opengl' + - arguments: "-force-opengl" config: oslist: macos - description: 'LONE WOLF: Horizon' + description: "LONE WOLF: Horizon" executable: lonewolfhorizon.app/Contents/MacOS/lonewolfhorizon type: default - - arguments: '-force-opengl' + - arguments: "-force-opengl" config: - osarch: '32' + osarch: "32" oslist: linux - description: 'LONE WOLF: Horizon (32bit)' + description: "LONE WOLF: Horizon (32bit)" executable: lonewolfhorizon.x86 type: default - - arguments: '-force-opengl' + - arguments: "-force-opengl" config: - osarch: '64' + osarch: "64" oslist: linux - description: 'LONE WOLF: Horizon (64bit)' + description: "LONE WOLF: Horizon (64bit)" executable: lonewolfhorizon.x86_64 type: default - config: - osarch: '64' + osarch: "64" oslist: windows - ownsdlc: '606070' - description: 'LONE WOLF: Simulations (HTC VIVE)' + ownsdlc: "606070" + description: "LONE WOLF: Simulations (HTC VIVE)" executable: lonewolfsimulations.exe type: vr - config: oslist: windows - ownsdlc: '606040' - description: 'Play LONE WOLF: Origins' + ownsdlc: "606040" + description: "Play LONE WOLF: Origins" executable: lonewolforigins.exe type: none - - arguments: '-force-opengl' + - arguments: "-force-opengl" config: oslist: macos - ownsdlc: '606040' - description: 'Play LONE WOLF: Origins' + ownsdlc: "606040" + description: "Play LONE WOLF: Origins" executable: lonewolforigins.app/Contents/MacOS/lonewolforigins type: none - - arguments: '-force-opengl' + - arguments: "-force-opengl" config: - osarch: '32' + osarch: "32" oslist: linux - ownsdlc: '606040' - description: 'Play LONE WOLF: Origins (32bit)' + ownsdlc: "606040" + description: "Play LONE WOLF: Origins (32bit)" executable: lonewolforigins.x86 type: none - - arguments: '-force-opengl' + - arguments: "-force-opengl" config: - osarch: '64' + osarch: "64" oslist: linux - ownsdlc: '606040' - description: 'Play LONE WOLF: Origins (64bit)' + ownsdlc: "606040" + description: "Play LONE WOLF: Origins (64bit)" executable: lonewolforigins.x86_64 type: none -'429040': +"429040": installDir: Furfly launch: - config: oslist: windows executable: Furfly.exe type: default -'429050': +"429050": installDir: Feed and Grow Fish launch: - config: oslist: windows executable: Feed and Grow.exe type: default - - description: ' Launcher' - description_loc: - english: ' Launcher' + - description: " Launcher" executable: net48/FeedAndGrowFishLauncher.exe type: option1 workingdir: net48 -'429060': +"429060": installDir: ZombieWarsInvasion launch: - - arguments: '-windowed' + - arguments: "-windowed" config: oslist: windows - executable: bin\\ZombieWarsInvasion.exe + executable: "bin\\\\ZombieWarsInvasion.exe" type: default -'42910': +"42910": installDir: Magicka launch: - description: Magicka executable: Magicka.exe -'429120': +"429120": installDir: Zamarian launch: - config: @@ -212090,39 +208028,35 @@ executable: Zamarian.app type: none - config: - osarch: '32' + osarch: "32" oslist: linux - description: >- - Before running the executable, right click on executable properties->permission->check \"allow executing - file....\" + description: "Before running the executable, right click on executable properties->permission->check \\\"allow executing file....\\\"" executable: Zamarian.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux - description: >- - Before running the executable, right click on executable properties->permission->check \"allow executing - file....\" + description: "Before running the executable, right click on executable properties->permission->check \\\"allow executing file....\\\"" executable: Zamarian.x86_64 type: none -'429160': +"429160": installDir: Cyborg Rage launch: - executable: cyborgrage.exe type: default -'429180': +"429180": installDir: Project CARS - Pagani Edition launch: - - arguments: '-novr' + - arguments: "-novr" config: - osarch: '32' + osarch: "32" oslist: windows description: Launch (32-bit) executable: pCARS.exe type: none - - arguments: '-novr' + - arguments: "-novr" config: - osarch: '64' + osarch: "64" oslist: windows description: Launch (64-bit) executable: pCARS64.exe @@ -212133,40 +208067,40 @@ - description: Oculus Rift executable: pCARS64.exe type: othervr -'42920': - installDir: Lionheart - King's Crusade +"42920": + installDir: "Lionheart - King's Crusade" launch: - executable: Lionheart.exe - - description: Lionheart - King's Crusade Multiplayer + - description: "Lionheart - King's Crusade Multiplayer" executable: LionHeartMulti.exe -'429200': +"429200": installDir: Super Helmets on Fire DX Ultra Edition Plus Alpha launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SHOFDX.exe type: default - config: oslist: macos - executable: SHOFDX.app\\Contents\\MacOS\\SHOFDX + executable: "SHOFDX.app\\\\Contents\\\\MacOS\\\\SHOFDX" type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: SHOFDX.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: SHOFDX.x86 type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: SHOFDX.exe type: default -'429220': +"429220": installDir: FullBlast launch: - config: @@ -212175,9 +208109,9 @@ type: default - config: oslist: macos - executable: FullBlast.app\\Contents\\MacOS\\FullBlast + executable: "FullBlast.app\\\\Contents\\\\MacOS\\\\FullBlast" type: default -'429250': +"429250": installDir: Beyond Dimensions launch: - config: @@ -212192,28 +208126,28 @@ oslist: linux executable: Beyond Dimensions.x86 type: default -'429260': +"429260": installDir: Super Intergalactic Gang launch: - config: oslist: windows executable: SIG.exe type: none -'429270': +"429270": installDir: Didgery launch: - config: oslist: windows executable: Didgery.exe type: default -'429280': +"429280": installDir: Gems of the Aztecs launch: - config: oslist: windows executable: Gems of the Aztecs.exe type: none -'429300': +"429300": installDir: Sepia Tears launch: - config: @@ -212224,7 +208158,7 @@ - config: oslist: macos description: Sepia Tears (original) - executable: sepiatears.app\\Contents\\MacOS\\sepiatears + executable: "sepiatears.app\\\\Contents\\\\MacOS\\\\sepiatears" type: option1 - config: oslist: linux @@ -212233,23 +208167,23 @@ type: option1 - config: oslist: windows - ownsdlc: '867860' + ownsdlc: "867860" description: Reprise Edition (remaster) executable: RepriseEdition/SepiaTearsRepriseEdition.exe type: option1 - config: oslist: macos - ownsdlc: '867860' + ownsdlc: "867860" description: Reprise Edition (remaster) executable: RepriseEdition/SepiaTearsRepriseEdition.app/Contents/MacOS/SepiaTearsRepriseEdition type: option1 - config: oslist: linux - ownsdlc: '867860' + ownsdlc: "867860" description: Reprise Edition (remaster) executable: RepriseEdition/SepiaTearsRepriseEdition.sh type: option1 -'429330': +"429330": installDir: Stikbold launch: - config: @@ -212262,7 +208196,7 @@ description: Launch executable: Stikbold.app type: none -'429350': +"429350": installDir: Satellite Rush launch: - config: @@ -212270,16 +208204,16 @@ executable: satelliterush.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: satelliterush.x86_64 type: default - config: - osarch: '64' + osarch: "64" oslist: macos executable: satelliterush.app/Contents/MacOS/satelliterush type: default -'429360': +"429360": installDir: Lupinball launch: - config: @@ -212288,32 +208222,32 @@ type: default - config: oslist: macos - executable: Lupinball.app\\Contents\\MacOS\\Lupinball + executable: "Lupinball.app\\\\Contents\\\\MacOS\\\\Lupinball" type: default -'429380': +"429380": installDir: Space Mechanic Simulator launch: - config: oslist: windows executable: SpaceMechanicSimulator.exe type: none -'429390': +"429390": installDir: XenoShyft launch: - config: oslist: macos - executable: Xenoshyft.app\\Contents\\MacOS\\Xenoshyft + executable: "Xenoshyft.app\\\\Contents\\\\MacOS\\\\Xenoshyft" type: default - config: oslist: windows executable: XenoShyft.exe type: default -'429430': +"429430": installDir: Cycle_Of_Tyrfing launch: - config: oslist: windows - executable: \\bin\\Release\\CycleOfTyrfingBuild.exe + executable: "\\\\bin\\\\Release\\\\CycleOfTyrfingBuild.exe" type: default - description: View ArtBook (coming soon) executable: artbook.exe @@ -212321,22 +208255,22 @@ - config: oslist: windows description: Launch (No Xinput) - executable: \\bin\\Release\\CycleOfTyrfingBuildnox.exe + executable: "\\\\bin\\\\Release\\\\CycleOfTyrfingBuildnox.exe" type: option2 -'429470': +"429470": installDir: Space Pilgrim Episode One Alpha Centauri launch: - executable: game.exe type: none -'429480': +"429480": installDir: Vision Runner launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: VisionRunner.exe type: default -'429490': +"429490": installDir: Resilience Wave Survival launch: - config: @@ -212345,14 +208279,14 @@ type: default - config: betakey: Legacy - osarch: '64' + osarch: "64" oslist: windows description: 64bit Version executable: Resilience - Wave Survival.exe type: none - config: betakey: Legacy - osarch: '32' + osarch: "32" oslist: windows description: 32bit Version executable: Resilience - Wave Survival 32bit.exe @@ -212376,28 +208310,28 @@ russian: упругость Волна выживание spanish: Resiliencia Ola Supervivencia swedish: Elasticitet Vinka överlevnad -'429520': +"429520": installDir: Falcon Gold launch: - config: oslist: windows executable: FalconGoldLauncher.exe type: default -'429530': +"429530": installDir: Falcon 4.0 launch: - config: oslist: windows executable: falcon4.exe type: none -'429540': +"429540": installDir: Prime World Defenders 2 launch: - config: oslist: windows executable: Defenders2.exe type: none -'429570': +"429570": installDir: The Walking Dead Michonne launch: - config: @@ -212408,7 +208342,7 @@ oslist: macos executable: Walking Dead Michonne.app type: default -'429580': +"429580": installDir: A Wild Catgirl Appears! launch: - config: @@ -212425,11 +208359,11 @@ description: Launch executable: AWCA.sh type: default -'42960': +"42960": installDir: Victoria 2 launch: - executable: victoria2.exe -'429600': +"429600": installDir: Fairy Tale Mysteries launch: - config: @@ -212438,13 +208372,13 @@ executable: PuppetThief.exe type: none - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: PuppetThief_i386 type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: PuppetThief_amd64 @@ -212454,7 +208388,7 @@ description: Launch executable: mac_steam.app/Contents/MacOS/mac_steam type: none -'429610': +"429610": installDir: The Emerald Maiden launch: - config: @@ -212463,13 +208397,13 @@ executable: EmeraldMaiden.exe type: none - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: EmeraldMaiden_i386 type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: EmeraldMaiden_amd64 @@ -212479,7 +208413,7 @@ description: Launch executable: mac_steam.app/Contents/MacOS/mac_steam type: none -'429620': +"429620": installDir: Dungeon_Rushers launch: - config: @@ -212496,7 +208430,7 @@ type: default nameLocalized: schinese: 地城进击者 -'429660': +"429660": installDir: Tales of Berseria launch: - executable: Tales of Berseria.exe @@ -212511,14 +208445,14 @@ description: DebugVersion executable: Tales of BerseriaForDebug.exe type: none -'429680': +"429680": installDir: Spellweaver launch: - config: oslist: windows executable: Spellweaver.exe type: default -'429690': +"429690": installDir: Astro Duel launch: - config: @@ -212531,39 +208465,39 @@ description: Play Astro Duel executable: Astro Duel.app type: default - - arguments: '-windowed' + - arguments: "-windowed" config: oslist: windows description: Launch in windowed mode executable: AstroDuel.exe type: none - - arguments: '-windowed' + - arguments: "-windowed" config: oslist: macos description: Launch in windowed mode executable: Astro Duel.app/contents/MacOS/Astro Duel type: none - - arguments: '-noborder' + - arguments: "-noborder" config: oslist: windows description: Launch fullscreen windowed mode executable: AstroDuel.exe type: none -'429700': +"429700": installDir: Squirbs launch: - config: oslist: windows executable: Squirbs.exe type: none -'429720': +"429720": installDir: Imscared launch: - config: oslist: windows executable: IMSCARED.exe type: none -'429780': +"429780": installDir: Bunny Hop League launch: - config: @@ -212574,23 +208508,23 @@ oslist: macos executable: bhl.app/Contents/MacOS/BHL type: default -'429790': +"429790": installDir: AdventureQuest3D launch: - config: - osarch: '32' + osarch: "32" oslist: windows - executable: aq3d\\aq3d.exe + executable: "aq3d\\\\aq3d.exe" type: default - config: oslist: macos - executable: AQ3D.app\\Contents\\MacOS\\AQ3D + executable: "AQ3D.app\\\\Contents\\\\MacOS\\\\AQ3D" type: default -'42980': +"42980": installDir: Victoria Revolutions launch: - executable: Victoria.exe -'429830': +"429830": installDir: Unseen Diplomacy launch: - config: @@ -212598,14 +208532,14 @@ description: Launch executable: Unseen Diplomacy.exe type: vr -'42990': +"42990": installDir: Sword of the Stars II launch: - config: oslist: windows - executable: bin\\x86\\sots2.exe - workingdir: bin\\x86\\ -'429940': + executable: "bin\\\\x86\\\\sots2.exe" + workingdir: "bin\\\\x86\\\\" +"429940": installDir: The Sad Story of Emmeline Burns launch: - config: @@ -212620,52 +208554,52 @@ oslist: linux executable: The Sad Story of Emmeline Burns.sh type: none -'429950': +"429950": installDir: ABO MANDO launch: - config: oslist: windows executable: ABOMANDO.exe type: default -'4300': +"4300": installDir: RoboBlitz launch: - - executable: Binaries\\RoboLaunch.exe + - executable: "Binaries\\\\RoboLaunch.exe" - arguments: editor description: RoboBlitz Editor - executable: Binaries\\RoboLaunch.exe -'43000': + executable: "Binaries\\\\RoboLaunch.exe" +"43000": installDir: Front Mission Evolved launch: - executable: FrontMissionEvolved.exe -'430020': +"430020": installDir: Dance of Death launch: - executable: dance_of_death.exe type: none -'430070': +"430070": installDir: Never Again launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Never Again.exe type: none -'430080': +"430080": installDir: Elysium Blood Games launch: - config: oslist: windows executable: elysium.exe type: none -'430100': +"430100": installDir: darkcase the basement launch: - config: oslist: windows executable: darkcase - the basement.exe type: default -'430170': +"430170": installDir: Babel Choice launch: - config: @@ -212676,14 +208610,14 @@ oslist: macos executable: BabelChoice.app type: none -'430190': +"430190": installDir: Wondershot launch: - config: oslist: windows executable: wondershot.exe type: default -'430210': +"430210": installDir: Megaton Rainfall launch: - arguments: /novr @@ -212699,23 +208633,23 @@ oslist: windows executable: MegatonRainfallOculus.exe type: othervr -'430230': +"430230": installDir: GrassMax launch: - config: oslist: windows executable: GrassMax.exe type: default -'430240': +"430240": installDir: Duplexer launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch - executable: \\Binaries\\Win32\\Duplexer.exe + executable: "\\\\Binaries\\\\Win32\\\\Duplexer.exe" type: default -'430280': +"430280": installDir: Nature Defenders launch: - config: @@ -212730,17 +208664,17 @@ oslist: linux executable: NatureDefenders.x86 type: none -'430290': +"430290": installDir: Shmups Skill Test launch: - executable: sst.exe type: default -'430300': +"430300": installDir: Minus Zero launch: - executable: mz.exe type: default -'430410': +"430410": installDir: Memoranda launch: - config: @@ -212755,38 +208689,38 @@ oslist: linux executable: run.sh type: default -'430440': +"430440": installDir: Of Kings And Men launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: Bin\\Win64\\OfKingsAndMen.Client.exe + executable: "Bin\\\\Win64\\\\OfKingsAndMen.Client.exe" type: default - - arguments: '--nightly' + - arguments: "--nightly" config: betakey: nightly - osarch: '64' + osarch: "64" oslist: windows description: Of Kings And Men Nightly - executable: Bin\\Win64\\OfKingsAndMen.Client.exe + executable: "Bin\\\\Win64\\\\OfKingsAndMen.Client.exe" type: option1 - - arguments: '--nightly' + - arguments: "--nightly" config: betakey: nightly - osarch: '64' + osarch: "64" oslist: windows description: Of Kings And Men Nightly (dev mode) - executable: Bin\\Win64\\OfKingsAndMen.Client.Dev.exe + executable: "Bin\\\\Win64\\\\OfKingsAndMen.Client.Dev.exe" type: option2 -'430930': +"430930": installDir: Z Year One launch: - config: oslist: windows executable: Z.exe type: none -'430960': +"430960": installDir: Lucy -The Eternity She Wished For- launch: - config: @@ -212795,44 +208729,44 @@ type: none nameLocalized: brazilian: Lucy -A Eternidade Que Ela Desejava- - french: Lucy -L'Éternité qu’elle désirait- + french: "Lucy -L'Éternité qu’elle désirait-" japanese: ルーシィ ~彼女が望んでいたもの~ koreana: 루시 -그녀가 바라던 것- latam: Lucy -La eternidad que ella deseó- - russian: 'Люси -Вечность, Которую Она Желала-' + russian: "Люси -Вечность, Которую Она Желала-" schinese: 露西 -她所期望的一切- tchinese: 露西 -她所期望的一切- -'43100': +"43100": installDir: World of Zoo launch: - executable: GameLauncher.exe -'431000': +"431000": installDir: DEFENDERS launch: - config: oslist: windows executable: DEFENDERS.exe type: default -'43110': +"43110": installDir: Metro 2033 launch: - executable: Metro2033.exe -'431120': +"431120": installDir: Tethered launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch Tethered (VR) executable: Tethered.exe type: vr - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch Tethered (non-VR) executable: Tethered_NONVR.bat type: default -'431180': +"431180": installDir: WolfQuest launch: - config: @@ -212840,30 +208774,30 @@ executable: WolfQuest.exe type: default - config: - osarch: '64' + osarch: "64" oslist: macos executable: WolfQuest.app type: default - config: betakey: linuxtest - osarch: '64' + osarch: "64" oslist: linux executable: WolfQuest.x86_64 type: default - config: betakey: linuxtest - osarch: '32' + osarch: "32" oslist: linux executable: WolfQuest.x86 type: default -'431200': +"431200": installDir: Disastr_Blastr launch: - config: oslist: windows executable: Disastr_Blastr_STEAM_RLSv09.exe type: none -'431220': +"431220": installDir: Porradaria 2 Pagode of the Night launch: - config: @@ -212874,7 +208808,7 @@ oslist: linux executable: runner type: default -'431230': +"431230": installDir: Tiny Guardians launch: - config: @@ -212885,7 +208819,7 @@ oslist: macos executable: tiny_guardians.app type: default -'431240': +"431240": installDir: Golf With Your Friends launch: - config: @@ -212897,39 +208831,39 @@ executable: Golf With Your Friends.app type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: Golf With Your Friends.x86_64 type: none - - arguments: '-force-opengl' + - arguments: "-force-opengl" config: - osarch: '64' + osarch: "64" oslist: linux description: Force OpenGL executable: Golf With Your Friends.x86_64 type: none - - arguments: '-screen-fullscreen 0' + - arguments: "-screen-fullscreen 0" config: - osarch: '64' + osarch: "64" oslist: linux description: Force full screen executable: Golf With Your Friends.x86_64 type: none - - arguments: '-force-glcore' + - arguments: "-force-glcore" config: oslist: macos description: Force Glcore executable: Golf With Your Friends.app type: none -'431250': +"431250": installDir: Mushroom Wars launch: - config: - betakey: 'yes' + betakey: "yes" oslist: windows executable: MushroomWars.exe type: default -'431260': +"431260": installDir: Cursed launch: - config: @@ -212940,8 +208874,8 @@ oslist: linux executable: cursed type: none -'431270': {} -'431280': +"431270": {} +"431280": installDir: Tiny and tall launch: - config: @@ -212952,7 +208886,7 @@ oslist: macos executable: Visionaire Player.app type: default -'431290': +"431290": installDir: Level22 launch: - config: @@ -212965,7 +208899,7 @@ description: launch executable: level22.app type: none -'431300': +"431300": installDir: Classic Fun Collection 5 in 1 launch: - config: @@ -212974,9 +208908,9 @@ type: default - config: oslist: macos - executable: Classic Fun Collection.app\\Contents\\MacOS\\Classic Fun Collection + executable: "Classic Fun Collection.app\\\\Contents\\\\MacOS\\\\Classic Fun Collection" type: default -'431330': +"431330": installDir: Dungeons Are Random launch: - config: @@ -212989,35 +208923,35 @@ type: default - config: oslist: macos - executable: DaR_MAC.app\\Contents\\MacOS\\DaR_MAC + executable: "DaR_MAC.app\\\\Contents\\\\MacOS\\\\DaR_MAC" type: default -'431360': +"431360": installDir: TLAUS launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: bin\\win_x64\\TLAUS.exe + executable: "bin\\\\win_x64\\\\TLAUS.exe" type: default - config: - osarch: '32' - executable: bin\\win_x86\\TLAUS.exe + osarch: "32" + executable: "bin\\\\win_x86\\\\TLAUS.exe" type: default -'431370': +"431370": installDir: Diorama No3 - The Marchland launch: - config: oslist: windows executable: Diorama No3 The Marchland.exe type: vr -'431390': +"431390": installDir: Diorama No1 - Blocked In launch: - config: oslist: windows executable: Diorama No1 Blocked In.exe type: vr -'431410': +"431410": installDir: Mazement launch: - config: @@ -213032,11 +208966,11 @@ oslist: linux executable: mazement.x86 type: default -'431450': - installDir: Alchemist's Awakening +"431450": + installDir: "Alchemist's Awakening" launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: Alchemist32.exe type: default @@ -213049,11 +208983,11 @@ executable: Alchemist type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: Alchemist.exe type: default -'431460': +"431460": installDir: Midnight launch: - config: @@ -213068,25 +209002,25 @@ oslist: macos executable: midnight.app type: none -'431470': +"431470": installDir: Inside The Code launch: - config: oslist: windows executable: Inside the Code.exe type: default -'431500': +"431500": installDir: Clash of the Monsters launch: - config: oslist: windows - executable: cotm_win_1.0\\cotm_1.0_windows.exe + executable: "cotm_win_1.0\\\\cotm_1.0_windows.exe" type: default - config: oslist: macos executable: cotm_mac_1.0.app type: default -'431510': +"431510": installDir: Mystic Destinies Serendipity of Aeons launch: - config: @@ -213101,82 +209035,60 @@ oslist: linux executable: Mystic Destinies.sh type: default -'431520': +"431520": installDir: AOFTOTAL launch: - config: oslist: windows description: Launch - description_loc: - english: Launch executable: aof-total-start-windows.bat - config: oslist: linux description: Launch - description_loc: - english: Launch - executable: ./aof-total-start-linux.sh + executable: "./aof-total-start-linux.sh" - config: oslist: macos description: Launch - description_loc: - english: Launch - executable: ./aof-total-start-macosx.command - - arguments: '-config' + executable: "./aof-total-start-macosx.command" + - arguments: "-config" config: oslist: windows description: Configuration - description_loc: - english: Configuration executable: aof-total-start-windows.bat - - arguments: '-config' + - arguments: "-config" config: oslist: linux description: Configuration - description_loc: - english: Configuration - executable: ./aof-total-start-linux.sh - - arguments: '-config' + executable: "./aof-total-start-linux.sh" + - arguments: "-config" config: oslist: macos description: Configuration - description_loc: - english: Configuration - executable: ./aof-total-start-macosx.command + executable: "./aof-total-start-macosx.command" - config: oslist: windows - description: 'Play Age of Fear: Total (Log Console)' - description_loc: - english: 'Play Age of Fear: Total (Log Console)' + description: "Play Age of Fear: Total (Log Console)" executable: aof-total-start-windows-console.bat - - arguments: '-workshop' + - arguments: "-workshop" config: oslist: windows description: Workshop Manager - description_loc: - english: Workshop Manager executable: aof-total-start-windows-console.bat - - arguments: '-workshop' + - arguments: "-workshop" config: oslist: macos description: Workshop Manager - description_loc: - english: Workshop Manager - executable: ./aof-total-start-macosx.command - - arguments: '-workshop' + executable: "./aof-total-start-macosx.command" + - arguments: "-workshop" config: oslist: linux description: Workshop Manager - description_loc: - english: Workshop Manager - executable: ./aof-total-start-linux.sh + executable: "./aof-total-start-linux.sh" - config: oslist: windows - description: 'Play Age of Fear: Total (Force 64bit)' - description_loc: - english: 'Play Age of Fear: Total (Force 64bit)' + description: "Play Age of Fear: Total (Force 64bit)" executable: aof-total-start-windows-64.bat -'431540': +"431540": installDir: Frosty Kiss launch: - config: @@ -213187,8 +209099,8 @@ oslist: linux executable: frosty kiss STEAM BUILD.sh type: none -'431560': {} -'431590': +"431560": {} +"431590": installDir: Earn to Die 2 launch: - config: @@ -213199,22 +209111,22 @@ oslist: macos executable: EarnToDie_2 type: default -'43160': +"43160": installDir: Metro Last Light launch: - config: oslist: windows - executable: ./MetroLL.exe - workingdir: ./ + executable: "./MetroLL.exe" + workingdir: "./" - config: oslist: macos - executable: ./MetroLL.app - workingdir: ./ + executable: "./MetroLL.app" + workingdir: "./" - config: oslist: linux - executable: ./MetroLL - workingdir: ./ -'431600': + executable: "./MetroLL" + workingdir: "./" +"431600": installDir: Automobilista launch: - executable: AMS.exe @@ -213226,42 +209138,42 @@ - config: oslist: windows description: View User Guide - executable: support\\Automobilista_User_Guide_EN.pdf + executable: "support\\\\Automobilista_User_Guide_EN.pdf" type: manual - - arguments: '--disable-gpu' + - arguments: "--disable-gpu" description: Custom Season Tool - executable: SeasonTool\\SeasonTool.exe + executable: "SeasonTool\\\\SeasonTool.exe" type: none - workingdir: SeasonTool\\ -'431610': - installDir: Hubert's Island Adventure Mouse o' War + workingdir: "SeasonTool\\\\" +"431610": + installDir: "Hubert's Island Adventure Mouse o' War" launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: game-Windows-x86.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: game-Windows-x86_64.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: game-Linux-x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: game-Linux-x86_64 type: default - config: - osarch: '64' + osarch: "64" oslist: macos executable: game-OSX-x86_64 type: default -'431630': +"431630": installDir: Action Legion launch: - config: @@ -213269,12 +209181,12 @@ executable: ActionLegion.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: ActionLegion.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: ActionLegion.x86_64 type: default @@ -213282,7 +209194,7 @@ oslist: macos executable: ActionLegion.app/Contents/MacOS/ActionLegion type: default -'431640': +"431640": installDir: Doodle Kingdom launch: - config: @@ -213291,7 +209203,7 @@ executable: DoodleKingdom.exe type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: DoodleGame @@ -213301,7 +209213,7 @@ description: Launch executable: DoodleKingdom.app type: none -'431650': +"431650": installDir: Phoning Home launch: - config: @@ -213314,18 +209226,18 @@ executable: PhoningHome.app type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: PhoningHome.x86_64 type: none - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: PhoningHome.x86 type: none -'431680': +"431680": installDir: Nuts! The Battle of the Bulge launch: - config: @@ -213336,7 +209248,7 @@ oslist: macos executable: Nuts.app type: default -'431700': +"431700": installDir: AOF3 launch: - config: @@ -213347,103 +209259,101 @@ - config: oslist: linux description: Launch - executable: ./aof3-start-linux.sh + executable: "./aof3-start-linux.sh" type: none - config: oslist: macos description: Launch - executable: ./aof3-start-macosx.command + executable: "./aof3-start-macosx.command" type: none - - arguments: '-config' + - arguments: "-config" config: oslist: windows description: Configuration executable: aof3-start-windows.bat type: none - - arguments: '-config' + - arguments: "-config" config: oslist: linux description: Configuration - executable: ./aof3-start-linux.sh + executable: "./aof3-start-linux.sh" type: none - - arguments: '-config' + - arguments: "-config" config: oslist: macos description: Configuration - executable: ./aof3-start-macosx.command + executable: "./aof3-start-macosx.command" type: none - config: oslist: windows - description: 'Play Age of Fear 3: The Legend (Log Console)' + description: "Play Age of Fear 3: The Legend (Log Console)" executable: aof3-start-windows-console.bat type: none - - arguments: '-workshop' + - arguments: "-workshop" config: oslist: windows description: Workshop Manager executable: aof3-start-windows-console.bat type: none - - arguments: '-workshop' + - arguments: "-workshop" config: oslist: macos description: Workshop Manager - executable: ./aof3-start-macosx.command + executable: "./aof3-start-macosx.command" type: none - - arguments: '-workshop' + - arguments: "-workshop" config: oslist: linux description: Workshop Manager - executable: ./aof3-start-linux.sh + executable: "./aof3-start-linux.sh" type: none - config: oslist: windows - description: 'Play Age of Fear 3: The Legend (Force 64bit)' - description_loc: - english: 'Play Age of Fear 3: The Legend (Force 64bit)' + description: "Play Age of Fear 3: The Legend (Force 64bit)" executable: aof3-start-windows-64.bat type: none -'431710': +"431710": installDir: Space Pilgrim Episode Two launch: - executable: game.exe type: none -'431740': +"431740": installDir: Chowderchu launch: - config: oslist: windows executable: Chowderchu_1.4.exe type: default -'431750': +"431750": installDir: Iron Sea Defenders launch: - config: oslist: windows executable: TD.exe type: default -'431770': +"431770": installDir: Rivalry launch: - - arguments: '-screen-width 1920 -screen-height 1080 -screen-fullscreen 1 ' + - arguments: "-screen-width 1920 -screen-height 1080 -screen-fullscreen 1 " config: oslist: windows description: Rivary Windows executable: Rivalry.exe type: default - - arguments: '-screen-width 1920 -screen-height 1080 -screen-fullscreen 1' + - arguments: "-screen-width 1920 -screen-height 1080 -screen-fullscreen 1" config: oslist: macos description: Rivalry OSX executable: Rivalry.app type: default - - arguments: '-force-opengl -screen-width 1920 -screen-height 1080 -screen-fullscreen 1' + - arguments: "-force-opengl -screen-width 1920 -screen-height 1080 -screen-fullscreen 1" config: - osarch: '64' + osarch: "64" oslist: linux description: Original Linux 64 bit executable: Rivalry.x86_64 type: default -'431810': +"431810": installDir: Rencounter launch: - config: @@ -213458,7 +209368,7 @@ oslist: linux executable: game.x86 type: none -'431830': +"431830": installDir: Drift Into Eternity launch: - config: @@ -213469,26 +209379,26 @@ oslist: macos executable: Drift_Into_Eternity.app type: default - - arguments: '-screen-fullscreen 0' + - arguments: "-screen-fullscreen 0" config: - osarch: '32' + osarch: "32" oslist: linux executable: Drift_Into_Eternity.x86 type: default - - arguments: '-screen-fullscreen 0' + - arguments: "-screen-fullscreen 0" config: - osarch: '64' + osarch: "64" oslist: linux executable: Drift_Into_Eternity.x86_64 type: default -'431840': +"431840": installDir: 3DRPG launch: - config: oslist: windows executable: 3DRPG.exe type: none -'431850': +"431850": installDir: Projector Face launch: - config: @@ -213500,33 +209410,33 @@ description: Settings executable: winsetup.exe type: config -'431860': {} -'431870': +"431860": {} +"431870": installDir: Castle Torgeath launch: - config: oslist: windows executable: CastleTorgeath.exe type: default -'43190': +"43190": installDir: the-haunted-hells-reach launch: - executable: Binaries/Win32/HauntedGame.exe -'431910': +"431910": installDir: Psychocat The Answer launch: - config: oslist: windows executable: Psychocat.exe type: none -'431930': +"431930": installDir: KABOUNCE launch: - config: oslist: windows executable: KABOUNCE.exe type: default -'431940': +"431940": installDir: Wildfire launch: - config: @@ -213536,13 +209446,13 @@ type: none - config: oslist: macos - executable: wildfire.app\\Contents\\MacOS\\Mac_Runner + executable: "wildfire.app\\\\Contents\\\\MacOS\\\\Mac_Runner" type: none - config: oslist: linux executable: runner type: none -'431950': +"431950": installDir: Age-of-Fear-4 launch: - config: @@ -213553,86 +209463,74 @@ - config: oslist: linux description: Launch - description_loc: - english: Launch - executable: ./aof4-start-linux.sh + executable: "./aof4-start-linux.sh" type: none - config: oslist: macos description: Launch - executable: ./aof4-start-macosx.command + executable: "./aof4-start-macosx.command" type: none - - arguments: '-config' + - arguments: "-config" config: oslist: windows description: Configuration - description_loc: - english: Configuration executable: aof4-start-windows.bat type: none - - arguments: '-config' + - arguments: "-config" config: oslist: linux description: Configuration - description_loc: - english: Configuration - executable: ./aof4-start-linux.sh + executable: "./aof4-start-linux.sh" type: none - - arguments: '-config' + - arguments: "-config" config: oslist: macos description: Configuration - description_loc: - english: Configuration - executable: ./aof4-start-macosx.command + executable: "./aof4-start-macosx.command" type: none - config: oslist: windows - description: 'Play Age of Fear 4: The Iron Killer (Log Console)' - description_loc: - english: 'Play Age of Fear 4: The Iron Killer (Log Console)' + description: "Play Age of Fear 4: The Iron Killer (Log Console)" executable: aof4-start-windows-console.bat type: none - - arguments: '-workshop' + - arguments: "-workshop" config: oslist: windows description: Workshop Manager executable: aof4-start-windows-console.bat type: none - - arguments: '-workshop' + - arguments: "-workshop" config: oslist: macos description: Workshop Manager - executable: ./aof4-start-macosx.command + executable: "./aof4-start-macosx.command" type: none - - arguments: '-workshop' + - arguments: "-workshop" config: oslist: linux description: Workshop Manager - executable: ./aof4-start-linux.sh + executable: "./aof4-start-linux.sh" type: none - config: oslist: windows - description: 'Play Age of Fear 4: The Iron Killer (Force 64bit)' - description_loc: - english: 'Play Age of Fear 4: The Iron Killer (Force 64bit)' + description: "Play Age of Fear 4: The Iron Killer (Force 64bit)" executable: aof4-start-windows-64.bat type: none -'431990': {} -'4320': +"431990": {} +"4320": installDir: StarTrekDAC launch: - - executable: Bin\\StarTrekDAC.exe -'432010': - installDir: World's Dawn + - executable: "Bin\\\\StarTrekDAC.exe" +"432010": + installDir: "World's Dawn" launch: - config: oslist: windows executable: Game.exe type: default -'432020': {} -'432080': {} -'432100': +"432020": {} +"432080": {} +"432100": installDir: Negligee launch: - config: @@ -213650,7 +209548,7 @@ description: Launch executable: Negligee.app type: none -'432110': +"432110": installDir: Echo Tokyo Phoenix launch: - config: @@ -213668,7 +209566,7 @@ description: Launch executable: ET Phoenix.app type: none -'432130': +"432130": installDir: Break Chance Memento launch: - config: @@ -213683,8 +209581,8 @@ oslist: linux executable: BCM.sh type: default -'432150': {} -'432170': +"432150": {} +"432170": installDir: Silver Knight launch: - config: @@ -213692,7 +209590,7 @@ description: Launch executable: Silverk Knight.exe type: none -'432180': +"432180": installDir: Discouraged Workers TEEN launch: - config: @@ -213703,7 +209601,7 @@ - config: oslist: macos description: Launch - executable: Discouraged-Workers-TEEN.app\\Contents\\MacOS\\Discouraged-Workers-TEEN + executable: "Discouraged-Workers-TEEN.app\\\\Contents\\\\MacOS\\\\Discouraged-Workers-TEEN" type: none - config: oslist: linux @@ -213714,14 +209612,14 @@ russian: Отчаявшиеся работники TEEN schinese: 失望失业者 TEEN spanish: Trabajadores desanimados TEEN -'432190': +"432190": installDir: Chef Solitaire USA launch: - config: oslist: windows executable: ChefSolitaire.exe type: none -'432230': +"432230": installDir: Axe Bow Staff launch: - config: @@ -213732,19 +209630,19 @@ oslist: macos executable: Axe Bow Staff.app type: default - - arguments: '-force-opengl' + - arguments: "-force-opengl" config: - osarch: '32' + osarch: "32" oslist: linux executable: Axe Bow Staff.x86 type: default - - arguments: '-force-opengl' + - arguments: "-force-opengl" config: - osarch: '64' + osarch: "64" oslist: linux executable: Axe Bow Staff.x86_64 type: default -'432240': +"432240": installDir: UnderDread launch: - config: @@ -213755,14 +209653,14 @@ oslist: macos executable: UnderDread.app type: default -'432250': +"432250": installDir: Soviet City launch: - config: oslist: windows executable: sovietcity.exe type: default -'432260': +"432260": installDir: Tiltagon launch: - config: @@ -213771,27 +209669,27 @@ type: default - config: oslist: macos - executable: tiltagon.app\\Contents\\MacOS\\tiltagon + executable: "tiltagon.app\\\\Contents\\\\MacOS\\\\tiltagon" type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: tiltagon.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: tiltagon.x86_64 type: none -'432270': +"432270": installDir: NoSeat launch: - config: oslist: windows executable: noseat.exe type: default -'432280': {} -'432290': +"432280": {} +"432290": installDir: Elemental Heroes launch: - config: @@ -213806,7 +209704,7 @@ oslist: linux executable: ElementalHeroes.x86_64 type: default -'432310': +"432310": installDir: Virtual Pool 4 Multiplayer launch: - config: @@ -213814,12 +209712,12 @@ description: Launch executable: launcher.exe type: none -'432350': +"432350": installDir: Epic Battle Fantasy 5 launch: - executable: Epic Battle Fantasy 5.exe type: none -'432370': +"432370": installDir: Sethian launch: - config: @@ -213830,7 +209728,7 @@ oslist: macos executable: Sethian.app/Contents/MacOS/Sethian type: default -'432380': +"432380": installDir: Hydra Slayer launch: - config: @@ -213845,14 +209743,14 @@ oslist: macos executable: exec/hydra.sh type: default -'432390': +"432390": installDir: Weekend Drive launch: - config: oslist: windows executable: Weekend Drive.exe type: none -'432410': +"432410": installDir: The Sacred Stone A Story Adventure launch: - config: @@ -213861,14 +209759,14 @@ type: default - executable: SacredStoneMultiplayer.exe type: none -'432420': +"432420": installDir: Ludoria launch: - config: oslist: windows executable: Ludoria.exe type: none -'432470': +"432470": installDir: Magdalena launch: - config: @@ -213879,7 +209777,7 @@ oslist: macos executable: Magdalena.app type: default -'432480': +"432480": installDir: Grenade Madness launch: - config: @@ -213894,7 +209792,7 @@ oslist: linux executable: GM.x86 type: default -'432490': +"432490": installDir: ATOM GRRRL!! launch: - config: @@ -213909,60 +209807,60 @@ oslist: linux executable: atomgrrrl.sh type: default -'432500': +"432500": installDir: Evertown launch: - config: oslist: windows executable: Evertown.exe type: default -'432540': +"432540": installDir: content launch: - description: Launch executable: nw.exe type: default -'432590': +"432590": installDir: And So It Was launch: - - arguments: '-windowed' + - arguments: "-windowed" config: oslist: windows executable: asiw.exe type: default - - arguments: '-windowed' + - arguments: "-windowed" config: oslist: macos executable: asiw.app type: default - - arguments: '-windowed' + - arguments: "-windowed" config: oslist: linux executable: asiw.x86 type: default -'432610': +"432610": installDir: Monumental launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Monumental_x64.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: Monumental_x86.exe type: none - - arguments: '-force-opengl' + - arguments: "-force-opengl" config: - osarch: '32' + osarch: "32" oslist: linux description: 32-Bit Linux executable: Monumental.x86 type: default - - arguments: '-force-opengl' + - arguments: "-force-opengl" config: - osarch: '64' + osarch: "64" oslist: linux description: 64-Bit Linux executable: Monumental.x86_64 @@ -213971,29 +209869,29 @@ oslist: macos executable: Monumental.app type: default -'432620': +"432620": installDir: Mimic Arena launch: - config: oslist: windows - executable: Windows\\mimic-arena.exe + executable: "Windows\\\\mimic-arena.exe" type: default - config: oslist: macos - executable: Mac\\mimic-arena.app\\Contents\\MacOS\\mimic-arena + executable: "Mac\\\\mimic-arena.app\\\\Contents\\\\MacOS\\\\mimic-arena" type: default - config: oslist: linux - executable: Linux\\mimic-arena.x86 + executable: "Linux\\\\mimic-arena.x86" type: none -'432640': +"432640": installDir: BuriedTown launch: - config: oslist: windows executable: BerryTown.exe type: none -'432720': +"432720": installDir: Welkin Road launch: - config: @@ -214001,36 +209899,36 @@ executable: WelkinRoad.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: WelkinRoad.x86_64 type: default - config: - osarch: '64' + osarch: "64" oslist: macos executable: WelkinRoad.app type: default -'432760': - installDir: Small Town Terrors Galdor's Bluff Collector's Edition +"432760": + installDir: "Small Town Terrors Galdor's Bluff Collector's Edition" launch: - config: oslist: windows executable: SmallTownTerrors_GaldorsBluff_CE.exe type: default -'432770': +"432770": installDir: Small Town Terrors Livingston launch: - description: Launch executable: SmallTownTerrors_Livingston.exe type: none -'432780': +"432780": installDir: Mystery Masters The Dream Catcher Chronicles Manitou launch: - config: oslist: windows executable: Dreamcatcher.exe type: none -'432790': +"432790": installDir: Angel Flare launch: - config: @@ -214041,15 +209939,15 @@ oslist: windows executable: Angel Flare.exe type: default -'432850': {} -'432870': +"432850": {} +"432870": installDir: STO launch: - config: oslist: windows executable: STO.exe type: default -'432890': +"432890": installDir: Quote launch: - config: @@ -214064,7 +209962,7 @@ oslist: linux executable: Quote.x86 type: default -'432940': +"432940": installDir: Breakneck launch: - config: @@ -214073,23 +209971,23 @@ type: none - config: oslist: macos - executable: Breakneck.app\\Contents\\MacOS\\Breakneck + executable: "Breakneck.app\\\\Contents\\\\MacOS\\\\Breakneck" type: none -'432950': +"432950": installDir: Orange Moon launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch Orange Moon on win64 system - executable: win64\\OrangeMoon.exe + executable: "win64\\\\OrangeMoon.exe" type: default - config: - osarch: '32' + osarch: "32" oslist: windows - executable: win32\\OrangeMoon.exe + executable: "win32\\\\OrangeMoon.exe" type: default -'432980': +"432980": installDir: INVERSUS launch: - config: @@ -214103,7 +210001,7 @@ executable: D3D9/Inversus.exe type: option2 workingdir: D3D9 -'432990': +"432990": installDir: Green Game launch: - config: @@ -214112,19 +210010,19 @@ type: default - config: oslist: macos - executable: GreenGame.app\\Contents\\MacOS\\GreenGame + executable: "GreenGame.app\\\\Contents\\\\MacOS\\\\GreenGame" type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: GreenGame.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: GreenGame.x86_64 type: default -'433000': +"433000": installDir: Lost Lands The Golden Curse launch: - config: @@ -214135,24 +210033,24 @@ oslist: macos executable: Lost Lands 3 The Golden Curse CE.app type: none -'433100': +"433100": installDir: The Town Of Light launch: - config: oslist: windows executable: ttol.exe type: default -'433110': +"433110": installDir: Zipple World launch: - executable: zipple_world_21.exe type: default -'433120': +"433120": installDir: Crash Landing launch: - - executable: \\CrashLanding\\Binaries\\Win64\\CrashLanding.exe + - executable: "\\\\CrashLanding\\\\Binaries\\\\Win64\\\\CrashLanding.exe" type: default -'433130': +"433130": installDir: WarBirds Dogfights launch: - config: @@ -214170,70 +210068,70 @@ executable: Dogfights.app/Contents/MacOS/WarBirds type: default workingdir: Dogfights.app/Contents/Resources -'433170': +"433170": installDir: Die Young launch: - config: oslist: windows description: Die Young - executable: DieYoung\\Binaries\\Win64\\DieYoung-Win64-Shipping.exe + executable: "DieYoung\\\\Binaries\\\\Win64\\\\DieYoung-Win64-Shipping.exe" type: option1 - config: oslist: windows - description: 'Die Young: Prologue' - executable: DieYoungPrologue\\Binaries\\Win64\\DieYoungPrologue-Win64-Shipping.exe + description: "Die Young: Prologue" + executable: "DieYoungPrologue\\\\Binaries\\\\Win64\\\\DieYoungPrologue-Win64-Shipping.exe" type: option2 -'433190': +"433190": installDir: CDF Starfighter VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: CDFStarfighterVRup.exe type: vr - config: - osarch: '64' + osarch: "64" oslist: windows executable: CDFStarfighterVRup.exe type: othervr - config: - osarch: '64' + osarch: "64" oslist: windows executable: CDFStarfighterVRup.exe type: vr - config: - osarch: '64' + osarch: "64" oslist: windows executable: CDFStarfighterVRup.exe type: default -'433210': +"433210": installDir: RhinoRage launch: - config: oslist: windows executable: Rhino.exe type: none -'433280': +"433280": installDir: Warlords Battlecry III launch: - config: oslist: windows executable: Battlecry III.exe type: none -'433300': +"433300": installDir: Marvel - Ultimate Alliance launch: - executable: Marvel.exe type: none -'433320': +"433320": installDir: Marvel - Ultimate Alliance 2 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Alliance.exe type: default -'433340': +"433340": installDir: Slime Rancher launch: - config: @@ -214245,54 +210143,54 @@ executable: Contents/MacOS/SlimeRancher type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: SlimeRancher.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: SlimeRancher.x86_64 type: default - - arguments: '-lowGraphics' + - arguments: "-lowGraphics" config: oslist: windows executable: SlimeRancher.exe type: safemode - - arguments: '-lowGraphics' + - arguments: "-lowGraphics" config: oslist: macos executable: Contents/MacOS/SlimeRancher type: safemode - - arguments: '-lowGraphics' + - arguments: "-lowGraphics" config: - osarch: '32' + osarch: "32" oslist: linux executable: SlimeRancher.x86 type: safemode - - arguments: '-lowGraphics' + - arguments: "-lowGraphics" config: - osarch: '64' + osarch: "64" oslist: linux executable: SlimeRancher.x86_64 type: safemode - - arguments: '-vrmode Oculus' + - arguments: "-vrmode Oculus" config: - osarch: '64' + osarch: "64" oslist: windows - ownsdlc: '939480' + ownsdlc: "939480" description: Slime Rancher VR Playground executable: VRPlayground/SlimeRancher.exe type: othervr - - arguments: '-vrmode OpenVR' + - arguments: "-vrmode OpenVR" config: - osarch: '64' + osarch: "64" oslist: windows - ownsdlc: '939480' + ownsdlc: "939480" description: Slime Rancher VR Playground executable: VRPlayground/SlimeRancher.exe type: vr -'433350': +"433350": installDir: BlackShot launch: - arguments: steam @@ -214300,7 +210198,7 @@ oslist: windows executable: Patcher.exe type: default -'433360': +"433360": installDir: Drawn 2 Dark Flight launch: - config: @@ -214311,8 +210209,8 @@ oslist: macos executable: DrawnII.app type: default -'433370': {} -'433380': +"433370": {} +"433380": installDir: Back in 1995 launch: - config: @@ -214327,7 +210225,7 @@ oslist: macos executable: Backin1995.app type: default -'433400': +"433400": installDir: Kim launch: - config: @@ -214342,28 +210240,28 @@ oslist: linux executable: Kim.x86 type: default -'433450': +"433450": installDir: InfernoClimber launch: - config: oslist: windows executable: ARPG.exe type: none -'433480': +"433480": installDir: RayonRiddles launch: - config: oslist: windows executable: GoblinGame.exe type: default -'433490': - installDir: Super Flippin' Phones +"433490": + installDir: "Super Flippin' Phones" launch: - config: oslist: windows - executable: Super Flippin' Phones.exe + executable: "Super Flippin' Phones.exe" type: default -'433530': +"433530": installDir: Heliborne launch: - config: @@ -214377,43 +210275,39 @@ - config: oslist: linux description: Heliborne - description_loc: - english: Heliborne executable: heliborne-launcher type: none - config: - osarch: '32' + osarch: "32" oslist: windows executable: heliborne.exe - config: betakey: heliborne_original oslist: windows description: Heliborne Original Fixed - description_loc: - english: Heliborne Original Fixed executable: heliborne.exe -'433550': +"433550": installDir: DARQ launch: - config: oslist: windows executable: DARQ.exe type: default -'433570': +"433570": installDir: Side Quest launch: - config: oslist: windows executable: sidequest.exe type: default -'433580': +"433580": installDir: Timelapse launch: - config: oslist: windows executable: TL_Launcher.exe type: default -'433590': +"433590": installDir: The Song of Seven Chapter One launch: - config: @@ -214422,62 +210316,62 @@ type: default - config: oslist: macos - executable: S07_C1.app\\Contents\\MacOS\\S07_C1 + executable: "S07_C1.app\\\\Contents\\\\MacOS\\\\S07_C1" type: default - config: oslist: linux executable: So7_C1.x86_64 type: default -'433600': +"433600": installDir: A Legend of Luca launch: - - description: 'Full Scale: Porting & Sliding Locomotion' + - description: "Full Scale: Porting & Sliding Locomotion" executable: Legend of Luca.exe type: vr - arguments: /RoomScale - description: 'Room Scale: Scaled down to fit your Play Area' + description: "Room Scale: Scaled down to fit your Play Area" executable: Legend of Luca.exe type: vr -'433630': +"433630": installDir: vrAMP launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: vrAMP.exe type: vr -'433650': +"433650": installDir: Book_of_Merlin launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: bookofmerlin.exe type: vr -'433660': +"433660": installDir: Blockpocalypse launch: - config: oslist: macos - executable: Blockpocalypse.app\\Contents\\MacOS\\Blockpocalypse + executable: "Blockpocalypse.app\\\\Contents\\\\MacOS\\\\Blockpocalypse" type: default - config: oslist: windows executable: Blockpocalypse.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Blockpocalypse.x86_64 type: default -'433670': +"433670": installDir: Professional Farmer 2017 launch: - config: oslist: windows executable: ProFarmer2017.exe type: default -'433700': +"433700": installDir: Carpe Lucem - Seize The Light launch: - config: @@ -214485,7 +210379,7 @@ description: Vive Version executable: SeizeTheLight.exe type: vr -'433750': +"433750": installDir: The Grandfather launch: - config: @@ -214496,26 +210390,26 @@ oslist: macos executable: The Grandfather Mac.app type: default -'433790': +"433790": installDir: Wooden Floor 2 - Resurrection launch: - config: oslist: windows - executable: Binaries\\Win32\\UDK.exe + executable: "Binaries\\\\Win32\\\\UDK.exe" type: default - config: oslist: windows description: Play 64bit - executable: Binaries\\Win64\\UDK.exe + executable: "Binaries\\\\Win64\\\\UDK.exe" type: none -'433830': +"433830": installDir: Rescue From Goblin Deep launch: - config: oslist: windows executable: Rescue from Goblin Deep.exe type: none -'433840': +"433840": installDir: Trulon The Shadow Engine launch: - config: @@ -214526,42 +210420,38 @@ oslist: macos executable: Trulon.app type: default - - arguments: '-force-opengl' + - arguments: "-force-opengl" config: oslist: linux executable: Trulon.x86 type: default -'433850': +"433850": installDir: H1Z1 launch: - - arguments: >- - UseSteamLogin=1 campaignID=1066619 promoID=157 STEAM_ENABLED=1 Logging:LocalLogLevel=0 - Server=Lvshaa-liv-l02.h1z1.net:20042;Lvshaa-liv-l02.h1z1.net:20043;Lvshaa-liv-l02.h1z1.net:20044;Lvshaa-liv-l02.h1z1.net:20045 - CommandQueue:motd_uri=http://assets.daybreakgames.com/ CommandQueue:cb_uri=http://assets.daybreakgames.com/ - CommandQueue:eula_uri=http://assets.daybreakgames.com/ + - arguments: "UseSteamLogin=1 campaignID=1066619 promoID=157 STEAM_ENABLED=1 Logging:LocalLogLevel=0 Server=Lvshaa-liv-l02.h1z1.net:20042;Lvshaa-liv-l02.h1z1.net:20043;Lvshaa-liv-l02.h1z1.net:20044;Lvshaa-liv-l02.h1z1.net:20045 CommandQueue:motd_uri=http://assets.daybreakgames.com/ CommandQueue:cb_uri=http://assets.daybreakgames.com/ CommandQueue:eula_uri=http://assets.daybreakgames.com/" config: - osarch: '64' + osarch: "64" oslist: windows description: Game LaunchPad executable: H1Z1_BE.exe type: none -'433890': +"433890": installDir: MechoEcho launch: - config: oslist: windows executable: MechoEcho.exe type: default -'433900': +"433900": installDir: Helium launch: - - arguments: '-popupwindow' + - arguments: "-popupwindow" config: oslist: windows description: Launch executable: Helium.exe type: default -'433910': +"433910": installDir: Neon Drive launch: - config: @@ -214570,32 +210460,32 @@ type: none - config: oslist: macos - executable: Neon Drive.app\\Contents\\MacOS\\Neon Drive + executable: "Neon Drive.app\\\\Contents\\\\MacOS\\\\Neon Drive" type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: Neon Drive.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: Neon Drive.x86_64 type: none -'433920': +"433920": installDir: Aveyond 4 Shadow Of The Mist launch: - config: oslist: windows - description: 'Play Aveyond 4: Shadow of the Mist' + description: "Play Aveyond 4: Shadow of the Mist" executable: Aveyond4.exe type: none - config: - ownsdlc: '434950' + ownsdlc: "434950" description: View Strategy Guide executable: Aveyond 4 Strategy Guide/Aveyond 4 Strategy Guide.pdf type: none -'433950': +"433950": installDir: Bit Blaster XL launch: - config: @@ -214603,33 +210493,33 @@ executable: BitBlasterXL.app type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: BitBlasterXL.x86_64 type: none - config: - osarch: '32' + osarch: "32" oslist: windows executable: BitBlasterXL.exe type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: BitBlasterXL.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: windows executable: BitBlasterXL.exe type: none -'433960': +"433960": installDir: Shadow Of Nebula launch: - config: oslist: windows executable: shadow_of_nebula.exe type: none -'434000': +"434000": installDir: Paws launch: - config: @@ -214645,50 +210535,50 @@ oslist: linux executable: Paws.x86 type: none -'434010': {} -'434020': +"434010": {} +"434020": installDir: Last Hope - Tower Defense launch: - config: oslist: windows executable: LastHopeTD.exe type: default -'434030': +"434030": installDir: Aerofly FS 2 Flight Simulator launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Aerofly FS 2 executable: bin64/aerofly_fs_2.exe type: default workingdir: bin64 - - arguments: '-othervr' + - arguments: "-othervr" config: - osarch: '64' + osarch: "64" oslist: windows description: Aerofly FS 2 executable: bin64/aerofly_fs_2.exe type: othervr workingdir: bin64 - - arguments: '-openvr' + - arguments: "-openvr" config: - osarch: '64' + osarch: "64" oslist: windows description: Aerofly FS 2 executable: bin64/aerofly_fs_2.exe type: vr workingdir: bin64 - config: - osarch: '64' + osarch: "64" oslist: linux description: Aerofly FS 2 executable: bin64_linux/aerofly_fs_2_x64 type: default workingdir: bin64_linux - - arguments: '-safemode' + - arguments: "-safemode" config: - osarch: '64' + osarch: "64" oslist: windows description: in Safe Mode (no external DLLs or user sceneries) executable: bin64/aerofly_fs_2.exe @@ -214698,7 +210588,7 @@ oslist: macos executable: bin64_macos/Aerofly FS 2.app type: default -'434050': +"434050": installDir: Duke Nukem 3D Twentieth Anniversary World Tour launch: - config: @@ -214706,7 +210596,7 @@ description: Launch Game executable: duke3d.exe type: none -'434070': +"434070": installDir: Plight of the Zombie launch: - config: @@ -214721,16 +210611,16 @@ oslist: linux executable: potz.x86 type: default -'434090': +"434090": installDir: Bridge 2 launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: Bridge.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: Bridge.exe type: none @@ -214739,11 +210629,11 @@ executable: Bridge.app type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: Bridge.x86_64 type: none -'434110': +"434110": installDir: Premium Pool launch: - config: @@ -214758,11 +210648,11 @@ oslist: linux executable: PremiumPool.x86 type: none -'434120': +"434120": installDir: To Burn in Memory launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: nw.exe type: default @@ -214771,30 +210661,30 @@ executable: nw type: default - config: - osarch: '64' + osarch: "64" oslist: macos executable: toburninmemory.app type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: nw.exe type: default -'434130': +"434130": installDir: Witch & Hero(魔女と勇者) launch: - config: oslist: windows executable: witchandhero.exe type: default -'434140': +"434140": installDir: New Outbreak launch: - config: oslist: windows executable: New Outbreak Early Access.exe type: none -'434150': +"434150": installDir: Dark Night launch: - config: @@ -214805,7 +210695,7 @@ oslist: macos executable: Dark Night.app type: default -'434160': +"434160": installDir: A Hole New World launch: - config: @@ -214817,19 +210707,19 @@ executable: AHNW.app type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: AHNW.x86_64 type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: AHNW.x86 type: none -'434170': +"434170": installDir: The Jackbox Party Pack 3 launch: - - arguments: '-jbg.config serverUrl=ecast.jackboxgames.com' + - arguments: "-jbg.config serverUrl=ecast.jackboxgames.com" config: oslist: windows description: Launch @@ -214841,20 +210731,20 @@ executable: The Jackbox Party Pack 3.app type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Launcher.sh type: none -'434190': +"434190": installDir: Follia Dear father launch: - config: oslist: windows executable: FolliaDearFather.exe type: default -'434210': - installDir: It's Spring Again +"434210": + installDir: "It's Spring Again" launch: - config: oslist: windows @@ -214867,36 +210757,36 @@ executable: Spring.app type: none - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: Spring.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Spring.x86_64 type: none -'434220': +"434220": installDir: Bear Haven Nights launch: - - arguments: '-jar desktop.jar' + - arguments: "-jar desktop.jar" config: oslist: windows - executable: jre\\bin\\javaw.exe + executable: "jre\\\\bin\\\\javaw.exe" type: default - - arguments: '-jar desktop.jar' + - arguments: "-jar desktop.jar" config: oslist: macos executable: jre/bin/java type: default - - arguments: '-jar desktop.jar' + - arguments: "-jar desktop.jar" config: oslist: linux executable: jre/bin/java type: default -'434230': +"434230": installDir: Fairies vs. Darklings Arcane Edition launch: - config: @@ -214904,12 +210794,12 @@ executable: FvD.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: FvD.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: FvD.x86_64 type: default @@ -214917,7 +210807,7 @@ oslist: macos executable: FvD.app type: default -'434240': +"434240": installDir: Alien Blitz launch: - config: @@ -214932,7 +210822,7 @@ oslist: macos executable: alienblitz.command type: default -'434250': +"434250": installDir: Masked Shooters 2 launch: - config: @@ -214945,18 +210835,18 @@ type: option1 - config: oslist: windows - ownsdlc: '909050' + ownsdlc: "909050" description: Assault DLC - executable: MS2Assault\\MS2Assault.exe + executable: "MS2Assault\\\\MS2Assault.exe" type: option2 -'434260': +"434260": installDir: My Name is Mayo launch: - config: oslist: windows - executable: \\windows\\My Name is Mayo.exe + executable: "\\\\windows\\\\My Name is Mayo.exe" type: default -'434270': +"434270": installDir: Parasite launch: - config: @@ -214967,8 +210857,8 @@ oslist: linux executable: parasite type: default -'434280': {} -'434290': +"434280": {} +"434290": installDir: Typefighters launch: - config: @@ -214979,12 +210869,12 @@ oslist: linux executable: Typefighters.x86 type: none -'434300': +"434300": installDir: Wormhole City launch: - executable: AdvKitExamples.exe type: none -'434310': +"434310": installDir: imprint-X launch: - config: @@ -214996,23 +210886,23 @@ executable: imprint-X.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: imprint-X.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: imprint-X.x86_64 type: default -'434340': +"434340": installDir: Spheria launch: - config: oslist: windows executable: Spheria.exe type: default -'434360': +"434360": installDir: Kitten Rampage launch: - config: @@ -215029,7 +210919,7 @@ description: Kitten Rampage (Mac OS X Version) executable: Kitten Rampage.app type: option1 -'434370': +"434370": installDir: Buried An Interactive Story launch: - config: @@ -215038,28 +210928,28 @@ type: default - config: oslist: macos - executable: Buried.app\\Contents\\MacOS\\Buried + executable: "Buried.app\\\\Contents\\\\MacOS\\\\Buried" type: default - config: oslist: linux executable: Buried.x86_64 type: default -'434380': {} -'434390': +"434380": {} +"434390": installDir: Lost Bros launch: - config: oslist: windows executable: LostBros.exe type: default -'434410': +"434410": installDir: Moonlight launch: - config: oslist: windows executable: Moonlight.exe type: default -'434420': +"434420": installDir: The Chosen RPG launch: - config: @@ -215067,50 +210957,50 @@ description: Default Launch Option executable: EQLauncher.exe type: default -'434430': - installDir: Abbot's Book Demo +"434430": + installDir: "Abbot's Book Demo" launch: - config: oslist: windows executable: finalCandidate1.exe type: vr -'434460': +"434460": installDir: Rock of Ages 2 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ROA2.exe type: default -'434480': +"434480": installDir: Mathoria It All Adds Up launch: - config: oslist: windows executable: Game.exe type: none -'434490': +"434490": installDir: Otems_Defiance launch: - config: oslist: windows executable: otems_defiance.exe type: none -'434500': +"434500": installDir: BATTLE PIXELS launch: - config: oslist: windows - executable: win32\\Battle Pixels.exe + executable: "win32\\\\Battle Pixels.exe" type: none -'434510': +"434510": installDir: Formicide launch: - config: oslist: windows executable: Formicide.exe type: none -'434520': +"434520": installDir: Simutrans launch: - config: @@ -215119,11 +211009,11 @@ type: default - config: oslist: windows - ownsdlc: '435961' + ownsdlc: "435961" description: Workshop Uploader executable: workshopUploader.exe type: option2 - - arguments: '-nomidi' + - arguments: "-nomidi" config: oslist: macos executable: simutrans.app/Contents/MacOS/simutrans @@ -215143,7 +211033,7 @@ oslist: windows executable: simutrans.exe type: default -'434530': +"434530": installDir: Flobe launch: - config: @@ -215156,7 +211046,7 @@ description: Launch Flobe for Mac executable: Flobe.app type: none -'434540': +"434540": installDir: Secret of the Pendulum launch: - config: @@ -215167,7 +211057,7 @@ oslist: macos executable: Pendulum.app type: default -'434570': +"434570": installDir: Blood and Bacon launch: - config: @@ -215175,14 +211065,14 @@ description: Only A Dollar executable: BloodandBacon.exe type: none -'434580': +"434580": installDir: AOTMFC launch: - config: oslist: windows executable: AotMFC.exe type: default -'434600': +"434600": installDir: Blue Bird launch: - config: @@ -215197,21 +211087,21 @@ oslist: macos executable: BlueBird.app type: default -'434610': +"434610": installDir: Forbidden planet launch: - config: oslist: windows executable: Forbiddenplanet.exe type: default -'434620': +"434620": installDir: Pythagoria launch: - config: oslist: windows executable: Pythagoria.exe type: none -'434650': +"434650": installDir: Lost Castle launch: - config: @@ -215224,15 +211114,15 @@ type: default nameLocalized: sc_schinese: 失落城堡 -'434660': +"434660": installDir: Octahedron launch: - config: oslist: windows executable: octahedron.exe type: none -'434680': - installDir: Lamia's Game Room +"434680": + installDir: "Lamia's Game Room" launch: - config: oslist: windows @@ -215240,43 +211130,43 @@ type: default - config: oslist: macos - executable: Lamia.app\\Contents\\MacOS\\Lamia + executable: "Lamia.app\\\\Contents\\\\MacOS\\\\Lamia" type: default -'434700': +"434700": installDir: Forgotten Ball launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ForgottenBall_Windowsx64.exe type: none - config: - osarch: '32' + osarch: "32" oslist: windows executable: ForgottenBall_Windowsx86.exe type: none - config: oslist: macos - executable: Contents\\MacOS\\ForgottenBallMac + executable: "Contents\\\\MacOS\\\\ForgottenBallMac" type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: ForgottenBall_Linuxx86.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: ForgottenBall_Linuxx64.x86_64 type: default -'434730': +"434730": installDir: Half dead launch: - config: oslist: windows executable: HalfDead.exe type: none -'434750': +"434750": installDir: Z-Exemplar launch: - config: @@ -215291,22 +211181,22 @@ oslist: linux executable: Z-Exemplar_Linux.x86 type: default -'434780': {} -'434790': +"434780": {} +"434790": installDir: Planet 1138 launch: - config: oslist: windows executable: Planet 1138.exe type: default -'434800': +"434800": installDir: TheGreatEscape launch: - config: oslist: windows executable: theGreatEscape.exe type: default -'434820': +"434820": installDir: Brushwood Buddies launch: - config: @@ -215317,14 +211207,14 @@ oslist: linux executable: BrushwoodBuddies type: none -'434860': +"434860": installDir: Wanderjahr launch: - config: oslist: windows executable: C_RPG.exe type: default -'434870': +"434870": installDir: Megalo Polis launch: - config: @@ -215333,29 +211223,29 @@ type: default - config: oslist: macos - executable: Megalopolis.app\\Contents\\MacOS\\Megalopolis + executable: "Megalopolis.app\\\\Contents\\\\MacOS\\\\Megalopolis" type: default -'434880': +"434880": installDir: Hieroglyphika launch: - config: oslist: windows executable: hieroglyphika.exe type: default -'434890': +"434890": installDir: Eight Mini Racers launch: - config: oslist: windows executable: Eight_Mini_Racers.exe type: default -'434920': +"434920": installDir: Last Heroes 2 launch: - description: Launch executable: game.exe type: none -'434930': +"434930": installDir: GiAnt launch: - config: @@ -215364,25 +211254,25 @@ type: default - config: oslist: windows - ownsdlc: '494650' + ownsdlc: "494650" description: GiAnt WARFARE executable: GiAntWarfare.exe type: option1 -'434960': +"434960": installDir: Rolling Gauntlet launch: - config: oslist: windows executable: RollerDerby.exe type: default -'434970': +"434970": installDir: That Dam Level launch: - config: oslist: windows executable: TDLr.exe type: none -'434980': +"434980": installDir: Onion Force launch: - config: @@ -215397,11 +211287,11 @@ oslist: linux executable: game.unx type: none -'43500': +"43500": installDir: M.U.D. TV launch: - executable: MudTV.exe -'435000': +"435000": installDir: The Whisperer in Darkness launch: - config: @@ -215418,66 +211308,66 @@ oslist: linux executable: Whisperer type: default -'435010': +"435010": installDir: Krinkle Krusher launch: - config: oslist: windows executable: kk.exe type: default -'435020': +"435020": installDir: AFL Evolution launch: - - arguments: '-width 1920 -height 1080 -fullscreen' + - arguments: "-width 1920 -height 1080 -fullscreen" config: - osarch: '64' + osarch: "64" oslist: windows description: 1920 x 1080 Fullscreen executable: afl.exe type: option1 - - arguments: '-width 1920 -height 1080 -windowed' + - arguments: "-width 1920 -height 1080 -windowed" config: - osarch: '64' + osarch: "64" oslist: windows description: 1920 x 1080 Windowed executable: afl.exe type: option1 - - arguments: '-width 1280 -height 720 -fullscreen' + - arguments: "-width 1280 -height 720 -fullscreen" config: - osarch: '64' + osarch: "64" oslist: windows description: 1280 x 720 Fullscreen executable: afl.exe type: option2 - - arguments: '-width 1280 -height 720 -windowed' + - arguments: "-width 1280 -height 720 -windowed" config: - osarch: '64' + osarch: "64" oslist: windows description: 1280 x 720 Windowed executable: afl.exe type: option2 - - arguments: '-width 2560 -height 1080 -fullscreen' + - arguments: "-width 2560 -height 1080 -fullscreen" config: - osarch: '64' + osarch: "64" oslist: windows description: 2560 x 1080 Fullscreen executable: afl.exe type: option3 - - arguments: '-width 2560 -height 1440 -fullscreen' + - arguments: "-width 2560 -height 1440 -fullscreen" config: - osarch: '64' + osarch: "64" oslist: windows description: 2560 x 1440 Fullscreen executable: afl.exe type: option3 - - arguments: '-width 3840 -height 2160 -fullscreen' + - arguments: "-width 3840 -height 2160 -fullscreen" config: - osarch: '64' + osarch: "64" oslist: windows description: 3840 x 2160 Fullscreen executable: afl.exe type: option3 -'435030': +"435030": installDir: Lost Lands Mahjong launch: - config: @@ -215488,7 +211378,7 @@ oslist: macos executable: Lost Lands Mahjong.app type: none -'435040': +"435040": installDir: IncredibleDraculaCE launch: - config: @@ -215497,16 +211387,16 @@ type: default - config: oslist: macos - executable: Incredible Dracula_Chasing Love Collector's Edition Steam.app + executable: "Incredible Dracula_Chasing Love Collector's Edition Steam.app" type: default -'435050': +"435050": installDir: Glory Kingdom launch: - config: oslist: windows executable: GloryKingdom.exe type: default -'435070': +"435070": installDir: Elansar launch: - config: @@ -215514,11 +211404,11 @@ executable: Elansar.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: elansar_fullscreen_linux86 type: default -'435080': +"435080": installDir: Philia the Sequel to Elansar launch: - config: @@ -215526,23 +211416,23 @@ executable: Philia Fullscreen.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Philia-Fullscreen.linux type: default - config: - osarch: '64' + osarch: "64" oslist: macos executable: Philia Fullscreen.app type: default -'435100': +"435100": installDir: 2Dark launch: - config: oslist: windows executable: 2Dark.exe type: none -'435120': +"435120": installDir: Rusty Lake Hotel launch: - config: @@ -215553,24 +211443,24 @@ oslist: macos executable: RustyLakeHotel.app type: default -'435140': +"435140": installDir: RushforgoldAlaska launch: - executable: gold_rush.exe type: none -'435150': +"435150": installDir: Divinity Original Sin 2 launch: - config: oslist: windows - executable: bin\\SupportTool.exe + executable: "bin\\\\SupportTool.exe" type: default workingdir: bin - config: oslist: macos executable: Divinity - Original Sin 2.app type: default -'435210': +"435210": installDir: Intergalactic Road Warriors launch: - config: @@ -215585,19 +211475,19 @@ oslist: linux executable: IntergalacticRoadWarriors.x86 type: none -'435230': +"435230": installDir: MedievalPlayground launch: - config: oslist: windows executable: MedievalPlayground.exe type: default -'435250': +"435250": installDir: Deadhunt launch: - executable: Deadhunt.exe type: none -'435260': +"435260": installDir: Planet Stronghold Colonial Defense launch: - config: @@ -215612,7 +211502,7 @@ oslist: linux executable: PSCD.sh type: none -'435300': +"435300": installDir: We Know the Devil launch: - config: @@ -215621,17 +211511,17 @@ type: default - config: oslist: macos - executable: We Know the Devil.app\\Contents\\MacOS\\Electron + executable: "We Know the Devil.app\\\\Contents\\\\MacOS\\\\Electron" type: default -'435360': +"435360": installDir: forget me not launch: - config: oslist: windows executable: campus_notes.exe type: default -'435380': {} -'435400': +"435380": {} +"435400": installDir: HiddenFolks launch: - config: @@ -215646,28 +211536,28 @@ oslist: linux executable: Hidden Folks.x86_64 type: default -'435410': {} -'435420': +"435410": {} +"435420": installDir: Operation Matriarchy launch: - config: oslist: windows executable: GAME.EXE type: none -'435440': +"435440": installDir: Galaxy Control 3D Strategy launch: - config: - osarch: '64' + osarch: "64" oslist: macos executable: gc.app type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: gc.exe type: default -'435460': +"435460": installDir: NotCoD launch: - config: @@ -215678,31 +211568,31 @@ - config: oslist: macos description: Launch - executable: NotCoD.app\\Contents\\MacOS\\Mac_Runner + executable: "NotCoD.app\\\\Contents\\\\MacOS\\\\Mac_Runner" type: default - config: oslist: linux description: Launch executable: runner type: default -'435480': +"435480": installDir: Trials of the Blood Dragon launch: - - arguments: '-uplay_steam_mode' + - arguments: "-uplay_steam_mode" config: oslist: windows description: Launch Trials of the Blood Dragon - executable: datapack\\trialsblooddragon.exe + executable: "datapack\\\\trialsblooddragon.exe" type: none workingdir: datapack -'435490': +"435490": installDir: Pierhead Arcade launch: - config: oslist: windows executable: Arcade.exe type: vr -'435530': +"435530": installDir: TheFinalStation launch: - config: @@ -215717,25 +211607,25 @@ oslist: linux executable: TheFinalStation.run type: default -'435600': - installDir: 'My Tower, My Home' +"435600": + installDir: "My Tower, My Home" launch: - config: oslist: windows executable: nw.exe type: default - - arguments: '--file-descriptor-limit=10000' + - arguments: "--file-descriptor-limit=10000" config: - osarch: '64' + osarch: "64" oslist: macos - executable: 'mytower,myhome.app' + executable: "mytower,myhome.app" type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: nw type: default -'435730': +"435730": installDir: apartment a separated place launch: - config: @@ -215750,7 +211640,7 @@ oslist: linux executable: Apartment_Linux/apartment.x86 type: default -'435780': +"435780": installDir: VIOLET Space Mission launch: - config: @@ -215759,9 +211649,9 @@ type: default - config: oslist: macos - executable: violet.app\\Contents\\MacOS\\violet + executable: "violet.app\\\\Contents\\\\MacOS\\\\violet" type: default -'435790': +"435790": installDir: 10 Second Ninja X launch: - config: @@ -215770,35 +211660,35 @@ type: none nameLocalized: schinese: 10 Second Ninja X / 10秒忍者X -'435800': +"435800": installDir: Binaries launch: - config: oslist: macos - executable: Binaries.app\\Contents\\MacOS\\Binaries + executable: "Binaries.app\\\\Contents\\\\MacOS\\\\Binaries" type: default - config: oslist: windows executable: Binaries.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Binaries.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Binaries.x86_64 type: default -'435840': +"435840": installDir: The Preposterous Awesomeness of Everything launch: - config: oslist: windows executable: TPAoE.exe type: default -'435970': +"435970": installDir: RefRain - prism memories - launch: - executable: RefRain.exe @@ -215809,21 +211699,21 @@ type: manual - config: betakey: development - ownsdlc: '470000' + ownsdlc: "470000" description: RefRain -prism memories- ORIGINAL SOUNDTRACK executable: RefRain OST type: none - config: betakey: development - ownsdlc: '485010' + ownsdlc: "485010" description: RefRain -prism memories- Chronicle Visual Book - executable: 'Visual Book\\RefRain -prism memories- Chronicle[Visual Book].pdf' + executable: "Visual Book\\\\RefRain -prism memories- Chronicle[Visual Book].pdf" type: none -'43600': +"43600": installDir: Nancy Drew Warnings at Waverly Academy launch: - executable: Waverly.exe -'436000': +"436000": installDir: Lovely Planet Arcade launch: - config: @@ -215838,7 +211728,7 @@ oslist: linux executable: LPArcade.x86 type: none -'436060': +"436060": installDir: Lolly Joe launch: - config: @@ -215846,12 +211736,12 @@ executable: LollyJoe.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: LollyJoe/Binaries/Linux/LollyJoe type: default workingdir: LollyJoe/Binaries/Linux -'436070': +"436070": installDir: Nadia Was Here launch: - config: @@ -215874,19 +211764,19 @@ description: Reviewer version (continue old games) executable: NadiaWasHereJanuaryTesting.app type: none -'436110': - installDir: Medusa's Labyrinth +"436110": + installDir: "Medusa's Labyrinth" launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Medusa.exe type: default -'436140': +"436140": installDir: Empire of the Gods launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Empire of the Gods.exe type: default @@ -215899,14 +211789,14 @@ executable: Empire of the Gods type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: Empire of the Gods 32bit.exe type: default nameLocalized: russian: Empire of the Gods / Империя Богов ukrainian: Empire of the Gods / Імперія Богів -'436150': +"436150": installDir: Governor of poker 3 launch: - config: @@ -215915,9 +211805,9 @@ type: default - config: oslist: macos - executable: GOP3.app\\Contents\\MacOS\\GOP3 + executable: "GOP3.app\\\\Contents\\\\MacOS\\\\GOP3" type: default -'436160': +"436160": installDir: The Panic Room launch: - config: @@ -215926,7 +211816,7 @@ type: default - config: oslist: macos - executable: Freedom.app\\Contents\\MacOS\\game + executable: "Freedom.app\\\\Contents\\\\MacOS\\\\game" type: default nameLocalized: brazilian: Panic Room. Casa dos segredos. @@ -215937,7 +211827,7 @@ russian: Цена свободы. Тайна кукловода. spanish: Panic Room. Casa de los secretos. turkish: Panic Room. Sırlar evi. -'436180': +"436180": installDir: Spacelords launch: - config: @@ -215945,56 +211835,56 @@ description: Normal executable: bin/Spacelords.exe type: none -'436220': +"436220": installDir: A-10 VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: HTC Vive - executable: Vive_OSVR\\A-10VR.exe + executable: "Vive_OSVR\\\\A-10VR.exe" type: vr workingdir: Vive_OSVR - config: - osarch: '64' + osarch: "64" oslist: windows description: Oculus Rift + Touch - executable: Oculus\\A-10VR.exe + executable: "Oculus\\\\A-10VR.exe" type: vr workingdir: Oculus - - arguments: '-osvr' + - arguments: "-osvr" config: - osarch: '64' + osarch: "64" oslist: windows description: OSVR + Razer Hydra - executable: Vive_OSVR\\A-10VR.exe + executable: "Vive_OSVR\\\\A-10VR.exe" type: vr workingdir: Vive_OSVR -'436230': +"436230": installDir: Detached launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: DetachedGameplay.exe type: vr - config: - osarch: '64' + osarch: "64" oslist: windows executable: DetachedGameplay.exe type: othervr -'436240': +"436240": installDir: Melancholy Republic launch: - config: oslist: windows executable: Game.exe type: none -'436260': +"436260": installDir: UltimateArena launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: UltimateArena/Binaries/Win64/UltimateArena-Win64-Shipping.exe type: none @@ -216003,34 +211893,32 @@ executable: UltimateArena/Binaries/Linux/UltimateArena-Linux-Shipping type: none - config: - osarch: '32' + osarch: "32" oslist: windows executable: UltimateArena/Binaries/Win32/UltimateArena-Win32-Shipping.exe type: none - config: betakey: publictest - osarch: '64' + osarch: "64" oslist: windows description: Play Debug Version - description_loc: - english: Play Debug Version executable: UltimateArena/Binaries/Win64/UltimateArena-Win64-DebugGame.exe type: none - config: - betakey: 'publictest,closedtest' + betakey: "publictest,closedtest" oslist: linux description: Play Debug Version executable: UltimateArena/Binaries/Linux/UltimateArena-Linux-DebugGame type: none - config: - betakey: 'publictest, closedtest' - osarch: '64' + betakey: "publictest, closedtest" + osarch: "64" oslist: windows description: Play Test Version executable: UltimateArena/Binaries/Win64/UltimateArena-Win64-Test.exe type: none - config: - betakey: 'publictest, closedtest' + betakey: "publictest, closedtest" oslist: linux description: Play Test Version executable: UltimateArena/Binaries/Linux/UltimateArena-Linux-Test @@ -216041,14 +211929,12 @@ type: default - config: betakey: closedtest - osarch: '64' + osarch: "64" oslist: windows description: Play Development version - description_loc: - english: Play Development version executable: UltimateArena/Binaries/Win64/UltimateArena.exe type: none -'436270': +"436270": installDir: Civil War 1863 launch: - config: @@ -216059,14 +211945,14 @@ oslist: macos executable: CivilWar1863.app type: default -'436280': +"436280": installDir: SudokuQuest launch: - config: oslist: windows executable: HarbingerBeard.SudokuQuest.exe type: default -'436290': +"436290": installDir: Children of Zodiarcs launch: - config: @@ -216078,64 +211964,64 @@ oslist: macos executable: Coz.app type: default -'436300': +"436300": installDir: Impulse! launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows executable: nw.exe type: default -'436320': +"436320": installDir: Raw Data launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: RawData.exe type: vr - - arguments: '-simplelobbyhack -AUTOHOST -AUTOHOSTMAP=/Game/Maps/RD_HardPoint/RD_HardPoint' + - arguments: "-simplelobbyhack -AUTOHOST -AUTOHOSTMAP=/Game/Maps/RD_HardPoint/RD_HardPoint" config: betakey: arcade - osarch: '64' + osarch: "64" oslist: windows description: HOST LAN Game executable: RawData.exe type: vr - - arguments: '-simplelobbyhack -AUTOJOIN' + - arguments: "-simplelobbyhack -AUTOJOIN" config: betakey: arcade - osarch: '64' + osarch: "64" oslist: windows description: AUTOJOIN Closest LAN GAME executable: RawData.exe type: vr - - arguments: '-parallel=staging' + - arguments: "-parallel=staging" config: betakey: v.0.6_beta - osarch: '64' + osarch: "64" oslist: windows executable: RawData.exe type: vr - - arguments: '-noparallel' + - arguments: "-noparallel" config: betakey: gdc-2017 - osarch: '64' + osarch: "64" oslist: windows description: GDC DEMO executable: RawData.exe type: vr -'436340': +"436340": installDir: Kiya launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch Kiya_Vive_Sundance.exe executable: Kiya_Vive_Sundance.exe type: vr -'436360': - installDir: Robo's World The Zarnok Fortress +"436360": + installDir: "Robo's World The Zarnok Fortress" launch: - config: oslist: windows @@ -216143,13 +212029,13 @@ type: none - config: oslist: macos - executable: RobosWorldTheZarnokFortress.app\\Contents\\MacOS\\Mac_Runner + executable: "RobosWorldTheZarnokFortress.app\\\\Contents\\\\MacOS\\\\Mac_Runner" type: none - config: oslist: linux executable: run.sh type: none -'436390': +"436390": installDir: Prison Run and Gun launch: - config: @@ -216157,12 +212043,12 @@ executable: PrisonRnG.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: PrisonRnG.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: PrisonRnG.x86_64 type: default @@ -216170,7 +212056,7 @@ oslist: macos executable: PrisonRnG.app type: default -'436400': +"436400": installDir: Heroes of the Seven Seas launch: - config: @@ -216178,12 +212064,12 @@ description: Launch executable: Heroes of the Seven Seas.exe type: vr -'436410': +"436410": installDir: Beyond The Destiny launch: - executable: BTD.exe type: none -'436470': +"436470": installDir: GammaBros launch: - config: @@ -216194,7 +212080,7 @@ oslist: macos executable: GammaBros.app type: default -'436480': +"436480": installDir: Soup launch: - config: @@ -216206,11 +212092,11 @@ executable: Soup.app/Contents/MacOS/soup type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: soup type: default -'436490': +"436490": installDir: La peri launch: - config: @@ -216218,7 +212104,7 @@ description: Launch executable: Firebird.exe type: vr -'436500': +"436500": installDir: Diaries of a Spaceport Janitor launch: - config: @@ -216227,9 +212113,9 @@ type: default - config: oslist: macos - executable: Diaries_7.6_mac.app\\Contents\\MacOS\\Diaries_7.6_mac + executable: "Diaries_7.6_mac.app\\\\Contents\\\\MacOS\\\\Diaries_7.6_mac" type: default -'436510': +"436510": installDir: Worlds of Chaos launch: - config: @@ -216238,20 +212124,20 @@ type: default - config: oslist: macos - executable: WoC_Mac.app\\Contents\\MacOS\\WoC_Mac + executable: "WoC_Mac.app\\\\Contents\\\\MacOS\\\\WoC_Mac" type: default - config: oslist: linux executable: WoC_C.exe.x86 type: default -'436520': +"436520": installDir: Line of Sight launch: - config: oslist: windows - executable: Binaries\\Win32\\LSGame.exe + executable: "Binaries\\\\Win32\\\\LSGame.exe" type: default -'436530': +"436530": installDir: Bullshot launch: - config: @@ -216265,34 +212151,34 @@ executable: bullshot.app type: none - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: bullshot.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: bullshot.x86_64 type: none -'436560': +"436560": installDir: KingsandHeroes launch: - config: betakey: test - osarch: '64' + osarch: "64" oslist: windows description: Kings and Heroes Test - executable: Archon\\Binaries\\Win64\\ArchonClient-Win64-Test.exe + executable: "Archon\\\\Binaries\\\\Win64\\\\ArchonClient-Win64-Test.exe" type: none - config: - osarch: '64' + osarch: "64" oslist: windows description: Kings and Heroes - executable: Archon\\Binaries\\Win64\\ArchonClient-Win64-Shipping.exe + executable: "Archon\\\\Binaries\\\\Win64\\\\ArchonClient-Win64-Shipping.exe" type: none -'436670': +"436670": installDir: Trails in the Sky the 3rd launch: - executable: ed6_win3_DX9.exe @@ -216305,7 +212191,7 @@ - description: DirectX8 Configuration Tool executable: Config3.exe type: config -'436680': +"436680": installDir: A More Beautiful World - A Visual Novel launch: - config: @@ -216320,21 +212206,21 @@ oslist: linux executable: A More Beautiful World Demo-5.0.sh type: default -'436690': +"436690": installDir: Tempest Citadel launch: - config: oslist: windows executable: TempestCitadel.exe type: default -'436820': +"436820": installDir: Waltz of the Wizard launch: - config: oslist: windows executable: WaltzOfTheWizard.exe type: vr -'436850': +"436850": installDir: Stellar Stars launch: - config: @@ -216346,16 +212232,16 @@ executable: Stellar Stars.app type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: Stellar Stars.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: Stellar Stars.x86_64 type: none -'436860': +"436860": installDir: Arctic alive launch: - config: @@ -216366,103 +212252,103 @@ oslist: windows executable: Arctic_alive_launcher.exe type: none -'436870': +"436870": installDir: Tank Brawl launch: - - arguments: '-d3d11 -windowed' + - arguments: "-d3d11 -windowed" config: oslist: windows description: Windowed - executable: binaries\\win32\\udk.exe + executable: "binaries\\\\win32\\\\udk.exe" type: none - - arguments: '-d3d11 -fullscreen' + - arguments: "-d3d11 -fullscreen" config: oslist: windows description: Fullscreen - executable: binaries\\win32\\udk.exe + executable: "binaries\\\\win32\\\\udk.exe" type: none - - arguments: '-d3d9 -windowed' + - arguments: "-d3d9 -windowed" config: oslist: windows description: DX9 Windowed - executable: binaries\\win32\\udk.exe + executable: "binaries\\\\win32\\\\udk.exe" type: none - - arguments: '-d3d9 -fullscreen' + - arguments: "-d3d9 -fullscreen" config: oslist: windows description: DX9 Fullscreen - executable: binaries\\win32\\udk.exe + executable: "binaries\\\\win32\\\\udk.exe" type: none -'436940': +"436940": installDir: Quar Battle for Gate 18 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Quar.exe type: vr -'436950': +"436950": installDir: Mosaic Maze launch: - config: oslist: windows executable: mosaic maze.exe type: none -'437000': +"437000": installDir: GG2 launch: - config: oslist: windows executable: ggsx.exe type: default -'437010': {} -'437020': +"437010": {} +"437020": installDir: WITCH-BOT MEGLILO launch: - executable: meglilo.exe type: default -'437030': +"437030": installDir: MEMENTO launch: - executable: Game.exe type: default -'437060': - installDir: MOAI 3 Trade Mission Collector's Edition +"437060": + installDir: "MOAI 3 Trade Mission Collector's Edition" launch: - config: oslist: windows description: Launch executable: Moai3_TradeMission_CE.exe type: none -'437080': +"437080": installDir: Space Rift launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Space Rift (SteamVR) executable: SpaceRift.exe type: vr - config: - osarch: '64' + osarch: "64" oslist: windows description: Space Rift (Oculus SDK) executable: SpaceRift.exe type: othervr - - arguments: '-nonvr' + - arguments: "-nonvr" config: betakey: beta - osarch: '64' + osarch: "64" oslist: windows description: Space Rift (Non-VR) executable: SpaceRift.exe type: default -'437090': +"437090": installDir: Wobbly Jungle launch: - executable: Wobbly Jungle.exe type: default -'437100': +"437100": installDir: My Night Job launch: - config: @@ -216477,8 +212363,8 @@ oslist: linux executable: mnj.x86 type: default -'437160': - installDir: The Lion's Song +"437160": + installDir: "The Lion's Song" launch: - config: oslist: windows @@ -216492,14 +212378,14 @@ oslist: linux executable: runTLS.sh type: default -'437170': +"437170": installDir: The Amazing Adventures of Ash - Afterparty launch: - config: oslist: windows executable: Game.exe type: default -'437180': +"437180": installDir: Chill the Piro launch: - config: @@ -216508,36 +212394,36 @@ type: default - config: oslist: macos - executable: ChillThePiro.app\\Contents\\MacOS\\ChillThePiro + executable: "ChillThePiro.app\\\\Contents\\\\MacOS\\\\ChillThePiro" type: default - config: oslist: linux executable: ChillThePiro.x86 type: default -'437210': +"437210": installDir: The Hunt launch: - config: oslist: windows executable: Hunt.exe type: default -'437220': +"437220": installDir: TheCulling launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Play The Culling executable: Launch_TheCulling.exe type: default - - arguments: '-opengl3' + - arguments: "-opengl3" config: - osarch: '64' + osarch: "64" oslist: linux description: Play The Culling executable: Victory/Binaries/Linux/Victory type: default -'437250': +"437250": installDir: A House of Many Doors launch: - config: @@ -216548,7 +212434,7 @@ oslist: macos executable: A House of Many Doors.app type: default -'437340': +"437340": installDir: Toys of War launch: - config: @@ -216556,7 +212442,7 @@ description: Launch for Windows executable: ToW.exe type: default - - arguments: '-force-opengl' + - arguments: "-force-opengl" config: oslist: linux description: Launch for Linux @@ -216567,7 +212453,7 @@ description: Launch for Mac (Universal) executable: ToW.app type: default -'437380': +"437380": installDir: Vanquish The Adventures of Lady Exton launch: - config: @@ -216578,7 +212464,7 @@ oslist: macos executable: VTAOLE.app/Contents/MacOS/Mac_Runner type: default -'437390': +"437390": installDir: HoPiKo launch: - config: @@ -216593,14 +212479,14 @@ oslist: linux executable: HoPiKo.x86 type: none -'437400': +"437400": installDir: SOLRAVEN launch: - config: oslist: windows executable: SOLRAVEN.exe type: none -'437420': +"437420": installDir: The Secret Order 3 Ancient Times launch: - config: @@ -216609,13 +212495,13 @@ executable: TheSecretOrder3.exe type: none - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: TheSecretOrder3_i386 type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: TheSecretOrder3_amd64 @@ -216625,15 +212511,15 @@ description: Launch executable: mac_steam.app/Contents/MacOS/mac_steam type: none -'437440': +"437440": installDir: Lord of Rigel launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: LordofRigel.exe type: default -'437510': +"437510": installDir: Ben 10 Game Generator 5D launch: - config: @@ -216648,7 +212534,7 @@ oslist: linux executable: Ben10GG5D.x86 type: default -'437520': +"437520": installDir: ZeGame launch: - config: @@ -216662,24 +212548,24 @@ executable: ZeGame.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux description: ZeGame Linux 32 executable: ZeGame.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: ZeGame Linux 64 executable: ZeGame.x86_64 type: default - - arguments: '-vr' + - arguments: "-vr" config: oslist: windows - ownsdlc: '489480' + ownsdlc: "489480" executable: ZeGame.exe type: vr -'437530': +"437530": installDir: A Blind Legend launch: - config: @@ -216690,14 +212576,14 @@ oslist: macos executable: A Blind Legend.app/Contents/MacOS/A Blind Legend type: default -'437550': +"437550": installDir: Melon Simulator launch: - config: oslist: windows executable: Melon Simulator.exe type: none -'437570': +"437570": installDir: GoNNER launch: - config: @@ -216712,22 +212598,18 @@ oslist: linux executable: Gonner.x86_64 type: none -'437610': +"437610": installDir: SQUIDS FROM SPACE launch: - - arguments: >- - -GameLiftClient -GameLiftAccessKeyId=AKIAJGIPJXREKHYHX2LQ - -GameLiftSecretKey=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 -GameLiftOverrideRegion=us-east-1 + - arguments: "-GameLiftClient -GameLiftAccessKeyId=AKIAJGIPJXREKHYHX2LQ -GameLiftSecretKey=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 -GameLiftOverrideRegion=us-east-1" description: Launch SQUIDS FROM SPACE - executable: ./Client/Squid/Binaries/Win64/Squid-Win64-Shipping.exe + executable: "./Client/Squid/Binaries/Win64/Squid-Win64-Shipping.exe" type: default - - arguments: >- - -GameLiftClient -GameLiftAccessKeyId=AKIAJGIPJXREKHYHX2LQ - -GameLiftSecretKey=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 -GameLiftOverrideRegion=us-east-1 -safemode + - arguments: "-GameLiftClient -GameLiftAccessKeyId=AKIAJGIPJXREKHYHX2LQ -GameLiftSecretKey=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 -GameLiftOverrideRegion=us-east-1 -safemode" description: with minimum settings (Compatibility Mode) - executable: ./Client/Squid/Binaries/Win64/Squid-Win64-Shipping.exe + executable: "./Client/Squid/Binaries/Win64/Squid-Win64-Shipping.exe" type: option1 -'437630': +"437630": installDir: State of Mind launch: - config: @@ -216750,30 +212632,30 @@ type: option1 - config: oslist: windows - ownsdlc: '884031' + ownsdlc: "884031" description: Bonus Content executable: open_bonus_win.bat type: none - config: oslist: macos - ownsdlc: '884031' + ownsdlc: "884031" description: Bonus Content executable: open_bonus_osx.sh type: none - config: oslist: linux - ownsdlc: '884031' + ownsdlc: "884031" description: Bonus Content executable: open_bonus_lin.sh type: none -'437690': +"437690": installDir: Venture Kid launch: - config: oslist: windows executable: Venture Kid.exe type: none -'437710': +"437710": installDir: Magic Flute launch: - config: @@ -216784,7 +212666,7 @@ oslist: macos executable: Magic Flute.app/Contents/MacOS/Magic Flute type: default -'437720': +"437720": installDir: Blossoms Bloom Brightest launch: - config: @@ -216802,26 +212684,26 @@ description: Launch executable: BlossomsBloomBrightest.sh type: none -'437730': +"437730": installDir: RoadclubLeagueRacing launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: Roadclub.exe type: default -'437740': +"437740": installDir: Inside Before Birth launch: - config: oslist: windows executable: INSIDE.exe type: none -'437870': +"437870": installDir: Earth Space Colonies launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ESC.exe type: default @@ -216829,24 +212711,24 @@ oslist: macos executable: EarthSpaceColonies.app/Contents/MacOS/ESC type: default - - arguments: '-force-opengl' + - arguments: "-force-opengl" config: - osarch: '32' + osarch: "32" oslist: linux executable: ESC.x86 type: default - - arguments: '-force-opengl' + - arguments: "-force-opengl" config: - osarch: '64' + osarch: "64" oslist: linux executable: ESC.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: ESC_32.exe type: default -'437880': +"437880": installDir: Project Graviton launch: - config: @@ -216857,15 +212739,15 @@ oslist: macos executable: Project Graviton.app type: none -'437890': {} -'437900': +"437890": {} +"437900": installDir: Party Jousting launch: - config: oslist: windows executable: Game.exe type: default -'437920': +"437920": installDir: Tricky Towers launch: - config: @@ -216880,24 +212762,24 @@ oslist: linux executable: TrickyTowers.x86 type: none -'438000': +"438000": installDir: PIXELMAN launch: - config: oslist: windows executable: Pixelman.exe type: default -'438010': +"438010": installDir: PulseCharge launch: - executable: PulseCharge.exe type: none -'438020': +"438020": installDir: AI Rampage launch: - executable: config.exe type: default -'438030': +"438030": installDir: Dead6hot launch: - config: @@ -216908,7 +212790,7 @@ oslist: macos executable: Deadshot020516.app type: none -'438040': +"438040": installDir: Shakes & Fidget launch: - config: @@ -216917,9 +212799,9 @@ type: default - config: oslist: macos - executable: shakesandfidget.app\\Contents\\MacOS\\Shakes _ Fidget + executable: "shakesandfidget.app\\\\Contents\\\\MacOS\\\\Shakes _ Fidget" type: default -'438080': +"438080": installDir: Surfingers launch: - config: @@ -216934,35 +212816,35 @@ oslist: linux executable: Surfingers.x86 type: default -'438090': +"438090": installDir: Defend Felinearth launch: - config: oslist: windows executable: DefendFelinearth.exe type: none -'438100': +"438100": installDir: VRChat launch: - config: oslist: windows executable: VRChat.exe type: vr - - arguments: '--no-vr' + - arguments: "--no-vr" config: oslist: windows description: Launch in Desktop (Non-VR) mode executable: VRChat.exe type: none -'438120': {} -'438130': +"438120": {} +"438130": installDir: Root Double -Before Crime After Days- Xtend Edition launch: - config: oslist: windows executable: rwxe.exe type: default -'438140': +"438140": installDir: Star Realms launch: - config: @@ -216971,45 +212853,45 @@ type: default - config: oslist: macos - executable: StarRealms.app\\Contents\\MacOS\\StarRealms + executable: "StarRealms.app\\\\Contents\\\\MacOS\\\\StarRealms" type: default -'438160': +"438160": installDir: LILT launch: - config: oslist: windows executable: Lilt.exe type: default -'438180': +"438180": installDir: Super Mustache launch: - executable: game.exe type: none -'438200': {} -'438210': {} -'438220': +"438200": {} +"438210": {} +"438220": installDir: Castle Heist Chapter 1 launch: - config: oslist: windows executable: Castle Heist Chapter One.exe type: default -'438240': +"438240": installDir: Corpo Tale launch: - config: oslist: windows executable: Game.exe type: default -'438260': +"438260": installDir: Rewind launch: - config: oslist: windows description: Launch - executable: Binaries\\Win32\\UDK.exe + executable: "Binaries\\\\Win32\\\\UDK.exe" type: default -'438270': +"438270": installDir: HiraganaBattle launch: - config: @@ -217020,41 +212902,41 @@ oslist: macos executable: HiraganaBattle.app type: none -'438300': +"438300": installDir: Shepherds of the Abyss launch: - config: oslist: windows executable: GGTD.exe type: none -'438310': +"438310": installDir: SCORE launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Score.exe type: default - config: - osarch: '64' + osarch: "64" oslist: macos executable: SCORE.app type: default -'438320': +"438320": installDir: Rush Rover launch: - executable: RushRover.exe type: default -'438330': {} -'438340': +"438330": {} +"438340": installDir: Drizzlepath Genie launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Genie.exe type: none -'438350': +"438350": installDir: Dynetzzle Extended launch: - config: @@ -217063,34 +212945,34 @@ type: none - config: oslist: macos - executable: Dynetzzle Extended.app\\Contents\\MacOS\\Dynetzzle Extended + executable: "Dynetzzle Extended.app\\\\Contents\\\\MacOS\\\\Dynetzzle Extended" type: none -'438360': +"438360": installDir: Infinitesimal Point launch: - config: oslist: windows executable: InfinitesimalPoint.exe type: none -'438420': +"438420": installDir: Zenith launch: - config: oslist: windows executable: Zenith.exe type: default -'438430': +"438430": installDir: Valentino Rossi The Game launch: - config: - osarch: '32' + osarch: "32" executable: MotoGPVR46.exe type: none - config: - osarch: '64' + osarch: "64" executable: MotoGPVR46X64.exe type: none -'438440': +"438440": installDir: Star Rogue launch: - config: @@ -217101,7 +212983,7 @@ oslist: linux executable: runner type: none -'438460': +"438460": installDir: Arena 3D launch: - config: @@ -217109,19 +212991,19 @@ oslist: windows executable: Arena3D.exe type: default -'438480': - installDir: Rock 'N' Roll Defense +"438480": + installDir: "Rock 'N' Roll Defense" launch: - config: oslist: windows - executable: Rock 'N' Roll Defense.exe + executable: "Rock 'N' Roll Defense.exe" type: default -'438490': +"438490": installDir: GOD EATER 2 Rage Burst launch: - executable: GE2RB.exe type: none -'438560': +"438560": installDir: Mystery Case Files Escape From Ravenhearst launch: - config: @@ -217132,7 +213014,7 @@ oslist: macos executable: Mystery Case Files - Escape From Ravenhearst.app/Contents/MacOS/Mystery Case Files - Escape From Ravenhearst type: default -'438600': +"438600": installDir: Soccer Manager launch: - config: @@ -217143,11 +213025,11 @@ oslist: macos executable: Soccer Manager.app type: none -'438640': +"438640": installDir: LEGO STAR WARS The Force Awakens launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: LEGOSWTFA.exe @@ -217156,37 +213038,37 @@ oslist: macos executable: LEGO Star Wars The Force Awakens.app type: default -'438650': +"438650": installDir: Gravity Compass launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Oculus Runtime Version executable: GravityCompass.exe type: othervr - config: - osarch: '64' + osarch: "64" oslist: windows description: SteamVR version executable: GravityCompass-SteamVR.exe type: vr - config: - osarch: '64' + osarch: "64" oslist: windows description: 2D version of Gravity Compass executable: GravityCompass.exe type: default -'438660': +"438660": installDir: Jerry Rice Nitus Dog Football launch: - config: oslist: windows description: Launch - executable: bin\\Dog Football.exe + executable: "bin\\\\Dog Football.exe" type: none workingdir: bin -'438680': +"438680": installDir: OneTrollArmy launch: - config: @@ -217197,15 +213079,15 @@ oslist: macos executable: OTA.app type: none -'438720': +"438720": installDir: Heroes of Shadow Guard launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: HeroesOfShadowGuard.exe type: default -'438730': +"438730": installDir: Poly Towns launch: - config: @@ -217214,35 +213096,35 @@ type: default - config: oslist: macos - executable: Poly Towns.app\\Contents\\MacOS\\Poly Towns + executable: "Poly Towns.app\\\\Contents\\\\MacOS\\\\Poly Towns" type: default - config: - osarch: '32' + osarch: "32" oslist: linux - executable: Poly Towns\\Poly Towns.x86 + executable: "Poly Towns\\\\Poly Towns.x86" type: default - config: - osarch: '64' + osarch: "64" oslist: linux - executable: Poly Towns\\Poly Towns.x86_64 + executable: "Poly Towns\\\\Poly Towns.x86_64" type: default -'438740': +"438740": installDir: F13Game launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: EAC_Launcher.exe type: default -'438770': +"438770": installDir: Street Posse Showdown launch: - config: oslist: windows executable: nw.exe type: default -'438780': +"438780": installDir: Terrarium Land launch: - config: @@ -217253,7 +213135,7 @@ oslist: linux executable: TerrariumLand.x86_64 type: none -'438790': +"438790": installDir: RAM launch: - config: @@ -217261,12 +213143,12 @@ executable: RAM.exe type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: RAM.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: RAM.x86_64 type: none @@ -217274,12 +213156,12 @@ oslist: macos executable: RAM.app type: none -'438820': +"438820": installDir: Hyper Box launch: - config: oslist: windows - executable: win32\\hyperbox.exe + executable: "win32\\\\hyperbox.exe" type: none - config: oslist: macos @@ -217287,10 +213169,10 @@ type: none - config: oslist: linux - executable: linux32\\hyperbox + executable: "linux32\\\\hyperbox" type: none -'438910': - installDir: 'Hack, Slash & Backstab' +"438910": + installDir: "Hack, Slash & Backstab" launch: - config: oslist: windows @@ -217301,16 +213183,16 @@ executable: HSBSteam.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: HSBSteam.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: HSBSteam.x86 type: none -'438920': +"438920": installDir: Legends of Callasia launch: - config: @@ -217319,37 +213201,37 @@ type: default - config: oslist: macos - executable: LegendsOfCallasia.app\\Contents\\MacOS\\LegendsOfCallasia + executable: "LegendsOfCallasia.app\\\\Contents\\\\MacOS\\\\LegendsOfCallasia" type: default -'438940': +"438940": installDir: XBlaze Lost Memories launch: - config: oslist: windows - executable: _home\\_win\\BBADV2_Steam.exe + executable: "_home\\\\_win\\\\BBADV2_Steam.exe" type: default - workingdir: _home\\_win\\ -'439190': + workingdir: "_home\\\\_win\\\\" +"439190": installDir: Stories Path of Destinies launch: - config: oslist: windows description: Launch - executable: Stories\\Binaries\\Win64\\Stories.exe + executable: "Stories\\\\Binaries\\\\Win64\\\\Stories.exe" type: none -'439250': +"439250": installDir: Space Pilgrim Episode III Delta Pavonis launch: - executable: game.exe type: none -'439260': +"439260": installDir: BUTTS launch: - config: oslist: windows executable: BUTTS.exe type: vr -'439310': +"439310": installDir: Until I Have You launch: - config: @@ -217367,34 +213249,34 @@ description: Launch the game executable: UIHY type: default -'439340': +"439340": installDir: Tavern Tycoon launch: - executable: TavernTycoon.exe type: none -'439350': +"439350": installDir: Kritika launch: - - arguments: '-channelType:ST' + - arguments: "-channelType:ST" config: oslist: windows executable: KritikaPatcher.exe type: none - - arguments: '-channelType:KE' + - arguments: "-channelType:KE" config: betakey: kreon_dev description: kreon_dev channeltype KE test executable: KritikaPatcher.exe type: none -'439370': +"439370": installDir: Midair launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: Midair\\Binaries\\Win64\\Midair-Win64-Test.exe + executable: "Midair\\\\Binaries\\\\Win64\\\\Midair-Win64-Test.exe" type: none -'439420': +"439420": installDir: SteelLIFE launch: - config: @@ -217409,7 +213291,7 @@ oslist: macos executable: SteelLIFE.app type: default -'439440': +"439440": installDir: Of Carrots And Blood launch: - config: @@ -217420,14 +213302,14 @@ oslist: macos executable: ocab.app type: none -'439460': +"439460": installDir: Ship Special launch: - config: oslist: windows executable: Ships2017.exe type: default -'439490': +"439490": installDir: BLUE REVOLVER launch: - config: @@ -217435,7 +213317,7 @@ executable: bluerevolver.exe type: default - config: - osarch: '64' + osarch: "64" oslist: macos executable: bluerevolver.app type: default @@ -217443,39 +213325,39 @@ oslist: linux executable: run.sh type: default -'439530': +"439530": installDir: Rock-n-Rogue A Boo Bunny Plague Adventure launch: - config: oslist: windows executable: RockNRogue.exe type: default -'439550': - installDir: '''n Verlore Verstand' +"439550": + installDir: "'n Verlore Verstand" launch: - config: oslist: windows - executable: '''nVerloreVerstand.exe' + executable: "'nVerloreVerstand.exe" type: default - config: oslist: macos - executable: '''nVerloreVerstand.app' + executable: "'nVerloreVerstand.app" type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: nVerloreVerstand.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: nVerloreVerstand.x86_64 type: default - config: oslist: windows - executable: '''nVerloreVerstand.exe' + executable: "'nVerloreVerstand.exe" type: vr -'439720': +"439720": installDir: UnendingGalaxyDeluxe launch: - config: @@ -217493,7 +213375,7 @@ description: Mod Manager and Setup executable: launcher.exe type: config -'439730': +"439730": installDir: XO-Planets launch: - config: @@ -217501,7 +213383,7 @@ description: Launch executable: XOPlanets.exe type: default -'439740': +"439740": installDir: Eclipsed launch: - config: @@ -217514,7 +213396,7 @@ description: Demo (Updated) executable: Eclipsed Demo.exe type: option2 -'439750': +"439750": installDir: The Lost Heir 2 Forging a Kingdom launch: - config: @@ -217529,7 +213411,7 @@ oslist: linux executable: LostHeir2 type: none -'439770': +"439770": installDir: The Lost Heir The Fall of Daria launch: - config: @@ -217544,7 +213426,7 @@ oslist: linux executable: LostHeir1 type: none -'439800': +"439800": installDir: CloudsAndSheep2 launch: - config: @@ -217559,7 +213441,7 @@ oslist: macos executable: cloudsandsheep2.app type: default -'439880': +"439880": installDir: Heroes of Loot 2 launch: - config: @@ -217576,7 +213458,7 @@ oslist: linux executable: heroesofloot2 type: none -'439910': +"439910": installDir: Risky Rescue launch: - config: @@ -217591,7 +213473,7 @@ oslist: linux executable: RiskyRescue.x86 type: default -'439920': +"439920": installDir: Royal Heroes launch: - config: @@ -217600,9 +213482,9 @@ type: default - config: oslist: macos - executable: Royal Heroes.app\\Contents\\MacOS\\Royal Heroes + executable: "Royal Heroes.app\\\\Contents\\\\MacOS\\\\Royal Heroes" type: none -'439930': +"439930": installDir: Control Craft 2 launch: - config: @@ -217611,9 +213493,9 @@ type: default - config: oslist: macos - executable: ControlCraft 2.app\\Contents\\MacOS\\ControlCraft 2 + executable: "ControlCraft 2.app\\\\Contents\\\\MacOS\\\\ControlCraft 2" type: none -'439940': +"439940": installDir: Lucid9 launch: - config: @@ -217628,7 +213510,7 @@ oslist: linux executable: Lucid9.sh type: default -'439950': +"439950": installDir: Frontier launch: - config: @@ -217637,48 +213519,47 @@ type: default - config: oslist: macos - executable: Frontier.app\\Contents\\MacOS\\Frontier + executable: "Frontier.app\\\\Contents\\\\MacOS\\\\Frontier" type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Frontier.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Frontier.x86_64 type: default -'439960': +"439960": installDir: Falling Stars War of Empires launch: - config: oslist: windows executable: Empires.exe type: none -'440': +"440": installDir: Team Fortress 2 launch: - - arguments: '-steam -game tf' + - arguments: "-steam -game tf" config: oslist: windows executable: hl2.exe - vacmodulefilename: resource\\sourceinit.dat - - arguments: '-steam -game tf' + - arguments: "-steam -game tf" config: oslist: macos executable: hl2_osx - - arguments: '-game tf -steam' + - arguments: "-game tf -steam" config: oslist: linux executable: hl2.sh -'44000': +"44000": installDir: 2XL Supercross launch: - executable: 2XL_Supercross.exe - description: Launch 2XL Supercross Config Utility executable: config.exe -'440020': +"440020": installDir: bit Dungeon+ launch: - config: @@ -217687,9 +213568,9 @@ type: none - config: oslist: macos - executable: BitDungeonPlus.app\\Contents\\MacOS\\BitDungeonPlus + executable: "BitDungeonPlus.app\\\\Contents\\\\MacOS\\\\BitDungeonPlus" type: none -'440100': +"440100": installDir: Fall of Gyes launch: - config: @@ -217698,13 +213579,13 @@ executable: fallofgyes.exe type: none - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: fallofgyes.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: fallofgyes.x86_64 @@ -217714,7 +213595,7 @@ description: Launch executable: fallofgyes.app type: none -'440260': +"440260": installDir: Temporal Temple launch: - config: @@ -217725,7 +213606,7 @@ oslist: macos executable: temporaltemple.app type: none -'440280': +"440280": installDir: Overpower launch: - config: @@ -217733,23 +213614,23 @@ executable: Overpower.exe type: default - config: - osarch: '64' + osarch: "64" oslist: macos executable: Overpower.app type: default - config: - osarch: '32' + osarch: "32" oslist: macos executable: Overpower.app type: default -'440310': +"440310": installDir: Project Arrhythmia launch: - config: oslist: windows executable: Project Arrhythmia.exe type: default -'440330': +"440330": installDir: Warhammer Arcane Magic launch: - config: @@ -217761,37 +213642,37 @@ executable: warhammer_arcane_magic.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: warhammer_arcane_magic.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: warhammer_arcane_magic.x86_64 type: default -'440340': +"440340": installDir: BanzaiEscape launch: - config: oslist: windows executable: BanzaiEscape.exe type: default -'440380': +"440380": installDir: Super Kitty Boing Boing launch: - config: oslist: windows executable: SKBB.exe type: default -'440410': +"440410": installDir: Wolfsong launch: - config: oslist: windows executable: Game.exe type: default -'440420': +"440420": installDir: True Fear Forsaken Souls launch: - config: @@ -217799,26 +213680,26 @@ executable: True Fear.exe type: none - config: - osarch: '64' + osarch: "64" oslist: macos - executable: True Fear.app\\Contents\\MacOS\\True Fear + executable: "True Fear.app\\\\Contents\\\\MacOS\\\\True Fear" type: none -'440450': +"440450": installDir: Escape Sierra Leone launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: Escape Sierra Leone\\EscapeSierraLeone.exe + executable: "Escape Sierra Leone\\\\EscapeSierraLeone.exe" type: default -'440470': +"440470": installDir: SamuelSprague_Absence launch: - config: oslist: windows executable: Absence.exe type: none -'440540': +"440540": installDir: Ara Fell launch: - config: @@ -217837,131 +213718,131 @@ type: default nameLocalized: japanese: エアラフェル (拡張版) -'440550': +"440550": installDir: RunGunJumpGun launch: - config: oslist: macos - executable: rungunjumpgun.app\\Contents\\MacOS\\rungunjumpgun + executable: "rungunjumpgun.app\\\\Contents\\\\MacOS\\\\rungunjumpgun" type: default - config: oslist: windows executable: rungunjumpgun.exe type: default -'440630': +"440630": installDir: Brookhaven launch: - config: oslist: windows executable: BrookhavenGame.exe type: vr -'440640': +"440640": installDir: Sweet F. Cake launch: - config: oslist: windows executable: Sweet Fruitcake.exe type: none -'440650': +"440650": installDir: Niche launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Windows 64Bit - executable: Windows\\64Bit\\Niche.exe + executable: "Windows\\\\64Bit\\\\Niche.exe" type: default - config: - osarch: '32' + osarch: "32" oslist: windows description: Windows 32Bit - executable: Windows\\32Bit\\Niche.exe + executable: "Windows\\\\32Bit\\\\Niche.exe" type: default - config: - osarch: '64' + osarch: "64" oslist: linux - executable: Linux\\Niche.x86_64 + executable: "Linux\\\\Niche.x86_64" type: default - config: - osarch: '32' + osarch: "32" oslist: linux - executable: Linux\\Niche.x86 + executable: "Linux\\\\Niche.x86" type: default - config: oslist: macos - executable: Mac\\Niche.app\\Contents\\MacOS\\Niche + executable: "Mac\\\\Niche.app\\\\Contents\\\\MacOS\\\\Niche" type: default - config: betakey: experimental_mutationsystem oslist: linux - executable: Linux\\Niche.x86 + executable: "Linux\\\\Niche.x86" type: default - config: betakey: experimental_mutationsystem oslist: windows - executable: Windows\\Niche.exe + executable: "Windows\\\\Niche.exe" type: default - config: betakey: 1.0.4 oslist: linux - executable: Linux\\Niche.x86 + executable: "Linux\\\\Niche.x86" type: default - config: betakey: 1.0.4 oslist: windows - executable: Windows\\Niche.exe + executable: "Windows\\\\Niche.exe" type: default - config: betakey: 0.5.0 oslist: windows - executable: Windows\\Niche.exe + executable: "Windows\\\\Niche.exe" type: default - config: betakey: 0.5.0 oslist: linux - executable: Linux\\Niche.x86 + executable: "Linux\\\\Niche.x86" type: default - config: betakey: 0.4.1 oslist: linux - executable: Linux\\Niche.x86 + executable: "Linux\\\\Niche.x86" type: default - config: betakey: 0.4.1 oslist: windows - executable: Windows\\Niche.exe + executable: "Windows\\\\Niche.exe" type: default - config: betakey: 0.3.0 oslist: windows - executable: Windows\\Niche.exe + executable: "Windows\\\\Niche.exe" type: default - config: betakey: 0.3.0 oslist: linux - executable: Linux\\Niche.x86 + executable: "Linux\\\\Niche.x86" type: default - config: betakey: 0.2.1 oslist: windows - executable: Windows\\Niche.exe + executable: "Windows\\\\Niche.exe" type: default - config: betakey: 0.2.1 oslist: linux - executable: Linux\\Niche.x86 + executable: "Linux\\\\Niche.x86" type: default - config: betakey: 0.1.5 oslist: windows - executable: Windows\\Niche.exe + executable: "Windows\\\\Niche.exe" type: default - config: betakey: 0.1.5 oslist: linux - executable: Linux\\Niche.x86 + executable: "Linux\\\\Niche.x86" type: default -'440660': +"440660": installDir: Void Vikings launch: - config: @@ -217972,21 +213853,21 @@ oslist: macos executable: VoidVikings.app type: default -'440690': +"440690": installDir: Mesel launch: - config: oslist: windows executable: Mesel.exe type: default -'440720': - installDir: Pandora`s room +"440720": + installDir: "Pandora`s room" launch: - config: oslist: windows executable: Pandora_room.exe type: none -'440730': +"440730": installDir: Inverted Evolution launch: - config: @@ -218001,7 +213882,7 @@ oslist: linux executable: TheInvertedEvolutionLinux.x86 type: none -'440740': +"440740": installDir: Tap Tap Legions - Epic battles within 5 seconds! launch: - config: @@ -218016,7 +213897,7 @@ oslist: linux executable: TapTapLegions.x86 type: none -'440750': +"440750": installDir: Story of a Cube launch: - config: @@ -218027,26 +213908,26 @@ oslist: macos executable: Story of a Cube.app/Contents/MacOS/Story of a Cube type: default - - arguments: '-force-opengl' + - arguments: "-force-opengl" config: - osarch: '32' + osarch: "32" oslist: linux executable: Story of a Cube.x86 type: default - - arguments: '-force-opengl' + - arguments: "-force-opengl" config: - osarch: '64' + osarch: "64" oslist: linux executable: Story of a Cube.x86_64 type: default -'440760': +"440760": installDir: Cube Destroyer launch: - config: oslist: windows executable: Cube Destroyer.exe type: none -'440770': +"440770": installDir: DrawnStory launch: - config: @@ -218061,7 +213942,7 @@ oslist: linux executable: drawnstory.sh type: default -'440790': +"440790": installDir: Spellbind launch: - config: @@ -218070,9 +213951,9 @@ type: default - config: oslist: macos - executable: Spellbind.app\\Contents\\MacOS\\Spellbind + executable: "Spellbind.app\\\\Contents\\\\MacOS\\\\Spellbind" type: default -'440800': +"440800": installDir: Trial by Viking launch: - config: @@ -218087,14 +213968,14 @@ oslist: linux executable: TrialByViking.x86 type: default -'440810': +"440810": installDir: 1943 Megami Strike launch: - config: oslist: windows executable: MS.exe type: none -'440870': +"440870": installDir: Mysteries of the Past launch: - config: @@ -218103,9 +213984,9 @@ type: default - config: oslist: macos - executable: Mysteries of the Past SoD CE.app\\Contents\\MacOS\\Mysteries of the Past SoD CE + executable: "Mysteries of the Past SoD CE.app\\\\Contents\\\\MacOS\\\\Mysteries of the Past SoD CE" type: default -'440880': +"440880": installDir: The Count Lucanor launch: - config: @@ -218118,30 +213999,30 @@ executable: lucanor_safe.bat type: option1 - config: - osarch: '64' + osarch: "64" oslist: linux executable: lucanor.sh type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: The Count Lucanor ( Safe Mode ) executable: lucanor_safe.sh type: option1 - config: - osarch: '64' + osarch: "64" oslist: macos executable: lucanor.command type: default -'440900': +"440900": installDir: Conan Exiles launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: Launcher\\FuncomLauncher.exe + executable: "Launcher\\\\FuncomLauncher.exe" type: default -'440950': +"440950": installDir: Story Of the Survivor launch: - config: @@ -218150,11 +214031,11 @@ type: default - config: oslist: windows - ownsdlc: '469780' + ownsdlc: "469780" description: DLC executable: DLC/game.exe type: default -'44100': +"44100": installDir: super laser racer launch: - config: @@ -218163,7 +214044,7 @@ - config: oslist: macos executable: Super Laser Racer.mt.app -'441010': +"441010": installDir: Mount Your Friends 3D launch: - config: @@ -218174,14 +214055,14 @@ oslist: macos executable: MYF3D.app type: default -'441020': +"441020": installDir: Heavenstrike Rivals launch: - config: oslist: windows executable: HeavenStrikeRivals.exe type: none -'441050': +"441050": installDir: Polandball Can into Space! launch: - config: @@ -218189,12 +214070,12 @@ executable: Polandball.exe type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: Polandball.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: Polandball.x86_64 type: none @@ -218202,22 +214083,22 @@ oslist: macos executable: Polandball.app type: none -'441060': +"441060": installDir: Silver Creek Falls - Chapter 3 launch: - config: oslist: windows executable: game.exe type: none -'441230': +"441230": installDir: Babel launch: - - arguments: '-windowed' + - arguments: "-windowed" config: oslist: windows executable: babel.exe type: vr -'441250': +"441250": installDir: Talewind launch: - config: @@ -218228,49 +214109,49 @@ oslist: macos executable: WindGame.app type: none -'441280': +"441280": installDir: Pharaoh Rebirth launch: - executable: PharaohRebirth.exe type: default -'441350': +"441350": installDir: Assault Suit Leynos launch: - config: oslist: windows executable: LEYNOS_x64_Steam.exe type: default -'441380': +"441380": installDir: FLUID launch: - config: oslist: windows executable: PCE2.exe type: default -'441440': +"441440": installDir: Sometimes Always Monsters launch: - config: oslist: windows executable: Game.exe type: default -'441510': +"441510": installDir: The Incredible Baron launch: - config: oslist: windows executable: IncredibleBaron.exe type: default -'441550': +"441550": installDir: Star Wars - Rebellion launch: - - arguments: '-w' + - arguments: "-w" config: oslist: windows executable: REBEXE.EXE type: none -'441560': {} -'441640': +"441560": {} +"441640": installDir: VALENS launch: - config: @@ -218282,21 +214163,21 @@ executable: VALENS.app type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: VALENS.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: VALENS.x86_64 type: none - config: - osarch: '64' + osarch: "64" oslist: windows executable: VALENS.exe type: default -'441670': +"441670": installDir: Jelly Killer launch: - config: @@ -218311,7 +214192,7 @@ oslist: linux executable: run.sh type: default -'441680': +"441680": installDir: Obscuritas launch: - config: @@ -218322,11 +214203,11 @@ oslist: macos executable: Obscuritas.app type: default -'441790': +"441790": installDir: Fragmented launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Fragmented.exe type: default @@ -218334,28 +214215,28 @@ oslist: linux executable: Fragmented/Binaries/Linux/Fragmented type: default -'441830': +"441830": installDir: SETSUNA launch: - config: oslist: windows executable: SETSUNA.exe type: default -'441870': +"441870": installDir: OutDrive launch: - config: oslist: windows executable: OutDrive.exe type: default -'441920': +"441920": installDir: FlightSchool launch: - config: oslist: windows executable: FSc.exe type: default -'4420': +"4420": installDir: Silverfall launch: - executable: Silverfall.exe @@ -218364,33 +214245,33 @@ - description: Official Silverfall Website executable: MC_GAME_LINK.htm - description: Register Silverfall - executable: Register\\Register.htm -'44200': + executable: "Register\\\\Register.htm" +"44200": installDir: Galcon Fusion launch: - config: oslist: windows description: Windows executable: GalconFusion.exe - workingdir: . + workingdir: "." - config: oslist: macos description: MacOS executable: Galcon Fusion.app - workingdir: . + workingdir: "." - config: oslist: linux description: Linux executable: bin/sdlapp workingdir: bin -'442000': +"442000": installDir: AKW_Level1 launch: - config: oslist: windows executable: AKW_Level1.exe type: default -'442070': +"442070": installDir: Drawful 2 launch: - config: @@ -218404,40 +214285,40 @@ executable: Drawful 2.app type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Launcher.sh type: none -'442080': +"442080": installDir: Riders of Icarus launch: - - arguments: ' /real --icasteam' + - arguments: " /real --icasteam" config: oslist: windows - executable: Bin32\\Launcher.exe + executable: "Bin32\\\\Launcher.exe" type: none - - arguments: ' /dev --icasteam' + - arguments: " /dev --icasteam" config: betakey: staging oslist: windows description: stage dev test - executable: Bin32\\Launcher.exe + executable: "Bin32\\\\Launcher.exe" type: option1 -'442110': +"442110": installDir: PWI launch: - - arguments: 'steam:1' + - arguments: "steam:1" executable: patcher/patcher.exe type: none -'442120': +"442120": installDir: Pinball FX3 launch: - config: oslist: windows executable: Pinball FX3.exe type: default -'442140': +"442140": installDir: Dyadic launch: - config: @@ -218448,16 +214329,16 @@ oslist: macos executable: Dyadic.app type: default -'442180': +"442180": installDir: Operation Caucasus AlphaS1 launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Alpha Season - executable: x86\\OperationCaucasus.exe + executable: "x86\\\\OperationCaucasus.exe" type: default -'442190': +"442190": installDir: Mind Dead launch: - config: @@ -218472,7 +214353,7 @@ oslist: linux executable: Mind Dead.x86_64 type: default -'442210': +"442210": installDir: Switchcars launch: - config: @@ -218483,18 +214364,18 @@ oslist: linux executable: switchcars type: none -'442220': +"442220": installDir: IronMadness launch: - config: oslist: macos - executable: iron_Madness.app\\Contents\\MacOS\\iron_Madness + executable: "iron_Madness.app\\\\Contents\\\\MacOS\\\\iron_Madness" type: default - config: oslist: windows executable: iron_Madness.exe type: default -'442260': +"442260": installDir: Sprinter launch: - config: @@ -218503,20 +214384,20 @@ type: default - config: oslist: macos - executable: Sprinter.app\\Contents\\MacOS\\Sprinter + executable: "Sprinter.app\\\\Contents\\\\MacOS\\\\Sprinter" type: default - config: oslist: linux executable: Sprinter.x86 type: default -'442290': +"442290": installDir: Pointless launch: - config: oslist: windows executable: Pointless.exe type: none -'442500': +"442500": installDir: Age Of Gladiators launch: - config: @@ -218524,7 +214405,7 @@ description: Launch executable: gladiator.exe type: none -'442660': +"442660": installDir: The SoulKeeper VR launch: - config: @@ -218535,100 +214416,80 @@ oslist: windows executable: TheSoulkeeperVR.exe type: othervr -'442710': +"442710": installDir: Fantasy Tales Online launch: - - arguments: >- - -Xmx1g -Djava.library.path=lib -Djava.net.preferIPv4Stack=true -cp - jar\\FtoClientClass.jar;jar\\FtoClientClassPath.jar;jar\\FtoUpdater.jar;jar\\jogg-0.0.7.jar;jar\\jorbis-0.0.15.jar;jar\\lwjgl.jar;jar\\slick.jar;jar\\steamworks4j-1.2.3.jar - FTO.FtoClient --appendlog=FtoRunLog + - arguments: "-Xmx1g -Djava.library.path=lib -Djava.net.preferIPv4Stack=true -cp jar\\\\FtoClientClass.jar;jar\\\\FtoClientClassPath.jar;jar\\\\FtoUpdater.jar;jar\\\\jogg-0.0.7.jar;jar\\\\jorbis-0.0.15.jar;jar\\\\lwjgl.jar;jar\\\\slick.jar;jar\\\\steamworks4j-1.2.3.jar FTO.FtoClient --appendlog=FtoRunLog" config: oslist: windows - executable: jre\\bin\\javaw.exe + executable: "jre\\\\bin\\\\javaw.exe" type: default - - arguments: >- - -Xmx1g -Xdock:icon=./data/misc/icon/fto128.jpg -Djava.library.path=lib -Djava.net.preferIPv4Stack=true -cp - jar/FtoClientClass.jar:jar/FtoClientClassPath.jar:jar/FtoUpdater.jar:jar/jogg-0.0.7.jar:jar/jorbis-0.0.15.jar:jar/lwjgl.jar:jar/slick.jar:jar/steamworks4j-1.2.3.jar - FTO.FtoClient --appendlog=FtoRunLog + - arguments: "-Xmx1g -Xdock:icon=./data/misc/icon/fto128.jpg -Djava.library.path=lib -Djava.net.preferIPv4Stack=true -cp jar/FtoClientClass.jar:jar/FtoClientClassPath.jar:jar/FtoUpdater.jar:jar/jogg-0.0.7.jar:jar/jorbis-0.0.15.jar:jar/lwjgl.jar:jar/slick.jar:jar/steamworks4j-1.2.3.jar FTO.FtoClient --appendlog=FtoRunLog" config: oslist: macos executable: FantasyTalesOnline.app/Contents/MacOS/jre/bin/java type: default - - arguments: >- - -Xmx1g -Djava.library.path=lib -Djava.net.preferIPv4Stack=true -cp - jar\\FtoClientClass.jar;jar\\FtoClientClassPath.jar;jar\\FtoUpdater.jar;jar\\jogg-0.0.7.jar;jar\\jorbis-0.0.15.jar;jar\\lwjgl.jar;jar\\slick.jar;jar\\steamworks4j-1.2.3.jar - FTO.FtoClient --port=4588 --appendlog=FtoRunLog + - arguments: "-Xmx1g -Djava.library.path=lib -Djava.net.preferIPv4Stack=true -cp jar\\\\FtoClientClass.jar;jar\\\\FtoClientClassPath.jar;jar\\\\FtoUpdater.jar;jar\\\\jogg-0.0.7.jar;jar\\\\jorbis-0.0.15.jar;jar\\\\lwjgl.jar;jar\\\\slick.jar;jar\\\\steamworks4j-1.2.3.jar FTO.FtoClient --port=4588 --appendlog=FtoRunLog" config: betakey: beta oslist: windows description: Fantasy Tales Online (Sandbox) - executable: jre\\bin\\javaw.exe + executable: "jre\\\\bin\\\\javaw.exe" type: option1 - - arguments: >- - -Xmx1g -Xdock:icon=./data/misc/icon/fto128.jpg -Djava.library.path=lib -Djava.net.preferIPv4Stack=true -cp - jar/FtoClientClass.jar:jar/FtoClientClassPath.jar:jar/FtoUpdater.jar:jar/jogg-0.0.7.jar:jar/jorbis-0.0.15.jar:jar/lwjgl.jar:jar/slick.jar:jar/steamworks4j-1.2.3.jar - FTO.FtoClient --port=4588 --appendlog=FtoRunLog + - arguments: "-Xmx1g -Xdock:icon=./data/misc/icon/fto128.jpg -Djava.library.path=lib -Djava.net.preferIPv4Stack=true -cp jar/FtoClientClass.jar:jar/FtoClientClassPath.jar:jar/FtoUpdater.jar:jar/jogg-0.0.7.jar:jar/jorbis-0.0.15.jar:jar/lwjgl.jar:jar/slick.jar:jar/steamworks4j-1.2.3.jar FTO.FtoClient --port=4588 --appendlog=FtoRunLog" config: betakey: beta oslist: macos description: Fantasy Tales Online (Sandbox) executable: FantasyTalesOnline.app/Contents/MacOS/jre/bin/java type: option1 - - arguments: >- - -Xdock:icon=./data/misc/icon/fto128.jpg -Djava.library.path=lib -Djava.net.preferIPv4Stack=true - -Dorg.lwjgl.opengl.Display.allowSoftwareOpenGL=true -DSAFEMODE=true -cp - jar/FtoClientClass.jar:jar/FtoClientClassPath.jar:jar/FtoUpdater.jar:jar/jogg-0.0.7.jar:jar/jorbis-0.0.15.jar:jar/lwjgl.jar:jar/slick.jar:jar/steamworks4j-1.2.3.jar - FTO.FtoClient --appendlog=FtoRunLog + - arguments: "-Xdock:icon=./data/misc/icon/fto128.jpg -Djava.library.path=lib -Djava.net.preferIPv4Stack=true -Dorg.lwjgl.opengl.Display.allowSoftwareOpenGL=true -DSAFEMODE=true -cp jar/FtoClientClass.jar:jar/FtoClientClassPath.jar:jar/FtoUpdater.jar:jar/jogg-0.0.7.jar:jar/jorbis-0.0.15.jar:jar/lwjgl.jar:jar/slick.jar:jar/steamworks4j-1.2.3.jar FTO.FtoClient --appendlog=FtoRunLog" config: oslist: macos description: Fantasy Tales Online (Safe Mode) executable: FantasyTalesOnline.app/Contents/MacOS/jre/bin/java type: option1 - - arguments: >- - -Djava.library.path=lib -Djava.net.preferIPv4Stack=true -Dorg.lwjgl.opengl.Display.allowSoftwareOpenGL=true - -DSAFEMODE=true -cp - jar\\FtoClientClass.jar;jar\\FtoClientClassPath.jar;jar\\FtoUpdater.jar;jar\\jogg-0.0.7.jar;jar\\jorbis-0.0.15.jar;jar\\lwjgl.jar;jar\\slick.jar;jar\\steamworks4j-1.2.3.jar - FTO.FtoClient --appendlog=FtoRunLog + - arguments: "-Djava.library.path=lib -Djava.net.preferIPv4Stack=true -Dorg.lwjgl.opengl.Display.allowSoftwareOpenGL=true -DSAFEMODE=true -cp jar\\\\FtoClientClass.jar;jar\\\\FtoClientClassPath.jar;jar\\\\FtoUpdater.jar;jar\\\\jogg-0.0.7.jar;jar\\\\jorbis-0.0.15.jar;jar\\\\lwjgl.jar;jar\\\\slick.jar;jar\\\\steamworks4j-1.2.3.jar FTO.FtoClient --appendlog=FtoRunLog" config: oslist: windows description: Fantasy Tales Online (Safe Mode) - executable: jre\\bin\\javaw.exe + executable: "jre\\\\bin\\\\javaw.exe" type: option1 -'442760': +"442760": installDir: Endless Burst launch: - config: oslist: windows executable: EndlessBurst.exe type: default -'442770': +"442770": installDir: Minims launch: - config: oslist: macos - executable: Minims.app\\Contents\\MacOS\\Minims + executable: "Minims.app\\\\Contents\\\\MacOS\\\\Minims" type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: Minims.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: Minims.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Minims.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Minims.x86_64 type: default -'442780': +"442780": installDir: STRAFE launch: - config: @@ -218644,14 +214505,14 @@ oslist: linux executable: STRAFE.x86_64 type: default -'442810': +"442810": installDir: UFO Online Invasion launch: - config: oslist: windows executable: UFO Online.exe type: none -'442860': +"442860": installDir: VegaTank launch: - config: @@ -218666,7 +214527,7 @@ oslist: linux executable: VegaTank.x86 type: default -'442890': +"442890": installDir: Magic Potion Explorer launch: - config: @@ -218675,15 +214536,15 @@ type: none nameLocalized: japanese: マジックポーション・エクスプローラー -'443000': +"443000": installDir: DualGearCloseAlpha launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: DualGear.exe type: default -'443020': +"443020": installDir: Victory and Glory Napoleon launch: - config: @@ -218691,40 +214552,40 @@ description: Launch executable: autorun.exe type: default -'443070': +"443070": installDir: Insane Insects The Inception launch: - arguments: IITI_TheGame_MainMenu.udk?game=IITI_TheGame.IITI_TheGame - executable: \\UDK-2014-08\\Binaries\\Win32\\UDK.exe + executable: "\\\\UDK-2014-08\\\\Binaries\\\\Win32\\\\UDK.exe" type: none - workingdir: \\UDK-2014-08\\Binaries\\Win32 -'443080': + workingdir: "\\\\UDK-2014-08\\\\Binaries\\\\Win32" +"443080": installDir: Elite Dangerous Arena launch: - arguments: /Steam /steamid 443080 /EDA config: - osarch: '64' + osarch: "64" oslist: windows executable: EDLaunch.exe type: default -'44310': +"44310": installDir: F1 2010 launch: - executable: f1_2010.exe -'443110': +"443110": installDir: Armored Warfare launch: - - arguments: '-FromSteam' + - arguments: "-FromSteam" config: oslist: windows executable: ArmoredWarfareMycomSteamLoader.exe type: none -'443190': {} -'44320': +"443190": {} +"44320": installDir: DiRT 3 launch: - executable: dirt3.exe -'443250': +"443250": installDir: Legacy of the Elder Star launch: - config: @@ -218739,7 +214600,7 @@ oslist: linux executable: Launcher.sh type: default -'443260': +"443260": installDir: Hero Generations ReGen launch: - config: @@ -218752,21 +214613,21 @@ executable: HeroGenerations.app type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: HeroGenerations.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: HeroGenerations.x86_64 type: none -'443330': +"443330": installDir: Malus Code launch: - executable: MALUS.exe type: none -'443360': +"443360": installDir: Red Comrades 2 For the Great Justice. Reloaded launch: - config: @@ -218779,41 +214640,41 @@ executable: petka2.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: petka2.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: petka2.x86 type: default nameLocalized: - russian: 'Петька и Василий Иванович 2: Судный день. Перезагрузка' -'443370': + russian: "Петька и Василий Иванович 2: Судный день. Перезагрузка" +"443370": installDir: The Treasures of Montezuma 5 launch: - config: oslist: windows executable: TheTreasuresOfMontezuma5.exe type: none -'443380': +"443380": installDir: Tokyo Babel launch: - executable: tokyobabel.exe type: none -'44340': +"44340": installDir: Operation Flashpoint Red River launch: - executable: RedRiverLauncher.exe -'443420': +"443420": installDir: Artificial Defense launch: - config: oslist: windows executable: game.exe type: none -'443450': +"443450": installDir: LASTFIGHT launch: - config: @@ -218830,7 +214691,7 @@ description: Play LASTFIGHT on Linux executable: LASTFIGHT.x86_64 type: default -'443460': +"443460": installDir: Star Sky 2 launch: - config: @@ -218838,7 +214699,7 @@ executable: nw.exe type: none - config: - osarch: '64' + osarch: "64" oslist: macos executable: starsky2.app type: none @@ -218848,7 +214709,7 @@ type: none nameLocalized: japanese: ブルームーン2 -'44350': +"44350": installDir: grid 2 launch: - config: @@ -218858,7 +214719,7 @@ oslist: macos description: Launch executable: Grid 2.app -'443530': +"443530": installDir: Adam and Eve The Game - Chapter 1 launch: - config: @@ -218869,7 +214730,7 @@ oslist: linux executable: nw type: default -'443570': +"443570": installDir: DreamBreak launch: - config: @@ -218880,58 +214741,58 @@ oslist: macos executable: DreamBreak.app type: none -'443580': +"443580": installDir: antenna launch: - config: oslist: windows executable: antenna.exe type: default -'443590': {} -'44360': +"443590": {} +"44360": installDir: F1 2011 launch: - executable: F1_2011.exe -'443630': +"443630": installDir: Chicku launch: - description: Startup Windows executable: Chicku.exe type: default -'443650': +"443650": installDir: Wailing Heights launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: WailingHeights.exe type: none - config: - osarch: '64' + osarch: "64" oslist: macos executable: WailingHeights.app type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: WailingHeights.x86_64 type: none -'443680': {} -'443700': +"443680": {} +"443700": installDir: The Inner Sea launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: innersea.exe type: default - config: - osarch: '64' + osarch: "64" oslist: macos executable: The Inner Sea.app type: default -'443790': {} -'443800': +"443790": {} +"443800": installDir: Ruckus Ridge VR Party launch: - config: @@ -218944,38 +214805,38 @@ description: HTC Vive executable: go.exe type: vr -'443810': +"443810": installDir: This is the Police launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Police.exe type: none - config: - osarch: '64' + osarch: "64" oslist: macos executable: Police.app type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: Police.x86_64 type: none - - arguments: '-force-opengl ' + - arguments: "-force-opengl " config: - osarch: '64' + osarch: "64" oslist: linux description: OpenGL 2 executable: Police.x86_64 type: option1 - - arguments: '-force-d3d9' + - arguments: "-force-d3d9" config: oslist: windows description: DirectX 9 executable: Police.exe type: option1 -'443830': +"443830": installDir: The Daring Mermaid Expedition launch: - config: @@ -218990,48 +214851,48 @@ oslist: linux executable: DaringMermaidExpedition type: none -'443850': +"443850": installDir: Tross launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Tross.exe type: none -'443860': +"443860": installDir: Riptide GP Renegade launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Game_x64.exe type: default -'443880': +"443880": installDir: lootrascals launch: - config: oslist: windows executable: LootRascals.exe type: default -'443890': +"443890": installDir: BUCK launch: - config: oslist: windows executable: BUCK.exe type: default -'443900': +"443900": installDir: AmericanPowerhaul launch: - executable: standalone.exe type: none -'443910': +"443910": installDir: TGVVoyages launch: - executable: Standalone.exe type: none -'443940': {} -'443980': +"443940": {} +"443980": installDir: Burokku Girls launch: - config: @@ -219040,13 +214901,13 @@ type: default - config: oslist: macos - executable: Burokku Girls.app\\Contents\\MacOS\\Burokku Girls + executable: "Burokku Girls.app\\\\Contents\\\\MacOS\\\\Burokku Girls" type: default - config: oslist: linux executable: Burokku Girls.sh type: default -'444000': +"444000": installDir: Super Night Riders launch: - config: @@ -219054,7 +214915,7 @@ description: Launch the Game! executable: super_night_riders.exe type: default - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" config: oslist: windows description: Resolution and Input Configuration @@ -219063,26 +214924,26 @@ - config: oslist: macos description: Launch the Game! - executable: super_night_riders.app\\Contents\\MacOS\\super_night_riders + executable: "super_night_riders.app\\\\Contents\\\\MacOS\\\\super_night_riders" type: default - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" config: oslist: macos description: Resolution and Input Configuration - executable: super_night_riders.app\\Contents\\MacOS\\super_night_riders + executable: "super_night_riders.app\\\\Contents\\\\MacOS\\\\super_night_riders" type: config - config: oslist: linux description: Launch the Game! executable: super_night_riders.x86 type: default - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" config: oslist: linux description: Resolution and Input Configuration executable: super_night_riders.x86 type: config -'444020': +"444020": installDir: Coffee Pot Terrarium launch: - config: @@ -219094,57 +214955,53 @@ executable: Coffee Pot Terrarium.app/Contents/MacOS/Coffee Pot Terrarium type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Coffee Pot Terrarium.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Coffee Pot Terrarium.x86 type: default -'444090': +"444090": installDir: Paladins launch: - - arguments: >- - -pid=402 -steam -anon -eac_launcher_settings Settings.json -seekfreeloadingPCConsole -eac_dir - \"..\\\\EasyAntiCheat\\\\\" + - arguments: "-pid=402 -steam -anon -eac_launcher_settings Settings.json -seekfreeloadingPCConsole -eac_dir \\\"..\\\\\\\\EasyAntiCheat\\\\\\\\\\\"" config: - osarch: '32' + osarch: "32" oslist: windows description: Launch 32 - executable: Binaries\\Win32\\PaladinsEAC.exe + executable: "Binaries\\\\Win32\\\\PaladinsEAC.exe" type: none workingdir: Binaries - - arguments: '-pid=402 -steam -anon -seekfreeloadingpcconsole' + - arguments: "-pid=402 -steam -anon -seekfreeloadingpcconsole" config: oslist: macos description: Launch for Mac - executable: HirezLauncherUI.app\\Contents\\MacOS\\Paladins.app + executable: "HirezLauncherUI.app\\\\Contents\\\\MacOS\\\\Paladins.app" type: default - - arguments: >- - -pid=402 -steam -anon -eac_launcher_settings Settings64.json -seekfreeloadingPCConsole -eac_dir - \"..\\\\EasyAntiCheat\\\\\" + - arguments: "-pid=402 -steam -anon -eac_launcher_settings Settings64.json -seekfreeloadingPCConsole -eac_dir \\\"..\\\\\\\\EasyAntiCheat\\\\\\\\\\\"" config: - osarch: '64' + osarch: "64" oslist: windows description: Launch 64 - executable: Binaries\\Win64\\PaladinsEAC.exe + executable: "Binaries\\\\Win64\\\\PaladinsEAC.exe" type: default workingdir: Binaries -'444130': +"444130": installDir: Auralux Constellations launch: - config: oslist: windows executable: auralux2.exe type: default -'444140': +"444140": installDir: Sonicomi launch: - executable: Sonicomi_Steam.exe type: none -'444160': +"444160": installDir: Bonsai launch: - config: @@ -219155,7 +215012,7 @@ oslist: linux executable: Bonsai.sh type: default -'444170': +"444170": installDir: Unhack 2 launch: - config: @@ -219170,7 +215027,7 @@ oslist: linux executable: unhack2.sh type: none -'444180': +"444180": installDir: Techwars Online launch: - config: @@ -219178,14 +215035,14 @@ description: TechWars online executable: TechWars.exe type: default -'444190': +"444190": installDir: Princess Edge - Dragonstone launch: - config: oslist: windows executable: Princess Edge.exe type: default -'444200': +"444200": installDir: World of Tanks Blitz launch: - config: @@ -219199,7 +215056,7 @@ nameLocalized: schinese: 坦克世界闪电战 tchinese: 《戰車世界:閃擊戰》 -'444210': +"444210": installDir: Strike Force Desert Thunder launch: - config: @@ -219209,34 +215066,34 @@ type: none - config: betakey: closedbeta - osarch: '64' + osarch: "64" oslist: windows executable: SecretWarsOnline.exe type: none -'444220': +"444220": installDir: Asteroid Bounty Hunter launch: - config: oslist: windows executable: AsteroidBountyHunter.exe type: default - - arguments: '-force-opengl' + - arguments: "-force-opengl" config: - osarch: '32' + osarch: "32" oslist: linux executable: AsteroidBountyHunter.x86 type: default - config: oslist: macos - executable: AsteroidBountyHunter.app\\Contents\\MacOS\\AsteroidBountyHunter + executable: "AsteroidBountyHunter.app\\\\Contents\\\\MacOS\\\\AsteroidBountyHunter" type: default - - arguments: '-force-opengl' + - arguments: "-force-opengl" config: - osarch: '64' + osarch: "64" oslist: linux executable: AsteroidBountyHunter.x86_64 type: default -'444240': +"444240": installDir: Tankr launch: - config: @@ -219245,44 +215102,44 @@ type: default - config: oslist: macos - executable: Tankr.app\\Contents\\MacOS\\Tankr + executable: "Tankr.app\\\\Contents\\\\MacOS\\\\Tankr" type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Tankr.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Tankr.x86 type: default -'444250': +"444250": installDir: Crown and Council launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: crown_and_council.exe type: default - config: - osarch: '64' + osarch: "64" oslist: macos - executable: application.macosx\\Crown and Council.app\\Contents\\MacOS\\crown_and_council_B6 + executable: "application.macosx\\\\Crown and Council.app\\\\Contents\\\\MacOS\\\\crown_and_council_B6" type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: crown_and_council_B6 type: default -'444260': +"444260": installDir: Mindless Running launch: - config: oslist: windows executable: Mindless Running.exe type: default -'444270': +"444270": installDir: Hypersensitive Bob launch: - config: @@ -219293,27 +215150,27 @@ oslist: macos executable: HypersensitiveBob.app type: none - - arguments: '-force-opengl' + - arguments: "-force-opengl" config: - osarch: '32' + osarch: "32" oslist: linux executable: HypersensitiveBob.x86 type: none - - arguments: '-force-opengl' + - arguments: "-force-opengl" config: - osarch: '64' + osarch: "64" oslist: linux executable: HypersensitiveBob.x86_64 type: none -'444280': - installDir: Alice's Patchwork +"444280": + installDir: "Alice's Patchwork" launch: - config: oslist: windows executable: game.exe type: none -'444290': {} -'444320': +"444290": {} +"444320": installDir: Jumpix Jump launch: - config: @@ -219322,13 +215179,13 @@ type: default - config: oslist: macos - executable: JumpixJump.app\\Contents\\MacOS\\JumpixJump + executable: "JumpixJump.app\\\\Contents\\\\MacOS\\\\JumpixJump" type: default - config: oslist: linux executable: JumpixJump.x86 type: default -'444330': +"444330": installDir: BattleshipsAtDawn launch: - config: @@ -219336,7 +215193,7 @@ executable: bin/Launcher.exe type: none workingdir: bin/ -'444350': +"444350": installDir: HACK_IT launch: - config: @@ -219351,19 +215208,19 @@ oslist: linux executable: HACK_IT.x86 type: none -'444410': +"444410": installDir: FindOut launch: - config: oslist: windows - executable: FindOut\\bin\\win_x64\\FindOut.exe + executable: "FindOut\\\\bin\\\\win_x64\\\\FindOut.exe" type: default -'444420': - installDir: 24 Hours 'til Rescue +"444420": + installDir: "24 Hours 'til Rescue" launch: - executable: game.exe type: none -'444430': +"444430": installDir: Zeus vs Monsters - Math Game for kids launch: - config: @@ -219372,9 +215229,9 @@ type: none - config: oslist: macos - executable: zevs_.app\\Contents\\MacOS\\zevs_ + executable: "zevs_.app\\\\Contents\\\\MacOS\\\\zevs_" type: default -'444440': +"444440": installDir: Scapeland launch: - config: @@ -219385,7 +215242,7 @@ oslist: windows executable: Scapeland.exe type: default -'444460': +"444460": installDir: Love is Blind Mutants launch: - executable: game.exe @@ -219394,14 +215251,14 @@ oslist: macos executable: LoveisBlind_Alpha_0.0.2.app type: none -'444470': +"444470": installDir: Moor launch: - config: oslist: windows executable: Moor_studioversion.exe type: none -'444480': +"444480": installDir: Broken Dreams launch: - config: @@ -219416,14 +215273,14 @@ oslist: linux executable: BrokenDreamsLinux type: none -'444490': +"444490": installDir: POLYWAR launch: - config: oslist: windows executable: Polywar.exe type: none -'444520': +"444520": installDir: Leave Me Alone launch: - config: @@ -219438,12 +215295,12 @@ oslist: linux executable: LMA.x86 type: default -'444530': - installDir: 'Light Repair Team #4' +"444530": + installDir: "Light Repair Team #4" launch: - executable: LightRepairTeam4.exe type: vr -'444550': +"444550": installDir: Void 21 launch: - config: @@ -219455,53 +215312,53 @@ executable: void21.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: void21.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: void21.x86_64 type: default -'444580': +"444580": installDir: ALONE IN SPACE launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ALONE IN SPACE.exe type: none - config: - osarch: '64' + osarch: "64" oslist: macos - executable: ALONE IN SPACE.app\\Contents\\MacOS\\ALONE IN SPACE + executable: "ALONE IN SPACE.app\\\\Contents\\\\MacOS\\\\ALONE IN SPACE" type: default - config: - osarch: '32' + osarch: "32" oslist: windows - executable: 'ALONE IN SPACE.exe ' + executable: "ALONE IN SPACE.exe " type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: ALONE IN SPACE.x86_64 type: none -'444590': +"444590": installDir: Shrouded in Sanity launch: - config: oslist: windows executable: Shrouded in Sanity.exe type: none -'444620': +"444620": installDir: SpellKnights launch: - config: oslist: windows executable: SpellKnigths.exe type: default -'444640': +"444640": installDir: Bloons TD Battles launch: - config: @@ -219512,7 +215369,7 @@ oslist: macos executable: BTDB-Steam.app type: default -'444650': +"444650": installDir: Endciv launch: - config: @@ -219523,7 +215380,7 @@ oslist: linux executable: Endciv.x86 type: default -'444670': +"444670": installDir: SUPER IMPOSSIBLE ROAD launch: - config: @@ -219534,14 +215391,14 @@ oslist: macos executable: SIR_OSX.app type: default -'444690': +"444690": installDir: Outbreak_PE launch: - config: oslist: windows executable: Outbreak.exe type: default -'444710': +"444710": installDir: Battle Crust launch: - config: @@ -219552,20 +215409,20 @@ oslist: windows executable: KeyConfig.exe type: editor -'444720': +"444720": installDir: Inexistence launch: - description: Launch executable: Inexistence.exe type: default -'444740': +"444740": installDir: Cologne launch: - config: oslist: windows executable: Cologne.exe type: default -'444770': +"444770": installDir: Mimpi Dreams launch: - config: @@ -219580,8 +215437,8 @@ oslist: linux executable: MimpiDreams.x86 type: default -'444790': {} -'444800': +"444790": {} +"444800": installDir: NO THING launch: - config: @@ -219596,110 +215453,110 @@ oslist: linux executable: no_thing.x86 type: none -'444830': +"444830": installDir: Concrete And Steel launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ConcreteAndSteel.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: ConcreteAndSteel.x86_64 type: default - config: - osarch: '64' + osarch: "64" oslist: macos executable: ConcreteAndSteel.app type: default -'444860': +"444860": installDir: Split launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Split.exe type: default -'444870': +"444870": installDir: Combat Racers launch: - config: oslist: windows executable: Combat Racers.exe type: default -'444880': +"444880": installDir: Death Stair launch: - config: oslist: windows executable: DeathStair.exe type: default -'444930': +"444930": installDir: Zaccaria Pinball launch: - config: oslist: windows executable: ZaccariaPinball.exe type: default - - arguments: '-vr' + - arguments: "-vr" config: oslist: windows - ownsdlc: '538760' + ownsdlc: "538760" description: Zaccaria Pinball VR (Standing) executable: ZaccariaPinball.exe type: vr - - arguments: '-vr seat' + - arguments: "-vr seat" config: oslist: windows - ownsdlc: '538760' + ownsdlc: "538760" description: Zaccaria Pinball VR (Seated) executable: ZaccariaPinball.exe type: vr - config: - osarch: '64' + osarch: "64" oslist: macos executable: ZaccariaPinball.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: ZaccariaPinball.sh type: default - - arguments: '-vr' + - arguments: "-vr" config: - osarch: '64' + osarch: "64" oslist: macos - ownsdlc: '538760' + ownsdlc: "538760" description: Zaccaria Pinball VR (Standing) executable: ZaccariaPinball.app type: vr - - arguments: '-vr seat' + - arguments: "-vr seat" config: - osarch: '64' + osarch: "64" oslist: macos - ownsdlc: '538760' + ownsdlc: "538760" description: Zaccaria Pinball VR (Seated) executable: ZaccariaPinball.app type: vr - - arguments: '-vr' + - arguments: "-vr" config: - osarch: '64' + osarch: "64" oslist: linux - ownsdlc: '538760' + ownsdlc: "538760" description: Zaccaria Pinball VR (Standing) executable: ZaccariaPinball.sh type: vr - - arguments: '-vr seat' + - arguments: "-vr seat" config: - osarch: '64' + osarch: "64" oslist: linux - ownsdlc: '538760' + ownsdlc: "538760" description: Zaccaria Pinball VR (Seated) executable: ZaccariaPinball.sh type: vr -'444940': +"444940": installDir: UBERMOSHBLACK launch: - config: @@ -219712,44 +215569,44 @@ description: Launch executable: run.sh type: default -'444950': - installDir: Let's Eat! Seaside Cafe +"444950": + installDir: "Let's Eat! Seaside Cafe" launch: - executable: LetsEat!SeasideCafe.exe type: none -'444990': +"444990": installDir: Ad Exitum launch: - config: oslist: windows executable: AdExitum.exe type: default -'445000': +"445000": installDir: Nova Nukers! launch: - config: oslist: windows executable: nova_nukers.exe type: default -'445020': +"445020": installDir: Frozen Synapse 2 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: FrozenSynapse2.exe type: default - config: - osarch: '64' + osarch: "64" oslist: macos executable: FrozenSynapse2.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: runFS2.sh type: default -'445040': +"445040": installDir: Sorcery! 3 launch: - config: @@ -219760,14 +215617,14 @@ oslist: macos executable: Sorcery! 3.app type: default -'445050': +"445050": installDir: Paintey launch: - config: oslist: windows executable: Paintey.exe type: vr -'445070': +"445070": installDir: Tatsu launch: - config: @@ -219785,7 +215642,7 @@ description: Launch executable: Tatsu type: none -'445110': +"445110": installDir: Tasty Planet Back for Seconds launch: - config: @@ -219798,7 +215655,7 @@ description: Launch executable: Tasty Planet 2.app type: none -'445130': +"445130": installDir: The Average Everyday Adventures of Samantha Browne launch: - config: @@ -219813,14 +215670,14 @@ oslist: linux executable: Samantha Browne.sh type: default -'445140': +"445140": installDir: SmellOfDeath launch: - config: oslist: windows executable: SodV2.exe type: vr -'445170': +"445170": installDir: The Haunting of Billy launch: - config: @@ -219831,77 +215688,77 @@ oslist: macos executable: The Haunting of Billy.app type: config -'445190': +"445190": installDir: Expeditions Viking launch: - config: oslist: windows executable: Expeditions Viking.exe type: default -'445210': +"445210": installDir: Tiny Knight launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TinyKnight.exe type: default - config: - osarch: '64' + osarch: "64" oslist: macos executable: TinyKnight.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: TinyKnight.x86 type: default -'445220': +"445220": installDir: Avorion launch: - - arguments: '--serverpath=bin/AvorionServer' + - arguments: "--serverpath=bin/AvorionServer" config: - osarch: '64' + osarch: "64" oslist: linux executable: bin/Avorion type: default - workingdir: . - - arguments: '--serverpath=bin/AvorionServer.exe' + workingdir: "." + - arguments: "--serverpath=bin/AvorionServer.exe" config: - osarch: '64' + osarch: "64" oslist: windows executable: bin/Avorion.exe type: default - workingdir: . - - arguments: '--serverpath=bin/AvorionServer' + workingdir: "." + - arguments: "--serverpath=bin/AvorionServer" config: oslist: macos executable: bin/Avorion type: default - workingdir: . -'445230': - installDir: 'Lost girl`s [diary]' + workingdir: "." +"445230": + installDir: "Lost girl`s [diary]" launch: - config: oslist: windows - executable: 'Lost girl`s [diary].exe' + executable: "Lost girl`s [diary].exe" type: default - config: oslist: macos - executable: 'Lost girl`s [diary].app\\Contents\\MacOS\\Lost girl`s [diary]' + executable: "Lost girl`s [diary].app\\\\Contents\\\\MacOS\\\\Lost girl`s [diary]" type: default -'445310': +"445310": installDir: Might & Magic Heroes VII launch: - - arguments: '-uplay_steam_mode' + - arguments: "-uplay_steam_mode" config: - osarch: '64' + osarch: "64" oslist: windows description: Might and Magic Heroes VII - executable: Binaries\\Win64\\MMH7Game-Win64-Shipping.exe + executable: "Binaries\\\\Win64\\\\MMH7Game-Win64-Shipping.exe" type: none - workingdir: Binaries\\Win64\\ -'445350': + workingdir: "Binaries\\\\Win64\\\\" +"445350": installDir: Atomic Space Command launch: - config: @@ -219913,44 +215770,44 @@ executable: AtomicSpaceCommand.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: AtomicSpaceCommand.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: AtomicSpaceCommand.x86 type: default -'445420': +"445420": installDir: Aselia the Eternal launch: - executable: Aselia.exe type: default - executable: Aselia_Config.exe type: config -'445430': +"445430": installDir: Seinarukana -The Spirit of Eternity Sword 2- launch: - config: oslist: windows executable: NarukanaDL.exe type: default -'445550': - installDir: Watson's Watch +"445550": + installDir: "Watson's Watch" launch: - config: oslist: windows executable: Game.exe type: default -'445600': +"445600": installDir: Void Raiders launch: - config: oslist: windows executable: VoidRaiders.exe type: none -'445670': +"445670": installDir: The Stargazers launch: - config: @@ -219965,7 +215822,7 @@ oslist: macos executable: Stargazers.app type: none -'445720': +"445720": installDir: Commanders launch: - config: @@ -219973,15 +215830,15 @@ description: Launch executable: Commanders.exe type: none -'445730': {} -'445750': +"445730": {} +"445750": installDir: Settled launch: - config: oslist: windows executable: nw.exe type: default -'445770': +"445770": installDir: Airport Madness 3D launch: - config: @@ -219992,14 +215849,14 @@ oslist: macos executable: Airport Madness 3D.app type: none -'445800': +"445800": installDir: Love Language Japanese launch: - config: oslist: windows executable: LoveLanguageJapanese.exe type: default -'445840': +"445840": installDir: Undead vs Plants launch: - config: @@ -220008,37 +215865,37 @@ type: default - config: oslist: macos - executable: Undead.app\\Contents\\MacOS\\Undead + executable: "Undead.app\\\\Contents\\\\MacOS\\\\Undead" type: default -'445860': +"445860": installDir: Toy Plane Heroes launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TPH.exe type: othervr - config: - osarch: '64' + osarch: "64" oslist: windows executable: TPH.exe type: vr -'445870': +"445870": installDir: Phantom Trigger launch: - config: oslist: windows executable: Phantom Trigger.exe type: default -'445880': {} -'445950': +"445880": {} +"445950": installDir: Asher launch: - config: oslist: windows executable: Asher.exe type: default -'445980': +"445980": installDir: Wizard of Legend launch: - config: @@ -220050,26 +215907,26 @@ executable: WizardOfLegend.app type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: WizardOfLegend.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: WizardOfLegend.x86_64 type: none -'4460': +"4460": installDir: City Life 2008 launch: - - executable: BIN\\cld.exe -'44600': + - executable: "BIN\\\\cld.exe" +"44600": installDir: GTR - FIA GT Raceing Game launch: - executable: SteamProxy.exe - description: Video Options executable: Config.exe -'446000': +"446000": installDir: Stellar Monarch launch: - config: @@ -220077,61 +215934,61 @@ description: The game (latest build) executable: StellarMonarch.exe type: default - - arguments: '-safemode' + - arguments: "-safemode" config: oslist: windows description: Stellar Monarch - safe mode executable: StellarMonarch.exe type: option1 -'446010': +"446010": installDir: CitiesCorp Concept - Build Everything on Your Own launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: CitiesCorp.v.0.83_2016_04_27_ea_releasepatched.exe type: none -'446020': +"446020": installDir: Jalopy launch: - config: oslist: windows executable: Jalopy.exe type: default - - arguments: '-fixedTime 0.03' + - arguments: "-fixedTime 0.03" config: oslist: windows description: on low spec PC executable: Jalopy.exe type: option1 - - arguments: '-fixedTime 0.007' + - arguments: "-fixedTime 0.007" config: oslist: windows description: on high spec PC executable: Jalopy.exe type: option2 -'446030': +"446030": installDir: Corroded launch: - config: oslist: windows executable: CorrodedGame.exe type: default -'446040': +"446040": installDir: BLADE ARCUS from Shining launch: - config: oslist: windows executable: game.exe type: default -'446050': +"446050": installDir: KREEP launch: - config: oslist: windows executable: KreepSteam.exe type: none -'446070': +"446070": installDir: ecotone launch: - config: @@ -220139,21 +215996,21 @@ executable: ecotone.exe type: default - config: - osarch: '64' + osarch: "64" oslist: macos executable: ecotone.app/Contents/MacOS/ecotone type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: ecotone type: default -'446100': +"446100": installDir: Mantis Burn Racing launch: - executable: VFRacer.exe type: default -'446110': +"446110": installDir: Happy Critters launch: - config: @@ -220162,11 +216019,11 @@ executable: bin32/game_casual.exe type: none workingdir: bin32 -'446120': +"446120": installDir: Bunker Punks launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: BunkerPunks.exe @@ -220175,14 +216032,14 @@ oslist: macos executable: BunkerPunks.app type: default -'446150': +"446150": installDir: GUNS UP launch: - config: oslist: windows executable: GUNS UP.exe type: default -'446240': +"446240": installDir: Trawl launch: - config: @@ -220193,14 +216050,14 @@ oslist: windows executable: Trawl.exe type: none -'446250': +"446250": installDir: SilverBullet launch: - config: oslist: windows executable: SilverBullet.exe type: default -'446270': +"446270": installDir: UnnyWorld launch: - config: @@ -220209,9 +216066,9 @@ type: default - config: oslist: macos - executable: unnyworld.app\\Contents\\MacOS\\unnyworld + executable: "unnyworld.app\\\\Contents\\\\MacOS\\\\unnyworld" type: default -'446310': +"446310": installDir: Sabres of Infinity launch: - config: @@ -220226,7 +216083,7 @@ oslist: linux executable: SabresOfInfinity type: none -'446330': +"446330": installDir: Guns of Infinity launch: - config: @@ -220241,43 +216098,43 @@ oslist: linux executable: GunsOfInfinity type: none -'446380': - installDir: Sophie's Curse +"446380": + installDir: "Sophie's Curse" launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Sophies Curse.exe type: default -'446390': +"446390": installDir: S-AZ2 launch: - config: oslist: windows executable: OnechanbaraZ2.exe type: default -'446430': +"446430": installDir: Doctor Watson - Treasure Island launch: - config: oslist: windows executable: watson1.exe type: default -'446440': +"446440": installDir: Doctor Watson - The Riddle of the Catacombs launch: - config: oslist: windows executable: watson2.exe type: default -'446450': +"446450": installDir: Blaster Simulator launch: - config: oslist: windows executable: demolition_win.exe type: default -'446460': +"446460": installDir: Highland Warriors launch: - config: @@ -220290,28 +216147,28 @@ description: Config executable: wiz.exe type: config -'446470': +"446470": installDir: New York Taxi Simulator launch: - config: oslist: windows executable: Game.exe type: default -'446480': +"446480": installDir: New York Bus Simulator launch: - config: oslist: windows executable: Game.exe type: default -'446490': +"446490": installDir: Rail Cargo Simulator launch: - config: oslist: windows executable: railcargo_win.exe type: default -'446510': +"446510": installDir: Armed and Gelatinous launch: - config: @@ -220323,16 +216180,16 @@ executable: Gelatinous.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Gelatinous.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Gelatinous.x86_64 type: default -'446530': +"446530": installDir: One Last Crane launch: - config: @@ -220350,37 +216207,37 @@ nameLocalized: schinese: 最后的千纸鹤 One Last Crane tchinese: 最後的千紙鶴 One Last Crane -'446540': +"446540": installDir: Smash Up launch: - executable: SmashUp.exe type: default -'446550': +"446550": installDir: Infinite Minigolf launch: - config: oslist: windows executable: InfiniteMinigolf.exe type: default - - arguments: '-openvr' + - arguments: "-openvr" config: oslist: windows executable: InfiniteMinigolf.exe type: vr - - arguments: '-oculusvr' + - arguments: "-oculusvr" config: oslist: windows executable: InfiniteMinigolf.exe type: othervr -'446560': +"446560": installDir: Just Dance 2017 launch: - - arguments: '-uplay_steam_mode' + - arguments: "-uplay_steam_mode" config: oslist: windows executable: JD2017.exe type: default -'446590': +"446590": installDir: 7 Mages launch: - config: @@ -220389,13 +216246,13 @@ type: none - config: oslist: macos - executable: 7mages.app\\Contents\\MacOS\\7mages + executable: "7mages.app\\\\Contents\\\\MacOS\\\\7mages" type: none - config: oslist: linux executable: 7mages.sh type: none -'446600': +"446600": installDir: HSR Magi Trials launch: - config: @@ -220413,7 +216270,7 @@ description: Launch executable: MagiTrials.sh type: none -'446610': +"446610": installDir: Bunny Bounce launch: - config: @@ -220431,28 +216288,28 @@ description: Launch executable: BunnyBounce.app type: none -'446620': +"446620": installDir: Zombie Training Simulator launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: zts.exe type: vr -'446640': +"446640": installDir: Space Pilgrim Episode IV Sol launch: - executable: game.exe type: none -'446750': +"446750": installDir: Portal Stories VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Lift.exe type: vr -'446760': +"446760": installDir: Neighborhorde launch: - config: @@ -220463,29 +216320,29 @@ - config: oslist: macos description: Launch - executable: Neighborhorde.app\\Contents\\MacOS\\Neighborhorde_042117_RED + executable: "Neighborhorde.app\\\\Contents\\\\MacOS\\\\Neighborhorde_042117_RED" type: default -'446770': +"446770": installDir: Skeet VR Target Shooting launch: - - arguments: '-OpenVR' + - arguments: "-OpenVR" config: oslist: windows executable: Skeet.exe type: vr - - arguments: '-Oculus' + - arguments: "-Oculus" config: oslist: windows executable: Skeet.exe type: othervr -'446780': +"446780": installDir: AMOK launch: - config: oslist: windows executable: AMOK.exe type: default -'446790': +"446790": installDir: Diluvion launch: - config: @@ -220500,18 +216357,18 @@ oslist: linux executable: Diluvion.x86_64 type: default -'44680': +"44680": installDir: race 07 launch: - - arguments: '-appId 44860 -cmd skin=Mosquito' + - arguments: "-appId 44860 -cmd skin=Mosquito" executable: SteamExpansionApp.exe - - arguments: '-appId 44680 -cmd /launchconfig' + - arguments: "-appId 44680 -cmd /launchconfig" description: Video and Language Options executable: SteamExpansionApp.exe - - arguments: '-appId 44680 -cmd /launchregistration' + - arguments: "-appId 44680 -cmd /launchregistration" description: Competition Registration executable: SteamExpansionApp.exe -'446800': +"446800": installDir: Transport Fever launch: - config: @@ -220526,14 +216383,14 @@ oslist: macos executable: run.sh type: none -'446810': +"446810": installDir: Blossom Tales The Sleeping King launch: - config: oslist: windows executable: BlossomTales.exe type: none -'446840': +"446840": installDir: Splasher launch: - config: @@ -220548,16 +216405,16 @@ oslist: linux executable: Splasher.x86 type: none -'446850': +"446850": installDir: Mindball Play launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: MindballPlay.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: MindballPlay32.exe type: default @@ -220565,7 +216422,7 @@ oslist: macos executable: MindballPlay.app/Contents/MacOS/MindballPlay type: default -'446870': +"446870": installDir: Glitchrunners launch: - config: @@ -220574,9 +216431,9 @@ type: default - config: oslist: macos - executable: Glitchrunners.app\\Contents\\MacOS\\Glitchrunners.dmg + executable: "Glitchrunners.app\\\\Contents\\\\MacOS\\\\Glitchrunners.dmg" type: default -'44690': +"44690": installDir: GT Legends launch: - arguments: gtl.exe @@ -220585,15 +216442,15 @@ - arguments: GTLConfig.exe description: Graphics options executable: sudo.exe -'446910': +"446910": installDir: Night Blights launch: - config: oslist: windows executable: NightBlights.exe type: none -'446990': - installDir: The Huntsman Winter's Curse +"446990": + installDir: "The Huntsman Winter's Curse" launch: - config: oslist: windows @@ -220603,13 +216460,13 @@ oslist: macos executable: Huntsman.app type: default -'4470': +"4470": installDir: Silverfall launch: - executable: silverfall.exe - - description: 'Launch Silverfall: Earth Awakening Setup' + - description: "Launch Silverfall: Earth Awakening Setup" executable: GameSetup.exe -'447000': +"447000": installDir: Grimsfield launch: - config: @@ -220620,7 +216477,7 @@ oslist: macos executable: Grimsfield.app type: none -'447010': +"447010": installDir: Bird of Light launch: - config: @@ -220630,55 +216487,55 @@ - config: betakey: beta oslist: macos - executable: bird_of_light.app\\Contents\\MacOS\\bird_of_light + executable: "bird_of_light.app\\\\Contents\\\\MacOS\\\\bird_of_light" type: default - config: betakey: beta oslist: linux executable: bird_of_light.x86 type: default -'447020': +"447020": installDir: Farming Simulator 17 launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: x86/FarmingSimulator2017Game.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: x64/FarmingSimulator2017Game.exe type: default - config: - osarch: '64' + osarch: "64" oslist: macos executable: Farming Simulator 2017.app type: default -'447040': +"447040": installDir: Watch_Dogs2 launch: - - arguments: '-uplay_steam_mode' + - arguments: "-uplay_steam_mode" config: - osarch: '64' + osarch: "64" oslist: windows description: WATCH_DOGS 2 - executable: bin\\WatchDogs2.exe + executable: "bin\\\\WatchDogs2.exe" type: default workingdir: bin -'447100': +"447100": installDir: XLR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: XLR.exe type: vr -'447120': +"447120": installDir: Where The Water Tastes Like Wine launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: WTWTLW.exe type: default @@ -220687,16 +216544,16 @@ executable: WTWTLW.app/Contents/MacOS/WheretheWaterTastesLikeWine type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: WTWTLW.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: WTWTLW_64.exe type: default -'447150': +"447150": installDir: Ape Out launch: - config: @@ -220707,39 +216564,39 @@ oslist: macos executable: ApeOut.app type: none -'447170': - installDir: 'Destiny''s Princess A War Story, A Love Story' +"447170": + installDir: "Destiny's Princess A War Story, A Love Story" launch: - - arguments: '-windowed' + - arguments: "-windowed" config: oslist: windows - executable: Destiny's Princess.exe + executable: "Destiny's Princess.exe" type: default -'447180': +"447180": installDir: My Secret Pets! launch: - - arguments: '-windowed' + - arguments: "-windowed" config: oslist: windows executable: My Secret Pets!.exe type: default -'447190': +"447190": installDir: Pub Encounter launch: - - arguments: '-windowed' + - arguments: "-windowed" config: oslist: windows executable: Pub Encounter.exe type: default -'447200': +"447200": installDir: The Men of Yoshiwara Ohgiya launch: - - arguments: '-windowed' + - arguments: "-windowed" config: oslist: windows executable: ohgiya.exe type: default -'447210': +"447210": installDir: Blink launch: - config: @@ -220750,7 +216607,7 @@ oslist: macos executable: blink.app type: none -'447240': +"447240": installDir: Zasa launch: - config: @@ -220761,47 +216618,47 @@ oslist: macos executable: Zasa.app type: none -'447270': +"447270": installDir: IKEA VR Experience launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: IKEA VR Experience executable: IKEAVR2.exe type: vr -'447290': +"447290": installDir: Redeemer launch: - config: oslist: windows description: SHIPPING MODE - executable: \\ExampleGame\\Binaries\\Win64\\ExampleGame-Win64-Shipping.exe + executable: "\\\\ExampleGame\\\\Binaries\\\\Win64\\\\ExampleGame-Win64-Shipping.exe" type: none -'447310': +"447310": installDir: PaperTrainTraffic launch: - config: oslist: windows - executable: bin_x86\\PaperTrain2D.exe + executable: "bin_x86\\\\PaperTrain2D.exe" type: default workingdir: bin_x86 - config: - osarch: '64' + osarch: "64" oslist: linux executable: bin_x64_linux/game.sh type: none workingdir: bin_x64_linux -'447330': {} -'447500': +"447330": {} +"447500": installDir: ShatteredSkies launch: - - arguments: '-steam -ss' + - arguments: "-steam -ss" config: oslist: windows executable: Launcher.exe type: none -'447530': +"447530": installDir: VA-11 HALL-A launch: - config: @@ -220816,14 +216673,14 @@ oslist: macos executable: VA-11 Hall-A Cyberpunk Bartender Action.app type: default -'447540': +"447540": installDir: Lost Cosmonaut launch: - config: oslist: windows executable: Lost Cosmonauts.exe type: default -'447570': +"447570": installDir: RegeriaHope launch: - config: @@ -220838,7 +216695,7 @@ oslist: macos executable: RegeriaHopeEp1Steam.app type: default -'447690': +"447690": installDir: Dimensional Intersection launch: - config: @@ -220846,28 +216703,28 @@ description: HTC Vive executable: 447690.exe type: vr -'447700': +"447700": installDir: Crystal Crisis launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Crystal Crisis.exe type: default -'447780': +"447780": installDir: LostWinds launch: - executable: LW1.exe type: default -'447800': +"447800": installDir: LostWinds 2 Winter of the Melodias launch: - executable: LW2.exe type: default -'447820': +"447820": installDir: dayofinfamy launch: - - arguments: '-console -crashinprocess' + - arguments: "-console -crashinprocess" config: oslist: windows description: Launch with Console @@ -220881,79 +216738,79 @@ oslist: linux executable: dayofinfamy.sh type: none -'447850': +"447850": installDir: The Next Door launch: - config: oslist: windows executable: The Next Door.exe type: default -'447860': +"447860": installDir: Maria the Witch launch: - config: oslist: windows executable: maria_v101.exe type: default -'447880': {} -'447890': +"447880": {} +"447890": installDir: Cat on a Diet launch: - config: oslist: windows executable: catonadiet_en.exe type: default -'447920': +"447920": installDir: Drift (Over) Drive launch: - config: oslist: windows executable: nw.exe type: none -'447930': +"447930": installDir: LYDIA SWEET DREAMS launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: lydia.exe type: default -'447940': +"447940": installDir: Brinev1.0 launch: - config: oslist: windows executable: Brine.exe type: none -'447950': +"447950": installDir: Bad Caterpillar launch: - executable: BadCaterpillar.exe type: default -'447960': +"447960": installDir: XCavalypse launch: - - arguments: '-fullscreen' + - arguments: "-fullscreen" config: - osarch: '64' + osarch: "64" oslist: windows executable: XCav.exe type: default - - arguments: '-fullscreen' + - arguments: "-fullscreen" config: oslist: linux executable: XCav/Binaries/Linux/XCav-Linux-Shipping type: default - config: - osarch: '64' + osarch: "64" oslist: windows - ownsdlc: '516770' + ownsdlc: "516770" description: XCavalypse VR executable: XCavalypseVR/XCavVR.exe type: vr workingdir: XCavalypseVR -'447970': {} -'447980': +"447970": {} +"447980": installDir: Blast Brawl 2 launch: - config: @@ -220962,9 +216819,9 @@ type: default - config: oslist: macos - executable: BlastBrawl2.app\\Contents\\MacOS\\BlastBrawl2 + executable: "BlastBrawl2.app\\\\Contents\\\\MacOS\\\\BlastBrawl2" type: default -'447990': +"447990": installDir: Spectrubes launch: - config: @@ -220982,7 +216839,7 @@ description: Launch Linux executable: spectrubes type: default -'448000': +"448000": installDir: Sparkle ZERO launch: - config: @@ -220997,7 +216854,7 @@ oslist: linux executable: SparkleZero.x86 type: default -'448010': +"448010": installDir: RePete launch: - config: @@ -221012,7 +216869,7 @@ oslist: linux executable: repete type: none -'448020': +"448020": installDir: Share launch: - config: @@ -221027,7 +216884,7 @@ oslist: linux executable: Share.x86 type: default -'448050': +"448050": installDir: MrNibblesForever launch: - config: @@ -221035,12 +216892,12 @@ executable: Mr Nibbles Forever.exe type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: Mr Nibbles Forever.x86_64 type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: Mr Nibbles Forever.x86 type: none @@ -221048,14 +216905,14 @@ oslist: macos executable: Mr Nibbles Forever.app type: none -'448060': +"448060": installDir: X-17 launch: - config: oslist: windows executable: X-17.exe type: default -'448070': +"448070": installDir: Red Risk launch: - config: @@ -221073,7 +216930,7 @@ description: Launch executable: Red Risk.x86 type: none -'448080': +"448080": installDir: Fibbage XL launch: - config: @@ -221087,27 +216944,27 @@ executable: Fibbage XL.app type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Launcher.sh type: none -'448090': +"448090": installDir: Virtual Rogue launch: - config: oslist: windows executable: game.exe type: none -'448110': +"448110": installDir: So Long Earth launch: - config: oslist: windows executable: SLE.exe type: default -'448130': {} -'448140': +"448130": {} +"448140": installDir: Night light launch: - config: @@ -221120,22 +216977,22 @@ type: default - config: oslist: windows - ownsdlc: '502610' + ownsdlc: "502610" executable: NightLightNightmare.exe type: none - config: oslist: macos - ownsdlc: '502610' + ownsdlc: "502610" executable: NightLightNightmare.app type: none -'448150': +"448150": installDir: Mystica The Ninth Society launch: - config: oslist: windows executable: Mystica Launcher.exe type: none -'448160': +"448160": installDir: Wolflame launch: - config: @@ -221146,34 +217003,34 @@ oslist: linux executable: Wolflame type: default -'448170': +"448170": installDir: Last Dream - World Unknown launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: LastDream_WorldUnknown_32.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: LastDream_WorldUnknown_64.exe type: default - config: oslist: windows - description: 'Last Dream: WU (Older Graphics Cards)' + description: "Last Dream: WU (Older Graphics Cards)" executable: Game.exe type: option1 - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: LastDream_WorldUnknown.bin.i686 type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: LastDream_WorldUnknown.bin.x86_64 @@ -221183,23 +217040,23 @@ description: Launch executable: LastDreamWorldUnknown.app type: default -'448230': +"448230": installDir: Asteroids HD launch: - config: oslist: windows executable: AsteroidsHD.exe type: default -'448240': +"448240": installDir: Hybrid Animals launch: - config: oslist: windows executable: HybridAnimals.exe type: default -'448250': {} -'448260': {} -'448280': +"448250": {} +"448260": {} +"448280": installDir: Job Simulator launch: - config: @@ -221207,7 +217064,7 @@ description: Job Simulator executable: JobSimulator.exe type: vr -'448290': +"448290": installDir: Nefarious launch: - config: @@ -221219,23 +217076,23 @@ executable: Nefarious.app type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: Nefarious.x86_64 type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: Nefarious.x86 type: none -'448300': +"448300": installDir: Logic_Missile launch: - config: oslist: windows executable: Logic_Missile.exe type: default -'448310': +"448310": installDir: Bitardia Cards Memes of 2ch launch: - config: @@ -221248,51 +217105,51 @@ type: default - config: oslist: macos - executable: Bitardia Cards.app\\Contents\\MacOS\\Bitardia Cards + executable: "Bitardia Cards.app\\\\Contents\\\\MacOS\\\\Bitardia Cards" type: default -'448320': +"448320": installDir: GIBZ launch: - config: oslist: windows executable: GIBZ.exe type: default -'448350': {} -'448370': +"448350": {} +"448370": installDir: IS Defense launch: - config: oslist: windows - executable: ISDefense\\Binaries\\Win64\\ISDefense-Win64-Shipping.exe + executable: "ISDefense\\\\Binaries\\\\Win64\\\\ISDefense-Win64-Shipping.exe" type: default - config: - osarch: '64' + osarch: "64" oslist: linux - executable: ISDefense\\Binaries\\Linux\\ISDefense-Linux-Shipping + executable: "ISDefense\\\\Binaries\\\\Linux\\\\ISDefense-Linux-Shipping" type: default - - arguments: '-NoStartupMovie' + - arguments: "-NoStartupMovie" config: oslist: windows description: IS Defense without startup movies - executable: ISDefense\\Binaries\\Win64\\ISDefense-Win64-Shipping.exe + executable: "ISDefense\\\\Binaries\\\\Win64\\\\ISDefense-Win64-Shipping.exe" type: option1 - - arguments: '-NoStartupMovie' + - arguments: "-NoStartupMovie" config: - osarch: '64' + osarch: "64" oslist: linux description: IS Defense without startup movies - executable: ISDefense\\Binaries\\Linux\\ISDefense-Linux-Shipping + executable: "ISDefense\\\\Binaries\\\\Linux\\\\ISDefense-Linux-Shipping" type: option1 -'448380': +"448380": installDir: Escape Close Call launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: Escape32.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: Escape64.exe type: default @@ -221300,28 +217157,28 @@ oslist: macos executable: Escape.app/Contents/MacOS/Escape type: default -'448390': - installDir: Maneki's Curse +"448390": + installDir: "Maneki's Curse" launch: - config: oslist: windows executable: Game.exe type: default -'448400': +"448400": installDir: HiddenObject6-in-1bundle launch: - config: oslist: windows executable: HiddenObject6in1.exe type: default -'448440': +"448440": installDir: Bizarre Earthquake launch: - config: oslist: windows executable: bizarre.exe type: default -'448450': +"448450": installDir: Forever Lost Episode 1 launch: - config: @@ -221330,9 +217187,9 @@ type: default - config: oslist: macos - executable: Forever Lost 1.app\\Contents\\MacOS\\Forever Lost 1 + executable: "Forever Lost 1.app\\\\Contents\\\\MacOS\\\\Forever Lost 1" type: default -'448470': +"448470": installDir: Bacteria launch: - config: @@ -221346,18 +217203,18 @@ executable: Bacteria.app type: none - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: Bacteria.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Bacteria.x86_64 type: none -'448480': +"448480": installDir: Caravanserail launch: - config: @@ -221372,29 +217229,29 @@ oslist: linux executable: Caravanserail_LINUX.x86_64 type: default -'448500': +"448500": installDir: littlewalker launch: - config: oslist: windows executable: littlewalker.exe type: default -'448510': +"448510": installDir: Overcooked launch: - config: oslist: windows executable: Overcooked.exe type: default -'448520': +"448520": installDir: Deranged Rabbits launch: - config: oslist: windows executable: Rabbits.exe type: none -'448530': - installDir: Square's Root +"448530": + installDir: "Square's Root" launch: - config: oslist: windows @@ -221404,7 +217261,7 @@ oslist: macos executable: SquaresRoute.app type: none -'448540': +"448540": installDir: TERROR LAB launch: - config: @@ -221417,9 +217274,9 @@ type: none - config: oslist: macos - executable: TL.app\\Contents\\MacOS\\TL + executable: "TL.app\\\\Contents\\\\MacOS\\\\TL" type: none -'448550': +"448550": installDir: Minimal launch: - config: @@ -221434,7 +217291,7 @@ oslist: linux executable: run.sh type: none -'448560': +"448560": installDir: Mind Games launch: - config: @@ -221449,12 +217306,12 @@ oslist: linux executable: MG.sh type: none -'448570': +"448570": installDir: Origin Of Destiny launch: - executable: game.exe type: default -'448580': +"448580": installDir: Dead End Road launch: - config: @@ -221462,16 +217319,16 @@ executable: Dead End Road.exe type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: DER.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: DER.x86_64 type: none -'448610': +"448610": installDir: Draw Rider launch: - config: @@ -221482,24 +217339,24 @@ oslist: windows executable: Draw Rider.exe type: none -'448620': +"448620": installDir: Rebirth of Island launch: - config: oslist: windows executable: Rebirth of Island.exe type: none -'448630': +"448630": installDir: Rabiez Epidemic launch: - executable: config.exe type: none -'448640': +"448640": installDir: Elements II Hearts of Light launch: - executable: E2.exe type: none -'448650': +"448650": installDir: GEO Master launch: - config: @@ -221510,8 +217367,8 @@ oslist: macos executable: GEO Master.app/Contents/MacOS/GEO Master type: none -'448660': {} -'448670': +"448660": {} +"448670": installDir: Pinball HD Collection launch: - config: @@ -221523,7 +217380,7 @@ description: Linux app launch executable: PinballHDCollection type: default -'448690': +"448690": installDir: Lionessy Story launch: - config: @@ -221534,73 +217391,73 @@ oslist: linux executable: lionessy_story/lionessy_story.sh type: none -'448710': +"448710": installDir: VirZOOM launch: - - arguments: '-steamvr' + - arguments: "-steamvr" config: - osarch: '64' + osarch: "64" oslist: windows executable: virzoom.exe type: vr - config: - osarch: '64' + osarch: "64" oslist: windows executable: virzoom.exe type: othervr -'448720': +"448720": installDir: Puzzle Box launch: - - arguments: '-windowed' + - arguments: "-windowed" config: oslist: windows - executable: win32\\PuzzleBox.exe + executable: "win32\\\\PuzzleBox.exe" type: default - config: oslist: macos - executable: PuzzleBox.app\\Contents\\MacOS\\PuzzleBox + executable: "PuzzleBox.app\\\\Contents\\\\MacOS\\\\PuzzleBox" type: default - - arguments: '-windowed' + - arguments: "-windowed" config: oslist: windows - ownsdlc: '500860' - description: 'Puzzle Box - Level Pack DLC #1' - executable: dlcwin\\PuzzleBox.exe + ownsdlc: "500860" + description: "Puzzle Box - Level Pack DLC #1" + executable: "dlcwin\\\\PuzzleBox.exe" type: option1 - config: oslist: macos - ownsdlc: '500860' - description: 'Puzzle Box - Level Pack DLC #1' - executable: PuzzleBox.app\\Contents\\MacOS\\PuzzleBox + ownsdlc: "500860" + description: "Puzzle Box - Level Pack DLC #1" + executable: "PuzzleBox.app\\\\Contents\\\\MacOS\\\\PuzzleBox" type: option1 -'448730': +"448730": installDir: Imhotep launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: Imhotep.exe type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Imhotep type: none - config: - osarch: '64' + osarch: "64" oslist: macos executable: CrowdSimDesktop.app/Contents/MacOS/CrowdSimDesktop type: none -'448750': +"448750": installDir: Infinity Saga launch: - config: oslist: windows executable: game.exe type: default -'448780': +"448780": installDir: Sixtieth Kilometer launch: - config: @@ -221613,26 +217470,26 @@ type: none - config: oslist: windows - ownsdlc: '611110' + ownsdlc: "611110" description: Eightieth Kilometer - executable: DLC\\80_km.exe + executable: "DLC\\\\80_km.exe" type: none -'448790': +"448790": installDir: Infinity Wings - Scout & Grunt launch: - config: oslist: windows - executable: win32\\infinityWings.exe + executable: "win32\\\\infinityWings.exe" type: default - config: oslist: macos - executable: infinityWings.app\\Contents\\MacOS\\infinityWings + executable: "infinityWings.app\\\\Contents\\\\MacOS\\\\infinityWings" type: default - config: oslist: linux - executable: linux32\\infinityWings.x86 + executable: "linux32\\\\infinityWings.x86" type: default -'448800': +"448800": installDir: Semispheres launch: - config: @@ -221644,17 +217501,17 @@ executable: semispheres.app type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: semispheres.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: semispheres.x86_64 type: none -'448810': - installDir: Torgar's Quest +"448810": + installDir: "Torgar's Quest" launch: - config: oslist: windows @@ -221662,19 +217519,19 @@ type: default - config: oslist: macos - executable: Torgar's Quest.app + executable: "Torgar's Quest.app" type: default -'448820': +"448820": installDir: Planet in the shadows launch: - config: oslist: windows executable: Prog.exe type: none -'448850': +"448850": installDir: Overload launch: - - arguments: '-vrmode none' + - arguments: "-vrmode none" config: oslist: windows executable: Overload.exe @@ -221684,21 +217541,21 @@ executable: Overload.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Overload.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Overload.x86 type: default - - arguments: '-vrmode openvr' + - arguments: "-vrmode openvr" config: oslist: windows executable: Overload.exe type: vr - - arguments: '-vrmode oculus' + - arguments: "-vrmode oculus" config: oslist: windows executable: Overload.exe @@ -221710,34 +217567,34 @@ type: none - config: oslist: windows - ownsdlc: '884970' + ownsdlc: "884970" description: Start Overload Level Editor - executable: OverloadLevelEditor\\OverloadLevelEditor.exe + executable: "OverloadLevelEditor\\\\OverloadLevelEditor.exe" type: none workingdir: OverloadLevelEditor - config: oslist: windows - ownsdlc: '884970' + ownsdlc: "884970" description: Start Overload DMesh Editor - executable: OverloadLevelEditor\\OverloadDMeshEditor.exe + executable: "OverloadLevelEditor\\\\OverloadDMeshEditor.exe" type: none workingdir: OverloadLevelEditor -'448870': +"448870": installDir: CubistryColVol01 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: CubistryColVol01_x86_64.exe type: none -'448880': +"448880": installDir: SpellsnStuff launch: - config: oslist: windows executable: spellsnstuff.exe type: vr -'448910': +"448910": installDir: Axes and Acres launch: - config: @@ -221746,21 +217603,21 @@ type: none - config: oslist: macos - executable: axes.app\\Contents\\MacOS\\axes + executable: "axes.app\\\\Contents\\\\MacOS\\\\axes" type: none - - arguments: '-force-opengl -show-screen-selector' + - arguments: "-force-opengl -show-screen-selector" config: - osarch: '64' + osarch: "64" oslist: linux executable: axes.x86_64 type: none - - arguments: '-force-opengl -show-screen-selector' + - arguments: "-force-opengl -show-screen-selector" config: - osarch: '32' + osarch: "32" oslist: linux executable: axes.x86 type: none -'448930': +"448930": installDir: About Elise launch: - config: @@ -221768,32 +217625,32 @@ description: About Elise executable: AboutElise.exe type: default - - description: 'About Elise: Father Requiem' + - description: "About Elise: Father Requiem" executable: Father Requiem.exe type: none -'448940': {} -'448960': +"448940": {} +"448960": installDir: IHope launch: - config: oslist: windows executable: I_Hope.exe type: default -'448980': +"448980": installDir: The Divergent Series Allegiant VR launch: - config: oslist: windows executable: Allegiant.exe type: vr -'448990': +"448990": installDir: Phlyndir launch: - config: oslist: windows executable: Phlyndir.exe type: none -'449000': +"449000": installDir: Steno Arcade launch: - config: @@ -221805,38 +217662,38 @@ executable: Steno Arcade_OSX32.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Steno Arcade_Linux.32 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Steno Arcade_Linux.64 type: default -'449020': +"449020": installDir: The Bottom of the Well launch: - config: oslist: windows executable: bottomofthewell.exe type: default -'449040': +"449040": installDir: Jesus Christ RPG launch: - config: oslist: windows executable: Game.exe type: default -'449050': +"449050": installDir: RockPaperScissorsChampion launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: RockPaperScissorsChampion.exe type: default -'449060': +"449060": installDir: Cellar launch: - config: @@ -221847,28 +217704,28 @@ oslist: linux executable: runner.x86 type: default -'449070': - installDir: YEARN Tyrant's Conquest +"449070": + installDir: "YEARN Tyrant's Conquest" launch: - config: oslist: windows - executable: YEARN Tyrant's Conquest.exe + executable: "YEARN Tyrant's Conquest.exe" type: default - config: oslist: macos - executable: YEARN Tyrant's Conquest.app + executable: "YEARN Tyrant's Conquest.app" type: default - config: - osarch: '32' + osarch: "32" oslist: linux - executable: YEARN Tyrant's Conquest.x86 + executable: "YEARN Tyrant's Conquest.x86" type: default - config: - osarch: '64' + osarch: "64" oslist: linux - executable: YEARN Tyrant's Conquest.x86_64 + executable: "YEARN Tyrant's Conquest.x86_64" type: default -'449090': +"449090": installDir: Zombie Parking launch: - config: @@ -221883,7 +217740,7 @@ oslist: linux executable: ZombieCpp/Binaries/Linux/ZombieCpp-Linux-Shipping type: none -'449100': +"449100": installDir: City of the Shroud launch: - config: @@ -221898,14 +217755,14 @@ oslist: linux executable: City of the Shroud.x86 type: default -'449120': +"449120": installDir: Nanobots launch: - config: oslist: windows executable: Nanobots.exe type: default -'449140': +"449140": installDir: Istrolid launch: - config: @@ -221923,18 +217780,16 @@ - config: oslist: linux description: Play through istrolid.sh - description_loc: - english: Play through istrolid.sh executable: istrolid.sh type: none -'449150': +"449150": installDir: PataNoir launch: - config: oslist: windows executable: PataNoirWPF.exe type: default -'449160': +"449160": installDir: Land it Rocket launch: - config: @@ -221949,14 +217804,14 @@ oslist: macos executable: Land_it_Rocket.app type: none -'449170': +"449170": installDir: Gnomes Garden 2 launch: - config: oslist: windows executable: Gnomes Garden 2.exe type: default -'449180': +"449180": installDir: Meld launch: - config: @@ -221974,12 +217829,12 @@ description: Launch executable: Meld.x86 type: default -'449200': +"449200": installDir: Calcu-Late launch: - executable: game.exe type: none -'449210': +"449210": installDir: Verdict Guilty launch: - config: @@ -221987,7 +217842,7 @@ description: Launch executable: VerdictGuilty.exe type: none -'449220': +"449220": installDir: BaguncaWin launch: - config: @@ -221995,14 +217850,14 @@ description: Launch executable: BaguncaEspacial.exe type: default -'449240': +"449240": installDir: Stormworm+ launch: - config: oslist: windows executable: stormworm+.exe type: default -'449250': +"449250": installDir: A Little Lily Princess launch: - config: @@ -222017,8 +217872,8 @@ oslist: windows executable: ALittleLilyPrincess.exe type: default -'449280': {} -'449300': +"449280": {} +"449300": installDir: PlanarConquest launch: - config: @@ -222030,23 +217885,23 @@ executable: PlanarConquest.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux - executable: ./PlanarConquest.x86_64 + executable: "./PlanarConquest.x86_64" type: none - config: - osarch: '32' + osarch: "32" oslist: linux - executable: ./PlanarConquest.x86 + executable: "./PlanarConquest.x86" type: none -'449310': +"449310": installDir: Spunk and Moxie launch: - config: oslist: windows executable: SpunkAndMoxie.exe type: default -'449320': +"449320": installDir: DinoEggsRebirth launch: - config: @@ -222061,7 +217916,7 @@ oslist: macos executable: DinoEggsRebirth type: none -'449330': +"449330": installDir: Grid Masters launch: - config: @@ -222069,8 +217924,8 @@ description: Launch executable: GridMasters.exe type: default -'449340': - installDir: Serafina's Crown +"449340": + installDir: "Serafina's Crown" launch: - config: oslist: windows @@ -222084,7 +217939,7 @@ oslist: macos executable: SerafinasCrown.app type: default -'449350': +"449350": installDir: Backstreets of the Mind launch: - config: @@ -222095,7 +217950,7 @@ oslist: macos executable: BotM.app type: none -'449420': +"449420": installDir: Minis Magic World launch: - config: @@ -222106,8 +217961,8 @@ oslist: windows executable: MiniWorld.bat type: default -'449440': {} -'449450': +"449440": {} +"449450": installDir: SPLIT BULLET launch: - config: @@ -222116,9 +217971,9 @@ type: default - config: oslist: windows - ownsdlc: '584810' - description: 'SPLIT BULLET: PAINT' - executable: .\\PAINT\\PaintShooter.exe + ownsdlc: "584810" + description: "SPLIT BULLET: PAINT" + executable: ".\\\\PAINT\\\\PaintShooter.exe" type: option2 - config: oslist: linux @@ -222128,7 +217983,7 @@ english: SPLIT BULLET schinese: 分裂子弹(SPLIT BULLET) tchinese: 分裂子彈(SPLIT BULLET) -'449460': +"449460": installDir: CC The Great War launch: - config: @@ -222139,7 +217994,7 @@ oslist: macos executable: TheGreatWar.app type: none -'449470': +"449470": installDir: Atulos Online launch: - config: @@ -222153,11 +218008,11 @@ description: Fullscreen executable: AtulosOnline.exe type: option2 -'449500': +"449500": installDir: HushHush launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: hushhush.exe type: default @@ -222166,22 +218021,22 @@ executable: HushHush.app/Contents/MacOS/hushhush type: default - config: - osarch: '32' + osarch: "32" oslist: linux - executable: ./hushhush.x86 + executable: "./hushhush.x86" type: default - config: - osarch: '64' + osarch: "64" oslist: linux - executable: ./hushhush.x86_64 + executable: "./hushhush.x86_64" type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: hushhush.exe type: default -'449510': - installDir: The Crow's Eye +"449510": + installDir: "The Crow's Eye" launch: - config: oslist: windows @@ -222195,12 +218050,12 @@ oslist: macos executable: TheCrowsEye.app type: none -'449520': +"449520": installDir: Rush for gold California launch: - executable: gold_rush_california.exe type: none -'449530': +"449530": installDir: GPD launch: - config: @@ -222208,33 +218063,33 @@ executable: nw.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: nw type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: nw type: default -'449540': - installDir: There's Poop In My Soup +"449540": + installDir: "There's Poop In My Soup" launch: - config: oslist: windows executable: PoopInMySoup.exe type: none - config: - osarch: '32' + osarch: "32" oslist: macos executable: TheresPoopInMySoup_32Bit.app type: default - config: - osarch: '64' + osarch: "64" oslist: macos executable: TheresPoopInMySoup_64Bit.app type: default -'449550': +"449550": installDir: Chicken Invaders 2 launch: - config: @@ -222251,45 +218106,45 @@ type: none - config: oslist: windows - ownsdlc: '450100' + ownsdlc: "450100" description: Christmas Edition DLC executable: DLC_xmas/CI2rmXmas.exe type: none workingdir: DLC_xmas - config: oslist: linux - ownsdlc: '450100' + ownsdlc: "450100" description: Christmas Edition DLC executable: DLC_xmas/CI2rmXmas.exe type: none workingdir: DLC_xmas - config: oslist: macos - ownsdlc: '450100' + ownsdlc: "450100" description: Christmas Edition DLC executable: DLC_xmas/Chicken Invaders 2 Xmas Steam.app/Contents/MacOS/CI2rmXmas.exe type: none workingdir: DLC_xmas -'449560': +"449560": installDir: Space Ranger ASK launch: - config: oslist: windows executable: Space_Ranger_ASK.exe type: default -'449610': +"449610": installDir: Monster Boy and the Cursed Kingdom launch: - config: - betakey: '-activate_imgui_for_debug_option' - osarch: '64' + betakey: "-activate_imgui_for_debug_option" + osarch: "64" oslist: windows executable: x64/Launcher64.exe type: default workingdir: x64/ - config: - betakey: '-activate_imgui_for_debug_option' - osarch: '32' + betakey: "-activate_imgui_for_debug_option" + osarch: "32" oslist: windows executable: x86/Launcher.exe type: default @@ -222305,8 +218160,8 @@ russian: Мальчик-монстр и Проклятое Королевство schinese: "怪物男孩和中咒王国\t" spanish: Monster Boy y el Reino Maldito -'449630': {} -'449640': +"449630": {} +"449640": installDir: Super Zombie Squad launch: - config: @@ -222325,21 +218180,21 @@ oslist: windows executable: RunVive.bat type: vr -'449680': +"449680": installDir: samoliotikthegame launch: - config: oslist: windows executable: nw.exe type: default -'449690': +"449690": installDir: Fatal Fight launch: - config: oslist: windows executable: Fatal Fight.exe type: none -'449700': +"449700": installDir: Ariel launch: - config: @@ -222350,7 +218205,7 @@ oslist: macos executable: Ariel.app type: default -'449710': +"449710": installDir: REDCON launch: - config: @@ -222358,16 +218213,16 @@ executable: Redcon.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Redcon type: default - config: - osarch: '64' + osarch: "64" oslist: macos - executable: REDCON.app\\Contents\\MacOS\\REDCON + executable: "REDCON.app\\\\Contents\\\\MacOS\\\\REDCON" type: default -'449730': +"449730": installDir: Ahnayro launch: - config: @@ -222378,7 +218233,7 @@ oslist: macos executable: ahnayro.app type: default -'449760': +"449760": installDir: Tenrow launch: - config: @@ -222390,64 +218245,64 @@ executable: Tenrow.app type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: Tenrow.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: Tenrow.x86_64 type: none -'449770': +"449770": installDir: Legend of Moros launch: - config: oslist: windows executable: Game.exe type: default -'449780': +"449780": installDir: Jacob launch: - config: oslist: windows executable: Jacob.exe type: none -'449800': +"449800": installDir: AoT launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: AoT.exe type: default nameLocalized: tchinese: 進擊的巨人 -'449820': +"449820": installDir: Daughter of Shadows An SCP Breach Event launch: - config: oslist: windows executable: DoS.exe type: none -'449940': - installDir: '! That Bastard Is Trying To Steal Our Gold !' +"449940": + installDir: "! That Bastard Is Trying To Steal Our Gold !" launch: - config: oslist: windows executable: TDTTSOG.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: TDTTSOGLinux.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: TDTTSOGLinux.x86_64 type: default -'449960': +"449960": installDir: Return 2 Games launch: - config: @@ -222458,23 +218313,23 @@ oslist: macos executable: Return 2 Games.app type: default -'4500': +"4500": installDir: STALKER Shadow of Chernobyl launch: - - executable: bin\\XR_3DA.exe -'45000': + - executable: "bin\\\\XR_3DA.exe" +"45000": installDir: SolSurvivor launch: - executable: SolSurvivor.exe -'450020': +"450020": installDir: DAMAGE CONTROL launch: - config: oslist: windows executable: damageControl.exe type: default -'450030': {} -'450040': +"450030": {} +"450040": installDir: Stealth Labyrinth launch: - config: @@ -222487,25 +218342,25 @@ description: Launch without VR executable: StealthLabyrinth.exe type: default -'450050': +"450050": installDir: Yon Paradox launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: YonParadox.exe type: none - config: - osarch: '64' + osarch: "64" oslist: windows executable: YonParadox.exe type: vr - config: - osarch: '64' + osarch: "64" oslist: windows executable: YonParadox.exe type: othervr -'450060': +"450060": installDir: Insane Decay of Mind launch: - config: @@ -222520,37 +218375,37 @@ oslist: windows executable: IDM.exe type: vr -'450110': +"450110": installDir: Amigdala launch: - config: oslist: windows executable: Amigdala.exe type: othervr -'450120': +"450120": installDir: Capitalism Plus launch: - - arguments: '-conf dosboxCapPlus.conf -conf dosboxCapPlus_single.conf -noconsole' + - arguments: "-conf dosboxCapPlus.conf -conf dosboxCapPlus_single.conf -noconsole" config: oslist: windows - executable: DOSBOX\\DOSBox.exe + executable: "DOSBOX\\\\DOSBox.exe" type: default - workingdir: DOSBOX\\ -'450140': + workingdir: "DOSBOX\\\\" +"450140": installDir: Seven Kingdoms Ancient Adversaries launch: - config: oslist: windows executable: 7k.exe type: default -'450150': - installDir: Campgrounds The Endorus Expedition Collector's Edition +"450150": + installDir: "Campgrounds The Endorus Expedition Collector's Edition" launch: - config: oslist: windows executable: Campgrounds_The EndorusExpeditionCE.exe type: none -'450170': +"450170": installDir: BOOR launch: - config: @@ -222563,29 +218418,29 @@ type: default - config: oslist: macos - executable: BOOR.app\\Contents\\MacOS\\Mac_Runner + executable: "BOOR.app\\\\Contents\\\\MacOS\\\\Mac_Runner" type: default -'450190': +"450190": installDir: Maze Lord launch: - config: oslist: windows executable: MazeLord.exe type: none - - arguments: '-force-opengl' + - arguments: "-force-opengl" config: oslist: linux executable: MazeLord.x86 type: none -'450240': {} -'450250': +"450240": {} +"450250": installDir: Aegis of Earth Protonovus Assault launch: - config: oslist: windows executable: release.exe type: default -'450290': +"450290": installDir: Assault on Arnhem launch: - config: @@ -222596,22 +218451,22 @@ oslist: macos executable: AssaultOnArnhem.app type: none -'450390': +"450390": installDir: The Lab launch: - - arguments: '-popupwindow' + - arguments: "-popupwindow" config: oslist: windows executable: TheLab/win64/TheLab.exe type: vr -'450440': +"450440": installDir: Creepy Castle launch: - config: oslist: windows executable: 450440.exe type: default -'450500': +"450500": installDir: Ace of Seafood launch: - config: @@ -222619,56 +218474,56 @@ description: Launch executable: AceOfSeafood.exe type: none -'450540': +"450540": installDir: H3VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: h3vr.exe type: vr -'450570': +"450570": installDir: Roadworks Simulator launch: - config: oslist: windows executable: roadworks_win.exe type: default -'450590': +"450590": installDir: Safety Driving Simulator Car launch: - config: oslist: windows executable: SDSAuto.exe type: default -'450600': +"450600": installDir: Safety Driving Simulator Motorbike launch: - config: oslist: windows executable: SDSMoto.exe type: default -'450630': +"450630": installDir: Woeful Woebots launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: WW.exe type: vr -'450650': +"450650": installDir: Polyology launch: - executable: Polyology.exe type: default -'450670': +"450670": installDir: TTR World Tour launch: - config: oslist: windows executable: TTRWorldTour.exe type: default -'450700': +"450700": installDir: The Spatials Galactology launch: - config: @@ -222683,7 +218538,7 @@ oslist: linux executable: run-thespatials.sh type: none -'450740': +"450740": installDir: Mind Unleashed launch: - config: @@ -222701,7 +218556,7 @@ description: Launch with HTC Vive executable: Mind Unleashed.exe type: vr -'450760': +"450760": installDir: GraveRun launch: - config: @@ -222713,47 +218568,47 @@ description: Workshop uploader executable: ModUploader.exe type: none -'450840': - installDir: Robert Mensah's Sins Of The Father +"450840": + installDir: "Robert Mensah's Sins Of The Father" launch: - config: oslist: windows executable: Sins Of The Father.exe type: default -'450850': +"450850": installDir: SC Jogos launch: - config: oslist: windows executable: Cube Land Arena/Cube Land Arena.exe type: default -'450860': +"450860": installDir: SC Jogos launch: - config: oslist: windows executable: Andarilho/Andarilho.exe type: default - - arguments: '-force-d3d9' + - arguments: "-force-d3d9" config: oslist: windows description: Andarilho (DX9) executable: Andarilho/Andarilho.exe type: none - - arguments: '-force-glse' + - arguments: "-force-glse" config: oslist: windows description: Andarilho (OpenGL SE) executable: Andarilho/Andarilho.exe type: none -'450950': +"450950": installDir: Danmaku Unlimited 3 launch: - config: oslist: windows executable: DU3.exe type: default -'45100': +"45100": installDir: Secret of the Magic Crystal launch: - config: @@ -222765,7 +218620,7 @@ - config: oslist: linux executable: Secret of the Magic Crystal -'451000': +"451000": installDir: Ember Kaboom launch: - config: @@ -222776,15 +218631,15 @@ oslist: macos executable: emberkaboom.app type: none -'451010': +"451010": installDir: Kittypocalypse launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Kittypocalypse.exe type: vr -'451020': +"451020": installDir: Battle Chasers Nightwar launch: - config: @@ -222792,38 +218647,38 @@ executable: BC.exe type: default - config: - osarch: '64' + osarch: "64" oslist: macos executable: BC.app/Contents/MacOS/BC type: default - - arguments: '-force-d3d9' + - arguments: "-force-d3d9" config: - osarch: '64' + osarch: "64" oslist: windows - description: 'Battle Chasers: Nightwar in Safe Mode (DX 9)' + description: "Battle Chasers: Nightwar in Safe Mode (DX 9)" executable: BC.exe type: option1 - config: oslist: linux executable: BC type: default -'451060': +"451060": installDir: Wincars Racer launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: WincarsRacer.exe type: default -'451080': +"451080": installDir: Giant Cop Justice Above All launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: GiantCop.exe type: vr -'451100': +"451100": installDir: Cubikolor launch: - config: @@ -222836,78 +218691,78 @@ description: Launch Cubikolor executable: cubikolor.app type: none - - arguments: '-force-d3d9 -screen-quality Simple' + - arguments: "-force-d3d9 -screen-quality Simple" config: oslist: windows description: in safe mode (dx9) executable: cubikolor.exe type: option1 -'451130': +"451130": installDir: Khan Absolute Power launch: - config: oslist: windows executable: khanlauncher.exe type: default -'451180': +"451180": installDir: Metris Soccer launch: - config: oslist: windows executable: Build.exe type: default -'451200': +"451200": installDir: Candlelight launch: - executable: Candlelight-PC.exe type: default -'451210': +"451210": installDir: Rocket Shooter launch: - config: oslist: windows executable: ShooterGame.exe type: none -'451230': +"451230": installDir: Wartune launch: - config: oslist: windows executable: Wartune.exe type: default -'451310': +"451310": installDir: A Fold Apart launch: - config: oslist: windows executable: A Fold Apart.exe type: default -'451340': +"451340": installDir: Gold Rush The Game launch: - config: oslist: windows executable: GoldRushTheGame.exe type: default - - arguments: '-screen-quality Low -screen-fullscreen 0 -screen-height 600 -screen-width 800 ' + - arguments: "-screen-quality Low -screen-fullscreen 0 -screen-height 600 -screen-width 800 " config: oslist: windows description: SAFE MODE executable: GoldRushTheGame.exe type: option1 -'451350': +"451350": installDir: Tropical Fish Shop 2 launch: - executable: tfs2.exe type: none -'451360': +"451360": installDir: FenrisulfrPuzzle launch: - config: oslist: windows executable: loading.exe type: default -'451400': +"451400": installDir: Meridian - Squad 22 launch: - config: @@ -222915,22 +218770,22 @@ description: Launch executable: Squad22.exe type: none -'451520': +"451520": installDir: theBlu launch: - config: oslist: windows executable: theblu.exe type: vr -'451540': +"451540": installDir: Snakes on an Extradimensional Plane launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Snakes.exe type: vr -'451570': +"451570": installDir: Demetrios launch: - config: @@ -222939,21 +218794,21 @@ type: default - config: oslist: macos - executable: Demetrios.app\\Contents\\MacOS\\Mac_Runner + executable: "Demetrios.app\\\\Contents\\\\MacOS\\\\Mac_Runner" type: default - config: oslist: linux executable: run.sh type: default -'451590': +"451590": installDir: FaultyTowersZombies launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: FTZ_vive.exe type: vr -'451600': +"451600": installDir: CounterAttack launch: - config: @@ -222968,15 +218823,15 @@ oslist: linux executable: CounterAttack.x86_64 type: default -'451630': +"451630": installDir: Brute launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Brute.exe type: default -'451640': +"451640": installDir: C14Dating launch: - config: @@ -222991,30 +218846,30 @@ oslist: linux executable: C14Dating.sh type: none -'451660': +"451660": installDir: Trucker launch: - config: oslist: windows executable: Trucker.exe type: none -'451670': +"451670": installDir: War Birds WW2 Air strike 1942 launch: - - arguments: '-windowed' + - arguments: "-windowed" config: oslist: windows - executable: win\\wb game.exe + executable: "win\\\\wb game.exe" type: default - config: oslist: macos - executable: wb game.app\\Contents\\MacOS\\wb game + executable: "wb game.app\\\\Contents\\\\MacOS\\\\wb game" type: default - config: oslist: linux - executable: Linux\\wb game.x86 + executable: "Linux\\\\wb game.x86" type: default -'451700': +"451700": installDir: Secrets of Deep Earth Shrine launch: - config: @@ -223025,7 +218880,7 @@ oslist: macos executable: Digger.app type: none -'451760': +"451760": installDir: Highway Blossoms launch: - config: @@ -223040,14 +218895,14 @@ oslist: linux executable: HighwayBlossoms.sh type: default -'451780': +"451780": installDir: Trillion launch: - config: oslist: windows executable: TrillionWin.exe type: none -'451800': +"451800": installDir: End of the Mine launch: - config: @@ -223058,8 +218913,8 @@ oslist: macos executable: End of the Mine.app type: default -'451830': {} -'451840': +"451830": {} +"451840": installDir: Out of Ammo launch: - config: @@ -223067,64 +218922,64 @@ description: launch executable: Outofammo.exe type: vr -'451870': +"451870": installDir: Nighttime Terror Dessert Defender launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: NighttimeTerror_DessertDefender.exe type: vr -'451880': +"451880": installDir: Catch a Falling Star launch: - executable: FStar.exe type: none -'451900': +"451900": installDir: WizardCraft launch: - executable: WizardCraft.exe type: none -'451920': +"451920": installDir: Thorne launch: - description: Launch executable: game.exe type: none -'451930': +"451930": installDir: qrth-phyl launch: - config: oslist: windows executable: qrth.exe type: default -'451940': +"451940": installDir: Return Home launch: - config: oslist: windows executable: ReturnHome.exe type: default -'451950': +"451950": installDir: Eisenbahn Now launch: - config: oslist: windows executable: EisenbahnNow.exe type: default -'451960': +"451960": installDir: The Secret of Pineview Forest launch: - config: oslist: windows executable: TheSecretOfPineviewForest.exe type: default -'451980': +"451980": installDir: The Body VR launch: - executable: TheBodyVR.exe type: vr -'451990': +"451990": installDir: Cranks and Goggles launch: - config: @@ -223135,13 +218990,13 @@ oslist: macos executable: CranksAndGoggles.app type: default -'4520': +"4520": installDir: Full Spectrum Warrior launch: - executable: Launcher.exe - description: Register your game with THQ executable: help.htm -'452000': +"452000": installDir: Military Life Tank Simulator launch: - config: @@ -223151,28 +219006,28 @@ - config: oslist: windows description: PhysX 9.09.0408 - executable: external\\PhysX_9.09.0408_SystemSoftware.exe + executable: "external\\\\PhysX_9.09.0408_SystemSoftware.exe" type: none -'452060': +"452060": installDir: Caveblazers launch: - config: oslist: windows executable: game.exe type: default -'452120': +"452120": installDir: Midvinter launch: - executable: MidvinterSteam.exe type: none -'452180': +"452180": installDir: One Clone Left launch: - config: oslist: windows executable: OCLclient.exe type: default -'452230': +"452230": installDir: Spellstone launch: - config: @@ -223181,41 +219036,37 @@ type: default - config: oslist: macos - executable: Spellstone.app\\Contents\\MacOS\\Spellstone + executable: "Spellstone.app\\\\Contents\\\\MacOS\\\\Spellstone" type: default - - arguments: '-debug_steamapi' + - arguments: "-debug_steamapi" config: betakey: alpha oslist: windows description: Spellstone Dev - description_loc: - english: Spellstone Dev - executable: Dev\\dev\\Spellstone_Dev.exe + executable: "Dev\\\\dev\\\\Spellstone_Dev.exe" type: option2 - - arguments: '-debug_steamapi' + - arguments: "-debug_steamapi" config: betakey: alpha oslist: macos description: Spellstone Dev - description_loc: - english: Spellstone Dev - executable: Dev\\dev\\Spellstone_Dev.app\\Contents\\MacOS\\Spellstone_Dev + executable: "Dev\\\\dev\\\\Spellstone_Dev.app\\\\Contents\\\\MacOS\\\\Spellstone_Dev" type: option2 -'452240': +"452240": installDir: Dawn of the Robot Empire launch: - config: betakey: private - osarch: '64' + osarch: "64" oslist: windows executable: Dawn of the Robot Empire.exe type: vr - config: - osarch: '64' + osarch: "64" oslist: windows executable: Dawn of the Robot Empire.exe type: vr -'452320': +"452320": installDir: Party Saboteurs launch: - config: @@ -223230,14 +219081,14 @@ oslist: linux executable: Party Saboteurs.x86 type: default -'452340': +"452340": installDir: Ians Eyes launch: - config: oslist: windows executable: game.exe type: default -'452410': +"452410": installDir: Damsel launch: - config: @@ -223252,7 +219103,7 @@ oslist: macos executable: Damsel.app type: default -'452420': +"452420": installDir: Koihime Enbu launch: - executable: koihime_enbu.exe @@ -223262,42 +219113,42 @@ description: Key configuration tool for DirectInput Game Controller executable: AsignDInput.exe type: none -'452440': +"452440": installDir: Flowers -Le volume sur printemps- launch: - config: oslist: windows executable: FLOWERS.exe type: default -'452450': +"452450": installDir: Rising Islands launch: - config: oslist: windows executable: RisingIslands.exe type: none -'452490': +"452490": installDir: The Cubicle launch: - config: oslist: windows executable: The Cubicle.exe type: vr -'452510': +"452510": installDir: UNDER NIGHT IN-BIRTH Exe Late launch: - config: oslist: windows executable: UNIEL.exe type: none -'452540': +"452540": installDir: Skylar & Plux Adventure On Clover Island launch: - config: oslist: windows - executable: CloverIsland\\Binaries\\Win64\\CloverIsland-Win64-Shipping.exe + executable: "CloverIsland\\\\Binaries\\\\Win64\\\\CloverIsland-Win64-Shipping.exe" type: none -'452570': +"452570": installDir: Battle Chef Brigade launch: - config: @@ -223312,39 +219163,39 @@ oslist: linux executable: BattleChefBrigade.x86_64 type: none -'452640': +"452640": installDir: Back to Dinosaur Island Part 2 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Bin64/DinoIsland2.exe type: default -'452650': +"452650": installDir: The Rebel launch: - config: oslist: windows executable: rebel.exe type: default -'452710': +"452710": installDir: Realities launch: - - arguments: '-fullscreen' + - arguments: "-fullscreen" config: - osarch: '64' + osarch: "64" oslist: windows description: HTC Vive executable: rioBeta.exe type: vr - - arguments: '-fullscreen' + - arguments: "-fullscreen" config: - osarch: '64' + osarch: "64" oslist: windows description: Oculus Rift executable: rioBeta.exe type: othervr -'452780': +"452780": installDir: RuneScape Idle Adventures launch: - config: @@ -223355,15 +219206,15 @@ oslist: macos executable: idle-adventures.app type: none -'452860': +"452860": installDir: MadBullets launch: - config: oslist: windows - executable: bin_x86\\Launcher.exe + executable: "bin_x86\\\\Launcher.exe" type: none workingdir: bin_x86 -'452920': +"452920": installDir: Laser Disco Defenders launch: - config: @@ -223374,7 +219225,7 @@ oslist: macos executable: Laser Disco Defenders.app type: default -'452930': +"452930": installDir: Insane launch: - config: @@ -223385,39 +219236,39 @@ oslist: macos executable: Insane.app type: default -'452970': +"452970": installDir: Asemblance launch: - config: oslist: windows executable: HoloRoom9code.exe type: default -'4530': +"4530": installDir: Full Spectrum Warrior Ten Hammers launch: - executable: fsw2.exe - description: Register your game with THQ executable: help.htm -'45300': +"45300": installDir: Wings of Prey launch: - description: Launch executable: launcher.exe -'453000': +"453000": installDir: Wave launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: LaunchTheWaveVR.bat type: vr - config: - osarch: '64' + osarch: "64" oslist: windows description: on Desktop executable: LaunchTheWaveVR_SteamDesktop.bat type: option2 -'453030': +"453030": installDir: The Fifth Expedition launch: - config: @@ -223428,7 +219279,7 @@ oslist: linux executable: TheFifthExpedition.x86 type: default -'453090': +"453090": installDir: Parkitect launch: - config: @@ -223437,25 +219288,25 @@ type: default - config: oslist: macos - executable: Parkitect.app\\Contents\\MacOS\\Parkitect + executable: "Parkitect.app\\\\Contents\\\\MacOS\\\\Parkitect" type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Parkitect.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Parkitect.x86_64 type: default - - arguments: '-force-glcore' + - arguments: "-force-glcore" config: oslist: linux description: with OpenGL executable: Parkitect.x86_64 type: option1 -'453100': +"453100": installDir: Frederic Resurrection of Music Remastered launch: - config: @@ -223470,22 +219321,22 @@ oslist: linux executable: Frederic.x86 type: default -'453130': +"453130": installDir: Powargrid launch: - config: oslist: windows executable: Powargrid.exe type: none - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" config: - osarch: '32' + osarch: "32" oslist: linux executable: Powargrid.x86 type: default - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" config: - osarch: '64' + osarch: "64" oslist: linux executable: Powargrid.x86_64 type: default @@ -223493,7 +219344,7 @@ oslist: macos executable: Powargrid.app type: none -'453220': +"453220": installDir: BrambleLash launch: - config: @@ -223504,14 +219355,14 @@ oslist: macos executable: BrambleLash.app type: default -'453270': +"453270": installDir: Madness Cubed launch: - config: oslist: windows executable: build.exe type: none -'453290': +"453290": installDir: Awareness Rooms launch: - config: @@ -223522,28 +219373,28 @@ oslist: macos executable: AwarenessRooms.app type: none -'453300': +"453300": installDir: A Healer Only Lives Twice launch: - config: oslist: windows executable: AHealerOnlyLivesTwice.exe type: default -'453310': +"453310": installDir: Blackwood Crossing launch: - config: oslist: windows executable: Blackwood Crossing.exe type: default -'453320': - installDir: Vairon's Wrath +"453320": + installDir: "Vairon's Wrath" launch: - - arguments: '-gl' + - arguments: "-gl" config: oslist: windows executable: Game.exe -'453340': +"453340": installDir: Hustle Cat launch: - config: @@ -223552,38 +219403,38 @@ type: default - config: oslist: macos - executable: Hustle Cat.app\\Contents\\MacOS\\nwjs + executable: "Hustle Cat.app\\\\Contents\\\\MacOS\\\\nwjs" type: default -'453350': +"453350": installDir: Vaccine War launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: VaccineWar_steam1\\VaccineWar.exe + executable: "VaccineWar_steam1\\\\VaccineWar.exe" type: default - config: - osarch: '64' + osarch: "64" oslist: macos - executable: VaccineWar.app\\Contents\\MacOS\\VaccineWar + executable: "VaccineWar.app\\\\Contents\\\\MacOS\\\\VaccineWar" type: default - config: oslist: linux executable: VaccineWar.x86 type: default -'453390': - installDir: Dark Parables The Little Mermaid and the Purple Tide Collector's Edition +"453390": + installDir: "Dark Parables The Little Mermaid and the Purple Tide Collector's Edition" launch: - executable: DarkParables_TLMATPT_CE.exe type: none -'453470': +"453470": installDir: Hacked launch: - config: oslist: windows executable: Hacked.exe type: default -'453480': +"453480": installDir: Shadowverse launch: - config: @@ -223592,9 +219443,9 @@ type: default - config: oslist: macos - executable: Shadowverse.app\\Contents\\MacOS\\Shadowverse + executable: "Shadowverse.app\\\\Contents\\\\MacOS\\\\Shadowverse" type: default -'453500': +"453500": installDir: Frioone launch: - config: @@ -223602,14 +219453,14 @@ description: Launch executable: frioone.exe type: default -'453510': +"453510": installDir: One Man Is Not No Man launch: - config: oslist: windows executable: OMINNM.exe type: default -'453650': +"453650": installDir: MarbleVoid launch: - config: @@ -223617,37 +219468,37 @@ executable: MarbleVoid.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: MarbleVoid.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: MarbleVoid.x86_64 type: default -'453660': +"453660": installDir: Rogue Contracts Syndicate launch: - config: oslist: windows executable: RC Syndicate.exe type: default -'453670': +"453670": installDir: The Lost Souls launch: - config: oslist: windows executable: The Lost Souls.exe type: none -'453680': +"453680": installDir: MiniGolf Mania launch: - config: oslist: windows executable: MiniGolfMania.exe type: default -'453690': +"453690": installDir: Dark Quest 2 launch: - config: @@ -223656,27 +219507,27 @@ type: default - config: oslist: macos - executable: DQ2MAC.app\\Contents\\MacOS\\DQ2MAC + executable: "DQ2MAC.app\\\\Contents\\\\MacOS\\\\DQ2MAC" type: default -'453700': +"453700": installDir: prog_1 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: prog-1.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: prog-1.exe type: default - config: - osarch: '64' + osarch: "64" oslist: macos executable: prog-1.app/Contents/MacOS/nwjs type: default -'453710': +"453710": installDir: TableTop Soccer launch: - config: @@ -223685,19 +219536,19 @@ type: default - config: oslist: macos - executable: TableTopSoccer.app\\Contents\\MacOS\\TableTopSoccer + executable: "TableTopSoccer.app\\\\Contents\\\\MacOS\\\\TableTopSoccer" type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: TableTopSoccer.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: TableTopSoccer.x86_64 type: default -'453720': +"453720": installDir: Last Will launch: - config: @@ -223705,7 +219556,7 @@ executable: lastwill.exe type: default - config: - osarch: '64' + osarch: "64" oslist: macos executable: LastWill.app type: default @@ -223713,7 +219564,7 @@ oslist: linux executable: lastwill.x86_64 type: default -'453730': +"453730": installDir: Borstal launch: - config: @@ -223732,43 +219583,43 @@ description: Launch executable: Borstal type: default -'453740': +"453740": installDir: Spaceman Sparkles 3 launch: - config: - osarch: '64' + osarch: "64" oslist: windows - description: '[NEW] SP3RKLES [GAMEPAD]' + description: "[NEW] SP3RKLES [GAMEPAD]" executable: Spaceman_Sparkles_3_5.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux - description: '[NEW] SP3RKLES [GAMEPAD]' + description: "[NEW] SP3RKLES [GAMEPAD]" executable: Spaceman_Sparkles_3_5.x86_64 type: default - config: - osarch: '64' + osarch: "64" oslist: linux - description: '[OLD] SS3D [M+KB]' + description: "[OLD] SS3D [M+KB]" executable: Spaceman_Sparkles_3Dv1.1.x86_64 type: none - config: oslist: windows - description: '[OLD] SS3D [M+KB]' + description: "[OLD] SS3D [M+KB]" executable: Spaceman Sparkles 3D.exe type: none - config: - osarch: '32' + osarch: "32" oslist: linux - description: '[OLD] SS3D [M+KB]' + description: "[OLD] SS3D [M+KB]" executable: Spaceman_Sparkles_3Dv1.1.x86 type: none -'453750': +"453750": installDir: Tyto Ecology launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TytoEcology.exe type: default @@ -223776,7 +219627,7 @@ oslist: macos executable: TytoEcology.app type: none -'453770': +"453770": installDir: Forgotten Tales Day of the Dead launch: - config: @@ -223791,7 +219642,7 @@ oslist: linux executable: Forgotten Tales - Day of the Dead.x86_64 type: default -'453780': +"453780": installDir: Secrets of Magic The Book of Spells launch: - config: @@ -223799,12 +219650,12 @@ executable: Secrets of Magic - The Book of Spells.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Secrets of Magic - The Book of Spells.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: Secrets of Magic - The Book of Spells.x86_64 type: none @@ -223812,20 +219663,20 @@ oslist: macos executable: Secrets of Magic - The Book of Spells.app type: none -'453790': - installDir: Candice DeBébé's Incredibly Trick Lifestyle +"453790": + installDir: "Candice DeBébé's Incredibly Trick Lifestyle" launch: - config: oslist: windows executable: Candice.exe type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: Candice.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: Candice.x86_64 type: none @@ -223833,36 +219684,36 @@ oslist: macos executable: Candice.app type: none - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" config: oslist: windows executable: Candice.exe type: config - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" config: oslist: macos executable: Candice.app type: config - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" config: - osarch: '64' + osarch: "64" oslist: linux executable: Candice.x86_64 type: config - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" config: - osarch: '32' + osarch: "32" oslist: linux executable: Candice.x86 type: config -'453810': +"453810": installDir: Blasting Agent Ultimate Edition launch: - config: oslist: windows executable: BlastingAgent.exe type: default -'453820': +"453820": installDir: Hero Quest Tower Conflict launch: - config: @@ -223877,7 +219728,7 @@ oslist: linux executable: HeroQuestTowerConflict_linux type: none -'453830': +"453830": installDir: Innoquous 5 launch: - config: @@ -223895,7 +219746,7 @@ description: Linux & SteamOS executable: game.exe type: none -'453850': +"453850": installDir: Dear RED - Extended launch: - config: @@ -223903,8 +219754,8 @@ description: Launch executable: Game.exe type: none -'453860': {} -'453870': +"453860": {} +"453870": installDir: Quantum Chess launch: - config: @@ -223924,8 +219775,6 @@ betakey: test oslist: windows description: Play Quantum Chess Test Build - description_loc: - english: Play Quantum Chess Test Build executable: alpha/Quantum Chess - Windows.exe type: none - config: @@ -223939,7 +219788,7 @@ oslist: linux executable: alpha/Quantum Chess - Linux.x86_64 type: none -'453880': +"453880": installDir: Ninja Outbreak launch: - config: @@ -223950,24 +219799,24 @@ oslist: macos executable: NinjaOutbreak.app type: none -'453890': +"453890": installDir: Black Rose launch: - config: oslist: windows executable: Black Rose.exe type: default -'453900': {} -'453910': +"453900": {} +"453910": installDir: loveisdead launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: loveisdead.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: loveisdead.exe type: default @@ -223975,65 +219824,65 @@ oslist: macos executable: loveisdead.app type: default -'453950': +"453950": installDir: To Ash launch: - config: oslist: windows description: Main Mode - executable: To Ash FULL MODE\\Game.exe + executable: "To Ash FULL MODE\\\\Game.exe" type: default - config: oslist: windows description: Adventure Mode - executable: To Ash ADVENTURE MODE\\Game.exe + executable: "To Ash ADVENTURE MODE\\\\Game.exe" type: none - config: oslist: macos description: MAC Full Mode - executable: To Ash FULL MODE\\Game.app + executable: "To Ash FULL MODE\\\\Game.app" type: none - config: oslist: macos description: Adventure Mode - executable: To Ash ADVENTURE MODE\\Game.app + executable: "To Ash ADVENTURE MODE\\\\Game.app" type: none - config: oslist: linux - executable: To Ash FULL MODE\\Game + executable: "To Ash FULL MODE\\\\Game" type: default - config: oslist: linux - executable: To Ash ADVENTURE MODE\\Game + executable: "To Ash ADVENTURE MODE\\\\Game" type: none -'453960': +"453960": installDir: Envy the Dead launch: - executable: Envy The Dead.exe type: default -'453980': +"453980": installDir: Airstrike HD launch: - config: oslist: windows executable: Airstrike_HD.exe type: editor -'453990': - installDir: Mibibli's Quest +"453990": + installDir: "Mibibli's Quest" launch: - config: oslist: windows - executable: Mibibli's Quest.exe + executable: "Mibibli's Quest.exe" type: none - config: oslist: macos - executable: Mibibli's Quest.app + executable: "Mibibli's Quest.app" type: none -'4540': +"4540": installDir: Titan Quest launch: - executable: Titan Quest.exe -'45400': +"45400": installDir: Fortix launch: - config: @@ -224042,14 +219891,14 @@ - config: oslist: macos executable: Fortix -'454000': {} -'454030': +"454000": {} +"454030": installDir: Link launch: - executable: game.exe type: none -'454040': {} -'454060': +"454040": {} +"454060": installDir: Blueprint Tycoon launch: - config: @@ -224067,25 +219916,25 @@ description: Play Blueprint Tycoon executable: BlueprintTycoon.x86 type: default -'454070': +"454070": installDir: Boundel launch: - config: oslist: windows executable: Boundel.exe type: default -'454080': +"454080": installDir: Burst launch: - config: oslist: windows executable: Burst.exe type: default -'45410': +"45410": installDir: Ignite launch: - executable: Ignite.exe -'454100': +"454100": installDir: Dungeon Escape launch: - config: @@ -224100,35 +219949,35 @@ oslist: macos executable: Dungeon Escape.app type: default -'454120': +"454120": installDir: Starbase launch: - config: oslist: windows executable: starbase.exe type: none -'454130': +"454130": installDir: Nil-Ninjahtic launch: - config: oslist: windows executable: Nil-Ninjahtic.exe type: none -'454140': +"454140": installDir: First Person Tennis - The Real Tennis Simulator launch: - executable: First Person Tennis.exe type: vr -'454150': {} -'454160': +"454150": {} +"454160": installDir: Dark Fear launch: - config: oslist: windows executable: Dark Fear.exe type: default -'454170': - installDir: XorceD - Sashiro's Laedrum +"454170": + installDir: "XorceD - Sashiro's Laedrum" launch: - config: oslist: windows @@ -224140,9 +219989,9 @@ type: none - config: oslist: macos - executable: SashiroLaedrum.app\\Contents\\MacOS\\SashiroLaedrum + executable: "SashiroLaedrum.app\\\\Contents\\\\MacOS\\\\SashiroLaedrum" type: none -'454180': +"454180": installDir: CrazyCars3D launch: - config: @@ -224150,12 +219999,12 @@ executable: CC3D.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: CC3D.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: CC3D.x86_64 type: default @@ -224163,7 +220012,7 @@ oslist: macos executable: CC3D.app type: default -'454190': +"454190": installDir: Cubicolor launch: - config: @@ -224180,16 +220029,16 @@ executable: godot.x11.tools.64 type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: cubicolor.win64.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: cubicolor.win32.exe type: default -'45420': +"45420": installDir: LandIt launch: - config: @@ -224198,14 +220047,14 @@ type: default - config: oslist: macos - executable: LandIt.app\\Contents\\MacOS\\LandIt + executable: "LandIt.app\\\\Contents\\\\MacOS\\\\LandIt" type: default -'454200': +"454200": installDir: Neon Hardcorps launch: - executable: game.exe type: none -'454220': +"454220": installDir: TheTemporalInvasion launch: - config: @@ -224216,47 +220065,47 @@ oslist: macos executable: The Temporal Invasion.app type: default - - arguments: '-popupwindow' + - arguments: "-popupwindow" config: oslist: windows description: The Temporal Invasion (Borderless Window) executable: The Temporal Invasion.exe type: option1 - config: - osarch: '64' + osarch: "64" oslist: linux executable: The Temporal Invasion type: default -'454230': +"454230": installDir: Sacred Line Genesis Remix launch: - config: oslist: windows executable: SLG_Remix.exe type: default -'454240': +"454240": installDir: A Tofu Tail launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: A Tofu Tail.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: A Tofu Tail.exe type: default - config: oslist: macos - executable: A Tofu Tail.app\\Contents\\MacOS\\A Tofu Tail + executable: "A Tofu Tail.app\\\\Contents\\\\MacOS\\\\A Tofu Tail" type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: A Tofu Tail.x86_64 type: default -'454250': +"454250": installDir: The Eyes of Ara launch: - config: @@ -224267,22 +220116,22 @@ oslist: macos executable: The Eyes of Ara.app type: default -'454260': +"454260": installDir: The HinterLands launch: - config: oslist: windows executable: TheHinterLands.exe type: default -'454280': {} -'454320': +"454280": {} +"454320": installDir: the Sequence launch: - config: oslist: windows executable: theSequence.exe type: none -'454330': +"454330": installDir: A Room Beyond launch: - config: @@ -224293,15 +220142,15 @@ oslist: macos executable: ARoomBeyond.app/Contents/MacOS/ARoomBeyond type: default -'454350': +"454350": installDir: Days of War launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: DaysOfWar.exe type: none -'454370': +"454370": installDir: Battlecursed launch: - config: @@ -224309,7 +220158,7 @@ description: Launch executable: BattleCursed.exe type: none -'454380': +"454380": installDir: Champions of Breakfast launch: - config: @@ -224324,21 +220173,21 @@ oslist: macos executable: Breakfast.app type: config -'454390': +"454390": installDir: Rally Copters launch: - config: oslist: windows executable: RallyCopters.exe type: default -'454410': +"454410": installDir: GigaWrecker launch: - config: oslist: windows executable: GigaWrecker.exe type: default -'454420': +"454420": installDir: Mini Metal launch: - config: @@ -224350,24 +220199,24 @@ executable: game.app/Contents/MacOS/game type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: game.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: game.x86 type: default -'454430': +"454430": installDir: Crystal Chip Collector launch: - config: oslist: windows executable: Crystal Chip Collector.exe type: none -'454460': {} -'454480': +"454460": {} +"454480": installDir: Break Through Artificial Maze launch: - config: @@ -224378,9 +220227,9 @@ betakey: fbtest oslist: windows description: Test Fight Back - executable: FB\\FightBack.exe + executable: "FB\\\\FightBack.exe" type: none -'45450': +"45450": installDir: Fortix 2 launch: - config: @@ -224392,7 +220241,7 @@ - config: oslist: linux executable: fortix2 -'454520': +"454520": installDir: MilitAnt launch: - config: @@ -224403,26 +220252,26 @@ oslist: macos executable: MilitAnt Launcher.app type: default -'454530': +"454530": installDir: Decisive Campaigns Barbarossa launch: - config: oslist: windows executable: autorun.exe type: default -'454540': +"454540": installDir: LuckCatchers launch: - - arguments: '--steam' + - arguments: "--steam" config: - osarch: '64' + osarch: "64" oslist: windows executable: game64.exe type: none -'454560': +"454560": installDir: Ultimate Fight Manager 2016 launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows description: Launch @@ -224432,26 +220281,26 @@ oslist: linux executable: UFM type: none - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: macos executable: UFM.app type: none -'454570': +"454570": installDir: I Am Caligula launch: - config: oslist: windows executable: Game.exe type: default -'454580': +"454580": installDir: Spider Wars launch: - config: oslist: windows executable: SpiderWars.exe type: default -'454600': +"454600": installDir: Age of Cavemen launch: - config: @@ -224462,51 +220311,51 @@ oslist: linux executable: AgeOfCavemen.x86 type: default -'454610': - installDir: Demon's Crystals +"454610": + installDir: "Demon's Crystals" launch: - config: oslist: windows - executable: Demon'sCrystals.exe + executable: "Demon'sCrystals.exe" type: default - config: oslist: linux - executable: Demon's Crystals.x86 + executable: "Demon's Crystals.x86" type: default - config: oslist: macos - executable: Demon's Crystals.app + executable: "Demon's Crystals.app" type: none -'454630': +"454630": installDir: Button Frenzy launch: - config: oslist: windows executable: ButtonFrenzy.exe type: default -'454650': +"454650": installDir: DB Xenoverse 2 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: START.exe type: none -'454670': +"454670": installDir: Piggy Princess launch: - config: oslist: windows executable: Piggy Princess (version 1.0).exe type: default -'454680': +"454680": installDir: MetaTron launch: - config: oslist: windows executable: MetaTron.exe type: none -'454690': +"454690": installDir: Cyber City 2157 launch: - config: @@ -224524,14 +220373,14 @@ description: Launch executable: Cyber City 2157.sh type: none -'454700': +"454700": installDir: Shiny Gauntlet launch: - config: oslist: windows executable: nw.exe type: default -'454720': +"454720": installDir: RAM BOE launch: - config: @@ -224539,12 +220388,12 @@ executable: RAM BOE.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: RAM BOE.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: RAM BOE.x86_64 type: default @@ -224552,28 +220401,28 @@ oslist: macos executable: RAM BOE.app/Contents/MacOS/RAM BOE type: default -'454730': +"454730": installDir: World Of Undead launch: - config: oslist: windows executable: WorldofUndead.exe type: none -'454750': +"454750": installDir: Aeternum launch: - config: oslist: windows executable: Aeternum.exe type: default -'454770': +"454770": installDir: Mystic Melee launch: - config: oslist: windows executable: Mystic Melee.exe type: none -'454780': +"454780": installDir: Atriage launch: - config: @@ -224589,16 +220438,16 @@ oslist: linux executable: Atriage.x86 type: default -'454830': +"454830": installDir: Beach Ball Valley launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch Beach Ball Valley executable: BeachBallValleyLauncher.exe type: vr -'454870': +"454870": installDir: Magic Quest launch: - config: @@ -224606,14 +220455,14 @@ executable: bin/MagicQuest.exe type: none workingdir: bin/ -'454890': +"454890": installDir: Project Starship launch: - config: oslist: windows executable: project_starship.exe type: none -'454900': +"454900": installDir: Amaranthine launch: - config: @@ -224624,10 +220473,10 @@ oslist: linux executable: runner type: default -'454910': +"454910": installDir: TwinSaga launch: - - arguments: '-steam' + - arguments: "-steam" config: oslist: windows executable: Launcher.exe @@ -224638,9 +220487,9 @@ description: Test Server executable: OAuth2_Login_Steam.bat type: option1 -'454930': {} -'454940': {} -'454950': +"454930": {} +"454940": {} +"454950": installDir: Mainlining launch: - config: @@ -224655,49 +220504,49 @@ oslist: linux executable: MainliningGame.x86 type: default -'454970': +"454970": installDir: Gravity Den launch: - config: oslist: macos - executable: GravityDen.app\\Contents\\MacOS\\Gravity Den + executable: "GravityDen.app\\\\Contents\\\\MacOS\\\\Gravity Den" type: none - config: oslist: windows executable: Gravity Den.exe type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: Gravity Den type: none -'45500': +"45500": installDir: Clickr launch: - executable: Clickr.exe -'455000': +"455000": installDir: The Lost launch: - config: oslist: windows executable: qian.exe type: default -'455020': +"455020": installDir: Jackpot Poker by PokerStars launch: - config: oslist: windows executable: JackpotPoker.exe type: none -'455080': - installDir: Awakening The Redleaf Forest Collector's Edition +"455080": + installDir: "Awakening The Redleaf Forest Collector's Edition" launch: - executable: Awakening_RedleafForestCE.exe type: none -'455100': +"455100": installDir: Gerty launch: - - arguments: '-popupwindow' + - arguments: "-popupwindow" config: oslist: windows executable: Gerty.exe @@ -224707,58 +220556,56 @@ executable: Gerty.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Gerty.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Gerty.x86_64 type: default -'455110': +"455110": installDir: Pertinence launch: - config: oslist: windows executable: Pertinence.exe type: default -'455120': +"455120": installDir: Stay Close launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: StayClose.exe type: default -'455190': +"455190": installDir: Domain Defense VR launch: - - arguments: '-osvr -gamepad -steam' + - arguments: "-osvr -gamepad -steam" config: oslist: windows description: with OSVR and Gamepad Controls - description_loc: - english: with OSVR and Gamepad Controls executable: DomainDefenseVR.exe type: option1 - - arguments: '-steam -steamvr -gamepad -vrmode OpenVR' + - arguments: "-steam -steamvr -gamepad -vrmode OpenVR" config: oslist: windows description: Gamepad Controls executable: DomainDefenseVR.exe type: vr - - arguments: '-steam -steamvr -motion -vrmode OpenVR' + - arguments: "-steam -steamvr -motion -vrmode OpenVR" config: oslist: windows description: Motion Controls executable: DomainDefenseVR.exe type: vr - - arguments: '-steam -oculusSDK -vrmode Oculus' + - arguments: "-steam -oculusSDK -vrmode Oculus" description: All Controls executable: DomainDefenseVR.exe type: othervr -'455200': +"455200": installDir: The Battle for Sector 219 launch: - config: @@ -224769,46 +220616,46 @@ oslist: macos executable: Sector219.app/Contents/MacOS/Sector219 type: none -'455230': +"455230": installDir: Bazaar launch: - - arguments: '-openvr' + - arguments: "-openvr" config: oslist: windows executable: Bazaar.exe type: vr - - arguments: '-oculus' + - arguments: "-oculus" config: oslist: windows executable: Bazaar.exe type: othervr -'455290': +"455290": installDir: Dashing Dinos launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: \\WindowsNoEditor\\DashingDinos\\Binaries\\Win64\\DashingDinos-Win64-Shipping.exe + executable: "\\\\WindowsNoEditor\\\\DashingDinos\\\\Binaries\\\\Win64\\\\DashingDinos-Win64-Shipping.exe" type: default - config: - osarch: '32' + osarch: "32" oslist: windows - executable: \\WindowsNoEditor\\DashingDinos\\Binaries\\Win32\\DashingDinos-Win32-Shipping.exe + executable: "\\\\WindowsNoEditor\\\\DashingDinos\\\\Binaries\\\\Win32\\\\DashingDinos-Win32-Shipping.exe" type: none -'455300': +"455300": installDir: Deuterium Wars launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: Deuterium Wars.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: Deuterium Wars x64.exe type: default -'455310': +"455310": installDir: Bloody Chronicles - New Cycle of Death launch: - config: @@ -224825,14 +220672,14 @@ description: Lanuch executable: Bloody Chronicles.app type: default -'455340': +"455340": installDir: Warhammer 40000 Armageddon - Da Orks launch: - config: oslist: windows executable: autorun.exe type: default -'455400': +"455400": installDir: PAC-MAN 256 launch: - config: @@ -224847,15 +220694,15 @@ oslist: linux executable: startgame.sh type: none -'455440': +"455440": installDir: Spell Fighter VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SpellFighter.exe type: vr -'455480': +"455480": installDir: shift-orb launch: - config: @@ -224863,7 +220710,7 @@ executable: shiftorb.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: shiftorb.x86 type: default @@ -224872,19 +220719,19 @@ executable: shiftorb.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: 64 Bit version executable: shiftorb.x86_64 type: option1 -'455490': - installDir: 'Don''t Die Dateless, Dummy!' +"455490": + installDir: "Don't Die Dateless, Dummy!" launch: - config: oslist: windows executable: DontDieDatelessDummy.exe type: default -'455590': +"455590": installDir: Clumsy Runners launch: - config: @@ -224895,59 +220742,59 @@ oslist: macos executable: ClumsyRunners.app type: default -'455640': +"455640": installDir: Edgar launch: - config: oslist: windows executable: Edgar.exe type: default -'455690': +"455690": installDir: Pixel Puzzles Junior launch: - config: oslist: windows executable: Pixel Puzzles Junior.exe type: none -'455700': +"455700": installDir: Big Buck Hunter Arcade launch: - config: oslist: windows executable: Buck.exe type: default -'455710': +"455710": installDir: Project RPG launch: - - arguments: '-windowed' + - arguments: "-windowed" config: oslist: windows executable: ProjectRPG.exe type: default -'455720': +"455720": installDir: Dolphin Defense launch: - config: oslist: windows executable: DolphinverseBuild.exe type: vr -'455770': +"455770": installDir: YamaYama launch: - config: oslist: windows executable: YamaYama.exe type: none -'455820': +"455820": installDir: Omensight launch: - - arguments: '-NOSPLASH' + - arguments: "-NOSPLASH" config: - osarch: '64' + osarch: "64" oslist: windows executable: Omensight.exe type: default -'455830': +"455830": installDir: FrightShow Fighter launch: - config: @@ -224958,21 +220805,21 @@ oslist: macos executable: frightshowfighter type: default -'455910': +"455910": installDir: RogueSquadron launch: - config: oslist: windows - executable: ROGUE\\ROGUE.EXE + executable: "ROGUE\\\\ROGUE.EXE" type: none -'455940': +"455940": installDir: OddEven launch: - config: oslist: windows executable: OddEven.exe type: default -'455960': +"455960": installDir: Domain Defense launch: - config: @@ -224985,16 +220832,16 @@ type: default - config: oslist: macos - executable: DomainDefense.app\\Contents\\MacOS\\DomainDefense + executable: "DomainDefense.app\\\\Contents\\\\MacOS\\\\DomainDefense" type: default -'455970': +"455970": installDir: Heartomics 2 launch: - config: oslist: windows executable: heartomics.exe type: default -'455980': +"455980": installDir: Judgment launch: - config: @@ -225003,42 +220850,42 @@ executable: judgment.exe type: default nameLocalized: - french: 'Judgment: simulateur de survie post-apo' - german: 'Judgment: Apokalyptische Überlebenssimulation' - japanese: 'Judgment:終末サバイバルシュミレーション' - russian: 'Judgment: симулятор выживания в постапокалипсисе' + french: "Judgment: simulateur de survie post-apo" + german: "Judgment: Apokalyptische Überlebenssimulation" + japanese: "Judgment:終末サバイバルシュミレーション" + russian: "Judgment: симулятор выживания в постапокалипсисе" schinese: 审判:末日生存模拟 -'455990': +"455990": installDir: Smash Pixel Racing launch: - - arguments: '-window' + - arguments: "-window" config: oslist: windows executable: SmashPixelRacing.exe type: default - - arguments: '-window' + - arguments: "-window" config: oslist: macos executable: smashpixelracing.app type: default - - arguments: '-window' + - arguments: "-window" config: oslist: linux executable: SmashPixelRacing type: default -'4560': +"4560": installDir: Company of Heroes launch: - executable: RelicCOH.exe -'456090': +"456090": installDir: ZOMBIE TOWN AHHH launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ZOMBIETOWNAHHH.exe type: default -'456130': +"456130": installDir: Space Scaven launch: - config: @@ -225049,116 +220896,116 @@ oslist: linux executable: Space Scaven.sh type: default -'456140': {} -'456160': +"456140": {} +"456160": installDir: Flag N Frag launch: - config: oslist: windows executable: FlagNFrag.exe type: default -'456170': +"456170": installDir: Bannerman launch: - config: oslist: windows executable: Bannerman.exe type: default -'456180': +"456180": installDir: AmericanDream launch: - config: oslist: windows executable: TheAmericanDream.exe type: vr -'456210': +"456210": installDir: A Land Fit For Heroes launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: app.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: app.exe type: default -'456390': +"456390": installDir: Exception launch: - config: oslist: windows executable: Exception.exe type: default -'456420': +"456420": installDir: Gunslinger Trainer launch: - config: oslist: windows executable: VR_GunGame.exe type: vr -'456430': +"456430": installDir: Christmas Adventure Candy Storm launch: - executable: Christmas Adventure - Candy Storm.exe type: none -'456440': +"456440": installDir: The Orphan Dreams launch: - executable: The Orphan Dreams.exe type: default -'456540': +"456540": installDir: Star Wars - Rebel Assault 1 and 2 launch: - - arguments: '-conf \"..\\dosbox_rebel.conf\" -conf \"..\\dosbox_rebel_single.conf\" -noconsole -c exit' + - arguments: "-conf \\\"..\\\\dosbox_rebel.conf\\\" -conf \\\"..\\\\dosbox_rebel_single.conf\\\" -noconsole -c exit" config: oslist: windows description: Star Wars - Rebel Assault - executable: DOSBOX\\DOSBox.exe + executable: "DOSBOX\\\\DOSBox.exe" type: option1 - workingdir: DOSBOX\\ - - arguments: '-conf \"..\\dosbox_rebel2.conf\" -conf \"..\\dosbox_rebel2_single.conf\" -noconsole -c exit' + workingdir: "DOSBOX\\\\" + - arguments: "-conf \\\"..\\\\dosbox_rebel2.conf\\\" -conf \\\"..\\\\dosbox_rebel2_single.conf\\\" -noconsole -c exit" config: oslist: windows description: Star Wars - Rebel Assault II - executable: DOSBOX\\DOSBox.exe + executable: "DOSBOX\\\\DOSBox.exe" type: option2 - workingdir: DOSBOX\\ - - arguments: '-conf dosbox_rebel.conf -conf dosbox_rebel_single.conf -noconsole -c exit' + workingdir: "DOSBOX\\\\" + - arguments: "-conf dosbox_rebel.conf -conf dosbox_rebel_single.conf -noconsole -c exit" config: oslist: macos description: Star Wars - Rebel Assault executable: dosbox/DOSBox type: option1 - - arguments: '-conf dosbox_rebel2.conf -conf dosbox_rebel2_single.conf -noconsole -c exit' + - arguments: "-conf dosbox_rebel2.conf -conf dosbox_rebel2_single.conf -noconsole -c exit" config: oslist: macos description: Star Wars - Rebel Assault II executable: dosbox/DOSBox type: option2 -'456570': +"456570": installDir: Muv-Luv VR launch: - - arguments: '-fullscreen' + - arguments: "-fullscreen" config: oslist: windows executable: MuvLuvVR.exe type: vr -'456610': +"456610": installDir: Pro Evolution Soccer 2017 launch: - description: Launch executable: PES2017.exe type: none -'456660': +"456660": installDir: Heartomics launch: - config: oslist: windows executable: heartomics.exe type: default -'456670': +"456670": installDir: Hand of Fate 2 launch: - config: @@ -225170,16 +221017,16 @@ executable: Hand of Fate 2.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Hand of Fate 2.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Hand of Fate 2.x86_64 type: default -'456690': +"456690": installDir: WeatherLordFollowingthePrincessCE launch: - config: @@ -225190,30 +221037,30 @@ oslist: macos executable: WeatherLord.app type: default -'456720': +"456720": installDir: Angus Hates Aliens launch: - config: oslist: windows executable: EnginePC.exe type: default -'456740': - installDir: Doctor Kvorak's Obliteration Game +"456740": + installDir: "Doctor Kvorak's Obliteration Game" launch: - - arguments: '-novr' + - arguments: "-novr" config: - osarch: '64' + osarch: "64" oslist: windows description: Play in Desktop executable: ObliterationGame.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows description: Obliteration Game executable: ObliterationGame.exe type: vr -'456750': +"456750": installDir: TheRoomThree launch: - config: @@ -225221,31 +221068,31 @@ description: Launch executable: TheRoomThree.exe type: default -'456760': +"456760": installDir: A dragon girl looks up at the endless sky launch: - config: oslist: windows description: English - executable: dragon1_en\\s_dragon.exe + executable: "dragon1_en\\\\s_dragon.exe" type: option1 - config: oslist: windows description: Simplified Chinese (簡体中文) - executable: dragon1_cn\\sc_dragon.exe + executable: "dragon1_cn\\\\sc_dragon.exe" type: option1 -'456780': +"456780": installDir: Ducati - 90th Anniversary launch: - config: - osarch: '32' + osarch: "32" executable: Ducati.exe type: none - config: - osarch: '64' + osarch: "64" executable: DucatiX64.exe type: none -'456810': +"456810": installDir: Zombillie launch: - config: @@ -225260,53 +221107,53 @@ oslist: linux executable: Zombillie.x86 type: none -'456830': +"456830": installDir: Dual Core launch: - config: oslist: windows executable: DualCore.exe type: default -'456920': +"456920": installDir: GaryTheGull launch: - config: oslist: windows executable: Bird_3.exe type: vr -'456980': {} -'4570': +"456980": {} +"4570": installDir: Dawn of War Gold launch: - executable: W40k.exe -'45700': +"45700": installDir: Devil May Cry 4 launch: - executable: DevilMayCry4_DX9.exe - description: Launch Devil May Cry 4 - DX10 executable: DevilMayCry4_DX10.exe -'457010': +"457010": installDir: StarsOne launch: - - arguments: '-force-D3D9' + - arguments: "-force-D3D9" config: oslist: windows executable: StarsOne.exe type: default - config: oslist: macos - executable: StarsOne.app\\Contents\\MacOS\\StarsOne + executable: "StarsOne.app\\\\Contents\\\\MacOS\\\\StarsOne" type: default - config: oslist: linux executable: StarsOne.x86_64 type: default -'457030': {} -'45710': +"457030": {} +"45710": installDir: Dark Void launch: - executable: Launcher.exe -'457130': +"457130": installDir: Runes The Forgotten Path launch: - config: @@ -225315,9 +221162,9 @@ type: vr - config: oslist: windows - executable: \\OCULUS\\RunesOVR.exe + executable: "\\\\OCULUS\\\\RunesOVR.exe" type: othervr -'457140': +"457140": installDir: OxygenNotIncluded launch: - config: @@ -225335,11 +221182,11 @@ nameLocalized: schinese: 缺氧 tchinese: 缺氧 -'45720': +"45720": installDir: Lost Planet Colonies launch: - executable: LPCLauncher.exe -'457210': +"457210": installDir: SEUM Speedrunners from Hell launch: - config: @@ -225354,51 +221201,51 @@ oslist: linux executable: Seum type: default -'457230': +"457230": installDir: Atlas Reactor VR Character Viewer launch: - config: oslist: windows executable: ARVRCharacterViewer.exe type: vr -'457260': +"457260": installDir: Omen of Sorrow launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: UMonster.exe type: default -'45730': +"45730": installDir: Dark Void Zero launch: - executable: DarkVoidZero.exe -'457320': +"457320": installDir: HoloBall launch: - executable: HoloBall.exe type: vr -'457330': +"457330": installDir: High Octane Drift launch: - config: oslist: windows executable: HighOctaneDrift.exe type: none -'457340': +"457340": installDir: Dimensional (VR-Only) launch: - - arguments: '-vr' + - arguments: "-vr" config: oslist: windows executable: dimensional.exe type: vr - - arguments: '-vr' + - arguments: "-vr" config: oslist: windows executable: dimensional.exe type: othervr -'457370': +"457370": installDir: Alexas Wild Night launch: - config: @@ -225406,28 +221253,28 @@ description: Launch executable: AlexasWildNight.exe type: none -'457380': +"457380": installDir: STORM VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Storm.exe type: vr -'45740': +"45740": installDir: Dead Rising 2 launch: - executable: deadrising2.exe -'457410': {} -'457420': +"457410": {} +"457420": installDir: Surgeon Simulator VR Meet The Medic launch: - config: oslist: windows - executable: Win32\\SurgeonVR.exe + executable: "Win32\\\\SurgeonVR.exe" type: vr -'457440': {} -'457450': +"457440": {} +"457450": installDir: Defend your Crypt launch: - config: @@ -225436,19 +221283,19 @@ type: none - config: oslist: macos - executable: DefendYourCrypt.app\\Contents\\MacOS\\DefendYourCrypt + executable: "DefendYourCrypt.app\\\\Contents\\\\MacOS\\\\DefendYourCrypt" type: none - config: oslist: windows - description: 'Lightning mode [BETA & OpenGL]' + description: "Lightning mode [BETA & OpenGL]" executable: DefendYourCrypt_light.exe type: none - config: oslist: macos - description: 'Lightning mode [BETA]' - executable: DefendYourCrypt_Lightning.app\\Contents\\MacOS\\DefendYourCrypt + description: "Lightning mode [BETA]" + executable: "DefendYourCrypt_Lightning.app\\\\Contents\\\\MacOS\\\\DefendYourCrypt" type: none -'457480': +"457480": installDir: Domino Sky launch: - config: @@ -225459,7 +221306,7 @@ oslist: macos executable: dominosky.app type: none -'457490': +"457490": installDir: Forgotten Not Lost launch: - config: @@ -225474,18 +221321,18 @@ oslist: macos executable: Forgotten Not Lost.app type: default -'45750': +"45750": installDir: Lost Planet 2 launch: - executable: Launcher.exe -'457520': +"457520": installDir: Moustache Mountain launch: - config: oslist: windows executable: MoustacheMountain.exe type: default -'457530': +"457530": installDir: My Lady launch: - config: @@ -225503,29 +221350,29 @@ description: Launch executable: MyLadyVisualNovel.sh type: none -'457550': +"457550": installDir: Bigscreen launch: - - arguments: '-popupwindow -store steam -logFile ./Bigscreen_Data/output_log.txt' + - arguments: "-popupwindow -store steam -logFile ./Bigscreen_Data/output_log.txt" config: - osarch: '64' + osarch: "64" oslist: windows executable: Bigscreen.exe type: vr - - arguments: '-popupwindow -store steam -logFile ./Bigscreen_Data/output_log.txt' + - arguments: "-popupwindow -store steam -logFile ./Bigscreen_Data/output_log.txt" config: - osarch: '64' + osarch: "64" oslist: windows executable: Bigscreen.exe type: othervr - - arguments: '-popupwindow -store steam -usertype 2duser -logFile ./Bigscreen_Data/output_log.txt' + - arguments: "-popupwindow -store steam -usertype 2duser -logFile ./Bigscreen_Data/output_log.txt" config: - osarch: '64' + osarch: "64" oslist: windows description: Remote Desktop streaming client executable: Bigscreen.exe type: option1 -'457570': +"457570": installDir: Camp Sunshine launch: - config: @@ -225536,52 +221383,52 @@ oslist: macos executable: Game.app type: default -'457580': +"457580": installDir: The Visitor launch: - config: oslist: windows executable: TheVisitor.exe type: vr -'457590': +"457590": installDir: Luna_NA launch: - config: oslist: windows executable: Launcher.exe type: default -'45760': +"45760": installDir: Super Street Fighter IV - Arcade Edition launch: - executable: SSFIV.exe -'457600': +"457600": installDir: Emerge Cities of the Apocalypse launch: - config: oslist: windows executable: emerge.exe type: default -'457650': +"457650": installDir: Stonehenge VR SANDBOX launch: - config: oslist: windows executable: StonehengeVR.exe type: vr -'457660': +"457660": installDir: Andromedum launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Andromedum.exe type: vr -'457680': +"457680": installDir: OPUS launch: - config: oslist: macos - executable: OPUS.app\\Contents\\MacOS\\OPUS + executable: "OPUS.app\\\\Contents\\\\MacOS\\\\OPUS" type: default - config: oslist: windows @@ -225591,26 +221438,26 @@ japanese: OPUS 地球計画 schinese: OPUS:地球计划 tchinese: OPUS:地球計畫 -'457690': +"457690": installDir: Hotel Blind launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Blindhotel.exe type: default -'45770': +"45770": installDir: Dead Rising 2 Off the Record launch: - executable: deadrising2otr.exe -'457710': +"457710": installDir: Road Madness launch: - config: oslist: windows executable: Road Madness.exe type: default -'457730': +"457730": installDir: Mushroom Wars 2 launch: - config: @@ -225625,41 +221472,41 @@ oslist: linux executable: MW2 type: default -'457760': +"457760": installDir: TheSignalFrom launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: thesignalfrom.exe type: default - config: - osarch: '64' + osarch: "64" oslist: macos executable: thesignalfrom.app/Contents/MacOS/thesignalfrom type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: thesignalfrom type: default -'457770': +"457770": installDir: Audio Arena launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Audio Arena.exe type: vr -'457790': +"457790": installDir: Capria launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Capria.exe type: vr -'457810': +"457810": installDir: Sky To Fly - Soulless Leviathan launch: - config: @@ -225671,50 +221518,50 @@ executable: SkyToFly2.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: SkyToFly2.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: SkyToFly2.x86_64 type: default -'457820': +"457820": installDir: Outrage launch: - executable: game.exe type: none -'457860': +"457860": installDir: Apollo 11 VR launch: - - arguments: '-platform_steam -sdk_steamvr -hardware_vive' + - arguments: "-platform_steam -sdk_steamvr -hardware_vive" config: - osarch: '64' + osarch: "64" oslist: windows executable: Apollo11VR-SteamVR.exe type: vr - - arguments: '-platform_steam -sdk_oculus -hardware_rift' + - arguments: "-platform_steam -sdk_oculus -hardware_rift" config: - osarch: '64' + osarch: "64" oslist: windows description: on Oculus Rift executable: Apollo11VR-SteamVR.exe type: othervr - - arguments: '-platform_steam -sdk_nonvr -hardware_monitor' + - arguments: "-platform_steam -sdk_nonvr -hardware_monitor" config: - osarch: '64' + osarch: "64" oslist: windows description: Launch on Monitor executable: Apollo11VR-SteamVR.exe type: none -'457870': +"457870": installDir: Minigame Party VR launch: - executable: Minigame Party VR.exe type: vr -'457880': {} -'457890': +"457880": {} +"457890": installDir: TumbleSeed launch: - config: @@ -225725,16 +221572,16 @@ oslist: macos executable: TumbleSeed.app type: default -'457930': {} -'457940': {} -'457960': +"457930": {} +"457940": {} +"457960": installDir: Holopoint launch: - config: oslist: windows executable: Holopoint.exe type: vr -'457980': +"457980": installDir: Adele Following the Signs launch: - config: @@ -225746,20 +221593,20 @@ executable: Adele.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Adele.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Adele.x86_64 type: default -'4580': +"4580": installDir: Dawn of War Dark Crusade launch: - executable: darkcrusade.exe -'458000': +"458000": installDir: March of the Living launch: - config: @@ -225770,27 +221617,27 @@ oslist: macos executable: marchoftheliving.app type: default -'458030': +"458030": installDir: StarFringe launch: - config: oslist: windows executable: StarFringe.exe type: default -'458040': +"458040": installDir: HexGambit launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: HexGambit.exe type: default -'458060': +"458060": installDir: Drusilla Dreams launch: - executable: Drusilla_Dreams.exe type: none -'458110': +"458110": installDir: VReakout launch: - config: @@ -225798,42 +221645,42 @@ description: Launching VReakout 321... executable: VReakout.exe type: vr -'458170': +"458170": installDir: SpiritSphere launch: - config: oslist: windows executable: SpiritSphere.exe type: default -'458190': +"458190": installDir: VR0GU3 launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: VR0GU3.exe type: vr -'458230': +"458230": installDir: Infinite Shooter launch: - config: oslist: windows executable: Infinite Shooter.exe type: default -'458290': +"458290": installDir: SpaceBitAttack launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SBA.exe type: vr -'458330': +"458330": installDir: Vilmonic launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: nw.exe type: none @@ -225846,23 +221693,23 @@ executable: Vilmonic type: none - config: - osarch: '64' + osarch: "64" oslist: windows executable: nw.exe type: none -'458370': +"458370": installDir: VR Baseball - Home Run Derby launch: - config: oslist: windows executable: vrbaseball.exe type: vr -'458380': +"458380": installDir: Gahkthun of the Golden Lightning Steam Edition launch: - executable: Gahkthun.exe type: default -'458410': +"458410": installDir: Cabals launch: - config: @@ -225873,36 +221720,36 @@ oslist: macos executable: cabals.app type: default - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" config: betakey: local oslist: windows description: Launch with configuration screen executable: cabals.exe type: none - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" config: betakey: local oslist: macos description: Launch with configuration screen executable: cabals.app type: none -'458420': +"458420": installDir: Last Heroes 3 launch: - description: Launch executable: game.exe type: none -'458450': +"458450": installDir: GAIN launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: GAIN executable: Gain.exe type: option1 -'458470': +"458470": installDir: Grim Legends 3 The Dark City launch: - config: @@ -225911,13 +221758,13 @@ executable: DarkCity.exe type: none - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: DarkCity_i386 type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: DarkCity_amd64 @@ -225927,7 +221774,7 @@ description: Launch executable: mac_steam.app/Contents/MacOS/mac_steam type: none -'458480': +"458480": installDir: Mythic Wonders launch: - config: @@ -225936,13 +221783,13 @@ executable: MythicWonders.exe type: none - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: MythicWonders_i386 type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: MythicWonders_amd64 @@ -225952,18 +221799,18 @@ description: Launch executable: mac_steam.app/Contents/MacOS/mac_steam type: none -'458490': +"458490": installDir: WhoMustDie launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: WMD.exe type: default -'458500': +"458500": installDir: Babylon2055Pinball launch: - - arguments: '--fullscreen' + - arguments: "--fullscreen" config: oslist: windows description: Fullscreen @@ -225974,10 +221821,10 @@ description: Windowed executable: BabylonPinball.exe type: none -'458510': +"458510": installDir: ZombiePinball launch: - - arguments: '--fullscreen' + - arguments: "--fullscreen" config: oslist: windows description: Fullscreen @@ -225992,12 +221839,12 @@ description: Windowed executable: ZombiePinball.exe type: none -'458520': +"458520": installDir: WoA launch: - executable: WoA.exe type: default -'458540': +"458540": installDir: Lines launch: - config: @@ -226008,46 +221855,46 @@ oslist: windows executable: lines_106.exe type: default -'458560': +"458560": installDir: Plastic Playground launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: PlasticPlayground.exe type: none -'458580': +"458580": installDir: Windlands 2 launch: - - arguments: '-openvr -steam' + - arguments: "-openvr -steam" config: - osarch: '64' + osarch: "64" oslist: windows executable: Windlands2.exe type: vr -'458590': +"458590": installDir: Abe launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: ABE VR - SteamVR executable: Abe.exe type: vr - config: - osarch: '64' + osarch: "64" description: ABE VR - Oculus Rift executable: Abe.exe type: othervr -'458600': +"458600": installDir: ZRoll launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: zroll/zroll.exe type: default -'458630': +"458630": installDir: Political Animals launch: - config: @@ -226056,42 +221903,42 @@ type: default - config: oslist: macos - executable: PoliticalAnimals.app\\Contents\\MacOS\\PoliticalAnimals + executable: "PoliticalAnimals.app\\\\Contents\\\\MacOS\\\\PoliticalAnimals" type: default - arguments: LC_ALL=C config: - osarch: '32' + osarch: "32" oslist: linux executable: PoliticalAnimals.x86 type: default - arguments: LC_ALL=C config: - osarch: '64' + osarch: "64" oslist: linux executable: PoliticalAnimals.x86_64 type: default -'458660': +"458660": installDir: The Slimekings Tower launch: - config: oslist: windows executable: tst.exe type: none -'458680': +"458680": installDir: Auto Age Standoff launch: - config: oslist: windows executable: AutoAgeStandoff.exe type: none -'458700': +"458700": installDir: Cursor Challenge launch: - config: oslist: windows executable: Cursor Challenge.exe type: none -'458710': +"458710": installDir: Kingdom Rush Frontiers launch: - config: @@ -226106,7 +221953,7 @@ oslist: linux executable: krf-love type: default -'458730': +"458730": installDir: Conception2 launch: - config: @@ -226116,18 +221963,18 @@ - config: oslist: windows description: Launch - executable: launcher\\Conception2-Launcher.exe + executable: "launcher\\\\Conception2-Launcher.exe" type: config nameLocalized: japanese: CONCEPTIONII 七星の導きとマズルの悪夢 -'458760': +"458760": installDir: Palinurus launch: - config: oslist: windows executable: Palinurus.exe type: default -'458770': +"458770": installDir: WRC 6 launch: - config: @@ -226135,23 +221982,23 @@ description: WRC 6 executable: WRC6.exe type: option1 -'458820': - installDir: 'States, Firms, & Households' +"458820": + installDir: "States, Firms, & Households" launch: - config: oslist: windows executable: sf.exe type: default -'458830': +"458830": installDir: Snooker Nation Championship launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SnookerNation.exe type: default -'458900': {} -'458920': +"458900": {} +"458920": installDir: Carnival Games VR launch: - config: @@ -226159,46 +222006,46 @@ description: Carnival Games® VR executable: CarnivalVR.exe type: vr -'458940': {} -'458960': +"458940": {} +"458960": installDir: Winning Putt launch: - - arguments: '--steam' + - arguments: "--steam" config: oslist: windows executable: Launcher.exe type: default -'458970': +"458970": installDir: intruderalert_ixianoperations launch: - config: oslist: windows executable: IntruderAlert.exe type: default -'458990': +"458990": installDir: AstralDomine launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: AstralDomine.exe type: vr -'459010': +"459010": installDir: Ghost Town Mine Ride launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: HauntedMineRide.exe type: vr -'459020': +"459020": installDir: Melting Hearts Our Love Will Grow 2 launch: - config: oslist: windows executable: MeltingHearts.exe type: none -'459040': +"459040": installDir: Medieval Battlefields Black Edition launch: - config: @@ -226209,14 +222056,14 @@ oslist: windows executable: mbattlesbe.exe type: default -'459050': +"459050": installDir: Wizards Home launch: - config: oslist: windows executable: WizardsHome.exe type: default -'459080': +"459080": installDir: YIIK A Postmodern RPG launch: - config: @@ -226227,7 +222074,7 @@ oslist: macos executable: YIIK A Postmodern RPG.app type: none -'459090': +"459090": installDir: Masquerada Songs and Shadows launch: - config: @@ -226236,13 +222083,13 @@ type: none - config: oslist: macos - executable: Masquerada.app\\Contents\\MacOS\\Masquerada + executable: "Masquerada.app\\\\Contents\\\\MacOS\\\\Masquerada" type: none -'459100': {} -'459130': +"459100": {} +"459130": installDir: Love in the Glen launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows executable: nw.exe @@ -226255,29 +222102,29 @@ oslist: linux executable: nw type: none -'459150': +"459150": installDir: Super Cat Herding Totally Awesome Edition launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch without Virtual Reality executable: Super Cat Herding - Totally Awesome Edition.exe type: default - arguments: vr config: - osarch: '64' + osarch: "64" oslist: windows description: with Virtual Reality executable: Super Cat Herding - Totally Awesome Edition.exe type: vr -'459160': +"459160": installDir: Allods Online My.com launch: - - arguments: '-fromsteam' + - arguments: "-fromsteam" executable: AllodsMycomSteamLoader.exe type: none -'459170': +"459170": installDir: DiscovrEgypt launch: - config: @@ -226285,27 +222132,27 @@ description: LaunchVR executable: DiscovrEgypt.exe type: vr -'459200': {} -'459220': +"459200": {} +"459220": installDir: HaloWarsDE launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: xgameFinal.exe type: default - - arguments: '-safemode' + - arguments: "-safemode" description: Launch in safe mode executable: xgameFinal.exe type: none -'459260': +"459260": installDir: Bowslinger launch: - config: oslist: windows executable: Bowslinger.exe type: vr -'459310': +"459310": installDir: The Hero Project Redemption Season launch: - config: @@ -226320,56 +222167,56 @@ oslist: linux executable: RedemptionSeason type: none -'459350': +"459350": installDir: BATTLESLOTHS2025 launch: - - arguments: '-AuthenticateSteam' + - arguments: "-AuthenticateSteam" config: oslist: windows executable: battlesloths2025.exe type: default - - arguments: '-AuthenticateSteam' + - arguments: "-AuthenticateSteam" config: oslist: macos executable: battlesloths2025.app type: default - - arguments: '-AuthenticateSteam' + - arguments: "-AuthenticateSteam" config: - osarch: '32' + osarch: "32" oslist: linux executable: battlesloths2025.x86 type: default - - arguments: '-AuthenticateSteam' + - arguments: "-AuthenticateSteam" config: - osarch: '64' + osarch: "64" oslist: linux executable: battlesloths2025.x86_64 type: default -'459370': +"459370": installDir: Riverbond launch: - config: oslist: windows executable: Riverbond.exe type: default -'459410': +"459410": installDir: Sector 724 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Sector_724_002.exe type: none - executable: game.exe type: none -'459440': +"459440": installDir: Tower 3D launch: - config: oslist: windows executable: tower3d.exe type: none -'459470': +"459470": installDir: Wars of Napoleon launch: - config: @@ -226377,21 +222224,21 @@ description: Launch executable: autorun.exe type: default -'459520': +"459520": installDir: Kinacoustic launch: - config: oslist: windows executable: Kinacoustic.exe type: none -'459540': - installDir: Cherry Tree High Girls' Fight +"459540": + installDir: "Cherry Tree High Girls' Fight" launch: - config: oslist: windows - executable: Cherry Tree High Girls' Fight.exe + executable: "Cherry Tree High Girls' Fight.exe" type: default -'459550': +"459550": installDir: Catch Canvas launch: - config: @@ -226406,14 +222253,14 @@ oslist: macos executable: Catch Canvas.app type: default -'459580': +"459580": installDir: LightWalk launch: - config: oslist: windows executable: LightWalk.exe type: none -'459610': +"459610": installDir: Star Fleet Armada launch: - config: @@ -226421,27 +222268,27 @@ oslist: windows executable: SFARA.exe type: default -'459630': +"459630": installDir: RcBotInc launch: - config: oslist: windows description: Normal Version - executable: RescueBot\\Binaries\\Win32\\RescueBot.exe + executable: "RescueBot\\\\Binaries\\\\Win32\\\\RescueBot.exe" type: default - config: betakey: highgraphics oslist: windows description: High End Version - executable: RescueBotHigh\\Binaries\\Win32\\RescueBotHigh.exe + executable: "RescueBotHigh\\\\Binaries\\\\Win32\\\\RescueBotHigh.exe" type: default -'459640': +"459640": installDir: You... and who else launch: - description: Launch executable: YOU.exe type: none -'459680': +"459680": installDir: Auro A Monster-Bumping Adventure launch: - config: @@ -226449,33 +222296,33 @@ description: Launch executable: Auro.exe type: none -'459730': +"459730": installDir: A World With No Colour launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: AWorldWithNoColour.exe type: default -'459760': +"459760": installDir: Exotic Matter launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: exoticmatter.exe type: none -'459770': +"459770": installDir: Longshot launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Windows 32-bit executable: longshot.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows description: Windows 64-bit executable: longshot.exe @@ -226486,26 +222333,26 @@ executable: longshot.app/Contents/MacOS/longshot type: default - config: - osarch: '32' + osarch: "32" oslist: linux description: Linux 32-bit executable: longshot.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: Linux 64-bit executable: longshot.x86_64 type: default -'459780': +"459780": installDir: Vektron Revenge launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: VektronRevenge.exe type: vr -'459820': +"459820": installDir: CrushCrush launch: - config: @@ -226518,29 +222365,29 @@ executable: CrushCrush.app type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: CrushCrush.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: CrushCrush.x86_64 type: none - - arguments: '-force-d3d9' + - arguments: "-force-d3d9" config: oslist: windows description: DirectX 9 (Legacy) executable: CrushCrush.exe type: none -'459830': +"459830": installDir: Final Days launch: - config: oslist: windows executable: FinalDays.exe type: default -'459840': +"459840": installDir: Monster Bash HD launch: - config: @@ -226551,7 +222398,7 @@ oslist: linux executable: MonsterBashHD.x86_64 type: default -'459880': +"459880": installDir: PlayFortress launch: - config: @@ -226559,26 +222406,26 @@ executable: Game/PlayFortress.exe type: default workingdir: Game -'459900': {} -'459910': {} -'459940': +"459900": {} +"459910": {} +"459940": installDir: Deer Man launch: - - arguments: '-vrmode None' + - arguments: "-vrmode None" config: oslist: windows executable: build.exe type: default - - arguments: '-vrmode Oculus' + - arguments: "-vrmode Oculus" config: oslist: windows executable: build.exe type: othervr -'4600': +"4600": installDir: Full Pipe launch: - executable: Fullpipe.exe -'46000': +"46000": installDir: Bob Came In Pieces launch: - config: @@ -226587,20 +222434,20 @@ - config: oslist: macos executable: MacBob.app -'460060': +"460060": installDir: Varenje launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Varenje.exe type: default - config: oslist: macos - executable: Varenje.app\\Contents\\MacOS\\Varenje + executable: "Varenje.app\\\\Contents\\\\MacOS\\\\Varenje" type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: Varenje.exe type: default @@ -226608,22 +222455,22 @@ oslist: linux executable: Varenje.x86_64 type: default -'460120': +"460120": installDir: Megadimension Neptunia VII launch: - executable: NeptuniaVII.exe type: none -'460140': +"460140": installDir: Midnight at the Celestial Palace Chapter I launch: - config: oslist: windows executable: Midnight.exe type: default -'460150': +"460150": installDir: One Last Chance launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows executable: nw.exe @@ -226636,7 +222483,7 @@ oslist: linux executable: nw type: none -'460160': +"460160": installDir: The Leisure of Grisaia launch: - config: @@ -226645,46 +222492,46 @@ type: none nameLocalized: japanese: グリザイアの有閑 -'460190': +"460190": installDir: Rocket Riot launch: - config: oslist: windows executable: RocketRiotSteam.exe type: default -'460210': +"460210": installDir: Bearslayer launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Bearslayer.exe type: default - config: - osarch: '64' + osarch: "64" oslist: macos executable: Bearslayer Mac.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: run.sh type: default -'460220': +"460220": installDir: Xenoraid launch: - config: oslist: windows executable: Xenoraid.exe type: default -'460230': +"460230": installDir: Starters Orders 6 launch: - config: oslist: windows executable: so6.exe type: default -'460250': +"460250": installDir: Circles launch: - config: @@ -226695,23 +222542,23 @@ oslist: macos executable: Circles.app type: default -'460340': +"460340": installDir: po launch: - - arguments: '-windowed' + - arguments: "-windowed" config: oslist: windows executable: po.exe type: default - config: oslist: macos - executable: guards.app\\Contents\\MacOS\\guards + executable: "guards.app\\\\Contents\\\\MacOS\\\\guards" type: default - config: oslist: linux executable: guards.x86 type: default -'460430': +"460430": installDir: The Letter launch: - config: @@ -226723,67 +222570,67 @@ executable: The Letter.app type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: The Letter.x86_64 type: none nameLocalized: schinese: 鬼来信 tchinese: 鬼來信 -'460510': +"460510": installDir: One Dark Night launch: - config: oslist: windows executable: Trayvon_Vive.exe type: vr -'460540': +"460540": installDir: Temple of Rust launch: - executable: TempleOfRust.exe type: none -'460560': +"460560": installDir: Blamdown_Udder_Fury launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Blamdown.exe type: default -'460580': +"460580": installDir: Star Chart launch: - - arguments: '-steamnonvr' + - arguments: "-steamnonvr" config: - osarch: '64' + osarch: "64" oslist: windows executable: StarChartVR.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: StarChartVR.exe type: vr - config: - osarch: '64' + osarch: "64" oslist: macos executable: StarChart.app type: default -'460590': +"460590": installDir: Nanotris launch: - config: oslist: windows executable: Nanotris.exe type: default -'460630': +"460630": installDir: Trouble Witches Origin launch: - config: oslist: windows executable: TW-Origin.exe type: default -'460640': +"460640": installDir: Breached launch: - config: @@ -226792,13 +222639,13 @@ type: default - config: oslist: macos - executable: Breached.app\\Contents\\MacOS\\Breached + executable: "Breached.app\\\\Contents\\\\MacOS\\\\Breached" type: default - config: oslist: linux - executable: Breached\\Binaries\\Linux\\Breached-Linux-Shipping + executable: "Breached\\\\Binaries\\\\Linux\\\\Breached-Linux-Shipping" type: default -'460650': +"460650": installDir: Tick Tock Bang Bang launch: - config: @@ -226806,52 +222653,52 @@ description: Launch Game executable: DRTB.exe type: none -'460660': {} -'460700': +"460660": {} +"460700": installDir: Song of the Deep launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: SOTD.exe type: none -'460730': +"460730": installDir: Draco Dux launch: - config: oslist: windows executable: DracoDux.exe type: vr -'460750': +"460750": installDir: Blade Ballet launch: - config: oslist: windows executable: Blade Ballet.exe type: default - - arguments: '-screen-fullscreen 1' + - arguments: "-screen-fullscreen 1" config: betakey: beta oslist: windows description: Blade Ballet (Fullscreen) executable: Blade Ballet.exe type: option1 - - arguments: '-screen-fullscreen 0' + - arguments: "-screen-fullscreen 0" config: betakey: beta oslist: windows description: Blade Ballet (Windowed) executable: Blade Ballet.exe type: option2 - - arguments: '-popupwindow -screen-fullscreen 0' + - arguments: "-popupwindow -screen-fullscreen 0" config: betakey: beta oslist: windows description: Blade Ballet (Borderless) executable: Blade Ballet.exe type: option3 -'460780': +"460780": installDir: Avadon 3 launch: - config: @@ -226862,32 +222709,32 @@ oslist: macos executable: Avadon 3.app type: none -'460790': +"460790": installDir: Bayonetta launch: - config: oslist: windows executable: Bayonetta.exe type: none -'460810': +"460810": installDir: Vanquish launch: - executable: Vanquish.exe type: none -'460850': +"460850": installDir: Allumette launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Allumette.exe type: vr -'460870': +"460870": installDir: GOD EATER RESURRECTION launch: - executable: GER.exe type: none -'460910': +"460910": installDir: A-Gents launch: - config: @@ -226899,60 +222746,60 @@ executable: agents.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: agents.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: agents.x86_64 type: none -'460920': +"460920": installDir: Steep launch: - - arguments: '-uplay_steam_mode' + - arguments: "-uplay_steam_mode" config: - osarch: '64' + osarch: "64" oslist: windows description: Default executable: steep.exe type: default -'460930': +"460930": installDir: Wildlands launch: - - arguments: '-uplay_steam_mode' + - arguments: "-uplay_steam_mode" config: - osarch: '64' + osarch: "64" oslist: windows - ownsdlc: '733970' + ownsdlc: "733970" executable: GRW.exe type: default - - arguments: '-upc_steam_free_package_id 14255 -uplay_steam_mode' + - arguments: "-upc_steam_free_package_id 14255 -uplay_steam_mode" config: - osarch: '64' + osarch: "64" oslist: windows - ownsdlc: '729730' + ownsdlc: "729730" description: Free Weekend WW executable: GRW.exe type: default - - arguments: '-upc_steam_free_package_id 14256 -uplay_steam_mode' + - arguments: "-upc_steam_free_package_id 14256 -uplay_steam_mode" config: - osarch: '64' + osarch: "64" oslist: windows - ownsdlc: '733960' + ownsdlc: "733960" description: Free Weekend RU/CN executable: GRW.exe type: default -'460940': +"460940": installDir: FathersIsland launch: - config: oslist: windows - description: Run Father's Island + description: "Run Father's Island" executable: FI_Full.exe type: default -'460950': +"460950": installDir: Katana ZERO launch: - config: @@ -226961,16 +222808,16 @@ type: none - config: oslist: macos - executable: Katana_ZERO.app\\Contents\\MacOS\\Katana_ZERO + executable: "Katana_ZERO.app\\\\Contents\\\\MacOS\\\\Katana_ZERO" type: none -'460960': +"460960": installDir: The Deed Dynasty launch: - config: oslist: windows executable: game.exe type: none -'460970': +"460970": installDir: Soulcaster Part I and II launch: - config: @@ -226986,12 +222833,12 @@ - config: oslist: linux description: Soulcaster - executable: ./Soulcaster1 + executable: "./Soulcaster1" type: option1 - config: oslist: linux description: Soulcaster II - executable: ./Soulcaster2 + executable: "./Soulcaster2" type: option2 - config: oslist: macos @@ -227004,15 +222851,15 @@ description: Soulcaster II executable: Soulcaster.app/Contents/MacOS/Soulcaster type: option2 -'460990': +"460990": installDir: ITA launch: - config: oslist: windows executable: ITA.exe type: vr -'461000': {} -'461010': +"461000": {} +"461010": installDir: Rolld launch: - config: @@ -227027,78 +222874,78 @@ oslist: linux executable: Rolld.x86 type: none -'461030': +"461030": installDir: A Long Way Home launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: alongwayhome.exe type: default - config: - osarch: '64' + osarch: "64" oslist: macos executable: alongwayhome.app/Contents/MacOS/nwjs type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: alongwayhome.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux - executable: ./alongwayhome + executable: "./alongwayhome" type: default - config: - osarch: '64' + osarch: "64" oslist: linux - executable: ./alongwayhome + executable: "./alongwayhome" type: default -'461040': +"461040": installDir: PICO_PARK launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: pico_park.exe type: default -'461100': {} -'461140': {} -'461170': +"461100": {} +"461140": {} +"461170": installDir: Bucket Detective launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: BucketDetective_Win64bit.exe type: default - config: - osarch: '64' + osarch: "64" oslist: macos executable: BucketDetective_OSX64bit.app type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: BucketDetective_Win32bit.exe type: default - config: - osarch: '32' + osarch: "32" oslist: macos executable: BucketDetective_OSX32bit.app type: default -'461180': +"461180": installDir: SurrealVR launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Vive Mode executable: surrealvr.exe type: vr - config: - osarch: '64' + osarch: "64" oslist: windows description: Oculus Mode executable: surrealvr.exe @@ -227106,21 +222953,21 @@ - description: Flatscreen Mode executable: surrealvr.exe type: default -'461190': {} -'461210': +"461190": {} +"461210": installDir: Riding Out launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Ridingout.exe type: none - config: - osarch: '32' + osarch: "32" oslist: windows executable: Ridingout.exe type: none -'461220': +"461220": installDir: Beglitched launch: - config: @@ -227131,43 +222978,43 @@ oslist: macos executable: Beglitched.app type: default - - arguments: '-window' + - arguments: "-window" config: oslist: windows description: Beglitched in Windowed Mode. executable: Beglitched.exe type: option1 - - arguments: '-window' + - arguments: "-window" config: oslist: macos description: Beglitched in Windowed Mode. executable: Beglitched.app type: option1 - config: - osarch: '32' + osarch: "32" oslist: linux executable: Beglitched.x86 type: default - - arguments: '-window' + - arguments: "-window" config: - osarch: '32' + osarch: "32" oslist: linux description: Beglitched in Windowed Mode. executable: Beglitched.x86 type: option1 - config: - osarch: '64' + osarch: "64" oslist: linux executable: Beglitched.x86_64 type: default - - arguments: '-window' + - arguments: "-window" config: - osarch: '64' + osarch: "64" oslist: linux description: Beglitched in Windowed Mode. executable: Beglitched.x86_64 type: option1 -'461230': +"461230": installDir: Dashy Square launch: - config: @@ -227175,64 +223022,64 @@ executable: DashySquare.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: DashySquare.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: DashySquare.x86_64 type: default - config: oslist: macos - executable: DashySquare.app\\Contents\\MacOS\\DashySquare + executable: "DashySquare.app\\\\Contents\\\\MacOS\\\\DashySquare" type: default -'461280': +"461280": installDir: Missileman Origins launch: - config: oslist: windows executable: Missileman Origins.exe type: default -'461320': +"461320": installDir: Smackitball launch: - config: oslist: windows executable: Smackitball.exe type: vr -'461340': +"461340": installDir: A Timely Intervention launch: - description: Launch executable: Game.exe type: none -'461350': - installDir: The King's Heroes +"461350": + installDir: "The King's Heroes" launch: - description: Launch executable: KingsHeroes.exe type: none -'461360': +"461360": installDir: Thorne - Son of Slaves (Ep.2) launch: - description: Launch executable: Game.exe type: none -'461370': - installDir: Midnight's Blessing 2 +"461370": + installDir: "Midnight's Blessing 2" launch: - description: Launch executable: Game.exe type: none -'461380': - installDir: A Princess' Tale +"461380": + installDir: "A Princess' Tale" launch: - description: Launch executable: game.exe type: none -'461390': +"461390": installDir: Bulby Diamond Course launch: - config: @@ -227247,51 +223094,45 @@ oslist: macos executable: bulbydiamondcourse.app type: default -'461400': +"461400": installDir: Massive launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: Massive.exe type: default workingdir: Massive_Data - config: - osarch: '32' + osarch: "32" oslist: linux executable: Massive.x86 type: default workingdir: Massive_Data -'461410': +"461410": installDir: Protonwar launch: - config: oslist: windows description: Protonwar - description_loc: - english: Protonwar - executable: WindowsNoEditor\\ProtonGame\\Binaries\\Win64\\ProtonGame.exe + executable: "WindowsNoEditor\\\\ProtonGame\\\\Binaries\\\\Win64\\\\ProtonGame.exe" type: default - workingdir: WindowsNoEditor\\ProtonGame\\Binaries\\Win64\\ - - arguments: '-vr' + workingdir: "WindowsNoEditor\\\\ProtonGame\\\\Binaries\\\\Win64\\\\" + - arguments: "-vr" config: oslist: windows description: Protonwar - description_loc: - english: Protonwar - executable: WindowsNoEditor\\ProtonGame\\Binaries\\Win64\\ProtonGame.exe + executable: "WindowsNoEditor\\\\ProtonGame\\\\Binaries\\\\Win64\\\\ProtonGame.exe" type: vr - workingdir: WindowsNoEditor\\ProtonGame\\Binaries\\Win64\\ - - arguments: '-vr' + workingdir: "WindowsNoEditor\\\\ProtonGame\\\\Binaries\\\\Win64\\\\" + - arguments: "-vr" config: oslist: windows description: Protonwar - description_loc: - english: Protonwar - executable: WindowsNoEditor\\ProtonGame\\Binaries\\Win64\\ProtonGame.exe + executable: "WindowsNoEditor\\\\ProtonGame\\\\Binaries\\\\Win64\\\\ProtonGame.exe" type: othervr - workingdir: WindowsNoEditor\\ProtonGame\\Binaries\\Win64\\ -'461430': + workingdir: "WindowsNoEditor\\\\ProtonGame\\\\Binaries\\\\Win64\\\\" +"461430": installDir: EmergeNYC launch: - config: @@ -227302,8 +223143,8 @@ oslist: macos executable: EmergeNYC.app type: default -'461480': - installDir: Archibald's Adventures +"461480": + installDir: "Archibald's Adventures" launch: - config: oslist: windows @@ -227315,33 +223156,33 @@ description: Launch executable: Archibald.app type: none -'461490': +"461490": installDir: Kaboom Monsters launch: - config: oslist: windows executable: KaboomMonsters.exe type: default -'461500': +"461500": installDir: Omega Agent launch: - executable: OmegaAgent.exe type: vr -'461510': +"461510": installDir: Tears of Avia launch: - config: oslist: windows executable: ToA.exe type: default -'461520': +"461520": installDir: Grizzly Valley launch: - config: oslist: windows executable: GrizzlyValley.exe type: default -'461560': +"461560": installDir: Mandagon launch: - config: @@ -227352,23 +223193,23 @@ oslist: macos executable: Mandagon.app type: default -'461570': {} -'461580': +"461570": {} +"461580": installDir: Galaxy Cannon Rider launch: - executable: GCR.exe type: default -'461590': +"461590": installDir: The Way Of Love Sub Zero launch: - executable: TheWayOfLoveSubZero.exe type: default -'461600': +"461600": installDir: Zipple World 2 The Sweet Chaos launch: - executable: sweet_chaos_30_08_2016.exe type: default -'461620': +"461620": installDir: Egypt Civilization launch: - config: @@ -227383,15 +223224,15 @@ oslist: linux executable: PreCiv-Egypt.x86_64 type: default -'461640': +"461640": installDir: Sins Of The Demon launch: - config: oslist: windows executable: Game.exe type: none -'461650': - installDir: It's Killing Time +"461650": + installDir: "It's Killing Time" launch: - config: oslist: windows @@ -227399,13 +223240,13 @@ type: none - config: oslist: macos - executable: It's Killing Time.app/Contents/MacOS/It's Killing Time + executable: "It's Killing Time.app/Contents/MacOS/It's Killing Time" type: none - config: oslist: linux executable: ItsKillingTime type: none -'461680': +"461680": installDir: Drone Racing launch: - config: @@ -227420,8 +223261,8 @@ oslist: linux executable: DroneRacing.exe type: none -'461690': {} -'461700': +"461690": {} +"461700": installDir: Seduce Me 2 The Demon War launch: - config: @@ -227439,7 +223280,7 @@ description: Launch executable: SeduceMe2TheDemonWar.sh type: none -'461710': +"461710": installDir: Tales Across Time launch: - config: @@ -227447,8 +223288,8 @@ description: Launch executable: Game.exe type: none -'461720': {} -'461730': +"461720": {} +"461730": installDir: Blaite launch: - config: @@ -227456,22 +223297,22 @@ executable: nw.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: nw.x86 type: default - config: oslist: macos - executable: blaite.app\\Contents\\MacOS\\nwjs + executable: "blaite.app\\\\Contents\\\\MacOS\\\\nwjs" type: default -'461750': +"461750": installDir: Ghoul Kid launch: - config: oslist: windows executable: GhoulKid.exe type: none -'461760': +"461760": installDir: Reptilian Rebellion launch: - config: @@ -227479,21 +223320,21 @@ executable: Reptilian Rebellion.exe type: none - config: - osarch: '64' + osarch: "64" oslist: macos - executable: ReptilianRebellion.app\\Contents\\MacOS\\ReptilianRebellion + executable: "ReptilianRebellion.app\\\\Contents\\\\MacOS\\\\ReptilianRebellion" type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: ReptilianRebellion.x86_64 type: none -'461780': +"461780": installDir: Moonstone Tavern launch: - executable: game.exe type: none -'461810': +"461810": installDir: CAFE 0 ~The Sleeping Beast~ launch: - config: @@ -227506,21 +223347,21 @@ type: none nameLocalized: japanese: カフェ・ゼロ~眠れる野獣~ -'461820': +"461820": installDir: Legionwood launch: - config: oslist: windows executable: Game.exe type: default -'461830': +"461830": installDir: Adventure Apes and the Mayan Mystery launch: - config: oslist: windows executable: AdventureApes-MayanMystery.exe type: default -'461840': +"461840": installDir: Zenge launch: - config: @@ -227535,27 +223376,27 @@ oslist: macos executable: zenge_mac.app type: none -'461850': +"461850": installDir: AbrixTheRobot launch: - executable: Abrix 2.exe type: none -'461860': +"461860": installDir: Tower Dwellers launch: - config: oslist: windows executable: TowerDwellers.exe type: default -'461870': +"461870": installDir: Police Simulator launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: PoliceSimulator.exe type: default -'461880': +"461880": installDir: Hyposphere launch: - config: @@ -227571,9 +223412,9 @@ - config: oslist: linux description: Launch - executable: Engine\\Binaries\\Linux\\UE4Game-Linux-Shipping + executable: "Engine\\\\Binaries\\\\Linux\\\\UE4Game-Linux-Shipping" type: none -'461890': +"461890": installDir: NORTH launch: - config: @@ -227586,7 +223427,7 @@ description: Launch executable: NORTH.app type: none -'461910': +"461910": installDir: Forge of Gods (RPG) launch: - config: @@ -227597,7 +223438,7 @@ oslist: linux executable: fog.x86 type: none -'461940': +"461940": installDir: PlanCon launch: - config: @@ -227605,11 +223446,11 @@ description: Launch executable: PlanCon.exe type: none -'461950': +"461950": installDir: Beat Cop launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: BeatCop.exe @@ -227620,24 +223461,24 @@ executable: BeatCop.app type: none - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: BeatCop.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: BeatCop.x86_64 type: none -'461970': +"461970": installDir: Skyreach launch: - config: oslist: windows executable: Skyreach.exe type: default -'461990': +"461990": installDir: The Prison Game launch: - config: @@ -227648,11 +223489,11 @@ oslist: linux executable: ThePrisonGame.sh type: none -'46200': +"46200": installDir: AIM Racing launch: - executable: AIMRace.exe -'462000': +"462000": installDir: Cyberpong VR launch: - config: @@ -227663,9 +223504,9 @@ oslist: windows executable: LevelEditor.exe type: editor -'462030': {} -'462060': {} -'462070': +"462030": {} +"462060": {} +"462070": installDir: IWO launch: - config: @@ -227676,11 +223517,11 @@ oslist: macos executable: IWO.app type: default -'46210': +"46210": installDir: 4x4 Hummer launch: - executable: Hummer.exe -'462100': +"462100": installDir: Starr Mazer DSP launch: - config: @@ -227695,36 +223536,36 @@ oslist: linux executable: DSP type: default -'462110': +"462110": installDir: 3 Coins At School launch: - config: oslist: windows executable: 3 Coins at School.exe type: default -'462130': +"462130": installDir: Momentum launch: - config: oslist: windows executable: Momentum_Steam.exe type: default - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" config: oslist: windows executable: Momentum_Steam.exe type: config -'46220': +"46220": installDir: Classic Car Racing launch: - executable: Classic Car Racing.exe -'462200': {} -'462220': +"462200": {} +"462220": installDir: Mahjong Deluxe 3 launch: - executable: MahjongDeluxe3.exe type: none -'462240': +"462240": installDir: Post Human W.A.R launch: - config: @@ -227735,29 +223576,29 @@ oslist: macos executable: Post Human W.A.R.app type: default -'462250': +"462250": installDir: Boiling Bolt launch: - config: oslist: windows executable: BoilingBolt.exe type: default -'462370': {} -'462380': +"462370": {} +"462380": installDir: Music of the Spheres launch: - config: oslist: windows executable: Music of the Spheres.exe type: none -'462400': +"462400": installDir: SlideRideArcade launch: - config: oslist: windows executable: SlideRide.exe type: default -'462440': +"462440": installDir: Rokh launch: - config: @@ -227765,77 +223606,77 @@ description: Play Online executable: WindowsClient/RokhClient.exe type: none - - arguments: '-NOSTEAM' + - arguments: "-NOSTEAM" config: oslist: windows description: Play Local executable: WindowsClient/RokhClient.exe type: none -'462480': +"462480": installDir: Sweet Escape VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SweetEscape.exe type: vr -'46250': +"46250": installDir: NecrovisioN Lost Company launch: - - executable: Bin\\NecroVisioN.exe + - executable: "Bin\\\\NecroVisioN.exe" workingdir: Bin -'462520': +"462520": installDir: Super Kaiju VR launch: - - arguments: '-windowed -placement=' + - arguments: "-windowed -placement=" config: - osarch: '64' + osarch: "64" oslist: windows executable: SuperKaijuVR.exe type: vr - - arguments: '-windowed -placement=' + - arguments: "-windowed -placement=" config: - osarch: '64' + osarch: "64" oslist: windows executable: SuperKaijuVR.exe type: othervr -'462530': +"462530": installDir: 8i launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: 8i.exe type: vr -'462570': - installDir: New Yankee in King Arthur's Court +"462570": + installDir: "New Yankee in King Arthur's Court" launch: - config: oslist: windows executable: NewYankee.exe type: none -'462580': - installDir: New Yankee in Santa's Service +"462580": + installDir: "New Yankee in Santa's Service" launch: - config: oslist: windows executable: NewYankee3.exe type: none -'462590': +"462590": installDir: Taekwondo Grand Prix launch: - config: oslist: windows executable: Taekwondo Grand Prix.exe type: default -'46260': +"46260": installDir: Star Wolves 3 Civil War launch: - executable: sw3cw.exe -'462620': +"462620": installDir: Pocket Kingdom launch: - - arguments: '-log' + - arguments: "-log" config: oslist: windows executable: PocketKingdom.exe @@ -227848,29 +223689,29 @@ oslist: macos executable: PocketKingdom.app/Contents/MacOS/PocketKingdom type: default -'462630': +"462630": installDir: RiftStar Raiders launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: RiftStarRaiders.exe type: default -'462640': +"462640": installDir: Surf World Series launch: - config: oslist: windows executable: SWS.exe type: default -'462670': +"462670": installDir: VR-Xterminator launch: - config: oslist: windows executable: VR_Xterminator.exe type: vr -'462680': +"462680": installDir: BalanCity launch: - config: @@ -227879,18 +223720,18 @@ type: none - config: oslist: macos - executable: balancity.app\\Contents\\MacOS\\nwjs + executable: "balancity.app\\\\Contents\\\\MacOS\\\\nwjs" type: default - config: - osarch: '64' + osarch: "64" oslist: linux - executable: ./nw + executable: "./nw" type: none -'46270': +"46270": installDir: Star Wolves launch: - executable: StarWolves.exe -'462700': +"462700": installDir: Cricket Captain 2016 launch: - config: @@ -227898,11 +223739,11 @@ description: Launch Cricket Captain (OpenGL) executable: CricketCaptain.exe type: none -'462730': +"462730": installDir: Townopolis launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Townopolis.exe type: default @@ -227915,160 +223756,160 @@ executable: Townopolis type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: Townopolis 32bit.exe type: default nameLocalized: russian: Townopolis / Товнополис ukrainian: Townopolis / Таун-поліс -'462770': +"462770": installDir: Pyre launch: - - arguments: /c ..\\ /PerfDashWarnings=false /KeepAllSaves=false + - arguments: "/c ..\\\\ /PerfDashWarnings=false /KeepAllSaves=false" config: - osarch: '64' + osarch: "64" oslist: windows description: Launch 64-bit - executable: x64\\Pyre.exe + executable: "x64\\\\Pyre.exe" type: option1 - workingdir: x64\\ - - arguments: /c ..\\ /PerfDashWarnings=false /BinkStreamCacheSize=0 /KeepAllSaves=false + workingdir: "x64\\\\" + - arguments: "/c ..\\\\ /PerfDashWarnings=false /BinkStreamCacheSize=0 /KeepAllSaves=false" config: - osarch: '32' + osarch: "32" oslist: windows description: Launch 32-bit - executable: x86\\Pyre.exe + executable: "x86\\\\Pyre.exe" type: option2 - workingdir: x86\\ - - arguments: /c ..\\.. /DefaultAssignee=\"Morgan Wren\" + workingdir: "x86\\\\" + - arguments: "/c ..\\\\.. /DefaultAssignee=\\\"Morgan Wren\\\"" config: betakey: sptest - osarch: '32' + osarch: "32" oslist: windows description: SP Campaign - executable: Debug\\x86\\Pyre.exe + executable: "Debug\\\\x86\\\\Pyre.exe" type: option2 - workingdir: Debug\\x86\\ - - arguments: /c ..\\.. /DefaultAssignee=\"Morgan Wren\" + workingdir: "Debug\\\\x86\\\\" + - arguments: "/c ..\\\\.. /DefaultAssignee=\\\"Morgan Wren\\\"" config: betakey: sptest - osarch: '64' + osarch: "64" oslist: windows description: SP Campaign - executable: Debug\\x64\\Pyre.exe + executable: "Debug\\\\x64\\\\Pyre.exe" type: option2 - workingdir: Debug\\x64\\ - - arguments: /c ..\\.. /KioskMode=true /LocalMP=true /DirectLoad=MatchSiteB + workingdir: "Debug\\\\x64\\\\" + - arguments: "/c ..\\\\.. /KioskMode=true /LocalMP=true /DirectLoad=MatchSiteB" config: betakey: experimental - osarch: '64' + osarch: "64" oslist: windows description: Local MP - executable: Debug\\x64\\Pyre.exe + executable: "Debug\\\\x64\\\\Pyre.exe" type: option3 - workingdir: Debug\\x64\\ - - arguments: /c ..\\.. /KioskMode=true /LocalMP=true /DirectLoad=MatchSiteB + workingdir: "Debug\\\\x64\\\\" + - arguments: "/c ..\\\\.. /KioskMode=true /LocalMP=true /DirectLoad=MatchSiteB" config: betakey: experimental - osarch: '32' + osarch: "32" oslist: windows description: Local MP - executable: Debug\\x86\\Pyre.exe + executable: "Debug\\\\x86\\\\Pyre.exe" type: option3 - workingdir: Debug\\x86\\ - - arguments: /c ..\\.. + workingdir: "Debug\\\\x86\\\\" + - arguments: "/c ..\\\\.." config: betakey: experimental - osarch: '64' + osarch: "64" oslist: windows description: Debug - executable: Debug\\x64\\Pyre.exe + executable: "Debug\\\\x64\\\\Pyre.exe" type: option1 - workingdir: Debug\\x64\\ - - arguments: /c ..\\.. + workingdir: "Debug\\\\x64\\\\" + - arguments: "/c ..\\\\.." config: betakey: experimental - osarch: '32' + osarch: "32" oslist: windows description: Debug - executable: Debug\\x86\\Pyre.exe + executable: "Debug\\\\x86\\\\Pyre.exe" type: option1 - workingdir: Debug\\x86\\ + workingdir: "Debug\\\\x86\\\\" - arguments: /PerfDashWarnings=false /DebugMessages=false /DebugKeysEnabled=false /KeepAllSaves=false config: oslist: linux - executable: ./Pyre + executable: "./Pyre" type: default - arguments: /PerfDashWarnings=false /DebugMessages=false /DebugKeysEnabled=false /KeepAllSaves=false config: oslist: macos - executable: ./Pyre.app/Contents/MacOS/Pyre + executable: "./Pyre.app/Contents/MacOS/Pyre" type: default - - arguments: /c ..\\.. /lang=fr + - arguments: "/c ..\\\\.. /lang=fr" config: betakey: experimental - osarch: '64' + osarch: "64" oslist: windows description: French - executable: Debug\\x64\\Pyre.exe + executable: "Debug\\\\x64\\\\Pyre.exe" type: option2 - workingdir: Debug\\x64\\ - - arguments: /c ..\\.. /lang=es + workingdir: "Debug\\\\x64\\\\" + - arguments: "/c ..\\\\.. /lang=es" config: betakey: experimental - osarch: '64' + osarch: "64" oslist: windows description: Spanish - executable: Debug\\x64\\Pyre.exe + executable: "Debug\\\\x64\\\\Pyre.exe" type: option2 - workingdir: Debug\\x64\\ - - arguments: /c ..\\.. /lang=ru + workingdir: "Debug\\\\x64\\\\" + - arguments: "/c ..\\\\.. /lang=ru" config: betakey: experimental - osarch: '64' + osarch: "64" oslist: windows description: Russian - executable: Debug\\x64\\Pyre.exe + executable: "Debug\\\\x64\\\\Pyre.exe" type: option2 - workingdir: Debug\\x64 - - arguments: /c ..\\.. /lang=zh-CN + workingdir: "Debug\\\\x64" + - arguments: "/c ..\\\\.. /lang=zh-CN" config: betakey: experimental - osarch: '64' + osarch: "64" oslist: windows description: Simplified Chinese - executable: Debug\\x64\\Pyre.exe + executable: "Debug\\\\x64\\\\Pyre.exe" type: option2 - workingdir: Debug\\x64 - - arguments: /c ..\\.. /lang=de + workingdir: "Debug\\\\x64" + - arguments: "/c ..\\\\.. /lang=de" config: betakey: experimental - osarch: '64' + osarch: "64" oslist: windows description: German - executable: Debug\\x64\\Pyre.exe + executable: "Debug\\\\x64\\\\Pyre.exe" type: option2 - workingdir: Debug\\x64 -'462780': + workingdir: "Debug\\\\x64" +"462780": installDir: Darksiders Warmastered Edition launch: - config: oslist: windows executable: darksiders1.exe type: default -'46280': +"46280": installDir: Star Wolves 2 launch: - executable: Star Wolves 2.exe -'462830': +"462830": installDir: Airline Director 2 launch: - config: oslist: windows executable: AirlineDirectorTwo080316steam.exe type: default -'462860': +"462860": installDir: CrawlersAndBrawlers launch: - config: @@ -228083,7 +223924,7 @@ oslist: macos executable: CrawlersAndBrawlers.app type: default -'46290': +"46290": installDir: Theatre of War launch: - config: @@ -228107,15 +223948,15 @@ oslist: windows description: Configure executable: towsetup.exe -'462910': +"462910": installDir: Poly Runner VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: PolyRunnerVR.exe type: vr -'462930': +"462930": installDir: AdVenture Communist launch: - config: @@ -228128,7 +223969,7 @@ description: Launch executable: adventure-communist.app type: none -'462940': +"462940": installDir: Making History SWW launch: - config: @@ -228146,7 +223987,7 @@ description: Launch executable: mhsww type: none -'462950': +"462950": installDir: The East New World launch: - config: @@ -228161,7 +224002,7 @@ oslist: linux executable: tenw.x86 type: default -'462960': +"462960": installDir: Caveman World Mountains of Unga Boonga launch: - config: @@ -228176,34 +224017,32 @@ oslist: linux executable: Caveman World.x86 type: none -'462990': - installDir: Tomoyo After ~It's a Wonderful Life~ English Edition +"462990": + installDir: "Tomoyo After ~It's a Wonderful Life~ English Edition" launch: - executable: RealLiveEn.exe type: default -'463000': +"463000": installDir: Hero battle launch: - config: oslist: windows executable: FlameLauncher.exe type: none -'463010': +"463010": installDir: One Way Flight launch: - config: oslist: windows executable: OneWayFlight.exe type: default -'463020': +"463020": installDir: Wander No More launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch - description_loc: - english: Launch executable: WanderNoMore.exe - config: oslist: macos @@ -228216,20 +224055,20 @@ executable: WanderNoMore.sh type: none - config: - osarch: '32' + osarch: "32" oslist: windows executable: WanderNoMore-32.exe -'463030': +"463030": installDir: Bottle launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Bottle.exe type: default -'463040': {} -'463050': {} -'463060': +"463040": {} +"463050": {} +"463060": installDir: Clover Tale launch: - config: @@ -228240,17 +224079,17 @@ oslist: macos executable: Clover Tale.app type: none -'463070': +"463070": installDir: Mecha Ritz Steel Rondo launch: - config: oslist: windows - description: 'Play Mecha Ritz: Steel Rondo' + description: "Play Mecha Ritz: Steel Rondo" executable: MECHA_SR.exe type: default - config: oslist: windows - description: 'Configure Mecha Ritz: Steel Rondo' + description: "Configure Mecha Ritz: Steel Rondo" executable: Launcher.exe type: config - config: @@ -228265,7 +224104,7 @@ type: option2 nameLocalized: schinese: 利兹之心:钢铁轮舞曲 -'463100': +"463100": installDir: Liveza Death of the Earth launch: - config: @@ -228279,18 +224118,18 @@ executable: liveza.app type: none - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: nw type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: nw type: none -'463110': +"463110": installDir: Farnham Fables launch: - config: @@ -228298,7 +224137,7 @@ description: Launch executable: FarnhamFables_Episode1.exe type: none -'463120': +"463120": installDir: MOP Operation Cleanup launch: - config: @@ -228311,22 +224150,22 @@ description: Launch executable: MOP Operation Cleanup.app type: none -'463130': +"463130": installDir: Bug N Out launch: - config: oslist: windows executable: BugNOut_Menu.exe type: default -'463140': {} -'463150': +"463140": {} +"463150": installDir: BARRIER X launch: - config: oslist: windows executable: BarrierX.exe type: default -'463160': +"463160": installDir: Super Dungeon Tactics launch: - config: @@ -228337,14 +224176,14 @@ oslist: macos executable: SDT.app type: default -'463170': +"463170": installDir: Jagged Alliance Rage launch: - config: oslist: windows executable: JAN.exe type: default -'463180': +"463180": installDir: Super Blue Fighter launch: - config: @@ -228359,11 +224198,11 @@ oslist: macos executable: Resources/SuperBlueFighter type: none -'46320': +"46320": installDir: Space Rangers launch: - executable: Rangers.exe -'463210': +"463210": installDir: State of Anarchy launch: - config: @@ -228378,7 +224217,7 @@ oslist: linux executable: State of Anarchy.x86_64 type: none -'463220': +"463220": installDir: Dungeon of Zolthan launch: - config: @@ -228389,52 +224228,52 @@ oslist: macos executable: Dungeon of Zolthan.app type: none -'463240': {} -'463250': +"463240": {} +"463250": installDir: ONE TOWER launch: - config: oslist: windows executable: One Tower.exe type: default -'463270': +"463270": installDir: Ghost launch: - - arguments: '-console' + - arguments: "-console" config: oslist: windows description: Launch with console executable: ghost.exe type: none -'463290': +"463290": installDir: Kismet launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Kismet - Non-VR Version executable: 2D/kismetVr.exe type: default workingdir: 2D - config: - osarch: '64' + osarch: "64" oslist: windows description: Kismet - VIVE Version executable: SteamVR/kismetVr.exe type: vr workingdir: SteamVR - config: - osarch: '64' + osarch: "64" oslist: windows description: Kismet - Oculus Version executable: Oculus/kismetVr.exe type: othervr workingdir: Oculus -'46330': +"46330": installDir: Space Rangers 2 Reboot launch: - executable: Rangers.exe -'463320': +"463320": installDir: The Sea Eternal launch: - config: @@ -228449,14 +224288,14 @@ oslist: linux executable: SeaEternal type: none -'463350': +"463350": installDir: Storm of Spears launch: - config: oslist: windows executable: Storm of Spears.exe type: none -'463390': +"463390": installDir: One Thousand Lies launch: - config: @@ -228471,7 +224310,7 @@ oslist: linux executable: One Thousand Lies.sh type: default -'46340': +"46340": installDir: Theatre of War 2 Africa 1943 launch: - config: @@ -228495,15 +224334,15 @@ oslist: windows description: Configure executable: options.exe -'463400': +"463400": installDir: Spellbound launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Spellbound.exe type: vr -'463410': +"463410": installDir: Panic Pump launch: - config: @@ -228521,14 +224360,14 @@ description: Panic Pump executable: PanicPump.x86 type: default -'463430': +"463430": installDir: Ironguard launch: - config: oslist: windows executable: Ironguard.exe type: default -'463440': +"463440": installDir: Retool launch: - config: @@ -228540,16 +224379,16 @@ executable: retool.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: retool.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: retool.x86_64 type: default -'463450': +"463450": installDir: Bipolar Game launch: - config: @@ -228557,8 +224396,8 @@ description: Launch executable: Bipolar.exe type: default -'463460': - installDir: 'Resette''s Prescription ~Book of memory, Swaying scale~' +"463460": + installDir: "Resette's Prescription ~Book of memory, Swaying scale~" launch: - config: oslist: windows @@ -228568,21 +224407,21 @@ betakey: test executable: game.exe type: none -'463470': +"463470": installDir: Lithium Inmate 39 launch: - config: oslist: windows executable: Lithium.exe type: default -'463480': +"463480": installDir: A Shooty Bit launch: - config: oslist: windows executable: AShootyBit_9_1_5_ix.exe type: default -'46350': +"46350": installDir: Real Warfare launch: - executable: engine.exe @@ -228590,73 +224429,61 @@ executable: config.exe - description: Launch Real Warfare Editor executable: editor.exe -'463510': - installDir: Norman's Great Illusion +"463510": + installDir: "Norman's Great Illusion" launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: Norman's Great Illusion.exe + executable: "Norman's Great Illusion.exe" type: default -'463520': {} -'463530': +"463520": {} +"463530": installDir: Empires of the Undergrowth launch: - - arguments: '-DX11' + - arguments: "-DX11" config: oslist: windows description: Empires of the Undergrowth with DirectX 11 - description_loc: - english: Empires of the Undergrowth with DirectX 11 executable: EotU.exe type: option1 - config: oslist: macos executable: EotU.app type: default - - arguments: '-vulkan' + - arguments: "-vulkan" config: oslist: linux description: Empires of the Undergrowth with Vulkan (experimental) - description_loc: - english: Empires of the Undergrowth with Vulkan (experimental) executable: EotU.sh type: option1 - - arguments: '-DX12' + - arguments: "-DX12" config: oslist: windows description: Empires of the Undergrowth with DirectX 12 - description_loc: - english: Empires of the Undergrowth with DirectX 12 executable: EotU.exe type: option1 - - arguments: '-opengl3' + - arguments: "-opengl3" config: oslist: linux description: Empires of the Undergrowth with OpenGL 3 - description_loc: - english: Empires of the Undergrowth with OpenGL 3 executable: EotU.sh type: option2 - - arguments: '-opengl4' + - arguments: "-opengl4" config: oslist: linux description: Empires of the Undergrowth with OpenGL 4 - description_loc: - english: Empires of the Undergrowth with OpenGL 4 executable: EotU.sh type: option3 - - arguments: '-vulkan' + - arguments: "-vulkan" config: oslist: windows description: Empires of the Undergrowth with Vulkan (experimental) - description_loc: - english: Empires of the Undergrowth with Vulkan (experimental) executable: EotU.exe type: option1 nameLocalized: schinese: 地下蚁国 -'463540': +"463540": installDir: StreetCraft launch: - config: @@ -228664,17 +224491,17 @@ executable: StreetCraft.exe type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: StreetCraft type: default - config: - osarch: '64' + osarch: "64" oslist: macos - executable: StreetCraft.app\\Contents\\MacOS\\ClientMac + executable: "StreetCraft.app\\\\Contents\\\\MacOS\\\\ClientMac" type: default -'463550': {} -'46360': +"463550": {} +"46360": installDir: Theatre of War II Kursk 1943 launch: - config: @@ -228698,25 +224525,25 @@ oslist: windows description: Configure executable: options.exe -'463620': {} -'463670': +"463620": {} +"463670": installDir: Runeyana launch: - config: oslist: windows executable: Runeyana.exe type: default -'463680': {} -'46370': +"463680": {} +"46370": installDir: Rig n Roll launch: - executable: rungame.exe -'463700': +"463700": installDir: Super Cloudbuilt launch: - executable: PummelGame.exe type: default -'463710': +"463710": installDir: Puzzle Galaxies launch: - config: @@ -228729,11 +224556,11 @@ description: Launch executable: Puzzle Galaxies.app type: none -'463760': +"463760": installDir: The Beggars Ride launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TBR_x64.exe type: default @@ -228742,18 +224569,18 @@ executable: TBR.app type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: TBR_x86.exe type: default -'46380': +"46380": installDir: Reign Conflict of Nations launch: - config: oslist: windows executable: PSP.exe type: default -'463800': +"463800": installDir: FreeHolder launch: - config: @@ -228764,14 +224591,14 @@ oslist: macos executable: FHAlphaMac.app type: default -'463830': +"463830": installDir: Izeriya launch: - config: oslist: windows executable: Izeriya.exe type: default -'463850': +"463850": installDir: Muddy Heights 2 launch: - config: @@ -228779,7 +224606,7 @@ description: Play Game executable: Muddy Heights 2.exe type: default -'463860': +"463860": installDir: ShadowsOfKurgansk launch: - config: @@ -228788,40 +224615,40 @@ type: default - config: oslist: macos - executable: ShadowsOfKurgansk.app\\Contents\\MacOS\\ShadowsOfKurgansk + executable: "ShadowsOfKurgansk.app\\\\Contents\\\\MacOS\\\\ShadowsOfKurgansk" type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: ShadowsOfKurgansk.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: ShadowsOfKurgansk.x86_64 type: default -'463870': +"463870": installDir: Deathwave launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: DeathWave.exe type: default -'463880': +"463880": installDir: Beyond Magic launch: - description: Launch executable: Game.exe type: none -'463920': +"463920": installDir: Initia Elemental Arena launch: - config: oslist: windows executable: InitiaElementalArena.exe type: default -'463930': +"463930": installDir: The Dweller launch: - config: @@ -228829,12 +224656,12 @@ executable: The Dweller.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: TheDweller.x86_64 type: none -'463940': {} -'463980': +"463940": {} +"463980": installDir: Solitairica launch: - config: @@ -228845,56 +224672,56 @@ oslist: macos executable: Solitairica.app type: default -'46400': +"46400": installDir: Greed Black Border launch: - executable: Greed.exe - - description: 'Launch Greed: Black Border Options Menu' + - description: "Launch Greed: Black Border Options Menu" executable: Options.exe -'464000': +"464000": installDir: ArcadeSaga launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ArcadeSaga.exe type: vr -'464020': +"464020": installDir: SuperPuzzleGalaxy launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SuperPuzzleGalaxy.exe type: vr -'464040': +"464040": installDir: Log Drive Runner launch: - config: oslist: windows executable: LogDriveRunner.exe type: default -'464050': +"464050": installDir: Heroes Must Die launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: HeroesMustDieWin.exe type: default - config: - osarch: '64' + osarch: "64" oslist: macos executable: HeroesMustDieMac.app/Contents/MacOS/HeroesMustDieMac type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: HeroesMustDieWin.exe type: default - executable: HMD Show.m4v type: default -'464060': +"464060": installDir: RUINER launch: - config: @@ -228906,27 +224733,27 @@ oslist: linux executable: Ruiner.sh type: default -'464070': +"464070": installDir: DBoN launch: - config: oslist: windows executable: Ninja.exe type: default -'464080': +"464080": installDir: Kyoto Colorful Days launch: - config: oslist: windows executable: KCD.exe type: default -'46410': +"46410": installDir: Avencast launch: - executable: Avencast.exe - description: Launch Options Menu executable: Options.exe -'464100': +"464100": installDir: Codex of Victory launch: - config: @@ -228941,14 +224768,14 @@ oslist: macos executable: Codex_of_Victory_macOS.app type: default -'464110': +"464110": installDir: Factotum 90 launch: - config: oslist: windows executable: win.exe type: default -'464150': +"464150": installDir: Regalia Of Men and Monarchs launch: - config: @@ -228956,12 +224783,12 @@ executable: Regalia.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Regalia.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Regalia.x86_64 type: default @@ -228969,11 +224796,11 @@ oslist: macos executable: Regalia.app type: default -'46420': +"46420": installDir: Chrome launch: - executable: Chrome.exe -'464230': +"464230": installDir: Colours of Magic Aqua Teeter launch: - config: @@ -228989,14 +224816,14 @@ oslist: linux executable: CM.sh type: none -'464240': +"464240": installDir: Detective Hunt launch: - config: oslist: windows executable: Detective Hunt.exe type: none -'464260': +"464260": installDir: Xeno Crisis launch: - config: @@ -229005,23 +224832,23 @@ type: default - config: oslist: macos - executable: Xeno Crisis.app\\Contents\\MacOS\\Xeno Crisis + executable: "Xeno Crisis.app\\\\Contents\\\\MacOS\\\\Xeno Crisis" type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Xeno Crisis.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Xeno Crisis.x86_64 type: default -'46430': +"46430": installDir: Chrome Specforce launch: - executable: SpecForce.exe -'464340': +"464340": installDir: Syberia3 launch: - config: @@ -229031,7 +224858,7 @@ - config: betakey: gamescom2016 oslist: windows - executable: \\2016_08_09_Build_Hebdo_04_Demo_Gamescom\\Syberia3.exe + executable: "\\\\2016_08_09_Build_Hebdo_04_Demo_Gamescom\\\\Syberia3.exe" type: default - config: betakey: igromir2016 @@ -229040,17 +224867,17 @@ type: default - config: betakey: rating - osarch: '64' + osarch: "64" oslist: windows description: Rating executable: Syberia3.exe type: default - config: - osarch: '64' + osarch: "64" oslist: macos executable: Syberia3.app type: default -'464350': +"464350": installDir: Screeps launch: - config: @@ -229067,20 +224894,20 @@ type: default - config: oslist: windows - executable: server\\screeps_server.exe + executable: "server\\\\screeps_server.exe" type: server workingdir: server - config: oslist: linux - executable: server\\screeps_server + executable: "server\\\\screeps_server" type: server workingdir: server - config: oslist: macos - executable: server\\screeps_server.app + executable: "server\\\\screeps_server.app" type: server workingdir: server -'464360': +"464360": installDir: 3030 Deathwar Redux launch: - config: @@ -229092,13 +224919,13 @@ description: Mod Manager executable: 3030 Deathwar Mod Manager.exe type: option1 - - arguments: '-lowres -window' + - arguments: "-lowres -window" config: oslist: windows description: game in Safe Mode executable: 3030 Deathwar.exe type: option2 -'464380': +"464380": installDir: Best of Us launch: - config: @@ -229113,32 +224940,32 @@ oslist: linux executable: BestOfUs type: none -'46440': +"46440": installDir: Future Wars launch: - - executable: bin\\win32\\futurewars.exe + - executable: "bin\\\\win32\\\\futurewars.exe" - description: Launch Level Editor - executable: bin\\win32\\leveleditor.exe -'464400': + executable: "bin\\\\win32\\\\leveleditor.exe" +"464400": installDir: Bounce launch: - config: oslist: windows executable: Bounce.exe type: vr -'464440': +"464440": installDir: Annie Amber launch: - config: oslist: windows executable: AnnieAmberPc.exe type: vr -'464450': +"464450": installDir: DoDonPachi Resurrection launch: - executable: default.exe type: default -'464470': +"464470": installDir: BloodGate launch: - config: @@ -229148,13 +224975,13 @@ type: default - config: oslist: macos - executable: BloodGate.app\\Contents\\MacOS\\BloodGate + executable: "BloodGate.app\\\\Contents\\\\MacOS\\\\BloodGate" type: default - config: oslist: linux executable: BloodGate.x86 type: default -'464490': +"464490": installDir: The Afterglow of Grisaia launch: - config: @@ -229163,11 +224990,11 @@ type: none nameLocalized: japanese: グリザイアの残光 -'46450': +"46450": installDir: Grotesque Tactics launch: - executable: GrotesqueTactics.exe -'464500': +"464500": installDir: The Melody of Grisaia launch: - config: @@ -229176,25 +225003,25 @@ type: none nameLocalized: japanese: グリザイアの旋律 -'464530': +"464530": installDir: Cat Meat launch: - config: oslist: windows executable: NekoNiku.exe type: default -'464540': +"464540": installDir: Colosse launch: - config: oslist: windows executable: Colosse-SteamVR.exe type: vr -'46460': +"46460": installDir: Scratches launch: - executable: scream.exe -'464610': +"464610": installDir: Led It Rain launch: - config: @@ -229205,7 +225032,7 @@ oslist: linux executable: Led It Rain_Linux.x86 type: default -'464620': +"464620": installDir: Siralim 2 launch: - config: @@ -229223,63 +225050,63 @@ description: Launch executable: run.sh type: none -'464630': +"464630": installDir: Secret Of The Royal Throne launch: - config: oslist: windows executable: SORT.exe type: default -'464650': +"464650": installDir: Runbow launch: - config: oslist: windows executable: Runbow.exe type: default -'464670': +"464670": installDir: Empty Soul launch: - config: oslist: windows description: Launch Empty Soul! - executable: Empty Soul\\Launcher.exe + executable: "Empty Soul\\\\Launcher.exe" type: default -'464690': +"464690": installDir: Vroomist launch: - config: oslist: windows executable: Vroomist.exe type: none -'464700': +"464700": installDir: Maui launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: Maui.exe type: default -'464740': +"464740": installDir: Monsters and Medicine launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: MonstersAndMedicine.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: MonstersAndMedicine.sh type: default - config: - osarch: '64' + osarch: "64" oslist: macos executable: MonstersAndMedicine.app type: default -'464760': {} -'464780': +"464760": {} +"464780": installDir: ChuSingura46+1 launch: - config: @@ -229290,23 +225117,23 @@ oslist: windows executable: ChuSinGura46+1.exe type: default -'46480': +"46480": installDir: Still Life launch: - executable: Game.exe -'464800': +"464800": installDir: Twisted Worlds launch: - config: oslist: windows executable: TwistedWorlds.exe type: none -'464820': +"464820": installDir: Awakening of Solutio launch: - executable: Awakening of Solutio.exe type: default -'464830': +"464830": installDir: The Great Whale Road launch: - config: @@ -229315,45 +225142,45 @@ type: default - config: oslist: macos - executable: greatwhaleroad.app\\Contents\\MacOS\\greatwhaleroad + executable: "greatwhaleroad.app\\\\Contents\\\\MacOS\\\\greatwhaleroad" type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: greatwhaleroad.x86_64 type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: greatwhaleroad.x86 type: none -'464850': +"464850": installDir: Don Bradman Cricket 17 launch: - config: oslist: windows executable: cricket17.exe type: default -'464880': +"464880": installDir: Stars in Shadow launch: - - arguments: '-noupdate' + - arguments: "-noupdate" config: - osarch: '64' + osarch: "64" oslist: windows executable: sis64.exe type: default - - arguments: '-noupdate' + - arguments: "-noupdate" config: - osarch: '32' + osarch: "32" oslist: windows executable: sis.exe type: default -'46490': +"46490": installDir: Still life 2 launch: - executable: SL2.exe -'464900': +"464900": installDir: Pitfall Planet launch: - config: @@ -229364,11 +225191,11 @@ oslist: macos executable: Pitfall.app type: default -'464920': +"464920": installDir: Surviving Mars launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: MarsSteam.exe type: default @@ -229377,19 +225204,19 @@ executable: MarsSteam.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: MarsSteam type: default -'464940': +"464940": installDir: Sketchfab VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SketchfabVR_Vive.exe type: vr -'464950': +"464950": installDir: Sumer launch: - config: @@ -229404,7 +225231,7 @@ oslist: linux executable: Sumer.x86 type: default -'464960': +"464960": installDir: Hiiro launch: - config: @@ -229412,7 +225239,7 @@ description: Launch executable: Hiiro.exe type: none -'46500': +"46500": installDir: Syberia launch: - config: @@ -229422,7 +225249,7 @@ oslist: macos description: Launch executable: Syberia.app -'465000': +"465000": installDir: Event Horizon launch: - config: @@ -229437,16 +225264,16 @@ oslist: linux executable: eventhorizon.x86_64 type: default -'465010': +"465010": installDir: Quantized launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: PLAY QUANTIZED VR executable: QuantizedVR.exe type: vr -'465020': +"465020": installDir: Sector Six launch: - config: @@ -229457,24 +225284,24 @@ oslist: linux executable: run.sh type: none -'465050': +"465050": installDir: Grey Phobia launch: - config: oslist: windows executable: GreyPhobia.exe type: default -'465060': +"465060": installDir: EXZEAL launch: - executable: ExZeal.exe type: default -'465070': +"465070": installDir: TRIZEAL Remix launch: - executable: TriZeal.exe type: default -'46510': +"46510": installDir: Syberia 2 launch: - config: @@ -229490,7 +225317,7 @@ description: Launcher when Japanese version has been selected executable: Syberia2.exe type: none -'465100': +"465100": installDir: LUNA The Shadow Dust launch: - config: @@ -229502,12 +225329,12 @@ executable: Luna.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Luna.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Luna.x86_64 type: default @@ -229515,19 +225342,19 @@ sc_schinese: 月影之塔 schinese: 月影之塔 tchinese: 月影之塔 -'465130': +"465130": installDir: Wicce launch: - config: oslist: windows executable: Wicce.exe type: default -'465150': +"465150": installDir: Mars launch: - executable: MarsVR.exe type: vr -'465170': +"465170": installDir: Crime Secrets launch: - config: @@ -229536,13 +225363,13 @@ executable: CrimeSecrets.exe type: none - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: CrimeSecrets_i386 type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: CrimeSecrets_amd64 @@ -229552,26 +225379,26 @@ description: Launch executable: mac_steam.app/Contents/MacOS/mac_steam type: none -'465180': +"465180": installDir: One day in London launch: - config: oslist: windows executable: odl.exe type: default -'465190': +"465190": installDir: Space Survival launch: - config: oslist: windows executable: SpaceSurvival.exe type: default -'46520': +"46520": installDir: Wasteland Angel launch: - description: Play Wasteland Angel - executable: ./bin/x86/dx9/Angel.exe -'465200': + executable: "./bin/x86/dx9/Angel.exe" +"465200": installDir: Fury Unleashed launch: - config: @@ -229584,60 +225411,60 @@ type: default - config: oslist: macos - executable: FuryUnleashed.app\\Contents\\MacOS\\FuryUnleashed + executable: "FuryUnleashed.app\\\\Contents\\\\MacOS\\\\FuryUnleashed" type: default -'465240': +"465240": installDir: Serious Sam VR The Last Hope launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: Bin/SamTLH.exe type: vr - config: - osarch: '64' + osarch: "64" oslist: windows description: 64-bit executable: Bin/x64/SamTLH.exe type: vr - arguments: +gfxapi VLK config: - osarch: '64' + osarch: "64" oslist: linux executable: Bin/x64/SamTLH type: vr -'465280': +"465280": installDir: Yesterday Origins launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: YesterdayOrigins.exe type: default - config: - osarch: '64' + osarch: "64" oslist: macos executable: YesterdayOrigins.app/Contents/MacOS/YesterdayOrigins type: default -'465310': +"465310": installDir: Ricerca VR launch: - config: oslist: windows executable: RicercaVR_2016.exe type: vr -'465360': +"465360": installDir: Uprising Join or Die launch: - config: oslist: windows executable: uprising.exe type: none -'46540': +"46540": installDir: Trapped Dead launch: - - executable: bin\\TrappedDead.exe -'465430': + - executable: "bin\\\\TrappedDead.exe" +"465430": installDir: Vertigo launch: - config: @@ -229648,7 +225475,7 @@ oslist: macos executable: Vertigo.app type: vr -'465440': +"465440": installDir: Aplowcalypse launch: - config: @@ -229657,9 +225484,9 @@ type: default - config: oslist: macos - executable: Aplowcalypse.app\\Contents\\MacOS\\Aplowcalypse + executable: "Aplowcalypse.app\\\\Contents\\\\MacOS\\\\Aplowcalypse" type: default -'465450': +"465450": installDir: iOmoon launch: - config: @@ -229672,7 +225499,7 @@ description: Launch Vive Version (SteamVR/OpenVR) executable: iOmoonVive.exe type: vr -'465490': +"465490": installDir: Stellar Tactics launch: - arguments: Abyss.stk @@ -229681,7 +225508,7 @@ executable: StellarTactics.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Abyss.sh type: default @@ -229689,32 +225516,32 @@ oslist: macos executable: StellarTactics.app type: default -'46550': +"46550": installDir: Post Mortem launch: - executable: Game.exe -'465510': +"465510": installDir: Sinful Eden launch: - config: oslist: windows executable: SinfulEdenB6.exe type: default -'465520': +"465520": installDir: PRICE launch: - config: oslist: windows executable: PRICE.exe type: none -'465540': +"465540": installDir: Adventure World launch: - config: oslist: windows executable: Adventure World.exe type: default -'46560': +"46560": installDir: Robin Hood launch: - executable: Game.exe @@ -229722,7 +225549,7 @@ oslist: macos description: Launch executable: Robin Hood.app -'465650': +"465650": installDir: Out of the Park Baseball 18 launch: - config: @@ -229736,14 +225563,14 @@ executable: OOTP Baseball 18.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch OOTP 18 executable: ootp18.sh type: default - config: betakey: beta - osarch: '64' + osarch: "64" oslist: windows description: Launch OOTP 18 (64 bit) executable: ootp18_win64.exe @@ -229762,7 +225589,7 @@ description: Launch OOTP with debug log enabled executable: ootp18.exe type: none -'465660': +"465660": installDir: Franchise Hockey Manager 3 launch: - config: @@ -229775,7 +225602,7 @@ description: Launch FHM 3 (Mac OS X) executable: Franchise Hockey Manager 3.app type: default -'465670': +"465670": installDir: Project G launch: - config: @@ -229783,12 +225610,12 @@ description: Launch executable: ProjectG.exe type: none -'46570': +"46570": installDir: Grotesque Tactics 2 launch: - - executable: x86_installer\\GrotesqueTactics.exe + - executable: "x86_installer\\\\GrotesqueTactics.exe" workingdir: x86_installer -'465710': +"465710": installDir: Heroes Tactics launch: - config: @@ -229799,7 +225626,7 @@ oslist: macos executable: Heroe Stactics.app/Contents/MacOS/Heroes Tactics type: default -'465720': +"465720": installDir: Demon Hunter 2 launch: - config: @@ -229808,13 +225635,13 @@ executable: DemonHunter2.exe type: none - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: DemonHunter2_i386 type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: DemonHunter2_amd64 @@ -229824,7 +225651,7 @@ description: Launch executable: mac_steam.app/Contents/MacOS/mac_steam type: none -'465750': +"465750": installDir: Tank Battle North Africa launch: - config: @@ -229835,7 +225662,7 @@ oslist: macos executable: TankBattleNorthAfrica.app type: default -'465760': +"465760": installDir: Scrap Garden launch: - config: @@ -229849,163 +225676,163 @@ executable: scrap-garden.app type: none - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: scrap-garden.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: scrap-garden.x86_64 type: none -'465780': +"465780": installDir: New Retro Arcade Neon launch: - - arguments: '-vr' - executable: NewRetroArcade\\Binaries\\Win64\\NewRetroArcade.exe + - arguments: "-vr" + executable: "NewRetroArcade\\\\Binaries\\\\Win64\\\\NewRetroArcade.exe" type: vr - - arguments: '-vr' - executable: NewRetroArcade\\Binaries\\Win64\\NewRetroArcade.exe + - arguments: "-vr" + executable: "NewRetroArcade\\\\Binaries\\\\Win64\\\\NewRetroArcade.exe" type: othervr - - arguments: '-nohmd' - executable: NewRetroArcade\\Binaries\\Win64\\NewRetroArcade.exe + - arguments: "-nohmd" + executable: "NewRetroArcade\\\\Binaries\\\\Win64\\\\NewRetroArcade.exe" type: default - description: Configure your arcade experience. executable: NewRetroArcadeBuilder.exe type: config -'465840': +"465840": installDir: THE LAST BLADE launch: - config: oslist: windows executable: LastBlade.exe type: default -'465860': - installDir: Awakening The Sunhook Spire Collector's Edition +"465860": + installDir: "Awakening The Sunhook Spire Collector's Edition" launch: - executable: Awakening_SunhookSpireCE.exe type: none -'465870': +"465870": installDir: SHOCK TROOPERS 2nd Squad launch: - config: oslist: windows executable: shocktr2.exe type: default -'465890': - installDir: Dark Parables The Final Cinderella Collector's Edition +"465890": + installDir: "Dark Parables The Final Cinderella Collector's Edition" launch: - executable: DarkParables_TheFinalCinderella_CE.exe type: none -'465900': - installDir: Dark Tales Edgar Allan Poe's The Gold Bug Collector's Edition +"465900": + installDir: "Dark Tales Edgar Allan Poe's The Gold Bug Collector's Edition" launch: - executable: DarkTales_EdgarAllanPoesTheGoldBugCE.exe type: none -'465920': - installDir: Echoes of the Past The Revenge of the Witch Collector's Edition +"465920": + installDir: "Echoes of the Past The Revenge of the Witch Collector's Edition" launch: - executable: EchoesOfThePast_TheRevengeOfTheWitch_CE.exe type: none -'465930': +"465930": installDir: OddPlanet launch: - config: oslist: windows executable: OddPlanet.exe type: default -'465960': +"465960": installDir: Farm Tribe launch: - executable: FarmTribe.exe type: none -'465970': +"465970": installDir: Grave Mania Undead Fever launch: - executable: GraveMania.exe type: none -'465990': - installDir: Hidden Expedition The Crown of Solomon Collector's Edition +"465990": + installDir: "Hidden Expedition The Crown of Solomon Collector's Edition" launch: - executable: HiddenExpedition_TheCrownOfSolomonCE.exe type: none -'46600': +"46600": installDir: Swarm Arena launch: - executable: swarm.exe -'466000': - installDir: Maze Subject 360 Collector's Edition +"466000": + installDir: "Maze Subject 360 Collector's Edition" launch: - executable: Maze_Subject360_CE.exe type: none -'466010': - installDir: Nevertales The Beauty Within Collector's Edition +"466010": + installDir: "Nevertales The Beauty Within Collector's Edition" launch: - executable: Nevertales_TheBeautyWithin_CE.exe type: none -'466020': - installDir: Off the Record The Linden Shades Collector's Edition +"466020": + installDir: "Off the Record The Linden Shades Collector's Edition" launch: - executable: OffTheRecord_LindenShadesCE.exe type: none -'466030': - installDir: Otherworld Spring of Shadows Collector's Edition +"466030": + installDir: "Otherworld Spring of Shadows Collector's Edition" launch: - executable: Otherworld_SpringofShadowsCE.exe type: none -'466040': +"466040": installDir: Pet Store Panic launch: - executable: Pet Store Panic.exe type: none -'466050': +"466050": installDir: Redemption Cemetery Salvation of the Lost CE launch: - executable: RedemptionCemetery_SalvationOfTheLost_CE.exe type: none -'466060': - installDir: Shiver Vanishing Hitchhiker Collector's Edition +"466060": + installDir: "Shiver Vanishing Hitchhiker Collector's Edition" launch: - executable: SHIVER_VanishingHitchhiker.exe type: none -'466070': +"466070": installDir: Spa Mania launch: - executable: spamania.exe type: none -'466080': - installDir: Surface The Pantheon Collector's Edition +"466080": + installDir: "Surface The Pantheon Collector's Edition" launch: - executable: Surface_ThePantheonCE.exe type: none -'466100': - installDir: Witches' Legacy The Ties That Bind Collector's Edition +"466100": + installDir: "Witches' Legacy The Ties That Bind Collector's Edition" launch: - executable: WitchesLegacy_TheTiesThatBind_CE.exe type: none -'466110': +"466110": installDir: Shaolin vs Wutang launch: - config: oslist: windows executable: SvW.exe type: none -'466130': +"466130": installDir: White Day a labyrinth named school launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: WhiteDay.exe type: default -'466160': +"466160": installDir: Arelite Core launch: - executable: Arelite Core.exe type: default -'466170': +"466170": installDir: Idling to Rule the Gods launch: - config: @@ -230020,43 +225847,39 @@ oslist: windows executable: Idling to Rule the Gods.exe type: default -'466210': +"466210": installDir: Race & Destroy launch: - config: oslist: windows executable: Race&Destroy.exe type: default -'466220': +"466220": installDir: KINGDOM_OF_LOOT launch: - config: oslist: windows executable: KOL.exe type: default - - arguments: '-music -window -steam' + - arguments: "-music -window -steam" config: oslist: linux executable: KOL type: none -'466240': +"466240": installDir: Deceit launch: - - arguments: '-project Deceit.crygame' + - arguments: "-project Deceit.crygame" description: Launch - description_loc: - english: Launch executable: start_protected_game.exe type: default - - arguments: '-project Deceit.crygame' + - arguments: "-project Deceit.crygame" config: betakey: legacy description: Legacy Deceit - description_loc: - english: Legacy Deceit - executable: bin\\win_x64\\Deceit.exe + executable: "bin\\\\win_x64\\\\Deceit.exe" type: option1 -'466280': +"466280": installDir: Super Cube Smash launch: - config: @@ -230067,18 +225890,18 @@ oslist: macos executable: SuperCubeSmash_V1.0.app type: default -'466290': +"466290": installDir: BitShift_BattleGrid launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: BitShiftBattleGrid.exe type: vr - description: VR enables=d executable: BitShiftBattleGrid.exe type: default -'466300': +"466300": installDir: Project P launch: - config: @@ -230093,7 +225916,7 @@ oslist: linux executable: Torment type: default -'466350': +"466350": installDir: Fossil Echo launch: - config: @@ -230108,14 +225931,14 @@ oslist: linux executable: FossilEcho type: none -'466420': - installDir: Warriors' Wrath +"466420": + installDir: "Warriors' Wrath" launch: - config: oslist: windows - executable: Warriors' Wrath.exe + executable: "Warriors' Wrath.exe" type: default -'466430': +"466430": installDir: Choice of Alexandria launch: - config: @@ -230130,9 +225953,9 @@ oslist: linux executable: Alexandria type: none -'466450': {} -'466480': {} -'466490': +"466450": {} +"466480": {} +"466490": installDir: Princess Isabella The Rise of an Heir launch: - config: @@ -230141,13 +225964,13 @@ executable: princess3.exe type: none - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: princess3_i386 type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: princess3_amd64 @@ -230157,32 +225980,32 @@ description: Launch executable: mac_steam.app/Contents/MacOS/mac_steam type: none -'466500': +"466500": installDir: 35MM launch: - config: oslist: windows executable: 35MM.exe type: default -'466520': +"466520": installDir: Drone Hunter VR launch: - config: oslist: windows executable: DroneHunterVR.exe type: vr -'466560': +"466560": installDir: Northgard launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Northgard DirectX executable: Northgard.exe type: option1 - arguments: sdlboot.dat config: - osarch: '64' + osarch: "64" oslist: windows description: Northgard OpenGL executable: Northgard.exe @@ -230199,17 +226022,13 @@ - config: oslist: windows description: Northgard DirectX 32bits - description_loc: - english: Northgard DirectX 32bits executable: ng32/Northgard.exe type: option1 - arguments: sdlboot.dat config: - osarch: '32' + osarch: "32" oslist: windows description: Northgard SDL 32bits - description_loc: - english: Northgard SDL 32bits executable: ng32/Northgard.exe type: option1 - config: @@ -230217,18 +226036,18 @@ description: Northgard Fail safe (no steam overlay) executable: osx/run.sh type: option1 -'466580': - installDir: GOD's DEATH +"466580": + installDir: "GOD's DEATH" launch: - config: oslist: windows executable: game.exe type: default -'466630': +"466630": installDir: The Pedestrian launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ThePed_Win_64.exe type: none @@ -230237,15 +226056,15 @@ executable: ThePed_Mac_64.app type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: ThePed_Linux_64.x86_64 type: none -'466660': +"466660": installDir: Stash launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: Stash.exe type: default @@ -230258,19 +226077,19 @@ executable: Stash type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: Stash.exe type: default -'466720': +"466720": installDir: Vintage VR launch: - config: oslist: windows executable: VintageVR.exe type: vr -'466730': - installDir: King's Guard TD +"466730": + installDir: "King's Guard TD" launch: - config: oslist: windows @@ -230280,20 +226099,20 @@ oslist: macos executable: KingsGuardTD.app type: none -'466740': +"466740": installDir: ARAYA launch: - - arguments: '-screen-fullscreen' + - arguments: "-screen-fullscreen" config: oslist: windows executable: Araya.exe type: default - - arguments: '-screen-fullscreen' + - arguments: "-screen-fullscreen" config: oslist: windows executable: Araya.exe type: othervr -'466770': +"466770": installDir: Ghost Croquet launch: - config: @@ -230307,15 +226126,15 @@ - config: oslist: macos executable: GhostCroquet.app -'466780': +"466780": installDir: Prehistoric Tales launch: - config: oslist: windows executable: PrehistoricTales.exe type: default -'466790': {} -'466800': +"466790": {} +"466800": installDir: The Dope Game launch: - config: @@ -230330,7 +226149,7 @@ oslist: macos executable: The Dope Game.app type: default -'466810': +"466810": installDir: Soulslayer launch: - config: @@ -230348,64 +226167,64 @@ nameLocalized: schinese: 灭魂~误佳期 tchinese: 滅魂~誤佳期 -'466820': +"466820": installDir: Zenodyne R launch: - config: oslist: windows executable: Zenodyne_Remake.exe type: default -'466830': +"466830": installDir: Remnants of a Beautiful Day launch: - config: oslist: windows - executable: 'Remnants of a Beautiful Day [Win]\\Remnants of a Beautiful Day.exe' + executable: "Remnants of a Beautiful Day [Win]\\\\Remnants of a Beautiful Day.exe" type: none - config: oslist: linux - executable: 'Remnants of a Beautiful Day [Linux]\\Remnants of a Beautiful Day.x86' + executable: "Remnants of a Beautiful Day [Linux]\\\\Remnants of a Beautiful Day.x86" type: none - config: oslist: macos - executable: 'Remnants of a Beautiful Day [Mac]\\Remnants of a Beautiful Day.app' + executable: "Remnants of a Beautiful Day [Mac]\\\\Remnants of a Beautiful Day.app" type: none -'466840': +"466840": installDir: Super Space Pug launch: - config: oslist: windows executable: SuperSpacePug.exe type: default -'466860': +"466860": installDir: City of God I - Prison Empire launch: - config: oslist: windows executable: cog.exe type: default -'466870': +"466870": installDir: Aurora Nights launch: - config: oslist: windows executable: Aurora.exe type: default -'466890': +"466890": installDir: ZION launch: - config: oslist: windows executable: ZION.exe type: default -'466900': +"466900": installDir: HideAndSpook launch: - config: oslist: windows executable: Hide&Spook.exe type: vr -'466910': +"466910": installDir: Worm.is The Game launch: - config: @@ -230418,20 +226237,20 @@ description: Launch executable: Wormis.app/Contents/MacOS/Wormis type: none -'466920': +"466920": installDir: Mugen Souls Z launch: - description: Launch executable: MugenSoulsZ.exe type: none -'466940': +"466940": installDir: The Sandbox Evolution launch: - config: oslist: windows executable: TheSandbox2.exe type: default -'466980': +"466980": installDir: CantDriveThis launch: - config: @@ -230443,28 +226262,28 @@ executable: Cantdrivethis.app type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: Cantdrivethis.x86_64 type: none -'46700': +"46700": installDir: Ironclads American Civil War launch: - - arguments: '-Launch' + - arguments: "-Launch" executable: Ironclads.exe -'467000': +"467000": installDir: Insincere launch: - executable: Insincere v1.exe type: none -'467010': +"467010": installDir: Fall of Civilization launch: - config: oslist: windows executable: FallofCivilization.exe type: none -'467060': +"467060": installDir: Dead Army - Radio Frequency launch: - config: @@ -230479,7 +226298,7 @@ oslist: linux executable: deadarmygame.x86_64 type: default -'467090': +"467090": installDir: A Game of Changes launch: - config: @@ -230494,12 +226313,12 @@ oslist: macos executable: agoc.app/Contents/MacOS/agoc type: default -'46710': +"46710": installDir: Ironclads High Seas launch: - - arguments: '-Launch' + - arguments: "-Launch" executable: Ironclads_High_Seas.exe -'467120': +"467120": installDir: Rising Runner launch: - config: @@ -230522,7 +226341,7 @@ description: Launch the Rising Runner Level Editor executable: editor type: editor -'467170': +"467170": installDir: Subterrarium launch: - config: @@ -230533,11 +226352,11 @@ oslist: macos executable: Subterrarium.app type: default -'46720': +"46720": installDir: Dimensity launch: - - executable: bin\\DimensityPL.exe -'467210': + - executable: "bin\\\\DimensityPL.exe" +"467210": installDir: Evo Explores launch: - config: @@ -230546,31 +226365,31 @@ type: default - config: oslist: macos - executable: evo.app\\Contents\\MacOS\\evo + executable: "evo.app\\\\Contents\\\\MacOS\\\\evo" type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: evo.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: evo.x86_64 type: default -'467220': +"467220": installDir: Dyna Bomb launch: - config: oslist: windows - executable: win32\\DynaBomb-Steam-1.0.0.7.exe + executable: "win32\\\\DynaBomb-Steam-1.0.0.7.exe" type: default - config: - osarch: '64' + osarch: "64" oslist: macos - executable: Dyna Bomb.app\\Contents\\MacOS\\Mac_Runner + executable: "Dyna Bomb.app\\\\Contents\\\\MacOS\\\\Mac_Runner" type: none -'467270': +"467270": installDir: Weaves of Fate launch: - config: @@ -230578,66 +226397,66 @@ description: Launch executable: weavesoffate.exe type: default -'467290': +"467290": installDir: Starship Titanic launch: - - arguments: '--no-console -c \"scummvm-titanic-opengl.ini\" titanic-win' + - arguments: "--no-console -c \\\"scummvm-titanic-opengl.ini\\\" titanic-win" config: oslist: windows - executable: ScummVM_Windows\\scummvm.exe + executable: "ScummVM_Windows\\\\scummvm.exe" type: default - workingdir: ScummVM_Windows\\ - - arguments: '--no-console -c \"scummvm-titanic-safe.ini\" titanic-win' + workingdir: "ScummVM_Windows\\\\" + - arguments: "--no-console -c \\\"scummvm-titanic-safe.ini\\\" titanic-win" config: oslist: windows - description: Play in 'Safe Graphics' Mode - executable: ScummVM_Windows\\scummvm.exe + description: "Play in 'Safe Graphics' Mode" + executable: "ScummVM_Windows\\\\scummvm.exe" type: none - workingdir: ScummVM_Windows\\ - - arguments: '-c scummvm-titanic-opengl.ini titanic-win' + workingdir: "ScummVM_Windows\\\\" + - arguments: "-c scummvm-titanic-opengl.ini titanic-win" config: oslist: macos - executable: ScummVM_Mac\\ScummVM.app\\Contents\\MacOS\\scummvm + executable: "ScummVM_Mac\\\\ScummVM.app\\\\Contents\\\\MacOS\\\\scummvm" type: default - workingdir: ScummVM_Mac\\ - - arguments: '-c scummvm-titanic-safe.ini titanic-win' + workingdir: "ScummVM_Mac\\\\" + - arguments: "-c scummvm-titanic-safe.ini titanic-win" config: oslist: macos - description: Play in 'Safe Graphics' Mode - executable: ScummVM_Mac\\ScummVM.app\\Contents\\MacOS\\scummvm + description: "Play in 'Safe Graphics' Mode" + executable: "ScummVM_Mac\\\\ScummVM.app\\\\Contents\\\\MacOS\\\\scummvm" type: none - workingdir: ScummVM_Mac\\ + workingdir: "ScummVM_Mac\\\\" - config: - osarch: '64' + osarch: "64" oslist: linux - executable: ScummVM_Linux\\launch_titanic_opengl.sh + executable: "ScummVM_Linux\\\\launch_titanic_opengl.sh" type: default - workingdir: ScummVM_Linux\\ + workingdir: "ScummVM_Linux\\\\" - config: - osarch: '64' + osarch: "64" oslist: linux - description: Play in 'Safe Graphics' Mode - executable: ScummVM_Linux\\launch_titanic_safe.sh + description: "Play in 'Safe Graphics' Mode" + executable: "ScummVM_Linux\\\\launch_titanic_safe.sh" type: none - workingdir: ScummVM_Linux\\ + workingdir: "ScummVM_Linux\\\\" - config: betakey: previous oslist: windows description: Launch Non-ScummVM version of Titanic executable: ST.EXE type: none -'46730': +"46730": installDir: Hazen The Dark Whispers launch: - - executable: bin\\Hazen.exe -'467310': + - executable: "bin\\\\Hazen.exe" +"467310": installDir: Rogue Port - Red Nightmare launch: - config: oslist: windows executable: game.exe type: default -'467320': +"467320": installDir: God of Word launch: - config: @@ -230646,24 +226465,24 @@ type: default - config: oslist: macos - executable: GodOfWord.app\\Contents\\MacOS\\GodOfWord + executable: "GodOfWord.app\\\\Contents\\\\MacOS\\\\GodOfWord" type: default -'467330': +"467330": installDir: Just a Cleric launch: - config: oslist: windows executable: JAC.exe type: default -'467340': {} -'467350': +"467340": {} +"467350": installDir: Leveron Space launch: - config: oslist: windows executable: LeveronSpace.exe type: none -'467360': +"467360": installDir: Off-Peak launch: - config: @@ -230678,7 +226497,7 @@ oslist: linux executable: Off-Peak Steam 2.0.x86 type: default -'467370': +"467370": installDir: Escape This launch: - config: @@ -230694,14 +226513,14 @@ oslist: windows executable: Escape This - Neon.exe type: default -'467380': +"467380": installDir: Khimera Destroy All Monster Girls launch: - config: oslist: windows executable: khimera1.exe type: default -'467390': +"467390": installDir: Approaching Blocks launch: - config: @@ -230709,12 +226528,12 @@ executable: ab.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Approaching blocks.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Approaching blocks.x86 type: default @@ -230722,12 +226541,12 @@ oslist: macos executable: Approaching Blocks.app type: default -'46740': +"46740": installDir: World Basketball Manager 2010 launch: - - arguments: '-Launch' + - arguments: "-Launch" executable: WBM.exe -'467400': +"467400": installDir: Go For Launch Mercury launch: - config: @@ -230742,14 +226561,14 @@ oslist: windows executable: Go For Launch Mercury.exe type: othervr -'467430': +"467430": installDir: Farming 6-in-1 bundle launch: - config: oslist: windows executable: Farm6in1Bundle.exe type: none -'467440': +"467440": installDir: Insignificant launch: - config: @@ -230761,17 +226580,17 @@ executable: Insignificant_macOS.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Insignificant_Linux.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Insignificant_Linux.x86_64 type: default -'467460': {} -'467470': +"467460": {} +"467470": installDir: Shoot Shoot Mega Pack launch: - config: @@ -230780,9 +226599,9 @@ type: default - config: oslist: macos - executable: ssmp.app\\Contents\\MacOS\\ssmp + executable: "ssmp.app\\\\Contents\\\\MacOS\\\\ssmp" type: default -'467480': +"467480": installDir: COSM launch: - config: @@ -230791,25 +226610,25 @@ type: vr - config: oslist: macos - executable: COSM.app\\Contents\\MacOS\\COSM + executable: "COSM.app\\\\Contents\\\\MacOS\\\\COSM" type: default - config: oslist: windows executable: COSM.exe type: default -'467490': +"467490": installDir: GRAVEN The Purple Moon Prophecy launch: - config: oslist: windows executable: graven.exe type: default -'46750': +"46750": installDir: Dark Fall Lost Souls launch: - - arguments: '-Launch' + - arguments: "-Launch" executable: DarkFallLostSouls.exe -'467520': +"467520": installDir: Power & Revolution launch: - config: @@ -230820,49 +226639,49 @@ oslist: macos executable: POWER AND REVOLUTION STEAM.app type: none -'467530': {} -'467540': {} -'467560': {} -'467570': +"467530": {} +"467540": {} +"467560": {} +"467570": installDir: TITANS launch: - config: oslist: windows executable: TITANS.exe type: default -'46760': +"46760": installDir: Ironclads Schleswig War 1864 launch: - - arguments: '-Launch' + - arguments: "-Launch" executable: Ironclads_Schleswig_War.exe - - description: 'Configure Ironclads: Schleswig War' + - description: "Configure Ironclads: Schleswig War" executable: Config.exe -'467650': +"467650": installDir: Demolition launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: demolition.exe type: none -'467660': +"467660": installDir: Paranormal Activity The Lost Soul launch: - - arguments: '-vr' + - arguments: "-vr" config: - osarch: '64' + osarch: "64" oslist: windows description: PAVR executable: PA_UE4.exe type: vr - - arguments: '-nohmd' + - arguments: "-nohmd" config: - osarch: '64' + osarch: "64" oslist: windows description: NON-VR MODE executable: PA_UE4.exe type: option1 -'467680': +"467680": installDir: Love Stories Adult launch: - config: @@ -230880,8 +226699,8 @@ description: Launch executable: LoveStories.app type: none -'467690': {} -'46770': +"467690": {} +"46770": installDir: Making History II launch: - config: @@ -230894,15 +226713,15 @@ oslist: linux description: Launch executable: mh2 -'467700': {} -'467710': +"467700": {} +"467710": installDir: Santa Girls launch: - config: oslist: windows executable: SantaGirls.exe type: none -'467720': +"467720": installDir: Roomie Romance launch: - config: @@ -230910,8 +226729,8 @@ description: Launch executable: RoomieRomance.exe type: none -'467740': {} -'467750': +"467740": {} +"467750": installDir: Chromo XY launch: - config: @@ -230919,8 +226738,8 @@ description: Launch executable: ChromoXY.exe type: none -'467760': - installDir: Trapper's Delight +"467760": + installDir: "Trapper's Delight" launch: - config: oslist: windows @@ -230928,20 +226747,20 @@ type: default - config: oslist: macos - executable: TrappersDelight.app\\Contents\\MacOS\\TrappersDelight + executable: "TrappersDelight.app\\\\Contents\\\\MacOS\\\\TrappersDelight" type: default -'467780': +"467780": installDir: simian.interface++ launch: - config: oslist: macos - executable: simian++.app\\Contents\\MacOS\\simian++ + executable: "simian++.app\\\\Contents\\\\MacOS\\\\simian++" type: default - config: oslist: windows executable: simian++.exe type: default -'467790': +"467790": installDir: crongdor launch: - config: @@ -230949,7 +226768,7 @@ executable: crongdor.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: crongdor64 type: default @@ -230963,7 +226782,7 @@ executable: editor.exe type: editor - config: - osarch: '64' + osarch: "64" oslist: linux executable: editor64 type: editor @@ -230972,7 +226791,7 @@ executable: Crongdor.app/Contents/MacOS/editor_osx64 type: editor workingdir: Crongdor.app/Contents/Resources/ -'467810': +"467810": installDir: Splody launch: - config: @@ -230984,11 +226803,11 @@ executable: SplodyLinux.sh type: default - config: - osarch: '64' + osarch: "64" oslist: macos executable: SplodyDarwin64 type: default -'467820': +"467820": installDir: Zero G Arena launch: - config: @@ -231003,40 +226822,40 @@ oslist: linux executable: /Sta/Binaries/Linux/Sta type: default -'467850': +"467850": installDir: METAGAL launch: - config: oslist: windows - executable: metagal\\Meta_gal.exe + executable: "metagal\\\\Meta_gal.exe" type: default - config: oslist: macos - executable: metagal\\Metagal.app + executable: "metagal\\\\Metagal.app" type: default -'46790': +"46790": installDir: Armada 2526 launch: - - executable: bin\\Armada2526.exe -'467900': + - executable: "bin\\\\Armada2526.exe" +"467900": installDir: SWORDY launch: - executable: SWORDY.exe type: default -'467910': +"467910": installDir: EPΘCH launch: - config: oslist: windows executable: Epoch.exe -'467930': +"467930": installDir: SMASHING THE BATTLE launch: - config: oslist: windows executable: STB.exe type: default -'467940': +"467940": installDir: MemoirEnCodeReissue launch: - config: @@ -231051,7 +226870,7 @@ oslist: macos executable: MemoirEnCodeReissue.app/Contents/MacOS/Mac_Runner type: default -'467950': +"467950": installDir: Survive in Space launch: - config: @@ -231059,21 +226878,21 @@ executable: SIS.exe type: default - config: - osarch: '64' + osarch: "64" oslist: macos executable: SIS.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: SIS.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: SIS.x86_64 type: default -'467960': +"467960": installDir: HomeBehind launch: - config: @@ -231081,7 +226900,7 @@ executable: HomeBehind.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: HomeBehind.x86 type: default @@ -231090,36 +226909,36 @@ executable: HomeBehind.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: HomeBehind.x86_64 type: default nameLocalized: schinese: 归家异途 tchinese: 歸家異途 -'467990': +"467990": installDir: Versus Battle of the Gladiator launch: - - arguments: '-steam' + - arguments: "-steam" config: - osarch: '64' + osarch: "64" oslist: windows - executable: Binaries\\Win64\\BEEFGame-Win64-Shipping.exe + executable: "Binaries\\\\Win64\\\\BEEFGame-Win64-Shipping.exe" type: default - - arguments: '-steam' + - arguments: "-steam" config: - osarch: '32' + osarch: "32" oslist: windows - executable: Binaries\\Win32\\BEEFGame-Win32-Shipping.exe + executable: "Binaries\\\\Win32\\\\BEEFGame-Win32-Shipping.exe" type: default -'468000': +"468000": installDir: ImpactWinter launch: - config: oslist: windows executable: ImpactWinter.exe type: default -'468050': +"468050": installDir: The Last Time launch: - config: @@ -231128,82 +226947,82 @@ type: default - config: oslist: macos - executable: The Last Time.app\\Contents\\MacOS\\The Last Time + executable: "The Last Time.app\\\\Contents\\\\MacOS\\\\The Last Time" type: default - config: oslist: linux executable: The Last Time.x86 type: default -'468070': +"468070": installDir: 90 Minute Fever launch: - - arguments: 'webservice=https://live.90minutefever.com/90mf-api-server/restenc/ accountConnect=true' + - arguments: "webservice=https://live.90minutefever.com/90mf-api-server/restenc/ accountConnect=true" config: - osarch: '32' + osarch: "32" oslist: windows description: 32 bit executable: Windows/x86/90 Minute Fever.exe type: none - - arguments: 'webservice=https://live.90minutefever.com/90mf-api-server/restenc/ accountConnect=true' + - arguments: "webservice=https://live.90minutefever.com/90mf-api-server/restenc/ accountConnect=true" config: oslist: macos description: Mac build executable: Mac/90 Minute Fever.app type: none - - arguments: 'webservice=https://live.90minutefever.com/90mf-api-server/restenc/ accountConnect=true' + - arguments: "webservice=https://live.90minutefever.com/90mf-api-server/restenc/ accountConnect=true" config: - osarch: '64' + osarch: "64" oslist: windows description: 64 bit executable: Windows/x64/90 Minute Fever.exe type: none -'468080': +"468080": installDir: Occurrence at JCR Outpost launch: - config: oslist: windows executable: Occurrence.exe type: default -'468100': +"468100": installDir: Aqua Moto Racing Utopia launch: - - arguments: '-nolog' + - arguments: "-nolog" config: oslist: windows executable: AquaMotoRacingUtopia.exe type: default -'468110': +"468110": installDir: Rescuties! VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Rescuties.exe type: vr - config: - osarch: '64' + osarch: "64" oslist: windows executable: Rescuties.exe type: othervr - config: - osarch: '64' + osarch: "64" oslist: windows executable: Rescuties.exe type: default -'468130': +"468130": installDir: Nebula launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: Nebula.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: Nebula.exe type: default -'468150': +"468150": installDir: Trap House launch: - config: @@ -231212,15 +227031,15 @@ type: default - executable: game.exe type: none -'468160': +"468160": installDir: Ancient Go launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: AncientGo.exe type: none -'468170': +"468170": installDir: Doll-City-Prologue launch: - config: @@ -231243,42 +227062,40 @@ description: Doll City Old Version executable: DollCity.exe type: othervr - - arguments: '-windowed -w 1024' + - arguments: "-windowed -w 1024" config: betakey: realvrbetatest description: RealVrBetaTest - description_loc: - english: RealVrBetaTest executable: dcp.exe type: vr -'468240': +"468240": installDir: VR Regatta launch: - config: oslist: windows executable: vrregatta.exe type: vr - - arguments: '-oculusdk' + - arguments: "-oculusdk" config: oslist: windows description: VR Regatta ( Oculus Rift ) executable: vrregatta.exe type: othervr -'468250': +"468250": installDir: Warfare Online launch: - config: oslist: windows executable: WarfareOnline.exe type: default -'46830': +"46830": installDir: Ironclads Anglo Russian War 1866 launch: - - arguments: '-Launch' + - arguments: "-Launch" executable: Ironclads_Anglo_Russian_War.exe - - description: 'Configure Ironclads: Anglo Russian War' + - description: "Configure Ironclads: Anglo Russian War" executable: Config.exe -'468310': +"468310": installDir: She Wants Me Dead launch: - config: @@ -231289,31 +227106,31 @@ oslist: macos executable: swmd.app type: default -'468320': +"468320": installDir: Mini Golf Mundo launch: - config: oslist: windows executable: MiniGolfMundo.exe type: default -'468330': +"468330": installDir: HIVE launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Concept.exe type: none - config: - osarch: '32' + osarch: "32" oslist: windows executable: Concept.exe type: none -'468350': +"468350": installDir: Hexaverse launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: client/Visual Client.exe type: default @@ -231324,14 +227141,14 @@ executable: ServerManager/ServerManager.exe type: server workingdir: ServerManager -'46840': +"46840": installDir: Ironclads Chincha Islands War 1866 launch: - - arguments: '-Launch' + - arguments: "-Launch" executable: Ironclads_Chincha_Islands_War.exe - - description: 'Configure Ironclads: Chincha Islands War' + - description: "Configure Ironclads: Chincha Islands War" executable: Config.exe -'468490': +"468490": installDir: Neon Space launch: - config: @@ -231342,51 +227159,51 @@ oslist: macos executable: NeonSpace.app type: default - - arguments: '-force-opengl' + - arguments: "-force-opengl" config: - osarch: '32' + osarch: "32" oslist: linux executable: NeonSpace.x86 type: default - - arguments: '-force-opengl' + - arguments: "-force-opengl" config: - osarch: '64' + osarch: "64" oslist: linux executable: NeonSpace.x86_64 type: default -'46850': +"46850": installDir: Zombie Pirates launch: - - arguments: '-Launch' + - arguments: "-Launch" executable: ZombiePirates.exe -'468530': +"468530": installDir: A Date in the Park launch: - executable: A Date in the Park.exe type: none - executable: winsetup.exe type: config -'468540': +"468540": installDir: Match More launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: MM.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: MMwin64.exe type: default -'468560': +"468560": installDir: Blind Trust launch: - config: oslist: windows executable: BlindTrust.exe type: none -'468570': +"468570": installDir: De-Void launch: - config: @@ -231394,7 +227211,7 @@ description: Launch executable: Binaries/Win32/UDK.exe type: none -'468650': +"468650": installDir: Super Comboman Smash Edition launch: - config: @@ -231402,22 +227219,22 @@ description: Launch executable: SCM.exe type: none -'468670': +"468670": installDir: SpeedBrawl launch: - config: oslist: windows executable: SpeedBrawl.exe type: default -'468700': +"468700": installDir: NVIDIA VR Funhouse launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: VRFunhouse.exe type: vr -'468740': +"468740": installDir: Snow Fortress launch: - arguments: ArcadeMode @@ -231445,21 +227262,21 @@ description: Arkave Non-VR Host and Spectator executable: SnowFortress.exe type: vr - - arguments: 'ArkaveSDK ' + - arguments: "ArkaveSDK " config: betakey: arkave oslist: windows description: Arkave VR Client executable: SnowFortress.exe type: vr -'468780': +"468780": installDir: The Concourse launch: - config: oslist: windows executable: TheConcourse.exe type: default -'468800': +"468800": installDir: Arkshot launch: - config: @@ -231468,57 +227285,57 @@ type: default - config: oslist: macos - executable: Arkshot.app\\Contents\\MacOS\\Arkshot + executable: "Arkshot.app\\\\Contents\\\\MacOS\\\\Arkshot" type: default - config: oslist: linux executable: Arkshot.x86 type: default -'468820': +"468820": installDir: Titans of Space 2.0 launch: - - arguments: '-platform_steam -sdk_steamvr -hardware_vive' + - arguments: "-platform_steam -sdk_steamvr -hardware_vive" description: using SteamVR headset executable: TitansOfSpace2_0.exe type: vr - - arguments: '-platform_steam -sdk_oculus -hardware_rift' + - arguments: "-platform_steam -sdk_oculus -hardware_rift" description: on Oculus Rift executable: TitansOfSpace2_0.exe type: othervr - - arguments: '-platform_steam -sdk_nonvr -hardware_monitor' + - arguments: "-platform_steam -sdk_nonvr -hardware_monitor" description: Launch on Monitor executable: TitansOfSpace2_0.exe type: none -'468920': +"468920": installDir: Ultimate Fishing launch: - - arguments: '-vrmode None' + - arguments: "-vrmode None" config: - osarch: '64' + osarch: "64" oslist: windows description: 64-bit executable: UltimateFishing.exe type: default - - arguments: '-vrmode None' + - arguments: "-vrmode None" config: - osarch: '32' + osarch: "32" oslist: windows description: 32-bit executable: UltimateFishing32.bat type: default - - arguments: '-vrmode Oculus' + - arguments: "-vrmode Oculus" config: - osarch: '64' + osarch: "64" oslist: windows - ownsdlc: '1137540' + ownsdlc: "1137540" description: UFS VR executable: UltimateFishing.exe type: othervr - - arguments: '-vrmode OpenVR' + - arguments: "-vrmode OpenVR" config: - osarch: '64' + osarch: "64" oslist: windows - ownsdlc: '1137540' + ownsdlc: "1137540" description: UFS VR executable: UltimateFishing.exe type: vr @@ -231527,29 +227344,29 @@ russian: Окончательный Симулятор Рыбалки schinese: 终极钓鱼模拟器 tchinese: 終極釣魚模擬器 -'468930': +"468930": installDir: Phantaruk launch: - config: oslist: windows executable: PhantarukExec.exe type: none -'469550': +"469550": installDir: Bambino Rally 3 launch: - config: oslist: windows executable: MaluchRacer3.exe type: none -'469560': +"469560": installDir: Bowling for VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Hyper Bowling VR.exe type: vr -'469600': +"469600": installDir: Legion TD 2 launch: - config: @@ -231560,15 +227377,15 @@ oslist: macos executable: Legion TD 2.app/Contents/MacOS/Legion TD 2 type: default -'469610': +"469610": installDir: RickAndMortyVR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: RickAndMortyVR.exe type: vr -'469710': +"469710": installDir: Shattered Throne launch: - config: @@ -231580,17 +227397,17 @@ executable: ShatteredThrone.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: shatteredthrone.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: shatteredthrone.x86_64 type: default -'469720': - installDir: Monsters' Den Godfall +"469720": + installDir: "Monsters' Den Godfall" launch: - config: oslist: windows @@ -231600,20 +227417,20 @@ oslist: macos executable: godfall.app/Contents/MacOS/godfall type: default -'469730': +"469730": installDir: Super Mega Neo Pug launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SuperNeoPug.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: SuperNeoPug.exe type: default -'469790': +"469790": installDir: Linelight launch: - config: @@ -231628,30 +227445,30 @@ oslist: linux executable: Linelight.x86 type: default -'469800': +"469800": installDir: Evolution launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Evolution.exe type: default - config: - osarch: '64' + osarch: "64" oslist: macos - executable: Evolution.app\\Contents\\MacOS\\Evolution + executable: "Evolution.app\\\\Contents\\\\MacOS\\\\Evolution" type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: Evolution.exe type: default - config: - osarch: '32' + osarch: "32" oslist: macos - executable: Evolution.app\\Contents\\MacOS\\Evolution + executable: "Evolution.app\\\\Contents\\\\MacOS\\\\Evolution" type: default -'469820': +"469820": installDir: GenitalJousting launch: - config: @@ -231662,35 +227479,35 @@ oslist: macos executable: GenitalJousting.app type: default -'469830': +"469830": installDir: Fortune launch: - config: oslist: windows executable: Fortune.exe type: default -'469890': +"469890": installDir: Space Codex launch: - executable: nw.exe type: default -'469900': +"469900": installDir: Paradox Paradigm launch: - - arguments: '-fullscreen' + - arguments: "-fullscreen" config: oslist: windows - executable: Windows32full\\ParadoxParadigm.exe + executable: "Windows32full\\\\ParadoxParadigm.exe" type: default - config: oslist: windows - executable: Windows32full\\ParadoxParadigm.exe + executable: "Windows32full\\\\ParadoxParadigm.exe" type: default -'469920': +"469920": installDir: hackmud launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: hackmud_win.exe type: default @@ -231699,7 +227516,7 @@ executable: hackmud_lin.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: hackmud_win32.exe type: default @@ -231707,64 +227524,64 @@ oslist: macos executable: hackmud_mac.app type: default -'469930': +"469930": installDir: Pandum launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: pandum.bat type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: pandum.sh type: default -'469980': +"469980": installDir: Legend of Miro launch: - config: oslist: windows executable: Legend of Miro.exe type: default -'469990': +"469990": installDir: NEKOPALIVE launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: Package\\Nekopara\\Binaries\\Win64\\Nekopara.exe + executable: "Package\\\\Nekopara\\\\Binaries\\\\Win64\\\\Nekopara.exe" type: default -'4700': +"4700": installDir: Medieval II Total War launch: - config: oslist: windows - description: 'Medieval II: Total War' + description: "Medieval II: Total War" executable: medieval2.exe - - arguments: '--features.mod=mods/americas' + - arguments: "--features.mod=mods/americas" config: oslist: windows - ownsdlc: '306541' - description: 'Medieval II: Total War Americas' + ownsdlc: "306541" + description: "Medieval II: Total War Americas" executable: medieval2.exe - - arguments: '--features.mod=mods/british_isles' + - arguments: "--features.mod=mods/british_isles" config: oslist: windows - ownsdlc: '306541' - description: 'Medieval II: Total War Britannia' + ownsdlc: "306541" + description: "Medieval II: Total War Britannia" executable: medieval2.exe - - arguments: '--features.mod=mods/crusades' + - arguments: "--features.mod=mods/crusades" config: oslist: windows - ownsdlc: '306541' - description: 'Medieval II: Total War Crusades' + ownsdlc: "306541" + description: "Medieval II: Total War Crusades" executable: medieval2.exe - - arguments: '--features.mod=mods/teutonic' + - arguments: "--features.mod=mods/teutonic" config: oslist: windows - ownsdlc: '306541' - description: 'Medieval II: Total War Teutonic' + ownsdlc: "306541" + description: "Medieval II: Total War Teutonic" executable: medieval2.exe - config: oslist: macos @@ -231774,60 +227591,60 @@ oslist: linux executable: Medieval2.sh type: none - - arguments: '--features.mod=mods/americas' + - arguments: "--features.mod=mods/americas" config: oslist: macos - description: 'Medieval II: Total War Americas' + description: "Medieval II: Total War Americas" executable: Medieval II Total War.app type: none - - arguments: '--features.mod=mods/americas' + - arguments: "--features.mod=mods/americas" config: oslist: linux - description: 'Medieval II: Total War Americas' + description: "Medieval II: Total War Americas" executable: Medieval2.sh type: none - - arguments: '--features.mod=mods/british_isles' + - arguments: "--features.mod=mods/british_isles" config: oslist: macos - description: 'Medieval II: Total War Britannia' + description: "Medieval II: Total War Britannia" executable: Medieval II Total War.app type: none - - arguments: '--features.mod=mods/british_isles' + - arguments: "--features.mod=mods/british_isles" config: oslist: linux - description: 'Medieval II: Total War Britannia' + description: "Medieval II: Total War Britannia" executable: Medieval2.sh type: none - - arguments: '--features.mod=mods/crusades' + - arguments: "--features.mod=mods/crusades" config: oslist: macos - description: 'Medieval II: Total War Crusades' + description: "Medieval II: Total War Crusades" executable: Medieval II Total War.app type: none - - arguments: '--features.mod=mods/crusades' + - arguments: "--features.mod=mods/crusades" config: oslist: linux - description: 'Medieval II: Total War Crusades' + description: "Medieval II: Total War Crusades" executable: Medieval2.sh type: none - - arguments: '--features.mod=mods/teutonic' + - arguments: "--features.mod=mods/teutonic" config: oslist: macos - description: 'Medieval II: Total War Teutonic' + description: "Medieval II: Total War Teutonic" executable: Medieval II Total War.app type: none - - arguments: '--features.mod=mods/teutonic' + - arguments: "--features.mod=mods/teutonic" config: oslist: linux - description: 'Medieval II: Total War Teutonic' + description: "Medieval II: Total War Teutonic" executable: Medieval2.sh type: none -'47000': +"47000": installDir: 4 Elements launch: - executable: 4 Elements.exe -'470020': - installDir: 'SnarfQuest Tales, Episode 1 The Beginning' +"470020": + installDir: "SnarfQuest Tales, Episode 1 The Beginning" launch: - config: oslist: windows @@ -231837,14 +227654,14 @@ - config: oslist: macos description: Launch - executable: SnarfQuest_Tales.app\\Contents\\MacOS\\SnarfQuest_Tales + executable: "SnarfQuest_Tales.app\\\\Contents\\\\MacOS\\\\SnarfQuest_Tales" type: default - config: oslist: linux description: Launch executable: SnarfQuest_Tales.x86_64 type: default -'470030': +"470030": installDir: Just Bones launch: - config: @@ -231852,12 +227669,12 @@ executable: justbones.exe type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: justbones.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: justbones.x86_64 type: none @@ -231865,36 +227682,36 @@ oslist: macos executable: justbones.app type: none -'470040': +"470040": installDir: Spellgear launch: - config: oslist: windows executable: SGL.exe type: default -'470060': +"470060": installDir: 1917 - The Alien Invasion DX launch: - config: oslist: windows executable: 1917 - The Alien Invasion DX.exe type: default -'470090': +"470090": installDir: Quantum Replica launch: - config: oslist: windows executable: ReplicaGame.exe type: default -'470130': +"470130": installDir: Eclipse --- Defending the motherland launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: eclipse_defending.exe type: vr -'470140': +"470140": installDir: Funklift launch: - config: @@ -231902,23 +227719,23 @@ executable: Funklift.exe type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: Funklift.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: Funklift.x86_64 type: none -'470170': +"470170": installDir: Evangeline™ launch: - config: oslist: windows executable: Evangeline.exe type: default - - arguments: '-force-opengl' + - arguments: "-force-opengl" config: oslist: linux executable: Evangeline.x86 @@ -231927,26 +227744,26 @@ oslist: macos executable: Evangeline.app type: none -'470210': +"470210": installDir: Rocketbirds 2 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Game.exe type: none -'470220': +"470220": installDir: Uno launch: - - arguments: '-uplay_steam_mode' + - arguments: "-uplay_steam_mode" config: - osarch: '64' + osarch: "64" oslist: windows description: UNO executable: UNO.exe type: default -'470260': - installDir: 'Event[0]' +"470260": + installDir: "Event[0]" launch: - config: oslist: windows @@ -231960,7 +227777,7 @@ oslist: linux executable: event0.x86_64 type: none -'470270': +"470270": installDir: The Tribe launch: - config: @@ -231975,14 +227792,14 @@ oslist: linux executable: The Tribe.x86 type: none -'470280': +"470280": installDir: Lost Route launch: - config: oslist: windows executable: Lost Route.exe type: vr -'470300': +"470300": installDir: Winged Sakura Demon Civil War launch: - config: @@ -232000,21 +227817,21 @@ description: Launch executable: Winged Sakura Demon Civil War.app type: none -'470310': +"470310": installDir: Troubleshooter launch: - - arguments: '--pack --usedic --steam main' + - arguments: "--pack --usedic --steam main" config: - osarch: '64' + osarch: "64" oslist: windows executable: Release/bin/ProtoLion.exe type: default workingdir: Release/bin/ nameLocalized: - japanese: 'トラブルシューター: 捨てられた子供たち' - koreana: '트러블슈터: 버려진 아이들' - schinese: '纷争终结者: 被遗弃的孩子们' -'470440': + japanese: "トラブルシューター: 捨てられた子供たち" + koreana: "트러블슈터: 버려진 아이들" + schinese: "纷争终结者: 被遗弃的孩子们" +"470440": installDir: Matris launch: - config: @@ -232023,28 +227840,28 @@ type: default - config: oslist: macos - executable: matris.app\\Contents\\MacOS\\matris + executable: "matris.app\\\\Contents\\\\MacOS\\\\matris" type: default - config: oslist: linux executable: matris.x86 type: default -'470450': +"470450": installDir: Steam launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch - executable: where's64.exe + executable: "where's64.exe" type: none - config: - osarch: '32' + osarch: "32" oslist: windows description: Lauch - executable: where's32.exe + executable: "where's32.exe" type: none -'470470': +"470470": installDir: Birdsketball launch: - config: @@ -232053,84 +227870,84 @@ type: default - config: oslist: macos - executable: Birdsketball.app\\Contents\\MacOS\\Birdsketball + executable: "Birdsketball.app\\\\Contents\\\\MacOS\\\\Birdsketball" type: default - config: oslist: linux executable: Birdsketball type: default -'470480': - installDir: 'Angel Express [Tokkyu Tenshi]' +"470480": + installDir: "Angel Express [Tokkyu Tenshi]" launch: - config: oslist: windows executable: scroll.exe type: default -'470490': +"470490": installDir: RollerGirls From Beyond launch: - config: oslist: windows executable: RollerGirlsFromBeyond.exe type: vr -'470580': +"470580": installDir: In The Shadows launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch In The Shadows executable: ITS.exe type: default - config: - osarch: '64' + osarch: "64" oslist: macos description: Launch In The Shadows - executable: ITS.app\\Contents\\MacOS\\ITS + executable: "ITS.app\\\\Contents\\\\MacOS\\\\ITS" type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch In The Shadows executable: ITS type: default -'470590': +"470590": installDir: motoRKDdash launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: motoRKDdash.exe type: default - config: - osarch: '64' + osarch: "64" oslist: macos executable: motoRKDdash.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: motoRKDdash.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: motoRKDdash.x86_64 type: default -'470600': {} -'470740': +"470600": {} +"470740": installDir: Demolish & Build Company launch: - executable: demolish.exe type: none -'470760': +"470760": installDir: Antiflux launch: - config: oslist: windows executable: Antiflux.exe type: default -'470780': +"470780": installDir: She Remembered Caterpillars launch: - config: @@ -232141,60 +227958,60 @@ oslist: macos executable: She Remembered Caterpillars.app type: default -'470890': +"470890": installDir: WarFire launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: bin\\win_x64\\WarFire.exe + executable: "bin\\\\win_x64\\\\WarFire.exe" type: default - config: - osarch: '64' + osarch: "64" oslist: windows - executable: bin\\win_x64\\WarFire_Server.exe + executable: "bin\\\\win_x64\\\\WarFire_Server.exe" type: server - config: - osarch: '32' + osarch: "32" oslist: windows description: WarFire(32Bit) - executable: bin\\win_x86\\WarFire(32Bit).exe + executable: "bin\\\\win_x86\\\\WarFire(32Bit).exe" type: default - config: - osarch: '32' + osarch: "32" oslist: windows - executable: bin\\win_x86\\WarFire_Server(32Bit).exe + executable: "bin\\\\win_x86\\\\WarFire_Server(32Bit).exe" type: server -'471010': +"471010": installDir: Seven The Days Long Gone launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Seven.exe type: default nameLocalized: - russian: 'Seven: улучшенное издание' - schinese: '七: 增强版' - tchinese: '七: 增强版' -'47110': + russian: "Seven: улучшенное издание" + schinese: "七: 增强版" + tchinese: "七: 增强版" +"47110": installDir: Escape from Paradise launch: - executable: Escape.exe -'471160': +"471160": installDir: Moonshot Galaxy launch: - - arguments: '-screen-fullscreen 0 -screen-width 800 -screen-height 600' + - arguments: "-screen-fullscreen 0 -screen-width 800 -screen-height 600" config: - osarch: '64' + osarch: "64" oslist: windows executable: MoonshotGalaxy.exe type: vr -'471170': +"471170": installDir: Romopolis launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Romopolis.exe type: default @@ -232207,41 +228024,41 @@ executable: Romopolis type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: Romopolis 32bit.exe type: default nameLocalized: russian: Romopolis / Ромополис ukrainian: Romopolis / Ромополіс -'47120': +"47120": installDir: Escape from Paradise 2 launch: - executable: Escape2.exe -'471200': +"471200": installDir: Melody launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Melody.exe type: vr -'471220': - installDir: Don't Drop the Bass +"471220": + installDir: "Don't Drop the Bass" launch: - config: oslist: windows - executable: Don't Drop the Bass.exe + executable: "Don't Drop the Bass.exe" type: default - config: oslist: macos executable: DontDropTheBass.app type: default -'471260': {} -'471270': +"471260": {} +"471270": installDir: Leave The Nest launch: - - arguments: '-osvr' + - arguments: "-osvr" config: oslist: windows executable: LeaveTheNest.exe @@ -232250,11 +228067,11 @@ betakey: razer executable: eTry14.exe type: default -'47130': +"47130": installDir: Book of Legends launch: - executable: BookOfLegends.exe -'471330': +"471330": installDir: Versus Game launch: - config: @@ -232265,7 +228082,7 @@ oslist: macos executable: Versus.app type: none -'471380': +"471380": installDir: Urban Pirate launch: - config: @@ -232276,7 +228093,7 @@ oslist: linux executable: run.sh type: default -'471400': +"471400": installDir: Space Jammers launch: - config: @@ -232291,14 +228108,14 @@ oslist: linux executable: SpaceJammers/runner type: default -'471550': +"471550": installDir: Nine Parchments launch: - config: oslist: windows executable: nineparchments_64bit.exe type: none -'471570': +"471570": installDir: Grandpas_Table launch: - config: @@ -232313,49 +228130,49 @@ oslist: macos executable: Contents/MacOS/gtb type: default -'471630': +"471630": installDir: Rexodus A VR Story Experience launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: rexodus_rebuild.exe type: vr -'471640': - installDir: .EXE +"471640": + installDir: ".EXE" launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: EXE_win64.exe type: default - config: oslist: macos - executable: EXE_mac.app\\Contents\\MacOS\\EXE_mac + executable: "EXE_mac.app\\\\Contents\\\\MacOS\\\\EXE_mac" type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: EXE_linux.x86 type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: EXE_win32.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: EXE_linux.x86_64 type: default -'471660': +"471660": installDir: Kingspray Graffiti launch: - config: oslist: windows executable: Kingspray.exe type: openvroverlay -'471700': +"471700": installDir: Greedy Guns launch: - config: @@ -232364,48 +228181,48 @@ type: default - config: oslist: macos - executable: GreedyGuns.app\\Contents\\MacOS\\GreedyGuns + executable: "GreedyGuns.app\\\\Contents\\\\MacOS\\\\GreedyGuns" type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: GreedyGuns.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: GreedyGuns.x86_64 type: default -'471710': +"471710": installDir: RecRoom launch: - - arguments: '+forcemode:vr' + - arguments: "+forcemode:vr" config: oslist: windows executable: Recroom_Release.exe type: vr - - arguments: '+forcemode:screen' + - arguments: "+forcemode:screen" config: oslist: windows description: Rec Room in Screen (non-VR) Mode executable: Recroom_Release.exe type: option1 -'471720': +"471720": installDir: KStation launch: - config: oslist: windows executable: KStation.exe type: default -'471730': +"471730": installDir: Rocket Ski Racing launch: - config: oslist: windows executable: RocketSkiRacing.exe type: default -'471770': - installDir: 'In Case of Emergency, Release Raptor' +"471770": + installDir: "In Case of Emergency, Release Raptor" launch: - config: oslist: windows @@ -232416,31 +228233,27 @@ executable: ReleaseRaptor.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: ReleaseRaptorLinux.x86_64 type: default -'471810': +"471810": installDir: Death Squared launch: - - arguments: '-logFile logfile.txt' + - arguments: "-logFile logfile.txt" config: oslist: windows description: Play - description_loc: - english: Play executable: DeathSquared.exe type: default - - arguments: '-logFile logfile.txt' + - arguments: "-logFile logfile.txt" config: oslist: macos description: Play - description_loc: - english: Play executable: DeathSquared.app type: default -'471910': {} -'471920': +"471910": {} +"471920": installDir: Pan-Pan launch: - config: @@ -232452,16 +228265,16 @@ executable: PAN-PAN.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: PAN-PAN.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: PAN-PAN.x86_64 type: default -'4720': +"4720": installDir: Condemned Criminal Origins launch: - config: @@ -232472,7 +228285,7 @@ oslist: windows description: Configure executable: Config.exe -'472060': +"472060": installDir: Ortus Regni launch: - config: @@ -232483,22 +228296,22 @@ oslist: macos executable: OrtusRegni.app type: default - - arguments: '-force-opengl' + - arguments: "-force-opengl" config: - osarch: '64' + osarch: "64" oslist: linux description: Ortus Regni (64bit) executable: OrtusRegni.x86_64 type: default - - arguments: '-force-opengl' + - arguments: "-force-opengl" config: - osarch: '32' + osarch: "32" oslist: linux description: Ortus Regni (32bit) executable: OrtusRegni.x86 type: default -'472420': - installDir: 'Duke Grabowski, Mighty Swashbuckler' +"472420": + installDir: "Duke Grabowski, Mighty Swashbuckler" launch: - config: oslist: macos @@ -232509,51 +228322,51 @@ executable: Duke.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Duke.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Duke.x86_64 type: default -'472690': +"472690": installDir: Sombrero Spaghetti Western Mayhem launch: - config: oslist: windows executable: nw.exe type: default -'472720': +"472720": installDir: Car Car Crash Hands On launch: - config: oslist: windows executable: CarCarCrash_Hands_On_Eddition.exe type: vr -'472740': +"472740": installDir: Ghrian launch: - config: oslist: windows executable: Ghrian.exe type: default -'472770': +"472770": installDir: War Child Hub launch: - config: oslist: windows executable: WarChildHub.exe type: default -'472830': +"472830": installDir: Ke-Tsu-No-Ana launch: - config: oslist: windows executable: ke_tsu_no_ana.exe type: default -'472870': +"472870": installDir: Higurashi 03 - Tatarigoroshi launch: - config: @@ -232561,12 +228374,12 @@ executable: HigurashiEp03.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: HigurashiEp03.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: HigurashiEp03.x86_64 type: default @@ -232576,21 +228389,21 @@ type: default nameLocalized: japanese: ひぐらしのなく頃に奉 祟殺し編 -'4730': +"4730": installDir: Outrun2006 Coast 2 Coast launch: - executable: OR2006C2C.EXE - description: Launch Configuration Settings executable: Config.exe -'473050': +"473050": installDir: UnderWater Adventure launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: underwater.exe type: default -'473140': +"473140": installDir: BomberZone launch: - config: @@ -232605,7 +228418,7 @@ oslist: linux executable: BomberZone.x86 type: default -'473450': +"473450": installDir: The Narrator is a DICK launch: - config: @@ -232620,7 +228433,7 @@ oslist: linux executable: TheNarratorIsaDick.x86 type: none -'473460': +"473460": installDir: mob launch: - executable: mob.exe @@ -232629,7 +228442,7 @@ english: Memory Oblivion Box schinese: 回忆忘却之匣 tchinese: 回憶忘卻之匣 -'473470': +"473470": installDir: Purgatory launch: - config: @@ -232644,27 +228457,27 @@ oslist: linux executable: Build030.x86 type: none -'473480': +"473480": installDir: MikoMole launch: - config: oslist: windows executable: MikoMole.exe type: default -'473490': {} -'473500': {} -'473510': +"473490": {} +"473500": {} +"473510": installDir: Gal-X-E launch: - config: oslist: windows executable: Gal-X-E.exe type: default -'473520': +"473520": installDir: Autumn launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: autumn.exe type: default @@ -232673,7 +228486,7 @@ executable: autumn.run type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: autumn.exe type: default @@ -232681,28 +228494,28 @@ oslist: macos executable: Autumn.app/Contents/MacOS/love type: default -'473530': +"473530": installDir: Slime-san launch: - config: oslist: macos - executable: Slime-san.app\\Contents\\MacOS\\Slime-san + executable: "Slime-san.app\\\\Contents\\\\MacOS\\\\Slime-san" type: none - config: oslist: windows executable: Slime-san.exe type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: Slime-san.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: Slime-san.x86_64 type: none -'473540': +"473540": installDir: Raise Your Own Clone launch: - config: @@ -232717,32 +228530,32 @@ oslist: macos executable: Raise Your Own Clone.app type: default -'473550': +"473550": installDir: SnowBall FPS launch: - config: oslist: windows executable: SnowBallFPS.exe type: default -'473560': +"473560": installDir: Cosmic Dust & Rust launch: - executable: Cosmic.exe type: none -'473580': {} -'473610': +"473580": {} +"473610": installDir: Shock Tactics launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ShockTactics.exe type: default -'473620': {} -'473630': {} -'473640': {} -'473650': {} -'473670': +"473620": {} +"473630": {} +"473640": {} +"473650": {} +"473670": installDir: TheDolls launch: - config: @@ -232757,32 +228570,32 @@ oslist: linux executable: TheDolls.x86 type: none -'473690': +"473690": installDir: Absolver launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Absolver.exe type: default nameLocalized: sc_schinese: 赦免者 -'473710': {} -'473720': +"473710": {} +"473720": installDir: Mutant Mudds Super Challenge launch: - executable: Mutant Mudds Super Challenge.exe type: none -'473730': {} -'473740': {} -'473770': +"473730": {} +"473740": {} +"473770": installDir: BallisticNG launch: - config: oslist: windows executable: BallisticNG.exe type: default - - arguments: '-vr' + - arguments: "-vr" config: oslist: windows executable: BallisticNG.exe @@ -232795,7 +228608,7 @@ oslist: linux executable: BallisticNG type: default -'473780': +"473780": installDir: Splitter Critters launch: - config: @@ -232808,132 +228621,132 @@ description: Launch OSX (Universal) executable: SplitterCritters.app type: default -'473800': +"473800": installDir: Bullet Life 2010 launch: - config: oslist: windows - executable: 'Bullet Life 2010 [Eager Passion LLC].exe' + executable: "Bullet Life 2010 [Eager Passion LLC].exe" type: none -'473810': +"473810": installDir: Killbot launch: - config: oslist: windows executable: build.exe type: none -'473840': - installDir: Diib's Dilemma +"473840": + installDir: "Diib's Dilemma" launch: - - arguments: '-jar Diib.jar' + - arguments: "-jar Diib.jar" config: oslist: windows description: Fullscreen - executable: jre8\\bin\\javaw.exe + executable: "jre8\\\\bin\\\\javaw.exe" type: default - - arguments: '-jar Diib.jar -window' + - arguments: "-jar Diib.jar -window" config: oslist: windows description: Play Windowed Version (Windows 10) - executable: jre8\\bin\\javaw.exe + executable: "jre8\\\\bin\\\\javaw.exe" type: none - - arguments: '-jar Diib.jar' + - arguments: "-jar Diib.jar" config: oslist: linux executable: java type: default -'473910': +"473910": installDir: The Nest launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TheNest.exe type: vr -'473920': - installDir: Corinne Cross's Dead & Breakfast +"473920": + installDir: "Corinne Cross's Dead & Breakfast" launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows description: CCD&B 2.0 for Windows - executable: ccdb2.0\\nw.exe + executable: "ccdb2.0\\\\nw.exe" type: none - config: oslist: macos description: CCD&B for Mac executable: Game.app type: none -'473950': +"473950": installDir: Manifold Garden launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ManifoldGarden.exe type: default -'473970': +"473970": installDir: Zombie City Defense 2 launch: - - arguments: ' -vrmode none' + - arguments: " -vrmode none" config: oslist: windows executable: ZCD2.exe type: default - - arguments: '-vrmode none' + - arguments: "-vrmode none" config: oslist: macos - executable: ZCD2.app\\Contents\\MacOS\\ZCD2 + executable: "ZCD2.app\\\\Contents\\\\MacOS\\\\ZCD2" type: default - - arguments: ' -vrmode oculus' + - arguments: " -vrmode oculus" config: oslist: windows executable: ZCD2.exe type: othervr - - arguments: '-vrmode none LC_ALL=C %command%' + - arguments: "-vrmode none LC_ALL=C %command%" config: - osarch: '32' + osarch: "32" oslist: linux executable: ZCD2.x86 type: none - - arguments: '-vrmode none LC_ALL=C %command%_64' + - arguments: "-vrmode none LC_ALL=C %command%_64" config: - osarch: '64' + osarch: "64" oslist: linux executable: ZCD2.x86_64 type: none -'47400': +"47400": installDir: Stronghold3 launch: - config: oslist: windows description: Stronghold 3 - executable: bin\\win32_release\\Stronghold3.exe - workingdir: bin\\win32_release + executable: "bin\\\\win32_release\\\\Stronghold3.exe" + workingdir: "bin\\\\win32_release" - config: oslist: macos description: Stronghold 3 executable: Stronghold 3.app - workingdir: bin\\win32_release + workingdir: "bin\\\\win32_release" - config: oslist: linux description: Stronghold 3 executable: stronghold3 -'474010': +"474010": installDir: The NADI Project launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TNP.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: TNP.x86 type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: TNP_32.exe type: default @@ -232942,11 +228755,11 @@ executable: TNP_osx.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: TNP.x86_64 type: default -'474030': +"474030": installDir: The Abbey of Crime Extensum launch: - config: @@ -232961,7 +228774,7 @@ oslist: linux executable: TheAbbeyOfCrimeExtensum.sh type: default -'474050': +"474050": installDir: Candy Blast launch: - config: @@ -232972,12 +228785,12 @@ oslist: linux executable: run.sh type: default -'47410': +"47410": installDir: Stronghold Kingdoms launch: - - arguments: '-steam' + - arguments: "-steam" executable: StrongholdKingdoms.exe -'474210': +"474210": installDir: Butcher launch: - config: @@ -232992,87 +228805,87 @@ oslist: linux executable: butcher type: default -'474240': +"474240": installDir: Journey to the Center of the Earth launch: - config: oslist: windows executable: JourneyToTheCenterOfTheEarth.exe type: none -'474620': +"474620": installDir: Giga Girl launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: Gigagirl.exe type: default -'474730': +"474730": installDir: Airship Asunder launch: - config: oslist: windows executable: Airship Asunder.exe type: none -'474750': +"474750": installDir: Reigns launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Reigns.exe type: default - config: oslist: macos - executable: Reigns.app\\Contents\\MacOS\\Reigns + executable: "Reigns.app\\\\Contents\\\\MacOS\\\\Reigns" type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Reigns.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Reigns.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: Reigns.exe -'474780': +"474780": installDir: Anomalie launch: - executable: Anomalie.exe type: default -'474790': {} -'474810': +"474790": {} +"474810": installDir: Dorke and Ymp launch: - config: oslist: windows executable: dorke and imp.exe type: default -'474820': {} -'474830': +"474820": {} +"474830": installDir: Time in Time launch: - config: oslist: windows executable: timeintime.exe type: default -'474870': +"474870": installDir: Ping Ping launch: - config: oslist: windows executable: PingPing.exe type: default -'474880': +"474880": installDir: Second Coming launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: game.exe type: default @@ -233080,14 +228893,14 @@ oslist: macos executable: Second Coming.app type: default -'474890': +"474890": installDir: Uncrewed launch: - config: oslist: windows executable: System/App/Bin/Uncrewed.exe type: none -'474910': +"474910": installDir: Mahjongg Huntress launch: - config: @@ -233102,29 +228915,29 @@ oslist: linux executable: mahjonghuntress.x86 type: default - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" config: oslist: windows executable: mahjonghuntress.exe type: config - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" config: oslist: macos executable: mahjonghuntress.app type: config - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" config: oslist: linux executable: mahjonghuntress.x86 type: config -'474960': +"474960": installDir: QuantumBreak launch: - config: - osarch: '64' - executable: dx11\\QuantumBreak.exe + osarch: "64" + executable: "dx11\\\\QuantumBreak.exe" type: default -'474980': +"474980": installDir: Cat President launch: - config: @@ -233139,11 +228952,11 @@ oslist: linux executable: Cat President.sh type: none -'47500': +"47500": installDir: Mishap An Accidental Haunting launch: - executable: Mishap.exe -'475050': +"475050": installDir: bloxyz launch: - config: @@ -233154,12 +228967,12 @@ oslist: windows executable: bloxyz_Steam.exe type: othervr -'475060': {} -'475070': +"475060": {} +"475070": installDir: DIVE Starpath launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: dive.exe type: default @@ -233167,27 +228980,27 @@ oslist: macos executable: dive_mac_steam.app type: default -'475080': +"475080": installDir: Cavernus launch: - executable: nw.exe type: default -'475090': +"475090": installDir: ProjectRemedium launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: NanoPlus\\Binaries\\Win64\\NanoPlus-Win64-Shipping.exe + executable: "NanoPlus\\\\Binaries\\\\Win64\\\\NanoPlus-Win64-Shipping.exe" type: default -'475100': +"475100": installDir: Kalonline launch: - config: oslist: windows executable: KalOnline.exe type: default -'475150': +"475150": installDir: Titan Quest Anniversary Edition launch: - arguments: /dx11 @@ -233200,36 +229013,26 @@ config: oslist: windows description: Launch Titan Quest Anniversary Edition with Epic Crossplay Support - description_loc: - english: Launch Titan Quest Anniversary Edition with Epic Crossplay Support executable: TQ.exe - arguments: /dx9 config: oslist: windows description: Launch Titan Quest Anniversary Edition (DirectX 9) - description_loc: - english: Launch Titan Quest Anniversary Edition (DirectX 9) executable: TQ.exe - config: oslist: windows description: Launch Titan Quest Mod Tools Launcher & Workshop Tool - description_loc: - english: Launch Titan Quest Mod Tools Launcher & Workshop Tool - executable: WorkshopTool\\TQWorkshopTool.exe - - arguments: '-nohwcursor' + executable: "WorkshopTool\\\\TQWorkshopTool.exe" + - arguments: "-nohwcursor" config: oslist: windows description: Launch Titan Quest Anniversary Edition Win10 Safe Mode - description_loc: - english: Launch Titan Quest Anniversary Edition Win10 Safe Mode executable: TQ.exe - config: oslist: windows description: Launch Titan Quest Anniversary Edition Launcher - description_loc: - english: Launch Titan Quest Anniversary Edition Launcher executable: TQ.exe -'475190': +"475190": installDir: Scanner Sombre launch: - config: @@ -233237,87 +229040,87 @@ executable: scanner sombre.exe type: default - config: - osarch: '64' + osarch: "64" oslist: macos executable: Scanner Sombre.app type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: scanner sombre.x86_64 type: none - - arguments: '-SSVR' + - arguments: "-SSVR" config: oslist: windows description: Experimental VR mode executable: scanner sombre.exe type: vr -'47520': +"47520": installDir: The Otherside launch: - executable: TheOtherside.exe -'475220': {} -'475240': +"475220": {} +"475240": installDir: ORCS launch: - config: oslist: windows executable: orcs.exe type: default -'475250': +"475250": installDir: Ashbourne launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Ashbourne.exe type: default -'47540': +"47540": installDir: PuzzleQuest2 launch: - executable: PuzzleQuest2.exe -'475430': {} -'475470': +"475430": {} +"475470": installDir: Global Soccer Manager launch: - config: oslist: windows executable: manager.exe type: none -'475490': +"475490": installDir: MajorMinorDefinitive launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows - description: Major\\Minor - Complete Edition + description: "Major\\\\Minor - Complete Edition" executable: nw.exe type: none - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: linux executable: nw type: none - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: macos executable: game.app type: none - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows description: Winds of Change Demo (NEW) - executable: \\windsdemo\\game.exe + executable: "\\\\windsdemo\\\\game.exe" type: none -'475520': +"475520": installDir: Holodaze launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: holodaze.exe type: vr -'475530': +"475530": installDir: Go Go Electric Samurai launch: - config: @@ -233329,16 +229132,16 @@ executable: Universal.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: gges.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: gges.x86_64 type: default -'475550': +"475550": installDir: Beholder launch: - config: @@ -233347,19 +229150,19 @@ type: default - config: oslist: macos - executable: Beholder.app\\Contents\\MacOS\\Beholder + executable: "Beholder.app\\\\Contents\\\\MacOS\\\\Beholder" type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Beholder.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Beholder.x86_64 type: default -'475620': +"475620": installDir: MOAI 4 Terra Incognita Collector’s Edition launch: - config: @@ -233371,15 +229174,15 @@ oslist: macos executable: Moai4_TerraIncognita_CE.app type: default -'475630': +"475630": installDir: Crush Online launch: - - arguments: '-steam' + - arguments: "-steam" config: oslist: windows executable: Launcher.exe type: none -'47570': +"47570": installDir: Mishap 2 launch: - config: @@ -233388,14 +229191,14 @@ - config: oslist: macos executable: Mishap2.app -'475960': +"475960": installDir: Bombslinger launch: - config: oslist: windows executable: bombslinger.exe type: default -'475990': +"475990": installDir: MTB Downhill Simulator launch: - config: @@ -233410,13 +229213,13 @@ oslist: linux executable: MTB Downhill Simulator.x86 type: none -'4760': +"4760": installDir: Rome Total War Gold launch: - executable: RomeTW.exe - - description: 'Launch Rome: Total War Barbarian Invasion' + - description: "Launch Rome: Total War Barbarian Invasion" executable: RomeTW-BI.exe -'476000': +"476000": installDir: SlightlyMagic launch: - config: @@ -233428,11 +229231,11 @@ executable: nw type: default - config: - osarch: '64' + osarch: "64" oslist: macos executable: slightlymagic.app type: default -'476020': +"476020": installDir: Reflection of Mine launch: - config: @@ -233447,14 +229250,14 @@ oslist: linux executable: nw type: default -'476030': +"476030": installDir: Johnny Graves—The Unchosen One launch: - config: oslist: windows executable: Johnny Graves The Unchosen One.exe type: default -'476240': +"476240": installDir: KNIGHTS launch: - config: @@ -233463,19 +229266,19 @@ type: default - config: oslist: macos - executable: KNIGHTS.app\\Contents\\MacOS\\KNIGHTS + executable: "KNIGHTS.app\\\\Contents\\\\MacOS\\\\KNIGHTS" type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: KNIGHTS.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: KNIGHTS.x86_64 type: default -'476360': +"476360": installDir: StrikeVectorEX launch: - config: @@ -233483,20 +229286,20 @@ description: Launching Strike Vector EX executable: SVEX.exe type: default -'476370': +"476370": installDir: MAGATAMA Earrings launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: MagatamaEarrings.exe type: default - config: - osarch: '64' + osarch: "64" oslist: macos executable: MagatamaEarrings.exe type: default -'476410': +"476410": installDir: One Small Fire At A Time launch: - config: @@ -233511,7 +229314,7 @@ oslist: linux executable: One Small Fire at a Time type: default -'476420': +"476420": installDir: Heart of Crown launch: - config: @@ -233523,22 +229326,22 @@ description: Supply Maker executable: HocSupplyMaker.exe type: none -'476430': +"476430": installDir: SwingStar VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SwingStar.exe type: vr -'476450': +"476450": installDir: So Much Blood launch: - config: oslist: windows executable: SoMuchBlood.exe type: default -'476460': +"476460": installDir: Picross Touch launch: - config: @@ -233553,7 +229356,7 @@ oslist: macos executable: PicrossTouchMac.app type: none -'476480': +"476480": installDir: Heaven Forest - VR MMO launch: - config: @@ -233576,7 +229379,7 @@ oslist: windows executable: HeavenForest.exe type: othervr -'476490': +"476490": installDir: Choice of the Pirate launch: - config: @@ -233591,14 +229394,14 @@ oslist: linux executable: Pirate type: none -'476510': - installDir: Cally's Trials +"476510": + installDir: "Cally's Trials" launch: - config: oslist: windows - executable: Cally's Trials.exe + executable: "Cally's Trials.exe" type: none -'476530': +"476530": installDir: Children of a Dead Earth launch: - config: @@ -233607,32 +229410,32 @@ type: default - config: oslist: macos - executable: Children of a Dead Earth.app\\Contents\\MacOS\\Children of a Dead Earth + executable: "Children of a Dead Earth.app\\\\Contents\\\\MacOS\\\\Children of a Dead Earth" type: default -'476540': +"476540": installDir: Google Spotlight Stories - Pearl launch: - - arguments: '-package pearl_vrcam -NOfullscreen -res 1280 720 -msaa 2 -ssaa 1.0' + - arguments: "-package pearl_vrcam -NOfullscreen -res 1280 720 -msaa 2 -ssaa 1.0" config: - osarch: '32' + osarch: "32" oslist: windows executable: win32/storyplayer.exe type: vr - - arguments: '-package pearl_vrcam -NOfullscreen -res 1280 720 -msaa 2 -ssaa 1.0' + - arguments: "-package pearl_vrcam -NOfullscreen -res 1280 720 -msaa 2 -ssaa 1.0" config: - osarch: '64' + osarch: "64" oslist: windows executable: win64/storyplayer.exe type: vr -'476600': +"476600": installDir: Call of Duty WWII launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: s2_sp64_ship.exe type: default -'476650': +"476650": installDir: The Silver Case launch: - config: @@ -233644,158 +229447,145 @@ executable: TheSilverCase.app type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: TheSilverCase.x86_64 type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: TheSilverCase.x86 type: none nameLocalized: japanese: シルバー事件 -'476670': +"476670": installDir: Emberdoom launch: - config: oslist: windows executable: Emberdoom.exe type: none -'476680': +"476680": installDir: Emberdoom VR launch: - config: oslist: windows executable: emberdoomvr.exe type: vr -'476700': +"476700": installDir: Island 359 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Island359.exe type: vr -'476710': +"476710": installDir: MechaGore launch: - config: oslist: macos - executable: MechaGore.app\\Contents\\MacOS\\MechaGore + executable: "MechaGore.app\\\\Contents\\\\MacOS\\\\MechaGore" type: default - config: oslist: windows executable: MechaGore.exe type: default -'476880': {} -'476920': +"476880": {} +"476920": installDir: Amulet of Dreams launch: - executable: Amulet of Dreams.exe type: none -'476930': +"476930": installDir: FourChords Guitar Karaoke launch: - config: oslist: macos - executable: FourChords.app\\Contents\\MacOS\\FourChords + executable: "FourChords.app\\\\Contents\\\\MacOS\\\\FourChords" type: default - config: oslist: windows executable: FourChords.exe type: default -'47700': +"47700": installDir: Command and Conquer 4 Tiberian Twilight launch: - executable: CNC4.exe - description: View Support Information - executable: Support\\EA Help\\Electronic_Arts_Technical_Support.htm -'477010': + executable: "Support\\\\EA Help\\\\Electronic_Arts_Technical_Support.htm" +"477010": installDir: 10 Minute Tower launch: - config: oslist: windows executable: 10MinuteTower.exe type: default -'477130': +"477130": installDir: Surge launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Surge.exe type: vr -'477140': +"477140": installDir: SparkDimension launch: - config: oslist: windows executable: SparkDimension.exe type: default -'477160': +"477160": installDir: Human Fall Flat launch: - config: oslist: windows description: Launch - description_loc: - english: Launch - sc_schinese: Launch - schinese: Launch executable: Human.exe type: none - config: oslist: macos description: Launch - description_loc: - english: Launch - sc_schinese: Launch executable: Human.app type: none - config: oslist: linux description: Launch x86 - description_loc: - english: Launch x86 - sc_schinese: Launch executable: Human.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch 64 - description_loc: - english: Launch 64 - sc_schinese: Launch executable: Human.x86_64 type: none nameLocalized: sc_schinese: 面条人 schinese: 人类一败涂地 / Human Fall Flat -'477170': +"477170": installDir: Chamber 19 launch: - config: oslist: windows executable: Chamber19.exe type: vr -'477180': +"477180": installDir: Shard Games launch: - config: oslist: windows executable: shardgames.exe type: default -'477190': +"477190": installDir: ESA launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ESA.exe type: vr -'477200': +"477200": installDir: Descent Road to Legend launch: - config: @@ -233806,15 +229596,15 @@ oslist: macos executable: Road to Legend.app type: default -'477270': +"477270": installDir: LightbladeVR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: LightbladeVR.exe type: vr -'477290': +"477290": installDir: Magma Tsunami launch: - config: @@ -233822,12 +229612,12 @@ executable: MagmaTsunami.exe type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: magmatsunami.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: magmatsunami.x86_64 type: none @@ -233835,115 +229625,115 @@ oslist: macos executable: MagmaTsunami.app/Contents/MacOS/MagmaTsunami type: none -'477310': +"477310": installDir: Space Hole launch: - config: oslist: windows executable: SpaceHole.exe type: none -'477720': +"477720": installDir: Toricky launch: - config: oslist: windows - executable: win\\Toricky.exe + executable: "win\\\\Toricky.exe" type: default - config: oslist: macos - executable: mac\\Toricky.app\\Contents\\MacOS\\Toricky + executable: "mac\\\\Toricky.app\\\\Contents\\\\MacOS\\\\Toricky" type: default - config: oslist: linux - executable: linux\\Toricky.x86 + executable: "linux\\\\Toricky.x86" type: default -'477730': +"477730": installDir: Eador. Imperium launch: - config: oslist: windows executable: launcher.exe type: default -'477740': +"477740": installDir: Zero Escape The Nonary Games launch: - config: oslist: windows executable: Launcher.exe type: default -'477750': - installDir: Thirty Years' War +"477750": + installDir: "Thirty Years' War" launch: - config: oslist: windows description: Launch executable: autorun.exe type: default -'477770': +"477770": installDir: Ride 2 launch: - config: - osarch: '32' + osarch: "32" executable: Ride2.exe type: none - config: - osarch: '64' + osarch: "64" executable: Ride2X64.exe type: none -'47780': +"47780": installDir: Dead Space 2 launch: - executable: deadspace2.exe - description: View Support Information - executable: Support\\EA Help\\Electronic_Arts_Technical_Support.htm -'477800': + executable: "Support\\\\EA Help\\\\Electronic_Arts_Technical_Support.htm" +"477800": installDir: Piñata launch: - config: oslist: windows executable: Pinata.exe type: vr -'477870': +"477870": installDir: Yomawari Night Alone launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: yomawari-steam.exe type: default nameLocalized: japanese: 夜廻 -'47790': +"47790": installDir: Medal of Honor launch: - executable: Binaries/moh.exe - - arguments: '-ead_gl_remove' + - arguments: "-ead_gl_remove" description: Deauthorize this machine executable: Binaries/moh.exe - description: View Support Information - executable: Support\\EA Help\\Electronic_Arts_Technical_Support.htm -'477900': + executable: "Support\\\\EA Help\\\\Electronic_Arts_Technical_Support.htm" +"477900": installDir: LordOfDwarves launch: - config: oslist: windows - description: 'Lord of Dwarves Game (steam, windows)' + description: "Lord of Dwarves Game (steam, windows)" executable: bin/lordofdwarves.exe type: none - config: - osarch: '64' + osarch: "64" oslist: linux - description: 'Lord of Dwarves Game (steam, linux)' + description: "Lord of Dwarves Game (steam, linux)" executable: bin/lordofdwarves type: none -'477910': +"477910": installDir: Wanderer of Teandria launch: - config: oslist: windows - executable: bin\\x86\\Release\\Wanderer Launcher.exe + executable: "bin\\\\x86\\\\Release\\\\Wanderer Launcher.exe" type: default -'477950': +"477950": installDir: Simple Spy launch: - config: @@ -233952,68 +229742,68 @@ type: default - config: oslist: macos - executable: SimpleSpy.app\\Contents\\MacOS\\SimpleSpy + executable: "SimpleSpy.app\\\\Contents\\\\MacOS\\\\SimpleSpy" type: default -'477980': {} -'47800': +"477980": {} +"47800": installDir: Risk Factions launch: - executable: Risk Factions.exe -'478010': +"478010": installDir: ABC Coloring Town launch: - config: oslist: windows executable: ABCColoringTown.exe type: default -'478020': +"478020": installDir: Old School 8-in-1 bundle launch: - config: oslist: windows executable: OldSchoolBundle.exe type: none -'47810': +"47810": installDir: Dragon Age Ultimate Edition launch: - - arguments: '' + - arguments: "" description: Default executable: DAOriginsLauncher.exe - description: View Support Information - executable: \"docs -'478210': + executable: "\\\"docs" +"478210": installDir: BUDDY launch: - config: oslist: windows executable: BUDDY.exe type: default -'47850': +"47850": installDir: FIFA Manager 11 launch: - executable: Manager11.exe - description: View Support Information - executable: Support\\EA Help\\Electronic_Arts_Technical_Support.htm -'47870': + executable: "Support\\\\EA Help\\\\Electronic_Arts_Technical_Support.htm" +"47870": installDir: Need for Speed Hot Pursuit launch: - executable: NFS11.exe - description: View Support Information - executable: Support\\EA Help\\Electronic_Arts_Technical_Support.htm -'47890': + executable: "Support\\\\EA Help\\\\Electronic_Arts_Technical_Support.htm" +"47890": installDir: The Sims 3 launch: - - executable: Game\\Bin\\Sims3Launcher.exe + - executable: "Game\\\\Bin\\\\Sims3Launcher.exe" - description: View Support Information - executable: Support\\EA Help\\Electronic_Arts_Technical_Support.htm -'478950': + executable: "Support\\\\EA Help\\\\Electronic_Arts_Technical_Support.htm" +"478950": installDir: V ARRR_Data launch: - config: oslist: windows executable: V ARRR.exe type: vr -'478980': +"478980": installDir: Mansions of Madness launch: - config: @@ -234024,14 +229814,14 @@ oslist: macos executable: Mansions of Madness.app type: default -'479000': +"479000": installDir: IrreVRsible launch: - config: oslist: windows executable: IrreVRsible.exe type: vr -'479020': +"479020": installDir: Pirates of the Polygon Sea launch: - config: @@ -234039,7 +229829,7 @@ description: Launch executable: Pirates of the Polygon Sea.exe type: none -'479040': +"479040": installDir: Metamorphic launch: - config: @@ -234054,48 +229844,48 @@ oslist: linux executable: metamorphic.x86 type: default -'479100': +"479100": installDir: Music Wars Empire launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: Music Wars Empire.exe type: default -'479110': - installDir: Hunter's Legacy +"479110": + installDir: "Hunter's Legacy" launch: - config: oslist: windows - executable: Hunter's Legacy.exe + executable: "Hunter's Legacy.exe" type: default - config: oslist: macos - executable: Hunter's Legacy.app + executable: "Hunter's Legacy.app" type: default -'479140': +"479140": installDir: Framed Wings launch: - config: oslist: windows executable: Game.exe type: default -'479150': +"479150": installDir: BoX -containment- v.1.10 launch: - - arguments: '-windowed' + - arguments: "-windowed" config: oslist: windows executable: game.exe type: default -'479170': +"479170": installDir: Drunk Wizards launch: - config: oslist: windows executable: DrunkWizards.exe type: default -'479180': +"479180": installDir: Space Universe launch: - config: @@ -234106,54 +229896,54 @@ oslist: macos executable: Game.exe type: default -'47920': +"47920": installDir: Need For Speed Shift 2 launch: - executable: SHIFT2U.exe - description: View Support Information - executable: Support\\EA Help\\Electronic_Arts_Technical_Support.htm -'479200': + executable: "Support\\\\EA Help\\\\Electronic_Arts_Technical_Support.htm" +"479200": installDir: Champions of Odin launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ChampionsofOdin.exe type: default -'479260': {} -'479310': +"479260": {} +"479310": installDir: Doodler launch: - config: oslist: windows executable: Doodler.exe type: default -'479330': +"479330": installDir: CrazyStoneDL launch: - config: oslist: windows executable: CrazyStoneDeepLearningSteam.exe type: default -'479990': +"479990": installDir: DungeonsAndDarkness launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: DungeonsAndDarkness.exe type: default -'480': +"480": installDir: Spacewar launch: - executable: SteamWorksExample.exe type: none -'4800': +"4800": installDir: Heroes of Annihilated Empires launch: - executable: engine.exe type: default -'48000': +"48000": installDir: Limbo launch: - config: @@ -234166,7 +229956,7 @@ oslist: linux description: Launch executable: limbo -'480410': +"480410": installDir: Mitch Berry Challenge launch: - config: @@ -234177,15 +229967,15 @@ oslist: macos executable: MitchBerryChallenge.app type: default -'480430': +"480430": installDir: HideandShriek launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: HideandShriek.exe type: default -'480450': +"480450": installDir: Floppy Heroes launch: - config: @@ -234198,72 +229988,72 @@ description: MultiplayerTest executable: ChatroomTest.exe type: option1 -'480480': +"480480": installDir: Slash or Die launch: - config: oslist: windows executable: SoD.exe type: default -'480490': +"480490": installDir: Prey launch: - - executable: Binaries\\Danielle\\x64\\Release\\Prey.exe + - executable: "Binaries\\\\Danielle\\\\x64\\\\Release\\\\Prey.exe" type: none - - arguments: '-loadFrom=Whiplash -dlc=865670' + - arguments: "-loadFrom=Whiplash -dlc=865670" config: - ownsdlc: '865670' - description: 'Prey: Mooncrash' - executable: Binaries\\Danielle\\x64\\Release\\Prey.exe + ownsdlc: "865670" + description: "Prey: Mooncrash" + executable: "Binaries\\\\Danielle\\\\x64\\\\Release\\\\Prey.exe" type: option1 -'480500': +"480500": installDir: Dogfight Elite launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Dogfight Elite.exe type: default - config: oslist: macos - executable: DogfightElite.app\\Contents\\MacOS\\Dogfight Elite + executable: "DogfightElite.app\\\\Contents\\\\MacOS\\\\Dogfight Elite" type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: Dogfight Elite.exe type: vr -'480640': +"480640": installDir: Pathfinder Adventures launch: - - arguments: '-steam' + - arguments: "-steam" config: oslist: windows description: Launch executable: PathfinderAdventures.exe type: none - - arguments: '-steam' + - arguments: "-steam" config: oslist: macos executable: PathfinderAdventures.app type: none -'480650': +"480650": installDir: Yu-Gi-Oh! Legacy of the Duelist launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: YuGiOh.exe type: default -'480690': +"480690": installDir: Inbound launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Inbound.exe type: vr -'480770': +"480770": installDir: Dreamals launch: - config: @@ -234272,42 +230062,42 @@ type: default - config: oslist: macos - executable: Dreamals.app\\Contents\\MacOS\\Dreamals + executable: "Dreamals.app\\\\Contents\\\\MacOS\\\\Dreamals" type: default - config: oslist: linux executable: Dreamals.x86 type: default -'480780': {} -'480900': +"480780": {} +"480900": installDir: Slap Village Chapter 1 launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: SlapVillage.exe type: default - config: oslist: macos - executable: SlapVillage.app\\Contents\\MacOS\\SlapVillage + executable: "SlapVillage.app\\\\Contents\\\\MacOS\\\\SlapVillage" type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: SlapVillage.exe type: default - config: betakey: bitscaketest2016 - osarch: '64' + osarch: "64" oslist: linux executable: SlapVillageLinux.x86_64 type: default -'48110': +"48110": installDir: Silent Hunter 5 launch: - - arguments: '-uplay_steam_mode' + - arguments: "-uplay_steam_mode" executable: SH5.exe -'481110': +"481110": installDir: The Bunker launch: - config: @@ -234318,57 +230108,57 @@ oslist: macos executable: TheBunker.app type: default -'481180': +"481180": installDir: System Crash launch: - config: oslist: windows executable: System Crash.exe type: none -'481190': +"481190": installDir: Stable Orbit launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: StableOrbit.exe type: default - config: - osarch: '64' + osarch: "64" oslist: macos executable: Stable Orbit.app/Contents/MacOS/Stable Orbit type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: StableOrbit.x86_64 type: default -'48120': +"48120": installDir: The Settlers 7 Paths to a Kingdom launch: - - arguments: '-uplay_steam_mode' - executable: Data\\Base\\_Dbg\\Bin\\Release\\Settlers7R.exe -'481420': + - arguments: "-uplay_steam_mode" + executable: "Data\\\\Base\\\\_Dbg\\\\Bin\\\\Release\\\\Settlers7R.exe" +"481420": installDir: FinalApproach_PilotEdition launch: - - arguments: '-vrmode OpenVR' + - arguments: "-vrmode OpenVR" config: - osarch: '64' + osarch: "64" oslist: windows executable: FinalApproach-PilotEdition.exe type: vr - - arguments: '-vrmode Oculus' + - arguments: "-vrmode Oculus" config: - osarch: '64' + osarch: "64" oslist: windows executable: FinalApproach-PilotEdition.exe type: othervr -'48150': +"48150": installDir: Voodoo Dice launch: - - arguments: \"Data\\VoodooDice.stk\" + - arguments: "\\\"Data\\\\VoodooDice.stk\\\"" executable: VoodooDice.exe -'481510': +"481510": installDir: Night in the Woods launch: - config: @@ -234380,30 +230170,30 @@ executable: Night in the Woods.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Night in the Woods.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Night in the Woods.x86 type: default -'481600': +"481600": installDir: Finding Hope launch: - description: Launch executable: Game.exe type: none -'48180': - installDir: Tom Clancy's HAWX 2 EMEA +"48180": + installDir: "Tom Clancy's HAWX 2 EMEA" launch: - - arguments: '-uplay_steam_mode' + - arguments: "-uplay_steam_mode" executable: HAWX2.exe - - arguments: '-uplay_steam_mode' - description: Tom Clancy's H.A.W.X. 2 - DX11 + - arguments: "-uplay_steam_mode" + description: "Tom Clancy's H.A.W.X. 2 - DX11" executable: HAWX2_DX11.exe -'481870': +"481870": installDir: Mini Thief launch: - config: @@ -234412,23 +230202,23 @@ type: default - config: oslist: linux - executable: Mini_Thief\\runner + executable: "Mini_Thief\\\\runner" type: default -'481890': {} -'48190': +"481890": {} +"48190": installDir: Assassins Creed Brotherhood launch: - - arguments: '-uplay_steam_mode' + - arguments: "-uplay_steam_mode" config: oslist: windows description: Default executable: ACBSP.exe - - arguments: '' + - arguments: "" config: oslist: macos description: Default - executable: Assassin's Creed Brotherhood.app -'481950': + executable: "Assassin's Creed Brotherhood.app" +"481950": installDir: Emily Displaced launch: - config: @@ -234439,52 +230229,52 @@ oslist: macos executable: Emily Displaced.app type: default -'482120': {} -'48220': +"482120": {} +"48220": installDir: Might and Magic Heroes VI launch: - - arguments: '-uplay_steam_mode' + - arguments: "-uplay_steam_mode" executable: Might & Magic Heroes VI.exe -'482210': +"482210": installDir: Quarterback SNAP launch: - config: oslist: windows executable: QuarterbackSnap.exe type: vr -'482300': +"482300": installDir: Investigator launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch - executable: Bin64\\Investigator.exe + executable: "Bin64\\\\Investigator.exe" type: default -'482330': +"482330": installDir: starcore launch: - config: oslist: windows executable: Legends of the Universe - Starcore.exe type: default -'482390': +"482390": installDir: The Night Cafe launch: - config: oslist: windows executable: TheNightCafe.exe type: vr -'48240': +"48240": installDir: Anno 2070 launch: - - arguments: '-uplay_steam_mode' + - arguments: "-uplay_steam_mode" executable: Anno5.exe -'482400': +"482400": installDir: System Shock Remake launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SystemShock.exe type: default @@ -234493,8 +230283,8 @@ oslist: windows executable: SystemReShock.exe type: default -'482440': {} -'482450': +"482440": {} +"482450": installDir: Nitroplus Blasterz Heroines Infinite Duel launch: - config: @@ -234503,25 +230293,25 @@ type: default nameLocalized: japanese: ニトロプラス ブラスターズ -ヒロインズ インフィニット デュエル- -'482460': +"482460": installDir: Reverence launch: - config: oslist: windows executable: Reverence.exe type: default - - arguments: '-vrmode OpenVR' + - arguments: "-vrmode OpenVR" config: oslist: windows executable: Reverence.exe type: vr - config: - osarch: '32' + osarch: "32" oslist: linux executable: Reverence.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Reverence.x86_64 type: default @@ -234529,7 +230319,7 @@ oslist: macos executable: Reverence.app type: default -'482730': +"482730": installDir: Football Manager 2017 launch: - config: @@ -234544,7 +230334,7 @@ oslist: linux executable: fm type: none -'482750': +"482750": installDir: Football Manager Touch 2017 launch: - config: @@ -234559,19 +230349,19 @@ oslist: linux executable: fm type: none -'482890': +"482890": installDir: Fantasy Kingdom Simulator launch: - executable: fantasysim.exe type: default -'482920': +"482920": installDir: Hero Zero launch: - config: oslist: windows executable: Hero Zero.exe type: default -'482990': +"482990": installDir: Heirs And Graces launch: - config: @@ -234586,7 +230376,7 @@ oslist: linux executable: HeirsAndGraces.sh type: none -'483260': +"483260": installDir: Rover The Dragonslayer launch: - config: @@ -234601,7 +230391,7 @@ oslist: macos executable: RoverTheDragonslayer.app type: none -'483420': +"483420": installDir: Adam Wolfe launch: - config: @@ -234612,7 +230402,7 @@ oslist: macos executable: AdamWolfe.app type: default -'483490': +"483490": installDir: Circuitous launch: - config: @@ -234620,51 +230410,51 @@ executable: Circuitous.exe type: none - config: - betakey: '1215061' - osarch: '64' + betakey: "1215061" + osarch: "64" oslist: windows description: Circuitous Designer executable: CircuitousDesigner type: option1 -'483680': +"483680": installDir: PolyDome launch: - config: oslist: windows executable: Polydome_161122.exe type: vr -'483770': +"483770": installDir: Autobahn Police Simulator 2 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: highwaypatrol2.exe type: default - - arguments: '-force-d3d11' + - arguments: "-force-d3d11" config: betakey: publicbeta;bleeding;testing - osarch: '64' + osarch: "64" oslist: windows description: D3D11 Compatibility Mode executable: highwaypatrol2.exe type: none - - arguments: '-force-glcore' + - arguments: "-force-glcore" config: betakey: publicbeta;bleeding;testing - osarch: '64' + osarch: "64" oslist: windows description: GLCore Compatibility Mode executable: highwaypatrol2.exe type: none -'483820': +"483820": installDir: Four Realms launch: - config: oslist: windows executable: nw.exe type: default -'483850': +"483850": installDir: GunsNBoxes launch: - config: @@ -234679,14 +230469,14 @@ oslist: linux executable: GunsNBoxes.x86 type: default -'483960': +"483960": installDir: Purino Party launch: - config: oslist: windows executable: PurinoParty.exe type: none -'483970': +"483970": installDir: Directionless launch: - config: @@ -234694,7 +230484,7 @@ description: Launch executable: Directionless.exe type: vr -'483980': +"483980": installDir: Mad Father launch: - config: @@ -234708,31 +230498,31 @@ - config: oslist: windows description: Original Version - executable: OriginalVersion\\Game.exe + executable: "OriginalVersion\\\\Game.exe" type: option1 - config: oslist: windows - executable: OriginalVersion\\Config.exe + executable: "OriginalVersion\\\\Config.exe" type: config nameLocalized: japanese: Mad Father (マッドファーザー) schinese: Mad Father《狂父》 -'484350': +"484350": installDir: VRZTorment launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: VRZ_Arena.exe type: vr - config: betakey: vrarcade - osarch: '64' + osarch: "64" oslist: windows description: VRZ Launcher executable: VRZLauncher.exe type: config -'484390': +"484390": installDir: Hanger World launch: - config: @@ -234743,7 +230533,7 @@ oslist: macos executable: Hanger World.app type: default -'484830': +"484830": installDir: Deep Blue launch: - config: @@ -234760,88 +230550,88 @@ type: openvroverlay - config: oslist: macos - executable: Contents\\MacOS\\Mac + executable: "Contents\\\\MacOS\\\\Mac" type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Deep Blue.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Deep Blue.x86 type: default -'484870': +"484870": installDir: Battle Dome launch: - config: oslist: windows executable: BattleDome.exe type: vr -'484890': +"484890": installDir: Crazy Otto launch: - config: oslist: windows executable: CrazyOtto.exe type: default -'484900': +"484900": installDir: Aven Colony launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: AvenColony.exe type: default -'484930': +"484930": installDir: Beekyr_Reloaded launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: 1.2.4 (64bit) executable: BeekyrReloaded.exe type: option1 -'484950': +"484950": installDir: EvilMaze launch: - config: oslist: windows executable: Game.exe type: default -'484990': +"484990": installDir: Alveari launch: - - arguments: '-vr' + - arguments: "-vr" config: oslist: windows executable: Alveari.exe type: vr -'4850': +"4850": installDir: Cossacks Back to War launch: - - executable: bin\\csbtw.exe + - executable: "bin\\\\csbtw.exe" workingdir: bin - arguments: /adhoc - description: 'Launch Cossacks: Back to War in Ad-Hoc mode' - executable: bin\\csbtw.exe + description: "Launch Cossacks: Back to War in Ad-Hoc mode" + executable: "bin\\\\csbtw.exe" workingdir: bin - description: Launch Encyclopedia - executable: bin\\HView.exe + executable: "bin\\\\HView.exe" workingdir: bin - description: Launch Scenario Editor - executable: bin\\ScenarioEditor.exe + executable: "bin\\\\ScenarioEditor.exe" workingdir: bin - arguments: /ReadMe description: Show ReadMe - executable: bin\\cshlp.exe + executable: "bin\\\\cshlp.exe" workingdir: bin - arguments: /Docs description: Open Documentation - executable: bin\\cshlp.exe + executable: "bin\\\\cshlp.exe" workingdir: bin -'485000': +"485000": installDir: Cthulhu Realms launch: - config: @@ -234850,16 +230640,16 @@ type: default - config: oslist: macos - executable: CthulhuRealms.app\\Contents\\MacOS\\CthulhuRealms + executable: "CthulhuRealms.app\\\\Contents\\\\MacOS\\\\CthulhuRealms" type: default -'485030': +"485030": installDir: PLANET ALPHA launch: - config: oslist: windows executable: PlanetAlpha.exe type: none -'485040': +"485040": installDir: Nurse Love Addiction launch: - config: @@ -234868,11 +230658,11 @@ type: default nameLocalized: japanese: 白衣性愛情依存症 -'485080': +"485080": installDir: Megapolis launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Megapolis.exe type: default @@ -234885,22 +230675,22 @@ executable: Megapolis type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: Megapolis 32bit.exe type: default nameLocalized: russian: Megapolis / Мегаполис ukrainian: Megapolis / Мегаполіс -'485110': +"485110": installDir: PlanetFate launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: PlanetFate\\Binaries\\Win64\\PlanetFate.exe + executable: "PlanetFate\\\\Binaries\\\\Win64\\\\PlanetFate.exe" type: vr -'485120': +"485120": installDir: Frog Climbers launch: - config: @@ -234911,11 +230701,11 @@ oslist: macos executable: FrogClimbers.app type: default -'485130': +"485130": installDir: SuperRedHotHero launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SuperRedHotHero.exe type: none @@ -234923,7 +230713,7 @@ oslist: macos executable: SuperRedHotHero.app/Contents/MacOS/SuperRedHotHero type: none -'485160': +"485160": installDir: BLACK HOLE HAZARD launch: - config: @@ -234934,21 +230724,21 @@ oslist: macos executable: Black Hole Hazard.app type: default -'485220': {} -'485230': +"485220": {} +"485230": installDir: HALP launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Goliath.exe type: vr - config: - osarch: '64' + osarch: "64" oslist: windows executable: Goliath.exe type: othervr -'485240': +"485240": installDir: Push For Emor launch: - config: @@ -234959,7 +230749,7 @@ oslist: windows executable: PushForEmor.exe type: default -'485260': +"485260": installDir: Talent Not Included launch: - config: @@ -234968,50 +230758,50 @@ type: default - config: oslist: macos - executable: game.app\\Contents\\MacOS\\game + executable: "game.app\\\\Contents\\\\MacOS\\\\game" type: default -'485270': +"485270": installDir: Arachnophobia launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: arachnophobia.exe type: vr -'485290': - installDir: Vermillion Watch Moorgate Accord Collector's Edition +"485290": + installDir: "Vermillion Watch Moorgate Accord Collector's Edition" launch: - executable: VermillionWatch_MoorgateAccord_CE.exe type: none -'485310': +"485310": installDir: Head Shot launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: HeadShot.exe type: default -'485330': +"485330": installDir: Star Drifter launch: - executable: StarDrifter.exe type: none -'485340': +"485340": installDir: The Orchard of Stray Sheep launch: - config: oslist: windows executable: Mayoi_Hitsuji.exe type: default - - arguments: '-force-opengl' + - arguments: "-force-opengl" config: - osarch: '32' + osarch: "32" oslist: linux executable: Mayoi_Hitsuji.x86 type: default - - arguments: '-force-opengl' + - arguments: "-force-opengl" config: - osarch: '64' + osarch: "64" oslist: linux executable: Mayoi_Hitsuji.x86_64 type: default @@ -235019,7 +230809,7 @@ oslist: macos executable: Mayoi_Hitsuji.app type: default -'485350': +"485350": installDir: Winter Novel launch: - config: @@ -235027,12 +230817,12 @@ executable: WinterNovel.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: WinterNovel32 type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: WinterNovel64 type: none @@ -235042,23 +230832,23 @@ type: none - config: oslist: windows - ownsdlc: '512670' + ownsdlc: "512670" description: Configure Screensaver executable: ConfigureScreensaver.vbs type: option1 - - arguments: '-files' + - arguments: "-files" config: oslist: windows - ownsdlc: '512670' + ownsdlc: "512670" description: Show files (install screensaver) executable: ConfigureScreensaver.vbs type: option2 -'485360': +"485360": installDir: Disgraced launch: - executable: Game.exe type: default -'485370': +"485370": installDir: Mad Combat Marines launch: - config: @@ -235069,7 +230859,7 @@ oslist: macos executable: MadCombatMarines.app type: none -'485380': +"485380": installDir: Welcome to the Game launch: - config: @@ -235080,15 +230870,15 @@ oslist: macos executable: wttg.app type: default -'485390': +"485390": installDir: Machine Made Rebirth launch: - config: oslist: windows description: Launch - executable: MMR\\Game.exe + executable: "MMR\\\\Game.exe" type: none -'485400': +"485400": installDir: Mechajammer launch: - config: @@ -235104,30 +230894,30 @@ oslist: linux executable: Mechajammer.x86_64 type: default -'485410': {} -'485420': {} -'485430': +"485410": {} +"485420": {} +"485430": installDir: NAL Is Alive launch: - config: oslist: windows executable: NIALauncher.exe type: default -'485440': +"485440": installDir: SC Jogos launch: - config: oslist: windows executable: Call Of The Mighty Warriors/Call Of The Mighty Warriors.exe type: default -'485450': +"485450": installDir: SC Jogos launch: - config: oslist: windows executable: Ninja Stealth/Ninja Stealth.exe type: default -'485460': +"485460": installDir: tbs3 launch: - config: @@ -235138,40 +230928,40 @@ oslist: windows executable: win32/The Banner Saga 3.exe type: none -'485490': +"485490": installDir: DungeonJourney launch: - config: oslist: windows executable: DungeonJourney.exe type: none -'485500': +"485500": installDir: Smithy launch: - config: oslist: windows executable: smithy.exe type: default -'485510': +"485510": installDir: Nioh launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: nioh_launcher.exe executable: nioh_launcher.exe type: none - config: - osarch: '64' + osarch: "64" oslist: windows - description: 'Play Nioh: Complete Edition (Without Settings)' + description: "Play Nioh: Complete Edition (Without Settings)" executable: nioh.exe type: none nameLocalized: japanese: 仁王 Complete Edition schinese: 仁王 完全版 tchinese: 仁王 完全版 -'485560': +"485560": installDir: POPixel launch: - config: @@ -235180,32 +230970,32 @@ type: none - config: oslist: macos - executable: popixel.app\\Contents\\MacOS\\popixel + executable: "popixel.app\\\\Contents\\\\MacOS\\\\popixel" type: none -'485570': - installDir: Milford Heaven - Luken's Chronicles +"485570": + installDir: "Milford Heaven - Luken's Chronicles" launch: - config: oslist: windows executable: milford_heaven.exe type: none -'485580': {} -'485590': +"485580": {} +"485590": installDir: Citadel launch: - executable: Citadel.exe type: default - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" executable: Citadel.exe type: config -'485600': +"485600": installDir: OESE launch: - config: oslist: windows executable: oesegame.exe type: none -'485610': +"485610": installDir: Ball 3D launch: - config: @@ -235216,21 +231006,21 @@ oslist: macos executable: Ball 3D.app type: default -'485620': +"485620": installDir: Pick a Hero launch: - config: oslist: windows executable: Game.exe type: none -'485630': +"485630": installDir: Brazed launch: - config: oslist: windows executable: Brazed.exe type: default -'485640': +"485640": installDir: Genius Greedy Mouse launch: - config: @@ -235242,42 +231032,42 @@ description: Eazy Maze Greedy Mouse Edition executable: greedymouse.exe type: none -'485650': +"485650": installDir: Campaign Clicker launch: - config: oslist: windows executable: CampaignClicker.exe type: none -'485660': +"485660": installDir: Karma Miwa launch: - config: oslist: windows executable: karmamiwa.exe type: none -'485670': +"485670": installDir: Mini Golf Arena launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: Mini Golf Arena.exe type: none - config: - osarch: '64' + osarch: "64" oslist: windows executable: Mini Golf Arena.exe type: none - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: Mini Golf Arena.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Mini Golf Arena.x86_64 @@ -235285,12 +231075,12 @@ - config: oslist: macos description: Launch - executable: Mini Golf Arena.app\\Contents\\MacOS\\Mini Golf Arena + executable: "Mini Golf Arena.app\\\\Contents\\\\MacOS\\\\Mini Golf Arena" type: none nameLocalized: english: Mini Golf Arena russian: Мини Гольф Арена -'485680': +"485680": installDir: sphereFACE launch: - config: @@ -235299,13 +231089,13 @@ executable: sphereFACE.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: start_linux.sh type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: start_linux.sh @@ -235321,13 +231111,13 @@ executable: sphereFACE.exe type: vr - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch in VR executable: start_linux.sh type: vr - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch in VR executable: start_linux.sh @@ -235337,30 +231127,30 @@ description: Launch in VR executable: sphereFACE.app/Contents/MacOS/run.sh type: vr -'485690': +"485690": installDir: Hope Lake launch: - config: oslist: windows executable: HopeLake.exe type: none -'485700': {} -'485730': +"485700": {} +"485730": installDir: Shift launch: - config: oslist: windows executable: SHIFT.exe type: default -'485740': {} -'485750': +"485740": {} +"485750": installDir: Magnetta launch: - config: oslist: windows executable: Magnetta.exe type: default -'485760': +"485760": installDir: LegendofNumbers launch: - config: @@ -235375,7 +231165,7 @@ oslist: linux executable: lon.x86 type: none -'485770': +"485770": installDir: Penguins of The North launch: - config: @@ -235383,14 +231173,14 @@ description: Windows executable: Penguins of The North.exe type: none -'485780': +"485780": installDir: SoundStage launch: - config: oslist: windows executable: main.exe type: vr -'485790': +"485790": installDir: Jolt launch: - config: @@ -235398,10 +231188,10 @@ description: Launch executable: Jolt.exe type: none -'485800': +"485800": installDir: Runeous - Part One launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows executable: nw.exe @@ -235410,26 +231200,26 @@ oslist: macos executable: nwjs.app type: none -'485820': +"485820": installDir: e-River Cabin Journal launch: - config: oslist: windows executable: e CabinTestGameFile.exe type: default -'485830': +"485830": installDir: Star Merc launch: - executable: Game.exe type: none -'485860': +"485860": installDir: Impossible Quest launch: - config: oslist: windows executable: Impossible Quest.exe type: none -'485870': +"485870": installDir: Super Duper Party Pooper launch: - config: @@ -235440,42 +231230,42 @@ oslist: macos executable: SuperDuperPartyPooper.app type: default -'485880': +"485880": installDir: L U N E launch: - config: oslist: windows executable: lune.exe type: vr -'485890': +"485890": installDir: Summer Sale launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Summer_Sale.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: Summer_Sale.exe type: default -'485900': +"485900": installDir: Hardware Engineers launch: - executable: Hardware Engineers.exe type: none -'485920': +"485920": installDir: Neon Warp launch: - executable: Neon Warp.exe type: none -'485950': +"485950": installDir: Rise of the Ancients launch: - executable: RiseoftheAncients.exe type: none -'485970': +"485970": installDir: Cyber Sentinel launch: - config: @@ -235487,46 +231277,44 @@ executable: Cyber Sentinel.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Cyber Sentinel.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Cyber Sentinel.x86_64 type: default -'485980': +"485980": installDir: Syrian Warfare launch: - config: oslist: windows - executable: bin\\SyrianWarfare.exe + executable: "bin\\\\SyrianWarfare.exe" type: default - - arguments: '-dlc ReturnToPalmyra' + - arguments: "-dlc ReturnToPalmyra" config: oslist: windows - ownsdlc: '635030' + ownsdlc: "635030" description: Return to Palmyra - executable: bin\\SyrianWarfare.exe + executable: "bin\\\\SyrianWarfare.exe" type: option1 - - arguments: '-dlc Battlefields' + - arguments: "-dlc Battlefields" config: oslist: windows - ownsdlc: '938490' + ownsdlc: "938490" description: Battlefields - executable: bin2\\SyrianWarfare.exe + executable: "bin2\\\\SyrianWarfare.exe" type: option1 - - arguments: '-dlc Battlefields' + - arguments: "-dlc Battlefields" config: oslist: windows - ownsdlc: '938490' + ownsdlc: "938490" description: Editor - description_loc: - english: Editor - executable: bin2\\SW_editor.exe + executable: "bin2\\\\SW_editor.exe" type: editor -'486020': +"486020": installDir: Hero launch: - config: @@ -235534,7 +231322,7 @@ description: Windows Build Options executable: Hero Windows.exe type: default -'486120': +"486120": installDir: Escape The Past launch: - config: @@ -235543,9 +231331,9 @@ type: default - config: oslist: macos - executable: Escape The Past.app\\Contents\\MacOS\\Escape The Past + executable: "Escape The Past.app\\\\Contents\\\\MacOS\\\\Escape The Past" type: default -'486130': +"486130": installDir: Best Buds launch: - config: @@ -235561,7 +231349,7 @@ oslist: linux executable: BestBuds.x86 type: default -'486140': +"486140": installDir: NineGrids VR launch: - config: @@ -235569,11 +231357,11 @@ executable: NineGrids.exe type: vr - config: - osarch: '64' + osarch: "64" oslist: linux executable: NineGrids.exe type: vr -'486150': +"486150": installDir: Radical Spectrum Volume 1 launch: - config: @@ -235584,39 +231372,39 @@ oslist: macos executable: RadicalSpectrumMac.app type: none -'486160': +"486160": installDir: Berserk The Cataclysm launch: - config: oslist: windows executable: berserk.exe type: default -'486170': +"486170": installDir: Bathory - The Bloody Countess launch: - config: oslist: windows executable: Bathory.exe type: none -'486180': +"486180": installDir: The Penguin Factory launch: - config: oslist: windows description: Play The Penguin Factory - executable: The Penguin Factory\\The Penguin Factory.exe + executable: "The Penguin Factory\\\\The Penguin Factory.exe" type: none - config: oslist: linux description: Play The Penguin Factory - executable: The Penguin Factory\\The Penguin Factory.x86_64 + executable: "The Penguin Factory\\\\The Penguin Factory.x86_64" type: none - config: oslist: macos description: Play The Penguin Factory - executable: The Penguin Factory\\The Penguin Factory.app + executable: "The Penguin Factory\\\\The Penguin Factory.app" type: none -'486230': +"486230": installDir: Con Amore launch: - config: @@ -235631,21 +231419,21 @@ oslist: macos executable: Con Amore.app type: default -'486290': +"486290": installDir: Waddle Home launch: - config: oslist: windows executable: WaddleHome.exe type: vr -'486300': +"486300": installDir: Plan Z Chapter 1 launch: - config: oslist: windows executable: Plan Z.exe type: default -'486310': +"486310": installDir: Meadow launch: - config: @@ -235663,37 +231451,37 @@ description: Launch executable: Meadow.x86 type: none -'486320': +"486320": installDir: OrbitSatelliteDefense launch: - config: oslist: windows executable: OrbitSatelliteDefense.exe type: default -'486340': {} -'486350': +"486340": {} +"486350": installDir: SquareArena launch: - config: oslist: windows executable: SquareArena.exe type: default -'486360': +"486360": installDir: Timore Inferno launch: - config: oslist: windows executable: Timore Inferno.exe type: default -'486370': +"486370": installDir: Evolution Pinball VR The Summoning launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: EvoVR_TheSummoning.exe type: vr -'486380': +"486380": installDir: Shigatari launch: - config: @@ -235708,53 +231496,53 @@ oslist: macos executable: Shigatari.app type: none -'486430': +"486430": installDir: Sphoxie launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Sphoxie.exe type: default -'486440': +"486440": installDir: Mosh Pit Simulator launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Mosh Pit Simulator.exe type: vr -'486460': +"486460": installDir: Twilight Town launch: - config: oslist: windows executable: TwilightTown.exe type: none -'486470': +"486470": installDir: Derelict launch: - config: oslist: windows executable: Derelict.exe type: default -'486480': +"486480": installDir: TOD launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TOD.exe type: default -'486490': +"486490": installDir: Witan launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: Witan.exe type: default -'486500': +"486500": installDir: Spooky Heroes launch: - config: @@ -235765,21 +231553,21 @@ oslist: linux executable: nw type: default -'486510': +"486510": installDir: TOKYO WARFARE launch: - config: oslist: windows executable: TokyoWarfare.exe type: none -'486540': +"486540": installDir: Townsmen launch: - config: oslist: windows executable: Townsmen.exe type: default -'486550': +"486550": installDir: The Caretaker launch: - config: @@ -235790,14 +231578,14 @@ oslist: macos executable: TheCaretaker.app type: default -'486630': +"486630": installDir: Toxic Terror launch: - config: oslist: windows executable: Toxic Terror.exe type: default -'486640': +"486640": installDir: Cheaters Blackjack 21 launch: - config: @@ -235808,7 +231596,7 @@ oslist: linux executable: runner type: default -'486650': +"486650": installDir: Potato_Thriller_Steamed_Potato_Edition launch: - config: @@ -235817,63 +231605,63 @@ type: none - executable: game.exe type: none -'486660': +"486660": installDir: SuperMixtape launch: - config: oslist: windows executable: SuperMixtape.exe type: default -'486690': +"486690": installDir: PasteliaStories launch: - config: oslist: windows executable: PSGame.exe type: default -'486720': +"486720": installDir: Bastard Bonds launch: - config: oslist: windows executable: BB.exe type: default -'486760': +"486760": installDir: MasterOfMarbles launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Marble.exe type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: Marble.sh type: none -'486780': +"486780": installDir: FruitNinjaVR launch: - config: oslist: windows executable: FruitNinja.exe type: vr -'486810': +"486810": installDir: HouseofSnark6-in-1Bundle launch: - config: oslist: windows executable: HouseOfSnark6in1.exe type: default -'486820': {} -'486850': +"486820": {} +"486850": installDir: Card of spirits launch: - config: oslist: windows executable: Game.exe type: default -'486860': +"486860": installDir: MMORPG Tycoon 2 launch: - config: @@ -235888,12 +231676,12 @@ oslist: linux executable: MT2 type: default -'486880': +"486880": installDir: Abrix for kids launch: - executable: Abrix 2.exe type: none -'486890': +"486890": installDir: Gear Gauntlet launch: - config: @@ -235902,85 +231690,85 @@ type: default - config: oslist: macos - executable: gear_gauntlet.app\\Contents\\MacOS\\gear_gauntlet + executable: "gear_gauntlet.app\\\\Contents\\\\MacOS\\\\gear_gauntlet" type: default -'486940': +"486940": installDir: HandballActionTotal launch: - config: oslist: windows executable: HandballActionTotal.exe type: default -'486990': +"486990": installDir: Jump Stars launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: JumpStars.exe type: default -'4870': +"4870": installDir: Cossacks Art of War launch: - executable: dmcr.exe -'48700': +"48700": installDir: MountBlade Warband launch: - config: oslist: windows - description: 'Launch Mount&Blade: Warband' + description: "Launch Mount&Blade: Warband" executable: mb_warband.exe - config: oslist: macos - description: 'Launch Mount&Blade: Warband' + description: "Launch Mount&Blade: Warband" executable: Mount and Blade.app - config: oslist: linux - description: 'Launch Mount&Blade: Warband' + description: "Launch Mount&Blade: Warband" executable: mb_warband_linux - config: oslist: linux - description: 'Configure Mount&Blade: Warband (choose module)' + description: "Configure Mount&Blade: Warband (choose module)" executable: mbw_config.sh - config: oslist: macos - description: 'Configure Mount&Blade: Warband (choose module)' + description: "Configure Mount&Blade: Warband (choose module)" executable: MBWLauncher.app -'487000': +"487000": installDir: Quest Hunter launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Quest Hunter.exe type: default - config: oslist: macos - executable: Quest Hunter.app\\Contents\\MacOS\\Quest Hunter + executable: "Quest Hunter.app\\\\Contents\\\\MacOS\\\\Quest Hunter" type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Quest Hunter.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Quest Hunter.x86 type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: Quest Hunter.exe type: default -'487020': +"487020": installDir: Fantasy Mosaics 14 Fourth Color launch: - config: oslist: windows executable: fantasy_mosaics_14.exe type: default -'487030': +"487030": installDir: Beasts Battle launch: - config: @@ -235990,9 +231778,9 @@ type: default - config: oslist: macos - executable: BeastsBattle.app\\Contents\\MacOS\\BeastsBattle + executable: "BeastsBattle.app\\\\Contents\\\\MacOS\\\\BeastsBattle" type: none -'487040': +"487040": installDir: 88 Heroes launch: - config: @@ -236001,47 +231789,47 @@ type: default - config: oslist: macos - executable: 88 Heroes.app\\Contents\\MacOS\\88 Heroes + executable: "88 Heroes.app\\\\Contents\\\\MacOS\\\\88 Heroes" type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: 88 Heroes.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: 88 Heroes.x86_64 type: default -'487120': +"487120": installDir: Citadel launch: - config: oslist: windows executable: Citadel.exe type: default -'487160': +"487160": installDir: Trials of Azra launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: TrialsOfAzra.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: TrialsOfAzra.exe type: default - config: oslist: macos - executable: TrialsOfAzra.app\\Contents\\MacOS\\TrialsOfAzra + executable: "TrialsOfAzra.app\\\\Contents\\\\MacOS\\\\TrialsOfAzra" type: default - config: oslist: linux executable: TrialsOfAzra.sh type: default -'487180': +"487180": installDir: The Lords of the Earth Flame launch: - config: @@ -236052,26 +231840,26 @@ oslist: macos executable: The Lords of the Earth Flame.app/Contents/MacOS/The Lords of the Earth Flame type: none -'48720': +"48720": installDir: Mount & Blade With Fire and Sword launch: - executable: mb_wfas.exe -'487220': +"487220": installDir: Freebie launch: - config: oslist: windows executable: game.exe type: default -'487250': +"487250": installDir: Spaera launch: - config: oslist: windows executable: Spaera.exe type: none -'487270': {} -'487330': +"487270": {} +"487330": installDir: Totally Unbalanced launch: - config: @@ -236082,7 +231870,7 @@ oslist: macos executable: TotallyUnbalanced.app type: default -'487350': +"487350": installDir: Pirate Pop Plus launch: - config: @@ -236091,79 +231879,79 @@ type: default - config: oslist: macos - executable: PiratePopPlus.app\\Contents\\MacOS\\PiratePopPlus + executable: "PiratePopPlus.app\\\\Contents\\\\MacOS\\\\PiratePopPlus" type: default -'487370': +"487370": installDir: Akin launch: - config: oslist: windows executable: Akin.exe type: none -'487380': +"487380": installDir: Tetradecagon launch: - - arguments: '-jar tetradecagon.jar' + - arguments: "-jar tetradecagon.jar" config: oslist: windows - executable: jre\\bin\\javaw.exe + executable: "jre\\\\bin\\\\javaw.exe" type: none - - arguments: '-jar tetradecagon.jar' + - arguments: "-jar tetradecagon.jar" config: oslist: macos - executable: jre\\Contents\\Home\\bin\\java + executable: "jre\\\\Contents\\\\Home\\\\bin\\\\java" type: none - - arguments: '-jar tetradecagon.jar' + - arguments: "-jar tetradecagon.jar" config: oslist: linux - executable: jre\\bin\\java + executable: "jre\\\\bin\\\\java" type: none -'487420': {} -'487430': +"487420": {} +"487430": installDir: KARAKARA launch: - config: oslist: windows executable: KARAKARA.exe type: default -'487500': {} -'487530': +"487500": {} +"487530": installDir: Simple Ball Extended Edition launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: SB.exe type: none -'487580': +"487580": installDir: Ludo Supremo launch: - config: oslist: windows executable: LudoSupremo.exe type: default -'487590': +"487590": installDir: Pepe Porcupine launch: - config: oslist: windows executable: PepePorcupine.exe type: default -'487600': +"487600": installDir: Puzzles Under The Hill launch: - config: oslist: windows executable: PuzzlesUnderTheHill.exe type: default -'487620': +"487620": installDir: PerfectAngleVR launch: - config: oslist: windows executable: PA_ZEN.exe type: vr -'487630': +"487630": installDir: Lantern launch: - config: @@ -236174,7 +231962,7 @@ oslist: windows executable: Lantern.exe type: vr -'487700': +"487700": installDir: Conan the mighty pig launch: - config: @@ -236189,188 +231977,186 @@ oslist: macos executable: Conan_migthy_pig_MAC.app type: none -'487720': +"487720": installDir: Agony launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Agony.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows - ownsdlc: '1921050' + ownsdlc: "1921050" description: Agony UNRATED - description_loc: - english: Agony UNRATED executable: UNRATED/Agony.exe workingdir: UNRATED/ -'487730': +"487730": installDir: Hat Trick Header launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: hth.exe type: vr -'487740': +"487740": installDir: Tower Island launch: - config: oslist: windows executable: Tower_Island.exe type: vr -'487770': +"487770": installDir: Hoops VR launch: - config: oslist: windows executable: HoopsVR.exe type: vr -'4880': +"4880": installDir: Cossacks European Wars launch: - executable: dmcr.exe -'48800': +"48800": installDir: Ship Simulator Extremes launch: - executable: Steam.exe -'488020': +"488020": installDir: Day of Destruction launch: - config: oslist: windows executable: dod.exe type: vr -'488070': +"488070": installDir: Escargot Kart launch: - config: oslist: windows executable: Escargot Kart.exe type: none - - arguments: '-screen-quality Ugly' + - arguments: "-screen-quality Ugly" config: oslist: windows description: Compatibility Mode executable: Escargot Kart.exe type: none -'488080': +"488080": installDir: Taxi launch: - config: oslist: windows executable: Taxi.exe type: default -'488150': +"488150": installDir: Octoshield launch: - config: oslist: windows executable: ShieldVR.exe type: vr -'488160': +"488160": installDir: Galaxy Combat Wargames launch: - config: oslist: windows executable: GCWG.exe type: none -'488200': {} -'488210': +"488200": {} +"488210": installDir: JDM Tuner Racing launch: - config: oslist: windows executable: JDM.exe type: default -'488220': +"488220": installDir: Valcarta Rise of the Demon launch: - config: oslist: windows executable: Game.exe type: default -'488280': +"488280": installDir: Gun Done launch: - description: launch executable: Gun Done.exe type: none -'488300': +"488300": installDir: Mark McMorris Infinite Air launch: - description: Play Infinite Air executable: snowboarding.exe type: none - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" description: Launch Options executable: snowboarding.exe type: none -'488310': +"488310": installDir: Eleven Table Tennis VR launch: - config: oslist: windows executable: pong_waves_vr.exe type: vr -'488330': +"488330": installDir: Highway to the Moon launch: - config: oslist: windows executable: RunHighway.bat type: none -'488350': +"488350": installDir: The Karters launch: - executable: TheKarters.exe type: none -'488360': +"488360": installDir: Vistascapes VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Vistascapes VR.exe type: vr -'488430': +"488430": installDir: Galaxy in Turmoil launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: GalaxyinTurmoil.exe type: default -'488440': +"488440": installDir: Angeldust launch: - arguments: Angeldust (32-bit) config: - osarch: '32' + osarch: "32" oslist: windows - executable: Angeldust.app\\Contents\\Resources\\Angeldust.exe + executable: "Angeldust.app\\\\Contents\\\\Resources\\\\Angeldust.exe" type: default - workingdir: Angeldust.app\\Contents\\Resources\\ + workingdir: "Angeldust.app\\\\Contents\\\\Resources\\\\" - config: oslist: macos executable: Angeldust.app/Contents/MacOS/Angeldust type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Angeldust.app/Contents/Resources/Angeldust.x86_64 type: default workingdir: Angeldust.app/Contents/Resources/ - config: - osarch: '64' + osarch: "64" oslist: windows description: Angeldust (64-bit) - executable: Angeldust.app\\Contents\\Resources\\Angeldust64.exe + executable: "Angeldust.app\\\\Contents\\\\Resources\\\\Angeldust64.exe" type: default workingdir: Angeldust.app/Contents/Resources/ -'488460': +"488460": installDir: zeus_quest_remastered launch: - config: @@ -236379,25 +232165,25 @@ type: default - config: oslist: macos - executable: Zeus Quest Remastered.app\\Contents\\MacOS\\Zeus Quest Remastered + executable: "Zeus Quest Remastered.app\\\\Contents\\\\MacOS\\\\Zeus Quest Remastered" type: default - - arguments: '-force-opengl' + - arguments: "-force-opengl" config: - osarch: '32' + osarch: "32" oslist: linux executable: Zeus Quest Remastered.x86 type: default - - arguments: '-force-opengl' + - arguments: "-force-opengl" config: - osarch: '64' + osarch: "64" oslist: linux executable: Zeus Quest Remastered.x86_64 type: default -'488480': +"488480": installDir: SpaceRoads launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SpaceRoads.exe type: default @@ -236405,34 +232191,34 @@ oslist: macos executable: OSX.app type: default -'488500': +"488500": installDir: The book of commands Lost Symbol launch: - config: oslist: windows executable: LostSymbol.exe type: default -'488510': +"488510": installDir: Dumb Chicken 2 One Way Out launch: - config: oslist: windows executable: DumbChicken2.exe type: default -'488550': +"488550": installDir: Dream Car Builder launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: dcr3d_x64.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: dcr3d_x32.exe type: default -'488580': +"488580": installDir: Hover 2030 launch: - config: @@ -236443,14 +232229,14 @@ oslist: macos executable: hover2030.app type: none -'488590': +"488590": installDir: Armed Against the Undead launch: - config: oslist: windows executable: armed.exe type: vr -'488660': +"488660": installDir: Just Deserts launch: - config: @@ -236462,55 +232248,47 @@ executable: JustDeserts.sh type: default - config: - osarch: '64' + osarch: "64" oslist: windows description: Just Deserts - description_loc: - english: Just Deserts executable: JustDeserts.exe type: default - config: oslist: linux - ownsdlc: '1394950' + ownsdlc: "1394950" description: Just Deserts - Valerya Chapter executable: JustDeserts-ValeryaChapter/JustDeserts-ValeryaChapter.sh type: option1 workingdir: JustDeserts-ValeryaChapter - config: - osarch: '64' + osarch: "64" oslist: windows - ownsdlc: '1394950' + ownsdlc: "1394950" description: Just Deserts - Valerya Chapter - description_loc: - english: Just Deserts - Valerya Chapter executable: JustDeserts-ValeryaChapter/JustDeserts-ValeryaChapter.exe type: option1 workingdir: JustDeserts-ValeryaChapter - config: oslist: macos - ownsdlc: '1394950' + ownsdlc: "1394950" description: Just Deserts - Valerya Chapter - description_loc: - english: Just Deserts - Valerya Chapter executable: JustDeserts-ValeryaChapter/JustDeserts-ValeryaChapter.app/Contents/MacOS/JustDeserts-ValeryaChapter type: option1 workingdir: JustDeserts-ValeryaChapter - config: - osarch: '32' + osarch: "32" oslist: windows - ownsdlc: '1394950' + ownsdlc: "1394950" description: Just Deserts - Valerya Chapter - 32bit - description_loc: - english: Just Deserts - Valerya Chapter - 32bit executable: JustDeserts-ValeryaChapter/JustDeserts-ValeryaChapter-32.exe type: option1 workingdir: JustDeserts-ValeryaChapter - config: - osarch: '32' + osarch: "32" oslist: windows executable: JustDeserts-32.exe type: default -'488690': +"488690": installDir: MX Nitro launch: - config: @@ -236525,39 +232303,39 @@ oslist: linux executable: mxn.x86 type: none -'488720': {} -'488730': +"488720": {} +"488730": installDir: GodsTrigger launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: GodsTrigger.exe type: default - config: oslist: windows - ownsdlc: '1042870' + ownsdlc: "1042870" description: O.M.G. Edition - Extras executable: O.M.G. Edition - Extras/extras.bat type: none workingdir: O.M.G. Edition - Extras -'488760': +"488760": installDir: Left-Hand Path launch: - config: oslist: windows executable: Left-Hand Path.exe type: vr -'488770': - installDir: Her Majesty's SPIFFING +"488770": + installDir: "Her Majesty's SPIFFING" launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: hms64.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: hms.exe type: default @@ -236569,10 +232347,10 @@ oslist: linux executable: hms.x86 type: default -'488790': +"488790": installDir: South Park The Fractured But Whole launch: - - arguments: '-uplay_steam_mode' + - arguments: "-uplay_steam_mode" description: Retail executable: SouthPark_TFBW.exe type: default @@ -236581,27 +232359,27 @@ description: Final (Uplay PROD) executable: Camel_x64_Final.exe type: option1 - - arguments: '-orbituat -override_uplay_pc_id 4502' + - arguments: "-orbituat -override_uplay_pc_id 4502" config: betakey: test description: Final (Uplay UAT) executable: Camel_x64_Final.exe type: option2 -'488860': +"488860": installDir: Madness Project Nexus 2 launch: - config: oslist: windows executable: Madness Project Nexus.exe type: default -'488890': +"488890": installDir: GentleMoon 2 launch: - config: oslist: windows executable: GentleMoon 2.exe type: none -'488910': +"488910": installDir: Astral Heroes launch: - config: @@ -236609,23 +232387,23 @@ description: Play Astral Heroes executable: AstralHeroes.exe type: default -'488920': +"488920": installDir: Knockout launch: - config: oslist: windows executable: Knockout.exe type: vr -'488950': +"488950": installDir: Werewolves Within launch: - - arguments: '-uplay_steam_mode' + - arguments: "-uplay_steam_mode" config: - osarch: '64' + osarch: "64" oslist: windows executable: Werewolves Within.exe type: vr -'488960': +"488960": installDir: Star Vikings launch: - config: @@ -236640,19 +232418,19 @@ oslist: linux executable: StarVikings.x86 type: none -'4890': +"4890": installDir: Cossacks II Battle for Europe launch: - executable: engine.exe type: default -'48900': +"48900": installDir: Saira launch: - description: Game executable: Saira.exe - description: Settings executable: Settings.exe -'489000': +"489000": installDir: TheInfiniteBlack launch: - config: @@ -236660,12 +232438,12 @@ executable: tib-windows.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: tib-unity-linux.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: tib-unity-linux.x86_64 type: default @@ -236673,41 +232451,41 @@ oslist: macos executable: tib-unity-osx.app type: default -'489020': +"489020": installDir: iGrow Game launch: - config: oslist: windows executable: iGrowGame.exe type: default -'489050': +"489050": installDir: Whitetail Challenge launch: - config: oslist: windows executable: Whitetail_Challenge.exe type: default -'489070': +"489070": installDir: Edge of Twilight - Return to Glory launch: - config: oslist: windows - executable: Binaries\\Win32\\Shipping-TwilightGame.exe + executable: "Binaries\\\\Win32\\\\Shipping-TwilightGame.exe" type: none -'489080': +"489080": installDir: Spellforge Beta launch: - config: oslist: windows executable: Spellforge.exe type: default -'489100': +"489100": installDir: MachRace launch: - - arguments: '-fullscreen' + - arguments: "-fullscreen" executable: MachRace.exe type: none -'489110': +"489110": installDir: Harmonious Games launch: - config: @@ -236718,19 +232496,19 @@ oslist: macos executable: putty_pals.app type: none -'489120': +"489120": installDir: Sling Ming launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: Bin\\SlingMing64.exe + executable: "Bin\\\\SlingMing64.exe" type: none workingdir: Bin - config: - osarch: '32' + osarch: "32" oslist: windows - executable: Bin\\SlingMing32.exe + executable: "Bin\\\\SlingMing32.exe" type: none workingdir: Bin - config: @@ -236738,7 +232516,7 @@ executable: SlingMing.app/Contents/MacOS/SlingMing type: none workingdir: SlingMing.app/Contents/MacOS -'489140': +"489140": installDir: Mr Shifty launch: - config: @@ -236753,43 +232531,43 @@ oslist: linux executable: MrShifty.x86_64 type: none -'489160': +"489160": installDir: VRShooterGuns launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: VRShooterGuns.exe type: vr -'489170': +"489170": installDir: Galaxy Reavers launch: - executable: Galaxy.exe type: none -'489220': +"489220": installDir: Unforgiving Trials The Darkest Crusade launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows description: Launch executable: nw.exe type: none -'489240': +"489240": installDir: ExiletoDeath launch: - config: oslist: windows executable: ExiletoDeath.exe type: default -'489260': +"489260": installDir: Brut@l launch: - config: oslist: windows executable: Brut@l.exe type: default -'489360': +"489360": installDir: CASE Animatronics launch: - config: @@ -236798,47 +232576,47 @@ type: default - config: oslist: macos - executable: case.app\\Contents\\MacOS\\case + executable: "case.app\\\\Contents\\\\MacOS\\\\case" type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: case.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: case.x86_64 type: default -'489370': +"489370": installDir: Quarantine launch: - config: oslist: windows executable: Quarantine.exe type: none -'489380': +"489380": installDir: QuiVr launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: QuiVr.exe type: vr -'489400': +"489400": installDir: The Last Look launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: TheLastLook/Binaries/Win32/TheLastLook-Win32-Shipping.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: TheLastLook/Binaries/Win64/TheLastLook-Win64-Shipping.exe type: default -'489440': +"489440": installDir: Tentacult! launch: - config: @@ -236849,35 +232627,35 @@ oslist: macos executable: Tentacult.app type: default -'489460': +"489460": installDir: The Last Leviathan launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TheLastLeviathan.exe type: default - config: - osarch: '64' + osarch: "64" oslist: macos executable: TheLastLeviathan.app type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: TheLastLeviathan32.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: TheLastLeviathan.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: TheLastLeviathan.x86_64 type: default -'489470': +"489470": installDir: Hide and Secret Treasure of the Ages launch: - config: @@ -236895,149 +232673,133 @@ description: Launch executable: HideAndSecretTreasureOfTheAges.x86 type: none -'48950': +"48950": installDir: Greed Corp launch: - executable: Game.exe -'489520': +"489520": installDir: Minion Masters launch: - - arguments: 'platform=steam serverip=wss://live.service.minionmastersthegame.com:443/profile' + - arguments: "platform=steam serverip=wss://live.service.minionmastersthegame.com:443/profile" config: - betakey: 'build_test,build_test_2,build_test_3,auto_perf_adjust,launcher_test,build,build_auto,early_access' + betakey: "build_test,build_test_2,build_test_3,auto_perf_adjust,launcher_test,build,build_auto,early_access" oslist: windows executable: MinionMasters.exe type: default - - arguments: 'platform=steam serverip=ws://live.service.minionmastersthegame.com/profile' + - arguments: "platform=steam serverip=ws://live.service.minionmastersthegame.com/profile" config: - betakey: 'build_test,user_test,build_test_2,auto_perf_adjust' + betakey: "build_test,user_test,build_test_2,auto_perf_adjust" oslist: windows - description: 'Server: default ip' - description_loc: - english: 'Server: default ip' + description: "Server: default ip" executable: MinionMasters.exe - - arguments: 'serverip=ws://192.168.59.12:80/profile platform=steam' + - arguments: "serverip=ws://192.168.59.12:80/profile platform=steam" config: - betakey: 'build_test,build_test_2,build_test_3,build,build_auto' + betakey: "build_test,build_test_2,build_test_3,build,build_auto" oslist: windows - description: 'Server: Office' + description: "Server: Office" executable: MinionMasters.exe type: none - - arguments: 'serverip=ws://127.0.0.1:80/profile platform=steam' + - arguments: "serverip=ws://127.0.0.1:80/profile platform=steam" config: - betakey: 'build_test,build_test_2,build_test_3,build,build_auto' + betakey: "build_test,build_test_2,build_test_3,build,build_auto" oslist: windows - description: 'Server: Local PC' - description_loc: - english: 'Server: Local PC' + description: "Server: Local PC" executable: MinionMasters.exe - - arguments: 'serverip=ws://192.168.59.13:80/profile platform=steam' + - arguments: "serverip=ws://192.168.59.13:80/profile platform=steam" config: - betakey: 'build_test,build_test_2,auto_perf_adjust,build_test_3,build,build_auto' + betakey: "build_test,build_test_2,auto_perf_adjust,build_test_3,build,build_auto" oslist: windows - description: 'Server: Office 2' + description: "Server: Office 2" executable: MinionMasters.exe type: none - - arguments: 'MinionMasters.exe platform=steam serverip=ws://live.service.minionmastersthegame.com/profile' + - arguments: "MinionMasters.exe platform=steam serverip=ws://live.service.minionmastersthegame.com/profile" config: betakey: launcher_test oslist: windows executable: Launcher.exe type: default - - arguments: 'serverip=ws://192.168.59.141:80/profile platform=steam' + - arguments: "serverip=ws://192.168.59.141:80/profile platform=steam" config: - betakey: 'build_test,build_test_2' + betakey: "build_test,build_test_2" oslist: windows - description: 'Server: PartsyDwarf (.119)' + description: "Server: PartsyDwarf (.119)" executable: MinionMasters.exe type: none - - arguments: 'serverip=ws://192.168.59.50:80/profile platform=steam' + - arguments: "serverip=ws://192.168.59.50:80/profile platform=steam" config: betakey: build_test oslist: windows - description: 'Server: Thunderdwarf (.50)' - description_loc: - english: 'Server: Thunderdwarf (.50)' + description: "Server: Thunderdwarf (.50)" executable: MinionMasters.exe - - arguments: 'serverip=ws://35.195.74.6:80/profile ptr=1 platform=steam' + - arguments: "serverip=ws://35.195.74.6:80/profile ptr=1 platform=steam" config: betakey: private_test_realm oslist: windows description: PTR server - description_loc: - english: PTR server executable: MinionMasters.exe type: default - - arguments: 'serverip=ws://192.168.59.17:80/profile platform=steam' + - arguments: "serverip=ws://192.168.59.17:80/profile platform=steam" config: - betakey: 'build_test,build_test_2,build_test_3,adventure_test,build,build_auto' + betakey: "build_test,build_test_2,build_test_3,adventure_test,build,build_auto" oslist: windows - description: 'Server: Office3 (.136)' + description: "Server: Office3 (.136)" executable: MinionMasters.exe type: none - - arguments: 'serverip=wss://staging.service.minionmastersthegame.com:443/profile platform=steam' + - arguments: "serverip=wss://staging.service.minionmastersthegame.com:443/profile platform=steam" config: - betakey: 'profile_debug, build_test, build_test_2, build_test_3, build, build_auto' + betakey: "profile_debug, build_test, build_test_2, build_test_3, build, build_auto" oslist: windows description: Staging executable: MinionMasters.exe type: none - - arguments: 'platform=steam serverip=wss://live.service.minionmastersthegame.com:443/profile' + - arguments: "platform=steam serverip=wss://live.service.minionmastersthegame.com:443/profile" config: oslist: macos - executable: MinionMasters.app\\Contents\\MacOS\\Minion Masters + executable: "MinionMasters.app\\\\Contents\\\\MacOS\\\\Minion Masters" type: default - - arguments: 'platform=steam serverip=ws://106.2.6.35:4400/profile' + - arguments: "platform=steam serverip=ws://106.2.6.35:4400/profile" config: betakey: steam_china description: China Server executable: MinionMasters.exe type: default - - arguments: 'serverip=ws://35.210.83.77:80/profile ptr=1 platform=steam' + - arguments: "serverip=ws://35.210.83.77:80/profile ptr=1 platform=steam" config: betakey: press_ptr oslist: windows description: Press PTR executable: MinionMasters.exe type: default - - arguments: >- - platform=steam serverip=wss://live.service.minionmastersthegame.com:443/profile enablecloudservice - cloudserviceip=minion-masters-cloud-service-w44q4uzlaq-ew.a.run.app cloudservicechance=0 + - arguments: "platform=steam serverip=wss://live.service.minionmastersthegame.com:443/profile enablecloudservice cloudserviceip=minion-masters-cloud-service-w44q4uzlaq-ew.a.run.app cloudservicechance=0" config: betakey: build_test_3 oslist: windows description: Cloud Service Test executable: MinionMasters.exe type: none - - arguments: 'serverip=ws://192.168.59.137:80/profile platform=steam' + - arguments: "serverip=ws://192.168.59.137:80/profile platform=steam" config: - betakey: 'build_test,build_test_2,build_test_3,build,build_auto' + betakey: "build_test,build_test_2,build_test_3,build,build_auto" oslist: windows description: SillyDwarf - description_loc: - english: SillyDwarf executable: MinionMasters.exe - - arguments: 'serverip=ws://35.195.74.6:80/profile ptr=1 platform=steam' + - arguments: "serverip=ws://35.195.74.6:80/profile ptr=1 platform=steam" config: betakey: public_test_realm oslist: windows description: Public Test Realm - description_loc: - english: Public Test Realm executable: MinionMasters.exe type: default - - arguments: 'serverip=ws://35.195.74.6:80/profile ptr=1 platform=steam' + - arguments: "serverip=ws://35.195.74.6:80/profile ptr=1 platform=steam" config: betakey: early_access oslist: windows description: Early Access PTR - description_loc: - english: Early Access PTR executable: MinionMasters.exe nameLocalized: schinese: 随从大师 tchinese: 随从大师 -'489560': +"489560": installDir: Astroflux launch: - config: @@ -237048,51 +232810,51 @@ oslist: windows executable: Astroflux.exe type: default -'489570': +"489570": installDir: soap launch: - executable: antisphere.exe type: default -'489580': +"489580": installDir: AWA launch: - config: oslist: windows executable: AWA.exe type: none -'489600': +"489600": installDir: The Golf Club VR launch: - config: oslist: windows executable: golfvr.exe type: vr -'489610': +"489610": installDir: Chicken Assassin Reloaded launch: - config: oslist: windows - description: 'Chicken Assassin: Reloaded' + description: "Chicken Assassin: Reloaded" executable: ChickenAssassin.exe type: none - config: oslist: macos - description: 'Chicken Assassin: Reloaded' + description: "Chicken Assassin: Reloaded" executable: ChickenAssassin.app type: none - config: - osarch: '32' + osarch: "32" oslist: linux - description: 'Chicken Assassin: Reloaded' + description: "Chicken Assassin: Reloaded" executable: ChickenAssassin.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux - description: 'Chicken Assassin: Reloaded' + description: "Chicken Assassin: Reloaded" executable: ChickenAssassin.x86_64 type: none -'489630': +"489630": installDir: Warhammer 40000 Gladius - Relics of War launch: - config: @@ -237101,24 +232863,22 @@ description: Legacy Version executable: autorun.exe type: option1 - - arguments: '--steam' + - arguments: "--steam" config: oslist: linux - executable: Binaries\\Linux-x86_64\\Gladius + executable: "Binaries\\\\Linux-x86_64\\\\Gladius" type: default - config: oslist: windows executable: launcher.exe type: default - - arguments: '--steam' + - arguments: "--steam" config: betakey: openbeta oslist: windows description: Start Without Launcher - description_loc: - english: Start Without Launcher - executable: Binaries\\Windows-x86_64\\Gladius.exe -'489660': + executable: "Binaries\\\\Windows-x86_64\\\\Gladius.exe" +"489660": installDir: Fabric launch: - config: @@ -237126,14 +232886,14 @@ description: Launch executable: fabric.exe type: default -'489700': +"489700": installDir: Battle Forever launch: - config: oslist: windows executable: Battle Forever.exe type: default -'489720': +"489720": installDir: Conga Master launch: - config: @@ -237145,30 +232905,30 @@ executable: CongaMaster.app type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: CongaMaster.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: CongaMaster.x86_64 type: none -'489730': +"489730": installDir: Run The Gamut launch: - config: oslist: windows executable: Run The Gamut.exe type: default -'489740': +"489740": installDir: Playthings VR launch: - config: oslist: windows executable: 20160814-playthings-steam.exe type: vr -'489760': +"489760": installDir: Demon Truck launch: - config: @@ -237183,7 +232943,7 @@ oslist: linux executable: DemonTruck.x86 type: none -'489810': +"489810": installDir: BlockAid launch: - config: @@ -237194,28 +232954,28 @@ oslist: macos executable: BlockAid.app type: default -'489830': +"489830": installDir: Skyrim Special Edition launch: - config: - osarch: '64' + osarch: "64" executable: SkyrimSELauncher.exe type: none -'489890': +"489890": installDir: Puzzles At Mystery Manor launch: - config: oslist: windows executable: PuzzlesAtMysteryManor.exe type: default -'489900': +"489900": installDir: Bayla Bunny launch: - config: oslist: windows executable: BaylaBunny.exe type: default -'489930': +"489930": installDir: Bertram Fiddle Episode 2 launch: - config: @@ -237226,21 +232986,21 @@ - config: oslist: macos description: Launch - executable: BertramFiddleEp2.app\\Contents\\MacOS\\BertramFiddleEp2 + executable: "BertramFiddleEp2.app\\\\Contents\\\\MacOS\\\\BertramFiddleEp2" type: none -'489940': +"489940": installDir: Battalion 1944 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Battalion.exe type: default -'4900': +"4900": installDir: Zen of Sudoku launch: - executable: ZenOfSudoku.exe -'49000': +"49000": installDir: Hotel Dash launch: - config: @@ -237249,24 +233009,24 @@ - config: oslist: macos executable: Hotel Dash - Suite Success.app -'490040': +"490040": installDir: Child of the Wind launch: - config: oslist: windows executable: ChildOfTheWind.exe type: vr -'490080': - installDir: Lock's Quest +"490080": + installDir: "Lock's Quest" launch: - config: oslist: windows - description: Lock's Quest (Mouse & Keyboard) + description: "Lock's Quest (Mouse & Keyboard)" executable: LocksQuest.exe type: option1 - config: oslist: macos - executable: LocksQuest.app\\Contents\\MacOS\\LocksQuest + executable: "LocksQuest.app\\\\Contents\\\\MacOS\\\\LocksQuest" type: default - config: oslist: linux @@ -237275,16 +233035,16 @@ - arguments: controllermode config: oslist: windows - description: Lock's Quest (Gamepad) + description: "Lock's Quest (Gamepad)" executable: LocksQuest.exe type: option1 -'490100': +"490100": installDir: Quell Zen launch: - description: Launch executable: QuellZen.exe type: none -'490160': +"490160": installDir: Time Tenshi 2 launch: - config: @@ -237293,20 +233053,20 @@ type: default - config: oslist: macos - executable: Time Tenshi 2.app\\Contents\\MacOS\\Time Tenshi 2 + executable: "Time Tenshi 2.app\\\\Contents\\\\MacOS\\\\Time Tenshi 2" type: default - config: oslist: linux executable: Time Tenshi 2.sh type: default -'490170': +"490170": installDir: MOVRM launch: - config: oslist: windows executable: MOVRM.exe type: vr -'490220': +"490220": installDir: Prismata launch: - config: @@ -237317,7 +233077,7 @@ oslist: macos executable: Contents/MacOS/Prismata type: default -'490230': +"490230": installDir: SWARMRIDERS launch: - config: @@ -237328,34 +233088,34 @@ oslist: linux executable: run.sh type: default -'490250': +"490250": installDir: Locomancer launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Locomancer.exe type: vr - config: - osarch: '64' + osarch: "64" oslist: linux executable: Locomancer.x86_64 type: vr -'490280': +"490280": installDir: Realms of Magic launch: - config: - osarch: '32' + osarch: "32" oslist: windows - executable: \\Windows32\\RealmsOfMagic.exe + executable: "\\\\Windows32\\\\RealmsOfMagic.exe" type: default - workingdir: \\Windows32\\ + workingdir: "\\\\Windows32\\\\" - config: - osarch: '64' + osarch: "64" oslist: windows - executable: Windows64\\RealmsOfMagic.vbs + executable: "Windows64\\\\RealmsOfMagic.vbs" type: default -'490300': +"490300": installDir: Rabbit Island launch: - config: @@ -237366,8 +233126,8 @@ oslist: macos executable: RabbitIsland.app/Contents/MacOS/RabbitIsland type: default -'490360': {} -'490370': +"490360": {} +"490370": installDir: Imperium Galactica II launch: - config: @@ -237376,31 +233136,31 @@ type: default - config: oslist: linux - executable: ./ig2 + executable: "./ig2" type: default - config: oslist: macos - executable: Imperium Galactica II.app\\Contents\\MacOS\\Imperium Galactica II + executable: "Imperium Galactica II.app\\\\Contents\\\\MacOS\\\\Imperium Galactica II" type: default -'490380': +"490380": installDir: Flight787 launch: - config: oslist: macos - executable: F787.app\\Contents\\MacOS\\F787 + executable: "F787.app\\\\Contents\\\\MacOS\\\\F787" type: default - config: oslist: windows executable: F787.exe type: default -'490390': - installDir: God's One Day World +"490390": + installDir: "God's One Day World" launch: - config: oslist: windows executable: ODW.exe type: default -'490430': +"490430": installDir: OctamariRescue launch: - config: @@ -237409,9 +233169,9 @@ type: default - config: oslist: macos - executable: Contents\\MacOS\\Octamari + executable: "Contents\\\\MacOS\\\\Octamari" type: default -'490450': +"490450": installDir: Tokyo 42 launch: - config: @@ -237426,25 +233186,25 @@ oslist: linux executable: PlayTokyo42.sh type: default -'490490': +"490490": installDir: Blasters of the Universe launch: - config: oslist: windows executable: BlastersOfTheUniverse.exe type: vr -'490510': +"490510": installDir: Pixel Puzzles 2 Christmas launch: - config: oslist: windows executable: Pixel Puzzles 2 Christmas.exe type: none -'490690': +"490690": installDir: The_Barbarian_and_the_Subterranean_Caves launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: barbsc.exe @@ -237459,14 +233219,14 @@ description: Launch executable: BarbarianCaves.app/Contents/MacOS/sdl-instead type: default - - arguments: '-fullscreen -standalone -game barbarian_caves' + - arguments: "-fullscreen -standalone -game barbarian_caves" config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: barbsc.exe type: default -'490820': +"490820": installDir: Fly OClock launch: - config: @@ -237481,27 +233241,27 @@ oslist: linux executable: FlyOClock.x86 type: none -'490840': {} -'490860': +"490840": {} +"490860": installDir: DashBored launch: - config: oslist: windows executable: Game.exe type: default -'490870': +"490870": installDir: Weird Hero launch: - executable: Weird Hero.exe type: default -'490880': +"490880": installDir: Robot Legions Reborn launch: - config: oslist: windows executable: RobotLegionsReborn.exe type: default -'490890': +"490890": installDir: Ne no Kami - The Two Princess Knights of Kyoto launch: - config: @@ -237510,7 +233270,7 @@ type: default nameLocalized: schinese: 根神京姬 -'490910': +"490910": installDir: Control Craft 3 launch: - config: @@ -237519,17 +233279,17 @@ type: default - config: oslist: macos - executable: ControlCraft 3.app\\Contents\\MacOS\\ControlCraft 3 + executable: "ControlCraft 3.app\\\\Contents\\\\MacOS\\\\ControlCraft 3" type: default -'490920': +"490920": installDir: Wolfpack launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Wolfpack.exe type: default -'490930': +"490930": installDir: Need to Know launch: - config: @@ -237538,20 +233298,20 @@ type: default - config: oslist: macos - executable: Need_to_Know.app\\Contents\\MacOS\\Need_to_Know + executable: "Need_to_Know.app\\\\Contents\\\\MacOS\\\\Need_to_Know" type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Need_to_Know.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: Need_to_Know.x86_64 type: none -'490940': {} -'490950': +"490940": {} +"490950": installDir: Frost launch: - config: @@ -237563,44 +233323,44 @@ executable: Frost.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Frost.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Frost.x86_64 type: default -'490980': - installDir: Daily Chthonicle Editor's Edition +"490980": + installDir: "Daily Chthonicle Editor's Edition" launch: - config: oslist: windows description: Launch executable: DailyChthonicle.exe type: none -'490990': +"490990": installDir: Aiball launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Aiball.exe type: default -'491000': +"491000": installDir: Gravity Cat launch: - config: oslist: windows executable: Gravity Cat.exe type: default -'491010': +"491010": installDir: IN-VERT launch: - config: oslist: windows - description: 'IN-VERT: Definitive Edition' + description: "IN-VERT: Definitive Edition" executable: INVERT.exe type: none - config: @@ -237609,10 +233369,10 @@ type: none - config: oslist: windows - description: 'IN-VERT: Classic Edition' - executable: \\Classic\\IN-VERT.exe + description: "IN-VERT: Classic Edition" + executable: "\\\\Classic\\\\IN-VERT.exe" type: none -'491020': +"491020": installDir: Revenge of the Spirit Rite of Resurrection launch: - config: @@ -237620,8 +233380,8 @@ description: Launch executable: Revenge Of The Spirit.exe type: default -'491030': {} -'491040': +"491030": {} +"491040": installDir: Bot Vice launch: - config: @@ -237630,7 +233390,7 @@ executable: bot_vice.exe type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch (Linux) executable: runner @@ -237640,7 +233400,7 @@ description: Launch (Mac) executable: BotVice.app type: none -'491060': +"491060": installDir: League of Evil launch: - config: @@ -237649,9 +233409,9 @@ type: none - config: oslist: macos - executable: LeagueOfEvil.app\\Contents\\MacOS\\LeagueOfEvil + executable: "LeagueOfEvil.app\\\\Contents\\\\MacOS\\\\LeagueOfEvil" type: none -'491070': +"491070": installDir: SOS Shout Of Survival launch: - config: @@ -237662,12 +233422,12 @@ oslist: macos executable: SOS.app type: none -'491080': {} -'491090': +"491080": {} +"491090": installDir: Ant Queen launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: AntQueen.exe type: default @@ -237676,28 +233436,28 @@ executable: AntQueen.app/Contents/MacOS/AntQueen type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: AntQueen_64.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: AntQueen.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: AntQueen_64.x86_64 type: default -'491100': +"491100": installDir: HumanWeHaveAProblem launch: - config: oslist: windows executable: hwhap.exe type: vr -'491110': +"491110": installDir: Duckie Dash launch: - config: @@ -237708,37 +233468,37 @@ oslist: macos executable: Duck.app type: default -'491130': +"491130": installDir: Red Trigger launch: - config: oslist: windows executable: RedTrigger.exe type: default -'491160': +"491160": installDir: GemBreak launch: - config: oslist: windows executable: nw.exe type: none -'491170': {} -'491180': +"491170": {} +"491180": installDir: Discrepant launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Discrepant2.exe type: default -'491210': +"491210": installDir: Lumbermancer launch: - config: oslist: windows executable: Lumbermancer.exe type: default -'491220': +"491220": installDir: Mr. Pumpkin Adventure launch: - config: @@ -237751,15 +233511,15 @@ description: Launch executable: MrPumpkin.app type: none -'491240': +"491240": installDir: Lil Big Invasion launch: - config: oslist: windows executable: lbi.exe type: default -'491250': {} -'491260': +"491250": {} +"491260": installDir: Take Thy Throne launch: - config: @@ -237768,16 +233528,16 @@ type: default - config: oslist: linux - executable: ./TakeThyThrone1 + executable: "./TakeThyThrone1" type: default -'491280': +"491280": installDir: Drift Horizon Online launch: - config: oslist: windows executable: Drift Horizon.exe type: default -'491330': +"491330": installDir: 12 Labours of Hercules V Kids of Hellas launch: - config: @@ -237792,34 +233552,34 @@ oslist: linux executable: Hercules5 type: none -'491350': +"491350": installDir: Way of the Red launch: - executable: WotR.exe type: none -'491370': {} -'491390': +"491370": {} +"491390": installDir: Alchemist Penguin launch: - config: oslist: windows executable: AlchemistPenguin.exe type: default -'491420': +"491420": installDir: the 9th day launch: - config: oslist: windows executable: The9thday.exe type: default -'491440': +"491440": installDir: Grim Dragons launch: - config: oslist: windows executable: GrimDragons.exe type: default -'491470': +"491470": installDir: Principia launch: - config: @@ -237830,34 +233590,34 @@ oslist: macos executable: Principia.app type: default - - arguments: '-f' + - arguments: "-f" config: oslist: windows description: Full Screen Mode executable: Principia.exe type: option1 -'491510': +"491510": installDir: Vanilla Bagel The Roguelike launch: - config: oslist: windows executable: Prog.exe type: none -'491520': +"491520": installDir: Zero-G VR launch: - config: oslist: windows executable: Zero-GVR.exe type: vr -'491530': +"491530": installDir: Notruf 112 launch: - config: oslist: windows executable: notruf112.exe type: default -'491560': +"491560": installDir: Momonga Pinball Adventures launch: - config: @@ -237868,34 +233628,34 @@ oslist: macos executable: MomongaPinballAdventures.app type: default -'491580': +"491580": installDir: Mahjong Destiny launch: - config: oslist: windows executable: MahjongDestiny.exe type: default -'491620': +"491620": installDir: Beeftacular launch: - config: oslist: windows executable: Beeftacular.exe type: default -'491650': +"491650": installDir: Reset 1-1 launch: - executable: Reset 1-1.exe type: none -'491660': +"491660": installDir: Assault on the Necrospire launch: - - arguments: '-jar aotns.jar' + - arguments: "-jar aotns.jar" config: oslist: windows executable: runtime/bin/javaw.exe type: none -'491670': +"491670": installDir: Stratego® Single Player launch: - config: @@ -237904,9 +233664,9 @@ type: default - config: oslist: macos - executable: Mac_OS_X_Universal.app\\Contents\\MacOS\\Mac_OS_X_Universal + executable: "Mac_OS_X_Universal.app\\\\Contents\\\\MacOS\\\\Mac_OS_X_Universal" type: default -'491700': +"491700": installDir: Gotta Go launch: - config: @@ -237917,28 +233677,28 @@ oslist: macos executable: Gotta_Go_Mac.app type: default -'491710': +"491710": installDir: Gun Range VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: GunRangeVR.exe type: vr -'491720': +"491720": installDir: Nary launch: - config: oslist: windows executable: Nary.exe type: none -'491730': {} -'491770': +"491730": {} +"491770": installDir: Deformers launch: - - executable: bin\\win7\\deformers.exe + - executable: "bin\\\\win7\\\\deformers.exe" type: default -'491790': +"491790": installDir: Project_Syria launch: - config: @@ -237946,7 +233706,7 @@ description: Launch ProjectSyria_June10_2016_Vive.exe executable: ProjectSyria_June10_2016_Vive.exe type: vr -'491800': +"491800": installDir: Across The Line launch: - config: @@ -237954,14 +233714,14 @@ description: Launch PlanP.exe executable: PlanP.exe type: vr -'491830': +"491830": installDir: Glow launch: - config: oslist: windows executable: Glow.exe type: default -'491950': +"491950": installDir: Orwell launch: - config: @@ -237976,21 +233736,21 @@ oslist: macos executable: Orwell.app type: none - - arguments: '-force-glcore' + - arguments: "-force-glcore" config: oslist: windows description: OpenGL Mode. Use if game crashes. executable: Orwell.exe type: none -'4920': +"4920": installDir: Natural Selection 2 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: x64/ns2.exe type: default -'492080': +"492080": installDir: Vision of Aurora Borealis launch: - config: @@ -238005,7 +233765,7 @@ oslist: linux executable: Vision of Aurora Borealis.sh type: default -'492090': +"492090": installDir: ATrainPC launch: - executable: ATrainPC.exe @@ -238017,46 +233777,46 @@ type: option1 nameLocalized: japanese: みんなのA列車で行こうPC -'492100': +"492100": installDir: LordofDjinn launch: - config: oslist: windows executable: LoD.exe type: default -'492130': {} -'492150': +"492130": {} +"492150": installDir: MyWorld launch: - executable: MyWorld.exe type: none -'492160': +"492160": installDir: 3D Pool launch: - executable: 3D-Pool.exe type: none -'492170': +"492170": installDir: PlanetDriller launch: - config: oslist: windows executable: PlanetDriller.exe type: none -'492180': +"492180": installDir: Haimrik launch: - executable: Haimrik.exe type: default -'492200': +"492200": installDir: CapRiders Euro Soccer launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: CapRiders_x86.exe type: none - config: - osarch: '64' + osarch: "64" oslist: windows executable: CapRiders_x64.exe type: none @@ -238064,7 +233824,7 @@ oslist: macos executable: CapRiders_Universal.app type: none -'492220': +"492220": installDir: Bohemian Killing launch: - config: @@ -238075,7 +233835,7 @@ oslist: macos executable: Bohemian Killing.app type: default -'492230': +"492230": installDir: Space Hulk Tactics launch: - config: @@ -238083,27 +233843,27 @@ executable: SpaceHulk2.exe type: default - config: - betakey: 'focus_last_candidate,focus_perf_testing,internal,focus_testlab' + betakey: "focus_last_candidate,focus_perf_testing,internal,focus_testlab" description: Test - executable: SpaceHulk2\\Binaries\\Win64\\SpaceHulk2-Win64-Test.exe + executable: "SpaceHulk2\\\\Binaries\\\\Win64\\\\SpaceHulk2-Win64-Test.exe" type: none - config: - betakey: 'focus_last_candidate,focus_perf_testing,internal' + betakey: "focus_last_candidate,focus_perf_testing,internal" description: Shipping - executable: SpaceHulk2\\Binaries\\Win64\\SpaceHulk2-Win64-Shipping.exe + executable: "SpaceHulk2\\\\Binaries\\\\Win64\\\\SpaceHulk2-Win64-Shipping.exe" type: none -'492240': {} -'492270': - installDir: The Cat! Porfirio's Adventure +"492240": {} +"492270": + installDir: "The Cat! Porfirio's Adventure" launch: - config: oslist: windows - executable: bin\\Game.exe + executable: "bin\\\\Game.exe" type: default -'492280': +"492280": installDir: The Agency - Chapter 1 launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows executable: nw.exe @@ -238116,14 +233876,14 @@ oslist: linux executable: nw type: none -'492290': +"492290": installDir: Has-Been Heroes launch: - config: oslist: windows executable: hasbeenheroes_64bit.exe type: default -'492340': +"492340": installDir: PixelCupSoccer17 launch: - config: @@ -238138,7 +233898,7 @@ oslist: linux executable: pixelcupsoccer17 type: default -'492370': +"492370": installDir: Affairs of the Court Choice of Romance launch: - config: @@ -238153,7 +233913,7 @@ oslist: linux executable: AffairsOfTheCourt type: none -'492400': +"492400": installDir: Thunder Gun Revenge of the Mutants launch: - config: @@ -238164,7 +233924,7 @@ oslist: macos executable: TGRotM.app type: default -'492410': +"492410": installDir: Rogues Like Us launch: - config: @@ -238175,27 +233935,27 @@ oslist: macos executable: RoguesLikeUs.app type: default -'492430': +"492430": installDir: Alteric launch: - - arguments: '-platform-steam' + - arguments: "-platform-steam" config: oslist: windows executable: Alteric.exe type: none - - arguments: '-platform-steam' + - arguments: "-platform-steam" config: oslist: macos executable: Alteric.app type: none -'492490': +"492490": installDir: Zombie Apocalypse Escape The Undead City launch: - config: oslist: windows executable: ZombieApocalypseEscape.exe type: none -'492500': +"492500": installDir: Heroes of the Monkey Tavern launch: - config: @@ -238204,41 +233964,41 @@ executable: Heroes.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: Heroes of the Monkey Tavern Linux beta executable: Heroes.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: linux description: Heroes of the Monkey Tavern Linux beta executable: Heroes.x86 type: default -'492530': +"492530": installDir: The Dark Legions launch: - config: oslist: windows executable: TheDarkLegions.exe type: default -'492540': {} -'492560': +"492540": {} +"492560": installDir: Malkia launch: - config: oslist: windows executable: malkia.exe type: none -'492600': +"492600": installDir: Ridge launch: - - arguments: '-fullscreen' + - arguments: "-fullscreen" config: oslist: windows executable: Ridge.exe type: none -'492610': +"492610": installDir: One Day launch: - config: @@ -238249,7 +234009,7 @@ oslist: macos executable: One Day.app type: default -'492630': +"492630": installDir: Bear With Me launch: - config: @@ -238260,7 +234020,7 @@ - config: oslist: macos description: BWM Episode 01 - executable: Bear With Me.app\\Contents\\MacOS\\Bear With Me + executable: "Bear With Me.app\\\\Contents\\\\MacOS\\\\Bear With Me" type: option1 - config: oslist: linux @@ -238269,41 +234029,41 @@ type: option1 - config: oslist: windows - ownsdlc: '583140' + ownsdlc: "583140" description: BWM Episode 02 executable: BWM_Ep02.exe type: option2 - config: oslist: macos - ownsdlc: '583140' + ownsdlc: "583140" description: BWM Episode 02 - executable: BWM_Ep02.app\\Contents\\MacOS\\BWM_Ep02 + executable: "BWM_Ep02.app\\\\Contents\\\\MacOS\\\\BWM_Ep02" type: option2 - config: oslist: linux - ownsdlc: '583140' + ownsdlc: "583140" description: BWM Episode 02 executable: BWM_Ep02.x86_64 type: option2 - config: oslist: windows - ownsdlc: '698250' + ownsdlc: "698250" description: BWM Episode 03 - executable: Episode_03\\BWM_Ep03.exe + executable: "Episode_03\\\\BWM_Ep03.exe" type: option3 - config: oslist: macos - ownsdlc: '698250' + ownsdlc: "698250" description: BWM Episode 03 - executable: Episode_03\\BWM_Ep03.app\\Contents\\MacOS\\BWM_Ep03 + executable: "Episode_03\\\\BWM_Ep03.app\\\\Contents\\\\MacOS\\\\BWM_Ep03" type: option3 - config: oslist: linux - ownsdlc: '698250' + ownsdlc: "698250" description: BWM Episode 03 - executable: Episode_03\\BWM_Ep03.x86_64 + executable: "Episode_03\\\\BWM_Ep03.x86_64" type: option3 -'492660': +"492660": installDir: Featherpunk Prime launch: - config: @@ -238318,14 +234078,14 @@ oslist: windows executable: FeatherpunkPrime-32-bit.exe type: none -'492710': +"492710": installDir: VR Ping Pong launch: - config: oslist: windows executable: pingPong.exe type: vr -'492720': +"492720": installDir: Tropico 6 launch: - config: @@ -238340,14 +234100,14 @@ oslist: macos executable: Tropico6.app/Contents/MacOS/Tropico6 type: none -'492760': +"492760": installDir: Aftercharge launch: - config: oslist: windows executable: Aftercharge.exe type: default -'492800': +"492800": installDir: Shonen Idle Z launch: - config: @@ -238362,56 +234122,54 @@ oslist: macos executable: shonenidlez.app type: default -'492830': {} -'492840': +"492830": {} +"492840": installDir: VeteransOnline launch: - config: oslist: windows executable: Veterans Online.exe type: default -'492850': +"492850": installDir: Astroderps launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Astroderps.exe type: vr -'492860': +"492860": installDir: Aperion Cyberstorm launch: - config: oslist: windows executable: AperionCyberstorm.exe type: default -'492870': +"492870": installDir: FIVE Champions of Canaan launch: - config: oslist: windows executable: Champions.exe type: default - - arguments: '-kingdomGamemode openVR' + - arguments: "-kingdomGamemode openVR" config: oslist: windows executable: Champions.exe type: vr - - arguments: '-kingdomGamemode osvr' + - arguments: "-kingdomGamemode osvr" config: oslist: windows description: OSVR Mode - description_loc: - english: OSVR Mode executable: Champions.exe type: option1 -'492880': {} -'49300': +"492880": {} +"49300": installDir: Commander Conquest of the Americas launch: - description: Commander executable: Commander.exe -'493000': +"493000": installDir: Battle Knights launch: - config: @@ -238419,24 +234177,24 @@ executable: battleknightsgame.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: battleknightsgame.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: battleknightsgame.x86 type: default -'493040': +"493040": installDir: Beat Ninja launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Beat Ninja.exe type: vr -'493060': +"493060": installDir: Ballistic Tanks launch: - config: @@ -238444,16 +234202,16 @@ executable: BallisticTanks.exe type: default - config: - osarch: '64' + osarch: "64" oslist: macos - executable: ballistictanks.app\\Contents\\MacOS\\nwjs + executable: "ballistictanks.app\\\\Contents\\\\MacOS\\\\nwjs" type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: BallisticTanks type: default -'493080': +"493080": installDir: Card Quest launch: - config: @@ -238464,15 +234222,15 @@ oslist: macos executable: CardQuest.app/Contents/MacOS/Card Quest type: default -'493100': +"493100": installDir: BellyBots launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: BellyBots.exe type: vr -'493110': +"493110": installDir: KOTH launch: - config: @@ -238480,13 +234238,13 @@ description: VR Mode executable: koth.exe type: vr - - arguments: '-novr' + - arguments: "-novr" config: oslist: windows description: Desktop Mode executable: koth.exe type: default -'493180': +"493180": installDir: Dynasty Feud launch: - config: @@ -238494,157 +234252,157 @@ executable: DynastyFeud.exe type: none - config: - osarch: '64' + osarch: "64" oslist: macos executable: DynastyFeud.app type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: DynastyFeud.x86_64 type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: DynastyFeud.x86 type: none -'49320': +"49320": installDir: Woody Two-Legs Halloween Special launch: - description: Woody Two-Legs executable: Woody.exe -'493200': +"493200": installDir: RiME launch: - - arguments: '-NOSPLASH' + - arguments: "-NOSPLASH" config: betakey: ms5_beta - osarch: '64' + osarch: "64" oslist: windows description: RiME Beta - executable: SirenGame\\Binaries\\Win64\\SirenGame-Win64-Shipping.exe + executable: "SirenGame\\\\Binaries\\\\Win64\\\\SirenGame-Win64-Shipping.exe" type: default - workingdir: SirenGame\\Binaries\\Win64\\ - - arguments: '-NOSPLASH' + workingdir: "SirenGame\\\\Binaries\\\\Win64\\\\" + - arguments: "-NOSPLASH" config: betakey: signed - osarch: '64' + osarch: "64" oslist: windows - executable: SirenGame\\Binaries\\Win64\\RiME.exe + executable: "SirenGame\\\\Binaries\\\\Win64\\\\RiME.exe" type: default - workingdir: SirenGame\\Binaries\\Win64\\ - - arguments: '-NOSPLASH' + workingdir: "SirenGame\\\\Binaries\\\\Win64\\\\" + - arguments: "-NOSPLASH" config: betakey: ms6_mc - osarch: '64' + osarch: "64" oslist: windows - executable: SirenGame\\Binaries\\Win64\\RiME.exe + executable: "SirenGame\\\\Binaries\\\\Win64\\\\RiME.exe" type: default - workingdir: SirenGame\\Binaries\\Win64\\ - - arguments: '-NOSPLASH' + workingdir: "SirenGame\\\\Binaries\\\\Win64\\\\" + - arguments: "-NOSPLASH" config: betakey: baseline - osarch: '64' + osarch: "64" oslist: windows - executable: SirenGame\\Binaries\\Win64\\RiME.exe + executable: "SirenGame\\\\Binaries\\\\Win64\\\\RiME.exe" type: default - workingdir: SirenGame\\Binaries\\Win64\\ + workingdir: "SirenGame\\\\Binaries\\\\Win64\\\\" - config: betakey: ms7_gm - osarch: '64' + osarch: "64" oslist: windows - executable: SirenGame\\Binaries\\Win64\\RiME.exe + executable: "SirenGame\\\\Binaries\\\\Win64\\\\RiME.exe" type: default - workingdir: SirenGame\\Binaries\\Win64\\ - - arguments: '-NOSPLASH' + workingdir: "SirenGame\\\\Binaries\\\\Win64\\\\" + - arguments: "-NOSPLASH" config: - osarch: '64' + osarch: "64" oslist: windows - executable: SirenGame\\Binaries\\Win64\\RiME.exe + executable: "SirenGame\\\\Binaries\\\\Win64\\\\RiME.exe" type: default - workingdir: SirenGame\\Binaries\\Win64\\ - - arguments: '-NOSPLASH' + workingdir: "SirenGame\\\\Binaries\\\\Win64\\\\" + - arguments: "-NOSPLASH" config: betakey: internal - osarch: '64' + osarch: "64" oslist: windows - executable: SirenGame\\Binaries\\Win64\\RiME.exe + executable: "SirenGame\\\\Binaries\\\\Win64\\\\RiME.exe" type: default - workingdir: SirenGame\\Binaries\\Win64\\ -'493220': + workingdir: "SirenGame\\\\Binaries\\\\Win64\\\\" +"493220": installDir: After the Empire launch: - config: oslist: windows executable: After the Empire.exe type: none -'493280': {} -'493290': +"493280": {} +"493290": installDir: World VR Competition launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: World_VR_Competition.exe type: vr -'49330': +"49330": installDir: Pirates of Black Cove launch: - description: Play Pirates of Black Cove - executable: ./bin/x86/dx9/BlackCove.exe -'493310': + executable: "./bin/x86/dx9/BlackCove.exe" +"493310": installDir: Requiem Avenging Angel launch: - config: oslist: windows executable: 3DFX.exe type: none -'493320': +"493320": installDir: Killing Time launch: - config: oslist: windows executable: KILLTIME.EXE type: none -'493340': +"493340": installDir: Planet Coaster launch: - config: betakey: dev_release - osarch: '64' + osarch: "64" oslist: windows description: Planet Coaster (Release Build) executable: CPT.release.exe type: option1 - config: - betakey: 'dev_release, ext_dev_instrumented, ext_live_instrumented' - osarch: '64' + betakey: "dev_release, ext_dev_instrumented, ext_live_instrumented" + osarch: "64" oslist: windows description: Planet Coaster (Profile Build) executable: CPT.profile.exe type: option2 - config: - osarch: '64' + osarch: "64" oslist: windows executable: PlanetCoaster.exe type: default - config: betakey: local - osarch: '64' + osarch: "64" oslist: windows description: Planet Coaster (Release Build) executable: CPT.release.exe type: option1 - config: betakey: local - osarch: '64' + osarch: "64" oslist: windows description: Planet Coaster (Profile Build) executable: CPT.profile.exe type: option2 - config: betakey: outsource_qa - osarch: '64' + osarch: "64" oslist: windows description: Planet Coaster (Profile Build) executable: PlanetCoaster.profile.exe @@ -238655,7 +234413,7 @@ type: default - config: betakey: branch_2 - osarch: '64' + osarch: "64" oslist: windows description: Demo executable: CPTConsole.profile.exe @@ -238665,7 +234423,7 @@ koreana: 플래닛 코스터 schinese: 过山车之星 tchinese: 雲霄飛車之星 -'493370': +"493370": installDir: Ragnarok Clicker Heroes launch: - config: @@ -238676,39 +234434,39 @@ - config: oslist: macos description: Ragnarok Clicker Heroes OSX - executable: RagnarokClicker.app\\Contents\\MacOS\\Ragnarok Clicker + executable: "RagnarokClicker.app\\\\Contents\\\\MacOS\\\\Ragnarok Clicker" type: default -'493380': +"493380": installDir: ChessVR launch: - config: oslist: windows executable: ChessVR.exe type: vr -'493400': +"493400": installDir: Funfair launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Funfair.exe type: vr -'493410': - installDir: Steampuff Phinnegan's Factory +"493410": + installDir: "Steampuff Phinnegan's Factory" launch: - config: oslist: windows executable: SteampuffVR.exe type: vr -'493440': +"493440": installDir: Thanatos launch: - config: oslist: windows - executable: bin\\ThanatosLauncher.exe + executable: "bin\\\\ThanatosLauncher.exe" type: default - workingdir: bin\\ -'493450': + workingdir: "bin\\\\" +"493450": installDir: Wild Romance launch: - config: @@ -238721,9 +234479,9 @@ type: default - config: oslist: linux - executable: ./wild-romance.sh + executable: "./wild-romance.sh" type: default -'493480': +"493480": installDir: ERISLE launch: - config: @@ -238732,18 +234490,18 @@ type: default - executable: GameMain1.exe type: none -'493490': +"493490": installDir: City Car Driving launch: - config: oslist: windows - executable: bin\\win32\\Starter.exe + executable: "bin\\\\win32\\\\Starter.exe" type: default - workingdir: bin\\win32 -'493500': + workingdir: "bin\\\\win32" +"493500": installDir: Bank Limit Advanced Battle Racing launch: - - arguments: '-ViveStartup' + - arguments: "-ViveStartup" config: oslist: windows description: HTC Vive @@ -238752,21 +234510,21 @@ - description: Oculus Rift executable: Bank Limit Advanced Battle Racing.exe type: othervr - - arguments: '-nonVRStartup' + - arguments: "-nonVRStartup" config: oslist: windows description: On Standard Monitor executable: Bank Limit Advanced Battle Racing.exe type: option1 -'493520': +"493520": installDir: GTFO launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: GTFO.exe type: default -'493540': +"493540": installDir: Figment launch: - config: @@ -238778,54 +234536,54 @@ executable: Figment.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Figment.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Figment.x86_64 type: default -'493580': +"493580": installDir: Hidden Objects - 12 in 1 bundle launch: - config: oslist: windows executable: menu.exe type: default -'493620': +"493620": installDir: VR Disc Golf launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: VR Disc Golf executable: VRDG.exe type: vr -'493650': +"493650": installDir: DeepSpaceDash launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Play the game on Windows 32-bit! - executable: 32\\WindowsNoEditor\\DeepSpaceDash2_0.exe + executable: "32\\\\WindowsNoEditor\\\\DeepSpaceDash2_0.exe" type: default - config: - osarch: '64' + osarch: "64" oslist: windows description: Play the game on Windows 64-bit! - executable: 64\\WindowsNoEditor\\DeepSpaceDash2_0.exe + executable: "64\\\\WindowsNoEditor\\\\DeepSpaceDash2_0.exe" type: default -'493670': +"493670": installDir: Valkyrius Prime launch: - config: oslist: windows executable: Valkyrius Prime.exe type: none -'493700': +"493700": installDir: Monster Puzzle launch: - config: @@ -238837,16 +234595,16 @@ executable: Monster Puzzle.app type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: Monster Puzzle.x86_64 type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: Monster Puzzle.x86 type: none -'493710': +"493710": installDir: Laraan launch: - config: @@ -238858,16 +234616,16 @@ executable: Laraan.app type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: Laraan.x86_64 type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: Laraan.x86 type: none -'493720': +"493720": installDir: Haven Moon launch: - config: @@ -238882,58 +234640,58 @@ oslist: linux executable: HavenMoon.x86_64 type: default -'493730': {} -'493760': {} -'493770': +"493730": {} +"493760": {} +"493770": installDir: Awakened launch: - config: oslist: windows - executable: Awakened(PC)\\Awakened (PC) .exe + executable: "Awakened(PC)\\\\Awakened (PC) .exe" type: default - config: oslist: macos - executable: Awakened (MAC).app\\Contents\\MacOS\\Awakened + executable: "Awakened (MAC).app\\\\Contents\\\\MacOS\\\\Awakened" type: default -'493780': +"493780": installDir: Nightork Adventures - Beyond the Moons of Shadalee launch: - config: oslist: windows executable: Launcher.exe type: none -'493790': - installDir: 'VRUnicorns #Archery' +"493790": + installDir: "VRUnicorns #Archery" launch: - config: oslist: windows executable: Archery.exe type: vr -'493810': +"493810": installDir: JonahsPath launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: JonahsPath_VIVE.exe type: default -'493820': +"493820": installDir: RivaisEmBatalha launch: - config: oslist: windows executable: RivaisEmBatalha.exe type: default -'493840': +"493840": installDir: MARVEL VS. CAPCOM INFINITE launch: - executable: MVCI.exe type: none - - arguments: '-NoDInput' + - arguments: "-NoDInput" description: Disable DirectInput executable: MVCI.exe type: none -'493900': +"493900": installDir: Dungeons 3 launch: - config: @@ -238948,25 +234706,25 @@ oslist: linux executable: Dungeons3 type: default -'493920': +"493920": installDir: NeverMine launch: - config: oslist: windows executable: NeverMine.exe type: default -'493980': +"493980": installDir: Green Ranch launch: - config: oslist: windows executable: Green Ranch.exe type: none -'49400': +"49400": installDir: Magic The Gathering - Duels of the Planeswalkers launch: - executable: DotP.exe -'494000': +"494000": installDir: Anthelion launch: - config: @@ -238977,21 +234735,21 @@ oslist: macos executable: Anthelion.app type: default -'494020': +"494020": installDir: Splash Bash launch: - config: oslist: windows executable: SplashBash.exe type: none -'494040': +"494040": installDir: PuppetsVR launch: - config: oslist: windows executable: PuppetsVR.exe type: vr -'494050': +"494050": installDir: Road to your City launch: - config: @@ -239006,83 +234764,75 @@ oslist: linux executable: RoadToYourCity type: default -'494090': +"494090": installDir: Dungeon Girl launch: - description: Dungeon Girl (English/英語) executable: Dungeon Girl.exe type: none - description: ダンジョン少女 (日本語/Japanese) - executable: Dungeon Girl - Japanese\\Dungeon Girl.exe + executable: "Dungeon Girl - Japanese\\\\Dungeon Girl.exe" type: none workingdir: Dungeon Girl - Japanese -'494100': +"494100": installDir: ENIGMA launch: - executable: ENIGMA.exe type: none -'494120': +"494120": installDir: RX squad launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: rx squad.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: rx.exe type: default -'494150': +"494150": installDir: The Thrill of the Fight launch: - config: betakey: beta description: (new beta exe) - description_loc: - english: (new beta exe) executable: The Thrill of the Fight.exe type: vr - - arguments: '-xrsdk-pre-init-library OculusXRPlugin' + - arguments: "-xrsdk-pre-init-library OculusXRPlugin" config: betakey: beta description: (new beta exe) - description_loc: - english: (new beta exe) executable: The Thrill of the Fight.exe type: othervr - executable: game.exe type: vr - - arguments: '-vrmode oculus' + - arguments: "-vrmode oculus" executable: game.exe type: othervr - config: betakey: staging description: (new beta exe) - description_loc: - english: (new beta exe) executable: The Thrill of the Fight.exe type: vr - - arguments: '-xrsdk-pre-init-library OculusXRPlugin' + - arguments: "-xrsdk-pre-init-library OculusXRPlugin" config: betakey: staging description: (new beta exe) - description_loc: - english: (new beta exe) executable: The Thrill of the Fight.exe type: othervr -'494160': +"494160": installDir: Lionheart launch: - executable: Lionheart.exe type: none -'494170': +"494170": installDir: Miniature Garden launch: - executable: Miniature Garden.exe type: none -'494220': +"494220": installDir: Blight launch: - config: @@ -239091,9 +234841,9 @@ type: default - config: oslist: macos - executable: Blight.app\\Contents\\MacOS\\Electron + executable: "Blight.app\\\\Contents\\\\MacOS\\\\Electron" type: default -'494230': +"494230": installDir: Hearts Medicine - Time to Heal launch: - config: @@ -239102,25 +234852,25 @@ type: default - config: oslist: macos - executable: hm2.app\\Contents\\MacOS\\hm2 + executable: "hm2.app\\\\Contents\\\\MacOS\\\\hm2" type: default -'494240': {} -'494250': {} -'494290': +"494240": {} +"494250": {} +"494290": installDir: MiDZone launch: - config: oslist: windows executable: MiDZone.exe type: default -'494310': +"494310": installDir: Unbreakable Vr Runner launch: - config: oslist: windows executable: UnbreakableVrRunner.exe type: vr -'494320': +"494320": installDir: Wizrogue launch: - config: @@ -239135,83 +234885,83 @@ oslist: linux executable: Wizrogue.x86 type: none -'494350': +"494350": installDir: Bowl VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Bowl VR.exe type: vr -'494360': +"494360": installDir: Barrow Hill launch: - config: oslist: windows executable: Barrow Hill.exe type: none -'494370': +"494370": installDir: OrbitalStrikeArena launch: - config: oslist: windows executable: orbital_strike_arena.exe type: vr -'494380': +"494380": installDir: VR Boxing Workout launch: - config: oslist: windows executable: VR Boxing Workout.exe type: vr -'494430': +"494430": installDir: Praey for the Gods launch: - config: oslist: windows executable: Praey For the Gods.exe type: none -'494440': +"494440": installDir: The Amazing Shinsengumi Heroes in Love launch: - - arguments: '-windowed' + - arguments: "-windowed" config: oslist: windows executable: The Amazing Shinsengumi.exe type: default -'494450': +"494450": installDir: Office lovers launch: - - arguments: '-windowed' + - arguments: "-windowed" config: oslist: windows executable: Office lovers.exe type: default -'494460': +"494460": installDir: Dangerous Relationship launch: - - arguments: '-windowed' + - arguments: "-windowed" config: oslist: windows executable: Dangerous Relationship.exe type: default -'494470': +"494470": installDir: My Butler launch: - - arguments: '-windowed' + - arguments: "-windowed" config: oslist: windows executable: My Butler.exe type: default -'494530': +"494530": installDir: Orc Hunter VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: OrcHunterVR.exe type: vr -'494580': +"494580": installDir: STANDBY launch: - config: @@ -239220,21 +234970,21 @@ type: default - config: oslist: macos - executable: Standby.app\\Contents\\MacOS\\Standby + executable: "Standby.app\\\\Contents\\\\MacOS\\\\Standby" type: default -'494600': - installDir: Earth's Dawn +"494600": + installDir: "Earth's Dawn" launch: - config: oslist: windows executable: EarthsDawn.exe type: none -'494660': {} -'494670': +"494660": {} +"494670": installDir: TransRoad USA launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: TransRoadUSA.exe @@ -239244,39 +234994,39 @@ description: Launch OSX executable: TransRoadUSA.app type: default -'49470': +"49470": installDir: Magic the Gathering DotP 2012 launch: - executable: Magic_2012.exe -'494700': - installDir: Eliosi's Hunt +"494700": + installDir: "Eliosi's Hunt" launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: EliosisHunt.exe type: default -'494720': +"494720": installDir: Morphblade launch: - config: oslist: windows executable: Morphblade.exe type: default -'494730': {} -'494740': +"494730": {} +"494740": installDir: Police Quest Collection launch: - executable: SierraLauncher.exe type: none -'494780': +"494780": installDir: MageWorks launch: - config: oslist: windows executable: MageWorks.exe type: vr -'494790': +"494790": installDir: Curve - War Child launch: - config: @@ -239284,55 +235034,55 @@ description: Launch executable: WarChild.exe type: none -'494810': +"494810": installDir: VR Vacate the Room launch: - config: - osarch: '64' + osarch: "64" oslist: windows - description: 'VR: Vacate the Room' + description: "VR: Vacate the Room" executable: VR.exe type: vr -'494820': +"494820": installDir: Acid Flip launch: - config: oslist: windows executable: acidflip.exe type: none -'494830': +"494830": installDir: ViveSpray launch: - config: oslist: windows executable: vivespray.exe type: vr -'494840': +"494840": installDir: UBOAT launch: - config: oslist: windows executable: UBOAT Launcher.exe type: default -'494850': +"494850": installDir: VeeR Pong launch: - - arguments: '-windowed' + - arguments: "-windowed" config: - osarch: '64' + osarch: "64" oslist: windows executable: VeeRPong-v1.exe type: vr -'494960': +"494960": installDir: Twisted Arrow launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: TwistedArrow.exe type: vr -'494970': +"494970": installDir: Savana launch: - config: @@ -239347,14 +235097,14 @@ oslist: linux executable: Savana.x86 type: default -'494980': +"494980": installDir: Wondership Q launch: - config: oslist: windows executable: winship.exe type: default -'494990': +"494990": installDir: Too Angry to Space launch: - config: @@ -239363,20 +235113,20 @@ type: default - config: oslist: macos - executable: TooAngryToSpace.app\\Contents\\MacOS\\TooAngryToSpace + executable: "TooAngryToSpace.app\\\\Contents\\\\MacOS\\\\TooAngryToSpace" type: default - config: oslist: linux executable: ToAngryToSpace.x86 type: default -'495010': +"495010": installDir: Ranger of the Jungle launch: - config: oslist: windows executable: towerdefence.exe type: default -'495030': +"495030": installDir: VR Battle Grid launch: - config: @@ -239384,26 +235134,26 @@ description: VR Battle Grid (Launch Steam VR App) executable: vr-battle-grid.exe type: vr -'495050': +"495050": installDir: MegaMan2 launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: リリース版 executable: MMLC2.exe type: none nameLocalized: japanese: ロックマン クラシックス コレクション 2 -'495060': +"495060": installDir: Table Tennis VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: Table_Tennis_VR\\Binaries\\Win64\\Table_Tennis_VR.exe + executable: "Table_Tennis_VR\\\\Binaries\\\\Win64\\\\Table_Tennis_VR.exe" type: vr -'495090': +"495090": installDir: Evolution Planet Gold Edition launch: - config: @@ -239412,19 +235162,19 @@ type: default - config: oslist: macos - executable: EvolutionPlanetGold.app\\Contents\\MacOS\\EvolutionPlanetGold + executable: "EvolutionPlanetGold.app\\\\Contents\\\\MacOS\\\\EvolutionPlanetGold" type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: EvolutionPlanetGold.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: EvolutionPlanetGold.x86_64 type: default -'495110': +"495110": installDir: Enigmatis 3 launch: - config: @@ -239433,13 +235183,13 @@ executable: Enigmatis3.exe type: none - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: Enigmatis3_i386 type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Enigmatis3_amd64 @@ -239449,22 +235199,22 @@ description: Launch executable: mac_steam.app/Contents/MacOS/mac_steam type: none -'495120': {} -'495140': +"495120": {} +"495140": installDir: QWANT launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: NSUNS1.exe type: none -'49520': +"49520": installDir: Borderlands 2 launch: - config: oslist: windows description: Launcher - executable: Binaries\\Win32\\Launcher.exe + executable: "Binaries\\\\Win32\\\\Launcher.exe" - config: oslist: macos description: Play the game @@ -239473,22 +235223,22 @@ - config: oslist: linux description: Launch - executable: ./Borderlands2 -'495200': + executable: "./Borderlands2" +"495200": installDir: DATH launch: - config: oslist: windows executable: TheDarkTheme.exe type: none -'495230': +"495230": installDir: Hypnorain launch: - config: oslist: windows executable: Hypnorain.exe type: default -'495280': +"495280": installDir: Disgaea 2 PC launch: - config: @@ -239505,100 +235255,100 @@ type: none nameLocalized: japanese: 魔界戦記ディスガイア2 PC -'495290': +"495290": installDir: AccuRC 2 launch: - - arguments: '-vrmode NONE' + - arguments: "-vrmode NONE" config: oslist: windows description: AccuRC - executable: bin\\AccuRC.exe + executable: "bin\\\\AccuRC.exe" type: option1 - workingdir: bin\\ - - arguments: '-force-glcore -vrmode NONE' + workingdir: "bin\\\\" + - arguments: "-force-glcore -vrmode NONE" config: oslist: windows description: AccuRC (OpenGL) - executable: bin\\AccuRC.exe + executable: "bin\\\\AccuRC.exe" type: option2 - workingdir: bin\\ - - arguments: '-window-mode exclusive -vrmode NONE' + workingdir: "bin\\\\" + - arguments: "-window-mode exclusive -vrmode NONE" config: oslist: windows description: AccuRC (Exclusive Window) - executable: bin\\AccuRC.exe + executable: "bin\\\\AccuRC.exe" type: option3 - workingdir: bin\\ - - arguments: '-vrmode NONE -force-glcore -screen-fullscreen 0' + workingdir: "bin\\\\" + - arguments: "-vrmode NONE -force-glcore -screen-fullscreen 0" config: oslist: macos description: OSX executable: AccuRC.app type: default - - arguments: '-show-screen-selector -vrmode NONE' + - arguments: "-show-screen-selector -vrmode NONE" config: oslist: windows description: AccuRC (Resolution Dialog) - executable: bin\\AccuRC.exe + executable: "bin\\\\AccuRC.exe" type: option1 - workingdir: bin\\ - - arguments: '-vrmode OCULUS' + workingdir: "bin\\\\" + - arguments: "-vrmode OCULUS" config: oslist: windows description: AccuRC - executable: bin\\AccuRC.exe + executable: "bin\\\\AccuRC.exe" type: othervr - workingdir: bin\\ - - arguments: '-vrmode OPENVR' + workingdir: "bin\\\\" + - arguments: "-vrmode OPENVR" config: oslist: windows description: AccuRC - executable: bin\\AccuRC.exe + executable: "bin\\\\AccuRC.exe" type: vr - workingdir: bin\\ - - arguments: '-vrmode NONE' + workingdir: "bin\\\\" + - arguments: "-vrmode NONE" config: oslist: linux executable: bin/AccuRC.x86_64 type: option1 workingdir: bin/ - - arguments: '-show-screen-selector -vrmode NONE' + - arguments: "-show-screen-selector -vrmode NONE" config: oslist: linux description: AccuRC (Resolution Dialog) executable: bin/AccuRC.x86_64 type: option2 workingdir: bin/ - - arguments: '-force-vulkan' + - arguments: "-force-vulkan" config: oslist: linux description: AccuRC (Vulkan) executable: bin/AccuRC.x86_64 type: option3 workingdir: bin/ -'495300': +"495300": installDir: TrumPiñata launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Trumpiñata.exe type: vr -'495310': +"495310": installDir: VRbloX launch: - config: oslist: windows executable: VRblox.exe type: othervr -'495320': +"495320": installDir: Ancient VR coaster launch: - config: oslist: windows executable: Ancient VR Coaster.exe type: vr -'495350': +"495350": installDir: Woodle Tree 2 Worlds launch: - config: @@ -239616,143 +235366,139 @@ description: Launch executable: WoodleTree2.x86_64 type: none -'495390': +"495390": installDir: The Wire Loop Game VR launch: - config: oslist: windows executable: TheWireLoopGameVR.exe type: vr -'49540': +"49540": installDir: Aliens Colonial Marines launch: - - description: 'Aliens: Colonial Marines' - executable: Binaries\\Win32\\ACM.exe -'495420': + - description: "Aliens: Colonial Marines" + executable: "Binaries\\\\Win32\\\\ACM.exe" +"495420": installDir: StateOfDecay2 launch: - - arguments: '-SteamBranch=main -steamlaunch' + - arguments: "-SteamBranch=main -steamlaunch" config: betakey: main oslist: windows description: Development - executable: StateOfDecay2\\Binaries\\Win64\\StateOfDecay2.exe + executable: "StateOfDecay2\\\\Binaries\\\\Win64\\\\StateOfDecay2.exe" type: option1 - - arguments: '-SteamBranch=main-Test -steamlaunch' + - arguments: "-SteamBranch=main-Test -steamlaunch" config: betakey: main oslist: windows description: Test - executable: StateOfDecay2\\Binaries\\Win64\\StateOfDecay2-Win64-Test.exe + executable: "StateOfDecay2\\\\Binaries\\\\Win64\\\\StateOfDecay2-Win64-Test.exe" type: option2 - - arguments: '-SteamBranch=main-Shipping -steamlaunch' + - arguments: "-SteamBranch=main-Shipping -steamlaunch" config: betakey: main oslist: windows description: Shipping - executable: StateOfDecay2\\Binaries\\Win64\\StateOfDecay2-Win64-Shipping.exe + executable: "StateOfDecay2\\\\Binaries\\\\Win64\\\\StateOfDecay2-Win64-Shipping.exe" type: option3 - - arguments: '-SteamBranch=demo -steamlaunch' + - arguments: "-SteamBranch=demo -steamlaunch" config: betakey: demo oslist: windows description: Development - executable: StateOfDecay2\\Binaries\\Win64\\StateOfDecay2.exe + executable: "StateOfDecay2\\\\Binaries\\\\Win64\\\\StateOfDecay2.exe" type: option1 - - arguments: '-SteamBranch=demo-Test -steamlaunch' + - arguments: "-SteamBranch=demo-Test -steamlaunch" config: betakey: demo oslist: windows description: Test - executable: StateOfDecay2\\Binaries\\Win64\\StateOfDecay2-Win64-Test.exe + executable: "StateOfDecay2\\\\Binaries\\\\Win64\\\\StateOfDecay2-Win64-Test.exe" type: option2 - - arguments: '-SteamBranch=demo-Shipping -steamlaunch' + - arguments: "-SteamBranch=demo-Shipping -steamlaunch" config: betakey: demo oslist: windows description: Shipping - executable: StateOfDecay2\\Binaries\\Win64\\StateOfDecay2-Win64-Shipping.exe + executable: "StateOfDecay2\\\\Binaries\\\\Win64\\\\StateOfDecay2-Win64-Shipping.exe" type: option3 - - arguments: '-SteamBranch=playtest-Test -AllowNewerSaves -steamlaunch' + - arguments: "-SteamBranch=playtest-Test -AllowNewerSaves -steamlaunch" config: betakey: playtest oslist: windows description: StateOfDecay2-Win64-Test.exe (Pick Me!) - executable: StateOfDecay2\\Binaries\\Win64\\StateOfDecay2-Win64-Test.exe + executable: "StateOfDecay2\\\\Binaries\\\\Win64\\\\StateOfDecay2-Win64-Test.exe" type: option1 - - arguments: '-steamlaunch' + - arguments: "-steamlaunch" config: betakey: stage description: Stage-Dev - executable: StateOfDecay2\\Binaries\\Win64\\StateOfDecay2.exe + executable: "StateOfDecay2\\\\Binaries\\\\Win64\\\\StateOfDecay2.exe" type: option1 - - arguments: '-steamlaunch' + - arguments: "-steamlaunch" config: betakey: stage description: Stage-Test - executable: StateOfDecay2\\Binaries\\Win64\\StateOfDecay2-Win64-Test.exe + executable: "StateOfDecay2\\\\Binaries\\\\Win64\\\\StateOfDecay2-Win64-Test.exe" type: option2 - - arguments: '-steamlaunch' + - arguments: "-steamlaunch" config: betakey: stage description: Stage-Shipping - executable: StateOfDecay2\\Binaries\\Win64\\StateOfDecay2-Win64-Shipping.exe + executable: "StateOfDecay2\\\\Binaries\\\\Win64\\\\StateOfDecay2-Win64-Shipping.exe" type: option3 - - arguments: '-steamlaunch' + - arguments: "-steamlaunch" config: oslist: windows - executable: StateOfDecay2\\Binaries\\Win64\\StateOfDecay2-Win64-Shipping.exe + executable: "StateOfDecay2\\\\Binaries\\\\Win64\\\\StateOfDecay2-Win64-Shipping.exe" type: default - - arguments: '-FeatureGroup=CU31 -steamlaunch' + - arguments: "-FeatureGroup=CU31 -steamlaunch" config: betakey: labtech_beta oslist: windows description: with the new Infestations feature - pick me! - description_loc: - english: with the new Infestations feature - pick me! - executable: StateOfDecay2\\Binaries\\Win64\\StateOfDecay2-Win64-Shipping.exe + executable: "StateOfDecay2\\\\Binaries\\\\Win64\\\\StateOfDecay2-Win64-Shipping.exe" type: option1 - - arguments: '-FeatureGroup=CU31 -steamlaunch' + - arguments: "-FeatureGroup=CU31 -steamlaunch" config: betakey: stage description: Stage-Shipping-CU31 - description_loc: - english: Stage-Shipping-CU31 - executable: StateOfDecay2\\Binaries\\Win64\\StateOfDecay2-Win64-Shipping.exe + executable: "StateOfDecay2\\\\Binaries\\\\Win64\\\\StateOfDecay2-Win64-Shipping.exe" type: option3 -'495520': +"495520": installDir: PingPongLeague launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: PingPongLeague.exe type: vr -'495540': +"495540": installDir: Dashy Square VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: DashySquareVR.exe type: vr -'495550': +"495550": installDir: Baskhead launch: - config: oslist: windows executable: baskhead/Baskhead.exe type: vr -'495560': +"495560": installDir: Farm Manager 2018 launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Run Farm Manager 2018 executable: Farm Manager 2018.exe type: default -'495570': +"495570": installDir: ConflictCraft launch: - config: @@ -239761,9 +235507,9 @@ type: default - config: oslist: macos - executable: ConflictCraft.app\\Contents\\MacOS\\ConflictCraft + executable: "ConflictCraft.app\\\\Contents\\\\MacOS\\\\ConflictCraft" type: none -'495580': +"495580": installDir: Divided We Fall launch: - config: @@ -239778,7 +235524,7 @@ oslist: macos executable: lobby.app type: default -'495600': +"495600": installDir: asteroidfight launch: - config: @@ -239793,8 +235539,8 @@ oslist: macos executable: run-asteroidfight type: default -'495630': {} -'495680': +"495630": {} +"495680": installDir: Overdriven Reloaded launch: - config: @@ -239803,24 +235549,24 @@ type: default - config: oslist: macos - executable: Overdriven Reloaded.app\\Contents\\MacOS\\OverdrivenReloaded + executable: "Overdriven Reloaded.app\\\\Contents\\\\MacOS\\\\OverdrivenReloaded" type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: OverdrivenReloaded.bin.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: OverdrivenReloaded.bin.x86 type: default -'495700': +"495700": installDir: Gabriel Knight launch: - executable: SierraLauncher.exe type: none -'495720': +"495720": installDir: Intrude launch: - config: @@ -239831,16 +235577,16 @@ oslist: windows executable: Editor.exe type: editor -'495730': +"495730": installDir: Ghost Train VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: GhostTrainVR.exe type: vr -'495740': {} -'495750': +"495740": {} +"495750": installDir: Reckpunk launch: - config: @@ -239848,7 +235594,7 @@ executable: Reckpunk.exe type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: reckpunk type: none @@ -239856,7 +235602,7 @@ oslist: macos executable: launch.sh type: none -'495760': +"495760": installDir: Deios II DEIDIA launch: - config: @@ -239867,14 +235613,14 @@ oslist: macos executable: DEIOS.app type: default -'495770': +"495770": installDir: Free Balling launch: - config: oslist: windows executable: Free_Balling.exe type: default -'495780': +"495780": installDir: Hexoscope launch: - config: @@ -239887,7 +235633,7 @@ description: Launch executable: HexoscopeMac.app type: none -'495820': +"495820": installDir: Lil Tanks launch: - config: @@ -239902,67 +235648,67 @@ oslist: linux executable: runner type: none -'495830': +"495830": installDir: Endless Labyrinth launch: - config: oslist: windows executable: EndlessLabyrinth.exe type: vr -'495890': +"495890": installDir: Montaro launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: nw.exe type: none - config: - osarch: '64' + osarch: "64" oslist: windows executable: nw.exe type: none -'495900': +"495900": installDir: Lance A Lot launch: - config: oslist: windows executable: lancealot.exe type: default -'495910': +"495910": installDir: DFO launch: - - arguments: 'data:14' + - arguments: "data:14" config: oslist: windows executable: NeopleLauncher.exe type: default -'495960': +"495960": installDir: The Secret Monster Society Chapter One launch: - config: oslist: windows - description: 'The Secret Monster Society: Chapter One' + description: "The Secret Monster Society: Chapter One" executable: The Secret Monster Society C1.exe type: none - config: oslist: macos - description: 'The Secret Monster Society: Chapter One' + description: "The Secret Monster Society: Chapter One" executable: The Secret Monster Society C1.app type: none - config: oslist: windows - ownsdlc: '505340' - description: 'Chapter Two: Time, Dreams and Underwater Travel' + ownsdlc: "505340" + description: "Chapter Two: Time, Dreams and Underwater Travel" executable: Chapter Two.exe type: option1 - config: oslist: macos - ownsdlc: '505340' - description: 'Chapter Two: Time, Dreams and Underwater Travel' + ownsdlc: "505340" + description: "Chapter Two: Time, Dreams and Underwater Travel" executable: Chapter Two.app type: option1 -'495980': +"495980": installDir: Selma and the Wisp launch: - config: @@ -239977,22 +235723,22 @@ oslist: macos executable: SelmaAndTheWisp.app type: default - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" config: oslist: windows executable: SelmaAndTheWisp.exe type: config - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" config: oslist: linux executable: SelmaAndTheWisp.x86 type: config - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" config: oslist: macos executable: SelmaAndTheWisp.app type: config -'495990': +"495990": installDir: True love ~Confide to the maple~ launch: - config: @@ -240004,7 +235750,7 @@ english: True Love ~Confide to the Maple~ schinese: 真恋~寄语枫秋~ tchinese: 真戀~寄語楓秋~ -'49600': +"49600": installDir: Beat Hazard launch: - config: @@ -240020,47 +235766,47 @@ - config: oslist: linux executable: BeatHazard -'496000': +"496000": installDir: BowMage launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: BowMage.exe type: vr -'496030': - installDir: Dark Parables The Swan Princess and The Dire Tree Collector's Edition +"496030": + installDir: "Dark Parables The Swan Princess and The Dire Tree Collector's Edition" launch: - executable: DarkParables_TSPATDT_CE.exe type: none -'496040': +"496040": installDir: Shaq Fu A Legend Reborn launch: - executable: ShaqFu.exe type: none -'496070': +"496070": installDir: Geo-Fall launch: - config: oslist: windows executable: Geo-Fall.exe type: vr -'496080': - installDir: 'Space, VR!' +"496080": + installDir: "Space, VR!" launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: 'Space, VR!.exe' + executable: "Space, VR!.exe" type: vr -'496120': +"496120": installDir: LaserCat launch: - config: oslist: windows executable: LaserCat.exe type: none -'496160': +"496160": installDir: ReturnZeroVR launch: - config: @@ -240068,173 +235814,145 @@ description: Return Zero VR Oculus executable: ReturnZeroVR.exe type: othervr -'496180': +"496180": installDir: GENeuro launch: - - arguments: '-vr' + - arguments: "-vr" config: - osarch: '64' + osarch: "64" oslist: windows description: Launch App In VR executable: Neuro.exe type: vr -'496190': +"496190": installDir: SenzaPeso launch: - - arguments: '-vr' + - arguments: "-vr" config: oslist: windows description: Launch Senza Peso VR executable: SenzaPeso.exe type: vr -'496230': +"496230": installDir: GrassVR launch: - config: oslist: windows executable: GrassVR.exe type: vr -'496240': +"496240": installDir: Onward launch: - - arguments: '-vrmode openvr' + - arguments: "-vrmode openvr" config: oslist: windows executable: OnwardLauncher.exe type: vr - - arguments: '-vrmode oculus' + - arguments: "-vrmode oculus" config: oslist: windows executable: OnwardLauncher.exe type: othervr - - arguments: '-vrmode oculus' + - arguments: "-vrmode oculus" config: betakey: 1.7backup description: Use this to launch 1.7 executable: Onward.exe type: othervr - - arguments: '-vrmode openvr' + - arguments: "-vrmode openvr" config: betakey: 1.7backup description: Use this to launch 1.7 executable: Onward.exe type: vr - - arguments: '-vrmode openvr' + - arguments: "-vrmode openvr" config: betakey: internaltesting description: Pre Anti-Cheat - description_loc: - english: Pre Anti-Cheat executable: Onward.exe type: vr - - arguments: '-vrmode oculus' + - arguments: "-vrmode oculus" config: betakey: internaltesting description: Pre Anti-Cheat - description_loc: - english: Pre Anti-Cheat executable: Onward.exe type: othervr - - arguments: '-vrmode openvr' + - arguments: "-vrmode openvr" config: betakey: internaltesting_2 description: Pre Anti-Cheat - description_loc: - english: Pre Anti-Cheat executable: Onward.exe type: vr - - arguments: '-vrmode oculus' + - arguments: "-vrmode oculus" config: betakey: internaltesting_2 description: Pre Anti-Cheat - description_loc: - english: Pre Anti-Cheat executable: Onward.exe type: othervr - - arguments: '-vrmode openvr' + - arguments: "-vrmode openvr" config: betakey: internaltesting_3 description: Pre Anti-Cheat - description_loc: - english: Pre Anti-Cheat executable: Onward.exe type: vr - - arguments: '-vrmode oculus' + - arguments: "-vrmode oculus" config: betakey: internaltesting_3 description: Pre Anti-Cheat - description_loc: - english: Pre Anti-Cheat executable: Onward.exe type: othervr - - arguments: '-vrmode openvr' + - arguments: "-vrmode openvr" config: betakey: qa_testing description: Pre Anti-Cheat - description_loc: - english: Pre Anti-Cheat executable: Onward.exe type: vr - - arguments: '-vrmode oculus' + - arguments: "-vrmode oculus" config: betakey: qa_testing description: Pre Anti-Cheat - description_loc: - english: Pre Anti-Cheat executable: Onward.exe type: othervr - - arguments: '-vrmode openvr' + - arguments: "-vrmode openvr" config: betakey: qa_testing2 description: Pre Anti-Cheat - description_loc: - english: Pre Anti-Cheat executable: Onward.exe type: vr - - arguments: '-vrmode oculus' + - arguments: "-vrmode oculus" config: betakey: qa_testing2 description: Pre Anti-Cheat - description_loc: - english: Pre Anti-Cheat executable: Onward.exe type: othervr - - arguments: '-vrmode openvr' + - arguments: "-vrmode openvr" config: betakey: qa_testing3 description: Pre Anti-Cheat - description_loc: - english: Pre Anti-Cheat executable: Onward.exe type: vr - - arguments: '-vrmode oculus' + - arguments: "-vrmode oculus" config: betakey: qa_testing3 description: Pre Anti-Cheat - description_loc: - english: Pre Anti-Cheat executable: Onward.exe type: othervr - - arguments: '-vrmode openvr' + - arguments: "-vrmode openvr" description: Legacy - description_loc: - english: Legacy executable: Onward.exe type: vr - - arguments: '-vrmode oculus' + - arguments: "-vrmode oculus" description: Legacy - description_loc: - english: Legacy executable: Onward.exe type: othervr -'496250': +"496250": installDir: Paddle Up launch: - config: oslist: windows executable: paddleup.exe type: vr -'496260': +"496260": installDir: Corona Blossom Vol.1 Gift From the Galaxy launch: - executable: CoroBlo_vol_1.exe @@ -240242,19 +235960,19 @@ nameLocalized: japanese: コロナブロッサム Vol.1 Gift From the Galaxy schinese: Corona Blossom-日冕之华- vol.1 来自银河的礼物 -'496290': +"496290": installDir: Deep Dark Dungeon launch: - config: - osarch: '64' + osarch: "64" oslist: macos - executable: Deep Dark Dungeon.app\\Contents\\MacOS\\Deep Dark Dungeon + executable: "Deep Dark Dungeon.app\\\\Contents\\\\MacOS\\\\Deep Dark Dungeon" type: default - config: oslist: windows executable: Deep Dark Dungeon.exe type: default -'496300': +"496300": installDir: Kingdom New Lands launch: - config: @@ -240266,36 +235984,36 @@ executable: Kingdom.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Kingdom.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: Kingdom.x86_64 type: none -'496310': +"496310": installDir: Momento Temporis launch: - - arguments: '--steam' + - arguments: "--steam" config: oslist: windows executable: Momento Temporis.exe type: default - - arguments: '--steam' + - arguments: "--steam" config: oslist: macos executable: Momento Temporis.app/Contents/MacOS/love type: default -'496320': +"496320": installDir: Running Gods launch: - config: oslist: windows executable: Running Gods Steam.exe type: none -'496340': +"496340": installDir: Fighting Fantasy Legends launch: - config: @@ -240306,37 +236024,37 @@ oslist: macos executable: fightingfantasy.app type: default -'496350': +"496350": installDir: Supipara - Alice the magical conductor. Chapter 01 - Spring Has Come! launch: - executable: sppl1_en.exe type: default -'496360': +"496360": installDir: RC Racing Off Road 2.0 launch: - config: oslist: windows executable: RC Racing Off Road 2.0.exe type: default -'496380': +"496380": installDir: A Verdant Hue launch: - description: Launch Game executable: VerdantHue.exe type: default -'496390': +"496390": installDir: Shiny launch: - executable: Shiny.exe type: default -'496400': +"496400": installDir: Renoir launch: - config: oslist: windows executable: Renoir.exe type: default -'496440': +"496440": installDir: The Challenge launch: - config: @@ -240354,20 +236072,20 @@ description: Launch executable: Challenge.sh type: none - - arguments: '-vulkan' + - arguments: "-vulkan" config: oslist: windows description: Vulkan API executable: Challenge.exe type: option1 -'496460': +"496460": installDir: Life is Feudal Forest Village launch: - config: oslist: windows executable: ForestVillage.exe type: default -'496480': +"496480": installDir: Vex launch: - config: @@ -240375,24 +236093,24 @@ executable: Vex.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Vex type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Vex type: default -'496500': {} -'496510': +"496500": {} +"496510": installDir: Mdot launch: - config: oslist: windows executable: m.exe type: default -'496520': +"496520": installDir: Typing with Jester launch: - config: @@ -240403,16 +236121,16 @@ oslist: linux executable: TypingWithJester type: none -'496530': +"496530": installDir: Pigmentone launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: Pigmentone.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: Pigmentone.exe type: default @@ -240420,24 +236138,24 @@ oslist: macos executable: Pigmentone.app/Contents/MacOS/Pigmentone type: default -'496540': +"496540": installDir: Zone of Lacryma launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: nw.exe type: none - config: - osarch: '64' + osarch: "64" oslist: windows executable: nw.exe type: none - config: oslist: macos - executable: zoneoflacryma.app\\Contents\\MacOS\\nwjs + executable: "zoneoflacryma.app\\\\Contents\\\\MacOS\\\\nwjs" type: none -'496550': +"496550": installDir: Noob Squad launch: - config: @@ -240452,24 +236170,24 @@ oslist: linux executable: Noob Squad.x86 type: default -'496570': {} -'496590': +"496570": {} +"496590": installDir: Crystal Cosmos launch: - config: oslist: windows - executable: win32\\CrystalCosmos.exe + executable: "win32\\\\CrystalCosmos.exe" type: default - config: oslist: macos - executable: CrystalCosmos.app\\Contents\\MacOS\\CrystalCosmos + executable: "CrystalCosmos.app\\\\Contents\\\\MacOS\\\\CrystalCosmos" type: default - config: oslist: linux - executable: linux32\\CrystalCosmos.x86 + executable: "linux32\\\\CrystalCosmos.x86" type: default -'496600': {} -'496610': +"496600": {} +"496610": installDir: Push The Crate launch: - config: @@ -240477,7 +236195,7 @@ description: Launch executable: PushTheCrate.exe type: none -'496620': +"496620": installDir: Monster Slayers launch: - config: @@ -240488,7 +236206,7 @@ oslist: macos executable: Monster Slayers.app type: default -'496630': +"496630": installDir: Empty Horizons launch: - config: @@ -240506,14 +236224,14 @@ description: Launch executable: Empty Horizons.app type: none -'496640': +"496640": installDir: Strange Night launch: - config: oslist: windows executable: strangenight.exe type: default -'496650': +"496650": installDir: Antihorror launch: - config: @@ -240528,81 +236246,81 @@ oslist: linux executable: Antihorror.x86 type: default -'496660': +"496660": installDir: Minotaur launch: - config: oslist: windows executable: Minotaur.exe type: default -'496670': +"496670": installDir: Maze Roller launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: MazeRoller.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: MazeRoller.exe type: vr - config: - osarch: '64' + osarch: "64" oslist: windows executable: MazeRoller.exe type: othervr - - arguments: '-culture=de' + - arguments: "-culture=de" config: - osarch: '64' + osarch: "64" oslist: windows description: Maze Roller - German executable: MazeRoller.exe type: option1 - - arguments: '-culture=es' + - arguments: "-culture=es" config: - osarch: '64' + osarch: "64" oslist: windows description: Maze Roller - Spanish executable: MazeRoller.exe type: option1 - - arguments: '-culture=nl' + - arguments: "-culture=nl" config: - osarch: '64' + osarch: "64" oslist: windows description: Maze Roller - Dutch executable: MazeRoller.exe type: option1 - - arguments: '-culture=fr' + - arguments: "-culture=fr" config: - osarch: '64' + osarch: "64" oslist: windows description: Maze Roller - French executable: MazeRoller.exe type: option1 - - arguments: '-culture=it' + - arguments: "-culture=it" config: - osarch: '64' + osarch: "64" oslist: windows description: Maze Roller - Italian executable: MazeRoller.exe type: option1 - - arguments: '-culture=ru' + - arguments: "-culture=ru" config: - osarch: '64' + osarch: "64" oslist: windows description: Maze Roller - Russian executable: MazeRoller.exe type: option1 - - arguments: '-culture=cs' + - arguments: "-culture=cs" config: - osarch: '64' + osarch: "64" oslist: windows description: Maze Roller - Czech executable: MazeRoller.exe type: option1 -'496680': +"496680": installDir: SweatShop launch: - config: @@ -240616,18 +236334,18 @@ executable: SweatShop.app type: none - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: SweatShop.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: SweatShop.x86_64 type: none -'496690': +"496690": installDir: Adventures On The Polluted Islands launch: - config: @@ -240635,7 +236353,7 @@ description: Launch executable: Adventures_On_The_Polluted_Islands.exe type: none -'496730': +"496730": installDir: Sorcerer King - Rivals launch: - description: Play Sorcerer King - Rivals @@ -240644,42 +236362,42 @@ - description: Launch Quest Editor executable: QuestEditor.exe type: editor -'496740': +"496740": installDir: Discovering Space 2 launch: - config: oslist: windows executable: DiscoveringSpace2.exe type: vr -'496750': +"496750": installDir: The Housewife launch: - config: oslist: windows executable: The Housewife.exe type: default -'496760': +"496760": installDir: Gabriel Knight 2 launch: - executable: SierraLauncher.exe type: none -'496790': - installDir: Nothin' But Net +"496790": + installDir: "Nothin' But Net" launch: - config: - osarch: '64' + osarch: "64" oslist: windows - description: Launch Nothin' But Net + description: "Launch Nothin' But Net" executable: NothinButNet.exe type: vr -'496810': +"496810": installDir: MegaTagmension Blanc + Neptune VS Zombies launch: - config: oslist: windows executable: MegaTagmension Blanc.exe type: none -'496820': +"496820": installDir: Ruction The Golden Tablet launch: - config: @@ -240696,7 +236414,7 @@ oslist: linux executable: Ruction_linux.x86 type: none -'496850': +"496850": installDir: Brick Battalion launch: - config: @@ -240708,17 +236426,17 @@ executable: BrickBattalion.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: BrickBattalion.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: BrickBattalion.x86 type: default -'496870': {} -'496890': +"496870": {} +"496890": installDir: Replica launch: - config: @@ -240731,7 +236449,7 @@ description: Launch Mac executable: Replica.app type: none -'496920': +"496920": installDir: Moirai launch: - config: @@ -240740,27 +236458,27 @@ type: default - config: oslist: macos - executable: ./Moirai.app/Contents/MacOS/Moirai + executable: "./Moirai.app/Contents/MacOS/Moirai" type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: runMoirai type: default -'496930': +"496930": installDir: Sumeru launch: - config: oslist: macos - executable: Sumeru.app\\Contents\\MacOS\\Sumeru + executable: "Sumeru.app\\\\Contents\\\\MacOS\\\\Sumeru" type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Sumeru.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Sumeru.x86_64 type: default @@ -240768,28 +236486,28 @@ oslist: windows executable: Sumeru.exe type: default -'496940': +"496940": installDir: Second Death launch: - config: oslist: windows executable: Second Death.exe type: default -'496950': +"496950": installDir: The Slingshot VR launch: - config: oslist: windows executable: slingshot.exe type: vr -'496960': +"496960": installDir: Shoot Mania VR Fun Zombies launch: - config: oslist: windows executable: funzombies.exe type: vr -'496980': +"496980": installDir: CosmicCavern3671 launch: - config: @@ -240801,26 +236519,26 @@ description: Read quick reference executable: Manual_CC3671.pdf type: manual -'496990': +"496990": installDir: Ghost Sweeper launch: - config: oslist: windows - executable: win32\\Ghost_Sweeper-Steam-1.0.0.0.exe + executable: "win32\\\\Ghost_Sweeper-Steam-1.0.0.0.exe" type: default - config: oslist: macos - executable: Ghost Sweeper.app\\Contents\\MacOS\\Mac_Runner + executable: "Ghost Sweeper.app\\\\Contents\\\\MacOS\\\\Mac_Runner" type: default -'497000': +"497000": installDir: CrossDeath launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: CrossDeath.exe type: vr -'497020': +"497020": installDir: Mystic Diary - Quest for Lost Brother launch: - config: @@ -240828,12 +236546,12 @@ executable: md.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: md.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: md.x86_64 type: none @@ -240841,24 +236559,24 @@ oslist: macos executable: md.app/Contents/MacOS/md type: default -'497040': +"497040": installDir: Underground Keeper launch: - config: oslist: windows executable: UndergroundKeeper.exe type: default -'497050': +"497050": installDir: shapeshifter launch: - executable: shapeshifter.exe type: none -'497060': +"497060": installDir: Rise launch: - executable: Rise.exe type: default -'497080': +"497080": installDir: CONSTRUCT launch: - config: @@ -240873,19 +236591,19 @@ oslist: linux executable: CONSTRUCT.x86 type: default -'497090': +"497090": installDir: Amihailu in Dreamland launch: - executable: Game.exe type: none -'497100': +"497100": installDir: FootRock launch: - config: oslist: windows executable: build.exe type: none -'497180': +"497180": installDir: Street Legal Racing Redline launch: - config: @@ -240897,7 +236615,7 @@ description: Install workshop mods executable: WorkshopInstaller.exe type: editor -'497190': +"497190": installDir: Pichon launch: - config: @@ -240905,53 +236623,53 @@ executable: Pichon.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Pichon type: default -'497240': {} -'497260': +"497240": {} +"497260": installDir: Fabulous Food Truck launch: - config: oslist: windows executable: FabulousFoodTruck.exe type: default -'497270': +"497270": installDir: MIGHT launch: - config: oslist: windows executable: MIGHT.exe type: none -'497280': +"497280": installDir: Wrong Dimension - The One Dimensional Platformer launch: - config: oslist: windows executable: Wrong Dimension.exe type: default -'497300': +"497300": installDir: Always Higher launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: UVRP.exe type: vr -'497320': {} -'497350': {} -'497360': +"497320": {} +"497350": {} +"497360": installDir: Gabriel Knight 3 launch: - executable: SierraLauncher.exe type: none -'497380': +"497380": installDir: CA - War Child launch: - executable: rise_launcher.exe type: default -'497400': +"497400": installDir: 1 Moment Of Time Silentville launch: - config: @@ -240966,14 +236684,14 @@ oslist: linux executable: Silentville type: none -'497420': +"497420": installDir: Pixelscape Oceans launch: - config: oslist: windows executable: Pixelscape_Oceans.exe type: default -'497430': +"497430": installDir: G Prime launch: - config: @@ -240984,34 +236702,34 @@ oslist: macos executable: GPrime.app type: default -'497440': +"497440": installDir: Homebound launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Dragon_VR_3.exe type: vr -'497450': +"497450": installDir: Blortasia_VR_Art_Maze launch: - config: oslist: windows executable: Blortasia_V41.exe type: vr -'497460': +"497460": installDir: Mervils A VR Adventure launch: - config: oslist: windows executable: Mervils.exe type: vr - - arguments: '-vrmode none' + - arguments: "-vrmode none" config: oslist: windows executable: Mervils.exe type: default -'497470': +"497470": installDir: D.N.Age launch: - config: @@ -241024,25 +236742,25 @@ oslist: windows executable: D.N.Age.exe type: config -'497480': +"497480": installDir: GravPool launch: - config: oslist: windows executable: GravPool.exe type: vr -'497490': +"497490": installDir: Project Hovercraft launch: - config: oslist: windows - executable: Binaries\\Win32\\Project Hovercraft.exe + executable: "Binaries\\\\Win32\\\\Project Hovercraft.exe" type: none -'497510': +"497510": installDir: Crystal Quest Classic launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Crystal Quest.exe type: default @@ -241050,21 +236768,21 @@ oslist: macos executable: Crystal Quest.app type: default -'497560': +"497560": installDir: Crimson Sword Saga launch: - config: oslist: windows executable: Game.exe type: default -'497570': +"497570": installDir: Building the Great Wall of China 2 launch: - config: oslist: windows executable: Building the Great Wall of China 2.exe type: default -'497580': +"497580": installDir: Agent Walker Secret Journey launch: - config: @@ -241073,13 +236791,13 @@ executable: AgentWalker.exe type: none - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: AgentWalker_i386 type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: AgentWalker_amd64 @@ -241089,36 +236807,36 @@ description: Launch executable: mac_steam.app/Contents/MacOS/mac_steam type: none -'497590': - installDir: Sapper's bad dream +"497590": + installDir: "Sapper's bad dream" launch: - config: oslist: windows executable: SBD.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: SBDLinux.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: SBDLinux.x86_64 type: default -'497630': +"497630": installDir: HUNT launch: - executable: HUNT.exe type: default -'497640': +"497640": installDir: EN_Trick & Treat launch: - config: oslist: windows executable: Game.exe type: default -'497670': +"497670": installDir: LineDash launch: - config: @@ -241131,9 +236849,9 @@ type: none - config: oslist: macos - executable: mac\\Line Dash.app\\Contents\\MacOS\\Line Dash + executable: "mac\\\\Line Dash.app\\\\Contents\\\\MacOS\\\\Line Dash" type: none -'497680': +"497680": installDir: Plates launch: - config: @@ -241141,7 +236859,7 @@ executable: plates.exe type: default - config: - osarch: '64' + osarch: "64" oslist: macos executable: plates.app type: default @@ -241149,14 +236867,14 @@ oslist: linux executable: plates.x86 type: default -'497700': +"497700": installDir: Safety First launch: - config: oslist: windows executable: SafetyFirst.exe type: default -'497710': +"497710": installDir: HolobunniesPC launch: - config: @@ -241174,12 +236892,12 @@ description: Launch Game executable: Holobunnies.sh type: default -'497720': +"497720": installDir: Funfair Ride Simulator 3 launch: - config: oslist: macos - executable: FRS3.app\\Contents\\MacOS\\FRS3 + executable: "FRS3.app\\\\Contents\\\\MacOS\\\\FRS3" type: none - config: oslist: windows @@ -241189,18 +236907,18 @@ oslist: linux executable: FRS3.x86 type: none -'497730': +"497730": installDir: The Wardrobe launch: - config: oslist: windows - executable: ./The Wardrobe.exe + executable: "./The Wardrobe.exe" type: default - config: oslist: macos - executable: ./The Wardrobe.app + executable: "./The Wardrobe.app" type: default -'497780': +"497780": installDir: Recursed launch: - config: @@ -241212,18 +236930,18 @@ executable: Recursed.app/Contents/MacOS/Recursed type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: recursed.sh type: default -'497790': +"497790": installDir: Ayumi Enhanced Edition launch: - config: oslist: windows executable: game.exe type: default -'497800': +"497800": installDir: Golden Krone Hotel launch: - config: @@ -241231,7 +236949,7 @@ executable: gkh.exe type: default - config: - osarch: '64' + osarch: "64" oslist: macos executable: gkh.app type: default @@ -241239,37 +236957,37 @@ oslist: linux executable: gkh type: none -'497820': +"497820": installDir: Quanero launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Quanero.exe type: vr -'497850': +"497850": installDir: 8BitHordes launch: - executable: ClientLauncherG.exe type: default - - arguments: 'DUMP_FULL COORDURL=http://52.7.55.172:6530/' + - arguments: "DUMP_FULL COORDURL=http://52.7.55.172:6530/" config: betakey: beta2 description: 8Bit Beta 2 executable: ClientLauncherG.exe type: option1 -'497860': +"497860": installDir: Zezenia Online launch: - config: oslist: windows executable: Zezenia_Steam.exe type: default -'497870': +"497870": installDir: Super Sketch Bob launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Super Sketch Bob.exe type: default @@ -241277,14 +236995,14 @@ oslist: macos executable: Super Sketch Bob.app type: default -'497880': +"497880": installDir: DoodleWHAT launch: - config: oslist: windows executable: Doodle WHAT.exe type: default -'497940': +"497940": installDir: Destiny of Ancient Kingdoms launch: - config: @@ -241294,7 +237012,7 @@ - description: Launcher & Registration executable: GameUpdate.exe type: none -'49800': +"49800": installDir: Guns of Icarus launch: - config: @@ -241304,11 +237022,11 @@ oslist: macos description: Mac executable: GunsOfIcarusMac.app -'498000': +"498000": installDir: MushroomCrusherExtreme launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: MCE.exe type: default @@ -241317,33 +237035,33 @@ executable: MCE.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: (64-bit) executable: MCE.x86_64 type: default -'498030': +"498030": installDir: Barnyard Mahjong 3 launch: - config: oslist: windows executable: BarnyardMahjong3.exe type: default -'498040': +"498040": installDir: The Hidden Dragon launch: - config: oslist: windows executable: TheHiddenDragon.exe type: default -'498050': +"498050": installDir: Mystery Of Rivenhallows launch: - config: oslist: windows executable: MysteryOfRivenhallows.exe type: default -'49810': +"49810": installDir: creavures launch: - config: @@ -241354,7 +237072,7 @@ oslist: macos description: Mac executable: Creavures.app/Contents/MacOS/creavures -'498190': +"498190": installDir: Dragon Rage launch: - config: @@ -241362,38 +237080,38 @@ description: Dragon Rage - Bulletproof Outlaws executable: DRAGON_RAGE.exe type: none -'498240': +"498240": installDir: Batman The Telltale Series launch: - config: betakey: blackgate - osarch: '64' + osarch: "64" oslist: macos executable: Batman - The Telltale Series.app type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: Batman.exe type: default -'498280': +"498280": installDir: Jurassic Survival launch: - executable: Jurassic Survival.exe type: none -'498300': +"498300": installDir: Of Love And Sorrow launch: - executable: OfLoveAndSorrow.exe type: none -'498320': +"498320": installDir: Trolley Gold launch: - config: oslist: windows executable: Trolley Gold.exe type: default -'498330': +"498330": installDir: Cats are Liquid launch: - config: @@ -241408,54 +237126,54 @@ oslist: linux executable: CatsAreLiquidLinux/CatsAreLiquidLinux.x86 type: default -'498340': +"498340": installDir: Shards of Azuria launch: - - executable: GameData\\ShardsOfAzuria.exe + - executable: "GameData\\\\ShardsOfAzuria.exe" type: default workingdir: GameData -'498360': +"498360": installDir: Puzzle Nebula launch: - config: oslist: windows executable: PuzzleNebula.exe type: default -'498370': +"498370": installDir: Basketball Court VR launch: - config: oslist: windows executable: basketballcourtvr.exe type: vr -'498380': +"498380": installDir: AquaNimble launch: - config: oslist: windows executable: AquaNimble.exe type: default - - arguments: '-software' + - arguments: "-software" config: oslist: windows description: AquaNimble (visual compatibility) executable: AquaNimble.exe type: option1 -'498390': +"498390": installDir: Remnants of The Arcane launch: - config: oslist: windows executable: rota.exe type: default -'498450': +"498450": installDir: A Week of Circus Terror launch: - config: oslist: windows executable: A Week of Circus Terror.exe type: default -'498460': +"498460": installDir: Abduction Prologue launch: - config: @@ -241463,51 +237181,49 @@ description: in AutoDetect Mode executable: Abduction.exe type: default - - arguments: '-osvr -show-screen-selector' + - arguments: "-osvr -show-screen-selector" config: oslist: windows description: OSVR App - description_loc: - english: OSVR App executable: Abduction.exe type: option1 - - arguments: '-steamvr -vrmode openvr' + - arguments: "-steamvr -vrmode openvr" config: oslist: windows executable: Abduction.exe type: vr - - arguments: '-novr -show-screen-selector' + - arguments: "-novr -show-screen-selector" config: oslist: windows description: without VR executable: Abduction.exe type: option1 -'498470': - installDir: Switch 'N' Shoot +"498470": + installDir: "Switch 'N' Shoot" launch: - config: oslist: windows - executable: Switch 'N' Shoot.exe + executable: "Switch 'N' Shoot.exe" type: default - config: oslist: macos - executable: Switch 'N' Shoot.app + executable: "Switch 'N' Shoot.app" type: default - config: - osarch: '32' + osarch: "32" oslist: linux description: 32-bit - executable: Switch 'N' Shoot.x86 + executable: "Switch 'N' Shoot.x86" type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: 64-bit - executable: Switch 'N' Shoot.x86_64 + executable: "Switch 'N' Shoot.x86_64" type: default nameLocalized: - schinese: Switch 'N' Shoot - 一键异形终结者 -'498500': + schinese: "Switch 'N' Shoot - 一键异形终结者" +"498500": installDir: I Am The Hero launch: - config: @@ -241522,16 +237238,16 @@ oslist: linux executable: I_Am_The_Hero.x86 type: default -'498510': +"498510": installDir: DreamLand launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Lauch executable: DW.exe type: vr -'498550': +"498550": installDir: Depths of Dread launch: - config: @@ -241539,7 +237255,7 @@ description: Version 1.0 executable: Game.exe type: default -'498570': +"498570": installDir: Extreme Forklifting 2 launch: - config: @@ -241550,71 +237266,71 @@ oslist: macos executable: ExtremeForklifting2.app/Contents/MacOS/ExtremeForklifting2 type: default -'498580': +"498580": installDir: ASRECorp launch: - config: oslist: windows executable: ASRECorp.exe type: default -'498600': +"498600": installDir: MSI Electric City launch: - - arguments: '-windowed' + - arguments: "-windowed" config: - osarch: '64' + osarch: "64" oslist: windows executable: MSI Electric City.exe type: vr -'498620': +"498620": installDir: The Shadowland launch: - config: oslist: windows executable: The Shadowland.exe type: option1 -'498630': +"498630": installDir: Red Planet Survive launch: - config: oslist: windows executable: Survive On Mars.exe type: default -'498660': +"498660": installDir: Mind Spheres launch: - config: oslist: windows - executable: Mind Spheres\\Mind Spheres.exe + executable: "Mind Spheres\\\\Mind Spheres.exe" type: default - config: oslist: macos - executable: Mind Spheres\\Mind Spheres.app + executable: "Mind Spheres\\\\Mind Spheres.app" type: default -'498680': +"498680": installDir: In The Shadow Of The Truth launch: - config: oslist: windows executable: in the Shadow of the Truth.exe type: default -'498700': +"498700": installDir: ANF launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows executable: ANF.exe type: default -'498710': +"498710": installDir: After Dreams launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: AD_Game/AfterDreams.exe type: default -'498720': +"498720": installDir: Inklings launch: - config: @@ -241629,22 +237345,22 @@ oslist: linux executable: Inklings type: default -'498740': +"498740": installDir: Way of Redemption launch: - config: oslist: windows executable: Way of Redemption.exe type: none -'498830': +"498830": installDir: Mustache in Hell launch: - config: oslist: windows executable: Mustache in Hell.exe type: default -'498840': {} -'498850': +"498840": {} +"498850": installDir: Ortus Arena launch: - config: @@ -241655,8 +237371,8 @@ oslist: macos executable: OrtusArena.app type: default -'498940': - installDir: 'WarBirds Dawn of Aces, World War I Air Combat' +"498940": + installDir: "WarBirds Dawn of Aces, World War I Air Combat" launch: - config: oslist: windows @@ -241667,62 +237383,62 @@ executable: DawnofAces.app/Contents/MacOS/WarBirds type: default workingdir: DawnofAces.app/Contents/Resources -'498970': +"498970": installDir: VRporize launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: 64\\WindowsNoEditor/VRporize_beta.exe + executable: "64\\\\WindowsNoEditor/VRporize_beta.exe" type: vr - config: - osarch: '32' + osarch: "32" oslist: windows - executable: 32\\WindowsNoEditor/VRporize_beta.exe + executable: "32\\\\WindowsNoEditor/VRporize_beta.exe" type: vr -'498980': +"498980": installDir: DUO launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: DUO.exe type: vr -'498990': +"498990": installDir: BCDM launch: - executable: BCDM.exe type: vr - executable: BCDM.exe type: othervr -'49900': +"49900": installDir: Plain Sight launch: - executable: PlainSight.exe -'499070': +"499070": installDir: Pro Strategy Football 2016 launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: psf2016.exe type: default -'499100': - installDir: Dark Parables The Exiled Prince Collector's Edition +"499100": + installDir: "Dark Parables The Exiled Prince Collector's Edition" launch: - executable: Dark Parables The Exiled Prince.exe type: none -'499110': - installDir: Dark Parables Rise of the Snow Queen Collector's Edition +"499110": + installDir: "Dark Parables Rise of the Snow Queen Collector's Edition" launch: - executable: DarkParables_RiseoftheSnowQueen.exe type: none -'499120': - installDir: Dark Parables The Red Riding Hood Sisters Collector's Edition +"499120": + installDir: "Dark Parables The Red Riding Hood Sisters Collector's Edition" launch: - executable: DarkParable_TheRedRidingHoodSisters_CE.exe type: none -'499140': +"499140": installDir: Operator Overload launch: - config: @@ -241730,30 +237446,30 @@ executable: OperatorOverload.exe type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: OperatorOverload type: default - config: oslist: macos - executable: OperatorOverload.app\\Contents\\MacOS\\OperatorOverload + executable: "OperatorOverload.app\\\\Contents\\\\MacOS\\\\OperatorOverload" type: default -'499210': +"499210": installDir: Road Rage launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: RoadRage.exe type: none -'499230': +"499230": installDir: SurvHive launch: - config: oslist: windows executable: SurvHive.exe type: default -'499280': +"499280": installDir: Clutter V launch: - config: @@ -241764,7 +237480,7 @@ oslist: macos executable: Clutter V Welcome To Clutterville.app type: default -'499330': +"499330": installDir: Lord Mayor launch: - config: @@ -241776,16 +237492,16 @@ executable: LordMayor.app/Contents/MacOS/LordMayor type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: LordMayor.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: LordMayor.x86_64 type: default -'499340': +"499340": installDir: Turner launch: - config: @@ -241796,7 +237512,7 @@ oslist: macos executable: Turner.app type: default -'499370': +"499370": installDir: Tower of Archeos launch: - config: @@ -241807,50 +237523,50 @@ oslist: macos executable: tower.app type: default -'499390': +"499390": installDir: Pixeloids launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Pixeloids.exe type: default -'499400': +"499400": installDir: The Path of Greatest Resistance launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ThePathofGreatestResistance.exe type: vr - config: betakey: thepathofgreatestresistance_beta - osarch: '64' + osarch: "64" oslist: windows executable: ThePathofGreatestResistance.exe type: othervr - - arguments: '-vtrackers' + - arguments: "-vtrackers" config: - osarch: '64' + osarch: "64" oslist: windows - ownsdlc: '639550' + ownsdlc: "639550" description: with Body Tracking (3 Vive Trackers) executable: ThePathofGreatestResistance.exe type: vr - - arguments: '-vtrackers -only2trackers' + - arguments: "-vtrackers -only2trackers" config: - osarch: '64' + osarch: "64" oslist: windows - ownsdlc: '639550' + ownsdlc: "639550" description: with Feet Tracking (2 Vive Trackers) executable: ThePathofGreatestResistance.exe type: vr -'499420': +"499420": installDir: Star Fields launch: - executable: StarF1.exe type: none -'499440': +"499440": installDir: klocki launch: - config: @@ -241862,54 +237578,54 @@ executable: klocki.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: klocki.x86_64 type: default -'499460': +"499460": installDir: Tomato Jones launch: - config: oslist: windows - executable: system\\Tomato Jones.exe + executable: "system\\\\Tomato Jones.exe" type: default - workingdir: system\\ -'499510': + workingdir: "system\\\\" +"499510": installDir: DragonsNeverCry launch: - config: oslist: windows executable: DQShooter1R-dev.exe type: default -'499520': +"499520": installDir: The Turing Test launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: TheTuringTest/Binaries/Win64/TheTuringTest.exe type: none - - arguments: '-dx12' + - arguments: "-dx12" config: - osarch: '64' + osarch: "64" oslist: windows description: Play The Turing Test (DX12) executable: TheTuringTest/Binaries/Win64/TheTuringTest.exe type: none - config: - ownsdlc: '508340' + ownsdlc: "508340" description: The Turing Test Prototype executable: PrototypeLauncher.exe type: option2 -'499540': +"499540": installDir: WakeUp launch: - config: oslist: windows executable: WakeUpProject.exe type: vr -'499560': +"499560": installDir: Fourtex Jugo launch: - config: @@ -241921,16 +237637,16 @@ executable: Jugo.app/Contents/MacOS/Jugo type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Jugo.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Jugo.x86_64 type: default -'499580': +"499580": installDir: Crystal Control II launch: - config: @@ -241938,64 +237654,64 @@ executable: nw.exe type: default - config: - osarch: '64' + osarch: "64" oslist: macos executable: crystalcontrolii.app type: default -'499610': +"499610": installDir: Copter and Sky launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Copter_and_Sky.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: Copter_and_Sky.exe type: vr -'499620': +"499620": installDir: Ultimate Booster Experience launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: HTC Vive & Touch executable: UltimateBooster(SteamVR)/UltimateBooster.exe type: vr - config: - osarch: '64' + osarch: "64" oslist: windows description: Old Oculus X-box One executable: UltimateBooster(Oculus)/UltimateBooster.exe type: othervr -'499660': +"499660": installDir: Medieval Kingdom Wars launch: - - arguments: '-dev86' + - arguments: "-dev86" config: oslist: windows description: Launch executable: MKW.exe type: none -'499760': +"499760": installDir: Redswood launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: red.exe type: vr -'499890': +"499890": installDir: Aaero launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Aaero.exe type: default -'499900': +"499900": installDir: Pulse Shift launch: - arguments: run_engine run_ts @@ -242013,7 +237729,7 @@ description: Open Extras executable: PShift.exe type: none -'499910': +"499910": installDir: SHINRAI - A Murder Mystery Visual Novel launch: - config: @@ -242031,27 +237747,27 @@ description: Launch executable: SHINRAI - Broken Beyond Despair.sh type: default -'499940': +"499940": installDir: Ascension VR launch: - - arguments: '-openvr' + - arguments: "-openvr" config: oslist: windows executable: Ascension.exe type: vr - - arguments: '-oculus' + - arguments: "-oculus" config: oslist: windows executable: Ascension.exe type: othervr - - arguments: '-novr -widescreen' + - arguments: "-novr -widescreen" config: betakey: dev-branch oslist: windows description: Non-VR Widescreen executable: Ascension.exe type: option1 -'499950': +"499950": installDir: Metal Assault - Gigaslave - Europe launch: - arguments: /steamlogin @@ -242059,47 +237775,45 @@ oslist: windows executable: Launcher.exe type: default -'499960': {} -'50': +"499960": {} +"50": installDir: Half-Life launch: - - arguments: '-steam -game gearbox' + - arguments: "-steam -game gearbox" config: oslist: windows executable: hl.exe - vacmodulefilename: resource\\sourceinit.dat - - arguments: '-steam -game gearbox' + - arguments: "-steam -game gearbox" config: oslist: macos executable: hl.sh - vacmodulefilename: resource\\sourceinit_macos.dat - - arguments: '-steam -game gearbox' + - arguments: "-steam -game gearbox" config: oslist: linux executable: hl.sh -'500': +"500": installDir: left 4 dead launch: - config: oslist: windows executable: left4dead.exe - - arguments: '-game left4dead' + - arguments: "-game left4dead" config: oslist: macos executable: hl2_osx -'50000': +"50000": installDir: Nimbus launch: - executable: Nimbus.exe -'500090': +"500090": installDir: WyVRn launch: - config: oslist: windows executable: WyVRn.exe type: vr -'500100': {} -'500110': +"500100": {} +"500110": installDir: Glider Island launch: - config: @@ -242113,38 +237827,38 @@ description: Glider Sim (Alpha) - No VR executable: GliderSim.exe type: option1 - - arguments: '-vrmode openvr' + - arguments: "-vrmode openvr" config: betakey: glidersim oslist: windows description: Glider Sim (Alpha) - SteamVR executable: GliderSim.exe type: option2 - - arguments: '-vrmode oculus' + - arguments: "-vrmode oculus" config: betakey: glidersim oslist: windows description: Glider Sim (Alpha) - Oculus executable: GliderSim.exe type: option3 -'500120': - installDir: 'Gazzel Quest, The Five Magic Stones' +"500120": + installDir: "Gazzel Quest, The Five Magic Stones" launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: gazzelquest.exe type: none -'500140': +"500140": installDir: Wildlife VR launch: - - arguments: '-vr' + - arguments: "-vr" config: - osarch: '64' + osarch: "64" oslist: windows executable: WildlifeVR.exe type: vr -'500150': +"500150": installDir: Time Gap Mystery launch: - config: @@ -242152,43 +237866,43 @@ description: Launch executable: TimeGap.exe type: none -'500170': +"500170": installDir: Ready for Take off launch: - config: oslist: windows executable: rfto.exe type: default -'500180': +"500180": installDir: EpicFlail launch: - config: oslist: windows executable: EpicFlail.exe type: default -'500190': +"500190": installDir: Firefight launch: - config: oslist: windows executable: Firefight.exe type: none -'500220': - installDir: Weather Lord Legendary Hero Collector's Edition +"500220": + installDir: "Weather Lord Legendary Hero Collector's Edition" launch: - config: oslist: windows description: Launch executable: WL6_LegendaryHero_CE.exe type: none -'500260': +"500260": installDir: Ben and Ed - Blood Party launch: - config: oslist: windows executable: BaEBloodParty.exe type: default -'500320': +"500320": installDir: A Tale of Caos - Overture launch: - config: @@ -242199,14 +237913,14 @@ oslist: macos executable: ATOC Overture.app/Contents/MacOS/ATOC Overture type: default -'500340': +"500340": installDir: QUACK ATTACK 1985 launch: - config: oslist: windows executable: QUACK ATTACK 1985 TURBO DX EDITION.exe type: default -'500350': +"500350": installDir: Final Fleet launch: - config: @@ -242214,29 +237928,29 @@ description: Launch with Console executable: final fleet.exe type: vr -'500360': +"500360": installDir: VRMultigames launch: - - arguments: '-windowed -vr' + - arguments: "-windowed -vr" description: The 3 normal minigames executable: /VRMultigames/VRMultigames.exe type: vr - - arguments: '-windowed -vr' - description: ' the 4th minigame. Shootout Prototype.' + - arguments: "-windowed -vr" + description: " the 4th minigame. Shootout Prototype." executable: /Shootout/Shootout.exe type: vr - - arguments: '-vr -windowed' + - arguments: "-vr -windowed" description: The 3 normal minigames executable: /VRMultigames-Oculus/VRMultigames.exe type: othervr -'500380': +"500380": installDir: Uncorporeal - Fluffy! launch: - config: oslist: windows - executable: Fluffy! - DIRECTOR'S CUT.exe + executable: "Fluffy! - DIRECTOR'S CUT.exe" type: vr -'500420': +"500420": installDir: SoulHunt launch: - config: @@ -242248,16 +237962,16 @@ executable: SoulHunt.app/Contents/MacOS/SoulHunt type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: SoulHunt.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: SoulHunt.x86_64 type: default -'500440': +"500440": installDir: Take the Cake launch: - config: @@ -242268,51 +237982,51 @@ oslist: linux executable: runner type: none -'500480': +"500480": installDir: Fist of Physics launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: FistOfPhysics.exe type: vr -'500550': - installDir: 'Save the Universe, Please!' +"500550": + installDir: "Save the Universe, Please!" launch: - - arguments: '-windowed' + - arguments: "-windowed" config: oslist: windows executable: Game.exe type: default -'500570': +"500570": installDir: Mahjong Deluxe 2 Astral Planes launch: - config: oslist: windows executable: MahjongDeluxe2.exe type: default -'500580': +"500580": installDir: Kitty Cat Jigsaw Puzzles launch: - config: oslist: windows executable: KittyCatJigsawPuzzles.exe type: default -'500590': +"500590": installDir: Puppy Dog Jigsaw Puzzles launch: - config: oslist: windows executable: PuppyDogJigsawPuzzles.exe type: default -'500660': +"500660": installDir: Limberjack launch: - config: oslist: windows executable: Limberjack.exe type: vr -'500670': +"500670": installDir: TxP launch: - config: @@ -242323,37 +238037,37 @@ oslist: macos executable: TormentorXPunisher.app type: default -'500680': +"500680": installDir: Jockey Rush launch: - config: oslist: windows executable: jr.exe type: default -'500690': +"500690": installDir: Secret Santa launch: - config: oslist: windows description: in 32-bit - executable: win32\\nw.exe + executable: "win32\\\\nw.exe" type: option2 - config: - osarch: '64' + osarch: "64" oslist: windows description: in 64-bit - executable: win64\\nw.exe + executable: "win64\\\\nw.exe" type: option1 - config: oslist: linux description: Linux 32-bit - executable: linux32\\nw + executable: "linux32\\\\nw" type: default - config: oslist: macos executable: secretsanta.app type: default -'500710': +"500710": installDir: Wild Terra Online launch: - config: @@ -242368,58 +238082,58 @@ oslist: macos executable: Wild-Terra.app type: none -'500740': {} -'500750': +"500740": {} +"500750": installDir: GI Racing 2.0 launch: - config: oslist: windows executable: giracing2.exe type: none -'500760': +"500760": installDir: Kuraburo Kai launch: - config: oslist: windows executable: KUraburo_Kai.exe type: none -'500790': +"500790": installDir: Moribund launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Moribund_Windows.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Moribund_Linux.x86_64 type: default - config: - osarch: '64' + osarch: "64" oslist: macos executable: Moribund_MacOSX.app type: default -'500800': +"500800": installDir: Rogue Fighter launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Rogue Fighter.exe type: vr -'500810': +"500810": installDir: Arcanum launch: - executable: SierraLauncher.exe type: none -'500870': +"500870": installDir: Riddles Of The Past launch: - executable: RiddlesOfThePast.exe type: none -'500880': +"500880": installDir: Tails launch: - config: @@ -242427,81 +238141,77 @@ description: Launch executable: Tails.exe type: vr -'500920': +"500920": installDir: House of Alice launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: HouseOfAlice.exe type: vr -'500930': +"500930": installDir: Football Toss launch: - config: oslist: windows executable: FootballVR.exe type: vr -'500940': +"500940": installDir: Get The Gems launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Get The Gems RELOADED in 64bit Mode - description_loc: - english: Get The Gems RELOADED in 64bit Mode executable: GetTheGems.exe type: option1 - config: oslist: windows description: Get The Gems RELOADED in 32bit Mode - description_loc: - english: Get The Gems RELOADED in 32bit Mode executable: GetTheGems_32.exe type: option2 -'500980': +"500980": installDir: Endangered launch: - config: oslist: windows executable: Endangered.exe type: none -'501020': +"501020": installDir: Super Pixel Racers launch: - config: oslist: windows executable: SuperPixelRacers.exe type: default -'501030': +"501030": installDir: Extravaganza Rising launch: - config: oslist: windows executable: Extravaganza Rising.exe type: none -'501050': +"501050": installDir: Emerland Solitaire Endless Journey launch: - executable: EmerlandSolitaireEndlessJourney.exe type: none -'501060': +"501060": installDir: CSSCITADEL launch: - config: oslist: windows executable: CSSCITADEL.exe type: vr -'501080': +"501080": installDir: Fishing Barents Sea launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: FBS.exe type: default -'501090': +"501090": installDir: Design it Drive it Speedboats launch: - config: @@ -242517,19 +238227,19 @@ description: SteamVR/Vive executable: DIDIBoats.exe type: vr -'501110': +"501110": installDir: Mount Wingsuit launch: - config: oslist: windows executable: MountWingsuit.exe type: vr - - arguments: '-nonvr' + - arguments: "-nonvr" config: oslist: windows executable: MountWingsuit.exe type: default -'501120': +"501120": installDir: Clock Simulator launch: - config: @@ -242540,27 +238250,27 @@ oslist: macos executable: ClockSimulator.app/Contents/MacOS/ClockSimulator type: default - - arguments: '-force-opengl' + - arguments: "-force-opengl" config: - osarch: '32' + osarch: "32" oslist: linux executable: ClockSimulator.x86 type: default - - arguments: '-force-opengl' + - arguments: "-force-opengl" config: - osarch: '64' + osarch: "64" oslist: linux executable: ClockSimulator.x86_64 type: default -'501180': - installDir: Acan's Call +"501180": + installDir: "Acan's Call" launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: AcansCall.exe type: vr -'501190': +"501190": installDir: Axis Football 2016 launch: - config: @@ -242578,11 +238288,11 @@ description: Launch executable: Axis Football 2016.x86 type: default -'50120': +"50120": installDir: MLB 2K10 launch: - executable: MLB2K10.exe -'501220': +"501220": installDir: Space_Ribbon launch: - config: @@ -242605,11 +238315,11 @@ executable: SpaceRibbon.exe type: othervr - config: - osarch: '64' + osarch: "64" oslist: linux executable: SpaceRibbon.x86_64 type: default -'501270': +"501270": installDir: Robots In The Wild launch: - config: @@ -242625,33 +238335,33 @@ description: Developer Test executable: Robots In The Wild Test.exe type: none -'50130': +"50130": installDir: Mafia II launch: - config: oslist: windows - executable: pc\\mafia2.exe + executable: "pc\\\\mafia2.exe" type: none - config: oslist: macos executable: Mafia II.app type: none -'501300': +"501300": installDir: EdithFinch launch: - arguments: SAVEWINPOS=1 config: oslist: windows - executable: FinchGame\\Binaries\\Win64\\FinchGame.exe + executable: "FinchGame\\\\Binaries\\\\Win64\\\\FinchGame.exe" type: default -'501310': +"501310": installDir: Venture Forth launch: - config: oslist: windows executable: Venture Forth.exe type: none -'501320': +"501320": installDir: The Shrouded Isle launch: - config: @@ -242660,52 +238370,52 @@ type: none - config: oslist: macos - executable: TheShroudedIsle - OSX.app\\Contents\\MacOS\\TheShroudedIsle - OSX + executable: "TheShroudedIsle - OSX.app\\\\Contents\\\\MacOS\\\\TheShroudedIsle - OSX" type: none -'501350': +"501350": installDir: Dimension Hunter launch: - config: oslist: windows executable: DimensionHunter.exe type: vr -'501380': +"501380": installDir: UNCORPOREAL - LOFTS! launch: - config: oslist: windows executable: AlcatrazLofts2025.exe type: vr -'501410': +"501410": installDir: SOS launch: - config: oslist: windows executable: SOS.exe type: default -'501420': +"501420": installDir: My Own Pet launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: MOP.exe type: vr -'501430': +"501430": installDir: Blue Solar Chaos War launch: - config: oslist: windows executable: LATS_PC.exe type: none -'501440': +"501440": installDir: Stars launch: - config: oslist: windows executable: Stars.exe type: vr -'501450': +"501450": installDir: Puzzle Blocks launch: - config: @@ -242718,58 +238428,58 @@ description: Puzzle Cross Maker executable: PuzzleBlocksMaker.exe type: option2 -'501470': +"501470": installDir: hold-the-door launch: - config: oslist: windows executable: htd.exe type: vr -'501480': +"501480": installDir: LS Naughty Brothers launch: - config: oslist: windows executable: TheLostSocks.exe type: default -'501500': +"501500": installDir: Black Moon Chronicles launch: - config: oslist: windows executable: BlackMoon.exe type: default -'501530': +"501530": installDir: SturmFront - The Mutant War Übel Edition launch: - executable: SturmFront_TheMutantWar_ÜbelEdition.exe type: none -'501590': +"501590": installDir: Bulletstorm Full Clip Edition launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: Binaries\\Win64\\StormGame-Win64-Shipping.exe + executable: "Binaries\\\\Win64\\\\StormGame-Win64-Shipping.exe" type: default -'501680': {} -'501690': {} -'501720': {} -'501740': +"501680": {} +"501690": {} +"501720": {} +"501740": installDir: DropshipDown launch: - config: oslist: windows executable: DropshipDown.exe type: default -'501760': +"501760": installDir: Francisca launch: - config: oslist: windows executable: Francisca.exe type: default -'501790': +"501790": installDir: Unforeseen Incidents launch: - config: @@ -242781,55 +238491,55 @@ executable: Unforeseen Incidents.app type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: Unforeseen Incidents.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: Unforeseen Incidents.x86_64 type: none -'501800': {} -'501830': {} -'501840': - installDir: Don't Disturb +"501800": {} +"501830": {} +"501840": + installDir: "Don't Disturb" launch: - config: - osarch: '32' + osarch: "32" oslist: windows - executable: don'tdisturb.exe + executable: "don'tdisturb.exe" type: default - config: - osarch: '64' + osarch: "64" oslist: windows - executable: don'tdisturb.exe + executable: "don'tdisturb.exe" type: default - config: - osarch: '64' + osarch: "64" oslist: macos - executable: don'tdisturb.app\\Contents\\MacOS\\nwjs + executable: "don'tdisturb.app\\\\Contents\\\\MacOS\\\\nwjs" type: default - config: - osarch: '32' + osarch: "32" oslist: macos - executable: don'tdisturb.app\\Contents\\MacOS\\nwjs + executable: "don'tdisturb.app\\\\Contents\\\\MacOS\\\\nwjs" type: default - config: - osarch: '64' + osarch: "64" oslist: linux - executable: don'tdisturb + executable: "don'tdisturb" type: default - config: - osarch: '32' + osarch: "32" oslist: linux - executable: don'tdisturb + executable: "don'tdisturb" type: default -'501850': +"501850": installDir: DCR Drive.Crash.Repeat launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: DCR.exe type: none @@ -242837,7 +238547,7 @@ oslist: macos executable: DCR.app/Contents/MacOS/DCR-desktop type: none -'501860': +"501860": installDir: Slayer Shock launch: - config: @@ -242852,46 +238562,46 @@ oslist: linux executable: Vamp type: default -'501870': {} -'501880': {} -'501900': {} -'501910': {} -'501920': {} -'501930': +"501870": {} +"501880": {} +"501900": {} +"501910": {} +"501920": {} +"501930": installDir: SigNull launch: - config: oslist: windows executable: SigNULL.exe type: default -'501940': +"501940": installDir: Hikikomori No Chuunibyou launch: - config: oslist: windows executable: Hikikomori No Chuunibyou.exe type: default -'501950': +"501950": installDir: Rogue Islands launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: RogueIslands.exe type: none -'501970': +"501970": installDir: Phantasmagoria 2 launch: - executable: SierraLauncher.exe type: none -'501990': +"501990": installDir: Phantasmagoria launch: - executable: SierraLauncher.exe type: none -'502020': {} -'502050': {} -'502070': +"502020": {} +"502050": {} +"502070": installDir: FastAndCurious launch: - config: @@ -242899,74 +238609,70 @@ executable: nw.exe type: default - config: - osarch: '64' + osarch: "64" oslist: macos - executable: fastandcurious.app\\Contents\\MacOS\\nwjs + executable: "fastandcurious.app\\\\Contents\\\\MacOS\\\\nwjs" type: default - config: oslist: linux executable: nw type: default -'502090': +"502090": installDir: InvisibleMind launch: - config: oslist: windows executable: InvisibleMind.exe type: none -'502100': +"502100": installDir: Deaths Life launch: - config: oslist: windows executable: Deaths Life.exe type: default -'502120': - installDir: Anicon - Animal Complex - Cat's Path +"502120": + installDir: "Anicon - Animal Complex - Cat's Path" launch: - config: oslist: windows description: Launch - description_loc: - english: Launch executable: anicon-cat.exe type: default -'502130': +"502130": installDir: CtrlCV launch: - config: oslist: windows executable: CtrlCV.exe type: default -'502140': +"502140": installDir: Drayt Empire launch: - executable: game.exe type: none -'502150': +"502150": installDir: Interstellar Logistics Inc launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Interstellar Logistics Inc.exe type: default -'502200': +"502200": installDir: Orczz launch: - config: oslist: windows executable: orczz.exe type: default -'502210': +"502210": installDir: Super Markup Man launch: - - arguments: '--in-process-gpu --disable-windows10-custom-titlebar' + - arguments: "--in-process-gpu --disable-windows10-custom-titlebar" config: oslist: windows description: Launch - description_loc: - english: Launch executable: markup-man.exe type: none - config: @@ -242975,42 +238681,42 @@ executable: markup-man.app type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: launch.sh type: none -'502230': - installDir: Monsters' Den Book of Dread +"502230": + installDir: "Monsters' Den Book of Dread" launch: - config: oslist: windows executable: BookOfDread.exe type: default -'502240': +"502240": installDir: You Deserve launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: YouDeserve.exe type: default - config: - osarch: '64' + osarch: "64" oslist: macos - executable: YouDeserve.app\\Contents\\MacOS\\YouDeserve + executable: "YouDeserve.app\\\\Contents\\\\MacOS\\\\YouDeserve" type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: YouDeserve.x86_64 type: default -'502250': {} -'502280': +"502250": {} +"502280": installDir: BERSERK and the Band of the Hawk launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Play BERSERK and the Band of Hawk executable: BERSERK.exe @@ -243020,7 +238726,7 @@ description: Open launcher executable: Launcher.exe type: config -'502300': +"502300": installDir: Heartomics Lost Count - Visual Novel Danmaku launch: - config: @@ -243028,11 +238734,11 @@ executable: Lost Count.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: lost_count type: default -'502320': +"502320": installDir: Boulder Dash 30th Anniversary launch: - config: @@ -243043,21 +238749,21 @@ oslist: macos executable: Boulder Dash 30th Anniversary.app type: default -'502350': +"502350": installDir: ATV Quadracer Ultimate launch: - config: oslist: windows executable: ATV Quadracer Ultimate.exe type: default -'502370': +"502370": installDir: Warhammer 40000 Sanctus Reach launch: - config: oslist: windows executable: autorun.exe type: default -'502380': +"502380": installDir: Tangled Up! launch: - config: @@ -243072,66 +238778,66 @@ oslist: macos executable: Play.app type: default -'502400': +"502400": installDir: Redactem launch: - config: oslist: macos - executable: osx64\\redactem.app\\Contents\\MacOS\\nwjs + executable: "osx64\\\\redactem.app\\\\Contents\\\\MacOS\\\\nwjs" type: default - config: oslist: windows - executable: win32\\nw.exe + executable: "win32\\\\nw.exe" type: default -'502410': +"502410": installDir: Airport Fire Department - The Simulation launch: - config: oslist: windows executable: AirportFireDepartment-TheSimulation.exe type: default -'502420': +"502420": installDir: Firefighters - The Simulation launch: - config: oslist: windows executable: Firefighters-TheSimulation.exe type: default -'502430': +"502430": installDir: Roadworks - The Simulation launch: - config: oslist: windows executable: Roadworks-TheSimulation.exe type: default -'502440': +"502440": installDir: Plant Fire Department - The Simulation launch: - config: oslist: windows executable: PlantFireDepartment-TheSimulation.exe type: default -'502450': +"502450": installDir: Professional Construction - The Simulation launch: - config: oslist: windows executable: ProfessionalConstruction-TheSimulation.exe type: default -'502460': +"502460": installDir: Hotel Giant launch: - executable: hotel.exe type: default -'502500': +"502500": installDir: ACE COMBAT 7 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Ace7Game.exe type: default -'502520': +"502520": installDir: Ultimate General Civil War launch: - config: @@ -243141,9 +238847,9 @@ - config: oslist: windows description: Guide - executable: \\BrowserAssets\\guide\\index.html + executable: "\\\\BrowserAssets\\\\guide\\\\index.html" type: manual - - arguments: '-force-glcore' + - arguments: "-force-glcore" config: oslist: windows description: OpenGL @@ -243158,20 +238864,20 @@ oslist: macos executable: Ultimate General Civil War.app type: default - - arguments: '-force-d3d9' + - arguments: "-force-d3d9" config: oslist: windows description: Direct3D 9 executable: Ultimate General Civil War.exe type: none -'502530': +"502530": installDir: THE GREY MAN launch: - config: oslist: windows executable: THE GREY MAN.exe type: default -'502540': +"502540": installDir: Cold Vengeance launch: - config: @@ -243182,7 +238888,7 @@ oslist: macos executable: Cold Vengeance.app type: none -'502550': +"502550": installDir: Strike.is The Game launch: - config: @@ -243195,43 +238901,43 @@ description: Launch executable: Strikeis.app/Contents/MacOS/Strikeis type: none -'502600': +"502600": installDir: The Multidimensional Underwear Drawer launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows executable: nw.exe type: default -'502650': +"502650": installDir: Autumn Park Mini Golf launch: - config: oslist: windows executable: APMG.exe type: default -'502700': +"502700": installDir: Laser Lasso BALL launch: - config: oslist: windows executable: LaserLassoBALL.exe type: default -'502710': +"502710": installDir: The Last Sniper VR launch: - config: oslist: windows executable: The Last SniperV1.1.exe type: vr -'502720': +"502720": installDir: Star Explorers launch: - config: oslist: windows executable: Star_Explorers.exe type: default -'502730': +"502730": installDir: Osy Osmosis launch: - config: @@ -243243,42 +238949,42 @@ executable: Osy Osmosis.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Osy Osmosis.x86 type: default - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" config: oslist: windows description: configure resolution options executable: Osy Osmosis.exe type: config - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" config: oslist: macos description: configure resolution options executable: Osy Osmosis.app type: config - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" config: - osarch: '32' + osarch: "32" oslist: linux description: configure resolution options executable: Osy Osmosis.x86 type: config - config: - osarch: '64' + osarch: "64" oslist: linux executable: Osy Osmosis.x86_64 type: default - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" config: - osarch: '64' + osarch: "64" oslist: linux description: configure resolution options executable: Osy Osmosis.x86_64 type: config -'502740': +"502740": installDir: 50 years launch: - config: @@ -243287,24 +238993,24 @@ type: default nameLocalized: russian: 50 лет -'502750': +"502750": installDir: Quest for Glory Collection launch: - executable: SierraLauncher.exe type: none -'502770': +"502770": installDir: Voodoo Garden launch: - config: oslist: windows executable: Voodoo Garden.exe type: default -'502780': +"502780": installDir: Avalon The Journey Begins launch: - executable: Avalon_v10361.exe type: default -'502800': +"502800": installDir: Senran Kagura Estival Versus launch: - config: @@ -243313,36 +239019,36 @@ type: none nameLocalized: japanese: 閃乱カグラ ESTIVAL VERSUS -少女達の選択- -'502810': +"502810": installDir: Tank Heroes VR launch: - config: oslist: windows executable: game.exe type: vr -'502820': +"502820": installDir: Batman Arkham VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: ArkhamVR\\Binaries\\Win64\\ArkhamVR.exe + executable: "ArkhamVR\\\\Binaries\\\\Win64\\\\ArkhamVR.exe" type: vr -'502880': +"502880": installDir: The Janitor launch: - config: oslist: windows executable: TheJanitor.exe type: default -'502910': +"502910": installDir: The Return Home launch: - config: oslist: windows executable: The Return Home.exe type: default -'502920': +"502920": installDir: Gunnihilation launch: - config: @@ -243350,33 +239056,33 @@ description: Launch executable: Gunnihilation_Alpha.exe type: default -'502940': - installDir: 'Calm Down, Stalin' +"502940": + installDir: "Calm Down, Stalin" launch: - config: oslist: windows executable: Stalin.exe type: default -'502950': +"502950": installDir: windows_content launch: - config: oslist: windows executable: Slider.exe type: vr -'502990': +"502990": installDir: Kisaragi no Hougyoku launch: - config: oslist: windows executable: Kisaragi_no_Hougyoku.exe type: default -'50300': +"50300": installDir: SpecOps_TheLine launch: - config: oslist: windows - executable: Binaries\\Win32\\SpecOpsTheLine.exe + executable: "Binaries\\\\Win32\\\\SpecOpsTheLine.exe" - config: oslist: macos description: Launch @@ -243384,75 +239090,75 @@ - config: oslist: linux description: Launch - executable: ./specops -'503010': + executable: "./specops" +"503010": installDir: Azulgar launch: - config: oslist: windows executable: Azulgar.exe type: default -'503050': +"503050": installDir: Heroes from the Past Joan of Arc launch: - executable: HeroesFromThePast_JoanOfArc.exe type: none -'503060': - installDir: The Agency of Anomalies Mystic Hospital Collector's Edition +"503060": + installDir: "The Agency of Anomalies Mystic Hospital Collector's Edition" launch: - executable: AgencyofAnomalies_Mystic.exe type: none -'503070': - installDir: Off the Record The Italian Affair Collector's Edition +"503070": + installDir: "Off the Record The Italian Affair Collector's Edition" launch: - executable: OffTheRecord_TheItalianAffair_CE.exe type: none -'503080': - installDir: Echoes of the Past Kingdom of Despair Collector's Edition +"503080": + installDir: "Echoes of the Past Kingdom of Despair Collector's Edition" launch: - executable: EchoesOfThePast_TheKingdomOfDespair_CE.exe type: none -'503090': +"503090": installDir: Fairy Maids launch: - executable: FairyMaids.exe type: none -'503100': +"503100": installDir: Black Hat Cooperative launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: BlackHatCooperative.exe type: none - config: - osarch: '64' + osarch: "64" oslist: windows executable: BlackHatCooperative.exe type: vr -'503130': +"503130": installDir: Red is Dead launch: - config: oslist: windows executable: Red is Dead.exe type: default -'503140': +"503140": installDir: DungeonPunks launch: - config: oslist: windows executable: game.exe type: default -'503150': +"503150": installDir: Frantic Freighter launch: - - arguments: '-show-screen-selector -vrmode none' + - arguments: "-show-screen-selector -vrmode none" config: oslist: windows executable: ff.exe type: default - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" config: oslist: macos executable: ff.app @@ -243461,28 +239167,26 @@ oslist: windows executable: ff.exe type: vr - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" config: - osarch: '32' + osarch: "32" oslist: linux executable: ff.x86 type: default - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" config: - osarch: '64' + osarch: "64" oslist: linux executable: ff.x86_64 type: default - - arguments: '-vrmode none osvr' + - arguments: "-vrmode none osvr" config: - osarch: '64' + osarch: "64" oslist: windows description: OSVR Mode - description_loc: - english: OSVR Mode executable: ff.exe type: option1 -'503160': +"503160": installDir: Andels & Demigods launch: - config: @@ -243494,11 +239198,11 @@ executable: AaD.exe type: default - config: - osarch: '64' + osarch: "64" oslist: macos executable: AngelsAndDemigods_v1.2.app/Contents/MacOS/AngelsAndDemigods_v1.2 type: default -'503180': +"503180": installDir: miniLAW launch: - config: @@ -243509,7 +239213,7 @@ oslist: linux executable: minilaw type: none -'503210': +"503210": installDir: Sentry Knight Tactics launch: - config: @@ -243520,32 +239224,32 @@ oslist: macos executable: Sentry Knight Tactics.app type: none -'503220': {} -'503240': +"503220": {} +"503240": installDir: Hurricane launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Hurricane.exe type: default -'503280': +"503280": installDir: Marble Land launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: MarbleLand.exe type: none -'503290': +"503290": installDir: Maraiyum Rise of the Setting Sun launch: - - arguments: '-windowed' + - arguments: "-windowed" config: oslist: windows executable: RiseOfTheSettingSun.exe type: default -'503300': +"503300": installDir: Super Star launch: - config: @@ -243554,18 +239258,18 @@ type: default - config: oslist: macos - executable: game.app\\Contents\\MacOS\\game + executable: "game.app\\\\Contents\\\\MacOS\\\\game" type: default -'503320': {} -'503340': +"503320": {} +"503340": installDir: Dig 4 Destruction launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Dig_4_Destruction.exe type: vr -'503350': +"503350": installDir: White Noise 2 launch: - config: @@ -243588,7 +239292,7 @@ description: Launch (Native libraries) executable: WhiteNoise2 type: none - - arguments: '-disableController' + - arguments: "-disableController" config: oslist: linux description: Launch (Disable controller support) @@ -243600,46 +239304,46 @@ description: Launch (Native + Disable controller) executable: WhiteNoise2 type: none -'503370': +"503370": installDir: Hospitalize launch: - config: oslist: windows executable: Hospitalize.exe type: none - - arguments: '-force-d3d9' + - arguments: "-force-d3d9" description: Play Hospitalize (DirectX 9) executable: Hospitalize.exe type: none -'503390': +"503390": installDir: Roomscale Tower launch: - config: oslist: windows executable: RoomscaleTower.exe type: vr -'503400': +"503400": installDir: Four Last Things launch: - config: oslist: windows executable: Four Last Things.exe type: default -'503410': +"503410": installDir: Zombie Camp launch: - executable: Zombie Camp Vive.exe type: vr -'503420': {} -'503430': {} -'503450': +"503420": {} +"503430": {} +"503450": installDir: Space Rangers Quest launch: - config: oslist: windows executable: SRQuest.exe type: default -'503460': +"503460": installDir: SecurityHole launch: - config: @@ -243648,34 +239352,34 @@ type: default - config: oslist: macos - executable: SecurityHole.app\\Contents\\MacOS\\SecurityHole + executable: "SecurityHole.app\\\\Contents\\\\MacOS\\\\SecurityHole" type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: SecurityHole.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: SecurityHole.x86_64 type: default -'503480': +"503480": installDir: Mahluk Dark demon launch: - config: oslist: windows - executable: Mahluk_Content\\Mahluk.exe + executable: "Mahluk_Content\\\\Mahluk.exe" type: default -'503490': {} -'503530': +"503490": {} +"503530": installDir: The Fallen Kingdom launch: - config: oslist: windows executable: Version 1.0.6.exe type: none -'503550': +"503550": installDir: DYE launch: - config: @@ -243690,7 +239394,7 @@ oslist: macos executable: dyegame.app type: default -'503560': +"503560": installDir: 911 Operator launch: - config: @@ -243711,43 +239415,43 @@ description: Edit Calls! executable: CallEditor.exe type: editor -'503580': +"503580": installDir: DuckSeason launch: - config: oslist: windows - executable: DuckSeason\\DuckSeason.exe + executable: "DuckSeason\\\\DuckSeason.exe" type: vr -'503620': +"503620": installDir: Fictorum launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Fictorum.exe type: default - - arguments: '-Vulcan' + - arguments: "-Vulcan" config: betakey: developeronly - osarch: '64' + osarch: "64" oslist: linux executable: Fictorum.sh type: default -'503630': +"503630": installDir: INVASION! launch: - config: oslist: windows - executable: Invasion\\InvasionEp01.exe + executable: "Invasion\\\\InvasionEp01.exe" type: vr -'503650': +"503650": installDir: Fenimore Fillmore The Westerner launch: - config: oslist: windows executable: TheWesterner.exe type: none -'503680': +"503680": installDir: The Seeker launch: - config: @@ -243755,39 +239459,39 @@ description: Launch 32-bit compatible The Seeker executable: The_Seeker.exe type: default -'503690': +"503690": installDir: Starship Disco launch: - config: oslist: windows executable: StarshipDisco.exe type: vr -'503700': +"503700": installDir: Fall of Freya launch: - config: oslist: windows executable: FreyaA2.exe type: default -'503710': +"503710": installDir: Void launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Void_Win.exe type: default - config: - osarch: '64' + osarch: "64" oslist: macos executable: Void_Mac.app type: default -'503730': +"503730": installDir: Saving Harmony launch: - executable: Saving Harmony.exe type: default -'503750': +"503750": installDir: Splash Blast Panic launch: - config: @@ -243796,26 +239500,26 @@ type: none - config: oslist: macos - executable: SBP.app\\Contents\\MacOS\\SBP + executable: "SBP.app\\\\Contents\\\\MacOS\\\\SBP" type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: SBP.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: SBP.x86_64 type: default -'503770': +"503770": installDir: Elven Assassin launch: - config: oslist: windows executable: Elven Assassin.exe type: vr -'503780': +"503780": installDir: Ice Caves of Europa launch: - config: @@ -243826,21 +239530,21 @@ oslist: macos executable: Ice Caves of Europa.app type: default -'503820': - installDir: A Detective's Novel +"503820": + installDir: "A Detective's Novel" launch: - config: oslist: windows executable: game.exe type: default -'503830': +"503830": installDir: The Life Of Greather launch: - config: oslist: windows executable: The Life Of Greather.exe type: default -'503860': +"503860": installDir: Patterna launch: - config: @@ -243848,41 +239552,41 @@ executable: patterna.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: patterna.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: patterna.x86_64 type: default - config: oslist: macos - executable: patterna.app\\Contents\\MacOS\\patterna + executable: "patterna.app\\\\Contents\\\\MacOS\\\\patterna" type: default -'503900': +"503900": installDir: Candy Smash VR launch: - config: oslist: windows executable: Candy Smash VR.exe type: vr -'503920': {} -'503940': +"503920": {} +"503940": installDir: Railway Empire launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: RailwayEmpire.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: RailwayEmpire type: default -'503950': +"503950": installDir: Star Tactics launch: - config: @@ -243890,12 +239594,12 @@ executable: StarTactics.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: StarTactics.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: StarTactics.x86 type: default @@ -243903,7 +239607,7 @@ oslist: macos executable: StarTactics.app type: default -'503960': +"503960": installDir: Will of the Gods launch: - config: @@ -243912,7 +239616,7 @@ type: default - executable: game.exe type: none -'503980': +"503980": installDir: Detective Hank and the Golden Sneeze launch: - config: @@ -243925,9 +239629,9 @@ type: default - config: oslist: macos - executable: hankSneeze.app\\Contents\\MacOS\\hankSneeze + executable: "hankSneeze.app\\\\Contents\\\\MacOS\\\\hankSneeze" type: none -'504000': +"504000": installDir: EndlessFables_TheMinotaursCurse launch: - config: @@ -243936,13 +239640,13 @@ executable: EndlessFables.exe type: none - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: EndlessFables_i386 type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: EndlessFables_amd64 @@ -243952,40 +239656,40 @@ description: Launch executable: mac_steam.app/Contents/MacOS/mac_steam type: none -'504030': {} -'504050': +"504030": {} +"504050": installDir: Planet Nomads launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: PlanetNomads.exe type: default - config: - osarch: '64' + osarch: "64" oslist: macos - executable: PlanetNomads.app\\Contents\\MacOS\\PlanetNomads + executable: "PlanetNomads.app\\\\Contents\\\\MacOS\\\\PlanetNomads" type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: PlanetNomads.x86_64 type: default -'504090': +"504090": installDir: 321Grenades launch: - config: oslist: windows executable: 321Grenades.exe type: default -'504100': +"504100": installDir: Russian VR Coasters launch: - config: oslist: windows executable: RussianVRCoasters.exe type: vr -'504110': +"504110": installDir: The Longest Five Minutes launch: - config: @@ -243994,7 +239698,7 @@ type: default nameLocalized: japanese: 世界一長い5分間 -'504130': +"504130": installDir: Manual Samuel launch: - config: @@ -244003,19 +239707,19 @@ type: none - config: oslist: macos - executable: Manual Samuel.app\\Contents\\MacOS\\Manual Samuel + executable: "Manual Samuel.app\\\\Contents\\\\MacOS\\\\Manual Samuel" type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Manual Samuel.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Manual Samuel.x86_64 type: default -'504210': +"504210": installDir: SHENZHEN IO launch: - config: @@ -244031,7 +239735,7 @@ oslist: linux executable: Shenzhen type: default -'504230': +"504230": installDir: Celeste launch: - config: @@ -244044,30 +239748,30 @@ type: default - config: oslist: linux - executable: ./Celeste + executable: "./Celeste" type: default -'504240': +"504240": installDir: Graveyard Smash launch: - config: oslist: windows executable: graveyardsmash_steamedition.exe type: none -'504260': +"504260": installDir: Happy Pong launch: - config: oslist: windows executable: HappyPong.exe type: default -'504280': +"504280": installDir: The Cold War Era launch: - config: oslist: windows executable: TCWE.exe type: default -'504300': +"504300": installDir: Gangs of Space launch: - config: @@ -244076,19 +239780,19 @@ type: default - config: oslist: macos - executable: Gangs of Space.app\\Contents\\MacOS\\Gangs of Space + executable: "Gangs of Space.app\\\\Contents\\\\MacOS\\\\Gangs of Space" type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Gangs of Space.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Gangs of Space.x86_64 type: default -'504310': +"504310": installDir: TheCookingGame launch: - config: @@ -244097,9 +239801,9 @@ type: default - config: oslist: macos - executable: CookingGame.app\\Contents\\MacOS\\CookingGame + executable: "CookingGame.app\\\\Contents\\\\MacOS\\\\CookingGame" type: default -'504360': +"504360": installDir: Rage of the Battlemage launch: - config: @@ -244109,20 +239813,20 @@ - arguments: "\t" config: oslist: macos - executable: Rage of the Battlemage.app\\Contents\\MacOS\\Rage of the Battlemage + executable: "Rage of the Battlemage.app\\\\Contents\\\\MacOS\\\\Rage of the Battlemage" type: none -'504370': +"504370": installDir: Battlerite launch: - - arguments: '-logfile Battlerite_Data\\output_log.txt' + - arguments: "-logfile Battlerite_Data\\\\output_log.txt" description: DirectX 11 executable: Battlerite.exe type: option1 - - arguments: '-force-d3d9 -logfile Battlerite_Data\\output_log.txt' + - arguments: "-force-d3d9 -logfile Battlerite_Data\\\\output_log.txt" description: DirectX 9 (use if you are experiencing crashes) executable: Battlerite.exe type: option2 -'504380': +"504380": installDir: Detective Hayseed - Hollywood launch: - config: @@ -244131,24 +239835,24 @@ type: default nameLocalized: czech: Polda 6 -'504390': +"504390": installDir: Along the Edge launch: - config: oslist: macos executable: Along the Edge.app type: default - - arguments: '--disable-d3d11' + - arguments: "--disable-d3d11" config: oslist: windows executable: Along-the-Edge.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Along the Edge type: default -'504400': +"504400": installDir: Optika launch: - config: @@ -244157,9 +239861,9 @@ type: default - config: oslist: macos - executable: Optika.app\\Contents\\MacOS\\Optika + executable: "Optika.app\\\\Contents\\\\MacOS\\\\Optika" type: default -'504410': +"504410": installDir: Escape from Pleasure Planet launch: - config: @@ -244174,33 +239878,33 @@ oslist: macos executable: main type: default -'504420': +"504420": installDir: Malazard The Master of Magic launch: - executable: Malazard The Master of Magic.exe type: vr -'504430': +"504430": installDir: The Watchmaker launch: - config: oslist: windows executable: TheWatchmaker.exe type: default -'504450': +"504450": installDir: StarSmashers launch: - config: oslist: windows executable: StarSmashers.exe type: none -'504460': +"504460": installDir: Team Racing League launch: - config: oslist: windows executable: TRL.exe type: default -'504470': +"504470": installDir: Salvaged launch: - config: @@ -244211,39 +239915,39 @@ oslist: windows executable: Salvaged.exe type: othervr - - arguments: '-Oculus' + - arguments: "-Oculus" config: betakey: beta oslist: windows executable: Salvaged.exe type: othervr - - arguments: '-Vive' + - arguments: "-Vive" config: betakey: beta executable: Salvaged.exe type: vr -'504490': - installDir: The God's Chain +"504490": + installDir: "The God's Chain" launch: - config: oslist: windows - executable: The God's Chain - Windows PC.exe + executable: "The God's Chain - Windows PC.exe" type: default - config: oslist: macos - executable: The God's Chain(Mac OSX).app\\Contents\\MacOS\\The God's Chain(Mac OSX) + executable: "The God's Chain(Mac OSX).app\\\\Contents\\\\MacOS\\\\The God's Chain(Mac OSX)" type: default - config: - osarch: '32' + osarch: "32" oslist: linux - executable: The God's Chain (Linux).x86 + executable: "The God's Chain (Linux).x86" type: default - config: - osarch: '64' + osarch: "64" oslist: linux - executable: The God's Chain (Linux).x86_64 + executable: "The God's Chain (Linux).x86_64" type: default -'504500': +"504500": installDir: Hover Havoc launch: - config: @@ -244252,14 +239956,14 @@ type: default - config: oslist: macos - executable: HoverHavoc.app\\Contents\\MacOS\\HoverHavoc + executable: "HoverHavoc.app\\\\Contents\\\\MacOS\\\\HoverHavoc" type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: HoverHavoc.x86_64 type: default -'504560': +"504560": installDir: The Unwelcomed launch: - arguments: VRMode @@ -244286,60 +239990,60 @@ type: vr - arguments: FPSMode -show-screen-selector config: - osarch: '32' + osarch: "32" oslist: linux executable: TheUnwelcomed_v1.7.x86 type: default - config: betakey: otmcbeta - osarch: '64' + osarch: "64" oslist: windows description: 2020 Beta - For Griff executable: OdeToMyCar.exe type: vr -'504610': +"504610": installDir: SaberSaw VR launch: - config: oslist: windows executable: SaberSaw.exe type: vr -'504620': - installDir: 'Grid Legion, Storm' +"504620": + installDir: "Grid Legion, Storm" launch: - config: oslist: windows executable: Grid Legion.exe type: none -'504630': +"504630": installDir: Broomball VR launch: - config: oslist: windows executable: Broomball.exe type: vr -'504660': +"504660": installDir: Tears Revolude launch: - - arguments: '-fullscreen' + - arguments: "-fullscreen" config: oslist: windows executable: Tears Revolude.exe type: default - - arguments: '-fullscreen' + - arguments: "-fullscreen" config: oslist: macos executable: Tears Revolude.app type: default - - arguments: '-fullscreen' + - arguments: "-fullscreen" config: - osarch: '32' + osarch: "32" oslist: linux executable: Tears Revolude.x86 type: default - - arguments: '-fullscreen' + - arguments: "-fullscreen" config: - osarch: '64' + osarch: "64" oslist: linux executable: Tears Revolude.x86_64 type: default @@ -244347,12 +240051,12 @@ japanese: ティアーズレヴォリュード schinese: 泪之轨迹 tchinese: 淚之軌跡 -'504670': +"504670": installDir: FARIA Ghosts of the Stream launch: - executable: Ghosts of the Stream.exe type: default -'504690': +"504690": installDir: Woven launch: - config: @@ -244364,45 +240068,45 @@ executable: Woven.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Woven.x86_64 type: none -'504700': +"504700": installDir: Blockships launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Blockships Win64.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: Blockships Win632.exe type: default - config: - osarch: '64' + osarch: "64" oslist: macos executable: Blockships Mac64.app type: default - config: - osarch: '32' + osarch: "32" oslist: macos executable: Blockships Mac32.app type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: Blockships Linux.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Blockships Linux.x86 type: default -'504750': - installDir: Lew Pulsipher's Doomstar +"504750": + installDir: "Lew Pulsipher's Doomstar" launch: - config: oslist: windows @@ -244419,7 +240123,7 @@ description: Launch executable: Doomstar.x86 type: none -'504770': +"504770": installDir: Slavistan launch: - config: @@ -244427,7 +240131,7 @@ description: Launch executable: Slavistan.exe type: default -'504800': +"504800": installDir: Sorcery! 4 launch: - config: @@ -244438,47 +240142,47 @@ oslist: macos executable: Sorcery! 4.app type: default -'504810': +"504810": installDir: MXGP2 - The Official Motocross Videogame Compact launch: - config: - osarch: '32' + osarch: "32" executable: MXGP_2.exe type: none - config: - osarch: '64' + osarch: "64" executable: MXGP_2X64.exe type: none -'504840': +"504840": installDir: Brick Stack VR launch: - config: oslist: windows executable: Brick Stack VR.exe type: vr -'504850': +"504850": installDir: Castle Invasion Throne Out launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: CastleInvasion.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: CastleInvasion.exe type: default - config: oslist: macos - executable: CastleInvasion.app\\Contents\\MacOS\\CastleInvasion + executable: "CastleInvasion.app\\\\Contents\\\\MacOS\\\\CastleInvasion" type: default -'504880': +"504880": installDir: Pixel Puzzles 2 RADical ROACH launch: - executable: Pixel Puzzles 2 - RADical ROACH.exe type: none -'504920': +"504920": installDir: 39 Days to Mars launch: - config: @@ -244490,23 +240194,23 @@ executable: 39 Days to Mars.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: 39 Days to Mars.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: 39 Days to Mars.x86_64 type: default -'504980': +"504980": installDir: Elves Adventure launch: - config: oslist: windows executable: Elves Adventure.exe type: default -'505020': +"505020": installDir: NeonExile launch: - arguments: +appName neon_exile +assetDatabaseStrategy Streaming +steamClient true @@ -244516,23 +240220,21 @@ config: betakey: internal description: Dev Deployment - description_loc: - english: Dev Deployment executable: UnityClient@Windows.exe type: vr - - arguments: '-vrmode none +appName neon_exile +assetDatabaseStrategy Streaming +steamClient true +dev true' + - arguments: "-vrmode none +appName neon_exile +assetDatabaseStrategy Streaming +steamClient true +dev true" config: betakey: internal description: Non VR - Dev executable: UnityClient@Windows.exe type: none - - arguments: '-vrmode none +appName neon_exile +assetDatabaseStrategy Streaming +steamClient true' + - arguments: "-vrmode none +appName neon_exile +assetDatabaseStrategy Streaming +steamClient true" config: betakey: internal description: Non VR - Prod executable: UnityClient@Windows.exe type: none -'505060': +"505060": installDir: Warcube launch: - config: @@ -244543,35 +240245,35 @@ oslist: macos executable: WarcubeMac.app/Contents/MacOS/WarcubeMac type: default -'505070': +"505070": installDir: Secrets of Me launch: - - arguments: '-windowed' + - arguments: "-windowed" config: oslist: windows executable: Secrets of Me.exe type: default -'505080': +"505080": installDir: Gakuen Club launch: - - arguments: '-windowed' + - arguments: "-windowed" config: oslist: windows executable: Gakuen_Club.exe type: default -'505090': +"505090": installDir: The Charming Empire launch: - - arguments: '-windowed' + - arguments: "-windowed" config: oslist: windows executable: TheCharmingEmpire.exe type: default -'50510': +"50510": installDir: Burn Zombie Burn! launch: - executable: BZB Launcher.exe -'505110': +"505110": installDir: Ghost Pursuit VR launch: - config: @@ -244586,57 +240288,57 @@ oslist: windows executable: Ghost_Pursuit_VR.exe type: othervr -'505120': +"505120": installDir: Valentino Rossi The Game Compact launch: - config: - osarch: '32' + osarch: "32" executable: MotoGPVR46.exe type: none - config: - osarch: '64' + osarch: "64" executable: MotoGPVR46X64.exe type: none -'505140': +"505140": installDir: Tribe Of Pok launch: - config: oslist: windows executable: Pok.exe type: none -'505170': +"505170": installDir: Carmageddon Max Damage launch: - config: oslist: windows description: Launch - executable: bin\\Carmageddon_Max_Damage.exe + executable: "bin\\\\Carmageddon_Max_Damage.exe" type: none - - arguments: '-carmodgeddon' + - arguments: "-carmodgeddon" config: oslist: windows description: Launch CarMODgeddon - executable: bin\\Carmageddon_Max_Damage.exe + executable: "bin\\\\Carmageddon_Max_Damage.exe" type: none - - arguments: '-pedsubstitution trumped_up.txt' + - arguments: "-pedsubstitution trumped_up.txt" config: oslist: windows description: Trumped-Up Mode - executable: bin\\Carmageddon_Max_Damage.exe + executable: "bin\\\\Carmageddon_Max_Damage.exe" type: none - - arguments: '-pedsubstitution hillarious.txt' + - arguments: "-pedsubstitution hillarious.txt" config: oslist: windows description: Hillaryious Mode - executable: bin\\Carmageddon_Max_Damage.exe + executable: "bin\\\\Carmageddon_Max_Damage.exe" type: none - - arguments: '-pedsubstitution mass_debate.txt' + - arguments: "-pedsubstitution mass_debate.txt" config: oslist: windows description: Mass Debate Mode - executable: bin\\Carmageddon_Max_Damage.exe + executable: "bin\\\\Carmageddon_Max_Damage.exe" type: none -'505210': +"505210": installDir: Neon Space 2 launch: - config: @@ -244647,54 +240349,52 @@ oslist: macos executable: NeonSpace2.app type: default - - arguments: '-force-opengl' + - arguments: "-force-opengl" config: - osarch: '32' + osarch: "32" oslist: linux executable: NeonSpace2.x86 type: default - - arguments: '-force-opengl' + - arguments: "-force-opengl" config: - osarch: '64' + osarch: "64" oslist: linux executable: NeonSpace2.x86_64 type: default -'505220': +"505220": installDir: King of Spin VR launch: - config: oslist: windows executable: ShaneWarneKingOfSpin.exe type: vr -'505230': +"505230": installDir: Pathologic launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Pathologic.exe type: none -'505270': +"505270": installDir: The Food Run launch: - config: oslist: windows description: Play The Food Run - executable: The Food Run\\The Food Run.exe + executable: "The Food Run\\\\The Food Run.exe" type: none - config: oslist: linux description: Play The Food Run - description_loc: - english: Play The Food Run - executable: The Food Run\\The Food Run.x86_64 + executable: "The Food Run\\\\The Food Run.x86_64" type: none - config: oslist: macos description: Play The Food Run - executable: The Food Run\\The Food Run.app + executable: "The Food Run\\\\The Food Run.app" type: none -'505290': +"505290": installDir: Super Rock Blasters! launch: - config: @@ -244708,44 +240408,44 @@ executable: Super Rock Blasters.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: Super Rock Blasters.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Super Rock Blasters.x86_64 type: default - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" config: oslist: windows description: Launch Resolution Dialog executable: Super Rock Blasters.exe type: config - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" config: oslist: macos description: Launch Resolution Dialog executable: Super Rock Blasters.app type: config - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" config: - osarch: '32' + osarch: "32" oslist: linux description: Launch Resolution Dialog executable: Super Rock Blasters.x86 type: config - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" config: - osarch: '64' + osarch: "64" oslist: linux description: Launch Resolution Dialog executable: Super Rock Blasters.x86_64 type: config -'505330': +"505330": installDir: Apocalipsis launch: - config: @@ -244756,7 +240456,7 @@ oslist: macos executable: Apocalipsis.app type: default -'505400': +"505400": installDir: Diamond Joyce and the Secrets of Crystal Cave launch: - config: @@ -244767,16 +240467,16 @@ oslist: macos executable: Diamond Joyce.app type: none -'505440': {} -'505460': +"505440": {} +"505460": installDir: Foxhole launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: War.exe type: default -'505630': +"505630": installDir: Let Them Come launch: - config: @@ -244787,7 +240487,7 @@ oslist: macos executable: LetThemCome.app type: default -'505640': +"505640": installDir: Antihero launch: - config: @@ -244798,37 +240498,37 @@ oslist: macos executable: Antihero.app/Contents/MacOS/Antihero type: default -'505660': +"505660": installDir: The Crystal Nebula launch: - config: oslist: windows executable: The Crystal Nebula.exe type: vr -'505670': +"505670": installDir: Fire Farm VR launch: - config: oslist: windows executable: FireFarmVR.exe type: none -'505680': +"505680": installDir: Glaive launch: - config: oslist: windows executable: Glaive.exe type: vr -'505700': +"505700": installDir: Anyland launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: anyland.exe type: vr -'505730': - installDir: Holy Potatoes! We're in Space! +"505730": + installDir: "Holy Potatoes! We're in Space!" launch: - config: oslist: windows @@ -244839,24 +240539,24 @@ executable: HPWIS.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux - executable: 'HPWIS.x86 ' + executable: "HPWIS.x86 " type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: HPWIS.x86_64 type: default -'505740': +"505740": installDir: Eximius launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ProjectCombine.exe type: default -'505750': +"505750": installDir: Trimmer Tycoon launch: - config: @@ -244867,9 +240567,9 @@ oslist: macos executable: trimmer.app type: default -'505760': {} -'505780': {} -'506090': +"505760": {} +"505780": {} +"506090": installDir: Switch launch: - config: @@ -244881,35 +240581,35 @@ executable: Switch.app type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: Switch.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: Switch.x86_64 type: none -'506110': {} -'506140': +"506110": {} +"506140": installDir: Shop Heroes launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: shopheroes.exe type: default -'506150': +"506150": installDir: Dragon Bros launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Dragon Bros Windows 32-bit executable: DragonBros.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux description: Dragon Bros Linux 32-bit executable: DragonBros.x86 @@ -244920,19 +240620,19 @@ executable: DragonBros.app type: default - config: - osarch: '64' + osarch: "64" oslist: windows description: Dragon Bros Windows 64-bit executable: DragonBros.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: Dragon Bros Linux 64-bit executable: DragonBros.x86_64 type: default -'506170': {} -'50620': +"506170": {} +"50620": installDir: Darksiders launch: - config: @@ -244946,7 +240646,7 @@ oslist: macos description: Launch Darksiders executable: DarksidersOsX -'506260': +"506260": installDir: Cladun Returns This Is Sengoku launch: - config: @@ -244955,14 +240655,14 @@ type: default nameLocalized: japanese: クラシックダンジョン 戦国 -'506280': +"506280": installDir: My Lil Donut launch: - config: oslist: windows executable: donut.exe type: vr -'506470': +"506470": installDir: QuipAnomaly launch: - config: @@ -244977,7 +240677,7 @@ oslist: macos executable: game.app type: none -'506480': +"506480": installDir: Archmage Rises launch: - config: @@ -244988,12 +240688,12 @@ oslist: macos executable: ArchmageRises.app type: default -'50650': +"50650": installDir: Darksiders 2 launch: - description: Retail Exe executable: Darksiders2.exe -'506500': +"506500": installDir: Party Panic launch: - config: @@ -245002,19 +240702,19 @@ type: default - config: oslist: macos - executable: PartyPanic.app\\Contents\\MacOS\\PartyPanic + executable: "PartyPanic.app\\\\Contents\\\\MacOS\\\\PartyPanic" type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: PartyPanic.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: PartyPanic.x86_64 type: default -'506510': +"506510": installDir: Shadows of Adam launch: - config: @@ -245023,22 +240723,22 @@ type: default - config: oslist: macos - executable: Shadows of Adam.app\\Contents\\MacOS\\Shadows of Adam + executable: "Shadows of Adam.app\\\\Contents\\\\MacOS\\\\Shadows of Adam" type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: shadowsofadam type: default -'506540': +"506540": installDir: LMS launch: - - arguments: '-steam -lms' + - arguments: "-steam -lms" config: oslist: windows executable: Launcher.exe type: none -'506550': +"506550": installDir: RollerForce launch: - config: @@ -245046,7 +240746,7 @@ description: Launch SteamVR executable: RollerForce.exe type: vr -'506560': +"506560": installDir: A Divided Light launch: - config: @@ -245057,14 +240757,14 @@ oslist: windows executable: A Divided Light.exe type: default -'506570': +"506570": installDir: Going Up launch: - config: oslist: windows executable: GoingUp.exe type: vr -'506590': +"506590": installDir: SkyValleyGame launch: - config: @@ -245073,38 +240773,38 @@ type: default - config: oslist: macos - executable: Sky Valley.app\\Contents\\MacOS\\Sky Valley + executable: "Sky Valley.app\\\\Contents\\\\MacOS\\\\Sky Valley" type: default -'506610': - installDir: Five Nights at Freddy's Sister Location +"506610": + installDir: "Five Nights at Freddy's Sister Location" launch: - config: oslist: windows executable: SisterLocation.exe type: default -'506630': +"506630": installDir: Unfazed launch: - config: oslist: windows executable: Unfazed.exe type: none -'506640': {} -'506660': +"506640": {} +"506660": installDir: The West launch: - config: oslist: windows executable: TheWest.exe type: none -'506670': +"506670": installDir: ORBITAL launch: - config: oslist: windows executable: Orbital.exe type: none -'506700': +"506700": installDir: Levantera Tale of The Winds launch: - config: @@ -245115,7 +240815,7 @@ oslist: linux executable: Levantera type: default -'506730': +"506730": installDir: Dinosaur Forest launch: - config: @@ -245130,28 +240830,28 @@ oslist: linux executable: DinosaurForest.x86 type: none -'506760': - installDir: Twisty's Asylum Escapades +"506760": + installDir: "Twisty's Asylum Escapades" launch: - config: oslist: windows executable: Twistys Asylum Escapades.exe type: default -'506830': +"506830": installDir: Goo Saga - HD Edition launch: - config: oslist: windows executable: goosaga.exe type: none -'506840': +"506840": installDir: The Dungeons of Castle Madness launch: - config: oslist: windows executable: DungeonsOfCastleMadness229.exe type: default -'506870': +"506870": installDir: Unexplored launch: - config: @@ -245164,9 +240864,9 @@ type: default - config: oslist: linux - executable: ./Unexplored + executable: "./Unexplored" type: default -'506900': +"506900": installDir: Downward launch: - config: @@ -245177,19 +240877,19 @@ oslist: linux executable: Downward/Binaries/Linux/Downward type: default -'506930': +"506930": installDir: CoLab launch: - executable: CoLabGear.exe type: vr -'506960': +"506960": installDir: PongChampionVR launch: - config: oslist: windows executable: PongChampionVR.exe type: vr -'506980': +"506980": installDir: DroneRTW launch: - config: @@ -245204,14 +240904,14 @@ oslist: linux executable: DroneRTW_Linux.x86 type: default -'507010': +"507010": installDir: Mr.President! launch: - config: oslist: windows executable: Mr.Prez.exe type: default -'507030': +"507030": installDir: Bicyclism EP launch: - config: @@ -245226,30 +240926,30 @@ oslist: linux executable: bicyclism.x86_64 type: default -'507050': +"507050": installDir: DOGOS launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Play Dogos executable: dogos.exe type: default -'507060': +"507060": installDir: Sceal launch: - config: oslist: windows executable: Sceal.exe type: default -'507080': +"507080": installDir: Baseball Mogul Diamond launch: - config: oslist: windows executable: BB-Diamond.exe type: default -'507120': +"507120": installDir: The Superfluous launch: - config: @@ -245264,47 +240964,47 @@ oslist: linux executable: TheSuperfluous type: none -'507140': - installDir: Tesla's Tower The Wardenclyffe Mystery +"507140": + installDir: "Tesla's Tower The Wardenclyffe Mystery" launch: - executable: TeslasTower_TheWardenclyffeMystery.exe type: none -'507210': +"507210": installDir: The Wire launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: The Wire.exe type: vr -'507270': +"507270": installDir: Lily´s Epic Quest launch: - config: oslist: windows - executable: Lily's Epic Quest.exe + executable: "Lily's Epic Quest.exe" type: none - config: oslist: macos - executable: Lily's Epic Quest_Libredia.app\\Contents\\MacOS\\Lily's Epic Quest_Libredia + executable: "Lily's Epic Quest_Libredia.app\\\\Contents\\\\MacOS\\\\Lily's Epic Quest_Libredia" type: none - workingdir: Lily's Epic Quest_Libredia.app\\Contents\\MacOS -'507300': + workingdir: "Lily's Epic Quest_Libredia.app\\\\Contents\\\\MacOS" +"507300": installDir: Club Manager 2017 launch: - arguments: Tor executable: Start.exe type: default -'507340': +"507340": installDir: Strike Squadron Caracara launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: nw.exe type: default -'507360': - installDir: The Wizard's Lair +"507360": + installDir: "The Wizard's Lair" launch: - config: oslist: windows @@ -245314,7 +241014,7 @@ oslist: linux executable: twl type: default -'507380': +"507380": installDir: Black Sand Drift launch: - config: @@ -245322,7 +241022,7 @@ description: Launch executable: BSD.exe type: none -'507390': +"507390": installDir: Gone In November launch: - config: @@ -245330,7 +241030,7 @@ description: Launch executable: Launcher.exe type: none -'507400': +"507400": installDir: Vindictive Drive launch: - config: @@ -245338,14 +241038,14 @@ description: Launch executable: Game.exe type: default -'507440': +"507440": installDir: Island Simulator 2016 launch: - config: oslist: windows executable: Island Simulator 2016.exe type: none -'507490': +"507490": installDir: Ashes of the Singularity Escalation launch: - description: Stardock Launcher (QA) @@ -245353,22 +241053,22 @@ type: default - config: betakey: vulkan - description: 'Ashes: Escalation w/Vulkan' + description: "Ashes: Escalation w/Vulkan" executable: AshesEscalation_Vulkan.exe type: option1 -'507520': +"507520": installDir: Zzzz-Zzzz-Zzzz launch: - config: oslist: windows executable: Zzzz-Zzzz-Zzzz.exe type: default -'50800': +"50800": installDir: Im not Alone launch: - executable: INA.exe -'508140': {} -'508170': +"508140": {} +"508170": installDir: BlackSmithHIT launch: - config: @@ -245383,7 +241083,7 @@ oslist: linux executable: BlacksmithHIT.x86 type: none -'508180': +"508180": installDir: Fly and Destroy launch: - config: @@ -245395,16 +241095,16 @@ executable: FlyAndDestroy.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: FlyAndDestroy.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: FlyAndDestroy.x86_64 type: default -'508190': +"508190": installDir: Dragon Knight launch: - config: @@ -245415,7 +241115,7 @@ oslist: macos executable: game.app type: default -'50820': +"50820": installDir: Max and the Magic Marker launch: - config: @@ -245424,21 +241124,21 @@ - config: oslist: macos executable: Max.app -'508200': +"508200": installDir: Bacon Tales - Between Pigs and Wolves launch: - config: oslist: windows executable: BaconTales-4.0.7.exe type: none -'508220': +"508220": installDir: Office Freakout launch: - config: oslist: windows executable: OfficeFreakout.exe type: default -'508230': +"508230": installDir: Anime Studio Simulator launch: - config: @@ -245456,21 +241156,21 @@ description: Launch executable: Anime_Studio_Sim.sh type: default -'508250': +"508250": installDir: Aussie Sports VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Default Mode executable: AussieSportsVR.exe type: vr - config: - osarch: '64' + osarch: "64" oslist: windows executable: AussieSportsVR.exe type: othervr -'508260': +"508260": installDir: Treasure of a blizzard launch: - config: @@ -245485,33 +241185,33 @@ oslist: linux executable: Treasure_of_a_blizzard.sh type: default -'508290': +"508290": installDir: $1 Ride launch: - executable: ride.exe type: none -'508300': +"508300": installDir: Dark Ages launch: - config: oslist: windows executable: Game.exe type: default -'508330': +"508330": installDir: GALER Plague of Heroes launch: - config: oslist: windows executable: RPG_RT.exe type: none -'508350': +"508350": installDir: DraconicOrderVR launch: - config: oslist: windows executable: DraconicOrder.exe type: vr -'508390': +"508390": installDir: Scrap Garden - The Day Before launch: - config: @@ -245525,29 +241225,29 @@ executable: scrap-garden-tdb.app type: none - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: scrap-garden-tdb.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: scrap-garden-tdb.x86_64 type: none -'508410': +"508410": installDir: SKIPCHASER launch: - config: oslist: windows - executable: Contents\\Resources\\Corona\\Skipchaser.exe + executable: "Contents\\\\Resources\\\\Corona\\\\Skipchaser.exe" type: default - config: oslist: macos executable: Contents/MacOS/Skipchaser type: default -'508440': +"508440": installDir: Totally Accurate Battle Simulator launch: - config: @@ -245558,36 +241258,36 @@ oslist: macos executable: TotallyAccurateBattleSimulator.app/Contents/MacOS/Totally Accurate Battle Simulator type: none -'508450': +"508450": installDir: NASCAR Heat Evolution launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: NASCARHeatEvolution.exe type: default - - arguments: '-MGI-reset-graphics-settings' + - arguments: "-MGI-reset-graphics-settings" config: - osarch: '64' + osarch: "64" oslist: windows description: Reset Graphic Settings executable: NASCARHeatEvolution.exe type: none - config: - osarch: '64' + osarch: "64" oslist: windows description: Configure Controllers - executable: ControllerConfig\\ControllerConfig.exe + executable: "ControllerConfig\\\\ControllerConfig.exe" type: none -'508460': {} -'508520': +"508460": {} +"508520": installDir: MiniBotz launch: - config: oslist: windows executable: MiniBotz.exe type: default -'508530': +"508530": installDir: HackyZack launch: - config: @@ -245604,14 +241304,14 @@ oslist: macos executable: HackyZack.app type: default -'508540': +"508540": installDir: Haeven launch: - config: oslist: windows - executable: Haven\\Game.exe + executable: "Haven\\\\Game.exe" type: default -'508550': +"508550": installDir: Sneak Thief launch: - config: @@ -245619,50 +241319,48 @@ executable: SneakThief01.exe type: default - description: Sneak Thief Legacy - description_loc: - english: Sneak Thief Legacy executable: SneakThiefLegacy/SneakThief01.exe type: option1 -'508580': +"508580": installDir: CasinoXR launch: - config: oslist: windows executable: CasinoXR.exe type: vr -'508590': +"508590": installDir: SCP 087.Re launch: - executable: scp087.exe type: none -'508600': +"508600": installDir: ROD Revolt Of Defense launch: - config: oslist: windows executable: ROD.exe type: default -'508610': +"508610": installDir: PROJECT XINATRA launch: - config: oslist: windows executable: Xinatra.exe type: default -'508620': {} -'508630': +"508620": {} +"508630": installDir: soldiers lost forever launch: - config: oslist: windows executable: soldiers lost forever.exe type: default -'508650': +"508650": installDir: Signal Decay launch: - config: oslist: macos - executable: Signal Decay.app\\Contents\\MacOS\\Signal Decay + executable: "Signal Decay.app\\\\Contents\\\\MacOS\\\\Signal Decay" type: default - config: oslist: windows @@ -245671,46 +241369,46 @@ nameLocalized: schinese: 拯救世界特别小队 tchinese: 拯救世界特別小隊 -'508660': +"508660": installDir: Triple X Tycoon launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: XTycoon.exe type: none -'508670': {} -'508680': +"508670": {} +"508680": installDir: DominoVR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: DominoVR.exe type: vr -'508690': +"508690": installDir: ANIMVR launch: - config: oslist: windows executable: ANIMVR.exe type: vr -'508710': +"508710": installDir: Project Lounge launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: ProjectLounge.exe type: none -'508730': +"508730": installDir: Painted Legend launch: - config: oslist: windows executable: PaintedLegend.exe type: none -'508740': +"508740": installDir: Wheels of Aurelia launch: - config: @@ -245725,7 +241423,7 @@ oslist: macos executable: woa.app type: default -'508760': +"508760": installDir: Ball of Wonder launch: - config: @@ -245734,13 +241432,13 @@ type: default - config: oslist: macos - executable: BallOfWonder.app\\Contents\\MacOS\\Mac_Runner + executable: "BallOfWonder.app\\\\Contents\\\\MacOS\\\\Mac_Runner" type: default - config: oslist: linux executable: run.sh type: default -'508790': +"508790": installDir: Flat Heroes launch: - config: @@ -245752,12 +241450,12 @@ executable: FlatHeroes.app type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: FlatHeroes.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: FlatHeroes.x86_64 type: none @@ -245766,36 +241464,36 @@ koreana: 플랫 히어로즈 schinese: 平面英雄 tchinese: 平面英雄 -'508820': - installDir: Won't You Be My Laser +"508820": + installDir: "Won't You Be My Laser" launch: - config: oslist: windows executable: Fireline.exe type: default -'508840': +"508840": installDir: Broken Armor launch: - config: oslist: windows executable: Broken Armor.exe type: default -'508890': +"508890": installDir: Meteor Crush VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: MeteorCrushVR.exe type: vr -'508900': +"508900": installDir: Zup! X launch: - config: oslist: windows executable: Zup! X.exe type: default -'508910': +"508910": installDir: DeusExMachina launch: - config: @@ -245807,54 +241505,54 @@ executable: nw type: default - config: - osarch: '64' + osarch: "64" oslist: macos executable: deusexmachina.app type: default -'508930': +"508930": installDir: Mini Z Racers Turbo launch: - executable: MiniZ_Racers_Turbo_1_0_0b.exe type: default -'508940': +"508940": installDir: Escape Lizards launch: - - arguments: .\\ + - arguments: ".\\\\" config: oslist: windows executable: EscapeLizards.exe type: default -'508950': +"508950": installDir: Beerman launch: - config: oslist: windows executable: Beerman.exe type: default -'508960': {} -'508980': +"508960": {} +"508980": installDir: Crashday launch: - config: oslist: windows executable: crashday.exe type: default -'508990': +"508990": installDir: Handsome Mr. Frog launch: - config: oslist: windows executable: HandsomeMrFrog.exe type: default -'509000': {} -'509070': +"509000": {} +"509070": installDir: Super VR Trainer launch: - config: oslist: windows executable: supervrtrainer.exe type: vr -'50910': +"50910": installDir: PF and the Molten Mystery launch: - config: @@ -245863,23 +241561,23 @@ - config: oslist: macos executable: Professor Fizzwizzle and the Molten Mystery.app -'509110': +"509110": installDir: Spikit launch: - config: oslist: windows executable: Spikit.exe type: default -'509130': +"509130": installDir: RC-AirSim - RC Model Airplane Flight Simulator launch: - config: oslist: windows executable: RC-AirSimSteam.exe type: default -'509140': {} -'509160': - installDir: Gebub's Adventure +"509140": {} +"509160": + installDir: "Gebub's Adventure" launch: - config: oslist: windows @@ -245887,22 +241585,22 @@ type: default - config: oslist: macos - executable: gebub project.app\\Gebub's Adventure.app + executable: "gebub project.app\\\\Gebub's Adventure.app" type: none -'509170': +"509170": installDir: VRNinja launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: VRNinja/Binaries/Win64/VRNinja-Win64-Shipping.exe type: vr - config: - osarch: '64' + osarch: "64" oslist: windows executable: VRNinja/Binaries/Win64/VRNinja-Win64-Shipping.exe type: othervr -'509190': +"509190": installDir: Rollout launch: - config: @@ -245913,11 +241611,11 @@ oslist: macos executable: Rollout.app type: default -'50920': +"50920": installDir: Hidden Expedition Amazon launch: - executable: Hidden Expedition Amazon.exe -'509210': +"509210": installDir: Clockwork launch: - config: @@ -245928,14 +241626,14 @@ oslist: macos executable: Clockwork.app type: default -'509220': +"509220": installDir: Save Jesus launch: - config: oslist: windows executable: Save Jesus.exe type: none -'509230': +"509230": installDir: Erusal launch: - config: @@ -245944,59 +241642,59 @@ type: default - config: oslist: macos - executable: Erusal_2016-07-07_Data.app\\Contents\\MacOS\\Erusal_2016-07-07_Data + executable: "Erusal_2016-07-07_Data.app\\\\Contents\\\\MacOS\\\\Erusal_2016-07-07_Data" type: default -'509240': {} -'509250': +"509240": {} +"509250": installDir: To The Top launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ToTheTop.exe type: vr -'509260': +"509260": installDir: nr launch: - config: oslist: windows executable: NRDv0.0.02.exe type: default -'509290': +"509290": installDir: One Night Two Crazies launch: - config: oslist: windows executable: OneNightTwoCrazies.exe type: default -'50930': +"50930": installDir: Hidden Expedition Everest launch: - executable: Hidden Expedition Everest.exe -'509310': +"509310": installDir: ThrounnelVR launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: .\\ThrounnelVR\\ThrounnelVR.exe + executable: ".\\\\ThrounnelVR\\\\ThrounnelVR.exe" type: vr -'509340': +"509340": installDir: Abandoned Hospital VR launch: - config: oslist: windows executable: HorrorHospital.exe type: othervr -'509360': +"509360": installDir: TRESPASS - Episode 1 launch: - config: oslist: windows executable: Trespass.exe type: vr -'509380': {} -'509390': +"509380": {} +"509390": installDir: GalaxIverse launch: - config: @@ -246004,18 +241702,18 @@ description: Launch executable: GalaxIverse.exe type: default -'50940': +"50940": installDir: Hidden Expedition Titanic launch: - executable: Hidden Expedition Titanic.exe -'509400': +"509400": installDir: Lost in Harmony launch: - config: oslist: windows executable: LostInHarmony.exe type: default -'509420': +"509420": installDir: RidingClubChampionships launch: - config: @@ -246026,44 +241724,44 @@ oslist: macos executable: rcc.app type: default - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" config: oslist: windows executable: rcc.exe type: config -'509440': +"509440": installDir: God Simulator launch: - config: oslist: windows executable: GodSimulator.exe type: default -'509450': +"509450": installDir: Colony launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: Colony.exe type: default -'50950': +"50950": installDir: Mahjong Towers Eternity launch: - executable: Mahjong Towers Eternity.exe -'509530': +"509530": installDir: GodsandNemesis launch: - executable: GodsandNemesis.exe type: default -'509540': +"509540": installDir: SVRVIVE launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SVRVIVE The Deus Helix.exe type: vr -'509560': +"509560": installDir: HeroesOfDire launch: - config: @@ -246071,12 +241769,12 @@ executable: HeroesOfDire.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: HeroesOfDire.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: HeroesOfDire.x86_64 type: default @@ -246084,16 +241782,16 @@ oslist: macos executable: heroesofdire-osx-steam.app type: default -'509570': +"509570": installDir: In Celebration of Violence launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: InCelebrationOfViolence.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows description: In Celebration of Violence executable: InCelebrationOfViolence64.exe @@ -246104,16 +241802,16 @@ type: default - config: oslist: macos - executable: InCelebrationOfViolence.app\\Contents\\MacOS\\InCelebrationOfViolence + executable: "InCelebrationOfViolence.app\\\\Contents\\\\MacOS\\\\InCelebrationOfViolence" type: default - config: betakey: beta - osarch: '64' + osarch: "64" oslist: windows description: Beta executable: InCelebrationOfViolence_Beta.exe type: default -'509580': +"509580": installDir: The Lord of the Rings - LCG launch: - config: @@ -246124,11 +241822,11 @@ oslist: macos executable: Lord of the Rings - LCG.app/Contents/MacOS/The Lord of the Rings - Adventure Card Game type: default -'50960': +"50960": installDir: Mystery Case Files Huntsville launch: - executable: Huntsville.exe -'509600': +"509600": installDir: BattleTime launch: - config: @@ -246140,23 +241838,23 @@ executable: BattleTime.app type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: BattleTime.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: BattleTime.x86_64 type: none -'509610': +"509610": installDir: Beachhead 2000 launch: - config: oslist: windows executable: BH2000.exe type: default -'509620': +"509620": installDir: Last Stitch Goodnight launch: - config: @@ -246171,35 +241869,35 @@ oslist: linux executable: LastStitchGoodnightLin1B3.x86 type: default -'50970': +"50970": installDir: Mystery Case Files Madame Fate launch: - executable: Madame Fate.exe -'509770': +"509770": installDir: PostCollapse launch: - config: oslist: windows executable: postcollapse.exe type: default -'509780': +"509780": installDir: Fire Arrow Plus launch: - config: oslist: windows description: Fire Arrow - executable: FA1\\Fire_Arrow.exe + executable: "FA1\\\\Fire_Arrow.exe" type: option1 - config: oslist: windows description: Fire Arrow X - executable: FAX\\FAX.exe + executable: "FAX\\\\FAX.exe" type: default -'50980': +"50980": installDir: Mystery Case Files PRime Suspects launch: - executable: PrimeSuspects.exe -'509800': +"509800": installDir: The Last Weekend launch: - config: @@ -246214,7 +241912,7 @@ oslist: linux executable: The_Last_Weekend.sh type: default -'509820': +"509820": installDir: Super Grav launch: - config: @@ -246223,20 +241921,20 @@ type: default - config: oslist: macos - executable: Super Grav.app\\Contents\\MacOS\\Super Grav + executable: "Super Grav.app\\\\Contents\\\\MacOS\\\\Super Grav" type: default - config: oslist: linux executable: Super Grav.x86 type: default -'509830': +"509830": installDir: Evil Robots From N1M launch: - config: oslist: windows executable: Evil Robots From Nim.exe type: default -'509840': +"509840": installDir: El Ninja launch: - description: El Ninja (64-Bit) @@ -246244,39 +241942,39 @@ type: default - config: oslist: windows - ownsdlc: '532430' + ownsdlc: "532430" description: El Ninja 2 executable: nw.exe type: option1 workingdir: El Ninja 2 - config: oslist: windows - ownsdlc: '541430' - executable: creator\\nw.exe + ownsdlc: "541430" + executable: "creator\\\\nw.exe" type: editor workingdir: creator - config: oslist: windows - ownsdlc: '541430' + ownsdlc: "541430" description: Launch Steam Workshop Publisher - executable: creator\\SteamWorkshop.exe + executable: "creator\\\\SteamWorkshop.exe" type: none -'509850': +"509850": installDir: Bumper launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: game.exe type: default -'509860': +"509860": installDir: Baezult launch: - config: oslist: windows executable: Baezult.exe type: default -'509880': +"509880": installDir: the_end_oo launch: - config: @@ -246289,12 +241987,12 @@ description: in 800x600 Window executable: the_end_oo.exe type: option1 -'50990': +"50990": installDir: Mystery Case Files Ravenhearst launch: - executable: Ravenhearst.exe type: none -'509910': +"509910": installDir: Night Vigil launch: - config: @@ -246305,7 +242003,7 @@ oslist: macos executable: NightVigilMac type: default -'509920': +"509920": installDir: Doc Apocalypse launch: - config: @@ -246316,45 +242014,43 @@ oslist: windows executable: winsetup.exe type: config -'509930': +"509930": installDir: NightmareZ launch: - config: oslist: windows executable: NightmareZ.exe type: default -'509950': {} -'509960': +"509950": {} +"509960": installDir: Pinga Ponga launch: - config: oslist: windows executable: nw.exe type: default -'509980': +"509980": installDir: BigfootContent launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Bigfoot.exe type: default -'509990': {} -'51000': +"509990": {} +"51000": installDir: Mystery Case Files Return to Ravenhearst launch: - executable: ReturnToRavenhearst.exe -'510000': +"510000": installDir: Xecryst Remains launch: - config: oslist: windows description: Xecryst Remains - description_loc: - english: Xecryst Remains executable: Xecryst Remains.exe type: option1 -'510040': +"510040": installDir: A Matter of Murder launch: - config: @@ -246365,22 +242061,22 @@ oslist: macos executable: A Matter of Murder.app type: none -'510050': +"510050": installDir: You Have 10 Seconds launch: - config: oslist: windows executable: You Have 10 Secondsfinal.exe type: default -'510060': +"510060": installDir: Punch Bomb launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: PunchBomb.exe type: vr -'510070': +"510070": installDir: Shiperoids launch: - config: @@ -246393,20 +242089,20 @@ description: New Shiperoids In HD executable: Shiperoids_HD.exe type: option1 -'510080': +"510080": installDir: Worldy Cup launch: - executable: worldyCup.exe type: default - - arguments: '-snvrmode steamvr' + - arguments: "-snvrmode steamvr" description: in VR for HTC Vive and DK1 and other headsets executable: worldyCup.exe type: vr - - arguments: '-snvrmode oculus' + - arguments: "-snvrmode oculus" description: in VR for Oculus Rift DK 2 and CV only; not DK1 executable: worldyCup.exe type: othervr -'51010': +"51010": installDir: My Tribe launch: - config: @@ -246415,8 +242111,8 @@ - config: oslist: macos executable: My Tribe.app -'510110': - installDir: New Yankee in King Arthur's Court 2 +"510110": + installDir: "New Yankee in King Arthur's Court 2" launch: - config: oslist: windows @@ -246428,33 +242124,33 @@ description: Launch executable: New Yankee 2.app type: default -'510130': +"510130": installDir: PowerLink launch: - config: oslist: windows executable: PowerLink.exe type: vr -'510180': +"510180": installDir: NDE Rescue launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: nde_rescue64.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: nde_rescue32.exe type: default - config: - osarch: '64' + osarch: "64" oslist: macos executable: nde_rescue-osx.app/Contents/MacOS/nde_rescue-osx type: default -'510190': {} -'51020': +"510190": {} +"51020": installDir: Unwell Mel launch: - config: @@ -246463,21 +242159,21 @@ - config: oslist: macos executable: UnwellMel.app -'510220': {} -'510230': {} -'510240': +"510220": {} +"510230": {} +"510240": installDir: forma8 launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: forma8.exe type: default - config: oslist: macos - executable: forma8.app\\Contents\\MacOS\\forma8 + executable: "forma8.app\\\\Contents\\\\MacOS\\\\forma8" type: default -'510250': +"510250": installDir: Super Destronaut launch: - config: @@ -246492,22 +242188,22 @@ oslist: macos executable: super_destronaut.app type: none -'510280': +"510280": installDir: Orange Adventure launch: - config: oslist: windows executable: OrangeAdventure.exe type: none -'510290': +"510290": installDir: DEXED launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: DEXED.exe type: vr -'51030': +"51030": installDir: Atlantis Sky Patrol launch: - config: @@ -246516,30 +242212,30 @@ - config: oslist: macos executable: Atlantis Sky Patrol.app -'510320': +"510320": installDir: Conflict of Heroes Awakening the Bear launch: - config: oslist: windows executable: autorun.exe type: default -'510330': +"510330": installDir: Shotgun Raiders launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: 32 Bit Version - executable: win32\\ShotgunRaiders.exe + executable: "win32\\\\ShotgunRaiders.exe" type: default - config: - osarch: '64' + osarch: "64" oslist: windows description: 64 Bit Version - executable: win64\\ShotgunRaiders.exe + executable: "win64\\\\ShotgunRaiders.exe" type: default -'510340': {} -'510360': +"510340": {} +"510360": installDir: Recession launch: - config: @@ -246551,26 +242247,26 @@ oslist: macos executable: Recession.app type: default - - arguments: '-multidisplay' + - arguments: "-multidisplay" config: oslist: windows description: Multi Monitor executable: Recession.exe type: option2 - - arguments: '-force-d3d9' + - arguments: "-force-d3d9" config: oslist: windows description: DirectX 9 executable: Recession.exe type: option1 -'510370': +"510370": installDir: Dragon Souls launch: - config: oslist: windows executable: DragonSouls.exe type: default -'510380': +"510380": installDir: GoVenture MICRO BUSINESS launch: - config: @@ -246581,21 +242277,21 @@ oslist: macos executable: PLAY.app type: default -'510390': +"510390": installDir: Unknown Fate launch: - executable: UnknownFate.exe type: default - executable: UnkownFateVR.exe type: vr -'510410': +"510410": installDir: Cogs and Cowboys launch: - config: oslist: windows executable: CogsAndCowboys.exe type: vr -'510420': +"510420": installDir: The Hex launch: - config: @@ -246610,15 +242306,15 @@ oslist: linux executable: TheHex.x86 type: default -'510430': +"510430": installDir: Stacks On Stacks (On Stacks) launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SoSoS.exe type: default -'510490': +"510490": installDir: The Fall Part 2 Unbound launch: - config: @@ -246633,7 +242329,7 @@ oslist: linux executable: TheFallPart2Unbound.x86 type: default -'510500': +"510500": installDir: Executive Assault 2 launch: - config: @@ -246642,17 +242338,17 @@ type: default - config: oslist: macos - executable: ExecutiveAssault2.app\\Contents\\MacOS\\Executive Assault 2 + executable: "ExecutiveAssault2.app\\\\Contents\\\\MacOS\\\\Executive Assault 2" type: default -'510510': +"510510": installDir: WWE2K17 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: WWE2K17_x64.exe type: none -'510520': +"510520": installDir: Little Red Lie launch: - config: @@ -246663,20 +242359,20 @@ oslist: macos executable: OSX.app type: none -'510540': +"510540": installDir: Long Gone Days launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows executable: Long Gone Days.exe type: default - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: macos executable: Long Gone Days.app type: default -'510550': +"510550": installDir: Congo Merc launch: - config: @@ -246687,47 +242383,47 @@ oslist: macos executable: CongoMerc.app type: none -'510570': +"510570": installDir: CURSE launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Curse.exe type: default - config: - osarch: '64' + osarch: "64" oslist: macos - executable: Curse.app\\Contents\\MacOS\\Curse + executable: "Curse.app\\\\Contents\\\\MacOS\\\\Curse" type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Curse.x86_64 type: default -'510590': +"510590": installDir: D launch: - - arguments: '-conf dosbox_d.conf -conf dosbox_d_launch_windows.conf -noconsole' + - arguments: "-conf dosbox_d.conf -conf dosbox_d_launch_windows.conf -noconsole" config: oslist: windows - executable: dosbox_windows\\dosbox.exe + executable: "dosbox_windows\\\\dosbox.exe" type: default - workingdir: dosbox_windows\\ - - arguments: '-conf dosbox_d.conf -conf dosbox_d_launch_windows.conf -noconsole' + workingdir: "dosbox_windows\\\\" + - arguments: "-conf dosbox_d.conf -conf dosbox_d_launch_windows.conf -noconsole" config: oslist: windows - description: 'Play D: The Game in DOSBox Daum' - executable: dosbox_windows\\daum\\dosbox.exe + description: "Play D: The Game in DOSBox Daum" + executable: "dosbox_windows\\\\daum\\\\dosbox.exe" type: none - workingdir: dosbox_windows\\daum\\ - - arguments: '-conf dosbox_d.conf -conf dosbox_d_config_windows.conf -noconsole' + workingdir: "dosbox_windows\\\\daum\\\\" + - arguments: "-conf dosbox_d.conf -conf dosbox_d_config_windows.conf -noconsole" config: oslist: windows - description: 'D: The Game - Configuration' - executable: dosbox_windows\\dosbox.exe + description: "D: The Game - Configuration" + executable: "dosbox_windows\\\\dosbox.exe" type: config - workingdir: dosbox_windows\\ + workingdir: "dosbox_windows\\\\" - config: oslist: macos executable: D - The Game.app @@ -246739,24 +242435,24 @@ workingdir: dosbox_linux/ - config: oslist: linux - description: 'Play D: The Game in DOSbox Daum' + description: "Play D: The Game in DOSbox Daum" executable: dosbox_linux/daum/launch_d_game_daum.sh type: none workingdir: dosbox_linux/daum/ - config: oslist: linux - description: 'D: The Game - Configuration' + description: "D: The Game - Configuration" executable: dosbox_linux/launch_d_config.sh type: none workingdir: dosbox_linux/ -'51060': +"51060": installDir: Drawn The Painted Tower launch: - config: oslist: windows executable: Drawn.exe type: none -'510620': +"510620": installDir: THOTH launch: - config: @@ -246767,7 +242463,7 @@ oslist: macos executable: THOTH.app type: none -'510630': +"510630": installDir: Soccer Manager 2017 launch: - config: @@ -246778,7 +242474,7 @@ oslist: macos executable: Soccer Manager 2017.app type: none -'510650': +"510650": installDir: Eventide 2 The Sorcerers Mirror launch: - config: @@ -246787,13 +242483,13 @@ executable: Slavic2.exe type: none - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: Slavic2_i386 type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Slavic2_amd64 @@ -246803,28 +242499,28 @@ description: Launch executable: mac_steam.app/Contents/MacOS/mac_steam type: none -'510660': +"510660": installDir: Big Bang Empire launch: - config: oslist: windows executable: Big Bang Empire.exe type: default -'510680': +"510680": installDir: Re Angel launch: - config: oslist: windows executable: reangel.exe type: default -'510700': +"510700": installDir: Armor Clash VR launch: - config: oslist: windows executable: ArmorClashVR.exe type: vr -'510710': +"510710": installDir: bloxiqVR launch: - config: @@ -246837,14 +242533,14 @@ description: Bloxiq executable: Bloxiq.exe type: option2 -'510730': +"510730": installDir: Grim Seventh launch: - config: oslist: windows executable: GrimSeventh.exe type: default -'510740': +"510740": installDir: Konrad the Kitten - a virtual but real cat launch: - config: @@ -246852,7 +242548,7 @@ description: Start Konrad the Kitten executable: virtu-real-cat.exe type: vr -'510750': +"510750": installDir: Driftwood The Visual Novel launch: - config: @@ -246867,31 +242563,31 @@ oslist: linux executable: Driftwood.sh type: default -'510780': +"510780": installDir: SkyBoats launch: - config: oslist: windows executable: SkyBoats.exe type: none - - arguments: '-force-opengl' + - arguments: "-force-opengl" config: oslist: macos - executable: skyboats.app\\Contents\\MacOS\\skyboats + executable: "skyboats.app\\\\Contents\\\\MacOS\\\\skyboats" type: none - - arguments: '-force-opengl' + - arguments: "-force-opengl" config: - osarch: '64' + osarch: "64" oslist: linux executable: skyboats.x86_64 type: none - - arguments: '-force-opengl' + - arguments: "-force-opengl" config: - osarch: '32' + osarch: "32" oslist: linux executable: skyboats.x86 type: none -'510790': +"510790": installDir: The Sun Will Rise launch: - config: @@ -246900,16 +242596,16 @@ type: none - config: oslist: macos - executable: Game.app\\Contents\\MacOS\\nwjs + executable: "Game.app\\\\Contents\\\\MacOS\\\\nwjs" type: none -'510830': +"510830": installDir: Citadel 1986 launch: - config: oslist: windows executable: Citadel1986.exe type: default -'510840': +"510840": installDir: Evolvation launch: - config: @@ -246918,50 +242614,50 @@ type: default - config: oslist: linux - executable: Evolvation\\Binaries\\Linux\\Evolvation-Linux-Shipping + executable: "Evolvation\\\\Binaries\\\\Linux\\\\Evolvation-Linux-Shipping" type: default -'510850': +"510850": installDir: Mars 2030 launch: - executable: Mars2030.exe type: vr - executable: Mars2030.exe type: othervr - - arguments: '-nohmd' + - arguments: "-nohmd" executable: Mars2030.exe type: default -'510910': +"510910": installDir: Temple of the Apsara launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Temple_of_the_Apsara.exe type: vr -'510930': +"510930": installDir: Thirst launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Thirst.exe type: vr -'510960': +"510960": installDir: Puzzling Rooms VR launch: - config: oslist: windows executable: PuzzlingRoomsVR.exe type: vr -'510990': +"510990": installDir: LooWarVR launch: - - arguments: '-windowed' + - arguments: "-windowed" config: oslist: windows executable: LooWarVR.exe type: vr -'51100': +"51100": installDir: TacticalIntervention launch: - config: @@ -246969,21 +242665,21 @@ description: Launch executable: bin/tacint.exe type: default - workingdir: . + workingdir: "." - config: oslist: macos description: Launch executable: tacint_osx type: default - workingdir: . + workingdir: "." - config: betakey: testbed oslist: windows description: Open Map Kit Launcher executable: bin/TacintMapkitLauncher.exe type: editor - workingdir: . -'511010': + workingdir: "." +"511010": installDir: TAIKER launch: - config: @@ -246992,34 +242688,34 @@ type: default - config: oslist: macos - executable: Contents\\MacOS\\taiker_mac + executable: "Contents\\\\MacOS\\\\taiker_mac" type: default - config: oslist: linux executable: taiker.x86 type: default -'511070': +"511070": installDir: ManicMiners launch: - config: oslist: windows executable: ManicMiners.exe type: default -'511090': +"511090": installDir: The Shape Of Heart launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TheShapeOfHeart.exe type: default - config: - osarch: '64' + osarch: "64" oslist: macos executable: TheShapeOfHeart.app type: none -'511100': {} -'511110': +"511100": {} +"511110": installDir: DodgeBall Blitz launch: - config: @@ -247027,14 +242723,14 @@ description: Launch executable: 0.3.exe type: none -'511120': +"511120": installDir: ikenie launch: - config: oslist: windows executable: Game.exe type: default -'511140': +"511140": installDir: New York Mysteries The Lantern of Souls launch: - config: @@ -247045,7 +242741,7 @@ oslist: macos executable: New York Mysteries The Lantern of Souls CE.app type: none -'511160': +"511160": installDir: Cubway launch: - config: @@ -247057,16 +242753,16 @@ executable: Cubway.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Cubway.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Cubway.x86 type: default -'511190': +"511190": installDir: Graveyard Shift launch: - config: @@ -247078,23 +242774,23 @@ executable: Graveyard Shift.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: GraveyardShift.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: GraveyardShift.x86 type: default -'511230': +"511230": installDir: The Last launch: - config: oslist: windows executable: TheLast.exe type: default -'511250': +"511250": installDir: Cloudbase Prime launch: - config: @@ -247109,99 +242805,87 @@ oslist: linux executable: Cloudbase Prime.x86 type: default -'511270': +"511270": installDir: Bounce Paradise launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch - description_loc: - english: Launch executable: BounceParadise.exe type: none - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch - description_loc: - english: Launch executable: BounceParadise-32.exe type: none - config: oslist: macos description: Launch - description_loc: - english: Launch executable: BounceParadise.app - config: oslist: linux description: Launch - description_loc: - english: Launch executable: BounceParadise.sh -'511280': +"511280": installDir: Negligee Spring Clean launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch - description_loc: - english: Launch executable: Negligee_Spring_Clean.exe type: none - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch - description_loc: - english: Launch executable: Negligee_Spring_Clean-32.exe type: none -'511320': - installDir: Echoes of the Fey - The Fox's Trail +"511320": + installDir: "Echoes of the Fey - The Fox's Trail" launch: - config: oslist: windows - executable: data/Echoes of the Fey - The Fox's Trail.exe + executable: "data/Echoes of the Fey - The Fox's Trail.exe" type: default -'511330': +"511330": installDir: Farm Life Natures Adventure launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: nw.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: nw.exe type: default -'511340': {} -'511350': +"511340": {} +"511350": installDir: Mr. Massagy launch: - config: oslist: windows executable: Mr Massagy.exe type: default -'511370': +"511370": installDir: Wrath Of The Fire God launch: - config: oslist: windows executable: WrathOfTheFireGod.exe type: vr -'511380': +"511380": installDir: Pozzo Jello Crusade launch: - config: oslist: windows - executable: PozzoJC\\PozzoJelloCrusade.exe + executable: "PozzoJC\\\\PozzoJelloCrusade.exe" type: default -'511390': +"511390": installDir: Base Raid launch: - config: @@ -247216,36 +242900,36 @@ oslist: linux executable: Base_Raid.sh type: default -'511420': +"511420": installDir: AlephNull launch: - config: oslist: windows executable: Alpha 1.12.exe type: vr -'511430': +"511430": installDir: CrossWorlds Escape launch: - - executable: CrossWorldsEscape\\Binaries\\Win64\\CrossWorldsEscape-Win64-Shipping.exe + - executable: "CrossWorldsEscape\\\\Binaries\\\\Win64\\\\CrossWorldsEscape-Win64-Shipping.exe" type: default -'511440': +"511440": installDir: Last Year The Nightmare launch: - - arguments: '-NotInstalled' + - arguments: "-NotInstalled" config: - osarch: '64' + osarch: "64" oslist: windows executable: LastYear.exe type: default -'511460': +"511460": installDir: Unaided 1939 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Unaided.exe type: default -'511470': +"511470": installDir: Glass Masquerade launch: - config: @@ -247254,17 +242938,17 @@ type: default - config: oslist: macos - executable: Glass.app\\Contents\\MacOS\\Glass + executable: "Glass.app\\\\Contents\\\\MacOS\\\\Glass" type: default -'511490': +"511490": installDir: Malavision The Origin launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Malavision_Nepyru.exe type: default -'511500': +"511500": installDir: Nanuleu launch: - config: @@ -247275,38 +242959,38 @@ oslist: macos executable: nanuleu.app type: default -'511540': +"511540": installDir: MoonQuest launch: - - arguments: '--steam' + - arguments: "--steam" config: oslist: windows executable: moonquest.exe type: default -'511560': +"511560": installDir: World of Golf launch: - config: oslist: windows executable: WorldOfGolfv1-2.exe type: vr -'511570': +"511570": installDir: NIGHTSTAR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: NIGHTSTAR.exe type: vr -'511600': +"511600": installDir: Space Jones VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SMRQ/Binaries/Win64/SMRQ-Win64-Shipping.exe type: vr -'511610': +"511610": installDir: Adventure Of Thieves launch: - config: @@ -247322,81 +243006,81 @@ oslist: windows executable: aot.exe type: none -'511630': - installDir: 'MAX, AN AUTISTIC JOURNEY' +"511630": + installDir: "MAX, AN AUTISTIC JOURNEY" launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows - description: '\"Max, an autistic journey\" (original)' + description: "\\\"Max, an autistic journey\\\" (original)" executable: nw.exe type: option1 - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows - description: \"Max's Birthday!\" DLC (if available) - executable: DLC\\DLC.exe + description: "\\\"Max's Birthday!\\\" DLC (if available)" + executable: "DLC\\\\DLC.exe" type: option2 -'511660': +"511660": installDir: Beachhead 2002 launch: - config: oslist: windows executable: BH2002.exe type: default -'511670': +"511670": installDir: Marwin and The Evolution Stone launch: - config: oslist: windows executable: MES.exe type: default -'511680': +"511680": installDir: Fate Extella launch: - - arguments: '-nolauncher' + - arguments: "-nolauncher" config: - osarch: '64' + osarch: "64" oslist: windows description: Fate/EXTELLA executable: game.exe type: option1 - config: - osarch: '64' + osarch: "64" oslist: windows executable: game.exe type: config -'511690': +"511690": installDir: Duck Force launch: - config: oslist: windows executable: Duck Force.exe type: vr -'511700': +"511700": installDir: Ship It launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Ship It.exe type: vr - config: - osarch: '64' + osarch: "64" oslist: windows executable: Ship It.exe type: othervr -'511730': {} -'511740': +"511730": {} +"511740": installDir: GalGun Double Peace launch: - config: oslist: windows description: Launch - executable: Binaries\\Win64\\GG2Game.exe + executable: "Binaries\\\\Win64\\\\GG2Game.exe" type: none - workingdir: Binaries\\Win64\\ -'511750': + workingdir: "Binaries\\\\Win64\\\\" +"511750": installDir: Showdown Adventure launch: - config: @@ -247404,7 +243088,7 @@ description: Launch game executable: nw.exe type: default -'511790': +"511790": installDir: Retro Football Boss launch: - config: @@ -247413,9 +243097,9 @@ type: default - config: oslist: macos - executable: osx_content/Retro Football Boss.app\\Contents\\MacOS\\Retro Football Boss + executable: "osx_content/Retro Football Boss.app\\\\Contents\\\\MacOS\\\\Retro Football Boss" type: default -'511800': +"511800": installDir: ONRAID launch: - config: @@ -247427,16 +243111,16 @@ executable: ONRAID.app/Contents/MacOS/ONRAID type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: ONRAID.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: ONRAID.x86_64 type: default -'511810': +"511810": installDir: CHEXS launch: - config: @@ -247447,7 +243131,7 @@ oslist: macos executable: CHEXS.app/Contents/MacOS/CHEXSX type: default -'511820': +"511820": installDir: Le Havre The Inland Port launch: - config: @@ -247459,27 +243143,27 @@ executable: lhb.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: lhb.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: lhb.x86_64 type: default -'511830': +"511830": installDir: VR Ultimate Paintball launch: - config: oslist: windows executable: VR_UP.exe type: vr -'511920': +"511920": installDir: Reproduction Man launch: - config: - osarch: '64' + osarch: "64" oslist: macos executable: Reproduction Man.app/Contents/MacOS/reproduction_man type: default @@ -247488,11 +243172,11 @@ executable: reproduction_man.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: reproduction_man type: default -'511960': +"511960": installDir: Gravity Shot launch: - config: @@ -247503,21 +243187,21 @@ oslist: macos executable: Gravity Shot.app type: none -'512000': +"512000": installDir: Kite launch: - config: oslist: windows executable: Kite.exe type: default -'512020': +"512020": installDir: Box Maze launch: - config: oslist: windows executable: boxmaze.exe type: default -'512060': +"512060": installDir: Stay Stay DPRK launch: - executable: Stay! Stay! DPRK.exe @@ -247526,14 +243210,14 @@ oslist: macos executable: Stay! Stay! DPRK.app type: default -'512070': +"512070": installDir: Hue Defense launch: - config: oslist: windows executable: hd.exe type: default -'512080': +"512080": installDir: Fancy Skiing VR launch: - config: @@ -247544,45 +243228,45 @@ oslist: windows executable: SkiingCV1.exe type: othervr -'512090': +"512090": installDir: Tank Defense Division launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TankDefenseDivision.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: TankDefenseDivision.exe type: default -'512110': +"512110": installDir: Cosmos Crash VR launch: - config: oslist: windows executable: zuma.exe type: vr -'512120': +"512120": installDir: Nakiti Generations launch: - config: oslist: windows executable: NG.exe type: default -'512150': +"512150": installDir: Swordlord launch: - config: oslist: windows executable: Main.exe type: default -'512160': +"512160": installDir: Volleying launch: - config: - osarch: '64' + osarch: "64" oslist: linux executable: play type: default @@ -247590,21 +243274,21 @@ oslist: windows executable: Volleying.exe type: default -'512170': +"512170": installDir: The research facility No.507 launch: - config: oslist: windows executable: 507game.exe type: none -'512180': +"512180": installDir: Nightshade launch: - config: oslist: windows executable: Nightshade.exe type: default -'512200': +"512200": installDir: Metal Carnage launch: - config: @@ -247615,13 +243299,13 @@ oslist: macos executable: metalcarnage.app type: none -'512220': +"512220": installDir: Trickster VR launch: - executable: Trickster.exe type: vr -'512230': - installDir: Sally's Law +"512230": + installDir: "Sally's Law" launch: - config: oslist: windows @@ -247631,14 +243315,14 @@ oslist: macos executable: SallysLaw.app/Contents/MacOS/SallysLaw type: default -'512240': +"512240": installDir: Duckpocalypse launch: - config: oslist: windows executable: Duckpocalypse.exe type: vr -'512250': +"512250": installDir: Oh...Sir! The Insult Simulator launch: - config: @@ -247647,13 +243331,13 @@ type: default - config: oslist: macos - executable: ohsir.app\\Contents\\MacOS\\ohsir + executable: "ohsir.app\\\\Contents\\\\MacOS\\\\ohsir" type: none - config: oslist: linux executable: ohsir.x86 type: none -'512260': +"512260": installDir: Avalon Legends Solitaire 2 launch: - config: @@ -247664,21 +243348,21 @@ oslist: macos executable: Avalon Legends Solitaire 2.app type: default -'512270': +"512270": installDir: Home - A VR Spacewalk launch: - config: oslist: windows executable: BBC_VRSpacewalk.exe type: vr -'512300': +"512300": installDir: Unbox launch: - config: oslist: windows executable: BoxJump.exe type: default -'512370': +"512370": installDir: Hero Boy launch: - config: @@ -247693,43 +243377,43 @@ oslist: linux executable: HeroboyLinux.x86 type: default -'512410': +"512410": installDir: 69WaysToKillAZombie launch: - config: oslist: windows executable: steam pub build.exe type: vr -'512420': +"512420": installDir: Wave Magic VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: WaveMagicVR.exe type: vr -'512430': +"512430": installDir: Make America Great Again launch: - config: oslist: windows executable: PTPlayer.exe type: default -'512450': {} -'512460': +"512450": {} +"512460": installDir: Drunk On Nectar launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: DoN.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: DoN.sh type: default -'512470': +"512470": installDir: The Pirate Caribbean Hunt launch: - config: @@ -247744,65 +243428,65 @@ oslist: linux executable: ThePirate.x86_64 type: default -'512490': +"512490": installDir: Zombie Estate 2 launch: - config: oslist: windows executable: Zombie Estate 2.exe type: none -'512550': +"512550": installDir: Cursed West launch: - config: oslist: windows executable: cursedwest.exe type: default -'512560': +"512560": installDir: HoCWar launch: - config: oslist: windows executable: HoCWar.exe type: default -'512600': +"512600": installDir: Gochi-Show launch: - executable: gochiso.exe type: none -'512610': +"512610": installDir: Gochi-Show! for Girls launch: - executable: gochiso.exe type: none -'512640': +"512640": installDir: Final Quest launch: - executable: Game.exe type: none -'512680': +"512680": installDir: Pan-Dimensional Conga Combat launch: - config: oslist: windows executable: Conga.exe type: none -'512700': +"512700": installDir: Duckles the Jisgaw Witch launch: - config: oslist: windows executable: Duckles6.0.0.0.1.exe type: none -'512710': +"512710": installDir: Tesla VR launch: - config: oslist: windows executable: Tesla4.exe type: vr -'512720': {} -'512740': +"512720": {} +"512740": installDir: FlatPath launch: - config: @@ -247817,25 +243501,25 @@ oslist: linux executable: FlatPath type: default -'512750': +"512750": installDir: One Giant Leap launch: - config: oslist: windows executable: One Giant Leap.exe type: vr -'512770': +"512770": installDir: IACTURA launch: - config: oslist: windows executable: Iactura.exe type: default -'512790': +"512790": installDir: Quern - Undying Thoughts launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Quern.exe type: none @@ -247844,17 +243528,17 @@ executable: Quern.app type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: Quern.x86_64 type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: Quern.x86 type: none - config: - osarch: '32' + osarch: "32" oslist: windows executable: Quern.exe type: none @@ -247863,20 +243547,20 @@ french: Quern – Pensées Immortelles hungarian: Quern - Időtlen Gondolatok italian: Quern - Pensieri Eterni - latam: 'Quern: Pensamientos Inmortales' + latam: "Quern: Pensamientos Inmortales" polish: Quern - Wieczne Myśli russian: Quern. Вечные мысли schinese: Quern - 不朽之念 - spanish: 'Quern: Pensamientos Inmortales' -'512830': + spanish: "Quern: Pensamientos Inmortales" +"512830": installDir: Zombie Trigger launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: VR_FPS_Steam.exe type: vr -'512890': +"512890": installDir: Elsinore launch: - config: @@ -247888,37 +243572,37 @@ executable: Elsinore.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Elsinore type: default -'512900': +"512900": installDir: Streets of Rogue launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: StreetsOfRogue.exe type: none - config: - osarch: '32' + osarch: "32" oslist: windows executable: StreetsOfRogue32.exe type: none - config: oslist: macos - executable: StreetsOfRogueMac.app\\Contents\\MacOS\\Streets of Rogue + executable: "StreetsOfRogueMac.app\\\\Contents\\\\MacOS\\\\Streets of Rogue" - config: - osarch: '64' + osarch: "64" oslist: linux executable: StreetsOfRogueLinux.x86_64 type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: StreetsOfRogueLinux.x86 type: none -'512920': +"512920": installDir: Trigger Time launch: - config: @@ -247929,65 +243613,65 @@ oslist: windows executable: tt.exe type: default -'513000': +"513000": installDir: Kuboom launch: - config: oslist: windows executable: build.exe type: none -'513050': +"513050": installDir: Outrageous Grounds The Maze launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: OG_TheMazeEarlyAccessVive.exe type: vr - config: betakey: oculus - osarch: '64' + osarch: "64" oslist: windows executable: OG_TheMazeEarlyAccessOculus.exe type: vr -'513060': +"513060": installDir: Wills and Wonders launch: - config: oslist: windows executable: Wills and Wonders.exe type: default -'513140': +"513140": installDir: OCCHIO launch: - config: oslist: windows executable: Occhio.exe type: default -'513160': {} -'513170': +"513160": {} +"513170": installDir: The Tower Last Stand launch: - config: oslist: windows executable: TowerLastStand.exe type: vr -'513190': +"513190": installDir: Voidrunner launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: .\\Voidrunner\\Voidrunner.exe + executable: ".\\\\Voidrunner\\\\Voidrunner.exe" type: default -'513210': +"513210": installDir: Rescue Bear Operation launch: - config: oslist: windows executable: RescueBearOperation.exe type: none -'513230': +"513230": installDir: The Underground Man launch: - config: @@ -247998,50 +243682,50 @@ oslist: macos executable: The Underground man.app type: none -'513240': +"513240": installDir: Birdtual Reality launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Birdtual.exe type: vr -'513250': +"513250": installDir: Rogue Stache launch: - config: oslist: windows executable: RogueStache.exe type: default -'513260': +"513260": installDir: Green Moon 2 launch: - config: oslist: windows executable: GreenMoon2.exe type: default -'513270': +"513270": installDir: Lockdown Stand Alone launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: lockdown.exe type: vr -'513290': +"513290": installDir: Lucius III launch: - executable: Lucius3.exe type: default -'513300': +"513300": installDir: Schacht launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Schacht.exe type: default -'513310': +"513310": installDir: Aviators launch: - config: @@ -248052,75 +243736,69 @@ oslist: macos executable: Aviators.app type: default -'513320': +"513320": installDir: ALICE VR launch: - - arguments: '-target 1' + - arguments: "-target 1" config: - osarch: '64' + osarch: "64" oslist: windows description: Default executable: ALICE.exe type: default - - arguments: '-target 2' + - arguments: "-target 2" config: - osarch: '64' + osarch: "64" oslist: windows description: Oculus Rift executable: ALICE.exe type: othervr - - arguments: '-target 3' + - arguments: "-target 3" config: - osarch: '64' + osarch: "64" oslist: windows description: HTC VIVE executable: ALICE.exe type: vr - - arguments: '-target 4' + - arguments: "-target 4" config: - osarch: '64' + osarch: "64" oslist: windows description: OSVR HDK2 - description_loc: - english: OSVR HDK2 executable: ALICE.exe type: option1 - - arguments: '-target 5' + - arguments: "-target 5" config: - osarch: '64' + osarch: "64" oslist: windows description: HDK2 OSVR - description_loc: - english: HDK2 OSVR executable: ALICE.exe type: option1 - - arguments: '-target 6' + - arguments: "-target 6" config: - osarch: '64' + osarch: "64" oslist: windows description: OSVR HDK2 (reversed controls & HUD) - description_loc: - english: OSVR HDK2 (reversed controls & HUD) executable: ALICE.exe type: option1 - config: - osarch: '64' + osarch: "64" oslist: linux executable: ALICE.sh type: default -'513330': +"513330": installDir: Party Hard Tycoon launch: - config: oslist: windows executable: PartyHardTycoon.exe type: none -'513340': +"513340": installDir: Through Abandoned 2. The Forest launch: - executable: 2 Through Abandoned - The Forest.exe type: none -'513360': +"513360": installDir: Mu Cartographer launch: - config: @@ -248131,31 +243809,31 @@ oslist: macos executable: Mu Cartographer.app type: none -'513370': +"513370": installDir: Blade & Bones launch: - - arguments: '-fullscreen' + - arguments: "-fullscreen" config: oslist: windows description: Launch Blade & Bones executable: Musashi.exe type: none -'513420': +"513420": installDir: VR Escape the space station launch: - config: oslist: windows executable: vrspace.exe type: vr -'513440': +"513440": installDir: Path of War launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SteamApp.exe type: default -'513450': +"513450": installDir: Drop Alive launch: - config: @@ -248163,7 +243841,7 @@ oslist: windows executable: Drop Alive.exe type: default -'513460': +"513460": installDir: Agenda launch: - config: @@ -248172,40 +243850,40 @@ type: default - config: oslist: macos - executable: Agenda.app\\Contents\\MacOS\\Agenda + executable: "Agenda.app\\\\Contents\\\\MacOS\\\\Agenda" type: default - config: oslist: linux executable: Agenda.x86_64 type: default -'513480': +"513480": installDir: Geo launch: - config: oslist: windows executable: Geo.exe type: none -'513490': +"513490": installDir: BerlinBlitz_0.07g_Steam launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: /BerlinBlitz_0.07g_Steam/BerlinBlitz.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows description: with SteamVR executable: /BerlinBlitz_0.07g_Steam/BerlinBlitz.exe type: vr - config: - osarch: '64' + osarch: "64" oslist: windows description: with Oculus executable: /BerlinBlitz_0.07g_Steam/BerlinBlitz.exe type: othervr -'513510': +"513510": installDir: Intralism launch: - config: @@ -248216,18 +243894,18 @@ oslist: macos executable: Intralism.app type: default - - arguments: '-force-opengl' + - arguments: "-force-opengl" config: oslist: linux executable: Intralism.x86_64 type: default -'513530': {} -'513540': {} -'513550': +"513530": {} +"513540": {} +"513550": installDir: Vive le Roi launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Vive le Roi executable: ViveleRoi.exe @@ -248236,7 +243914,7 @@ oslist: macos executable: ViveleRoi.app type: default -'513560': +"513560": installDir: HungerDungeon launch: - config: @@ -248245,20 +243923,20 @@ type: default - config: oslist: macos - executable: HungerDungeon.app\\Contents\\MacOS\\HungerDungeon + executable: "HungerDungeon.app\\\\Contents\\\\MacOS\\\\HungerDungeon" type: default - config: oslist: linux executable: HungerDungeon.x86 type: default -'513570': +"513570": installDir: Wooden House launch: - config: oslist: windows executable: Wooden House.exe type: none -'513580': +"513580": installDir: Miaou Moon launch: - config: @@ -248267,13 +243945,13 @@ executable: Miaou Moon.exe type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Miaou Moon.x86_64 type: none - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: Miaou Moon.x86 @@ -248283,14 +243961,14 @@ description: Launch executable: Miaou Moon.app type: none -'513590': +"513590": installDir: So Many Cubes launch: - config: oslist: windows executable: so many cubes.exe type: none -'513600': +"513600": installDir: Energy Invasion launch: - config: @@ -248304,18 +243982,18 @@ executable: EnergyInvasion.app type: none - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: EnergyInvasion.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: EnergyInvasion.x86_64 type: none -'513610': +"513610": installDir: Madrobot X launch: - config: @@ -248333,7 +244011,7 @@ description: Launch executable: runner type: none -'513620': +"513620": installDir: SkyTime launch: - config: @@ -248347,63 +244025,61 @@ executable: SkyTime.app type: none - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: SkyTime.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: SkyTime.x86_64 type: none -'513630': {} -'513640': {} -'513650': +"513630": {} +"513640": {} +"513650": installDir: Zula EU launch: - - arguments: '-Steam' + - arguments: "-Steam" executable: zula_launcher.exe type: none -'513660': {} -'513680': +"513660": {} +"513680": installDir: Maximum Archery The Game launch: - config: oslist: windows executable: MaximumArcheryTheGame.exe type: none -'513690': +"513690": installDir: DANGER ZONE 2 launch: - - executable: DangerZone\\Binaries\\Win64\\DangerZone-Win64-Shipping.exe + - executable: "DangerZone\\\\Binaries\\\\Win64\\\\DangerZone-Win64-Shipping.exe" type: default -'513710': +"513710": installDir: SCUM launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SCUM_Launcher.exe type: default - - arguments: '-dx12' + - arguments: "-dx12" config: - osarch: '64' + osarch: "64" oslist: windows description: Play SCUM DirectX 12 (Experimental) executable: SCUM_Launcher.exe type: none - - arguments: '-vulkan' + - arguments: "-vulkan" config: - osarch: '64' + osarch: "64" oslist: windows description: Play SCUM Vulkan (Experimental) - description_loc: - english: Play SCUM Vulkan (Experimental) executable: SCUM_Launcher.exe type: none -'513720': +"513720": installDir: Archipelago launch: - config: @@ -248414,12 +244090,12 @@ oslist: windows executable: Archipelago_launcher.exe type: none -'513740': - installDir: Joana's Life +"513740": + installDir: "Joana's Life" launch: - executable: JohanasLife.exe type: none -'513770': +"513770": installDir: Click Space Miner launch: - config: @@ -248428,13 +244104,13 @@ type: none - config: oslist: windows - ownsdlc: '516100' + ownsdlc: "516100" description: Expansion Pack executable: ClickSpaceMinerEX.exe type: none - config: oslist: windows - ownsdlc: '546590' + ownsdlc: "546590" description: ULTIMATE HD executable: clickspaceminerDLC.exe type: none @@ -248445,32 +244121,32 @@ type: none - config: oslist: linux - ownsdlc: '516100' + ownsdlc: "516100" description: Expansion Pack Linux executable: /EXP/ClickSpaceMinerEX type: none -'513780': +"513780": installDir: Turbo Pug DX launch: - config: oslist: windows executable: turbopugDX.exe type: default -'513790': +"513790": installDir: DEADLOCK launch: - config: oslist: windows executable: DEADLOCK.exe type: vr -'513810': +"513810": installDir: Arkham Nightmares launch: - config: oslist: windows executable: arkhmares.exe type: none -'513820': +"513820": installDir: LUXIS launch: - config: @@ -248479,13 +244155,13 @@ type: default - config: oslist: macos - executable: LUXIS.app\\Contents\\MacOS\\LUXIS + executable: "LUXIS.app\\\\Contents\\\\MacOS\\\\LUXIS" type: default - config: oslist: linux executable: LUXIS(Linux).x86 type: default -'513840': +"513840": installDir: Friday Night Bullet Arena launch: - config: @@ -248500,21 +244176,21 @@ oslist: macos executable: fnba.app type: default -'513860': +"513860": installDir: Elena launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Project43.exe type: default - - arguments: '-vr' + - arguments: "-vr" config: - osarch: '64' + osarch: "64" oslist: windows executable: Project43.exe type: vr -'513880': +"513880": installDir: Panzer Warfare launch: - config: @@ -248524,21 +244200,21 @@ - config: oslist: macos description: Launch - executable: Panzer Warfare.app\\Contents\\MacOS\\Panzer Warfare + executable: "Panzer Warfare.app\\\\Contents\\\\MacOS\\\\Panzer Warfare" type: default - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch x86 executable: Panzer Warfare.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch x86_x64 executable: Panzer Warfare.x86_64 type: default -'513890': +"513890": installDir: The Frostrune launch: - config: @@ -248547,104 +244223,104 @@ type: default - config: oslist: macos - executable: The Frostrune.app\\Contents\\MacOS\\The Frostrune + executable: "The Frostrune.app\\\\Contents\\\\MacOS\\\\The Frostrune" type: default -'513910': +"513910": installDir: CARL launch: - config: oslist: windows executable: CARL.exe type: default -'513920': +"513920": installDir: Desperate Times launch: - config: oslist: windows executable: DesperateTimes.exe type: none -'513930': +"513930": installDir: J.U.R Windows launch: - config: oslist: windows executable: JUR.exe type: default -'513960': +"513960": installDir: Galactic Fighters launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: launch executable: GalacticFighters.exe type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: GalacticFighters.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: GalacticFighters64.x86_64 type: none - config: - osarch: '64' + osarch: "64" oslist: windows executable: GalacticFighters64.exe type: none - config: - osarch: '64' + osarch: "64" oslist: macos executable: GalacticFighters.x64.app type: none - config: - osarch: '32' + osarch: "32" oslist: macos executable: GalacticFighters.x86.app type: none -'513970': +"513970": installDir: Alpha Decay launch: - config: oslist: windows executable: AlphaDecay.exe type: none -'513980': +"513980": installDir: OhNoBugs launch: - config: oslist: windows executable: OhNoBugs.exe type: none -'513990': +"513990": installDir: Happy Empire launch: - config: oslist: windows executable: AEL - Happy Empire.exe type: default -'514010': +"514010": installDir: Football Mogul 15 launch: - executable: FB15.exe type: default -'514050': +"514050": installDir: Uprising 2 Lead and Destroy launch: - config: oslist: windows executable: Uprising 2.exe type: none -'514080': +"514080": installDir: Deadly Dozen launch: - config: oslist: windows executable: WW2Game.exe type: none -'514090': +"514090": installDir: Beautiful_Japanese_Scenary_Animated_Jigsaws launch: - config: @@ -248655,52 +244331,50 @@ oslist: macos executable: Beautiful_Japanese_Scenary_Animated_Jigsaws.app type: default -'514130': +"514130": installDir: European Air War launch: - config: oslist: windows description: Launch European Air War - description_loc: - english: Launch European Air War executable: eaw.exe type: default -'514140': +"514140": installDir: Elite Warriors Vietnam launch: - config: oslist: windows executable: SOG.exe type: default -'514150': +"514150": installDir: Line of Sight Vietnam launch: - config: oslist: windows executable: Vietnam.exe type: none -'514160': +"514160": installDir: 18 Wheels of Steel Across America launch: - config: oslist: windows executable: aa.exe type: none -'514170': +"514170": installDir: 18 Wheels of Steel Convoy launch: - config: oslist: windows executable: convoy.exe type: none -'514180': +"514180": installDir: 18 Wheels of Steel Haulin launch: - config: oslist: windows executable: haulin.exe type: none -'514200': +"514200": installDir: Mythic Victory Arena launch: - config: @@ -248720,14 +244394,14 @@ executable: test/Game.exe type: option3 workingdir: test -'514220': +"514220": installDir: GunWorld 2 launch: - config: oslist: windows executable: Super GunWorld 2 XB1 PS4.exe type: default -'514240': +"514240": installDir: ALONE launch: - config: @@ -248742,7 +244416,7 @@ oslist: linux executable: Alone.x86 type: none -'514290': +"514290": installDir: Factory Engineer launch: - config: @@ -248754,16 +244428,16 @@ executable: FactoryEngineer.app type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: FactoryEngineer.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: FactoryEngineer.x86_64 type: none -'514310': +"514310": installDir: Senran Kagura Bon Appetit launch: - config: @@ -248772,7 +244446,7 @@ type: default nameLocalized: japanese: デカ盛り 閃乱カグラ -'514340': +"514340": installDir: AGHR launch: - config: @@ -248787,42 +244461,42 @@ oslist: macos executable: game.exe type: default -'514350': +"514350": installDir: Fancy Slingshot VR launch: - config: oslist: windows - executable: Y_Done\\Binaries\\Win64\\Y_Done.exe + executable: "Y_Done\\\\Binaries\\\\Win64\\\\Y_Done.exe" type: vr -'514360': +"514360": installDir: Freedom Fighter launch: - config: oslist: windows executable: Freedom Fighter.exe type: default -'514370': +"514370": installDir: DragonBlastVR launch: - config: oslist: windows executable: DragonBlastVR.exe type: vr -'514390': +"514390": installDir: win64 launch: - config: oslist: windows executable: nw.exe.exe type: none -'514400': +"514400": installDir: Legends of Time launch: - config: oslist: windows executable: Legends of Time.exe type: default -'514410': +"514410": installDir: GunBrothers launch: - config: @@ -248835,7 +244509,7 @@ executable: GunBrothers.x86 type: default workingdir: GunBrothers_Data -'514460': +"514460": installDir: Cyberline Racing launch: - config: @@ -248844,47 +244518,47 @@ type: none - config: oslist: macos - executable: CyberlineRacing.app\\Contents\\MacOS\\CyberlineRacing + executable: "CyberlineRacing.app\\\\Contents\\\\MacOS\\\\CyberlineRacing" type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: game.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: game.x86_64 type: none -'514470': +"514470": installDir: Fantastic 4 In A Row 2 launch: - config: oslist: windows executable: Fantastic4InARow2.exe type: default -'514480': +"514480": installDir: Fantastic Checkers 2 launch: - config: oslist: windows executable: FantasticCheckers2.exe type: default -'514490': +"514490": installDir: Ultimate Word Search 2 Letter Boxed launch: - config: oslist: windows executable: UltimateWordSearch2.exe type: default -'514500': +"514500": installDir: Atomic Society launch: - config: oslist: windows executable: Atomic Society.exe type: default -'514510': +"514510": installDir: Unreal Heroes launch: - config: @@ -248894,18 +244568,18 @@ - description: Unreal Heroes Network Test executable: NetWorkTest.exe type: config -'514520': - installDir: Sparky's Hunt +"514520": + installDir: "Sparky's Hunt" launch: - config: oslist: windows - executable: Sparky's Hunt Game.exe + executable: "Sparky's Hunt Game.exe" type: default -'514530': +"514530": installDir: Rally Racers launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ReesRallyRacers.exe type: default @@ -248913,15 +244587,15 @@ oslist: macos executable: RallyRacers.app type: default -'514540': +"514540": installDir: Hate Free Heroes launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows executable: nw.exe type: default -'514550': +"514550": installDir: Beat The Dictators launch: - config: @@ -248930,12 +244604,12 @@ type: default - config: oslist: macos - executable: Dictator.app\\Contents\\MacOS\\Dictator + executable: "Dictator.app\\\\Contents\\\\MacOS\\\\Dictator" type: default -'514570': +"514570": installDir: Pinball Parlor launch: - - description: Play \"Pinball Parlor\" + - description: "Play \\\"Pinball Parlor\\\"" executable: PP.exe type: none - description: Screen setting @@ -248944,20 +244618,20 @@ - description: Simple rule instruction executable: Rules.pdf type: manual - - description: Play \"Pinball Parlor\" light weight version. + - description: "Play \\\"Pinball Parlor\\\" light weight version." executable: PP_light.exe type: none - - description: Play \"Pinball Parlor\" light weight DX9 version. + - description: "Play \\\"Pinball Parlor\\\" light weight DX9 version." executable: PP_lightDX9.exe type: none -'514580': +"514580": installDir: Cooking Witch launch: - config: oslist: windows executable: Cooking Witch.exe type: none -'514620': +"514620": installDir: Ellipsis launch: - config: @@ -248969,80 +244643,80 @@ executable: Ellipsis.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Ellipsis.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: Ellipsis.x86_64 type: none -'514640': +"514640": installDir: TankYou! launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TankYou.exe type: none - config: - osarch: '32' + osarch: "32" oslist: windows executable: TankYou.exe type: none -'514650': +"514650": installDir: Orbital X launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: Orbital X.exe type: none - config: - osarch: '64' + osarch: "64" oslist: windows executable: Orbital X.exe type: none - config: - osarch: '32' + osarch: "32" oslist: macos executable: Orbital X.app type: none - config: - osarch: '64' + osarch: "64" oslist: macos executable: Orbital X.app type: none - config: - osarch: '32' + osarch: "32" oslist: linux - description: 'Launch with: LC_ALL=C %command%' + description: "Launch with: LC_ALL=C %command%" executable: Orbital X.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux - description: 'Launch with: LC_ALL=C %command%' + description: "Launch with: LC_ALL=C %command%" executable: Orbital X.x86_64 type: none -'514660': +"514660": installDir: BitMaster launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: Bitmaster.exe type: none - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: Bitmaster.exe type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Bitmaster.sh @@ -249052,90 +244726,90 @@ description: Launch executable: Bitmaster.app type: none -'514670': +"514670": installDir: Satellite Command launch: - - arguments: '-SatComWithSteam' + - arguments: "-SatComWithSteam" config: - osarch: '64' + osarch: "64" oslist: windows executable: GESGame.exe type: default -'514700': - installDir: Mystery Case Files ® 13th Skull ™ Collector's Edition +"514700": + installDir: "Mystery Case Files ® 13th Skull ™ Collector's Edition" launch: - executable: MCF7Collectors.exe type: none -'514710': {} -'514720': - installDir: Dark Tales Edgar Allan Poe's The Masque of the Red Death Collector's Edition +"514710": {} +"514720": + installDir: "Dark Tales Edgar Allan Poe's The Masque of the Red Death Collector's Edition" launch: - executable: DarkTales_EAP_TheMasqueoftheRedDeathCE.exe type: none -'514730': - installDir: Hidden Expedition Dawn of Prosperity Collector's Edition +"514730": + installDir: "Hidden Expedition Dawn of Prosperity Collector's Edition" launch: - executable: HiddenExpedition_DawnofProsperity_CE.exe type: none -'514740': - installDir: Final Cut Death on the Silver Screen Collector's Edition +"514740": + installDir: "Final Cut Death on the Silver Screen Collector's Edition" launch: - executable: FinalCut_DeathOnTheSilverScreenCE.exe type: none -'514750': - installDir: Nightmare Adventures The Witch's Prison +"514750": + installDir: "Nightmare Adventures The Witch's Prison" launch: - executable: WitchsPrison.exe type: none -'514760': - installDir: Spirits of Mystery Amber Maiden Collector's Edition +"514760": + installDir: "Spirits of Mystery Amber Maiden Collector's Edition" launch: - executable: SpiritsOfMystery_AmberMaidenCE.exe type: none -'514770': +"514770": installDir: Grave Mania Pandemic Pandemonium launch: - executable: Grave_Mania_Pandemic_Pandemonium.exe type: none -'514780': +"514780": installDir: DogSolitaire launch: - config: oslist: windows executable: bestinshowsolitaire.exe type: default -'514810': +"514810": installDir: Eldritch Hunter launch: - config: oslist: windows executable: nw.exe type: none -'514820': +"514820": installDir: Wasps launch: - config: oslist: windows executable: Wasps!.exe type: vr -'514830': +"514830": installDir: Stifled launch: - config: oslist: windows executable: Stifled.exe type: default - - arguments: '-OpenVR' + - arguments: "-OpenVR" config: oslist: windows executable: Stifled.exe type: vr - - arguments: '-OculusVR' + - arguments: "-OculusVR" config: oslist: windows executable: Stifled.exe type: othervr - - arguments: '-NoVR' + - arguments: "-NoVR" config: oslist: windows description: Launch Stifled in Non-VR @@ -249145,7 +244819,7 @@ oslist: macos executable: Stifled.app type: none -'514870': +"514870": installDir: Fat City launch: - config: @@ -249156,7 +244830,7 @@ oslist: windows executable: FatCitySteamVR.exe type: vr -'514890': +"514890": installDir: SuperJagua launch: - config: @@ -249165,52 +244839,52 @@ type: none - config: oslist: macos - executable: SuperJagua.app\\Contents\\MacOS\\Mac_Runner + executable: "SuperJagua.app\\\\Contents\\\\MacOS\\\\Mac_Runner" type: none - config: oslist: linux executable: run.sh type: none -'514900': +"514900": installDir: Observer launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TheObserver.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: TheObserver.sh type: default - config: - osarch: '64' + osarch: "64" oslist: macos executable: TheObserver.app type: default -'514920': +"514920": installDir: Crash Wheels launch: - config: oslist: windows executable: Crash Wheels.exe type: default -'514930': - installDir: Super Hop 'N' Bop ULTRA +"514930": + installDir: "Super Hop 'N' Bop ULTRA" launch: - executable: Super Hop N Bop ULTRA.exe type: default -'514970': +"514970": installDir: DriveMGPLS launch: - - arguments: '-menu' + - arguments: "-menu" config: oslist: windows description: menu launch - executable: Debug\\iLevelEditorr.exe + executable: "Debug\\\\iLevelEditorr.exe" type: default -'514990': +"514990": installDir: Outbreak launch: - config: @@ -249218,7 +244892,7 @@ executable: Outbreak.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: OutbreakLinux.x86_64 type: default @@ -249226,7 +244900,7 @@ oslist: macos executable: OutbreakMac.app type: default -'515000': +"515000": installDir: PANIC at Multiverse High! launch: - config: @@ -249241,7 +244915,7 @@ oslist: linux executable: PanicAtMultiverseHigh.sh type: default -'515010': +"515010": installDir: ADHD_Trackher launch: - config: @@ -249252,51 +244926,49 @@ betakey: insurancepolicy oslist: windows description: Seeeeecrets - description_loc: - english: Seeeeecrets executable: A Duel Hand Disaster Trackher.exe type: option1 - config: oslist: macos executable: ADHD_Trackher.app type: default -'515020': +"515020": installDir: The VR Museum of Fine Art launch: - config: oslist: windows executable: Museum2.exe type: vr -'515040': +"515040": installDir: Make America Great Again The Trump Presidency launch: - config: oslist: windows executable: MAGA.exe type: none -'515060': +"515060": installDir: Third Eye launch: - config: oslist: windows executable: Launcher.exe type: default -'515180': +"515180": installDir: Bus Simulator 18 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: BusSimulator18.exe type: none -'515200': +"515200": installDir: Cliff Hanger launch: - config: oslist: windows executable: Cliff_Hanger.exe type: none -'515220': +"515220": installDir: F1 2017 launch: - config: @@ -249311,7 +244983,7 @@ oslist: linux executable: F12017.sh type: none -'515230': +"515230": installDir: Cleos Lost Idols launch: - config: @@ -249322,7 +244994,7 @@ oslist: macos executable: CleosLostIdols.app type: default -'515260': +"515260": installDir: Virtual Rides 3 launch: - config: @@ -249331,18 +245003,18 @@ type: none - config: oslist: macos - executable: VR3.app\\Contents\\MacOS\\Virtual Rides 3 + executable: "VR3.app\\\\Contents\\\\MacOS\\\\Virtual Rides 3" type: none - config: oslist: linux executable: VR3.x86_64 -'515310': {} -'515470': +"515310": {} +"515470": installDir: Hyper color ball launch: - executable: HCB.exe type: none -'515570': +"515570": installDir: UBERMOSH Vol.3 launch: - config: @@ -249353,7 +245025,7 @@ oslist: linux executable: run.sh type: default -'515650': +"515650": installDir: Straimium Immortaly launch: - config: @@ -249361,27 +245033,27 @@ description: Launch executable: Straimium Immortaly.exe type: default -'515690': +"515690": installDir: Warriors of Vilvatikta launch: - executable: Game.exe type: none -'515700': +"515700": installDir: Snowday launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Snow.exe type: vr -'515740': +"515740": installDir: Radical Heroes Crimson City Crisis launch: - config: oslist: windows executable: RadicalHeroes.exe type: default -'515890': +"515890": installDir: Marty Thinks 4th Dimensionally launch: - config: @@ -249392,14 +245064,14 @@ oslist: macos executable: MartyMac.app type: none -'515900': +"515900": installDir: ROCK launch: - config: oslist: windows executable: ROCK.exe type: default -'515910': +"515910": installDir: Hooligan Vasja launch: - config: @@ -249407,30 +245079,26 @@ description: Start game executable: vasja.exe type: default -'515960': +"515960": installDir: Martha Is Dead launch: - - arguments: '-dx11' + - arguments: "-dx11" config: - osarch: '64' + osarch: "64" oslist: windows - description: 'Martha Is Dead (Recommended) ' - description_loc: - english: 'Martha Is Dead (Recommended) ' + description: "Martha Is Dead (Recommended) " executable: MID.exe type: option1 - - arguments: '-dx12' + - arguments: "-dx12" config: - osarch: '64' + osarch: "64" oslist: windows - description: 'Martha Is Dead (DirectX12, Ray-Tracing)' - description_loc: - english: 'Martha Is Dead (DirectX12, Ray-Tracing)' + description: "Martha Is Dead (DirectX12, Ray-Tracing)" executable: MID.exe type: option3 nameLocalized: schinese: 玛莎已死 -'515980': +"515980": installDir: The Horus Heresy Battle for Tallarn launch: - config: @@ -249441,7 +245109,7 @@ oslist: macos executable: BattleOfTallarn.app type: none -'516000': +"516000": installDir: Candy Thieves - Tale of Gnomes launch: - config: @@ -249450,14 +245118,14 @@ type: default - config: oslist: macos - executable: CandyThieves\\CandyThieves.app + executable: "CandyThieves\\\\CandyThieves.app" type: default -'516010': +"516010": installDir: BoardDefenders launch: - executable: BoardDefenders.exe type: default -'516030': +"516030": installDir: Insane Robots launch: - config: @@ -249468,14 +245136,14 @@ oslist: macos executable: Insane Robots.app type: default -'516040': +"516040": installDir: Everything is Peachy launch: - config: oslist: windows executable: EverythingIsPeachy.exe type: default -'516110': +"516110": installDir: ToeJam & Earl Back In The Groove launch: - config: @@ -249495,14 +245163,14 @@ description: Launch feature branch (endless testing) executable: backinthegroove.exe type: none -'516120': - installDir: Juno's Darkest Hour +"516120": + installDir: "Juno's Darkest Hour" launch: - config: oslist: windows executable: Juno.exe type: default -'516130': +"516130": installDir: Runner3 launch: - config: @@ -249514,17 +245182,17 @@ description: Start Runner3! executable: Runner3.app type: none -'516230': {} -'516250': +"516230": {} +"516250": installDir: Skynet Rising - Portal to the Past launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Skynet Rising Launcher.exe type: default -'516360': {} -'516410': +"516360": {} +"516410": installDir: Football Blitz launch: - config: @@ -249533,9 +245201,9 @@ type: default - config: oslist: macos - executable: FootballBlitz.app\\Contents\\MacOS\\FootballBlitz + executable: "FootballBlitz.app\\\\Contents\\\\MacOS\\\\FootballBlitz" type: default -'516430': +"516430": installDir: Ruin of the Reckless launch: - config: @@ -249543,71 +245211,71 @@ description: Launch the game as normal. executable: RotRVC.exe type: default -'516440': +"516440": installDir: Alien Rampage launch: - - arguments: '-conf ../Conf/rampage.cfg -noconsole' + - arguments: "-conf ../Conf/rampage.cfg -noconsole" config: oslist: linux executable: dosbox type: none workingdir: DOS - - arguments: '-conf ../Conf/rampage.cfg -noconsole' + - arguments: "-conf ../Conf/rampage.cfg -noconsole" config: oslist: windows executable: dosbox.exe type: none workingdir: DOS - - arguments: '-conf ../Conf/rampage.cfg -noconsole' + - arguments: "-conf ../Conf/rampage.cfg -noconsole" config: oslist: macos executable: DOSBox.app/Contents/MacOS/DOSBox type: none workingdir: DOS -'516450': +"516450": installDir: Glory by Example launch: - config: oslist: windows executable: Game.exe type: default -'516460': +"516460": installDir: 50 Years launch: - config: oslist: windows executable: 50years.exe type: default -'516470': +"516470": installDir: CRAPPY ZOMBIE GAME launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: CZG.exe type: vr -'516480': +"516480": installDir: Pinkman launch: - config: oslist: windows executable: nw.exe type: default -'516500': - installDir: Zissi's Island +"516500": + installDir: "Zissi's Island" launch: - config: oslist: windows executable: ZissisIsland.exe type: none -'516510': +"516510": installDir: Orake Classic launch: - config: oslist: windows executable: OrakeClassic.exe type: default -'516520': +"516520": installDir: Omega Reaction launch: - config: @@ -249618,22 +245286,22 @@ oslist: macos executable: Omega.app type: default -'516530': +"516530": installDir: Chaos Of Hearts launch: - config: oslist: windows executable: coh.exe type: default -'516550': +"516550": installDir: Relativity launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: relativity.exe type: vr -'516560': +"516560": installDir: The Odyssey launch: - config: @@ -249642,13 +245310,13 @@ type: default - config: oslist: macos - executable: The Odyssey.app\\Contents\\MacOS\\The Odyssey + executable: "The Odyssey.app\\\\Contents\\\\MacOS\\\\The Odyssey" type: default - config: oslist: linux executable: TheOdyssey type: default -'516570': +"516570": installDir: ADAPTR launch: - config: @@ -249656,7 +245324,7 @@ executable: ADAPTR.exe type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: ADAPTR.x86_64 type: none @@ -249664,23 +245332,23 @@ oslist: macos executable: ADAPTR.app type: none -'516580': +"516580": installDir: DYSTORIA launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: windows/Dystoria.exe type: default -'516590': +"516590": installDir: Enigmatic-CyberThreat launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: CyberThreat.exe type: vr -'516600': +"516600": installDir: Bai Qu launch: - config: @@ -249696,66 +245364,66 @@ executable: lib/linux-x86_64/renpy type: default nameLocalized: - english: 'Bai Qu: Hundreds of Melodies' - russian: 'Bai Qu: Сотни Мелодий' + english: "Bai Qu: Hundreds of Melodies" + russian: "Bai Qu: Сотни Мелодий" schinese: 百曲 tchinese: 百曲 -'516610': +"516610": installDir: Guardian war VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Guardian war VR.exe type: vr -'516640': +"516640": installDir: A Large Quantity Of Mushrooms launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ALQOM.exe type: othervr -'516650': +"516650": installDir: Preston Sterling launch: - config: oslist: windows executable: PrestonSterling.exe type: default -'516680': +"516680": installDir: The Flying Baron 1916 launch: - config: oslist: windows executable: The Flying Baron.exe type: default -'516700': {} -'516740': +"516700": {} +"516740": installDir: Elves vs Goblins Defender launch: - config: oslist: windows executable: ElvesVsGoblins.exe type: default -'516750': +"516750": installDir: My Summer Car launch: - executable: mysummercar.exe type: none -'516790': +"516790": installDir: Fat Mask launch: - executable: FatMask.exe type: default -'516810': +"516810": installDir: The Garden launch: - config: oslist: windows executable: TheGarden.exe type: default -'516820': +"516820": installDir: Exodemon launch: - config: @@ -249763,8 +245431,8 @@ description: Launch executable: Exodemon.exe type: default -'516830': {} -'516840': +"516830": {} +"516840": installDir: The Tale of Doris and the Dragon - Episode I launch: - config: @@ -249785,7 +245453,7 @@ description: Windows Beta install executable: Launcher/launcher.exe type: default -'516870': +"516870": installDir: Isomorph launch: - config: @@ -249794,57 +245462,57 @@ type: none - config: oslist: macos - executable: Isomorph.app\\Contents\\MacOS\\Isomorph + executable: "Isomorph.app\\\\Contents\\\\MacOS\\\\Isomorph" type: none - config: oslist: linux executable: Isomorph.x86 type: none -'516890': +"516890": installDir: Alchemic Jousts launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: AlchemicJousts.exe type: default -'516900': +"516900": installDir: OnirisBasketVR launch: - config: oslist: windows executable: OnirisBasketVR.exe type: vr -'516920': +"516920": installDir: Veilia launch: - config: oslist: windows executable: Veilia.exe type: default -'516940': +"516940": installDir: MineSweeper VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: MineSweeperVR.exe type: vr -'516950': +"516950": installDir: Stars Simulation launch: - config: oslist: windows executable: Stars Simulation.exe type: vr -'516960': +"516960": installDir: BCE launch: - config: oslist: windows executable: BCE.exe type: none -'517000': +"517000": installDir: Sakura Shrine Girls launch: - config: @@ -249859,21 +245527,21 @@ oslist: linux executable: Sakura Shrine Girls.sh type: default -'517010': +"517010": installDir: Aztecalypse launch: - config: oslist: windows executable: Aztecalypse.exe type: default -'517020': +"517020": installDir: Virtual Warfighter launch: - config: oslist: windows executable: VirtualWarfighter.exe type: vr -'517060': +"517060": installDir: DayOfTheTrumplings launch: - config: @@ -249884,7 +245552,7 @@ oslist: macos executable: DayOfTheTrumplings.app/Contents/MacOS/DayOfTheTrumplings type: default -'517070': +"517070": installDir: Might & Magic Showdown launch: - arguments: prod steam -uplay_steam_mode @@ -249903,103 +245571,103 @@ description: UAT executable: AFK.exe type: none -'517100': +"517100": installDir: Funk Unplugged launch: - config: oslist: windows executable: FunkUnplugged.exe type: none -'517110': +"517110": installDir: CardsOfChaos launch: - - arguments: '-jar CardChaos.jar' + - arguments: "-jar CardChaos.jar" config: - osarch: '32' + osarch: "32" oslist: windows - executable: jre18\\bin\\javaw.exe + executable: "jre18\\\\bin\\\\javaw.exe" type: default - - arguments: '-XstartOnFirstThread -jar CardChaos.jar' + - arguments: "-XstartOnFirstThread -jar CardChaos.jar" config: oslist: macos - executable: jre18\\Contents\\Home\\bin\\java + executable: "jre18\\\\Contents\\\\Home\\\\bin\\\\java" type: default - - arguments: '-jar CardChaos.jar' + - arguments: "-jar CardChaos.jar" config: - osarch: '32' + osarch: "32" oslist: linux - executable: jre18\\bin\\java + executable: "jre18\\\\bin\\\\java" type: default - - arguments: '-jar CardChaos.jar' + - arguments: "-jar CardChaos.jar" config: - osarch: '64' + osarch: "64" oslist: linux - executable: jre18\\bin\\java + executable: "jre18\\\\bin\\\\java" type: default - - arguments: '-jar CardChaos.jar' + - arguments: "-jar CardChaos.jar" config: - osarch: '64' + osarch: "64" oslist: windows - executable: jre18\\bin\\javaw.exe + executable: "jre18\\\\bin\\\\javaw.exe" type: default -'517130': +"517130": installDir: Soundboxing launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: OpenVR\\OpenVR.exe + executable: "OpenVR\\\\OpenVR.exe" type: vr - config: - osarch: '64' + osarch: "64" oslist: windows - executable: Oculus\\Oculus.exe + executable: "Oculus\\\\Oculus.exe" type: othervr - config: betakey: beta - osarch: '64' + osarch: "64" oslist: windows - description: '[Beta] SteamVR' - executable: OpenVR\\Soundboxing.exe + description: "[Beta] SteamVR" + executable: "OpenVR\\\\Soundboxing.exe" type: vr - config: betakey: beta - osarch: '64' + osarch: "64" oslist: windows - description: '[Beta] Oculus' - executable: Oculus\\Soundboxing.exe + description: "[Beta] Oculus" + executable: "Oculus\\\\Soundboxing.exe" type: othervr - config: betakey: v2.0 - osarch: '64' + osarch: "64" oslist: windows - description: '[2.0] SteamVR' - executable: OpenVR\\Soundboxing.exe + description: "[2.0] SteamVR" + executable: "OpenVR\\\\Soundboxing.exe" type: vr - config: betakey: v2.0 - osarch: '64' + osarch: "64" oslist: windows - description: '[2.0] Oculus' - executable: Oculus\\Soundboxing.exe + description: "[2.0] Oculus" + executable: "Oculus\\\\Soundboxing.exe" type: othervr -'517140': +"517140": installDir: Polycrusher launch: - config: oslist: windows executable: Polycrusher.exe type: default -'517160': - installDir: Richie's Plank Experience +"517160": + installDir: "Richie's Plank Experience" launch: - config: - osarch: '64' + osarch: "64" oslist: windows - description: Richie's Plank Experience + description: "Richie's Plank Experience" executable: RichiesPlankExperience.exe type: vr -'517190': +"517190": installDir: Rebound launch: - config: @@ -250011,16 +245679,16 @@ executable: Rebound.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: rebound.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: rebound.x86_64 type: default -'517210': +"517210": installDir: Bad Pad launch: - config: @@ -250033,16 +245701,16 @@ description: Play Bad Pad NOW! executable: badpad type: default -'517220': +"517220": installDir: Balls! Virtual Reality Cricket launch: - - arguments: '-windowed' + - arguments: "-windowed" config: - osarch: '64' + osarch: "64" oslist: windows executable: BallsCricket.exe type: vr -'517230': +"517230": installDir: Spinning Maze launch: - config: @@ -250051,9 +245719,9 @@ type: default - config: oslist: macos - executable: Spinning Maze.app\\Contents\\MacOS\\Spinning Maze + executable: "Spinning Maze.app\\\\Contents\\\\MacOS\\\\Spinning Maze" type: default -'517240': +"517240": installDir: Machinations Fog of War launch: - config: @@ -250068,27 +245736,27 @@ oslist: linux executable: Machinations type: none -'517270': +"517270": installDir: ProFarmManager launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Pfm.exe type: default -'517280': +"517280": installDir: ZEscape launch: - config: oslist: windows executable: ZEscape.exe type: default -'517300': +"517300": installDir: Publisher Tycoon launch: - executable: Pub_Full_161208-2.exe type: none -'517320': +"517320": installDir: GunGirl 2 launch: - description: Play GunGirl 2 @@ -250097,7 +245765,7 @@ - description: Game Setup executable: GG2setup.exe type: none -'517330': +"517330": installDir: Stellar Interface launch: - config: @@ -250113,44 +245781,44 @@ description: Normal Launch executable: StellarInterface.sh type: none - - arguments: '-force-opengl' + - arguments: "-force-opengl" config: oslist: linux description: Force OpenGL executable: StellarInterface.sh type: none - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" config: oslist: windows description: Launch Graphics Window executable: StellarInterface.exe type: none -'517340': +"517340": installDir: Tank Tread launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TankTread.exe type: none - config: - osarch: '64' + osarch: "64" oslist: macos executable: TankTread.app/Contents/MacOS/TankTread type: none -'517350': +"517350": installDir: Squareface launch: - - arguments: '-D3D11' + - arguments: "-D3D11" config: oslist: windows - executable: Binaries\\Win32\\Squareface.exe + executable: "Binaries\\\\Win32\\\\Squareface.exe" type: default - config: oslist: macos executable: Squareface.app type: default -'517360': +"517360": installDir: The Secret Order 4 launch: - config: @@ -250159,13 +245827,13 @@ executable: TheSecretOrder4.exe type: none - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: TheSecretOrder4_i386 type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: TheSecretOrder4_amd64 @@ -250175,14 +245843,14 @@ description: Launch executable: mac_steam.app/Contents/MacOS/mac_steam type: none -'517370': +"517370": installDir: Tavernier launch: - config: oslist: windows executable: Tavernier.exe type: none -'517400': +"517400": installDir: VR Amazing Files Horror Hospital launch: - config: @@ -250190,15 +245858,15 @@ description: Lanuch executable: VR Amazing Files Horror Hospital.exe type: vr -'517460': +"517460": installDir: SteamHammerVR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SteamHammerVR.exe type: vr -'517470': +"517470": installDir: King of Booze launch: - config: @@ -250206,12 +245874,12 @@ oslist: windows executable: kingofbooze.exe type: default -'517480': +"517480": installDir: VHSoverdose launch: - executable: VHSoverdose.exe type: default -'517500': +"517500": installDir: Tactics Bludgeons Blessing launch: - config: @@ -250219,7 +245887,7 @@ description: Tactics game executable: myGame1.exe type: default -'517510': +"517510": installDir: Flatshot launch: - config: @@ -250228,7 +245896,7 @@ executable: Flatshot.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: flatshot_init.sh type: none @@ -250239,13 +245907,13 @@ executable: Flatshot.exe type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: Configure Inputs executable: flatshot_config.sh type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: Run with Optirun (Nvidia drivers) executable: flatshot_optirun.sh @@ -250257,25 +245925,25 @@ executable: Flatshot.exe type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: Play Flatshot Fullscreen executable: flatshot_fullscreen.sh type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: Play Flatshot Fullscreen with Optirun executable: flatshot_fullscreen.sh type: none -'517550': +"517550": installDir: The Enlightened League of Bone Builders and the Osseous Enigma launch: - config: oslist: windows - executable: Osseous Enigma\\OsseousEnigma.exe + executable: "Osseous Enigma\\\\OsseousEnigma.exe" type: vr -'517620': +"517620": installDir: Gooblins launch: - config: @@ -250283,71 +245951,46 @@ description: Test build 12-13-2016a executable: gooblins.exe type: vr -'517630': +"517630": installDir: Just Cause 4 launch: - - arguments: '--enable-crash-reporter' + - arguments: "--enable-crash-reporter" config: - betakey: >- - influencers-external, unstable, stable, unstable-dlc, see-locqa, see-qa1, see-compatqa, see-qa-amd, - see-qa-intel, see-qa-nvidia, pr-external, dev-branch1, rtm_gold_candidate, ms26-youtube, unstable-main, - stable-main + betakey: "influencers-external, unstable, stable, unstable-dlc, see-locqa, see-qa1, see-compatqa, see-qa-amd, see-qa-intel, see-qa-nvidia, pr-external, dev-branch1, rtm_gold_candidate, ms26-youtube, unstable-main, stable-main" description: Just Cause 4 (+crashtrapper legacy) - description_loc: - english: Just Cause 4 (+crashtrapper legacy) executable: JustCause4.exe type: default - - arguments: '--enable-crash-reporter' + - arguments: "--enable-crash-reporter" config: - betakey: >- - unstable, stable, unstable-dlc, see-locqa, see-qa1, see-compatqa, see-qa-amd, see-qa-intel, see-qa-nvidia, - pr-external, dev-branch1, rtm_gold_candidate, ms26-youtube, unstable-main, stable-main + betakey: "unstable, stable, unstable-dlc, see-locqa, see-qa1, see-compatqa, see-qa-amd, see-qa-intel, see-qa-nvidia, pr-external, dev-branch1, rtm_gold_candidate, ms26-youtube, unstable-main, stable-main" description: Just Cause 4 DX12 - description_loc: - english: Just Cause 4 DX12 executable: JustCause4DX12.exe - - arguments: '--enable-crash-reporter' + - arguments: "--enable-crash-reporter" config: - betakey: >- - unstable, stable, unstable-dlc, see-locqa, see-qa1, see-compatqa, see-qa-amd, see-qa-intel, see-qa-nvidia, - pr-external, dev-branch1, rtm_gold_candidate, ms26-youtube, see-qa1d, see-qa2d, unstable-main, stable-main + betakey: "unstable, stable, unstable-dlc, see-locqa, see-qa1, see-compatqa, see-qa-amd, see-qa-intel, see-qa-nvidia, pr-external, dev-branch1, rtm_gold_candidate, ms26-youtube, see-qa1d, see-qa2d, unstable-main, stable-main" description: Just Cause 4 (profile) - description_loc: - english: Just Cause 4 (profile) executable: JustCause4_P.exe - - arguments: '--enable-crash-reporter' + - arguments: "--enable-crash-reporter" config: - betakey: >- - unstable, stable, unstable-dlc, see-locqa, see-qa1, see-compatqa, see-qa-amd, see-qa-intel, see-qa-nvidia, - pr-external, dev-branch1, rtm_gold_candidate, ms26-youtube, unstable-main, stable-main + betakey: "unstable, stable, unstable-dlc, see-locqa, see-qa1, see-compatqa, see-qa-amd, see-qa-intel, see-qa-nvidia, pr-external, dev-branch1, rtm_gold_candidate, ms26-youtube, unstable-main, stable-main" description: Just Cause 4 DX12 (profile) - description_loc: - english: Just Cause 4 DX12 (profile) executable: JustCause4DX12_P.exe - - arguments: '--enable-crash-reporter' + - arguments: "--enable-crash-reporter" config: - betakey: >- - unstable, stable, unstable-dlc, see-locqa, see-qa1, see-compatqa, see-qa-amd, see-qa-intel, see-qa-nvidia, - pr-external, dev-branch1, rtm_gold_candidate, ms26-youtube, see-qa1d, see-qa2d, unstable-main, stable-main + betakey: "unstable, stable, unstable-dlc, see-locqa, see-qa1, see-compatqa, see-qa-amd, see-qa-intel, see-qa-nvidia, pr-external, dev-branch1, rtm_gold_candidate, ms26-youtube, see-qa1d, see-qa2d, unstable-main, stable-main" description: Just Cause 4 (release) - description_loc: - english: Just Cause 4 (release) executable: JustCause4_R.exe - - arguments: '--enable-crash-reporter' + - arguments: "--enable-crash-reporter" config: - betakey: >- - unstable, stable, unstable-dlc, see-locqa, see-qa1, see-compatqa, see-qa-amd, see-qa-intel, see-qa-nvidia, - pr-external, dev-branch1, rtm_gold_candidate, ms26-youtube, unstable-main, stable-main + betakey: "unstable, stable, unstable-dlc, see-locqa, see-qa1, see-compatqa, see-qa-amd, see-qa-intel, see-qa-nvidia, pr-external, dev-branch1, rtm_gold_candidate, ms26-youtube, unstable-main, stable-main" description: Just Cause 4 DX12 (release) - description_loc: - english: Just Cause 4 DX12 (release) executable: JustCause4DX12_R.exe - config: oslist: windows description: Play Just Cause 4 executable: JustCause4.exe type: default -'517660': +"517660": installDir: Drop Out 0 launch: - config: @@ -250362,21 +246005,21 @@ oslist: linux executable: Drop Out 0.x86 type: default -'517670': +"517670": installDir: Cowbots and Aliens launch: - config: oslist: windows executable: cba.exe type: vr -'517680': +"517680": installDir: adeadworldsdream launch: - config: oslist: windows executable: DeadWorldDream.exe type: default -'517700': +"517700": installDir: Custom Town launch: - config: @@ -250389,88 +246032,82 @@ description: Custom Town (No Wrapper) executable: htp.bat type: none -'517710': +"517710": installDir: Redout launch: - - arguments: '-vrdisable' + - arguments: "-vrdisable" config: - osarch: '64' + osarch: "64" oslist: windows executable: redout.exe type: default - - arguments: '-vr -steamvr' + - arguments: "-vr -steamvr" config: betakey: vredition - osarch: '64' + osarch: "64" oslist: windows executable: redout.exe type: vr - config: betakey: local - osarch: '64' + osarch: "64" oslist: windows description: Test executable: redout.bat type: option1 - - arguments: '-vr' + - arguments: "-vr" config: betakey: vredition - osarch: '64' + osarch: "64" oslist: windows executable: redout.exe type: othervr - config: betakey: testing - osarch: '64' + osarch: "64" oslist: windows description: Dev With Logs (testing only) - executable: redout\\Binaries\\Win64\\redout.exe + executable: "redout\\\\Binaries\\\\Win64\\\\redout.exe" type: option1 - config: betakey: testing - osarch: '64' + osarch: "64" oslist: windows description: Shipping With Debug Options (testing only) - executable: redout\\Binaries\\Win64\\redout-Win64-Shipping-test.exe + executable: "redout\\\\Binaries\\\\Win64\\\\redout-Win64-Shipping-test.exe" type: option1 - - arguments: '-osvr' + - arguments: "-osvr" config: betakey: vredition - osarch: '64' + osarch: "64" oslist: windows description: OSVR Mode - description_loc: - english: OSVR Mode executable: redout.exe type: option1 - - arguments: '-fovevr' + - arguments: "-fovevr" config: betakey: vredition - osarch: '64' + osarch: "64" oslist: windows description: in FoveVr Mode - description_loc: - english: in FoveVr Mode executable: redout.exe type: option1 - - arguments: '-vrdisable' + - arguments: "-vrdisable" config: betakey: vredition - osarch: '64' + osarch: "64" oslist: windows description: No VR - description_loc: - english: No VR executable: redout.exe type: default -'517720': +"517720": installDir: Epic Tavern launch: - config: oslist: windows executable: EpicTavern.exe type: none -'517770': +"517770": installDir: Caketomino launch: - config: @@ -250478,7 +246115,7 @@ description: Launch executable: Caketomino.exe type: vr -'517780': +"517780": installDir: Ogre launch: - config: @@ -250489,26 +246126,26 @@ oslist: macos executable: Ogre.app type: default -'517790': +"517790": installDir: Caesar 3 launch: - executable: SierraLauncher.exe type: none -'517810': +"517810": installDir: Caesar 4 launch: - executable: SierraLauncher.exe type: none -'517860': +"517860": installDir: Fly to KUMA MAKER launch: - - arguments: '-windowed' + - arguments: "-windowed" config: - osarch: '64' + osarch: "64" oslist: windows executable: FlytoKUMA_MAKER.exe type: vr -'517910': +"517910": installDir: Sisyphus Reborn launch: - config: @@ -250525,17 +246162,17 @@ type: default - config: oslist: windows - ownsdlc: '530140' + ownsdlc: "530140" description: Deleted Scenes - executable: \\Extras\\SisyphusExtras.exe + executable: "\\\\Extras\\\\SisyphusExtras.exe" type: option1 - config: oslist: linux - ownsdlc: '530140' + ownsdlc: "530140" description: Deleted Scenes - executable: \\Extras\\SisyphusExtras + executable: "\\\\Extras\\\\SisyphusExtras" type: option1 -'517930': +"517930": installDir: The Castles of Dr. Creep launch: - config: @@ -250554,11 +246191,11 @@ oslist: windows executable: Readme.pdf type: manual -'517960': +"517960": installDir: Crate Punks launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: cratepunks_for_windows_x64.exe type: default @@ -250567,97 +246204,97 @@ executable: cratepunks_for_linux.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: cratepunks_for_windows_x86.exe type: default -'517970': +"517970": installDir: CRANGA! Harbor Frenzy launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: CRANGA.exe type: vr -'517990': +"517990": installDir: CityVR launch: - - arguments: '-screen-width=1024 -screen-height=576' + - arguments: "-screen-width=1024 -screen-height=576" config: - osarch: '64' + osarch: "64" oslist: windows executable: CityVR.exe type: vr -'518000': +"518000": installDir: EdgeGuardian launch: - config: oslist: windows executable: edge_guardian.exe type: vr -'518030': +"518030": installDir: Aim Hero launch: - config: oslist: windows executable: Aim Hero.exe type: default -'518040': +"518040": installDir: VolleyballUnbound launch: - config: oslist: windows executable: VolleyballUnbound.exe type: default -'518060': +"518060": installDir: Chess Ultra launch: - - arguments: '-nohmd' + - arguments: "-nohmd" config: - osarch: '64' + osarch: "64" oslist: windows - executable: Chess2\\Binaries\\Win64\\Chess2-Win64-Shipping.exe + executable: "Chess2\\\\Binaries\\\\Win64\\\\Chess2-Win64-Shipping.exe" type: default - - arguments: '-vr' + - arguments: "-vr" config: - osarch: '64' + osarch: "64" oslist: windows - executable: Chess2\\Binaries\\Win64\\Chess2-Win64-Shipping.exe + executable: "Chess2\\\\Binaries\\\\Win64\\\\Chess2-Win64-Shipping.exe" type: othervr - - arguments: '-vr' + - arguments: "-vr" config: - osarch: '64' + osarch: "64" oslist: windows - executable: Chess2\\Binaries\\Win64\\Chess2-Win64-Shipping.exe + executable: "Chess2\\\\Binaries\\\\Win64\\\\Chess2-Win64-Shipping.exe" type: vr - - arguments: '-nohmd' + - arguments: "-nohmd" config: - osarch: '32' + osarch: "32" oslist: windows - executable: Chess2\\Binaries\\Win32\\Chess2-Win32-Shipping.exe + executable: "Chess2\\\\Binaries\\\\Win32\\\\Chess2-Win32-Shipping.exe" type: default -'518100': {} -'518110': +"518100": {} +"518110": installDir: Ahros One warrior chronicle launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: VR.exe type: vr - config: - osarch: '64' + osarch: "64" oslist: windows executable: VR.exe type: othervr -'518120': - installDir: Chimpact 1 - Chuck's Adventure +"518120": + installDir: "Chimpact 1 - Chuck's Adventure" launch: - config: oslist: windows executable: ChimpactClassic.exe type: default -'518130': +"518130": installDir: How to shoot a criminal launch: - config: @@ -250668,15 +246305,15 @@ oslist: macos executable: Htsac.app type: default -'518140': +"518140": installDir: Lectrovolt II launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: nw.exe type: default -'518150': +"518150": installDir: Intruder launch: - config: @@ -250684,40 +246321,40 @@ executable: Intruder.app type: none - config: - osarch: '64' + osarch: "64" oslist: windows executable: IntruderLauncher.exe type: default -'518190': +"518190": installDir: Sky Jac launch: - config: oslist: windows executable: EarlyAccessBuild.exe type: vr -'518280': +"518280": installDir: Dead End Junction launch: - executable: krkr.eXe type: default -'518320': +"518320": installDir: Soko Match launch: - executable: SokoMatch.exe type: none -'518580': +"518580": installDir: Accounting launch: - executable: Accounting.exe type: vr -'518610': +"518610": installDir: Live In Color launch: - config: oslist: windows executable: Game.exe type: vr -'518620': +"518620": installDir: Ballistick launch: - config: @@ -250730,10 +246367,10 @@ type: default - config: oslist: macos - executable: Ballistick.app\\Contents\\MacOS\\Ballistick + executable: "Ballistick.app\\\\Contents\\\\MacOS\\\\Ballistick" type: default -'518640': {} -'518650': +"518640": {} +"518650": installDir: illumine launch: - config: @@ -250744,34 +246381,34 @@ oslist: linux executable: runner type: default -'518660': +"518660": installDir: Zone4 launch: - - arguments: '-in-GSPSteam-id-pw-sixtar:0000' + - arguments: "-in-GSPSteam-id-pw-sixtar:0000" config: oslist: windows executable: Zone4_GSP.exe type: none -'518670': +"518670": installDir: Intensive Exposure launch: - config: oslist: windows executable: IntensiveExposure.exe type: default -'518680': +"518680": installDir: Kapsul Infinite launch: - executable: kapsul_infinite.exe type: none -'518720': +"518720": installDir: Overkill VR launch: - arguments: EnableVR description: Launch Overkill VR executable: overkillVR.exe type: vr -'518730': +"518730": installDir: Zombo Buster Rising launch: - config: @@ -250786,80 +246423,60 @@ oslist: linux executable: zbr.x86 type: default -'518740': +"518740": installDir: Why is the Princess in a Magic Forest launch: - config: - osarch: '32' + osarch: "32" oslist: windows - executable: Binaries\\Win32\\UDK.exe + executable: "Binaries\\\\Win32\\\\UDK.exe" type: default -'518790': +"518790": installDir: theHunterCotW launch: - - arguments: '--enable-crash-reporter' + - arguments: "--enable-crash-reporter" config: - osarch: '64' + osarch: "64" oslist: windows - description: 'the Hunter: Call of the Wild' + description: "the Hunter: Call of the Wild" executable: theHunterCotW_F.exe type: default - config: - betakey: >- - thp_main_latest, thp_main_stable, thp_marketing_1, thp_marketing_2, thp_playtest, thp_qa_live, thp_RC, - thp_staging_latest, thp_staging_stable, thp_qa_testbranch_1, thp_qa_testbranch_2, thp_qa_testbranch_3, - thp_qa_testbranch_4, thp_main, thp_staging, thp_dev_branch, thp_ur_test - osarch: '64' + betakey: "thp_main_latest, thp_main_stable, thp_marketing_1, thp_marketing_2, thp_playtest, thp_qa_live, thp_RC, thp_staging_latest, thp_staging_stable, thp_qa_testbranch_1, thp_qa_testbranch_2, thp_qa_testbranch_3, thp_qa_testbranch_4, thp_main, thp_staging, thp_dev_branch, thp_ur_test" + osarch: "64" oslist: windows description: Release.exe - description_loc: - english: Release.exe executable: theHunterCotW_R.exe type: option1 - config: - betakey: >- - thp_main_latest, thp_main_stable, thp_playtest, thp_qa_live, thp_RC, thp_staging_latest, thp_staging_stable, - thp_qa_testbranch_1, thp_qa_testbranch_2, thp_qa_testbranch_3, thp_qa_testbranch_4, thp_main, thp_staging, - thp_dev_branch + betakey: "thp_main_latest, thp_main_stable, thp_playtest, thp_qa_live, thp_RC, thp_staging_latest, thp_staging_stable, thp_qa_testbranch_1, thp_qa_testbranch_2, thp_qa_testbranch_3, thp_qa_testbranch_4, thp_main, thp_staging, thp_dev_branch" description: Profile exe - description_loc: - english: Profile exe executable: theHunterCotW_P.exe type: option2 - config: betakey: huntinglodge_streams - osarch: '64' + osarch: "64" oslist: windows description: Release.exe executable: theHunterCotW_R.exe type: option1 - - arguments: '--social-host localhost --social-port 8080 --social-disable-ssl' + - arguments: "--social-host localhost --social-port 8080 --social-disable-ssl" config: - betakey: >- - thp_main_latest, thp_main_stable, thp_playtest, thp_qa_live, thp_RC, thp_staging_latest, thp_staging_stable, - thp_qa_testbranch_1, thp_qa_testbranch_2, thp_qa_testbranch_3, thp_qa_testbranch_4, thp_main, thp_staging, - thp_dev_branch - osarch: '64' + betakey: "thp_main_latest, thp_main_stable, thp_playtest, thp_qa_live, thp_RC, thp_staging_latest, thp_staging_stable, thp_qa_testbranch_1, thp_qa_testbranch_2, thp_qa_testbranch_3, thp_qa_testbranch_4, thp_main, thp_staging, thp_dev_branch" + osarch: "64" oslist: windows description: Release.exe (locally-running social server) - description_loc: - english: Release.exe (locally-running social server) executable: theHunterCotW_R.exe type: option2 - - arguments: '--social-host social-server-integration.kube.avalanchestudios.se' + - arguments: "--social-host social-server-integration.kube.avalanchestudios.se" config: - betakey: >- - thp_main_latest, thp_main_stable, thp_playtest, thp_qa_live, thp_RC, thp_staging_latest, thp_staging_stable, - thp_qa_testbranch_1, thp_qa_testbranch_2, thp_qa_testbranch_3, thp_qa_testbranch_4, thp_main, thp_staging, - thp_dev_branch - osarch: '64' + betakey: "thp_main_latest, thp_main_stable, thp_playtest, thp_qa_live, thp_RC, thp_staging_latest, thp_staging_stable, thp_qa_testbranch_1, thp_qa_testbranch_2, thp_qa_testbranch_3, thp_qa_testbranch_4, thp_main, thp_staging, thp_dev_branch" + osarch: "64" oslist: windows description: Release.exe (connecting to int social server) - description_loc: - english: Release.exe (connecting to int social server) executable: theHunterCotW_R.exe type: option3 -'518800': +"518800": installDir: Lone Leader launch: - config: @@ -250867,36 +246484,36 @@ description: Launch executable: loneleader.exe type: none -'518920': +"518920": installDir: Surgeon Simulator Experience Reality launch: - config: oslist: windows executable: SSER.exe type: vr -'519020': +"519020": installDir: Shuttle Siege launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: win64\\nw.exe + executable: "win64\\\\nw.exe" type: default - config: - osarch: '32' + osarch: "32" oslist: windows description: Shuttle Siege for Windows x32 - executable: win32\\nw.exe + executable: "win32\\\\nw.exe" type: option1 -'519030': - installDir: Don't let go! +"519030": + installDir: "Don't let go!" launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: DontLetGo.exe type: vr -'519080': +"519080": installDir: SodaGirls launch: - config: @@ -250908,16 +246525,16 @@ executable: SodaGirls.app/Contents/MacOS/SodaGirls type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: SodaGirls.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: SodaGirls.x86 type: default -'519140': +"519140": installDir: Minds Eyes launch: - config: @@ -250925,65 +246542,65 @@ description: Launch executable: MindsEyesLaunch.exe type: none -'519160': +"519160": installDir: Toon Ocean VR launch: - - arguments: '-windowed' + - arguments: "-windowed" config: - osarch: '64' + osarch: "64" oslist: windows executable: ToonOceanVR.exe type: vr - - arguments: '-windowed' + - arguments: "-windowed" config: - osarch: '64' + osarch: "64" oslist: windows executable: ToonOceanVR.exe type: othervr -'519170': +"519170": installDir: The Journey Home launch: - config: oslist: windows executable: The Journey Home.exe type: vr -'519180': +"519180": installDir: Streamer Simulator launch: - config: oslist: windows executable: Streamer Simulator.exe type: none -'519190': +"519190": installDir: Next Day Survival launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: nextday.exe type: default - config: betakey: develop - osarch: '64' + osarch: "64" oslist: windows description: logs enabled executable: nextday.exe type: option1 - config: betakey: develop - osarch: '64' + osarch: "64" oslist: windows description: EAC Disabled executable: nextday_game.exe type: option2 - config: betakey: beta_public - osarch: '64' + osarch: "64" oslist: windows description: logs enabled executable: nextday.exe type: option1 -'519200': +"519200": installDir: KittyKittyBoingBoing launch: - config: @@ -250991,36 +246608,36 @@ executable: nw.exe type: none - config: - osarch: '64' + osarch: "64" oslist: macos - executable: kittykittyboingboing.app\\Contents\\MacOS\\nwjs + executable: "kittykittyboingboing.app\\\\Contents\\\\MacOS\\\\nwjs" type: none - config: oslist: linux executable: nw type: none -'519490': +"519490": installDir: NBA2KVRX launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: NBA 2KVR Experience executable: NBA2KVRX.exe type: vr -'519540': +"519540": installDir: Virtual Islands launch: - executable: 9holes_v2.2.exe type: vr -'519550': +"519550": installDir: SPACE DVRTS launch: - config: oslist: windows executable: SPACE DVRTS 1.0.exe type: vr -'519860': +"519860": installDir: Dusk launch: - config: @@ -251034,7 +246651,7 @@ executable: Duskworld.exe type: option2 - config: - osarch: '64' + osarch: "64" oslist: linux description: DUSK (singleplayer) executable: dusk.x86_64 @@ -251042,8 +246659,6 @@ - config: oslist: linux description: DUSKWORLD - description_loc: - english: DUSKWORLD executable: duskworld.x86_64 type: option2 - config: @@ -251058,12 +246673,12 @@ type: option2 - config: betakey: dusk_sdk - osarch: '64' + osarch: "64" oslist: windows description: Launch Dusk SDK executable: SDK/bin/win_x64/Dusk.exe type: none -'519870': +"519870": installDir: Flying Pengy launch: - config: @@ -251072,9 +246687,9 @@ type: default - config: oslist: macos - executable: Flying Pengy.app\\Contents\\MacOS\\Flying Pengy + executable: "Flying Pengy.app\\\\Contents\\\\MacOS\\\\Flying Pengy" type: default -'519890': +"519890": installDir: Star Boss launch: - config: @@ -251083,13 +246698,13 @@ type: default - config: oslist: linux - executable: '%command%' + executable: "%command%" type: default - config: oslist: macos executable: game.exe type: default -'519930': +"519930": installDir: Social Interaction Trainer launch: - config: @@ -251101,37 +246716,37 @@ executable: Social Interaction Trainer.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Social Interaction Trainer.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Social Interaction Trainer.x86_64 type: default -'519940': +"519940": installDir: KubzVR launch: - config: oslist: windows executable: Kubz.exe type: vr -'519980': +"519980": installDir: TrainsVR launch: - executable: Trains VR.exe type: vr -'519990': +"519990": installDir: Zenza launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: zenza32.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: zenza64.exe type: default @@ -251143,30 +246758,30 @@ oslist: linux executable: zenza.x86 type: default -'520010': +"520010": installDir: Climbey launch: - config: oslist: windows executable: Climbey.exe type: vr -'520080': +"520080": installDir: Your Star launch: - config: oslist: windows executable: YourStar.exe type: none -'520120': +"520120": installDir: Vanguard_V launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Vanguard_V.exe type: vr -'520150': - installDir: A Midsummer Night's Choice +"520150": + installDir: "A Midsummer Night's Choice" launch: - config: oslist: windows @@ -251174,46 +246789,46 @@ type: none - config: oslist: macos - executable: A Midsummer Night's Choice.app/Contents/MacOS/A Midsummer Night's Choice + executable: "A Midsummer Night's Choice.app/Contents/MacOS/A Midsummer Night's Choice" type: none - config: oslist: linux executable: Midsummer type: none -'520230': +"520230": installDir: TwinForce launch: - - arguments: ' -window-mode exclusive -screen-fullscreen 1 -vrmode stereo' + - arguments: " -window-mode exclusive -screen-fullscreen 1 -vrmode stereo" config: oslist: windows executable: twinforce.exe type: default - - arguments: '-screen-fullscreen 0 -vrmode openvr' + - arguments: "-screen-fullscreen 0 -vrmode openvr" config: oslist: windows executable: twinforce.exe type: vr -'520250': +"520250": installDir: Visitors launch: - config: oslist: windows executable: Visitors.exe type: default -'520270': +"520270": installDir: ThrillsAndChillsCoaster launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Ultimate_Coaster.exe type: vr -'520290': +"520290": installDir: Fright Light launch: - executable: LightsOnCrazies.exe type: none -'520300': +"520300": installDir: Underworld Dungeon launch: - config: @@ -251222,13 +246837,13 @@ type: none - config: oslist: macos - executable: underworldDungeon.app\\Contents\\MacOS\\underworldDungeon + executable: "underworldDungeon.app\\\\Contents\\\\MacOS\\\\underworldDungeon" type: none - config: oslist: linux executable: underworld_dungeon.x86 type: none -'520370': +"520370": installDir: Pigeon Fight launch: - config: @@ -251243,7 +246858,7 @@ oslist: macos executable: PigeonFight.app type: default -'520380': +"520380": installDir: Camper launch: - config: @@ -251251,7 +246866,7 @@ description: Launch executable: Camper.exe type: none -'520400': +"520400": installDir: XMODULE launch: - config: @@ -251262,27 +246877,27 @@ oslist: macos executable: XMODULE.app type: default -'520440': +"520440": installDir: GUILTY GEAR Xrd -REVELATOR- launch: - executable: BootGGXrd.bat type: none -'520470': +"520470": installDir: MusicInside launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: MusicInside.exe type: vr -'520510': +"520510": installDir: Tribocalypse VR launch: - config: oslist: windows executable: TribocalypseVR.exe type: vr -'520520': +"520520": installDir: It Comes Around - A Kinetic Novel launch: - config: @@ -251297,7 +246912,7 @@ oslist: linux executable: ItComesAround.sh type: none -'520530': +"520530": installDir: INTERSHELTER launch: - config: @@ -251313,7 +246928,7 @@ betakey: shelter2 executable: Intershelter.exe type: none -'520540': +"520540": installDir: Tribloos3 launch: - config: @@ -251324,15 +246939,15 @@ oslist: macos executable: TheTribloos3.app type: none -'520590': +"520590": installDir: The Journey Of Forgotten Memories launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: TheJourney.exe type: default -'520600': +"520600": installDir: Purrfect Date launch: - config: @@ -251343,19 +246958,19 @@ oslist: macos executable: Purrfect Date.app type: default -'520610': +"520610": installDir: Drive on Moscow launch: - config: oslist: windows executable: autorun.exe type: default -'520660': +"520660": installDir: Wrack Exoverse launch: - executable: Exoverse_steam.exe type: none -'520670': +"520670": installDir: Strikers Edge launch: - config: @@ -251366,7 +246981,7 @@ oslist: macos executable: StrikersEdge.app type: none -'520680': +"520680": installDir: Lost Cities launch: - config: @@ -251384,7 +246999,7 @@ description: Launch executable: LostCities type: none -'520720': +"520720": installDir: Dear Esther Landmark Edition launch: - config: @@ -251397,16 +247012,16 @@ description: Launch executable: DearEsther.app type: none -'520750': +"520750": installDir: DWVR launch: - - arguments: '-vr' + - arguments: "-vr" executable: DWVR.exe type: vr - - arguments: '-vr' + - arguments: "-vr" executable: DWVR.exe type: othervr -'520810': +"520810": installDir: MetalNoise launch: - config: @@ -251414,14 +247029,14 @@ description: Launch executable: MetalNoise.exe type: default -'520820': - installDir: Dawn's Light +"520820": + installDir: "Dawn's Light" launch: - config: oslist: windows executable: DawnsLight.exe type: default -'520850': +"520850": installDir: Lost in Secular Love launch: - config: @@ -251432,98 +247047,98 @@ english: Lost in Secular Love schinese: 尘沙惑 tchinese: 塵沙惑 -'520860': +"520860": installDir: Impulse of War launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: iow.exe type: none - config: - osarch: '32' + osarch: "32" oslist: windows executable: iofw.exe type: none -'520910': +"520910": installDir: Kokurase launch: - executable: Game.exe type: default - config: - ownsdlc: '558640' + ownsdlc: "558640" description: Episode 2 executable: Episode2/game.exe type: option1 - config: - ownsdlc: '558641' + ownsdlc: "558641" description: Episode 3 executable: Episode3/game.exe type: option2 -'520930': +"520930": installDir: Pong It! VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: PongItVR.exe type: vr -'520940': +"520940": installDir: MX vs. ATV NEXT launch: - - arguments: '-nohmd' + - arguments: "-nohmd" config: - osarch: '64' + osarch: "64" oslist: windows executable: MxNext.exe type: default - - arguments: '-windowed -log' + - arguments: "-windowed -log" config: betakey: nightly - osarch: '64' + osarch: "64" oslist: windows description: MX vs ATV NEXT w/ Log executable: MxNext.exe type: option1 - - arguments: '-windowed -log' + - arguments: "-windowed -log" config: betakey: refactor - osarch: '64' + osarch: "64" oslist: windows description: MX vs ATV NEXT Refactor executable: MxGameTemplate.exe type: option1 - - arguments: '-vr' + - arguments: "-vr" config: betakey: mxvrtest - osarch: '64' + osarch: "64" oslist: windows description: MX vs ATV All Out VR executable: MxNext.exe type: option2 -'520950': +"520950": installDir: Drift21 launch: - config: oslist: windows executable: Drift21.exe type: default -'520960': +"520960": installDir: FeArea launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SmashHash.exe type: default -'520990': +"520990": installDir: Barrow Hill The Dark Path launch: - config: oslist: windows executable: TheDarkPath.exe type: none -'521000': +"521000": installDir: MiesIlmanHousuja2 launch: - config: @@ -251536,12 +247151,12 @@ description: KukkuuMac executable: GlobeRush.app type: default -'521090': +"521090": installDir: Industry Giant launch: - executable: giant.exe type: none -'521100': +"521100": installDir: MinosMaze launch: - config: @@ -251554,16 +247169,16 @@ type: none - config: oslist: macos - executable: MinosMaze.app\\Contents\\MacOS\\MinosMaze + executable: "MinosMaze.app\\\\Contents\\\\MacOS\\\\MinosMaze" type: none -'521110': +"521110": installDir: Zombie Birds First Encounter Halloween launch: - config: oslist: windows executable: ZombieBirdsHalloween.exe type: default -'521130': +"521130": installDir: Dots eXtreme launch: - config: @@ -251578,35 +247193,35 @@ oslist: linux executable: DotsXtreme type: default -'521140': +"521140": installDir: King Machine launch: - config: oslist: windows executable: kingmachine.exe type: default -'521150': +"521150": installDir: Another Brick in the Mall launch: - config: oslist: windows executable: launch.exe type: default - - arguments: '-safemode' + - arguments: "-safemode" config: oslist: windows description: Safe mode executable: launch.exe type: option1 -'521190': {} -'521200': +"521190": {} +"521200": installDir: Epic Battle Fantasy 3 launch: - config: oslist: windows executable: Epic Battle Fantasy 3.exe type: default -'521210': +"521210": installDir: Timore 5 launch: - config: @@ -251615,23 +247230,23 @@ type: default - config: oslist: windows - ownsdlc: '639150' + ownsdlc: "639150" executable: Timore 5 The Flood.zip.exe type: default -'521230': +"521230": installDir: Stone Age Wars launch: - executable: game.exe type: none -'521250': {} -'521280': +"521250": {} +"521280": installDir: Atlantis Pearls of the Deep launch: - config: oslist: windows executable: pearls.exe type: default -'521300': +"521300": installDir: The Electric Shocktopus launch: - config: @@ -251643,29 +247258,29 @@ executable: Shocktopus.app type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: Shocktopus.x86_64 type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: Shocktopus.x86 type: none -'521320': +"521320": installDir: Final Warrior Quest launch: - executable: game.exe type: default -'521330': +"521330": installDir: Tuebor launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Tuebor.exe type: default -'521340': +"521340": installDir: True or False launch: - config: @@ -251677,16 +247292,16 @@ executable: TrueOrFalse.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: TrueOrFalse.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: TrueOrFalse.x86_64 type: default -'521350': +"521350": installDir: Use Your Words launch: - config: @@ -251695,10 +247310,10 @@ type: default - config: oslist: macos - executable: uyw.app\\Contents\\MacOS\\uyw + executable: "uyw.app\\\\Contents\\\\MacOS\\\\uyw" type: default -'521380': {} -'521420': +"521380": {} +"521420": installDir: Bunka no Kenkyu launch: - config: @@ -251709,21 +247324,21 @@ oslist: macos executable: Revival of Queen Leyak.app type: default -'521430': +"521430": installDir: Super Switch launch: - config: oslist: windows executable: superswitch.exe type: default -'521450': +"521450": installDir: Hunted One Step Too Far launch: - config: oslist: windows executable: hunted one step too far.exe type: default -'521470': +"521470": installDir: Magical Otoge Ciel launch: - config: @@ -251738,7 +247353,7 @@ oslist: linux executable: Magical Otoge Ciel.sh type: none -'521500': +"521500": installDir: Sakura Space launch: - config: @@ -251751,14 +247366,14 @@ type: none - executable: Sakura Space.exe type: none -'521510': +"521510": installDir: MAGICALSPIRAL launch: - executable: MagicalSpiral.exe type: default - executable: Startup.exe type: config -'521540': +"521540": installDir: This World Unknown launch: - config: @@ -251773,7 +247388,7 @@ oslist: macos executable: This World Unknown.app type: none -'521560': +"521560": installDir: The Mystery Of Woolley Mountain launch: - config: @@ -251782,42 +247397,42 @@ type: default - config: oslist: macos - executable: The Mystery Of Woolley Mountain.app\\Contents\\MacOS\\The Mystery Of Woolley Mountain + executable: "The Mystery Of Woolley Mountain.app\\\\Contents\\\\MacOS\\\\The Mystery Of Woolley Mountain" type: default - config: - ownsdlc: '1264780' + ownsdlc: "1264780" executable: The Mystery Of Woolley Mountain - Art Book.pdf -'521570': +"521570": installDir: You Have 10 Seconds 2 launch: - config: oslist: windows executable: You Have 10 Seconds 2 Steam Release.exe type: none -'521580': +"521580": installDir: Where are my Internets launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows executable: nw.exe type: none - config: oslist: macos - executable: Game.app\\Contents\\MacOS\\nwjs + executable: "Game.app\\\\Contents\\\\MacOS\\\\nwjs" type: none - config: oslist: linux executable: nw type: none -'521590': +"521590": installDir: Subterra launch: - config: oslist: windows executable: Subterra.exe type: none -'521620': +"521620": installDir: Alchemist Adventure launch: - config: @@ -251827,7 +247442,7 @@ nameLocalized: schinese: 炼金术师大冒险 tchinese: 煉金術士大冒險 -'521630': +"521630": installDir: Toadled launch: - config: @@ -251838,7 +247453,7 @@ oslist: macos executable: ToadledMac.app type: default -'521650': +"521650": installDir: GenghisKhan2 launch: - config: @@ -251847,7 +247462,7 @@ type: default nameLocalized: japanese: 蒼き狼と白き牝鹿・ジンギスカン -'521660': +"521660": installDir: Nobunaga2 launch: - config: @@ -251856,7 +247471,7 @@ type: none nameLocalized: japanese: 信長の野望・全国版 -'521670': +"521670": installDir: San1 launch: - config: @@ -251865,7 +247480,7 @@ type: none nameLocalized: japanese: 三國志 -'521680': +"521680": installDir: Suikoden1 launch: - config: @@ -251874,7 +247489,7 @@ type: default nameLocalized: japanese: 水滸伝・天命の誓い -'521690': +"521690": installDir: San2 launch: - config: @@ -251883,7 +247498,7 @@ type: default nameLocalized: japanese: 三國志II -'521700': +"521700": installDir: Nobunaga3 launch: - config: @@ -251892,7 +247507,7 @@ type: default nameLocalized: japanese: 信長の野望・戦国群雄伝 -'521710': +"521710": installDir: San3 launch: - config: @@ -251901,7 +247516,7 @@ type: default nameLocalized: japanese: 三國志III -'521720': +"521720": installDir: Daikoukai1 launch: - config: @@ -251910,7 +247525,7 @@ type: none nameLocalized: japanese: 大航海時代 -'521730': +"521730": installDir: San4WPK launch: - config: @@ -251919,7 +247534,7 @@ type: none nameLocalized: japanese: 三國志IV with パワーアップキット -'521740': +"521740": installDir: Nobunaga4 launch: - config: @@ -251928,7 +247543,7 @@ type: default nameLocalized: japanese: 信長の野望・武将風雲録 -'521750': +"521750": installDir: San5WPK launch: - config: @@ -251937,7 +247552,7 @@ type: none nameLocalized: japanese: 三國志V with パワーアップキット -'521760': +"521760": installDir: Taikou1 launch: - config: @@ -251946,14 +247561,14 @@ type: none nameLocalized: japanese: 太閤立志伝 -'521790': +"521790": installDir: Ancient Frontier launch: - config: oslist: windows executable: AncFrontier.exe type: default -'521800': +"521800": installDir: Command Ops 2 launch: - config: @@ -251986,15 +247601,15 @@ description: Launch Steam Workshop Manager executable: WorkshopManager.exe type: none -'521830': {} -'521860': +"521830": {} +"521860": installDir: Lop Nor Zombie VR launch: - config: oslist: windows - executable: GearVR_Ori\\Binaries\\Win64\\GearVR_Ori-Win64-Shipping.exe + executable: "GearVR_Ori\\\\Binaries\\\\Win64\\\\GearVR_Ori-Win64-Shipping.exe" type: vr -'521890': +"521890": installDir: Hello Neighbor launch: - config: @@ -252003,60 +247618,60 @@ type: default - config: betakey: beta1 - osarch: '64' + osarch: "64" oslist: windows executable: Helloneighbor.exe type: default - config: betakey: alpha3 - osarch: '64' + osarch: "64" oslist: windows executable: HelloNeighborReborn.exe type: default - config: betakey: alpha2 - osarch: '64' + osarch: "64" oslist: windows executable: HelloNeighborReborn.exe type: default - config: betakey: alpha4 - osarch: '64' + osarch: "64" oslist: windows executable: HelloNeighborReborn.exe type: default -'521920': - installDir: Death's Hangover +"521920": + installDir: "Death's Hangover" launch: - config: oslist: windows - executable: Death's Hangover.exe + executable: "Death's Hangover.exe" type: default -'521930': {} -'521940': {} -'521950': +"521930": {} +"521940": {} +"521950": installDir: Bullet Sorrow VR launch: - config: oslist: windows executable: Guns/Binaries/Win64/Guns-Win64-Shipping.exe type: vr -'521980': +"521980": installDir: Autumn Dream launch: - config: oslist: windows executable: Autumn Dream.exe type: none -'521990': +"521990": installDir: Galactic Storm launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: GalacticStorm.exe type: default -'522000': +"522000": installDir: Blind Blades launch: - config: @@ -252065,23 +247680,23 @@ type: default - config: oslist: macos - executable: BlindBlades.app\\Contents\\MacOS\\BlindBlades + executable: "BlindBlades.app\\\\Contents\\\\MacOS\\\\BlindBlades" type: default -'522010': +"522010": installDir: Lost Crew launch: - config: oslist: windows executable: IntFict.exe type: default -'522020': +"522020": installDir: Blue Effect VR launch: - config: oslist: windows executable: BlueEffect.exe type: vr -'522030': +"522030": installDir: EclipseNDftG launch: - config: @@ -252092,7 +247707,7 @@ oslist: macos executable: Eclipse.app/Contents/MacOS/Eclipse type: default -'522040': +"522040": installDir: Princess Remedy In A Heap of Trouble launch: - config: @@ -252104,18 +247719,18 @@ executable: rem2.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: rem2.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: rem2.x86_64 type: default -'522050': {} -'522070': {} -'522080': +"522050": {} +"522070": {} +"522080": installDir: GemstoneKeeper launch: - config: @@ -252128,14 +247743,14 @@ description: Linux Specific Build executable: runGemstoneKeeper.sh type: default -'522090': +"522090": installDir: Medieval Defenders launch: - config: oslist: windows executable: TD.exe type: default -'522130': +"522130": installDir: LandTraveller launch: - config: @@ -252150,7 +247765,7 @@ oslist: macos executable: landt-osx.sh type: default -'522200': +"522200": installDir: Loading Human launch: - config: @@ -252161,7 +247776,7 @@ oslist: windows executable: LHChapterOne.exe type: othervr -'522210': +"522210": installDir: Serial Cleaner launch: - config: @@ -252170,7 +247785,7 @@ type: default - config: oslist: macos - executable: Cleaner.app\\Contents\\MacOS\\Cleaner + executable: "Cleaner.app\\\\Contents\\\\MacOS\\\\Cleaner" type: default - config: oslist: linux @@ -252179,10 +247794,10 @@ nameLocalized: schinese: 连环清洁工 / Serial Cleaner tchinese: 連環清潔工 / Serial Cleaner -'522220': +"522220": installDir: InMind 2 launch: - - arguments: '-vrmode None' + - arguments: "-vrmode None" config: oslist: windows executable: InMind 2.exe @@ -252200,16 +247815,16 @@ executable: InMind 2.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: InMind 2.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: InMind 2.x86_64 type: default -'522230': +"522230": installDir: The Fishing Club 3D launch: - config: @@ -252220,21 +247835,21 @@ oslist: macos executable: The Fishing Club 3D.app type: none -'522240': +"522240": installDir: Pool Panic launch: - config: oslist: windows executable: PoolPanic.exe type: none -'522250': +"522250": installDir: Quick Draw launch: - config: oslist: windows executable: Quick Draw.exe type: vr -'522280': +"522280": installDir: How To Make Your Grandpa Happy launch: - config: @@ -252245,7 +247860,7 @@ oslist: macos executable: How to Make Your Grandpa Happy.app type: default -'522300': +"522300": installDir: Polywings launch: - config: @@ -252253,16 +247868,16 @@ executable: Polywings.app type: none - config: - osarch: '32' + osarch: "32" oslist: windows executable: Polywings.exe type: none - config: - osarch: '64' + osarch: "64" oslist: windows executable: Polywings.exe type: none -'522340': +"522340": installDir: Ghostlords launch: - config: @@ -252273,14 +247888,14 @@ - config: oslist: macos description: Play Ghostlords - executable: Ghostlords.app\\Contents\\MacOS\\Ghostlords + executable: "Ghostlords.app\\\\Contents\\\\MacOS\\\\Ghostlords" type: default - config: oslist: linux description: Play Ghostlords executable: ghostlords.x86_64 type: default -'522470': +"522470": installDir: The House of Da Vinci launch: - config: @@ -252289,16 +247904,16 @@ type: none - config: oslist: macos - executable: The House of da Vinci.app\\Contents\\MacOS\\The House of da Vinci + executable: "The House of da Vinci.app\\\\Contents\\\\MacOS\\\\The House of da Vinci" type: none -'522490': - installDir: Carrie's Order Up! +"522490": + installDir: "Carrie's Order Up!" launch: - config: oslist: windows executable: CarriesOrderUp.exe type: default -'522530': +"522530": installDir: Revenant Saga launch: - config: @@ -252313,26 +247928,26 @@ japanese: レヴナントサーガ schinese: 还魂尸传奇 tchinese: 還魂屍傳奇 -'522570': +"522570": installDir: The Last Hope launch: - config: oslist: windows executable: The Last Hope.exe type: default -'522590': +"522590": installDir: Near Midnight launch: - executable: Near Midnight.exe type: none -'522610': +"522610": installDir: Lord of the Seal launch: - config: oslist: windows executable: Game.exe type: none -'522660': +"522660": installDir: SnookerWorld launch: - config: @@ -252343,85 +247958,85 @@ oslist: macos executable: SNOK.app/Contents/MacOS/SNOK type: none -'522690': +"522690": installDir: In Fear I Trust launch: - config: oslist: windows executable: Binaries/Win32/IfitGame-Win32-Shipping.exe type: default -'522700': - installDir: The Final Days I'm Still Alive +"522700": + installDir: "The Final Days I'm Still Alive" launch: - config: oslist: windows - executable: Survive This_ I'm Still Alive!.exe + executable: "Survive This_ I'm Still Alive!.exe" type: none -'522710': +"522710": installDir: Virtual Escape - The Play Room launch: - config: oslist: windows - executable: VirtualEscape1\\VirtualEscape1\\Binaries\\Win64\\VirtualEscape1-Win64-Shipping.exe + executable: "VirtualEscape1\\\\VirtualEscape1\\\\Binaries\\\\Win64\\\\VirtualEscape1-Win64-Shipping.exe" type: vr -'522730': +"522730": installDir: God Of Arrows VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: GoAgame.exe type: vr -'522740': +"522740": installDir: Oh My Godheads launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: OMGH.exe type: default -'522880': +"522880": installDir: PSYCHO-PASS Mandatory Happiness Steam launch: - config: oslist: windows executable: PSY.exe type: default -'522890': - installDir: Ant-gravity Tiny's Adventure +"522890": + installDir: "Ant-gravity Tiny's Adventure" launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: Ant-gravity.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: Ant-gravity.exe type: default - config: oslist: macos - executable: Ant-gravity.app\\Contents\\MacOS\\Ant-gravity + executable: "Ant-gravity.app\\\\Contents\\\\MacOS\\\\Ant-gravity" type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Ant-gravity.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Ant-gravity.x86_64 type: default -'522900': +"522900": installDir: When It Hits the Fan launch: - config: oslist: windows executable: WhenItHitsTheFan.exe type: default -'522940': +"522940": installDir: GUNGODZ launch: - config: @@ -252436,14 +248051,14 @@ oslist: linux executable: GUNGODZ type: default -'522950': +"522950": installDir: Mayhem ZX launch: - config: oslist: windows executable: Mayhem ZX.exe type: default -'522960': +"522960": installDir: Carlyle launch: - config: @@ -252454,7 +248069,7 @@ oslist: windows executable: Carlyle.exe type: default -'522990': +"522990": installDir: SpellCastingMEE launch: - config: @@ -252466,108 +248081,108 @@ oslist: macos executable: nw.app type: default -'523000': +"523000": installDir: Princess Maker 2 Refine launch: - config: oslist: windows executable: pm2.exe type: default -'523030': +"523030": installDir: Tank Universal 2 launch: - config: oslist: windows - executable: BIN\\TU2_GAME.exe + executable: "BIN\\\\TU2_GAME.exe" type: default -'523060': +"523060": installDir: Planet Smasher launch: - - arguments: '-monitor' + - arguments: "-monitor" config: oslist: windows executable: PlanetSmasher.exe type: default - - arguments: '-vr' + - arguments: "-vr" config: oslist: windows executable: PlanetSmasher.exe type: vr -'523070': +"523070": installDir: Black Forest launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Black Forest.exe type: default - config: - osarch: '64' + osarch: "64" oslist: macos executable: Black Forest.app/Contents/MacOS/Black Forest type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Black Forest.x86_64 type: default -'523080': +"523080": installDir: FootbrawlPlayground launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: Footbrawl_Playground_win_32bit.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: Footbrawl_Playground_win_64bit.exe type: default - config: oslist: macos - executable: Footbrawl_Playground_Mac.app\\Contents\\MacOS\\Footbrawl_Playground_Mac + executable: "Footbrawl_Playground_Mac.app\\\\Contents\\\\MacOS\\\\Footbrawl_Playground_Mac" type: default -'523090': +"523090": installDir: Bomb U! launch: - config: oslist: windows executable: BombU!.exe type: vr -'523150': +"523150": installDir: Mahjong World Contest launch: - executable: game.exe type: none -'523160': - installDir: Alice's Patchworks 2 +"523160": + installDir: "Alice's Patchworks 2" launch: - executable: game.exe type: none -'523170': +"523170": installDir: ShotForge launch: - config: oslist: windows executable: SFVR.exe type: vr -'523180': +"523180": installDir: Doritos VR Battle launch: - config: oslist: windows executable: DoritosVRBattle.exe type: vr -'523190': +"523190": installDir: Weapons of Mythology - New Age - launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Weapons Of Mythology New Age.exe type: default -'523210': +"523210": installDir: A Normal Lost Phone launch: - config: @@ -252579,40 +248194,40 @@ executable: anlp.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: anlp.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: anlp.x86_64 type: default - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" config: oslist: windows description: Unity Launch Screen executable: anlp.exe type: config - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" config: oslist: macos executable: anlp.app type: config - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" config: - osarch: '64' + osarch: "64" oslist: linux executable: anlp.x86_64 type: config - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" config: - osarch: '32' + osarch: "32" oslist: linux executable: anlp.x86 type: config -'523230': {} -'523440': +"523230": {} +"523440": installDir: zTime (Danger Noodles!) launch: - config: @@ -252621,51 +248236,51 @@ type: vr - config: oslist: windows - executable: Flat (Non-VR)\\zTime (flat).exe + executable: "Flat (Non-VR)\\\\zTime (flat).exe" type: default -'523550': +"523550": installDir: Defense of Castle Chilly launch: - config: oslist: windows executable: DOCC.exe type: vr -'523570': +"523570": installDir: AcrossFlash launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: AcrossFlash.exe type: vr -'523610': +"523610": installDir: Beyond Enemy Lines launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: BeyondEnemyLines.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows description: Workshop Tools executable: Launcher.exe type: option1 - config: betakey: linux - osarch: '64' + osarch: "64" oslist: linux executable: BEL.sh type: default -'523640': +"523640": installDir: The Works of Mercy launch: - config: oslist: windows - executable: \\TheWorksOfMercy\\Binaries\\Win64\\TheWorksOfMercy-Win64-Shipping.exe + executable: "\\\\TheWorksOfMercy\\\\Binaries\\\\Win64\\\\TheWorksOfMercy-Win64-Shipping.exe" type: default -'523650': +"523650": installDir: Lust for Darkness launch: - config: @@ -252676,10 +248291,10 @@ oslist: macos executable: Lust For Darkness.app/Contents/MacOS/Lust For Darkness type: none -'523660': +"523660": installDir: HYPERCHARGE Unboxed launch: - - arguments: '-nohmd' + - arguments: "-nohmd" config: oslist: windows executable: Unboxed.exe @@ -252688,36 +248303,36 @@ oslist: linux executable: Unboxed.sh type: default -'523670': +"523670": installDir: Adventures Of Fluzz launch: - config: oslist: windows executable: AOF.exe type: none -'523680': +"523680": installDir: Honey Rose Underdog Fighter Extraordinaire launch: - config: oslist: windows executable: nw.exe type: default -'523710': +"523710": installDir: Sword Master VR launch: - config: oslist: windows executable: SwordMasterVR.exe type: vr -'523720': +"523720": installDir: UnrulyGhouls launch: - - arguments: '-vr' + - arguments: "-vr" config: oslist: windows executable: UnrulyGhoulGame.exe type: vr -'523730': +"523730": installDir: Sweet Volley High launch: - config: @@ -252732,7 +248347,7 @@ oslist: linux executable: Sweet_Volley_High.sh type: default -'523740': +"523740": installDir: Techwars Global Conflict launch: - config: @@ -252744,26 +248359,24 @@ oslist: windows executable: Techwars Global Conflict.exe type: default -'523750': +"523750": installDir: D4O launch: - config: oslist: windows executable: D4O Launcher.exe type: default - - arguments: '-beta' + - arguments: "-beta" config: - osarch: '64' + osarch: "64" oslist: windows - ownsdlc: '543800' + ownsdlc: "543800" description: D4O - Beta executable: D4O Launcher.exe type: option1 - config: oslist: windows description: T4C - Dialsoft Servers - description_loc: - english: T4C - Dialsoft Servers executable: /International/Game/t4c.exe type: option2 workingdir: International/Game/ @@ -252771,17 +248384,17 @@ english: The 4th Coming french: La quatrième Prophétie german: Die 4te Offenbarung -'523760': +"523760": installDir: Loot or Die launch: - executable: LootOrDie.exe type: default -'523770': +"523770": installDir: TheBirdcageGame launch: - executable: TheBirdcageGame.exe type: none -'523780': +"523780": installDir: Emily is Away Too launch: - config: @@ -252801,16 +248414,16 @@ description: Emily Online executable: EmilyOnline/EmilyOnline.exe type: option2 -'523790': {} -'523810': +"523790": {} +"523810": installDir: WonderBoyReturns launch: - config: oslist: windows executable: WonderBoyReturns.exe type: none -'523860': {} -'523870': +"523860": {} +"523870": installDir: Breaking Fast launch: - config: @@ -252822,128 +248435,128 @@ executable: BreakingFast.app type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: run type: none -'523880': +"523880": installDir: peakvox Escape Virus HD launch: - config: oslist: windows executable: EscapeVirusHD.exe type: none -'523890': +"523890": installDir: StarDroneVR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: StarDrone.exe type: vr - config: oslist: macos - executable: StarDroneMacOS.app\\Contents\\MacOS\\StarDroneMacOS + executable: "StarDroneMacOS.app\\\\Contents\\\\MacOS\\\\StarDroneMacOS" type: vr - config: - osarch: '64' + osarch: "64" oslist: linux executable: StarDrone.run type: default -'523900': +"523900": installDir: Fated Souls 2 launch: - description: Launch executable: Game.exe type: none -'523940': +"523940": installDir: ZombVR launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: ZombVR GA 1.1.3 - executable: ZombVR_1_1_3_stm\\ZombVR.exe + executable: "ZombVR_1_1_3_stm\\\\ZombVR.exe" type: vr -'523960': +"523960": installDir: TENET launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TENET.exe type: none -'523970': +"523970": installDir: Atomic Butcher Homo Metabolicus launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: AtomicButcher_HomoMetabolicus.exe type: default - config: oslist: macos - executable: Atomic Butcher Homo Metabolicus.app\\Contents\\MacOS\\Atomic Butcher Homo Metabolicus + executable: "Atomic Butcher Homo Metabolicus.app\\\\Contents\\\\MacOS\\\\Atomic Butcher Homo Metabolicus" type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Atomic Butcher Homo Metabolicus.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Atomic Butcher Homo Metabolicus.x86_64 type: default -'524010': +"524010": installDir: Siege of Centauri launch: - executable: SiegeOfCentauri_DX11.exe type: default - config: - betakey: 'oembuild, publishing' - osarch: '64' + betakey: "oembuild, publishing" + osarch: "64" oslist: windows description: in DirectX 12 executable: SiegeOfCentauri_DX12.exe type: option1 -'524030': +"524030": installDir: Machine Learning Episode I launch: - config: oslist: windows executable: MachineLearningEp1.exe type: vr -'524050': +"524050": installDir: Salmon Ninja launch: - config: oslist: windows executable: salmonninja.exe type: default -'524060': +"524060": installDir: BlockWave launch: - config: oslist: windows executable: BlockWave.exe type: vr -'524110': +"524110": installDir: Emergency 2017 launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: bin\\em5_launcher.exe + executable: "bin\\\\em5_launcher.exe" type: none -'524120': +"524120": installDir: Raptor Valley launch: - config: oslist: windows executable: RaptorValley.exe type: vr -'524200': +"524200": installDir: Queen Of Thieves launch: - config: @@ -252958,14 +248571,14 @@ oslist: linux executable: QoT.sh type: none -'524220': +"524220": installDir: NieRAutomata launch: - config: oslist: windows executable: NieRAutomata.exe type: none -'524240': +"524240": installDir: Stonebond launch: - config: @@ -252976,7 +248589,7 @@ oslist: macos executable: Stonebond.app type: none -'524250': +"524250": installDir: Dad Quest launch: - config: @@ -252991,31 +248604,31 @@ oslist: linux executable: StartDadQuest.sh type: default -'524340': {} -'524350': +"524340": {} +"524350": installDir: TileDynasty FPS Arena launch: - config: - osarch: '64' + osarch: "64" oslist: macos - executable: TileDynasty_OSX.app\\Contents\\MacOS\\TileDynasty_OSX + executable: "TileDynasty_OSX.app\\\\Contents\\\\MacOS\\\\TileDynasty_OSX" type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: TileDynasty_Windows.exe type: default -'524380': +"524380": installDir: YoreVR launch: - - arguments: '-vr' + - arguments: "-vr" config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: YoreVR.exe type: vr -'524430': +"524430": installDir: SkoolDaze_Reskooled launch: - config: @@ -253026,7 +248639,7 @@ oslist: macos executable: SkoolDaze.app type: default -'524520': +"524520": installDir: Fatehaven launch: - config: @@ -253041,7 +248654,7 @@ oslist: linux executable: Fatehaven type: none -'524540': +"524540": installDir: Samurai of Hyuga launch: - config: @@ -253056,7 +248669,7 @@ oslist: linux executable: Samurai type: none -'524560': +"524560": installDir: Samurai of Hyuga Book 2 launch: - config: @@ -253071,7 +248684,7 @@ oslist: linux executable: Samurai2 type: none -'524580': +"524580": installDir: Fairy Fencer F Advent Dark Force launch: - executable: FairyFencerAD.exe @@ -253079,20 +248692,20 @@ nameLocalized: japanese: フェアリーフェンサー エフ ADVENT DARK FORCE tchinese: 妖精劍士 F ADVENT DARK FORCE -'524600': - installDir: Dark Parables Curse of Briar Rose Collector's Edition +"524600": + installDir: "Dark Parables Curse of Briar Rose Collector's Edition" launch: - executable: Dark Parables - Curse of Briar Rose.exe type: none -'524610': +"524610": installDir: Ceggtcher VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: CeggtcherVR.exe type: vr -'524640': +"524640": installDir: Asura launch: - config: @@ -253100,12 +248713,12 @@ executable: Asura.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Asura.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Asura.x86 type: default @@ -253113,7 +248726,7 @@ oslist: macos executable: Asura.app type: default -'524650': +"524650": installDir: DANGEROUS DUELS launch: - config: @@ -253128,15 +248741,15 @@ oslist: linux executable: DANGEROUS DUELS.x86_64 type: default -'524680': {} -'524690': +"524680": {} +"524690": installDir: Bitslap launch: - config: oslist: windows executable: Bitslap.exe type: vr -'524850': +"524850": installDir: Alicemare launch: - config: @@ -253147,18 +248760,18 @@ oslist: windows executable: Config.exe type: config -'524900': +"524900": installDir: League Of Guessing launch: - config: oslist: windows executable: LOG.exe type: default -'524910': +"524910": installDir: Hidden launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Hidden.exe type: default @@ -253166,14 +248779,14 @@ oslist: macos executable: Hidden.app type: default -'524940': +"524940": installDir: Javva Juice launch: - config: oslist: windows executable: JavvaJuice.exe type: default -'524970': +"524970": installDir: Helmet Heroes launch: - config: @@ -253184,21 +248797,21 @@ oslist: macos executable: HelmetHeroes.app/Contents/MacOS/Helmet Heroes type: default -'525040': +"525040": installDir: DisneyAfternoon launch: - config: oslist: windows executable: capcom_disney_afternoon.exe type: default -'525050': +"525050": installDir: Artisan Going Home Again launch: - config: oslist: windows executable: Artisan.exe type: default -'525070': +"525070": installDir: lycop launch: - config: @@ -253209,77 +248822,77 @@ oslist: windows executable: lycop.exe type: default -'525080': +"525080": installDir: The Race for the White House 2016 launch: - config: oslist: windows executable: _start.exe type: default -'525150': +"525150": installDir: SpaceFuss launch: - config: oslist: windows executable: spacefuss.exe type: default -'525190': +"525190": installDir: The Construct launch: - config: oslist: windows executable: The Construct.exe type: none -'525210': +"525210": installDir: Nock Hidden Arrow launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Nock.exe type: vr -'525240': +"525240": installDir: LOST SPHEAR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: LOST SPHEAR.exe type: default nameLocalized: japanese: ロストスフィア -'525290': {} -'525300': +"525290": {} +"525300": installDir: Starship Annihilator launch: - config: oslist: windows executable: STARSHIP.exe type: default -'525330': +"525330": installDir: Galaxy of Trian launch: - config: oslist: windows executable: GalaxyOfTrian.exe type: default -'525350': +"525350": installDir: Thick Air launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Play Thick Air executable: ThickAir.exe type: default - - arguments: '-VR' + - arguments: "-VR" config: - osarch: '64' + osarch: "64" oslist: windows description: Thick Air executable: ThickAir.exe type: vr -'525360': +"525360": installDir: Shio launch: - config: @@ -253288,7 +248901,7 @@ type: default - config: oslist: macos - executable: Shio.app\\Contents\\MacOS\\Shio + executable: "Shio.app\\\\Contents\\\\MacOS\\\\Shio" type: default nameLocalized: english: Shio @@ -253296,14 +248909,14 @@ sc_schinese: 汐 schinese: 汐 tchinese: 汐 -'525370': +"525370": installDir: Gobernators launch: - config: oslist: windows executable: Gobernators_SteamVer.exe type: default -'525380': +"525380": installDir: Demon Peak launch: - config: @@ -253311,11 +248924,11 @@ executable: DemonPeak.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: DemonPeakLauncher type: default -'525450': +"525450": installDir: King Oddball launch: - config: @@ -253333,29 +248946,29 @@ description: Play King Oddball! executable: KingOddball type: none -'525460': +"525460": installDir: Sullen LIF launch: - config: oslist: windows executable: Game.exe type: default -'525480': +"525480": installDir: hackGU launch: - config: oslist: windows executable: hackGU.exe type: none -'525500': +"525500": installDir: Candy_Kingdom launch: - config: oslist: windows executable: Candy_Kingdom.exe type: vr -'525510': - installDir: 'Guns, Gore and Cannoli 2' +"525510": + installDir: "Guns, Gore and Cannoli 2" launch: - config: oslist: windows @@ -253365,62 +248978,62 @@ oslist: macos executable: ggc2.app type: none -'525530': +"525530": installDir: WhatWouldYouDo launch: - config: oslist: windows executable: WWYD.exe type: default -'525540': +"525540": installDir: Six Feet Under launch: - - arguments: '-windowed' + - arguments: "-windowed" config: oslist: windows executable: SixFeetUnder.exe type: vr -'525590': +"525590": installDir: Brawlderdash launch: - config: oslist: windows executable: Brawlderdash.exe type: none -'525600': +"525600": installDir: Dyno Adventure launch: - config: oslist: windows executable: Dyno11.exe type: none -'525610': +"525610": installDir: Hardware Engineering launch: - config: oslist: windows executable: HWE Splashscreen.exe type: default -'525620': +"525620": installDir: Octogeddon launch: - config: oslist: windows executable: octogeddon.exe type: default -'525630': +"525630": installDir: resin launch: - config: oslist: windows executable: resin.exe type: default -'525640': +"525640": installDir: Bullets And More VR launch: - executable: BAM_VR.exe type: vr -'525660': +"525660": installDir: Moonlit Mayhem launch: - config: @@ -253433,15 +249046,15 @@ description: Mac Version executable: Moonlit Mayhem MAC Version 1.03.app type: default -'525680': +"525680": installDir: Deisim launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: deisim.exe type: vr -'525690': +"525690": installDir: MMM Murder Most Misfortunate launch: - config: @@ -253449,12 +249062,12 @@ executable: MMM.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: MMM.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: MMM.x86_64 type: default @@ -253462,22 +249075,22 @@ oslist: macos executable: MMM_Mac.app type: default -'525700': +"525700": installDir: Birthdays the Beginning launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: game.exe type: default nameLocalized: japanese: バースデイズ・ザ・ビギニング -'525740': +"525740": installDir: Slashy Hero launch: - config: oslist: windows - executable: bin\\SlashyHero.exe + executable: "bin\\\\SlashyHero.exe" type: default workingdir: gameroot - config: @@ -253485,15 +249098,15 @@ executable: bin/SlashyHero.app type: default workingdir: gameroot -'525760': +"525760": installDir: AwesomeObstacleChallenge launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: awesomeObstacleChallenge.exe type: vr -'525780': +"525780": installDir: Doorways Old Prototype launch: - config: @@ -253513,7 +249126,7 @@ description: Launch Doorways executable: Doorways.app type: none -'525860': +"525860": installDir: GardenWars launch: - config: @@ -253524,53 +249137,53 @@ oslist: macos executable: GardenWars.app type: default -'525870': +"525870": installDir: WackyMoles launch: - - arguments: '-windowed' + - arguments: "-windowed" config: oslist: windows executable: WackyMoles.exe type: vr -'525910': +"525910": installDir: Cockroach VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Goki.exe type: vr -'525920': +"525920": installDir: Pro Cycling Manager 2017 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: PCM64.exe type: default - - arguments: '-safemode -nologo' + - arguments: "-safemode -nologo" config: - osarch: '64' + osarch: "64" oslist: windows description: Safe mode executable: PCM64.exe type: none -'525950': +"525950": installDir: JUST BAT (VR CRICKET) launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: JUST BAT.exe type: vr -'526090': +"526090": installDir: Very Real Chess launch: - config: oslist: windows executable: VeryRealChess.exe type: vr -'526130': +"526130": installDir: Sky Sanctuary launch: - config: @@ -253578,48 +249191,48 @@ description: Game executable: skysanctuary.exe type: vr - - arguments: '-arcade' + - arguments: "-arcade" config: oslist: windows description: Arcade Mode executable: skysanctuary.exe type: vr -'526140': +"526140": installDir: The Gallery - Episode 2 Heart of the Emberstone launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Heart of The Emberstone executable: TheGalleryEP2/TheGalleryEP2.exe type: vr - config: betakey: antony_builds - osarch: '64' + osarch: "64" oslist: windows description: mixed media executable: TheGalleryEP2.exe type: vr - config: - osarch: '64' + osarch: "64" oslist: windows description: EP2 Maproom Demo executable: MaproomDemo.exe type: vr - config: betakey: native_ovr - osarch: '64' + osarch: "64" oslist: windows description: Heart of The Emberstone (OVR) executable: TheGalleryEP2/TheGalleryEP2.exe type: othervr - config: - osarch: '64' + osarch: "64" oslist: windows description: File Bug Report ( take off HMD ) executable: Extras/EP2 Bug Reporter/EP2BugReporter.exe type: vr -'526160': +"526160": installDir: The Wild Eight launch: - config: @@ -253630,39 +249243,39 @@ oslist: macos executable: wildeight.app type: default -'526180': {} -'526240': +"526180": {} +"526240": installDir: CloudBound launch: - config: oslist: windows executable: CloudBound.exe type: vr -'526250': {} -'526270': +"526250": {} +"526270": installDir: Adventurous Life VR launch: - config: oslist: windows executable: Game.exe type: vr -'526290': +"526290": installDir: MY FIGHT launch: - config: oslist: windows executable: MyFight.exe type: none -'526310': +"526310": installDir: Silhouette launch: - config: oslist: windows executable: Silhouette.exe type: none -'526370': {} -'526390': {} -'526400': +"526370": {} +"526390": {} +"526400": installDir: Embers of Magic launch: - config: @@ -253677,33 +249290,33 @@ oslist: linux executable: Embers of Magic.sh type: default -'526430': +"526430": installDir: Project Fire launch: - executable: Pfire.exe type: none -'526440': +"526440": installDir: vRhythm launch: - config: oslist: windows executable: vRhythm.exe type: vr -'526450': +"526450": installDir: Hack Time launch: - executable: HackTime.exe type: none -'526460': {} -'526470': +"526460": {} +"526470": installDir: Deep Below launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Deep_Below.exe type: default -'526490': +"526490": installDir: Higurashi 04 - Himatsubushi launch: - config: @@ -253711,12 +249324,12 @@ executable: HigurashiEp04.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: HigurashiEp04.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: HigurashiEp04.x86_64 type: default @@ -253726,14 +249339,14 @@ type: default nameLocalized: japanese: ひぐらしのなく頃に奉 暇潰し編 -'526510': +"526510": installDir: The Hateful Dead launch: - config: oslist: windows executable: The Hateful Dead.exe type: default -'526540': +"526540": installDir: 8infinity launch: - config: @@ -253748,39 +249361,39 @@ oslist: linux executable: 8infinity.x86 type: none -'526550': +"526550": installDir: Pitchfork launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: pitchfork.exe type: vr -'526590': +"526590": installDir: Boxing Saga launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Boxing saga.exe type: vr -'526680': +"526680": installDir: Lifeliqe VR Museum launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Lifeliqe_VR_Museum.exe type: vr -'526720': {} -'526730': +"526720": {} +"526730": installDir: Life of Lon launch: - config: oslist: windows executable: Life of Lon.exe type: vr -'526740': +"526740": installDir: hack_me launch: - config: @@ -253795,15 +249408,15 @@ oslist: macos executable: hack_me.app type: none -'526750': +"526750": installDir: The Gleam VR Escape the Room launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TheGleam.exe type: vr -'526780': +"526780": installDir: Jumper Jape launch: - config: @@ -253816,16 +249429,16 @@ type: default - config: oslist: macos - executable: JumperJape.app\\Contents\\MacOS\\JumperJape + executable: "JumperJape.app\\\\Contents\\\\MacOS\\\\JumperJape" type: default -'526790': +"526790": installDir: Monsti launch: - config: oslist: windows executable: PTPlayer.exe type: default -'526800': +"526800": installDir: Cubotrox launch: - config: @@ -253836,63 +249449,63 @@ oslist: macos executable: Cubotrox.app type: default -'526840': +"526840": installDir: Galaxy Commando launch: - config: oslist: windows executable: solar.exe type: none -'526870': +"526870": installDir: Satisfactory launch: - - arguments: '-NO_EOS_OVERLAY' + - arguments: "-NO_EOS_OVERLAY" config: - osarch: '64' + osarch: "64" oslist: windows executable: FactoryGame.exe type: default - - arguments: '-NO_EOS_OVERLAY' + - arguments: "-NO_EOS_OVERLAY" config: - osarch: '64' + osarch: "64" oslist: linux executable: FactoryGame.sh type: default -'526880': +"526880": installDir: Chess Knight 2 launch: - config: oslist: windows executable: ChessKnight2.exe type: default -'526890': +"526890": installDir: A Day in the Woods launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ADITW.exe type: default - config: - osarch: '64' + osarch: "64" oslist: macos executable: ADITW.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: ADITW.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: ADITW.x86 type: default -'526920': +"526920": installDir: SQUAKE launch: - config: - osarch: '64' + osarch: "64" oslist: macos executable: Squake.app type: none @@ -253900,14 +249513,14 @@ oslist: windows executable: GameClient.exe type: none -'526960': +"526960": installDir: Fair Islands VR launch: - config: oslist: windows executable: FairIslands.exe type: vr -'526980': +"526980": installDir: Handball 17 launch: - executable: Exe/Handball17.exe @@ -253916,50 +249529,50 @@ - executable: Exe/Detect.exe type: config workingdir: Exe -'527040': +"527040": installDir: Armies of Riddle CCG Fantasy Battle Card Game Content launch: - config: oslist: windows executable: ArmiesOfRiddle.exe type: default -'527100': +"527100": installDir: Star Trek Bridge Crew launch: - - arguments: '-uplay_steam_mode' + - arguments: "-uplay_steam_mode" config: - osarch: '64' + osarch: "64" oslist: windows executable: stbc.exe type: vr - - arguments: '-uplay_steam_mode -non_vr' + - arguments: "-uplay_steam_mode -non_vr" config: - osarch: '64' + osarch: "64" oslist: windows description: Play in Non VR executable: stbc.exe type: default -'527110': +"527110": installDir: The Melody of Dust launch: - description: Launch executable: TMOD_UPLOAD_v2.exe type: vr -'527150': +"527150": installDir: Dead launch: - config: oslist: windows executable: Dead.exe type: default -'527160': +"527160": installDir: Cmoar VR Cinema launch: - executable: vive.exe type: vr - executable: oculus.exe type: othervr -'527190': +"527190": installDir: WORLD END ECONOMiCA episode.03 launch: - config: @@ -253969,7 +249582,7 @@ - config: oslist: windows description: HD Edition - executable: WEE3 HD\\WEE3.exe + executable: "WEE3 HD\\\\WEE3.exe" type: option1 - config: oslist: macos @@ -253977,18 +249590,18 @@ executable: WEE3 HD/WEE3.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux description: HD Edition executable: WEE3 HD/WEE3.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: HD Edition executable: WEE3 HD/WEE3.x86_64 type: default -'527210': +"527210": installDir: Janken Cards launch: - config: @@ -253999,7 +249612,7 @@ oslist: macos executable: JankenCards.app type: default -'527230': +"527230": installDir: For The King launch: - config: @@ -254010,13 +249623,13 @@ oslist: macos executable: FTK.app type: default - - arguments: '-force-d3d9' + - arguments: "-force-d3d9" config: oslist: windows description: FTK in DirectX 9 executable: FTK.exe type: option2 - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" config: oslist: windows description: Configure For The King @@ -254028,21 +249641,21 @@ type: default nameLocalized: schinese: 为了吾王 / For The King -'527240': +"527240": installDir: Geology Business launch: - config: oslist: windows executable: Geology Business.exe type: default -'527250': +"527250": installDir: VilleTown launch: - config: oslist: windows executable: VilleTown.exe type: default -'527260': +"527260": installDir: Lurk launch: - config: @@ -254057,7 +249670,7 @@ oslist: linux executable: Lurk.x86 type: default -'527270': +"527270": installDir: Atelier Sophie The Alchemist of the Mysterious Book launch: - config: @@ -254066,7 +249679,7 @@ type: none nameLocalized: japanese: ソフィーのアトリエ ~不思議な本の錬金術士~ -'527280': +"527280": installDir: Nights of Azure launch: - config: @@ -254075,26 +249688,26 @@ type: default nameLocalized: japanese: よるのないくに -'527290': +"527290": installDir: Atelier Firis The Alchemist and the Mysterious Journey launch: - executable: A18Config.exe type: none -'527300': +"527300": installDir: DOPAMINE launch: - config: oslist: windows executable: Dopamine.exe type: othervr -'527310': +"527310": installDir: BubbleLabs launch: - config: oslist: windows executable: BubbleWand.exe type: vr -'527320': +"527320": installDir: Defend the Highlands World Tour launch: - config: @@ -254102,12 +249715,12 @@ executable: Defend the Highlands World Tour.exe type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: Defend the Highlands World Tour.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: Defend the Highlands World Tour.x86_64 type: none @@ -254115,29 +249728,29 @@ oslist: macos executable: Defend the Highlands World Tour.app type: none -'527330': +"527330": installDir: Grave VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: GraveVR.exe type: vr - config: - osarch: '32' + osarch: "32" oslist: windows executable: GraveVR.exe type: vr -'527340': +"527340": installDir: WhatTheBox launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: WhatTheBox.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: WhatTheBox_win32.exe type: default @@ -254150,21 +249763,21 @@ oslist: linux executable: WhatTheBox.x86_64 type: default -'527360': +"527360": installDir: Escape Station launch: - config: oslist: windows executable: EscapeStation.exe type: vr -'527380': +"527380": installDir: Captain Kaon launch: - config: oslist: windows executable: Captain Kaon.exe type: none -'527420': +"527420": installDir: Demon Hunter 3 launch: - config: @@ -254173,13 +249786,13 @@ executable: DemonHunter3.exe type: none - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: DemonHunter3_i386 type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: DemonHunter3_amd64 @@ -254189,16 +249802,16 @@ description: Launch executable: mac_steam.app/Contents/MacOS/mac_steam type: none -'527430': - installDir: 'Warhammer 40,000 Inquisitor - Martyr' +"527430": + installDir: "Warhammer 40,000 Inquisitor - Martyr" launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch the game executable: Warhammer.exe type: default -'527450': +"527450": installDir: Cockroach_Simulator launch: - config: @@ -254213,51 +249826,51 @@ oslist: linux executable: cs.x86 type: default -'527460': {} -'527470': - installDir: Donuts'n'Justice +"527460": {} +"527470": + installDir: "Donuts'n'Justice" launch: - config: oslist: windows executable: nw.exe type: none -'527480': {} -'527490': {} -'527510': +"527480": {} +"527490": {} +"527510": installDir: The Legions of Rome launch: - config: oslist: windows executable: game.exe type: default -'527520': +"527520": installDir: Strike Force Arctic Storm launch: - config: oslist: windows executable: StrikeForce.exe type: none -'527540': {} -'527550': {} -'527560': {} -'527570': {} -'527580': +"527540": {} +"527550": {} +"527560": {} +"527570": {} +"527580": installDir: PITCH-HIT - FULL GAME launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: PitchHit.exe type: vr -'527700': +"527700": installDir: Containment Initiative launch: - executable: CI.exe type: vr -'527710': +"527710": installDir: Crown Champion Legends of the Arena launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" executable: nw.exe type: none - config: @@ -254265,21 +249878,21 @@ description: Version 1.2 (29/10/16) executable: Game.exe type: none -'527720': +"527720": installDir: Keep Defending launch: - config: oslist: windows executable: KD.exe type: vr -'527730': +"527730": installDir: Bus Tycoon ND (Night and Day) launch: - config: oslist: windows executable: Bus_Tycoon_ND.exe type: default -'527740': +"527740": installDir: YankaisTriangle launch: - config: @@ -254297,20 +249910,20 @@ description: Launch executable: run.sh type: none -'527750': +"527750": installDir: Merger 3D launch: - config: oslist: windows - description: '16:9' + description: "16:9" executable: Merger3D(16x9).bat type: option1 - config: oslist: windows - description: '4:3' + description: "4:3" executable: Merger3D(4x3).bat type: option2 -'527760': +"527760": installDir: Just Hero launch: - config: @@ -254318,7 +249931,7 @@ description: Launch executable: JustHero.exe type: none -'527770': +"527770": installDir: Russian SuperHero Dead Ivan launch: - config: @@ -254326,7 +249939,7 @@ description: Launch executable: DeadIvan.exe type: none -'527790': +"527790": installDir: Cranium Conundrum launch: - config: @@ -254334,124 +249947,124 @@ description: Launch executable: CraniumConundrum.exe type: none -'527800': +"527800": installDir: WAR CUBE launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: game.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: game type: default -'527810': +"527810": installDir: Dynamite Alex launch: - config: oslist: windows - executable: Dynamite Alex\\Dynamite Alex.exe + executable: "Dynamite Alex\\\\Dynamite Alex.exe" type: default -'527820': +"527820": installDir: Lifestream launch: - config: oslist: windows executable: Lifestream Steam.exe type: none -'527880': +"527880": installDir: Dreadful launch: - config: oslist: windows executable: Dreadful.exe type: default -'527890': +"527890": installDir: Shop-n-Spree Shopping Paradise launch: - executable: ShopNSpree_ShoppingParadise.exe type: none -'527900': - installDir: Grim Tales The Bride Collector's Edition +"527900": + installDir: "Grim Tales The Bride Collector's Edition" launch: - executable: GrimTales_TheBride_CE.exe type: none -'527910': - installDir: Nevertales Shattered Image Collector's Edition +"527910": + installDir: "Nevertales Shattered Image Collector's Edition" launch: - executable: Nevertales_ShatteredImage_CE.exe type: none -'527920': +"527920": installDir: Farm Tribe 2 launch: - config: oslist: windows executable: FarmTribe 2.exe type: default -'527930': +"527930": installDir: Spa Mania 2 launch: - executable: spamania2.exe type: none -'527940': - installDir: Mystery Trackers The Void Collector's Edition +"527940": + installDir: "Mystery Trackers The Void Collector's Edition" launch: - executable: MysteryTrackers.exe type: none -'527950': +"527950": installDir: Divergence Year Zero launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Divergence Year Zero.exe type: none -'527960': +"527960": installDir: Fractured State launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: fracturedstate.exe type: default -'527990': +"527990": installDir: Gladiator Trainer launch: - config: oslist: windows executable: Game.exe type: none -'528010': +"528010": installDir: EternalReturn launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ER.exe type: default - config: - osarch: '64' + osarch: "64" oslist: macos executable: ER.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: ER.x86 type: default -'528020': +"528020": installDir: Destroyer launch: - config: oslist: windows executable: Destroyer.exe type: vr -'528060': +"528060": installDir: Philosophic Love launch: - - arguments: '-windowed' + - arguments: "-windowed" config: oslist: windows executable: PhilosophicLove.exe @@ -254460,14 +250073,14 @@ oslist: macos executable: PhilosophicLove.app type: default -'528070': +"528070": installDir: Solitaire Game Beach Season launch: - executable: game.exe type: none -'528080': {} -'528090': {} -'528110': +"528080": {} +"528090": {} +"528110": installDir: Tennis Elbow Manager launch: - config: @@ -254484,9 +250097,9 @@ oslist: macos executable: Tennis Elbow Manager.app type: default - - executable: Doc\\En_QuickStart.html + - executable: "Doc\\\\En_QuickStart.html" type: manual -'528120': +"528120": installDir: Darkness and Flame Born of Fire launch: - config: @@ -254497,21 +250110,21 @@ oslist: macos executable: Darkness and Flame Born of Fire CE.app type: none -'528160': +"528160": installDir: Solstice Chronicles MIA launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TwinStick.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: TwinStick.sh type: default -'528170': {} -'528180': +"528170": {} +"528180": installDir: Agricola All Creatures Big and Small launch: - config: @@ -254523,16 +250136,16 @@ executable: abv.app type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: abv.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: abv.x86_64 type: none -'528190': +"528190": installDir: Carpe Deal Em launch: - config: @@ -254540,24 +250153,24 @@ executable: CDE.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: CDE.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: CDE.x86_64 type: default -'528210': {} -'528230': +"528210": {} +"528230": installDir: Synthetik launch: - config: oslist: windows executable: Synthetik.exe type: default -'528250': +"528250": installDir: Patchwork launch: - config: @@ -254565,12 +250178,12 @@ executable: pxw.exe type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: pxw.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: pxw.x86_64 type: none @@ -254578,15 +250191,15 @@ oslist: macos executable: pxw.app type: none -'528260': +"528260": installDir: TITAN SLAYER launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TitanSlayer.exe type: vr -'528270': +"528270": installDir: NEON Ultra launch: - config: @@ -254597,7 +250210,7 @@ oslist: macos executable: NeonUltra.app type: none -'528300': +"528300": installDir: content launch: - config: @@ -254612,7 +250225,7 @@ oslist: linux executable: Soulless.x86 type: none -'528420': +"528420": installDir: Evil Orbs launch: - config: @@ -254623,7 +250236,7 @@ oslist: macos executable: EvilOrbs.app/Contents/MacOS/EvilOrbsSteam type: default -'528430': +"528430": installDir: Wells launch: - config: @@ -254632,19 +250245,19 @@ type: default - config: oslist: macos - executable: Wells.app\\Contents\\MacOS\\Wells + executable: "Wells.app\\\\Contents\\\\MacOS\\\\Wells" type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Wells.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Wells.x86_64 type: default -'528450': +"528450": installDir: Hunt The Unknown Quarry launch: - config: @@ -254656,21 +250269,21 @@ executable: hunt.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: hunt.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: hunt.x86 type: default -'528460': +"528460": installDir: Rogalia launch: - config: oslist: linux - executable: ./rogalia + executable: "./rogalia" type: none - config: oslist: windows @@ -254680,45 +250293,45 @@ oslist: macos executable: rogalia.app/Contents/MacOS/nwjs type: none -'528510': +"528510": installDir: Turbo Pug 3D launch: - config: oslist: windows executable: Turbo Pug 3D.exe type: default -'528550': +"528550": installDir: Drunkn Bar Fight launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: DBF.exe type: vr -'528580': +"528580": installDir: Found launch: - config: oslist: windows executable: Found.exe type: vr -'528610': +"528610": installDir: Double Dragon IV launch: - config: oslist: windows executable: Sousairyu4.exe type: default -'528640': +"528640": installDir: Rugby Union Team Manager 2017 launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: RUTM2017_StartUp_32bit.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: RUTM2017_StartUp_64bit.exe type: default @@ -254726,7 +250339,7 @@ oslist: macos executable: RUTM2017_StartUp_Mac.app type: default -'528660': +"528660": installDir: Spin Rush launch: - config: @@ -254738,38 +250351,38 @@ executable: SpinRush.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: SpinRush.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: SpinRush.x86_64 type: default -'528670': +"528670": installDir: Elems launch: - config: oslist: windows executable: Elems.exe type: default -'528700': {} -'528720': +"528700": {} +"528720": installDir: Shu launch: - config: oslist: windows executable: Shu.exe type: default -'528730': +"528730": installDir: Crypt of the Serpent King launch: - config: oslist: windows executable: CryptOfTheSerpentKing.exe type: default -'528740': +"528740": installDir: Operation New Earth launch: - config: @@ -254780,7 +250393,7 @@ oslist: macos executable: OpNewEarth.app type: default -'528770': +"528770": installDir: Twixel launch: - config: @@ -254791,30 +250404,30 @@ oslist: windows executable: Twixel.exe type: default -'528820': +"528820": installDir: Eisenwald Blood of November launch: - config: oslist: windows executable: Eisenwald_BoN.exe type: default -'528860': +"528860": installDir: Proxy - Ultimate Hacker launch: - config: oslist: windows executable: Proxy.exe type: default - - arguments: '-force-opengl' + - arguments: "-force-opengl" config: - osarch: '32' + osarch: "32" oslist: linux executable: Proxy.x86 type: default - - arguments: '-force-opengl' + - arguments: "-force-opengl" config: betakey: experimental - osarch: '64' + osarch: "64" oslist: linux executable: Proxy.x86_64 type: default @@ -254822,16 +250435,16 @@ oslist: macos executable: Proxy.app type: default - - arguments: '-force-opengl' + - arguments: "-force-opengl" config: betakey: experimental - osarch: '32' + osarch: "32" oslist: linux executable: Proxy.x86 type: default - - arguments: '-force-opengl' + - arguments: "-force-opengl" config: - osarch: '64' + osarch: "64" oslist: linux executable: Proxy.x86_64 type: default @@ -254840,45 +250453,45 @@ oslist: macos executable: Proxy.app type: default - - arguments: '-force-opengl' + - arguments: "-force-opengl" config: betakey: multiplatform - osarch: '64' + osarch: "64" oslist: linux executable: Proxy.x86_64 type: default -'528900': +"528900": installDir: Multirotor Sim 2 launch: - description: Multirotor Sim 2 - executable: \\mrotorsim2\\mrotorsim2.exe + executable: "\\\\mrotorsim2\\\\mrotorsim2.exe" type: default - config: - ownsdlc: '1209500' + ownsdlc: "1209500" description: Hoverbikes Experience - executable: \\HoverbikeExperience\\Hoverbikes Experience.exe + executable: "\\\\HoverbikeExperience\\\\Hoverbikes Experience.exe" type: default -'528910': +"528910": installDir: Golf Pro VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: GolfProVR.exe type: vr -'528930': +"528930": installDir: Fruitforthevillage launch: - executable: Fruit.exe type: vr -'528950': +"528950": installDir: Nekuia launch: - config: oslist: windows executable: Nekuia.exe type: none -'528960': +"528960": installDir: Blanco launch: - config: @@ -254889,25 +250502,25 @@ oslist: macos executable: Blanco.app type: none -'528970': +"528970": installDir: SosSurvival launch: - config: - osarch: '64' + osarch: "64" oslist: windows - description: 'SosSurvival x64 bits - STABLE - ' + description: "SosSurvival x64 bits - STABLE - " executable: SosSurvivalx64.exe type: option1 -'528980': +"528980": installDir: Arakion Book One launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Arakion.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Arakion.x86_64 type: none @@ -254915,46 +250528,46 @@ oslist: macos executable: Arakion.app type: none -'528990': +"528990": installDir: Basketball Babe launch: - config: oslist: windows executable: Steam.SteamStore.20161013.1.exe type: vr -'529000': +"529000": installDir: Bad ass babes launch: - config: oslist: windows executable: Bad ass babes.exe type: none -'529020': +"529020": installDir: Virtual-O launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Virtual-O.exe type: default - config: - osarch: '64' + osarch: "64" oslist: macos - executable: Virtual-O.app\\Contents\\MacOS\\Virtual-O + executable: "Virtual-O.app\\\\Contents\\\\MacOS\\\\Virtual-O" type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Virtual-O.x86_64 type: default -'529040': +"529040": installDir: Fine China launch: - config: oslist: windows executable: FineChina.exe type: vr -'529060': +"529060": installDir: Space Simulator launch: - config: @@ -254966,22 +250579,22 @@ description: Space Simulator (Mobile) executable: SpaceSimulatorMobile.exe type: option1 -'529070': {} -'529090': +"529070": {} +"529090": installDir: VioletHauntedSteam launch: - config: oslist: windows executable: Game.exe type: default -'529100': +"529100": installDir: Omni Link launch: - config: oslist: windows executable: Omni_LinkV01.exe type: default -'529110': +"529110": installDir: Awkward Dimensions Redux launch: - config: @@ -254993,16 +250606,16 @@ executable: Awkward Dimensions Redux.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Awkward Dimensions Redux.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Awkward Dimensions Redux.x86_64 type: default -'529130': +"529130": installDir: ExpectTheUnexpected launch: - config: @@ -255017,63 +250630,63 @@ oslist: linux executable: ExpectTheUnexpected.x86 type: default -'529140': +"529140": installDir: Ulama Arena of the Gods launch: - config: oslist: windows executable: ulama.exe type: default -'529150': +"529150": installDir: Lazerbait launch: - config: oslist: windows executable: Lazerbait.exe type: vr -'529160': +"529160": installDir: Moekuri launch: - config: oslist: windows executable: moekuri.exe type: default -'529180': +"529180": installDir: Dark and Light launch: - config: oslist: windows description: Start Game - executable: DNL\\Binaries\\Win64\\DNL.exe + executable: "DNL\\\\Binaries\\\\Win64\\\\DNL.exe" type: none - workingdir: DNL\\Binaries\\Win64\\ - - arguments: '-allowansel' + workingdir: "DNL\\\\Binaries\\\\Win64\\\\" + - arguments: "-allowansel" config: oslist: windows description: Start Game with ansel - executable: DNL\\Binaries\\Win64\\DNL.exe + executable: "DNL\\\\Binaries\\\\Win64\\\\DNL.exe" type: none - workingdir: DNL\\Binaries\\Win64\\ -'529240': - installDir: 'Creature Clicker - Capture, Train, Ascend!' + workingdir: "DNL\\\\Binaries\\\\Win64\\\\" +"529240": + installDir: "Creature Clicker - Capture, Train, Ascend!" launch: - executable: game.exe type: default -'529260': +"529260": installDir: Robot Incursion launch: - config: oslist: windows executable: Robot Incursion.exe type: vr -'529280': +"529280": installDir: TEOT - The End Of Tomorrow launch: - config: oslist: windows executable: TEOT.exe type: vr -'529340': +"529340": installDir: Victoria 3 launch: - config: @@ -255091,22 +250704,22 @@ description: Launcher executable: launcher/dowser type: none -'529360': +"529360": installDir: Void Rangers launch: - config: oslist: windows executable: VR.exe type: vr -'529410': +"529410": installDir: Kittypocalypse - PC Edition launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Kittypocalypse.exe type: default -'529420': +"529420": installDir: Crazy Sapper 3D launch: - config: @@ -255115,13 +250728,13 @@ type: default - config: oslist: macos - executable: Crazy Sapper 3D.app\\Contents\\MacOS\\Crazy Sapper 3D + executable: "Crazy Sapper 3D.app\\\\Contents\\\\MacOS\\\\Crazy Sapper 3D" type: default - config: oslist: linux executable: Crazy Sapper 3D.x86_64 type: default -'529440': +"529440": installDir: Behold the Kickmen launch: - config: @@ -255136,14 +250749,14 @@ oslist: linux executable: Kickmen.x86 type: default -'529450': +"529450": installDir: I Know a Tale launch: - config: oslist: windows executable: IKnowATale.exe type: default -'529480': +"529480": installDir: Chopper Lethal darkness launch: - config: @@ -255151,46 +250764,46 @@ executable: Chopper-LD.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Chopper-LD_linux.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: Chopper-LD_linux.x86_64 type: none -'529490': +"529490": installDir: Rogue Trooper Redux launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: Launcher\\RTRLauncher_Steam.exe + executable: "Launcher\\\\RTRLauncher_Steam.exe" type: default - workingdir: Launcher\\ -'529500': + workingdir: "Launcher\\\\" +"529500": installDir: ALONE - VR launch: - config: oslist: windows executable: AloneVR.exe type: vr -'529520': +"529520": installDir: Mutant Football League launch: - - arguments: '-logFile \"MFL_Data\\output_log.txt\"' + - arguments: "-logFile \\\"MFL_Data\\\\output_log.txt\\\"" config: oslist: windows executable: MFL.exe type: default -'529580': +"529580": installDir: KyurinagasRevenge launch: - executable: KR.exe type: default -'529590': - installDir: Please Don't Touch Anything 3D +"529590": + installDir: "Please Don't Touch Anything 3D" launch: - config: oslist: windows @@ -255204,7 +250817,7 @@ oslist: windows executable: pdta-vive.exe type: vr -'529610': +"529610": installDir: FISH LAKE launch: - config: @@ -255213,27 +250826,27 @@ type: default - config: oslist: macos - executable: Fish Lake Mac.app\\Contents\\MacOS\\Fish Lake Mac + executable: "Fish Lake Mac.app\\\\Contents\\\\MacOS\\\\Fish Lake Mac" type: default -'529630': +"529630": installDir: The Rabbit Hole launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: EscapeFromRabbitHole.exe type: vr - config: - osarch: '64' + osarch: "64" oslist: windows executable: EscapeFromRabbitHole.exe type: othervr -'529640': +"529640": installDir: fove launch: - config: oslist: windows - executable: bin\\win64\\SteamLauncher.exe + executable: "bin\\\\win64\\\\SteamLauncher.exe" type: default - config: oslist: linux @@ -255243,54 +250856,54 @@ oslist: macos executable: bin/osx32/SteamLauncher type: default -'529660': +"529660": installDir: Mages of Mystralia launch: - config: oslist: windows executable: Build.exe type: default -'529670': +"529670": installDir: The Bellows launch: - config: oslist: windows executable: TheBellows.exe type: vr -'529700': +"529700": installDir: Total Exterme Wrestling 2013 launch: - executable: TEW2013.exe type: default -'529720': +"529720": installDir: ok launch: - executable: ok.exe type: none -'529730': +"529730": installDir: Seabed Prelude launch: - - arguments: '-vr' + - arguments: "-vr" config: - osarch: '64' + osarch: "64" oslist: windows executable: SeabedPrelude.exe type: vr -'529760': +"529760": installDir: TAIKUMANSION launch: - config: oslist: windows executable: TaikuAdventure.exe type: default -'529770': +"529770": installDir: Ley Lines launch: - config: oslist: windows executable: LeyLinesOfLegend.exe type: default -'529780': +"529780": installDir: Disturbed launch: - config: @@ -255305,25 +250918,25 @@ oslist: linux executable: Disturbed.sh type: default -'529790': +"529790": installDir: Gone with the Demon launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: GoneWithTheDemon.exe type: none -'529820': +"529820": installDir: VR power launch: - config: oslist: windows executable: BeyondPowerVR.exe type: vr -'529840': +"529840": installDir: Brawl of Ages launch: - - arguments: '-steam' + - arguments: "-steam" config: oslist: windows executable: bin/Brawl of Ages.exe @@ -255332,9 +250945,9 @@ oslist: linux executable: bin/brawlofages-steam.sh type: default - - arguments: '-steam' + - arguments: "-steam" config: - osarch: '64' + osarch: "64" oslist: macos executable: Brawl of Ages.app/Contents/MacOS/Brawl of Ages type: default @@ -255394,52 +251007,52 @@ description: Modelviewer executable: Brawl of Ages.app/Contents/MacOS/Brawl of Ages type: none -'529860': +"529860": installDir: ColecoVision Flashback launch: - config: oslist: windows executable: CV40-121514.exe type: none -'529870': +"529870": installDir: Microgons launch: - config: oslist: windows executable: Microgons.exe type: default -'529890': +"529890": installDir: Maniac Mansion launch: - - arguments: '-c maniac-v1.ini maniac-v1' + - arguments: "-c maniac-v1.ini maniac-v1" config: oslist: windows description: Play Maniac Mansion Original executable: ScummVM/scummvm.exe type: none workingdir: ScummVM - - arguments: '-c maniac-v1.ini maniac-v1' + - arguments: "-c maniac-v1.ini maniac-v1" config: oslist: macos description: Play Maniac Mansion Original executable: ScummVM/scummvm type: none workingdir: ScummVM - - arguments: '-c maniac-v2.ini maniac-v2' + - arguments: "-c maniac-v2.ini maniac-v2" config: oslist: windows description: Play Maniac Mansion Enhanced executable: ScummVM/scummvm.exe type: none workingdir: Scummvm - - arguments: '-c maniac-v2.ini maniac-v2' + - arguments: "-c maniac-v2.ini maniac-v2" config: oslist: macos description: Play Maniac Mansion Enhanced executable: ScummVM/scummvm type: none workingdir: ScummVM -'529900': +"529900": installDir: polygon_attack launch: - config: @@ -255447,40 +251060,40 @@ executable: PolygonAttack.exe type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: PolygonAttack.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: PolygonAttack.x86_64 type: none -'529910': +"529910": installDir: Project Peacock launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: .\\ArkPark\\Binaries\\Win64\\ArkPark-Win64-Shipping-Steam.exe + executable: ".\\\\ArkPark\\\\Binaries\\\\Win64\\\\ArkPark-Win64-Shipping-Steam.exe" type: vr - workingdir: .\\ArkPark\\Binaries\\Win64\\ -'529920': + workingdir: ".\\\\ArkPark\\\\Binaries\\\\Win64\\\\" +"529920": installDir: Resurgence launch: - config: oslist: windows executable: Resurgence.exe type: default -'529940': +"529940": installDir: ShowdownVR launch: - - arguments: '-vr' + - arguments: "-vr" config: oslist: windows executable: ShowdownVR.exe type: vr -'529950': +"529950": installDir: 12 orbits launch: - config: @@ -255495,15 +251108,15 @@ oslist: linux executable: 12 orbits.x86 type: none -'529970': +"529970": installDir: PositronX launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: PositronX.exe type: default -'530010': +"530010": installDir: Water Heroes launch: - config: @@ -255512,19 +251125,19 @@ type: default - config: oslist: macos - executable: Water Heroes.app\\Contents\\MacOS\\Water Heroes + executable: "Water Heroes.app\\\\Contents\\\\MacOS\\\\Water Heroes" type: default -'530020': +"530020": installDir: World to the West launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: WorldToTheWest.exe type: none - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: WorldToTheWest.exe @@ -255535,18 +251148,18 @@ executable: WorldToTheWest.app type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: WorldToTheWest.x86_64 type: none - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: WorldToTheWest.x86 type: none -'530040': +"530040": installDir: reconquest launch: - config: @@ -255557,21 +251170,21 @@ oslist: macos executable: reconquest.app type: none -'530070': +"530070": installDir: Train Sim World launch: - config: oslist: windows - executable: WindowsNoEditor\\TS2Prototype.exe + executable: "WindowsNoEditor\\\\TS2Prototype.exe" type: none -'530080': +"530080": installDir: Super Toaster X Learn Japanese RPG launch: - config: oslist: windows executable: Super Toaster X.exe type: none -'530110': +"530110": installDir: Tales of a Spymaster launch: - config: @@ -255583,18 +251196,18 @@ executable: ToaS.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: ToaS.x86_64 type: default -'530120': +"530120": installDir: VR The Diner Duo launch: - config: oslist: windows executable: VRTheDinerDuo.exe type: vr -'530130': +"530130": installDir: Akuto_ Showdown launch: - config: @@ -255606,16 +251219,16 @@ executable: akuto.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: akuto.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: akuto.x86_64 type: default -'530160': +"530160": installDir: Eve of Destruction - REDUX launch: - config: @@ -255623,12 +251236,12 @@ executable: Eve of Destruction.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Eve of Destruction.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Eve of Destruction.x86_64 type: default @@ -255636,21 +251249,21 @@ oslist: macos executable: Eve of Destruction.app type: default -'530240': +"530240": installDir: PixelWarfarePro launch: - config: oslist: windows executable: PixelWarfarePro.exe type: none -'530290': +"530290": installDir: Planet Vicious Creatures launch: - config: oslist: windows executable: planetvc.exe type: default -'530300': +"530300": installDir: Slymes launch: - config: @@ -255661,18 +251274,18 @@ oslist: macos executable: Slymes.app type: default -'530320': +"530320": installDir: Wandersong launch: - config: oslist: windows - executable: PC\\wandersong.exe + executable: "PC\\\\wandersong.exe" type: none - config: oslist: macos - executable: Mac\\wandersong.app\\contents\\MacOS\\wandersong + executable: "Mac\\\\wandersong.app\\\\contents\\\\MacOS\\\\wandersong" type: none -'530330': +"530330": installDir: Blameless launch: - config: @@ -255681,34 +251294,34 @@ type: default - config: oslist: macos - executable: Blameless.app\\Contents\\MacOS\\Blameless + executable: "Blameless.app\\\\Contents\\\\MacOS\\\\Blameless" type: default -'530340': {} -'530350': +"530340": {} +"530350": installDir: BigBoxVR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SmashboxArena.exe type: vr -'530360': +"530360": installDir: Requiescence launch: - config: oslist: windows - executable: lib\\windows-i686\\Requiesence.exe + executable: "lib\\\\windows-i686\\\\Requiesence.exe" type: default - config: oslist: macos - executable: Requiesence.app\\Contents\\MacOS\\Requiesence + executable: "Requiesence.app\\\\Contents\\\\MacOS\\\\Requiesence" type: default - config: oslist: linux executable: Requiesence.sh type: default -'530370': - installDir: Warlock's Tower +"530370": + installDir: "Warlock's Tower" launch: - config: oslist: windows @@ -255716,9 +251329,9 @@ type: none - config: oslist: macos - executable: Warlock's Tower App.app\\Contents\\MacOS\\love + executable: "Warlock's Tower App.app\\\\Contents\\\\MacOS\\\\love" type: none -'530390': +"530390": installDir: Slayaway Camp launch: - config: @@ -255731,19 +251344,19 @@ type: default - arguments: LC_ALL=C %command%_64 config: - osarch: '64' + osarch: "64" oslist: linux executable: SlayawayCamp.x86_64 type: default - arguments: LC_ALL=C %command% config: - osarch: '32' + osarch: "32" oslist: linux executable: SlayawayCamp.x86 type: default -'530470': {} -'530500': - installDir: The Rosefinch Curse(Ning's Wing 1) +"530470": {} +"530500": + installDir: "The Rosefinch Curse(Ning's Wing 1)" launch: - config: oslist: windows @@ -255755,12 +251368,12 @@ description: Chinese version executable: Chinese version.exe type: none -'530510': +"530510": installDir: Manipulated launch: - config: oslist: macos - executable: Manipulated.app\\Contents\\MacOS\\Manipulated + executable: "Manipulated.app\\\\Contents\\\\MacOS\\\\Manipulated" type: default - config: oslist: windows @@ -255770,24 +251383,24 @@ oslist: linux executable: Manipulated.x86 type: default -'530520': +"530520": installDir: Aegis launch: - config: oslist: windows executable: Aegis.exe type: none -'530530': +"530530": installDir: Si Kancil The Adventurous Mouse Deer launch: - config: oslist: windows executable: Kancil.exe type: default -'530540': +"530540": installDir: mrpresidentprologue launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows executable: nw.exe @@ -255797,29 +251410,29 @@ description: without Steam Overlay executable: nw.exe type: option2 -'530550': +"530550": installDir: Bubble Jungle launch: - config: oslist: windows executable: bubblejungle.exe type: default -'530560': +"530560": installDir: STEAM HAMMER launch: - config: oslist: windows executable: sh_client.exe type: default -'530620': +"530620": installDir: RESIDENT EVIL 7 biohazard Demo launch: - executable: re7trial.exe type: none nameLocalized: - japanese: 'BIOHAZARD 7 Teaser: Beginning Hour' - koreana: 'BIOHAZARD 7 Teaser: Beginning Hour' -'530630': + japanese: "BIOHAZARD 7 Teaser: Beginning Hour" + koreana: "BIOHAZARD 7 Teaser: Beginning Hour" +"530630": installDir: Empires Apart launch: - config: @@ -255827,14 +251440,14 @@ description: Empires Apart (Game Launcher) executable: autorun.exe type: option1 -'530650': +"530650": installDir: Rogues or Heroes launch: - config: oslist: windows executable: R_O_H.exe type: default -'530680': +"530680": installDir: GraveMatters launch: - config: @@ -255849,7 +251462,7 @@ oslist: linux executable: gm.x86_64 type: default -'530700': +"530700": installDir: Argo launch: - config: @@ -255857,34 +251470,34 @@ description: Launch Project Argo (Prototype) executable: argobattleye.exe type: default - - arguments: '-exe argo_x64.exe' + - arguments: "-exe argo_x64.exe" config: - osarch: '64' + osarch: "64" oslist: windows description: Game (64-bit) executable: argobattleye.exe type: option1 - - arguments: '-exe argo.exe' + - arguments: "-exe argo.exe" config: oslist: windows description: Game (32-bit) executable: argobattleye.exe type: option2 -'530720': +"530720": installDir: Solitaire Royale launch: - config: oslist: windows executable: SolitaireRoyale.exe type: default -'530740': +"530740": installDir: Spareware launch: - config: oslist: windows executable: Spareware.exe type: default -'530820': +"530820": installDir: Subject A-119 launch: - config: @@ -255892,23 +251505,23 @@ description: Launch executable: Subject_A119.exe type: default -'530830': - installDir: Sophie's Guardian +"530830": + installDir: "Sophie's Guardian" launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Sophie.exe type: vr -'530860': +"530860": installDir: The Wanderer launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: The Wanderer.exe type: default -'530890': +"530890": installDir: Haydee launch: - config: @@ -255921,7 +251534,7 @@ description: Edith executable: edith.exe type: editor -'530900': +"530900": installDir: emoojio launch: - config: @@ -255929,48 +251542,48 @@ description: Windows executable: main.exe type: none - workingdir: . + workingdir: "." - config: oslist: macos description: Mac executable: emojio.app type: none - workingdir: . + workingdir: "." - config: oslist: linux description: Linux executable: bin/main type: none workingdir: bin -'530920': +"530920": installDir: Archimedes launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: nw.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: nw.exe type: default - config: oslist: macos - executable: archimedes.app\\Contents\\MacOS\\nwjs + executable: "archimedes.app\\\\Contents\\\\MacOS\\\\nwjs" type: default - config: oslist: linux executable: nw type: default -'530930': +"530930": installDir: Soulblight launch: - config: oslist: windows executable: Soulblight.exe type: none -'530950': +"530950": installDir: Tower 57 launch: - config: @@ -255985,62 +251598,62 @@ sc_schinese: 巨塔57 schinese: 巨塔57 tchinese: 巨塔57 -'530960': +"530960": installDir: ROM launch: - config: oslist: windows - executable: WindowsNoEditor\\ROM.exe + executable: "WindowsNoEditor\\\\ROM.exe" type: vr -'531050': +"531050": installDir: Far Beyond A space odyssey launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: FarBeyond.exe type: vr - config: - osarch: '64' + osarch: "64" oslist: windows executable: FarBeyond.exe type: othervr -'531070': +"531070": installDir: The Tower launch: - config: oslist: windows executable: TheTower.exe type: none -'531080': - installDir: Minotaur's Maze +"531080": + installDir: "Minotaur's Maze" launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: mm.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: mm.exe type: vr -'531110': +"531110": installDir: BattlesofNorghan launch: - config: oslist: windows executable: BattlesofNorghan.exe type: default -'531140': +"531140": installDir: All the Delicate Duplicates launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: All the Delicate Duplicates.exe type: default -'531180': +"531180": installDir: AIRHEART launch: - config: @@ -256051,14 +251664,14 @@ oslist: windows executable: Airheart.exe type: default -'531190': - installDir: HEBEREKE! March! Red Army Girls' Brigade +"531190": + installDir: "HEBEREKE! March! Red Army Girls' Brigade" launch: - executable: contents/Game.exe type: none nameLocalized: japanese: へべれけ! ~すすめ 赤軍少女旅団!~ -'531200': +"531200": installDir: uc_steamb launch: - config: @@ -256067,7 +251680,7 @@ type: none nameLocalized: japanese: 桜の樹の下には -'531240': +"531240": installDir: Max Stern launch: - config: @@ -256075,7 +251688,7 @@ executable: nw.exe type: default - config: - osarch: '64' + osarch: "64" oslist: macos executable: max_stern.app type: default @@ -256083,15 +251696,15 @@ oslist: linux executable: nw type: default -'531270': +"531270": installDir: Art of Fight launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ArtOfFight.exe type: vr -'531480': +"531480": installDir: ShapeRockets launch: - config: @@ -256099,8 +251712,8 @@ description: Launch executable: ShapeRockets.exe type: default -'531490': {} -'531510': +"531490": {} +"531510": installDir: Just Shapes & Beats launch: - config: @@ -256113,41 +251726,41 @@ type: default - config: oslist: macos - executable: JSB.app\\Contents\\MacOS\\JSB + executable: "JSB.app\\\\Contents\\\\MacOS\\\\JSB" type: default -'531520': +"531520": installDir: TankCraft launch: - config: oslist: windows executable: tankcraft.exe type: default -'531530': +"531530": installDir: POLYGOD launch: - config: oslist: windows - executable: windows_content\\Polygod.exe + executable: "windows_content\\\\Polygod.exe" type: default - config: oslist: macos - executable: mac_content\\Polygod.app + executable: "mac_content\\\\Polygod.app" type: default - config: oslist: linux - executable: linux_content\\Polygod.x86 + executable: "linux_content\\\\Polygod.x86" type: default -'531540': +"531540": installDir: Hidden Dimensions 3 launch: - config: oslist: windows executable: HD3.exe type: default -'531630': +"531630": installDir: Non_Linear_Text_Quests launch: - - arguments: '-standalone -fullscreen -game nlbhub' + - arguments: "-standalone -fullscreen -game nlbhub" config: oslist: windows executable: instead.exe @@ -256156,7 +251769,7 @@ oslist: linux executable: nlbhub.sh type: default -'531640': +"531640": installDir: Eternal Card Game launch: - config: @@ -256167,33 +251780,33 @@ oslist: macos executable: Eternal.app type: none -'531660': +"531660": installDir: Exoplanet First Contact launch: - config: oslist: windows executable: ExoplanetFC.exe type: default -'531680': +"531680": installDir: 8BitInvaders launch: - executable: ClientLauncherG.exe type: default - - arguments: 'DUMP_FULL COORDURL=http://52.7.55.172:6530/' + - arguments: "DUMP_FULL COORDURL=http://52.7.55.172:6530/" config: betakey: beta2 description: 8bit beta2 executable: ClientLauncherG.exe type: option1 -'531730': +"531730": installDir: Corona Blossom Vol. 2 The Truth From Beyond launch: - executable: CoroBlo_vol_2.exe type: none nameLocalized: - japanese: 'コロナブロッサム Vol.2 The Truth From Beyond ' + japanese: "コロナブロッサム Vol.2 The Truth From Beyond " schinese: Corona Blossom-日冕之华- vol.2 自外而来的真相 -'531740': +"531740": installDir: Rubek launch: - config: @@ -256202,9 +251815,9 @@ type: default - config: oslist: macos - executable: Rubek.app\\Contents\\MacOS\\Rubek + executable: "Rubek.app\\\\Contents\\\\MacOS\\\\Rubek" type: default -'531780': +"531780": installDir: Castle Explorer launch: - config: @@ -256219,26 +251832,26 @@ oslist: macos executable: Castleexplorer type: default -'531860': - installDir: Where's My What +"531860": + installDir: "Where's My What" launch: - executable: WheresMyWhat.exe type: default -'531890': +"531890": installDir: GuardiansOath launch: - config: oslist: windows executable: golaunch.exe type: default -'531910': +"531910": installDir: Bad Sector HDD launch: - config: oslist: windows executable: BadSector.exe type: default -'531920': +"531920": installDir: Carton launch: - config: @@ -256256,11 +251869,11 @@ description: Launcher Mac executable: Carton.app type: default -'531930': +"531930": installDir: Dungeon Rats launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: 64-bit version executable: DR64.exe @@ -256270,31 +251883,31 @@ description: 32-bit version executable: DR.exe type: option1 -'531960': +"531960": installDir: Bloody Walls launch: - config: oslist: windows executable: game.exe type: default -'531990': +"531990": installDir: Egg Time launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: EggTime.exe type: vr -'532030': +"532030": installDir: Dream Dealer launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: DreamDealer64.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: DreamDealer32.exe type: default @@ -256303,16 +251916,16 @@ executable: DreamDealerMacosxUniversal.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: DreamDealerLinuxUniversal.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: DreamDealerLinuxUniversal.x86_64 type: default -'532070': +"532070": installDir: The Miners launch: - config: @@ -256330,7 +251943,7 @@ description: Campaign Editor executable: Campaign Editor.exe type: none -'532080': +"532080": installDir: AMVR launch: - config: @@ -256338,12 +251951,12 @@ description: Launch executable: game.exe type: vr -'532090': - installDir: Dawn's Light 2 +"532090": + installDir: "Dawn's Light 2" launch: - executable: DawnsLight2.exe type: default -'532110': +"532110": installDir: Rusty Lake Roots launch: - config: @@ -256354,12 +251967,12 @@ oslist: macos executable: RustyLakeRoots.app type: default -'532120': +"532120": installDir: Header Goal VR launch: - executable: Header-Goal-VR.exe type: vr -'532170': +"532170": installDir: WaveLand launch: - config: @@ -256370,7 +251983,7 @@ oslist: macos executable: WaveLand.app type: default -'532190': +"532190": installDir: Super Blood Hockey launch: - config: @@ -256383,37 +251996,35 @@ type: none - config: oslist: macos - executable: SuperBloodHockey.app\\Contents\\MacOS\\SuperBloodHockey + executable: "SuperBloodHockey.app\\\\Contents\\\\MacOS\\\\SuperBloodHockey" type: none -'532210': +"532210": installDir: Life is Strange 2 launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Life Is Strange 2 - executable: LIS2\\Binaries\\Win64\\LIS2-Win64-Shipping.exe + executable: "LIS2\\\\Binaries\\\\Win64\\\\LIS2-Win64-Shipping.exe" type: option1 - - arguments: '-ExecCmds=\"toggleAllScreenMessages;Quit\"' + - arguments: "-ExecCmds=\\\"toggleAllScreenMessages;Quit\\\"" config: - betakey: >- - dne_qa,denuvo,age_ratings,gamescom_demo,loc_trans,marketing,milestone,playtest,pr_branch,qa_amd,qa_compat,qa_integration,qa_integration2,qa_intel,qa_loc,qa_nvidia,review,tape,writtersroom,se_ext - osarch: '64' + betakey: "dne_qa,denuvo,age_ratings,gamescom_demo,loc_trans,marketing,milestone,playtest,pr_branch,qa_amd,qa_compat,qa_integration,qa_integration2,qa_intel,qa_loc,qa_nvidia,review,tape,writtersroom,se_ext" + osarch: "64" oslist: windows description: Promenade (test exe) - executable: LIS2\\Binaries\\Win64\\LIS2-Win64-Test.exe + executable: "LIS2\\\\Binaries\\\\Win64\\\\LIS2-Win64-Test.exe" type: option1 - - arguments: '-noVerifyGC' + - arguments: "-noVerifyGC" config: - betakey: >- - dne_qa,denuvo,age_ratings,gamescom_demo,loc_trans,marketing,milestone,playtest,pr_branch,qa_amd,qa_compat,qa_integration,qa_integration2,qa_intel,qa_loc,qa_nvidia,review,tape,writtersroom - osarch: '64' + betakey: "dne_qa,denuvo,age_ratings,gamescom_demo,loc_trans,marketing,milestone,playtest,pr_branch,qa_amd,qa_compat,qa_integration,qa_integration2,qa_intel,qa_loc,qa_nvidia,review,tape,writtersroom" + osarch: "64" oslist: windows description: Promenade (dev exe) - for dev log output - executable: LIS2\\Binaries\\Win64\\LIS2.exe + executable: "LIS2\\\\Binaries\\\\Win64\\\\LIS2.exe" type: option1 - config: - osarch: '64' + osarch: "64" oslist: linux executable: LifeIsStrange2.sh type: default @@ -256421,22 +252032,22 @@ oslist: macos executable: Life is Strange 2.app type: default -'532230': {} -'532260': +"532230": {} +"532260": installDir: Top Floor launch: - config: oslist: windows executable: TheWalk.exe type: vr -'532270': +"532270": installDir: LethalVR launch: - config: oslist: windows executable: LethalVR.exe type: vr -'532290': +"532290": installDir: Dark Train launch: - config: @@ -256449,7 +252060,7 @@ description: Launch Mac executable: DarkTrain.app type: none -'532320': +"532320": installDir: de Blob launch: - config: @@ -256460,48 +252071,48 @@ oslist: windows executable: Launcher.exe type: config - - arguments: '-exclusivefullscreen' + - arguments: "-exclusivefullscreen" config: oslist: windows description: Launch de Blob in Exclusive Fullscreen Mode executable: deBlob.exe type: none -'532470': +"532470": installDir: In Extremis launch: - config: oslist: windows executable: inExtremis.exe type: default -'532600': +"532600": installDir: Sweet Candy Mahjong launch: - config: oslist: windows executable: SweetCandyMahjong.exe type: default -'532660': +"532660": installDir: Exteria launch: - config: oslist: windows executable: Exteria.exe type: default -'532670': +"532670": installDir: Rijn in Manor of the Damned launch: - config: oslist: windows executable: Rijn.exe type: default -'532690': +"532690": installDir: Neo ATLAS 1469 launch: - config: oslist: windows executable: na1469.exe type: default -'532700': +"532700": installDir: Finque launch: - config: @@ -256512,19 +252123,19 @@ oslist: linux executable: Finque.x86 type: default -'532740': +"532740": installDir: 厨房战争 launch: - config: oslist: windows executable: CrazyFlies.exe type: openvroverlay -'532750': +"532750": installDir: Dwarrows launch: - - arguments: '-useallavailablecores' + - arguments: "-useallavailablecores" config: - osarch: '64' + osarch: "64" oslist: windows executable: Dwarrows.exe type: default @@ -256537,52 +252148,52 @@ description: Dwarrows (Vulkan) executable: Dwarrows.sh type: option1 - - arguments: '-opengl4' + - arguments: "-opengl4" config: oslist: linux description: Dwarrows (OpenGL4) executable: Dwarrows.sh type: option2 -'532770': +"532770": installDir: Time Leap Paradise SUPER LIVE! launch: - executable: tlpsl.exe type: none -'532790': {} -'532800': +"532790": {} +"532800": installDir: ComPet launch: - config: oslist: windows executable: ComPet.exe type: none -'532820': +"532820": installDir: Iron Fish launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: IronFish.exe type: default -'532840': +"532840": installDir: CAYNE launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: cayne.exe type: default - config: - osarch: '64' + osarch: "64" oslist: macos executable: cayne.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: cayne.x86_64 type: default -'532890': +"532890": installDir: Civil War 1862 launch: - config: @@ -256593,7 +252204,7 @@ oslist: windows executable: CivilWar1862.exe type: default -'532900': +"532900": installDir: Outskirts launch: - config: @@ -256605,23 +252216,23 @@ executable: Outskirts.app/Contents/MacOS/Outskirts type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Outskirts.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Outskirts.x86_64 type: default -'532920': +"532920": installDir: The Artifact launch: - config: oslist: windows executable: TheArtifact.exe type: none -'532950': +"532950": installDir: Hoyle Official Casino Games launch: - config: @@ -256634,11 +252245,11 @@ description: Launch executable: Hoyle Official Casino Games.app type: none -'532980': +"532980": installDir: Thaumistry launch: - config: - osarch: '64' + osarch: "64" oslist: linux executable: Thaumistry type: default @@ -256647,26 +252258,26 @@ executable: ThaumistryLauncher.exe type: default - config: - osarch: '64' + osarch: "64" oslist: macos executable: Thaumistry.app/Contents/MacOS/Thaumistry type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Thaumistry type: default -'533010': +"533010": installDir: Filthy Lucre launch: - executable: FilthyLucre.exe type: default -'533030': +"533030": installDir: Haunted Hotel launch: - executable: Haunted Hotel.exe type: none -'533040': +"533040": installDir: Dark Parables The Thief and the Tinderbox Collectors Edition launch: - config: @@ -256675,11 +252286,9 @@ type: default - config: oslist: macos - executable: >- - DarkParables_TheThiefAndTheTinderbox_CE.app\\Contents\\MacOS\\Dark Parables The Thief and the Tinderbox - Collector's Edition + executable: "DarkParables_TheThiefAndTheTinderbox_CE.app\\\\Contents\\\\MacOS\\\\Dark Parables The Thief and the Tinderbox Collector's Edition" type: default -'533050': +"533050": installDir: Rebel Story launch: - config: @@ -256691,77 +252300,77 @@ executable: RebelStory.app type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: RebelStory.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: RebelStory.x86_64 type: none -'533060': +"533060": installDir: PuppetShow™ Mystery of Joyville launch: - executable: Puppet Show - Mystery of Joyville.exe type: none -'533070': - installDir: League of Light Dark Omens Collector's Edition +"533070": + installDir: "League of Light Dark Omens Collector's Edition" launch: - executable: LeagueOfLightDarkOmensCE.exe type: none -'533080': - installDir: Phantasmat Crucible Peak Collector's Edition +"533080": + installDir: "Phantasmat Crucible Peak Collector's Edition" launch: - executable: Phantasmat_CruciblePeakCE.exe type: none -'533090': - installDir: Haunted Legends The Queen of Spades Collector's Edition +"533090": + installDir: "Haunted Legends The Queen of Spades Collector's Edition" launch: - executable: Haunted Legends The Queen of Spades.exe type: none -'533150': {} -'533170': - installDir: Don't Chat With Strangers +"533150": {} +"533170": + installDir: "Don't Chat With Strangers" launch: - executable: start.bat type: none -'533180': +"533180": installDir: Campfire launch: - config: oslist: windows executable: campfire.exe type: default -'533260': +"533260": installDir: Behold launch: - config: oslist: windows executable: Behold.exe type: none -'533280': +"533280": installDir: Wild Arena launch: - config: oslist: windows executable: WildArena1.0.exe type: default -'533300': +"533300": installDir: Zup! launch: - config: oslist: windows executable: Zup!.exe type: default -'533320': +"533320": installDir: SpaceTrucker launch: - config: oslist: windows executable: Game.exe type: default -'533330': +"533330": installDir: ShutEye launch: - config: @@ -256776,22 +252385,22 @@ oslist: linux executable: ShutEye.x86 type: none -'533340': +"533340": installDir: Captivity launch: - config: oslist: windows executable: Captivity.exe type: default -'533360': +"533360": installDir: Zia and the goddesses of magic launch: - config: oslist: windows executable: ZiaRPG.exe type: default -'533470': - installDir: The Cube Hotel(Ning's Wing 2) +"533470": + installDir: "The Cube Hotel(Ning's Wing 2)" launch: - config: oslist: windows @@ -256803,7 +252412,7 @@ description: Chinese version executable: Chinese version.exe type: none -'533480': +"533480": installDir: Academagia The Making of Mages launch: - config: @@ -256811,42 +252420,42 @@ description: Launch executable: Academagia.exe type: none -'533540': +"533540": installDir: MONMUSU launch: - config: oslist: windows executable: game.exe type: default -'533580': +"533580": installDir: Entangle launch: - config: oslist: windows executable: Entangle.exe type: none -'533620': {} -'533630': +"533620": {} +"533630": installDir: Fight Me Bro! launch: - config: oslist: windows executable: FMBgame.exe type: default -'533640': {} -'533660': - installDir: Ziggy's Chase +"533640": {} +"533660": + installDir: "Ziggy's Chase" launch: - config: oslist: windows executable: ziggys_chase.exe type: default - - arguments: '-vroculus' + - arguments: "-vroculus" config: oslist: windows executable: ziggys_chase.exe type: othervr - - arguments: '-vrvive' + - arguments: "-vrvive" config: oslist: windows executable: ziggys_chase.exe @@ -256855,51 +252464,51 @@ oslist: macos executable: ziggys_chase.app type: default -'533690': +"533690": installDir: Think To Die launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: 'ThinkToDie[1].exe' + executable: "ThinkToDie[1].exe" type: none - config: - osarch: '32' + osarch: "32" oslist: windows - executable: 'ThinkToDie[Win32].exe' + executable: "ThinkToDie[Win32].exe" type: none - config: - osarch: '64' + osarch: "64" oslist: linux - executable: 'ThinkToDie[Linux].x86_64' + executable: "ThinkToDie[Linux].x86_64" type: none - config: - osarch: '64' + osarch: "64" oslist: macos - executable: Contents\\MacOS\\Mac + executable: "Contents\\\\MacOS\\\\Mac" type: none -'533700': {} -'533710': {} -'533740': +"533700": {} +"533710": {} +"533740": installDir: Tunnel VR launch: - config: oslist: windows executable: Tunnel.exe type: vr - - arguments: '-novr' + - arguments: "-novr" config: oslist: windows executable: Tunnel.exe type: default -'533770': +"533770": installDir: THE WRITER A CHANGE OF IDENTITY launch: - config: oslist: windows executable: The Writer.exe type: default -'533780': +"533780": installDir: Zombie Defense launch: - config: @@ -256914,64 +252523,64 @@ oslist: linux executable: ZombieDefense.x86_64 type: none -'533800': {} -'533820': +"533800": {} +"533820": installDir: Atonement 2 Ruptured by Despair launch: - config: oslist: windows executable: Atonement 2.exe type: none -'533850': +"533850": installDir: EggK47 launch: - config: oslist: windows executable: EggK47.exe type: default -'533860': +"533860": installDir: Multimirror launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: x64\\Multimirror.exe + executable: "x64\\\\Multimirror.exe" type: none - config: oslist: macos executable: Multimirror.app type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: Multimirror.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: Multimirror.x86_64 type: none - config: - osarch: '32' + osarch: "32" oslist: macos - executable: x86\\Multimirror.exe + executable: "x86\\\\Multimirror.exe" type: none -'533890': +"533890": installDir: ReBoot launch: - config: oslist: windows executable: fmr.exe type: config -'533910': {} -'533920': +"533910": {} +"533920": installDir: Battle Tank Armada launch: - config: oslist: windows executable: Battle Tank Armada.exe type: default -'533950': +"533950": installDir: doors_game launch: - config: @@ -256982,58 +252591,58 @@ oslist: macos executable: DoorsGame.app type: none -'533960': +"533960": installDir: scaryHumans launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SHWin_64.exe type: default - config: - osarch: '64' + osarch: "64" oslist: macos executable: SH_Mac.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: SH_Lin.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: SHW_86.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: SH_Lin.x86 type: default -'533970': +"533970": installDir: Blocks launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Blocks.exe type: vr -'533990': +"533990": installDir: Sword and Shield Arena VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SwordAndShieldArena.exe type: vr -'534000': +"534000": installDir: FastActionHero launch: - config: oslist: windows executable: Fast Action Hero.exe type: vr -'534010': +"534010": installDir: Defense of Egypt Cleopatra Mission launch: - config: @@ -257044,25 +252653,25 @@ oslist: macos executable: DefenseOfEgypt.app type: default -'534190': +"534190": installDir: Blink the Bulb launch: - config: oslist: windows executable: Blink_The_Bulb.exe type: default -'534200': +"534200": installDir: Ultimate Solid launch: - config: oslist: macos - executable: ultimatesolid.app\\Contents\\MacOS\\nwjs + executable: "ultimatesolid.app\\\\Contents\\\\MacOS\\\\nwjs" type: default - config: oslist: windows executable: nw.exe type: default -'534210': +"534210": installDir: MegaRats launch: - config: @@ -257070,63 +252679,61 @@ description: Standard Desktop Launch executable: MegaRatsSteam-Windows-32-bit.exe type: default - - arguments: '-vr' + - arguments: "-vr" config: oslist: windows - description: 'MegaRats VR (HDK,HDK2)' - description_loc: - english: 'MegaRats VR (HDK,HDK2)' + description: "MegaRats VR (HDK,HDK2)" executable: MegaRatsSteam-Windows-32-bit.exe type: othervr - - arguments: '-openvr' + - arguments: "-openvr" config: oslist: windows - description: 'MegaRats VR (HTC Vive, Oculus)' + description: "MegaRats VR (HTC Vive, Oculus)" executable: MegaRatsSteam-Windows-32-bit.exe type: vr -'534220': +"534220": installDir: DragonSin launch: - config: oslist: windows executable: DragonSin.exe type: default -'534230': +"534230": installDir: Quell 4D launch: - config: oslist: windows executable: Quell4D.exe type: vr -'534240': +"534240": installDir: The Island of Eternal Struggle launch: - config: oslist: windows executable: The Island of Eternal Struggle.exe type: default -'534270': +"534270": installDir: Solitaire 220 Plus launch: - config: oslist: windows executable: Solitaire 220 Plus_oal_steam.exe type: default -'534290': +"534290": installDir: Cursed_Castilla launch: - config: oslist: windows executable: Cursed_Castilla.exe type: default -'534300': +"534300": installDir: Project WAKE launch: - config: oslist: windows executable: Project W.A.K.E..exe type: default -'534320': +"534320": installDir: 4Team launch: - config: @@ -257141,7 +252748,7 @@ oslist: linux executable: 4Team.x86 type: default -'534350': +"534350": installDir: Ancient Rome 2 launch: - config: @@ -257152,99 +252759,87 @@ oslist: macos executable: AncientRome2.app/Contents/MacOS/AncientRome2 type: default -'534360': +"534360": installDir: Colt Express launch: - executable: game.exe type: none -'534370': +"534370": installDir: PureFarming launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: PureFarming_Launcher.exe type: default - - arguments: '-window-mode exclusive -screen-fullscreen 1' + - arguments: "-window-mode exclusive -screen-fullscreen 1" config: - betakey: 'test1 version_1-1-0 version_1-1-1 version_1-1-2 version_1-1-3 version_1-1-4 ' - osarch: '64' + betakey: "test1 version_1-1-0 version_1-1-1 version_1-1-2 version_1-1-3 version_1-1-4 " + osarch: "64" oslist: windows description: Pure Farming 2018 (Exclusive Fullscreen) executable: PureFarming.exe type: option1 - config: - betakey: 'test1 version_1-1-0 version_1-1-1 version_1-1-2 version_1-1-3 version_1-1-4 ' - osarch: '64' + betakey: "test1 version_1-1-0 version_1-1-1 version_1-1-2 version_1-1-3 version_1-1-4 " + osarch: "64" oslist: windows description: Pure Farming 2018 executable: PureFarming.exe type: option2 -'534380': +"534380": installDir: Dying Light 2 launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch DL2 - description_loc: - english: Launch DL2 - executable: ph\\work\\bin\\x64\\DyingLightGame_x64_rwdi.exe + executable: "ph\\\\work\\\\bin\\\\x64\\\\DyingLightGame_x64_rwdi.exe" type: default - workingdir: ph\\work\\bin\\x64 - - arguments: '-nopopups' + workingdir: "ph\\\\work\\\\bin\\\\x64" + - arguments: "-nopopups" config: betakey: mph-daily - osarch: '64' + osarch: "64" oslist: windows - ownsdlc: '1263580' - description: 'Launch DL2 [RD, NO POPUPS]' - description_loc: - english: 'Launch DL2 [RD, NO POPUPS]' - executable: ph\\work\\bin\\x64\\DyingLightGame_x64_rd.exe - workingdir: ph\\work\\bin\\x64 + ownsdlc: "1263580" + description: "Launch DL2 [RD, NO POPUPS]" + executable: "ph\\\\work\\\\bin\\\\x64\\\\DyingLightGame_x64_rd.exe" + workingdir: "ph\\\\work\\\\bin\\\\x64" - config: betakey: mph-daily - osarch: '64' + osarch: "64" oslist: windows - ownsdlc: '1263580' - description: 'Launch DL2 [RD]' - description_loc: - english: 'Launch DL2 [RD]' - executable: ph\\work\\bin\\x64\\DyingLightGame_x64_rd.exe - workingdir: ph\\work\\bin\\x64 + ownsdlc: "1263580" + description: "Launch DL2 [RD]" + executable: "ph\\\\work\\\\bin\\\\x64\\\\DyingLightGame_x64_rd.exe" + workingdir: "ph\\\\work\\\\bin\\\\x64" - config: betakey: mph-daily - osarch: '64' + osarch: "64" oslist: windows - ownsdlc: '1263580' - description: 'Launch DL2 [RWP]' - description_loc: - english: 'Launch DL2 [RWP]' - executable: ph\\work\\bin\\x64\\DyingLightGame_x64_rwp.exe - workingdir: ph\\work\\bin\\x64 - - arguments: '-nopopups' + ownsdlc: "1263580" + description: "Launch DL2 [RWP]" + executable: "ph\\\\work\\\\bin\\\\x64\\\\DyingLightGame_x64_rwp.exe" + workingdir: "ph\\\\work\\\\bin\\\\x64" + - arguments: "-nopopups" config: betakey: lqa-weekly - osarch: '64' + osarch: "64" oslist: windows - ownsdlc: '1263580' - description: 'Launch DL2 [RD, NO POPUPS]' - description_loc: - english: 'Launch DL2 [RD, NO POPUPS]' - executable: ph\\work\\bin\\x64\\DyingLightGame_x64_rd.exe - workingdir: ph\\work\\bin\\x64 + ownsdlc: "1263580" + description: "Launch DL2 [RD, NO POPUPS]" + executable: "ph\\\\work\\\\bin\\\\x64\\\\DyingLightGame_x64_rd.exe" + workingdir: "ph\\\\work\\\\bin\\\\x64" - config: betakey: patch3-daily - osarch: '64' + osarch: "64" oslist: windows - ownsdlc: '1263580' - description: 'Launch DL2 [RWDI WITH LIGHTFX]' - description_loc: - english: 'Launch DL2 [RWDI WITH LIGHTFX]' - executable: ph\\work\\bin\\x64\\DyingLightGame_x64_rwdi.exe - workingdir: ph\\work\\bin\\x64 -'534440': + ownsdlc: "1263580" + description: "Launch DL2 [RWDI WITH LIGHTFX]" + executable: "ph\\\\work\\\\bin\\\\x64\\\\DyingLightGame_x64_rwdi.exe" + workingdir: "ph\\\\work\\\\bin\\\\x64" +"534440": installDir: Killing Zombies launch: - config: @@ -257252,48 +252847,48 @@ description: Killing Zombies executable: killingzombies.exe type: vr -'534460': +"534460": installDir: Let Hawaii Happen VR launch: - config: oslist: windows executable: HawaiiVR.exe type: vr -'534480': +"534480": installDir: Tropical Girls VR launch: - - arguments: '-windowed' + - arguments: "-windowed" config: - osarch: '64' + osarch: "64" oslist: windows executable: Tropical Girls VR.exe type: openvroverlay - - arguments: '-windowed' + - arguments: "-windowed" config: - osarch: '64' + osarch: "64" oslist: windows executable: Tropical Girls VR.exe type: othervr -'534500': +"534500": installDir: TigerKnight_EW launch: - - executable: ./frontend/bin/frontend.exe + - executable: "./frontend/bin/frontend.exe" type: none - workingdir: ./frontend/bin/ -'534550': + workingdir: "./frontend/bin/" +"534550": installDir: Guacamelee2 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Guac2_x64.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: Guac2_x86.exe type: default -'534560': +"534560": installDir: Ramify launch: - config: @@ -257304,7 +252899,7 @@ oslist: macos executable: Ramify.app type: default -'534570': +"534570": installDir: Survival Kingdom launch: - config: @@ -257315,7 +252910,7 @@ oslist: linux executable: run.sh type: default -'534660': +"534660": installDir: Lux umbra launch: - config: @@ -257323,7 +252918,7 @@ description: Lux Umbra Episode I executable: Luxumbra.exe type: default -'534680': +"534680": installDir: DolphinUp launch: - config: @@ -257335,59 +252930,59 @@ executable: DolphinUp.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: DolphinUp type: none -'534720': +"534720": installDir: Tornuffalo launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Tornuffalo.exe type: vr - - arguments: '-buffalsnow' + - arguments: "-buffalsnow" config: - osarch: '64' + osarch: "64" oslist: windows - ownsdlc: '574730' + ownsdlc: "574730" description: BuffalSnow Blizzard executable: Tornuffalo.exe type: vr - - arguments: '-vtrackers' + - arguments: "-vtrackers" config: betakey: fullbody - osarch: '64' + osarch: "64" oslist: windows description: Tornuffalo - Full-Body with 3 Vive Trackers executable: Tornuffalo.exe type: vr - - arguments: '-vtrackers -only2trackers' + - arguments: "-vtrackers -only2trackers" config: betakey: fullbody - osarch: '64' + osarch: "64" oslist: windows description: Tornuffalo - 2 Vive Trackers on your feet executable: Tornuffalo.exe type: vr - - arguments: '-vtrackers' + - arguments: "-vtrackers" config: - osarch: '64' + osarch: "64" oslist: windows - ownsdlc: '622110' + ownsdlc: "622110" description: Tornuffalo - Full-Body with 3 Vive Trackers executable: Tornuffalo.exe type: vr - - arguments: '-vtrackers -only2trackers' + - arguments: "-vtrackers -only2trackers" config: - osarch: '64' + osarch: "64" oslist: windows - ownsdlc: '622110' + ownsdlc: "622110" description: Tornuffalo - 2 Vive Trackers on your feet executable: Tornuffalo.exe type: vr -'534740': +"534740": installDir: Icity launch: - config: @@ -257398,14 +252993,14 @@ oslist: windows executable: Icity eab_July_win.exe type: default -'534750': +"534750": installDir: Captain Longbeard launch: - config: oslist: windows executable: Longbeard.exe type: vr -'534780': +"534780": installDir: XGun launch: - config: @@ -257417,25 +253012,24 @@ oslist: macos executable: mac_content.app type: none -'534820': +"534820": installDir: Heroes Evolved - launch: [] -'534870': +"534870": installDir: Arcane launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Arcane.exe type: vr -'534880': +"534880": installDir: Super Ninja Hero launch: - config: oslist: windows executable: Ninja.exe type: vr -'534910': +"534910": installDir: Arcade Fishing launch: - config: @@ -257447,25 +253041,25 @@ executable: Fishing.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Fishing.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Fishing.x86_64 type: default -'534920': +"534920": installDir: Relaxing VR Games Mahjong launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Mahjong.exe type: othervr -'534960': {} -'534980': +"534960": {} +"534980": installDir: Never Forget Me launch: - config: @@ -257480,23 +253074,23 @@ oslist: linux executable: NeverForgetMe.sh type: none -'535000': +"535000": installDir: EXIT launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: 64 bit version - executable: bin64\\exit.exe + executable: "bin64\\\\exit.exe" type: none -'535010': +"535010": installDir: Pen Island VR launch: - config: oslist: windows executable: PenIsland.exe type: vr -'535150': +"535150": installDir: BUSTED! launch: - config: @@ -257505,68 +253099,68 @@ type: default - config: oslist: macos - executable: busted.app\\Contents\\MacOS\\nwjs + executable: "busted.app\\\\Contents\\\\MacOS\\\\nwjs" type: default -'535160': +"535160": installDir: Fire in the Goal launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: wildball.exe type: none - config: - osarch: '64' + osarch: "64" oslist: windows executable: wildball64.exe type: none - - arguments: '-dev' + - arguments: "-dev" config: betakey: internal - osarch: '32' + osarch: "32" executable: wildball.exe type: none - - arguments: '-dev' + - arguments: "-dev" config: betakey: internal - osarch: '64' + osarch: "64" oslist: windows executable: wildball64.exe type: none - config: betakey: beta - osarch: '32' + osarch: "32" oslist: windows executable: wildball.exe type: none - config: betakey: beta - osarch: '64' + osarch: "64" oslist: windows executable: wildball64.exe type: none -'535170': +"535170": installDir: climbtime launch: - - arguments: '-screen-fullscreen 1' + - arguments: "-screen-fullscreen 1" config: oslist: windows executable: climbtime.exe type: default - - arguments: '-screen-fullscreen 1' + - arguments: "-screen-fullscreen 1" config: oslist: windows executable: climbtime.exe type: vr -'535190': +"535190": installDir: Chunky Orbits launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ChunkyOrbits.exe type: vr -'535230': +"535230": installDir: Domina launch: - config: @@ -257575,17 +253169,17 @@ type: none - config: oslist: macos - executable: Domina.app\\Contents\\MacOS\\Domina + executable: "Domina.app\\\\Contents\\\\MacOS\\\\Domina" type: default -'535240': +"535240": installDir: Landmine Larry launch: - config: oslist: windows executable: Landmine Larry.exe type: default -'535250': {} -'535260': +"535250": {} +"535260": installDir: Save Home launch: - config: @@ -257600,119 +253194,119 @@ koreana: 홈 저장 russian: Сохрани Дом tchinese: 保存首頁 -'535270': +"535270": installDir: Constricting Cubes launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ConstrictingCubes.exe type: default - - arguments: '-vr' + - arguments: "-vr" config: - osarch: '64' + osarch: "64" oslist: windows executable: ConstrictingCubes.exe type: vr - - arguments: '-culture=zh_Hans' + - arguments: "-culture=zh_Hans" config: - osarch: '64' + osarch: "64" oslist: windows description: 中国 executable: ConstrictingCubes.exe type: option1 - - arguments: '-culture=zh_Hans -vr' + - arguments: "-culture=zh_Hans -vr" config: - osarch: '64' + osarch: "64" oslist: windows description: 中国 executable: ConstrictingCubes.exe type: vr - - arguments: '-culture=ko_KR' + - arguments: "-culture=ko_KR" config: - osarch: '64' + osarch: "64" oslist: windows description: 한국어 executable: ConstrictingCubes.exe type: option1 - - arguments: '-culture=ko_KR -vr' + - arguments: "-culture=ko_KR -vr" config: - osarch: '64' + osarch: "64" oslist: windows description: 한국어 executable: ConstrictingCubes.exe type: vr - - arguments: '-culture=ja_JP' + - arguments: "-culture=ja_JP" config: - osarch: '64' + osarch: "64" oslist: windows description: 日本語 executable: ConstrictingCubes.exe type: option1 - - arguments: '-culture=ja_JP -vr' + - arguments: "-culture=ja_JP -vr" config: - osarch: '64' + osarch: "64" oslist: windows description: 日本語 executable: ConstrictingCubes.exe type: vr - - arguments: '-culture=de_DE' + - arguments: "-culture=de_DE" config: - osarch: '64' + osarch: "64" oslist: windows description: Deutsche executable: ConstrictingCubes.exe type: option1 - - arguments: '-culture=de_DE -vr' + - arguments: "-culture=de_DE -vr" config: - osarch: '64' + osarch: "64" oslist: windows description: Deutsche executable: ConstrictingCubes.exe type: vr - - arguments: '-culture=fr_FR' + - arguments: "-culture=fr_FR" config: - osarch: '64' + osarch: "64" oslist: windows description: Français executable: ConstrictingCubes.exe type: option1 - - arguments: '-culture=fr_FR -vr' + - arguments: "-culture=fr_FR -vr" config: - osarch: '64' + osarch: "64" oslist: windows description: Français executable: ConstrictingCubes.exe type: vr - - arguments: '-culture=es_ES' + - arguments: "-culture=es_ES" config: - osarch: '64' + osarch: "64" oslist: windows description: Español executable: ConstrictingCubes.exe type: option1 - - arguments: '-culture=es_ES -vr' + - arguments: "-culture=es_ES -vr" config: - osarch: '64' + osarch: "64" oslist: windows description: Español executable: ConstrictingCubes.exe type: vr - - arguments: '-culture=ru_RU' + - arguments: "-culture=ru_RU" config: - osarch: '64' + osarch: "64" oslist: windows description: русский executable: ConstrictingCubes.exe type: option1 - - arguments: '-culture=ru_RU -vr' + - arguments: "-culture=ru_RU -vr" config: - osarch: '64' + osarch: "64" oslist: windows description: русский executable: ConstrictingCubes.exe type: vr -'535280': +"535280": installDir: Retro Parking launch: - config: @@ -257721,24 +253315,24 @@ type: default - config: oslist: macos - executable: RetroParking.app\\Contents\\MacOS\\RetroParking + executable: "RetroParking.app\\\\Contents\\\\MacOS\\\\RetroParking" type: default -'535290': {} -'535330': +"535290": {} +"535330": installDir: Block King launch: - config: oslist: windows executable: BlockKing2.exe type: none -'535350': +"535350": installDir: Elderine Dreams to Destiny launch: - config: oslist: windows executable: Elderine.exe type: default -'535370': +"535370": installDir: The Secret of Middle City launch: - config: @@ -257747,45 +253341,45 @@ type: default - config: oslist: macos - executable: TSMC.app\\Contents\\MacOS\\TSMC + executable: "TSMC.app\\\\Contents\\\\MacOS\\\\TSMC" type: default -'535380': +"535380": installDir: Asteroid Blaster VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Asteroid_Blaster_VR.exe type: vr -'535400': {} -'535410': +"535400": {} +"535410": installDir: SagaOfTheVoid launch: - config: - osarch: '64' + osarch: "64" oslist: windows - description: 'Saga of the Void: Admirals' + description: "Saga of the Void: Admirals" executable: SagaOfTheVoid.exe type: vr - - description: 'Saga of the Void: Admirals' + - description: "Saga of the Void: Admirals" executable: SagaOfTheVoid.exe type: othervr -'535440': +"535440": installDir: War7 launch: - config: oslist: windows executable: war7.exe type: none -'535460': - installDir: 'Fear Of Heights, And Other Things' +"535460": + installDir: "Fear Of Heights, And Other Things" launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: FearOfHeights.exe type: vr -'535480': +"535480": installDir: Sundered launch: - config: @@ -257794,7 +253388,7 @@ executable: Sundered.exe type: none - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: Sundered.x86 @@ -257805,15 +253399,15 @@ executable: Sundered.app type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Sundered.x86_64 type: default -'535490': +"535490": installDir: Porno Studio Tycoon launch: - - arguments: '--single-process' + - arguments: "--single-process" config: oslist: windows executable: nw.exe @@ -257823,13 +253417,13 @@ description: Disable Steam overlay executable: nw.exe type: none - - arguments: '--guides' + - arguments: "--guides" config: oslist: windows description: Show Guides In Folder executable: nw.exe type: manual - - arguments: '--single-process' + - arguments: "--single-process" config: oslist: macos executable: nwjs.app @@ -257839,7 +253433,7 @@ description: Disable Steam overlay executable: nwjs.app type: none -'535520': +"535520": installDir: Nidhogg 2 launch: - config: @@ -257850,57 +253444,57 @@ oslist: macos executable: Nidhogg_2.app type: none -'535530': +"535530": installDir: Demon Hunter launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: demonhunter.exe type: vr -'535630': +"535630": installDir: One More Night launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: OMN.exe type: default - config: oslist: macos - executable: OMN.app\\Contents\\MacOS\\OMN + executable: "OMN.app\\\\Contents\\\\MacOS\\\\OMN" type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: OMN.x86 type: default -'535650': +"535650": installDir: Dwingle B.O.T launch: - config: oslist: windows executable: DwingleBOT.exe type: vr -'535680': +"535680": installDir: CRAZY CHICKEN Strikes Back launch: - config: oslist: windows executable: Crazy_Chicken_Strikes_Back.exe type: default -'535690': +"535690": installDir: Crash Force launch: - config: oslist: windows executable: CrashForce.exe type: default -'535700': +"535700": installDir: 3D Super Chess launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: 3DSuperChess.exe type: default @@ -257909,56 +253503,56 @@ executable: 3DSuperChess.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: 3DSuperChess.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: 3DSuperChess.x86_64 type: default -'535750': +"535750": installDir: VR Fun World launch: - config: oslist: windows executable: vrfunworld.exe type: vr -'535760': +"535760": installDir: Unforgiving Trials The Space Crusade launch: - config: oslist: windows executable: Game.exe type: default -'535840': +"535840": installDir: Marblize launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: MarbleGame.exe type: default -'535850': +"535850": installDir: Micro Machines launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: MicroMachines.exe type: default - config: - osarch: '64' + osarch: "64" oslist: macos executable: MicroMachines.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux - executable: ./micromachines + executable: "./micromachines" type: default -'535890': +"535890": installDir: Stereo Aereo launch: - config: @@ -257967,19 +253561,19 @@ type: default - config: oslist: macos - executable: Stereo Aereo.app\\Contents\\MacOS\\Stereo Aereo + executable: "Stereo Aereo.app\\\\Contents\\\\MacOS\\\\Stereo Aereo" type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Stereo Aereo.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Stereo Aereo.x86_64 type: default -'535910': +"535910": installDir: MeowJongSolitaire launch: - config: @@ -257993,18 +253587,18 @@ executable: mjs.app type: none - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: mjs.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: mjs.x86_64 type: none -'535930': +"535930": installDir: TPH launch: - config: @@ -258019,25 +253613,22 @@ oslist: linux executable: TPH.x86_64 type: default - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" config: betakey: nightlyDISABLED oslist: windows executable: TPH.exe type: config - - arguments: '-force-glcore' + - arguments: "-force-glcore" config: oslist: macos - description: 'Two Point Hospital (OpenGL;10.11, 10.12)' - description_loc: - english: 'Two Point Hospital (OpenGL;10.11, 10.12)' - sc_schinese: 使用 OpenGL 解决方案来应对 macOS 10.11 和 10.12 的问题以启动《双点医院》。 + description: "Two Point Hospital (OpenGL;10.11, 10.12)" executable: TPH.app type: option1 nameLocalized: sc_schinese: 双点医院 schinese: 双点医院 -'535980': +"535980": installDir: Phrase Shift launch: - config: @@ -258048,7 +253639,7 @@ oslist: macos executable: phrase-shift.app type: none -'536040': +"536040": installDir: Cards of Cthulhu launch: - config: @@ -258066,120 +253657,120 @@ description: Start on Linux executable: CthulhuProto/Binaries/Linux/CthulhuProto-Linux-Shipping type: default -'536050': +"536050": installDir: 994 W 24th launch: - config: oslist: windows executable: 994w24th.exe type: vr -'536210': +"536210": installDir: Please State Your Name launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: PSYN_Film4_12.exe type: vr -'536220': +"536220": installDir: The Walking Dead - A New Frontier (Season 3) launch: - config: - osarch: '64' + osarch: "64" oslist: macos executable: The Walking Dead - A New Frontier.app type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: WalkingDead3.exe type: default -'536230': +"536230": installDir: Siege Hammer launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SiegeHammer.exe type: othervr - config: - osarch: '64' + osarch: "64" oslist: windows executable: SiegeHammer.exe type: vr -'536270': +"536270": installDir: Ancestors The Humankind Odyssey launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: Ancestors\\Binaries\\Win64\\Ancestors-Win64-Shipping.exe + executable: "Ancestors\\\\Binaries\\\\Win64\\\\Ancestors-Win64-Shipping.exe" type: default - config: betakey: vegas_qa_1 - osarch: '64' + osarch: "64" oslist: windows description: Ancestors The Humankind Odyssey (Dev) - executable: Ancestors\\Binaries\\Win64\\Ancestors.exe + executable: "Ancestors\\\\Binaries\\\\Win64\\\\Ancestors.exe" type: option1 -'536280': +"536280": installDir: Disintegration launch: - - arguments: '-nohmd' + - arguments: "-nohmd" config: - osarch: '64' + osarch: "64" oslist: windows executable: Disintegration.exe type: default - - arguments: '-quickplayonly -nohmd' + - arguments: "-quickplayonly -nohmd" config: betakey: review - osarch: '64' + osarch: "64" oslist: windows executable: Disintegration.exe type: default - - arguments: '-quickplayonly -nohmd' + - arguments: "-quickplayonly -nohmd" config: betakey: review-stage - osarch: '64' + osarch: "64" oslist: windows executable: Disintegration.exe type: default -'536320': +"536320": installDir: The Space Garden launch: - config: oslist: windows executable: TSG.exe type: default -'536340': {} -'536370': +"536340": {} +"536370": installDir: Percussive VR launch: - config: oslist: windows executable: PercussiveVR.exe type: vr -'536410': +"536410": installDir: Greenwood the Last Ritual launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: greenwood.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: greenwood32.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: greenwood.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: greenwood.x86 type: default @@ -258187,13 +253778,13 @@ oslist: macos executable: greenwood.app type: default -'536420': +"536420": installDir: Shining Plume launch: - description: Launch executable: Game.exe type: none -'536430': +"536430": installDir: Johnny Bonasera launch: - config: @@ -258205,30 +253796,30 @@ executable: Johnny Bonasera.app/Contents/MacOS/jbonasera type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: jbonasera type: default - - arguments: '-w' + - arguments: "-w" config: - osarch: '64' + osarch: "64" oslist: linux description: Windowed executable: jbonasera type: option1 - - arguments: '-w' + - arguments: "-w" config: oslist: windows description: Windowed executable: jbonasera.exe type: option1 - - arguments: '-w' + - arguments: "-w" config: oslist: macos description: Windowed executable: Johnny Bonasera.app/Contents/MacOS/jbonasera type: option1 -'536450': +"536450": installDir: Vzerthos launch: - config: @@ -258240,20 +253831,20 @@ executable: runner type: none workingdir: assets/ -'536460': {} -'536470': +"536460": {} +"536470": installDir: Magnetized launch: - config: oslist: windows executable: nw.exe type: default -'536490': +"536490": installDir: Perfect Fit - Totemland launch: - executable: PerfectFit-Totemland.exe type: default -'536510': +"536510": installDir: Hacker Series launch: - config: @@ -258276,23 +253867,23 @@ description: Launch BS Hacker Unlimited executable: BSHackerUnlimited.exe type: none -'536530': +"536530": installDir: Marlene launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Marlene Launch - executable: Marlene\\Binaries\\Win64\\Marlene-Win64-Shipping.exe + executable: "Marlene\\\\Binaries\\\\Win64\\\\Marlene-Win64-Shipping.exe" type: vr -'536560': +"536560": installDir: CHAOSCODE_NSOC launch: - config: oslist: windows executable: ChaosCode.exe type: default -'536630': +"536630": installDir: Maze Sounds launch: - config: @@ -258307,17 +253898,17 @@ oslist: macos executable: MazeSounds/Binaries/Mac/MazeSounds.app type: default -'536640': +"536640": installDir: Grimm Dark Legacy launch: - executable: grimm.exe type: default -'536660': +"536660": installDir: JCB Pioneer Mars launch: - executable: mars_launcher.exe type: default -'536670': +"536670": installDir: Fear Of Traffic launch: - config: @@ -258332,22 +253923,22 @@ oslist: linux executable: Fear Of Traffic.x86_64 type: none -'536680': +"536680": installDir: Miniature - The Story Puzzle launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Miniature.exe type: default -'536690': +"536690": installDir: AENTITY launch: - config: oslist: windows executable: AENTITY.exe type: default -'536750': +"536750": installDir: BoomTown! Deluxe launch: - config: @@ -258355,7 +253946,7 @@ description: Play BoomTown! Deluxe executable: BoomTown! Deluxe.exe type: default -'536770': +"536770": installDir: The Awkward Steve Duology launch: - config: @@ -258370,7 +253961,7 @@ oslist: linux executable: The Awkward Steve Duology.sh type: none -'536780': +"536780": installDir: Lost Grimoires launch: - config: @@ -258379,13 +253970,13 @@ executable: LostGrimoires.exe type: none - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: LostGrimoires_i386 type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: LostGrimoires_amd64 @@ -258395,15 +253986,15 @@ description: Launch executable: mac_steam.app/Contents/MacOS/mac_steam type: none -'536800': +"536800": installDir: FILE 9 launch: - config: oslist: windows description: Launch - executable: File 9\\File9.exe + executable: "File 9\\\\File9.exe" type: vr -'536890': +"536890": installDir: Glittermitten Grove launch: - config: @@ -258415,16 +254006,16 @@ executable: gmg.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: gmg.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: gmg.x86 type: default -'536900': +"536900": installDir: The Last Sky launch: - config: @@ -258433,51 +254024,51 @@ type: default - config: oslist: macos - executable: TheLastSky.app\\Contents\\MacOS\\TheLastSky + executable: "TheLastSky.app\\\\Contents\\\\MacOS\\\\TheLastSky" type: default nameLocalized: schinese: 梦怀之境 The Last Sky -'536920': +"536920": installDir: Groggers! launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Groggers.exe type: default -'536930': +"536930": installDir: MOBIUS FINAL FANTASY launch: - - arguments: '-force-d3d11' + - arguments: "-force-d3d11" config: - osarch: '64' + osarch: "64" oslist: windows description: MOBIUS FINAL FANTASY -DirextX11 executable: mobiusff.exe type: option1 - - arguments: '-force-opengl' + - arguments: "-force-opengl" config: - osarch: '64' + osarch: "64" oslist: windows description: MOBIUS FINAL FANTASY -OpenGL executable: mobiusff.exe type: option2 -'536950': +"536950": installDir: Legend of Ares launch: - config: oslist: windows executable: RFstl.exe type: default -'536960': +"536960": installDir: Dead Realm - VR launch: - - arguments: '-vrmode openvr' + - arguments: "-vrmode openvr" config: oslist: windows executable: NoWayOut.exe type: vr -'536990': +"536990": installDir: Redie launch: - config: @@ -258488,46 +254079,46 @@ oslist: linux executable: redie.sh type: none -'537000': +"537000": installDir: Nelo launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Nelo.exe type: default -'537020': +"537020": installDir: Legions of Tyrandel launch: - config: oslist: windows executable: LegionsOfTyrandel.exe type: default -'537050': +"537050": installDir: Bric launch: - config: oslist: windows executable: Bric.exe type: default -'537060': +"537060": installDir: MagixHome VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: MagixHomeVR.exe type: vr -'537090': {} -'537100': +"537090": {} +"537100": installDir: Shuffle! launch: - - arguments: '-STEAM' + - arguments: "-STEAM" config: oslist: windows executable: Shuffle!.exe type: default -'537110': +"537110": installDir: Angels of Death launch: - config: @@ -258536,7 +254127,7 @@ type: default nameLocalized: japanese: 殺戮の天使 -'537130': +"537130": installDir: RedSpider-Vengeance launch: - config: @@ -258549,22 +254140,22 @@ type: default - executable: game.exe type: none -'537140': +"537140": installDir: Nemesis Perspective launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Nemesis Perspective.exe type: vr -'537170': +"537170": installDir: 4x4 Offroad Racing Nitro launch: - config: oslist: windows executable: 4x4 Offroad Racing Nitro.exe type: default -'537180': +"537180": installDir: Digimon Masters Online - Steam launch: - config: @@ -258572,7 +254163,7 @@ description: Digimon Masters Online executable: DMLauncher.exe type: default -'537200': +"537200": installDir: Defense Of Greece TD launch: - config: @@ -258583,8 +254174,8 @@ oslist: macos executable: DefenseOfGreece.app type: none -'537280': {} -'537340': +"537280": {} +"537340": installDir: Guts and Glory launch: - config: @@ -258596,43 +254187,43 @@ executable: Guts and Glory.app type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: Guts and Glory.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: Guts and Glory.x86_64 type: none -'537360': {} -'537380': +"537360": {} +"537380": installDir: Abyssal Zone launch: - config: oslist: macos - executable: Abyssal Zone.app\\Contents\\MacOS\\Abyssal Zone + executable: "Abyssal Zone.app\\\\Contents\\\\MacOS\\\\Abyssal Zone" type: default - config: oslist: windows executable: Abyssal Zone.exe type: default -'537430': +"537430": installDir: Inner Chains launch: - config: oslist: windows executable: InnerChains.exe type: none -'537450': +"537450": installDir: erimia launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ReCore.exe type: default -'537520': +"537520": installDir: SYMMETRY launch: - config: @@ -258669,7 +254260,7 @@ turkish: Simetri ukrainian: Симетрія vietnamese: Đối xứng -'537540': +"537540": installDir: The Last Journey launch: - config: @@ -258684,33 +254275,33 @@ oslist: linux executable: the-last-journey.deb type: default -'537590': +"537590": installDir: Bridge to Nowhere launch: - executable: Bridge To Nowhere BETA.exe type: none -'537630': +"537630": installDir: Tee Time Golf launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Tee Time Golf.exe type: default - - arguments: '-vr' + - arguments: "-vr" config: - osarch: '64' + osarch: "64" oslist: windows executable: Tee Time Golf.exe type: vr -'537660': +"537660": installDir: Brumm launch: - config: oslist: windows executable: Brumm.exe type: default -'537700': +"537700": installDir: Octave launch: - config: @@ -258719,17 +254310,17 @@ type: none - config: oslist: macos - executable: Octave.app\\Contents\\MacOS\\Octave + executable: "Octave.app\\\\Contents\\\\MacOS\\\\Octave" type: default -'537710': +"537710": installDir: VR Swing Table Tennis Oculus launch: - config: oslist: windows executable: game.exe type: othervr -'537740': - installDir: Dino Dini's Kick Off Revival +"537740": + installDir: "Dino Dini's Kick Off Revival" launch: - config: oslist: windows @@ -258737,20 +254328,20 @@ type: default - config: oslist: windows - ownsdlc: '751140' + ownsdlc: "751140" description: Joystick Config Tool - executable: ConfigTool\\KOR Controller Config Tool.exe + executable: "ConfigTool\\\\KOR Controller Config Tool.exe" type: option1 -'537750': +"537750": installDir: Dungeon of Doom Puzzle launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Dungeon of Doom.exe type: default -'537760': - installDir: Arizona Rose and the Pirates' Riddles +"537760": + installDir: "Arizona Rose and the Pirates' Riddles" launch: - config: oslist: windows @@ -258760,7 +254351,7 @@ oslist: macos executable: Arizona Rose.app type: default -'537800': +"537800": installDir: BomberCrew launch: - config: @@ -258772,47 +254363,47 @@ executable: BomberCrew.app/Contents/MacOS/BomberCrew type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: BomberCrew.x86_64 type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: BomberCrew.x86 type: none nameLocalized: schinese: 轰炸机小队 / Bomber Crew -'537860': {} -'537920': +"537860": {} +"537920": installDir: SKMH launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: smhk-labyrinth.exe type: vr -'537990': +"537990": installDir: Heroine Anthem Zero launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: HeroineAnthemZero.exe type: default - config: - osarch: '64' + osarch: "64" oslist: macos executable: HeroineAnthemZero.app type: default -'538000': +"538000": installDir: Hop Step Sing! launch: - executable: HSS_PV1.exe type: vr nameLocalized: japanese: Hop Step Sing!『キセキ的Shining!』 -'538030': +"538030": installDir: Xenonauts2 launch: - config: @@ -258822,21 +254413,21 @@ nameLocalized: schinese: 异种航员2 Xenonauts 2 tchinese: 異種航員2 Xenonauts 2 -'538040': - installDir: Dante's Forest +"538040": + installDir: "Dante's Forest" launch: - config: oslist: windows - executable: Dante's_Forest_1.3.0.exe + executable: "Dante's_Forest_1.3.0.exe" type: vr -'538050': +"538050": installDir: The baron got you again launch: - config: oslist: windows executable: TheBaronGotYouAgain.exe type: vr -'538060': +"538060": installDir: Doodle God 8-bit Mania launch: - config: @@ -258854,7 +254445,7 @@ description: Launch executable: DoodleGod.app type: none -'538070': +"538070": installDir: Coma launch: - config: @@ -258865,7 +254456,7 @@ oslist: macos executable: Bad Dream_ Coma.app type: none -'538100': +"538100": installDir: Feel The Snow launch: - config: @@ -258876,14 +254467,14 @@ oslist: linux executable: FeelTheSnow type: default -'538110': - installDir: Delila's Gift +"538110": + installDir: "Delila's Gift" launch: - config: oslist: windows executable: delilasGift.exe type: vr -'538170': +"538170": installDir: Raging Titan launch: - config: @@ -258894,15 +254485,15 @@ oslist: macos executable: Raging Titan.app/Contents/MacOS/ReleaseBuild type: none -'538220': - installDir: HAUNTED Halloween '85 +"538220": + installDir: "HAUNTED Halloween '85" launch: - config: oslist: windows description: Launch executable: Haunted85.exe type: none -'538330': +"538330": installDir: A-Escape VR launch: - config: @@ -258914,50 +254505,50 @@ description: A-Escape VR (Oculus) executable: A-Escape VR - Chapter 1 (Oculus).exe type: vr -'538390': +"538390": installDir: Crimson Nights launch: - config: oslist: windows executable: CrimsonNights.exe type: default -'538410': +"538410": installDir: Chicken Chase launch: - config: oslist: windows executable: ChickenChase.exe type: vr -'538470': +"538470": installDir: RemindYourself launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: launch executable: RemindYourself.exe type: none -'538490': +"538490": installDir: Shatter Quest launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: shatterquest.exe type: vr - config: - osarch: '32' + osarch: "32" oslist: windows executable: shatterquest_32.exe type: vr -'538510': +"538510": installDir: Trickshot launch: - config: oslist: windows executable: TrickShot.exe type: vr -'538550': +"538550": installDir: Party Golf launch: - config: @@ -258968,11 +254559,11 @@ oslist: macos executable: Party Golf.app type: default -'538560': +"538560": installDir: Help Me Doctor launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: HMD.exe type: default @@ -258984,15 +254575,15 @@ oslist: macos executable: HMDMacBuild.app type: default -'538590': +"538590": installDir: Sleeping Valley launch: - config: oslist: windows executable: SleepingValley.exe type: default -'538660': {} -'538680': +"538660": {} +"538680": installDir: Trails of Cold Steel launch: - executable: ed8.exe @@ -259001,7 +254592,7 @@ type: config nameLocalized: japanese: 英雄伝説 閃の軌跡 -'538700': +"538700": installDir: TURGUL RAPID FIGHTING launch: - config: @@ -259010,41 +254601,41 @@ type: default - config: oslist: macos - executable: TURGUL-RAPID FIGHTING_V-2-5_Mac.app\\Contents\\MacOS\\TURGUL-RAPID FIGHTING_V-2-5_Mac + executable: "TURGUL-RAPID FIGHTING_V-2-5_Mac.app\\\\Contents\\\\MacOS\\\\TURGUL-RAPID FIGHTING_V-2-5_Mac" type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: TURGUL-RAPID FIGHTING_V-2-5_Linux.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: TURGUL-RAPID FIGHTING_V-2-5_Linux.x86_64 type: default -'538710': +"538710": installDir: Dead Hungry launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: DeadHungry.exe type: vr -'538790': +"538790": installDir: Primal Carnage VR launch: - - arguments: '-vr' + - arguments: "-vr" config: - osarch: '64' - description: 'Launch Primal Carnage: Onslaught' + osarch: "64" + description: "Launch Primal Carnage: Onslaught" executable: PrimalVR.exe type: vr - - arguments: '-vr' + - arguments: "-vr" config: - osarch: '64' + osarch: "64" executable: PrimalVR.exe type: othervr -'538810': +"538810": installDir: Train Mechanic Simulator 2017 launch: - config: @@ -259052,37 +254643,37 @@ description: Launch executable: tms.exe type: default -'538840': +"538840": installDir: City Climber launch: - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" config: oslist: windows description: City Climber executable: City Climber.exe type: option1 - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" config: - osarch: '64' + osarch: "64" oslist: linux description: City Climber - 64bit executable: City_Climber.x86_64 type: option1 - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" config: - osarch: '32' + osarch: "32" oslist: linux description: City Climber - 32bit executable: City_Climber.x86 type: option1 - config: - osarch: '64' + osarch: "64" oslist: linux description: City Climber - 64bit - Skip config dialog executable: City_Climber.x86_64 type: option2 - config: - osarch: '32' + osarch: "32" oslist: linux description: City Climber - 32bit - Skip config dialog executable: City_Climber.x86 @@ -259092,7 +254683,7 @@ description: City Climber - Skip config dialog executable: City Climber.exe type: option2 - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" config: oslist: macos description: City Climber @@ -259103,24 +254694,24 @@ description: City Climber - Skip config dialog executable: CityClimber.app type: option2 -'538870': +"538870": installDir: EVE Valkyrie launch: - - arguments: '-steam -vr -windowed -tenant=live' - executable: WindowsNoEditor\\VkGame\\Binaries\\Win64\\EVE-Valkyrie.exe + - arguments: "-steam -vr -windowed -tenant=live" + executable: "WindowsNoEditor\\\\VkGame\\\\Binaries\\\\Win64\\\\EVE-Valkyrie.exe" type: vr - workingdir: WindowsNoEditor\\VkGame\\Binaries\\Win64 - - arguments: '-steam -vr -windowed -tenant=live' - executable: WindowsNoEditor\\VkGame\\Binaries\\Win64\\EVE-Valkyrie.exe + workingdir: "WindowsNoEditor\\\\VkGame\\\\Binaries\\\\Win64" + - arguments: "-steam -vr -windowed -tenant=live" + executable: "WindowsNoEditor\\\\VkGame\\\\Binaries\\\\Win64\\\\EVE-Valkyrie.exe" type: othervr - workingdir: WindowsNoEditor\\VkGame\\Binaries\\Win64 - - arguments: '-2d -tenant=playtest -fullscreen -nohmd -steam -region=us-east-1' + workingdir: "WindowsNoEditor\\\\VkGame\\\\Binaries\\\\Win64" + - arguments: "-2d -tenant=playtest -fullscreen -nohmd -steam -region=us-east-1" config: betakey: alpha description: Alpha branch - executable: WindowsNoEditor\\VkGame\\Binaries\\Win64\\EVE Valkyrie.exe + executable: "WindowsNoEditor\\\\VkGame\\\\Binaries\\\\Win64\\\\EVE Valkyrie.exe" type: option2 -'538880': +"538880": installDir: Triennale Game Collection launch: - config: @@ -259135,7 +254726,7 @@ oslist: linux executable: TGC.x86 type: default -'538900': +"538900": installDir: ZIQ launch: - config: @@ -259150,7 +254741,7 @@ oslist: linux executable: ZIQ.x86_64 type: none -'538920': +"538920": installDir: Fiery Disaster launch: - config: @@ -259161,7 +254752,7 @@ oslist: linux executable: run.sh type: default -'538950': +"538950": installDir: Plenty Skyhearth launch: - config: @@ -259174,65 +254765,65 @@ description: HTC Vive executable: PlentySkyhearth.exe type: vr -'538990': +"538990": installDir: SugarMill launch: - config: oslist: windows executable: SugarMill.exe type: none -'539050': +"539050": installDir: SUPER Island God VR launch: - - arguments: '-vr' + - arguments: "-vr" config: oslist: windows executable: SuperIslandGodVR.exe type: vr -'539090': +"539090": installDir: Clazer launch: - config: oslist: windows executable: Clazer.exe type: vr -'539190': +"539190": installDir: CuVRball launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: CuVRball.exe type: vr -'539270': +"539270": installDir: Mahjong launch: - config: oslist: windows executable: Mahjong.exe type: none -'539280': +"539280": installDir: Tetraminos launch: - config: oslist: windows executable: Tetraminos.exe type: none -'539290': +"539290": installDir: Brick Breaker launch: - config: oslist: windows executable: BrickBreaker.exe type: none -'539300': +"539300": installDir: Solitaire launch: - config: oslist: windows executable: Solitaire.exe type: none -'539330': +"539330": installDir: Light Fairytale Episode 1 launch: - config: @@ -259248,9 +254839,9 @@ - config: oslist: macos description: Launch the Game! - executable: light_fairytale_episode_1.app\\Contents\\MacOS\\light fairytale episode 1 + executable: "light_fairytale_episode_1.app\\\\Contents\\\\MacOS\\\\light fairytale episode 1" type: default -'539340': +"539340": installDir: Future Unfolding launch: - config: @@ -259263,39 +254854,39 @@ description: Launch Game executable: FutureUnfolding.app type: none -'539350': {} -'539360': {} -'539370': +"539350": {} +"539360": {} +"539370": installDir: TV Trouble launch: - config: oslist: windows executable: TVTrouble.exe type: default -'539380': +"539380": installDir: Think To Die 2 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ThinkToDie2_WIN_64.exe type: none - config: - osarch: '64' + osarch: "64" oslist: macos - executable: Contents\\MacOS\\TTD-Mac64 + executable: "Contents\\\\MacOS\\\\TTD-Mac64" type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: ThinkToDie2_LINUX_64.x86_64 type: none - config: - osarch: '32' + osarch: "32" oslist: windows executable: ThinkToDie2_WIN_32.exe type: none -'539400': +"539400": installDir: My Mom is a Witch launch: - config: @@ -259307,7 +254898,7 @@ executable: Witch.app/Contents/MacOS/game type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: 64bit (requires SoaW version 4.1.4+) executable: game.x64 @@ -259317,15 +254908,13 @@ description: 32bit version executable: game.i386 type: option2 - - arguments: '-w' + - arguments: "-w" config: oslist: windows description: safe mode - description_loc: - english: safe mode executable: game.exe type: option1 -'539440': +"539440": installDir: Citalis launch: - config: @@ -259338,7 +254927,7 @@ description: Launch executable: Citalis.app type: none -'539450': +"539450": installDir: Crab Dub launch: - config: @@ -259346,14 +254935,14 @@ description: Launch executable: CrabDub.exe type: none -'539460': +"539460": installDir: Puzzle Cube launch: - config: oslist: windows executable: PuzzleCube.exe type: default -'539470': +"539470": installDir: PoliceStories launch: - config: @@ -259365,11 +254954,11 @@ executable: PoliceStoriesRelease.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: PoliceStoriesRelease type: default -'539560': +"539560": installDir: ViennaAutomobileSociety launch: - config: @@ -259380,7 +254969,7 @@ oslist: macos executable: Vienna.app type: default -'539640': +"539640": installDir: Racecar.io launch: - config: @@ -259389,29 +254978,29 @@ type: default - config: oslist: macos - executable: Racecar.io.app\\Contents\\MacOS\\Racecar.io + executable: "Racecar.io.app\\\\Contents\\\\MacOS\\\\Racecar.io" type: default -'539650': +"539650": installDir: TwelveSky 2 Classic launch: - config: oslist: windows executable: RFstl.exe type: default -'539660': +"539660": installDir: ChronoClock launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: cmvs32.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: cmvs64.exe type: default -'539670': +"539670": installDir: Sakura Nova launch: - config: @@ -259426,7 +255015,7 @@ oslist: linux executable: Sakura Nova.sh type: default -'539690': +"539690": installDir: Nanomedix Inc launch: - config: @@ -259435,23 +255024,19 @@ type: default - config: oslist: macos - executable: Nanomedix\\Nanomedix.app + executable: "Nanomedix\\\\Nanomedix.app" type: default -'539700': {} -'539720': +"539700": {} +"539720": installDir: Razortron 2000 launch: - description: Razortron 2000 (New Version) - description_loc: - english: Razortron 2000 (New Version) - executable: Razortron 2000 - New\\Razortron 2000 - New.exe + executable: "Razortron 2000 - New\\\\Razortron 2000 - New.exe" type: option1 - description: Razortron 2000 (Original Version) - description_loc: - english: Razortron 2000 (Original Version) - executable: Razortron 2000 - Original\\Razortron 2000 - Original.exe + executable: "Razortron 2000 - Original\\\\Razortron 2000 - Original.exe" type: option2 -'539750': +"539750": installDir: Kombine launch: - config: @@ -259462,7 +255047,7 @@ oslist: macos executable: Kombine.app type: default -'539980': +"539980": installDir: Space Cat launch: - config: @@ -259474,28 +255059,28 @@ oslist: macos executable: Space Cat.app type: default -'540010': +"540010": installDir: Symphony of the Machine launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Symphony.exe type: vr -'540020': +"540020": installDir: Final Quest II launch: - executable: Game.exe type: none -'540050': - installDir: Nature's Wrath VR +"540050": + installDir: "Nature's Wrath VR" launch: - config: oslist: windows - executable: Nature's Wrath.exe + executable: "Nature's Wrath.exe" type: vr -'540060': - installDir: Fabulous - Angela's Fashion Fever +"540060": + installDir: "Fabulous - Angela's Fashion Fever" launch: - config: oslist: windows @@ -259503,9 +255088,9 @@ type: none - config: oslist: macos - executable: Fabulous 2.app\\Contents\\MacOS\\Fabulous 2 OSX Steam + executable: "Fabulous 2.app\\\\Contents\\\\MacOS\\\\Fabulous 2 OSX Steam" type: none -'540100': +"540100": installDir: Imprisoned Light launch: - config: @@ -259514,10 +255099,10 @@ type: default - config: oslist: macos - executable: ImprisonedLight.app\\Contents\\MacOS\\ImprisonedLight + executable: "ImprisonedLight.app\\\\Contents\\\\MacOS\\\\ImprisonedLight" type: default -'540120': {} -'540150': +"540120": {} +"540150": installDir: Tank Battle Blitzkrieg launch: - config: @@ -259528,7 +255113,7 @@ oslist: macos executable: Blitzkrieg.app type: none -'540160': +"540160": installDir: Deckbound Heroes (Open Beta) launch: - arguments: stlaunch @@ -259541,7 +255126,7 @@ oslist: macos executable: Deckbound Heroes (Open Beta).app type: default -'540180': +"540180": installDir: Kommissar launch: - config: @@ -259552,14 +255137,14 @@ oslist: macos executable: Kommissar.app/Contents/MacOS/Kommissar type: none -'540190': +"540190": installDir: Tetro launch: - config: oslist: windows executable: Tetropunk.exe type: default -'540230': +"540230": installDir: Civil War 1861 launch: - config: @@ -259570,7 +255155,7 @@ oslist: macos executable: CivilWar1861.app type: none -'540250': +"540250": installDir: Tank Battle 1945 launch: - config: @@ -259581,16 +255166,16 @@ oslist: macos executable: TankBattle1945.app type: none -'540310': {} -'540320': +"540310": {} +"540320": installDir: Vulture Island launch: - config: oslist: windows executable: VultureIsland.exe type: default -'540360': - installDir: Jewel Quest Seven Seas Collector's Edition +"540360": + installDir: "Jewel Quest Seven Seas Collector's Edition" launch: - config: oslist: windows @@ -259600,30 +255185,28 @@ oslist: macos executable: jq7_steam.app type: default -'540370': {} -'540410': +"540370": {} +"540410": installDir: Queendoom launch: - executable: Queendoom.exe type: vr -'540500': +"540500": installDir: Starfighter Arduxim launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Starfighter Arduxim.exe type: vr - config: - osarch: '64' + osarch: "64" oslist: windows description: On Monitor - description_loc: - english: On Monitor - executable: Monitor\\Starfighter Arduxim Monitor.exe + executable: "Monitor\\\\Starfighter Arduxim Monitor.exe" type: option1 workingdir: Monitor -'540510': +"540510": installDir: ISLANDS_NonPlaces launch: - config: @@ -259635,26 +255218,26 @@ executable: Islands_Mac.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Islands_Linux.x86_64 type: default -'540550': +"540550": installDir: Commercium launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Commercium.exe type: default - - arguments: '-opengl3' + - arguments: "-opengl3" config: - osarch: '64' + osarch: "64" oslist: windows description: Commercium (Open GL) executable: Commercium.exe type: option1 -'540590': +"540590": installDir: Red Barton and The Sky Pirates launch: - config: @@ -259665,7 +255248,7 @@ oslist: macos executable: redbarton.app/Contents/MacOS/redbarton type: default -'540610': +"540610": installDir: Delicious! Pretty Girls Mahjong Solitaire launch: - config: @@ -259676,22 +255259,22 @@ oslist: macos executable: DeliciousPGMS.app type: none -'540640': +"540640": installDir: Tales of the Elements launch: - - arguments: '/user:administrator' + - arguments: "/user:administrator" config: oslist: windows executable: TotE.exe type: default -'540650': +"540650": installDir: DoW launch: - config: oslist: windows executable: Dow.exe type: default -'540660': +"540660": installDir: Sorcery Is for Saps launch: - config: @@ -259706,7 +255289,7 @@ oslist: linux executable: SorceryIsForSaps type: none -'540690': +"540690": installDir: Hellenica launch: - config: @@ -259717,23 +255300,23 @@ oslist: macos executable: Hellenica.app type: default -'540740': +"540740": installDir: Perfect launch: - executable: VRPerfect.exe type: vr - executable: VRPerfect.exe type: othervr -'540770': +"540770": installDir: Subject 264 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Subject264.exe type: vr -'540780': - installDir: Delicious - Emily's Message in a Bottle +"540780": + installDir: "Delicious - Emily's Message in a Bottle" launch: - config: oslist: windows @@ -259741,13 +255324,13 @@ type: none - config: oslist: macos - executable: Delicious - Emily's Message in a Bottle.app\\Contents\\MacOS\\Delicious - Emily's Message in a Bottle + executable: "Delicious - Emily's Message in a Bottle.app\\\\Contents\\\\MacOS\\\\Delicious - Emily's Message in a Bottle" type: none -'540840': +"540840": installDir: Lara Croft GO launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: Lara Croft GO.exe type: default @@ -259756,25 +255339,25 @@ executable: Lara Croft GO.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Lara Croft GO.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Lara Croft GO.x86_64 type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: Lara Croft GO.exe type: default -'540860': +"540860": installDir: Seven Kingdoms The Rise of Summoners launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SevenKingdoms.exe type: none @@ -259782,7 +255365,7 @@ oslist: macos executable: SevenKingdoms.app type: none -'540870': +"540870": installDir: Crewsaders launch: - config: @@ -259793,7 +255376,7 @@ oslist: macos executable: Crewsaders.app type: none -'540880': +"540880": installDir: Rose of Winter launch: - config: @@ -259802,34 +255385,34 @@ type: default - config: oslist: macos - executable: RoseOfWinter.app\\Contents\\MacOS\\RoseOfWinter + executable: "RoseOfWinter.app\\\\Contents\\\\MacOS\\\\RoseOfWinter" type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: RoseOfWinter.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: RoseOfWinter.x86_64 type: default -'540900': +"540900": installDir: Nuclear Contingency launch: - config: oslist: windows executable: NuclearContingency.exe type: default -'541100': {} -'541150': +"541100": {} +"541150": installDir: Vox-L launch: - config: oslist: windows executable: voxl.exe type: vr -'541160': +"541160": installDir: MC Lars The Video Game launch: - config: @@ -259840,13 +255423,13 @@ oslist: macos executable: MC Lars.app type: default -'541180': +"541180": installDir: PRO EVOLUTION SOCCER 2017 TRIAL EDITION launch: - description: Launch executable: PES2017.exe type: none -'541190': +"541190": installDir: Nodiatis launch: - config: @@ -259857,15 +255440,15 @@ oslist: macos executable: Nodiatis.app type: default -'541200': +"541200": installDir: Get To The Orange Door launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Get To The Orange Door.exe type: default -'541210': +"541210": installDir: Cold Waters launch: - config: @@ -259876,33 +255459,33 @@ oslist: macos executable: ColdWaters.app type: none -'541230': +"541230": installDir: AlienShooterTD launch: - config: oslist: windows executable: AlienShooterSteam.exe type: default -'541240': - installDir: Red's Kingdom +"541240": + installDir: "Red's Kingdom" launch: - config: - osarch: '32' + osarch: "32" oslist: windows - executable: Red's Kingdom.exe + executable: "Red's Kingdom.exe" type: default - config: oslist: macos - executable: Red's Kingdom.app/Contents/MacOS/Red's Kingdom + executable: "Red's Kingdom.app/Contents/MacOS/Red's Kingdom" type: default -'541270': +"541270": installDir: EEP13 launch: - config: oslist: windows executable: EEP13.exe type: none -'541300': +"541300": installDir: Survive the Nights launch: - config: @@ -259910,12 +255493,12 @@ executable: SurviveTheNights_Mac.app type: default - config: - osarch: '64' + osarch: "64" oslist: windows - description: ' Executable rename Exp and Dev only' + description: " Executable rename Exp and Dev only" executable: SurviveTheNights_Win.exe type: default -'541310': +"541310": installDir: Tiny Thor launch: - config: @@ -259926,12 +255509,12 @@ japanese: タイニー・ソー koreana: 타이니 토르 schinese: 小雷神 -'541330': +"541330": installDir: Galactic Adventures launch: - executable: Version 1.0.0.exe type: none -'541350': +"541350": installDir: Calm Waters launch: - config: @@ -259946,19 +255529,19 @@ oslist: linux executable: Calm Waters.x86 type: none -'541370': +"541370": installDir: Clickdraw Clicker launch: - executable: game.exe type: default -'541380': +"541380": installDir: PhysDrive launch: - config: oslist: windows executable: ProjectRace.exe type: default -'541410': +"541410": installDir: Skyway launch: - config: @@ -259967,26 +255550,26 @@ type: default - config: oslist: macos - executable: Skyway.app\\Contents\\MacOS\\Skyway + executable: "Skyway.app\\\\Contents\\\\MacOS\\\\Skyway" type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Skyway.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Skyway.x86_64 type: default -'541420': +"541420": installDir: Hoverboards VR launch: - config: oslist: windows executable: Hoverboards VR.exe type: vr -'541450': +"541450": installDir: Operation Abyss New Tokyo Legacy Steam launch: - config: @@ -259995,7 +255578,7 @@ type: default nameLocalized: japanese: 東京新世録 オペレーションアビス -'541560': +"541560": installDir: Suppressed launch: - config: @@ -260010,7 +255593,7 @@ oslist: linux executable: Suppressed.x86 type: none -'541570': +"541570": installDir: Sally Face launch: - config: @@ -260022,32 +255605,32 @@ executable: Sally Face.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Sally Face.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Sally Face.x86_64 type: default -'541640': +"541640": installDir: Disney Infinity Gold Edition launch: - executable: DisneyInfinity1.exe type: none -'541660': +"541660": installDir: Disney Infinity 2.0 Gold Edition launch: - description: Launch executable: DisneyInfinity2.exe type: none -'541670': +"541670": installDir: Disney Infinity 3.0 Gold Edition launch: - executable: DisneyInfinity3.exe type: none -'541720': +"541720": installDir: Redrum Dead Diary launch: - config: @@ -260060,48 +255643,48 @@ description: Launch executable: Redrum.app type: none -'541760': +"541760": installDir: The Frontier launch: - config: oslist: windows executable: TheFrontier.exe type: default -'541770': +"541770": installDir: RuinsCity_VR launch: - config: oslist: windows executable: RuinsCity_VR.exe type: vr -'541910': +"541910": installDir: David Slade Mysteries Case Files launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Case Files Definitive Edition.exe type: openxr -'541920': +"541920": installDir: Help launch: - executable: Help.exe type: none -'541930': +"541930": installDir: Panoptic launch: - config: oslist: windows executable: Panoptic.exe type: vr -'541960': +"541960": installDir: TRI.DEFENDER launch: - config: oslist: windows executable: TriDefender.exe type: none -'541970': +"541970": installDir: Lost in Reefs Antarctic launch: - config: @@ -260112,12 +255695,12 @@ oslist: macos executable: LostInReefs3.app/Contents/MacOS/LostInReefs3 type: default -'542030': +"542030": installDir: RuneSage launch: - executable: RuneSage.exe type: vr -'542050': +"542050": installDir: Forgotton Anne launch: - config: @@ -260126,12 +255709,12 @@ type: default - config: oslist: macos - executable: ForgottonAnne.app\\Contents\\MacOS\\ForgottonAnne + executable: "ForgottonAnne.app\\\\Contents\\\\MacOS\\\\ForgottonAnne" type: default -'542100': +"542100": installDir: TrainCrisis launch: - - arguments: '-nolog' + - arguments: "-nolog" config: oslist: windows executable: traincrisis.exe @@ -260140,21 +255723,21 @@ oslist: macos executable: traincrisis.app/Contents/MacOS/traincrisis type: default -'542110': +"542110": installDir: FriendShip launch: - config: oslist: windows executable: FriendShip.exe type: vr -'542120': +"542120": installDir: WinBigOrDie launch: - config: oslist: windows executable: WinBigOrDie.exe type: none -'542200': +"542200": installDir: Animal Lover launch: - config: @@ -260165,7 +255748,7 @@ oslist: macos executable: Animal_Lover.app type: default -'542210': +"542210": installDir: Xemo launch: - config: @@ -260178,7 +255761,7 @@ description: Xemo for Mac executable: Xemo.app type: default -'542220': +"542220": installDir: Rumpus launch: - config: @@ -260197,12 +255780,12 @@ executable: rumpus.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: rumpus.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: rumpus.x86_64 type: default @@ -260214,19 +255797,19 @@ type: config - arguments: input config: - osarch: '32' + osarch: "32" oslist: linux description: Configure input devices executable: rumpus.x86 type: config - arguments: input config: - osarch: '64' + osarch: "64" oslist: linux description: Configure input devices executable: rumpus.x86_64 type: config -'542240': +"542240": installDir: TZOMPANTLI launch: - config: @@ -260235,9 +255818,9 @@ type: default - config: oslist: macos - executable: TZOMPANTLI.app\\Contents\\MacOS\\TZOMPANTLI + executable: "TZOMPANTLI.app\\\\Contents\\\\MacOS\\\\TZOMPANTLI" type: default -'542260': +"542260": installDir: Herbalist launch: - config: @@ -260252,21 +255835,21 @@ oslist: linux executable: travnica.sh type: none -'542270': +"542270": installDir: Project Alpha 002 launch: - config: oslist: windows executable: pa002.exe type: default -'542280': +"542280": installDir: Happy Maze launch: - config: oslist: windows executable: HappyMaze.exe type: default -'542290': +"542290": installDir: Da Capo 3 R launch: - config: @@ -260274,42 +255857,40 @@ executable: DC3.exe type: default - config: - osarch: '64' + osarch: "64" oslist: macos executable: DC3.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: DC3.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: DC3.x86_64 type: default -'542310': +"542310": installDir: Escape the Game launch: - config: oslist: windows executable: EscapeTheGame.exe type: default -'542340': +"542340": installDir: windows_content launch: - config: oslist: windows executable: slingshotpeople.exe type: default -'542350': +"542350": installDir: Castle of no Escape 2 launch: - config: oslist: windows description: Play game - description_loc: - english: Play game executable: ConE2.exe type: default - config: @@ -260317,46 +255898,44 @@ description: Pattern editor executable: Pattern editor.exe type: editor - - arguments: '-nobackground' + - arguments: "-nobackground" config: oslist: windows description: with no wallpaper - description_loc: - english: with no wallpaper executable: ConE2.exe type: option1 -'542360': {} -'542400': +"542360": {} +"542400": installDir: Pixel Gladiator launch: - config: oslist: windows executable: bild20.exe type: none -'542410': +"542410": installDir: TrueBlades launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TrueBlades.exe type: vr -'542430': {} -'542480': +"542430": {} +"542480": installDir: Therian Saga launch: - config: oslist: windows executable: Utopia.Steam.Launcher.exe type: default -'542520': +"542520": installDir: Lost in the Rift - Reborn launch: - config: oslist: windows executable: LostInTheRift.exe type: vr -'542530': +"542530": installDir: fsb launch: - config: @@ -260367,27 +255946,27 @@ oslist: macos executable: fsb.app type: none -'542550': +"542550": installDir: Plankton launch: - - arguments: '-windowed' + - arguments: "-windowed" config: oslist: windows executable: game.exe type: default - config: oslist: macos - executable: Plankton.app\\Contents\\MacOS\\plankton + executable: "Plankton.app\\\\Contents\\\\MacOS\\\\plankton" type: default -'542560': +"542560": installDir: Astro Boy Edge of Time launch: - - arguments: '-STEAM' + - arguments: "-STEAM" config: oslist: windows executable: Astro Boy Edge of time.exe type: default -'542570': +"542570": installDir: RunVR launch: - config: @@ -260395,56 +255974,56 @@ description: Launch executable: RunVR.exe type: vr -'542590': +"542590": installDir: SoulSaverOnline launch: - - arguments: '-Steam_Login' + - arguments: "-Steam_Login" config: oslist: windows executable: SoulSaver.exe type: none -'542620': +"542620": installDir: Lonelyland VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Lonelyland.exe type: vr -'542650': +"542650": installDir: OTFL launch: - config: - osarch: '32' + osarch: "32" oslist: windows - executable: Win32\\OnTheFrontLine_32.exe + executable: "Win32\\\\OnTheFrontLine_32.exe" type: default - config: - osarch: '64' + osarch: "64" oslist: windows - executable: Win64\\OnTheFrontLine_64.exe + executable: "Win64\\\\OnTheFrontLine_64.exe" type: default - config: - osarch: '32' + osarch: "32" oslist: macos - executable: Mac32\\OnTheFrontLine(x86).app\\Contents\\MacOS\\OnTheFrontLine(x86) + executable: "Mac32\\\\OnTheFrontLine(x86).app\\\\Contents\\\\MacOS\\\\OnTheFrontLine(x86)" type: default - config: - osarch: '64' + osarch: "64" oslist: macos - executable: Mac64\\OnTheFrontLine(x64).app\\Contents\\MacOS\\OnTheFrontLine(x64) + executable: "Mac64\\\\OnTheFrontLine(x64).app\\\\Contents\\\\MacOS\\\\OnTheFrontLine(x64)" type: default - config: - osarch: '32' + osarch: "32" oslist: linux - executable: Linux32\\OnTheFrontLine.x86 + executable: "Linux32\\\\OnTheFrontLine.x86" type: default - config: - osarch: '64' + osarch: "64" oslist: linux - executable: Linux64\\OnTheFrontLine.x86_64 + executable: "Linux64\\\\OnTheFrontLine.x86_64" type: default -'542660': +"542660": installDir: Feral Fury launch: - config: @@ -260457,62 +256036,62 @@ type: default - config: oslist: macos - executable: Feral_Fury.app\\Contents\\MacOS\\Feral_Fury + executable: "Feral_Fury.app\\\\Contents\\\\MacOS\\\\Feral_Fury" type: default -'542670': +"542670": installDir: Extreme Skiing VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Extreme Skiing VR.exe type: vr -'542680': +"542680": installDir: Super Puzzle Sisters launch: - executable: SuperPuzzleSisters.exe type: default - - arguments: '-windowed' + - arguments: "-windowed" description: windowed executable: SuperPuzzleSisters.exe type: option1 -'542690': +"542690": installDir: Mahsung Deluxe launch: - config: oslist: windows executable: MahsungDeluxe.exe type: default -'542700': {} -'542710': +"542700": {} +"542710": installDir: Dessert Storm launch: - config: oslist: windows executable: DessertStorm.exe type: default -'542720': +"542720": installDir: Bubble Blowout launch: - config: oslist: windows executable: BubbleBlowout.exe type: default -'542730': +"542730": installDir: Block Blowout launch: - config: oslist: windows executable: BlockBlowout.exe type: default -'542740': +"542740": installDir: Balloon Blowout launch: - config: oslist: windows executable: BalloonBlowout.exe type: default -'542750': +"542750": installDir: PIRATADO 1 launch: - config: @@ -260523,29 +256102,29 @@ oslist: windows executable: PIRATADOv.exe type: othervr -'542770': +"542770": installDir: Castle Must Be Mine launch: - config: oslist: windows executable: CastleMustBeMine.exe type: vr -'542780': +"542780": installDir: Drift GEAR launch: - config: oslist: windows executable: Drift GEAR.exe type: none -'542790': +"542790": installDir: RacetronicVR launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: RacetronicVR\\VRKartRacer13_1.exe + executable: "RacetronicVR\\\\VRKartRacer13_1.exe" type: vr -'542820': +"542820": installDir: DemonicGuestVR launch: - config: @@ -260553,93 +256132,93 @@ executable: DemonicGuestVR.exe type: vr - config: - osarch: '64' + osarch: "64" oslist: windows executable: DemonicGuestVR.exe type: othervr -'542850': +"542850": installDir: Dystopy launch: - config: oslist: windows executable: Dystopy.exe type: none -'542870': +"542870": installDir: Biomydra launch: - config: oslist: windows executable: Biomydra.exe type: default -'542880': +"542880": installDir: Byte Family launch: - config: oslist: windows executable: Byte Family.exe type: default -'542910': +"542910": installDir: Crumbled World launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: CrumbledWorld.exe type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: CrumbledWorld.a type: none -'542930': +"542930": installDir: Painted Memories launch: - config: oslist: windows executable: PaintedM.exe type: default -'542940': +"542940": installDir: Kickoff Legends launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: KickoffLegends.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: KickoffLegends type: default - config: - osarch: '64' + osarch: "64" oslist: macos executable: KickoffLegends.app type: default -'542960': +"542960": installDir: Pumpkin SculptrVR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SculptrVR.exe type: vr -'543010': +"543010": installDir: Old Time Hockey launch: - config: oslist: windows executable: game.exe type: none -'543030': +"543030": installDir: Slap The Fly launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SlapTheFly.exe type: default -'543040': +"543040": installDir: zhed launch: - config: @@ -260648,39 +256227,39 @@ type: default - config: oslist: macos - executable: zhed.app\\Contents\\MacOS\\zhed + executable: "zhed.app\\\\Contents\\\\MacOS\\\\zhed" type: default -'543050': +"543050": installDir: Arc Continuum launch: - - arguments: '-windowed' + - arguments: "-windowed" config: - osarch: '64' + osarch: "64" oslist: windows executable: ARC_Prototype.exe type: default -'543070': - installDir: 'Gray Skies, Dark Waters' +"543070": + installDir: "Gray Skies, Dark Waters" launch: - config: oslist: windows - executable: 'Gray Skies, Dark Waters.exe' + executable: "Gray Skies, Dark Waters.exe" type: default - config: oslist: macos - executable: 'Gray Skies, Dark Waters.app' + executable: "Gray Skies, Dark Waters.app" type: default - config: - osarch: '32' + osarch: "32" oslist: linux - executable: 'Gray Skies, Dark Waters.x86' + executable: "Gray Skies, Dark Waters.x86" type: default - config: - osarch: '64' + osarch: "64" oslist: linux - executable: 'Gray Skies, Dark Waters.x86_64' + executable: "Gray Skies, Dark Waters.x86_64" type: default -'543100': +"543100": installDir: Beat The Game launch: - config: @@ -260695,19 +256274,19 @@ oslist: linux executable: beat.x86_64 type: none -'543110': +"543110": installDir: Head It! launch: - executable: SoccerHeading.exe type: vr -'543120': +"543120": installDir: HandPass VR launch: - config: oslist: windows executable: HandpassVR.exe type: vr -'543140': +"543140": installDir: Legend of Merchant launch: - config: @@ -260717,14 +256296,14 @@ nameLocalized: schinese: 商人传说 tchinese: 商人傳說 -'543150': +"543150": installDir: Guardian launch: - config: oslist: windows executable: Guardian.exe type: vr -'543160': +"543160": installDir: SuperMoose launch: - config: @@ -260739,14 +256318,14 @@ oslist: macos executable: SuperMoose.app type: none -'543170': +"543170": installDir: Project R.E.B.O.O.T launch: - config: oslist: windows executable: Project R.E.B.O.O.T.exe type: default -'543180': +"543180": installDir: Infinite Tanks launch: - config: @@ -260754,33 +256333,33 @@ oslist: windows executable: win32/InfiniteTanks.exe type: none -'543240': +"543240": installDir: RootLetter launch: - config: oslist: windows executable: RootLetter.exe type: default -'543260': - installDir: Wonder Boy The Dragon's Trap +"543260": + installDir: "Wonder Boy The Dragon's Trap" launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch 64-bit version - executable: exe64\\wb.exe + executable: "exe64\\\\wb.exe" type: default workingdir: exe64 - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch 32-bit version - executable: exe32\\wb.exe + executable: "exe32\\\\wb.exe" type: default workingdir: exe32 - config: oslist: linux - executable: ./WonderBoy + executable: "./WonderBoy" type: none - config: oslist: macos @@ -260788,37 +256367,37 @@ type: none - config: betakey: beta_opengl - osarch: '64' + osarch: "64" oslist: windows - description: 'OpenGL version [beta]' - executable: exe64\\wb_gl.exe + description: "OpenGL version [beta]" + executable: "exe64\\\\wb_gl.exe" type: option1 workingdir: exe64 - config: betakey: beta_opengl - osarch: '32' + osarch: "32" oslist: windows - description: 'OpenGL version [beta]' - executable: exe32\\wb_gl.exe + description: "OpenGL version [beta]" + executable: "exe32\\\\wb_gl.exe" type: option1 workingdir: exe32 nameLocalized: japanese: ワンダーボーイ:ドラゴンの罠 -'543270': +"543270": installDir: Mr. Shadow launch: - config: oslist: windows executable: Mr Shadow.exe type: none -'543280': +"543280": installDir: VR Laser Harp launch: - config: oslist: windows executable: vrlaserharp.exe type: vr -'543290': +"543290": installDir: Void And Nothingness launch: - config: @@ -260830,111 +256409,111 @@ executable: van.sh type: default - config: - osarch: '64' + osarch: "64" oslist: macos executable: van.app/Contents/MacOS/van type: default -'543300': +"543300": installDir: Horizon Of History launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: HorizonOfHistory.exe type: vr -'543320': {} -'543350': - installDir: The Night The Carson's Disappeared +"543320": {} +"543350": + installDir: "The Night The Carson's Disappeared" launch: - config: oslist: windows executable: TNTCD.exe type: vr -'543360': +"543360": installDir: Relaxation balls launch: - executable: Relaxation Balls.exe type: default -'543380': +"543380": installDir: Empire of the Fallen Steel launch: - config: oslist: windows executable: Eotfs.exe type: none -'543390': +"543390": installDir: Aeon launch: - config: oslist: windows executable: Aeon.exe type: vr -'543410': +"543410": installDir: Crowe launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Crowe.exe type: vr -'543420': {} -'543430': +"543420": {} +"543430": installDir: Brain Booster launch: - config: oslist: windows executable: BrainBooster.exe type: default -'543440': +"543440": installDir: Cold Iron launch: - config: oslist: windows executable: Cold Iron.exe type: vr -'543460': +"543460": installDir: DeadRising4 launch: - config: - osarch: '64' + osarch: "64" oslist: windows - description: 'Dead Rising 4 ' + description: "Dead Rising 4 " executable: deadrising4.exe type: default -'543530': +"543530": installDir: Holo Impact Prologue launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: .\\AceVR\\Binaries\\Win64\\HoloImpact.exe + executable: ".\\\\AceVR\\\\Binaries\\\\Win64\\\\HoloImpact.exe" type: vr -'543540': +"543540": installDir: Archer Guardian VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: .\\Archer\\Binaries\\Win64\\ArcherGuardian.exe + executable: ".\\\\Archer\\\\Binaries\\\\Win64\\\\ArcherGuardian.exe" type: vr -'543580': +"543580": installDir: Pipejob launch: - - arguments: '-windowed' + - arguments: "-windowed" config: - osarch: '64' + osarch: "64" oslist: windows executable: Pipejob.exe type: vr -'543600': +"543600": installDir: Monster Maze VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: MonsterMazeVR.exe type: vr -'543650': +"543650": installDir: LastDaysSteam launch: - config: @@ -260945,68 +256524,68 @@ oslist: macos executable: LastDays.app type: default -'543710': +"543710": installDir: Cogito launch: - config: oslist: windows executable: Cogito.exe type: vr -'543720': +"543720": installDir: Damned Cold launch: - config: oslist: windows executable: damnedcold.exe type: default -'543740': +"543740": installDir: Medieval Story launch: - config: oslist: windows executable: Medieval Story.exe type: default -'543770': {} -'543780': {} -'543790': {} -'543870': +"543770": {} +"543780": {} +"543790": {} +"543870": installDir: Qwant2 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: NSUNS2.exe type: none -'543900': +"543900": installDir: METAL GEAR SURVIVE launch: - config: oslist: windows executable: mgv.exe type: default -'543910': +"543910": installDir: DASM Spell Quest launch: - config: oslist: windows - executable: Binaries\\Win32\\World of DASM.exe + executable: "Binaries\\\\Win32\\\\World of DASM.exe" type: default -'543920': +"543920": installDir: WeirdCreatures launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: WeirdCreatures.exe type: vr -'543930': +"543930": installDir: Koi Musubi launch: - config: oslist: windows executable: Koimusubi.exe type: none -'543940': +"543940": installDir: Perso launch: - config: @@ -261014,24 +256593,24 @@ executable: Perso.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Perso.x86_64 type: default -'543950': - installDir: Z`code (VR for HTC Vive) +"543950": + installDir: "Z`code (VR for HTC Vive)" launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Zcode.exe type: vr - config: - osarch: '32' + osarch: "32" oslist: windows executable: Zcode.exe type: vr -'543980': +"543980": installDir: Zombie Exodus Safe Haven launch: - config: @@ -261046,37 +256625,37 @@ oslist: linux executable: ZombieExodusSafeHaven type: none -'544000': +"544000": installDir: DreamUniVRse launch: - config: oslist: windows executable: duvr.exe type: vr -'544130': +"544130": installDir: Whack a Vote Hammering the Polls launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: WhackAVote.exe type: vr -'544140': +"544140": installDir: Murder Mystery Adventure launch: - executable: MurderMysteryAdventure.exe type: none -'544180': +"544180": installDir: OrboxC launch: - config: oslist: windows executable: orboxC.exe type: default -'544190': +"544190": installDir: Book Series - Alice in Wonderland launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows description: Lauch @@ -261086,18 +256665,18 @@ oslist: macos executable: nwjs.app type: default -'544220': +"544220": installDir: Damage Sadistic Butchering of Humanity launch: - config: oslist: windows executable: Damage.exe type: default -'544290': +"544290": installDir: Tyto Online launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TytoOnlineLauncher.exe type: default @@ -261105,8 +256684,8 @@ oslist: macos executable: TytoOnlineLauncher.app type: none -'544300': {} -'544310': +"544300": {} +"544310": installDir: Jumps launch: - config: @@ -261117,36 +256696,36 @@ - config: oslist: macos description: Launch game - executable: Jumps.app\\Contents\\MacOS\\Jumps + executable: "Jumps.app\\\\Contents\\\\MacOS\\\\Jumps" type: default - config: oslist: linux description: Launch game executable: Jumps.x86_64 type: default -'544330': +"544330": installDir: Snake Pass launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SnakePass.exe type: default -'544360': {} -'544370': +"544360": {} +"544370": installDir: Dead Hand Drive launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: DHDPC_Windows.exe type: default - config: - osarch: '64' + osarch: "64" oslist: macos - executable: DHDPC_MAC.app\\Contents\\MacOS\\DHDPC_MAC + executable: "DHDPC_MAC.app\\\\Contents\\\\MacOS\\\\DHDPC_MAC" type: default -'544380': +"544380": installDir: Tesla The Weather Man launch: - config: @@ -261158,7 +256737,7 @@ description: Level Editor executable: Level Editor.exe type: editor -'544390': +"544390": installDir: NITE Team 4 launch: - config: @@ -261173,21 +256752,21 @@ oslist: linux executable: nt4.x86_64 type: none -'544400': +"544400": installDir: GUNGUNGUN launch: - config: oslist: windows executable: GGGnew60fps.exe type: default -'544410': +"544410": installDir: Potioneer launch: - config: oslist: windows executable: potioneer.exe type: vr -'544440': +"544440": installDir: Next Stop 2 launch: - config: @@ -261198,15 +256777,15 @@ oslist: macos executable: NextStop2.app/Contents/MacOS/NextStop2 type: none -'544470': {} -'544480': +"544470": {} +"544480": installDir: Draft Day Sports Pro Basketball 2017 launch: - config: oslist: windows executable: DDSPB2017.exe type: default -'544520': +"544520": installDir: The Puppet Master launch: - config: @@ -261218,54 +256797,54 @@ executable: Default Mac desktop Universal.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Default Linux desktop Universal.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Default Linux desktop Universal.x86_64 type: default -'544530': +"544530": installDir: Escape Bloody Mary launch: - config: oslist: windows executable: EscapeBloodyMary.exe type: vr -'544540': +"544540": installDir: The Fastest Fist launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TheFastestFist.exe type: vr -'544550': +"544550": installDir: Stationeers launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: launch executable: rocketstation.exe type: none -'544580': +"544580": installDir: BULLET SOUL launch: - config: oslist: windows executable: Launcher.exe type: default -'544590': +"544590": installDir: Death Dojo launch: - config: oslist: windows executable: Death Dojo.exe type: vr -'544600': +"544600": installDir: Delicious - Emilys Christmas Carol launch: - config: @@ -261274,23 +256853,23 @@ type: default - config: oslist: macos - executable: d14.app\\Contents\\MacOS\\d14 + executable: "d14.app\\\\Contents\\\\MacOS\\\\d14" type: default -'544610': +"544610": installDir: Battlestar Galactica Deadlock launch: - config: oslist: windows executable: autorun.exe type: default -'544630': +"544630": installDir: River City Melee Battle Royal Special launch: - config: oslist: windows executable: BattleRoyalSpecial.exe type: default -'544650': +"544650": installDir: Sacred Almanac Traces of Greed launch: - config: @@ -261301,7 +256880,7 @@ oslist: macos executable: Sacred Almanac.app type: none -'544680': +"544680": installDir: Holy Avenger launch: - arguments: ~windowed @@ -261309,8 +256888,8 @@ oslist: windows executable: HolyAvenger.exe type: default -'544710': - installDir: Delicious - Emily's New Beginning +"544710": + installDir: "Delicious - Emily's New Beginning" launch: - config: oslist: windows @@ -261320,7 +256899,7 @@ oslist: macos executable: Delicious 10 Mac Standard Steam.app/Contents/MacOS/Delicious 10 Mac Standard Steam type: default -'544730': +"544730": installDir: Catan Universe launch: - config: @@ -261329,44 +256908,44 @@ type: default - config: oslist: macos - executable: CatanUniverse.app\\Contents\\MacOS\\CatanUniverse + executable: "CatanUniverse.app\\\\Contents\\\\MacOS\\\\CatanUniverse" type: default -'544750': +"544750": installDir: SoulcaliburVI launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SoulcaliburVI/Binaries/Win64/SoulcaliburVI.exe type: default - config: - betakey: 'qa_latest_master,qa_patch_master,qa_exclusive_master' - osarch: '64' + betakey: "qa_latest_master,qa_patch_master,qa_exclusive_master" + osarch: "64" oslist: windows executable: SoulcaliburVI/Binaries/Win64/SoulcaliburVI.exe type: default - config: - betakey: 'dev_latest,qa_latest,qa_latest2,qa_patch,qa_exclusive' + betakey: "dev_latest,qa_latest,qa_latest2,qa_patch,qa_exclusive" executable: SoulcaliburVI/Binaries/Win64/SoulcaliburVI-Win64-Test.exe type: none -'544790': +"544790": installDir: Happy Empire - A Bouquet for the Princess launch: - executable: Happy Empire - A Bouquet for the Princess - Game.exe type: none -'544800': +"544800": installDir: Driftwatch VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: DriftWatch.exe type: vr -'544810': +"544810": installDir: KARDS launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: kards.exe type: none @@ -261375,48 +256954,48 @@ oslist: macos executable: kards-Mac-Shipping.app type: none -'544820': +"544820": installDir: 21 Steps to Soul launch: - config: oslist: windows executable: 21.exe type: default -'544840': +"544840": installDir: CoO launch: - config: - osarch: '64' + osarch: "64" oslist: linux executable: CoO type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: CoO.exe type: default -'544870': +"544870": installDir: Blood Ties launch: - description: Launch executable: Game.exe type: none -'544920': +"544920": installDir: Darwin Project launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Darwin Project executable: Darwin.exe type: option1 - config: - osarch: '64' + osarch: "64" oslist: linux description: Darwin Project executable: Darwin.sh type: option1 -'544970': +"544970": installDir: Milkmaid of the Milky Way launch: - config: @@ -261431,7 +257010,7 @@ oslist: linux executable: milkmaid.x86 type: default -'544990': +"544990": installDir: Nobunaga1 launch: - config: @@ -261440,7 +257019,7 @@ type: default nameLocalized: japanese: 信長の野望 -'545000': +"545000": installDir: GenghisKhan1 launch: - config: @@ -261449,7 +257028,7 @@ type: default nameLocalized: japanese: 蒼き狼と白き牝鹿 -'545010': +"545010": installDir: Ishin1 launch: - config: @@ -261458,7 +257037,7 @@ type: default nameLocalized: japanese: 維新の嵐 -'545030': +"545030": installDir: NSFW ~ Not a Simulator For Working launch: - config: @@ -261470,16 +257049,16 @@ executable: NSFW.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: NSFW.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: NSFW.x86_64 type: default -'545040': +"545040": installDir: Feather launch: - config: @@ -261490,83 +257069,83 @@ oslist: macos executable: feather.app type: none -'545050': +"545050": installDir: Badiya launch: - executable: Badiya.exe type: none -'545060': +"545060": installDir: BULLET SOUL Infinite Burst launch: - config: oslist: windows executable: Launcher.exe type: default -'545130': +"545130": installDir: Pro Basketball Manager 2017 launch: - arguments: fVNdsJPe3mLkVDfywNCyU49X description: Launch executable: PBM2017.exe type: none -'545150': +"545150": installDir: Beastiarium launch: - config: oslist: windows executable: Beastiarium.exe type: default -'545180': +"545180": installDir: MuffledWarfare launch: - config: oslist: windows executable: Muffled Warfare.exe type: none -'545200': +"545200": installDir: Super Blackjack Battle 2 Turbo Edition - The Card Warriors launch: - config: oslist: windows executable: SBJB2TE.exe type: default -'545230': +"545230": installDir: Professor Nasty Time The Stupidly Unfair Test Simulator 2016 launch: - config: oslist: windows executable: ProfessorNastyTime.exe type: default -'545240': {} -'545250': {} -'545270': +"545240": {} +"545250": {} +"545270": installDir: NBAPlaygrounds launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: NBAPlaygrounds.exe type: default -'545280': {} -'545320': {} -'545330': +"545280": {} +"545320": {} +"545330": installDir: ALFINE launch: - config: oslist: windows executable: alfine.exe type: default -'545340': +"545340": installDir: Companion launch: - config: oslist: windows executable: companion.exe type: none -'545350': {} -'545360': {} -'545370': {} -'545400': +"545350": {} +"545360": {} +"545370": {} +"545400": installDir: Natural - Beyond Nature - launch: - config: @@ -261574,8 +257153,8 @@ description: Launch executable: natural.exe type: none -'545410': - installDir: A Trip to Yugoslavia Director's Cut +"545410": + installDir: "A Trip to Yugoslavia Director's Cut" launch: - config: oslist: windows @@ -261588,36 +257167,36 @@ executable: ATtY DC Mac.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: ATtY_DC.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: ATtY_DC.x86 type: default -'545430': +"545430": installDir: BF_Frenzy launch: - executable: Frenzy.exe type: none -'545450': {} -'545470': +"545450": {} +"545470": installDir: Hover Hazard launch: - config: oslist: windows executable: hover_hazard.exe type: default -'545490': +"545490": installDir: Akuya launch: - executable: AKUYA.exe type: default -'545540': +"545540": installDir: The Infectious Madness of Doctor Dekker launch: - config: @@ -261625,31 +257204,31 @@ executable: timodd.exe type: default - config: - osarch: '64' + osarch: "64" oslist: macos executable: timodd.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: timodd type: none -'545560': {} -'545570': +"545560": {} +"545570": installDir: PHAT PHROG launch: - config: oslist: windows executable: game.exe type: default -'545580': +"545580": installDir: GoAwayTheresKumisOverThere launch: - config: oslist: windows executable: GATIKOT.exe type: none -'545590': +"545590": installDir: Button Tales launch: - config: @@ -261659,12 +257238,12 @@ type: none - config: oslist: windows - ownsdlc: '1114750' - description: 'Launch Button Tales: Way Home' - executable: \\WayHome\\ButtonTalesWH.exe + ownsdlc: "1114750" + description: "Launch Button Tales: Way Home" + executable: "\\\\WayHome\\\\ButtonTalesWH.exe" type: none - workingdir: \\WayHome\\ -'545600': + workingdir: "\\\\WayHome\\\\" +"545600": installDir: Vigilantes launch: - config: @@ -261676,28 +257255,28 @@ executable: Vigilantes.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Vigilantes.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Vigilantes.x86 type: default -'545620': +"545620": installDir: Anamorphine launch: - config: oslist: windows executable: Anamorphine.exe type: none -'545640': - installDir: Shiver Poltergeist Collector's Edition +"545640": + installDir: "Shiver Poltergeist Collector's Edition" launch: - executable: SHIVER_PoltergeistCE.exe type: none -'545650': +"545650": installDir: High Profits launch: - config: @@ -261706,13 +257285,13 @@ type: none - config: oslist: macos - executable: mactest.app\\Contents\\MacOS\\mactest + executable: "mactest.app\\\\Contents\\\\MacOS\\\\mactest" type: default - config: oslist: linux executable: game.x86 type: default -'545660': +"545660": installDir: Roofbot launch: - config: @@ -261723,7 +257302,7 @@ oslist: macos executable: Roofbot.app type: default -'545670': +"545670": installDir: Parallyzed launch: - config: @@ -261734,7 +257313,7 @@ oslist: macos executable: parallyzed.app type: default -'545690': +"545690": installDir: voi launch: - config: @@ -261745,41 +257324,41 @@ oslist: macos executable: voi.app type: default -'545700': +"545700": installDir: The Land of Dasthir launch: - executable: Game.exe type: none -'545720': +"545720": installDir: Nother launch: - config: oslist: windows executable: Nother.exe type: default -'545750': +"545750": installDir: Rise High launch: - config: oslist: windows executable: RiseHigh.exe type: default -'545800': +"545800": installDir: GhostDream launch: - config: oslist: windows executable: Ghostdream.exe type: none -'545820': +"545820": installDir: Wanderland launch: - config: oslist: windows executable: Wanderland.exe type: none -'545830': - installDir: Princess of Tavern Collector's Edition +"545830": + installDir: "Princess of Tavern Collector's Edition" launch: - config: oslist: windows @@ -261789,11 +257368,11 @@ oslist: macos executable: Princess Of Tavern.app type: default -'545840': +"545840": installDir: Convicted Galaxy launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ConvictedGalaxy_Windows_64.exe type: default @@ -261802,28 +257381,28 @@ executable: ConvictedGalaxy_OSX.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: ConvictedGalaxy_Linux.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: ConvictedGalaxy_Linux.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: ConvictedGalaxy_Windows.exe type: default -'545850': +"545850": installDir: Shady Brook launch: - config: oslist: windows executable: Shady Brook Steam.exe type: none -'545860': +"545860": installDir: Luke Sidewalker launch: - config: @@ -261832,44 +257411,44 @@ type: default - config: oslist: macos - executable: lukesidewalker.app\\Contents\\MacOS\\Mac_Runner + executable: "lukesidewalker.app\\\\Contents\\\\MacOS\\\\Mac_Runner" type: default -'545890': +"545890": installDir: Breaking Wheel launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: Main Game\\Ellie_Ball_Project.exe + executable: "Main Game\\\\Ellie_Ball_Project.exe" type: default -'545910': - installDir: Redemption Cemetery Bitter Frost Collector's Edition +"545910": + installDir: "Redemption Cemetery Bitter Frost Collector's Edition" launch: - executable: Redemption_Cemetery_Bitter_Frost_CE.exe type: none -'545920': +"545920": installDir: Hunting Unlimited 4 launch: - config: oslist: windows executable: hu4.exe type: none -'545930': +"545930": installDir: Hunting Unlimited 2011 launch: - config: oslist: windows executable: HU2011.exe type: none -'545940': +"545940": installDir: Hunting Unlimited 2009 launch: - config: oslist: windows executable: hu2009.exe type: none -'545950': {} -'545960': +"545950": {} +"545960": installDir: Wild_Animals_Animated_Jigsaws launch: - config: @@ -261880,54 +257459,54 @@ oslist: macos executable: Wild_Animals_Animated_Jigsaws.app type: default -'545980': +"545980": installDir: Voodoo Vince Remastered launch: - config: oslist: windows executable: Vince.exe type: none -'546030': +"546030": installDir: Fatal Gem VR(Match-Three VR Game) launch: - config: oslist: windows executable: game.exe type: vr -'546040': +"546040": installDir: Ancient Code VR (The Ancient Temple Archery Game) launch: - - arguments: 'BuildID: 1930263' + - arguments: "BuildID: 1930263" config: - osarch: '64' + osarch: "64" oslist: windows - description: 'SteamVR BuildID: 1901099 ' + description: "SteamVR BuildID: 1901099 " executable: game.exe type: vr -'546050': +"546050": installDir: PuyoPuyoTetris launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: puyopuyotetris.exe type: default -'546070': +"546070": installDir: Flower Design launch: - - arguments: '-windowed' + - arguments: "-windowed" config: oslist: windows executable: Flowers.exe type: default - config: oslist: macos - executable: Flowers.app\\Contents\\MacOS\\Flowers + executable: "Flowers.app\\\\Contents\\\\MacOS\\\\Flowers" type: default -'546080': +"546080": installDir: Coffin of Ashes launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows executable: Game.exe @@ -261936,7 +257515,7 @@ japanese: 灰燼の棺 Coffin of Ashes schinese: 灰烬之棺 Coffin of Ashes tchinese: 灰燼之棺 Coffin of Ashes -'546090': +"546090": installDir: Trip to Vinelands launch: - config: @@ -261947,7 +257526,7 @@ oslist: linux executable: run.sh type: default -'546100': +"546100": installDir: BOTOLO launch: - config: @@ -261958,28 +257537,28 @@ oslist: macos executable: BOTOLO.app type: default -'546110': +"546110": installDir: Picturesque VR launch: - config: oslist: windows executable: Picturesque.exe type: vr -'546120': +"546120": installDir: Pursuit of Power 2 launch: - config: oslist: windows executable: PursuitOfPower2.exe type: default -'546150': +"546150": installDir: Primordian launch: - config: oslist: windows executable: Primordian_P1V01.exe type: vr -'546160': +"546160": installDir: Ladybug Quest launch: - config: @@ -261999,7 +257578,7 @@ oslist: windows executable: Ladybug Quest.exe type: default -'546170': +"546170": installDir: Gem Forge launch: - config: @@ -262008,26 +257587,26 @@ type: default - config: oslist: macos - executable: Gem Forge.app\\Contents\\MacOS\\Gem Forge + executable: "Gem Forge.app\\\\Contents\\\\MacOS\\\\Gem Forge" type: default -'546180': +"546180": installDir: Starry Nights Helix launch: - config: oslist: windows executable: StarryNightsHelix.exe type: none -'546200': +"546200": installDir: Gnomes Garden 3 The thief of castles launch: - executable: game.exe type: none -'546210': +"546210": installDir: Unforgiven VR launch: - executable: UnforgivenVR.exe type: vr -'546220': +"546220": installDir: Red Comrades 3 Return of Alaska launch: - config: @@ -262041,69 +257620,69 @@ executable: macOS.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: petka3.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: petka3.x86_64 type: default nameLocalized: - russian: 'Петька и Василий Иванович 3: Возвращение Аляски. Перезагрузка' -'546230': + russian: "Петька и Василий Иванович 3: Возвращение Аляски. Перезагрузка" +"546230": installDir: Xenus 2 launch: - config: oslist: windows executable: Xenus.exe type: default -'546240': +"546240": installDir: The Journey launch: - config: oslist: windows executable: TJ_418.exe type: vr -'546330': +"546330": installDir: SPACE MOUSE launch: - executable: SPACEMOUSE.exe type: none -'546340': +"546340": installDir: Dynamic launch: - config: oslist: windows executable: Dynamic.exe type: default -'546350': +"546350": installDir: Craft Keep VR launch: - config: oslist: windows - executable: Craft Keep\\Craft Keep.exe + executable: "Craft Keep\\\\Craft Keep.exe" type: vr - config: oslist: windows description: Skin viewer - executable: CK Skin Viewer\\CK Skin viewer.exe + executable: "CK Skin Viewer\\\\CK Skin viewer.exe" type: option1 -'546380': {} -'546390': +"546380": {} +"546390": installDir: Brief Karate Foolish launch: - executable: SFWinCf.EXE type: none -'546400': +"546400": installDir: Cavern Escape launch: - config: oslist: windows executable: cavern escape.exe type: default -'546410': +"546410": installDir: Grab the Bottle launch: - config: @@ -262116,45 +257695,45 @@ type: default - config: oslist: macos - executable: Mac.app\\Contents\\MacOS\\Mac + executable: "Mac.app\\\\Contents\\\\MacOS\\\\Mac" type: default -'546430': +"546430": installDir: Pathway launch: - - arguments: '--steam' + - arguments: "--steam" config: oslist: windows executable: Pathway.exe type: default - - arguments: '--steam' + - arguments: "--steam" config: oslist: macos executable: Pathway.app/Contents/MacOS/Pathway type: default - - arguments: '--steam' + - arguments: "--steam" config: oslist: linux executable: Pathway type: default -'546440': +"546440": installDir: Sluggish Morss Days of the Purple Sun launch: - config: oslist: windows executable: sluggishmorssdaysofthepurplesun.exe type: default -'546450': {} -'546460': +"546450": {} +"546460": installDir: Baezult 2 launch: - config: oslist: windows executable: Baezult 2.exe type: none -'546490': +"546490": installDir: Heart and Seoul launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows executable: nw.exe @@ -262167,8 +257746,8 @@ oslist: linux executable: nw type: none -'546500': {} -'546550': +"546500": {} +"546550": installDir: Snowball! launch: - config: @@ -262179,69 +257758,69 @@ oslist: macos executable: Snowball.app type: default -'546560': +"546560": installDir: Half-Life Alyx launch: - - arguments: '-vr -steam -noasserts -nopassiveasserts +map startup' + - arguments: "-vr -steam -noasserts -nopassiveasserts +map startup" config: - osarch: '64' + osarch: "64" oslist: windows executable: game/bin/win64/hlvr.exe type: vr - - arguments: '-steam -retail' + - arguments: "-steam -retail" config: - osarch: '64' + osarch: "64" oslist: windows - ownsdlc: '1295040' + ownsdlc: "1295040" description: Workshop Tools executable: game/bin/win64/hlvrcfg.exe type: editor workingdir: game/bin/win64/ - - arguments: '-vr -steam -noasserts -nopassiveasserts +map startup -vulkan' + - arguments: "-vr -steam -noasserts -nopassiveasserts +map startup -vulkan" config: - osarch: '64' + osarch: "64" oslist: linux executable: game/hlvr.sh type: vr -'546600': +"546600": installDir: Vanguards launch: - config: oslist: windows executable: Vanguards.exe type: none -'546610': +"546610": installDir: Acro Storm launch: - config: oslist: windows executable: AcroStorm.exe type: default -'546650': +"546650": installDir: Beat Boxer launch: - config: oslist: windows executable: beatboxer.exe type: vr -'546660': +"546660": installDir: Operation Breakout® launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: Operation Breakout®\\Win64\\WindowsNoEditor\\Operation Breakout®.exe + executable: "Operation Breakout®\\\\Win64\\\\WindowsNoEditor\\\\Operation Breakout®.exe" type: default -'546670': {} -'546700': +"546670": {} +"546700": installDir: TheButterflySign launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: tbs1.5\\W3\\Binaries\\Win64\\W3-Win64-Shipping.exe + executable: "tbs1.5\\\\W3\\\\Binaries\\\\Win64\\\\W3-Win64-Shipping.exe" type: default -'546780': +"546780": installDir: Anomalies launch: - config: @@ -262249,58 +257828,58 @@ description: Run Anomalies executable: Anomalies.exe type: default -'546790': +"546790": installDir: Comit the Astrodian launch: - config: oslist: windows executable: Comit the Astrodian.exe type: default -'546800': +"546800": installDir: Tower in the Sky launch: - config: oslist: windows executable: TowerInTheSky43.exe type: none -'546810': +"546810": installDir: Chernobyl Terrorist Attack launch: - config: oslist: windows executable: Chernobyl.exe type: default -'546820': +"546820": installDir: Pony World 2 launch: - config: oslist: windows executable: Pony World 2.exe type: default -'546830': +"546830": installDir: Police Destruction Street launch: - config: oslist: windows executable: Police.exe type: default -'546870': +"546870": installDir: Merchants & Mercenaries launch: - config: oslist: windows executable: MerchantsAndMercenaries.exe type: none -'546900': +"546900": installDir: Fear Effect Sedna launch: - - arguments: '-forcecontrollerappid 546900' + - arguments: "-forcecontrollerappid 546900" config: oslist: windows executable: FearEffect.exe type: none -'546920': {} -'546930': +"546920": {} +"546930": installDir: Machine Hunt launch: - config: @@ -262315,26 +257894,26 @@ oslist: linux executable: MachineHuntLinux.x86 type: default -'546960': +"546960": installDir: Mechatroniks Attack launch: - config: oslist: windows executable: MechatroniksAttack.exe type: default -'546980': +"546980": installDir: Midnight Carnival launch: - config: oslist: windows executable: Midnight_Carnival.exe type: default -'546990': +"546990": installDir: Town of Night launch: - executable: sgb_rpgplayer.exe type: none -'547000': +"547000": installDir: Septic Savages launch: - config: @@ -262345,7 +257924,7 @@ oslist: macos executable: nw.app type: default -'547010': +"547010": installDir: TerminalHacker launch: - config: @@ -262354,20 +257933,20 @@ type: default - config: oslist: macos - executable: TerminalHacker.app\\Contents\\MacOS\\TerminalHacker + executable: "TerminalHacker.app\\\\Contents\\\\MacOS\\\\TerminalHacker" type: default - config: oslist: linux executable: TerminalHacker.x86 type: default -'547040': +"547040": installDir: Above - VR launch: - config: oslist: windows executable: Above.exe type: vr -'547050': +"547050": installDir: RYB launch: - config: @@ -262382,7 +257961,7 @@ oslist: linux executable: RYB type: default -'547090': +"547090": installDir: Halloween mysteries launch: - config: @@ -262391,42 +257970,42 @@ type: default - config: oslist: macos - executable: Halloween mysteries.app\\Contents\\MacOS\\Halloween mysteries + executable: "Halloween mysteries.app\\\\Contents\\\\MacOS\\\\Halloween mysteries" type: default -'547130': +"547130": installDir: The Hero launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: Binaries\\Win64\\The Hero.exe + executable: "Binaries\\\\Win64\\\\The Hero.exe" type: default -'547140': +"547140": installDir: Owari launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: owari.exe type: default - config: - osarch: '64' + osarch: "64" oslist: macos executable: owari.app type: default -'547150': +"547150": installDir: The Morgue launch: - config: oslist: windows executable: TheMorgue.exe type: none -'547200': +"547200": installDir: Boo Breakers The Ghostening launch: - executable: boobreakers.exe type: vr -'547210': +"547210": installDir: Sullen launch: - config: @@ -262441,16 +258020,16 @@ oslist: linux executable: Sullen type: default -'547250': +"547250": installDir: OscarMikeVR launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: Munch\\Binaries\\Win64\\Munch.exe + executable: "Munch\\\\Binaries\\\\Win64\\\\Munch.exe" type: vr - workingdir: Munch\\Binaries\\Win64\\ -'547260': + workingdir: "Munch\\\\Binaries\\\\Win64\\\\" +"547260": installDir: medusa launch: - config: @@ -262459,20 +258038,20 @@ type: default - config: oslist: macos - executable: MausoleumOfTheMedusa.app\\Contents\\MacOS\\MausoleumOfTheMedusa + executable: "MausoleumOfTheMedusa.app\\\\Contents\\\\MacOS\\\\MausoleumOfTheMedusa" type: default - config: oslist: linux executable: Mausoleum_of_the_Medusa.x86_64 type: default -'547310': +"547310": installDir: thatsmahjong launch: - config: oslist: windows executable: MMahjong.exe type: none -'547340': +"547340": installDir: Love kami -Divinity Stage- launch: - config: @@ -262480,30 +258059,30 @@ description: Launch executable: AdvHD.exe type: default -'547360': +"547360": installDir: BreakArts 2 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ba2.exe type: default - - arguments: '-popupwindow -screen-fullscreen 0' + - arguments: "-popupwindow -screen-fullscreen 0" config: - osarch: '64' + osarch: "64" oslist: windows description: Border-less Window executable: ba2.exe type: option1 -'547370': {} -'547390': +"547370": {} +"547390": installDir: Mosaic Game of Gods launch: - config: oslist: windows executable: MosaicGameOfGods.exe type: none -'547410': +"547410": installDir: Peak Angle Drift Online launch: - config: @@ -262512,7 +258091,7 @@ type: default - config: oslist: windows - description: 'Peak Angle: Drift Online with Default Settigs' + description: "Peak Angle: Drift Online with Default Settigs" executable: PeakAngleDefaultSettings.exe type: option1 - config: @@ -262522,27 +258101,27 @@ executable: beta/PeakAngleBeta.exe type: option1 workingdir: beta -'547440': +"547440": installDir: 7D_Game launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: 7dgame/7DGame_Steam.exe type: vr -'547470': +"547470": installDir: Apokalypsis launch: - executable: Apokalypsis.exe type: none -'547480': +"547480": installDir: CATR launch: - config: oslist: windows executable: CATR.exe type: vr -'547520': +"547520": installDir: Rapture World Conquest launch: - config: @@ -262553,7 +258132,7 @@ oslist: macos executable: RaptureWC.app type: default -'547540': +"547540": installDir: panGEMic launch: - config: @@ -262564,23 +258143,23 @@ oslist: macos executable: pangemic.app type: default -'547590': +"547590": installDir: Pinball FX2 VR launch: - config: oslist: windows executable: Pinball FX2.exe type: vr -'547670': +"547670": installDir: Musical Range launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Normal Launch mode executable: MusicalRange.exe type: vr -'547680': +"547680": installDir: Guild Quest launch: - config: @@ -262591,70 +258170,70 @@ oslist: macos executable: guild-quest.app type: default -'547710': +"547710": installDir: Darkness Ahead launch: - config: oslist: windows executable: DarknessAhead.exe type: default -'547730': - installDir: Izanami's Dream Battle +"547730": + installDir: "Izanami's Dream Battle" launch: - config: oslist: windows - description: Izanami's Dream Battle + description: "Izanami's Dream Battle" executable: DreamBattle.exe type: option1 - config: oslist: windows - description: Read Izanami's Story + description: "Read Izanami's Story" executable: story.pdf type: none - config: oslist: linux - description: Izanami's Dream Battle + description: "Izanami's Dream Battle" executable: IDB.sh type: option1 - config: oslist: linux - description: Read Izanami's Story + description: "Read Izanami's Story" executable: readstory.sh type: none - config: oslist: macos - description: Izanami's Dream Battle + description: "Izanami's Dream Battle" executable: idb.sh type: option1 - config: oslist: macos - description: Read Izanami's Story + description: "Read Izanami's Story" executable: story.pdf type: none -'547740': +"547740": installDir: Across launch: - config: oslist: windows - executable: Across\\Binaries\\Win32\\across.exe + executable: "Across\\\\Binaries\\\\Win32\\\\across.exe" type: vr - workingdir: Across\\Binaries\\Win32\\ -'547750': + workingdir: "Across\\\\Binaries\\\\Win32\\\\" +"547750": installDir: Endless Night launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: EndlessNight.exe type: vr -'547810': +"547810": installDir: Spacewing VR launch: - config: - osarch: '64' + osarch: "64" executable: game.exe type: vr -'547820': +"547820": installDir: Kitten Squad launch: - config: @@ -262665,7 +258244,7 @@ oslist: macos executable: KittenSquad.app/Contents/MacOS/KittenSquad type: none -'547840': +"547840": installDir: Interfectorem launch: - config: @@ -262680,14 +258259,14 @@ oslist: linux executable: interfectorem.x86 type: default -'547850': +"547850": installDir: Trump Sim launch: - config: oslist: windows executable: TrumpSimulator_2016.exe type: vr -'547860': +"547860": installDir: Rend launch: - config: @@ -262695,11 +258274,11 @@ description: Rend executable: Rend.exe type: default - - arguments: '-NoEAC' + - arguments: "-NoEAC" description: Rend (without EAC) executable: RendClient.exe type: option2 -'547870': +"547870": installDir: Clown2Beat launch: - config: @@ -262710,7 +258289,7 @@ oslist: macos executable: Clown2Beat.exe type: default -'547880': +"547880": installDir: Alien Invasion Tower Defense launch: - config: @@ -262721,7 +258300,7 @@ oslist: macos executable: tdmacbuild.app type: default -'547900': +"547900": installDir: Front Office Football Eight launch: - config: @@ -262729,36 +258308,36 @@ description: Front Office Football Eight executable: Front Office Football Eight.exe type: none -'547910': +"547910": installDir: The Survey launch: - config: oslist: windows executable: Visibility03.exe type: default -'547920': +"547920": installDir: Our Darkest Night launch: - config: oslist: windows description: Launch - executable: Our Darkest Night\\OurDarkestNight.exe + executable: "Our Darkest Night\\\\OurDarkestNight.exe" type: default -'547930': +"547930": installDir: Precursors launch: - config: oslist: windows executable: Precursors.exe type: default -'547960': +"547960": installDir: Space Beret launch: - config: oslist: windows executable: Space Beret.exe type: default -'547970': +"547970": installDir: Celestial Breach launch: - config: @@ -262767,19 +258346,19 @@ type: default - config: betakey: mod-testing - osarch: '64' + osarch: "64" oslist: windows - description: 'Refresh Mods [!! Required at each mods change !!]' + description: "Refresh Mods [!! Required at each mods change !!]" executable: CelestialBreach_WorkshopEnabled.bat type: option1 -'547980': +"547980": installDir: Equin The Lantern launch: - config: oslist: windows executable: EQUIN- THE LANTERN.exe type: default -'547990': +"547990": installDir: Congresswolf launch: - config: @@ -262794,14 +258373,14 @@ oslist: linux executable: Congresswolf type: none -'548020': +"548020": installDir: Warmada launch: - config: oslist: windows executable: Warmada.exe type: none -'548050': +"548050": installDir: Runes launch: - config: @@ -262812,58 +258391,46 @@ oslist: linux executable: Runes.x86 type: default -'548080': +"548080": installDir: Space Merchants Arena launch: - config: oslist: macos description: Desktop version - description_loc: - english: Desktop version executable: SMA.app type: default - config: oslist: windows - description: 'Space Merchants: Arena (PC Windows)' - description_loc: - english: 'Space Merchants: Arena (PC Windows)' + description: "Space Merchants: Arena (PC Windows)" executable: SMA.exe type: option1 - config: oslist: linux - description: 'Space Merchants: Arena' + description: "Space Merchants: Arena" executable: SMA.x86 type: none - config: oslist: windows description: VR version - description_loc: - english: VR version executable: SMAVR.exe type: vr - config: oslist: macos - description: 'Space Merchants: Arena - SteamVR' - description_loc: - english: 'Space Merchants: Arena - SteamVR' + description: "Space Merchants: Arena - SteamVR" executable: SMAVR.app type: vr - config: oslist: linux - description: 'Space Merchants: Arena - SteamVR' - description_loc: - english: 'Space Merchants: Arena - SteamVR' + description: "Space Merchants: Arena - SteamVR" executable: SMAVR.x86 type: vr - config: oslist: windows description: Tilt Five™ tabletop AR version - description_loc: - english: Tilt Five™ tabletop AR version executable: SMAT5.exe type: option2 -'548090': {} -'548110': +"548090": {} +"548110": installDir: Star-Twine launch: - config: @@ -262872,13 +258439,13 @@ type: default - config: oslist: linux - executable: ./Star-Twine + executable: "./Star-Twine" type: default - config: oslist: macos executable: Star-Twine.app type: default -'548130': +"548130": installDir: Scribble Ships launch: - config: @@ -262887,26 +258454,26 @@ type: default - config: oslist: macos - executable: ScribbleShips.app\\Contents\\MacOS\\Mac_Runner + executable: "ScribbleShips.app\\\\Contents\\\\MacOS\\\\Mac_Runner" type: default - config: oslist: linux executable: ScribbleShips/runner type: default -'548170': +"548170": installDir: Arena Master launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ArenaMaster.exe type: vr - config: - osarch: '32' + osarch: "32" oslist: windows executable: ArenaMaster.exe type: vr -'548220': +"548220": installDir: Paladin launch: - config: @@ -262919,9 +258486,9 @@ type: none - config: oslist: macos - executable: Paladin.app\\Contents\\MacOS\\Paladin + executable: "Paladin.app\\\\Contents\\\\MacOS\\\\Paladin" type: default -'548230': +"548230": installDir: SPINGUN launch: - config: @@ -262932,39 +258499,39 @@ - config: oslist: macos description: Launch - executable: SPINGUN.app\\Contents\\MacOS\\Mac_Runner + executable: "SPINGUN.app\\\\Contents\\\\MacOS\\\\Mac_Runner" type: default - config: oslist: linux description: Launch executable: run.sh type: default -'548240': +"548240": installDir: DemonPit launch: - config: oslist: windows executable: DemonPit.exe type: default -'548260': +"548260": installDir: Backfire launch: - config: oslist: windows executable: Backfire.exe type: default -'548270': {} -'548280': +"548270": {} +"548280": installDir: NeonBall launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: 64 Bits executable: Neonball.exe type: none - config: - osarch: '32' + osarch: "32" oslist: windows executable: Neonball32.exe type: none @@ -262980,7 +258547,7 @@ description: 32bit Lautibah executable: Neonball32.exe type: none -'548290': +"548290": installDir: Dark Eden launch: - arguments: steam @@ -262988,44 +258555,44 @@ oslist: windows executable: updater.exe type: default -'548320': +"548320": installDir: Magical Mysteries launch: - config: oslist: windows executable: game.exe type: default -'548330': +"548330": installDir: Wheely launch: - config: oslist: windows executable: Wheely.exe type: none -'548340': +"548340": installDir: Abode launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Abode.exe type: vr -'548350': +"548350": installDir: OneSolePurpose launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: OneSolePurpose\\OneSolePurpose\\Binaries\\Win64\\OneSolePurpose-Win64-Shipping.exe + executable: "OneSolePurpose\\\\OneSolePurpose\\\\Binaries\\\\Win64\\\\OneSolePurpose-Win64-Shipping.exe" type: default -'548360': +"548360": installDir: RunningJoe launch: - config: oslist: windows executable: RunningJoe.exe type: openvroverlay -'548370': +"548370": installDir: Rezrog launch: - config: @@ -263034,13 +258601,13 @@ type: default - config: oslist: macos - executable: Rezrog.app\\Contents\\MacOS\\Rezrog + executable: "Rezrog.app\\\\Contents\\\\MacOS\\\\Rezrog" type: default - config: oslist: linux executable: Rezrog.x86_64 type: default -'548390': +"548390": installDir: Gimbal Gravity launch: - config: @@ -263055,48 +258622,44 @@ oslist: macos executable: Gimbal Gravity.app type: default -'548430': +"548430": installDir: Deep Rock Galactic launch: - - arguments: '-nohmd' + - arguments: "-nohmd" config: - osarch: '64' + osarch: "64" oslist: windows executable: FSD.exe type: default - - arguments: '-nohmd -dx12' + - arguments: "-nohmd -dx12" config: - osarch: '64' + osarch: "64" oslist: windows description: Deep Rock Galactic (DirectX 12) - description_loc: - english: Deep Rock Galactic (DirectX 12) executable: FSD.exe type: option1 - - arguments: '-nohmd -dx11' + - arguments: "-nohmd -dx11" config: - osarch: '64' + osarch: "64" oslist: windows description: Deep Rock Galactic (DirectX 11) - description_loc: - english: Deep Rock Galactic (DirectX 11) executable: FSD.exe type: option2 -'548450': +"548450": installDir: Foreveracers launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: fr.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: fr.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: fr.x86_64 type: default @@ -263105,14 +258668,14 @@ executable: fr.app type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: fr.exe type: default -'548470': +"548470": installDir: First Impact Rise of a Hero launch: - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" config: oslist: windows executable: FIROAH.exe @@ -263121,131 +258684,131 @@ oslist: windows executable: FIROAH.exe type: vr -'548480': +"548480": installDir: NightZ launch: - config: oslist: windows executable: NightZ.exe type: none -'548500': +"548500": installDir: Payroll launch: - config: oslist: windows - executable: Payroll\\PayrollLauncher.exe + executable: "Payroll\\\\PayrollLauncher.exe" type: default -'548560': +"548560": installDir: Manastorm launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: manastorm.exe type: vr -'548570': +"548570": installDir: RAGE 2 launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Main build launcher executable: RAGE2.exe type: default - config: betakey: unstable - osarch: '64' + osarch: "64" oslist: windows - description: 'Unstable RAGE2 ' + description: "Unstable RAGE2 " executable: RAGE2.exe type: option1 - config: betakey: unstable - osarch: '64' + osarch: "64" oslist: windows description: Unstable RAGE2 Release executable: RAGE2_R.exe type: option2 - config: betakey: unstable - osarch: '64' + osarch: "64" oslist: windows description: Unstable RAGE2 Profile executable: RAGE2_P.exe type: option3 - config: betakey: patch_d30 - osarch: '64' + osarch: "64" oslist: windows description: Patch Day 30 RAGE2 executable: RAGE2.exe type: option1 - config: betakey: patch_d30 - osarch: '64' + osarch: "64" oslist: windows description: Patch Day 30 RAGE2 Profile executable: RAGE2_P.exe type: option2 - config: betakey: patch_d30 - osarch: '64' + osarch: "64" oslist: windows description: Patch Day 30 RAGE2 Release executable: RAGE2_R.exe type: option3 - config: betakey: patch_d60 - osarch: '64' + osarch: "64" oslist: windows description: Patch Day 60 RAGE2 executable: RAGE2.exe type: option1 - config: betakey: patch_d60 - osarch: '64' + osarch: "64" oslist: windows description: Patch Day 60 RAGE2 Profile executable: RAGE2_P.exe type: option2 - config: betakey: patch_d60 - osarch: '64' + osarch: "64" oslist: windows description: Patch Day 60 RAGE2 Release executable: RAGE2_R.exe type: option3 - config: - betakey: 'patch_dlc, patch_dlc_alpha, patch_dlc_beta, patch_dlc2, patch_dlc2_alpha, patch_dlc2_beta, patch_dlc2_hotfix' - osarch: '64' + betakey: "patch_dlc, patch_dlc_alpha, patch_dlc_beta, patch_dlc2, patch_dlc2_alpha, patch_dlc2_beta, patch_dlc2_hotfix" + osarch: "64" oslist: windows description: Patch DLC RAGE2 executable: RAGE2.exe type: none - config: - betakey: 'patch_dlc, patch_dlc_alpha, patch_dlc_beta, patch_dlc2, patch_dlc2_alpha, patch_dlc2_beta, patch_dlc2_hotfix' - osarch: '64' + betakey: "patch_dlc, patch_dlc_alpha, patch_dlc_beta, patch_dlc2, patch_dlc2_alpha, patch_dlc2_beta, patch_dlc2_hotfix" + osarch: "64" oslist: windows description: Patch DLC RAGE2 Profile executable: RAGE2_P.exe type: none - config: - betakey: 'patch_dlc, patch_dlc_alpha, patch_dlc_beta, patch_dlc2, patch_dlc2_alpha, patch_dlc2_beta, patch_dlc2_hotfix' - osarch: '64' + betakey: "patch_dlc, patch_dlc_alpha, patch_dlc_beta, patch_dlc2, patch_dlc2_alpha, patch_dlc2_beta, patch_dlc2_hotfix" + osarch: "64" oslist: windows description: Patch DLC RAGE2 Release executable: RAGE2_R.exe type: none -'548650': +"548650": installDir: Lightspeed Frontier launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Lightspeed Frontier.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Lightspeed Frontier type: default @@ -263253,7 +258816,7 @@ oslist: macos executable: Lightspeed Frontier.app type: default -'548680': +"548680": installDir: Iron Crypticle launch: - config: @@ -263261,37 +258824,37 @@ oslist: windows executable: IronCrypticle.exe type: default -'548710': +"548710": installDir: Sandstorm launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: launch executable: nw.exe type: none - config: - osarch: '64' + osarch: "64" oslist: windows description: launch executable: nw.exe type: none -'548720': +"548720": installDir: Through the Mirror launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: nw.exe type: default -'548740': +"548740": installDir: Warpin Creation (VR) launch: - config: oslist: windows executable: WarpinCreationVR.exe type: vr -'548790': +"548790": installDir: ClotheslineCarnage launch: - config: @@ -263306,7 +258869,7 @@ oslist: linux executable: CC.x86 type: default -'548810': +"548810": installDir: Operation Babel New Tokyo Legacy launch: - config: @@ -263315,7 +258878,7 @@ type: default nameLocalized: japanese: 東京新世録 オペレーションバベル -'548840': +"548840": installDir: A Rose in the Twilight launch: - config: @@ -263324,44 +258887,44 @@ type: default nameLocalized: japanese: ロゼと黄昏の古城 -'548860': +"548860": installDir: The Torus Syndicate launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TorusSyndicate.exe type: vr -'548890': {} -'548900': {} -'549000': +"548890": {} +"548900": {} +"549000": installDir: Munch launch: - - arguments: '-vrmode openvr' + - arguments: "-vrmode openvr" config: - osarch: '64' + osarch: "64" oslist: windows executable: Munch.exe type: vr - - arguments: ' -vrmode oculus' + - arguments: " -vrmode oculus" config: - osarch: '64' + osarch: "64" oslist: windows executable: Munch.exe type: othervr - config: - osarch: '64' + osarch: "64" oslist: linux executable: Munch.x86_64 type: vr -'549030': +"549030": installDir: SnipZ launch: - config: oslist: windows executable: Snipz.exe type: default -'549040': +"549040": installDir: Biotope launch: - config: @@ -263369,36 +258932,36 @@ executable: bin/client.app/Contents/MacOS/client type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: bin/client.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: bin/client-32.exe type: default -'549080': +"549080": installDir: Tank Warfare Tunisia 1943 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: starter_x64.exe type: default -'549090': +"549090": installDir: Counter Agents launch: - config: oslist: windows - executable: .\\Counter Agents PC\\CounterAgents.exe + executable: ".\\\\Counter Agents PC\\\\CounterAgents.exe" type: default -'549100': +"549100": installDir: GravNewton launch: - executable: Gravinewton.exe type: default -'549160': +"549160": installDir: Army Men launch: - config: @@ -263406,7 +258969,7 @@ description: Army Men executable: Armymen.exe type: default -'549170': +"549170": installDir: Army Men II launch: - config: @@ -263414,7 +258977,7 @@ description: Army Men II executable: ArmyMen2.exe type: default -'549180': +"549180": installDir: Army Men - Toys in Space launch: - config: @@ -263422,7 +258985,7 @@ description: Army Men - Toys in Space executable: ARMYMENTIS.exe type: default -'549190': +"549190": installDir: FETCH launch: - config: @@ -263433,40 +258996,38 @@ oslist: macos executable: FetchMacSteam.app/Contents/MacOS/FetchMacSteam type: default -'549220': +"549220": installDir: Dark Canvas A Brush With Death Collectors Edition launch: - config: oslist: windows executable: DarkCanvas_BrushWithDeath.exe type: default -'549240': +"549240": installDir: BeansTheCoffeeShopSimulator launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch - description_loc: - english: Launch executable: win64/nw.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: win32/nw.exe - config: oslist: macos executable: osx64/beansthecoffeeshopsimulator.app - config: - osarch: '64' + osarch: "64" oslist: linux executable: linux64/nw - config: oslist: linux executable: linux32/nw -'549260': - installDir: Alwa's Awakening +"549260": + installDir: "Alwa's Awakening" launch: - config: oslist: windows @@ -263474,13 +259035,13 @@ type: default - config: oslist: macos - executable: AlwasAwakening.app\\Contents\\MacOS\\AlwasAwakening + executable: "AlwasAwakening.app\\\\Contents\\\\MacOS\\\\AlwasAwakening" type: default - config: oslist: linux executable: AlwasAwakening.x86 type: default -'549280': +"549280": installDir: Quiz Night Tonight! launch: - config: @@ -263491,19 +259052,19 @@ oslist: windows executable: QNT-VR.exe type: vr -'549390': +"549390": installDir: StorageInc2 launch: - config: oslist: windows executable: StorageInc2.exe type: default -'549400': +"549400": installDir: Ironclads 2 War of the Pacific launch: - executable: Ironclads 2 WoP.exe type: default -'549660': +"549660": installDir: Wondee launch: - config: @@ -263514,22 +259075,22 @@ oslist: macos executable: wondee.app type: none -'549670': +"549670": installDir: Incursion The Thing launch: - config: oslist: windows executable: Incursion The Thing.exe type: default -'549680': +"549680": installDir: Real Heroes Firefighter launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: Game.exe type: default -'549700': +"549700": installDir: Orphan launch: - config: @@ -263544,7 +259105,7 @@ oslist: macos executable: Orphan.app type: default -'549740': +"549740": installDir: Indie Game Sim launch: - config: @@ -263555,15 +259116,15 @@ oslist: macos executable: igs.app type: default -'549760': +"549760": installDir: Evolution VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: evolution.exe type: vr -'549770': +"549770": installDir: ParanormalTeens-all launch: - config: @@ -263578,30 +259139,30 @@ oslist: linux executable: ParanormalTeens.sh type: default -'549780': +"549780": installDir: RainbowRageSquad64 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: RainbowRageSquad.exe type: default -'549790': - installDir: Glorch's Great Escape +"549790": + installDir: "Glorch's Great Escape" launch: - config: oslist: windows executable: Glorch.exe type: default -'549810': {} -'549850': +"549810": {} +"549850": installDir: The Shadows of Pygmalion launch: - config: oslist: windows executable: Agreement.exe type: default -'549860': +"549860": installDir: One Night Stand launch: - config: @@ -263616,36 +259177,36 @@ oslist: linux executable: One Night Stand.sh type: default -'549880': +"549880": installDir: RoboSports VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: DodgeBall.exe type: vr -'549900': +"549900": installDir: Leviathan Starblade launch: - config: oslist: windows executable: LevithanStarblade.exe type: none -'549910': +"549910": installDir: Locked Fears launch: - config: oslist: windows executable: LockedFears.exe type: default -'549920': +"549920": installDir: VRchaeology launch: - config: oslist: windows executable: VRchaeology.exe type: vr -'549950': +"549950": installDir: Vaccine launch: - config: @@ -263654,37 +259215,36 @@ type: none - config: oslist: macos - executable: Vaccine.app\\Contents\\MacOS\\Vaccine + executable: "Vaccine.app\\\\Contents\\\\MacOS\\\\Vaccine" type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: Vaccine.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: Vaccine.x86_64 type: none -'550': +"550": installDir: Left 4 Dead 2 launch: - - arguments: '-steam' + - arguments: "-steam" config: oslist: windows description: Launch executable: left4dead2.exe - vacmodulefilename: resource\\sourceinit.dat - - arguments: '-game left4dead2 -steam' + - arguments: "-game left4dead2 -steam" config: oslist: macos description: Launch executable: hl2.sh - - arguments: '-game left4dead2 -steam' + - arguments: "-game left4dead2 -steam" config: oslist: linux - executable: ./hl2.sh -'55000': + executable: "./hl2.sh" +"55000": installDir: Flotilla launch: - config: @@ -263693,13 +259253,13 @@ type: default - config: oslist: linux - executable: ./Flotilla + executable: "./Flotilla" type: default - config: oslist: macos executable: Flotilla.app/Contents/MacOS/Flotilla type: default -'550010': +"550010": installDir: Happy Room launch: - config: @@ -263711,45 +259271,45 @@ executable: Happy Room.app type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: Happy Room.x86_64 type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: Happy Room.x86 type: none -'550080': +"550080": installDir: Valkyrie Drive launch: - config: oslist: windows executable: DeploymentRoot/VD_BHIKKHUNI.exe type: default -'550160': +"550160": installDir: Street Champ VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: StreetChamp.exe type: vr -'550170': +"550170": installDir: RPG Fighter League launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows description: Launch RPG Fighter League executable: nw.exe type: none -'550180': +"550180": installDir: Fiber Twig Midnight Puzzle launch: - executable: FiberTwig.exe type: none -'55020': +"55020": installDir: airforte launch: - config: @@ -263762,7 +259322,7 @@ description: Mac executable: data/airforte.app workingdir: data -'550200': +"550200": installDir: World Destroyers launch: - config: @@ -263770,20 +259330,20 @@ description: Launch executable: WorldDestroyers.exe type: default -'550220': +"550220": installDir: Charm Tale Quest launch: - executable: CharmTaleQuest.exe type: none -'550240': +"550240": installDir: After Life - Story of a Father launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: After Life.exe type: default -'550310': +"550310": installDir: Root Of Evil launch: - config: @@ -263794,14 +259354,12 @@ oslist: macos executable: Root Of Evil.app type: default -'550320': +"550320": installDir: artofrally launch: - config: oslist: windows description: art of rally - description_loc: - english: art of rally executable: artofrally.exe type: default - config: @@ -263812,15 +259370,13 @@ oslist: macos executable: artofrally.app type: default - - arguments: '-force-d3d12' + - arguments: "-force-d3d12" config: oslist: windows description: art of rally (DirectX 12) - description_loc: - english: art of rally (DirectX 12) executable: artofrally.exe type: option1 -'550340': +"550340": installDir: Umineko Golden Fantasia launch: - config: @@ -263833,29 +259389,29 @@ type: config nameLocalized: japanese: 黄金夢想曲 -'550360': +"550360": installDir: One Of The Last launch: - config: - osarch: '64' + osarch: "64" oslist: windows - description: \"One Of The Last\" on HTC Vive - executable: Vive\\OneOfTheLast.exe + description: "\\\"One Of The Last\\\" on HTC Vive" + executable: "Vive\\\\OneOfTheLast.exe" type: vr - config: - osarch: '64' + osarch: "64" oslist: windows - description: \"One Of The Last\" on Oculus Rift - executable: Oculus\\OneOfTheLast.exe + description: "\\\"One Of The Last\\\" on Oculus Rift" + executable: "Oculus\\\\OneOfTheLast.exe" type: othervr -'550370': +"550370": installDir: The Last Sin launch: - config: oslist: windows executable: Game.exe type: default -'550390': +"550390": installDir: Kingdom of Aurelia Mystery of the Poisoned Dagger launch: - config: @@ -263866,7 +259422,7 @@ oslist: macos executable: Kingdom_of_Aurelia.app type: none -'55040': +"55040": installDir: atomzombiesmasher launch: - config: @@ -263882,10 +259438,10 @@ - config: oslist: linux description: Linux - executable: ./AtomZombieSmasher + executable: "./AtomZombieSmasher" type: default -'550400': - installDir: Delicious - Emily's Hopes and Fears +"550400": + installDir: "Delicious - Emily's Hopes and Fears" launch: - config: oslist: windows @@ -263895,26 +259451,26 @@ oslist: macos executable: Delicious 12 Mac Premium Steam.app/Contents/MacOS/Delicious 12 Mac Premium Steam type: default -'550420': +"550420": installDir: Stargazer Christmas launch: - executable: StargazerChristmas.exe type: default -'550440': +"550440": installDir: Azkend2 launch: - config: oslist: windows executable: Azkend2.exe type: default -'550450': +"550450": installDir: SparkleUnleashed launch: - config: oslist: windows executable: SparkleUnleashed.exe type: default -'550470': +"550470": installDir: NosTale launch: - arguments: steam @@ -263959,7 +259515,7 @@ description: MLC executable: NostaleLauncher.exe type: default -'550520': +"550520": installDir: BBraunFutureOperatingRoom launch: - config: @@ -263967,21 +259523,21 @@ description: Launch executable: FutureOperatingRoom.exe type: vr -'550560': +"550560": installDir: Chilie launch: - config: oslist: windows executable: Chilie.exe type: default -'550580': +"550580": installDir: Sticker Craft launch: - config: oslist: windows executable: StickerCraft_Steam.exe type: default -'550590': +"550590": installDir: Archaica The Path of Light launch: - config: @@ -263991,34 +259547,34 @@ - config: betakey: test2 oslist: macos - executable: Archaica.app\\Contents\\MacOS\\Archaica + executable: "Archaica.app\\\\Contents\\\\MacOS\\\\Archaica" type: default -'550600': +"550600": installDir: Sphere Complex launch: - config: oslist: windows executable: SphereComplex.exe type: default -'550650': +"550650": installDir: Black Squad launch: - config: oslist: windows - executable: binaries\\BSLauncher.exe + executable: "binaries\\\\BSLauncher.exe" type: default -'550670': +"550670": installDir: What The Heck Dude launch: - config: oslist: windows executable: WhatTheHeckDude.exe type: default -'550740': +"550740": installDir: Battles of the Valiant Universe CCG launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: BotVU.exe type: default @@ -264026,7 +259582,7 @@ oslist: macos executable: BotVU.app type: default -'550810': +"550810": installDir: Abduction Bit launch: - config: @@ -264034,22 +259590,22 @@ description: Launch executable: Abduction Bit.exe type: none -'550820': +"550820": installDir: Kitten Cannon launch: - config: oslist: windows executable: KittenCannon.exe type: vr -'550830': +"550830": installDir: Brain Voyagers - Ricochet launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: Brain Voyagers - Ricochet\\Brain Voyagers - Ricochet.exe + executable: "Brain Voyagers - Ricochet\\\\Brain Voyagers - Ricochet.exe" type: vr -'550840': +"550840": installDir: FreshBody launch: - config: @@ -264060,18 +259616,18 @@ oslist: macos executable: freshbody.app type: none -'550870': +"550870": installDir: Micro Trial RC launch: - config: oslist: windows executable: Micro Trial RC.exe type: default -'550890': {} -'550900': +"550890": {} +"550900": installDir: Metin2 launch: - - arguments: '--steam' + - arguments: "--steam" executable: steam_launcher.exe type: none - executable: config.exe @@ -264081,15 +259637,15 @@ description: Change Lang executable: change_lang.bat type: none -'550930': +"550930": installDir: Rocket Craze 3D launch: - config: oslist: windows executable: RocketCraze3D.exe type: none -'550990': - installDir: 'Viktor, a Steampunk Adventure' +"550990": + installDir: "Viktor, a Steampunk Adventure" launch: - config: oslist: windows @@ -264101,12 +259657,12 @@ description: (with subtitles on introductory video) executable: viktor.exe type: option2 -'55100': +"55100": installDir: HOMEFRONT launch: - - arguments: '-seekfreeloading' - executable: Binaries\\HOMEFRONT.exe -'551050': + - arguments: "-seekfreeloading" + executable: "Binaries\\\\HOMEFRONT.exe" +"551050": installDir: Die With Glory launch: - config: @@ -264117,14 +259673,14 @@ oslist: macos executable: Die With Glory.app type: none -'551060': +"551060": installDir: Creekside Creep Invasion launch: - config: oslist: windows executable: CreepInvasion.exe type: none -'551080': +"551080": installDir: Rescue your chickens launch: - config: @@ -264139,12 +259695,12 @@ oslist: linux executable: RescueYourChickens_linux type: none -'55110': +"55110": installDir: red faction armageddon launch: - description: Game Launcher executable: rf4_launcher.exe -'551100': +"551100": installDir: Oblivions Edge launch: - config: @@ -264153,7 +259709,7 @@ executable: OblivionsEdge.exe type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: OblivionsEdge.x86_64 @@ -264161,9 +259717,9 @@ - config: oslist: macos description: Launch - executable: OblivionsEdge.app\\Contents\\MacOS\\OblivionsEdge + executable: "OblivionsEdge.app\\\\Contents\\\\MacOS\\\\OblivionsEdge" type: none -'551110': +"551110": installDir: WayOut launch: - config: @@ -264178,64 +259734,64 @@ oslist: linux executable: WayOut.x86_64 type: default -'551150': - installDir: Labyrinths of the World Shattered Soul Collector's Edition +"551150": + installDir: "Labyrinths of the World Shattered Soul Collector's Edition" launch: - executable: LabyrinthsOfTheWorld_ShatteredSoul_CE.exe type: none -'551160': - installDir: Spirit of Revenge Cursed Castle Collector's Edition +"551160": + installDir: "Spirit of Revenge Cursed Castle Collector's Edition" launch: - executable: SpiritOfRevenge_CursedCastle_CE.exe type: none -'551170': +"551170": installDir: Onmyoji launch: - executable: client.exe type: none -'551190': +"551190": installDir: 123 Slaughter Me Street 2 launch: - config: oslist: windows executable: SMS2/sms2.exe type: default -'551320': +"551320": installDir: Lord Darydikilkil launch: - config: oslist: windows executable: Lord.exe type: vr -'551330': - installDir: Sea of Lies Mutiny of the Heart Collector's Edition +"551330": + installDir: "Sea of Lies Mutiny of the Heart Collector's Edition" launch: - executable: Sea_of_Lies_Mutiny_of_the_Heart_CE.exe type: none -'551360': - installDir: Myths of the World Chinese Healer Collector's Edition +"551360": + installDir: "Myths of the World Chinese Healer Collector's Edition" launch: - executable: MythsOfTheWorld_ChineseHealerCE.exe type: none -'551380': - installDir: Danse Macabre The Last Adagio Collector's Edition +"551380": + installDir: "Danse Macabre The Last Adagio Collector's Edition" launch: - executable: Danse_Macabre_The_Last_Adagio_CE.exe type: none -'55140': +"55140": installDir: MX vs ATV Reflex launch: - executable: MXReflex.exe - description: MX vs ATV Settings executable: MXSettings.exe -'551440': +"551440": installDir: Chiaro and the Elixir of Life launch: - config: oslist: windows executable: Chiaro.exe type: vr -'551450': +"551450": installDir: FuriousAngels launch: - config: @@ -264244,41 +259800,41 @@ type: default - config: oslist: macos - executable: FuriousAngels.app\\Contents\\MacOS\\FuriousAngels + executable: "FuriousAngels.app\\\\Contents\\\\MacOS\\\\FuriousAngels" type: default - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" config: oslist: windows description: Launch with configuration dialog executable: FuriousAngels.exe type: config - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" config: oslist: macos description: Launch with configuration dialog - executable: FuriousAngels.app\\Contents\\MacOS\\FuriousAngels + executable: "FuriousAngels.app\\\\Contents\\\\MacOS\\\\FuriousAngels" type: config -'55150': - installDir: 'Warhammer 40,000 Space Marine' +"55150": + installDir: "Warhammer 40,000 Space Marine" launch: - executable: SpaceMarine.exe -'551500': +"551500": installDir: Star Fight launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Star Fight 0.5.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: Star Fight 0.5.exe type: default -'551520': +"551520": installDir: Last Days of Spring 2 launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows executable: nw.exe @@ -264287,29 +259843,29 @@ oslist: macos executable: nwjs.app type: none -'551550': +"551550": installDir: ASSASSINATION BOX launch: - config: oslist: windows description: DirectX 11 version - executable: ASSASSINATION_BOX\\Binaries\\Win32\\ASSASSINATION_BOX-Win32-Shipping.exe + executable: "ASSASSINATION_BOX\\\\Binaries\\\\Win32\\\\ASSASSINATION_BOX-Win32-Shipping.exe" type: option1 - - arguments: '-dx10' + - arguments: "-dx10" config: oslist: windows description: DirectX 10 version - executable: ASSASSINATION_BOX\\Binaries\\Win32\\ASSASSINATION_BOX-Win32-Shipping.exe + executable: "ASSASSINATION_BOX\\\\Binaries\\\\Win32\\\\ASSASSINATION_BOX-Win32-Shipping.exe" type: option2 -'551570': +"551570": installDir: Sarab Duji Tower launch: - - arguments: '-windowed' + - arguments: "-windowed" config: oslist: windows executable: Game.exe type: default -'551580': +"551580": installDir: Goblin and Coins launch: - config: @@ -264320,36 +259876,36 @@ oslist: linux executable: run.sh type: default -'551610': +"551610": installDir: Virtual Army Revolution launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SteamMode.bat type: vr - config: - osarch: '64' + osarch: "64" oslist: windows - description: 'Virtual Army: Revolution for commercial arcade' + description: "Virtual Army: Revolution for commercial arcade" executable: ArcadeMode.bat type: option1 -'551630': +"551630": installDir: Navalia launch: - config: oslist: windows executable: PCEngine.exe type: default -'551650': +"551650": installDir: TheBedtimeStory launch: - config: oslist: windows executable: TheBedtimeStory.exe type: default -'551670': {} -'551680': +"551670": {} +"551680": installDir: Bad birthday launch: - config: @@ -264357,64 +259913,64 @@ description: Launch executable: BadBirthday.exe type: default -'551690': +"551690": installDir: Counter Fight launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: CounterFight.exe type: vr -'551700': +"551700": installDir: Gunheart launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Gunheart (Desktop mode) executable: Drift.exe type: none - - arguments: '-vr' + - arguments: "-vr" config: - osarch: '64' + osarch: "64" oslist: windows description: Gunheart executable: Drift.exe type: vr -'551710': {} -'551720': +"551710": {} +"551720": installDir: Unearthed Inc - The Lost Temple launch: - executable: Unearthed Inc - The Lost Temple.exe type: vr - executable: Unearthed Inc - The Lost Temple.exe type: othervr -'551730': +"551730": installDir: Toukiden 2 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Toukiden2Launcher.exe type: none nameLocalized: japanese: 討鬼伝2 -'551740': +"551740": installDir: Depression launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Depression.exe type: vr -'551750': +"551750": installDir: Survival launch: - config: oslist: windows executable: Survival.exe type: vr -'551770': +"551770": installDir: ECHO launch: - config: @@ -264422,65 +259978,65 @@ description: Launch executable: Echo.exe type: none -'551840': +"551840": installDir: Crystal Shard Adventure Bundle launch: - - arguments: '-windowed' + - arguments: "-windowed" config: oslist: windows executable: Bundle.exe type: default - - arguments: '-fullscreen' + - arguments: "-fullscreen" config: oslist: windows description: in full screen mode executable: Bundle.exe type: option1 - - arguments: '--setup' + - arguments: "--setup" config: oslist: windows executable: Bundle.exe type: config - - arguments: '-windowed' + - arguments: "-windowed" config: oslist: linux executable: Bundle.sh type: default - - arguments: '-fullscreen' + - arguments: "-fullscreen" config: oslist: linux description: in full screen mode executable: Bundle.sh type: option1 - - arguments: '-windowed' + - arguments: "-windowed" config: oslist: windows - ownsdlc: '787280' + ownsdlc: "787280" description: META executable: META.exe type: option2 - - arguments: '-fullscreen' + - arguments: "-fullscreen" config: oslist: windows - ownsdlc: '787280' + ownsdlc: "787280" description: META in full screen mode executable: META.exe type: option3 - - arguments: '-windowed' + - arguments: "-windowed" config: oslist: linux - ownsdlc: '787280' + ownsdlc: "787280" description: META executable: META.sh type: option2 - - arguments: '-fullscreen' + - arguments: "-fullscreen" config: oslist: linux - ownsdlc: '787280' + ownsdlc: "787280" description: META in full screen mode executable: META.sh type: option3 -'551860': +"551860": installDir: Abandon Ship launch: - config: @@ -264497,7 +260053,7 @@ type: default nameLocalized: schinese: 弃船逃生 -'551930': +"551930": installDir: Pro Skater 2D launch: - config: @@ -264512,14 +260068,14 @@ oslist: macos executable: ProSkater2D.app type: none -'552000': +"552000": installDir: Blowhards launch: - config: oslist: windows executable: Blowhards.exe type: default -'552030': +"552030": installDir: Artillerists launch: - config: @@ -264534,58 +260090,58 @@ oslist: linux executable: nw type: default -'552060': +"552060": installDir: Escape!VR -The Basement- launch: - config: oslist: windows executable: escapevrthebasement.exe type: vr -'552080': +"552080": installDir: IronWolf launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: IronWolf VR in VR Mode (Recommended) executable: IW.exe type: vr - - arguments: '-fp 1' + - arguments: "-fp 1" config: - osarch: '64' + osarch: "64" oslist: windows description: Launch IronWolf VR in Non-VR Mode executable: IW.exe type: none -'552100': +"552100": installDir: Brick Rigs launch: - config: oslist: windows executable: BrickRigs.exe type: none -'552110': +"552110": installDir: Puzzle Pirates Dark Seas launch: - - arguments: '-Dsun.java2d.d3d=false -jar getdown-dop.jar . client' + - arguments: "-Dsun.java2d.d3d=false -jar getdown-dop.jar . client" config: oslist: windows - executable: java_vm\\bin\\javaw.exe + executable: "java_vm\\\\bin\\\\javaw.exe" type: none - config: oslist: macos executable: run.sh type: none -'552120': +"552120": installDir: Orbit - Playing with Gravity launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: Windows32/Orbit.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: Windows64/Orbit.exe type: default @@ -264593,14 +260149,14 @@ oslist: macos executable: Mac/Orbit.app type: default -'552130': +"552130": installDir: Whiplash - Crash Valley launch: - config: oslist: windows executable: Whiplash_KA1315.exe type: default -'552140': +"552140": installDir: CAGE launch: - config: @@ -264611,15 +260167,15 @@ oslist: macos executable: CAGE_Three_Dimensional_Combat.app type: default -'552150': - installDir: Willi's Haunted Hayride +"552150": + installDir: "Willi's Haunted Hayride" launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: HalloweenProject.exe type: vr -'552160': +"552160": installDir: Hade launch: - config: @@ -264628,37 +260184,37 @@ type: default - config: oslist: windows - ownsdlc: '875410' + ownsdlc: "875410" description: Play Forbidden Levels DLC - executable: hadeForgottenLevels\\hadeForgottenLevels.exe + executable: "hadeForgottenLevels\\\\hadeForgottenLevels.exe" type: none -'552190': +"552190": installDir: Pure Heart launch: - executable: pureheart.exe type: default -'552200': +"552200": installDir: peakvox Mew Mew Chamber launch: - config: oslist: windows executable: MewMewChamber.exe type: default -'552210': +"552210": installDir: peakvox Route Candle launch: - config: oslist: windows executable: RouteCandle.exe type: default -'552220': +"552220": installDir: Invaders! launch: - config: oslist: windows executable: Invaders!.exe type: vr -'552230': +"552230": installDir: Doomsday Survival Training launch: - config: @@ -264666,73 +260222,73 @@ oslist: windows executable: Doomsday Survival.exe type: vr -'552240': +"552240": installDir: Fancy Trangram VR launch: - config: oslist: windows - executable: TangramVR3\\Binaries\\Win64\\TangramVR3-Win64-Shipping.exe + executable: "TangramVR3\\\\Binaries\\\\Win64\\\\TangramVR3-Win64-Shipping.exe" type: vr -'552270': +"552270": installDir: Primitive Road launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: primitiveroad.exe type: vr -'55230': +"55230": installDir: Saints Row the Third launch: - config: oslist: windows - description: 'Saints Row: The Third' + description: "Saints Row: The Third" executable: game_launcher.exe type: default - config: oslist: linux - executable: ./saintsrow3 + executable: "./saintsrow3" type: default - config: oslist: macos executable: SaintsRow3.app type: default -'552300': +"552300": installDir: Soldier Sortie-VR Agent 006 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Soldier Sortie-VR Agent 006.exe type: vr - config: - osarch: '64' + osarch: "64" oslist: windows executable: Soldier Sortie-VR Agent 006.exe type: openvroverlay -'552310': +"552310": installDir: Anguished launch: - config: oslist: windows executable: Game.exe type: default -'552330': - installDir: 'Happy Birthday, Bernard' +"552330": + installDir: "Happy Birthday, Bernard" launch: - config: oslist: windows executable: Bernard Steam.exe type: none -'552340': +"552340": installDir: Danger Room launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: DangerRoom.exe type: vr -'552350': +"552350": installDir: Unhappy Ever After launch: - config: @@ -264741,13 +260297,13 @@ type: default - config: oslist: macos - executable: Game.app\\Contents\\MacOS\\nwjs + executable: "Game.app\\\\Contents\\\\MacOS\\\\nwjs" type: default - config: oslist: linux executable: Unhappy Ever After type: none -'552370': +"552370": installDir: Riders of Asgard launch: - config: @@ -264758,15 +260314,15 @@ oslist: linux executable: RidersOfAsgard.sh type: default -'552380': - installDir: '[ R.U.M.A ]' +"552380": + installDir: "[ R.U.M.A ]" launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ruma.exe type: vr -'552390': +"552390": installDir: Druid launch: - config: @@ -264781,8 +260337,8 @@ oslist: macos executable: Druid.app type: none -'552400': - installDir: Sweep'n'Sweep +"552400": + installDir: "Sweep'n'Sweep" launch: - config: oslist: windows @@ -264796,7 +260352,7 @@ oslist: macos executable: sweep.app type: none -'552410': +"552410": installDir: Project Abyss launch: - config: @@ -264807,206 +260363,200 @@ oslist: macos executable: nw.exe type: default -'552440': +"552440": installDir: The Talos Principle VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Bin/x64/Talos_VR.exe type: vr - config: - osarch: '64' + osarch: "64" oslist: windows description: Play moddable version executable: Bin/x64/Talos_Unrestricted_VR.exe type: vr - arguments: +gfxapi VLK config: - osarch: '64' + osarch: "64" oslist: linux executable: Bin/x64/Talos_VR type: vr - arguments: +gfxapi VLK config: - osarch: '64' + osarch: "64" oslist: linux description: Play moddable version executable: Bin/x64/Talos_Unrestricted_VR type: vr -'552450': +"552450": installDir: Serious Sam VR The First Encounter launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Bin/x64/SamTFE_VR.exe type: vr - arguments: +gfxapi VLK config: - osarch: '64' + osarch: "64" oslist: linux executable: Bin/x64/SamTFE_VR type: vr -'552460': +"552460": installDir: Serious Sam VR The Second Encounter launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Bin/x64/SamTSE_VR.exe type: vr - arguments: +gfxapi VLK config: - osarch: '64' + osarch: "64" oslist: linux executable: Bin/x64/SamTSE_VR type: vr -'552500': +"552500": installDir: Warhammer Vermintide 2 launch: - - arguments: '--bundle-dir ..\\bundle' - executable: launcher\\launcher.exe + - arguments: "--bundle-dir ..\\\\bundle" + executable: "launcher\\\\launcher.exe" type: none - workingdir: launcher\\ - - arguments: '-eac_launcher_settings vermintide2.json' + workingdir: "launcher\\\\" + - arguments: "-eac_launcher_settings vermintide2.json" config: betakey: temporary_launcher_workaround description: Bypass Launcher - executable: launcher\\eac_launcher.exe + executable: "launcher\\\\eac_launcher.exe" type: none - workingdir: launcher\\ - - arguments: '-eac_launcher_settings vermintide2_dx12.json' + workingdir: "launcher\\\\" + - arguments: "-eac_launcher_settings vermintide2_dx12.json" config: betakey: temporary_launcher_workaround description: Bypass Launcher (dx12) - executable: launcher\\eac_launcher.exe + executable: "launcher\\\\eac_launcher.exe" type: none - workingdir: launcher\\ -'552520': + workingdir: "launcher\\\\" +"552520": installDir: FarCry5 launch: - - arguments: '-uplay_steam_mode' + - arguments: "-uplay_steam_mode" config: oslist: windows - ownsdlc: '1716580' + ownsdlc: "1716580" description: Game - description_loc: - english: Game executable: bin/FarCry5.exe type: default workingdir: bin/ - - arguments: '-uplay_steam_mode -pc_input' + - arguments: "-uplay_steam_mode -pc_input" config: betakey: kiv_local oslist: windows description: Profile executable: bin/FCLaunch_p64.exe type: none - - arguments: '-uplay_steam_mode -pc_input' + - arguments: "-uplay_steam_mode -pc_input" config: betakey: kiv_local oslist: windows description: Release executable: bin/FCLaunch_r64.exe type: none - - arguments: '-uplay_steam_mode -pc_input' + - arguments: "-uplay_steam_mode -pc_input" config: betakey: kiv_local oslist: windows description: InGameEditor(retail) executable: bin/ArcadeEditor_rt64.exe type: none - - arguments: '-uplay_steam_mode' + - arguments: "-uplay_steam_mode" config: betakey: kiv_local - osarch: '64' + osarch: "64" oslist: windows description: Retail executable: bin/FCLaunch_rt64.exe type: none - - arguments: '-uplay_steam_mode' + - arguments: "-uplay_steam_mode" config: - osarch: '64' + osarch: "64" oslist: windows - ownsdlc: '1716580' + ownsdlc: "1716580" description: Far Cry® Arcade Editor - description_loc: - english: Far Cry® Arcade Editor executable: bin/ArcadeEditor64.exe type: editor - - arguments: '-upc_steam_free_package_id 59630 -uplay_steam_mode' + - arguments: "-upc_steam_free_package_id 59630 -uplay_steam_mode" config: oslist: windows - ownsdlc: '1716581' + ownsdlc: "1716581" description: Free Weekend - description_loc: - english: Free Weekend executable: bin/FarCry5.exe type: none workingdir: bin/ -'552540': +"552540": installDir: Lotia launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows description: Launch executable: lotia.exe type: none - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: macos executable: Lotia.app type: none -'552550': +"552550": installDir: Space Rift NON-VR - Episode 1 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SpaceRiftNVR.exe type: default -'552570': +"552570": installDir: The New Queen launch: - description: Launch executable: Game.exe type: none -'552580': - installDir: Jade's Journey +"552580": + installDir: "Jade's Journey" launch: - description: Launch executable: Game.exe type: none -'552590': +"552590": installDir: The Sexy Brutale launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: TSB - executable: game\\game.exe + executable: "game\\\\game.exe" type: none workingdir: game -'552600': +"552600": installDir: Outscape launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Outscape.exe type: default -'552610': +"552610": installDir: Ninja Smasher! launch: - executable: NinjaSmasher.exe type: none -'552620': +"552620": installDir: ATOM RPG launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: AtomRPG_x64.exe type: default @@ -265015,36 +260565,32 @@ executable: AtomRPG.app type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: with Vulkan - description_loc: - english: with Vulkan executable: AtomRPG.x86_64 type: default - - arguments: '-force-glcore' + - arguments: "-force-glcore" config: - osarch: '64' + osarch: "64" oslist: linux description: ATOM RPG with OpenGL (safe mode) - description_loc: - english: ATOM RPG with OpenGL (safe mode) executable: AtomRPG.x86_64 type: option2 -'552630': +"552630": installDir: Keep Watching launch: - config: oslist: windows executable: KeepWatching.exe type: vr -'552660': {} -'552670': - installDir: Rite of Passage The Perfect Show Collector's Edition +"552660": {} +"552670": + installDir: "Rite of Passage The Perfect Show Collector's Edition" launch: - executable: RiteOfPassage_ThePerfectShow_CE.exe type: none -'552690': +"552690": installDir: Fantasy Fairways launch: - config: @@ -265057,27 +260603,27 @@ description: Launch executable: Fantasy Fairways OSX.app type: default -'552700': +"552700": installDir: WOFF launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: WOFF.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows description: 設定ツール executable: WOFF_config.exe type: config - config: - betakey: 'master_debug,master_debug_ver1.0.0,test' + betakey: "master_debug,master_debug_ver1.0.0,test" oslist: windows description: debug mode executable: WOFF_dev.exe type: option1 -'552720': +"552720": installDir: Saga of the North Wind launch: - config: @@ -265092,61 +260638,61 @@ oslist: linux executable: SagaOfTheNorthWind type: none -'552780': +"552780": installDir: Dexodonex launch: - config: oslist: windows executable: dexodonex.exe type: default -'552800': +"552800": installDir: Swingin Swiggins launch: - config: oslist: windows - executable: Binaries\\Win32\\UDK.exe + executable: "Binaries\\\\Win32\\\\UDK.exe" type: default -'552870': +"552870": installDir: aMAZEing adventures launch: - - arguments: '-vr' + - arguments: "-vr" config: - osarch: '64' + osarch: "64" oslist: windows executable: AMaze.exe type: vr -'552880': +"552880": installDir: STARDROP launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: STARDROP\\Binaries\\Win64\\STARDROP-Win64-Shipping.exe + executable: "STARDROP\\\\Binaries\\\\Win64\\\\STARDROP-Win64-Shipping.exe" type: default - config: - osarch: '32' + osarch: "32" oslist: windows description: Play STARDROP 32 Bit - executable: STARDROP\\Binaries\\Win32\\STARDROP-Win32-Shipping.exe + executable: "STARDROP\\\\Binaries\\\\Win32\\\\STARDROP-Win32-Shipping.exe" type: default -'552900': +"552900": installDir: Fields XY launch: - config: oslist: windows executable: Fields XY.exe type: default -'552910': +"552910": installDir: World of Tattoo launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: WOT.exe type: default nameLocalized: japanese: 刺青の国 -'552920': +"552920": installDir: Sailaway launch: - config: @@ -265160,73 +260706,73 @@ type: none - config: oslist: windows - ownsdlc: '870640' + ownsdlc: "870640" description: Launch Sailaway World Editor - executable: SailawayWorldEditor\\Sailaway World Editor.exe + executable: "SailawayWorldEditor\\\\Sailaway World Editor.exe" type: none - config: oslist: macos - ownsdlc: '870640' + ownsdlc: "870640" description: Launch Sailaway World Editor executable: SailawayWorldEditor.app type: none -'552940': +"552940": installDir: SnakesNLadders Origins Ep1 launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: .\\SnakesNLadders Origins Ep1\\SnakesNLadders.exe + executable: ".\\\\SnakesNLadders Origins Ep1\\\\SnakesNLadders.exe" type: default -'552960': +"552960": installDir: Fastigium launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: \\SSSubway\\Binaries\\Win64\\SSSubway.exe + executable: "\\\\SSSubway\\\\Binaries\\\\Win64\\\\SSSubway.exe" type: vr -'552970': +"552970": installDir: Sumoman launch: - config: - osarch: '32' + osarch: "32" oslist: windows - executable: bin\\sumoman_x86.exe + executable: "bin\\\\sumoman_x86.exe" type: none - config: - osarch: '64' + osarch: "64" oslist: windows - executable: bin\\sumoman_x64.exe + executable: "bin\\\\sumoman_x64.exe" type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: sumoman_x64.sh type: none - config: - osarch: '64' + osarch: "64" oslist: macos executable: bin/sumoman_x64.macos type: none workingdir: bin/ -'552980': {} -'552990': +"552980": {} +"552990": installDir: World of Warships launch: - config: oslist: windows executable: WorldOfWarships.exe type: default -'553000': +"553000": installDir: Escape Artist The Trial launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: EscapeTheJail.exe type: vr -'553020': +"553020": installDir: Theatre of Doom launch: - config: @@ -265234,81 +260780,81 @@ executable: ToD.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: ToD.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: ToD.x86 type: default -'553030': +"553030": installDir: TilesAndTales launch: - config: oslist: windows executable: TilesAndTales.exe type: default -'553040': +"553040": installDir: BASMENT DWELLERS launch: - config: oslist: windows executable: BASMENT.exe type: default -'553050': +"553050": installDir: Welcome Home Love launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: WHL.exe type: vr -'553100': +"553100": installDir: Timber! The Logging Experts launch: - config: oslist: windows executable: Timber.exe type: default -'553110': +"553110": installDir: Alpine Ski VR launch: - config: oslist: windows executable: AlpineSkiVR.exe type: vr -'553130': +"553130": installDir: Into The Unknown launch: - - arguments: '-windowed' + - arguments: "-windowed" config: oslist: windows executable: Into The Unknown.exe type: default - config: oslist: macos - executable: Into The Unknown.app\\Contents\\MacOS\\Into The Unknown + executable: "Into The Unknown.app\\\\Contents\\\\MacOS\\\\Into The Unknown" type: default -'553140': {} -'553150': +"553140": {} +"553150": installDir: VRDungeon launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: vrdungeonx6.exe type: vr -'553180': {} -'553210': - installDir: 'Warhammer 40,000 Space Wolf' +"553180": {} +"553210": + installDir: "Warhammer 40,000 Space Wolf" launch: - config: oslist: windows executable: SpaceWolf.exe type: none -'553260': +"553260": installDir: Realpolitiks launch: - config: @@ -265316,7 +260862,7 @@ executable: realpolitiks.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: realpolitiks.x86 type: default @@ -265325,11 +260871,11 @@ executable: realpolitiks.app/Contents/MacOS/realpolitiks type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: realpolitiks.x86_64 type: default -'553290': +"553290": installDir: Drift King launch: - config: @@ -265338,12 +260884,12 @@ type: default - config: oslist: macos - executable: DriftKing.app\\Contents\\MacOS\\DriftKing + executable: "DriftKing.app\\\\Contents\\\\MacOS\\\\DriftKing" type: default -'553310': +"553310": installDir: LLBlaze launch: - - arguments: '-desyncinfo' + - arguments: "-desyncinfo" config: oslist: windows executable: LLBlaze.exe @@ -265353,59 +260899,59 @@ executable: LLBlaze.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: LLBlaze.x86_64 type: default -'553320': +"553320": installDir: SYREN launch: - executable: SYREN.exe type: vr - - executable: OculusSDK\\SYREN.exe + - executable: "OculusSDK\\\\SYREN.exe" type: othervr - config: betakey: hh-testing - executable: OculusSDK\\SYREN.exe + executable: "OculusSDK\\\\SYREN.exe" type: othervr -'553330': - installDir: Clutter Infinity Joe's Ultimate Quest +"553330": + installDir: "Clutter Infinity Joe's Ultimate Quest" launch: - config: oslist: windows executable: Clutter7.exe type: none -'553340': +"553340": installDir: Solar Gun launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SolarGun.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: SolarGun.sh type: default - config: - osarch: '64' + osarch: "64" oslist: macos - executable: SolarGun.app\\Contents\\MacOS\\SolarGun14 + executable: "SolarGun.app\\\\Contents\\\\MacOS\\\\SolarGun14" type: default -'553350': +"553350": installDir: Space Ghost Pirate Zombie Slayer launch: - executable: SGPZS.exe type: none -'553410': +"553410": installDir: Pirate Siege launch: - config: oslist: windows executable: PirateDefense.exe type: vr -'553420': +"553420": installDir: TUNIC launch: - config: @@ -265416,22 +260962,22 @@ oslist: macos executable: Tunic.app type: default -'553430': +"553430": installDir: SkillMaster launch: - config: oslist: windows executable: meditation.exe type: vr -'553440': +"553440": installDir: RATS launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: RATS.exe type: default -'553450': +"553450": installDir: The Purge Day launch: - config: @@ -265442,13 +260988,13 @@ oslist: windows executable: ThePurgeDay.exe type: othervr -'553470': +"553470": installDir: Destination Ares launch: - executable: Destination Ares.exe type: default -'553480': - installDir: The Pirate's Fate +"553480": + installDir: "The Pirate's Fate" launch: - config: oslist: windows @@ -265456,31 +261002,31 @@ type: none - config: oslist: macos - executable: Game.app\\Contents\\MacOS\\nwjs + executable: "Game.app\\\\Contents\\\\MacOS\\\\nwjs" type: none - config: oslist: linux executable: game type: none -'553490': +"553490": installDir: Big Game Hunter VR launch: - config: oslist: windows executable: hunting.exe type: vr -'553500': +"553500": installDir: Hex Phase launch: - config: oslist: windows executable: HexPhase.exe type: default -'553520': +"553520": installDir: Trainz Railroad Simulator 2019 launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: TRS19.exe @@ -265488,31 +261034,31 @@ - config: oslist: macos description: Launch - executable: TRS19.app\\Contents\\MacOS\\Trainz Railroad Simulator 2019 + executable: "TRS19.app\\\\Contents\\\\MacOS\\\\Trainz Railroad Simulator 2019" type: none -'553530': +"553530": installDir: TeratiniVR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TeratiniVR.exe type: vr -'553540': +"553540": installDir: Phantom Brigade launch: - config: oslist: windows executable: PhantomBrigade.exe type: default -'553560': +"553560": installDir: The Maestros launch: - config: oslist: windows - executable: Binaries\\Win32\\UDK.exe + executable: "Binaries\\\\Win32\\\\UDK.exe" type: default -'553570': +"553570": installDir: iFactor launch: - config: @@ -265524,16 +261070,16 @@ executable: iFactor.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: iFactor.x86_64 type: default -'553590': +"553590": installDir: Hot Squat launch: - executable: Hot_Squat.exe type: vr -'553610': +"553610": installDir: ArsonVille launch: - config: @@ -265542,13 +261088,13 @@ type: default - config: oslist: macos - executable: ArsonVille.app\\Contents\\MacOS\\ArsonVille + executable: "ArsonVille.app\\\\Contents\\\\MacOS\\\\ArsonVille" type: default - config: oslist: linux executable: ArsonVille type: default -'553630': +"553630": installDir: WipeOut launch: - config: @@ -265557,7 +261103,7 @@ type: vr - executable: game.exe type: none -'553640': +"553640": installDir: ICEY launch: - config: @@ -265566,37 +261112,37 @@ type: config - config: oslist: macos - executable: ICEY.app\\Contents\\MacOS\\ICEY + executable: "ICEY.app\\\\Contents\\\\MacOS\\\\ICEY" type: config nameLocalized: sc_schinese: 艾希 -'553660': +"553660": installDir: PWND launch: - config: betakey: default executable: PWNDClient.exe type: default - - arguments: '-serverAddress=\"https://api-devlatest.pwnd.com\"' + - arguments: "-serverAddress=\\\"https://api-devlatest.pwnd.com\\\"" config: betakey: dev_latest_branch description: Dev LATEST executable: PWNDClient.exe type: option1 - - arguments: '-serverAddress=\"https://api-demo.pwnd.com\"' + - arguments: "-serverAddress=\\\"https://api-demo.pwnd.com\\\"" config: betakey: ext_build executable: PWNDClient.exe type: default -'553680': +"553680": installDir: Hand Eye Cubination launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Final Build V2.2.exe type: vr -'553690': +"553690": installDir: Dustoff Heli Rescue 2 launch: - config: @@ -265624,7 +261170,7 @@ description: Dustoff 2 VR executable: dustoff2.exe type: vr -'553730': +"553730": installDir: Crypt Cards launch: - config: @@ -265633,19 +261179,19 @@ executable: cryptcards.exe type: default - config: - osarch: '64' + osarch: "64" oslist: macos description: OSX Launcher executable: cryptcards.app type: default -'553740': +"553740": installDir: Echo Lake launch: - config: oslist: windows executable: game.exe type: none -'553760': +"553760": installDir: Einlanzer launch: - config: @@ -265658,7 +261204,7 @@ description: Einlanzer - PC Gamepad optimization executable: /PCGamepad/Einlanzer/Einlanzer.exe type: option1 -'553780': +"553780": installDir: ARK BOX Unlimited launch: - config: @@ -265671,22 +261217,22 @@ description: ARK BOX for Linux executable: run.sh type: default -'553790': +"553790": installDir: OIY launch: - config: oslist: windows executable: OIY.exe type: default -'553800': +"553800": installDir: Lunar Stone - ~Origin of Blood~ launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Lunar Stone - Origin of Blood.exe type: vr -'553820': +"553820": installDir: DeathMetal launch: - config: @@ -265701,7 +261247,7 @@ oslist: linux executable: DM.x86 type: none -'553830': +"553830": installDir: 100nya launch: - config: @@ -265710,106 +261256,106 @@ type: default nameLocalized: russian: 100 ня -'553850': {} -'553880': +"553850": {} +"553880": installDir: Archangel launch: - - arguments: '-steam -language=english' + - arguments: "-steam -language=english" description: Hellfire - executable: Hellfire\\Hellfire.exe + executable: "Hellfire\\\\Hellfire.exe" type: vr - - arguments: '-steam -language=english' + - arguments: "-steam -language=english" config: betakey: qa_branch description: Hellfire QA - executable: Hellfire\\Hellfire.exe + executable: "Hellfire\\\\Hellfire.exe" type: vr - - arguments: '-steam -language=english -serverAddress=\"https://aa-stage.sdawsapi.com\"' + - arguments: "-steam -language=english -serverAddress=\\\"https://aa-stage.sdawsapi.com\\\"" config: betakey: stage_branch description: Hellfire Stage - executable: Hellfire\\Hellfire.exe + executable: "Hellfire\\\\Hellfire.exe" type: vr - config: betakey: ext_branch description: LBE branch executable: Archangel.exe type: vr - - arguments: '-steam -serverAddress=\"https://aa-demo.sdawsapi.com\"' + - arguments: "-steam -serverAddress=\\\"https://aa-demo.sdawsapi.com\\\"" config: betakey: press_channel description: Hellfire Demo - executable: Hellfire\\Hellfire.exe + executable: "Hellfire\\\\Hellfire.exe" type: vr - - arguments: '-steam' + - arguments: "-steam" config: betakey: lbe_branch description: Hellfire LBE Branch executable: Hellfire.exe type: vr - - arguments: '-steam -language=english' + - arguments: "-steam -language=english" config: betakey: dev_branch description: Hellfire Dev - Steam VR - executable: Hellfire\\Hellfire.exe + executable: "Hellfire\\\\Hellfire.exe" type: vr -'553910': +"553910": installDir: Mystic Defense launch: - config: oslist: windows executable: MysticDefense.exe type: none -'553940': {} -'553950': +"553940": {} +"553950": installDir: GRIDD Retroenhanced launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Gridd3.exe type: default - config: - osarch: '64' + osarch: "64" oslist: macos executable: Gridd3.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Gridd3.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: Gridd3.exe type: default - config: - osarch: '32' + osarch: "32" oslist: macos executable: Gridd3.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Gridd3.x86 type: default -'553960': +"553960": installDir: Husk launch: - config: oslist: windows - executable: Husk\\Binaries\\Win64\\Husk-Win64-Shipping.exe + executable: "Husk\\\\Binaries\\\\Win64\\\\Husk-Win64-Shipping.exe" type: none -'554140': +"554140": installDir: DesertRideCoaster launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: RCT.exe type: vr -'554150': +"554150": installDir: FrequentFlyer launch: - config: @@ -265829,7 +261375,7 @@ description: Frequent Flyer (alternative launch) executable: rungame.bat type: option1 -'554180': +"554180": installDir: Pale Spectrum - Part Two of the Book of Gray Magic launch: - config: @@ -265844,36 +261390,36 @@ oslist: macos executable: Pale Spectrum.app type: default -'554220': +"554220": installDir: Oafmatch launch: - config: oslist: windows executable: Binaries/Win32/Oafmatch.exe type: none -'554280': +"554280": installDir: Time Carnage launch: - - arguments: '-platform OpenVR' + - arguments: "-platform OpenVR" config: - osarch: '64' + osarch: "64" oslist: windows executable: TimeCarnage.exe type: vr - - arguments: '-platform Oculus' + - arguments: "-platform Oculus" config: - osarch: '64' + osarch: "64" oslist: windows executable: TimeCarnage.exe type: othervr -'554290': +"554290": installDir: Himawari - The Sunflower - launch: - executable: Himawari.exe type: default nameLocalized: schinese: 向日葵-天空鹅卵石 -'554310': +"554310": installDir: Rage Wars launch: - config: @@ -265887,18 +261433,18 @@ executable: RageWars.app type: none - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: RageWars.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: RageWars.x86_64 type: none -'554330': +"554330": installDir: Choppa launch: - config: @@ -265910,21 +261456,21 @@ executable: choppa.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: choppa.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: choppa.x86_64 type: default -'554470': +"554470": installDir: BladeShield launch: - executable: BladeShield.exe type: vr -'554510': +"554510": installDir: TheGolfClub2 launch: - arguments: Server=AWS @@ -265933,11 +261479,11 @@ description: Launch executable: golf.exe type: none - - arguments: '-show-screen-selector Server=AWS' + - arguments: "-show-screen-selector Server=AWS" description: Launch Options executable: golf.exe type: none -'554530': +"554530": installDir: CRACKHEAD launch: - config: @@ -265946,35 +261492,35 @@ type: default - config: oslist: linux - executable: ./CRACKHEAD + executable: "./CRACKHEAD" type: default -'554550': +"554550": installDir: A Haunting Witching Hour launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: A Haunting Witching Hour.exe type: vr - config: - osarch: '64' + osarch: "64" oslist: windows executable: A Haunting Witching Hour.exe type: default -'554560': - installDir: Amaranthine Voyage The Tree of Life Collector's Edition +"554560": + installDir: "Amaranthine Voyage The Tree of Life Collector's Edition" launch: - executable: AmaranthineVoyage_TreeOfLife_CE.exe type: none -'554570': +"554570": installDir: Dreamtime launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Dreamtime.exe type: default -'554590': +"554590": installDir: Little Kingdom 2 launch: - config: @@ -265989,21 +261535,21 @@ oslist: linux executable: Little Kingdom 2.exe type: none -'554600': +"554600": installDir: Learn Japanese To Survive! Katakana War launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows executable: nw.exe type: default - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: macos executable: nwjs.app type: default -'554610': {} -'554620': +"554610": {} +"554620": installDir: Life is Strange - Before the Storm launch: - config: @@ -266011,7 +261557,7 @@ executable: Life is Strange - Before the Storm.exe type: default - config: - betakey: 'hardware_amd,hardware_nvidia,e3-build' + betakey: "hardware_amd,hardware_nvidia,e3-build" oslist: windows description: Older exe name executable: dawn.exe @@ -266024,7 +261570,7 @@ oslist: linux executable: launch.sh type: default -'554640': +"554640": installDir: Rescue the Great Demon 2 launch: - config: @@ -266036,11 +261582,11 @@ executable: Rescue_the_Great_Demon2 type: default - config: - osarch: '64' + osarch: "64" oslist: macos - executable: Rescue_the_Great_Demon2.app\\Contents\\MacOS\\Rescue_the_Great_Demon2 + executable: "Rescue_the_Great_Demon2.app\\\\Contents\\\\MacOS\\\\Rescue_the_Great_Demon2" type: default -'554660': +"554660": installDir: Puzzle Poker launch: - config: @@ -266048,7 +261594,7 @@ description: Launch executable: puzzlePoker.exe type: default -'554670': +"554670": installDir: Infektor launch: - config: @@ -266059,29 +261605,29 @@ oslist: macos executable: Infektor.app/Contents/MacOS/Infektor type: default -'554680': +"554680": installDir: CrazySaloonVR launch: - config: oslist: windows executable: CrazySaloonVr.exe type: vr -'554690': +"554690": installDir: Rotation Phonology Break launch: - config: oslist: windows executable: RP Break.exe type: default -'554700': +"554700": installDir: Viking Escape launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: VikingEscape.exe type: vr -'554710': +"554710": installDir: Spell Cast launch: - config: @@ -266092,8 +261638,8 @@ oslist: macos executable: SpellCastMacos.app type: default -'554720': {} -'554750': +"554720": {} +"554750": installDir: Axis Football 2017 launch: - config: @@ -266111,20 +261657,20 @@ description: Launch executable: Axis Football 2017.app type: default -'554770': +"554770": installDir: Heavily Armed launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: HA.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: HA.exe type: default -'554800': +"554800": installDir: Masky launch: - config: @@ -266139,29 +261685,29 @@ oslist: linux executable: Masky.x86 type: none -'554810': +"554810": installDir: The Wild Eternal launch: - config: oslist: windows executable: the_wild_eternal_win32.exe type: default -'554870': +"554870": installDir: SUPERHYPERCUBE launch: - config: oslist: windows executable: SHCVR.exe type: vr -'554900': {} -'554920': +"554900": {} +"554920": installDir: 0 Day launch: - config: oslist: windows executable: 0day.exe type: vr -'554940': +"554940": installDir: VR Apocalypse launch: - executable: vr_apocalypse.exe @@ -266170,44 +261716,44 @@ oslist: windows executable: vr_apocalypse.exe type: vr -'555000': +"555000": installDir: Goat of Duty launch: - - arguments: '-fullscreen' + - arguments: "-fullscreen" config: - osarch: '64' + osarch: "64" oslist: windows executable: GoatOfDuty.exe type: default -'555010': +"555010": installDir: M.E.R.C launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: MERC.exe type: default -'555040': +"555040": installDir: Fan Fun launch: - config: oslist: windows executable: FanFun3D.exe type: config -'555050': +"555050": installDir: Racket Fury launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: RacketFury.exe type: vr - config: - osarch: '64' + osarch: "64" oslist: windows executable: RacketFuryOculus.exe type: othervr -'555060': +"555060": installDir: Final Soccer launch: - arguments: VIVE @@ -266222,23 +261768,23 @@ description: OCULUS executable: FinalSoccer.exe type: othervr -'555080': +"555080": installDir: Isyium launch: - config: oslist: windows executable: isyium.exe type: default -'555090': {} -'555100': {} -'555130': +"555090": {} +"555100": {} +"555130": installDir: Sonic Hunter VR launch: - config: oslist: windows executable: SonicHunter.exe type: vr -'555150': +"555150": installDir: The First Tree launch: - config: @@ -266250,33 +261796,33 @@ executable: TheFirstTree.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: TheFirstTree.x86_64 type: default -'555160': +"555160": installDir: PavlovVR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Pavlov.exe type: vr - - arguments: '-OculusNative' + - arguments: "-OculusNative" config: - osarch: '64' + osarch: "64" oslist: windows executable: Pavlov.exe type: othervr -'555170': +"555170": installDir: OneManVurgeR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: OneManVurgeR.exe type: vr -'555180': +"555180": installDir: InfinitasDM launch: - config: @@ -266287,7 +261833,7 @@ oslist: macos executable: InfinitasDM.app/Contents/MacOS/InfinitasDM type: none -'555210': +"555210": installDir: Trick and Treat launch: - config: @@ -266302,7 +261848,7 @@ oslist: linux executable: Trick and Treat.sh type: none -'555220': +"555220": installDir: Detention launch: - config: @@ -266320,29 +261866,29 @@ nameLocalized: schinese: 返校 tchinese: 返校 -'555230': +"555230": installDir: The table at war VR launch: - config: oslist: windows executable: thetableatwar.exe type: vr -'555260': +"555260": installDir: TheButterflySignHE launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: tbs2\\W3_2\\Binaries\\Win64\\W3_2.exe + executable: "tbs2\\\\W3_2\\\\Binaries\\\\Win64\\\\W3_2.exe" type: default -'555280': +"555280": installDir: MACE launch: - config: oslist: windows executable: MACE_Windows.exe type: default -'555290': +"555290": installDir: Little Briar Rose launch: - config: @@ -266351,19 +261897,19 @@ type: default - config: oslist: macos - executable: lbr.app\\Contents\\MacOS\\lbr + executable: "lbr.app\\\\Contents\\\\MacOS\\\\lbr" type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: lbr.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: lbr.x86_64 type: default -'555310': +"555310": installDir: Satellite launch: - config: @@ -266380,25 +261926,25 @@ type: default - config: oslist: windows - ownsdlc: '905990' + ownsdlc: "905990" description: Satellite OST executable: SatelliteOST-market/SatelliteOST.exe type: option1 - config: oslist: linux - ownsdlc: '905990' + ownsdlc: "905990" description: Satellite OST executable: SatelliteOST-market/SatelliteOST.sh type: option1 - config: oslist: macos - ownsdlc: '905990' + ownsdlc: "905990" description: Satellite OST executable: SatelliteOST-market/SatelliteOST.app type: option1 nameLocalized: russian: Сателлит -'555320': +"555320": installDir: Never give up launch: - config: @@ -266416,14 +261962,14 @@ description: lin launch executable: Never_give_up.sh type: default -'555340': +"555340": installDir: Bitlogic launch: - config: oslist: windows executable: Bitlogic.exe type: none -'555370': +"555370": installDir: 1812 The Invasion of Canada launch: - config: @@ -266431,52 +261977,52 @@ executable: 1812.exe type: default - config: - osarch: '64' + osarch: "64" oslist: macos executable: 1812.app type: default -'555400': +"555400": installDir: CollisionCourse launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: bin/win_x64/CollisionCourse.exe type: default -'555410': +"555410": installDir: Hearts of Chaos launch: - description: Launch executable: Game.exe type: none -'555430': {} -'555440': +"555430": {} +"555440": installDir: DEATHGARDEN launch: - description: Default executable: Deathgarden.exe type: none -'555450': +"555450": installDir: Deus Ex Breach launch: - config: oslist: windows - executable: retail\\DXB.exe + executable: "retail\\\\DXB.exe" type: none - - arguments: '-launcher' + - arguments: "-launcher" config: oslist: windows - ownsdlc: '562070' + ownsdlc: "562070" description: Release - executable: release\\engine.exe + executable: "release\\\\engine.exe" type: none - config: oslist: windows - ownsdlc: '562070' + ownsdlc: "562070" description: Gamerelease - executable: gamerelease\\engine.exe + executable: "gamerelease\\\\engine.exe" type: none -'555510': +"555510": installDir: MachiaVillain launch: - config: @@ -266488,42 +262034,38 @@ executable: Default Mac desktop Universal.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: MachiaVillain_Linux.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: MachiaVillain_Linux.x86_64 type: none -'555520': - installDir: Riddles of Fate Wild Hunt Collector's Edition +"555520": + installDir: "Riddles of Fate Wild Hunt Collector's Edition" launch: - executable: RiddlesOfFate_WildHuntCE.exe type: none -'555570': +"555570": installDir: NewZ launch: - - arguments: '-steam -fupd' + - arguments: "-steam -fupd" config: betakey: default oslist: windows - description: 'Start Infestation: New Z Normally' - description_loc: - english: 'Start Infestation: New Z Normally' + description: "Start Infestation: New Z Normally" executable: InfestationLauncher.exe type: default - - arguments: '-steam -fupd -beta' + - arguments: "-steam -fupd -beta" config: betakey: beta oslist: windows - description: 'Infestation: New Z Beta Test' - description_loc: - english: 'Infestation: New Z Beta Test' + description: "Infestation: New Z Beta Test" executable: InfestationLauncher.exe type: option1 -'555580': +"555580": installDir: The Legend of Dark Witch 2 launch: - config: @@ -266534,12 +262076,12 @@ japanese: 魔神少女 エピソード2 -願いへの代価- schinese: 魔神少女 Episode 2 -願望的代價- tchinese: 魔神少女 Episode 2 -願望的代價- -'555600': +"555600": installDir: HopalongBadlands launch: - executable: Hopalong.exe type: vr -'555610': +"555610": installDir: Gunmetal Arcadia Zero launch: - config: @@ -266557,21 +262099,21 @@ description: Launch executable: GunPreq_NFML type: none -'555620': {} -'555630': +"555620": {} +"555630": installDir: A Magical High School Girl launch: - executable: majo.exe type: default -'555640': +"555640": installDir: Japanese School Life Trial launch: - config: oslist: windows executable: JAPANESE SCHOOL LIFE.exe type: default -'555650': - installDir: 'Love, Guitars, and the Nashville Skyline' +"555650": + installDir: "Love, Guitars, and the Nashville Skyline" launch: - config: oslist: windows @@ -266581,23 +262123,23 @@ oslist: linux executable: LGN.sh type: none -'555660': +"555660": installDir: TheRakeRedForest launch: - config: oslist: windows executable: TheRakeRedForest.exe type: default -'555670': +"555670": installDir: Infinitum launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Infinitum.exe type: default -'555700': {} -'555710': +"555700": {} +"555710": installDir: Zolg launch: - config: @@ -266608,7 +262150,7 @@ oslist: macos executable: Zolg.app type: default -'555720': +"555720": installDir: Grave Danger launch: - config: @@ -266620,23 +262162,23 @@ executable: GraveDanger.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: GraveDanger.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: GraveDanger.x86 type: default -'555730': +"555730": installDir: Robot City Stadium launch: - config: oslist: windows executable: Robot City Stadium.exe type: vr -'555750': +"555750": installDir: Masked Forces launch: - config: @@ -266650,24 +262192,24 @@ type: none - config: oslist: windows - ownsdlc: '923290' + ownsdlc: "923290" description: Masked Forces Crazy Mode DLC executable: CrazyMode/MaskedForcesCrazyMode.exe type: option2 -'555760': {} -'555820': +"555760": {} +"555820": installDir: Grim Facade Mystery of Venice Collector’s Edition launch: - executable: GrimFacade_MysteryOfVeniceCE.exe type: none -'555830': +"555830": installDir: Vecitas launch: - config: oslist: windows executable: Vecitas.exe type: default -'555850': +"555850": installDir: Galactic Landing launch: - config: @@ -266677,103 +262219,103 @@ - config: oslist: macos description: Launch - executable: Galactic Landing.app\\Contents\\MacOS\\Galactic Landing + executable: "Galactic Landing.app\\\\Contents\\\\MacOS\\\\Galactic Landing" type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Galactic Landing.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Galactic Landing.x86_64 type: default -'555880': +"555880": installDir: Sairento VR launch: - config: oslist: windows executable: SairentoVR.exe type: vr -'555890': +"555890": installDir: Burgers 2 launch: - config: oslist: windows executable: Burgers 2.exe type: default -'555920': +"555920": installDir: Dark Egypt launch: - config: oslist: windows executable: Dark Egypt.exe type: none -'555930': +"555930": installDir: Madness launch: - config: oslist: windows executable: Madness.exe type: default -'555940': {} -'555950': +"555940": {} +"555950": installDir: Danganronpa Another Episode Ultra Despair Girls launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: game.exe type: default nameLocalized: japanese: 絶対絶望少女 ダンガンロンパ Another Episode -'555970': +"555970": installDir: Awaken launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Awaken.exe type: vr -'555980': {} -'556000': +"555980": {} +"556000": installDir: Gold Crusader launch: - config: oslist: windows executable: GoldCrusader.exe type: none -'556010': {} -'556050': +"556010": {} +"556050": installDir: Hyper Jam launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: HyperJam\\Binaries\\Win64\\HyperJamSteam.exe + executable: "HyperJam\\\\Binaries\\\\Win64\\\\HyperJamSteam.exe" type: default -'556060': +"556060": installDir: Detective Gallo launch: - config: oslist: windows executable: Detective Gallo.exe type: none -'556070': {} -'556090': +"556070": {} +"556090": installDir: FIGHTING SPACE launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch Fighting Space executable: nw.exe type: default -'556110': {} -'556120': {} -'556130': - installDir: 'Drones, The Human Condition' +"556110": {} +"556120": {} +"556130": + installDir: "Drones, The Human Condition" launch: - config: oslist: windows @@ -266783,27 +262325,27 @@ oslist: linux executable: DTHC_Game type: default -'556140': +"556140": installDir: We are Stars launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: We are Stars.exe type: vr -'556160': +"556160": installDir: PHAT STACKS launch: - executable: game.exe type: none -'556180': +"556180": installDir: Mysterium launch: - config: oslist: windows executable: Mysterium.exe type: default -'556190': +"556190": installDir: Seven Seas Solitaire launch: - config: @@ -266814,20 +262356,20 @@ oslist: macos executable: Seven Seas Solitaire.app type: default -'556200': +"556200": installDir: BlueCrystal launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: BlueCrystal.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: BlueCrystal.exe type: default -'556230': +"556230": installDir: OffRoad_Paradise launch: - arguments: NoVR @@ -266840,28 +262382,28 @@ description: Virtual Reality executable: OffRoad.exe type: openvroverlay -'556240': +"556240": installDir: Disoriented launch: - config: oslist: windows executable: Disoriented.exe type: default -'556250': +"556250": installDir: Final Core launch: - config: oslist: windows executable: final_core.exe type: none -'556260': - installDir: Gil's Lucid Dreams +"556260": + installDir: "Gil's Lucid Dreams" launch: - config: oslist: windows - executable: Gil's Lucid Dreams.exe + executable: "Gil's Lucid Dreams.exe" type: config -'556280': +"556280": installDir: Neon Prism launch: - config: @@ -266872,18 +262414,18 @@ oslist: macos executable: NeonPrism.app type: default -'556300': +"556300": installDir: Age of Farming launch: - config: oslist: windows executable: aof.exe type: none -'556310': +"556310": installDir: TMM Entourage launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TMMEntourage64.exe type: default @@ -266895,44 +262437,44 @@ oslist: macos executable: TMMEntourage64.app type: default -'556340': +"556340": installDir: King Kaiju launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: KingKaiju.exe type: vr -'556440': +"556440": installDir: ViciousCircle launch: - config: oslist: windows executable: ViciousCircle.exe type: default -'556480': +"556480": installDir: Rugby League Live 4 launch: - executable: rll4.exe type: none -'556490': {} -'556520': +"556490": {} +"556520": installDir: Housekeeping VR launch: - config: oslist: windows executable: HK_14_01.exe type: vr -'556530': +"556530": installDir: Faerie Solitaire Dire launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: FaerieSolitaireDire.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: FaerieSolitaireDire.x86_64 type: default @@ -266940,69 +262482,69 @@ oslist: macos executable: Faerie Solitaire Dire.app/Contents/MacOS/FaerieSolitaireDire type: default -'556540': +"556540": installDir: Pyramid 2016 VR launch: - config: oslist: windows executable: PyramidVR.exe type: vr -'556550': +"556550": installDir: Betrayal At Calth launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Calth.exe type: vr - config: - osarch: '64' + osarch: "64" oslist: windows executable: Calth.exe type: default -'556640': +"556640": installDir: GladiusVR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: GladiusVR.exe type: vr -'556680': +"556680": installDir: INTRUDER - WAR AREAS launch: - config: oslist: windows executable: INTRUDER - WAR AREAS.exe type: default -'556700': +"556700": installDir: Heavy Impact launch: - config: oslist: windows executable: HeavyImpact.exe type: vr -'556710': +"556710": installDir: Marrow launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: MarrowWind64.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: MarrowWind32.exe type: default -'556720': +"556720": installDir: Off-Road Super Racing launch: - config: oslist: windows executable: game.exe type: default -'556740': +"556740": installDir: Legrand Legacy launch: - config: @@ -267011,27 +262553,27 @@ type: none nameLocalized: schinese: 罗格朗的遗产:命运之歌 -'556770': +"556770": installDir: Star Phoenix launch: - config: oslist: windows executable: Star_Phoenix_PC.exe type: vr -'556780': +"556780": installDir: Neptune Arena FPS launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: /Neptune/Binaries/Win64/Neptune-Win64-Shipping.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: /Neptune/Binaries/Win32/Neptune-Win32-Shipping.exe type: default -'556820': +"556820": installDir: WarbandsBushido launch: - config: @@ -267040,53 +262582,53 @@ type: none - config: oslist: macos - executable: WarbandsBushido.app\\Contents\\MacOS\\WarbandsBushido + executable: "WarbandsBushido.app\\\\Contents\\\\MacOS\\\\WarbandsBushido" type: none - config: oslist: linux executable: Bushido.x86 type: none -'556830': +"556830": installDir: GemWars launch: - config: oslist: windows executable: GemWars.exe type: vr -'556840': +"556840": installDir: The Dome Fight Back launch: - config: oslist: windows executable: FightBack.exe type: default -'556860': +"556860": installDir: Gladiator School launch: - config: oslist: windows executable: gladiatorschool.exe type: default -'556870': - installDir: Charlie's Adventure +"556870": + installDir: "Charlie's Adventure" launch: - config: oslist: windows - executable: Charlie's Adventure.exe + executable: "Charlie's Adventure.exe" type: default - config: - osarch: '64' + osarch: "64" oslist: macos - executable: Charlie's Adventure.app + executable: "Charlie's Adventure.app" type: default -'556890': +"556890": installDir: Dreamcage Escape launch: - config: oslist: windows executable: game.exe type: default -'556920': +"556920": installDir: Equilibrium Of Divinity launch: - config: @@ -267097,7 +262639,7 @@ oslist: linux executable: eod.x86_64 type: none -'556960': +"556960": installDir: Lost Wing launch: - config: @@ -267112,7 +262654,7 @@ oslist: linux executable: LostWing.x86_64 type: default -'556990': +"556990": installDir: Rage Against The Zombies launch: - config: @@ -267121,9 +262663,9 @@ type: default - config: oslist: macos - executable: RATZ.app\\Contents\\MacOS\\RATZ + executable: "RATZ.app\\\\Contents\\\\MacOS\\\\RATZ" type: default -'557030': +"557030": installDir: Avenger Bird launch: - config: @@ -267131,12 +262673,12 @@ executable: Bird.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Bird.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Bird.x86_64 type: default @@ -267144,54 +262686,54 @@ oslist: macos executable: Bird.app/Contents/MacOS/Bird type: default -'557040': +"557040": installDir: 99Vidas - The Game launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: 99VidasGame_x86.exe type: default - config: oslist: macos - executable: 99VidasGame.app\\Contents\\MacOS\\99VidasGame + executable: "99VidasGame.app\\\\Contents\\\\MacOS\\\\99VidasGame" type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: 99VidasGame.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: 99VidasGame.x86_64 type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: 99VidasGame.exe type: default -'557180': +"557180": installDir: League of Maidens launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Private Alpha Build executable: LOM.exe type: default -'557190': +"557190": installDir: BuildMoreCubes launch: - config: oslist: windows - executable: system\\BuildMoreCubes.exe + executable: "system\\\\BuildMoreCubes.exe" type: default - workingdir: system\\ -'557240': + workingdir: "system\\\\" +"557240": installDir: Afterlife launch: - - arguments: '-conf \"..\\dosbox_afterlife.conf\" -conf \"..\\dosbox_afterlife_single.conf\" -noconsole -c exit' + - arguments: "-conf \\\"..\\\\dosbox_afterlife.conf\\\" -conf \\\"..\\\\dosbox_afterlife_single.conf\\\" -noconsole -c exit" config: oslist: windows description: Play Afterlife @@ -267203,15 +262745,15 @@ description: Play Afterlife executable: Afterlife.app type: none -'557260': +"557260": installDir: iREC launch: - config: oslist: windows executable: iREC.exe type: default -'557320': {} -'557330': +"557320": {} +"557330": installDir: SystemHack launch: - config: @@ -267219,14 +262761,14 @@ oslist: windows executable: System_Hack.exe type: default -'557340': +"557340": installDir: My Friend Pedro launch: - config: oslist: windows executable: My Friend Pedro - Blood Bullets Bananas.exe type: none -'557400': +"557400": installDir: Midas Gold Plus launch: - config: @@ -267237,24 +262779,24 @@ oslist: macos executable: Midas Gold Plus.app type: none -'557410': +"557410": installDir: Dream Quest launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: Win32.exe type: none - config: - osarch: '64' + osarch: "64" oslist: windows executable: Windows64.exe type: none - config: oslist: macos - executable: Mac.app\\Contents\\MacOS\\Mac + executable: "Mac.app\\\\Contents\\\\MacOS\\\\Mac" type: none -'557420': +"557420": installDir: Kamio Recoil launch: - config: @@ -267265,22 +262807,22 @@ oslist: windows executable: Config.exe type: config -'557460': +"557460": installDir: ToledoVR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: toledovr.exe type: vr -'557520': +"557520": installDir: Torn launch: - config: oslist: windows executable: Torn.exe type: vr -'557570': +"557570": installDir: Able Black launch: - config: @@ -267291,7 +262833,7 @@ oslist: windows executable: AbleBlack.exe type: default -'557580': +"557580": installDir: Ancient Guardian launch: - config: @@ -267302,7 +262844,7 @@ oslist: macos executable: AncientGuardian.app type: default -'557600': +"557600": installDir: Gorogoa launch: - config: @@ -267313,29 +262855,29 @@ oslist: macos executable: Gorogoa.app type: default -'557630': +"557630": installDir: Hello Charlotte launch: - config: oslist: windows executable: Game.exe type: default -'557670': +"557670": installDir: SpookyNight launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: spookynight.exe type: vr -'557680': +"557680": installDir: Germ Wars launch: - config: oslist: windows executable: Germ Wars.exe type: default -'557700': +"557700": installDir: Empyrean launch: - config: @@ -267350,74 +262892,74 @@ oslist: linux executable: Empyrean type: none -'557720': - installDir: Love Chronicles The Spell Collector's Edition +"557720": + installDir: "Love Chronicles The Spell Collector's Edition" launch: - executable: Love Chronicles - The Spell.exe type: none -'557730': +"557730": installDir: IHateSanta launch: - config: oslist: windows executable: IhateSanta.exe type: vr -'557750': +"557750": installDir: Giants Citizen Kabuto launch: - executable: Launch Giants.bat type: default -'557760': +"557760": installDir: Of Light and Darkness launch: - executable: Launch Of Light and Darkness.bat type: default -'557770': +"557770": installDir: Pawn launch: - - arguments: '-windowed' + - arguments: "-windowed" config: oslist: windows executable: nw.exe type: default -'557780': +"557780": installDir: AF2 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: AFCGame.exe type: default -'557790': +"557790": installDir: Goblet of Maya launch: - config: oslist: windows executable: Goblet of Maya.exe type: default -'557810': +"557810": installDir: Clicker Guild launch: - config: oslist: windows executable: guild.exe type: default -'557830': +"557830": installDir: My Pet Rock launch: - config: betakey: mprbeta executable: My Pet Rock.exe type: default -'557850': +"557850": installDir: Magnificent Ships - Volume 1 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Magnificent Ships - Volume 1.exe type: vr -'557860': +"557860": installDir: Azurea Juncture launch: - config: @@ -267432,14 +262974,14 @@ oslist: linux executable: Azurea_Juncture.sh type: default -'557880': +"557880": installDir: Say Goodbye launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" executable: nw.exe type: none -'557890': - installDir: Sunset's Ashes +"557890": + installDir: "Sunset's Ashes" launch: - config: oslist: windows @@ -267453,7 +262995,7 @@ oslist: linux executable: SunsetsAshes.x86 type: default -'557940': +"557940": installDir: The Muybridge Mausoleum launch: - config: @@ -267461,15 +263003,15 @@ description: Play executable: Muybridge_Mausoleum.exe type: vr -'557960': +"557960": installDir: Beach Bowling Dream VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Beach Bowling Dream VR.exe type: vr -'557970': +"557970": installDir: Teria launch: - config: @@ -267478,45 +263020,45 @@ type: default - config: oslist: macos - executable: Teria for OSX\\Teria.app\\Contents\\MacOS\\Teria + executable: "Teria for OSX\\\\Teria.app\\\\Contents\\\\MacOS\\\\Teria" type: default -'558010': +"558010": installDir: REVIVAL RESET launch: - config: oslist: windows executable: REVIVAL_RESET.exe type: none -'558020': +"558020": installDir: JETPACK PORTER launch: - config: oslist: windows executable: JetpackPorter.exe type: default -'558030': +"558030": installDir: ROBUST ROAD ROLLER launch: - config: oslist: windows executable: RoadRoller.exe type: default -'558050': +"558050": installDir: Princess Kidnapper VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Princess Kidnapper.exe type: vr -'558060': +"558060": installDir: Candy Island launch: - config: oslist: windows executable: candy_island.exe type: vr -'558100': +"558100": installDir: ArtOfWar launch: - config: @@ -267526,10 +263068,10 @@ - config: oslist: windows description: Select this if you encountered error 104 - executable: game\\u1game.exe + executable: "game\\\\u1game.exe" type: none - workingdir: game\\ -'558110': + workingdir: "game\\\\" +"558110": installDir: Odyssey - The Next Generation Science Game launch: - config: @@ -267538,19 +263080,19 @@ type: default - config: oslist: macos - executable: Odyssey_Mac.app\\Contents\\MacOS\\Odyssey_Mac + executable: "Odyssey_Mac.app\\\\Contents\\\\MacOS\\\\Odyssey_Mac" type: default -'558230': +"558230": installDir: Elsword (Anime MMO) launch: - arguments: steam executable: steam_launcher.exe type: none -'558260': +"558260": installDir: Gravel launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: gravel.exe type: default @@ -267559,18 +263101,18 @@ executable: Gravel.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux - executable: ./gravel.run + executable: "./gravel.run" type: default -'558320': +"558320": installDir: amongtheinnocent launch: - config: oslist: windows executable: AmongTheInnocent.exe type: default -'558340': +"558340": installDir: Faces of Illusion The Twin Phantoms launch: - config: @@ -267579,13 +263121,13 @@ executable: FacesOfIllusion.exe type: none - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: FacesOfIllusion_i386 type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: FacesOfIllusion_amd64 @@ -267595,7 +263137,7 @@ description: Launch executable: mac_steam.app/Contents/MacOS/mac_steam type: none -'558410': +"558410": installDir: Cannonfire Concerto launch: - config: @@ -267610,16 +263152,16 @@ oslist: linux executable: CannonfireConcerto type: none -'558420': +"558420": installDir: Stories Untold launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: Stories Untold.exe type: none - config: - osarch: '64' + osarch: "64" oslist: windows executable: Stories Untold.exe type: none @@ -267627,14 +263169,14 @@ oslist: macos executable: Stories Untold 1.3 OSX 64 Steam/Stories Untold OSX 64 Steam.app type: none -'558440': +"558440": installDir: The Night Christmas Ended launch: - config: oslist: windows executable: The Night Christmas Ended.exe type: default -'558450': +"558450": installDir: Fibrillation HD launch: - config: @@ -267645,7 +263187,7 @@ oslist: linux executable: Fibrillation HD.x86 type: default -'558490': +"558490": installDir: Crossroad Mysteries The Broken Deal launch: - config: @@ -267660,7 +263202,7 @@ oslist: macos executable: Game.app type: default -'558600': +"558600": installDir: Beyond Despair launch: - config: @@ -267669,39 +263211,39 @@ type: default - config: betakey: testbranch - osarch: '64' + osarch: "64" oslist: windows description: Updated executable: start.bat type: option1 -'558610': {} -'558620': {} -'558650': +"558610": {} +"558620": {} +"558650": installDir: StarKingdom launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: CelestialClock.exe type: vr -'558660': - installDir: it's always monday +"558660": + installDir: "it's always monday" launch: - config: oslist: windows - executable: it's always monday.exe + executable: "it's always monday.exe" type: none -'558670': - installDir: The Agency of Anomalies Cinderstone Orphanage Collector's Edition +"558670": + installDir: "The Agency of Anomalies Cinderstone Orphanage Collector's Edition" launch: - executable: The Agency of Anomalies 2 CE.exe type: none -'558680': +"558680": installDir: KYOTO TANOJI QUEST launch: - executable: KyotoTanojiQuest.exe type: default -'558720': +"558720": installDir: Tribal Siege launch: - config: @@ -267712,22 +263254,22 @@ oslist: macos executable: TribalSiege.app type: default -'558740': +"558740": installDir: Work VR Shop launch: - config: oslist: windows executable: Work VR Shop.exe type: vr -'558750': +"558750": installDir: GoaltenderVR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: goaltender.exe type: vr -'558780': +"558780": installDir: Sonya The Great Adventure launch: - config: @@ -267738,7 +263280,7 @@ oslist: macos executable: Sonya Steam.app type: none -'558790': +"558790": installDir: QueensQuest2 launch: - config: @@ -267747,13 +263289,13 @@ executable: QueensQuest2.exe type: none - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: QueensQuest2_i386 type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: QueensQuest2_amd64 @@ -267763,8 +263305,8 @@ description: Launch executable: mac_steam.app/Contents/MacOS/mac_steam type: none -'558810': {} -'558850': +"558810": {} +"558850": installDir: Children of Colossus launch: - config: @@ -267775,15 +263317,15 @@ oslist: windows executable: ChildrenOfColossus.exe type: othervr -'558870': +"558870": installDir: Club Naughty launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ClubNaughty.exe type: default -'558990': +"558990": installDir: Opus Magnum launch: - config: @@ -267801,14 +263343,14 @@ description: Launch executable: Lightning type: default -'559010': +"559010": installDir: Cosmic Sugar VR launch: - config: oslist: windows executable: CosmicSugar.exe type: vr -'559030': +"559030": installDir: Siege Saga launch: - config: @@ -267819,112 +263361,112 @@ oslist: windows executable: editor/Isopod.exe type: editor -'559070': +"559070": installDir: Zak Mckracken launch: - - arguments: '-c zak.ini zak-fdd' + - arguments: "-c zak.ini zak-fdd" config: oslist: windows description: Original Floppy Edition executable: ScummVM/scummvm.exe type: option1 workingdir: ScummVM - - arguments: '-c zak.ini zak' + - arguments: "-c zak.ini zak" config: oslist: windows description: Enhanced Edition executable: ScummVM/scummvm.exe type: option2 workingdir: ScummVM - - arguments: '-c zak.ini zak-fdd' + - arguments: "-c zak.ini zak-fdd" config: oslist: macos description: Original Floppy Edition executable: ScummVM/scummvm type: option1 workingdir: ScummVM - - arguments: '-c zak.ini zak' + - arguments: "-c zak.ini zak" config: oslist: macos description: Enhanced Edition executable: ScummVM/scummvm type: option2 workingdir: ScummVM -'559100': +"559100": installDir: PhantomDoctrine launch: - - arguments: '-Installed' + - arguments: "-Installed" config: oslist: windows executable: IWTB.exe type: default -'559130': +"559130": installDir: InnerVoices launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch without VR executable: LauncherNNG.exe type: default - - arguments: '-vr' + - arguments: "-vr" config: - osarch: '64' + osarch: "64" oslist: windows description: Oculus Rift executable: InnerVoices.exe type: othervr - - arguments: '-vr' + - arguments: "-vr" config: - osarch: '64' + osarch: "64" oslist: windows description: SteamVR executable: InnerVoices.exe type: vr -'559140': +"559140": installDir: Pinheads Bowling launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Pinheads Bowling executable: Pinheads.exe type: vr -'559150': - installDir: Royal Detective The Lord of Statues Collector's Edition +"559150": + installDir: "Royal Detective The Lord of Statues Collector's Edition" launch: - executable: RoyalDetective_LordOfStatues_CE.exe type: none -'559170': - installDir: 'Ready, Aim, Splat!' +"559170": + installDir: "Ready, Aim, Splat!" launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ReadyAimSplat.exe type: vr - config: - osarch: '64' + osarch: "64" oslist: windows executable: ReadyAimSplat.exe type: openvroverlay -'559200': {} -'559210': +"559200": {} +"559210": installDir: Rakuen launch: - config: oslist: windows executable: Launcher.exe type: none - - arguments: ./Rakuen.amd64 + - arguments: "./Rakuen.amd64" config: - osarch: '64' + osarch: "64" oslist: linux executable: steamshim/parent.amd64 type: default - - arguments: ./Rakuen.x86 + - arguments: "./Rakuen.x86" config: - osarch: '32' + osarch: "32" oslist: linux executable: steamshim/parent.x86 type: default @@ -267933,7 +263475,7 @@ oslist: macos executable: Rakuen.app/Contents/MacOS/steamshim_parent type: default -'559250': +"559250": installDir: Ghostlight Manor launch: - config: @@ -267942,65 +263484,65 @@ type: default - config: oslist: macos - executable: Ghostlight Manor.app\\Contents\\MacOS\\Ghostlight Manor + executable: "Ghostlight Manor.app\\\\Contents\\\\MacOS\\\\Ghostlight Manor" type: default -'559260': +"559260": installDir: Wayward Souls launch: - config: oslist: windows executable: wayward.exe type: none -'559280': +"559280": installDir: Snailiens launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: Snailiens_1.1.3.0\\Invasion.exe + executable: "Snailiens_1.1.3.0\\\\Invasion.exe" type: vr - config: betakey: i_testing - osarch: '64' + osarch: "64" oslist: windows description: internal test branch - executable: Snailiens_1.0.0.4\\Invasion.exe + executable: "Snailiens_1.0.0.4\\\\Invasion.exe" type: vr - config: betakey: indiemegabooth - osarch: '64' + osarch: "64" oslist: windows - executable: Snailiens_PAXEvaluationBuild\\Invasion.exe + executable: "Snailiens_PAXEvaluationBuild\\\\Invasion.exe" type: vr - config: betakey: pax10 - osarch: '64' + osarch: "64" oslist: windows - executable: Snailiens_PAXEvaluationBuild\\Invasion.exe + executable: "Snailiens_PAXEvaluationBuild\\\\Invasion.exe" type: vr -'559300': +"559300": installDir: Thunder Spheres launch: - - arguments: '-windowed' + - arguments: "-windowed" config: oslist: windows executable: ThunderSpheres.exe type: vr -'559310': +"559310": installDir: Illyriad - Grand Strategy MMO launch: - - arguments: ' --in-process-gpu' + - arguments: " --in-process-gpu" config: - osarch: '64' + osarch: "64" oslist: windows executable: illyriad.exe type: default -'559330': - installDir: A Fisherman's Tale +"559330": + installDir: "A Fisherman's Tale" launch: - executable: Fisherman.exe type: vr -'559340': +"559340": installDir: Sunset Rangers launch: - config: @@ -268012,21 +263554,21 @@ description: Reset all options to default. executable: sunset_reset_fix.bat type: none -'559350': +"559350": installDir: Eurgava - Fight for Haaria launch: - config: oslist: windows executable: Eurgava - Fight for Haaria.exe type: none -'559360': +"559360": installDir: Brocat launch: - config: oslist: windows executable: BroCatFRM.exe type: default -'559450': +"559450": installDir: Demented Pixie launch: - config: @@ -268037,14 +263579,14 @@ oslist: linux executable: demented pixie.x86 type: none -'559460': +"559460": installDir: Cloud Pirates launch: - - arguments: '-fromsteam' + - arguments: "-fromsteam" executable: WarfaceMycomSteamLoader.exe type: none -'559500': {} -'559610': +"559500": {} +"559610": installDir: Love Ribbon launch: - config: @@ -268059,65 +263601,59 @@ oslist: macos executable: Love_ribbon.app type: default -'559620': +"559620": installDir: Outlaws launch: - executable: olwin.exe type: none -'559630': +"559630": installDir: Kid Baby Starchild launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Runtime.exe type: default -'559640': +"559640": installDir: Betrayal Collection launch: - executable: SierraLauncher.exe type: none -'559650': +"559650": installDir: WitchIt launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Windows 64 Bit - description_loc: - english: Windows 64 Bit - executable: \\WitchIt\\Binaries\\Win64\\PropWitchHuntModule-Win64-Shipping.exe + executable: "\\\\WitchIt\\\\Binaries\\\\Win64\\\\PropWitchHuntModule-Win64-Shipping.exe" type: default - workingdir: \\WitchIt\\Binaries\\Win64\\ - - arguments: '-Vulkan' + workingdir: "\\\\WitchIt\\\\Binaries\\\\Win64\\\\" + - arguments: "-Vulkan" config: - osarch: '64' + osarch: "64" description: Start with Vulkan enabled (experimental) - description_loc: - english: Start with Vulkan enabled (experimental) - executable: \\WitchIt\\Binaries\\Win64\\PropWitchHuntModule-Win64-Shipping.exe - workingdir: \\WitchIt\\Binaries\\Win64\\ + executable: "\\\\WitchIt\\\\Binaries\\\\Win64\\\\PropWitchHuntModule-Win64-Shipping.exe" + workingdir: "\\\\WitchIt\\\\Binaries\\\\Win64\\\\" - config: oslist: windows description: Restore config defaults (this can fix issues) - executable: \\WitchIt\\Binaries\\Win64\\DeleteConfigAndSaves.bat + executable: "\\\\WitchIt\\\\Binaries\\\\Win64\\\\DeleteConfigAndSaves.bat" type: none - workingdir: \\WitchIt\\Binaries\\Win64\\ - - arguments: '-dx11' + workingdir: "\\\\WitchIt\\\\Binaries\\\\Win64\\\\" + - arguments: "-dx11" config: - osarch: '64' + osarch: "64" oslist: windows description: Start with DX 11 (for old Windows versions) - description_loc: - english: Start with DX 11 (for old Windows versions) - executable: \\WitchIt\\Binaries\\Win64\\PropWitchHuntModule-Win64-Shipping.exe - workingdir: \\WitchIt\\Binaries\\Win64\\ -'559680': + executable: "\\\\WitchIt\\\\Binaries\\\\Win64\\\\PropWitchHuntModule-Win64-Shipping.exe" + workingdir: "\\\\WitchIt\\\\Binaries\\\\Win64\\\\" +"559680": installDir: Vampire The Masquerade - Redemption launch: - executable: Vampire.exe type: none -'559870': +"559870": installDir: PAKO - Car Chase Simulator launch: - config: @@ -268128,7 +263664,7 @@ oslist: macos executable: PAKO.app type: default -'559900': +"559900": installDir: Gulman 4 Still alive launch: - config: @@ -268143,7 +263679,7 @@ oslist: windows executable: G4_en.exe type: default -'559910': +"559910": installDir: Terroir launch: - config: @@ -268152,26 +263688,26 @@ type: default - config: oslist: macos - executable: Terroir.app\\Contents\\MacOS\\Terroir + executable: "Terroir.app\\\\Contents\\\\MacOS\\\\Terroir" type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Terroir.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Terroir.x86_64 type: default -'559920': +"559920": installDir: Broken Blue launch: - config: oslist: windows executable: BrokenBlue.exe type: vr -'559930': +"559930": installDir: Causality launch: - config: @@ -268180,20 +263716,20 @@ type: default - config: oslist: macos - executable: Causality.app\\Contents\\MacOS\\Causality + executable: "Causality.app\\\\Contents\\\\MacOS\\\\Causality" type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Causality.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Causality.x86_64 type: default -'559940': {} -'559960': +"559940": {} +"559960": installDir: Power Hover launch: - config: @@ -268204,19 +263740,19 @@ oslist: windows executable: PowerHover.exe type: default -'559970': - installDir: Shrouded Tales The Spellbound Land Collector's Edition +"559970": + installDir: "Shrouded Tales The Spellbound Land Collector's Edition" launch: - executable: Shrouded_Tales_The_Spellbound_Land_CE.exe type: none -'559990': +"559990": installDir: ERR - 001 launch: - config: oslist: windows executable: Game.exe type: none -'560000': +"560000": installDir: Ladykiller in a Bind launch: - config: @@ -268231,19 +263767,19 @@ oslist: windows executable: Ladykiller in a Bind.exe type: none -'560010': +"560010": installDir: Starship Survivor launch: - config: oslist: windows executable: StarshipSurvivor.exe type: vr -'560050': +"560050": installDir: Xmas Shooting - Scramble launch: - executable: Xmas Shooting.exe type: none -'560080': +"560080": installDir: I was rebuilt launch: - config: @@ -268256,25 +263792,25 @@ description: Inicio normal Linux executable: I_was_rebuilt type: default -'560130': +"560130": installDir: Pillars of Eternity II launch: - - arguments: '-steam' + - arguments: "-steam" config: oslist: windows executable: PillarsOfEternityII.exe type: none - - arguments: '-steam' + - arguments: "-steam" config: oslist: linux executable: PillarsOfEternityII type: none - - arguments: '-steam' + - arguments: "-steam" config: oslist: macos executable: PillarsOfEternityII.app type: none - - arguments: '-steam' + - arguments: "-steam" config: betakey: chinesereview oslist: windows @@ -268293,7 +263829,7 @@ description: Chinese Review executable: PillarsOfEternity2.app type: none - - arguments: '-steam' + - arguments: "-steam" config: betakey: externalfig oslist: windows @@ -268312,7 +263848,7 @@ description: External Fig executable: PillarsOfEternity2.app type: none - - arguments: '-steam' + - arguments: "-steam" config: betakey: magazine oslist: windows @@ -268331,7 +263867,7 @@ description: Magazine Review executable: PillarsOfEternity2.app type: none - - arguments: '-steam' + - arguments: "-steam" config: betakey: petrol oslist: windows @@ -268350,21 +263886,21 @@ description: Petrol Cinematics executable: PillarsOfEternity2.app type: none -'560150': +"560150": installDir: PLANNES launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Plannes.exe type: vr -'560170': +"560170": installDir: Star Wars Shadows of the Empire launch: - - executable: Sdata\\Shadows.exe + - executable: "Sdata\\\\Shadows.exe" type: none workingdir: Sdata -'560180': +"560180": installDir: World In Danger launch: - config: @@ -268375,8 +263911,8 @@ oslist: macos executable: world in danger.app type: default -'560200': - installDir: A Number's life +"560200": + installDir: "A Number's life" launch: - config: oslist: windows @@ -268386,21 +263922,21 @@ oslist: macos executable: anumberslife.app/Contents/MacOS/anumberslife type: default -'560220': +"560220": installDir: Estiman launch: - config: oslist: windows executable: Estiman.exe type: default -'560230': +"560230": installDir: Black Swan launch: - config: oslist: windows executable: Black Swan.exe type: default -'560250': +"560250": installDir: Galaxy Girls launch: - config: @@ -268418,7 +263954,7 @@ description: Launch executable: Galaxy Girls.sh type: none -'560260': +"560260": installDir: Super Blue Boy Planet launch: - config: @@ -268427,77 +263963,68 @@ type: none - config: oslist: macos - executable: Super Blue Boy Planet.app\\Contents\\MacOS\\Mac_Runner + executable: "Super Blue Boy Planet.app\\\\Contents\\\\MacOS\\\\Mac_Runner" type: default -'560300': +"560300": installDir: ThySword launch: - config: oslist: windows executable: ThySword.exe type: default -'560340': +"560340": installDir: Tower Ascent launch: - config: oslist: windows executable: TowerAscent.exe type: vr -'560350': +"560350": installDir: Police Quest - SWAT launch: - executable: SierraLauncher.exe type: none -'560370': +"560370": installDir: SWAT 3 Tactical Game of the Year Edition launch: - executable: swat.exe type: none -'560380': +"560380": installDir: MapleStory 2 launch: - - arguments: >- - \"x64/maplestory2.exe 30000 --nxapp=nxsteam --ticket={gameAuthTicket} --tracking_uid={tracking_uid} - --tracking_sessionid={tracking_sessionid} --tracking_serviceid={tracking_serviceid}\" --nx:title=\"MapleStory - 2\" + - arguments: "\\\"x64/maplestory2.exe 30000 --nxapp=nxsteam --ticket={gameAuthTicket} --tracking_uid={tracking_uid} --tracking_sessionid={tracking_sessionid} --tracking_serviceid={tracking_serviceid}\\\" --nx:title=\\\"MapleStory 2\\\"" config: - osarch: '64' + osarch: "64" description: MapleStory 2 (64 bit) - executable: nxsteam\\nxsteam.exe + executable: "nxsteam\\\\nxsteam.exe" type: default - - arguments: >- - .\\x64\\maplestory2.exe 30001 --nxapp=nxsteam --ticket={gameAuthTicket} --stage=test01.ms2.ops.nxdc.io - --tracking_use=true --tracking_uid={tracking_uid} --tracking_sessionid={tracking_sessionid} - --tracking_serviceid={tracking_serviceid} + - arguments: ".\\\\x64\\\\maplestory2.exe 30001 --nxapp=nxsteam --ticket={gameAuthTicket} --stage=test01.ms2.ops.nxdc.io --tracking_use=true --tracking_uid={tracking_uid} --tracking_sessionid={tracking_sessionid} --tracking_serviceid={tracking_serviceid}" config: betakey: test1 - osarch: '64' + osarch: "64" description: Test1 (x64) - executable: nxsteam\\nxsteam.exe + executable: "nxsteam\\\\nxsteam.exe" type: option1 - - arguments: >- - .\\x64\\maplestory2.exe 30000 --nxapp=nxsteam --ticket={gameAuthTicket} --stage=34.234.120.156 - --tracking_use=true --tracking_uid={tracking_uid} --tracking_sessionid={tracking_sessionid} - --tracking_serviceid={tracking_serviceid} + - arguments: ".\\\\x64\\\\maplestory2.exe 30000 --nxapp=nxsteam --ticket={gameAuthTicket} --stage=34.234.120.156 --tracking_use=true --tracking_uid={tracking_uid} --tracking_sessionid={tracking_sessionid} --tracking_serviceid={tracking_serviceid}" config: betakey: staging - osarch: '64' + osarch: "64" description: Staging (64-bit) - executable: nxsteam\\nxsteam.exe + executable: "nxsteam\\\\nxsteam.exe" type: option1 - - arguments: .\\maplestory2.exe 30000 + - arguments: ".\\\\maplestory2.exe 30000" config: betakey: staging description: MapleStory 2 (32-bit) - executable: nxsteam\\nxsteam.exe + executable: "nxsteam\\\\nxsteam.exe" type: option2 -'560430': +"560430": installDir: Indiana Jones and the Emperors Tomb launch: - - executable: GameData\\bin\\indy.exe + - executable: "GameData\\\\bin\\\\indy.exe" type: none - workingdir: GameData\\bin -'560510': + workingdir: "GameData\\\\bin" +"560510": installDir: High Noon Revolver launch: - config: @@ -268508,87 +264035,87 @@ oslist: linux executable: run.sh type: default -'560550': +"560550": installDir: voidLINK launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: voidLINK.exe type: vr -'560570': +"560570": installDir: Breaking Bones launch: - config: oslist: windows executable: BreakingBones.exe type: default -'560600': +"560600": installDir: PlanTechtor launch: - config: oslist: windows executable: PlanTechtor.exe type: vr -'560640': +"560640": installDir: Cabin VR Escape the Room launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TheCabin.exe type: vr -'560660': {} -'560710': +"560660": {} +"560710": installDir: LeapUp launch: - config: oslist: windows executable: NinjaJump.exe type: default -'560720': +"560720": installDir: DarkAngelsMasqueradeofShadows launch: - config: oslist: windows executable: DarkAngel.exe type: default -'560730': +"560730": installDir: The Esoterica Hollow Earth launch: - config: oslist: windows executable: Esoterica_HollowEarth.exe type: default -'560740': +"560740": installDir: ShtrigaSummerCamp launch: - config: oslist: windows executable: SummerCamp.exe type: default -'560750': +"560750": installDir: WorldKeepers launch: - config: oslist: windows executable: WorldKeepers_LastResort.exe type: default -'560760': +"560760": installDir: Sacra Terra Kiss of Death CE launch: - config: oslist: windows executable: SacraTerra.exe type: default -'560770': +"560770": installDir: Andoran Skye 1.5 launch: - config: oslist: windows - executable: Andoran Skye 1.5\\Andoran Skye 1.5.exe + executable: "Andoran Skye 1.5\\\\Andoran Skye 1.5.exe" type: none -'560790': +"560790": installDir: RedSpider2-Exiled launch: - config: @@ -268599,52 +264126,52 @@ oslist: windows executable: RedSpider2-Exiled.exe type: default -'560820': +"560820": installDir: The Saint Abyss of Despair launch: - config: oslist: windows executable: TheSaint.exe type: default -'560870': +"560870": installDir: Singing Stones VR launch: - - arguments: '123' + - arguments: "123" config: - osarch: '64' + osarch: "64" oslist: windows description: Запуск без VR executable: SS_v2.3.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: SS_v2.3.exe type: vr -'560930': +"560930": installDir: Marimba VR launch: - config: oslist: windows executable: Game.exe type: vr -'560960': +"560960": installDir: Magic Tavern launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: MagicTavern.exe type: vr -'560970': +"560970": installDir: Fireworks Desert Blast launch: - config: oslist: windows executable: FireworksDesertBlast.exe type: vr -'561000': - installDir: Delicious - Emily's Home Sweet Home +"561000": + installDir: "Delicious - Emily's Home Sweet Home" launch: - config: oslist: macos @@ -268654,124 +264181,124 @@ oslist: windows executable: Delicious11.exe type: default -'561010': +"561010": installDir: Spirit launch: - config: oslist: windows executable: Spirit.exe type: default -'561080': +"561080": installDir: The Price of Freedom launch: - config: oslist: windows executable: The Price of Freedom.exe type: vr -'561100': - installDir: Disney's Aladdin +"561100": + installDir: "Disney's Aladdin" launch: - - arguments: '-conf \"..\\dosbox_aladdin.conf\" -conf \"..\\dosbox_aladdin_single.conf\" -noconsole -c exit' + - arguments: "-conf \\\"..\\\\dosbox_aladdin.conf\\\" -conf \\\"..\\\\dosbox_aladdin_single.conf\\\" -noconsole -c exit" config: oslist: windows - description: Play Disney's Aladdin + description: "Play Disney's Aladdin" executable: DOSBOX/DOSBox.exe type: option1 workingdir: DOSBOX - config: oslist: linux - description: Play Disney's Aladdin - executable: ./dosbox/dosbox.sh + description: "Play Disney's Aladdin" + executable: "./dosbox/dosbox.sh" type: option1 workingdir: dosbox - - arguments: '-conf \"../dosbox_aladdin.conf\" -conf \"../dosbox_aladdin_single.conf\" -noconsole -c exit' + - arguments: "-conf \\\"../dosbox_aladdin.conf\\\" -conf \\\"../dosbox_aladdin_single.conf\\\" -noconsole -c exit" config: oslist: macos - description: Play Disney's Aladdin + description: "Play Disney's Aladdin" executable: dosbox/DOSBox type: option1 workingdir: dosbox -'561110': - installDir: Disney's The Jungle Book +"561110": + installDir: "Disney's The Jungle Book" launch: - - arguments: '-conf \"..\\dosbox_jungle.conf\" -conf \"..\\dosbox_jungle_single.conf\" -noconsole -c exit' + - arguments: "-conf \\\"..\\\\dosbox_jungle.conf\\\" -conf \\\"..\\\\dosbox_jungle_single.conf\\\" -noconsole -c exit" config: oslist: windows - description: Play Disney's The Jungle Book + description: "Play Disney's The Jungle Book" executable: DOSBOX/DOSBox.exe type: option1 workingdir: DOSBOX - config: oslist: linux - description: Play Disney's The Jungle Book - executable: ./dosbox/dosbox.sh + description: "Play Disney's The Jungle Book" + executable: "./dosbox/dosbox.sh" type: option1 workingdir: dosbox - - arguments: '-conf \"../dosbox_jungle.conf\" -conf \"../dosbox_jungle_single.conf\" -noconsole -c exit' + - arguments: "-conf \\\"../dosbox_jungle.conf\\\" -conf \\\"../dosbox_jungle_single.conf\\\" -noconsole -c exit" config: oslist: macos - description: Play Disney's The Jungle Book + description: "Play Disney's The Jungle Book" executable: dosbox/DOSBox type: option1 workingdir: dosbox -'561120': - installDir: Disney's The Lion King +"561120": + installDir: "Disney's The Lion King" launch: - - arguments: '-conf \"..\\dosbox_lionking.conf\" -conf \"..\\dosbox_lionking_single.conf\" -noconsole -c exit' + - arguments: "-conf \\\"..\\\\dosbox_lionking.conf\\\" -conf \\\"..\\\\dosbox_lionking_single.conf\\\" -noconsole -c exit" config: oslist: windows - description: Play Disney's The Lion King + description: "Play Disney's The Lion King" executable: DOSBOX/DOSBox.exe type: option1 workingdir: DOSBOX - config: oslist: linux - description: Play Disney's The Lion King - executable: ./dosbox/dosbox.sh + description: "Play Disney's The Lion King" + executable: "./dosbox/dosbox.sh" type: option1 workingdir: dosbox - - arguments: '-conf \"../dosbox_lionking.conf\" -conf \"../dosbox_lionking_single.conf\" -noconsole -c exit' + - arguments: "-conf \\\"../dosbox_lionking.conf\\\" -conf \\\"../dosbox_lionking_single.conf\\\" -noconsole -c exit" config: oslist: macos - description: Play Disney's The Lion King + description: "Play Disney's The Lion King" executable: dosbox/DOSBox type: option1 workingdir: dosbox -'561190': +"561190": installDir: Bamboo EP launch: - executable: BambooEP.exe type: none -'561230': +"561230": installDir: Special Delivery launch: - - arguments: '-vr' + - arguments: "-vr" config: - osarch: '64' + osarch: "64" oslist: windows executable: SpecialDelivery.exe type: vr - - arguments: '-vr' + - arguments: "-vr" config: - osarch: '64' + osarch: "64" oslist: windows executable: SpecialDelivery.exe type: othervr - - arguments: '-vr -culture=zh-hans' + - arguments: "-vr -culture=zh-hans" config: - osarch: '64' + osarch: "64" oslist: windows description: Special Delivery - Simplified Chinese executable: SpecialDelivery.exe type: vr - - arguments: '-vr -culture=zh-hans' + - arguments: "-vr -culture=zh-hans" config: - osarch: '64' + osarch: "64" oslist: windows description: Special Delivery - Simplified Chinese executable: SpecialDelivery.exe type: othervr -'561260': +"561260": installDir: The Rabbit and The Owl launch: - config: @@ -268782,23 +264309,23 @@ oslist: macos executable: The Rabbit and The Owl.app type: default -'561340': +"561340": installDir: Merlin adventurer store launch: - - arguments: '-windowed' + - arguments: "-windowed" config: oslist: windows executable: Merlin adventurer store.exe type: default -'561360': +"561360": installDir: VR Invaders launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: VRInvaders.exe type: vr -'561420': +"561420": installDir: Hot Plates launch: - config: @@ -268809,15 +264336,15 @@ oslist: macos executable: HotPlates.app type: default -'561440': +"561440": installDir: Graffiti-Bombing launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Graffiti Bombing.exe type: vr -'561450': +"561450": installDir: Mutant Fighting Cup 2 launch: - config: @@ -268828,12 +264355,12 @@ oslist: macos executable: mfc2_mac.app type: default -'561480': +"561480": installDir: 96 Mill launch: - executable: 96 MILL.exe type: default -'561510': +"561510": installDir: DragoDino launch: - config: @@ -268848,22 +264375,22 @@ oslist: linux executable: DragoDino.x86 type: default - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" config: oslist: windows executable: DragoDino.exe type: config - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" config: oslist: macos executable: DragoDino.app type: config - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" config: oslist: linux executable: DragoDino.x86 type: config -'561590': +"561590": installDir: Cricket Captain 2017 launch: - config: @@ -268871,7 +264398,7 @@ description: Launch Cricket Captain (OpenGL) executable: CricketCaptain.exe type: none -'561600': +"561600": installDir: MXGP3 - The Official Motocross Videogame launch: - config: @@ -268880,56 +264407,56 @@ type: default - config: oslist: linux - executable: ./mxgp3.run + executable: "./mxgp3.run" type: default - config: oslist: macos executable: MXGP3.app type: default -'561610': +"561610": installDir: MotoGP™17 launch: - config: - osarch: '32' + osarch: "32" executable: MotoGP17.exe type: none - config: - osarch: '64' + osarch: "64" executable: MotoGP17X64.exe type: none -'561660': +"561660": installDir: Decoherence launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Decoherence.exe type: default -'561680': - installDir: Santa's Christmas Solitaire +"561680": + installDir: "Santa's Christmas Solitaire" launch: - - executable: Santa's Christmas Solitaire.exe + - executable: "Santa's Christmas Solitaire.exe" type: none -'561690': +"561690": installDir: Emission VR launch: - - arguments: '-screen-quality Fantastic -screen-fullscreen 0 -screen-height 768 -screen-width 1024' + - arguments: "-screen-quality Fantastic -screen-fullscreen 0 -screen-height 768 -screen-width 1024" config: oslist: windows description: SteamVR executable: Emission.exe type: vr - - arguments: '-screen-quality Fantastic -screen-fullscreen 0 -screen-height 768 -screen-width 1024' + - arguments: "-screen-quality Fantastic -screen-fullscreen 0 -screen-height 768 -screen-width 1024" description: Oculus Rift in Oculus VR Mode executable: Emission.exe type: othervr - - arguments: '-screen-quality Fantastic -show-screen-selector -screen-fullscreen 1 -screen-height 1080 -screen-width 1920' + - arguments: "-screen-quality Fantastic -show-screen-selector -screen-fullscreen 1 -screen-height 1080 -screen-width 1920" config: oslist: windows description: Non-VR Mode executable: Emission.exe type: default -'561740': +"561740": installDir: MidBoss launch: - config: @@ -268938,13 +264465,13 @@ type: default - config: oslist: linux - executable: ./MidBoss + executable: "./MidBoss" type: none - config: oslist: macos executable: MidBoss.app/Contents/MacOS/MidBoss type: none -'561770': +"561770": installDir: Just Ignore Them launch: - config: @@ -268955,21 +264482,21 @@ - description: Just Ignore Them Remake (English Only) executable: JITRemake/winsetup.exe type: option1 -'561930': +"561930": installDir: Sword of the Guardian launch: - config: oslist: windows executable: Sword of the Guardian.exe type: default -'561970': +"561970": installDir: REALITY launch: - config: oslist: windows executable: Reality.exe type: default -'562010': +"562010": installDir: Tanki Online launch: - config: @@ -268983,7 +264510,7 @@ description: Launch executable: Tanki Online.exe type: default -'562050': +"562050": installDir: Liquid Pinball launch: - config: @@ -268994,35 +264521,35 @@ oslist: macos executable: Liquid Pinball.app type: none -'562090': +"562090": installDir: Kronos launch: - config: oslist: windows executable: Kronos.exe type: default -'562160': +"562160": installDir: The Inner Darkness launch: - config: oslist: windows executable: TheInnerDarkness.exe type: default -'562210': +"562210": installDir: Ancient Rus launch: - config: oslist: windows executable: RUS.exe type: default -'562220': +"562220": installDir: Zup! 2 launch: - config: oslist: windows executable: Zup! 2.exe type: default -'562230': +"562230": installDir: Space Tyrant launch: - config: @@ -269037,14 +264564,14 @@ oslist: linux executable: SpaceTyrant.x86 type: default -'562240': +"562240": installDir: The Spirit Underneath launch: - config: oslist: windows executable: TheSpirit.exe type: default -'562250': +"562250": installDir: Beastmancer launch: - config: @@ -269066,7 +264593,7 @@ description: 64bit executable: Beastmancer.x86_64 type: none -'562260': +"562260": installDir: WAVESHAPER launch: - config: @@ -269077,16 +264604,16 @@ oslist: linux executable: run.sh type: default -'562270': +"562270": installDir: Shot Shot Tactic launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Shot Shot Tactic executable: ShotShotTactic.exe type: option1 -'562280': +"562280": installDir: reality launch: - config: @@ -269104,15 +264631,15 @@ description: Launch executable: reality.app type: default -'562290': +"562290": installDir: Knights of Galiveth launch: - config: oslist: windows executable: Knights of Galiveth.exe type: default -'562300': {} -'562310': +"562300": {} +"562310": installDir: Spacecats with Lasers launch: - config: @@ -269128,19 +264655,19 @@ executable: Spacecats.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: Spacecats.x86_64 type: none -'562320': +"562320": installDir: Locked In VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: LockedInVR.exe type: vr -'562330': +"562330": installDir: Dwarflings launch: - config: @@ -269152,48 +264679,44 @@ executable: Dwarflings.app type: default - config: - osarch: '32' + osarch: "32" oslist: windows description: Win32 - description_loc: - english: Win32 executable: win32/Dwarflings.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows description: Win64 - description_loc: - english: Win64 executable: win64/Dwarflings.exe type: default -'562340': +"562340": installDir: IronWings launch: - - arguments: '-forcecontrollerappid <562340>' + - arguments: "-forcecontrollerappid <562340>" config: oslist: windows executable: fly3d.exe type: default -'562360': - installDir: 'Planes, Bullets and Vodka' +"562360": + installDir: "Planes, Bullets and Vodka" launch: - config: oslist: windows - executable: 'Planes, Bullets and Vodka.exe' + executable: "Planes, Bullets and Vodka.exe" type: default -'562410': +"562410": installDir: Panty Party launch: - config: oslist: windows executable: PantyParty.exe type: none -'562420': +"562420": installDir: Armor Clash II launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ArmorClashII.exe type: default @@ -269202,12 +264725,12 @@ executable: ArmorClashII.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: ArmorClashII.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: ArmorClashII.x86 type: default @@ -269215,23 +264738,23 @@ oslist: windows executable: ArmorClashIIVR.exe type: vr -'562430': +"562430": installDir: Alien Hostage launch: - config: oslist: windows executable: Alien Hostage.exe type: default -'562450': +"562450": installDir: Salvage Op launch: - - arguments: '-vr' + - arguments: "-vr" config: - osarch: '64' + osarch: "64" oslist: windows executable: SalvageOp.exe type: vr -'562460': +"562460": installDir: Ra2 launch: - config: @@ -269246,7 +264769,7 @@ oslist: macos executable: Ra2.app type: default -'562470': +"562470": installDir: EOA4 launch: - config: @@ -269257,20 +264780,20 @@ english: Empire of Angels IV schinese: 天使帝国四 tchinese: 天使帝國四 -'562480': +"562480": installDir: Corona Blossom Vol.3 Journey to the Stars launch: - executable: CoroBlo_vol_3.exe type: none nameLocalized: - japanese: 'コロナブロッサム Vol.3 Journey to the Stars ' + japanese: "コロナブロッサム Vol.3 Journey to the Stars " schinese: Corona Blossom-日冕之华- vol.3 跨越星际的旅行 -'562490': +"562490": installDir: EvilMorph launch: - executable: EvilMorph.exe type: none -'562500': +"562500": installDir: Warstone TD launch: - config: @@ -269279,33 +264802,33 @@ type: none - config: oslist: macos - executable: Contents\\MacOS\\warstone + executable: "Contents\\\\MacOS\\\\warstone" - config: oslist: linux executable: warstone.x86_64 -'562520': - installDir: 'Attempt[42]' +"562520": + installDir: "Attempt[42]" launch: - config: oslist: windows executable: Attempt42.exe type: none -'562540': +"562540": installDir: Cabals Card Blitz launch: - config: oslist: windows executable: CardBlitz.exe type: default -'562560': {} -'562570': +"562560": {} +"562570": installDir: Access Denied launch: - config: oslist: windows executable: AccessDenied.exe type: default -'562590': +"562590": installDir: Galactic Junk League launch: - config: @@ -269314,9 +264837,9 @@ type: none - config: oslist: macos - executable: GJL.app\\Contents\\MacOS\\GJL + executable: "GJL.app\\\\Contents\\\\MacOS\\\\GJL" type: default -'562600': +"562600": installDir: Our Wonderful World launch: - config: @@ -269327,55 +264850,53 @@ oslist: linux executable: run.sh type: default -'562640': +"562640": installDir: Introvert Quest launch: - config: oslist: windows executable: Game.exe type: default -'562650': +"562650": installDir: Cube Master launch: - config: oslist: windows executable: Game.exe type: default -'562660': +"562660": installDir: Pandarama The Lost Toys launch: - config: oslist: windows executable: Pandarama.exe type: none -'562670': {} -'562680': +"562670": {} +"562680": installDir: The Wizards Who Fell In A Hole launch: - config: oslist: windows description: Play The Wizards Who Fell In A Hole - executable: The Wizards Who Fell In A Hole\\The Wizards Who Fell In A Hole.exe + executable: "The Wizards Who Fell In A Hole\\\\The Wizards Who Fell In A Hole.exe" type: none - config: oslist: linux description: Play The Wizards Who Fell In A Hole - description_loc: - english: Play The Wizards Who Fell In A Hole - executable: The Wizards Who Fell In A Hole\\The Wizards Who Fell In A Hole.x86_64 + executable: "The Wizards Who Fell In A Hole\\\\The Wizards Who Fell In A Hole.x86_64" - config: oslist: macos description: Play The Wizards Who Fell In A Hole - executable: The Wizards Who Fell In A Hole\\The Wizards Who Fell In A Hole.app + executable: "The Wizards Who Fell In A Hole\\\\The Wizards Who Fell In A Hole.app" type: none -'562690': +"562690": installDir: Immersion launch: - config: oslist: windows executable: Immersion.exe type: none -'562700': +"562700": installDir: Paintball 707 launch: - config: @@ -269383,12 +264904,12 @@ executable: Paintball 707.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Paintball 707.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Paintball 707.x86_64 type: default @@ -269396,8 +264917,8 @@ oslist: macos executable: Paintball 707.app type: default -'562710': {} -'562730': +"562710": {} +"562730": installDir: MechDefender launch: - config: @@ -269406,72 +264927,72 @@ type: default - config: oslist: macos - executable: MechDefender.app\\Contents\\MacOS\\MechDefender + executable: "MechDefender.app\\\\Contents\\\\MacOS\\\\MechDefender" type: default -'562740': +"562740": installDir: ZombiesTown VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ZombiTown.exe type: vr -'562750': {} -'562760': {} -'562800': +"562750": {} +"562760": {} +"562800": installDir: HOUND launch: - config: oslist: windows executable: houndlauncher.exe type: default -'562810': +"562810": installDir: Monopoly Plus launch: - - arguments: '-uplay_steam_mode' + - arguments: "-uplay_steam_mode" config: oslist: windows executable: Monopoly.exe type: default -'562840': +"562840": installDir: Dragon Blood launch: - - arguments: '--in-process-gpu --disable-transparency' + - arguments: "--in-process-gpu --disable-transparency" config: oslist: windows executable: dragonblood.exe type: default -'562860': +"562860": installDir: Ion Fury launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Full Version executable: fury.exe type: option1 - config: - osarch: '64' + osarch: "64" oslist: linux description: Full Version executable: fury.bin type: option1 -'563120': +"563120": installDir: Desolate Wastes Vendor Chronicles launch: - config: oslist: windows executable: Desolate Wastes Vendor Chronicles.exe type: none -'563130': +"563130": installDir: The Cows Are Watching launch: - config: oslist: windows executable: TheCowsAreWatching.exe type: default -'563140': {} -'563150': +"563140": {} +"563150": installDir: interLOGIC launch: - config: @@ -269483,30 +265004,30 @@ executable: interLOGIC.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: interLOGIC.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: interLOGIC.x86_64 type: default -'563160': +"563160": installDir: ZenbutaVR launch: - config: oslist: windows executable: ZBV2016.exe type: vr -'563170': +"563170": installDir: Graveball launch: - config: oslist: windows executable: Graveball.exe type: default -'563180': +"563180": installDir: Dispersio launch: - config: @@ -269521,7 +265042,7 @@ oslist: macos executable: dispersio type: default -'563190': +"563190": installDir: de Blob 2 launch: - config: @@ -269532,20 +265053,20 @@ oslist: windows executable: Launcher.exe type: config - - arguments: '-exclusivefullscreen' + - arguments: "-exclusivefullscreen" config: oslist: windows description: Launch de Blob 2 in Exclusive Fullscreen Mode executable: deBlob2.exe type: none -'563200': +"563200": installDir: Slay launch: - config: oslist: windows executable: Slay.exe type: none -'563250': +"563250": installDir: Lemuria Lost in Space launch: - config: @@ -269553,7 +265074,7 @@ description: Lanuch PC version executable: Lemuria.exe type: none - - arguments: '-VR' + - arguments: "-VR" config: betakey: beta description: Launch VR version @@ -269561,62 +265082,62 @@ type: vr - executable: Lemuria.exe type: none -'563260': +"563260": installDir: Steel Empire launch: - config: oslist: windows executable: Steel Empire.exe type: none -'563270': +"563270": installDir: In Vitra launch: - config: oslist: windows executable: sgb_rpgplayer.exe type: default -'563320': +"563320": installDir: Mountain Trap The Manor of Memories launch: - executable: MountainTrap.exe type: none -'563330': +"563330": installDir: Mountain Trap 2 Under the Cloak of Fear launch: - executable: MountainTrap2.exe type: none -'563340': +"563340": installDir: Blue Tear launch: - executable: BlueTear.exe type: none -'563360': +"563360": installDir: Market Tycoon launch: - config: oslist: windows executable: Market Tycoon.exe type: none -'563370': +"563370": installDir: DontTouchTheZombies launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: DontTouchTheZombies.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: DontTouchTheZombies.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: DontTouchTheZombies.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: DontTouchTheZombies.x86_64 type: default @@ -269624,29 +265145,29 @@ oslist: macos executable: DontTouchTheZombies.app/Contents/MacOS/DontTouchTheZombies type: default -'563380': +"563380": installDir: Shadows launch: - config: oslist: windows executable: Shadows.exe type: default -'563390': +"563390": installDir: Children of the Galaxy launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: CoG.exe type: none -'563400': +"563400": installDir: Ludu launch: - config: oslist: windows executable: RPG_RT.exe type: default -'563410': +"563410": installDir: Necroball launch: - config: @@ -269658,43 +265179,43 @@ executable: Necroball.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Necroball.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Necroball.x86_64 type: default -'563420': +"563420": installDir: Obscura launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: FearGame.exe type: vr - config: - osarch: '64' + osarch: "64" oslist: windows executable: FearGame.exe type: othervr -'563430': +"563430": installDir: Void Pyramid launch: - config: oslist: windows executable: voidpyramid.exe type: none -'563470': +"563470": installDir: Reaping Rewards launch: - config: oslist: windows executable: Reaping.exe type: vr -'563490': +"563490": installDir: Earth Liberation launch: - config: @@ -269703,18 +265224,18 @@ type: default - config: oslist: macos - executable: EarthLiberation.app\\Contents\\MacOS\\EarthLiberation + executable: "EarthLiberation.app\\\\Contents\\\\MacOS\\\\EarthLiberation" type: default -'563500': +"563500": installDir: The 8th Day launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: The8thDay.exe type: default -'563510': {} -'563520': +"563510": {} +"563520": installDir: When Our Journey Ends launch: - config: @@ -269729,102 +265250,98 @@ oslist: macos executable: When_Our_Journey_Ends.app type: default -'563530': +"563530": nameLocalized: russian: Несыть -'563550': +"563550": installDir: Nevrosa launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Nevrosa.exe type: vr -'563560': +"563560": installDir: Alien Swarm Reactive Drop launch: - - arguments: '-novid' + - arguments: "-novid" config: oslist: windows executable: reactivedrop.exe type: default -'563600': +"563600": nameLocalized: russian: Buratino (Буратино) -'563610': +"563610": installDir: VR Squash 2017 launch: - config: oslist: windows executable: VRSquash2017.exe type: vr -'563680': +"563680": installDir: DragonWingsVR launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: DragonRider32.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: DragonRider.exe type: default - - arguments: '-vr' + - arguments: "-vr" config: - osarch: '32' + osarch: "32" oslist: windows executable: DragonRider32.exe type: vr - - arguments: '-vr ' + - arguments: "-vr " config: - osarch: '64' + osarch: "64" oslist: windows executable: DragonRider.exe type: vr - - arguments: '-vr -ENGINEINI=..//..//Config//EngineOSVR.ini' + - arguments: "-vr -ENGINEINI=..//..//Config//EngineOSVR.ini" config: - osarch: '32' + osarch: "32" oslist: windows description: OSVR Mode - description_loc: - english: OSVR Mode executable: DragonRider32.exe type: option1 - - arguments: '-vr -ENGINEINI=..//..//Config//EngineOSVR.ini' + - arguments: "-vr -ENGINEINI=..//..//Config//EngineOSVR.ini" config: - osarch: '64' + osarch: "64" oslist: windows description: OSVR Mode - description_loc: - english: OSVR Mode executable: DragonRider.exe type: option1 -'563690': {} -'563710': +"563690": {} +"563710": installDir: Loops of Zen launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Loops of Zen.exe type: default - config: - osarch: '64' + osarch: "64" oslist: macos executable: LoopsofZen.app/Contents/MacOS/LoopsofZen type: default -'563730': {} -'563740': +"563730": {} +"563740": installDir: Lemons Must Die launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: JLemon.exe type: none -'563750': +"563750": installDir: World Boxing Manager launch: - config: @@ -269833,45 +265350,45 @@ type: default - config: oslist: macos - executable: World Boxing Manager.app\\Contents\\MacOS\\World Boxing Manager + executable: "World Boxing Manager.app\\\\Contents\\\\MacOS\\\\World Boxing Manager" type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: WorldBoxingManager64 type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: WorldBoxingManager32 type: default -'563760': +"563760": installDir: VR GirlFriend launch: - config: oslist: windows executable: VR GirlFriend.exe type: default -'563810': +"563810": installDir: Fumiko launch: - config: - osarch: '64' + osarch: "64" oslist: linux executable: fumikothegame.x86_64 type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: fumikothegame.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: windows executable: fumikothegame.exe type: none - config: - osarch: '32' + osarch: "32" oslist: windows executable: fumikothegame.exe type: none @@ -269879,15 +265396,15 @@ oslist: macos executable: fumikothegame.app type: none -'563830': +"563830": installDir: Historium VR - Relive the history of Bruges launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ViveHistorium.exe type: vr -'563840': +"563840": installDir: Lost Ember launch: - config: @@ -269896,21 +265413,21 @@ type: default nameLocalized: japanese: Lost Ember (ロスト・エンバー) -'563860': +"563860": installDir: The Edgelands launch: - config: oslist: windows executable: the_edgelands.exe type: none -'563910': +"563910": installDir: Guardian Of December launch: - config: oslist: windows executable: Guardian Of December.exe type: none -'564010': +"564010": installDir: Stern Pinball Arcade launch: - config: @@ -269923,7 +265440,7 @@ description: Launch Configuration Utility executable: PBAConfig.exe type: none -'564040': +"564040": installDir: Zangeki Warp launch: - config: @@ -269934,7 +265451,7 @@ oslist: linux executable: ZangekiWarp type: default -'564050': +"564050": installDir: Bud Spencer & Terence Hill - Slaps And Beans launch: - config: @@ -269949,146 +265466,146 @@ oslist: linux executable: SnB.x86 type: default -'564070': +"564070": installDir: Troll and I launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TrollandI.exe type: default -'564080': +"564080": installDir: Metagalactic Blitz launch: - config: oslist: windows executable: MGB.exe type: default -'564090': - installDir: Fierce Tales The Dog's Heart Collector's Edition +"564090": + installDir: "Fierce Tales The Dog's Heart Collector's Edition" launch: - executable: FierceTalesTheDogsHeartCE.exe type: none -'564100': +"564100": installDir: Deadly Edge launch: - executable: DeadlyEdge.exe type: none -'564140': +"564140": installDir: Juniper Theory launch: - - arguments: '-screen-fullscreen 1' + - arguments: "-screen-fullscreen 1" config: - osarch: '64' + osarch: "64" oslist: windows executable: junipertheory.exe type: default -'564150': +"564150": installDir: Rosenkreuzstilette launch: - config: oslist: windows executable: rks.exe type: default -'564160': +"564160": installDir: Rosenkreuzstilette Freudenstachel launch: - config: oslist: windows executable: rksf.exe type: default -'564210': +"564210": installDir: Fishermurs launch: - config: oslist: windows executable: Fishermurs.exe type: default -'564230': +"564230": installDir: Fire Prowrestling World launch: - config: oslist: windows executable: FireProWrestlingW.exe type: none -'564280': +"564280": installDir: Adventuring gentleman launch: - config: oslist: windows executable: nw.exe type: none -'564310': +"564310": installDir: Serious Sam Fusion 2017 launch: - config: - osarch: '64' + osarch: "64" oslist: windows - ownsdlc: '612560' + ownsdlc: "612560" executable: Bin/x64/Sam2017.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows - ownsdlc: '612560' + ownsdlc: "612560" description: Moddable executable: Bin/x64/Sam2017_Unrestricted.exe type: option1 - config: - osarch: '64' + osarch: "64" oslist: linux - ownsdlc: '612560' + ownsdlc: "612560" executable: Bin/x64/Sam2017 type: default - config: - osarch: '64' + osarch: "64" oslist: linux - ownsdlc: '612560' + ownsdlc: "612560" description: Moddable executable: Bin/x64/Sam2017_Unrestricted type: option1 - config: - osarch: '64' + osarch: "64" oslist: macos - ownsdlc: '612560' + ownsdlc: "612560" executable: Bin/x64/Sam2017 type: default - config: - osarch: '64' + osarch: "64" oslist: macos - ownsdlc: '612560' + ownsdlc: "612560" description: Moddable executable: Bin/x64/Sam2017_Unrestricted type: option1 - config: - osarch: '64' + osarch: "64" oslist: windows - ownsdlc: '588580' + ownsdlc: "588580" executable: Bin/x64/Sam2017_VR.exe type: vr - config: - osarch: '64' + osarch: "64" oslist: windows - ownsdlc: '588580' + ownsdlc: "588580" description: Moddable executable: Bin/x64/Sam2017_Unrestricted_VR.exe type: vr - arguments: +gfxapi VLK config: - osarch: '64' + osarch: "64" oslist: linux - ownsdlc: '588580' + ownsdlc: "588580" executable: Bin/x64/Sam2017_VR type: vr - arguments: +gfxapi VLK config: - osarch: '64' + osarch: "64" oslist: linux - ownsdlc: '588580' + ownsdlc: "588580" description: Moddable executable: Bin/x64/Sam2017_Unrestricted_VR type: vr -'564330': +"564330": installDir: In Your Face TD launch: - config: @@ -270096,17 +265613,17 @@ description: Launch executable: InYourFaceTD.exe type: vr -'564340': +"564340": installDir: 5-in-1 Pack - Monument Builders Destination USA launch: - config: oslist: windows executable: menu.exe type: default -'56437': {} -'56438': {} -'564420': - installDir: Santa's Special Delivery +"56437": {} +"56438": {} +"564420": + installDir: "Santa's Special Delivery" launch: - config: oslist: windows @@ -270114,24 +265631,24 @@ type: default - config: oslist: macos - executable: SSD.app\\Contents\\MacOS\\SSD + executable: "SSD.app\\\\Contents\\\\MacOS\\\\SSD" type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: SSD.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: SSD.x86_64 type: default -'564450': - installDir: Whispered Secrets The Story of Tideville Collector's Edition +"564450": + installDir: "Whispered Secrets The Story of Tideville Collector's Edition" launch: - executable: WS_TheStoryOfTideville.exe type: none -'564470': +"564470": installDir: BFO2 launch: - config: @@ -270146,38 +265663,38 @@ oslist: linux executable: Battle for Orion 2.x86 type: default -'564480': +"564480": installDir: The Great Wobo Escape launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: tgwe_steam.exe type: default -'564490': +"564490": installDir: Boyar Version 1.0.3 launch: - executable: Boyar.exe type: default -'564520': {} -'564530': +"564520": {} +"564530": installDir: Pharaoh + Cleopatra launch: - executable: Pharaoh.exe type: default -'564700': +"564700": installDir: Scar of the Doll launch: - executable: Doll.exe type: default -'564710': +"564710": installDir: Soda Dungeon launch: - config: oslist: windows executable: dungeon.exe type: none -'564720': +"564720": installDir: Werther Quest launch: - config: @@ -270188,15 +265705,15 @@ oslist: macos executable: WertherQuest.app type: default -'564740': {} -'564750': +"564740": {} +"564750": installDir: Dimension Jump launch: - config: oslist: windows executable: Launcher.exe type: default -'564810': +"564810": installDir: Ticket launch: - config: @@ -270207,22 +265724,22 @@ oslist: macos executable: TICKET_mac.app type: default -'564900': +"564900": installDir: Space Hotel launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SpaceHotel.exe type: default -'564920': +"564920": installDir: Smoots Tennis Survival Zombie launch: - config: oslist: windows executable: SmootsSurvivalZombie.exe type: vr -'564940': +"564940": installDir: Alone With You launch: - config: @@ -270233,75 +265750,71 @@ oslist: macos executable: AloneWithYou.app type: default -'564950': +"564950": installDir: Starfighter Origins launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: StarfighterOriginsRM.exe type: default -'564960': +"564960": installDir: Return to Krondor launch: - executable: RtK.exe type: default -'564980': +"564980": installDir: Killer Klownz launch: - executable: Killer Klownz Release.exe type: vr -'564990': +"564990": installDir: Olav launch: - config: oslist: windows executable: Game.exe type: none -'565020': +"565020": installDir: Global Adventures launch: - - executable: release\\YYC3D.exe + - executable: "release\\\\YYC3D.exe" type: none -'565030': - installDir: Brian's High Velocity Research Center +"565030": + installDir: "Brian's High Velocity Research Center" launch: - config: oslist: windows executable: Velocity.exe type: vr -'565080': +"565080": installDir: Negligee Spring Clean Prelude launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch - description_loc: - english: Launch executable: NegligeeSpringCleanPrelude.exe type: none - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch - description_loc: - english: Launch executable: NegligeeSpringCleanPrelude-32.exe type: none -'565100': - installDir: Subliminal Realms The Masterpiece Collector's Edition +"565100": + installDir: "Subliminal Realms The Masterpiece Collector's Edition" launch: - executable: SubliminalRealms_TheMasterpiece_CE.exe type: none -'565110': +"565110": installDir: Mobile Astro launch: - config: oslist: windows executable: Mobile Astro.exe type: default -'565120': +"565120": installDir: The Station launch: - config: @@ -270310,26 +265823,26 @@ type: default - config: oslist: macos - executable: The Station.app\\Contents\\MacOS\\The Station + executable: "The Station.app\\\\Contents\\\\MacOS\\\\The Station" type: default - config: oslist: linux executable: The Station.x86_64 type: default -'565140': - installDir: Chimeras Tune of Revenge Collector's Edition +"565140": + installDir: "Chimeras Tune of Revenge Collector's Edition" launch: - executable: Chimeras_TuneOfRevenge.exe type: none -'565150': {} -'565170': +"565150": {} +"565170": installDir: Blade Strangers launch: - config: oslist: windows executable: game.exe type: default -'565180': +"565180": installDir: Dogurai launch: - config: @@ -270338,186 +265851,186 @@ executable: dogurai.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: doggo linux 64 executable: dogurai64 type: default -'565190': +"565190": installDir: Spacecats with Lasers VR launch: - executable: Spacecats.exe type: vr -'565200': +"565200": installDir: Gem Monster launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: 2/Gemmonster.exe type: vr - config: - osarch: '64' + osarch: "64" oslist: windows executable: 1/Gemmonster.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: 3/Gemmonster.exe type: othervr -'565330': +"565330": installDir: Twisted launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Twisted.exe type: default -'565340': {} -'565380': - installDir: Cargo Cult Shoot'n'Loot VR +"565340": {} +"565380": + installDir: "Cargo Cult Shoot'n'Loot VR" launch: - config: oslist: windows executable: Cargo Cult.exe type: vr -'565390': +"565390": installDir: Hyperun launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Drift.exe type: default - config: - osarch: '64' + osarch: "64" oslist: macos executable: /Drift.app type: default - config: oslist: windows - ownsdlc: '698440' + ownsdlc: "698440" description: Hyperun Music Player executable: Deluxe DLC/HyperMediaPlayer/Windows/HyperMusicPlayer.exe type: option1 - config: oslist: windows - ownsdlc: '698440' + ownsdlc: "698440" description: Hyperun Version 0.0.1 executable: Deluxe DLC/Hyperun 0.0.1/Windows/Drift.exe type: option1 - config: oslist: windows - ownsdlc: '698440' + ownsdlc: "698440" description: Hyperun Version 0.1.0 executable: Deluxe DLC/Hyperun 0.1.0/Windows/Drift.exe type: option1 - config: oslist: windows - ownsdlc: '698440' + ownsdlc: "698440" description: Hyperun Version 0.2.4 executable: Deluxe DLC/Hyperun 0.2.4/Windows/Drift.exe type: option1 - config: oslist: macos - ownsdlc: '698440' + ownsdlc: "698440" description: Hyperun Music Player executable: Deluxe DLC/HyperMediaPlayer/OSX/HyperMusicPlayer.app type: option1 - config: oslist: macos - ownsdlc: '698440' + ownsdlc: "698440" description: Hyperun Version 0.0.1 executable: Deluxe DLC/Hyperun 0.0.1/OSX/Drift.app type: option1 - config: oslist: macos - ownsdlc: '698440' + ownsdlc: "698440" description: Hyperun Version 0.1.0 executable: Deluxe DLC/Hyperun 0.1.0/OSX/Drift.app type: option1 - config: oslist: macos - ownsdlc: '698440' + ownsdlc: "698440" description: Hyperun Version 0.2.4 executable: Deluxe DLC/Hyperun 0.2.4/OSX/Drift.app type: option1 -'565410': +"565410": installDir: White Wolf Entertainment launch: - config: oslist: macos - description: 'Vampire: We Eat Blood' - executable: vampire.app\\Contents\\MacOS\\vampire + description: "Vampire: We Eat Blood" + executable: "vampire.app\\\\Contents\\\\MacOS\\\\vampire" type: option1 - config: oslist: macos - description: 'Mage: Refuge' - executable: mage.app\\Contents\\MacOS\\mage + description: "Mage: Refuge" + executable: "mage.app\\\\Contents\\\\MacOS\\\\mage" type: option1 - config: oslist: windows - description: 'Vampire: We Eat Blood' + description: "Vampire: We Eat Blood" executable: vampire.exe type: option1 - config: oslist: windows - description: 'Mage: Refuge' + description: "Mage: Refuge" executable: mage.exe type: option1 - config: oslist: linux - description: 'Vampire: We Eat Blood' + description: "Vampire: We Eat Blood" executable: vampire.x86 type: option1 - config: oslist: linux - description: 'Mage: Refuge' + description: "Mage: Refuge" executable: mage.x86 type: option1 -'565490': +"565490": installDir: Tier 1 launch: - config: oslist: windows executable: Tier1.exe type: default -'565540': +"565540": installDir: The Turkey of Christmas Past launch: - config: oslist: windows executable: The Turkey of Christmas Past.exe type: default -'565550': +"565550": installDir: Redneck Rampage launch: - config: oslist: windows executable: Launch Redneck Rampage.bat type: default - - arguments: '-conf \"./dosboxRR.conf\" -conf \"./dosboxRR_single.conf\" -noconsole' + - arguments: "-conf \\\"./dosboxRR.conf\\\" -conf \\\"./dosboxRR_single.conf\\\" -noconsole" config: oslist: macos executable: DOSBox/dosbox.app/Contents/MacOS/DOSBox type: default - - arguments: '-conf \"./dosboxRR.conf\" -conf \"./dosboxRR_single.conf\" -noconsole' + - arguments: "-conf \\\"./dosboxRR.conf\\\" -conf \\\"./dosboxRR_single.conf\\\" -noconsole" config: oslist: linux executable: dosbox/dosbox type: default -'565600': - installDir: Christmas Stories Nutcracker Collector's Edition +"565600": + installDir: "Christmas Stories Nutcracker Collector's Edition" launch: - executable: ChristmasStories_NutcrackerCE.exe type: none -'565630': - installDir: Christmas Eve Midnight's Call Collector's Edition +"565630": + installDir: "Christmas Eve Midnight's Call Collector's Edition" launch: - executable: ChristmasEve_MidnightsCall_CE.exe type: none -'565640': +"565640": installDir: Colorful Life launch: - config: @@ -270525,36 +266038,36 @@ description: Default Windows Launch executable: ColorfulLife.exe type: default -'565650': +"565650": installDir: SWAM launch: - config: oslist: windows executable: SWAM.exe type: default -'565660': +"565660": installDir: Akihabara - Feel the Rhythm launch: - config: oslist: windows executable: Akihabara.exe type: default -'565670': +"565670": installDir: kunlun fight launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: KunLunFight.exe type: vr -'565690': +"565690": installDir: ayakashigami launch: - config: oslist: windows executable: ayakashigami100.exe type: default -'565720': +"565720": installDir: Pretty Girls Panic! launch: - config: @@ -270565,36 +266078,36 @@ oslist: macos executable: PrettyGirlsPanic.app type: none -'565730': +"565730": installDir: Sanctuary VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Sanctuary_launcher.exe type: othervr - config: - osarch: '64' + osarch: "64" oslist: windows executable: Sanctuary_vr_non_VR_v4.exe type: default -'565760': {} -'565860': +"565760": {} +"565860": installDir: Tomato Way launch: - config: oslist: windows executable: TW.exe type: default -'565890': {} -'565910': +"565890": {} +"565910": installDir: Trainscape launch: - config: oslist: windows executable: Trainscape.exe type: vr -'565980': +"565980": installDir: Evertree Inn launch: - config: @@ -270609,14 +266122,14 @@ oslist: linux executable: EvertreeInn type: none -'566050': +"566050": installDir: Zeus + Poseidon launch: - executable: Zeus.exe type: default -'566060': {} -'566090': - installDir: The Bard's Tale IV +"566060": {} +"566090": + installDir: "The Bard's Tale IV" launch: - config: betakey: qa_shipping @@ -270660,14 +266173,14 @@ oslist: linux executable: BardsTale4.sh type: none -'566140': +"566140": installDir: Holo-Graham launch: - config: oslist: windows executable: game.exe type: default -'566150': +"566150": installDir: BowlingAtTheLakefront launch: - config: @@ -270675,35 +266188,35 @@ description: VR Bowling at the Lake executable: Bowling.exe type: vr -'566160': +"566160": installDir: Zup! 6 launch: - config: oslist: windows executable: Zup! 6.exe type: default -'566170': +"566170": installDir: Elephant Express VR launch: - config: oslist: windows executable: Elephant Express VR.exe type: vr -'566180': +"566180": installDir: Fractal launch: - config: oslist: windows executable: patch_0_5.exe type: vr -'566190': +"566190": installDir: The Search launch: - config: oslist: windows executable: TheSearch.exe type: default -'566200': +"566200": installDir: Steam_MMM launch: - config: @@ -270714,23 +266227,23 @@ oslist: macos executable: Game v129.app type: default -'566220': {} -'566240': +"566220": {} +"566240": installDir: TheDayAfterOrigins launch: - config: oslist: windows executable: TheDayAfter.exe type: default -'566250': +"566250": installDir: Project Almighty launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: projectAlmighty_5132win10.exe type: default -'566270': +"566270": installDir: Child Of Ault launch: - config: @@ -270741,51 +266254,51 @@ oslist: windows executable: childofault.exe type: othervr -'566290': {} -'566320': +"566290": {} +"566320": installDir: AnOctonautOdyssey launch: - config: - osarch: '64' + osarch: "64" oslist: macos executable: AnOctonautOdyssey.app type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: AnOctonautOdyssey/AnOctonautOdyssey.exe type: default -'566350': +"566350": installDir: Quizality - Christmas! launch: - config: oslist: windows executable: Quizality.exe type: vr -'566380': +"566380": installDir: SpeedBallArena launch: - - arguments: '-nonvr' + - arguments: "-nonvr" config: - osarch: '64' + osarch: "64" oslist: windows executable: SpeedBallArena.exe type: default - - arguments: '-vr' + - arguments: "-vr" config: - osarch: '64' + osarch: "64" oslist: windows executable: SpeedBallArena.exe type: vr -'566410': +"566410": installDir: Once upon a time launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: onceuponatime.exe type: default -'566420': +"566420": installDir: Marinatide launch: - config: @@ -270797,17 +266310,17 @@ executable: Marinatide.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux description: 32-bit Linux systems are not officially supported executable: Marinatide.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Marinatide.x86_64 type: default -'566430': +"566430": installDir: Ultimus bellum launch: - config: @@ -270815,12 +266328,12 @@ executable: Ultimus Bellum.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Ultimus Bellum.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Ultimus Bellum.x86_64 type: default @@ -270828,31 +266341,31 @@ oslist: macos executable: UltimusBellum.app type: default -'566440': +"566440": installDir: Necromunda Underhive Wars launch: - - arguments: '-unattended' + - arguments: "-unattended" config: - osarch: '64' + osarch: "64" oslist: windows executable: Necromunda.exe type: default - config: - ownsdlc: '1413520' + ownsdlc: "1413520" description: Artbook executable: Artbook/artbook.bat type: none workingdir: Artbook - config: - betakey: 'develop,test,shipping' - osarch: '64' + betakey: "develop,test,shipping" + osarch: "64" oslist: windows description: Launch without -unattended argument executable: Necromunda.exe type: none nameLocalized: - schinese: '涅克罗蒙达:下巢战争 (Necromunda: Underhive Wars) ' -'566490': + schinese: "涅克罗蒙达:下巢战争 (Necromunda: Underhive Wars) " +"566490": installDir: Keen launch: - config: @@ -270865,24 +266378,24 @@ type: none nameLocalized: schinese: 快刀小金 -'566530': +"566530": installDir: Mass Exodus launch: - config: oslist: windows executable: MassExodus.exe type: vr -'566540': +"566540": installDir: Labyrinth of Refrain Coven of Dusk launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: refrain.exe type: default nameLocalized: - japanese: 'ルフランの地下迷宮と魔女ノ旅団 ' -'566550': + japanese: "ルフランの地下迷宮と魔女ノ旅団 " +"566550": installDir: Headmaster launch: - config: @@ -270890,45 +266403,45 @@ executable: Headmaster.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Headmaster.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Headmaster.x86 type: default -'566560': +"566560": installDir: Fighters Unleashed launch: - config: oslist: windows executable: FU.exe type: none -'566570': +"566570": installDir: Hover Skate VR launch: - config: oslist: windows executable: HoverSkateVR.exe type: vr -'566580': +"566580": installDir: The Jigsaw Puzzle Garden launch: - config: oslist: windows executable: The Jigsaw Puzzle Garden.exe type: vr -'566640': +"566640": installDir: DinoFense launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Dinofense.exe type: vr -'566670': +"566670": installDir: Save the Ninja Clan launch: - config: @@ -270942,18 +266455,18 @@ executable: SaveTheNinjaClan.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch 64-bit executable: SaveTheNinjaClan.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch 32-bit executable: SaveTheNinjaClan.x86 type: default -'566690': +"566690": installDir: Meriwether launch: - config: @@ -270969,22 +266482,22 @@ oslist: linux executable: Meriwether.x86_64 type: none -'566700': +"566700": installDir: Eye in the Sky launch: - config: oslist: windows executable: Eye in the Sky v0.2.exe type: vr -'566730': +"566730": installDir: UMA-War VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: 菌球大战1.3.3English.exe type: vr -'566750': +"566750": installDir: Crimson Trigger launch: - config: @@ -270999,70 +266512,70 @@ oslist: linux executable: game.x86_94 type: none -'566780': +"566780": installDir: Beats Fever launch: - config: oslist: windows executable: BeatsFever.exe type: vr -'566800': +"566800": installDir: AmaranTime launch: - config: oslist: windows executable: AmaranTime Arena.exe type: vr -'566810': +"566810": installDir: Pixel bomb! bomb!! launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: PixelBombBomb.exe type: vr -'566830': {} -'566860': +"566830": {} +"566860": installDir: VR_DungeonKnight Content launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: VR DungeonKnight.exe type: vr -'566870': +"566870": installDir: VR Monster Awakens launch: - config: oslist: windows executable: VRMonsterAwakens.exe type: vr -'566880': +"566880": installDir: Henry The Hamster Handler launch: - executable: HHH.exe type: vr -'566900': +"566900": installDir: Wacky Wings launch: - executable: WW.exe type: vr -'566910': +"566910": installDir: Zombie Vikings Stab-a-thon launch: - config: oslist: windows executable: Zombie Vikings Stab-a-thon.exe type: none -'566930': - installDir: Rescue Team 6 Collector's Edition +"566930": + installDir: "Rescue Team 6 Collector's Edition" launch: - config: oslist: windows description: Launch - executable: RescueTeam6 Collector's Edition.exe + executable: "RescueTeam6 Collector's Edition.exe" type: none -'566940': +"566940": installDir: Claws & Feathers 2 launch: - config: @@ -271070,23 +266583,23 @@ description: Launch executable: ClawsAndFeathers2.exe type: none -'566970': +"566970": installDir: Escape!VR -Above the Clouds- launch: - config: oslist: windows executable: escapevrabovetheclouds.exe type: vr -'566980': +"566980": installDir: Crashimals launch: - config: oslist: windows executable: Airplane.exe type: vr -'566990': {} -'567000': {} -'567010': +"566990": {} +"567000": {} +"567010": installDir: GAME ROYALE 2 launch: - config: @@ -271099,16 +266612,16 @@ type: none - config: oslist: linux - executable: ./start + executable: "./start" type: none -'567020': +"567020": installDir: TILE launch: - config: oslist: windows executable: nw.exe type: none -'567030': +"567030": installDir: Under Leaves launch: - config: @@ -271123,30 +266636,30 @@ oslist: macos executable: UnderLeaves.app type: default -'567040': +"567040": installDir: AffordaGolf launch: - config: oslist: windows executable: AffordaGolf.exe type: none -'567060': +"567060": installDir: Putrefaction 2 Void Walker launch: - config: oslist: windows executable: Putrefaction 2.exe type: default -'567080': +"567080": installDir: WizardsWarlords launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ww64.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: ww.exe type: default @@ -271155,12 +266668,12 @@ executable: wwmac.app/Contents/MacOS/wwmac type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: wwlinux.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: wwlinux.x86_64 type: default @@ -271169,40 +266682,40 @@ oslist: windows executable: ww.exe type: default -'567090': +"567090": installDir: 8BitB launch: - executable: 8BB.exe type: none -'567130': +"567130": installDir: Boogeyman2 launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Windows64 executable: Boogeyman2_64.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows description: Windows32 executable: Boogeyman2_32.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows description: VR Launcher executable: Boogeyman2_64.exe type: vr -'567140': +"567140": installDir: Mahjong Magic Journey launch: - config: oslist: windows executable: Mahjong Magic Journey.exe type: default -'567150': +"567150": installDir: Mosaics Galore launch: - config: @@ -271213,13 +266726,13 @@ oslist: macos executable: Mosaics Galore.app type: default -'567160': +"567160": installDir: Katy and Bob Safari Cafe launch: - executable: Katy & Bob 2.exe type: none -'567170': {} -'567200': +"567170": {} +"567200": installDir: Incorp Inc launch: - config: @@ -271234,7 +266747,7 @@ oslist: linux executable: Incorp_inc.x86_64 type: default -'567210': +"567210": installDir: Bunnyrama launch: - config: @@ -271249,23 +266762,23 @@ oslist: macos executable: Bunnyrama.app type: default -'567220': {} -'567240': - installDir: Drawn™ Trail of Shadows Collector's Edition +"567220": {} +"567240": + installDir: "Drawn™ Trail of Shadows Collector's Edition" launch: - executable: DrawnIII.exe type: none -'567250': {} -'567260': +"567250": {} +"567260": installDir: Super Death Arena launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SDA.exe type: default -'567270': {} -'567280': +"567270": {} +"567280": installDir: Cube Runner launch: - config: @@ -271276,7 +266789,7 @@ oslist: macos executable: Cube Runner.app type: default -'567290': +"567290": installDir: Slash It launch: - config: @@ -271288,16 +266801,16 @@ executable: SlashIt.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: SlashIt.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: SlashIt.x86_64 type: default -'567320': +"567320": installDir: VThree launch: - config: @@ -271312,20 +266825,20 @@ oslist: macos executable: vthree.app type: default -'567340': +"567340": installDir: The Deal launch: - description: Launch executable: The Deal.exe type: none -'567370': +"567370": installDir: Atomic 79 launch: - config: oslist: windows executable: Atomic79.exe type: default -'567380': +"567380": installDir: Heartbound launch: - config: @@ -271336,55 +266849,55 @@ oslist: windows executable: Heartbound.exe type: default -'567430': +"567430": installDir: Dodge Master launch: - config: oslist: windows executable: Dodge Master Steam.exe type: none -'567480': +"567480": installDir: HEPH launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: HEPH.exe type: default -'567580': +"567580": installDir: Duke of Alpha Centauri launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: DukeOfAlphaCentauri.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: DukeOfAlphaCentauri.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: DukeOfAlphaCentauri.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: DukeOfAlphaCentauri.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: macos - executable: DukeOfAlphaCentauri.app\\Contents\\MacOS\\DukeOfAlphaCentauri + executable: "DukeOfAlphaCentauri.app\\\\Contents\\\\MacOS\\\\DukeOfAlphaCentauri" type: default - config: - osarch: '64' + osarch: "64" oslist: macos - executable: DukeOfAlphaCentauri.app\\Contents\\MacOS\\DukeOfAlphaCentauri + executable: "DukeOfAlphaCentauri.app\\\\Contents\\\\MacOS\\\\DukeOfAlphaCentauri" type: default -'567590': +"567590": installDir: Altero launch: - config: @@ -271393,23 +266906,23 @@ type: default - config: oslist: macos - executable: Altero.app\\Contents\\MacOS\\Altero + executable: "Altero.app\\\\Contents\\\\MacOS\\\\Altero" type: default - config: oslist: linux executable: Altero.x86_64 -'567600': {} -'567620': +"567600": {} +"567620": installDir: TheStrayed launch: - config: oslist: windows executable: TheStrayed_v1.01.exe type: default -'567630': +"567630": nameLocalized: schinese: 铁甲雄兵 Blood of Steel -'567640': +"567640": installDir: Danganronpa V3 Killing Harmony launch: - executable: Dangan3Win.exe @@ -271425,28 +266938,28 @@ japanese: ニューダンガンロンパV3 みんなのコロシアイ新学期 schinese: 新枪弹辩驳V3 大家自相残杀的新学期 tchinese: 新槍彈辯駁V3 大家的自相殘殺新學期 -'567660': +"567660": installDir: BaseballRiot launch: - config: oslist: windows executable: BaseballRiot.exe type: default -'567670': +"567670": installDir: Serious Sam 3 VR BFE launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Bin/x64/Sam3_VR.exe type: vr - arguments: +gfxapi VLK config: - osarch: '64' + osarch: "64" oslist: linux executable: Bin/x64/Sam3_VR type: vr -'567680': +"567680": installDir: The Pasture launch: - config: @@ -271459,12 +266972,12 @@ description: Launch executable: Disabled_local.exe type: default -'567690': +"567690": installDir: Songs of Araiah Re-Mastered Edition launch: - - arguments: '-webapp \"Songs of Araiah.webapp\"' + - arguments: "-webapp \\\"Songs of Araiah.webapp\\\"" config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: prism.exe @@ -271474,14 +266987,14 @@ description: Launch executable: Songs of Araiah.app type: default - - arguments: '-webapp \"Songs of Araiah x86.webapp\"' + - arguments: "-webapp \\\"Songs of Araiah x86.webapp\\\"" config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: prism.exe type: default -'567700': +"567700": installDir: Mekside VR launch: - config: @@ -271489,27 +267002,27 @@ description: Launch in VR mode executable: mekside.exe type: vr - - arguments: '--novr' + - arguments: "--novr" config: oslist: windows description: Launch in non-VR mode executable: mekside.exe type: default -'567730': +"567730": installDir: MerrySnowballs launch: - config: oslist: windows executable: MerrySnowballs.exe type: vr -'567750': +"567750": installDir: Gamer Career Tycoon launch: - config: oslist: windows executable: GamerCareerTycoon.exe type: default -'567780': +"567780": installDir: Satellite Repairman launch: - config: @@ -271524,7 +267037,7 @@ oslist: linux executable: srm type: default -'567800': +"567800": installDir: 12 Labours of Hercules VI Race for Olympus launch: - config: @@ -271539,15 +267052,15 @@ oslist: linux executable: Hercules6 type: none -'567840': +"567840": installDir: Brush Up VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Brush Up VR.exe type: vr -'567860': +"567860": installDir: Passage 4 launch: - config: @@ -271562,17 +267075,17 @@ oslist: linux executable: Passage4 type: none -'567890': +"567890": installDir: Zero-G -'567940': {} -'567980': +"567940": {} +"567980": installDir: Santa Rockstar Steam Edition launch: - config: oslist: windows executable: santaRockstarHD.exe type: default -'568020': +"568020": installDir: Blind Love launch: - config: @@ -271587,28 +267100,28 @@ oslist: linux executable: Blind Love.sh type: default -'568030': +"568030": installDir: Last Mage Standing launch: - config: oslist: windows executable: LastMageStanding.exe type: vr -'568040': +"568040": installDir: Macbat 64 launch: - config: oslist: windows executable: Macbat64.exe type: none -'568060': +"568060": installDir: Hyper Void launch: - config: oslist: windows executable: HyperVoid.exe type: none -'568070': +"568070": installDir: Mable & The Wood launch: - config: @@ -271623,7 +267136,7 @@ oslist: linux executable: Mable_PC type: none -'568090': +"568090": installDir: Tattletail launch: - config: @@ -271634,49 +267147,49 @@ oslist: macos executable: tattletailMac.app type: none -'568130': +"568130": installDir: Gum Guy launch: - config: oslist: windows executable: GumGuy.exe type: default -'568150': +"568150": installDir: Technoball launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Initial Game Files executable: Technoball.exe type: none -'568160': - installDir: Mayan Prophecies Ship of Spirits Collector's Edition +"568160": + installDir: "Mayan Prophecies Ship of Spirits Collector's Edition" launch: - executable: MayanProphecies_ShipOfSpiritsCE.exe type: none -'568180': +"568180": installDir: SkyKeepers launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SkyKeepers.exe type: default -'568190': +"568190": installDir: OBCIDIAN LEGACY launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: ObcidianLegacy-Win32.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: ObcidianLegacy-Win64.exe type: default -'568200': +"568200": installDir: Duo launch: - config: @@ -271687,29 +267200,29 @@ oslist: linux executable: Duo.x86_64 type: none -'568220': +"568220": installDir: LobotomyCorp launch: - config: oslist: windows executable: LobotomyCorp.exe type: none -'568240': +"568240": installDir: Kung Fu Ping Pong launch: - config: oslist: windows executable: KongFuPingPong_1.0.exe type: vr -'568250': +"568250": installDir: Wanderer The Rebirth launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: spartaGame.exe type: vr -'568300': +"568300": installDir: The Sibling Experiment launch: - config: @@ -271724,47 +267237,47 @@ oslist: macos executable: The_Sibling_Experiment.app type: default -'568310': +"568310": installDir: TRESPASS - Episode 2 launch: - executable: Trespass_Episode_02.exe type: vr -'568320': +"568320": installDir: Pictopix launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Pictopix.exe type: none - config: - osarch: '32' + osarch: "32" oslist: windows executable: Pictopix.exe type: none - config: oslist: macos - executable: Pictopix.app\\Contents\\MacOS\\Pictopix + executable: "Pictopix.app\\\\Contents\\\\MacOS\\\\Pictopix" type: none - config: oslist: linux executable: Pictopix.x86_64 type: none -'568330': +"568330": installDir: (VR)The Han Dynasty Imperial Mausoleums launch: - config: oslist: windows executable: The Han Dynasty Imperial Mausoleums VR.exe type: vr -'568340': +"568340": installDir: Behind the Memory launch: - config: oslist: windows executable: Memory.exe type: default -'568370': +"568370": installDir: Castle Battles launch: - config: @@ -271779,7 +267292,7 @@ oslist: linux executable: CastleBattles.x86 type: none -'568400': +"568400": installDir: Depths of Limbo launch: - config: @@ -271787,23 +267300,23 @@ executable: DepthsOfLimbo.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: run type: default - config: - osarch: '64' + osarch: "64" oslist: macos executable: run.sh type: default -'568420': +"568420": installDir: Donut Distraction launch: - config: oslist: windows executable: DonutDistraction.exe type: vr -'568440': +"568440": installDir: notdyingtoday launch: - config: @@ -271819,8 +267332,8 @@ oslist: linux executable: NotDyingToday.x86 type: default -'568450': {} -'568460': +"568450": {} +"568460": installDir: Ghostory launch: - config: @@ -271833,69 +267346,69 @@ type: none - config: oslist: macos - executable: Ghostory.app\\Contents\\MacOS\\Ghostory + executable: "Ghostory.app\\\\Contents\\\\MacOS\\\\Ghostory" type: none -'568470': +"568470": installDir: Waking the Glares launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Waking_The_Glares.exe type: default - - arguments: '-vr' + - arguments: "-vr" config: oslist: windows description: Oculus VR executable: Waking_The_Glares.exe type: othervr -'568480': +"568480": installDir: SpaceSlam launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Space Slam 1.01.exe type: vr - config: - osarch: '64' + osarch: "64" oslist: windows executable: Space Slam 1.01.exe type: default -'568490': +"568490": installDir: Frog Hop launch: - config: oslist: windows executable: Froghop.exe type: default - - arguments: '--editor' + - arguments: "--editor" config: oslist: windows - ownsdlc: '1437960' + ownsdlc: "1437960" executable: Froghop.exe type: editor - config: oslist: macos executable: FrogHop.app/Contents/MacOS/Frog_Hop type: default - - arguments: '--editor' + - arguments: "--editor" config: oslist: macos - ownsdlc: '1437960' + ownsdlc: "1437960" executable: FrogHop.app/Contents/MacOS/Frog_Hop type: editor - config: oslist: linux executable: assets/launch.sh type: default - - arguments: '-- --editor' + - arguments: "-- --editor" config: oslist: linux - ownsdlc: '1437960' + ownsdlc: "1437960" executable: assets/launch.sh type: editor -'568500': +"568500": installDir: Atomic Reconstruction launch: - config: @@ -271906,7 +267419,7 @@ oslist: linux executable: AtomicReconstruction type: default -'568570': +"568570": installDir: Force of Nature launch: - config: @@ -271919,22 +267432,22 @@ description: Force of Nature (DirectX 11) executable: ForceOfNatureDX11.exe type: none -'568580': +"568580": installDir: GunFleet launch: - config: oslist: windows executable: gunfleet.exe type: none -'568600': +"568600": installDir: Treehouse Basketball launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: treehousebasketball.exe type: vr -'568610': +"568610": installDir: VERSUS The Elite Trials launch: - config: @@ -271949,21 +267462,21 @@ oslist: linux executable: VersusTheEliteTrials type: none -'568650': {} -'568670': +"568650": {} +"568670": installDir: Heroes of Dark Dungeon launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Heroes of Dark Dungeon alpha.exe type: none -'568690': +"568690": installDir: Smash Party VR launch: - executable: Smash_Party.exe type: vr -'568720': +"568720": installDir: The Agony launch: - config: @@ -271974,14 +267487,14 @@ oslist: linux executable: Agony.sh type: none -'568750': +"568750": installDir: Pastry Lovers launch: - config: oslist: windows executable: PastryLovers.exe type: default -'568770': +"568770": installDir: Cinderella Phenomenon - OtomeVisual Novel launch: - config: @@ -271996,14 +267509,14 @@ oslist: linux executable: CinderellaPhenomenon.sh type: default -'568780': +"568780": installDir: Multishop Tycoon Deluxe launch: - config: oslist: windows executable: Multishop Tycoon Deluxe.exe type: default -'568800': +"568800": installDir: Summer times Afternoon launch: - config: @@ -272011,22 +267524,22 @@ oslist: windows executable: Summer.exe type: vr -'568810': +"568810": installDir: FreeStyleFootball launch: - config: oslist: windows description: Launcher - executable: Launcher\\Launcher.exe + executable: "Launcher\\\\Launcher.exe" type: none -'568830': +"568830": installDir: Witch of Ice Kingdom II launch: - config: oslist: windows executable: Game.exe type: default -'568840': +"568840": installDir: GunHero launch: - config: @@ -272037,65 +267550,65 @@ oslist: linux executable: GunHero.x86 type: default -'568860': +"568860": installDir: Psycho on the loose launch: - config: oslist: windows executable: Psycho_on_the_loose.exe type: none -'568890': {} -'568910': +"568890": {} +"568910": installDir: Ambition of the SLIMES launch: - config: oslist: windows executable: SlimeSteam.exe type: default -'568920': +"568920": installDir: The Final Specimen Arrival launch: - config: oslist: windows executable: TFSA.exe type: none -'568930': +"568930": installDir: The Land of Pain launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: bin\\win_x64\\The Land Of Pain.exe + executable: "bin\\\\win_x64\\\\The Land Of Pain.exe" type: default -'569010': +"569010": installDir: Island Racer launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: Island Racer.exe type: default - config: - osarch: '64' + osarch: "64" oslist: macos description: Launch - executable: Island Racer.app\\Contents\\MacOS\\Island Racer + executable: "Island Racer.app\\\\Contents\\\\MacOS\\\\Island Racer" type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Island Racer.x86_64 type: default -'569050': +"569050": installDir: Paul Pixel - The Awakening launch: - config: oslist: macos - executable: Paul Pixel - The Awakening.app\\Contents\\MacOS\\Paul Pixel - The Awakening + executable: "Paul Pixel - The Awakening.app\\\\Contents\\\\MacOS\\\\Paul Pixel - The Awakening" type: default -'569130': +"569130": installDir: Revenge Quest launch: - config: @@ -272110,51 +267623,51 @@ oslist: linux executable: RevengeQuest.x86 type: default -'569140': - installDir: Paranormal Pursuit The Gifted One Collector's Edition +"569140": + installDir: "Paranormal Pursuit The Gifted One Collector's Edition" launch: - executable: ParanormalPursuit_TheGiftedOneCE.exe type: none -'569150': - installDir: Dark Cases The Blood Ruby Collector's Edition +"569150": + installDir: "Dark Cases The Blood Ruby Collector's Edition" launch: - executable: DarkCases_TheBloodRuby_CE.exe type: none -'569180': +"569180": installDir: MakeVR launch: - config: oslist: windows executable: MakeVR_stmwrx.exe type: vr -'569200': +"569200": installDir: Space Rogue Classic launch: - - arguments: '-conf dosbox_src.conf -conf dosbox_src_launch_windows.conf -noconsole' + - arguments: "-conf dosbox_src.conf -conf dosbox_src_launch_windows.conf -noconsole" config: oslist: windows - executable: dosbox_windows\\dosbox.exe + executable: "dosbox_windows\\\\dosbox.exe" type: default - workingdir: dosbox_windows\\ - - arguments: '-conf dosbox_src.conf -conf dosbox_src_launch_windows.conf -noconsole' + workingdir: "dosbox_windows\\\\" + - arguments: "-conf dosbox_src.conf -conf dosbox_src_launch_windows.conf -noconsole" config: oslist: windows description: Play Space Rogue Classic in DOSBox Daum - executable: dosbox_windows\\daum\\dosbox.exe + executable: "dosbox_windows\\\\daum\\\\dosbox.exe" type: none - workingdir: dosbox_windows\\daum\\ + workingdir: "dosbox_windows\\\\daum\\\\" - config: oslist: linux - executable: dosbox_linux\\launch_src_game.sh + executable: "dosbox_linux\\\\launch_src_game.sh" type: default - workingdir: dosbox_linux\\ + workingdir: "dosbox_linux\\\\" - config: oslist: linux description: Play Space Rogue Classic in DOSBox Daum - executable: dosbox_linux\\daum\\launch_src_game_daum.sh + executable: "dosbox_linux\\\\daum\\\\launch_src_game_daum.sh" type: none - workingdir: dosbox_linux\\daum\\ -'569210': + workingdir: "dosbox_linux\\\\daum\\\\" +"569210": installDir: Yozora Rhapsody launch: - config: @@ -272169,17 +267682,17 @@ oslist: macos executable: Yozora_Rhapsody.app type: default -'569220': +"569220": installDir: Spycraft - The Great Game launch: - executable: SierraLauncher.exe type: none -'569270': - installDir: Sable Maze Sullivan River Collector's Edition +"569270": + installDir: "Sable Maze Sullivan River Collector's Edition" launch: - executable: SableMaze_SullivanRiver_CE.exe type: none -'569290': +"569290": installDir: MetamorfoseS launch: - config: @@ -272187,8 +267700,8 @@ description: Launch executable: MetamorfoseS.exe type: default -'569330': {} -'569340': +"569330": {} +"569340": installDir: Thing-in-Itself launch: - config: @@ -272199,14 +267712,14 @@ oslist: macos executable: Thing-in-Itself.app type: default -'569350': +"569350": installDir: RoboCritters launch: - config: oslist: windows executable: RoboCritters.exe type: none -'569360': +"569360": installDir: Pivot Pilot launch: - config: @@ -272221,12 +267734,12 @@ oslist: macos executable: pivotpilot.app type: default -'569370': +"569370": installDir: Bitdude launch: - executable: Bitdude.exe type: othervr -'569380': +"569380": installDir: Alicia Griffith – Lakeside Murder launch: - config: @@ -272235,23 +267748,23 @@ type: none - config: oslist: macos - executable: Alicia_Griffith-Lakeside_Murder.app\\Contents\\MacOS\\MyScript + executable: "Alicia_Griffith-Lakeside_Murder.app\\\\Contents\\\\MacOS\\\\MyScript" type: default -'569390': +"569390": installDir: Street of Sanctuary VR launch: - executable: ShooterGame.exe type: vr -'569420': +"569420": installDir: VRQB launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: VRQB.exe type: vr -'569430': - installDir: A Demon's Game - Episode 1 +"569430": + installDir: "A Demon's Game - Episode 1" launch: - executable: ADG.exe type: default @@ -272259,7 +267772,7 @@ oslist: linux executable: ADG.sh type: default -'569480': +"569480": installDir: Kingdoms and Castles launch: - config: @@ -272274,31 +267787,31 @@ oslist: linux executable: KingdomsAndCastles.x86_64 type: default -'569490': {} -'569500': +"569490": {} +"569500": installDir: Monkey Land 3D Reaper Rush launch: - config: oslist: windows executable: ReaperRush.exe type: default -'569510': {} -'569520': +"569510": {} +"569520": installDir: The Mine launch: - config: oslist: windows executable: TheMine.exe type: default -'569530': +"569530": installDir: Sky Noon launch: - config: oslist: windows executable: SkyNoon.exe type: default -'569540': {} -'569570': +"569540": {} +"569570": installDir: Light Apprentice launch: - config: @@ -272309,52 +267822,52 @@ oslist: macos executable: lapp_mac.app type: default -'569590': +"569590": installDir: The Legends of Owlia launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: owlia-1.1.2.exe type: default -'569610': +"569610": installDir: Space Distant launch: - config: oslist: windows executable: Distant_Space.exe type: default -'569630': +"569630": installDir: Out of Ammo Death Drive launch: - config: oslist: windows executable: OutOfAmmoDeathDrive.exe type: vr -'569640': +"569640": installDir: ZombieFight VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ZombieFightVR.exe type: vr -'569720': +"569720": installDir: TUNNEL DIVERS launch: - config: oslist: windows executable: TunnelDivers.exe type: default -'569760': {} -'569770': +"569760": {} +"569770": installDir: StarShip Constructor launch: - config: oslist: windows executable: SSC.exe type: default -'569800': +"569800": installDir: LEAVES - The Journey launch: - config: @@ -272367,19 +267880,15 @@ type: default - config: oslist: windows - ownsdlc: '1912350' + ownsdlc: "1912350" description: Bonus Content - description_loc: - english: Bonus Content executable: open_bonus_win.bat - config: oslist: macos - ownsdlc: '1912350' + ownsdlc: "1912350" description: Bonus Content - description_loc: - english: Bonus Content executable: open_bonus_osx.sh -'569810': +"569810": installDir: LEAVES - The Return launch: - config: @@ -272392,116 +267901,94 @@ type: default - config: oslist: windows - ownsdlc: '1912370' + ownsdlc: "1912370" description: Bonus Content - description_loc: - english: Bonus Content executable: open_bonus_win.bat - config: oslist: macos - ownsdlc: '1912370' + ownsdlc: "1912370" description: Bonus Content - description_loc: - english: Bonus Content executable: open_bonus_osx.sh -'569840': {} -'569860': +"569840": {} +"569860": installDir: Thimbleweed Park launch: - config: oslist: macos - executable: ThimbleweedPark.app\\Contents\\MacOS\\ThimbleweedPark + executable: "ThimbleweedPark.app\\\\Contents\\\\MacOS\\\\ThimbleweedPark" type: default - config: oslist: windows executable: ThimbleweedPark.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: ThimbleweedPark type: default -'569870': +"569870": installDir: Experiment Gone Rogue launch: - config: oslist: windows executable: ExperimentGoneRogueVR.exe type: vr - - arguments: '-vrmode oculus' + - arguments: "-vrmode oculus" config: oslist: windows executable: ExperimentGoneRogueVR.exe type: othervr -'569890': {} -'569900': - installDir: Timeless The Forgotten Town Collector's Edition +"569890": {} +"569900": + installDir: "Timeless The Forgotten Town Collector's Edition" launch: - executable: TheTimelessTownCE.exe type: none -'569940': +"569940": installDir: Bocce Beach launch: - config: oslist: windows executable: Bocce Beach.exe type: vr -'569970': +"569970": installDir: Chosen 2 launch: - config: oslist: windows executable: Game.exe type: none -'570': +"570": installDir: dota 2 beta launch: - - arguments: >- - -steam +engine_experimental_drop_frame_ticks 1 +voice_fadeouttime 0 -prewarm_panorama - +@panorama_experimental_overdraw_prevention 0 + - arguments: "-steam +engine_experimental_drop_frame_ticks 1 +voice_fadeouttime 0 -prewarm_panorama +@panorama_experimental_overdraw_prevention 0" config: - osarch: '64' + osarch: "64" oslist: windows description: Play Dota 2 - description_loc: - english: Play Dota 2 - sc_schinese: Play Dota 2 - executable: game\\bin\\win64\\dota2.exe - - arguments: >- - +engine_experimental_drop_frame_ticks 1 +@panorama_min_comp_layer_dimension 0 -prewarm_panorama - +@panorama_experimental_overdraw_prevention 0 + executable: "game\\\\bin\\\\win64\\\\dota2.exe" + - arguments: +engine_experimental_drop_frame_ticks 1 +@panorama_min_comp_layer_dimension 0 -prewarm_panorama +@panorama_experimental_overdraw_prevention 0 config: oslist: macos description: Play Dota 2 - description_loc: - english: Play Dota 2 - sc_schinese: Play Dota 2 executable: game/dota.sh - - arguments: >- - +engine_experimental_drop_frame_ticks 1 +@panorama_min_comp_layer_dimension 0 -prewarm_panorama - +@panorama_experimental_overdraw_prevention 0 + - arguments: +engine_experimental_drop_frame_ticks 1 +@panorama_min_comp_layer_dimension 0 -prewarm_panorama +@panorama_experimental_overdraw_prevention 0 config: - osarch: '64' + osarch: "64" oslist: linux description: Play Dota 2 - description_loc: - english: Play Dota 2 - sc_schinese: Play Dota 2 executable: game/dota.sh - - arguments: '-steam -dx11' + - arguments: "-steam -dx11" config: - osarch: '64' + osarch: "64" oslist: windows - ownsdlc: '313250' + ownsdlc: "313250" description: Launch Dota 2 - Tools - description_loc: - english: Launch Dota 2 - Tools - sc_schinese: Launch Dota 2 - Tools - executable: game\\bin\\win64\\dota2cfg.exe + executable: "game\\\\bin\\\\win64\\\\dota2cfg.exe" type: none nameLocalized: sc_schinese: Dota 2 刀塔 -'57000': +"57000": installDir: NyxQuest Kindred Spirits launch: - config: @@ -272510,30 +267997,30 @@ - config: oslist: macosx executable: NyxQuest.app -'570000': +"570000": installDir: Old Friend launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: OldFriend\\OldFriend.exe + executable: "OldFriend\\\\OldFriend.exe" type: vr -'570050': +"570050": installDir: Raiden V launch: - config: oslist: windows executable: raiden5_one.exe type: none -'570060': +"570060": installDir: TacoFace launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TacoFace.exe type: vr -'570150': +"570150": installDir: Constellation Distantia launch: - config: @@ -272541,40 +268028,40 @@ description: Distantia Desktop version executable: DistantiaWin.exe type: default - - arguments: '-vrmode openvr' + - arguments: "-vrmode openvr" config: - osarch: '64' + osarch: "64" oslist: windows executable: DistantiaWin.exe type: vr - - arguments: '-force-d3d9' + - arguments: "-force-d3d9" config: oslist: windows description: Constellation Distantia (DirectX 9.0) executable: DistantiaWin.exe type: option1 -'570230': +"570230": installDir: Deathlike launch: - - arguments: '-windowed' + - arguments: "-windowed" config: oslist: windows executable: Deathlike.exe type: vr - - arguments: '-windowed' + - arguments: "-windowed" config: oslist: macos executable: Deathlike.exe type: othervr -'570340': +"570340": installDir: GoWings Safari launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: GoWingsPC.exe type: vr -'570350': +"570350": installDir: Entschuldigung launch: - config: @@ -272589,15 +268076,15 @@ oslist: macos executable: Entschuldigung.app type: none -'570380': +"570380": installDir: Death penalty launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Death__Penalty.exe type: default -'570420': +"570420": installDir: X Rebirth VR launch: - config: @@ -272608,24 +268095,24 @@ oslist: windows executable: XRebirthVR_Oculus.exe type: othervr -'570460': +"570460": installDir: Laser League launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: LaserLeague.exe type: none nameLocalized: schinese: 镭射联盟:全球竞技 -'570470': +"570470": installDir: Escape the Bunker launch: - config: oslist: windows executable: EscapeTheBunker.exe type: vr -'570490': +"570490": installDir: SHENZHEN SOLITAIRE launch: - config: @@ -272643,108 +268130,108 @@ description: Launch executable: Shenzhen type: default -'570500': +"570500": installDir: Child Phobia Nightcoming Fears launch: - config: oslist: windows executable: Child Phobia.exe type: default -'570540': +"570540": installDir: Amazon Odyssey launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Amazon.exe type: vr -'570550': +"570550": installDir: Fearful Symmetry launch: - config: oslist: windows executable: FearfulSymmetry.exe type: none -'570580': +"570580": installDir: Zork Anthology launch: - executable: SierraLauncher.exe type: none -'570590': +"570590": installDir: Solitaire VR launch: - - arguments: '-vrmode OpenVR' + - arguments: "-vrmode OpenVR" config: - osarch: '64' + osarch: "64" oslist: windows executable: solitairevr_VALVE_NATIVE_64.exe type: vr -'570600': +"570600": installDir: Binary Trigger launch: - config: oslist: windows executable: BinaryTrigger.exe type: vr -'570680': +"570680": installDir: Zork Grand Inquisitor launch: - - arguments: '-f' + - arguments: "-f" executable: Zengine.exe type: none -'570690': +"570690": installDir: Xmas Zombie Rampage launch: - config: oslist: windows executable: Xmas Zombie Rampage.exe type: default -'570710': +"570710": installDir: Extinction launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: Blink\\Binaries\\Win64\\Extinction.exe + executable: "Blink\\\\Binaries\\\\Win64\\\\Extinction.exe" type: default -'570770': +"570770": installDir: Gujian2 launch: - config: oslist: windows - executable: Bin\\GuJian2.exe + executable: "Bin\\\\GuJian2.exe" type: default nameLocalized: sc_schinese: 古剑奇谭二(GuJian2) -'570780': +"570780": installDir: Gujian launch: - config: oslist: windows - executable: bin\\GuJian.exe + executable: "bin\\\\GuJian.exe" type: default - config: oslist: windows description: 配置程序 - executable: bin\\GuJianConfigTool.exe + executable: "bin\\\\GuJianConfigTool.exe" type: config nameLocalized: sc_schinese: 古剑奇谭(GuJian) -'570790': +"570790": installDir: NewFrontierDays launch: - config: oslist: windows executable: NewFrontierDays.exe type: none -'570810': +"570810": installDir: RageQuest launch: - config: oslist: windows executable: Game.exe type: default -'570820': +"570820": installDir: Dusty Raging Fist launch: - config: @@ -272753,9 +268240,9 @@ type: default - config: oslist: macos - executable: DRF.app\\Contents\\MacOS\\DRF + executable: "DRF.app\\\\Contents\\\\MacOS\\\\DRF" type: default -'570840': +"570840": installDir: Nekojishi launch: - config: @@ -272770,117 +268257,117 @@ oslist: linux executable: Nekojishi.sh type: default -'570850': +"570850": installDir: Metal Assault launch: - config: oslist: windows executable: Metal Assault.exe type: vr -'570860': +"570860": installDir: AudioBeats launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: AudioBeats.exe type: vr -'570890': +"570890": installDir: Fallen launch: - config: oslist: windows executable: Fallen.exe type: default -'570900': +"570900": installDir: Art Plunge launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Art Plunge.exe type: vr -'570910': +"570910": installDir: Crazy Max VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: CrazyMaxVR.exe type: vr -'570940': +"570940": installDir: DARK SOULS REMASTERED launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Default executable: DarkSoulsRemastered.exe type: default - config: betakey: dev_branch_release - osarch: '64' + osarch: "64" oslist: windows description: Release_build executable: FRPG_x64_ReleaseBEST.exe type: option1 - config: betakey: ext_master - osarch: '64' + osarch: "64" oslist: windows description: Master_build executable: FRPG_x64_MasterBEST.exe type: option1 - config: betakey: ext_release - osarch: '64' + osarch: "64" oslist: windows description: Release_build executable: FRPG_x64_ReleaseBEST.exe type: option1 - config: betakey: qa_master - osarch: '64' + osarch: "64" oslist: windows description: Master_build executable: FRPG_x64_MasterBEST.exe type: option1 - config: betakey: qa_release - osarch: '64' + osarch: "64" oslist: windows description: Release_build executable: FRPG_x64_ReleaseBEST.exe type: option1 - config: betakey: dev_branch_master - osarch: '64' + osarch: "64" oslist: windows description: Master_build executable: DarkSoulsRemastered.exe type: option1 -'570950': +"570950": installDir: Devilated launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Devilated.exe type: default -'570970': +"570970": installDir: Age of Barbarians ARENA launch: - executable: Arena.exe type: none -'570980': +"570980": installDir: Tale of Fallen Dragons launch: - config: oslist: windows executable: FallenDragons.exe type: default -'571020': - installDir: Santa's Big Adventures +"571020": + installDir: "Santa's Big Adventures" launch: - config: oslist: windows @@ -272894,47 +268381,47 @@ oslist: macos executable: Santabigadventures_mac.app type: default -'571050': +"571050": installDir: SantaSling launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: windows_content/SantaSling.exe type: vr -'571060': +"571060": installDir: Zork Nemesis The Forbidden Lands launch: - executable: SierraLauncher.exe type: none -'571080': +"571080": installDir: FormulaNext launch: - config: oslist: windows executable: FormulaNext.exe type: none -'571180': +"571180": installDir: Holiday Simulator Wacky Sleigh Ride launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SantaCrazyRide.exe type: vr -'571230': +"571230": installDir: Domino Craft VR launch: - config: oslist: windows executable: DominoCraft.exe type: vr -'571260': +"571260": installDir: THE KING OF FIGHTERS XIV launch: - executable: kofxiv.exe type: default -'571310': +"571310": installDir: SteamWorld Dig 2 launch: - config: @@ -272946,11 +268433,11 @@ executable: SteamWorld Dig 2.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Dig2 type: default -'571330': +"571330": installDir: Idioctopus launch: - config: @@ -272958,7 +268445,7 @@ executable: Idioctopus.exe type: none - config: - osarch: '64' + osarch: "64" oslist: macos executable: Idioctopus.app/Contents/MacOS/Idioctopus type: none @@ -272966,29 +268453,29 @@ oslist: linux executable: Idioctopus type: none -'571340': +"571340": installDir: SeekingEvilWendigo launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SEW.exe type: default - arguments: vr controllers vive -vrmode OpenVR config: - osarch: '64' + osarch: "64" oslist: windows description: Launch with HTC Vive executable: SEW.exe type: vr - arguments: vr controllers oculus -vrmode OpenVR config: - osarch: '64' + osarch: "64" oslist: windows description: Launch with Oculus Rift executable: SEW.exe type: vr -'571350': +"571350": installDir: DED launch: - config: @@ -272999,7 +268486,7 @@ oslist: linux executable: start_ded.sh type: default -'571430': +"571430": installDir: Drone Hero launch: - config: @@ -273010,21 +268497,21 @@ oslist: windows executable: DroneHero.exe type: default -'571500': +"571500": installDir: Magic Hour launch: - config: oslist: windows executable: MagicHour.exe type: vr -'571520': +"571520": installDir: Kalaban launch: - config: oslist: windows executable: Kalaban.exe type: default -'571530': +"571530": installDir: Superdimension Neptune VS Sega Hard Girls launch: - config: @@ -273034,105 +268521,99 @@ nameLocalized: japanese: 超次元大戦ネプテューヌVSセガハードガールズ夢の合体スペシャル tchinese: 超次元大戰戰機少女VS SEGA主機娘夢幻合體特別版 -'571550': +"571550": installDir: Hawks Tactical launch: - config: oslist: windows executable: Hawks Tactical.exe type: default -'571630': +"571630": installDir: Puzzle Island VR launch: - config: oslist: windows executable: Puzzle Island VR.exe type: vr -'571660': +"571660": installDir: Psyche Soldier VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: PsycheSoldierVR.exe type: vr -'571680': +"571680": installDir: Birthseederia launch: - config: oslist: windows executable: birthseederia.exe type: default -'571720': +"571720": installDir: Titus launch: - config: oslist: windows executable: OPU3.exe type: default -'571740': +"571740": installDir: Golf It! launch: - - arguments: '-nohmd' + - arguments: "-nohmd" config: oslist: windows description: DirectX11 executable: GolfIt.exe type: default - - arguments: '-d3d10 -nohmd' + - arguments: "-d3d10 -nohmd" config: oslist: windows description: DirectX10 executable: GolfIt.exe type: option1 - - arguments: '-vulkan -nohmd' + - arguments: "-vulkan -nohmd" config: oslist: windows description: Vulkan - experimental executable: GolfIt.exe type: option3 - - arguments: '-vr' + - arguments: "-vr" config: - osarch: '64' + osarch: "64" oslist: windows description: VR - description_loc: - english: VR executable: GolfIt.exe type: vr - - arguments: '-vr' + - arguments: "-vr" config: - osarch: '64' + osarch: "64" oslist: windows description: VR Oculus - description_loc: - english: VR Oculus executable: GolfIt.exe type: othervr - - arguments: '-nohmd -dx12' + - arguments: "-nohmd -dx12" config: betakey: dev-branch - osarch: '64' + osarch: "64" oslist: windows description: DirectX 12 - description_loc: - english: DirectX 12 executable: GolfIt.exe type: none - config: oslist: macos - executable: GolfIt-Mac-Shipping.app\\Contents\\MacOS\\GolfIt-Mac-Shipping + executable: "GolfIt-Mac-Shipping.app\\\\Contents\\\\MacOS\\\\GolfIt-Mac-Shipping" type: default -'571860': +"571860": installDir: Galactic Core The Lost Fleet launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Galactic_Core_TLF.exe type: vr -'571870': - installDir: Little Jack's Adventures +"571870": + installDir: "Little Jack's Adventures" launch: - config: oslist: windows @@ -273146,7 +268627,7 @@ oslist: linux executable: LittleJackAdventures_LINUX type: default -'571880': +"571880": installDir: Angels with Scaly Wings launch: - config: @@ -273161,8 +268642,8 @@ oslist: macos executable: Angels with Scaly Wings.app type: default -'571910': {} -'57200': +"571910": {} +"57200": installDir: Puzzle Dimension launch: - arguments: PuzzleDimension.config @@ -273174,60 +268655,60 @@ oslist: macos description: Play Puzzle Dimension executable: PuzzleDimension.app -'572000': +"572000": installDir: President Erect VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: PresidentErectVR.exe type: vr -'572010': +"572010": installDir: No Way Out launch: - executable: NoWayOut.exe type: default -'572020': - installDir: Darwin's Demons +"572020": + installDir: "Darwin's Demons" launch: - config: oslist: macos - executable: Darwin's Demons.app/Contents/MacOS/Darwin's Demons + executable: "Darwin's Demons.app/Contents/MacOS/Darwin's Demons" type: default - config: oslist: windows - executable: Darwin's Demons.exe + executable: "Darwin's Demons.exe" type: default - config: - osarch: '32' + osarch: "32" oslist: linux - executable: Darwin's Demons.x86 + executable: "Darwin's Demons.x86" type: default - config: - osarch: '64' + osarch: "64" oslist: linux - executable: Darwin's Demons.x86_64 + executable: "Darwin's Demons.x86_64" type: default -'572040': +"572040": installDir: Felis launch: - config: oslist: windows executable: Felis.exe type: none -'572050': +"572050": installDir: Call to Power II launch: - - executable: ctp2_program\\ctp\\ctp2.exe + - executable: "ctp2_program\\\\ctp\\\\ctp2.exe" type: none -'572130': +"572130": installDir: Flock VR launch: - config: oslist: windows executable: Flock.exe type: vr -'572160': +"572160": installDir: Golf for Workgroups launch: - config: @@ -273235,32 +268716,32 @@ executable: golf.exe type: default - config: - osarch: '64' + osarch: "64" oslist: macos executable: golf.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: golf.x64 type: default -'572170': +"572170": installDir: DeadTruth The Dark Path Ahead launch: - - arguments: '-windowed' + - arguments: "-windowed" config: - osarch: '64' + osarch: "64" oslist: windows executable: DeadTruth - The Dark Path Ahead.exe type: default -'572180': +"572180": installDir: Zap Zone launch: - config: oslist: windows executable: Zap Zone.exe type: none -'572220': +"572220": installDir: MageQuit launch: - config: @@ -273269,28 +268750,28 @@ type: default - config: oslist: macos - executable: Contents\\MacOS\\osx-32bit + executable: "Contents\\\\MacOS\\\\osx-32bit" type: default -'572230': +"572230": installDir: Texas Tango launch: - config: oslist: windows executable: TexasTango.exe type: none -'572240': +"572240": installDir: Snake3D launch: - executable: Snake3D.exe type: none -'572290': +"572290": installDir: The Existence Abstract launch: - config: oslist: windows executable: TheExistenceAbstract.exe type: vr -'572300': +"572300": installDir: Nyheim launch: - config: @@ -273302,31 +268783,31 @@ executable: Nyheim_Mac.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Nyheim_Linux.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Nyheim_Linux.x86_64 type: default -'572330': +"572330": installDir: The Fan launch: - config: oslist: windows executable: TheFan.exe type: default -'572410': +"572410": installDir: Steel Division launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SteelDivision.exe type: default -'572430': +"572430": installDir: Party Hard 2 launch: - config: @@ -273342,193 +268823,185 @@ oslist: macos executable: PartyHard2Game.app type: none -'572480': +"572480": installDir: Orbiz launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Orbiz 64bit.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: Orbiz 32bit.exe type: default - config: - osarch: '32' + osarch: "32" oslist: macos - executable: Orbiz 32bit.app\\Contents\\MacOS\\Orbiz 32bit + executable: "Orbiz 32bit.app\\\\Contents\\\\MacOS\\\\Orbiz 32bit" type: default - config: - osarch: '64' + osarch: "64" oslist: macos - executable: Orbiz 64bit.app\\Contents\\MacOS\\Orbiz 64bit + executable: "Orbiz 64bit.app\\\\Contents\\\\MacOS\\\\Orbiz 64bit" type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Orbiz.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Orbiz.x86_64 type: default -'572520': +"572520": installDir: Dropzone launch: - config: oslist: windows description: Dropzone Production - executable: bin\\DropzoneSteamClient_x32_rel.exe + executable: "bin\\\\DropzoneSteamClient_x32_rel.exe" type: default workingdir: bin - - arguments: '--services_url=https://dz-next-staging.sparkypants.com/' + - arguments: "--services_url=https://dz-next-staging.sparkypants.com/" config: betakey: dznext_staging-next oslist: windows description: Next - executable: bin\\DropzoneSteamClient_x32_rel.exe + executable: "bin\\\\DropzoneSteamClient_x32_rel.exe" type: option1 workingdir: bin -'572540': +"572540": installDir: Tin Hearts Prologue launch: - config: oslist: windows executable: TinHearts.exe type: vr - - arguments: '-vrmode None' + - arguments: "-vrmode None" config: betakey: jontest oslist: windows description: Play without VR executable: TinHearts.exe type: none - - arguments: '-vrmode None' + - arguments: "-vrmode None" config: betakey: alpha oslist: windows description: Play without VR executable: TinHearts.exe type: none - - arguments: '-vrmode None' + - arguments: "-vrmode None" config: betakey: ci_git_builder oslist: windows description: Play without VR - description_loc: - english: Play without VR executable: Tin Hearts.exe type: none - - arguments: '-vrmode None' + - arguments: "-vrmode None" config: betakey: milestone oslist: windows description: Play without VR - description_loc: - english: Play without VR executable: Tin Hearts.exe type: none - config: betakey: ci_git_builder description: Play with VR (ci_git_builder) - description_loc: - english: Play with VR (ci_git_builder) executable: Tin Hearts.exe type: none - config: betakey: press_demo description: PLAY THIS ONE - description_loc: - english: PLAY THIS ONE executable: Tin Hearts.exe type: none -'572570': - installDir: Weather Lord Royal Holidays Collector's Edition +"572570": + installDir: "Weather Lord Royal Holidays Collector's Edition" launch: - config: oslist: windows description: Launch executable: WeatherLord7_RoyalHolidays_CE.exe type: none -'572580': - installDir: Incredible Dracula II The Last Call Collector's Edition +"572580": + installDir: "Incredible Dracula II The Last Call Collector's Edition" launch: - config: oslist: windows description: Launch executable: Incredible_Dracula_The_Last_Call_CE.exe type: default -'572620': +"572620": installDir: Pierhead Arcade 2 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Pierhead Arcade 2.exe type: vr -'572630': +"572630": installDir: LyraVR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: LyraVR.exe type: vr -'572640': +"572640": installDir: Fake Happy End launch: - config: oslist: windows executable: Game.exe type: none -'572660': +"572660": installDir: Nick launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Old launcher executable: Nick.exe type: vr -'572700': +"572700": installDir: Nancy Drew The Sea of Darkness launch: - config: oslist: windows executable: SeaOfDarkness.exe type: none -'572710': +"572710": installDir: Nancy Drew Labyrinth of Lies launch: - config: oslist: windows executable: Labyrinth.exe type: none -'572720': +"572720": installDir: Nancy Drew The Shattered Medallion launch: - config: oslist: windows executable: Medallion.exe type: none -'572730': +"572730": installDir: Nancy Drew The Silent Spy launch: - config: oslist: windows executable: Spy.exe type: none -'572740': +"572740": installDir: Nancy Drew The Secret of Shadow Ranch launch: - config: oslist: windows executable: Game.exe type: none -'572760': +"572760": installDir: Holiday Bonus GOLD launch: - config: @@ -273541,8 +269014,8 @@ description: Launch executable: HolidayBonusGOLD.app type: none -'572870': {} -'572890': +"572870": {} +"572890": installDir: Pikuniku launch: - config: @@ -273554,42 +269027,42 @@ executable: Pikuniku.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Pikuniku.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Pikuniku.x86 type: default -'572980': +"572980": installDir: Star Dust The Book of Earth (VR) launch: - config: oslist: windows executable: SpaceShooter.exe type: vr -'57300': +"57300": installDir: Amnesia The Dark Descent launch: - config: oslist: windows - description: 'Amnesia: The Dark Descent' + description: "Amnesia: The Dark Descent" executable: Amnesia.exe - config: oslist: macos - description: 'Amnesia: The Dark Descent' + description: "Amnesia: The Dark Descent" executable: Amnesia.app - config: - osarch: '32' + osarch: "32" oslist: linux - description: 'Amnesia: The Dark Descent' + description: "Amnesia: The Dark Descent" executable: Amnesia.bin.x86 - config: - osarch: '64' + osarch: "64" oslist: linux - description: 'Amnesia: The Dark Descent' + description: "Amnesia: The Dark Descent" executable: Amnesia.bin.x86_64 - config: oslist: windows @@ -273600,16 +269073,16 @@ description: Run Settings Launcher executable: Launcher.app - config: - osarch: '32' + osarch: "32" oslist: linux description: Run Settings Launcher executable: Launcher.bin.x86 - config: - osarch: '64' + osarch: "64" oslist: linux description: Run Settings Launcher executable: Launcher.bin.x86_64 -'573040': +"573040": installDir: School of Talent SUZU-ROUTE launch: - config: @@ -273620,29 +269093,29 @@ oslist: macos executable: School_of_Talent_SUZU-ROUTE.app type: default -'573050': +"573050": installDir: Wojdan launch: - config: oslist: windows - executable: \\Wojdan-1.0-steam\\Wojdan-1.0.exe + executable: "\\\\Wojdan-1.0-steam\\\\Wojdan-1.0.exe" type: default - config: oslist: macos - executable: \\Wojdan-1.0-steam\\Wojdan-1.0.app + executable: "\\\\Wojdan-1.0-steam\\\\Wojdan-1.0.app" type: default - config: oslist: linux - executable: \\Wojdan-1.0-steam\\Wojdan-1.0.sh + executable: "\\\\Wojdan-1.0-steam\\\\Wojdan-1.0.sh" type: default -'573060': +"573060": installDir: LOGistICAL launch: - config: oslist: windows executable: LogisticalApp.exe type: none -'573070': +"573070": installDir: BAFL launch: - config: @@ -273653,7 +269126,7 @@ oslist: macos executable: bafl.app type: default -'573080': +"573080": installDir: Peregrin launch: - config: @@ -273664,11 +269137,11 @@ oslist: macos executable: peregrin.app type: default -'573090': +"573090": installDir: Stormworks launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: stormworks.exe type: default @@ -273677,50 +269150,50 @@ executable: stormworks.app type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: stormworks64.exe type: default -'573100': +"573100": installDir: Battlefleet Gothic Armada II launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: BattlefleetGothic2.exe type: default - - arguments: '-NoEAC' + - arguments: "-NoEAC" config: - betakey: 'qa_test,qa_test_2,autoupload,bfgtest,fhi_testlab,hw_test,forlive_notestexe' - osarch: '64' + betakey: "qa_test,qa_test_2,autoupload,bfgtest,fhi_testlab,hw_test,forlive_notestexe" + osarch: "64" oslist: windows description: Shipping No EAC executable: BattlefleetGothic2/Binaries/Win64/BattlefleetGothic2-Win64-Shipping.exe type: none workingdir: BattlefleetGothic2/Binaries/Win64/ - config: - betakey: 'qa_test,qa_test_2,autoupload,bfgtest,fhi_testlab,hw_test,forlive_notestexe' - osarch: '64' + betakey: "qa_test,qa_test_2,autoupload,bfgtest,fhi_testlab,hw_test,forlive_notestexe" + osarch: "64" oslist: windows description: Test executable: BattlefleetGothic2/Binaries/Win64/BattlefleetGothic2-Win64-Test.exe type: none workingdir: BattlefleetGothic2/Binaries/Win64/ - - arguments: '-NoEAC' + - arguments: "-NoEAC" config: - betakey: 'qa_test,qa_test_2,autoupload,bfgtest,fhi_testlab,hw_test,forlive_notestexe' - osarch: '64' + betakey: "qa_test,qa_test_2,autoupload,bfgtest,fhi_testlab,hw_test,forlive_notestexe" + osarch: "64" oslist: windows description: Test No EAC executable: BattlefleetGothic2/Binaries/Win64/BattlefleetGothic2-Win64-Test.exe type: none workingdir: BattlefleetGothic2/Binaries/Win64/ -'573110': +"573110": installDir: AWAY launch: - executable: Away.exe type: default -'573120': +"573120": installDir: Dead In Vinland launch: - config: @@ -273732,24 +269205,24 @@ executable: Dead In Vinland.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Dead In Vinland.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Dead In Vinland.x86 type: default -'573130': +"573130": installDir: Aporia launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: bin\\win_x64_game_release\\Aporia.exe + executable: "bin\\\\win_x64_game_release\\\\Aporia.exe" type: default -'573170': +"573170": installDir: Fidel launch: - config: @@ -273758,9 +269231,9 @@ type: default - config: oslist: macos - executable: Fidel.app\\Contents\\MacOS\\Fidel + executable: "Fidel.app\\\\Contents\\\\MacOS\\\\Fidel" type: default -'573210': +"573210": installDir: Mistwood Heroes launch: - config: @@ -273768,12 +269241,12 @@ description: Launch executable: Game.exe type: none -'573260': +"573260": installDir: THOSE DAMN ALIENS VR launch: - executable: Those Damn Aliens VR.exe type: vr -'573270': +"573270": installDir: Alcatraz VR Escape Room launch: - config: @@ -273781,57 +269254,57 @@ description: Launch executable: Alcatraz VR Escape Room.exe type: vr -'573280': +"573280": installDir: IslandGetaway launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: IslandGetaway.exe type: vr -'573300': +"573300": installDir: Monumental Failure launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: MonumentalFailureWin32.exe type: default - config: oslist: macos - executable: MonumentalFailureMac.app\\Contents\\MacOS\\MonumentalFailureMac + executable: "MonumentalFailureMac.app\\\\Contents\\\\MacOS\\\\MonumentalFailureMac" type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: MonumentalFailureLinux.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: MonumentalFailureLinux.x86_64 type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: MonumentalFailureWin64.exe type: default -'573320': +"573320": installDir: Underhero launch: - config: betakey: betabranch - osarch: '64' + osarch: "64" oslist: windows executable: BETA/Underhero Beta.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: Underhero.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: Underhero.exe type: default @@ -273841,62 +269314,60 @@ type: default - config: oslist: macos - executable: Contents\\MacOS\\Underhero + executable: "Contents\\\\MacOS\\\\Underhero" type: default -'573330': +"573330": installDir: Equilibrium VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: EquilibriumVR.exe type: vr -'573340': +"573340": installDir: Northern Tale 2 launch: - config: oslist: windows executable: NorthernTale2.exe type: none -'573360': +"573360": installDir: Warka Flarka Flim Flam launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: WFFF.exe type: vr -'573370': +"573370": installDir: Tyler Model 005 launch: - config: oslist: windows executable: Tyler.exe type: none -'573410': +"573410": installDir: AI War 2 launch: - - arguments: '-force-d3d11' + - arguments: "-force-d3d11" config: oslist: windows description: DirectX11 executable: AIWar2.exe type: option1 - - arguments: '-force-metal' + - arguments: "-force-metal" config: oslist: macos description: Metal - Preferred - description_loc: - english: Metal - Preferred executable: AIWar2.app type: option1 - - arguments: '-force-glcore ' + - arguments: "-force-glcore " config: oslist: linux description: OpenGL - Preferred executable: AIWar2Linux.x86_64 type: option1 - - arguments: '-force-glcore ' + - arguments: "-force-glcore " config: oslist: windows description: OpenGL @@ -273907,58 +269378,56 @@ description: Vulkan - Experimental executable: AIWar2Linux.x86_64 type: option3 - - arguments: '-force-glcore' + - arguments: "-force-glcore" config: oslist: macos description: OpenGL - Legacy Support - description_loc: - english: OpenGL - Legacy Support executable: AIWar2.app type: option2 -'573460': +"573460": installDir: PERCH launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Perch.exe type: vr -'573490': +"573490": installDir: Interstellar Transport Company launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch Windows 64 executable: Interstellar_Transport_Company_win64.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch Windows 32 executable: Interstellar_Transport_Company_win32.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Interstellar_Transport_Company_lin32.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Interstellar_Transport_Company_lin64.x86_64 type: default - config: - osarch: '64' + osarch: "64" oslist: macos executable: Interstellar_Transport_Company_mac64.app type: default - config: - osarch: '32' + osarch: "32" oslist: macos executable: Interstellar_Transport_Company_mac32.app type: default -'573520': +"573520": installDir: Crowtel Renovations launch: - config: @@ -273969,23 +269438,23 @@ oslist: macos executable: Crowtel Renovations.app type: none -'573530': +"573530": installDir: Isolation launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Isolation.exe type: default -'573550': +"573550": installDir: GoalkeepVr launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: GoalkeepVr\\GoalKeepVr.exe + executable: "GoalkeepVr\\\\GoalKeepVr.exe" type: vr -'573600': +"573600": installDir: Think of the Children launch: - config: @@ -273997,22 +269466,22 @@ oslist: windows executable: Thinkof the Children.exe type: none -'573610': +"573610": installDir: DOOORSVR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: DOOORSVR.exe type: vr -'573650': +"573650": installDir: 3 days Zoo Mystery launch: - config: oslist: windows executable: 3DayszooMystery_en.exe type: none -'573660': +"573660": installDir: AereA launch: - config: @@ -274027,12 +269496,12 @@ oslist: linux executable: AereA.x86_64 type: default -'573670': +"573670": installDir: Adelantado Trilogy. Book Two launch: - executable: Adelantado2.exe type: none -'573680': +"573680": installDir: Real Farm launch: - config: @@ -274048,56 +269517,56 @@ oslist: linux executable: RealFarm.x86_64 type: default -'573690': +"573690": installDir: Adelantado Trilogy. Book Three launch: - executable: Adelantado3.exe type: none -'573700': +"573700": installDir: Island Tribe 4 launch: - executable: island4.exe type: none -'573710': +"573710": installDir: Farm Mania 2 launch: - executable: Farm2.exe type: none -'573720': +"573720": installDir: Viking Saga Epic Adventure launch: - executable: Viking Saga - Epic Adventure.exe type: none -'573730': +"573730": installDir: Northern Tale 3 launch: - executable: NorthernTale3.exe type: none -'573740': +"573740": installDir: Northern Tale 4 launch: - config: oslist: windows executable: NorthernTale4.exe type: none -'573750': +"573750": installDir: Island Tribe 5 launch: - executable: island5.exe type: none -'573760': +"573760": installDir: Roads of Rome New Generation launch: - executable: RoR_NG.exe type: none -'573770': +"573770": installDir: RED launch: - config: oslist: windows executable: Game.exe type: config -'573780': +"573780": installDir: Xenon Valkyrie launch: - config: @@ -274115,24 +269584,24 @@ description: launch executable: XenonValkyrie.app type: none -'573790': +"573790": installDir: Imperium Galactica launch: - - arguments: '-conf dosbox_ig.conf -conf dosbox_ig_single.conf -noconsole -c exit' + - arguments: "-conf dosbox_ig.conf -conf dosbox_ig_single.conf -noconsole -c exit" config: oslist: windows description: Launch Imperium Galactica executable: DOSBOX/DOSBox.exe type: none workingdir: DOSBOX - - arguments: '-conf dosbox_ig.conf -conf dosbox_ig_settings.conf -noconsole -c exit' + - arguments: "-conf dosbox_ig.conf -conf dosbox_ig_settings.conf -noconsole -c exit" config: oslist: windows description: Launch Imperium Galactica Settings executable: DOSBOX/DOSBox.exe type: none workingdir: DOSBOX -'573800': +"573800": installDir: Natari at the Bubble Planet launch: - config: @@ -274143,7 +269612,7 @@ oslist: macos executable: Game.app type: default -'574010': +"574010": installDir: Forestry launch: - config: @@ -274154,45 +269623,45 @@ oslist: windows executable: log.exe type: othervr -'574030': +"574030": installDir: Score a goal (Physical football) launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: Score a goal.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Score a goal.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Score a goal.x86_64 type: default - config: oslist: macos - executable: Score a goal.app\\Contents\\MacOS\\Score a goal + executable: "Score a goal.app\\\\Contents\\\\MacOS\\\\Score a goal" type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: Score a goal.exe type: default -'574040': +"574040": installDir: Christmas Massacre VR launch: - config: oslist: windows executable: ChristmasMassacre.exe type: vr -'574050': +"574050": installDir: DRAGON QUEST HEROES™ II launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: DQH2.exe type: default @@ -274200,116 +269669,116 @@ oslist: windows executable: Config.exe type: config -'574070': +"574070": installDir: Space Wars Interstellar Empires launch: - - arguments: '-force-glcore -host dev.spacewars.com -port 7000 -url http://dev.spacewars.com/' + - arguments: "-force-glcore -host dev.spacewars.com -port 7000 -url http://dev.spacewars.com/" config: betakey: Devel oslist: windows description: Dev Server (OpenGL Core) executable: Spacewars.exe type: option1 - - arguments: '-foce-glcore -host dev.spacewars.com -port 7000 -url http://dev.spacewars.com/' + - arguments: "-foce-glcore -host dev.spacewars.com -port 7000 -url http://dev.spacewars.com/" config: betakey: Devel oslist: macos description: Dev Server (OpenGL Core) - executable: Spacewars.app\\Contents\\MacOS\\Spacewars + executable: "Spacewars.app\\\\Contents\\\\MacOS\\\\Spacewars" type: option1 - - arguments: '-force-glcore -host game-1.spacewars.com -port 7000 -url https://web.spacewars.com/' + - arguments: "-force-glcore -host game-1.spacewars.com -port 7000 -url https://web.spacewars.com/" config: oslist: windows description: Live Server (OpenGL Core) executable: Spacewars.exe type: option1 - - arguments: '-force-glcore -host game-1.spacewars.com -port 7000 -url https://web.spacewars.com/' + - arguments: "-force-glcore -host game-1.spacewars.com -port 7000 -url https://web.spacewars.com/" config: oslist: macos description: Live Server (OpenGL Core) - executable: Spacewars.app\\Contents\\MacOS\\Spacewars + executable: "Spacewars.app\\\\Contents\\\\MacOS\\\\Spacewars" type: option1 - - arguments: '-force-d3d11 -host dev.spacewars.com -port 7000 -url http://dev.spacewars.com/' + - arguments: "-force-d3d11 -host dev.spacewars.com -port 7000 -url http://dev.spacewars.com/" config: betakey: Devel oslist: windows description: Dev Server (DirectX 11) executable: Spacewars.exe type: option2 - - arguments: '-force-vulkan -host dev.spacewars.com -port 7000 -url http://dev.spacewars.com/' + - arguments: "-force-vulkan -host dev.spacewars.com -port 7000 -url http://dev.spacewars.com/" config: betakey: Devel oslist: windows description: Dev Server (Vulkan) executable: Spacewars.exe type: option3 - - arguments: '-force-d3d11 -host game-1.spacewars.com -port 7000 -url https://web.spacewars.com/' + - arguments: "-force-d3d11 -host game-1.spacewars.com -port 7000 -url https://web.spacewars.com/" config: oslist: windows description: Live Server (DirectX 11) executable: Spacewars.exe type: option2 - - arguments: '-force-vulkan -host game-1.spacewars.com -port 7000 -url https://web.spacewars.com/' + - arguments: "-force-vulkan -host game-1.spacewars.com -port 7000 -url https://web.spacewars.com/" config: oslist: windows description: Live Server (Vulkan) executable: Spacewars.exe type: option3 - - arguments: '-foce-gfx-metal-host dev.spacewars.com -port 7000 -url http://dev.spacewars.com/' + - arguments: "-foce-gfx-metal-host dev.spacewars.com -port 7000 -url http://dev.spacewars.com/" config: betakey: Devel oslist: macos description: Dev Server (Metal) - executable: Spacewars.app\\Contents\\MacOS\\Spacewars + executable: "Spacewars.app\\\\Contents\\\\MacOS\\\\Spacewars" type: option2 - - arguments: '-force-gfx-metal -host game-1.spacewars.com -port 7000 -url https://web.spacewars.com/' + - arguments: "-force-gfx-metal -host game-1.spacewars.com -port 7000 -url https://web.spacewars.com/" config: oslist: macos description: Live Server (Metal) - executable: Spacewars.app\\Contents\\MacOS\\Spacewars + executable: "Spacewars.app\\\\Contents\\\\MacOS\\\\Spacewars" type: option2 -'574080': +"574080": installDir: Fog of War launch: - - arguments: '-fullscreen' + - arguments: "-fullscreen" config: - osarch: '64' + osarch: "64" oslist: windows description: Default executable: Battalion_Beta/Binaries/Win64/Battalion_BetaClient.exe type: none - - arguments: '-fullscreen' + - arguments: "-fullscreen" config: - osarch: '32' + osarch: "32" oslist: windows description: Default executable: Battalion_Beta/Binaries/Win32/Battalion_BetaClient.exe type: none - - arguments: '-fullscreen' + - arguments: "-fullscreen" config: betakey: devtest - osarch: '64' + osarch: "64" oslist: windows description: Devtest executable: Battalion_Beta/Binaries/Win64/Battalion_BetaClient.exe type: none - - arguments: '-fullscreen' + - arguments: "-fullscreen" config: betakey: devtest - osarch: '32' + osarch: "32" oslist: windows description: Devtest executable: Battalion_Beta/Binaries/Win32/Battalion_BetaClient.exe type: none -'574090': +"574090": installDir: MOTHERGUNSHIP launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TowerOfGuns2.exe type: default -'574120': +"574120": installDir: Sausage Sports Club launch: - config: @@ -274318,23 +269787,23 @@ type: default - config: oslist: macos - executable: SausageSportsClub.app\\Contents\\MacOS\\SausageSportsClub + executable: "SausageSportsClub.app\\\\Contents\\\\MacOS\\\\SausageSportsClub" type: default -'574140': +"574140": installDir: ProjectLux launch: - config: oslist: windows executable: steamvr.exe type: vr -'574150': +"574150": installDir: Samurai Sword VR launch: - config: oslist: windows executable: SamuraiSwordVR.exe type: vr -'574160': +"574160": installDir: Senko no Ronde 2 launch: - executable: Ronde2.exe @@ -274346,69 +269815,65 @@ type: option1 nameLocalized: japanese: 旋光の輪舞2 -'574170': +"574170": installDir: Love Engine launch: - - arguments: '-windowed' + - arguments: "-windowed" config: - betakey: '574171' + betakey: "574171" oslist: windows - description: 'windows ' + description: "windows " executable: tuishou.exe type: default -'574180': +"574180": installDir: Remnants launch: - - arguments: '-dx11' + - arguments: "-dx11" config: - osarch: '64' + osarch: "64" oslist: windows description: Remnants DirectX 11 (Default) - description_loc: - english: Remnants DirectX 11 (Default) - executable: Remnants\\Binaries\\Win64\\Remnants-Win64-Shipping.exe + executable: "Remnants\\\\Binaries\\\\Win64\\\\Remnants-Win64-Shipping.exe" type: option1 - - arguments: '-dx12' + - arguments: "-dx12" config: - osarch: '64' + osarch: "64" oslist: windows description: Remnants DirectX 12 - description_loc: - english: Remnants DirectX 12 - executable: Remnants\\Binaries\\Win64\\Remnants-Win64-Shipping.exe + executable: "Remnants\\\\Binaries\\\\Win64\\\\Remnants-Win64-Shipping.exe" type: option2 -'574190': +"574190": installDir: VR Snowballs launch: - config: oslist: windows executable: VR Snowballs.exe type: vr -'574200': +"574200": installDir: Earth Defense Force 4.1 Wingdiver The Mission launch: - executable: WDTM.exe type: default -'574220': +"574220": installDir: ZeVR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ZeVR.exe type: vr -'574230': +"574230": installDir: Mitosis launch: - config: oslist: macos - executable: Mitosis.app\\Contents\\MacOS\\Mitosis + executable: "Mitosis.app\\\\Contents\\\\MacOS\\\\Mitosis" type: default - config: oslist: windows executable: Mitosis.exe type: default -'574260': +"574260": installDir: The Secret Order 5 launch: - config: @@ -274417,13 +269882,13 @@ executable: TheSecretOrder5.exe type: none - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: TheSecretOrder5_i386 type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: TheSecretOrder5_amd64 @@ -274433,7 +269898,7 @@ description: Launch executable: mac_steam.app/Contents/MacOS/mac_steam type: none -'574270': +"574270": installDir: Lost Grimoires 2 launch: - config: @@ -274442,13 +269907,13 @@ executable: LostGrimoires2.exe type: none - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: LostGrimoires2_i386 type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: LostGrimoires2_amd64 @@ -274458,7 +269923,7 @@ description: Launch executable: mac_steam.app/Contents/MacOS/mac_steam type: none -'574310': +"574310": installDir: The Mooseman launch: - config: @@ -274473,28 +269938,28 @@ oslist: linux executable: Mooseman.x86 type: none -'574410': +"574410": installDir: Demon Grade launch: - config: oslist: windows executable: DemonGradeSteamVR.exe type: vr -'574420': +"574420": installDir: Dr Doyle - Mystery Of The Cloche Hat launch: - config: oslist: windows executable: DrDoyle.exe type: default -'574440': +"574440": installDir: Ripple Effect launch: - config: oslist: windows executable: RippleEffect.exe type: vr -'574500': +"574500": installDir: Gearend launch: - config: @@ -274509,35 +269974,35 @@ oslist: linux executable: run_linux.sh type: default -'574510': {} -'574520': +"574510": {} +"574520": installDir: EnterVR launch: - config: oslist: windows executable: EnterVR/EnterVR.exe type: vr -'574530': +"574530": installDir: TheVeteranVR launch: - config: oslist: windows executable: TheVeteranVR.exe type: vr -'574560': - installDir: 'Dude, Stop' +"574560": + installDir: "Dude, Stop" launch: - config: oslist: windows - executable: 'Dude, Stop.exe' + executable: "Dude, Stop.exe" type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: DudeStop.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: DudeStop.x86_64 type: none @@ -274545,7 +270010,7 @@ oslist: macos executable: DudeStop.app type: none -'574580': +"574580": installDir: to_the_capital launch: - config: @@ -274556,26 +270021,26 @@ oslist: linux executable: To The Capital type: none -'574590': +"574590": installDir: Koloro launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Koloro.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: Koloro.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Koloro.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Koloro.x86 type: default @@ -274583,28 +270048,28 @@ oslist: macos executable: Koloro.app type: default -'574620': {} -'574630': {} -'574640': +"574620": {} +"574630": {} +"574640": installDir: Unalive launch: - executable: Unalive.exe type: none -'574690': - installDir: Mr. Triangle's Adventure +"574690": + installDir: "Mr. Triangle's Adventure" launch: - config: oslist: windows executable: triangleadventure.exe type: none -'574710': +"574710": installDir: Dark Shores launch: - config: oslist: windows executable: DarkShores.exe type: default -'574720': +"574720": installDir: LittleBigWorkshop launch: - config: @@ -274615,14 +270080,14 @@ oslist: macos executable: LittleBigWorkshop.app/Contents/MacOS/Little Big Workshop type: default -'574740': +"574740": installDir: Fausts Alptraum launch: - config: oslist: windows executable: Game.exe type: none -'574760': +"574760": installDir: Starship Theory launch: - config: @@ -274630,7 +270095,7 @@ executable: StarshipTheory.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Starship Theory.x86_64 type: default @@ -274638,77 +270103,77 @@ oslist: macos executable: starshiptheory.app type: default -'574780': +"574780": installDir: Naughty Or Nice launch: - config: oslist: windows executable: NaughtyOrNice.exe type: vr -'574810': {} -'574820': +"574810": {} +"574820": installDir: Cat or Bread launch: - config: oslist: windows executable: CatOrBread.exe type: default -'574850': {} -'574860': +"574850": {} +"574860": installDir: Pale Moon Crisis launch: - config: oslist: windows executable: PMC.exe type: default -'574890': +"574890": installDir: Forgotten Chambers launch: - config: oslist: windows executable: Forgotten Chambers.exe type: vr -'574910': +"574910": installDir: The Bits That Saved The Universe launch: - config: oslist: windows executable: TheBitsThatSavedTheUniverse-1.1.exe type: default -'574920': +"574920": installDir: SpaceJourneyVR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SpacejourneyVR.exe type: vr -'574940': +"574940": installDir: Downward Spiral launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: white.exe type: vr -'574980': - installDir: Them's Fightin' Herds +"574980": + installDir: "Them's Fightin' Herds" launch: - config: oslist: windows - executable: Them's Fightin' Herds.exe + executable: "Them's Fightin' Herds.exe" type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: ThemsFightinHerds.Linux.x64 type: default - config: oslist: macos - executable: Them's Fighting Herds.app/Contents/MacOS/Them's Fighting Herds + executable: "Them's Fighting Herds.app/Contents/MacOS/Them's Fighting Herds" type: default -'575000': {} -'575010': +"575000": {} +"575010": installDir: Celestial Crossing launch: - config: @@ -274726,7 +270191,7 @@ description: Launch executable: CelestialCrossing.sh type: default -'575030': +"575030": installDir: Baru and the Spirit Prince launch: - config: @@ -274741,8 +270206,8 @@ oslist: linux executable: Baru.sh type: default -'575040': {} -'575050': +"575040": {} +"575050": installDir: Little Triangle launch: - config: @@ -274754,7 +270219,7 @@ oslist: macos executable: LittleTriangle.app type: none -'575060': +"575060": installDir: nemo_do launch: - config: @@ -274762,33 +270227,33 @@ executable: nemo_do.app type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: nemo_do.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: nemo_do.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: nemo_do.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: nemo_do.x86_64 type: default -'575080': +"575080": installDir: Pleasure in Dream launch: - config: oslist: windows executable: Pleasure in Dream.exe type: default -'575090': +"575090": installDir: Flame of Memory launch: - config: @@ -274803,40 +270268,40 @@ oslist: macos executable: flameofmemory.app type: default -'575100': +"575100": installDir: Nukklerma launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch Nukklerma executable: NukklermaRobot Warfare.exe type: default -'575110': +"575110": installDir: Magic Lantern launch: - config: oslist: windows executable: MagicLantern.exe type: vr -'575130': {} -'575140': {} -'575160': +"575130": {} +"575140": {} +"575160": installDir: Art of Stealth launch: - config: oslist: windows - executable: Art of Stealth\\PlayTheArtOfStealth.exe + executable: "Art of Stealth\\\\PlayTheArtOfStealth.exe" type: default -'575170': {} -'575210': +"575170": {} +"575210": installDir: Happy Drummer VR launch: - config: oslist: windows executable: drummer.exe type: vr -'575330': +"575330": installDir: Oh...Sir! The Hollywood Roast launch: - config: @@ -274845,17 +270310,17 @@ type: default - config: oslist: macos - executable: ohsirthr.app\\Contents\\MacOS\\ohsirthr + executable: "ohsirthr.app\\\\Contents\\\\MacOS\\\\ohsirthr" type: none -'575340': +"575340": installDir: Chessaria The Tactical Adventure launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Chessaria.exe type: default - - arguments: '--nowrap' + - arguments: "--nowrap" config: oslist: macos executable: Chessaria.app @@ -274864,53 +270329,53 @@ oslist: linux executable: Chessaria.x86_64 type: none -'575360': +"575360": installDir: Ultimagus launch: - config: oslist: windows executable: Ultimagus.exe type: default -'575400': +"575400": installDir: Try Hard Parking launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TryHardParking-1.01a-Win.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Try-Hard-Parking-Linux-1.02a.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Try-Hard-Parking-Linux-1.02a.x86_64 type: default - config: oslist: macos - executable: Mac.app\\Contents\\MacOS\\Mac + executable: "Mac.app\\\\Contents\\\\MacOS\\\\Mac" type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: Try-Hard-Parking-1.02A-32it.exe type: default -'575420': +"575420": installDir: Chocolate launch: - executable: Chocolate.exe type: vr -'575430': +"575430": installDir: VR Home launch: - config: oslist: windows executable: vrhome.exe type: vr -'575450': +"575450": installDir: Graceful Explosion Machine launch: - config: @@ -274918,24 +270383,24 @@ description: Launch executable: gem.exe type: default -'575460': {} -'575470': {} -'575480': +"575460": {} +"575470": {} +"575480": installDir: WAGAMAMA HIGH SPEC launch: - config: oslist: windows executable: WagamamaHighSpec.exe type: default -'575490': - installDir: Let's Draw +"575490": + installDir: "Let's Draw" launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: Let's Draw.exe + executable: "Let's Draw.exe" type: none -'575510': +"575510": installDir: Sakura Agent launch: - config: @@ -274946,16 +270411,16 @@ oslist: linux executable: SakuraAgent.sh type: none -'575540': +"575540": installDir: VRGolfOnline launch: - - arguments: '-sns steam' + - arguments: "-sns steam" config: oslist: windows description: Launch executable: VRGolfOnline.exe type: vr -'575550': +"575550": installDir: Hell Girls launch: - config: @@ -274966,59 +270431,59 @@ oslist: macos executable: game.app type: default -'575560': +"575560": installDir: Space Badminton VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Space Badminton VR.exe type: vr -'575570': +"575570": installDir: ICED launch: - config: oslist: windows executable: ICED.exe type: default - - arguments: '-force-d3d9' + - arguments: "-force-d3d9" config: oslist: windows description: Force DX9 executable: ICED.exe type: option1 -'575580': +"575580": installDir: Queen of Seas launch: - config: oslist: windows executable: Queen of Seas.exe type: none -'575590': +"575590": installDir: Balloon Popping Pigs launch: - config: oslist: windows executable: balloon_popping_pigs_PC.exe type: default -'575600': +"575600": installDir: 2017 VR launch: - config: oslist: windows executable: ShooterGame.exe type: vr -'575620': {} -'575630': +"575620": {} +"575630": installDir: Permute launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: x86/Permute.exe type: none - config: - osarch: '64' + osarch: "64" oslist: windows executable: x64/Permute.exe type: none @@ -275027,53 +270492,53 @@ executable: Permute.app type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: Permute.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: Permute.x86_64 type: none -'575640': +"575640": installDir: Zup! 3 launch: - config: oslist: windows executable: Zup! 3.exe type: default -'575650': - installDir: Lily's Day Off +"575650": + installDir: "Lily's Day Off" launch: - config: oslist: windows - executable: Lily's Day Off.exe + executable: "Lily's Day Off.exe" type: default - config: oslist: macos - executable: Contents\\MacOS\\Lily's Day Off Mac 6 + executable: "Contents\\\\MacOS\\\\Lily's Day Off Mac 6" type: default - config: oslist: linux - executable: Lily's Day Off.x86 + executable: "Lily's Day Off.x86" type: default -'575660': {} -'575670': +"575660": {} +"575670": installDir: Five Elements launch: - config: oslist: windows executable: Five Elements.exe type: default -'575680': +"575680": installDir: Square n Fair launch: - config: oslist: windows executable: SquareAndFair.exe type: default -'575690': +"575690": installDir: PARKAN THE IMPERIAL CHRONICLES launch: - config: @@ -275083,63 +270548,63 @@ type: default nameLocalized: russian: PARKAN. Хроника империи. -'575700': +"575700": installDir: Fruit Arranger launch: - config: oslist: windows executable: nw.exe type: default -'575710': - installDir: 'Jump, Step, Step' +"575710": + installDir: "Jump, Step, Step" launch: - config: - osarch: '64' - executable: Pro\\Binaries\\Win64\\Pro-Win64-Shipping.exe + osarch: "64" + executable: "Pro\\\\Binaries\\\\Win64\\\\Pro-Win64-Shipping.exe" type: none - config: - osarch: '32' - executable: Pro\\Binaries\\Win32\\Pro-Win32-Shipping.exe + osarch: "32" + executable: "Pro\\\\Binaries\\\\Win32\\\\Pro-Win32-Shipping.exe" type: none -'575720': +"575720": installDir: Mighty Party launch: - config: oslist: windows executable: Mighty_party.exe type: none -'575730': {} -'575740': {} -'575750': +"575730": {} +"575740": {} +"575750": installDir: Magic Box launch: - config: oslist: windows executable: Magic Box.exe type: default -'575760': +"575760": installDir: Project R.E.B.O.O.T 2 launch: - config: oslist: windows executable: Project R.E.B.O.O.T 2.exe type: default -'575770': +"575770": installDir: Dangerous Bullets launch: - config: oslist: windows executable: Dangerous Bullets.exe type: default -'575780': +"575780": installDir: Inner silence launch: - config: oslist: windows executable: Inner silence.exe type: default -'575800': - installDir: Arizona Rose and the Pharaohs' Riddles +"575800": + installDir: "Arizona Rose and the Pharaohs' Riddles" launch: - config: oslist: windows @@ -275149,25 +270614,25 @@ oslist: macos executable: Arizona Rose 2.app type: default -'575810': +"575810": installDir: 4人打ちアクション麻雀 ACTION MAHJONG launch: - executable: am4p.exe type: none -'575820': +"575820": installDir: I Hate Running Backwards launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: I Hate Running Backwards.exe type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: I Hate Running Backwards.x86_64 type: none -'575830': +"575830": installDir: rooMaze launch: - config: @@ -275180,7 +270645,7 @@ description: Russian Version executable: rooMaze-ru.exe type: option2 -'575840': +"575840": installDir: NeverEnd launch: - config: @@ -275194,45 +270659,45 @@ executable: NeverEnd_Mac.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: NeverEnd_Linux.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: NeverEnd_Linux.x86 type: default -'575850': +"575850": installDir: Hartacon Tactics launch: - config: oslist: windows executable: Hartacon Tactics.exe type: default -'575860': +"575860": installDir: Tomb Joe launch: - executable: Tomb Joe.exe type: none -'575870': {} -'575880': +"575870": {} +"575880": installDir: 1979InvasionEarth launch: - config: oslist: windows executable: _1979_HD14.exe type: default -'575890': +"575890": installDir: Katy and Bob Way Back Home launch: - config: oslist: windows executable: kb_way_back_home.exe type: default -'575900': +"575900": installDir: Mosaics Galore 2 launch: - config: @@ -275243,17 +270708,17 @@ oslist: macos executable: Mosaics Galore 2.app type: default -'575910': {} -'575920': +"575910": {} +"575920": installDir: Felix Jumpman launch: - executable: FelixJumpman.exe type: none -'575940': +"575940": installDir: The Tenth Line launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch the game immediately. executable: ttl.exe @@ -275263,20 +270728,20 @@ description: Launch the game immediately. executable: TTL.app type: default - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" config: - osarch: '64' + osarch: "64" oslist: windows - description: 'Launch configuration screen before playing to change resolution, etc.' + description: "Launch configuration screen before playing to change resolution, etc." executable: ttl.exe type: config - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" config: oslist: macos - description: 'Launch configuration screen before playing to change resolution, etc.' + description: "Launch configuration screen before playing to change resolution, etc." executable: TTL.app type: config -'575950': +"575950": installDir: Blood Feed launch: - config: @@ -275291,7 +270756,7 @@ oslist: linux executable: BloodFeed.x86 type: none -'575960': +"575960": installDir: The Wisbey Mystery launch: - config: @@ -275302,82 +270767,82 @@ oslist: macos executable: The Wisbey Mystery.app type: none -'575970': +"575970": installDir: Golem Gates launch: - executable: CardRTS.exe type: default -'575990': +"575990": installDir: Knot launch: - config: oslist: windows executable: Knot.exe type: default -'576010': {} -'576020': +"576010": {} +"576020": installDir: finaltheosis launch: - - arguments: '-windowed' + - arguments: "-windowed" config: oslist: windows executable: nw.exe type: default -'576030': +"576030": installDir: MHRD launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: MHRD.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: mhrd type: default - config: - osarch: '64' + osarch: "64" oslist: macos executable: mhrd.app type: default -'576050': +"576050": installDir: Other worlds India launch: - executable: test32.exe type: none -'576060': +"576060": installDir: Faraway Islands launch: - config: oslist: windows executable: Faraway Islands.exe type: default -'576080': {} -'576090': {} -'576100': +"576080": {} +"576090": {} +"576100": installDir: Unknown Pharaoh launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: UnknownPharaoh.exe type: vr -'576110': +"576110": installDir: Where is my Brain! launch: - config: oslist: windows executable: WhereIsMyBrain_C.exe type: default -'576120': +"576120": installDir: Purgatory II launch: - config: oslist: windows executable: Purgatory2.exe type: none -'576130': +"576130": installDir: SOA Master of Mayhem launch: - config: @@ -275392,26 +270857,26 @@ oslist: linux executable: MasterofMayhem.x86 type: none -'576160': +"576160": installDir: A Long Road Home launch: - config: oslist: windows executable: Game.exe type: default -'57620': +"57620": installDir: Patrician IV launch: - executable: Patrician4.exe -'576230': +"576230": installDir: Home Tech VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: HomeTechVR.exe type: vr -'576260': +"576260": installDir: WindsOfTrade launch: - config: @@ -275419,16 +270884,16 @@ executable: wot.exe type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: wot.x86_64 type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: wot.x86 type: none -'576280': +"576280": installDir: Arena Hero launch: - config: @@ -275439,50 +270904,50 @@ oslist: macos executable: ArenaHero.app type: none -'576290': +"576290": installDir: Huckleberry Falls launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: hf.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: hf.exe type: default - config: oslist: macos - executable: hf.app\\Contents\\MacOS\\hf + executable: "hf.app\\\\Contents\\\\MacOS\\\\hf" type: default -'576310': +"576310": installDir: Oracle launch: - config: oslist: windows executable: Oracle.exe type: none -'576320': +"576320": installDir: Economic Conquest launch: - config: oslist: windows executable: EconomicConquest.exe type: default -'576370': +"576370": installDir: CubiansVR launch: - config: oslist: windows executable: CubiansVR.exe type: vr -'576380': +"576380": installDir: AdventuresOfAbrix launch: - executable: aBrix 2.exe type: none -'576390': +"576390": installDir: 365 Days launch: - config: @@ -275496,18 +270961,18 @@ executable: Mac.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch Linux or SteamOS - 32Bit executable: game.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch Linux or SteamOS - 64Bit executable: game.x86_64 type: default -'57640': +"57640": installDir: Broken Sword Shadow of the Templars launch: - config: @@ -275517,90 +270982,90 @@ oslist: macos executable: BS1DC.app/Contents/MacOS/BS1DC - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch 32-bit executable: i386/bs1dc_i386 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch 64-bit executable: x86_64/bs1dc_x86_64 - - arguments: '-c' + - arguments: "-c" config: oslist: windows - ownsdlc: '580430' - description: 'Broken Sword 1: Original Version' + ownsdlc: "580430" + description: "Broken Sword 1: Original Version" executable: Launcher.exe type: option1 - - arguments: '-c' + - arguments: "-c" config: oslist: macos - ownsdlc: '580430' - description: 'Broken Sword 1: Original Version' + ownsdlc: "580430" + description: "Broken Sword 1: Original Version" executable: Launcher.app/Contents/MacOS/Launcher type: option1 - - arguments: '-c' + - arguments: "-c" config: oslist: linux - ownsdlc: '580430' - description: 'Broken Sword 1: Original Version' + ownsdlc: "580430" + description: "Broken Sword 1: Original Version" executable: Launcher type: option1 -'576400': +"576400": installDir: Elisa the Innkeeper launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows executable: nw.exe type: default - config: oslist: macos - executable: nwjs.app\\Contents\\MacOS\\nwjs + executable: "nwjs.app\\\\Contents\\\\MacOS\\\\nwjs" type: default -'576410': +"576410": installDir: Nihilist Simulator launch: - config: oslist: windows executable: Nihilist Simulator.exe type: default -'576420': +"576420": installDir: The Curse Of Yendor launch: - config: oslist: windows executable: The Curse Of Yendor.exe type: default -'576440': +"576440": installDir: Horror Hospital launch: - config: oslist: windows executable: Horror Hospital.exe type: none -'576470': +"576470": installDir: ANIMALITY launch: - executable: game.exe type: default -'576480': +"576480": installDir: Drunken Fight Simulator launch: - config: oslist: windows executable: DrunkenFightSimulator.exe type: none -'57650': +"57650": installDir: Dungeons launch: - executable: DungeonsStarter.exe -'576500': +"576500": installDir: Evergarden launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Evergarden.exe type: default @@ -275609,31 +271074,31 @@ executable: Evergarden.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Evergarden.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Evergarden.x86_64 type: default -'576540': +"576540": installDir: Brother Wings launch: - config: oslist: windows executable: Brother Wings.exe type: default -'576560': {} -'576590': +"576560": {} +"576590": installDir: Puzzle Wishes launch: - config: oslist: windows executable: Puzzle Wishes.exe type: default -'576620': +"576620": installDir: VR The Puzzle Room launch: - config: @@ -275642,22 +271107,22 @@ type: vr - executable: game.exe type: none -'576640': +"576640": installDir: GUNNVR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: gunnvr.exe type: vr -'576650': +"576650": installDir: Fovos VR launch: - config: oslist: windows executable: FovosVR.exe type: vr -'576660': +"576660": installDir: Snake Party launch: - config: @@ -275666,9 +271131,9 @@ type: default - config: oslist: linux - executable: ./run.sh + executable: "./run.sh" type: default -'576670': +"576670": installDir: Sky Is Arrows launch: - config: @@ -275677,30 +271142,30 @@ type: default - config: oslist: macos - executable: Sky Is Arrows.app\\Contents\\MacOS\\Sky Is Arrows + executable: "Sky Is Arrows.app\\\\Contents\\\\MacOS\\\\Sky Is Arrows" type: default -'576690': +"576690": installDir: King of Crowns Chess Online launch: - config: oslist: windows executable: kingofcrownschess.exe type: default -'576700': +"576700": installDir: Hollow Halls launch: - config: oslist: windows executable: Hollow Halls.exe type: none -'576720': +"576720": installDir: Light And Dance VR launch: - config: oslist: windows executable: LightAndDanceVR.exe type: vr -'576730': +"576730": installDir: Spirit of maya launch: - config: @@ -275708,49 +271173,49 @@ description: Windowed executable: SOM.exe type: none -'576740': +"576740": installDir: FootRock 2 launch: - executable: build.exe type: none -'576750': +"576750": installDir: Ropes And Dragons VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: R&D for Vive.exe type: vr - config: - osarch: '64' + osarch: "64" oslist: windows executable: R&D for Oculus.exe type: othervr -'576770': +"576770": installDir: LowMagicAge launch: - config: oslist: windows executable: low_magic_age.exe type: default -'57680': +"57680": installDir: The First Templar launch: - executable: TFT.exe -'576800': +"576800": installDir: Final Bravely launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows description: Version Française executable: Game_boxed.exe type: none - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" description: English Version executable: game_boxedEN.exe type: none -'576810': +"576810": installDir: 2 Ninjas 1 Cup launch: - config: @@ -275761,22 +271226,22 @@ oslist: linux executable: run.sh type: default -'576820': +"576820": installDir: Colourise launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Colourise.exe type: vr -'576840': +"576840": installDir: RAYGUN COMMANDO VR launch: - config: oslist: windows executable: raygun_commando.exe type: vr -'576860': +"576860": installDir: Summer Nightmare launch: - config: @@ -275791,8 +271256,8 @@ oslist: linux executable: SummerNightmare.sh type: none -'576880': {} -'57690': +"576880": {} +"57690": installDir: Tropico 4 launch: - config: @@ -275802,24 +271267,24 @@ oslist: macos description: Launch executable: Tropico 4.app -'576910': {} -'576940': +"576910": {} +"576940": installDir: Hunt For Gods launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: HuntForGods.exe type: none -'576950': +"576950": installDir: Westard launch: - config: oslist: windows executable: Westard.exe type: vr -'576960': +"576960": installDir: Out Of The Box launch: - config: @@ -275831,16 +271296,16 @@ executable: OOTB.app type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: OOTB.x86_64 type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: OOTB.x86 type: none -'576980': +"576980": installDir: Western 1849 Reloaded launch: - config: @@ -275851,33 +271316,33 @@ oslist: macos executable: WPC.app type: default -'57700': +"57700": installDir: whos that flying launch: - executable: wtf.exe -'577000': +"577000": installDir: Witchcraft launch: - config: oslist: windows executable: Witchcraft.exe type: none -'577080': +"577080": installDir: A Dump in the Dark launch: - config: oslist: windows executable: A Dump in the Dark.exe type: default -'577120': +"577120": installDir: Archipelago Navigable VR Comic launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: archipelago_1.exe type: vr -'577150': +"577150": installDir: ICEBOX launch: - config: @@ -275892,7 +271357,7 @@ oslist: linux executable: Icebox.x86 type: default -'577160': +"577160": installDir: Skyling Garden Defense launch: - config: @@ -275900,99 +271365,93 @@ description: Skyling Garden Defense executable: Skyling.exe type: default -'577180': +"577180": installDir: Sin Castle launch: - config: oslist: windows executable: SinCastle.exe type: default -'577210': +"577210": installDir: QUIRK launch: - - arguments: '-vrmode OpenVR' + - arguments: "-vrmode OpenVR" config: - osarch: '64' + osarch: "64" oslist: windows executable: Quirk.exe type: vr - - arguments: '-vrmode None' + - arguments: "-vrmode None" config: - osarch: '64' + osarch: "64" oslist: windows executable: Quirk.exe type: default - config: - osarch: '64' + osarch: "64" oslist: macos executable: Quirk.app type: default -'577230': +"577230": installDir: Three Kingdoms The Last Warlord launch: - config: betakey: test_1 oslist: windows - description: '1111' - description_loc: - english: '1111' - schinese: '3344' + description: "1111" executable: threekingdoms.exe type: default - config: oslist: macos - description: '1122' - description_loc: - english: '1122' - schinese: '3344' + description: "1122" executable: The Last Warlord.app type: default nameLocalized: - french: 'Trois royaumes : Le dernier seigneur de guerre' - german: 'Three Kingdoms: Der letzte Kriegsherr' + french: "Trois royaumes : Le dernier seigneur de guerre" + german: "Three Kingdoms: Der letzte Kriegsherr" japanese: 三國志漢末覇業 koreana: 삼국지한말패업 portuguese: Três Reinos O Último Senhor da Guerra - russian: 'Три королевства: Последний военачальник' + russian: "Три королевства: Последний военачальник" sc_schinese: 三国志汉末霸业 schinese: 三国志汉末霸业 - spanish: 'Tres Reinos: El último señor de la guerra' + spanish: "Tres Reinos: El último señor de la guerra" tchinese: 三國志漢末霸業 - thai: 'สามก๊ก: ขุนศึกคนสุดท้าย' + thai: "สามก๊ก: ขุนศึกคนสุดท้าย" vietnamese: Tam quốc cuối thời Hán -'577240': {} -'577270': +"577240": {} +"577270": installDir: VRAquariumMiyabi launch: - config: oslist: windows executable: VRAquariumMiyabi.exe type: vr -'577280': +"577280": installDir: SCALPERS Turtle & the Moonshine Gang launch: - - arguments: '-popupwindow' + - arguments: "-popupwindow" config: oslist: windows executable: Scalpers.exe type: default -'577290': +"577290": installDir: Drunk or Dead launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Dod.exe type: vr - config: - osarch: '64' + osarch: "64" oslist: windows executable: Dod.exe type: othervr -'577320': +"577320": installDir: QuanticPinball launch: - - arguments: '--fullscreen' + - arguments: "--fullscreen" config: oslist: windows description: Fullscreen @@ -276003,15 +271462,15 @@ description: Windowed executable: QuanticPinball.exe type: none -'577330': +"577330": installDir: Road Fist launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: RF.exe type: default -'577360': +"577360": installDir: Luna and the Moonling launch: - config: @@ -276023,24 +271482,24 @@ executable: Luna.app/Contents/MacOS/Luna type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Luna.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Luna.x86_64 type: default -'577370': +"577370": installDir: Boost launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Boost.exe type: vr -'577380': +"577380": installDir: Draw The Way launch: - config: @@ -276051,55 +271510,55 @@ oslist: linux executable: DrawTheWay.sh type: default -'577390': +"577390": installDir: MAKE IT as an Artist launch: - config: oslist: windows executable: deathinkSim51.exe type: default -'57740': +"57740": installDir: JABIA launch: - config: oslist: windows executable: JaggedAllianceBIA.exe - config: - osarch: '64' + osarch: "64" oslist: linux executable: JabiaLinux.x86_64 - config: - osarch: '64' + osarch: "64" oslist: macos executable: JABIA.app -'577410': +"577410": installDir: The Pit - Infinity launch: - executable: Pit.exe type: none -'577440': - installDir: Kygo 'Carry Me' VR Experience +"577440": + installDir: "Kygo 'Carry Me' VR Experience" launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: KygoVR.exe type: vr -'577460': - installDir: Hunter's Grimm +"577460": + installDir: "Hunter's Grimm" launch: - config: oslist: windows executable: Hunters Grimm.exe type: none -'577470': +"577470": installDir: Last Days Of Tascaria launch: - config: oslist: windows executable: LastDaysOfTascaria.exe type: none -'577480': +"577480": installDir: Higurashi When They Cry Hou - Ch. 5 Meakashi launch: - config: @@ -276111,42 +271570,42 @@ executable: HigurashiEp05.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: HigurashiEp05.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: HigurashiEp05.x86_64 type: default nameLocalized: japanese: ひぐらしのなく頃に奉 目明し編 -'577490': +"577490": installDir: Minos Strategos launch: - config: oslist: windows executable: Minos.exe type: none - - arguments: '-force-opengl' + - arguments: "-force-opengl" config: oslist: macos - executable: minos.app\\Contents\\MacOS\\minos + executable: "minos.app\\\\Contents\\\\MacOS\\\\minos" type: none - - arguments: '-force-opengl' + - arguments: "-force-opengl" config: - osarch: '64' + osarch: "64" oslist: linux executable: minos.x86_64 type: none - - arguments: '-force-opengl' + - arguments: "-force-opengl" config: - osarch: '32' + osarch: "32" oslist: linux executable: minos.x86 type: none -'577530': +"577530": installDir: Pixel Ripped 1989 launch: - config: @@ -276154,56 +271613,56 @@ description: Pixel Ripped 1989 executable: PixelRipped1989.exe type: vr -'577560': +"577560": installDir: Wizard King launch: - config: oslist: windows executable: WizardKing.exe type: default -'577570': +"577570": installDir: The Mage Guard launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: mageguard.exe type: vr -'577580': +"577580": installDir: Gladiator Sword of Vengeance launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: IGladiator.exe type: default -'577640': +"577640": installDir: Space Station Loma OPERATIONS launch: - config: oslist: windows executable: SpaceStationLomaOperations.exe type: vr -'577670': +"577670": installDir: Demolish & Build 2018 launch: - executable: demolish.exe type: none -'577690': - installDir: Spooky's Jump Scare Mansion HD Renovation +"577690": + installDir: "Spooky's Jump Scare Mansion HD Renovation" launch: - config: oslist: windows description: Launch the game! executable: SpookyUnity.exe type: default - - arguments: '--vrLaunch OpenVR' + - arguments: "--vrLaunch OpenVR" config: oslist: windows - description: Spooky's HD VR + description: "Spooky's HD VR" executable: SpookyUnity.exe type: vr - - arguments: '--debug' + - arguments: "--debug" config: betakey: test description: Debug @@ -276213,34 +271672,34 @@ oslist: macos executable: SpookyUnity.app type: default -'577700': +"577700": installDir: THE VIDEOKID launch: - config: oslist: windows executable: VideoKid.exe type: none -'577710': +"577710": installDir: Pirates of Everseas launch: - config: oslist: windows description: x86 - executable: win32\\MMGame.Project_release.exe + executable: "win32\\\\MMGame.Project_release.exe" type: default workingdir: win32 - config: - osarch: '64' + osarch: "64" oslist: windows description: Pirates of Everseas x64 - executable: x64\\MMGame.Project_release.exe + executable: "x64\\\\MMGame.Project_release.exe" type: option1 workingdir: x64 - config: oslist: macos - executable: Pirates of Everseas.app\\Contents\\MacOS\\Pirates of Everseas + executable: "Pirates of Everseas.app\\\\Contents\\\\MacOS\\\\Pirates of Everseas" type: default -'577730': +"577730": installDir: Idle Evolution launch: - config: @@ -276255,48 +271714,48 @@ oslist: linux executable: nw type: none -'577740': +"577740": installDir: Winexy launch: - config: oslist: windows executable: Winexy.exe type: default -'577760': +"577760": installDir: Tears of a Dragon launch: - config: oslist: windows executable: Game.exe type: default -'577780': +"577780": installDir: Atramentum VR launch: - config: oslist: windows executable: Atramentum VR.exe type: vr -'577800': +"577800": installDir: NBA 2K18 launch: - executable: NBA2K18.exe type: none -'577850': +"577850": installDir: Tiny Wheels launch: - config: oslist: windows executable: tinywheels.exe type: vr -'577890': +"577890": installDir: Arena Blood on the Sand VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Arena Blood on the Sand VR.exe type: vr -'577910': +"577910": installDir: GhostBladeHD launch: - config: @@ -276314,45 +271773,45 @@ description: Launch executable: GhostBlade.exe type: none -'577940': +"577940": installDir: Killer Instinct launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: KillerInstinctX64_r.exe type: default -'577970': +"577970": installDir: Punch Planet launch: - config: oslist: windows executable: PunchPlanet.exe type: default -'577980': +"577980": installDir: Messiah launch: - executable: Launch Messiah.bat type: default -'577990': +"577990": installDir: Ignition launch: - - arguments: '-conf \"config/dosbox_ignition.conf\" -conf \"config/dosbox_igni_single.conf\" -noconsole' + - arguments: "-conf \\\"config/dosbox_ignition.conf\\\" -conf \\\"config/dosbox_igni_single.conf\\\" -noconsole" config: oslist: windows executable: DOSBox/dosbox.exe type: default - - arguments: '-conf \"config/dosbox_ignition.conf\" -conf \"config/dosbox_igni_single.conf\" -noconsole' + - arguments: "-conf \\\"config/dosbox_ignition.conf\\\" -conf \\\"config/dosbox_igni_single.conf\\\" -noconsole" config: oslist: macos executable: DOSBox/dosbox.app/Contents/MacOS/DOSBox type: default - - arguments: '-conf \"config/dosbox_ignition.conf\" -conf \"config/dosbox_igni_single.conf\" -noconsole' + - arguments: "-conf \\\"config/dosbox_ignition.conf\\\" -conf \\\"config/dosbox_igni_single.conf\\\" -noconsole" config: oslist: linux executable: dosbox/dosbox type: default -'57800': +"57800": installDir: Doc Clock - The Toasted Sandwich of Time launch: - config: @@ -276362,7 +271821,7 @@ oslist: macos description: Mac executable: Doc Clock - The Toasted Sandwich of Time.app -'578010': +"578010": installDir: Australian Football Coach launch: - config: @@ -276370,47 +271829,45 @@ executable: AFC/AFC.exe type: default workingdir: AFC -'578050': +"578050": installDir: Siege And Destroy launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Bangem.exe type: vr -'578060': +"578060": installDir: Noda launch: - config: oslist: windows executable: Noda.exe type: vr -'578080': +"578080": installDir: PUBG launch: - - arguments: >- - -LobbyUrl=https://prod-live-front.playbattlegrounds.com/index.html -XeVersion=0.1.0.0 -XeAlways - -EnableScreenshotWhenCrash -CrashSendLog -HitchFpsPercentage=5 -EnableSSLCertCheck + - arguments: "-LobbyUrl=https://prod-live-front.playbattlegrounds.com/index.html -XeVersion=0.1.0.0 -XeAlways -EnableScreenshotWhenCrash -CrashSendLog -HitchFpsPercentage=5 -EnableSSLCertCheck" config: - osarch: '64' + osarch: "64" oslist: windows - executable: TslGame\\Binaries\\Win64\\ExecPubg.exe + executable: "TslGame\\\\Binaries\\\\Win64\\\\ExecPubg.exe" type: default - - arguments: '-LobbyUrl=https://prod-live-front.playbattlegrounds.com/index.html' + - arguments: "-LobbyUrl=https://prod-live-front.playbattlegrounds.com/index.html" config: betakey: internal - osarch: '64' + osarch: "64" oslist: windows - executable: TslGame\\Binaries\\Win64\\TslGame_BE.exe + executable: "TslGame\\\\Binaries\\\\Win64\\\\TslGame_BE.exe" type: default - - arguments: '-LobbyUrl=https://prod-live-front.playbattlegrounds.com/index.html' + - arguments: "-LobbyUrl=https://prod-live-front.playbattlegrounds.com/index.html" config: betakey: depotest - osarch: '64' + osarch: "64" oslist: windows - executable: TslGame\\Binaries\\Win64\\TslGame_BE.exe + executable: "TslGame\\\\Binaries\\\\Win64\\\\TslGame_BE.exe" type: default -'578120': +"578120": installDir: slash_arena launch: - config: @@ -276425,76 +271882,70 @@ oslist: linux executable: slasharena_steam.x86_64 type: default -'578180': {} -'578190': +"578180": {} +"578190": installDir: DieselPower launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: DieselPower.exe type: vr -'578210': +"578210": installDir: A-Tech Cybernetic launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: VRFPS_1.exe type: vr -'578250': {} -'578260': {} -'578310': +"578250": {} +"578260": {} +"578310": installDir: BrainOut launch: - - arguments: >- - -XX:MaxHeapFreeRatio=15 -XX:MinHeapFreeRatio=15 -XX:+UseG1GC -Xms16m -XX:InitiatingHeapOccupancyPercent=20 - -Djava.net.preferIPv4Stack=true -jar brainout-steam.jar + - arguments: "-XX:MaxHeapFreeRatio=15 -XX:MinHeapFreeRatio=15 -XX:+UseG1GC -Xms16m -XX:InitiatingHeapOccupancyPercent=20 -Djava.net.preferIPv4Stack=true -jar brainout-steam.jar" config: oslist: windows - executable: bin\\javaw.exe + executable: "bin\\\\javaw.exe" type: default - - arguments: >- - -XX:MaxHeapFreeRatio=15 -XX:MinHeapFreeRatio=15 -XX:+UseG1GC -Xms16m -XX:InitiatingHeapOccupancyPercent=20 - -Djava.net.preferIPv4Stack=true -jar brainout-steam.jar + - arguments: "-XX:MaxHeapFreeRatio=15 -XX:MinHeapFreeRatio=15 -XX:+UseG1GC -Xms16m -XX:InitiatingHeapOccupancyPercent=20 -Djava.net.preferIPv4Stack=true -jar brainout-steam.jar" config: oslist: linux executable: bin/java type: none - - arguments: >- - -XX:MaxHeapFreeRatio=15 -XX:MinHeapFreeRatio=15 -XX:+UseG1GC -Xms16m -XX:InitiatingHeapOccupancyPercent=20 - -Djava.net.preferIPv4Stack=true -jar brainout-steam.jar + - arguments: "-XX:MaxHeapFreeRatio=15 -XX:MinHeapFreeRatio=15 -XX:+UseG1GC -Xms16m -XX:InitiatingHeapOccupancyPercent=20 -Djava.net.preferIPv4Stack=true -jar brainout-steam.jar" config: oslist: macos executable: bin/java type: default -'578320': - installDir: Dark Parables Jack and the Sky Kingdom Collector's Edition +"578320": + installDir: "Dark Parables Jack and the Sky Kingdom Collector's Edition" launch: - executable: DarkParables_JackAndTheSkyKingdom_CE.exe type: none -'578330': +"578330": installDir: LEGO City Undercover launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: LEGOLCUR_DX11.exe type: default -'578350': +"578350": installDir: Element TD launch: - config: oslist: windows executable: ETD.exe type: default -'578360': - installDir: Dark Dimensions City of Fog Collector's Edition +"578360": + installDir: "Dark Dimensions City of Fog Collector's Edition" launch: - executable: DarkDimensions_CityOfFog.exe type: none -'578390': +"578390": installDir: Remnith launch: - arguments: oculus @@ -276513,7 +271964,7 @@ description: Desktop Mode executable: Remnith.exe type: option1 -'578420': +"578420": installDir: Mars Underground launch: - config: @@ -276521,7 +271972,7 @@ executable: mars.exe type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: nw type: none @@ -276529,7 +271980,7 @@ oslist: macos executable: Mars Underground.app type: none -'578430': +"578430": installDir: PuzzlePuppers launch: - config: @@ -276563,78 +272014,78 @@ description: Old/Stable Version executable: Default Linux desktop Universal.x86 type: default -'578440': +"578440": installDir: Tales of Legends launch: - config: oslist: windows executable: Game.exe type: default -'578470': +"578470": installDir: Break Time! launch: - config: oslist: windows executable: BreakTimeVR.exe type: vr -'578590': +"578590": installDir: City Siege Factions launch: - config: oslist: windows executable: CitySiegeFactionIsland.exe type: default -'578600': +"578600": installDir: A Step Into Darkness launch: - config: oslist: windows executable: ASID.exe type: default -'578610': +"578610": installDir: Super Pixel Smash launch: - executable: sps.exe type: vr -'578620': +"578620": installDir: GORN launch: - config: oslist: windows executable: GORN.exe type: vr -'578650': +"578650": installDir: TheOuterWorlds launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: The Outer Worlds executable: TheOuterWorlds.exe type: option1 - config: - betakey: 'latest_dev, latest_inx_dev, latest_ms' - osarch: '64' + betakey: "latest_dev, latest_inx_dev, latest_ms" + osarch: "64" oslist: windows description: The Outer Worlds - Dev Build executable: TheOuterWorldsDev.exe type: option2 -'578660': +"578660": installDir: KindledCavern launch: - config: oslist: windows executable: KindledCavern.exe type: vr -'578670': +"578670": installDir: Conquest Frontier Wars launch: - executable: conquest.cmd type: default - - description: 'Open Manual, OST and Source' + - description: "Open Manual, OST and Source" executable: goodies.cmd type: none -'578690': +"578690": installDir: Dog Duty launch: - config: @@ -276649,8 +272100,8 @@ oslist: linux executable: Game.x86_64 type: default -'578720': - installDir: A Mortician's Tale +"578720": + installDir: "A Mortician's Tale" launch: - config: oslist: windows @@ -276660,37 +272111,37 @@ oslist: macos executable: morticianstale.app type: none -'578740': +"578740": installDir: SECLUSION launch: - config: oslist: windows executable: SECLUSION.exe type: default -'578760': {} -'578800': +"578760": {} +"578800": installDir: Phantom launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ProjectPhantom.exe type: default - config: betakey: newphantom1 - osarch: '64' + osarch: "64" oslist: windows executable: ProjectPhantom.exe type: default - workingdir: \\WindowsNoEditor -'578830': + workingdir: "\\\\WindowsNoEditor" +"578830": installDir: Cavern of Time launch: - description: Launch executable: nw.exe type: none -'578850': - installDir: '64.0' +"578850": + installDir: "64.0" launch: - config: oslist: windows @@ -276700,41 +272151,41 @@ oslist: macos executable: 64.0.app type: default -'578870': +"578870": installDir: MegaGlest launch: - config: - osarch: '64' + osarch: "64" oslist: linux description: MegaGlest Game executable: megaglest type: default - config: - osarch: '32' + osarch: "32" oslist: windows description: MegaGlest Game executable: megaglest.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: megaglestx64.exe type: default -'578880': +"578880": installDir: Embrace The Fear launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Embrace The Fear.exe type: vr -'578890': - installDir: Selatria Advent of the Dakk'rian Empire +"578890": + installDir: "Selatria Advent of the Dakk'rian Empire" launch: - description: Launch executable: Game.exe type: none -'578900': +"578900": installDir: Demonheart launch: - config: @@ -276742,24 +272193,24 @@ executable: demonheart.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: demonheart type: default - config: - osarch: '64' + osarch: "64" oslist: macos executable: demonheart.app type: default -'578920': +"578920": installDir: Demon Lord launch: - config: oslist: windows - executable: Demon\\Demon.exe + executable: "Demon\\\\Demon.exe" type: default workingdir: Demon -'578930': +"578930": installDir: kuso launch: - config: @@ -276774,44 +272225,44 @@ oslist: macos executable: kuso.app type: default -'57900': +"57900": installDir: Duke Nukem Forever launch: - config: oslist: windows - executable: System\\DukeForever.exe + executable: "System\\\\DukeForever.exe" - config: oslist: macos executable: Duke Nukem Forever.app -'579010': +"579010": installDir: goalunited launch: - config: oslist: windows executable: GoalunitedPro.exe type: none -'579020': +"579020": installDir: Constructor launch: - config: oslist: windows executable: Constructor.exe type: none -'579030': +"579030": installDir: GridVR launch: - config: oslist: windows executable: GridVR.exe type: vr -'579040': +"579040": installDir: Defcon VR launch: - config: oslist: windows executable: DefconVR.exe type: vr -'579050': +"579050": installDir: VRSailing by BeTomorrow launch: - config: @@ -276819,36 +272270,36 @@ description: Run VR Sailing by BeTomrrow executable: VRSailing.exe type: vr -'579080': +"579080": installDir: Snow Games VR launch: - - arguments: '-vr' + - arguments: "-vr" config: - osarch: '64' + osarch: "64" oslist: windows executable: SnowVR.exe type: vr -'579110': +"579110": installDir: Interkosmos launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: CrashVR.exe type: vr -'579120': +"579120": installDir: Unlucky Seven launch: - config: oslist: windows executable: u7.exe type: default -'579130': +"579130": installDir: LightStrike launch: - executable: LightDiskVR.exe type: vr -'579150': +"579150": installDir: Riot of the numbers launch: - config: @@ -276863,21 +272314,21 @@ oslist: linux executable: RiotoftheNumbers_linux type: default -'579160': - installDir: '579160' +"579160": + installDir: "579160" launch: - config: oslist: windows executable: glb1.2.2.exe type: vr -'579180': +"579180": installDir: Ys VIII Lacrimosa of Dana launch: - config: oslist: windows executable: ys8.exe type: default - - arguments: '--coop' + - arguments: "--coop" config: oslist: windows description: with coop (Experimental) @@ -276885,12 +272336,12 @@ type: option1 nameLocalized: japanese: イースVIII-Lacrimosa of DANA- -'579210': +"579210": installDir: Syndrome VR (Retail) launch: - executable: Syndrome.exe type: none -'579230': +"579230": installDir: Alpacapaca Dash launch: - config: @@ -276899,37 +272350,37 @@ type: default - config: oslist: macos - executable: AlpacapacaDash.app\\Contents\\MacOS\\AlpacapacaDash + executable: "AlpacapacaDash.app\\\\Contents\\\\MacOS\\\\AlpacapacaDash" type: default - config: oslist: linux executable: AlpacapacaDash.x86 type: default -'579330': +"579330": installDir: The Sorceress launch: - config: oslist: windows executable: The_Sorceress.exe type: none -'579490': +"579490": installDir: Rush launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Rushx64.exe type: default -'579560': {} -'579580': +"579560": {} +"579580": installDir: The source of evil launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: SOE\\Binaries\\Win64\\SOE-Win64-Shipping.exe + executable: "SOE\\\\Binaries\\\\Win64\\\\SOE-Win64-Shipping.exe" type: vr -'579720': +"579720": installDir: Neverout launch: - config: @@ -276941,7 +272392,7 @@ oslist: windows executable: Neverout.exe type: vr -'579760': +"579760": installDir: The Journey Down Chapter Three launch: - config: @@ -276959,113 +272410,113 @@ description: Run executable: JourneyDown3 type: none -'579780': +"579780": installDir: Mental Asylum VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Mental Asylum VR.exe type: vr -'579820': +"579820": installDir: Robinson The Journey launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: bin\\win_x64\\Robinson.exe + executable: "bin\\\\win_x64\\\\Robinson.exe" type: vr -'579840': +"579840": installDir: Bloody Trapland 2 launch: - - arguments: '-popupwindow' + - arguments: "-popupwindow" config: oslist: windows executable: BloodyTrapland2.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows - ownsdlc: '622800' + ownsdlc: "622800" executable: BloodyTrapland2 - Editor Standalone.exe type: default - config: oslist: macos executable: Bloody Trapland 2.app type: none -'579870': +"579870": installDir: Biosupremacy launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: windows_content\\Biosupremacy.exe + executable: "windows_content\\\\Biosupremacy.exe" type: default - config: - osarch: '64' + osarch: "64" oslist: macos - executable: mac_content\\Biosupremacy.app + executable: "mac_content\\\\Biosupremacy.app" type: default -'579940': +"579940": installDir: Race for the Galaxy launch: - executable: Race.exe type: default -'579950': - installDir: Marvel's Guardians of the Galaxy The Telltale Series +"579950": + installDir: "Marvel's Guardians of the Galaxy The Telltale Series" launch: - config: - osarch: '64' + osarch: "64" oslist: windows - description: Marvel's Guardians of the Galaxy + description: "Marvel's Guardians of the Galaxy" executable: Guardians.exe type: default - config: - osarch: '64' + osarch: "64" oslist: macos - executable: Marvel's Guardians of the Galaxy - The Telltale Series.app + executable: "Marvel's Guardians of the Galaxy - The Telltale Series.app" type: default -'579980': +"579980": installDir: Lost Eden launch: - config: oslist: windows executable: Launch Lost Eden.bat type: default - - arguments: '-conf \"config/dosbox_eden.conf\" -conf \"config/dosbox_eden_single.conf\" -noconsole' + - arguments: "-conf \\\"config/dosbox_eden.conf\\\" -conf \\\"config/dosbox_eden_single.conf\\\" -noconsole" config: oslist: macos executable: DOSBox/dosbox.app/Contents/MacOS/DOSBox type: default - - arguments: '-conf \"./config/dosbox_eden.conf\" -conf \"./config/dosbox_eden_single.conf\" -noconsole' + - arguments: "-conf \\\"./config/dosbox_eden.conf\\\" -conf \\\"./config/dosbox_eden_single.conf\\\" -noconsole" config: oslist: linux executable: dosbox/dosbox type: default -'580010': - installDir: Mystery Case Files The Black Veil Collector's Edition +"580010": + installDir: "Mystery Case Files The Black Veil Collector's Edition" launch: - config: oslist: windows executable: MysteryCaseFiles_TheBlackVeil_CE.exe type: default -'580040': +"580040": installDir: Formata launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Formata.exe type: default -'580060': +"580060": installDir: Cut Cut Buffet launch: - config: oslist: windows executable: CutCutBuffet.0.exe type: vr -'580150': {} -'580170': +"580150": {} +"580170": installDir: My Lovely Daughter launch: - config: @@ -277073,12 +272524,12 @@ executable: My Lovely Daughter.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: My Lovely Daughter.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: My Lovely Daughter.x86 type: default @@ -277087,7 +272538,7 @@ description: My Lovely Daughter (Default) executable: My Lovely Daughter.app type: option1 - - arguments: '-force-glcore' + - arguments: "-force-glcore" config: oslist: macos description: My Lovely Daughter -force-glcore (when having screen issue) @@ -277096,22 +272547,22 @@ nameLocalized: schinese: 我的可爱女儿 / My Lovely Daughter tchinese: 我的可爱女儿 / My Lovely Daughter -'580200': +"580200": installDir: Yonder The Cloud Catcher Chronicles launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: YonderCCC.exe type: default -'580300': +"580300": installDir: Super Stone Legacy launch: - config: oslist: windows executable: Super Stone Legacy.exe type: none -'580320': +"580320": installDir: Ashworld launch: - config: @@ -277129,14 +272580,14 @@ description: Launch executable: ashworld type: none -'580410': +"580410": installDir: Destination Pluto The VR Experience launch: - config: oslist: windows executable: PlutoVR.exe type: vr -'580420': +"580420": installDir: Tourists Kidnapped a Little Bear launch: - config: @@ -277144,88 +272595,88 @@ description: Launch executable: Tourists Kidnapped a Little Bear.exe type: none -'580430': {} -'580440': {} -'580480': +"580430": {} +"580440": {} +"580480": installDir: European Mystery Scent of Desire Collector’s Edition launch: - executable: EuropeanMystery_ScentofDesire_CE.exe type: none -'580510': +"580510": installDir: Mr Donovan launch: - config: oslist: windows executable: Mr Donovan.exe type: default -'580520': +"580520": installDir: WaterPlanet launch: - - arguments: '-nosplash' + - arguments: "-nosplash" config: - osarch: '64' + osarch: "64" oslist: windows description: VR - English - executable: WaterPlanet\\Binaries\\Win64\\WaterPlanet.exe + executable: "WaterPlanet\\\\Binaries\\\\Win64\\\\WaterPlanet.exe" type: vr - - arguments: '-nosplash -desktop' + - arguments: "-nosplash -desktop" config: - osarch: '64' + osarch: "64" oslist: windows description: Desktop Mode - English - executable: WaterPlanet\\Binaries\\Win64\\WaterPlanet.exe + executable: "WaterPlanet\\\\Binaries\\\\Win64\\\\WaterPlanet.exe" type: none - - arguments: '-nosplash -Spanish' + - arguments: "-nosplash -Spanish" config: - osarch: '64' + osarch: "64" oslist: windows description: VR - Spanish - executable: WaterPlanet\\Binaries\\Win64\\WaterPlanet.exe + executable: "WaterPlanet\\\\Binaries\\\\Win64\\\\WaterPlanet.exe" type: vr - - arguments: '-nosplash -desktop -Spanish' + - arguments: "-nosplash -desktop -Spanish" config: - osarch: '64' + osarch: "64" oslist: windows description: Desktop Mode - Spanish - executable: WaterPlanet\\Binaries\\Win64\\WaterPlanet.exe + executable: "WaterPlanet\\\\Binaries\\\\Win64\\\\WaterPlanet.exe" type: none - - arguments: '-nosplash -French' + - arguments: "-nosplash -French" config: - osarch: '64' + osarch: "64" oslist: windows description: VR - French - executable: WaterPlanet\\Binaries\\Win64\\WaterPlanet.exe + executable: "WaterPlanet\\\\Binaries\\\\Win64\\\\WaterPlanet.exe" type: vr - - arguments: '-nosplash -desktop -French' + - arguments: "-nosplash -desktop -French" config: - osarch: '64' + osarch: "64" oslist: windows description: Desktop Mode - French - executable: WaterPlanet\\Binaries\\Win64\\WaterPlanet.exe + executable: "WaterPlanet\\\\Binaries\\\\Win64\\\\WaterPlanet.exe" type: none -'580540': +"580540": installDir: MonkeyKing VR launch: - config: oslist: windows executable: MonkeyKing.exe type: vr -'580560': +"580560": installDir: Hero Barrier launch: - config: - betakey: '201701181616' + betakey: "201701181616" oslist: windows executable: Hero Barrier.exe type: default -'580570': +"580570": installDir: Lethis - Daring Discoverers launch: - config: oslist: windows executable: DaringDiscoverers.exe type: none -'580590': +"580590": installDir: Cublast HD launch: - config: @@ -277241,56 +272692,56 @@ oslist: macos executable: CublastHD.app type: default -'580630': +"580630": installDir: Dimensional Rift launch: - config: oslist: windows - executable: Dimensional_Rift\\Dimensional Rift.exe + executable: "Dimensional_Rift\\\\Dimensional Rift.exe" type: vr -'580640': +"580640": installDir: End State launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: EndState.exe type: default -'580680': +"580680": installDir: CYBER JOLT launch: - executable: Cyber Jolt.exe type: vr -'580710': +"580710": installDir: Afghanistan 11 launch: - config: oslist: windows executable: autorun.exe type: default -'580720': +"580720": installDir: Carrier Deck launch: - config: oslist: windows executable: autorun.exe type: default -'580820': +"580820": installDir: Robot Soccer Challenge launch: - config: oslist: windows executable: RobotSoccerChallenge.exe type: none -'580870': +"580870": installDir: Ballistic launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ballistic_414.exe type: none -'580880': +"580880": installDir: City of Rott Streets of Rott launch: - config: @@ -277305,15 +272756,15 @@ oslist: linux executable: CITYOFROTT type: default -'580890': +"580890": installDir: Arrow Heads launch: - config: oslist: windows executable: ArrowHeads-WIN-Steam.exe type: default -'580900': {} -'580910': +"580900": {} +"580910": installDir: idleBeer launch: - config: @@ -277328,41 +272779,41 @@ oslist: linux executable: idleBeer_linux.x86 type: none -'580930': - installDir: Redneck Deer Huntin' +"580930": + installDir: "Redneck Deer Huntin'" launch: - config: oslist: windows executable: Launch Redneck.bat type: default - - arguments: '-conf \"./dosboxRR.conf\" -conf \"./dosboxRR_hunting.conf\" -noconsole' + - arguments: "-conf \\\"./dosboxRR.conf\\\" -conf \\\"./dosboxRR_hunting.conf\\\" -noconsole" config: oslist: macos executable: DOSBox/dosbox.app/Contents/MacOS/DOSBox type: default - - arguments: '-conf \"./dosboxRR.conf\" -conf \"./dosboxRR_hunting.conf\" -noconsole' + - arguments: "-conf \\\"./dosboxRR.conf\\\" -conf \\\"./dosboxRR_hunting.conf\\\" -noconsole" config: oslist: linux executable: dosbox/dosbox type: default -'580940': +"580940": installDir: Redneck Rampage Rides Again launch: - config: oslist: windows executable: Launch Redneck client.bat type: default - - arguments: '-conf \"./dosboxRR.conf\" -conf \"./dosboxRR_rides_again.conf\" -noconsole' + - arguments: "-conf \\\"./dosboxRR.conf\\\" -conf \\\"./dosboxRR_rides_again.conf\\\" -noconsole" config: oslist: macos executable: DOSBox/dosbox.app/Contents/MacOS/DOSBox type: default - - arguments: '-conf \"./dosboxRR.conf\" -conf \"./dosboxRR_rides_again.conf\" -noconsole' + - arguments: "-conf \\\"./dosboxRR.conf\\\" -conf \\\"./dosboxRR_rides_again.conf\\\" -noconsole" config: oslist: linux executable: dosbox/dosbox type: default -'580950': +"580950": installDir: Arcane Maelstrom launch: - config: @@ -277373,28 +272824,28 @@ oslist: macos executable: Arcane Maelstrom.app type: none -'580960': {} -'580970': {} -'580990': {} -'581000': {} -'581010': {} -'581030': +"580960": {} +"580970": {} +"580990": {} +"581000": {} +"581010": {} +"581030": installDir: The Last Hope Trump vs Mafia launch: - config: oslist: windows executable: The Last Hope Trump vs Mafia.exe type: default -'581050': {} -'581060': +"581050": {} +"581060": installDir: Jump To Die launch: - config: oslist: windows executable: JumpToDie.exe type: none -'581090': {} -'581100': +"581090": {} +"581100": installDir: Langoth launch: - config: @@ -277412,7 +272863,7 @@ description: Launch executable: Langoth.sh type: default -'581120': +"581120": installDir: Griptape Backbone launch: - config: @@ -277427,7 +272878,7 @@ oslist: linux executable: Griptape Backbone.x86 type: default -'581130': +"581130": installDir: MetalWaltz launch: - arguments: RunningResources @@ -277435,64 +272886,64 @@ oslist: windows executable: Sherman.exe type: default -'581150': {} -'581200': +"581150": {} +"581200": installDir: NR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: NR.exe type: default -'581210': +"581210": installDir: Dungeon Manager ZV 2 launch: - executable: DungeonManagerZV2.exe type: none -'581220': +"581220": installDir: News Tycoon launch: - config: oslist: windows executable: News Tycoon.exe type: none -'581230': +"581230": installDir: Soul Saber 2 launch: - executable: soulsaber2.exe type: none -'581270': - installDir: Old Man's Journey +"581270": + installDir: "Old Man's Journey" launch: - config: oslist: windows executable: Old Mans Journey.exe type: default - config: - osarch: '64' + osarch: "64" oslist: macos executable: Old Mans Journey.app/Contents/MacOS/Old Mans Journey type: default -'581280': {} -'581300': +"581280": {} +"581300": installDir: Black Mirror IV launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: BlackMirror.exe type: default - config: - osarch: '64' + osarch: "64" oslist: macos executable: BlackMirror.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: BlackMirror type: default -'581310': +"581310": installDir: Riskers launch: - config: @@ -277507,55 +272958,55 @@ oslist: linux executable: Riskers type: default -'581320': +"581320": installDir: sandstorm launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: InsurgencyEAC.exe type: none - - arguments: '-noeac' + - arguments: "-noeac" config: betakey: unstable - osarch: '64' + osarch: "64" oslist: windows description: Sandstorm No EAC executable: Insurgency.exe type: option1 - - arguments: '-clickedreplay=373d2264-9310-48b2-ae53-e73f322f3bcb' + - arguments: "-clickedreplay=373d2264-9310-48b2-ae53-e73f322f3bcb" config: betakey: focus_perf - osarch: '64' + osarch: "64" oslist: windows description: Town replay executable: InsurgencyEAC.exe type: none - - arguments: '-clickedreplay=f4fbf0e8-7bff-4a2b-bb41-277c686253a2' + - arguments: "-clickedreplay=f4fbf0e8-7bff-4a2b-bb41-277c686253a2" config: betakey: focus_perf - osarch: '64' + osarch: "64" oslist: windows description: Precinct replay executable: InsurgencyEAC.exe type: none - config: - betakey: 'focus_qa,focus_loca,focus_safe,focus_community_loca' - osarch: '64' + betakey: "focus_qa,focus_loca,focus_safe,focus_community_loca" + osarch: "64" oslist: windows description: No argument executable: InsurgencyEAC.exe type: none -'581340': +"581340": installDir: Narborion Saga launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: start.exe type: none -'581350': {} -'581360': +"581350": {} +"581360": installDir: FoxTail launch: - config: @@ -277564,36 +273015,36 @@ type: default - config: oslist: linux - executable: ./run.sh + executable: "./run.sh" type: default - config: oslist: macos executable: foxtail.app/Contents/MacOS/foxtail type: default -'581370': +"581370": installDir: Drizzlepath Glass launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Glass.exe type: default -'581380': +"581380": installDir: Clockwise launch: - config: oslist: windows description: Clockwise (32bit) - executable: Binaries\\Win32\\UDK.exe + executable: "Binaries\\\\Win32\\\\UDK.exe" type: none - config: - osarch: '64' + osarch: "64" oslist: windows description: Clockwise (64bit) - executable: Binaries\\Win64\\UDK.exe + executable: "Binaries\\\\Win64\\\\UDK.exe" type: none -'581430': {} -'581460': +"581430": {} +"581460": installDir: QuiVr Vanguard launch: - config: @@ -277606,15 +273057,15 @@ description: Arcade Version executable: QuiVr.exe type: option1 -'581470': {} -'581520': +"581470": {} +"581520": installDir: Sakura Magical Girls launch: - config: oslist: windows executable: SakuraMagicalGirls.exe type: default -'581590': +"581590": installDir: Retro Pinball launch: - config: @@ -277626,77 +273077,77 @@ executable: Retro Pinball.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Retro Pinball.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Retro Pinball.x86 type: default -'581600': +"581600": installDir: TheAlbatross launch: - config: oslist: windows executable: TheAlbatross.exe type: default -'581610': {} -'581620': {} -'581630': +"581610": {} +"581620": {} +"581630": installDir: Sword With Sauce Alpha launch: - config: oslist: windows executable: SwordWithSauce.exe type: default -'581640': {} -'581650': - installDir: Once Upon an All Hallow's Eve +"581640": {} +"581650": + installDir: "Once Upon an All Hallow's Eve" launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: Once Upon a Hallow's Eve.exe + executable: "Once Upon a Hallow's Eve.exe" type: default - config: oslist: linux - executable: Once Upon a Hallow's Eve.sh + executable: "Once Upon a Hallow's Eve.sh" type: default - config: oslist: macos - executable: Once Upon a Hallow's Eve.app + executable: "Once Upon a Hallow's Eve.app" type: default -'581660': +"581660": installDir: Super Meat Boy Forever launch: - executable: SuperMeatBoyForever.exe -'581670': +"581670": installDir: The Astral Hero launch: - config: oslist: windows executable: The Astral Hero.exe type: default -'581680': {} -'581690': {} -'581700': {} -'581710': {} -'581720': {} -'581730': +"581680": {} +"581690": {} +"581700": {} +"581710": {} +"581720": {} +"581730": installDir: Autumn Night 3D Shooter launch: - executable: Prog.exe type: none -'581740': +"581740": installDir: HUNGER launch: - config: oslist: windows executable: hungergame.exe type: none -'581760': +"581760": installDir: True or False 2 launch: - config: @@ -277708,18 +273159,18 @@ executable: TOF2.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: TOF2.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: TOF2.x86_64 type: default -'581800': {} -'581810': - installDir: '1166' +"581800": {} +"581810": + installDir: "1166" launch: - config: oslist: macos @@ -277733,15 +273184,15 @@ oslist: linux executable: 1166(Linux).x86 type: default -'581820': +"581820": installDir: Judas launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Judas.exe type: default -'581840': +"581840": installDir: Caliper launch: - config: @@ -277752,49 +273203,49 @@ oslist: windows executable: Caliper_launcher.exe type: none -'581860': {} -'581890': {} -'581910': +"581860": {} +"581890": {} +"581910": installDir: Iron Armada launch: - executable: IronArmada.exe type: default -'581920': +"581920": installDir: Dunk It (VR Basketball) launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Dunk It.exe type: vr -'581930': +"581930": installDir: Desert Storm launch: - config: oslist: windows executable: Desert storm.exe type: default -'581960': +"581960": installDir: Outlands Safehouse launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: OutlandsSafehouse.exe type: vr -'581970': +"581970": installDir: Zombie Ballz launch: - executable: Zombie Ballz.exe type: none -'581980': +"581980": installDir: Candy Machine launch: - config: oslist: windows executable: Candy Machine.exe type: default -'58200': +"58200": installDir: JollyRover launch: - config: @@ -277803,67 +273254,67 @@ - config: oslist: macos executable: JollyRover.app -'582010': +"582010": installDir: Monster Hunter World launch: - config: oslist: windows executable: MonsterHunterWorld.exe type: default -'582030': +"582030": installDir: Oblivion Tesseract VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Oblivion Tesseract VR.exe type: vr -'582050': +"582050": installDir: HVRGUN launch: - config: oslist: windows executable: HVRGUN.exe type: vr -'582110': +"582110": installDir: Baskhead Training launch: - config: oslist: windows executable: Baskhead Training.exe type: vr -'582160': +"582160": installDir: Assassins Creed Origins launch: - - arguments: '-uplay_steam_mode' + - arguments: "-uplay_steam_mode" config: - osarch: '64' + osarch: "64" oslist: windows executable: ACOrigins.exe type: default -'582200': +"582200": installDir: The Physiology of the Eye launch: - config: oslist: windows executable: ThePhysiologyOfTheEye.exe type: vr -'582210': +"582210": installDir: VRemin launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: VRemin.exe type: vr -'582260': +"582260": installDir: Extreme-G 2 launch: - config: oslist: windows executable: Play Extreme G-2.exe type: default -'582270': +"582270": installDir: Everything launch: - config: @@ -277875,17 +273326,17 @@ executable: Everything.app type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: Everything.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: Everything.x86_64 type: none -'582280': {} -'582290': +"582280": {} +"582290": installDir: RestHouse launch: - config: @@ -277894,11 +273345,11 @@ type: default - config: oslist: windows - ownsdlc: '737790' + ownsdlc: "737790" description: DLC executable: RHVR2.exe type: vr -'58230': +"58230": installDir: MacGuffin launch: - config: @@ -277913,83 +273364,63 @@ oslist: linux executable: macguffin.x86_64 type: default -'582330': +"582330": installDir: Warriors Rise to Glory launch: - config: oslist: windows description: Play Online! - description_loc: - english: Play Online! - french: "Jouer en ligne\_!" - german: Online spielen! - koreana: 온라인 플레이! - polish: Graj online! - russian: Играть в сети! - schinese: 在线游戏! - tchinese: 在線遊戲! - executable: Multiplayer\\Warriors Rise to Glory.exe + executable: "Multiplayer\\\\Warriors Rise to Glory.exe" type: default - config: oslist: windows description: Single Player Campaign! - description_loc: - english: Single Player Campaign! - french: Campagne solo - german: Einzelspieler-Kampagne - koreana: 싱글 플레이어 캠페인 - latam: Campaña de un jugador - polish: Kampania dla jednego gracza - russian: Одиночная кампания - schinese: 单人战役 - spanish: Campaña de un jugador - tchinese: 單人戰役 - executable: Single Player\\Warriors.exe + executable: "Single Player\\\\Warriors.exe" - config: oslist: macos executable: warriors.app nameLocalized: schinese: 战士们:走向荣耀 tchinese: 戰士們:走向榮耀 -'582350': - installDir: Zombie Killin' +"582350": + installDir: "Zombie Killin'" launch: - config: oslist: windows executable: Zombie Killin.exe type: default -'582360': +"582360": installDir: SpudCricketVR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SpudCricketVR.exe type: vr -'582370': - installDir: Snowflake's Chance +"582370": + installDir: "Snowflake's Chance" launch: - config: oslist: windows executable: sfc.exe type: default -'582390': +"582390": installDir: Ski Sport Jumping VR launch: - config: oslist: windows executable: SkiJumpingVR.exe type: vr -'582430': {} -'582440': +"582430": {} +"582440": installDir: Nine launch: - config: oslist: windows executable: Nine.exe type: default -'582450': {} -'582460': +"582450": {} +"582460": installDir: Epitaph launch: - config: @@ -278000,18 +273431,18 @@ oslist: macos executable: Epitaph.app type: default -'582480': {} -'582490': {} -'582500': +"582480": {} +"582490": {} +"582500": installDir: We Were Here launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: We Were Here.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: We Were Here.exe type: default @@ -278020,120 +273451,118 @@ description: Launch Universal MacOS build executable: We Were Here.app type: default -'582530': +"582530": installDir: Wacky Spores The Chase launch: - config: oslist: windows executable: Wacky_Spores_The_Chase.exe type: default -'582550': +"582550": installDir: Passpartout launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: 64 bit version executable: Passpartout.exe type: none - config: - osarch: '32' + osarch: "32" oslist: windows description: 32 bit version executable: Passpartout.exe type: none - config: - osarch: '32' + osarch: "32" oslist: macos description: OSX 32 bit - executable: osx32.app\\Contents\\MacOS\\osx32 + executable: "osx32.app\\\\Contents\\\\MacOS\\\\osx32" type: default - config: oslist: macos description: OSX 64 bit - executable: osx64.app\\Contents\\MacOS\\Passpartout + executable: "osx64.app\\\\Contents\\\\MacOS\\\\Passpartout" type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: Linux 64 bit executable: Passpartout.x86_64 type: none - config: - osarch: '32' + osarch: "32" oslist: linux description: Linux 32 bit executable: Passpartout.x86 type: none nameLocalized: schinese: 饥饿派画家 -'582560': +"582560": installDir: TheInvisibleHours launch: - arguments: NoVRLaunch config: - osarch: '64' + osarch: "64" oslist: windows description: Standalone No VR executable: TheInvisibleHours.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: TheInvisibleHours.exe type: vr -'582580': {} -'582610': +"582580": {} +"582610": installDir: Z-End launch: - config: oslist: windows executable: ZEnd.exe type: default -'582620': +"582620": installDir: Copoka launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: Copoka.exe type: default -'582660': +"582660": installDir: Black Desert Online launch: - - arguments: '--steam' + - arguments: "--steam" config: oslist: windows description: Black Desert Online with Steam Launcher - description_loc: - english: Black Desert Online with Steam Launcher executable: BlackDesertLauncher.exe type: default -'582810': +"582810": installDir: AwesomeMetalDetecting launch: - config: oslist: windows executable: AwesomeMetalDetecting.exe type: default -'582820': +"582820": installDir: Gravity Vector launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Gravity Vector executable: GravityVector.exe type: default -'582830': +"582830": installDir: SYNCH launch: - config: oslist: windows executable: SYNCH.exe type: none -'582840': +"582840": installDir: 20something launch: - config: @@ -278146,10 +273575,10 @@ type: default - config: oslist: macos - executable: 20something.app\\Contents\\MacOS\\20something + executable: "20something.app\\\\Contents\\\\MacOS\\\\20something" type: default -'582860': {} -'582890': +"582860": {} +"582890": installDir: Estranged Act II launch: - config: @@ -278164,7 +273593,7 @@ oslist: linux executable: Insulam.sh type: default -'582920': +"582920": installDir: FromShadows launch: - config: @@ -278176,23 +273605,23 @@ executable: From Shadows.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: From Shadows.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: From Shadows.x86_64 type: default -'582960': +"582960": installDir: LIT launch: - config: oslist: windows executable: LIT_PC.exe type: default -'582980': +"582980": installDir: Castle of Shikigami launch: - executable: Shikigami.exe @@ -278204,14 +273633,14 @@ type: option1 nameLocalized: japanese: 式神の城 -'582990': +"582990": installDir: Space Fist launch: - config: oslist: windows executable: SpaceFist.exe type: vr -'583000': +"583000": installDir: Fly Away launch: - config: @@ -278222,41 +273651,41 @@ oslist: macos executable: Flyaway.app type: default -'583030': +"583030": installDir: Eraser & Builder launch: - config: oslist: windows executable: EraserAndBuilder.exe type: none -'583040': +"583040": installDir: Princess Maker Refine launch: - config: oslist: windows executable: pm1.exe type: none -'583060': +"583060": installDir: The Cavern launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TheCavernGame.exe type: vr -'583090': +"583090": installDir: SeaBed launch: - executable: SeaBed.exe type: none -'583150': +"583150": installDir: KART CHASER THE BOOST VR launch: - config: oslist: windows executable: KART CHASER THE BOOST VR.exe type: vr -'583190': +"583190": installDir: The Astonishing Game launch: - config: @@ -278267,54 +273696,54 @@ oslist: macos executable: TheAstonishingGame.app type: default - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" config: oslist: windows executable: TheAstonishingGame.exe type: config - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" config: oslist: macos executable: TheAstonishingGame.app type: config - config: - osarch: '32' + osarch: "32" oslist: linux executable: TheAstonishingGame.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: TheAstonishingGame.x86_64 type: default - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" config: - osarch: '32' + osarch: "32" oslist: linux executable: TheAstonishingGame.x86 type: config - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" config: - osarch: '64' + osarch: "64" oslist: linux executable: TheAstonishingGame.x86_64 type: config -'583240': +"583240": installDir: Coffence launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: Game\\CoffenceLauncher.exe + executable: "Game\\\\CoffenceLauncher.exe" type: default - config: betakey: debug - osarch: '64' + osarch: "64" oslist: windows description: DebugMode - executable: Game.Profile\\CoffenceLauncher.exe + executable: "Game.Profile\\\\CoffenceLauncher.exe" type: option1 -'583270': +"583270": installDir: Cosmic Express launch: - config: @@ -278326,16 +273755,16 @@ executable: Cosmic Express.app type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: Cosmic Express.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: Cosmic Express.x86_64 type: none -'583470': +"583470": installDir: theendisnigh launch: - config: @@ -278357,112 +273786,112 @@ executable: modloader/modloader.exe type: option1 workingdir: modloader/ -'583490': +"583490": installDir: InfiniPicross launch: - config: - osarch: '32' + osarch: "32" oslist: windows - description: '1.0' + description: "1.0" executable: InfiniPicross.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows - description: '1.0' + description: "1.0" executable: InfiniPicross.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux - description: '1.0' + description: "1.0" executable: InfiniPicross type: default - config: - osarch: '64' + osarch: "64" oslist: linux - description: '1.0' + description: "1.0" executable: InfiniPicross type: default - config: oslist: macos - description: '1.0' + description: "1.0" executable: InfiniPicross.app type: default -'583500': +"583500": installDir: Galaxis Wars launch: - config: oslist: windows executable: GalaxisWars.exe type: vr -'583530': +"583530": installDir: Aquila Bird Flight Simulator launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Aquila (default mode) executable: AquilaBirdFlightSimulator.exe type: vr - - arguments: '-forceoculus' + - arguments: "-forceoculus" config: - osarch: '64' + osarch: "64" oslist: windows description: Aquila (force Oculus mode) executable: AquilaBirdFlightSimulator.exe type: vr - - arguments: '-forcevive' + - arguments: "-forcevive" config: - osarch: '64' + osarch: "64" oslist: windows description: Aquila (force HTC Vive mode) executable: AquilaBirdFlightSimulator.exe type: vr - - arguments: '-novr' + - arguments: "-novr" config: - osarch: '64' + osarch: "64" oslist: windows description: Aquila (Non-VR mode) executable: AquilaBirdFlightSimulator.exe type: option1 -'583570': +"583570": installDir: 1-2-Swift launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: 1-2-Swift.exe type: vr - config: - osarch: '64' + osarch: "64" oslist: windows executable: 1-2-Swift.exe type: none -'583580': +"583580": installDir: Brutal Warrior launch: - executable: BrutalWarrior.exe type: vr - - arguments: '-nosteamvr -nodashboard' + - arguments: "-nosteamvr -nodashboard" executable: BrutalWarrior.exe type: default -'583590': +"583590": installDir: Arms Race - TCWE launch: - config: oslist: windows executable: ArmsRace.exe type: default -'583660': {} -'583700': +"583660": {} +"583700": installDir: MACS launch: - config: oslist: windows executable: MACS.exe type: none -'583740': +"583740": installDir: AVATARIKA launch: - config: @@ -278471,15 +273900,15 @@ type: default nameLocalized: russian: Аватарика -'583750': +"583750": installDir: skyclimbers launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: skyclimbers.exe type: vr -'583760': +"583760": installDir: Slash It 2 launch: - config: @@ -278487,12 +273916,12 @@ executable: SlashIt2.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: SlashIt2.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: SlashIt2.x86_64 type: default @@ -278500,8 +273929,8 @@ oslist: macos executable: Slash It 2.app type: default -'583890': - installDir: Balthazar's Dream +"583890": + installDir: "Balthazar's Dream" launch: - config: oslist: windows @@ -278515,17 +273944,17 @@ oslist: linux executable: balthazarsdream.x86 type: default -'583930': +"583930": installDir: Faerie Solitaire Remastered launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: FaerieSolitaireRemastered.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: FaerieSolitaireRemastered.x86_64 @@ -278535,95 +273964,95 @@ description: Launch macOS executable: Faerie Solitaire Remastered.app/Contents/MacOS/FaerieSolitaireRemastered type: default -'583950': +"583950": installDir: Artifact launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: game\\bin\\win64\\dcg.exe + executable: "game\\\\bin\\\\win64\\\\dcg.exe" type: default - workingdir: game\\dcg - - arguments: '-noassert -nop4 -vulkan' + workingdir: "game\\\\dcg" + - arguments: "-noassert -nop4 -vulkan" config: oslist: macos executable: game/artifact.sh type: none - - arguments: '-vulkan' + - arguments: "-vulkan" config: - osarch: '64' + osarch: "64" oslist: linux executable: game/artifact.sh type: none -'58400': +"58400": installDir: Turba launch: - executable: Turba.exe -'584040': - installDir: Journey Benjamin's Adventures +"584040": + installDir: "Journey Benjamin's Adventures" launch: - config: oslist: windows executable: adventure.exe type: vr -'584070': {} -'584080': +"584070": {} +"584080": installDir: Proton Ball launch: - - arguments: '-audiomixer -nosettings' + - arguments: "-audiomixer -nosettings" config: - osarch: '64' + osarch: "64" oslist: windows description: Default launch without settings executable: ProtonBall.exe type: vr - - arguments: '-audiomixer' + - arguments: "-audiomixer" config: - osarch: '64' + osarch: "64" oslist: windows description: Allows change of settings like score to win or restart allowed. executable: ProtonBall.exe type: config -'584100': +"584100": installDir: Mad Digger launch: - config: oslist: windows executable: mad_digger.exe type: default -'584150': +"584150": installDir: Casey Powell Lacrosse 18 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: lacrosse2.exe type: default -'584170': +"584170": installDir: Freedom Locomotion VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: FreedomLocomotion.exe type: vr -'584220': +"584220": installDir: RunningDead launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: nw.exe type: default -'584280': +"584280": installDir: Airport Master launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Airport Master.exe type: default -'584370': +"584370": installDir: The Trail launch: - config: @@ -278634,33 +274063,33 @@ oslist: windows executable: TheTrail.exe type: default -'584400': +"584400": installDir: Sonic Mania launch: - config: oslist: windows executable: SonicMania.exe type: default -'584600': +"584600": installDir: Virus Crashers launch: - executable: vcrashes.exe type: none -'584760': +"584760": installDir: Rayless launch: - config: oslist: windows executable: Rayless.exe type: default -'584780': +"584780": installDir: Operation swat launch: - config: oslist: windows executable: Operationswat.exe type: none -'584800': +"584800": installDir: Civil War Battle of Petersburg launch: - config: @@ -278675,21 +274104,21 @@ oslist: macos executable: Civil War Battle of Petersburg.app type: default -'584850': +"584850": installDir: Power Solitaire VR launch: - config: oslist: windows executable: PowerSolitaireVR.exe type: vr -'584860': +"584860": installDir: Surfasaurus launch: - config: oslist: windows executable: Surfasaurus.exe type: none -'584880': +"584880": installDir: Pixel Sand launch: - config: @@ -278700,7 +274129,7 @@ oslist: windows executable: PixelSandEditor.exe type: editor -'584890': +"584890": installDir: StayinAlive launch: - config: @@ -278711,14 +274140,14 @@ oslist: macos executable: StayinAlive.app type: none -'584930': +"584930": installDir: Conductor launch: - config: oslist: windows executable: Conductor.exe type: vr -'584940': +"584940": installDir: AmbersMagicShop launch: - config: @@ -278733,7 +274162,7 @@ oslist: linux executable: AMS.sh type: none -'584980': +"584980": installDir: Late Shift launch: - config: @@ -278744,7 +274173,7 @@ oslist: macos executable: LateShift.app type: default -'584990': +"584990": installDir: The Long Reach launch: - config: @@ -278756,50 +274185,50 @@ executable: The Long Reach.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: The Long Reach.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: The Long Reach.x86_64 type: default -'585000': +"585000": installDir: Formula E powered by Virtually Live launch: - arguments: steam config: - osarch: '64' + osarch: "64" oslist: windows executable: VLive.exe type: vr -'585010': {} -'585040': +"585010": {} +"585040": installDir: Dry Erase VR Whiteboard launch: - config: oslist: windows executable: DryErase.exe type: vr -'585080': +"585080": installDir: Hunting Simulator launch: - config: oslist: windows executable: Hunter.exe type: default -'585090': +"585090": installDir: Black River launch: - description: Launch executable: Game.exe type: none -'58510': +"58510": installDir: Cities XL 2011 launch: - executable: CitiesXL_2011.exe -'585180': +"585180": installDir: OpenSorcery launch: - config: @@ -278817,66 +274246,66 @@ type: default - config: oslist: windows - ownsdlc: '694390' + ownsdlc: "694390" description: Jingle BEL/S - executable: JingleBELS\\OpenSorcery.exe + executable: "JingleBELS\\\\OpenSorcery.exe" type: option1 - config: oslist: linux - ownsdlc: '694390' + ownsdlc: "694390" description: Jingle BEL/S - executable: JingleBELS\\nw + executable: "JingleBELS\\\\nw" type: option1 - config: oslist: macos - ownsdlc: '694390' + ownsdlc: "694390" description: Jingle BEL/S - executable: JingleBELS\\nwjs.app + executable: "JingleBELS\\\\nwjs.app" type: option1 -'585190': - installDir: A Gummy's Life +"585190": + installDir: "A Gummy's Life" launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: AGummysLife.exe type: default - - arguments: '-force-opengl' + - arguments: "-force-opengl" config: oslist: macos executable: AGummysLife.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: AGummysLife.x64 type: default nameLocalized: - japanese: グミーズライフ (A Gummy's Life) - tchinese: 《軟糖大亂鬥》 - A Gummy's Life -'58520': + japanese: "グミーズライフ (A Gummy's Life)" + tchinese: "《軟糖大亂鬥》 - A Gummy's Life" +"58520": installDir: Blood Bowl Legendary Edition launch: - executable: BB_LE.exe -'585220': {} -'585240': +"585220": {} +"585240": installDir: Return to Zork launch: - executable: SierraLauncher.exe type: none -'585260': +"585260": installDir: Antagonist launch: - executable: Game.exe type: none -'585270': +"585270": installDir: HeapVR launch: - config: oslist: windows executable: HeapVR.exe type: vr -'585290': +"585290": installDir: Lifeline launch: - config: @@ -278885,16 +274314,16 @@ type: default - config: oslist: macos - executable: LifelineSteam.app\\Contents\\MacOS\\LifelineSteam + executable: "LifelineSteam.app\\\\Contents\\\\MacOS\\\\LifelineSteam" type: default -'585310': +"585310": installDir: BeyondTheCity launch: - config: oslist: windows executable: BeyondTheCityVR.exe type: vr -'585360': +"585360": installDir: Steampunk Syndicate launch: - config: @@ -278902,82 +274331,82 @@ executable: bin/SteampunkSyndicate.exe type: none workingdir: bin/ -'585420': +"585420": installDir: Trailmakers launch: - executable: Trailmakers.exe type: default - - arguments: '-safemode -show-screen-selector -window-mode borderless' + - arguments: "-safemode -show-screen-selector -window-mode borderless" config: - osarch: '64' + osarch: "64" oslist: windows description: Safemode executable: Trailmakers.exe type: none -'585430': +"585430": installDir: Flatspace IIk launch: - config: oslist: windows executable: FlatspaceII.exe type: default -'585450': +"585450": installDir: Shadows Awakening launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: shadows.exe type: none - config: betakey: gamescom - osarch: '64' + osarch: "64" oslist: windows executable: run.bat type: none -'58550': +"58550": installDir: A Game Of Thrones launch: - executable: Agot.exe -'585500': +"585500": installDir: Dick Wilde launch: - config: oslist: windows executable: DickWilde.exe type: vr -'585550': +"585550": installDir: FEMINAZI The Triggering launch: - config: oslist: windows executable: Feminazi.exe type: default -'585560': +"585560": installDir: FR launch: - config: oslist: windows executable: FR.exe type: default -'585570': {} -'585580': {} -'585590': +"585570": {} +"585580": {} +"585590": installDir: Emperor Kingdom launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: EmperorKingdom.exe type: default -'58560': +"58560": installDir: Runaway A Twist Of Fate launch: - - description: 'Runaway: A Twist of Fate' + - description: "Runaway: A Twist of Fate" executable: RATOF.exe - description: Configuration executable: RATOF-Config.exe -'585630': +"585630": installDir: SwitchBlade launch: - config: @@ -278991,15 +274420,15 @@ description: Launch Game And Recorder executable: RunAndRecord.bat type: option1 -'585680': {} -'585690': +"585680": {} +"585690": installDir: Minimalism launch: - config: oslist: windows executable: Minimalism.exe type: default -'58570': +"58570": installDir: The Next BIG Thing launch: - config: @@ -279012,7 +274441,7 @@ - config: oslist: macos executable: The Next BIG Thing.app -'585710': +"585710": installDir: Blazing Beaks launch: - config: @@ -279022,50 +274451,50 @@ nameLocalized: japanese: Blazing Beaks / ブレイジング ビークス schinese: Blazing Beaks / 神鸭特攻 -'585720': {} -'585740': +"585720": {} +"585740": installDir: MORTEM launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: MORTEM.exe type: default - description: Launches VR Version executable: MORTEM_VR/MORTEM.exe type: default -'585750': +"585750": installDir: Chowdertwo launch: - config: oslist: windows executable: Chowdertwo.exe type: default -'585770': +"585770": installDir: Prism Collider launch: - config: oslist: windows executable: Game.exe type: none -'585780': {} -'585790': {} -'585800': {} -'585820': +"585780": {} +"585790": {} +"585800": {} +"585820": installDir: Leylines launch: - config: oslist: windows executable: Leylines.exe type: default -'585830': +"585830": installDir: SC Jogos launch: - config: oslist: windows executable: Ninja Stealth 2/Ninja Stealth 2.exe type: default -'585840': +"585840": installDir: Leaving Lyndow launch: - config: @@ -279080,14 +274509,14 @@ oslist: macos executable: Leaving Lyndow.app type: default -'585860': +"585860": installDir: Bunker 58 launch: - config: oslist: windows executable: Bunker 58.exe type: none -'585880': +"585880": installDir: Once on a windswept night launch: - config: @@ -279102,7 +274531,7 @@ oslist: linux executable: Once_on_a_windswept_night.sh type: default -'585890': +"585890": installDir: Sweetest Monster launch: - config: @@ -279117,22 +274546,22 @@ oslist: linux executable: Sweetest Monster.sh type: default -'585900': +"585900": installDir: Harvest Moon launch: - config: oslist: windows executable: Harvest Moon Light of Hope.exe type: default -'585910': +"585910": installDir: Wild Guns Reloaded launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: WildGunsReloaded.exe type: none -'585920': +"585920": installDir: Puzzle One launch: - config: @@ -279140,12 +274569,12 @@ executable: puzzle1.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: puzzle1.sh type: default -'585940': {} -'585950': +"585940": {} +"585950": installDir: WayOut 2 Hex launch: - config: @@ -279160,7 +274589,7 @@ oslist: linux executable: WayOut2.x86_64 type: default -'585970': +"585970": installDir: Tank Assault X launch: - config: @@ -279175,67 +274604,67 @@ oslist: macos executable: TankAssaultX.app type: default -'585990': +"585990": installDir: Echoes of the Fey Episode 0 The Immolation launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: EotF_Episode0.exe type: default -'586020': +"586020": installDir: Flairtender launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Flairtender.exe type: vr -'586030': +"586030": installDir: Shardbound launch: - - arguments: '-notinstalled -TacticsServer=https://st-george.spiritwalkgames.com -RequireSteam' + - arguments: "-notinstalled -TacticsServer=https://st-george.spiritwalkgames.com -RequireSteam" config: - osarch: '64' + osarch: "64" oslist: windows description: LKG Shipping - executable: Tactics\\Binaries\\Win64\\Tactics-Win64-Shipping.exe + executable: "Tactics\\\\Binaries\\\\Win64\\\\Tactics-Win64-Shipping.exe" type: default - - arguments: '-notinstalled -TacticsServer=https://st-george.spiritwalkgames.com -RequireSteam' + - arguments: "-notinstalled -TacticsServer=https://st-george.spiritwalkgames.com -RequireSteam" config: betakey: beta - osarch: '64' + osarch: "64" oslist: windows description: Beta - executable: Tactics\\Binaries\\Win64\\Tactics.exe + executable: "Tactics\\\\Binaries\\\\Win64\\\\Tactics.exe" type: option1 - - arguments: '-TacticsServer=https://st-george.spiritwalkgames.com -RequireSteam' + - arguments: "-TacticsServer=https://st-george.spiritwalkgames.com -RequireSteam" config: - osarch: '64' + osarch: "64" oslist: macos description: LKG Shipping Mac executable: Tactics/Binaries/Mac/Tactics-Mac-Shipping.app/Contents/MacOS/Tactics-Mac-Shipping type: default - - arguments: '-TacticsServer=https://st-george.spiritwalkgames.com -RequireSteam' + - arguments: "-TacticsServer=https://st-george.spiritwalkgames.com -RequireSteam" config: betakey: beta - osarch: '64' + osarch: "64" oslist: macos description: Mac Beta executable: Tactics/Binaries/Mac/Tactics.app/Contents/MacOS/Tactics type: option1 -'586040': +"586040": installDir: 8BitArena launch: - executable: ClientLauncherG.exe type: default - - arguments: 'DUMP_FULL COORDURL=http://52.7.55.172:6530/' + - arguments: "DUMP_FULL COORDURL=http://52.7.55.172:6530/" config: betakey: beta2 description: 8bit beta2 executable: ClientLauncherG.exe type: option1 -'586060': +"586060": installDir: JET HERO launch: - config: @@ -279246,15 +274675,15 @@ oslist: macos executable: JetHeroMac.app type: default -'586080': +"586080": installDir: Age of Heroes (VR) launch: - config: oslist: windows executable: Age Of Heroes.exe type: vr -'586090': {} -'58610': +"586090": {} +"58610": installDir: Wargame European Escalation launch: - config: @@ -279266,54 +274695,54 @@ - config: oslist: linux executable: Wargame -'586100': +"586100": installDir: HISOrigin launch: - config: oslist: windows executable: hisorigin.exe type: none -'586110': +"586110": installDir: Sansar launch: - - arguments: '--download_source steam' + - arguments: "--download_source steam" config: - osarch: '64' + osarch: "64" oslist: windows - executable: Updater\\Sansar.exe + executable: "Updater\\\\Sansar.exe" type: vr - - arguments: '--download_source steam' + - arguments: "--download_source steam" config: betakey: Single Launch Mode - osarch: '64' + osarch: "64" oslist: windows description: Desktop Mode - executable: Updater\\Sansar.exe + executable: "Updater\\\\Sansar.exe" type: default -'586130': +"586130": installDir: STD launch: - config: oslist: windows executable: STD.exe type: default -'586140': +"586140": installDir: BlazBlue Centralfiction launch: - config: oslist: windows executable: BBCF.exe type: default -'586150': +"586150": installDir: Armored Freedom launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: AF.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: AF.exe type: default @@ -279321,19 +274750,19 @@ oslist: macos executable: ArmoredFreedom.app/Contents/MacOS/ArmoredFreedom type: default - - arguments: '-force-opengl' + - arguments: "-force-opengl" config: - osarch: '32' + osarch: "32" oslist: linux executable: ArmoredFreedom.x86 type: default - - arguments: '-force-opengl' + - arguments: "-force-opengl" config: - osarch: '64' + osarch: "64" oslist: linux executable: ArmoredFreedom.x86_64 type: default -'586160': +"586160": installDir: Dash Fleet launch: - config: @@ -279345,16 +274774,16 @@ executable: DashFleet.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: DashFleet.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: DashFleet.x86_64 type: default -'586170': +"586170": installDir: Mad Dojo launch: - config: @@ -279366,12 +274795,12 @@ executable: MadDojo.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: MadDojo.x86_64 type: default -'586190': {} -'586200': +"586190": {} +"586200": installDir: Street Fighter 30th Anniversary Collection launch: - config: @@ -279379,7 +274808,7 @@ description: Launch executable: SF30thAnniversaryCollection.exe type: default -'586230': +"586230": installDir: Kult of Ktulu Olympic launch: - config: @@ -279390,7 +274819,7 @@ oslist: macos executable: kokolympic.app type: none -'586240': +"586240": installDir: Soul Searching launch: - config: @@ -279402,26 +274831,26 @@ executable: Soul Searching.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Soul Searching.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Soul Searching.x86_64 type: default -'586250': {} -'586270': {} -'586280': {} -'586300': +"586250": {} +"586270": {} +"586280": {} +"586300": installDir: UnderHuman launch: - config: oslist: windows executable: UnderHuman.exe type: none -'586310': +"586310": installDir: Gunman Taco Truck launch: - config: @@ -279432,7 +274861,7 @@ oslist: macos executable: Gunman Taco Truck.app type: default -'586320': +"586320": installDir: U.F.O - Unfortunately Fortunate Organisms launch: - config: @@ -279447,14 +274876,14 @@ oslist: linux executable: UnfortunatelyFortunateOrganisms.x86 type: none -'586340': +"586340": installDir: Lamm launch: - config: oslist: windows executable: Lamm.exe type: none -'586350': +"586350": installDir: UBERMOSH_WRAITH launch: - config: @@ -279465,70 +274894,70 @@ oslist: linux executable: run.sh type: default -'586360': +"586360": installDir: Pyro VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: The game recognizes both HTC Vive and Oculus Rift/Touch automatically. executable: PyroVR.exe type: vr -'586380': +"586380": installDir: VITATIO 2 launch: - executable: game.exe type: none -'586390': +"586390": installDir: Missile Cards launch: - executable: missilecards.exe type: none -'586400': {} -'586430': +"586400": {} +"586430": installDir: Spheroids launch: - config: oslist: windows executable: Spheroids.exe type: default -'586450': +"586450": installDir: HIKIBYOU2 launch: - config: oslist: windows executable: HIKIBYOU2.exe type: default -'586460': +"586460": installDir: Greyhound Manager 2 Rebooted launch: - config: oslist: windows executable: gm2.exe type: default -'586470': {} -'586480': {} -'586520': {} -'586530': {} -'586540': {} -'586570': +"586470": {} +"586480": {} +"586520": {} +"586530": {} +"586540": {} +"586570": installDir: Metanet Hunter CD launch: - config: oslist: windows executable: Metanet Hunter CD.exe type: default -'586600': +"586600": installDir: Adventures of Fluffy launch: - executable: Game.exe type: default -'586620': +"586620": installDir: OR launch: - executable: OR.exe type: none -'586660': +"586660": installDir: Trackless launch: - config: @@ -279537,14 +274966,14 @@ type: default - config: oslist: macos - executable: Trackless.app\\Contents\\MacOS\\Trackless + executable: "Trackless.app\\\\Contents\\\\MacOS\\\\Trackless" type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Trackless.x86 type: default -'586670': +"586670": installDir: A Foretold Affair launch: - config: @@ -279555,13 +274984,13 @@ oslist: macos executable: A_Foretold_Affair.app type: none -'586680': - installDir: Awakening The Golden Age Collector's Edition +"586680": + installDir: "Awakening The Golden Age Collector's Edition" launch: - executable: Awakening_TheGoldenAge_CE.exe type: none -'586690': - installDir: Dead Reckoning Silvermoon Isle Collector's Edition +"586690": + installDir: "Dead Reckoning Silvermoon Isle Collector's Edition" launch: - config: oslist: windows @@ -279569,15 +274998,15 @@ type: none - config: oslist: macos - executable: Dead_Reckoning_Silvermoon_Isle_CE_mac.app\\Contents\\MacOS\\MacGameCLauncher + executable: "Dead_Reckoning_Silvermoon_Isle_CE_mac.app\\\\Contents\\\\MacOS\\\\MacGameCLauncher" type: default -'586700': - installDir: Otherworld Omens of Summer Collector's Edition +"586700": + installDir: "Otherworld Omens of Summer Collector's Edition" launch: - executable: Otherworld_OmensOfSummer_CE.exe type: none -'586710': - installDir: Witches' Legacy Slumbering Darkness Collector's Edition +"586710": + installDir: "Witches' Legacy Slumbering Darkness Collector's Edition" launch: - config: oslist: windows @@ -279585,19 +275014,19 @@ type: default - config: oslist: macos - executable: WL5.app\\Contents\\MacOS\\MacGameCLauncher + executable: "WL5.app\\\\Contents\\\\MacOS\\\\MacGameCLauncher" type: default -'586720': - installDir: Surface Reel Life Collector's Edition +"586720": + installDir: "Surface Reel Life Collector's Edition" launch: - executable: Surface_ReelLifeCE.exe type: none -'586740': - installDir: Spirits of Mystery Song of the Phoenix Collector's Edition +"586740": + installDir: "Spirits of Mystery Song of the Phoenix Collector's Edition" launch: - executable: SpiritsOfMystery_SongOfThePhoenixCE.exe type: none -'586750': +"586750": installDir: Sonny launch: - config: @@ -279606,66 +275035,66 @@ type: none - config: oslist: macos - executable: SonnyOSX.app\\Contents\\MacOS\\SonnyOSX + executable: "SonnyOSX.app\\\\Contents\\\\MacOS\\\\SonnyOSX" type: none -'586770': +"586770": installDir: MEGALOMANIAC launch: - config: oslist: windows executable: MEGALOMANIAC.exe type: none -'586790': +"586790": installDir: Holdyourhouses launch: - config: oslist: windows executable: Holdyourhouses.exe type: none -'586830': +"586830": installDir: Mighty Monster Mayhem launch: - executable: mmm.exe type: vr -'586880': +"586880": installDir: Mini Ghost launch: - - arguments: '-console' + - arguments: "-console" config: oslist: windows executable: minighost.exe type: none -'586890': +"586890": installDir: Play with Balloon launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Balloon_Build.exe type: vr -'586920': +"586920": installDir: Empyrean Frontier launch: - config: oslist: windows executable: EmpyreanFrontier.application type: default -'586930': +"586930": installDir: Taken Souls Blood Ritual launch: - config: oslist: windows executable: Taken Souls Blood Ritual.exe type: default -'586950': +"586950": installDir: The Wizards launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: WindowsNoEditor\\Wizards.exe + executable: "WindowsNoEditor\\\\Wizards.exe" type: vr -'586960': +"586960": installDir: Upside Down launch: - config: @@ -279673,12 +275102,12 @@ executable: Upside Down.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Upside Down.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Upside Down.x86_64 type: default @@ -279686,7 +275115,7 @@ oslist: macos executable: Upside Down.app type: default -'586970': +"586970": installDir: Hungry Flame launch: - config: @@ -279697,11 +275126,11 @@ oslist: macos executable: Hungry Flame.app type: default -'586980': +"586980": installDir: MadOut2_BigCityOnline launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: game.exe type: none @@ -279710,21 +275139,21 @@ executable: game.app type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: game type: none -'586990': +"586990": installDir: Just VR Slingshot Target Practice launch: - config: oslist: windows executable: slingshot.exe type: vr -'587000': +"587000": installDir: FirstStrikeFinalHour launch: - - arguments: '-W' + - arguments: "-W" config: oslist: macos executable: FirstStikeFinalHour.app/Contents/MacOS/FirstStikeFinalHour @@ -279736,20 +275165,16 @@ - config: betakey: legacy oslist: windows - description: 'First Strike: Final Hour' - description_loc: - english: 'First Strike: Final Hour' + description: "First Strike: Final Hour" executable: FirstStrikeFinalHour.exe type: option1 - config: betakey: Internal oslist: macos description: Play Classic - description_loc: - english: Play Classic - executable: FirstStrikeClassic.app/Contents/MacOS/First\\ Strike\\ Final\\ Hour + executable: "FirstStrikeClassic.app/Contents/MacOS/First\\\\ Strike\\\\ Final\\\\ Hour" type: option1 -'587010': +"587010": installDir: EZRA launch: - config: @@ -279758,13 +275183,13 @@ executable: EZRA.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch 32 bit executable: EZRA.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch 64 bit executable: EZRA.x86_64 @@ -279774,41 +275199,41 @@ description: Launch executable: EZRA.app type: default -'587050': {} -'587070': +"587050": {} +"587070": installDir: PROTOThYPE launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: PROTOThYPE.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: PROTOThYPE.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: PROTOThYPE.x86_64 type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: PROTOThYPE_64.exe type: default -'587100': +"587100": installDir: Ys SEVEN launch: - - arguments: '-nolauncher' + - arguments: "-nolauncher" executable: Ys7.exe type: default - executable: Ys7Launcher.exe type: config nameLocalized: japanese: イースSEVEN -'587110': +"587110": installDir: Ys Memories of Celceta launch: - executable: Ysc_dx11.exe @@ -279817,32 +275242,32 @@ type: config nameLocalized: japanese: イース セルセタの樹海 -'587160': {} -'587180': +"587160": {} +"587180": installDir: Wulverblade launch: - config: oslist: windows executable: Wulverblade.exe type: default - - arguments: '-popupwindow' + - arguments: "-popupwindow" config: oslist: windows description: Wulverblade (Borderless Window) executable: Wulverblade.exe type: option1 -'587210': {} -'587220': +"587210": {} +"587220": installDir: Jet Island launch: - executable: JetIsland.exe type: vr -'587260': +"587260": installDir: Tokyo Xanadu eX+ launch: - executable: TokyoXanadu.exe type: none -'587290': +"587290": installDir: The Thing With Mistletoes launch: - config: @@ -279857,14 +275282,14 @@ oslist: linux executable: The Thing With Mistletoes.sh type: default -'587310': +"587310": installDir: Soma Spirits Rebalance launch: - config: oslist: windows executable: Game.exe type: default -'587330': +"587330": installDir: MARSSIMULATOR launch: - config: @@ -279874,47 +275299,47 @@ - description: Watch Intro Movie executable: mars_movie.mp4 type: none -'587390': +"587390": installDir: LOR - League of Runners launch: - config: oslist: windows executable: LOR.exe type: default -'587400': +"587400": installDir: Snow Moto Racing Freedom launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SnowMotoRacingFreedom.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: SnowMotoRacingFreedom type: default -'587420': +"587420": installDir: Cart Racer launch: - config: oslist: windows executable: Cart_Racer.exe type: default -'587430': +"587430": installDir: I Expect You To Die launch: - - arguments: '-vrmode openvr' + - arguments: "-vrmode openvr" config: oslist: windows executable: IEYTD.exe type: vr - - arguments: '-vrmode oculus' + - arguments: "-vrmode oculus" config: oslist: windows executable: IEYTD.exe type: othervr -'587440': +"587440": installDir: Galactic Keep launch: - config: @@ -279922,29 +275347,29 @@ executable: Galactic Keep.exe type: default - config: - osarch: '64' + osarch: "64" oslist: macos executable: Galactic Keep.app type: default -'587450': +"587450": installDir: Saurian launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Saurian.exe type: default - config: - osarch: '64' + osarch: "64" oslist: macos executable: Saurian.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Saurian.x86_64 type: default -'587460': +"587460": installDir: Knightfall Rivals launch: - config: @@ -279955,29 +275380,29 @@ oslist: macos executable: Knightfall_Rivals.app type: none -'587470': +"587470": installDir: Chroma Lab launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Chroma Lab.exe type: vr -'587480': +"587480": installDir: elaine launch: - config: oslist: windows executable: elaine.exe type: default -'587490': +"587490": installDir: Dark Throne launch: - config: oslist: windows executable: Dark Throne.exe type: default -'587540': +"587540": installDir: Deliverace launch: - config: @@ -279992,14 +275417,14 @@ oslist: linux executable: Deliverace.x86_64 type: none -'587560': +"587560": installDir: Oodlescape - The Apocalypse launch: - config: oslist: windows executable: Oodlescape.exe type: vr -'587570': +"587570": installDir: Elsewhere High Chapter 1 launch: - config: @@ -280013,44 +275438,44 @@ type: none - config: oslist: windows - ownsdlc: '605930' - description: 'Play Elsewhere High: Chapter 2 - A Visual Novel' + ownsdlc: "605930" + description: "Play Elsewhere High: Chapter 2 - A Visual Novel" executable: c2/nw.exe type: none - config: oslist: macos - ownsdlc: '605930' - description: 'Play Elsewhere High: Chapter 2 - A Visual Novel' + ownsdlc: "605930" + description: "Play Elsewhere High: Chapter 2 - A Visual Novel" executable: c2/nwjs.app type: none -'587580': +"587580": installDir: Nature Treks VR launch: - config: oslist: windows executable: Nature Treks VR.exe type: vr -'587590': {} -'587620': +"587590": {} +"587620": installDir: Okami launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: okami.exe type: default nameLocalized: japanese: 大神 絶景版 -'587650': +"587650": installDir: Half-Life 2 DownFall launch: - - arguments: '-game downfall' + - arguments: "-game downfall" config: - osarch: '32' + osarch: "32" oslist: windows executable: hl2.exe type: default -'587670': +"587670": installDir: Gremlins_vs_Automatons launch: - config: @@ -280065,54 +275490,54 @@ oslist: linux executable: Gremlins_vs_Automatons.x86 type: none -'587690': +"587690": installDir: The Artist launch: - config: oslist: windows executable: artist.exe type: default -'587710': +"587710": installDir: Xenobox VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: Xenobox VR Alpha.exe type: vr -'587730': +"587730": installDir: Orbital Injection launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Orbital Injection.exe type: vr -'587750': {} -'587770': +"587750": {} +"587770": installDir: 4x4RoadRace launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: 4x4RoadRace.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: 4x4RoadRace.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: 4x4RoadRace.x86_64 type: default - config: oslist: macos - executable: 4x4RoadRace.app\\Contents\\MacOS\\4x4RoadRace + executable: "4x4RoadRace.app\\\\Contents\\\\MacOS\\\\4x4RoadRace" type: default -'587790': +"587790": installDir: Deadly Animal Duel launch: - config: @@ -280123,22 +275548,22 @@ oslist: macos executable: Deadly Animal Duel.app type: none -'587810': +"587810": installDir: Bang Bang Fruit launch: - config: oslist: windows executable: BBF.exe type: default -'587830': {} -'587840': +"587830": {} +"587840": installDir: In the Darkness of the Sea launch: - config: oslist: windows executable: InTheDarknessoftheSea.exe type: default -'587860': +"587860": installDir: Tales of Escape launch: - config: @@ -280146,38 +275571,38 @@ description: Play on desktop - No VR executable: TalesOfEscape.exe type: default - - arguments: '-inVR' + - arguments: "-inVR" config: oslist: windows description: Play in SteamVR - Vive executable: TalesOfEscape.exe type: vr - - arguments: '-inVROculus' + - arguments: "-inVROculus" config: oslist: windows description: Play in SteamVR - Oculus executable: TalesOfEscape.exe type: vr -'587920': +"587920": installDir: Phantom Halls launch: - config: oslist: windows executable: PH.exe type: default -'587930': +"587930": installDir: Under a desert sun launch: - config: oslist: windows executable: UDS.exe type: vr -'587970': +"587970": installDir: Dead Drop launch: - executable: Dead Drop.exe type: default -'588010': +"588010": installDir: Red String of Fate launch: - config: @@ -280192,28 +275617,28 @@ oslist: linux executable: Red_String_of_Fate.sh type: default -'588030': +"588030": installDir: Derail Valley launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: DerailValley.exe type: vr - - arguments: '-vrmode oculus' + - arguments: "-vrmode oculus" config: - osarch: '64' + osarch: "64" oslist: windows executable: DerailValley.exe type: othervr - - arguments: '-nonvr' + - arguments: "-nonvr" config: - osarch: '64' + osarch: "64" oslist: windows description: Non-VR version executable: DerailValley.exe type: option1 -'588040': +"588040": installDir: WILL A Wonderful World launch: - config: @@ -280221,11 +275646,11 @@ executable: WILL.exe type: default - config: - osarch: '64' + osarch: "64" oslist: macos executable: WILL.app/Contents/MacOS/WILL type: default -'588050': +"588050": installDir: You With Me launch: - config: @@ -280240,21 +275665,21 @@ oslist: linux executable: You_With_Me.sh type: default -'588070': +"588070": installDir: BrotherZ launch: - config: oslist: windows executable: BrotherZ.exe type: default -'588080': +"588080": installDir: Numantia launch: - executable: Numantia.exe type: none -'588090': {} -'588100': {} -'588110': +"588090": {} +"588100": {} +"588110": installDir: One Dog Story launch: - config: @@ -280269,57 +275694,55 @@ oslist: linux executable: ODS.x86_64 type: none -'588120': +"588120": installDir: Capsa launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: CapsaClient.exe type: default - - arguments: '-dx11' + - arguments: "-dx11" config: - osarch: '64' + osarch: "64" oslist: windows description: Launch with DirectX11 - description_loc: - english: Launch with DirectX11 executable: CapsaClient.exe -'588140': +"588140": installDir: Dead Forest launch: - config: oslist: windows executable: EFV.exe type: default -'588160': +"588160": installDir: Pizza Connection 3 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Pizza Connection 3.exe type: default - config: - osarch: '64' + osarch: "64" oslist: macos executable: Pizza Connection 3.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Pizza Connection 3 type: default -'588180': +"588180": installDir: Totemori launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: totemori_win64/totemori_win64.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: totemori_win32/totemori_win32.exe type: default @@ -280331,41 +275754,41 @@ oslist: linux executable: totemori_linux/totemori_linux.x86_64 type: default -'588190': +"588190": installDir: Tower 3D Pro launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: tower3d.exe type: default -'588200': +"588200": installDir: MODSORK launch: - config: oslist: windows executable: MODSORK Early Access.exe type: none -'588210': +"588210": installDir: HELLION launch: - config: oslist: windows executable: Hellion.exe type: none -'588230': +"588230": installDir: Beckett launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Beckett.exe type: default - config: oslist: macos - executable: Beckett.app\\Contents\\MacOS\\Beckett + executable: "Beckett.app\\\\Contents\\\\MacOS\\\\Beckett" type: default -'588240': +"588240": installDir: Frisky Business launch: - config: @@ -280376,53 +275799,53 @@ oslist: macos executable: FriskyBusiness.app type: none -'588290': +"588290": installDir: Goalie Challenge VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Goalie Challenge VR.exe type: vr -'588340': +"588340": installDir: Stolen Steel VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: SwordVR.exe type: vr -'588410': +"588410": installDir: Virtual Sports launch: - config: oslist: windows executable: virtualSports.exe type: vr -'588420': {} -'588430': +"588420": {} +"588430": installDir: Fallout Shelter launch: - executable: FalloutShelter.exe type: none -'588440': +"588440": installDir: False Front launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: FalseFront.exe type: default -'588480': {} -'588490': +"588480": {} +"588490": installDir: TrickStyle launch: - config: oslist: windows executable: Play TrickStyle.exe type: default -'588540': +"588540": installDir: Super Lovely Planet launch: - config: @@ -280452,24 +275875,24 @@ description: 简单的射手 ~ Shooter Game Sequel executable: LovelyAprilSky.x86 type: option1 -'588550': +"588550": installDir: High Templar VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: HighTemplarVR executable: HighTemplar.exe type: vr -'588560': +"588560": installDir: VRobot launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: WindowsNoEditor/R5.exe type: vr -'588620': +"588620": installDir: Mary Le Chef - Cooking Passion launch: - config: @@ -280480,7 +275903,7 @@ oslist: macos executable: Mary le Chef.app type: none -'588630': +"588630": installDir: Draw Rider 2 launch: - config: @@ -280491,7 +275914,7 @@ oslist: windows executable: Draw Rider 2.exe type: none -'588650': +"588650": installDir: Dead Cells launch: - config: @@ -280511,7 +275934,7 @@ oslist: macos executable: deadcells type: default -'588690': +"588690": installDir: PeaceDeath launch: - config: @@ -280522,7 +275945,7 @@ oslist: linux executable: run.sh type: default -'588710': +"588710": installDir: Neighboring Islands launch: - config: @@ -280537,7 +275960,7 @@ oslist: macos executable: Neighbouring islands.app type: default -'588730': +"588730": installDir: Majotori launch: - config: @@ -280545,12 +275968,12 @@ executable: Majotori.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Majotori.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Majotori.x86_64 type: default @@ -280558,28 +275981,28 @@ oslist: macos executable: Majotori.app type: default -'588750': +"588750": installDir: King Of Dirt launch: - config: oslist: windows executable: KingOfDirt.exe type: default -'588800': +"588800": installDir: HEVN launch: - config: oslist: windows executable: Hevn.exe type: default -'588880': +"588880": installDir: Crush launch: - config: oslist: windows executable: Crush.exe type: default -'588890': +"588890": installDir: Heroes of Arca launch: - config: @@ -280587,12 +276010,12 @@ executable: HoA.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: HoA.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: HoA.x86_64 type: default @@ -280600,49 +276023,49 @@ oslist: macos executable: HoA.app type: default -'588920': +"588920": installDir: BADASS launch: - description: Start executable: Game.exe type: none -'588950': +"588950": installDir: Kingsway launch: - executable: Kingsway.exe type: none -'588970': +"588970": installDir: Oik launch: - config: oslist: windows executable: Oik.exe type: none -'588980': +"588980": installDir: Speed and Scream launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ProjectGulag.exe type: vr -'588990': +"588990": installDir: The Homestead Invasion launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: The Homestead Invasion.exe type: vr -'589040': +"589040": installDir: FUJII launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Fuji.exe type: vr -'589060': +"589060": installDir: Trapper Knight Sharpshooter Princess launch: - config: @@ -280651,68 +276074,68 @@ type: default - config: oslist: linux - executable: ./Wanahime + executable: "./Wanahime" type: default nameLocalized: japanese: 罠の騎士 銀閃の姫 -'589080': +"589080": installDir: Enigma Sphere launch: - - arguments: '-VR' + - arguments: "-VR" config: oslist: windows executable: project_museum.exe type: vr -'589100': +"589100": installDir: The Moonstone Equation launch: - config: oslist: windows executable: Moon.exe type: default -'589110': +"589110": installDir: Constricted VR launch: - config: oslist: windows executable: ConstrictedVR.exe type: vr -'589150': +"589150": installDir: Viking Rage launch: - - arguments: '-Platform=Steam' + - arguments: "-Platform=Steam" config: - osarch: '64' + osarch: "64" oslist: windows executable: VikingRage.exe type: vr -'589160': +"589160": installDir: Zombie Apocalypse launch: - config: oslist: windows executable: game.exe type: default -'589170': +"589170": installDir: Panzer Panic VR launch: - config: oslist: windows executable: PanzerPanic.exe type: vr -'589180': +"589180": installDir: Defuser VR launch: - config: oslist: windows executable: defuserVR.exe type: vr -'589200': +"589200": installDir: Dreadhalls launch: - executable: Dreadhalls.exe type: vr - - arguments: '-playSeated' + - arguments: "-playSeated" description: Dreadhalls (Seated Position) executable: Dreadhalls.exe type: vr @@ -280723,32 +276146,32 @@ description: Dreadhalls (Oculus / Experimental) executable: Dreadhalls_Oculus.exe type: vr -'589220': +"589220": installDir: UAYEB launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: .\\Bin64\\UAYEB.exe + executable: ".\\\\Bin64\\\\UAYEB.exe" type: default -'589250': +"589250": installDir: PowersVR launch: - executable: PowersVR.exe type: vr -'589260': +"589260": installDir: Nice Slice launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: Nice Slice.exe type: default -'589270': +"589270": installDir: xoEl launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: xoEl.exe type: default @@ -280757,35 +276180,35 @@ executable: xoEl.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: xoEl.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: xoEl.x64.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: xoEl.x86_64 type: default -'589280': +"589280": installDir: Stunt Kite Masters VR launch: - config: oslist: windows executable: skmvr.exe type: vr -'589290': +"589290": installDir: Holdfast Nations At War launch: - config: oslist: windows executable: Holdfast NaW.exe type: none -'589300': +"589300": installDir: Legend of the Skyfish launch: - config: @@ -280794,48 +276217,48 @@ type: default - config: oslist: macos - executable: Skyfish.app\\Contents\\MacOS\\Skyfish + executable: "Skyfish.app\\\\Contents\\\\MacOS\\\\Skyfish" type: default -'589320': +"589320": installDir: Catch a Lover launch: - config: oslist: windows executable: Catch_a_Lover.exe type: none -'589360': +"589360": installDir: Ni no Kuni II Revenant Kingdom launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Nino2.exe type: none -'589370': +"589370": installDir: FurFun launch: - config: betakey: FurFun.exe - osarch: '64' + osarch: "64" oslist: windows description: FurFun executable: FurFun.exe type: default -'589380': +"589380": installDir: VRog launch: - config: oslist: windows executable: VRog.exe type: vr - - arguments: '-stablehorizon' + - arguments: "-stablehorizon" config: oslist: windows description: with stable horizon executable: VRog.exe type: vr -'589390': {} -'589410': +"589390": {} +"589410": installDir: Dämmerlicht launch: - config: @@ -280843,12 +276266,12 @@ executable: DammerLicht_Windows_V1.0.1.exe type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: Dammerlicht_Linux_V1.0.1.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: Dammerlicht_Linux_V1.0.1.x86_64 type: none @@ -280856,7 +276279,7 @@ oslist: macos executable: Dammerlicht_OSX_V101.app type: none -'589420': +"589420": installDir: Grass Cutter launch: - config: @@ -280868,36 +276291,36 @@ executable: GrassCutter.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: GrassCutter.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: GrassCutter.x86_64 type: default -'589430': +"589430": installDir: Killer Elite – Time to Die launch: - config: oslist: windows executable: KillerEliteTimeToDie.exe type: default -'589440': {} -'589450': +"589440": {} +"589450": installDir: Where Cards Fall launch: - config: oslist: windows executable: wcf.exe type: default -'589460': +"589460": installDir: Covert Syndrome launch: - executable: MyProject.exe type: vr -'589470': +"589470": installDir: Myrne The Quest launch: - config: @@ -280915,7 +276338,7 @@ description: Launch executable: MyrneTheQuest.app type: none -'589480': +"589480": installDir: The Falconers Moonlight launch: - config: @@ -280924,14 +276347,14 @@ type: default - config: oslist: macos - executable: moonlight.app\\Contents\\MacOS\\moonlight + executable: "moonlight.app\\\\Contents\\\\MacOS\\\\moonlight" type: default - config: oslist: linux executable: moonlight.sh type: default -'589490': {} -'589500': +"589490": {} +"589500": installDir: Shovel Knight - Shovel of Hope launch: - config: @@ -280940,27 +276363,27 @@ executable: ShovelOfHope.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: 32/ShovelOfHope type: default - workingdir: '32' + workingdir: "32" - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: 64/ShovelOfHope type: default - workingdir: '64' + workingdir: "64" - config: oslist: macos description: Launch executable: ShovelOfHope.app type: default nameLocalized: - japanese: 'ショベルナイト: ショベルオブホープ' -'589510': + japanese: "ショベルナイト: ショベルオブホープ" +"589510": installDir: Shovel Knight - Specter of Torment launch: - config: @@ -280969,27 +276392,27 @@ executable: SpecterOfTorment.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: 32/SpecterOfTorment type: default - workingdir: '32' + workingdir: "32" - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: 64/SpecterOfTorment type: default - workingdir: '64' + workingdir: "64" - config: oslist: macos description: Launch executable: SpecterOfTorment.app type: default nameLocalized: - japanese: 'ショベルナイト: スペクターオブトーメント' -'589530': + japanese: "ショベルナイト: スペクターオブトーメント" +"589530": installDir: Hakuoki Kyoto Winds launch: - config: @@ -280999,7 +276422,7 @@ nameLocalized: japanese: 薄桜鬼 真改 風ノ章 tchinese: 薄櫻鬼 真改 風之章 -'589590': +"589590": installDir: Kindergarten launch: - config: @@ -281014,21 +276437,21 @@ oslist: linux executable: Kindergarten.x86 type: default -'589620': +"589620": installDir: It Lurks in the Woods launch: - config: oslist: windows executable: ElleRodeDanslBois.exe type: none -'589640': +"589640": installDir: Spoids launch: - config: oslist: windows executable: Spoids.exe type: default -'589670': +"589670": installDir: dkh launch: - config: @@ -281039,15 +276462,15 @@ oslist: windows executable: DoubleKickHeroes.exe type: default -'589680': +"589680": installDir: Chainless launch: - config: oslist: windows executable: Chainless.exe type: vr -'589690': - installDir: Queen's Quest 3 The End of Dawn +"589690": + installDir: "Queen's Quest 3 The End of Dawn" launch: - config: oslist: windows @@ -281055,13 +276478,13 @@ executable: QueensQuest3.exe type: none - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: QueensQuest3_i386 type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: QueensQuest3_amd64 @@ -281071,7 +276494,7 @@ description: Launch executable: mac_steam.app/Contents/MacOS/mac_steam type: none -'589730': +"589730": installDir: Tyd wag vir Niemand launch: - config: @@ -281083,24 +276506,24 @@ executable: Tyd_wag_vir_Niemand.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Tyd_wag_vir_Niemand.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Tyd_wag_vir_Niemand.x86 type: default -'589740': +"589740": installDir: Blue Horizon launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: BlueHorizon.exe type: default -'589760': +"589760": installDir: Revhead launch: - config: @@ -281112,18 +276535,18 @@ executable: Revhead.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Revhead.x86_64 type: default -'589770': +"589770": installDir: Green elephant 2D launch: - config: oslist: windows executable: ZS2D.exe type: default -'589780': +"589780": installDir: The Red Strings Club launch: - config: @@ -281141,7 +276564,7 @@ description: Linux Build executable: runner type: none -'589850': +"589850": installDir: Leashed_Soul launch: - config: @@ -281153,16 +276576,16 @@ executable: LeashedSoul_MacUniversal_20170608.app/Contents/MacOS/LeashedSoul_MacUniversal_20170608 type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: LeashedSoul_LinuxUniversal_20170608.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: LeashedSoul_LinuxUniversal_20170608.x86_64 type: default -'589860': +"589860": installDir: SoulSet launch: - config: @@ -281180,21 +276603,21 @@ description: Launch executable: SoulSet.sh type: none -'589870': +"589870": installDir: Learn to Fly 3 launch: - config: oslist: windows executable: Learn to Fly 3.exe type: none -'589940': +"589940": installDir: Eye of the Temple launch: - config: oslist: windows executable: EyeOfTheTemple.exe type: vr -'590250': +"590250": installDir: The Frontier Outskirts VR launch: - config: @@ -281202,7 +276625,7 @@ description: Play Game executable: TFO_VR.exe type: vr -'590270': +"590270": installDir: Catsby launch: - config: @@ -281213,7 +276636,7 @@ oslist: macos executable: Catsby.app type: default -'590280': +"590280": installDir: Canvas The Gallery Game launch: - config: @@ -281224,7 +276647,7 @@ oslist: linux executable: CTGLinux.x86 type: default -'590370': +"590370": installDir: Tiny Troopers 2 launch: - config: @@ -281235,7 +276658,7 @@ oslist: macos executable: TinyTroopers2.app/Contents/MacOS/TinyTroopers2 type: none -'590380': +"590380": installDir: Into the Breach launch: - config: @@ -281247,35 +276670,35 @@ description: Launch Mac OS Into the Breach executable: Into the Breach.app type: none - workingdir: ./ + workingdir: "./" - config: - osarch: '64' + osarch: "64" oslist: linux executable: Breach type: default -'590420': {} -'590430': +"590420": {} +"590430": installDir: BeefeaterXO launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: BeefeaterXO.exe type: vr -'590440': +"590440": installDir: Carlos III y la difusion de la antigüedad launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: CarlosTerceroBA.exe type: vr -'590510': +"590510": installDir: SoundSelf launch: - - arguments: '-ini soundself\\ss_steam.ini' + - arguments: "-ini soundself\\\\ss_steam.ini" config: - osarch: '64' + osarch: "64" oslist: windows executable: SoundSelf.exe type: default @@ -281283,51 +276706,51 @@ oslist: macos executable: soundself_steam.app/Contents/MacOS/soundself_steam type: default - - arguments: '-ini soundself\\ss_oculus_steam.ini' + - arguments: "-ini soundself\\\\ss_oculus_steam.ini" config: - osarch: '64' + osarch: "64" oslist: windows executable: SoundSelf.exe type: othervr - - arguments: '-ini soundself\\ss_openvr.ini' + - arguments: "-ini soundself\\\\ss_openvr.ini" config: - osarch: '64' + osarch: "64" oslist: windows executable: SoundSelf.exe type: vr -'590530': +"590530": installDir: World Builder launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: WorldBuilder.exe type: vr -'590560': +"590560": installDir: FilthyStinkingOrcs launch: - - arguments: '-vrmode openvr' + - arguments: "-vrmode openvr" config: - osarch: '64' + osarch: "64" oslist: windows executable: FilthyStinkingOrcs.exe type: vr -'590570': +"590570": installDir: Paper Quest launch: - config: oslist: windows executable: PaperQuest.exe type: default -'590580': +"590580": installDir: Dragon of Legends launch: - config: oslist: windows executable: dol.exe type: default -'590590': +"590590": installDir: Remnants of Naezith launch: - config: @@ -281342,14 +276765,14 @@ oslist: macos executable: naezith type: none -'590600': +"590600": installDir: LifeBase launch: - config: oslist: windows executable: LifeBase v0.0.33.exe type: none -'590660': +"590660": installDir: Shop Tycoon 2018 launch: - config: @@ -281357,52 +276780,52 @@ description: Versie 3.2 GODOT executable: Shoptycoon 3.2w.exe type: default -'590690': +"590690": installDir: Sprint Vector launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Sprint Vector executable: SprintVector.exe type: vr - - arguments: '-spectate' + - arguments: "-spectate" config: betakey: testingsupersecretstuff description: spectator client for multiplayer games executable: SprintVector.exe type: vr - - arguments: '-tournament' + - arguments: "-tournament" config: betakey: tournament-mode description: LAN only Sprint Vector executable: SprintVector.exe type: vr - - arguments: '-tournament -spectate' + - arguments: "-tournament -spectate" config: betakey: tournament-mode description: spectator client for LAN games executable: SprintVector.exe type: vr -'590720': +"590720": installDir: Cobalt WASD launch: - - arguments: '-bundle-dir bundle -mods_forced official/Lithium' + - arguments: "-bundle-dir bundle -mods_forced official/Lithium" description: Launch executable: cobalt.exe type: default -'590770': +"590770": installDir: Vectonic launch: - config: oslist: windows - executable: windows\\vectonic.exe + executable: "windows\\\\vectonic.exe" type: none - config: oslist: macos - executable: OSX\\Vectonic.app\\Contents\\MacOS\\Vectonic + executable: "OSX\\\\Vectonic.app\\\\Contents\\\\MacOS\\\\Vectonic" type: none -'590800': +"590800": installDir: Rainbow Dreams launch: - config: @@ -281417,15 +276840,15 @@ oslist: linux executable: Rainbow Dreams.sh type: default -'590820': +"590820": installDir: Pixel Stories of Dungeon launch: - config: oslist: windows executable: Pixel Stories of Dungeon.exe type: default -'590830': {} -'590840': +"590830": {} +"590840": installDir: Attack of the Giant Mutant Lizard launch: - config: @@ -281433,12 +276856,12 @@ executable: Attack of the Giant Mutant Lizard.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: ml.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: ml.x86 type: default @@ -281446,43 +276869,43 @@ oslist: macos executable: ml-game-mac.app type: default -'590850': +"590850": installDir: Night Lights launch: - config: oslist: windows executable: NightLights.exe type: default -'590870': +"590870": installDir: Planetoid launch: - config: oslist: windows executable: planetoid.exe type: default -'590910': +"590910": installDir: yanhuang launch: - config: oslist: windows executable: yh.exe type: default -'590940': {} -'590950': +"590940": {} +"590950": installDir: Toaster Jam launch: - config: oslist: windows executable: Toaster.exe type: none -'590970': +"590970": installDir: Hollow launch: - config: oslist: windows executable: Hollow.exe type: default -'591000': +"591000": installDir: Deep Sixed launch: - config: @@ -281500,9 +276923,9 @@ description: Deep Sixed executable: Deep Sixed.app/Contents/MacOS/Deep Sixed type: default -'591010': {} -'591080': {} -'591090': +"591010": {} +"591080": {} +"591090": installDir: Bestseller Curse of the Golden Owl launch: - config: @@ -281513,41 +276936,41 @@ oslist: macos executable: Bestseller.app type: default -'591130': +"591130": installDir: Bunny Madness Anarchy launch: - config: oslist: windows - executable: WindowsNoEditor\\BunnyMadness_Anarchy.exe + executable: "WindowsNoEditor\\\\BunnyMadness_Anarchy.exe" type: default -'591140': +"591140": installDir: Disc League launch: - config: oslist: windows executable: DiscLeague.exe type: vr -'591350': +"591350": installDir: Escape the Mazes launch: - config: oslist: windows executable: mazes.exe type: default -'591360': +"591360": installDir: DreamsOfDali launch: - executable: DreamsOfDali.exe type: vr -'591370': +"591370": installDir: Production Line launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ProductionLine.exe type: default -'591380': +"591380": installDir: Bomb Squad Academy launch: - config: @@ -281555,12 +276978,12 @@ executable: BSA.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: BSA.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: BSA.x86_64 type: default @@ -281568,7 +276991,7 @@ oslist: macos executable: BSA.app type: default -'591390': +"591390": installDir: a nifty game launch: - config: @@ -281583,14 +277006,14 @@ oslist: macos executable: nifty.app type: default -'591420': +"591420": installDir: Zup! 4 launch: - config: oslist: windows executable: Zup! 4.exe type: default -'591460': +"591460": installDir: Parkasaurus launch: - config: @@ -281602,74 +277025,70 @@ koreana: 파카사우루스 sc_schinese: 恐龙乐园 schinese: 恐龙乐园 -'591470': - installDir: Dark Realm Queen of Flames Collector's Edition +"591470": + installDir: "Dark Realm Queen of Flames Collector's Edition" launch: - config: oslist: windows executable: DarkRealm_QueenOfFlames_CE.exe type: default -'591530': +"591530": installDir: HyperUniverse launch: - - arguments: ./nxsteam/src/ + - arguments: "./nxsteam/src/" config: oslist: windows - executable: nxsteam\\nxsteam.exe + executable: "nxsteam\\\\nxsteam.exe" type: default - - arguments: ./nxsteam/src/ + - arguments: "./nxsteam/src/" config: betakey: jokershouse oslist: windows description: Beta - executable: nxsteam\\nxsteam.exe + executable: "nxsteam\\\\nxsteam.exe" type: default -'591560': +"591560": installDir: Red Death launch: - config: oslist: windows executable: Red Death.exe type: default -'591580': - installDir: Mystery Tales The Lost Hope Collector's Edition +"591580": + installDir: "Mystery Tales The Lost Hope Collector's Edition" launch: - config: oslist: windows executable: MysteryTales_TheLostHope_CE.exe type: default -'591610': +"591610": installDir: Deep End launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Deep_End.exe type: vr - config: - osarch: '64' + osarch: "64" oslist: windows description: Launches with Oculus SDK support executable: Deep_End.exe type: othervr -'591630': +"591630": installDir: Candleman launch: - config: oslist: windows - description_loc: - sc_schinese: Windows操作系统 executable: Candleman.exe type: default - config: oslist: macos - description_loc: - sc_schinese: MacOS操作系统 executable: Candleman.app type: default nameLocalized: sc_schinese: 蜡烛人:完整版 -'591640': +"591640": installDir: Light It launch: - config: @@ -281677,54 +277096,54 @@ executable: lightit.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: lightit.sh type: default -'591660': +"591660": installDir: Final Rest launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: FinalRest.exe type: vr -'591680': +"591680": installDir: Taphouse VR launch: - config: oslist: windows executable: TaphouseVR.exe type: vr -'591740': +"591740": installDir: Sniper Fury launch: - config: oslist: windows executable: mcfw.exe type: none -'591750': +"591750": installDir: Solo launch: - config: oslist: windows executable: Solo.exe type: none -'591760': +"591760": installDir: HyperBrawl Tournament launch: - config: oslist: windows executable: HyperBrawl Tournament.exe type: default -'591790': +"591790": installDir: BREACH IT launch: - config: oslist: windows executable: BREACHIT.exe type: vr -'591910': +"591910": installDir: World Basketball Manager 2 launch: - config: @@ -281733,29 +277152,29 @@ type: default - config: oslist: macos - executable: WBM2.app\\Contents\\MacOS\\WBM2 + executable: "WBM2.app\\\\Contents\\\\MacOS\\\\WBM2" type: default -'591920': +"591920": installDir: Power Tools VR launch: - executable: Power Tools.exe type: vr -'591930': +"591930": installDir: Genesia Legacy launch: - config: oslist: windows executable: Genesia Legacy.exe type: none -'591940': +"591940": installDir: The Normal Day launch: - config: oslist: windows executable: TheNormalDay.exe type: default -'591950': {} -'591960': +"591950": {} +"591960": installDir: Animation Throwdown The Quest for Cards launch: - config: @@ -281770,8 +277189,6 @@ betakey: beta oslist: macos description: Dev - description_loc: - english: Dev executable: dev/AnimationThrowdownDev.app/Contents/MacOS/ThrowdownDev type: option1 - config: @@ -281790,21 +277207,19 @@ betakey: development oslist: macos description: Dev - description_loc: - english: Dev executable: dev/AnimationThrowdownDev.app/Contents/MacOS/ThrowdownDev type: option1 -'591990': +"591990": installDir: Cosmic Awakening VR launch: - config: oslist: windows executable: CosmicAwakeningVR.exe type: vr -'592020': +"592020": installDir: SmuggleCraft launch: - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" config: oslist: windows executable: SmuggleCraft.exe @@ -281814,52 +277229,52 @@ executable: SmuggleCraft.app type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: SmuggleCraft.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: SmuggleCraft.x86_64 type: default -'592030': +"592030": installDir: Just In Time launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: JustInTime.exe type: vr - - arguments: '-debug_steamapi -sw-consoleserver' + - arguments: "-debug_steamapi -sw-consoleserver" config: betakey: beta-internal - osarch: '64' + osarch: "64" oslist: windows description: Remote Console Enabled executable: JustInTime.exe type: vr -'592040': +"592040": installDir: Energia launch: - config: oslist: windows executable: EnergiaWindows.exe type: none -'592060': +"592060": installDir: Sons of Triskelion launch: - description: Launch executable: Game.exe type: none -'592100': +"592100": installDir: flotilla2 launch: - config: oslist: windows executable: flotilla_vr2.exe type: vr - - arguments: '-rendertomonitor false -resolution 256 256 -developer true -logfile true' + - arguments: "-rendertomonitor false -resolution 256 256 -developer true -logfile true" config: oslist: windows description: Flotilla 2 (compatibility mode) @@ -281874,27 +277289,27 @@ description: custom campaign executable: flotilla2_campaignchooser.exe type: option1 -'592120': +"592120": installDir: Glyphs Apprentice launch: - - arguments: '-jar ga-1.1.jar' + - arguments: "-jar ga-1.1.jar" config: oslist: windows - executable: jre\\bin\\javaw.exe + executable: "jre\\\\bin\\\\javaw.exe" type: default - - arguments: '-jar ga-1.1.jar' + - arguments: "-jar ga-1.1.jar" config: oslist: macos executable: jre/bin/java type: default -'592130': +"592130": installDir: NakedManVSTheClothes launch: - config: oslist: windows executable: Nakedman.exe type: default -'592200': +"592200": installDir: Super Army of Tentacles 3 launch: - config: @@ -281903,26 +277318,26 @@ type: default - config: oslist: macos - executable: SUPERARMY3.app\\Contents\\MacOS\\SUPERARMY3 + executable: "SUPERARMY3.app\\\\Contents\\\\MacOS\\\\SUPERARMY3" type: default - config: oslist: linux executable: SUPERARMY3.sh type: default -'592240': +"592240": installDir: Jupiteration launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Jupiteration.exe type: vr -'592270': +"592270": installDir: Neko Navy launch: - executable: NekoNavy.exe type: none -'592300': +"592300": installDir: Slowdrive launch: - config: @@ -281930,12 +277345,12 @@ executable: Slowdrive.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Slowdrive.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Slowdrive.x86_64 type: default @@ -281943,71 +277358,71 @@ oslist: macos executable: Slowdrive.app type: default -'592310': +"592310": installDir: RealBX VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: VCGame.exe type: vr -'592320': +"592320": installDir: The Ruins VR Escape the Room launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TheRuins.exe type: vr -'592330': +"592330": installDir: Roomscale Coaster launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: RoomscaleCoaster.exe type: vr -'592340': +"592340": installDir: Mall Empire launch: - config: oslist: windows executable: game.exe type: default -'592360': - installDir: Violet's Dream VR +"592360": + installDir: "Violet's Dream VR" launch: - config: oslist: windows - executable: Violet's Dream VR.exe + executable: "Violet's Dream VR.exe" type: vr -'592380': {} -'592390': +"592380": {} +"592390": installDir: Radline launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Radline/Binaries/Win64/Radline.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Radline.sh type: default -'592400': +"592400": installDir: Courtyard Broomball EARLY ACCESS launch: - executable: fly_s.exe type: none -'592410': +"592410": installDir: Spacetours VR launch: - config: oslist: windows executable: SpacetoursVR.exe type: vr -'592480': +"592480": installDir: Knights and Bikes launch: - config: @@ -282026,67 +277441,67 @@ japanese: すすめ!じでんしゃナイツ schinese: 骑士与单车 tchinese: 騎士與單車 -'592490': {} -'592550': +"592490": {} +"592550": installDir: Seasteader launch: - config: oslist: windows executable: Seasteader.exe type: none -'592560': +"592560": installDir: Hoop Route launch: - config: oslist: windows executable: Hoop_Route.exe type: vr -'592570': +"592570": installDir: Wild Unknown launch: - config: oslist: windows executable: Wild_Unknown.exe type: default -'592580': +"592580": installDir: PRO EVOLUTION SOCCER 2018 launch: - description: Launch executable: PES2018.exe type: none -'592600': +"592600": installDir: PRO EVOLUTION SOCCER 2018 LITE launch: - description: Lunch executable: PES2018.exe type: none -'592620': +"592620": installDir: Trajectory launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: Trajectory\\Trajectory.exe + executable: "Trajectory\\\\Trajectory.exe" type: default - config: - osarch: '64' + osarch: "64" oslist: windows - executable: Trajectory\\Trajectory.exe + executable: "Trajectory\\\\Trajectory.exe" type: vr - config: - osarch: '64' + osarch: "64" oslist: windows - executable: Trajectory\\Trajectory.exe + executable: "Trajectory\\\\Trajectory.exe" type: vr -'592640': +"592640": installDir: MGSSG launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: MGSStreamGames.exe type: default -'592660': +"592660": installDir: Zen Garden launch: - config: @@ -282095,53 +277510,53 @@ type: default - config: oslist: macos - executable: ZenGarden.app\\Contents\\MacOS\\ZenGarden + executable: "ZenGarden.app\\\\Contents\\\\MacOS\\\\ZenGarden" type: default -'592720': - installDir: Paulo's Wing +"592720": + installDir: "Paulo's Wing" launch: - config: oslist: windows executable: PaulosWing.exe type: vr -'592730': +"592730": installDir: Aerial Destruction launch: - config: oslist: windows description: Launch - executable: Binaries\\Win32\\UDK.exe + executable: "Binaries\\\\Win32\\\\UDK.exe" type: none - config: oslist: macos - executable: AERIAL-DESTRUCTION.app\\Contents\\MacOS\\UDKGame + executable: "AERIAL-DESTRUCTION.app\\\\Contents\\\\MacOS\\\\UDKGame" type: default -'592740': +"592740": installDir: Drift 7 Islands launch: - config: oslist: windows executable: D7i.exe type: none -'592750': +"592750": installDir: SPACE-FRIGHT launch: - config: oslist: windows executable: SPACE-FRIGHT.exe type: none -'592780': +"592780": installDir: Bang Bang Car launch: - config: oslist: windows executable: BangBangCar.exe type: default -'592890': +"592890": installDir: Insidia launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Insidia.exe type: default @@ -282150,21 +277565,21 @@ executable: Insidia.app type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: Insidia.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Insidia.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Insidia.x86 type: default -'592990': +"592990": installDir: ChemCaper launch: - config: @@ -282175,26 +277590,26 @@ oslist: macos executable: ChemCaper.app/Contents/MacOS/ChemCaper type: default -'593030': +"593030": installDir: Strategic Command WWII War in Europe launch: - executable: autorun.exe type: default -'593060': +"593060": installDir: Squishies launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Squishies.exe type: vr - - arguments: '-vrmode oculus' + - arguments: "-vrmode oculus" config: - osarch: '64' + osarch: "64" oslist: windows executable: Squishies.exe type: othervr -'593070': +"593070": installDir: Digby Extreme launch: - config: @@ -282209,25 +277624,25 @@ oslist: linux executable: startgame.sh type: none -'593100': +"593100": installDir: There Is a Way launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: There Is a Way.exe type: default - config: oslist: macos - executable: Contents\\MacOS\\There Is a Way + executable: "Contents\\\\MacOS\\\\There Is a Way" type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: There Is a Way.x86_64 type: default -'593150': {} -'593200': +"593150": {} +"593200": installDir: DMF launch: - config: @@ -282242,32 +277657,32 @@ oslist: linux executable: DMF.sh type: default -'593210': +"593210": installDir: Counter Fight Samurai Edition launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: CounterFightSE.exe type: vr -'593240': +"593240": installDir: VR Sports launch: - executable: VRSports.exe type: vr -'593250': +"593250": installDir: Voxel Shot VR launch: - executable: VoxelShotVR.exe type: vr -'593260': +"593260": installDir: Planet Defender launch: - config: oslist: windows executable: PlanetDefender.exe type: vr -'593280': +"593280": installDir: Cat Quest launch: - config: @@ -282278,8 +277693,8 @@ oslist: macos executable: Cat Quest.app/Contents/MacOS/Cat Quest type: default -'593290': {} -'593330': +"593290": {} +"593330": installDir: Algotica Iterations launch: - config: @@ -282294,22 +277709,22 @@ oslist: linux executable: Algotica Iterations.x86 type: default -'593340': +"593340": installDir: Gaben Kingdom launch: - config: oslist: windows executable: nw.exe type: default -'593400': +"593400": installDir: Float Gallery launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: windows_content/FLOAT_GALLERY.exe type: vr -'593410': +"593410": installDir: Elven Legend launch: - config: @@ -282324,7 +277739,7 @@ oslist: linux executable: ElvenLegend.x86 type: default -'593490': +"593490": installDir: Empire Architect launch: - config: @@ -282332,20 +277747,20 @@ description: Launch executable: Empire Architect.exe type: none -'593530': +"593530": installDir: Jelly in the Sky launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: JellyInTheSky.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: JellyInTheSky32.exe type: default -'593540': +"593540": installDir: Elven Legend 2 The Bewitched Tree launch: - config: @@ -282360,33 +277775,33 @@ oslist: linux executable: ElvenLegend2.x86 type: default -'593560': +"593560": installDir: The Last Cargo launch: - config: oslist: windows executable: TLC Launcher.exe type: none -'593600': +"593600": installDir: PixARK launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Play PixARK - executable: ShooterGame\\Binaries\\Win64\\PixARK.exe + executable: "ShooterGame\\\\Binaries\\\\Win64\\\\PixARK.exe" type: none - workingdir: ShooterGame\\Binaries\\Win64\\ + workingdir: "ShooterGame\\\\Binaries\\\\Win64\\\\" nameLocalized: schinese: 方块方舟(PixARK) -'593620': +"593620": installDir: The Last Conflict launch: - config: oslist: windows executable: The Last Conflict.exe type: default -'593640': +"593640": installDir: Papetura launch: - config: @@ -282395,29 +277810,29 @@ type: default - config: oslist: macos - executable: Papetura.app\\Contents\\MacOS\\Papetura + executable: "Papetura.app\\\\Contents\\\\MacOS\\\\Papetura" type: default -'593670': +"593670": installDir: Sponchies launch: - config: oslist: windows executable: Sponchies.exe type: default -'593680': +"593680": installDir: Rocking Pilot launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: RockingPilot.exe type: default - config: - osarch: '64' + osarch: "64" oslist: macos executable: RockingPilot.app type: default -'593700': +"593700": installDir: TowerFortress launch: - config: @@ -282428,98 +277843,98 @@ oslist: macos executable: TowerFortress.app type: none -'593720': - installDir: Dangerous Games Prisoners of Destiny Collector's Edition +"593720": + installDir: "Dangerous Games Prisoners of Destiny Collector's Edition" launch: - config: oslist: windows executable: DangerousGames_PrisonersOfDestiny_CE.exe type: default -'593730': +"593730": installDir: Ouroboros Prelude launch: - config: oslist: windows executable: Ouroboros Prelude.exe type: default -'593740': +"593740": installDir: Dragon Climax launch: - config: oslist: windows executable: Dragon Climax.exe type: default -'593850': +"593850": installDir: Davyria launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Davyria.exe type: none -'593900': +"593900": installDir: Tender Loving Care launch: - config: oslist: windows executable: TLC.exe type: default -'593950': +"593950": installDir: Shi Yang teach you to learn disaster prevention launch: - config: oslist: windows executable: Game.exe type: default -'593960': +"593960": installDir: Lorelai launch: - config: oslist: windows executable: Lorelai.exe type: default -'593970': +"593970": installDir: Clash of Vessels VR launch: - config: oslist: windows executable: ClashOfVesselsVR.exe type: vr -'593980': +"593980": installDir: Gluon launch: - config: oslist: windows executable: Game_Release.exe type: default -'594000': +"594000": installDir: Shadows and Lies launch: - description: Start executable: Game.exe type: none -'594040': +"594040": installDir: Series Makers launch: - config: oslist: windows executable: SeriesMakers.exe type: default -'594050': +"594050": installDir: Red Alliance launch: - config: oslist: windows executable: Red Alliance.exe type: default -'594120': +"594120": installDir: Fort Awesome launch: - config: oslist: windows executable: Fort Awesome.exe type: vr -'594130': +"594130": installDir: winds-of-change launch: - config: @@ -282534,43 +277949,43 @@ oslist: linux executable: WindsofChange.sh type: default -'594150': +"594150": installDir: airRevo VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: airRevoVR_v1-0.exe type: othervr -'594160': +"594160": installDir: The Last Patient launch: - config: oslist: windows executable: The Last Patient.exe type: default -'594200': +"594200": installDir: DGHITF launch: - config: oslist: windows executable: dghitf.exe type: vr -'594210': {} -'594220': +"594210": {} +"594220": installDir: TheLivingRemain launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TheLivingRemain.exe type: vr - config: - osarch: '64' + osarch: "64" oslist: windows executable: TheLivingRemain.exe type: othervr -'594300': +"594300": installDir: Chasing Styx launch: - config: @@ -282578,12 +277993,12 @@ executable: Chasing Styx.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Chasing Styx.bin.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Chasing Styx.bin.x86_64 type: default @@ -282591,7 +278006,7 @@ oslist: macos executable: Chasing Styx.bin.osx type: default -'594310': +"594310": installDir: Reflection of a Fallen Feather launch: - config: @@ -282599,12 +278014,12 @@ executable: Reflection of a Fallen Feather.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Reflection of a Fallen Feather.bin.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Reflection of a Fallen Feather.bin.x86_64 type: default @@ -282612,11 +278027,11 @@ oslist: macos executable: Reflection of a Fallen Feather.bin.osx type: default -'594320': +"594320": installDir: Return_of_Red_Riding_Hood_Enhanced_Edition launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: chaperonext.exe type: default @@ -282628,63 +278043,63 @@ oslist: macos executable: ChaperonRougeExt.app/Contents/MacOS/sdl-instead type: default - - arguments: '-fullscreen -standalone -game chaperon_ext' + - arguments: "-fullscreen -standalone -game chaperon_ext" config: - osarch: '64' + osarch: "64" oslist: windows executable: chaperonext.exe type: default -'594330': +"594330": installDir: Visage launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Visage.exe type: default -'594350': +"594350": installDir: AHDS launch: - config: oslist: windows executable: AttackHelicopterDateSim.exe type: default -'594360': +"594360": installDir: SortEm launch: - executable: SorterGame.exe type: vr -'594370': +"594370": installDir: Crazy Fishing launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: CrazyFishing.exe type: vr -'594380': +"594380": installDir: Dragon Audit launch: - executable: DragonAudit.exe type: default -'594390': {} -'594410': +"594390": {} +"594410": installDir: Western Bank VR launch: - executable: western_bank_0.999p_achievements.exe type: openvroverlay -'594490': +"594490": installDir: Deadly Hunter VR launch: - - arguments: '-vrmode OpenVR' + - arguments: "-vrmode OpenVR" executable: Deadly Hunter.exe type: vr -'594570': +"594570": installDir: Total War WARHAMMER II launch: - config: oslist: windows - description: 'Total War: WARHAMMER II' + description: "Total War: WARHAMMER II" executable: launcher/launcher.exe type: option1 workingdir: launcher @@ -282702,60 +278117,52 @@ description: Warhammer2 executable: Warhammer2.exe type: option2 -'594640': {} -'594650': +"594640": {} +"594650": installDir: Hunt Showdown launch: - arguments: +online_account_client_settings live +online_websvc_skip_tls_cert_validation 1 config: - osarch: '64' + osarch: "64" oslist: windows executable: hunt.exe type: default - arguments: +online_account_client_settings yellow +online_websvc_skip_tls_cert_validation 1 config: betakey: qa_testroom latest - osarch: '64' + osarch: "64" oslist: windows description: Alice Farm Playtest Room - description_loc: - english: Alice Farm Playtest Room executable: hunt.exe type: option1 - arguments: +online_account_client_settings blue +online_websvc_skip_tls_cert_validation 1 config: betakey: qa_testroom latest - osarch: '64' + osarch: "64" oslist: windows description: Davant Ranch Playtest Room - description_loc: - english: Davant Ranch Playtest Room executable: hunt.exe type: option1 - arguments: +online_account_client_settings mpQA +online_websvc_skip_tls_cert_validation 1 config: betakey: qa_testroom latest - osarch: '64' + osarch: "64" oslist: windows description: mpqa - description_loc: - english: mpqa executable: hunt.exe type: option1 - arguments: +online_account_client_settings local +online_websvc_skip_tls_cert_validation 1 config: betakey: qa_testroom latest - osarch: '64' + osarch: "64" oslist: windows description: local workstation - description_loc: - english: local workstation executable: hunt.exe type: option1 - arguments: +online_account_client_settings stage_external config: betakey: qa_testroom latest - osarch: '64' + osarch: "64" oslist: windows description: test server executable: hunt.exe @@ -282763,14 +278170,12 @@ - arguments: +online_account_client_settings live +online_websvc_skip_tls_cert_validation 1 +lwp_authorizeToggling 1 config: betakey: lightweight - osarch: '64' + osarch: "64" oslist: windows description: Lightweight Profiler - description_loc: - english: Lightweight Profiler executable: hunt.exe type: option1 -'594660': +"594660": installDir: Runt of the Litter launch: - config: @@ -282785,7 +278190,7 @@ oslist: linux executable: RuntOfTheLitter type: none -'594680': +"594680": installDir: Shuyan Saga launch: - config: @@ -282794,17 +278199,17 @@ type: default - config: oslist: macos - executable: Shuyan.app\\Contents\\MacOS\\Shuyan + executable: "Shuyan.app\\\\Contents\\\\MacOS\\\\Shuyan" type: default -'594720': +"594720": installDir: Star Merchant launch: - config: oslist: windows executable: starmerchant.exe type: none -'594730': {} -'594750': +"594730": {} +"594750": installDir: Tiles launch: - config: @@ -282819,37 +278224,37 @@ oslist: linux executable: Tiles type: default -'594760': +"594760": installDir: Zombie in my city launch: - config: oslist: windows executable: Zombie in my city.exe type: vr -'594770': +"594770": installDir: Legends of Aria launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Legends of Aria executable: Legends of Aria.exe type: option1 - config: - osarch: '64' + osarch: "64" oslist: windows - ownsdlc: '1008810' + ownsdlc: "1008810" description: Legends of Aria Legacy Client - executable: Legacy\\Legends of Aria.exe + executable: "Legacy\\\\Legends of Aria.exe" type: option2 - config: - osarch: '64' + osarch: "64" oslist: windows - ownsdlc: '1124320' + ownsdlc: "1124320" description: Legends of Aria Experimental Client - executable: Experimental\\Legends of Aria.exe + executable: "Experimental\\\\Legends of Aria.exe" type: option3 -'594810': +"594810": installDir: Color Jumper launch: - config: @@ -282864,7 +278269,7 @@ oslist: macos executable: Color Jumper.app type: default -'594820': +"594820": installDir: An Oath to the Stars launch: - config: @@ -282873,33 +278278,33 @@ type: default - config: oslist: macos - executable: AnOathToTheStars.app\\Contents\\MacOS\\AnOathToTheStars + executable: "AnOathToTheStars.app\\\\Contents\\\\MacOS\\\\AnOathToTheStars" type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: AnOathToTheStars.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: AnOathToTheStars.x86 type: default -'594950': - installDir: The Witches' Tea Party +"594950": + installDir: "The Witches' Tea Party" launch: - config: oslist: windows executable: Tea Party.exe type: default -'594980': +"594980": installDir: Super Amazeballs launch: - config: oslist: windows executable: SuperAmazeballs.exe type: default -'595000': +"595000": installDir: GB1_vive_595003 launch: - config: @@ -282908,7 +278313,7 @@ type: default - executable: ghostbusters.exe type: vr -'595010': +"595010": installDir: Violet Cycle launch: - config: @@ -282923,56 +278328,56 @@ oslist: macos executable: VCmac.app type: default -'595030': +"595030": installDir: Please launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: \\Distribute\\Win64\\WindowsNoEditor\\Please.exe + executable: "\\\\Distribute\\\\Win64\\\\WindowsNoEditor\\\\Please.exe" type: none - config: - osarch: '32' + osarch: "32" oslist: windows - executable: \\Distribute\\Win32\\WindowsNoEditor\\Please.exe + executable: "\\\\Distribute\\\\Win32\\\\WindowsNoEditor\\\\Please.exe" type: none -'595060': +"595060": installDir: Lionheart Legacy of the Crusader launch: - config: oslist: windows executable: Lionheart.exe type: default -'595070': +"595070": installDir: Keep Balance VR launch: - config: oslist: windows executable: KeepBalance.exe type: vr -'595080': +"595080": installDir: Silver Grapple launch: - config: oslist: windows executable: Silver Grapple.exe type: default -'595090': +"595090": installDir: Prevent The Fall launch: - - arguments: '-nohmd' + - arguments: "-nohmd" config: - osarch: '64' + osarch: "64" oslist: windows executable: PreventTheFall.exe type: none - - arguments: '-vr' + - arguments: "-vr" config: - osarch: '64' + osarch: "64" oslist: windows executable: PreventTheFall.exe type: vr -'595100': +"595100": installDir: CTHON launch: - config: @@ -282980,7 +278385,7 @@ description: CTHON executable: CTHON.exe type: option1 -'595110': +"595110": installDir: Gran Skrea Online launch: - config: @@ -282991,7 +278396,7 @@ oslist: macos executable: Gran Skrea Online.app type: default -'595120': +"595120": installDir: Cold Space launch: - config: @@ -283004,76 +278409,76 @@ type: none - config: oslist: macos - executable: ColdSpace.app\\Contents\\MacOS\\ColdSpace + executable: "ColdSpace.app\\\\Contents\\\\MacOS\\\\ColdSpace" type: default -'595130': +"595130": installDir: My Vet Practice launch: - config: oslist: windows executable: TAP.exe type: default -'595140': +"595140": installDir: Immortal Redneck launch: - - arguments: '-nolog -multidisplay' + - arguments: "-nolog -multidisplay" config: oslist: windows executable: ImmortalRedneck.exe type: default - - arguments: '-nolog -multidisplay' + - arguments: "-nolog -multidisplay" config: oslist: macos executable: ImmortalRedneck.app type: default - - arguments: '-nolog -multidisplay' + - arguments: "-nolog -multidisplay" config: oslist: linux executable: ImmortalRedneck.x64 type: default - - arguments: '-multidisplay' + - arguments: "-multidisplay" config: betakey: public_beta oslist: windows - description: 'Immortal Redneck [Log Enabled]' + description: "Immortal Redneck [Log Enabled]" executable: ImmortalRedneck.exe type: option1 - - arguments: '-multidisplay' + - arguments: "-multidisplay" config: betakey: public_beta oslist: macos - description: 'Immortal Redneck [Log Enabled]' + description: "Immortal Redneck [Log Enabled]" executable: ImmortalRedneck.app type: option1 - - arguments: '-multidisplay' + - arguments: "-multidisplay" config: betakey: public_beta oslist: linux - description: 'Immortal Redneck [Log Enabled]' + description: "Immortal Redneck [Log Enabled]" executable: ImmortalRedneck.x64 type: option1 -'595150': +"595150": installDir: My Vet Practice – Marine Patrol launch: - config: oslist: windows executable: TAPSea.exe type: default -'595160': - installDir: 'My Boyfriend – He loves me, he loves me not' +"595160": + installDir: "My Boyfriend – He loves me, he loves me not" launch: - executable: MyBoyfriend2.exe type: default -'595260': +"595260": installDir: Heat Guardian launch: - - arguments: '-limit-fps=60' + - arguments: "-limit-fps=60" config: - osarch: '64' + osarch: "64" oslist: windows executable: Heat Guardian.exe type: default -'595270': +"595270": installDir: MillionToOneHero launch: - config: @@ -283088,36 +278493,36 @@ oslist: macos executable: MillionToOneHero.app type: none -'595280': +"595280": installDir: Throne of Lies launch: - - arguments: '-force-d3d11' + - arguments: "-force-d3d11" config: - osarch: '64' + osarch: "64" oslist: windows description: DirectX11 - Recommended executable: ThroneOfLies.exe type: option1 - - arguments: '-force-vulkan' + - arguments: "-force-vulkan" config: - osarch: '64' + osarch: "64" oslist: windows description: Vulkan - Experimental/Unstable/Unsupported executable: ThroneOfLies.exe type: option1 - config: oslist: macos - executable: ThroneOfLies.app\\Contents\\MacOS\\ThroneOfLies + executable: "ThroneOfLies.app\\\\Contents\\\\MacOS\\\\ThroneOfLies" type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: OpenGL - Recommended executable: ThroneOfLies.x86_64 type: option1 - - arguments: '-force-vulkan' + - arguments: "-force-vulkan" config: - osarch: '64' + osarch: "64" oslist: linux description: Vulkan - Experimental/Unstable/Unsupported executable: ThroneOfLies.x86_64 @@ -283125,30 +278530,30 @@ nameLocalized: schinese: 謊言王座 Throne of Lies tchinese: 謊言王座 Throne of Lies -'595300': +"595300": installDir: VR2 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: VR2.exe type: vr -'595320': +"595320": installDir: Polterheist launch: - config: oslist: windows executable: Polterheist.exe type: default -'595340': {} -'595360': +"595340": {} +"595360": installDir: NIGHTSTAR_RogueWings launch: - config: oslist: windows executable: RogueWings.exe type: default -'595420': +"595420": installDir: Franchise Hockey Manager 4 launch: - config: @@ -283161,7 +278566,7 @@ description: Launch FHM 4 (macOS) executable: Franchise Hockey Manager 4.app type: default -'595430': +"595430": installDir: Sky Knights launch: - config: @@ -283169,7 +278574,7 @@ description: Launch executable: SkyKnights.exe type: none -'595440': +"595440": installDir: CPU Invaders launch: - config: @@ -283177,7 +278582,7 @@ description: Launch executable: CPU Invaders.exe type: default -'595460': +"595460": installDir: Flix and Chill launch: - config: @@ -283188,15 +278593,15 @@ oslist: macos executable: FlixAndChill.app type: default -'595470': +"595470": installDir: Shadow Circuit launch: - config: oslist: windows executable: ShadowCircuit.exe type: vr -'595480': {} -'595500': +"595480": {} +"595500": installDir: Freedom Planet 2 launch: - config: @@ -283207,29 +278612,29 @@ oslist: macos executable: Freedom Planet 2.app type: default -'595520': +"595520": installDir: FINAL FANTASY XII THE ZODIAC AGE launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: x64\\FFXII_TZA.exe + executable: "x64\\\\FFXII_TZA.exe" type: default workingdir: x64 - config: - osarch: '64' + osarch: "64" oslist: windows - executable: x64\\FFXII_TZA_GameSetting.exe + executable: "x64\\\\FFXII_TZA_GameSetting.exe" type: config workingdir: x64 -'595550': +"595550": installDir: Mastema launch: - config: oslist: windows executable: MASTEMA_OOH.exe type: default -'595560': +"595560": installDir: Legend of Hand launch: - config: @@ -283240,14 +278645,14 @@ oslist: windows executable: winsetup.exe type: config -'595630': +"595630": installDir: Neon8 launch: - config: oslist: windows executable: Neon8.exe type: vr -'595640': +"595640": installDir: Robo Do It launch: - config: @@ -283255,7 +278660,7 @@ executable: robo_do_it.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: robo_do_it.x86_64 type: default @@ -283263,14 +278668,14 @@ oslist: macos executable: Mac x64.app/Contents/MacOS/Mac x64 type: default -'595650': - installDir: Fatal Passion Art Prison Collector's Edition +"595650": + installDir: "Fatal Passion Art Prison Collector's Edition" launch: - config: oslist: windows executable: FatalPassion_ArtPrison_CE.exe type: default -'595660': +"595660": installDir: Lux Alliance launch: - config: @@ -283285,14 +278690,14 @@ oslist: linux executable: LuxAllianceLinux.sh type: none -'595690': +"595690": installDir: One Hour One Life launch: - config: oslist: windows executable: steamGateClient.exe type: default -'595730': +"595730": installDir: Ascendant Hearts launch: - config: @@ -283313,11 +278718,11 @@ oslist: windows executable: Ascendant Hearts.exe type: default -'595740': +"595740": installDir: SAMURAI WARRIORS Spirit of Sanada launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SWSanada.exe type: default @@ -283328,28 +278733,28 @@ type: config nameLocalized: tchinese: 戰國無雙 〜真田丸〜 -'595760': {} -'595770': +"595760": {} +"595770": installDir: AirMech Wastelands launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: AirMechWastelands64.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: AirMechWastelands.exe type: default -'595780': +"595780": installDir: Rogue Port - Blue Nightmare launch: - config: oslist: windows executable: Game.exe type: default -'595790': +"595790": installDir: Hell is other demons launch: - config: @@ -283367,30 +278772,30 @@ description: Launch Alpha executable: demons.app/Contents/MacOS/Hell is Other Demons type: default -'595920': +"595920": installDir: Death Point launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Death Point.exe type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: Death Point.x86_64 type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: Death Point.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: macos executable: Death Point.app type: none -'595930': +"595930": installDir: Steam Rails to Riches launch: - config: @@ -283402,114 +278807,114 @@ executable: Steam_Rails_to_Riches_Mac.app/Contents/MacOS/Steam_Rails_to_Riches_Mac type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Steam_Rails_to_Riches_Linux.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Steam_Rails_to_Riches_Linux.x86_64 type: default -'595960': +"595960": installDir: Pinball Wicked launch: - config: oslist: windows executable: PinballWicked.exe type: default -'595990': +"595990": installDir: Princess Kidnapper 2 - VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: PrincessKindnapper.exe type: vr -'596000': +"596000": installDir: The Shattering launch: - config: oslist: windows executable: Shattering.exe type: default -'596020': +"596020": installDir: SIX SHOTS launch: - config: oslist: windows executable: SIX SHOTS.exe type: none -'596050': +"596050": installDir: Martha Madison launch: - config: oslist: windows executable: Optics.exe type: default -'596070': +"596070": installDir: Skills Hockey VR launch: - config: oslist: windows executable: VR_SkillsHockey.exe type: vr -'596080': +"596080": installDir: Embers of Mirrim launch: - config: oslist: windows executable: EmbersofMirrim.exe type: default -'596150': {} -'596170': {} -'596200': - installDir: Blood 'n Bikinis +"596150": {} +"596170": {} +"596200": + installDir: "Blood 'n Bikinis" launch: - description: START executable: Game.exe type: none -'596240': +"596240": installDir: Apocryph launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Apocryph.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Apocryph.x86_64 type: default -'596260': +"596260": installDir: S-COPTER launch: - executable: S-COPTER.exe type: default -'596270': +"596270": installDir: Tales of Terror Crimson Dawn launch: - config: oslist: windows executable: TalesOfTerror_CrimsonDawn.exe type: default -'596280': +"596280": installDir: You Are God launch: - config: oslist: windows executable: YouAreGod.exe type: default -'596370': +"596370": installDir: Turn launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: launcher.exe type: default -'596380': +"596380": installDir: Coffee Crisis launch: - config: @@ -283521,19 +278926,19 @@ executable: Coffee_Crisis.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Coffee_Crisis.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Coffee_Crisis.x86_64 type: default -'596390': +"596390": installDir: Over My Dead Body For You launch: - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" config: oslist: windows description: Launch @@ -283542,28 +278947,28 @@ - description: Big Picture Mode executable: Over My Dead Body (For You).exe type: option1 -'596400': - installDir: Azada Elementa Collector's Edition +"596400": + installDir: "Azada Elementa Collector's Edition" launch: - config: oslist: windows executable: Azada_Elementa_CE.exe type: default -'596440': {} -'596470': +"596440": {} +"596470": installDir: Cartesian launch: - - arguments: . - executable: nwjs\\nw.exe + - arguments: "." + executable: "nwjs\\\\nw.exe" type: none -'596530': +"596530": installDir: Chaos Drift launch: - config: oslist: windows executable: Game.exe type: none -'596540': +"596540": installDir: The Lost Heir 3 Demon War launch: - config: @@ -283578,30 +278983,30 @@ oslist: linux executable: LostHeir3 type: none -'596560': +"596560": installDir: MARS VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Mars.exe type: vr -'596570': +"596570": installDir: GRAY TANK launch: - config: oslist: windows executable: GrayTank.exe type: none -'596580': {} -'596590': +"596580": {} +"596590": installDir: Linked launch: - config: oslist: windows executable: Linked.exe type: default -'596620': +"596620": installDir: Gas Guzzlers Combat Carnage launch: - config: @@ -283616,21 +279021,21 @@ executable: Bin32/GGDedicatedServerLauncher.exe type: none workingdir: Bin32 -'596630': +"596630": installDir: Ricochet Kills Noir launch: - config: oslist: windows executable: rk_noir.exe type: default -'596640': +"596640": installDir: Lost in the Ocean VR launch: - config: oslist: windows executable: Lost in the ocean VR.exe type: vr -'596650': +"596650": installDir: Tap Adventure Time Travel launch: - config: @@ -283642,19 +279047,19 @@ executable: TapAdventure.exe type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: TapAdventure type: none -'596690': {} -'596700': +"596690": {} +"596700": installDir: Lines launch: - config: oslist: windows executable: LinesVR.exe type: vr -'596710': +"596710": installDir: Kith - Tales from the Fractured Plateaus launch: - config: @@ -283665,36 +279070,36 @@ oslist: linux executable: run.sh type: default -'596730': +"596730": installDir: Mountaineer launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Mountaineer.exe type: default -'596740': +"596740": installDir: OriginSpace launch: - config: oslist: windows executable: OriginSpace.exe type: default -'596810': +"596810": installDir: Save Their Souls launch: - config: oslist: windows executable: Save Their Souls .exe type: default -'596870': +"596870": installDir: Drop Hunt launch: - config: oslist: windows executable: Drop Hunt.exe type: default -'596890': +"596890": installDir: Life of a Mobster launch: - config: @@ -283709,7 +279114,7 @@ oslist: linux executable: LifeOfAMobster type: none -'596910': +"596910": installDir: Life of a Wizard launch: - config: @@ -283724,22 +279129,22 @@ oslist: linux executable: LifeOfAWizard type: none -'596940': +"596940": installDir: hide-and-seek launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: hns.exe type: default -'596950': +"596950": installDir: Rat Simulator launch: - config: oslist: windows executable: Rat_Simulator.exe type: default -'596970': +"596970": installDir: Sunless Skies launch: - config: @@ -283751,32 +279156,32 @@ executable: Sunless Skies.app type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Sunless Skies.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Sunless Skies.x86 type: default -'596990': +"596990": installDir: Mini Rollers launch: - config: oslist: windows executable: Mini Rollers.exe type: default -'597020': +"597020": installDir: Baseball Challenge VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: allstarfieldingchallengevr.exe type: vr -'597030': +"597030": installDir: Aircraft Evolution launch: - config: @@ -283784,7 +279189,7 @@ description: Launch executable: Aircraft Evolution.exe type: none -'597040': +"597040": installDir: Dumbass Drivers launch: - config: @@ -283792,12 +279197,12 @@ executable: DumbassDrivers.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: DumbassDrivers.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: DumbassDrivers.x86_64 type: default @@ -283805,20 +279210,20 @@ oslist: macos executable: DumbassDrivers.app type: default -'597090': +"597090": installDir: Comit the Astrodian 2 launch: - config: oslist: windows executable: Comit the Astrodian 2.exe type: default -'597110': {} -'597120': +"597110": {} +"597120": installDir: The Filmmaker - A Text Adventure launch: - executable: The Filmmaker Steam.exe type: default -'597150': +"597150": installDir: Hyper Knights launch: - config: @@ -283836,7 +279241,7 @@ description: Play Hyper Knights executable: HyperKnights.x86 type: default -'597170': +"597170": installDir: Clone Drone in the Danger Zone launch: - config: @@ -283847,7 +279252,7 @@ oslist: macos executable: Clone Drone in the Danger Zone.app/Contents/MacOS/Clone Drone in the Danger Zone type: default -'597180': +"597180": installDir: Old World launch: - config: @@ -283865,7 +279270,7 @@ nameLocalized: schinese: 旧世界 Old World tchinese: 舊世界 Old World -'597190': +"597190": installDir: Lunaform launch: - config: @@ -283878,78 +279283,78 @@ executable: Lunaform.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: lunaform.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: lunaform.x86_64 type: default -'597200': +"597200": installDir: Epic Little War Game launch: - executable: ELWG.exe type: default -'597210': +"597210": installDir: Bayou Island - Point and Click Adventure launch: - config: oslist: windows executable: bayou-island.exe type: none -'597220': +"597220": installDir: West of Loathing launch: - config: oslist: macos - executable: West of Loathing.app\\Contents\\MacOS\\West of Loathing + executable: "West of Loathing.app\\\\Contents\\\\MacOS\\\\West of Loathing" type: default - config: oslist: windows executable: West of Loathing.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: West of Loathing.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: West of Loathing.x86_64 type: default -'597230': +"597230": installDir: Shotgun Legend launch: - config: oslist: windows executable: Shotgun Legend.exe type: default -'597240': +"597240": installDir: johnsgame launch: - config: oslist: windows executable: johnsgame.exe type: default -'597280': - installDir: Witch Hunters Stolen Beauty Collector's Edition +"597280": + installDir: "Witch Hunters Stolen Beauty Collector's Edition" launch: - config: oslist: windows executable: WitchHunters_StolenBeautyCE.exe type: default -'597590': +"597590": installDir: Attack of the Bugs launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: ATTACK OF THE BUGS.exe type: vr -'597640': +"597640": installDir: BBB launch: - config: @@ -283960,12 +279365,12 @@ oslist: macos executable: BBB.app type: default -'597670': +"597670": installDir: Exterminator launch: - executable: Exterminator.exe type: vr -'597700': +"597700": installDir: OVIVO launch: - config: @@ -283980,30 +279385,30 @@ oslist: linux executable: OVIVO.x86 type: default -'597720': +"597720": installDir: Stunt Toys launch: - config: oslist: windows - executable: WindowsNoEditor\\StuntToysGame.exe + executable: "WindowsNoEditor\\\\StuntToysGame.exe" type: default -'597730': +"597730": installDir: Dark Grim Mariupolis launch: - config: oslist: windows executable: Dark Grim Mariupolis.exe type: default -'597760': +"597760": installDir: YuppiePsycho launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: yuppiepsycho.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: yuppiepsycho.sh type: default @@ -284013,24 +279418,24 @@ type: default nameLocalized: schinese: 雅皮士精神 -'597770': +"597770": installDir: VINDICTA launch: - config: oslist: windows executable: Vindicta.exe type: vr -'597810': +"597810": installDir: Shining Plume 2 launch: - description: Launch executable: Game.exe type: none -'597820': +"597820": installDir: BIOMUTANT launch: - config: - betakey: 'evaluation,alpha,baseline,testgate,internal' + betakey: "evaluation,alpha,baseline,testgate,internal" oslist: windows executable: Biomutant.exe type: default @@ -284039,14 +279444,14 @@ oslist: windows executable: BiomutantLoop_20Minutes.bat type: default -'597860': +"597860": installDir: Nightmare Boy launch: - config: oslist: windows executable: NightmareBoy.exe type: default -'597900': +"597900": installDir: Eternum EX launch: - config: @@ -284054,12 +279459,12 @@ executable: Eternum EX.exe type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: Eternum EX.x86_64 type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: Eternum EX.x86 type: none @@ -284067,15 +279472,15 @@ oslist: macos executable: Eternum EX.app type: none -'597920': +"597920": installDir: Survivalizm - The Animal Simulator launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: MSurvivalizm.exe type: default -'597970': +"597970": installDir: AgeOfRivals launch: - config: @@ -284086,62 +279491,62 @@ oslist: macos executable: AgeOfRivalsMacSteam.app type: default -'597990': - installDir: I'm Titanium +"597990": + installDir: "I'm Titanium" launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ImTitanium.exe type: default -'598030': +"598030": installDir: REVOLT_1917 launch: - executable: Revolt1917.exe type: none -'598050': - installDir: Ominous Objects Family Portrait Collector's Edition +"598050": + installDir: "Ominous Objects Family Portrait Collector's Edition" launch: - config: oslist: windows executable: OminousObjects_FamilyPortrait_CE.exe type: default -'598060': - installDir: Slasher's Keep +"598060": + installDir: "Slasher's Keep" launch: - config: oslist: windows - description: Slasher's Keep using Direct3D 11 (default) + description: "Slasher's Keep using Direct3D 11 (default)" executable: SlashersKeep.exe type: default - - arguments: '-force-d3d9' - description: Slasher's Keep using Direct3D 9 + - arguments: "-force-d3d9" + description: "Slasher's Keep using Direct3D 9" executable: SlashersKeep.exe type: option1 -'598070': +"598070": installDir: Nevrosa Prelude launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: HTC Vive & Oculus Touch executable: Nevrosa.exe type: vr -'598090': +"598090": installDir: Absent Mind launch: - config: oslist: windows - executable: WindowsNoEditor\\AbsentMind.exe + executable: "WindowsNoEditor\\\\AbsentMind.exe" type: none -'598170': +"598170": installDir: Super launch: - config: oslist: windows executable: Super.exe type: default -'598230': +"598230": installDir: Ascender launch: - config: @@ -284153,16 +279558,16 @@ executable: Ascender.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Ascender.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Ascender.x86_64 type: default -'598240': +"598240": installDir: Stupid Raft Battle Simulator launch: - config: @@ -284177,35 +279582,35 @@ oslist: macos executable: SRBS.app type: default -'598330': +"598330": installDir: SimAirport launch: - config: oslist: macos - executable: SimAirport.app\\Contents\\MacOS\\SimAirport + executable: "SimAirport.app\\\\Contents\\\\MacOS\\\\SimAirport" type: default - config: oslist: windows executable: SimAirport.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: SimAirport.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: SimAirport.x86_64 type: default -'598340': +"598340": installDir: Lament launch: - config: oslist: windows executable: Lament.exe type: default -'598350': +"598350": installDir: Alien Insanity launch: - config: @@ -284215,25 +279620,25 @@ - arguments: vrmode config: oslist: windows - ownsdlc: '604130' + ownsdlc: "604130" executable: Alien Insanity.exe type: vr -'598400': +"598400": installDir: Starship Commander launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: StarshipCommander\\Binaries\\Win64\\StarshipCommander-Win64-Shipping.exe + executable: "StarshipCommander\\\\Binaries\\\\Win64\\\\StarshipCommander-Win64-Shipping.exe" type: vr - config: - osarch: '64' + osarch: "64" oslist: windows description: without VR - executable: StarshipCommander\\Binaries\\Win64\\StarshipCommander-Win64-Shipping.exe + executable: "StarshipCommander\\\\Binaries\\\\Win64\\\\StarshipCommander-Win64-Shipping.exe" type: option2 - config: - ownsdlc: '1389340' + ownsdlc: "1389340" description: documentary (Passion At All Costs) executable: BTS_Extras.mp4 type: option3 @@ -284242,8 +279647,8 @@ description: Troubleshooter executable: SCLauncher.exe type: config -'598410': {} -'598430': +"598410": {} +"598430": installDir: Ergastulum launch: - config: @@ -284254,22 +279659,22 @@ oslist: macos executable: Ergastulum.app type: default -'598440': +"598440": installDir: Roots of Insanity launch: - config: oslist: windows executable: RootsofInsanity.exe type: default -'598450': - installDir: 'Slice, Dice & Rice' +"598450": + installDir: "Slice, Dice & Rice" launch: - config: oslist: windows executable: SDR.exe type: none -'598470': {} -'598480': +"598470": {} +"598480": installDir: World of One launch: - config: @@ -284277,7 +279682,7 @@ executable: WorldOfOne.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: WorldOfOne.sh type: default @@ -284287,21 +279692,21 @@ type: default nameLocalized: schinese: 一人世界 -'598490': - installDir: Healer's Quest +"598490": + installDir: "Healer's Quest" launch: - config: betakey: beta - osarch: '64' + osarch: "64" oslist: windows executable: nw.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: nw.exe type: default -'598500': +"598500": installDir: Startide launch: - config: @@ -284316,60 +279721,60 @@ oslist: linux executable: Startide.x86 type: default -'598530': +"598530": installDir: Naev launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: naev.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: naev.x64 type: default - config: oslist: macos - executable: Naev.app\\Contents\\MacOS\\naev + executable: "Naev.app\\\\Contents\\\\MacOS\\\\naev" type: default -'598550': +"598550": installDir: Huntdown launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Huntdown.exe type: default - config: oslist: macos - executable: Huntdown.app\\Contents\\MacOS\\Huntdown + executable: "Huntdown.app\\\\Contents\\\\MacOS\\\\Huntdown" type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Huntdown.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: Huntdown.exe type: default -'598590': +"598590": installDir: Escape2042 launch: - config: oslist: windows executable: E2042.exe type: default -'598600': +"598600": installDir: Silence in Space - Season One launch: - config: oslist: windows - executable: SISS1\\SISS1.exe + executable: "SISS1\\\\SISS1.exe" type: default -'598610': +"598610": installDir: Avalon Legends Solitaire launch: - config: @@ -284380,7 +279785,7 @@ oslist: macos executable: Avalon Legends Solitaire.app type: default -'598620': +"598620": installDir: Mystery Riddles launch: - config: @@ -284391,7 +279796,7 @@ oslist: macos executable: Mystery Riddles.app type: default -'598640': +"598640": installDir: wonderwickets launch: - config: @@ -284402,7 +279807,7 @@ oslist: macos executable: Wonder Wickets.app type: default -'598670': +"598670": installDir: Otome Romance Jigsaws - Midnight Cinderella & Destined to Love launch: - config: @@ -284413,26 +279818,26 @@ oslist: macos executable: Otome Romance Jigsaws.app type: none -'598680': +"598680": installDir: Master of Magic Chess launch: - config: oslist: windows executable: Master of Magic Chess.exe type: default -'598690': +"598690": installDir: Dark Legion VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: DarkLegionVR.exe type: vr -'598700': +"598700": installDir: The Vagrant launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TheVagrant.exe type: none @@ -284440,7 +279845,7 @@ english: The Vagrant schinese: 流浪者 tchinese: 流浪者 -'598720': +"598720": installDir: A Country Of One launch: - config: @@ -284448,17 +279853,17 @@ description: Vive VR executable: co1.exe type: vr -'598730': +"598730": installDir: Shakedown Hawaii launch: - config: oslist: windows executable: shakedown.exe type: default -'598740': +"598740": installDir: HORIZON VANGUARD launch: - - arguments: '-vr' + - arguments: "-vr" config: oslist: windows executable: AssaultCycle.exe @@ -284466,21 +279871,21 @@ - description: in non-VR executable: AssaultCycle.exe type: option1 -'598780': +"598780": installDir: Boreal Blade launch: - config: oslist: windows executable: borealblade_64bit.exe type: none -'598810': +"598810": installDir: Carcassonne The Official Board Game launch: - config: oslist: windows executable: Carcassonne.exe type: default -'598820': +"598820": installDir: Aloha Paradise Hotel launch: - config: @@ -284488,7 +279893,7 @@ description: Play Aloha Paradise Hotel executable: alohasteam.exe type: default -'598840': +"598840": installDir: Ninja Shodown launch: - config: @@ -284497,19 +279902,19 @@ type: default - config: oslist: macos - executable: Ninja Shodown.app\\Contents\\MacOS\\Ninja Shodown + executable: "Ninja Shodown.app\\\\Contents\\\\MacOS\\\\Ninja Shodown" type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Ninja Shodown.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Ninja Shodown.x86_64 type: default -'598880': +"598880": installDir: Domiverse launch: - config: @@ -284524,7 +279929,7 @@ oslist: linux executable: domiverse.x86 type: default -'598940': +"598940": installDir: Doodle Mafia launch: - config: @@ -284536,33 +279941,33 @@ executable: DoodleMafia.app type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: DoodleGame type: none -'598960': +"598960": installDir: Mashinky launch: - config: oslist: windows executable: Mashinky.exe type: default -'598980': +"598980": installDir: TheCoinGame launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: TheCoinGame.exe type: none - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: TheCoinGame.exe type: none -'598990': +"598990": installDir: Pizza Connection launch: - config: @@ -284577,14 +279982,14 @@ oslist: linux executable: start.sh type: none -'599000': +"599000": installDir: Pizza Connection 2 launch: - config: oslist: windows executable: fastfood2.exe type: none -'599010': +"599010": installDir: Hanse - The Hanseatic League launch: - config: @@ -284595,16 +280000,16 @@ oslist: macos executable: hanse.app type: none -'599040': +"599040": installDir: WinThatWar launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: Bin\\x64\\Release\\WTW.exe + executable: "Bin\\\\x64\\\\Release\\\\WTW.exe" type: default - workingdir: Bin\\x64\\Release\\ -'599060': + workingdir: "Bin\\\\x64\\\\Release\\\\" +"599060": installDir: Age of Heroes launch: - config: @@ -284612,11 +280017,11 @@ executable: Heroes.exe type: default - config: - osarch: '64' + osarch: "64" oslist: macos - executable: Heroes.app\\Contents\\MacOS\\Heroes + executable: "Heroes.app\\\\Contents\\\\MacOS\\\\Heroes" type: default -'599070': +"599070": installDir: UmpireSimulator launch: - config: @@ -284624,36 +280029,36 @@ description: Launch executable: UmpireSimSteamVR.exe type: vr - - arguments: '-vrmode None' + - arguments: "-vrmode None" config: oslist: windows description: Umpire Simulator in Non-VR Mode executable: UmpireSimSteamVR.exe type: option1 -'599080': +"599080": installDir: TheBlackoutClub launch: - config: oslist: windows executable: TheBlackoutClub.exe type: default - - arguments: '-saveddirsuffix=PublicTest' + - arguments: "-saveddirsuffix=PublicTest" config: betakey: public_test oslist: windows description: Play The Blackout Club Public Test (USE THIS!) executable: TheBlackoutClub.exe type: none - - arguments: '-saveddirsuffix=TechSupport' + - arguments: "-saveddirsuffix=TechSupport" config: betakey: tech_support oslist: windows description: Play The Blackout Club Tech Support (USE THIS!) executable: TheBlackoutClub.exe type: none -'599090': {} -'599100': {} -'599140': +"599090": {} +"599100": {} +"599140": installDir: Graveyard Keeper launch: - config: @@ -284665,17 +280070,17 @@ executable: Graveyard Keeper.app type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: Graveyard Keeper.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: Graveyard Keeper.x86_64 type: none -'599150': {} -'599160': +"599150": {} +"599160": installDir: Skeletal Dance Party launch: - config: @@ -284683,20 +280088,20 @@ executable: Skeletal Dance Party.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Skeletal Dance Party.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Skeletal Dance Party.x86_64 type: default - config: oslist: macos - executable: Skeletal Dance Party.app\\Contents\\MacOS\\Skeletal Dance Party + executable: "Skeletal Dance Party.app\\\\Contents\\\\MacOS\\\\Skeletal Dance Party" type: default -'599180': +"599180": installDir: Mister Mart launch: - config: @@ -284709,7 +280114,7 @@ description: Mister Mart 1.2 Vive executable: Vive/Mister Mart.exe type: vr -'599390': +"599390": installDir: wesnoth launch: - config: @@ -284717,7 +280122,7 @@ executable: wesnoth.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: start.sh type: default @@ -284725,23 +280130,23 @@ oslist: macos executable: The Battle for Wesnoth.app/Contents/MacOS/The Battle for Wesnoth type: default -'599420': +"599420": installDir: TheRaiders launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TheRaiders.exe type: vr -'599430': +"599430": installDir: War of Castle VR launch: - - arguments: '-windowed' + - arguments: "-windowed" config: oslist: windows executable: LemonTower_Steam_0.9.7.6.exe type: vr -'599460': +"599460": installDir: WeaponShopFantasy launch: - config: @@ -284750,20 +280155,20 @@ type: default - config: oslist: macos - executable: WeaponShopFantasy.app\\Contents\\MacOS\\WeaponShopFantasy + executable: "WeaponShopFantasy.app\\\\Contents\\\\MacOS\\\\WeaponShopFantasy" type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: WeaponShopFantasy.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: WeaponShopFantasy.x86_64 type: default -'599480': - installDir: Flamel's miracle +"599480": + installDir: "Flamel's miracle" launch: - config: oslist: windows @@ -284777,8 +280182,8 @@ oslist: linux executable: Flamels Miracle.sh type: default -'599490': {} -'599510': +"599490": {} +"599510": installDir: SpaceDweller launch: - config: @@ -284789,7 +280194,7 @@ oslist: linux executable: runner type: default -'599560': +"599560": installDir: Ghost Files launch: - config: @@ -284798,13 +280203,13 @@ executable: GhostFiles.exe type: none - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: GhostFiles_i386 type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: GhostFiles_amd64 @@ -284814,57 +280219,57 @@ description: Launch executable: mac_steam.app/Contents/MacOS/mac_steam type: none -'599580': {} -'599590': +"599580": {} +"599590": installDir: Volleyball launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: VolleyballFever.exe type: vr -'599600': +"599600": installDir: Constructor Classic launch: - - arguments: '-conf \"..\\dosboxConstructor.conf\" -conf \"..\\dosboxConstructor_single.conf\" -noconsole -c exit' + - arguments: "-conf \\\"..\\\\dosboxConstructor.conf\\\" -conf \\\"..\\\\dosboxConstructor_single.conf\\\" -noconsole -c exit" config: oslist: windows - executable: \\DOSBOX\\DOSBox.exe + executable: "\\\\DOSBOX\\\\DOSBox.exe" type: none - workingdir: \\DOSBOX -'599610': + workingdir: "\\\\DOSBOX" +"599610": installDir: Lost Words launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Lost Words.exe type: default -'599630': +"599630": installDir: Mountain Mind launch: - config: oslist: windows executable: Mountain Mind.exe type: vr -'599670': +"599670": installDir: Chess3D launch: - config: oslist: windows executable: Chess.exe type: default -'599750': +"599750": installDir: Crisis in the Kremlin launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Windows x64 executable: CrisisintheKremlin.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows description: Windows x32 executable: CrisisintheKremlin.exe @@ -284879,88 +280284,86 @@ description: Any executable: Crisis.x86_64 type: default -'599780': {} -'599800': +"599780": {} +"599800": installDir: Easy Magic launch: - config: oslist: windows executable: EasyMagic.exe type: none -'599840': +"599840": installDir: Planet Rix-13 launch: - config: oslist: windows executable: RIX13.exe type: default -'599880': +"599880": installDir: TequilaZombies3 launch: - config: oslist: windows executable: TequilaZombies3.exe type: default -'599900': +"599900": installDir: FantasyTD launch: - config: oslist: windows - executable: bin\\TowerDefenseBase.exe + executable: "bin\\\\TowerDefenseBase.exe" type: default - workingdir: bin\\ -'599960': + workingdir: "bin\\\\" +"599960": installDir: Dogolrax launch: - config: oslist: windows executable: Dogolrax.exe type: none -'599990': {} -'60': +"599990": {} +"60": installDir: Half-Life launch: - - arguments: '-steam -game ricochet' + - arguments: "-steam -game ricochet" config: oslist: windows executable: hl.exe - vacmodulefilename: resource\\sourceinit.dat - - arguments: '-steam -game ricochet' + - arguments: "-steam -game ricochet" config: oslist: macos executable: hl.sh - vacmodulefilename: resource\\sourceinit_macos.dat - - arguments: '-steam -game ricochet' + - arguments: "-steam -game ricochet" config: oslist: linux executable: hl.sh -'6000': +"6000": installDir: Star Wars Republic Commando launch: - - executable: GameData\\System\\SWRepublicCommando.exe -'600000': - installDir: The St Christopher's School Lockdown + - executable: "GameData\\\\System\\\\SWRepublicCommando.exe" +"600000": + installDir: "The St Christopher's School Lockdown" launch: - config: oslist: windows - executable: The St Christopher's School Lockdown.exe + executable: "The St Christopher's School Lockdown.exe" type: none - config: oslist: linux - executable: St Christopher's School Lockdown.x86 + executable: "St Christopher's School Lockdown.x86" type: none - config: oslist: macos - executable: SteamBuilds.app/Contents/MacOS/St Christopher's School Lockdown + executable: "SteamBuilds.app/Contents/MacOS/St Christopher's School Lockdown" type: none -'600080': +"600080": installDir: Unto The End launch: - executable: UntoTheEnd.exe type: default nameLocalized: schinese: 直到最后 -'600090': +"600090": installDir: The Coma Recut launch: - config: @@ -284978,22 +280381,22 @@ description: (Linux Version) executable: TheComaRecut.x86_64 type: default -'600100': +"600100": installDir: Executive Hockey launch: - - arguments: '-jar hockeybrass-2.jar' + - arguments: "-jar hockeybrass-2.jar" config: oslist: windows - executable: jre\\bin\\javaw.exe + executable: "jre\\\\bin\\\\javaw.exe" type: default -'600120': +"600120": installDir: Life Forge ORPG launch: - config: oslist: windows executable: Life Forge.exe type: default -'600130': +"600130": installDir: Valfaris launch: - config: @@ -285001,71 +280404,71 @@ description: Main Release executable: Valfaris.exe type: default -'600140': +"600140": installDir: Belko VR launch: - config: oslist: windows executable: BelkoVR.exe type: vr -'600150': +"600150": installDir: Warpaint launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Warpaint - executable: ./Warpaint/Warpaint.exe + executable: "./Warpaint/Warpaint.exe" type: default - - arguments: '-vrmode \"OpenVR\"' + - arguments: "-vrmode \\\"OpenVR\\\"" config: - osarch: '64' + osarch: "64" oslist: windows description: Warpaint in Virtual Reality (OpenVR) - executable: ./Warpaint/Warpaint.exe + executable: "./Warpaint/Warpaint.exe" type: vr - config: - osarch: '64' + osarch: "64" oslist: macos description: WarpaintMAC executable: Warpaint_MAC.app type: default -'600170': - installDir: Off The Record The Art of Deception Collector's Edition +"600170": + installDir: "Off The Record The Art of Deception Collector's Edition" launch: - config: oslist: windows executable: OffTheRecord_TheArtOfDeceptionCE.exe type: default -'600180': +"600180": installDir: Light Strike Array launch: - - arguments: '-vr -steamvr' + - arguments: "-vr -steamvr" config: - osarch: '64' + osarch: "64" oslist: windows executable: LightStrikeArray.exe type: vr -'600190': +"600190": installDir: Ski Jump VR launch: - config: oslist: windows executable: SkiJumpVR.exe type: vr - - arguments: '-vrmode none' + - arguments: "-vrmode none" config: oslist: windows executable: SkiJumpVR.exe type: default -'600210': +"600210": installDir: RoboMatch launch: - config: oslist: windows executable: nw.exe type: default -'600230': +"600230": installDir: EpsilonJumpPrime launch: - config: @@ -285077,16 +280480,16 @@ executable: EpsilonJumpPrime.app type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: EpsilonJumpPrime.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: EpsilonJumpPrime.x86_64 type: none -'600250': +"600250": installDir: Art of Guile launch: - config: @@ -285094,14 +280497,14 @@ executable: bin/AoG.exe type: none workingdir: bin -'600260': +"600260": installDir: Jungle Dino VR launch: - config: oslist: windows executable: JungleDino.exe type: othervr -'600280': +"600280": installDir: Supreme Ruler Great War launch: - config: @@ -285114,64 +280517,62 @@ description: Launch executable: SupremeRulerGreatWar.app type: none -'600290': +"600290": installDir: The Forgotten Void launch: - config: oslist: windows executable: The Forgotten Void.exe type: none -'600310': - installDir: Rogue'n Roll +"600310": + installDir: "Rogue'n Roll" launch: - config: oslist: windows - executable: Rogue'n Roll.exe + executable: "Rogue'n Roll.exe" type: default -'600330': +"600330": installDir: CONTRACTED launch: - config: oslist: windows executable: CONTRACTED_1.0.26.exe type: none -'600340': {} -'600350': +"600340": {} +"600350": installDir: VectorWars launch: - - arguments: ' -NoVR -show-screen-selector' + - arguments: " -NoVR -show-screen-selector" config: oslist: windows description: in Gamepad / Keyboard Mode executable: VectorWarsVR.exe type: option1 - - arguments: '-OSVR -show-screen-selector' + - arguments: "-OSVR -show-screen-selector" config: oslist: windows description: in OSVR Mode - description_loc: - english: in OSVR Mode executable: VectorWarsVR.exe type: option1 - - arguments: '-OVR -vrmode oculus -show-screen-selector' + - arguments: "-OVR -vrmode oculus -show-screen-selector" config: oslist: windows executable: VectorWarsVR.exe type: othervr - - arguments: '-SteamVR -vrmode openvr -pointeronly' + - arguments: "-SteamVR -vrmode openvr -pointeronly" config: oslist: windows description: in SteamVR (Pointer Mode) executable: VectorWarsVR.exe type: vr - - arguments: '-SteamVR -vrmode openvr' + - arguments: "-SteamVR -vrmode openvr" config: oslist: windows description: In SteamVR (Touch Mode) executable: VectorWarsVR.exe type: vr -'600360': {} -'600370': +"600360": {} +"600370": installDir: Paradigm launch: - config: @@ -285180,13 +280581,13 @@ type: none - config: oslist: macos - executable: paradigm.app\\Contents\\MacOS\\Visionaire Player + executable: "paradigm.app\\\\Contents\\\\MacOS\\\\Visionaire Player" type: none - config: oslist: linux executable: start type: none -'600410': +"600410": installDir: HERO-E launch: - config: @@ -285194,14 +280595,14 @@ description: Launch executable: HERO-E.exe type: default -'600420': +"600420": installDir: Mobrule Classic launch: - config: oslist: windows executable: MR.exe type: none -'600430': +"600430": installDir: Ticket to Ride First Journey launch: - config: @@ -285212,7 +280613,7 @@ oslist: macos executable: TTR1J.app type: none -'600440': +"600440": installDir: CyberComplex launch: - config: @@ -285223,16 +280624,16 @@ oslist: linux executable: run.sh type: default -'600450': {} -'600460': +"600450": {} +"600460": installDir: Dustwind launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Dustwind.exe type: default -'600480': +"600480": installDir: Megaquarium launch: - config: @@ -285247,63 +280648,63 @@ oslist: linux executable: Megaquarium.x86_64 type: none -'600500': +"600500": installDir: LASER STRIKERS launch: - config: oslist: windows executable: strikers.exe type: none -'600530': +"600530": installDir: Kautic launch: - config: oslist: windows executable: Kautic.exe type: default -'600550': +"600550": installDir: Save Our Souls Episode I - The Absurd Hopes Of Blessed Children launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SaveOurSouls.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: SaveOurSouls.exe type: default -'600580': +"600580": installDir: Dark Mechanism launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: DarkMechanism.exe type: vr - config: - osarch: '64' + osarch: "64" oslist: windows executable: DarkMechanism.exe type: othervr -'600600': +"600600": installDir: makethatmoney launch: - config: oslist: windows executable: MakeThatMoney.exe type: default -'600610': +"600610": installDir: The Hand of Merlin launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: Bin\\x64\\Merlin.exe + executable: "Bin\\\\x64\\\\Merlin.exe" type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Bin/x64/Merlin type: default @@ -285312,52 +280713,46 @@ executable: Bin/x64/Merlin type: default - config: - osarch: '64' + osarch: "64" oslist: windows description: moddable - description_loc: - english: moddable - executable: Bin\\x64\\Merlin_Unrestricted.exe + executable: "Bin\\\\x64\\\\Merlin_Unrestricted.exe" type: option1 - config: - osarch: '64' + osarch: "64" oslist: linux description: moddable - description_loc: - english: moddable executable: Bin/x64/Merlin_Unrestricted type: option1 - config: oslist: macos description: moddable - description_loc: - english: moddable executable: Bin/x64/Merlin_Unrestricted type: option1 nameLocalized: schinese: 梅林之手 -'600630': +"600630": installDir: Spaceship Looter launch: - config: oslist: windows executable: Spaceship_Looter.exe type: default -'600640': +"600640": installDir: Trapped Summoner launch: - config: oslist: windows executable: Game.exe type: default -'600650': +"600650": installDir: OK Bob launch: - config: oslist: windows executable: OKBob.exe type: vr -'600660': +"600660": installDir: Kimmy launch: - config: @@ -285368,67 +280763,67 @@ oslist: macos executable: Kimmy.app type: default -'600670': +"600670": installDir: Descending launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Build_Descending2.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows description: 1.3 Test Build executable: Descending__.exe type: option1 -'600690': +"600690": installDir: TROID BLASTER 1.1 launch: - config: oslist: windows executable: TROID BLASTER PC SPECIAL UPDATE 4.exe type: default -'600720': +"600720": installDir: ManiaPlanet_TMLagoon launch: - arguments: /silent //startuptitle=TMLagoon@nadeo description: Play executable: ManiaPlanetLauncher.exe type: none - workingdir: .\\ + workingdir: ".\\\\" - description: Launcher executable: ManiaPlanetLauncher.exe type: none - workingdir: .\\ -'600740': + workingdir: ".\\\\" +"600740": installDir: Land Doctrine launch: - config: oslist: windows executable: autorun.exe type: default -'600750': +"600750": installDir: Star Trek Timelines launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Timelines.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: Timelines.exe type: default -'600980': +"600980": installDir: Master Shot VR launch: - config: oslist: windows executable: MasterShotVR.exe type: vr -'600990': +"600990": installDir: The Gardens Between launch: - config: @@ -285437,19 +280832,19 @@ type: default - config: oslist: macos - executable: TheGardensBetween.app\\Contents\\MacOS\\TheGardensBetween + executable: "TheGardensBetween.app\\\\Contents\\\\MacOS\\\\TheGardensBetween" type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: TheGardensBetween.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: TheGardensBetween.x86_64 type: default -'6010': +"6010": installDir: Indiana Jones and the Fate of Atlantis launch: - config: @@ -285458,7 +280853,7 @@ - config: oslist: macos executable: The Fate of Atlantis.app -'601010': +"601010": installDir: Hotel Anatolia launch: - config: @@ -285471,14 +280866,14 @@ description: Türkçe executable: Anadolu Oteli/Game.exe type: none -'601020': - installDir: 'Seed Of The Arcane , Episode 1' +"601020": + installDir: "Seed Of The Arcane , Episode 1" launch: - config: oslist: windows executable: Sota.exe type: default -'601050': +"601050": installDir: AoT2 launch: - config: @@ -285490,51 +280885,51 @@ japanese: 進撃の巨人2 koreana: 진격의거인2 tchinese: 進擊的巨人2 -'601080': +"601080": installDir: TRANCE VR launch: - config: oslist: windows executable: Trance_VR.exe type: vr -'601110': +"601110": installDir: Twin Roads launch: - - arguments: '-vrmode none' + - arguments: "-vrmode none" config: - osarch: '64' + osarch: "64" oslist: windows executable: TwinRoads.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: TwinRoads.exe type: vr -'601120': +"601120": installDir: Brain Machine launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: BrainMachine_64.exe type: none - config: - osarch: '64' + osarch: "64" oslist: macos - executable: Contents\\MacOS\\BrainMachine_macOS_64 + executable: "Contents\\\\MacOS\\\\BrainMachine_macOS_64" type: none - config: - osarch: '32' + osarch: "32" oslist: windows executable: BrainMachine_32.exe type: none - config: - osarch: '32' + osarch: "32" oslist: macos - executable: Contents\\MacOS\\BrainMachine_macOS_86 + executable: "Contents\\\\MacOS\\\\BrainMachine_macOS_86" type: none -'601130': +"601130": installDir: Spark launch: - config: @@ -285543,30 +280938,30 @@ type: default - config: oslist: macos - executable: Spark_Knightmare_Games.app\\Contents\\MacOS\\Mac_Runner + executable: "Spark_Knightmare_Games.app\\\\Contents\\\\MacOS\\\\Mac_Runner" type: default -'601150': +"601150": installDir: Devil May Cry 5 launch: - config: oslist: windows executable: DevilMayCry5.exe type: default -'601170': +"601170": installDir: ZiL Truck RallyCross launch: - config: oslist: windows executable: TruckRallyCross.exe type: default -'601180': +"601180": installDir: Doug and Lily launch: - config: oslist: windows executable: dl.exe type: default -'601200': +"601200": installDir: Pix launch: - config: @@ -285581,22 +280976,22 @@ oslist: linux executable: Pix.x86 type: default -'601210': {} -'601220': +"601210": {} +"601220": installDir: Zup! F launch: - config: oslist: windows executable: Zup! F.exe type: default -'601240': +"601240": installDir: Ripple launch: - config: oslist: windows executable: Ripple.exe type: default -'601250': +"601250": installDir: Micronomicon launch: - config: @@ -285611,59 +281006,59 @@ oslist: linux executable: micronomicon.x86 type: default -'601280': {} -'601320': +"601280": {} +"601320": installDir: Schlocks launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Schlocks.exe type: vr -'601330': +"601330": installDir: EyeOfOdin launch: - config: oslist: windows executable: odin.exe type: vr -'601340': {} -'601360': {} -'601380': +"601340": {} +"601360": {} +"601380": installDir: The Last One launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Singleplayer executable: TLO.exe type: option1 - config: - osarch: '64' + osarch: "64" oslist: windows description: Multiplayer executable: TLOMP.exe type: option2 -'601400': +"601400": installDir: qb launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: qb.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: qb.sh type: default - config: - osarch: '64' + osarch: "64" oslist: macos executable: qb.app type: default -'601420': - installDir: Dark Parables Requiem for the Forgotten Shadow Collector's Edition +"601420": + installDir: "Dark Parables Requiem for the Forgotten Shadow Collector's Edition" launch: - config: oslist: windows @@ -285671,58 +281066,58 @@ type: default - config: oslist: macos - executable: DP_RFTFS_CE_mac.app\\Contents\\MacOS\\EipixGame + executable: "DP_RFTFS_CE_mac.app\\\\Contents\\\\MacOS\\\\EipixGame" type: default -'601430': +"601430": installDir: TheEvilWithin2 launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch The Evil Within 2 executable: TEW2.exe type: none -'601490': +"601490": installDir: Passengers Awakening launch: - - arguments: '-vr' + - arguments: "-vr" config: oslist: windows executable: PassengersVR.exe type: vr - - arguments: '-vr' + - arguments: "-vr" config: oslist: windows executable: PassengersVR.exe type: othervr -'601500': +"601500": installDir: Lost in Nature launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Lost in Nature.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: Lost in Nature.exe type: default -'601510': +"601510": installDir: Yu-Gi-Oh! Duel Links launch: - config: oslist: windows executable: dlpc.exe type: default -'601520': +"601520": installDir: SiriusAOTFA launch: - config: oslist: windows executable: launcher.exe type: default -'601530': +"601530": installDir: DarkartaCE launch: - config: @@ -285731,36 +281126,36 @@ type: default - config: oslist: macos - executable: Darkarta A Broken Hearts Quest CE - Steam.app\\Contents\\MacOS\\Darkarta A Broken Hearts Quest CE - Steam + executable: "Darkarta A Broken Hearts Quest CE - Steam.app\\\\Contents\\\\MacOS\\\\Darkarta A Broken Hearts Quest CE - Steam" type: default - config: oslist: linux executable: DarkartaCE type: default -'601540': +"601540": installDir: Veil of Crows launch: - config: oslist: windows - executable: windows_content\\VeilOfCrows.exe + executable: "windows_content\\\\VeilOfCrows.exe" type: none -'601550': - installDir: Don't Look Back +"601550": + installDir: "Don't Look Back" launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: NeverLookBack.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: NeverLookBack.exe type: vr -'601570': +"601570": installDir: Fix Me Fix You launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows executable: nw.exe @@ -285769,23 +281164,23 @@ oslist: macos executable: nwjs.app type: none -'601580': {} -'601590': +"601580": {} +"601590": installDir: BattleTrucks launch: - config: oslist: windows executable: BattleTrucks.exe type: none -'601640': +"601640": installDir: The guard of dungeon launch: - config: oslist: windows executable: The guard of dungeon.exe type: config -'601650': {} -'601700': +"601650": {} +"601700": installDir: JETBROS launch: - config: @@ -285800,47 +281195,45 @@ oslist: macos executable: JETBROS.app type: default -'601750': +"601750": installDir: Range Day VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: SteamVR version - description_loc: - english: SteamVR version executable: RangeDay VR.exe type: vr -'601760': +"601760": installDir: VR Audio Visualizer launch: - config: oslist: windows executable: AudioVisualizer.exe type: othervr -'601770': +"601770": installDir: Sparc launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Sparc.exe type: vr -'601790': +"601790": installDir: Eternal Lore launch: - config: oslist: windows executable: game.exe type: default -'601810': +"601810": installDir: Spark the Electric Jester launch: - config: oslist: windows executable: Spark The Electric Jester.exe type: default -'601840': +"601840": installDir: Griftlands launch: - config: @@ -285860,27 +281253,27 @@ nameLocalized: schinese: 欺诈之地 tchinese: 欺詐之地 -'601870': +"601870": installDir: Biotoxin The Dark Days launch: - config: oslist: windows executable: BIOTOXIN-The Dark Days.exe type: default -'601880': +"601880": installDir: BoostBots VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: boostbots.exe type: vr -'601920': +"601920": installDir: Adjacency launch: - config: oslist: macos - executable: Adjacency.app\\Contents\\MacOS\\Adjacency + executable: "Adjacency.app\\\\Contents\\\\MacOS\\\\Adjacency" type: default - config: oslist: windows @@ -285890,81 +281283,81 @@ oslist: linux executable: Adjacency type: default -'601930': +"601930": installDir: Trianguluv launch: - config: oslist: windows executable: trianguluv.exe type: default -'601940': +"601940": installDir: Fancy Fishing VR launch: - config: oslist: windows executable: Fish.exe type: vr -'601960': +"601960": installDir: Under That Rain launch: - config: oslist: windows executable: underthatrain.exe type: none -'601980': {} -'601990': +"601980": {} +"601990": installDir: Perspectives launch: - description: Aleppo-Helsinki - executable: Aleppo-Helsinki\\AleppoHelsinki.exe + executable: "Aleppo-Helsinki\\\\AleppoHelsinki.exe" type: vr - workingdir: Aleppo-Helsinki\\ -'6020': + workingdir: "Aleppo-Helsinki\\\\" +"6020": installDir: Jedi Academy launch: - config: oslist: windows description: Launch Single Player - executable: GameData\\jasp.exe + executable: "GameData\\\\jasp.exe" workingdir: GameData - config: oslist: windows description: Launch Multiplayer - executable: GameData\\jamp.exe + executable: "GameData\\\\jamp.exe" workingdir: GameData - config: oslist: macos description: OS X executable: SWJKJA.app -'602000': +"602000": installDir: Uplands Motel VR Thriller launch: - executable: EscapeVR.exe type: vr -'602010': +"602010": installDir: Plank not included launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: PlankNotIncluded.exe type: vr -'602040': +"602040": installDir: Rota Craze launch: - config: oslist: windows - description: 'Rota Craze by Scoles Technologies, LLC' + description: "Rota Craze by Scoles Technologies, LLC" executable: Rota Craze.exe type: vr -'602070': +"602070": installDir: Plasma Puncher launch: - config: oslist: windows executable: Plasma puncher.exe type: default -'602080': +"602080": installDir: Solaroids launch: - config: @@ -285979,29 +281372,29 @@ oslist: linux executable: Solaroids type: default -'602090': +"602090": installDir: Janus VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch in VR mode executable: janusvr.exe type: vr - - arguments: '-render 2d' + - arguments: "-render 2d" config: - osarch: '64' + osarch: "64" oslist: windows description: Launch in 2D/desktop mode executable: janusvr.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch in VR mode (Linux) executable: janusvr type: vr -'602120': +"602120": installDir: Molemen Must Die launch: - config: @@ -286013,55 +281406,55 @@ executable: Molemen Must Die.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Molemen Must Die.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Molemen Must Die.x86 type: default -'602130': +"602130": installDir: Violent killer VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: WindowsNoEditor\\Sword_VS_Gun.exe + executable: "WindowsNoEditor\\\\Sword_VS_Gun.exe" type: vr -'602140': +"602140": installDir: The Uncertain VR Experience launch: - config: oslist: windows executable: TUE_VR.exe type: vr -'602150': +"602150": installDir: Desert Battle launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: WindowsNoEditor\\Sword_VS_Gun.exe + executable: "WindowsNoEditor\\\\Sword_VS_Gun.exe" type: vr -'602160': +"602160": installDir: AlchemistDefenderVR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: AlchemistDefenderVr.exe type: vr -'602170': {} -'602180': +"602170": {} +"602180": installDir: Free Towns launch: - config: oslist: windows executable: freetowns.exe type: default -'602200': +"602200": installDir: Dreamlike Worlds launch: - config: @@ -286072,33 +281465,33 @@ oslist: macos executable: Dreamlike Worlds.app type: none -'602220': {} -'602250': {} -'602270': +"602220": {} +"602250": {} +"602270": installDir: Alienautics launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: GREXSANDBOX.exe type: none -'602300': +"602300": installDir: Alter Army launch: - config: oslist: windows executable: Alter Army.exe type: default -'602320': +"602320": installDir: Train Valley 2 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TrainValley2.exe type: none - config: - osarch: '32' + osarch: "32" oslist: windows executable: TrainValley2.exe type: none @@ -286107,68 +281500,68 @@ executable: TrainValley2.app type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: TrainValley2.x86_64 type: none -'602420': {} -'602430': +"602420": {} +"602430": installDir: Yono and the Celestial Elephants launch: - config: oslist: windows executable: Yono and the Celestial Elephants.exe type: default -'602480': +"602480": installDir: Kartong launch: - - arguments: '-vr' + - arguments: "-vr" config: - osarch: '64' + osarch: "64" oslist: windows executable: Kartong_Project.exe type: vr - config: - osarch: '64' + osarch: "64" oslist: windows description: Non VR executable: Kartong_Project.exe type: default -'602490': +"602490": installDir: BloodBowlDeathZone launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: BBDZ.exe type: default -'602510': +"602510": installDir: Gettysburg The Tide Turns launch: - executable: autorun.exe type: default -'602520': +"602520": installDir: NEKOPARA Vol. 3 launch: - config: oslist: windows executable: NEKOPARAvol3.exe type: none -'602540': +"602540": installDir: The Ancient Remains launch: - config: oslist: windows executable: The Ancient Remains.exe type: vr -'602550': +"602550": installDir: Space Conquest launch: - config: oslist: windows executable: Space Conquest.exe type: vr -'602560': +"602560": installDir: Forged Adventure launch: - config: @@ -286188,31 +281581,31 @@ description: Forged Adventure with software rendering executable: RunWithSoftwareRendering.sh type: option1 -'602590': +"602590": installDir: Saucer-Like launch: - config: oslist: windows executable: Saucer-Like.exe type: default -'602600': {} -'602630': +"602600": {} +"602630": installDir: DioramaWorlds launch: - config: oslist: windows executable: DioramaWorldsV3.exe type: vr -'602660': {} -'602670': +"602660": {} +"602670": installDir: Block Legend launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: BlockLegend.exe type: vr -'602700': +"602700": installDir: Chippy launch: - config: @@ -286225,66 +281618,66 @@ type: default - config: betakey: legacy - osarch: '64' + osarch: "64" oslist: linux executable: Chippy.x86_64 type: default - config: betakey: legacy - osarch: '32' + osarch: "32" oslist: linux executable: Chippy.x86 type: default -'602770': +"602770": installDir: Clatter launch: - config: oslist: windows executable: Clatter.exe type: none -'602790': +"602790": installDir: Fated Souls 3 launch: - description: Launch executable: Game.exe type: none -'602830': {} -'602860': +"602830": {} +"602860": installDir: Ironclads 2 Boshin War launch: - executable: Ironclads2_Boshin_War.exe type: default -'602880': +"602880": installDir: Powernaut VANGARDT launch: - config: oslist: windows executable: vangardt.exe type: default -'602890': +"602890": installDir: hack_me 2 launch: - config: oslist: windows executable: hack_me 2.exe type: default -'602900': {} -'602910': +"602900": {} +"602910": installDir: One Wish launch: - config: oslist: windows executable: One Wish.exe type: default -'602920': +"602920": installDir: Sketch! Run! launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Sketch_Run.exe type: none -'602930': +"602930": installDir: Wordlase launch: - config: @@ -286295,19 +281688,19 @@ oslist: linux executable: Wordlase.linux64.bin type: none -'602940': {} -'602960': +"602940": {} +"602960": installDir: Barotrauma launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Barotrauma.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux - executable: ./Barotrauma + executable: "./Barotrauma" type: default - config: oslist: macos @@ -286315,41 +281708,35 @@ type: default - config: oslist: windows - ownsdlc: '1197650' + ownsdlc: "1197650" description: Bonus Content - description_loc: - english: Bonus Content executable: open_bonus_win.bat type: none - config: oslist: macos - ownsdlc: '1197650' + ownsdlc: "1197650" description: Bonus Content - description_loc: - english: Bonus Content executable: open_bonus_osx.sh type: none - config: oslist: linux - ownsdlc: '1197650' + ownsdlc: "1197650" description: Bonus Content - description_loc: - english: Bonus Content executable: open_bonus_lin.sh type: none nameLocalized: schinese: Barotrauma 潜渊症 -'602970': +"602970": installDir: Stunt Island launch: - - arguments: '-conf \"..\\dosbox_stuntisland.conf\" -conf \"..\\dosbox_stuntisland_single.conf\" -noconsole -c exit' + - arguments: "-conf \\\"..\\\\dosbox_stuntisland.conf\\\" -conf \\\"..\\\\dosbox_stuntisland_single.conf\\\" -noconsole -c exit" config: oslist: windows description: Stunt Island executable: DOSBOX/DOSBox.exe type: option1 workingdir: DOSBOX - - arguments: '-conf dosbox_stuntisland.conf -conf dosbox_stuntisland_single.conf -noconsole -c exit' + - arguments: "-conf dosbox_stuntisland.conf -conf dosbox_stuntisland_single.conf -noconsole -c exit" config: oslist: macos description: Stunt Island @@ -286362,37 +281749,37 @@ type: manual - config: oslist: macos - executable: ./manual.sh + executable: "./manual.sh" type: manual - - arguments: '-conf \"..\\dosbox_stuntisland.conf\" -conf \"..\\dosbox_stuntisland_control.conf\" -noconsole -c exit' + - arguments: "-conf \\\"..\\\\dosbox_stuntisland.conf\\\" -conf \\\"..\\\\dosbox_stuntisland_control.conf\\\" -noconsole -c exit" config: oslist: windows executable: DOSBOX/DOSBox.exe type: config workingdir: DOSBOX - - arguments: '-conf dosbox_stuntisland.conf -conf dosbox_stuntisland_control.conf -noconsole -c exit' + - arguments: "-conf dosbox_stuntisland.conf -conf dosbox_stuntisland_control.conf -noconsole -c exit" config: oslist: macos executable: dosbox/DOSBox type: config -'602990': {} -'6030': +"602990": {} +"6030": installDir: Jedi Outcast launch: - config: oslist: windows description: Launch Single Player - executable: GameData\\jk2sp.exe + executable: "GameData\\\\jk2sp.exe" workingdir: GameData - config: oslist: windows description: Launch Multiplayer - executable: GameData\\jk2mp.exe + executable: "GameData\\\\jk2mp.exe" workingdir: GameData - config: oslist: macos executable: Jedi Knight II.app -'603000': +"603000": installDir: Hillbilly Apocalypse launch: - config: @@ -286400,7 +281787,7 @@ description: Launch executable: HillbillyApocalypse.exe type: default -'603010': +"603010": installDir: Chill launch: - config: @@ -286411,24 +281798,24 @@ oslist: linux executable: Chill.sh type: none -'603020': +"603020": installDir: Usurper launch: - config: oslist: windows executable: Usurper.exe type: none -'603030': +"603030": installDir: Lamp Head launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Windowsx64 executable: Lamphead.exe type: option1 -'603040': {} -'603060': +"603040": {} +"603060": installDir: Tarim launch: - config: @@ -286437,36 +281824,36 @@ type: default - config: oslist: macos - executable: tarim_the_guardians.app\\Contents\\MacOS\\nwjs + executable: "tarim_the_guardians.app\\\\Contents\\\\MacOS\\\\nwjs" type: default -'603080': +"603080": installDir: Chronicles of a Dark Lord Tides of Fate Remastered launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows executable: Game.exe type: default -'603090': +"603090": installDir: Dream Stone launch: - config: oslist: windows executable: Dream.exe type: default -'603100': +"603100": installDir: ATOMINE launch: - config: oslist: windows executable: Atomine.exe type: default -'603110': +"603110": installDir: Grizzland launch: - executable: Grizzland.exe type: none -'603120': +"603120": installDir: Happy Campers launch: - config: @@ -286481,7 +281868,7 @@ oslist: macos executable: Happy Campers.app type: default -'603130': +"603130": installDir: Masked Shooters launch: - config: @@ -286492,7 +281879,7 @@ oslist: macos executable: MaskedShooters.app type: none -'603140': +"603140": installDir: Connected Hearts - Visual novel launch: - config: @@ -286507,28 +281894,28 @@ oslist: macos executable: Connected Hearts.app type: none -'603150': +"603150": installDir: Defence to death launch: - config: oslist: windows executable: Defence to death.exe type: config -'603190': +"603190": installDir: Tank Destroyer launch: - config: oslist: windows executable: Tank Destroyer.exe type: none -'603210': +"603210": installDir: Heartomics Valkyries launch: - config: oslist: windows executable: Valkyries.exe type: default -'603220': +"603220": installDir: ROTii launch: - config: @@ -286539,73 +281926,73 @@ oslist: macos executable: ROTiiMAC.app type: default -'603230': +"603230": installDir: The Wendigo launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TheWendigo.exe type: default -'603240': {} -'603250': +"603240": {} +"603250": installDir: My Own Little Planet launch: - config: oslist: windows executable: My own little planet.exe type: default -'603260': +"603260": installDir: The Cat Games launch: - config: oslist: windows executable: The Cat Games.exe type: default -'603280': +"603280": installDir: TAROTICA VOO DOO launch: - config: oslist: windows - executable: 180621\\TaroticaVooDoo.exe + executable: "180621\\\\TaroticaVooDoo.exe" type: default - config: - ownsdlc: '778970' + ownsdlc: "778970" description: CHRONICLES OF TAROTICA VOO DOO executable: open_chronicles_folder.exe type: none - config: oslist: windows - ownsdlc: '853390' + ownsdlc: "853390" description: TAROTICA VOO DOO -HELL MODE- - executable: 180621\\hell\\TaroticaVooDoo.exe + executable: "180621\\\\hell\\\\TaroticaVooDoo.exe" type: none - config: oslist: windows description: old version (2018 3/16-6/21) executable: TaroticaVooDoo.exe type: none -'603290': {} -'603320': +"603290": {} +"603320": installDir: Age of Defense launch: - config: oslist: windows executable: AoD.exe type: none -'603330': +"603330": installDir: Blasted Road Terror launch: - executable: BRT.exe type: none -'603340': +"603340": installDir: Demon Blade VR launch: - config: oslist: windows executable: Demon_Blade.exe type: vr -'603350': +"603350": installDir: DontCutYourHand launch: - config: @@ -286614,11 +282001,11 @@ type: default - config: oslist: macos - executable: DontCutYourHand.app\\Contents\\MacOS\\DontCutYourHand + executable: "DontCutYourHand.app\\\\Contents\\\\MacOS\\\\DontCutYourHand" type: default nameLocalized: schinese: 别剁手 -'603360': +"603360": installDir: CryptoMoneya launch: - config: @@ -286635,29 +282022,25 @@ type: none - config: oslist: windows - ownsdlc: '1686300' + ownsdlc: "1686300" description: Cryptomoneya 2.0 - description_loc: - english: Cryptomoneya 2.0 executable: cryptomoneya-2.0/cryptomoneya 2.0.exe type: option1 - config: oslist: linux - ownsdlc: '1686300' + ownsdlc: "1686300" description: Cryptomoneya 2.0 - description_loc: - english: Cryptomoneya 2.0 executable: cryptomoneya-2.0/cryptomoneya 2.0.sh type: option1 -'603370': {} -'603380': +"603370": {} +"603380": installDir: Dragon Essence - Color My World - launch: - config: oslist: windows executable: dragon-first.exe type: none -'603390': +"603390": installDir: Stone Story RPG launch: - config: @@ -286669,11 +282052,11 @@ executable: Stone Story.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: stone_story_linux.x86_64 type: default -'60340': +"60340": installDir: LUXOR 5th Passage launch: - config: @@ -286682,7 +282065,7 @@ - config: oslist: macos executable: LUXOR - 5th Passage.app -'603400': +"603400": installDir: FOXnFORESTS launch: - config: @@ -286694,11 +282077,11 @@ executable: FOXnFORESTS.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: FOXnFORESTS.x86_64 type: default -'603420': +"603420": installDir: Caveman Warriors launch: - config: @@ -286706,12 +282089,12 @@ executable: CavemanWarriors.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: CavemanWarriors.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: CavemanWarriors.x86_64 type: default @@ -286719,30 +282102,30 @@ oslist: macos executable: CavemanWarriors.app/Contents/MacOS/CavemanWarriors type: default -'603450': +"603450": installDir: 2URVIVE launch: - config: oslist: windows executable: 2URVIVE.exe type: default -'603460': +"603460": installDir: King and Assassins launch: - config: oslist: windows executable: KingAndAssassins.exe type: none -'603470': {} -'603490': +"603470": {} +"603490": installDir: StarHunterVR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: StarHunterVR.exe type: vr -'60350': +"60350": installDir: Glowfish launch: - config: @@ -286751,7 +282134,7 @@ - config: oslist: macos executable: Glowfish.app -'603530': +"603530": installDir: A Robot Named Fight launch: - config: @@ -286763,40 +282146,40 @@ executable: ARobotNamedFight.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: ARobotNamedFight.x86_64 type: default -'603550': +"603550": installDir: Schlag den Star launch: - config: oslist: windows executable: SchlagDenStar.exe type: default -'603560': +"603560": installDir: onithgame launch: - - arguments: '-culture=en -steam' + - arguments: "-culture=en -steam" config: oslist: windows - executable: onith\\Binaries\\Win64\\onith.exe + executable: "onith\\\\Binaries\\\\Win64\\\\onith.exe" type: default -'603570': {} -'603610': +"603570": {} +"603610": installDir: AEGIS 2186 launch: - - arguments: '-windowed' + - arguments: "-windowed" executable: AEGIS2186.exe type: none -'603630': +"603630": installDir: Bouncy Ball VR launch: - executable: RBVR.exe type: vr -'603640': {} -'603680': {} -'603700': +"603640": {} +"603680": {} +"603700": installDir: The Low Road launch: - config: @@ -286811,17 +282194,17 @@ oslist: linux executable: The Low Road.x86 type: none -'603720': {} -'603730': +"603720": {} +"603730": installDir: Something To Do With Love launch: - config: oslist: windows executable: Something To Do With Love.exe type: default -'603740': {} -'603750': - installDir: '-Arcane Raise-' +"603740": {} +"603750": + installDir: "-Arcane Raise-" launch: - config: oslist: windows @@ -286836,38 +282219,38 @@ oslist: linux executable: nw type: default -'603770': {} -'603780': {} -'603790': +"603770": {} +"603780": {} +"603790": installDir: Ninja Avenger Dragon Blade launch: - config: oslist: windows executable: Ninja Avenger Dragons Blade.exe type: default -'603800': +"603800": installDir: ReThink launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: ReThink executable: RethinkReworked.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows - description: 'Rethink - Old, not recommended' - executable: ReThink\\ReThink.exe + description: "Rethink - Old, not recommended" + executable: "ReThink\\\\ReThink.exe" type: none -'603810': +"603810": installDir: A Girls Fabric Face launch: - config: oslist: windows executable: AGFFLauncher.exe type: default -'603840': +"603840": installDir: Randall launch: - config: @@ -286876,19 +282259,19 @@ type: none - config: oslist: macos - executable: Randall.app\\Contents\\MacOS\\Randall + executable: "Randall.app\\\\Contents\\\\MacOS\\\\Randall" type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Randall.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Randall.x86 type: default -'603850': +"603850": installDir: AoCII launch: - config: @@ -286903,16 +282286,16 @@ oslist: linux executable: AoC2.jar type: none -'603860': {} -'603870': +"603860": {} +"603870": installDir: A Tale of Two Kingdoms launch: - - arguments: '-windowed' + - arguments: "-windowed" config: oslist: windows executable: ATOTK.exe type: default - - arguments: '-fullscreen' + - arguments: "-fullscreen" config: oslist: windows description: in full screen mode @@ -286920,24 +282303,24 @@ type: option1 - executable: Manual.pdf type: manual - - arguments: '--setup' + - arguments: "--setup" config: oslist: windows executable: ATOTK.exe type: config - - arguments: '-windowed' + - arguments: "-windowed" config: oslist: linux executable: Game.sh type: default - - arguments: '-fullscreen' + - arguments: "-fullscreen" config: oslist: linux description: in full screen mode executable: Game.sh type: option1 - config: - ownsdlc: '649020' + ownsdlc: "649020" description: Play Soundtrack executable: Soundtrack/playlist.m3u type: none @@ -286946,7 +282329,7 @@ oslist: macos executable: A Tale of Two Kingdoms.app type: default -'603880': +"603880": installDir: Sounds of Her Love launch: - config: @@ -286966,37 +282349,37 @@ type: default - config: oslist: macos - description: ~We'll always be together~ Bonus Content - executable: DLC\\Sounds of Her Love ~We'll always be together~.app + description: "~We'll always be together~ Bonus Content" + executable: "DLC\\\\Sounds of Her Love ~We'll always be together~.app" type: option2 - config: oslist: linux - description: ~We'll always be together~ Bonus Content - executable: DLC\\Linux\\Sounds of Her Love ~We'll always be together~.sh + description: "~We'll always be together~ Bonus Content" + executable: "DLC\\\\Linux\\\\Sounds of Her Love ~We'll always be together~.sh" type: option2 - config: oslist: windows - description: ~We'll always be together~ Bonus Content - executable: DLC\\Sounds of Her Love ~We'll always be together~.exe + description: "~We'll always be together~ Bonus Content" + executable: "DLC\\\\Sounds of Her Love ~We'll always be together~.exe" type: option2 -'603890': {} -'603910': +"603890": {} +"603910": installDir: MECCHA ZOMBIES launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: zombie.exe type: none -'603920': {} -'603930': +"603920": {} +"603930": installDir: Battle Princess Madelyn launch: - config: oslist: windows executable: bpm.exe type: default -'603940': +"603940": installDir: Pixel Shopkeeper launch: - config: @@ -287005,13 +282388,13 @@ type: default - config: oslist: macos - executable: Shopkeeper.app\\Contents\\MacOS\\Shopkeeper + executable: "Shopkeeper.app\\\\Contents\\\\MacOS\\\\Shopkeeper" type: default - config: oslist: linux executable: PixelShopkeeper.x86 type: default -'603960': +"603960": installDir: Monolith launch: - config: @@ -287024,24 +282407,24 @@ type: none - config: oslist: linux - ownsdlc: '1180120' + ownsdlc: "1180120" executable: monolith type: none -'603970': +"603970": installDir: Shoot Loop VR launch: - config: oslist: windows executable: shoot.exe type: vr -'603990': +"603990": installDir: Memory Eater launch: - config: oslist: windows executable: nw.exe type: default -'6040': +"6040": installDir: The Dig launch: - config: @@ -287050,41 +282433,41 @@ - config: oslist: macos executable: The Dig.app -'604000': +"604000": installDir: Like Clay launch: - config: oslist: windows executable: LikeClay.exe type: default -'604010': +"604010": installDir: Chimpology launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: chimpology.exe type: none -'604030': {} -'604040': +"604030": {} +"604040": installDir: Legion Tale launch: - config: oslist: windows executable: Legion Tale.exe type: default -'604060': +"604060": installDir: Goblin Harvest - The Mighty Quest launch: - config: oslist: windows executable: GoblinHarvest.exe type: default -'604110': +"604110": installDir: HeartPapersBorder launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: hpb64.exe type: default @@ -287093,43 +282476,43 @@ executable: hpb.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: hpb.x86_64 type: default -'604140': +"604140": installDir: Broccoli Bob launch: - config: oslist: windows executable: Broccoli Bob.exe type: default -'604150': +"604150": installDir: Bomb Royale launch: - config: oslist: windows executable: Bomb Royale.exe type: default -'604160': {} -'604170': +"604160": {} +"604170": installDir: Libra of the Vampire Princess launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: LIBRAeS.exe type: default -'604190': +"604190": installDir: Storm Riders launch: - - arguments: '--in-process-gpu --disable-transparency' + - arguments: "--in-process-gpu --disable-transparency" config: oslist: windows executable: stormriders.exe type: default -'604200': {} -'604230': +"604200": {} +"604230": installDir: UnlastingHorror launch: - config: @@ -287137,42 +282520,40 @@ executable: UnlastingHorror.exe type: default - description: VR Mode - description_loc: - english: VR Mode executable: UnlastingHorror.exe type: vr -'604240': +"604240": installDir: Shotgun Farmers launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: Shotgun Farmers.exe type: default - config: - osarch: '64' + osarch: "64" oslist: macos executable: Shotgun Farmers.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Shotgun Farmers.x86_64 type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: Shotgun Farmers.exe type: default -'604300': +"604300": installDir: SHOW MUST GO ON launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ShowMustGoOn.exe type: vr -'604330': +"604330": installDir: The Crown of Leaves launch: - config: @@ -287187,17 +282568,17 @@ type: default - config: oslist: windows - ownsdlc: '1160540' + ownsdlc: "1160540" executable: The Crown of Leaves.exe type: none -'604340': - installDir: Mystery Case Files The Black Veil Collector's Edition +"604340": + installDir: "Mystery Case Files The Black Veil Collector's Edition" launch: - config: oslist: windows executable: WOD_BlackWidow_CE.exe type: default -'604450': +"604450": installDir: Another Adventure launch: - config: @@ -287206,9 +282587,9 @@ type: default - config: oslist: macos - executable: AnotherAdventure.app\\Contents\\MacOS\\AnotherAdventure + executable: "AnotherAdventure.app\\\\Contents\\\\MacOS\\\\AnotherAdventure" type: default -'604490': +"604490": installDir: Running Through Russia launch: - config: @@ -287216,7 +282597,7 @@ executable: game.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: game.x86 type: default @@ -287225,11 +282606,11 @@ executable: RTR_mac.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: game.x86_64 type: default -'604500': +"604500": installDir: Tank Force launch: - config: @@ -287244,7 +282625,7 @@ oslist: macos executable: TankForce.app type: none -'604510': +"604510": installDir: Empires in Ruins launch: - config: @@ -287254,15 +282635,15 @@ nameLocalized: russian: Empires in Ruins - На развалинах империй schinese: Empires in Ruins - 废墟帝国 -'604520': {} -'604530': +"604520": {} +"604530": installDir: EmbodyMe launch: - config: oslist: windows executable: EmbodyMe.exe type: vr -'604540': +"604540": installDir: EmpireOfSin launch: - config: @@ -287271,72 +282652,72 @@ type: default - config: oslist: windows - executable: ParadoxLauncher\\dowser.exe + executable: "ParadoxLauncher\\\\dowser.exe" type: default -'604550': +"604550": installDir: Reality Incognita launch: - executable: Reality Incognita.exe type: default -'604570': {} -'604630': +"604570": {} +"604630": installDir: Build It launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Build It.exe type: default -'604640': +"604640": installDir: Outer Rim launch: - config: oslist: windows executable: OuterRim.exe type: none -'604740': +"604740": installDir: DangerZone launch: - - executable: DangerZone\\Binaries\\Win64\\DangerZone-Win64-Shipping.exe + - executable: "DangerZone\\\\Binaries\\\\Win64\\\\DangerZone-Win64-Shipping.exe" type: default -'604770': +"604770": installDir: Dark Prospect launch: - config: oslist: windows executable: DarkProspect.exe type: default -'604780': +"604780": installDir: aMAZE launch: - config: oslist: windows executable: aMAZE.exe type: default -'604810': {} -'604830': +"604810": {} +"604830": installDir: All Alone VR launch: - config: oslist: windows executable: game.exe type: vr -'604900': {} -'604920': +"604900": {} +"604920": installDir: Darkblood Chronicles launch: - config: oslist: windows executable: Game.exe type: default -'604950': +"604950": installDir: RGBverse launch: - config: oslist: windows executable: RGBverse.exe type: default -'604980': +"604980": installDir: Travel Riddles Trip To India launch: - config: @@ -287347,58 +282728,58 @@ oslist: macos executable: TravelRiddlesTripToIndia.app/Contents/MacOS/TravelRiddlesTripToIndia type: none -'605040': +"605040": installDir: Zarya and the Cursed Skull launch: - config: oslist: windows executable: zarya.exe type: default -'605060': {} -'605100': +"605060": {} +"605100": installDir: Renzo Racer launch: - config: oslist: windows executable: RenzoRacer.exe type: default -'605110': +"605110": installDir: VRChairGames launch: - config: oslist: windows executable: VRChairGames.exe type: vr -'605140': +"605140": installDir: Lorn launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: KINGSOFLORN.exe type: default -'605160': +"605160": installDir: Perfect_Plan launch: - config: oslist: windows executable: Perfect_Plan.exe type: default -'605180': +"605180": installDir: Theory of Fear launch: - config: oslist: windows executable: FearTheory12.exe type: default -'605190': +"605190": installDir: Getaway Island launch: - config: oslist: windows executable: GetawayIsland.exe type: default -'605200': +"605200": installDir: Kursk - Battle at Prochorovka launch: - config: @@ -287409,15 +282790,15 @@ oslist: macos executable: Contents/MacOS/Kursk.app type: none -'605210': +"605210": installDir: The Last Tree launch: - config: oslist: windows executable: TheLastTree.exe type: none -'605220': {} -'605230': +"605220": {} +"605230": installDir: Grey Hack launch: - config: @@ -287429,23 +282810,23 @@ executable: Grey Hack.app type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: Grey Hack.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: Grey Hack.x86_64 type: none -'605250': +"605250": installDir: Cluckles launch: - config: oslist: windows executable: nw.exe type: default -'605310': +"605310": installDir: UnearthingMars launch: - config: @@ -287456,42 +282837,42 @@ oslist: windows executable: UnearthingMars.exe type: openvroverlay -'605410': +"605410": installDir: Fear the Dead launch: - config: oslist: windows executable: Game.exe type: default -'605450': +"605450": installDir: InDeath launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: InDeath.exe type: vr -'605470': {} -'605490': +"605470": {} +"605490": installDir: One Hit KO launch: - config: oslist: windows executable: One Hit KO.exe type: default -'605500': {} -'605510': {} -'605520': {} -'605530': {} -'605610': +"605500": {} +"605510": {} +"605520": {} +"605530": {} +"605610": installDir: Dawn launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Dawn.exe type: default -'605740': +"605740": installDir: Flashing Lights launch: - config: @@ -287503,78 +282884,78 @@ executable: flashinglights.app type: default nameLocalized: - german: 'Flashing Lights - Polizei, Feuerwehr, Rettungsdienst-Simulator' + german: "Flashing Lights - Polizei, Feuerwehr, Rettungsdienst-Simulator" japanese: Flashing Lights - 警察,消防,救急業務シミュレーター russian: Flashing Lights - Полиция,Пожарные,Симулятор экстренных служб schinese: Flashing Lights - 警情,消防,急救 tchinese: Flashing Lights - 警情,消防,急救 -'605760': +"605760": installDir: gRally launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: gRally - All terrain simulator executable: gRally.exe type: default -'605770': +"605770": installDir: Luna launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: LunaWindowsSteamVR\\Luna.exe + executable: "LunaWindowsSteamVR\\\\Luna.exe" type: vr - config: - osarch: '64' + osarch: "64" oslist: windows - executable: LunaWindowsNoVR\\Luna.exe + executable: "LunaWindowsNoVR\\\\Luna.exe" type: default -'605790': - installDir: Queen's Tales The Beast and the Nightingale Collector's Edition +"605790": + installDir: "Queen's Tales The Beast and the Nightingale Collector's Edition" launch: - config: oslist: windows executable: QueensTales_TheBeastAndTheNightingale_CE.exe type: default -'605800': +"605800": installDir: Skelattack launch: - config: oslist: windows executable: Skelattack.exe type: default -'605810': +"605810": installDir: BattleTest launch: - config: oslist: windows executable: BattleTest.exe type: vr -'605830': +"605830": installDir: Organ Quarter VR launch: - config: oslist: windows executable: OrganQuarter.exe type: vr -'605850': +"605850": installDir: PinballVR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: PinballVR.exe type: vr -'605860': +"605860": installDir: Paper Toss VR launch: - config: oslist: windows executable: Project_Papertoss.exe type: vr -'605910': {} -'605920': +"605910": {} +"605920": installDir: Volted launch: - config: @@ -287585,9 +282966,9 @@ oslist: macos executable: volted.app type: none -'605980': {} -'605990': - installDir: Heart's Medicine - Hospital Heat +"605980": {} +"605990": + installDir: "Heart's Medicine - Hospital Heat" launch: - config: oslist: windows @@ -287595,18 +282976,18 @@ type: default - config: oslist: macos - executable: hm3.app\\Contents\\MacOS\\hm3 + executable: "hm3.app\\\\Contents\\\\MacOS\\\\hm3" type: default -'6060': +"6060": installDir: Star Wars Battlefront II Classic launch: - - executable: GameData\\BattlefrontII.exe + - executable: "GameData\\\\BattlefrontII.exe" workingdir: GameData -'60600': +"60600": installDir: ProtoGalaxy launch: - executable: ProtoGalaxy.exe -'606000': +"606000": installDir: Die_for_Valhalla launch: - config: @@ -287618,16 +282999,16 @@ executable: DieForValhalla.app type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: DieForValhalla.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: DieForValhalla.x86_64 type: none -'606030': +"606030": installDir: Meganoid launch: - config: @@ -287645,15 +283026,15 @@ description: Launch executable: meganoid type: none -'606050': {} -'606060': +"606050": {} +"606060": installDir: Dark Tower launch: - config: oslist: windows executable: DarkTower.exe type: default -'606140': +"606140": installDir: Survived By launch: - config: @@ -287661,35 +283042,35 @@ oslist: windows executable: SurvivedBy.exe type: default - - arguments: '-hosturl https://staging.backend.survivedby.com' + - arguments: "-hosturl https://staging.backend.survivedby.com" config: betakey: qastaging oslist: windows description: Playtest Server (Staging) executable: SurvivedBy.exe type: none - - arguments: '-hosturl http://test.backend.survivedby.com:9000' + - arguments: "-hosturl http://test.backend.survivedby.com:9000" config: betakey: qabranch oslist: windows description: Playtest Server (test) executable: SurvivedBy.exe type: none - - arguments: '-hosturl http://test.backend.survivedby.com:9000' + - arguments: "-hosturl http://test.backend.survivedby.com:9000" config: betakey: qadebug oslist: windows description: Playtest Server (test) executable: SurvivedBy.exe type: none - - arguments: '-hosturl https://nightly.backend.survivedby.com' + - arguments: "-hosturl https://nightly.backend.survivedby.com" config: betakey: qanightly oslist: windows description: Playtest Server (nightly) executable: SurvivedBy.exe type: none -'606150': +"606150": installDir: Moonlighter launch: - config: @@ -287702,17 +283083,17 @@ executable: Moonlighter.app type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: Moonlighter.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: Moonlighter.x86_64 type: none -'606160': {} -'606190': +"606160": {} +"606190": installDir: Nighthaw-X3000 launch: - config: @@ -287720,63 +283101,63 @@ description: Launch executable: NIGHTHAW-X3000.exe type: none -'606230': +"606230": installDir: Thea 2 The Shattering launch: - - arguments: '-ConnectToSteam' + - arguments: "-ConnectToSteam" config: - osarch: '64' + osarch: "64" oslist: windows executable: Thea2.exe type: none -'606270': +"606270": installDir: Chess and Checkers VR launch: - config: oslist: windows executable: Chess and Checkers VR.exe type: vr -'606280': +"606280": installDir: Darksiders 3 launch: - config: oslist: windows executable: Darksiders3.exe type: default -'606300': +"606300": installDir: Divine Ascent launch: - config: oslist: windows executable: Divine Ascent.exe type: default -'606330': +"606330": installDir: Shadows 2 Perfidia launch: - config: oslist: windows executable: Shadows 2 Perfidia.exe type: default -'606350': {} -'606360': +"606350": {} +"606360": installDir: Mech Skeleton launch: - config: oslist: windows executable: Mech Skeleton GO.exe type: vr -'606370': +"606370": installDir: RomancingSaGa2 launch: - - arguments: '-windowed' + - arguments: "-windowed" config: - osarch: '64' + osarch: "64" oslist: windows executable: rs2.exe type: default nameLocalized: japanese: ロマンシング サガ2 -'606480': +"606480": installDir: FloodOfLight launch: - config: @@ -287787,7 +283168,7 @@ oslist: windows executable: FloodOfLight.exe type: default -'606490': +"606490": installDir: Duck Life Space launch: - config: @@ -287797,16 +283178,16 @@ type: default - config: oslist: macos - executable: DuckLifeSpace.app\\Contents\\MacOS\\DuckLifeSpace + executable: "DuckLifeSpace.app\\\\Contents\\\\MacOS\\\\DuckLifeSpace" type: default -'606500': +"606500": installDir: HellSign launch: - config: oslist: windows executable: HellSign.exe type: none -'606510': +"606510": installDir: Grisaia Phantom Trigger Vol.1 launch: - executable: GPT_vol1.exe @@ -287814,7 +283195,7 @@ nameLocalized: japanese: グリザイア ファントムトリガー Vol.1 schinese: 灰色幻影扳机第1卷 -'606520': +"606520": installDir: Grisaia Phantom Trigger Vol.2 launch: - executable: GPT_vol2.exe @@ -287822,14 +283203,14 @@ nameLocalized: japanese: グリザイア ファントムトリガー Vol.2 schinese: 灰色幻影扳机第2卷 -'606670': +"606670": installDir: Crowd Smashers launch: - config: oslist: windows executable: Crowd Smashers.exe type: default -'606680': +"606680": installDir: Silver launch: - config: @@ -287844,7 +283225,7 @@ oslist: macos executable: Silver.app type: default -'606690': +"606690": installDir: Ecchi Sketch Draw Cute Girls Every Day! launch: - config: @@ -287859,12 +283240,12 @@ oslist: macos executable: Ecchi_Sketch.sh type: default -'606710': +"606710": installDir: Sphinx and the Cursed Mummy launch: - config: oslist: linux - executable: ./Sphinx.elf + executable: "./Sphinx.elf" type: default - config: oslist: windows @@ -287875,36 +283256,36 @@ oslist: macos executable: Sphinx.app type: default - - arguments: '-modlaunch' + - arguments: "-modlaunch" config: betakey: testgate oslist: windows executable: SphinxD_GL.exe type: config -'606720': +"606720": installDir: Cosmic Kites launch: - config: oslist: windows executable: Cosmic Kites.exe type: default -'606730': +"606730": installDir: Sine Mora EX launch: - config: oslist: windows executable: SineMoraEX.exe type: default -'606750': {} -'606790': +"606750": {} +"606790": installDir: Battle Bolts launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: BattleBolts.exe type: none -'606800': +"606800": installDir: Startup Company launch: - config: @@ -287919,7 +283300,7 @@ oslist: macos executable: StartupCompany.app type: default -'606850': +"606850": installDir: VR Batting launch: - config: @@ -287927,53 +283308,52 @@ description: Launch executable: VRBatting.exe type: vr -'606860': +"606860": installDir: Nephise launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Nephise.exe type: default -'606870': +"606870": installDir: MetaMorph launch: - config: oslist: windows executable: MetaMorph.exe type: default -'606880': +"606880": installDir: GreedFall launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: GreedFall.exe type: default - config: - betakey: >- - qa_test,focus_playtest,focus_qa,focus_test_interne,focus_loca,fhi_internal,fhi_testlab,spiders_dev,spiders_stable,hitdetection,focus_consulting,whatsnext2019,focus_hw,nda_closedbeta,aimassist,agerating,qa_test_last_stable,gamescom2019,spiders_stable_ee - osarch: '64' + betakey: "qa_test,focus_playtest,focus_qa,focus_test_interne,focus_loca,fhi_internal,fhi_testlab,spiders_dev,spiders_stable,hitdetection,focus_consulting,whatsnext2019,focus_hw,nda_closedbeta,aimassist,agerating,qa_test_last_stable,gamescom2019,spiders_stable_ee" + osarch: "64" oslist: windows description: GreedFall - Debug executable: GreedFallDO.exe type: none - - arguments: '-lang=jpn' + - arguments: "-lang=jpn" config: betakey: focus_jp - osarch: '64' + osarch: "64" oslist: windows description: launch in Japanese executable: GreedFall.exe type: none -'606890': +"606890": installDir: Masters of Anima launch: - config: oslist: windows executable: Masters of Anima.exe type: default -'606920': +"606920": installDir: EXA - The Infinite Instrument launch: - config: @@ -287984,22 +283364,22 @@ oslist: macos executable: EXA.app type: vr -'606940': +"606940": installDir: Cyborg TD launch: - config: oslist: windows executable: CYBORGTD.exe type: default -'606950': +"606950": installDir: Army General launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Army General.exe type: default -'606960': +"606960": installDir: CRIMSON METAL launch: - config: @@ -288010,10 +283390,10 @@ - config: oslist: windows description: CRIMSON METAL - EPISODE II - executable: \\CM - EPISODE 2\\CRIMSON METAL REDUX.exe + executable: "\\\\CM - EPISODE 2\\\\CRIMSON METAL REDUX.exe" type: option2 - workingdir: \\CM - EPISODE 2 -'60700': + workingdir: "\\\\CM - EPISODE 2" +"60700": installDir: Power Of Defense launch: - config: @@ -288024,113 +283404,103 @@ oslist: macos description: MacVersion executable: POD.app -'607020': +"607020": installDir: Last Heroes 4 launch: - description: Launch executable: Game.exe type: none -'607030': - installDir: Jade's Journey 2 +"607030": + installDir: "Jade's Journey 2" launch: - description: Launch executable: Game.exe type: none -'607040': +"607040": installDir: Grimoire Chronicles launch: - description: Launch executable: Game.exe type: none -'607050': +"607050": installDir: Wargroove launch: - - arguments: '--dx11' + - arguments: "--dx11" config: - osarch: '32' + osarch: "32" oslist: windows - executable: win32_bin\\wargroove32.exe + executable: "win32_bin\\\\wargroove32.exe" type: default - - arguments: '--dx11' + - arguments: "--dx11" config: - osarch: '64' + osarch: "64" oslist: windows - executable: win64_bin\\wargroove64.exe + executable: "win64_bin\\\\wargroove64.exe" type: default - - arguments: '--opengl' + - arguments: "--opengl" config: - osarch: '32' + osarch: "32" oslist: windows description: Wargroove (OpenGL) - executable: win32_bin\\wargroove32.exe + executable: "win32_bin\\\\wargroove32.exe" type: option1 - - arguments: '--opengl' + - arguments: "--opengl" config: - osarch: '64' + osarch: "64" oslist: windows description: Wargroove (OpenGL) - executable: win64_bin\\wargroove64.exe + executable: "win64_bin\\\\wargroove64.exe" type: option1 - config: oslist: macos executable: wargroove.app type: default - - arguments: '--skip-intro' + - arguments: "--skip-intro" config: - osarch: '64' + osarch: "64" oslist: windows description: Wargroove (No Intro) - description_loc: - english: Wargroove (No Intro) - executable: win64_bin\\wargroove64.exe + executable: "win64_bin\\\\wargroove64.exe" type: option2 - - arguments: '--skip-intro' + - arguments: "--skip-intro" config: - osarch: '32' + osarch: "32" oslist: windows description: Wargroove (No Intro) - description_loc: - english: Wargroove (No Intro) - executable: win32_bin\\wargroove32.exe + executable: "win32_bin\\\\wargroove32.exe" type: option2 nameLocalized: japanese: ウォーグルーヴ koreana: 워그루브 schinese: 战律 tchinese: 戰律 -'607080': +"607080": installDir: Psychonauts 2 launch: - config: oslist: windows executable: Psychonauts2.exe type: default - - arguments: Psychonauts2\\Binaries\\Win64 + - arguments: "Psychonauts2\\\\Binaries\\\\Win64" config: betakey: dubbadubba oslist: windows description: Test Build - description_loc: - english: Test Build - executable: Psychonauts2\\Binaries\\Win64\\Psychonauts2-Win64-Test.exe + executable: "Psychonauts2\\\\Binaries\\\\Win64\\\\Psychonauts2-Win64-Test.exe" type: option2 - - arguments: Psychonauts2\\Binaries\\Win64 + - arguments: "Psychonauts2\\\\Binaries\\\\Win64" config: betakey: compatibility oslist: windows description: Test Build - description_loc: - english: Test Build - executable: Psychonauts2\\Binaries\\Win64\\Psychonauts2-Win64-Test.exe + executable: "Psychonauts2\\\\Binaries\\\\Win64\\\\Psychonauts2-Win64-Test.exe" type: option2 - - arguments: Psychonauts2\\Binaries\\Win64 + - arguments: "Psychonauts2\\\\Binaries\\\\Win64" config: betakey: nvidia oslist: windows description: Test Build - description_loc: - english: Test Build - executable: Psychonauts2\\Binaries\\Win64\\Psychonauts2-Win64-Test.exe + executable: "Psychonauts2\\\\Binaries\\\\Win64\\\\Psychonauts2-Win64-Test.exe" type: option2 - config: betakey: osx_linux_test @@ -288139,7 +283509,7 @@ type: default - config: betakey: osx_linux_test - osarch: '64' + osarch: "64" oslist: linux executable: Psychonauts2.sh type: default @@ -288148,10 +283518,10 @@ executable: Psychonauts2-Mac-Shipping.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Psychonauts2.sh -'607120': +"607120": installDir: Police Quest - SWAT 2 launch: - executable: SWAT.exe @@ -288159,23 +283529,23 @@ - description: Launch Map Editor executable: MapConstructor.exe type: editor -'607160': +"607160": installDir: LuxinTime launch: - config: oslist: windows executable: LuxinTime.exe type: vr -'607180': {} -'607190': +"607180": {} +"607190": installDir: Dark launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Dark.exe type: vr -'607200': +"607200": installDir: Tanki X launch: - config: @@ -288186,14 +283556,14 @@ oslist: macos executable: tankix.app type: none -'607210': +"607210": installDir: Possessed launch: - config: oslist: windows executable: Possessed.exe type: default -'607230': +"607230": installDir: ClockwiZZZe launch: - config: @@ -288208,50 +283578,50 @@ oslist: macos executable: ClockwiZZZe type: default -'607260': +"607260": installDir: McOsu launch: - - arguments: '-vr' + - arguments: "-vr" config: oslist: windows executable: McEngine.exe type: vr - - arguments: '-novr' + - arguments: "-novr" config: oslist: windows description: on Desktop executable: McEngine.exe type: option2 - - arguments: '-novr' + - arguments: "-novr" config: - osarch: '64' + osarch: "64" oslist: linux description: on Desktop executable: McEngine type: option1 - - arguments: '-novr' + - arguments: "-novr" config: - osarch: '64' + osarch: "64" oslist: macos description: on Desktop executable: McEngine type: option3 -'607270': {} -'607330': +"607270": {} +"607330": installDir: Rangi launch: - executable: Rangi.exe type: vr - executable: Rangi.exe type: othervr -'607360': +"607360": installDir: COG launch: - config: oslist: windows executable: COG.exe type: vr -'607400': +"607400": installDir: Necrosphere launch: - config: @@ -288263,27 +283633,27 @@ executable: necro.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: necro.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: necro.x86_64 type: default -'607440': +"607440": installDir: Escape VR launch: - executable: game.exe type: vr -'607460': +"607460": installDir: Epic Snails launch: - arguments: +appName beta_maine_alabama_507 +assetDatabaseStrategy Streaming config: betakey: na - osarch: '64' + osarch: "64" oslist: windows executable: UnityClient@Windows.exe type: none @@ -288294,7 +283664,7 @@ executable: UnityClient@Mac.app/Contents/MacOS/UnityClient@Mac type: none - config: - osarch: '64' + osarch: "64" oslist: windows executable: epic_snails.exe type: default @@ -288302,24 +283672,24 @@ oslist: macos executable: EpicSnails.app/Contents/MacOS/EpicSnails type: default -'607490': - installDir: HAUNTED Halloween '86 +"607490": + installDir: "HAUNTED Halloween '86" launch: - config: oslist: windows description: Launch - executable: halloween'86.exe + executable: "halloween'86.exe" type: none -'607590': +"607590": installDir: Earthquake Simulator VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: Earthquake Preparedness Build-ENG\\EarthquakePrep\\Binaries\\Win64\\EarthquakePrep-Win64-Shipping.exe + executable: "Earthquake Preparedness Build-ENG\\\\EarthquakePrep\\\\Binaries\\\\Win64\\\\EarthquakePrep-Win64-Shipping.exe" type: vr -'607650': {} -'607660': +"607650": {} +"607660": installDir: 21 Days launch: - config: @@ -288330,65 +283700,65 @@ oslist: macos executable: 21Days.app type: default -'607670': +"607670": installDir: Puzzle Guardians launch: - config: oslist: macos - executable: Puzzle Guardians.app\\Contents\\MacOS\\Puzzle Guardians + executable: "Puzzle Guardians.app\\\\Contents\\\\MacOS\\\\Puzzle Guardians" type: none - config: oslist: windows executable: Puzzle Guardians.exe type: none -'607680': +"607680": installDir: Popap launch: - config: oslist: windows executable: Game.exe type: none -'607700': {} -'607720': +"607700": {} +"607720": installDir: VRDarts launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: VR Darts executable: vrdarts.exe type: vr -'607730': +"607730": installDir: Pathologic Demo launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Pathologic.exe type: none -'607760': +"607760": installDir: CyberDrifter launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: Cyberdrifter\\Binaries\\Win64\\Cyberdrifter-Win64-Shipping.exe + executable: "Cyberdrifter\\\\Binaries\\\\Win64\\\\Cyberdrifter-Win64-Shipping.exe" type: vr -'607770': +"607770": installDir: Moonatees launch: - config: oslist: windows executable: Moonatees.exe type: vr -'607780': +"607780": installDir: Toymaker launch: - config: oslist: windows executable: RPG_RT.exe type: none -'607820': +"607820": installDir: Infinite Adventures launch: - config: @@ -288403,57 +283773,57 @@ oslist: linux executable: Infinite Adventures.exe type: default -'607860': +"607860": installDir: Kira launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Kira.exe type: vr -'607880': +"607880": installDir: REK launch: - executable: AWVSSAO_Launcher.exe type: default -'607890': +"607890": installDir: SAOHR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: sao_hr.exe type: none -'6080': +"6080": installDir: Thrillville Off the Rails launch: - executable: Thrillville07.exe -'60800': +"60800": installDir: Numen launch: - executable: numen.exe -'608110': +"608110": installDir: Null Vector launch: - config: oslist: windows executable: Null_Vector.exe type: default -'608120': +"608120": installDir: AFTERBURN launch: - config: oslist: windows executable: AFTERBURN.exe type: default -'608190': +"608190": installDir: FrontierVR launch: - config: oslist: windows executable: FrontierVR.exe type: vr -'608370': +"608370": installDir: Drums Hero launch: - arguments: HTC_VR @@ -288466,60 +283836,60 @@ oslist: windows executable: Drums Hero.exe type: othervr -'608390': {} -'608440': +"608390": {} +"608440": installDir: Volatile Triangle launch: - config: oslist: windows executable: VT.exe type: default -'608510': +"608510": installDir: You Must be 18 or Older to Enter launch: - config: oslist: windows - description: 'You''re alone at home, and you heard about this thing called porn at school. ' + description: "You're alone at home, and you heard about this thing called porn at school. " executable: 18orOlder.exe type: default -'608530': +"608530": installDir: TARTARUS launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TARTARUS.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: TARTARUS.sh type: default -'608540': +"608540": installDir: Blastercell launch: - config: oslist: windows executable: BlasterCell.exe type: default - - arguments: '-steamVR' + - arguments: "-steamVR" config: - osarch: '64' + osarch: "64" oslist: windows description: Play in VR executable: BlasterCell.exe type: vr -'608560': {} -'608580': +"608560": {} +"608580": installDir: EmpiresPC launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: EmpiresPC.exe type: default -'608610': {} -'608630': +"608610": {} +"608630": installDir: PIXEL ZUMBI launch: - config: @@ -288530,7 +283900,7 @@ oslist: linux executable: nw type: default -'608660': +"608660": installDir: Psebay launch: - config: @@ -288543,9 +283913,9 @@ type: default - config: oslist: macos - executable: Psebay.app\\Contents\\MacOS\\Psebay + executable: "Psebay.app\\\\Contents\\\\MacOS\\\\Psebay" type: default -'608670': +"608670": installDir: Miracle Mia launch: - config: @@ -288553,7 +283923,7 @@ description: Launch executable: miracle_mia.exe type: none -'608760': +"608760": installDir: Doodle Devil launch: - config: @@ -288565,11 +283935,11 @@ executable: DoodleDevil.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: DoodleGame type: default -'608800': +"608800": installDir: Guns of Icarus Online launch: - config: @@ -288578,16 +283948,16 @@ type: none - config: oslist: macos - executable: ./GunsOfIcarusOnline.app/Contents/MacOS/GunsOfIcarusOnline + executable: "./GunsOfIcarusOnline.app/Contents/MacOS/GunsOfIcarusOnline" type: none - config: oslist: linux executable: launch.sh type: none - - arguments: '-force-d3d9' + - arguments: "-force-d3d9" config: oslist: windows - description: 'Play Guns of Icarus: Alliance (DirectX 9)' + description: "Play Guns of Icarus: Alliance (DirectX 9)" executable: GunsOfIcarusOnline.exe type: none - config: @@ -288608,57 +283978,57 @@ executable: workshop/launch.sh type: none workingdir: workshop -'608830': {} -'608870': +"608830": {} +"608870": installDir: Phantasma VR launch: - - arguments: '-vrmode openvr' + - arguments: "-vrmode openvr" config: oslist: windows executable: phantasma_vr.exe type: vr - - arguments: '-vrmode oculus' + - arguments: "-vrmode oculus" config: oslist: windows executable: phantasma_vr.exe type: othervr -'608990': +"608990": installDir: The Archotek Project launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ATP.exe type: default - config: - osarch: '64' + osarch: "64" oslist: macos executable: ATP.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: ATP.sh type: default -'6090': +"6090": installDir: Armed and Dangerous launch: - - executable: GameData\\game.exe + - executable: "GameData\\\\game.exe" workingdir: GameData -'609010': +"609010": installDir: Mech League Boxing launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Mech League Boxing.exe type: vr - config: - osarch: '64' + osarch: "64" oslist: windows executable: Mech League Boxing.exe type: othervr -'609100': +"609100": installDir: Gold Rush! 2 launch: - config: @@ -288673,119 +284043,119 @@ oslist: macos executable: Gold Rush! 2.app type: none -'609110': +"609110": installDir: Blazing Chrome launch: - config: oslist: windows executable: Blazing Chrome.exe type: none -'609150': +"609150": installDir: STAR OCEAN - THE LAST HOPE - 4K & Full HD Remaster launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: StarOceanTheLastHope.exe type: default - config: betakey: debug - osarch: '64' + osarch: "64" oslist: windows description: ZS(Debug機能付き) executable: StarOceanTheLastHopeD.exe type: option1 - config: betakey: dev. - osarch: '64' + osarch: "64" oslist: windows description: ZS(Debug機能付き) executable: StarOceanTheLastHopeD.exe type: option1 - config: betakey: qa_debug - osarch: '64' + osarch: "64" oslist: windows description: ZS(Debug機能付き) executable: StarOceanTheLastHopeD.exe type: option1 - config: betakey: debug - osarch: '64' + osarch: "64" oslist: windows description: ZS(Denuvoプロテクト無し) executable: StarOceanTheLastHope_Unprotected.exe type: option3 - config: betakey: dev. - osarch: '64' + osarch: "64" oslist: windows description: ZS(Denuvoプロテクト無し) executable: StarOceanTheLastHope_Unprotected.exe type: option3 - config: betakey: qa_debug - osarch: '64' + osarch: "64" oslist: windows description: ZS(Denuvoプロテクト無し) executable: StarOceanTheLastHope_Unprotected.exe type: option3 - config: betakey: release - osarch: '64' + osarch: "64" oslist: windows description: ZS(Denuvoプロテクト無し) executable: StarOceanTheLastHope_Unprotected.exe type: option3 - config: betakey: qa_release - osarch: '64' + osarch: "64" oslist: windows description: ZS(Denuvoプロテクト無し) executable: StarOceanTheLastHope_Unprotected.exe type: option3 -'609170': +"609170": installDir: Drummer Talent VR launch: - config: oslist: windows executable: DrumGame.exe type: vr -'609180': {} -'609320': +"609180": {} +"609320": installDir: FAR Lone Sails launch: - - arguments: '-platform-steam' + - arguments: "-platform-steam" config: oslist: windows - executable: Game\\FarLoneSails.exe + executable: "Game\\\\FarLoneSails.exe" type: default - - arguments: '-platform-steam' + - arguments: "-platform-steam" config: oslist: macos - executable: Game\\FarLoneSails.app\\Contents\\MacOS\\FarLoneSails + executable: "Game\\\\FarLoneSails.app\\\\Contents\\\\MacOS\\\\FarLoneSails" type: default - - arguments: '-force-glcore -platform-steam' + - arguments: "-force-glcore -platform-steam" config: oslist: macos description: with OpenGL - executable: Game\\FarLoneSails.app\\Contents\\MacOS\\FarLoneSails + executable: "Game\\\\FarLoneSails.app\\\\Contents\\\\MacOS\\\\FarLoneSails" type: option1 -'609340': - installDir: Twilight Phenomena The Lodgers of House 13 Collector's Edition +"609340": + installDir: "Twilight Phenomena The Lodgers of House 13 Collector's Edition" launch: - config: oslist: windows executable: TwilightPhenomena_LodgersOfHouse13_CE.exe type: default -'609360': +"609360": installDir: Gravity Garden launch: - config: oslist: windows executable: Gravity Garden.exe type: vr -'609400': +"609400": installDir: City Rush launch: - config: @@ -288793,7 +284163,7 @@ description: Launch executable: City Rush.exe type: vr -'609410': +"609410": installDir: Iron Tides launch: - config: @@ -288807,12 +284177,12 @@ executable: irontides.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: Linux Default executable: irontides.x86_64 type: default -'609420': +"609420": installDir: Never Give Up launch: - config: @@ -288823,7 +284193,7 @@ oslist: macos executable: NeverGiveUp.app type: default -'609490': +"609490": installDir: Minit launch: - config: @@ -288832,32 +284202,30 @@ type: default - config: oslist: macos - executable: Minit.app\\Contents\\MacOS\\Mac_Runner + executable: "Minit.app\\\\Contents\\\\MacOS\\\\Mac_Runner" type: default - config: oslist: linux description: Play Minit - description_loc: - english: Play Minit executable: runner type: default -'609720': +"609720": installDir: Tyr Chains of Valhalla launch: - config: oslist: windows executable: Tyr Chains of Valhalla.exe type: default - - arguments: '-window-mode exclusive' + - arguments: "-window-mode exclusive" config: oslist: windows - description: 'Tyr: Chains of Valhalla Exclusive Fullscreen' + description: "Tyr: Chains of Valhalla Exclusive Fullscreen" executable: Tyr Chains of Valhalla.exe type: option1 nameLocalized: schinese: 战神:瓦尔哈拉之链 -'609760': - installDir: The Eagle's Heir +"609760": + installDir: "The Eagle's Heir" launch: - config: oslist: windows @@ -288865,21 +284233,21 @@ type: none - config: oslist: macos - executable: The Eagle's Heir.app/Contents/MacOS/The Eagle's Heir + executable: "The Eagle's Heir.app/Contents/MacOS/The Eagle's Heir" type: none - config: oslist: linux executable: TheEaglesHeir type: none -'609850': +"609850": installDir: Slinger VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Slinger VR.exe type: vr -'609920': +"609920": installDir: Hotshot Racing launch: - config: @@ -288888,27 +284256,27 @@ type: default nameLocalized: schinese: 大佬竞速 / Hotshot Racing -'609940': +"609940": installDir: KROSMAGA launch: - - arguments: '-steam:609940' + - arguments: "-steam:609940" config: oslist: windows - executable: 'Ankama Launcher [steam].exe' + executable: "Ankama Launcher [steam].exe" type: default - - arguments: '-steam:609940' + - arguments: "-steam:609940" config: oslist: macos - executable: 'Ankama Launcher [steam].app' + executable: "Ankama Launcher [steam].app" type: default -'609990': +"609990": installDir: BeeFense launch: - config: oslist: windows executable: BeeFense.exe type: default -'6100': +"6100": installDir: Eets launch: - config: @@ -288917,7 +284285,7 @@ - config: oslist: macos executable: Eets.app -'610080': +"610080": installDir: Realm Grinder launch: - config: @@ -288928,40 +284296,40 @@ oslist: macos executable: RealmGrinderDesktop.app type: default -'610090': +"610090": installDir: Gnomelings Migration launch: - - arguments: '-vrmode Oculus' + - arguments: "-vrmode Oculus" executable: Gnomelings_Migration.exe type: othervr - - arguments: '-vrmode OpenVR' + - arguments: "-vrmode OpenVR" executable: Gnomelings_Migration.exe type: vr -'61010': +"61010": installDir: DCS A-10C Warthog launch: - executable: bin/run.exe -'610110': +"610110": installDir: Love Story Letters from the Past launch: - config: oslist: windows executable: Love Story.exe type: default -'610120': +"610120": installDir: Little Kite launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: LittleKite.exe type: default - config: - osarch: '64' + osarch: "64" oslist: macos - executable: LittleKite.app\\Contents\\MacOS\\LittleKite + executable: "LittleKite.app\\\\Contents\\\\MacOS\\\\LittleKite" type: default -'610130': +"610130": installDir: UltraGoodness launch: - config: @@ -288969,10 +284337,10 @@ description: launch executable: nw.exe type: default -'610180': +"610180": installDir: The Jackbox Party Pack 4 launch: - - arguments: '-jbg.config serverUrl=ecast.jackboxgames.com' + - arguments: "-jbg.config serverUrl=ecast.jackboxgames.com" config: oslist: windows description: Launch @@ -288984,15 +284352,15 @@ executable: The Jackbox Party Pack 4.app type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: Launcher.sh type: default -'610190': +"610190": installDir: WARRIORS ALL-STARS launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Config.exe type: none @@ -289000,7 +284368,7 @@ japanese: 無双☆スターズ koreana: 무쌍☆스타즈 tchinese: 無雙☆群星大會串 -'610210': +"610210": installDir: Planetes launch: - config: @@ -289015,8 +284383,8 @@ oslist: linux executable: Planetes_Linux.x86 type: default -'610250': - installDir: Glitch's Trip +"610250": + installDir: "Glitch's Trip" launch: - config: oslist: windows @@ -289027,24 +284395,24 @@ executable: Glitchs Trip.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Glitchs Trip.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Glitchs Trip.x86_64 type: default -'610260': +"610260": installDir: American VR Coasters launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: americancoaster.exe type: vr -'610310': +"610310": installDir: Star Story The Horizon Escape launch: - config: @@ -289055,22 +284423,22 @@ oslist: macos executable: StarStory.app type: none -'610350': +"610350": installDir: Poker Show VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Poker Show VR.exe type: vr -'610360': +"610360": installDir: Zup! Zero launch: - config: oslist: windows executable: Zup! Zero.exe type: default -'610370': +"610370": installDir: Desperados III launch: - config: @@ -289079,13 +284447,13 @@ type: default - arguments: confidential config: - betakey: 'taskforce-testing, closed-beta' + betakey: "taskforce-testing, closed-beta" oslist: windows description: Taskforce Testing executable: Desperados III.exe type: default - config: - betakey: 'milestone, vertical-slice, pre-beta' + betakey: "milestone, vertical-slice, pre-beta" oslist: windows description: Legacy executable: Kartoffel.exe @@ -289100,28 +284468,28 @@ type: default - arguments: fakedlcreleased config: - betakey: 'development, dlc-temp, lqa-dlc, temp, trailer-capture, dlc01, dlc02, dlc03' - osarch: '64' + betakey: "development, dlc-temp, lqa-dlc, temp, trailer-capture, dlc01, dlc02, dlc03" + osarch: "64" oslist: windows description: Desperados III with unlocked DLCs executable: Desperados III.exe type: option1 -'610380': +"610380": installDir: Ratty Catty launch: - executable: rattycatty.exe type: default -'610390': {} -'610410': +"610390": {} +"610410": installDir: Pawarumi launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Pawarumi.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Pawarumi type: default @@ -289133,16 +284501,16 @@ japanese: パワルミ koreana: 파와루미 russian: Паwаруми -'610460': +"610460": installDir: Rise of Balloons launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: Rise of Balloons.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: Rise of Balloons.exe type: default @@ -289150,7 +284518,7 @@ oslist: macos executable: Rise of Balloons.app type: default -'610500': +"610500": installDir: Willy-Nilly Knight launch: - config: @@ -289161,14 +284529,14 @@ oslist: macos executable: WillyNillyKnight.app/Contents/MacOS/WillyNillyKnight type: none -'610550': - installDir: Hidden Expedition The Pearl of Discord Collector's Edition +"610550": + installDir: "Hidden Expedition The Pearl of Discord Collector's Edition" launch: - config: oslist: windows executable: HiddenExpedition_ThePearlOfDiscord_CE.exe type: default -'610560': +"610560": installDir: Tales of the Lumminai launch: - config: @@ -289176,34 +284544,34 @@ description: Launch executable: TOTL.exe type: default -'610570': +"610570": installDir: Paradox Soul launch: - executable: Paradox Soul.exe type: none -'610610': +"610610": installDir: PacaPlus launch: - config: oslist: windows executable: pacaplus.exe type: default -'610620': +"610620": installDir: Too Loud launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Too Loud.exe type: none -'610660': +"610660": installDir: Russian Roads launch: - config: oslist: windows executable: Rassian_Roads.exe type: config -'610670': +"610670": installDir: Alchemyland launch: - config: @@ -289218,7 +284586,7 @@ oslist: macos executable: alchemyland.app type: default -'610680': +"610680": installDir: Starway Fleet launch: - config: @@ -289229,21 +284597,21 @@ oslist: windows executable: Starway Fleet.exe type: vr -'610730': +"610730": installDir: The Chosen Warriors launch: - config: oslist: windows executable: TheChosenWarriors.exe type: default -'610740': +"610740": installDir: SuperCluster Void launch: - config: oslist: windows executable: SuperCluster Void.exe type: default -'610750': +"610750": installDir: Games&Girls launch: - config: @@ -289258,15 +284626,15 @@ oslist: linux executable: Games&Girls.sh type: default -'610780': +"610780": installDir: Crazy Buggy Racing launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: CrazyBuggyRacing.exe type: default -'610810': +"610810": installDir: Your Friend Hana launch: - config: @@ -289279,18 +284647,18 @@ type: none - config: oslist: macos - executable: Your_Friend_Hana.app\\Contents\\MacOS\\Your_Friend_Hana + executable: "Your_Friend_Hana.app\\\\Contents\\\\MacOS\\\\Your_Friend_Hana" type: none -'610840': +"610840": installDir: JASEM Just Another Shooter with Electronic Music launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: JASEM.exe type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: JASEM.x86_64 type: none @@ -289298,49 +284666,48 @@ oslist: macos executable: JASEM.app type: none -'610860': +"610860": installDir: Shogo Mobile Armor Division launch: - executable: Start.exe type: default -'610900': +"610900": installDir: Sumatra Fate of Yandi launch: - executable: Sumatra Fate of Yandi.exe type: default - executable: winsetup.exe type: config -'610930': {} -'610940': +"610930": {} +"610940": installDir: iStorm launch: - - arguments: >- - -ini:UDKUI:UTGame.GFxUDKFrontEnd.OutSideVersion=0,UTGame.HX_LoginGUI.LoginType=3,-ini:UDKEngine:URL.GameName=iStorm,Engine.Engine.Language=INT,OnlineSubsystemSteamworks.OnlineSubsystemSteamworks.bEnableSteam=true + - arguments: "-ini:UDKUI:UTGame.GFxUDKFrontEnd.OutSideVersion=0,UTGame.HX_LoginGUI.LoginType=3,-ini:UDKEngine:URL.GameName=iStorm,Engine.Engine.Language=INT,OnlineSubsystemSteamworks.OnlineSubsystemSteamworks.bEnableSteam=true" config: oslist: windows - executable: Binaries\\Win32\\Client.exe + executable: "Binaries\\\\Win32\\\\Client.exe" type: none -'610960': +"610960": installDir: ROR launch: - config: oslist: windows executable: ROR.exe type: default -'610980': +"610980": installDir: The Midnight Sanctuary launch: - executable: Garan_VR.exe type: none - - arguments: '-startMode 1' + - arguments: "-startMode 1" description: VR Mode executable: Garan_VR.exe type: vr -'61100': +"61100": installDir: Lucid launch: - executable: Lucid.exe -'611040': +"611040": installDir: Tube Tycoon launch: - config: @@ -289351,69 +284718,69 @@ oslist: windows executable: Tube Tycoon.exe type: default -'611050': +"611050": installDir: Moriarty Endgame VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: MoriartyEndgameVR.exe type: vr -'611060': +"611060": installDir: ECHOPLEX launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Echoplex.exe type: default - config: - osarch: '64' + osarch: "64" oslist: macos executable: Echoplex.app type: default -'611080': - installDir: Gappo's Legacy VR +"611080": + installDir: "Gappo's Legacy VR" launch: - config: oslist: windows description: Default executable: Gappos Legacy VR.exe type: vr -'611090': - installDir: Boofle's Home +"611090": + installDir: "Boofle's Home" launch: - config: oslist: windows executable: boofles-house.exe type: vr -'611120': +"611120": installDir: IKEA VR Pancake Kitchen launch: - - arguments: '-DEFENGINEINI=\"..\\\\..\\\\..\\\\Config\\\\NA_TORHAMN_Game.ini\"' + - arguments: "-DEFENGINEINI=\\\"..\\\\\\\\..\\\\\\\\..\\\\\\\\Config\\\\\\\\NA_TORHAMN_Game.ini\\\"" config: - osarch: '64' + osarch: "64" oslist: windows description: North America executable: VR3_Part1.exe type: vr - - arguments: '-culture=zh-Hans' + - arguments: "-culture=zh-Hans" config: betakey: unofficial - osarch: '64' + osarch: "64" oslist: windows description: Chinese edition executable: VR3_Part1.exe type: vr - - arguments: '-DEFENGINEINI=\"..\\\\..\\\\..\\\\Config\\\\EU_TORHAMN_Game.ini\"' + - arguments: "-DEFENGINEINI=\\\"..\\\\\\\\..\\\\\\\\..\\\\\\\\Config\\\\\\\\EU_TORHAMN_Game.ini\\\"" config: - osarch: '64' + osarch: "64" oslist: windows description: Other Countries executable: VR3_Part1.exe type: vr -'611140': +"611140": installDir: Dark Passenger launch: - config: @@ -289428,54 +284795,54 @@ oslist: macos executable: DarkPassengerMac.app type: default -'611160': +"611160": installDir: Karnage Chronicles launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: KarnageVR.exe type: vr -'611180': +"611180": installDir: Super Street launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Play Super Street executable: SuperStreet.exe type: default -'611190': +"611190": installDir: rougeshift launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Rogue Shift.exe type: default -'611200': {} -'611220': {} -'611230': +"611200": {} +"611220": {} +"611230": installDir: Heathen Game launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: bin/win_x64_release/Heathen.exe type: default -'611260': +"611260": installDir: MadMachines launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: MadMachines.exe type: default -'611300': +"611300": installDir: Task Force launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TaskForce.exe type: default @@ -289485,71 +284852,71 @@ type: default - config: oslist: macos - executable: TaskForce.app\\Contents\\MacOS\\TaskForce + executable: "TaskForce.app\\\\Contents\\\\MacOS\\\\TaskForce" type: default -'611320': +"611320": installDir: Think To Die 3 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ThinkToDie3_Win_64.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: ThinkToDie3_Win_32.exe type: default - config: - osarch: '64' + osarch: "64" oslist: macos - executable: Contents\\MacOS\\TTD3-Mac64 + executable: "Contents\\\\MacOS\\\\TTD3-Mac64" type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: ThinkToDie3_Linux64.x86_64 type: default -'611340': {} -'611350': +"611340": {} +"611350": installDir: Evil_Tag launch: - config: oslist: windows executable: Evil_Tag.exe type: default -'611360': +"611360": installDir: VideoHorrorSociety launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: VideoHorrorSociety.exe type: default -'611390': - installDir: Anicon - Animal Complex - Sheep's Path +"611390": + installDir: "Anicon - Animal Complex - Sheep's Path" launch: - config: oslist: windows executable: anicon-sheep.exe type: none -'611500': +"611500": installDir: quakechampions launch: - config: oslist: windows - executable: client\\bin\\pc\\QuakeChampions.exe + executable: "client\\\\bin\\\\pc\\\\QuakeChampions.exe" type: none - workingdir: client\\bin\\pc -'611530': {} -'611620': + workingdir: "client\\\\bin\\\\pc" +"611530": {} +"611620": installDir: TheNightfall launch: - config: oslist: windows executable: TheNightfall.exe type: default -'611630': +"611630": installDir: Grave Chase launch: - config: @@ -289558,43 +284925,43 @@ type: default - config: oslist: macos - executable: GraveChase.app\\Contents\\MacOS\\GraveChase + executable: "GraveChase.app\\\\Contents\\\\MacOS\\\\GraveChase" type: default - config: oslist: linux executable: GraveChase.x86 type: default -'611640': +"611640": installDir: Mono launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Mono.exe type: default -'611660': +"611660": installDir: Fallout 4 VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Fallout4VR.exe type: vr -'611670': +"611670": installDir: SkyrimVR launch: - config: - osarch: '64' + osarch: "64" executable: SkyrimVR.exe type: vr -'611690': +"611690": installDir: Invicta Beam launch: - config: oslist: windows executable: Invicta Beam.exe type: default -'611710': +"611710": installDir: Kaiju Big Battel Fighto Fantasy launch: - config: @@ -289612,30 +284979,30 @@ description: Launch executable: kaiju type: default -'611720': +"611720": installDir: PractisimVR launch: - config: oslist: windows executable: practisimvr.exe type: vr -'611730': +"611730": installDir: Galactic Feud launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: GFGame.exe type: none -'611750': +"611750": installDir: Welcome to Hanwell launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: WelcomeToHanwell.exe type: default -'611760': +"611760": installDir: DontEscape launch: - config: @@ -289646,7 +285013,7 @@ oslist: macos executable: dontescape.app type: none -'611770': +"611770": installDir: Void Source launch: - config: @@ -289654,12 +285021,10 @@ executable: Void Source.exe type: default - description: inventory test - description_loc: - english: inventory test executable: Steamworks_23 Void Source inventory test.exe type: option1 -'611780': {} -'611790': +"611780": {} +"611790": installDir: House Party launch: - config: @@ -289667,43 +285032,41 @@ description: Play executable: HouseParty.exe type: none -'611800': +"611800": installDir: Jidousha Shakai launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: jshakai.exe type: default -'611810': +"611810": installDir: THE LAST HUNT launch: - config: oslist: windows executable: THE LAST HUNT.exe type: default -'611820': {} -'611830': +"611820": {} +"611830": installDir: Park Bound launch: - - arguments: '-jar -Xms256m -XX:MetaspaceSize=64M ParkBound' + - arguments: "-jar -Xms256m -XX:MetaspaceSize=64M ParkBound" config: - osarch: '32' + osarch: "32" oslist: windows - executable: jre\\bin\\javaw.exe + executable: "jre\\\\bin\\\\javaw.exe" type: default - - arguments: '-jar -Xms256m -server -XX:+TieredCompilation -XX:MetaspaceSize=64M -XX:CompileThreshold=1500 ParkBound' + - arguments: "-jar -Xms256m -server -XX:+TieredCompilation -XX:MetaspaceSize=64M -XX:CompileThreshold=1500 ParkBound" config: - osarch: '64' + osarch: "64" oslist: linux - executable: jre\\bin\\java + executable: "jre\\\\bin\\\\java" type: default - - arguments: >- - -jar -Dorg.lwjgl.system.allocator=system -Xms256m -XX:+TieredCompilation -XX:MetaspaceSize=64M - -XX:CompileThreshold=1500 -XstartOnFirstThread ParkBound + - arguments: "-jar -Dorg.lwjgl.system.allocator=system -Xms256m -XX:+TieredCompilation -XX:MetaspaceSize=64M -XX:CompileThreshold=1500 -XstartOnFirstThread ParkBound" config: oslist: macos - executable: jre\\bin\\java + executable: "jre\\\\bin\\\\java" type: default - config: betakey: debug @@ -289719,76 +285082,76 @@ type: option1 - config: betakey: debug - osarch: '64' + osarch: "64" oslist: linux description: Park Bound with debug logging (Linux) executable: linux_debug.sh type: option1 - config: betakey: debug - osarch: '64' + osarch: "64" oslist: macos description: Park Bound with debug logging (Mac) executable: mac_debug.sh type: option1 - - arguments: '-jar -Xms256m -XX:MetaspaceSize=64M ParkBound' + - arguments: "-jar -Xms256m -XX:MetaspaceSize=64M ParkBound" config: betakey: debug - osarch: '64' + osarch: "64" oslist: windows description: Park Bound (x32) - executable: jre\\bin\\javaw.exe + executable: "jre\\\\bin\\\\javaw.exe" type: option1 - - arguments: '-jar -Xms256m -XX:MetaspaceSize=64M ParkBound' + - arguments: "-jar -Xms256m -XX:MetaspaceSize=64M ParkBound" config: - osarch: '64' + osarch: "64" oslist: windows - executable: jre_x64\\bin\\javaw.exe + executable: "jre_x64\\\\bin\\\\javaw.exe" type: default -'611850': +"611850": installDir: Tragedy of Prince Rupert launch: - config: oslist: windows executable: topr.exe type: none -'611860': +"611860": installDir: Aborigenus launch: - config: oslist: windows executable: Aborigenus_version_3.exe type: none -'611960': +"611960": installDir: PilamSky launch: - config: oslist: windows executable: PilamSky.exe type: default -'611970': +"611970": installDir: TimeToDie launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ttd.exe type: vr -'611980': +"611980": installDir: Oik 2 launch: - config: oslist: windows executable: Oik 2.exe type: none -'6120': +"6120": installDir: Shank launch: - config: oslist: windows description: Shank - executable: bin\\Shank.exe - workingdir: bin\\ + executable: "bin\\\\Shank.exe" + workingdir: "bin\\\\" - config: oslist: macos description: Shank Mac @@ -289797,29 +285160,29 @@ oslist: linux description: Shank Linux executable: Shank -'612010': +"612010": installDir: DuelVR launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: DuelVR.exe type: vr -'612020': +"612020": installDir: Zombidle launch: - config: oslist: windows executable: Zombidle.exe type: default -'612030': +"612030": installDir: Harvest Simulator VR launch: - config: oslist: windows executable: Harvest Simulator VR.exe type: vr -'612040': +"612040": installDir: Duel on Board launch: - config: @@ -289833,14 +285196,14 @@ nameLocalized: schinese: 海上神枪手 tchinese: 海上神槍手 -'612050': +"612050": installDir: VRIQ launch: - config: oslist: windows executable: VRIQ.exe type: vr -'612060': +"612060": installDir: Indie Dream launch: - config: @@ -289851,8 +285214,8 @@ oslist: macos executable: Mac_20190720.app type: default -'612070': - installDir: Kio's Adventure +"612070": + installDir: "Kio's Adventure" launch: - config: oslist: windows @@ -289860,12 +285223,12 @@ type: default - config: oslist: macos - executable: game.app\\Contents\\MacOS\\game + executable: "game.app\\\\Contents\\\\MacOS\\\\game" type: default nameLocalized: schinese: Kio的人间冒险 tchinese: Kio的人間冒險 -'612100': +"612100": installDir: TheseNightsInCairo launch: - config: @@ -289880,7 +285243,7 @@ oslist: linux executable: These_nights_in_Cairo.sh type: default -'612110': +"612110": installDir: Sweet fantasy launch: - config: @@ -289898,36 +285261,36 @@ description: lin launch executable: SweetFantasy.sh type: default -'612120': - installDir: Darwin's bots +"612120": + installDir: "Darwin's bots" launch: - config: oslist: windows - executable: Darwin's bot Episode 1.exe + executable: "Darwin's bot Episode 1.exe" type: vr -'612130': {} -'612140': +"612130": {} +"612140": installDir: Weebish Mines launch: - config: oslist: windows executable: Weebish Mines.exe type: default -'612150': +"612150": installDir: Conran launch: - config: oslist: windows executable: Conran.exe type: default -'612160': +"612160": installDir: Splinter Zone launch: - config: oslist: windows executable: Splinter_Zone.exe type: default -'612170': +"612170": installDir: One Eyed Kutkh launch: - config: @@ -289940,48 +285303,48 @@ type: none - config: oslist: macos - executable: OneEyedKutkh.app\\Contents\\MacOS\\OneEyedKutkh + executable: "OneEyedKutkh.app\\\\Contents\\\\MacOS\\\\OneEyedKutkh" type: none -'612180': {} -'612190': +"612180": {} +"612190": installDir: Fastigium Dead End launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: \\fastigium\\Binaries\\Win64\\fastigium.exe + executable: "\\\\fastigium\\\\Binaries\\\\Win64\\\\fastigium.exe" type: vr -'61220': +"61220": installDir: Battle Los Angeles launch: - - executable: bin\\BattleLA.exe + - executable: "bin\\\\BattleLA.exe" workingdir: bin -'612220': +"612220": installDir: Chaos Edge launch: - config: oslist: windows executable: Game.exe type: vr -'612250': +"612250": installDir: EastwoodVR launch: - config: oslist: windows executable: EastwoodVR.exe type: vr -'612290': +"612290": installDir: ASTA Online launch: - config: oslist: windows executable: AstaPatch.exe type: default -'61230': +"61230": installDir: Red Bull X-Fighters launch: - executable: xfighters.exe -'612300': +"612300": installDir: Sudden Strike Gold launch: - config: @@ -289990,7 +285353,7 @@ type: default - executable: qed.exe type: editor -'612310': +"612310": installDir: GORB launch: - config: @@ -290005,7 +285368,7 @@ oslist: macos executable: GORBMAC.app type: none -'612370': +"612370": installDir: PAKO2 launch: - config: @@ -290016,34 +285379,34 @@ oslist: macos executable: PAKO2.app type: none -'612380': +"612380": installDir: Cryptocracy launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: cryptocracy.exe type: default - config: - osarch: '64' + osarch: "64" oslist: macos - executable: Cryptocracy.app\\Contents\\MacOS\\Cryptocracy + executable: "Cryptocracy.app\\\\Contents\\\\MacOS\\\\Cryptocracy" type: default -'612390': +"612390": installDir: Dandara launch: - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" config: oslist: windows executable: Dandara.exe type: default - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" config: oslist: macos executable: Dandara.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Dandara.x86 type: default @@ -290051,23 +285414,23 @@ oslist: linux executable: Dandara.x86_64 type: default -'612400': {} -'612430': {} -'612440': +"612400": {} +"612430": {} +"612440": installDir: The Cable Center - Virtual Archive launch: - config: oslist: windows executable: The Cable Center - Virtual Archive.exe type: vr -'612470': +"612470": installDir: Bio Inc. Redemption launch: - config: oslist: windows executable: BioIncRedemption.exe type: default -'612510': +"612510": installDir: The Far Frontier launch: - config: @@ -290082,7 +285445,7 @@ oslist: linux executable: TheFarFrontier.x86_64 type: none -'612520': +"612520": installDir: Sudden Strike 2 Gold launch: - config: @@ -290091,7 +285454,7 @@ type: default - executable: edit3.exe type: editor -'612540': +"612540": installDir: Sudden Strike 3 launch: - config: @@ -290100,7 +285463,7 @@ type: default - executable: DescEditor.exe type: editor -'612570': +"612570": installDir: Fort Triumph launch: - config: @@ -290112,39 +285475,39 @@ executable: Fort Triumph.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Fort Triumph.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Fort Triumph.x86_64 type: default -'612590': +"612590": installDir: Mouse Playhouse launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: MousePlayhouse.exe type: vr -'612600': +"612600": installDir: Drone Fighters launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: VR Mode executable: DroneFightersVR.exe type: vr - config: - osarch: '64' + osarch: "64" oslist: windows description: Non-VR PC Mode executable: DroneFightersVR.exe type: default -'612610': +"612610": installDir: Bombinator launch: - config: @@ -290157,19 +285520,19 @@ executable: runme.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: runme.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: runme.x86_64 type: default -'612620': +"612620": installDir: Detective Butler Maiden Voyage Murder launch: - - arguments: '-s ./saves' + - arguments: "-s ./saves" config: oslist: windows executable: DetectiveButler.exe @@ -290179,24 +285542,24 @@ executable: DetectiveButler.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: run-x64.sh type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: run-x86.sh type: default -'612640': +"612640": installDir: Dunk Lords launch: - config: oslist: windows executable: Dunk Lords.exe type: default -'612660': {} -'612670': +"612660": {} +"612670": installDir: Moonfall launch: - config: @@ -290204,53 +285567,53 @@ executable: Moonfall.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Moonfall.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Moonfall.x86_64 type: default -'612720': +"612720": installDir: SÆLIG launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SAELIG.exe type: default - config: oslist: macos - executable: saelig.app\\Contents\\MacOS\\SAELIG + executable: "saelig.app\\\\Contents\\\\MacOS\\\\SAELIG" type: default - config: oslist: linux executable: SAELIG.x86_64 type: default -'612740': +"612740": installDir: Bokida - Heartfelt Reunion launch: - config: oslist: windows executable: Bokida - Heartfelt Reunion.exe type: default -'612750': +"612750": installDir: Scorbvr launch: - config: oslist: windows executable: scorbvr.exe type: vr -'612790': +"612790": installDir: INFINITI_VR launch: - config: oslist: windows executable: Infiniti_VR.exe type: vr -'612810': +"612810": installDir: VALIANT KNIGHTS Typing Battle launch: - config: @@ -290271,58 +285634,58 @@ oslist: macos executable: VALIANT_KNIGHTS_Typing_Battle.app type: default -'612820': +"612820": installDir: Fallen Legion launch: - executable: fallenlegion-rtg.exe type: default -'612840': +"612840": installDir: Boxplosion launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: boxplosion.exe type: vr -'612880': +"612880": installDir: Wolfenstein.II.The.New.Colossus launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Normal executable: NewColossus_x64vk.exe type: default - arguments: +com_safemode 1 config: - osarch: '64' + osarch: "64" oslist: windows - description: 'Wolfenstein II: The New Colossus (Safe Mode)' + description: "Wolfenstein II: The New Colossus (Safe Mode)" executable: NewColossus_x64vk.exe type: option1 nameLocalized: - german: 'Wolfenstein II: The New Colossus International Version' -'612890': + german: "Wolfenstein II: The New Colossus International Version" +"612890": installDir: Link Twin launch: - config: oslist: windows executable: LinkTwin.exe type: default -'612930': +"612930": installDir: Fight of Gods launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: FOG.exe type: none - config: - osarch: '32' + osarch: "32" oslist: windows executable: FOG.exe type: none -'613010': +"613010": installDir: Secret in Story launch: - config: @@ -290337,20 +285700,20 @@ oslist: linux executable: SecretInStory.x86 type: none -'613020': +"613020": installDir: Gem Hunter launch: - executable: Gem Hunter.exe type: vr -'613040': +"613040": installDir: A Lost Room launch: - config: oslist: windows executable: ALostRoom.exe type: vr -'613050': {} -'61310': +"613050": {} +"61310": installDir: Fractal launch: - config: @@ -290361,41 +285724,35 @@ oslist: macos description: Mac executable: Fractal.app -'613100': +"613100": installDir: House Flipper launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: HouseFlipper.exe type: default - - arguments: '-force-feature-level-10-0' + - arguments: "-force-feature-level-10-0" config: - osarch: '64' + osarch: "64" oslist: windows - description: 'HF (use if first option doesn''t work, old Dx10)' - description_loc: - english: 'HF (use if first option doesn''t work, old Dx10)' + description: "HF (use if first option doesn't work, old Dx10)" executable: HouseFlipper.exe type: option1 - config: oslist: macos executable: HouseFlipper.app type: default - - arguments: '-force-glcore' + - arguments: "-force-glcore" config: oslist: macos description: House Flipper (OpenGL) - description_loc: - english: House Flipper (OpenGL) executable: HouseFlipper.app type: option1 - - arguments: '--disable-reflection-probes' + - arguments: "--disable-reflection-probes" config: oslist: windows description: HF (use when experiencing black glitches) - description_loc: - english: HF (use when experiencing black glitches) executable: HouseFlipper.exe type: option1 nameLocalized: @@ -290404,7 +285761,7 @@ russian: Хаус Флиппер schinese: 房产达人 tchinese: 房產達人 -'613120': +"613120": installDir: Tank Battle East Front launch: - config: @@ -290415,42 +285772,42 @@ oslist: macos executable: TankBattleEastFront.app type: none -'613130': +"613130": installDir: Mega Overload launch: - config: oslist: windows executable: Mega Overload.exe type: vr - - arguments: '-ArcadeMode' + - arguments: "-ArcadeMode" config: oslist: windows description: Mega Overload (Arcade Mode) executable: Mega Overload.exe type: vr -'613190': +"613190": installDir: Unworthy launch: - config: oslist: windows executable: Unworthy.exe type: default -'613200': +"613200": installDir: Dead Days launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: DeadDays.exe type: vr -'613210': +"613210": installDir: BlobCat launch: - config: oslist: windows executable: blobcat.exe type: default -'613240': +"613240": installDir: Stonekeep launch: - config: @@ -290461,45 +285818,45 @@ oslist: windows executable: Launch Settings.bat type: config - - arguments: '-conf \"./dosboxStonekeep.conf\" -conf \"./dosboxStonekeep_single.conf\" -noconsole' + - arguments: "-conf \\\"./dosboxStonekeep.conf\\\" -conf \\\"./dosboxStonekeep_single.conf\\\" -noconsole" config: oslist: macos executable: DOSBox/dosbox.app/Contents/MacOS/DOSBox type: default - - arguments: '-conf \"./dosboxStonekeep.conf\" -conf \"./dosboxStonekeep_single.conf\" -noconsole' + - arguments: "-conf \\\"./dosboxStonekeep.conf\\\" -conf \\\"./dosboxStonekeep_single.conf\\\" -noconsole" config: oslist: linux executable: dosbox/dosbox type: default -'613250': +"613250": installDir: Keyboard Killer launch: - config: oslist: windows executable: Keyboard Killer.exe type: default -'613270': +"613270": installDir: Dinosis Survival launch: - config: oslist: windows executable: Dinosis.exe type: default -'613330': +"613330": installDir: BlackjackBailey launch: - config: oslist: windows executable: BlackjackBailey.exe type: vr -'613350': - installDir: Punished Talents Seven Muses Collector's Edition +"613350": + installDir: "Punished Talents Seven Muses Collector's Edition" launch: - config: oslist: windows executable: PunishedTalents_SevenMuses_CE.exe type: default -'613370': +"613370": installDir: Upside-Down Dimensions launch: - config: @@ -290507,7 +285864,7 @@ description: Launch Game executable: upside-down dimensions.exe type: default -'613390': +"613390": installDir: DUNGEONS OF CHAOS launch: - config: @@ -290522,21 +285879,21 @@ oslist: linux executable: DoC.x86 type: default -'613400': +"613400": installDir: Sakeretsu launch: - config: oslist: windows executable: Sakeretsu.exe type: default -'613410': +"613410": installDir: Delphinia Chronicle launch: - config: oslist: windows executable: DelphiniaChronicle.exe type: default -'613420': +"613420": installDir: BOROS launch: - config: @@ -290551,14 +285908,14 @@ oslist: linux executable: Boros.x86 type: default -'613450': +"613450": installDir: Please Knock on My Door launch: - config: oslist: windows executable: PKoMD.exe type: none -'613470': +"613470": installDir: The Last Wind Monk launch: - config: @@ -290570,33 +285927,33 @@ executable: The Last Wind Monk.app/Contents/MacOS/The Last Wind Monk type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: The Last Wind Monk.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: The Last Wind Monk.x86_64 type: default -'613550': +"613550": installDir: Cerevrum launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Cerevrum.exe type: vr -'613580': +"613580": installDir: The DRG Initiative launch: - arguments: +gm_netsec_enable 0 config: - osarch: '64' + osarch: "64" oslist: windows - executable: Bin64.Release\\DRG.exe + executable: "Bin64.Release\\\\DRG.exe" type: default -'613590': +"613590": installDir: Dungeon Of Zaar launch: - config: @@ -290620,14 +285977,14 @@ description: Dungeon of Zaar - Private Beta executable: DungeonOfZaarBeta.app type: default -'613610': +"613610": installDir: Silver Island launch: - config: oslist: windows executable: Silver Island.exe type: none -'613620': +"613620": installDir: Hoverloop launch: - config: @@ -290635,37 +285992,37 @@ description: Play an Early Access build of Hoverloop executable: Hoverloop.exe type: default -'613670': +"613670": installDir: The Chronicles of Dragon Wing - Reborn launch: - config: oslist: windows executable: bin/lybnsClient.exe type: default -'613730': +"613730": installDir: Need For Drink launch: - config: oslist: windows executable: needfordrink.exe type: none -'613790': +"613790": installDir: RED CUBE VR launch: - config: oslist: windows executable: redcubevr.exe type: vr -'613800': +"613800": installDir: Space Epic Untitled launch: - - arguments: '-player' + - arguments: "-player" config: oslist: windows description: Start Space Epic executable: SpaceEpicUntitled.exe type: default -'613830': +"613830": installDir: Chrono Trigger launch: - config: @@ -290674,25 +286031,25 @@ type: none nameLocalized: japanese: クロノ・トリガー -'613850': +"613850": installDir: Radiant Crusade launch: - - arguments: '-vrmode none' + - arguments: "-vrmode none" config: oslist: windows executable: RadiantCrusade.exe type: default - - arguments: '-vrmode openvr' + - arguments: "-vrmode openvr" config: oslist: windows executable: RadiantCrusade.exe type: vr - - arguments: '-vrmode oculus' + - arguments: "-vrmode oculus" config: oslist: windows executable: RadiantCrusade.exe type: othervr -'613860': +"613860": installDir: Tank On Tank Digital - West Front launch: - config: @@ -290703,44 +286060,44 @@ oslist: macos executable: TankOnTank.app type: default -'613880': +"613880": installDir: Zoo Tycoon launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ZooTycoon.exe type: default -'613900': +"613900": installDir: MOR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: MOR.exe type: vr -'613970': +"613970": installDir: Bravery Rise of The Last Hero launch: - config: oslist: windows executable: Bravery.exe type: default -'613980': +"613980": installDir: Top Secret launch: - config: oslist: windows executable: Top Secret.exe type: vr -'614030': +"614030": installDir: Rhythm Rush! launch: - config: oslist: windows executable: Rhythm Rush.exe type: none -'614050': +"614050": installDir: Clumsy Knight 2 launch: - config: @@ -290751,14 +286108,14 @@ oslist: macos executable: ClumsyKnight2.app type: default -'614090': +"614090": installDir: DeadbeatHeroes launch: - config: oslist: windows executable: DeadbeatHeroes.exe type: default -'614100': +"614100": installDir: Heroes of Paragon launch: - config: @@ -290773,63 +286130,63 @@ oslist: macos executable: Phoenix.app type: default -'614130': +"614130": installDir: Command Modern Air Naval Operations launch: - description: Launch - executable: GameMenu_CCoW\\autorun.exe + executable: "GameMenu_CCoW\\\\autorun.exe" type: default -'614140': +"614140": installDir: Illusoria launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Illusoria.exe type: default -'614150': +"614150": installDir: Train Harder launch: - config: oslist: windows executable: TrainHarder.exe type: vr -'614160': +"614160": installDir: Bug Invaders launch: - config: oslist: windows executable: BugInvaders.exe type: vr -'614250': +"614250": installDir: Carrier launch: - executable: carrier.exe type: default -'614260': +"614260": installDir: Gates Of Nowhere launch: - - arguments: '-vr' + - arguments: "-vr" config: - osarch: '64' + osarch: "64" oslist: windows executable: GatesOfNowhere.exe type: vr -'614380': - installDir: Haunted Manor Lord of Mirrors Collector's Edition +"614380": + installDir: "Haunted Manor Lord of Mirrors Collector's Edition" launch: - config: oslist: windows executable: Haunted Manor - Lord of Mirrors CE.exe type: default -'614460': +"614460": installDir: Amber Tail Adventure launch: - config: oslist: windows executable: ATA.exe type: none -'614530': +"614530": installDir: Garden Tale launch: - config: @@ -290837,7 +286194,7 @@ description: Launch executable: GardenTale.exe type: default -'614550': +"614550": installDir: Golden Panic launch: - config: @@ -290852,25 +286209,25 @@ oslist: linux executable: GoldenPanic type: none - - arguments: '-screen-width 1280 -screen-height 720 -screen-quality Min' + - arguments: "-screen-width 1280 -screen-height 720 -screen-quality Min" config: oslist: windows description: GoldenPanic (reset video settings) executable: GoldenPanic.exe type: option1 - - arguments: '-screen-width 1280 -screen-height 720 -screen-quality Min' + - arguments: "-screen-width 1280 -screen-height 720 -screen-quality Min" config: oslist: macos description: GoldenPanic (reset video settings) executable: GoldenPanic.app type: option1 - - arguments: '-screen-width 1280 -screen-height 720 -screen-quality Min' + - arguments: "-screen-width 1280 -screen-height 720 -screen-quality Min" config: oslist: linux description: GoldenPanic (reset video settings) executable: GoldenPanic type: option1 -'614560': +"614560": installDir: Battleship Bishojo launch: - config: @@ -290879,37 +286236,37 @@ type: default - config: oslist: macos - executable: Battleship_Bishojo-1.0.app\\Contents\\MacOS\\Battleship_Bishojo-1.0 + executable: "Battleship_Bishojo-1.0.app\\\\Contents\\\\MacOS\\\\Battleship_Bishojo-1.0" type: default - config: oslist: linux executable: Battleship_Bishojo-1.0.sh type: default -'614570': +"614570": installDir: Dishonored_DeathOfTheOutsider launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Dishonored_DO.exe type: default - arguments: +net_usePlatformBackend 1 config: betakey: bh-qa playtest hardware localization - osarch: '64' + osarch: "64" oslist: windows - description: 'Dishonored: Death of the Outsider Retail' + description: "Dishonored: Death of the Outsider Retail" executable: Dishonored_DO_x64Retail.exe type: option1 - arguments: +net_usePlatformBackend 1 config: betakey: bh-qa hardware localization - osarch: '64' + osarch: "64" oslist: windows - description: 'Dishonored: Death of the Outsider Release' + description: "Dishonored: Death of the Outsider Release" executable: Dishonored_DO_x64.exe type: option2 -'614630': +"614630": installDir: Tiny Rails launch: - config: @@ -290924,78 +286281,78 @@ betakey: Beta executable: TinyRails.exe type: none -'614650': - installDir: Midnight Calling Anabel Collector's Edition +"614650": + installDir: "Midnight Calling Anabel Collector's Edition" launch: - config: oslist: windows executable: MidnightCalling_Anabel_CE.exe type: default -'614660': +"614660": installDir: Magic Technology launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Magic Technology.exe type: default -'614700': +"614700": installDir: Nightmare Grotto launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: NightmareGrotto.exe type: vr -'614710': +"614710": installDir: Seance The Unquiet (Preview) launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Seance.exe type: vr -'614730': {} -'614770': +"614730": {} +"614770": installDir: Beachhead Desert War launch: - config: oslist: windows executable: BH Desert War.exe type: default -'614810': +"614810": installDir: Heavy Bleakness launch: - config: oslist: windows executable: Heavy Bleakness.exe type: default -'614830': +"614830": installDir: ViveSpray 2 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: vs2.exe type: vr -'614850': +"614850": installDir: PowerFistVR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Powerfist.exe type: vr -'614860': +"614860": installDir: XAOC launch: - config: - osarch: '32' + osarch: "32" oslist: windows - executable: .\\bin\\XAOC_Shipping.exe + executable: ".\\\\bin\\\\XAOC_Shipping.exe" type: default - workingdir: .\\bin\\ -'614880': + workingdir: ".\\\\bin\\\\" +"614880": installDir: Battle for Enlor launch: - config: @@ -291006,14 +286363,14 @@ oslist: linux executable: Battle_for_Enlor/runner type: default -'614890': +"614890": installDir: Cuit launch: - config: oslist: windows executable: Cuit.exe type: default -'614900': +"614900": installDir: Devade launch: - config: @@ -291024,7 +286381,7 @@ oslist: linux executable: Devade.x86 type: none -'614910': +"614910": installDir: monstercakes launch: - config: @@ -291035,11 +286392,11 @@ oslist: linux executable: monstercakes.x86 type: none -'614940': +"614940": installDir: The Misfits launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TheMisfits.exe type: default @@ -291048,16 +286405,16 @@ executable: TheMisfits.app/Contents/MacOS/TheMisfits type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: TheMisfits32.exe type: default - - arguments: '-screen-fullscreen 0' + - arguments: "-screen-fullscreen 0" config: oslist: linux executable: TheMisfits type: default -'614950': +"614950": installDir: Shootout on Cash Island launch: - config: @@ -291065,12 +286422,12 @@ executable: Shootout.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Shootout.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Shootout.x86_64 type: default @@ -291078,22 +286435,22 @@ oslist: macos executable: Shootout.app type: default -'614960': +"614960": installDir: NEONomicon launch: - config: oslist: windows executable: game.exe type: none -'614970': +"614970": installDir: Qbike launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Qbike.exe type: vr -'61500': +"61500": installDir: Age of Wonders launch: - arguments: AoW @@ -291109,11 +286466,11 @@ executable: Quickstart.pdf - description: Editor executable: aowEd.exe -'615010': +"615010": installDir: Runic Rampage launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Runic Rampage.exe type: default @@ -291122,87 +286479,87 @@ executable: Runic Rampage.app/Contents/MacOS/Runic Rampage type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: Runic Rampage.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Runic Rampage.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Runic Rampage.x86_64 type: default - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" config: oslist: windows executable: Runic Rampage.exe type: config - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" config: oslist: macos executable: Runic Rampage.app/Contents/MacOS/Runic Rampage type: config - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" config: - osarch: '32' + osarch: "32" oslist: linux executable: Runic Rampage.x86 type: config - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" config: - osarch: '64' + osarch: "64" oslist: linux executable: Runic Rampage.x86_64 type: config -'615020': +"615020": installDir: King of the World launch: - config: oslist: windows executable: King Of The World.exe type: default -'615050': +"615050": installDir: Burst The Game launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: BurstTheGame415\\Binaries\\Win64\\BurstTheGame.exe + executable: "BurstTheGame415\\\\Binaries\\\\Win64\\\\BurstTheGame.exe" type: default - config: - osarch: '32' + osarch: "32" oslist: windows - executable: BurstTheGame415\\Binaries\\Win32\\BurstTheGame.exe + executable: "BurstTheGame415\\\\Binaries\\\\Win32\\\\BurstTheGame.exe" type: default - config: - osarch: '64' + osarch: "64" oslist: linux - executable: BurstTheGame415\\Binaries\\Linux\\BurstTheGame + executable: "BurstTheGame415\\\\Binaries\\\\Linux\\\\BurstTheGame" type: default - - arguments: '-log' + - arguments: "-log" config: - osarch: '64' + osarch: "64" oslist: linux - executable: BurstTheGame415\\Binaries\\Linux\\BurstTheGameServer + executable: "BurstTheGame415\\\\Binaries\\\\Linux\\\\BurstTheGameServer" type: server - - arguments: '-log' + - arguments: "-log" config: - osarch: '64' + osarch: "64" oslist: windows - executable: BurstTheGame415\\Binaries\\Win64\\BurstTheGameServer.exe + executable: "BurstTheGame415\\\\Binaries\\\\Win64\\\\BurstTheGameServer.exe" type: server -'615070': +"615070": installDir: dallasin3d launch: - config: oslist: windows executable: DealyPlazaPaintball.exe type: vr -'615080': +"615080": installDir: Runaway Train launch: - config: @@ -291217,7 +286574,7 @@ oslist: macos executable: RunawayTrain.app type: none -'615090': +"615090": installDir: Royal Offense launch: - config: @@ -291226,9 +286583,9 @@ type: default - config: oslist: macos - executable: Royal Offense.app\\Contents\\MacOS\\Royal Offense + executable: "Royal Offense.app\\\\Contents\\\\MacOS\\\\Royal Offense" type: none -'61510': +"61510": installDir: Age of Wonders 2 launch: - arguments: AoW2 @@ -291244,36 +286601,36 @@ executable: Quickstart.pdf - description: Editor executable: aow2ed.exe -'615120': +"615120": installDir: COMPOUND launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: compound.exe type: vr -'615150': +"615150": installDir: Twist of Destiny launch: - config: oslist: windows executable: Twist of Destiny.exe type: default -'615160': +"615160": installDir: The Adventures of Alvis launch: - config: oslist: windows executable: The Adventures of Alvis.exe type: none -'615180': +"615180": installDir: Firewood launch: - config: oslist: windows executable: Firewood.exe type: default -'61520': +"61520": installDir: Age of Wonders Shadow Magic launch: - arguments: AoWSM @@ -291289,56 +286646,50 @@ executable: Quickstart.pdf - description: Editor executable: AoWSMEd.exe -'615250': +"615250": installDir: M.A.X. Mechanized Assault & Exploration launch: - config: oslist: windows description: Single Player - description_loc: - english: Single Player executable: Launch M.A.X. Single Player.bat type: option1 - config: oslist: windows description: Network Client - description_loc: - english: Network Client executable: Launch M.A.X. Network Client.bat type: option2 - config: oslist: windows description: Host Server - description_loc: - english: Host Server executable: Launch M.A.X. Host Server.bat type: option3 - - arguments: '-conf \"./dosboxMAX1.conf\" -conf \"./dosboxMAX1_single.conf\" -noconsole' + - arguments: "-conf \\\"./dosboxMAX1.conf\\\" -conf \\\"./dosboxMAX1_single.conf\\\" -noconsole" config: oslist: macos executable: DOSBox/dosbox.app/Contents/MacOS/DOSBox type: default - - arguments: '-conf \"./dosboxMAX1.conf\" -conf \"./dosboxMAX1_single.conf\" -noconsole' + - arguments: "-conf \\\"./dosboxMAX1.conf\\\" -conf \\\"./dosboxMAX1_single.conf\\\" -noconsole" config: oslist: linux executable: dosbox/dosbox type: default -'615270': +"615270": installDir: Star Rage VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ProjectV.exe type: vr -'615330': +"615330": installDir: Happy Penguin VR launch: - config: oslist: windows executable: Happy Penguin.exe type: vr -'615340': +"615340": installDir: Mystic Journey Tri Peaks Solitaire launch: - config: @@ -291349,7 +286700,7 @@ oslist: macos executable: Mystic Journey Tri Peaks Solitaire.app type: none -'615350': +"615350": installDir: Scarlett Mysteries Cursed Child launch: - config: @@ -291358,13 +286709,13 @@ executable: ScarlettMysteries.exe type: none - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: ScarlettMysteries_i386 type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: ScarlettMysteries_amd64 @@ -291374,12 +286725,12 @@ description: Launch executable: mac_steam.app/Contents/MacOS/mac_steam type: none -'615390': +"615390": installDir: Encounter of Galaxies launch: - executable: Scroller.exe type: none -'615400': +"615400": installDir: Make It Rain Love of Money launch: - config: @@ -291390,80 +286741,80 @@ oslist: macos executable: LoveOfMoney.exe type: default -'615460': +"615460": installDir: Bitcoin VR launch: - config: oslist: windows executable: bitcoinvr.exe type: vr -'615490': - installDir: I'm Awesome +"615490": + installDir: "I'm Awesome" launch: - config: oslist: windows - executable: I'mAwesome.exe + executable: "I'mAwesome.exe" type: none - config: oslist: macos executable: ImAwesome.app/Contents/MacOS/ImAwesome type: none -'615530': - installDir: 'Love, Money, Rock-n-Roll' +"615530": + installDir: "Love, Money, Rock-n-Roll" launch: - config: oslist: windows - executable: 'Love, Money, Rock''n''Roll.exe' + executable: "Love, Money, Rock'n'Roll.exe" - config: - osarch: '64' + osarch: "64" oslist: linux executable: run.sh - config: oslist: macos - executable: 'Love, Money, Rock-n-Roll.app' + executable: "Love, Money, Rock-n-Roll.app" - config: - osarch: '32' + osarch: "32" oslist: windows - executable: 'Love, Money, Rock''n''Roll.exe' -'615550': + executable: "Love, Money, Rock'n'Roll.exe" +"615550": installDir: StratoBash launch: - - arguments: '-show-screen-selector -vrmode none' + - arguments: "-show-screen-selector -vrmode none" config: oslist: windows executable: StratoBash.exe type: default - - arguments: '-force-d3d11' + - arguments: "-force-d3d11" config: - osarch: '64' + osarch: "64" oslist: windows executable: StratoBash.exe type: vr - - arguments: '-show-screen-selector -vrmode none' + - arguments: "-show-screen-selector -vrmode none" config: oslist: macos executable: StratoBash.app type: default - - arguments: '-show-screen-selector -vrmode none' + - arguments: "-show-screen-selector -vrmode none" config: - osarch: '32' + osarch: "32" oslist: linux executable: StratoBash.x86 type: default - - arguments: '-show-screen-selector -vrmode none' + - arguments: "-show-screen-selector -vrmode none" config: - osarch: '64' + osarch: "64" oslist: linux executable: StratoBash.x86_64 type: default -'615590': +"615590": installDir: Solaright launch: - config: oslist: windows executable: Solaright.exe type: vr -'615610': +"615610": installDir: orbt xl launch: - config: @@ -291471,40 +286822,40 @@ executable: orbtxl.app type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: orbtxl.x86_64 type: none - config: - osarch: '32' + osarch: "32" oslist: windows executable: orbtxl.exe type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: orbtxl.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: windows executable: orbtxl.exe type: none -'615630': +"615630": installDir: The Sniper VR launch: - executable: The Sniper VR.exe type: vr -'615650': +"615650": installDir: TheProfessorPresentsGotHandles launch: - - arguments: '-force-d3d11-no-singlethreaded' + - arguments: "-force-d3d11-no-singlethreaded" config: - osarch: '64' + osarch: "64" oslist: windows executable: ProfessorGotHandles.exe type: vr -'615670': +"615670": installDir: SOLITUNE launch: - config: @@ -291513,66 +286864,66 @@ executable: Solitune.exe type: none - config: - osarch: '64' + osarch: "64" oslist: macos description: Launch executable: Solitune.app type: none - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: Solitune.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Solitune.x86_64 type: none -'615680': +"615680": installDir: Vagrant Hearts Zero launch: - description: Launch executable: Game.exe type: none -'615700': +"615700": installDir: A Plunge into Darkness launch: - description: Launch executable: Game.exe type: none -'615730': +"615730": installDir: Nancy Drew The Final Scene launch: - config: oslist: windows executable: Game.exe type: none -'615770': +"615770": installDir: Nancy Drew Message in a Haunted Mansion launch: - config: oslist: windows executable: Game.exe type: none -'615780': +"615780": installDir: Nancy Drew Treasure in the Royal Tower launch: - config: oslist: windows executable: game.exe type: none -'615910': +"615910": installDir: KatanaX launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch KatanaX as SteamVR executable: KatanaX.exe type: vr -'615970': +"615970": installDir: Displaced launch: - config: @@ -291583,7 +286934,7 @@ oslist: macos executable: Displaced.app type: default -'61600': +"61600": installDir: Zen Bound 2 launch: - config: @@ -291598,29 +286949,29 @@ oslist: linux description: Linux executable: run_steam.sh -'616000': +"616000": installDir: Riptale launch: - config: oslist: windows - executable: Riptale\\Riptale.exe + executable: "Riptale\\\\Riptale.exe" type: default - config: oslist: linux - executable: Riptale\\runner + executable: "Riptale\\\\runner" type: default - config: oslist: macos - executable: Riptale\\Riptale.app + executable: "Riptale\\\\Riptale.app" type: default -'616030': +"616030": installDir: EventideNight launch: - config: oslist: windows executable: Eventide Night.exe type: default -'616040': +"616040": installDir: Tales of the Tiny Planet launch: - config: @@ -291629,24 +286980,24 @@ type: none - config: oslist: macos - executable: Tiny Planet.app\\Contents\\MacOS\\Tiny Planet + executable: "Tiny Planet.app\\\\Contents\\\\MacOS\\\\Tiny Planet" type: none -'616050': +"616050": installDir: Hello inc VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ShurikenTest_Pack.exe type: vr -'616090': +"616090": installDir: Twilight Spirits launch: - config: oslist: windows executable: launch.exe type: default -'616110': +"616110": installDir: SPACEPLAN launch: - config: @@ -291659,14 +287010,14 @@ description: Launch SPACEPLAN executable: SPACEPLAN.app type: default -'616220': +"616220": installDir: Hide vs. Seek launch: - config: oslist: windows executable: HideAndSeek.exe type: default -'616240': +"616240": installDir: Premium Pool Arena launch: - config: @@ -291681,7 +287032,7 @@ oslist: linux executable: PremiumPool.x86 type: none -'616250': +"616250": installDir: Crystalline launch: - config: @@ -291694,21 +287045,21 @@ description: Mac Launch executable: Crystalline.app type: default -'616330': +"616330": installDir: Dig-A-Boo launch: - config: oslist: windows executable: DIG-A-BOO.exe type: default -'616360': {} -'616420': {} -'616490': +"616360": {} +"616420": {} +"616490": installDir: Post War Dreams launch: - executable: WindowsNoEditor/PostWarDreams.exe type: none -'616520': +"616520": installDir: Cheap Golf launch: - config: @@ -291723,22 +287074,22 @@ oslist: linux executable: CheapGolf type: default -'616560': +"616560": installDir: Ultimate Epic Battle Simulator launch: - config: oslist: windows executable: UEBS.exe type: none -'616570': +"616570": installDir: Gritty Bit VR launch: - config: oslist: windows executable: game.exe type: vr -'616580': {} -'616610': +"616580": {} +"616610": installDir: GetMeBro! launch: - config: @@ -291747,16 +287098,16 @@ type: none - config: oslist: macos - executable: mac.app\\Contents\\MacOS\\mac + executable: "mac.app\\\\Contents\\\\MacOS\\\\mac" type: default -'616620': +"616620": installDir: Forest Fortress launch: - config: oslist: windows executable: Forest Fortress.exe type: default -'616640': +"616640": installDir: B-12 launch: - config: @@ -291768,46 +287119,46 @@ executable: B-12.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: B-12.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: B-12.x86_64 type: default -'616650': +"616650": installDir: RetroFighterVR launch: - - arguments: '--vr' + - arguments: "--vr" config: - osarch: '64' + osarch: "64" oslist: windows executable: RetroFighter.exe type: vr -'616660': +"616660": installDir: VR Coaster Extreme launch: - config: oslist: windows executable: VRCoasterExtreme.exe type: vr -'616680': +"616680": installDir: Monster Reapers VR launch: - config: oslist: windows executable: MonsterReapersVR.exe type: vr -'616690': +"616690": installDir: BRKÖUT launch: - config: oslist: windows executable: brkout.exe type: none -'616700': +"616700": installDir: Rage of Car Force launch: - config: @@ -291815,7 +287166,7 @@ executable: RageOfCarForce.exe type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: RageOfCarForce.x86_64 type: default @@ -291824,36 +287175,36 @@ executable: CarForce.app type: default nameLocalized: - arabic: 'Rage of Car Force: Car Shooter & Twisted Action' - brazilian: 'Rage of Car Force: Car Shooter & Twisted Action' - bulgarian: 'Rage of Car Force: Car Shooter & Twisted Action' - czech: 'Rage of Car Force: Car Shooter & Twisted Action' - danish: 'Rage of Car Force: Car Crashing Games' - dutch: 'Rage of Car Force: Car Crashing Games' - english: 'Rage of Car Force: Car Crashing Games' - finnish: 'Rage of Car Force: Car Crashing Games' - french: 'Car Force: Combat de Voitures PvP' - german: 'Car Force: PvP-Autokampf' - greek: 'Rage of Car Force: Car Shooter & Twisted Action' - hungarian: 'Rage of Car Force: Car Crashing Games' - italian: 'Car Force: PvP Car Fight' - japanese: 'Rage of Car Force: 車の戦争ゲーム' - koreana: 'Car Force: PVP 자동차 싸움' - latam: 'Rage of Car Force: Car Shooter & Twisted Action' - norwegian: 'Rage of Car Force: Car Crashing Games' - polish: 'Car Force: Walka Samochodów PvP' - portuguese: 'Rage of Car Force: Car Crashing Games' - romanian: 'Rage of Car Force: Car Shooter & Twisted Action' - russian: 'Rage of Car Force: Car Crashing Games' - schinese: 'Rage of Car Force: 汽车大战动作游戏' - spanish: 'Rage of Car Force: PvP Car Fight' - swedish: 'Rage of Car Force: Car Crashing Games' - tchinese: 'Rage of Car Force: 動作戰爭遊戲' - thai: 'Rage of Car Force: เกมยิงปืนรถ' - turkish: 'Rage of Car Force: Car Shooter & Twisted Action' - ukrainian: 'Rage of Car Force: PvP Экшен Сражения на Тачках Онлайн' - vietnamese: 'Rage of Car Force: Car Shooter & Twisted Action' -'616740': + arabic: "Rage of Car Force: Car Shooter & Twisted Action" + brazilian: "Rage of Car Force: Car Shooter & Twisted Action" + bulgarian: "Rage of Car Force: Car Shooter & Twisted Action" + czech: "Rage of Car Force: Car Shooter & Twisted Action" + danish: "Rage of Car Force: Car Crashing Games" + dutch: "Rage of Car Force: Car Crashing Games" + english: "Rage of Car Force: Car Crashing Games" + finnish: "Rage of Car Force: Car Crashing Games" + french: "Car Force: Combat de Voitures PvP" + german: "Car Force: PvP-Autokampf" + greek: "Rage of Car Force: Car Shooter & Twisted Action" + hungarian: "Rage of Car Force: Car Crashing Games" + italian: "Car Force: PvP Car Fight" + japanese: "Rage of Car Force: 車の戦争ゲーム" + koreana: "Car Force: PVP 자동차 싸움" + latam: "Rage of Car Force: Car Shooter & Twisted Action" + norwegian: "Rage of Car Force: Car Crashing Games" + polish: "Car Force: Walka Samochodów PvP" + portuguese: "Rage of Car Force: Car Crashing Games" + romanian: "Rage of Car Force: Car Shooter & Twisted Action" + russian: "Rage of Car Force: Car Crashing Games" + schinese: "Rage of Car Force: 汽车大战动作游戏" + spanish: "Rage of Car Force: PvP Car Fight" + swedish: "Rage of Car Force: Car Crashing Games" + tchinese: "Rage of Car Force: 動作戰爭遊戲" + thai: "Rage of Car Force: เกมยิงปืนรถ" + turkish: "Rage of Car Force: Car Shooter & Twisted Action" + ukrainian: "Rage of Car Force: PvP Экшен Сражения на Тачках Онлайн" + vietnamese: "Rage of Car Force: Car Shooter & Twisted Action" +"616740": installDir: Cryste the Faith of Fire Vol 1 launch: - config: @@ -291864,30 +287215,30 @@ oslist: macos executable: Cryste the Faith of Fire.app type: default -'616750': +"616750": installDir: 1943 Deadly Desert launch: - config: oslist: windows executable: DeadlyDesert.exe type: none -'616780': {} -'616820': +"616780": {} +"616820": installDir: District Steel launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: DistrictSteel.exe type: vr -'616830': +"616830": installDir: Cartoon Strike launch: - config: oslist: windows executable: Cartoon Strike.exe type: default -'616860': +"616860": installDir: Magic Heroes Save Our Park launch: - config: @@ -291898,7 +287249,7 @@ oslist: macos executable: Magic Heroes.app type: default -'616880': +"616880": installDir: No Stick Shooter launch: - config: @@ -291907,26 +287258,26 @@ type: default - config: oslist: macos - executable: NoStickShooter.app\\Contents\\MacOS\\NoStickShooter + executable: "NoStickShooter.app\\\\Contents\\\\MacOS\\\\NoStickShooter" type: default -'616890': +"616890": installDir: VR Slugger launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: VR Slugger.exe type: vr -'616910': +"616910": installDir: The Zombiest Times launch: - executable: zombiest.exe type: none -'616920': +"616920": installDir: BatMUD launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: BatMUD.exe type: default @@ -291938,68 +287289,68 @@ oslist: macos executable: Contents/MacOS/BatMUD type: default -'61700': +"61700": installDir: Might and Magic Clash of Heroes launch: - executable: ClashOfHeroes.exe -'617020': +"617020": installDir: Omega Pattern launch: - config: - osarch: '64' + osarch: "64" oslist: macos - executable: OP.app\\Contents\\MacOS\\OP + executable: "OP.app\\\\Contents\\\\MacOS\\\\OP" type: none - config: - osarch: '64' + osarch: "64" oslist: windows executable: OP.exe type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: OP.x86_64 type: none -'617030': +"617030": installDir: Landless_Data launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Landless.exe type: default -'617060': +"617060": installDir: Virush launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Virush.exe type: vr -'617160': +"617160": installDir: Home Sweet Home launch: - config: oslist: windows executable: HomeSweetHome.exe type: none -'617170': {} -'617230': +"617170": {} +"617230": installDir: Trapped Within launch: - config: oslist: windows executable: Trapped Within.exe type: default -'617240': {} -'617270': +"617240": {} +"617270": installDir: Hoggy 2 launch: - config: oslist: windows executable: Hoggy2.exe type: default -'617290': +"617290": installDir: Remnant launch: - config: @@ -292008,7 +287359,7 @@ executable: Remnant.exe type: default workingdir: Remnant/ -'61730': +"61730": installDir: Critter Crunch launch: - config: @@ -292017,35 +287368,35 @@ - config: oslist: macos executable: CritterCrunch.app/Contents/MacOS/CritterCrunch -'617330': {} -'617350': {} -'617420': +"617330": {} +"617350": {} +"617420": installDir: Animal Rivals launch: - config: oslist: windows executable: AnimalRivals.exe type: default -'617430': +"617430": installDir: A Butterfly in the District of Dreams launch: - config: oslist: windows executable: Darekoi.exe type: default -'617440': +"617440": installDir: Juanito Arcade Mayhem launch: - executable: Juanito Arcade Mayhem.exe type: none -'617450': +"617450": installDir: Trollskog launch: - config: oslist: windows executable: Trollskog.exe type: none -'617480': +"617480": installDir: Tower of Time launch: - config: @@ -292053,16 +287404,16 @@ executable: TowerOfTime.exe type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: TowerOfTime.x86_64 type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: TowerOfTime.x86 type: none -'617590': +"617590": installDir: Affliction launch: - config: @@ -292073,17 +287424,17 @@ - config: oslist: windows description: Affliction Tutorial - executable: AfflictionBase\\AfflictionBase.exe + executable: "AfflictionBase\\\\AfflictionBase.exe" type: option1 workingdir: AfflictionBase -'617600': +"617600": installDir: VR Interior Designer Pro launch: - config: oslist: windows executable: VR_Interior_Designer_Pro_V03b.exe type: vr -'617610': +"617610": installDir: Japanese Women - Animated Jigsaws launch: - config: @@ -292094,7 +287445,7 @@ oslist: macos executable: Japanese_Women_Animated_Jigsaws.app type: default -'617620': +"617620": installDir: Disturbed Beyond Aramor launch: - config: @@ -292109,7 +287460,7 @@ oslist: linux executable: Disturbed_Beyond_Aramor.sh type: default -'617630': +"617630": installDir: Shadow Mist launch: - config: @@ -292120,26 +287471,26 @@ oslist: macos executable: ShadowMist.app type: default -'617640': +"617640": installDir: Forged of Blood launch: - config: oslist: windows executable: Kingmaker.exe type: none -'617660': +"617660": installDir: Dong-Jin Rice-hime launch: - config: oslist: windows executable: MoeRice.exe type: default -'617670': +"617670": installDir: Zup! S launch: - executable: Zup! S.exe type: default -'617680': +"617680": installDir: Drunk-Fu Wasted Masters launch: - config: @@ -292148,9 +287499,9 @@ type: none - config: oslist: macos - executable: Contents\\MacOS\\drunkfu + executable: "Contents\\\\MacOS\\\\drunkfu" type: none -'617690': +"617690": installDir: Endless Winter launch: - config: @@ -292160,7 +287511,7 @@ nameLocalized: schinese: 无尽寒冬 tchinese: 無盡寒冬 -'617700': +"617700": installDir: Weed Shop 2 launch: - config: @@ -292171,74 +287522,68 @@ oslist: macos executable: Contents/MacOS/WeedShop2 type: default -'617710': +"617710": installDir: Cannons-defenders launch: - config: oslist: windows executable: Cannons-defenders.exe type: none -'617720': +"617720": installDir: ASTA Online Close Beta Test launch: - config: oslist: windows executable: AstaPatch.exe type: default -'617750': +"617750": installDir: Neurowake launch: - config: - osarch: '64' + osarch: "64" oslist: windows - description: .exe Launcher + description: ".exe Launcher" executable: Neurowake.exe type: vr -'617820': +"617820": installDir: 7 days with Death launch: - config: oslist: windows executable: krkr.eXe type: none -'617830': +"617830": installDir: SUPERHOT VR launch: - description: SUPERHOT VR Launcher - description_loc: - english: SUPERHOT VR Launcher executable: SHVR.exe type: vr - executable: SUPERHOTVR.exe type: vr -'617850': +"617850": installDir: Jaws Of Extinction launch: - - arguments: '-D3D12' + - arguments: "-D3D12" config: - osarch: '64' + osarch: "64" oslist: windows description: Jaws of Extinction (DirectX 12) executable: JoEGame_A.exe type: option1 - - arguments: '-DX11' + - arguments: "-DX11" config: - osarch: '64' + osarch: "64" oslist: windows description: Jaws of Extinction (DirectX 11) - description_loc: - english: Jaws of Extinction (DirectX 11) executable: JoEGame_A.exe type: option2 - config: - osarch: '64' + osarch: "64" oslist: windows description: No Launch Options - description_loc: - english: No Launch Options executable: JoEGame_A.exe type: option3 -'617970': +"617970": installDir: Love Bites launch: - config: @@ -292253,7 +287598,7 @@ oslist: linux executable: Love Bites.sh type: none -'618010': +"618010": installDir: Volleyball Heaven launch: - config: @@ -292264,44 +287609,44 @@ oslist: linux executable: VolleyballHeaven.sh type: none -'618030': {} -'618050': +"618030": {} +"618050": installDir: To_The_Light launch: - config: oslist: windows executable: nw.exe type: default -'618070': +"618070": installDir: Jet Buster launch: - executable: Jet_Buster.exe type: default -'618080': +"618080": installDir: Martial Arts Brutality launch: - config: oslist: windows executable: dojo.exe type: default -'618100': +"618100": installDir: Feral blue launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Karabas.exe type: default -'618120': {} -'618140': +"618120": {} +"618140": installDir: SC Jogos launch: - config: oslist: windows executable: Barro/Barro.exe type: default -'618170': {} -'618190': +"618170": {} +"618190": installDir: People Eater launch: - config: @@ -292331,14 +287676,14 @@ oslist: linux executable: PeopleEater.x86 type: default -'618200': +"618200": installDir: Skylands launch: - config: oslist: windows executable: Skylands.exe type: default -'618210': +"618210": installDir: Lanternium launch: - config: @@ -292353,38 +287698,38 @@ oslist: macos executable: Lanternium.app type: none -'618260': +"618260": installDir: Endurance launch: - config: oslist: windows executable: Game.exe type: none -'618270': +"618270": installDir: Spiritlands launch: - config: oslist: windows executable: nw.exe type: default -'618310': +"618310": installDir: Aftergrinder launch: - config: oslist: windows executable: Aftergrinder.exe type: default -'618330': {} -'618340': {} -'618350': +"618330": {} +"618340": {} +"618350": installDir: Personal Disco VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: PersonalDiscoVR.exe type: vr -'618360': +"618360": installDir: Aesthetic Melody launch: - config: @@ -292399,7 +287744,7 @@ oslist: linux executable: AestheticMelody.x86 type: none -'618370': +"618370": installDir: Rescue Quest Gold launch: - config: @@ -292410,7 +287755,7 @@ oslist: macos executable: rqg_steam.app type: none -'618430': +"618430": installDir: Episicava launch: - config: @@ -292425,7 +287770,7 @@ oslist: linux executable: EpisicavaVol1.sh type: default -'618470': +"618470": installDir: Qbik launch: - config: @@ -292437,16 +287782,16 @@ executable: Qbik.app type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: Qbik.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: Qbik.x86_64 type: none -'618490': +"618490": installDir: Mr Blaster launch: - config: @@ -292461,58 +287806,58 @@ oslist: linux executable: Mr Blaster.x86 type: default -'618500': +"618500": installDir: ProxyWar launch: - - arguments: ' -vr' + - arguments: " -vr" config: oslist: windows executable: ProxyWarVR.exe type: vr -'618510': +"618510": installDir: Battle Bruise launch: - config: oslist: windows executable: game.exe type: default -'618540': {} -'618550': +"618540": {} +"618550": installDir: Chess of Blades launch: - config: oslist: windows - executable: lib\\windows-i686\\ChessOfBlades.exe + executable: "lib\\\\windows-i686\\\\ChessOfBlades.exe" type: default - config: oslist: macos - executable: ChessOfBlades.app\\Contents\\MacOS\\ChessOfBlades + executable: "ChessOfBlades.app\\\\Contents\\\\MacOS\\\\ChessOfBlades" type: default - config: oslist: linux executable: ChessOfBlades.sh type: default -'618560': {} -'618570': +"618560": {} +"618570": installDir: Pixel Arcade launch: - config: oslist: windows executable: Pixel Arcade.exe type: vr -'618590': +"618590": installDir: Zombie Buster VR launch: - executable: SurvivalHunter.exe type: vr -'618600': +"618600": installDir: ChallengeCubeVR launch: - config: oslist: windows executable: CubeVR.exe type: vr -'618610': +"618610": installDir: Endless Horde launch: - config: @@ -292521,28 +287866,28 @@ type: default - config: oslist: macos - executable: EndlessHorde.app\\Contents\\MacOS\\EndlessHorde + executable: "EndlessHorde.app\\\\Contents\\\\MacOS\\\\EndlessHorde" type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: EndlessHorde.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: EndlessHorde.x86_64 type: default -'618620': +"618620": installDir: Naval Armada launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Naval Armada.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Naval Armada.x86_64 type: default @@ -292551,36 +287896,36 @@ executable: Naval Armada.app type: default nameLocalized: - arabic: 'Naval Armada: Battle Warships' - brazilian: 'Naval Armada: Simulador De Guerra O Navio' - bulgarian: 'Naval Armada: Battle Warships' - czech: 'Naval Armada: Battle Warships' - danish: 'Naval Armada: Battle Warships' - dutch: 'Naval Armada: Battle Warships' - english: 'Naval Armada: Fleet Battle' - finnish: 'Naval Armada: Battle Warships' - french: 'Naval Armada: Navire de guerre et bataille navale' - german: 'Naval Armada: Kriegsschiff spiele' - greek: 'Naval Armada: Battle Warships' - hungarian: 'Naval Armada: Battle Warships' - italian: 'Naval Armada: Battaglia Navale' - japanese: 'Naval Armada: 戦艦ファイナル -船の戦いが熱い' - koreana: 'Naval Armada: 해군 전함 전쟁 멀티 플레이' - latam: 'Naval Armada: Battle Warships' - norwegian: 'Naval Armada: Battle Warships' - polish: 'Naval Armada: Fleet Battle' - portuguese: 'Naval Armada: Simulador De Guerra O Navio' - romanian: 'Naval Armada: Battle Warships' - russian: 'Naval Armada: Морской бой' - schinese: 'Naval Armada: 战舰题材战争策略手游' + arabic: "Naval Armada: Battle Warships" + brazilian: "Naval Armada: Simulador De Guerra O Navio" + bulgarian: "Naval Armada: Battle Warships" + czech: "Naval Armada: Battle Warships" + danish: "Naval Armada: Battle Warships" + dutch: "Naval Armada: Battle Warships" + english: "Naval Armada: Fleet Battle" + finnish: "Naval Armada: Battle Warships" + french: "Naval Armada: Navire de guerre et bataille navale" + german: "Naval Armada: Kriegsschiff spiele" + greek: "Naval Armada: Battle Warships" + hungarian: "Naval Armada: Battle Warships" + italian: "Naval Armada: Battaglia Navale" + japanese: "Naval Armada: 戦艦ファイナル -船の戦いが熱い" + koreana: "Naval Armada: 해군 전함 전쟁 멀티 플레이" + latam: "Naval Armada: Battle Warships" + norwegian: "Naval Armada: Battle Warships" + polish: "Naval Armada: Fleet Battle" + portuguese: "Naval Armada: Simulador De Guerra O Navio" + romanian: "Naval Armada: Battle Warships" + russian: "Naval Armada: Морской бой" + schinese: "Naval Armada: 战舰题材战争策略手游" spanish: Naval Armada:Batalla de Barcos - swedish: 'Naval Armada: Battle Warships' - tchinese: 'Naval Armada: 战舰题材战争策略手游' - thai: 'Naval Armada: pvp เรือรบเกมยิง' - turkish: 'Naval Armada: 3D Savaş Gemisi gemi oyunları' - ukrainian: 'Naval Armada: Морской бой' - vietnamese: 'Naval Armada: Trình mô phỏng chiến hạm 3D' -'618630': + swedish: "Naval Armada: Battle Warships" + tchinese: "Naval Armada: 战舰题材战争策略手游" + thai: "Naval Armada: pvp เรือรบเกมยิง" + turkish: "Naval Armada: 3D Savaş Gemisi gemi oyunları" + ukrainian: "Naval Armada: Морской бой" + vietnamese: "Naval Armada: Trình mô phỏng chiến hạm 3D" +"618630": installDir: Astral Traveler launch: - config: @@ -292595,47 +287940,47 @@ oslist: linux executable: AstralTraveler.x86 type: default -'618640': +"618640": installDir: TheCrowdedPartyGameCollection launch: - - arguments: '-Xmx128m -jar crowded.jar' + - arguments: "-Xmx128m -jar crowded.jar" config: oslist: windows - executable: bin\\javaw.exe + executable: "bin\\\\javaw.exe" type: default - - arguments: '-Xmx1024m -Djava.library.path=./natives/ -jar crowded.jar' + - arguments: "-Xmx1024m -Djava.library.path=./natives/ -jar crowded.jar" config: oslist: linux executable: bin/java type: default -'618650': +"618650": installDir: Pixel Gear launch: - config: oslist: windows - executable: PixelGear\\PixelGear.exe + executable: "PixelGear\\\\PixelGear.exe" type: vr -'618670': +"618670": installDir: One Bullet left launch: - executable: OneBulletLeftCpp.exe type: default -'618690': +"618690": installDir: Gorescript launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: gorescript.exe type: default -'618710': +"618710": installDir: EO launch: - config: oslist: windows executable: Elminage.exe type: default -'618720': +"618720": installDir: 1bitHeart launch: - config: @@ -292646,7 +287991,7 @@ oslist: windows executable: Config.exe type: config -'618740': +"618740": installDir: Beat Hazard 2 launch: - config: @@ -292654,56 +287999,52 @@ executable: BeatHazard2.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows description: Unreal Version (Beta) - description_loc: - english: Unreal Version (Beta) executable: UnrealVersion/BeatHazard2.exe type: none - config: - osarch: '64' + osarch: "64" oslist: windows description: Unreal VR Version (Beta) - description_loc: - english: Unreal VR Version (Beta) executable: UnrealVersion/BeatHazard2.exe type: vr -'618750': +"618750": installDir: Where are we launch: - description: Start executable: Game.exe type: none -'618760': +"618760": installDir: IronBorn launch: - description: Launch executable: Game.exe type: none -'618840': +"618840": installDir: Samhain World launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SamhainWorld.exe type: default -'618850': +"618850": installDir: Pumpkin Online launch: - config: oslist: windows executable: PumpkinOnline.exe type: none -'618920': +"618920": installDir: Dungeon Escape VR launch: - config: oslist: windows executable: DEVR.exe type: vr -'618950': +"618950": installDir: Agatha Knife launch: - config: @@ -292721,23 +288062,23 @@ description: Launch on Linux executable: AgathaKnife type: default -'618970': +"618970": installDir: Outcast - Second Contact launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Outcast Second Contact (normal fullscreen) executable: outcast.exe type: option1 - - arguments: '-window-mode exclusive' + - arguments: "-window-mode exclusive" config: - osarch: '64' + osarch: "64" oslist: windows description: Outcast Second Contact (exclusive fullscreen) executable: outcast.exe type: option2 -'618990': +"618990": installDir: Into Oblivion launch: - config: @@ -292752,14 +288093,14 @@ oslist: macos executable: Into Oblivion.app type: default -'619000': +"619000": installDir: Riley Short Analog Boy Ep1 launch: - config: oslist: windows executable: Riley Short Ep1.exe type: vr -'619010': +"619010": installDir: Arkaia The Enigmatic Isle launch: - config: @@ -292767,72 +288108,72 @@ executable: Arkaia_1.0_MacUniversal.app type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: Arkaia_1.0_Win64.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Arkaia_1.0_LinuxUniversal.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: Arkaia_1.0_Win32.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Arkaia_1.0_LinuxUniversal.x86 type: default -'619020': +"619020": installDir: Valkyrie Blade VR launch: - config: oslist: windows executable: Swing.exe type: vr -'619080': +"619080": installDir: SOS launch: - config: betakey: default - osarch: '64' + osarch: "64" oslist: windows description: Launch - executable: SOS\\Binaries\\Win64\\SOS-Win64-Shipping.exe + executable: "SOS\\\\Binaries\\\\Win64\\\\SOS-Win64-Shipping.exe" type: none - config: betakey: branch_dev - osarch: '64' + osarch: "64" oslist: windows description: Play SOS - executable: SOS\\Binaries\\Win64\\SOS.exe + executable: "SOS\\\\Binaries\\\\Win64\\\\SOS.exe" type: none - config: betakey: branch_prod - osarch: '64' + osarch: "64" oslist: windows description: Play SOS - executable: SOS\\Binaries\\Win64\\SOS-Win64-Shipping.exe + executable: "SOS\\\\Binaries\\\\Win64\\\\SOS-Win64-Shipping.exe" type: none -'619100': +"619100": installDir: Spirit Guide Crucible launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SpGCrucible.exe type: othervr -'619140': +"619140": installDir: Station 21 - Space Station Simulator launch: - config: oslist: windows executable: Station21.exe type: default -'619150': +"619150": installDir: wtl launch: - config: @@ -292845,17 +288186,17 @@ type: default - arguments: LANG=C %command% config: - osarch: '32' + osarch: "32" oslist: linux executable: wtl.x86 type: default - arguments: LANG=C %command% config: - osarch: '64' + osarch: "64" oslist: linux executable: wtl.x86_64 type: default -'619210': +"619210": installDir: 4DToys launch: - config: @@ -292863,11 +288204,11 @@ description: 4D Toys executable: 4DToys.exe type: default - - arguments: '-VR=1 -ShowLauncher=0 -Resolution=0x0 -Windowed=1' + - arguments: "-VR=1 -ShowLauncher=0 -Resolution=0x0 -Windowed=1" executable: 4DToys.exe type: vr -'619220': - installDir: GoBlock's Impossible Medley +"619220": + installDir: "GoBlock's Impossible Medley" launch: - config: oslist: windows @@ -292878,16 +288219,16 @@ executable: GoblocksImpossibleMedley.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: GoblocksImpossibleMedley.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: GoblocksImpossibleMedley.x86_64 type: default -'619230': +"619230": installDir: VEmpire - The Kings of Darkness launch: - config: @@ -292895,30 +288236,30 @@ executable: vempire.exe type: none - config: - osarch: '64' + osarch: "64" oslist: macos executable: nwjs.app type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: run.sh type: none -'619250': +"619250": installDir: Gonio VR launch: - config: oslist: windows executable: PrototypeAcendFysVR_26.exe type: vr -'619270': - installDir: Wolf's Fury +"619270": + installDir: "Wolf's Fury" launch: - - arguments: '-gl' + - arguments: "-gl" config: oslist: windows executable: Game.exe -'619280': +"619280": installDir: Gloom launch: - config: @@ -292927,13 +288268,13 @@ type: none - config: oslist: macos - executable: Gloom.app\\Contents\\MacOS\\Mac_Runner + executable: "Gloom.app\\\\Contents\\\\MacOS\\\\Mac_Runner" type: none - config: oslist: linux executable: run.sh type: none -'619290': +"619290": installDir: Out of the Park Baseball 19 launch: - config: @@ -292947,24 +288288,24 @@ executable: OOTP Baseball 19.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch OOTP 19 executable: ootp19.sh type: default -'619310': +"619310": installDir: Ways of History launch: - config: oslist: windows executable: wofh_steam_launcher.exe type: default -'619320': +"619320": installDir: Skatemasta Tcheco launch: - executable: TCHECO2.exe type: none -'619330': +"619330": installDir: DH_v01 launch: - config: @@ -292973,13 +288314,13 @@ type: default - config: oslist: macos - executable: DuckHunting.app\\Contents\\MacOS\\DuckHunting + executable: "DuckHunting.app\\\\Contents\\\\MacOS\\\\DuckHunting" type: default - config: oslist: linux executable: DuckHunting.x86 type: default -'619340': +"619340": installDir: Conjuntalia launch: - config: @@ -292996,7 +288337,7 @@ description: Conjuntalia UE4 executable: /UE4Win/Conjuntalia.exe type: default -'619350': +"619350": installDir: Sandra and Woo in the Cursed Adventure launch: - config: @@ -293009,15 +288350,15 @@ description: Start Linux executable: start type: default -'619380': +"619380": installDir: The little vampir launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: The little vampir.exe type: default -'619390': +"619390": installDir: Oddworld Soulstorm launch: - config: @@ -293027,23 +288368,19 @@ - config: betakey: latest description: Launch game (Latest branch) - description_loc: - english: Launch game (Latest branch) executable: OddworldSoulstorm.exe - - arguments: '--30fpsvideo' + - arguments: "--30fpsvideo" config: betakey: latest oslist: windows description: Launch with 30 FPS Videos (Compatibility) - description_loc: - english: Launch with 30 FPS Videos (Compatibility) executable: OddworldSoulstorm.exe -'619400': +"619400": installDir: Fluffy Creatures VS The World launch: - executable: Fluffy.exe type: none -'619430': +"619430": installDir: World of Castles launch: - config: @@ -293058,98 +288395,98 @@ oslist: linux executable: World_of_Castles.x86_64 type: none -'619470': +"619470": installDir: Boss Defiance launch: - config: oslist: windows executable: bossdefiance.exe type: default -'619480': +"619480": installDir: Rock Ken Bo launch: - config: oslist: windows executable: RKB.exe type: default -'619490': +"619490": installDir: Fear of Clowns launch: - config: oslist: windows executable: Fear Of Clowns.exe type: default -'619500': +"619500": installDir: cyubeVR launch: - - arguments: '-oo' + - arguments: "-oo" config: - osarch: '64' + osarch: "64" oslist: windows executable: cyubeVR.exe type: vr - config: betakey: linux - osarch: '64' + osarch: "64" oslist: linux executable: cyubeVR.sh type: vr -'619520': {} -'619550': +"619520": {} +"619550": installDir: Vision launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Vision.exe type: default - - arguments: '-vr' + - arguments: "-vr" config: - osarch: '64' + osarch: "64" oslist: windows executable: Vision.exe type: vr -'619590': +"619590": installDir: CubeBall VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: CubeBallVR.exe type: vr -'619600': +"619600": installDir: Wrecked Get Your Ship Together launch: - config: oslist: windows executable: Wrecked.exe type: vr -'619610': +"619610": installDir: Ultratank launch: - config: oslist: windows executable: Ultratank.exe type: default -'619620': +"619620": installDir: Cellz launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Lancer Cellz executable: Cellz SV0.01.exe type: default -'619670': +"619670": installDir: Huge Bang Bang launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: HugeBangBang.exe type: default -'619700': +"619700": installDir: Steel Rats launch: - config: @@ -293164,15 +288501,15 @@ oslist: macos executable: SteelRats.app/Contents/MacOS/SteelRats type: default -'619730': {} -'619740': +"619730": {} +"619740": installDir: The Inevitability launch: - config: oslist: windows executable: The Inevitability.exe type: none -'619780': +"619780": installDir: The Swords of Ditto launch: - config: @@ -293181,14 +288518,14 @@ type: default - config: oslist: macos - executable: The_Swords_of_Ditto.app\\Contents\\MacOS\\The_Swords_of_Ditto + executable: "The_Swords_of_Ditto.app\\\\Contents\\\\MacOS\\\\The_Swords_of_Ditto" type: default - config: oslist: linux executable: The_Swords_of_Ditto.sh type: default -'619810': - installDir: Fabulous - Angela's High School Reunion +"619810": + installDir: "Fabulous - Angela's High School Reunion" launch: - config: oslist: windows @@ -293196,21 +288533,21 @@ type: none - config: oslist: macos - executable: Fabulous 3.app\\Contents\\MacOS\\Game OSX Steam + executable: "Fabulous 3.app\\\\Contents\\\\MacOS\\\\Game OSX Steam" type: none -'619870': +"619870": installDir: Omegaland launch: - executable: Omegaland.exe type: default -'619880': +"619880": installDir: ATOMEGA launch: - config: oslist: windows executable: ATOMEGA.exe type: default -'619890': +"619890": installDir: Evil Glitch launch: - config: @@ -293218,11 +288555,11 @@ executable: EvilGlitch.exe type: none - config: - osarch: '64' + osarch: "64" oslist: macos executable: EvilGlitch.app type: none -'619930': +"619930": installDir: Spring Bonus launch: - config: @@ -293235,27 +288572,27 @@ description: Launch executable: SpringBonus.app type: none -'620': +"620": installDir: Portal 2 launch: - - arguments: '-game portal2 -steam' + - arguments: "-game portal2 -steam" config: oslist: windows executable: portal2.exe - - arguments: '-game portal2 -steam' + - arguments: "-game portal2 -steam" config: oslist: linux executable: portal2.sh - - arguments: '-game portal2 -steam' + - arguments: "-game portal2 -steam" config: oslist: macos executable: portal2.sh type: none -'6200': +"6200": installDir: Ghost Master launch: - executable: ghost.exe -'62000': +"62000": installDir: Flight_Control_HD launch: - config: @@ -293264,73 +288601,73 @@ - config: oslist: macos executable: Flight_Control_HD.app -'620070': +"620070": installDir: VroomKaboom launch: - arguments: novr config: - osarch: '64' + osarch: "64" oslist: windows - executable: x64\\VroomKaboom.exe + executable: "x64\\\\VroomKaboom.exe" type: default - arguments: vrbootdevice openvr config: - osarch: '64' + osarch: "64" oslist: windows - executable: x64\\VroomKaboom.exe + executable: "x64\\\\VroomKaboom.exe" type: vr - arguments: vrbootdevice oculus config: - osarch: '64' + osarch: "64" oslist: windows - executable: x64\\VroomKaboom.exe + executable: "x64\\\\VroomKaboom.exe" type: othervr -'620080': +"620080": installDir: A Clockwork Ley-Line The Borderline of Dusk launch: - config: oslist: windows executable: leylinelauncher.exe type: none -'620130': +"620130": installDir: Chaos Town launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ChaosTown.exe type: default -'620140': +"620140": installDir: Bottle Flip Challenge VR launch: - config: oslist: windows executable: VRFlip.exe type: vr -'620170': +"620170": installDir: Icarus Starship Command Simulator launch: - config: oslist: windows executable: ICARUS.exe type: default -'620180': +"620180": installDir: Nerepis launch: - config: oslist: windows executable: Nerepis.exe type: none -'620190': +"620190": installDir: Gunsmith launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: GunSmithProject.exe type: none -'620200': {} -'620210': +"620200": {} +"620210": installDir: Fatal Twelve launch: - config: @@ -293345,7 +288682,7 @@ oslist: linux executable: fatal.sh type: default -'620220': +"620220": installDir: Catmaze launch: - config: @@ -293360,8 +288697,8 @@ oslist: linux executable: nw type: none -'620240': {} -'620280': +"620240": {} +"620280": installDir: Freefall launch: - config: @@ -293372,17 +288709,17 @@ oslist: macos executable: Freefall.app type: default - - arguments: '-vr' + - arguments: "-vr" config: oslist: windows executable: Freefall.exe type: vr - - arguments: '-vr' + - arguments: "-vr" config: oslist: macos executable: Freefall.app type: vr -'620310': +"620310": installDir: bonny launch: - config: @@ -293394,23 +288731,23 @@ executable: bonny.app type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: bonny.x86_64 type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: bonny.x86 type: none -'620330': +"620330": installDir: Scrapper launch: - config: oslist: windows executable: Scrapper.exe type: default -'620340': +"620340": installDir: Cubrick launch: - config: @@ -293421,16 +288758,16 @@ oslist: macos executable: Cubrick.app type: default -'620350': +"620350": installDir: Dark_Hope launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Dark_Hope.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Dark_Hope.x86_64 type: default @@ -293438,16 +288775,16 @@ oslist: macos executable: Dark_Hope.app type: default -'620360': +"620360": installDir: ToyClash launch: - config: oslist: windows executable: toyclash.exe type: vr -'620410': {} -'620530': {} -'620570': +"620410": {} +"620530": {} +"620570": installDir: Tower_2011_SE launch: - config: @@ -293457,7 +288794,7 @@ type: default - config: oslist: windows - description: 'Show Tower!2011:SE manual' + description: "Show Tower!2011:SE manual" executable: Tower-SE-Manual.pdf type: none - config: @@ -293471,53 +288808,53 @@ executable: Airplanes/planeEd.exe type: none workingdir: Airplanes/ -'620580': +"620580": installDir: Calico and Co launch: - config: oslist: windows executable: CalicoAndCo.exe type: none -'620590': +"620590": installDir: Ancestors Legacy launch: - - arguments: '-nothreadtimeout' + - arguments: "-nothreadtimeout" config: - osarch: '64' + osarch: "64" oslist: windows - executable: Anc\\Binaries\\Win64\\Anc-Win64-Shipping.exe + executable: "Anc\\\\Binaries\\\\Win64\\\\Anc-Win64-Shipping.exe" type: default - config: betakey: test - osarch: '64' + osarch: "64" oslist: windows description: Test configuration - executable: Anc\\Binaries\\Win64\\Anc-Win64-Test.exe + executable: "Anc\\\\Binaries\\\\Win64\\\\Anc-Win64-Test.exe" type: option1 - config: betakey: dedicated_client description: Shipping - executable: Anc\\Binaries\\Win64\\Anc-Win64-Shipping.exe + executable: "Anc\\\\Binaries\\\\Win64\\\\Anc-Win64-Shipping.exe" type: option2 - - arguments: '-Log' + - arguments: "-Log" config: betakey: dedicated_client description: Test-Logs - executable: Anc\\Binaries\\Win64\\Anc-Win64-Test.exe + executable: "Anc\\\\Binaries\\\\Win64\\\\Anc-Win64-Test.exe" type: option1 - - arguments: '-nothreadtimeout -FULLMEMORYDUMP' + - arguments: "-nothreadtimeout -FULLMEMORYDUMP" config: betakey: internaltesting description: FULL MEMORY DUMP - executable: Launcher\\DCConfig.exe + executable: "Launcher\\\\DCConfig.exe" type: option2 - - arguments: '-gpucrashdebugging -nothreadtimeout -path ..\\Anc\\Binaries\\Win64\\Anc-Win64-Shipping_log.exe' + - arguments: "-gpucrashdebugging -nothreadtimeout -path ..\\\\Anc\\\\Binaries\\\\Win64\\\\Anc-Win64-Shipping_log.exe" config: - betakey: 'internaltesting,experimental' + betakey: "internaltesting,experimental" description: Shipping with logs - executable: Launcher\\DCConfig.exe + executable: "Launcher\\\\DCConfig.exe" type: option3 -'620630': +"620630": installDir: Civil War 1865 launch: - config: @@ -293528,7 +288865,7 @@ oslist: macos executable: CivilWar1865.app type: none -'620640': +"620640": installDir: Lightning D-Day launch: - config: @@ -293536,11 +288873,11 @@ executable: D-Day.exe type: default - config: - osarch: '64' + osarch: "64" oslist: macos executable: D-Day.app type: default -'620650': +"620650": installDir: Puzzle With Your Friends launch: - config: @@ -293552,30 +288889,30 @@ executable: Puzzle.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Puzzle.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Puzzle.x86_64 type: default -'620660': +"620660": installDir: JackSpriggan launch: - config: oslist: windows executable: beans.exe type: vr -'620670': +"620670": installDir: The Cursed Revolver launch: - config: oslist: windows executable: TheCursedRevolver.exe type: none -'620700': +"620700": installDir: Evil Possession launch: - config: @@ -293583,12 +288920,12 @@ executable: Evil Possession.exe type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: Evil Possession.x86_64 type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: Evil Possession.x86 type: none @@ -293596,63 +288933,63 @@ oslist: macos executable: Evil Possession.app type: none -'620710': +"620710": installDir: TankBlitz launch: - config: oslist: windows executable: TankBlitz.exe type: default -'620790': +"620790": installDir: The Slopes launch: - config: oslist: windows executable: The Slopes.exe type: vr -'620800': +"620800": installDir: Big Hit VR Baseball launch: - config: oslist: windows executable: Big Hit VR Baseball.exe type: vr -'620900': +"620900": installDir: Witchinour launch: - config: oslist: windows executable: Witchinour.exe type: default -'620940': +"620940": installDir: Invisibox launch: - executable: Invisibox.exe type: default -'620980': +"620980": installDir: Beat Saber launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Beat Saber.exe type: vr -'6210': +"6210": installDir: Vegas - Make It Big launch: - executable: casino.exe -'62100': +"62100": installDir: Chime launch: - executable: Chime.exe -'621000': +"621000": installDir: Exception launch: - config: oslist: windows executable: Exception.exe type: default -'621010': +"621010": installDir: Headmaster launch: - config: @@ -293660,15 +288997,15 @@ description: Headmaster executable: Headmaster.exe type: vr -'621020': +"621020": installDir: Antigraviator launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Antigraviator.exe type: default -'621050': +"621050": installDir: Crazy Veggies launch: - config: @@ -293683,20 +289020,20 @@ oslist: linux executable: Crazy Veggies.x86 type: default -'621060': +"621060": nameLocalized: japanese: PC Building Simulator koreana: PC 제작 시뮬레이터 schinese: 装机模拟器 (PC Building Simulator) -'621070': +"621070": installDir: Legends of Ellaria launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Legends of Ellaria.exe type: default -'621080': +"621080": installDir: PersianNights_SandsofWonders launch: - config: @@ -293705,13 +289042,13 @@ executable: PersianNights.exe type: none - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: PersianNights_i386 type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: PersianNights_amd64 @@ -293721,29 +289058,29 @@ description: Launch executable: mac_steam.app/Contents/MacOS/mac_steam type: none -'621090': +"621090": installDir: Elixir of Immortality II The League of Immortality launch: - config: oslist: windows executable: game.exe type: none -'621140': +"621140": installDir: EGG HUNT VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: hunt.exe type: vr -'621150': +"621150": installDir: False Shelter launch: - config: oslist: windows executable: Game.exe type: none -'621170': +"621170": installDir: WEM launch: - config: @@ -293758,7 +289095,7 @@ oslist: linux executable: WEM.sh type: none -'621220': +"621220": installDir: Nantucket launch: - config: @@ -293773,38 +289110,38 @@ oslist: macos executable: Nantucket.app type: none -'621290': +"621290": installDir: The Hunted launch: - config: oslist: windows executable: TheHunted.exe type: vr -'621530': {} -'621780': +"621530": {} +"621780": installDir: Virtually Impossible launch: - config: oslist: windows executable: Virtually Impossible.exe type: vr -'621810': +"621810": installDir: Strain Tactics launch: - config: oslist: windows executable: strain.exe type: default -'621830': +"621830": installDir: WRC 7 launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch game executable: WRC7.exe type: default -'621850': +"621850": installDir: Maze Bandit launch: - config: @@ -293815,15 +289152,15 @@ oslist: macos executable: MazeBandit.app/Contents/MacOS/MazeBandit type: default -'621880': +"621880": installDir: Phoenix Dynasty 2 launch: - - arguments: '--disable-gpu' + - arguments: "--disable-gpu" config: oslist: windows executable: PDO2Launcher.exe type: default -'621930': +"621930": installDir: Attack of the Earthlings launch: - config: @@ -293831,7 +289168,7 @@ executable: AttackOfTheEarthlings.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: AttackOfTheEarthlings.x86 type: default @@ -293840,54 +289177,54 @@ executable: AttackOfTheEarthlings.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: AttackOfTheEarthlings.x86_64 type: default - - arguments: '-force-d3d9' + - arguments: "-force-d3d9" config: oslist: windows description: Play Attack of the Earthlings (DirectX 9) executable: AttackOfTheEarthlings.exe type: none -'621940': +"621940": installDir: Unleash launch: - config: oslist: windows executable: Unleash.exe type: default -'621970': +"621970": installDir: Trailblazers launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Trailblazers.exe type: default - config: - osarch: '64' + osarch: "64" oslist: macos - executable: Trailblazers.app\\Contents\\MacOS\\Trailblazers + executable: "Trailblazers.app\\\\Contents\\\\MacOS\\\\Trailblazers" type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Trailblazers type: default -'6220': +"6220": installDir: FlatOut launch: - executable: flatout.exe -'622010': +"622010": installDir: The Fall of Lazarus launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Lazarus.exe type: default -'622020': +"622020": installDir: ATV Drift & tricks launch: - config: @@ -293899,7 +289236,7 @@ oslist: macos executable: ATV.app type: default -'622040': +"622040": installDir: Zooicide launch: - config: @@ -293911,16 +289248,16 @@ executable: Zooicide.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Zooicide.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Zooicide.x86_64 type: default -'622060': +"622060": installDir: XOXO Droplets launch: - config: @@ -293931,7 +289268,7 @@ oslist: macos executable: XOXO_Droplets.app type: none -'622080': +"622080": installDir: Plague Road launch: - config: @@ -293942,17 +289279,17 @@ - config: oslist: macos description: Launch - executable: PlagueRoad.app\\Contents\\MacOS\\PlagueRoad + executable: "PlagueRoad.app\\\\Contents\\\\MacOS\\\\PlagueRoad" type: none - workingdir: PlagueRoad.app\\Contents\\MacOS -'622150': - installDir: Bridge to Another World Burnt Dreams Collector's Edition + workingdir: "PlagueRoad.app\\\\Contents\\\\MacOS" +"622150": + installDir: "Bridge to Another World Burnt Dreams Collector's Edition" launch: - config: oslist: windows executable: BTAW_BurntDreams_CE.exe type: default -'622170': +"622170": installDir: Offensive Combat Redux launch: - config: @@ -293960,55 +289297,55 @@ description: Play OC! executable: oc.exe type: default - - arguments: '-server http://dev-api.offensivecombat.com/' + - arguments: "-server http://dev-api.offensivecombat.com/" config: betakey: development description: DEVS ONLY BABY! executable: oc.exe type: none -'622200': - installDir: Cursery The Crooked Man and the Crooked Cat Collector's Edition +"622200": + installDir: "Cursery The Crooked Man and the Crooked Cat Collector's Edition" launch: - config: oslist: windows executable: Cursery_TheCrookedManAndTheCrookedCat_CE.exe type: default -'622220': +"622220": installDir: Fate Extella Link launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: fateextellalink.exe type: default -'622230': {} -'622270': +"622230": {} +"622270": installDir: Show It 2 Me launch: - config: oslist: windows executable: sitm_leverBuild_v2.exe type: vr -'622300': +"622300": installDir: theViewer launch: - config: oslist: windows executable: theViewer.exe type: vr -'622310': +"622310": installDir: AmigoVR launch: - config: oslist: windows executable: SP.exe type: vr -'622320': +"622320": installDir: Nano Project launch: - executable: Start.exe type: none -'622370': +"622370": installDir: Freaky Awesome launch: - config: @@ -294023,22 +289360,22 @@ oslist: linux executable: FreakyAwesome.x86 type: default -'622380': +"622380": installDir: RETNE launch: - config: oslist: windows executable: retne_bugfix_2018.exe type: vr -'622420': +"622420": installDir: Stay Alive Apocalypse launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Stay Alive Apocalypse.exe type: none -'622440': +"622440": installDir: Pandemic launch: - config: @@ -294047,9 +289384,9 @@ type: default - config: oslist: macos - executable: Pandemic.app\\Contents\\MacOS\\Pandemic + executable: "Pandemic.app\\\\Contents\\\\MacOS\\\\Pandemic" type: default -'622460': +"622460": installDir: Steampunk tower 2 launch: - config: @@ -294060,7 +289397,7 @@ oslist: macos executable: steampunktower2.app type: none -'622470': +"622470": installDir: Road Dogs launch: - arguments: skip steam @@ -294078,56 +289415,56 @@ oslist: linux executable: RoadDogs type: default -'622480': +"622480": installDir: Gus Track Adventures VR launch: - config: oslist: windows executable: gus track adventures.exe type: vr -'622510': +"622510": installDir: Lootfest Wars launch: - config: oslist: windows executable: Game.exe type: default -'622530': {} -'622540': +"622530": {} +"622540": installDir: The Frost launch: - config: - osarch: '32' + osarch: "32" oslist: windows - executable: bin\\win_x86\\Launcher.exe + executable: "bin\\\\win_x86\\\\Launcher.exe" type: default - config: - osarch: '64' + osarch: "64" oslist: windows - executable: bin\\win_x64\\Launcher.exe + executable: "bin\\\\win_x64\\\\Launcher.exe" type: default -'622550': - installDir: Final Cut Encore Collector's Edition +"622550": + installDir: "Final Cut Encore Collector's Edition" launch: - config: oslist: windows executable: FinalCut_Encore_CE.exe type: default -'622610': +"622610": installDir: Cult Fear Inside launch: - config: oslist: windows executable: Cult Fear Insdie.exe type: none -'622620': +"622620": installDir: Nightmare Adventures The Turning Thorn launch: - config: oslist: windows executable: NA_The_Turning_Thorn.exe type: default -'622650': +"622650": installDir: Bendy and the Ink Machine launch: - config: @@ -294139,35 +289476,35 @@ executable: BATIM.app type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: BATIM.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: BATIM.x86_64 type: none -'622670': +"622670": installDir: Huusuienbu - Chapter Spring and Summer launch: - config: oslist: windows executable: Huusuienbu.exe type: default -'622680': +"622680": installDir: Mayhem in Single Valley launch: - executable: MSV.exe type: none -'622700': +"622700": installDir: War Heroes Invasion launch: - config: oslist: windows executable: WH.exe type: default -'622720': +"622720": installDir: Weedcraft launch: - config: @@ -294176,35 +289513,35 @@ type: none - config: oslist: macos - executable: WeedcraftInc.app\\Contents\\MacOS\\WeedcraftInc + executable: "WeedcraftInc.app\\\\Contents\\\\MacOS\\\\WeedcraftInc" type: none -'622770': +"622770": installDir: Hacktag launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Hacktag.exe type: default - config: oslist: macos - executable: Hacktag.app\\Contents\\MacOS\\Hacktag + executable: "Hacktag.app\\\\Contents\\\\MacOS\\\\Hacktag" type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: Hacktag.exe type: default -'622810': +"622810": installDir: invasion launch: - executable: invasion1.exe type: none -'622820': {} -'622830': +"622820": {} +"622830": installDir: Battle Chess launch: - - arguments: '-conf \"config/dosboxBC.conf\" -conf \"config/dosboxBC_single.conf\" -noconsole' + - arguments: "-conf \\\"config/dosboxBC.conf\\\" -conf \\\"config/dosboxBC_single.conf\\\" -noconsole" config: oslist: windows executable: DOSBox/dosbox.exe @@ -294213,17 +289550,17 @@ oslist: windows executable: Launch Manual.bat type: manual - - arguments: '-conf \"config/dosboxBC.conf\" -conf \"config/dosboxBC_single.conf\"' + - arguments: "-conf \\\"config/dosboxBC.conf\\\" -conf \\\"config/dosboxBC_single.conf\\\"" config: oslist: macos - executable: DOSBox\\dosbox.app\\Contents\\MacOS\\DOSBox + executable: "DOSBox\\\\dosbox.app\\\\Contents\\\\MacOS\\\\DOSBox" type: default - - arguments: '-conf \"config/dosboxBC.conf\" -conf \"config/dosboxBC_doc.conf\"' + - arguments: "-conf \\\"config/dosboxBC.conf\\\" -conf \\\"config/dosboxBC_doc.conf\\\"" config: oslist: macos - executable: DOSBox\\dosbox.app\\Contents\\MacOS\\DOSBox + executable: "DOSBox\\\\dosbox.app\\\\Contents\\\\MacOS\\\\DOSBox" type: manual - - arguments: \"-conf\" \"./config/dosboxBC.conf\" \"-conf\" \"./config/dosboxBC_single.conf\" \"-noconsole\" + - arguments: "\\\"-conf\\\" \\\"./config/dosboxBC.conf\\\" \\\"-conf\\\" \\\"./config/dosboxBC_single.conf\\\" \\\"-noconsole\\\"" config: oslist: linux executable: dosbox/dosbox @@ -294232,38 +289569,32 @@ oslist: linux executable: LaunchManual.sh type: manual - - arguments: '-conf \"config/dosboxBC.conf\" -conf \"config/dosboxBC_enhanced.conf\" -noconsole' + - arguments: "-conf \\\"config/dosboxBC.conf\\\" -conf \\\"config/dosboxBC_enhanced.conf\\\" -noconsole" config: oslist: windows - description: 'Battle Chess: Enhanced' - description_loc: - english: 'Battle Chess: Enhanced' + description: "Battle Chess: Enhanced" executable: DOSBox/dosbox.exe type: option1 - - arguments: '-conf \"config/dosboxBC.conf\" -conf \"config/dosboxBC_enhanced.conf\"' + - arguments: "-conf \\\"config/dosboxBC.conf\\\" -conf \\\"config/dosboxBC_enhanced.conf\\\"" config: oslist: macos - description: 'Battle Chess: Enhanced' - description_loc: - english: 'Battle Chess: Enhanced' - executable: DOSBox\\dosbox.app\\Contents\\MacOS\\DOSBox + description: "Battle Chess: Enhanced" + executable: "DOSBox\\\\dosbox.app\\\\Contents\\\\MacOS\\\\DOSBox" type: option1 - - arguments: \"-conf\" \"./config/dosboxBC.conf\" \"-conf\" \"./config/dosboxBC_enhanced.conf\" \"-noconsole\" + - arguments: "\\\"-conf\\\" \\\"./config/dosboxBC.conf\\\" \\\"-conf\\\" \\\"./config/dosboxBC_enhanced.conf\\\" \\\"-noconsole\\\"" config: oslist: linux - description: 'Battle Chess: Enhanced' - description_loc: - english: 'Battle Chess: Enhanced' + description: "Battle Chess: Enhanced" executable: dosbox/dosbox type: option1 -'622870': +"622870": installDir: Pixel Shinobi Nine demons of Mamoru launch: - config: oslist: windows executable: PSNDOM.exe type: default -'622880': +"622880": installDir: Sweven launch: - config: @@ -294276,16 +289607,16 @@ type: default - config: oslist: macos - executable: Sweven.app\\Contents\\MacOS\\Sweven + executable: "Sweven.app\\\\Contents\\\\MacOS\\\\Sweven" type: default -'622890': +"622890": installDir: NecroWorm launch: - config: oslist: windows executable: NecroWorm.exe type: default -'622910': +"622910": installDir: The trial of witch launch: - config: @@ -294301,7 +289632,7 @@ nameLocalized: schinese: 夕月之花 tchinese: 夕月之花 -'622920': +"622920": installDir: P-Walkers Simulation launch: - config: @@ -294309,7 +289640,7 @@ description: Launch executable: pwalkerssimulation.exe type: default -'622930': +"622930": installDir: Magic Masks launch: - config: @@ -294320,38 +289651,38 @@ oslist: macos executable: MagicMasks.app type: none -'623040': +"623040": installDir: Crystal Vibes launch: - config: oslist: windows executable: crystalvibes_steam.exe type: vr -'623050': +"623050": installDir: CyberClub-2077 launch: - - arguments: '-installed' + - arguments: "-installed" executable: storm.exe type: vr -'623070': - installDir: Delicious - Emily's Miracle of Life +"623070": + installDir: "Delicious - Emily's Miracle of Life" launch: - config: oslist: macos - executable: Delicious - Emily's D15.app/Contents/MacOS/Delicious - Emily's D15 + executable: "Delicious - Emily's D15.app/Contents/MacOS/Delicious - Emily's D15" type: none - config: oslist: windows executable: Delicious15.exe type: none -'623080': +"623080": installDir: planetarian HD launch: - config: oslist: windows executable: SiglusEngine_Steam.exe type: default -'623090': +"623090": installDir: BAJA Edge of Control HD launch: - config: @@ -294362,73 +289693,73 @@ oslist: windows executable: XLBajaPC.exe type: default -'623160': +"623160": installDir: Zombie Solitaire 2 Chapter 1 launch: - config: oslist: windows executable: ZS2.exe type: default -'623170': +"623170": installDir: Zombie Solitaire 2 Chapter 2 launch: - config: oslist: windows executable: ZS2-Chapter2.exe type: default -'623180': +"623180": installDir: Zombie Solitaire 2 Chapter 3 launch: - config: oslist: windows executable: ZS2-Chapter3.exe type: default -'623280': +"623280": installDir: DarkAlliance launch: - - arguments: '-nothreadtimeout' + - arguments: "-nothreadtimeout" executable: WindowsNoEditor/DarkAlliance.exe type: default -'623310': +"623310": installDir: Arcfall launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: arcfall.exe type: default -'623320': +"623320": installDir: Button Bros launch: - - arguments: '-windowed' + - arguments: "-windowed" config: oslist: windows executable: Button Button Up!/ButtonButtonUp!.exe type: default -'623340': +"623340": installDir: Stars End launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Stars End.exe type: none -'623360': - installDir: Grim Tales The Legacy Collector's Edition +"623360": + installDir: "Grim Tales The Legacy Collector's Edition" launch: - config: oslist: windows executable: GrimTales_TheLegacy_CE.exe type: default -'623370': +"623370": installDir: xDrive VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Game.exe type: vr -'623380': +"623380": installDir: Cybermotion launch: - config: @@ -294439,47 +289770,47 @@ - description: 2D (Legacy) executable: Cybermotion_b.exe type: option1 -'623460': - installDir: Haunted Legends The Bronze Horseman Collector's Edition +"623460": + installDir: "Haunted Legends The Bronze Horseman Collector's Edition" launch: - config: oslist: windows executable: Haunted_Legends_The_Bronze_Horseman.exe type: default -'623470': - installDir: League of Light Wicked Harvest Collector's Edition +"623470": + installDir: "League of Light Wicked Harvest Collector's Edition" launch: - config: oslist: windows executable: LeagueOfLight_WickedHarvestCE.exe type: default -'623540': +"623540": installDir: Late For Work launch: - executable: Late For Work.exe type: vr - - arguments: '-vrmode oculus' + - arguments: "-vrmode oculus" config: - osarch: '64' + osarch: "64" oslist: windows executable: Late For Work.exe type: othervr -'623550': +"623550": installDir: Timen runner launch: - config: oslist: windows executable: game.exe type: none -'623570': +"623570": installDir: PingBall launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: PingBall.exe type: vr -'623580': +"623580": installDir: POBEDA launch: - config: @@ -294490,7 +289821,7 @@ oslist: macos executable: POBEDA.app type: none -'623640': +"623640": installDir: Mulaka launch: - config: @@ -294501,7 +289832,7 @@ oslist: macos executable: Mulaka.app type: default -'623670': +"623670": installDir: Moe Mekuri SP - 萌めくりSP - launch: - config: @@ -294510,40 +289841,40 @@ type: default nameLocalized: english: Moe Mekuri SP -'623700': +"623700": installDir: Rec Center Tycoon launch: - config: oslist: windows executable: Rec_Center_Tycoon.exe type: default -'623800': +"623800": installDir: Everything Must Fall launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: EverythingMustFall.exe type: vr -'623810': +"623810": installDir: Rabbit Story launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: RabbitStory.exe type: default - config: - osarch: '64' + osarch: "64" oslist: macos - executable: RabbitStory.app\\Contents\\MacOS\\RabbitStory + executable: "RabbitStory.app\\\\Contents\\\\MacOS\\\\RabbitStory" type: default -'623820': +"623820": installDir: Icesolation launch: - executable: Icesolation.exe type: vr -'623840': +"623840": installDir: Ambre - a heartbreaking kinetic novel launch: - config: @@ -294558,34 +289889,34 @@ oslist: macos executable: Ambre_-_Steam_Edition.app type: default -'623850': +"623850": installDir: Elite Encounter launch: - config: oslist: windows executable: EliteEncounter.exe type: vr -'623860': +"623860": installDir: Handball Manager - TEAM launch: - executable: hbm.exe type: none -'623880': +"623880": installDir: World of Speed launch: - - arguments: '-steam_secret' + - arguments: "-steam_secret" config: oslist: windows - executable: bin\\WorldOfSpeed.exe + executable: "bin\\\\WorldOfSpeed.exe" type: default -'623900': +"623900": installDir: Table Football Pro launch: - config: oslist: windows executable: football.exe type: default -'623920': +"623920": installDir: Chicago 1930 launch: - config: @@ -294594,13 +289925,13 @@ type: default - config: oslist: macos - executable: Contents\\MacOS\\Chicago 1930 + executable: "Contents\\\\MacOS\\\\Chicago 1930" type: default - config: oslist: linux executable: Chicago1930 type: default -'623930': +"623930": installDir: Solaria Moon launch: - config: @@ -294609,12 +289940,12 @@ executable: SolariaMoon.exe type: none - config: - osarch: '64' + osarch: "64" oslist: macos description: Launch - executable: SolariaMoon.app\\Contents\\MacOS\\SolariaMoon + executable: "SolariaMoon.app\\\\Contents\\\\MacOS\\\\SolariaMoon" type: default -'623940': +"623940": installDir: HIVESWAP ACT 1 launch: - config: @@ -294623,19 +289954,19 @@ type: none - config: oslist: macos - executable: Hiveswap-Act1.app\\Contents\\MacOS\\Hiveswap-Act1 + executable: "Hiveswap-Act1.app\\\\Contents\\\\MacOS\\\\Hiveswap-Act1" type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Linux-Public_Steam/Hiveswap-Act1.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Linux-Public_Steam/Hiveswap-Act1.x86_64 type: default -'624050': +"624050": installDir: Lazer Cops launch: - config: @@ -294643,12 +289974,12 @@ executable: LazerCops.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: LazerCops.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: LazerCops.x86_64 type: default @@ -294656,14 +289987,12 @@ oslist: macos executable: LazerCops_Mac.app type: default -'624060': +"624060": installDir: Shattered Steel launch: - config: oslist: windows description: Launch ShatteredSteel Single Player - description_loc: - english: Launch ShatteredSteel Single Player executable: Launch ShatteredSteel Single Player.bat type: option1 - config: @@ -294673,55 +290002,53 @@ - config: oslist: windows description: Launch ShatteredSteel Host Server - description_loc: - english: Launch ShatteredSteel Host Server executable: Launch ShatteredSteel Host Server.bat type: default - - arguments: '-conf \"./dosboxShatteredSteel.conf\" -conf \"./dosboxShatteredSteel_single.conf\" -noconsole' + - arguments: "-conf \\\"./dosboxShatteredSteel.conf\\\" -conf \\\"./dosboxShatteredSteel_single.conf\\\" -noconsole" config: oslist: macos executable: DOSBox/dosbox.app/Contents/MacOS/DOSBox type: default - - arguments: '-conf \"./dosboxShatteredSteel.conf\" -conf \"./dosboxShatteredSteel_single.conf\" -noconsole' + - arguments: "-conf \\\"./dosboxShatteredSteel.conf\\\" -conf \\\"./dosboxShatteredSteel_single.conf\\\" -noconsole" config: oslist: linux executable: dosbox/dosbox type: default -'624070': +"624070": installDir: Dragon Wars launch: - config: oslist: windows executable: Launch Dragon Wars.bat type: default - - arguments: '-conf \"./dosboxDragonWars.conf\" -conf \"./dosboxDragonWars_single.conf\" -noconsole' + - arguments: "-conf \\\"./dosboxDragonWars.conf\\\" -conf \\\"./dosboxDragonWars_single.conf\\\" -noconsole" config: oslist: macos - executable: DOSBox\\dosbox.app\\Contents\\MacOS\\DOSBox + executable: "DOSBox\\\\dosbox.app\\\\Contents\\\\MacOS\\\\DOSBox" type: default - - arguments: \"-conf\" \"./dosboxDragonWars.conf\" \"-conf\" \"./dosboxDragonWars_single.conf\" \"-noconsole\" + - arguments: "\\\"-conf\\\" \\\"./dosboxDragonWars.conf\\\" \\\"-conf\\\" \\\"./dosboxDragonWars_single.conf\\\" \\\"-noconsole\\\"" config: oslist: linux executable: dosbox/dosbox type: default -'624080': +"624080": installDir: Cyberia launch: - config: oslist: windows executable: Launch Cyberia.bat type: default - - arguments: '-conf \"config/dosbox_cyberia.conf\" -conf \"config/dosbox_cyberia_single.conf\" -noconsole' + - arguments: "-conf \\\"config/dosbox_cyberia.conf\\\" -conf \\\"config/dosbox_cyberia_single.conf\\\" -noconsole" config: oslist: macos executable: DOSBox/dosbox.app/Contents/MacOS/DOSBox type: default - - arguments: '-conf \"config/dosbox_cyberia.conf\" -conf \"config/dosbox_cyberia_single.conf\" -noconsole' + - arguments: "-conf \\\"config/dosbox_cyberia.conf\\\" -conf \\\"config/dosbox_cyberia_single.conf\\\" -noconsole" config: oslist: linux executable: dosbox/dosbox type: default -'624090': +"624090": installDir: Football Manager 2018 launch: - config: @@ -294736,7 +290063,7 @@ oslist: linux executable: fm type: none -'624120': +"624120": installDir: Football Manager Touch 2018 launch: - config: @@ -294751,31 +290078,31 @@ oslist: linux executable: fm type: none -'624260': +"624260": installDir: The Crane Trials Red Edition launch: - config: oslist: windows executable: The Crane Trials Red Edition.exe type: vr -'624270': +"624270": installDir: The Painscreek Killings launch: - executable: Painscreek.exe type: none -'624320': +"624320": installDir: Loyalty and Blood Viktor Origins launch: - config: oslist: windows executable: launcher.exe type: none -'624410': +"624410": installDir: Prank Bros launch: - executable: PrankBros.exe type: none -'624430': +"624430": installDir: AI Rebellion launch: - config: @@ -294784,133 +290111,133 @@ executable: AI Rebellion.exe type: vr - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch app Oculus VR executable: AI Rebellion.exe type: othervr -'624460': +"624460": installDir: Fantasynth launch: - config: oslist: windows executable: Fantasynth.exe type: vr -'624550': +"624550": installDir: Spiritual Warfare & Wisdom Tree Collection launch: - - arguments: '-conf ../Conf/spirit.cfg -noconsole' + - arguments: "-conf ../Conf/spirit.cfg -noconsole" config: oslist: linux description: Play Spiritual Warfare executable: dosbox type: default workingdir: DOS - - arguments: '-conf ../Conf/bibleunix.cfg -noconsole' + - arguments: "-conf ../Conf/bibleunix.cfg -noconsole" config: oslist: linux description: Play Bible Adventures executable: dosbox type: none workingdir: DOS - - arguments: '-conf ../Conf/exodus.cfg -noconsole' + - arguments: "-conf ../Conf/exodus.cfg -noconsole" config: oslist: linux - description: 'Play Exodus: Journey to the Promised Land' + description: "Play Exodus: Journey to the Promised Land" executable: dosbox type: none workingdir: DOS - - arguments: '-conf ../Conf/joshua.cfg -noconsole' + - arguments: "-conf ../Conf/joshua.cfg -noconsole" config: oslist: linux description: Play Joshua & The Battle of Jericho executable: dosbox type: none workingdir: DOS - - arguments: '-conf ../Conf/spirit.cfg -noconsole' + - arguments: "-conf ../Conf/spirit.cfg -noconsole" config: oslist: windows description: Play Spiritual Warfare executable: dosbox.exe type: default workingdir: DOS - - arguments: '-conf ../Conf/bible.cfg -noconsole' + - arguments: "-conf ../Conf/bible.cfg -noconsole" config: oslist: windows description: Play Bible Adventures executable: dosbox.exe type: none workingdir: DOS - - arguments: '-conf ../Conf/exodus.cfg -noconsole' + - arguments: "-conf ../Conf/exodus.cfg -noconsole" config: oslist: windows - description: 'Play Exodus: Journey to the Promised Land' + description: "Play Exodus: Journey to the Promised Land" executable: dosbox.exe type: none workingdir: DOS - - arguments: '-conf ../Conf/joshua.cfg -noconsole' + - arguments: "-conf ../Conf/joshua.cfg -noconsole" config: oslist: windows description: Play Joshua & The Battle of Jericho executable: dosbox.exe type: none workingdir: DOS - - arguments: '-conf ../Conf/spirit.cfg -noconsole' + - arguments: "-conf ../Conf/spirit.cfg -noconsole" config: oslist: macos description: Play Spiritual Warfare executable: DOSBox.app/Contents/MacOS/DOSBox type: default workingdir: DOS - - arguments: '-conf ../Conf/bibleunix.cfg -noconsole' + - arguments: "-conf ../Conf/bibleunix.cfg -noconsole" config: oslist: macos description: Play Bible Adventures executable: DOSBox.app/Contents/MacOS/DOSBox type: none workingdir: DOS - - arguments: '-conf ../Conf/exodus.cfg -noconsole' + - arguments: "-conf ../Conf/exodus.cfg -noconsole" config: oslist: macos - description: 'Play Exodus: Journey to the Promised Land' + description: "Play Exodus: Journey to the Promised Land" executable: DOSBox.app/Contents/MacOS/DOSBox type: none workingdir: DOS - - arguments: '-conf ../Conf/joshua.cfg -noconsole' + - arguments: "-conf ../Conf/joshua.cfg -noconsole" config: oslist: macos description: Play Joshua & The Battle of Jericho executable: DOSBox.app/Contents/MacOS/DOSBox type: none workingdir: DOS -'624560': - installDir: Meudsa's Labyrinth VR +"624560": + installDir: "Meudsa's Labyrinth VR" launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Medusa.exe type: vr - config: - osarch: '64' + osarch: "64" oslist: windows executable: Medusa.exe type: othervr -'624610': +"624610": installDir: RUN launch: - config: oslist: windows executable: run.exe type: vr -'624630': +"624630": installDir: TennisVR launch: - config: oslist: windows executable: TennisVR.exe type: vr -'624680': +"624680": installDir: Promethium launch: - config: @@ -294921,7 +290248,7 @@ oslist: macos executable: Promethium.app type: default -'624690': +"624690": installDir: NEXT JUMP Shmup Tactics launch: - config: @@ -294933,90 +290260,90 @@ executable: NEXT JUMP Shmup Tactics.exe type: default - config: - osarch: '64' + osarch: "64" oslist: macos executable: NEXT JUMP Shmup Tactics.app/Contents/MacOS/NEXT JUMP Shmup Tactics type: default -'624710': +"624710": installDir: Cow Milking Simulator launch: - config: oslist: windows executable: CowMilking.exe type: vr -'624780': +"624780": installDir: Cornflower Corbin launch: - config: oslist: windows executable: CornflowrCorbin.exe type: default -'624830': +"624830": installDir: Battle Summoners launch: - - arguments: '-screen-fullscreen 0' + - arguments: "-screen-fullscreen 0" config: oslist: windows executable: BattleSummoners.exe type: vr -'624870': +"624870": installDir: PretaVR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: preta.exe type: vr -'624890': +"624890": installDir: Adventure Craft launch: - config: oslist: windows executable: AdventureCraft.exe type: none -'624900': +"624900": installDir: COMET STRIKE launch: - executable: CometStrike.exe type: vr -'624910': +"624910": installDir: 3on3 FreeStyle launch: - config: oslist: windows executable: LauncherSteam.exe type: none -'624920': +"624920": installDir: Trapped With the Dolls VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: TrappedWithTheDolls.exe type: vr -'624930': {} -'624970': +"624930": {} +"624970": installDir: BZ2R launch: - executable: battlezone2.exe type: none -'624990': +"624990": installDir: The Mimic launch: - config: oslist: windows executable: TheMimic.exe type: default -'6250': +"6250": installDir: Making History The Calm and The Storm launch: - - executable: bin\\makehist.exe + - executable: "bin\\\\makehist.exe" workingdir: bin - description: Launch Making History Editor - executable: bin\\ed.exe + executable: "bin\\\\ed.exe" workingdir: bin -'625000': +"625000": installDir: Knightfall launch: - config: @@ -295025,14 +290352,14 @@ type: default - config: oslist: macos - executable: Knightfall.app\\Contents\\MacOS\\Knightfall + executable: "Knightfall.app\\\\Contents\\\\MacOS\\\\Knightfall" type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Knightfall.x86_64 type: none -'625010': +"625010": installDir: Little Lords of Twilight launch: - config: @@ -295043,86 +290370,86 @@ oslist: macos executable: llot_macosx.app type: default -'625040': +"625040": installDir: Ophidia launch: - executable: Ophidia.exe type: default -'625090': {} -'625120': +"625090": {} +"625120": installDir: LHOJ launch: - config: oslist: windows executable: LHOJ.exe type: none -'625140': +"625140": installDir: Ragnarok Journey launch: - executable: WPSteamLauncherWindows.exe type: none -'625160': +"625160": installDir: Scrollonoid launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: scrollonoid.exe type: default -'625180': +"625180": installDir: Elevator VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: elevator.exe type: vr -'625190': +"625190": installDir: Great_Pyramid_VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Great_Pyramid_VR.exe type: vr -'625220': +"625220": installDir: Building Blocks launch: - config: oslist: windows executable: Building Blocks.exe type: none -'625320': +"625320": installDir: No Clue VR launch: - config: oslist: windows executable: NoClueVR.exe type: vr -'625340': +"625340": installDir: XERA launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: XERA_Launcher.exe type: none -'625370': +"625370": installDir: A SECOND BEFORE US launch: - config: oslist: windows executable: ASBU.exe type: none -'625400': {} -'625410': +"625400": {} +"625410": installDir: Anomie launch: - config: oslist: windows executable: Anomie.exe type: default -'625430': +"625430": installDir: Doodle God Blitz launch: - config: @@ -295130,7 +290457,7 @@ executable: DoodleGod.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: DoodleGame type: default @@ -295138,63 +290465,54 @@ oslist: macos executable: DoodleGodBlitz.app type: default -'625460': +"625460": installDir: AssassinationClassroomVR launch: - executable: AssassinationClassroomVRBalloonChallengeTime.exe type: vr -'625470': +"625470": installDir: The Red Stare launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TheRedStare.exe type: vr -'625560': +"625560": installDir: TheOverdreamer launch: - executable: TheOverdreamer.exe type: default -'625580': +"625580": installDir: The Cleansing launch: - - arguments: >- - -FULLSCREEN - -RestHost=https://backend-dot-ferrous-iridium-181409.appspot.com/_ah/api/gameclientservicesinterface/v0.3/ - -GameMode=Shipping -log + - arguments: "-FULLSCREEN -RestHost=https://backend-dot-ferrous-iridium-181409.appspot.com/_ah/api/gameclientservicesinterface/v0.3/ -GameMode=Shipping -log" config: betakey: devdebug oslist: windows description: MasterServerTest instance executable: Jackers.exe type: default - - arguments: >- - -FULLSCREEN - -RestHost=https://backend-dot-masterservertc-165908.appspot.com/_ah/api/gameclientservicesinterface/v0.3/ - -GameMode=Shipping + - arguments: "-FULLSCREEN -RestHost=https://backend-dot-masterservertc-165908.appspot.com/_ah/api/gameclientservicesinterface/v0.3/ -GameMode=Shipping" config: betakey: devtesting oslist: windows description: The Cleansing Alpha executable: Jackers.exe type: default - - arguments: >- - -FULLSCREEN - -RestHost=https://backend-dot-masterservertc-165908.appspot.com/_ah/api/gameclientservicesinterface/v0.3/ - -GameMode=Shipping + - arguments: "-FULLSCREEN -RestHost=https://backend-dot-masterservertc-165908.appspot.com/_ah/api/gameclientservicesinterface/v0.3/ -GameMode=Shipping" config: oslist: windows executable: Jackers.exe type: default -'625630': +"625630": installDir: Journey Of Johann launch: - config: oslist: windows executable: Journey_of_Johann.exe type: default -'625680': +"625680": installDir: Way of the Passive Fist launch: - config: @@ -295207,26 +290525,26 @@ type: default - config: oslist: linux - executable: ./WayOfThePassiveFist + executable: "./WayOfThePassiveFist" type: default -'625690': - installDir: ' FINAL WORLD' +"625690": + installDir: " FINAL WORLD" launch: - config: oslist: windows executable: FinalWorld.exe type: openvroverlay -'625700': +"625700": installDir: Global Soccer Manager 2017 launch: - executable: manager17.exe type: default -'625730': +"625730": installDir: Cefore launch: - executable: Cefore.exe type: default -'625740': +"625740": installDir: Rifter launch: - config: @@ -295241,15 +290559,15 @@ oslist: linux executable: rifter type: default -'625770': +"625770": installDir: SMASHING THE BATTLE VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: STB_SteamVR.exe type: vr -'625780': +"625780": installDir: Magic Wand launch: - config: @@ -295258,41 +290576,41 @@ type: default - config: oslist: macos - executable: MagicWand_MAC.app\\Contents\\MacOS\\MagicWand_MAC + executable: "MagicWand_MAC.app\\\\Contents\\\\MacOS\\\\MagicWand_MAC" type: default - config: oslist: linux executable: MagicWand_LIN.x86 type: default -'625800': +"625800": installDir: Tomb Guard VR launch: - config: oslist: windows executable: vrtd.exe type: vr -'625820': +"625820": installDir: Bionic Battle Mutants launch: - config: oslist: windows executable: BBM.exe type: none -'625830': +"625830": installDir: BattleSky-VR launch: - config: oslist: windows executable: battleskyvr.exe type: vr -'625860': +"625860": installDir: God Awe-full Clicker launch: - config: oslist: windows executable: GAC.exe type: default -'625900': +"625900": installDir: Ashes of Kanaka launch: - config: @@ -295300,7 +290618,7 @@ description: Launch executable: Game.exe type: default -'625910': +"625910": installDir: Time Recoil launch: - config: @@ -295317,16 +290635,16 @@ description: Launch Time Recoil Linux executable: TimeRecoil type: default -'625940': +"625940": installDir: Tomato Jones 2 launch: - config: oslist: windows - executable: system\\Tomato Jones II.exe + executable: "system\\\\Tomato Jones II.exe" type: default - workingdir: system\\ -'625950': {} -'625960': + workingdir: "system\\\\" +"625950": {} +"625960": installDir: Stoneshard launch: - config: @@ -295340,7 +290658,7 @@ nameLocalized: schinese: 紫色晶石 tchinese: 紫色晶石 -'625980': +"625980": installDir: Yomawari Midnight Shadows launch: - config: @@ -295349,7 +290667,7 @@ type: default nameLocalized: japanese: 深夜廻 -'625990': +"625990": installDir: Welcome to Moreytown launch: - config: @@ -295364,11 +290682,11 @@ oslist: linux executable: WelcomeToMoreytown type: none -'626010': +"626010": installDir: Office Space Idle Profits launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: officespace.exe type: default @@ -295376,62 +290694,62 @@ oslist: macos executable: officespace.app type: default -'626020': +"626020": installDir: DungeonVR launch: - config: oslist: windows executable: Shadows.exe type: vr -'626130': - installDir: Dungeons of Tal'Doria +"626130": + installDir: "Dungeons of Tal'Doria" launch: - config: oslist: windows description: Start executable: TalDoria.exe type: none -'626160': +"626160": installDir: Awesome Machine launch: - config: oslist: windows executable: AwesomeMachine.exe type: default -'626170': +"626170": installDir: Apocalypse Night launch: - config: oslist: windows executable: nw.exe type: default -'626200': +"626200": installDir: DeadAlliance launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: MHGame.exe type: default -'626250': +"626250": installDir: Consortium The Tower launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Windows 64bit Version executable: thetower.exe type: default -'626460': {} -'626500': +"626460": {} +"626500": installDir: 30th Century Post Office launch: - config: oslist: windows executable: 30thCenturyPostOffice.exe type: vr -'626510': +"626510": installDir: Love Kami -Useless Goddess- launch: - config: @@ -295439,35 +290757,35 @@ description: Launch executable: AdvHD.exe type: default -'626550': +"626550": installDir: Prodigy launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Prodigy.exe type: default -'626570': +"626570": installDir: Microcosm launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: microcosm.exe type: vr -'626580': +"626580": installDir: Spellspire launch: - config: oslist: windows executable: Spellspire.exe type: default -'626600': +"626600": installDir: Lost Dimension launch: - executable: LostDimension.exe type: none -'626610': +"626610": installDir: TT_IOM launch: - config: @@ -295475,7 +290793,7 @@ description: Tourist Trophy executable: TouristTrophy.exe type: option1 -'626630': +"626630": installDir: Two Worlds II HD - Call of the Tenebrae launch: - config: @@ -295487,13 +290805,13 @@ description: Two Worlds II Call of the Tenebrae (DirectX 9) executable: TwoWorlds2_CoT.exe type: none - - arguments: '-adapter' + - arguments: "-adapter" config: oslist: windows description: Two Worlds II Call of the Tenebrae 3D executable: TwoWorlds2_DX10_CoT.exe type: none -'626640': +"626640": installDir: Lost Lands The Wanderer launch: - config: @@ -295504,11 +290822,11 @@ oslist: macos executable: Lost Lands 4 The Wanderer CE.app type: none -'626660': +"626660": installDir: Flipping Death launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: FlippingDeath.exe @@ -295518,139 +290836,139 @@ description: Launch executable: FlippingDeath.app type: default -'626680': +"626680": installDir: KreedzClimbing launch: - - arguments: '-game kz -steam +mat_dxlevel 95 +con_enable 1' + - arguments: "-game kz -steam +mat_dxlevel 95 +con_enable 1" description: Play Kreedz Climbing executable: hl2.exe type: default - - arguments: '-game kz -steam -sw -noborder +mat_dxlevel 95 +con_enable 1 ' + - arguments: "-game kz -steam -sw -noborder +mat_dxlevel 95 +con_enable 1 " description: Play Kreedz Climbing (Borderless Window) executable: hl2.exe type: none - - arguments: '-game kz -steam +con_enable 1 +mat_dxlevel 80' - description: 'Play Kreedz Climbing DX8 (Lowest quality, highest FPS)' + - arguments: "-game kz -steam +con_enable 1 +mat_dxlevel 80" + description: "Play Kreedz Climbing DX8 (Lowest quality, highest FPS)" executable: hl2.exe type: none - - arguments: '-game kz -steam -sw -noborder +con_enable 1 +mat_dxlevel 80' + - arguments: "-game kz -steam -sw -noborder +con_enable 1 +mat_dxlevel 80" description: Play Kreedz Climbing DX8 (Borderless Window) executable: hl2.exe type: none - - arguments: '-tool hammer' - executable: bin\\kz\\LaunchSDKTool.exe + - arguments: "-tool hammer" + executable: "bin\\\\kz\\\\LaunchSDKTool.exe" type: editor workingdir: bin - - arguments: '-game ModDemoViewer/KreedzClimbing -steam -toconsole +con_enable 1' + - arguments: "-game ModDemoViewer/KreedzClimbing -steam -toconsole +con_enable 1" description: Play KZMod 2.0 Legacy Demo Viewer executable: hl2.exe type: none - - arguments: '-game ModDemoViewer/KreedzClimbing -steam -toconsole -sw -noborder +con_enable 1' + - arguments: "-game ModDemoViewer/KreedzClimbing -steam -toconsole -sw -noborder +con_enable 1" description: Play KZMod 2.0 Legacy Demo Viewer (Borderless) executable: hl2.exe type: none - - arguments: '-game kz -steam -tools -nop4' - description: 'Launch Tools Mode (Particles, etc...)' + - arguments: "-game kz -steam -tools -nop4" + description: "Launch Tools Mode (Particles, etc...)" executable: hl2.exe type: none - - arguments: '-game kz -steam -tools -nop4 -sw -noborder' + - arguments: "-game kz -steam -tools -nop4 -sw -noborder" description: Launch Tools Mode (Borderless Window) executable: hl2.exe type: none -'626690': +"626690": installDir: SWORD ART ONLINE FATAL BULLET launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SAOFB_Launcher.exe type: default -'626730': +"626730": installDir: The Incredible VR Game Show launch: - config: oslist: windows executable: VRGS.exe type: vr -'626760': +"626760": installDir: VRtender launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: VRtender.exe type: vr -'626780': - installDir: Botanica Into the Unknown Collector's Edition +"626780": + installDir: "Botanica Into the Unknown Collector's Edition" launch: - config: oslist: windows executable: Botanica_IntoTheUnknownCE.exe type: default -'626810': {} -'626840': - installDir: Shadow Wolf Mysteries Curse of the Full Moon Collector's Edition +"626810": {} +"626840": + installDir: "Shadow Wolf Mysteries Curse of the Full Moon Collector's Edition" launch: - config: oslist: windows executable: Shadow Wolf Mysteries.exe type: default -'6270': +"6270": installDir: Ducati World Championship launch: - executable: Ducati.exe -'627070': +"627070": installDir: inVokeR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: inVokeR.exe type: vr -'627220': +"627220": installDir: Order Up launch: - executable: Food Truck VR.exe type: vr -'627270': +"627270": installDir: Injustice2 launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: Binaries\\Retail\\Injustice2.exe + executable: "Binaries\\\\Retail\\\\Injustice2.exe" type: default -'627350': +"627350": installDir: Mysteria launch: - executable: mysteria.exe type: none nameLocalized: japanese: 英国探偵ミステリア The Crown -'627380': {} -'627410': +"627380": {} +"627410": installDir: BlackEye launch: - - arguments: '@f+ @INFOOFF' + - arguments: "@f+ @INFOOFF" config: oslist: windows description: Full screen executable: BlackEye.win32_steam.exe type: option1 - - arguments: '@f1920x1080 @z0.9 @INFOOFF' + - arguments: "@f1920x1080 @z0.9 @INFOOFF" config: oslist: windows description: Windowed executable: BlackEye.win32_steam.exe type: option2 -'627420': +"627420": installDir: Sorgina A Tale of Witches launch: - config: oslist: windows executable: SorginaATaleOfWitches.exe type: none -'627450': +"627450": installDir: Rugby18 launch: - executable: Exe/Rugby18.exe @@ -295659,27 +290977,27 @@ - executable: Exe/Detect.exe type: config workingdir: Exe -'627460': +"627460": installDir: THORNYWAY - The Game launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: TH_GAME_x86.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: TH_GAME_x64.exe type: default -'627570': +"627570": installDir: VentureVerse launch: - config: oslist: windows executable: VENTUREVERSE Legend of Ulora.exe type: default -'627620': +"627620": installDir: Intelligent Design An Evolutionary Sandbox launch: - config: @@ -295687,20 +291005,20 @@ executable: intelligentdesign.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: intelligentDesign.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: intelligentDesign.x86_64 type: default - config: oslist: macos - executable: IntelligentDesignMac.app\\Contents\\MacOS\\IntelligentDesignMac + executable: "IntelligentDesignMac.app\\\\Contents\\\\MacOS\\\\IntelligentDesignMac" type: default -'627670': +"627670": installDir: Rocket Wars launch: - config: @@ -295708,16 +291026,16 @@ executable: Rocket Wars.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Rocket Wars.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Rocket Wars.x86_64 type: default -'627690': +"627690": installDir: IdleChampions launch: - config: @@ -295728,7 +291046,7 @@ oslist: macos executable: IdleDragonsMac.app/Contents/MacOS/Idle Champions type: default -'627820': +"627820": installDir: England Exchange launch: - config: @@ -295743,28 +291061,28 @@ oslist: windows executable: EnglandExchange.exe type: default -'627890': +"627890": installDir: Reventa launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Reventa.exe type: default -'627910': +"627910": installDir: Bubsy The Woolies Strike Back launch: - config: oslist: windows - executable: launcher_steam\\BubsyLauncher.exe + executable: "launcher_steam\\\\BubsyLauncher.exe" type: default - workingdir: launcher_steam\\ -'627950': + workingdir: "launcher_steam\\\\" +"627950": installDir: 1914 Prelude to Chaos launch: - executable: Game.exe type: none -'628020': +"628020": installDir: San6WPK launch: - config: @@ -295773,7 +291091,7 @@ type: none nameLocalized: japanese: 三國志VI with パワーアップキット -'628030': +"628030": installDir: San7WPK launch: - config: @@ -295783,7 +291101,7 @@ nameLocalized: japanese: 三國志VII with パワーアップキット tchinese: 三國志VII with 威力加強版 -'628040': +"628040": installDir: San8WPK launch: - config: @@ -295793,7 +291111,7 @@ nameLocalized: japanese: 三國志VIII with パワーアップキット tchinese: 三國志VIII with 威力加強版 -'628050': +"628050": installDir: San9WPK launch: - config: @@ -295803,7 +291121,7 @@ nameLocalized: japanese: 三國志IX with パワーアップキット tchinese: 三國志IX with 威力加強版 -'628060': +"628060": installDir: San10WPK launch: - config: @@ -295813,7 +291131,7 @@ nameLocalized: japanese: 三國志X with パワーアップキット tchinese: 三國志X with 威力加強版 -'628070': +"628070": installDir: San11WPK launch: - config: @@ -295823,7 +291141,7 @@ nameLocalized: japanese: 三國志11 with パワーアップキット tchinese: 三國志11 with 威力加強版 -'628080': +"628080": installDir: San12WPK launch: - config: @@ -295833,7 +291151,7 @@ nameLocalized: japanese: 三國志12 with パワーアップキット tchinese: 三國志12 with 威力加強版 -'628090': +"628090": installDir: Nobunaga5WPK launch: - config: @@ -295842,7 +291160,7 @@ type: none nameLocalized: japanese: 信長の野望・覇王伝 with パワーアップキット -'628100': +"628100": installDir: Nobunaga7WPK launch: - config: @@ -295851,7 +291169,7 @@ type: none nameLocalized: japanese: 信長の野望・将星録 with パワーアップキット -'628110': +"628110": installDir: Nobunaga8WPK launch: - config: @@ -295860,7 +291178,7 @@ type: none nameLocalized: japanese: 信長の野望・烈風伝 with パワーアップキット -'628120': +"628120": installDir: Nobunaga9WPK launch: - config: @@ -295869,7 +291187,7 @@ type: none nameLocalized: japanese: 信長の野望・嵐世記 with パワーアップキット -'628130': +"628130": installDir: Nobunaga10WPK launch: - config: @@ -295878,7 +291196,7 @@ type: none nameLocalized: japanese: 信長の野望・蒼天録 with パワーアップキット -'628140': +"628140": installDir: Nobunaga11WPK launch: - config: @@ -295887,7 +291205,7 @@ type: none nameLocalized: japanese: 信長の野望・天下創世 with パワーアップキット -'628150': +"628150": installDir: Eiketsuden1 launch: - config: @@ -295896,7 +291214,7 @@ type: none nameLocalized: japanese: 三國志英傑伝 -'628160': +"628160": installDir: GenghisKhan3 launch: - config: @@ -295905,7 +291223,7 @@ type: none nameLocalized: japanese: 蒼き狼と白き牝鹿・元朝秘史 -'628170': +"628170": installDir: Daikoukai2 launch: - config: @@ -295914,21 +291232,21 @@ type: none nameLocalized: japanese: 大航海時代 II -'628180': +"628180": installDir: WinningPost1 launch: - config: oslist: windows executable: WinningPost1_Launcher.exe type: none -'628190': +"628190": installDir: Heroes of Arzar launch: - config: oslist: windows executable: gow.exe type: default -'628200': +"628200": installDir: The Invisible Hand launch: - config: @@ -295939,10 +291257,10 @@ oslist: linux executable: TIH.x86_64 type: none -'628290': +"628290": installDir: All Walls Must Fall launch: - - arguments: '-SaveToUserDir' + - arguments: "-SaveToUserDir" config: oslist: windows executable: ProjectDisco.exe @@ -295951,19 +291269,19 @@ oslist: macos executable: ProjectDisco.app type: none - - arguments: '-nocore' + - arguments: "-nocore" config: oslist: linux executable: ProjectDisco.sh type: none -'628320': +"628320": installDir: Roah launch: - config: oslist: windows executable: Roah.exe type: default -'628330': +"628330": installDir: Warlocks 2 God Slayers launch: - config: @@ -295971,8 +291289,8 @@ oslist: windows executable: LauncherNNG.exe type: default -'628340': {} -'628350': +"628340": {} +"628350": installDir: Lazaretto launch: - config: @@ -295983,22 +291301,22 @@ oslist: macos executable: Lazaretto.app type: default -'628400': {} -'628420': {} -'628440': +"628400": {} +"628420": {} +"628440": installDir: MultiplayerFPSTutorialDemo launch: - executable: MultiplayerFPSDemo.exe type: default -'628450': +"628450": installDir: Magnificent Ships - Volume 2 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Magnificent Ships - Volume 2.exe type: vr -'628460': +"628460": installDir: Lily of the Valley launch: - config: @@ -296016,20 +291334,20 @@ description: Launch executable: Lily of the Valley.app type: none -'628490': {} -'628520': {} -'628530': +"628490": {} +"628520": {} +"628530": installDir: Blobby Tennis launch: - - arguments: '--openvr' + - arguments: "--openvr" config: - osarch: '64' + osarch: "64" oslist: windows executable: BlobbyTennis.exe type: vr - - arguments: '--oculusvr' + - arguments: "--oculusvr" config: - osarch: '64' + osarch: "64" oslist: windows executable: BlobbyTennis.exe type: othervr @@ -296037,7 +291355,7 @@ oslist: macos executable: BlobbyTennis type: vr -'628560': +"628560": installDir: Bebop and Tempo launch: - config: @@ -296048,23 +291366,23 @@ oslist: macos executable: Bebop and Tempo.app type: default -'628570': +"628570": installDir: Trivia Night launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TriviaNight.exe type: default -'628580': +"628580": installDir: Miniballist launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Miniballist.exe type: default -'628610': +"628610": installDir: AIRIS launch: - config: @@ -296079,28 +291397,28 @@ oslist: linux executable: AIRIS.sh type: default -'628650': +"628650": installDir: ANWK launch: - config: oslist: windows - executable: A New World Kingdoms\\A New World Kingdoms.exe + executable: "A New World Kingdoms\\\\A New World Kingdoms.exe" type: default - config: oslist: macos - executable: A New World Kingdoms.app\\Contents\\MacOS\\A New World Kingdoms + executable: "A New World Kingdoms.app\\\\Contents\\\\MacOS\\\\A New World Kingdoms" type: default - config: - osarch: '32' + osarch: "32" oslist: linux - executable: A New World Kingdoms\\A New World Kingdoms.86 + executable: "A New World Kingdoms\\\\A New World Kingdoms.86" type: default - config: - osarch: '64' + osarch: "64" oslist: linux - executable: A New World Kingdoms\\A New World Kingdoms.86_64 + executable: "A New World Kingdoms\\\\A New World Kingdoms.86_64" type: default -'628660': +"628660": installDir: Lode Runner Legacy launch: - config: @@ -296111,7 +291429,7 @@ oslist: macos executable: LodeRunner_Legacy.app type: none -'628670': +"628670": installDir: Hellpoint launch: - config: @@ -296129,33 +291447,33 @@ description: Launch executable: Hellpoint.app type: default -'628700': +"628700": installDir: The Flaws of Gravity launch: - config: oslist: windows - executable: current_build\\FoG.exe + executable: "current_build\\\\FoG.exe" type: default -'628710': +"628710": installDir: Hell Warders launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: HellWarders.exe type: none -'628720': +"628720": installDir: GODS Remastered launch: - config: oslist: macos - executable: GodsRemastered.app\\Contents\\MacOS\\GodsRemastered + executable: "GodsRemastered.app\\\\Contents\\\\MacOS\\\\GodsRemastered" type: default - config: oslist: windows executable: Gods.exe type: default -'628730': +"628730": installDir: SantaVN launch: - config: @@ -296164,21 +291482,21 @@ type: default nameLocalized: koreana: 산타는 교복을 입을 수 밖에 없어 -'628750': +"628750": installDir: aMAZE 2 launch: - config: oslist: windows executable: aMAZE2.exe type: default -'628760': +"628760": installDir: The Adventurer - Episode 1 Beginning of the End launch: - config: oslist: windows executable: sgb_rpgplayer.exe type: default -'628770': +"628770": installDir: Tangledeep launch: - config: @@ -296191,12 +291509,12 @@ executable: Tangledeep.app type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: Tangledeep.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Tangledeep.x86_64 type: default @@ -296206,7 +291524,7 @@ type: default nameLocalized: schinese: 纷乱深渊 - 致敬超任黄金时代的Roguelike JRPG -'628800': +"628800": installDir: Super Hydorah launch: - config: @@ -296214,17 +291532,17 @@ description: The space opera shmup executable: Super_Hydorah.exe type: default -'628820': +"628820": installDir: alala Wake Mi Up! launch: - config: oslist: windows executable: alala_WakeMiUp.exe type: vr -'628840': {} -'628850': {} -'628860': {} -'628870': +"628840": {} +"628850": {} +"628860": {} +"628870": installDir: Soccer Manager Arena launch: - config: @@ -296235,19 +291553,19 @@ oslist: macos executable: Soccer Manager Arena.app type: none -'628880': {} -'628890': +"628880": {} +"628890": installDir: NOBUNAGAS_AMBITION_TAISHI launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: NOBU15_Launcher.exe type: none nameLocalized: japanese: 信長の野望・大志 tchinese: 信長之野望・大志 -'628900': +"628900": installDir: Terra Mystica launch: - config: @@ -296259,16 +291577,16 @@ executable: txm.app type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: txm.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: txm.x86_64 type: none -'628920': +"628920": installDir: Tomboys Need Love Too! launch: - config: @@ -296284,41 +291602,41 @@ executable: TNLT.app type: none - config: - ownsdlc: '942100' + ownsdlc: "942100" description: Soundtrack executable: OpenDirectory.py type: none -'628940': +"628940": installDir: Liz Before the Plague launch: - config: oslist: windows executable: LizBtP.exe type: vr -'628950': +"628950": installDir: Nephise Begins launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: NephiseBegins.exe type: default -'628960': +"628960": installDir: Journey to Alien Worlds launch: - config: oslist: windows executable: Journey to Alien Worlds.exe type: vr -'6290': +"6290": installDir: Alien Shooter Vengeance launch: - executable: AlienShooter.exe -'629000': +"629000": installDir: Lydia launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Lydia.exe type: none @@ -296326,7 +291644,7 @@ oslist: macos executable: LydiaMac.app type: none -'629030': +"629030": installDir: Employee Recycling Center launch: - config: @@ -296345,16 +291663,16 @@ oslist: macos executable: Employee_Recycling_Center.app type: default -'629040': +"629040": installDir: Skytropolis launch: - - arguments: '-vrmode SteamVR' + - arguments: "-vrmode SteamVR" config: oslist: windows description: Launch Skytropolis VR executable: Skytropolis.exe type: vr - - arguments: '-vrmode none' + - arguments: "-vrmode none" config: oslist: windows description: Launch Skytropolis Desktop (non-VR) @@ -296365,36 +291683,36 @@ description: Launch executable: Skytropolis.app type: none -'629080': - installDir: Beyond Light Advent Collector's Edition +"629080": + installDir: "Beyond Light Advent Collector's Edition" launch: - config: oslist: windows executable: Beyond_LightAdvent_CE.exe type: default -'629090': +"629090": installDir: Horace launch: - config: oslist: windows executable: Horace/Horace.exe type: default -'629100': - installDir: 'Cadenza Music, Betrayal and Death Collector''s Edition' +"629100": + installDir: "Cadenza Music, Betrayal and Death Collector's Edition" launch: - config: oslist: windows executable: Cadenza_MusicBetrayalAndDeath_CE.exe type: default -'629110': - installDir: Dark Parables Ballad of Rapunzel Collector's Edition +"629110": + installDir: "Dark Parables Ballad of Rapunzel Collector's Edition" launch: - config: oslist: windows executable: DarkParables_BalladOfRapunzel_CE.exe type: default -'629180': {} -'629210': +"629180": {} +"629210": installDir: Extra Terrestrial Perception launch: - config: @@ -296409,7 +291727,7 @@ oslist: linux executable: quinn.sh type: default -'629220': +"629220": installDir: Rise of Insanity launch: - config: @@ -296417,25 +291735,25 @@ description: Standard Version executable: Rise Of Insanity.exe type: default - - arguments: '-vrmode OpenVR' + - arguments: "-vrmode OpenVR" config: oslist: windows description: SteamVR Version executable: Rise Of Insanity.exe type: vr - - arguments: '-vrmode Oculus' + - arguments: "-vrmode Oculus" config: oslist: windows description: Oculus VR Version (untested) executable: Rise Of Insanity.exe type: othervr - - arguments: '-screen-fullscreen 0' + - arguments: "-screen-fullscreen 0" config: - osarch: '64' + osarch: "64" oslist: linux executable: Rise Of Insanity.x86 type: default -'629230': +"629230": installDir: TheStoryTale launch: - config: @@ -296446,20 +291764,20 @@ oslist: linux executable: TheStorytale_0_40 type: default -'629240': +"629240": installDir: ToiletRun launch: - config: oslist: windows executable: Toilet Run.exe type: default -'629270': {} -'629280': {} -'629340': +"629270": {} +"629280": {} +"629340": installDir: Possession launch: - config: - osarch: '64' + osarch: "64" oslist: linux executable: possession.sh type: default @@ -296471,34 +291789,34 @@ oslist: macos executable: Possession.app type: default -'629350': {} -'629360': +"629350": {} +"629360": installDir: The Falling Nights launch: - config: oslist: windows executable: The_Falling_Nights.exe type: none -'629380': +"629380": installDir: Cosmic Pioneer launch: - config: oslist: windows executable: Game.exe type: default -'629400': +"629400": installDir: Mall Mayhem launch: - config: oslist: windows executable: Mall Mayhem.exe type: default -'629410': +"629410": installDir: VectorWave launch: - executable: VectorWave.exe type: vr -'629420': +"629420": installDir: Super Perspective launch: - config: @@ -296509,7 +291827,7 @@ oslist: macos executable: SuperPerspective.app type: default -'629430': +"629430": installDir: The Last Birdling launch: - config: @@ -296524,7 +291842,7 @@ oslist: linux executable: birdling.sh type: none -'629440': +"629440": installDir: Graze Counter launch: - config: @@ -296532,8 +291850,8 @@ description: Launch Key Config executable: KeyConfig.exe type: default -'629450': {} -'629540': +"629450": {} +"629540": installDir: AAWoM launch: - config: @@ -296546,7 +291864,7 @@ description: Alien Arena for Linux executable: aawom.sh type: default -'629550': +"629550": installDir: PlaceboEffect launch: - config: @@ -296554,46 +291872,46 @@ description: Launch Placebo Effect! executable: pe-game.exe type: default -'629640': +"629640": installDir: ShipBattle launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SeaBattleVR.exe type: vr -'629650': +"629650": installDir: Symphonic Rain launch: - executable: SR.exe type: none nameLocalized: japanese: シンフォニック=レイン -'629690': +"629690": installDir: Vaporum launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: in Borderless Window Mode executable: VaporumGame.exe type: option1 - - arguments: '-window-mode exclusive' + - arguments: "-window-mode exclusive" config: - osarch: '64' + osarch: "64" oslist: windows description: in Exclusive Fullscreen Mode executable: VaporumGame.exe type: option2 - config: - osarch: '64' + osarch: "64" oslist: linux description: in Borderless Window Mode executable: VaporumGame.exe type: option1 - - arguments: '-window-mode exclusive' + - arguments: "-window-mode exclusive" config: - osarch: '64' + osarch: "64" oslist: linux description: in Exclusive Fullscreen Mode executable: VaporumGame.exe @@ -296603,13 +291921,13 @@ description: in Borderless Window Mode executable: VaporumGame.app/Contents/MacOS/VaporumGame type: option1 - - arguments: '-window-mode exclusive' + - arguments: "-window-mode exclusive" config: oslist: macos description: in Exclusive Fullscreen Mode executable: VaporumGame.app/Contents/MacOS/VaporumGame type: option2 -'629720': +"629720": installDir: Fuzecat launch: - config: @@ -296620,10 +291938,10 @@ oslist: macos executable: Fuzecat.app type: none -'629730': +"629730": installDir: Blade & Sorcery launch: - - arguments: '-vrmode openvr' + - arguments: "-vrmode openvr" config: oslist: windows executable: BladeAndSorcery.exe @@ -296632,15 +291950,15 @@ oslist: windows executable: BladeAndSorcery.exe type: othervr -'629760': +"629760": installDir: Mordhau launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Mordhau.exe type: default -'629770': +"629770": installDir: Tiny Echo launch: - config: @@ -296658,42 +291976,42 @@ description: Launch executable: TinyEcho.x86 type: none -'629780': +"629780": installDir: WizzBall launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: wizzBall.exe type: vr -'629810': +"629810": installDir: Galact Quest launch: - config: oslist: windows executable: GalactQuest.exe type: default -'629820': +"629820": installDir: Maneater launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Maneater.exe type: default -'629840': +"629840": installDir: Caligo launch: - config: oslist: windows executable: Caligo.exe type: default -'629860': +"629860": installDir: Spelunker Party! launch: - executable: Spelunker Party.exe type: none -'629910': +"629910": installDir: Clicker Heroes 2 launch: - config: @@ -296706,35 +292024,35 @@ description: Launch executable: ClickerHeroes2.app type: none -'629960': +"629960": installDir: Trajectory of summer flower launch: - config: oslist: windows executable: SummerFlower.exe type: default -'629970': +"629970": installDir: Beast Pets launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Default executable: BeastPets.exe type: vr -'630': +"630": installDir: Alien Swarm launch: - - arguments: '-novid +asw_stats_track 1' + - arguments: "-novid +asw_stats_track 1" executable: swarm.exe -'6300': +"6300": installDir: Dreamfall The Longest Journey launch: - executable: dreamfall.exe -'63000': +"63000": installDir: Hoard launch: - - arguments: '- Launch' + - arguments: "- Launch" config: oslist: windows executable: win32/Reuben.exe @@ -296747,24 +292065,24 @@ oslist: linux executable: x86/Reuben.bin.x86 workingdir: x86 -'630020': +"630020": installDir: TheFirstClass launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TFC.exe type: vr -'630030': +"630030": installDir: War Tech Fighters launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: WTF.exe type: none -'630040': {} -'630050': +"630040": {} +"630050": installDir: Dead Exit launch: - config: @@ -296772,14 +292090,14 @@ executable: DeadExit.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: DeadExit.x86_64 type: none -'630060': +"630060": installDir: consummate launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows description: 正常启动 @@ -296792,62 +292110,62 @@ type: option2 nameLocalized: schinese: 寇莎梅特:困世迷情 -'630070': +"630070": installDir: Tengutana launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Tengutana.exe type: vr -'630080': +"630080": installDir: EggTime2 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: EggTime2.exe type: vr -'630100': +"630100": installDir: SoulWorker launch: - - arguments: '--ip 194.187.19.129 --port 10000 --steam' + - arguments: "--ip 194.187.19.129 --port 10000 --steam" executable: SoulWorker.exe type: none - - arguments: '--ip 79.110.95.63 --port 10000 --steam' + - arguments: "--ip 79.110.95.63 --port 10000 --steam" config: betakey: qa1-branch executable: SoulWorker.exe type: none - - arguments: '--ip 79.110.95.65 --port 10000 --steam' + - arguments: "--ip 79.110.95.65 --port 10000 --steam" config: betakey: qa2-branch executable: SoulWorker.exe type: none - - arguments: '--ip 79.110.95.66 --port 10000 --steam' + - arguments: "--ip 79.110.95.66 --port 10000 --steam" config: betakey: qa3-branch executable: SoulWorker.exe type: none - - arguments: '--ip 79.110.95.67 --port 10000 --steam' + - arguments: "--ip 79.110.95.67 --port 10000 --steam" config: betakey: qa4-branch executable: SoulWorker.exe type: none - - arguments: '--ip 194.187.19.129 --port 10000 --steam' + - arguments: "--ip 194.187.19.129 --port 10000 --steam" config: betakey: beta executable: SoulWorker.exe type: none -'630130': +"630130": installDir: Top Punch launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: x64\\Top Punch x64.exe + executable: "x64\\\\Top Punch x64.exe" type: default -'630140': +"630140": installDir: Sky Clash Lords of Clans launch: - config: @@ -296858,16 +292176,16 @@ oslist: macos executable: SkyClash.app type: default -'630160': +"630160": installDir: Super Rocket Shootout launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SRS.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: SRS.exe type: default @@ -296876,66 +292194,66 @@ executable: SRS.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: SRS.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: SRS.x86_64 type: default -'630170': - installDir: Murder In Tehran's Alleys 1933 +"630170": + installDir: "Murder In Tehran's Alleys 1933" launch: - - executable: MurderInTehran'sAlleys1312.exe + - executable: "MurderInTehran'sAlleys1312.exe" type: default -'630240': - installDir: Nevertales Smoke and Mirrors Collector's Edition +"630240": + installDir: "Nevertales Smoke and Mirrors Collector's Edition" launch: - config: oslist: windows executable: Nevertales_SmokeAndMirrors_CE.exe type: default -'630260': +"630260": installDir: Tilted Mind launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: MazeTilt.exe type: vr - config: - osarch: '64' + osarch: "64" oslist: windows description: with Body Tracking (3 Vive Trackers) executable: MazeTilt.exe type: vr - - arguments: '-only2trackers' + - arguments: "-only2trackers" config: - osarch: '64' + osarch: "64" oslist: windows description: with Body Tracking (2 Vive Trackers) executable: MazeTilt.exe type: vr -'630310': +"630310": installDir: The Mummy launch: - config: oslist: windows executable: Mummy.exe type: default -'630360': +"630360": installDir: Megacity Builder launch: - - executable: MCB\\MegaCity Builder.exe + - executable: "MCB\\\\MegaCity Builder.exe" type: default -'630390': +"630390": installDir: Safari Venture launch: - executable: SafariVenture.exe type: none -'630400': +"630400": installDir: Explottens launch: - config: @@ -296946,76 +292264,76 @@ oslist: windows executable: explottens.exe type: none -'630440': {} -'630460': - installDir: Fist's Elimination Tower +"630440": {} +"630460": + installDir: "Fist's Elimination Tower" launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Fist.exe type: default - config: - osarch: '64' + osarch: "64" oslist: macos executable: Fist.app type: default -'630470': +"630470": installDir: Solitaire Club launch: - executable: SolitaireClub.exe type: default -'630490': +"630490": installDir: StormArea51 launch: - executable: Area51.exe type: none -'630510': +"630510": installDir: PsychLabVR launch: - executable: myApp_3.exe type: vr -'630550': +"630550": installDir: Faulty Apprentice launch: - config: oslist: windows executable: Faulty Apprentice.exe type: default -'630610': +"630610": installDir: Disneyland Adventures launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Disney.exe type: default -'630630': +"630630": installDir: Apex launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Apex.exe type: vr -'630640': +"630640": installDir: SEQUENCESTORM launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SequenceStorm.exe type: none -'630650': {} -'630670': +"630650": {} +"630670": installDir: Call of the Ocean launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: CallOfTheOcean.exe type: vr -'630690': +"630690": installDir: Interplay Solitaire launch: - config: @@ -297024,19 +292342,19 @@ type: default - config: oslist: macos - executable: InterplaySolitaire.app\\Contents\\MacOS\\InterplaySolitaire + executable: "InterplaySolitaire.app\\\\Contents\\\\MacOS\\\\InterplaySolitaire" type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: InterplaySolitaire.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: InterplaySolitaire.x86_64 type: default -'630720': +"630720": installDir: Mana Spark launch: - config: @@ -297045,13 +292363,13 @@ type: none - config: oslist: macos - executable: ManaSpark.app\\Contents\\MacOS\\ManaSpark + executable: "ManaSpark.app\\\\Contents\\\\MacOS\\\\ManaSpark" type: none - config: oslist: linux executable: ManaSpark.x86_64 type: none -'630830': +"630830": installDir: The Legacy Forgotten Gates launch: - config: @@ -297062,12 +292380,12 @@ oslist: macos executable: The Legacy Forgotten Gates.app type: none -'630870': +"630870": installDir: Chuusotsu - 1st Graduation Time After Time launch: - executable: Chuusotsu! 1st graduation.exe type: none -'6310': +"6310": installDir: The Longest Journey launch: - config: @@ -297082,73 +292400,73 @@ oslist: windows executable: game.exe type: none - workingdir: . -'631010': {} -'63110': + workingdir: "." +"631010": {} +"63110": installDir: Alter Ego launch: - executable: AlterEgo.exe -'631120': +"631120": installDir: Raybeem launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Raybeem.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: Raybeem.exe type: vr -'631220': +"631220": installDir: Puzzle Showdown 4K launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: PuzzleEngine.exe type: none -'631240': - installDir: Haunted Train Spirits of Charon Collector's Edition +"631240": + installDir: "Haunted Train Spirits of Charon Collector's Edition" launch: - config: oslist: windows executable: HauntedTrain_SpiritsOfCharonCE.exe type: default -'631250': +"631250": installDir: Double Clue Solitaire Stories launch: - config: oslist: windows executable: Double Clue - Solitaire Stories.exe type: default -'631260': - installDir: PuppetShow Souls of the Innocent Collector's Edition +"631260": + installDir: "PuppetShow Souls of the Innocent Collector's Edition" launch: - config: oslist: windows executable: PuppetShow Souls of the Innocent.exe type: default -'631270': +"631270": installDir: Haunted Hotel II Believe the Lies launch: - config: oslist: windows executable: HauntedHotel2.exe type: default -'631280': - installDir: Redemption Cemetery The Island of the Lost Collector's Edition +"631280": + installDir: "Redemption Cemetery The Island of the Lost Collector's Edition" launch: - config: oslist: windows executable: Redemption_Cemetery_The_Island_of_the_Lost_CE.exe type: default -'631490': +"631490": installDir: Son of Scoregasm launch: - config: - osarch: '64' + osarch: "64" oslist: linux executable: start.sh type: default @@ -297160,13 +292478,13 @@ oslist: macos executable: Son of Scoregasm.app type: default -'631510': +"631510": installDir: Devil May Cry HD Collection launch: - executable: dmcLauncher.exe type: none -'631530': {} -'631540': +"631530": {} +"631540": installDir: Community Inc launch: - config: @@ -297177,14 +292495,14 @@ oslist: macos executable: CommunityINC.app type: none -'631570': +"631570": installDir: Whispers of a Machine launch: - config: oslist: windows executable: Whispers.exe type: default - - arguments: '--setup' + - arguments: "--setup" config: oslist: windows executable: Whispers.exe @@ -297193,22 +292511,22 @@ oslist: macos executable: WOAM.app type: default -'631660': +"631660": installDir: Immersion Chess launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ImmersionChess.exe type: vr - - arguments: '-novr' + - arguments: "-novr" config: - osarch: '64' + osarch: "64" oslist: windows executable: ImmersionChess.exe type: default -'631670': {} -'631770': +"631670": {} +"631770": installDir: Pixplode launch: - config: @@ -297219,7 +292537,7 @@ oslist: macos executable: Pixplode.app type: none -'631810': +"631810": installDir: Galactic Gallery launch: - config: @@ -297227,23 +292545,23 @@ description: Launch Vive or Oculus executable: GalacticGallery_steam.exe type: vr -'631830': +"631830": installDir: Sarcophag launch: - config: oslist: windows executable: Sarcophag.exe type: none -'631860': {} -'631900': +"631860": {} +"631900": installDir: Airtone launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Airtone.exe type: vr -'631920': +"631920": installDir: Somewhere on Zibylon launch: - config: @@ -297251,45 +292569,45 @@ description: Launch executable: PLAY.exe type: none -'631940': {} -'631950': +"631940": {} +"631950": installDir: Caelum Into the Sky Vol1 launch: - config: oslist: windows executable: CaelumITS.exe type: vr -'631960': {} -'631980': +"631960": {} +"631980": installDir: Immortal Planet launch: - config: oslist: windows executable: Immortal Planet.exe type: default -'631990': - installDir: 'Remember, Remember' +"631990": + installDir: "Remember, Remember" launch: - config: oslist: windows description: Launch - executable: 'Remember, Remember.exe' + executable: "Remember, Remember.exe" type: none - config: oslist: macos description: Launch - executable: 'Remember, Remember.sh' + executable: "Remember, Remember.sh" type: none - config: oslist: linux description: Launch - executable: 'Remember, Remember.sh' + executable: "Remember, Remember.sh" type: none -'63200': +"63200": installDir: Monday Night Combat launch: - - executable: binaries\\win32\\mnc.exe -'632000': + - executable: "binaries\\\\win32\\\\mnc.exe" +"632000": installDir: CrossCells launch: - config: @@ -297301,16 +292619,16 @@ executable: CrossCells.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: CrossCells.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: CrossCells.x86 type: default -'632020': +"632020": installDir: Necromancer Returns launch: - config: @@ -297320,9 +292638,9 @@ type: default - config: oslist: macos - executable: NecromancerReturns.app\\Contents\\MacOS\\NecromancerReturns + executable: "NecromancerReturns.app\\\\Contents\\\\MacOS\\\\NecromancerReturns" type: default -'632040': +"632040": installDir: VR Sand launch: - config: @@ -297333,43 +292651,43 @@ oslist: windows executable: VR Sand Steam/VR Sand.exe type: vr -'632050': +"632050": installDir: TheVillage launch: - config: oslist: windows executable: The Village.exe type: default -'632070': +"632070": installDir: The Fidelio Incident launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TheFidelioIncident.exe type: default -'632080': +"632080": installDir: Kinese launch: - executable: Kinese.exe type: vr -'632100': +"632100": installDir: The Last Sigil launch: - config: oslist: windows executable: The Last Sigil.exe type: default -'632110': +"632110": installDir: Crimson Keep launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: CrimsonKeep.exe type: default -'632150': {} -'632170': +"632150": {} +"632170": installDir: Spartan Fist launch: - config: @@ -297387,7 +292705,7 @@ description: Launch executable: SpartanFist.x86 type: none -'632200': +"632200": installDir: Kuro survival launch: - config: @@ -297398,15 +292716,15 @@ oslist: macos executable: kuro_survival.app type: default -'632240': +"632240": installDir: Gunball launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Gunball.exe type: vr -'632250': +"632250": installDir: DERU launch: - config: @@ -297415,16 +292733,16 @@ type: none - config: oslist: macos - executable: DERU.app\\Contents\\MacOS\\DERU + executable: "DERU.app\\\\Contents\\\\MacOS\\\\DERU" type: none - config: oslist: linux executable: DERU.x86 type: none -'632290': +"632290": installDir: The Grand Ball launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows executable: nw.exe @@ -297433,20 +292751,20 @@ oslist: macos executable: nwjs.app type: none -'632300': +"632300": installDir: Hobo Tough Life launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: HoboRPG.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: HoboRPG.x86_64 type: default -'632350': +"632350": installDir: Cyberdimension Neptunia 4 Goddesses Online launch: - config: @@ -297456,18 +292774,18 @@ nameLocalized: japanese: 四女神オンライン CYBER DIMENSION NEPTUNE tchinese: 四女神ONLINE 幻次元遊戲戰機少女 -'632360': +"632360": installDir: Risk of Rain 2 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Risk of Rain 2.exe type: default nameLocalized: sc_schinese: 雨中冒险 2 schinese: 雨中冒险 2 -'632380': +"632380": installDir: Bionic Attack launch: - config: @@ -297482,11 +292800,11 @@ oslist: macos executable: Bionic Attack.app/Contents/MacOS/Bionic Attack type: none -'632470': +"632470": installDir: Disco Elysium launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: disco.exe type: default @@ -297495,7 +292813,7 @@ executable: disco.app type: default - config: - betakey: 'feature_ts, previous_default' + betakey: "feature_ts, previous_default" oslist: macos executable: disco.app/Contents/MacOS/Disco Elysium type: none @@ -297504,23 +292822,23 @@ oslist: macos executable: disco.app/Contents/MacOS/Disco Elysium type: none -'632510': +"632510": installDir: Blockle launch: - config: oslist: windows executable: Blockle.exe type: default -'632580': +"632580": installDir: PhotonFlux launch: - config: - osarch: '64' + osarch: "64" oslist: linux executable: photonFlux.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: photonFlux.x86 type: default @@ -297528,7 +292846,7 @@ oslist: windows executable: photonFlux.exe type: default -'632590': +"632590": installDir: The Tale of Doris and the Dragon - Episode 2 launch: - config: @@ -297540,22 +292858,22 @@ executable: ttodatd2.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: ttodatd2.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: ttodatd2.x86_64 type: default -'632640': {} -'632710': +"632640": {} +"632710": installDir: Princess Evangile W Happiness launch: - executable: EvangileWH.exe type: none -'632730': +"632730": installDir: Base Defense launch: - config: @@ -297563,37 +292881,37 @@ description: Launch Base Defense executable: launcher.exe type: default -'632800': +"632800": installDir: Beyond Eden launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: beyond_eden.exe type: none - config: oslist: macos - executable: beyond_eden.app\\Contents\\MacOS\\beyond_eden + executable: "beyond_eden.app\\\\Contents\\\\MacOS\\\\beyond_eden" type: default -'632820': +"632820": installDir: Ricky Raccoon launch: - executable: Game.exe type: default -'632830': +"632830": installDir: Aztec Venture launch: - executable: AztecVenture.exe type: default -'632840': +"632840": installDir: CYBER (VR) launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Cyber.exe type: vr -'632880': +"632880": installDir: The Majesty of Colors Remastered launch: - config: @@ -297608,7 +292926,7 @@ oslist: linux executable: majesty-of-colors.x86_64 type: default -'632900': +"632900": installDir: Serment - Contract with a Devil launch: - config: @@ -297623,15 +292941,15 @@ oslist: linux executable: Serment.sh type: none -'632920': +"632920": installDir: Dali 17 VR Museum launch: - config: oslist: windows executable: May16_v2DaliVR.exe type: vr -'632950': {} -'633060': +"632950": {} +"633060": installDir: Orwell Ignorance is Strength launch: - config: @@ -297646,15 +292964,13 @@ oslist: macos executable: Ignorance.app type: none - - arguments: '-force-clamped' + - arguments: "-force-clamped" config: oslist: windows description: OpenGL Mode. Use if game crashes. - description_loc: - english: OpenGL Mode. Use if game crashes. executable: Ignorance.exe type: none -'633080': +"633080": nameLocalized: brazilian: Relic Hunters Legend dutch: Relic Hunters Legende @@ -297665,37 +292981,37 @@ koreana: 렐릭 헌터스 레전드 latam: Relic Hunters Leyenda polish: Relic Hunters Legenda - russian: ' Relic Hunters Legend' + russian: " Relic Hunters Legend" schinese: 《遗物猎人传说》 spanish: Relic Hunters Leyenda tchinese: 遺跡獵人:傳說 -'633110': +"633110": installDir: Fast Beat Loop Racer launch: - config: oslist: windows executable: Main.exe type: none -'633130': +"633130": installDir: Nongunz launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: nw.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: nw.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: nw type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: nw type: default @@ -297703,59 +293019,59 @@ oslist: macos executable: nongunz.app type: default -'633150': +"633150": installDir: Mythlink launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Mythlink.exe type: vr -'633230': +"633230": installDir: Naruto To Boruto launch: - executable: NARUTO.exe type: none -'633300': +"633300": installDir: GlobalMap_Astro launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: GlobalMap_GS_Astro.exe type: default - config: betakey: beta - osarch: '64' + osarch: "64" oslist: windows executable: GlobalMap_GS_Astro.exe type: default -'633320': +"633320": installDir: Spirit Realm launch: - config: oslist: windows executable: Spirit Realm.exe type: vr -'633350': {} -'633360': +"633350": {} +"633360": installDir: Remothered Tormented Fathers launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Play RTF Dev executable: Remothered.exe type: default -'633370': {} -'633430': +"633370": {} +"633430": installDir: Trail of Destruction launch: - config: oslist: windows executable: TrailOfDestruction.exe type: default -'633440': +"633440": installDir: Unit 4 launch: - config: @@ -297763,17 +293079,17 @@ description: Default launch option executable: Unit4.exe type: default -'633460': +"633460": installDir: WW1GameSeries launch: - arguments: tannenberg config: oslist: windows - executable: Tannenberg\\Tannenberg.exe + executable: "Tannenberg\\\\Tannenberg.exe" type: default - arguments: tannenberg config: - osarch: '64' + osarch: "64" oslist: linux executable: Tannenberg/Tannenberg type: default @@ -297782,7 +293098,7 @@ oslist: macos executable: Tannenberg/Tannenberg.app/Contents/MacOS/WW1 Game Series type: none -'633580': +"633580": installDir: Neighbourhood Necromancer launch: - config: @@ -297797,7 +293113,7 @@ oslist: linux executable: NeighbourhoodNecromancer type: none -'633600': +"633600": installDir: Creatures Such as We launch: - config: @@ -297812,7 +293128,7 @@ oslist: linux executable: CreaturesSuchAsWe type: none -'633660': +"633660": installDir: Onimod land launch: - config: @@ -297820,12 +293136,12 @@ description: Play game executable: GameOL.exe type: default -'63380': +"63380": installDir: Sniper Elite V2 launch: - - executable: Launcher\\SniperV2Launcher.exe -'633880': {} -'633930': + - executable: "Launcher\\\\SniperV2Launcher.exe" +"633880": {} +"633930": installDir: YJFUME launch: - config: @@ -297843,15 +293159,15 @@ description: Launch Yeah Jam Fury executable: launcher type: default -'633940': +"633940": installDir: VisionOriginVR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Vision_1.exe type: vr -'633950': +"633950": installDir: Fall of Light launch: - config: @@ -297860,9 +293176,9 @@ type: default - config: oslist: macos - executable: FallOfLight_osx.app\\Contents\\MacOS\\FallOfLight_osx + executable: "FallOfLight_osx.app\\\\Contents\\\\MacOS\\\\FallOfLight_osx" type: default -'633970': +"633970": installDir: Heroes Never Die launch: - config: @@ -297875,52 +293191,52 @@ description: VR mode executable: HeroesNeverDie-HTC.exe type: vr -'634060': +"634060": installDir: ObserVRtarium launch: - config: oslist: windows executable: ObserVRtarium.exe type: vr -'634070': +"634070": installDir: Murnatan launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Murnatan/Murnatan.exe type: default workingdir: Murnatan - config: - osarch: '64' + osarch: "64" oslist: linux executable: Murnatan/Murnatan.sh type: default workingdir: Murnatan -'634090': +"634090": installDir: The Tower launch: - config: oslist: windows executable: The Tower.exe type: none -'634120': +"634120": installDir: Inmates launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Inmates.exe type: default -'634150': +"634150": installDir: ReSizE launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: resize.exe type: default -'634200': +"634200": installDir: Tanks vs Aliens launch: - config: @@ -297929,50 +293245,46 @@ type: default - config: oslist: macos - executable: Tanks.app\\Contents\\MacOS\\Tanks + executable: "Tanks.app\\\\Contents\\\\MacOS\\\\Tanks" type: default -'634230': +"634230": installDir: Project First Contact launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ProjectFirstContact.exe type: default -'634340': +"634340": installDir: Legend of Himari launch: - config: oslist: windows description: New Version - description_loc: - english: New Version executable: Legend of Himari.exe type: none - config: oslist: windows - description: 'Legend of Himari: Legacy Version' - description_loc: - english: 'Legend of Himari: Legacy Version' - executable: Legacy\\Legend of Himari.exe + description: "Legend of Himari: Legacy Version" + executable: "Legacy\\\\Legend of Himari.exe" type: none -'634410': +"634410": installDir: A Story Beside launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows executable: story.exe type: default -'634700': +"634700": installDir: PLUTONIUM launch: - config: oslist: windows executable: Plutonium.exe type: default -'634810': {} -'63500': +"634810": {} +"63500": installDir: SwordsAndSoldiersHD launch: - config: @@ -297982,44 +293294,44 @@ - config: oslist: macos description: Configure settings - executable: awesomeLauncher.app\\Contents\\MacOS\\awesomeLauncher + executable: "awesomeLauncher.app\\\\Contents\\\\MacOS\\\\awesomeLauncher" - config: oslist: macos description: Launch game - executable: SwordsAndSoldiers.app\\Contents\\MacOS\\SwordsAndSoldiers -'635000': {} -'635010': {} -'635040': + executable: "SwordsAndSoldiers.app\\\\Contents\\\\MacOS\\\\SwordsAndSoldiers" +"635000": {} +"635010": {} +"635040": installDir: Freeze Climbing launch: - config: oslist: windows executable: FreezeClimbing.exe type: vr -'635050': +"635050": installDir: DESPOILER launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: despoiler.exe type: none -'635060': +"635060": installDir: Castle of no Escape launch: - config: oslist: windows executable: Castle of no Escape (port).exe type: default -'635070': {} -'635190': +"635070": {} +"635190": installDir: Puppy Doge VR launch: - config: oslist: windows executable: puppyDogeVR.exe type: vr -'635200': +"635200": installDir: Distrust launch: - config: @@ -298027,7 +293339,7 @@ description: Play Distrust executable: Distrust.exe type: default - - arguments: '-force-d3d9' + - arguments: "-force-d3d9" config: oslist: windows description: Distrust with DirectX 9 @@ -298037,14 +293349,14 @@ oslist: macos executable: Distrust.app type: default -'635220': +"635220": installDir: The Naked Game launch: - config: oslist: windows executable: TheNakedGame.exe type: default -'635250': +"635250": installDir: Evil Genome launch: - config: @@ -298052,25 +293364,25 @@ executable: EvilGenome.exe type: default - config: - ownsdlc: '1216890' + ownsdlc: "1216890" description: Evil Genome Game of Years Edition executable: launcher.exe type: option1 -'635260': +"635260": installDir: CarX Drift Racing Online launch: - config: oslist: windows executable: Drift Racing Online.exe type: none -'635270': +"635270": installDir: Through The Dark launch: - config: oslist: windows executable: ThroughTheDark.exe type: vr -'635310': +"635310": installDir: Ski Sniper launch: - config: @@ -298081,7 +293393,7 @@ oslist: macos executable: mac_content.app type: none -'635320': +"635320": installDir: june launch: - config: @@ -298091,7 +293403,7 @@ nameLocalized: sc_schinese: 六月衷曲 schinese: 六月衷曲 -'635390': +"635390": installDir: Thief of Thieves launch: - config: @@ -298099,7 +293411,7 @@ description: Launch executable: tot.exe type: none -'635410': +"635410": installDir: The Adventurer and His Backpack launch: - config: @@ -298109,33 +293421,33 @@ nameLocalized: schinese: 冒险者与背包 tchinese: 冒險者與背包 -'635430': +"635430": installDir: Blue Angels Aerobatic Flight Simulator launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: BlueAngels.exe type: default - config: oslist: macos - executable: BlueAngels.app\\Contents\\MacOS\\BlueAngels + executable: "BlueAngels.app\\\\Contents\\\\MacOS\\\\BlueAngels" type: default -'635520': - installDir: Phantasmat The Endless Night Collector's Edition +"635520": + installDir: "Phantasmat The Endless Night Collector's Edition" launch: - config: oslist: windows executable: Phantasmat_TheEndlessNight_CE.exe type: default -'635550': +"635550": installDir: Nocturnal Hunt launch: - config: oslist: windows executable: Nocturnal Hunt.exe type: default -'635590': +"635590": installDir: Vulture Strike launch: - config: @@ -298147,29 +293459,29 @@ executable: VultureStrike.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: VultureStrike.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: VultureStrike.x86_64 type: default - - arguments: '-window-mode borderless' + - arguments: "-window-mode borderless" config: oslist: windows description: Vulture Strike (borderless full screen mode) executable: VultureStrike.exe type: option1 -'635670': +"635670": installDir: EMPORIUM launch: - config: oslist: windows executable: Emporium.exe type: none -'635730': +"635730": installDir: Dragonia launch: - config: @@ -298180,7 +293492,7 @@ oslist: macos executable: game.app type: default -'635790': +"635790": installDir: How to Fool a Liar King launch: - config: @@ -298195,8 +293507,8 @@ japanese: 嘘つきな王様の騙し方 koreana: 거짓말쟁이 왕을 속이는 방법 russian: Как обмануть короля-лжеца -'635810': {} -'635830': +"635810": {} +"635830": installDir: Demon Mark A Russian Saga launch: - config: @@ -298211,8 +293523,8 @@ oslist: linux executable: DemonMarkARussianSaga type: none -'635850': - installDir: Sentience The Android's Tale +"635850": + installDir: "Sentience The Android's Tale" launch: - config: oslist: windows @@ -298220,32 +293532,32 @@ type: none - config: oslist: macos - description: 'Play Sentience: The Android''s Tale (Mac OS X)' + description: "Play Sentience: The Android's Tale (Mac OS X)" executable: Game.app type: none -'635880': +"635880": installDir: Chicken Labyrinth Puzzles launch: - config: oslist: windows executable: sgb_rpgplayer.exe type: default -'635900': +"635900": installDir: Tunnels of Despair launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TunnelsOfDespair.exe type: default -'635930': +"635930": installDir: DOGO launch: - config: oslist: windows executable: game.exe type: default -'635940': +"635940": installDir: Little Busters! English Edition launch: - config: @@ -298257,41 +293569,41 @@ oslist: windows executable: LITBUS_WIN32.exe type: config -'635980': +"635980": installDir: Break The Food Chain launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: nw.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: nw.exe type: default -'63600': +"63600": installDir: Real Myst launch: - executable: RealMyst.exe - description: RealMYST Setup executable: RealMystSetup.exe -'636010': +"636010": installDir: Chateau Garden launch: - executable: Game.exe type: default -'636020': +"636020": installDir: India Garden launch: - executable: Game.exe type: default -'636030': +"636030": installDir: Ricky Raccoon 2 launch: - executable: Game.exe type: default -'636040': +"636040": installDir: Pixel Worlds launch: - config: @@ -298302,12 +293614,12 @@ oslist: windows executable: PixelWorlds.exe type: default -'636050': +"636050": installDir: 5 Star Rio Ressort launch: - executable: RioResort.exe type: default -'636070': +"636070": installDir: Corridor Z launch: - config: @@ -298315,66 +293627,66 @@ executable: CorridorZ.exe type: default - config: - osarch: '64' + osarch: "64" oslist: macos - executable: CorridorZ.app\\Contents\\MacOS\\CorridorZ + executable: "CorridorZ.app\\\\Contents\\\\MacOS\\\\CorridorZ" type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: CorridorZ.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: CorridorZ.x86_64 type: default -'63610': +"63610": installDir: Riven launch: - - arguments: '-c myst25.ini riven' + - arguments: "-c myst25.ini riven" config: oslist: windows description: English executable: scummvm.exe type: none - - arguments: '-c myst25.ini riven-fr' + - arguments: "-c myst25.ini riven-fr" config: oslist: windows description: Français (French) executable: scummvm.exe type: none - - arguments: '-c myst25.ini riven-de' + - arguments: "-c myst25.ini riven-de" config: oslist: windows description: Deutsch (German) executable: scummvm.exe type: none - - arguments: '-c myst25.ini riven-it' + - arguments: "-c myst25.ini riven-it" config: oslist: windows description: Italiano (Italian) executable: scummvm.exe type: none - - arguments: '-c myst25.ini riven-jp' + - arguments: "-c myst25.ini riven-jp" config: oslist: windows description: 日本語 (Japanese) executable: scummvm.exe type: none - - arguments: '-c myst25.ini riven-es' + - arguments: "-c myst25.ini riven-es" config: oslist: windows description: Español (Spanish) executable: scummvm.exe type: none - - arguments: '-c myst25.ini riven-pl' + - arguments: "-c myst25.ini riven-pl" config: oslist: windows description: Polski (Polish) executable: scummvm.exe type: none - - arguments: '-c myst25.ini riven-ru' + - arguments: "-c myst25.ini riven-ru" config: oslist: windows description: Pусский (Russian) @@ -298390,7 +293702,7 @@ description: English executable: riven.app type: none - - arguments: '-c myst25.ini riven' + - arguments: "-c myst25.ini riven" config: betakey: internal oslist: windows @@ -298433,7 +293745,7 @@ description: Pусский (Russian) executable: riven.app type: none -'636100': +"636100": installDir: Tesla vs Lovecraft launch: - config: @@ -298461,59 +293773,55 @@ description: Tesla vs Lovecraft (OpenGL) executable: TvsL-OpenGL.exe type: option3 -'636150': +"636150": installDir: Cyberhunt launch: - description: Cyberhunt (New version) - description_loc: - english: Cyberhunt (New version) - executable: Cyberhunt New\\Cyberhunt.exe + executable: "Cyberhunt New\\\\Cyberhunt.exe" type: option1 - description: Cyberhunt (Old version) - description_loc: - english: Cyberhunt (Old version) - executable: Cyberhunt Old\\Cyberhunt.exe + executable: "Cyberhunt Old\\\\Cyberhunt.exe" type: option2 -'636170': +"636170": installDir: Reaching for Petals launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SmartFPController.exe type: default -'63620': +"63620": installDir: Cosmic Osmo launch: - executable: Cosmic Osmo.exe -'636220': +"636220": installDir: CubeWorks launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: CubeWorks.exe type: openvroverlay -'636230': +"636230": installDir: Safe House launch: - config: oslist: windows executable: SafeHouse.exe type: none -'636270': {} -'63630': +"636270": {} +"63630": installDir: Manhole launch: - executable: Manhole.exe -'636310': +"636310": installDir: Concurrency launch: - config: oslist: windows executable: Concurrency.exe type: default -'636320': +"636320": installDir: Depth of Extinction launch: - config: @@ -298525,11 +293833,11 @@ executable: Depth of Extinction.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Depth of Extinction.x86_64 type: default -'636330': +"636330": installDir: The God Paradox launch: - config: @@ -298542,17 +293850,17 @@ description: Launch the game. executable: TheGodParadox.app type: default -'636360': +"636360": installDir: Silent Gentleman launch: - executable: Game.exe type: none -'636370': +"636370": installDir: The Sun Never Sets launch: - executable: Game.exe type: none -'636390': +"636390": installDir: Ticket to Earth launch: - config: @@ -298563,55 +293871,55 @@ oslist: macos executable: Ticket to Earth.app/Contents/MacOS/Ticket to Earth type: default -'63640': +"63640": installDir: Spelunx launch: - executable: Spelunx.exe -'636400': +"636400": installDir: Cubots The Origins_Data launch: - config: oslist: windows executable: Cubots The Origins.exe type: default -'636430': +"636430": installDir: Zombie Kill launch: - config: oslist: windows executable: ZombieKill.exe type: vr -'636450': +"636450": installDir: Rez Infinite launch: - arguments: vr=0 config: - osarch: '64' + osarch: "64" oslist: windows executable: Rez-infinite.exe type: default - arguments: vr=1 config: - osarch: '64' + osarch: "64" oslist: windows executable: Rez-infinite.exe type: vr - arguments: vr=2 config: - osarch: '64' + osarch: "64" oslist: windows executable: Rez-infinite.exe type: othervr -'636460': +"636460": installDir: Rugby League Team Manager 2018 launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: RLTM2018_StartUp_32bit.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: RLTM2018_StartUp_64bit.exe type: default @@ -298619,8 +293927,8 @@ oslist: macos executable: RLTM2018_StartUp_Mac.app type: default -'636470': {} -'636480': +"636470": {} +"636480": installDir: Ravenfield launch: - config: @@ -298632,76 +293940,68 @@ executable: ravenfield.app/Contents/MacOS/RavenfieldSteam type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: ravenfield.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: ravenfield.x86_64 type: default - - arguments: '-nocontentmods' + - arguments: "-nocontentmods" config: oslist: windows description: Ravenfield (No Mods) executable: ravenfield.exe type: option1 - - arguments: '-nocontentmods' + - arguments: "-nocontentmods" config: oslist: macos description: Ravenfield (No Mods) - description_loc: - english: Ravenfield (No Mods) executable: ravenfield.app/Contents/MacOS/RavenfieldSteam type: option1 - - arguments: '-nocontentmods' + - arguments: "-nocontentmods" config: - osarch: '32' + osarch: "32" oslist: linux description: Ravenfield (No Mods) - description_loc: - english: Ravenfield (No Mods) executable: ravenfield.x86 type: option1 - - arguments: '-nocontentmods' + - arguments: "-nocontentmods" config: - osarch: '64' + osarch: "64" oslist: linux description: Ravenfield (No Mods) executable: ravenfield.x86_64 type: option1 - - arguments: '-force-d3d9' + - arguments: "-force-d3d9" config: betakey: legacy-ea25 oslist: windows description: Ravenfield (DirectX 9) - description_loc: - english: Ravenfield (DirectX 9) executable: ravenfield.exe type: option2 - - arguments: '-force-d3d9 -nocontentmods' + - arguments: "-force-d3d9 -nocontentmods" config: betakey: legacy-ea25 oslist: windows - description: 'Ravenfield (DirectX 9, No Mods)' - description_loc: - english: 'Ravenfield (DirectX 9, No Mods)' + description: "Ravenfield (DirectX 9, No Mods)" executable: ravenfield.exe type: option3 - - arguments: '-nointro -nocontentmods -noworkshopmods -benchmark' + - arguments: "-nointro -nocontentmods -noworkshopmods -benchmark" config: oslist: windows executable: ravenfield.exe type: benchmark - - arguments: '-nointro -nocontentmods -noworkshopmods -benchmark' + - arguments: "-nointro -nocontentmods -noworkshopmods -benchmark" config: oslist: macos executable: ravenfield.app/Contents/MacOS/RavenfieldSteam type: benchmark - - arguments: '-nointro -nocontentmods -noworkshopmods -benchmark' + - arguments: "-nointro -nocontentmods -noworkshopmods -benchmark" config: - osarch: '64' + osarch: "64" oslist: linux executable: ravenfield.x86_64 type: benchmark @@ -298709,27 +294009,23 @@ betakey: legacy-ea25 oslist: macos description: Ravenfield (EA25) - description_loc: - english: Ravenfield (EA25) executable: ravenfield.app type: option1 - - arguments: '-nocontentmods' + - arguments: "-nocontentmods" config: betakey: legacy-ea25 oslist: macos - description: 'Ravenfield (EA25, No Mods)' - description_loc: - english: 'Ravenfield (EA25, No Mods)' + description: "Ravenfield (EA25, No Mods)" executable: ravenfield.app type: option1 -'636490': +"636490": installDir: KA MATE launch: - config: oslist: windows executable: kamate.exe type: default -'63650': +"63650": installDir: Uru CC launch: - config: @@ -298740,74 +294036,74 @@ oslist: macos executable: Uru Complete Chronicles.app type: none -'636520': +"636520": installDir: Gevaudan launch: - config: oslist: windows executable: Gevaudan.exe type: default -'636560': +"636560": installDir: Runewards launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Runewards.exe type: default -'636570': +"636570": installDir: Nights of Azure 2 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Nights of Azure 2_Launcher.exe type: none nameLocalized: japanese: よるのないくに2 ~新月の花嫁~ tchinese: 無夜國度2 ~新月的新娘~ -'636580': +"636580": installDir: Primal Reign launch: - config: oslist: windows executable: PrimalReign.exe type: vr -'636590': +"636590": installDir: VR SUSHI BAR launch: - config: oslist: windows executable: VR_SUSHI_BAR.exe type: vr -'63660': +"63660": installDir: Myst Masterpiece launch: - - arguments: '-c myst25.ini myst-win' + - arguments: "-c myst25.ini myst-win" config: oslist: windows description: English executable: scummvm.exe type: none - - arguments: '-c myst25.ini myst-win-fr' + - arguments: "-c myst25.ini myst-win-fr" config: oslist: windows description: Français (French) executable: scummvm.exe type: none - - arguments: '-c myst25.ini myst-win-es' + - arguments: "-c myst25.ini myst-win-es" config: oslist: windows description: Español (Spanish) executable: scummvm.exe type: none - - arguments: '-c myst25.ini myst-win-de' + - arguments: "-c myst25.ini myst-win-de" config: oslist: windows description: Deutsch (German) executable: scummvm.exe type: none - - arguments: '-c myst25.ini myst-win-pl' + - arguments: "-c myst25.ini myst-win-pl" config: oslist: windows description: Polski (Polish) @@ -298823,7 +294119,7 @@ description: English executable: myst.app type: none - - arguments: '-c myst25.ini myst-win' + - arguments: "-c myst25.ini myst-win" config: betakey: internal oslist: windows @@ -298853,111 +294149,111 @@ description: Polski (Polish) executable: myst.app type: none -'636620': +"636620": installDir: Tanks VR launch: - - arguments: '-logFile \".\\output.log\"' + - arguments: "-logFile \\\".\\\\output.log\\\"" config: oslist: windows executable: TanksVR.exe type: vr - - arguments: '-logFile \".\\output.log\"' + - arguments: "-logFile \\\".\\\\output.log\\\"" config: oslist: windows executable: TanksVR.exe type: othervr -'636690': +"636690": installDir: Sociable Soccer launch: - config: oslist: windows executable: ss_steam.exe type: default -'636700': {} -'636720': +"636700": {} +"636720": installDir: Bring to Light launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: BTL.exe type: default - - arguments: '-vrmode openvr' + - arguments: "-vrmode openvr" config: - osarch: '64' + osarch: "64" oslist: windows executable: BTL.exe type: vr -'636740': +"636740": installDir: Akihabara - Feel the Rhythm Remixed launch: - config: oslist: windows executable: AkibaRemixed.exe type: default -'636790': {} -'636910': +"636790": {} +"636910": installDir: Geoid launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Geoid.exe type: default - config: - osarch: '64' + osarch: "64" oslist: macos executable: Geoid.app/Contents/MacOS/Geoid type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Geoid.sh type: default -'636930': +"636930": installDir: SoundscapeVR launch: - - arguments: '-vr -fullscreen' + - arguments: "-vr -fullscreen" config: oslist: windows description: Play on Steam executable: Doitforthelove2.exe type: vr -'636950': +"636950": installDir: MarksmanVR launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: MarksmanVR.exe type: vr -'636960': +"636960": installDir: Wo Yao Da launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: WoYaoDa.exe type: none -'636970': +"636970": installDir: Tales Of Glory launch: - - arguments: '-vrmode OpenVR' + - arguments: "-vrmode OpenVR" config: oslist: windows executable: TalesOfGlory.exe type: vr - - arguments: '-vrmode Oculus' + - arguments: "-vrmode Oculus" config: oslist: windows executable: TalesOfGlory.exe type: othervr -'6370': +"6370": installDir: Bloodline Champions launch: - - executable: Binary\\BloodlineChampionsLoader.exe -'63700': + - executable: "Binary\\\\BloodlineChampionsLoader.exe" +"63700": installDir: BIT.TRIP BEAT launch: - config: @@ -298968,21 +294264,21 @@ oslist: macos description: Mac executable: BIT.TRIP.BEAT.app -'637040': +"637040": installDir: RoadkillerZ launch: - config: oslist: windows executable: roadkillerz.exe type: vr -'637050': +"637050": installDir: Spire of Sorcery launch: - config: oslist: windows executable: SpireOfSorcery.exe type: none -'637060': +"637060": installDir: Tiny Tales launch: - config: @@ -298991,13 +294287,13 @@ executable: TinyTales.exe type: none - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: TinyTales_i386 type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: TinyTales_amd64 @@ -299007,19 +294303,19 @@ description: Launch executable: mac_steam.app/Contents/MacOS/mac_steam type: none -'637070': +"637070": installDir: End of the Road VR launch: - config: oslist: windows executable: EndOfTheRoadVR.exe type: vr -'637090': +"637090": installDir: BATTLETECH launch: - - arguments: '-useCurrentSettings' + - arguments: "-useCurrentSettings" config: - osarch: '64' + osarch: "64" oslist: windows executable: BattleTechLauncher.exe type: default @@ -299028,17 +294324,17 @@ executable: BattleTech.app/Contents/MacOS/BattleTech type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: BattleTech type: default - config: betakey: 1.0.4 - osarch: '64' + osarch: "64" oslist: windows executable: BattleTech.exe type: default -'63710': +"63710": installDir: BIT.TRIP RUNNER launch: - config: @@ -299049,7 +294345,7 @@ oslist: macos description: Mac executable: BIT.TRIP.RUNNER.app -'637100': +"637100": installDir: SonicForces launch: - config: @@ -299057,7 +294353,7 @@ executable: build/main/projects/exec/Sonic Forces.exe type: default workingdir: build/main/projects/exec/ -'637110': +"637110": installDir: Runes of Avalon - Path of Magic launch: - config: @@ -299068,16 +294364,16 @@ oslist: macos executable: Runes of Avalon Path of Magic.app type: default -'637120': +"637120": installDir: SpaceGod launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: SpaceGod.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: SpaceGod.exe type: default @@ -299089,24 +294385,24 @@ oslist: linux executable: SpaceGod.sh type: default -'637330': +"637330": installDir: Stack launch: - config: oslist: windows executable: VrStack.exe type: vr -'637340': {} -'637410': +"637340": {} +"637410": installDir: Disputed Space launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: DisputedSpace.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: DisputedSpace.x86_64 type: default @@ -299114,29 +294410,29 @@ oslist: macos executable: Contents/MacOS/DisputedSpace type: default -'637640': +"637640": installDir: The Glade launch: - config: oslist: windows executable: the-glade.exe type: vr -'637650': +"637650": installDir: FINAL FANTASY XV launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ffxv_s.exe type: default - config: betakey: redday - osarch: '64' + osarch: "64" oslist: windows description: ffxv_sv executable: ffxv_sv.exe type: option1 -'637670': +"637670": installDir: Secret of Mana launch: - config: @@ -299148,7 +294444,7 @@ koreana: 성검전설2 SECRET of MANA schinese: 圣剑传说2 SECRET of MANA tchinese: 聖劍傳說2 SECRET of MANA -'637850': +"637850": installDir: ConfessMyLove launch: - config: @@ -299156,26 +294452,26 @@ description: 游戏入口 executable: Game.exe type: default -'637860': +"637860": installDir: Narcotics PoliceBlack and White launch: - config: oslist: windows executable: New_NarcoticsPolice.exe type: default -'637870': +"637870": installDir: Slice&Dice launch: - executable: SliceNDice.exe type: vr -'637880': +"637880": installDir: I wanna be The Cat launch: - config: oslist: windows executable: nw.exe type: default -'637920': +"637920": installDir: Weather Lord launch: - config: @@ -299183,7 +294479,7 @@ description: Launch executable: WeatherLord.exe type: default -'637930': +"637930": installDir: Weather Lord Hidden Realm launch: - config: @@ -299191,7 +294487,7 @@ description: Launch executable: WeatherLordHiddenRealm.exe type: default -'637940': +"637940": installDir: Weather Lord In Search of the Shaman launch: - config: @@ -299199,54 +294495,54 @@ description: Launch executable: WeatherLord_InPursuitOfTheShaman.exe type: default -'637960': +"637960": installDir: ProjectM Dream launch: - - arguments: '-vr -fullscreen -platform steam' + - arguments: "-vr -fullscreen -platform steam" config: - osarch: '64' + osarch: "64" oslist: windows executable: E1.exe type: vr - - arguments: '-vr -fullscreen -platform steam' + - arguments: "-vr -fullscreen -platform steam" config: - osarch: '64' + osarch: "64" oslist: windows executable: E1.exe type: othervr -'637980': +"637980": installDir: Mission B launch: - config: oslist: windows executable: Arcanoid.exe type: vr -'63800': +"63800": installDir: Delve Deeper launch: - executable: DelveDeeper.exe -'638000': +"638000": installDir: When Ski Lifts Go Wrong launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: When Ski Lifts Go Wrong.exe type: default - config: oslist: macos - executable: When Ski Lifts Go Wrong.app\\Contents\\MacOS\\When Ski Lifts Go Wrong + executable: "When Ski Lifts Go Wrong.app\\\\Contents\\\\MacOS\\\\When Ski Lifts Go Wrong" type: default nameLocalized: schinese: 当滑雪升降机发生了故障 -'638020': +"638020": installDir: Castle Wars VR launch: - config: oslist: windows executable: castlewars.exe type: vr -'638060': +"638060": installDir: Majestic Trials launch: - config: @@ -299261,20 +294557,20 @@ oslist: linux executable: MajesticTrials type: default -'638070': +"638070": installDir: Murderous Pursuits launch: - config: oslist: windows executable: MurderousPursuits.exe type: default - - arguments: '-quality 0' + - arguments: "-quality 0" config: oslist: windows description: Play Game (Lowest Graphic Quality) executable: MurderousPursuits.exe type: none -'638110': +"638110": installDir: DBProject launch: - arguments: DB4HOPE @@ -299283,11 +294579,11 @@ description: Launcher executable: DesertBusLauncher.exe type: default - - arguments: '-vr DB4HOPE' + - arguments: "-vr DB4HOPE" config: oslist: windows description: Desert Bus directly - executable: DesertBusVR\\Binaries\\Win32\\DesertBusVR.exe + executable: "DesertBusVR\\\\Binaries\\\\Win32\\\\DesertBusVR.exe" type: vr - config: betakey: nondbforhope @@ -299295,7 +294591,7 @@ description: Launcher executable: DesertBusLauncher.exe type: default -'638160': +"638160": installDir: Moero Chronicle launch: - config: @@ -299305,69 +294601,69 @@ nameLocalized: japanese: 限界凸記 モエロクロニクル tchinese: 極限凸記 萌萌編年史 -'638200': +"638200": installDir: Capitalism 2 launch: - config: oslist: windows executable: Cap2.exe type: default -'638230': +"638230": installDir: Journey launch: - config: oslist: windows executable: Journey.exe type: default -'638240': - installDir: Calavera Day of the Dead Collector's Edition +"638240": + installDir: "Calavera Day of the Dead Collector's Edition" launch: - config: oslist: windows executable: Calavera_DayOfTheDeadCE.exe type: default -'638250': - installDir: Sea of Lies Nemesis Collector's Edition +"638250": + installDir: "Sea of Lies Nemesis Collector's Edition" launch: - config: oslist: windows executable: SeaOfLies_NemesisCE.exe type: default -'638260': - installDir: Myths of the World Stolen Spring Collector's Edition +"638260": + installDir: "Myths of the World Stolen Spring Collector's Edition" launch: - config: oslist: windows executable: MythsOfTheWorld_StolenSpringCE.exe type: default -'638270': - installDir: Rite of Passage Child of the Forest Collector's Edition +"638270": + installDir: "Rite of Passage Child of the Forest Collector's Edition" launch: - config: oslist: windows executable: RiteOfPassage_ChildOfTheForest_CE.exe type: default -'638290': +"638290": installDir: Grim Facade Sinister Obsession Collector’s Edition launch: - config: oslist: windows executable: GrimFacade_SinisterObsessionCE.exe type: default -'638360': +"638360": installDir: Half-Rats - Parasomnia launch: - - arguments: '-game hrp' + - arguments: "-game hrp" config: oslist: windows executable: hl.exe type: default - - arguments: '-game hrp' + - arguments: "-game hrp" config: oslist: linux executable: hl.sh type: default -'638470': +"638470": installDir: Eggggg launch: - config: @@ -299376,9 +294672,9 @@ type: none - config: oslist: macos - executable: Eggggg.app\\Contents\\MacOS\\Eggggg + executable: "Eggggg.app\\\\Contents\\\\MacOS\\\\Eggggg" type: default -'638490': +"638490": installDir: Soldat launch: - config: @@ -299390,7 +294686,7 @@ description: Game Config executable: config.exe type: config - - arguments: '-dedicated' + - arguments: "-dedicated" config: oslist: windows description: Start Game Server @@ -299406,45 +294702,45 @@ oslist: windows executable: startserver.bat type: server -'638510': {} -'638650': +"638510": {} +"638650": installDir: SAOHF launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SAOHF.exe type: default -'638680': {} -'638690': {} -'638720': +"638680": {} +"638690": {} +"638720": installDir: Final Battle launch: - description: Start executable: Game.exe type: none -'638780': +"638780": installDir: Reflector Bug Hunt launch: - config: oslist: windows executable: Reflector_BH.exe type: default -'638830': +"638830": installDir: VRScape launch: - config: oslist: windows executable: VRScape.exe type: vr -'638850': +"638850": installDir: Animallica launch: - config: oslist: windows executable: ANIMALLICA.exe type: default -'638900': +"638900": installDir: Defenders of the Realm VR launch: - config: @@ -299455,30 +294751,30 @@ oslist: windows executable: Launcher.exe type: othervr -'638920': +"638920": installDir: BeanVR launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: BeanVR.exe type: vr -'638930': +"638930": installDir: Dal Segno launch: - executable: DST.exe type: default -'638970': +"638970": installDir: Yakuza 0 launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: media\\Yakuza0.exe + executable: "media\\\\Yakuza0.exe" type: default workingdir: media -'638990': +"638990": installDir: Undying launch: - config: @@ -299489,20 +294785,20 @@ japanese: アンダイイング sc_schinese: 苏醒之路(Undying) schinese: 苏醒之路 -'63900': +"63900": installDir: Fantasy Wars launch: - config: oslist: windows executable: FantasyWars.exe -'63910': +"63910": installDir: Kings Bounty Crossworlds launch: - config: oslist: windows executable: kb.exe type: default -'639130': +"639130": installDir: Ultrawings launch: - config: @@ -299510,11 +294806,11 @@ description: Ultrawings executable: Ultrawings.exe type: vr -'639170': +"639170": installDir: Minecraft Story Mode - Season Two launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Minecraft2.exe type: default @@ -299522,8 +294818,8 @@ oslist: macos executable: Minecraft Story Mode Season 2.app type: default -'639180': - installDir: 'Time, Space and Matter' +"639180": + installDir: "Time, Space and Matter" launch: - config: oslist: windows @@ -299531,16 +294827,16 @@ type: default - config: oslist: macos - executable: 'TSM.app\\Contents\\MacOS\\Time, Space and Matter' + executable: "TSM.app\\\\Contents\\\\MacOS\\\\Time, Space and Matter" type: default -'639220': +"639220": installDir: Throttle Powah VR launch: - config: oslist: windows executable: Throttle Powah.exe type: vr -'639230': +"639230": installDir: Rival Books of Aster launch: - config: @@ -299551,43 +294847,43 @@ oslist: windows executable: RBA.exe type: default - - arguments: '-screen-fullscreen 0' + - arguments: "-screen-fullscreen 0" config: - osarch: '64' + osarch: "64" oslist: linux executable: RBA.x86_64 type: default - - arguments: '-screen-fullscreen 0' + - arguments: "-screen-fullscreen 0" config: - osarch: '32' + osarch: "32" oslist: linux executable: RBA.x86 type: default -'639240': - installDir: CodeRed Agent Sarah's Story - Day One +"639240": + installDir: "CodeRed Agent Sarah's Story - Day One" launch: - config: oslist: windows executable: CodeRedGame.exe type: default -'639270': +"639270": installDir: Operation Warcade launch: - config: oslist: windows executable: warcade.exe type: vr -'639280': +"639280": installDir: Lander 8009 launch: - executable: Lander8009.exe type: vr -'639300': +"639300": installDir: Age of Gladiators II launch: - executable: AoGII.exe type: default -'639320': +"639320": installDir: Fading launch: - config: @@ -299596,9 +294892,9 @@ type: default - config: oslist: macos - executable: Fading.app\\Contents\\MacOS\\Fading + executable: "Fading.app\\\\Contents\\\\MacOS\\\\Fading" type: default -'63940': +"63940": installDir: Men of War - Vietnam launch: - config: @@ -299609,28 +294905,28 @@ oslist: windows description: Launch editor executable: Vietnam Editor.exe -'639440': +"639440": installDir: VRemedies_CT launch: - config: oslist: windows executable: VRemedies_CT.exe type: vr -'639450': - installDir: 'Don''t Tax Me, Bro!' +"639450": + installDir: "Don't Tax Me, Bro!" launch: - config: oslist: windows executable: nw.exe type: default -'639460': +"639460": installDir: ZombieRiot launch: - config: oslist: windows executable: ZombieRiot.exe type: vr -'639470': +"639470": installDir: Original Journey launch: - config: @@ -299643,7 +294939,7 @@ type: default nameLocalized: schinese: 原始旅程 -'639490': +"639490": installDir: Umineko Chiru launch: - config: @@ -299655,30 +294951,30 @@ executable: Umineko5to8.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Umineko5to8 type: default nameLocalized: japanese: うみねこのなく頃に散 -'63950': +"63950": installDir: IL-2 Sturmovik Cliffs of Dover launch: - executable: Launcher.exe - config: betakey: releasecandidate - osarch: '64' + osarch: "64" oslist: windows executable: Launcher64.exe type: default -'639560': +"639560": installDir: Spacescape launch: - config: oslist: windows executable: Spacescape.exe type: vr -'63960': +"63960": installDir: Theatre of War 3 Korea launch: - config: @@ -299707,14 +295003,14 @@ oslist: windows description: Configure executable: options.exe -'639650': - installDir: '1982' +"639650": + installDir: "1982" launch: - config: oslist: windows executable: 1982.exe type: none -'639720': +"639720": installDir: A Bloody Night launch: - config: @@ -299723,33 +295019,33 @@ type: default - config: oslist: macos - executable: ABloodyNight.app\\Contents\\MacOS\\Mac_Runner + executable: "ABloodyNight.app\\\\Contents\\\\MacOS\\\\Mac_Runner" type: default -'639730': - installDir: Murder In Tehran's Alleys 2016 +"639730": + installDir: "Murder In Tehran's Alleys 2016" launch: - - executable: MurderInTehran'sAlleys2.exe + - executable: "MurderInTehran'sAlleys2.exe" type: default -'639770': +"639770": installDir: UNTITLED launch: - executable: UNTITLED.exe type: vr -'639780': +"639780": installDir: Deep Space Waifu Justice launch: - config: oslist: windows executable: Deep Space Waifu Flat Justice.exe type: default -'639790': +"639790": installDir: Deep Space Waifu launch: - config: oslist: windows executable: Deep Space Waifu.exe type: default -'639840': +"639840": installDir: FIELD BREAKING launch: - config: @@ -299760,41 +295056,41 @@ - config: oslist: macos description: Launch - executable: FIELD BREAKING.app\\Contents\\MacOS\\FIELD BREAKING + executable: "FIELD BREAKING.app\\\\Contents\\\\MacOS\\\\FIELD BREAKING" type: default - config: oslist: linux description: Launch x86_x64 executable: FIELD BREAKING.x86_64 type: default -'639880': {} -'639920': +"639880": {} +"639920": installDir: EscapeTheGray launch: - config: oslist: windows executable: Escape.exe type: vr -'6400': +"6400": installDir: Joint Task Force launch: - executable: jtf.exe - description: Joint Task Force Editor executable: workshop.exe -'64000': +"64000": installDir: Men of War Assault Squad launch: - executable: mow_assault_squad.exe -'640010': {} -'640050': +"640010": {} +"640050": installDir: Soldiers of the Universe launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Sotu00.exe type: default -'640090': +"640090": installDir: Zarya-1 Mystery on the Moon launch: - config: @@ -299809,15 +295105,15 @@ oslist: linux executable: zarya1.x86 type: default -'640120': +"640120": installDir: Youropa launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: youropa_x64.exe type: none -'640150': +"640150": installDir: Tale of Toast launch: - config: @@ -299832,7 +295128,7 @@ oslist: macos executable: ToT.app type: default -'640210': +"640210": installDir: Just One Line launch: - config: @@ -299844,15 +295140,15 @@ description: Play on Linux executable: Just One Line type: none -'640250': +"640250": installDir: Kitty Hawk launch: - config: oslist: windows executable: KH_0.013.exe type: vr -'640260': {} -'640290': +"640260": {} +"640290": installDir: Super Multitasking launch: - config: @@ -299863,15 +295159,15 @@ oslist: macos executable: Super Multitasking.app type: default -'640300': +"640300": installDir: RunOfMydan launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: RunOfMydan.exe type: vr -'640310': +"640310": installDir: Drive By Hero launch: - config: @@ -299886,15 +295182,15 @@ oslist: macos executable: DriveByHero.app type: default -'640330': {} -'640340': +"640330": {} +"640340": installDir: Serious Sam Tormental launch: - config: oslist: windows executable: Tormental.exe type: default -'640380': +"640380": installDir: UBERMOSH Vol.5 launch: - config: @@ -299905,52 +295201,52 @@ oslist: linux executable: run.sh type: default -'640430': {} -'640590': +"640430": {} +"640590": installDir: LEGONinjago launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: LEGONINJAGO.exe type: none - config: - osarch: '64' + osarch: "64" oslist: windows executable: LEGONINJAGO_DX11.exe type: none -'640600': +"640600": installDir: BleedingKansas launch: - arguments: /Game/Maps/Kansas -vr config: - osarch: '64' + osarch: "64" oslist: windows executable: BleedingKansas.exe type: vr -'640690': +"640690": installDir: Super Tony Land launch: - config: oslist: windows executable: SuperTonyLand.exe type: default -'640760': +"640760": installDir: Code51 launch: - config: oslist: windows executable: /Launcher/Launcher.exe type: vr -'640780': {} -'640800': +"640780": {} +"640800": installDir: SkyFront launch: - config: oslist: windows executable: SkyFront.exe type: vr -'640820': +"640820": installDir: Pathfinder Kingmaker launch: - config: @@ -299961,36 +295257,36 @@ oslist: macos executable: Kingmaker.app type: default -'640840': {} -'640850': +"640840": {} +"640850": installDir: Clash of Cards launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: gw.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: gw.exe type: default -'640860': +"640860": installDir: StoneRage launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: StoneRageClient.exe type: default - - arguments: '-d3d11' + - arguments: "-d3d11" config: - osarch: '64' + osarch: "64" oslist: windows description: Start Stone Rage using DirectX11 executable: StoneRageClient.exe type: none -'640880': +"640880": installDir: Hyper Sentinel launch: - config: @@ -299999,20 +295295,20 @@ type: default - config: oslist: macos - executable: HyperSentinel.app\\Contents\\MacOS\\HyperSentinel + executable: "HyperSentinel.app\\\\Contents\\\\MacOS\\\\HyperSentinel" type: default - config: oslist: linux executable: HyperSentinel.x86_64 type: default -'640890': +"640890": installDir: Will Glow the Wisp launch: - config: oslist: windows executable: Will Glow the Wisp.exe type: default -'640970': +"640970": installDir: In Game Adventure Legend Of Monsters launch: - config: @@ -300027,47 +295323,47 @@ oslist: macos executable: In Game Adventure.app type: default -'640990': +"640990": installDir: Fashioning Little Miss Lonesome launch: - executable: Fashioning Little Miss Lonesome.exe type: default -'641050': +"641050": installDir: StroodleDoodleApp launch: - config: oslist: windows executable: stroodledoodle.exe type: vr -'641080': +"641080": installDir: Trials Rising launch: - - arguments: '-uplay_steam_mode' + - arguments: "-uplay_steam_mode" config: oslist: windows - executable: datapack\\trialsrising.exe + executable: "datapack\\\\trialsrising.exe" type: default workingdir: datapack -'641320': +"641320": installDir: CookingSimulator launch: - config: oslist: windows executable: CookingSim.exe type: default -'641590': +"641590": installDir: Perplexigon launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Perplexigon.exe type: vr -'641780': +"641780": installDir: DRL Simulator launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: DRL Simulator.exe type: default @@ -300075,7 +295371,7 @@ oslist: macos executable: DRL Simulator.app type: default -'641860': +"641860": installDir: Trenches of War launch: - config: @@ -300084,53 +295380,53 @@ type: default - config: oslist: linux - executable: TrenchofWar\\runner + executable: "TrenchofWar\\\\runner" type: default - config: oslist: macos - executable: TrenchesOfWar.app\\Contents\\MacOS\\Mac_Runner + executable: "TrenchesOfWar.app\\\\Contents\\\\MacOS\\\\Mac_Runner" type: default -'641870': +"641870": installDir: symeCu8e launch: - config: oslist: windows executable: symecu8e.exe type: default -'641910': +"641910": installDir: Bike_Rush launch: - executable: Game.exe type: none - - arguments: '-vr' + - arguments: "-vr" executable: Game.exe type: othervr - - arguments: '-vr' + - arguments: "-vr" executable: Game.exe type: vr -'641940': +"641940": installDir: TheLastSanctuaryVR launch: - config: oslist: windows executable: TheLastSanctuaryVR.exe type: vr -'641950': +"641950": installDir: Last Stonelord launch: - config: oslist: windows executable: LastStonelord.exe type: default -'641960': +"641960": installDir: BOXVR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: BOXVR.exe type: vr -'641980': +"641980": installDir: Block Survival Legend of the Lost Islands launch: - config: @@ -300142,16 +295438,16 @@ executable: BlockSurvival.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: BlockSurvival.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: BlockSurvival.x86_64 type: default -'641990': +"641990": installDir: The Escapists 2 launch: - config: @@ -300164,62 +295460,62 @@ executable: TheEscapists2.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: TheEscapists2.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: TheEscapists2.x86_64 type: default - - arguments: '-force-d3d9' + - arguments: "-force-d3d9" config: oslist: windows description: The Escapists 2 (DirectX 9) executable: TheEscapists2.exe type: option1 -'6420': +"6420": installDir: Nexus The Jupiter Incident launch: - config: oslist: windows - description: 'Launch Nexus: The Jupiter Incident' + description: "Launch Nexus: The Jupiter Incident" executable: nexus.exe type: default - arguments: /win /nolau /splay config: oslist: windows - description: 'Launch Nexus: The Jupiter Incident SinglePlayer Windowed' + description: "Launch Nexus: The Jupiter Incident SinglePlayer Windowed" executable: nexus_DX9.exe type: none - arguments: /win /nolau /mplay config: oslist: windows - description: 'Launch Nexus: The Jupiter Incident Multiplayer Windowed' + description: "Launch Nexus: The Jupiter Incident Multiplayer Windowed" executable: nexus_DX9.exe type: none - config: oslist: windows description: Launch Nexus Mod Tools - executable: mod_tools\\mod_tools.exe + executable: "mod_tools\\\\mod_tools.exe" type: none -'642000': +"642000": installDir: Regenesis Arcade Lite launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: RegenesisArcade_Lite.exe type: vr -'642070': +"642070": installDir: VR Theme Park Rides launch: - config: oslist: windows executable: VRThemeParkRides.exe type: vr -'642090': +"642090": installDir: Coming Out on Top launch: - config: @@ -300234,29 +295530,29 @@ oslist: linux executable: Coming-Out-On-Top.sh type: none -'642170': +"642170": installDir: Legendary Hunter VR launch: - - arguments: '-fullscreen off' + - arguments: "-fullscreen off" config: - osarch: '64' + osarch: "64" oslist: windows executable: LegendaryHunterVR.exe type: vr - config: - osarch: '64' + osarch: "64" oslist: windows executable: LegendaryHunterVR.exe type: othervr -'642190': +"642190": installDir: Beer Pong League launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: BeerPongLeague.exe type: vr -'642390': +"642390": installDir: Blocksworld launch: - config: @@ -300267,14 +295563,14 @@ oslist: macos executable: Blocksworld.app type: default -'642520': +"642520": installDir: Trio launch: - config: oslist: windows executable: Trio.exe type: default -'642560': +"642560": installDir: Art Of Gravity launch: - config: @@ -300289,112 +295585,112 @@ oslist: macos executable: ArtOfGravity.app type: none -'642570': +"642570": installDir: Flame of Mirrors launch: - executable: Flame of Mirrors.exe type: default -'642580': - installDir: Cally's Caves 4 +"642580": + installDir: "Cally's Caves 4" launch: - - executable: Cally's Caves 4.exe + - executable: "Cally's Caves 4.exe" type: none -'642600': +"642600": installDir: Burst Fighter launch: - config: oslist: windows executable: Burst Fighter.exe type: default -'642610': +"642610": installDir: Shape of the World launch: - config: oslist: windows executable: ShapeOfTheWorld.exe type: default -'642650': - installDir: Pepper's Puzzles +"642650": + installDir: "Pepper's Puzzles" launch: - config: oslist: windows executable: pepper.exe type: default -'642660': +"642660": installDir: VRemedies_MRI (2) launch: - config: oslist: windows executable: VRemedies_MRI.exe type: vr -'642670': +"642670": installDir: VRemedies_RT launch: - config: oslist: windows executable: VRemedies_RT.exe type: vr -'642680': +"642680": installDir: Treasure Bolt launch: - config: oslist: windows executable: TreasureBolt.exe type: vr -'642690': +"642690": installDir: X-Ray launch: - config: oslist: windows executable: VRemedies_Theatre.exe type: vr -'642700': +"642700": installDir: The Murder Room VR launch: - config: oslist: windows executable: The Murder Room VR.exe type: vr -'642710': {} -'642730': +"642710": {} +"642730": installDir: Virtual SlotCars launch: - config: oslist: windows executable: vsc.exe type: default -'642830': +"642830": installDir: Milanoir launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: Milanoir.exe type: default - - arguments: '-debug -godmode' + - arguments: "-debug -godmode" config: betakey: audio_test description: Lancio per audio_test executable: Milanoir.exe type: default -'642840': +"642840": installDir: Red_Bull_Doodle_Art_Global_VR_Gallery launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: RedBullDoodleArt_1.0.exe type: vr -'642860': {} -'643000': +"642860": {} +"643000": installDir: BARBAR BAR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: BARBAR_BAR.exe type: vr -'643200': +"643200": installDir: Keep In Mind launch: - config: @@ -300405,14 +295701,14 @@ oslist: macos executable: KeepInMind.app type: default -'643260': +"643260": installDir: Break Stuff With Coins launch: - config: oslist: windows executable: BSWC.exe type: none -'643270': +"643270": installDir: V launch: - config: @@ -300421,9 +295717,9 @@ type: default - config: oslist: macos - executable: V.app\\Contents\\MacOS\\V + executable: "V.app\\\\Contents\\\\MacOS\\\\V" type: default -'643570': +"643570": installDir: Avatar Of The Wolf launch: - config: @@ -300438,31 +295734,31 @@ oslist: linux executable: AvatarOfTheWolf type: none -'643590': +"643590": installDir: Everyday Golf VR launch: - config: oslist: windows executable: EverydayGolfVR.exe type: vr -'643600': {} -'643610': +"643600": {} +"643610": installDir: Mortal Blitz launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: SteamVR executable: MortalBlitz.exe type: vr -'643620': +"643620": installDir: Night Trap - 25th Anniversary Edition launch: - config: oslist: windows executable: NT25.exe type: default -'643700': +"643700": installDir: Super Sports Surgery launch: - config: @@ -300471,9 +295767,9 @@ type: default - config: oslist: macos - executable: Super Sports Surgery.app\\Contents\\MacOS\\Super Sports Surgery + executable: "Super Sports Surgery.app\\\\Contents\\\\MacOS\\\\Super Sports Surgery" type: default -'643810': +"643810": installDir: Fugl launch: - config: @@ -300502,14 +295798,14 @@ spanish: Fugl (Pájaro) swedish: Fugl (Fågel) turkish: Fugl (Kuş) -'643820': +"643820": installDir: ShadowSide launch: - config: oslist: windows - executable: bin\\win_x64\\Shadowside.exe + executable: "bin\\\\win_x64\\\\Shadowside.exe" type: default -'643830': +"643830": installDir: Botlike launch: - config: @@ -300536,7 +295832,7 @@ description: Press Launch Options executable: botlike.exe type: default -'643870': +"643870": installDir: Kitten adventures in city park launch: - config: @@ -300551,7 +295847,7 @@ oslist: linux executable: cat-game.sh type: default -'643880': +"643880": installDir: Strikey Sisters launch: - config: @@ -300560,7 +295856,7 @@ executable: strikey_sisters.exe type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch (Linux) executable: runner @@ -300570,37 +295866,37 @@ description: Launch (Mac) executable: strikey_sisters.app type: none -'643890': {} -'643900': +"643890": {} +"643900": installDir: Alvora Tactics launch: - config: oslist: windows executable: AlvoraTactics.exe type: default -'643930': {} -'643940': +"643930": {} +"643940": installDir: Jim is Moving Out! launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: JIMO.exe type: default - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" config: - osarch: '64' + osarch: "64" oslist: windows executable: JIMO.exe type: config -'643950': +"643950": installDir: A Handful of Keflings launch: - config: oslist: windows executable: AHandfulOfKeflings/Binaries/Win64/AHandfulOfKeflings.exe type: vr -'643960': +"643960": installDir: Cursed Treasure 2 launch: - config: @@ -300608,16 +295904,16 @@ executable: Cursed TD2.exe type: default - config: - osarch: '64' + osarch: "64" oslist: macos - executable: Cursed TD2.app\\Contents\\MacOS\\Cursed TD2 + executable: "Cursed TD2.app\\\\Contents\\\\MacOS\\\\Cursed TD2" type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Cursed TD2 type: default -'643970': +"643970": installDir: Return to Planet X launch: - config: @@ -300626,14 +295922,14 @@ type: none - config: oslist: macos - executable: Return to Planet X.app\\Contents\\MacOS\\Return to Planet X + executable: "Return to Planet X.app\\\\Contents\\\\MacOS\\\\Return to Planet X" type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: Return to Planet X.x86_64 type: none -'643980': +"643980": installDir: Ironbound launch: - config: @@ -300644,24 +295940,24 @@ - config: oslist: macos description: Launch - executable: Ironbound.app\\Contents\\MacOS\\Ironbound + executable: "Ironbound.app\\\\Contents\\\\MacOS\\\\Ironbound" type: none -'644000': +"644000": installDir: INTERSTELLAR PRIME launch: - config: oslist: windows executable: INTERSTELLAR PRIME.exe type: default -'644010': +"644010": installDir: Racing Glider launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: \\bin\\win_x64\\RacingGlider.exe + executable: "\\\\bin\\\\win_x64\\\\RacingGlider.exe" type: none -'644080': +"644080": installDir: Alphabear launch: - config: @@ -300670,39 +295966,39 @@ type: default - config: oslist: macos - executable: Alphabear.app\\Contents\\MacOS\\Alphabear + executable: "Alphabear.app\\\\Contents\\\\MacOS\\\\Alphabear" type: default -'644090': {} -'644100': {} -'644110': +"644090": {} +"644100": {} +"644110": installDir: Lone Pirate VR launch: - config: oslist: windows executable: Lone Pirate VR.exe type: vr -'644120': {} -'644130': +"644120": {} +"644130": installDir: Foxus launch: - executable: Foxus.exe type: default -'644150': +"644150": installDir: Smogland launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Smogpunk.exe type: none -'644160': +"644160": installDir: Reflecting Fate launch: - config: oslist: windows executable: reflect/bin32/refl.exe type: default -'644200': +"644200": installDir: Starlight of Aeons launch: - config: @@ -300712,117 +296008,117 @@ nameLocalized: schinese: 亿万年的星光 Starlight of Aeons tchinese: 億萬年的星光 Starlight of Aeons -'644280': {} -'644290': +"644280": {} +"644290": installDir: Memories of Mars launch: - - arguments: '-audience=MoM -noeac' + - arguments: "-audience=MoM -noeac" config: betakey: default - osarch: '64' + osarch: "64" oslist: windows - description: '(Not shown in Steam): Launches a client connecting to public servers' + description: "(Not shown in Steam): Launches a client connecting to public servers" executable: Launch_Game.exe type: default - - arguments: '-audience=EAC' + - arguments: "-audience=EAC" config: betakey: mars_eac - osarch: '64' + osarch: "64" oslist: windows description: Use this launch option to see the correct servers! executable: Launch_Game.exe type: default - - arguments: '-audience=MoM -noeac' + - arguments: "-audience=MoM -noeac" config: betakey: mars_qa_2 - osarch: '64' + osarch: "64" oslist: windows description: Use this launch option to see the correct servers! executable: Launch_Game.exe type: default - - arguments: '-audience=EAC' + - arguments: "-audience=EAC" config: betakey: mars_eac2 - osarch: '64' + osarch: "64" oslist: windows description: Use this launch option to see the correct servers! executable: Launch_Game.exe type: default - - arguments: '-audience=505' + - arguments: "-audience=505" config: betakey: milestones - osarch: '64' + osarch: "64" oslist: windows description: Use this launch option to see the correct servers! executable: Launch_Game.exe type: default - - arguments: '-audience=Beta -gamemaster' + - arguments: "-audience=Beta -gamemaster" config: betakey: mars_vip - osarch: '64' + osarch: "64" oslist: windows executable: Launch_Game.exe type: default - - arguments: '-audience=QA -environment=dev -noeac -ini:Engine:[LimbicEncryption]:bEnableLimbicEncryption=true' + - arguments: "-audience=QA -environment=dev -noeac -ini:Engine:[LimbicEncryption]:bEnableLimbicEncryption=true" config: betakey: mars_qa - osarch: '64' + osarch: "64" oslist: windows executable: Launch_Game.exe type: default - - arguments: '-audience=505 -gamemaster' + - arguments: "-audience=505 -gamemaster" config: betakey: 505_China - osarch: '64' + osarch: "64" oslist: windows executable: Launch_Game.exe type: default - - arguments: '-audience=MoM' + - arguments: "-audience=MoM" config: betakey: private_server - osarch: '64' + osarch: "64" oslist: windows executable: Launch_Game.exe type: default - - arguments: '-Limbic -noeac -cheats -gamemaster -audience=preview' + - arguments: "-Limbic -noeac -cheats -gamemaster -audience=preview" config: betakey: preview - osarch: '64' + osarch: "64" oslist: windows executable: Launch_Game.exe type: default - - arguments: '-Photon -PhotonSendDirect=off -noeac -cheats -gamemaster' + - arguments: "-Photon -PhotonSendDirect=off -noeac -cheats -gamemaster" config: betakey: age_rating - osarch: '64' + osarch: "64" oslist: windows executable: Launch_Game.exe type: default - - arguments: '-Limbic -noeac -cheats -gamemaster -audience=MoM' + - arguments: "-Limbic -noeac -cheats -gamemaster -audience=MoM" config: betakey: gportal - osarch: '64' + osarch: "64" oslist: windows executable: Launch_Game.exe type: default -'644310': {} -'644320': +"644310": {} +"644320": installDir: Halfquake Trilogy launch: - - arguments: '-game hqtrilogy' + - arguments: "-game hqtrilogy" config: oslist: windows executable: launcher.exe type: default -'644330': +"644330": installDir: In The Dark launch: - config: oslist: windows executable: game.exe type: default -'644340': {} -'644370': +"644340": {} +"644370": installDir: Howard Phillips Lovecar launch: - config: @@ -300841,17 +296137,17 @@ description: Launch executable: HPLovecar type: default -'644380': +"644380": installDir: Hegis Grasp launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch Game executable: hegis_grasp.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch Game executable: hegis-grasp.x86_64 @@ -300861,7 +296157,7 @@ description: Launch Game executable: mac_content.app type: default -'644390': +"644390": installDir: Waterdeep launch: - config: @@ -300870,26 +296166,26 @@ type: none - config: oslist: macos - executable: Waterdeep.app\\Contents\\MacOS\\Waterdeep + executable: "Waterdeep.app\\\\Contents\\\\MacOS\\\\Waterdeep" type: none -'644400': +"644400": installDir: RoboTraps launch: - - arguments: '-compositor' + - arguments: "-compositor" config: oslist: windows executable: RoboTraps.exe type: vr -'644420': +"644420": installDir: Xion launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Xion Steam VR executable: Xion.exe type: vr -'644480': +"644480": installDir: Outbreak The New Nightmare launch: - config: @@ -300898,7 +296194,7 @@ executable: Outbreak3D.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Outbreak3DLinux.x86_64 type: default @@ -300906,28 +296202,28 @@ oslist: macos executable: OB3DMac.app type: default -'644530': - installDir: The Maid_san's Caving Adventure - メイドさん洞窟探検 - +"644530": + installDir: "The Maid_san's Caving Adventure - メイドさん洞窟探検 -" launch: - config: oslist: windows - executable: Maid_san's Caving Adventure.exe + executable: "Maid_san's Caving Adventure.exe" type: default -'644540': +"644540": installDir: Dies irae ~Amantes amentes~ launch: - config: oslist: windows executable: malie.exe type: none -'644550': +"644550": installDir: Mysteries of Fence launch: - config: oslist: windows executable: MysteriesofFence.exe type: default -'644560': +"644560": installDir: Mirror launch: - config: @@ -300936,16 +296232,16 @@ type: none - config: oslist: macos - executable: game.app\\Contents\\MacOS\\game + executable: "game.app\\\\Contents\\\\MacOS\\\\game" type: none -'644570': +"644570": installDir: Material Girl launch: - config: oslist: windows executable: Game.exe type: none -'644580': +"644580": installDir: Slash or Die 2 launch: - config: @@ -300958,9 +296254,9 @@ type: default - config: oslist: macos - executable: \\Contents\\MacOS\\SOD2_Mac + executable: "\\\\Contents\\\\MacOS\\\\SOD2_Mac" type: default -'644610': +"644610": installDir: Drums Hero PC launch: - arguments: Handle @@ -300968,235 +296264,234 @@ oslist: windows executable: Drums Hero PC.exe type: default -'644630': {} -'644640': +"644630": {} +"644640": installDir: Band of Defenders launch: - executable: BandOfDefenders.exe type: none -'644660': +"644660": installDir: Lathe Safety Simulator launch: - config: oslist: windows executable: LatheSafetySimulatorV2.exe type: vr -'644670': +"644670": installDir: Deus Vult launch: - config: oslist: windows executable: DeusVult.exe type: vr -'644680': +"644680": installDir: Libra of the Vampire Princess Beginnings launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: LIBRAeSe.exe type: none -'644710': +"644710": installDir: Gary Grigsbys War in the West launch: - config: oslist: windows executable: autorun.exe type: default -'644740': +"644740": installDir: VRun launch: - config: oslist: windows executable: VRun.exe type: vr -'644760': +"644760": installDir: Streetball VR launch: - config: oslist: windows executable: Streetball_VR.exe type: vr -'644800': {} -'644810': {} -'644830': +"644800": {} +"644810": {} +"644830": installDir: The Surge 2 launch: - - executable: bin\\TheSurge2.exe + - executable: "bin\\\\TheSurge2.exe" type: none - workingdir: \\bin + workingdir: "\\\\bin" - description: Driver Checker (Beta) - executable: launcher\\surge2-launcher.exe + executable: "launcher\\\\surge2-launcher.exe" type: none - workingdir: \\bin -'644860': + workingdir: "\\\\bin" +"644860": installDir: The Lightbringers launch: - description: Launch executable: Game.exe type: none -'644870': +"644870": installDir: Fortress of Hell launch: - description: Launch executable: Game.exe type: none -'644890': +"644890": installDir: windows_content launch: - executable: A10.exe type: none -'644930': +"644930": installDir: They Are Billions launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TheyAreBillions.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: TheyAreBillions_x86.exe type: default -'645090': +"645090": installDir: Zup! 5 launch: - config: oslist: windows executable: Zup! 5.exe type: default -'645130': {} -'645150': +"645130": {} +"645150": installDir: Unborne launch: - config: oslist: windows executable: Unborne.exe type: default -'645190': {} -'645200': +"645190": {} +"645200": installDir: lethalrunning launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: lethalrunning.exe type: default -'645210': {} -'645230': +"645210": {} +"645230": installDir: SUMOCRATS launch: - config: oslist: windows executable: SumologyThrowBall.exe type: default -'645240': +"645240": installDir: Costumenaut launch: - config: oslist: windows executable: costumenaut.exe type: default -'645260': +"645260": installDir: Trophy Fishing 2 launch: - config: oslist: windows executable: Trophy Fishing 2.exe type: default -'645270': +"645270": installDir: 30 days to survive launch: - config: oslist: windows executable: 30 Days to survive.exe type: config -'645280': +"645280": installDir: MYSTIC VR launch: - config: oslist: windows executable: MYSTIC_VR_Build_1_0.exe type: vr -'645290': +"645290": installDir: MECHANISM launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Mechanism.exe type: default -'645310': +"645310": installDir: The Heart of the Earth - launch: [] -'645320': +"645320": installDir: Scarf launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Scarf.exe type: default -'645330': +"645330": installDir: FrontlineHeroesVR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: FrontlineHeroesVR.exe type: vr - config: betakey: testing - osarch: '64' + osarch: "64" oslist: windows executable: NightmareStories.exe type: vr -'645340': +"645340": installDir: Relax Walk VR launch: - config: oslist: windows executable: Relax_Walk_VR.exe type: vr -'645360': +"645360": installDir: CubeXL launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: CubeXL.exe type: default -'645380': +"645380": installDir: Heroes of Umbra launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: heroes-of-umbra.exe type: default -'645410': +"645410": installDir: Ominous Tales The Forsaken Isle launch: - config: oslist: windows executable: OminousFull.exe type: default -'645420': +"645420": installDir: Entwined Strings of Deception launch: - config: oslist: windows executable: Entwined.exe type: default -'645440': +"645440": installDir: Tearstone launch: - config: oslist: windows executable: Tearstone.exe type: default -'645450': +"645450": installDir: Gravity Quest launch: - config: @@ -301207,7 +296502,7 @@ oslist: macos executable: Gravity Quest.app type: default -'645460': +"645460": installDir: Mind Maze launch: - config: @@ -301215,62 +296510,62 @@ description: Launch executable: Mind Maze.exe type: none -'645470': +"645470": installDir: LOG the game launch: - config: oslist: windows executable: LOG the game.exe type: default -'645480': +"645480": installDir: SpiderManHCVR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SMHCVR.exe type: vr -'645500': +"645500": installDir: Cat Sorter VR launch: - config: oslist: windows executable: CatSorterVR.exe type: vr -'645530': {} -'645630': +"645530": {} +"645630": installDir: Car Mechanic Simulator 2018 launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: cms2018.exe type: none - arguments: editor config: - osarch: '64' + osarch: "64" oslist: windows description: Launch Car Editor executable: cms2018.exe type: editor - arguments: resetSettings config: - osarch: '64' + osarch: "64" oslist: windows description: Reset settings executable: cms2018.exe type: none - - arguments: '-window-mode exclusive' + - arguments: "-window-mode exclusive" config: - osarch: '64' + osarch: "64" oslist: windows description: Run game in EXCLUSIVE FULLSCREEN mode executable: cms2018.exe type: none - arguments: upload config: - osarch: '64' + osarch: "64" oslist: windows description: Workshop Uploader executable: cms2018.exe @@ -301281,12 +296576,12 @@ type: default - arguments: safeMode config: - osarch: '64' + osarch: "64" oslist: windows description: Safe Mode (game will run without mods) executable: cms2018.exe type: none - - arguments: '-force-gfx-metal' + - arguments: "-force-gfx-metal" config: oslist: macos description: Run with Metal API @@ -301304,7 +296599,7 @@ description: Reset settings executable: cms2018.app type: none -'645650': +"645650": installDir: Chickens Madness launch: - config: @@ -301312,10 +296607,10 @@ description: Windows executable: ChickensMadness.exe type: none -'645690': +"645690": installDir: Fantasia of the Wind launch: - - arguments: ' --in-process-gpu' + - arguments: " --in-process-gpu" config: oslist: windows executable: FantasiaOfWind.exe @@ -301324,8 +296619,8 @@ oslist: macos executable: FantasiaOfWind.app/Contents/MacOS/nwjs type: default -'645710': {} -'645720': +"645710": {} +"645720": installDir: Fabular Once upon a Spacetime launch: - config: @@ -301333,63 +296628,63 @@ executable: Fabular.exe type: default nameLocalized: - arabic: 'Fabular: حدث ذات مرة في الفضاء' - brazilian: 'Fabular: Era uma vez no espaço-tempo' - bulgarian: 'Fabular: Отвъд много звезди' - czech: 'Fabular: Za devatero hvězdami' - danish: 'Fabular: Der var engang i det ydre rum...' - dutch: 'Fabular: In een fabelachtige ruimtetijd' - finnish: 'Fabular: Olipa kerran avaruusvaltakunta…' - french: 'Fabular : Il était un espace-temps' - german: 'Fabular: Vor langer, langer Raumzeit ...' - greek: 'Fabular: Κάποτε στον χωροχρόνο' - hungarian: 'Fabular: Egyszer régen, a téridőben' - italian: 'Fabular: Tanto spaziotempo fa' + arabic: "Fabular: حدث ذات مرة في الفضاء" + brazilian: "Fabular: Era uma vez no espaço-tempo" + bulgarian: "Fabular: Отвъд много звезди" + czech: "Fabular: Za devatero hvězdami" + danish: "Fabular: Der var engang i det ydre rum..." + dutch: "Fabular: In een fabelachtige ruimtetijd" + finnish: "Fabular: Olipa kerran avaruusvaltakunta…" + french: "Fabular : Il était un espace-temps" + german: "Fabular: Vor langer, langer Raumzeit ..." + greek: "Fabular: Κάποτε στον χωροχρόνο" + hungarian: "Fabular: Egyszer régen, a téridőben" + italian: "Fabular: Tanto spaziotempo fa" japanese: Fabular - 遠い昔の宇宙 - - koreana: 'Fabular: 원스 어폰 어 스페이스타임' - latam: 'Fabular: Érase una vez en el espacio' - norwegian: 'Fabular: Det var engang i verdensrommet …' - polish: 'Fabular: Kosmiczna baśń' - portuguese: 'Fabular: Era uma vez no espaço-tempo' - romanian: 'Fabular: Saga spaţiului' - russian: 'Fabular: Сказание о космосе' + koreana: "Fabular: 원스 어폰 어 스페이스타임" + latam: "Fabular: Érase una vez en el espacio" + norwegian: "Fabular: Det var engang i verdensrommet …" + polish: "Fabular: Kosmiczna baśń" + portuguese: "Fabular: Era uma vez no espaço-tempo" + romanian: "Fabular: Saga spaţiului" + russian: "Fabular: Сказание о космосе" schinese: 星骑:亘古时空 - spanish: 'Fabular: Érase una vez en el espacio' - swedish: 'Fabular: En gång i rumtiden' - thai: 'Fabular: กาลครั้งหนึ่งในอวกาศ' - turkish: 'Fabular: Bir Zamanlar Uzayda' - ukrainian: 'Fabular: Велика космічна казка' - vietnamese: 'Fabular: Ngày xửa ngày xưa' -'645730': + spanish: "Fabular: Érase una vez en el espacio" + swedish: "Fabular: En gång i rumtiden" + thai: "Fabular: กาลครั้งหนึ่งในอวกาศ" + turkish: "Fabular: Bir Zamanlar Uzayda" + ukrainian: "Fabular: Велика космічна казка" + vietnamese: "Fabular: Ngày xửa ngày xưa" +"645730": installDir: Resonance of Fate launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Resonance of Fate.exe type: default - config: betakey: development - osarch: '64' + osarch: "64" oslist: windows description: デバッグ機能付き executable: Resonance of FateD.exe type: option1 - config: betakey: quality_assurance - osarch: '64' + osarch: "64" oslist: windows description: デバッグ機能付き executable: Resonance of FateD.exe type: option1 - config: betakey: test - osarch: '64' + osarch: "64" oslist: windows description: デバッグ機能付き executable: Resonance of FateD.exe type: option1 -'645750': +"645750": installDir: Rule with an Iron Fish launch: - config: @@ -301400,15 +296695,15 @@ oslist: windows executable: PirateFishing.exe type: none -'645760': {} -'645780': +"645760": {} +"645780": installDir: Robot Pirates launch: - config: oslist: windows executable: Robot_Pirates.exe type: default -'645790': +"645790": installDir: Home Wars launch: - config: @@ -301416,12 +296711,12 @@ description: Launch executable: Home Wars.exe type: none -'645810': {} -'645820': +"645810": {} +"645820": installDir: Odysseus Kosmos and his Robot Quest launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: OdysseusS1E1.exe type: default @@ -301429,14 +296724,14 @@ oslist: linux executable: OdysseusS1E1.x86 type: default -'645830': +"645830": installDir: SonKorsan launch: - config: oslist: windows executable: SonKorsan.exe type: default -'645860': +"645860": installDir: Spartan VR launch: - config: @@ -301445,61 +296740,61 @@ executable: SpartanVR.exe type: vr - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch app Oculus VR executable: SpartanVR.exe type: othervr -'645920': +"645920": installDir: Dreamstones launch: - config: oslist: windows executable: Dreamstones.exe type: none -'645930': +"645930": installDir: Zero Killed launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: WindowsNoEditor/SpecialForcesVR.exe type: vr -'645940': +"645940": installDir: OneScreen Solar Sails launch: - config: oslist: windows executable: nw.exe type: none -'646010': +"646010": installDir: Golem launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Golem64.exe type: none - config: - osarch: '32' + osarch: "32" oslist: windows executable: Golem.exe type: none -'646050': +"646050": installDir: Past Cure launch: - config: oslist: windows executable: PastCure.exe type: none -'646100': +"646100": installDir: Woodlands launch: - config: oslist: windows executable: Woodlands.exe type: default -'646150': +"646150": installDir: Games Collection launch: - config: @@ -301532,14 +296827,14 @@ executable: USM/USM.exe type: option1 workingdir: USM -'646180': +"646180": installDir: Nightcrawler VR Bowling launch: - config: oslist: windows executable: update1_build.exe type: vr -'646200': +"646200": installDir: Dead Effect 2 VR launch: - config: @@ -301547,8 +296842,8 @@ description: Launch executable: DeadEffect2.exe type: vr -'646210': - installDir: The Mind's Eclipse +"646210": + installDir: "The Mind's Eclipse" launch: - config: oslist: macos @@ -301562,18 +296857,18 @@ oslist: linux executable: TheMindsEclipse.sh type: default -'646240': +"646240": installDir: Bacon May Die launch: - config: oslist: windows executable: Bacon.exe type: none -'646270': +"646270": installDir: 60 Parsecs! launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: 60Parsecs.exe type: default @@ -301581,37 +296876,37 @@ oslist: macos executable: 60Parsecs.app type: default -'646280': +"646280": installDir: Too Many Weapons launch: - config: oslist: windows executable: TooManyWeapons.exe type: default -'646300': +"646300": installDir: ChainMan launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ChainMan.exe type: vr -'646310': +"646310": installDir: ProjectM Day Dream launch: - - arguments: '-platform steam -vr -fullscreen ' + - arguments: "-platform steam -vr -fullscreen " config: - osarch: '64' + osarch: "64" oslist: windows executable: ProjectM.exe type: vr - - arguments: '-platform steam -vr -fullscreen ' + - arguments: "-platform steam -vr -fullscreen " config: - osarch: '64' + osarch: "64" oslist: windows executable: ProjectM.exe type: othervr -'646330': +"646330": installDir: Darkness and Flame Missing Memories launch: - config: @@ -301622,7 +296917,7 @@ oslist: macos executable: Darkness and Flame Missing Memories.app type: none -'646350': +"646350": installDir: Tracon!2012SE launch: - config: @@ -301636,101 +296931,101 @@ type: none - config: oslist: windows - description: 'Show Tracon!2012:SE manual' + description: "Show Tracon!2012:SE manual" executable: TRACON-2012-manual.pdf type: none - config: - ownsdlc: '657130' + ownsdlc: "657130" description: EDDF Sector manual executable: manuals/EDDF_manual.pdf type: none - config: - ownsdlc: '657140' + ownsdlc: "657140" description: ATL Sector manual executable: manuals/ATL_manual.pdf type: none - config: - ownsdlc: '656990' + ownsdlc: "656990" description: DXB Sector manual executable: manuals/DXB_manual.pdf type: none - config: - ownsdlc: '658640' + ownsdlc: "658640" description: LON Sector manual executable: manuals/LON1_manual.pdf type: none - config: - ownsdlc: '658650' + ownsdlc: "658650" description: LON2 Sector manual executable: manuals/LON2_manual.pdf type: none - config: - ownsdlc: '657150' + ownsdlc: "657150" description: JFK Sector manual executable: manuals/JFK_manual.pdf type: none - config: - ownsdlc: '657160' + ownsdlc: "657160" description: SFO Sector manual executable: manuals/SFO_manual.pdf type: none -'646360': +"646360": installDir: Ministerio VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: MinisterioDelTiempo.exe type: vr -'646370': +"646370": installDir: Vesta launch: - config: oslist: windows executable: vesta.exe type: none -'646380': +"646380": installDir: Uphill Skiing launch: - executable: UphillSkiing.exe type: vr -'646430': +"646430": installDir: HARP launch: - config: oslist: windows executable: HARP.exe type: default -'646440': +"646440": installDir: Redfoot Bluefoot Dancing launch: - config: oslist: windows executable: RBD.exe type: vr -'646450': {} -'646460': +"646450": {} +"646460": installDir: CompliKATed launch: - config: oslist: macos - executable: CompliKATed.app\\Contents\\MacOS\\CompliKATed + executable: "CompliKATed.app\\\\Contents\\\\MacOS\\\\CompliKATed" type: default - config: oslist: windows executable: CompliKATed.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: CompliKATed.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: CompliKATed.x86_64 type: default -'646470': +"646470": installDir: Alicia Quatermain Secrets Of The Lost Treasures launch: - config: @@ -301742,16 +297037,16 @@ executable: AliciaQuatermain_CE.app type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: AliciaQuatermain_CE.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: AliciaQuatermain_CE.x86_64 type: none -'646500': +"646500": installDir: Egypt Old Kingdom launch: - config: @@ -301763,26 +297058,26 @@ executable: Egypt Old Kingdom.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Egypt Old Kingdom.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Egypt Old Kingdom.x86_64 type: default -'646530': +"646530": installDir: Hop Step Sing! 2nd Song launch: - executable: HSS_PV2.exe type: vr nameLocalized: japanese: Hop Step Sing!『kiss×kiss×kiss』 -'646570': +"646570": installDir: SlayTheSpire launch: - - arguments: '-jar desktop-1.0.jar' + - arguments: "-jar desktop-1.0.jar" config: oslist: windows executable: jre/bin/javaw.exe @@ -301796,19 +297091,19 @@ oslist: linux executable: SlayTheSpire type: default - - arguments: '-jar mts-launcher.jar' + - arguments: "-jar mts-launcher.jar" config: oslist: windows description: With Mods executable: jre/bin/javaw.exe type: option1 - - arguments: '-jar mts-launcher.jar' + - arguments: "-jar mts-launcher.jar" config: oslist: linux description: With Mods executable: jre/bin/java type: option1 - - arguments: '-jar mts-launcher.jar' + - arguments: "-jar mts-launcher.jar" config: oslist: macos description: With Mods @@ -301819,11 +297114,9 @@ betakey: troubleshoot oslist: windows description: With Troubleshoot Mode - description_loc: - english: With Troubleshoot Mode executable: SlayTheSpire.exe type: option2 -'646600': +"646600": installDir: Baobabs Mausoleum Ep. 1 launch: - config: @@ -301836,21 +297129,21 @@ description: Inicio normal Mac executable: BaobabsMausoleumEP1.app type: default -'646680': +"646680": installDir: Roman Adventures Season1 launch: - config: oslist: windows executable: Roman Adventures. Britons (Season 1).exe type: default -'646820': +"646820": installDir: Might & Mayhem launch: - config: oslist: windows executable: MightAndMayhem.exe type: default -'646890': +"646890": installDir: Distant Nightmare launch: - config: @@ -301861,88 +297154,86 @@ oslist: windows executable: Distant Nightmare.exe type: vr -'646910': +"646910": installDir: The Crew 2 launch: - - arguments: '-uplay_steam_mode' + - arguments: "-uplay_steam_mode" config: oslist: windows - ownsdlc: '999420' + ownsdlc: "999420" description: Launch executable: TheCrew2.exe type: none - - arguments: '-upc_steam_free_package_id 17992 -uplay_steam_mode' + - arguments: "-upc_steam_free_package_id 17992 -uplay_steam_mode" config: oslist: windows - ownsdlc: '999421' + ownsdlc: "999421" description: Free Weekend - description_loc: - english: Free Weekend executable: TheCrew2.exe type: none -'646960': +"646960": installDir: Three Twenty One launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Start the main game executable: 321.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows - ownsdlc: '649550' + ownsdlc: "649550" description: Rezzed2016 Demo executable: /Three Twenty One Extra Content/Rezzed2016 Demo/ThreeTwentyOnePreview.exe type: option1 - config: - osarch: '64' + osarch: "64" oslist: macos executable: 321.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: 321.game type: default -'647000': +"647000": installDir: RoBros launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: RoBros.exe type: default -'647040': +"647040": installDir: Riaaf The Spider launch: - config: oslist: windows executable: RiaafTheSpider.exe type: default -'647050': +"647050": installDir: Super Hardcore launch: - config: oslist: windows executable: SuperHardcore.exe type: default -'647080': - installDir: Haunted Halls Green Hills Sanitarium Collector's Edition +"647080": + installDir: "Haunted Halls Green Hills Sanitarium Collector's Edition" launch: - config: oslist: windows executable: Haunted Halls - Green Hills Sanitarium CE.exe type: default -'647090': - installDir: Maestro Music of Death Collector's Edition +"647090": + installDir: "Maestro Music of Death Collector's Edition" launch: - config: oslist: windows executable: Maestro - Music of Death.exe type: default -'647280': +"647280": installDir: Pixel Shooter launch: - config: @@ -301951,60 +297242,60 @@ type: default - config: oslist: macos - executable: PixelShooter.app\\Contents\\MacOS\\PixelShooter + executable: "PixelShooter.app\\\\Contents\\\\MacOS\\\\PixelShooter" type: default - config: oslist: linux executable: PixelShooter.x86_64 type: default -'647410': {} -'647430': +"647410": {} +"647430": installDir: Game of Emperors launch: - executable: GameOfEmperors.exe type: none -'647500': +"647500": installDir: Near Death Experience launch: - config: oslist: windows executable: Near Death Experience.exe type: default -'647530': +"647530": installDir: Prime Arena launch: - config: oslist: windows - executable: Bin\\PW_Game.exe + executable: "Bin\\\\PW_Game.exe" type: default workingdir: Bin -'647550': {} -'647570': +"647550": {} +"647570": installDir: Transference launch: - - arguments: '-Retail Steam -uplay_steam_mode' + - arguments: "-Retail Steam -uplay_steam_mode" executable: Transference.exe type: none -'647590': {} -'647640': +"647590": {} +"647640": installDir: ShockRods launch: - config: oslist: windows description: Launch - executable: ./ShockRods.exe + executable: "./ShockRods.exe" type: none -'647660': {} -'647740': +"647660": {} +"647740": installDir: Airmen launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Airmen.exe type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: Airmen.x86_64 type: none @@ -302012,7 +297303,7 @@ oslist: macos executable: Airmen.app type: none -'647820': +"647820": installDir: Order227 launch: - config: @@ -302027,11 +297318,11 @@ oslist: linux executable: nw type: default -'647830': +"647830": installDir: LEGO Marvel Super Heroes 2 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: LEGOMARVEL2_DX11.exe type: default @@ -302039,134 +297330,132 @@ oslist: macos executable: LEGO Marvel Super Heroes 2.app type: default -'647840': +"647840": installDir: Ironclads 2 Caroline Islands War 1885 launch: - executable: Ironclads2_Caroline_Islands_War.exe type: default -'647850': - installDir: Royal Detective Queen of Shadows Collector's Edition +"647850": + installDir: "Royal Detective Queen of Shadows Collector's Edition" launch: - config: oslist: windows executable: RoyalDetective_QueenOfShadowsCE.exe type: default -'647890': - installDir: The Agency of Anomalies The Last Performance Collector's Edition +"647890": + installDir: "The Agency of Anomalies The Last Performance Collector's Edition" launch: - config: oslist: windows executable: TheAgencyofAnomalies_TheLastPerformanceCE.exe type: default -'647900': - installDir: Riddles of Fate Into Oblivion Collector's Edition +"647900": + installDir: "Riddles of Fate Into Oblivion Collector's Edition" launch: - config: oslist: windows executable: RiddlesOfFate_IntoOblivionCE.exe type: default -'647910': - installDir: Amaranthine Voyage The Living Mountain Collector's Edition +"647910": + installDir: "Amaranthine Voyage The Living Mountain Collector's Edition" launch: - config: oslist: windows executable: Amaranthine_Voyage_The_Living_Mountain_CE.exe type: default -'647930': - installDir: Danse Macabre Crimson Cabaret Collector's Edition +"647930": + installDir: "Danse Macabre Crimson Cabaret Collector's Edition" launch: - config: oslist: windows executable: DanseMacabre_CrimsonCabaret_CE.exe type: default -'647940': - installDir: Shrouded Tales Revenge of Shadows Collector's Edition +"647940": + installDir: "Shrouded Tales Revenge of Shadows Collector's Edition" launch: - config: oslist: windows executable: ShroudedTales_RevengeOfShadows_CE.exe type: default -'647950': +"647950": installDir: Kitty Nigiri launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: KNVR.exe type: vr -'647960': +"647960": installDir: Rusted Warfare launch: - - arguments: '-steam' + - arguments: "-steam" config: oslist: windows executable: Rusted Warfare.exe type: default - - arguments: '-steam' + - arguments: "-steam" config: oslist: linux executable: rustedWarfareLinux.sh type: default - - arguments: '-steam' + - arguments: "-steam" config: betakey: testing oslist: macos description: With alternative launcher executable: rustedWarfareMac.sh type: option1 - - arguments: >- - -Xdock:name=\"Rusted Warfare\" -Xdock:icon=\"res/drawable/icon_window.png\" -Dfile.encoding=UTF-8 - -Djava.library.path=. -cp \"game-lib.jar:libs/*\" com.corrodinggames.rts.java.Main -steam -log lastrun.log + - arguments: "-Xdock:name=\\\"Rusted Warfare\\\" -Xdock:icon=\\\"res/drawable/icon_window.png\\\" -Dfile.encoding=UTF-8 -Djava.library.path=. -cp \\\"game-lib.jar:libs/*\\\" com.corrodinggames.rts.java.Main -steam -log lastrun.log" config: oslist: macos executable: jvm-mac/Contents/Home/bin/Rusted Warfare type: default - - arguments: '-steam' + - arguments: "-steam" config: betakey: 64bit-test - osarch: '64' + osarch: "64" oslist: windows description: Rusted Warfare (64bit) executable: Rusted Warfare - 64.exe type: option1 - - arguments: '-steam' + - arguments: "-steam" config: betakey: beta - osarch: '64' + osarch: "64" oslist: windows description: Rusted Warfare (64bit) executable: Rusted Warfare - 64.exe type: option1 - - arguments: '-steam' + - arguments: "-steam" config: betakey: testing - osarch: '64' + osarch: "64" oslist: windows description: Rusted Warfare (64bit) executable: Rusted Warfare - 64.exe type: option1 - - arguments: '-steam' + - arguments: "-steam" config: - osarch: '64' + osarch: "64" oslist: windows description: Rusted Warfare (64bit) executable: Rusted Warfare - 64.exe type: option1 -'647980': +"647980": installDir: Trojan Inc launch: - config: oslist: windows executable: Trojan Inc. Launch.exe type: none -'647990': +"647990": installDir: Batter Up! VR launch: - config: oslist: windows executable: BatterUpVR.exe type: vr -'648020': +"648020": installDir: The Fleet launch: - config: @@ -302181,26 +297470,26 @@ oslist: linux executable: TheFleet type: none -'648050': +"648050": installDir: Super Pilot launch: - config: oslist: windows executable: SuperPilot.exe type: default -'648060': +"648060": installDir: Nucvivor launch: - config: oslist: windows executable: Nucvivor.exe type: default -'648070': +"648070": installDir: CrisisActionVR launch: - executable: Client.exe type: default -'648100': +"648100": installDir: レイジングループ launch: - config: @@ -302209,24 +297498,24 @@ type: none nameLocalized: japanese: レイジングループ -'648120': +"648120": installDir: Pixel Painter launch: - config: oslist: windows executable: Pixel Painter.exe type: default -'648190': +"648190": installDir: AliensInTheYard launch: - config: oslist: windows executable: AliensInTheYard.exe type: vr -'648220': {} -'648260': {} -'648270': {} -'648340': +"648220": {} +"648260": {} +"648270": {} +"648340": installDir: Harald launch: - config: @@ -302235,27 +297524,27 @@ type: default - config: oslist: macos - executable: harald.app\\Contents\\MacOS\\HARALD 1.0 + executable: "harald.app\\\\Contents\\\\MacOS\\\\HARALD 1.0" type: default -'648350': +"648350": installDir: Jurassic World Evolution launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Play Final executable: JWE.exe type: default - config: - betakey: 'dev_release2, dev_release, testing_fqa, dev_loc, denuvo, branch_4, ext_dev_instrumented, ext_live_instrumented' - osarch: '64' + betakey: "dev_release2, dev_release, testing_fqa, dev_loc, denuvo, branch_4, ext_dev_instrumented, ext_live_instrumented" + osarch: "64" oslist: windows description: Jurassic World Evolution (Profile Build) executable: Nero.Win64.profile.exe type: option1 - config: - betakey: 'dev_release2, dev_release, dev_test2, testing_fqa' - osarch: '64' + betakey: "dev_release2, dev_release, dev_test2, testing_fqa" + osarch: "64" oslist: windows description: Jurassic World Evolution (Release Build) executable: Nero.Win64.release.exe @@ -302265,48 +297554,48 @@ koreana: 쥬라기 월드 에볼루션 schinese: 侏罗纪世界:进化 tchinese: 侏羅紀世界:進化 -'648380': +"648380": installDir: BulletDodge launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: BulletDodge.exe type: vr -'648390': - installDir: Marie's Room +"648390": + installDir: "Marie's Room" launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: MariesRoom.exe type: none -'648410': +"648410": installDir: Colony Ship RPG launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ColonyShipGame.exe type: default -'648430': +"648430": installDir: Hand of the Gods launch: - - arguments: '-steam -pid=351 ' + - arguments: "-steam -pid=351 " config: - osarch: '64' + osarch: "64" oslist: windows description: Launch - executable: Tactics\\Binaries\\Win64\\Tactics.exe + executable: "Tactics\\\\Binaries\\\\Win64\\\\Tactics.exe" type: none -'648440': +"648440": installDir: Pixel Devil and the Broken Cartridge launch: - config: oslist: windows executable: Pixel Devil and the Broken Cartridge.exe type: none -'648510': +"648510": installDir: Choice of the Star Captain launch: - config: @@ -302321,7 +297610,7 @@ oslist: linux executable: ChoiceOfTheStarCaptain type: none -'648530': +"648530": installDir: Reckless Space Pirates launch: - config: @@ -302336,22 +297625,22 @@ oslist: linux executable: RecklessSpacePirates type: none -'648550': +"648550": installDir: Choice launch: - config: oslist: windows executable: Choice.exe type: default -'648570': +"648570": installDir: HellDimensionVR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: HellDimensionVR.exe type: vr -'648580': +"648580": installDir: 428_shibuya_scramble_en launch: - config: @@ -302363,14 +297652,14 @@ description: Launch Game (Debug) executable: kachina_debug.exe type: none -'648630': +"648630": installDir: Damascus Gear Operation Tokyo HD launch: - config: oslist: windows executable: game.exe type: none -'648640': +"648640": installDir: Antiquia Lost launch: - config: @@ -302380,8 +297669,8 @@ type: none nameLocalized: japanese: 忘失のイストリア -'648670': {} -'648750': +"648670": {} +"648750": installDir: Tokaido launch: - config: @@ -302392,59 +297681,59 @@ oslist: windows executable: TokaidoPC.exe type: default -'648780': - installDir: It's Quiz Time +"648780": + installDir: "It's Quiz Time" launch: - executable: IQT.exe type: default -'648800': +"648800": installDir: Raft launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Raft.exe type: default -'648810': +"648810": installDir: Vehicle VR launch: - - arguments: '-vr' + - arguments: "-vr" config: - osarch: '32' + osarch: "32" oslist: windows description: Vehicle VR (32-bit) - executable: win32\\Vehicle.exe + executable: "win32\\\\Vehicle.exe" type: vr - - arguments: '-vr' + - arguments: "-vr" config: - osarch: '64' + osarch: "64" oslist: windows description: Vehicle VR (64-bit) - executable: win64\\Vehicle.exe + executable: "win64\\\\Vehicle.exe" type: vr - - arguments: '-vr' + - arguments: "-vr" config: betakey: beta - osarch: '64' + osarch: "64" oslist: windows - description: 'Vehicle VR beta (Use code: ''vehiclebetatest'')' - executable: beta64\\Vehicle.exe + description: "Vehicle VR beta (Use code: 'vehiclebetatest')" + executable: "beta64\\\\Vehicle.exe" type: option1 - - arguments: '-novr -nohmd' + - arguments: "-novr -nohmd" config: - osarch: '32' + osarch: "32" oslist: windows description: Vehicle without VR (32-bit) executable: win32/Vehicle.exe type: option1 - - arguments: '-novr -nohmd' + - arguments: "-novr -nohmd" config: - osarch: '64' + osarch: "64" oslist: windows description: Vehicle without VR (64-bit) executable: win64/Vehicle.exe type: option1 -'648880': +"648880": installDir: SOYF launch: - config: @@ -302455,12 +297744,12 @@ oslist: macos executable: mac_content.app type: none -'648890': +"648890": installDir: DMT launch: - executable: DMT.exe type: vr -'649000': +"649000": installDir: You Shall Not Jump PC Master Race Edition launch: - config: @@ -302469,40 +297758,40 @@ type: none - config: oslist: macos - executable: YouShallNotJump.app\\Contents\\MacOS\\YouShallNotJump + executable: "YouShallNotJump.app\\\\Contents\\\\MacOS\\\\YouShallNotJump" type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: YouShallNotJump.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: YouShallNotJump.x86_64 type: none -'649040': +"649040": installDir: Isle in the Sky launch: - config: oslist: windows executable: IsleInTheSky.exe type: vr -'649120': - installDir: Magician's Gambit +"649120": + installDir: "Magician's Gambit" launch: - - executable: VRChess\\Binaries\\Win64\\Magician's Gambit.exe + - executable: "VRChess\\\\Binaries\\\\Win64\\\\Magician's Gambit.exe" type: vr - workingdir: VRChess\\Binaries\\Win64 -'649150': + workingdir: "VRChess\\\\Binaries\\\\Win64" +"649150": installDir: Phobia launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Phobia.exe type: default -'649170': +"649170": installDir: the-seasons launch: - config: @@ -302513,39 +297802,39 @@ oslist: macos executable: the-seasons.app type: default -'649190': +"649190": installDir: Blast Zone! Tournament launch: - config: oslist: windows executable: BZ.exe type: default -'649240': +"649240": installDir: RAD TV launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: RadTV.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: RadTV.exe type: vr -'649300': +"649300": installDir: Wisdom of War launch: - executable: wisdom of war.exe type: none -'649360': +"649360": installDir: Yesterday launch: - config: oslist: windows executable: Yesterday.exe type: default -'649450': +"649450": installDir: Deadly Escape launch: - config: @@ -302554,48 +297843,48 @@ type: default - config: oslist: macos - executable: DeadlyEscape.app\\Contents\\MacOS\\DeadlyEscape + executable: "DeadlyEscape.app\\\\Contents\\\\MacOS\\\\DeadlyEscape" type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: DeadlyEscape.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: DeadlyEscape.x86_64 type: default -'649460': +"649460": installDir: Space Panic VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Space Panic.exe type: vr -'649510': +"649510": installDir: Bullet VR launch: - config: oslist: windows executable: game.exe type: vr -'649570': +"649570": installDir: DashDashRun! launch: - config: oslist: windows executable: DashDashRun!.exe type: vr -'649580': +"649580": installDir: Twins of the Pasture launch: - config: oslist: windows executable: bokunou_en.exe type: default -'649600': +"649600": installDir: Swords and Sandals 2 Redux launch: - config: @@ -302606,70 +297895,70 @@ oslist: windows executable: Swords and Sandals 2 Redux.exe type: default -'649620': +"649620": installDir: VR_Yamato launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: YamatoVR.exe type: vr - config: - osarch: '64' + osarch: "64" oslist: windows description: Oculus Touch executable: YamatoVR.exe type: othervr - - arguments: '-disablehandcontroller' + - arguments: "-disablehandcontroller" config: - osarch: '64' + osarch: "64" oslist: windows description: XInput Controller executable: YamatoVR.exe type: othervr -'649630': +"649630": installDir: DarkMaze launch: - config: oslist: windows executable: DarkMaze.exe type: vr -'649640': +"649640": installDir: Ashes launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ashes.exe type: default -'649660': +"649660": installDir: LIBERTY VR launch: - config: oslist: windows executable: Liberty VR.exe type: vr -'649670': +"649670": installDir: ZHUST - THE ILLUSION SOUL launch: - config: oslist: windows executable: ZHUST - THE ILLUSION SOUL.exe type: default -'649730': - installDir: 'OfficeBots Reality Bytes [VR]' +"649730": + installDir: "OfficeBots Reality Bytes [VR]" launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: OfficeBotsVR.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: OfficeBotsVR.exe type: openvroverlay -'649740': +"649740": installDir: CRAFT BATTLE SIMULATOR launch: - config: @@ -302684,7 +297973,7 @@ oslist: linux executable: CBS.sh type: none -'649770': +"649770": installDir: Coregrounds launch: - config: @@ -302695,12 +297984,12 @@ oslist: macos executable: coregrounds.app/Contents/MacOS/nwjs type: default - - arguments: '--password-store=basic' + - arguments: "--password-store=basic" config: oslist: linux executable: nw type: default -'649790': +"649790": installDir: Harvest Life launch: - config: @@ -302712,16 +298001,16 @@ executable: Harvest.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Harvest.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Harvest.x86_64 type: default -'649810': +"649810": installDir: Ostwind launch: - config: @@ -302729,50 +298018,50 @@ executable: Ostwind.exe type: default nameLocalized: - dutch: 'Whisper: Start van een Hechte Vriendschap' - french: 'Whisper: Début d''une Amitié Proche' - german: 'Ostwind: Beginn einer wunderbaren Freundschaft' -'649820': + dutch: "Whisper: Start van een Hechte Vriendschap" + french: "Whisper: Début d'une Amitié Proche" + german: "Ostwind: Beginn einer wunderbaren Freundschaft" +"649820": installDir: Slime-san Blackbirds Kraken launch: - config: oslist: macos - executable: Slime-san Blackbirds Kraken.app\\Contents\\MacOS\\Slime-san Blackbirds Kraken + executable: "Slime-san Blackbirds Kraken.app\\\\Contents\\\\MacOS\\\\Slime-san Blackbirds Kraken" type: none - config: oslist: windows executable: Slime-san Blackbirds Kraken.exe type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: Slime-san Blackbirds Kraken.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: Slime-san Blackbirds Kraken.x86_64 type: none -'649870': +"649870": installDir: NitroRage launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: NitroRage.exe type: default -'649880': +"649880": installDir: Disco Time 80s VR launch: - config: oslist: windows executable: Disco_Time.exe type: vr -'649890': +"649890": installDir: Caliban Below launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: calibanBelow.exe type: vr @@ -302782,105 +298071,105 @@ type: vr - config: oslist: macos - ownsdlc: '964880' + ownsdlc: "964880" description: Read The Short Story executable: scripts/readTheShortStory.sh type: none - config: oslist: windows - ownsdlc: '964880' + ownsdlc: "964880" description: Read The Short Story executable: scripts/readTheShortStory.bat type: none -'649900': +"649900": installDir: Mini Guns launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: miniguns.exe type: default -'649950': +"649950": installDir: Ashen launch: - executable: Ashen.exe type: default -'649970': - installDir: Hero's Story +"649970": + installDir: "Hero's Story" launch: - config: oslist: windows executable: MansLife.exe type: default -'649990': +"649990": installDir: Writers launch: - config: oslist: windows executable: writers.exe type: none -'650000': +"650000": installDir: DOOM VFR launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: DOOM VFR executable: DOOMVFRx64.exe type: vr -'650010': +"650010": installDir: Mob Stadium launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: MobStadium.exe type: vr -'650070': +"650070": installDir: OVERTURN launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Overturn_Steam.exe type: vr - config: - osarch: '64' + osarch: "64" oslist: windows executable: Overturn_Oculus.exe type: othervr -'650110': +"650110": installDir: Princess Maker 3 ~Fairy Tales Come True launch: - config: oslist: windows executable: PM3.exe type: none -'650120': {} -'650220': +"650120": {} +"650220": installDir: Interplanetary Enhanced Edition launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Interplanetary.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Interplanetary.x86_64 type: default - config: - osarch: '64' + osarch: "64" oslist: macos executable: Interplanetary.app type: default -'650310': +"650310": installDir: Journey of the Sword launch: - executable: Game.exe type: none -'650330': +"650330": installDir: Sanator Scarlet Scarf launch: - config: @@ -302896,29 +298185,29 @@ executable: ScarletScarf.app type: none nameLocalized: - russian: 'Санатор: Алый Шарф' -'650340': + russian: "Санатор: Алый Шарф" +"650340": installDir: TublerVR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: tublerVR.exe type: vr -'650350': +"650350": installDir: Machine World 2 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: MachineWorld2.exe type: default - config: - osarch: '64' + osarch: "64" oslist: macos executable: MachineWorld2.app type: default -'650440': +"650440": installDir: Warbanners_1 launch: - config: @@ -302929,7 +298218,7 @@ oslist: linux executable: runner type: default -'650490': +"650490": installDir: Dinosaur Hunt First Blood launch: - config: @@ -302944,16 +298233,16 @@ oslist: linux executable: DinosaurHuntFirstBlood.x86 type: none -'650510': +"650510": installDir: ZONE OF THE ENDERS THE 2nd RUNNER MARS ANUBIS ZONE OF THE ENDERS MARS launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launcherを起動 - executable: cygames\\launcher\\Launcher.exe + executable: "cygames\\\\launcher\\\\Launcher.exe" type: default -'650570': +"650570": installDir: Code 7 launch: - config: @@ -302968,7 +298257,7 @@ oslist: linux executable: code7.x86_64 type: default -'650580': +"650580": installDir: Be Quiet! launch: - config: @@ -302979,7 +298268,7 @@ oslist: linux executable: bequiet.x86 type: default -'650600': +"650600": installDir: Greece Defense TD launch: - config: @@ -302988,72 +298277,72 @@ type: default - config: oslist: macos - executable: GreeceDefense.app\\Contents\\MacOS\\GreeceDefense + executable: "GreeceDefense.app\\\\Contents\\\\MacOS\\\\GreeceDefense" type: default -'650620': {} -'650670': +"650620": {} +"650670": installDir: Grimoire_Heralds_of_the_Winged_Exemplar launch: - config: oslist: windows executable: Grimoire.exe type: default -'650680': +"650680": installDir: Golem Creation Kit launch: - config: oslist: windows description: Launch - executable: GCK-1.0-market\\GCK.exe + executable: "GCK-1.0-market\\\\GCK.exe" type: default - config: oslist: macos description: Launch - executable: GCK-1.0-market\\GCK.app + executable: "GCK-1.0-market\\\\GCK.app" type: default - config: oslist: linux description: Launch - executable: GCK-1.0-market\\GCK.sh + executable: "GCK-1.0-market\\\\GCK.sh" type: default -'650690': {} -'65070': +"650690": {} +"65070": installDir: Ride em Low launch: - executable: LowUSA.exe -'650700': +"650700": installDir: Yume Nikki launch: - - arguments: \"xx\" \"xx\" \"Window\" + - arguments: "\\\"xx\\\" \\\"xx\\\" \\\"Window\\\"" config: oslist: windows executable: yumenikki/RPG_RT.exe type: default - - arguments: \"xx\" \"xx\" \"Window\" + - arguments: "\\\"xx\\\" \\\"xx\\\" \\\"Window\\\"" config: oslist: windows description: Window mode executable: yumenikki/RPG_RT.exe type: option1 -'650720': +"650720": installDir: SlipDrive launch: - executable: Slipdrive.exe type: default - - arguments: '-vrmode OpenVR' + - arguments: "-vrmode OpenVR" executable: Slipdrive.exe type: vr - - arguments: '-vrmode OpenVR' + - arguments: "-vrmode OpenVR" executable: Slipdrive.exe type: openvroverlay -'650730': +"650730": installDir: Weeping Skies launch: - config: oslist: windows executable: Weeping_Skies.exe type: none -'650750': +"650750": installDir: HYPERNOVA Escape from Hadea launch: - config: @@ -303069,14 +298358,14 @@ oslist: linux executable: Hypernova.x86_64 type: none -'650760': +"650760": installDir: Tale of WuxiaThe Pre-Sequel launch: - config: oslist: windows executable: YoungHero.exe type: default -'650770': +"650770": installDir: Time Gun launch: - config: @@ -303087,12 +298376,12 @@ oslist: macos executable: Time Gun.app type: default -'650780': +"650780": installDir: AngerForce - Reloaded launch: - config: oslist: macos - executable: AngerForcePC.app\\Contents\\MacOS\\AngerForcePC + executable: "AngerForcePC.app\\\\Contents\\\\MacOS\\\\AngerForcePC" type: default - config: oslist: windows @@ -303100,7 +298389,7 @@ type: default nameLocalized: sc_schinese: 愤怒军团 -'65080': +"65080": installDir: Kaptain Brawe launch: - config: @@ -303108,26 +298397,26 @@ executable: brawe.exe - config: oslist: macos - executable: Kaptain Brawe.app\\Contents\\MacOS\\Kaptain Brawe - workingdir: Kaptain Brawe.app\\Contents\\MacOS -'650810': + executable: "Kaptain Brawe.app\\\\Contents\\\\MacOS\\\\Kaptain Brawe" + workingdir: "Kaptain Brawe.app\\\\Contents\\\\MacOS" +"650810": installDir: IMPERATUM - A Sci-fi Diablo-like ARPG launch: - config: oslist: windows executable: Imperatum.exe type: default -'650820': +"650820": installDir: Psychic Isolation launch: - executable: EP1.exe type: none -'650860': +"650860": installDir: Wrath of Loki VR Adventure launch: - executable: WrathOfLoki.exe type: vr -'650880': +"650880": installDir: Beyond the Invisible Evening launch: - config: @@ -303138,7 +298427,7 @@ oslist: macos executable: Beyond The Invisible - Evening.app type: default -'650940': +"650940": installDir: Rogue Empire launch: - config: @@ -303147,12 +298436,12 @@ executable: Rogue Empire.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: RE.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: RE.x86_64 type: default @@ -303160,23 +298449,23 @@ oslist: macos executable: Mac.app type: default -'650980': +"650980": installDir: Naklua VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: NakluaVR.exe type: vr -'650990': +"650990": installDir: Run Jump Die Repeat launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Run Jump Die Repeat.exe type: default -'6510': +"6510": installDir: lost planet extreme condition launch: - executable: LostPlanetDX9.exe @@ -303184,7 +298473,7 @@ executable: LostPlanetDX9.exe - description: Launch DirectX10 version executable: LostPlanetDX10.exe -'651010': +"651010": installDir: Nurbits launch: - config: @@ -303196,118 +298485,118 @@ executable: Nurbits.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Nurbits.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Nurbits.x86_64 type: default -'651050': {} -'651060': {} -'651080': +"651050": {} +"651060": {} +"651080": installDir: Moon Landing VR launch: - - executable: WindowsNoEditor\\SolarSystem\\Binaries\\Win64\\SolarSystem.exe + - executable: "WindowsNoEditor\\\\SolarSystem\\\\Binaries\\\\Win64\\\\SolarSystem.exe" type: vr -'651090': +"651090": installDir: Aces High III launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: aceshighsteam.exe type: default - - arguments: ' -mode oculus' + - arguments: " -mode oculus" config: - osarch: '32' + osarch: "32" oslist: windows description: Launch Directly With Oculus executable: aceshighsteam.exe type: othervr - - arguments: '-mode openvr' + - arguments: "-mode openvr" config: - osarch: '32' + osarch: "32" oslist: windows description: Launch Directly With Vive executable: aceshighsteam.exe type: vr -'651120': +"651120": installDir: Diesel Express VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Diesel Express.exe type: vr -'651150': +"651150": installDir: TimeWatch launch: - - arguments: '-BackendURL=https://backend.quantum-league.com' + - arguments: "-BackendURL=https://backend.quantum-league.com" config: betakey: default oslist: windows executable: Launch_Game.exe type: default - - arguments: '-release -BackendURL=https://backend.timewatchgame.com' + - arguments: "-release -BackendURL=https://backend.timewatchgame.com" config: betakey: staging oslist: windows description: testing backend executable: Launch_Game.exe type: option1 - - arguments: '-release -BackendURL=https://stage.quantum-league.com' + - arguments: "-release -BackendURL=https://stage.quantum-league.com" config: betakey: staging oslist: windows description: staging backend executable: Launch_Game.exe type: option1 - - arguments: '-release -BackendURL=https://backend.quantum-league.com' + - arguments: "-release -BackendURL=https://backend.quantum-league.com" config: betakey: staging oslist: windows description: production backend executable: Launch_Game.exe type: option1 - - arguments: '-BackendURL=https://publictest.quantum-league.com' + - arguments: "-BackendURL=https://publictest.quantum-league.com" config: betakey: publictest oslist: windows executable: Launch_Game.exe type: default -'651170': +"651170": installDir: Deep Horizon launch: - executable: DeepHorizon.exe type: none -'651280': +"651280": installDir: TinkerQuarry launch: - config: oslist: windows - executable: \\TinkerQuarry\\RPG_RT.exe + executable: "\\\\TinkerQuarry\\\\RPG_RT.exe" type: none -'651310': {} -'651340': +"651310": {} +"651340": installDir: Shephy launch: - config: oslist: windows executable: Shephy.exe type: none -'651360': +"651360": installDir: Eskimo Bob launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: EskimoBob.exe type: default -'651370': {} -'651380': +"651370": {} +"651380": installDir: BANG! BANG! launch: - config: @@ -303318,34 +298607,34 @@ oslist: linux executable: nw type: default -'651470': +"651470": installDir: Onirim - Solitaire Card Game launch: - config: oslist: windows executable: Onirim.exe type: none -'651490': +"651490": installDir: No Longer Home launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: NoLongerHome.exe type: default - config: oslist: macos - executable: NoLongerHome.app\\Contents\\MacOS\\NoLongerHome + executable: "NoLongerHome.app\\\\Contents\\\\MacOS\\\\NoLongerHome" type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: NoLongerHome.x86_64 type: default nameLocalized: japanese: ノーロンガーホーム schinese: 昨日难留 -'651500': +"651500": installDir: My Memory of US launch: - config: @@ -303363,7 +298652,7 @@ russian: My Memory of Us schinese: 我对我们的记忆 tchinese: 我对我们的记忆 -'651520': +"651520": installDir: Castle Defender launch: - config: @@ -303378,14 +298667,14 @@ oslist: linux executable: castledefender_linux type: default -'651550': +"651550": installDir: ConcPerfect 2017 launch: - config: oslist: windows executable: ConcPerfect_v2_0_1.exe type: default -'651560': +"651560": installDir: Clash of Robots launch: - config: @@ -303401,30 +298690,30 @@ description: Clash Of Robots Linux. executable: ClashbuildLinux.x86 type: default -'651610': +"651610": installDir: Booty Diver launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: BootyDiver.exe type: default -'651640': +"651640": installDir: SpookInspectors launch: - config: oslist: windows executable: SpookInspectors.exe type: default -'651650': +"651650": installDir: TeamWoodBlock launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: DuniaMasters.exe type: default -'651660': +"651660": installDir: Halcyon 6 Lightspeed Edition launch: - config: @@ -303433,19 +298722,19 @@ type: default - config: oslist: macos - executable: H6.app\\Contents\\MacOS\\H6 + executable: "H6.app\\\\Contents\\\\MacOS\\\\H6" type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: H6.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: H6.x86_64 type: default -'651670': +"651670": installDir: Star Renegades launch: - config: @@ -303454,14 +298743,14 @@ type: default - executable: Star Renegades.exe type: default -'651680': +"651680": installDir: Shalnor Legends Sacred Lands launch: - config: oslist: windows executable: ShalnorLegends.exe type: default -'651690': +"651690": installDir: Double Play 2-Player VR Baseball launch: - config: @@ -303473,12 +298762,12 @@ oslist: windows executable: DoublePlayVR.exe type: vr -'651820': +"651820": installDir: Little Miss Lonely launch: - executable: Little Miss Lonely.exe type: none -'651940': +"651940": installDir: Debris Field launch: - config: @@ -303493,15 +298782,15 @@ oslist: linux executable: debris_field_linux.x86_64 type: default -'651970': +"651970": installDir: Retro Neon Hyper Galaxy Unlimited launch: - config: oslist: windows executable: NEONGALAXY.exe type: default -'651990': - installDir: The Montana Chronicles Montana's Croatoa +"651990": + installDir: "The Montana Chronicles Montana's Croatoa" launch: - config: oslist: windows @@ -303511,11 +298800,11 @@ oslist: macos executable: MontanasCroatoaFinalBuild.app type: default -'65200': +"65200": installDir: Dive to the Titanic launch: - executable: Titanic.exe -'652000': +"652000": installDir: Quantum Pilot launch: - config: @@ -303530,7 +298819,7 @@ oslist: linux executable: QuantumPilot type: default -'652030': +"652030": installDir: Tessas Ark launch: - config: @@ -303538,12 +298827,12 @@ description: 1.0.0.2 executable: qta_steam.exe type: default -'652040': +"652040": installDir: Children of Apollo launch: - executable: nw.exe type: none -'652050': +"652050": installDir: The Labyrinth launch: - config: @@ -303554,37 +298843,37 @@ oslist: macos executable: TheLabyrinth.app type: default -'652060': +"652060": installDir: Curse of the Great Forest launch: - config: oslist: windows executable: Curse of the Great Forest.exe type: default -'652070': +"652070": installDir: Bump+Smack launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: bump_smack.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: bump_smack.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: bump_smack.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: bump_smack.exe type: default -'652090': +"652090": installDir: Blockara launch: - config: @@ -303596,55 +298885,55 @@ executable: Blockara.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Blockara.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Blockara.x86_64 type: default -'652120': +"652120": installDir: Humble Abode launch: - config: oslist: windows executable: Game.exe type: default -'652130': +"652130": installDir: Lupus in Fabula launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: lupus.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: lupus.exe type: default - config: - osarch: '64' + osarch: "64" oslist: macos executable: lupusinfabula.app type: default -'652140': +"652140": installDir: EchoNine launch: - config: oslist: windows executable: EchoNine.exe type: default -'652160': +"652160": installDir: DC Wonder Unlimited launch: - config: oslist: windows executable: DC Wonder.exe type: default -'652180': +"652180": installDir: VRGuest launch: - config: @@ -303652,17 +298941,17 @@ description: Launch executable: Isabela_V3.exe type: vr -'652190': +"652190": installDir: Emily Wants to Play Too launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Emily Wants to Play Too executable: EWTP_Too.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows description: Emily Wants to Play Too executable: EWTP_Too.exe @@ -303673,19 +298962,19 @@ executable: EWTP_Too.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: Emily Wants to Play Too Linux executable: EWTP_Too.sh type: default -'652200': +"652200": installDir: Chromaestro launch: - config: oslist: windows executable: Chromaestro.exe type: default -'652230': +"652230": installDir: CrazyCar launch: - config: @@ -303696,42 +298985,42 @@ oslist: macos executable: CrazyCar.app type: default -'652250': +"652250": installDir: Pond Wars launch: - config: oslist: windows executable: Pond Wars.exe type: default -'652270': +"652270": installDir: Dark and Bright launch: - config: oslist: windows executable: Game.exe type: default -'652280': +"652280": installDir: Unimersiv launch: - config: oslist: windows executable: unimersiv-vr.exe type: vr -'652310': - installDir: Khufu's Delivery Service +"652310": + installDir: "Khufu's Delivery Service" launch: - config: oslist: windows - executable: Khufu's Delivery Service.exe + executable: "Khufu's Delivery Service.exe" type: default -'652330': +"652330": installDir: Hereafter launch: - config: oslist: windows executable: Hereafter Early Access.exe type: default -'652340': +"652340": installDir: Flagsplosion launch: - config: @@ -303739,12 +299028,12 @@ executable: flagsplosion.exe type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: flagsplosion.x64 type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: flagsplosion.x32 type: none @@ -303760,21 +299049,21 @@ type: option1 - config: betakey: testing - osarch: '64' + osarch: "64" oslist: linux description: Flagsplosion (Godot 3) executable: Flagsplosion-gd3.x64 type: option1 -'652360': +"652360": installDir: BFF or Die launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: BffOrDie.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: BffOrDie.exe type: default @@ -303783,29 +299072,29 @@ executable: BffOrDie.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: BffOrDie.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: BffOrDie.x86 type: default -'652390': - installDir: Mr Rabbit's Alphabet Forest Adventure +"652390": + installDir: "Mr Rabbit's Alphabet Forest Adventure" launch: - config: oslist: windows executable: Rabbit.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Rabbit.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Rabbit.x86_64 type: default @@ -303813,54 +299102,44 @@ oslist: macos executable: Rabbit.app type: default -'652410': +"652410": installDir: Brigand launch: - description: Brigand Launcher - description_loc: - english: Brigand Launcher executable: Brigand Launcher.exe type: config - - description: 'Play Brigand: Oaxaca' - description_loc: - english: 'Play Brigand: Oaxaca' + - description: "Play Brigand: Oaxaca" executable: Brigand.exe - - description: 'Play Brigand: Oaxaca (Windowed)' + - description: "Play Brigand: Oaxaca (Windowed)" executable: Brigand Windowed.exe type: none - - description: View Player's Manual - description_loc: - english: View Player's Manual - executable: Brigand Player's Manual.pdf - - description: View Builder's Manual - description_loc: - english: View Builder's Manual - executable: Brigand Builder's Manual.pdf + - description: "View Player's Manual" + executable: "Brigand Player's Manual.pdf" + - description: "View Builder's Manual" + executable: "Brigand Builder's Manual.pdf" - description: View Updates - description_loc: - english: View Updates executable: Brigand Updates.txt -'652460': +"652460": installDir: Fragmentum launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Fragmentum64.exe type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: Fragmentum64 type: none -'652470': +"652470": installDir: Hex Tunnel launch: - config: oslist: windows executable: Hex Tunnel/WindowsNoEditor/MyProject2/Binaries/Win64/MyProject2-Win64-Shipping.exe type: vr -'652480': +"652480": installDir: killbox launch: - config: @@ -303869,22 +299148,22 @@ type: none - config: oslist: macos - executable: .\\killbox.app\\Contents\\MacOS\\killbox + executable: ".\\\\killbox.app\\\\Contents\\\\MacOS\\\\killbox" type: default -'652510': +"652510": installDir: ESCAPE Room Reality launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows executable: game.exe type: none - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: macos executable: game.app type: none -'652520': +"652520": installDir: MarionetteAI launch: - config: @@ -303893,16 +299172,16 @@ type: default - config: oslist: macos - executable: MarionetteAI.app\\Contents\\MacOS\\MarionetteAI + executable: "MarionetteAI.app\\\\Contents\\\\MacOS\\\\MarionetteAI" type: default -'652530': +"652530": installDir: Potentia launch: - config: oslist: windows executable: PotentiaGame.exe type: default -'652540': +"652540": installDir: Mocove Arts VR launch: - config: @@ -303913,75 +299192,75 @@ oslist: windows executable: MocoveArt-XTs1.exe type: default -'652550': +"652550": installDir: Vickinachi launch: - config: - osarch: '32' + osarch: "32" oslist: windows - description: ' This content requires the base application http://store.steampowered.com/app/220700/RPG_Maker_VX_Ace/ RPG Maker VX Ace on Steam in order to run.' + description: " This content requires the base application http://store.steampowered.com/app/220700/RPG_Maker_VX_Ace/ RPG Maker VX Ace on Steam in order to run." executable: Game.exe type: default -'652560': +"652560": installDir: Beached launch: - config: oslist: windows executable: Beached.exe type: default -'652570': +"652570": installDir: Mystika3 launch: - config: oslist: windows executable: Mystika3.exe type: default -'652600': +"652600": installDir: Descent - Silence of Mind launch: - config: oslist: windows executable: SofM.exe type: default -'652610': +"652610": installDir: Stick Nightmare launch: - config: - osarch: '64' + osarch: "64" oslist: linux executable: SNLinux64b type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: SNLinux32b type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: SNWin32b.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: SNWin64b.exe type: default -'652620': {} -'652660': +"652620": {} +"652660": installDir: E-Sport Manager launch: - config: oslist: windows executable: eSportManager.exe type: default -'65270': +"65270": installDir: Demolition Company Gold launch: - - arguments: '-script dataS/scripts/main.lua -name DemolitionCompany' + - arguments: "-script dataS/scripts/main.lua -name DemolitionCompany" config: oslist: windows executable: game.exe -'652700': +"652700": installDir: Equivoque launch: - config: @@ -303996,8 +299275,8 @@ oslist: linux executable: Equivoque.sh type: none -'652730': {} -'652750': +"652730": {} +"652750": installDir: Polygon Hero launch: - config: @@ -304005,16 +299284,16 @@ executable: PolygonHero.app/Contents/MacOS/PolygonHero type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: PolygonHero.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: PolygonHero.exe type: default -'652760': +"652760": installDir: Watchlist launch: - config: @@ -304025,52 +299304,52 @@ oslist: macos executable: Watchlist.app type: default -'652770': +"652770": installDir: Zofia launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: PaleSaffronTilt.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: PaleSaffronTilt.exe type: default - config: oslist: linux executable: PaleSaffronTilt.sh -'652780': +"652780": installDir: The Mutational launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: /The Mutational/The Mutational.exe type: none -'652800': +"652800": installDir: Sojourner launch: - config: oslist: windows executable: Game.exe type: default -'652810': +"652810": installDir: Grabity launch: - config: oslist: windows executable: Grabity.exe type: default -'652830': - installDir: Lost Legends The Pharaoh's Tomb +"652830": + installDir: "Lost Legends The Pharaoh's Tomb" launch: - config: oslist: windows executable: LostLegendsThePharaohsTombSteam.exe type: vr -'652880': +"652880": installDir: Samsara launch: - config: @@ -304079,55 +299358,55 @@ type: none - config: oslist: macos - executable: Samsara.app\\Contents\\MacOS\\Samsara + executable: "Samsara.app\\\\Contents\\\\MacOS\\\\Samsara" type: none -'652890': - installDir: 'Vanguard Knights[Royal Skies LLC]' +"652890": + installDir: "Vanguard Knights[Royal Skies LLC]" launch: - config: oslist: windows - executable: Vanguard Knights(Royal Skies LLC)\\Vanguard Knights.exe + executable: "Vanguard Knights(Royal Skies LLC)\\\\Vanguard Knights.exe" type: default - config: oslist: macos executable: Vanguard Knights(Royal Skies LLC)-mac.app type: default -'652900': +"652900": installDir: The Mechanical Room VR launch: - config: oslist: windows executable: The Mechanical Room VR.exe type: vr -'652910': +"652910": installDir: Delay launch: - config: oslist: windows executable: Delay.exe type: none -'652950': +"652950": installDir: Maggies_Apartment launch: - config: oslist: windows executable: winsetup.exe type: default -'652980': +"652980": installDir: Loading Screen Simulator launch: - config: oslist: windows executable: LSS.exe type: default -'652990': +"652990": installDir: Eternal Maze launch: - config: oslist: windows executable: EternalMaze.exe type: default -'65300': +"65300": installDir: Dustforce launch: - config: @@ -304137,22 +299416,22 @@ oslist: macos executable: Dustforce.app - config: - osarch: '64' + osarch: "64" oslist: linux executable: Dustforce.bin.x86_64 - config: - osarch: '32' + osarch: "32" oslist: linux executable: Dustforce.bin.x86 -'653050': - installDir: Undertaker's +"653050": + installDir: "Undertaker's" launch: - config: oslist: windows executable: Undertakers.exe type: default -'653060': {} -'653080': +"653060": {} +"653080": installDir: Inflatality launch: - config: @@ -304163,104 +299442,69 @@ oslist: macos executable: Inflatality.app type: none -'653100': +"653100": installDir: Puzzle Bloc Invasion launch: - config: oslist: windows executable: Puzzle Bloc Invasion.exe type: none -'653120': +"653120": installDir: Rockshot launch: - - arguments: >- - -D3Social.Protocol=https:// -D3Social.Domain=api.rockshot.gameforge.com - -D3Social.Domain2=api-na.rockshot.gameforge.com -D3Social.MatchingDomain=match.rockshot.gameforge.com - -D3Social.MatchingDomain2=match-na.rockshot.gameforge.com - -D3WebSocket.OverrideURL=://conn.rockshot.gameforge.com - -D3WebSocket.OverrideURL2=://conn-na.rockshot.gameforge.com - -D3Social.DownloadFullURL=\"http://dl.rockshot.gameforge.com/rockshot/masterdata/LIVE/master/eu\" - -D3Social.DownloadFullURL2=\"http://dl.rockshot.gameforge.com/rockshot/masterdata/LIVE/master/na\" - -D3WebSocket.OverridePort=443 -D3WebSocket.OverrideSSL=true -D3Social.BaseURL= -D3Social.BaseAPIURL=/api - -D3Social.MatchingURL=/api -D3Social.DownloadURL=/download - -ServerRegion2=\"ai,ag,aw,bs,bb,bz,bm,bq,vg,ca,fr-cp,ky,cr,cu,cw,dm,do,sv,gd,gl,gp,gt,ht,hn,jm,mq,mx,ms,um,ni,pa,pr,bq,bl,mf,kn,lc,pm,vc,bq,sx,tt,tc,us,vi\" - -CheckClientVersion=1720455855 + - arguments: "-D3Social.Protocol=https:// -D3Social.Domain=api.rockshot.gameforge.com -D3Social.Domain2=api-na.rockshot.gameforge.com -D3Social.MatchingDomain=match.rockshot.gameforge.com -D3Social.MatchingDomain2=match-na.rockshot.gameforge.com -D3WebSocket.OverrideURL=://conn.rockshot.gameforge.com -D3WebSocket.OverrideURL2=://conn-na.rockshot.gameforge.com -D3Social.DownloadFullURL=\\\"http://dl.rockshot.gameforge.com/rockshot/masterdata/LIVE/master/eu\\\" -D3Social.DownloadFullURL2=\\\"http://dl.rockshot.gameforge.com/rockshot/masterdata/LIVE/master/na\\\" -D3WebSocket.OverridePort=443 -D3WebSocket.OverrideSSL=true -D3Social.BaseURL= -D3Social.BaseAPIURL=/api -D3Social.MatchingURL=/api -D3Social.DownloadURL=/download -ServerRegion2=\\\"ai,ag,aw,bs,bb,bz,bm,bq,vg,ca,fr-cp,ky,cr,cu,cw,dm,do,sv,gd,gl,gp,gt,ht,hn,jm,mq,mx,ms,um,ni,pa,pr,bq,bl,mf,kn,lc,pm,vc,bq,sx,tt,tc,us,vi\\\" -CheckClientVersion=1720455855" description: Live executable: Launcher.exe type: default - - arguments: >- - -D3Social.Protocol=https:// -D3Social.Domain=api-qa1-1.dto.gfsrv.net - -D3Social.MatchingDomain=match-qa1-1.dto.gfsrv.net -D3WebSocket.OverrideURL=://conn-qa1-1.dto.gfsrv.net - -D3WebSocket.OverridePort=8081 -D3WebSocket.OverrideSSL=true -D3Social.BaseURL= -D3Social.BaseAPIURL=/api - -D3Social.MatchingURL=/api -D3Social.DownloadURL=/download -CheckClientVersion=1720345507 + - arguments: "-D3Social.Protocol=https:// -D3Social.Domain=api-qa1-1.dto.gfsrv.net -D3Social.MatchingDomain=match-qa1-1.dto.gfsrv.net -D3WebSocket.OverrideURL=://conn-qa1-1.dto.gfsrv.net -D3WebSocket.OverridePort=8081 -D3WebSocket.OverrideSSL=true -D3Social.BaseURL= -D3Social.BaseAPIURL=/api -D3Social.MatchingURL=/api -D3Social.DownloadURL=/download -CheckClientVersion=1720345507" config: betakey: qa-1 description: Testserver 1 executable: Launcher.exe type: none - - arguments: >- - -D3Social.Protocol=https:// -D3Social.Domain=api-qa2-1.dto.gfsrv.net - -D3Social.MatchingDomain=match-qa2-1.dto.gfsrv.net -D3WebSocket.OverrideURL=://conn-qa2-1.dto.gfsrv.net - -D3WebSocket.OverridePort=8081 -D3WebSocket.OverrideSSL=true -D3Social.BaseURL= -D3Social.BaseAPIURL=/api - -D3Social.MatchingURL=/api -D3Social.DownloadURL=/download -CheckClientVersion=1720455855 + - arguments: "-D3Social.Protocol=https:// -D3Social.Domain=api-qa2-1.dto.gfsrv.net -D3Social.MatchingDomain=match-qa2-1.dto.gfsrv.net -D3WebSocket.OverrideURL=://conn-qa2-1.dto.gfsrv.net -D3WebSocket.OverridePort=8081 -D3WebSocket.OverrideSSL=true -D3Social.BaseURL= -D3Social.BaseAPIURL=/api -D3Social.MatchingURL=/api -D3Social.DownloadURL=/download -CheckClientVersion=1720455855" config: betakey: qa-2 description: Testserver 2 executable: Launcher.exe type: none - - arguments: >- - -D3Social.Protocol=https:// -D3Social.Domain=api-qa3-1.dto.gfsrv.net - -D3Social.MatchingDomain=match-qa3-1.dto.gfsrv.net -D3WebSocket.OverrideURL=://conn-qa3-1.dto.gfsrv.net - -D3WebSocket.OverridePort=8081 -D3WebSocket.OverrideSSL=true -D3Social.BaseURL= -D3Social.BaseAPIURL=/api - -D3Social.MatchingURL=/api -D3Social.DownloadURL=/download -CheckClientVersion=1720455855 + - arguments: "-D3Social.Protocol=https:// -D3Social.Domain=api-qa3-1.dto.gfsrv.net -D3Social.MatchingDomain=match-qa3-1.dto.gfsrv.net -D3WebSocket.OverrideURL=://conn-qa3-1.dto.gfsrv.net -D3WebSocket.OverridePort=8081 -D3WebSocket.OverrideSSL=true -D3Social.BaseURL= -D3Social.BaseAPIURL=/api -D3Social.MatchingURL=/api -D3Social.DownloadURL=/download -CheckClientVersion=1720455855" config: betakey: qa-3 description: Testserver 3 executable: Launcher.exe type: none - - arguments: '-CheckClientVersion=1720455855 -D3Social.MatchingURL=/dsrpc/api' + - arguments: "-CheckClientVersion=1720455855 -D3Social.MatchingURL=/dsrpc/api" config: betakey: sandbox executable: launcher.exe type: none - - arguments: >- - -D3Social.Protocol=https:// -D3Social.Domain=api.rockshot.gameforge.com - -D3Social.MatchingDomain=match.rockshot.gameforge.com -D3WebSocket.OverrideURL=://conn.rockshot.gameforge.com - -D3WebSocket.OverridePort=443 -D3WebSocket.OverrideSSL=true -D3Social.BaseURL= -D3Social.BaseAPIURL=/api - -D3Social.MatchingURL=/api - -D3Social.DownloadFullURL=\"http://dl.rockshot.gameforge.com/rockshot/masterdata/LIVE/master/eu\" - -CheckClientVersion=1720455855 + - arguments: "-D3Social.Protocol=https:// -D3Social.Domain=api.rockshot.gameforge.com -D3Social.MatchingDomain=match.rockshot.gameforge.com -D3WebSocket.OverrideURL=://conn.rockshot.gameforge.com -D3WebSocket.OverridePort=443 -D3WebSocket.OverrideSSL=true -D3Social.BaseURL= -D3Social.BaseAPIURL=/api -D3Social.MatchingURL=/api -D3Social.DownloadFullURL=\\\"http://dl.rockshot.gameforge.com/rockshot/masterdata/LIVE/master/eu\\\" -CheckClientVersion=1720455855" config: betakey: prod - description: 'Europe (Alpha, prod)' + description: "Europe (Alpha, prod)" executable: launcher.exe type: none - - arguments: '-CheckClientVersion=1720455855 -D3Social.MatchingURL=/dsrpc/api' + - arguments: "-CheckClientVersion=1720455855 -D3Social.MatchingURL=/dsrpc/api" config: betakey: sb_soleil description: sb_soleil executable: launcher.exe type: none - - arguments: >- - -D3Social.Protocol=https:// -D3Social.Domain=api-na.rockshot.gameforge.com - -D3Social.MatchingDomain=match-na.rockshot.gameforge.com - -D3WebSocket.OverrideURL=://conn-na.rockshot.gameforge.com -D3WebSocket.OverridePort=443 - -D3WebSocket.OverrideSSL=true -D3Social.BaseURL= -D3Social.BaseAPIURL=/api -D3Social.MatchingURL=/api - -D3Social.DownloadFullURL=\"http://dl.rockshot.gameforge.com/rockshot/masterdata/LIVE/master/na\" - -CheckClientVersion=1720455855 + - arguments: "-D3Social.Protocol=https:// -D3Social.Domain=api-na.rockshot.gameforge.com -D3Social.MatchingDomain=match-na.rockshot.gameforge.com -D3WebSocket.OverrideURL=://conn-na.rockshot.gameforge.com -D3WebSocket.OverridePort=443 -D3WebSocket.OverrideSSL=true -D3Social.BaseURL= -D3Social.BaseAPIURL=/api -D3Social.MatchingURL=/api -D3Social.DownloadFullURL=\\\"http://dl.rockshot.gameforge.com/rockshot/masterdata/LIVE/master/na\\\" -CheckClientVersion=1720455855" config: betakey: prod-na description: North America executable: Launcher.exe type: default -'653130': +"653130": installDir: Pocket Assault launch: - config: oslist: windows executable: PocketAssault.exe type: default -'653190': +"653190": installDir: spaceBOUND launch: - config: @@ -304269,20 +299513,20 @@ type: default - config: oslist: macos - executable: spaceBOUND_mac.app\\Contents\\MacOS\\spaceBOUND_mac + executable: "spaceBOUND_mac.app\\\\Contents\\\\MacOS\\\\spaceBOUND_mac" type: default - config: oslist: linux executable: sbLinux.x86 type: default -'653210': +"653210": installDir: Prisoner launch: - config: oslist: windows executable: Prisoner.exe type: default -'653220': +"653220": installDir: Chroma Blast launch: - config: @@ -304291,17 +299535,17 @@ type: default - config: oslist: macos - executable: ChromaBlast_Mac.app\\Contents\\MacOS\\ChromaBlast_Mac + executable: "ChromaBlast_Mac.app\\\\Contents\\\\MacOS\\\\ChromaBlast_Mac" type: default - config: oslist: linux executable: ChromaBlast.x86_64 type: default -'653530': +"653530": installDir: ObraDinn launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ObraDinn.exe type: default @@ -304309,7 +299553,7 @@ oslist: macos executable: ObraDinn.app type: default -'653550': +"653550": installDir: Spin the Beat launch: - config: @@ -304320,7 +299564,7 @@ oslist: macos executable: SpinTheBeat_Mac.app type: default -'653760': +"653760": installDir: Crushing Blow launch: - config: @@ -304328,16 +299572,16 @@ executable: game.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: game.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: game.x86 type: default -'653770': +"653770": installDir: The First Time I Died launch: - config: @@ -304346,7 +299590,7 @@ type: default - executable: Game.exe type: none -'653780': +"653780": installDir: Defend Your Kingdom launch: - config: @@ -304361,8 +299605,8 @@ oslist: macos executable: Mac.app type: none -'653840': {} -'653850': +"653840": {} +"653850": installDir: Cave Escape launch: - config: @@ -304373,7 +299617,7 @@ oslist: windows executable: Cave Escape.exe type: default -'653870': +"653870": installDir: Cavern Crumblers launch: - config: @@ -304388,21 +299632,21 @@ oslist: linux executable: Linux.exe type: default -'653920': +"653920": installDir: Darkest Wave launch: - config: oslist: windows executable: DarkestWave.exe type: default -'653930': +"653930": installDir: Tiny Town VR launch: - config: oslist: windows executable: Tiny Town VR.exe type: vr -'653940': +"653940": installDir: Zafehouse Diaries 2 launch: - config: @@ -304417,14 +299661,14 @@ oslist: linux executable: ZafehouseDiaries2.x86 type: default -'653950': +"653950": installDir: Your Smile Beyond Twilight launch: - config: oslist: windows executable: Station.exe type: default -'653960': +"653960": installDir: DinoBlaster launch: - config: @@ -304435,7 +299679,7 @@ oslist: macos executable: DinoBlaster.app type: none -'653970': +"653970": installDir: Virtual Temple Order of the Golden Dawn launch: - config: @@ -304446,34 +299690,34 @@ oslist: windows executable: virtual-temple-golden-dawn.exe type: vr -'65400': +"65400": installDir: Archon launch: - config: oslist: windows executable: Archon.exe -'654000': +"654000": installDir: A Quick Death launch: - config: oslist: windows executable: aqd.exe type: default -'654010': +"654010": installDir: Project MALLOW launch: - config: oslist: windows executable: Mallow.exe type: none -'654020': +"654020": installDir: Ben The Exorcist launch: - config: oslist: windows executable: HauntedHause.exe type: default -'654050': +"654050": installDir: JYDGE launch: - config: @@ -304496,70 +299740,70 @@ description: JYDGE (D3D11 Renderer Beta) executable: JYDGE-D3D11-Beta.exe type: option2 -'654060': +"654060": installDir: War Chariots launch: - config: oslist: windows executable: War Chariots.exe type: default -'654070': +"654070": installDir: Escape Room launch: - config: oslist: windows executable: escaperoom.exe type: vr -'654080': +"654080": installDir: Der einzig wahre Auserwählte launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Game.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: Game.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Game type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Game type: default - config: oslist: macos - executable: Game.app\\Contents\\MacOS\\nwjs + executable: "Game.app\\\\Contents\\\\MacOS\\\\nwjs" type: default - workingdir: Game.app\\Contents\\MacOS -'654090': + workingdir: "Game.app\\\\Contents\\\\MacOS" +"654090": installDir: High clear VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: HighClear.exe type: vr -'654100': +"654100": installDir: Rival Megagun launch: - executable: Rival Megagun.exe type: default -'654110': +"654110": installDir: Fisher Fans VR launch: - config: oslist: windows executable: FisherFan.exe type: vr -'654200': {} -'654220': +"654200": {} +"654220": installDir: Flash Point Fire Rescue launch: - config: @@ -304567,7 +299811,7 @@ executable: flashpoint.exe type: default - config: - osarch: '64' + osarch: "64" oslist: macos executable: flashpoint.app type: default @@ -304575,14 +299819,14 @@ oslist: linux executable: flashpoint.x86 type: default -'654240': +"654240": installDir: Xenoslaive Overdrive launch: - config: oslist: windows executable: xenoslaive.exe type: default -'654250': +"654250": installDir: Catacombs 1 Demon War launch: - config: @@ -304593,7 +299837,7 @@ oslist: macos executable: Game.app type: default -'654260': +"654260": installDir: Old Watch launch: - config: @@ -304602,22 +299846,22 @@ type: default - config: oslist: macos - executable: OldWatch.app\\Contents\\MacOS\\OldWatch + executable: "OldWatch.app\\\\Contents\\\\MacOS\\\\OldWatch" type: default -'654300': +"654300": installDir: Darkest Hunters launch: - config: oslist: windows executable: DH.exe type: default -'654350': +"654350": installDir: Cyber Utopia launch: - executable: CU.exe type: default -'654390': - installDir: Dialogue A Writer's Story +"654390": + installDir: "Dialogue A Writer's Story" launch: - config: oslist: windows @@ -304625,9 +299869,9 @@ type: none - config: oslist: macos - executable: Dialogue.app\\Contents\\MacOS\\Dialogue + executable: "Dialogue.app\\\\Contents\\\\MacOS\\\\Dialogue" type: none -'654400': +"654400": installDir: ShanknBake launch: - config: @@ -304636,16 +299880,16 @@ type: default - config: oslist: macos - executable: ShanknBake.app\\Contents\\MacOS\\ShanknBake + executable: "ShanknBake.app\\\\Contents\\\\MacOS\\\\ShanknBake" type: default -'654430': +"654430": installDir: STATUS INSANE launch: - config: oslist: windows executable: STATUS INSANE.exe type: none -'654440': +"654440": installDir: Isotiles launch: - config: @@ -304656,29 +299900,29 @@ oslist: macos executable: Isotiles.app type: default -'654450': +"654450": installDir: Exorcise the Demons launch: - config: oslist: windows executable: Exorcise The Demons.exe type: none -'654470': +"654470": installDir: Blood Waves launch: - config: oslist: windows executable: Blood Waves.exe type: default -'654490': {} -'654520': +"654490": {} +"654520": installDir: Travel Riddles Trip To Greece launch: - config: oslist: windows executable: greece.exe type: none -'654550': +"654550": installDir: Football Game launch: - config: @@ -304689,14 +299933,14 @@ oslist: windows executable: winsetup.exe type: config -'654570': +"654570": installDir: History2048 - 3D puzzle number game launch: - config: oslist: windows executable: History2048.exe type: none -'654580': +"654580": installDir: Senalux launch: - config: @@ -304711,55 +299955,55 @@ oslist: linux executable: senalux type: default -'654600': +"654600": installDir: PowBall Renaissance launch: - config: oslist: windows executable: PowBallRen.exe type: default -'654610': +"654610": installDir: Mr. Dubstep launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: Mr Dubstep.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: Mr.Dubstep.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Mr.Dubstep.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Mr.Dubstep.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: macos executable: Mr.Dubstep.app type: default - config: - osarch: '64' + osarch: "64" oslist: macos executable: Mr.Dubstep.app type: default -'654620': {} -'654630': +"654620": {} +"654630": installDir: Dreamblaster launch: - config: oslist: windows executable: Dreamblaster.exe type: default -'654640': +"654640": installDir: 7 Pillars launch: - config: @@ -304767,8 +300011,8 @@ description: Launch executable: Game.exe type: none -'654650': {} -'654660': +"654650": {} +"654660": installDir: Pharmakon launch: - config: @@ -304776,115 +300020,115 @@ description: Start the game. executable: Pharmakon.exe type: default -'654670': +"654670": installDir: RPS Runner launch: - config: oslist: windows executable: RPS Runner.exe type: none -'654680': +"654680": installDir: Ziggurat 3D Chess launch: - config: oslist: windows executable: Ziggurat.exe type: default -'654690': +"654690": installDir: Bermuda - Lost Survival launch: - config: oslist: windows executable: Bermuda - Lost Survival.exe type: default -'654700': +"654700": installDir: Unearthing Process launch: - config: oslist: windows description: Windows - executable: win32\\nw.exe + executable: "win32\\\\nw.exe" type: default - config: - osarch: '32' + osarch: "32" oslist: linux description: Linux - executable: linux32\\nw + executable: "linux32\\\\nw" type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: Linux 64 - executable: linux64\\nw + executable: "linux64\\\\nw" type: none -'654710': +"654710": installDir: Ashes launch: - config: oslist: windows executable: Ashes.exe type: default -'654740': +"654740": installDir: STICK ENGINE launch: - config: oslist: windows executable: stickengine.exe type: default -'654750': +"654750": installDir: Square x Square launch: - config: oslist: windows executable: Square x Square.exe type: default -'654770': +"654770": installDir: Ballway launch: - config: oslist: windows executable: Ballway.exe type: none -'654790': {} -'654800': +"654790": {} +"654800": installDir: Guts and Syringes launch: - config: oslist: windows executable: Guts and Syringes.exe type: default -'654810': - installDir: A Snake's Tale +"654810": + installDir: "A Snake's Tale" launch: - config: oslist: windows - executable: A Snake's Tale.exe + executable: "A Snake's Tale.exe" type: default - config: oslist: macos - executable: A Snake's Tale.app/Contents/MacOS/a_snakes_tale + executable: "A Snake's Tale.app/Contents/MacOS/a_snakes_tale" type: default - config: oslist: linux executable: a_snakes_tale type: default -'654820': +"654820": installDir: Akin Vol 2 launch: - config: oslist: windows executable: AkinVol2.exe type: default -'654830': {} -'654840': +"654830": {} +"654840": installDir: I Want Toilet!!!!!! launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: IWT.exe type: default -'654850': +"654850": installDir: Masked Forces Zombie Survival launch: - config: @@ -304895,8 +300139,8 @@ oslist: macos executable: MaskedForcesZombieSurvival.app type: none -'654870': {} -'654880': +"654870": {} +"654880": installDir: Dream Daddy launch: - config: @@ -304908,41 +300152,41 @@ executable: DDaDDs.app type: none - config: - osarch: '64' + osarch: "64" oslist: linux - executable: ./DDaDDS.x86_64 + executable: "./DDaDDS.x86_64" type: default - config: - osarch: '32' + osarch: "32" oslist: linux - executable: ./DDaDDS.x86 + executable: "./DDaDDS.x86" type: default - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" config: - osarch: '64' + osarch: "64" oslist: linux - executable: ./DDaDDS.x86_64 + executable: "./DDaDDS.x86_64" type: config - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" config: - osarch: '32' + osarch: "32" oslist: linux - executable: ./DDaDDS.x86 + executable: "./DDaDDS.x86" type: config -'654890': +"654890": installDir: Grand Tactician The Civil War (1861-1865) launch: - executable: The Civil War (1861-1865).exe type: none -'654900': +"654900": installDir: qop launch: - config: oslist: windows executable: qop.exe type: default -'654910': - installDir: YANKAI'S PEAK +"654910": + installDir: "YANKAI'S PEAK" launch: - config: oslist: windows @@ -304953,17 +300197,17 @@ executable: YANKAISPEAK.app type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: Pyramid.x86_64 type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: Pyramid.x86 type: none -'654920': {} -'654940': +"654920": {} +"654940": installDir: RXE launch: - config: @@ -304972,103 +300216,103 @@ type: default - config: oslist: macos - executable: RXE.app\\Contents\\MacOS\\RXE + executable: "RXE.app\\\\Contents\\\\MacOS\\\\RXE" type: default - config: oslist: linux executable: RXE.x86 type: default -'654950': +"654950": installDir: Labyrinthshooter launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Labyrinthshooter.exe type: default -'654960': {} -'654970': +"654960": {} +"654970": installDir: Numberline 2 launch: - config: oslist: windows executable: nw.exe type: none -'654980': +"654980": installDir: Inferno launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: MATCH3.exe type: default -'654990': +"654990": installDir: Dude Simulator launch: - config: oslist: windows executable: DudeSimulator.exe type: default -'6550': +"6550": installDir: Devil May Cry 3 launch: - executable: dmc3se.exe - description: Launch Gamepad Configuration executable: GPadCfg.exe -'65500': +"65500": installDir: Aura Fate of the Ages launch: - executable: Aura1.exe -'655000': +"655000": installDir: Masked Forces 2 Mystic Demons launch: - config: oslist: windows - description: 'Masked Forces 2: Mystic Demons' + description: "Masked Forces 2: Mystic Demons" executable: MysticDemons.exe type: option1 - config: oslist: macos - description: 'Masked Forces 2: Mystic Demons' + description: "Masked Forces 2: Mystic Demons" executable: MysticDemons.app type: option1 - config: oslist: windows - ownsdlc: '777120' - description: 'Masked Forces 2: Mystic Demons Multiplayer' - executable: Multiplayer\\MaskedForces2Online.exe + ownsdlc: "777120" + description: "Masked Forces 2: Mystic Demons Multiplayer" + executable: "Multiplayer\\\\MaskedForces2Online.exe" type: option2 - config: oslist: macos - ownsdlc: '777120' - description: 'Masked Forces 2: Mystic Demons Multiplayer' - executable: Multiplayer\\MaskedForces2Online.app + ownsdlc: "777120" + description: "Masked Forces 2: Mystic Demons Multiplayer" + executable: "Multiplayer\\\\MaskedForces2Online.app" type: option2 -'655010': {} -'655020': +"655010": {} +"655020": installDir: Unreal Estate launch: - config: oslist: windows executable: UnrealEstate-Win.exe type: default -'655030': +"655030": installDir: Simple Light Cycles launch: - config: oslist: windows executable: SimpleLightCycles.exe type: default -'655040': +"655040": installDir: Deltaplan Simulator launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: deltaxfr/delta.exe type: default -'655050': {} -'655080': +"655050": {} +"655080": installDir: Crazy Ball Adventures launch: - config: @@ -305087,54 +300331,54 @@ type: none - config: oslist: windows - ownsdlc: '765340' + ownsdlc: "765340" description: Crazy Ball Classic - executable: Classic\\CrazyBall.exe + executable: "Classic\\\\CrazyBall.exe" type: option2 - config: oslist: macos - ownsdlc: '765340' + ownsdlc: "765340" description: Crazy Ball Classic - executable: Classic\\CrazyBall.app + executable: "Classic\\\\CrazyBall.app" type: option2 - config: oslist: windows - ownsdlc: '768600' + ownsdlc: "768600" description: Crazy Ball Treasure - executable: Treasure\\CrazyBallTreasure.exe + executable: "Treasure\\\\CrazyBallTreasure.exe" type: option3 - config: oslist: macos - ownsdlc: '768600' + ownsdlc: "768600" description: Crazy Ball Treasure - executable: Treasure\\CrazyBallTreasure.app + executable: "Treasure\\\\CrazyBallTreasure.app" type: option3 -'655100': +"655100": installDir: Oik 3 launch: - - arguments: '-windowed' + - arguments: "-windowed" config: oslist: windows executable: Oik_3.exe type: none -'655110': {} -'655120': +"655110": {} +"655120": installDir: Space Hero Line launch: - config: oslist: windows description: Windows - executable: Windows\\SpaceHeroLine.exe + executable: "Windows\\\\SpaceHeroLine.exe" type: option1 - config: oslist: linux description: Linux - executable: Linux\\Space Hero Line.x86 + executable: "Linux\\\\Space Hero Line.x86" type: option2 -'655130': {} -'655140': {} -'655150': {} -'655160': +"655130": {} +"655140": {} +"655150": {} +"655160": installDir: welcome to heaven launch: - config: @@ -305146,16 +300390,16 @@ executable: welcome to heaven_mac.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: welcome to heaven_lnx.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: welcome to heaven_lnx.x86_64 type: default -'655170': +"655170": installDir: Telepathy Zero launch: - config: @@ -305166,40 +300410,40 @@ oslist: macos executable: TelepathyZero.app type: default -'655180': +"655180": installDir: ThinkAhead launch: - executable: nw.exe type: none -'655200': +"655200": installDir: Arena launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Non-VR PC Version executable: Arena.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows description: VR Version executable: Arena.exe type: vr -'655220': +"655220": installDir: Freedom A Time to Reckon launch: - executable: Freedom.exe type: default -'655250': +"655250": installDir: Insectophobia Episode 1 launch: - config: oslist: windows executable: insect.exe type: none -'655260': {} -'655270': +"655260": {} +"655270": installDir: Eponymous launch: - config: @@ -305217,7 +300461,7 @@ description: Launch executable: Cygnus_NFML type: none -'655280': +"655280": installDir: Ping launch: - config: @@ -305232,43 +300476,43 @@ oslist: linux executable: Ping.x86 type: default -'655290': +"655290": installDir: Escape The Pacific launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: EscapeThePacific.exe type: default -'65530': +"65530": installDir: Spellforce 2 - Faith in Destiny launch: - - arguments: '' + - arguments: "" description: Launch the Game executable: SpellForce2FaithInDestiny.exe - workingdir: '' - - arguments: '' + workingdir: "" + - arguments: "" description: Launch Editor executable: SpellForce2FaithinDestinyEditor.exe - workingdir: '' - - arguments: '' + workingdir: "" + - arguments: "" description: Game Manual executable: Docs/SF2_FiD_Manual.pdf - workingdir: '' - - arguments: '' + workingdir: "" + - arguments: "" description: Editor Introduction executable: Docs/MapEditorFirstSteps.pdf - workingdir: '' -'655300': {} -'655310': {} -'655340': + workingdir: "" +"655300": {} +"655310": {} +"655340": installDir: Daath Origins launch: - config: oslist: windows executable: DaathOrigins.exe type: default -'655360': +"655360": installDir: Aftermath Y2K launch: - config: @@ -305279,7 +300523,7 @@ oslist: linux executable: game type: none -'655370': +"655370": installDir: Train Bandit launch: - config: @@ -305290,7 +300534,7 @@ oslist: macos executable: Train Bandit.app type: none -'655380': +"655380": installDir: Dig Dog launch: - config: @@ -305301,42 +300545,40 @@ oslist: macos executable: Dig Dog.app type: none -'65540': +"65540": installDir: Gothic launch: - - executable: system\\GOTHIC.EXE + - executable: "system\\\\GOTHIC.EXE" workingdir: system - config: betakey: workshop description: Mod launcher - description_loc: - english: Mod launcher - executable: launcher\\Gothic1SteamWorkshopLauncher.exe + executable: "launcher\\\\Gothic1SteamWorkshopLauncher.exe" type: option1 workingdir: launcher -'655420': +"655420": installDir: Simple RTS launch: - config: oslist: windows executable: SimpleRTS.exe type: default -'655430': +"655430": installDir: Tiger Hunt launch: - config: oslist: windows executable: TigerHunt.exe type: default -'655440': +"655440": installDir: Panzer Killer launch: - config: oslist: windows executable: PanzerKiller.exe type: default -'655450': {} -'655460': +"655450": {} +"655460": installDir: Hooligan Vasja Halloween launch: - config: @@ -305344,78 +300586,74 @@ description: Start game executable: vasja-halloween.exe type: default -'655470': {} -'655480': +"655470": {} +"655480": installDir: Solar Settlers launch: - config: oslist: windows executable: solar.exe type: none - - arguments: '-force-opengl' + - arguments: "-force-opengl" config: oslist: macos - executable: solar.app\\Contents\\MacOS\\solar + executable: "solar.app\\\\Contents\\\\MacOS\\\\solar" type: none - - arguments: '-force-opengl -show-screen-selector' + - arguments: "-force-opengl -show-screen-selector" config: - osarch: '64' + osarch: "64" oslist: linux executable: solar.x86_64 type: none - - arguments: '-force-opengl -show-screen-selector' + - arguments: "-force-opengl -show-screen-selector" config: - osarch: '32' + osarch: "32" oslist: linux executable: solar.x86 type: none -'655490': +"655490": installDir: Geneticognito launch: - config: oslist: windows executable: Geneticognito.exe type: default -'655500': +"655500": installDir: MX Bikes launch: - config: oslist: windows executable: mxbikes.exe type: default - - arguments: '-vrs' + - arguments: "-vrs" config: oslist: windows executable: mxbikes.exe type: vr - - arguments: '-vro' + - arguments: "-vro" config: oslist: windows executable: mxbikes.exe type: othervr -'655510': {} -'655520': {} -'655530': +"655510": {} +"655520": {} +"655530": installDir: RagdollKanojo launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Desktop - description_loc: - english: Desktop - executable: desktop\\WindowsNoEditor\\RagdollKanojo_C.exe + executable: "desktop\\\\WindowsNoEditor\\\\RagdollKanojo_C.exe" type: default - - arguments: '-vr' + - arguments: "-vr" config: - osarch: '64' + osarch: "64" oslist: windows description: VR - description_loc: - english: VR - executable: vr\\WindowsNoEditor\\RagdollKanojo_C.exe + executable: "vr\\\\WindowsNoEditor\\\\RagdollKanojo_C.exe" type: vr -'655550': +"655550": installDir: NOKBAK launch: - config: @@ -305423,53 +300661,53 @@ description: Launches NOKBAK game executable: NOKBAK.exe type: default -'655580': +"655580": installDir: Micro Cosmic Worlds launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: CodonVR.exe type: vr -'65560': +"65560": installDir: Painkiller Redemption launch: - - executable: Bin\\Redemption.exe + - executable: "Bin\\\\Redemption.exe" workingdir: Bin - description: Launch Editor - executable: Bin\\RedemptionEditor.exe + executable: "Bin\\\\RedemptionEditor.exe" workingdir: Bin -'655600': +"655600": installDir: PHAT STACKS 2 launch: - executable: game.exe type: none -'655610': +"655610": installDir: Horse Racing 2016 launch: - config: oslist: windows executable: Horse Racing 2016.exe type: none -'655620': +"655620": installDir: Krieg launch: - config: oslist: windows executable: chicken.exe type: vr -'655630': +"655630": installDir: Paddle Battle launch: - config: oslist: windows executable: Paddlebattle.exe type: default -'655640': +"655640": installDir: HOCKEY_SPACE launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: hockey_space.exe type: default @@ -305477,14 +300715,14 @@ oslist: linux executable: hockey_space.x86_64 type: default -'655650': +"655650": installDir: Mahjong Masters Temple of the Ten Gods launch: - config: oslist: windows executable: Mahjong Masters - Temple of the Ten Gods.exe type: default -'655660': +"655660": installDir: Screaming Eagles launch: - config: @@ -305495,12 +300733,12 @@ oslist: macos executable: Screaming Eagles.app type: default -'655670': {} -'655700': +"655670": {} +"655700": installDir: F.E.X (Forced Evolution Experiment) launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: F.E.X (Forced Evolution Experiment).exe type: default @@ -305508,14 +300746,14 @@ oslist: macos executable: F.E.X (Forced Evolution Experiment).app type: default -'655710': +"655710": installDir: tick-hunter launch: - config: oslist: windows executable: tick-hunter.exe type: default -'655730': +"655730": installDir: REALM launch: - config: @@ -305526,14 +300764,14 @@ oslist: macos executable: Realm_Mac.app type: none -'655760': +"655760": installDir: ApeirogonGames launch: - config: oslist: windows executable: BeastMode.exe type: none -'655770': +"655770": installDir: Crimson Gray launch: - config: @@ -305548,31 +300786,31 @@ oslist: linux executable: Crimson Gray.sh type: default -'655780': +"655780": installDir: Sightseer launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Sightseer.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux - executable: ./Sightseer.x86_64 + executable: "./Sightseer.x86_64" type: default - config: oslist: macos executable: Sightseer.app type: default -'655790': +"655790": installDir: Fly Simulator launch: - config: oslist: windows executable: Fly Simulator.exe type: default -'655910': +"655910": installDir: Bullet Party launch: - config: @@ -305587,22 +300825,22 @@ oslist: macos executable: BulletParty.app type: default -'655930': +"655930": installDir: Merri_Puzzle launch: - config: oslist: windows executable: merripuzzle.exe type: default -'655940': +"655940": installDir: Elo Hell launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: EloHell.exe type: default -'655950': +"655950": installDir: Exocomets launch: - config: @@ -305617,24 +300855,24 @@ oslist: macos executable: Exocomets.app/Contents/MacOS/Exocomets type: default -'655980': +"655980": installDir: Wonfourn launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Wonfourn.exe type: vr -'65600': +"65600": installDir: Gothic 3 Forsaken Gods launch: - executable: Gothic III Forsaken Gods.exe -'656020': +"656020": installDir: Beta Runner launch: - executable: Beta Runner.exe type: default -'656030': +"656030": installDir: Redwall The Scout launch: - config: @@ -305645,8 +300883,8 @@ oslist: macos executable: redwall_scout.app type: default -'656040': - installDir: The Wolf's Bite +"656040": + installDir: "The Wolf's Bite" launch: - config: oslist: windows @@ -305656,14 +300894,14 @@ - config: oslist: macos description: Mac OS X Launch - executable: \\WolfsBite.app\\Contents\\MacOS\\WolfsBite + executable: "\\\\WolfsBite.app\\\\Contents\\\\MacOS\\\\WolfsBite" type: default -'656060': +"656060": installDir: SkiFy launch: - executable: SkiFy.exe type: default -'656070': +"656070": installDir: Better Off Tread launch: - config: @@ -305684,62 +300922,62 @@ oslist: windows executable: BetterOffTread.exe type: default -'656090': {} -'65610': +"656090": {} +"65610": installDir: Arcania Fall of Setarrif launch: - executable: Arcania Addon.exe -'656120': +"656120": installDir: Fantasya Final Definitiva REMAKE launch: - config: oslist: windows executable: RPG_RT.exe type: default -'656130': +"656130": installDir: King Erik launch: - - arguments: '-steam' + - arguments: "-steam" config: - osarch: '64' + osarch: "64" oslist: windows executable: King Erik.exe type: default - - arguments: '-steam' + - arguments: "-steam" config: oslist: macos - executable: Contents\\MacOS\\KingErik_Mac + executable: "Contents\\\\MacOS\\\\KingErik_Mac" type: default - - arguments: '-steam' + - arguments: "-steam" config: - osarch: '64' + osarch: "64" oslist: linux executable: KingErik_Linux.x86_64 type: default -'656140': +"656140": installDir: PLANETS OF WAR launch: - config: oslist: windows executable: Planets_Of_War.exe type: default -'656170': +"656170": installDir: RadianVR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: RadianVR.exe type: vr -'656180': {} -'656190': +"656180": {} +"656190": installDir: THE HOUCHI PLAY -THE 放置プレイ- launch: - config: oslist: windows executable: The Houchi Play.exe type: default -'656200': +"656200": installDir: ESports Club launch: - config: @@ -305748,110 +300986,110 @@ type: default - config: oslist: macos - executable: Contents\\MacOS\\output_mac + executable: "Contents\\\\MacOS\\\\output_mac" type: default -'656210': +"656210": installDir: ROMBY launch: - config: oslist: windows executable: ROMBY.exe type: default -'656220': - installDir: Sorcerer's Dream +"656220": + installDir: "Sorcerer's Dream" launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: mahoyume.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: mahoyume_x86.exe type: default nameLocalized: japanese: 魔法使いの見た夢 -'656240': +"656240": installDir: Heat launch: - - arguments: '-nolog -nologger' + - arguments: "-nolog -nologger" config: betakey: default - osarch: '64' + osarch: "64" oslist: windows description: Launches the game normally. executable: EAC.exe type: default - config: betakey: developer - osarch: '64' + osarch: "64" oslist: windows description: Launches the game with logging. executable: EAC.exe type: default - config: betakey: debug - osarch: '64' + osarch: "64" oslist: windows description: Launches the game with logging. executable: EAC.exe type: default -'656260': +"656260": installDir: APEX launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: APEX Tournament.exe type: none -'656270': {} -'656280': +"656270": {} +"656280": installDir: Fractus launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Fractus.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Fractus type: default -'656290': {} -'656300': - installDir: RD's Adventure Mini Golf +"656290": {} +"656300": + installDir: "RD's Adventure Mini Golf" launch: - config: oslist: windows - description: RD's Adventure Mini Golf + description: "RD's Adventure Mini Golf" executable: RD_Adventure_MG.exe type: option1 -'656310': {} -'656320': +"656310": {} +"656320": installDir: Planet Protector VR launch: - config: oslist: windows executable: Planet Protector VR.exe type: vr -'656330': +"656330": installDir: Outpost L5 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: outpostl5.exe type: vr -'656340': +"656340": installDir: SolitaireUltra launch: - config: oslist: windows executable: SolitaireUltra.exe type: default -'656350': +"656350": installDir: UnderMine launch: - config: @@ -305866,7 +301104,7 @@ oslist: linux executable: UnderMine type: default -'656360': +"656360": installDir: BOUNCED launch: - config: @@ -305877,15 +301115,15 @@ oslist: macos executable: BOUNCED.app type: none -'656370': {} -'656380': +"656370": {} +"656380": installDir: Chicken Daddy launch: - config: oslist: windows executable: Chicken Daddy.exe type: default -'656400': +"656400": installDir: AttritionTacticalFronts launch: - config: @@ -305897,57 +301135,57 @@ executable: attrition.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: attrition.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: attrition.x86_64 type: default -'656440': +"656440": installDir: Explomania launch: - config: oslist: windows executable: Explomania.exe type: none -'656450': +"656450": installDir: Alien Hallway 2 launch: - config: oslist: windows executable: AlienHallway.exe type: none -'656460': +"656460": installDir: Vostok Inc launch: - config: oslist: windows executable: vostok Inc.exe type: default -'656480': +"656480": installDir: Hidden Animals English - Spanish launch: - config: oslist: windows executable: HiddenAnimalsEnglishSpanish.exe type: default -'656490': +"656490": installDir: Automobile Tycoon launch: - config: oslist: windows executable: AutomobileTycoon.exe type: default - - arguments: '-safemode' + - arguments: "-safemode" config: oslist: windows description: Automobile Tycoon (safe mode) executable: AutomobileTycoon.exe type: option1 -'656510': +"656510": installDir: Epic Car Factory launch: - config: @@ -305977,29 +301215,29 @@ description: Mod Uploader executable: epiccarfactory.app/Contents/mod_uploader/mod_uploader type: none -'656530': +"656530": installDir: Pro Gamer Manager 2 launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Pro Gamer Manager 2 executable: pgm2.exe type: default - config: - osarch: '64' + osarch: "64" oslist: macos description: Pro Gamer Manager 2 executable: pgm2.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: Pro Gamer Manager 2 executable: pgm2.x86_64 type: default -'656540': {} -'656550': +"656540": {} +"656550": installDir: Shadow Bug launch: - config: @@ -306010,7 +301248,7 @@ oslist: macos executable: shadowbug.app type: default -'656560': +"656560": installDir: Castaway Home Designer launch: - config: @@ -306023,33 +301261,33 @@ description: Launch executable: Castaway Home Designer.exe type: default - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" config: oslist: macos description: Configure executable: Castaway Home Designer.app type: config - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" config: oslist: windows description: Configure executable: Castaway Home Designer.exe type: config -'656570': +"656570": installDir: Raven launch: - config: oslist: windows executable: raven.exe type: default -'656580': +"656580": installDir: Claws of Furry launch: - config: oslist: windows executable: Claws of Furry.exe type: none -'656590': +"656590": installDir: Eight-Minute Empire launch: - config: @@ -306061,49 +301299,49 @@ executable: Eight-Minute Empire.app/Contents/MacOS/Eight-Minute Empire type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Eight-Minute Empire.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Eight-Minute Empire.x86_64 type: default -'656600': +"656600": installDir: Slash It Ultimate launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: SlashItUltimate.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: SlashItUltimate.exe type: default - config: - osarch: '32' + osarch: "32" oslist: macos executable: SlashItUltimate.app type: default - config: - osarch: '64' + osarch: "64" oslist: macos executable: SlashItUltimate.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: SlashItUltimate.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: SlashItUltimate.x86_64 type: default -'656610': +"656610": installDir: Red Wake Carnage launch: - config: @@ -306118,35 +301356,35 @@ oslist: linux executable: RedWakeCarnage.x86 type: none -'656620': +"656620": installDir: Circuit Warz launch: - config: oslist: windows executable: Circuit Warz.exe type: default -'656630': +"656630": installDir: Dead of Night launch: - config: oslist: windows executable: Dead of Night.exe type: default -'656640': +"656640": installDir: Kalzor launch: - config: oslist: windows executable: Kalzor.exe type: default -'656660': +"656660": installDir: Fantasy Mosaics 15 Ancient Land launch: - config: oslist: windows executable: fantasy_mosaics_15.exe type: default -'656680': +"656680": installDir: Bomb Defense launch: - config: @@ -306154,12 +301392,12 @@ executable: BombDefense.exe type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: BombDefense.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: BombDefense.x86_64 type: none @@ -306167,22 +301405,22 @@ oslist: macos executable: Bomb Defense.app type: none -'656690': +"656690": installDir: Medieval Steve launch: - config: oslist: windows executable: MedievalSteve.exe type: default -'656700': +"656700": installDir: RICO launch: - config: oslist: windows executable: RICO.exe type: none -'656710': {} -'656730': +"656710": {} +"656730": installDir: Block Robot Mini Survival Game launch: - config: @@ -306197,15 +301435,15 @@ oslist: linux executable: BlockRobot.sh type: none -'656740': +"656740": installDir: Cosmonator launch: - - arguments: '-Xms256M -Xmx1024M -jar cosmonator.jar' + - arguments: "-Xms256M -Xmx1024M -jar cosmonator.jar" config: oslist: windows - executable: jre\\bin\\javaw.exe + executable: "jre\\\\bin\\\\javaw.exe" type: default -'656780': +"656780": installDir: Bullyparade - DER Spiel launch: - config: @@ -306216,16 +301454,16 @@ oslist: macos executable: Bullyparade.app type: none -'656790': {} -'656830': +"656790": {} +"656830": installDir: Body of Evidence launch: - config: oslist: windows executable: Body of Evidence.exe type: default -'656840': {} -'656880': +"656840": {} +"656880": installDir: Cybercube launch: - config: @@ -306237,46 +301475,46 @@ executable: CyberCube.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: CyberCube.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: CyberCube.x86_64 type: default -'656890': +"656890": installDir: Jewel Venture launch: - executable: Jewel Venture.exe type: default -'656900': +"656900": installDir: RHEM I SE The Mysterious Land launch: - config: oslist: windows - description: 'RHEM I SE: The Mysterious Land' + description: "RHEM I SE: The Mysterious Land" executable: RHEM_I_SE.exe type: default -'656910': +"656910": installDir: Space Hit launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: game.exe type: default -'656940': +"656940": installDir: thetheodoreadventures launch: - config: oslist: windows executable: thetheodoreadventure.exe type: default -'656950': {} -'656960': {} -'656970': +"656950": {} +"656960": {} +"656970": installDir: MagiCat launch: - config: @@ -306285,17 +301523,17 @@ type: default - config: oslist: macos - executable: MagiCat.app\\Contents\\MacOS\\MagiCat + executable: "MagiCat.app\\\\Contents\\\\MacOS\\\\MagiCat" type: default nameLocalized: brazilian: MagiGato / MagiCat japanese: マジキャット / MagiCat schinese: 魔法猫咪 / MagiCat -'6570': +"6570": installDir: Onimusha 3 launch: - executable: ONI3.exe -'657000': +"657000": installDir: Rising Hell launch: - config: @@ -306303,9 +301541,9 @@ executable: Rising Hell.exe type: default - config: - osarch: '64' + osarch: "64" oslist: macos - executable: hellbreaker.app\\Contents\\MacOS\\nwjs + executable: "hellbreaker.app\\\\Contents\\\\MacOS\\\\nwjs" type: default - config: oslist: linux @@ -306314,22 +301552,22 @@ nameLocalized: schinese: 杀戮之源 / Rising Hell tchinese: 杀戮之源 / Rising Hell -'657010': - installDir: Lucky Night Texas Hold'em VR +"657010": + installDir: "Lucky Night Texas Hold'em VR" launch: - - arguments: '-vr -LoginServer=101.226.79.144:7008' + - arguments: "-vr -LoginServer=101.226.79.144:7008" config: oslist: windows executable: SolarGame.exe type: vr -'657020': +"657020": installDir: Save Dash launch: - config: oslist: windows executable: SaveDash.exe type: none -'657040': +"657040": installDir: The Myth Seekers The Legacy of Vulcan launch: - config: @@ -306338,13 +301576,13 @@ executable: MythSeekers.exe type: none - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: MythSeekers_i386 type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: MythSeekers_amd64 @@ -306354,11 +301592,11 @@ description: Launch executable: mac_steam.app/Contents/MacOS/mac_steam type: none -'657050': +"657050": installDir: Humanity Must Perish launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: HumanityMustPerish.exe - config: @@ -306370,18 +301608,18 @@ executable: HumanityMustPerish.app type: none - config: - osarch: '32' + osarch: "32" oslist: windows executable: HumanityMustPerish-32.exe -'657070': +"657070": installDir: Dream Hills Captured Magic launch: - config: oslist: windows executable: dream_hills.exe type: none -'657080': {} -'657090': +"657080": {} +"657090": installDir: Robothorium launch: - config: @@ -306398,19 +301636,19 @@ type: default nameLocalized: schinese: 机甲核心 -'65710': +"65710": installDir: Pat and Mat launch: - executable: PATAMAT.exe - - arguments: '-options' + - arguments: "-options" description: Configure Advanced Options executable: PATAMAT.exe -'657110': +"657110": installDir: 2 Planets Fire and Ice launch: - executable: 2planets.exe type: default -'657120': +"657120": installDir: Flix and Chill 2 Millennials launch: - config: @@ -306421,7 +301659,7 @@ oslist: macos executable: FlixAndChill2.app type: default -'657170': +"657170": installDir: shootmup launch: - config: @@ -306432,27 +301670,27 @@ oslist: linux executable: ShootMUp type: default -'657180': +"657180": installDir: The Adliberum Engine (ADLENGINE) launch: - config: oslist: windows executable: nw.exe type: default -'657200': +"657200": installDir: Hand Simulator launch: - config: oslist: windows executable: Hand Simulator.exe type: default - - arguments: '-vr' + - arguments: "-vr" config: oslist: windows executable: Hand Simulator.exe type: vr -'657210': {} -'657230': +"657210": {} +"657230": installDir: Spirit of the Ancient Forest launch: - config: @@ -306463,15 +301701,15 @@ oslist: macos executable: ancientforest.app type: none -'657240': +"657240": installDir: Tracks - The Train Set Game launch: - config: oslist: windows executable: TrainSet.exe type: default -'657250': {} -'657260': +"657250": {} +"657260": installDir: SHE SAVE launch: - config: @@ -306482,44 +301720,44 @@ oslist: macos executable: SHE SAVE.app type: none -'657290': +"657290": installDir: BLIND_MEN launch: - config: oslist: windows - executable: BLIND_MEN\\Blind_Men.exe + executable: "BLIND_MEN\\\\Blind_Men.exe" type: default - config: oslist: macos - executable: BLIND_MEN\\Blind_Men.app + executable: "BLIND_MEN\\\\Blind_Men.app" type: default - config: oslist: linux - executable: BLIND_MEN\\Blind_Men.sh + executable: "BLIND_MEN\\\\Blind_Men.sh" type: default -'65730': +"65730": installDir: Take On Helicopters launch: - executable: TakeOnH.exe - - arguments: '-window' + - arguments: "-window" description: Launch In windowed mode executable: TakeOnH.exe - - arguments: '-updater' + - arguments: "-updater" config: - ownsdlc: '65733' + ownsdlc: "65733" description: Install Hinds DLC - executable: DLCsetup\\Hinds\\DataCachePreprocessor.exe -'657300': + executable: "DLCsetup\\\\Hinds\\\\DataCachePreprocessor.exe" +"657300": installDir: Party Crashers launch: - config: oslist: windows executable: PartyCrashers.exe type: default -'657320': +"657320": installDir: hgybt launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows executable: Game.exe @@ -306527,33 +301765,33 @@ nameLocalized: english: Reverse Fantasy Legend schinese: 逆袭幻想传 -'65740': +"65740": installDir: Carrier Command Gaea Mission launch: - executable: carrier.exe -'657400': +"657400": installDir: Mimic Hunter launch: - - arguments: '-game' + - arguments: "-game" config: oslist: windows description: Play Mimic Hunter executable: Mimic Hunter.exe type: default - - arguments: '-editor' + - arguments: "-editor" config: oslist: windows description: Launch Tower Builder executable: Mimic Hunter.exe type: none -'657410': +"657410": installDir: Electronics Circuits Simulator launch: - config: oslist: windows executable: Circuit Warz Training levels.exe type: default -'657440': +"657440": installDir: Burn It Down launch: - config: @@ -306564,18 +301802,18 @@ oslist: macos executable: Burn_It_Down.app type: default -'657450': +"657450": installDir: Claybreaker - VR Clay Shooting launch: - config: oslist: windows executable: claybreaker.exe type: vr -'657470': +"657470": installDir: Take Off - The Flight Simulator launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: TakeOff.exe @@ -306585,15 +301823,15 @@ description: Launch executable: TakeOff.app type: default -'657480': +"657480": installDir: Dark Skies The Nemansk Incident launch: - config: oslist: windows executable: Dark Skies.exe type: default -'657490': {} -'657500': +"657490": {} +"657500": installDir: Hold the Line The American Revolution launch: - config: @@ -306604,21 +301842,21 @@ oslist: macos executable: HoldTheLine.app type: none -'657510': +"657510": installDir: TUBELIVE launch: - config: oslist: windows executable: TUBELIVE.exe type: default -'657530': +"657530": installDir: Impresja launch: - config: oslist: windows executable: Impresja.exe type: default -'657550': +"657550": installDir: quadrantica launch: - config: @@ -306629,23 +301867,23 @@ oslist: linux executable: quadrantica.x86 type: default -'657560': +"657560": installDir: Dodgeball launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Dodgeball.exe type: default -'657580': {} -'657590': +"657580": {} +"657590": installDir: Grav Blazer launch: - config: oslist: windows executable: gravblazer.exe type: default -'657630': +"657630": installDir: Fidget Spinner launch: - config: @@ -306660,10 +301898,10 @@ oslist: linux executable: Fidget Spinner.x86 type: none -'657650': {} -'657660': {} -'657680': {} -'657690': +"657650": {} +"657660": {} +"657680": {} +"657690": installDir: The Caribbean Sail launch: - config: @@ -306678,14 +301916,14 @@ oslist: linux executable: The Caribbean Sail type: default -'657700': +"657700": installDir: The Automatician launch: - config: oslist: windows executable: IncredibleHeist.exe type: default -'657730': +"657730": installDir: Wolflord launch: - config: @@ -306696,17 +301934,17 @@ oslist: macos executable: Wolflord_mac.app type: default -'657740': {} -'657770': {} -'657780': +"657740": {} +"657770": {} +"657780": installDir: Rome Circus Maximus Chariot Race VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: CircusMaximus.exe type: vr -'657790': +"657790": installDir: Defense of Roman Britain launch: - config: @@ -306717,7 +301955,7 @@ oslist: macos executable: Defense of Roman Britain.app type: default -'657810': +"657810": installDir: Blessed Surface launch: - config: @@ -306728,60 +301966,58 @@ oslist: linux executable: Blessed_Surface type: none -'65790': +"65790": installDir: ARMA Cold War Assault launch: - executable: ColdWarAssault.exe - - arguments: '-window' + - arguments: "-window" description: Launch in Windowed mode executable: ColdWarAssault.exe - description: Configure Advanced Options executable: ColdWarAssaultPreferences.exe -'657900': {} -'657930': +"657900": {} +"657930": installDir: Spartaga launch: - description: Spartaga executable: spartaga.exe type: vr - - arguments: '-resetPlayspace' + - arguments: "-resetPlayspace" description: and Reset Playspace executable: spartaga.exe type: vr -'657990': +"657990": installDir: Crafting Dead launch: - config: oslist: windows executable: Crafting Dead.exe type: default -'65800': +"65800": installDir: Dungeon Defenders launch: - config: oslist: windows - executable: Binaries\\Win32\\DunDefGame.exe + executable: "Binaries\\\\Win32\\\\DunDefGame.exe" type: none - config: oslist: macos executable: DunDef.app/Contents/MacOS/DunDef - vacmodulefilename: resource\\sourceinit_macos.dat - config: oslist: macos description: Configure Dungeon Defenders executable: DunDef.app/Config/Contents/MacOS/DDConfig - vacmodulefilename: resource\\sourceinit_macos.dat - config: oslist: linux executable: DungeonDefenders -'658050': - installDir: Dragons' Twilight +"658050": + installDir: "Dragons' Twilight" launch: - config: oslist: windows executable: Game.exe type: none -'658060': +"658060": installDir: Valentine Panic launch: - config: @@ -306796,7 +302032,7 @@ oslist: linux executable: ValentinePanic.sh type: default -'658090': +"658090": installDir: Galaxy Crash launch: - config: @@ -306804,28 +302040,28 @@ oslist: windows executable: Galaxy Crash.exe type: default -'658120': +"658120": installDir: Mad-Sector launch: - config: oslist: windows executable: Mad Sector.exe type: default -'658140': +"658140": installDir: Sakura Sakura launch: - config: oslist: windows executable: sakurasakura.exe type: none -'658150': +"658150": installDir: Skeleton Boomerang launch: - config: oslist: windows executable: skeletonboomerang.exe type: default -'658160': +"658160": installDir: ClickRaid launch: - config: @@ -306842,14 +302078,14 @@ oslist: macos executable: ClickRaid.app type: default -'658210': +"658210": installDir: MegaMaze launch: - config: oslist: windows executable: MegaMaze.exe type: default - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" config: oslist: windows executable: MegaMaze.exe @@ -306862,53 +302098,47 @@ oslist: linux executable: MegaMaze.x86_64 type: default -'658230': +"658230": installDir: Chambered launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Chambered.exe type: vr -'658250': +"658250": installDir: Xtrike launch: - - arguments: '-XX:+UseZGC -cp Xtrike.jar com.whitewoodcity.xtrike.Main ' + - arguments: "-XX:+UseZGC -cp Xtrike.jar com.whitewoodcity.xtrike.Main " config: oslist: macos description: Xtrike - description_loc: - english: Xtrike executable: bin/java - - arguments: '-XX:+UseZGC -cp Xtrike.jar com.whitewoodcity.xtrike.Main ' + - arguments: "-XX:+UseZGC -cp Xtrike.jar com.whitewoodcity.xtrike.Main " config: - osarch: '64' + osarch: "64" oslist: windows description: Xtrike - description_loc: - english: Xtrike - executable: bin\\javaw.exe - - arguments: '-XX:+UseZGC -cp Xtrike.jar com.whitewoodcity.xtrike.Main ' + executable: "bin\\\\javaw.exe" + - arguments: "-XX:+UseZGC -cp Xtrike.jar com.whitewoodcity.xtrike.Main " config: - osarch: '64' + osarch: "64" oslist: linux description: Xtrike - description_loc: - english: Xtrike executable: bin/java -'658260': +"658260": installDir: BLUE REFLECTION launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: BLUE_REFLECTION_Launcher.exe type: none nameLocalized: japanese: BLUE REFLECTION 幻に舞う少女の剣 tchinese: BLUE REFLECTION 幻舞少女之劍 -'658280': {} -'658320': +"658280": {} +"658320": installDir: Oldage launch: - config: @@ -306916,7 +302146,7 @@ executable: Oldage.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Oldage.x86_64 type: default @@ -306924,7 +302154,7 @@ oslist: macos executable: Oldage.app type: default -'658330': +"658330": installDir: Triplicity launch: - config: @@ -306936,35 +302166,35 @@ executable: Triplicity.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Triplicity_x86.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Triplicity_x86_64.x86_64 type: default -'658340': {} -'658360': +"658340": {} +"658360": installDir: SummerVacation launch: - executable: SummerVacation.exe type: vr -'658390': +"658390": installDir: Tunnel Runner VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TunnelRunnerVR-1.03f-openvr.exe type: vr -'658400': +"658400": installDir: Baseball Mogul 2017 launch: - executable: BB-2017.exe type: default -'658420': +"658420": installDir: Agents of Aggro City Online launch: - executable: Agents_of_Aggro_City.exe @@ -306972,14 +302202,14 @@ - description: Redeem Achievements Center executable: nw.exe type: none -'658430': +"658430": installDir: Professor Watts Word Search Into The Ocean launch: - config: oslist: windows executable: professorwattssearchintotheocean.exe type: default -'658440': +"658440": installDir: Enshrouded World - Home Truths launch: - config: @@ -306990,8 +302220,8 @@ oslist: linux executable: ewht type: default -'658450': - installDir: Lil' Blue Buddy +"658450": + installDir: "Lil' Blue Buddy" launch: - config: oslist: windows @@ -307005,22 +302235,22 @@ oslist: linux executable: Lil_Blue_Buddy.x86 type: none -'658470': +"658470": installDir: Mini Battlegrounds launch: - config: oslist: windows executable: CrazyShooter.exe type: none -'658480': +"658480": installDir: StarfighterGeneral launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Starfighter.exe type: default -'658490': +"658490": installDir: Roadfactory launch: - config: @@ -307028,7 +302258,7 @@ executable: Drive Isle/Drive Isle.exe type: none workingdir: Drive Isle -'658500': +"658500": installDir: Ultra Space Battle Brawl launch: - config: @@ -307037,9 +302267,9 @@ type: default - config: oslist: macos - executable: Ultra Space Battle Brawl.app\\Contents\\MacOS\\Ultra Space Battle Brawl + executable: "Ultra Space Battle Brawl.app\\\\Contents\\\\MacOS\\\\Ultra Space Battle Brawl" type: default -'658510': +"658510": installDir: Dark Eden Origin launch: - arguments: steam @@ -307047,7 +302277,7 @@ oslist: windows executable: updater.exe type: default -'658530': +"658530": installDir: Grisaia Phantom Trigger Vol.3 launch: - executable: GPT_vol3.exe @@ -307055,19 +302285,19 @@ nameLocalized: japanese: グリザイア ファントムトリガー Vol.3 schinese: 灰色幻影扳机第3卷 -'658550': +"658550": installDir: Zup! Zero 2 launch: - executable: Zup! Zero 2.exe type: default -'658560': +"658560": installDir: Zup! 7 launch: - config: oslist: windows executable: Zup! 7.exe type: default -'658570': +"658570": installDir: FURIDASHI Drift Cyber Sport launch: - config: @@ -307077,7 +302307,7 @@ - arguments: defaultsettings config: oslist: windows - description: 'FURIDASHI: Drift Cyber Sport with Default Settings' + description: "FURIDASHI: Drift Cyber Sport with Default Settings" executable: Furidashi.exe type: option1 - arguments: testtrack @@ -307099,7 +302329,7 @@ oslist: windows executable: Furidashi.exe type: vr -'658590': +"658590": installDir: She and The Light Bearer launch: - config: @@ -307110,41 +302340,41 @@ oslist: macos executable: She.app type: default -'658600': +"658600": installDir: Lawnmowergame launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Lawnmowergame.exe type: default -'658610': +"658610": installDir: ABC-TK launch: - config: oslist: windows executable: Game.exe type: default -'658620': +"658620": installDir: Wonderful Everyday Down the Rabbit-Hole launch: - executable: BGI.exe type: none -'658630': +"658630": installDir: Anonymous ME launch: - config: oslist: windows executable: AnonymousME.exe type: none -'658660': +"658660": installDir: Way of Defector launch: - config: oslist: windows executable: Way of Defector.exe type: none -'658690': +"658690": installDir: Rage In Peace launch: - config: @@ -307153,11 +302383,11 @@ type: default - config: oslist: macos - executable: RageInPeace.app\\Contents\\MacOS\\RageInPeace + executable: "RageInPeace.app\\\\Contents\\\\MacOS\\\\RageInPeace" type: default nameLocalized: schinese: 和平之怒 / Rage In Peace -'658700': +"658700": installDir: VR4 launch: - config: @@ -307165,36 +302395,36 @@ description: VRally 4 executable: VRally4.exe type: option1 -'658710': +"658710": installDir: Pine Seekers launch: - config: oslist: windows executable: Pine Seekers.exe type: default -'658730': {} -'658750': {} -'658760': +"658730": {} +"658750": {} +"658760": installDir: Teal launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Teal.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Teal.sh type: default -'658770': +"658770": installDir: Dreamals Dream Quest launch: - config: oslist: windows executable: DDQ.exe type: default -'658780': +"658780": installDir: BombChicken launch: - config: @@ -307203,9 +302433,9 @@ type: default - config: oslist: macos - executable: BombChicken.app\\Contents\\MacOS\\BombChicken + executable: "BombChicken.app\\\\Contents\\\\MacOS\\\\BombChicken" type: default -'658790': +"658790": installDir: Samurai Riot launch: - config: @@ -307213,23 +302443,23 @@ executable: SamuraiRiot2.0.2PC/Samurai Riot.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: SamuraiRiot.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: SamuraiRiot.x86 type: default -'658800': +"658800": installDir: Fantasy Mosaics 16 Six Colors in Wonderland launch: - config: oslist: windows executable: fantasy_mosaics_16.exe type: default -'658810': +"658810": installDir: Flux8 launch: - config: @@ -307238,13 +302468,13 @@ type: default - config: oslist: macos - executable: Flux8.app\\Contents\\MacOS\\Flux8 + executable: "Flux8.app\\\\Contents\\\\MacOS\\\\Flux8" type: default - config: oslist: linux executable: Flux8.x86 type: default -'658830': +"658830": installDir: Artificer launch: - config: @@ -307255,8 +302485,8 @@ oslist: macos executable: ArtificerMac.app/Contents/MacOS/Artificer type: none -'658840': {} -'658850': +"658840": {} +"658850": installDir: DNFTM launch: - config: @@ -307268,48 +302498,46 @@ executable: dnftm_mac.app type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: dnftm.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: dnftm.x86_64 type: none -'658870': +"658870": installDir: EXIT 2 - Directions launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: bin64\\exit2.exe + executable: "bin64\\\\exit2.exe" type: none -'658880': +"658880": installDir: Jammerball launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: Jammerball.exe type: none -'658890': +"658890": installDir: Arthurian Legends launch: - config: oslist: windows executable: Arthurian Legends.exe type: default -'658920': +"658920": installDir: Half-Life 2 VR launch: - - description: 'Half-Life 2: VR Mod' - description_loc: - english: 'Half-Life 2: VR Mod' + - description: "Half-Life 2: VR Mod" executable: hl2vr.exe type: vr -'658950': {} -'658970': +"658950": {} +"658970": installDir: CasinoRPG launch: - config: @@ -307320,19 +302548,19 @@ oslist: macos executable: CasinoRPG.app type: default -'658980': +"658980": installDir: Valnir Rok launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Valnir Rok.exe type: default -'658990': +"658990": installDir: Icycle On Thin Ice launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Icycle On Thin Ice.exe type: default @@ -307340,15 +302568,15 @@ oslist: macos executable: Icycle On Thin Ice.app type: none -'659000': +"659000": installDir: Meta Star launch: - config: oslist: windows executable: MetaStarV001.exe type: default -'659030': {} -'659040': +"659030": {} +"659040": installDir: Intrusion Protocol launch: - config: @@ -307359,7 +302587,7 @@ oslist: linux executable: IP_Linux type: default -'659060': +"659060": installDir: Omega Racers launch: - config: @@ -307370,33 +302598,33 @@ oslist: linux executable: linux.x86_64 type: default -'659090': {} -'659100': {} -'659110': +"659090": {} +"659100": {} +"659110": installDir: Vicious Attack Llama Apocalypse launch: - config: oslist: windows executable: VALA.exe type: default -'659120': +"659120": installDir: Survive launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Survive.exe type: default -'659130': +"659130": installDir: Shopping Tycoon launch: - config: oslist: windows executable: Shopping Tycoon.exe type: none -'659140': {} -'659150': {} -'659160': +"659140": {} +"659150": {} +"659160": installDir: RainofPumpkins launch: - config: @@ -307407,7 +302635,7 @@ oslist: macos executable: RainofPumpkins.app type: default -'659170': +"659170": installDir: Super Flipside launch: - config: @@ -307418,7 +302646,7 @@ oslist: macos executable: Super Flipside.app type: default -'659180': +"659180": installDir: Medieval Mystery Match launch: - config: @@ -307429,62 +302657,62 @@ oslist: macos executable: MedievalMysteryMatch.app type: default -'659190': +"659190": installDir: SorryJames launch: - config: oslist: windows - executable: 'Sorry, James.exe' + executable: "Sorry, James.exe" type: default - config: oslist: windows description: Demo - executable: 'Demo\\Sorry, James DEMO.exe' + executable: "Demo\\\\Sorry, James DEMO.exe" type: option1 -'659220': +"659220": installDir: Project Maze launch: - config: oslist: windows executable: ProjectMaze.exe type: default -'659250': {} -'659260': +"659250": {} +"659260": installDir: Canvas Quest launch: - - arguments: '-windowed --in-process-gpu' + - arguments: "-windowed --in-process-gpu" config: betakey: default oslist: windows executable: nw.exe type: default - - arguments: '-windowed' + - arguments: "-windowed" config: betakey: integratedgraphicsmode executable: game.exe type: default -'65930': +"65930": installDir: The Bureau launch: - - arguments: '-seekfreeloadingpcconsole -steam -showbuildversion=1 -noscreenmessages -skipallnotifies' + - arguments: "-seekfreeloadingpcconsole -steam -showbuildversion=1 -noscreenmessages -skipallnotifies" config: oslist: windows - description: 'Play The Bureau: XCOM Declassified (DX9)' - executable: binaries\\win32\\thebureau.exe - workingdir: binaries\\win32\\ - - arguments: '-seekfreeloadingpcconsole -steam -showbuildversion=1 -dx11 -noscreenmessages -skipallnotifies' + description: "Play The Bureau: XCOM Declassified (DX9)" + executable: "binaries\\\\win32\\\\thebureau.exe" + workingdir: "binaries\\\\win32\\\\" + - arguments: "-seekfreeloadingpcconsole -steam -showbuildversion=1 -dx11 -noscreenmessages -skipallnotifies" config: oslist: windows - description: 'The Bureau: XCOM Declassified (DX11)' - executable: binaries\\win32\\thebureau.exe - workingdir: binaries\\win32 - - arguments: '-psn' + description: "The Bureau: XCOM Declassified (DX11)" + executable: "binaries\\\\win32\\\\thebureau.exe" + workingdir: "binaries\\\\win32" + - arguments: "-psn" config: oslist: macos description: The Bureau OSX executable: /The Bureau - XCOM Declassified.app/Contents/MacOS/cider workingdir: The Bureau -'659320': +"659320": installDir: Pixel Pursuit launch: - config: @@ -307495,9 +302723,9 @@ oslist: macos executable: Pixel Pursuit.app type: default -'659330': {} -'659350': {} -'659460': +"659330": {} +"659350": {} +"659460": installDir: RiotZ launch: - config: @@ -307505,7 +302733,7 @@ executable: RiotZ.exe type: default workingdir: RiotZ_Data -'659480': +"659480": installDir: The Initiate launch: - config: @@ -307516,50 +302744,50 @@ oslist: macos executable: The Initiate.app type: default -'659490': +"659490": installDir: Devil In The Capital launch: - executable: DevilInCapital.exe type: default -'65950': +"65950": installDir: NBA 2K11 launch: - executable: NBA2K11.exe -'659500': +"659500": installDir: amg launch: - config: oslist: windows executable: AMG.exe type: none -'659510': +"659510": installDir: Ghostie Quest launch: - - arguments: '-jar GhostieQuest.jar' + - arguments: "-jar GhostieQuest.jar" config: oslist: windows - executable: jre6\\bin\\javaw.exe + executable: "jre6\\\\bin\\\\javaw.exe" type: none -'659530': +"659530": installDir: Embers of War launch: - config: oslist: windows executable: EmbersOfWar.exe type: default -'659540': +"659540": installDir: Warsim The Realm of Aslona launch: - config: oslist: windows executable: Warsim.exe type: default -'659560': +"659560": installDir: VITATIO launch: - executable: game.exe type: none -'659570': +"659570": installDir: Lion Quest Versus Expanded launch: - config: @@ -307571,12 +302799,12 @@ executable: LQVE.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: LQVE.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: LQVE.x86_64 type: default @@ -307586,28 +302814,28 @@ description: Beta executable: LQVE.app type: none -'659630': +"659630": installDir: Tiny Toyfare launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Tiny Toyfare.exe type: default -'659720': +"659720": installDir: Xenocite Clad launch: - config: oslist: windows executable: XenociteClad.exe type: default -'659750': {} -'659760': +"659750": {} +"659760": installDir: Synthetic Dreams launch: - executable: SyntheticDreams.exe type: vr -'659780': +"659780": installDir: Darkness and a Crowd launch: - config: @@ -307619,23 +302847,23 @@ oslist: windows executable: Darkness and a crowd.exe type: default -'659790': +"659790": installDir: Hero of the Galactic Core launch: - config: oslist: windows executable: Heroofthegalacticcore.exe type: default -'65980': - installDir: Sid Meier's Civilization Beyond Earth +"65980": + installDir: "Sid Meier's Civilization Beyond Earth" launch: - config: oslist: windows - description: 'Civilization: Beyond Earth' + description: "Civilization: Beyond Earth" executable: civilizationbe_dx11.exe - config: oslist: windows - description: 'Sid Meier''s Civilization: Beyond Earth (AMD Mantle)' + description: "Sid Meier's Civilization: Beyond Earth (AMD Mantle)" executable: civilizationbe_mantle.exe - config: oslist: macos @@ -307644,29 +302872,29 @@ - config: oslist: linux description: Launch - executable: ./CivBE -'659810': + executable: "./CivBE" +"659810": installDir: bead launch: - config: oslist: windows executable: bead.exe type: default -'659820': {} -'659830': +"659820": {} +"659830": installDir: LLW launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: LLW.exe type: vr - config: - osarch: '64' + osarch: "64" oslist: windows executable: LLW.exe type: vr -'659840': +"659840": installDir: World of Warfare Robots launch: - config: @@ -307678,133 +302906,133 @@ executable: WWR.app type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: WWR.x86_64 type: default nameLocalized: - arabic: 'WWR: عالم الحرب الروبوتات' - brazilian: 'WWR: Guerra de robos (Jogo De Luta PvP)' - czech: 'WWR: Svět Válečných Robotů Online Hra' - finnish: 'WWR: Robotit sodan taistelussa' - french: 'WWR: Robot Jeux de Guerre en ligne' - german: 'WWR: Krieg Roboter Spiele 3D' - greek: 'WWR: Ρομπότ πολέμου σε απευθείας σύνδεση' - hungarian: 'WWR: Háborús Robotok Játék' - italian: 'WWR: La Guerra da Robot 3D' + arabic: "WWR: عالم الحرب الروبوتات" + brazilian: "WWR: Guerra de robos (Jogo De Luta PvP)" + czech: "WWR: Svět Válečných Robotů Online Hra" + finnish: "WWR: Robotit sodan taistelussa" + french: "WWR: Robot Jeux de Guerre en ligne" + german: "WWR: Krieg Roboter Spiele 3D" + greek: "WWR: Ρομπότ πολέμου σε απευθείας σύνδεση" + hungarian: "WWR: Háborús Robotok Játék" + italian: "WWR: La Guerra da Robot 3D" japanese: WWR:戦争ロボットオンラインバトルゲーム - koreana: 'WWR: 전쟁 로봇 온라인 전투 게임' - norwegian: 'WWR: Roboter krigsslag' - polish: 'WWR: Świat Robotów Wojennych Online' - portuguese: 'WWR: Robôs guerra' - romanian: 'WWR: Roboti Din Lumea Razboiului' - russian: 'WWR: Боевые Роботы Онлайн' + koreana: "WWR: 전쟁 로봇 온라인 전투 게임" + norwegian: "WWR: Roboter krigsslag" + polish: "WWR: Świat Robotów Wojennych Online" + portuguese: "WWR: Robôs guerra" + romanian: "WWR: Roboti Din Lumea Razboiului" + russian: "WWR: Боевые Роботы Онлайн" schinese: 战争机器人世界 《World of Warfare Robots》 - spanish: 'WWR: Juegos de Guerra Robot 3D en línea' - swedish: 'WWR: Robotar stridskämpar' - tchinese: 'WWR: 戰爭機器人在線' - thai: 'WWR: สงครามหุ่นยนต์ต่อสู้ออนไลน์' - turkish: 'WWR: Robotlar Savaşı Çevrimiçi' - vietnamese: 'WWR: Trò chơi trực tuyến nhiều người chơi Robot' -'659850': {} -'659860': + spanish: "WWR: Juegos de Guerra Robot 3D en línea" + swedish: "WWR: Robotar stridskämpar" + tchinese: "WWR: 戰爭機器人在線" + thai: "WWR: สงครามหุ่นยนต์ต่อสู้ออนไลน์" + turkish: "WWR: Robotlar Savaşı Çevrimiçi" + vietnamese: "WWR: Trò chơi trực tuyến nhiều người chơi Robot" +"659850": {} +"659860": installDir: exercise book epic launch: - config: oslist: windows executable: S007.exe type: default -'659870': - installDir: Don't Die! +"659870": + installDir: "Don't Die!" launch: - config: oslist: windows - executable: Don't Die!.exe + executable: "Don't Die!.exe" type: default - config: - osarch: '32' + osarch: "32" oslist: linux - executable: Don't Die!.x86 + executable: "Don't Die!.x86" type: default - config: - osarch: '64' + osarch: "64" oslist: linux - executable: Don't Die!.x86_64 + executable: "Don't Die!.x86_64" type: default - config: oslist: macos - executable: Don't Die!.app + executable: "Don't Die!.app" type: default -'659890': +"659890": installDir: Fantasy Mosaics 17 New Palette launch: - config: oslist: windows executable: fantasy_mosaics_17.exe type: default -'659900': +"659900": installDir: Aetherspace launch: - config: oslist: windows executable: Aetherspace.exe type: none -'659910': +"659910": installDir: Loptice launch: - config: oslist: windows executable: Loptice.exe type: none -'659920': +"659920": installDir: Transports launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Transports.exe type: default -'659940': +"659940": installDir: Travel Riddles Trip To France launch: - config: oslist: windows executable: france.exe type: none -'659950': +"659950": installDir: Travel Riddles Trip To Italy launch: - config: oslist: windows executable: italy.exe type: none -'6600': +"6600": installDir: Bullet Candy launch: - executable: Bullet Candy.exe -'660030': +"660030": installDir: Fantasy Mosaics 18 Explore New Colors launch: - config: oslist: windows executable: fantasy_mosaics_18.exe type: default -'660040': +"660040": installDir: Diving Trunks launch: - config: oslist: windows executable: DivingTrunks.exe type: default -'660070': +"660070": installDir: Chromatic launch: - config: oslist: windows executable: Chromatic.exe type: default -'660100': {} -'660110': +"660100": {} +"660110": installDir: DepthMera launch: - config: @@ -307813,63 +303041,63 @@ type: default - config: oslist: macos - executable: DepthMera.app\\Contents\\MacOS\\DepthMera + executable: "DepthMera.app\\\\Contents\\\\MacOS\\\\DepthMera" type: default -'660120': +"660120": installDir: Lunch Truck Tycoon 2 launch: - config: oslist: windows executable: LTT2_steam.exe type: default -'660160': +"660160": installDir: Field of Glory II launch: - config: oslist: windows executable: autorun.exe type: default -'660170': +"660170": installDir: Haunted Hotel SITL launch: - config: oslist: windows executable: Haunted Hotel - SITL.exe type: default -'660180': +"660180": installDir: Seduction launch: - - arguments: '-windowed' + - arguments: "-windowed" config: - osarch: '64' + osarch: "64" oslist: windows executable: Seduction.exe type: vr -'660270': +"660270": installDir: Space Scumbags launch: - executable: Space Scumbags.exe type: none -'660280': +"660280": installDir: Keep It Safe 2 launch: - config: oslist: windows executable: KeepItSafe2PC.exe type: default -'660290': +"660290": installDir: Dungeons & Geese launch: - executable: Dungeons & Geese.exe type: none -'660320': +"660320": installDir: M.A.C.E. Tower Defense launch: - config: oslist: windows executable: MaceDefense.exe type: default -'660330': +"660330": installDir: Ragnarok ReStart launch: - config: @@ -307877,14 +303105,14 @@ description: Launch Ragnarok ReStart executable: WPLauncher.exe type: none -'660340': +"660340": installDir: Robot King Part I Rebooted and Ready launch: - config: oslist: windows executable: RobotKing.exe type: none -'660390': +"660390": installDir: RageBall launch: - config: @@ -307892,14 +303120,14 @@ description: Launch executable: RageBall 3.1.exe type: none -'660400': +"660400": installDir: SQUAREHEAD launch: - config: oslist: windows executable: Squarehead.exe type: default -'660450': +"660450": installDir: Orbs launch: - config: @@ -307914,47 +303142,47 @@ oslist: linux executable: Orbs.app type: default -'660520': +"660520": installDir: WELD launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Weld.exe type: vr -'660560': +"660560": installDir: Fishing On The Fly launch: - - arguments: '-silent ' + - arguments: "-silent " config: oslist: windows - executable: \\Binaries\\Win32\\UDK.exe + executable: "\\\\Binaries\\\\Win32\\\\UDK.exe" type: none -'660570': +"660570": installDir: Million Arthur VR Character Command RPG launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: MillionVR.exe type: vr -'660730': +"660730": installDir: Ventura Inc launch: - config: oslist: windows executable: Ventura Inc.exe type: default -'660760': +"660760": installDir: Bouncing Odyssey launch: - config: - osarch: '64' + osarch: "64" oslist: linux executable: bo-lin64-v10 type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: bo-win64-v10.exe type: default @@ -307962,52 +303190,52 @@ oslist: macos executable: Bouncing Odyssey.app/Contents/MacOS/Bouncing Odyssey type: default -'660800': {} -'660820': +"660800": {} +"660820": installDir: Retro Block VR launch: - config: oslist: windows executable: RetroBlockVR-ver1.01a-OpenVR.exe type: vr -'660830': +"660830": installDir: Tanks2de launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: t2d.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: t2d.x86_64 type: default -'660860': {} -'660880': +"660860": {} +"660880": installDir: b launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: b.exe type: default -'660900': +"660900": installDir: Dark Mystery launch: - config: oslist: windows executable: dark.exe type: default -'660920': +"660920": installDir: The Warhorn launch: - - arguments: '-fullscreen' + - arguments: "-fullscreen" config: oslist: windows executable: TheWarhorn.exe type: default -'660940': +"660940": installDir: Law Mower launch: - config: @@ -308022,50 +303250,50 @@ oslist: windows executable: serverproxy.bat type: server -'660970': +"660970": installDir: Persian The Great Lamp Heist launch: - config: oslist: windows executable: persian.exe type: default -'660980': +"660980": installDir: Quantum Wizard launch: - config: oslist: windows executable: qw.exe type: default -'660990': +"660990": installDir: DeadPurgeOutbreak launch: - config: oslist: windows executable: DeadPurgeOutbreak.exe type: default -'661000': +"661000": installDir: FlowThe Sliding launch: - config: oslist: windows - executable: Windows\\FlowTheSliding.exe + executable: "Windows\\\\FlowTheSliding.exe" type: default - config: oslist: linux - executable: Linux\\FlowThe Sliding.x86 + executable: "Linux\\\\FlowThe Sliding.x86" type: default - config: oslist: macos - executable: FlowTheSliding.app\\Contents\\MacOS\\FlowTheSliding + executable: "FlowTheSliding.app\\\\Contents\\\\MacOS\\\\FlowTheSliding" type: default -'661030': +"661030": installDir: Aliens&Asteroids launch: - config: oslist: windows executable: Aliens&Asteroids.exe type: none -'661040': +"661040": installDir: Time Trap - Hidden Objects launch: - config: @@ -308077,76 +303305,76 @@ executable: TimeTrapX.app type: none nameLocalized: - dutch: "Zoek\_en Vind - Time Trap - Nederlands spelletjes " + dutch: "Zoek en Vind - Time Trap - Nederlands spelletjes " english: Time Trap - Hidden Objects Puzzle Game - french: 'Time Trap: Objets cachés - jeux de puzzle' + french: "Time Trap: Objets cachés - jeux de puzzle" german: Zeitfalle - Wimmelbildspiele. Rätsel Spiele italian: Time Trap - Trova Oggetti Nascosti. Enigmi japanese: タイムトラップ - 時間の旅 - 探し物ゲーム。アイテム探しアドベンチャー latam: Time Trap - Objetos Ocultos Juegos en Español - russian: 'Поиск Предметов: Петля Времени. Игры Найди предмет' + russian: "Поиск Предметов: Петля Времени. Игры Найди предмет" schinese: 時間陷阱 - 隐藏物品游戏。寻物解谜。冒险游戏 spanish: Time Trap - Objetos Ocultos Juegos en Español -'661050': +"661050": installDir: Quadrablaze launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Quadrablaze.exe type: default -'661070': +"661070": installDir: Perigee launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Perigee.exe type: none -'661080': {} -'661090': {} -'661100': +"661080": {} +"661090": {} +"661100": installDir: Abraxas Interactive PUSH launch: - config: oslist: windows executable: PUSH - Steam Edition.exe type: none -'661110': +"661110": installDir: Shattered God launch: - config: oslist: windows executable: Shattered God.exe type: default -'661120': +"661120": installDir: Mercury Cascade into Madness launch: - config: oslist: windows executable: Game.exe type: none -'661130': +"661130": installDir: ChilloutVR launch: - executable: ChilloutVR.exe type: default - - arguments: '-vr' + - arguments: "-vr" executable: ChilloutVR.exe type: vr -'661180': +"661180": installDir: Simplefield launch: - config: oslist: windows executable: Simplefield.exe type: default -'661190': +"661190": installDir: UNDEFINED launch: - executable: UNDEFINED.exe type: default -'661200': +"661200": installDir: Cymatically Muffed launch: - config: @@ -308161,46 +303389,46 @@ oslist: macos executable: Cymatically Muffed type: default -'661220': +"661220": installDir: Cutthroat Gunboat launch: - executable: Cutthroat Gunboat.exe type: default -'661230': +"661230": installDir: Progress Bar Simulator launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: progressbarsimulator.exe type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: progressbarsimulator.x86_64 type: none - config: oslist: macos - executable: progressbarsimulator.app\\Contents\\MacOS\\progressbarsimulator + executable: "progressbarsimulator.app\\\\Contents\\\\MacOS\\\\progressbarsimulator" type: default -'661240': +"661240": installDir: Visitors Marine Invasion launch: - config: oslist: windows executable: VisitorsMarineInvasion.exe type: default -'661250': {} -'661260': +"661250": {} +"661260": installDir: Bad Thoughts launch: - executable: BadThoughts.exe type: none -'661270': +"661270": installDir: Valhall 2000 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Valhall 2000.exe type: default @@ -308208,50 +303436,50 @@ oslist: macos executable: Valhall 2000.app type: default - - arguments: '-jar valhall.jar' + - arguments: "-jar valhall.jar" config: - osarch: '64' + osarch: "64" oslist: linux - executable: jre\\bin\\java + executable: "jre\\\\bin\\\\java" type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: Valhall 2000.exe type: default - - arguments: '-jar valhall.jar' + - arguments: "-jar valhall.jar" config: - osarch: '32' + osarch: "32" oslist: linux - executable: jre\\bin\\java + executable: "jre\\\\bin\\\\java" type: default -'661280': +"661280": installDir: Dresden Files Cooperative Card Game launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: DFCO.exe type: default - config: - osarch: '64' + osarch: "64" oslist: macos executable: DFCO.app/Contents/MacOS/DFCO type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: DFCO type: default -'661290': +"661290": installDir: Arizona Derby launch: - - arguments: '-fullscreen' + - arguments: "-fullscreen" config: oslist: windows - executable: \\Arizona Derby\\Binaries\\Win64\\Arizona Derby.exe + executable: "\\\\Arizona Derby\\\\Binaries\\\\Win64\\\\Arizona Derby.exe" type: default -'661300': +"661300": installDir: Radical Spectrum Volume 2 launch: - config: @@ -308262,7 +303490,7 @@ oslist: macos executable: RadicalSpectrumII.app type: none -'661330': +"661330": installDir: Layers launch: - config: @@ -308277,14 +303505,14 @@ oslist: linux executable: Layers.x86_64 type: none -'661340': +"661340": installDir: TYRED launch: - config: oslist: windows executable: TYRED.exe type: default -'661360': +"661360": installDir: Glitchbuster launch: - config: @@ -308302,31 +303530,31 @@ description: Launch Glitchbuster executable: Glitchbuster.app type: default -'661370': {} -'661380': +"661370": {} +"661380": installDir: Orbit Defender launch: - config: oslist: windows executable: Orbit Defender.exe type: none -'661390': {} -'661410': +"661390": {} +"661410": installDir: The Unclogging An Unsanitary Saga launch: - config: oslist: windows executable: TheUnclogging.exe type: default -'661420': +"661420": installDir: Run For Coins launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: RunForCoins.exe type: default -'661430': +"661430": installDir: LineWay launch: - config: @@ -308337,22 +303565,22 @@ oslist: macos executable: LineWay.app type: default -'661440': +"661440": installDir: Prelude for a Dream launch: - config: oslist: windows executable: Game.exe type: none -'661450': +"661450": installDir: The Lighthouse launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: The_Lighthouse.exe type: default -'661460': +"661460": installDir: Thin Judgment launch: - config: @@ -308363,7 +303591,7 @@ oslist: linux executable: Thin Judgment.x86 type: default -'661470': +"661470": installDir: The Gateway Trilogy launch: - config: @@ -308374,7 +303602,7 @@ oslist: macos executable: gateway.app type: default -'661480': +"661480": installDir: UniOne launch: - config: @@ -308386,99 +303614,99 @@ executable: UniOne.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: unione.x86_64 type: default -'661490': +"661490": installDir: Insert Paper launch: - executable: InsertPaper.exe type: default -'661500': +"661500": installDir: Rekindling launch: - executable: Rekindling.exe type: default -'661510': +"661510": installDir: WolfMustDie launch: - config: oslist: windows executable: wmd.exe type: vr -'661520': +"661520": installDir: Archangel launch: - config: oslist: windows executable: Game.exe type: default -'661530': +"661530": installDir: Gold Rush In The Oort Cloud launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: 32 bit Windows executable: GRITOC.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows description: 64 bit Windows executable: GRITOC.exe type: default -'661550': +"661550": installDir: Space Geekz - The Crunchy Flakes Conspiracy launch: - config: oslist: windows executable: Space Geekz Launcher.exe type: default -'661560': +"661560": installDir: Audioship launch: - config: oslist: windows executable: Audioship.exe type: default -'661570': {} -'661590': {} -'661600': {} -'661610': +"661570": {} +"661590": {} +"661600": {} +"661610": installDir: Yama launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Yama.exe type: none -'661620': {} -'661650': +"661620": {} +"661650": installDir: Roll Out launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: RollOutLauncher.exe type: default -'661660': +"661660": installDir: Blood Ancestors launch: - - arguments: '-PFApp=6D6E -SaveToUserDir' + - arguments: "-PFApp=6D6E -SaveToUserDir" config: oslist: windows executable: BloodAncestors.exe type: default - - arguments: '-PFApp=234A -SaveToUserDir -spw=dev' + - arguments: "-PFApp=234A -SaveToUserDir -spw=dev" config: betakey: beta oslist: windows description: Launch Beta executable: BloodAncestors.exe type: default -'661670': +"661670": installDir: Renegade Grounds Episode 1 launch: - config: @@ -308493,7 +303721,7 @@ oslist: linux executable: nw type: none -'661680': +"661680": installDir: Growbot launch: - config: @@ -308505,35 +303733,35 @@ executable: Growbot.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Growbot.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Growbot.x86 type: default -'661690': +"661690": installDir: Primal Lands launch: - executable: nw.exe type: none -'661700': +"661700": installDir: kokoro trial versionⅡv2 launch: - config: oslist: windows executable: kokoro trialⅡ.exe type: default -'661730': - installDir: Dawn of H'btakh +"661730": + installDir: "Dawn of H'btakh" launch: - config: oslist: windows executable: dnb.exe type: default -'661740': +"661740": installDir: Morphite launch: - config: @@ -308545,30 +303773,30 @@ executable: Morphite.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Morphite.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Morphite.x86_64 type: default -'661750': {} -'661790': +"661750": {} +"661790": installDir: Witch Hunt launch: - config: oslist: windows executable: Witch_Hunt.exe type: none -'661800': {} -'661810': {} -'661820': +"661800": {} +"661810": {} +"661820": installDir: I.F.O launch: - config: - osarch: '64' + osarch: "64" oslist: macos executable: IFO.app type: default @@ -308576,7 +303804,7 @@ oslist: windows executable: IFO.exe type: default -'661830': +"661830": installDir: Lunarsea launch: - config: @@ -308585,25 +303813,25 @@ type: default - config: oslist: macos - executable: mac_content.app\\Contents\\MacOS\\mac_content + executable: "mac_content.app\\\\Contents\\\\MacOS\\\\mac_content" type: default -'661900': +"661900": installDir: Planetbound launch: - config: oslist: windows executable: PlanetBound.exe type: default -'661920': +"661920": installDir: Claybook launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Default executable: Claybook.exe type: none -'661940': +"661940": installDir: Regular Human Basketball launch: - config: @@ -308617,26 +303845,26 @@ executable: RegularHumanBasketball.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: RegularHumanBasketball.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: RegularHumanBasketball.x86_64 type: default -'661950': +"661950": installDir: FlyingRock Arena launch: - config: oslist: windows - ownsdlc: '1899699' + ownsdlc: "1899699" executable: FlyingRock Arena.exe type: default -'661960': +"661960": installDir: Dragon Lords 3D launch: - config: @@ -308647,22 +303875,22 @@ oslist: windows executable: dnl.exe type: default -'661970': +"661970": installDir: SPACE BATTLE Humanity launch: - config: oslist: windows executable: start.bat type: default -'661990': +"661990": installDir: ArcanaHeart3LMSS launch: - config: oslist: windows executable: AALib.exe type: default -'662130': {} -'662190': +"662130": {} +"662190": installDir: The Secret Order 6 Bloodline launch: - config: @@ -308671,13 +303899,13 @@ executable: SecretOrder6.exe type: none - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: SecretOrder6_i386 type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: SecretOrder6_amd64 @@ -308687,7 +303915,7 @@ description: Launch executable: mac_steam.app/Contents/MacOS/mac_steam type: none -'662200': +"662200": installDir: Swim Out launch: - config: @@ -308696,57 +303924,57 @@ type: default - config: oslist: macos - executable: Swim Out.app\\Contents\\MacOS\\Swim Out + executable: "Swim Out.app\\\\Contents\\\\MacOS\\\\Swim Out" type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: SwimOut.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: SwimOut.x86_64 type: default -'662210': +"662210": installDir: Metal as Phuk launch: - executable: Game.exe type: none -'662230': +"662230": installDir: Trendpoker 3D Community Edition launch: - config: oslist: windows executable: Trendpoker.exe type: default -'662240': +"662240": installDir: Epitasis launch: - config: oslist: windows description: Epitasis - executable: epitasis\\epitasis.exe + executable: "epitasis\\\\epitasis.exe" type: default - config: oslist: macos description: Epitasis - executable: Epitasis.app\\Contents\\MacOS\\DistantWorldsCode + executable: "Epitasis.app\\\\Contents\\\\MacOS\\\\DistantWorldsCode" type: default -'662260': +"662260": installDir: On Earth As It Is In Heaven - A Kinetic Novel launch: - config: oslist: macos - executable: On_Earth_as_it_is_in_Heaven.app\\Contents\\MacOS\\On_Earth_as_it_is_in_Heaven + executable: "On_Earth_as_it_is_in_Heaven.app\\\\Contents\\\\MacOS\\\\On_Earth_as_it_is_in_Heaven" type: default - config: oslist: windows executable: On_Earth_as_it_is_in_Heaven.exe type: default -'662270': {} -'662310': {} -'662320': +"662270": {} +"662310": {} +"662320": installDir: Metro Conflict - The Origin launch: - arguments: ent-rance?-nocheckscriptoutdate -gate_ip=gate.mcgategroup.com -localev=70 -P=ST1 @@ -308755,31 +303983,31 @@ description: MC 실행 + AWS executable: Binaries/Win32/MetroConflict.exe type: default - - arguments: 'ent-rance?-nocheckscriptoutdate -gate_ip=10.20.7.44:10306 -localev=70' + - arguments: "ent-rance?-nocheckscriptoutdate -gate_ip=10.20.7.44:10306 -localev=70" config: betakey: redduck-test oslist: windows description: MetroConflict + 내부 서버 executable: Binaries/Win32/MetroConflict.exe type: option1 -'662330': {} -'662340': {} -'662380': +"662330": {} +"662340": {} +"662380": installDir: Project X launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Project X.exe type: default -'662390': +"662390": installDir: Squish and the Corrupted Crystal launch: - config: oslist: windows executable: Squish.exe type: default -'662400': +"662400": installDir: Steampunk Action Battle Simulator launch: - config: @@ -308794,7 +304022,7 @@ oslist: linux executable: sabs.sh type: none -'662410': +"662410": installDir: Circuit Dude launch: - config: @@ -308805,22 +304033,22 @@ oslist: macos executable: CircuitDude.app type: default -'662440': {} -'662470': +"662440": {} +"662470": installDir: SoundLites launch: - config: oslist: windows executable: SoundLites.exe type: vr -'662500': +"662500": installDir: Vault Resort launch: - config: oslist: windows executable: ChateauEscape.exe type: vr -'662540': +"662540": installDir: Haque launch: - config: @@ -308829,13 +304057,13 @@ type: default - config: oslist: linux - executable: Haque1-0-0-0\\runner + executable: "Haque1-0-0-0\\\\runner" type: default - config: oslist: windows executable: Haque1-0-0-0.exe type: default -'662550': +"662550": installDir: Beraltors launch: - config: @@ -308844,13 +304072,13 @@ type: default - config: oslist: macos - executable: Contents\\MacOS\\Beraltors + executable: "Contents\\\\MacOS\\\\Beraltors" type: default -'662560': {} -'662570': {} -'662590': {} -'662600': {} -'662610': +"662560": {} +"662570": {} +"662590": {} +"662600": {} +"662610": installDir: SpaceMerc launch: - config: @@ -308861,7 +304089,7 @@ oslist: linux executable: SpaceMerc.sh type: default -'662620': +"662620": installDir: Speedway Challenge League launch: - config: @@ -308874,47 +304102,47 @@ description: Run game without dedicated cursor executable: SpeedwayChallengeLeague.exe type: default -'662640': {} -'662660': +"662640": {} +"662660": installDir: Dirty Fighter 2 launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: Dirty Fighter 2.exe type: none -'662680': +"662680": installDir: Beetle Uprising launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Beetles.exe type: none -'662690': +"662690": installDir: Fos launch: - config: oslist: windows executable: Fos.exe type: default -'662700': +"662700": installDir: Chop and Drop VR launch: - config: oslist: windows executable: ChopandDrop_StandAlone.exe type: vr -'662730': {} -'662780': +"662730": {} +"662780": installDir: Crystal Reign launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: CrystalReign.exe type: vr -'662830': +"662830": installDir: Bombix launch: - config: @@ -308923,9 +304151,9 @@ type: none - config: oslist: macos - executable: bombix.app\\Contents\\MacOS\\bombix + executable: "bombix.app\\\\Contents\\\\MacOS\\\\bombix" type: none -'662840': +"662840": installDir: Abo Khashem launch: - config: @@ -308934,16 +304162,16 @@ type: default - config: oslist: macos - executable: AboKhashem.app\\Contents\\MacOS\\AboKhashem + executable: "AboKhashem.app\\\\Contents\\\\MacOS\\\\AboKhashem" type: default -'662870': +"662870": installDir: The Cerberus Project launch: - config: oslist: windows executable: The_Cerberus_Project.exe type: default -'662910': +"662910": installDir: Cash Crop launch: - config: @@ -308954,160 +304182,160 @@ oslist: windows executable: Cash Crop.exe type: default -'662920': +"662920": installDir: WESTSLINGERS launch: - config: oslist: windows executable: WESTSLINGERS.exe type: default -'662930': +"662930": installDir: Dominari launch: - config: oslist: windows executable: dominari.exe type: default -'662940': +"662940": installDir: Never Not Shooting launch: - config: oslist: windows executable: Never Not Shooting Steam.exe type: default -'662950': +"662950": installDir: CloudCity VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: CloudCity VR.exe type: vr -'662960': +"662960": installDir: MysteriaOccultShadows launch: - config: betakey: Mysteria~Occult Shadows~ of test - osarch: '64' + osarch: "64" oslist: windows executable: Mystria.exe type: default nameLocalized: schinese: 兽娘秘境:异象残影(Mysteria~Occult Shadows~) tchinese: 獸娘秘境:異象殘影(Mysteria~Occult Shadows~) -'662980': {} -'662990': +"662980": {} +"662990": installDir: Eddy Violet launch: - config: oslist: windows executable: EddyViolet.exe type: default -'663020': +"663020": installDir: Cutlass launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: Cutlass\\Binaries\\Win64\\Cutlass-Win64-Shipping.exe + executable: "Cutlass\\\\Binaries\\\\Win64\\\\Cutlass-Win64-Shipping.exe" type: vr -'663060': +"663060": installDir: Cycle launch: - config: oslist: windows executable: Final.exe type: default -'663080': +"663080": installDir: RectRacer launch: - config: oslist: windows executable: RectRacer.exe type: default -'663100': +"663100": installDir: Thrust & Shoot - Flight School launch: - config: oslist: windows executable: Delta4.exe type: default -'663110': +"663110": installDir: Sunrise launch: - config: oslist: windows executable: Sunrise.exe type: default -'663120': +"663120": installDir: The Rosebud Condominium launch: - config: oslist: windows executable: The Rosebud Condominium.exe type: default -'663130': +"663130": installDir: Game Tengoku launch: - executable: Game Tengoku CruisinMix.exe type: default -'663140': - installDir: Robby's Adventure +"663140": + installDir: "Robby's Adventure" launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: WindowsNoEditor/RobbysAdventure.exe type: none -'663160': +"663160": installDir: Pocket Universe Create Your Community launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: PocketUniverse.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: PocketUniverse.exe type: default - config: oslist: macos - executable: PocketUniverse64Bit.app\\Contents\\MacOS\\PocketUniverse64 + executable: "PocketUniverse64Bit.app\\\\Contents\\\\MacOS\\\\PocketUniverse64" type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: PocketUniverse.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: PocketUniverse.x86 type: default -'663170': +"663170": installDir: Prime Shift launch: - config: oslist: windows executable: prime_shift.exe type: default -'663190': +"663190": installDir: Dream Coaster VR launch: - config: oslist: windows executable: DreamCoaster.exe type: vr -'663200': +"663200": installDir: Rift Coaster HD Remastered VR launch: - config: oslist: windows executable: RiftCoasterHD.exe type: vr -'663210': +"663210": installDir: 12 Labours of Hercules VII Fleecing the Fleece launch: - config: @@ -309118,38 +304346,38 @@ oslist: macos executable: 12 Labours of Hercules VII.app type: none -'663220': +"663220": installDir: BottleShooter launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: BottleShooter.exe type: openvroverlay -'663240': +"663240": installDir: All You Can Eat launch: - config: oslist: windows executable: allyoucaneat.exe type: default -'663250': +"663250": installDir: Professional Farmer American Dream launch: - config: oslist: windows executable: FarmingAmerica.exe type: none -'663260': {} -'663290': +"663260": {} +"663290": installDir: Dead by Death launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: deadbydeathfinal64.exe type: default -'663300': +"663300": installDir: Enlightenment launch: - config: @@ -309159,9 +304387,9 @@ nameLocalized: schinese: 启蒙 tchinese: 啓蒙 -'663340': {} -'663350': {} -'663370': +"663340": {} +"663350": {} +"663370": installDir: Zwuggels - Beach Holidays launch: - config: @@ -309172,7 +304400,7 @@ oslist: macos executable: zwuggels.app/Contents/MacOS/zwuggels type: none -'663380': +"663380": installDir: Tales from Candlekeep launch: - config: @@ -309195,7 +304423,7 @@ description: WOTC Beta Review executable: DnD-Tomb_of_Annihilation.app type: default -'663390': +"663390": installDir: Rento Fortune launch: - config: @@ -309208,49 +304436,49 @@ type: default - config: oslist: windows - ownsdlc: '1074660' + ownsdlc: "1074660" executable: MapEditorDLC/MapEditor.exe type: editor - config: oslist: linux executable: Rento.x86_64 type: default -'663430': +"663430": installDir: This is not RPG launch: - config: oslist: windows executable: Game.exe type: none -'663480': +"663480": installDir: Fungoids - Steam version launch: - config: oslist: windows executable: fungoids.exe type: default -'663530': - installDir: Dragon's Lunch +"663530": + installDir: "Dragon's Lunch" launch: - config: oslist: windows executable: DragonsLunch.exe type: none -'663540': +"663540": installDir: MurderGame launch: - config: oslist: windows executable: gamefiles/murder_game.exe type: default -'663590': +"663590": installDir: Foxfolk launch: - config: oslist: windows executable: Foxfolk.exe type: default -'663600': +"663600": installDir: Genie launch: - config: @@ -309265,7 +304493,7 @@ oslist: macos executable: Genie.app type: none -'663670': +"663670": installDir: Killer Queen Black launch: - config: @@ -309276,56 +304504,55 @@ oslist: windows executable: Killer Queen Black.exe type: default -'663690': +"663690": installDir: Rival Rampage launch: - config: oslist: windows executable: RivalRampage.exe type: default -'663730': {} -'663750': +"663730": {} +"663750": installDir: MineDrill launch: - config: oslist: windows executable: MineDrill.exe type: default -'663830': +"663830": installDir: PooPee Wars launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: PooPee_Wars.exe type: default -'663920': +"663920": installDir: Died Of Fear - launch: [] -'663940': {} -'663970': {} -'664000': +"663940": {} +"663970": {} +"664000": installDir: HammerHelm launch: - config: oslist: windows executable: HammerHelm.exe type: none -'664030': +"664030": installDir: Time_To_Walk_Alone launch: - config: oslist: windows executable: AITD.exe type: default -'664040': +"664040": installDir: Staff Wars Wizard Rumble launch: - config: oslist: windows executable: StaffWars.exe type: default -'664050': +"664050": installDir: StopTime Drive launch: - config: @@ -309336,11 +304563,11 @@ oslist: linux executable: run.sh type: default -'664060': +"664060": installDir: Willful launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Willful.exe type: default @@ -309349,59 +304576,59 @@ executable: willful.app type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: Willful.exe type: default -'664080': +"664080": installDir: Turn your Destiny launch: - config: oslist: windows executable: TYD.exe type: none -'664090': +"664090": installDir: Eternity Warriors™ VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: EWVR.exe type: vr nameLocalized: schinese: 永恒战士 VR tchinese: 永恆戰士 VR -'664110': +"664110": installDir: Void Wisp launch: - config: oslist: windows executable: Void Wisp.exe type: default -'664120': +"664120": installDir: Wildlife Park Gold Remastered launch: - - arguments: '-console' + - arguments: "-console" config: oslist: windows description: windows-launch executable: WildlifeParkGold-STEAM-Windows.exe type: none -'664140': +"664140": installDir: IsoBoom launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: isoBoom.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: isoBoom.exe type: default -'664150': {} -'664160': +"664150": {} +"664160": installDir: Shnip launch: - config: @@ -309410,13 +304637,13 @@ type: default - config: oslist: windows - executable: windows_content\\Shnip.exe + executable: "windows_content\\\\Shnip.exe" type: default - config: oslist: linux executable: linux_content/Shnip.x86_64 type: default -'664180': +"664180": installDir: Draw Puzzle launch: - config: @@ -309425,9 +304652,9 @@ type: default - config: oslist: macos - executable: pixeldraw.app\\Contents\\MacOS\\pixeldraw + executable: "pixeldraw.app\\\\Contents\\\\MacOS\\\\pixeldraw" type: default -'664190': +"664190": installDir: Slide!! launch: - config: @@ -309442,27 +304669,27 @@ oslist: linux executable: Slide!!.x86 type: default -'664210': +"664210": installDir: Boxed In launch: - - arguments: '-vrmode None' + - arguments: "-vrmode None" config: oslist: windows description: Play without VR executable: Boxed In.exe type: default - - arguments: '-VR -vrmode OpenVR' + - arguments: "-VR -vrmode OpenVR" config: oslist: windows description: Boxed In (VR) executable: Boxed In.exe type: vr -'664220': {} -'664240': +"664220": {} +"664240": installDir: RetroWar launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: RetroWar.exe type: default @@ -309470,28 +304697,28 @@ oslist: macos executable: RetroWar.app type: default - - arguments: '-parsec' + - arguments: "-parsec" config: betakey: beta - osarch: '64' + osarch: "64" oslist: windows description: Parsec online mode executable: RetroWar.exe type: option1 - config: - osarch: '64' + osarch: "64" oslist: linux executable: RetroWar type: default -'664250': +"664250": installDir: Galashow of Horses launch: - - arguments: '-console' + - arguments: "-console" config: oslist: windows executable: HorseShow-Steam.exe type: none -'664290': +"664290": installDir: The Mexican Dream launch: - config: @@ -309506,7 +304733,7 @@ oslist: linux executable: The Mexican Dream Linux.x86 type: default -'664320': +"664320": installDir: Holy Potatoes! What the Hell! launch: - config: @@ -309518,65 +304745,65 @@ executable: HPWTH.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: HPWTH.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: HPWTH.x86 type: default -'664350': +"664350": installDir: German Fortress 3D launch: - config: oslist: windows executable: German Fortress 3D.exe type: default -'664380': {} -'664420': +"664380": {} +"664420": installDir: Girls and Quiz launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" executable: nw.exe type: none -'664430': +"664430": installDir: WWE 2K18 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: WWE2K18_x64.exe type: default -'664440': +"664440": installDir: Cognizant Protocol launch: - config: oslist: windows executable: Cognizant Protocol.exe type: default -'664450': +"664450": installDir: Manifest 99 launch: - config: oslist: windows executable: Manifest_99.exe type: vr -'664460': +"664460": installDir: Ultimate Summer launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Ultimate Summer.exe type: default -'664490': {} -'664510': +"664490": {} +"664510": installDir: Infernal Racket launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Infernal Racket for Windows executable: nw.exe @@ -309585,29 +304812,29 @@ oslist: macos executable: infernalracket.app type: default -'664530': +"664530": installDir: Legends of Iskaria launch: - config: oslist: windows executable: Game.exe type: default -'664560': +"664560": installDir: DreamTank launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: DreamTank.exe type: vr -'664570': +"664570": installDir: My Personal Angel launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" executable: nw.exe type: none -'664580': {} -'664590': +"664580": {} +"664590": installDir: Airis World launch: - config: @@ -309618,21 +304845,21 @@ oslist: macos executable: airisworld.app type: default -'664600': +"664600": installDir: Home launch: - config: oslist: windows executable: Home.exe type: default -'664610': +"664610": installDir: Gelu Content launch: - config: oslist: windows executable: nw.exe type: default -'664620': +"664620": installDir: Pink Rage Otome launch: - config: @@ -309647,28 +304874,28 @@ oslist: linux executable: PinkRage.sh type: default -'664630': +"664630": installDir: Tupã launch: - executable: TupaWin32/Tupa.exe type: default -'664640': {} -'664650': +"664640": {} +"664650": installDir: Canadian Football 2017 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: CFB2017.exe type: default - - arguments: '-force-d3d9' + - arguments: "-force-d3d9" config: - osarch: '64' + osarch: "64" oslist: windows description: Start game in DirectX 9 mode. executable: CFB2017.exe type: none -'664660': +"664660": installDir: Against the Gradient launch: - config: @@ -309680,58 +304907,58 @@ executable: Against the Gradient.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Against the Gradient.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Against the Gradient.x86_64 type: default - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" config: oslist: windows description: configure resolution options executable: Against the Gradient.exe type: config - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" config: oslist: macos description: configure resolution options executable: Against the Gradient.app type: config - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" config: - osarch: '32' + osarch: "32" oslist: linux description: configure resolution options executable: Against the Gradient.x86 type: config - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" config: - osarch: '64' + osarch: "64" oslist: linux description: configure resolution options executable: Against the Gradient.x86_64 type: config -'664720': +"664720": installDir: VRange launch: - - arguments: '-openvr' + - arguments: "-openvr" config: - osarch: '64' + osarch: "64" oslist: windows executable: VRangeV1.exe type: vr -'664750': +"664750": installDir: Wrongworld launch: - config: oslist: windows - executable: WindowsNoEditor\\Wrongworld\\Binaries\\Win32\\Wrongworld.exe + executable: "WindowsNoEditor\\\\Wrongworld\\\\Binaries\\\\Win32\\\\Wrongworld.exe" type: default -'664780': +"664780": installDir: Alter Ego launch: - config: @@ -309746,12 +304973,12 @@ oslist: linux executable: AlterEgo type: none -'664820': +"664820": installDir: Ether Awakening launch: - - executable: Ether Awakening\\Game.exe + - executable: "Ether Awakening\\\\Game.exe" type: default -'664830': +"664830": installDir: Zombotron launch: - config: @@ -309766,12 +304993,12 @@ oslist: linux executable: Zombotron.x86_64 type: default -'664840': {} -'664850': +"664840": {} +"664850": installDir: 8-bit Adventure Anthology Volume I launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: game-x86_64.exe type: default @@ -309780,58 +305007,58 @@ executable: game.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: game.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: game.x86_64 type: none - config: - osarch: '32' + osarch: "32" oslist: windows executable: game.exe type: none -'664870': +"664870": installDir: Forgotten Faces launch: - config: oslist: windows executable: Forgotten Faces.exe type: none -'664890': +"664890": installDir: Undoing launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Undoing.exe type: none -'665030': +"665030": installDir: ZeransFolly launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: Zeran's Folly.exe + executable: "Zeran's Folly.exe" type: default -'665060': +"665060": installDir: Triangulate launch: - config: oslist: windows executable: Triangulate.exe type: none -'665080': +"665080": installDir: Stunt Corgi VR launch: - config: oslist: windows executable: StuntCorgi.exe type: vr -'665090': +"665090": installDir: The Initial launch: - config: @@ -309842,14 +305069,14 @@ oslist: macos executable: The Initial.app type: none -'665110': +"665110": installDir: TheWalkerKiller launch: - config: oslist: windows executable: TheWalkerKiller.exe type: vr -'665120': +"665120": installDir: JetmanGo launch: - arguments: Sanctuary_Start?listen -FeatureLevelES31 @@ -309857,7 +305084,7 @@ oslist: windows executable: JetmanGo.exe type: none -'665140': +"665140": installDir: Midnight at the Red Light An Investigation launch: - config: @@ -309872,35 +305099,35 @@ oslist: linux executable: Midnight at the Red Light An Investigation.x86 type: default -'665160': +"665160": installDir: Puzzle Mania launch: - config: oslist: windows executable: Puzzle Mania.exe type: default -'665180': +"665180": installDir: Dark Elf launch: - executable: Game.exe type: none -'665210': +"665210": installDir: HoopShotVR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: HoopShotVR.exe type: vr -'665230': {} -'665240': +"665230": {} +"665240": installDir: Fateholders of Tetsoidea launch: - config: oslist: windows executable: Game.exe type: default -'665270': +"665270": installDir: Barrage Musical A Fantasy of Tempest launch: - config: @@ -309912,7 +305139,7 @@ description: Config / 设置程序 executable: Config.exe type: config -'665310': +"665310": installDir: Tank Battle Pacific launch: - config: @@ -309923,7 +305150,7 @@ oslist: macos executable: TankBattlePacific.app type: none -'665330': +"665330": installDir: Wrestling Revolution 3D launch: - config: @@ -309935,23 +305162,23 @@ oslist: macos executable: WR3D.app type: default -'665340': +"665340": installDir: Ancient Amuletor VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: JanusGame.exe type: vr -'665350': +"665350": installDir: Mayhem Above launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Mayhem Above.exe type: default -'665360': +"665360": installDir: Comedy Night launch: - config: @@ -309964,27 +305191,27 @@ type: default - config: oslist: macos - executable: Contents\\MacOS\\Comedy Night + executable: "Contents\\\\MacOS\\\\Comedy Night" type: default -'665370': +"665370": installDir: Mutilate-a-Doll 2 launch: - config: oslist: windows executable: MaD2.exe type: default -'665390': {} -'665400': {} -'665410': +"665390": {} +"665400": {} +"665410": installDir: SQUARE BOX launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SQUAREBOX.exe type: default -'665430': {} -'665440': +"665430": {} +"665440": installDir: Civil War Gettysburg launch: - config: @@ -309995,7 +305222,7 @@ oslist: macos executable: Gettysburg.app type: none -'665490': +"665490": installDir: TheMonsterInside launch: - config: @@ -310004,18 +305231,18 @@ type: default - config: oslist: macos - executable: TheMonsterInside.app\\Contents\\MacOS\\TheMonsterInside + executable: "TheMonsterInside.app\\\\Contents\\\\MacOS\\\\TheMonsterInside" type: default - config: oslist: linux executable: The Monster Inside.x86 type: default -'665510': +"665510": installDir: Vengeance Lost Love launch: - executable: Vengeance.exe type: default -'665550': +"665550": installDir: Death Runner launch: - arguments: UnityPlayer.dll @@ -310023,7 +305250,7 @@ oslist: windows executable: Death Runner.exe type: default -'665590': +"665590": installDir: DOG GONE GOLFING launch: - config: @@ -310038,21 +305265,21 @@ oslist: linux executable: runner type: default -'665600': {} -'665620': +"665600": {} +"665620": installDir: Zombie Hobby VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Zombie.exe type: vr - config: - osarch: '64' + osarch: "64" oslist: windows executable: Zombie.exe type: othervr -'665630': +"665630": installDir: MarbleMasters_ThePit launch: - config: @@ -310061,13 +305288,13 @@ type: default - config: oslist: macos - executable: MarbleMasters_ThePit.app\\Contents\\MacOS\\MarbleMasters_ThePit + executable: "MarbleMasters_ThePit.app\\\\Contents\\\\MacOS\\\\MarbleMasters_ThePit" type: default - config: oslist: linux executable: MarbleMasters_ThePit.x86 type: default -'665640': +"665640": installDir: SpaceWorms launch: - config: @@ -310075,7 +305302,7 @@ description: SpaceWorms for Windows executable: SpaceWormsDX.exe type: default -'665650': +"665650": installDir: 2V Hoverbike launch: - config: @@ -310086,29 +305313,29 @@ oslist: macos executable: 2VHoverbike.app type: none -'665670': +"665670": installDir: content launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: dedo3.exe type: none -'665730': +"665730": installDir: Fight Sparring VR launch: - config: oslist: windows executable: fightsparringvr.exe type: vr -'665740': +"665740": installDir: Book Of Potentia 2 launch: - config: oslist: windows executable: BOP2.exe type: none -'665780': +"665780": installDir: Juke launch: - config: @@ -310117,9 +305344,9 @@ type: default - config: oslist: macos - executable: juke.app\\Contents\\MacOS\\juke + executable: "juke.app\\\\Contents\\\\MacOS\\\\juke" type: default -'665790': +"665790": installDir: Dragon Drop launch: - config: @@ -310130,26 +305357,26 @@ oslist: macos executable: DragonDrop.app type: none -'665840': +"665840": installDir: To the sea launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Courier.exe type: default nameLocalized: schinese: 去海边:信使 tchinese: 去海邊:信使 -'665880': +"665880": installDir: Survivor VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Survivor VR.exe type: vr -'665890': +"665890": installDir: Jay Fighter Remastered launch: - config: @@ -310157,7 +305384,7 @@ executable: JFR.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: JFR.x86_64 type: default @@ -310165,46 +305392,46 @@ oslist: macos executable: JFR.app type: default -'665900': +"665900": installDir: StarRocket launch: - config: oslist: windows executable: StarRocket.exe type: default -'665920': +"665920": installDir: SHOWMAKER launch: - config: oslist: windows executable: ShowMaker.exe type: default -'665930': - installDir: Rock 'N Roll +"665930": + installDir: "Rock 'N Roll" launch: - config: betakey: RnR Test Build oslist: windows executable: Rock N Roll.exe type: default -'665950': +"665950": installDir: Creepy Races launch: - arguments: FULLSCREEN config: - osarch: '64' + osarch: "64" oslist: windows executable: CreepyRaces.exe type: none -'665960': +"665960": installDir: Lobster Empire launch: - config: oslist: windows executable: Lobster Empire.exe type: default -'665980': {} -'666010': +"665980": {} +"666010": installDir: Refract launch: - config: @@ -310213,54 +305440,50 @@ type: none - config: oslist: macos - executable: Refract.app\\Contents\\MacOS\\Refract + executable: "Refract.app\\\\Contents\\\\MacOS\\\\Refract" type: none -'666020': +"666020": installDir: Shark Dating Simulator XL launch: - config: oslist: windows description: Play Shark Dating Simulator XL+ - description_loc: - english: Play Shark Dating Simulator XL+ executable: sdsxl-plus.exe - config: oslist: windows description: Play the original game - description_loc: - english: Play the original game executable: original/sharkxl.exe -'666040': +"666040": installDir: Underdone launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows executable: nw.exe type: none -'666050': +"666050": installDir: RescueTeam7 launch: - config: oslist: windows - executable: RescueTeam7 Collector's Edition.exe + executable: "RescueTeam7 Collector's Edition.exe" type: default -'666060': +"666060": installDir: Derelict Fleet launch: - config: oslist: windows executable: Derelict Fleet.exe type: none -'666070': {} -'666080': +"666070": {} +"666080": installDir: 伝創記IV ~if~ launch: - config: oslist: windows executable: sgb_rpgplayer.exe type: default -'666090': +"666090": installDir: Bad Government launch: - config: @@ -310275,14 +305498,14 @@ oslist: macos executable: Contents/MacOS/bg.fat.app type: none -'666100': +"666100": installDir: Shooty Fruity launch: - config: oslist: windows executable: Fruit.exe type: vr -'666110': +"666110": installDir: Break The Cookie launch: - config: @@ -310297,7 +305520,7 @@ oslist: linux executable: Cookie.x86_64 type: none -'666120': +"666120": installDir: Dawn of the killer zombies launch: - config: @@ -310308,11 +305531,11 @@ oslist: macos executable: Dawn of the killer zombies.app type: none -'666140': +"666140": installDir: My Time At Portia launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Portia.exe type: default @@ -310327,19 +305550,17 @@ type: none nameLocalized: schinese: 波西亚时光 -'666150': +"666150": installDir: Prehistoric Kingdom launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch - description_loc: - english: Launch executable: Prehistoric Kingdom.exe type: default -'666160': {} -'666220': +"666160": {} +"666220": installDir: CS2D launch: - config: @@ -310352,30 +305573,30 @@ description: Play CS2D executable: CS2D type: default -'666240': {} -'666250': +"666240": {} +"666250": installDir: Equalizer_Game launch: - config: oslist: windows executable: Equalizer.exe type: default -'666260': +"666260": installDir: Formless Adventure launch: - config: oslist: windows executable: Formless_Adventure.exe type: none -'666270': {} -'666290': +"666270": {} +"666290": installDir: Virus Z launch: - config: oslist: windows executable: VirusZ.exe type: default -'666310': +"666310": installDir: Space of Darkness launch: - config: @@ -310383,7 +305604,7 @@ description: launch executable: Space of Darkness.exe type: none -'666320': +"666320": installDir: Watergate Xtreme launch: - config: @@ -310394,27 +305615,27 @@ oslist: macos executable: Watergate Xtreme.app/Contents/MacOS/Watergate Xtreme type: default -'666330': +"666330": installDir: Inertia launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Inertia.exe type: default -'666340': +"666340": installDir: Inescapable VR Underground launch: - config: oslist: windows executable: InescapableVR_Underground.exe type: vr -'666560': +"666560": installDir: NoMansLand launch: - executable: NoMansLandBeta.exe type: default -'666570': +"666570": installDir: Infectonator-3-Apocalypse launch: - config: @@ -310425,7 +305646,7 @@ oslist: macos executable: Infectonator3.app type: none -'666590': +"666590": installDir: Jetball launch: - config: @@ -310440,12 +305661,12 @@ oslist: macos executable: Jetball.app type: default -'666600': +"666600": installDir: Zombie Town launch: - executable: ApocTown.exe type: none -'666610': +"666610": installDir: Endless ATC launch: - config: @@ -310456,36 +305677,36 @@ oslist: windows executable: Manual.pdf type: manual -'666620': +"666620": installDir: Behind These Eyes launch: - config: - osarch: '64' + osarch: "64" oslist: macos - executable: MacNoEditor\\Behind These Eyes.app + executable: "MacNoEditor\\\\Behind These Eyes.app" type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: BehindTheseEyesPack.exe type: default -'666630': +"666630": installDir: The Captives launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Captives.exe type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: Captives.x86_64 -'666640': +"666640": installDir: Empire - Wargame of new Century launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Empire.exe type: default @@ -310494,80 +305715,80 @@ description: 32 bit client executable: Empire32.exe type: default -'666660': +"666660": installDir: Castles launch: - config: oslist: windows executable: Launch Castles.bat type: default - - arguments: '-conf \"config/dosboxCastles1.conf\" -conf \"config/dosbox_menu.conf\" -noconsole' + - arguments: "-conf \\\"config/dosboxCastles1.conf\\\" -conf \\\"config/dosbox_menu.conf\\\" -noconsole" config: oslist: macos executable: DOSBox/dosbox.app/Contents/MacOS/DOSBox type: default - - arguments: '-conf \"config/dosboxCastles1.conf\" -conf \"config/dosbox_menu.conf\" -noconsole' + - arguments: "-conf \\\"config/dosboxCastles1.conf\\\" -conf \\\"config/dosbox_menu.conf\\\" -noconsole" config: oslist: linux executable: dosbox/dosbox type: default -'666680': {} -'666690': {} -'666730': +"666680": {} +"666690": {} +"666730": installDir: This Merchant Life launch: - config: oslist: windows executable: Merchant.exe type: none -'666760': {} -'666780': +"666760": {} +"666780": installDir: 4th of July VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Fireworks_VR.exe type: vr -'666790': +"666790": installDir: Knossos launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Knossos.exe type: default -'666800': +"666800": installDir: Solitaire - Cat Pirate Portrait launch: - config: oslist: windows executable: Solitaire - Cat Pirate Portrait.exe type: default -'666810': +"666810": installDir: Luna launch: - config: - osarch: '64' + osarch: "64" oslist: macos executable: luna-osx.app type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: luna-windows64.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: luna-windows32.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: luna-linux.x86_64 type: default -'666820': +"666820": installDir: Skirmish Line launch: - config: @@ -310581,24 +305802,24 @@ executable: Skirmish Line Mac.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch Skirmish Line executable: Skirmish Line.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Skirmish Line.x86_64 type: default -'666850': +"666850": installDir: Beyond the Horizon launch: - config: oslist: windows - executable: windows_content\\BeyondTheHorizon.exe + executable: "windows_content\\\\BeyondTheHorizon.exe" type: vr -'666860': +"666860": installDir: Bit Heroes launch: - config: @@ -310609,7 +305830,7 @@ oslist: macos executable: Bit Heroes.app/Contents/MacOS/Bit Heroes type: none -'666870': +"666870": installDir: PerfectCrime launch: - config: @@ -310625,54 +305846,54 @@ japanese: 完全犯罪 schinese: 凶手不是我 Perfect Crime tchinese: 兇手不是我 Perfect Crime -'666910': +"666910": installDir: Malfunction launch: - config: oslist: windows executable: Malfunction.exe type: default -'666930': +"666930": installDir: Luxocraft launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: Luxocraft.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: Luxocraft.exe type: default -'666940': +"666940": installDir: Welcome Back To 2007 launch: - executable: WBT2007.exe type: none -'666960': - installDir: Cowboy's Adventure +"666960": + installDir: "Cowboy's Adventure" launch: - config: oslist: windows - executable: Cowboy's Adventure.exe + executable: "Cowboy's Adventure.exe" type: default -'667000': +"667000": installDir: Casus Belli Battle Of Annihilation launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: CasusBelli.exe type: default -'667010': +"667010": installDir: Dracula Vampires vs. Zombies launch: - config: oslist: windows executable: Dracula.exe type: vr -'667030': +"667030": installDir: Archimedes launch: - config: @@ -310683,7 +305904,7 @@ oslist: macos executable: ArchimedesEureka.app type: none -'667040': +"667040": installDir: Alicia Quatermain and the Stone of Fate launch: - config: @@ -310694,29 +305915,29 @@ oslist: macos executable: AliciaQuatermain2_CE.app type: none -'667050': +"667050": installDir: SojournVR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SojournVR.exe type: vr -'667060': +"667060": installDir: No Escape launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: NoEscape.exe type: none -'667070': {} -'667120': +"667070": {} +"667120": installDir: iTowngameplay Universe launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: - osarch: '64' + osarch: "64" oslist: windows description: iTowngameplay Universe executable: Universe.exe @@ -310726,10 +305947,10 @@ description: iTowngameplay DIGITALIZE executable: game.exe type: option1 -'667130': +"667130": installDir: Clumsy Fred launch: - - arguments: '-screen-1' + - arguments: "-screen-1" config: oslist: windows executable: ClumsyFred.exe @@ -310742,14 +305963,14 @@ oslist: linux executable: ClumsyFred.x86_64 type: default -'667160': +"667160": installDir: Sphere Frustration launch: - config: oslist: windows executable: Sphere Frustration.exe type: default -'667170': +"667170": installDir: UndeadSouls launch: - config: @@ -310762,8 +305983,8 @@ executable: UndeadSouls.x86 type: default workingdir: UndeadSouls_Data -'667210': {} -'667220': +"667210": {} +"667220": installDir: Ayo A Rain Tale launch: - config: @@ -310771,53 +305992,53 @@ executable: Ayo.exe type: default - config: - osarch: '64' + osarch: "64" oslist: macos executable: Ayo.app type: default -'667240': +"667240": installDir: Vintage Hero launch: - config: oslist: windows executable: VintageHero.exe type: none -'667270': +"667270": installDir: The Miserable Crimson Hooded Girl launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows executable: Game.exe type: default -'667300': +"667300": installDir: aMAZE 3D launch: - config: oslist: windows executable: aMAZE 3D.exe type: default -'667310': +"667310": installDir: Animal Herding launch: - config: oslist: windows executable: AnimalHerding.exe type: default -'667340': +"667340": installDir: Anxiety launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: nw.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: nw.exe type: default -'667360': +"667360": installDir: Hooligan Vasja Christmas launch: - config: @@ -310825,58 +306046,58 @@ description: Start game executable: vasja-christmas.exe type: default -'667400': +"667400": installDir: Mazeglaser launch: - config: oslist: windows executable: mazeglaser.exe type: default -'667410': +"667410": installDir: The Nose launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: The Nose.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: The Nose.exe type: default - config: oslist: macos - executable: Contents\\MacOS\\The Nose + executable: "Contents\\\\MacOS\\\\The Nose" type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: The Nose.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: The Nose.x86 type: default -'667420': +"667420": installDir: Redium launch: - config: oslist: windows executable: nw.exe type: default -'667430': {} -'667440': {} -'667450': +"667430": {} +"667440": {} +"667450": installDir: Fire Fighter launch: - config: oslist: windows executable: Fire Fighter.exe type: default -'667460': {} -'667510': +"667460": {} +"667510": installDir: The Elmian Warrior launch: - config: @@ -310893,16 +306114,16 @@ betakey: beta executable: The Elmian Warrior.exe type: default -'667520': +"667520": installDir: Flight Unlimited 2K18 launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: Flight Unlimited 2K18.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: Flight Unlimited 2K18.exe type: default @@ -310911,39 +306132,39 @@ executable: Flight Unlimited 2K18.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Flight Unlimited 2K18.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Flight Unlimited 2K18.x86_64 type: default -'667530': +"667530": installDir: Drunken Wrestlers 2 launch: - - arguments: '-batchmode' + - arguments: "-batchmode" config: oslist: windows - executable: DW2_Data\\Managed\\DW2Launcher\\DW2Launcher.exe + executable: "DW2_Data\\\\Managed\\\\DW2Launcher\\\\DW2Launcher.exe" type: default - config: betakey: z_2016_04 oslist: windows executable: DW2.exe type: default -'667550': +"667550": installDir: PION launch: - executable: pion.exe type: none -'667580': +"667580": installDir: FightingForFood launch: - config: oslist: windows - description: ' Main release v1.0 Jan 2018' + description: " Main release v1.0 Jan 2018" executable: FFF.exe type: default - config: @@ -310951,14 +306172,14 @@ description: Main release for Mac 2018 executable: FightingForFoodMac.app type: default -'667590': +"667590": installDir: Fjord battle racing launch: - config: oslist: windows executable: FjordBattleracing.exe type: default -'667600': +"667600": installDir: Sky Force Reloaded launch: - config: @@ -310970,33 +306191,33 @@ executable: Sky Force Reloaded.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Sky Force Reloaded.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Sky Force Reloaded.x86_64 type: default -'667610': +"667610": installDir: Ancient Cities launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: Art\\Bin\\x64\\Ancient.exe + executable: "Art\\\\Bin\\\\x64\\\\Ancient.exe" type: default - workingdir: Art\\Bin\\x64 -'667620': + workingdir: "Art\\\\Bin\\\\x64" +"667620": installDir: Hexion launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: HEXION.exe type: vr -'667630': +"667630": installDir: Snake Charmer launch: - config: @@ -311005,18 +306226,18 @@ type: none - config: oslist: macos - executable: snake_osx100.app\\Contents\\MacOS\\snake_osx100 + executable: "snake_osx100.app\\\\Contents\\\\MacOS\\\\snake_osx100" type: default - config: oslist: linux executable: snake_linux.x86_64 type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: snake_linux.x86 type: none -'667660': +"667660": installDir: PhotonRush launch: - config: @@ -311031,14 +306252,14 @@ oslist: macos executable: PhotonRush.app type: none -'667670': +"667670": installDir: Expanse launch: - config: oslist: windows executable: Expanse.exe type: none -'667690': +"667690": installDir: Bedlamball launch: - config: @@ -311053,44 +306274,44 @@ oslist: linux executable: game.exe type: default -'667720': +"667720": installDir: Red Faction Guerrilla Re-MARS-tered launch: - config: oslist: windows executable: rfg.exe type: default -'667730': {} -'667760': +"667730": {} +"667760": installDir: Super Lumi Live launch: - config: oslist: windows executable: Super Lumi Live.exe type: default -'667770': +"667770": installDir: Nanoshift VR launch: - config: oslist: windows executable: NanoShift.exe type: vr -'667780': +"667780": installDir: RBIT launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: RBIT.exe type: vr -'667790': +"667790": installDir: Downbreak launch: - config: oslist: windows executable: downbreak.exe type: default -'667800': +"667800": installDir: Loco Dojo launch: - config: @@ -311098,7 +306319,7 @@ description: Play in VR executable: LocoDojo.exe type: vr -'667810': +"667810": installDir: NextUpHero launch: - config: @@ -311109,22 +306330,22 @@ oslist: macos executable: NextUpHero.app type: default -'667820': +"667820": installDir: Farmington Tales launch: - config: oslist: windows executable: Farmington Tales.exe type: none -'667830': {} -'667840': +"667830": {} +"667840": installDir: Dungeon Builder S launch: - config: oslist: windows executable: dungeon_builder_S.exe type: default -'667870': +"667870": installDir: MINDNIGHT launch: - config: @@ -311132,13 +306353,13 @@ executable: MINDNIGHT.exe type: none - config: - osarch: '32' + osarch: "32" oslist: linux description: 32-bit executable: MINDNIGHT.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: 64-bit executable: MINDNIGHT.x86_64 @@ -311147,7 +306368,7 @@ oslist: macos executable: MINDNIGHT.app type: none -'667880': +"667880": installDir: Dog Theatre launch: - config: @@ -311160,7 +306381,7 @@ description: Beta Testing executable: DogTheatreBeta2.3.exe type: default -'667890': +"667890": installDir: Dead Maze launch: - config: @@ -311175,31 +306396,31 @@ oslist: macos executable: DeadMaze.app type: none -'667900': +"667900": installDir: Brave launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Brave.exe type: default -'667920': +"667920": installDir: Survival Tycoon launch: - config: oslist: windows executable: Survival_Tycoon.exe type: default -'667930': +"667930": installDir: StickDodgeVR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: StickDodgeVR.exe type: vr -'667960': {} -'667970': +"667960": {} +"667970": installDir: VTOL VR launch: - config: @@ -311207,24 +306428,24 @@ description: (Recommended) executable: VTOLVR.exe type: vr -'668000': {} -'668010': +"668000": {} +"668010": installDir: Goalie VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: GoalieVR.exe type: vr -'668070': {} -'668170': +"668070": {} +"668170": installDir: Incline launch: - config: oslist: windows executable: Incline.exe type: default -'668190': +"668190": installDir: Wordabeasts launch: - config: @@ -311235,7 +306456,7 @@ oslist: macos executable: Wordabeasts.app type: default -'668200': +"668200": installDir: Four Horsemen launch: - config: @@ -311253,7 +306474,7 @@ description: Linux + SteamOS executable: FourHorsemen.sh type: default -'668210': +"668210": installDir: Super Fancy Pants Adventure launch: - config: @@ -311264,32 +306485,32 @@ oslist: windows executable: SFPA.exe type: default -'668220': +"668220": installDir: Breadwinner VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Breadwinner.exe type: vr -'668230': +"668230": installDir: SLI-FI 2D Planet Platformer launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: slifi.exe type: default - config: oslist: macos - executable: slifi.app\\Contents\\MacOS\\slifi + executable: "slifi.app\\\\Contents\\\\MacOS\\\\slifi" type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: slifi.x86_64 type: default -'668280': +"668280": installDir: BackSlash launch: - config: @@ -311300,7 +306521,7 @@ oslist: macos executable: backslash.app type: default -'668290': +"668290": installDir: From Orbit launch: - config: @@ -311309,43 +306530,43 @@ type: default - config: oslist: macos - executable: FromOrbit.app\\Contents\\MacOS\\FromOrbit + executable: "FromOrbit.app\\\\Contents\\\\MacOS\\\\FromOrbit" type: default - config: oslist: linux executable: FromOrbit.x86 type: default -'668300': +"668300": installDir: Chinese Souls-Hua Garden中华之魂-华园 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: game.exe type: default -'668320': +"668320": installDir: Perilous Warp launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: system/game.exe type: default workingdir: system - config: - osarch: '64' + osarch: "64" oslist: windows executable: system64/game.exe type: default workingdir: system64 - config: - osarch: '32' + osarch: "32" oslist: linux executable: system/game type: default workingdir: system - config: - osarch: '64' + osarch: "64" oslist: linux executable: system64/game type: default @@ -311355,7 +306576,7 @@ executable: Perilous Warp.app/Contents/MacOS/game.run type: default workingdir: Perilous Warp.app/Contents/MacOS -'668350': +"668350": installDir: Higurashi When They Cry Hou - Ch.6 Tsumihoroboshi launch: - config: @@ -311367,101 +306588,99 @@ executable: HigurashiEp06.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: HigurashiEp06.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: HigurashiEp06.x86_64 type: default nameLocalized: japanese: ひぐらしのなく頃に奉 罪滅し編 -'668360': +"668360": installDir: Bokuten launch: - config: oslist: windows executable: Bokuten.exe type: default -'668370': {} -'668410': {} -'668430': +"668370": {} +"668410": {} +"668430": installDir: V-Racer Hoverbike launch: - config: oslist: windows executable: vracer_hoverbike.exe type: vr -'668460': +"668460": installDir: RoboZone launch: - config: oslist: windows executable: robozone.exe type: none -'668510': +"668510": installDir: KartofankVR launch: - config: oslist: windows executable: KartofankVR.exe type: vr -'668520': +"668520": installDir: ExZeus 2 launch: - config: oslist: windows executable: exzeus2.exe type: default -'668550': +"668550": installDir: 8 Doors launch: - executable: 8Doors.exe type: none nameLocalized: - koreana: '사망여각 (8Doors: Arum''s Afterlife Adventure)' + koreana: "사망여각 (8Doors: Arum's Afterlife Adventure)" schinese: 8道门:雅兰的来世冒险 -'668560': +"668560": installDir: tho_maz launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: thomaz.exe type: default -'668570': +"668570": installDir: Jack and the cat launch: - config: oslist: windows executable: nw.exe type: default -'668580': +"668580": installDir: Atomic Heart launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: AtomicHeart.exe - config: - betakey: 'fe_qa,nvidia,nvidia_sl,nvidia_dev' - osarch: '64' + betakey: "fe_qa,nvidia,nvidia_sl,nvidia_dev" + osarch: "64" oslist: windows description: AtomicHeart-Win64-Test.exe - description_loc: - english: AtomicHeart-Win64-Test.exe - executable: \\AtomicHeart\\Binaries\\Win64\\AtomicHeart-Win64-Test.exe + executable: "\\\\AtomicHeart\\\\Binaries\\\\Win64\\\\AtomicHeart-Win64-Test.exe" nameLocalized: koreana: 아토믹 하트 schinese: 原子之心 tchinese: 原子之心 -'668590': +"668590": installDir: Omen Exitio Plague launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Omen 1.0 executable: OmenExitio.exe @@ -311475,28 +306694,28 @@ executable: OmenExitio.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: windows description: Omen 1.0 executable: OmenExitio.exe type: default nameLocalized: schinese: 崩坏之兆:瘟疫 -'668600': +"668600": installDir: Pixelum launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Pixelum.exe type: default -'668610': +"668610": installDir: WarsOfSeignior launch: - executable: WarsOfSeignior.exe type: none -'668620': {} -'668630': +"668620": {} +"668630": installDir: Tricolour Lovestory launch: - config: @@ -311508,14 +306727,12 @@ executable: TricolourLovestory_en.exe type: none - config: - osarch: '64' + osarch: "64" oslist: windows - ownsdlc: '1820130' + ownsdlc: "1820130" description: Tricolour Lovestory -Complete Editon- - description_loc: - english: Tricolour Lovestory -Complete Editon- executable: TricolourLovestoryCE/TricolourLovestoryCE.exe -'668650': +"668650": installDir: Hookbots launch: - config: @@ -311526,14 +306743,14 @@ oslist: macos executable: Hookbots.app type: none -'668670': +"668670": installDir: Glasswinged Ascension launch: - config: oslist: windows executable: GlasswingedAscension.exe type: default -'668680': +"668680": installDir: GuichuOdyssey launch: - config: @@ -311548,21 +306765,21 @@ oslist: macos executable: GuiChuOdyssey.app type: none -'668730': +"668730": installDir: Legends Of Iona RPG launch: - config: oslist: windows executable: Legends of Iona.exe type: none -'668770': +"668770": installDir: Solarium launch: - config: oslist: windows executable: Solarium.exe type: default -'668780': +"668780": installDir: ThePuppetofTersa launch: - config: @@ -311573,91 +306790,91 @@ oslist: macos executable: ThePuppetofTersa.app type: default -'668790': +"668790": installDir: Chicken Wars launch: - config: oslist: windows executable: Chicken Wars.exe type: config -'668800': +"668800": installDir: OtterBash launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: OtterBash.exe type: default - config: oslist: macos - executable: OtterBash.app\\Contents\\MacOS\\OtterBash + executable: "OtterBash.app\\\\Contents\\\\MacOS\\\\OtterBash" type: default -'668830': +"668830": installDir: Raid On Coasts launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: nw.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: nw.exe type: default -'668840': +"668840": installDir: Dead Moon - Revenge on Phobos launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: 64\\WindowsNoEditor\\Brutal.exe + executable: "64\\\\WindowsNoEditor\\\\Brutal.exe" type: vr - config: - osarch: '32' + osarch: "32" oslist: windows - executable: 32\\WindowsNoEditor\\Brutal.exe + executable: "32\\\\WindowsNoEditor\\\\Brutal.exe" type: vr -'668850': +"668850": installDir: TheIstrys launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TheIstrys.exe type: default -'668860': +"668860": installDir: Christmastry launch: - executable: Christmastry.exe type: none -'668890': +"668890": installDir: Hiking Simulator 2017 launch: - config: oslist: windows executable: game.exe type: default -'668900': {} -'668960': +"668900": {} +"668960": installDir: Esper - Make You Live Again launch: - config: oslist: windows executable: Esper - Make You Live Again.exe type: none -'668970': +"668970": installDir: Space Waver launch: - config: oslist: windows executable: Space Waver.exe type: default -'668980': +"668980": installDir: Forsaken Remastered launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: selkis_x64.exe type: default @@ -311666,25 +306883,25 @@ executable: Forsaken EX.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: ForsakenEx type: default -'669000': +"669000": installDir: Six-ear Macaque launch: - config: oslist: windows executable: Six-ear Macaque.exe type: config -'669040': - installDir: Whispered Secrets Into the Beyond Collector's Edition +"669040": + installDir: "Whispered Secrets Into the Beyond Collector's Edition" launch: - config: oslist: windows executable: WS_IntoTheBeyond_CE.exe type: default -'669050': +"669050": installDir: Mutiny!! launch: - config: @@ -311699,35 +306916,35 @@ oslist: linux executable: Mutiny!!.sh type: default -'669270': {} -'669280': +"669270": {} +"669280": installDir: Les Quatre Alices launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: - osarch: '64' + osarch: "64" oslist: windows description: Les Quatre Alices executable: nw.exe type: option1 - config: - osarch: '64' + osarch: "64" oslist: windows description: Les Quatre Alices (no Steam Overlay) executable: nw.exe type: option2 nameLocalized: french: Les Quatre Alices -'669290': +"669290": installDir: Espire 1 VR Operative launch: - - arguments: '-steam' + - arguments: "-steam" config: - osarch: '64' + osarch: "64" oslist: windows executable: Espire1.exe type: vr -'669310': +"669310": installDir: BravePath launch: - config: @@ -311742,31 +306959,31 @@ oslist: linux executable: BravePath type: default -'669320': +"669320": installDir: NationWarChronicle launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: NationWar.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: NationWar.exe type: default -'669330': +"669330": installDir: Mechabellum launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Mechabellum.exe type: default nameLocalized: english: Mechabellum schinese: 钢铁指挥官 -'669340': +"669340": installDir: The Royal Cosmonautical Society launch: - config: @@ -311777,7 +306994,7 @@ oslist: macos executable: RoyalCosmoSociety.app type: none -'669350': +"669350": installDir: Outracer launch: - config: @@ -311786,45 +307003,45 @@ type: default - config: oslist: macos - executable: Outracer.app\\Contents\\MacOS\\Outracer + executable: "Outracer.app\\\\Contents\\\\MacOS\\\\Outracer" type: default - config: - osarch: '32' + osarch: "32" oslist: linux description: Run in 32-bit Mode executable: Outracer.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: in 64-bit Mode executable: Outracer.x86_64 type: option1 - - arguments: '-popupwindow' + - arguments: "-popupwindow" config: oslist: windows description: in Borderless Mode executable: Outracer.exe type: option1 - - arguments: '-popupwindow' + - arguments: "-popupwindow" config: oslist: macos description: in Borderless Mode - executable: Outracer.app\\Contents\\MacOS\\Outracer + executable: "Outracer.app\\\\Contents\\\\MacOS\\\\Outracer" type: option1 -'669360': +"669360": installDir: Infested Nation launch: - executable: Infested Nation.exe type: default -'669380': +"669380": installDir: Astoria The Holders of Power Saga launch: - config: oslist: windows executable: Game.exe type: default -'669390': +"669390": installDir: LethalLaser launch: - config: @@ -311833,103 +307050,97 @@ type: none - config: oslist: macos - executable: LethalLaser.app\\Contents\\MacOS\\LethalLaser + executable: "LethalLaser.app\\\\Contents\\\\MacOS\\\\LethalLaser" type: none -'669410': - installDir: Exatron Quest l'Epée de Sang +"669410": + installDir: "Exatron Quest l'Epée de Sang" launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows executable: Game.exe type: default -'669440': +"669440": installDir: IKAROS launch: - config: oslist: windows executable: IKAROS.exe type: vr -'669450': {} -'669460': {} -'669490': +"669450": {} +"669460": {} +"669490": installDir: BlockDude launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: BlockDude.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: BlockDude type: default -'669500': +"669500": installDir: Himeko Sutori launch: - - arguments: '?win32=true -user -forcecontrollerappid 669500' + - arguments: "?win32=true -user -forcecontrollerappid 669500" config: - osarch: '32' + osarch: "32" oslist: windows - executable: Binaries\\Win32\\RPGTacGame.exe + executable: "Binaries\\\\Win32\\\\RPGTacGame.exe" type: default - - arguments: '-user -forcecontrollerappid 669500' + - arguments: "-user -forcecontrollerappid 669500" config: - osarch: '64' + osarch: "64" oslist: windows - executable: Binaries\\Win64\\RPGTacGame.exe + executable: "Binaries\\\\Win64\\\\RPGTacGame.exe" type: default - arguments: editor -user config: - osarch: '32' + osarch: "32" oslist: windows - executable: Binaries\\Win32\\RPGTacGame.exe + executable: "Binaries\\\\Win32\\\\RPGTacGame.exe" type: editor - arguments: editor -user config: - osarch: '64' + osarch: "64" oslist: windows - executable: Binaries\\Win64\\RPGTacGame.exe + executable: "Binaries\\\\Win64\\\\RPGTacGame.exe" type: editor - arguments: make config: betakey: internal - osarch: '64' + osarch: "64" oslist: windows description: make - executable: Binaries\\Win64\\RPGTacGame.exe + executable: "Binaries\\\\Win64\\\\RPGTacGame.exe" type: option2 - - arguments: '?win32=true -user -forcecontrollerappid 669500' + - arguments: "?win32=true -user -forcecontrollerappid 669500" config: oslist: windows description: 32-bit - description_loc: - english: 32-bit - executable: Binaries\\Win32\\RPGTacGame.exe + executable: "Binaries\\\\Win32\\\\RPGTacGame.exe" type: option1 - - arguments: '-user -forcecontrollerappid 669500 -log' + - arguments: "-user -forcecontrollerappid 669500 -log" config: betakey: internal oslist: macos - executable: Binaries\\Mac\\Mac\\RPGTacGame-Mac-Release.app\\Contents\\MacOS\\RPGTacGame-Mac-Release + executable: "Binaries\\\\Mac\\\\Mac\\\\RPGTacGame-Mac-Release.app\\\\Contents\\\\MacOS\\\\RPGTacGame-Mac-Release" type: default - config: oslist: windows description: Mod Loader - description_loc: - english: Mod Loader - executable: Binaries\\ModLoader\\HSModLoader.exe + executable: "Binaries\\\\ModLoader\\\\HSModLoader.exe" type: option1 - description: Mod Publisher - description_loc: - english: Mod Publisher - executable: Binaries\\ModLoader\\HSModPublisher.exe + executable: "Binaries\\\\ModLoader\\\\HSModPublisher.exe" type: option1 nameLocalized: japanese: 姫子ストーリー schinese: 姬子的觉醒 -'669520': +"669520": installDir: MinoSaga launch: - config: @@ -311940,48 +307151,48 @@ oslist: macos executable: MinoSaga.app type: default -'669570': +"669570": installDir: MicroSpy launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: microspy.exe type: default -'669580': +"669580": installDir: UB launch: - - arguments: '-steam' + - arguments: "-steam" config: oslist: windows executable: UB.exe type: none - - arguments: '-steam' + - arguments: "-steam" config: oslist: macos executable: UB2_steam.app type: none -'669600': +"669600": installDir: Light in the dark launch: - executable: ambient.exe type: default -'669620': - installDir: The Necromancer's Castle +"669620": + installDir: "The Necromancer's Castle" launch: - config: oslist: windows executable: TNC.exe type: default -'669630': +"669630": installDir: Hollowed launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Hollowed.exe type: none -'669650': +"669650": installDir: TinyThief launch: - config: @@ -311992,7 +307203,7 @@ oslist: macos executable: TinyThief.app type: default -'669660': +"669660": installDir: Debris launch: - config: @@ -312001,9 +307212,9 @@ type: none - config: oslist: macos - executable: debris.app\\Contents\\MacOS\\debris + executable: "debris.app\\\\Contents\\\\MacOS\\\\debris" type: none -'669690': +"669690": installDir: FunnyFingers launch: - config: @@ -312014,67 +307225,67 @@ oslist: macos executable: Made in GameMaker Studio 2.app type: default -'669700': +"669700": installDir: PROJECT AZRIEL launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Project Azriel.exe type: default - config: - osarch: '64' + osarch: "64" oslist: macos executable: ProjectAzriel.app/Contents/MacOS/ProjectAzriel type: default -'669710': +"669710": installDir: Outburst launch: - config: oslist: windows - executable: windows_x86\\Outburst.exe + executable: "windows_x86\\\\Outburst.exe" type: default - config: oslist: macos - executable: mac\\Mac.app\\Contents\\MacOS\\Mac + executable: "mac\\\\Mac.app\\\\Contents\\\\MacOS\\\\Mac" type: default -'669720': {} -'669730': +"669720": {} +"669730": installDir: Mind Trap launch: - config: oslist: windows executable: MindTrap.exe type: default -'669740': +"669740": installDir: Tower Bombarde launch: - config: oslist: windows executable: TowerBombardeRemastered.exe type: default -'669750': +"669750": installDir: Brain Storm Tower Bombarde launch: - config: oslist: windows executable: BRAIN_STORM_tower_bombarde.exe type: default -'669760': +"669760": installDir: One Bit launch: - config: oslist: windows executable: ONE-BIT.exe type: default -'669770': +"669770": installDir: Strangers in a Strange Land launch: - config: oslist: windows executable: Strangers.exe type: default -'669830': +"669830": installDir: AsteroidsMillennium launch: - config: @@ -312089,7 +307300,7 @@ executable: bin/asteroidsmillennium type: default workingdir: bin -'669910': +"669910": installDir: Miles & Kilo launch: - config: @@ -312100,8 +307311,8 @@ oslist: macos executable: Miles and Kilo.app type: default -'669930': {} -'669950': +"669930": {} +"669950": installDir: Big Drunk Satanic Massacre launch: - config: @@ -312112,47 +307323,47 @@ oslist: macos executable: Big Drunk Satanic Massacre.app type: none -'669960': +"669960": installDir: The Dungeon Power launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: dungeonpower.exe type: default -'669990': +"669990": installDir: Crucial Throw launch: - config: oslist: windows executable: CrucialThrow.exe type: default -'67000': +"67000": installDir: ThePolynomial launch: - config: oslist: windows - description: 'The Polynomial: Space of the music' + description: "The Polynomial: Space of the music" executable: Polynomial.exe - config: oslist: macos - description: 'The Polynomial: Space of the music' + description: "The Polynomial: Space of the music" executable: Polynomial_osx.app - config: oslist: linux - description: 'The Polynomial: Space of the music' + description: "The Polynomial: Space of the music" executable: Polynomial32 - - arguments: '--use_default_settings=1' + - arguments: "--use_default_settings=1" config: oslist: windows description: Use default settings executable: Polynomial.exe - - arguments: '--use_default_settings=1' + - arguments: "--use_default_settings=1" config: oslist: linux description: Use default settings executable: Polynomial32 - - arguments: '--use_default_settings=1' + - arguments: "--use_default_settings=1" config: oslist: macos description: Use default settings @@ -312161,28 +307372,28 @@ oslist: linux description: 64 bit version (no steam features) executable: Polynomial64 -'670020': +"670020": installDir: Solar System Journey VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Solar System Journey VR.exe type: vr - config: - osarch: '64' + osarch: "64" oslist: windows executable: Solar System Journey.exe type: default -'670050': {} -'670060': +"670050": {} +"670060": installDir: Defenders of Ekron launch: - config: oslist: windows executable: Defenders of Ekron.exe type: default -'670080': +"670080": installDir: SuperLuminauts launch: - config: @@ -312193,7 +307404,7 @@ oslist: windows executable: SuperLuminauts.exe type: default -'670090': +"670090": installDir: FallenCore launch: - config: @@ -312205,16 +307416,16 @@ executable: FallenCore.app type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: FallenCore.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: FallenCore.x86_64 type: none -'670100': +"670100": installDir: Mint launch: - config: @@ -312227,51 +307438,51 @@ description: Launch executable: Mint.app type: default -'670120': {} -'670130': +"670120": {} +"670130": installDir: Jam Studio VR launch: - config: oslist: windows executable: windows_content/Jam Studio VR.exe type: vr -'670140': +"670140": installDir: Destiny of a Wizard launch: - config: oslist: windows executable: Game.exe type: default -'670160': - installDir: D'LIRIUM +"670160": + installDir: "D'LIRIUM" launch: - config: oslist: windows - executable: delirium\\delirium.exe + executable: "delirium\\\\delirium.exe" type: default workingdir: Delirium - config: oslist: macos - executable: D'LIRIUM.app\\Contents\\MacOS\\Mac_Runner + executable: "D'LIRIUM.app\\\\Contents\\\\MacOS\\\\Mac_Runner" type: default -'670180': +"670180": installDir: Castles II Siege & Conquest launch: - config: oslist: windows executable: Launch Castles.bat type: default - - arguments: '-conf \"config/dosboxCastles2.conf\" -conf \"config/dosboxCastles2_single.conf\" -noconsole' + - arguments: "-conf \\\"config/dosboxCastles2.conf\\\" -conf \\\"config/dosboxCastles2_single.conf\\\" -noconsole" config: oslist: macos executable: DOSBox/dosbox.app/Contents/MacOS/DOSBox type: default - - arguments: '-conf \"config/dosboxCastles2.conf\" -conf \"config/dosboxCastles2_single.conf\" -noconsole' + - arguments: "-conf \\\"config/dosboxCastles2.conf\\\" -conf \\\"config/dosboxCastles2_single.conf\\\" -noconsole" config: oslist: linux executable: dosbox/dosbox type: default -'670210': +"670210": installDir: Otto the Odd Ostrich launch: - config: @@ -312282,22 +307493,22 @@ oslist: macos executable: Otto The Odd Ostrich.app type: default -'670230': +"670230": installDir: Omega Extinction launch: - config: oslist: windows executable: Omega.exe type: default -'670240': +"670240": installDir: Snappy Turtle Ultimate launch: - config: oslist: windows executable: Snappy_Turtle_Ultimate.exe type: default -'670250': {} -'670260': +"670250": {} +"670260": installDir: Solace Crafting launch: - config: @@ -312305,19 +307516,19 @@ executable: Solace Crafting.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Solace Crafting.x86_64 type: default -'670270': +"670270": installDir: Wings of Peace VR DayBreak launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SnowWolf.exe type: vr -'670280': +"670280": installDir: In Dungeon launch: - config: @@ -312328,7 +307539,7 @@ oslist: linux executable: runner type: none -'670290': +"670290": installDir: Real Pool 3D launch: - config: @@ -312351,8 +307562,8 @@ tchinese: 真實檯球3D - Pool turkish: Bilardo 3D - Pool vietnamese: Bi-a 3D - Pool -'670320': - installDir: PAPA'S TIME MACHINE +"670320": + installDir: "PAPA'S TIME MACHINE" launch: - config: oslist: windows @@ -312360,28 +307571,28 @@ type: default - config: oslist: macos - executable: PAPA.app\\Contents\\MacOS\\PAPA + executable: "PAPA.app\\\\Contents\\\\MacOS\\\\PAPA" type: default -'670330': +"670330": installDir: Flight 732 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Flight732.exe type: default -'670340': +"670340": installDir: Mysterious Adventure of Michael launch: - config: oslist: windows executable: MichaelAdventure.exe type: default -'670350': +"670350": installDir: The Free Ones launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TheFreeOnes_Windows64.exe type: default @@ -312390,21 +307601,21 @@ executable: TheFreeOnes_Mac.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: TheFreeOnes_Linux.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: TheFreeOnes_Linux.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: TheFreeOnes_Windows32.exe type: default -'670370': +"670370": installDir: FallenCube launch: - executable: FallenCube.exe @@ -312414,8 +307625,8 @@ description: unabletest executable: Unable.exe type: none -'670380': {} -'670400': +"670380": {} +"670400": installDir: Malatzshia launch: - config: @@ -312423,22 +307634,22 @@ oslist: windows executable: Game.exe type: none -'670410': +"670410": installDir: Citadale - The Legends Trilogy launch: - config: oslist: windows - executable: win64\\CitadaleTrilogy.exe + executable: "win64\\\\CitadaleTrilogy.exe" type: default - config: oslist: linux - executable: linux64\\CitadaleTrilogy + executable: "linux64\\\\CitadaleTrilogy" type: default - config: oslist: macos - executable: mac64\\CitadaleTrilogy.app + executable: "mac64\\\\CitadaleTrilogy.app" type: default -'670430': +"670430": installDir: ColorlessLife launch: - arguments: ColLifeSave.sccr @@ -312446,13 +307657,13 @@ oslist: windows executable: ColorlessLifeG.exe type: config -'670440': +"670440": installDir: Obscure - Challenge you mind launch: - executable: Obscure - Challenge your Mind.exe type: default -'670480': {} -'670490': +"670480": {} +"670490": installDir: Rise of Man launch: - config: @@ -312463,7 +307674,7 @@ oslist: macos executable: ROM.app type: default -'670500': +"670500": installDir: RC Plane 3 launch: - config: @@ -312474,24 +307685,24 @@ oslist: macos executable: RC Plane 3.app type: default -'670520': {} -'670550': {} -'670610': +"670520": {} +"670550": {} +"670610": installDir: Swaps and Traps launch: - config: oslist: windows executable: Swaps And Traps.exe type: default -'670620': +"670620": installDir: SURV launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Surv.exe type: none -'670630': +"670630": installDir: Slingshot Puzzle launch: - config: @@ -312502,21 +307713,21 @@ oslist: macos executable: SlingshotPuzzle.app/Contents/MacOS/SlingshotPuzzle type: default -'670720': +"670720": installDir: Stealthscape launch: - config: oslist: windows executable: Stealthscape.exe type: none -'670730': +"670730": installDir: Sure Footing launch: - config: oslist: windows executable: Sure Footing.exe type: default -'670750': +"670750": installDir: 0°N 0°W launch: - config: @@ -312533,11 +307744,11 @@ type: default - config: oslist: windows - ownsdlc: '835140' + ownsdlc: "835140" description: 0°N 0°W - VR executable: 0N0W_VR.exe type: option2 -'670760': +"670760": installDir: Sage 3D launch: - arguments: 670760 sage_3d.exe @@ -312545,8 +307756,8 @@ oslist: windows executable: RUN_ME.exe type: default -'670770': {} -'670780': +"670770": {} +"670780": installDir: Albert Mort - Desert Heat launch: - config: @@ -312557,101 +307768,101 @@ oslist: windows executable: AlbertMort_DH.exe type: default -'670790': {} -'670810': {} -'670820': +"670790": {} +"670810": {} +"670820": installDir: Civitatem launch: - - arguments: '--disable-crash-handler=true' + - arguments: "--disable-crash-handler=true" config: oslist: windows executable: Civitatem.exe type: none -'670830': +"670830": installDir: VR Trivia Battle launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: VR Trivia Battle.exe type: vr -'670850': +"670850": installDir: Sokoban Land DX launch: - config: oslist: windows executable: SokobanLandDeluxePC_Steam.exe type: default -'670900': +"670900": installDir: NASCAR Heat 2 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: NASCARHeat2.exe type: default - - arguments: '-MGI-reset-graphics-settings' + - arguments: "-MGI-reset-graphics-settings" config: - osarch: '64' + osarch: "64" oslist: windows description: Reset Graphic Settings executable: NASCARHeat2.exe type: none -'670910': +"670910": installDir: AHTS Ship Simulator launch: - config: oslist: windows executable: AHTCSimulator.exe type: vr -'670930': +"670930": installDir: Escape Doodland launch: - config: oslist: windows executable: EscapeDoodland.exe type: default -'670940': +"670940": installDir: The Voice in the Void launch: - config: oslist: windows executable: The Voice in the Void.exe type: none -'670950': +"670950": installDir: Band of Outlaws launch: - config: oslist: windows executable: BandOfOutlaws-UpdatedArt-.exe type: default -'670970': +"670970": installDir: Res Judicata Vale of Myth launch: - - arguments: '--in-process-gpu --ignore-gpu-blacklist --enable-webgl' + - arguments: "--in-process-gpu --ignore-gpu-blacklist --enable-webgl" executable: nw.exe type: default - - arguments: '--in-process-gpu --ignore-gpu-blacklist --enable-webgl' + - arguments: "--in-process-gpu --ignore-gpu-blacklist --enable-webgl" config: oslist: linux executable: nw type: none -'671050': +"671050": installDir: XMinutes Wings launch: - config: oslist: windows executable: XMinutes Shooter.exe type: default -'671090': +"671090": installDir: Oik Memory launch: - - arguments: '-windowed' + - arguments: "-windowed" config: oslist: windows executable: Oik memory.exe type: none -'671100': +"671100": installDir: Dizzy Hearts launch: - config: @@ -312662,15 +307873,15 @@ oslist: linux executable: DizzyHearts.sh type: default -'671120': +"671120": installDir: Spaceship Trucker launch: - config: oslist: windows executable: SpaceshipTrucker.exe type: none -'671130': {} -'671150': +"671130": {} +"671150": installDir: Explosive Dinosaurs launch: - config: @@ -312685,15 +307896,15 @@ type: option1 - config: oslist: linux - executable: ./pmouya + executable: "./pmouya" type: default - arguments: window config: oslist: linux description: window / ventana - executable: ./pmouya + executable: "./pmouya" type: option1 -'671170': +"671170": installDir: Great eSports Manager launch: - config: @@ -312705,23 +307916,23 @@ executable: eSportsManager_OSX.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: ESPORTSManager.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: ESPORTSManager.x86_64 type: default -'671180': +"671180": installDir: Elementals Reborn launch: - config: oslist: windows executable: Elementals Reborn.exe type: none -'671200': +"671200": installDir: GAIA 2200 launch: - config: @@ -312729,7 +307940,7 @@ description: Launch executable: GAIA2200.exe type: none -'671230': +"671230": installDir: Spirits Ciel Bleu launch: - config: @@ -312744,14 +307955,14 @@ oslist: linux executable: Spirits.sh type: default -'671240': +"671240": installDir: seven boys launch: - config: oslist: windows executable: sevenboys.exe type: default -'671260': +"671260": installDir: GOKEN launch: - config: @@ -312762,35 +307973,35 @@ oslist: linux executable: GOKEN.x86_64 type: default -'671270': +"671270": installDir: Stophat launch: - config: oslist: windows executable: Stophat.exe type: none -'671290': +"671290": installDir: Deadliners launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: build/win32_deadliners.exe type: default -'671310': +"671310": installDir: Pararea launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ParareaVR.exe type: vr -'671330': +"671330": installDir: Lit the Torch launch: - executable: Lit the Torch.exe type: default -'671370': +"671370": installDir: Flight of Light launch: - config: @@ -312805,7 +308016,7 @@ oslist: linux executable: flight_of_light.x86 type: none -'671390': +"671390": installDir: Metropolis Lux Obscura launch: - config: @@ -312814,38 +308025,38 @@ type: default - config: oslist: macos - executable: Metropolis.app\\Contents\\MacOS\\Metropolis + executable: "Metropolis.app\\\\Contents\\\\MacOS\\\\Metropolis" type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Metropolis.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Metropolis.x86_64 type: default -'671430': {} -'671440': +"671430": {} +"671440": installDir: RiseOfIndustry launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Latest Stable Version executable: Rise of Industry.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Rise of Industry.x86_64 type: default - config: oslist: macos - executable: Rise of Industry.app\\Contents\\MacOS\\Rise of Industry + executable: "Rise of Industry.app\\\\Contents\\\\MacOS\\\\Rise of Industry" type: default -'671460': +"671460": installDir: The Gamer Challenge launch: - config: @@ -312853,12 +308064,12 @@ executable: TGC.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: TGC.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: TGC.x86_64 type: default @@ -312866,20 +308077,20 @@ oslist: macos executable: TGC.app type: default -'671470': +"671470": installDir: CARSTEROIDS launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: carsteroids.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: carsteroids.exe type: default -'671480': +"671480": installDir: MokMok launch: - config: @@ -312888,21 +308099,21 @@ type: default - config: oslist: macos - executable: MokMok.app\\Contents\\MacOS\\MokMok + executable: "MokMok.app\\\\Contents\\\\MacOS\\\\MokMok" type: default -'671490': +"671490": installDir: Princess Sahirah is a Spoiled Brat! launch: - executable: Game.exe type: none -'671510': +"671510": installDir: Desolate launch: - config: oslist: windows executable: start.bat type: default -'671540': +"671540": installDir: Pizza Hunt ANDDI launch: - config: @@ -312911,23 +308122,23 @@ type: none - config: oslist: macos - executable: pizzahunt.app\\Contents\\MacOS\\love + executable: "pizzahunt.app\\\\Contents\\\\MacOS\\\\love" type: none -'671550': +"671550": installDir: Brickochet launch: - config: oslist: windows executable: Brickochet.exe type: default -'671560': - installDir: Iggy's Zombie A-Pug-Alypse +"671560": + installDir: "Iggy's Zombie A-Pug-Alypse" launch: - config: oslist: windows executable: Iggy.exe type: default -'671580': +"671580": installDir: NeoCube launch: - config: @@ -312936,98 +308147,92 @@ type: default - config: oslist: macos - executable: neocube.app\\Contents\\MacOS\\neocube + executable: "neocube.app\\\\Contents\\\\MacOS\\\\neocube" type: default -'671600': +"671600": installDir: AshesOfOahu launch: - - arguments: '-fullscreen' + - arguments: "-fullscreen" config: - osarch: '64' + osarch: "64" oslist: windows executable: AshesOfOahu.exe type: default -'671610': +"671610": installDir: fvi launch: - config: - osarch: '64' + osarch: "64" oslist: linux description: 64 bit - description_loc: - english: 64 bit - executable: fvi-launcher\\applications\\warfork\\Warfork.app\\Contents\\Resources\\warfork.x86_64 + executable: "fvi-launcher\\\\applications\\\\warfork\\\\Warfork.app\\\\Contents\\\\Resources\\\\warfork.x86_64" type: none - workingdir: fvi-launcher\\applications\\warfork\\Warfork.app\\Contents\\Resources\\ + workingdir: "fvi-launcher\\\\applications\\\\warfork\\\\Warfork.app\\\\Contents\\\\Resources\\\\" - config: - osarch: '64' + osarch: "64" oslist: windows description: 64 bit - description_loc: - english: 64 bit - executable: fvi-launcher\\applications\\warfork\\Warfork.app\\Contents\\Resources\\warfork_x64.exe + executable: "fvi-launcher\\\\applications\\\\warfork\\\\Warfork.app\\\\Contents\\\\Resources\\\\warfork_x64.exe" type: none - workingdir: fvi-launcher\\applications\\warfork\\Warfork.app\\Contents\\Resources\\ + workingdir: "fvi-launcher\\\\applications\\\\warfork\\\\Warfork.app\\\\Contents\\\\Resources\\\\" - config: oslist: macos - executable: fvi-launcher\\applications\\warfork\\Warfork.app\\Contents\\MacOS\\Warfork + executable: "fvi-launcher\\\\applications\\\\warfork\\\\Warfork.app\\\\Contents\\\\MacOS\\\\Warfork" type: none - config: - osarch: '32' + osarch: "32" oslist: windows - executable: fvi-launcher\\applications\\warfork\\Warfork.app\\Contents\\Resources\\warfork_x86.exe + executable: "fvi-launcher\\\\applications\\\\warfork\\\\Warfork.app\\\\Contents\\\\Resources\\\\warfork_x86.exe" type: none - workingdir: fvi-launcher\\applications\\warfork\\Warfork.app\\Contents\\Resources\\ + workingdir: "fvi-launcher\\\\applications\\\\warfork\\\\Warfork.app\\\\Contents\\\\Resources\\\\" - config: - osarch: '32' + osarch: "32" oslist: linux - executable: fvi-launcher\\applications\\warfork\\Warfork.app\\Contents\\Resources\\warfork.i386 + executable: "fvi-launcher\\\\applications\\\\warfork\\\\Warfork.app\\\\Contents\\\\Resources\\\\warfork.i386" type: none - workingdir: fvi-launcher\\applications\\warfork\\Warfork.app\\Contents\\Resources\\ + workingdir: "fvi-launcher\\\\applications\\\\warfork\\\\Warfork.app\\\\Contents\\\\Resources\\\\" - config: - osarch: '64' + osarch: "64" oslist: windows - ownsdlc: '1145510' + ownsdlc: "1145510" description: FVI Launcher - description_loc: - english: FVI Launcher - executable: fvi-launcher\\fvi-launcher.exe + executable: "fvi-launcher\\\\fvi-launcher.exe" type: none - workingdir: fvi-launcher\\ -'671620': + workingdir: "fvi-launcher\\\\" +"671620": installDir: Beast Battle Simulator launch: - executable: BeastBattleSimulator.exe type: none -'671630': +"671630": installDir: STRIPPERANYA_DS launch: - config: oslist: windows executable: StripperAnya_DS.exe type: default -'671650': +"671650": installDir: Mad Age And This Guy launch: - config: oslist: windows executable: madage.exe type: default -'671670': +"671670": installDir: Village Of Souls launch: - config: oslist: windows executable: VoS.exe type: none -'671690': +"671690": installDir: Total Warfare launch: - config: oslist: windows executable: Total Warfare.exe type: none -'671700': +"671700": installDir: Dead Horizon launch: - config: @@ -313039,44 +308244,44 @@ executable: DeadHorizon.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: DeadHorizon.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: DeadHorizon.x86 type: default -'671720': +"671720": installDir: Robin launch: - executable: Robin.exe type: none -'671740': +"671740": installDir: VR SHOOT AROUND launch: - config: oslist: windows executable: VRShootAround.exe type: vr -'671750': +"671750": installDir: ColorCode launch: - config: oslist: windows executable: ColorCode.exe type: none -'671760': {} -'671770': {} -'671800': +"671760": {} +"671770": {} +"671800": installDir: Run!ZombieFoods! launch: - config: oslist: windows executable: Run!ZombieFoods!.exe type: default -'671810': +"671810": installDir: The Adventures of Capitano Navarro launch: - config: @@ -313085,13 +308290,13 @@ executable: The Adventures of Capitano Navarro.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: The Adventures of Capitano Navarro.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: The Adventures of Capitano Navarro.x86 @@ -313101,52 +308306,48 @@ description: Launch executable: Capitano.app type: default -'671840': +"671840": installDir: esbr launch: - config: oslist: windows executable: esbr.exe type: none -'671850': +"671850": installDir: Dormant World launch: - config: oslist: windows executable: Dormant World.exe type: default -'671860': +"671860": installDir: BattleBit Remastered launch: - description: Launch BattleBit Remastered with Easy Anti Cheat. - description_loc: - english: Launch BattleBit Remastered with Easy Anti Cheat. executable: BattleBitEAC.exe type: default - - arguments: ' install 43ed9a4620fa486994c0b368cce73b5d' + - arguments: " install 43ed9a4620fa486994c0b368cce73b5d" description: Install & Repair Easy Anti Cheat. - description_loc: - english: Install & Repair Easy Anti Cheat. - executable: EasyAntiCheat\\EasyAntiCheat_EOS_Setup.exe -'671880': + executable: "EasyAntiCheat\\\\EasyAntiCheat_EOS_Setup.exe" +"671880": installDir: TowerOffence launch: - config: oslist: windows executable: TowerOffence.exe type: default -'671900': +"671900": installDir: Devoid of Shadows launch: - config: oslist: windows executable: Game.exe type: default -'671920': +"671920": installDir: Dead Secret Circle launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ds2.exe type: default @@ -313155,45 +308356,45 @@ executable: ds2.app/Contents/MacOS/ds2 type: default - config: - osarch: '64' + osarch: "64" oslist: windows description: Dead Secret Circle Vive executable: VR/ds2.exe type: vr -'671940': {} -'671970': +"671940": {} +"671970": installDir: Junkyard Simulator launch: - config: oslist: windows executable: JunkYard.exe type: none -'671980': +"671980": installDir: Close Me launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows executable: CloseMe.exe type: default - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: macos executable: Game.app type: default - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: linux executable: Game type: default -'672000': +"672000": installDir: System Goose Overload launch: - config: oslist: windows executable: System Goose Overload.exe type: none -'672010': +"672010": installDir: CANARI launch: - config: @@ -313204,57 +308405,57 @@ oslist: macos executable: CANARI_OSX.app type: default -'672020': +"672020": installDir: Hold My Beer launch: - executable: HoldMyBeer.exe type: vr -'672030': +"672030": installDir: Swap Blocks launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: Base_Content\\Swap Blocks.exe + executable: "Base_Content\\\\Swap Blocks.exe" type: none -'672040': +"672040": installDir: WarFallen launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TPgame.exe type: default -'672050': +"672050": installDir: Super Mr. Kake launch: - executable: mrKake.exe type: none -'672080': +"672080": installDir: Cube Creatures launch: - config: oslist: windows executable: CubeCreatures.exe type: none -'672100': +"672100": installDir: An Occasional Dream launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows executable: nw.exe type: default -'672110': {} -'672130': +"672110": {} +"672130": installDir: Damned Hours launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: HK.exe type: none -'672140': +"672140": installDir: Battle For Korsun launch: - config: @@ -313262,7 +308463,7 @@ executable: Contents/MacOS/Korsun.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Korsun type: default @@ -313270,62 +308471,62 @@ oslist: windows executable: autorun.exe type: default -'672150': +"672150": installDir: LOGistICAL-Earth launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: LogisticalApp.exe type: none -'672160': +"672160": installDir: OldMaidGirl launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: OldMaidGirl.exe type: vr -'672180': +"672180": installDir: Detrita Battlegrounds launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: DetritaBattlegrounds.exe type: default -'672190': +"672190": installDir: Remnants of a Beautiful Day (2012) launch: - config: oslist: windows - executable: 'Remnants of a Beautiful Day [V 4.0].exe' + executable: "Remnants of a Beautiful Day [V 4.0].exe" type: none -'672220': +"672220": installDir: Unlimited launch: - config: oslist: windows - executable: UnrealVoxel\\Binaries\\Win64\\UnrealVoxel.exe + executable: "UnrealVoxel\\\\Binaries\\\\Win64\\\\UnrealVoxel.exe" type: default - description: Update Mods & Play Unlimited executable: UpdateMods.bat type: none -'672230': +"672230": installDir: IFFG launch: - config: oslist: windows executable: IFFG.exe type: default -'672240': +"672240": installDir: Dreams of Greatness launch: - config: oslist: windows executable: Game.exe type: default -'672250': +"672250": installDir: Plexus launch: - config: @@ -313333,30 +308534,30 @@ executable: Plexus.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Plexus.x86_64 type: default - config: oslist: macos - executable: Contents\\MacOS\\Plexus + executable: "Contents\\\\MacOS\\\\Plexus" type: default -'672260': {} -'672280': +"672260": {} +"672280": installDir: Gates of Horn and Ivory launch: - config: oslist: windows executable: Gates of Horn and Ivory.exe type: default -'672290': +"672290": installDir: Magic Forest launch: - config: oslist: windows executable: Magic Forest.exe type: default -'672300': +"672300": installDir: Air Traffic Disruptor launch: - config: @@ -313364,16 +308565,16 @@ description: Launch executable: Air Traffic Disruptor.exe type: default -'672310': +"672310": installDir: Kingdoms-Of-Marazia launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Kingdoms-Of-Marazia.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Kingdoms-Client.x86_64 type: default @@ -313381,70 +308582,70 @@ oslist: macos executable: Kingdoms-Client-Mac.app type: default -'672320': +"672320": installDir: The Last Sorcerer launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: The Last Sorcerer.exe type: vr -'672360': {} -'672380': +"672360": {} +"672380": installDir: Ameline and the Ultimate Burger launch: - config: oslist: windows executable: Ameline_TheUltimateBurger.exe type: default -'672410': +"672410": installDir: Access launch: - executable: Access.exe type: none -'672420': {} -'672430': {} -'672440': {} -'672450': +"672420": {} +"672430": {} +"672440": {} +"672450": installDir: ZVVU launch: - config: oslist: windows executable: ZVVU.exe type: vr -'672460': +"672460": installDir: Genetic Disaster launch: - executable: GeneticDisaster.exe type: none -'672480': +"672480": installDir: Mini Hockey VR launch: - config: oslist: windows executable: MiniHockeyVR.exe type: vr -'672490': +"672490": installDir: DeDrive launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: DeDrive.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: DeDrive_Linux_64bit.x86_64 type: none -'672570': +"672570": installDir: The Western Hunter launch: - config: oslist: windows executable: The Western Hunter.exe type: vr -'672590': +"672590": installDir: Azure Saga Pathfinder launch: - config: @@ -313453,71 +308654,71 @@ executable: Azure Saga - Pathfinder.app type: default - config: - osarch: '32' + osarch: "32" oslist: windows description: Windows Version 32 Bit executable: Azure Saga - Pathfinder.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows description: Windows Version 64 Bit executable: Azure Saga - Pathfinder.exe type: default -'672630': +"672630": installDir: AcademiaSchoolSimulator launch: - - arguments: '-noheap' + - arguments: "-noheap" config: - osarch: '32' + osarch: "32" oslist: windows - description: 'Academia: School Simulator 32bit' + description: "Academia: School Simulator 32bit" executable: Academia.exe type: default - - arguments: '-noheap' + - arguments: "-noheap" config: oslist: macos executable: Academia.app type: default - - arguments: '-noheap' + - arguments: "-noheap" config: - osarch: '64' + osarch: "64" oslist: windows - description: 'Academia: School Simulator 64bit' + description: "Academia: School Simulator 64bit" executable: Academia64.exe type: default -'672640': +"672640": installDir: War Robots VR The Skirmish launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: WR-VR.exe type: vr -'672650': +"672650": installDir: MONITOR The Game launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: MonitorGame.exe type: default - config: - ownsdlc: '716690' + ownsdlc: "716690" description: Not The Destination executable: MONITOR - Not The Destination.pdf type: none - config: - ownsdlc: '716691' - description: 'ALIX: A MONITOR Story' + ownsdlc: "716691" + description: "ALIX: A MONITOR Story" executable: AlixGame.exe type: none -'672670': +"672670": installDir: Hover Bots VR launch: - executable: Hover Bots release.exe type: vr -'672680': +"672680": installDir: Call of War launch: - config: @@ -313528,26 +308729,26 @@ oslist: macos executable: Call of War.app/Contents/MacOS/Call of War type: default -'672690': +"672690": installDir: The Nothing launch: - config: oslist: windows executable: The Nothing.exe type: default -'672710': +"672710": installDir: Traffic Giant launch: - executable: trafficgiant.exe type: default -'672720': +"672720": installDir: Crime Solitaire 2 launch: - config: oslist: windows executable: cs2.exe type: none -'672730': +"672730": installDir: Find_You launch: - arguments: steam @@ -313555,14 +308756,14 @@ oslist: windows executable: Find_You.exe type: default -'672770': +"672770": installDir: Poseidon - Project Dark Sky launch: - config: oslist: windows executable: Poseidon - Project Dark Sky.exe type: default -'672780': +"672780": installDir: Sweet Magic Madness launch: - config: @@ -313575,21 +308776,21 @@ description: Inicio normal Linux executable: runner type: default -'672790': +"672790": installDir: Elemental Combat launch: - config: oslist: windows executable: ElementalCombat type: vr -'672860': +"672860": installDir: StellarHub launch: - config: oslist: windows executable: StellarHub.exe type: none -'672880': +"672880": installDir: SuperWurfels launch: - config: @@ -313604,24 +308805,24 @@ oslist: linux executable: superWurfels.x86 type: none -'672910': +"672910": installDir: Hangry Bunnies From Mars launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: KBFM.exe type: vr -'672920': +"672920": installDir: The Bounty Deluxe Edition launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: - osarch: '64' + osarch: "64" oslist: windows executable: nw.exe type: default -'672940': +"672940": installDir: Galaxy of Drones launch: - config: @@ -313633,12 +308834,12 @@ executable: Galaxy of Drones.app/Contents/MacOS/Galaxy of Drones type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Galaxy of Drones.x86_64 type: default -'672960': {} -'672970': +"672960": {} +"672970": installDir: Swords and Sandals Medieval launch: - config: @@ -313649,8 +308850,8 @@ oslist: windows executable: Swords and Sandals Medieval.exe type: default -'672990': {} -'673000': +"672990": {} +"673000": installDir: High Hell launch: - config: @@ -313661,21 +308862,21 @@ oslist: macos executable: HIGHHELL.app type: default -'673010': +"673010": installDir: WILOO launch: - config: oslist: windows executable: WILOO.exe type: none -'673040': +"673040": installDir: Acorns Above launch: - config: oslist: windows executable: AcornsAbove.exe type: default -'673050': +"673050": installDir: StarBallMadNess launch: - config: @@ -313683,98 +308884,96 @@ oslist: windows executable: StarBallMadNess.exe type: default -'673060': +"673060": installDir: Floor Plan launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: FloorPlan.exe type: vr -'673070': +"673070": installDir: The Ranger Lost Tribe launch: - executable: The Ranger Lost Tribe Demo.exe type: vr -'673130': +"673130": installDir: Amid Evil launch: - config: oslist: windows executable: AmidEvil.exe type: default - - arguments: '-dx12' + - arguments: "-dx12" config: - osarch: '64' + osarch: "64" oslist: windows description: Amid Evil RTX Support (DX12) - description_loc: - english: Amid Evil RTX Support (DX12) executable: AmidEvil.exe type: none - config: - osarch: '64' + osarch: "64" oslist: windows - ownsdlc: '1198780' + ownsdlc: "1198780" description: Alpha Aug 2016 executable: DLC/2016 31 August/amidevil.exe type: none - config: - osarch: '64' + osarch: "64" oslist: windows - ownsdlc: '1198780' + ownsdlc: "1198780" description: Alpha Nov 2016 executable: DLC/2016 4 December/amidevil.exe type: none - config: - osarch: '64' + osarch: "64" oslist: windows - ownsdlc: '1198780' + ownsdlc: "1198780" description: Alpha Dec 2016 executable: DLC/2016 19 December/amidevil.exe type: none - config: - osarch: '64' + osarch: "64" oslist: windows - ownsdlc: '1198780' + ownsdlc: "1198780" description: Alpha May 2017 executable: DLC/2017 23 May/amidevil.exe type: none - config: - osarch: '64' + osarch: "64" oslist: windows - ownsdlc: '1198780' + ownsdlc: "1198780" description: Alpha Oct 2017 executable: DLC/2017 22 October PAX/amidevil.exe type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: AmidEvil.sh type: default -'673140': +"673140": installDir: InfiniteSkyline launch: - config: oslist: windows executable: Infinite Skyline.exe type: default -'673190': +"673190": installDir: All-Star Fruit Racing launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: AllStarFruitRacing.exe type: none -'673210': +"673210": installDir: Frontier Pilot Simulator launch: - config: oslist: windows executable: Frontier Pilot Simulator.exe type: none -'673220': +"673220": installDir: Joumee launch: - config: @@ -313783,9 +308982,9 @@ type: default - config: oslist: macos - executable: Joumee.app\\Contents\\MacOS\\Joumee + executable: "Joumee.app\\\\Contents\\\\MacOS\\\\Joumee" type: default -'673230': +"673230": installDir: Galaxy Annihilation launch: - config: @@ -313793,24 +308992,24 @@ executable: galaxy_annihilation.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: galaxy_annihilation_linux type: default -'673240': +"673240": installDir: Room54 launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: \\bin\\win_x64\\Room54.exe + executable: "\\\\bin\\\\win_x64\\\\Room54.exe" type: default -'673250': +"673250": installDir: ExterminatorEscape launch: - executable: ExterminatorEscape.exe type: vr -'673260': +"673260": installDir: Starblast launch: - config: @@ -313822,11 +309021,11 @@ executable: Starblast.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux - executable: ./starblast + executable: "./starblast" type: default -'673280': +"673280": installDir: GyroSphere Trials launch: - config: @@ -313837,15 +309036,15 @@ oslist: windows executable: GyroSphereTrials.exe type: default -'673290': {} -'673300': +"673290": {} +"673300": installDir: AlienSplatterRedux launch: - config: oslist: windows executable: AlienSplatterRedux.exe type: default -'673310': +"673310": installDir: Adam Waste launch: - config: @@ -313860,14 +309059,14 @@ description: Adam Waste executable: AW.exe type: default -'673360': +"673360": installDir: Black Mist launch: - config: oslist: windows executable: BlackMist.exe type: default -'673380': +"673380": installDir: Special Force VR launch: - config: @@ -313880,21 +309079,21 @@ description: Update beta testing exe file. executable: SFW_0824_1839.exe type: openvroverlay -'673430': +"673430": installDir: Mahjong Magic Islands launch: - config: oslist: windows executable: mahjong.exe type: default -'673450': +"673450": installDir: TimeLock VR launch: - config: oslist: windows executable: TimeLock.exe type: vr -'673480': +"673480": installDir: Timbertales launch: - config: @@ -313909,8 +309108,8 @@ oslist: macos executable: Contents/MacOS/timbertales-steam-osx type: default -'673510': {} -'673530': +"673510": {} +"673530": installDir: Zaba The Frog launch: - config: @@ -313919,56 +309118,56 @@ type: default - config: oslist: macos - executable: ZabaTheFrog.app\\Contents\\MacOS\\ZabaTheFrog + executable: "ZabaTheFrog.app\\\\Contents\\\\MacOS\\\\ZabaTheFrog" type: none - config: oslist: linux executable: Zaba the Frog.x86 type: none -'673540': +"673540": installDir: Mogo launch: - config: oslist: windows executable: yszb.exe type: default -'673550': +"673550": installDir: Legendary Arcane launch: - config: - osarch: '32' + osarch: "32" oslist: windows - executable: win32\\nw.exe + executable: "win32\\\\nw.exe" type: none - config: - osarch: '64' + osarch: "64" oslist: windows - executable: win64\\nw.exe + executable: "win64\\\\nw.exe" type: none - config: - osarch: '32' + osarch: "32" oslist: linux - executable: linux32\\nw + executable: "linux32\\\\nw" type: none - config: - osarch: '64' + osarch: "64" oslist: linux - executable: linux64\\nw + executable: "linux64\\\\nw" type: none -'673560': +"673560": installDir: IOSoccer launch: - - arguments: '-game iosoccer' + - arguments: "-game iosoccer" config: oslist: windows executable: iosoccer.exe type: none -'673570': +"673570": installDir: Squadron Sky Guardians launch: - executable: skadran.exe type: default -'673580': +"673580": installDir: Hamlet launch: - config: @@ -313981,23 +309180,23 @@ description: Hamlet (Beta Branch) executable: Hamlet-Windows-Alpha01-v18.2.exe type: option1 -'673590': +"673590": installDir: Amazing Thailand VR Experience launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TTTBoxing2.exe type: vr -'673600': +"673600": installDir: Prison Boss VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: PrisonBossVR64.exe type: vr -'673610': +"673610": installDir: Airport CEO launch: - config: @@ -314010,18 +309209,18 @@ type: default nameLocalized: schinese: 机场CEO -'673620': +"673620": installDir: Slizer Battle Management System launch: - config: - ownsdlc: '786460' + ownsdlc: "786460" description: ABMS executable: ABMS.exe type: option1 - description: SBMS executable: SBMS.exe type: option2 -'673630': +"673630": installDir: Heaven And Earth (Demo) launch: - config: @@ -314032,33 +309231,33 @@ oslist: macos executable: game.exe type: default -'673660': +"673660": installDir: Neon Hardcore launch: - config: oslist: windows executable: 2D_Neon_Hardcore.exe type: config -'673670': {} -'67370': +"673670": {} +"67370": installDir: Darkness II launch: - config: oslist: windows description: DarknessII executable: DarknessII.exe - - arguments: '-psn' + - arguments: "-psn" config: oslist: macos executable: The Darkness II.app/Contents/MacOS/cider -'673720': +"673720": installDir: Police Adventure launch: - config: oslist: windows executable: PoliceAdventure.exe type: default -'673740': +"673740": installDir: Space Battlecruiser launch: - config: @@ -314071,7 +309270,7 @@ description: Beta executable: SpaceBattlecruiser.exe type: option1 -'673750': +"673750": installDir: Super Bunny Man launch: - config: @@ -314086,31 +309285,31 @@ oslist: linux executable: Super Bunny Man.sh type: default -'673760': {} -'673770': {} -'673780': {} -'673800': +"673760": {} +"673770": {} +"673780": {} +"673800": installDir: Zup! XS launch: - config: oslist: windows executable: Zup! XS.exe type: default -'673810': +"673810": installDir: Infinite Sunshine Dust launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows description: Launch executable: Infinite Sunshine Dust.exe type: default -'673820': +"673820": installDir: Master of ABC launch: - executable: master of ABC.exe type: default -'673830': +"673830": installDir: VRStockCarRacers launch: - config: @@ -314121,7 +309320,7 @@ oslist: windows executable: VRStockCarRacers.exe type: default -'673840': +"673840": installDir: FormulaVR launch: - config: @@ -314132,7 +309331,7 @@ oslist: windows executable: VRFormula.exe type: default -'673850': +"673850": installDir: Neofeud launch: - config: @@ -314143,23 +309342,23 @@ oslist: windows executable: winsetup.exe type: config -'673870': +"673870": installDir: Math Combat Challenge launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: MC2Build.exe type: default - config: oslist: macos - executable: MC2Mac.app\\Contents\\MacOS\\MC2Mac + executable: "MC2Mac.app\\\\Contents\\\\MacOS\\\\MC2Mac" type: default -'673880': +"673880": installDir: Mechanicus launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Mechanicus.exe type: none @@ -314168,11 +309367,11 @@ executable: Mechanicus.app type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: Mechanicus.x86_64 type: none -'673900': +"673900": installDir: Avem33 launch: - config: @@ -314185,30 +309384,30 @@ description: Avem33 executable: w32_avem33.exe type: default -'673910': +"673910": installDir: Wrestling Revolution 2D launch: - config: oslist: windows executable: Wrestling Revolution.exe type: default -'673920': +"673920": installDir: Maso Marble launch: - config: oslist: windows executable: MasoMarble.exe type: none -'673930': {} -'673940': +"673930": {} +"673940": installDir: Dragon Glory launch: - - arguments: '--in-process-gpu --disable-transparency' + - arguments: "--in-process-gpu --disable-transparency" config: oslist: windows executable: dragonglory.exe type: default -'673950': +"673950": installDir: Farm Together launch: - config: @@ -314223,22 +309422,22 @@ oslist: linux executable: FarmTogether type: default -'673970': +"673970": installDir: MuX launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: MuX.exe type: vr -'673980': - installDir: Spears 'n' Spades +"673980": + installDir: "Spears 'n' Spades" launch: - config: oslist: windows executable: SnS.exe type: default -'674010': +"674010": installDir: Loneliness launch: - config: @@ -314249,62 +309448,60 @@ oslist: windows executable: The Empire Online.exe type: default -'674020': +"674020": installDir: World War 3 launch: - config: betakey: default - osarch: '64' + osarch: "64" oslist: windows executable: WW3_launcher.exe type: default - arguments: switch -DX12 config: betakey: default - osarch: '64' + osarch: "64" oslist: windows description: DirectX12 - description_loc: - english: DirectX12 executable: WW3_launcher.exe type: option1 - - arguments: '-Continent=DEV02 -log -NoMrac' + - arguments: "-Continent=DEV02 -log -NoMrac" config: betakey: development - osarch: '64' + osarch: "64" oslist: windows - executable: WW3\\Binaries\\Win64\\WW3-Win64-Shipping.exe + executable: "WW3\\\\Binaries\\\\Win64\\\\WW3-Win64-Shipping.exe" type: default -'674030': {} -'674040': {} -'674060': {} -'674090': +"674030": {} +"674040": {} +"674060": {} +"674090": installDir: Sky Haven launch: - - arguments: '-windowed' + - arguments: "-windowed" config: oslist: windows executable: SkyHaven.exe type: default - config: oslist: macos - executable: SkyHaven.app\\Contents\\MacOS\\SkyHaven + executable: "SkyHaven.app\\\\Contents\\\\MacOS\\\\SkyHaven" type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: SkyHaven.x64 type: default -'674110': {} -'674120': +"674110": {} +"674120": installDir: Cruentis The Murderer vol.1 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: CruentisTMV1-AlphaV1.exe type: none -'674130': +"674130": installDir: Bare Metal launch: - config: @@ -314315,7 +309512,7 @@ oslist: macos executable: BareMetal.app type: none -'674140': +"674140": installDir: Bugsnax launch: - config: @@ -314326,7 +309523,7 @@ oslist: macos executable: Bugsnax.app type: default -'674150': +"674150": installDir: SimonTheSorcerer launch: - config: @@ -314335,436 +309532,424 @@ type: default - config: oslist: windows - ownsdlc: '836840' + ownsdlc: "836840" description: Legacy Edition (English)- Voice Only - executable: simon1-en\\launch_game_win-voiceonly.bat + executable: "simon1-en\\\\launch_game_win-voiceonly.bat" type: option1 workingdir: simon1-en - config: oslist: macos - ownsdlc: '836840' + ownsdlc: "836840" description: Legacy Edition (English)- Voice Only - executable: simon1-en\\launch_game_mac-voiceonly.sh + executable: "simon1-en\\\\launch_game_mac-voiceonly.sh" type: option1 workingdir: simon1-en - config: oslist: linux - ownsdlc: '836840' + ownsdlc: "836840" description: Legacy Edition (English)- Voice Only - executable: simon1-en\\launch_game_linux-voiceonly.sh + executable: "simon1-en\\\\launch_game_linux-voiceonly.sh" type: option1 workingdir: simon1-en - config: oslist: windows - ownsdlc: '836840' + ownsdlc: "836840" description: Legacy Edition (English)- Subtitles Only - executable: simon1-en\\launch_game_win-subonly.bat + executable: "simon1-en\\\\launch_game_win-subonly.bat" type: option1 workingdir: simon1-en - config: oslist: macos - ownsdlc: '836840' + ownsdlc: "836840" description: Legacy Edition (English)- Subtitles Only - executable: simon1-en\\launch_game_mac-subonly.sh + executable: "simon1-en\\\\launch_game_mac-subonly.sh" type: option1 workingdir: simon1-en - config: oslist: linux - ownsdlc: '836840' + ownsdlc: "836840" description: Legacy Edition (English)- Subtitles Only - executable: simon1-en\\launch_game_linux-subonly.sh + executable: "simon1-en\\\\launch_game_linux-subonly.sh" type: option1 workingdir: simon1-en - config: oslist: windows - ownsdlc: '836841' + ownsdlc: "836841" description: Legacy Edition (German)- Voice Only - executable: simon1-de\\launch_game_win-voiceonly.bat + executable: "simon1-de\\\\launch_game_win-voiceonly.bat" type: option1 workingdir: simon1-de - config: oslist: macos - ownsdlc: '836841' + ownsdlc: "836841" description: Legacy Edition (German)- Voice Only - executable: simon1-de\\launch_game_mac-voiceonly.sh + executable: "simon1-de\\\\launch_game_mac-voiceonly.sh" type: option1 workingdir: simon1-de - config: oslist: linux - ownsdlc: '836841' + ownsdlc: "836841" description: Legacy Edition (German)- Voice Only - executable: simon1-de\\launch_game_linux-voiceonly.sh + executable: "simon1-de\\\\launch_game_linux-voiceonly.sh" type: option1 workingdir: simon1-de - config: oslist: windows - ownsdlc: '836841' + ownsdlc: "836841" description: Legacy Edition (German)- Subtitles Only - executable: simon1-de\\launch_game_win-subonly.bat + executable: "simon1-de\\\\launch_game_win-subonly.bat" type: option1 workingdir: simon1-de - config: oslist: macos - ownsdlc: '836841' + ownsdlc: "836841" description: Legacy Edition (German)- Subtitles Only - executable: simon1-de\\launch_game_mac-subonly.sh + executable: "simon1-de\\\\launch_game_mac-subonly.sh" type: option1 workingdir: simon1-de - config: oslist: linux - ownsdlc: '836841' + ownsdlc: "836841" description: Legacy Edition (German)- Subtitles Only - executable: simon1-de\\launch_game_linux-subonly.sh + executable: "simon1-de\\\\launch_game_linux-subonly.sh" type: option1 workingdir: simon1-de - config: oslist: windows - ownsdlc: '836842' + ownsdlc: "836842" description: Legacy Edition (French)- With Voice And Subtitles - executable: simon1-fr\\launch_game_win-voiceandsub.bat + executable: "simon1-fr\\\\launch_game_win-voiceandsub.bat" type: option1 workingdir: simon1-fr - config: oslist: macos - ownsdlc: '836842' + ownsdlc: "836842" description: Legacy Edition (French)- With Voice And Subtitles - executable: simon1-fr\\launch_game_mac-voiceandsub.sh + executable: "simon1-fr\\\\launch_game_mac-voiceandsub.sh" type: option1 workingdir: simon1-fr - config: oslist: linux - ownsdlc: '836842' + ownsdlc: "836842" description: Legacy Edition (French)- With Voice And Subtitles - executable: simon1-fr\\launch_game_linux-voiceandsub.sh + executable: "simon1-fr\\\\launch_game_linux-voiceandsub.sh" type: option1 workingdir: simon1-fr - config: oslist: windows - ownsdlc: '836842' + ownsdlc: "836842" description: Legacy Edition (French)- Subtitles Only - executable: simon1-fr\\launch_game_win-subonly.bat + executable: "simon1-fr\\\\launch_game_win-subonly.bat" type: option1 workingdir: simon1-fr - config: oslist: macos - ownsdlc: '836842' + ownsdlc: "836842" description: Legacy Edition (French)- Subtitles Only - executable: simon1-fr\\launch_game_mac-subonly.sh + executable: "simon1-fr\\\\launch_game_mac-subonly.sh" type: option1 workingdir: simon1-fr - config: oslist: linux - ownsdlc: '836842' + ownsdlc: "836842" description: Legacy Edition (French)- Subtitles Only - executable: simon1-fr\\launch_game_linux-subonly.sh + executable: "simon1-fr\\\\launch_game_linux-subonly.sh" type: option1 workingdir: simon1-fr - config: oslist: windows - ownsdlc: '836843' + ownsdlc: "836843" description: Legacy Edition (Spanish)- With Voice And Subtitles - executable: simon1-es\\launch_game_win-voiceandsub.bat + executable: "simon1-es\\\\launch_game_win-voiceandsub.bat" type: option1 workingdir: simon1-es - config: oslist: macos - ownsdlc: '836843' + ownsdlc: "836843" description: Legacy Edition (Spanish)- With Voice And Subtitles - executable: simon1-es\\launch_game_mac-voiceandsub.sh + executable: "simon1-es\\\\launch_game_mac-voiceandsub.sh" type: option1 workingdir: simon1-es - config: oslist: linux - ownsdlc: '836843' + ownsdlc: "836843" description: Legacy Edition (Spanish)- With Voice And Subtitles - executable: simon1-es\\launch_game_linux-voiceandsub.sh + executable: "simon1-es\\\\launch_game_linux-voiceandsub.sh" type: option1 workingdir: simon1-es - config: oslist: windows - ownsdlc: '836843' + ownsdlc: "836843" description: Legacy Edition (Spanish)- Subtitles Only - executable: simon1-es\\launch_game_win-subonly.bat + executable: "simon1-es\\\\launch_game_win-subonly.bat" type: option1 workingdir: simon1-es - config: oslist: macos - ownsdlc: '836843' + ownsdlc: "836843" description: Legacy Edition (Spanish)- Subtitles Only - executable: simon1-es\\launch_game_mac-subonly.sh + executable: "simon1-es\\\\launch_game_mac-subonly.sh" type: option1 workingdir: simon1-es - config: oslist: linux - ownsdlc: '836843' + ownsdlc: "836843" description: Legacy Edition (Spanish)- Subtitles Only - executable: simon1-es\\launch_game_linux-subonly.sh + executable: "simon1-es\\\\launch_game_linux-subonly.sh" type: option1 workingdir: simon1-es - config: oslist: windows - ownsdlc: '836844' + ownsdlc: "836844" description: Legacy Edition (Italian)- With Voice And Subtitles - executable: simon1-it\\launch_game_win-voiceandsub.bat + executable: "simon1-it\\\\launch_game_win-voiceandsub.bat" type: option1 workingdir: simon1-it - config: oslist: macos - ownsdlc: '836844' + ownsdlc: "836844" description: Legacy Edition (Italian)- With Voice And Subtitles - executable: simon1-it\\launch_game_mac-voiceandsub.sh + executable: "simon1-it\\\\launch_game_mac-voiceandsub.sh" type: option1 workingdir: simon1-it - config: oslist: linux - ownsdlc: '836844' + ownsdlc: "836844" description: Legacy Edition (Italian)- With Voice And Subtitles - executable: simon1-it\\launch_game_linux-voiceandsub.sh + executable: "simon1-it\\\\launch_game_linux-voiceandsub.sh" type: option1 workingdir: simon1-it - config: oslist: windows - ownsdlc: '836844' + ownsdlc: "836844" description: Legacy Edition (Italian)- Subtitles Only - executable: simon1-it\\launch_game_win-subonly.bat + executable: "simon1-it\\\\launch_game_win-subonly.bat" type: option1 workingdir: simon1-it - config: oslist: macos - ownsdlc: '836844' + ownsdlc: "836844" description: Legacy Edition (Italian)- Subtitles Only - executable: simon1-it\\launch_game_mac-subonly.sh + executable: "simon1-it\\\\launch_game_mac-subonly.sh" type: option1 workingdir: simon1-it - config: oslist: linux - ownsdlc: '836844' + ownsdlc: "836844" description: Legacy Edition (Italian)- Subtitles Only - executable: simon1-it\\launch_game_linux-subonly.sh + executable: "simon1-it\\\\launch_game_linux-subonly.sh" type: option1 workingdir: simon1-it - config: oslist: windows - ownsdlc: '836845' + ownsdlc: "836845" description: Legacy Edition (Russian)- With Voice And Subtitles - executable: simon1-ru\\launch_game_win-voiceandsub.bat + executable: "simon1-ru\\\\launch_game_win-voiceandsub.bat" type: option1 workingdir: simon1-ru - config: oslist: macos - ownsdlc: '836845' + ownsdlc: "836845" description: Legacy Edition (Russian)- With Voice And Subtitles - executable: simon1-ru\\launch_game_mac-voiceandsub.sh + executable: "simon1-ru\\\\launch_game_mac-voiceandsub.sh" type: option1 workingdir: simon1-ru - config: oslist: linux - ownsdlc: '836845' + ownsdlc: "836845" description: Legacy Edition (Russian)- With Voice And Subtitles - executable: simon1-ru\\launch_game_linux-voiceandsub.sh + executable: "simon1-ru\\\\launch_game_linux-voiceandsub.sh" type: option1 workingdir: simon1-ru - config: oslist: windows - ownsdlc: '836845' + ownsdlc: "836845" description: Legacy Edition (Russian)- Subtitles Only - executable: simon1-ru\\launch_game_win-subonly.bat + executable: "simon1-ru\\\\launch_game_win-subonly.bat" type: option1 workingdir: simon1-ru - config: oslist: macos - ownsdlc: '836845' + ownsdlc: "836845" description: Legacy Edition (Russian)- Subtitles Only - executable: simon1-ru\\launch_game_mac-subonly.sh + executable: "simon1-ru\\\\launch_game_mac-subonly.sh" type: option1 workingdir: simon1-ru - config: oslist: linux - ownsdlc: '836845' + ownsdlc: "836845" description: Legacy Edition (Russian)- Subtitles Only - executable: simon1-ru\\launch_game_linux-subonly.sh + executable: "simon1-ru\\\\launch_game_linux-subonly.sh" type: option1 workingdir: simon1-ru - config: oslist: windows - ownsdlc: '836846' + ownsdlc: "836846" description: Legacy Edition (Hebrew)- With Voice And Subtitles - executable: simon1-he\\launch_game_win-voiceandsub.bat + executable: "simon1-he\\\\launch_game_win-voiceandsub.bat" type: option1 workingdir: simon1-he - config: oslist: macos - ownsdlc: '836846' + ownsdlc: "836846" description: Legacy Edition (Hebrew)- With Voice And Subtitles - executable: simon1-he\\launch_game_mac-voiceandsub.sh + executable: "simon1-he\\\\launch_game_mac-voiceandsub.sh" type: option1 workingdir: simon1-he - config: oslist: linux - ownsdlc: '836846' + ownsdlc: "836846" description: Legacy Edition (Hebrew)- With Voice And Subtitles - executable: simon1-he\\launch_game_linux-voiceandsub.sh + executable: "simon1-he\\\\launch_game_linux-voiceandsub.sh" type: option1 workingdir: simon1-he - config: oslist: windows - ownsdlc: '836846' + ownsdlc: "836846" description: Legacy Edition (Hebrew)- Subtitles Only - executable: simon1-he\\launch_game_win-subonly.bat + executable: "simon1-he\\\\launch_game_win-subonly.bat" type: option1 workingdir: simon1-he - config: oslist: macos - ownsdlc: '836846' + ownsdlc: "836846" description: Legacy Edition (Hebrew)- Subtitles Only - executable: simon1-he\\launch_game_mac-subonly.sh + executable: "simon1-he\\\\launch_game_mac-subonly.sh" type: option1 workingdir: simon1-he - config: oslist: linux - ownsdlc: '836846' + ownsdlc: "836846" description: Legacy Edition (Hebrew)- Subtitles Only - executable: simon1-he\\launch_game_linux-subonly.sh + executable: "simon1-he\\\\launch_game_linux-subonly.sh" type: option1 workingdir: simon1-he - config: oslist: windows - ownsdlc: '1923340' + ownsdlc: "1923340" description: Legacy Edition (Hebrew Dub)- With Voice and Subtitles - description_loc: - english: Legacy Edition (Hebrew Dub)- With Voice and Subtitles - executable: simon1-he-dub\\launch_game_win-voiceandsub.bat + executable: "simon1-he-dub\\\\launch_game_win-voiceandsub.bat" type: option1 workingdir: simon1-he-dub - config: oslist: macos - ownsdlc: '1923340' + ownsdlc: "1923340" description: Legacy Edition (Hebrew Dub)- With Voice and Subtitles - description_loc: - english: Legacy Edition (Hebrew Dub)- With Voice and Subtitles - executable: simon1-he-dub\\launch_game_mac-voiceandsub.sh + executable: "simon1-he-dub\\\\launch_game_mac-voiceandsub.sh" type: option1 workingdir: simon1-he-dub - config: oslist: linux - ownsdlc: '1923340' + ownsdlc: "1923340" description: Legacy Edition (Hebrew Dub)- With Voice and Subtitles - description_loc: - english: Legacy Edition (Hebrew Dub)- With Voice and Subtitles - executable: simon1-he-dub\\launch_game_linux-voiceandsub.sh + executable: "simon1-he-dub\\\\launch_game_linux-voiceandsub.sh" type: option1 workingdir: simon1-he-dub - config: oslist: windows - ownsdlc: '1923340' + ownsdlc: "1923340" description: Legacy Edition (Hebrew Dub)- Subtitles Only - description_loc: - english: Legacy Edition (Hebrew Dub)- Subtitles Only - executable: simon1-he-dub\\launch_game_win-subonly.bat + executable: "simon1-he-dub\\\\launch_game_win-subonly.bat" type: option1 workingdir: simon1-he-dub - config: oslist: macos - ownsdlc: '1923340' + ownsdlc: "1923340" description: Legacy Edition (Hebrew Dub)- Subtitles Only - description_loc: - english: Legacy Edition (Hebrew Dub)- Subtitles Only - executable: simon1-he-dub\\launch_game_mac-subonly.sh + executable: "simon1-he-dub\\\\launch_game_mac-subonly.sh" type: option1 workingdir: simon1-he-dub - config: oslist: linux - ownsdlc: '1923340' + ownsdlc: "1923340" description: Legacy Edition (Hebrew Dub)- Subtitles Only - description_loc: - english: Legacy Edition (Hebrew Dub)- Subtitles Only - executable: simon1-he-dub\\launch_game_linux-subonly.sh + executable: "simon1-he-dub\\\\launch_game_linux-subonly.sh" type: option1 workingdir: simon1-he-dub -'674160': +"674160": installDir: Slasher VR launch: - config: oslist: windows executable: SlasherVR.exe type: vr -'674170': +"674170": installDir: DriftForce launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: DriftForce.exe type: default -'674180': +"674180": installDir: AliveInVR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: AliveInVR.exe type: vr -'674190': +"674190": installDir: Conquest of the New World launch: - config: oslist: windows executable: Launch Conquest of the New World.bat type: default - - arguments: '-conf \"./dosboxConquest.conf\" -conf \"./dosboxConquest_single.conf\" -noconsole' + - arguments: "-conf \\\"./dosboxConquest.conf\\\" -conf \\\"./dosboxConquest_single.conf\\\" -noconsole" config: oslist: macos executable: DOSBox/dosbox.app/Contents/MacOS/DOSBox type: default - - arguments: '-conf \"./dosboxConquest.conf\" -conf \"./dosboxConquest_single.conf\" -noconsole' + - arguments: "-conf \\\"./dosboxConquest.conf\\\" -conf \\\"./dosboxConquest_single.conf\\\" -noconsole" config: oslist: linux executable: dosbox/dosbox type: default -'674200': {} -'674210': +"674200": {} +"674210": installDir: Rush to Adventure launch: - config: oslist: windows executable: Rush to Adventure.exe type: default -'674220': +"674220": installDir: ClickBit launch: - config: oslist: windows executable: ClickBit.exe type: none -'674230': +"674230": installDir: Light of the Mountain launch: - config: oslist: windows - executable: LightoftheMountainSteam\\LightoftheMountain.exe + executable: "LightoftheMountainSteam\\\\LightoftheMountain.exe" type: default -'674250': +"674250": installDir: Resurgence launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Resurgence.exe type: default -'674310': +"674310": installDir: THE 2048 launch: - config: oslist: windows - description: '0' + description: "0" executable: The_2048.exe type: default -'674320': +"674320": installDir: Brimstone launch: - executable: Brimstone.exe type: none -'674330': +"674330": installDir: Defend the Cake launch: - config: @@ -314773,9 +309958,9 @@ type: default - config: oslist: macos - executable: Cake.app\\Contents\\MacOS\\Cake + executable: "Cake.app\\\\Contents\\\\MacOS\\\\Cake" type: default -'674360': +"674360": installDir: Orb Flo launch: - config: @@ -314786,7 +309971,7 @@ oslist: linux executable: orb_flo.x86_64 type: default -'674370': +"674370": installDir: CoffeeBiz launch: - config: @@ -314795,9 +309980,9 @@ type: default - config: oslist: macos - executable: Alpha2mac.app\\Contents\\MacOS\\Alpha2mac + executable: "Alpha2mac.app\\\\Contents\\\\MacOS\\\\Alpha2mac" type: default -'674380': +"674380": installDir: Delude - Succubus Prison launch: - config: @@ -314809,34 +309994,34 @@ executable: DeludeLinux32/nw type: default - config: - osarch: '64' + osarch: "64" oslist: macos description: Version OSX 64-Bit - executable: DeludeOSX\\delude(succubusprison).app\\Contents\\MacOS\\nwjs + executable: "DeludeOSX\\\\delude(succubusprison).app\\\\Contents\\\\MacOS\\\\nwjs" type: none -'674390': +"674390": installDir: Bildo launch: - config: oslist: windows executable: nw.exe type: default -'674400': +"674400": installDir: Einar launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Einar.exe type: default -'674420': +"674420": installDir: Piece of Memory launch: - config: oslist: windows executable: PoM_E.exe type: none -'674440': +"674440": installDir: Skipper launch: - config: @@ -314851,50 +310036,50 @@ oslist: macos executable: skipper.app type: default -'674450': +"674450": installDir: BlindWitch_PeekWindow launch: - config: oslist: windows executable: BlindWitch_PeekWindow.exe type: none -'674480': +"674480": installDir: Unformed launch: - config: oslist: windows executable: Unformed.exe type: default -'674500': +"674500": installDir: Total Tank Simulator launch: - config: oslist: windows executable: TotalTankSim.exe type: none -'674520': +"674520": installDir: fightnrage launch: - config: oslist: windows executable: FIGHT_N_RAGE.exe type: default -'674530': {} -'674550': +"674530": {} +"674550": installDir: SweedBed launch: - config: oslist: windows - executable: \\SweetBed\\MyProject.exe + executable: "\\\\SweetBed\\\\MyProject.exe" type: default -'674570': +"674570": installDir: Bear Football launch: - config: oslist: windows executable: Bear Football.exe type: none -'674580': +"674580": installDir: Fare Thee Well launch: - config: @@ -314909,125 +310094,117 @@ oslist: macos executable: Fare-Thee-Well.app type: default -'674590': +"674590": installDir: WakeUp launch: - config: oslist: windows executable: WakeUp.exe type: default -'674610': {} -'674630': +"674610": {} +"674630": installDir: Town doubt launch: - config: oslist: windows executable: Game_boxed.exe type: default -'674640': {} -'674650': {} -'674690': +"674640": {} +"674650": {} +"674690": installDir: Project Xandata launch: - config: betakey: default - osarch: '64' + osarch: "64" oslist: windows executable: start_protected_game.exe type: default - config: betakey: epic-grant-rel - osarch: '64' + osarch: "64" oslist: windows description: Project Xandata (Epic MegaGrant Build) - description_loc: - english: Project Xandata (Epic MegaGrant Build) executable: XD.exe type: option1 - config: - osarch: '64' + osarch: "64" oslist: windows executable: start_protected_game.exe type: default - config: betakey: demo-staging - osarch: '64' + osarch: "64" oslist: windows description: Project Xandata (non-EAC) - description_loc: - english: Project Xandata (non-EAC) executable: XD.exe type: option1 - config: betakey: demo - osarch: '64' + osarch: "64" oslist: windows description: Project Xandata (non-EAC) - description_loc: - english: Project Xandata (non-EAC) executable: XD.exe type: option1 - config: betakey: dev-voicechat - osarch: '64' + osarch: "64" oslist: windows description: Project Xandata (non-EAC) - description_loc: - english: Project Xandata (non-EAC) executable: XD.exe type: option1 -'674730': +"674730": installDir: MRAK launch: - config: oslist: windows executable: nw.exe type: default -'674750': +"674750": installDir: Yet Another Zombie Defense HD launch: - config: oslist: windows executable: YAZD_HD.exe type: default -'674760': {} -'674800': +"674760": {} +"674800": installDir: Tailwind launch: - config: oslist: windows executable: TailWind.exe type: default -'674820': {} -'674840': +"674820": {} +"674840": installDir: The Essence Reaper Ritual launch: - config: oslist: windows executable: content.exe type: default -'674850': +"674850": installDir: 2MD VR Football launch: - - arguments: \"-show-screen-selector\" + - arguments: "\\\"-show-screen-selector\\\"" config: oslist: windows description: 2MD Desktop Configuration executable: 2md.exe type: config - - arguments: '-screen-fullscreen 1' + - arguments: "-screen-fullscreen 1" config: oslist: windows description: 2MD (Fullscreen Social Display) executable: 2md.exe type: vr - - arguments: '-screen-fullscreen 0' + - arguments: "-screen-fullscreen 0" config: oslist: windows description: 2MD (Windowed Social Display) executable: 2md.exe type: vr -'674860': +"674860": installDir: Bystander launch: - config: @@ -315042,29 +310219,29 @@ oslist: linux executable: nw type: none -'674890': +"674890": installDir: Mechsprofit launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Mechs.exe type: default -'674900': +"674900": installDir: Toys Gun Fire Boom launch: - config: oslist: windows executable: ToysGun.exe type: default -'674910': +"674910": installDir: Testbed Terror launch: - config: oslist: windows executable: TBTEST.exe type: none -'674930': +"674930": installDir: Boyfriend Dungeon launch: - config: @@ -315073,13 +310250,13 @@ type: none - config: oslist: macos - executable: BoyfriendDungeon.app\\Contents\\MacOS\\BoyfriendDungeon + executable: "BoyfriendDungeon.app\\\\Contents\\\\MacOS\\\\BoyfriendDungeon" type: default - config: oslist: linux executable: BoyfriendDungeon.x86_64 type: default -'674940': +"674940": installDir: StickFightTheGame launch: - config: @@ -315090,79 +310267,79 @@ oslist: macos executable: StickFight.app/Contents/MacOS/StickFight type: none -'674960': +"674960": installDir: Gods of the Fallen Land launch: - config: oslist: windows executable: GotFL.exe type: default -'674980': +"674980": installDir: Dirty Fighter 1 launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: DirtyFighter.exe type: none -'675010': +"675010": installDir: MudRunner launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: MudRunner.exe type: default -'675030': +"675030": installDir: Super Samurai Rampage launch: - config: oslist: windows executable: SuperSamuraiRampage.exe type: default -'675040': +"675040": installDir: Torn Familjen launch: - config: oslist: windows executable: Game.exe type: default -'675120': +"675120": installDir: Crusader Crash launch: - config: oslist: windows executable: CrusaderCrash.exe type: default -'675130': +"675130": installDir: Aegyptus_content launch: - config: oslist: windows executable: L_C_AEG.exe type: none -'675140': +"675140": installDir: Laika 2.0 launch: - config: oslist: windows executable: laika.exe type: default -'675160': +"675160": installDir: Soldier Killer launch: - config: oslist: windows executable: soldier_killer.exe type: default -'675170': +"675170": installDir: 303 Squadron launch: - config: oslist: windows executable: Squadron303.exe type: none -'675180': +"675180": installDir: Choice of Zombies launch: - config: @@ -315177,28 +310354,28 @@ oslist: linux executable: ChoiceOfZombies type: none -'675210': +"675210": installDir: CastleMiner Warfare launch: - config: oslist: windows executable: CastleMinerWarfare.exe type: default -'675220': +"675220": installDir: SoulFrost launch: - executable: SoulFrost.exe type: default -'675230': +"675230": installDir: Secondhand Lands launch: - arguments: steam 216.55.141.224 47727 config: - osarch: '64' + osarch: "64" oslist: windows executable: Client.exe type: none -'675240': +"675240": installDir: Shining Song Starnova launch: - config: @@ -315213,11 +310390,11 @@ oslist: linux executable: ShiningSongStarnova.sh type: default -'675260': +"675260": installDir: Batman The Enemy Within - The Telltale Series launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Batman2.exe type: default @@ -315227,51 +310404,51 @@ type: default - config: betakey: intel - osarch: '64' + osarch: "64" oslist: windows description: Batman2 Dev executable: Batman2d.exe type: option1 -'675270': +"675270": installDir: Rockets are Super Hard launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Rockets are Super Hard.exe type: default -'675330': {} -'675360': +"675330": {} +"675360": installDir: Forbidden Love launch: - - arguments: '-windowed' + - arguments: "-windowed" config: oslist: windows executable: ForbiddenLove.exe type: none -'675370': +"675370": installDir: Gulu launch: - executable: Gulu.exe type: default -'675410': +"675410": installDir: Eternal Essence launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Eternal_Essence.exe type: default -'675450': {} -'675460': {} -'675480': +"675450": {} +"675460": {} +"675480": installDir: WitchThief launch: - config: oslist: windows executable: witchthief.exe type: default -'675490': +"675490": installDir: Artifact Adventure Gaiden launch: - config: @@ -315283,22 +310460,22 @@ oslist: windows executable: aag_test.exe type: default -'675500': +"675500": installDir: ACT IT OUT! A Game of Charades launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ActItOut.exe type: default -'675510': +"675510": installDir: Kingdom City Drowning Episode 1 - The Champion launch: - config: oslist: windows executable: KCD_S01E01.exe type: vr -'675530': +"675530": installDir: M1 A Death in the Desert launch: - config: @@ -315313,8 +310490,8 @@ oslist: linux executable: M1 A Death in the Desert.sh type: default -'675550': {} -'675560': +"675550": {} +"675560": installDir: Navyfield launch: - config: @@ -315322,39 +310499,37 @@ executable: FleetMissionLauncher.exe type: default - description: Dev Client - description_loc: - english: Dev Client executable: dev.exe nameLocalized: schinese: 舰队使命 大海战2 tchinese: NAVYFIELD 諜海雄師 -'675620': +"675620": installDir: Alter Cosmos launch: - executable: launcher/launcher.exe type: default workingdir: launcher -'675630': +"675630": installDir: Super POTUS Trump launch: - config: oslist: windows executable: SuperPotusTrump.exe type: default -'675640': +"675640": installDir: The Lonely Gorilla launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Gorilla.exe type: default -'675650': +"675650": installDir: Tales of Blood and Sand launch: - executable: Game.exe type: none -'675660': +"675660": installDir: Relic Keepers launch: - config: @@ -315369,33 +310544,33 @@ oslist: linux executable: Relic Keepers.x86 type: default -'675670': {} -'675680': {} -'675710': {} -'675720': +"675670": {} +"675680": {} +"675710": {} +"675720": installDir: Direct launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Direct.exe type: default -'675730': +"675730": installDir: Katharsis launch: - config: oslist: windows executable: Katharsis.exe type: default -'675750': +"675750": installDir: GameDevDan vs Life launch: - config: oslist: windows executable: GameDevDan vs Life.exe type: default -'675760': {} -'675810': +"675760": {} +"675810": installDir: Bang Howdy launch: - config: @@ -315411,12 +310586,12 @@ oslist: linux executable: BangHowdyLinux type: option1 -'675830': +"675830": installDir: Pulses - Crystal Journeys launch: - executable: PulsesCrystalJourneys.exe type: none -'675870': +"675870": installDir: Ruby Hunter launch: - config: @@ -315427,7 +310602,7 @@ oslist: macos executable: Ruby Hunter.app/Contents/MacOS/Ruby Hunter type: default -'675890': +"675890": installDir: Within a Rose launch: - config: @@ -315440,9 +310615,9 @@ type: default - config: oslist: macos - executable: WithinaRose.app\\Contents\\MacOS\\WithinaRose + executable: "WithinaRose.app\\\\Contents\\\\MacOS\\\\WithinaRose" type: default -'675910': +"675910": installDir: VisualOut launch: - config: @@ -315451,20 +310626,20 @@ type: default - config: oslist: macos - executable: visualout.app\\Contents\\MacOS\\nwjs + executable: "visualout.app\\\\Contents\\\\MacOS\\\\nwjs" type: default - config: oslist: linux executable: nw type: default -'675940': +"675940": installDir: SpaceShot launch: - config: oslist: windows executable: SpaceShot.exe type: default -'675950': +"675950": installDir: Peninsular War Battles launch: - config: @@ -315475,28 +310650,28 @@ oslist: macos executable: PeninsularWar.app type: none -'675960': +"675960": installDir: Matryoshka Strike launch: - config: oslist: windows executable: Matryoshka Strike.exe type: default -'675970': +"675970": installDir: Powerslide launch: - config: oslist: windows executable: powerslide.exe type: default -'675980': +"675980": installDir: Atomic Sky launch: - config: oslist: windows executable: AtomicSky.exe type: default -'675990': +"675990": installDir: Questr launch: - config: @@ -315504,16 +310679,16 @@ executable: Questr.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Questr.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Questr.x86 type: default -'676000': +"676000": installDir: Bloody Mice launch: - config: @@ -315524,37 +310699,37 @@ oslist: linux executable: BloodyMice.exe type: default -'676030': +"676030": installDir: Eternal Starlight VR launch: - - arguments: '-windowed' + - arguments: "-windowed" config: oslist: windows executable: Eternal Starlight.exe type: vr -'676060': {} -'676070': - installDir: an Orc's Tale Kriegsruf +"676060": {} +"676070": + installDir: "an Orc's Tale Kriegsruf" launch: - config: oslist: windows executable: Game.exe type: default -'676090': +"676090": installDir: LOM神医魔导 launch: - config: oslist: windows executable: Launcher.exe type: default -'676120': +"676120": installDir: SangoGuardianCG launch: - config: oslist: windows - executable: bin\\Release\\Fighter.exe + executable: "bin\\\\Release\\\\Fighter.exe" type: default -'676130': +"676130": installDir: Without Within 3 launch: - config: @@ -315569,58 +310744,58 @@ oslist: linux executable: wowi3.sh type: none -'676170': +"676170": installDir: Ungrounded Ripple Unleashed VR launch: - executable: Ungrounded Ripple Unleashed VR.exe type: vr -'676180': +"676180": installDir: Spaceguard 80 launch: - config: oslist: windows executable: game.exe type: default -'676200': {} -'676210': +"676200": {} +"676210": installDir: Story of the Surviuvor Prisoner launch: - config: oslist: windows executable: Game.exe type: none -'676230': {} -'676240': +"676230": {} +"676240": installDir: TAURONOS launch: - config: oslist: windows executable: TAURONOS.exe type: default -'676280': {} -'676300': {} -'676310': +"676280": {} +"676300": {} +"676310": installDir: Deathly Survival launch: - config: oslist: windows executable: Deadly zone.exe type: default -'676320': +"676320": installDir: LetterSetter launch: - config: oslist: windows executable: LetterSetter.exe type: default -'676340': +"676340": installDir: Undarkened launch: - config: oslist: windows executable: Undarkened.exe type: none -'676410': +"676410": installDir: Embrace of Ocean Story of Hope launch: - config: @@ -315631,7 +310806,7 @@ oslist: macos executable: EmbraseOfOceane.app type: default -'676420': +"676420": installDir: SiNKR launch: - config: @@ -315650,7 +310825,7 @@ japanese: SiNKR / シズめル schinese: SiNKR / 冰钩 tchinese: SiNKR / 冰钩 -'676430': +"676430": installDir: PUSH launch: - config: @@ -315665,7 +310840,7 @@ oslist: linux executable: push.x86_64 type: default -'676440': +"676440": installDir: Trash Squad launch: - config: @@ -315674,16 +310849,16 @@ executable: TrashSquad.exe type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: TrashSquad.x86_64 type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: TrashSquad.x86 type: none -'676450': +"676450": installDir: Double Memory launch: - config: @@ -315694,19 +310869,19 @@ oslist: macos executable: Double Memory.app type: default -'676460': +"676460": installDir: Sellsword VR launch: - config: oslist: windows executable: SellswordVR.exe type: vr -'676470': +"676470": installDir: Sömmad launch: - executable: SOMMAD.exe type: vr -'676480': +"676480": installDir: Jettomero launch: - config: @@ -315719,16 +310894,16 @@ executable: Jettomero.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Jettomero.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Jettomero.x86 type: default -'676490': +"676490": installDir: Heroes of Civilizations launch: - config: @@ -315741,7 +310916,7 @@ description: Start launcher executable: ModManager.exe type: editor -'676500': +"676500": installDir: Time Warpers launch: - config: @@ -315752,67 +310927,67 @@ oslist: macos executable: TimeWarpers.app type: none -'676510': +"676510": installDir: Industrial Petting launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: industrial-petting.exe type: default - config: oslist: macos - executable: industrial-petting.app\\Contents\\MacOS\\industrial-petting + executable: "industrial-petting.app\\\\Contents\\\\MacOS\\\\industrial-petting" type: none - config: oslist: linux executable: industrial-petting.x86 type: none - - arguments: '-vrmode vive' + - arguments: "-vrmode vive" config: oslist: windows executable: industrial-petting.exe type: vr -'676520': +"676520": installDir: Piece of Memory 2Prologue launch: - config: oslist: windows executable: PoM2_prologue.exe type: none -'676530': {} -'676540': +"676530": {} +"676540": installDir: Mercfighter launch: - config: oslist: windows executable: Merc Fighter.exe type: default -'676550': +"676550": installDir: Crash Test Billy launch: - config: oslist: windows executable: CrashTestBilly.exe type: none -'676570': +"676570": installDir: Crazy Bowling launch: - config: oslist: windows executable: bowl.exe type: none -'676580': +"676580": installDir: NEO Impossible Bosses launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: x64/NeoImpossibleBosses.exe type: default workingdir: x64 -'676590': {} -'676600': +"676590": {} +"676600": installDir: Fuzzy Quest launch: - config: @@ -315821,9 +310996,9 @@ type: none - config: oslist: macos - executable: FuzzysQuest.app\\Contents\\MacOS\\FuzzysQuest + executable: "FuzzysQuest.app\\\\Contents\\\\MacOS\\\\FuzzysQuest" type: default -'676620': +"676620": installDir: Robots launch: - config: @@ -315834,7 +311009,7 @@ oslist: macos executable: Robots.app type: none -'676630': +"676630": installDir: Attentat 1942 launch: - config: @@ -315843,28 +311018,28 @@ type: default - config: oslist: macos - executable: Attentat1942.app\\Contents\\MacOS\\Attentat 1942 + executable: "Attentat1942.app\\\\Contents\\\\MacOS\\\\Attentat 1942" type: default - config: oslist: linux executable: Attentat_1942 type: default -'676640': {} -'676680': +"676640": {} +"676680": installDir: Mircron Wars XR launch: - config: oslist: windows executable: Mircron Wars XR_32_SPv1.5_Data.exe type: default -'676690': +"676690": installDir: VREscapeThePuzzleRoom launch: - config: oslist: windows executable: VREscapeThePuzzleRoom.exe type: vr -'676700': +"676700": installDir: Heroes of Delum launch: - config: @@ -315872,21 +311047,21 @@ executable: HeroesOfDelum.exe type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: HeroesOfDelum.x86_64 type: none - config: oslist: macos - executable: HeroesOfDelum.app\\Contents\\MacOS\\HeroesOfDelum + executable: "HeroesOfDelum.app\\\\Contents\\\\MacOS\\\\HeroesOfDelum" type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: HeroesOfDelum.x86 type: none -'676710': {} -'676720': +"676710": {} +"676720": installDir: Bug Killers launch: - config: @@ -315901,7 +311076,7 @@ oslist: linux executable: Bug Killers.x86 type: default -'676730': +"676730": installDir: Behind The Door launch: - config: @@ -315912,8 +311087,8 @@ oslist: windows executable: Behind The Door.exe type: default -'676740': {} -'676760': +"676740": {} +"676760": installDir: Noise launch: - config: @@ -315930,15 +311105,15 @@ oslist: windows executable: Noise.exe type: vr -'676770': +"676770": installDir: IslandDash launch: - config: oslist: windows executable: IslandDash.exe type: default -'676790': {} -'676800': +"676790": {} +"676800": installDir: Dark Descent The Blue Rose launch: - config: @@ -315946,7 +311121,7 @@ description: Launch executable: DarkDescentBlueRose.exe type: none -'676820': +"676820": installDir: Subsurface Circular launch: - config: @@ -315957,7 +311132,7 @@ oslist: windows executable: Subsurface Circular.exe type: none -'676830': +"676830": installDir: Xenomarine launch: - config: @@ -315965,7 +311140,7 @@ executable: Xenomarine.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Xenomarine.x86 type: default @@ -315974,24 +311149,24 @@ executable: Xenomarine.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Xenomarine.x86_64 type: default -'676840': +"676840": installDir: ContagionVR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ContagionVR.exe type: vr - config: - osarch: '64' + osarch: "64" oslist: windows executable: ContagionVR.exe type: othervr -'676850': +"676850": installDir: Guardian launch: - config: @@ -316002,21 +311177,21 @@ oslist: linux executable: nw type: default -'676880': +"676880": installDir: Tales of Glacier (VR) launch: - config: oslist: windows executable: TalesOfGlacier.exe type: vr -'676910': +"676910": installDir: Magic Potion Destroyer launch: - executable: Game.exe type: default nameLocalized: japanese: マジックポーション・デストロイヤー -'676930': +"676930": installDir: TwinCop launch: - config: @@ -316025,9 +311200,9 @@ type: default - config: oslist: macos - executable: TwinCop.app\\Contents\\MacOS\\TwinCop + executable: "TwinCop.app\\\\Contents\\\\MacOS\\\\TwinCop" type: default -'676960': +"676960": installDir: Hotlap Heroes launch: - config: @@ -316038,20 +311213,20 @@ oslist: macos executable: HotlapHeroes.app type: default -'676990': +"676990": installDir: TheStone launch: - config: oslist: windows executable: WOTC.exe type: vr -'677000': {} -'677010': +"677000": {} +"677010": installDir: Darts VR launch: - executable: Darts.exe type: vr -'677020': +"677020": installDir: Eventide 3 Legacy of Legends launch: - config: @@ -316060,13 +311235,13 @@ executable: Eventide3.exe type: none - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: Eventide3_i386 type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Eventide3_amd64 @@ -316076,87 +311251,87 @@ description: Launch executable: mac_steam.app/Contents/MacOS/mac_steam type: none -'677030': +"677030": installDir: Draw Souls launch: - config: oslist: windows executable: Draw Souls.exe type: none -'677040': +"677040": installDir: Cloudborn launch: - - arguments: '-vrmode OpenVR' + - arguments: "-vrmode OpenVR" config: oslist: windows description: Cloudborn executable: Cloudborn.exe type: vr - - arguments: '-vrmode Oculus' + - arguments: "-vrmode Oculus" config: oslist: windows description: Cloudborn executable: Cloudborn.exe type: othervr -'677050': {} -'677060': +"677050": {} +"677060": installDir: Into the Rhythm launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: IntoTheRhythm.exe type: vr - config: - osarch: '64' + osarch: "64" oslist: windows description: 2D Editor Tool executable: Editor/InToTheRhythmEditorTool.exe type: vr workingdir: Editor - config: - osarch: '64' + osarch: "64" oslist: windows description: Mod Upload Tool executable: Mod Upload Tool/SteamWorksUploadTool.exe type: vr -'677080': +"677080": installDir: DungeonManagerZVR launch: - config: oslist: windows executable: ZV_DG_steam.exe type: none -'677110': {} -'677120': +"677110": {} +"677120": installDir: Heroes of Hammerwatch launch: - config: oslist: windows - description: 'Heroes of Hammerwatch (OpenGL, recommended)' + description: "Heroes of Hammerwatch (OpenGL, recommended)" executable: HWR.exe type: default - arguments: dx config: oslist: windows - description: 'Heroes of Hammerwatch (DirectX, alternate)' + description: "Heroes of Hammerwatch (DirectX, alternate)" executable: HWR.exe type: none - config: oslist: linux executable: HWR type: default -'677140': {} -'677160': +"677140": {} +"677160": installDir: We Were Here Too launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: We Were Here Too.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: We Were Here Too.exe type: default @@ -316165,47 +311340,47 @@ executable: We Were Here Too.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: We Were Here Too.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: We Were Here Too.x86 type: default -'677170': {} -'677180': +"677170": {} +"677180": installDir: Pantropy launch: - config: oslist: windows executable: PantropyClient.exe type: default -'677190': +"677190": installDir: HATCHICK launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: HATCHICK.exe type: vr -'677200': {} -'677210': +"677200": {} +"677210": installDir: Gift to Humanity launch: - config: oslist: windows executable: Gift To Humanity.exe type: none -'677220': +"677220": installDir: Silver Tale launch: - config: oslist: windows executable: SilverTale.exe type: none -'677230': +"677230": installDir: Around the Words launch: - config: @@ -316220,50 +311395,50 @@ oslist: linux executable: atw type: none -'677240': +"677240": installDir: Trespassers launch: - config: oslist: windows executable: Trespassers.exe type: default -'677280': +"677280": installDir: Sigi launch: - config: oslist: windows executable: Sigi.exe type: default -'677300': +"677300": installDir: Ghosts of Miami launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: GhostsOfMiami.exe type: default - config: oslist: macos - executable: GhostsOfMiami.app\\Contents\\MacOS\\GhostsOfMiami + executable: "GhostsOfMiami.app\\\\Contents\\\\MacOS\\\\GhostsOfMiami" type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: GhostsOfMiami.x86_64 type: default -'677330': +"677330": installDir: Theseus launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Theseus.exe type: vr -'677340': +"677340": installDir: The Colonists launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: TheColonists.exe @@ -316277,67 +311452,65 @@ description: Launch executable: TheColonists.x86 type: none -'677380': +"677380": installDir: Disco Destruction launch: - config: oslist: windows executable: discodestruction.exe type: vr -'677450': +"677450": installDir: Medieval Shopkeeper Simulator launch: - executable: Medieval Shopkeeper Simulator.exe type: none -'677480': +"677480": installDir: Outpost Zero launch: - - executable: WindowsNoEditor\\SurvivalGame.exe + - executable: "WindowsNoEditor\\\\SurvivalGame.exe" type: default -'677520': +"677520": installDir: Guilt Battle Arena launch: - config: oslist: windows executable: Guilt Battle Arena.exe type: default -'677590': +"677590": installDir: Hope launch: - config: oslist: windows executable: Hope.exe type: default -'677610': +"677610": installDir: Penn & Teller VR launch: - - executable: HawthornGame\\Binaries\\Win64\\PennAndTellerVR.exe + - executable: "HawthornGame\\\\Binaries\\\\Win64\\\\PennAndTellerVR.exe" type: vr -'677620': +"677620": installDir: Splitgate launch: - - arguments: '--config_equ8_ue4_crc=0' + - arguments: "--config_equ8_ue4_crc=0" config: - osarch: '64' + osarch: "64" oslist: windows executable: equ8-launcher.exe type: default - - arguments: '--config_equ8_ue4_crc=0' + - arguments: "--config_equ8_ue4_crc=0" config: betakey: saw-equ8 - osarch: '64' + osarch: "64" oslist: windows description: EQU8 Test - description_loc: - english: EQU8 Test executable: equ8-launcher.exe type: option1 - config: - osarch: '64' + osarch: "64" oslist: linux executable: PortalWars.sh type: default -'677650': +"677650": installDir: Brass launch: - config: @@ -316349,36 +311522,36 @@ executable: brass.app/Contents/MacOS/brass type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: brass.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: brass.x86_64 type: default -'677680': +"677680": installDir: DEFENDER OF EARTH VS THE ALIEN ARMADA launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: DOE_v1.4.exe type: default -'677700': +"677700": installDir: Attack of the Gooobers launch: - executable: game.exe type: none -'677710': +"677710": installDir: Little Einar launch: - config: oslist: windows executable: LittleEinar.exe type: vr -'677720': +"677720": installDir: Tangrams Deluxe launch: - config: @@ -316389,7 +311562,7 @@ oslist: macos executable: TangramDeluxe.app type: default -'677730': +"677730": installDir: Karmasutra launch: - config: @@ -316404,23 +311577,23 @@ oslist: linux executable: Karmasutra.sh type: default -'677780': +"677780": installDir: Interplanetary Hunter launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Interplanetary Hunter.exe type: openvroverlay -'677790': +"677790": installDir: SOULS launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SOULS.exe type: default -'677810': +"677810": installDir: Wing of Misadventure launch: - config: @@ -316428,15 +311601,15 @@ description: Public executable: Wing of Misadventure.exe type: option1 -'677820': +"677820": installDir: BusinessMan launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: BusinessMan.exe type: default -'677850': +"677850": installDir: Eselmir launch: - config: @@ -316451,62 +311624,62 @@ oslist: windows executable: Options.exe type: config -'677870': +"677870": installDir: Gamers Unknown Survival launch: - config: oslist: windows executable: GUSTheGame.exe type: default -'677880': +"677880": installDir: Draw Your Game launch: - executable: dyg.exe type: default -'677890': {} -'677910': +"677890": {} +"677910": installDir: Life on Mars Remake launch: - config: oslist: windows executable: lom.exe type: default -'677920': +"677920": installDir: Acucalypse launch: - config: oslist: windows executable: Acucalypse.exe type: default -'677980': {} -'678010': +"677980": {} +"678010": installDir: TSHDX launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Temporal_Storm_HDX.exe type: default -'678020': {} -'678030': +"678020": {} +"678030": installDir: Fast & Furious Crossroads launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Leo (Publish) executable: FFCROSSROADS.exe type: default - config: betakey: testing externalqa testing2 press compat externalinterims bnmkt staging - osarch: '64' + osarch: "64" oslist: windows description: Leo (QA) executable: FastGameQA.exe type: option1 - config: betakey: testing externalqa testing2 press compat externalinterims bnmkt - osarch: '64' + osarch: "64" oslist: windows description: Leo (Run this if on a build prior to 0670) executable: FastGamePublish.exe @@ -316518,49 +311691,49 @@ russian: ФОРСАЖ ПЕРЕКРЕСТКИ schinese: 玩命关头:十字路口 tchinese: 玩命關頭:十字路口 -'678060': +"678060": installDir: Super Ultra Monster Smash launch: - - arguments: '-vr -fullscreen' + - arguments: "-vr -fullscreen" config: - osarch: '64' + osarch: "64" oslist: windows executable: MonsterSmash.exe type: vr -'678070': {} -'678090': +"678070": {} +"678090": installDir: SymplokeSteam launch: - config: oslist: windows executable: symploke1.exe type: none -'678100': +"678100": installDir: VR Crane Master launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Heavy.exe type: vr -'678110': {} -'678170': +"678110": {} +"678170": installDir: Slingshot Hero launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Slingshot Hero VR.exe type: vr - config: - osarch: '64' + osarch: "64" oslist: windows executable: Slingshot Hero.exe type: default -'678190': +"678190": installDir: King Of Bali launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows executable: nw.exe @@ -316569,42 +311742,42 @@ oslist: macos executable: nwjs.app type: none -'678200': +"678200": installDir: VR Table Sports launch: - config: oslist: windows executable: VrTableSports.exe type: vr -'678230': +"678230": installDir: Abstract Arena launch: - config: oslist: windows executable: Abstract Arena.exe type: default -'678240': +"678240": installDir: Destroyer Invasion launch: - config: oslist: windows executable: destroyer.exe type: default - - arguments: '-noJoystick' + - arguments: "-noJoystick" config: oslist: windows description: Destroyer Win10 version - Gamepad disabled (fixes win10 movement issue) executable: destroyer.exe type: option1 -'678250': {} -'678290': +"678250": {} +"678290": installDir: Ezy launch: - config: oslist: windows executable: Game.exe type: none -'678310': +"678310": installDir: Pinball Deluxe Reloaded launch: - config: @@ -316613,9 +311786,9 @@ type: default - config: oslist: macos - executable: PinballDeluxeReloaded.app\\Contents\\MacOS\\PinballDeluxeReloaded + executable: "PinballDeluxeReloaded.app\\\\Contents\\\\MacOS\\\\PinballDeluxeReloaded" type: default -'678390': +"678390": installDir: Office Management 101 launch: - config: @@ -316626,80 +311799,80 @@ oslist: linux executable: OfficeManagement101 type: default -'678400': - installDir: Dark Tales Edgar Allan Poe's The Fall of the House of Usher Collector's Edition +"678400": + installDir: "Dark Tales Edgar Allan Poe's The Fall of the House of Usher Collector's Edition" launch: - config: oslist: windows executable: DarkTales_EAP_TheFallOfTheHouseOfUsher_CE.exe type: default -'678410': - installDir: Chimeras The Signs of Prophecy Collector's Edition +"678410": + installDir: "Chimeras The Signs of Prophecy Collector's Edition" launch: - config: oslist: windows executable: Chimeras_TheSignsOfProphecy_CE.exe type: default -'678420': - installDir: Fierce Tales Marcus' Memory Collector's Edition +"678420": + installDir: "Fierce Tales Marcus' Memory Collector's Edition" launch: - config: oslist: windows executable: FierceTales_MarcusMemory_CE.exe type: default -'678430': - installDir: Mayan Prophecies Cursed Island Collector's Edition +"678430": + installDir: "Mayan Prophecies Cursed Island Collector's Edition" launch: - config: oslist: windows executable: MayanProphecies_CursedIsland_CE.exe type: default -'678440': - installDir: Dark Parables Queen of Sands Collector's Edition +"678440": + installDir: "Dark Parables Queen of Sands Collector's Edition" launch: - config: oslist: windows executable: DarkParables_QueenOfSands_CE.exe type: default -'678450': +"678450": installDir: Full-On Paintball launch: - config: - osarch: '32' + osarch: "32" oslist: windows - executable: Binaries\\Win32\\FOPB.exe + executable: "Binaries\\\\Win32\\\\FOPB.exe" type: default -'678460': +"678460": installDir: Tekling launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Tekling.exe type: default -'678470': +"678470": installDir: Pirate launch: - config: oslist: windows executable: Pirate.exe type: default -'678500': +"678500": installDir: sdk launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: The Climber Adventure.exe type: default -'678520': +"678520": installDir: GalGun VR launch: - config: oslist: windows executable: GalGunVR.exe type: vr -'678530': +"678530": installDir: Plexarium launch: - config: @@ -316707,70 +311880,70 @@ executable: plexarium.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: plexarium.x86_64 type: default -'678540': +"678540": installDir: Bad School Boy launch: - config: oslist: windows executable: badschoolboy.exe type: config -'678560': +"678560": installDir: 鸿源战纪 launch: - config: oslist: windows executable: HYZJ.exe type: none -'678570': +"678570": installDir: VR Fitness launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: VRFitness.exe type: vr -'678590': {} -'678620': +"678590": {} +"678620": installDir: Battle Chess II Chinese Chess launch: - - arguments: '-conf \"./config/dosboxCH.conf\" -conf \"./config/dosboxCH_single.conf\" -noconsole' + - arguments: "-conf \\\"./config/dosboxCH.conf\\\" -conf \\\"./config/dosboxCH_single.conf\\\" -noconsole" config: oslist: windows executable: DOSBox/dosbox.exe type: default - - arguments: '-conf \"./config/dosboxCH.conf\" -conf \"./config/dosboxCH_settings.conf\" -noconsole' + - arguments: "-conf \\\"./config/dosboxCH.conf\\\" -conf \\\"./config/dosboxCH_settings.conf\\\" -noconsole" config: oslist: windows executable: DOSBox/dosbox.exe type: config - - arguments: '-conf \"./config/dosboxCH.conf\" -conf \"./config/dosboxCH_single.conf\" -noconsole' + - arguments: "-conf \\\"./config/dosboxCH.conf\\\" -conf \\\"./config/dosboxCH_single.conf\\\" -noconsole" config: oslist: macos executable: DOSBox/dosbox.app/Contents/MacOS/DOSBox type: default - - arguments: '-conf \"./config/dosboxCH.conf\" -conf \"./config/dosboxCH_settings.conf\" -noconsole' + - arguments: "-conf \\\"./config/dosboxCH.conf\\\" -conf \\\"./config/dosboxCH_settings.conf\\\" -noconsole" config: oslist: macos - executable: DOSBox\\dosbox.app\\Contents\\MacOS\\DOSBox + executable: "DOSBox\\\\dosbox.app\\\\Contents\\\\MacOS\\\\DOSBox" type: config - - arguments: '-conf \"./config/dosboxCH.conf\" -conf \"./config/dosboxCH_single.conf\" -noconsole' + - arguments: "-conf \\\"./config/dosboxCH.conf\\\" -conf \\\"./config/dosboxCH_single.conf\\\" -noconsole" config: oslist: linux executable: dosbox/dosbox type: default - - arguments: '-conf \"./config/dosboxCH.conf\" -conf \"./config/dosboxCH_settings.conf\" -noconsole' + - arguments: "-conf \\\"./config/dosboxCH.conf\\\" -conf \\\"./config/dosboxCH_settings.conf\\\" -noconsole" config: oslist: linux executable: dosbox/dosbox type: config -'678670': {} -'678680': {} -'678750': {} -'678760': +"678670": {} +"678680": {} +"678750": {} +"678760": installDir: SimonTheSorcerer2 launch: - config: @@ -316779,490 +311952,490 @@ type: default - config: oslist: windows - ownsdlc: '835750' + ownsdlc: "835750" description: Legacy Edition (English)- With Voice And Subtitles - executable: simon2-en\\launch_game_win-voiceandsub.bat + executable: "simon2-en\\\\launch_game_win-voiceandsub.bat" type: option1 workingdir: simon2-en - config: oslist: windows - ownsdlc: '835750' + ownsdlc: "835750" description: Legacy Edition (English)- Voice Only - executable: simon2-en\\launch_game_win-voiceonly.bat + executable: "simon2-en\\\\launch_game_win-voiceonly.bat" type: option1 workingdir: simon2-en - config: oslist: windows - ownsdlc: '835750' + ownsdlc: "835750" description: Legacy Edition (English)- Subtitles Only - executable: simon2-en\\launch_game_win-subonly.bat + executable: "simon2-en\\\\launch_game_win-subonly.bat" type: option1 workingdir: simon2-en - config: oslist: macos - ownsdlc: '835750' + ownsdlc: "835750" description: Legacy Edition (English)- With Voice And Subtitles - executable: simon2-en\\launch_game_mac-voiceandsub.sh + executable: "simon2-en\\\\launch_game_mac-voiceandsub.sh" type: option1 workingdir: simon2-en - config: oslist: macos - ownsdlc: '835750' + ownsdlc: "835750" description: Legacy Edition (English)- Voice Only - executable: simon2-en\\launch_game_mac-voiceonly.sh + executable: "simon2-en\\\\launch_game_mac-voiceonly.sh" type: option1 workingdir: simon2-en - config: oslist: macos - ownsdlc: '835750' + ownsdlc: "835750" description: Legacy Edition (English)- Subtitles Only - executable: simon2-en\\launch_game_mac-subonly.sh + executable: "simon2-en\\\\launch_game_mac-subonly.sh" type: option1 workingdir: simon2-en - config: oslist: linux - ownsdlc: '835750' + ownsdlc: "835750" description: Legacy Edition (English)- With Voice And Subtitles - executable: simon2-en\\launch_game_linux-voiceandsub.sh + executable: "simon2-en\\\\launch_game_linux-voiceandsub.sh" type: option1 workingdir: simon2-en - config: oslist: linux - ownsdlc: '835750' + ownsdlc: "835750" description: Legacy Edition (English)- Voice Only - executable: simon2-en\\launch_game_linux-voiceonly.sh + executable: "simon2-en\\\\launch_game_linux-voiceonly.sh" type: option1 workingdir: simon2-en - config: oslist: linux - ownsdlc: '835750' + ownsdlc: "835750" description: Legacy Edition (English)- Subtitles Only - executable: simon2-en\\launch_game_linux-subonly.sh + executable: "simon2-en\\\\launch_game_linux-subonly.sh" type: option1 workingdir: simon2-en - config: oslist: windows - ownsdlc: '836320' + ownsdlc: "836320" description: Legacy Edition (German)- With Voice And Subtitles - executable: simon2-de\\launch_game_win-voiceandsub.bat + executable: "simon2-de\\\\launch_game_win-voiceandsub.bat" type: option1 workingdir: simon2-de - config: oslist: macos - ownsdlc: '836320' + ownsdlc: "836320" description: Legacy Edition (German)- With Voice And Subtitles - executable: simon2-de\\launch_game_mac-voiceandsub.sh + executable: "simon2-de\\\\launch_game_mac-voiceandsub.sh" type: option1 workingdir: simon2-de - config: oslist: linux - ownsdlc: '836320' + ownsdlc: "836320" description: Legacy Edition (German)- With Voice And Subtitles - executable: simon2-de\\launch_game_linux-voiceandsub.sh + executable: "simon2-de\\\\launch_game_linux-voiceandsub.sh" type: option1 workingdir: simon2-de - config: oslist: windows - ownsdlc: '836320' + ownsdlc: "836320" description: Legacy Edition (German)- Voice Only - executable: simon2-de\\launch_game_win-voiceonly.bat + executable: "simon2-de\\\\launch_game_win-voiceonly.bat" type: option1 workingdir: simon2-de - config: oslist: windows - ownsdlc: '836320' + ownsdlc: "836320" description: Legacy Edition (German)- Subtitles Only - executable: simon2-de\\launch_game_win-subonly.bat + executable: "simon2-de\\\\launch_game_win-subonly.bat" type: option1 workingdir: simon2-de - config: oslist: macos - ownsdlc: '836320' + ownsdlc: "836320" description: Legacy Edition (German)- Voice Only - executable: simon2-de\\launch_game_mac-voiceonly.sh + executable: "simon2-de\\\\launch_game_mac-voiceonly.sh" type: option1 workingdir: simon2-de - config: oslist: macos - ownsdlc: '836320' + ownsdlc: "836320" description: Legacy Edition (German)- Subtitles Only - executable: simon2-de\\launch_game_mac-subonly.sh + executable: "simon2-de\\\\launch_game_mac-subonly.sh" type: option1 workingdir: simon2-de - config: oslist: linux - ownsdlc: '836320' + ownsdlc: "836320" description: Legacy Edition (German)- Subtitles Only - executable: simon2-de\\launch_game_linux-subonly.sh + executable: "simon2-de\\\\launch_game_linux-subonly.sh" type: option1 workingdir: simon2-de - config: oslist: linux - ownsdlc: '836320' + ownsdlc: "836320" description: Legacy Edition (German)- Voice Only - executable: simon2-de\\launch_game_linux-voiceonly.sh + executable: "simon2-de\\\\launch_game_linux-voiceonly.sh" type: option1 workingdir: simon2-de - config: oslist: windows - ownsdlc: '836321' + ownsdlc: "836321" description: Legacy Edition (French)- With Voice And Subtitles - executable: simon2-fr\\launch_game_win-voiceandsub.bat + executable: "simon2-fr\\\\launch_game_win-voiceandsub.bat" type: option1 workingdir: simon2-fr - config: oslist: windows - ownsdlc: '836321' + ownsdlc: "836321" description: Legacy Edition (French)- Voice Only - executable: simon2-fr\\launch_game_win-voiceonly.bat + executable: "simon2-fr\\\\launch_game_win-voiceonly.bat" type: option1 workingdir: simon2-fr - config: oslist: windows - ownsdlc: '836321' + ownsdlc: "836321" description: Legacy Edition (French)- Subtitles Only - executable: simon2-fr\\launch_game_win-subonly.bat + executable: "simon2-fr\\\\launch_game_win-subonly.bat" type: option1 workingdir: simon2-fr - config: oslist: macos - ownsdlc: '836321' + ownsdlc: "836321" description: Legacy Edition (French)- With Voice And Subtitles - executable: simon2-fr\\launch_game_mac-voiceandsub.sh + executable: "simon2-fr\\\\launch_game_mac-voiceandsub.sh" type: option1 workingdir: simon2-fr - config: oslist: macos - ownsdlc: '836321' + ownsdlc: "836321" description: Legacy Edition (French)- Voice Only - executable: simon2-fr\\launch_game_mac-voiceonly.sh + executable: "simon2-fr\\\\launch_game_mac-voiceonly.sh" type: option1 workingdir: simon2-fr - config: oslist: macos - ownsdlc: '836321' + ownsdlc: "836321" description: Legacy Edition (French)- Subtitles Only - executable: simon2-fr\\launch_game_mac-subonly.sh + executable: "simon2-fr\\\\launch_game_mac-subonly.sh" type: option1 workingdir: simon2-fr - config: oslist: linux - ownsdlc: '836321' + ownsdlc: "836321" description: Legacy Edition (French)- With Voice And Subtitles - executable: simon2-fr\\launch_game_linux-voiceandsub.sh + executable: "simon2-fr\\\\launch_game_linux-voiceandsub.sh" type: option1 workingdir: simon2-fr - config: oslist: linux - ownsdlc: '836321' + ownsdlc: "836321" description: Legacy Edition (French)- Voice Only - executable: simon2-fr\\launch_game_linux-voiceonly.sh + executable: "simon2-fr\\\\launch_game_linux-voiceonly.sh" type: option1 workingdir: simon2-fr - config: oslist: linux - ownsdlc: '836321' + ownsdlc: "836321" description: Legacy Edition (French)- Subtitles Only - executable: simon2-fr\\launch_game_linux-subonly.sh + executable: "simon2-fr\\\\launch_game_linux-subonly.sh" type: option1 workingdir: simon2-fr - config: oslist: windows - ownsdlc: '1052274' + ownsdlc: "1052274" description: Legacy Edition (Spanish)- Voice and Subtitles - executable: simon2-es\\launch_game_win-voiceandsub.bat + executable: "simon2-es\\\\launch_game_win-voiceandsub.bat" type: option1 workingdir: simon2-es - config: oslist: windows - ownsdlc: '1052274' + ownsdlc: "1052274" description: Legacy Edition (Spanish)- Voice Only - executable: simon2-es\\launch_game_win-voiceonly.bat + executable: "simon2-es\\\\launch_game_win-voiceonly.bat" type: option1 workingdir: simon2-es - config: oslist: windows - ownsdlc: '1052274' + ownsdlc: "1052274" description: Legacy Edition (Spanish)- Subtitles Only - executable: simon2-es\\launch_game_win-subonly.bat + executable: "simon2-es\\\\launch_game_win-subonly.bat" type: option1 workingdir: simon2-es - config: oslist: macos - ownsdlc: '1052274' + ownsdlc: "1052274" description: Legacy Edition (Spanish)- Voice and Subtitles - executable: simon2-es\\launch_game_mac-voiceandsub.sh + executable: "simon2-es\\\\launch_game_mac-voiceandsub.sh" type: option1 workingdir: simon2-es - config: oslist: macos - ownsdlc: '1052274' + ownsdlc: "1052274" description: Legacy Edition (Spanish)- Voice Only - executable: simon2-es\\launch_game_mac-voiceonly.sh + executable: "simon2-es\\\\launch_game_mac-voiceonly.sh" type: option1 workingdir: simon2-es - config: oslist: macos - ownsdlc: '1052274' + ownsdlc: "1052274" description: Legacy Edition (Spanish)- Subtitles Only - executable: simon2-es\\launch_game_mac-subonly.sh + executable: "simon2-es\\\\launch_game_mac-subonly.sh" type: option1 workingdir: simon2-es - config: oslist: linux - ownsdlc: '1052274' + ownsdlc: "1052274" description: Legacy Edition (Spanish)- Voice and Subtitles - executable: simon2-es\\launch_game_linux-voiceandsub.sh + executable: "simon2-es\\\\launch_game_linux-voiceandsub.sh" type: option1 workingdir: simon2-es - config: oslist: linux - ownsdlc: '1052274' + ownsdlc: "1052274" description: Legacy Edition (Spanish)- Voice Only - executable: simon2-es\\launch_game_linux-voiceonly.sh + executable: "simon2-es\\\\launch_game_linux-voiceonly.sh" type: option1 workingdir: simon2-es - config: oslist: linux - ownsdlc: '1052274' + ownsdlc: "1052274" description: Legacy Edition (Spanish)- Subtitles Only - executable: simon2-es\\launch_game_linux-subonly.sh + executable: "simon2-es\\\\launch_game_linux-subonly.sh" type: option1 workingdir: simon2-es - config: oslist: windows - ownsdlc: '1052273' + ownsdlc: "1052273" description: Legacy Edition (Polish)- Voice and Subtitles - executable: simon2-pl\\launch_game_win-voiceandsub.bat + executable: "simon2-pl\\\\launch_game_win-voiceandsub.bat" type: option1 workingdir: simon2-pl - config: oslist: windows - ownsdlc: '1052273' + ownsdlc: "1052273" description: Legacy Edition (Polish)- Voice Only - executable: simon2-pl\\launch_game_win-voiceonly.bat + executable: "simon2-pl\\\\launch_game_win-voiceonly.bat" type: option1 workingdir: simon2-pl - config: oslist: windows - ownsdlc: '1052273' + ownsdlc: "1052273" description: Legacy Edition (Polish)- Subtitles Only - executable: simon2-pl\\launch_game_win-subonly.bat + executable: "simon2-pl\\\\launch_game_win-subonly.bat" type: option1 workingdir: simon2-pl - config: oslist: macos - ownsdlc: '1052273' + ownsdlc: "1052273" description: Legacy Edition (Polish)- Voice and Subtitles - executable: simon2-pl\\launch_game_mac-voiceandsub.sh + executable: "simon2-pl\\\\launch_game_mac-voiceandsub.sh" type: option1 workingdir: simon2-pl - config: oslist: macos - ownsdlc: '1052273' + ownsdlc: "1052273" description: Legacy Edition (Polish)- Voice Only - executable: simon2-pl\\launch_game_mac-voiceonly.sh + executable: "simon2-pl\\\\launch_game_mac-voiceonly.sh" type: option1 workingdir: simon2-pl - config: oslist: linux - ownsdlc: '1052273' + ownsdlc: "1052273" description: Legacy Edition (Polish)- Voice and Subtitles - executable: simon2-pl\\launch_game_linux-voiceandsub.sh + executable: "simon2-pl\\\\launch_game_linux-voiceandsub.sh" type: option1 workingdir: simon2-pl - config: oslist: linux - ownsdlc: '1052273' + ownsdlc: "1052273" description: Legacy Edition (Polish)- Voice Only - executable: simon2-pl\\launch_game_linux-voiceonly.sh + executable: "simon2-pl\\\\launch_game_linux-voiceonly.sh" type: option1 workingdir: simon2-pl - config: oslist: linux - ownsdlc: '1052273' + ownsdlc: "1052273" description: Legacy Edition (Polish)- Subtitles Only - executable: simon2-pl\\launch_game_linux-subonly.sh + executable: "simon2-pl\\\\launch_game_linux-subonly.sh" type: option1 workingdir: simon2-pl - config: oslist: macos - ownsdlc: '1052273' + ownsdlc: "1052273" description: Legacy Edition (Polish)- Subtitles Only - executable: simon2-pl\\launch_game_mac-subonly.sh + executable: "simon2-pl\\\\launch_game_mac-subonly.sh" type: option1 workingdir: simon2-pl - config: oslist: windows - ownsdlc: '1052271' + ownsdlc: "1052271" description: Legacy Edition (Czech)- Voice and Subtitles - executable: simon2-cz\\launch_game_win-voiceandsub.bat + executable: "simon2-cz\\\\launch_game_win-voiceandsub.bat" type: option1 workingdir: simon2-cz - config: oslist: windows - ownsdlc: '1052271' + ownsdlc: "1052271" description: Legacy Edition (Czech)- Subtitles Only - executable: simon2-cz\\launch_game_win-subonly.bat + executable: "simon2-cz\\\\launch_game_win-subonly.bat" type: option1 workingdir: simon2-cz - arguments: simon2-cz config: oslist: macos - ownsdlc: '1052271' + ownsdlc: "1052271" description: Legacy Edition (Czech)- Voice and Subtitles - executable: simon2-cz\\launch_game_mac-voiceandsub.sh + executable: "simon2-cz\\\\launch_game_mac-voiceandsub.sh" type: option1 - config: oslist: macos - ownsdlc: '1052271' + ownsdlc: "1052271" description: Legacy Edition (Czech)- Subtitles Only - executable: simon2-cz\\launch_game_mac-subonly.sh + executable: "simon2-cz\\\\launch_game_mac-subonly.sh" type: option1 workingdir: simon2-cz - config: oslist: linux - ownsdlc: '1052271' + ownsdlc: "1052271" description: Legacy Edition (Czech)- Voice and Subtitles - executable: simon2-cz\\launch_game_linux-voiceandsub.sh + executable: "simon2-cz\\\\launch_game_linux-voiceandsub.sh" type: option1 workingdir: simon2-cz - config: oslist: linux - ownsdlc: '1052271' + ownsdlc: "1052271" description: Legacy Edition (Czech)- Subtitles Only - executable: simon2-cz\\launch_game_linux-subonly.sh + executable: "simon2-cz\\\\launch_game_linux-subonly.sh" type: option1 workingdir: simon2-cz - config: oslist: windows - ownsdlc: '1052270' + ownsdlc: "1052270" description: Legacy Edition (Russian)- Voice and Subtitles - executable: simon2-ru\\launch_game_win-voiceandsub.bat + executable: "simon2-ru\\\\launch_game_win-voiceandsub.bat" type: option1 workingdir: simon2-ru - config: oslist: windows - ownsdlc: '1052270' + ownsdlc: "1052270" description: Legacy Edition (Russian)- Subtitles Only - executable: simon2-ru\\launch_game_win-subonly.bat + executable: "simon2-ru\\\\launch_game_win-subonly.bat" type: option1 workingdir: simon2-ru - config: oslist: macos - ownsdlc: '1052270' + ownsdlc: "1052270" description: Legacy Edition (Russian)- Voice and Subtitles - executable: simon2-ru\\launch_game_mac-voiceandsub.sh + executable: "simon2-ru\\\\launch_game_mac-voiceandsub.sh" type: option1 workingdir: simon2-ru - config: oslist: macos - ownsdlc: '1052270' + ownsdlc: "1052270" description: Legacy Edition (Russian)- Subtitles Only - executable: simon2-ru\\launch_game_mac-subonly.sh + executable: "simon2-ru\\\\launch_game_mac-subonly.sh" type: option1 workingdir: simon2-ru - config: oslist: linux - ownsdlc: '1052270' + ownsdlc: "1052270" description: Legacy Edition (Russian)- Voice and Subtitles - executable: simon2-ru\\launch_game_linux-voiceandsub.sh + executable: "simon2-ru\\\\launch_game_linux-voiceandsub.sh" type: option1 workingdir: simon2-ru - config: oslist: linux - ownsdlc: '1052270' + ownsdlc: "1052270" description: Legacy Edition (Russian)- Subtitles Only - executable: simon2-ru\\launch_game_linux-subonly.sh + executable: "simon2-ru\\\\launch_game_linux-subonly.sh" type: option1 workingdir: simon2-ru - config: oslist: windows - ownsdlc: '1052272' + ownsdlc: "1052272" description: Legacy Edition (Italian)- Voice and Subtitles - executable: simon2-it\\launch_game_win-voiceandsub.bat + executable: "simon2-it\\\\launch_game_win-voiceandsub.bat" type: option1 workingdir: simon2-it - config: oslist: windows - ownsdlc: '1052272' + ownsdlc: "1052272" description: Legacy Edition (Italian)- Subtitles Only - executable: simon2-it\\launch_game_win-subonly.bat + executable: "simon2-it\\\\launch_game_win-subonly.bat" type: option1 workingdir: simon2-it - config: oslist: macos - ownsdlc: '1052272' + ownsdlc: "1052272" description: Legacy Edition (Italian)- Voice and Subtitles - executable: simon2-it\\launch_game_mac-voiceandsub.sh + executable: "simon2-it\\\\launch_game_mac-voiceandsub.sh" type: option1 workingdir: simon2-it - config: oslist: macos - ownsdlc: '1052272' + ownsdlc: "1052272" description: Legacy Edition (Italian)- Subtitles Only - executable: simon2-it\\launch_game_mac-subonly.sh + executable: "simon2-it\\\\launch_game_mac-subonly.sh" type: option1 workingdir: simon2-it - config: oslist: linux - ownsdlc: '1052272' + ownsdlc: "1052272" description: Legacy Edition (Italian)- Voice and Subtitles - executable: simon2-it\\launch_game_linux-voiceandsub.sh + executable: "simon2-it\\\\launch_game_linux-voiceandsub.sh" type: option1 workingdir: simon2-it - config: oslist: linux - ownsdlc: '1052272' + ownsdlc: "1052272" description: Legacy Edition (Italian)- Subtitles Only - executable: simon2-it\\launch_game_linux-subonly.sh + executable: "simon2-it\\\\launch_game_linux-subonly.sh" type: option1 workingdir: simon2-it - config: oslist: windows - ownsdlc: '1052275' + ownsdlc: "1052275" description: Legacy Edition (Hebrew)- Voice and Subtitles - executable: simon2-he\\launch_game_win-voiceandsub.bat + executable: "simon2-he\\\\launch_game_win-voiceandsub.bat" type: option1 workingdir: simon2-he - config: oslist: windows - ownsdlc: '1052275' + ownsdlc: "1052275" description: Legacy Edition (Hebrew)- Subtitles Only - executable: simon2-he\\launch_game_win-subonly.bat + executable: "simon2-he\\\\launch_game_win-subonly.bat" type: option1 workingdir: simon2-he - config: oslist: macos - ownsdlc: '1052275' + ownsdlc: "1052275" description: Legacy Edition (Hebrew)- Voice and Subtitles - executable: simon2-he\\launch_game_mac-voiceandsub.sh + executable: "simon2-he\\\\launch_game_mac-voiceandsub.sh" type: option1 workingdir: simon2-he - config: oslist: macos - ownsdlc: '1052275' + ownsdlc: "1052275" description: Legacy Edition (Hebrew)- Subtitles Only - executable: simon2-he\\launch_game_mac-subonly.sh + executable: "simon2-he\\\\launch_game_mac-subonly.sh" type: option1 workingdir: simon2-he - config: oslist: linux - ownsdlc: '1052275' + ownsdlc: "1052275" description: Legacy Edition (Hebrew)- Voice and Subtitles - executable: simon2-he\\launch_game_linux-voiceandsub.sh + executable: "simon2-he\\\\launch_game_linux-voiceandsub.sh" type: option1 workingdir: simon2-he - config: oslist: linux - ownsdlc: '1052275' + ownsdlc: "1052275" description: Legacy Edition (Hebrew)- Subtitles Only - executable: simon2-he\\launch_game_linux-subonly.sh + executable: "simon2-he\\\\launch_game_linux-subonly.sh" type: option1 workingdir: simon2-he -'678770': {} -'678780': {} -'678800': +"678770": {} +"678780": {} +"678800": installDir: SAS Zombie Assault 4 launch: - config: @@ -317273,36 +312446,36 @@ oslist: macos executable: SAS4-Steam.app type: default -'678810': {} -'678820': +"678810": {} +"678820": installDir: Gun-Running War Dogs launch: - config: oslist: windows executable: GRWD.exe type: none -'678830': +"678830": installDir: Buried Alive VR launch: - config: oslist: windows - executable: BAVR\\BAVR.exe + executable: "BAVR\\\\BAVR.exe" type: othervr -'678850': +"678850": installDir: Uurnog Uurnlimited launch: - - arguments: '-screen-width 700 -screen-height 500 -screen-fullscreen 0' + - arguments: "-screen-width 700 -screen-height 500 -screen-fullscreen 0" config: - osarch: '64' + osarch: "64" oslist: windows executable: Uurnog.exe type: default - - arguments: '-screen-width 700 -screen-height 500 -screen-fullscreen 0' + - arguments: "-screen-width 700 -screen-height 500 -screen-fullscreen 0" config: oslist: macos executable: Uurnog.app type: default -'678870': +"678870": installDir: EatWell launch: - config: @@ -317313,22 +312486,22 @@ oslist: macos executable: EatWell.app type: config -'678880': +"678880": installDir: SolmecHollowPlanet launch: - config: oslist: windows executable: Solmec_Hollow_Planet.exe type: none -'678890': +"678890": installDir: Airport Simulator 2019 launch: - config: oslist: windows executable: AirportSim2019.exe type: none -'678900': - installDir: Farmer's Dynasty +"678900": + installDir: "Farmer's Dynasty" launch: - config: oslist: windows @@ -317336,63 +312509,63 @@ type: default nameLocalized: schinese: 农夫王朝 -'678910': +"678910": installDir: BombGears launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: BombGears.exe type: none -'678920': +"678920": installDir: SymplokeSteam2 launch: - config: oslist: windows executable: winsetup.exe type: none -'678930': +"678930": installDir: Square Route launch: - config: oslist: windows description: Play Square Route - executable: Square Route\\Square Route.exe + executable: "Square Route\\\\Square Route.exe" type: none - config: oslist: linux description: Play Square Route - executable: Square Route\\Square Route.x86 + executable: "Square Route\\\\Square Route.x86" type: none - config: oslist: macos description: Play Square Route - executable: Square Route\\Square Route.app + executable: "Square Route\\\\Square Route.app" type: none -'678940': +"678940": installDir: Nox Dei - El aciago demiurgo launch: - config: oslist: windows executable: Game.exe type: default -'678950': +"678950": installDir: DRAGON BALL FighterZ launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: DBFighterZ.exe type: default -'678960': +"678960": installDir: CODE VEIN launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: CodeVein.exe type: default -'678970': +"678970": installDir: Modern Tales launch: - config: @@ -317401,13 +312574,13 @@ executable: ModernTales.exe type: none - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: ModernTales_i386 type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: ModernTales_amd64 @@ -317417,87 +312590,87 @@ description: Launch executable: mac_steam.app/Contents/MacOS/mac_steam type: none -'679030': +"679030": installDir: HELI-COMMANDO2017 launch: - config: oslist: windows - executable: HELI-COMMANDO2017\\Heli-Commando2017.exe + executable: "HELI-COMMANDO2017\\\\Heli-Commando2017.exe" type: default -'679050': {} -'679070': +"679050": {} +"679070": installDir: Fapic launch: - executable: A Fans Epic.exe type: default -'679080': +"679080": installDir: Toy Goblins launch: - config: oslist: windows executable: ToyGoblins.exe type: vr -'679090': +"679090": installDir: 9th Dawn Classic launch: - config: oslist: windows executable: DawnLauncher.exe type: none -'679100': +"679100": installDir: Aequitas Orbis launch: - - arguments: 'res://scene/splash.tscn' + - arguments: "res://scene/splash.tscn" config: - osarch: '64' + osarch: "64" oslist: windows executable: AO64.exe type: default - - arguments: 'res://scene/splash.tscn' + - arguments: "res://scene/splash.tscn" config: - osarch: '32' + osarch: "32" oslist: windows executable: AO32.exe type: default - - arguments: 'res://scene/splash.tscn' + - arguments: "res://scene/splash.tscn" config: oslist: linux executable: AO.sh type: default - - arguments: 'res://scene/splash.tscn' + - arguments: "res://scene/splash.tscn" config: oslist: macos executable: AOfat.bin type: default -'679110': +"679110": installDir: WerewolfTheApocalypseEarthblood launch: - - arguments: '-SaveToUserDir' + - arguments: "-SaveToUserDir" config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: WW.exe type: default -'679120': +"679120": installDir: DEEP SPACE ANOMALY launch: - config: oslist: windows executable: DEEP SPACE ANOMALY.exe type: default -'679170': {} -'679190': +"679170": {} +"679190": installDir: The Hunting God launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TheHuntingGod.exe type: default -'679200': {} -'679220': {} -'679230': +"679200": {} +"679220": {} +"679230": installDir: TAD launch: - config: @@ -317512,16 +312685,16 @@ oslist: macos executable: TellaDemon.app type: default -'679240': {} -'679260': +"679240": {} +"679260": installDir: Bus Driver Simulator launch: - - arguments: '-vrmode none' + - arguments: "-vrmode none" config: oslist: windows executable: Bus Driver Simulator.exe type: default - - arguments: '-vrmode oculus' + - arguments: "-vrmode oculus" config: oslist: windows description: Oculus @@ -317531,11 +312704,11 @@ oslist: windows executable: Bus Driver Simulator.exe type: vr -'679270': +"679270": installDir: AntariaOnline launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: aoV2Windows.exe type: default @@ -317543,7 +312716,7 @@ oslist: linux executable: aoV2Linux.x86_64 type: default -'679300': +"679300": installDir: PATHOS launch: - config: @@ -317555,78 +312728,74 @@ executable: PATHOS.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: PATHOS.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: PATHOS.x86_64 type: default -'679330': {} -'679360': {} -'679390': +"679330": {} +"679360": {} +"679390": installDir: Topdown Showdown launch: - config: oslist: windows description: Unity Version - description_loc: - english: Unity Version - executable: finalbuildtest1\\Topdown Showdown.exe + executable: "finalbuildtest1\\\\Topdown Showdown.exe" type: option1 - description: Old Version - description_loc: - english: Old Version - executable: finalbuildtest1\\oldbuild\\TopdownShowdown.exe + executable: "finalbuildtest1\\\\oldbuild\\\\TopdownShowdown.exe" type: option2 -'679400': +"679400": installDir: Relik launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Relik.exe type: default - config: - osarch: '64' + osarch: "64" oslist: macos - executable: Relik.app\\Contents\\MacOS\\Relik + executable: "Relik.app\\\\Contents\\\\MacOS\\\\Relik" type: default -'679410': +"679410": installDir: The Adventures of Clive McMulligan on Planet Zeta Four launch: - config: oslist: windows executable: CliveMcMulligan.exe type: default -'679420': {} -'679430': +"679420": {} +"679430": installDir: Skyraine launch: - config: oslist: windows executable: Skyraine_v1p4p3.exe type: none -'679460': {} -'679470': +"679460": {} +"679470": installDir: Solenars Edge Rebirth launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows description: Play SER executable: Game.exe type: default - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows - ownsdlc: '928290' + ownsdlc: "928290" description: Play SER w/After Story executable: Afterstory/Game.exe type: default -'679480': +"679480": installDir: Dead line launch: - config: @@ -317634,83 +312803,83 @@ description: Launch executable: NC.Launcher.exe type: vr -'679490': - installDir: Lisa's Memory +"679490": + installDir: "Lisa's Memory" launch: - executable: LisasMemory.exe type: default -'679500': +"679500": installDir: Campfire Cooking launch: - config: oslist: windows executable: Campfire Cooking.exe type: default -'679510': +"679510": installDir: Steel Punk Ball launch: - config: oslist: windows executable: Steel Punk Ball.exe type: default -'679530': +"679530": installDir: Professor Watts Memory Match launch: - executable: professorwattsmemorymatch.exe type: default -'679620': +"679620": installDir: Rollercoaster Xperience launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch with HTC vive executable: Rollercoaster_4_12.exe type: vr - config: - osarch: '64' + osarch: "64" oslist: windows executable: Rollercoaster_4_12.exe type: othervr workingdir: Launch with Oculus Rift -'679640': +"679640": installDir: C64 & AMIGA Classix Remakes Sixpack launch: - config: oslist: windows executable: GameCollectionLauncher_Release Steam_x86.exe type: default -'679650': {} -'679660': +"679650": {} +"679660": installDir: aMAZE ZER0 launch: - config: oslist: windows executable: aMAZE ZER0.exe type: default -'679670': +"679670": installDir: MiniatureTD launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: MiniatureTD.exe type: vr -'679690': +"679690": installDir: SwapQuest launch: - config: oslist: windows executable: SwapQuest.exe type: default -'679720': +"679720": installDir: Mad Farm launch: - config: oslist: windows executable: MadFarm.exe type: vr -'679740': +"679740": installDir: Totally Mayhem launch: - config: @@ -317725,14 +312894,14 @@ oslist: macos executable: totallymayhem.app type: default -'679750': +"679750": installDir: Catch & Release launch: - config: oslist: windows executable: CnR.exe type: vr -'679770': +"679770": installDir: Dr. Cares - Pet Rescue 911 launch: - config: @@ -317743,17 +312912,17 @@ oslist: macos executable: DrCares.app type: none -'679780': +"679780": installDir: Lemuria Lost in Space VR launch: - description: Lanuch PC version executable: Lemuria.exe type: none - - arguments: '-VR' + - arguments: "-VR" description: Launch VR version executable: Lemuria.exe type: vr -'679820': +"679820": installDir: Solitaire Mystery Stolen Power launch: - config: @@ -317764,7 +312933,7 @@ oslist: macos executable: Solitaire Mystery Stolen Power (Full).app type: none -'679830': +"679830": installDir: Village Monsters launch: - config: @@ -317779,7 +312948,7 @@ oslist: macos executable: Village Monsters.app type: default -'679860': +"679860": installDir: ZAP Master launch: - config: @@ -317794,7 +312963,7 @@ oslist: linux executable: ZAP Master.x86 type: none -'679900': +"679900": installDir: Swords & Souls Neverseen launch: - config: @@ -317803,10 +312972,10 @@ type: default - config: oslist: macos - executable: Contents\\MacOS\\Swords & Souls Neverseen + executable: "Contents\\\\MacOS\\\\Swords & Souls Neverseen" type: default -'679910': {} -'679930': +"679910": {} +"679930": installDir: 36 Fragments of Midnight launch: - config: @@ -317821,39 +312990,39 @@ oslist: macos executable: 36FoM.app type: none -'679960': +"679960": installDir: Brain Crush launch: - config: oslist: windows executable: BrainCrush.exe type: default -'679990': +"679990": installDir: half_life_caged launch: - - arguments: '-game caged_fgs' + - arguments: "-game caged_fgs" config: oslist: windows executable: hl.exe type: default - - arguments: '-game caged_fgs' + - arguments: "-game caged_fgs" config: oslist: linux executable: hl.sh type: default - - arguments: '-game caged_fgs' + - arguments: "-game caged_fgs" config: oslist: macos executable: hl.sh type: default -'6800': +"6800": installDir: Commandos Behind Enemy Lines launch: - config: oslist: windows executable: Comandos.exe type: default - - arguments: '-multienable' + - arguments: "-multienable" config: oslist: windows description: Multiplayer @@ -317864,8 +313033,8 @@ description: Legacy Version executable: Legacy/Comandos.exe type: option2 -'680000': {} -'680030': +"680000": {} +"680030": installDir: GoneViral launch: - config: @@ -317874,39 +313043,39 @@ type: default nameLocalized: schinese: 地牢小霸王 -'680040': +"680040": installDir: Kukui launch: - config: oslist: windows executable: Kukui.exe type: default -'680050': {} -'680060': {} -'680070': +"680050": {} +"680060": {} +"680070": installDir: Puzzle Underwater World launch: - config: oslist: windows executable: Puzzle Underwater World.exe type: default -'680080': {} -'680100': +"680080": {} +"680100": installDir: Heroes_of_Myths launch: - config: oslist: windows executable: Heroes.exe type: default -'680120': {} -'680140': +"680120": {} +"680140": installDir: Tetsoidea Eternal launch: - config: oslist: windows executable: Game.exe type: default -'680170': +"680170": installDir: VR Triber launch: - config: @@ -317918,45 +313087,45 @@ description: Launch in Desktop (Non-VR) mode executable: vr triber.exe type: default -'680190': +"680190": installDir: Interstellar Invaders launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: nw.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: nw.exe type: default - config: - osarch: '64' + osarch: "64" oslist: macos executable: interstellarinvaders.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: nw type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: nw type: default -'680250': +"680250": installDir: TheMirage launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TheMirage.exe type: default -'680270': {} -'680300': {} -'680310': +"680270": {} +"680300": {} +"680310": installDir: Poker World launch: - config: @@ -317965,38 +313134,38 @@ type: none - config: oslist: macos - executable: dev_1.2.10.app\\Contents\\MacOS\\dev_1.2.10 + executable: "dev_1.2.10.app\\\\Contents\\\\MacOS\\\\dev_1.2.10" type: default -'680320': +"680320": installDir: The Heiress launch: - config: oslist: windows executable: Game.exe type: none -'680330': +"680330": installDir: Elium - Prison Escape launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: Binaries\\Win64\\Elium.exe + executable: "Binaries\\\\Win64\\\\Elium.exe" type: none -'680340': +"680340": installDir: Omega Strike launch: - config: oslist: windows executable: Omega Strike.exe type: none -'680350': +"680350": installDir: VR Hurl launch: - config: oslist: windows executable: Hurl.exe type: vr -'680360': +"680360": installDir: Regions Of Ruin launch: - config: @@ -318011,14 +313180,14 @@ oslist: linux executable: Regions of Ruin.x86_64 type: none -'680370': +"680370": installDir: The Build And Race Car Game launch: - config: oslist: windows executable: The_Build-Race_Game type: default -'680380': +"680380": installDir: Night Call launch: - config: @@ -318029,160 +313198,145 @@ oslist: macos executable: Night Call.app type: none -'680390': +"680390": installDir: Hidden Dragon launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: HiddenDragonLegend.exe type: default -'680400': +"680400": installDir: Light Tracer launch: - - arguments: '-VIVE' + - arguments: "-VIVE" config: oslist: windows executable: LightTracer.exe type: vr - - arguments: '-LTPS' + - arguments: "-LTPS" config: oslist: windows executable: LightTracer.exe type: default - - arguments: '-OCULUS' + - arguments: "-OCULUS" config: oslist: windows executable: LightTracer.exe type: othervr -'680420': +"680420": installDir: OUTRIDERS launch: - config: - betakey: >- - ageratings,external-tech,image,madness-425,madness-demo,madness-engine-devqa,qautomation,see-compatqa,see-locqa,see-locqa2,see-nvidia,see-qa1,see-qa2,see-qa3,sels-community,sels-editoral,sels-msdelivery,sels-userresearch,sels-videocapture-latest,sels-videocapture-main,streams,see-qa4 - osarch: '64' + betakey: "ageratings,external-tech,image,madness-425,madness-demo,madness-engine-devqa,qautomation,see-compatqa,see-locqa,see-locqa2,see-nvidia,see-qa1,see-qa2,see-qa3,sels-community,sels-editoral,sels-msdelivery,sels-userresearch,sels-videocapture-latest,sels-videocapture-main,streams,see-qa4" + osarch: "64" oslist: windows description: Shipping - description_loc: - english: Shipping executable: OUTRIDERS-Win64-Shipping.exe type: option1 - config: - betakey: >- - ageratings,external-tech,image,madness-425,madness-demo,madness-engine-devqa,qautomation,see-compatqa,see-locqa,see-locqa2,see-nvidia,see-qa1,see-qa2,see-qa3,sels-community,sels-editoral,sels-msdelivery,sels-userresearch,sels-videocapture-latest,sels-videocapture-main,streams,see-qa4 - osarch: '64' + betakey: "ageratings,external-tech,image,madness-425,madness-demo,madness-engine-devqa,qautomation,see-compatqa,see-locqa,see-locqa2,see-nvidia,see-qa1,see-qa2,see-qa3,sels-community,sels-editoral,sels-msdelivery,sels-userresearch,sels-videocapture-latest,sels-videocapture-main,streams,see-qa4" + osarch: "64" oslist: windows description: Development - description_loc: - english: Development executable: Madness.exe type: option2 - config: - betakey: >- - ageratings,external-tech,image,madness-425,madness-demo,madness-engine-devqa,qautomation,see-compatqa,see-locqa,see-locqa2,see-nvidia,see-qa1,see-qa2,see-qa3,sels-community,sels-editoral,sels-msdelivery,sels-userresearch,sels-videocapture-latest,sels-videocapture-main,streams,see-qa4 - osarch: '64' + betakey: "ageratings,external-tech,image,madness-425,madness-demo,madness-engine-devqa,qautomation,see-compatqa,see-locqa,see-locqa2,see-nvidia,see-qa1,see-qa2,see-qa3,sels-community,sels-editoral,sels-msdelivery,sels-userresearch,sels-videocapture-latest,sels-videocapture-main,streams,see-qa4" + osarch: "64" oslist: windows description: Test - description_loc: - english: Test executable: Madness-Win64-Test.exe type: option3 - - arguments: '-EACLAUNCHER=EAC_OUTRIDERS' + - arguments: "-EACLAUNCHER=EAC_OUTRIDERS" config: - osarch: '64' + osarch: "64" oslist: windows description: Outriders - DirectX12 - description_loc: - english: Outriders - DirectX12 executable: EAC_OUTRIDERS.exe type: option1 - - arguments: '-force -dx11 -EACLAUNCHER=EAC_OUTRIDERS' + - arguments: "-force -dx11 -EACLAUNCHER=EAC_OUTRIDERS" config: - osarch: '64' + osarch: "64" oslist: windows description: Outriders - DirectX11 - description_loc: - english: Outriders - DirectX11 executable: EAC_OUTRIDERS.exe type: option2 - - arguments: '-force -dx11' + - arguments: "-force -dx11" config: betakey: distribution - osarch: '64' + osarch: "64" oslist: windows description: Outriders - DirectX11_test - description_loc: - english: Outriders - DirectX11_test executable: EAC_OUTRIDERS.exe type: option3 -'680450': +"680450": installDir: Damn launch: - executable: Damn.exe type: default -'680460': {} -'680480': +"680460": {} +"680480": installDir: ICY Frostbite Edition launch: - - arguments: '-steam' + - arguments: "-steam" config: oslist: windows executable: IcyFrostbite.exe type: default - - arguments: '-steam' + - arguments: "-steam" config: oslist: macos - executable: IcyFrostbite.app\\Contents\\MacOS\\IcyFrostbite + executable: "IcyFrostbite.app\\\\Contents\\\\MacOS\\\\IcyFrostbite" type: default - - arguments: '-steam' + - arguments: "-steam" config: oslist: linux executable: IcyFrostbite.x86 type: default -'680490': {} -'680500': +"680490": {} +"680500": installDir: shadowcalls launch: - config: - osarch: '64' + osarch: "64" description: 暗影召唤的64位启动器 executable: shadowcalls_x64.exe type: default - config: - osarch: '32' + osarch: "32" description: 暗影召唤的32位启动器 executable: shadowcalls.exe type: default -'680510': {} -'680520': {} -'680530': {} -'680540': {} -'680550': +"680510": {} +"680520": {} +"680530": {} +"680540": {} +"680550": installDir: Zombie Waiting launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: zombiewaiting.exe type: default -'680560': +"680560": installDir: VR2Space launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: VR2Space_SteamVR.exe type: default - - arguments: '-directVR' + - arguments: "-directVR" config: - osarch: '64' + osarch: "64" oslist: windows executable: VR2Space_SteamVR.exe type: vr -'680570': {} -'680580': {} -'680590': +"680570": {} +"680580": {} +"680590": installDir: Minotaur launch: - config: @@ -318193,20 +313347,20 @@ oslist: macos executable: Minotaur.app type: none -'680620': +"680620": installDir: Bouncy Bob launch: - executable: BouncyBob.exe type: default -'680640': +"680640": installDir: ChefU launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ChefU.exe type: vr -'680680': +"680680": installDir: all_haze_eve launch: - config: @@ -318225,21 +313379,21 @@ description: in 1024x768 Window executable: all_haze_eve.exe type: option2 -'680690': +"680690": installDir: Kama Bullet Heritage launch: - config: oslist: windows executable: Kama Bullet Heritage.exe type: default -'680700': +"680700": installDir: OK K.O.! Let’s Play Heroes launch: - config: oslist: windows executable: Game.exe type: default -'680730': +"680730": installDir: Plight launch: - config: @@ -318247,7 +313401,7 @@ description: Launch Plight executable: plight.exe type: default -'680750': +"680750": installDir: Destination Primus Vita Episode 1 launch: - config: @@ -318258,33 +313412,31 @@ oslist: macos executable: DPVE1.app/Contents/MacOS/DPVE1 type: default -'680780': +"680780": installDir: Death Train VR launch: - config: oslist: windows executable: Deathtrain.exe type: vr -'680830': +"680830": installDir: Wait! Life is beautiful! launch: - config: oslist: windows executable: Wait! Life is beautiful!.exe type: default -'680860': +"680860": installDir: Evil Labs launch: - executable: Evil Labs.exe type: default -'680880': +"680880": installDir: Flood The Prequel launch: - config: oslist: windows description: Launch - description_loc: - english: Launch executable: Game.exe type: default - config: @@ -318295,46 +313447,46 @@ oslist: linux executable: Game type: none -'680890': +"680890": installDir: Where the Money Is launch: - config: oslist: windows executable: WhereTheMoneyIs.exe type: default -'680930': +"680930": installDir: Fairy Lands Rinka and the Fairy Gems launch: - config: oslist: windows executable: Fairy_lands_upd_ver_1-5-5.exe type: default -'680940': +"680940": installDir: Riot Street launch: - - arguments: '-nostartupmovies' + - arguments: "-nostartupmovies" config: - osarch: '64' + osarch: "64" oslist: windows executable: RiotStreet.exe type: default -'680950': +"680950": installDir: LBVR launch: - config: - osarch: '64' + osarch: "64" oslist: windows - description: Let's Bowl VR + description: "Let's Bowl VR" executable: BowlingGame.exe type: vr -'680970': +"680970": installDir: Kingdom Watcher launch: - config: oslist: windows executable: KingdomWatcherVive.exe type: vr -'680980': +"680980": installDir: HEADLINER launch: - config: @@ -318355,21 +313507,21 @@ russian: ХЕДЛАЙНЕР schinese: 头条新闻 tchinese: 頭條新聞 -'680990': +"680990": installDir: SwordBros launch: - config: oslist: windows executable: SwordBros.exe type: default -'6810': +"6810": installDir: Commandos Beyond the Call of Duty launch: - config: oslist: windows executable: coman_mp.exe type: default - - arguments: '-multienable' + - arguments: "-multienable" config: oslist: windows description: Multiplayer @@ -318380,54 +313532,54 @@ description: Legacy Version executable: Legacy/coman_mp.exe type: option2 -'681000': +"681000": installDir: OM6N launch: - config: oslist: windows executable: OM6N.exe type: default -'681010': {} -'681020': +"681010": {} +"681020": installDir: Throne of the Dead launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: RubaDubDub.exe type: vr -'681030': +"681030": installDir: Dark Empire launch: - config: oslist: windows executable: Dark Empire.exe type: default -'681060': +"681060": installDir: Shooty Squad launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: multiplayerTest.exe type: default -'681070': {} -'681090': - installDir: Funtoon's World +"681070": {} +"681090": + installDir: "Funtoon's World" launch: - config: oslist: windows executable: Funtoons World.exe type: default -'681100': +"681100": installDir: Supermagical launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Supermagical.exe type: default -'681110': +"681110": installDir: Eagle Island launch: - config: @@ -318443,25 +313595,25 @@ executable: EagleIslandMacLinux type: default workingdir: MacLinux -'681140': +"681140": installDir: Last Soldier launch: - config: oslist: windows executable: Last Soldier.exe type: default -'681150': +"681150": installDir: Rainbow Duck launch: - config: oslist: windows executable: Rainbow Duck.exe type: default -'681160': +"681160": installDir: Breach of Contract Online launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: steam_build.exe type: default @@ -318469,46 +313621,46 @@ oslist: macos executable: steam_build_mac.app type: default -'681170': {} -'681190': +"681170": {} +"681190": installDir: Secrets of Arcadia launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: win64\\nw.exe + executable: "win64\\\\nw.exe" type: default - config: oslist: macos - executable: osx64\\secretsofarcadia.app + executable: "osx64\\\\secretsofarcadia.app" type: default - config: - osarch: '32' + osarch: "32" oslist: windows - executable: win32\\nw.exe + executable: "win32\\\\nw.exe" type: default -'681240': +"681240": installDir: Dujanah launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: nw.exe type: default -'681260': +"681260": installDir: Red Number Prologue launch: - config: oslist: windows description: Launch ENG Version - executable: 'Red Number - Prologue[ENG]\\MyProject.exe' + executable: "Red Number - Prologue[ENG]\\\\MyProject.exe" type: default - config: oslist: windows description: Launch RU Version - executable: 'Red Number - Prologue[RU]\\Red Number.exe' + executable: "Red Number - Prologue[RU]\\\\Red Number.exe" type: option2 -'681280': +"681280": installDir: Descenders launch: - config: @@ -318516,12 +313668,12 @@ executable: Descenders.app type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: Descenders.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: Descenders.x86_64 type: none @@ -318530,48 +313682,48 @@ description: Descenders - borderless fullscreen (recommended) executable: Descenders.exe type: option1 - - arguments: '-window-mode exclusive' + - arguments: "-window-mode exclusive" config: oslist: windows description: Descenders - exclusive fullscreen executable: Descenders.exe type: option2 -'681290': +"681290": installDir: Hare launch: - config: oslist: windows executable: Hare.exe type: default -'681330': +"681330": installDir: HeliumRain launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch the game executable: HeliumRainLauncher.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch the game executable: HeliumRain.sh type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: Helium Rain (update mods) executable: HeliumRainLauncher.sh type: option1 -'681340': +"681340": installDir: ARRAYNIUM launch: - config: oslist: windows executable: arraynium.exe type: default -'681350': +"681350": installDir: Battlefield Alliance launch: - config: @@ -318582,12 +313734,12 @@ oslist: macos executable: Battlefield Alliance.app/Contents/MacOS/Battlefield Alliance type: default -'681360': +"681360": installDir: Song Samurai launch: - executable: Song Samurai.exe type: vr -'681380': +"681380": installDir: The Balloonist Beyond the Clouds launch: - config: @@ -318602,58 +313754,58 @@ executable: The Balloonist Beyond the Clouds.app/Contents/MacOS/Default Mac desktop Universal type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: The Balloonist Beyond the Clouds.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: The Balloonist Beyond the Clouds.x86_64 type: default -'681390': +"681390": installDir: ZomDay launch: - config: oslist: windows executable: ZomDay.exe type: vr -'681410': +"681410": installDir: Adventures of the Worm launch: - config: oslist: windows executable: Adventures of the Worm.exe type: none -'681420': {} -'681430': {} -'681440': {} -'681460': +"681420": {} +"681430": {} +"681440": {} +"681460": installDir: Cendric launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Cendric.exe type: default - config: oslist: macos - executable: Cendric.app\\Contents\\MacOS\\Cendric + executable: "Cendric.app\\\\Contents\\\\MacOS\\\\Cendric" type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Cendric type: default -'681480': - installDir: Ancient Worlds Jaguar's Fate +"681480": + installDir: "Ancient Worlds Jaguar's Fate" launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: game.exe type: none -'681490': +"681490": installDir: dontbegrey launch: - config: @@ -318664,19 +313816,19 @@ oslist: linux executable: dontbegrey type: default -'681500': +"681500": installDir: Lumber King launch: - config: oslist: windows executable: LumberKing.exe type: none -'681520': +"681520": installDir: The Rodinia Project launch: - executable: The Rodinia Project.exe type: default -'681530': +"681530": installDir: NOISZ launch: - config: @@ -318685,39 +313837,39 @@ type: none - config: oslist: macos - executable: NOISZ.app\\Contents\\MacOS\\NOISZ + executable: "NOISZ.app\\\\Contents\\\\MacOS\\\\NOISZ" type: none -'681540': +"681540": installDir: Escape_From_Space_Shredder launch: - config: oslist: windows executable: Escape_From_Space_Shredder.exe type: default -'681550': +"681550": installDir: Maze Run VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: MazeRun.exe type: vr -'681580': +"681580": installDir: DragonCrash launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: DragonCrashLauncher.exe type: default -'681610': +"681610": installDir: Azai - TD launch: - config: oslist: windows executable: Azai.exe type: default -'681620': +"681620": installDir: Cube Link launch: - config: @@ -318728,30 +313880,30 @@ oslist: linux executable: linuxbuild.x86 type: default -'681630': +"681630": installDir: Voxel Interceptor launch: - config: oslist: windows executable: Voxel Interceptor.exe type: default -'681640': +"681640": installDir: World of Contraptions launch: - config: oslist: windows executable: World of Contraptions.exe type: none -'681650': {} -'681660': +"681650": {} +"681660": installDir: Bless Online launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: Launcher\\BlessLauncher.exe + executable: "Launcher\\\\BlessLauncher.exe" type: default -'681670': +"681670": installDir: Elly The Jelly launch: - config: @@ -318762,23 +313914,23 @@ oslist: macos executable: EllyTheJelly.app type: default -'681690': +"681690": installDir: Order:VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: OrderVR.exe type: vr -'681710': {} -'681720': +"681710": {} +"681720": installDir: BoxMaker launch: - config: oslist: windows executable: boxmaker.exe type: default -'681730': +"681730": installDir: Nowhere Prophet launch: - config: @@ -318790,26 +313942,26 @@ executable: NowhereProphet.app/Contents/MacOS/NowhereProphet type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: NowhereProphet.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: NowhereProphet.x86_64 type: default -'681740': +"681740": nameLocalized: schinese: 解放者塔防 -'681750': +"681750": installDir: Voxelaxy launch: - config: oslist: windows executable: Voxelaxy.exe type: default -'681760': +"681760": installDir: DIVER - SEA SURVIVAL SIMULATOR launch: - config: @@ -318820,23 +313972,23 @@ oslist: macos executable: diverOSX_x86-64.app type: none -'681770': {} -'681780': +"681770": {} +"681780": installDir: Distorted Reality launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: DR\\DR.exe + executable: "DR\\\\DR.exe" type: default -'681790': +"681790": installDir: ViKubb launch: - config: oslist: windows executable: VK.exe type: vr -'681800': +"681800": installDir: Fur Up launch: - config: @@ -318847,7 +313999,7 @@ oslist: macos executable: Fur Up.app type: default -'681820': +"681820": installDir: Chinese Paladin 4 launch: - executable: launch.exe @@ -318856,7 +314008,7 @@ oslist: windows executable: Config.exe type: config -'681830': +"681830": installDir: Chinese Paladin 5 launch: - executable: Pal5.exe @@ -318865,7 +314017,7 @@ oslist: windows executable: config.exe type: config -'681840': +"681840": installDir: Chinese Paladin 5 Prequel launch: - config: @@ -318876,44 +314028,44 @@ oslist: windows executable: config.exe type: config -'681860': {} -'681880': {} -'681900': +"681860": {} +"681880": {} +"681900": installDir: ionAXXIA launch: - config: oslist: windows executable: ionAXXIA.exe type: default -'681910': {} -'681920': +"681910": {} +"681920": installDir: Slingshot Cowboy VR launch: - config: oslist: windows executable: SlingshotCowboyVR.exe type: vr -'681930': {} -'681950': +"681930": {} +"681950": installDir: AddForce launch: - config: oslist: windows executable: AddForce.exe type: default -'681970': +"681970": installDir: The Tavern launch: - description: Launch executable: The Tavern.exe type: none -'681980': +"681980": installDir: Lycah launch: - description: Launch executable: Game.exe type: none -'681990': +"681990": installDir: BattleSquares launch: - config: @@ -318924,35 +314076,35 @@ oslist: macos executable: contentMac.app type: default -'6820': +"6820": installDir: Commandos Strike Force launch: - executable: CommXPC.exe - - description: 'Commandos: Strike Force Readme' + - description: "Commandos: Strike Force Readme" executable: readme.rtf -'682000': +"682000": installDir: SolmecAmongStars launch: - config: oslist: windows executable: Solmec_Among_Stars.exe type: none -'682010': +"682010": installDir: SolmecColonyAdrift launch: - config: oslist: windows executable: Solmec_Colony_Adrift.exe type: none -'682020': +"682020": installDir: Karradash - The Lost Dungeons launch: - config: oslist: windows executable: karradash_tld.exe type: default -'682070': {} -'682080': +"682070": {} +"682080": installDir: Pato Box launch: - config: @@ -318961,9 +314113,9 @@ type: default - config: oslist: macos - executable: PatoBox.app\\Contents\\MacOS\\PatoBox + executable: "PatoBox.app\\\\Contents\\\\MacOS\\\\PatoBox" type: default -'682100': +"682100": installDir: All Evil Night launch: - config: @@ -318974,31 +314126,31 @@ oslist: linux executable: AllEvilNight.x86 type: default -'682110': {} -'682140': +"682110": {} +"682140": installDir: Undead Development launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: UndeadDevelopment.exe type: vr -'682150': {} -'682160': +"682150": {} +"682160": installDir: Butterbies launch: - config: oslist: windows executable: PC.exe type: none -'682170': +"682170": installDir: Witchkin Hide-n-Sneak Horror launch: - config: oslist: windows executable: Witchkin.exe type: default -'682180': +"682180": installDir: Tile Battle launch: - config: @@ -319011,33 +314163,33 @@ type: default - config: oslist: macos - executable: TileBattle.app\\Contents\\MacOS\\TileBattle + executable: "TileBattle.app\\\\Contents\\\\MacOS\\\\TileBattle" type: default -'682190': {} -'682210': {} -'682230': +"682190": {} +"682210": {} +"682230": installDir: Sidewords launch: - config: oslist: windows executable: Sidewords.exe type: default -'682250': - installDir: Mayas' Virtual Brush +"682250": + installDir: "Mayas' Virtual Brush" launch: - config: oslist: windows executable: MayasVirtualBrush.exe type: vr -'682270': +"682270": installDir: Gender Bender launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: genderBender.exe type: default -'682280': +"682280": installDir: Code 9 launch: - config: @@ -319045,86 +314197,86 @@ description: Basic Launch Option executable: Code 9.exe type: default -'682290': +"682290": installDir: Zeus launch: - config: betakey: zeus-internal - osarch: '64' + osarch: "64" oslist: windows - description: Zeus' Battlegrounds (Internal) - executable: Zeus\\Binaries\\Win64\\Zeus-Win64-Test.exe + description: "Zeus' Battlegrounds (Internal)" + executable: "Zeus\\\\Binaries\\\\Win64\\\\Zeus-Win64-Test.exe" type: default - config: - osarch: '64' + osarch: "64" oslist: windows - description: Zeus' Battlegrounds - executable: Zeus\\Binaries\\Win64\\Zeus-Win64-Shipping.exe + description: "Zeus' Battlegrounds" + executable: "Zeus\\\\Binaries\\\\Win64\\\\Zeus-Win64-Shipping.exe" type: default -'682340': +"682340": installDir: Slice&DicePC launch: - executable: SliceNDicePC.exe type: none -'682350': +"682350": installDir: Gnome Light launch: - executable: Gnome Light.exe type: none -'682360': +"682360": installDir: Deadly Rescue launch: - config: oslist: windows executable: DeadlyRescue.exe type: vr -'682370': +"682370": installDir: Pooper Scooper launch: - config: oslist: windows executable: PooperScooper.exe type: default -'682420': +"682420": installDir: DimensionsVS launch: - executable: DimensionsReborn.exe type: default -'682450': +"682450": installDir: GarrisonArchangel launch: - - arguments: '-logFile \"output_log.txt\"' + - arguments: "-logFile \\\"output_log.txt\\\"" config: oslist: windows executable: GarrisonArchangelClient.exe type: default -'682470': +"682470": installDir: Behind The Truth launch: - config: oslist: windows executable: BehindTheTruth.exe type: default -'682480': +"682480": installDir: the untold story of hengshui school launch: - config: oslist: windows executable: theuntoldstoryofhengshuischool.exe type: default -'682490': +"682490": installDir: A Ghost Around Me launch: - executable: A Ghost Around Me.exe type: default -'682500': +"682500": installDir: Desperate game launch: - config: oslist: windows executable: Desperategame.exe type: default -'682510': +"682510": installDir: In the name of sin launch: - config: @@ -319135,22 +314287,22 @@ oslist: macos executable: Running.app type: default -'682530': +"682530": installDir: MarZ Rising launch: - config: oslist: windows executable: MarZRising.exe type: default -'682570': +"682570": installDir: SGZH School Girl Zombie Hunter launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: sgzh.exe type: default -'682590': +"682590": installDir: Dungeon Marathon launch: - config: @@ -319158,14 +314310,14 @@ description: Launch executable: DungeonMarathon.exe type: none -'682610': +"682610": installDir: iubes2 launch: - config: oslist: windows executable: IUBES2.exe type: default -'682620': +"682620": installDir: Cosmos Invictus launch: - config: @@ -319174,21 +314326,21 @@ type: default - config: oslist: macos - executable: cin.app\\Contents\\MacOS\\cin + executable: "cin.app\\\\Contents\\\\MacOS\\\\cin" type: default -'682630': +"682630": installDir: Box Maze 2 launch: - config: oslist: windows executable: boxmaze2.exe type: default -'682640': {} -'682660': {} -'682670': +"682640": {} +"682660": {} +"682670": installDir: 初颜 launch: - - arguments: '--in-process-gpu --disable-transparency' + - arguments: "--in-process-gpu --disable-transparency" config: oslist: windows executable: Game.exe @@ -319197,38 +314349,38 @@ oslist: macos executable: Game.app type: none -'682730': +"682730": installDir: Hearing launch: - config: oslist: windows executable: Hearing.exe type: default -'682740': +"682740": installDir: Data Thief launch: - config: oslist: windows executable: datathief.exe type: vr -'682770': +"682770": installDir: Treasure Hunt VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Treasure Hunt VR.exe type: vr -'682780': +"682780": installDir: Breaking Good launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: Breaking Good.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Breaking Good.x86 type: default @@ -319237,16 +314389,16 @@ executable: Breaking Good.app type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: Breaking Good.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Breaking Good.x86_64 type: default -'682790': +"682790": installDir: Escape the Omnochronom launch: - config: @@ -319257,23 +314409,23 @@ oslist: macos executable: EscapeTheOmnochronom.app type: default -'682810': +"682810": installDir: GUTS launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: GUTS.exe type: none -'682820': +"682820": installDir: Metronix Lab launch: - - arguments: '-cafeapplaunch' + - arguments: "-cafeapplaunch" config: oslist: windows executable: Metronix Lab.exe type: default -'682910': +"682910": installDir: NoLights launch: - config: @@ -319281,20 +314433,20 @@ executable: nolights.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: NoLighs.x86 type: default - config: oslist: macos - executable: nolights.app\\Contents\\MacOS\\nolights + executable: "nolights.app\\\\Contents\\\\MacOS\\\\nolights" type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: NoLighs.x86_64 type: none -'682920': +"682920": installDir: Downloaded launch: - config: @@ -319305,7 +314457,7 @@ oslist: windows executable: monkey.exe type: none -'682960': +"682960": installDir: Purgation launch: - config: @@ -319313,14 +314465,14 @@ description: Launch executable: Purgation.exe type: vr -'682970': +"682970": installDir: MineFight launch: - config: oslist: windows executable: MineFight.exe type: default -'682990': +"682990": installDir: DrugDealerSimulator launch: - config: @@ -319328,14 +314480,14 @@ description: Play Game executable: DrugDealerSimulator.exe type: default -'6830': +"6830": installDir: Commandos 2 Men of Courage launch: - config: oslist: windows executable: comm2.exe type: default - - arguments: '-multienable' + - arguments: "-multienable" config: oslist: windows description: Multiplayer @@ -319346,46 +314498,46 @@ description: Legacy Version executable: Legacy/comm2.exe type: option2 -'683000': +"683000": installDir: Evasion launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: PC Steam Default/Live Branch executable: Evasion.exe type: vr - config: betakey: qabuild - osarch: '64' + osarch: "64" oslist: windows - description: 'QA PTW ' + description: "QA PTW " executable: Evasion.exe type: vr - config: betakey: QaRelease - osarch: '64' + osarch: "64" oslist: windows description: QA Release Beta Branch executable: Evasion.exe type: vr - - arguments: '-demo' + - arguments: "-demo" config: betakey: archiactdemo - osarch: '64' + osarch: "64" oslist: windows description: Archiact Private Demo Branch executable: Evasion.exe type: vr -'683050': {} -'683070': +"683050": {} +"683070": installDir: Trundle launch: - config: oslist: windows executable: Trundle.exe type: none -'683080': +"683080": installDir: A Mazeing Tower Defense launch: - config: @@ -319393,23 +314545,23 @@ description: Launch A Mazeing TD executable: game.exe type: none -'683130': +"683130": installDir: EXON The Impossible Challenge launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: EXON.exe type: default -'683150': +"683150": installDir: INFERNO Deathfield launch: - config: oslist: windows executable: InfernoVR.exe type: vr -'683160': {} -'683180': +"683160": {} +"683180": installDir: Corona Borealis launch: - config: @@ -319424,28 +314576,28 @@ oslist: linux executable: CoronaBorealis.sh type: none -'683210': +"683210": installDir: Apez launch: - config: oslist: windows executable: apez.exe type: default -'683220': +"683220": installDir: Business-hooiznes launch: - config: oslist: windows executable: Business-hooiznes.exe type: default -'683230': +"683230": installDir: Defendoooooor!! launch: - config: oslist: windows executable: Defendooooor!!.exe.exe type: default -'683240': +"683240": installDir: Apocalypse Knights launch: - config: @@ -319454,27 +314606,27 @@ type: none - config: oslist: macos - executable: AK.app\\Contents\\MacOS\\AK + executable: "AK.app\\\\Contents\\\\MacOS\\\\AK" type: none -'683280': +"683280": installDir: Omega Quintet launch: - executable: OmegaQuintet.exe type: none -'683310': +"683310": installDir: Cecconoid launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Cecconoid.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Cecconoid.x86_64 type: default -'683320': +"683320": installDir: GRIS launch: - config: @@ -319485,63 +314637,63 @@ oslist: macos executable: GRIS.app type: default -'683340': +"683340": installDir: Disassembled launch: - config: oslist: windows executable: Disassembled.exe type: othervr -'683370': {} -'683430': +"683370": {} +"683430": installDir: ASSASSINATION STATION launch: - config: oslist: windows executable: ASSASSINATION_STATION.exe type: default -'683440': +"683440": installDir: BootyBuns & 21 launch: - config: oslist: windows executable: BootyBuns&21.exe type: none -'683490': +"683490": installDir: Formula E Grand Prix launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Formula E Grand Prix.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: Formula E Grand Prix VR.exe type: vr -'683530': +"683530": installDir: FreeFly Burning launch: - executable: OpenWorldCreative.exe type: none -'683570': {} -'683600': +"683570": {} +"683600": installDir: Football Mogul 18 launch: - config: oslist: windows executable: FB18.exe type: default -'683620': +"683620": installDir: Excursion launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Excursion.exe type: default -'683630': +"683630": installDir: Half Past Disaster launch: - config: @@ -319552,37 +314704,37 @@ oslist: macos executable: halfpastdisaster.app type: default -'683660': {} -'683670': +"683660": {} +"683670": installDir: BLOKDODGE launch: - config: oslist: windows executable: BLOKDODGE.exe type: default - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" config: oslist: windows description: show launcher executable: BLOKDODGE.exe type: config -'683680': {} -'683690': +"683680": {} +"683690": installDir: Supermarket Tycoon launch: - executable: SuperMarketTycoon.exe type: none -'683730': +"683730": installDir: CrownFall launch: - config: oslist: windows executable: Crown Fall.exe type: default -'683760': +"683760": installDir: Strangers of the Power launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows description: Launch @@ -319593,37 +314745,37 @@ description: Launch executable: Game.app type: default -'683770': +"683770": installDir: Rover Builder launch: - config: oslist: windows executable: RoverBuilder.exe type: default -'683790': +"683790": installDir: Tractorball launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Tractorball.exe type: vr -'683810': - installDir: The Dark Age I Zordon's Empire +"683810": + installDir: "The Dark Age I Zordon's Empire" launch: - arguments: Launch Game config: oslist: windows executable: 2ndFinal ND.exe type: default -'683830': +"683830": installDir: Weable launch: - config: oslist: windows executable: weable.exe type: default -'683840': +"683840": installDir: Galaxia Conquestum launch: - config: @@ -319634,15 +314786,15 @@ oslist: linux executable: runner type: default -'683870': +"683870": installDir: Quest of Vidhuraa launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: qovbeta2.exe type: default -'683890': +"683890": installDir: Operation Sheep Defense launch: - config: @@ -319650,16 +314802,16 @@ executable: OperationSheepDefense.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: OperationSheepDefense type: default - config: - osarch: '64' + osarch: "64" oslist: macos executable: OperationSheepDefense.app/Contents/MacOS/OperationSheepDefense type: default -'683900': +"683900": installDir: RollerCoaster Tycoon Classic launch: - config: @@ -319670,7 +314822,7 @@ oslist: macos executable: RCT Classic.app type: default -'683910': +"683910": installDir: System Siege launch: - config: @@ -319681,14 +314833,14 @@ oslist: macos executable: System Siege.app type: default -'683930': +"683930": installDir: A Wonder launch: - config: oslist: windows executable: AWonder.exe type: none -'683940': +"683940": installDir: Lawgivers launch: - config: @@ -319703,24 +314855,24 @@ oslist: linux executable: Lawgivers.x86 type: none -'683960': +"683960": installDir: Tower And Guardian 塔与守护者 launch: - executable: TowerAndGuardian.exe type: none -'683970': +"683970": installDir: Entwined The Perfect Murder launch: - executable: Entwined.exe type: none -'6840': +"6840": installDir: Commandos 3 Destination Berlin launch: - config: oslist: windows executable: commandos3.exe type: default - - arguments: '-multienable' + - arguments: "-multienable" config: oslist: windows description: Multiplayer @@ -319731,14 +314883,14 @@ description: Legacy Version executable: Legacy/commandos3.exe type: option2 -'684000': +"684000": installDir: Wooden Ocean launch: - config: oslist: windows executable: Game.exe type: default -'684040': +"684040": installDir: Logos launch: - config: @@ -319746,12 +314898,12 @@ description: Launch executable: Logos.exe type: default -'684050': +"684050": installDir: Achievement Idler Black launch: - executable: Achievement Idler Black.exe type: none -'684060': +"684060": installDir: The Hero Unmasked! launch: - config: @@ -319766,12 +314918,12 @@ oslist: linux executable: TheHeroUnmasked type: none -'684130': +"684130": installDir: Crimson Tide Operation Online launch: - executable: Crimson Tide Operation Online.exe type: none -'684170': +"684170": installDir: Hexlide launch: - config: @@ -319779,56 +314931,56 @@ executable: Hexlide.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: start-hexlide.sh type: default -'684200': +"684200": installDir: Icons Combat Arena launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Icons.exe type: default - arguments: overrideServerEnv 100 config: betakey: deploy - osarch: '64' + osarch: "64" oslist: windows description: on Staging Environment executable: Icons.exe type: option1 -'684210': +"684210": installDir: 7 Game launch: - config: oslist: windows executable: SEVEN.exe type: default -'684230': +"684230": installDir: Madcap Castle launch: - config: oslist: windows executable: Madcap Castle.exe type: default -'684250': - installDir: ' The Dark Side Of The Moon' +"684250": + installDir: " The Dark Side Of The Moon" launch: - config: oslist: windows executable: TheDarkSideOfTheMoon.exe type: default -'684260': +"684260": installDir: Phantom Warfare launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: PhantomBattle.exe type: vr -'684270': +"684270": installDir: Silicon Zeroes launch: - config: @@ -319840,18 +314992,18 @@ executable: Silicon Zeroes.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: SiliconZeroes.sh type: default -'684300': +"684300": installDir: BLADENET launch: - config: oslist: windows executable: BN.exe type: default -'684320': +"684320": installDir: HOT PINK launch: - config: @@ -319863,30 +315015,30 @@ executable: HOT PINK.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: HOT PINK.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: HOT PINK.x86_64 type: default -'684340': +"684340": installDir: FaceTheNightmare launch: - config: oslist: windows executable: FaceTheNightmare.exe type: none -'684400': +"684400": installDir: PowerWar_The First Men launch: - config: oslist: windows executable: PowerWar_TFM.exe type: default -'684410': +"684410": installDir: Bridge Constructor Portal launch: - config: @@ -319900,18 +315052,18 @@ executable: Bridge_Constructor_Portal.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Bridge_Constructor_Portal.x86_64 type: default -'684420': +"684420": installDir: Steampunk Syndicate 2 launch: - config: oslist: windows executable: Bin/Syndicate2.exe type: default -'684430': +"684430": installDir: JU launch: - config: @@ -319922,8 +315074,8 @@ oslist: macos executable: 0.97.app type: default -'684440': {} -'684450': +"684440": {} +"684450": installDir: Surviving the Aftermath launch: - config: @@ -319931,39 +315083,39 @@ description: with Launcher executable: launcher/Paradox Launcher.exe type: option1 -'684460': +"684460": installDir: Lucie launch: - description: Lucie executable: Lucie.exe type: option1 - - arguments: '-vr oculus -vr-scale 0.05' + - arguments: "-vr oculus -vr-scale 0.05" description: Lucie in VR executable: Lucie.exe type: option1 -'684470': +"684470": installDir: Super Blockbreak 3D launch: - config: oslist: windows executable: SuperBlockBreak3D.exe type: default -'684490': +"684490": installDir: MonsterS launch: - config: oslist: windows executable: MonsterS.exe type: none -'684510': +"684510": installDir: Orn the tiny forest sprite launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Orn_Final_version.exe type: default -'684530': +"684530": installDir: Lance A Lot Enhanced Edition launch: - config: @@ -319975,97 +315127,97 @@ executable: LanceALot.app type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: lancealot.x86_64 type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: lancealot.x86 type: none -'684560': +"684560": installDir: Beyond the Wall launch: - - arguments: '-force-D3D9' + - arguments: "-force-D3D9" config: oslist: windows executable: Beyond the Wall.exe type: default - config: oslist: macos - executable: Beyond the Wall.app\\Contents\\MacOS\\Beyond the Wall + executable: "Beyond the Wall.app\\\\Contents\\\\MacOS\\\\Beyond the Wall" type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Beyond the Wall.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Beyond the Wall.x86 type: default -'684570': - installDir: Dr. Dungeon's MADMAN! +"684570": + installDir: "Dr. Dungeon's MADMAN!" launch: - config: oslist: windows executable: mmmainv13.exe type: none -'684580': +"684580": installDir: Shoppe Keep 2 launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Shoppe Keep 2 Singleplayer executable: Shoppe Keep 2 SP/Shoppe Keep 2.exe type: option1 workingdir: Shoppe Keep 2 SP - config: - osarch: '64' + osarch: "64" oslist: windows description: Shoppe Keep 2 Multiplayer* executable: Shoppe Keep 2 MP/Shoppe Keep 2.exe type: option2 workingdir: Shoppe Keep 2 MP -'684590': +"684590": installDir: Tale of Enki Pilgrimage launch: - config: oslist: windows executable: Enki.exe type: default -'684620': +"684620": installDir: JetX launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: JetX\\Binaries\\Win64\\JetX.exe + executable: "JetX\\\\Binaries\\\\Win64\\\\JetX.exe" type: default - - arguments: '-vr' + - arguments: "-vr" config: - osarch: '64' + osarch: "64" oslist: windows - executable: JetX\\Binaries\\Win64\\JetX.exe + executable: "JetX\\\\Binaries\\\\Win64\\\\JetX.exe" type: vr -'684650': +"684650": installDir: Turret Sector launch: - config: oslist: windows executable: Turret Sector.exe type: default -'684680': +"684680": installDir: Polygoneer launch: - config: oslist: windows executable: Polygoneer.exe type: default -'684700': +"684700": installDir: Celestian Tales Realms Beyond launch: - config: @@ -320076,23 +315228,23 @@ oslist: macos executable: CTRB MacOS.app type: default -'684720': +"684720": installDir: Battlegun launch: - config: oslist: windows executable: Battlegun.exe type: default -'684750': {} -'684770': +"684750": {} +"684770": installDir: Fall Fear Fly Redemption launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: FFFR.exe type: vr -'684800': +"684800": installDir: Log Jammers launch: - config: @@ -320107,24 +315259,24 @@ oslist: linux executable: LogJammers.x86_64 type: none -'684820': +"684820": installDir: Singularity Roller launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: QR\\QR.exe + executable: "QR\\\\QR.exe" type: default -'684830': {} -'684840': +"684830": {} +"684840": installDir: DaysOfPurgatory launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: DoP.exe type: default -'684870': +"684870": installDir: Spiral Splatter launch: - config: @@ -320138,18 +315290,18 @@ executable: SpiralSplatter.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: Spiral Splatter.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Spiral Splatter.x86_64 type: default -'684930': +"684930": installDir: Fantasy_ERA launch: - config: @@ -320157,34 +315309,34 @@ description: Launch executable: FantasyERA.exe type: default -'684940': +"684940": installDir: LOGistICAL - United Kingdom launch: - executable: LogisticalApp.exe type: none -'684970': +"684970": installDir: Rules of Destruction launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Rules of Destruction.exe type: default -'684980': +"684980": installDir: Sudokube launch: - executable: Sudokube.exe type: default -'6850': +"6850": installDir: Hitman 2 Silent Assassin launch: - executable: hitman2.exe - - description: 'Hitman 2: Silent Assassin Configuration' + - description: "Hitman 2: Silent Assassin Configuration" executable: config.exe -'685000': {} -'685020': {} -'685040': - installDir: Mr Rabbit's Jigsaw Puzzle +"685000": {} +"685020": {} +"685040": + installDir: "Mr Rabbit's Jigsaw Puzzle" launch: - config: oslist: windows @@ -320194,21 +315346,21 @@ oslist: macos executable: Rabbit.app type: default -'685050': +"685050": installDir: Spartan launch: - config: oslist: windows executable: Spartan.exe type: default -'685120': +"685120": installDir: Geometry World launch: - config: oslist: windows executable: Geometry World.exe type: default -'685130': +"685130": installDir: RadarDefense launch: - config: @@ -320216,20 +315368,20 @@ executable: Radar Defense.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Radar_Defense.x86 type: default - config: oslist: macos - executable: RadarDefense.app\\Contents\\MacOS\\RadarDefense + executable: "RadarDefense.app\\\\Contents\\\\MacOS\\\\RadarDefense" type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Radar_Defense.x86_64 type: default -'685200': +"685200": installDir: Seconds to Square launch: - config: @@ -320240,48 +315392,48 @@ oslist: macos executable: SecondsToSquare.app type: none -'685230': +"685230": installDir: Aliens X launch: - config: oslist: windows executable: Alienzix3_0.exe type: default -'685240': +"685240": installDir: Paradiddle launch: - executable: Paradiddle.exe type: vr - executable: Paradiddle.exe type: othervr - - arguments: '-hmd=SteamVR' + - arguments: "-hmd=SteamVR" description: Paradiddle in Forced OpenVR executable: Paradiddle.exe type: vr -'685310': +"685310": installDir: Transport Defender launch: - config: oslist: windows executable: td.exe type: default -'685330': +"685330": installDir: Lost Connection launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: game.exe type: default -'685340': +"685340": installDir: DeliveryFromThePain launch: - config: oslist: windows executable: DeliveryFromThePain.exe type: none -'685360': {} -'685370': +"685360": {} +"685370": installDir: Jewels of the Mysterious Woodland launch: - config: @@ -320290,26 +315442,26 @@ type: default - config: oslist: windows - description: '''''DLC'''' Mountains & Clouds Jewel Match' + description: "''DLC'' Mountains & Clouds Jewel Match" executable: Mountains & Clouds Jewel Match.exe type: option1 - config: oslist: windows - description: '''''DLC'''' Fairies Magical Jewel Match Quest' + description: "''DLC'' Fairies Magical Jewel Match Quest" executable: Fairies Magical Jewel Match Quest.exe type: option1 - config: oslist: windows - description: '''''DLC'''' Bunny Jewel Match Adventure' + description: "''DLC'' Bunny Jewel Match Adventure" executable: Bunny Jewel Match Adventure.exe type: option1 - config: oslist: windows - description: '''''DLC'''' Cat and Children Jewel Match' + description: "''DLC'' Cat and Children Jewel Match" executable: Cat and Children Jewel Match.exe type: option1 -'685390': {} -'685400': +"685390": {} +"685400": installDir: Skelly Selest launch: - config: @@ -320317,40 +315469,40 @@ description: Launch executable: Skelly Selest.exe type: default -'685420': +"685420": installDir: Grace of Zordan launch: - config: oslist: windows executable: GOZ.exe type: default -'685430': +"685430": installDir: Run Crabby Run launch: - config: oslist: windows executable: start.bat type: default -'685450': +"685450": installDir: Cobos launch: - config: oslist: windows executable: Cobos.exe type: default -'685560': {} -'685570': +"685560": {} +"685570": installDir: TurretMaster launch: - config: oslist: windows executable: TurretMaster.exe type: default -'685610': {} -'685620': {} -'685640': {} -'685650': {} -'685670': +"685610": {} +"685620": {} +"685640": {} +"685650": {} +"685670": installDir: Remember launch: - config: @@ -320359,7 +315511,7 @@ type: none nameLocalized: russian: Помни... -'685680': +"685680": installDir: Sakura Gamer launch: - config: @@ -320374,20 +315526,20 @@ oslist: linux executable: Sakura Gamer.sh type: default -'685690': - installDir: Guns'n'Stories Bulletproof VR +"685690": + installDir: "Guns'n'Stories Bulletproof VR" launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: OMT.exe type: vr - config: - osarch: '64' + osarch: "64" oslist: windows executable: OMT.exe type: othervr -'685700': +"685700": installDir: Asteroid Hunter launch: - config: @@ -320400,44 +315552,44 @@ description: Configure Resolution/Launch Game executable: Asteroid Hunter - SetResolution.exe type: config -'685730': +"685730": installDir: VR Dart Zone launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: VRDartsZone.exe type: vr -'685740': {} -'685750': +"685740": {} +"685750": installDir: The soldier in the mine launch: - config: oslist: windows executable: The soldier in the mine.exe type: config -'685760': +"685760": installDir: Stones of Rome launch: - config: oslist: windows executable: Stones of Rome.exe type: default -'685770': +"685770": installDir: 2D Mahjong Temple launch: - config: oslist: windows executable: dat/game.exe type: default -'685790': +"685790": installDir: Ruthless Safari launch: - config: oslist: windows executable: Ruthless Safari.exe type: default -'685800': +"685800": installDir: Tough Story Big Hell launch: - config: @@ -320448,7 +315600,7 @@ oslist: macos executable: tough_story_vol_i_osx.app type: default -'685870': +"685870": installDir: homelesshood launch: - config: @@ -320457,9 +315609,9 @@ type: default - config: oslist: macos - executable: Homelesshood.app\\Contents\\MacOS\\Homelesshood + executable: "Homelesshood.app\\\\Contents\\\\MacOS\\\\Homelesshood" type: default -'685910': +"685910": installDir: Battlefleet Engineer launch: - config: @@ -320471,15 +315623,15 @@ description: launcher to manage mods executable: Launcher.exe type: config -'685920': +"685920": installDir: Angry Gnome launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: AG.exe type: default -'685950': +"685950": installDir: Joy Pony launch: - config: @@ -320490,68 +315642,68 @@ oslist: macos executable: JoyPony.app/Contents/MacOS/JoyPony type: none -'685970': +"685970": installDir: Martha Madison Forces launch: - config: oslist: windows executable: Forces.exe type: default -'685990': +"685990": installDir: ForgottenLand launch: - executable: FL/Dreaming.exe type: default -'6860': +"6860": installDir: Hitman Blood Money launch: - executable: HitmanBloodMoney.exe - - description: 'Hitman: Blood Money Configuration' + - description: "Hitman: Blood Money Configuration" executable: configure.exe -'686000': +"686000": installDir: Lightwire launch: - config: oslist: windows executable: Lightwire.exe type: default -'686010': +"686010": installDir: The Hunt - Rebuilt launch: - config: oslist: windows executable: Game.exe type: default -'686030': +"686030": installDir: Digital Domain’s Monkey King™ launch: - config: oslist: windows executable: MK.exe type: vr -'686040': +"686040": installDir: ReallyGoodBattle launch: - config: oslist: windows executable: ReallyGoodBattle.exe type: default -'686090': +"686090": installDir: Bloodlines of Prima launch: - config: oslist: windows executable: Bloodlines of Prima.exe type: default -'686100': +"686100": installDir: CanBoom VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: CanBoom.exe type: vr -'686110': +"686110": installDir: Robot Heroes launch: - config: @@ -320562,29 +315714,29 @@ oslist: macos executable: RobotHeroes.app type: none -'686170': +"686170": installDir: VR RV launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: VRRV.exe type: vr -'686180': +"686180": installDir: Cat Girl launch: - config: oslist: windows executable: Game.exe type: none -'686190': +"686190": installDir: Killing Time launch: - config: oslist: windows executable: Game.exe type: none -'686200': +"686200": installDir: Door Kickers - Action Squad launch: - config: @@ -320599,30 +315751,30 @@ type: editor workingdir: tools/ nameLocalized: - koreana: '도어 키커스: 액션 스쿼드' + koreana: "도어 키커스: 액션 스쿼드" schinese: 破门而入:行动小队 -'686230': {} -'686240': +"686230": {} +"686240": installDir: Gunducky Industries launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: gunduckyindustries.exe type: none -'686260': +"686260": installDir: ForgedBattalion launch: - arguments: DUMP_FULL executable: ClientLauncherG.exe type: default - - arguments: 'DEVNUMS=133 DUMP_FULL IGNOREASSERTS COORDURL=http://52.7.55.172:6530/' + - arguments: "DEVNUMS=133 DUMP_FULL IGNOREASSERTS COORDURL=http://52.7.55.172:6530/" config: betakey: beta description: Release Build executable: ClientLauncherR.exe type: option1 - - arguments: 'DUMP_FULL COORDURL=http://52.7.55.172:6530/' + - arguments: "DUMP_FULL COORDURL=http://52.7.55.172:6530/" config: betakey: beta description: Gold Build @@ -320632,22 +315784,22 @@ description: Make Custom Maps executable: ClientLauncherG.exe type: editor -'686270': +"686270": installDir: Kiitsu launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SwitchProject.exe type: default -'686300': +"686300": installDir: Neon Coliseum launch: - config: oslist: windows executable: Neon Coliseum.exe type: default -'686340': +"686340": installDir: Insanity VR Last Score launch: - config: @@ -320655,14 +315807,14 @@ description: Launch Game executable: Insanity_Prototype.exe type: vr -'686360': +"686360": installDir: Dungeons & Treasure VR launch: - config: oslist: windows executable: Dungeons & Treasure.exe type: vr -'686380': +"686380": installDir: Nightmare at the lighthouse launch: - config: @@ -320670,7 +315822,7 @@ description: Start Game executable: Nightmare_at_the_Lighthouse.exe type: default -'686440': +"686440": installDir: Hard Time launch: - config: @@ -320681,7 +315833,7 @@ oslist: macos executable: HardTime.app type: default -'686450': +"686450": installDir: The Little Ball That Could launch: - config: @@ -320689,12 +315841,12 @@ executable: TLBTC.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: TLBTC.x86_64 type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: TLBTC.x86 type: none @@ -320702,14 +315854,14 @@ oslist: macos executable: TLBTC.app type: none -'686490': +"686490": installDir: ArkanoidSmoking launch: - config: oslist: windows executable: ArkanoidSmoking.exe type: default -'686500': +"686500": installDir: Sylvio 2 launch: - config: @@ -320720,7 +315872,7 @@ oslist: macos executable: sylvio2_mac.app type: none -'686510': +"686510": installDir: Fatty Rabbit Hole launch: - config: @@ -320735,49 +315887,49 @@ oslist: linux executable: Fatty Rabbit Hole type: default -'686520': +"686520": installDir: Gnomes Garden New Home launch: - config: oslist: windows executable: GnomesGarden.exe type: default -'686550': +"686550": installDir: Trivia Vault Mixed Trivia launch: - config: oslist: windows executable: Trivia Vault Mixed Trivia.exe type: default -'686570': +"686570": installDir: Freedom Defender launch: - config: oslist: windows executable: FD.exe type: default -'686580': +"686580": installDir: Storms of Shambhala launch: - config: oslist: windows executable: StormsOfShambhala.exe type: default -'686600': +"686600": installDir: Rapture Rejects launch: - config: oslist: windows executable: rr-windows-client.exe type: none -'686610': +"686610": installDir: Sobreviva launch: - config: oslist: windows executable: sobreviva_LP.exe type: default -'686620': +"686620": installDir: 3D Mahjong worlds launch: - executable: game.exe @@ -320786,22 +315938,22 @@ description: VR mode executable: game.exe type: vr -'686630': +"686630": installDir: Bricks In The Box launch: - config: oslist: windows executable: BricksInTheBox.exe type: none -'686640': +"686640": installDir: Space Panic Arena launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Space Panic Arena.exe type: vr -'686660': +"686660": installDir: The Mice of Riddle Place - The Incident of Izzy Ramirez launch: - config: @@ -320812,11 +315964,11 @@ oslist: windows executable: The Mice of Riddle Place - The Incident of Izzy Ramirez EE.exe type: default -'686680': +"686680": installDir: Computer Tycoon launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: Computer Tycoon.exe type: none @@ -320825,29 +315977,29 @@ executable: ComputerTycoonOSX.app type: none - config: - osarch: '64' + osarch: "64" oslist: windows executable: Computer Tycoon.exe type: none -'686690': {} -'686720': +"686690": {} +"686720": installDir: SaGaSCARLETGRACE launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SaGaSCARLETGRACE.exe type: default nameLocalized: japanese: サガ スカーレット グレイス 緋色の野望 -'686740': +"686740": installDir: HYAKKI CASTLE launch: - config: oslist: windows executable: dg.exe type: default -'686760': +"686760": installDir: Carpe Diem Reboot launch: - config: @@ -320862,7 +316014,7 @@ oslist: macos executable: Carpe Diem Reboot.app type: default -'686770': +"686770": installDir: The Wind and Wilting Blossom launch: - config: @@ -320873,199 +316025,185 @@ oslist: macos executable: The Wind and Wilting Blossom.app type: default -'686810': +"686810": installDir: Hell Let Loose launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Launch_HLL.exe type: default - - arguments: '-noEAC' + - arguments: "-noEAC" config: betakey: experimental - osarch: '64' + osarch: "64" oslist: windows description: Development (no EAC) - executable: HLL\\Binaries\\Win64\\HLL.exe + executable: "HLL\\\\Binaries\\\\Win64\\\\HLL.exe" type: option1 - - arguments: '-noEAC' + - arguments: "-noEAC" config: betakey: experimental - osarch: '64' + osarch: "64" oslist: windows description: Shipping (no EAC) - executable: HLL\\Binaries\\Win64\\HLL-Win64-Shipping.exe + executable: "HLL\\\\Binaries\\\\Win64\\\\HLL-Win64-Shipping.exe" type: option2 - - arguments: '-noEAC' + - arguments: "-noEAC" config: betakey: development - osarch: '64' + osarch: "64" oslist: windows description: Development (no EAC) - executable: HLL\\Binaries\\Win64\\HLL.exe + executable: "HLL\\\\Binaries\\\\Win64\\\\HLL.exe" type: option1 - - arguments: '-noEAC' + - arguments: "-noEAC" config: betakey: development - osarch: '64' + osarch: "64" oslist: windows description: Shipping (no EAC) - executable: HLL\\Binaries\\Win64\\HLL-Win64-Shipping.exe + executable: "HLL\\\\Binaries\\\\Win64\\\\HLL-Win64-Shipping.exe" type: option2 - - arguments: '-noEAC' + - arguments: "-noEAC" config: betakey: stable - osarch: '64' + osarch: "64" oslist: windows description: Development (no EAC) - executable: HLL\\Binaries\\Win64\\HLL.exe + executable: "HLL\\\\Binaries\\\\Win64\\\\HLL.exe" type: option1 - - arguments: '-noEAC' + - arguments: "-noEAC" config: betakey: stable - osarch: '64' + osarch: "64" oslist: windows description: Shipping (no EAC) - executable: HLL\\Binaries\\Win64\\HLL-Win64-Shipping.exe + executable: "HLL\\\\Binaries\\\\Win64\\\\HLL-Win64-Shipping.exe" type: option2 - - arguments: '-noEAC' + - arguments: "-noEAC" config: betakey: playtest - osarch: '64' + osarch: "64" oslist: windows description: Shipping (no EAC) - executable: HLL\\Binaries\\Win64\\HLL-Win64-Shipping.exe + executable: "HLL\\\\Binaries\\\\Win64\\\\HLL-Win64-Shipping.exe" type: option1 - - arguments: '-noEAC' + - arguments: "-noEAC" config: betakey: playtest_qa - osarch: '64' + osarch: "64" oslist: windows description: Shipping (no EAC) - executable: HLL\\Binaries\\Win64\\HLL-Win64-Shipping.exe + executable: "HLL\\\\Binaries\\\\Win64\\\\HLL-Win64-Shipping.exe" type: option1 - - arguments: '-noEAC' + - arguments: "-noEAC" config: betakey: zeuz_test - osarch: '64' + osarch: "64" oslist: windows description: Development (no EAC) - executable: HLL\\Binaries\\Win64\\HLL.exe + executable: "HLL\\\\Binaries\\\\Win64\\\\HLL.exe" type: option1 - - arguments: '-noEAC' + - arguments: "-noEAC" config: betakey: zeuz_test - osarch: '64' + osarch: "64" oslist: windows description: Shipping (no EAC) - executable: HLL\\Binaries\\Win64\\HLL-Win64-Shipping.exe + executable: "HLL\\\\Binaries\\\\Win64\\\\HLL-Win64-Shipping.exe" type: option2 - config: betakey: qa_testing - osarch: '64' + osarch: "64" oslist: windows description: Development (no EAC) - executable: HLL\\Binaries\\Win64\\HLL.exe + executable: "HLL\\\\Binaries\\\\Win64\\\\HLL.exe" type: option1 - config: betakey: qa_testing - osarch: '64' + osarch: "64" oslist: windows description: Shipping (no EAC) - executable: HLL\\Binaries\\Win64\\HLL-Win64-Shipping.exe + executable: "HLL\\\\Binaries\\\\Win64\\\\HLL-Win64-Shipping.exe" type: option2 - config: betakey: earlyaccess - osarch: '64' + osarch: "64" oslist: windows description: Shipping (no EAC) - executable: HLL\\Binaries\\Win64\\HLL-Win64-Shipping.exe + executable: "HLL\\\\Binaries\\\\Win64\\\\HLL-Win64-Shipping.exe" type: option1 - - arguments: '-noEAC' + - arguments: "-noEAC" config: betakey: bm_internal_dev - osarch: '64' + osarch: "64" oslist: windows description: Development (no EAC) - description_loc: - english: Development (no EAC) executable: HLL.exe type: option1 - - arguments: '-noEAC' + - arguments: "-noEAC" config: betakey: teamcity_testing - osarch: '64' + osarch: "64" oslist: windows description: Development (no EAC) - description_loc: - english: Development (no EAC) executable: HLL.exe type: option1 - - arguments: '-noEAC' + - arguments: "-noEAC" config: betakey: teamcity_testing - osarch: '64' + osarch: "64" oslist: windows description: Shipping (no EAC) - description_loc: - english: Shipping (no EAC) - executable: HLL\\Binaries\\Win64\\HLL-Win64-Shipping.exe + executable: "HLL\\\\Binaries\\\\Win64\\\\HLL-Win64-Shipping.exe" type: option2 - - arguments: '-noEAC' + - arguments: "-noEAC" config: betakey: qa_build - osarch: '64' + osarch: "64" oslist: windows description: Development (no EAC) - description_loc: - english: Development (no EAC) - executable: HLL\\Binaries\\Win64\\HLL.exe + executable: "HLL\\\\Binaries\\\\Win64\\\\HLL.exe" type: option1 - - arguments: '-noEAC' + - arguments: "-noEAC" config: betakey: qa_build - osarch: '64' + osarch: "64" oslist: windows description: Shipping (no EAC) - description_loc: - english: Shipping (no EAC) - executable: HLL\\Binaries\\Win64\\HLL-Win64-Shipping.exe + executable: "HLL\\\\Binaries\\\\Win64\\\\HLL-Win64-Shipping.exe" type: option2 - - arguments: '-noEAC' + - arguments: "-noEAC" config: betakey: qa_build - osarch: '64' + osarch: "64" oslist: windows description: Profiling (no EAC) - description_loc: - english: Profiling (no EAC) - executable: HLL\\Binaries\\Win64\\HLL-Win64-Test.exe + executable: "HLL\\\\Binaries\\\\Win64\\\\HLL-Win64-Test.exe" type: option3 - - arguments: '-noEAC' + - arguments: "-noEAC" config: betakey: development_build - osarch: '64' + osarch: "64" oslist: windows description: Development (no EAC) - description_loc: - english: Development (no EAC) - executable: HLL\\Binaries\\Win64\\HLL.exe + executable: "HLL\\\\Binaries\\\\Win64\\\\HLL.exe" type: option1 nameLocalized: schinese: 人间地狱 -'686870': +"686870": installDir: Lost Items launch: - config: oslist: windows executable: lostitems.exe type: default -'686900': +"686900": installDir: Bronze Age launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: BronzeAge.exe type: default @@ -321074,59 +316212,59 @@ executable: BronzeAge.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: BronzeAge.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: BronzeAge.x86_64 type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: BronzeAge.exe type: default -'686910': +"686910": installDir: Delirium launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Delirium1.1.1.exe type: default -'686940': +"686940": installDir: Captivus launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: JACCG.exe type: default -'686950': +"686950": installDir: AESCULAP_OrthoPilot_Elite_VR_Palpation launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: VR_Palpation.exe type: vr -'6870': +"6870": installDir: Battlestations Midway launch: - executable: Battlestationsmidway.exe - - description: 'Battlestations: Midway Options' + - description: "Battlestations: Midway Options" executable: Options.exe -'687260': +"687260": installDir: Tokyo Dark launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: nw.exe type: default -'687270': +"687270": installDir: Divide launch: - config: @@ -321134,33 +316272,33 @@ description: Primary launch option executable: Divide_PC.exe type: default -'687280': +"687280": installDir: HumanKind launch: - config: oslist: windows - executable: windows_content\\humankind.exe + executable: "windows_content\\\\humankind.exe" type: default - config: - osarch: '64' + osarch: "64" oslist: macos - executable: mac_content\\humankind.app + executable: "mac_content\\\\humankind.app" type: default -'687310': +"687310": installDir: Xenia launch: - config: oslist: windows executable: xenia.exe type: none -'687320': +"687320": installDir: MINE launch: - config: oslist: windows executable: CrystalShooter.exe type: vr -'687340': +"687340": installDir: Spyhack launch: - config: @@ -321168,16 +316306,16 @@ description: Launch executable: SpyHack.exe type: default -'687360': +"687360": installDir: Doodle Jamboree launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: doodlejamboree.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: doodlejamboree.exe type: default @@ -321185,45 +316323,45 @@ oslist: macos executable: doodlejamboree.app type: default -'687390': +"687390": installDir: Huedango launch: - config: oslist: windows executable: Huedango.exe type: default -'687420': +"687420": installDir: Lone Vessel launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: starter.vbs type: none -'687440': {} -'687480': +"687440": {} +"687480": installDir: Trivia Vault Science & History Trivia launch: - config: oslist: windows executable: Trivia Vault Science & History Trivia.exe type: default -'687490': +"687490": installDir: Trivia Vault Super Heroes Trivia launch: - config: oslist: windows executable: Trivia Vault Super Heroes Trivia.exe type: default -'687510': +"687510": installDir: WireNet launch: - config: oslist: windows executable: WireNet.exe type: default -'687520': {} -'687540': +"687520": {} +"687540": installDir: Tasty Planet launch: - config: @@ -321236,18 +316374,18 @@ description: Launch executable: Tasty Planet.app type: none -'687560': +"687560": installDir: Avoid The Monsters launch: - - arguments: '--verbose --noconsole -- --steam' + - arguments: "--verbose --noconsole -- --steam" config: - osarch: '32' + osarch: "32" oslist: windows executable: lobster.exe type: default -'687580': {} -'687590': - installDir: Juniper's Knot +"687580": {} +"687590": + installDir: "Juniper's Knot" launch: - config: oslist: windows @@ -321261,22 +316399,22 @@ oslist: macos executable: Junipers Knot.app/Contents/MacOS/Junipers Knot type: default -'687600': +"687600": installDir: Magic Pixcel Picross launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Magic Pixel Picross.exe type: default -'687610': +"687610": installDir: Cat vs. Corgis launch: - config: oslist: windows executable: CatVsCorgis.exe type: default -'687630': +"687630": installDir: ECB2 launch: - config: @@ -321284,23 +316422,23 @@ description: Launch executable: game.exe type: none -'687640': +"687640": installDir: Infinity Assassin (VR) launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: InfinityAssassin.exe type: vr -'687650': +"687650": installDir: ltzhd launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: game.exe type: default -'687720': +"687720": installDir: Baobabs Mausoleum Ep. 2 launch: - config: @@ -321313,36 +316451,36 @@ description: Inicio normal Mac executable: BaobabsMausoleumEP2.app type: default -'687730': +"687730": installDir: My Way VR launch: - - arguments: '-vr' + - arguments: "-vr" config: - osarch: '64' + osarch: "64" oslist: windows executable: MyWay.exe type: vr -'687750': +"687750": installDir: Yandere School launch: - config: oslist: windows - executable: yandere school\\yandereschool.exe + executable: "yandere school\\\\yandereschool.exe" type: default -'687760': +"687760": installDir: Occultus launch: - config: oslist: windows executable: OccultusMediterraneanCabal.exe type: default -'687790': {} -'687830': +"687790": {} +"687830": installDir: TransparentBlack launch: - executable: Game.exe type: none -'687850': +"687850": installDir: Head Goal launch: - config: @@ -321353,14 +316491,14 @@ oslist: macos executable: HeadGoal.app type: default -'687890': +"687890": installDir: Runaway VR launch: - config: oslist: windows executable: Runaway VR.exe type: vr -'687900': +"687900": installDir: unWorded launch: - config: @@ -321371,26 +316509,26 @@ oslist: macos executable: UnWorded.app type: default -'687920': +"687920": installDir: Tropical Liquor launch: - executable: tropical_liquor.exe type: none -'687950': {} -'687980': +"687950": {} +"687980": installDir: Mothlight launch: - config: oslist: windows executable: Game.exe type: default -'6880': +"6880": installDir: Just Cause launch: - executable: JustCause.exe - description: Just Cause Setup executable: JCSetup.exe -'688000': +"688000": installDir: Trials of the Thief-Taker launch: - config: @@ -321405,22 +316543,22 @@ oslist: linux executable: TrialsOfTheThiefTaker type: none -'688020': +"688020": installDir: Kitchen Simulator 2 launch: - config: oslist: windows - executable: kitchen simulator 2 32\\kitchensim2 32bit.exe + executable: "kitchen simulator 2 32\\\\kitchensim2 32bit.exe" type: default -'688050': +"688050": installDir: BoidWatch launch: - - arguments: '-vr' + - arguments: "-vr" config: oslist: windows - executable: WindowsNoEditor\\BIRDS.exe + executable: "WindowsNoEditor\\\\BIRDS.exe" type: vr -'688060': +"688060": installDir: Odd Realm launch: - config: @@ -321429,58 +316567,58 @@ type: default - config: oslist: macos - executable: OddRealm.app\\Contents\\MacOS\\OddRealm + executable: "OddRealm.app\\\\Contents\\\\MacOS\\\\OddRealm" type: default - config: oslist: linux executable: OddRealm.x86_64 type: default -'688070': +"688070": installDir: Legendary Gary launch: - config: oslist: windows executable: TheGame.exe type: default -'688110': +"688110": installDir: BlockGame launch: - config: oslist: windows executable: BlockGame.exe type: default -'688120': +"688120": installDir: TOXICANT launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TOXICANT.exe type: none -'688130': +"688130": installDir: Pogostuck launch: - executable: Pogostuck.exe type: default -'688140': +"688140": installDir: Tempest 4000 launch: - description: Play Tempest 4000 on Windows 7 or 8 - executable: Win7-8\\Tempest4000.exe + executable: "Win7-8\\\\Tempest4000.exe" type: none workingdir: Win7-8 - description: Play Tempest 4000 on Windows 10 - executable: Win10\\Tempest4000.exe + executable: "Win10\\\\Tempest4000.exe" type: none workingdir: Win10 -'688150': +"688150": installDir: JUMPER SPEEDRUN launch: - config: oslist: windows executable: JumperLauncher.exe type: default -'688170': +"688170": installDir: Bombshell launch: - config: @@ -321491,18 +316629,18 @@ oslist: macos executable: Bombshell.app type: default - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" config: oslist: windows executable: Bombshell.exe type: config - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" config: oslist: macos executable: Bombshell.app type: config -'688180': - installDir: '80.08' +"688180": + installDir: "80.08" launch: - config: oslist: windows @@ -321513,17 +316651,17 @@ executable: 80.08.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: 80.08.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: 80.08.x86_64 type: default -'688200': - installDir: Cassandra's Fabulous Foray +"688200": + installDir: "Cassandra's Fabulous Foray" launch: - config: oslist: windows @@ -321537,14 +316675,14 @@ oslist: macos executable: CassandrasFabulousForay.app type: default -'688210': +"688210": installDir: Deathlands launch: - config: oslist: windows executable: Deathlands.exe type: default -'688260': +"688260": installDir: Morph_Girl launch: - config: @@ -321552,76 +316690,70 @@ description: Launch executable: nw.exe type: default -'688330': +"688330": installDir: Zombie Commando 3D launch: - config: oslist: windows executable: zommando.exe type: default -'688350': +"688350": installDir: Wrath of the Goliaths Dinosaurs launch: - config: oslist: windows executable: WrathOfTheGoliaths.exe type: default - - arguments: '-d3d12' + - arguments: "-d3d12" config: betakey: developer oslist: windows description: Force Direct-X 12 Launch - description_loc: - english: Force Direct-X 12 Launch executable: WrathOfTheGoliaths.exe type: option1 - - arguments: '-d3d11' + - arguments: "-d3d11" config: betakey: developer oslist: windows description: Force Direct-X 11 Launch - description_loc: - english: Force Direct-X 11 Launch executable: WrathOfTheGoliaths.exe type: option2 - - arguments: '-vulkan' + - arguments: "-vulkan" config: betakey: developer description: Force Vulkan Launch - description_loc: - english: Force Vulkan Launch executable: WrathOfTheGoliaths.exe type: option3 -'688360': {} -'688370': +"688360": {} +"688370": installDir: Cyberoque launch: - - arguments: '@f+ @INFOOFF' + - arguments: "@f+ @INFOOFF" config: oslist: windows description: Full screen executable: Cyberoque.win32_steam.exe type: option1 - - arguments: '@f1920x1080 @z0.9 @INFOOFF' + - arguments: "@f1920x1080 @z0.9 @INFOOFF" config: oslist: windows description: Windowed executable: Cyberoque.win32_steam.exe type: option2 -'688380': +"688380": installDir: Restoration launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows executable: Game.exe type: default - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: linux executable: Game type: default -'688400': +"688400": installDir: Geostorm launch: - config: @@ -321630,9 +316762,9 @@ type: default - config: oslist: macos - executable: Game.app\\Contents\\MacOS\\Game + executable: "Game.app\\\\Contents\\\\MacOS\\\\Game" type: default -'688420': +"688420": installDir: BadNorth launch: - config: @@ -321643,70 +316775,70 @@ oslist: macos executable: BadNorth.app type: default - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" config: oslist: windows description: Launch to Resolution Dialog executable: BadNorth.exe type: config - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" config: oslist: macos description: Launch to Resolution Dialog executable: BadNorth.app type: config -'688430': +"688430": installDir: Duel of Summoners launch: - config: oslist: windows executable: DuelofSummoners.exe type: none -'688450': +"688450": installDir: Old Adventure launch: - config: oslist: windows executable: Old Adventure.exe type: default -'688470': +"688470": installDir: Gloria Sinica Han Xiongnu Wars launch: - config: oslist: windows executable: HanXiongnuWars.exe type: default -'688480': +"688480": installDir: EVE Valkyrie - Warzone launch: - - arguments: '-steam -2d -tenant=live' - executable: WindowsNoEditor\\VkGame\\Binaries\\Win64\\EVE Valkyrie - Warzone.exe + - arguments: "-steam -2d -tenant=live" + executable: "WindowsNoEditor\\\\VkGame\\\\Binaries\\\\Win64\\\\EVE Valkyrie - Warzone.exe" type: default - workingdir: WindowsNoEditor\\VkGame\\Binaries\\Win64 - - arguments: '-steam -vr -tenant=live' - executable: WindowsNoEditor\\VkGame\\Binaries\\Win64\\EVE Valkyrie - Warzone.exe + workingdir: "WindowsNoEditor\\\\VkGame\\\\Binaries\\\\Win64" + - arguments: "-steam -vr -tenant=live" + executable: "WindowsNoEditor\\\\VkGame\\\\Binaries\\\\Win64\\\\EVE Valkyrie - Warzone.exe" type: vr - workingdir: WindowsNoEditor\\VkGame\\Binaries\\Win64 - - arguments: '-steam -vr -tenant=live' - executable: WindowsNoEditor\\VkGame\\Binaries\\Win64\\EVE Valkyrie - Warzone.exe + workingdir: "WindowsNoEditor\\\\VkGame\\\\Binaries\\\\Win64" + - arguments: "-steam -vr -tenant=live" + executable: "WindowsNoEditor\\\\VkGame\\\\Binaries\\\\Win64\\\\EVE Valkyrie - Warzone.exe" type: othervr - workingdir: WindowsNoEditor\\VkGame\\Binaries\\Win64 - - arguments: '-2d -tenant=playtest -fullscreen -nohmd -steam -region=us-east-1' + workingdir: "WindowsNoEditor\\\\VkGame\\\\Binaries\\\\Win64" + - arguments: "-2d -tenant=playtest -fullscreen -nohmd -steam -region=us-east-1" config: betakey: alpha - description: 'EVE: Valkyrie - Warzone Alpha' - executable: WindowsNoEditor\\VkGame\\Binaries\\Win64\\EVE Valkyrie - Warzone.exe + description: "EVE: Valkyrie - Warzone Alpha" + executable: "WindowsNoEditor\\\\VkGame\\\\Binaries\\\\Win64\\\\EVE Valkyrie - Warzone.exe" type: option3 -'688500': +"688500": installDir: Rise of One launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: RiseOfOne.exe type: default -'688550': {} -'688570': +"688550": {} +"688570": installDir: Romance with Chocolate - Hidden Objects launch: - config: @@ -321717,10 +316849,10 @@ oslist: macos executable: Romance.app type: none -'688580': {} -'688590': {} -'688600': {} -'688620': +"688580": {} +"688590": {} +"688600": {} +"688620": installDir: Tiny Force Deluxe launch: - config: @@ -321733,64 +316865,64 @@ type: default - config: oslist: macos - executable: Tiny Force Mac.app\\Contents\\MacOS\\Tiny Force Mac + executable: "Tiny Force Mac.app\\\\Contents\\\\MacOS\\\\Tiny Force Mac" type: default -'688630': +"688630": installDir: Nightork Adventures 2 - Legacy of Chaos launch: - config: oslist: windows executable: Launcher.exe type: none -'688650': - installDir: You Doesn't Exist +"688650": + installDir: "You Doesn't Exist" launch: - - arguments: '-jar rpgboss-library.jar --player gamedata' + - arguments: "-jar rpgboss-library.jar --player gamedata" config: oslist: windows - executable: openjdk\\bin\\java.exe + executable: "openjdk\\\\bin\\\\java.exe" type: none - - arguments: '-jar rpgboss-library.jar --player gamedata' + - arguments: "-jar rpgboss-library.jar --player gamedata" config: oslist: linux - executable: ./openjdk/bin/java + executable: "./openjdk/bin/java" type: none -'688660': - installDir: HisMajesty'sShip +"688660": + installDir: "HisMajesty'sShip" launch: - config: oslist: windows executable: HMS.exe type: none -'688680': - installDir: Oswald's Adventure +"688680": + installDir: "Oswald's Adventure" launch: - config: oslist: windows executable: Game.exe type: default -'688690': +"688690": installDir: Yoba launch: - config: oslist: windows executable: Yoba.exe type: default -'688720': +"688720": installDir: Infinity Fall launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: InfinityFall.exe type: vr - config: - osarch: '32' + osarch: "32" oslist: windows executable: InfinityFall32.exe type: vr -'688730': {} -'688740': +"688730": {} +"688740": installDir: Fractured Minds launch: - config: @@ -321801,57 +316933,57 @@ oslist: macos executable: FracturedMinds_Mac.app type: default -'688750': +"688750": installDir: MineDrill Redux launch: - config: oslist: windows executable: MineDrill Redux.exe type: default -'688770': +"688770": installDir: TETRUX Online launch: - config: oslist: windows executable: TETRUXOnline/TETRUXOnline.exe type: none -'688780': +"688780": installDir: Taras Bulba and platforms of Hoolion launch: - config: oslist: windows executable: game.exe type: none -'688790': +"688790": installDir: Nebula Nuker launch: - config: oslist: windows executable: Nebula Nuker.exe type: default -'688800': +"688800": installDir: Paralysis launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Paralysis.exe type: none -'688880': +"688880": installDir: CynocleptTheGame launch: - config: oslist: windows - description: 'Cynoclept: The Game' + description: "Cynoclept: The Game" executable: Cynoclept.exe type: default - config: oslist: windows - ownsdlc: '706140' - description: 'Cynoclept: The Game - Harambe Jump' + ownsdlc: "706140" + description: "Cynoclept: The Game - Harambe Jump" executable: CynocleptHJ.exe type: option1 -'688900': +"688900": installDir: EndlessReality launch: - config: @@ -321859,7 +316991,7 @@ executable: Endless/Endless/Endless.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Endless/Endless/Endless type: default @@ -321867,15 +316999,15 @@ oslist: macos executable: Endless/Endless/Endless.app/Contents/MacOS/Endless type: default -'688910': +"688910": installDir: CUBE-C VR Game Collection launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: VRCubeWorld.exe type: vr -'688930': +"688930": installDir: City of Ages Picture Supportive Text MUD (server and client included) launch: - config: @@ -321883,30 +317015,30 @@ description: CoA Handoff Launcher executable: handoff.exe type: default -'688940': +"688940": installDir: StevesPub launch: - - arguments: '-vr' + - arguments: "-vr" config: betakey: development - osarch: '64' + osarch: "64" oslist: windows description: Unreal 420 Branch executable: StevesPub420.exe type: vr - config: - osarch: '64' + osarch: "64" oslist: windows executable: StevesPub420.exe type: vr - config: betakey: oculus_testing - osarch: '64' + osarch: "64" oslist: windows description: Oculus Testing executable: StevesPub420.exe type: vr -'689000': +"689000": installDir: Vulture launch: - config: @@ -321915,19 +317047,19 @@ type: default - config: oslist: macos - executable: Vulture.app\\Contents\\MacOS\\Vulture + executable: "Vulture.app\\\\Contents\\\\MacOS\\\\Vulture" type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Vulture.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Vulture.x86 type: default -'689020': +"689020": installDir: final m00n - Defender of the Cubes launch: - config: @@ -321936,35 +317068,35 @@ type: default - config: oslist: macos - executable: final_m00n.app\\Contents\\MacOS\\final_m00n + executable: "final_m00n.app\\\\Contents\\\\MacOS\\\\final_m00n" type: default -'689030': +"689030": installDir: Infection Rate launch: - config: oslist: windows executable: infection_rate.exe type: none -'689040': +"689040": installDir: Scuttlers launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Scuttlers.exe type: none - config: - osarch: '32' + osarch: "32" oslist: windows executable: scuttlers32.exe type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: scuttlers_linux_universal.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: scuttlers_linux_universal.x86_64 type: none @@ -321972,23 +317104,23 @@ oslist: macos executable: Scuttlers.app type: none -'689050': +"689050": installDir: Next Stop Zombie launch: - config: oslist: windows executable: NextStopZombie.exe type: default -'689060': {} -'689070': +"689060": {} +"689070": installDir: Asyula launch: - config: oslist: windows executable: Game.exe type: default -'689080': {} -'689090': +"689080": {} +"689090": installDir: Microtransaction_Simulator launch: - config: @@ -322000,11 +317132,11 @@ executable: MicroSimulator.app type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: MicroSimulator.x86_64 type: none -'689100': +"689100": installDir: Ravager launch: - config: @@ -322012,22 +317144,22 @@ description: Launch executable: Ravager.exe type: default -'689120': +"689120": installDir: Scuffle Scoundrels launch: - config: oslist: windows executable: ScuffleScoundrels.exe type: default -'689130': +"689130": installDir: Operation Polarity Hook launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: operationpolarityhook.exe type: vr -'689160': +"689160": installDir: Eruption launch: - config: @@ -322038,7 +317170,7 @@ oslist: macos executable: Eruption.app type: default -'689170': +"689170": installDir: Potemkin launch: - config: @@ -322049,21 +317181,21 @@ oslist: windows executable: Potemkin.exe type: none -'689180': - installDir: Trivia Vault 1980's Trivia +"689180": + installDir: "Trivia Vault 1980's Trivia" launch: - config: oslist: windows executable: Trivia Vault 1980s Trivia.exe type: default -'689210': +"689210": installDir: The Museum of ThroughView launch: - config: oslist: windows executable: TheMuseumofThroughView.exe type: vr -'689270': +"689270": installDir: Chessia launch: - config: @@ -322071,19 +317203,19 @@ executable: Chessia.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Chessia.sh type: default -'689290': +"689290": installDir: My RC Buggy! VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: latest.exe type: vr -'689300': +"689300": installDir: Monsteria launch: - config: @@ -322094,19 +317226,19 @@ oslist: macos executable: Monsteria.app type: default -'689340': +"689340": installDir: LOGistICAL USA - Florida launch: - executable: LogisticalApp.exe type: none -'689350': +"689350": installDir: Ruin City Gasolina launch: - config: oslist: windows executable: RCG.exe type: none -'689360': +"689360": installDir: The Thirst of Hearts launch: - config: @@ -322121,7 +317253,7 @@ oslist: linux executable: The Thirst of Hearts.x86 type: none -'689400': +"689400": installDir: MaduMaths launch: - config: @@ -322130,36 +317262,36 @@ type: none - config: oslist: macos - executable: Madu Maths.app\\Contents\\MacOS\\Madu Maths + executable: "Madu Maths.app\\\\Contents\\\\MacOS\\\\Madu Maths" type: none -'689460': +"689460": installDir: Trinity Dungeon launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: game.exe type: default -'689470': +"689470": installDir: Chromasia launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: windows64/Chromasia.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: windows32/Chromasia.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: linux32/Chromasia type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: linux64/Chromasia type: default @@ -322167,8 +317299,8 @@ oslist: macos executable: mac/Contents/MacOS/Chromasia type: default -'689480': - installDir: Leon's crusade (La cruzada de León) +"689480": + installDir: "Leon's crusade (La cruzada de León)" launch: - config: oslist: windows @@ -322176,13 +317308,13 @@ type: default - config: oslist: macos - executable: lacruzadadeleón.app\\Contents\\MacOS\\nwjs + executable: "lacruzadadeleón.app\\\\Contents\\\\MacOS\\\\nwjs" type: none - config: oslist: linux executable: nw type: none -'689520': +"689520": installDir: Fallalypse launch: - config: @@ -322191,94 +317323,94 @@ type: none - config: oslist: macos - executable: fallalypse.app\\Contents\\MacOS\\fallalypse + executable: "fallalypse.app\\\\Contents\\\\MacOS\\\\fallalypse" type: none - config: - osarch: '32' + osarch: "32" oslist: linux - executable: fallalypse.linux\\fallalypse.x86 + executable: "fallalypse.linux\\\\fallalypse.x86" type: none - config: - osarch: '64' + osarch: "64" oslist: linux - executable: fallalypse.linux\\fallalypse.x86_64 + executable: "fallalypse.linux\\\\fallalypse.x86_64" type: none -'689570': +"689570": installDir: BattleCore Arena launch: - - arguments: ' MainMenu_Lvl' + - arguments: " MainMenu_Lvl" config: - osarch: '64' + osarch: "64" oslist: windows executable: BattleCoreArena.exe type: default - arguments: MainMenu_Lvl config: betakey: bca_dev - osarch: '64' + osarch: "64" oslist: windows executable: BattleCoreArenaClient.exe type: default - arguments: MainMenu_Lvl config: betakey: bca_testing - osarch: '64' + osarch: "64" oslist: windows executable: BattleCoreArenaClient.exe type: default - arguments: MainMenu_Lvl config: betakey: bca_ubi - osarch: '64' + osarch: "64" oslist: windows executable: BattleCoreArenaClient.exe type: default -'689600': +"689600": installDir: Little Earth launch: - executable: Little Earth.exe type: vr -'689610': +"689610": installDir: HuntnSneak launch: - config: oslist: windows - executable: Hunt 'n Sneak.exe + executable: "Hunt 'n Sneak.exe" type: default -'689620': +"689620": installDir: Alpha Mike Foxtrot launch: - config: oslist: windows executable: AMF_Beta.exe type: vr -'689650': +"689650": installDir: Les Fleursword launch: - config: oslist: windows executable: Game.exe type: none -'689660': +"689660": installDir: WAR launch: - executable: WAR.exe type: none -'689680': +"689680": installDir: Memories launch: - config: oslist: windows executable: Memories.exe type: none -'689700': +"689700": installDir: Mad Crown launch: - config: oslist: windows executable: MadCrown.exe type: default -'689710': +"689710": installDir: Hop Step Sing! Summer Vacation ☆ Carefree (HQ Edition) launch: - config: @@ -322287,44 +317419,44 @@ type: vr nameLocalized: japanese: Hop Step Sing!『気ままに☆サマーバケーション』 -'689720': +"689720": installDir: GangstaUnderground launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Poker.exe type: vr -'689740': +"689740": installDir: Mystery Loss launch: - config: oslist: windows executable: MysteryLoss.exe type: none -'689750': {} -'689820': {} -'689830': +"689750": {} +"689820": {} +"689830": installDir: DUELEUM launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: game.exe type: vr -'689880': +"689880": installDir: Bee Aware launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: BeeAware.exe type: default -'689900': +"689900": installDir: Darkestville Castle launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: DarkestVille Castle.exe @@ -322334,17 +317466,17 @@ executable: DarkestVilleCastle.app type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: DarkestVilleCastle.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: DarkestVille Castle.exe type: default -'689910': - installDir: Another Lost Phone Laura's Story +"689910": + installDir: "Another Lost Phone Laura's Story" launch: - config: oslist: windows @@ -322355,12 +317487,12 @@ executable: alp.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: alp.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: alp.x86 type: default @@ -322370,57 +317502,57 @@ description: Chinese version beta executable: alp.exe type: option1 - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" config: betakey: testchinese oslist: windows description: Unity Launch Screen executable: alp.exe type: config - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" config: betakey: testchinese oslist: macos description: Unity Launch Screen executable: alp.app type: config - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" config: betakey: testchinese - osarch: '64' + osarch: "64" oslist: linux description: Unity Launch Screen executable: alp.x86_64 type: config - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" config: - osarch: '32' + osarch: "32" oslist: linux description: Unity Launch Screen executable: alp.x86 type: config -'689980': +"689980": installDir: Car Trader Simulator launch: - config: oslist: windows executable: CTS.exe type: default -'689990': {} -'6900': +"689990": {} +"6900": installDir: Hitman Codename 47 launch: - executable: Hitman.Exe - - description: 'Hitman: Codename 47 Configuration' + - description: "Hitman: Codename 47 Configuration" executable: setup.exe -'690000': +"690000": installDir: Slimebrawl launch: - config: oslist: windows executable: Slimebrawl.exe type: default -'690040': +"690040": installDir: SUPERHOTMCD launch: - config: @@ -322438,23 +317570,23 @@ description: Launch executable: SUPERHOTMCD.x86_64 type: none -'690060': +"690060": installDir: SORE launch: - config: oslist: windows executable: nw.exe type: default -'690080': +"690080": installDir: Deadly Traps launch: - config: oslist: windows executable: Deadly_Traps.exe type: default -'690090': {} -'690110': {} -'690120': +"690090": {} +"690110": {} +"690120": installDir: Inked launch: - config: @@ -322463,11 +317595,11 @@ type: none - config: oslist: macos - executable: Inked.app\\Contents\\MacOS\\Inked + executable: "Inked.app\\\\Contents\\\\MacOS\\\\Inked" type: none nameLocalized: - schinese: '洇客 Inked: A Tale of Love' -'690130': + schinese: "洇客 Inked: A Tale of Love" +"690130": installDir: FlatFatCat launch: - config: @@ -322476,37 +317608,37 @@ type: default - config: oslist: macos - executable: Contents\\MacOS\\ffc + executable: "Contents\\\\MacOS\\\\ffc" type: default -'690140': +"690140": installDir: Sword Legacy Omen launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SLO.exe type: none -'690150': +"690150": installDir: Fossil Hunters launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: FossilHunters.exe type: default - config: oslist: macos - executable: FossilHunters.app\\Contents\\MacOS\\FossilHunters + executable: "FossilHunters.app\\\\Contents\\\\MacOS\\\\FossilHunters" type: default -'690200': +"690200": installDir: Capsular launch: - config: oslist: windows executable: Capsular.exe type: none -'690210': {} -'690220': +"690210": {} +"690220": installDir: Call Me Skyfish launch: - arguments: ~windowed @@ -322514,98 +317646,96 @@ oslist: windows executable: CallMeSkyfish.exe type: default -'690240': +"690240": installDir: Trivia Vault Classic Rock Trivia launch: - config: oslist: windows executable: Trivia Vault Classic Rock Trivia.exe type: default -'690250': +"690250": installDir: Judge Dredd launch: - - arguments: >- - -exit -noconsole -conf \"dosbox_dredd.conf\" ^ -c \"mount e '..\\Judge Dredd'\" ^ -c \"e:\" ^ -c \"imgmount d - dredd.cue -t cdrom\" ^ -c \"cd ACCLAIM\\DREDD\" ^ -c \"law.exe -noconsole\" ^ -c \"exit\" + - arguments: "-exit -noconsole -conf \\\"dosbox_dredd.conf\\\" ^ -c \\\"mount e '..\\\\Judge Dredd'\\\" ^ -c \\\"e:\\\" ^ -c \\\"imgmount d dredd.cue -t cdrom\\\" ^ -c \\\"cd ACCLAIM\\\\DREDD\\\" ^ -c \\\"law.exe -noconsole\\\" ^ -c \\\"exit\\\"" config: oslist: windows - executable: dosbox_windows\\dosbox.exe + executable: "dosbox_windows\\\\dosbox.exe" type: default - config: oslist: linux - executable: dosbox_linux\\launch_judgedredd_game.sh + executable: "dosbox_linux\\\\launch_judgedredd_game.sh" type: default -'690260': +"690260": installDir: Tower Miners launch: - config: oslist: windows executable: TowerMiners.exe type: none -'690310': +"690310": installDir: SiegeVR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SiegeVR_Steam.exe type: vr -'690350': +"690350": installDir: Endless Combat launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: \\EndlessCombat\\Binaries\\Win64\\EndlessCombat.exe + executable: "\\\\EndlessCombat\\\\Binaries\\\\Win64\\\\EndlessCombat.exe" type: default - config: - osarch: '32' + osarch: "32" oslist: windows - executable: \\EndlessCombat\\Binaries\\Win32\\EndlessCombat.exe + executable: "\\\\EndlessCombat\\\\Binaries\\\\Win32\\\\EndlessCombat.exe" type: default -'690370': +"690370": installDir: Cantata launch: - config: oslist: windows executable: cantata.exe type: default -'690400': +"690400": installDir: RainbowStep launch: - config: oslist: windows executable: RainbowStep.exe type: default -'690410': +"690410": installDir: Twisted Enhanced Edition launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TwistedEE.exe type: default -'690440': +"690440": installDir: KorvaeInSpace launch: - config: oslist: windows executable: PlatformerTest.exe type: default -'690460': +"690460": installDir: Sky Hunter launch: - config: oslist: windows executable: Sky Hunter.exe type: default -'690500': +"690500": installDir: Gamer launch: - config: oslist: windows - executable: win64\\VG.exe -'690510': + executable: "win64\\\\VG.exe" +"690510": installDir: Black Survival launch: - config: @@ -322613,53 +317743,53 @@ executable: BlackSurvival.exe type: default nameLocalized: - arabic: 'Immortal Soul: Black Survival' - brazilian: 'Immortal Soul: Black Survival' - bulgarian: 'Immortal Soul: Black Survival' - czech: 'Immortal Soul: Black Survival' - danish: 'Immortal Soul: Black Survival' - dutch: 'Immortal Soul: Black Survival' - english: 'Immortal Soul: Black Survival' - finnish: 'Immortal Soul: Black Survival' - french: 'Immortal Soul: Black Survival' - german: 'Immortal Soul: Black Survival' - greek: 'Immortal Soul: Black Survival' - hungarian: 'Immortal Soul: Black Survival' - italian: 'Immortal Soul: Black Survival' + arabic: "Immortal Soul: Black Survival" + brazilian: "Immortal Soul: Black Survival" + bulgarian: "Immortal Soul: Black Survival" + czech: "Immortal Soul: Black Survival" + danish: "Immortal Soul: Black Survival" + dutch: "Immortal Soul: Black Survival" + english: "Immortal Soul: Black Survival" + finnish: "Immortal Soul: Black Survival" + french: "Immortal Soul: Black Survival" + german: "Immortal Soul: Black Survival" + greek: "Immortal Soul: Black Survival" + hungarian: "Immortal Soul: Black Survival" + italian: "Immortal Soul: Black Survival" japanese: ブラサバ:戦略バトロワゲーム koreana: Black Survival(블랙서바이벌) - latam: 'Immortal Soul: Black Survival' - norwegian: 'Immortal Soul: Black Survival' - polish: 'Immortal Soul: Black Survival' - portuguese: 'Immortal Soul: Black Survival' - romanian: 'Immortal Soul: Black Survival' - russian: 'Immortal Soul: Black Survival' + latam: "Immortal Soul: Black Survival" + norwegian: "Immortal Soul: Black Survival" + polish: "Immortal Soul: Black Survival" + portuguese: "Immortal Soul: Black Survival" + romanian: "Immortal Soul: Black Survival" + russian: "Immortal Soul: Black Survival" schinese: 黑色幸存者 - spanish: 'Immortal Soul: Black Survival' - swedish: 'Immortal Soul: Black Survival' + spanish: "Immortal Soul: Black Survival" + swedish: "Immortal Soul: Black Survival" tchinese: Black Survival - thai: 'Immortal Soul: Black Survival' - turkish: 'Immortal Soul: Black Survival' - ukrainian: 'Immortal Soul: Black Survival' - vietnamese: 'Immortal Soul: Black Survival' -'690530': + thai: "Immortal Soul: Black Survival" + turkish: "Immortal Soul: Black Survival" + ukrainian: "Immortal Soul: Black Survival" + vietnamese: "Immortal Soul: Black Survival" +"690530": installDir: Soul at Stake launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SaS.exe type: default nameLocalized: schinese: 灵魂筹码 - 1v4 -'690560': +"690560": installDir: Overburdened launch: - config: oslist: windows executable: OverburdenedSteam.exe type: none -'690570': +"690570": installDir: Drone Racer Canyons launch: - config: @@ -322670,7 +317800,7 @@ oslist: macos executable: DroneRacerCanyons.app type: default -'690580': +"690580": installDir: Evil Spirits launch: - config: @@ -322678,7 +317808,7 @@ description: Launch executable: Evil Spirits.exe type: none -'690610': +"690610": installDir: Crazy Dreamz launch: - config: @@ -322689,38 +317819,38 @@ oslist: macos executable: Dreamz.app type: default -'690620': +"690620": installDir: Downward Spiral Horus Station launch: - executable: DownwardSpiral.exe type: default - - arguments: '-vr' + - arguments: "-vr" executable: DownwardSpiral.exe type: vr - - arguments: '-demo' + - arguments: "-demo" config: betakey: development description: Play demo executable: DownwardSpiral.exe type: none - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" config: betakey: development executable: DownwardSpiral.exe type: config -'690630': +"690630": installDir: Light Fantastik launch: - executable: LightFantastik.exe type: none -'690640': +"690640": installDir: Trine 4 The Nightmare Prince launch: - config: oslist: windows executable: trine4.exe type: default -'690670': +"690670": installDir: Klondike Solitaire Kings launch: - config: @@ -322729,20 +317859,20 @@ type: default - config: oslist: windows - description: '''''DLC'''' Money Cat' + description: "''DLC'' Money Cat" executable: Klondike Solitaire Kings - Money Cat.exe type: option1 - config: oslist: windows - description: '''''DLC'''' Strongman' + description: "''DLC'' Strongman" executable: Klondike Solitaire Kings - Strongman.exe type: option1 - config: oslist: windows - description: '''''DLC'''' Three Headed Dragon' + description: "''DLC'' Three Headed Dragon" executable: Klondike Solitaire Kings - Three Headed Dragon.exe type: option1 -'690710': +"690710": installDir: HeiankyoAlien launch: - executable: HeiankyoAlien3671.exe @@ -322755,7 +317885,7 @@ description: English Version executable: HA_E.pdf type: manual -'690740': +"690740": installDir: BOOKS launch: - config: @@ -322763,49 +317893,49 @@ description: Launch executable: BOOKS.exe type: none -'690790': +"690790": installDir: DiRT Rally 2.0 launch: - - arguments: '-novr' + - arguments: "-novr" config: - osarch: '64' + osarch: "64" oslist: windows executable: dirtrally2.exe type: default - - arguments: '-logging' + - arguments: "-logging" config: betakey: devtest - osarch: '64' + osarch: "64" oslist: windows description: RP17 - Logging executable: dirtrally2.exe type: option1 - config: betakey: devtest - osarch: '64' + osarch: "64" oslist: windows description: RP17 - QA executable: dirtrally2_qa.exe type: option2 - - arguments: '-logging' + - arguments: "-logging" config: betakey: devtest - osarch: '64' + osarch: "64" oslist: windows description: RP17 - QA - Logging executable: dirtrally2_qa.exe type: option3 - - arguments: '-vr open' + - arguments: "-vr open" config: betakey: devtest3 - osarch: '64' + osarch: "64" oslist: windows executable: dirtrally2.exe type: vr - - arguments: '-useoculussdk' + - arguments: "-useoculussdk" config: betakey: devtest - osarch: '64' + osarch: "64" oslist: windows description: Oculus SDK executable: dirtrally2.exe @@ -322813,7 +317943,7 @@ - description: DiRT Rally 2.0 executable: dirtrally2.exe type: vr - - arguments: '-novr' + - arguments: "-novr" config: betakey: qatestbranch description: DiRT Rally 2.0 @@ -322824,41 +317954,41 @@ description: DR2 - QA executable: dirtrally2_qa.exe type: option3 - - arguments: '-useoculussdk' + - arguments: "-useoculussdk" config: - osarch: '64' + osarch: "64" oslist: windows executable: dirtrally2.exe type: othervr -'690800': {} -'690810': +"690800": {} +"690810": installDir: KFIncursion launch: - - arguments: '-steam ' + - arguments: "-steam " executable: Incursion.exe type: vr -'690820': +"690820": installDir: The Sunset 2096 launch: - - executable: The Sunset 2096\\MyProject3.exe + - executable: "The Sunset 2096\\\\MyProject3.exe" type: default -'690830': +"690830": installDir: Foundation launch: - - arguments: '-fullscreen' + - arguments: "-fullscreen" config: - osarch: '64' + osarch: "64" oslist: windows executable: foundation.exe type: default -'690840': +"690840": installDir: Martha Madison Simple Machines Volume 1 launch: - config: oslist: windows executable: Simple MachinesChapter1.exe type: default -'690850': +"690850": installDir: Magibot launch: - config: @@ -322870,23 +318000,23 @@ executable: Magibot-release-Mac-V2.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Magibot-Release-Linux-univV2.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Magibot-Release-Linux-univV2.x86_64 type: default -'690860': +"690860": installDir: Pirate Jump 2 launch: - config: oslist: windows executable: PirateJump2.exe type: default -'690930': +"690930": installDir: Evening Surprise launch: - config: @@ -322901,62 +318031,62 @@ oslist: linux executable: EveningSurprise.sh type: none -'690950': +"690950": installDir: Skeleton Sprint launch: - config: oslist: windows - executable: game\\Skeleton Sprint.exe + executable: "game\\\\Skeleton Sprint.exe" type: default - config: oslist: windows - executable: lvlbuilder\\skeleton-sprint-levelbuilder.exe + executable: "lvlbuilder\\\\skeleton-sprint-levelbuilder.exe" type: editor -'690980': +"690980": installDir: TO4 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TO.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: TO.sh type: default -'6910': +"6910": installDir: Deus Ex launch: - - executable: System\\DeusEx.exe + - executable: "System\\\\DeusEx.exe" workingdir: System -'691060': - installDir: Orphan's Treasure +"691060": + installDir: "Orphan's Treasure" launch: - config: oslist: windows executable: Orphan.exe type: default -'691080': +"691080": installDir: 3D Hardcore Cube launch: - config: oslist: windows executable: 3D Hardcore Cube.exe type: config -'691130': {} -'691150': +"691130": {} +"691150": installDir: Saku Saku launch: - config: oslist: windows executable: sakusaku.exe type: default -'691160': +"691160": installDir: Electronauts launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Electronauts.exe type: vr @@ -322964,15 +318094,15 @@ oslist: macos executable: Electronauts.app type: vr -'691210': {} -'691220': +"691210": {} +"691220": installDir: Parkour launch: - config: oslist: windows executable: Parkour.exe type: default -'691240': +"691240": installDir: Going Nowhere The Dream launch: - config: @@ -322987,7 +318117,7 @@ oslist: linux executable: linux_content/gn2.x86 type: default -'691250': +"691250": installDir: Charlie the Duck launch: - config: @@ -322995,71 +318125,69 @@ description: Charlie the Duck (Windows) executable: Charlie_the_Duck.exe type: default - - arguments: dos-version\\charlie.exe -noconsole + - arguments: "dos-version\\\\charlie.exe -noconsole" config: oslist: windows - ownsdlc: '993710' + ownsdlc: "993710" description: Original version running in DosBox (DLC) - executable: dos-version\\dosbox\\dosbox.exe + executable: "dos-version\\\\dosbox\\\\dosbox.exe" type: none -'691260': +"691260": installDir: PopulationONE launch: - - arguments: '-debug -logFile population_one_client.log' + - arguments: "-debug -logFile population_one_client.log" config: - osarch: '64' + osarch: "64" oslist: windows executable: PopulationONE.exe type: vr -'691280': +"691280": installDir: SINNER launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: blackstar_uproject.exe type: default nameLocalized: schinese: 救赎之路 -'691320': +"691320": installDir: Gun Club VR launch: - - arguments: '-vrmode openvr' + - arguments: "-vrmode openvr" config: - osarch: '64' + osarch: "64" oslist: windows executable: Gun Club VR.exe type: vr - - arguments: '-vrmode oculus' + - arguments: "-vrmode oculus" config: - osarch: '64' + osarch: "64" oslist: windows executable: Gun Club VR.exe type: othervr - config: - osarch: '64' + osarch: "64" oslist: windows description: GCVR Legacy Option - description_loc: - english: GCVR Legacy Option executable: Gun_Club_VR.exe type: vr -'691390': +"691390": installDir: Alchemage launch: - executable: Alchemage.exe type: none -'691420': +"691420": installDir: Continuous Girl launch: - - executable: Continuous Girl\\\\Continuous Girl.exe + - executable: "Continuous Girl\\\\\\\\Continuous Girl.exe" type: default -'691430': +"691430": installDir: Firebird The Unfinished launch: - executable: TheUnfinished.exe type: vr -'691450': +"691450": installDir: Misao launch: - config: @@ -323070,26 +318198,26 @@ oslist: windows executable: Config.exe type: config -'691540': +"691540": installDir: Space Fighter launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Space Fighter.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: Space Fighter.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Space Fighter.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Space Fighter.x86_64 type: default @@ -323097,39 +318225,39 @@ oslist: macos executable: Space Fighter.app type: default -'691570': +"691570": installDir: Wingless launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Wingless415.exe type: vr -'691580': - installDir: 'Maggie''s Movies - Camera, Action!' +"691580": + installDir: "Maggie's Movies - Camera, Action!" launch: - config: oslist: windows - executable: Maggie\\Maggie.exe + executable: "Maggie\\\\Maggie.exe" type: default - config: oslist: macos executable: Mac.app type: default -'691590': +"691590": installDir: KryptCrawler launch: - - arguments: '-mode standalone' + - arguments: "-mode standalone" config: oslist: windows executable: KryptCrawler.exe type: default - - arguments: '-mode oculusvr' + - arguments: "-mode oculusvr" config: oslist: windows executable: KryptCrawler.exe type: vr -'691600': +"691600": installDir: Mission1545 launch: - config: @@ -323138,16 +318266,16 @@ type: default - config: oslist: macos - executable: Mission1545.app\\Contents\\MacOS\\Mission1545 + executable: "Mission1545.app\\\\Contents\\\\MacOS\\\\Mission1545" type: default -'691620': +"691620": installDir: Death Rings of Jupiter launch: - config: oslist: windows executable: DeathRingsofJupiter.exe type: default -'691630': +"691630": installDir: Stellatum launch: - config: @@ -323155,21 +318283,21 @@ description: Launch executable: Stellatum.exe type: none -'691640': +"691640": installDir: RoadRunner VR launch: - executable: roadRunnerVR.exe type: vr -'691650': +"691650": installDir: Kaet Must Die! launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: \\KaetMustDie.exe + executable: "\\\\KaetMustDie.exe" type: default -'691660': {} -'691680': +"691660": {} +"691680": installDir: Ganbatte launch: - config: @@ -323182,7 +318310,7 @@ description: Oculus executable: GanbatteMultiplayer.exe type: othervr -'691690': +"691690": installDir: Ash of Gods Redemption launch: - config: @@ -323212,42 +318340,42 @@ oslist: linux executable: terminus.x86_64 type: default -'691700': +"691700": installDir: Triton Wing launch: - config: oslist: windows executable: TritonWing.exe type: default -'691720': +"691720": installDir: RetroGunX VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: RetroGunXVR.exe type: vr -'691730': +"691730": installDir: FPV Drone Simulator launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: FPV drone simulator.exe type: default -'691750': +"691750": installDir: Andromeda Wing launch: - config: oslist: windows executable: AndromedaWing.exe type: default -'691770': +"691770": installDir: Eiyu Senki launch: - executable: Eiyu Senki.exe type: default -'691790': +"691790": installDir: Arcadian Atlas launch: - config: @@ -323260,9 +318388,9 @@ - config: oslist: linux executable: ArcadianAtlas.x86_64 -'691800': {} -'691810': {} -'691830': +"691800": {} +"691810": {} +"691830": installDir: Avernum 3 Ruined World launch: - config: @@ -323273,12 +318401,12 @@ oslist: macos executable: Avernum 3.app type: none -'691840': +"691840": installDir: Halloweenistry launch: - executable: Halloweenistry.exe type: none -'691850': +"691850": installDir: The Mines of Morseph launch: - config: @@ -323286,113 +318414,113 @@ description: Launch executable: mines.exe type: none -'691860': +"691860": installDir: Watch Out launch: - config: oslist: windows executable: WatchOut.exe type: none -'691890': +"691890": installDir: MeteorCrisis launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Machine Crisis_f05.exe type: vr -'691910': +"691910": installDir: Fishing Maniacs launch: - config: oslist: windows executable: FM1.exe type: none -'691920': {} -'691930': +"691920": {} +"691930": installDir: MSICoreAssault launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: MSICoreAssault.exe type: vr -'691980': - installDir: Fortune's Tavern - Remastered +"691980": + installDir: "Fortune's Tavern - Remastered" launch: - executable: Game.exe type: none -'691990': +"691990": installDir: Cats Lover launch: - - arguments: '-fullscreen' + - arguments: "-fullscreen" config: oslist: windows executable: cats lover.exe type: default -'6920': +"6920": installDir: Deus Ex Invisible War launch: - - executable: System\\dx2.exe + - executable: "System\\\\dx2.exe" workingdir: System -'692010': +"692010": installDir: MeiMeiDance launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ECYVR.exe type: vr -'692030': +"692030": installDir: Tennis World Tour launch: - config: betakey: qa_test - osarch: '64' + osarch: "64" oslist: windows executable: wttpc.exe type: default -'692060': +"692060": installDir: Casinopia launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: CasinoPia.exe type: vr -'692090': +"692090": installDir: Robin of Loxley the Legend of Sherwood launch: - config: oslist: windows executable: RoLEarlyAccess.exe type: none -'692100': +"692100": installDir: Infliction launch: - config: oslist: windows executable: Infliction.exe type: none -'692110': +"692110": installDir: ArchRobo - Robotic Annihilation launch: - config: oslist: windows executable: ArchRobo.exe type: none -'692130': +"692130": installDir: Rise Of Titans launch: - arguments: steam config: - osarch: '64' + osarch: "64" oslist: windows executable: Rise of Titans.exe type: default - arguments: steam config: - osarch: '64' + osarch: "64" oslist: linux executable: Rise of Titans.x86_64 type: default @@ -323401,15 +318529,15 @@ oslist: macos executable: Rise of Titans.app type: default -'692170': +"692170": installDir: Virtual Robots - Robot programming simulator launch: - config: oslist: windows executable: VBots.exe type: none -'692180': {} -'692190': +"692180": {} +"692190": installDir: Pixel Puzzle Picross launch: - config: @@ -323418,17 +318546,17 @@ type: default - config: oslist: macos - executable: Pixel Puzzle.app\\Contents\\MacOS\\Pixel Puzzle + executable: "Pixel Puzzle.app\\\\Contents\\\\MacOS\\\\Pixel Puzzle" type: default -'692200': +"692200": installDir: aMAZE Dark Times launch: - config: oslist: windows executable: aMAZE DT.exe type: default -'692260': {} -'692270': +"692260": {} +"692270": installDir: Over The Moonlight launch: - config: @@ -323436,8 +318564,8 @@ description: Launch OTM executable: OverTheMoonlight.exe type: default -'692290': {} -'692310': +"692290": {} +"692310": installDir: REPULSE Galactic Rivals launch: - config: @@ -323446,47 +318574,47 @@ type: none - config: oslist: macos - executable: REPULSE.app\\Contents\\MacOS\\REPULSE + executable: "REPULSE.app\\\\Contents\\\\MacOS\\\\REPULSE" type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: REPULSE - Galactic Rivals.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: REPULSE - Galactic Rivals.x86_64 type: none -'692360': +"692360": installDir: TalesOfWeddingRingsVR launch: - - arguments: '-vr' + - arguments: "-vr" config: - osarch: '64' + osarch: "64" oslist: windows executable: TalesOfWeddingRingsVR.exe type: vr -'692530': +"692530": installDir: CommunityGarden launch: - arguments: +appName alpha_carleton +assetDatabaseStrategy Streaming +steamClient true config: - osarch: '64' + osarch: "64" oslist: windows executable: UnityClient@Windows.exe type: vr -'692540': {} -'692580': {} -'692590': +"692540": {} +"692580": {} +"692590": installDir: DEFECTIVE launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: DEFECTIVE.exe type: default -'692610': +"692610": installDir: TwoEscapes launch: - config: @@ -323495,7 +318623,7 @@ executable: twoescapes.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: twoescapes.x86_64 type: default @@ -323504,11 +318632,11 @@ executable: twoescapes.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: twoescapes.x86 type: default -'692630': +"692630": installDir: Beetlejuice Bad as Can launch: - config: @@ -323519,15 +318647,15 @@ oslist: macos executable: Beetle.app type: default -'692660': +"692660": installDir: Invictus In the Shadow of Olympus launch: - config: oslist: windows executable: Invictus.exe type: default -'692680': - installDir: Don't Explode +"692680": + installDir: "Don't Explode" launch: - config: oslist: windows @@ -323535,23 +318663,23 @@ type: default - config: oslist: macos - executable: Don't Explode.app + executable: "Don't Explode.app" type: default -'692690': +"692690": installDir: Dance Collider launch: - config: oslist: windows executable: DanceCollider.exe type: vr -'692710': +"692710": installDir: AstronjumpBaby launch: - config: oslist: windows executable: AstronjumpBaby.exe type: default -'692780': +"692780": installDir: Olorun Theocracy launch: - arguments: log @@ -323559,19 +318687,19 @@ oslist: windows executable: OlorunSteam.exe type: default -'692790': +"692790": installDir: Spring Breez launch: - executable: Spring.exe type: none -'692830': +"692830": installDir: Fear Of Nightmares Madness Descent launch: - config: oslist: windows executable: FearOfNightmaresMD.exe type: default -'692840': +"692840": installDir: Underworld Ascendant launch: - config: @@ -323586,49 +318714,49 @@ oslist: linux executable: UA type: default -'692850': +"692850": installDir: Bloodstained Ritual of the Night launch: - executable: BloodstainedRotN.exe type: none -'692860': +"692860": installDir: Prisoner launch: - config: oslist: windows executable: pow.exe type: default - - arguments: '-testing' + - arguments: "-testing" config: - osarch: '64' + osarch: "64" oslist: windows description: Launch the testing version of prisoner executable: pow.exe type: default -'692880': {} -'692890': +"692880": {} +"692890": installDir: RoboQuest launch: - config: oslist: windows executable: RoboQuest.exe type: default -'692920': +"692920": installDir: XXZ launch: - config: oslist: windows executable: game.exe type: none -'692930': +"692930": installDir: DreadEye VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: dreadeye.exe type: vr -'692950': +"692950": installDir: The Dew launch: - config: @@ -323639,7 +318767,7 @@ english: The Dew schinese: 露珠(The Dew) tchinese: 露珠(The Dew) -'693020': +"693020": installDir: Space Commander 9 launch: - config: @@ -323647,7 +318775,7 @@ description: Launch executable: Space Commander 9.exe type: default -'693030': +"693030": installDir: Neo Angle launch: - config: @@ -323658,7 +318786,7 @@ oslist: macos executable: NeoOSX.app type: default -'693050': +"693050": installDir: DumbStone launch: - config: @@ -323669,70 +318797,70 @@ - config: oslist: macos description: Launch OSX - executable: 'DumbStone.app\\Contents\\MacOS\\DumbStone ' + executable: "DumbStone.app\\\\Contents\\\\MacOS\\\\DumbStone " type: default - config: oslist: linux description: Launch Linux executable: DumbStoneLinux.x86_64 type: default -'693070': +"693070": installDir: Martha Madison Simple Machines Volume 2 launch: - config: oslist: windows executable: Simple MachinesChapter2.exe type: default -'693080': +"693080": installDir: Martha Madison Magnetism launch: - config: oslist: windows executable: Magnetism.exe type: default -'693090': +"693090": installDir: Star Waker launch: - executable: Star Waker.exe type: none -'693150': +"693150": installDir: Martha Madison Electricity launch: - config: oslist: windows executable: Electricity.exe type: default -'693180': +"693180": installDir: Slice of Life launch: - config: oslist: windows executable: Slice_of_Life.exe type: default -'693190': +"693190": installDir: SDHeavy launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SDHEAVY.exe type: default -'693210': +"693210": installDir: Grimtale Island launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: GrimtaleIsland type: default -'693240': +"693240": installDir: Mahjong Challenge launch: - config: oslist: windows executable: Mahjong Challenge.exe type: default -'693250': +"693250": installDir: Panda Run launch: - config: @@ -323740,14 +318868,14 @@ description: Launch executable: Panda Run.exe type: default -'693280': +"693280": installDir: Zombies Berserk launch: - config: oslist: windows executable: Zombies Berserk.exe type: default -'693300': +"693300": installDir: Unbalance launch: - config: @@ -323759,20 +318887,20 @@ executable: Unbalance.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Unbalance type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Unbalance type: default -'693310': +"693310": installDir: Bomsy launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Bomsy.exe type: default @@ -323781,26 +318909,26 @@ executable: Bomsy.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Bomsy.x86_64 type: default -'693320': +"693320": installDir: Chinomikon launch: - config: oslist: windows executable: Game.exe type: default -'693330': +"693330": installDir: Fake World launch: - config: oslist: windows executable: FakeWorldVR.exe type: vr -'693360': {} -'693380': +"693360": {} +"693380": installDir: Neckbeards Basement Arena launch: - config: @@ -323811,61 +318939,61 @@ oslist: linux executable: neckbeards20 type: default -'693400': +"693400": installDir: Taking Valhalla VR launch: - config: oslist: windows executable: TKV.exe type: vr -'693430': +"693430": installDir: The Simple Apocalypse launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TSA.exe type: none -'693440': {} -'693450': +"693440": {} +"693450": installDir: Clad in Iron Gulf of Mexico 1864 launch: - config: oslist: windows executable: Clad in Iron - Gulf of Mexico 1864.exe type: default -'693480': {} -'693500': +"693480": {} +"693500": installDir: Castle Demolition VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: CastleDemolitionVR.exe type: vr -'693520': {} -'693560': +"693520": {} +"693560": installDir: After Rain Phoenix Rise launch: - config: oslist: windows executable: ARPRv5.exe type: default -'693580': +"693580": installDir: Goblins of Elderstone launch: - config: oslist: windows executable: GoblinsOfElderstone.exe type: none -'693650': +"693650": installDir: LOGistICAL Italy launch: - config: oslist: windows executable: LogisticalApp.exe type: none -'693670': +"693670": installDir: Molten Armor launch: - config: @@ -323881,8 +319009,8 @@ oslist: linux executable: nw type: none -'693680': {} -'693700': +"693680": {} +"693700": installDir: Prime Mover launch: - config: @@ -323890,15 +319018,15 @@ executable: Prime Mover.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: PrimeMover type: default - config: oslist: macos - executable: PrimeMover.app\\Contents\\MacOS\\PrimeMover + executable: "PrimeMover.app\\\\Contents\\\\MacOS\\\\PrimeMover" type: default -'693710': +"693710": installDir: PolyKat launch: - config: @@ -323910,88 +319038,88 @@ executable: polykat.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: polykat.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: polykat.x86 type: default -'693720': {} -'693750': +"693720": {} +"693750": installDir: Galactic Crew launch: - config: oslist: windows executable: Galactic Crew.exe type: default -'693790': +"693790": installDir: Crypt Hunter launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: CryptHunter.exe type: vr -'693800': +"693800": installDir: LocoParentis launch: - - arguments: '-nohmd' + - arguments: "-nohmd" config: - osarch: '64' + osarch: "64" oslist: windows executable: LocoParentis.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: LocoParentis.exe type: vr -'693810': +"693810": installDir: Treasure At The Top launch: - config: oslist: windows executable: Treasure At The Top 1.0.1.exe type: vr -'693820': +"693820": installDir: The Ragdoll launch: - executable: TheRagDoll.exe type: default -'693830': +"693830": installDir: Containment Corps launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ContainmentCorps.exe type: default -'693870': {} -'693880': - installDir: Trivia Vault 1980's Trivia 2 +"693870": {} +"693880": + installDir: "Trivia Vault 1980's Trivia 2" launch: - config: oslist: windows executable: Trivia Vault 1980s Trivia 2.exe type: default -'693890': +"693890": installDir: Trivia Vault Classic Rock Trivia 2 launch: - config: oslist: windows executable: Trivia Vault Classic Rock Trivia 2.exe type: default -'693950': +"693950": installDir: Kaniman launch: - config: oslist: windows executable: KANIMAN.exe type: default -'693960': +"693960": installDir: Just Ride launch: - config: @@ -324000,11 +319128,11 @@ type: default nameLocalized: schinese: 狂飙:极限视界 -'694010': {} -'694020': {} -'694030': {} -'694040': {} -'694070': +"694010": {} +"694020": {} +"694030": {} +"694040": {} +"694070": installDir: BadLands RoadTrip launch: - config: @@ -324017,95 +319145,95 @@ type: default - config: oslist: macos - executable: BLuRT.app\\Contents\\MacOS\\BLuRT + executable: "BLuRT.app\\\\Contents\\\\MacOS\\\\BLuRT" type: default -'694090': +"694090": installDir: Apex Construct launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ApexConstruct.exe type: vr -'694110': {} -'694130': +"694110": {} +"694130": installDir: MyFreeZoo launch: - config: oslist: windows executable: MyFreeZoo.exe type: none -'694140': +"694140": installDir: Undercity launch: - config: oslist: windows executable: Undercity.exe type: default -'694150': +"694150": installDir: Abyssal Fall launch: - config: oslist: windows executable: Abyssal Fall.exe type: default -'694160': +"694160": installDir: Guardians of Life VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: game.exe type: vr -'694170': {} -'694180': +"694170": {} +"694180": installDir: MobileZombie_IOS launch: - config: oslist: macos executable: MobileZombie3.4.app type: default -'694230': +"694230": installDir: Martha Madison Energy launch: - config: oslist: windows executable: Energy.exe type: default -'694240': +"694240": installDir: Martha Madison Waves launch: - config: oslist: windows executable: Waves.exe type: default -'694280': +"694280": installDir: ZombieArmy4 launch: - - executable: Launcher\\za4.exe + - executable: "Launcher\\\\za4.exe" type: none -'694370': +"694370": installDir: Space Pilgrim Academy launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" executable: nw.exe type: none -'694400': +"694400": installDir: Diminutive launch: - executable: diminutive.exe type: default -'694420': - installDir: Alimardan's Mischief +"694420": + installDir: "Alimardan's Mischief" launch: - - executable: Alimardan's Mischief.exe + - executable: "Alimardan's Mischief.exe" type: default -'694430': +"694430": installDir: Alimardan Meets Merlin launch: - executable: AlimardanMeetMerlin.exe type: default -'694470': +"694470": installDir: Guitar Hardness launch: - config: @@ -324113,29 +319241,29 @@ description: Launch executable: Guitar Hardness.exe type: none -'694480': +"694480": installDir: DEFENDERS OF THE FALLEN ISLAND launch: - config: oslist: windows executable: DOTFI.exe type: default -'694490': +"694490": installDir: Quad Hopping launch: - config: oslist: windows - executable: Windows\\quadhopping.exe + executable: "Windows\\\\quadhopping.exe" type: default - config: oslist: macos - executable: MacOS\\quadhopping.app\\Contents\\MacOS\\quadhopping + executable: "MacOS\\\\quadhopping.app\\\\Contents\\\\MacOS\\\\quadhopping" type: none - config: oslist: linux - executable: Linux\\quadhopping.x86 + executable: "Linux\\\\quadhopping.x86" type: none -'694500': +"694500": installDir: Army Men RTS launch: - config: @@ -324143,7 +319271,7 @@ description: Army Men RTS executable: amrts.exe type: default -'694520': +"694520": installDir: His Chunnibyou Cannot Be Cured launch: - config: @@ -324158,18 +319286,18 @@ oslist: macos executable: His Chuunibyou Cannot Be Cured!.app type: none -'694550': +"694550": installDir: Audio Forager launch: - config: oslist: windows executable: tSNE.exe type: vr -'694610': +"694610": installDir: LumaksWraptiles launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: LumaksWraptiles.exe type: default @@ -324178,11 +319306,11 @@ executable: LumaksWraptiles.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: LumaksWraptiles type: default -'694660': +"694660": installDir: End of Days launch: - config: @@ -324190,7 +319318,7 @@ description: beta executable: EndOfDays.exe type: vr -'694670': +"694670": installDir: Charpi launch: - config: @@ -324198,77 +319326,77 @@ description: test executable: game.exe type: default -'694680': +"694680": installDir: Santa Claws launch: - config: oslist: windows - executable: Santa Claws Windows\\Santa Claws.exe + executable: "Santa Claws Windows\\\\Santa Claws.exe" type: default - config: oslist: macos - executable: Santa Claws Mac\\Santa Claws Mac.app + executable: "Santa Claws Mac\\\\Santa Claws Mac.app" type: default - config: oslist: linux - executable: Santa Claws Linux\\Santa Claws.x86_64 + executable: "Santa Claws Linux\\\\Santa Claws.x86_64" type: default -'694720': +"694720": installDir: notmycar launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Prototype.exe type: default - - arguments: '-branch=beta' + - arguments: "-branch=beta" config: betakey: beta - osarch: '64' + osarch: "64" oslist: windows description: Beta executable: Prototype.exe type: option2 - - arguments: '-branch=development' + - arguments: "-branch=development" config: betakey: development - osarch: '64' + osarch: "64" oslist: windows description: Development executable: Prototype.exe type: option1 - - arguments: '-branch=qa' + - arguments: "-branch=qa" config: betakey: test - osarch: '64' + osarch: "64" oslist: windows description: QA executable: Prototype.exe type: option3 - - arguments: '-branch=experimental' + - arguments: "-branch=experimental" config: betakey: experimental - osarch: '64' + osarch: "64" oslist: windows description: Experimental executable: Prototype.exe type: option2 -'694730': +"694730": installDir: Evil Park launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: EvilPark.exe type: default -'694760': +"694760": installDir: SweatyPalms launch: - config: oslist: windows executable: SweatyPalms.exe type: vr -'694770': +"694770": installDir: Vestaria Saga launch: - config: @@ -324278,21 +319406,21 @@ nameLocalized: schinese: 维斯塔利亚传说 亡国骑士与星辰巫女 tchinese: 維斯塔利亞傳說 亡國騎士與星辰巫女 -'694790': +"694790": installDir: The Botanist launch: - config: oslist: windows executable: TheBotanist.exe type: none -'694830': +"694830": installDir: Give It Up! launch: - config: oslist: windows executable: Give It Up! Plus.exe type: default -'694870': +"694870": installDir: All Contact Lost launch: - config: @@ -324300,10 +319428,10 @@ description: Launch executable: SurvivalMode.exe type: default -'694900': {} -'694910': {} -'694920': {} -'694930': +"694900": {} +"694910": {} +"694920": {} +"694930": installDir: Lost God launch: - config: @@ -324314,28 +319442,28 @@ oslist: macos executable: LostGod.app/Contents/MacOS/LostGod type: default -'694950': +"694950": installDir: Oure launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Oure.exe type: default -'694960': +"694960": installDir: Zenethics Lab Outbreak launch: - executable: Zenethics lab - Outbreak.exe type: default -'694970': {} -'694980': +"694970": {} +"694980": installDir: Fjong launch: - config: oslist: windows executable: Fjong.exe type: none -'694990': +"694990": installDir: gnc2 launch: - config: @@ -324346,8 +319474,8 @@ oslist: linux executable: run.sh type: default -'695020': {} -'695050': +"695020": {} +"695050": installDir: Rain of Reflections launch: - config: @@ -324358,12 +319486,12 @@ oslist: macos executable: Rain_of_Reflections.app/Contents/MacOS/Rain_of_Reflections type: default -'695100': +"695100": installDir: Smoke and Sacrifice launch: - executable: shade.exe type: none -'695110': +"695110": installDir: Twickles launch: - config: @@ -324372,19 +319500,19 @@ type: default - config: oslist: macos - executable: Twickles.app\\Contents\\MacOS\\Twickles + executable: "Twickles.app\\\\Contents\\\\MacOS\\\\Twickles" type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Twickles.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Twickles.x86_64 type: default -'695290': +"695290": installDir: The Golf Club™ 2019 Featuring PGA TOUR launch: - config: @@ -324392,30 +319520,30 @@ description: Launch executable: golf.exe type: none -'695320': +"695320": installDir: Jobous the alien R launch: - config: oslist: windows executable: Jobous the alien R.exe type: none -'695330': +"695330": installDir: Season launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Sea.exe type: default -'695350': {} -'695360': +"695350": {} +"695360": installDir: Veritex launch: - config: oslist: windows executable: Veritex.exe type: none -'695420': +"695420": installDir: Hex Origins launch: - config: @@ -324430,27 +319558,27 @@ oslist: linux executable: Hex Origins.x86 type: default -'695440': - installDir: Dark Dimensions Wax Beauty Collector's Edition +"695440": + installDir: "Dark Dimensions Wax Beauty Collector's Edition" launch: - config: oslist: windows executable: DarkDimensions_WaxBeauty_CE.exe type: default -'695450': +"695450": installDir: Kingdom of the Dragon launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Kingdom of the Dragon.exe type: none - config: - osarch: '32' + osarch: "32" oslist: windows executable: Kingdom of the Dragon.exe type: none -'695460': +"695460": installDir: CoffeePixes launch: - config: @@ -324461,8 +319589,8 @@ oslist: macos executable: Coffee Pixes type: default -'695470': {} -'695490': +"695470": {} +"695490": installDir: Operation Chromite 1950 VR launch: - config: @@ -324473,14 +319601,14 @@ oslist: windows executable: IncheonWar1_0.exe type: othervr -'695510': +"695510": installDir: Rena And Elin launch: - config: oslist: windows executable: Rrena and Elin.exe type: default -'695560': +"695560": installDir: Building Block Heroes launch: - config: @@ -324488,20 +319616,20 @@ executable: BuildingBlockHeroes.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: BuildingBlockHeroesLinux32 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: BuildingBlockHeroesLinux type: default - config: oslist: macos - executable: Building Block Heroes.app\\Contents\\MacOS\\Building Block Heroes + executable: "Building Block Heroes.app\\\\Contents\\\\MacOS\\\\Building Block Heroes" type: default -'695570': +"695570": installDir: PyroMind launch: - config: @@ -324510,101 +319638,89 @@ type: default - config: oslist: macos - executable: Pyromind.app\\Contents\\MacOS\\Mac_Runner + executable: "Pyromind.app\\\\Contents\\\\MacOS\\\\Mac_Runner" type: default -'695590': {} -'695600': +"695590": {} +"695600": installDir: This Grand Life launch: - config: oslist: windows executable: ThisGrandLife.exe type: none -'695630': +"695630": installDir: NewPAL launch: - arguments: /WC config: oslist: windows - description: '視窗:自動' - description_loc: - english: '視窗:自動' - schinese: 视窗:自动 - tchinese: '視窗:自動' + description: "視窗:自動" executable: NewPAL_Release.exe type: option1 - arguments: /w 800 config: oslist: windows - description: '視窗:800x600' - description_loc: - english: '視窗:800x600' - schinese: '视窗:800x600' - tchinese: '視窗:800x600' + description: "視窗:800x600" executable: NewPAL_Release.exe type: option2 - arguments: /F config: oslist: windows description: 全螢幕 - description_loc: - english: 全螢幕 - schinese: 全画面 - tchinese: 全螢幕 executable: NewPAL_Release.exe type: option3 nameLocalized: schinese: 新仙剑奇侠传 单机版 tchinese: 新仙劍奇俠傳 單機版 -'695650': +"695650": installDir: Hunter Story launch: - config: oslist: windows executable: gameS.exe type: default -'695660': +"695660": installDir: Saloon Showdown VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SaloonShowdownVR.exe type: vr -'695690': +"695690": installDir: Ancient Siberia launch: - - arguments: '-s' + - arguments: "-s" config: - osarch: '64' + osarch: "64" oslist: windows executable: AncientSiberia_Client.exe type: default -'695720': +"695720": installDir: MatchVille launch: - executable: MatchVille.exe type: none -'695760': +"695760": installDir: Girls and Dungeons launch: - config: oslist: windows executable: Game.exe type: default -'695810': +"695810": installDir: HORDE ATTACK launch: - config: oslist: windows executable: Horde attack.exe type: default -'695830': +"695830": installDir: Captain Backwater launch: - config: oslist: windows - executable: windows_content\\CaptainBackwater.exe + executable: "windows_content\\\\CaptainBackwater.exe" type: none workingdir: windows_content - config: @@ -324617,27 +319733,27 @@ executable: linux_content/CaptainBackwater type: none workingdir: linux_content -'695880': +"695880": installDir: The Flying Turtle Jewel Quest launch: - config: oslist: windows executable: The Flying Turtle Jewel Quest.exe type: default -'695910': +"695910": installDir: The Relentless launch: - - arguments: '-vr' + - arguments: "-vr" config: oslist: windows executable: theRelentless.exe type: vr - - arguments: '-vr' + - arguments: "-vr" config: oslist: windows executable: theRelentless.exe type: othervr -'695920': +"695920": installDir: Super Seducer launch: - config: @@ -324650,98 +319766,98 @@ type: default - config: oslist: windows - ownsdlc: '819760' + ownsdlc: "819760" description: Bonus Video 1 - executable: \\BonusVideoOne\\openFolder.bat + executable: "\\\\BonusVideoOne\\\\openFolder.bat" type: none - config: oslist: windows - ownsdlc: '819810' + ownsdlc: "819810" description: Bonus Video 2 - executable: \\BonusVideoTwo\\openFolder.bat + executable: "\\\\BonusVideoTwo\\\\openFolder.bat" type: none - config: oslist: windows - ownsdlc: '819820' + ownsdlc: "819820" description: Bonus Video 3 - executable: \\BonusVideoThree\\openFolder.bat + executable: "\\\\BonusVideoThree\\\\openFolder.bat" type: none - config: oslist: windows - ownsdlc: '819830' + ownsdlc: "819830" description: Bonus Video 4 - executable: \\BonusVideoFour\\openFolder.bat + executable: "\\\\BonusVideoFour\\\\openFolder.bat" type: none - config: oslist: windows - ownsdlc: '819840' + ownsdlc: "819840" description: Bonus Video 5 - executable: \\BonusVideoFive\\openFolder.bat + executable: "\\\\BonusVideoFive\\\\openFolder.bat" type: none - config: oslist: windows - ownsdlc: '819850' + ownsdlc: "819850" description: The Natural (Audiobook) - executable: \\TheNatural\\openFolder.bat + executable: "\\\\TheNatural\\\\openFolder.bat" type: none - config: oslist: macos - ownsdlc: '819760' + ownsdlc: "819760" description: Bonus Video 1 - executable: \\BonusVideoOne\\ + executable: "\\\\BonusVideoOne\\\\" type: none - config: oslist: macos - ownsdlc: '819810' + ownsdlc: "819810" description: Bonus Video 2 - executable: \\BonusVideoTwo\\ + executable: "\\\\BonusVideoTwo\\\\" type: none - config: oslist: macos - ownsdlc: '819820' + ownsdlc: "819820" description: Bonus Video 3 - executable: \\BonusVideoThree\\ + executable: "\\\\BonusVideoThree\\\\" type: none - config: oslist: macos - ownsdlc: '819830' + ownsdlc: "819830" description: Bonus Video 4 - executable: \\BonusVideoFour\\ + executable: "\\\\BonusVideoFour\\\\" type: none - config: oslist: macos - ownsdlc: '819840' + ownsdlc: "819840" description: Bonus Video 5 - executable: \\BonusVideoFive\\ + executable: "\\\\BonusVideoFive\\\\" type: none - config: oslist: macos - ownsdlc: '819850' + ownsdlc: "819850" description: The Natural (audiobook) - executable: \\TheNatural\\ + executable: "\\\\TheNatural\\\\" type: none -'695940': +"695940": installDir: Love Chronicles The Sword and the Rose Collectors Edition launch: - config: oslist: windows executable: LoveChronicles_theSwordandtheRose.exe type: default -'695950': - installDir: European Mystery The Face of Envy Collector's Edition +"695950": + installDir: "European Mystery The Face of Envy Collector's Edition" launch: - config: oslist: windows executable: EuropeanMystery_TheFaceOfEnvy_CE.exe type: default -'695960': - installDir: Awakening The Goblin Kingdom Collector's Edition +"695960": + installDir: "Awakening The Goblin Kingdom Collector's Edition" launch: - config: oslist: windows executable: Awakening_TheGoblinKingdom.exe type: default -'695970': +"695970": installDir: Treadnauts launch: - config: @@ -324752,42 +319868,42 @@ oslist: macos executable: Treadnauts.app type: none -'695980': - installDir: Labyrinths of the World Forbidden Muse Collector's Edition +"695980": + installDir: "Labyrinths of the World Forbidden Muse Collector's Edition" launch: - config: oslist: windows executable: LabyrinthsOfTheWorld_ForbiddenMuse_CE.exe type: default -'695990': - installDir: Dead Reckoning Brassfield Manor Collector's Edition +"695990": + installDir: "Dead Reckoning Brassfield Manor Collector's Edition" launch: - config: oslist: windows executable: DRBM_CE.exe type: default -'696000': - installDir: Witches' Legacy The Dark Throne Collector's Edition +"696000": + installDir: "Witches' Legacy The Dark Throne Collector's Edition" launch: - config: oslist: windows executable: WitchesLegacy6_TheDarkThrone_CE.exe type: default -'696010': - installDir: Otherworld Shades of Fall Collector's Edition +"696010": + installDir: "Otherworld Shades of Fall Collector's Edition" launch: - config: oslist: windows executable: Otherworld_ShadesofFallCE.exe type: default -'696020': - installDir: Surface Game of Gods Collector's Edition +"696020": + installDir: "Surface Game of Gods Collector's Edition" launch: - config: oslist: windows executable: Surface_Game_of_Gods.exe type: default -'696040': +"696040": installDir: Tactera launch: - config: @@ -324802,50 +319918,50 @@ - description: Play Oculus Rift Version of Tactera executable: TacteraRift7.exe type: none -'696050': +"696050": installDir: The Final Days Eternal Night launch: - executable: EternalNight.exe type: none -'696060': +"696060": installDir: Live launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Live.exe type: none - config: oslist: macos - executable: Live.app\\Contents\\MacOS\\Live + executable: "Live.app\\\\Contents\\\\MacOS\\\\Live" type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: Live.x86_64 type: none -'696110': +"696110": installDir: Backgammon launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: Backgammon.exe type: default - config: - osarch: '64' + osarch: "64" oslist: macos description: Launch - executable: Backgammon.app\\Contents\\MacOS\\Backgammon + executable: "Backgammon.app\\\\Contents\\\\MacOS\\\\Backgammon" type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Backgammon.x86_64 type: default -'696140': +"696140": installDir: NoHeroesHere launch: - config: @@ -324856,23 +319972,23 @@ oslist: macos executable: NHH_Build.app/Contents/MacOS/NHH_Build type: none -'696150': +"696150": installDir: Electro Ride launch: - - arguments: '-window-mode exclusive' + - arguments: "-window-mode exclusive" config: - osarch: '64' + osarch: "64" oslist: windows executable: ElectroRide.exe type: default -'696160': +"696160": installDir: Necromancer Accountant launch: - config: oslist: windows executable: NecromancerAccountant.exe type: default -'696170': +"696170": installDir: Senran Kagura Peach Beach Splash launch: - config: @@ -324885,51 +320001,51 @@ type: vr nameLocalized: japanese: 閃乱カグラ PEACH BEACH SPLASH -'696180': +"696180": installDir: Bullet-Witch launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: witch.exe type: default - - arguments: '-setting' + - arguments: "-setting" config: - osarch: '32' + osarch: "32" oslist: windows executable: witch.exe type: config nameLocalized: japanese: バレットウィッチ -'696190': +"696190": installDir: Vacant launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Vacant.v.08.exe type: default -'696200': +"696200": installDir: Mike Dies launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: MikeDies.exe type: default -'696220': +"696220": installDir: FolkloreHunter launch: - executable: FolkloreHunter.exe type: none -'696250': +"696250": installDir: Lost Shipwreck launch: - config: oslist: windows executable: Lost Shipwreck.exe type: default -'696280': +"696280": installDir: Sole launch: - config: @@ -324938,9 +320054,9 @@ type: default - config: oslist: macos - executable: Contents\\MacOS\\Sole + executable: "Contents\\\\MacOS\\\\Sole" type: default -'696310': +"696310": installDir: JOE_PAPP launch: - config: @@ -324949,13 +320065,13 @@ type: default - config: oslist: macos - executable: TheGhostofJoePapp.app\\Contents\\MacOS\\TheGhostofJoePapp + executable: "TheGhostofJoePapp.app\\\\Contents\\\\MacOS\\\\TheGhostofJoePapp" type: default - config: oslist: linux executable: TheGhostofJoePapp.sh type: default -'696360': +"696360": installDir: Sword & Fairy 6 launch: - executable: Pal6.exe @@ -324964,27 +320080,27 @@ english: Chinese Paladin:Sword and Fairy 6 schinese: 仙剑奇侠传六 tchinese: 仙劍奇俠傳六 -'696370': +"696370": installDir: BROKE PROTOCOL launch: - executable: BrokeProtocol.exe type: default -'696400': +"696400": installDir: NeoBoom launch: - config: oslist: windows executable: NeoBoom.exe type: default -'696410': +"696410": installDir: Toy Generals launch: - config: oslist: windows executable: ToyGenerals.exe type: none -'696420': {} -'696430': +"696420": {} +"696430": installDir: Progetto Ustica launch: - config: @@ -324995,46 +320111,46 @@ oslist: macos executable: ProgettoUstica_0.8.2Beta_MAC.app type: default -'696440': +"696440": installDir: FARIA Starfall launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows executable: Starfall.exe type: default -'696460': +"696460": installDir: Pixel Traffic Circle Rush launch: - config: oslist: windows - executable: Windows\\ptcr.exe + executable: "Windows\\\\ptcr.exe" type: none - config: oslist: linux - executable: Linux\\ptcr.x86 + executable: "Linux\\\\ptcr.x86" type: none - config: oslist: macos - executable: MacOS\\ptcr.app\\Contents\\MacOS\\ptcr + executable: "MacOS\\\\ptcr.app\\\\Contents\\\\MacOS\\\\ptcr" type: none -'696470': +"696470": installDir: House Dating VR launch: - config: oslist: windows executable: HouseDatingVR.exe type: vr -'696480': +"696480": installDir: The Norwood Suite launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: The Norwood Suite.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: The Norwood Suite.exe type: default @@ -325042,87 +320158,87 @@ oslist: macos executable: The Norwood Suite.app type: default -'696490': +"696490": installDir: TOTOBALL launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: game.exe type: default -'696500': +"696500": installDir: Soldiers Of Freedom launch: - - arguments: '-windowed' + - arguments: "-windowed" config: - osarch: '64' + osarch: "64" oslist: windows executable: Soldiers of Freedom.exe type: vr -'696510': +"696510": installDir: The World of Legend VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: tecVR.exe type: vr -'696520': {} -'696530': +"696520": {} +"696530": installDir: Lake Ridden launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: LakeRidden.exe type: none -'696540': +"696540": installDir: 60 Second Strike launch: - config: oslist: windows - executable: Chaos\\Release\\Chaos_s.exe + executable: "Chaos\\\\Release\\\\Chaos_s.exe" type: default - workingdir: Chaos\\Release -'696550': {} -'696560': + workingdir: "Chaos\\\\Release" +"696550": {} +"696560": installDir: Bouncing Duck Simulator launch: - config: oslist: windows executable: BDS.exe type: none -'696580': +"696580": installDir: The Tower launch: - config: oslist: windows executable: TheTowerVive.exe type: vr -'696590': +"696590": installDir: XXZ XXL launch: - config: oslist: windows executable: game.exe type: none -'696600': +"696600": installDir: Between Planets launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: BetweenPlanets.exe type: default -'696650': +"696650": installDir: BLACK DAY launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: BlackDay.exe type: none -'696710': +"696710": installDir: The Surprising Adventures of Munchausen launch: - config: @@ -325133,38 +320249,38 @@ oslist: macos executable: The Surprising Adventures of Munchausen (Full).app type: default -'696730': {} -'696760': +"696730": {} +"696760": installDir: HoloLAB launch: - - arguments: '-vrmode openvr' + - arguments: "-vrmode openvr" config: oslist: windows executable: hololab.exe type: vr - - arguments: '-vrmode oculus' + - arguments: "-vrmode oculus" config: oslist: windows executable: hololab.exe type: othervr -'696770': {} -'696810': +"696770": {} +"696810": installDir: EMPYRE Lords of the Sea Gates launch: - config: oslist: windows executable: empyre.exe type: default -'696840': +"696840": installDir: PRESim launch: - config: oslist: windows executable: PRESim.exe type: default -'696850': {} -'696860': - installDir: '900' +"696850": {} +"696860": + installDir: "900" launch: - config: oslist: windows @@ -325176,218 +320292,218 @@ type: none - config: oslist: linux - executable: '900' + executable: "900" type: none -'696880': +"696880": installDir: 2D Paintball launch: - config: oslist: windows executable: 2dpball.exe type: default -'696910': +"696910": installDir: The Legend of the Dragonflame High School launch: - executable: Dragonflamehighschool.exe type: none -'696930': {} -'696940': +"696930": {} +"696940": installDir: DreamWorks Voltron VR Chronicles launch: - config: oslist: windows executable: Voltron.exe type: vr -'696970': {} -'696990': +"696970": {} +"696990": installDir: Fear For Freedom launch: - config: oslist: windows executable: Fear For Freedom.exe type: default -'697000': +"697000": installDir: YOU ARE KING launch: - config: oslist: windows executable: YOU ARE KING.exe type: none -'697010': +"697010": installDir: Until None Remain launch: - - arguments: '-nohmd' + - arguments: "-nohmd" executable: UntilNoneRemain.exe type: none -'697020': +"697020": installDir: Until None Remain VR launch: - - arguments: '-vr' + - arguments: "-vr" executable: UntilNoneRemain.exe type: vr -'697070': {} -'697080': {} -'697090': {} -'697100': {} -'697110': {} -'697130': +"697070": {} +"697080": {} +"697090": {} +"697100": {} +"697110": {} +"697130": installDir: The 9th Gate launch: - config: oslist: windows executable: The 9th Gate.exe type: default -'697160': +"697160": installDir: Pixel To The West launch: - config: oslist: windows executable: PixelToTheWest.exe type: none -'697200': {} -'697220': {} -'697230': {} -'697250': +"697200": {} +"697220": {} +"697230": {} +"697250": installDir: Beyond Enemy Lines 2 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: BeyondEnemyLines2.exe type: none - config: betakey: multiplayerlegacy - osarch: '64' + osarch: "64" oslist: windows executable: DedicatedServer.exe type: server - - arguments: '-DX12' + - arguments: "-DX12" config: - osarch: '64' + osarch: "64" oslist: windows description: Launch in DX12 Mode executable: BeyondEnemyLines2.exe type: option1 -'697260': {} -'697270': +"697260": {} +"697270": installDir: OneHit launch: - config: oslist: windows executable: OneHit.exe type: default -'697320': +"697320": installDir: Kung Fu All-Star VR launch: - config: oslist: windows executable: KFVR.exe type: vr -'697330': +"697330": installDir: Dronihilation VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Dronihilation.exe type: vr -'697340': +"697340": installDir: Fairy Light launch: - config: oslist: windows executable: Fairy Light.exe type: default -'697360': {} -'697370': +"697360": {} +"697370": installDir: LINX BATTLE ARENA launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: LBA.exe type: default -'697430': +"697430": installDir: Differently Fast launch: - config: oslist: windows executable: df.exe type: vr - - arguments: '-vrmode oculus' + - arguments: "-vrmode oculus" config: oslist: windows executable: df.exe type: othervr -'697450': +"697450": installDir: Piatka launch: - config: oslist: windows executable: piatka.exe type: default -'697490': +"697490": installDir: Space Wrangler launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: SpaceWrangler.exe type: default -'697530': +"697530": installDir: PARSE launch: - config: oslist: windows executable: Parse.exe type: none -'697550': +"697550": installDir: It Lurks Below launch: - config: oslist: windows executable: ILB.exe type: none -'697580': +"697580": installDir: Screamer launch: - config: oslist: windows executable: Launch Screamer.bat type: default - - arguments: '-conf \"./dosboxScreamer.conf\" -conf \"./dosboxScreamer_single.conf\" -noconsole' + - arguments: "-conf \\\"./dosboxScreamer.conf\\\" -conf \\\"./dosboxScreamer_single.conf\\\" -noconsole" config: oslist: macos executable: DOSBox/dosbox.app/Contents/MacOS/DOSBox type: default - - arguments: '-conf \"./dosboxScreamer.conf\" -conf \"./dosboxScreamer_single.conf\" -noconsole' + - arguments: "-conf \\\"./dosboxScreamer.conf\\\" -conf \\\"./dosboxScreamer_single.conf\\\" -noconsole" config: oslist: linux executable: dosbox/dosbox type: default -'697600': +"697600": installDir: Auto-Staccato launch: - config: oslist: windows executable: Auto-Staccato.exe type: none -'697610': +"697610": installDir: Idle Bouncer launch: - config: oslist: windows executable: nw.exe type: default -'697630': +"697630": installDir: WARMA launch: - config: oslist: windows executable: WARMA.exe type: none -'697640': {} -'697650': +"697640": {} +"697650": installDir: The 25th Ward The Silver Case launch: - config: @@ -325399,18 +320515,18 @@ executable: The25thWard.app type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: The25thWard.x86_64 type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: The25thWard.x86 type: none nameLocalized: japanese: シルバー事件25区 -'697660': +"697660": installDir: Jump Gunners launch: - config: @@ -325428,7 +320544,7 @@ description: Linux & SteamOS 32bit executable: JumpGunners.x86 type: none -'697670': +"697670": installDir: Journey of Haha launch: - config: @@ -325439,17 +320555,17 @@ oslist: macos executable: joh.app type: default -'697680': +"697680": installDir: Marblesared launch: - executable: marblesared.exe type: default - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" description: Marblesared Configuration executable: marblesared.exe type: config -'697700': {} -'697710': +"697700": {} +"697710": installDir: Ophidian launch: - config: @@ -325460,75 +320576,75 @@ oslist: macos executable: Ophidian.app type: none -'697730': +"697730": installDir: EscapeFantasy launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: 64bit version executable: EscapeFantasy.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows description: 32bit version executable: EscapeFantasy.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: EscapeFantasy.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: EscapeFantasy.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: macos executable: EscapeFantasy.app type: default - config: - osarch: '32' + osarch: "32" oslist: macos executable: EscapeFantasy.app type: default -'697750': {} -'697780': +"697750": {} +"697780": installDir: Thanksgivingistry launch: - executable: Thanksgivingistry.exe type: none -'697790': +"697790": installDir: Christmastry2 launch: - executable: Christmastry2.exe type: none -'697800': - installDir: One Night You're Crazy +"697800": + installDir: "One Night You're Crazy" launch: - executable: OneNightYouCrazy.exe type: none -'697820': +"697820": installDir: Halloweenistry 2 launch: - executable: Halloweenistry2.exe type: none -'697830': +"697830": installDir: Winteristry launch: - executable: Winteristry.exe type: none -'697850': +"697850": installDir: FPS - Fun Puzzle Shooter launch: - config: oslist: windows executable: FunPuzzleShooter.exe type: none -'697870': +"697870": installDir: Cruz Brothers launch: - config: @@ -325539,7 +320655,7 @@ oslist: macos executable: cruz.app type: none -'697880': +"697880": installDir: Design Hero launch: - config: @@ -325550,7 +320666,7 @@ oslist: macos executable: Game.app type: default -'697890': +"697890": installDir: Empty Handed launch: - config: @@ -325559,31 +320675,31 @@ type: default - config: oslist: macos - executable: Empty Handed.app\\Contents\\MacOS\\nwjs + executable: "Empty Handed.app\\\\Contents\\\\MacOS\\\\nwjs" type: default -'697910': +"697910": installDir: Temple Raid launch: - config: oslist: windows executable: TempleRaid.exe type: vr -'697930': +"697930": installDir: Brutal Runner launch: - config: oslist: windows executable: BrutalRunner.exe type: none -'697940': {} -'697950': +"697940": {} +"697950": installDir: TankWars Anniversary Edition launch: - config: oslist: windows executable: tankwars.exe type: default -'697960': +"697960": installDir: Cute Monsters Battle Arena launch: - config: @@ -325594,34 +320710,34 @@ oslist: macos executable: CuteMonstersBattleArena.app type: default -'697970': +"697970": installDir: Pyramaze The Game launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: PyramazeTheGame.exe type: default -'6980': +"6980": installDir: Thief Deadly Shadows launch: - - executable: system\\runme.exe + - executable: "system\\\\runme.exe" workingdir: System -'698030': +"698030": installDir: Comit the Astrodian 3 launch: - config: oslist: windows executable: Comit the Astrodian 3.exe type: default -'698040': +"698040": installDir: Legends of the Universe - Cosmic Bounty launch: - config: oslist: windows executable: Legends of the Universe - Cosmic Bounty.exe type: default -'698050': +"698050": installDir: All Our Asias launch: - config: @@ -325637,7 +320753,7 @@ description: Launch executable: AllOurAsias.x86 type: default -'698100': +"698100": installDir: Protagon launch: - config: @@ -325645,91 +320761,91 @@ description: Launch executable: protagon.exe type: vr -'698110': +"698110": installDir: Reficul launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ReficulSevil.exe type: othervr - config: - osarch: '64' + osarch: "64" oslist: windows executable: ReficulSevil.exe type: vr -'698160': +"698160": installDir: DinosaurIsland launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: DinosaurIsland.exe type: default -'698230': +"698230": installDir: RockBuster launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: RockBuster.exe type: default -'698260': +"698260": installDir: Star Shelter launch: - config: oslist: windows executable: StarShelter.exe type: vr -'698300': +"698300": installDir: Find this! launch: - config: oslist: windows - executable: Windows\\Find this!.exe + executable: "Windows\\\\Find this!.exe" type: none - config: - osarch: '32' + osarch: "32" oslist: linux - executable: Linux\\Find this!.x86 + executable: "Linux\\\\Find this!.x86" type: none - config: - osarch: '64' + osarch: "64" oslist: linux - executable: Linux\\Find this!.x86_64 + executable: "Linux\\\\Find this!.x86_64" type: none - config: oslist: macos - executable: MacOS\\Find this!.app\\Contents\\MacOS\\Find this! + executable: "MacOS\\\\Find this!.app\\\\Contents\\\\MacOS\\\\Find this!" type: none -'698310': {} -'698320': +"698310": {} +"698320": installDir: NanoScape launch: - executable: NanoScape v1.0c.exe type: none -'698330': +"698330": installDir: Z Runaway launch: - config: oslist: windows - executable: Windows\\Z Runaway.exe + executable: "Windows\\\\Z Runaway.exe" type: none - config: - osarch: '32' + osarch: "32" oslist: linux - executable: Linux\\Z Runaway.x86 + executable: "Linux\\\\Z Runaway.x86" type: none - config: - osarch: '64' + osarch: "64" oslist: linux - executable: Linux\\Z Runaway.x86_64 + executable: "Linux\\\\Z Runaway.x86_64" type: none - config: oslist: macos - executable: MacOS\\Z Runaway.app\\Contents\\MacOS\\Z Runaway + executable: "MacOS\\\\Z Runaway.app\\\\Contents\\\\MacOS\\\\Z Runaway" type: none -'698340': +"698340": installDir: DesertCraft launch: - config: @@ -325737,22 +320853,22 @@ description: Launch executable: flycar.exe type: vr -'698360': +"698360": installDir: Within Whispers The Fall launch: - config: oslist: windows executable: Within Whispers.exe type: default -'698370': +"698370": installDir: True or False Universe launch: - config: oslist: windows executable: TOFU.exe type: default -'698380': {} -'698410': +"698380": {} +"698410": installDir: Ski Hard - Lorsbruck 1978 launch: - arguments: stlaunch @@ -325765,20 +320881,20 @@ oslist: macos executable: SkiHardLorsbruck1978.app type: default -'698450': +"698450": installDir: Midnight Quest launch: - config: oslist: windows executable: MidnightQuest.exe type: default -'698480': +"698480": installDir: Hippo Sports launch: - executable: Hippo.exe type: default -'698490': {} -'698500': +"698490": {} +"698500": installDir: Guppy launch: - config: @@ -325793,15 +320909,15 @@ oslist: macos executable: Guppy.app type: none -'698520': +"698520": installDir: A Writer And His Daughter launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: AWAHD.exe type: vr -'698540': +"698540": installDir: Dungeon Warfare 2 launch: - config: @@ -325812,14 +320928,14 @@ oslist: macos executable: DungeonWarfare2.app type: none -'698570': +"698570": installDir: WackIt launch: - config: oslist: windows executable: WackIt.exe type: vr -'698590': +"698590": installDir: DemonsTier launch: - config: @@ -325828,38 +320944,38 @@ description: launch executable: DemonsTier.exe type: none -'698600': +"698600": installDir: ToothClaw launch: - config: oslist: windows executable: Tooth and Claw.exe type: vr -'698610': +"698610": installDir: ThroughBlocks launch: - config: oslist: windows executable: ThroughBlocks.exe type: default -'698620': +"698620": installDir: Screamer 2 launch: - config: oslist: windows executable: Launch Screamer 2.bat type: default - - arguments: '-conf \"./dosbox_screamer2.conf\" -conf \"./dosbox_screamer2_single.conf\" -noconsole' + - arguments: "-conf \\\"./dosbox_screamer2.conf\\\" -conf \\\"./dosbox_screamer2_single.conf\\\" -noconsole" config: oslist: macos executable: DOSBox/dosbox.app/Contents/MacOS/DOSBox type: default - - arguments: '-conf \"./dosbox_screamer2.conf\" -conf \"./dosbox_screamer2_single.conf\" -noconsole' + - arguments: "-conf \\\"./dosbox_screamer2.conf\\\" -conf \\\"./dosbox_screamer2_single.conf\\\" -noconsole" config: oslist: linux executable: dosbox/dosbox type: none -'698640': +"698640": installDir: Deep Sky Derelicts launch: - config: @@ -325867,7 +320983,7 @@ executable: Deep Sky Derelicts.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: run_dsd.sh type: default @@ -325877,23 +320993,23 @@ type: default - config: betakey: debug - osarch: '64' + osarch: "64" oslist: linux executable: run_dsd.sh type: default -'698650': +"698650": installDir: Neon the Ninja launch: - config: oslist: windows executable: NeontheNinja.exe type: default -'698670': +"698670": installDir: Scorn launch: - executable: Scorn.exe type: none -'698700': +"698700": installDir: Rise of the Third Power launch: - config: @@ -325904,30 +321020,26 @@ - config: oslist: macos description: Launch Rise of the Third Power - description_loc: - english: Launch Rise of the Third Power executable: Rise of the Third Power.app type: default - config: oslist: linux description: Launch Rise of the Third Power - description_loc: - english: Launch Rise of the Third Power executable: Rise of the Third Power.x86_64 type: default nameLocalized: japanese: ライズ・オブ・ザ・サード・パワー -'698710': {} -'698720': {} -'698740': +"698710": {} +"698720": {} +"698740": installDir: LNS launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: Loot'N Shoot.exe + executable: "Loot'N Shoot.exe" type: default -'698770': +"698770": installDir: Watch Me Jump launch: - config: @@ -325938,7 +321050,7 @@ oslist: macos executable: Watch Me Jump.app type: default -'698780': +"698780": installDir: Doki Doki Literature Club launch: - config: @@ -325949,20 +321061,20 @@ oslist: macos executable: DDLC.app/Contents/MacOS/DDLC type: default -'698790': +"698790": installDir: Paperville Panic! launch: - executable: PapervillePanic.exe type: vr -'698830': +"698830": installDir: Puzzle Dating launch: - config: oslist: windows executable: Puzzle Dating.exe type: default -'698850': {} -'698870': +"698850": {} +"698870": installDir: Metaverse Keeper launch: - config: @@ -325976,7 +321088,7 @@ nameLocalized: sc_schinese: 元能失控 schinese: 元能失控 Metaverse Keeper -'698880': +"698880": installDir: Slash Dots launch: - config: @@ -325985,40 +321097,40 @@ type: default - config: oslist: macos - executable: slashdots.app\\Contents\\MacOS\\mac_content + executable: "slashdots.app\\\\Contents\\\\MacOS\\\\mac_content" type: default -'698910': +"698910": installDir: Cliffstone Manor launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Cliffstone Manor.exe type: vr -'698920': +"698920": installDir: df launch: - config: oslist: windows executable: df.exe type: default -'698930': {} -'698950': +"698930": {} +"698950": installDir: Chaos and the White Robot launch: - config: oslist: windows executable: Chaos and the White Robot.exe type: none -'698960': +"698960": installDir: Battlemage Training launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Battlemage Training.exe type: vr -'698980': +"698980": installDir: sWORD MASTER launch: - config: @@ -326029,28 +321141,28 @@ oslist: macos executable: Contents/MacOS/mac type: none -'698990': +"698990": installDir: ONLY A launch: - config: oslist: windows executable: Only A.exe type: default -'699010': +"699010": installDir: Unsettled launch: - config: oslist: windows executable: Unsettled.exe type: none -'699040': +"699040": installDir: Millidor launch: - config: oslist: windows executable: MillidorLauncher.exe type: none -'699080': +"699080": installDir: JakesLoveStory launch: - config: @@ -326065,7 +321177,7 @@ oslist: macos executable: JLS.app type: default -'699100': +"699100": installDir: Megaton launch: - config: @@ -326076,66 +321188,54 @@ oslist: macos executable: Megaton.app type: default -'699110': {} -'699120': {} -'699130': +"699110": {} +"699120": {} +"699130": installDir: WWZ launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Retail - description_loc: - english: Retail - executable: en_us\\client\\bin\\pc\\wwzRetail.exe + executable: "en_us\\\\client\\\\bin\\\\pc\\\\wwzRetail.exe" type: default - workingdir: en_us\\client\\bin\\pc\\ + workingdir: "en_us\\\\client\\\\bin\\\\pc\\\\" - config: - betakey: 'beta_home,references' - osarch: '64' + betakey: "beta_home,references" + osarch: "64" oslist: windows description: Release - description_loc: - english: Release - executable: en_us\\client\\bin\\pc\\wwzRelease.exe - workingdir: en_us\\client\\bin\\pc\\ + executable: "en_us\\\\client\\\\bin\\\\pc\\\\wwzRelease.exe" + workingdir: "en_us\\\\client\\\\bin\\\\pc\\\\" - config: betakey: fh_branch - osarch: '64' + osarch: "64" oslist: windows description: Profile - description_loc: - english: Profile - executable: en_us\\client\\bin\\pc\\wwzProfile.exe - workingdir: en_us\\client\\bin\\pc\\ + executable: "en_us\\\\client\\\\bin\\\\pc\\\\wwzProfile.exe" + workingdir: "en_us\\\\client\\\\bin\\\\pc\\\\" - config: - betakey: 'sbr_qa_main,references' - osarch: '64' + betakey: "sbr_qa_main,references" + osarch: "64" oslist: windows description: Profile - description_loc: - english: Profile - executable: en_us\\client\\bin\\pc\\wwzProfile.exe - workingdir: en_us\\client\\bin\\pc\\ + executable: "en_us\\\\client\\\\bin\\\\pc\\\\wwzProfile.exe" + workingdir: "en_us\\\\client\\\\bin\\\\pc\\\\" - config: betakey: kochprostest - osarch: '64' + osarch: "64" oslist: windows description: Profile - description_loc: - english: Profile - executable: en_us\\client\\bin\\pc\\wwzProfile.exe - workingdir: en_us\\client\\bin\\pc\\ + executable: "en_us\\\\client\\\\bin\\\\pc\\\\wwzProfile.exe" + workingdir: "en_us\\\\client\\\\bin\\\\pc\\\\" - config: betakey: hm2_playtest - osarch: '64' + osarch: "64" oslist: windows description: Profile - description_loc: - english: Profile - executable: en_us\\client\\bin\\pc\\wwzProfile.exe - workingdir: en_us\\client\\bin\\pc\\ -'699150': + executable: "en_us\\\\client\\\\bin\\\\pc\\\\wwzProfile.exe" + workingdir: "en_us\\\\client\\\\bin\\\\pc\\\\" +"699150": installDir: Rex Another Island launch: - config: @@ -326146,7 +321246,7 @@ oslist: macos executable: REX.app type: default -'699160': +"699160": installDir: A Plot Story launch: - config: @@ -326157,7 +321257,7 @@ oslist: macos executable: aplotstory.app type: default -'699170': +"699170": installDir: Fell Seal launch: - config: @@ -326166,38 +321266,38 @@ type: default - config: oslist: macos - executable: FellSeal.app\\Contents\\MacOS\\FellSeal + executable: "FellSeal.app\\\\Contents\\\\MacOS\\\\FellSeal" type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Fell Seal.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Fell Seal.x86_64 type: default -'699180': +"699180": installDir: Human-powered spacecraft launch: - config: oslist: windows executable: nw.exe type: default -'699230': +"699230": installDir: Birdcakes launch: - executable: Birdcakes.exe type: default -'699240': +"699240": installDir: Keyboard Killers launch: - config: oslist: windows executable: Keyboard_Killers.exe type: default -'699330': +"699330": installDir: The Iron Oath launch: - config: @@ -326208,27 +321308,27 @@ oslist: macos executable: TheIronOath.app type: default -'699360': +"699360": installDir: Curvy launch: - config: oslist: windows executable: Curvy.exe type: default -'699370': +"699370": installDir: The market trader launch: - executable: game.exe type: none -'699390': +"699390": installDir: Knife Club VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Knife Club VR.exe type: vr -'699410': +"699410": installDir: Labyrinthian launch: - config: @@ -326241,9 +321341,9 @@ description: Original executable: Lab_OG.exe type: default -'699450': {} -'699460': {} -'699470': +"699450": {} +"699460": {} +"699470": installDir: Landon launch: - config: @@ -326251,31 +321351,31 @@ executable: Landon.exe type: default - config: - osarch: '64' + osarch: "64" oslist: macos - executable: Landon.app\\Contents\\MacOS\\Mac_Runner + executable: "Landon.app\\\\Contents\\\\MacOS\\\\Mac_Runner" type: default -'699480': +"699480": installDir: The Doorbreaker launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows executable: game.exe type: default -'699510': +"699510": installDir: The New California launch: - executable: Game.exe type: none -'699540': +"699540": installDir: Argonus launch: - config: oslist: windows executable: Argonus_and_the_Gods_of_Stone.exe type: default -'699550': +"699550": installDir: Forest Guardian launch: - config: @@ -326284,23 +321384,23 @@ type: none - config: oslist: macos - executable: newproject.app\\Contents\\MacOS\\nwjs + executable: "newproject.app\\\\Contents\\\\MacOS\\\\nwjs" type: none -'699570': +"699570": installDir: The Legendary Player - Make Your Reputation launch: - config: oslist: windows executable: The Legendary Player.exe type: default -'699590': +"699590": installDir: Trivia Vault Science & History Trivia 2 launch: - config: oslist: windows executable: Trivia Vault Science & History Trivia 2.exe type: default -'699600': +"699600": installDir: PEG launch: - config: @@ -326309,19 +321409,19 @@ type: default - config: oslist: macos - executable: PEG.app\\Contents\\MacOS\\PEG + executable: "PEG.app\\\\Contents\\\\MacOS\\\\PEG" type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: PEG.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: PEG.x86_64 type: default -'699670': +"699670": installDir: Feudal Alloy launch: - config: @@ -326330,67 +321430,67 @@ type: default - config: oslist: macos - executable: FeudalAlloy.app\\Contents\\MacOS\\FeudalAlloy + executable: "FeudalAlloy.app\\\\Contents\\\\MacOS\\\\FeudalAlloy" type: default - config: oslist: linux executable: FeudalAlloy.x86_64 type: default -'699680': +"699680": installDir: Monopolka launch: - config: oslist: windows executable: Monopolka.exe type: default -'699700': +"699700": installDir: DyingReborn_steam launch: - executable: DYING_Reborn.exe type: none -'699720': +"699720": installDir: Timension launch: - config: oslist: windows executable: Timension.exe type: default -'699740': +"699740": installDir: Bannermen launch: - config: oslist: windows executable: RTSGame.exe type: default -'699750': +"699750": installDir: Pixel Traffic Risky Bridge launch: - config: oslist: windows - executable: Windows\\ptrb.exe + executable: "Windows\\\\ptrb.exe" type: none - config: oslist: linux - executable: Linux\\ptrb.x86 + executable: "Linux\\\\ptrb.x86" type: none - config: oslist: macos - executable: MacOS\\ptrb.app\\Contents\\MacOS\\ptrb + executable: "MacOS\\\\ptrb.app\\\\Contents\\\\MacOS\\\\ptrb" type: none -'699760': +"699760": installDir: OTAKUtest launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: OTAKUtest.exe type: default -'699770': +"699770": installDir: RideOp launch: - executable: RideOperator.exe type: default -'699780': +"699780": installDir: Endless Fables 2 Frozen Path launch: - config: @@ -326399,13 +321499,13 @@ executable: EndlessFables2.exe type: none - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: EndlessFables2_i386 type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: EndlessFables2_amd64 @@ -326415,30 +321515,30 @@ description: Launch executable: mac_steam.app/Contents/MacOS/mac_steam type: none -'699790': +"699790": installDir: Pegasus Door launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Gate_Zero_Canyon.exe type: vr -'699820': +"699820": installDir: Mustdashe launch: - config: oslist: windows executable: MustdasheEarlyAccess.exe type: default -'699830': +"699830": installDir: Dummy Life launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: FR_DummyLifeSteam.exe type: default -'699850': +"699850": installDir: Medieval Battle Europe launch: - config: @@ -326449,7 +321549,7 @@ oslist: macos executable: medievalBattleEurope.app type: none -'699860': +"699860": installDir: Civil War 1864 launch: - config: @@ -326460,7 +321560,7 @@ oslist: macos executable: CivilWar1864.app type: none -'699870': +"699870": installDir: Commands & Colors Ancients launch: - config: @@ -326471,15 +321571,15 @@ oslist: macos executable: Ancients.app type: none -'699880': {} -'699890': {} -'699900': {} -'699910': {} -'699920': +"699880": {} +"699890": {} +"699900": {} +"699910": {} +"699920": installDir: Despotism 3k launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Despotism3k.exe type: default @@ -326488,113 +321588,111 @@ executable: Despotism3k.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: Despotism3k.exe type: default - config: oslist: macos - executable: Despotism3k.app\\Contents\\MacOS\\Despotism3k + executable: "Despotism3k.app\\\\Contents\\\\MacOS\\\\Despotism3k" type: default -'699930': +"699930": installDir: FreshlyFriedShrimps launch: - executable: achichinoth.exe type: none -'699940': +"699940": installDir: MEMETYPER launch: - config: oslist: windows executable: MEMETYPER.exe type: none -'699950': {} -'699970': +"699950": {} +"699970": installDir: the Breath launch: - config: oslist: windows executable: Breath.exe type: default -'699990': +"699990": installDir: VirtuGO launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Non-VR Version executable: VirtuGO.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows description: VR Version executable: VirtuGOVR.exe type: vr -'70': +"70": installDir: Half-Life launch: - - arguments: '-steam' + - arguments: "-steam" config: oslist: windows executable: hl.exe - vacmodulefilename: resource\\sourceinit.dat - - arguments: '-steam' + - arguments: "-steam" config: oslist: macos executable: hl.sh - vacmodulefilename: resource\\sourceinit_macos.dat - - arguments: '-steam' + - arguments: "-steam" config: oslist: linux executable: hl.sh -'7000': +"7000": installDir: Tomb Raider Legend launch: - executable: trl.exe - - arguments: '-setup' + - arguments: "-setup" description: Setup executable: trl.exe -'70000': +"70000": installDir: Dino D-Day launch: - executable: dinodday.exe -'700030': +"700030": installDir: Life is Feudal MMO launch: - - arguments: '-steam_auto_login' + - arguments: "-steam_auto_login" config: oslist: windows executable: launcher.exe type: none -'700050': +"700050": installDir: Bees Knees launch: - config: oslist: windows executable: Bees Knees.exe type: default -'700060': +"700060": installDir: Space Station Continuum launch: - config: oslist: windows executable: Space Station Continuum.exe type: none -'700100': +"700100": installDir: Spooky Station launch: - description: Run Spooky Station executable: GameLauncher.exe type: default -'700140': +"700140": installDir: FROG X BIRD launch: - config: oslist: windows executable: FROGXBIRD.exe type: default -'700160': +"700160": installDir: Semblance launch: - config: @@ -326605,62 +321703,58 @@ oslist: macos executable: Semblance.app type: default -'700170': +"700170": installDir: Deserving Life launch: - config: oslist: windows executable: DeservingLife.exe type: vr -'700210': {} -'700240': +"700210": {} +"700240": installDir: PROJECTGENESIS launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ProjectGenesis.exe type: default -'700270': +"700270": installDir: Boratium Wars Beta launch: - config: oslist: windows executable: BoratiumWars.exe type: default -'700330': +"700330": installDir: SCP Secret Laboratory launch: - - arguments: '-steam' + - arguments: "-steam" config: - osarch: '64' + osarch: "64" oslist: windows description: Play on Windows executable: SCPSL.exe type: default - - arguments: '-steam -reset-settings' + - arguments: "-steam -reset-settings" config: - osarch: '64' + osarch: "64" oslist: windows - description: 'SCP: Secret Laboratory and RESET ALL SETTINGS' - description_loc: - english: 'SCP: Secret Laboratory and RESET ALL SETTINGS' + description: "SCP: Secret Laboratory and RESET ALL SETTINGS" executable: SCPSL.exe type: option2 - - arguments: '-steam' + - arguments: "-steam" config: - osarch: '64' + osarch: "64" oslist: windows - ownsdlc: '859210' + ownsdlc: "859210" description: private beta on Windows - description_loc: - english: private beta on Windows - executable: PrivateBeta\\SCPSL.exe + executable: "PrivateBeta\\\\SCPSL.exe" type: option1 workingdir: PrivateBeta nameLocalized: - schinese: 'SCP秘密实验室 / SCP: Secret Laboratory' -'700340': + schinese: "SCP秘密实验室 / SCP: Secret Laboratory" +"700340": installDir: Galacatraz Eject Equip Escape launch: - config: @@ -326668,87 +321762,87 @@ description: Its kind of a cool game... executable: GEEE.exe type: none -'700360': +"700360": installDir: KnightOut launch: - config: oslist: windows executable: KnightOut.exe type: default -'700400': +"700400": installDir: Planet Bash launch: - config: oslist: windows executable: Planet Bash.exe type: default -'700440': +"700440": installDir: Jellyfish launch: - - arguments: '-windowed' + - arguments: "-windowed" config: oslist: windows executable: Jellyfish.exe type: default - config: oslist: macos - executable: Jellyfish.app\\Contents\\MacOS\\Jellyfish + executable: "Jellyfish.app\\\\Contents\\\\MacOS\\\\Jellyfish" type: default -'700450': +"700450": installDir: Silentium2D launch: - config: oslist: windows executable: Silentium2D.exe type: default -'700460': +"700460": installDir: Nine Worlds launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Windows Launcher executable: nineworlds.exe type: default - config: - osarch: '64' + osarch: "64" oslist: macos description: OSX Launcher executable: nineworlds.app type: default -'700470': +"700470": installDir: Selenophobia launch: - config: oslist: windows executable: Game.exe type: none -'700480': +"700480": installDir: Allegiance launch: - - arguments: '-fullscreen' + - arguments: "-fullscreen" description: Allegiance in Fullscreen Mode executable: Allegiance.exe type: option2 - - arguments: '-windowed' + - arguments: "-windowed" description: Allegiance in Windowed Mode (recommended) executable: Allegiance.exe type: option1 -'700490': +"700490": installDir: MysteyChess launch: - config: oslist: windows executable: game.exe type: default -'700510': +"700510": installDir: Wind Horizon launch: - config: oslist: windows executable: Game.exe type: default -'700520': +"700520": installDir: Shift Quantum launch: - config: @@ -326762,22 +321856,22 @@ description: Internal FC test branch executable: ShiftQuantum.exe type: default -'700540': +"700540": installDir: Derora launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Derora.exe type: vr -'700560': - installDir: Druid's Tale Crystal Cave +"700560": + installDir: "Druid's Tale Crystal Cave" launch: - config: - osarch: '64' - executable: Druid's Tale.exe + osarch: "64" + executable: "Druid's Tale.exe" type: default -'700570': +"700570": installDir: Beyond the Void launch: - config: @@ -326786,9 +321880,9 @@ type: none - config: oslist: macos - executable: BeyondTheVoid.app\\Contents\\MacOS\\BeyondTheVoid + executable: "BeyondTheVoid.app\\\\Contents\\\\MacOS\\\\BeyondTheVoid" type: none -'700590': +"700590": installDir: Ghostly Horizon launch: - config: @@ -326797,74 +321891,58 @@ type: default - config: oslist: macos - executable: GHClient.app\\Contents\\MacOS\\GHClient + executable: "GHClient.app\\\\Contents\\\\MacOS\\\\GHClient" type: default -'700600': +"700600": installDir: Evil Genius 2 launch: - config: betakey: branch-partner description: Profile DX12 - executable: bin\\EvilGenius_profile_dx12.exe + executable: "bin\\\\EvilGenius_profile_dx12.exe" type: none - - arguments: '-release -noassert' + - arguments: "-release -noassert" config: - betakey: >- - nightly partner externalpartner stable package-tool-test playerresearch beta1-nightly beta3-nightly staging - review-nightly patch-nightly hotfix-nightly + betakey: nightly partner externalpartner stable package-tool-test playerresearch beta1-nightly beta3-nightly staging review-nightly patch-nightly hotfix-nightly description: Launcher (Release configs) - description_loc: - english: Launcher (Release configs) - executable: launcher\\eg2.exe + executable: "launcher\\\\eg2.exe" type: none - - arguments: '-profile -noassert' + - arguments: "-profile -noassert" config: - betakey: >- - branch-partner nightly partner externalpartner stable playerresearch beta1-nightly beta3-nightly staging - review-nightly patch-nightly hotfix-nightly + betakey: branch-partner nightly partner externalpartner stable playerresearch beta1-nightly beta3-nightly staging review-nightly patch-nightly hotfix-nightly description: Launcher (Profile configs) - description_loc: - english: Launcher (Profile configs) - executable: launcher\\eg2.exe + executable: "launcher\\\\eg2.exe" type: none - config: - betakey: >- - nightly partner externalpartner default stable playerresearch beta1-nightly beta1 beta3-nightly staging - review-nightly patch-nightly hotfix-nightly + betakey: nightly partner externalpartner default stable playerresearch beta1-nightly beta1 beta3-nightly staging review-nightly patch-nightly hotfix-nightly description: Launcher (Submission configs) - description_loc: - english: Launcher (Submission configs) - executable: launcher\\eg2.exe + executable: "launcher\\\\eg2.exe" type: none - - arguments: '-profile -noassert -skipdfe' + - arguments: "-profile -noassert -skipdfe" config: betakey: compatibility description: Compatibility Test - executable: launcher\\eg2.exe + executable: "launcher\\\\eg2.exe" type: none - config: betakey: playtest review description: 2020 Review - executable: launcher\\eg2.exe + executable: "launcher\\\\eg2.exe" type: none - - arguments: '-profile -noassert -skipdfe' + - arguments: "-profile -noassert -skipdfe" config: betakey: localisation description: Localisation testing - description_loc: - english: Localisation testing - executable: launcher\\eg2.exe + executable: "launcher\\\\eg2.exe" type: none - config: betakey: preview description: 2021 Preview - description_loc: - english: 2021 Preview - executable: launcher\\eg2.exe + executable: "launcher\\\\eg2.exe" type: none - - executable: Launcher\\eg2.exe + - executable: "Launcher\\\\eg2.exe" type: none -'700610': +"700610": installDir: DungeonGOGO launch: - config: @@ -326873,23 +321951,23 @@ type: default - config: oslist: macos - executable: DungeonGOGO v1.1.app\\Contents\\MacOS\\DungeonGOGO + executable: "DungeonGOGO v1.1.app\\\\Contents\\\\MacOS\\\\DungeonGOGO" type: default -'700620': +"700620": installDir: Temple of Aluxes launch: - config: oslist: windows executable: TEVR.exe type: vr -'700630': {} -'700640': {} -'700650': +"700630": {} +"700640": {} +"700650": installDir: Adventure Golf VR launch: - executable: AdventureGolfVR.exe type: vr -'700660': +"700660": installDir: Dice Tower Defense launch: - config: @@ -326898,43 +321976,43 @@ type: none - config: oslist: macos - executable: dicetd.app\\Contents\\MacOS\\dicetd + executable: "dicetd.app\\\\Contents\\\\MacOS\\\\dicetd" type: none - config: oslist: linux executable: dicetd.x86 type: none -'700720': {} -'700730': +"700720": {} +"700730": installDir: Dungeoneer launch: - config: oslist: windows executable: Dungeoneer.exe type: none -'700740': +"700740": installDir: Teenage Mutant Ninja Turtles Portal Power launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: PortalPower.exe type: none - config: - osarch: '64' + osarch: "64" oslist: macos executable: PortalPower.app type: none -'700750': +"700750": installDir: The Battle Of Mahjong launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: MJ.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: MJ64.exe type: default @@ -326942,32 +322020,32 @@ oslist: macos executable: MJ.app type: default -'700770': +"700770": installDir: ZoneDriver launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: sZoneDriverClient.exe type: default -'700780': {} -'700790': {} -'700820': +"700780": {} +"700790": {} +"700820": installDir: The First Men launch: - config: oslist: windows executable: tfm.exe type: none -'700830': +"700830": installDir: Immersive Poetry launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: WindowsNoEditor\\ImmersivePoetry\\Binaries\\Win64\\ImmersivePoetry-Win64-Shipping.exe + executable: "WindowsNoEditor\\\\ImmersivePoetry\\\\Binaries\\\\Win64\\\\ImmersivePoetry-Win64-Shipping.exe" type: default -'700880': +"700880": installDir: Kingdom The Far Reaches launch: - config: @@ -326978,27 +322056,27 @@ oslist: windows executable: Launch Manual.bat type: manual - - arguments: '-conf \"./config/dosboxKingdom.conf\" -conf \"./config/dosboxKingdom_single.conf\" -noconsole' + - arguments: "-conf \\\"./config/dosboxKingdom.conf\\\" -conf \\\"./config/dosboxKingdom_single.conf\\\" -noconsole" config: oslist: macos executable: DOSBox/dosbox.app/Contents/MacOS/DOSBox type: default - - arguments: '-conf \"./config/dosboxKingdom.conf\" -conf \"./config/dosboxKingdom_doc.conf\" -noconsole' + - arguments: "-conf \\\"./config/dosboxKingdom.conf\\\" -conf \\\"./config/dosboxKingdom_doc.conf\\\" -noconsole" config: oslist: macos executable: DOSBox/dosbox.app/Contents/MacOS/DOSBox type: manual - - arguments: '-conf \"./config/dosboxKingdom.conf\" -conf \"./config/dosboxKingdom_single.conf\" -noconsole' + - arguments: "-conf \\\"./config/dosboxKingdom.conf\\\" -conf \\\"./config/dosboxKingdom_single.conf\\\" -noconsole" config: oslist: linux executable: dosbox/dosbox type: default - - arguments: '-conf \"./config/dosboxKingdom.conf\" -conf \"./config/dosboxKingdom_doc.conf\" -noconsole' + - arguments: "-conf \\\"./config/dosboxKingdom.conf\\\" -conf \\\"./config/dosboxKingdom_doc.conf\\\" -noconsole" config: oslist: linux executable: dosbox/dosbox type: manual -'700910': +"700910": installDir: Royal Agents Sweet Zombie launch: - config: @@ -327009,7 +322087,7 @@ oslist: macos executable: RoyalAgentsSweetZombie_MAC.app/Contents/MacOS/RoyalAgentsSweetZombie_MAC type: default -'700920': +"700920": installDir: Placement launch: - config: @@ -327024,26 +322102,26 @@ oslist: macos executable: Placement.app type: default -'700940': +"700940": installDir: TangramsVR launch: - executable: tangramsVRv1.19.exe type: vr -'700990': +"700990": installDir: Gunship Battle2 VR launch: - config: oslist: windows executable: Gunship2VR.exe type: vr -'7010': +"7010": installDir: Project Snowblind launch: - executable: Snowblind.exe - - arguments: '-setup' - description: 'Project: Snowblind Setup' + - arguments: "-setup" + description: "Project: Snowblind Setup" executable: Snowblind.exe -'70100': +"70100": installDir: Hacker Evolution launch: - config: @@ -327061,21 +322139,21 @@ oslist: linux description: Launch executable: HackerEvolution -'701010': +"701010": installDir: Gurugedara launch: - config: oslist: windows executable: Gurugedara.exe type: vr -'701020': +"701020": installDir: Brinko launch: - config: oslist: windows executable: brinko.exe type: default -'701040': +"701040": installDir: CometStriker launch: - config: @@ -327090,14 +322168,14 @@ oslist: macos executable: CometStriker.app type: none -'701080': +"701080": installDir: Supersonic Tank Cats launch: - config: oslist: windows executable: windows.exe type: default -'70110': +"70110": installDir: Hacker Evolution Untold launch: - config: @@ -327114,26 +322192,26 @@ oslist: linux description: Launch executable: Hacker Evolution Untold -'701100': +"701100": installDir: Amoreon NightClub launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch game with SteamVR executable: Amoreon_NightClub.exe type: vr - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch game with Oculus executable: Amoreon_NightClub.exe type: othervr -'701120': {} -'701130': {} -'701140': {} -'701150': {} -'701160': +"701120": {} +"701130": {} +"701140": {} +"701150": {} +"701160": installDir: Kingdom Two Crowns launch: - config: @@ -327144,15 +322222,15 @@ oslist: macos executable: KingdomTwoCrowns.app type: none - - arguments: '-screen-fullscreen 1 -screen-width 1920 -screen-height 1080' + - arguments: "-screen-fullscreen 1 -screen-width 1920 -screen-height 1080" config: oslist: linux executable: KingdomTwoCrowns.x86 type: none nameLocalized: schinese: 王国:两位君主 -'701170': {} -'70120': +"701170": {} +"70120": installDir: Hacker Evolution Duality launch: - config: @@ -327164,66 +322242,66 @@ - config: oslist: linux executable: HackerEvolutionDuality -'701200': {} -'701210': {} -'701260': {} -'701280': +"701200": {} +"701210": {} +"701260": {} +"701280": installDir: Askutron Quiz launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: askutron.exe type: default - config: oslist: macos - executable: Askutron.app\\Contents\\MacOS\\Askutron + executable: "Askutron.app\\\\Contents\\\\MacOS\\\\Askutron" type: default - config: oslist: windows description: Editor for creating your own quizzes - executable: Editor\\Askutron Quiz Editor.exe + executable: "Editor\\\\Askutron Quiz Editor.exe" type: editor - config: oslist: macos description: Editor for creating your own quizzes - executable: Askutron Quiz Editor.app\\Contents\\MacOS\\Askutron Quiz Editor + executable: "Askutron Quiz Editor.app\\\\Contents\\\\MacOS\\\\Askutron Quiz Editor" type: editor - config: - osarch: '64' + osarch: "64" oslist: linux executable: askutron.x86_64 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: askutron-quiz-editor/askutron-quiz-editor type: editor -'701290': +"701290": installDir: Legendary Mahjong launch: - config: oslist: windows executable: Legendary Mahjong.exe type: default -'701360': {} -'701370': +"701360": {} +"701370": installDir: Pop Pop Boom Boom launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Pop_Pop_Boom_Boom.exe type: vr -'701380': +"701380": installDir: El Tango de la Muerte launch: - config: oslist: windows executable: tango.exe type: none -'701410': {} -'701420': +"701410": {} +"701420": installDir: Ne no Kami - The Two Princess Knights of Kyoto Part 2 launch: - config: @@ -327232,35 +322310,35 @@ type: default nameLocalized: schinese: 根神京姬 后篇 -'701440': +"701440": installDir: Phantom Jump launch: - config: oslist: windows executable: Phantom Jump.exe type: default -'701460': +"701460": installDir: Billiards launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: Billiards.exe type: default - config: - osarch: '64' + osarch: "64" oslist: macos description: Launch - executable: Billiards.app\\Contents\\MacOS\\Billiards + executable: "Billiards.app\\\\Contents\\\\MacOS\\\\Billiards" type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Billiards.x86_64 type: default -'701470': +"701470": installDir: TTV2 launch: - config: @@ -327271,7 +322349,7 @@ oslist: linux executable: run.sh type: default -'701540': +"701540": installDir: Evil Star launch: - config: @@ -327282,39 +322360,39 @@ oslist: macos executable: ESMAC.app type: default -'701580': +"701580": installDir: Ninja Goemon and Immortal Jewels launch: - - arguments: '-windowed' + - arguments: "-windowed" config: oslist: windows executable: game.exe type: none - executable: game.exe type: none -'701610': +"701610": installDir: Dungeons of the Fallen launch: - config: oslist: windows executable: DoTF.exe type: default -'701620': {} -'701630': {} -'701670': {} -'701680': +"701620": {} +"701630": {} +"701670": {} +"701680": installDir: The Legend of Slime launch: - executable: tlos.exe type: none -'701720': +"701720": installDir: 2D Neon Cube launch: - config: oslist: windows executable: 2D Neon Cube.exe type: config -'701730': +"701730": installDir: Yi and the Thousand Moons launch: - config: @@ -327322,27 +322400,27 @@ executable: Yi and the Thousand Moons.app type: none - config: - osarch: '32' + osarch: "32" oslist: windows executable: Yi and the Thousand Moons.exe type: none - config: - osarch: '64' + osarch: "64" oslist: windows executable: Yi and the Thousand Moons.exe type: none -'701740': +"701740": installDir: ModestKind launch: - - arguments: '-force-d3d9' + - arguments: "-force-d3d9" config: oslist: windows executable: ModestKind.exe type: default - - arguments: '-show-screen-selector -force-d3d9' + - arguments: "-show-screen-selector -force-d3d9" executable: ModestKind.exe type: config -'701760': +"701760": installDir: L.S.S launch: - config: @@ -327352,30 +322430,30 @@ type: default - config: oslist: windows - ownsdlc: '800950' + ownsdlc: "800950" description: L.S.S Classic - executable: \\L.S.S Classic\\L.S.S_Windows_0.2.0.exe + executable: "\\\\L.S.S Classic\\\\L.S.S_Windows_0.2.0.exe" type: option1 - config: oslist: macos executable: L.S.S.dmg type: default -'701800': +"701800": installDir: Triplicata launch: - config: oslist: windows executable: Triplicata.exe type: default -'701810': +"701810": installDir: EpicDumpsterBear launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: epicdumpsterbear20180505.exe type: none -'701820': +"701820": installDir: GIF launch: - config: @@ -327384,24 +322462,24 @@ type: default - config: oslist: macos - executable: GIF HD.app\\Contents\\MacOS\\GIF HD + executable: "GIF HD.app\\\\Contents\\\\MacOS\\\\GIF HD" type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: GIF HD.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: GIF HD.x86 type: default -'701830': {} -'701860': +"701830": {} +"701860": installDir: TheWitchsIsle launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Noma.exe type: default @@ -327409,23 +322487,23 @@ oslist: macos executable: Noma.app type: default -'701870': +"701870": installDir: Swarm Queen launch: - config: oslist: windows executable: Swarm Queen.exe type: default -'701880': +"701880": installDir: Rocka Feller launch: - - arguments: '0' + - arguments: "0" config: oslist: windows description: Launch Game executable: LaunchGame.exe type: default - - arguments: '1' + - arguments: "1" config: oslist: windows description: Custom Game @@ -327441,69 +322519,69 @@ description: Configure Game executable: RockaFellerLauncher.exe type: config -'701890': +"701890": installDir: Starzine launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Starzine.exe type: default -'701900': +"701900": installDir: Splat the Blob launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SplatTheBlob.exe type: default - config: oslist: macos - executable: SplatTheBlob.app\\Contents\\MacOS\\SplatTheBlob + executable: "SplatTheBlob.app\\\\Contents\\\\MacOS\\\\SplatTheBlob" type: default - config: oslist: linux executable: SplatTheBlob.x86 type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: SplatTheBlob.exe type: default -'701910': +"701910": installDir: Dawn of a Soul launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: Dawn of a Soul.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: Dawn of a Soul.exe type: default - config: - osarch: '32' + osarch: "32" oslist: macos executable: Dawn of a Soul.app type: default - config: - osarch: '64' + osarch: "64" oslist: macos executable: Dawn of a Soul.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Dawn of a Soul.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Dawn of a Soul.x86_64 type: default -'701930': +"701930": installDir: Short Stories Collection of Class Tangerine launch: - config: @@ -327513,36 +322591,36 @@ nameLocalized: schinese: 橘子班短篇集 tchinese: 橘子班短篇集 -'701940': +"701940": installDir: Champions of Aerial launch: - config: oslist: windows executable: Champions Of Aerial.exe type: none -'701950': +"701950": installDir: Survival Simulator launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Survival Simulator.exe type: vr -'701960': - installDir: Fish's Trip +"701960": + installDir: "Fish's Trip" launch: - config: oslist: windows - executable: Fish's Trip.exe + executable: "Fish's Trip.exe" type: none -'701970': +"701970": installDir: Sliding Blocks launch: - config: oslist: windows executable: Sliding Blocks.exe type: default -'701990': +"701990": installDir: Edmonton Trolley Car launch: - config: @@ -327550,59 +322628,59 @@ description: Launch as SteamVR App executable: Gametrip_Edm_Trolley.exe type: vr -'7020': +"7020": installDir: Rogue Trooper launch: - executable: RogueTrooper.exe -'70200': +"70200": installDir: GovernorofPoker2_SE_Full launch: - executable: GovernorofPoker2_SE.exe -'702030': +"702030": installDir: StarbearTaxi launch: - config: oslist: windows executable: Starbear.exe type: vr -'702050': +"702050": installDir: The Song of Saya launch: - executable: Saya_Steam.exe type: default -'702060': {} -'702070': {} -'702080': +"702060": {} +"702070": {} +"702080": installDir: MyFactory launch: - config: oslist: windows - ownsdlc: '790620' + ownsdlc: "790620" executable: mf.exe type: default -'702090': {} -'702110': +"702090": {} +"702110": installDir: THE LAST BLADE 2 launch: - config: oslist: windows executable: LastBlade2App.exe type: default -'702120': - installDir: THE KING OF FIGHTERS '97 GLOBAL MATCH +"702120": + installDir: "THE KING OF FIGHTERS '97 GLOBAL MATCH" launch: - config: oslist: windows executable: KOF97.exe type: default -'702150': +"702150": installDir: Project Mercury launch: - config: oslist: windows executable: ProjectMercury.exe type: default -'702160': +"702160": installDir: Rocketboat - Pilot launch: - config: @@ -327613,21 +322691,21 @@ oslist: macos executable: Rocketboat - Pilot.app type: default -'702180': +"702180": installDir: Mafia Alive launch: - config: oslist: windows executable: MafiaAlive.exe type: none -'702190': +"702190": installDir: Hero Rush Mad King launch: - config: oslist: windows executable: HR.exe type: default -'702200': +"702200": installDir: Lost with Dinosaurs launch: - config: @@ -327642,28 +322720,28 @@ oslist: macos executable: lostwithdinosaurs.app type: none -'702210': +"702210": installDir: Princess Serena ~Raid of Demon Legion~ launch: - config: oslist: windows executable: Game.exe type: default -'702220': +"702220": installDir: Touch My Spinner launch: - config: oslist: windows executable: spinners.exe type: default -'702270': +"702270": installDir: DevWill launch: - config: oslist: windows executable: DevWill.exe type: default -'702300': +"702300": installDir: Number World launch: - config: @@ -327674,7 +322752,7 @@ oslist: macos executable: NumberWorld.app/Contents/MacOS/NumberWorld type: none -'702310': +"702310": installDir: Tricks and Treats launch: - config: @@ -327685,30 +322763,30 @@ oslist: macos executable: TricksAndTreats.app/Contents/MacOS/hp type: none -'702320': +"702320": installDir: March of Empires launch: - executable: MOE.exe type: none -'702340': +"702340": installDir: Avem888VR launch: - config: oslist: windows executable: w32openvr_avem888_drm.exe type: vr -'702360': +"702360": installDir: Hunters launch: - config: oslist: windows executable: PCGWork.exe type: none -'702370': {} -'702380': {} -'702390': {} -'702400': {} -'702430': +"702370": {} +"702380": {} +"702390": {} +"702400": {} +"702430": installDir: SCHOOL SIMULATOR launch: - config: @@ -327719,8 +322797,8 @@ oslist: macos executable: SchoolSimulator.app type: default -'702490': {} -'702510': +"702490": {} +"702510": installDir: Mille Bornes launch: - config: @@ -327731,21 +322809,21 @@ oslist: macos executable: 1000Bornes.app type: default -'702550': +"702550": installDir: EZ4u launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" executable: nw.exe type: default -'702600': +"702600": installDir: Indygo launch: - config: oslist: windows executable: Indygo.exe type: none -'702620': {} -'702670': +"702620": {} +"702670": installDir: Donut County launch: - config: @@ -327756,30 +322834,30 @@ oslist: macos executable: DonutCounty.app type: default -'702680': +"702680": installDir: Wattam launch: - executable: Wattam.exe type: default -'702700': +"702700": installDir: Super Bomberman R launch: - config: oslist: windows executable: SuperBombermanR.exe type: default -'702790': - installDir: '13' +"702790": + installDir: "13" launch: - config: oslist: windows executable: Game.exe type: none -'702810': +"702810": installDir: ShootySkies launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ShootySkies.exe type: default @@ -327788,11 +322866,11 @@ executable: ShootySkies.app/Contents/MacOS/ShootySkies type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: RunShooty.sh type: default -'702820': +"702820": installDir: By Any Means Necessary launch: - config: @@ -327803,29 +322881,29 @@ oslist: linux executable: bamn.sh type: default -'702890': +"702890": installDir: BBTAG launch: - config: oslist: windows executable: BBTAG.exe type: default -'702900': +"702900": installDir: Time Barbarian Extreme!! launch: - config: oslist: windows executable: Time Barbarian Extreme.exe type: default -'702910': {} -'702930': - installDir: 'Packet Queen #' +"702910": {} +"702930": + installDir: "Packet Queen #" launch: - config: oslist: windows executable: PacketQueenSharp.exe type: default -'702940': +"702940": installDir: Paper Shakespeare Dating Sim launch: - config: @@ -327834,13 +322912,13 @@ type: default - config: oslist: macos - executable: Paper_Shakespeare_DS.app\\Contents\\MacOS\\Paper_Shakespeare_DS + executable: "Paper_Shakespeare_DS.app\\\\Contents\\\\MacOS\\\\Paper_Shakespeare_DS" type: default - config: oslist: linux executable: Paper_Shakespeare_DS.sh type: default -'70300': +"70300": installDir: vvvvvv launch: - config: @@ -327855,73 +322933,67 @@ oslist: linux description: Launch executable: VVVVVV -'703000': - installDir: 'Beer, Babes and Dragons' +"703000": + installDir: "Beer, Babes and Dragons" launch: - config: oslist: windows executable: Game.exe type: default -'703010': {} -'703020': {} -'703030': +"703010": {} +"703020": {} +"703030": installDir: newtypes launch: - - arguments: cs\\newtype\\main-win.cs + - arguments: "cs\\\\newtype\\\\main-win.cs" config: - osarch: '64' + osarch: "64" oslist: windows description: フライトシミュレーター (not VR) - executable: bin\\cosmosw.exe + executable: "bin\\\\cosmosw.exe" type: default - - arguments: cs\\newtype\\main-ovr.cs + - arguments: "cs\\\\newtype\\\\main-ovr.cs" config: - osarch: '64' + osarch: "64" oslist: windows description: NewTypes - executable: bin\\cosmosw.exe + executable: "bin\\\\cosmosw.exe" type: vr -'703040': {} -'703050': +"703040": {} +"703050": installDir: iHUGU launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: iHUGU.exe type: default -'703070': {} -'703080': +"703070": {} +"703080": installDir: Planet Zoo launch: - config: - betakey: 'outsource, outsource_lqa' - osarch: '64' + betakey: "outsource, outsource_lqa" + osarch: "64" oslist: windows executable: PlanetZoo.exe type: default - config: - betakey: >- - dev_release_trunk, dev_release_branch, outsource_lqa, dev_release_branch_live, ext_dev_instrumented, - ext_dev_instrumented2, ext_live_instrumented, ext_live_instrumented2, outsource_fqa2, dev_release_old - osarch: '64' + betakey: "dev_release_trunk, dev_release_branch, outsource_lqa, dev_release_branch_live, ext_dev_instrumented, ext_dev_instrumented2, ext_live_instrumented, ext_live_instrumented2, outsource_fqa2, dev_release_old" + osarch: "64" oslist: windows description: Planet Zoo (Profile Build) - description_loc: - english: Planet Zoo (Profile Build) executable: PlanetZoo.profile.exe type: option2 - config: - betakey: 'dev_release_trunk, dev_release_branch, dev_release_branch_live, outsource_fqa, outsource_fqa2, dev_release_old' - osarch: '64' + betakey: "dev_release_trunk, dev_release_branch, dev_release_branch_live, outsource_fqa, outsource_fqa2, dev_release_old" + osarch: "64" oslist: windows description: Planet Zoo (Release Build) - description_loc: - english: Planet Zoo (Release Build) executable: PlanetZoo.release.exe type: option1 - config: - osarch: '64' + osarch: "64" oslist: windows executable: PlanetZoo.exe type: default @@ -327930,43 +323002,43 @@ koreana: 플래닛 주 schinese: 动物园之星 tchinese: 動物園之星 -'703090': +"703090": installDir: AdventureRoad launch: - config: oslist: windows executable: mxzl.exe type: default -'703100': +"703100": installDir: Parabolus launch: - config: oslist: windows executable: Parabolus.exe type: default -'703120': +"703120": installDir: Keeplanet launch: - description: Lunch executable: keeplanet.exe type: none -'703140': +"703140": installDir: Codename Phantom VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ImperiaVR.exe type: vr -'703180': +"703180": installDir: Ben 10 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Ben10.exe type: default -'703200': +"703200": installDir: Jumphobia Classic launch: - config: @@ -327975,107 +323047,107 @@ type: default - config: oslist: macos - executable: Jumphobia Classic.app\\Contents\\MacOS\\Jumphobia Classic + executable: "Jumphobia Classic.app\\\\Contents\\\\MacOS\\\\Jumphobia Classic" type: default -'703210': +"703210": installDir: My Little Worms launch: - config: oslist: windows - executable: Windows\\mlw.exe + executable: "Windows\\\\mlw.exe" type: none - config: oslist: linux - executable: Linux\\mlw.x86 + executable: "Linux\\\\mlw.x86" type: none - config: oslist: macos - executable: MacOS\\mlw.app\\Contents\\MacOS\\mlw + executable: "MacOS\\\\mlw.app\\\\Contents\\\\MacOS\\\\mlw" type: none -'703250': +"703250": installDir: AstroShift launch: - config: oslist: windows executable: AstroShift.exe type: default -'703260': +"703260": installDir: Blast launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: Blast.exe type: default - config: - osarch: '64' + osarch: "64" oslist: macos description: Launch - executable: Blast.app\\Contents\\MacOS\\Blast + executable: "Blast.app\\\\Contents\\\\MacOS\\\\Blast" type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Blast.x86_64 type: default -'703270': - installDir: 'Run, my little pixel' +"703270": + installDir: "Run, my little pixel" launch: - config: oslist: windows executable: RMLP.exe type: default -'703280': +"703280": installDir: Zeal launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Play Zeal executable: Zeal.exe type: default -'703310': +"703310": installDir: Hidden and Dangerous launch: - config: oslist: windows description: Hidden & Dangerous - executable: HD\\h&d.exe + executable: "HD\\\\h&d.exe" type: default - workingdir: HD\\ + workingdir: "HD\\\\" - config: oslist: windows description: Fight for Freedom - executable: HD FF\\h&d.exe + executable: "HD FF\\\\h&d.exe" type: none - workingdir: HD FF\\ + workingdir: "HD FF\\\\" - config: oslist: windows - description: 'Hidden & Dangerous: Deluxe' - executable: HD Deluxe\\bin\\hde.exe + description: "Hidden & Dangerous: Deluxe" + executable: "HD Deluxe\\\\bin\\\\hde.exe" type: none - workingdir: HD Deluxe\\ + workingdir: "HD Deluxe\\\\" - config: oslist: windows description: Hidden & Dangerous - Setup - executable: HD\\setup.exe + executable: "HD\\\\setup.exe" type: none - workingdir: HD\\ + workingdir: "HD\\\\" - config: oslist: windows description: Fight for Freedom - Setup - executable: HD FF\\Setup.exe + executable: "HD FF\\\\Setup.exe" type: none - workingdir: HD FF\\ + workingdir: "HD FF\\\\" - config: oslist: windows - description: 'Hidden & Dangerous: Deluxe - Setup' - executable: HD Deluxe\\bin\\iconfig.exe + description: "Hidden & Dangerous: Deluxe - Setup" + executable: "HD Deluxe\\\\bin\\\\iconfig.exe" type: none - workingdir: HD Deluxe\\bin\\ -'703320': + workingdir: "HD Deluxe\\\\bin\\\\" +"703320": installDir: Hidden and Dangerous 2 launch: - config: @@ -328098,67 +323170,67 @@ description: Launch Server Launcher executable: ServerLauncher.exe type: none -'703360': +"703360": installDir: Stickman Annihilation 2 launch: - config: oslist: windows executable: Stickman Annihilation 2.exe type: default -'703400': +"703400": installDir: Enoch Underground launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Enoch_v001.exe type: default -'703430': +"703430": installDir: Star Rangers VR Demo launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SRVR.exe type: vr -'703490': +"703490": installDir: Flat Worlds launch: - config: oslist: windows executable: FlatWorlds.exe type: vr -'703500': +"703500": installDir: ReThink Evolved launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ReThink2.exe type: none -'703510': +"703510": installDir: Wooden Battles launch: - config: oslist: windows executable: Wooden Battles.exe type: none -'703530': +"703530": installDir: Grav Blazer Squared launch: - config: oslist: windows executable: GravBlazerSquared.exe type: default -'703540': +"703540": installDir: Algorithm launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: game.exe type: none -'703600': +"703600": installDir: ASTRAL launch: - config: @@ -328170,17 +323242,17 @@ executable: nwjs.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux - executable: linux32_\\nw + executable: "linux32_\\\\nw" type: default - config: - osarch: '64' + osarch: "64" oslist: linux - executable: linux64_\\nw + executable: "linux64_\\\\nw" type: default -'703610': {} -'703620': +"703610": {} +"703620": installDir: Clash Force launch: - config: @@ -328194,26 +323266,26 @@ description: with Debug Logging executable: ClashForce.exe type: option1 -'703630': +"703630": installDir: The Quarter Game launch: - config: oslist: windows executable: TheQuarterGame.exe type: default -'703690': +"703690": installDir: Nemesis launch: - config: oslist: windows executable: Nemesis.exe type: vr -'703700': +"703700": installDir: Our End of the World launch: - config: oslist: windows - executable: package\\teow.exe + executable: "package\\\\teow.exe" type: none - config: oslist: macos @@ -328222,7 +323294,7 @@ nameLocalized: schinese: 我和她的世界末日 tchinese: 我和她的世界末日 -'703720': +"703720": installDir: Ersatz launch: - config: @@ -328237,13 +323309,13 @@ oslist: macos executable: Ersatz.app type: default -'703730': +"703730": installDir: Sorcery Jokers launch: - executable: SJSEz.exe type: default -'703750': {} -'703760': +"703750": {} +"703760": installDir: Chopper Attack helicopters launch: - config: @@ -328251,24 +323323,24 @@ executable: ChopperAH.exe type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: ChopperAH_linux.x86_64 type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: ChopperAH_linux.x86 type: none -'703800': +"703800": installDir: All Cows In launch: - config: oslist: windows executable: AllCowsIn.exe type: none -'703810': {} -'703820': +"703810": {} +"703820": installDir: Pixel Killers - The Showdown launch: - config: @@ -328276,20 +323348,20 @@ executable: Pixel Killers - The Showdown.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Pixel Killers - The Showdown type: default -'703840': +"703840": installDir: AnimalSuperSquad launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Animal Super Squad executable: /GWGame/Binaries/Win64/ASS-Win64.exe type: default -'703860': +"703860": installDir: GRID (2019) launch: - config: @@ -328339,36 +323411,36 @@ description: Grid DX12 Debug executable: Grid_dx12_win64_do.exe type: option1 -'703870': +"703870": installDir: Make a word! launch: - config: oslist: windows - executable: Windows\\maw.exe + executable: "Windows\\\\maw.exe" type: none - config: oslist: linux - executable: Linux\\maw.x86 + executable: "Linux\\\\maw.x86" type: none - config: oslist: macos - executable: MacOS\\maw.app\\Contents\\MacOS\\maw + executable: "MacOS\\\\maw.app\\\\Contents\\\\MacOS\\\\maw" type: none -'703880': +"703880": installDir: Swords and Soldiers 2 launch: - config: oslist: windows executable: Swords and Soldiers 2.exe type: default -'703920': +"703920": installDir: Bang Bang Fruit 2 launch: - config: oslist: windows executable: BBF2.exe type: default -'703940': +"703940": installDir: Ball 2D launch: - config: @@ -328379,7 +323451,7 @@ oslist: macos executable: Ball 2D.app type: default -'703950': +"703950": installDir: Just Fishing launch: - config: @@ -328388,24 +323460,24 @@ type: default - config: oslist: macos - executable: Game.app\\Contents\\MacOS\\JustFishing + executable: "Game.app\\\\Contents\\\\MacOS\\\\JustFishing" type: default -'703960': +"703960": installDir: Doc Rifou Productions launch: - config: oslist: windows executable: MORDER.exe type: default -'703970': +"703970": installDir: Protoball launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: StudioZBase.exe type: default -'703980': +"703980": installDir: Imperial Assault launch: - config: @@ -328416,15 +323488,15 @@ oslist: macos executable: Imperial Assault.app type: default -'703990': {} -'70400': +"703990": {} +"70400": installDir: Recettear launch: - executable: recettear.exe - description: Launch Configuration Tool executable: custom.exe -'704000': {} -'704010': +"704000": {} +"704010": installDir: LongStory launch: - config: @@ -328437,271 +323509,267 @@ type: default nameLocalized: schinese: 说来话长 -'704020': +"704020": installDir: MasterArena launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Master Arena (64 bits) - description_loc: - english: Master Arena (64 bits) - executable: Binaries\\Win64\\MasterArena.exe + executable: "Binaries\\\\Win64\\\\MasterArena.exe" type: default -'704030': +"704030": installDir: Cattle and Crops launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: CattleAndCrops.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: CattleAndCrops type: default -'704040': +"704040": installDir: Castle Clicker launch: - config: oslist: windows executable: CastleClicker.exe type: default -'704060': +"704060": installDir: Mystic Miracles - Strategy card board game launch: - config: oslist: windows executable: MysticMiracles.exe type: none -'704070': +"704070": installDir: Robots.io launch: - executable: robots.exe type: none -'704140': +"704140": installDir: Edge Of Existence launch: - config: oslist: windows executable: EoE.exe type: default -'704190': +"704190": installDir: Bitcoin Collector launch: - config: oslist: windows executable: Bitcoin Collector.exe type: default -'70420': +"70420": installDir: Chantelise launch: - executable: chantelise.exe - description: Launch Chantelise Config Utility executable: custom.exe -'704200': +"704200": installDir: The Chronicles of Nyanya launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows description: The Chronicles of Nyanya executable: LauncherNNG.exe type: default - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: macos description: The Chronicles of Nyanya executable: Nyanya.app/Contents/MacOS/nwjs type: default -'704210': +"704210": installDir: Block Warriors launch: - config: oslist: windows executable: Block_Warriors.exe type: default -'704230': +"704230": installDir: Pro Cycling Manager 2018 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: PCM64.exe type: default - - arguments: '-noassert -debug_Transfers' + - arguments: "-noassert -debug_Transfers" config: - betakey: 'cyanide-candidate,focus-qa' - osarch: '64' + betakey: "cyanide-candidate,focus-qa" + osarch: "64" oslist: windows description: Cheat transfers executable: PCM64.exe type: none - config: - betakey: 'cyanide-candidate,focus-qa' - osarch: '64' + betakey: "cyanide-candidate,focus-qa" + osarch: "64" oslist: windows description: bot executable: LaunchBot.bat type: none - config: - betakey: 'cyanide-candidate,focus-qa' - osarch: '64' + betakey: "cyanide-candidate,focus-qa" + osarch: "64" oslist: windows description: multiplayer executable: launchmulti.bat type: none - - arguments: '-debug' + - arguments: "-debug" config: - betakey: 'cyanide-candidate,focus-qa' - osarch: '64' + betakey: "cyanide-candidate,focus-qa" + osarch: "64" oslist: windows description: Database Editor - executable: DatabaseEditor\\PCM_Database_Editor.exe + executable: "DatabaseEditor\\\\PCM_Database_Editor.exe" type: none workingdir: DatabaseEditor - - arguments: '-noassert -debug_Sponsor' + - arguments: "-noassert -debug_Sponsor" config: - betakey: 'cyanide-candidate,focus-qa' - osarch: '64' + betakey: "cyanide-candidate,focus-qa" + osarch: "64" oslist: windows description: Cheat sponsor executable: PCM64.exe type: none - - arguments: '-noassert -debug_Screenshot' + - arguments: "-noassert -debug_Screenshot" config: - betakey: 'cyanide-candidate,focus-qa' - osarch: '64' + betakey: "cyanide-candidate,focus-qa" + osarch: "64" oslist: windows description: Screenshot executable: PCM64.exe type: none - config: - betakey: 'cyanide-candidate,focus-qa' - osarch: '64' + betakey: "cyanide-candidate,focus-qa" + osarch: "64" oslist: windows description: Resolution executable: LaunchMultiRes.bat type: none - - arguments: '-noassert' + - arguments: "-noassert" config: - betakey: 'cyanide-candidate,focus-qa' - osarch: '64' + betakey: "cyanide-candidate,focus-qa" + osarch: "64" oslist: windows description: NoAssert executable: PCM64.exe type: default -'704270': +"704270": installDir: GenerationZero launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: GenerationZero_F.exe type: default - config: betakey: development - osarch: '64' + osarch: "64" oslist: windows description: Release executable: GenerationZero_R.exe type: option1 - config: betakey: marketing - osarch: '64' + osarch: "64" oslist: windows description: Release executable: GenerationZero_R.exe type: option1 - config: betakey: qa_1 - osarch: '64' + osarch: "64" oslist: windows description: Release executable: GenerationZero_R.exe type: option1 - config: betakey: compatability - osarch: '64' + osarch: "64" oslist: windows description: Profile Build executable: GenerationZero_P.exe type: option1 - config: betakey: compatability - osarch: '64' + osarch: "64" oslist: windows description: Release Build executable: GenerationZero_R.exe type: option2 - config: betakey: localization - osarch: '64' + osarch: "64" oslist: windows description: Release Build executable: GenerationZero_R.exe type: option1 - config: betakey: qa_2 - osarch: '64' + osarch: "64" oslist: windows description: Release Build executable: GenerationZero_R.exe type: option1 - config: betakey: hw_vendors - osarch: '64' + osarch: "64" oslist: windows description: Profile Build executable: GenerationZero_P.exe type: option1 - config: betakey: qa_3 - osarch: '64' + osarch: "64" oslist: windows description: Release Build executable: GenerationZero_R.exe type: option1 - config: betakey: design_review - osarch: '64' + osarch: "64" oslist: windows description: Release Build executable: GenerationZero_R.exe type: option1 - config: betakey: code_01 - osarch: '64' + osarch: "64" oslist: windows description: Release Buid executable: GenerationZero_R.exe type: option1 - config: betakey: apex - osarch: '64' + osarch: "64" oslist: windows description: Release Buid - description_loc: - english: Release Buid executable: GenerationZero_R.exe type: option1 -'704300': +"704300": installDir: Bartender VR Simulator launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Barman_GrabbingNewPlugin.exe type: vr -'704310': +"704310": installDir: Lumberjack VR launch: - config: oslist: windows - executable: windows\\LumberJackVR_1.00.exe + executable: "windows\\\\LumberJackVR_1.00.exe" type: vr -'704350': +"704350": installDir: Captain 13 Beyond the Hero launch: - config: @@ -328712,46 +323780,46 @@ oslist: windows executable: Captain13PC.exe type: default -'704360': - installDir: SACRALITH The Archer`s Tale +"704360": + installDir: "SACRALITH The Archer`s Tale" launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SACRALITH.exe type: vr -'704370': +"704370": installDir: Water Pipeline launch: - config: oslist: windows executable: Water Pipeline.exe type: default -'704380': {} -'704430': +"704380": {} +"704430": installDir: Space Survivors Shooter launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SpaceSurvivorsShoote.exe type: default -'704440': +"704440": installDir: Nimble Fish launch: - config: oslist: windows - executable: Windows\\nf.exe + executable: "Windows\\\\nf.exe" type: none - config: oslist: linux - executable: Linux\\nf.x86 + executable: "Linux\\\\nf.x86" type: none - config: oslist: macos - executable: MacOS\\nf.app\\Contents\\MacOS\\nf + executable: "MacOS\\\\nf.app\\\\Contents\\\\MacOS\\\\nf" type: none -'704450': +"704450": installDir: Neverwinter Nights launch: - config: @@ -328769,7 +323837,7 @@ executable: bin/linux-x86/nwmain-linux type: default workingdir: bin/linux-x86 - - arguments: '-dmc' + - arguments: "-dmc" config: oslist: windows description: Dungeon Master Client @@ -328782,29 +323850,29 @@ executable: bin/win32/nwtoolset.exe type: editor workingdir: bin/win32 -'704460': {} -'704470': +"704460": {} +"704470": installDir: VRFurballsDemolition launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: VRFurballs.exe type: vr nameLocalized: koreana: VR 털뭉치 - Demolition schinese: VR毛球宝贝 - 摧毁敌营 -'704480': +"704480": installDir: Durak launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: durak.exe type: default -'704490': {} -'704500': {} -'704510': +"704490": {} +"704500": {} +"704510": installDir: Mercury Fallen launch: - config: @@ -328817,23 +323885,23 @@ description: Mercury Fallen executable: MercuryFallen.app type: default -'704520': {} -'704550': {} -'704640': +"704520": {} +"704550": {} +"704640": installDir: Settlements launch: - config: oslist: windows executable: Settlements.exe type: default -'704660': +"704660": installDir: Maze Trials launch: - config: oslist: windows executable: MazeTrials.exe type: default -'704670': +"704670": installDir: Inexplicable Geeks DOJU launch: - config: @@ -328842,64 +323910,64 @@ type: default - config: oslist: macos - executable: GEEKSDOJU.app\\Contents\\MacOS\\GEEKSDOJU + executable: "GEEKSDOJU.app\\\\Contents\\\\MacOS\\\\GEEKSDOJU" type: default - config: oslist: linux executable: GEEKSDOJU.sh type: default -'704680': +"704680": installDir: AMPLITUDEVisualNovel launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Amplitude-VisualNovel.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Amplitude-VisualNovel.sh type: default - config: oslist: macos - executable: Amplitude-VisualNovel.app\\Contents\\MacOS\\Amplitude-VisualNovel + executable: "Amplitude-VisualNovel.app\\\\Contents\\\\MacOS\\\\Amplitude-VisualNovel" type: default -'704690': +"704690": installDir: Elisa Seduce the Innkeeper launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows executable: Elisa.exe type: default - config: oslist: macos - executable: nwjs.app\\Contents\\MacOS\\nwjs + executable: "nwjs.app\\\\Contents\\\\MacOS\\\\nwjs" type: default -'704700': +"704700": installDir: TRYON launch: - config: oslist: windows executable: TRYON.exe type: default -'704750': +"704750": installDir: Uplands Motel launch: - executable: EscapeVR.exe type: none -'704760': +"704760": installDir: Grimrush launch: - config: oslist: windows executable: grimrush.exe type: default -'704830': +"704830": installDir: Esports Life launch: - - arguments: '-force-gfx-direct -nolog' + - arguments: "-force-gfx-direct -nolog" config: oslist: windows executable: EsportsLife.exe @@ -328908,7 +323976,7 @@ oslist: macos executable: EsportsLife.app/Contents/MacOS/EsportsLife type: default -'704840': +"704840": installDir: The Walking Vegetables launch: - config: @@ -328919,11 +323987,11 @@ oslist: macos executable: The Walking Vegetables.app type: default -'704850': +"704850": installDir: Thief Simulator launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: thief.exe type: none @@ -328931,7 +323999,7 @@ oslist: macos executable: thief.app/Contents/MacOS/thief type: default -'704860': +"704860": installDir: Keepsake launch: - config: @@ -328942,8 +324010,8 @@ oslist: macos executable: keepsake.app type: default -'704880': - installDir: Trident's Wake +"704880": + installDir: "Trident's Wake" launch: - config: oslist: windows @@ -328951,11 +324019,11 @@ type: default - arguments: 32bit config: - osarch: '32' + osarch: "32" oslist: windows executable: TridentsWake.exe type: default -'704910': +"704910": installDir: Tenta Shooter launch: - executable: KeyConfig.exe @@ -328963,7 +324031,7 @@ nameLocalized: english: Tenta Shooter japanese: The 触シュー -'704940': +"704940": installDir: BOXIT launch: - config: @@ -328975,26 +324043,26 @@ description: Workshop Tools executable: UGC.exe type: option1 -'704950': - installDir: Scarlett's Dungeon +"704950": + installDir: "Scarlett's Dungeon" launch: - config: oslist: windows executable: Scarletts Dungeon.exe type: default -'704970': +"704970": installDir: Project Ara - Crucible launch: - config: oslist: windows executable: ProjectAraCrucible.exe type: default -'704990': +"704990": installDir: OSES launch: - executable: Oses.exe type: default -'70500': +"70500": installDir: Diamond Dan launch: - config: @@ -329003,8 +324071,8 @@ - config: oslist: macos executable: diamond_dan.app -'705000': {} -'705020': +"705000": {} +"705020": installDir: Bottom of the 9th launch: - config: @@ -329016,281 +324084,273 @@ executable: Bot9.app type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: Bot9.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: Bot9.x86_64 type: none -'705040': +"705040": installDir: HAWKEN Reborn launch: - - arguments: '-NoVerifyGC' + - arguments: "-NoVerifyGC" config: betakey: default - osarch: '64' + osarch: "64" oslist: windows executable: Hawken2.exe type: default - - arguments: '-NoVerifyGC -PlayfabTitleId=75B12 -MMServerMonitorURL=beta' + - arguments: "-NoVerifyGC -PlayfabTitleId=75B12 -MMServerMonitorURL=beta" config: betakey: beta - osarch: '64' + osarch: "64" oslist: windows description: Hawken Reborn on the Beta Environment - description_loc: - english: Hawken Reborn on the Beta Environment executable: Hawken2.exe type: option1 - - arguments: '-NoVerifyGC -PlayfabTitleId=3035B -MMServerMonitorURL=public' + - arguments: "-NoVerifyGC -PlayfabTitleId=3035B -MMServerMonitorURL=public" config: betakey: beta-only-when-needed - osarch: '64' + osarch: "64" oslist: windows description: Hawken Reborn on the Public Environment - description_loc: - english: Hawken Reborn on the Public Environment executable: Hawken2.exe type: option2 - - arguments: '-NoVerifyGC -PlayfabTitleId=DDC43 -MMServerMonitorURL=playtestbeta' + - arguments: "-NoVerifyGC -PlayfabTitleId=DDC43 -MMServerMonitorURL=playtestbeta" config: betakey: playtestbeta - osarch: '64' + osarch: "64" oslist: windows description: Hawken Reborn on the PlaytestBeta Environment - description_loc: - english: Hawken Reborn on the PlaytestBeta Environment executable: Hawken2.exe type: option3 - - arguments: '-NoVerifyGC -PlayfabTitleId=A145D -MMServerMonitorURL=playtestpublic' + - arguments: "-NoVerifyGC -PlayfabTitleId=A145D -MMServerMonitorURL=playtestpublic" config: betakey: playtestbeta-only-when-needed - osarch: '64' + osarch: "64" oslist: windows description: Hawken Reborn on the PlaytestPublic Environment - description_loc: - english: Hawken Reborn on the PlaytestPublic Environment executable: Hawken2.exe type: option3 - - arguments: '-NoVerifyGC -PlayfabTitleId=2371' + - arguments: "-NoVerifyGC -PlayfabTitleId=2371" config: betakey: Development - osarch: '64' + osarch: "64" oslist: windows executable: Hawken2.exe type: default - - arguments: '-NoVerifyGC -PlayfabTitleId=452D4' + - arguments: "-NoVerifyGC -PlayfabTitleId=452D4" config: betakey: researchanddevelopment - osarch: '64' + osarch: "64" oslist: windows executable: Hawken2.exe type: default - - arguments: '-NoVerifyGC -PlayfabTitleId=2917' + - arguments: "-NoVerifyGC -PlayfabTitleId=2917" config: betakey: stable - osarch: '64' + osarch: "64" oslist: windows executable: Hawken2.exe type: default - - arguments: '-NoVerifyGC -PlayfabTitleId=5A229' + - arguments: "-NoVerifyGC -PlayfabTitleId=5A229" config: betakey: postea - osarch: '64' + osarch: "64" oslist: windows executable: Hawken2.exe type: default - - arguments: '-NoVerifyGC' + - arguments: "-NoVerifyGC" config: betakey: devmain - osarch: '64' + osarch: "64" oslist: windows executable: Hawken2.exe type: default - - arguments: '-NoVerifyGC' + - arguments: "-NoVerifyGC" config: betakey: devstaged - osarch: '64' + osarch: "64" oslist: windows executable: Hawken2.exe type: default - - arguments: '-NoVerifyGC' + - arguments: "-NoVerifyGC" config: betakey: playtestpublic - osarch: '64' + osarch: "64" oslist: windows executable: Hawken2.exe type: default - - arguments: '-NoVerifyGC -PlayfabTitleId=B4787' + - arguments: "-NoVerifyGC -PlayfabTitleId=B4787" config: betakey: staged - osarch: '64' + osarch: "64" oslist: windows executable: Hawken2.exe -'705050': +"705050": installDir: Apocalypse launch: - - arguments: '-force-d3d11 -show-screen-selector' + - arguments: "-force-d3d11 -show-screen-selector" config: - osarch: '64' + osarch: "64" oslist: windows - description: 'Apocalypse: Legacy Edition (1.7)' - executable: Bin\\Apocalypse_64.exe + description: "Apocalypse: Legacy Edition (1.7)" + executable: "Bin\\\\Apocalypse_64.exe" type: option1 - workingdir: Bin\\ - - arguments: '-force-d3d11 -show-screen-selector' + workingdir: "Bin\\\\" + - arguments: "-force-d3d11 -show-screen-selector" config: betakey: extended-launch-options - osarch: '64' + osarch: "64" oslist: windows - description: 'Apocalypse: Legacy Edition (Beta)' - executable: Bin\\Apocalypse_64.exe + description: "Apocalypse: Legacy Edition (Beta)" + executable: "Bin\\\\Apocalypse_64.exe" type: option1 - workingdir: Bin\\ - - arguments: ' -show-screen-selector' + workingdir: "Bin\\\\" + - arguments: " -show-screen-selector" config: betakey: extended-launch-options-off oslist: macos description: 32 Bit Mode (Legacy) - executable: Bin\\Apocalypse_32.app + executable: "Bin\\\\Apocalypse_32.app" type: option1 - workingdir: Bin\\ - - arguments: '-show-screen-selector' + workingdir: "Bin\\\\" + - arguments: "-show-screen-selector" config: betakey: extended-launch-options-off oslist: macos description: 64 Bit Mode (Legacy) - executable: Bin\\Apocalypse_64.app + executable: "Bin\\\\Apocalypse_64.app" type: option1 - workingdir: Bin\\ - - arguments: '-show-screen-selector' + workingdir: "Bin\\\\" + - arguments: "-show-screen-selector" config: betakey: extended-launch-options-off oslist: linux description: 32 Bit Mode (Legacy) - executable: Bin\\Apocalypse_Linux_32.x86 + executable: "Bin\\\\Apocalypse_Linux_32.x86" type: default - workingdir: Bin\\ - - arguments: '-show-screen-selector' + workingdir: "Bin\\\\" + - arguments: "-show-screen-selector" config: betakey: extended-launch-options-off oslist: linux description: 64 Bit Mode (Legacy) - executable: Bin\\Apocalypse_Linux_64.x86_64 + executable: "Bin\\\\Apocalypse_Linux_64.x86_64" type: default - workingdir: Bin\\ - - arguments: '-force-d3d12 -show-screen-selector' + workingdir: "Bin\\\\" + - arguments: "-force-d3d12 -show-screen-selector" config: betakey: extended-launch-options-off - osarch: '32' + osarch: "32" oslist: windows description: Directx 12 Mode (Legacy) - executable: Bin\\Apocalypse_32.exe + executable: "Bin\\\\Apocalypse_32.exe" type: option1 - workingdir: Bin\\ - - arguments: '-force-d3d12 -show-screen-selector' + workingdir: "Bin\\\\" + - arguments: "-force-d3d12 -show-screen-selector" config: betakey: extended-launch-options-off - osarch: '64' + osarch: "64" oslist: windows description: Directx 12 Mode (Legacy) - executable: Bin\\Apocalypse_64.exe + executable: "Bin\\\\Apocalypse_64.exe" type: option1 - workingdir: Bin\\ - - arguments: '-force-vulken -show-screen-selector' + workingdir: "Bin\\\\" + - arguments: "-force-vulken -show-screen-selector" config: betakey: extended-launch-options-off - osarch: '32' + osarch: "32" oslist: windows description: Vulkan API Mode (Legacy) - executable: Bin\\Apocalypse_32.exe + executable: "Bin\\\\Apocalypse_32.exe" type: option1 - workingdir: Bin\\ - - arguments: '-force-vulken -show-screen-selector' + workingdir: "Bin\\\\" + - arguments: "-force-vulken -show-screen-selector" config: betakey: extended-launch-options-off - osarch: '64' + osarch: "64" oslist: windows description: Vulkan API Mode (Legacy) - executable: Bin\\Apocalypse_64.exe + executable: "Bin\\\\Apocalypse_64.exe" type: option1 - workingdir: Bin\\ - - arguments: '-force-d3d11' + workingdir: "Bin\\\\" + - arguments: "-force-d3d11" config: betakey: extended-launch-options-off - osarch: '64' + osarch: "64" oslist: windows - ownsdlc: '720460' + ownsdlc: "720460" description: in OSVR Mode (Legacy) - executable: Virtual Reality\\Apocalypse_64.exe + executable: "Virtual Reality\\\\Apocalypse_64.exe" type: option1 - workingdir: Virtual Reality\\ - - arguments: '-force-vulken -show-screen-selector' + workingdir: "Virtual Reality\\\\" + - arguments: "-force-vulken -show-screen-selector" config: betakey: extended-launch-options-off - osarch: '32' + osarch: "32" oslist: linux description: Vulken Mode (Legacy) - executable: Bin\\Apocalypse_Linux_32.x86 + executable: "Bin\\\\Apocalypse_Linux_32.x86" type: option1 - workingdir: Bin\\ - - arguments: '-force-vulken -show-screen-selector' + workingdir: "Bin\\\\" + - arguments: "-force-vulken -show-screen-selector" config: betakey: extended-launch-options-off - osarch: '64' + osarch: "64" oslist: linux description: Vulken Mode (Legacy) - executable: Bin\\Apocalypse_Linux_64.x86_64 + executable: "Bin\\\\Apocalypse_Linux_64.x86_64" type: option1 - workingdir: Bin\\ + workingdir: "Bin\\\\" - config: betakey: extended-launch-options-off - osarch: '64' + osarch: "64" oslist: windows - description: 'Apocalypse: The Game' - executable: Preview\\ApocalypseRedux.exe + description: "Apocalypse: The Game" + executable: "Preview\\\\ApocalypseRedux.exe" type: default - workingdir: Preview\\ -'705060': + workingdir: "Preview\\\\" +"705060": installDir: Infernales launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Infernales.exe type: default -'705070': +"705070": installDir: FEMINAZI 3000 launch: - config: oslist: windows executable: FEMINAZI 3000.exe type: default -'705090': +"705090": installDir: Trivia Vault Super Heroes Trivia 2 launch: - config: oslist: windows executable: Trivia Vault Super Heroes Trivia 2.exe type: default -'705100': +"705100": installDir: Marshmallow Melee launch: - config: oslist: windows executable: marshmallowmelee.exe type: vr -'705120': +"705120": installDir: DeathComing launch: - config: oslist: windows executable: xDeath.exe type: none -'705130': +"705130": installDir: Foundation of Nightmares launch: - config: @@ -329305,7 +324365,7 @@ oslist: linux executable: FoundationOfNightmares type: none -'705150': +"705150": installDir: RhythmWorldMasterProject launch: - config: @@ -329313,8 +324373,8 @@ description: Windows executable: GameLauncher.exe type: default -'705170': {} -'705210': +"705170": {} +"705210": installDir: Cube Racer launch: - config: @@ -329325,7 +324385,7 @@ oslist: linux executable: CubeRacer.x86 type: default -'705220': +"705220": installDir: Tactical Monsters launch: - config: @@ -329336,21 +324396,21 @@ oslist: macos executable: Tactical Monsters.app/Contents/MacOS/Tactical Monsters type: default -'705230': +"705230": installDir: ingame launch: - config: oslist: windows executable: InGameExe.exe type: default -'705240': +"705240": installDir: Boom Box Blue! launch: - config: oslist: windows executable: Boom Box Blue.exe type: none -'705250': +"705250": installDir: CrossSetInfinity launch: - config: @@ -329359,26 +324419,26 @@ type: default - config: oslist: macos - executable: CrossSetInf.app\\Contents\\MacOS\\CrossSetInf + executable: "CrossSetInf.app\\\\Contents\\\\MacOS\\\\CrossSetInf" type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: CrossSetInf.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: CrossSetInf.x86_64 type: default -'705260': +"705260": installDir: Waste Cleaner launch: - config: oslist: windows executable: waste_cleaner.exe type: default -'705280': +"705280": installDir: Hakoniwa Explorer Plus launch: - executable: Game.exe @@ -329386,14 +324446,14 @@ nameLocalized: japanese: 箱庭えくすぷろーらもあ schinese: 箱庭探险者Plus -'705290': +"705290": installDir: Strange Telephone launch: - config: oslist: windows executable: StrangeTelephone2.0.exe type: default -'705300': +"705300": installDir: Suicide Adventures launch: - config: @@ -329408,16 +324468,16 @@ oslist: macos executable: Suicide Adventures.app type: default -'705340': +"705340": installDir: Kofi Quest Alpha MOD launch: - config: - betakey: '203536' - osarch: '32' + betakey: "203536" + osarch: "32" oslist: windows executable: KofiQuestAlphaMOD.exe type: default -'705370': +"705370": installDir: The Cursed Tower launch: - config: @@ -329435,44 +324495,44 @@ description: Launch Game executable: The Cursed Tower.x86 type: default -'705380': +"705380": installDir: GalacticShipwright launch: - config: oslist: windows executable: GalacticShipwright.exe type: default -'705390': - installDir: Aya's Journey +"705390": + installDir: "Aya's Journey" launch: - config: oslist: windows executable: PTPlayer.exe type: default -'705400': {} -'705410': +"705400": {} +"705410": installDir: WorldWarParty-GameOfTrump launch: - config: - osarch: '32' + osarch: "32" oslist: windows - description: 'World War Party: Game Of Trump' + description: "World War Party: Game Of Trump" executable: GameOfTrump.exe type: default - config: oslist: macos executable: GameOfTrump.app type: default -'705420': {} -'705430': {} -'705440': +"705420": {} +"705430": {} +"705440": installDir: Onager launch: - config: oslist: windows executable: onager.exe type: none -'705450': +"705450": installDir: Wunderdoktor launch: - config: @@ -329487,8 +324547,8 @@ oslist: macos executable: Wunderdoktor.app type: default -'705470': {} -'705500': +"705470": {} +"705500": installDir: Tiny Bubbles launch: - config: @@ -329500,7 +324560,7 @@ executable: Tiny Bubbles.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: TinyBubbles.x86_64 type: default @@ -329513,7 +324573,7 @@ schinese: 小泡泡 spanish: Burbujitas tchinese: 小泡泡 -'705530': +"705530": installDir: Wizard Hunter 2348 launch: - config: @@ -329524,58 +324584,58 @@ oslist: linux executable: Wizard_Hunter_2348.sh type: default -'705550': +"705550": installDir: Burgle Bros launch: - config: oslist: windows executable: BurglePC.exe type: default -'705570': {} -'705600': {} -'705610': +"705570": {} +"705600": {} +"705610": installDir: Where They Cremate The Roadkill launch: - config: oslist: windows executable: Launcher.exe type: default - - arguments: ../Resources/drive_c/Program\\ Files/.WTCTR/Game.exe + - arguments: "../Resources/drive_c/Program\\\\ Files/.WTCTR/Game.exe" config: oslist: macos executable: Contents/MacOS/WineskinLauncher type: default -'705620': +"705620": installDir: Hellmut launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: hellmut.exe type: default -'705640': +"705640": installDir: BACK TO THE EGG! launch: - config: oslist: windows executable: BACKTOTHEEGG!.exe type: default -'705670': +"705670": installDir: BallzFarm launch: - - arguments: '-fullscreen' + - arguments: "-fullscreen" config: oslist: windows executable: BallzFarm.exe type: default -'705700': +"705700": installDir: X-MiGuFighters Stripper Anya launch: - config: oslist: windows executable: XMF_StripperAnya2_v3_NEWMEM_GLBLSPR_november2018.exe type: default -'705710': +"705710": installDir: Sense of The Devil launch: - config: @@ -329590,12 +324650,12 @@ oslist: linux executable: SenseofTheDevil.x86 type: none -'705740': +"705740": installDir: Car Demolition Clicker launch: - executable: Car Demolition Clicker.exe type: default -'705750': +"705750": installDir: American Patriots Boston Tea Party launch: - config: @@ -329610,14 +324670,14 @@ oslist: macos executable: American Patriots.app type: default -'705770': +"705770": installDir: TheDonnerwaldExperiment launch: - config: oslist: windows executable: The Donnerwald Experiment.exe type: default -'705780': +"705780": installDir: Ancient Future launch: - config: @@ -329628,7 +324688,7 @@ oslist: macos executable: Ancient Future.app/Contents/MacOS/Ancient Future type: none -'705800': +"705800": installDir: Astroe launch: - config: @@ -329639,7 +324699,7 @@ oslist: linux executable: Astroe type: default -'705810': +"705810": installDir: Wuxing Master launch: - arguments: steam @@ -329647,22 +324707,22 @@ oslist: windows executable: bx.exe type: default -'705840': {} -'705860': +"705840": {} +"705860": installDir: SpaceWalker launch: - config: oslist: windows executable: SpaceWalker.exe type: vr -'705870': +"705870": installDir: Echo Grotto launch: - config: oslist: windows executable: EchoGrotto.exe type: vr -'705920': +"705920": installDir: Empress of Gold launch: - config: @@ -329677,7 +324737,7 @@ oslist: macos executable: EoGFV/EoGFVMac.app type: default -'705930': +"705930": installDir: The Trace launch: - config: @@ -329688,17 +324748,17 @@ oslist: windows executable: The Trace.exe type: openvroverlay -'705980': {} -'7060': +"705980": {} +"7060": installDir: Infernal launch: - - executable: game\\game.exe + - executable: "game\\\\game.exe" workingdir: game -'70600': +"70600": installDir: WormsXHD launch: - executable: Launcher.exe -'706010': +"706010": installDir: The Unseen launch: - config: @@ -329706,24 +324766,24 @@ description: Launch executable: The_Unseen.exe type: none -'706020': +"706020": installDir: Fade To Silence launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Shipping Build x64 executable: FadeToSilence.exe type: option1 -'706030': +"706030": installDir: Parking Cop Simulator launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows executable: nw.exe type: default -'706130': +"706130": installDir: FarFromNoise launch: - config: @@ -329732,9 +324792,9 @@ type: none - config: oslist: macos - executable: FarFromNoise.app\\Contents\\MacOS\\FarFromNoise + executable: "FarFromNoise.app\\\\Contents\\\\MacOS\\\\FarFromNoise" type: none -'70620': +"70620": installDir: WormsGolf2010 launch: - config: @@ -329743,14 +324803,14 @@ - config: oslist: macos executable: WormsCrazyGolf.app -'706200': +"706200": installDir: Celtabula launch: - config: oslist: windows executable: Celtabula.exe type: default -'706210': +"706210": installDir: Haul Asteroid launch: - config: @@ -329759,7 +324819,7 @@ type: none - executable: HaulAsteroid.app type: none -'706240': +"706240": installDir: Gravity Light launch: - config: @@ -329770,20 +324830,20 @@ oslist: macos executable: GravityLight.app/Contents/MacOS/GravityLight type: default -'706270': +"706270": installDir: Space Zombies Invasion launch: - executable: Game.exe type: none -'706280': +"706280": installDir: Devil in the Pines launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: DevilInThePines.exe type: default -'706310': +"706310": installDir: CaveDuel launch: - config: @@ -329794,54 +324854,54 @@ oslist: linux executable: CaveDuel.x86 type: default -'706320': +"706320": installDir: Trivia Vault Mini Mixed Trivia launch: - config: oslist: windows executable: Trivia Vault Mini Mixed Trivia.exe type: default -'706330': +"706330": installDir: Trivia Vault Mini Mixed Trivia 2 launch: - config: oslist: windows executable: Trivia Vault Mini Mixed Trivia 2.exe type: default -'706350': +"706350": installDir: Mari and the Black Tower launch: - config: oslist: windows executable: game.exe type: default -'706360': {} -'706370': +"706360": {} +"706370": installDir: LOGistICAL USA - Oregon launch: - config: oslist: windows executable: LogisticalApp.exe type: none -'706380': +"706380": installDir: LOGistICAL Norway launch: - config: oslist: windows executable: LogisticalApp.exe type: none -'706390': +"706390": installDir: LOGistICAL Chile launch: - config: oslist: windows executable: LogisticalApp.exe type: none -'70640': +"70640": installDir: Worms launch: - executable: runworms.bat -'706400': +"706400": installDir: DEATHS MAZE launch: - config: @@ -329850,36 +324910,36 @@ type: default - config: oslist: linux - executable: ./DEATHS_MAZE + executable: "./DEATHS_MAZE" type: default -'706440': +"706440": installDir: Cyborg Arena launch: - config: oslist: windows - executable: Binaries\\Win32\\UDK.exe + executable: "Binaries\\\\Win32\\\\UDK.exe" type: default -'706480': +"706480": installDir: The Man in the Cape Special Edition launch: - - description: 'The Man in the Cape: Special Edition' + - description: "The Man in the Cape: Special Edition" executable: CapeMan.exe type: option1 - description: Configure Settings and Binds executable: CapeManConfig.exe type: none -'706490': +"706490": installDir: Little hidden city launch: - config: oslist: windows executable: Little Hidden City.exe type: default -'70650': +"70650": installDir: Worms Blast launch: - executable: main.exe -'706510': +"706510": installDir: SOMOS launch: - config: @@ -329888,22 +324948,22 @@ type: default - config: oslist: macos - executable: Mac.app\\Contents\\MacOS\\Mac + executable: "Mac.app\\\\Contents\\\\MacOS\\\\Mac" type: default - config: oslist: linux executable: SOMOS.x86 type: default -'706520': +"706520": installDir: BlackShield Upora Story launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: BlackShieldNetNative.exe type: vr -'706550': {} -'706560': +"706550": {} +"706560": installDir: Jimmy and the Pulsating Mass launch: - config: @@ -329914,49 +324974,49 @@ oslist: macos executable: Jimmy and the Pulsating Mass.app type: default -'706570': +"706570": installDir: TheSevenStagesVR launch: - config: oslist: windows executable: SilverSideVR.exe type: vr -'70660': +"70660": installDir: Worms Pinball launch: - executable: mmlauncher.exe -'706680': {} -'706690': +"706680": {} +"706690": installDir: Megatronic Void launch: - config: oslist: windows executable: megatronicvoid.exe type: default -'706710': +"706710": installDir: Close Your Eyes -Anniversary Remake- launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows executable: nw.exe type: default - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: macos executable: Game.app type: default -'706720': {} -'706730': {} -'706740': {} -'706840': +"706720": {} +"706730": {} +"706740": {} +"706840": installDir: Castaway VR launch: - config: oslist: windows executable: Castaway VR.exe type: vr -'706850': +"706850": installDir: Devader launch: - config: @@ -329971,7 +325031,7 @@ oslist: macos executable: devader.app type: default -'706880': +"706880": installDir: Austen Translation launch: - config: @@ -329982,27 +325042,27 @@ oslist: macos executable: Austen Translation.app type: default -'706920': +"706920": installDir: ZSKX1 launch: - config: oslist: windows executable: ZSKX1.exe type: default -'706950': +"706950": installDir: Chupacabra launch: - config: oslist: windows executable: Chupacabra.exe type: none -'706960': +"706960": installDir: Super_Slime_Arena launch: - config: oslist: macos description: Mac OS X - executable: SlimeGame.app\\Contents\\MacOS\\SlimeGame + executable: "SlimeGame.app\\\\Contents\\\\MacOS\\\\SlimeGame" type: default - config: oslist: windows @@ -330014,19 +325074,19 @@ description: Linux executable: SlimeGame type: default -'706980': +"706980": installDir: PaperCat launch: - config: oslist: windows executable: papercat.exe type: none -'706990': +"706990": installDir: BLOCKPOST launch: - executable: blockpost.exe type: none -'707000': +"707000": installDir: Aw Nutz launch: - config: @@ -330034,79 +325094,79 @@ description: Launch executable: AwNuts.exe type: none -'707010': +"707010": installDir: WTLOnline launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: WTL.exe type: default -'707030': +"707030": installDir: POSTAL 4 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Postal4.exe type: default -'707040': +"707040": installDir: Robosoul-PaxAnimi launch: - config: oslist: windows - executable: bin\\game.exe + executable: "bin\\\\game.exe" type: default -'707060': +"707060": installDir: Beast Quest launch: - config: oslist: windows executable: Beast Quest.exe type: default -'707110': +"707110": installDir: Anahita launch: - config: oslist: windows executable: Anahita.exe type: default -'707140': +"707140": installDir: Chess launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: Chess.exe type: default - config: - osarch: '64' + osarch: "64" oslist: macos description: Launch - executable: Chess.app\\Contents\\MacOS\\Chess + executable: "Chess.app\\\\Contents\\\\MacOS\\\\Chess" type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Chess.x86_64 type: default -'707220': +"707220": installDir: The Base launch: - config: oslist: windows executable: base.exe type: default -'707230': +"707230": installDir: Prison Chainball Massacre launch: - config: oslist: windows executable: Prison Chainball Massacre.exe type: none -'707300': +"707300": installDir: Hatsune Miku VR launch: - config: @@ -330117,24 +325177,24 @@ japanese: 初音ミク VR schinese: 初音未来 VR tchinese: 初音未來 VR -'707310': {} -'707320': +"707310": {} +"707320": installDir: Keatz The Lonely Bird launch: - config: oslist: windows executable: KeatzTheLonelyBird.exe type: default -'707350': +"707350": installDir: Damascus Gear Operation Osaka HDEdition launch: - config: oslist: windows executable: DG_OperationOsaka.exe type: none -'707370': {} -'707380': {} -'707400': +"707370": {} +"707380": {} +"707400": installDir: Attack Of Insects launch: - config: @@ -330143,20 +325203,20 @@ type: default nameLocalized: english: Attack Of Insects - french: Attaque d'Insectes + french: "Attaque d'Insectes" german: Angriff Von Insekten japanese: 昆虫の攻撃 koreana: 곤충의 공격 russian: Атака Насекомых tchinese: 昆蟲的攻擊 -'707450': +"707450": installDir: March to Glory launch: - config: oslist: windows executable: autorun.exe type: default -'707470': +"707470": installDir: JumpFist launch: - config: @@ -330169,7 +325229,7 @@ description: Start the game! executable: JumpFist.app type: default -'707560': +"707560": installDir: Crucible Trails launch: - config: @@ -330178,43 +325238,39 @@ type: default - config: oslist: macos - executable: CTIR-vb1.0.6.app\\Contents\\MacOS\\CTIR-vb1.0.6 + executable: "CTIR-vb1.0.6.app\\\\Contents\\\\MacOS\\\\CTIR-vb1.0.6" type: default -'707580': +"707580": installDir: AFFECTED The Manor launch: - config: betakey: default oslist: windows description: Launch - description_loc: - english: Launch executable: AFFECTED_The_Manor_PC.exe type: vr - config: betakey: legacy oslist: windows description: Legacy Edition - description_loc: - english: Legacy Edition executable: AFFECTED - The Manor 1.55 (HTC).exe type: vr -'707590': +"707590": installDir: Defense Clicker launch: - config: oslist: windows executable: Defense Clicker.exe type: default -'707600': {} -'707610': +"707600": {} +"707610": installDir: Food Mahjong launch: - config: oslist: windows executable: Food Mahjong.exe type: default -'707680': +"707680": installDir: Slapshot launch: - config: @@ -330225,14 +325281,14 @@ oslist: macos executable: nwjs.app type: default -'707720': +"707720": installDir: Ragna Maya launch: - config: oslist: windows executable: Ragna Maya.exe type: none -'707750': +"707750": installDir: DrumSim launch: - config: @@ -330244,13 +325300,13 @@ oslist: macos executable: Build.app type: vr - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" config: oslist: windows description: Configuration executable: Build.exe type: vr -'707770': +"707770": installDir: Tactics 2 war launch: - config: @@ -330258,14 +325314,14 @@ description: Tactical war executable: myGame1.exe type: default -'707780': +"707780": installDir: Catistry launch: - executable: Catistry.exe type: none -'707790': {} -'707800': {} -'707850': +"707790": {} +"707800": {} +"707850": installDir: Watercolour Jigsaw Puzzles launch: - config: @@ -330368,25 +325424,25 @@ description: Baby kangaroo executable: Baby kangaroo.exe type: option2 -'707860': +"707860": installDir: The Power Factory launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: The Power Factory.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: The Power Factory.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: The Power Factory.x86 type: default -'707870': +"707870": installDir: Hoo-Boy launch: - config: @@ -330394,11 +325450,11 @@ executable: Hoo-Boy.exe type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: Hoo-Boy.x86_64 type: default -'707920': +"707920": installDir: Analemma launch: - config: @@ -330411,25 +325467,25 @@ executable: Mac OS.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch Linux or SteamOS executable: game.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch Linux or SteamOS - 64Bit executable: game.x86_64 type: default -'707950': +"707950": installDir: Tank Warz! launch: - config: oslist: windows executable: Tank Warz!.exe type: default -'707960': +"707960": installDir: I was here launch: - config: @@ -330438,30 +325494,30 @@ type: default - config: oslist: macos - executable: I Was Here(Mac).app\\Contents\\MacOS\\I Was Here(Mac) + executable: "I Was Here(Mac).app\\\\Contents\\\\MacOS\\\\I Was Here(Mac)" type: default - config: oslist: linux executable: I Was Here.x86_64 type: default -'708020': {} -'708030': {} -'708070': {} -'708100': +"708020": {} +"708030": {} +"708070": {} +"708100": installDir: A Boy and His Beard launch: - config: oslist: windows executable: A Boy and His Beard.exe type: none -'708110': +"708110": installDir: Smash Bash Crash launch: - config: oslist: windows executable: SBC.exe type: none -'708140': +"708140": installDir: TriFuse launch: - config: @@ -330472,40 +325528,40 @@ oslist: windows executable: TriElement.exe type: none -'708150': +"708150": installDir: Lost Artifacts launch: - config: oslist: windows executable: LostArtifacts.exe type: default -'708160': +"708160": installDir: Yokai Mask launch: - config: oslist: windows executable: Game.exe type: default -'708190': +"708190": installDir: Code World launch: - config: oslist: windows executable: Code World.exe type: none -'708200': {} -'708250': +"708200": {} +"708250": installDir: Lava Rolling Kid launch: - config: oslist: windows executable: LavaRollingKid.exe type: default -'708260': +"708260": installDir: Text Wormhole launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Text Wormhole.exe type: default @@ -330513,79 +325569,79 @@ oslist: macos executable: Text Wormhole.app type: default -'708280': +"708280": installDir: Bobbi_Cities launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: BobbiCities.exe type: openvroverlay -'708300': +"708300": installDir: Fluffy Friends launch: - config: oslist: windows - executable: Windows\\Fluffy.exe + executable: "Windows\\\\Fluffy.exe" type: none - config: oslist: linux - executable: Linux\\Fluffy.x86 + executable: "Linux\\\\Fluffy.x86" type: none - config: oslist: macos - executable: MacOS\\Fluffy.app\\Contents\\MacOS\\Fluffy + executable: "MacOS\\\\Fluffy.app\\\\Contents\\\\MacOS\\\\Fluffy" type: none -'708310': +"708310": installDir: Infinite Gravity launch: - config: oslist: windows executable: Marvel.exe type: default -'708340': +"708340": installDir: Shark Simulator launch: - config: oslist: windows executable: shark_simulator.exe type: default -'708360': {} -'708370': +"708360": {} +"708370": installDir: Reboant launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Reboant.exe type: vr -'708380': {} -'708400': {} -'708420': +"708380": {} +"708400": {} +"708420": installDir: Broken Ground launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: BrokenGround.exe type: default - config: oslist: macos - executable: BrokenGroundBuild_Mac.app\\Contents\\MacOS\\BrokenGroundBuild_Mac + executable: "BrokenGroundBuild_Mac.app\\\\Contents\\\\MacOS\\\\BrokenGroundBuild_Mac" type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: BrokenGround_32.exe type: default -'708430': +"708430": installDir: Kamikaze Cube launch: - config: oslist: windows executable: Kamikaze Cube.exe type: default -'708450': +"708450": installDir: PEMBREY launch: - config: @@ -330600,8 +325656,8 @@ oslist: linux executable: PembreyLinux type: default -'708480': {} -'708510': +"708480": {} +"708510": installDir: The Promethium Effect launch: - config: @@ -330612,72 +325668,66 @@ oslist: windows executable: PromethiumEffect.exe type: default -'708580': +"708580": installDir: Exorcist Legion VR launch: - config: oslist: windows executable: TheExorcistLegionVR.exe type: vr -'708590': +"708590": installDir: BattleMaster launch: - - arguments: >- - .\\dosbox_windows\\dosbox -exit -conf \"dosbox_battlemaster.conf\"^ -c \"mount C ..\\battlemaster\"^ -c \"C:\"^ - -c \"cd BM\"^ -c \"BM.exe\" -noconsole^ -exit + - arguments: ".\\\\dosbox_windows\\\\dosbox -exit -conf \\\"dosbox_battlemaster.conf\\\"^ -c \\\"mount C ..\\\\battlemaster\\\"^ -c \\\"C:\\\"^ -c \\\"cd BM\\\"^ -c \\\"BM.exe\\\" -noconsole^ -exit" config: oslist: windows - executable: dosbox_windows\\dosbox.exe + executable: "dosbox_windows\\\\dosbox.exe" type: default - config: oslist: linux executable: runBattlemaster.sh type: none -'708610': {} -'708630': +"708610": {} +"708630": installDir: ee launch: - config: oslist: windows executable: Adventurer.exe type: default -'708640': +"708640": installDir: Nudist Beach Survival Simulator launch: - config: oslist: windows description: Nudist Beach Survival Simulator Remastered - description_loc: - english: Nudist Beach Survival Simulator Remastered executable: NBSS.exe type: default - config: oslist: windows description: Nudist Beach Survival Simulator (2017) - description_loc: - english: Nudist Beach Survival Simulator (2017) executable: Nudist Beach Survival Simulator.exe type: none -'708680': +"708680": installDir: Octopus Bar launch: - config: oslist: windows executable: Octopus_bar.exe type: vr -'708710': +"708710": installDir: Defend Your Castle launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: dyc.exe type: default -'708760': +"708760": installDir: SocialClubVR launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Social Club VR executable: ProjectHurricane.exe @@ -330694,31 +325744,31 @@ description: Social Club VR executable: ProjectHurricane.app type: vr -'708780': +"708780": installDir: SlamFighterII launch: - config: oslist: windows executable: SlamFighterII.exe type: default -'708790': {} -'708800': {} -'708820': +"708790": {} +"708800": {} +"708820": installDir: Baby Hands launch: - config: oslist: windows executable: BabyHands.exe type: vr -'708830': +"708830": installDir: The Armament Project launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TheArmamentProject.exe type: none -'708850': +"708850": installDir: Reverie launch: - config: @@ -330729,52 +325779,52 @@ oslist: macos executable: Reverie.app type: default -'708870': +"708870": installDir: Reginald Does His Thang launch: - config: oslist: windows executable: RDHTVersion1.02.exe type: default -'708890': +"708890": installDir: BEATris launch: - config: oslist: windows executable: BEATris.exe type: default -'708910': +"708910": installDir: Hordiaz launch: - config: oslist: windows executable: Hordiaz.exe type: default -'708920': +"708920": installDir: I Can See the Future launch: - executable: I CAN SEE THE FUTURE.exe type: default -'708930': +"708930": installDir: Bones game online launch: - config: oslist: windows - executable: BonesGameOnline\\Dice 1000 online.exe + executable: "BonesGameOnline\\\\Dice 1000 online.exe" type: default -'708940': {} -'708950': +"708940": {} +"708950": installDir: Steam Tactics launch: - config: oslist: windows - executable: windows_content\\Steam Tactics.exe + executable: "windows_content\\\\Steam Tactics.exe" type: default - config: oslist: macos executable: mac_content/Steam Tactics.app type: default -'708970': +"708970": installDir: God Starfighter launch: - config: @@ -330789,15 +325839,15 @@ oslist: macos executable: God Starfighter.app type: none -'70900': +"70900": installDir: Star Ruler launch: - - arguments: '' - description: Blind Mind's Star Ruler + - arguments: "" + description: "Blind Mind's Star Ruler" executable: StarRuler.exe - workingdir: '' -'709010': {} -'709020': + workingdir: "" +"709010": {} +"709020": installDir: VIRUS OF SURVIVORSLIFE SIMULATOR launch: - config: @@ -330808,62 +325858,62 @@ oslist: macos executable: doctordoctor.app type: none -'709040': {} -'709050': +"709040": {} +"709050": installDir: GHOUL launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Ghoul.exe type: default -'709080': +"709080": installDir: The Bears And The Bees launch: - config: oslist: windows executable: The Bears And The Bees.exe type: default -'709100': {} -'709140': +"709100": {} +"709140": installDir: A Dream For Aaron launch: - config: oslist: windows executable: A Dream For Aaron.exe type: default -'709160': +"709160": installDir: Smart Junior Academy launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: sja_autumn.exe type: default -'709190': +"709190": installDir: GOF launch: - executable: GOF.exe type: none -'709220': {} -'709240': +"709220": {} +"709240": installDir: Ingnomia launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Ingnomia.exe type: default -'709250': {} -'709280': +"709250": {} +"709280": installDir: Island Build Masters launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: IslandBuildMasters.exe type: default -'709290': +"709290": installDir: Rage Quest launch: - config: @@ -330872,32 +325922,32 @@ type: default - config: oslist: macos - executable: Rage Quest.app\\Contents\\MacOS\\Rage Quest + executable: "Rage Quest.app\\\\Contents\\\\MacOS\\\\Rage Quest" type: default -'709340': - installDir: Spirits of Mystery The Dark Minotaur Collector's Edition +"709340": + installDir: "Spirits of Mystery The Dark Minotaur Collector's Edition" launch: - config: oslist: windows executable: SpiritsOfMystery_DarkMinotaur_CE.exe type: default -'709350': - installDir: Dark Realm Princess of Ice Collector's Edition +"709350": + installDir: "Dark Realm Princess of Ice Collector's Edition" launch: - config: oslist: windows executable: DarkRealm_PrincessOfIce_CE.exe type: default -'709370': +"709370": installDir: BadRobots VR launch: - - arguments: '-vr' + - arguments: "-vr" config: - osarch: '64' + osarch: "64" oslist: windows executable: Shooter.exe type: vr -'709380': +"709380": installDir: Circularity launch: - config: @@ -330911,17 +325961,17 @@ executable: Circularity.app type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: Circularity.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Circularity.x86_64 type: default -'709390': {} -'709400': +"709390": {} +"709400": installDir: Low Desert Punk launch: - config: @@ -330932,22 +325982,22 @@ oslist: macos executable: low_desert_punk_mac.app type: default -'709410': +"709410": installDir: AZURA launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" executable: Game.exe type: none -'709430': {} -'709440': +"709430": {} +"709440": installDir: Override launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Override.exe type: default -'709450': +"709450": installDir: Towards The Pantheon Escaping Eternity launch: - config: @@ -330955,7 +326005,7 @@ description: Launch executable: Towards The Pantheon Escaping Eternity.exe type: default -'709470': +"709470": installDir: Mirrors launch: - config: @@ -330967,70 +326017,70 @@ executable: mirrors.app type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: Mirrors.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: Mirrors.x86_64 type: none -'709480': +"709480": installDir: Mahjong VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: MJ3D.exe type: openvroverlay -'709490': +"709490": installDir: Mutiny Island launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows executable: nw.exe type: default -'709510': +"709510": installDir: Towards The Pantheon launch: - executable: TowardsThePantheonGame.exe type: none -'709520': - installDir: WHERE'S PHANTOM THIEF +"709520": + installDir: "WHERE'S PHANTOM THIEF" launch: - config: oslist: windows - executable: WHERE'S PHANTOM THIEF.exe + executable: "WHERE'S PHANTOM THIEF.exe" type: default - config: oslist: macos - executable: WHERE'S PHANTOM THIEF.app + executable: "WHERE'S PHANTOM THIEF.app" type: default -'709550': +"709550": installDir: Tic Tac Toe Lounge launch: - config: oslist: windows executable: TicTacToeLounge.exe type: none -'709560': +"709560": installDir: Until the last launch: - config: oslist: windows executable: Until the last.exe type: default -'709590': +"709590": installDir: Farkle Friends launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: FarkleFriends.exe type: default -'709610': +"709610": installDir: Mahjong Match launch: - config: @@ -331039,63 +326089,63 @@ type: default - config: oslist: windows - description: '''''DLC'''' Mahjong Solitaire - Ultimate Video Game Pack 1' + description: "''DLC'' Mahjong Solitaire - Ultimate Video Game Pack 1" executable: Mahjong Solitaire - Ultimate Video Game Pack 1.exe type: option1 - config: oslist: windows - description: '''''DLC'''' Mahjong Solitaire - Monsters Pack 2' + description: "''DLC'' Mahjong Solitaire - Monsters Pack 2" executable: Mahjong Solitaire - Monsters Pack 2.exe type: option1 -'709620': +"709620": installDir: Squareboy vs Bullies Arena Edition launch: - - arguments: '0' + - arguments: "0" config: oslist: windows description: Squareboy vs Bullies (1280x720) executable: SquareboyVsBullies.exe type: option1 - - arguments: '1' + - arguments: "1" config: oslist: windows description: Squareboy vs Bullies (1920x1080) executable: SquareboyVsBullies.exe type: option2 - - arguments: '2' + - arguments: "2" config: oslist: windows description: Squareboy vs Bullies (Fullscreen) executable: SquareboyVsBullies.exe type: option3 -'709630': {} -'709670': +"709630": {} +"709670": installDir: Clarent Saga Tactics launch: - config: oslist: windows executable: game.exe type: default -'709700': +"709700": installDir: The Thing Space X launch: - config: oslist: windows executable: game.exe type: none -'709720': +"709720": installDir: YAGZZ! launch: - config: oslist: windows executable: YAGZZ!.exe type: default -'709730': {} -'709750': +"709730": {} +"709750": installDir: IRO HERO launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: IRO HERO.exe type: default @@ -331104,33 +326154,33 @@ executable: IRO HERO.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: IRO HERO.x86_64 type: default -'709770': {} -'709780': +"709770": {} +"709780": installDir: Crazy Scientist launch: - config: oslist: windows executable: Crazy Scientist.exe type: none -'709790': +"709790": installDir: The Red Front launch: - config: oslist: windows executable: The Red Front.exe type: default -'709800': +"709800": installDir: Hardcore ZBoy launch: - config: oslist: windows executable: Hardcore ZBoy.exe type: default -'709820': +"709820": installDir: Wasted Pizza launch: - config: @@ -331145,7 +326195,7 @@ oslist: macos executable: WastedPizza.app/Contents/MacOS/WastedPizza type: default -'709840': +"709840": installDir: Bloody Glimpse launch: - config: @@ -331160,14 +326210,14 @@ oslist: linux executable: BloodyGlimpse.x86 type: none -'709850': +"709850": installDir: AMBUSH tactics launch: - config: oslist: windows executable: Game.exe type: default -'709870': +"709870": installDir: West of Red launch: - config: @@ -331182,113 +326232,113 @@ oslist: linux executable: WestOfRed.x86 type: none -'709880': +"709880": installDir: Panzer Doctrine launch: - config: oslist: windows executable: autorun.exe type: default -'709890': +"709890": installDir: Crazy Mob launch: - config: oslist: windows executable: game.exe type: default -'709900': +"709900": installDir: Deep Dark Fantasies launch: - config: oslist: windows executable: Deep_Dark_Fantasies.exe type: default -'709920': +"709920": installDir: Tametsi launch: - config: oslist: windows executable: tametsi.exe type: default -'709940': +"709940": installDir: Weapon and Armor Mahjong launch: - config: oslist: windows executable: Weapon and Armor Mahjong.exe type: default -'71000': +"71000": installDir: Evochron Mercenary launch: - executable: EvochronMercenary.exe -'710020': {} -'710030': +"710020": {} +"710030": installDir: Cinderella Escape 2 Revenge launch: - config: oslist: windows executable: CE2.exe type: none -'710070': +"710070": installDir: Helltown launch: - config: oslist: windows executable: HellTown.exe type: default -'710080': {} -'710090': +"710080": {} +"710090": installDir: Annual launch: - config: oslist: windows executable: Annual.exe type: default -'710110': +"710110": installDir: Trivia Vault Mini Mixed Trivia 3 launch: - config: oslist: windows executable: Trivia Vault Mini Mixed Trivia 3.exe type: default -'710120': +"710120": installDir: Trivia Vault Mini Mixed Trivia 4 launch: - config: oslist: windows executable: Trivia Vault Mini Mixed Trivia 4.exe type: default -'710130': +"710130": installDir: Hidden Dragon Legend launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: HiddenDragonLegend.exe type: default nameLocalized: sc_schinese: 隐龙传:影踪 schinese: 隐龙传 -'710160': +"710160": installDir: Mula The Cycle of Shadow launch: - config: oslist: windows executable: Mula.exe type: none -'710170': +"710170": installDir: The Broken Seal launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TheBrokenSeal.exe type: vr -'710190': +"710190": installDir: Puzzle Sisters launch: - config: - osarch: '64' + osarch: "64" oslist: macos executable: PuzzleSisters.app/Contents/MacOS/PuzzleSisters type: default @@ -331296,38 +326346,38 @@ oslist: windows executable: PuzzleSisters.exe type: default -'710220': +"710220": installDir: DreadStar launch: - config: oslist: windows executable: DreadStar.exe type: default -'710240': +"710240": installDir: interworlds launch: - config: oslist: windows executable: Interworlds.exe type: vr -'710250': +"710250": installDir: PetSquadRacing launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: PetSquad2.exe type: default -'710260': {} -'710270': {} -'710280': +"710260": {} +"710270": {} +"710280": installDir: windows_content launch: - config: oslist: windows executable: game.exe type: default -'710310': +"710310": installDir: Hopscotch launch: - config: @@ -331336,46 +326386,46 @@ type: default - config: oslist: macos - executable: hopscotch.app\\Contents\\MacOS\\hopscotch + executable: "hopscotch.app\\\\Contents\\\\MacOS\\\\hopscotch" type: default -'710320': {} -'710330': {} -'710340': {} -'710380': {} -'710390': {} -'710400': +"710320": {} +"710330": {} +"710340": {} +"710380": {} +"710390": {} +"710400": installDir: TERRAGEARTH launch: - config: oslist: windows executable: TERRAGEARTH.exe type: none -'710440': {} -'710450': {} -'710460': +"710440": {} +"710450": {} +"710460": installDir: Rush on Rome launch: - config: oslist: windows executable: RushOnRome.exe type: default -'710470': +"710470": installDir: Little Witch Academia launch: - config: oslist: windows executable: LWA.exe type: none -'710480': +"710480": installDir: Extreme Real Reality HD Remix launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: nw.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: nw.exe type: default @@ -331383,21 +326433,21 @@ oslist: macos executable: extremerealreality.app type: default -'710510': {} -'710520': +"710510": {} +"710520": installDir: Super Trashforce launch: - executable: Super Trashforce.exe type: none -'710540': {} -'710550': +"710540": {} +"710550": installDir: Cubion launch: - config: oslist: windows executable: Cubion.exe type: default -'710600': +"710600": installDir: Red Bow launch: - description: Red Bow @@ -331406,12 +326456,12 @@ - description: Game Setup executable: winsetup.exe type: option1 -'710610': - installDir: Don't Sink +"710610": + installDir: "Don't Sink" launch: - config: oslist: windows - executable: Don't Sink.exe + executable: "Don't Sink.exe" type: default - config: oslist: linux @@ -331421,7 +326471,7 @@ oslist: macos executable: Contents/MacOS/Mac_Runner type: default -'710620': +"710620": installDir: Wira y Taksa launch: - config: @@ -331436,7 +326486,7 @@ oslist: linux executable: WT.x86_64 type: default -'710630': +"710630": installDir: GOLDRUSHERS launch: - config: @@ -331445,9 +326495,9 @@ type: default - config: oslist: macos - executable: GOLDRUSHERS.app\\Contents\\MacOS\\GOLDRUSHERS + executable: "GOLDRUSHERS.app\\\\Contents\\\\MacOS\\\\GOLDRUSHERS" type: default -'710640': +"710640": installDir: PRO DRIFT RELOADED launch: - config: @@ -331455,35 +326505,35 @@ description: Launch Game executable: PRO DRIFT RELOADED v4.0.exe type: default -'710650': +"710650": installDir: Conquest of Gerazania launch: - config: oslist: windows executable: Conquest of Gerazania.exe type: default -'710670': +"710670": installDir: Reprogram launch: - config: oslist: windows executable: Reprogram.exe type: default -'710690': +"710690": installDir: The Path of Motus launch: - config: oslist: windows executable: The Path of Motus.exe type: none -'710700': +"710700": installDir: Paperback The Game launch: - config: oslist: windows executable: Paperback.exe type: none -'710710': +"710710": installDir: PizzA Gameg launch: - config: @@ -331501,29 +326551,29 @@ description: Launch (Mac) executable: game.app type: default -'710740': +"710740": installDir: Sniper Rust VR launch: - config: oslist: windows - executable: \\Play_SniperRust_VR.exe + executable: "\\\\Play_SniperRust_VR.exe" type: othervr -'710760': +"710760": installDir: High noon VR launch: - config: oslist: windows executable: HighNoon.exe type: vr -'710780': +"710780": installDir: Sky Jump launch: - - arguments: '-windowed' + - arguments: "-windowed" config: oslist: windows executable: Sky jump.exe type: default -'710820': +"710820": installDir: BELPAESE Homecoming launch: - config: @@ -331532,26 +326582,26 @@ type: default - config: oslist: macos - executable: TheBelPaese.app\\Contents\\MacOS\\runtime + executable: "TheBelPaese.app\\\\Contents\\\\MacOS\\\\runtime" type: default -'710840': {} -'710860': {} -'710880': +"710840": {} +"710860": {} +"710880": installDir: DarkRising launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Dark Rising (32-bit) executable: Dark Rising32.exe type: option1 - config: - osarch: '64' + osarch: "64" oslist: windows description: Dark Rising (64 bit) executable: Dark Rising64.exe type: option2 -'710890': +"710890": installDir: SHOPPING SIMULATOR MULTIPLAYER launch: - config: @@ -331562,23 +326612,23 @@ oslist: macos executable: shopSim.app type: none -'710920': +"710920": installDir: DarksidersGenesis launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: DarksidersGenesis.exe type: default - config: betakey: gamescom - osarch: '64' + osarch: "64" oslist: windows description: GAMESCOM BRANCH - executable: ProjectMayhem\\Binaries\\Win64\\ProjectMayhem-Win64-Shipping.exe + executable: "ProjectMayhem\\\\Binaries\\\\Win64\\\\ProjectMayhem-Win64-Shipping.exe" type: option1 -'710940': - installDir: Owl's Midnight Journey +"710940": + installDir: "Owl's Midnight Journey" launch: - config: oslist: windows @@ -331586,9 +326636,9 @@ type: default - config: oslist: macos - executable: owl.app\\Contents\\MacOS\\owl + executable: "owl.app\\\\Contents\\\\MacOS\\\\owl" type: default -'710950': +"710950": installDir: Pinewood Island launch: - config: @@ -331599,14 +326649,14 @@ oslist: macos executable: Pinewood-Island.app type: none -'710960': +"710960": installDir: Enceladus launch: - config: oslist: windows executable: Enceladus.exe type: default -'710970': +"710970": installDir: Learn (Japanese) Kana The Fun Way! launch: - config: @@ -331624,45 +326674,45 @@ description: Launch executable: Learn Kana The Fun Way.app type: none -'710990': +"710990": installDir: KENDAMVR - Virtual Reality Kendama launch: - config: oslist: windows executable: kendamvr.exe type: vr -'7110': +"7110": installDir: Jade Empire launch: - executable: JadeEmpireLauncher.exe - description: Launch Jade Empire Configuration executable: JadeEmpireConfig.exe -'711000': +"711000": installDir: Ancient Tower launch: - config: oslist: windows - executable: windows_content\\AncientTower.exe + executable: "windows_content\\\\AncientTower.exe" type: default - config: oslist: macos executable: macos_content/Ancient Tower.app type: default -'711010': +"711010": installDir: Corrupt launch: - config: oslist: windows executable: Corrupt.exe type: default -'711050': +"711050": installDir: Walking Heavy launch: - config: oslist: windows executable: Walking_Heavy.exe type: default -'711070': +"711070": installDir: Kim Jong-Boom launch: - config: @@ -331677,16 +326727,16 @@ oslist: linux executable: Kimchenboom.sh type: default -'711080': {} -'711090': {} -'71110': {} -'711100': {} -'71111': {} -'711110': {} -'71112': {} -'711120': {} -'71113': {} -'711130': +"711080": {} +"711090": {} +"71110": {} +"711100": {} +"71111": {} +"711110": {} +"71112": {} +"711120": {} +"71113": {} +"711130": installDir: God of Light Remastered launch: - config: @@ -331697,74 +326747,74 @@ oslist: macos executable: gol.app type: default -'71114': {} -'711140': +"71114": {} +"711140": installDir: Forsaken Generation launch: - config: oslist: windows executable: Game.exe type: default -'71115': {} -'711150': +"71115": {} +"711150": installDir: Brick Breaker Ultimate launch: - config: oslist: windows executable: Brick Breaker Ultimate.exe type: none -'71116': {} -'71117': {} -'71118': {} -'71119': {} -'711190': +"71116": {} +"71117": {} +"71118": {} +"71119": {} +"711190": installDir: Color Sudoku launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: Color Sudoku.exe type: default - config: - osarch: '64' + osarch: "64" oslist: macos description: Launch - executable: Color Sudoku.app\\Contents\\MacOS\\Color Sudoku + executable: "Color Sudoku.app\\\\Contents\\\\MacOS\\\\Color Sudoku" type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Color Sudoku.x86_64 type: default -'71120': {} -'711210': +"71120": {} +"711210": installDir: StepX launch: - config: oslist: windows executable: StepX.exe type: none -'711230': +"711230": installDir: Titus the Fox launch: - - arguments: '-conf \"./dosbox_titus.conf\" -conf \"./dosbox_titus_single.conf\" -noconsole' + - arguments: "-conf \\\"./dosbox_titus.conf\\\" -conf \\\"./dosbox_titus_single.conf\\\" -noconsole" config: oslist: windows executable: DOSBox/dosbox.exe type: default - - arguments: '-conf \"./dosbox_titus.conf\" -conf \"./dosbox_titus_single.conf\" -noconsole' + - arguments: "-conf \\\"./dosbox_titus.conf\\\" -conf \\\"./dosbox_titus_single.conf\\\" -noconsole" config: oslist: macos executable: DOSBox/dosbox.app/Contents/MacOS/DOSBox type: default - - arguments: '-conf \"./dosbox_titus.conf\" -conf \"./dosbox_titus_single.conf\" -noconsole' + - arguments: "-conf \\\"./dosbox_titus.conf\\\" -conf \\\"./dosbox_titus_single.conf\\\" -noconsole" config: oslist: linux executable: dosbox/dosbox type: default -'711240': +"711240": installDir: Grand Academy for Future Villains launch: - config: @@ -331779,33 +326829,33 @@ oslist: linux executable: GrandAcademyForFutureVillains type: none -'711260': +"711260": installDir: BHB BioHazard Bot launch: - config: oslist: windows executable: BHB_BioHazard_Bot.exe type: default -'711300': +"711300": installDir: Bit Storm VR First Loop launch: - executable: bitStormVRFirstLoop.exe type: vr -'711310': +"711310": installDir: SPIIIDERS launch: - config: oslist: windows executable: SPIIIDERS.exe type: default -'711320': +"711320": installDir: Battle of Frigates launch: - config: oslist: windows executable: Battle of Frigates.exe type: none -'711330': +"711330": installDir: Trial of the Demon Hunter launch: - config: @@ -331820,7 +326870,7 @@ oslist: linux executable: TrialOfTheDemonHunter type: none -'711350': +"711350": installDir: Captive of Fortune launch: - config: @@ -331835,33 +326885,33 @@ oslist: linux executable: CaptiveOfFortune type: none -'711380': +"711380": installDir: Code of Princess EX launch: - config: oslist: windows executable: game.exe type: default -'711390': +"711390": installDir: AntiGravity_Warriors_VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: VRSciFiShooter.exe type: vr -'711410': {} -'711430': +"711410": {} +"711430": installDir: Miss Fisher and the Deathly Maze launch: - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Miss Fisher and the Deathly Maze.x86_64 type: none - config: - osarch: '32' + osarch: "32" description: Launch executable: Miss Fisher and the Deathly Maze.x86 type: none @@ -331875,14 +326925,14 @@ description: Launch executable: Miss Fisher and the Deathly Maze.exe type: none -'711440': +"711440": installDir: Mortars VR launch: - config: oslist: windows executable: MortarsVR.exe type: vr -'711450': +"711450": installDir: Orb The Ball launch: - config: @@ -331893,35 +326943,35 @@ oslist: macos executable: OrbTheBall.app/Contents/MacOS/OrbTheBall type: default -'711460': +"711460": installDir: Duel Survival launch: - executable: steam_game.exe type: none -'711480': +"711480": installDir: Room 42 launch: - executable: nw.exe type: default -'711500': +"711500": installDir: Dr Fizzgigious Carbon Dating launch: - config: oslist: windows - executable: Dr_Fizzgigious_Carbon_Dating-1.0-win\\Dr_Fizzgigious_Carbon_Dating.exe + executable: "Dr_Fizzgigious_Carbon_Dating-1.0-win\\\\Dr_Fizzgigious_Carbon_Dating.exe" type: default -'711530': +"711530": installDir: Butterfly Moment launch: - config: oslist: windows executable: ButterflyMoment.exe type: vr -'711540': +"711540": installDir: Lonely Mountains - Downhill launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: LMD_Win_x64.exe type: default @@ -331929,53 +326979,53 @@ oslist: macos executable: LMD_MacOS.app type: default -'711550': +"711550": installDir: Glo launch: - config: oslist: windows executable: Glo.exe type: default -'711560': +"711560": installDir: Stone Flower launch: - config: oslist: windows executable: StoneFlower.exe type: none -'711570': +"711570": installDir: Epic Battle Simulator 2 launch: - config: oslist: windows executable: Epic Battle Simulator 2.exe type: none -'711590': {} -'71160': {} -'711600': +"711590": {} +"71160": {} +"711600": installDir: Dragon Orb launch: - config: oslist: windows executable: DragonOrb.exe type: vr -'71161': {} -'711610': {} -'71162': {} -'711620': {} -'71163': {} -'711630': +"71161": {} +"711610": {} +"71162": {} +"711620": {} +"71163": {} +"711630": installDir: Eveslan launch: - config: oslist: windows executable: Eveslan.exe type: default -'71164': {} -'711640': {} -'71165': {} -'71166': {} -'711660': +"71164": {} +"711640": {} +"71165": {} +"71166": {} +"711660": installDir: CHUCHEL launch: - config: @@ -331988,25 +327038,25 @@ type: default - config: oslist: windows - ownsdlc: '811300' + ownsdlc: "811300" description: View CHUCHEL Art Book (DLC) executable: CHUCHEL Art Book/Chuchel Art Book.pdf type: none - config: oslist: macos - ownsdlc: '811300' + ownsdlc: "811300" description: View CHUCHEL Art Book (DLC) executable: OSX_Open-ArtBook.sh type: none - config: oslist: windows - ownsdlc: '811300' + ownsdlc: "811300" description: Play Cherries on Air (CHUCHEL Soundtrack) (DLC) executable: CHUCHEL Soundtrack MP3/DVA - CHUCHEL Soundtrack.m3u type: none - config: oslist: macos - ownsdlc: '811300' + ownsdlc: "811300" description: Play Cherries on Air (CHUCHEL Soundtrack) (DLC) executable: OSX_Play-Soundtrack.sh type: none @@ -332015,9 +327065,9 @@ koreana: CHUCHEL (츄첼) schinese: 毛线先生 (CHUCHEL) tchinese: 毛線先生 (CHUCHEL) -'71167': {} -'71168': {} -'711690': +"71167": {} +"71168": {} +"711690": installDir: Cognizer launch: - config: @@ -332029,32 +327079,32 @@ executable: Cognizer.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Cognizer.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Cognizer.x86 type: default -'711700': +"711700": installDir: Derpy Fight launch: - config: oslist: windows executable: DerpyFight.exe type: default -'711710': +"711710": installDir: RedEyes launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows description: Launch executable: redeyes.exe type: none -'711720': +"711720": installDir: Fade Away launch: - config: @@ -332065,22 +327115,22 @@ oslist: macos executable: fadeaway.app type: default -'711750': +"711750": installDir: Monster Energy Supercross - The Official Videogame launch: - config: - osarch: '64' + osarch: "64" executable: supercross.exe type: none -'711760': {} -'711770': +"711760": {} +"711770": installDir: Hotel Dracula launch: - config: oslist: windows executable: dracula.exe type: default -'711810': +"711810": installDir: Never Split the Party launch: - config: @@ -332095,7 +327145,7 @@ oslist: linux executable: Never Split the Party.x86 type: none -'711870': +"711870": installDir: Degauss launch: - config: @@ -332110,14 +327160,14 @@ oslist: linux executable: Degauss type: default -'711890': - installDir: Dark Parables Goldilocks and the Fallen Star Collector's Edition +"711890": + installDir: "Dark Parables Goldilocks and the Fallen Star Collector's Edition" launch: - config: oslist: windows executable: DarkParables_GoldilocksAndTheFallenStar_CE.exe type: default -'711920': +"711920": installDir: Detective Case and Clown Bot in The Express Killer launch: - config: @@ -332132,29 +327182,29 @@ oslist: linux executable: Case_BotExpressKiller type: none -'711930': +"711930": installDir: SquareHeads launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SquareHeads.exe type: default -'711970': +"711970": installDir: Galactic Field launch: - config: oslist: windows executable: Galactic Field.exe type: default -'711990': +"711990": installDir: Elyse the Devil launch: - config: oslist: windows executable: Game.exe type: none -'712000': +"712000": installDir: Elder Chaos launch: - config: @@ -332178,30 +327228,30 @@ - description: Editor Guide executable: Editor_Guide.pdf type: option1 -'712010': +"712010": installDir: Achievement Chevo Lurker Achievement Exodus launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows executable: Game.exe type: default -'712050': - installDir: Otaku's Fantasy +"712050": + installDir: "Otaku's Fantasy" launch: - config: oslist: windows - executable: Otaku's Fantasy.exe + executable: "Otaku's Fantasy.exe" type: none -'712060': +"712060": installDir: Mysterious Island Adventure launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: MIA.exe type: vr -'712070': +"712070": installDir: Lantern of Worlds launch: - config: @@ -332212,15 +327262,15 @@ oslist: macos executable: Game.app type: default -'712080': +"712080": installDir: 7 Bones and 7 Stones - The Ritual launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: TheRitual\\Binaries\\Win64\\TheRitual-Win64.exe + executable: "TheRitual\\\\Binaries\\\\Win64\\\\TheRitual-Win64.exe" type: default -'712090': +"712090": installDir: DontFeed launch: - config: @@ -332232,16 +327282,16 @@ executable: DontFeed.exe type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: DontFeed.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: DontFeed.x86_64 type: none -'712100': +"712100": installDir: Total War Saga Thrones of Britannia launch: - config: @@ -332258,35 +327308,35 @@ executable: ThronesOfBritannia.sh type: default - config: - betakey: 'amd_test,intel_test,nvidia_test,blueberry,domesticated_windows_sync' + betakey: "amd_test,intel_test,nvidia_test,blueberry,domesticated_windows_sync" oslist: windows description: Thrones executable: Thrones.exe type: none -'712120': {} -'712140': {} -'712150': +"712120": {} +"712140": {} +"712150": installDir: TankVR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TankVR.exe type: vr - config: - osarch: '64' + osarch: "64" oslist: linux executable: TankVR.x86_64 type: vr - config: oslist: macos - executable: TankVR.app\\Contents\\MacOS\\TankVR + executable: "TankVR.app\\\\Contents\\\\MacOS\\\\TankVR" type: vr -'712180': +"712180": installDir: Mugsters launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Mugsters.exe type: default @@ -332294,94 +327344,94 @@ oslist: macos executable: Mugsters.app type: default -'712190': +"712190": installDir: Genesis Alpha One launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Genesis.exe type: default -'712210': +"712210": installDir: RUNRUNRUN launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: nw.exe type: default -'712220': {} -'712230': +"712220": {} +"712230": installDir: WARZONE launch: - config: oslist: windows executable: Warzone.exe type: none -'712240': +"712240": installDir: Sneaky Bears launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: on Vive executable: Sneaky Bears.exe type: vr - - arguments: '-vrmode oculus' + - arguments: "-vrmode oculus" config: - osarch: '64' + osarch: "64" oslist: windows description: on Oculus Rift executable: Sneaky Bears.exe type: othervr -'712260': +"712260": installDir: Feast Your Eyes launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" executable: Game.exe type: default -'712280': {} -'71230': +"712280": {} +"71230": installDir: Crazy Taxi launch: - - arguments: '-bootgame' + - arguments: "-bootgame" executable: AppLauncher.exe - - arguments: '-bootlauncher' + - arguments: "-bootlauncher" description: Configure Crazy Taxi executable: AppLauncher.exe -'712300': {} -'712360': {} -'712380': +"712300": {} +"712360": {} +"712380": installDir: Temple Escape launch: - config: oslist: windows - executable: Windows\\Temple Escape.exe + executable: "Windows\\\\Temple Escape.exe" type: none - config: oslist: linux - executable: Linux\\Temple Escape.x86 + executable: "Linux\\\\Temple Escape.x86" type: none - config: oslist: macos - executable: MacOS\\Temple Escape.app\\Contents\\MacOS\\Temple Escape + executable: "MacOS\\\\Temple Escape.app\\\\Contents\\\\MacOS\\\\Temple Escape" type: none -'712390': +"712390": installDir: TFS RPG launch: - config: oslist: windows executable: /Game.exe type: default -'71240': +"71240": installDir: SEGA Bass Fishing launch: - - arguments: '-bootgame' + - arguments: "-bootgame" executable: AppLauncher.exe - - arguments: '-bootlauncher' + - arguments: "-bootlauncher" description: Configure SEGA Bass Fishing executable: AppLauncher.exe -'712410': +"712410": installDir: Cirque du Soleil launch: - executable: app/launch_with_downloader.bat @@ -332389,7 +327439,7 @@ - description: (alternate method) executable: app/cds_portal.exe type: vr -'712430': +"712430": installDir: Vibrant launch: - config: @@ -332400,35 +327450,35 @@ oslist: macos executable: Vibrant.app/Contents/MacOS/vibrant type: default -'712440': +"712440": installDir: Shroom launch: - config: oslist: windows executable: Shroom.exe type: default -'71250': +"71250": installDir: Sonic Adventure DX launch: - - arguments: '-bootgame' + - arguments: "-bootgame" executable: AppLauncher.exe - - arguments: '-bootlauncher' + - arguments: "-bootlauncher" description: Configure Sonic Adventure DX executable: AppLauncher.exe -'712530': +"712530": installDir: Chamber of Darkness launch: - executable: chamber of darkness.exe type: none -'71260': +"71260": installDir: Space Channel 5 Part 2 launch: - - arguments: '-bootgame' + - arguments: "-bootgame" executable: AppLauncher.exe - - arguments: '-bootlauncher' - description: 'Configure Space Channel 5: Part 2' + - arguments: "-bootlauncher" + description: "Configure Space Channel 5: Part 2" executable: AppLauncher.exe -'712610': +"712610": installDir: Onironauta launch: - config: @@ -332440,7 +327490,7 @@ description: Configura Onironauta executable: winsetup.exe type: config -'712620': +"712620": installDir: Shattered launch: - config: @@ -332451,12 +327501,12 @@ oslist: macos executable: Shattered.app/Contents/MacOS/Shattered type: default -'712650': +"712650": installDir: Azure Sky Project launch: - executable: ASP.exe type: none -'712660': +"712660": installDir: YBit launch: - config: @@ -332469,9 +327519,9 @@ type: none - config: oslist: macos - executable: YBit.app\\Contents\\MacOS\\YBit + executable: "YBit.app\\\\Contents\\\\MacOS\\\\YBit" type: default -'71270': +"71270": installDir: Football Manager 2012 launch: - config: @@ -332480,26 +327530,26 @@ - config: oslist: macos executable: fm.app -'712700': +"712700": installDir: Black Friday The Game launch: - config: oslist: windows executable: BlackFriday.exe type: default -'712730': +"712730": installDir: SIMULACRA launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: simulacra.exe type: default - config: oslist: macos - executable: SIMULACRA.app\\Contents\\MacOS\\SIMULACRA + executable: "SIMULACRA.app\\\\Contents\\\\MacOS\\\\SIMULACRA" type: default -'712760': +"712760": installDir: Duped launch: - config: @@ -332510,7 +327560,7 @@ oslist: macos executable: Duped.app type: default -'712770': +"712770": installDir: Just A Dream launch: - config: @@ -332518,97 +327568,97 @@ description: Launch executable: Just A Dream.exe type: none -'712790': +"712790": installDir: Crimson Memories launch: - config: oslist: windows executable: Game.exe type: none -'712810': +"712810": installDir: FallenTimes launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: FallenTimes.exe type: default - config: - osarch: '64' + osarch: "64" oslist: macos - executable: FallenTimes.app\\Contents\\MacOS\\FallenTimes + executable: "FallenTimes.app\\\\Contents\\\\MacOS\\\\FallenTimes" type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: FallenTimes.x86_64 type: default -'712840': +"712840": installDir: King Exit launch: - config: oslist: windows executable: Game.exe type: none -'712870': +"712870": installDir: Vectorium launch: - config: oslist: windows executable: Vectorium.exe type: default -'712880': +"712880": installDir: Chess Arena launch: - config: oslist: windows executable: chess.exe type: default -'712890': +"712890": installDir: Harmonium launch: - executable: Harmonium.exe type: none -'712910': +"712910": installDir: CubiansRP launch: - config: oslist: windows executable: CubiansRP.exe type: vr -'712930': {} -'712940': {} -'712950': {} -'712960': {} -'712970': +"712930": {} +"712940": {} +"712950": {} +"712960": {} +"712970": installDir: Clad in Iron Philippines 1898 launch: - config: oslist: windows executable: Launcher.exe type: default -'712980': +"712980": installDir: Rainyday launch: - config: oslist: windows executable: rainyday.exe type: none -'713010': +"713010": installDir: Warium launch: - config: oslist: windows executable: Warium.exe type: default -'713030': +"713030": installDir: Mini Hockey Champ launch: - config: oslist: windows executable: mhc.exe type: default -'713050': +"713050": installDir: Vampires! launch: - config: @@ -332617,46 +327667,46 @@ type: none - config: oslist: macos - executable: The Vampires.app\\Contents\\MacOS\\The Vampires + executable: "The Vampires.app\\\\Contents\\\\MacOS\\\\The Vampires" type: none - config: oslist: linux executable: The Vampires.x86 type: none -'713060': +"713060": installDir: The Beanstalk launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TheBeanstalk.exe type: vr -'713070': +"713070": installDir: Pray for Death launch: - - arguments: '-conf \"dosboxPRAY.conf\" -conf \"dosboxPRAY_single.conf\" -noconsole' + - arguments: "-conf \\\"dosboxPRAY.conf\\\" -conf \\\"dosboxPRAY_single.conf\\\" -noconsole" config: oslist: windows executable: DOSBox/dosbox.exe type: default - - arguments: '-conf \"./dosboxPRAY.conf\" -conf \"./dosboxPRAY_single.conf\" -noconsole' + - arguments: "-conf \\\"./dosboxPRAY.conf\\\" -conf \\\"./dosboxPRAY_single.conf\\\" -noconsole" config: oslist: macos executable: DOSBox/dosbox.app/Contents/MacOS/DOSBox type: default - - arguments: '-conf \"./dosboxPRAY.conf\" -conf \"./dosboxPRAY_single.conf\" -noconsole' + - arguments: "-conf \\\"./dosboxPRAY.conf\\\" -conf \\\"./dosboxPRAY_single.conf\\\" -noconsole" config: oslist: linux executable: dosbox/dosbox type: default -'713080': +"713080": installDir: President Evil launch: - config: oslist: windows executable: PE.exe type: none -'713090': +"713090": installDir: Zombie Bloxx launch: - config: @@ -332665,13 +327715,13 @@ type: none - config: oslist: macos - executable: zb_normal.app\\Contents\\MacOS\\zb_normal + executable: "zb_normal.app\\\\Contents\\\\MacOS\\\\zb_normal" type: none - config: betakey: xmas_update oslist: macos description: Beta Build - executable: zb_xmas_1.1.0.app\\Contents\\MacOS\\zb_xmas_1.1.0 + executable: "zb_xmas_1.1.0.app\\\\Contents\\\\MacOS\\\\zb_xmas_1.1.0" type: none - config: betakey: xmas_update @@ -332689,16 +327739,16 @@ betakey: beta oslist: macos description: BETA - executable: zb_normal.app\\Contents\\MacOS\\zb_normal + executable: "zb_normal.app\\\\Contents\\\\MacOS\\\\zb_normal" type: none -'713100': +"713100": installDir: StockUp launch: - config: oslist: windows executable: StockUp.exe type: default -'713160': +"713160": installDir: After Death launch: - config: @@ -332706,7 +327756,7 @@ description: Launcher executable: ADGame.exe type: default -'713170': +"713170": installDir: unBorn launch: - config: @@ -332717,102 +327767,102 @@ oslist: macos executable: game.ios type: default -'713180': +"713180": installDir: Eredia The Diary of Heroes launch: - config: oslist: windows executable: Launcher.exe type: default -'713220': - installDir: Mass O' Kyzt +"713220": + installDir: "Mass O' Kyzt" launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: MassOKyzt.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: MassOKyzt.sh type: default -'713230': +"713230": installDir: VR Drivers launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: VR_Drivers.exe type: vr - config: - osarch: '64' + osarch: "64" oslist: windows executable: VR_Drivers.exe type: othervr - config: - osarch: '64' + osarch: "64" oslist: windows executable: VR_Drivers.exe type: vr - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" config: - osarch: '64' + osarch: "64" oslist: windows executable: VR_Drivers.exe type: config -'713260': +"713260": installDir: BeyondTheSunset launch: - config: oslist: windows executable: Game.exe type: default -'713310': +"713310": installDir: Gambol launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Gambol.exe -'713320': +"713320": installDir: Google Spotlight Stories - Sonaria launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: win32/storyplayer.exe type: vr - config: - osarch: '64' + osarch: "64" oslist: windows executable: win64/storyplayer.exe type: vr -'713340': +"713340": installDir: Space Ship Commander launch: - config: oslist: windows executable: SpaceShipCommander.exe type: default -'713350': {} -'713360': {} -'713370': +"713350": {} +"713360": {} +"713370": installDir: Nona launch: - config: oslist: windows executable: Nona.exe type: none -'713380': +"713380": installDir: Mr. Barrel launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: mr_barrel.exe type: default -'713390': +"713390": installDir: No God for Us launch: - config: @@ -332820,13 +327870,13 @@ description: Launch executable: No God for us.exe type: none -'71340': +"71340": installDir: Sonic Generations launch: - executable: SonicGenerations.exe - description: Configure executable: ConfigurationTool.exe -'713420': +"713420": installDir: CotPotApes launch: - config: @@ -332837,7 +327887,7 @@ oslist: windows executable: Prototype1.exe type: othervr -'713430': +"713430": installDir: Secrets of Magic 2 - Witches and Wizards launch: - config: @@ -332852,89 +327902,89 @@ oslist: linux executable: Secrets of Magic 2 - Witches and Wizards.x86_64 type: default -'713440': +"713440": installDir: CYCOM launch: - config: oslist: windows executable: CYCOM.exe type: vr -'713450': +"713450": installDir: Dungeon Rustlers launch: - config: oslist: windows executable: DungeonRustlers.exe type: none -'713460': +"713460": installDir: Train Frontier Classic launch: - executable: TrainFrontierClassic.exe type: none -'713500': +"713500": installDir: Moto VR launch: - config: oslist: windows executable: MotoVR.exe type: vr -'713520': {} -'713530': +"713520": {} +"713530": installDir: Armored Kitten launch: - config: oslist: windows executable: ArmoredKitten.exe type: none -'713540': +"713540": installDir: Neptunian Donut launch: - config: oslist: windows executable: NeptunianDonut.exe type: default -'713550': +"713550": installDir: HikarusCube launch: - config: oslist: windows executable: windows_content/HikarusCube.exe type: none -'713570': +"713570": installDir: Go Kart Survival launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Gokartsurvival.exe type: default -'713580': +"713580": installDir: Nash Racing 2 Muscle cars launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Nash216.exe type: default -'713590': +"713590": installDir: Hidden Object - Food launch: - config: oslist: windows executable: Hidden Object - Food.exe type: default -'713600': +"713600": installDir: Airstrike One launch: - config: oslist: windows executable: Airstrike One.exe type: none -'713610': +"713610": installDir: Qbike Crypto Motorcycles launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: PC Windows non VR executable: Qbike.exe @@ -332945,26 +327995,26 @@ executable: Qbike.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: Linux Non-VR executable: Qbike.x86_64 type: default -'713650': +"713650": installDir: Sevgilim launch: - config: oslist: windows executable: sevgilim.exe type: none -'713680': +"713680": installDir: Ablepsia launch: - config: oslist: windows executable: nw.exe type: default -'713760': +"713760": installDir: Turf Wars launch: - config: @@ -332972,54 +328022,54 @@ description: Launch executable: TurfWars.exe type: default -'713780': {} -'713800': +"713780": {} +"713800": installDir: Infinite Gateway launch: - config: oslist: windows executable: RunnerS1.exe type: default -'713830': +"713830": installDir: PivotPuzzles launch: - config: oslist: windows executable: PivotPuzzles.exe type: default -'713840': +"713840": installDir: Goblin Storm launch: - config: oslist: windows executable: Goblin.exe type: default -'713860': +"713860": installDir: My Name is Addiction launch: - - executable: MyNameIsAddiction1.0-win\\My Name Is Addiction.exe + - executable: "MyNameIsAddiction1.0-win\\\\My Name Is Addiction.exe" type: none -'71390': +"71390": installDir: Virtua Tennis 4 launch: - - arguments: '' + - arguments: "" description: Default executable: VT4.exe - - arguments: '' + - arguments: "" description: Run Virtua Tennis 4 Configuration executable: Launcher.exe -'713920': {} -'713940': {} -'713950': {} -'713980': +"713920": {} +"713940": {} +"713950": {} +"713980": installDir: Mark After Dark launch: - config: oslist: windows executable: Game.exe type: none -'714000': {} -'714010': +"714000": {} +"714010": installDir: Aim Lab launch: - config: @@ -333030,51 +328080,51 @@ oslist: macos executable: AimLab.app type: default -'714020': +"714020": installDir: Idle Adventure launch: - config: oslist: windows executable: IdleAdventureApp.exe type: default -'714050': +"714050": installDir: Undead launch: - config: oslist: windows executable: Undead.exe type: default -'714060': +"714060": installDir: Alien Mayhem launch: - config: oslist: windows - executable: WIN_Alien_Mayhem\\Alien Mayhem.exe + executable: "WIN_Alien_Mayhem\\\\Alien Mayhem.exe" type: none -'714070': +"714070": installDir: Entropy Zero launch: - - arguments: '-game EntropyZero' - executable: Entropy Zero\\hl2.exe + - arguments: "-game EntropyZero" + executable: "Entropy Zero\\\\hl2.exe" type: none -'714080': +"714080": installDir: Black Clover Quartet Knights launch: - arguments: /useEAC config: - osarch: '64' + osarch: "64" oslist: windows executable: Launch_Game.exe type: default - config: - betakey: 'dev-qa-debug,dev-dlc-qa-debug,qa-debug' - osarch: '64' + betakey: "dev-qa-debug,dev-dlc-qa-debug,qa-debug" + osarch: "64" oslist: windows description: no EAC executable: QuartetKnights.exe type: default -'714110': {} -'714120': +"714110": {} +"714120": installDir: Little Misfortune launch: - config: @@ -333089,7 +328139,7 @@ oslist: macos executable: Little Misfortune.app type: none -'714130': +"714130": installDir: WhiTaers launch: - config: @@ -333100,7 +328150,7 @@ oslist: macos executable: WhiTaers.app type: default -'714150': +"714150": installDir: Bombastic Cars launch: - config: @@ -333108,13 +328158,13 @@ description: Launch executable: BombasticCars.exe type: default -'714180': {} -'714190': {} -'71420': +"714180": {} +"714190": {} +"71420": installDir: London 2012 launch: - executable: london2012.exe -'714240': +"714240": installDir: SWARMRIDER OMEGA launch: - config: @@ -333125,13 +328175,13 @@ oslist: linux executable: run.sh type: default -'714250': +"714250": installDir: Eternity The Last Unicorn launch: - executable: Eternity.exe type: default -'714260': {} -'714280': +"714260": {} +"714280": installDir: Time Up launch: - config: @@ -333142,121 +328192,121 @@ oslist: macos executable: Time Up.app type: default -'714290': +"714290": installDir: Endless Treasure Hunt launch: - config: oslist: windows executable: Endless Treasure Hunt.exe type: default -'714300': +"714300": installDir: Dead By Murder launch: - config: oslist: windows executable: Dead By Murder.exe type: default -'714340': {} -'714350': {} -'714360': +"714340": {} +"714350": {} +"714360": installDir: A Shawn Story launch: - config: oslist: windows executable: A Shawn Story.exe type: default -'714370': +"714370": installDir: LEFT ALIVE launch: - - arguments: '/nodownload /noShaderCache /noCollisionMerge /bootrom /steam ' + - arguments: "/nodownload /noShaderCache /noCollisionMerge /bootrom /steam " config: oslist: windows - executable: game\\bin\\win\\LEFTALIVE.exe + executable: "game\\\\bin\\\\win\\\\LEFTALIVE.exe" type: default - workingdir: game\\resource\\original\\asset -'714510': + workingdir: "game\\\\resource\\\\original\\\\asset" +"714510": installDir: Chaos Souls launch: - config: oslist: windows executable: Chaos Souls.exe type: default -'714530': +"714530": installDir: GRIM - Mystery of Wasules launch: - - arguments: '-fullscreen' + - arguments: "-fullscreen" config: oslist: windows executable: /GRIM - Mystery of Wasules/GRIMMoW.exe type: default -'714570': +"714570": installDir: Hidden Object - Tools launch: - config: oslist: windows executable: Hidden Object - Tools.exe type: default -'714580': +"714580": installDir: Google Spotlight Stories - Son of Jaguar launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: win32/storyplayer.exe type: vr - config: - osarch: '64' + osarch: "64" oslist: windows executable: win64/storyplayer.exe type: vr -'714610': +"714610": installDir: Google Spotlight Stories - Rain or Shine launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: win32/storyplayer.exe type: vr - config: - osarch: '64' + osarch: "64" oslist: windows executable: win64/storyplayer.exe type: vr -'714620': +"714620": installDir: Snakeez launch: - config: oslist: windows executable: Snakeez.exe type: none -'714640': +"714640": installDir: Abstractanoid launch: - executable: Abstractanoid.exe type: default -'714670': {} -'714730': +"714670": {} +"714730": installDir: Luvocious launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows executable: Luvocious.exe type: default -'714780': +"714780": installDir: Google Spotlight Stories - Special Delivery launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: win32/storyplayer.exe type: vr - config: - osarch: '64' + osarch: "64" oslist: windows executable: win64/storyplayer.exe type: vr -'714800': +"714800": installDir: Maitetsu launch: - description: Launch game @@ -333264,7 +328314,7 @@ type: default nameLocalized: japanese: まいてつ -'714840': +"714840": installDir: Mecho Tales launch: - config: @@ -333273,10 +328323,10 @@ type: none - config: oslist: macos - executable: MechoTales.app\\Contents\\MacOS\\MechoTales + executable: "MechoTales.app\\\\Contents\\\\MacOS\\\\MechoTales" type: none - workingdir: MechoTales.app\\Contents\\MacOS -'714880': + workingdir: "MechoTales.app\\\\Contents\\\\MacOS" +"714880": installDir: Chaos Battle launch: - config: @@ -333284,23 +328334,23 @@ description: 大乱斗游戏。 executable: Chaos Battle.exe type: none -'714910': +"714910": installDir: n-body launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Play with physics! (Play n-body) executable: n-body.exe type: vr -'714970': +"714970": installDir: Metonymy launch: - config: oslist: windows executable: Metonymy 11- 12.exe type: default -'714980': +"714980": installDir: Meanwhile launch: - config: @@ -333312,11 +328362,11 @@ executable: Meanwhile.app/Contents/MacOS/Meanwhile type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Meanwhile.x86_64 type: default -'715010': +"715010": installDir: Diamo XL launch: - config: @@ -333324,26 +328374,26 @@ executable: DiamoXL.app type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: DiamoXL.x86_64 type: none - config: - osarch: '32' + osarch: "32" oslist: windows executable: DiamoXL.exe type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: DiamoXL.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: windows executable: DiamoXL.exe type: none -'715020': +"715020": installDir: Elden launch: - config: @@ -333352,14 +328402,14 @@ type: none nameLocalized: schinese: 埃尔登:遗忘之旅 -'715050': +"715050": installDir: Islander launch: - config: oslist: windows executable: The Islander.exe type: default -'715060': +"715060": installDir: Lost in the Forest launch: - config: @@ -333374,27 +328424,27 @@ oslist: macos executable: lostintheforest.app type: default -'715090': +"715090": installDir: Rescue Team 4 launch: - config: oslist: windows executable: RescueTeam4.exe type: default -'715100': +"715100": installDir: EndlessWave launch: - executable: EndlessWave.exe type: none -'715160': {} -'715210': +"715160": {} +"715210": installDir: The Pillage launch: - config: oslist: windows executable: Organs.exe type: default -'715220': +"715220": installDir: Ironsight launch: - arguments: use_steam=1 @@ -333403,8 +328453,8 @@ description: Base Game executable: launcher.exe type: default -'715230': {} -'715270': +"715230": {} +"715270": installDir: Fire and Fury English Civil War launch: - config: @@ -333415,7 +328465,7 @@ oslist: macos executable: fireandfury.app type: none -'715280': +"715280": installDir: Ancient Battle Hannibal launch: - config: @@ -333426,7 +328476,7 @@ oslist: macos executable: ancientbattlehannibal.app type: none -'715290': +"715290": installDir: SEGFAULT launch: - config: @@ -333434,7 +328484,7 @@ description: Launches Segfault executable: Segfault.exe type: default -'715310': +"715310": installDir: Urban Rivals launch: - config: @@ -333449,20 +328499,20 @@ oslist: linux executable: Urban Rivals.x86 type: default -'715320': +"715320": installDir: Legend of Egypt - Pharaohs Garden launch: - config: oslist: windows executable: Legend of Egypt Pharaohs Garden_dx8sound_steam.exe type: default -'715340': {} -'715350': +"715340": {} +"715350": installDir: DeadlandVR launch: - executable: DeadlandVR.exe type: vr -'715370': +"715370": installDir: Fidget Spinner Editor launch: - config: @@ -333471,138 +328521,122 @@ type: default - config: oslist: windows - description: \"DLC\" Fidget Spinner Editor - Expansion Pack 1 + description: "\\\"DLC\\\" Fidget Spinner Editor - Expansion Pack 1" executable: Fidget Spinner Editor - Expansion Pack 1.exe type: option1 - config: oslist: windows - description: \"DLC\" Fidget Spinner Editor - Expansion Pack 2 + description: "\\\"DLC\\\" Fidget Spinner Editor - Expansion Pack 2" executable: Fidget Spinner Editor - Expansion Pack 2.exe type: option1 -'715380': +"715380": installDir: Those Who Remain launch: - arguments: 1875bvhj4yudAwhPo9r config: - osarch: '64' + osarch: "64" oslist: windows executable: ThoseWhoRemain.exe type: none nameLocalized: schinese: 残存之人 tchinese: 殘存之人 -'715400': +"715400": installDir: Frozen Flame launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Frozen Flame - description_loc: - english: Frozen Flame executable: FrozenFlame.exe type: default - - arguments: '-DevMode -NoEAC' + - arguments: "-DevMode -NoEAC" config: betakey: qa_internal - osarch: '64' + osarch: "64" oslist: windows description: DevMode executable: FrozenFlame.exe type: option1 - - arguments: '-DevMode -NoEAC' + - arguments: "-DevMode -NoEAC" config: betakey: dev_internal - osarch: '64' + osarch: "64" oslist: windows executable: FrozenFlame.exe type: option1 - - arguments: '-DevMode -NoEAC' + - arguments: "-DevMode -NoEAC" config: betakey: debug - osarch: '64' + osarch: "64" oslist: windows description: Debug - description_loc: - english: Debug executable: FrozenFlame.exe type: option1 - - arguments: '-DevMode -NoEAC -MetaServerUrl=meta.frozen-flame.xyz/staging' + - arguments: "-DevMode -NoEAC -MetaServerUrl=meta.frozen-flame.xyz/staging" config: betakey: dragons - osarch: '64' + osarch: "64" oslist: windows description: Dragons Flame - description_loc: - english: Dragons Flame executable: FrozenFlame.exe type: option1 - - arguments: '-DevMode -NoEAC' + - arguments: "-DevMode -NoEAC" config: betakey: preview - osarch: '64' + osarch: "64" oslist: windows description: Preview - description_loc: - english: Preview executable: FrozenFlame.exe type: option1 - - arguments: '-NoEAC' + - arguments: "-NoEAC" config: betakey: creators_build oslist: windows description: No AntiCheat - description_loc: - english: No AntiCheat executable: FrozenFlame.exe type: option1 - - arguments: '-NoEAC' + - arguments: "-NoEAC" config: - osarch: '64' + osarch: "64" oslist: windows description: No AntiCheat (Local Game Only) - description_loc: - english: No AntiCheat (Local Game Only) executable: FrozenFlame/Binaries/Win64/FrozenFlame-Win64-Shipping.exe type: option1 - - arguments: '-dx11' + - arguments: "-dx11" config: - osarch: '64' + osarch: "64" oslist: windows description: DirectX 11 (Default) - description_loc: - english: DirectX 11 (Default) executable: FrozenFlame.exe type: option1 - - arguments: '-dx12' + - arguments: "-dx12" config: - osarch: '64' + osarch: "64" oslist: windows description: DirectX 12 (Optimized) - description_loc: - english: DirectX 12 (Optimized) executable: FrozenFlame.exe type: option1 nameLocalized: japanese: 凍った炎 schinese: 冰封之焰 tchinese: 冰封之焰 -'715410': +"715410": installDir: Signs Of Darkness launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Signs.exe type: default -'715430': +"715430": installDir: Going Astray launch: - config: oslist: windows executable: GoingAstray.exe type: default -'715440': +"715440": installDir: Choice of the Cat launch: - config: @@ -333617,28 +328651,28 @@ oslist: linux executable: ChoiceOfTheCat type: none -'715460': +"715460": installDir: Disparity launch: - config: oslist: windows executable: Disparity.exe type: default -'715470': +"715470": installDir: Rocks and Rockets launch: - config: oslist: windows executable: rocks&rockets.exe type: default -'715490': +"715490": installDir: Above The Fallen launch: - config: oslist: windows executable: Above - The Fallen.exe type: default -'715510': +"715510": installDir: Run Zeus Run launch: - config: @@ -333647,36 +328681,36 @@ type: default - config: oslist: macos - executable: Contents\\MacOS\\Mac x64 + executable: "Contents\\\\MacOS\\\\Mac x64" type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: ZeusRunner.x86_64 type: default -'715520': +"715520": installDir: Wall Street Junior launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TheBull.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: TheBull.exe type: default -'715560': +"715560": installDir: Eastshade launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Eastshade.exe type: none -'715570': {} -'715580': +"715570": {} +"715580": installDir: Hoshizora no Memoria -Wish upon a Shooting Star- launch: - config: @@ -333691,29 +328725,29 @@ nameLocalized: japanese: 星空のメモリア-Wish upon a shooting star- schinese: 星空的记忆 -Wish upon a shooting star -'715590': {} -'715650': +"715590": {} +"715650": installDir: The Endless Journey launch: - config: oslist: windows executable: The Endless Journey.exe type: default -'715660': +"715660": installDir: FollowerSacrifice launch: - config: oslist: windows executable: FollowerSacrifice.exe type: default -'715690': +"715690": installDir: Putrefaction 2 Rumble in the hometown launch: - config: oslist: windows executable: Putrefaction 2 Rumble.exe type: default -'715710': +"715710": installDir: 5-in-1 Bundle Brain Trainings launch: - config: @@ -333726,24 +328760,24 @@ type: default - config: oslist: macos - executable: IQScale51.app\\Contents\\MacOS\\nwjs + executable: "IQScale51.app\\\\Contents\\\\MacOS\\\\nwjs" type: default -'715720': {} -'715760': +"715720": {} +"715760": installDir: DOJAGI launch: - executable: DOJAGI.exe type: vr - executable: DOJAGI.exe type: othervr -'715800': +"715800": installDir: Check Your 6! launch: - config: oslist: windows executable: autorun.exe type: none -'715810': +"715810": installDir: Amalthea launch: - config: @@ -333764,65 +328798,65 @@ description: in OpenGL mode executable: SpaceAdventure.W7.exe type: option1 -'715840': +"715840": installDir: PooSky launch: - config: oslist: windows executable: inside/PooSky.exe type: default -'715980': +"715980": installDir: Eared Hero launch: - config: oslist: windows executable: Eared Hero.exe type: none -'715990': +"715990": installDir: Maybot Run launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: Maybot Run.exe type: default - config: oslist: macos - executable: MaybotRun.app\\Contents\\MacOS\\MaybotRun + executable: "MaybotRun.app\\\\Contents\\\\MacOS\\\\MaybotRun" type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: MaybotRun.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: MaybotRun.x86_64 type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: Maybot Run.exe type: none -'716000': +"716000": installDir: SpaceDragon launch: - - arguments: '-vrmode Oculus' + - arguments: "-vrmode Oculus" config: - osarch: '64' + osarch: "64" oslist: windows description: Space Dragon executable: SpaceDragon.exe type: othervr - - arguments: '-vrmode OpenVR' + - arguments: "-vrmode OpenVR" config: - osarch: '64' + osarch: "64" oslist: windows description: Space Dragon executable: SpaceDragon.exe type: vr -'716010': +"716010": installDir: Inline launch: - config: @@ -333834,16 +328868,16 @@ executable: Inline.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Inline.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Inline.x86_64 type: default -'716030': +"716030": installDir: Oppaidius launch: - config: @@ -333856,34 +328890,34 @@ type: default - config: oslist: linux - executable: ./Oppaidius.sh + executable: "./Oppaidius.sh" type: default -'716040': +"716040": installDir: Hide and go boom launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: HideAndGoBoom.exe type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: HideAndGoBoom.sh type: default - config: oslist: macos - executable: HideAndGoBoom.app\\Contents\\MacOS\\HideAndGoBoom + executable: "HideAndGoBoom.app\\\\Contents\\\\MacOS\\\\HideAndGoBoom" type: default -'716050': +"716050": installDir: Strike Team Hydra launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Strike Team Hydra.exe type: default -'716070': +"716070": installDir: Mindsight launch: - config: @@ -333898,7 +328932,7 @@ oslist: macos executable: Mindsight.app type: none -'716090': +"716090": installDir: Cottage Garden launch: - config: @@ -333910,16 +328944,16 @@ executable: cxg.app type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: cxg.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: cxg.x86_64 type: none -'716100': +"716100": installDir: Bohnanza The Duel launch: - config: @@ -333931,50 +328965,50 @@ executable: bdd.app type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: bdd.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: bdd.x86_64 type: none -'716110': {} -'716130': +"716110": {} +"716130": installDir: Rotatorix launch: - config: oslist: windows executable: rotatorix.exe type: default -'716150': +"716150": installDir: Nakawak launch: - config: oslist: windows executable: Nakawak.exe type: default -'716190': +"716190": installDir: Animalia - The Quiz Game launch: - executable: Animalia - The Quiz Game.exe type: default -'716230': +"716230": installDir: Galactic Lords launch: - executable: Galactic Lords.exe type: none -'716240': +"716240": installDir: Pathstow Mystery VR launch: - - arguments: ' -screen-width 320 -screen-height 200' + - arguments: " -screen-width 320 -screen-height 200" config: - osarch: '64' + osarch: "64" oslist: windows executable: Pathstow.exe type: vr -'716250': +"716250": installDir: Eight Dragons launch: - config: @@ -333982,7 +329016,7 @@ executable: EightDragons.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: EightDragons.x86_64 type: default @@ -333990,41 +329024,41 @@ oslist: macos executable: EightDragons.app type: default -'716260': - installDir: Guns'n'Stories Preface VR +"716260": + installDir: "Guns'n'Stories Preface VR" launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: OMT.exe type: vr - config: - osarch: '64' + osarch: "64" oslist: windows executable: OMT.exe type: othervr -'716310': +"716310": installDir: Crazy Toad launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: Crazy Toad.exe type: default - config: - osarch: '64' + osarch: "64" oslist: macos description: Launch - executable: Crazy Toad.app\\Contents\\MacOS\\Crazy Toad + executable: "Crazy Toad.app\\\\Contents\\\\MacOS\\\\Crazy Toad" type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Crazy Toad.x86_64 type: default -'716330': +"716330": installDir: VOID launch: - config: @@ -334054,7 +329088,7 @@ oslist: linux executable: VOID.sh type: default -'716340': +"716340": installDir: Blackberry Honey launch: - config: @@ -334072,101 +329106,101 @@ description: Launch executable: Blackberry Honey.app type: none -'716350': {} -'716360': +"716350": {} +"716360": installDir: SweeperVR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SweeperVR.exe type: vr - config: - osarch: '64' + osarch: "64" oslist: macos executable: SweeperVR.app/Contents/MacOS/SweeperVR type: vr -'716370': +"716370": installDir: Flippt launch: - config: oslist: windows executable: flippt.exe type: default -'716380': +"716380": installDir: The Chemist launch: - config: - osarch: '32' + osarch: "32" oslist: windows - executable: \\Chemist\\Binaries\\Win32\\Chemist-Win32-Shipping.exe + executable: "\\\\Chemist\\\\Binaries\\\\Win32\\\\Chemist-Win32-Shipping.exe" type: default - config: - osarch: '64' + osarch: "64" oslist: windows - executable: \\Chemist\\Binaries\\Win64\\Chemist-Win64-Shipping.exe + executable: "\\\\Chemist\\\\Binaries\\\\Win64\\\\Chemist-Win64-Shipping.exe" type: none - - arguments: '-windowed' + - arguments: "-windowed" config: betakey: SafeStart - osarch: '64' + osarch: "64" oslist: windows - executable: \\Chemist\\Binaries\\Win64\\Chemist-Win64-Shipping.exe + executable: "\\\\Chemist\\\\Binaries\\\\Win64\\\\Chemist-Win64-Shipping.exe" type: none - - arguments: '-windowed' + - arguments: "-windowed" config: betakey: SafeStart - osarch: '32' + osarch: "32" oslist: windows - executable: \\Chemist\\Binaries\\Win32\\Chemist-Win32-Shipping.exe + executable: "\\\\Chemist\\\\Binaries\\\\Win32\\\\Chemist-Win32-Shipping.exe" type: none -'716390': +"716390": installDir: Athenian Acropolis launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Acropolis.exe type: vr -'716400': +"716400": installDir: RedCliffsVR launch: - config: oslist: windows executable: RedCliffsVR.exe type: vr -'716410': +"716410": installDir: Bygone Worlds Jerusalem launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: jerusalem.exe type: vr -'716420': +"716420": installDir: Roman Sacrifice launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: cordoba.exe type: vr -'716430': +"716430": installDir: The Arena of Gladiators launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Arena.exe type: vr -'716480': +"716480": installDir: Halloween Knight launch: - config: oslist: windows executable: HalloweenKnight.exe type: none -'716490': +"716490": installDir: EXAPUNKS launch: - config: @@ -334184,7 +329218,7 @@ description: Launch executable: EXAPUNKS type: default -'716500': +"716500": installDir: Eliza launch: - config: @@ -334202,34 +329236,34 @@ description: Launch executable: Eliza type: default -'716560': +"716560": installDir: Trancelation launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Trancelation.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: Igniter/TrancelationIgniter.exe type: editor workingdir: Igniter/ - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" config: - osarch: '64' + osarch: "64" oslist: windows executable: Trancelation.exe type: config -'716600': +"716600": installDir: Premier_Buggy_Racing_Tour launch: - config: oslist: windows executable: PremierBuggyRacingTour.exe type: none -'716610': +"716610": installDir: Battle for the Galaxy launch: - config: @@ -334238,7 +329272,7 @@ executable: bin/BFG.exe type: default workingdir: bin -'716630': +"716630": installDir: Battlevoid Sector Siege launch: - config: @@ -334253,7 +329287,7 @@ oslist: macos executable: sectorsiege.app type: none -'716640': +"716640": installDir: SigmaTheory launch: - config: @@ -334268,11 +329302,11 @@ oslist: linux executable: sigma.x86 type: default -'716650': +"716650": installDir: Yorkshire Gubbins launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Yorkshire Gubbins.exe type: default @@ -334281,11 +329315,11 @@ executable: Yorkshire Gubbins.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Yorkshire Gubbins type: default -'716680': +"716680": installDir: Nirvana Pilot Yume launch: - config: @@ -334297,32 +329331,32 @@ executable: NirvanaPilotYume.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: NirvanaPilotYume.x86_64 type: default -'716710': +"716710": installDir: th155 launch: - config: oslist: windows executable: th155.exe type: none -'716750': +"716750": installDir: Nemesis Realms launch: - config: oslist: windows executable: Nemesis Realms.exe type: vr -'716760': +"716760": installDir: Dream Alone launch: - config: oslist: windows executable: LauncherNNG.exe type: default -'716770': +"716770": installDir: Exorder launch: - config: @@ -334335,37 +329369,37 @@ type: default - config: oslist: macos - executable: Exorder.app\\Contents\\MacOS\\Exorder + executable: "Exorder.app\\\\Contents\\\\MacOS\\\\Exorder" type: default -'716780': {} -'716850': +"716780": {} +"716850": installDir: Jewel of WonderLand launch: - config: oslist: windows executable: Jewel of WonderLand.exe type: default -'716870': +"716870": installDir: Gravity Balls launch: - executable: Gravity Ball.exe type: none -'716890': +"716890": installDir: Liquidator launch: - config: oslist: windows executable: Liquidator.exe type: none -'716900': +"716900": installDir: El Ministerio del Tiempo VR Salva el tiempo launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SalvaElTiempo.exe type: vr -'716920': +"716920": installDir: The Ultimate Trivia Challenge launch: - config: @@ -334373,12 +329407,12 @@ executable: game.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: game.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: game.x86 type: default @@ -334386,52 +329420,52 @@ oslist: macos executable: The Ultimate Trivia Challenge.app type: default -'716940': +"716940": installDir: Grape Jelly launch: - config: oslist: windows executable: GrapeJelly.exe type: default -'716950': +"716950": installDir: DinoScourge launch: - config: oslist: windows executable: DinoScourge.exe type: default -'717000': +"717000": installDir: Skimmerz launch: - config: oslist: windows executable: SKIMMERZv2.exe type: default -'717020': +"717020": installDir: Drosoph Hotel launch: - config: oslist: windows executable: Drosoph Hotel.exe type: default -'717040': +"717040": installDir: The Flight Of Dowran launch: - executable: The Fly of Dowran.exe type: default -'717050': +"717050": installDir: Thirdmage launch: - executable: Thirdmage.exe type: default -'717060': +"717060": installDir: Konrad the Rocket launch: - config: oslist: windows executable: KonradTheRocket.exe type: default -'717070': +"717070": installDir: R-COIL launch: - config: @@ -334443,42 +329477,42 @@ executable: rcoil.app type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: rcoil.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: rcoil.x86_64 type: none -'717110': +"717110": installDir: Claire de Lune launch: - executable: Claire de Lune.exe type: default -'717120': +"717120": installDir: ACOBM launch: - config: oslist: windows - executable: ACOBM\\ACOBM.exe + executable: "ACOBM\\\\ACOBM.exe" type: default -'717170': +"717170": installDir: Mulletman and the Molemen launch: - config: oslist: windows executable: MULLETMAN.exe type: default -'717190': +"717190": installDir: Super Dungeon Master launch: - config: oslist: windows executable: go.bat type: default -'717200': +"717200": installDir: keeper_the hunter of insect launch: - config: @@ -334486,8 +329520,8 @@ oslist: windows executable: KEEPER _ The hunter of insects.exe type: default -'717230': {} -'717240': +"717230": {} +"717240": installDir: Divide & Conquer launch: - config: @@ -334497,59 +329531,59 @@ type: default - config: oslist: macos - executable: DivideConquerMac.app\\Contents\\MacOS\\DivideConquerMac + executable: "DivideConquerMac.app\\\\Contents\\\\MacOS\\\\DivideConquerMac" type: default -'717280': +"717280": installDir: Critters - cute cubs in a cruel world launch: - config: oslist: windows executable: Critters.exe type: default -'717300': +"717300": installDir: Arena launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: arena.exe type: default - config: - osarch: '64' + osarch: "64" oslist: macos executable: arena.app type: default -'717310': +"717310": installDir: Aggelos launch: - config: oslist: windows executable: AGGELOS.exe type: default -'717320': +"717320": installDir: Tales of Inca - Lost Land launch: - config: oslist: windows executable: Tales of Inca_steam.exe type: default -'717330': +"717330": installDir: Halloween Pumpkin Story launch: - - arguments: '@f+ @INFOOFF' + - arguments: "@f+ @INFOOFF" config: oslist: windows description: Full screen executable: HPS.win32_steam.exe type: option1 - - arguments: '@f1920x1080 @z0.9 @INFOOFF' + - arguments: "@f1920x1080 @z0.9 @INFOOFF" config: oslist: windows description: Windowed executable: HPS.win32_steam.exe type: option1 -'717370': {} -'717380': +"717370": {} +"717380": installDir: Yerah launch: - config: @@ -334557,23 +329591,23 @@ oslist: windows executable: Yerah.exe type: default -'717400': +"717400": installDir: Power of The Void launch: - config: oslist: windows - executable: windows_content\\POTV.exe + executable: "windows_content\\\\POTV.exe" type: default -'717440': - installDir: Hiro's Harvest Season +"717440": + installDir: "Hiro's Harvest Season" launch: - config: oslist: windows executable: HirosHarvestSeason.exe type: default -'717450': {} -'717520': {} -'717540': +"717450": {} +"717520": {} +"717540": installDir: De Mambo launch: - config: @@ -334582,19 +329616,19 @@ type: default - config: oslist: macos - executable: DeMambo.app\\Contents\\MacOS\\DeMambo + executable: "DeMambo.app\\\\Contents\\\\MacOS\\\\DeMambo" type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: DeMambo.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: DeMambo.x86_64 type: default -'717560': +"717560": installDir: Lucifer Within Us launch: - config: @@ -334603,9 +329637,9 @@ type: default - config: oslist: macos - executable: LWU_OSX.app\\Contents\\MacOS\\LWU_OSX + executable: "LWU_OSX.app\\\\Contents\\\\MacOS\\\\LWU_OSX" type: default -'717610': +"717610": installDir: A Case of Distrust launch: - config: @@ -334616,7 +329650,7 @@ oslist: macos executable: ACaseOfDistrustMac.app type: none -'717640': +"717640": installDir: Reigns Her Majesty launch: - config: @@ -334625,27 +329659,27 @@ type: default - config: oslist: macos - executable: Reigns2.app\\Contents\\MacOS\\Reigns2 + executable: "Reigns2.app\\\\Contents\\\\MacOS\\\\Reigns2" type: default - - arguments: '-screen-fullscreen 0' + - arguments: "-screen-fullscreen 0" config: oslist: linux executable: Reigns2.x86 type: default - - arguments: '-screen-fullscreen 0' + - arguments: "-screen-fullscreen 0" config: - osarch: '64' + osarch: "64" oslist: linux executable: Reigns2.x86_64 type: default -'717670': +"717670": installDir: The Occupant launch: - config: oslist: windows executable: Binaries/Win32/UDK.exe type: none -'717680': +"717680": installDir: Tubular Rift launch: - config: @@ -334657,73 +329691,73 @@ oslist: windows executable: TubularRiftVR.exe type: othervr -'717690': - installDir: OVERKILL's The Walking Dead +"717690": + installDir: "OVERKILL's The Walking Dead" launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: OTWD\\Binaries\\Win64\\OTWD-Win64-Shipping.exe + executable: "OTWD\\\\Binaries\\\\Win64\\\\OTWD-Win64-Shipping.exe" type: default - - arguments: '-SkipSaveDataUserVerification' + - arguments: "-SkipSaveDataUserVerification" config: betakey: playtest - osarch: '64' + osarch: "64" oslist: windows description: Play - executable: OTWD\\Binaries\\Win64\\OTWD.exe + executable: "OTWD\\\\Binaries\\\\Win64\\\\OTWD.exe" type: default - config: betakey: qa_builds - osarch: '64' + osarch: "64" oslist: windows description: Development - executable: OTWD\\Binaries\\Win64\\OTWD.exe + executable: "OTWD\\\\Binaries\\\\Win64\\\\OTWD.exe" type: option1 - config: betakey: qa_builds_2 - osarch: '64' + osarch: "64" oslist: windows description: Development - executable: OTWD\\Binaries\\Win64\\OTWD.exe + executable: "OTWD\\\\Binaries\\\\Win64\\\\OTWD.exe" type: option1 -'717710': +"717710": installDir: Bloom Labyrinth launch: - config: oslist: windows executable: Bloom_Labyrinth_WIN.exe type: default -'717720': +"717720": installDir: Cyberia 2 Resurrection launch: - config: oslist: windows executable: Launch Cyberia 2.bat type: default - - arguments: '-conf \"config/dosbox_cyberia2.conf\" -conf \"config/dosbox_cyberia2_single.conf\" -noconsole' + - arguments: "-conf \\\"config/dosbox_cyberia2.conf\\\" -conf \\\"config/dosbox_cyberia2_single.conf\\\" -noconsole" config: oslist: macos executable: DOSBox/dosbox.app/Contents/MacOS/DOSBox type: default - - arguments: '-conf \"config/dosbox_cyberia2.conf\" -conf \"config/dosbox_cyberia2_single.conf\" -noconsole' + - arguments: "-conf \\\"config/dosbox_cyberia2.conf\\\" -conf \\\"config/dosbox_cyberia2_single.conf\\\" -noconsole" config: oslist: linux executable: dosbox/dosbox type: default -'717760': +"717760": installDir: CatchTheThief launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: CatchTheThief.exe type: default -'717780': +"717780": installDir: Trap Labs launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: TrapLabs.exe type: none @@ -334731,27 +329765,27 @@ oslist: macos executable: TrapLabs-desktop.app type: none -'717790': +"717790": installDir: Hold Your Own launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Game.exe type: default -'717800': +"717800": installDir: 三国宏图(Great Cause Of The Three Kingdoms) launch: - executable: GreatCauseOfTheThreeKingdoms.exe type: none -'717820': +"717820": installDir: Boom Island launch: - config: oslist: windows executable: Boom Island.exe type: default -'717830': +"717830": installDir: Waiting for the Loop launch: - config: @@ -334764,20 +329798,20 @@ description: Launch Configuration Tool executable: winsetup.exe type: config -'717840': +"717840": installDir: Viral launch: - config: oslist: windows - executable: exe\\Viral.exe + executable: "exe\\\\Viral.exe" type: default - workingdir: exe\\ + workingdir: "exe\\\\" - config: oslist: macos executable: Viral.app type: default -'717850': - installDir: Sable's Grimoire +"717850": + installDir: "Sable's Grimoire" launch: - config: oslist: windows @@ -334792,33 +329826,33 @@ executable: SablesGrimoire.app type: default - config: - ownsdlc: '941900' + ownsdlc: "941900" description: Soundtrack executable: OpenDirectory.py type: none -'717910': +"717910": installDir: Bubble Rush launch: - config: oslist: windows executable: BubbleRushWinx86.exe type: default -'717930': {} -'717940': +"717930": {} +"717940": installDir: WIL launch: - config: oslist: windows executable: WIL.exe type: default -'717950': +"717950": installDir: Rainbow_Snake launch: - description: classic mode executable: Rainbow_Snake.exe type: default workingdir: Rainbow_Snake_Data -'717960': +"717960": installDir: SoTo launch: - config: @@ -334826,22 +329860,22 @@ oslist: windows executable: SoTo.exe type: none -'717980': +"717980": installDir: fuyulu launch: - config: oslist: windows executable: game.exe type: default -'717990': +"717990": installDir: Bloodworks launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: bloodworks.exe type: default -'718010': +"718010": installDir: Robbie Swifthand and the Orb of Mysteries launch: - config: @@ -334852,7 +329886,7 @@ oslist: macos executable: Robbie Swifthand and the Orb of Mysteries.app type: default -'718020': +"718020": installDir: GRAL launch: - config: @@ -334865,16 +329899,16 @@ type: default - config: oslist: macos - executable: Contents\\MacOS\\GRAL_MAC + executable: "Contents\\\\MacOS\\\\GRAL_MAC" type: default -'718030': +"718030": installDir: Kyklos Code launch: - config: oslist: windows executable: kykloscode.exe type: default -'718040': +"718040": installDir: Super Arcade Boy in Defender of Planet Earth launch: - config: @@ -334882,12 +329916,12 @@ executable: game.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: game.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: game.x86 type: default @@ -334895,15 +329929,15 @@ oslist: macos executable: Super Arcade Boy in Defender of Planet Earth.app type: default -'718050': {} -'718070': +"718050": {} +"718070": installDir: AgeOfDarkness launch: - config: oslist: windows executable: AgeOfDarkness.exe type: none -'718080': +"718080": installDir: Artifact Quest 2 launch: - config: @@ -334912,11 +329946,11 @@ type: default - config: oslist: macos - executable: Artifact Quest 2.app\\Contents\\MacOS\\Artifact Quest 2 + executable: "Artifact Quest 2.app\\\\Contents\\\\MacOS\\\\Artifact Quest 2" type: default nameLocalized: brazilian: Artifact Quest 2 - Combinar 3 - dutch: 'Artifact Quest 2: 3-op-een-rij' + dutch: "Artifact Quest 2: 3-op-een-rij" french: Artifact Quest 2 - Jeu de Match 3 german: Artifact Quest 2 - 3 Gewinnt Spiel italian: Artifact Quest 2 – Abbina 3 @@ -334925,8 +329959,8 @@ russian: Artifact Quest 2 - три в ряд spanish: Artifact Quest 2 - Combina 3 ukrainian: Artifact Quest 2 - три в ряд -'718090': {} -'718120': +"718090": {} +"718120": installDir: Jack B. Nimble launch: - config: @@ -334935,16 +329969,16 @@ type: default - config: oslist: macos - executable: jackb.nimble.app\\Contents\\MacOS\\nwjs + executable: "jackb.nimble.app\\\\Contents\\\\MacOS\\\\nwjs" type: default -'718140': +"718140": installDir: Domino Dungeon launch: - config: oslist: windows executable: domino.exe type: none -'718180': +"718180": installDir: Super Dungeon Boy launch: - config: @@ -334957,9 +329991,9 @@ type: default - config: oslist: macos - executable: superDungeonBoy.app\\Contents\\MacOS\\superDungeonBoy + executable: "superDungeonBoy.app\\\\Contents\\\\MacOS\\\\superDungeonBoy" type: none -'718200': +"718200": installDir: Forever Home launch: - config: @@ -334968,9 +330002,9 @@ type: none - config: oslist: macos - executable: Forever Home.app\\Contents\\MacOS\\startwine + executable: "Forever Home.app\\\\Contents\\\\MacOS\\\\startwine" type: none -'718210': +"718210": installDir: Depopulation launch: - config: @@ -334978,14 +330012,14 @@ description: Launch executable: Depopulation.exe type: default -'718220': +"718220": installDir: NeoBoom2 launch: - config: oslist: windows executable: NeoBoom2.exe type: default -'718240': +"718240": installDir: Solar Collector launch: - config: @@ -334996,7 +330030,7 @@ oslist: macos executable: SolarCollector-mac.app/Contents/MacOS/SolarCollector-mac type: default -'718250': +"718250": installDir: Nova Flow launch: - config: @@ -335007,37 +330041,37 @@ oslist: linux executable: run_novaflow.sh type: default -'718270': +"718270": installDir: ZombieThon launch: - config: oslist: windows executable: ZombieThon.exe type: default -'718310': +"718310": installDir: Diaspora Mass Exodus launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: MassExodus.exe type: default -'718320': +"718320": installDir: FLX launch: - config: oslist: windows - executable: win32\\FXL.exe + executable: "win32\\\\FXL.exe" type: none - config: oslist: linux - executable: linux32\\FXL + executable: "linux32\\\\FXL" type: none - config: oslist: macos - executable: osx64\\foxyland.app\\Contents\\MacOS\\nwjs + executable: "osx64\\\\foxyland.app\\\\Contents\\\\MacOS\\\\nwjs" type: none -'718330': +"718330": installDir: Cubic launch: - config: @@ -335052,80 +330086,80 @@ oslist: macos executable: Cubic.app type: none -'718350': +"718350": installDir: Loot Collection Mahjong launch: - config: oslist: windows executable: Loot Collection Mahjong.exe type: default -'718360': {} -'718370': +"718360": {} +"718370": installDir: LSD launch: - executable: LSD.exe type: none -'718380': +"718380": installDir: Holopoint_Chronicle launch: - executable: Holopoint_Chronicle.exe type: vr -'718410': +"718410": installDir: AWS Wingshooting Simulator launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: aws.exe type: default - config: oslist: macos - executable: aws.app\\Contents\\MacOS\\aws + executable: "aws.app\\\\Contents\\\\MacOS\\\\aws" type: default -'718470': +"718470": installDir: Rockland VR launch: - config: oslist: windows executable: RockLand.exe type: vr -'718490': +"718490": installDir: LOGistICAL Japan launch: - config: oslist: windows executable: LogisticalApp.exe type: none -'718500': +"718500": installDir: Derpy Dinos launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: DerpyDinos.exe type: default -'718530': +"718530": installDir: The Survival Test VR Defend To Death launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TSTVRDTD.exe type: vr - config: - osarch: '64' + osarch: "64" oslist: windows executable: TSTVRLAN.exe type: vr -'718540': +"718540": installDir: Exorcism Case Zero launch: - config: oslist: windows executable: game.exe type: default -'718550': {} -'718560': +"718550": {} +"718560": installDir: Scythe Digital Edition launch: - config: @@ -335136,28 +330170,28 @@ oslist: macos executable: Scythe.app type: default - - arguments: '-force-glcore' + - arguments: "-force-glcore" config: oslist: macos description: Scythe (OpenGL) executable: Scythe.app type: option1 - - arguments: '-force-glcore' + - arguments: "-force-glcore" config: oslist: windows description: Scythe (OpenGL) executable: Scythe.exe type: option1 -'718580': {} -'718590': +"718580": {} +"718590": installDir: Dark Devotion launch: - config: oslist: windows executable: DarkDevotion.exe type: default -'718640': {} -'718650': +"718640": {} +"718650": installDir: Driftland The Magic Revival launch: - config: @@ -335180,14 +330214,14 @@ description: Disable Steam Cloud (in case of troubles) executable: Driftland.app type: none -'718660': +"718660": installDir: MagicMatchstick launch: - config: oslist: windows executable: game.exe type: none -'718670': +"718670": installDir: Cultist Simulator launch: - config: @@ -335196,32 +330230,32 @@ type: default - config: oslist: macos - executable: OSX.app\\Contents\\MacOS\\Cultist Simulator + executable: "OSX.app\\\\Contents\\\\MacOS\\\\Cultist Simulator" type: default - config: oslist: linux executable: CS.x86_64 type: default -'718680': +"718680": installDir: Left&Right launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: nw.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: nw.exe type: default -'718710': +"718710": installDir: Command Modern Air Naval Operations launch: - description: Launch - executable: GameMenu_CSS\\autorun.exe + executable: "GameMenu_CSS\\\\autorun.exe" type: default -'718720': +"718720": installDir: DEATHPIT 3000 launch: - config: @@ -335230,13 +330264,13 @@ type: default - config: oslist: macos - executable: Contents\\MacOS\\dp3k + executable: "Contents\\\\MacOS\\\\dp3k" type: default - config: oslist: linux executable: dp3k.x86_64 type: default -'718730': +"718730": installDir: One Strike launch: - config: @@ -335247,7 +330281,7 @@ oslist: macos executable: OneStrike.app type: default -'718740': +"718740": installDir: Chop Chop Princess launch: - config: @@ -335258,116 +330292,114 @@ oslist: macos executable: Olympic.app type: default -'718760': {} -'718770': {} -'718790': +"718760": {} +"718770": {} +"718790": installDir: Warmonger Chronicles launch: - - arguments: '-steam' + - arguments: "-steam" executable: Launcher.exe type: none -'718810': +"718810": installDir: Teleporter launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TeleporterVR.exe type: vr -'718830': +"718830": installDir: Unrested Development launch: - config: oslist: windows executable: Unrested Development.exe type: none -'718840': +"718840": installDir: DiamondFalls launch: - config: oslist: windows executable: DiamondFalls.exe type: default -'718850': +"718850": installDir: Age of Wonders Planetfall launch: - config: - osarch: '64' + osarch: "64" oslist: windows - description: 'Launch Age of Wonders: Planetfall' + description: "Launch Age of Wonders: Planetfall" executable: dowser.exe type: default - config: oslist: macos - description: 'Launch Age of Wonders: Planetfall' + description: "Launch Age of Wonders: Planetfall" executable: dowser type: default - config: betakey: steam_deck oslist: windows description: Steam Deck - description_loc: - english: Steam Deck executable: AowPF.exe type: option1 -'718910': +"718910": installDir: Vitamin Girl launch: - config: oslist: windows executable: VitaminGirl.exe type: default -'718920': +"718920": installDir: Dead Noir the Heart launch: - config: oslist: windows executable: DeadNoir.exe type: default -'718940': +"718940": installDir: preywithgun launch: - config: oslist: windows executable: preywithgun.exe type: none -'718960': +"718960": installDir: TheFleshGod launch: - config: oslist: windows executable: TheFleshGod.exe type: default -'718970': +"718970": installDir: Gone Astray launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: GoneAstray.exe type: none -'718980': +"718980": installDir: Grey Zone launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: GreyZone.exe type: none -'718990': +"718990": installDir: Drone Infiltrator launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: DroneInf.exe type: vr -'719030': {} -'719040': +"719030": {} +"719040": installDir: Wasteland 3 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: WL3.exe type: none @@ -335379,12 +330411,12 @@ oslist: linux executable: Wasteland 3.x86_64 type: none -'719070': +"719070": installDir: BlowOut launch: - executable: Blowout.exe type: default -'719080': +"719080": installDir: Fart Simulator 2018 launch: - config: @@ -335396,22 +330428,22 @@ executable: FS2018_MacOs2.app type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: FartSimulator2018.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: FartSimulator2018.x86_64 type: none -'719090': {} -'719100': +"719090": {} +"719100": installDir: Space Way launch: - executable: Space Way.exe type: none -'719110': +"719110": installDir: Imperil launch: - config: @@ -335420,23 +330452,23 @@ type: default - config: oslist: macos - executable: Imperil.app\\contents\\MacOS\\nwjs + executable: "Imperil.app\\\\contents\\\\MacOS\\\\nwjs" type: default -'719120': - installDir: O'Fox life +"719120": + installDir: "O'Fox life" launch: - config: oslist: windows executable: ofoxlife.exe type: none -'719130': +"719130": installDir: OVO Smash launch: - config: oslist: windows executable: OVO Smash.exe type: default -'719140': +"719140": installDir: Entanglement launch: - config: @@ -335445,32 +330477,30 @@ type: default - config: oslist: macos - executable: Entanglement.app\\Contents\\MacOS\\nwjs + executable: "Entanglement.app\\\\Contents\\\\MacOS\\\\nwjs" type: default - config: oslist: linux executable: Entanglement type: default -'719160': {} -'719180': +"719160": {} +"719180": installDir: Revulsion launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Revulsion.exe type: none -'719200': +"719200": installDir: The Wall launch: - config: oslist: windows description: The Wall | Windows Build - description_loc: - english: The Wall | Windows Build executable: The Wall.exe type: default -'719210': +"719210": installDir: Supposedly Wonderful Future launch: - config: @@ -335483,29 +330513,29 @@ type: default - config: oslist: macos - executable: SupposedlyWonderfulFuture.app\\Contents\\MacOS\\SupposedlyWonderfulFuture + executable: "SupposedlyWonderfulFuture.app\\\\Contents\\\\MacOS\\\\SupposedlyWonderfulFuture" type: default -'719220': +"719220": installDir: Romans From Mars launch: - executable: RomansFromMars.exe type: default -'719240': +"719240": installDir: Romans From Mars VR launch: - executable: RomansVR.exe type: default - executable: RomansVR.exe type: vr -'719250': +"719250": installDir: Cove Point Fun Center VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: CovePointFunCenterVR.exe type: vr -'719280': +"719280": installDir: Bullseye launch: - config: @@ -335516,98 +330546,98 @@ oslist: windows executable: Bullseye.exe type: default -'719290': +"719290": installDir: Prophecy I - The Viking Child launch: - - arguments: '-conf ../Conf/viking.cfg -noconsole' + - arguments: "-conf ../Conf/viking.cfg -noconsole" config: oslist: windows executable: dosbox.exe type: none workingdir: DOS - - arguments: '-conf ../Conf/viking.cfg -noconsole' + - arguments: "-conf ../Conf/viking.cfg -noconsole" config: oslist: linux executable: dosbox type: none workingdir: DOS - - arguments: '-conf ../Conf/viking.cfg -noconsole' + - arguments: "-conf ../Conf/viking.cfg -noconsole" config: oslist: macos executable: DOSBox.app/Contents/MacOS/DOSBox type: none workingdir: DOS -'719300': +"719300": installDir: Daemonsgate launch: - - arguments: '-conf ../Conf/daemonsgate.cfg -noconsole' + - arguments: "-conf ../Conf/daemonsgate.cfg -noconsole" config: oslist: windows executable: dosbox.exe type: none workingdir: DOS - - arguments: '-conf ../Conf/daemonsgate.cfg -noconsole' + - arguments: "-conf ../Conf/daemonsgate.cfg -noconsole" config: oslist: linux executable: dosbox type: none workingdir: DOS - - arguments: '-conf ../Conf/daemonsgate.cfg -noconsole' + - arguments: "-conf ../Conf/daemonsgate.cfg -noconsole" config: oslist: macos executable: DOSBox.app/Contents/MacOS/DOSBox type: none workingdir: DOS -'719310': - installDir: King's Table - The Legend of Ragnarok +"719310": + installDir: "King's Table - The Legend of Ragnarok" launch: - - arguments: '-conf ../Conf/kingstable.cfg -noconsole' + - arguments: "-conf ../Conf/kingstable.cfg -noconsole" config: oslist: windows executable: dosbox.exe type: none workingdir: DOS - - arguments: '-conf ../Conf/kingstable.cfg -noconsole' + - arguments: "-conf ../Conf/kingstable.cfg -noconsole" config: oslist: linux executable: dosbox type: none workingdir: DOS - - arguments: '-conf ../Conf/kingstable.cfg -noconsole' + - arguments: "-conf ../Conf/kingstable.cfg -noconsole" config: oslist: macos executable: DOSBox.app/Contents/MacOS/DOSBox type: none workingdir: DOS -'719320': +"719320": installDir: The Humans Collection Bundle launch: - - arguments: '-conf humans1.conf' + - arguments: "-conf humans1.conf" config: oslist: windows description: The Humans executable: dosbox.exe type: option1 - - arguments: '-conf humans2.conf ' + - arguments: "-conf humans2.conf " config: oslist: windows description: The Humans 2 executable: dosbox.exe type: option2 - - arguments: '-conf humans3.conf ' + - arguments: "-conf humans3.conf " config: oslist: windows description: The Humans 3 executable: dosbox.exe type: option3 -'719340': +"719340": installDir: ReturnState launch: - config: oslist: windows executable: ReturnState.exe type: default -'719350': +"719350": installDir: Orbits launch: - config: @@ -335616,29 +330646,29 @@ type: default - config: oslist: macos - executable: Orbits.app\\Contents\\MacOS\\Orbits + executable: "Orbits.app\\\\Contents\\\\MacOS\\\\Orbits" type: default - config: oslist: linux executable: Orbits.x86 type: default -'719370': +"719370": installDir: ELE BLAZE launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: ELEBLAZE executable: ELEBLAZE.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows description: MultiPlayer Beta executable: Magical Nova - Meteor Sparkle.exe type: none -'719380': {} -'719400': +"719380": {} +"719400": installDir: EVENING CHAOS launch: - arguments: EveningChaos.exe @@ -335646,45 +330676,45 @@ oslist: windows executable: EveningChaos.exe type: default -'719410': +"719410": installDir: Magical Squash launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Magical Squash.exe type: vr -'719430': +"719430": installDir: Taima Miko Yuugi launch: - config: oslist: windows executable: Game.exe type: none -'719460': {} -'719470': +"719460": {} +"719470": installDir: Demon&Fairy launch: - config: oslist: windows executable: Demon&Fairy_v1.01.exe type: none -'719520': +"719520": installDir: Spectro launch: - config: oslist: windows executable: Spectro.exe type: vr -'719540': +"719540": installDir: VRDMB launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: BaseballVR.exe type: vr -'719550': +"719550": installDir: Puzzler launch: - config: @@ -335692,12 +330722,12 @@ executable: Puzzler.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Puzzler.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Puzzler.x86 type: default @@ -335705,27 +330735,27 @@ oslist: macos executable: Puzzler.app/Contents/MacOS/Puzzler type: default -'719590': +"719590": installDir: Mesozoica launch: - config: oslist: windows executable: Mesozoica.exe type: default -'719600': +"719600": installDir: tsvr launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: tsvr.exe type: vr -'719610': +"719610": installDir: Free Bowling 3D launch: - executable: Free Bowling 3D.exe type: none -'719630': +"719630": installDir: Malkyrs launch: - config: @@ -335736,12 +330766,12 @@ oslist: macos executable: AoE.app type: none -'719640': +"719640": installDir: War Planet Online launch: - executable: WarPlanetOnline.exe type: none -'719660': +"719660": installDir: Monster Garden launch: - config: @@ -335752,26 +330782,26 @@ oslist: windows executable: Monster Garden.exe type: default -'719720': +"719720": installDir: League of Pirates launch: - executable: LeagueOfPirates.exe type: none -'719730': +"719730": installDir: Uptasia launch: - config: oslist: windows executable: UptasiaApp.exe type: default -'719740': +"719740": installDir: Pi launch: - config: oslist: windows executable: Pi.exe type: default -'719750': +"719750": installDir: PUSS! launch: - config: @@ -335780,19 +330810,19 @@ type: default - config: oslist: macos - executable: PUSS!.app\\Contents\\MacOS\\PUSS! + executable: "PUSS!.app\\\\Contents\\\\MacOS\\\\PUSS!" type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: PUSS!.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: PUSS!.x86_64 type: default -'719800': +"719800": installDir: Last Encounter launch: - config: @@ -335803,7 +330833,7 @@ oslist: macos executable: LastEncounter.app/Contents/MacOS/LastEncounter type: default -'719820': +"719820": installDir: THE LONE ISLAND SURVIVAL launch: - config: @@ -335814,45 +330844,45 @@ oslist: macos executable: THE LONE ISLAND SURVIVAL.app type: none -'719830': +"719830": installDir: DesertCraft launch: - config: - osarch: '64' + osarch: "64" oslist: windows - description: '0' + description: "0" executable: DesertCraft.exe type: default -'719840': +"719840": installDir: Mad Gardener Zombie Massacre launch: - config: oslist: windows executable: MadGardener3.exe type: none -'719890': +"719890": installDir: BeastsOfBermuda launch: - - arguments: '-NoVerifyGC' + - arguments: "-NoVerifyGC" config: - osarch: '64' + osarch: "64" oslist: windows executable: BeastsOfBermuda.exe type: default -'719970': +"719970": installDir: Soccer Simulation launch: - config: oslist: windows executable: Soccer Simulation.exe type: none -'7200': +"7200": installDir: TrackMania United launch: - executable: TmForever.exe - description: TrackMania United Forever Settings executable: TmForeverLauncher.exe -'72000': +"72000": installDir: Closure launch: - config: @@ -335865,8 +330895,8 @@ - config: oslist: linux executable: run_steam.sh -'720000': - installDir: Don't Panic! +"720000": + installDir: "Don't Panic!" launch: - config: oslist: windows @@ -335876,28 +330906,28 @@ oslist: linux executable: nw type: none -'720020': +"720020": installDir: Pilli Adventure launch: - config: oslist: windows executable: pilli adv game 34.exe type: default -'720030': +"720030": installDir: Indecision launch: - config: oslist: windows executable: Indecision.exe type: default -'720040': +"720040": installDir: Valknut launch: - config: oslist: windows executable: Valknut.exe type: none -'720060': +"720060": installDir: Colony launch: - config: @@ -335912,32 +330942,30 @@ oslist: macos executable: ColonyGameStart.sh type: default -'720090': +"720090": installDir: Spellslingers launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch Landscape - description_loc: - english: Launch Landscape executable: spellslingers.exe type: default -'720150': +"720150": installDir: Shikhondo launch: - config: oslist: windows executable: Shikhondo.exe type: none -'720160': +"720160": installDir: Get To Amkonius launch: - config: oslist: windows executable: AmkoniusSRE.exe type: default -'720200': +"720200": installDir: Vinewing launch: - config: @@ -335948,13 +330976,13 @@ oslist: windows executable: vinewing_pc.exe type: none -'720230': {} -'720240': +"720230": {} +"720240": installDir: Legend of Fainn Dynasty ~Battles of Beautiful Warlords~ launch: - executable: faininbuden.exe type: none -'720250': +"720250": installDir: Welcome to the Game II launch: - config: @@ -335965,20 +330993,20 @@ oslist: macos executable: WTTG2.app type: default -'720270': +"720270": installDir: Defense Task Force launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: DefenseTaskForce.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: DefenseTaskForce.exe type: default -'720280': +"720280": installDir: FoxHime launch: - config: @@ -335989,45 +331017,45 @@ oslist: macos executable: FoxHime.app/Contents/MacOS/FoxHime type: none -'720290': +"720290": installDir: Reaching for Petals VR Edition launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SmartFPController.exe type: vr -'720300': +"720300": installDir: Toran launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Toran.exe type: vr -'720310': +"720310": installDir: Armed Warrior VR launch: - config: oslist: windows executable: ArmedWVR.exe type: vr -'720320': {} -'720350': +"720320": {} +"720350": installDir: Mundaun launch: - config: oslist: windows executable: Mundaun.exe type: default -'720470': +"720470": installDir: Caveman Alive launch: - config: oslist: windows executable: Caveman Alive.exe type: none -'720480': +"720480": installDir: Flappy Galaxy launch: - config: @@ -336037,27 +331065,27 @@ type: option1 - config: oslist: windows - ownsdlc: '722310' - description: 'Flappy Galaxy : Master Level' + ownsdlc: "722310" + description: "Flappy Galaxy : Master Level" executable: win32/Flappy Galaxy - Master Level.exe type: option2 -'720490': {} -'720510': +"720490": {} +"720510": installDir: Tactical AR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TacticalAR.exe type: vr -'720540': +"720540": installDir: TRIPLE TWENTY - VR Darts launch: - config: oslist: windows executable: Darts.exe type: vr -'720560': +"720560": installDir: Vigil The Longest Night launch: - config: @@ -336066,7 +331094,7 @@ type: default - config: oslist: macos - executable: Contents\\MacOS\\VigilNight + executable: "Contents\\\\MacOS\\\\VigilNight" type: default - config: oslist: linux @@ -336074,29 +331102,29 @@ type: default nameLocalized: schinese: 守夜人:长夜 -'720600': +"720600": installDir: Halloween Jigsaw Puzzles launch: - config: oslist: windows executable: HalloweenJigsaw.exe type: none -'720620': +"720620": installDir: TaleSpire launch: - config: oslist: windows executable: TaleSpire.exe type: default -'720630': {} -'720640': +"720630": {} +"720640": installDir: La Aventura De Axel launch: - config: oslist: windows executable: La aventura de axel.exe type: default -'720660': +"720660": installDir: Overloop launch: - config: @@ -336105,14 +331133,14 @@ type: default nameLocalized: schinese: 克隆危机 (Overloop) -'720670': +"720670": installDir: CatsMakeYouSmarter launch: - config: oslist: windows executable: catsmakeyousmarter.exe type: default -'720730': +"720730": installDir: Without Escape launch: - config: @@ -336120,12 +331148,12 @@ executable: WithoutEscape.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: WithoutEscape.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: WithoutEscape.x86_64 type: default @@ -336133,8 +331161,8 @@ oslist: macos executable: WithoutEscape.app type: default -'720840': {} -'720850': +"720840": {} +"720850": installDir: Blasteron launch: - config: @@ -336142,76 +331170,76 @@ executable: Blasteron.exe type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: blasteron type: none -'720940': +"720940": installDir: Horns of Fear launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows executable: game.exe type: default -'720950': +"720950": installDir: EGEDistantPlanetNonXXX launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: EGE_DistantPlanet_2v_Vive_nonXXX.exe type: vr -'7210': +"7210": installDir: Runaway A Road Adventure launch: - executable: Runaway.exe - description: Video Card Setup executable: Video Card Setup.exe -'721000': {} -'721010': +"721000": {} +"721010": installDir: Newton and the Apple Tree launch: - executable: Newton and the Apple Tree.exe type: default -'721030': +"721030": installDir: LaTale launch: - config: oslist: windows executable: LaTaleLauncher.exe type: default -'721080': +"721080": installDir: Bounce Ball launch: - config: oslist: windows executable: BounceBall.exe type: none -'721180': {} -'721190': {} -'721300': +"721180": {} +"721190": {} +"721300": installDir: American Angst launch: - config: oslist: windows executable: americanangst.exe type: default -'721350': +"721350": installDir: WAMF launch: - config: oslist: windows executable: Where Are My Friends.exe type: default -'721380': +"721380": installDir: LOGistICAL USA - New York launch: - config: oslist: windows executable: LogisticalApp.exe type: none -'721390': +"721390": installDir: Pipe Push Paradise launch: - config: @@ -336226,22 +331254,22 @@ oslist: linux executable: pipepushparadise.x86_64 type: default -'721400': +"721400": installDir: Hot Runback - VR Runner launch: - config: oslist: windows executable: RunnerVR.exe type: vr -'721420': +"721420": installDir: FIGHTING BOX launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: game.exe type: default -'721430': +"721430": installDir: My Coloring Book Animals launch: - config: @@ -336254,36 +331282,36 @@ type: none - config: oslist: macos - executable: My Coloring Book - Animals.app\\Contents\\MacOS\\My Coloring Book - Animals + executable: "My Coloring Book - Animals.app\\\\Contents\\\\MacOS\\\\My Coloring Book - Animals" type: none -'721440': {} -'721460': {} -'721470': +"721440": {} +"721460": {} +"721470": installDir: Snake Treasure Chest launch: - config: oslist: windows executable: SnakeTC.exe type: none -'721480': +"721480": installDir: VR Hockey League launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: VRHL.exe type: vr -'721510': +"721510": installDir: Renters Revenge launch: - config: oslist: windows executable: RentersRevenge.exe type: vr -'721540': +"721540": installDir: CursedIsles launch: - - arguments: '-vr' + - arguments: "-vr" config: oslist: windows executable: CursedIsles.exe @@ -336292,8 +331320,8 @@ oslist: windows executable: CursedIsles.exe type: default -'721550': {} -'721670': +"721550": {} +"721670": installDir: Frontiers.io launch: - config: @@ -336302,48 +331330,48 @@ type: default - config: oslist: windows - description: '''''DLC\" Expansion Pack 1' + description: "''DLC\\\" Expansion Pack 1" executable: Frontiers.io - Expansion Pack 1.exe type: option1 - config: oslist: windows - description: '''''DLC\" Expansion Pack 2' + description: "''DLC\\\" Expansion Pack 2" executable: Frontiers.io - Expansion Pack 2.exe type: option1 - config: oslist: windows - description: '''''DLC\" Expansion Pack 3' + description: "''DLC\\\" Expansion Pack 3" executable: Frontiers.io - Expansion Pack 3.exe type: option1 - config: oslist: windows - description: '''''DLC\" Expansion Pack 4' + description: "''DLC\\\" Expansion Pack 4" executable: Frontiers.io - Expansion Pack 4.exe type: option1 - config: oslist: windows - description: '''''DLC\" Expansion Pack 5' + description: "''DLC\\\" Expansion Pack 5" executable: Frontiers.io - Expansion Pack 5.exe type: option1 - config: oslist: windows - description: '''''DLC\" Expansion Pack 6' + description: "''DLC\\\" Expansion Pack 6" executable: Frontiers.io - Expansion Pack 6.exe type: option1 -'721700': +"721700": installDir: Holomento launch: - - arguments: '-windowed' + - arguments: "-windowed" config: oslist: windows executable: Holomento.exe type: default -'721740': +"721740": installDir: Sea Of Fatness launch: - config: oslist: windows - description: 'Fat, Fun and Dystopia' + description: "Fat, Fun and Dystopia" executable: sea of fatness.exe type: default - config: @@ -336351,17 +331379,17 @@ executable: sea of fatness.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: sea of fatness.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: sea of fatness.x86_64 type: default -'721760': - installDir: 'Highlands, Deep Waters' +"721760": + installDir: "Highlands, Deep Waters" launch: - config: oslist: windows @@ -336375,22 +331403,22 @@ oslist: linux executable: HighlandsDeepWaters type: none -'721850': +"721850": installDir: Wanna Run Again - Sprite Girl launch: - config: oslist: windows executable: WannaRAgain.exe type: none -'721890': +"721890": installDir: zhandou launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ZhanDou.exe type: vr -'721940': +"721940": installDir: Daily Run launch: - config: @@ -336398,78 +331426,78 @@ description: Daily Run executable: Daily Run.exe type: none -'721950': +"721950": installDir: Last Toon Standing launch: - config: oslist: windows executable: ltsa3p0.exe type: default -'721960': +"721960": installDir: Deathmatch Soccer launch: - config: oslist: windows executable: DeathmatchSoccer.exe type: default -'721970': {} -'721990': +"721970": {} +"721990": installDir: Dead Spawn launch: - config: oslist: windows executable: Dead Spawn.exe type: default -'7220': +"7220": installDir: Runaway The Dream of the Turtle launch: - executable: RunawayTDOTT.exe - description: Video Card Setup executable: Video Card Setup.exe -'72200': +"72200": installDir: Universe Sandbox launch: - executable: Universe Sandbox.exe -'722010': +"722010": installDir: Basement launch: - config: - osarch: '32' + osarch: "32" oslist: windows - executable: English\\x32\\WindowsNoEditor\\StreamSurvival2.exe + executable: "English\\\\x32\\\\WindowsNoEditor\\\\StreamSurvival2.exe" type: default - config: - osarch: '64' + osarch: "64" oslist: windows - executable: English\\x64\\WindowsNoEditor\\StreamSurvival2.exe + executable: "English\\\\x64\\\\WindowsNoEditor\\\\StreamSurvival2.exe" type: default -'722020': +"722020": installDir: Bitcoin Collector Spinners Attack launch: - config: oslist: windows executable: Bitcoin Collector Spinners Attack.exe type: default -'722040': +"722040": installDir: Cargo Breach launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Cargo Breach.exe type: vr -'722050': +"722050": installDir: Dean Daimon launch: - config: oslist: windows executable: win32/DeanDaimon.exe type: default -'722060': +"722060": installDir: Dominions5 launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: Dominions5.exe type: none @@ -336482,25 +331510,25 @@ executable: dom5_mac type: none - config: - osarch: '64' + osarch: "64" oslist: windows - executable: win64\\Dominions5.exe + executable: "win64\\\\Dominions5.exe" type: none workingdir: win64 -'722070': +"722070": installDir: Hyperide VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Hyperide VR.exe type: vr - config: - osarch: '64' + osarch: "64" oslist: windows executable: Hyperide VR.exe type: othervr -'722080': +"722080": installDir: Blue Snake Adventures launch: - config: @@ -336510,90 +331538,86 @@ type: option1 - config: oslist: windows - ownsdlc: '722090' - description: 'Blue Snake Adventures : Master Level' + ownsdlc: "722090" + description: "Blue Snake Adventures : Master Level" executable: win32/Blue Snake Adventures - Master Level.exe type: option2 -'722180': +"722180": installDir: SURV1V3 launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: game - description_loc: - english: game executable: Survive.exe type: vr - - arguments: '-RenderOffScreen' + - arguments: "-RenderOffScreen" config: - osarch: '64' + osarch: "64" oslist: windows description: game without desktop window (best performance) - description_loc: - english: game without desktop window (best performance) executable: Survive.exe type: vr -'722190': +"722190": installDir: EEP14 launch: - config: oslist: windows executable: EEP14.exe type: none -'722200': +"722200": installDir: EEP TSM Gotthard launch: - config: oslist: windows executable: EEPTSMp.exe type: none -'722210': +"722210": installDir: Smart Cube launch: - config: oslist: windows - executable: SmartCube\\Binaries\\Win64\\SmartCube-Win64-Shipping.exe + executable: "SmartCube\\\\Binaries\\\\Win64\\\\SmartCube-Win64-Shipping.exe" type: none -'722220': {} -'722230': +"722220": {} +"722230": installDir: L.A. Noire VR launch: - - arguments: '--openvr --openvrcontrollers --parentIsLauncher --disableplayerdestinationcamerazones --windowed' - description: 'L.A Noire: The VR Case Files' + - arguments: "--openvr --openvrcontrollers --parentIsLauncher --disableplayerdestinationcamerazones --windowed" + description: "L.A Noire: The VR Case Files" executable: PlayLANVR.exe type: vr -'722240': {} -'722250': +"722240": {} +"722250": installDir: Feeding The Monster launch: - config: oslist: windows - executable: Windows\\Feeding The Monster.exe + executable: "Windows\\\\Feeding The Monster.exe" type: none - config: oslist: linux - executable: Linux\\Feeding The Monster.x86 + executable: "Linux\\\\Feeding The Monster.x86" type: none - config: oslist: macos - executable: MacOS\\Feeding The Monster.app\\Contents\\MacOS\\Feeding The Monster + executable: "MacOS\\\\Feeding The Monster.app\\\\Contents\\\\MacOS\\\\Feeding The Monster" type: none -'722290': +"722290": installDir: HikeJam launch: - config: oslist: windows executable: HikeJam.exe type: default -'722330': - installDir: The Painter's Playground +"722330": + installDir: "The Painter's Playground" launch: - config: oslist: windows - executable: The Painter's Playground.exe + executable: "The Painter's Playground.exe" type: default -'722340': +"722340": installDir: Captain vs Sky Pirates launch: - config: @@ -336602,30 +331626,30 @@ type: default - config: oslist: windows - description: '''''DLC'''' Evil Village' + description: "''DLC'' Evil Village" executable: Captain vs Sky Pirates - Evil Village.exe type: option1 - config: oslist: windows - description: '''''DLC'''' Pyramids' + description: "''DLC'' Pyramids" executable: Captain vs Sky Pirates - Pyramids.exe type: option1 - config: oslist: windows - description: '''''DLC'''' Forest' + description: "''DLC'' Forest" executable: Captain vs Sky Pirates - Forest.exe type: option1 - config: oslist: windows - description: '''''DLC'''' Moon Base' + description: "''DLC'' Moon Base" executable: Captain vs Sky Pirates - Moon Base.exe type: option1 - config: oslist: windows - description: '''DLC'''' Post Apocalyptic City' + description: "'DLC'' Post Apocalyptic City" executable: Captain vs Sky Pirates - Post Apocalyptic City.exe type: option1 -'722350': +"722350": installDir: Light of Mine launch: - config: @@ -336633,86 +331657,86 @@ executable: LightOfMine.exe type: vr - config: - osarch: '64' + osarch: "64" oslist: windows description: Run VR App in first Person Mode executable: LightOfMine.exe type: default -'722370': +"722370": installDir: Funball Games VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: FunballGamesVR.exe type: vr -'722380': +"722380": installDir: Blindsight launch: - config: oslist: windows executable: Blindsight.exe type: none -'722400': +"722400": installDir: Record Store Nightmare launch: - executable: Record_Store_Nightmare.exe type: none -'722410': +"722410": installDir: Fallen Kingdom launch: - config: oslist: windows executable: Game.exe type: default -'722540': +"722540": installDir: Banana Town launch: - config: oslist: windows executable: Banana Town.exe type: default -'722560': +"722560": installDir: RAD launch: - - arguments: '-NoScreenMessages -SaveToUserDir' + - arguments: "-NoScreenMessages -SaveToUserDir" executable: Mutant.exe type: none - - arguments: '-NoScreenMessages -SaveToUserDir' + - arguments: "-NoScreenMessages -SaveToUserDir" config: betakey: experimental description: Test RAD with debug menu and console - executable: Mutant\\Binaries\\Win64\\RAD-Test.exe + executable: "Mutant\\\\Binaries\\\\Win64\\\\RAD-Test.exe" type: none - - arguments: '-NoScreenMessages -SaveToUserDir' + - arguments: "-NoScreenMessages -SaveToUserDir" config: betakey: qa-debug description: Test RAD with debug menu and console - executable: Mutant\\Binaries\\Win64\\RAD-Test.exe + executable: "Mutant\\\\Binaries\\\\Win64\\\\RAD-Test.exe" type: none -'722570': +"722570": installDir: NaziShoot launch: - config: oslist: windows executable: nazishoot.exe type: default -'722580': +"722580": installDir: Dreadnought Sol launch: - config: oslist: windows executable: Dreadnought.exe type: default -'722590': +"722590": installDir: Audio Factory launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Audio Factory.exe type: vr -'722600': +"722600": installDir: The Last Monster Master launch: - config: @@ -336727,7 +331751,7 @@ oslist: linux executable: TheLastMonsterMaster type: none -'722620': +"722620": installDir: Fatal Velocity Physics Combat launch: - config: @@ -336735,46 +331759,46 @@ description: Launch executable: FatalVelocity.exe type: none -'722660': +"722660": installDir: Startup Freak launch: - config: oslist: windows executable: StartupFreak.exe type: default -'722670': +"722670": installDir: Xiangqi launch: - executable: xq.exe type: default - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" executable: xq.exe type: config -'722680': +"722680": installDir: BLOK DROP NEO launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: nw.exe type: none -'722730': +"722730": installDir: Cogmind launch: - config: oslist: windows executable: COGMIND.exe type: none -'722750': +"722750": installDir: The Killbox launch: - config: oslist: windows executable: The Killbox Aries 2.0.exe -'722760': +"722760": installDir: Captain Firebeard and the Bay of Crows launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows executable: nw.exe @@ -336783,28 +331807,28 @@ oslist: macos executable: nwjs.app type: none - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows - ownsdlc: '831920' + ownsdlc: "831920" description: Play Curse of the Golden Crab - executable: GoldenCrab\\nw.exe + executable: "GoldenCrab\\\\nw.exe" type: none - config: oslist: macos - ownsdlc: '831920' + ownsdlc: "831920" description: Play Curse of the Golden Crab - executable: GoldenCrab\\nwjs.app + executable: "GoldenCrab\\\\nwjs.app" type: none -'722810': +"722810": installDir: Casual Spider Solitaire launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SpiderSolitaire/Binaries/Win64/SpiderSolitaire-Win64-Shipping.exe type: default -'722870': +"722870": installDir: The Mind of Marlo launch: - config: @@ -336815,25 +331839,25 @@ oslist: linux executable: MOM.x86 type: default -'722890': +"722890": installDir: Last Berserker™ Endless War launch: - config: oslist: windows - executable: Lastberserker_windows\\BerserkerWindows.exe + executable: "Lastberserker_windows\\\\BerserkerWindows.exe" type: default - config: oslist: macos executable: Last_mac/berserker.app type: default -'722910': +"722910": installDir: LightTrack launch: - config: oslist: windows executable: LightTrack.exe type: default -'722920': +"722920": installDir: HexEmpire3 launch: - config: @@ -336848,15 +331872,15 @@ oslist: macos executable: HexEmpire3.app type: default -'722940': {} -'722960': +"722940": {} +"722960": installDir: CASE 2 Animatronics Survival launch: - config: oslist: windows - executable: CASE 2 Animatronics Survival\\Case2\\Binaries\\Win64\\Case2-Win64-Shipping.exe + executable: "CASE 2 Animatronics Survival\\\\Case2\\\\Binaries\\\\Win64\\\\Case2-Win64-Shipping.exe" type: default -'722990': +"722990": installDir: Dungeons of Hell launch: - config: @@ -336871,11 +331895,11 @@ oslist: linux executable: DungeonsOfHell.x86 type: default -'72300': +"72300": installDir: Breach launch: - executable: Breach.exe -'723020': +"723020": installDir: 3571 The Game launch: - config: @@ -336886,34 +331910,34 @@ oslist: macos executable: 3571 The Game.app type: default -'723030': {} -'723050': +"723030": {} +"723050": installDir: Neon launch: - - arguments: '-vr' + - arguments: "-vr" config: - osarch: '64' + osarch: "64" oslist: windows description: Launch Main Branch executable: Neon.exe type: vr - config: betakey: development - osarch: '64' + osarch: "64" oslist: windows description: Launch Development Branch executable: NeonRage.exe type: vr -'723060': {} -'723070': +"723060": {} +"723070": installDir: Scrolls_of_the_Lord launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Scrolls_of_the_Lord.exe type: none -'723090': +"723090": installDir: Meltys Quest launch: - config: @@ -336928,90 +331952,90 @@ oslist: macos executable: Game.app type: default -'723100': +"723100": installDir: Orbital Racer launch: - config: oslist: windows executable: Orbital Racer.exe type: default -'723110': +"723110": installDir: Scrap Galaxy launch: - config: oslist: windows executable: Scrap Galaxy.exe type: none - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" config: oslist: windows description: Configuration executable: Scrap Galaxy.exe type: config - config: - osarch: '64' + osarch: "64" oslist: linux executable: ScrapGalaxy.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: ScrapGalaxy.x86 type: default - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" config: - osarch: '64' + osarch: "64" oslist: linux executable: ScrapGalaxy.x86_64 type: config - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" config: - osarch: '32' + osarch: "32" oslist: linux executable: ScrapGalaxy.x86 type: config -'723130': {} -'723180': +"723130": {} +"723180": installDir: The Rift launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TheRiftv2 type: none -'723190': +"723190": installDir: Sniper Hunter Adventure 3D launch: - config: oslist: windows executable: Sniper Hunter Adventure 3D.exe type: default -'723210': +"723210": installDir: Mind Sweeper VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: MSVR.exe type: vr -'723270': +"723270": installDir: Rumu launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Rumu.exe type: default - - arguments: '-window-mode borderless' + - arguments: "-window-mode borderless" config: - osarch: '64' + osarch: "64" oslist: windows description: Fullscreen Windowed executable: Rumu.exe type: option1 - - arguments: '-force-glcore' + - arguments: "-force-glcore" config: - osarch: '64' + osarch: "64" oslist: windows description: Using OpenGL executable: Rumu.exe @@ -337019,76 +332043,74 @@ - config: oslist: macos description: MacOS (Metal) - executable: Rumu.app\\Contents\\MacOS\\Rumu + executable: "Rumu.app\\\\Contents\\\\MacOS\\\\Rumu" type: default - arguments: __GL_GlslUseCollapsedArrays=0 %command% config: - osarch: '64' + osarch: "64" oslist: linux description: Steam OS / Linux executable: Rumu.x86_64 type: default - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" config: oslist: macos description: (Show Launch Options) - executable: Rumu.app\\Contents\\MacOS\\Rumu + executable: "Rumu.app\\\\Contents\\\\MacOS\\\\Rumu" type: option2 - - arguments: '-force-glcore' + - arguments: "-force-glcore" config: oslist: macos description: using OpenGL - executable: Rumu.app\\Contents\\MacOS\\Rumu + executable: "Rumu.app\\\\Contents\\\\MacOS\\\\Rumu" type: option1 - - arguments: '-demo' + - arguments: "-demo" config: betakey: acmi - osarch: '64' + osarch: "64" oslist: windows description: Launch ACMI Demo executable: Rumu.exe type: option3 -'723350': +"723350": installDir: Hell Shooter launch: - config: oslist: windows executable: HellShooter.exe type: default -'723360': {} -'723370': +"723360": {} +"723370": installDir: FARIA Spiritbird launch: - - arguments: '-fullscreen' + - arguments: "-fullscreen" executable: FARIA.exe type: default -'723380': +"723380": installDir: Wraith launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Wraith.exe type: vr -'723390': +"723390": installDir: Hunt Down The Freeman launch: - - arguments: '-game hdtf' + - arguments: "-game hdtf" config: oslist: windows executable: hdtf.exe type: default - - arguments: '-game hdtf +sv_cheats 1 +maxplayers 10' + - arguments: "-game hdtf +sv_cheats 1 +maxplayers 10" description: Broken Co-op; portforward if hosting - description_loc: - english: Broken Co-op; portforward if hosting executable: hdtf.exe type: option1 -'723410': +"723410": installDir: doomtrooper launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: doomtrooper.exe type: default @@ -337097,18 +332119,18 @@ executable: Doomtrooper.app/Contents/MacOS/doomtrooper type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: doomtrooper type: default -'723420': +"723420": installDir: csvr launch: - config: oslist: windows executable: csvr.exe type: vr -'723450': +"723450": installDir: Dragon Hunt launch: - config: @@ -337123,8 +332145,8 @@ oslist: linux executable: DragonHunt.x86 type: none -'723500': {} -'723510': +"723500": {} +"723510": installDir: The Cave launch: - config: @@ -337135,15 +332157,15 @@ oslist: windows executable: theCave.exe type: othervr -'723540': +"723540": installDir: MagicLight launch: - config: oslist: windows executable: HeroicMission.exe type: vr -'723560': {} -'723600': +"723560": {} +"723600": installDir: Star Swapper launch: - config: @@ -337152,22 +332174,22 @@ type: none - config: oslist: macos - executable: StarSwapper.app\\Contents\\MacOS\\StarSwapper + executable: "StarSwapper.app\\\\Contents\\\\MacOS\\\\StarSwapper" type: default - config: oslist: linux executable: StarSwapper.x86 type: default -'723610': +"723610": installDir: Dream_Golf_VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Dream_Golf_VR.exe type: vr -'723750': {} -'723760': +"723750": {} +"723760": installDir: Steamburg launch: - config: @@ -337178,14 +332200,14 @@ oslist: macos executable: Steamburg.app type: default -'723780': +"723780": installDir: Modern Combat Versus launch: - config: oslist: windows executable: ModernCombatVersus.exe type: none -'723790': +"723790": installDir: The Pirate Plague of the Dead launch: - config: @@ -337200,94 +332222,94 @@ oslist: linux executable: ThePirate2.x86_64 type: default -'723810': +"723810": installDir: Dont Bleed launch: - config: oslist: windows - executable: Don't Bleed.exe + executable: "Don't Bleed.exe" type: default -'723820': +"723820": installDir: BANANO BROS launch: - config: oslist: windows executable: bananobros.exe type: default -'723830': +"723830": installDir: Cyborg Invasion Shooter launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Cyborginvasion.exe type: default -'723880': +"723880": installDir: New World The Tupis launch: - config: oslist: windows executable: NewWorldTheTupis.exe type: default -'723890': +"723890": installDir: DontMakeLove launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: dontmakelove.exe type: default -'723910': - installDir: Dark Canvas Blood and Stone Collector's Edition +"723910": + installDir: "Dark Canvas Blood and Stone Collector's Edition" launch: - config: oslist: windows executable: DarkCanvas_BloodAndStone_CE.exe type: default -'723920': - installDir: Dangerous Games Illusionist Collector's Edition +"723920": + installDir: "Dangerous Games Illusionist Collector's Edition" launch: - config: oslist: windows executable: Dangerous_Games_Illusionist_CE.exe type: default -'723930': - installDir: Dark Romance Vampire in Love Collector's Edition +"723930": + installDir: "Dark Romance Vampire in Love Collector's Edition" launch: - config: oslist: windows executable: DarkRomance_VampireInLove_CE.exe type: default -'723940': - installDir: Hidden Expedition The Fountain of Youth Collector's Edition +"723940": + installDir: "Hidden Expedition The Fountain of Youth Collector's Edition" launch: - config: oslist: windows executable: HiddenExpedition_FountainOfYouth_CE.exe type: default -'723950': - installDir: Haunted Manor Queen of Death Collector's Edition +"723950": + installDir: "Haunted Manor Queen of Death Collector's Edition" launch: - config: oslist: windows executable: HauntedManor_QueenofDeathCE.exe type: default -'723960': - installDir: Twilight Phenomena Strange Menagerie Collector's Edition +"723960": + installDir: "Twilight Phenomena Strange Menagerie Collector's Edition" launch: - config: oslist: windows executable: TwilightPhenomena_StrangeMenagerie_CE.exe type: default -'72400': +"72400": installDir: Clones launch: - - executable: Bin\\ClonesGame.exe -'724000': + - executable: "Bin\\\\ClonesGame.exe" +"724000": installDir: Uragun launch: - executable: Uragun.exe -'724010': +"724010": installDir: House of Velez part 1 launch: - config: @@ -337296,48 +332318,48 @@ type: default - config: oslist: windows - ownsdlc: '1061740' + ownsdlc: "1061740" description: House of Velez Part 2 executable: /HoVpt2/House of Velez_Part 2.exe type: none -'724030': +"724030": installDir: Buffy Stole Your Sandwich launch: - config: oslist: windows - executable: BuffyFullWindows\\Buffy Stole your Sandwich Vr 1.0.exe + executable: "BuffyFullWindows\\\\Buffy Stole your Sandwich Vr 1.0.exe" type: default -'724080': +"724080": installDir: The Ino Chronicles - Ascension launch: - config: oslist: windows executable: Game.exe type: default -'724090': +"724090": installDir: Restaurant Manager launch: - config: oslist: windows executable: Restaurant Manager.exe type: default -'724110': +"724110": installDir: PlayUSA launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: PlayUSA.exe type: default -'724120': +"724120": installDir: 30MTE launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ThirtyMinutes.exe type: default -'724130': +"724130": installDir: Radar Warfare launch: - config: @@ -337349,74 +332371,74 @@ executable: radar_warfare.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: radar_warfare.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: radar_warfare.x86 type: default -'724170': +"724170": installDir: Solar Lander launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Solar Lander.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Solar Lander.x86_64 type: default - - arguments: '-popupwindow' + - arguments: "-popupwindow" config: - osarch: '64' + osarch: "64" oslist: windows description: Borderless Window executable: Solar Lander.exe type: option1 - - arguments: '-popupwindow' + - arguments: "-popupwindow" config: - osarch: '64' + osarch: "64" oslist: linux description: Borderless Window executable: Solar Lander.x86_64 type: option1 -'724180': +"724180": installDir: Morgan lives in a Rocket House VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: MorganRHVR.exe type: vr -'724250': +"724250": installDir: Princess Maker 5 launch: - config: oslist: windows executable: PM5.exe type: none -'724260': +"724260": installDir: Princess Maker ~GoGo Princess launch: - config: oslist: windows executable: PM_GOGO.exe type: default -'724280': {} -'724290': {} -'724300': +"724280": {} +"724290": {} +"724300": installDir: Roof Rage launch: - config: oslist: windows executable: RoofRage.exe type: none -'724310': +"724310": installDir: Kawanakajima launch: - config: @@ -337425,7 +332447,7 @@ type: none nameLocalized: japanese: 川中島の合戦 -'724330': +"724330": installDir: Age of Grit launch: - config: @@ -337440,41 +332462,41 @@ oslist: linux executable: Age of Grit.x86 type: none -'724340': +"724340": installDir: Scavenger launch: - config: oslist: windows executable: Scavenger.exe type: default -'724350': +"724350": installDir: King of the Couch Zoovival launch: - config: oslist: windows executable: King_of_the_Couch_Zoovival.exe type: default -'724370': +"724370": installDir: HalfLight launch: - config: oslist: windows executable: XISHENG.exe type: default -'724390': +"724390": installDir: Rigid Force Alpha launch: - config: oslist: windows executable: rfa_main.exe type: default - - arguments: '-safemode' + - arguments: "-safemode" config: oslist: windows - description: 'Rigid Force Alpha [Safemode]' + description: "Rigid Force Alpha [Safemode]" executable: rfa_main.exe type: option1 -'724430': +"724430": installDir: Knights Hunt launch: - config: @@ -337489,12 +332511,12 @@ oslist: linux executable: KnightsHunt.x86 type: none -'724450': +"724450": installDir: Call of Nightmare launch: - executable: Call of Nightmare.exe type: none -'724470': +"724470": installDir: LazyGalaxy launch: - config: @@ -337506,39 +332528,39 @@ executable: LazyGalaxy.app type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: x86/LazyGalaxy.x86 type: none workingdir: x86 - config: - osarch: '64' + osarch: "64" oslist: linux executable: x64/LazyGalaxy.x86_64 type: none workingdir: x64 -'724480': +"724480": installDir: World Circuit Boxing launch: - config: oslist: windows executable: Game.exe type: default -'724490': +"724490": installDir: Protocol launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Protocol.exe type: vr - - arguments: '-nohmd' + - arguments: "-nohmd" config: - osarch: '64' + osarch: "64" oslist: windows executable: Protocol.exe type: default -'724510': +"724510": installDir: The Quiet Sleep launch: - config: @@ -337553,20 +332575,20 @@ oslist: linux executable: nw type: none -'724520': +"724520": installDir: Magilore launch: - - arguments: '-windowed' + - arguments: "-windowed" config: oslist: windows executable: Game.exe type: default -'724570': {} -'724580': +"724570": {} +"724580": installDir: Domino launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: Domino.exe @@ -337574,29 +332596,29 @@ - config: oslist: macos description: Launch - executable: Domino.app\\Contents\\MacOS\\Domino + executable: "Domino.app\\\\Contents\\\\MacOS\\\\Domino" type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Domino.x86_64 type: default -'724600': +"724600": installDir: Another Rocket Game launch: - config: oslist: windows executable: AnotherRocketGame.exe type: default -'724630': +"724630": installDir: ArchaeologyX launch: - config: oslist: windows executable: ArchaeologyX.exe type: none -'724640': +"724640": installDir: AuroraBound launch: - config: @@ -337605,30 +332627,30 @@ type: default - config: oslist: macos - executable: AuroraBound.app\\Contents\\MacOS\\AuroraBound + executable: "AuroraBound.app\\\\Contents\\\\MacOS\\\\AuroraBound" type: default -'724680': - installDir: Cosmo's Quickstop +"724680": + installDir: "Cosmo's Quickstop" launch: - config: oslist: windows - executable: Cosmo's Quickstop.exe + executable: "Cosmo's Quickstop.exe" type: default -'724690': +"724690": installDir: railed launch: - config: oslist: windows executable: railed.exe type: default -'724710': +"724710": installDir: Super Knockoff! VS launch: - config: oslist: windows executable: skovs.exe type: default -'724740': +"724740": installDir: Lines X launch: - config: @@ -337643,7 +332665,7 @@ oslist: linux executable: Lines X.x86_64 type: default -'724750': +"724750": installDir: RobotMystery launch: - config: @@ -337651,36 +332673,36 @@ description: Launch the basic game executable: RobotMystery.exe type: default -'724760': +"724760": installDir: Duralumin Wind launch: - config: oslist: windows executable: DuraluminWind.exe type: default -'724870': +"724870": installDir: Glorious Noon launch: - config: oslist: windows executable: Glorious_Noon.exe type: vr -'724900': +"724900": installDir: HE_Game launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: bin/HE_Game.exe type: default -'724910': +"724910": installDir: Icarus 666 launch: - config: oslist: windows executable: galaktikon.exe type: vr -'724920': +"724920": installDir: Starcats launch: - config: @@ -337688,7 +332710,7 @@ description: Launch executable: Starcats.exe type: none -'724930': +"724930": nameLocalized: french: Last Chickenburg german: Last Chickenburg @@ -337699,32 +332721,32 @@ schinese: 最后的鸡堡 spanish: Last Chickenburg tchinese: 最後的雞堡 -'724940': +"724940": installDir: The beauties&zombies of beach for VR launch: - executable: The beauties&zombies of beach for VR.exe type: vr -'724950': +"724950": installDir: Hope23 launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launching for Windows executable: ProjectBlaze.exe type: default -'724960': {} -'724970': +"724960": {} +"724970": installDir: FOD launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: FOD.exe type: none nameLocalized: sc_schinese: 神舞幻想 Faith of Danschant -'724980': +"724980": installDir: Immortal Quest launch: - config: @@ -337740,21 +332762,21 @@ oslist: linux executable: WinterWarland.x86_64 type: default -'72500': +"72500": installDir: Arcadia launch: - config: oslist: windows description: Play Arcadia executable: Arcadia.exe - workingdir: . + workingdir: "." - config: oslist: windows description: Configure Arcadia executable: ACT.exe - workingdir: . -'725010': {} -'725020': + workingdir: "." +"725010": {} +"725020": installDir: SoM launch: - config: @@ -337765,11 +332787,11 @@ oslist: linux executable: som type: default -'725040': +"725040": installDir: Ebony Spire Heresy launch: - config: - osarch: '64' + osarch: "64" oslist: linux executable: moai type: default @@ -337781,20 +332803,20 @@ oslist: macos executable: EbonySpireHeresy.app type: default -'725050': +"725050": installDir: Thug Life launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ThugLife.exe type: vr - config: - osarch: '64' + osarch: "64" oslist: windows executable: ThugLife.exe type: othervr -'725080': +"725080": installDir: Fearful Symmetry & The Cursed Prince launch: - config: @@ -337802,61 +332824,61 @@ description: Default launch option executable: FearfulSymmetryTheCursedPrince.exe type: default -'725090': +"725090": installDir: Medieval Mayhem launch: - config: oslist: windows executable: medievalmayhem.exe type: vr -'725110': +"725110": installDir: Wizards Tourney launch: - config: oslist: windows executable: WizardsTourney.exe type: none -'725120': +"725120": installDir: ADIOS Amigos launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Fullscreen executable: adios.exe type: default - - arguments: '-window' + - arguments: "-window" config: - osarch: '64' + osarch: "64" oslist: windows description: ADIOS Amigos (Window) executable: adios.exe type: option1 - - arguments: '-lowres' + - arguments: "-lowres" config: - osarch: '64' + osarch: "64" oslist: windows description: ADIOS Amigos (Low resolution) executable: adios.exe type: option2 -'725140': +"725140": installDir: Nogard launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Nogard.exe type: none -'725170': +"725170": installDir: Home Run Solitaire launch: - config: oslist: windows - executable: v1.0.2\\HomeRunSolitaire.exe + executable: "v1.0.2\\\\HomeRunSolitaire.exe" type: none - executable: game.exe type: none -'725270': +"725270": installDir: Necrobarista launch: - executable: Necrobarista.exe @@ -337864,31 +332886,31 @@ nameLocalized: schinese: 终点咖啡馆 tchinese: 終點咖啡館 -'725280': +"725280": installDir: Psi Project launch: - config: oslist: windows executable: PSI PROJECT.exe type: none -'725290': {} -'725320': +"725290": {} +"725320": installDir: Dance Studio VR launch: - config: oslist: windows executable: Dance Studio.exe type: vr -'725330': +"725330": installDir: Zelle launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: Game.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: Game.exe type: default @@ -337896,7 +332918,7 @@ oslist: macos executable: Game.app type: default -'725340': +"725340": installDir: Lines X Free launch: - config: @@ -337911,7 +332933,7 @@ oslist: linux executable: Lines X Free.x86_64 type: default -'725370': +"725370": installDir: Doctor Who Infinity launch: - config: @@ -337919,29 +332941,29 @@ executable: DoctorWhoInfinity.app/Contents/MacOS/DoctorWhoInfinity type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: DoctorWhoInfinity.exe type: default -'725380': +"725380": installDir: Maddening Euphoria launch: - config: oslist: windows executable: Maddening Euphoria.exe type: default -'725400': +"725400": installDir: Forest Escape launch: - executable: Forest Escape.exe type: none -'725410': - installDir: Gaia's Melody Echoed Melodies +"725410": + installDir: "Gaia's Melody Echoed Melodies" launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows - executable: Gaia's Melody Echoed Melodies.exe + executable: "Gaia's Melody Echoed Melodies.exe" type: default - config: oslist: linux @@ -337951,61 +332973,61 @@ oslist: macos executable: Game.app type: default -'725430': +"725430": installDir: Gates of Avalon launch: - config: oslist: windows executable: GatesOfAvalon.exe type: none -'725480': +"725480": installDir: Slap City launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: game with DirectX 11 renderer (Default) executable: Slap City.exe type: option1 - - arguments: '-force-glcore' + - arguments: "-force-glcore" config: - osarch: '64' + osarch: "64" oslist: windows description: game with OpenGL renderer executable: Slap City.exe type: option2 - - arguments: '-force-vulkan' + - arguments: "-force-vulkan" config: - osarch: '64' + osarch: "64" oslist: windows description: game with Vulkan renderer executable: Slap City.exe type: option3 -'725490': {} -'725500': {} -'725510': +"725490": {} +"725500": {} +"725510": installDir: Merper VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: MerperVR.exe type: vr -'725540': +"725540": installDir: Morps launch: - config: oslist: windows executable: morps.exe type: none -'725550': +"725550": installDir: Versus_Round_1 launch: - config: oslist: windows executable: VSRound1.exe type: default -'725620': +"725620": installDir: Battlegrounds2D.io launch: - config: @@ -338016,26 +333038,26 @@ oslist: macos executable: battlegrounds2d-steam.app/Contents/MacOS/battlegrounds2d-steam type: none -'725640': +"725640": installDir: DUEL launch: - config: oslist: windows executable: DUEL.exe type: default -'725660': +"725660": installDir: Thundering Skies launch: - config: oslist: windows executable: ThunderingSkies.exe type: default -'725680': +"725680": installDir: Golf 2D launch: - executable: Golf 2D.exe type: none -'725780': +"725780": installDir: PLAY WITH ME launch: - config: @@ -338050,64 +333072,64 @@ oslist: macos executable: pwm.app type: default -'725850': +"725850": installDir: Kana Quest launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: KanaQuest.exe type: default -'725870': {} -'725890': +"725870": {} +"725890": installDir: Assembly League launch: - executable: Assembly League.exe type: none -'725910': +"725910": installDir: Collide launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows executable: nw.exe type: default - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: linux executable: nw type: default -'725920': +"725920": installDir: If Only launch: - config: oslist: windows executable: If_Only.exe type: vr -'725950': +"725950": installDir: Zombie Nightmare launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ZombieNightmare.exe type: vr -'725960': +"725960": installDir: BallisticMiniGolf launch: - config: oslist: windows executable: BallisticMiniGolf.exe type: default -'725970': +"725970": installDir: Combat Instinct launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: COMBATINSTINCT.exe type: openvroverlay -'725980': +"725980": installDir: Path Out launch: - config: @@ -338116,28 +333138,26 @@ type: default - config: oslist: macos - executable: Game.app\\Contents\\MacOS\\nwjs + executable: "Game.app\\\\Contents\\\\MacOS\\\\nwjs" type: default -'7260': +"7260": installDir: Loki launch: - executable: Loki.exe - description: Launch Loki Setup - executable: Autorun\\Autorun.exe -'726000': + executable: "Autorun\\\\Autorun.exe" +"726000": installDir: No King No Kingdom launch: - config: oslist: windows executable: No King No Kingdom.exe type: none - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" description: Config Screen - description_loc: - english: Config Screen executable: No King No Kingdom.exe type: config -'726020': +"726020": installDir: Mission Demolition launch: - config: @@ -338145,12 +333165,12 @@ executable: Demolition.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Demolition.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Demolition.x86_64 type: default @@ -338158,13 +333178,13 @@ oslist: macos executable: Demolition.app type: default -'726030': +"726030": installDir: MinSweeper launch: - executable: MinSweeper.exe type: none -'726040': {} -'726060': +"726040": {} +"726060": installDir: CAR THIEF SIMULATOR 2017 launch: - config: @@ -338175,16 +333195,16 @@ oslist: macos executable: CarStealer.app type: none -'726070': +"726070": installDir: HiddenObjectSweetHome launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: HiddenObject.exe type: default -'726100': - installDir: Queen's Garden 3 - Halloween +"726100": + installDir: "Queen's Garden 3 - Halloween" launch: - config: oslist: windows @@ -338192,14 +333212,14 @@ type: default - config: oslist: macos - executable: Queen's Garden 3 - Halloween (1.9.3).app + executable: "Queen's Garden 3 - Halloween (1.9.3).app" type: default - config: - osarch: '64' + osarch: "64" oslist: linux - executable: Queen's Garden 3 - Halloween.x86_64 + executable: "Queen's Garden 3 - Halloween.x86_64" type: default -'726110': +"726110": installDir: Overcrowd launch: - config: @@ -338208,31 +333228,31 @@ type: default nameLocalized: schinese: 通勤地铁战 Overcrowd -'726120': +"726120": installDir: Beyond the Wall launch: - config: oslist: windows - executable: Windows\\Beyond the Wall.exe + executable: "Windows\\\\Beyond the Wall.exe" type: none - config: oslist: linux - executable: Linux\\Beyond the Wall.x86 + executable: "Linux\\\\Beyond the Wall.x86" type: none - config: oslist: macos - executable: MacOS\\Beyond the Wall.app\\Contents\\MacOS\\Beyond the Wall + executable: "MacOS\\\\Beyond the Wall.app\\\\Contents\\\\MacOS\\\\Beyond the Wall" type: none -'726160': +"726160": installDir: The Under launch: - - arguments: '-fullscreen' + - arguments: "-fullscreen" config: oslist: windows executable: TheUnder.exe type: none -'726170': {} -'726200': +"726170": {} +"726200": installDir: Hostil launch: - config: @@ -338247,8 +333267,8 @@ oslist: linux executable: Hostil.x86 type: default -'726210': {} -'726230': +"726210": {} +"726230": installDir: The Superlatives Aetherfall launch: - config: @@ -338263,45 +333283,45 @@ oslist: linux executable: TheSuperlativesAetherfall type: none -'726250': +"726250": installDir: Unknightly launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Unknightly.exe type: vr -'726260': +"726260": installDir: Bit Bullet launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Game.exe type: default -'726300': +"726300": installDir: Ionball 3 launch: - config: oslist: windows executable: Ionball3.exe type: default -'726320': +"726320": installDir: Girl Blonde launch: - config: oslist: windows executable: Girl Blonde.exe type: config -'726330': - installDir: Ocean's Crabellum +"726330": + installDir: "Ocean's Crabellum" launch: - config: oslist: windows - executable: Ocean's Crabellum.exe + executable: "Ocean's Crabellum.exe" type: default -'726340': - installDir: Alchemist's Castle +"726340": + installDir: "Alchemist's Castle" launch: - config: oslist: windows @@ -338315,29 +333335,29 @@ oslist: macos executable: ac.app type: default -'726360': +"726360": installDir: Boobs Saga launch: - config: oslist: windows executable: Boobs Saga.exe type: none -'726390': +"726390": installDir: Scream Collector launch: - config: oslist: windows executable: ScreamCollector.exe type: default -'726430': +"726430": installDir: Creeping Terror launch: - config: oslist: windows executable: Creeping Terror.exe type: default -'726450': - installDir: Hero's Descent +"726450": + installDir: "Hero's Descent" launch: - config: oslist: windows @@ -338345,9 +333365,9 @@ type: default - config: oslist: macos - executable: herosdescent.app\\Contents\\MacOS\\herosdescent + executable: "herosdescent.app\\\\Contents\\\\MacOS\\\\herosdescent" type: default -'726460': +"726460": installDir: Choice of Broadsides launch: - config: @@ -338362,7 +333382,7 @@ oslist: linux executable: ChoiceOfBroadsides type: none -'726490': +"726490": installDir: Projection launch: - config: @@ -338370,7 +333390,7 @@ description: Launch executable: Projection.exe type: default -'726500': +"726500": installDir: The Adventures of Sam Carlisle The Hunt for the Lost Treasure launch: - config: @@ -338385,7 +333405,7 @@ oslist: macos executable: The Hunt for the Lost Treasure.app type: default -'726510': +"726510": installDir: HeadsRun launch: - config: @@ -338394,9 +333414,9 @@ type: default - config: oslist: macos - executable: HeadsRun.app\\Contents\\MacOS\\Mac_Runner + executable: "HeadsRun.app\\\\Contents\\\\MacOS\\\\Mac_Runner" type: default -'726520': +"726520": installDir: The Merchant Memoirs launch: - config: @@ -338407,14 +333427,14 @@ oslist: macos executable: Merchant_Memoirs.app/Contents/MacOS/Merchant_Memoirs type: default -'726570': +"726570": installDir: HeavyDestinies launch: - config: oslist: windows executable: HeavyDestinies.exe type: default -'726580': +"726580": installDir: Game Machines Arcade Casino launch: - arguments: Q3DStart.q3d @@ -338422,44 +333442,44 @@ oslist: windows executable: QuestViewer.exe type: default -'726590': +"726590": installDir: NBA Playgrounds 2 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: NBAPlaygrounds2.exe type: default -'726600': +"726600": installDir: Drift Zone launch: - config: oslist: windows executable: DriftZone.exe type: default -'726610': +"726610": installDir: Podium Bash launch: - config: oslist: windows executable: PodiumBash.exe type: vr -'726620': +"726620": installDir: KittyRescue launch: - config: oslist: windows executable: KittyRescue.exe type: vr -'726630': +"726630": installDir: Mare Nostrvm launch: - config: oslist: windows executable: autorun.exe type: default -'726650': {} -'726710': +"726650": {} +"726710": installDir: Razed launch: - config: @@ -338474,7 +333494,7 @@ oslist: macos executable: mac.app type: none -'726720': +"726720": installDir: Marble Run launch: - config: @@ -338485,29 +333505,29 @@ oslist: macos executable: marble run.app type: default -'726760': +"726760": installDir: Boy Next Door launch: - config: oslist: windows executable: Boy Next Door.exe type: default -'726770': {} -'726800': +"726770": {} +"726800": installDir: The Rare Nine launch: - config: oslist: windows executable: TheRareNine.exe type: default -'726810': +"726810": installDir: Void Cube Runner launch: - config: oslist: windows executable: VCR.exe type: default -'726820': +"726820": installDir: Inner Mazes - Souls Guides launch: - config: @@ -338515,27 +333535,27 @@ executable: SoulsGuides.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: SoulsGuides.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: SoulsGuides.x86_64 type: default - config: oslist: macos - executable: SoulsGuides.app\\Contents\\MacOS\\SoulsGuides + executable: "SoulsGuides.app\\\\Contents\\\\MacOS\\\\SoulsGuides" type: none -'726830': +"726830": installDir: Vacation Simulator launch: - config: oslist: windows executable: Vacation Simulator.exe type: vr -'726840': +"726840": installDir: City Game Studio launch: - config: @@ -338543,7 +333563,7 @@ executable: CityGameStudio.sh type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: CityGameStudio32.exe type: default @@ -338552,33 +333572,31 @@ executable: CityGameStudio.app type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: CityGameStudio64.exe type: default - - arguments: '-ad RtAudio-DirectSound' + - arguments: "-ad RtAudio-DirectSound" config: - osarch: '64' + osarch: "64" oslist: windows description: City Game Studio (Sound 5.1/7.1) executable: CityGameStudio64.exe type: option1 - - arguments: '-ad RtAudio-DirectSound' + - arguments: "-ad RtAudio-DirectSound" config: - osarch: '32' + osarch: "32" oslist: windows description: City Game Studio (Sound 5.1/7.1) executable: CityGameStudio32.exe type: option1 - - arguments: '-output_latency 50' + - arguments: "-output_latency 50" config: oslist: linux description: City Game Studio (fix sound) - description_loc: - english: City Game Studio (fix sound) executable: CityGameStudio.sh type: option1 -'726870': +"726870": installDir: Anchorhead launch: - config: @@ -338587,46 +333605,46 @@ type: default - config: oslist: macos - executable: Anchorhead.app\\Contents\\MacOS\\Anchorhead + executable: "Anchorhead.app\\\\Contents\\\\MacOS\\\\Anchorhead" type: default - config: oslist: linux executable: Anchorhead-launch type: default -'726880': +"726880": installDir: Posable Heroes launch: - config: oslist: windows executable: PosableHeroes.exe type: default -'726910': +"726910": installDir: DRDR launch: - config: oslist: windows executable: DRDR.exe type: vr -'726950': +"726950": installDir: DarkRoseValkyrie launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: DarkRoseValkyrie.exe type: default nameLocalized: japanese: クロバラノワルキューレ tchinese: 黑玫瑰女武神 -'726980': {} -'726990': +"726980": {} +"726990": installDir: Succubus Rem launch: - config: oslist: windows executable: Game.exe type: none -'727010': +"727010": installDir: WOT launch: - config: @@ -338637,28 +333655,28 @@ oslist: macos executable: Wrath of Thor.app/Contents/MacOS/Wrath of Thor type: default -'727020': +"727020": installDir: Arcade Moonlander launch: - config: oslist: windows executable: ArcadeMoonlander+_v2.0.exe type: default -'727040': +"727040": installDir: Alucinod launch: - config: oslist: windows executable: Alucinod.exe type: default -'727060': +"727060": installDir: The Mystery Room launch: - config: oslist: windows executable: The Mystery Room.exe type: default -'727070': +"727070": installDir: Hex launch: - config: @@ -338669,33 +333687,33 @@ oslist: macos executable: hex.app type: default -'727090': +"727090": installDir: Village of Adventurers launch: - config: oslist: windows executable: bouken2.exe type: none -'727100': +"727100": installDir: Orch Star launch: - config: oslist: windows executable: Orch Star.exe type: vr - - arguments: '-vrmode None' + - arguments: "-vrmode None" config: oslist: windows executable: Orch Star.exe type: default -'727110': +"727110": installDir: The Lost Wizard launch: - config: oslist: windows executable: thelostwizard.exe type: default -'727130': +"727130": installDir: Between the Stars launch: - config: @@ -338705,67 +333723,67 @@ nameLocalized: schinese: 群星之间 tchinese: 群星之间 -'727140': +"727140": installDir: Love all you havel left launch: - config: oslist: windows executable: LAYHL-V1.exe type: none -'727150': +"727150": installDir: One Watcher launch: - config: oslist: windows description: Play the game! - executable: Win32\\OneWatcher_x86_f.exe + executable: "Win32\\\\OneWatcher_x86_f.exe" type: default workingdir: Win32 -'727170': +"727170": installDir: Old School FOTD launch: - config: oslist: windows executable: FOTD.exe type: default -'727180': +"727180": installDir: EscapeExpert launch: - executable: EscapeExpert.exe type: none -'727190': +"727190": installDir: BLIK launch: - config: oslist: windows executable: BLIK.exe type: default -'727200': - installDir: Santa's Workshop +"727200": + installDir: "Santa's Workshop" launch: - config: oslist: windows - executable: Santa's Workshop.exe + executable: "Santa's Workshop.exe" type: default - config: oslist: macos - executable: Santa's Workshop.app + executable: "Santa's Workshop.app" type: default -'727220': +"727220": installDir: Nightingale Downs launch: - config: oslist: windows executable: nw.exe type: none -'727280': +"727280": installDir: Scrap launch: - config: oslist: windows executable: Scrap.exe type: none -'727290': +"727290": installDir: Boot Hill Bounties launch: - config: @@ -338773,20 +333791,20 @@ description: Launch executable: BootHillBounties.exe type: none -'727300': {} -'727310': +"727300": {} +"727310": installDir: MajorLeagueGladiators launch: - config: oslist: windows executable: WindowsNoEditor/MajorLeagueGladiator.exe type: vr -'727320': +"727320": installDir: Operation Desert Road launch: - executable: Operation Desert Road.exe type: none -'727330': +"727330": installDir: Last Salvo launch: - config: @@ -338794,42 +333812,42 @@ executable: LastSalvo.exe type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: LastSalvo64.run type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: LastSalvo32.run type: none -'727340': +"727340": installDir: Stitched launch: - config: oslist: windows executable: Game.exe type: default -'727390': {} -'727410': {} -'727420': +"727390": {} +"727410": {} +"727420": installDir: Taco Tom 2 launch: - config: oslist: macos - executable: Taco Tom 2.app\\Contents\\MacOS\\nwjs + executable: "Taco Tom 2.app\\\\Contents\\\\MacOS\\\\nwjs" type: none - config: oslist: windows executable: nw.exe type: none -'727430': +"727430": installDir: Starcaster launch: - - arguments: '-jar Starcaster.jar' - executable: jre\\bin\\java.exe + - arguments: "-jar Starcaster.jar" + executable: "jre\\\\bin\\\\java.exe" type: default -'727450': +"727450": installDir: Beats Of Fury launch: - executable: BOF.exe @@ -338837,21 +333855,21 @@ nameLocalized: schinese: 节奏狂怒 tchinese: 節奏狂怒 -'727460': +"727460": installDir: Magic Tower launch: - config: oslist: windows executable: MagicTower.exe type: none -'727480': +"727480": installDir: Reach Me launch: - config: oslist: windows executable: RM.exe type: default -'727490': +"727490": installDir: Hell Space launch: - config: @@ -338859,32 +333877,32 @@ description: Launch executable: HellSpace.exe type: default -'727500': {} -'727510': +"727500": {} +"727510": installDir: Void Memory launch: - config: oslist: windows executable: Void Memory.exe type: default -'727530': +"727530": installDir: Expelled launch: - config: - osarch: '32' + osarch: "32" oslist: windows - executable: win32\\Expelled.exe + executable: "win32\\\\Expelled.exe" type: default - config: - osarch: '64' + osarch: "64" oslist: windows - executable: win32\\Expelled.exe + executable: "win32\\\\Expelled.exe" type: default - config: oslist: macos - executable: osx64\\expelled.app + executable: "osx64\\\\expelled.app" type: default -'727540': +"727540": installDir: Rex launch: - config: @@ -338893,13 +333911,13 @@ type: default - config: oslist: macos - executable: ReX.app\\Contents\\MacOS\\Rex + executable: "ReX.app\\\\Contents\\\\MacOS\\\\Rex" type: default -'727550': +"727550": installDir: Illville Return instructions launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ReturnInstructions.exe type: default @@ -338907,8 +333925,8 @@ oslist: macos executable: ReturnInstructions.app type: default -'727560': {} -'727570': +"727560": {} +"727570": installDir: AfterTheCollapse launch: - config: @@ -338921,15 +333939,15 @@ description: in Safe Mode (disable mods) executable: Collapse.exe type: option1 -'727590': {} -'727610': +"727590": {} +"727610": installDir: Hot Pool launch: - config: oslist: windows - executable: windows\\Hot Pool.exe + executable: "windows\\\\Hot Pool.exe" type: default -'727640': +"727640": installDir: ShP launch: - config: @@ -338960,19 +333978,19 @@ type: manual - config: oslist: windows - ownsdlc: '748140' + ownsdlc: "748140" description: ШП-12.00000000000000001 (english) executable: SHP-12.00000000000000001_eng.exe type: option1 - config: oslist: windows - ownsdlc: '749660' + ownsdlc: "749660" description: ШПUGEN (русский) executable: SHPUGEN remastered (rus).exe type: option1 - config: oslist: windows - ownsdlc: '749660' + ownsdlc: "749660" description: ШПUGEN (english) executable: SHPUGEN REMASTERED ENG FINAL CUT.exe type: option1 @@ -338992,49 +334010,49 @@ executable: SHP-12.00000000000000001.exe type: option1 - config: - ownsdlc: '749660' + ownsdlc: "749660" description: ШПНЦ (русский) executable: SHPNTC (rus).exe type: option1 - config: - ownsdlc: '749660' + ownsdlc: "749660" description: ШПНЦ (english) executable: SHPNTC (eng).exe type: option1 -'727660': {} -'727680': {} -'727690': {} -'727720': +"727660": {} +"727680": {} +"727690": {} +"727720": installDir: Found Horror Game 11.exe launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows - description: Game 1 \"Attendant\" + description: "Game 1 \\\"Attendant\\\"" executable: Game 1/Found Horror Game 1.exe type: none - - description: 'Game 2: \"Hollow Bliss Prologue\"' + - description: "Game 2: \\\"Hollow Bliss Prologue\\\"" executable: Game 2/FoundHorrorGame2.exe type: none - - arguments: '--in-process-gpu' - description: 'Game 3: \"Cootie Patootie\"' + - arguments: "--in-process-gpu" + description: "Game 3: \\\"Cootie Patootie\\\"" executable: Game 3/Found Horror Game 3.exe type: none - - arguments: '--in-process-gpu' - description: 'Game 4: \"Red Light/Green Light\"' + - arguments: "--in-process-gpu" + description: "Game 4: \\\"Red Light/Green Light\\\"" executable: Game 4/Found Horror Game 4.exe type: none - config: oslist: windows - description: 'Game 5: \"The Pure Field\"' + description: "Game 5: \\\"The Pure Field\\\"" executable: Game 5/Feast Your Eyes.exe type: none workingdir: Game 5 - - arguments: '--in-process-gpu' - description: 'Game 6: \"The Ominous Whisperer\"' + - arguments: "--in-process-gpu" + description: "Game 6: \\\"The Ominous Whisperer\\\"" executable: Game 6/The Ominous Whisperer.exe type: none -'727730': +"727730": installDir: Shiver launch: - config: @@ -339049,7 +334067,7 @@ oslist: linux executable: Shiver.x86 type: default -'727760': +"727760": installDir: Umiro launch: - config: @@ -339058,45 +334076,45 @@ type: none - config: oslist: macos - executable: umiro.app\\Contents\\MacOS\\umiro + executable: "umiro.app\\\\Contents\\\\MacOS\\\\umiro" type: none -'727790': +"727790": installDir: DEAD TARGET VR launch: - config: oslist: windows executable: DTVR.exe type: vr -'727800': +"727800": installDir: VoxelTankVR launch: - config: oslist: windows executable: VoxelTankVR.exe type: vr -'727830': +"727830": installDir: Reformers launch: - config: oslist: windows executable: Game.exe type: default -'727840': +"727840": installDir: Eggcellent launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Eggcellent.exe type: vr -'727850': +"727850": installDir: Elderborn launch: - config: oslist: windows executable: Elderborn.exe type: default -'727860': +"727860": installDir: Space Quiz launch: - config: @@ -339105,47 +334123,47 @@ type: none - config: oslist: macos - executable: spacequiz.app\\Contents\\MacOS\\spacequiz + executable: "spacequiz.app\\\\Contents\\\\MacOS\\\\spacequiz" type: none -'727900': +"727900": installDir: Maze of Gaea launch: - config: oslist: windows executable: Maze3.exe type: vr -'727910': +"727910": installDir: Titanic launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Titanic The Experience.exe type: default -'727930': +"727930": installDir: Robo Revenge Squad launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: RoboRevengeSquad.exe type: default -'727960': {} -'727970': +"727960": {} +"727970": installDir: Cosmic Trail launch: - config: oslist: windows executable: CosmicTrail.exe type: default -'728020': +"728020": installDir: Lost Home launch: - config: oslist: windows executable: LostHomeS.exe type: none -'728050': +"728050": installDir: Heroes of Hexaluga launch: - config: @@ -339154,27 +334172,27 @@ type: none - config: oslist: macos - executable: Heroes of Hexaluga.app\\Contents\\MacOS\\Heroes of Hexaluga + executable: "Heroes of Hexaluga.app\\\\Contents\\\\MacOS\\\\Heroes of Hexaluga" type: none - config: - osarch: '32' + osarch: "32" oslist: linux - executable: Heroes of Hexaluga.linux\\Heroes of Hexaluga.x86 + executable: "Heroes of Hexaluga.linux\\\\Heroes of Hexaluga.x86" type: none - config: - osarch: '64' + osarch: "64" oslist: linux - executable: Heroes of Hexaluga.linux\\Heroes of Hexaluga.x86_64 + executable: "Heroes of Hexaluga.linux\\\\Heroes of Hexaluga.x86_64" type: none -'728070': +"728070": installDir: Operation Apex launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: apex.exe type: vr -'728090': +"728090": installDir: CIBOS launch: - config: @@ -339186,137 +334204,135 @@ executable: Cibos.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Cibos.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Cibos.x86_64 type: default -'728100': {} -'728110': +"728100": {} +"728110": installDir: Board Games VR launch: - config: oslist: windows executable: board-games-vr.exe type: vr - - arguments: '-vrmode none' + - arguments: "-vrmode none" config: oslist: windows description: Play in Non-VR - description_loc: - english: Play in Non-VR executable: board-games-vr.exe - - arguments: '-vrmode none -workshop' + - arguments: "-vrmode none -workshop" config: oslist: windows description: Steam Workshop Uploader Tool executable: board-games-vr.exe type: none -'728150': +"728150": installDir: Virtual Race Car Engineer 2018 launch: - config: oslist: windows executable: VRCE2018.exe type: default -'728170': {} -'728220': +"728170": {} +"728220": installDir: Deadeye Dungeon launch: - config: oslist: windows executable: deadeyedungeon.exe type: vr -'728240': +"728240": installDir: Adventure Time Pirates of the Enchiridion launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Adventure Time Pirates of the Enchiridion.exe type: default -'728420': +"728420": installDir: Rogue Quest - The Vault of the Lost Tyrant launch: - config: oslist: windows executable: Rogue Quest - TVOTLT.exe type: default -'728440': +"728440": installDir: Next launch: - config: oslist: windows executable: Next.exe type: default -'728450': {} -'72850': +"728450": {} +"72850": installDir: Skyrim launch: - executable: SkyrimLauncher.exe -'728530': +"728530": installDir: GGCR launch: - config: oslist: windows executable: togg.exe type: none -'728540': +"728540": installDir: Islands of Nyne Battle Royale launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: IONBranch/Binaries/Win64/IONBranch.exe type: default -'728610': +"728610": installDir: Willowisp VR launch: - config: oslist: windows executable: Willowisp.exe type: vr -'728620': +"728620": installDir: RibbonChase launch: - config: oslist: windows executable: RibbonChaseVR.exe type: vr -'728630': +"728630": installDir: CardboardWars launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: CardboardWars.exe type: default -'728650': {} -'728660': {} -'728670': +"728650": {} +"728660": {} +"728670": installDir: MazeUp launch: - config: oslist: windows executable: mazeup.exe type: default -'728710': +"728710": installDir: Trooper1 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Trooper.exe type: default -'728720': +"728720": installDir: Roojack launch: - executable: Roojack.exe -'728730': +"728730": installDir: Holyday City Reloaded launch: - config: @@ -339331,31 +334347,31 @@ oslist: linux executable: Holyday City Reloaded.x86_64 type: none -'728740': +"728740": installDir: Sniper Elite V2 Remastered launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: Launcher\\SEV2RLauncher.exe + executable: "Launcher\\\\SEV2RLauncher.exe" type: default - workingdir: Launcher\\ -'728770': {} -'728830': + workingdir: "Launcher\\\\" +"728770": {} +"728830": installDir: San Matias - Mafia City launch: - config: oslist: windows - executable: windows_content\\SanMatiasMafiaCity.exe + executable: "windows_content\\\\SanMatiasMafiaCity.exe" type: default -'728870': +"728870": installDir: Viaerium launch: - config: oslist: windows executable: Viaerium.exe type: default -'728880': +"728880": installDir: Overcooked! 2 launch: - config: @@ -339367,100 +334383,100 @@ executable: Overcooked2.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Overcooked2.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Overcooked2.x86_64 type: default -'728890': {} -'728950': +"728890": {} +"728950": installDir: Barrels Up launch: - config: oslist: windows executable: BarrelsUp.exe type: vr -'728990': +"728990": installDir: Pixel Car launch: - config: oslist: windows executable: PixelCar.exe type: none -'72900': +"72900": installDir: Winter Voices Ep 1 launch: - executable: WinterVoices.exe -'729000': +"729000": installDir: Wytchwood launch: - executable: Wytchwood.exe type: none -'729030': +"729030": installDir: Survival Method launch: - config: oslist: windows executable: Survival Method_beta0.2.7.exe type: default -'729040': +"729040": installDir: BorderlandsGOTYEnhanced launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: Binaries\\Win64\\Launcher.exe + executable: "Binaries\\\\Win64\\\\Launcher.exe" type: default -'729050': +"729050": installDir: BigBangBilliards launch: - config: oslist: windows executable: BigBangBilliards.exe type: vr -'729060': +"729060": installDir: Silent Descent launch: - config: oslist: windows executable: Silent Descent.exe type: none -'729090': +"729090": installDir: Tropical Escape launch: - - arguments: "-Iowres⠀ -benchIeveI -command\x7F" + - arguments: "-Iowres⠀ -benchIeveI -command\u007f" config: oslist: windows executable: TropicalEscape.exe type: default -'729130': +"729130": installDir: Sound Soarer launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Sound Soarer.exe type: default -'729170': {} -'729180': +"729170": {} +"729180": installDir: Turtle Voidrunner launch: - config: oslist: windows executable: TurtleVoidrunner.exe type: default -'729190': +"729190": installDir: Kraken launch: - config: oslist: windows executable: Kraken.exe type: vr -'729220': +"729220": installDir: Save me Mr Tako Tasukete Tako-San launch: - config: @@ -339468,14 +334484,14 @@ description: Play Save Me Mr Tako! executable: SaveMeMrTako.exe type: default -'729270': +"729270": installDir: Alvarok launch: - config: oslist: windows executable: ALVAROK_stm.exe type: none -'729290': +"729290": installDir: Hidden Cubes launch: - config: @@ -339490,32 +334506,32 @@ oslist: linux executable: HiddenCubes type: default -'729300': +"729300": installDir: Cleansuit launch: - config: oslist: windows - executable: Cleansuit\\Cleansuit.exe + executable: "Cleansuit\\\\Cleansuit.exe" type: default - config: oslist: macos - executable: Cleansuit.app\\Contents\\MacOS\\Cleansuit + executable: "Cleansuit.app\\\\Contents\\\\MacOS\\\\Cleansuit" type: default -'729310': +"729310": installDir: Draft Day Sports College Basketball 2017 launch: - config: oslist: windows executable: DDSCB2017.exe type: default -'729320': +"729320": installDir: The Succubi Trap launch: - config: oslist: windows executable: Succubiyz.exe type: none -'729330': +"729330": installDir: The Girl on the Train launch: - config: @@ -339530,14 +334546,14 @@ oslist: linux executable: The_Girl_On_The_Train.sh type: none -'729340': +"729340": installDir: AMON launch: - config: oslist: windows executable: AmonVR.exe type: default -'729370': +"729370": installDir: KLAUS launch: - config: @@ -339546,29 +334562,29 @@ type: default - config: oslist: macos - executable: KLAUS.app\\Contents\\MacOS\\KLAUS + executable: "KLAUS.app\\\\Contents\\\\MacOS\\\\KLAUS" type: default -'729390': +"729390": installDir: Debris Infinity launch: - config: oslist: windows executable: Debris Infinity.exe type: default -'729460': +"729460": installDir: Distant Space 2 launch: - config: oslist: windows executable: DistantSpace.exe type: default -'729470': +"729470": installDir: Stratego® Multiplayer launch: - executable: strategoMP_steam.exe type: none -'729520': {} -'729530': +"729520": {} +"729530": installDir: Legends of Talia Arcadia launch: - config: @@ -339583,7 +334599,7 @@ oslist: linux executable: Arcadia.sh type: default -'729570': +"729570": installDir: 222 Hearts launch: - config: @@ -339592,37 +334608,37 @@ type: none - config: oslist: macos - executable: 222Hearts.app\\Contents\\MacOS\\222Hearts + executable: "222Hearts.app\\\\Contents\\\\MacOS\\\\222Hearts" type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: 222Hearts.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: 222Hearts.x86_64 type: none -'729580': - installDir: Malzbie's Pinball Collection +"729580": + installDir: "Malzbie's Pinball Collection" launch: - config: oslist: windows executable: PinballCollection.exe type: none -'729610': +"729610": installDir: My Games launch: - config: oslist: windows - executable: rrs_win\\Game.exe + executable: "rrs_win\\\\Game.exe" type: default - config: oslist: macos executable: rrs_os_x/Game.app/ type: default -'729640': +"729640": installDir: BOMBFEST launch: - config: @@ -339634,120 +334650,120 @@ executable: BOMBFEST.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux - executable: Linux\\BOMBFEST.x86_64 + executable: "Linux\\\\BOMBFEST.x86_64" type: default - config: - osarch: '32' + osarch: "32" oslist: linux - executable: Linux\\BOMBFEST.x86 + executable: "Linux\\\\BOMBFEST.x86" type: default -'729650': +"729650": installDir: More Than Just Chess launch: - executable: MoreThanJustChess.exe type: none -'729660': +"729660": installDir: Blackout Z Slaughterhouse Edition launch: - executable: Blackout Z.exe type: none -'729670': +"729670": installDir: Wanderlust launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: WanderlustW\\Wanderlustx86_64.exe + executable: "WanderlustW\\\\Wanderlustx86_64.exe" type: default - config: oslist: macos - executable: WanderlustM\\WanderlustMacUniversal.app + executable: "WanderlustM\\\\WanderlustMacUniversal.app" type: default - config: - osarch: '64' + osarch: "64" oslist: linux - executable: WanderlustL\\WanderlustLinuxUniversal\\WanderlustLinuxUniversal.x86_64 + executable: "WanderlustL\\\\WanderlustLinuxUniversal\\\\WanderlustLinuxUniversal.x86_64" type: default -'729680': +"729680": installDir: RANDOM OF WARS launch: - config: oslist: windows executable: row.exe type: default -'729720': +"729720": installDir: Zomborg launch: - config: oslist: windows executable: Zomborg.exe type: default -'729740': +"729740": installDir: JigsawMania launch: - config: oslist: windows executable: JigsawMania.exe type: default -'729780': +"729780": installDir: Timeless The Lost Castle launch: - config: oslist: windows executable: Timeless_The_Lost_Castle.exe type: default -'729820': +"729820": installDir: WheelbarrowWarrior launch: - config: oslist: windows executable: WheelbarrowWarrior.exe type: default -'729910': - installDir: Sable Maze Norwich Caves Collector's Edition +"729910": + installDir: "Sable Maze Norwich Caves Collector's Edition" launch: - config: oslist: windows executable: SableMaze_NorwichCaves_CE.exe type: default -'729920': - installDir: Dark Dimensions City of Ash Collector's Edition +"729920": + installDir: "Dark Dimensions City of Ash Collector's Edition" launch: - config: oslist: windows executable: DarkDimensions_CityOfAsh_CE.exe type: default -'729930': - installDir: Tales of Terror House on the Hill Collector's Edition +"729930": + installDir: "Tales of Terror House on the Hill Collector's Edition" launch: - config: oslist: windows executable: TalesOfTerror_HouseOnTheHill_CE.exe type: default -'729940': - installDir: Azada® In Libro Collector's Edition +"729940": + installDir: "Azada® In Libro Collector's Edition" launch: - config: oslist: windows executable: Azada_In_Libro.exe type: default -'729950': - installDir: Witch Hunters Full Moon Ceremony Collector's Edition +"729950": + installDir: "Witch Hunters Full Moon Ceremony Collector's Edition" launch: - config: oslist: windows executable: WitchHunters_FullMoonCeremonyCE.exe type: default -'729960': - installDir: Ominous Objects Phantom Reflection Collector's Edition +"729960": + installDir: "Ominous Objects Phantom Reflection Collector's Edition" launch: - config: oslist: windows executable: OminousObjects_PhantomReflection_CE.exe type: default -'729970': +"729970": installDir: Dogma launch: - config: @@ -339760,57 +334776,55 @@ description: Run Dogma on Windows executable: Dogma.exe type: default -'729980': +"729980": installDir: Happy Neighbors launch: - config: oslist: windows executable: HappyNeighbors.exe type: default -'729990': +"729990": installDir: Hexopods launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: nw.exe type: none -'730': +"730": installDir: Counter-Strike Global Offensive launch: - - arguments: '-steam' + - arguments: "-steam" config: oslist: windows executable: csgo.exe - vacmodulefilename: resource\\sourceinit.dat - - arguments: '-steam' + - arguments: "-steam" config: oslist: macos executable: csgo.sh - vacmodulefilename: resource\\sourceinit_macos.dat - - arguments: '-steam' + - arguments: "-steam" config: oslist: linux description: Launch executable: csgo.sh nameLocalized: sc_schinese: 反恐精英:全球攻势 -'730010': +"730010": installDir: Ninja in Training launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: NinjaInTraining.exe type: vr -'730030': +"730030": installDir: Ultimate Spinner Simulator launch: - config: oslist: windows executable: UAS.exe type: default -'730050': +"730050": installDir: Verdant Skies launch: - config: @@ -339822,18 +334836,18 @@ executable: Verdant Skies.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Verdant Skies type: default -'730090': +"730090": installDir: TravelVR launch: - config: oslist: windows executable: Travel VR/TravelVR.exe type: vr -'73010': +"73010": installDir: Cities In Motion launch: - config: @@ -339848,7 +334862,7 @@ oslist: linux description: Cities In Motion executable: Cities In Motion.bin -'730120': +"730120": installDir: Micro Miners launch: - config: @@ -339856,7 +334870,7 @@ description: Launch executable: MicroMiners.exe type: default -'730160': +"730160": installDir: Shape Palette launch: - config: @@ -339868,61 +334882,61 @@ executable: Shape Palette.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Shape Palette.x86_64 type: default -'730170': +"730170": installDir: Rocketboarder launch: - executable: Rocketboarder.exe type: vr -'730180': +"730180": installDir: Bits n Bullets launch: - config: oslist: windows executable: BitsNBullets.exe type: vr -'730190': +"730190": installDir: Sick Coaster launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: sick_coaster_steam2.exe type: vr -'730220': +"730220": installDir: Trivia Vault Video Game Trivia Deluxe launch: - config: oslist: windows executable: Trivia Vault Deluxe Video Games.exe type: default -'730240': +"730240": installDir: Chicken with Chainguns launch: - config: oslist: windows executable: cwc2017.exe type: default -'730270': +"730270": installDir: JunkerBot launch: - config: oslist: windows executable: JunkerBot.exe type: default -'730280': +"730280": installDir: Protect your planet launch: - executable: Protect your planet.exe type: none -'730290': +"730290": installDir: Eat All The Things launch: - config: - osarch: '32' + osarch: "32" oslist: linux executable: Eat All The Things.x86 type: default @@ -339931,7 +334945,7 @@ executable: Eat All The Things.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Eat All The Things.x86_64 type: default @@ -339939,30 +334953,30 @@ oslist: windows executable: Eat All The Things.exe type: default -'730300': +"730300": installDir: Super Star Panda launch: - config: oslist: windows executable: Panda.exe type: default -'730310': +"730310": installDir: Dynasty Warriors 9 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: DW9.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows description: Configuration executable: Config.exe type: config - config: - betakey: 'beta,dbeta' - osarch: '64' + betakey: "beta,dbeta" + osarch: "64" oslist: windows executable: Epic_DebugPkg.exe type: default @@ -339971,7 +334985,7 @@ koreana: 진・삼국무쌍8 schinese: 真・三国无双8 tchinese: 真・三國無雙8 -'730380': +"730380": installDir: SUBWAY CONSTRUCTION SIMULATOR 2017 launch: - config: @@ -339982,38 +334996,36 @@ oslist: windows executable: CONSTR_WIN_STEAM_LAST.exe type: none -'730390': +"730390": installDir: Raji An Ancient Epic launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Raji.exe type: default - - arguments: '-d3d11' + - arguments: "-d3d11" config: - osarch: '64' + osarch: "64" oslist: windows - description: 'Raji: An Ancient Epic (DirectX 11)' - description_loc: - english: 'Raji: An Ancient Epic (DirectX 11)' + description: "Raji: An Ancient Epic (DirectX 11)" executable: Raji.exe type: option2 nameLocalized: - schinese: 'Raji: An Ancient Epic / 拉吉:远古传奇' -'730410': + schinese: "Raji: An Ancient Epic / 拉吉:远古传奇" +"730410": installDir: Music Awards Manager launch: - executable: MusicAwards.exe type: none -'730420': +"730420": installDir: Combine War Toys launch: - config: oslist: windows executable: CombineWarToys.exe type: vr -'730430': +"730430": installDir: This Is the President launch: - config: @@ -340034,12 +335046,12 @@ - config: oslist: linux executable: ThisIsThePresident.x86_64 -'730450': +"730450": installDir: AXYOS_Battlecards launch: - executable: AXYOS_Battlecards.exe type: none -'730460': +"730460": installDir: Peter World launch: - config: @@ -340047,7 +335059,7 @@ description: Peter World adventures executable: pw.exe type: default -'730580': +"730580": installDir: MegaRace 1 launch: - config: @@ -340084,32 +335096,32 @@ description: portuguese version executable: MegaRace 1 - SP.app type: default -'73060': +"73060": installDir: Defenders of Ardania launch: - executable: DOA.exe -'730620': +"730620": installDir: Solar System launch: - executable: Hammer 2.exe type: none -'730670': +"730670": installDir: EXIT 3 - Painter launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: bin64\\exit3.exe + executable: "bin64\\\\exit3.exe" type: none -'730690': +"730690": installDir: EXIT 4 - Portal launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: bin64\\exit4.exe + executable: "bin64\\\\exit4.exe" type: none -'730700': +"730700": installDir: The Word Is Not The Thing launch: - config: @@ -340120,11 +335132,11 @@ oslist: macos executable: The Word Is Not The Thing.app type: default -'730710': +"730710": installDir: Space Viking Raiders launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch Space Viking Raiders executable: SpaceVikingRaiders.exe @@ -340134,14 +335146,14 @@ description: Play Space Viking Raiders executable: MAC.app type: default -'730760': +"730760": installDir: Go! Go! Radio 8-Bit Edition launch: - config: oslist: windows executable: win32/Go! Go! Radio 8-Bit Edition.exe type: default -'730780': +"730780": installDir: Kentucky Dash launch: - config: @@ -340156,22 +335168,22 @@ oslist: linux executable: Kentucky Dash.x86_64 type: default -'730820': +"730820": installDir: The Curse of Monkey Island launch: - - arguments: '-c monkey3.ini monkey3' + - arguments: "-c monkey3.ini monkey3" config: oslist: windows executable: ScummVM/scummvm.exe type: default workingdir: ScummVM - - arguments: '-c monkey3.ini monkey3' + - arguments: "-c monkey3.ini monkey3" config: oslist: macos executable: ScummVM/scummvm type: default workingdir: ScummVM -'730830': +"730830": installDir: Escape from Monkey Island launch: - config: @@ -340182,7 +335194,7 @@ oslist: windows executable: startConfig.bat type: config -'730840': +"730840": installDir: Burger Shop launch: - config: @@ -340193,7 +335205,7 @@ oslist: macos executable: BurgerShop.app/Contents/MacOS/BurgerShopSteam type: default -'730870': +"730870": installDir: Burger Shop 2 launch: - config: @@ -340204,33 +335216,33 @@ oslist: macos executable: BurgerShop2.app/Contents/MacOS/BurgerShop2Steam type: default -'730890': +"730890": installDir: Salvation in Corruption launch: - config: oslist: windows executable: Game.exe type: default -'730920': +"730920": installDir: Super Skelemania launch: - config: oslist: windows executable: SuperSkelemania.exe type: default -'730950': {} -'731040': +"730950": {} +"731040": nameLocalized: schinese: 无敌号 tchinese: 無敵號 -'731120': +"731120": installDir: Three Kingdoms VR - Jade Knight launch: - config: oslist: windows executable: K3AVR.exe type: vr -'731180': +"731180": installDir: Coffee Run launch: - config: @@ -340242,7 +335254,7 @@ oslist: windows executable: Coffee Run PC v1.0.exe type: none -'731190': +"731190": installDir: Loud or Quiet launch: - config: @@ -340253,37 +335265,37 @@ oslist: macos executable: LoudOrQuiet.app type: default -'731230': +"731230": installDir: Snake Road to apple launch: - config: oslist: windows executable: game.exe type: none -'731250': +"731250": installDir: ExoTanks launch: - - arguments: '-OnlineClient=SteamClient' + - arguments: "-OnlineClient=SteamClient" config: - osarch: '64' + osarch: "64" oslist: windows executable: ExoTanksMOBA.exe type: default -'731310': +"731310": installDir: undercrewed launch: - config: oslist: windows executable: undercrewed.exe type: default -'731320': +"731320": installDir: Speebot launch: - config: oslist: windows executable: Speebot.exe type: default -'731410': +"731410": installDir: Merv Reborn launch: - config: @@ -340291,49 +335303,49 @@ description: Launch executable: Merv Reborn.exe type: default -'731420': +"731420": installDir: Roguebreaker launch: - config: oslist: windows executable: roguebreaker_proj.exe type: default -'731430': +"731430": installDir: influence launch: - config: oslist: windows executable: influence.exe type: default -'731450': +"731450": installDir: DROP launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: drop.exe type: openvroverlay -'731490': +"731490": installDir: Crash Bandicoot - N Sane Trilogy launch: - executable: CrashBandicootNSaneTrilogy.exe type: none -'731500': +"731500": installDir: Cave Brawlers launch: - config: oslist: windows - executable: win\\game.exe + executable: "win\\\\game.exe" type: none - config: oslist: linux - executable: linux\\game.x86 + executable: "linux\\\\game.x86" type: none - config: oslist: macos - executable: mac\\mac.app\\Contents\\MacOS\\mac + executable: "mac\\\\mac.app\\\\Contents\\\\MacOS\\\\mac" type: none -'731510': +"731510": installDir: The Scrungeon Depths launch: - config: @@ -340344,26 +335356,26 @@ oslist: windows executable: Scrungeon_Windows.exe type: default -'731520': +"731520": installDir: Tooki launch: - config: oslist: windows executable: Tooki.exe type: default -'731560': +"731560": installDir: Boinks launch: - config: oslist: macos - executable: boinks.app\\Contents\\MacOS\\boinks + executable: "boinks.app\\\\Contents\\\\MacOS\\\\boinks" type: default - config: oslist: windows executable: boinks.exe type: default -'731580': {} -'731590': +"731580": {} +"731590": installDir: Midnight Ultra launch: - config: @@ -340378,14 +335390,14 @@ oslist: linux executable: midnightUltra.x86_64 type: default -'731600': +"731600": installDir: Heckpoint launch: - config: oslist: windows executable: Heckpoint.exe type: default -'731620': +"731620": installDir: HideOrDie launch: - config: @@ -340394,147 +335406,147 @@ type: none - config: betakey: development - description: 'Hide Or Die [Anti-Cheat]' + description: "Hide Or Die [Anti-Cheat]" executable: HideOrDie.exe type: none - config: betakey: overhaultesting - description: 'Hide Or Die [Anti-Cheat]' + description: "Hide Or Die [Anti-Cheat]" executable: HideOrDie.exe type: none -'731640': {} -'731650': +"731640": {} +"731650": installDir: Summer Islands launch: - config: oslist: windows - executable: windows-x64\\SummerIslands.exe + executable: "windows-x64\\\\SummerIslands.exe" type: default - config: oslist: macos - executable: mac-x64\\SummerIslands.app + executable: "mac-x64\\\\SummerIslands.app" type: default - config: - osarch: '64' + osarch: "64" oslist: linux - executable: linux-x64\\SummerIslands + executable: "linux-x64\\\\SummerIslands" type: default -'731670': +"731670": installDir: ERMO launch: - - arguments: '--in-process--gpu' + - arguments: "--in-process--gpu" config: oslist: windows executable: ERMO.exe type: default - config: oslist: macos - executable: ERMO.app\\Contents\\MacOS\\ERMO + executable: "ERMO.app\\\\Contents\\\\MacOS\\\\ERMO" type: default - - arguments: '--disable-gpu' + - arguments: "--disable-gpu" config: oslist: linux executable: ERMO type: default -'731680': +"731680": installDir: MeetHunter launch: - - arguments: '-windowed' + - arguments: "-windowed" config: oslist: windows executable: game.exe type: default -'731690': +"731690": installDir: Jingo launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: JingoVR.exe type: vr - config: - osarch: '64' + osarch: "64" oslist: windows executable: JingoVR.exe type: othervr -'73170': +"73170": installDir: Darkest Hour A HOI Game launch: - executable: Darkest Hour Launcher.exe -'731700': +"731700": installDir: Wild Downtown launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: test2.exe type: vr - config: - osarch: '64' + osarch: "64" oslist: windows executable: test2.exe type: othervr -'731720': +"731720": installDir: DOOMED launch: - config: oslist: windows executable: Launcher.exe type: default -'731730': +"731730": installDir: Wandering in space launch: - config: oslist: windows executable: Wandering_in_space.exe type: default -'731760': +"731760": installDir: Crawl Space The Mansion launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: Windows 64-bit\\Windows 64-bit.exe + executable: "Windows 64-bit\\\\Windows 64-bit.exe" type: default - config: - osarch: '64' + osarch: "64" oslist: windows - executable: Windows 64-bit\\Windows 64-bit.exe + executable: "Windows 64-bit\\\\Windows 64-bit.exe" type: vr -'731770': +"731770": installDir: Flightless launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: flightless-x64.exe type: default -'731790': +"731790": installDir: Fly Destroyer launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: FlyDestro.exe type: vr -'731820': +"731820": installDir: Final Storm launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: FinalStorm.exe type: default - config: oslist: macos - executable: Final Storm.app\\Contents\\MacOS\\Final Storm + executable: "Final Storm.app\\\\Contents\\\\MacOS\\\\Final Storm" type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: FinalStorm type: default -'731860': +"731860": installDir: Galactic Pocket Billiards launch: - config: @@ -340543,10 +335555,10 @@ type: default - config: oslist: linux - executable: \\GPB\\runner + executable: "\\\\GPB\\\\runner" type: default -'731870': {} -'731880': +"731870": {} +"731880": installDir: Remaya Idle launch: - config: @@ -340557,19 +335569,19 @@ oslist: macos executable: Remaya Idle.app type: none -'731890': +"731890": installDir: Horror Hunt launch: - executable: HorrorHunt.exe type: none -'73190': +"73190": installDir: Pride of Nations launch: - executable: PON.exe -'731910': +"731910": installDir: JumpSky launch: - - arguments: '-windowed' + - arguments: "-windowed" config: oslist: windows executable: JumpSky.exe @@ -340578,14 +335590,14 @@ oslist: macos executable: JumpSky.app type: default -'731920': +"731920": installDir: Government Simulator launch: - config: oslist: windows executable: gs.exe type: default -'731930': +"731930": installDir: Talk to Aya launch: - config: @@ -340600,7 +335612,7 @@ oslist: linux executable: Aya.sh type: none -'731940': +"731940": installDir: Bars and Balance launch: - config: @@ -340608,41 +335620,41 @@ description: Launch executable: PLAY.exe type: none -'731950': +"731950": installDir: The Homestead launch: - - arguments: '-audiomixer' + - arguments: "-audiomixer" config: oslist: windows executable: Homestead_Revised.exe type: vr -'732000': {} -'732010': +"732000": {} +"732010": installDir: BrainyJoy launch: - config: oslist: windows executable: BrainyJoy.exe type: default -'732030': +"732030": installDir: Pimiko Plus launch: - config: oslist: windows executable: Pimiko Plus.exe type: default -'732040': +"732040": installDir: Corridor 15 Alpha launch: - config: oslist: windows executable: Corridor 15 Alpha.exe type: none -'732050': +"732050": installDir: VoxelTycoon launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: VoxelTycoon.exe type: default @@ -340651,92 +335663,92 @@ executable: VoxelTycoon.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: VoxelTycoon type: default -'732060': +"732060": installDir: The Monk and the Warrior - The Heart of the King launch: - config: oslist: windows executable: Monk&Warrior.exe type: default -'732070': +"732070": installDir: Lost in the tomb launch: - config: oslist: windows executable: PaperKubik.exe type: none -'732090': +"732090": installDir: Dragon Perception launch: - executable: Dragon Perception.exe type: default -'73210': +"73210": installDir: Sengoku launch: - executable: Sengoku.exe -'732110': {} -'732140': {} -'732150': {} -'732160': +"732110": {} +"732140": {} +"732150": {} +"732160": installDir: The Wild Age launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: thewildage.exe type: none -'73220': +"73220": installDir: Supreme Ruler Cold War launch: - executable: SupremeRulerCW.exe -'732240': +"732240": installDir: Spacebourne launch: - config: oslist: windows executable: SpaceBourne.exe type: none -'732290': +"732290": installDir: WitchAndShadow launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: shadow.exe type: default -'732340': {} -'732360': +"732340": {} +"732360": installDir: Mercury Blue Mini Episode launch: - executable: MercuryBlue_MiniEpisode.exe type: none -'732370': +"732370": installDir: Juicy Realm launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: JuicyRealm.exe type: default - config: oslist: macos - executable: JuicyRealm.app\\Contents\\MacOS\\JuicyRealm + executable: "JuicyRealm.app\\\\Contents\\\\MacOS\\\\JuicyRealm" type: default nameLocalized: sc_schinese: 恶果之地 -'732390': +"732390": installDir: Grandpa and the Zombies launch: - config: oslist: windows executable: Hub.exe type: default -'732400': +"732400": installDir: PlataGO! launch: - config: @@ -340747,57 +335759,57 @@ oslist: linux executable: PlataGO.x86_64 type: none -'732430': +"732430": installDir: SuperFlight launch: - config: oslist: windows executable: superflight.exe type: default -'732440': +"732440": installDir: TRIM launch: - executable: TRIM.exe type: none -'732470': +"732470": installDir: Battleship Lonewolf launch: - config: oslist: windows executable: LoneWolf.exe type: default -'732480': +"732480": installDir: Jam Session VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: JamSessionVR.exe type: vr - config: - osarch: '64' + osarch: "64" oslist: windows executable: JamSessionVR.exe type: othervr -'732520': +"732520": installDir: Hinterhalt launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Hinterhalt (Win64).exe type: default - config: oslist: macos - executable: Contents\\MacOS\\Hinterhalt (Mac64) + executable: "Contents\\\\MacOS\\\\Hinterhalt (Mac64)" type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Hinterhalt (Linux64).x86_64 type: default -'732550': {} -'732670': +"732550": {} +"732670": installDir: Dyana Moto launch: - config: @@ -340808,11 +335820,11 @@ oslist: linux executable: dyanamotolinux64/nw type: default -'732680': +"732680": installDir: Gems launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: Gems.exe @@ -340820,28 +335832,28 @@ - config: oslist: macos description: Launch - executable: Gems.app\\Contents\\MacOS\\Gems + executable: "Gems.app\\\\Contents\\\\MacOS\\\\Gems" type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Gems.x86_64 type: default -'732690': +"732690": installDir: FNAFVRHelpWanted launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: freddys.exe type: vr - config: - osarch: '64' + osarch: "64" oslist: windows executable: freddys.exe type: default -'732730': +"732730": installDir: WT2 launch: - config: @@ -340854,7 +335866,7 @@ description: Launch executable: War Trigger 2.exe type: default -'732770': +"732770": installDir: Knight Terrors launch: - config: @@ -340865,14 +335877,14 @@ oslist: macos executable: Knight Terrors.app type: none -'732800': +"732800": installDir: Turtle Quest launch: - config: oslist: windows executable: Turtle Quest.exe type: default -'732810': +"732810": installDir: Slipstream launch: - config: @@ -340880,7 +335892,7 @@ executable: slipstream.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: slipstream type: default @@ -340895,13 +335907,13 @@ type: default - config: betakey: legacy - osarch: '64' + osarch: "64" oslist: linux executable: slipstream.AppImage type: default - config: betakey: closed-beta - osarch: '64' + osarch: "64" oslist: linux executable: slipstream type: default @@ -340910,23 +335922,23 @@ oslist: macos executable: slipstream type: default -'732820': +"732820": installDir: GreenBlood launch: - config: oslist: windows executable: GreenBlood.exe type: default -'732840': +"732840": installDir: Nullysun launch: - config: oslist: windows executable: Nullysun.exe type: default -'732870': {} -'732900': {} -'732930': +"732870": {} +"732900": {} +"732930": installDir: Wunderling launch: - config: @@ -340945,44 +335957,40 @@ betakey: nightly oslist: macos description: Play nightly branch - description_loc: - english: Play nightly branch executable: Underling.app/Contents/MacOS/Underling type: none - config: betakey: playtest oslist: macos description: Play playtest branch - description_loc: - english: Play playtest branch executable: Underling.app/Contents/MacOS/Underling type: none -'732950': +"732950": installDir: content launch: - config: oslist: windows - executable: Pairs-1.0-market\\Pairs.exe + executable: "Pairs-1.0-market\\\\Pairs.exe" type: default - config: oslist: macos - executable: Pairs-1.0-market\\Pairs.app + executable: "Pairs-1.0-market\\\\Pairs.app" type: default - config: oslist: linux - executable: Pairs-1.0-market\\Pairs.sh + executable: "Pairs-1.0-market\\\\Pairs.sh" type: default -'732970': {} -'732980': +"732970": {} +"732980": installDir: Keyscaper launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Keyscaper.exe type: none -'733010': {} -'733020': +"733010": {} +"733020": installDir: Zen Blocks launch: - config: @@ -340990,7 +335998,7 @@ executable: zenblocks.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows description: Zen Blocks 64-bit executable: ZenBlocks64.exe @@ -341000,7 +336008,7 @@ description: Zen Blocks executable: ZenBlocks.app/Content/MacOS/MacOSX type: default -'733030': +"733030": installDir: Famousity launch: - config: @@ -341013,7 +336021,7 @@ executable: famousity.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: Famousity (64 bit) executable: famousity.x86_64 @@ -341022,14 +336030,14 @@ oslist: macos executable: famousity.app type: default -'733040': +"733040": installDir: Cube Defender launch: - config: oslist: windows executable: CubeDefender.exe type: default -'733050': +"733050": installDir: Lines Infinite launch: - config: @@ -341044,14 +336052,14 @@ oslist: linux executable: Lines Infinite.x86_64 type: default -'733060': +"733060": installDir: The 37th Week launch: - config: oslist: windows executable: The37thWeek_Vive.exe type: vr -'733070': +"733070": installDir: Sudoku Universe launch: - config: @@ -341066,45 +336074,45 @@ oslist: linux executable: Sudoku Universe.x86_64 type: default -'733090': +"733090": installDir: Mustache Politics Shooter launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Mpshooter.exe type: default -'733110': +"733110": installDir: 8-Bit Adventures 2 launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows executable: Game.exe -'733180': +"733180": installDir: Destroy Space Aliens launch: - config: oslist: windows executable: DSA.exe type: default -'733190': {} -'733210': +"733190": {} +"733210": installDir: Neversong launch: - config: oslist: windows executable: Neversong.exe type: default - - arguments: '-screen-fullscreen 1' + - arguments: "-screen-fullscreen 1" config: - osarch: '32' + osarch: "32" oslist: linux executable: Neversong.x86 type: default - - arguments: '-screen-fullscreen 1' + - arguments: "-screen-fullscreen 1" config: - osarch: '64' + osarch: "64" oslist: linux executable: Neversong.x86_64 type: default @@ -341112,16 +336120,16 @@ oslist: macos executable: Neversong.app type: default -'733230': +"733230": installDir: Cyber Arena launch: - - arguments: '-windowed' + - arguments: "-windowed" config: oslist: windows executable: Cyber Arena.exe type: vr -'733240': {} -'733250': +"733240": {} +"733250": installDir: Mover launch: - config: @@ -341130,22 +336138,22 @@ type: none - config: oslist: macos - executable: MOVER.app\\Contents\\MacOS\\MOVER + executable: "MOVER.app\\\\Contents\\\\MacOS\\\\MOVER" type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: MOVER.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: MOVER.x86_64 type: none -'733260': {} -'733270': {} -'733290': {} -'733300': +"733260": {} +"733270": {} +"733290": {} +"733300": installDir: My Big Sister launch: - config: @@ -341158,38 +336166,38 @@ description: Game Settings executable: winsetup.exe type: option2 -'733340': +"733340": installDir: Hakuoki Edo Blossoms launch: - executable: HakuokiFlower.exe type: none nameLocalized: - japanese: ' 薄桜鬼 真改 華ノ章' + japanese: " 薄桜鬼 真改 華ノ章" tchinese: 薄櫻鬼 真改 華之章 -'733360': +"733360": installDir: SummonerVR launch: - - arguments: '-windowed' + - arguments: "-windowed" config: - osarch: '64' + osarch: "64" oslist: windows executable: SummonerVR v1.1(alpha).exe type: vr -'733420': +"733420": installDir: Fragments launch: - config: oslist: windows executable: Fragments.exe type: othervr -'733430': +"733430": installDir: The Escape launch: - config: oslist: windows executable: The Escape.exe type: default -'733440': +"733440": installDir: Real RC Flight Simulator launch: - config: @@ -341198,9 +336206,9 @@ type: default - config: oslist: macos - executable: RealRC.app\\Contents\\MacOS\\RealRC + executable: "RealRC.app\\\\Contents\\\\MacOS\\\\RealRC" type: default -'733460': +"733460": installDir: First Feudal launch: - config: @@ -341208,14 +336216,14 @@ executable: FirstFeudalLauncher.exe type: default - config: - betakey: 'beta-0.4,0.12.3(2019.02.12)' + betakey: "beta-0.4,0.12.3(2019.02.12)" description: Launcher for 0.4 and 0.12 versions executable: First_Feudal.exe type: option1 nameLocalized: schinese: 第一王权 tchinese: 第一王權 -'733480': +"733480": installDir: Flora launch: - config: @@ -341224,107 +336232,107 @@ type: default - config: oslist: macos - executable: macOS\\Flora.app\\Contents\\MacOS\\Flora + executable: "macOS\\\\Flora.app\\\\Contents\\\\MacOS\\\\Flora" type: default - config: oslist: linux - executable: Linux\\Flora.x86_64 + executable: "Linux\\\\Flora.x86_64" type: default -'733500': +"733500": installDir: LOGistICAL Russia launch: - config: oslist: windows executable: LogisticalApp.exe type: none -'733510': +"733510": installDir: LOGistICAL USA - Wisconsin launch: - config: oslist: windows executable: LogisticalApp.exe type: none -'733520': +"733520": installDir: LOGistICAL Switzerland launch: - config: oslist: windows executable: LogisticalApp.exe type: none -'733530': +"733530": installDir: LOGistICAL South Africa launch: - config: oslist: windows executable: LogisticalApp.exe type: none -'733540': +"733540": installDir: LOGistICAL Brazil launch: - config: oslist: windows executable: LogisticalApp.exe type: none -'733550': +"733550": installDir: Clash of Magic VR launch: - config: oslist: windows executable: VRWizard414.exe type: vr -'733560': +"733560": installDir: Snuffles & Co launch: - - arguments: '-jar Snuffles.jar' + - arguments: "-jar Snuffles.jar" config: oslist: linux executable: jre1.8.0_181/bin/java type: default - - arguments: '-jar Snuffles.jar' + - arguments: "-jar Snuffles.jar" config: oslist: windows - executable: jre1.8.0_181\\bin\\java.exe + executable: "jre1.8.0_181\\\\bin\\\\java.exe" type: default - - arguments: '-jar Snuffles.jar' + - arguments: "-jar Snuffles.jar" config: oslist: macos executable: jre1.8.0_181.jre/Contents/Home/bin/java type: default -'733570': +"733570": installDir: Loot Run launch: - config: oslist: windows executable: LootRun.exe type: default -'733610': +"733610": installDir: Tales of Winds Tomb of the Sol Empire launch: - config: oslist: windows executable: Game.exe type: none -'733650': {} -'733670': +"733650": {} +"733670": installDir: Award. Room of fear launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Award.exe type: default -'733690': - installDir: The Hospital Allison's Diary +"733690": + installDir: "The Hospital Allison's Diary" launch: - config: oslist: windows executable: TheHospitalAllisonsDiary_Steam_1.0.7.exe type: vr -'733710': +"733710": installDir: YOUFIGHT launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: YOUFIGHT.exe type: none @@ -341332,7 +336340,7 @@ oslist: macos executable: YOUFIGHT.app type: none -'733740': +"733740": installDir: Sakura Cupid launch: - config: @@ -341347,14 +336355,14 @@ oslist: linux executable: Sakura_Cupid.sh type: default -'733750': +"733750": installDir: Steel Eagle launch: - config: oslist: windows executable: Steel_Eagle.exe type: none -'733760': +"733760": installDir: MegaRace 2 launch: - config: @@ -341379,7 +336387,7 @@ oslist: linux executable: Launcher.exe type: default -'733770': +"733770": installDir: MegaRace 3 launch: - config: @@ -341390,96 +336398,96 @@ oslist: macos executable: MegaRace 3.app type: default -'733780': {} -'733790': +"733780": {} +"733790": installDir: Not Tonight launch: - - arguments: '-force glcore' + - arguments: "-force glcore" config: oslist: windows executable: NotTonight.exe type: default - - arguments: '-window-mode exclusive -force glcore' + - arguments: "-window-mode exclusive -force glcore" config: oslist: windows description: Play Not Tonight (Exclusive Window Mode) executable: NotTonight.exe type: none - - arguments: '-force-d3d11' + - arguments: "-force-d3d11" description: Play Not Tonight (DX11) executable: NotTonight.exe type: none -'733800': +"733800": installDir: Frosty Nights launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: FrostyNights\\FrostyNights.exe + executable: "FrostyNights\\\\FrostyNights.exe" type: default -'733810': - installDir: Clutter VI Leigh's Story +"733810": + installDir: "Clutter VI Leigh's Story" launch: - config: oslist: windows executable: Clutter6.exe type: none -'733820': +"733820": installDir: Highrisers launch: - config: oslist: windows executable: Highrisers.exe type: default -'733840': +"733840": installDir: Anime Bubble Pop launch: - config: oslist: windows executable: AnimeBubblePop.exe type: none -'733870': +"733870": installDir: King of the Eggs launch: - config: oslist: windows executable: KOTE.exe type: default -'733910': +"733910": installDir: Entropic Shop VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: EntropicShop.exe type: vr -'733940': +"733940": installDir: Cutie Paws launch: - config: oslist: windows executable: CutiePaws.exe type: default -'733980': {} -'733990': +"733980": {} +"733990": installDir: Gyroplosion launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: ItReallyIsGambling.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: itreallyisgambling.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: itreallyisgambling.x86 type: default -'7340': +"7340": installDir: Azada launch: - config: @@ -341488,39 +336496,39 @@ - config: oslist: macos executable: Azada.app -'734010': {} -'734020': +"734010": {} +"734020": installDir: Legendary DXP launch: - config: oslist: windows executable: Legendary.exe type: default -'734080': +"734080": installDir: Qajary Cat launch: - - executable: Qajary'sCat.exe + - executable: "Qajary'sCat.exe" type: default -'734090': +"734090": installDir: MoonBus launch: - config: oslist: windows executable: MoonBus.exe type: default -'734120': +"734120": installDir: Bonbon launch: - config: oslist: windows executable: Bonbon.exe type: default -'734140': {} -'734290': +"734140": {} +"734290": installDir: World Warfare launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: 二战风云测试版 executable: war2ii.exe @@ -341529,44 +336537,44 @@ oslist: macos executable: war2ii.app/Contents/MacOS/war2ii type: default -'734330': +"734330": installDir: Ultimate Coaster X launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: UltimateCoasterX.exe type: default - arguments: vr config: - osarch: '64' + osarch: "64" oslist: windows description: Ultimate Coaster X in VR executable: UltimateCoasterX.exe type: vr -'734350': +"734350": installDir: Rocket Armor launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: GPX2.exe type: vr -'734380': +"734380": installDir: Sacrament launch: - config: oslist: windows executable: MyGame.exe type: none -'734440': +"734440": installDir: Black Moon launch: - config: oslist: windows executable: Game.exe type: default -'734450': +"734450": installDir: Grimante launch: - config: @@ -341577,13 +336585,13 @@ oslist: macos executable: Grimante.app type: default -'734470': {} -'734480': {} -'734490': +"734470": {} +"734480": {} +"734490": installDir: Minimancer launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch in 64-bit mode executable: Minimancer.exe @@ -341593,29 +336601,29 @@ executable: Minimancer.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Minimancer.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Minimancer.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch in 32-bit mode executable: Minimancer_32.exe type: default -'734510': +"734510": installDir: Worshippers launch: - config: oslist: windows executable: Worshippers.exe type: none -'734540': +"734540": installDir: The Sapper launch: - config: @@ -341628,73 +336636,73 @@ type: none - config: oslist: macos - executable: TheSapper.app\\Contents\\MacOS\\TheSapper + executable: "TheSapper.app\\\\Contents\\\\MacOS\\\\TheSapper" type: none -'734550': +"734550": installDir: Wheel Riders Online launch: - config: oslist: windows executable: WarCarOnline.exe type: none -'734570': +"734570": installDir: Bitcoin Tycoon - Mining Simulation Game launch: - config: oslist: windows executable: BitcoinTycoon.exe type: default -'734580': +"734580": installDir: BattleRush launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Default executable: Cv2_Base/Binaries/Win64/Cv2_BaseClient_Shipping.exe type: none - config: - osarch: '32' + osarch: "32" oslist: windows description: Default executable: Cv2_Base/Binaries/Win32/Cv2_BaseClient_Shipping.exe type: none - config: betakey: devel - osarch: '64' + osarch: "64" oslist: windows description: Играть в BattleRush Development executable: Cv2_Base/Binaries/Win64/Cv2_BaseClient.exe type: none - config: betakey: devel - osarch: '32' + osarch: "32" oslist: windows description: Играть в BattleRush Development executable: Cv2_Base/Binaries/Win32/Cv2_BaseClient.exe type: none - config: betakey: debug - osarch: '64' + osarch: "64" oslist: windows description: Играть в BattleRush Development executable: Cv2_Base/Binaries/Win64/Cv2_BaseClient.exe type: none - config: betakey: debug - osarch: '64' + osarch: "64" oslist: windows description: Играть в BattleRush DebugGame executable: Cv2_Base/Binaries/Win64/Cv2_BaseClient_DebugGame.exe type: none -'734590': +"734590": installDir: Civil Warfare Another Bullet In The War launch: - config: oslist: windows executable: CivilWarfare.exe type: default -'734700': +"734700": installDir: The Lost Gardens launch: - config: @@ -341705,14 +336713,14 @@ oslist: macos executable: TheLostGardens.app type: none -'734730': +"734730": installDir: SteelShadows launch: - config: oslist: windows executable: SteelShadows.exe type: default -'734750': +"734750": installDir: PickCrafter launch: - config: @@ -341723,20 +336731,20 @@ oslist: macos executable: PickCrafter.app/Contents/MacOS/PickCrafter type: default -'734820': +"734820": installDir: Protect Me launch: - executable: protection.exe type: none -'734840': +"734840": installDir: Neon Defense 1 Pink Power launch: - config: oslist: windows executable: Neon Defense.exe type: default -'734870': - installDir: 'Houston, We Have Spinach!' +"734870": + installDir: "Houston, We Have Spinach!" launch: - config: oslist: macos @@ -341746,7 +336754,7 @@ oslist: windows executable: HWHS.exe type: default -'734890': +"734890": installDir: The Francy Droo & Friends Collection launch: - config: @@ -341771,7 +336779,7 @@ type: option3 - config: oslist: windows - description: Who Am I? The Let's Play Disaster + description: "Who Am I? The Let's Play Disaster" executable: Who Am I/Who Am I.exe type: option3 - config: @@ -341796,7 +336804,7 @@ type: option3 - config: oslist: macos - description: Who Am I? The Let's Play Disaster + description: "Who Am I? The Let's Play Disaster" executable: Who Am I/Who Am I.app type: option3 - config: @@ -341821,25 +336829,25 @@ type: option3 - config: oslist: linux - description: Who Am I? The Let's Play Disaster + description: "Who Am I? The Let's Play Disaster" executable: Who Am I/Who Am I.sh type: option3 -'734900': +"734900": installDir: Chemically Bonded launch: - config: oslist: windows - executable: cb_content\\Chemically Bonded.exe + executable: "cb_content\\\\Chemically Bonded.exe" type: default - config: oslist: macos - executable: cb_content\\Chemically Bonded.app\\Contents\\MacOS\\Chemically Bonded + executable: "cb_content\\\\Chemically Bonded.app\\\\Contents\\\\MacOS\\\\Chemically Bonded" type: default - config: oslist: linux - executable: cb_content\\Chemically Bonded.sh + executable: "cb_content\\\\Chemically Bonded.sh" type: default -'734910': +"734910": installDir: Eternal Hour Golden Hour launch: - config: @@ -341854,14 +336862,14 @@ oslist: linux executable: EternalHour_GoldenHour.sh type: default -'734920': +"734920": installDir: MEANDERS launch: - config: oslist: windows executable: ISLE.exe type: default -'734980': +"734980": installDir: Prosperity launch: - config: @@ -341876,22 +336884,22 @@ oslist: macos executable: Prosperity.app type: default -'735010': +"735010": installDir: FantasyofEden launch: - config: oslist: windows executable: FantasyofEden.exe type: default -'735030': +"735030": installDir: Oneirogen launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Oneirogen.exe type: vr -'735060': +"735060": installDir: The Forbidden Arts launch: - config: @@ -341902,22 +336910,22 @@ oslist: macos executable: The Forbidden Arts.app type: default -'735110': +"735110": installDir: Defenders of Tetsoidea launch: - config: oslist: windows executable: Game.exe type: default -'735240': {} -'735250': +"735240": {} +"735250": installDir: BLACKSTONE launch: - config: oslist: windows executable: Game.exe type: default -'735260': +"735260": installDir: meleng launch: - config: @@ -341928,18 +336936,18 @@ oslist: linux executable: meleng.x86 type: none -'735280': +"735280": installDir: EMERGENCY 20 launch: - config: oslist: windows - executable: bin\\em5_launcher.exe + executable: "bin\\\\em5_launcher.exe" type: default - config: oslist: macos executable: Emergency20.app type: default -'735290': +"735290": installDir: Genesis Noir launch: - config: @@ -341950,36 +336958,36 @@ oslist: macos executable: GenesisNoir.app type: default -'735320': +"735320": installDir: TimeTravelers launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: vive/vive/VR_yakan.exe type: vr - config: - osarch: '64' + osarch: "64" oslist: windows executable: oc/VR_yakan.exe type: othervr -'735350': +"735350": installDir: Bottle Pilgrim launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: BottlePilgrimRedux.exe type: default -'735410': +"735410": installDir: Task is to Survive launch: - config: oslist: windows executable: Task is to Survive.exe type: config -'735440': {} -'735450': +"735440": {} +"735450": installDir: Ninja Way launch: - config: @@ -341992,16 +337000,16 @@ type: none - config: oslist: macos - executable: Ninja Way.app\\Contents\\MacOS\\Ninja Way + executable: "Ninja Way.app\\\\Contents\\\\MacOS\\\\Ninja Way" type: none -'735460': +"735460": installDir: Highway Madness launch: - config: oslist: windows executable: HighwayMadness.exe type: vr -'735490': +"735490": installDir: The Dreams of Candlelight launch: - config: @@ -342012,7 +337020,7 @@ oslist: macos executable: Candlelight.app type: default -'735500': +"735500": installDir: Creepy Road launch: - config: @@ -342023,28 +337031,28 @@ oslist: macos executable: CreepyRoad.app type: default -'735520': +"735520": installDir: Time Killers CatchOut launch: - config: oslist: windows executable: CatchOut.exe type: none -'735530': +"735530": installDir: Time Killers Spot Race launch: - description: Start Spot Race executable: SpotRace.exe type: default -'735540': +"735540": installDir: NO ONE launch: - - arguments: '-oculus' + - arguments: "-oculus" config: oslist: windows executable: Final.exe type: othervr -'735550': +"735550": installDir: Crazy Soccer launch: - config: @@ -342061,14 +337069,14 @@ description: FootLOL Mayhem Edition executable: FootLOL Mayhem Edition.exe type: default -'735570': +"735570": installDir: Project Rhombus launch: - config: oslist: windows executable: Project_Rhombus.exe type: default -'735580': +"735580": installDir: RocketMan launch: - config: @@ -342141,17 +337149,17 @@ oslist: windows executable: 2018-10-15---14-10.exe type: default -'735590': {} -'735600': +"735590": {} +"735600": installDir: BANZAI ROYALE launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Play game executable: banzairoyale.exe type: default -'735620': +"735620": installDir: Die drei - Geheimnis der Schattenhelden launch: - config: @@ -342162,29 +337170,29 @@ oslist: macos executable: DDF_Schattenhelden_Steam.app type: default -'735650': +"735650": installDir: One More Night launch: - config: oslist: windows executable: BIOCLINIC.exe type: default -'735660': +"735660": installDir: Steamcraft launch: - config: oslist: windows executable: SteamCraft.exe type: default -'735680': +"735680": installDir: Forgotten Light launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Forgotten Light.exe type: default -'735700': +"735700": installDir: How To Meat People launch: - config: @@ -342195,26 +337203,26 @@ oslist: windows executable: HowToMeatPeople.exe type: vr -'735810': +"735810": installDir: CyberSurf launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: CyberSurfSteamBuild2.0.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: CyberSurfSteamBuild2.0.exe type: othervr - config: - osarch: '64' + osarch: "64" oslist: windows executable: CyberSurfSteamBuild2.0.exe type: openvroverlay -'735840': {} -'735850': +"735840": {} +"735850": installDir: Trailer Park Boys Greasy Money launch: - config: @@ -342225,11 +337233,11 @@ oslist: windows executable: game.exe type: none -'736050': +"736050": installDir: Kink launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: Kink.exe @@ -342237,80 +337245,75 @@ - config: oslist: macos description: Launch - executable: Kink.app\\Contents\\MacOS\\Kink + executable: "Kink.app\\\\Contents\\\\MacOS\\\\Kink" type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Kink.x86_64 type: default -'736110': +"736110": installDir: Deep Sorrow launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: DeepSorrow.exe type: default -'736180': +"736180": installDir: EX0 Dark Moon launch: - config: oslist: windows executable: ExoDarkMoon.exe type: default -'736190': +"736190": nameLocalized: english: Chinese Parents japanese: Chinese Parents schinese: 中国式家长 tchinese: 中國式家長 -'736200': +"736200": installDir: Nana in the Dark launch: - config: oslist: windows executable: Nana.exe type: none -'736220': +"736220": installDir: Post Scriptum launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Launch_PostScriptum.exe type: default - config: oslist: windows description: in Safe Mode (May prevent crash on startup) - description_loc: - english: in Safe Mode (May prevent crash on startup) - french: en Mode Sans échec (peut empêcher un plantage au démarrage) - german: im Abgesicherten Modus (kann einen Absturz beim Start verhindern) - italian: in Modalità provvisoria (può prevenire arresti anomali all'avvio) - executable: PostScriptum\\LaunchPS.bat + executable: "PostScriptum\\\\LaunchPS.bat" type: option1 -'736230': +"736230": installDir: Salt Thrust launch: - executable: Salt Thrust.exe type: none -'736240': +"736240": installDir: The Revolt Awakening launch: - config: oslist: windows executable: TheRevolt.exe type: default -'736250': +"736250": installDir: Amberskull launch: - config: oslist: windows executable: Amberskull.exe type: none -'736260': +"736260": installDir: Baba Is You launch: - config: @@ -342320,109 +337323,109 @@ type: default - config: oslist: macos - executable: Baba Is You.app\\Contents\\MacOS\\Chowdren + executable: "Baba Is You.app\\\\Contents\\\\MacOS\\\\Chowdren" type: default - config: oslist: linux executable: run.sh type: none -'736290': {} -'736300': {} -'736340': +"736290": {} +"736300": {} +"736340": installDir: VR Mini Bowling launch: - config: oslist: windows executable: VR Mini Bowling.exe type: vr -'736390': +"736390": installDir: Unforgiving Happiness launch: - config: oslist: windows executable: UnforgivingHappiness1.0.exe type: default -'736400': +"736400": installDir: Soundscape launch: - - arguments: '-vr' + - arguments: "-vr" config: oslist: windows description: Play on HTC Vive executable: Doitforthelove2.exe type: vr - - arguments: '-vr' + - arguments: "-vr" config: oslist: windows description: Play on Oculus Rift executable: Doitforthelove2.exe type: othervr -'736410': {} -'736420': +"736410": {} +"736420": installDir: Yag launch: - config: oslist: windows executable: yag.exe type: none -'736430': +"736430": installDir: Clicker bAdventure launch: - executable: ClickerbAdventure.exe type: none -'736460': {} -'736470': +"736460": {} +"736470": installDir: The Godbeast launch: - config: oslist: windows executable: tg1.exe type: none -'736480': +"736480": installDir: Glory & Honor launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: glory_honor.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: testing_GH.x86_64 type: default -'736510': {} -'736520': {} -'736540': +"736510": {} +"736520": {} +"736540": installDir: Spiki Game Box launch: - config: oslist: windows executable: Launch.exe type: default -'736570': +"736570": installDir: The Crooked Man launch: - executable: Game.exe type: none - executable: Config.exe type: config -'736590': +"736590": installDir: Harsh Doorstop launch: - config: oslist: windows - executable: HarshDoorstop\\Binaries\\Win64\\HarshDoorstop-Win64-Shipping.exe + executable: "HarshDoorstop\\\\Binaries\\\\Win64\\\\HarshDoorstop-Win64-Shipping.exe" type: default -'736600': {} -'736610': +"736600": {} +"736610": installDir: WAR Pig - Big Bang launch: - config: oslist: windows executable: War_Pig_Big_Bang_steam.exe type: default -'736710': +"736710": installDir: Yodanji launch: - config: @@ -342431,61 +337434,61 @@ type: none nameLocalized: japanese: 妖談寺 -'736720': +"736720": installDir: BAAM SQUAD launch: - config: oslist: windows executable: BAAM_SQUAD.exe type: vr -'736780': {} -'736810': +"736780": {} +"736810": installDir: The Raven Remastered launch: - config: oslist: windows - executable: raven_game\\Raven.exe + executable: "raven_game\\\\Raven.exe" type: default - config: oslist: macos executable: The Raven Remastered.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Linux/Raven type: default -'736820': +"736820": installDir: Knights of Honor II launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Sovereign.exe type: default -'736830': {} -'736840': +"736830": {} +"736840": installDir: aMAZE Double launch: - config: oslist: windows executable: aMAZE Double.exe type: default -'736850': +"736850": installDir: WeTheRevolution launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: We.TheRevolution_x86_64.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: We.TheRevolution.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: We.TheRevolution.x86_64 type: default @@ -342494,11 +337497,11 @@ executable: WeTheRevolution.app type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: We.TheRevolution_x86.exe type: default -'736860': +"736860": installDir: Around the World in 80 days launch: - config: @@ -342512,24 +337515,24 @@ nameLocalized: dutch: Zoek-en-Vind - De reis om de wereld in 80 dagen english: Hidden Objects - Around the World in 80 days - french: 'Objets Cachés : Le Tour du monde 80 jours' + french: "Objets Cachés : Le Tour du monde 80 jours" german: Wimmelbild - In 80 Tagen um die Welt italian: Trova oggetti - Il giro del mondo in 80 giorni koreana: 숨은그림찾기 - 80일간의 세계 일주 polish: Znajdź Ukryte Przedmioty - W 80 dni dokoła świata - russian: 'Поиск Предметов : За 80 дней Вокруг Света' + russian: "Поиск Предметов : За 80 дней Вокруг Света" schinese: 環遊世界八十天 - 隐藏的对象冒险游戏 spanish: Encontrar Objetos Ocultos - La vuelta al mundo en 80 días -'736910': {} -'736920': +"736910": {} +"736920": installDir: HereAndElsewhere launch: - config: oslist: windows executable: HereAndElsewhere.exe type: vr -'736930': - installDir: Delicious - Emily's 16 +"736930": + installDir: "Delicious - Emily's 16" launch: - config: oslist: macos @@ -342539,8 +337542,8 @@ oslist: windows executable: Delicious16.exe type: none -'737020': {} -'737050': +"737020": {} +"737050": installDir: SeaPlusPlus launch: - config: @@ -342556,22 +337559,22 @@ oslist: linux executable: nw type: default -'737070': +"737070": installDir: OlympicsVR launch: - config: oslist: windows executable: OlympicVRv3.exe type: vr -'737100': {} -'737260': +"737100": {} +"737260": installDir: Coaster of Carnage VR launch: - config: oslist: windows executable: CoasterofCarnage.exe type: vr -'737280': +"737280": installDir: Moose Invasion launch: - config: @@ -342579,15 +337582,15 @@ description: Launch executable: Moose Invasion.exe type: default -'737330': +"737330": installDir: Pixelord launch: - config: oslist: windows executable: pixelord.exe type: none -'737340': {} -'737380': +"737340": {} +"737380": installDir: Cutthroat launch: - config: @@ -342596,27 +337599,27 @@ type: default - config: oslist: macos - executable: Cutthroat.app\\Contents\\MacOS\\Universal + executable: "Cutthroat.app\\\\Contents\\\\MacOS\\\\Universal" type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Cutthroat.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Cutthroat.x86 type: default -'737390': +"737390": installDir: Batch17 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Batch17.exe type: default -'737470': +"737470": installDir: MC Lars 2 Brotherhood launch: - config: @@ -342627,47 +337630,47 @@ oslist: macos executable: Brotherhood.app type: default -'737490': +"737490": installDir: Journey to Luonto launch: - executable: Journey to Luonto.exe type: none -'737500': +"737500": installDir: Chio Hero launch: - config: betakey: beta - osarch: '64' + osarch: "64" oslist: windows executable: ChioHero.exe type: default nameLocalized: sc_schinese: 奇奥英雄传 schinese: 奇奥英雄传 -'737510': +"737510": installDir: Dead Forest launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: WindowsNoEditor\\Dreaming.exe + executable: "WindowsNoEditor\\\\Dreaming.exe" type: default -'737520': +"737520": installDir: Flynn Son of Crimson launch: - config: oslist: windows executable: Flynn Son of Crimson.exe type: default -'737530': - installDir: I'm Lost +"737530": + installDir: "I'm Lost" launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: fo/Dreaming.exe type: default -'737600': +"737600": installDir: 40 Days launch: - config: @@ -342676,19 +337679,19 @@ type: none - config: oslist: macos - executable: 40D.app\\Contents\\MacOS\\40D + executable: "40D.app\\\\Contents\\\\MacOS\\\\40D" type: none nameLocalized: schinese: 四十天 tchinese: 四十天 -'737640': +"737640": installDir: Pipes Racer launch: - config: oslist: windows executable: Pipes Racer.exe type: default -'737660': +"737660": installDir: The Deepest House launch: - config: @@ -342699,7 +337702,7 @@ - config: betakey: beta oslist: macos - executable: TDH.app\\Contents\\MacOS\\TDH + executable: "TDH.app\\\\Contents\\\\MacOS\\\\TDH" type: default - config: oslist: windows @@ -342707,42 +337710,42 @@ type: default - config: oslist: macos - executable: TDH.app\\Contents\\MacOS\\TDH + executable: "TDH.app\\\\Contents\\\\MacOS\\\\TDH" type: default -'737670': - installDir: Lost King's Lullaby +"737670": + installDir: "Lost King's Lullaby" launch: - config: oslist: windows - executable: Lost King's Lullaby.exe + executable: "Lost King's Lullaby.exe" type: none -'737690': +"737690": installDir: Shoggoth launch: - config: - osarch: '64' + osarch: "64" oslist: windows - description: Play Bernackels' Shoggoth (fullscreen) + description: "Play Bernackels' Shoggoth (fullscreen)" executable: Shoggoth.exe type: default - - arguments: '-windowed' - description: Play Bernackels' Shoggoth (window) + - arguments: "-windowed" + description: "Play Bernackels' Shoggoth (window)" executable: Shoggoth.exe type: none -'737710': +"737710": installDir: the Melody of Iris launch: - executable: MOI.exe type: none -'737730': +"737730": installDir: TrES-2b launch: - config: oslist: windows executable: Blackhole_Planet.exe type: default -'737750': {} -'737800': +"737750": {} +"737800": installDir: F1 2018 launch: - config: @@ -342786,7 +337789,7 @@ description: F1 2018 (DirectX 12) executable: F1_2018_dx12.exe type: option1 -'737810': +"737810": installDir: Fluffy Friends 2 launch: - config: @@ -342799,9 +337802,9 @@ type: none - config: oslist: macos - executable: Fluffy2.app\\Contents\\MacOS\\Fluffy2 + executable: "Fluffy2.app\\\\Contents\\\\MacOS\\\\Fluffy2" type: none -'737830': +"737830": installDir: Christmas Puzzle launch: - config: @@ -342812,14 +337815,14 @@ oslist: macos executable: ChristmasPuzzle.app/Contents/MacOS/christmas type: none -'737840': +"737840": installDir: GyroCube VR launch: - config: oslist: windows executable: GyroCubeVR.exe type: vr -'737870': +"737870": installDir: ConductDeluxe launch: - config: @@ -342830,19 +337833,19 @@ oslist: windows executable: conduct deluxe.exe type: default - - arguments: '-force-glcore' + - arguments: "-force-glcore" config: oslist: windows description: Conduct DELUXE! (OpenGL) executable: conduct deluxe.exe type: option1 - - arguments: '-force-glcore' + - arguments: "-force-glcore" config: oslist: macos description: Conduct DELUXE! (OpenGL) executable: Conduct Deluxe!.app/Contents/MacOS/Conduct Deluxe! type: option1 -'737880': +"737880": installDir: RIFF VR launch: - config: @@ -342855,48 +337858,48 @@ - description: RIFF MIDI Tool executable: MIDITool/MIDITool.exe type: option1 -'737890': +"737890": installDir: Catastronauts launch: - executable: Catastronauts.exe type: none -'737930': +"737930": installDir: Online Circle Pong launch: - config: oslist: windows executable: OnlineCirclePong.exe type: none -'737980': +"737980": installDir: The Grimsworth Reports Woodfall launch: - executable: nw.exe type: none -'738000': +"738000": installDir: Achievement Lurker Respectable Accomplishment launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows executable: Game.exe type: none -'738020': +"738020": installDir: ELMIA_forWindows_Ver2.00_Data launch: - config: oslist: windows executable: ELMIA_forWindows_Ver2.00.exe type: default -'738030': +"738030": installDir: Monjarmageddon launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Monjarmageddon.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Monjarmageddon.x86_64 type: none @@ -342904,21 +337907,21 @@ oslist: macos executable: Monjarmageddon.app type: none -'738060': - installDir: Freddy Fazbear's Pizzeria Simulator +"738060": + installDir: "Freddy Fazbear's Pizzeria Simulator" launch: - config: oslist: windows executable: Pizzeria Simulator.exe type: default -'738080': +"738080": installDir: Creatio Ex Nihilo Aition launch: - config: oslist: windows executable: RPG_RT.exe type: default -'738130': +"738130": installDir: Get Dis Money launch: - config: @@ -342933,30 +337936,30 @@ oslist: linux executable: getdismoney type: default -'738210': +"738210": installDir: G.O.D.Sport launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: gods.exe type: default -'738230': +"738230": installDir: High Noon launch: - config: oslist: windows executable: HighNoon.exe type: vr -'738260': +"738260": installDir: Survivor of Eschewal launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Survivor of Eschewal.exe type: default -'738270': +"738270": installDir: Ciel Fledge launch: - config: @@ -342967,88 +337970,88 @@ oslist: linux executable: Game/CielFledge type: default -'738290': +"738290": installDir: SpaceCoaster VR launch: - config: oslist: windows executable: Spacecoaster_vr.exe type: vr -'738350': +"738350": installDir: Dream Pets VR launch: - config: oslist: windows executable: PetsVR.exe type: vr -'738430': {} -'738440': +"738430": {} +"738440": installDir: MazeQuest - An Adventure RPG launch: - config: oslist: windows executable: MazeQuest 2.exe type: none -'738450': +"738450": installDir: KDT launch: - executable: KDT.exe type: vr -'738470': +"738470": installDir: God Of Thunder launch: - config: oslist: windows executable: GodOfThunder.bat type: default -'738480': +"738480": installDir: Find Pixel launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: FindPixel.exe type: default -'738500': +"738500": installDir: TheParallaxEffect launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: TheParallaxEffect.exe type: default -'738520': +"738520": installDir: Breathedge launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Breathedge.exe type: default nameLocalized: schinese: 呼吸边缘 tchinese: 呼吸边缘 -'738530': +"738530": installDir: BGMC launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: NewGundamBreaker.exe type: default -'738540': +"738540": installDir: Tales of Vesperia Definitive Edition launch: - config: betakey: dev-qa-release - osarch: '64' + osarch: "64" oslist: windows executable: TO_8_360_release.exe type: none - config: betakey: build-review - osarch: '64' + osarch: "64" oslist: windows executable: TOV_DE.exe type: default @@ -343066,85 +338069,85 @@ type: none - config: betakey: qa-shipping - osarch: '64' + osarch: "64" oslist: windows executable: TOV_DE.exe type: default - config: betakey: dev-support - osarch: '64' + osarch: "64" oslist: windows executable: TO_8_360_release.exe type: default - config: betakey: dev-int - osarch: '64' + osarch: "64" oslist: windows executable: TO_8_360_release.exe type: default - config: betakey: compat nvidia - osarch: '64' + osarch: "64" oslist: windows executable: TOV_DE.exe type: default - config: betakey: qa-release-day2-fixes_02 - osarch: '64' + osarch: "64" oslist: windows description: Release executable: TO_8_360_release.exe type: option1 - config: betakey: press - osarch: '64' + osarch: "64" oslist: windows executable: TOV_DE.exe type: default - config: betakey: qa-shipping-day1-fixes - osarch: '64' + osarch: "64" oslist: windows executable: TOV_DE.exe type: default - config: - betakey: 'qa-release-day1-fixes ' - osarch: '64' + betakey: "qa-release-day1-fixes " + osarch: "64" oslist: windows executable: TO_8_360_release.exe type: none - config: - osarch: '64' + osarch: "64" oslist: windows executable: TOV_DE.exe type: default - config: - betakey: 'qa-release-day2; qa-release-day3 ' - osarch: '64' + betakey: "qa-release-day2; qa-release-day3 " + osarch: "64" oslist: windows description: Release executable: TO_8_360_release.exe type: option1 - config: betakey: qa-release-day2-fixes - osarch: '64' + osarch: "64" oslist: windows description: Release executable: TO_8_360_release.exe type: option1 -'738550': +"738550": installDir: Spike Volleyball launch: - config: oslist: windows executable: ProVolley.exe type: default -'738560': +"738560": installDir: Fariwalk - The Prelude launch: - executable: Fariwalk - The Prelude.exe type: none -'738580': +"738580": installDir: Wars and Battles Normandy launch: - config: @@ -343155,7 +338158,7 @@ oslist: macos executable: Normandy.app type: none -'738590': +"738590": installDir: Wars and Battles October War launch: - config: @@ -343166,14 +338169,14 @@ oslist: macos executable: OctoberWar.app type: none -'738600': +"738600": installDir: Odyssey launch: - executable: OdysseyVR.exe type: default - executable: OdysseyVR.exe type: vr -'738610': +"738610": installDir: Train Station Simulator launch: - config: @@ -343188,7 +338191,7 @@ oslist: macos executable: Train_Station_Simulator.app type: none -'738620': +"738620": installDir: The Reaction launch: - config: @@ -343196,16 +338199,16 @@ executable: TheReaction.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: TheReaction.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: TheReaction.x86_64 type: default -'738650': +"738650": installDir: Seers Isle launch: - config: @@ -343217,33 +338220,33 @@ executable: Seers-Isle.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Seers Isle type: default -'738690': {} -'738700': +"738690": {} +"738700": installDir: Secret of the Rendrasha Blade launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows executable: Game.exe type: default -'738720': +"738720": installDir: Bug Attack! launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: nw.exe type: default -'738730': +"738730": installDir: Family Jewels launch: - executable: FJ.exe type: none -'738760': +"738760": installDir: the Line launch: - config: @@ -343252,18 +338255,18 @@ type: default - config: oslist: macos - executable: theLine.app\\Contents\\MacOS\\theLine + executable: "theLine.app\\\\Contents\\\\MacOS\\\\theLine" type: none - config: oslist: linux executable: theLine.x86 type: none -'738770': {} -'738820': +"738770": {} +"738820": installDir: Kubix launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: Kubix.exe @@ -343271,15 +338274,15 @@ - config: oslist: macos description: Launch - executable: Kubix.app\\Contents\\MacOS\\Kubix + executable: "Kubix.app\\\\Contents\\\\MacOS\\\\Kubix" type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Kubix.x86_64 type: default -'738840': +"738840": installDir: BrutalAlice1 launch: - config: @@ -343293,16 +338296,16 @@ type: default nameLocalized: japanese: わがままアリスと百日戦争 -'738860': +"738860": installDir: Jetstream launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Jetstream.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Jetstream.sh type: default @@ -343310,40 +338313,40 @@ oslist: macos executable: Jetstream.app type: default -'738880': +"738880": installDir: Pain of War launch: - config: oslist: windows executable: Launcher.exe type: default -'738900': - installDir: Winter's Symphonies +"738900": + installDir: "Winter's Symphonies" launch: - config: oslist: windows - executable: Winter's Symphonies\\WS.exe + executable: "Winter's Symphonies\\\\WS.exe" type: default -'738920': +"738920": installDir: Sexy Serial Killer launch: - config: oslist: windows executable: ssk.exe type: default -'738950': {} -'739000': +"738950": {} +"739000": installDir: Grobda Remix launch: - config: oslist: windows executable: kotokata.exe type: none -'739010': +"739010": installDir: The Blue Box launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TheBlueBox.exe type: default @@ -343355,21 +338358,21 @@ oslist: linux executable: TheBlueBox type: default -'739030': +"739030": installDir: The Fog launch: - config: oslist: windows executable: The Fog.exe type: default -'739050': +"739050": installDir: Deck Casters launch: - config: oslist: windows executable: DeckCasters.exe type: none -'739080': +"739080": installDir: 9 Monkeys of Shaolin launch: - config: @@ -343378,32 +338381,32 @@ type: default - config: oslist: linux - executable: 9MonkeysOfShaolin\\Binaries\\Linux\\ExampleGame-Linux-Shipping + executable: "9MonkeysOfShaolin\\\\Binaries\\\\Linux\\\\ExampleGame-Linux-Shipping" type: none -'739090': +"739090": installDir: Bygone Worlds Ephesus launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Ephesus.exe type: vr -'739100': +"739100": installDir: BlinkRogues launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: BlinkGame.exe type: default -'739130': +"739130": installDir: The Executioner launch: - config: oslist: windows executable: TheExecutioner.exe type: default -'739170': +"739170": installDir: Parker & Lane 2 launch: - config: @@ -343412,9 +338415,9 @@ type: default - config: oslist: macos - executable: ParkerAndLane2.app\\Contents\\MacOS\\ParkerAndLane2 + executable: "ParkerAndLane2.app\\\\Contents\\\\MacOS\\\\ParkerAndLane2" type: default -'739180': +"739180": installDir: AchBall launch: - config: @@ -343429,7 +338432,7 @@ oslist: linux executable: achball type: default -'739190': +"739190": installDir: AntVentor launch: - config: @@ -343441,17 +338444,17 @@ executable: AntVentor.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: AntVentor.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: AntVentor.x86 type: default -'739200': {} -'739210': +"739200": {} +"739210": installDir: My Coloring Book Transport launch: - config: @@ -343464,9 +338467,9 @@ type: none - config: oslist: macos - executable: My Coloring Book - Transport.app\\Contents\\MacOS\\My Coloring Book - Transport + executable: "My Coloring Book - Transport.app\\\\Contents\\\\MacOS\\\\My Coloring Book - Transport" type: none -'739220': +"739220": installDir: Ark Noir launch: - config: @@ -343479,7 +338482,7 @@ type: default nameLocalized: japanese: 箱舟のノワール -'739240': +"739240": installDir: The Ghosts of Hackney Mills launch: - config: @@ -343490,7 +338493,7 @@ oslist: macos executable: nwjs.app type: none -'739260': +"739260": installDir: Golden Hornet launch: - config: @@ -343500,7 +338503,7 @@ nameLocalized: english: Golden Hornet koreana: 황금말벌 (Golden Hornet) -'739290': +"739290": installDir: Dark Old Sun launch: - config: @@ -343515,8 +338518,8 @@ oslist: linux executable: darkoldsun.x86 type: default -'739350': {} -'739360': +"739350": {} +"739360": installDir: Polly World launch: - config: @@ -343527,110 +338530,108 @@ oslist: macos executable: Poly Island.app type: default -'739410': +"739410": installDir: Zorbits launch: - config: oslist: windows executable: ZorbitsOrbits.exe type: none -'739630': +"739630": installDir: Phasmophobia launch: - - arguments: '--enable-vr' + - arguments: "--enable-vr" description: Phasmophobia in VR (exc. Steam Home) - description_loc: - english: Phasmophobia in VR (exc. Steam Home) executable: Phasmophobia.exe type: option1 - executable: Phasmophobia.exe type: default - - arguments: '--enable-vr' + - arguments: "--enable-vr" executable: Phasmophobia.exe type: vr -'739650': +"739650": installDir: Drake Hollow launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: DrakeHollow.exe type: default -'739660': +"739660": installDir: Battle Trendaria launch: - executable: BattleTrendaria.exe type: default -'739690': +"739690": installDir: Now Man Flies launch: - executable: nw.exe type: none -'739710': +"739710": installDir: Monsterplants vs Bowling launch: - config: oslist: windows executable: MonsterplantsVsBowling.exe type: vr - - arguments: '-vrmode oculus ' + - arguments: "-vrmode oculus " config: oslist: windows executable: MonsterplantsVsBowling.exe type: othervr -'739720': +"739720": installDir: Penkura launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Penkura.exe type: none -'739730': +"739730": installDir: Awe of Despair launch: - arguments: /Game/ApartmentMapMainMenu.umap config: oslist: windows - executable: WindowsNoEditor\\AweOfDespair.exe + executable: "WindowsNoEditor\\\\AweOfDespair.exe" type: none -'739780': +"739780": installDir: Level 99 Axe Rage launch: - config: oslist: windows executable: nw.exe type: default -'739800': +"739800": installDir: Verzaken launch: - - arguments: '-vrforce -force-d3d11' + - arguments: "-vrforce -force-d3d11" config: betakey: steamvr - osarch: '64' + osarch: "64" oslist: windows - executable: VR\\VerzakenVRFinal(a).exe + executable: "VR\\\\VerzakenVRFinal(a).exe" type: vr - - arguments: '-vrskip' + - arguments: "-vrskip" config: oslist: windows description: Pancake Version - executable: Pancake\\verzaken.exe + executable: "Pancake\\\\verzaken.exe" type: none - arguments: "-show-screen-selector\t" config: betakey: steamvr - osarch: '64' + osarch: "64" oslist: windows description: Verzaken! VR Config - executable: VR\\VerzakenVRFinal(a).exe + executable: "VR\\\\VerzakenVRFinal(a).exe" type: none -'739810': +"739810": installDir: Odd Island launch: - executable: Odd Island.exe type: default -'739820': +"739820": installDir: Wraithmind launch: - config: @@ -343642,11 +338643,11 @@ executable: wraithmind.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: wraithmind.x86_64 type: none -'739850': +"739850": installDir: Goblins Keep Coming - Tower Defense launch: - config: @@ -343654,40 +338655,40 @@ executable: gkc-td.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: gkc-td.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: linux description: linux 32bit executable: gkc-td.x86 type: default -'739880': +"739880": installDir: windows_content launch: - config: oslist: windows executable: Game.exe type: none -'739890': +"739890": installDir: Dogstar launch: - config: oslist: windows executable: Dogstar.exe type: default -'739910': {} -'739930': {} -'739940': +"739910": {} +"739930": {} +"739940": installDir: Guide The Ball launch: - config: oslist: windows executable: GuideTheBall.exe type: default -'739950': +"739950": installDir: FruitAttacksVR launch: - arguments: Windows @@ -343695,15 +338696,15 @@ oslist: windows executable: FAVR.exe type: vr -'739960': +"739960": installDir: Kokoda VR launch: - config: oslist: windows executable: KokodaVRb010.exe type: vr -'739980': - installDir: Let`s not stay friends +"739980": + installDir: "Let`s not stay friends" launch: - config: oslist: windows @@ -343717,18 +338718,18 @@ oslist: macos executable: FRENZzone_NEW.app type: none -'739990': +"739990": installDir: Lucky Panda launch: - config: oslist: windows executable: Lucky Panda.exe type: none -'7400': +"7400": installDir: Ricochet Lost Worlds launch: - executable: Ricochet.exe -'740000': +"740000": installDir: jjxcz launch: - config: @@ -343739,22 +338740,22 @@ oslist: macos executable: 绝境幸存者.app type: default -'740040': +"740040": installDir: Play With Gilbert launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: PlayWithGilbert.exe type: default -'740060': +"740060": installDir: Virality launch: - config: oslist: windows executable: Virality.exe type: default -'740070': +"740070": installDir: Dead Link Pages Torn launch: - config: @@ -343769,7 +338770,7 @@ oslist: linux executable: dlpt.x86_64 type: default -'740080': +"740080": installDir: Deadly Days launch: - config: @@ -343784,7 +338785,7 @@ oslist: linux executable: Deadly Days.x86_64 type: default -'740090': +"740090": installDir: Lost Grimoires 3 The Forgotten Well launch: - config: @@ -343793,13 +338794,13 @@ executable: LostGrimoires3.exe type: none - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: LostGrimoires3_i386 type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: LostGrimoires3_amd64 @@ -343809,19 +338810,19 @@ description: Launch executable: mac_steam.app/Contents/MacOS/mac_steam type: none -'740100': {} -'740110': {} -'740120': {} -'740130': +"740100": {} +"740110": {} +"740120": {} +"740130": installDir: Tales of Arise launch: - - executable: Arise\\Binaries\\Win64\\Tales of Arise.exe + - executable: "Arise\\\\Binaries\\\\Win64\\\\Tales of Arise.exe" type: none nameLocalized: koreana: 테일즈 오브 어라이즈 schinese: 破晓传奇 tchinese: 破曉傳奇 -'740150': +"740150": installDir: BurnClownBurn launch: - config: @@ -343832,35 +338833,35 @@ oslist: macos executable: BurnClownBurn_mac.app type: none -'740170': +"740170": installDir: Unexpected End launch: - config: oslist: windows executable: UnexpectedEnd.exe type: default -'740190': +"740190": installDir: Mistake Souls launch: - config: oslist: windows executable: Mistake Souls.exe type: default -'740200': +"740200": installDir: The Mercury Man launch: - config: oslist: windows executable: Mercury man.exe type: none -'740220': +"740220": installDir: PeoplePackages launch: - config: oslist: windows executable: PeoplePackages.exe type: default -'740230': +"740230": installDir: Just Ski launch: - config: @@ -343871,37 +338872,37 @@ oslist: macos executable: JustSki.app type: default -'740240': +"740240": installDir: Snake Eyes Dungeon launch: - config: oslist: windows executable: Snake Eyes Dungeon.exe type: none -'740260': +"740260": installDir: Crimson Imprint plus -Nonexistent Christmas- launch: - config: oslist: windows executable: ciplus.exe type: default -'740280': +"740280": installDir: Preventive Strike launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: PRST.exe type: default -'740290': +"740290": installDir: Irony Of Nightmare launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: IronyOfNightmare.exe type: default -'740300': +"740300": installDir: Hide N Seek VR launch: - config: @@ -343914,7 +338915,7 @@ description: Debug executable: HNSVR_test2017.exe type: vr -'740310': +"740310": installDir: Transmogrify launch: - config: @@ -343924,51 +338925,51 @@ - config: oslist: linux executable: Transmogrify.x86_64 -'740320': +"740320": installDir: Djilyaro launch: - config: oslist: windows executable: Djilyaro.exe type: default -'740340': +"740340": installDir: NeuroMatrix launch: - config: oslist: windows executable: NeuroMatrix.exe type: default -'740350': +"740350": installDir: Stay Woke Etheral Edition launch: - config: oslist: windows executable: Game.exe type: default -'740390': +"740390": installDir: Terrorist Elimination launch: - config: oslist: windows executable: terroristelimination.exe type: default -'740400': +"740400": installDir: ElevatorToTheMoon launch: - config: oslist: windows executable: steam_vr_ettm_client.exe type: vr -'740410': +"740410": installDir: Puzzle Chambers launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Puzzle Chambers.exe type: none - config: - osarch: '32' + osarch: "32" oslist: windows executable: Puzzle Chambers.exe type: none @@ -343976,7 +338977,7 @@ oslist: macos executable: Puzzle Chambers.app type: none -'740450': +"740450": installDir: Alien Planet launch: - config: @@ -343988,16 +338989,16 @@ executable: AlienPlanet.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: AlienPlanet.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: AlienPlanet.x86_64 type: default -'740470': +"740470": installDir: Echoed World launch: - config: @@ -344005,51 +339006,51 @@ description: Standart run executable: EchoedWorld.exe type: default -'740500': +"740500": installDir: Eseapner launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Eseapner.exe type: none -'740520': - installDir: Mystery Tales The Twilight World Collector's Edition +"740520": + installDir: "Mystery Tales The Twilight World Collector's Edition" launch: - config: oslist: windows executable: MysteryTales_TheTwilightWorld_CE.exe type: default -'740560': +"740560": installDir: star of lemutia launch: - config: oslist: windows executable: Star Of Lemutia.exe type: default -'740570': +"740570": installDir: illiegame launch: - config: oslist: windows executable: nw.exe type: default -'740580': {} -'740600': +"740580": {} +"740600": installDir: GACHIMUCHI launch: - config: oslist: windows executable: GACHIMUCHI.exe type: default -'740720': +"740720": installDir: Masked and Mysterious launch: - config: oslist: windows executable: MaM.exe type: default -'740730': +"740730": installDir: Station Commander launch: - config: @@ -344057,7 +339058,7 @@ executable: statc_lin_x86.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: statc_lin_x86_64.x86_64 type: none @@ -344066,7 +339067,7 @@ executable: statc_lin_x86_universal.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: windows executable: statc_win_x86_64.exe type: none @@ -344086,19 +339087,19 @@ oslist: macos executable: statc_osx_x86_universal.app type: none -'740740': +"740740": installDir: CRUSH & SQUASH launch: - executable: CRUSH_AND_SQUASH.exe type: default -'740780': +"740780": installDir: OnsenVR launch: - config: oslist: windows executable: OnsenVR.exe type: vr -'740790': +"740790": installDir: Goldmine launch: - config: @@ -344110,46 +339111,46 @@ executable: Goldmine.app/Contents/MacOS/Goldmine type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: Goldmine type: none -'740810': +"740810": installDir: PleasurePuzzleWorkshop launch: - config: oslist: windows executable: PP3.exe type: default -'740950': +"740950": installDir: OverKill launch: - config: oslist: windows executable: OVERKILL.exe type: default -'740990': +"740990": installDir: Wurst Defender Coop Edition launch: - config: oslist: windows executable: Wurst Defender Coop Edition.exe type: none -'741010': +"741010": installDir: BallGame launch: - config: oslist: windows executable: BallGame.exe type: default -'741080': +"741080": installDir: Pterodalien launch: - config: oslist: windows executable: Game.exe type: default -'741100': +"741100": installDir: Save the Halloween launch: - config: @@ -344157,7 +339158,7 @@ description: Launch executable: Save the Halloween.exe type: default -'741110': +"741110": installDir: Blackshift launch: - config: @@ -344168,28 +339169,28 @@ oslist: macos executable: Blackshift.app/Contents/MacOS/Blackshift type: none -'741120': +"741120": installDir: Solar System launch: - executable: Solar System.exe type: none -'741140': +"741140": installDir: Baldr Sky launch: - executable: BaldrSky.exe type: default -'741250': +"741250": installDir: The Sand Man launch: - executable: Game.exe type: none - executable: Config.exe type: config -'741260': +"741260": installDir: Mobile Empire launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Mobile.exe type: default @@ -344199,59 +339200,59 @@ type: default nameLocalized: sc_schinese: 手机帝国 -'741270': {} -'741320': +"741270": {} +"741320": installDir: The Song of Terminus 終焉的迴響護界者之歌 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TheSongOfTerminus.exe type: default -'741340': {} -'741360': +"741340": {} +"741360": installDir: VR Hybrid War 2117 launch: - config: oslist: windows executable: VRHybridWar2117.exe type: vr -'741390': +"741390": installDir: sgo-meijin launch: - config: oslist: windows executable: sgo-meijinst.exe type: default -'741400': +"741400": installDir: Wands launch: - config: oslist: windows executable: Wands.exe type: vr -'741430': +"741430": installDir: Titanic VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: in monitor mode executable: TitanicVR.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows description: with SteamVR executable: TitanicVR.exe type: vr - config: - osarch: '64' + osarch: "64" oslist: windows description: with Oculus executable: TitanicVR.exe type: othervr -'741450': +"741450": installDir: Immortal Heroes launch: - config: @@ -344266,30 +339267,30 @@ oslist: macos executable: Immortal Heroes.app type: none -'741460': {} -'741490': +"741460": {} +"741490": installDir: Atlantis VR launch: - config: oslist: windows executable: AtlantisVR.exe type: vr -'741500': - installDir: 'John, The Zombie' +"741500": + installDir: "John, The Zombie" launch: - config: oslist: windows executable: john the zombie.exe type: default -'741510': +"741510": installDir: The Hong Kong Massacre launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: THKM.exe type: default -'741520': +"741520": installDir: ProfessorLupo launch: - config: @@ -344300,9 +339301,9 @@ oslist: macos executable: ProfessorLupo.app type: none -'741550': {} -'741560': {} -'741590': +"741550": {} +"741560": {} +"741590": installDir: Hex Commander Fantasy Heroes launch: - config: @@ -344317,7 +339318,7 @@ oslist: linux executable: HexHeroes.x86_64 type: default -'741620': +"741620": installDir: SealGuardian launch: - config: @@ -344328,20 +339329,20 @@ oslist: macos executable: SealGuardian.app type: default -'741630': {} -'741650': +"741630": {} +"741650": installDir: Holy TD Epic tower defence launch: - config: oslist: windows executable: HolyTD.exe type: none -'741670': +"741670": installDir: Easy Red launch: - config: oslist: windows - executable: EasyRed\\EasyRed.exe + executable: "EasyRed\\\\EasyRed.exe" type: default - config: oslist: macos @@ -344349,11 +339350,11 @@ type: default - config: oslist: linux - executable: EasyRedLinux\\EasyRed.x86 + executable: "EasyRedLinux\\\\EasyRed.x86" type: default -'741720': {} -'741730': {} -'741770': +"741720": {} +"741730": {} +"741770": installDir: SantasVacation launch: - config: @@ -344364,29 +339365,29 @@ oslist: macos executable: SantasVacation.app type: none -'741820': +"741820": installDir: Typhon Hunter launch: - - arguments: '-nohmd' + - arguments: "-nohmd" config: - osarch: '64' + osarch: "64" oslist: windows - executable: Pinkeye\\Binaries\\Win64\\TyphonHunter.exe + executable: "Pinkeye\\\\Binaries\\\\Win64\\\\TyphonHunter.exe" type: default - config: - osarch: '64' + osarch: "64" oslist: windows - executable: Pinkeye\\Binaries\\Win64\\TyphonHunter.exe + executable: "Pinkeye\\\\Binaries\\\\Win64\\\\TyphonHunter.exe" type: vr -'741830': {} -'741930': +"741830": {} +"741930": installDir: Hydroactive launch: - config: oslist: windows executable: Game.exe type: none -'741990': +"741990": installDir: Wild Animal Sports launch: - config: @@ -344397,7 +339398,7 @@ oslist: macos executable: WildAnimalSports.app type: default -'742010': +"742010": installDir: Lab 03 Yrinth launch: - config: @@ -344407,26 +339408,26 @@ type: option1 - config: oslist: windows - ownsdlc: '742020' - description: 'Lab 03 Yrinth : Master Levels' + ownsdlc: "742020" + description: "Lab 03 Yrinth : Master Levels" executable: dlc1/Lab03YrinthMasterLevels type: option2 - config: oslist: windows - ownsdlc: '749230' - description: 'Lab 03 Yrinth : Master Levels 2' + ownsdlc: "749230" + description: "Lab 03 Yrinth : Master Levels 2" executable: dlc2/Lab03YrinthInsaneLevels.exe type: option3 - config: oslist: macos - ownsdlc: '742020' - description: 'Lab 03 Yrinth : Master Levels' + ownsdlc: "742020" + description: "Lab 03 Yrinth : Master Levels" executable: Lab03YrinthMasterLevels.app/Contents/MacOS/Lab03YrinthMasterLevels type: option2 - config: oslist: macos - ownsdlc: '749230' - description: 'Lab 03 Yrinth : Master Levels 2' + ownsdlc: "749230" + description: "Lab 03 Yrinth : Master Levels 2" executable: Lab03YrinthInsaneLevels.app/Contents/MacOS/Mac type: option3 - config: @@ -344436,8 +339437,8 @@ type: option1 - config: oslist: linux - ownsdlc: '749230' - description: 'Lab 03 Yrinth : Master Levels 2' + ownsdlc: "749230" + description: "Lab 03 Yrinth : Master Levels 2" executable: Lab03YrinthInsaneLevels-LinuxU/Lab03YrinthInsaneLevels.x86 type: option3 - config: @@ -344447,15 +339448,15 @@ type: option1 - config: oslist: linux - ownsdlc: '742020' - description: 'Lab 03 Yrinth : Master Levels' + ownsdlc: "742020" + description: "Lab 03 Yrinth : Master Levels" executable: Lab03YrinthMasterLevels-LinuxU/Lab03YrinthMasterLevels.x86 type: option2 -'742030': +"742030": installDir: MahJongGame launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: MahJong.exe @@ -344463,45 +339464,45 @@ - config: oslist: macos description: Launch - executable: MahJong.app\\Contents\\MacOS\\MahJong + executable: "MahJong.app\\\\Contents\\\\MacOS\\\\MahJong" type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: MahJong.x86_64 type: default -'742120': +"742120": installDir: DRAGON QUEST XI launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Shipping build - executable: Game\\Binaries\\Win64\\DRAGON QUEST XI.exe + executable: "Game\\\\Binaries\\\\Win64\\\\DRAGON QUEST XI.exe" type: none - - arguments: '-Installed' + - arguments: "-Installed" config: betakey: AutoUploadWithDebug - osarch: '64' + osarch: "64" oslist: windows description: Test build (Debug mode enabled) - executable: Game\\Binaries\\Win64\\DRAGON QUEST XI (Test).exe + executable: "Game\\\\Binaries\\\\Win64\\\\DRAGON QUEST XI (Test).exe" type: none - config: betakey: AutoUploadWithDebug - osarch: '64' + osarch: "64" oslist: windows description: Shipping build (No Denuvo) - executable: Game\\Binaries\\Win64\\DRAGON QUEST XI (No Denuvo).exe + executable: "Game\\\\Binaries\\\\Win64\\\\DRAGON QUEST XI (No Denuvo).exe" type: none - config: - osarch: '64' + osarch: "64" oslist: windows description: Graphics setting tool - executable: Game\\Binaries\\Win64\\OverwriteSettings.exe + executable: "Game\\\\Binaries\\\\Win64\\\\OverwriteSettings.exe" type: none -'742150': +"742150": installDir: Heart of the House launch: - config: @@ -344516,7 +339517,7 @@ oslist: linux executable: HeartOfTheHouse type: none -'742170': +"742170": installDir: Dr._Frank_Build_A_Boyfriend launch: - config: @@ -344531,27 +339532,27 @@ oslist: linux executable: Dr._Frank_1.0.sh type: default -'742220': +"742220": installDir: Escape Camp Waddalooh launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: esc_cmp_waddalooh.exe type: vr -'742230': +"742230": installDir: A Day For A Kitten launch: - config: oslist: windows executable: A Day For A Kitten.exe type: default -'742250': +"742250": installDir: OPUS Rocket of Whispers launch: - config: oslist: macos - executable: OPUS Rocket of Whispers.app\\Contents\\MacOS\\OPUS Rocket of Whispers + executable: "OPUS Rocket of Whispers.app\\\\Contents\\\\MacOS\\\\OPUS Rocket of Whispers" type: default - config: oslist: windows @@ -344561,17 +339562,17 @@ japanese: OPUS 魂の架け橋 schinese: OPUS:灵魂之桥 tchinese: OPUS:靈魂之橋 -'742300': +"742300": installDir: Mega Man 11 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: game.exe type: default nameLocalized: japanese: ロックマン11 運命の歯車!! -'742340': +"742340": installDir: Super BoxMan Ultra launch: - config: @@ -344582,7 +339583,7 @@ oslist: macos executable: Super BoxMan Ultra.app type: default -'742360': +"742360": installDir: bzqj launch: - config: @@ -344590,16 +339591,16 @@ description: 全民王者 executable: bzqj.exe type: default -'742380': +"742380": installDir: Spreadstorm launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Spreadstorm.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Spreadstorm.x86_64 type: default @@ -344607,93 +339608,75 @@ oslist: macos executable: Spreadstorm.app type: default -'742420': +"742420": installDir: Saints Row launch: - - arguments: '-packfiles -force_packfile_reflection thqnocfg=thqnocfg_steam' + - arguments: "-packfiles -force_packfile_reflection thqnocfg=thqnocfg_steam" config: betakey: athena_wfh_test description: Saints Row (DX11) - description_loc: - english: Saints Row (DX11) - executable: sr5\\SaintsRow.exe + executable: "sr5\\\\SaintsRow.exe" workingdir: sr5 - - arguments: '-packfiles -force_packfile_reflection thqnocfg=thqnocfg_steam' + - arguments: "-packfiles -force_packfile_reflection thqnocfg=thqnocfg_steam" config: betakey: athena_wfh_test description: Saints Row (DX12) - description_loc: - english: Saints Row (DX12) - executable: sr5\\SaintsRow_DX12.exe + executable: "sr5\\\\SaintsRow_DX12.exe" workingdir: sr5 - - arguments: '-packfiles -force_packfile_reflection thqnocfg=thqnocfg_steam' + - arguments: "-packfiles -force_packfile_reflection thqnocfg=thqnocfg_steam" config: betakey: athena_wfh_test description: Saints Row (Vulkan) - description_loc: - english: Saints Row (Vulkan) - executable: sr5\\SaintsRow_Vulkan.exe + executable: "sr5\\\\SaintsRow_Vulkan.exe" workingdir: sr5 - - arguments: '-suppress_warnings_and_errors -packfiles -force_packfile_reflection thqnocfg=thqnocfg_steam' + - arguments: "-suppress_warnings_and_errors -packfiles -force_packfile_reflection thqnocfg=thqnocfg_steam" config: betakey: athena_wfh_test description: Project Athena (Dev) - description_loc: - english: Project Athena (Dev) - executable: sr5\\game_dev.exe + executable: "sr5\\\\game_dev.exe" workingdir: sr5 - - arguments: '-suppress_warnings_and_errors -packfiles -force_packfile_reflection thqnocfg=thqnocfg_steam' + - arguments: "-suppress_warnings_and_errors -packfiles -force_packfile_reflection thqnocfg=thqnocfg_steam" config: betakey: athena_wfh_test description: Project Athena (Release) - description_loc: - english: Project Athena (Release) - executable: sr5\\game_release.exe + executable: "sr5\\\\game_release.exe" workingdir: sr5 - - arguments: '-suppress_warnings_and_errors -packfiles -force_packfile_reflection thqnocfg=thqnocfg_steam' + - arguments: "-suppress_warnings_and_errors -packfiles -force_packfile_reflection thqnocfg=thqnocfg_steam" config: betakey: playtest description: Playtest Build - description_loc: - english: Playtest Build - executable: sr5\\game_release.exe + executable: "sr5\\\\game_release.exe" workingdir: sr5 - - arguments: '-suppress_warnings_and_errors -packfiles -force_packfile_reflection' + - arguments: "-suppress_warnings_and_errors -packfiles -force_packfile_reflection" config: betakey: capture_branch description: Project Athena (Dev) - description_loc: - english: Project Athena (Dev) - executable: sr5\\game_dev.exe + executable: "sr5\\\\game_dev.exe" workingdir: sr5 - - arguments: '-suppress_warnings_and_errors -packfiles -force_packfile_reflection thqnocfg=thqnocfg_steam' + - arguments: "-suppress_warnings_and_errors -packfiles -force_packfile_reflection thqnocfg=thqnocfg_steam" config: betakey: athena_wfh_test description: Project Athena (Dev DX12) - description_loc: - english: Project Athena (Dev DX12) - executable: sr5\\game_dev_dx12.exe + executable: "sr5\\\\game_dev_dx12.exe" workingdir: sr5 - - arguments: '-packfiles -force_packfile_reflection thqnocfg=thqnocfg_steam -steam' + - arguments: "-packfiles -force_packfile_reflection thqnocfg=thqnocfg_steam -steam" description: Saints Row Launcher - description_loc: - english: Saints Row Launcher - executable: sr5\\SRLauncher.exe + executable: "sr5\\\\SRLauncher.exe" workingdir: sr5 -'742460': +"742460": installDir: Marble Skies launch: - - arguments: '-notexturestreaming' + - arguments: "-notexturestreaming" config: oslist: windows executable: MarbleSkies.exe type: default - - arguments: '-notexturestreaming' + - arguments: "-notexturestreaming" config: oslist: linux executable: MarbleSkies.sh type: default -'742470': +"742470": installDir: Chronicles of cyberpunk launch: - config: @@ -344704,7 +339687,7 @@ oslist: linux executable: Chronicles of cyberpunk.x86 type: default -'742480': +"742480": installDir: The Big Journey launch: - config: @@ -344715,28 +339698,28 @@ oslist: macos executable: The Big Journey.app type: default -'742490': +"742490": installDir: Nonogram - The Greatest Painter launch: - config: oslist: windows executable: Nonogram - The Greatest Painter.exe type: default -'742500': - installDir: Nonogram - Master's Legacy +"742500": + installDir: "Nonogram - Master's Legacy" launch: - config: oslist: windows - executable: Nonogram - Master's Legacy.exe + executable: "Nonogram - Master's Legacy.exe" type: default -'742510': +"742510": installDir: Psikodelya launch: - config: oslist: windows executable: Psikodelya.exe type: none -'742520': +"742520": installDir: Astrologaster launch: - config: @@ -344747,7 +339730,7 @@ oslist: macos executable: Astrologaster.app type: default -'742530': +"742530": installDir: Roguemance launch: - config: @@ -344756,13 +339739,13 @@ type: default - config: oslist: macos - executable: roguemance(iloveyou).app\\Contents\\MacOS\\nwjs + executable: "roguemance(iloveyou).app\\\\Contents\\\\MacOS\\\\nwjs" type: default - config: oslist: linux executable: nw type: default -'742540': +"742540": installDir: Keep Rollin launch: - config: @@ -344771,13 +339754,13 @@ type: none - config: oslist: macos - executable: Keep Rollin.app\\Contents\\MacOS\\Keep Rollin + executable: "Keep Rollin.app\\\\Contents\\\\MacOS\\\\Keep Rollin" type: none - config: oslist: linux executable: Keep Rollin.x86 type: none -'742630': +"742630": installDir: Wonky Ship launch: - config: @@ -344788,16 +339771,16 @@ oslist: macos executable: WonkyShip.app type: default -'742700': +"742700": installDir: Empire Deluxe Combined Edition launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: EmpireCombined.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: EmpireCombined.exe type: default @@ -344806,102 +339789,102 @@ executable: EmpireCombined.app/Contents/MacOS/EmpireCombined type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: EmpireCombined.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: EmpireCombined.x86_64 type: default -'742900': +"742900": installDir: Sleeping Dawn launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SleepingDawn.exe type: none -'743000': +"743000": installDir: Progeny launch: - config: oslist: windows executable: Progeny.exe type: vr -'743030': +"743030": installDir: HELI launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Garou_FlyNYON.exe type: vr -'743070': +"743070": installDir: Paddle Master VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: PaddleMaster.exe type: vr -'743090': +"743090": installDir: Defiance 2050 launch: - - arguments: '-steam' + - arguments: "-steam" executable: GlyphClient.exe type: none - - arguments: '-steam' + - arguments: "-steam" config: betakey: internal description: GlyphInternal executable: GlyphClientInternal.exe type: option1 -'743100': +"743100": installDir: dsync launch: - config: oslist: windows executable: dsync.exe type: default -'743110': +"743110": installDir: Shit Storm launch: - config: oslist: windows executable: Shit Storm.exe type: default -'743130': +"743130": installDir: MewnBase launch: - config: - osarch: '64' + osarch: "64" oslist: linux executable: MewnBase type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: MewnBase.exe type: default -'743190': +"743190": installDir: Zap Zap Zombie Cats launch: - config: oslist: windows executable: ZZZC.exe type: none -'743230': +"743230": installDir: Baseball Mogul 2018 launch: - config: oslist: windows executable: BB-2018.exe type: none -'743240': {} -'743260': {} -'743330': +"743240": {} +"743260": {} +"743330": installDir: SuperHyperactiveNinja launch: - config: @@ -344917,46 +339900,46 @@ oslist: linux executable: HyperactiveNinja type: none -'743340': +"743340": installDir: Tanks Meet Zombies launch: - config: oslist: windows executable: TanksMeetZombies.exe type: default -'743350': +"743350": installDir: Slay.one launch: - - arguments: . + - arguments: "." config: - osarch: '32' + osarch: "32" oslist: windows - executable: nwjs-win32\\nw.exe + executable: "nwjs-win32\\\\nw.exe" type: default - - arguments: . + - arguments: "." config: - osarch: '64' + osarch: "64" oslist: windows - executable: nwjs-win64\\nw.exe + executable: "nwjs-win64\\\\nw.exe" type: default - - arguments: . + - arguments: "." config: - osarch: '32' + osarch: "32" oslist: linux executable: nwjs-linux32/nw type: default - - arguments: . + - arguments: "." config: - osarch: '64' + osarch: "64" oslist: linux executable: nwjs-linux64/nw type: default - - arguments: . + - arguments: "." config: oslist: macos executable: nwjs-mac64/nwjs.app/Contents/MacOS/nwjs type: default -'743360': +"743360": installDir: Haste Heist launch: - config: @@ -344967,14 +339950,14 @@ oslist: macos executable: HasteHeist.app type: default -'743370': +"743370": installDir: Soccer Manager 2018 launch: - config: oslist: windows executable: Soccer Manager 2018.exe type: none -'743380': +"743380": installDir: Split launch: - config: @@ -344983,33 +339966,33 @@ type: default nameLocalized: arabic: انقسام - تلاعب بالوقت واستنساخه وحل ألغاز الإنترنت من المستقبل! - bulgarian: 'Split - манипулирайте времето, правете клонинги и решавайте кибер пъзели от бъдещето!' - czech: 'Split - manipulujte s časem, vytvářejte klony a řešte kybernetické hádanky z budoucnosti!' - danish: 'Split - manipuleer de tijd, maak klonen en los cyberpuzzels uit de toekomst op!' - dutch: 'Split - manipuleer de tijd, maak klonen en los cyberpuzzels uit de toekomst op!' - english: 'Split - manipulate time, make clones and solve cyber puzzles from the future!' - finnish: 'Split - manipuloi aikaa, tee klooneja ja ratkaise kyberpulmia tulevaisuudesta!' - french: 'Split - manipulez le temps, créez des clones et résolvez des cyber-énigmes du futur !' - german: 'Split - manipuliere die Zeit, erstelle Klone und löse Cyber-Rätsel aus der Zukunft!' - greek: 'Split - χειριστείτε τον χρόνο, φτιάξτε κλώνους και λύστε παζλ στον κυβερνοχώρο από το μέλλον!' - hungarian: 'Split – manipuláld az időt, készíts klónokat és oldj meg kiberrejtvényeket a jövőből!' - italian: 'Dividi: manipola il tempo, crea cloni e risolvi enigmi informatici del futuro!' + bulgarian: "Split - манипулирайте времето, правете клонинги и решавайте кибер пъзели от бъдещето!" + czech: "Split - manipulujte s časem, vytvářejte klony a řešte kybernetické hádanky z budoucnosti!" + danish: "Split - manipuleer de tijd, maak klonen en los cyberpuzzels uit de toekomst op!" + dutch: "Split - manipuleer de tijd, maak klonen en los cyberpuzzels uit de toekomst op!" + english: "Split - manipulate time, make clones and solve cyber puzzles from the future!" + finnish: "Split - manipuloi aikaa, tee klooneja ja ratkaise kyberpulmia tulevaisuudesta!" + french: "Split - manipulez le temps, créez des clones et résolvez des cyber-énigmes du futur !" + german: "Split - manipuliere die Zeit, erstelle Klone und löse Cyber-Rätsel aus der Zukunft!" + greek: "Split - χειριστείτε τον χρόνο, φτιάξτε κλώνους και λύστε παζλ στον κυβερνοχώρο από το μέλλον!" + hungarian: "Split – manipuláld az időt, készíts klónokat és oldj meg kiberrejtvényeket a jövőből!" + italian: "Dividi: manipola il tempo, crea cloni e risolvi enigmi informatici del futuro!" japanese: 分割-時間を操作し、クローンを作成し、未来のサイバーパズルを解きます! - koreana: '분할 - 시간을 조작하고, 클론을 만들고, 미래에서 온 사이버 퍼즐을 푸세요!' - norwegian: 'Splitt - manipuler tiden, lag kloner og løs cyberoppgaver fra fremtiden!' - polish: 'Split - manipuluj czasem, twórz klony i rozwiązuj cyberzagadki z przyszłości!' - portuguese: 'Split - manipule o tempo, faça clones e resolva quebra-cabeças cibernéticos do futuro!' - romanian: 'Split - manipulați timpul, faceți clone și rezolvați puzzle-uri cibernetice din viitor!' - russian: 'Split - управляйте временем, создавайте клонов и решайте кибер-головоломки из будущего!' + koreana: "분할 - 시간을 조작하고, 클론을 만들고, 미래에서 온 사이버 퍼즐을 푸세요!" + norwegian: "Splitt - manipuler tiden, lag kloner og løs cyberoppgaver fra fremtiden!" + polish: "Split - manipuluj czasem, twórz klony i rozwiązuj cyberzagadki z przyszłości!" + portuguese: "Split - manipule o tempo, faça clones e resolva quebra-cabeças cibernéticos do futuro!" + romanian: "Split - manipulați timpul, faceți clone și rezolvați puzzle-uri cibernetice din viitor!" + russian: "Split - управляйте временем, создавайте клонов и решайте кибер-головоломки из будущего!" schinese: 分裂 - 操纵时间,制造克隆并解决未来的网络难题! - spanish: 'Split - ¡manipula el tiempo, crea clones y resuelve los acertijos cibernéticos del futuro!' - swedish: 'Split - manipulera tiden, gör kloner och lös cyberpussel från framtiden!' + spanish: "Split - ¡manipula el tiempo, crea clones y resuelve los acertijos cibernéticos del futuro!" + swedish: "Split - manipulera tiden, gör kloner och lös cyberpussel från framtiden!" tchinese: 分裂 - 操縱時間,製造克隆並解決未來的網絡難題! thai: Split - ควบคุมเวลา สร้างโคลน และไขปริศนาไซเบอร์จากอนาคต! - turkish: 'Split - zamanı manipüle edin, klonlar yapın ve gelecekten siber bulmacaları çözün!' - ukrainian: 'Split - маніпулюйте часом, створюйте клони та вирішуйте кібер-головоломки з майбутнього!' - vietnamese: 'Split - thao túng thời gian, tạo bản sao và giải các câu đố mạng từ tương lai!' -'743390': + turkish: "Split - zamanı manipüle edin, klonlar yapın ve gelecekten siber bulmacaları çözün!" + ukrainian: "Split - маніпулюйте часом, створюйте клони та вирішуйте кібер-головоломки з майбутнього!" + vietnamese: "Split - thao túng thời gian, tạo bản sao và giải các câu đố mạng từ tương lai!" +"743390": installDir: DISTRAINT 2 launch: - config: @@ -345018,7 +340001,7 @@ type: default nameLocalized: japanese: ドットホラーストーリー2 (DISTRAINT 2) -'743400': +"743400": installDir: 3-in-1 Bundle Brain Trainings launch: - config: @@ -345027,22 +340010,22 @@ type: default - config: oslist: macos - executable: IQScale31.app\\Contents\\MacOS\\nwjs + executable: "IQScale31.app\\\\Contents\\\\MacOS\\\\nwjs" type: default - config: oslist: linux executable: IQScale31 type: default -'743410': {} -'743420': +"743410": {} +"743420": installDir: Temple of Spikes launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Temple of Spikes.exe type: default -'743450': +"743450": installDir: Monster Prom launch: - config: @@ -345059,22 +340042,22 @@ type: none nameLocalized: schinese: 魔物学园:毕业舞会大作战 -'743460': +"743460": installDir: VR火灾逃生应急演练(VR fire emergency simulation system) launch: - config: oslist: windows executable: fire_4.exe type: vr -'743480': +"743480": installDir: Hexamon launch: - config: oslist: windows executable: HexaMon_Steam.exe type: default -'743500': {} -'743550': +"743500": {} +"743550": installDir: COSMONAUT launch: - config: @@ -345082,11 +340065,11 @@ description: Launch executable: cosmonaut.exe type: none -'743570': +"743570": installDir: Neven launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: Neven.exe @@ -345094,59 +340077,59 @@ - config: oslist: macos description: Launch - executable: Neven.app\\Contents\\MacOS\\Neven + executable: "Neven.app\\\\Contents\\\\MacOS\\\\Neven" type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Neven.x86_64 type: default -'743580': +"743580": installDir: CarRumble launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: CarRumble.exe type: default -'743640': +"743640": installDir: Achievement Clicker launch: - executable: AchievementClicker.exe type: default -'743660': +"743660": installDir: Boot Hill Blaster launch: - config: oslist: windows executable: Boot Hill Blaster.exe type: default -'743680': {} -'743830': +"743680": {} +"743830": installDir: SuperTrucks Offroad launch: - config: oslist: windows executable: supertrucks.exe type: default -'743850': +"743850": installDir: Polyroll launch: - config: oslist: windows executable: Polyroll.exe type: default -'743860': +"743860": installDir: Wild West Online launch: - - arguments: '-steam -wwo' + - arguments: "-steam -wwo" config: - osarch: '64' + osarch: "64" oslist: windows executable: Launcher.exe type: default -'743890': +"743890": installDir: Mega Man X Legacy Collection launch: - config: @@ -345155,7 +340138,7 @@ type: default nameLocalized: japanese: ロックマンX アニバーサリー コレクション -'743900': +"743900": installDir: Mega Man X Legacy Collection 2 launch: - config: @@ -345164,97 +340147,97 @@ type: default nameLocalized: japanese: ロックマンX アニバーサリー コレクション 2 -'743920': +"743920": installDir: CCTR launch: - - arguments: '-steam' + - arguments: "-steam" config: - osarch: '64' + osarch: "64" oslist: windows executable: cctr.exe type: default - - arguments: '-steam' + - arguments: "-steam" config: - osarch: '64' + osarch: "64" oslist: linux executable: run.sh type: default -'743940': +"743940": installDir: Stand by you launch: - config: oslist: windows executable: Standbyyou.exe type: none -'743960': +"743960": installDir: Super Powered Battle Friends launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SPBF.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: SPBF.sh type: default -'743990': +"743990": installDir: Private Detective Punch Drunk launch: - config: oslist: windows executable: PDPD.exe type: default -'744010': +"744010": installDir: Mount Hill launch: - config: oslist: windows executable: MountHill.exe type: default -'744020': {} -'744040': +"744020": {} +"744040": installDir: Street Heat launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: streetheat.exe type: default -'744050': +"744050": installDir: Space Invaders Extreme launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SIE_x64.exe type: default -'744060': +"744060": installDir: Groove Coaster for Steam launch: - - executable: App\\Release\\gcst.exe + - executable: "App\\\\Release\\\\gcst.exe" type: default - workingdir: App\\Release\\ -'744070': + workingdir: "App\\\\Release\\\\" +"744070": installDir: Kunoichi Rush launch: - config: oslist: windows executable: Kunoichi_S.exe type: default -'744170': +"744170": installDir: Starfighter Neon launch: - config: oslist: macos - executable: sfn.app\\Contents\\MacOS\\sfn + executable: "sfn.app\\\\Contents\\\\MacOS\\\\sfn" type: default - config: oslist: windows executable: sfn.exe type: default -'744190': +"744190": installDir: Rusty Lake Paradise launch: - config: @@ -345265,24 +340248,24 @@ oslist: macos executable: RustyLakeParadise.app type: default -'744200': {} -'744220': +"744200": {} +"744220": installDir: AI Dummy launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: AI_Dummy.exe type: default -'744240': +"744240": installDir: FISK launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: nw.exe type: none -'744260': +"744260": installDir: Legend of Homebody launch: - config: @@ -345292,21 +340275,21 @@ nameLocalized: schinese: 宅人传说 tchinese: 宅人傳說 -'744270': +"744270": installDir: Rise of Ages launch: - config: oslist: windows executable: RiseofAges.exe type: default -'744280': +"744280": installDir: AF-ZERO launch: - config: oslist: windows executable: afzero.exe type: default -'744290': +"744290": installDir: Perspectrip launch: - config: @@ -345317,15 +340300,15 @@ - config: oslist: macos description: Launch - executable: Perspectrip.app\\Contents\\MacOS\\Perspectrip + executable: "Perspectrip.app\\\\Contents\\\\MacOS\\\\Perspectrip" type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Perspectrip.x86_64 type: default -'744390': +"744390": installDir: Yago launch: - config: @@ -345338,7 +340321,7 @@ description: Setup executable: winsetup.exe type: config -'744400': +"744400": installDir: TRATEL64 launch: - config: @@ -345347,71 +340330,71 @@ type: default - config: oslist: macos - executable: t64macOS.app\\Contents\\MacOS\\t64macOS + executable: "t64macOS.app\\\\Contents\\\\MacOS\\\\t64macOS" type: default - config: oslist: linux executable: t64.x86 type: default -'744420': +"744420": installDir: Adventures Of Pipi launch: - config: oslist: windows executable: Adventures Of Pipi.exe type: default -'744430': +"744430": installDir: Deep GachiGASM launch: - config: oslist: windows executable: Deep GachiGASM.exe type: default -'744440': +"744440": installDir: The Breeding The Fog launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TheBreeding_TheFog.exe type: default -'744450': +"744450": installDir: Water Density launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: WaterDensity.exe type: none -'744460': +"744460": installDir: BE THE HERO launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: BETHEHERO.exe type: vr -'744490': {} -'744520': +"744490": {} +"744520": installDir: NEKO-NIN exHeart +PLUS Nachi launch: - executable: nekonin_nachi.exe type: none -'744550': +"744550": installDir: Tactical Operations launch: - config: oslist: windows executable: Tactical Ops.exe type: none -'744590': +"744590": installDir: Starship Clicker launch: - config: oslist: windows executable: light.exe type: default -'744600': +"744600": installDir: Balloonatics launch: - config: @@ -345432,7 +340415,7 @@ oslist: linux executable: Balloonatics type: vr -'744610': +"744610": installDir: TAD That Alien Dude launch: - config: @@ -345450,41 +340433,41 @@ description: This is the MAC OS X version of the game executable: game-mac-alpha.app type: none -'744630': +"744630": installDir: Mystery Stone from Heaven launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Mystery Stone from Heaven.exe type: vr -'744650': +"744650": installDir: OrderOfTheGatekeepers launch: - config: oslist: windows executable: gatekeepers.exe type: default -'744660': +"744660": installDir: Dream Channel launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: DreamChannel.exe type: vr -'744670': +"744670": installDir: WORLDS AT WAR First Contact launch: - description: Launch in Monitor-Mode executable: game.exe type: default - - arguments: '-VR' + - arguments: "-VR" description: Launch in VR-Mode executable: game.exe type: vr -'744700': {} -'744710': +"744700": {} +"744710": installDir: Kungfu Beggar launch: - config: @@ -345495,29 +340478,29 @@ oslist: macos executable: kungfu.app/Contents/MacOS/kungfu type: default -'744720': +"744720": installDir: The Silence Outside launch: - config: oslist: windows executable: TheSilenceOutside.exe type: default -'744750': +"744750": installDir: Devil and the Fairy launch: - config: oslist: windows executable: Devil and the Fairy.exe type: vr -'744760': +"744760": installDir: Epic Royal launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: EpicRoyal1.exe type: none -'744800': +"744800": installDir: Banyu Lintar Angin - Little Storm - launch: - config: @@ -345526,9 +340509,9 @@ type: default - config: oslist: macos - executable: Banyu Lintar Angin - Little Storm -.app\\Contents\\MacOS\\nwjs + executable: "Banyu Lintar Angin - Little Storm -.app\\\\Contents\\\\MacOS\\\\nwjs" type: default -'744810': +"744810": installDir: A Raven Monologue launch: - config: @@ -345537,12 +340520,12 @@ type: default - config: oslist: macos - executable: A Raven Monologue.app\\Contents\\MacOS\\nwjs + executable: "A Raven Monologue.app\\\\Contents\\\\MacOS\\\\nwjs" type: default nameLocalized: schinese: 乌鸦先生的独白 - A Raven Monologue tchinese: 烏鴉先生的獨白 - A Raven Monologue -'744880': +"744880": installDir: Monkeys Ahoy launch: - config: @@ -345553,7 +340536,7 @@ oslist: macos executable: monkeyAhoy.app type: default -'744890': +"744890": installDir: TEEN DATE SIMULATOR launch: - config: @@ -345564,92 +340547,84 @@ oslist: macos executable: teendate.app type: none -'744900': +"744900": installDir: Dead Frontier 2 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: DeadFrontier2.exe type: default - - arguments: '-force-d3d9' + - arguments: "-force-d3d9" config: - osarch: '64' + osarch: "64" oslist: windows description: DF2 (DirectX 9) executable: DeadFrontier2.exe type: option1 - - arguments: '-safe' + - arguments: "-safe" config: - osarch: '64' + osarch: "64" oslist: windows description: DF2 (Safe Mode) - description_loc: - english: DF2 (Safe Mode) executable: DeadFrontier2.exe type: option1 - - arguments: '-dir testgame' + - arguments: "-dir testgame" config: betakey: beta - osarch: '64' + osarch: "64" oslist: windows description: DF2 (Test Server) - description_loc: - english: DF2 (Test Server) executable: DeadFrontier2.exe type: option1 - - arguments: '-safe - force -d3d9' + - arguments: "-safe - force -d3d9" config: - osarch: '64' + osarch: "64" oslist: windows description: DF2 (Safe Mode + DirectX9) - description_loc: - english: DF2 (Safe Mode + DirectX9) executable: DeadFrontier2.exe type: option1 - - arguments: '-defaultsettings' + - arguments: "-defaultsettings" config: - osarch: '64' + osarch: "64" oslist: windows description: DF2 (Restore Default Settings) - description_loc: - english: DF2 (Restore Default Settings) executable: DeadFrontier2.exe type: option1 -'744910': {} -'744940': +"744910": {} +"744940": installDir: Blue Whale launch: - config: oslist: windows executable: Blue_Whale.exe type: default -'744980': +"744980": installDir: Super Club Soccer launch: - config: oslist: macos - executable: SuperClubSoccer.app\\Contents\\MacOS\\SuperClubSoccer + executable: "SuperClubSoccer.app\\\\Contents\\\\MacOS\\\\SuperClubSoccer" type: default - config: oslist: windows executable: SuperClubSoccer.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: SuperClubSoccer.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: SuperClubSoccer.x86 type: default -'7450': +"7450": installDir: Ricochet Infinity launch: - executable: RicochetInfinity.exe -'745000': +"745000": installDir: Card Crawl launch: - config: @@ -345660,65 +340635,65 @@ oslist: windows executable: CardCrawl.exe type: default -'745010': +"745010": installDir: Mechanic Miner launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: mechanicminer.exe type: default -'745020': {} -'745030': +"745020": {} +"745030": installDir: Squarism launch: - config: oslist: windows executable: Squarism.exe type: default -'745060': +"745060": installDir: Hunter of antiques launch: - config: oslist: windows - executable: Launcher\\Hunter of antiques Launcher.exe + executable: "Launcher\\\\Hunter of antiques Launcher.exe" type: none workingdir: Launcher -'745090': +"745090": installDir: ROMBIE launch: - - arguments: '-show-screen-selector -vrmode none' + - arguments: "-show-screen-selector -vrmode none" config: oslist: windows executable: ROMBIE.exe type: default - - arguments: '-force-d3d11' + - arguments: "-force-d3d11" config: oslist: windows executable: ROMBIE.exe type: vr - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" config: oslist: macos executable: ROMBIE.app type: default - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" config: - osarch: '32' + osarch: "32" oslist: linux executable: ROMBIE.x86 type: default - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" config: - osarch: '64' + osarch: "64" oslist: linux executable: ROMBIE.x86_64 type: default -'745120': +"745120": installDir: Pinball launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: Pinball.exe @@ -345726,38 +340701,38 @@ - config: oslist: macos description: Launch - executable: Pinball.app\\Contents\\MacOS\\Pinball + executable: "Pinball.app\\\\Contents\\\\MacOS\\\\Pinball" type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Pinball.x86_64 type: default -'745130': +"745130": installDir: Rage Room launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: RageRoom.exe type: vr -'745180': +"745180": installDir: Bike of The Wild launch: - config: oslist: windows executable: Bike of The Wild.exe type: none -'745220': {} -'745250': +"745220": {} +"745250": installDir: YAPP Yet Another Puzzle Platformer launch: - config: oslist: windows executable: yapp.exe type: none -'745270': +"745270": installDir: Defrain launch: - config: @@ -345770,14 +340745,14 @@ description: Launch executable: Defrain_steam.x86 type: default -'745280': +"745280": installDir: MAZEKOTOWER launch: - config: oslist: windows executable: MAZEKOTOWER.exe type: default -'745330': +"745330": installDir: StrikeForce Kitty launch: - config: @@ -345788,29 +340763,29 @@ oslist: macos executable: StrikeForce Kitty.app type: default -'745340': +"745340": installDir: Super Meat Shooter launch: - config: oslist: windows executable: Super meat shooter.exe type: none -'745360': {} -'745370': +"745360": {} +"745370": installDir: Purple Heart launch: - config: oslist: windows executable: Purple Heart.exe type: default -'745380': +"745380": installDir: Znkl - 177 launch: - config: oslist: windows executable: Znkl - 177.exe type: default -'745400': +"745400": installDir: Kebab it Up! launch: - config: @@ -345821,14 +340796,14 @@ oslist: linux executable: kebab.x86_64 type: none -'745420': +"745420": installDir: Tronix Defender launch: - config: oslist: windows executable: TRONIX DEFENDER.exe type: default -'745430': +"745430": installDir: Neon Aileron launch: - config: @@ -345837,40 +340812,40 @@ type: default - config: oslist: macos - executable: NeonAileron.app\\Contents\\MacOS\\NeonAileron + executable: "NeonAileron.app\\\\Contents\\\\MacOS\\\\NeonAileron" type: none - config: oslist: linux executable: NeonAileron.x86_64 type: default -'745450': +"745450": installDir: The Finnish Virtual Art Gallery launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: The Finnish Virtual Art Gallery.exe type: vr - config: - osarch: '64' + osarch: "64" oslist: windows executable: The Finnish Virtual Art Gallery.exe type: othervr -'745500': +"745500": installDir: Pixel Space Battles launch: - config: oslist: windows executable: Pixel Space Battles.exe type: default -'745510': +"745510": installDir: Fidget Spinner In Space launch: - config: oslist: windows executable: Fidget Spinner In Space.exe type: default -'745520': +"745520": installDir: RoboVDino launch: - config: @@ -345878,7 +340853,7 @@ executable: RoboVDino.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: robovdino.x86_64 type: default @@ -345886,22 +340861,22 @@ oslist: macos executable: mac.app type: default -'745530': +"745530": installDir: Draft Day Sports Pro Basketball 2018 launch: - config: oslist: windows executable: DDSPB2018.exe type: default -'745550': +"745550": installDir: TheValleyInMyMind launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: The Valley In My Mind.exe type: default -'745560': +"745560": installDir: Overclocked launch: - config: @@ -345910,36 +340885,36 @@ type: default - config: oslist: macos - executable: Overclocked.app\\Contents\\MacOS\\Overclocked + executable: "Overclocked.app\\\\Contents\\\\MacOS\\\\Overclocked" type: default -'745620': +"745620": installDir: Soul Survival launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SoulSurvival.exe type: vr -'745630': +"745630": installDir: The redemption of pancakes launch: - executable: The redemption of pancakes.exe type: none -'745650': +"745650": installDir: CrossPixels launch: - config: oslist: windows executable: CrossPixels.exe type: none -'745660': +"745660": installDir: Sockman launch: - config: oslist: windows executable: Sockman.exe type: default -'745670': +"745670": installDir: 3D Tower launch: - config: @@ -345954,8 +340929,8 @@ oslist: macos executable: 3D Tower.app type: none -'745690': {} -'745710': +"745690": {} +"745710": installDir: SMACKHEAD launch: - config: @@ -345964,16 +340939,16 @@ type: default - config: oslist: linux - executable: ./SMACKHEAD + executable: "./SMACKHEAD" type: default -'745720': +"745720": installDir: Crazy Appliances launch: - config: oslist: windows executable: CrazyAppliances.exe type: default -'745730': +"745730": installDir: Sunshine Manor launch: - config: @@ -345986,26 +340961,26 @@ - config: oslist: macos executable: Sunshine Manor.app -'745740': +"745740": installDir: Just another puzzle game launch: - config: oslist: windows executable: reflex.exe type: default -'745750': +"745750": installDir: VikingVillage launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: VikingVillage.exe type: none - config: oslist: macos - executable: VikingVillage.app\\Viking Village.app\\Contents\\MacOS\\Viking Village + executable: "VikingVillage.app\\\\Viking Village.app\\\\Contents\\\\MacOS\\\\Viking Village" type: none -'745760': +"745760": installDir: Perceptions of the Dead launch: - config: @@ -346020,33 +340995,33 @@ oslist: macos executable: PerceptionsOfTheDead.app type: default -'745790': +"745790": installDir: Chambara launch: - config: oslist: windows - executable: PC_UnityPro\\Chambara.exe + executable: "PC_UnityPro\\\\Chambara.exe" type: default - config: oslist: macos - executable: Chambara.app\\Contents\\MacOS\\Chambara + executable: "Chambara.app\\\\Contents\\\\MacOS\\\\Chambara" type: default -'745810': +"745810": installDir: Spirit Animal Survival launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SAS.exe type: none -'745820': +"745820": installDir: lianjingongfang launch: - config: oslist: windows executable: lianjigongfang.exe type: none -'745830': +"745830": installDir: Dragon Sinker launch: - config: @@ -346056,40 +341031,40 @@ type: none nameLocalized: japanese: ドラゴンシンカー -'745840': +"745840": installDir: Cut2017 launch: - executable: Cut2017.exe type: none - - executable: Cut_2017_OSX.app\\Contents\\MacOS\\Cut_2017_OSX + - executable: "Cut_2017_OSX.app\\\\Contents\\\\MacOS\\\\Cut_2017_OSX" type: none nameLocalized: english: Cut 2017 schinese: 拼词游戏 2017 tchinese: 拼詞遊戲 2017 -'745850': +"745850": installDir: KARAKARA2 launch: - executable: KARAKARA2.exe type: none -'745870': +"745870": installDir: Prehistorik launch: - config: oslist: windows executable: Launch Prehistorik.bat type: default - - arguments: '-conf \"./dosboxPrehistorik1.conf\" -conf \"./dosboxPrehistorik1_single.conf\" -noconsole' + - arguments: "-conf \\\"./dosboxPrehistorik1.conf\\\" -conf \\\"./dosboxPrehistorik1_single.conf\\\" -noconsole" config: oslist: macos executable: DOSBox/dosbox.app/Contents/MacOS/DOSBox type: default - - arguments: '-conf \"./dosboxPrehistorik1.conf\" -conf \"./dosboxPrehistorik1_single.conf\" -noconsole' + - arguments: "-conf \\\"./dosboxPrehistorik1.conf\\\" -conf \\\"./dosboxPrehistorik1_single.conf\\\" -noconsole" config: oslist: linux executable: dosbox/dosbox type: default -'745880': +"745880": installDir: th16 launch: - config: @@ -346103,53 +341078,53 @@ nameLocalized: english: Touhou Tenkuushou ~ Hidden Star in Four Seasons. japanese: 東方天空璋 ~ Hidden Star in Four Seasons. -'745890': +"745890": installDir: This Is Not A Jumping Game launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ThisIsNotAJumpingGame.exe type: default -'745900': +"745900": installDir: TOW launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Tank of War-VR.exe type: openvroverlay -'745920': +"745920": installDir: Temtem launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Temtem.exe type: default -'745930': +"745930": installDir: AncientTreasure launch: - config: oslist: windows executable: FalsusChronicle_AncientTreasure.exe type: default -'745940': +"745940": installDir: Quanect launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Quanect.exe type: none -'745950': +"745950": installDir: Apparition launch: - config: oslist: windows executable: LauncherNNG.exe type: default -'745960': +"745960": installDir: A Sky Full of Stars launch: - config: @@ -346157,24 +341132,24 @@ description: Launch executable: AdvHD.exe type: default -'745970': +"745970": installDir: Terminal Conflict launch: - config: oslist: windows - executable: Game\\TerminalConflict.exe + executable: "Game\\\\TerminalConflict.exe" type: default - config: oslist: macos - executable: TerminalConflict.app\\Contents\\MacOS\\TerminalConflict + executable: "TerminalConflict.app\\\\Contents\\\\MacOS\\\\TerminalConflict" type: default - config: - osarch: '64' + osarch: "64" oslist: linux - executable: Game\\TerminalConflict.x86_64 + executable: "Game\\\\TerminalConflict.x86_64" type: default -'745980': {} -'746000': +"745980": {} +"746000": installDir: Haxor launch: - config: @@ -346182,38 +341157,38 @@ description: Launch executable: LauncherNNG.exe type: none -'746010': +"746010": installDir: RigOrSkill launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: LauncherNNG.exe type: default -'746020': +"746020": installDir: Pit of Evil launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows executable: Game.exe type: none - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: macos executable: Pit of Evil.app type: none - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: linux executable: nw type: none -'746030': +"746030": installDir: WreckinBallAdventure launch: - config: betakey: default - osarch: '64' + osarch: "64" oslist: windows executable: LauncherNNG.exe type: default @@ -346222,31 +341197,31 @@ oslist: windows executable: LauncherNNG.exe type: default -'746050': {} -'746070': {} -'746090': {} -'746110': +"746050": {} +"746070": {} +"746090": {} +"746110": installDir: Technosphere launch: - executable: TECHNOSPHERE.exe type: none -'746120': {} -'746140': +"746120": {} +"746140": installDir: The walking zombie Dead city launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: zk.exe type: none -'746220': +"746220": installDir: Monarch of Greed - Act 1 launch: - config: oslist: windows executable: Monarch of Greed Act 1.exe type: none -'746240': +"746240": installDir: Flip the Table launch: - config: @@ -346254,34 +341229,34 @@ description: Launch executable: FlipTheTable.exe type: vr -'746260': +"746260": installDir: Square Massacre launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: nw.exe type: none -'746270': +"746270": installDir: Tale of Alamar launch: - config: oslist: windows executable: Game.exe type: default -'746280': +"746280": installDir: Alpha Locus VR launch: - config: oslist: windows executable: Alpha Locus VR.exe type: vr -'746290': {} -'746300': +"746290": {} +"746300": installDir: Rasty Pelican launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: Rasty Pelican.exe @@ -346289,34 +341264,34 @@ - config: oslist: macos description: Launch - executable: Rasty Pelican.app\\Contents\\MacOS\\Rasty Pelican + executable: "Rasty Pelican.app\\\\Contents\\\\MacOS\\\\Rasty Pelican" type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Rasty Pelican.x86_64 type: default -'746340': +"746340": installDir: HeadSquare launch: - executable: HeadSquare.exe type: vr -'746350': +"746350": installDir: Air Combat launch: - config: oslist: windows executable: game.exe type: default -'746360': +"746360": installDir: Orblitz launch: - config: oslist: windows executable: Orblitz.exe type: default -'746400': +"746400": installDir: Speed Dating for Ghosts launch: - config: @@ -346327,14 +341302,14 @@ oslist: macos executable: Speed Dating for Ghosts.app type: none -'746410': +"746410": installDir: Stop Santa launch: - config: oslist: windows executable: StopSanta-TowerDefense.exe type: none -'746420': +"746420": installDir: Broken Minds launch: - config: @@ -346349,31 +341324,31 @@ oslist: linux executable: BROKEN_MINDS.sh type: default -'746430': +"746430": installDir: Slumlord Simulator launch: - config: oslist: windows executable: SlumLord_Simulator.exe type: none -'746490': {} -'746500': +"746490": {} +"746500": installDir: Totally Realistic Sledding VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Totally Realistic Sledding VR.exe type: vr -'746510': +"746510": installDir: DuckSeasonPC launch: - config: oslist: windows - executable: DuckSeasonPC\\DuckSeasonPC.exe + executable: "DuckSeasonPC\\\\DuckSeasonPC.exe" type: default -'746530': {} -'746540': +"746530": {} +"746540": installDir: Space Panic Defense launch: - config: @@ -346385,31 +341360,31 @@ executable: Space Panic Defense.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Space Panic Defense.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Space Panic Defense.x86_64 type: default -'746560': +"746560": installDir: Gadgeteer launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Gadgeteer.exe type: vr -'746570': +"746570": installDir: Box Looter launch: - config: oslist: windows executable: Box Looter 2018.exe type: default -'746580': +"746580": installDir: HARDCORE MECHA launch: - config: @@ -346420,29 +341395,29 @@ japanese: ハードコア・メカ schinese: 硬核机甲 tchinese: 硬核機甲 -'746590': {} -'746610': +"746590": {} +"746610": installDir: Train Runner VR launch: - config: oslist: windows executable: TrainRunnerVR.exe type: vr -'746620': +"746620": installDir: Bakery launch: - config: oslist: windows executable: bakery.exe type: default -'746660': +"746660": installDir: Throw Anything launch: - config: oslist: windows executable: Throw Anything.exe type: vr -'746680': +"746680": installDir: Bounce Rescue! launch: - config: @@ -346457,42 +341432,42 @@ oslist: macos executable: bounce_rescue.app/Contents/MacOS/bounce_rescue type: default -'746710': +"746710": installDir: Cypher launch: - executable: Cypher.exe type: default -'746750': +"746750": installDir: The Unholy Society launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: unholy_society.exe type: none - - arguments: '--log-file=unholy_society.log' + - arguments: "--log-file=unholy_society.log" config: - osarch: '64' + osarch: "64" oslist: linux executable: run.sh type: none -'746760': +"746760": installDir: Outside launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: \\Outside.exe + executable: "\\\\Outside.exe" type: default -'746770': +"746770": installDir: Bunny Mania 2 launch: - config: oslist: windows executable: bunnymania2.exe type: none -'746800': {} -'746840': +"746800": {} +"746840": installDir: Chronicles of Magic Divided Kingdoms launch: - config: @@ -346501,13 +341476,13 @@ executable: ChroniclesofMagic.exe type: none - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: ChroniclesofMagic_i386 type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: ChroniclesofMagic_amd64 @@ -346517,7 +341492,7 @@ description: Launch executable: mac_steam.app/Contents/MacOS/mac_steam type: none -'746850': +"746850": installDir: Cloudpunk launch: - config: @@ -346526,47 +341501,43 @@ type: none - config: oslist: windows - ownsdlc: '1536370' + ownsdlc: "1536370" description: City of Ghosts - description_loc: - english: City of Ghosts executable: City of Ghosts/Cloudpunk - City of Ghosts.exe type: none workingdir: City of Ghosts -'746860': +"746860": installDir: Rail Recon launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Rail Recon.exe type: default -'746880': +"746880": installDir: Spoxel launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Spoxel.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Spoxel type: default - - arguments: >- - -jar Spoxel.app/Contents/Resources/SpoxelClientLib.jar -Xmx2g -Xms1G -Xmn768m -XX:+UseConcMarkSweepGC - -Dorg.lwjgl.system.allocator=system + - arguments: "-jar Spoxel.app/Contents/Resources/SpoxelClientLib.jar -Xmx2g -Xms1G -Xmn768m -XX:+UseConcMarkSweepGC -Dorg.lwjgl.system.allocator=system" config: oslist: macos description: Temp Launch Fix executable: Spoxel.app/Contents/Resources/jre/bin/java type: default -'746890': +"746890": installDir: Skript launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: Skript.exe @@ -346574,28 +341545,28 @@ - config: oslist: macos description: Launch - executable: Skript.app\\Contents\\MacOS\\Skript + executable: "Skript.app\\\\Contents\\\\MacOS\\\\Skript" type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Skript.x86_64 type: default -'746900': +"746900": installDir: A song in the void launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: A Song in the Void.exe type: default -'746910': +"746910": installDir: Chicken Farm 2K17 launch: - executable: CFS_2K17_v2.exe type: default -'746920': +"746920": installDir: Rapid Tap launch: - config: @@ -346610,15 +341581,15 @@ oslist: linux executable: Rapid-Tap.x86_64 type: default -'746930': +"746930": installDir: OrbusVR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: vrclient.exe type: vr -'746940': +"746940": installDir: Nippon Marathon launch: - config: @@ -346634,7 +341605,7 @@ oslist: linux executable: NipponMarathon.x86 type: none -'746990': +"746990": installDir: Prelude launch: - config: @@ -346645,11 +341616,11 @@ oslist: macos executable: Prelude_PreAlpha_MacOS.app type: default -'747050': +"747050": installDir: Portarius launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: Portarius.exe type: default @@ -346659,49 +341630,49 @@ type: default - config: oslist: linux - executable: ./run.sh + executable: "./run.sh" type: default -'747090': +"747090": installDir: Deep Space Unknown Universe launch: - executable: DeepSpace.exe type: none -'747100': {} -'747110': +"747100": {} +"747110": installDir: Kamboja launch: - config: oslist: windows executable: Kamboja.exe type: default -'747120': +"747120": installDir: Keyboard Warrior launch: - config: oslist: windows executable: Keyboard Warrior.exe type: default -'747130': +"747130": installDir: Hunted Dream House launch: - config: oslist: windows - executable: HuntedDreamHouse\\HDH.exe + executable: "HuntedDreamHouse\\\\HDH.exe" type: none -'747160': +"747160": installDir: BAPTISM launch: - config: oslist: windows executable: BAPTISM.exe type: none -'747190': +"747190": installDir: Achievement Lurker Dad Jokes launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" executable: Game.exe type: none -'747200': +"747200": installDir: KEPLERTH launch: - config: @@ -346712,52 +341683,52 @@ english: Keplerth schinese: 开普勒斯 tchinese: 開普勒斯 -'747210': +"747210": installDir: BattleFleet launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: BattleFleet.exe type: vr -'747220': {} -'747230': +"747220": {} +"747230": installDir: Cosmic Buddies Town launch: - executable: CBT.exe type: none -'747240': +"747240": installDir: XL1-ClippingPoint launch: - config: oslist: windows executable: Client.exe type: default -'747250': +"747250": installDir: Half-Life 2 Year Long Alarm launch: - - arguments: '-game yearlongalarm +developer 0 -steam' + - arguments: "-game yearlongalarm +developer 0 -steam" config: oslist: windows description: Launch executable: hl2.exe type: none -'747260': +"747260": installDir: KungFu Town VR launch: - config: oslist: windows executable: KungFu Town VR.exe type: vr -'747280': +"747280": installDir: Asteroid Girl launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: asteroidgirl.exe type: none -'747310': +"747310": installDir: Hyper Knights Battles launch: - config: @@ -346775,42 +341746,42 @@ description: Play Hyper Knights Battles executable: HyperKnightsBattles.x86 type: default -'747320': +"747320": installDir: Bravium launch: - config: oslist: windows executable: Bravium.exe type: default -'747330': +"747330": installDir: The adventure of Kroos launch: - config: oslist: windows executable: The adventure of Kroos.exe type: none -'747340': +"747340": installDir: Unforgiving - A Northern Hymn launch: - config: oslist: windows executable: Unforgiving.exe type: none -'747350': - installDir: Hellblade Senua's Sacrifice - VR +"747350": + installDir: "Hellblade Senua's Sacrifice - VR" launch: - config: oslist: windows executable: HellbladeGameVR.exe type: vr -'747360': +"747360": installDir: Gray Dawn launch: - config: oslist: windows executable: GrayDawn.exe type: default -'747470': +"747470": installDir: Doughlings launch: - config: @@ -346819,29 +341790,29 @@ type: default - config: oslist: macos - executable: Doughlings Arcade.app\\Contents\\MacOS\\Doughlings Arcade + executable: "Doughlings Arcade.app\\\\Contents\\\\MacOS\\\\Doughlings Arcade" type: default -'747480': {} -'747540': +"747480": {} +"747540": installDir: AcChen - Tile matching the Arcade way launch: - config: oslist: windows executable: AcChen.exe type: default -'747560': {} -'747590': +"747560": {} +"747590": installDir: DriveShaft launch: - config: oslist: windows executable: DriveShaft.exe type: default -'747620': +"747620": installDir: Joggernauts launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: joggernauts.exe type: default @@ -346849,8 +341820,8 @@ oslist: macos executable: joggernauts.app type: default -'747630': {} -'747640': +"747630": {} +"747640": installDir: Harambe Kong launch: - config: @@ -346865,7 +341836,7 @@ oslist: macos executable: Harambe Kong.app type: default -'747650': +"747650": installDir: The Padre launch: - config: @@ -346874,61 +341845,61 @@ type: default - config: oslist: macos - executable: ThePadre.app\\Contents\\MacOS\\ThePadre + executable: "ThePadre.app\\\\Contents\\\\MacOS\\\\ThePadre" type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: ThePadre.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: ThePadre.x86_64 type: default -'747660': +"747660": installDir: Quarters launch: - - arguments: '-nohmd' + - arguments: "-nohmd" config: oslist: windows executable: fnaf9.exe type: default -'747690': +"747690": installDir: SinisterHalloween launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SHVR.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: SHVR.exe type: vr -'747700': +"747700": installDir: Space Shaft launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: fo/Dreaming.exe type: default -'747730': +"747730": installDir: OperationRedDragon launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: OperationRedDragon/Binaries/Win64/ORD.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: ORD.sh type: default -'747750': +"747750": installDir: D.F.R. The Light launch: - config: @@ -346937,23 +341908,23 @@ type: default - config: oslist: macos - executable: DFR.app\\Contents\\MacOS\\DFR + executable: "DFR.app\\\\Contents\\\\MacOS\\\\DFR" type: default -'747770': +"747770": installDir: Super Shoot Owl launch: - config: oslist: windows executable: SuperShootOwl.exe type: default -'747790': - installDir: Olson's Boxing Challenge +"747790": + installDir: "Olson's Boxing Challenge" launch: - config: oslist: windows - executable: Olson's Boxing Challenge.exe + executable: "Olson's Boxing Challenge.exe" type: none -'747810': +"747810": installDir: Flow Handcrafted launch: - config: @@ -346963,28 +341934,28 @@ - config: oslist: macos executable: FlowHandcrafted.app -'747820': +"747820": installDir: Terra Tanks launch: - config: oslist: windows executable: TerraTanks.exe type: default -'747850': +"747850": installDir: Warm Village launch: - config: oslist: windows executable: WarmVillage暖暖村物语.exe type: default -'747910': +"747910": installDir: Disassembly 3D launch: - config: oslist: windows executable: Disassembly.exe type: default -'747920': +"747920": installDir: HeroPlus launch: - arguments: STEAM @@ -346992,15 +341963,15 @@ oslist: windows executable: Launcher.exe type: default -'747930': +"747930": installDir: Battle Ion launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Battle Ion.exe type: vr -'747970': +"747970": installDir: Scions of Fate launch: - arguments: STEAMUSER @@ -347008,69 +341979,69 @@ oslist: windows executable: launcher.exe type: none -'747980': +"747980": installDir: PuzzleBlocks launch: - config: oslist: windows executable: PuzzleBlocks.exe type: none -'747990': +"747990": installDir: Cabin launch: - config: oslist: windows executable: Cabin.exe type: default -'748010': +"748010": installDir: Space Rocks launch: - config: oslist: windows executable: SpaceRocks.exe type: default -'748040': +"748040": installDir: State of War and Warmonger Classic 2001 launch: - description: State of War - executable: State of War\\State of War.exe + executable: "State of War\\\\State of War.exe" type: option1 - workingdir: State of War\\ + workingdir: "State of War\\\\" - description: State of War Warmonger - executable: State of War Warmonger\\State of War Warmonger.exe + executable: "State of War Warmonger\\\\State of War Warmonger.exe" type: option2 - workingdir: State of War Warmonger\\ -'748050': + workingdir: "State of War Warmonger\\\\" +"748050": installDir: Initiation launch: - config: oslist: windows executable: Initiation.exe type: default -'748060': +"748060": installDir: SchoolJump launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SchoolJump.exe type: vr -'748110': +"748110": installDir: Kitten Madness launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: KittenMadness.exe type: default -'748120': +"748120": installDir: CrazyCat launch: - config: oslist: windows executable: CrazyCat.exe type: default -'748130': +"748130": installDir: Sugy the Christmas elf launch: - config: @@ -347079,14 +342050,14 @@ type: default - config: oslist: macos - executable: Game.app\\Contents\\MacOS\\nwjs + executable: "Game.app\\\\Contents\\\\MacOS\\\\nwjs" type: default - workingdir: Game.app\\Contents\\MacOS + workingdir: "Game.app\\\\Contents\\\\MacOS" - config: oslist: linux executable: Game type: default -'748150': +"748150": installDir: The Love Boat launch: - config: @@ -347097,106 +342068,106 @@ oslist: macos executable: loveboat.app type: default -'748270': +"748270": installDir: VR Roller Coaster - Cave Depths launch: - config: oslist: windows executable: RollercoasterVR.exe type: vr -'748300': +"748300": installDir: Treasure Hunter launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TH.exe type: default -'748310': +"748310": installDir: Trio Adventures launch: - config: oslist: windows executable: trio.exe type: default -'748320': {} -'748330': +"748320": {} +"748330": installDir: Space Blaster Turbo launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: SuperMegaSpaceBlasterSpecialTurbo.exe type: default - config: oslist: macos - executable: SMSBSTMac.app\\Contents\\MacOS\\SMSBSTMac + executable: "SMSBSTMac.app\\\\Contents\\\\MacOS\\\\SMSBSTMac" type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: SuperMegaSpaceBlasterSpecialTurbo.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: SuperMegaSpaceBlasterSpecialTurbo.x86_64 type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: SuperMegaSpaceBlasterSpecialTurbo.exe type: default -'748360': +"748360": installDir: My Hero Ones Justice launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: \\HeroGame\\Binaries\\Win64\\MHOJ.exe + executable: "\\\\HeroGame\\\\Binaries\\\\Win64\\\\MHOJ.exe" type: default -'748370': +"748370": installDir: STAND OUT launch: - - arguments: '-vrmode openvr' + - arguments: "-vrmode openvr" executable: StandOut.exe type: vr - - arguments: '-vrmode oculus' + - arguments: "-vrmode oculus" executable: StandOut.exe type: othervr -'748420': +"748420": installDir: Beat the Blitz launch: - config: oslist: windows executable: Beat_The_Blitz.exe type: vr -'748430': +"748430": installDir: Cube Color launch: - config: oslist: windows executable: Cube Color.exe type: config -'748460': +"748460": installDir: RealFlight 8 launch: - - arguments: '-novr' + - arguments: "-novr" config: oslist: windows executable: RealFlight.exe type: default - - arguments: '-steamvr' + - arguments: "-steamvr" config: oslist: windows executable: RealFlight.exe type: vr - - arguments: '-oculusvr' + - arguments: "-oculusvr" config: oslist: windows executable: RealFlight.exe type: othervr -'748480': +"748480": installDir: WildRomancePV launch: - config: @@ -347205,44 +342176,44 @@ type: none - config: oslist: linux - executable: ./WildRomancePV.sh + executable: "./WildRomancePV.sh" type: default - config: oslist: macos executable: WildRomancePV.app type: default nameLocalized: - latam: 'Wild Romance: Edición Mofu Mofu ' + latam: "Wild Romance: Edición Mofu Mofu " schinese: 我的兽耳后宫 - 解禁版 - spanish: 'Wild Romance: Edición Mofu Mofu ' + spanish: "Wild Romance: Edición Mofu Mofu " tchinese: 我的獸耳後宮 - 解禁版 -'748490': +"748490": installDir: Trails of Cold Steel II launch: - executable: bin/Win32/ed8_2_PC_US.exe type: default - executable: Sen2Launcher.exe type: config - - arguments: '-latest' + - arguments: "-latest" description: Continue From Latest Save executable: bin/Win32/ed8_2_PC_US.exe type: none nameLocalized: japanese: 英雄伝説 閃の軌跡II -'748520': +"748520": installDir: Tevris launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Tevris.exe type: vr -'748530': {} -'748540': +"748530": {} +"748540": installDir: Solitaire launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: Solitaire.exe @@ -347250,29 +342221,29 @@ - config: oslist: macos description: Launch - executable: Solitaire.app\\Contents\\MacOS\\Solitaire + executable: "Solitaire.app\\\\Contents\\\\MacOS\\\\Solitaire" type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Solitaire.x86_64 type: default -'748580': - installDir: Bridge to Another World The Others Collector's Edition +"748580": + installDir: "Bridge to Another World The Others Collector's Edition" launch: - config: oslist: windows executable: BTAW_TheOthers_CE.exe type: default -'748600': +"748600": installDir: Meme Dragons launch: - config: oslist: windows - executable: MemeDragons\\MemeDragons12.31.2017.exe + executable: "MemeDragons\\\\MemeDragons12.31.2017.exe" type: vr -'748610': +"748610": installDir: Airport Madness 3D 2 launch: - config: @@ -347283,7 +342254,7 @@ oslist: macos executable: Airport Madness 3D 2.app type: none -'748650': +"748650": installDir: Carnage in Space Ignition launch: - config: @@ -347298,53 +342269,53 @@ oslist: linux executable: nw type: default -'748660': - installDir: Tom'sMansion +"748660": + installDir: "Tom'sMansion" launch: - - arguments: '-windowed' + - arguments: "-windowed" config: oslist: windows executable: RealTMBuild.exe type: default -'748670': +"748670": installDir: Skydiving Simulator VR launch: - executable: skydiving_simulator_vr.exe type: vr - executable: skydiving_simulator_vr.exe type: othervr -'748720': +"748720": installDir: ATV Simulator VR launch: - executable: atv_simulator_vr.exe type: vr - executable: atv_simulator_vr.exe type: othervr -'748730': +"748730": installDir: Seek Not a Lighthouse launch: - - arguments: '-windowed' + - arguments: "-windowed" config: oslist: windows executable: Seek Not a Lighthouse.exe type: none -'748760': {} -'748780': +"748760": {} +"748780": installDir: Cardinal Conclave launch: - config: oslist: windows executable: Cardinal Conclave.exe type: default -'748800': +"748800": installDir: Savage Offroad launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Savage Offroad.exe type: default -'748820': +"748820": installDir: Monstrous launch: - config: @@ -347353,14 +342324,14 @@ type: default - config: oslist: macos - executable: btm.app\\Contents\\MacOS\\btm + executable: "btm.app\\\\Contents\\\\MacOS\\\\btm" type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: btm.x86_64 type: default -'748830': +"748830": installDir: Yanone launch: - config: @@ -347371,8 +342342,8 @@ oslist: windows executable: YanoneHTC.exe type: vr -'748860': {} -'748880': +"748860": {} +"748880": installDir: External Visions launch: - config: @@ -347387,23 +342358,23 @@ description: Launch External Visions (Linux) executable: external_visions type: default - - arguments: '-Dorg.lwjgl.librarypath=./natives/ -m growth_opengl/mainPackage.AppMain' + - arguments: "-Dorg.lwjgl.librarypath=./natives/ -m growth_opengl/mainPackage.AppMain" config: - osarch: '64' + osarch: "64" oslist: linux description: Launch External Visions executable: bin/java type: default workingdir: bin/ - - arguments: '-Dorg.lwjgl.librarypath=.\\natives\\ -m growth_opengl/mainPackage.AppMain' + - arguments: "-Dorg.lwjgl.librarypath=.\\\\natives\\\\ -m growth_opengl/mainPackage.AppMain" config: - osarch: '64' + osarch: "64" oslist: windows description: Launch External Visions executable: bin/javaw.exe type: default workingdir: bin/ -'748890': +"748890": installDir: Choice of Rebels Uprising launch: - config: @@ -347418,11 +342389,11 @@ oslist: linux executable: ChoiceOfRebelsUprising type: none -'748910': +"748910": installDir: SpacePig launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: SpacePig.exe @@ -347430,15 +342401,15 @@ - config: oslist: macos description: Launch - executable: SpacePig.app\\Contents\\MacOS\\SpacePig + executable: "SpacePig.app\\\\Contents\\\\MacOS\\\\SpacePig" type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: SpacePig.x86_64 type: default -'748930': +"748930": installDir: Brink of Extinction launch: - config: @@ -347449,14 +342420,14 @@ oslist: macos executable: Brink of Extinction.app type: none -'748940': +"748940": installDir: Rise of Legions launch: - config: oslist: windows executable: RiseOfLegions.exe type: default -'748970': +"748970": installDir: Zen Chess Mate in One launch: - config: @@ -347465,13 +342436,13 @@ type: none - config: oslist: macos - executable: Zen Chess.app\\Contents\\MacOS\\Zen Chess + executable: "Zen Chess.app\\\\Contents\\\\MacOS\\\\Zen Chess" type: default -'748980': +"748980": installDir: Tico launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: Tico.exe @@ -347479,33 +342450,33 @@ - config: oslist: macos description: Launch - executable: Tico.app\\Contents\\MacOS\\Tico + executable: "Tico.app\\\\Contents\\\\MacOS\\\\Tico" type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Tico.x86_64 type: default -'748990': +"748990": installDir: The Z Axis Continuum launch: - config: oslist: windows executable: TheZAxisContinuum.exe type: default -'749000': - installDir: Final Cut Homage Collector's Edition +"749000": + installDir: "Final Cut Homage Collector's Edition" launch: - config: oslist: windows executable: FinalCut_Homage_CE.exe type: default -'749010': +"749010": installDir: Yatzy launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: Yatzy.exe @@ -347513,79 +342484,79 @@ - config: oslist: macos description: Launch - executable: Yatzy.app\\Contents\\MacOS\\Yatzy + executable: "Yatzy.app\\\\Contents\\\\MacOS\\\\Yatzy" type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Yatzy.x86_64 type: default -'749040': +"749040": installDir: Battle Runner launch: - config: oslist: windows executable: BattleRunner.exe type: default -'749050': +"749050": installDir: The 111th Soul launch: - executable: The 111th Soul.exe type: default -'749080': - installDir: Mystery Case Files The Revenant's Hunt Collector's Edition +"749080": + installDir: "Mystery Case Files The Revenant's Hunt Collector's Edition" launch: - config: oslist: windows executable: MysteryCaseFiles_TheRevenantsHunt_CE.exe type: default -'749110': +"749110": installDir: Bold Blade launch: - config: oslist: windows executable: BoldBlade.exe type: default -'749120': {} -'749130': +"749120": {} +"749130": installDir: SK8 launch: - config: oslist: windows executable: SK8.exe type: none -'749140': +"749140": installDir: Prehistorik 2 launch: - config: oslist: windows executable: Launch Prehistorik 2.bat type: default - - arguments: '-conf \"./dosboxPrehistorik2.conf\" -conf \"./dosboxPrehistorik2_single.conf\" -noconsole' + - arguments: "-conf \\\"./dosboxPrehistorik2.conf\\\" -conf \\\"./dosboxPrehistorik2_single.conf\\\" -noconsole" config: oslist: macos executable: DOSBox/dosbox.app/Contents/MacOS/DOSBox type: default - - arguments: '-conf \"./dosboxPrehistorik2.conf\" -conf \"./dosboxPrehistorik2_single.conf\" -noconsole' + - arguments: "-conf \\\"./dosboxPrehistorik2.conf\\\" -conf \\\"./dosboxPrehistorik2_single.conf\\\" -noconsole" config: oslist: linux executable: dosbox/dosbox type: default -'749150': +"749150": installDir: ThrushbriarHall launch: - config: oslist: windows executable: ThrushbriarHall.exe type: default - - arguments: '-vr' + - arguments: "-vr" config: oslist: windows executable: ThrushbriarHall.exe type: vr -'749160': {} -'749180': +"749160": {} +"749180": installDir: Bridge Trek launch: - config: @@ -347593,108 +342564,108 @@ description: Launch Bridge Trek executable: BridgeSimulator.exe type: vr -'749200': +"749200": installDir: Offensive Dimensions launch: - config: oslist: windows executable: OffensiveDimensions.exe type: none -'749220': {} -'749250': +"749220": {} +"749250": installDir: 7th Sector launch: - config: oslist: windows executable: 7TH_Sector.exe type: none -'749270': +"749270": installDir: Magic_Siege_Defender launch: - config: oslist: windows description: Windows - executable: MagicSiegePC\\MagicSiege\\Magic Siege.exe + executable: "MagicSiegePC\\\\MagicSiege\\\\Magic Siege.exe" type: option1 - config: oslist: macos description: Mac - executable: \\macvs\\MacOs\\MagicSiege.app\\Contents\\MacOS\\MagicSiege + executable: "\\\\macvs\\\\MacOs\\\\MagicSiege.app\\\\Contents\\\\MacOS\\\\MagicSiege" type: option2 -'749290': +"749290": installDir: VEHICLES FURY Content launch: - config: oslist: windows executable: VEHICLES_FURY.exe type: default -'749320': +"749320": installDir: Alma launch: - config: oslist: windows executable: Alma.exe type: default -'749330': {} -'749340': +"749330": {} +"749340": installDir: Chocolate makes you happy launch: - config: oslist: windows executable: Chocolate makes you happy.exe type: default -'749370': +"749370": installDir: The Perfect Sniper launch: - executable: ThePerfectSniper.exe type: vr -'749410': - installDir: Season's Beatings +"749410": + installDir: "Season's Beatings" launch: - config: oslist: windows - executable: Season's Beatings.exe + executable: "Season's Beatings.exe" type: default - config: oslist: macos - executable: Season's Beatings.app\\Contents\\MacOS\\Mac + executable: "Season's Beatings.app\\\\Contents\\\\MacOS\\\\Mac" type: default - config: oslist: linux - executable: Season's Beatings.x86 + executable: "Season's Beatings.x86" type: default -'749420': {} -'749430': +"749420": {} +"749430": installDir: Stacker launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Shooter2D.exe type: default - config: betakey: testing - osarch: '64' + osarch: "64" oslist: windows description: Testing Build executable: Stacker2.exe type: default -'749470': +"749470": installDir: TAOTH launch: - config: oslist: windows executable: TAOTH.exe type: default -'749480': +"749480": installDir: Station 228 launch: - config: oslist: windows executable: Station 228.exe type: default -'749510': {} -'749520': +"749510": {} +"749520": installDir: Sakuranomori_cn launch: - config: @@ -347706,71 +342677,71 @@ japanese: サクラノモリ†ドリーマーズ schinese: 樱之杜†净梦者 tchinese: 櫻之杜†凈夢者 -'749540': +"749540": installDir: Wild Wolf launch: - config: oslist: windows executable: Wild Wolf.exe type: none -'749550': +"749550": installDir: Lawnmower Game 2 Drifter launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: LM2.exe type: default -'749560': +"749560": installDir: Cycle 28 launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: windows32.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: windows64.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: cycle28.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: cycle28.x86_64 type: default - config: oslist: macos - executable: Cycle28.app\\Contents\\MacOS\\Cycle28 + executable: "Cycle28.app\\\\Contents\\\\MacOS\\\\Cycle28" type: default -'749570': {} -'749580': +"749570": {} +"749580": installDir: All That Remains launch: - config: oslist: windows executable: All That Remains.exe type: default -'749600': {} -'749650': +"749600": {} +"749650": installDir: Barrimean Jungle launch: - config: - osarch: '32' + osarch: "32" oslist: windows - executable: x32\\WindowsNoEditor\\Test.exe + executable: "x32\\\\WindowsNoEditor\\\\Test.exe" type: default - config: - osarch: '64' + osarch: "64" oslist: windows - executable: x64\\WindowsNoEditor\\Test.exe + executable: "x64\\\\WindowsNoEditor\\\\Test.exe" type: default -'749670': +"749670": installDir: Spinning Around launch: - config: @@ -347785,53 +342756,53 @@ oslist: linux executable: Linux-Universal/SpinningAround.x86 type: default -'749700': +"749700": installDir: Karate Krab launch: - config: oslist: windows executable: KarateKrab.exe type: default -'749710': +"749710": installDir: Imperi launch: - config: oslist: windows executable: imperi.exe type: none -'749720': {} -'749730': +"749720": {} +"749730": installDir: While you are Downloading launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: WhileYouAreDownloading.exe type: none -'749740': {} -'749750': {} -'749780': +"749740": {} +"749750": {} +"749780": installDir: DEAD DOZEN launch: - executable: dd.exe type: default -'749800': +"749800": installDir: PixelJunk™ Monsters 2 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: PixeljunkMonsters2.exe type: default -'749820': {} -'749830': +"749820": {} +"749830": installDir: MoonBullet launch: - config: oslist: windows executable: MoonBullet.exe type: default -'749840': +"749840": installDir: The Boogie Man launch: - executable: Game.exe @@ -347839,7 +342810,7 @@ - description: Open config executable: Config.exe type: config -'749850': +"749850": installDir: DragonFangZ launch: - config: @@ -347850,29 +342821,29 @@ oslist: macos executable: dfz.app type: default -'749860': +"749860": installDir: Super Sportmatchen launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: sportmatchen.exe type: default -'749870': +"749870": installDir: MyTD launch: - config: oslist: windows - executable: MyTD\\MyTD.exe + executable: "MyTD\\\\MyTD.exe" type: default -'749880': +"749880": installDir: WASD launch: - config: oslist: windows executable: just jump.exe type: default -'749890': +"749890": installDir: The Hanged Man launch: - executable: Game.exe @@ -347881,38 +342852,38 @@ oslist: windows executable: Config.exe type: config -'749900': +"749900": installDir: Feed the Animals launch: - config: oslist: windows executable: ftagame.exe type: default -'749920': +"749920": installDir: Eternal Dread launch: - config: oslist: windows executable: Game.exe type: default -'749950': {} -'749960': +"749950": {} +"749960": installDir: Townsmen VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: townsmenvr.exe type: vr -'749980': +"749980": installDir: Illusion launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: illusion.exe type: default -'749990': +"749990": installDir: Trigonometry launch: - config: @@ -347927,15 +342898,15 @@ oslist: linux executable: Trigonometry.Linux/Trigonometry.x86 type: default -'750010': +"750010": installDir: Combat Tested launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Combat Tested.exe type: vr -'750020': +"750020": installDir: Moving Day launch: - config: @@ -347943,34 +342914,34 @@ description: Moving Day executable: Game.exe type: option1 -'750040': {} -'750050': +"750040": {} +"750050": installDir: Diesel Brothers Truck Building Simulator launch: - config: oslist: windows executable: DieselBrothers.exe type: default - - arguments: '-dx12' + - arguments: "-dx12" config: oslist: windows description: DirectX 12 MODE executable: DieselBrothers.exe type: option1 -'750070': +"750070": installDir: Motorbike Garage Mechanic Simulator launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: LauncherNNG.exe type: default -'750080': +"750080": installDir: Dead Climb launch: - config: betakey: default - osarch: '64' + osarch: "64" oslist: windows executable: LauncherNNG.exe type: default @@ -347981,135 +342952,135 @@ type: none - executable: game.exe type: none -'750130': +"750130": installDir: The Sinking City launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TSCGame.exe type: default -'750170': +"750170": installDir: Diesel Railcar Simulator launch: - - arguments: '-force-d3d11' + - arguments: "-force-d3d11" config: - osarch: '32' + osarch: "32" oslist: windows executable: Diesel Railcar Simulator.exe type: default - - arguments: '-force-d3d12' + - arguments: "-force-d3d12" config: betakey: disabled - osarch: '32' + osarch: "32" oslist: windows description: (DirectX12) executable: Diesel Railcar Simulator.exe type: option1 - - arguments: '-force-d3d11' + - arguments: "-force-d3d11" config: - osarch: '64' + osarch: "64" executable: Diesel Railcar Simulator 64-bit.exe type: default - - arguments: '-force-d3d12' + - arguments: "-force-d3d12" config: betakey: disabled - osarch: '64' + osarch: "64" description: (DirectX12) executable: Diesel Railcar Simulator 64-bit.exe type: option1 - - arguments: '-force-d3d11' + - arguments: "-force-d3d11" config: - osarch: '64' - description: '(32-bit, DirectX11)' + osarch: "64" + description: "(32-bit, DirectX11)" executable: Diesel Railcar Simulator.exe type: option2 - - arguments: '-force-d3d12' + - arguments: "-force-d3d12" config: betakey: disabled - osarch: '64' - description: '(32-bit, DirectX12)' + osarch: "64" + description: "(32-bit, DirectX12)" executable: Diesel Railcar Simulator.exe type: option3 -'750200': +"750200": installDir: AWAY The Survival Series launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Away.exe type: default -'750210': +"750210": installDir: Last Anime boy Saving loli launch: - executable: LAB.exe type: default -'750240': +"750240": installDir: AscendingMadness launch: - config: oslist: windows executable: AscendingMadness.exe type: default -'750270': +"750270": installDir: HoverSouls launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: HoverXSouls.exe type: default -'750330': +"750330": installDir: Air Hockey launch: - config: oslist: windows executable: AirHockey.exe type: default -'750350': +"750350": installDir: Google Spotlight Stories Piggy launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: win32/storyplayer.exe type: vr - config: - osarch: '64' + osarch: "64" oslist: windows executable: win64/storyplayer.exe type: vr -'750360': +"750360": installDir: Google Spotlight Stories On Ice launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: win32/storyplayer.exe type: vr - config: - osarch: '64' + osarch: "64" oslist: windows executable: win64/storyplayer.exe type: vr -'750400': - installDir: Two Inns at Miller's Hollow +"750400": + installDir: "Two Inns at Miller's Hollow" launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TwoInns.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: TwoInns type: default - config: oslist: macos - executable: TwoInns.app\\Contents\\MacOS\\TwoInns + executable: "TwoInns.app\\\\Contents\\\\MacOS\\\\TwoInns" type: default -'750420': +"750420": installDir: Super Dashmatch launch: - config: @@ -348124,7 +343095,7 @@ oslist: linux executable: SuperDashmatch.x86_64 type: default -'750440': +"750440": installDir: Skylight launch: - config: @@ -348139,30 +343110,30 @@ - description: Play Skylight Oculus Rift Version executable: SkylightRift36.exe type: none -'750450': +"750450": installDir: Gunlock launch: - config: oslist: windows executable: Gunlock.exe type: default -'750460': +"750460": installDir: WRONGED launch: - description: WRONGED - executable: WRONGED\\WRONGED v1_5_1\\WRONGED.exe + executable: "WRONGED\\\\WRONGED v1_5_1\\\\WRONGED.exe" type: default - description: WRONGED VR - executable: WRONGED\\WRONGED VR v1_2\\WRONGED VR.exe + executable: "WRONGED\\\\WRONGED VR v1_2\\\\WRONGED VR.exe" type: vr - description: CREEP - executable: WRONGED\\CREEP v1_3_3\\CREEP.exe + executable: "WRONGED\\\\CREEP v1_3_3\\\\CREEP.exe" type: option1 -'750470': +"750470": installDir: WarBrokers launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: War_Brokers.exe type: default @@ -348171,21 +343142,21 @@ executable: wbosx.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: war_brokers.x86_64 type: default -'750500': +"750500": installDir: Socketeer launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: The 64-Bit Version of Socketeer executable: Socketeer_x64.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows description: The 32-Bit Version of Socketeer executable: Socketeer_x86.exe @@ -348193,47 +343164,43 @@ - config: oslist: macos description: The Universal Mac Version of Socketeer - executable: Socketeer.app\\Contents\\MacOS\\Socketeer + executable: "Socketeer.app\\\\Contents\\\\MacOS\\\\Socketeer" type: default -'750520': +"750520": installDir: Arcade Tycoon launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: 64-Bit executable: ArcadeTycoon.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: ArcadeTycoon.exe type: default -'750610': +"750610": installDir: Garenburg Woods launch: - config: oslist: windows description: in Windowed Mode - description_loc: - english: in Windowed Mode executable: Windowed.exe type: option1 - config: oslist: windows description: in Fullscreen Mode - description_loc: - english: in Fullscreen Mode executable: Fullscreen.exe type: option2 -'750620': +"750620": installDir: Naughty Elves launch: - config: oslist: windows executable: naughtyelves.exe type: default -'750660': +"750660": installDir: Knockout Checkers Chamber launch: - config: @@ -348242,24 +343209,24 @@ type: none - config: oslist: macos - executable: Knockout Checkers Chamber.app\\Contents\\MacOS\\Knockout Checkers Chamber + executable: "Knockout Checkers Chamber.app\\\\Contents\\\\MacOS\\\\Knockout Checkers Chamber" type: none -'750670': +"750670": installDir: SUSHIDO VS ZOMBIES launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SUSHIDO_VS_ZOMBIES.exe type: vr -'750710': +"750710": installDir: CRONEWORLD-CH1 launch: - config: oslist: windows executable: CRONEWORLD-CH1.exe type: default -'750740': +"750740": installDir: Slice the Ice launch: - config: @@ -348268,16 +343235,16 @@ type: default - config: oslist: macos - executable: Slice the Ice.app\\Contents\\MacOS\\Slice the Ice + executable: "Slice the Ice.app\\\\Contents\\\\MacOS\\\\Slice the Ice" type: default -'750770': +"750770": installDir: Labyronia_Elements launch: - config: oslist: windows executable: Game.exe type: default -'750780': +"750780": installDir: Christmas Puzzle 2 launch: - config: @@ -348288,52 +343255,52 @@ oslist: macos executable: ChristmasPuzzle2.app/Contents/MacOS/cm2 type: none -'750790': +"750790": installDir: Hollow Throne launch: - config: oslist: windows executable: ht.exe type: default -'750800': +"750800": installDir: Egress launch: - config: betakey: egressbeta - osarch: '64' + osarch: "64" oslist: windows executable: Egress.exe type: default - config: betakey: netsystem - osarch: '64' + osarch: "64" oslist: windows executable: NetSystem.exe type: default - - arguments: '-log' + - arguments: "-log" config: betakey: netsystem - osarch: '64' + osarch: "64" oslist: windows description: netSystemDedicatedServer - executable: NetSystem\\Binaries\\Win64\\NetSystemServer.exe + executable: "NetSystem\\\\Binaries\\\\Win64\\\\NetSystemServer.exe" type: server -'750820': +"750820": installDir: You Are a Torpedo AI launch: - config: oslist: windows executable: TorpedoAI.exe type: default -'750850': +"750850": installDir: TDC launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TheDreamCollector.exe type: vr -'750870': +"750870": installDir: JumpBall 2 launch: - config: @@ -348343,94 +343310,71 @@ - config: oslist: windows description: JumpBall 2 Tower Mode - description_loc: - english: JumpBall 2 Tower Mode - executable: JumpBall 2 Tower Mode\\JumpBall 2 Tower Mode.exe + executable: "JumpBall 2 Tower Mode\\\\JumpBall 2 Tower Mode.exe" type: option2 - config: oslist: windows description: Jumpball - description_loc: - english: Jumpball - executable: JumpBall\\JumpBall.exe + executable: "JumpBall\\\\JumpBall.exe" type: option3 -'750900': +"750900": installDir: Fight desserts launch: - config: oslist: windows executable: Fight desserts.exe type: default -'750920': +"750920": installDir: Shadow of the Tomb Raider launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch SOTTR executable: SOTTR.exe type: default - config: - betakey: >- - live_build, amd_dev, nvidia_dev, tobii_dev, microsoft_dev, dxr_creative, amd_1, amd_2, baseline, cd_marketing, - dev_qa1, development, em_marketing, em_production, intel, jap_ar_test, latest, milestone_alpha, milestone_fp, - nvidia_1, pub_1, pub_2, qa_compat, qa_loc, sqeu, tobii, latest_sub, dxr_creative - osarch: '64' + betakey: "live_build, amd_dev, nvidia_dev, tobii_dev, microsoft_dev, dxr_creative, amd_1, amd_2, baseline, cd_marketing, dev_qa1, development, em_marketing, em_production, intel, jap_ar_test, latest, milestone_alpha, milestone_fp, nvidia_1, pub_1, pub_2, qa_compat, qa_loc, sqeu, tobii, latest_sub, dxr_creative" + osarch: "64" oslist: windows - ownsdlc: '792460' + ownsdlc: "792460" description: Launch TR11 Final - description_loc: - english: Launch TR11 Final executable: TR11_final.exe type: none - - arguments: '-archive -norootchange -mainmenu -noassert -launcher' + - arguments: "-archive -norootchange -mainmenu -noassert -launcher" config: - betakey: >- - live_build, amd_dev, nvidia_dev, microsoft_dev, dxr_creative, amd_1, amd_2, baseline, cd_marketing, dev_qa1, - development, em_marketing, em_production, intel, jap_ar_test, latest, milestone_alpha, milestone_fp, nvidia_1, - nvidia_rt, pub_1, pub_2, qa_compat, qa_loc, sqeu, tobii, latest_sub - osarch: '64' + betakey: "live_build, amd_dev, nvidia_dev, microsoft_dev, dxr_creative, amd_1, amd_2, baseline, cd_marketing, dev_qa1, development, em_marketing, em_production, intel, jap_ar_test, latest, milestone_alpha, milestone_fp, nvidia_1, nvidia_rt, pub_1, pub_2, qa_compat, qa_loc, sqeu, tobii, latest_sub" + osarch: "64" oslist: windows - ownsdlc: '792460' + ownsdlc: "792460" description: Launch TR11 Release - description_loc: - english: Launch TR11 Release executable: TR11_release.exe type: none - config: - betakey: >- - live_build, amd_dev, dxr_creative, marketing_e3_demo, e3_demo_sotr_safetybuild, sotr_demo_e3_edition, - sotr_demo_gamescom_showfloor, sotr_demo_uk_showfloor - osarch: '64' + betakey: "live_build, amd_dev, dxr_creative, marketing_e3_demo, e3_demo_sotr_safetybuild, sotr_demo_e3_edition, sotr_demo_gamescom_showfloor, sotr_demo_uk_showfloor" + osarch: "64" oslist: windows description: Launch E3 Demo - description_loc: - english: Launch E3 Demo executable: TR11_final.exe type: none - config: - betakey: >- - dxr_creative, amd_1, amd_2, baseline, cd_marketing, dev_qa1, development, em_marketing, em_production, intel, - jap_ar_test, latest, milestone_alpha, milestone_fp, nvidia_1, nvidia_rt, pub_1, pub_2, qa_compat, qa_loc, - sqeu, tobii, latest_sub - osarch: '64' + betakey: "dxr_creative, amd_1, amd_2, baseline, cd_marketing, dev_qa1, development, em_marketing, em_production, intel, jap_ar_test, latest, milestone_alpha, milestone_fp, nvidia_1, nvidia_rt, pub_1, pub_2, qa_compat, qa_loc, sqeu, tobii, latest_sub" + osarch: "64" oslist: windows - ownsdlc: '792460' + ownsdlc: "792460" description: Launch TR11 GM original executable: TR11.exe type: none - - arguments: '-nolauncher' + - arguments: "-nolauncher" config: - betakey: 'amd_dev, dxr_creative, latest_dxr, nvidia_rt, eidos_rt' - osarch: '64' + betakey: "amd_dev, dxr_creative, latest_dxr, nvidia_rt, eidos_rt" + osarch: "64" oslist: windows description: Launch Nvidia Demo - description_loc: - english: Launch Nvidia Demo executable: TR11_final.exe type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: ShadowOfTheTombRaider.sh type: default @@ -348438,20 +343382,20 @@ oslist: macos executable: Shadow of the Tomb Raider.app type: default -'750930': {} -'750960': +"750930": {} +"750960": installDir: Yissa Deep Realms launch: - config: oslist: windows executable: nw.exe type: default -'750990': +"750990": installDir: NEKO-NIN exHeart +PLUS Saiha launch: - executable: nekonin_saiha.exe type: none -'7510': +"7510": installDir: X-Blades launch: - config: @@ -348475,49 +343419,49 @@ type: option2 - config: oslist: windows - ownsdlc: '604280' + ownsdlc: "604280" description: Digital Deluxe Content executable: ddc.cmd type: none - config: oslist: macos - ownsdlc: '604280' + ownsdlc: "604280" description: Digital Deluxe Content executable: ddc type: none - config: oslist: linux - ownsdlc: '604280' + ownsdlc: "604280" description: Digital Deluxe Content executable: ddc_xdg type: none -'751060': +"751060": installDir: Ice Age Scrat launch: - config: oslist: windows executable: IceAge.exe type: none -'751080': {} -'751100': {} -'751110': +"751080": {} +"751100": {} +"751110": installDir: OVERVIEW launch: - - arguments: '-mode=VR_OpenVR' + - arguments: "-mode=VR_OpenVR" config: oslist: windows description: HTC Vive & WMR executable: system/OVERVIEW_Steam.exe type: vr workingdir: system - - arguments: '-mode=VR_Oculus' + - arguments: "-mode=VR_Oculus" config: oslist: windows description: Oculus Rift executable: system/OVERVIEW_Steam.exe type: othervr workingdir: system - - arguments: '-mode=VR_OpenVR' + - arguments: "-mode=VR_OpenVR" config: betakey: beta oslist: windows @@ -348525,7 +343469,7 @@ executable: system/OVERVIEW_Steam.exe type: vr workingdir: system - - arguments: '-mode=VR_Oculus' + - arguments: "-mode=VR_Oculus" config: betakey: beta oslist: windows @@ -348534,15 +343478,15 @@ type: othervr workingdir: system nameLocalized: - french: 'OVERVIEW : une Promenade dans l''Univers' - german: 'OVERVIEW: ein Spaziergang durch das Universum' + french: "OVERVIEW : une Promenade dans l'Univers" + german: "OVERVIEW: ein Spaziergang durch das Universum" schinese: 纵观 (OVERVIEW) -'751180': +"751180": installDir: Melodic Riddle launch: - executable: Melodic Riddle.exe type: none -'751200': +"751200": installDir: Puzzle_Tactics launch: - config: @@ -348553,7 +343497,7 @@ oslist: macos executable: Puzzle Tactics.app type: default -'751220': +"751220": installDir: ETHEREAL launch: - config: @@ -348562,15 +343506,15 @@ type: default - config: oslist: macos - executable: ETHEREAL.app\\Contents\\MacOS\\ETHEREAL + executable: "ETHEREAL.app\\\\Contents\\\\MacOS\\\\ETHEREAL" type: default -'751230': {} -'751240': +"751230": {} +"751240": installDir: Fractured Lands launch: - executable: FracturedLandsLauncher.exe type: default -'751250': +"751250": installDir: Big Tower Tiny Square launch: - config: @@ -348581,27 +343525,27 @@ oslist: macos executable: bigtowertinysquare.app/Contents/MacOS/nwjs type: default -'751260': +"751260": installDir: Astrohazard Solutions Ltd launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: astrohazard.exe type: default -'751270': +"751270": installDir: BioEntity launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: BioEntity.exe type: default - config: oslist: macos - executable: BioEntity.app\\Contents\\MacOS\\BioEntity + executable: "BioEntity.app\\\\Contents\\\\MacOS\\\\BioEntity" type: default -'751280': +"751280": installDir: Snail Trek Chapter 1 launch: - config: @@ -348613,39 +343557,30 @@ executable: SnailTrek.app type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: SnailTrek.x86_64 type: none -'751300': +"751300": installDir: AliceMysteryGarden launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: AliceMysteryGarden.exe type: vr -'751320': +"751320": installDir: Echo launch: - config: oslist: windows executable: Echo.exe - config: - ownsdlc: '2096880' + ownsdlc: "2096880" description: Artbook - description_loc: - english: Artbook - japanese: 美術集 - latam: Galería de arte - schinese: 美术集 - spanish: Galería de arte - tchinese: 美術集 executable: Artbook.pdf type: option1 - description: Readme - description_loc: - english: Readme executable: Readme.htm nameLocalized: english: Echo @@ -348654,70 +343589,70 @@ schinese: 回音 spanish: Eco tchinese: 回音 -'751330': +"751330": installDir: Battery Jam launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Battery_Jam.exe type: default -'751340': +"751340": installDir: Assault Gunners launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: game_x64.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: game_x86.exe type: default -'751350': +"751350": installDir: Population One launch: - executable: Deadly Contact.exe type: default -'751380': +"751380": installDir: SacredFour launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SacredFour.exe type: vr -'751400': +"751400": installDir: The Turdler launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TheTurdler.exe type: vr -'751430': +"751430": installDir: Puzzle of Santa Girl VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: PuzzleOfSantaGirlVR.exe type: vr -'751440': +"751440": installDir: VR_Kanojo launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: VR_Kanojo.exe type: vr - config: - osarch: '64' + osarch: "64" oslist: windows executable: VR_Kanojo.exe type: othervr -'751450': +"751450": installDir: Nanairo Reincarnation launch: - config: @@ -348726,21 +343661,21 @@ type: default nameLocalized: japanese: なないろリンカネーション -'751470': +"751470": installDir: Deadstep launch: - config: oslist: windows executable: Deadstep.exe type: none -'751480': +"751480": installDir: Vector Velocity launch: - config: oslist: windows executable: VectorVelocity.exe type: vr -'751500': +"751500": installDir: TINY METAL launch: - config: @@ -348751,15 +343686,15 @@ oslist: macos executable: Milk.app/Contents/MacOS/Milk type: default -'751530': +"751530": installDir: DogFightSuperUltraDeluxe launch: - - arguments: '-output outputlog.txt ' + - arguments: "-output outputlog.txt " config: oslist: windows executable: DogFight.exe type: default -'751540': +"751540": installDir: Duel Jousting launch: - config: @@ -348768,37 +343703,37 @@ type: none - config: oslist: macos - executable: Duel Jousting.app\\Contents\\MacOS\\_BUILD_Mac + executable: "Duel Jousting.app\\\\Contents\\\\MacOS\\\\_BUILD_Mac" type: none - config: oslist: linux executable: Duel Jousting.x86_64 type: none -'751550': +"751550": installDir: The Same Crime launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TheSameCrime.exe type: vr -'751580': +"751580": installDir: Mankind Defender launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: MankindDefender.exe type: default -'751590': +"751590": installDir: Dinosaurs A Prehistoric Adventure launch: - config: oslist: windows executable: DaPA.exe type: default -'751600': {} -'751630': +"751600": {} +"751630": installDir: After The Fall launch: - config: @@ -348807,7 +343742,7 @@ executable: AfterTheFall.exe type: vr - config: - betakey: 'staging-debug-daily, staging-closed-beta-daily, stable' + betakey: "staging-debug-daily, staging-closed-beta-daily, stable" oslist: windows executable: AfterTheFall.exe type: vr @@ -348815,11 +343750,11 @@ oslist: windows executable: AfterTheFall.exe type: vr -'751640': +"751640": installDir: Dead Dungeon launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Dead Dungeon.exe type: default @@ -348828,19 +343763,19 @@ executable: Dead Dungeon.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Dead Dungeon.x86_64 type: default -'751660': +"751660": installDir: War Truck Simulator launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: War Truck Simulator.exe type: default -'751670': +"751670": installDir: CloudChasers launch: - config: @@ -348851,14 +343786,14 @@ oslist: windows executable: CloudChasers_Win.exe type: default -'751680': +"751680": installDir: C64 & AMIGA Classix Remakes Sixpack 2 launch: - config: oslist: windows executable: GameCollectionLauncher_Release Steam_x86.exe type: default -'751690': +"751690": installDir: The Mammoth launch: - config: @@ -348873,22 +343808,22 @@ oslist: linux executable: TheMammoth.sh type: none -'751730': +"751730": installDir: Tennis Arcade VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TArcadeVR.exe type: vr -'751740': +"751740": installDir: Roller Coaster Egypt VR launch: - config: oslist: windows executable: VrRollerCoasterEgypt.exe type: vr -'751750': +"751750": installDir: 4-in-1 IQ Scale Bundle launch: - config: @@ -348901,9 +343836,9 @@ type: default - config: oslist: macos - executable: IQScale41.app\\Contents\\MacOS\\nwjs + executable: "IQScale41.app\\\\Contents\\\\MacOS\\\\nwjs" type: default -'751780': +"751780": installDir: Forager launch: - config: @@ -348918,42 +343853,42 @@ oslist: linux executable: Forager type: default -'751820': - installDir: Black Future '88 +"751820": + installDir: "Black Future '88" launch: - config: oslist: windows - executable: BlackFuture'88.exe + executable: "BlackFuture'88.exe" type: none -'751870': +"751870": installDir: Chopper Battle New Horizon launch: - config: oslist: windows executable: ChopperBattleNewHorizon_steam.exe type: default -'751920': +"751920": installDir: Sealer Assist launch: - config: oslist: windows executable: SealerAssist.exe type: none -'751940': +"751940": installDir: Flight of the Athena launch: - config: oslist: windows executable: FlightOfTheAthena.exe type: default -'751950': +"751950": installDir: TACTICAL launch: - config: oslist: windows executable: TACTICAL.exe type: default -'751970': +"751970": installDir: Plox Neon launch: - config: @@ -348962,9 +343897,9 @@ type: default - config: oslist: macos - executable: PloxNeon.app\\Contents\\MacOS\\PloxNeon + executable: "PloxNeon.app\\\\Contents\\\\MacOS\\\\PloxNeon" type: default -'7520': +"7520": installDir: Two Worlds II launch: - config: @@ -348980,56 +343915,56 @@ oslist: macos description: Two Worlds II executable: Two Worlds II.app - - arguments: '-adapter' + - arguments: "-adapter" config: oslist: windows description: Two Worlds II 3D executable: TwoWorlds2_DX10.exe - config: oslist: windows - ownsdlc: '302020' + ownsdlc: "302020" description: Two Worlds II Strategy Guide executable: TW2SG.exe - config: oslist: macos - ownsdlc: '302020' + ownsdlc: "302020" description: Two Worlds II Strategy Guide executable: TW2SG.app - config: oslist: windows - ownsdlc: '302030' + ownsdlc: "302030" description: Two Worlds II Pirates of the flying Fortress Strategy Guide executable: TW2POTFFSG.exe - config: oslist: macos - ownsdlc: '302030' + ownsdlc: "302030" description: Two Worlds II Pirates of the flying Fortress Strategy Guide executable: TW2POTFFSG.app - config: oslist: windows - ownsdlc: '578982' + ownsdlc: "578982" description: Level Editor executable: TwoWorlds2Editor.exe type: none - config: oslist: windows - ownsdlc: '578982' + ownsdlc: "578982" description: Particle Editor executable: ParticleEdit.exe type: none - config: oslist: windows - ownsdlc: '633963' + ownsdlc: "633963" description: Digital Deluxe Content executable: ddc.cmd type: none - config: oslist: macos - ownsdlc: '633963' + ownsdlc: "633963" description: Digital Deluxe Content executable: ddc type: none -'752000': +"752000": installDir: bug_battle_game launch: - config: @@ -349044,16 +343979,16 @@ oslist: macos executable: bug_battle.app type: default -'752010': {} -'752020': +"752010": {} +"752020": installDir: TheApartmentGame launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TheApartment.exe type: default -'752030': +"752030": installDir: Paradise Lost launch: - config: @@ -349064,42 +343999,42 @@ oslist: macos executable: ParadiseLost_Alpha01_OSX.app type: default -'752050': +"752050": installDir: Virtual Reality Girls launch: - - arguments: '-windowed' + - arguments: "-windowed" config: - osarch: '64' + osarch: "64" oslist: windows executable: Virtual Reality Girls.exe type: vr -'752060': +"752060": installDir: Subwar 2050 launch: - config: oslist: windows executable: Launch Subwar 2050.bat type: default - - arguments: '-conf \"./dosboxSUBWAR.conf\" -conf \"./dosboxSUBWAR_single.conf\" -noconsole' + - arguments: "-conf \\\"./dosboxSUBWAR.conf\\\" -conf \\\"./dosboxSUBWAR_single.conf\\\" -noconsole" config: oslist: macos executable: DOSBox/dosbox.app/Contents/MacOS/DOSBox type: default - - arguments: '-conf \"./dosboxSUBWAR.conf\" -conf \"./dosboxSUBWAR_single.conf\" -noconsole' + - arguments: "-conf \\\"./dosboxSUBWAR.conf\\\" -conf \\\"./dosboxSUBWAR_single.conf\\\" -noconsole" config: oslist: linux executable: dosbox/dosbox type: default -'752070': {} -'752080': +"752070": {} +"752080": installDir: Intergalactic traveler The Omega Sector launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows executable: Game.exe type: none -'752170': +"752170": installDir: Save Your Nuts launch: - config: @@ -349112,32 +344047,32 @@ type: default - config: oslist: macos - executable: SaveYourNuts.app\\Contents\\MacOS\\SaveYourNuts + executable: "SaveYourNuts.app\\\\Contents\\\\MacOS\\\\SaveYourNuts" type: default -'752180': +"752180": installDir: One Night launch: - config: oslist: windows executable: Game.exe type: default -'752200': +"752200": installDir: DunHuang launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: DunHuang/DunHuang.exe type: vr -'752240': +"752240": installDir: Space Time Shipyard launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Space Time Shipyard.exe type: default -'752300': +"752300": installDir: Forestation launch: - config: @@ -349146,36 +344081,36 @@ type: default - config: oslist: macos - executable: Forestation.app\\Contents\\MacOS\\Forestation + executable: "Forestation.app\\\\Contents\\\\MacOS\\\\Forestation" type: default -'752310': +"752310": installDir: Flying Salvager launch: - config: oslist: macos - executable: Flying Salvager.app\\Contents\\MacOS\\Flying Salvager + executable: "Flying Salvager.app\\\\Contents\\\\MacOS\\\\Flying Salvager" type: default - config: oslist: windows executable: Flying Salvager.exe type: default -'752330': +"752330": installDir: Shape of America launch: - config: oslist: windows executable: game.exe type: default -'752360': +"752360": installDir: Fallen Mage launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Fallen Mage.exe type: default -'752370': {} -'752380': +"752370": {} +"752380": installDir: Terrorhythm launch: - config: @@ -349186,52 +344121,52 @@ oslist: macos executable: TRRT.app type: none -'752400': +"752400": installDir: Frozen Drift Race launch: - config: oslist: windows executable: Frozen Drift Race.exe type: default -'752430': +"752430": installDir: ArcadeLove launch: - config: oslist: windows executable: GL_pc.exe type: none -'752470': +"752470": installDir: CINERIS SOMNIA launch: - config: oslist: windows executable: Cineris Somnia.exe type: default -'752480': +"752480": installDir: Sniper Elite VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SniperEliteVR.exe type: vr -'752500': +"752500": installDir: Ghoulboy launch: - config: oslist: windows executable: Ghoulboy.exe type: default -'752520': +"752520": installDir: VRFC launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SoccerVR.exe type: vr -'752530': {} -'752550': +"752530": {} +"752550": installDir: Ripped Pants at Work launch: - config: @@ -349242,93 +344177,92 @@ oslist: macos executable: RPaW_Mac_1_28.app type: default -'752560': +"752560": installDir: Noahmund launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Noahmund.exe type: default -'752570': +"752570": installDir: Song of Memories launch: - - arguments: '-lang 0' + - arguments: "-lang 0" config: oslist: windows - description: 'Song of Memories(日本語:Japanese)' + description: "Song of Memories(日本語:Japanese)" executable: Som.exe type: option1 - - arguments: '-lang 4' + - arguments: "-lang 4" config: oslist: windows - description: 'Song of Memories(簡体字:Simplified Chinese)' + description: "Song of Memories(簡体字:Simplified Chinese)" executable: Som.exe type: option1 - - arguments: '-lang 3' + - arguments: "-lang 3" config: oslist: windows - description: 'Song of Memories(繁体字:Traditional Chinese)' + description: "Song of Memories(繁体字:Traditional Chinese)" executable: Som.exe type: option1 - - arguments: '-lang 1' + - arguments: "-lang 1" config: oslist: windows description: Song of Memories(English) executable: Som.exe type: option1 - - arguments: '-lang 2' + - arguments: "-lang 2" config: oslist: windows description: Song of Memories(Français) executable: Som.exe type: option1 -'752580': +"752580": installDir: Imperivm - Great Battles of Rome HD launch: - config: oslist: windows executable: gbr.exe type: none -'752590': +"752590": installDir: A Plague Tale Innocence launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch APlagueTaleInnocence_x64.exe executable: APlagueTaleInnocence_x64.exe type: none - config: - betakey: >- - asobo_bckp,asobo_hw,asobo_interne_test,asobo_pkg_test,asobo_qa_test,asobo_qa_test_demo_steam,asobo_sound,auto_perf,focus_hw,focus_internal,focus_lp,focus_qa_test_last_update,localization_test,milestone,test_signature,testlab,whats_next_2019,patch1 - osarch: '64' + betakey: "asobo_bckp,asobo_hw,asobo_interne_test,asobo_pkg_test,asobo_qa_test,asobo_qa_test_demo_steam,asobo_sound,auto_perf,focus_hw,focus_internal,focus_lp,focus_qa_test_last_update,localization_test,milestone,test_signature,testlab,whats_next_2019,patch1" + osarch: "64" oslist: windows description: Launch APlagueTaleInnocence_DEV_x64.exe executable: APlagueTaleInnocence_DEV_x64.exe type: none -'752600': +"752600": installDir: Dual Snake launch: - config: oslist: windows executable: Dual Snake.exe type: default -'752640': +"752640": installDir: National Rugby Manager launch: - config: oslist: windows executable: NationalRugbyManager.exe type: default -'752690': +"752690": installDir: The Resistance launch: - config: oslist: windows executable: The Resistance.exe type: default -'752700': +"752700": installDir: Abscond launch: - config: @@ -349343,7 +344277,7 @@ oslist: linux executable: Abscond.Linux/Abscond.x86 type: default -'752710': +"752710": installDir: Infinity Trip launch: - config: @@ -349358,71 +344292,71 @@ oslist: linux executable: InfinityTrip.Linux/InfinityTrip.x86 type: default -'752720': +"752720": installDir: TheCulling2 launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Play The Culling 2(EAC) executable: Launch_TheCulling2.exe type: default -'752730': +"752730": installDir: Fantastic Beasts VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: HTCVive\\FantasticBeasts.exe + executable: "HTCVive\\\\FantasticBeasts.exe" type: vr - config: - osarch: '64' + osarch: "64" oslist: windows - executable: OculusRift\\FantasticBeasts.exe + executable: "OculusRift\\\\FantasticBeasts.exe" type: othervr -'752750': +"752750": installDir: Justice League VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: HTCVive\\Justice_League_VR_The_Complete_Experience-1.0.1-HtcVive-Release.exe + executable: "HTCVive\\\\Justice_League_VR_The_Complete_Experience-1.0.1-HtcVive-Release.exe" type: vr - config: - osarch: '64' + osarch: "64" oslist: windows - executable: OculusRift\\JLVR.exe + executable: "OculusRift\\\\JLVR.exe" type: othervr -'752760': {} -'752770': +"752760": {} +"752770": installDir: GyroShooter launch: - config: oslist: windows executable: gs_win32.exe type: default -'752780': +"752780": installDir: W4RR-io-RS launch: - config: oslist: windows - executable: W4RR-io-RS\\w4rr-io-rs.exe + executable: "W4RR-io-RS\\\\w4rr-io-rs.exe" type: default -'752790': +"752790": installDir: Danger Close launch: - config: oslist: windows executable: Danger Close.exe type: none -'752800': +"752800": installDir: Mysterious Realms RPG launch: - config: oslist: windows executable: game.exe type: default -'752810': +"752810": installDir: NOLA is Burning launch: - config: @@ -349437,7 +344371,7 @@ oslist: linux executable: NOLAIsBurning type: none -'752830': +"752830": installDir: Choice of the Rock Star launch: - config: @@ -349452,7 +344386,7 @@ oslist: linux executable: ChoiceOfTheRockStar type: none -'752850': +"752850": installDir: Choice of the Ninja launch: - config: @@ -349467,7 +344401,7 @@ oslist: linux executable: ChoiceOfTheNinja type: none -'752880': +"752880": installDir: SoundsofMusic launch: - config: @@ -349478,7 +344412,7 @@ oslist: macos executable: som.app/Contents/MacOS/som type: default -'752910': +"752910": installDir: CookiesvsClaus launch: - config: @@ -349490,17 +344424,17 @@ executable: CookiesvsClaus.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: CookiesvsClaus.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: CookiesvsClaus.x86_64 type: none -'752960': {} -'7530': +"752960": {} +"7530": installDir: Two Worlds II Castle Defense launch: - config: @@ -349509,24 +344443,24 @@ - config: oslist: macos executable: TW2CD.app -'753020': {} -'753060': +"753020": {} +"753060": installDir: Lucky Night launch: - - arguments: '-VR -AutoLogin -UseSteam -LoginServer=master.solar.qq.com:10008' + - arguments: "-VR -AutoLogin -UseSteam -LoginServer=master.solar.qq.com:10008" config: - osarch: '64' + osarch: "64" oslist: windows - executable: WindowsNoEditor\\SolarGame.exe + executable: "WindowsNoEditor\\\\SolarGame.exe" type: vr -'753090': +"753090": installDir: Marius launch: - config: oslist: windows executable: GranolaWorld.exe type: vr -'753100': +"753100": installDir: Orbitality launch: - config: @@ -349537,7 +344471,7 @@ oslist: macos executable: Orbitality.app/Contents/MacOS/Orbitality type: none -'753110': +"753110": installDir: Chronicles of Vinland launch: - config: @@ -349548,15 +344482,15 @@ oslist: windows executable: Chronicles of Vinland.exe type: none -'753140': {} -'753170': +"753140": {} +"753170": installDir: Blood Harvest 2 launch: - config: oslist: windows executable: BloodHarvest2.exe type: default -'753210': +"753210": installDir: DIY Simulator launch: - config: @@ -349567,7 +344501,7 @@ betakey: beta executable: SurvivalGameClient.exe type: none -'753220': +"753220": installDir: Mhakna Gramura and Fairy Bell launch: - config: @@ -349582,7 +344516,7 @@ oslist: linux executable: fairybell.sh type: default -'753230': +"753230": installDir: STAY launch: - config: @@ -349591,9 +344525,9 @@ type: default - config: oslist: macos - executable: STAY.app\\Contents\\MacOS\\STAY + executable: "STAY.app\\\\Contents\\\\MacOS\\\\STAY" type: default -'753240': +"753240": installDir: CG the Seven Virus Knights Tutorial launch: - config: @@ -349601,45 +344535,45 @@ description: Launch executable: CGtheSevenVirusKnights.exe type: default -'753270': - installDir: Henri's Secret +"753270": + installDir: "Henri's Secret" launch: - config: betakey: 1.0.0 oslist: windows executable: SecretHenri.exe type: config -'753360': +"753360": installDir: VoiceActress launch: - config: oslist: windows executable: VoiceActress.exe type: default -'753370': +"753370": installDir: REGENESIS Arcade launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Regenesis_Arcade.exe type: vr -'753380': +"753380": installDir: Metal Soldiers 2 launch: - config: oslist: windows executable: MetalSoldiers2.exe type: none -'753390': +"753390": installDir: The Eerie Adventures Of Kally launch: - config: oslist: windows executable: TheEerieAdventuresOfKally.exe type: none -'753410': {} -'753420': +"753410": {} +"753420": installDir: Dungreed launch: - config: @@ -349653,21 +344587,21 @@ - config: oslist: linux executable: Dungreed.x86_64 -'753440': +"753440": installDir: A Small Robot Story launch: - config: oslist: windows executable: ASmallRobotStory.exe type: none -'753490': +"753490": installDir: Lamplight Station launch: - config: oslist: windows executable: Sandbox.exe type: none -'753560': +"753560": installDir: Twinstack launch: - config: @@ -349678,150 +344612,150 @@ oslist: macos executable: Twinstack.app type: none -'753570': +"753570": installDir: Rogue Buddies - Aztek Gold launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: roguebuddies.exe type: default -'753590': +"753590": installDir: Hellbound launch: - - arguments: '-language=en' + - arguments: "-language=en" config: oslist: windows executable: Hellbound.exe type: default -'753610': +"753610": installDir: J.A.W.S launch: - - arguments: '-fullscreen' + - arguments: "-fullscreen" config: - osarch: '64' + osarch: "64" oslist: windows executable: Survival.exe type: default -'753630': +"753630": installDir: Paintboss - Car Painting VR launch: - config: oslist: windows executable: VRPaint.exe type: vr -'753640': +"753640": installDir: Outer Wilds launch: - config: oslist: windows executable: OuterWilds.exe type: default -'753650': +"753650": installDir: DueProcess launch: - description: DueProcess executable: Launch_Game.exe type: default -'753660': +"753660": installDir: AtmaSphere launch: - config: oslist: windows executable: AtmaSphereFinal.exe type: default -'753670': +"753670": installDir: Restaurant Tycoon launch: - config: oslist: windows executable: RestaurantTycoon.exe type: default -'753900': +"753900": installDir: End Space launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: End Space.exe type: default - - arguments: '-vrmode openvr' + - arguments: "-vrmode openvr" config: - osarch: '64' + osarch: "64" oslist: windows executable: End Space.exe type: vr - - arguments: '-vrmode oculus' + - arguments: "-vrmode oculus" config: - osarch: '64' + osarch: "64" oslist: windows executable: End Space.exe type: othervr -'753920': +"753920": installDir: Battle for the last chicken launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Battle for the last chicken.exe type: vr -'753930': - installDir: God's Basement +"753930": + installDir: "God's Basement" launch: - config: oslist: windows executable: GodsBasement.exe type: default -'753950': +"753950": installDir: WWIIKnispel launch: - config: oslist: windows executable: contents/Game.exe type: default -'753960': +"753960": installDir: ChaosFrontier launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Start.exe type: vr -'753980': +"753980": installDir: ARK -the lost fairytale- launch: - executable: game.exe type: none -'753990': +"753990": installDir: Psi Project Legacy launch: - config: oslist: windows executable: PSI PROJECT LEGACY.exe type: none -'754000': +"754000": installDir: Re-bot launch: - config: oslist: windows executable: Re-bot.exe type: vr -'754020': +"754020": installDir: Galactic Harvester launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: GalacticHarvester.exe type: default -'754040': +"754040": installDir: Piggy Poggy Pog launch: - config: oslist: windows executable: Piggy Poggy Pog.exe type: none -'754050': +"754050": installDir: Bomb Bots Arena launch: - config: @@ -349832,87 +344766,87 @@ oslist: macos executable: Bomb Bots Arena.app type: default -'754110': +"754110": installDir: EscortCommander launch: - config: oslist: windows executable: EscortCommander.exe type: default -'754120': +"754120": installDir: SC Jogos launch: - config: oslist: windows executable: Ninja Stealth 3/Ninja Stealth 3.exe type: default -'754130': {} -'754150': +"754130": {} +"754150": installDir: Rolling Line launch: - config: oslist: windows executable: RollingLine.exe type: vr - - arguments: '-playpc' + - arguments: "-playpc" config: oslist: windows description: Play on PC executable: RollingLine.exe type: default -'754160': +"754160": installDir: Defenders of Tetsoidea II launch: - config: oslist: windows executable: Game.exe type: default -'754190': +"754190": installDir: ALAN launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: - osarch: '64' + osarch: "64" oslist: windows description: A.L.A.N. executable: nw.exe type: option1 - config: - osarch: '64' + osarch: "64" oslist: windows description: A.L.A.N. (no Steam Overlay) executable: nw.exe type: option2 -'754230': +"754230": installDir: Defense Warfare launch: - config: oslist: windows executable: DefenseWarfare.exe type: default -'754270': +"754270": installDir: Hexvade launch: - config: oslist: windows executable: Hexvade.exe type: default -'754300': +"754300": installDir: Metal Quest launch: - config: oslist: windows executable: RPG_RT.exe type: none -'754310': +"754310": installDir: Deadly Cryptids launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: DeadlyCryptids.exe type: vr -'754320': +"754320": installDir: Pixel Noir launch: - config: @@ -349927,20 +344861,20 @@ oslist: macos executable: Pixel Noir.app type: default -'754330': +"754330": installDir: NOGIBATOR launch: - config: oslist: windows executable: NOGIBATOR.exe type: default - - arguments: '0' + - arguments: "0" config: oslist: windows description: русская версия executable: NOGIBATOR.exe type: option1 -'754340': +"754340": installDir: Paper Dungeons Crawler launch: - config: @@ -349949,13 +344883,13 @@ executable: PDC.exe type: none - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: PDC.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: PDC.x86_64 @@ -349965,36 +344899,36 @@ description: Launch executable: PDCMAC64.app type: none -'754350': +"754350": installDir: rencun launch: - config: oslist: windows executable: RencunFlashLobby.exe type: default -'754380': +"754380": installDir: War on Drugs VR launch: - config: oslist: windows executable: War on Drugs VR.exe type: vr -'754390': {} -'754400': +"754390": {} +"754400": installDir: Amazeing lemons launch: - config: oslist: windows executable: mazeoflemons.exe type: default -'754410': +"754410": installDir: railroadoperator launch: - config: oslist: windows executable: railroadoperator.exe type: none -'754460': +"754460": installDir: Jisei launch: - config: @@ -350009,65 +344943,65 @@ oslist: linux executable: jisei.sh type: default -'754480': +"754480": installDir: Dummy! launch: - config: oslist: windows executable: Dummy.exe type: none -'754500': +"754500": installDir: Plutocracy launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: plutocracy.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux - executable: ./plutocracy.sh + executable: "./plutocracy.sh" type: default - config: oslist: macos executable: plutocracy.app type: default -'754510': +"754510": installDir: 3D Hardcore Cube 2 launch: - config: oslist: windows executable: 3D Hardcore Cube 2.exe type: config -'754520': +"754520": installDir: Animals Memory launch: - config: oslist: windows executable: Animals Memory.exe type: config -'754530': +"754530": installDir: IL-2 Sturmovik Cliffs of Dover Blitz launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Launcher64.exe type: default -'754540': +"754540": installDir: Gauntlet of IRE launch: - config: oslist: windows executable: Gauntlet of IRE.exe type: none -'754610': +"754610": installDir: Mars Taken launch: - executable: MarsTaken.exe type: none -'754620': +"754620": installDir: High School Simulator launch: - config: @@ -350078,29 +345012,29 @@ oslist: macos executable: mac.app type: default -'754640': +"754640": installDir: Rockfest launch: - config: oslist: windows executable: Rockfest.exe type: default -'754760': +"754760": installDir: Meteors launch: - config: oslist: windows executable: MeteorsSteam01.exe type: default -'754780': {} -'754800': +"754780": {} +"754800": installDir: Yashik launch: - config: oslist: windows executable: nw.exe type: default -'754810': +"754810": installDir: Six Days of Snow launch: - config: @@ -350118,7 +345052,7 @@ description: Launch executable: Six Days of Snow.app type: none -'754830': +"754830": installDir: Travel Mosaics A Paris Tour launch: - config: @@ -350129,7 +345063,7 @@ oslist: macos executable: TravelMosaics6_ChristmasAroundTheWorld.app type: none -'754840': +"754840": installDir: My Life as a Maiden launch: - config: @@ -350142,9 +345076,9 @@ type: default - config: oslist: macos - executable: MyLifeasaMaiden.app\\Contents\\MacOS\\MyLifeasaMaiden + executable: "MyLifeasaMaiden.app\\\\Contents\\\\MacOS\\\\MyLifeasaMaiden" type: default -'754850': +"754850": installDir: The Spy Who Shrunk Me launch: - config: @@ -350153,178 +345087,164 @@ type: default - config: oslist: windows - ownsdlc: '843000' + ownsdlc: "843000" description: The Spy Who Shrunk Me VR executable: The Spy Who Shrunk Me VR.exe type: vr -'754890': +"754890": installDir: Firmament launch: - - arguments: '-d3d12 -nohmd' + - arguments: "-d3d12 -nohmd" config: - osarch: '64' + osarch: "64" oslist: windows executable: Firmament.exe type: default - - arguments: '-launchinvr -vr' + - arguments: "-launchinvr -vr" config: betakey: proofofconcept - osarch: '64' + osarch: "64" oslist: windows description: Proof of Concept in VR - description_loc: - english: Proof of Concept in VR executable: ProofOfConcept/Firmament.exe type: option1 - config: - betakey: 'internal,external_partners' + betakey: "internal,external_partners" oslist: macos description: Development configuration build - description_loc: - english: Development configuration build executable: Firmament.app type: option1 - - arguments: '-vr -d3d11' + - arguments: "-vr -d3d11" config: - osarch: '64' + osarch: "64" oslist: windows description: in VR w/ d3d11 - description_loc: - english: in VR w/ d3d11 executable: Firmament.exe type: option2 - - arguments: '-d3d11' + - arguments: "-d3d11" config: - osarch: '64' + osarch: "64" oslist: windows - description: in d3d11 (if machines can't use DirectX 12) - description_loc: - english: in d3d11 (if machines can't use DirectX 12) + description: "in d3d11 (if machines can't use DirectX 12)" executable: Firmament.exe type: option3 - config: oslist: macos executable: Firmament-Mac-Shipping.app type: default - - arguments: '-vr -d3d11 -hmd=SteamVR' + - arguments: "-vr -d3d11 -hmd=SteamVR" config: - osarch: '64' + osarch: "64" oslist: windows description: in VR (while in SteamVR Home only) - description_loc: - english: in VR (while in SteamVR Home only) executable: Firmament.exe type: vr - config: - betakey: 'internal_test,external_partners_test,internal_engineupgrade' + betakey: "internal_test,external_partners_test,internal_engineupgrade" oslist: macos description: Test configuration build - description_loc: - english: Test configuration build executable: Firmament-Mac-Test.app type: option1 - - arguments: '-d3d11' + - arguments: "-d3d11" config: betakey: proofofconcept - osarch: '64' + osarch: "64" oslist: windows description: Proof of Concept - description_loc: - english: Proof of Concept executable: ProofOfConcept/Firmament.exe type: option3 -'754910': {} -'754930': +"754910": {} +"754930": installDir: Zero Days VR launch: - config: oslist: windows executable: ZeroDaysVR.exe type: vr -'755040': - installDir: '755040' +"755040": + installDir: "755040" launch: - config: oslist: windows - executable: windows_content\\Game_boxed.exe + executable: "windows_content\\\\Game_boxed.exe" type: default -'755080': +"755080": installDir: Genesis launch: - config: oslist: windows executable: MobaGame.exe type: default -'755130': +"755130": installDir: Snowglobe launch: - config: oslist: windows executable: Snowglobe.exe type: vr -'755140': +"755140": installDir: Air Dash launch: - config: oslist: windows executable: AirDash.exe type: default -'755150': +"755150": installDir: Aurora Trail launch: - config: oslist: windows executable: AuroraTrail.exe type: default -'755220': +"755220": installDir: Frutakia_2 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Frutakia 2.exe type: default - config: oslist: macos - executable: Frutakia 2.app\\Contents\\MacOS\\Frutakia 2 + executable: "Frutakia 2.app\\\\Contents\\\\MacOS\\\\Frutakia 2" type: default - - arguments: '-force-opengl' + - arguments: "-force-opengl" config: oslist: linux executable: Frutakia 2.x86_64 type: default -'755230': +"755230": installDir: Target speed launch: - config: oslist: windows executable: Target speed.exe type: none -'755240': +"755240": installDir: Raining Coins launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Raining Coins.exe type: default - config: oslist: macos - executable: Raining Coins.app\\Contents\\MacOS\\Raining Coins + executable: "Raining Coins.app\\\\Contents\\\\MacOS\\\\Raining Coins" type: default - - arguments: '-force-opengl' + - arguments: "-force-opengl" config: oslist: linux executable: Raining Coins.x86_64 type: default -'755250': +"755250": installDir: Impale launch: - config: oslist: windows executable: impale.exe type: default -'755340': +"755340": installDir: ShawyAdventures launch: - config: @@ -350334,14 +345254,14 @@ type: default - config: oslist: macos - executable: ShawyAdventures.app\\Contents\\MacOS\\ShawyAdventures + executable: "ShawyAdventures.app\\\\Contents\\\\MacOS\\\\ShawyAdventures" type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: ShawyAdventures.x86_64 type: default -'755350': +"755350": installDir: TruthDisorder launch: - config: @@ -350356,35 +345276,35 @@ oslist: macos executable: TruthDisorder.app type: none -'755360': +"755360": installDir: Smart Junior Academy - Spring launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: sja_spring.exe type: default -'755390': {} -'755410': +"755390": {} +"755410": installDir: Vengeful Rites launch: - config: oslist: windows executable: Vengeful Rites.exe type: vr -'755420': {} -'755450': +"755420": {} +"755450": installDir: Stage3 Azaria launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ProjectVR.exe type: vr -'755470': +"755470": installDir: The World Next Door launch: - - arguments: '-logFile TWNDLogs.txt' + - arguments: "-logFile TWNDLogs.txt" config: betakey: development oslist: windows @@ -350394,7 +345314,7 @@ oslist: macos executable: TheWorldNextDoor.app type: default - - arguments: '-logFile TWNDLogs.txt' + - arguments: "-logFile TWNDLogs.txt" config: betakey: internal oslist: windows @@ -350404,7 +345324,7 @@ oslist: windows executable: TheWorldNextDoor.exe type: default -'755490': +"755490": installDir: Rocket Blasters launch: - config: @@ -350416,14 +345336,14 @@ oslist: linux executable: runner type: default -'755500': +"755500": installDir: ONE PIECE WORLD SEEKER launch: - config: - osarch: '64' + osarch: "64" executable: OPWS.exe type: none -'755520': +"755520": installDir: Battle Shapes launch: - config: @@ -350431,29 +345351,29 @@ description: Launches game on Windows. executable: Battle Shapes.exe type: default -'755530': +"755530": installDir: Factorybelts2 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Factorybelts2.exe type: none -'755550': +"755550": installDir: TrueMiningSimulator launch: - config: oslist: windows executable: True Mining Simulator.exe type: default -'755560': +"755560": installDir: Arrowpoint launch: - config: oslist: windows executable: Arrowpoint.exe type: default -'755570': +"755570": installDir: Chinbus Adventure launch: - config: @@ -350465,95 +345385,95 @@ executable: Chinbus Adventure.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Chinbus Adventure.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Chinbus Adventure.x86_64 type: default -'755580': - installDir: Daddy's gone a-hunting +"755580": + installDir: "Daddy's gone a-hunting" launch: - config: oslist: windows description: Launch executable: Daddy’s gone a-hunting.exe type: none -'755590': +"755590": installDir: Battle High 2 A+ launch: - executable: BattleHigh2A.exe type: none -'755600': +"755600": installDir: Christmas Race launch: - executable: Christmas Race.exe type: none -'755610': +"755610": installDir: Defend Your Buttress launch: - config: oslist: windows executable: DYB.exe type: none -'755630': +"755630": installDir: Drake of the 99 Dragons launch: - executable: drakeshell.exe type: default -'755640': +"755640": installDir: Predator VR launch: - config: oslist: windows executable: PredatorGame.exe type: vr -'755670': +"755670": installDir: Sleep Tight launch: - config: oslist: windows executable: Sleep Tight.exe type: default -'755760': +"755760": installDir: Power Supplied launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: Power Supplied.exe type: default - config: oslist: macos - executable: Power_Supplied_Mac.app\\Contents\\MacOS\\Power_Supplied_Mac + executable: "Power_Supplied_Mac.app\\\\Contents\\\\MacOS\\\\Power_Supplied_Mac" type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: Power Supplied_x64.exe type: default -'755770': +"755770": installDir: YouTubeVR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: YouTubeVR.exe type: vr -'755790': +"755790": installDir: Ring of Elysium launch: - - arguments: '-steam' + - arguments: "-steam" config: oslist: windows executable: SLauncher.exe nameLocalized: schinese: 无限法则 -'755800': - installDir: Hades' Star +"755800": + installDir: "Hades' Star" launch: - config: oslist: windows @@ -350563,14 +345483,14 @@ oslist: macos executable: hades_mac.app type: default -'755820': +"755820": installDir: One Against The Galaxy launch: - config: oslist: windows executable: nw.exe type: none -'755830': +"755830": installDir: LonelyAstronaut launch: - config: @@ -350585,14 +345505,14 @@ oslist: linux executable: LonelyAstronaut type: default -'755850': +"755850": installDir: VRPingPongParadise launch: - config: oslist: windows executable: VRPingPongParadise.exe type: vr -'755890': +"755890": installDir: Pipes! launch: - config: @@ -350601,13 +345521,13 @@ type: none - config: oslist: macos - executable: Pipes!.app\\Contents\\MacOS\\Pipes! + executable: "Pipes!.app\\\\Contents\\\\MacOS\\\\Pipes!" type: none - config: oslist: linux executable: Pipes!.x86 type: none -'755920': +"755920": installDir: CHOP launch: - config: @@ -350616,19 +345536,19 @@ type: default - config: oslist: macos - executable: CHOP.app\\Contents\\MacOS\\CHOP + executable: "CHOP.app\\\\Contents\\\\MacOS\\\\CHOP" type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: CHOP.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: CHOP.x86_64 type: default -'755940': +"755940": installDir: 6-in-1 IQ Scale Bundle launch: - config: @@ -350637,13 +345557,13 @@ type: default - config: oslist: macos - executable: IQScale61.app\\Contents\\MacOS\\nwjs + executable: "IQScale61.app\\\\Contents\\\\MacOS\\\\nwjs" type: default - config: oslist: linux executable: IQScale61 type: default -'755950': +"755950": installDir: Fantasy Quest Solitaire launch: - config: @@ -350652,15 +345572,15 @@ type: default - config: oslist: macos - executable: FantasySolitaire.app\\Contents\\MacOS\\FantasySolitaire + executable: "FantasySolitaire.app\\\\Contents\\\\MacOS\\\\FantasySolitaire" type: default -'755970': {} -'755980': +"755970": {} +"755980": installDir: Deployment launch: - executable: deployment.exe type: default -'756020': +"756020": installDir: Big Boned Puppet Kings launch: - config: @@ -350675,76 +345595,76 @@ oslist: linux executable: PuppetKings_LinuxBuild_V1.4.0.x86 type: default -'756040': +"756040": installDir: RollerCoaster Legends launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: on Vive executable: RCLegends.exe type: vr - - arguments: '-vrmode oculus' + - arguments: "-vrmode oculus" config: - osarch: '64' + osarch: "64" oslist: windows description: on Oculus Rift executable: RCLegends.exe type: othervr -'756050': {} -'756090': +"756050": {} +"756090": installDir: GoodMorning launch: - executable: GoodMorning.exe type: none -'756100': +"756100": installDir: Curse of the Old Gods launch: - executable: Curse of the Old Gods.exe type: default -'756150': +"756150": installDir: Born Tubi Wild launch: - config: oslist: windows executable: BornTubiWild.exe type: default -'756190': +"756190": installDir: Sky Road launch: - config: oslist: windows executable: Sky Road.exe type: default -'756200': +"756200": installDir: Impossibox launch: - config: oslist: windows executable: Impossibox.exe type: default -'756210': +"756210": installDir: Talsaluq Tower of Infinity launch: - config: oslist: windows executable: Game.exe type: default -'756220': +"756220": installDir: Whirlpool launch: - config: oslist: windows executable: Game.exe type: default -'756230': +"756230": installDir: KARTOFELKA launch: - config: oslist: windows executable: kartofelka.exe type: default -'756240': +"756240": installDir: Influence launch: - config: @@ -350752,7 +345672,7 @@ executable: influence.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: influence type: default @@ -350760,7 +345680,7 @@ oslist: macos executable: influence.app type: default -'756260': +"756260": installDir: Kingdom Defense launch: - config: @@ -350775,22 +345695,22 @@ oslist: macos executable: Kingdom Defense.app type: none -'756290': +"756290": installDir: In League launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: inleague.exe type: vr -'756300': +"756300": installDir: Gym Empire launch: - config: oslist: windows executable: Gym Empire.exe type: default -'756320': +"756320": installDir: Snail Trek Chapter 2 launch: - config: @@ -350802,69 +345722,69 @@ executable: SnailTrek2.app type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: SnailTrek2.x86_64 type: none -'756340': +"756340": installDir: Traffic Cop launch: - config: oslist: windows executable: Traffic Cop.exe type: vr -'756350': +"756350": installDir: OutBreak The Escape launch: - config: oslist: windows executable: OutBreak The Escape.exe type: default -'756360': +"756360": installDir: Linch launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: LINCH.exe type: default -'756380': +"756380": installDir: Super Bugman Extreme Ultra launch: - config: oslist: windows executable: Super Bugman Extreme Ultra.exe type: default -'756410': +"756410": installDir: Nova launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: Nova1492.exe type: none -'756420': +"756420": installDir: Dark Maze launch: - executable: Dark Maze.exe type: default -'756440': +"756440": installDir: Your Bunny Wrote launch: - config: oslist: windows executable: YBW.exe type: none -'756450': {} -'756490': +"756450": {} +"756490": installDir: NextHero launch: - config: oslist: windows executable: NextHero.exe type: default -'756500': +"756500": installDir: Noir Chronicles City of Crime launch: - config: @@ -350873,13 +345793,13 @@ executable: NoirChronicles.exe type: none - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: NoirChronicles_i386 type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: NoirChronicles_amd64 @@ -350889,22 +345809,22 @@ description: Launch executable: mac_steam.app/Contents/MacOS/mac_steam type: none -'756520': +"756520": installDir: Sensual VR launch: - config: oslist: windows executable: ASOS VR.exe type: vr -'756530': +"756530": installDir: CALL to EXIST launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: CALL to EXIST.exe type: default -'756560': +"756560": installDir: Robot Warriors launch: - config: @@ -350918,14 +345838,14 @@ - config: oslist: linux executable: Linux/RobotWarriors.x86_64 -'756590': +"756590": installDir: Atelier Lydie and Suelle The Alchemists and the Mysterious Paintings launch: - config: oslist: windows executable: Atelier_Lydie_and_Suelle_Launcher.exe type: none -'756600': +"756600": installDir: Trianga Project Battle Splash 2.0 launch: - config: @@ -350933,37 +345853,37 @@ description: Battle Splash executable: Battle Splash 2.0.exe type: default -'756630': +"756630": installDir: Solar Wind launch: - config: oslist: windows executable: solarwind.exe type: default -'756640': {} -'756650': +"756640": {} +"756650": installDir: TheBoxAFSteamVive launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TheBoxVR_SW.exe type: openvroverlay -'756680': +"756680": installDir: Angelo Skate Away launch: - config: oslist: windows executable: ASA Steam.exe type: default -'756700': +"756700": installDir: Neon Seoul Outrun launch: - config: oslist: windows executable: NeonSeoulOutrun.exe type: vr -'756740': +"756740": installDir: Man of Honor launch: - config: @@ -350978,7 +345898,7 @@ oslist: linux executable: Man of Honor (Lin).x86_64 type: default -'756790': +"756790": installDir: cityglitch launch: - config: @@ -350991,22 +345911,22 @@ executable: cityglitch.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: cityglitch/run.sh type: default workingdir: cityglitch -'756800': +"756800": installDir: Contraband Police launch: - executable: ContrabandPolice.exe type: none -'756810': +"756810": installDir: M.A.X. 2 Mechanized Assault & Exploration launch: - executable: MAX2.EXE type: default -'756840': +"756840": installDir: Maniyugi launch: - config: @@ -351017,42 +345937,42 @@ oslist: macos executable: mac/maniyugi_tokoyo.app type: default -'756860': +"756860": installDir: Archers launch: - config: oslist: windows executable: archers_1.01.exe type: default -'756870': {} -'756880': +"756870": {} +"756880": installDir: NVL launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" executable: Game.exe type: none -'756890': +"756890": installDir: Alive Hunter launch: - config: oslist: windows executable: Alive Hunter.exe type: default -'756980': - installDir: Raymond's Obstacle Course +"756980": + installDir: "Raymond's Obstacle Course" launch: - config: oslist: windows - executable: Raymond's Obstacle Course.exe + executable: "Raymond's Obstacle Course.exe" type: none -'757030': - installDir: Christmas Stories A Christmas Carol Collector's Edition +"757030": + installDir: "Christmas Stories A Christmas Carol Collector's Edition" launch: - config: oslist: windows executable: ChristmasStories_AChristmasCarolCE.exe type: default -'757040': +"757040": installDir: Desert Golfing launch: - config: @@ -351061,16 +345981,16 @@ type: default - config: oslist: macos - executable: DesertGolfing.app\\Contents\\MacOS\\DesertGolfing + executable: "DesertGolfing.app\\\\Contents\\\\MacOS\\\\DesertGolfing" type: default -'757060': +"757060": installDir: DoubleTap launch: - config: oslist: windows executable: DoubleTap.exe type: vr -'757080': +"757080": installDir: Broadway 1849 launch: - config: @@ -351085,7 +346005,7 @@ oslist: linux executable: Broadway1849 type: none -'757100': +"757100": installDir: VR RHYTHM ACTION SEIYA launch: - config: @@ -351096,76 +346016,76 @@ oslist: windows executable: SEIYA.exe type: othervr -'757130': +"757130": installDir: Paintball War launch: - config: oslist: windows executable: PaintBall War.exe type: default -'757160': +"757160": installDir: ULTIMATE ARENA SHOWDOWN launch: - config: oslist: windows executable: showdown.exe type: default -'757170': +"757170": installDir: KOLOBOK launch: - config: oslist: windows executable: 2D Kolobok.exe type: none -'757180': +"757180": installDir: Wolf&Rabbit launch: - executable: Game.exe type: none -'757190': +"757190": installDir: Vexius launch: - config: oslist: windows executable: Vexius.exe type: default -'757200': +"757200": installDir: EMERGENCY 3 launch: - - arguments: '-game' + - arguments: "-game" executable: Em3.exe type: default - - arguments: '-editor' + - arguments: "-editor" executable: Em3.exe type: editor -'757230': +"757230": installDir: Donjon Defense launch: - executable: Donjon Defense.exe type: none -'757240': +"757240": installDir: Aimtastic launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Aimtastic.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows - ownsdlc: '950150' + ownsdlc: "950150" description: Launch Aimtastic - Workshop Tools executable: AWT/AWT.exe type: none -'757290': +"757290": installDir: On Board Game launch: - config: oslist: windows executable: Game.exe type: default -'757300': +"757300": installDir: Truberbrook launch: - config: @@ -351183,11 +346103,11 @@ nameLocalized: german: Trüberbrook schinese: 墨池镇 -'757310': +"757310": installDir: Sable launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Sable.exe type: default @@ -351199,19 +346119,19 @@ oslist: macos executable: Sable.app type: default -'757320': +"757320": installDir: Atomicrops launch: - executable: Atomicrops.exe type: none -'757330': +"757330": installDir: qop 2 launch: - config: oslist: windows executable: qop 2.exe type: default -'757350': +"757350": installDir: SAWkoban launch: - config: @@ -351220,42 +346140,42 @@ type: none - config: oslist: macos - executable: SAWkoban.app\\Contents\\MacOS\\SAWkoban + executable: "SAWkoban.app\\\\Contents\\\\MacOS\\\\SAWkoban" type: none - config: oslist: linux executable: SAWkoban.x86 type: none -'757380': +"757380": installDir: Ship Ahoy launch: - config: oslist: windows executable: ShipAhoy.exe type: vr -'757400': +"757400": installDir: City Balls VR launch: - config: oslist: windows executable: CITYBALLSVR.exe type: vr -'757420': +"757420": installDir: Zombie Crisis launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ZombieCrisis.exe type: none -'757440': +"757440": installDir: Crafting Tycoon launch: - config: oslist: windows executable: Crafting Tycoon v0.8.exe type: none -'757450': +"757450": installDir: Samurai of Hyuga Book 3 launch: - config: @@ -351270,61 +346190,61 @@ oslist: linux executable: Samurai3 type: none -'757480': +"757480": installDir: Broken Reality launch: - config: oslist: windows executable: BrokenReality.exe type: none -'757490': +"757490": installDir: Mapas do Horizonte launch: - config: oslist: windows executable: MapasDoHorizonte.exe type: default -'757500': +"757500": installDir: FadeHolm launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Fadeholm.exe type: vr -'757530': {} -'757540': +"757530": {} +"757540": installDir: Oedipus Dating Sim launch: - config: oslist: windows executable: oedipus.exe type: default -'757550': {} -'757580': +"757550": {} +"757580": installDir: EndlessInside launch: - config: oslist: windows executable: Endless Inside.exe type: default -'757590': +"757590": installDir: Life Game launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: LifeGame.exe type: default -'757600': +"757600": installDir: Hotel Transylvania 3 Monsters Overboard launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: HotelTransylvania3.exe type: default -'757630': +"757630": installDir: bigday launch: - config: @@ -351333,65 +346253,61 @@ type: default - config: oslist: macos - executable: bigday.app\\Contents\\MacOS\\bigday + executable: "bigday.app\\\\Contents\\\\MacOS\\\\bigday" type: default -'757670': +"757670": installDir: Blitz Freak launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: BlitzFreak.exe type: vr -'757690': +"757690": installDir: Limit of defense launch: - config: oslist: windows executable: Limit Of Defense.exe type: default -'757700': - installDir: Dungeon's Barrage +"757700": + installDir: "Dungeon's Barrage" launch: - config: oslist: windows executable: Dungeon_Barrage_2.0.0.exe type: default -'757720': {} -'757730': +"757720": {} +"757730": installDir: Shadowcrawl launch: - config: oslist: windows executable: Shadowcrawl Beta Windows.exe type: none -'757770': +"757770": installDir: Tankrovia launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Tankrovia.exe type: default -'757780': +"757780": installDir: Sector452 launch: - config: oslist: windows description: Windows Launch - description_loc: - english: Windows Launch executable: Sector452.exe type: default - - arguments: '-opengl4' + - arguments: "-opengl4" config: oslist: linux description: Linux Launch - description_loc: - english: Linux Launch - executable: Sector452\\Binaries\\Linux\\Sector452-Linux-Shipping + executable: "Sector452\\\\Binaries\\\\Linux\\\\Sector452-Linux-Shipping" type: default -'757810': +"757810": installDir: malhon launch: - config: @@ -351399,19 +346315,19 @@ executable: MalhonOne.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: MalhonOne.exe type: default -'757820': +"757820": installDir: Flowing Lights launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: FlowingLights.exe type: default -'757860': +"757860": installDir: Elbub launch: - config: @@ -351419,39 +346335,39 @@ description: Launch executable: PLAY.exe type: none -'757870': +"757870": installDir: AustralianTrip launch: - config: - osarch: '32' + osarch: "32" oslist: windows - executable: win32\\nw.exe + executable: "win32\\\\nw.exe" type: default - config: - osarch: '64' + osarch: "64" oslist: windows - executable: win64\\nw.exe + executable: "win64\\\\nw.exe" type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: linux64/nw type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: linux32/nw type: default -'757900': {} -'757910': +"757900": {} +"757910": installDir: Away launch: - config: oslist: windows executable: Away.exe type: default -'757940': {} -'757950': +"757940": {} +"757950": installDir: 2-in-1 Fluid Intelligence launch: - config: @@ -351460,13 +346376,13 @@ type: default - config: oslist: macos - executable: IQScale21.app\\Contents\\MacOS\\nwjs + executable: "IQScale21.app\\\\Contents\\\\MacOS\\\\nwjs" type: default - config: oslist: linux executable: IQScale21 type: none -'757990': +"757990": installDir: DisassemblyLine launch: - config: @@ -351481,23 +346397,23 @@ oslist: linux executable: DisassemblyLine.x86 type: default -'758020': +"758020": installDir: DMDMarsMission launch: - config: oslist: windows executable: DMD.exe type: vr -'758030': {} -'758050': +"758030": {} +"758050": installDir: Internet Simulator launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Internet Simulator.exe type: default -'758070': +"758070": installDir: Kill the Superweapon launch: - config: @@ -351508,12 +346424,12 @@ oslist: macos executable: KillTheSuperWeaponMac.app type: default -'758080': +"758080": installDir: Bloodlust 2 Nemesis launch: - executable: Bloodlust2.exe type: none -'758090': +"758090": installDir: monobeno launch: - config: @@ -351525,14 +346441,14 @@ japanese: ものべの -Monobeno- schinese: 茂伸奇谈 tchinese: 茂伸奇談 -'758100': +"758100": installDir: E-Startup launch: - config: oslist: windows executable: EStartup.exe type: default -'758120': +"758120": installDir: RC Fun City launch: - config: @@ -351540,12 +346456,12 @@ executable: RC Fun City.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: RC Fun City.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: RC Fun City.x86_64 type: default @@ -351553,62 +346469,58 @@ oslist: macos executable: RC Fun City.app type: default -'758140': +"758140": installDir: The Plague launch: - config: oslist: windows executable: Plague.exe type: default -'758150': +"758150": installDir: McRogue launch: - config: oslist: windows executable: McRogue.exe type: none -'758170': +"758170": installDir: Krampus Quest launch: - config: oslist: windows executable: KrampusQuest.exe type: default -'758190': +"758190": installDir: Dragon Cliff launch: - config: oslist: windows - realm: steamglobal executable: game.exe type: default - config: oslist: macos - realm: steamglobal executable: game.app type: default - config: oslist: windows - realm: steamchina executable: game.exe type: default - config: oslist: macos - realm: steamchina executable: game.app type: default nameLocalized: sc_schinese: 龙崖 schinese: 龙崖 tchinese: 龍崖 -'758210': +"758210": installDir: Escape Room launch: - config: oslist: windows executable: escaperoom.exe type: vr -'758220': +"758220": installDir: Osmorrow launch: - config: @@ -351619,11 +346531,11 @@ oslist: linux executable: runner type: default -'758250': +"758250": installDir: Taste of Power launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Taste of Power.exe type: none @@ -351635,15 +346547,15 @@ oslist: linux executable: Taste of Power Early access Linux.x86_64 type: none -'758270': {} -'758280': +"758270": {} +"758280": installDir: Drunkenpants launch: - config: oslist: windows executable: drunkenpants.exe type: default -'758320': +"758320": installDir: CursedLands launch: - config: @@ -351658,7 +346570,7 @@ oslist: linux executable: CursedLands.sh type: none -'758330': +"758330": installDir: SMLaunch launch: - config: @@ -351667,12 +346579,12 @@ type: default - arguments: debug config: - betakey: 'qa_debug ' + betakey: "qa_debug " oslist: windows description: Launch game with debug features enabled executable: SteamLauncher.exe type: none -'758370': +"758370": installDir: Through the Ages launch: - config: @@ -351681,9 +346593,9 @@ type: default - config: oslist: macos - executable: ThroughTheAges_steam.app\\Contents\\MacOS\\ThroughTheAges_steam + executable: "ThroughTheAges_steam.app\\\\Contents\\\\MacOS\\\\ThroughTheAges_steam" type: default -'758400': +"758400": installDir: The Ultimate Heist launch: - config: @@ -351698,42 +346610,42 @@ oslist: linux executable: TheUltimateHeist.x86 type: default -'758410': +"758410": installDir: AO Tennis launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: tennis.exe type: default -'758440': +"758440": installDir: Last Rose launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Last Rose.exe type: default -'758470': +"758470": installDir: Africa Hunting launch: - config: oslist: windows executable: Africa Hunting.exe type: default -'758480': +"758480": installDir: Ukrainian ball in search of gas launch: - config: oslist: windows executable: Ukrainian ball in search of gas.exe type: default -'758500': +"758500": installDir: Loot Box Quest launch: - executable: lootquest.exe type: default -'758530': +"758530": installDir: Sprout launch: - config: @@ -351744,83 +346656,83 @@ oslist: macos executable: Sprout.app type: none -'758560': +"758560": installDir: Versus World launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: VersusWorld.exe type: default -'758570': - installDir: TOMORROW DON'T COME +"758570": + installDir: "TOMORROW DON'T COME" launch: - config: oslist: windows - executable: TOMORROW DON'T COME.exe + executable: "TOMORROW DON'T COME.exe" type: default -'758580': - installDir: Grim Tales The Wishes Collector's Edition +"758580": + installDir: "Grim Tales The Wishes Collector's Edition" launch: - config: oslist: windows executable: GrimTales_TheWishesCE.exe type: default -'758590': - installDir: League of Light Silent Mountain Collector's Edition +"758590": + installDir: "League of Light Silent Mountain Collector's Edition" launch: - config: oslist: windows executable: LeagueOfLight_SilentMountainCE.exe type: default -'758600': - installDir: Christmas Stories Hans Christian Andersen's Tin Soldier Collector's Edition +"758600": + installDir: "Christmas Stories Hans Christian Andersen's Tin Soldier Collector's Edition" launch: - config: oslist: windows executable: ChristmasStories_TinSoldierCE.exe type: default -'758610': - installDir: Botanica Earthbound Collector's Edition +"758610": + installDir: "Botanica Earthbound Collector's Edition" launch: - config: oslist: windows executable: Botanica_EarthboundCE.exe type: default -'758620': - installDir: Shadow Wolf Mysteries Bane of the Family Collector's Edition +"758620": + installDir: "Shadow Wolf Mysteries Bane of the Family Collector's Edition" launch: - config: oslist: windows executable: ShadowWolfMysteries_BaneoftheFamilyCE.exe type: default -'758630': - installDir: Cadenza The Kiss of Death Collector's Edition +"758630": + installDir: "Cadenza The Kiss of Death Collector's Edition" launch: - config: oslist: windows executable: Cadenza_TheKissOfDeath_CE.exe type: default -'758640': - installDir: Nevertales Legends Collector's Edition +"758640": + installDir: "Nevertales Legends Collector's Edition" launch: - config: oslist: windows executable: Nevertales_Legends_CE.exe type: default -'758650': - installDir: Haunted Train Frozen in Time Collector's Edition +"758650": + installDir: "Haunted Train Frozen in Time Collector's Edition" launch: - config: oslist: windows executable: HauntedTrain_FrozenInTime_CE.exe type: default -'758660': +"758660": installDir: NeverBound launch: - executable: NeverBound.exe type: vr -'758690': +"758690": installDir: Occupy Mars The Game launch: - config: @@ -351828,31 +346740,31 @@ description: Launch executable: OccupyMars.exe type: default -'758700': {} -'758730': +"758700": {} +"758730": installDir: Paw Patrol On A Roll launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: PawPatrol.exe type: default -'758790': +"758790": installDir: Musical Reflex launch: - config: oslist: windows executable: Musical Reflex.exe type: default -'758840': {} -'758870': +"758840": {} +"758870": installDir: Kynseed launch: - config: oslist: windows executable: Kynseed.exe type: default -'758880': +"758880": installDir: RedSun RTS launch: - config: @@ -351864,15 +346776,15 @@ oslist: macos executable: RedSun.app type: default -'758920': +"758920": installDir: Action Rush launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ActionRush.exe type: default -'758930': +"758930": installDir: Captain Forever Trilogy launch: - config: @@ -351882,37 +346794,31 @@ - config: oslist: windows description: Captain Together - executable: together\\CaptainTogether.exe + executable: "together\\\\CaptainTogether.exe" type: option1 workingdir: together - config: betakey: captainjamesonalpha12 oslist: windows description: Captain Jameson Alpha 12 - description_loc: - english: Captain Jameson Alpha 12 - executable: CaptainJameson\\CaptainJameson.exe + executable: "CaptainJameson\\\\CaptainJameson.exe" type: option2 workingdir: CaptainJameson - config: betakey: captainforeveruniverse13 oslist: windows description: Captain Forever Universe Alpha 13 - description_loc: - english: Captain Forever Universe Alpha 13 - executable: CaptainJameson\\CaptainJameson.exe + executable: "CaptainJameson\\\\CaptainJameson.exe" type: option2 workingdir: CaptainJameson - config: betakey: captainforeveruniverse14 oslist: windows description: Captain Forever Universe Alpha 14 - description_loc: - english: Captain Forever Universe Alpha 14 - executable: CaptainJameson\\CaptainJameson.exe + executable: "CaptainJameson\\\\CaptainJameson.exe" type: option2 workingdir: CaptainJameson -'758980': +"758980": installDir: PokerLegends launch: - config: @@ -351923,7 +346829,7 @@ oslist: windows executable: PokerLegends.exe type: default -'758990': +"758990": installDir: Ancient Warfare 3 launch: - config: @@ -351938,7 +346844,7 @@ oslist: macos executable: AncientWarfare3.app type: default -'759000': +"759000": installDir: projekt launch: - config: @@ -351947,9 +346853,9 @@ type: none - config: oslist: macos - executable: projekt.app\\Contents\\MacOS\\projekt + executable: "projekt.app\\\\Contents\\\\MacOS\\\\projekt" type: default -'759010': +"759010": installDir: Escape launch: - config: @@ -351960,7 +346866,7 @@ oslist: macos executable: Escape Mac.app type: default -'759030': +"759030": installDir: WaywaY launch: - config: @@ -351973,58 +346879,58 @@ oslist: windows executable: WaywaY.exe type: default -'759040': +"759040": installDir: PlanetGuardianVR launch: - config: oslist: windows executable: planetGuardianVR_0_9_7_steam.exe type: vr -'759060': +"759060": installDir: Ground Runner Trials launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: GRT_1.2c_ViveOculus.exe type: vr -'759080': +"759080": installDir: City Eye launch: - config: oslist: windows executable: CityEye.exe type: default -'759090': {} -'759160': +"759090": {} +"759160": installDir: Dungeons&Vampires launch: - config: oslist: windows executable: Dungeons&Vampires.exe type: default -'759180': +"759180": installDir: Bizarre Tale launch: - config: oslist: windows executable: Bizarre Tale.exe type: none -'759220': +"759220": installDir: Hinedere Beat launch: - config: oslist: windows executable: Hinedere Beat.exe type: default -'759250': +"759250": installDir: TheLastRollingHero launch: - config: oslist: windows executable: TheLastRollingHero.exe type: default -'759260': +"759260": installDir: Go All Out launch: - config: @@ -352035,21 +346941,21 @@ oslist: macos executable: GoAllOut.app type: default -'759440': +"759440": installDir: Learn Japanese To Survive! Kanji Combat launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows executable: KanjiCombat.exe type: default - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: macos executable: KanjiCombat.app type: default -'759460': {} -'759500': +"759460": {} +"759500": installDir: Dragon Hunter launch: - config: @@ -352058,66 +346964,66 @@ type: none - config: oslist: macos - executable: DragonHunter.app\\Contents\\MacOS\\DragonHunter + executable: "DragonHunter.app\\\\Contents\\\\MacOS\\\\DragonHunter" type: none - config: oslist: linux executable: DragonHunter.x86 type: none -'759530': +"759530": installDir: Struckd - 3D Game Creator launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: Struckd.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: Struckd.exe type: default -'759540': +"759540": installDir: Wanted Killer VR launch: - config: oslist: windows executable: WantedKillerVR.exe type: vr - - arguments: '-vrmode OpenVR' + - arguments: "-vrmode OpenVR" config: oslist: windows description: Wanted Killer VR (LIV support) executable: WantedKillerVR.exe type: vr -'759570': +"759570": installDir: Decay of Logos launch: - config: oslist: windows executable: Decay of Logos.exe type: none -'759610': +"759610": installDir: House of Evil launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: MyProject type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: MyProject type: default -'759640': +"759640": installDir: Plug Me launch: - config: oslist: windows executable: Plug_Me.exe type: default -'759650': +"759650": installDir: Christmas Puzzle 3 launch: - config: @@ -352128,22 +347034,22 @@ oslist: macos executable: ChristmasPuzzle3.app/Contents/MacOS/cm3 type: none -'759700': {} -'759740': +"759700": {} +"759740": installDir: RIDE 3 launch: - config: oslist: windows executable: ride3.exe type: none -'759750': +"759750": installDir: Doodle God Alchemy Jam launch: - config: oslist: windows executable: AlchemyJam_Steam.exe type: default -'759770': +"759770": installDir: Eggo launch: - config: @@ -352151,58 +347057,58 @@ executable: Eggo.exe type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: Eggo.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: Eggo.x86_64 type: none - config: oslist: macos - executable: Eggo.app\\Contents\\MacOS\\Eggo + executable: "Eggo.app\\\\Contents\\\\MacOS\\\\Eggo" type: none -'759800': +"759800": installDir: Everyday Lite launch: - config: oslist: windows executable: EverydayLite.exe type: none -'759830': +"759830": installDir: Gamma Blast launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Gamma Blast.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: Gamma Blast.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Gamma Blast.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Gamma Blast.x86 type: default -'759840': +"759840": installDir: Battle for Mountain Throne launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Battle for Mountain Throne.exe type: vr -'759850': +"759850": installDir: DEBUFF launch: - config: @@ -352220,20 +347126,20 @@ description: DEBUFF executable: DEBUFF.x86 type: none -'759870': +"759870": installDir: HJ Sacrifice launch: - config: oslist: windows executable: HJ-Sacrifice.exe type: default -'759900': {} -'759920': +"759900": {} +"759920": installDir: Souland launch: - executable: Souland.exe type: none -'759940': +"759940": installDir: qcsj_ee launch: - config: @@ -352244,15 +347150,15 @@ oslist: macos executable: osx/nw.app type: none -'759950': +"759950": installDir: Uizuno Blade launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: UizunoBlade.exe type: vr -'759970': +"759970": installDir: HIBIKAKEYIRONOKISEKI launch: - config: @@ -352261,13 +347167,13 @@ type: default - config: oslist: macos - executable: Game.app\\Contents\\MacOS\\nwjs + executable: "Game.app\\\\Contents\\\\MacOS\\\\nwjs" type: default - config: oslist: linux executable: Game type: default -'759980': +"759980": installDir: MIMIC launch: - config: @@ -352275,12 +347181,12 @@ description: Play Game In VR executable: MIMIC.exe type: vr - - arguments: '-Editor' + - arguments: "-Editor" description: MIMIC Editor executable: MIMIC.exe type: editor -'7600': - installDir: Sid Meier's Railroads +"7600": + installDir: "Sid Meier's Railroads" launch: - config: oslist: windows @@ -352290,21 +347196,21 @@ oslist: macos executable: Sid Meiers Railroads.app type: none -'760000': +"760000": installDir: AWAKEN:Gunpowder Adventurer Day.Dream launch: - config: oslist: windows executable: Awaken.exe type: default -'760010': +"760010": installDir: Flying Turkey launch: - config: oslist: windows executable: Flying Turkey.exe type: vr -'760030': +"760030": installDir: Dizzy Dungeon launch: - config: @@ -352313,413 +347219,258 @@ type: default - config: oslist: macos - executable: DizzyDungeon.app\\Contents\\MacOS\\DizzyDungeon + executable: "DizzyDungeon.app\\\\Contents\\\\MacOS\\\\DizzyDungeon" type: default -'760050': +"760050": installDir: Nightwolf Survive the Megadome launch: - config: oslist: windows executable: nightwolf.exe type: default -'760060': +"760060": installDir: Mutant Year Zero launch: - config: oslist: windows executable: ZoneUE4.exe type: default -'760080': {} -'760100': {} -'760160': +"760080": {} +"760100": {} +"760160": installDir: Bloodhunt launch: - - arguments: >- - -NoVerifyGC -DsVersion \"external-qa\" -OnlineEnvironment staging -MuteSharkTelemetry -GameModesConfigBranchName - kws + - arguments: "-NoVerifyGC -DsVersion \\\"external-qa\\\" -OnlineEnvironment staging -MuteSharkTelemetry -GameModesConfigBranchName kws" config: betakey: external-qa description: External-QA - description_loc: - english: External-QA executable: Tiger.exe type: option1 - - arguments: >- - -NoVerifyGC -DsVersion \"external-qa-2\" -OnlineEnvironment uat-release -MuteSharkTelemetry - -GameModesConfigBranchName kws + - arguments: "-NoVerifyGC -DsVersion \\\"external-qa-2\\\" -OnlineEnvironment uat-release -MuteSharkTelemetry -GameModesConfigBranchName kws" config: betakey: external-qa-2 description: External-QA-2 Version - description_loc: - english: External-QA-2 Version executable: Tiger.exe type: option1 - - arguments: >- - -NoVerifyGC -DsVersion \"external-qa-3\" -OnlineEnvironment staging -MuteSharkTelemetry - -GameModesConfigBranchName kws + - arguments: "-NoVerifyGC -DsVersion \\\"external-qa-3\\\" -OnlineEnvironment staging -MuteSharkTelemetry -GameModesConfigBranchName kws" config: betakey: external-qa-3 description: External-QA-3 Version - description_loc: - english: External-QA-3 Version executable: Tiger.exe type: option1 - - arguments: >- - -NoVerifyGC -DsVersion \"external-qa-4\" -OnlineEnvironment staging -MuteSharkTelemetry - -GameModesConfigBranchName kws + - arguments: "-NoVerifyGC -DsVersion \\\"external-qa-4\\\" -OnlineEnvironment staging -MuteSharkTelemetry -GameModesConfigBranchName kws" config: betakey: external-qa-4 description: External-QA-4 Version - description_loc: - english: External-QA-4 Version executable: Tiger.exe type: option1 - - arguments: >- - -NoVerifyGC -ExecCmds=\"DisableAllScreenMessages\" -SkipTutorial -OnlineEnvironment uat-main -MuteSharkTelemetry - -ini:Online:[/Script/Tiger.TigerOnlineSettings]:GameModesConfigBranchName=\"qa3\" + - arguments: "-NoVerifyGC -ExecCmds=\\\"DisableAllScreenMessages\\\" -SkipTutorial -OnlineEnvironment uat-main -MuteSharkTelemetry -ini:Online:[/Script/Tiger.TigerOnlineSettings]:GameModesConfigBranchName=\\\"qa3\\\"" config: betakey: vmc-pte executable: Tiger.exe type: default - - arguments: >- - -NoVerifyGC -DsVersion \"external-qa-5\" -OnlineEnvironment staging -MuteSharkTelemetry -enablesharkmobaccounts - -GameModesConfigBranchName kws + - arguments: "-NoVerifyGC -DsVersion \\\"external-qa-5\\\" -OnlineEnvironment staging -MuteSharkTelemetry -enablesharkmobaccounts -GameModesConfigBranchName kws" config: betakey: external-qa-5 description: External-QA-5 Players - description_loc: - english: External-QA-5 Players executable: Tiger.exe type: option1 - - arguments: >- - -NoVerifyGC -DsVersion \"external-qa-6\" -OnlineEnvironment staging -MuteSharkTelemetry - -GameModesConfigBranchName kws + - arguments: "-NoVerifyGC -DsVersion \\\"external-qa-6\\\" -OnlineEnvironment staging -MuteSharkTelemetry -GameModesConfigBranchName kws" config: betakey: external-qa-6 description: External-QA-6 Version - description_loc: - english: External-QA-6 Version executable: Tiger.exe type: option1 - - arguments: >- - -NoVerifyGC -DsVersion \"external-qa-7\" -enablesharkmobaccounts -OnlineEnvironment uat-release - -MuteSharkTelemetry -GameModesConfigBranchName prodlikeqa + - arguments: "-NoVerifyGC -DsVersion \\\"external-qa-7\\\" -enablesharkmobaccounts -OnlineEnvironment uat-release -MuteSharkTelemetry -GameModesConfigBranchName prodlikeqa" config: betakey: external-qa-7 description: External-QA-7 Version - description_loc: - english: External-QA-7 Version executable: Tiger.exe type: option1 - - arguments: >- - -NoVerifyGC -ExecCmds=\"DisableAllScreenMessages\" -DsVersion \"internal-1\" -OnlineEnvironment main - -MuteSharkTelemetry -enablesharkmobaccounts -GameModesConfigBranchName kws + - arguments: "-NoVerifyGC -ExecCmds=\\\"DisableAllScreenMessages\\\" -DsVersion \\\"internal-1\\\" -OnlineEnvironment main -MuteSharkTelemetry -enablesharkmobaccounts -GameModesConfigBranchName kws" config: betakey: internal-1 description: Sandbox - description_loc: - english: Sandbox executable: Tiger.exe type: option1 - - arguments: >- - -NoVerifyGC -ExecCmds=\"DisableAllScreenMessages\" -DsVersion \"internal-2\" -OnlineEnvironment staging - -MuteSharkTelemtry -GameModesConfigBranchName tigerfake + - arguments: "-NoVerifyGC -ExecCmds=\\\"DisableAllScreenMessages\\\" -DsVersion \\\"internal-2\\\" -OnlineEnvironment staging -MuteSharkTelemtry -GameModesConfigBranchName tigerfake" config: betakey: internal-2 description: Internal-2 Dir Review - description_loc: - english: Internal-2 Dir Review executable: Tiger.exe type: option1 - - arguments: >- - -NoVerifyGC -ExecCmds=\"DisableAllScreenMessages\" -DsVersion \"internal-3\" -OnlineEnvironment main - -MuteSharkTelemetry -EnableSharkmobAccounts -GameModesConfigBranchName kws + - arguments: "-NoVerifyGC -ExecCmds=\\\"DisableAllScreenMessages\\\" -DsVersion \\\"internal-3\\\" -OnlineEnvironment main -MuteSharkTelemetry -EnableSharkmobAccounts -GameModesConfigBranchName kws" config: betakey: internal-3 description: Internal-3 Pre Test - description_loc: - english: Internal-3 Pre Test executable: Tiger.exe type: option1 - - arguments: >- - -NoVerifyGC -ExecCmds=\"DisableAllScreenMessages\" -DsVersion \"external-playtest-2\" -OnlineEnvironment main - -MuteSharkTelemetry -GameModesConfigBranchName kws -EnableSharkmobAccounts + - arguments: "-NoVerifyGC -ExecCmds=\\\"DisableAllScreenMessages\\\" -DsVersion \\\"external-playtest-2\\\" -OnlineEnvironment main -MuteSharkTelemetry -GameModesConfigBranchName kws -EnableSharkmobAccounts" config: betakey: external-playtest-2 description: external-playtest-2 - description_loc: - english: external-playtest-2 executable: Tiger.exe type: option1 - - arguments: >- - -DsVersion \"external-playtest-3\" -OnlineEnvironment prod -EnableSharkmobAccounts -MuteSharkTelemetry - -GameModesConfigBranchName qa + - arguments: "-DsVersion \\\"external-playtest-3\\\" -OnlineEnvironment prod -EnableSharkmobAccounts -MuteSharkTelemetry -GameModesConfigBranchName qa" config: betakey: external-playtest-3 description: external-playtest-3 - description_loc: - english: external-playtest-3 executable: Tiger.exe type: option1 - - arguments: >- - -NoVerifyGC -ExecCmds=\"DisableAllScreenMessages\" -DsVersion \"internal-4\" -OnlineEnvironment uat-release - -MuteSharkTelemetry -GameModesConfigBranchName kws + - arguments: "-NoVerifyGC -ExecCmds=\\\"DisableAllScreenMessages\\\" -DsVersion \\\"internal-4\\\" -OnlineEnvironment uat-release -MuteSharkTelemetry -GameModesConfigBranchName kws" config: betakey: Internal-4 description: Internal-4 - description_loc: - english: Internal-4 executable: Tiger.exe type: option1 - - arguments: >- - -NoVerifyGC -ExecCmds=\"DisableAllScreenMessages\" -DsVersion \"internal-5\" -OnlineEnvironment main - -MuteSharkTelemetry -GameModesConfigBranchName kws + - arguments: "-NoVerifyGC -ExecCmds=\\\"DisableAllScreenMessages\\\" -DsVersion \\\"internal-5\\\" -OnlineEnvironment main -MuteSharkTelemetry -GameModesConfigBranchName kws" config: betakey: Internal-5 description: Internal-5 - description_loc: - english: Internal-5 executable: Tiger.exe type: option1 - - arguments: >- - -NoVerifyGC -ExecCmds=\"DisableAllScreenMessages\" -DsVersion \"internal-6\" -OnlineEnvironment main - -GameModesConfigBranchName TDM -enablesharkmobaccounts + - arguments: "-NoVerifyGC -ExecCmds=\\\"DisableAllScreenMessages\\\" -DsVersion \\\"internal-6\\\" -OnlineEnvironment main -GameModesConfigBranchName TDM -enablesharkmobaccounts" config: betakey: Internal-6 description: Internal-6 - description_loc: - english: Internal-6 executable: Tiger.exe type: option1 - - arguments: >- - -NoVerifyGC -DsVersion \"external-qa-8\" -OnlineEnvironment uat-release -MuteSharkTelemetry - -GameModesConfigBranchName kws -enablesharkmobaccounts + - arguments: "-NoVerifyGC -DsVersion \\\"external-qa-8\\\" -OnlineEnvironment uat-release -MuteSharkTelemetry -GameModesConfigBranchName kws -enablesharkmobaccounts" config: betakey: external-qa-8 - description: 'External-QA-8 ' - description_loc: - english: 'External-QA-8 ' + description: "External-QA-8 " executable: Tiger.exe type: option1 - - arguments: >- - -NoVerifyGC -ExecCmds=\"DisableAllScreenMessages\" -DsVersion \"sharkmob-playtest\" -OnlineEnvironment - uat-release -EnableSharkmobAccounts -MuteSharkTelemetry -GameModesConfigBranchName tigerfake + - arguments: "-NoVerifyGC -ExecCmds=\\\"DisableAllScreenMessages\\\" -DsVersion \\\"sharkmob-playtest\\\" -OnlineEnvironment uat-release -EnableSharkmobAccounts -MuteSharkTelemetry -GameModesConfigBranchName tigerfake" config: betakey: internal-1 description: Playtest - description_loc: - english: Playtest executable: Tiger.exe type: option2 - - arguments: >- - -NoVerifyGC -ExecCmds=\"DisableAllScreenMessages\" -DsVersion \"tencent\" -OnlineEnvironment uat-release - -EnableSharkmobAccounts -MuteSharkTelemetry -GameModesConfigBranchName tencentminmax2 + - arguments: "-NoVerifyGC -ExecCmds=\\\"DisableAllScreenMessages\\\" -DsVersion \\\"tencent\\\" -OnlineEnvironment uat-release -EnableSharkmobAccounts -MuteSharkTelemetry -GameModesConfigBranchName tencentminmax2" config: betakey: tencent description: UAT - description_loc: - english: UAT executable: Tiger.exe type: option1 - - arguments: >- - -NoVerifyGC -ExecCmds=\"DisableAllScreenMessages\" -DsVersion \"tencent\" -EnableSharkmobAccounts - -OnlineEnvironment uat-release -MuteSharkTelemetry -GameModesConfigBranchName tencentminmax2 + - arguments: "-NoVerifyGC -ExecCmds=\\\"DisableAllScreenMessages\\\" -DsVersion \\\"tencent\\\" -EnableSharkmobAccounts -OnlineEnvironment uat-release -MuteSharkTelemetry -GameModesConfigBranchName tencentminmax2" config: betakey: tencent description: Production - description_loc: - english: Production executable: Tiger.exe type: option2 - - arguments: >- - -NoVerifyGC -ExecCmds=\"DisableAllScreenMessages\" -DsVersion \"internal-8\" -OnlineEnvironment staging - -MuteSharkTelemetry -GameModesConfigBranchName lqa + - arguments: "-NoVerifyGC -ExecCmds=\\\"DisableAllScreenMessages\\\" -DsVersion \\\"internal-8\\\" -OnlineEnvironment staging -MuteSharkTelemetry -GameModesConfigBranchName lqa" config: betakey: internal-8 description: Internal-8 - description_loc: - english: Internal-8 executable: Tiger.exe type: option1 - - arguments: >- - -NoVerifyGC -DsVersion \"internal-7\" -OnlineEnvironment staging -MuteSharkTelemetry -GameModesConfigBranchName - kws -EnableSharkmobAccounts + - arguments: "-NoVerifyGC -DsVersion \\\"internal-7\\\" -OnlineEnvironment staging -MuteSharkTelemetry -GameModesConfigBranchName kws -EnableSharkmobAccounts" config: betakey: internal-7 description: Internal-7 - description_loc: - english: Internal-7 executable: Tiger.exe type: option1 - - arguments: >- - -NoVerifyGC -ExecCmds=\"DisableAllScreenMessages\" -DsVersion \"external-playtest-4\" -OnlineEnvironment - uat-release -MuteSharkTelemetry -GameModesConfigBranchName \"kws\" + - arguments: "-NoVerifyGC -ExecCmds=\\\"DisableAllScreenMessages\\\" -DsVersion \\\"external-playtest-4\\\" -OnlineEnvironment uat-release -MuteSharkTelemetry -GameModesConfigBranchName \\\"kws\\\"" config: betakey: external-playtest-4 description: external-playtest-4 - description_loc: - english: external-playtest-4 executable: Tiger.exe type: option1 - - arguments: >- - -NoVerifyGC -ExecCmds=\"DisableAllScreenMessages\" -DsVersion \"sharkmob-playtest\" -OnlineEnvironment staging - -EnableSharkmobAccounts -GameModesConfigBranchName playtest -dx11 + - arguments: "-NoVerifyGC -ExecCmds=\\\"DisableAllScreenMessages\\\" -DsVersion \\\"sharkmob-playtest\\\" -OnlineEnvironment staging -EnableSharkmobAccounts -GameModesConfigBranchName playtest -dx11" config: betakey: developertesting description: Daily Playtest (S1 Main) -> DX11 - description_loc: - english: Daily Playtest (S1 Main) -> DX11 executable: Tiger.exe type: option1 - - arguments: >- - -NoVerifyGC -ExecCmds=\"DisableAllScreenMessages\" -DsVersion \"external-playtest\" -OnlineEnvironment staging - -EnableSharkmobAccounts -GameModesConfigBranchName \"reef\" + - arguments: "-NoVerifyGC -ExecCmds=\\\"DisableAllScreenMessages\\\" -DsVersion \\\"external-playtest\\\" -OnlineEnvironment staging -EnableSharkmobAccounts -GameModesConfigBranchName \\\"reef\\\"" config: betakey: external-playtest description: external-playtest - description_loc: - english: external-playtest executable: Tiger.exe type: option1 - executable: Tiger.exe type: default - - arguments: '-DsVersion \"external-qa\" -GameModesConfigBranchName qa -OnlineEnvironment uat-release' + - arguments: "-DsVersion \\\"external-qa\\\" -GameModesConfigBranchName qa -OnlineEnvironment uat-release" config: betakey: external-qa description: external-qa prodlike - description_loc: - english: external-qa prodlike executable: Tiger.exe type: option1 - - arguments: >- - -NoVerifyGC -ExecCmds=\"DisableAllScreenMessages\" -DsVersion \"sharkmob-playtest\" -OnlineEnvironment staging - -EnableSharkmobAccounts -GameModesConfigBranchName playtest + - arguments: "-NoVerifyGC -ExecCmds=\\\"DisableAllScreenMessages\\\" -DsVersion \\\"sharkmob-playtest\\\" -OnlineEnvironment staging -EnableSharkmobAccounts -GameModesConfigBranchName playtest" config: betakey: developertesting description: Daily Playtest (S1 Main) -> DX12 - description_loc: - english: Daily Playtest (S1 Main) -> DX12 executable: Tiger.exe type: option1 - - arguments: >- - -NoVerifyGC -ExecCmds=\"DisableAllScreenMessages\" -DsVersion \"external-playtest-5\" -OnlineEnvironment main - -EnableSharkmobAccounts -GameModesConfigBranchName \"kws\" -dx12 + - arguments: "-NoVerifyGC -ExecCmds=\\\"DisableAllScreenMessages\\\" -DsVersion \\\"external-playtest-5\\\" -OnlineEnvironment main -EnableSharkmobAccounts -GameModesConfigBranchName \\\"kws\\\" -dx12" config: betakey: external-playtest-5 description: external-playtest-5 DX12 - description_loc: - english: external-playtest-5 DX12 executable: Tiger.exe type: option2 - - arguments: >- - -NoVerifyGC -ExecCmds=\"DisableAllScreenMessages\" -DsVersion \"external-playtest-5\" -OnlineEnvironment main - -EnableSharkmobAccounts -GameModesConfigBranchName \"kws\" + - arguments: "-NoVerifyGC -ExecCmds=\\\"DisableAllScreenMessages\\\" -DsVersion \\\"external-playtest-5\\\" -OnlineEnvironment main -EnableSharkmobAccounts -GameModesConfigBranchName \\\"kws\\\"" config: betakey: external-playtest-5 description: external-playtest-5 DX11 - description_loc: - english: external-playtest-5 DX11 executable: Tiger.exe type: option1 - - arguments: '-dx11' + - arguments: "-dx11" description: in DX11 Compatibility Mode - description_loc: - brazilian: no Modo de Compatibilidade DX11 - bulgarian: режим на съвместимост DX11 - czech: v režimu kompatibility s DX11 - danish: i DX11-kompatibilitetstilstand - dutch: in DX11-compatibiliteitsmodus - english: in DX11 Compatibility Mode - finnish: DX11-yhteensopivuustilassa - french: ce jeu en mode compatibilité DX11 - german: Im DX11-Kompatibilitätsmodus - greek: σε λειτουργία συμβατότητας DX11 - hungarian: DX11-kompatibilis mód - italian: questo gioco in modalità DX11 - japanese: DX11互換モードでゲーム - koreana: DX11 호환성 모드로 - latam: en el modo de compatibilidad de DX11 - norwegian: i DX11-kompatibilitetsmodus - polish: trybie zgodności z DX11 - portuguese: no Modo de Compatibilidade DX11 - romanian: în modul de compatibilitate DX11 - russian: режиме совместимости с DX11 - schinese: ' - 在DX11兼容性模式下' - spanish: en el modo de compatibilidad de DX11 - swedish: i DX11-kompatibelt läge - tchinese: DX11 相容模式 - thai: ในโหมดความเข้ากันได้ DX11 - turkish: DX11 Uyumluluk Modunda - ukrainian: режимі сумісності з DX11 - vietnamese: ở Chế độ tương thích với DX11 executable: Tiger.exe type: option1 - - arguments: >- - -DsVersion \"external-playtest-3\" -OnlineEnvironment prod -EnableSharkmobAccounts -MuteSharkTelemetry -dx11 - -GameModesConfigBranchName kws + - arguments: "-DsVersion \\\"external-playtest-3\\\" -OnlineEnvironment prod -EnableSharkmobAccounts -MuteSharkTelemetry -dx11 -GameModesConfigBranchName kws" config: betakey: external-playtest-3 description: external-playtest-3 dx11 - description_loc: - english: external-playtest-3 dx11 executable: Tiger.exe type: option1 - config: betakey: external-qa-4 description: EAC test - description_loc: - english: EAC test executable: Tiger.exe type: option1 - - arguments: >- - -NoVerifyGC -ExecCmds=\"DisableAllScreenMessages\" -DsVersion \"internal-2\" -OnlineEnvironment staging - -MuteSharkTelemetry -GameModesConfigBranchName qa + - arguments: "-NoVerifyGC -ExecCmds=\\\"DisableAllScreenMessages\\\" -DsVersion \\\"internal-2\\\" -OnlineEnvironment staging -MuteSharkTelemetry -GameModesConfigBranchName qa" config: betakey: internal-2 description: Staging test - description_loc: - english: Staging test executable: Tiger.exe type: option1 - - arguments: >- - -NoVerifyGC -DsVersion \"external-qa-8\" -OnlineEnvironment uat-release -MuteSharkTelemetry - -GameModesConfigBranchName playtest -enablesharkmobaccounts + - arguments: "-NoVerifyGC -DsVersion \\\"external-qa-8\\\" -OnlineEnvironment uat-release -MuteSharkTelemetry -GameModesConfigBranchName playtest -enablesharkmobaccounts" config: betakey: external-qa-8 description: Hotfix2 Playtest - description_loc: - english: Hotfix2 Playtest executable: Tiger.exe type: option1 -'760210': +"760210": installDir: Operation Antiterror launch: - config: oslist: windows executable: Operation Antiterror.exe type: default -'760220': +"760220": installDir: Chineze launch: - executable: Chineze.exe type: default -'760240': {} -'760250': {} -'760300': +"760240": {} +"760250": {} +"760300": installDir: Ender Story Chapter 1 launch: - config: oslist: windows executable: Game.exe type: default -'760320': +"760320": installDir: Gunman Tales launch: - config: oslist: windows executable: nw.exe type: none -'760330': +"760330": installDir: BYTEPATH launch: - config: @@ -352727,16 +347478,16 @@ executable: BYTEPATH.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: game_32.AppImage type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: game_64.AppImage type: default -'760350': +"760350": installDir: Star Sweet launch: - config: @@ -352748,121 +347499,101 @@ description: Achievement Fix executable: StarSweetDV.exe type: none -'760360': +"760360": installDir: AndroidJohn2_1 launch: - config: - osarch: '32' + osarch: "32" oslist: windows - executable: AJ_2_1_32Bit\\AndroidJohn2_1.exe + executable: "AJ_2_1_32Bit\\\\AndroidJohn2_1.exe" type: default - config: - osarch: '64' + osarch: "64" oslist: windows - executable: AJ_2_1_64Bit\\AndroidJohn2_1.exe + executable: "AJ_2_1_64Bit\\\\AndroidJohn2_1.exe" type: default -'760390': +"760390": installDir: Tile Typer launch: - config: oslist: windows executable: TileTyper.exe type: default -'760400': +"760400": installDir: AudioDriveNeon launch: - description: v1.6.3.4 - description_loc: - english: v1.6.3.4 executable: AudioDriveStorm.exe type: default - description: v1.5.4.2 - description_loc: - english: v1.5.4.2 executable: Audio Drive Neon.exe - description: v1.5.3.4 - description_loc: - english: v1.5.3.4 executable: Audio Drive Neon.exe - description: v1.5.2.3 - description_loc: - english: v1.5.2.3 executable: Audio Drive Neon.exe - description: v1.5.0.9 - description_loc: - english: v1.5.0.9 executable: Audio Drive Neon.exe - description: v1.1.9.1 - description_loc: - english: v1.1.9.1 executable: Audio Drive Neon.exe - description: v1.1.7.1 - description_loc: - english: v1.1.7.1 executable: Audio Drive Neon.exe - description: v1.1.2.5 - description_loc: - english: v1.1.2.5 executable: AudioDriveNeon.exe - description: v1.0.8.0 - description_loc: - english: v1.0.8.0 executable: Audio Drive Neon.exe - description: v1.0.7.0 - description_loc: - english: v1.0.7.0 executable: Audio Drive Neon.exe -'760410': - installDir: Don't Be Afraid +"760410": + installDir: "Don't Be Afraid" launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: Don't Be Afraid.exe + executable: "Don't Be Afraid.exe" type: none -'760440': {} -'760450': {} -'760460': +"760440": {} +"760450": {} +"760460": installDir: WEED launch: - executable: weed.exe type: none -'760490': +"760490": installDir: Frontier Runner launch: - config: oslist: windows executable: nw.exe type: default -'760510': +"760510": installDir: Cat Burglar launch: - config: oslist: windows executable: CB-Build 9-5.exe type: default -'760530': +"760530": installDir: futurejam launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Futurejam executable: futurejam.exe type: vr -'760550': +"760550": installDir: kakusankibou launch: - config: oslist: windows executable: Game.exe type: default -'760560': +"760560": installDir: Happy New Year Clicker launch: - executable: hnyc.exe type: none -'760580': +"760580": installDir: INSPACE 2980 launch: - config: @@ -352871,9 +347602,9 @@ type: none - config: oslist: macos - executable: inspace2980.app\\Contents\\MacOS\\nwjs + executable: "inspace2980.app\\\\Contents\\\\MacOS\\\\nwjs" type: none -'760620': +"760620": installDir: Deiland launch: - config: @@ -352887,9 +347618,9 @@ - config: betakey: test_101xp oslist: windows - executable: microlauncher\\deiland-101xp-micro-launcher.exe + executable: "microlauncher\\\\deiland-101xp-micro-launcher.exe" type: default -'760630': +"760630": installDir: Tennis Elbow Manager 2 launch: - config: @@ -352900,11 +347631,11 @@ oslist: macos executable: Tennis Elbow Manager 2.app type: default -'760640': +"760640": installDir: Tennis Elbow 4 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Tennis Elbow 4.exe type: default @@ -352912,7 +347643,7 @@ oslist: macos executable: Tennis Elbow 4.app type: default -'760650': +"760650": installDir: Hammerting launch: - config: @@ -352921,30 +347652,30 @@ type: none nameLocalized: schinese: 百炼成钢 -'760660': +"760660": installDir: Retro Miami launch: - config: oslist: windows executable: Retro Miami.exe type: default -'760680': +"760680": installDir: Galaxy Race launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Galaxy Race.exe type: vr - config: - osarch: '64' + osarch: "64" oslist: windows executable: Galaxy Race.exe type: othervr -'760700': {} -'760740': {} -'760750': {} -'760800': +"760700": {} +"760740": {} +"760750": {} +"760800": installDir: Cube Life Island Survival launch: - config: @@ -352955,96 +347686,92 @@ oslist: macos executable: Cube Life.app type: none -'760810': +"760810": installDir: Retimed launch: - config: oslist: windows - executable: Windows\\Retimed.exe + executable: "Windows\\\\Retimed.exe" type: none - config: oslist: macos - executable: Mac\\Retimed.app\\Contents\\MacOS\\Retimed + executable: "Mac\\\\Retimed.app\\\\Contents\\\\MacOS\\\\Retimed" type: none -'760820': {} -'760860': +"760820": {} +"760860": installDir: TRANSCEND launch: - config: oslist: windows executable: TRANSCEND.exe type: default -'760870': {} -'760880': {} -'760890': +"760870": {} +"760880": {} +"760890": installDir: HC3 launch: - executable: Game.exe type: none -'760900': +"760900": installDir: In the thrall of darkness The gift of dreams launch: - config: oslist: windows executable: In the thrall of darkness.exe type: default -'760920': +"760920": installDir: ElectricVLab launch: - config: oslist: windows executable: ElectricVLab.exe type: default -'760930': +"760930": installDir: Bitcoin Farm launch: - executable: Bitcoin Farm.exe type: none -'760950': {} -'760960': +"760950": {} +"760960": installDir: RocketGirl launch: - config: oslist: windows executable: RocketGirl.exe type: default -'760980': {} -'760990': +"760980": {} +"760990": installDir: WeakWood Throne launch: - executable: Weakwood Throne.exe type: none -'7610': +"7610": installDir: Railroad Tycoon 3 launch: - executable: RT3.exe -'761000': +"761000": installDir: Floresia I - Intemporel launch: - config: oslist: windows executable: Game.exe type: none -'761010': +"761010": installDir: WaveBreak launch: - config: oslist: windows description: Windows - description_loc: - english: Windows executable: WaveBreak.exe type: default - - arguments: '-force-vulkan' + - arguments: "-force-vulkan" config: oslist: linux description: Linux - description_loc: - english: Linux executable: WaveBreak.x86_64 type: default -'761020': {} -'761030': +"761020": {} +"761030": installDir: Earthlock Enhanced Edition launch: - config: @@ -353059,29 +347786,29 @@ oslist: linux executable: Earthlock.x86 type: default -'761040': +"761040": installDir: Wolf Gang launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Wolf Gang.exe type: default - config: oslist: macos - executable: Wolf Gang.app\\Contents\\MacOS\\Wolf Gang + executable: "Wolf Gang.app\\\\Contents\\\\MacOS\\\\Wolf Gang" type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Wolf Gang.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Wolf Gang.x86_64 type: default -'761070': +"761070": installDir: Garden of Oblivion launch: - config: @@ -353096,8 +347823,8 @@ oslist: linux executable: Garden_of_Oblivion_-_Steam_Edition.sh type: default -'761090': {} -'761100': +"761090": {} +"761100": installDir: Jump! Jump! Jump! launch: - config: @@ -353117,23 +347844,23 @@ type: option1 - config: oslist: windows - ownsdlc: '793330' + ownsdlc: "793330" description: Rush! Rush! Rush! executable: win32/RushRushRush.exe type: option2 - config: oslist: macos - ownsdlc: '793330' + ownsdlc: "793330" description: Rush! Rush! Rush! executable: RushRushRush.app/Contents/MacOS/RushRushRush type: option2 - config: oslist: linux - ownsdlc: '793330' + ownsdlc: "793330" description: Rush! Rush! Rush! executable: RushRushRush.Linux/RushRushRush.x86 type: option2 -'761110': +"761110": installDir: Infinity Escape launch: - config: @@ -353148,7 +347875,7 @@ oslist: linux executable: InfinityEscape_Linux/InfinityEscape.x86 type: default -'761130': +"761130": installDir: Stellar Warrior launch: - config: @@ -353168,129 +347895,129 @@ type: option1 - config: oslist: windows - description: 'Stellar Warrior : Master Levels' + description: "Stellar Warrior : Master Levels" executable: win32/StellarWarriorMasterLevels.exe type: option2 - config: oslist: macos - description: 'Stellar Warrior : Master Levels' + description: "Stellar Warrior : Master Levels" executable: StellarWarriorMasterLevels.app/Contents/MacOS/StellarWarriorMasterLevels type: option2 - config: oslist: linux - description: 'Stellar Warrior : Master Levels' + description: "Stellar Warrior : Master Levels" executable: StellarWarriorMasterLevels.Linux/StellarWarriorMasterLevels.x86 type: option2 -'761140': +"761140": installDir: Lost Summoner Kitty launch: - config: oslist: windows executable: LostSummonerKitty.exe type: none -'761150': +"761150": installDir: Brick Breaker Bunch launch: - - arguments: '-windowed' + - arguments: "-windowed" config: - osarch: '64' + osarch: "64" oslist: windows executable: brickbreakerbunch.exe type: default - config: oslist: macos - executable: brickbreakerbunch.app\\Contents\\MacOS\\brickbreakerbunch + executable: "brickbreakerbunch.app\\\\Contents\\\\MacOS\\\\brickbreakerbunch" type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: brickbreakerbunch type: default -'761160': +"761160": installDir: 4 Alice Lorange Journey launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: - osarch: '64' + osarch: "64" oslist: windows description: 4 Alice Lorange Journey executable: 4Alice.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows - description: '4 Alice : Lorange Journey (no Steam Overlay)' + description: "4 Alice : Lorange Journey (no Steam Overlay)" executable: 4Alice.exe type: option1 - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: - osarch: '64' + osarch: "64" oslist: windows - ownsdlc: '860050' + ownsdlc: "860050" description: 3 Emilie (DLC) - executable: DLC\\3Emilie.exe + executable: "DLC\\\\3Emilie.exe" type: option2 - config: - osarch: '64' + osarch: "64" oslist: windows - ownsdlc: '860050' - description: '3 Emilie (DLC), no Steam Overlay' - executable: DLC\\3Emilie.exe + ownsdlc: "860050" + description: "3 Emilie (DLC), no Steam Overlay" + executable: "DLC\\\\3Emilie.exe" type: option3 nameLocalized: - french: '4 Alice : L''aventure de Lorange' -'761170': + french: "4 Alice : L'aventure de Lorange" +"761170": installDir: Radical Dungeon Sweeper launch: - executable: RadicalDungeonSweeper.exe type: default -'761190': - installDir: '1010' +"761190": + installDir: "1010" launch: - config: oslist: windows executable: 1010.exe type: default -'761220': +"761220": installDir: Live the Guitar launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: livetheguitar.exe type: vr -'761280': +"761280": installDir: White Pearl launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows executable: Game.exe type: default -'761290': +"761290": installDir: Sink or Skim launch: - executable: /WindowsNoEditor/SinkOrSkim.exe type: default workingdir: /WindowsNoEditor/ -'761300': +"761300": installDir: Horde Of Plenty launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Horde Of Plenty.exe type: default -'761310': {} -'761320': +"761310": {} +"761320": installDir: Black Jewel launch: - config: oslist: windows executable: BlackJewel.exe type: default -'761330': {} -'761350': +"761330": {} +"761350": installDir: Booth launch: - config: @@ -353299,32 +348026,30 @@ type: default - config: oslist: macos - executable: Booth.app\\Contents\\MacOS\\Booth + executable: "Booth.app\\\\Contents\\\\MacOS\\\\Booth" type: default nameLocalized: japanese: Booth カラバコ schinese: Booth 空箱 -'761410': {} -'761420': {} -'761430': {} -'761440': +"761410": {} +"761420": {} +"761430": {} +"761440": installDir: Santa Run launch: - config: oslist: windows executable: Santa Run.exe type: default -'761450': +"761450": installDir: HUGE_BEER_PONG_VR launch: - config: oslist: windows description: Launch HBPCVR - description_loc: - english: Launch HBPCVR executable: HugeBeerPongChallengesVR.exe type: vr -'761460': +"761460": installDir: Lamplight City launch: - config: @@ -353368,7 +348093,7 @@ oslist: linux executable: LamplightCity type: none -'761480': +"761480": installDir: Snail Trek Chapter 3 launch: - config: @@ -353380,28 +348105,28 @@ executable: SnailTrek3.app type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: SnailTrek3.x86_64 type: none -'761570': +"761570": installDir: Beard & Axe launch: - config: oslist: windows executable: Beard and Axe.exe type: default -'761600': +"761600": installDir: Onimusha launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: game.exe type: default nameLocalized: japanese: 鬼武者 -'761620': +"761620": installDir: Beholder 2 launch: - config: @@ -353410,52 +348135,52 @@ type: default - config: oslist: macos - executable: Beholder2.app\\Contents\\MacOS\\Beholder2 + executable: "Beholder2.app\\\\Contents\\\\MacOS\\\\Beholder2" type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Beholder2.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Beholder2.x86_64 type: default -'761630': +"761630": installDir: akda launch: - config: oslist: windows executable: akda.exe type: default -'761640': +"761640": installDir: Home Darkness - Escape launch: - config: oslist: windows - executable: win32\\Home darkness - Escape.exe + executable: "win32\\\\Home darkness - Escape.exe" type: default - config: oslist: macos - executable: Home darkness - Escape.app\\Contents\\MacOS\\Flash Player + executable: "Home darkness - Escape.app\\\\Contents\\\\MacOS\\\\Flash Player" type: default -'761660': +"761660": installDir: Stickman Destruction 2 launch: - config: oslist: windows - executable: win32\\StickmanDestruction2.exe + executable: "win32\\\\StickmanDestruction2.exe" type: default - config: oslist: macos - executable: StickmanDestruction2.app\\Contents\\MacOS\\StickmanDestruction2 + executable: "StickmanDestruction2.app\\\\Contents\\\\MacOS\\\\StickmanDestruction2" type: default - config: oslist: linux - executable: StickmanDestruction2.Linux\\StickmanDestruction2.x86 + executable: "StickmanDestruction2.Linux\\\\StickmanDestruction2.x86" type: default -'761670': +"761670": installDir: Grisaia Phantom Trigger Vol.4 launch: - executable: GPT_vol4.exe @@ -353463,15 +348188,15 @@ nameLocalized: japanese: グリザイア ファントムトリガー Vol.4 schinese: 灰色幻影扳机第4卷 -'761700': +"761700": installDir: your diary+ launch: - config: oslist: windows executable: yourdiary.exe type: default -'761720': {} -'761760': +"761720": {} +"761760": installDir: TTDW launch: - config: @@ -353480,16 +348205,16 @@ type: default - config: oslist: macos - executable: TTDW.app\\Contents\\MacOS\\TTDW + executable: "TTDW.app\\\\Contents\\\\MacOS\\\\TTDW" type: default -'761770': +"761770": installDir: Fire Flight launch: - config: oslist: windows executable: ffs.exe type: default -'761790': +"761790": installDir: Parker & Lane launch: - config: @@ -353498,9 +348223,9 @@ type: default - config: oslist: macos - executable: Parker&Lane.app\\Contents\\MacOS\\Parker&Lane + executable: "Parker&Lane.app\\\\Contents\\\\MacOS\\\\Parker&Lane" type: default -'761830': +"761830": installDir: MrPrepper launch: - config: @@ -353511,37 +348236,37 @@ japanese: Mr. プレッパー koreana: 미스터 프레퍼 schinese: 末日准备狂 -'761880': +"761880": installDir: The Day They Landed launch: - config: oslist: windows executable: TheDayTheyLanded.exe type: vr -'761890': +"761890": installDir: Albion Online launch: - - arguments: '-steam' + - arguments: "-steam" config: oslist: windows executable: launcher/AlbionLauncher.exe type: default workingdir: launcher - - arguments: '-steam' + - arguments: "-steam" config: oslist: macos executable: Albion-Online.app type: default - - arguments: '-steam' + - arguments: "-steam" config: oslist: linux executable: Albion-Online type: default -'761910': +"761910": installDir: Worbital launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Worbital.exe type: default @@ -353549,12 +348274,12 @@ oslist: macos executable: Worbital.app type: default -'761920': +"761920": installDir: Zenodeath launch: - executable: Zenodeath_GMS2.exe type: default -'761930': +"761930": installDir: Code Name Origin launch: - config: @@ -353562,45 +348287,45 @@ description: Launch executable: Code Name Origin_v1.0.2.exe type: none -'761990': +"761990": installDir: Rockochet launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Rockochet.exe type: vr -'7620': +"7620": installDir: Railroad Tycoon 2 Platinum launch: - executable: RT2_PLAT.EXE -'762000': {} -'762030': - installDir: Mowin' & Throwin' +"762000": {} +"762030": + installDir: "Mowin' & Throwin'" launch: - executable: MowinThrowin.exe type: none -'762080': +"762080": installDir: Galactic Force launch: - config: oslist: windows executable: GalacticForce.exe type: none -'762100': +"762100": installDir: The Most Challenging Game launch: - description: Launch executable: The Most Challenging Game FULL GAME V.exe type: none -'762110': +"762110": installDir: MeowWars launch: - config: oslist: windows executable: MeowWars.exe type: config -'762130': +"762130": installDir: Namaste Virtual Yoga Retreat launch: - config: @@ -353611,8 +348336,8 @@ oslist: windows executable: Namaste Virtual Yoga Retreat.exe type: vr -'762150': {} -'762180': +"762150": {} +"762180": installDir: Treachery in Beatdown City launch: - config: @@ -353620,7 +348345,7 @@ oslist: windows executable: TreacheryInBeatdownCity.exe type: default -'762190': +"762190": installDir: Epic Loon launch: - config: @@ -353631,11 +348356,11 @@ oslist: macos executable: EpicLoon.app/Contents/MacOS/EpicLoon type: none -'762220': +"762220": installDir: Afterparty launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Afterparty.exe type: default @@ -353644,11 +348369,11 @@ executable: Afterparty.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Afterparty.x86_64 type: default -'762240': +"762240": installDir: Fantasy Realm launch: - config: @@ -353659,8 +348384,8 @@ oslist: macos executable: Game.app type: default -'762250': {} -'762270': +"762250": {} +"762270": installDir: ThunderChase launch: - config: @@ -353668,46 +348393,46 @@ executable: ThunderChaseMac.app/Contents/MacOS/ThunderChaseMac type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: ThunderChaseWin.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: ThunderChaseWin.exe type: default -'762360': +"762360": installDir: Hexed launch: - config: oslist: windows executable: Hexed.exe type: default -'762380': +"762380": installDir: World Apart launch: - config: oslist: windows executable: WorldApart.exe type: vr -'762460': {} -'762480': +"762460": {} +"762480": installDir: Chinese inn launch: - config: oslist: windows executable: INN.exe type: default -'762490': +"762490": installDir: NakedSun launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: subreel.exe type: vr -'762500': +"762500": installDir: Rhythm Girl launch: - config: @@ -353716,9 +348441,9 @@ type: none - config: oslist: macos - executable: Rhythm Girl.app\\Contents\\MacOS\\Rhythm Girl + executable: "Rhythm Girl.app\\\\Contents\\\\MacOS\\\\Rhythm Girl" type: none -'762520': +"762520": installDir: Demon Hunter 4 Riddles of Light launch: - config: @@ -353727,13 +348452,13 @@ executable: DemonHunter4.exe type: none - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: DemonHunter4_i386 type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: DemonHunter4_amd64 @@ -353743,8 +348468,8 @@ description: Launch executable: mac_steam.app/Contents/MacOS/mac_steam type: none -'762550': {} -'762560': +"762550": {} +"762560": installDir: ManaRocks launch: - config: @@ -353755,14 +348480,14 @@ oslist: macos executable: ManaRocks.app type: default -'762590': +"762590": installDir: Zombie Derby 2 launch: - config: oslist: windows executable: zombie_derby_2.exe type: default -'762610': +"762610": installDir: Russian Subway Dogs launch: - config: @@ -353777,30 +348502,30 @@ oslist: linux executable: runner type: default -'762620': {} -'762630': +"762620": {} +"762630": installDir: Dark Wish launch: - - arguments: . + - arguments: "." config: - osarch: '64' + osarch: "64" oslist: windows executable: DarkWish.exe type: default - - arguments: ./mod_manager/ + - arguments: "./mod_manager/" config: - osarch: '64' + osarch: "64" oslist: windows description: Team-Jungle Mod Manager (for DarkWish) - executable: ./mod_manager/ModManager.exe + executable: "./mod_manager/ModManager.exe" type: none - description: Dark Wish Modding Guide - executable: ./doc/modding_guide.pdf + executable: "./doc/modding_guide.pdf" type: none - description: Dark Wish Gamer Guide - executable: ./doc/gamer_guide.pdf + executable: "./doc/gamer_guide.pdf" type: none -'762650': +"762650": installDir: Depraved launch: - config: @@ -353815,14 +348540,14 @@ oslist: linux executable: Depraved.x86_64 type: none -'762670': +"762670": installDir: AstroJoust launch: - config: oslist: windows executable: AstroJoust.exe type: default -'762680': +"762680": installDir: Double Turn launch: - config: @@ -353830,7 +348555,7 @@ executable: DoubleTurn.app type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: DoubleTurn.exe type: default @@ -353838,12 +348563,12 @@ oslist: linux executable: DoubleTurn type: default -'762780': {} -'762830': +"762780": {} +"762830": installDir: Telling Lies launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TellingLies.exe type: default @@ -353851,21 +348576,21 @@ oslist: macos executable: TellingLies.app type: default -'762840': +"762840": installDir: Maquette launch: - config: oslist: windows executable: Maquette.exe type: default -'762850': +"762850": installDir: Cubit launch: - config: oslist: windows executable: Cubit(Remade).exe type: default -'762860': +"762860": installDir: ANti launch: - config: @@ -353876,54 +348601,54 @@ oslist: windows executable: Anti.exe type: default -'762870': {} -'762900': - installDir: Cars with Guns It's About Time +"762870": {} +"762900": + installDir: "Cars with Guns It's About Time" launch: - config: oslist: windows description: Launch executable: CarsWithGuns.exe type: none -'762920': +"762920": installDir: Glory of the Self-Styled Diehard girl launch: - config: oslist: windows executable: game.eXe type: none -'762930': +"762930": installDir: Supipara - Chapter 2 launch: - executable: sppl2_en.exe type: default -'762940': {} -'762950': +"762940": {} +"762950": installDir: Chess Cubed launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Chess Cubed.exe type: default - config: oslist: macos - executable: ChessCubed.app\\Contents\\MacOS\\ChessCubed + executable: "ChessCubed.app\\\\Contents\\\\MacOS\\\\ChessCubed" type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: ChessCubed.x86_64 type: default -'762980': +"762980": installDir: Chaotic Void launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ChaoticVoid.exe type: none -'763000': +"763000": installDir: Super Army of Tentacles 2 BGWE launch: - config: @@ -353932,18 +348657,18 @@ type: default - config: oslist: macos - executable: AoT3BlackGOATEdition.app\\Contents\\MacOS\\AoT3BlackGOATEdition + executable: "AoT3BlackGOATEdition.app\\\\Contents\\\\MacOS\\\\AoT3BlackGOATEdition" type: default - config: oslist: linux executable: AoT3BlackGOATEdition.sh type: default -'763010': +"763010": installDir: Lost In Maze launch: - executable: LostInMaze.exe type: none -'763030': +"763030": installDir: NellyCootalotSpoonbeaksAhoyHD launch: - config: @@ -353962,21 +348687,21 @@ oslist: windows executable: Launcher.exe type: config -'763050': +"763050": installDir: HappinessDrops launch: - config: oslist: windows executable: HappinessDrops.exe type: default -'763070': +"763070": installDir: Overcoming_Pain launch: - config: oslist: windows executable: Overcoming_Pain.exe type: default -'763090': +"763090": installDir: Aqua Fish launch: - config: @@ -353991,38 +348716,38 @@ oslist: linux executable: AquaFish.Linux/AquaFish.x86 type: default -'763100': +"763100": installDir: Lumberjack Simulator launch: - config: oslist: windows executable: Lumberjack Simulator.exe type: none -'763180': {} -'763200': +"763180": {} +"763200": installDir: Volkstein launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: windows_content\\Volkstein.exe + executable: "windows_content\\\\Volkstein.exe" type: default -'763210': +"763210": installDir: Amelon launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Amelon.exe type: default -'763220': +"763220": installDir: Bright low launch: - config: oslist: windows executable: bright_low.exe type: default -'763230': +"763230": installDir: Fruity Smoothie launch: - config: @@ -354037,20 +348762,20 @@ oslist: linux executable: FruitySmoothie.x86_64 type: default -'763250': +"763250": installDir: Spectrum launch: - executable: Spectrum.exe type: default -'763270': +"763270": installDir: Fritz Chess 16 launch: - - arguments: '-Fritz16Steam' + - arguments: "-Fritz16Steam" config: oslist: windows - executable: ChessProgram16\\ChessProgram16.exe + executable: "ChessProgram16\\\\ChessProgram16.exe" type: none -'763290': +"763290": installDir: Riddlord The Consequence launch: - config: @@ -354059,9 +348784,9 @@ type: default - config: oslist: macos - executable: riddlord.app\\Contents\\MacOS\\riddlord + executable: "riddlord.app\\\\Contents\\\\MacOS\\\\riddlord" type: default -'763300': +"763300": installDir: GAME TUBE launch: - config: @@ -354070,32 +348795,32 @@ type: none - config: oslist: macos - executable: GameTube.app\\Contents\\MacOS\\GameTube + executable: "GameTube.app\\\\Contents\\\\MacOS\\\\GameTube" type: none - config: - osarch: '32' + osarch: "32" oslist: linux - executable: GameTube.linux\\GameTube.x86 + executable: "GameTube.linux\\\\GameTube.x86" type: none - config: - osarch: '64' + osarch: "64" oslist: linux - executable: GameTube.linux\\GameTube.x86_64 + executable: "GameTube.linux\\\\GameTube.x86_64" type: none -'763320': +"763320": installDir: BlockShip Wars Roguelike launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: BSWR.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: BSWR type: default -'763340': +"763340": installDir: Brave Hand launch: - config: @@ -354107,7 +348832,7 @@ oslist: macos executable: BraveHand.app type: none -'763350': +"763350": installDir: DribbleGames launch: - config: @@ -354118,7 +348843,7 @@ oslist: macos executable: build-mac.app type: default -'763360': +"763360": installDir: Nice Way launch: - config: @@ -354133,7 +348858,7 @@ oslist: linux executable: Nice Way.x86 type: none -'763380': +"763380": installDir: Koikoi launch: - config: @@ -354144,14 +348869,14 @@ oslist: macos executable: Koikoi.app type: default -'763400': +"763400": installDir: Cave Runner launch: - config: oslist: windows executable: cv.exe type: default -'763410': +"763410": installDir: Long Live Santa launch: - config: @@ -354162,90 +348887,90 @@ oslist: macos executable: Long Live Santa.app/Contents/MacOS/Long Live Santa type: default -'763420': {} -'763430': +"763420": {} +"763430": installDir: Front Defense Heroes launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Front Defense Heroes.exe type: vr - config: betakey: audience - osarch: '64' + osarch: "64" oslist: windows description: Audience Mode executable: Front Defense Heroes.exe type: option1 -'763490': +"763490": installDir: PrecisionArchery launch: - executable: Archery.exe type: none -'763520': +"763520": installDir: Hard Place launch: - executable: HardPlace.exe type: none -'763540': {} -'763570': {} -'763610': +"763540": {} +"763570": {} +"763610": installDir: Freakshow 2 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: FAnniversary.exe type: default -'763630': +"763630": installDir: GateOfIce launch: - config: oslist: windows executable: Start_room.exe type: vr -'763650': +"763650": installDir: Comets Wake launch: - config: oslist: windows executable: Comets_Wake.exe type: vr -'763680': +"763680": installDir: Miney Company launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Miney Company.exe type: vr -'763700': {} -'763710': +"763700": {} +"763710": installDir: River City Melee Mach!! launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: River City Melee Mach!!.exe type: default nameLocalized: japanese: ダウンタウン乱闘行進曲マッハ -'763730': +"763730": installDir: Ragtag Adventurers launch: - - arguments: '-nohmd' + - arguments: "-nohmd" config: oslist: windows description: Non-VR executable: Arkham.exe type: none -'763740': +"763740": installDir: NARK THE DRAGON launch: - executable: NTD.exe type: none -'763750': +"763750": installDir: Minaurs launch: - config: @@ -354254,9 +348979,9 @@ type: default - config: oslist: macos - executable: Minaurs.app\\Contents\\MacOS\\Minaurs + executable: "Minaurs.app\\\\Contents\\\\MacOS\\\\Minaurs" type: default -'763760': +"763760": installDir: My Coloring Book Food and Beverage launch: - config: @@ -354265,13 +348990,13 @@ type: none - config: oslist: macos - executable: My Coloring Book - Food and Beverage.app\\Contents\\MacOS\\My Coloring Book - Food and Beverage + executable: "My Coloring Book - Food and Beverage.app\\\\Contents\\\\MacOS\\\\My Coloring Book - Food and Beverage" type: none - config: oslist: linux executable: My Coloring Book - Food and Beverage.x86 type: none -'763770': +"763770": installDir: Space Stories - Darth Star launch: - config: @@ -354280,27 +349005,27 @@ type: none - config: oslist: macos - executable: Space Stories - Darth Star.app\\Contents\\MacOS\\Space Stories - Darth Star + executable: "Space Stories - Darth Star.app\\\\Contents\\\\MacOS\\\\Space Stories - Darth Star" type: none - config: oslist: linux executable: Space Stories - Darth Star.x86 type: none -'763790': +"763790": installDir: TrainerVR launch: - config: oslist: windows executable: TrainerVR.exe type: vr -'763810': +"763810": installDir: Jingle launch: - config: oslist: windows executable: Jingle.exe type: default -'763870': +"763870": installDir: Xploquest launch: - config: @@ -354309,33 +349034,33 @@ type: default - config: oslist: macos - executable: xploquest.app\\Contents\\MacOS\\Mac_Runner + executable: "xploquest.app\\\\Contents\\\\MacOS\\\\Mac_Runner" type: default - config: oslist: linux - executable: xploquest\\runner + executable: "xploquest\\\\runner" type: default -'763880': {} -'763890': +"763880": {} +"763890": installDir: Wildermyth launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: wildermyth.exe type: default - config: oslist: macos - executable: wildermyth.app\\Contents\\MacOS\\wildermyth + executable: "wildermyth.app\\\\Contents\\\\MacOS\\\\wildermyth" type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: wildermyth type: default nameLocalized: schinese: 漫野奇谭 -'763910': +"763910": installDir: Time Tenshi Paradox Episode 1 launch: - config: @@ -354344,13 +349069,13 @@ type: default - config: oslist: macos - executable: Time Tenshi Paradox Episode 1.app\\Contents\\MacOS\\Time Tenshi Paradox Episode 1 + executable: "Time Tenshi Paradox Episode 1.app\\\\Contents\\\\MacOS\\\\Time Tenshi Paradox Episode 1" type: default - config: oslist: linux executable: Time Tenshi Paradox Episode 1.sh type: default -'763930': +"763930": installDir: Tally Ho launch: - config: @@ -354365,7 +349090,7 @@ oslist: linux executable: TallyHo type: none -'763950': +"763950": installDir: T-Rex Time Machine launch: - config: @@ -354380,78 +349105,78 @@ oslist: linux executable: TRexTimeMachine type: none -'763970': +"763970": installDir: Leisure Suit Larry 1 - In the Land of the Lounge Lizards launch: - config: oslist: windows executable: run.bat type: default -'763980': {} -'763990': +"763980": {} +"763990": installDir: Chasing the Stars launch: - config: oslist: windows - executable: Chasing_the_Stars_3.1-pc\\Chasing the Stars.exe + executable: "Chasing_the_Stars_3.1-pc\\\\Chasing the Stars.exe" type: default - config: oslist: macos - executable: Chasing the Stars.app\\Contents\\MacOS\\Chasing the Stars + executable: "Chasing the Stars.app\\\\Contents\\\\MacOS\\\\Chasing the Stars" type: default - config: oslist: linux executable: Chasing the Stars.sh type: default -'764010': +"764010": installDir: Insane Cold Back to the Ice Age launch: - executable: InsaneCold.exe type: none -'764030': +"764030": installDir: Realm Revolutions launch: - config: oslist: windows executable: game.exe type: default -'764050': +"764050": installDir: Maelstrom launch: - config: oslist: windows executable: MaelstromV2.exe type: default -'764060': {} -'764080': +"764060": {} +"764080": installDir: GloGo launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: GloGoDemo.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: GloGo32.exe type: default -'764090': +"764090": installDir: Star Shredders launch: - config: oslist: windows executable: STAR SHREDDERS.exe type: default -'764110': +"764110": installDir: Flappy Arms launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: FlappyArms.exe type: vr -'764180': +"764180": installDir: Cross of Auria launch: - config: @@ -354466,7 +349191,7 @@ oslist: macos executable: x. Cross of Auria/Game.app type: default -'764230': +"764230": installDir: Shoujo City launch: - config: @@ -354475,21 +349200,21 @@ type: default - config: oslist: macos - executable: ShoujoCity.app\\Contents\\MacOS\\ShoujoCity + executable: "ShoujoCity.app\\\\Contents\\\\MacOS\\\\ShoujoCity" type: default -'764240': +"764240": installDir: Horse Paradise - My Dream Ranch launch: - config: oslist: windows executable: Horse Paradise.exe type: default -'764280': +"764280": installDir: Radical Heroes Atomic Adam launch: - executable: AtomicAdam.exe type: none -'764370': +"764370": installDir: Realm of the Ghost King launch: - config: @@ -354498,20 +349223,20 @@ type: default - config: oslist: macos - executable: rotgk.app\\Contents\\MacOS\\rotgk + executable: "rotgk.app\\\\Contents\\\\MacOS\\\\rotgk" type: default - config: oslist: linux executable: rotgk type: default -'764390': +"764390": installDir: Synced Warriors launch: - config: oslist: windows executable: game.exe type: default -'764410': +"764410": installDir: Trials of the Gauntlet launch: - config: @@ -354520,20 +349245,20 @@ type: default - config: oslist: macos - executable: Trials of the Gauntlet.app\\Contents\\MacOS\\Trials of the Gauntlet + executable: "Trials of the Gauntlet.app\\\\Contents\\\\MacOS\\\\Trials of the Gauntlet" type: none - config: oslist: linux executable: Trails of the Gauntlet 3.0.x86_64 type: none -'764430': +"764430": installDir: The Legend of Bean launch: - config: oslist: windows executable: Game.exe type: default -'764470': +"764470": installDir: Gear Path launch: - config: @@ -354548,7 +349273,7 @@ oslist: linux executable: GearPath type: default -'764490': +"764490": installDir: Stickman Jetpack launch: - config: @@ -354563,14 +349288,14 @@ oslist: linux executable: StickmanJetpack.Linux/StickmanJetpack.x86 type: default -'764500': +"764500": installDir: DeepDarkFight launch: - config: oslist: windows executable: DDF.exe type: default -'764510': +"764510": installDir: Phantom Signal launch: - config: @@ -354579,33 +349304,33 @@ type: default - config: oslist: macos - executable: Phantom Signal.app\\Contents\\MacOS\\Phantom Signal + executable: "Phantom Signal.app\\\\Contents\\\\MacOS\\\\Phantom Signal" type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Phantom Signal.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Phantom Signal.x86 type: default -'764550': +"764550": installDir: City Builder launch: - config: oslist: windows executable: CityBuilder.exe type: none -'764560': +"764560": installDir: Chocolate makes you happy 2 launch: - config: oslist: windows executable: Chocolate makes you happy 2.exe type: default -'764570': +"764570": installDir: Beavers Be Dammed launch: - config: @@ -354617,49 +349342,49 @@ executable: BeaversBeDammed.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux description: Play Beavers Be Dammed executable: BeaversBeDammed.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: Play Beavers Be Dammed (64 bit) executable: BeaversBeDammed.x86_64 type: default -'764580': - installDir: 'RealmCraft - Survive, Mine & Craft' +"764580": + installDir: "RealmCraft - Survive, Mine & Craft" launch: - executable: RealmCraft.exe type: default -'764590': +"764590": installDir: Shadow of LootBox launch: - config: oslist: windows executable: ShadowOfLootBox.exe type: default -'764630': +"764630": installDir: Alien Invaders from the Planet Plorth launch: - config: oslist: windows executable: Alien Invaders from the Planet Plorth.exe type: none -'764670': +"764670": installDir: Sea Dogs launch: - executable: ENGINE.exe type: none -'764720': +"764720": installDir: Oh No! Ninjas! launch: - config: oslist: windows executable: OhNoNinjas.exe type: none -'764740': +"764740": installDir: Caviar - Endless Stress Reliever launch: - config: @@ -354670,7 +349395,7 @@ oslist: macos executable: Caviar.app type: none -'764780': +"764780": installDir: Edepth Angel PM launch: - config: @@ -354681,26 +349406,26 @@ oslist: macos executable: EDepth_PM.app type: default -'764790': +"764790": installDir: The Messenger launch: - executable: TheMessenger.exe type: none -'764830': +"764830": installDir: Snowmania launch: - config: oslist: windows executable: Snowmania.exe type: vr -'764870': +"764870": installDir: Bubblien Pop launch: - config: oslist: windows executable: Bpop.exe type: default -'764880': +"764880": installDir: Brazilian Adventure launch: - config: @@ -354709,9 +349434,9 @@ type: default - config: oslist: macos - executable: Brazilian.app\\Contents\\MacOS\\Brazilian + executable: "Brazilian.app\\\\Contents\\\\MacOS\\\\Brazilian" type: default -'764890': +"764890": installDir: Match Point launch: - config: @@ -354726,16 +349451,16 @@ oslist: linux executable: Match Point.x86 type: none -'764920': +"764920": installDir: FearTheNight launch: - - arguments: '-allowansel' + - arguments: "-allowansel" config: - osarch: '64' + osarch: "64" oslist: windows - executable: Moonlight\\Binaries\\Win64\\Moonlight.exe + executable: "Moonlight\\\\Binaries\\\\Win64\\\\Moonlight.exe" type: none -'764970': +"764970": installDir: Bubble Struggle Adventures launch: - config: @@ -354747,39 +349472,39 @@ executable: bs_adventures.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: bs_adventures.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: bs_adventures.x86_64 type: default -'764990': +"764990": installDir: Whack the Serial Killer launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: WhackTheSerialKiller.exe type: none -'7650': +"7650": installDir: X-COM Terror from the Deep launch: - executable: runme.exe - description: Launch Windows9x/XP (Only) Version - executable: TFD\\Terror From the Deep_patched.exe -'765010': + executable: "TFD\\\\Terror From the Deep_patched.exe" +"765010": installDir: Strid launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: ./Strid_Client.exe + executable: "./Strid_Client.exe" type: option2 -'765020': {} -'765030': +"765020": {} +"765030": installDir: UUZ launch: - config: @@ -354789,18 +349514,18 @@ type: option1 - config: oslist: windows - ownsdlc: '1145760' + ownsdlc: "1145760" description: DLC桌面宠物 - executable: DLC\\UUZ2.exe + executable: "DLC\\\\UUZ2.exe" type: option2 -'765040': +"765040": installDir: DefenseFRobots launch: - config: oslist: windows executable: GameApplication.exe type: default -'765060': +"765060": installDir: pixelBOT EXTREME! launch: - config: @@ -354809,53 +349534,53 @@ type: none - config: oslist: macos - executable: pixelBOT EXTREME!.app\\Contents\\MacOS\\pixelBOT EXTREME! + executable: "pixelBOT EXTREME!.app\\\\Contents\\\\MacOS\\\\pixelBOT EXTREME!" type: none - config: oslist: linux executable: pixelBOT EXTREME!.x86_64 type: none -'765100': +"765100": installDir: Labirinto launch: - config: oslist: windows executable: labirinto.exe type: default -'765140': +"765140": installDir: SUB launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SUB.exe type: default -'765160': +"765160": installDir: Weable 2 launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: win64\\weable.exe + executable: "win64\\\\weable.exe" type: default -'765170': +"765170": installDir: CRAZY BIGHEADS launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: BigHeads.exe type: none -'765180': +"765180": installDir: SCP-087 Recovered document launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SCP087.exe type: default -'765200': {} -'765210': +"765200": {} +"765210": installDir: Your Royal Gayness launch: - config: @@ -354870,43 +349595,43 @@ oslist: linux executable: YourRoyalGayness.sh type: none -'765230': +"765230": installDir: Unrect launch: - config: oslist: windows executable: unrect.exe type: none -'765240': +"765240": installDir: Daydream launch: - config: oslist: windows executable: Daydream.exe type: default -'765250': +"765250": installDir: Mind the Vikings launch: - config: oslist: windows executable: MindTheVikings.exe type: none -'765260': +"765260": installDir: Overhead launch: - executable: Overhead.exe type: default -'765290': +"765290": installDir: AlienFoodFrenzy launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch Steam VR App executable: AlienFoodFrenzy.exe type: vr -'765300': {} -'765320': +"765300": {} +"765320": installDir: Planetarium 2 - Zen Odyssey launch: - config: @@ -354914,14 +349639,14 @@ description: Launch executable: Planetarium 2.exe type: default -'765350': +"765350": installDir: QuirkyCrook launch: - config: oslist: windows executable: QuirkyCrook_03_21_2018_D.exe type: default -'765360': +"765360": installDir: ClumsyKnights launch: - config: @@ -354932,75 +349657,71 @@ oslist: macos executable: ClumsyKnightR.app type: default -'765370': +"765370": installDir: Smash The Rebels launch: - config: oslist: windows executable: SmashTheRebels.exe type: default -'765380': +"765380": installDir: Internal Light VR launch: - config: oslist: windows executable: InternaL_Light_V1.exe type: vr -'765390': +"765390": installDir: The Darkness launch: - config: oslist: windows executable: The Darkness.exe type: none -'765400': +"765400": installDir: Christmas Tale - Visual Novel launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" executable: nw.exe type: none -'765410': +"765410": installDir: Bean Battles launch: - config: oslist: windows executable: BeanBattles.exe type: none -'765450': +"765450": installDir: Tank Brawl 2 launch: - description: Dx12 (Default) - description_loc: - english: Dx12 (Default) executable: Arm.exe type: none - - arguments: '-dx11' + - arguments: "-dx11" config: oslist: windows description: Dx11 (Windows 7/8.1) - description_loc: - english: Dx11 (Windows 7/8.1) executable: Arm.exe type: none -'765460': +"765460": installDir: Atoms launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Atoms.exe type: vr - config: - osarch: '64' + osarch: "64" oslist: windows executable: Atoms.exe type: default -'765470': +"765470": installDir: The Great Fantasy Struggle launch: - executable: FantasyStruggle.exe type: none -'765490': +"765490": installDir: Spectrum Break launch: - config: @@ -355011,39 +349732,39 @@ oslist: macos executable: SpectrumBreak.app type: default -'765510': {} -'765520': +"765510": {} +"765520": installDir: Billy launch: - config: oslist: windows executable: Billy.exe type: default -'765530': +"765530": installDir: FallDown launch: - config: oslist: windows executable: FallDown.exe type: default -'765560': +"765560": installDir: Pro Strategy Football 2018 launch: - config: oslist: windows executable: psf2018.exe type: default -'765570': +"765570": installDir: Orcz Evolve launch: - config: oslist: windows executable: VrDemo.exe type: vr -'765590': +"765590": installDir: Co-op SNEK Online launch: - - arguments: '--disable-direct-composition' + - arguments: "--disable-direct-composition" config: oslist: windows executable: nw.exe @@ -355056,77 +349777,77 @@ oslist: linux executable: co-opSNEKOnline type: none -'765610': +"765610": installDir: Hex-Up launch: - config: oslist: windows executable: Hex-Up/Hex-Up.exe type: default -'765620': +"765620": installDir: Last Hope launch: - config: oslist: windows executable: Last Hope.exe type: default -'765630': +"765630": installDir: The Dead Cloud Forest launch: - config: oslist: windows executable: The Dead Cloud Forest.exe type: none -'765640': +"765640": installDir: Change launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Change.exe type: default nameLocalized: sc_schinese: 改变 schinese: Change / 改变 -'765650': +"765650": installDir: TSUKUMOHIME launch: - config: oslist: windows executable: TSUKUMOHIME.exe type: none -'765690': +"765690": installDir: DarkStrokes2 launch: - config: oslist: windows executable: DarkStrokesTheLegendOfTheSnowKingdomCE.exe type: default -'765700': {} -'765710': +"765700": {} +"765710": installDir: Light Bearers launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: LightBearers.exe type: default -'765730': +"765730": installDir: Wand Wars VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: WandWarsCore.exe type: vr -'765770': +"765770": installDir: ForestLegends launch: - config: oslist: windows executable: ForestLegends.exe type: default -'765780': +"765780": installDir: Little Smart Planet launch: - config: @@ -355135,16 +349856,16 @@ type: none - config: oslist: macos - executable: lsp.app\\Contents\\MacOS\\lsp + executable: "lsp.app\\\\Contents\\\\MacOS\\\\lsp" type: none -'765790': +"765790": installDir: LegendofLongNight launch: - config: oslist: windows executable: Legend of Long Night.exe type: none -'765800': +"765800": installDir: AgentsBiohunter launch: - config: @@ -355155,7 +349876,7 @@ oslist: macos executable: Dist.app type: default -'765810': +"765810": installDir: Mars Horizon launch: - config: @@ -355166,37 +349887,37 @@ oslist: macos executable: Mars Horizon.app type: default -'765820': +"765820": installDir: Castle Adventure launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: CastleAdventure.exe type: default -'765840': +"765840": installDir: Leisure Suit Larry 2 Looking For Love (In Several Wrong Places) launch: - config: oslist: windows executable: run.bat type: default -'765850': +"765850": installDir: Leisure Suit Larry 3 Passionate Patti in Pursuit of the Pulsating Pectorals launch: - config: oslist: windows executable: run.bat type: none -'765860': +"765860": installDir: Larry Suit Larry 5 Passionate Patti Does a Little Undercover Work launch: - config: oslist: windows executable: run.bat type: default -'765870': - installDir: Leisure Suit Larry - Wet Dreams Don't Dry +"765870": + installDir: "Leisure Suit Larry - Wet Dreams Don't Dry" launch: - config: oslist: windows @@ -355204,52 +349925,52 @@ type: default - config: oslist: macos - executable: larry.app\\Contents\\MacOS\\larry + executable: "larry.app\\\\Contents\\\\MacOS\\\\larry" type: default -'765880': +"765880": installDir: The Occupation launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TheOccupation.exe type: none -'765890': +"765890": installDir: Larry7 launch: - config: oslist: windows executable: run.bat type: default -'765900': +"765900": installDir: Leisure Suit Larry - Magna Cum Laude Uncut and Uncensored launch: - config: oslist: windows executable: Larry.exe type: default -'765910': +"765910": installDir: Leisure Suit Larry 6 - Shape Up Or Slip Out launch: - config: oslist: windows executable: run.bat type: default -'765940': +"765940": installDir: SOK launch: - executable: SOK.exe type: none -'765950': +"765950": installDir: Project Glitch launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Project Glitch.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: Project Glitch.exe type: default @@ -355258,21 +349979,21 @@ executable: Project Glitch.app/Contents/MacOS/Project Glitch type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Project Glitch.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Project Glitch.x86 type: default -'765990': {} -'7660': +"765990": {} +"7660": installDir: XCom Apocalypse launch: - executable: dosbox.exe -'766000': +"766000": installDir: Kensho launch: - config: @@ -355287,28 +350008,28 @@ oslist: linux executable: Kensho type: default -'766010': +"766010": installDir: Slime-san Sheeples Sequel launch: - config: oslist: macos - executable: Slime-san Sheeples Sequel.app\\Contents\\MacOS\\Slime-san Sheeples Sequel + executable: "Slime-san Sheeples Sequel.app\\\\Contents\\\\MacOS\\\\Slime-san Sheeples Sequel" type: none - config: oslist: windows executable: Slime-san Sheeples Sequel.exe type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: Slime-san Sheeples Sequel.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: Slime-san Sheeples Sequel.x86_64 type: none -'766040': +"766040": installDir: Gloom launch: - config: @@ -355319,21 +350040,21 @@ oslist: macos executable: Gloom.app type: default -'766060': {} -'766070': +"766060": {} +"766070": installDir: Apperception launch: - executable: Apperception.exe type: vr -'766090': +"766090": installDir: We Walked In Darkness launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Darkness.exe type: default -'766150': +"766150": installDir: The Tension launch: - config: @@ -355348,15 +350069,15 @@ oslist: macos executable: mAC.app type: none -'766210': +"766210": installDir: Wargs launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Wargs.exe type: none -'766250': +"766250": installDir: Kaz Ball launch: - config: @@ -355364,17 +350085,17 @@ executable: Kaz Ball.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Kaz Ball.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Kaz Ball.x86_64 type: default -'766260': {} -'766280': +"766260": {} +"766280": installDir: A Light in the Dark launch: - config: @@ -355383,35 +350104,35 @@ type: none - config: oslist: macos - executable: A Light in the Dark.app\\Contents\\MacOS\\A Light in the Dark + executable: "A Light in the Dark.app\\\\Contents\\\\MacOS\\\\A Light in the Dark" type: none nameLocalized: japanese: 夜光 schinese: 夜光 tchinese: 夜光 -'766320': - installDir: The Mage's Tale +"766320": + installDir: "The Mage's Tale" launch: - config: oslist: windows executable: MagesTale.exe type: vr -'766360': +"766360": installDir: conferenceinvr launch: - config: oslist: windows executable: conferenceinvr.exe type: vr -'766370': +"766370": installDir: Dying Light Bad Blood launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: BadBloodGameLauncher.exe type: default -'766420': +"766420": installDir: Neckbeards Silly Squadron launch: - config: @@ -355422,19 +350143,19 @@ oslist: linux executable: Invaders type: default -'766430': +"766430": installDir: Dolla World launch: - executable: dollaworld.exe type: none -'766460': +"766460": installDir: Trireme Commander launch: - config: oslist: windows executable: TriremeCommander.exe type: default -'766500': +"766500": installDir: Dead Mist launch: - config: @@ -355445,39 +350166,39 @@ oslist: windows executable: DeadMist.exe type: none -'766530': {} -'766540': {} -'766560': +"766530": {} +"766540": {} +"766560": installDir: TheFruitlessFlower launch: - config: oslist: windows executable: Game.exe type: default -'766570': +"766570": installDir: RussianFishing4 launch: - - arguments: '-steam' + - arguments: "-steam" config: - osarch: '64' + osarch: "64" oslist: windows executable: rf4_x64.exe type: none -'766600': +"766600": installDir: Amazing Human launch: - config: oslist: windows executable: Amazing Human.exe type: default -'766620': +"766620": installDir: GambitHeart launch: - config: oslist: windows executable: GambitHeart.exe type: default -'766630': +"766630": installDir: Dust and Salt launch: - config: @@ -355486,44 +350207,44 @@ type: none - config: oslist: macos - executable: Dust and Salt.app\\Contents\\MacOS\\Dust and Salt + executable: "Dust and Salt.app\\\\Contents\\\\MacOS\\\\Dust and Salt" type: none -'766650': +"766650": installDir: DynamixVR launch: - config: oslist: windows executable: Dynamix_Drill_1.1.exe type: vr -'766680': +"766680": installDir: PunchLine launch: - config: oslist: windows executable: MAGESgamelauncher.exe type: default -'766700': +"766700": installDir: PearsAndGrayWitch launch: - config: oslist: windows executable: PearsAndGrayWitch.exe type: default -'766730': +"766730": installDir: Gachimuchi Reloaded launch: - config: oslist: windows executable: Gachimuchi_Reloaded.exe type: default -'766740': +"766740": installDir: Maze Of Adventures launch: - config: oslist: windows executable: Maze Of Adventures.exe type: default -'766780': +"766780": installDir: STAX launch: - config: @@ -355534,26 +350255,26 @@ oslist: macos executable: STAX_mac.app type: none -'766800': {} -'766810': {} -'766850': +"766800": {} +"766810": {} +"766850": installDir: Applications launch: - config: oslist: macos - description: It's all in your head - executable: Vaporwave Simulator.app\\Contents\\MacOS\\vaposimmac + description: "It's all in your head" + executable: "Vaporwave Simulator.app\\\\Contents\\\\MacOS\\\\vaposimmac" type: default - config: oslist: windows - description: It's all in your head + description: "It's all in your head" executable: Vaporwave Simulator.exe type: none -'766910': +"766910": installDir: E-Ball launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: EBall.exe type: none @@ -355561,16 +350282,16 @@ oslist: linux executable: EBall.sh type: none -'766920': {} -'766930': {} -'766940': +"766920": {} +"766930": {} +"766940": installDir: Snares of Ruin launch: - config: oslist: windows executable: SnaresOfRuin.exe type: none -'766970': +"766970": installDir: John Dungeon launch: - config: @@ -355578,127 +350299,127 @@ description: John Dungeon executable: johndungeon.exe type: default -'766990': {} -'7670': +"766990": {} +"7670": installDir: Bioshock launch: - - executable: Builds\\Release\\bioshock.exe - workingdir: Builds\\Release -'767000': {} -'767010': + - executable: "Builds\\\\Release\\\\bioshock.exe" + workingdir: "Builds\\\\Release" +"767000": {} +"767010": installDir: Agent X Equation Rider launch: - executable: Agent X.exe type: none -'767020': +"767020": installDir: Gun Club launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Gun_Club.exe type: default -'767030': +"767030": installDir: Trivia Vault Technology Trivia Deluxe launch: - config: oslist: windows executable: Trivia Vault Deluxe Computer Technology.exe type: default -'767050': +"767050": installDir: Last Day of FEAR launch: - config: oslist: windows executable: LDF.exe type: config -'767100': +"767100": installDir: Super Poop launch: - config: oslist: windows executable: Super Poop.exe type: default -'767110': +"767110": installDir: Anime Girls VR launch: - - arguments: '-windowed' + - arguments: "-windowed" config: oslist: windows executable: Anime Girls VR.exe type: vr -'767130': +"767130": installDir: Virtual Reality Girls 2 launch: - - arguments: '-windowed' + - arguments: "-windowed" config: oslist: windows executable: Virtual Reality Girls 2.exe type: vr -'767170': +"767170": installDir: Dolphins-Cyborgs and open space launch: - executable: Dolphins-Cyborgs and open space.exe type: none -'767180': {} -'767200': +"767180": {} +"767200": installDir: Chinese Ink Painting Puzzle & Creator launch: - config: oslist: windows executable: CIPPC.exe type: none -'767300': +"767300": installDir: War of Conquest launch: - config: oslist: windows executable: War of Conquest.exe type: none -'767310': +"767310": installDir: Brutal Inventions launch: - config: oslist: windows executable: 4/Brutal_Inventions.exe type: default -'767330': +"767330": installDir: Indoor Rock Climbing VR launch: - executable: indoor_rockclimbing_vr.exe type: vr - executable: indoor_rockclimbing_vr.exe type: othervr -'767340': +"767340": installDir: Minion Forest launch: - config: oslist: windows executable: forest.exe type: default -'767360': +"767360": installDir: Monster League launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Monster_League.exe type: default -'767390': +"767390": installDir: Dakar 18 launch: - config: oslist: windows executable: Dakar18Game.exe type: default -'767400': +"767400": installDir: 弹炸人2222 launch: - config: oslist: windows executable: Bomber2222.exe type: default -'767410': +"767410": installDir: MightyIronBall launch: - config: @@ -355709,27 +350430,27 @@ oslist: windows executable: mib.exe type: default -'767420': +"767420": installDir: Wauies launch: - config: oslist: windows executable: Wauies.exe type: none -'767440': {} -'767460': +"767440": {} +"767460": installDir: Techotron Defense launch: - config: oslist: windows executable: Technotron Defense.exe type: default -'767470': {} -'767490': +"767470": {} +"767490": installDir: Last Wood launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: LastWood.exe type: default @@ -355738,7 +350459,7 @@ executable: LastWood.app/Contents/MacOS/LastWood type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: LastWood.exe type: default @@ -355746,7 +350467,7 @@ sc_schinese: 最后的木头 schinese: 最后的木头 tchinese: 最後的木頭 -'767500': +"767500": installDir: OIY2 launch: - config: @@ -355758,14 +350479,14 @@ oslist: windows executable: OUTCRY.exe type: none -'767550': +"767550": installDir: TopShot Darkness launch: - config: oslist: windows executable: TopShotDarkness.exe type: default -'767560': +"767560": installDir: War Robots launch: - config: @@ -355777,7 +350498,7 @@ oslist: macos executable: WarRobots.app/Contents/MacOS/WarRobots type: default -'767590': +"767590": installDir: Raining blocks launch: - config: @@ -355790,70 +350511,70 @@ type: none - config: oslist: macos - executable: Contents\\MacOS\\RainingBlocks + executable: "Contents\\\\MacOS\\\\RainingBlocks" type: none -'767600': {} -'767610': {} -'767660': {} -'767680': +"767600": {} +"767610": {} +"767660": {} +"767680": installDir: Domino Effect launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Config.bat type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: Config.exe type: config -'767690': +"767690": installDir: Heart of the Emberstone - Coliseum launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Coliseum.exe type: vr -'767840': +"767840": installDir: Meteorite Defense Command launch: - config: oslist: windows executable: Meteorite Defense Command.exe type: default -'767860': +"767860": installDir: Gilded launch: - config: oslist: windows executable: Game.exe type: default -'767870': +"767870": installDir: Dark Noid launch: - config: oslist: windows executable: Dark Noid.exe type: default -'767910': +"767910": installDir: Strange Night 2 launch: - config: oslist: windows executable: strangenight2.exe type: default -'767930': +"767930": installDir: Assault Spy launch: - config: oslist: windows - executable: WindowsNoEditor\\ASSAULT_SPY.exe + executable: "WindowsNoEditor\\\\ASSAULT_SPY.exe" type: default nameLocalized: japanese: アサルトスパイ -'767960': +"767960": installDir: Math RTS launch: - config: @@ -355864,36 +350585,36 @@ oslist: macos executable: mathRTS.app type: none -'767970': +"767970": installDir: Inhumanus launch: - config: oslist: windows executable: Inhumanus.exe type: vr -'767980': +"767980": installDir: Multi-Quest launch: - config: oslist: windows executable: Multi-Quest.exe type: default -'768020': +"768020": installDir: Theship launch: - config: oslist: windows executable: ship.exe type: default -'768060': +"768060": installDir: The Warrior Of Treasures launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Medieval.exe type: default -'768090': +"768090": installDir: Amatarasu Riddle Star launch: - config: @@ -355908,52 +350629,52 @@ oslist: linux executable: AmatarasuRiddleStar.sh type: default -'768110': +"768110": installDir: DawnCity launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: DawnCity.exe type: vr -'768130': +"768130": installDir: Aiso launch: - arguments: b config: - osarch: '32' + osarch: "32" oslist: windows - executable: 32\\Aiso.exe + executable: "32\\\\Aiso.exe" type: default - arguments: b config: - osarch: '64' + osarch: "64" oslist: windows - executable: 64\\Aiso.exe + executable: "64\\\\Aiso.exe" type: default -'768170': +"768170": installDir: MedievalRealEstate launch: - config: oslist: windows executable: medieval_real_estate.exe type: default -'768180': +"768180": installDir: Truck Driver launch: - config: oslist: windows executable: TruckDriver.exe type: default -'768200': +"768200": installDir: SMALLAND launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SMALLAND.exe type: default -'768270': +"768270": installDir: Lisssn launch: - config: @@ -355961,7 +350682,7 @@ description: Lisssn executable: Lisssn.exe type: default -'768290': +"768290": installDir: Snow White Solitaire. Charmed Kingdom launch: - config: @@ -355972,28 +350693,28 @@ oslist: macos executable: Snow White Solitaire. Charmed Kingdom.app type: default -'768300': +"768300": installDir: Zhulik_exe launch: - config: oslist: windows executable: Zhulik.exe type: none -'768310': +"768310": installDir: Er-Spectro launch: - executable: Er-Spectro.exe type: none -'768370': +"768370": installDir: New Dawn launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: NewDawn.exe type: default -'768430': {} -'768450': +"768430": {} +"768450": installDir: NUTS launch: - config: @@ -356004,88 +350725,88 @@ oslist: macos executable: nuts.app type: default -'768460': +"768460": installDir: Areia launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Areia.exe type: default -'768470': +"768470": installDir: Battlemage VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Battlemage VR.exe type: vr -'768480': +"768480": installDir: Chamber of the Sci-Mutant Priestess launch: - config: oslist: windows executable: dosbox.exe type: none -'768510': {} -'768520': +"768510": {} +"768520": installDir: The Red Solstice 2 Survivors launch: - - arguments: '-Installed' + - arguments: "-Installed" config: - osarch: '64' + osarch: "64" oslist: windows executable: survivors.exe type: default nameLocalized: - koreana: 'Red Solstice 2: Survivors - 레드 솔스티스 2: 생존자들' - schinese: 'Red Solstice 2: Survivors - 红至日2:幸存者' - tchinese: 'Red Solstice 2: Survivors - 紅色至日2:倖存者' -'768540': + koreana: "Red Solstice 2: Survivors - 레드 솔스티스 2: 생존자들" + schinese: "Red Solstice 2: Survivors - 红至日2:幸存者" + tchinese: "Red Solstice 2: Survivors - 紅色至日2:倖存者" +"768540": installDir: Dinosaurs Prehistoric Survivors launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: DPS_Launcher.exe type: default -'768550': +"768550": installDir: Zanshin launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Zanshin.exe type: vr -'768570': +"768570": installDir: Uncanny Islands launch: - config: oslist: windows executable: Uncanny Islands.exe type: default -'768580': +"768580": installDir: Witchball launch: - config: oslist: windows executable: WITCHBALL.exe type: default -'768590': +"768590": installDir: BOX align launch: - config: oslist: windows executable: BOX align.exe type: default -'768630': +"768630": installDir: Zyxia Neon Termination launch: - config: oslist: windows executable: ZyxiaNeonTermination.exe type: default -'768640': +"768640": installDir: RedHotRicochet launch: - config: @@ -356096,29 +350817,29 @@ oslist: macos executable: RedHotRicochet.app type: default -'768750': +"768750": installDir: MonteCrypto launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: CryptoChallenge.exe type: default -'768770': +"768770": installDir: IndustrialVR - Hoover Dam launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: HooverDam.exe type: vr -'768790': {} -'768800': +"768790": {} +"768800": installDir: Race launch: - executable: Race.exe type: none -'768820': +"768820": installDir: Free Yourself launch: - config: @@ -356129,111 +350850,111 @@ oslist: macos executable: FreeYourself.app type: none -'768840': +"768840": installDir: FIRST STEAM GAME VHS - COLOR RETRO RACER MILES CHALLENGE launch: - config: oslist: windows - description: 'COLOR RETRO RACER : MILES CHALLENGE' + description: "COLOR RETRO RACER : MILES CHALLENGE" executable: win32/COLOR RETRO RACER - MILES CHALLENGE.exe type: default - config: oslist: windows - ownsdlc: '768850' - description: 'COLOR RETRO RACER : ENDURO MODE *Checkpoint Unlock*' + ownsdlc: "768850" + description: "COLOR RETRO RACER : ENDURO MODE *Checkpoint Unlock*" executable: win32/COLOR RETRO RACER - ENDURO MODE - Checkpoint Unlock.exe type: none - config: oslist: windows - ownsdlc: '768851' - description: 'COLOR RETRO RACER : ENDURO MODE *2 Millions of Miles*' + ownsdlc: "768851" + description: "COLOR RETRO RACER : ENDURO MODE *2 Millions of Miles*" executable: win32/COLOR RETRO RACER - ENDURO MODE - 2 Millions of Miles.exe type: none - config: oslist: windows - ownsdlc: '768852' - description: 'COLOR RETRO RACER : ENDURO MODE *5 Millions of Miles*' + ownsdlc: "768852" + description: "COLOR RETRO RACER : ENDURO MODE *5 Millions of Miles*" executable: win32/COLOR RETRO RACER - ENDURO MODE - 5 Millions of Miles.exe type: none - config: oslist: windows - ownsdlc: '768853' - description: 'COLOR RETRO RACER : RALLY MODE *5 Lifes*' + ownsdlc: "768853" + description: "COLOR RETRO RACER : RALLY MODE *5 Lifes*" executable: win32/COLOR RETRO RACER - RALLY MODE - 5 Lifes.exe type: none - config: oslist: windows - ownsdlc: '768854' - description: 'COLOR RETRO RACER : RALLY MODE *10 Lifes*' + ownsdlc: "768854" + description: "COLOR RETRO RACER : RALLY MODE *10 Lifes*" executable: win32/COLOR RETRO RACER - RALLY MODE - 10 Lifes.exe type: none - config: oslist: windows - ownsdlc: '768855' - description: 'COLOR RETRO RACER : TRIALS MODE *3 Lifes*' + ownsdlc: "768855" + description: "COLOR RETRO RACER : TRIALS MODE *3 Lifes*" executable: win32/COLOR RETRO RACER - TRIALS MODE - 3 Lifes.exe type: none - config: oslist: windows - ownsdlc: '768856' - description: 'COLOR RETRO RACER : TRIALS MODE *6 Lifes*' + ownsdlc: "768856" + description: "COLOR RETRO RACER : TRIALS MODE *6 Lifes*" executable: win32/COLOR RETRO RACER - TRIALS MODE - 6 Lifes.exe type: none -'768880': +"768880": installDir: Beach Rules launch: - config: oslist: windows executable: Beach Rules.exe type: default -'768990': +"768990": installDir: X-Fire launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: XenomorphDungen.exe type: vr -'769020': +"769020": installDir: Ye Fenny - Revenge of the Evil Good Shepherd launch: - config: oslist: windows executable: Ye Fenny.exe type: default -'769030': +"769030": installDir: Twine3D launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Twine3D.exe type: default -'769060': - installDir: Dab on 'em Haterz +"769060": + installDir: "Dab on 'em Haterz" launch: - config: - osarch: '32' + osarch: "32" oslist: windows - executable: Dab on 'em Haterz.exe + executable: "Dab on 'em Haterz.exe" type: default -'769080': +"769080": installDir: Hexagons launch: - config: oslist: windows executable: FinalBattle.exe type: default -'769100': {} -'769110': +"769100": {} +"769110": installDir: Barbarian Souls launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: BarbarianSouls.exe type: default -'769150': +"769150": installDir: Casino Slot Machines launch: - config: @@ -356243,25 +350964,25 @@ type: option1 - config: oslist: windows - description: '''''DLC'''' The Golden Shrine Casino' + description: "''DLC'' The Golden Shrine Casino" executable: The Golden Shrine Casino.exe type: option1 - config: oslist: windows - description: '''''DLC'''' Arcade Casino' + description: "''DLC'' Arcade Casino" executable: Arcade Casino.exe type: option1 - config: oslist: windows - description: '''''DLC'''' The Supreme King' + description: "''DLC'' The Supreme King" executable: The Supreme King.exe type: option1 - config: oslist: windows - description: '''''DLC'''' The Spring' + description: "''DLC'' The Spring" executable: The Spring.exe type: option1 -'769160': +"769160": installDir: Sol Galaxy Defender launch: - config: @@ -356270,18 +350991,18 @@ type: default - config: oslist: windows - executable: SGD_WIN_FUL_Folder\\SGD_Win.exe + executable: "SGD_WIN_FUL_Folder\\\\SGD_Win.exe" type: none -'769170': +"769170": installDir: Flinch launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: flinch.exe type: vr -'769190': {} -'769200': +"769190": {} +"769200": installDir: Clickandfight launch: - config: @@ -356293,73 +351014,73 @@ oslist: linux executable: Click&Fight type: default -'769210': {} -'769220': +"769210": {} +"769220": installDir: TRAFICO launch: - config: oslist: windows executable: TRAFICO.exe type: default -'769230': +"769230": installDir: No More Pop Music - Annihilation launch: - config: oslist: windows executable: NoMorePopMusic.exe type: none -'769280': {} -'769320': +"769280": {} +"769320": installDir: Invasher launch: - config: oslist: windows executable: Invasher.exe type: none -'769330': {} -'769340': +"769330": {} +"769340": installDir: ZombySoldier launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Zombysoldier.exe type: default -'769360': +"769360": installDir: Harts launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Harts.exe type: default -'769370': +"769370": installDir: Dragon Boar and Lady Rabbit launch: - executable: dragonboarandladyrabbit.exe type: none -'769390': +"769390": installDir: Xmas Zombie Rampage 2 launch: - config: oslist: windows executable: Xmas Zombie Rampage 2.exe type: default -'769410': +"769410": installDir: Electromaze Defense launch: - config: oslist: windows executable: ElectromazeDefense.exe type: default -'769420': +"769420": installDir: JuVentures launch: - config: oslist: windows executable: JuVentures.exe type: default -'769440': +"769440": installDir: Beach Restaurant launch: - config: @@ -356367,36 +351088,36 @@ executable: Beach Restaurant.exe type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: Beach Restaurant.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: Beach Restaurant.x86_64 type: none - config: oslist: macos - executable: MacOs\\MacOs.app\\Contents\\MacOS + executable: "MacOs\\\\MacOs.app\\\\Contents\\\\MacOS" type: none -'769480': {} -'769520': +"769480": {} +"769520": installDir: Abyss Crew launch: - config: oslist: windows executable: AbyssCrew.exe type: default -'769540': +"769540": installDir: Beat Miner launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: beatminer.exe type: vr -'769550': +"769550": installDir: East 73 launch: - config: @@ -356412,49 +351133,49 @@ executable: lib/linux-x86_64/renpy type: default nameLocalized: - english: 'East 73: Magenta Fairytale' + english: "East 73: Magenta Fairytale" schinese: 东73:洋红色童话 tchinese: 東73:洋紅色童話 -'769560': +"769560": installDir: Night of the Full Moon launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Night of the Full Moon.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows description: 32位系统 - executable: x86\\Night of the Full Moon.exe + executable: "x86\\\\Night of the Full Moon.exe" type: default nameLocalized: japanese: 満月の夜 koreana: 나이트오브풀문 schinese: 月圆之夜 tchinese: 月圓之夜 -'769580': +"769580": installDir: Kingdom of Blades launch: - config: oslist: windows - executable: KingdomofBlades\\KingdomofBlades.exe + executable: "KingdomofBlades\\\\KingdomofBlades.exe" type: vr -'769590': +"769590": installDir: Play Cube with Uncle Billy launch: - config: oslist: windows executable: Play Cube with Uncle Billy.exe type: default -'769600': +"769600": installDir: Rheksetor launch: - config: oslist: windows executable: WindowsNoEditor/Rheksetor_V_0_7_10.exe -'769630': +"769630": installDir: RSLA-Triangle launch: - config: @@ -356465,38 +351186,38 @@ oslist: windows executable: RSLA.exe type: none -'769640': +"769640": installDir: Lordian karma launch: - config: oslist: windows executable: ProjectV.exe type: vr -'769680': +"769680": installDir: Cupid Bistro 2 launch: - config: oslist: windows executable: BC2.exe type: default - - arguments: '-w' + - arguments: "-w" config: oslist: windows description: Windows Mode executable: BC2.exe type: default -'769690': +"769690": installDir: Reading Simulator launch: - config: oslist: windows executable: Game.exe type: default -'769720': +"769720": installDir: StormIsland launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: MagicGame.exe type: default @@ -356504,15 +351225,15 @@ schinese: 风暴岛 spanish: ISLA DEL ENGAñO tchinese: 风暴岛 -'769730': +"769730": installDir: Awkward launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: AKW.exe type: default -'769840': +"769840": installDir: Muddledash launch: - config: @@ -356523,12 +351244,12 @@ oslist: macos executable: Muddledash.app type: none -'769910': +"769910": installDir: Flipped On launch: - config: oslist: windows - description: 'Classic, The default base game' + description: "Classic, The default base game" executable: FlippedOn.exe type: option1 - config: @@ -356540,7 +351261,7 @@ description: Halloween Update(NEW) executable: FlippedOn EXTREAM.exe type: option2 -'769920': +"769920": installDir: Odysseus Kosmos and his Robot Quest - Episode 1 launch: - config: @@ -356548,38 +351269,38 @@ executable: Odysseus_S1E1_standalone.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Odysseus_S1E1.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Odysseus_S1E1.x86_64 type: none -'769930': +"769930": installDir: DwarVRs launch: - config: oslist: windows executable: DwarVRs.exe type: vr -'769940': +"769940": installDir: Fantasy Defense launch: - config: oslist: windows executable: Fantasy Defense.exe type: default -'769950': +"769950": installDir: Panzer Strategy launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: PanzerUE.exe type: none -'769970': +"769970": installDir: Bad Dream Fever launch: - config: @@ -356590,7 +351311,7 @@ oslist: macos executable: Bad Dream Fever.app type: none -'769980': +"769980": installDir: Lock Her Up The Trump Supremacy launch: - config: @@ -356601,7 +351322,7 @@ oslist: macos executable: Mac.app type: default -'770010': +"770010": installDir: Bacon Roll launch: - config: @@ -356612,7 +351333,7 @@ oslist: windows executable: BaconRoll.exe type: othervr -'770020': +"770020": installDir: Royal Tumble launch: - config: @@ -356623,16 +351344,16 @@ oslist: macos executable: royal_tumble.app type: none -'770050': +"770050": installDir: Castle Clamber launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: clamber.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: run.sh type: default @@ -356640,7 +351361,7 @@ oslist: macos executable: clamber.app/Contents/MacOS/clamber type: default -'770070': +"770070": installDir: Swords and Sandals 5 Redux launch: - config: @@ -356651,23 +351372,23 @@ oslist: macos executable: swords_and_sandals_5.app/Contents/MacOS/Swords and Sandals 5 Redux type: default -'770080': {} -'770090': +"770080": {} +"770090": installDir: La Camila A VR Experience launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Vive - executable: vive\\CamilaV7\\Binaries\\Win64\\CamilaV7-Win64-Shipping.exe + executable: "vive\\\\CamilaV7\\\\Binaries\\\\Win64\\\\CamilaV7-Win64-Shipping.exe" type: openvroverlay - config: - osarch: '64' + osarch: "64" oslist: windows description: Oculus - executable: oculus\\CamilaV7\\Binaries\\Win64\\CamilaV7-Win64-Shipping.exe + executable: "oculus\\\\CamilaV7\\\\Binaries\\\\Win64\\\\CamilaV7-Win64-Shipping.exe" type: othervr -'770100': +"770100": installDir: One Deck Dungeon launch: - config: @@ -356679,23 +351400,23 @@ executable: OneDeckDungeon.app type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: OneDeckDungeon.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: OneDeckDungeon.x86_64 type: none -'770110': +"770110": installDir: Twilight Path launch: - config: oslist: windows executable: TwilightPath_Steam.exe type: vr -'770120': +"770120": installDir: Yoltrund launch: - config: @@ -356703,12 +351424,12 @@ executable: Yoltrund.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Yoltrund.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Yoltrund.x86_64 type: default @@ -356716,16 +351437,16 @@ oslist: macos executable: Yoltrund.app type: default -'770160': +"770160": installDir: Seishin launch: - executable: Seishin.exe type: vr -'770200': +"770200": installDir: Squally launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: Launcher.exe type: default @@ -356734,24 +351455,24 @@ executable: Squally.app/Contents/MacOS/Launcher type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: LauncherLauncher type: default -'770240': +"770240": installDir: PRO EVOLUTION SOCCER 2019 launch: - description: Launch executable: PES2019.exe type: none -'770270': +"770270": installDir: SRVRG launch: - config: oslist: windows executable: SuperRobot.exe type: vr -'770320': +"770320": installDir: Zazmo Arcade Pack launch: - config: @@ -356759,24 +351480,24 @@ description: Launch executable: Zazmo_Arcade_Pack.exe type: default -'770350': +"770350": installDir: PD launch: - config: oslist: windows executable: gonki.exe type: default -'770360': +"770360": installDir: Lowpoly Hero launch: - config: oslist: windows - executable: LowpolyHero_Shipped\\WindowsNoEditor\\LowpolyHero.exe + executable: "LowpolyHero_Shipped\\\\WindowsNoEditor\\\\LowpolyHero.exe" type: none -'770370': +"770370": installDir: Adventures of Dragon launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows description: Launch @@ -356786,7 +351507,7 @@ oslist: macos executable: Game.app type: default -'770380': +"770380": installDir: Army of Tentacles 1 BGE launch: - config: @@ -356795,13 +351516,13 @@ type: default - config: oslist: macos - executable: AotBlackGOATEdition.app\\Contents\\MacOS\\AotBlackGOATEdition + executable: "AotBlackGOATEdition.app\\\\Contents\\\\MacOS\\\\AotBlackGOATEdition" type: default - config: oslist: linux executable: AotBlackGOATEdition.sh type: default -'770390': +"770390": installDir: Draugen launch: - config: @@ -356809,7 +351530,7 @@ description: Launch executable: Draugen.exe type: none -'770400': +"770400": installDir: Fairy of the treasures launch: - config: @@ -356824,7 +351545,7 @@ oslist: macos executable: fairybetatest.app type: none -'770410': +"770410": installDir: Path to Mnemosyne launch: - config: @@ -356836,18 +351557,18 @@ executable: PathToMnemosyne.app/Contents/MacOS/PathToMnemosyne type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: PathToMnemosyne.x86_64 type: none -'770440': +"770440": installDir: Hangover launch: - config: oslist: windows executable: Hangover.exe type: none -'770460': +"770460": installDir: The Dummy Experiment launch: - config: @@ -356858,35 +351579,35 @@ oslist: macos executable: thedummyexperiment.app type: default -'770490': +"770490": installDir: Death in the Water launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Death in the Water.exe type: default - config: oslist: macos - executable: Death in the Water.app\\Contents\\MacOS\\Death in the Water + executable: "Death in the Water.app\\\\Contents\\\\MacOS\\\\Death in the Water" type: default -'770500': +"770500": installDir: Goblin Gearshop launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: GGS.exe type: default -'770510': {} -'770520': +"770510": {} +"770520": installDir: Boomer Rampage launch: - config: oslist: windows executable: Boomer Rampage.exe type: default -'770560': +"770560": installDir: Overlook launch: - config: @@ -356898,24 +351619,24 @@ executable: Overlook.app type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: Overlook.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: Overlook.x86_64 type: none -'770570': {} -'770600': +"770570": {} +"770600": installDir: Memento of Spring launch: - config: oslist: windows executable: memento.exe type: default -'770630': +"770630": installDir: Boo! Greedy Kid launch: - config: @@ -356926,7 +351647,7 @@ - config: oslist: windows description: Level Editor - executable: ./Editor/GreedyKidEditor.exe + executable: "./Editor/GreedyKidEditor.exe" type: editor - config: oslist: macos @@ -356936,26 +351657,26 @@ oslist: linux executable: GreedyKid type: default -'770660': +"770660": installDir: Thetaball launch: - config: oslist: windows executable: ThetaBall.Win32.Application.exe type: default -'770690': {} -'770740': {} -'770770': {} -'770790': +"770690": {} +"770740": {} +"770770": {} +"770790": installDir: FormFish launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: FormFish.exe type: default -'770810': - installDir: 'Good Pizza, Great Pizza' +"770810": + installDir: "Good Pizza, Great Pizza" launch: - config: oslist: windows @@ -356965,35 +351686,35 @@ oslist: macos executable: GPGP_Mac.app type: default - - arguments: '-windowed' + - arguments: "-windowed" config: oslist: macos description: (Windowed) executable: GPGP_Mac.app type: option1 - - arguments: '-windowed' + - arguments: "-windowed" config: oslist: windows description: (Windowed) executable: PizzaBusiness.exe type: option1 nameLocalized: - arabic: '‫بيتزا جيدة, بيتزا رائعة – محاكاة لمطعم بيتزا‬' - brazilian: 'Good Pizza, Great Pizza' - french: 'Bonne Pizza, Super Pizza' - german: 'Good Pizza, Great Pizza' - italian: 'Buona Pizza, Grande Pizza' + arabic: "‫بيتزا جيدة, بيتزا رائعة – محاكاة لمطعم بيتزا‬" + brazilian: "Good Pizza, Great Pizza" + french: "Bonne Pizza, Super Pizza" + german: "Good Pizza, Great Pizza" + italian: "Buona Pizza, Grande Pizza" japanese: グッドピザ、グレートピザ - koreana: '좋은 피자, 위대한 피자' - latam: 'Buena pizza, gran pizza' - polish: 'Good Pizza, Great Pizza' - portuguese: 'Good Pizza, Great Pizza' - russian: 'Хорошая пицца, Отличная пицца' + koreana: "좋은 피자, 위대한 피자" + latam: "Buena pizza, gran pizza" + polish: "Good Pizza, Great Pizza" + portuguese: "Good Pizza, Great Pizza" + russian: "Хорошая пицца, Отличная пицца" schinese: 可口的披萨,美味的披萨 - spanish: 'Buena pizza, gran pizza' + spanish: "Buena pizza, gran pizza" tchinese: 可口的披薩,美味的披薩 - turkish: 'İyi Pizza, Güzel Pizza' -'770820': + turkish: "İyi Pizza, Güzel Pizza" +"770820": installDir: Factory Hiro launch: - config: @@ -357004,79 +351725,79 @@ oslist: macos executable: Factory Hiro.app type: default -'770830': +"770830": installDir: Alien Revival launch: - config: oslist: windows executable: Lobby.exe type: default -'770850': +"770850": installDir: DUNKYPUNG launch: - config: oslist: windows executable: dunkypung.exe type: default -'770860': +"770860": installDir: Annwn launch: - config: oslist: windows executable: Annwn.exe type: default -'770870': - installDir: Queen's Tales Sins of the Past Collector's Edition +"770870": + installDir: "Queen's Tales Sins of the Past Collector's Edition" launch: - config: oslist: windows executable: QueensTales_SotP_CE.exe type: default -'770880': +"770880": installDir: Love Story The Beach Cottage launch: - config: oslist: windows executable: LoveStory_TheBeachCottage.exe type: default -'770890': - installDir: Web of Deceit Deadly Sands Collector's Edition +"770890": + installDir: "Web of Deceit Deadly Sands Collector's Edition" launch: - config: oslist: windows executable: WebOfDeceit_DeadlySands_CE.exe type: default -'770900': - installDir: Off The Record Liberty Stone Collector's Edition +"770900": + installDir: "Off The Record Liberty Stone Collector's Edition" launch: - config: oslist: windows executable: OffTheRecord_LibertyStone_CE.exe type: default -'770920': - installDir: Haunted Legends The Undertaker Collector's Edition +"770920": + installDir: "Haunted Legends The Undertaker Collector's Edition" launch: - config: oslist: windows executable: HauntedLegends_TheUndertakerCE.exe type: default -'770990': +"770990": installDir: BR9732 launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: FPS Mode executable: BR9732.exe type: default - - arguments: '-vrmode' + - arguments: "-vrmode" config: - osarch: '64' + osarch: "64" oslist: windows description: VR Mode executable: BR9732.exe type: vr -'771010': +"771010": installDir: FRContainment launch: - config: @@ -357085,21 +351806,21 @@ type: default - config: oslist: macos - executable: Containment.app\\Contents\\MacOS\\Containment + executable: "Containment.app\\\\Contents\\\\MacOS\\\\Containment" type: default - config: oslist: linux executable: Containment.x86 type: default -'771040': {} -'771060': +"771040": {} +"771060": installDir: Iron League launch: - config: oslist: windows executable: IronLeague.exe type: default -'771070': +"771070": installDir: Infinos Gaiden launch: - config: @@ -357110,7 +351831,7 @@ oslist: windows executable: KeyConfig.exe type: editor -'771100': +"771100": installDir: Talk to Saki launch: - config: @@ -357125,45 +351846,45 @@ oslist: linux executable: Saki.sh type: none -'771120': +"771120": installDir: Rotator launch: - config: oslist: windows executable: Rotator.exe type: default -'771130': +"771130": installDir: Sad City 42 launch: - config: oslist: windows executable: Sad_City_42.exe type: default -'771140': {} -'771170': {} -'771180': {} -'771190': {} -'771240': +"771140": {} +"771170": {} +"771180": {} +"771190": {} +"771240": installDir: YumeCore launch: - config: oslist: windows executable: yumecore/yumecore_ver1_3_2.exe type: default -'771250': +"771250": installDir: Doodle God Mighty Trio launch: - executable: MightyTrio_Steam.exe type: none -'771310': +"771310": installDir: WelcomeToLightfields launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: WTLF.exe type: vr -'771320': +"771320": installDir: Amazing Trivia launch: - config: @@ -357175,16 +351896,16 @@ executable: AT.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: AT.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: AT.x86_64 type: default -'771340': +"771340": installDir: Kansei launch: - config: @@ -357199,12 +351920,12 @@ oslist: linux executable: kansei.sh type: none -'771350': +"771350": installDir: Achievement Clicker 2018 launch: - executable: AchievementClicker.exe type: none -'771370': +"771370": installDir: Confederate Express launch: - config: @@ -357213,9 +351934,9 @@ type: default - config: oslist: macos - executable: ConEX.app\\Contents\\MacOS\\ConEX + executable: "ConEX.app\\\\Contents\\\\MacOS\\\\ConEX" type: default -'771380': +"771380": installDir: Yousei launch: - config: @@ -357230,46 +351951,46 @@ oslist: linux executable: yousei.sh type: default -'771400': +"771400": installDir: ESCAPE FROM VOYNA Tactical FPS survival launch: - config: oslist: windows executable: EFV.exe type: default -'771410': +"771410": installDir: You Will Never Get This Achievement launch: - config: oslist: windows executable: You Will Never Get This Achievement.exe type: default -'771420': +"771420": installDir: Primal Light launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: primal-light.exe type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: primal-light.x86_64 type: none - config: oslist: macos - executable: Primal Light.app\\Contents\\MacOS\\Primal Light + executable: "Primal Light.app\\\\Contents\\\\MacOS\\\\Primal Light" type: none -'771430': +"771430": installDir: Evolva launch: - config: oslist: windows executable: Evolva.exe type: default -'771440': {} -'771450': +"771440": {} +"771450": installDir: ERROR Human Not Found launch: - config: @@ -357280,8 +352001,8 @@ oslist: macos executable: ErrorHumanNotFound.app type: default -'771460': {} -'771470': +"771460": {} +"771470": installDir: Stage Fright launch: - config: @@ -357292,28 +352013,28 @@ oslist: macos executable: StageFrightMac.app type: none -'771500': +"771500": installDir: The Intern launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TheIntern.Exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: TheIntern.exe type: none -'771510': +"771510": installDir: Hodl The God of Crypto launch: - config: oslist: windows executable: hodl_20170908.exe type: default -'771520': {} -'771530': +"771520": {} +"771530": installDir: Take That launch: - config: @@ -357324,35 +352045,35 @@ oslist: macos executable: Take_That_Mac.app type: default -'771540': +"771540": installDir: Banshee Force launch: - config: oslist: windows executable: BansheeForce.exe type: vr -'771570': +"771570": installDir: ZombieCity launch: - config: oslist: windows executable: ZombieCity.exe type: vr -'771610': +"771610": installDir: NeoBalls launch: - config: oslist: windows executable: NeoBalls.exe type: default -'771670': +"771670": installDir: VR_PLAYROOM launch: - config: oslist: windows executable: VR_PlayRoom.exe type: vr -'771680': +"771680": installDir: Shield Impact launch: - config: @@ -357361,22 +352082,22 @@ type: default - config: oslist: macos - executable: Shield Impact.app\\Contents\\MacOS\\Shield Impact + executable: "Shield Impact.app\\\\Contents\\\\MacOS\\\\Shield Impact" type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Shield Impact.exe type: default -'771690': +"771690": installDir: Fimbul launch: - config: oslist: windows executable: Fimbul.exe type: default -'771700': {} -'771710': +"771700": {} +"771710": installDir: Test Expected Behaviour launch: - config: @@ -357388,34 +352109,34 @@ executable: Test Expected Behaviour.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Test Expected Behaviour.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Test Expected Behaviour.x86 type: default -'771770': +"771770": installDir: Wild Mage launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: IOE_Beta.exe type: default nameLocalized: - schinese: 'Isles of Etherion: 浮岛风云' -'771800': {} -'771810': + schinese: "Isles of Etherion: 浮岛风云" +"771800": {} +"771810": installDir: The spy who shot me™ launch: - config: oslist: windows executable: TSWSM.exe type: default -'771820': +"771820": installDir: Rookie Math Pro launch: - config: @@ -357423,7 +352144,7 @@ description: Launch Rookie Math Pro executable: RookieMathPro.exe type: default -'771840': +"771840": installDir: Royal Casino Video Poker launch: - config: @@ -357432,28 +352153,28 @@ type: none - config: oslist: macos - executable: Royal Casino Video Poker.app\\Contents\\MacOS\\Royal Casino Video Poker + executable: "Royal Casino Video Poker.app\\\\Contents\\\\MacOS\\\\Royal Casino Video Poker" type: none - config: oslist: linux executable: Royal Casino Video Poker.x86 type: none -'771860': +"771860": installDir: Jelly Escape launch: - config: oslist: windows executable: jellyEscape.exe type: none -'771920': +"771920": installDir: TOGETHER VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TogetherVR.exe type: vr -'771950': +"771950": installDir: SUMETRICK launch: - config: @@ -357464,14 +352185,14 @@ oslist: linux executable: SUMETRICK.x86 type: none -'771960': +"771960": installDir: lisblanc launch: - config: oslist: windows executable: lisblanc.exe type: none -'772060': +"772060": installDir: Harvester of Dreams EP1 launch: - config: @@ -357479,12 +352200,12 @@ executable: HoD1.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: HoD1.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: HoD1.x86_64 type: default @@ -357492,27 +352213,27 @@ oslist: macos executable: HoD1.app type: default -'772070': +"772070": installDir: Harvest Seasons launch: - config: oslist: windows executable: Harvest Seasons.exe type: default -'772080': +"772080": installDir: Mind Portal launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: mind_portal.exe type: none - config: - osarch: '32' + osarch: "32" oslist: windows executable: mind_portal.exe type: none -'772090': +"772090": installDir: Once upon a Dungeon launch: - config: @@ -357521,19 +352242,19 @@ type: default - config: oslist: macos - executable: OuaD.app\\Contents\\MacOS\\OuaD + executable: "OuaD.app\\\\Contents\\\\MacOS\\\\OuaD" type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: OuaDLinux.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: OuaDLinux.x86_64 type: default -'772100': +"772100": installDir: Dexterity launch: - config: @@ -357548,22 +352269,22 @@ oslist: linux executable: Dexterity.x86 type: none -'772110': +"772110": installDir: Asteroidiga launch: - config: - osarch: '64' + osarch: "64" oslist: linux executable: LinuxContent/asteroidiga type: default workingdir: LinuxContent/ - config: - osarch: '64' + osarch: "64" oslist: windows executable: WindowsContent/asteroidiga.exe type: default workingdir: WindowsContent/ -'772160': +"772160": installDir: 4 for the Money Demo launch: - config: @@ -357571,7 +352292,7 @@ description: Launch executable: 4 for the Money Demo.exe type: none -'772180': +"772180": installDir: Cricket Club launch: - config: @@ -357582,15 +352303,15 @@ oslist: windows executable: CC2020.3.exe type: othervr -'772190': {} -'772200': +"772190": {} +"772200": installDir: Mortal Manor launch: - config: oslist: windows executable: Mortal Manor.exe type: default -'772210': +"772210": installDir: Committed Mystery at Shady Pines launch: - config: @@ -357599,24 +352320,24 @@ type: default - config: oslist: macos - executable: Committed.app\\Contents\\MacOS\\Committed + executable: "Committed.app\\\\Contents\\\\MacOS\\\\Committed" type: default -'772220': +"772220": installDir: Arbiter launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Arbiter.exe type: vr -'772230': +"772230": installDir: LeapII launch: - config: oslist: windows executable: LeapII.exe type: default -'772240': +"772240": installDir: The Treasure Seekers of Lady Luck launch: - config: @@ -357631,17 +352352,17 @@ oslist: linux executable: TheTreasureSeekersOfLadyLuck type: none -'772260': {} -'772270': +"772260": {} +"772270": installDir: Blocked and Loaded launch: - executable: ZombiesGoBoom.exe type: none -'772290': +"772290": installDir: Rainswept launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: Rainswept.exe @@ -357649,27 +352370,27 @@ - config: oslist: macos description: Launch - executable: Rainswept.app\\Contents\\MacOS\\Rainswept + executable: "Rainswept.app\\\\Contents\\\\MacOS\\\\Rainswept" type: default - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: Rainswept.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Rainswept.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: Rainswept.x86 type: default -'772300': +"772300": installDir: To the City of the Clouds launch: - config: @@ -357684,8 +352405,8 @@ oslist: linux executable: ToTheCityOfTheClouds type: none -'772320': - installDir: Yeti's Parole Officer +"772320": + installDir: "Yeti's Parole Officer" launch: - config: oslist: windows @@ -357693,13 +352414,13 @@ type: none - config: oslist: macos - executable: Yeti's Parole Officer.app/Contents/MacOS/Yeti's Parole Officer + executable: "Yeti's Parole Officer.app/Contents/MacOS/Yeti's Parole Officer" type: none - config: oslist: linux executable: YetisParoleOfficer type: none -'772340': +"772340": installDir: Showdown at Willow Creek launch: - config: @@ -357714,7 +352435,7 @@ oslist: linux executable: ShowdownAtWillowCreek type: none -'772360': +"772360": installDir: For Rent Haunted House launch: - config: @@ -357729,19 +352450,19 @@ oslist: linux executable: ForRentHauntedHouse type: none -'772410': {} -'772420': +"772410": {} +"772420": installDir: Complex launch: - config: oslist: windows executable: COMPLEX.exe type: vr -'772430': +"772430": installDir: Hero of the Kingdom III launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Hero of the Kingdom III.exe type: default @@ -357754,7 +352475,7 @@ executable: Hero of the Kingdom III type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: Hero of the Kingdom III 32bit.exe type: default @@ -357762,29 +352483,29 @@ russian: Hero of the Kingdom III / Герой Королевства III schinese: Hero of the Kingdom III / 王国英雄III ukrainian: Hero of the Kingdom III / Герой Королівства III -'772440': +"772440": installDir: Sky Ball launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SkyBall.exe type: default -'772450': +"772450": installDir: Prison Bomber launch: - config: oslist: windows executable: PrisonBomber.exe type: default -'772460': +"772460": installDir: ET遊朝陽 launch: - config: oslist: windows executable: YangBo Adventure.exe type: none -'772470': +"772470": installDir: 8-in-1 IQ Scale Bundle launch: - config: @@ -357793,93 +352514,93 @@ type: default - config: oslist: macos - executable: IQScale81.app\\Contents\\MacOS\\nwjs + executable: "IQScale81.app\\\\Contents\\\\MacOS\\\\nwjs" type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: IQScale81 type: default -'772480': +"772480": installDir: Super Inefficient Golf launch: - - arguments: '-fullscreen' + - arguments: "-fullscreen" config: - osarch: '64' + osarch: "64" oslist: windows executable: Super Inefficient Golf.exe type: default - - arguments: '-fullscreen' + - arguments: "-fullscreen" config: oslist: macos executable: SuperInefficientGolf.app type: default - - arguments: '-fullscreen' + - arguments: "-fullscreen" config: oslist: linux executable: SuperInefficientGolf.sh type: default -'772490': {} -'772500': +"772490": {} +"772500": installDir: Distortions launch: - config: oslist: windows executable: DistortionsGame.exe type: default -'772530': +"772530": installDir: Scoot launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Crayola Scoot.exe type: default -'772540': +"772540": installDir: Battle Royale Trainer launch: - config: oslist: windows executable: BattleRoyaleTrainer.exe type: default -'772570': +"772570": installDir: Crew 167 - The Grand Block Odyssey launch: - config: oslist: windows executable: GrandBlockOdyssey.exe type: default -'772590': +"772590": installDir: After Life VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: AfterLifeVR.exe type: vr -'772600': +"772600": installDir: Fisherones launch: - config: oslist: windows executable: Fisherones.exe type: none -'772610': +"772610": installDir: Q-YO Blaster launch: - config: oslist: windows executable: Q-YO BLASTER/Q-YO BLASTER.exe type: default -'772650': +"772650": installDir: RAFA launch: - - arguments: testrafa.servergame.com 6553 bulldog oveja#4 -Xmx1g -Xms1g -Duser.language=en -Duser.country=EN + - arguments: "testrafa.servergame.com 6553 bulldog oveja#4 -Xmx1g -Xms1g -Duser.language=en -Duser.country=EN" config: oslist: windows executable: DNTTGRafA.exe type: none -'772670': +"772670": installDir: Beyond the Invisible Darkness Came launch: - config: @@ -357887,7 +352608,7 @@ oslist: windows executable: btidc.exe type: default -'772680': +"772680": installDir: a Museum of Dubious Splendors launch: - config: @@ -357902,50 +352623,50 @@ oslist: macos executable: DubiousSplendor.app type: default -'772700': +"772700": installDir: Matchygotchy launch: - config: oslist: windows executable: MatchyGotchy.exe type: default -'772730': - installDir: '772730' +"772730": + installDir: "772730" launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Angel Light The Elven Truce.exe type: default -'772740': {} -'772750': +"772740": {} +"772750": installDir: Tobuscus Adventures - Wizards launch: - config: oslist: windows executable: Wizards-PC.exe type: default -'772940': {} -'772980': {} -'772990': +"772940": {} +"772980": {} +"772990": installDir: Bird Watcher launch: - config: oslist: windows executable: BirdWatcher.exe type: default -'7730': +"7730": installDir: XCom Interceptor launch: - executable: Interceptor.exe -'773010': +"773010": installDir: Hunahpu Quest. Mechanoid launch: - config: oslist: windows executable: HunahpuQuest_Mechanoid.exe type: default -'773090': +"773090": installDir: Lucid Dream launch: - config: @@ -357957,29 +352678,29 @@ oslist: macos executable: Lucid Dream.app type: default -'773120': +"773120": installDir: Christmas Santa Troubles launch: - config: oslist: windows executable: Christmas.exe type: none -'773130': +"773130": installDir: NYAN DESTROYER launch: - config: oslist: windows - ownsdlc: 'No' + ownsdlc: "No" executable: app.exe type: default -'773150': +"773150": installDir: Subscribe & Punch! launch: - config: oslist: windows executable: Subscribe&Punch.exe type: default -'773170': +"773170": installDir: Close the Window! launch: - config: @@ -357994,126 +352715,126 @@ oslist: macos executable: CloseTheWindow!.app type: none -'773190': +"773190": installDir: Dark Core launch: - config: oslist: windows executable: Game.exe type: default -'773230': +"773230": installDir: The Evil Party launch: - config: oslist: windows executable: theevilparty.exe type: default -'773240': +"773240": installDir: Raceland launch: - config: oslist: windows executable: Raceland/Raceland.exe type: default -'773330': +"773330": installDir: Action Alien Prelude launch: - config: oslist: windows description: Launch - executable: Binaries\\Win32\\UDK.exe + executable: "Binaries\\\\Win32\\\\UDK.exe" type: none -'773340': +"773340": installDir: WingMen launch: - config: oslist: windows executable: WingMen.exe type: default -'773360': +"773360": installDir: Stinky Snake launch: - config: oslist: windows executable: StinkySnake.exe type: config -'773370': +"773370": installDir: Exo One launch: - config: oslist: windows executable: EXO ONE.exe type: none -'773380': {} -'773390': +"773380": {} +"773390": installDir: Aim Trainer Pro launch: - executable: AimTrainer.exe type: none -'773420': +"773420": installDir: Panacea Last Will launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Panacea.exe type: default -'773430': +"773430": installDir: MeowMotors launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: MeowMotors.exe type: default -'773440': +"773440": installDir: Primal Pursuit launch: - config: oslist: windows executable: Primal Pursuit.exe type: default -'773460': +"773460": installDir: Pupil_Wandering launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Pupil2.exe type: openvroverlay -'773490': +"773490": installDir: RiddleBridge launch: - config: oslist: windows executable: RiddleBridge.exe type: default -'773510': +"773510": installDir: The Hardest Thing launch: - config: oslist: windows executable: THT.exe type: default -'773520': +"773520": installDir: Refight launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Refight-BurningEngine.exe type: default -'773530': +"773530": installDir: Magic Nations launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: MagicNations.exe type: none - config: oslist: macos - executable: MagicNations.app\\Contents\\MacOS\\MagicNations + executable: "MagicNations.app\\\\Contents\\\\MacOS\\\\MagicNations" type: default nameLocalized: english: Magic Nations - Card Game @@ -358121,15 +352842,15 @@ italian: Magic Nations - Il gioco di carte polish: Magic Nations - Gra karciana portuguese: Magic Nations - O jogo de cartas -'773540': +"773540": installDir: Boss Crushers launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: bosscrushers.exe type: none -'773570': +"773570": installDir: Log Challenge launch: - config: @@ -358140,7 +352861,7 @@ oslist: windows executable: logChallenge.exe type: othervr -'773580': +"773580": installDir: Game Dev Studio launch: - config: @@ -358148,18 +352869,18 @@ executable: game_dev_studio.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: launch_gds type: default -'773590': +"773590": installDir: Azusa Online launch: - config: oslist: windows executable: Azusa.exe type: none -'773610': +"773610": installDir: Hill Quest launch: - config: @@ -358168,35 +352889,35 @@ type: none - config: oslist: macos - executable: HillQuest.app\\Contents\\MacOS\\HillQuest + executable: "HillQuest.app\\\\Contents\\\\MacOS\\\\HillQuest" type: none - config: oslist: linux executable: HillQuest.x86_64 type: none -'773620': +"773620": installDir: Redemption - Tyranny of Daetorem launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows executable: Redemption.exe type: none -'773630': +"773630": installDir: Quanero 2 - System Release launch: - config: oslist: windows executable: Quanero2.exe type: vr -'773640': +"773640": installDir: Colony On Mars launch: - config: oslist: windows executable: Colony On Mars.exe type: default -'773650': +"773650": installDir: The first thrust of God launch: - config: @@ -358207,7 +352928,7 @@ oslist: macos executable: The first thrust of God.app type: default -'773660': +"773660": installDir: Cannon Fire launch: - description: Play the game! @@ -358218,7 +352939,7 @@ description: Legacy Game Edition executable: CannonFireDEMO.exe type: none -'773670': +"773670": installDir: Delete launch: - config: @@ -358229,36 +352950,36 @@ oslist: macos executable: Delete.app type: default -'773710': +"773710": installDir: Drifting Cloud launch: - config: oslist: windows executable: drifting cloud.exe type: default -'773740': +"773740": installDir: Overpass launch: - config: oslist: windows executable: Overpass.exe type: config -'773750': +"773750": installDir: DangerForever launch: - config: oslist: windows executable: Rika-dev.exe type: default -'773770': +"773770": installDir: The Way of Kings Escape the Shattered Plains! launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: WayOfKings.exe type: vr -'773790': +"773790": installDir: Ostriv launch: - config: @@ -358269,16 +352990,16 @@ oslist: windows executable: ostriv_settings.exe type: config -'773810': +"773810": installDir: NOSTOI launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: NOSTOI.exe type: default -'773830': - installDir: Dr. Trolley's Problem +"773830": + installDir: "Dr. Trolley's Problem" launch: - config: oslist: windows @@ -358288,12 +353009,12 @@ oslist: macos executable: DrTrolley.app type: default -'773840': +"773840": installDir: DRAG launch: - config: oslist: windows - executable: bin\\DRAG.exe + executable: "bin\\\\DRAG.exe" type: default workingdir: bin - config: @@ -358301,7 +353022,7 @@ executable: bin/DRAG type: default workingdir: bin -'773850': +"773850": installDir: War Trigger 2 launch: - config: @@ -358312,36 +353033,36 @@ oslist: macos executable: War Trigger 2.app type: default -'773870': - installDir: Vector's Adventures +"773870": + installDir: "Vector's Adventures" launch: - config: oslist: windows - executable: Vector's Adventures.exe + executable: "Vector's Adventures.exe" type: default -'773910': +"773910": installDir: The Short Story of a Drifting Labyrinth launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: The_Short_Story_of_a_Drifting_Labyrinth.exe type: default -'773920': {} -'773930': +"773920": {} +"773930": installDir: Coaster launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Coaster.exe type: vr -'773951': +"773951": installDir: Freeman Guerrilla Warfare launch: - config: oslist: windows - description: 'Play Freeman: Guerrilla Warfare' + description: "Play Freeman: Guerrilla Warfare" executable: StartFGW.exe type: default - config: @@ -358351,30 +353072,30 @@ type: none nameLocalized: schinese: 自由人:游击战争 -'7740': +"7740": installDir: NBA 2K9 launch: - executable: nba2k9.exe - arguments: /switchmode description: Launch in Safe Mode executable: nba2k9.exe -'774051': +"774051": installDir: Dream_On_The_Moon launch: - config: oslist: windows executable: Dream_On_The_Moon/Dream_On_The_Moon.exe type: default -'774091': +"774091": installDir: Ostalgie The Berlin Wall launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Ostalgie.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: Ostalgie.exe type: default @@ -358383,31 +353104,31 @@ executable: Ostalgie.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Ostalgie.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Ostalgie.x86_64 type: default -'774121': +"774121": installDir: SuperJetJuck launch: - - arguments: '@f+ @INFOOFF' + - arguments: "@f+ @INFOOFF" config: oslist: windows description: Full screen executable: SJJ.win32_steam.exe type: option1 - - arguments: '@f1920x1080 @z0.9 @INFOOFF' + - arguments: "@f1920x1080 @z0.9 @INFOOFF" config: oslist: windows description: Windowed executable: SJJ.win32_steam.exe type: option2 -'774131': +"774131": installDir: Nostradamus - the 4 horsemen of the Apocalypse launch: - config: @@ -358418,26 +353139,26 @@ oslist: macos executable: nostradamus_mac_20180122.app type: default -'774141': - installDir: Miazma or the Devil's Stone +"774141": + installDir: "Miazma or the Devil's Stone" launch: - config: oslist: windows executable: Miazma.exe type: default -'774151': - installDir: YOOMURJAK'S RING +"774151": + installDir: "YOOMURJAK'S RING" launch: - config: oslist: windows executable: Yoomurjak.exe type: default -'774161': +"774161": installDir: Steampunker launch: - executable: Steampunker.exe type: none -'774171': +"774171": installDir: Muse Dash launch: - config: @@ -358451,7 +353172,7 @@ type: default nameLocalized: sc_schinese: 喵斯快跑 -'774181': +"774181": installDir: Rhythm Doctor launch: - config: @@ -358474,7 +353195,7 @@ type: default nameLocalized: schinese: Rhythm Doctor 节奏医生 -'774191': +"774191": installDir: Car Puzzler launch: - config: @@ -358486,46 +353207,46 @@ executable: carPuzzler.app type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: carPuzzler.x86_64 type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: carPuzzler.x86 type: none -'774201': - installDir: Heaven's Vault +"774201": + installDir: "Heaven's Vault" launch: - config: oslist: windows - executable: Heaven's Vault.exe + executable: "Heaven's Vault.exe" type: default -'774211': +"774211": installDir: Drive Buy launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Drive Buy.exe type: default -'774221': - installDir: Nekomew's Potty Trouble +"774221": + installDir: "Nekomew's Potty Trouble" launch: - config: oslist: windows executable: nekomewpottytrouble.exe type: none -'774231': +"774231": installDir: TheKremerCollection launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: kremerlighting.exe type: vr -'774241': +"774241": installDir: Warhammer Chaosbane launch: - executable: Exe/Chaosbane.exe @@ -358534,21 +353255,21 @@ - executable: Exe/ResolutionsOptions.exe type: config workingdir: Exe -'774261': +"774261": installDir: My Little Bomb launch: - config: oslist: windows executable: My Little Bomb.exe type: default -'774281': +"774281": installDir: Achievement Lurker We Give Up! launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" executable: Game.exe type: default -'774291': {} -'774321': +"774291": {} +"774321": installDir: STARBO launch: - config: @@ -358556,7 +353277,7 @@ executable: STARBO.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: STARBO.x86 type: default @@ -358565,11 +353286,11 @@ executable: STARBO.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: STARBO.x86_64 type: default -'774331': +"774331": installDir: ASH OF WAR™ launch: - config: @@ -358580,23 +353301,23 @@ oslist: macos executable: aowmac.app type: default -'774351': +"774351": installDir: Citystate launch: - config: oslist: windows executable: Citystate.exe type: none - - arguments: '--file-descriptor-limit=10000' + - arguments: "--file-descriptor-limit=10000" config: oslist: macos executable: Citystate.app type: none -'774361': +"774361": installDir: Blasphemous launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Blasphemous.exe type: default @@ -358605,56 +353326,56 @@ executable: Blasphemous.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Blasphemous.x86_64 type: default -'774401': +"774401": installDir: Scrap Attack launch: - config: oslist: windows executable: ScrapAttack.exe type: vr -'774411': +"774411": installDir: Temple of Xiala launch: - config: oslist: windows executable: Xiala.exe type: default -'774421': +"774421": installDir: Shinrin-yoku launch: - config: oslist: windows executable: shinrin.exe type: vr -'774441': +"774441": installDir: IslandTime launch: - - executable: IslandTime\\IslandTime.exe + - executable: "IslandTime\\\\IslandTime.exe" type: vr - config: oslist: windows executable: IslandTime.exe type: vr -'774451': +"774451": installDir: Among the Dead launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" executable: nw.exe type: none -'774461': +"774461": installDir: The Jackbox Party Pack 5 launch: - - arguments: '-jbg.config serverUrl=ecast.jackboxgames.com' + - arguments: "-jbg.config serverUrl=ecast.jackboxgames.com" config: oslist: windows executable: The Jackbox Party Pack 5.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Launcher.sh type: default @@ -358662,41 +353383,41 @@ oslist: macos executable: The Jackbox Party Pack 5.app type: default -'774471': {} -'774501': - installDir: VR Soccer '96 +"774471": {} +"774501": + installDir: "VR Soccer '96" launch: - config: oslist: windows executable: Launch_VR_Soccer_96.bat type: default - - arguments: '-conf \"./dosboxVR99.conf\" -conf \"./dosboxVR99_single.conf\" -noconsole' + - arguments: "-conf \\\"./dosboxVR99.conf\\\" -conf \\\"./dosboxVR99_single.conf\\\" -noconsole" config: oslist: macos executable: DOSBox/dosbox.app/Contents/MacOS/DOSBox type: default - - arguments: '-conf \"./dosboxVR99.conf\" -conf \"./dosboxVR99_single.conf\" -noconsole' + - arguments: "-conf \\\"./dosboxVR99.conf\\\" -conf \\\"./dosboxVR99_single.conf\\\" -noconsole" config: oslist: linux executable: dosbox/dosbox type: default -'774511': +"774511": installDir: Megadimension Neptunia VIIR launch: - - arguments: '1' + - arguments: "1" config: oslist: windows - executable: resource\\bin/v2r.exe + executable: "resource\\\\bin/v2r.exe" type: vr - - arguments: '0' + - arguments: "0" config: oslist: windows - executable: resource\\bin/v2r.exe + executable: "resource\\\\bin/v2r.exe" type: default nameLocalized: japanese: 新次元ゲイム ネプテューヌVⅡR tchinese: 新次元遊戲 戰機少女VⅡR -'774531': +"774531": installDir: Snail Trek 4 launch: - config: @@ -358708,11 +353429,11 @@ executable: SnailTrek4.app type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: SnailTrek4.x86_64 type: none -'774541': +"774541": installDir: Species ALRE launch: - config: @@ -358720,7 +353441,7 @@ executable: Species.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: SpeciesUbuntuX64 type: default @@ -358728,33 +353449,33 @@ oslist: macos executable: SpeciesOSX64 type: default -'774551': +"774551": installDir: Football Heroes Turbo launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: FootballHeroes_Win7.exe type: none -'774561': +"774561": installDir: Rym 9000 launch: - - arguments: '-force-d3d9' + - arguments: "-force-d3d9" config: oslist: windows description: Launch executable: Rym 9000.exe type: default - - arguments: '-force-opengl' + - arguments: "-force-opengl" config: - osarch: '32' + osarch: "32" oslist: linux description: Launch (32bits) executable: Rym 9000.x86 type: default - - arguments: '-force-opengl' + - arguments: "-force-opengl" config: - osarch: '64' + osarch: "64" oslist: linux description: Launch (64bits) executable: Rym 9000.x86_64 @@ -358764,7 +353485,7 @@ description: Launch executable: Rym 9000.app type: default -'774651': +"774651": installDir: Mighty Gunvolt Burst launch: - config: @@ -358772,14 +353493,14 @@ executable: exe/MGVB.exe type: default workingdir: exe/ -'774661': +"774661": installDir: Filthyfrankkart launch: - config: oslist: windows executable: Filthy Frank Kart update2.exe type: default -'774711': +"774711": installDir: Crazy Dreamz Best Of launch: - config: @@ -358790,7 +353511,7 @@ oslist: macos executable: DreamzBestOf.app type: default -'774741': +"774741": installDir: SpaceExcavators launch: - config: @@ -358801,7 +353522,7 @@ oslist: macos executable: game.app type: default -'774781': +"774781": installDir: My Coloring Book Professions launch: - config: @@ -358810,64 +353531,64 @@ type: none - config: oslist: macos - executable: My Coloring Book - Professions.app\\Contents\\MacOS\\My Coloring Book - Professions + executable: "My Coloring Book - Professions.app\\\\Contents\\\\MacOS\\\\My Coloring Book - Professions" type: none - config: oslist: linux executable: My Coloring Book - Professions.x86 type: none -'774791': +"774791": installDir: Surgeon Simulator 2 launch: - executable: Surgeon Simulator 2.exe type: none -'774801': +"774801": installDir: Crab Champions launch: - config: oslist: windows executable: CrabChampions.exe type: default -'774811': +"774811": installDir: YUMENIKKI -DREAM DIARY- launch: - config: oslist: windows executable: YumeNikki.exe type: default -'774831': {} -'774861': +"774831": {} +"774861": installDir: Project Winter launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ProjectWinter.exe type: default -'774891': +"774891": installDir: Fenix Box launch: - config: oslist: windows executable: Fenix Box.exe type: default -'774901': +"774901": installDir: Pure Football 2018 launch: - config: oslist: windows executable: PureFootball2018.exe type: default -'774911': +"774911": installDir: The Master launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Stairs.exe type: default -'774921': {} -'775200': +"774921": {} +"775200": installDir: Powerless launch: - config: @@ -358882,31 +353603,31 @@ oslist: linux executable: Powerless.x86 type: default -'775220': +"775220": installDir: CrusadersOfLight launch: - config: oslist: windows executable: col.exe type: none -'775270': +"775270": installDir: They have HORNS launch: - config: oslist: windows executable: TheyHaveHORNS.exe type: default -'775310': +"775310": installDir: Blood of Patriots launch: - config: oslist: windows executable: blood_of_patriots.exe type: none -'775320': {} -'775330': {} -'775430': {} -'775460': +"775320": {} +"775330": {} +"775430": {} +"775460": installDir: The Cryptkeepers of Hallowford launch: - config: @@ -358921,7 +353642,7 @@ oslist: linux executable: TheCryptkeepersOfHallowford type: none -'775490': +"775490": installDir: SSP2D launch: - config: @@ -358930,23 +353651,23 @@ type: default - config: oslist: macos - executable: ssp2d.app\\Contents\\MacOS\\ssp2d + executable: "ssp2d.app\\\\Contents\\\\MacOS\\\\ssp2d" type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: ssp2d.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: ssp2d.x86_64 type: default -'775500': +"775500": installDir: ScarletNexus launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ScarletNexus.exe type: default @@ -358954,14 +353675,14 @@ koreana: 스칼렛 스트링스 schinese: 绯红结系 tchinese: 緋紅結繫 -'775520': +"775520": installDir: Animals Memory Dinosaurs launch: - config: oslist: windows executable: Animals Memory - Dinosaurs.exe type: config -'775530': +"775530": installDir: puzzlement launch: - config: @@ -358972,51 +353693,51 @@ oslist: macos executable: puzzlement.app type: default -'775570': +"775570": installDir: Deadly Blue launch: - config: oslist: windows executable: Deadly Blue.exe type: default -'775580': +"775580": installDir: ITTA launch: - config: betakey: main executable: ITTA_WORKBUILD_FINAL.exe type: none -'775590': +"775590": installDir: Spork launch: - config: oslist: windows executable: Spork The manic utensil storm.exe type: default -'775620': +"775620": installDir: fof1 launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Fight or Flight - executable: WindowsNoEditor\\FofGame\\Binaries\\Win64\\FofGame.exe + executable: "WindowsNoEditor\\\\FofGame\\\\Binaries\\\\Win64\\\\FofGame.exe" type: option1 - workingdir: WindowsNoEditor\\FofGame\\Binaries\\Win64\\ -'775690': + workingdir: "WindowsNoEditor\\\\FofGame\\\\Binaries\\\\Win64\\\\" +"775690": installDir: PlatformGolf launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: PlatformGolf.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: PlatformGolf type: default -'775720': +"775720": installDir: Lozenge launch: - config: @@ -359031,7 +353752,7 @@ oslist: linux executable: Lozenge.Linux/Lozenge.x86 type: default -'775730': +"775730": installDir: Dialing launch: - config: @@ -359046,78 +353767,76 @@ oslist: linux executable: Dialing.Linux/Dialing.x86 type: default -'775760': +"775760": installDir: Juice Girl launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: JuiceGirl.exe type: default -'775790': +"775790": installDir: Rampage Ragdoll launch: - config: oslist: windows executable: Rampage Ragdoll.exe type: default -'775800': +"775800": installDir: Ling launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: WindowsNoEditor\\Ling.exe + executable: "WindowsNoEditor\\\\Ling.exe" type: default -'775810': {} -'775830': {} -'775850': +"775810": {} +"775830": {} +"775850": installDir: Piwall launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Piwall.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: Piwall.exe type: vr - config: - osarch: '64' + osarch: "64" oslist: windows executable: Piwall.exe type: othervr - config: - osarch: '64' + osarch: "64" oslist: windows description: OSVR Mode - description_loc: - english: OSVR Mode executable: Piwall.exe type: option1 -'775860': +"775860": installDir: Midnightland launch: - config: oslist: windows executable: Midnightland.exe type: default -'775890': {} -'775900': +"775890": {} +"775900": installDir: MotoGP™18 launch: - executable: motogp18.exe type: none -'775910': +"775910": installDir: Animals Memory Birds launch: - config: oslist: windows executable: Animals Memory - Birds.exe type: config -'775920': +"775920": installDir: Soul Reaper Unreap Commander launch: - config: @@ -359128,7 +353847,7 @@ oslist: macos executable: Soul Reaper Unreap Commander.app type: default -'775940': +"775940": installDir: Rise of Liberty launch: - config: @@ -359143,22 +353862,22 @@ oslist: linux executable: Rise of Libertys.x86 type: default -'775960': +"775960": installDir: The Tower of Beatrice launch: - config: oslist: windows executable: TheTowerofBeatrice.exe type: none -'775970': {} -'775990': {} -'7760': +"775970": {} +"775990": {} +"7760": installDir: XCom UFO Defense launch: - executable: dosbox.exe - description: Launch Windows9x/XP (Only) Version - executable: XCOM\\UFO Defense_Patched.exe -'776000': + executable: "XCOM\\\\UFO Defense_Patched.exe" +"776000": installDir: Choice of the Vampire launch: - config: @@ -359173,7 +353892,7 @@ oslist: linux executable: ChoiceOfTheVampire type: none -'776020': +"776020": installDir: Choice of the Vampire The Fall of Memphis launch: - config: @@ -359188,15 +353907,15 @@ oslist: linux executable: ChoiceOfTheVampireTheFallOfMemphis type: none -'776040': +"776040": installDir: John Lazarus - Episode 1 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: John Lazarus - Episode 1.exe type: vr -'776050': +"776050": installDir: FA-18E Super Hornet launch: - config: @@ -359215,16 +353934,16 @@ - description: Show Reference Card executable: RefCard.pdf type: none -'776060': {} -'776070': {} -'776080': +"776060": {} +"776070": {} +"776080": installDir: Dodge launch: - config: oslist: windows executable: Dodge.exe type: default -'776100': +"776100": installDir: One Night On The Road launch: - config: @@ -359232,32 +353951,32 @@ description: Standard executable: One Night On The Road/One Night On The Road.exe type: default -'776140': +"776140": installDir: Idol Quest VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: HTC Vive and Windows Mixed Reality - executable: idolquestvr_htcvive\\idolquestvr_htcvive.exe + executable: "idolquestvr_htcvive\\\\idolquestvr_htcvive.exe" type: vr - config: - osarch: '64' + osarch: "64" oslist: windows description: Oculus Rift - executable: idolquestvr_oculusrift\\idolquestvr_oculusrift.exe + executable: "idolquestvr_oculusrift\\\\idolquestvr_oculusrift.exe" type: othervr -'776150': +"776150": installDir: M1 Tank Platoon launch: - config: oslist: windows executable: PlayGame.bat type: default - - arguments: '-conf \"config/dosbox_tank.conf\"' + - arguments: "-conf \\\"config/dosbox_tank.conf\\\"" config: oslist: macos - executable: DOSBox\\dosbox.app\\Contents\\MacOS\\DOSBox + executable: "DOSBox\\\\dosbox.app\\\\Contents\\\\MacOS\\\\DOSBox" type: default - config: oslist: linux @@ -359266,95 +353985,91 @@ - executable: M1_Tank_Platoon_Manual.pdf type: manual - description: M1 Tank Platoon Technical Supplement - description_loc: - english: M1 Tank Platoon Technical Supplement executable: M1_Tank_Platoon_TS.pdf type: none - description: M1 Tank Platoon Vehicle Guide - description_loc: - english: M1 Tank Platoon Vehicle Guide executable: M1_Tank_Platoon_Vehicle_Guide.pdf type: none -'776160': +"776160": installDir: Up and Down launch: - config: oslist: windows executable: Up and Down.exe type: none -'776170': {} -'776190': +"776170": {} +"776190": installDir: Galactic Battles launch: - config: oslist: windows executable: Galactic Battles.exe type: none -'776200': {} -'776210': {} -'776290': +"776200": {} +"776210": {} +"776290": installDir: Kamikazo VR launch: - config: oslist: windows executable: Kamikazo_uni.exe type: vr -'776320': +"776320": installDir: Armada Skies launch: - config: oslist: windows executable: Armada Skies.exe type: default -'776340': +"776340": installDir: Gay World launch: - config: oslist: windows executable: Gay World.exe type: default -'776360': +"776360": installDir: A Walk Along the Wall launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: A Walk Along the Wall.exe type: default -'776370': +"776370": installDir: Next 2 launch: - config: oslist: windows executable: Next 2.exe type: default -'776380': {} -'776390': +"776380": {} +"776390": installDir: Outbreak in Space VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: OutbreakinSpaceVR.exe type: vr - config: - osarch: '64' + osarch: "64" oslist: windows executable: OutbreakinSpaceVR.exe type: othervr -'776410': - installDir: Sorcerer's Path +"776410": + installDir: "Sorcerer's Path" launch: - - executable: Sorcerer's Path.exe + - executable: "Sorcerer's Path.exe" type: default -'776430': +"776430": installDir: STAR SAGA ONE - RISE OF THE DOMINATORS launch: - config: oslist: windows executable: STAR SAGA ONE.exe type: vr -'776440': +"776440": installDir: PROJECT VELOCITY launch: - config: @@ -359363,82 +354078,82 @@ type: default - config: oslist: macos - executable: Contents\\MacOS\\PROJECTVELOCITY + executable: "Contents\\\\MacOS\\\\PROJECTVELOCITY" type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: PROJECTVELOCITY.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: PROJECTVELOCITY.x86 type: default -'776450': +"776450": installDir: Elektronauts launch: - config: oslist: windows executable: Elektronauts.exe type: default -'776490': +"776490": installDir: The Disappearing of Gensokyo launch: - config: oslist: windows executable: The Disappearing of Gensokyo.exe type: default -'776510': +"776510": installDir: RichCode launch: - config: oslist: windows executable: rich.exe type: default -'776540': +"776540": installDir: aMAZE Untouchable launch: - config: oslist: windows executable: aMAZE Untouchable.exe type: default -'776550': +"776550": installDir: YLARunner launch: - config: oslist: windows executable: Yuzi Lims anime runner.exe type: default -'776580': +"776580": installDir: Abasralsa launch: - config: oslist: windows executable: Abasralsa.exe type: default -'776590': {} -'776600': +"776590": {} +"776600": installDir: Witch Sword launch: - config: oslist: windows executable: Witch Sword.exe type: default -'776610': +"776610": installDir: My Beastly Lovers launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: MyBeastlyLovers.exe type: default -'776670': +"776670": installDir: Flying Bacon launch: - executable: fb.exe type: default -'776720': +"776720": installDir: Dungeon Gambit Boy launch: - config: @@ -359451,9 +354166,9 @@ type: default - config: oslist: macos - executable: dungeongambitboy.app\\Contents\\MacOS\\nwjs + executable: "dungeongambitboy.app\\\\Contents\\\\MacOS\\\\nwjs" type: default -'776740': +"776740": installDir: Unveloped launch: - config: @@ -359466,11 +354181,11 @@ type: default - config: oslist: windows - ownsdlc: '883740' + ownsdlc: "883740" description: DLC executable: Unveloped.exe type: none -'776780': +"776780": installDir: Copierre launch: - config: @@ -359478,38 +354193,38 @@ description: Launch executable: Copierre.exe type: none -'776790': +"776790": installDir: Squirrel Sphere launch: - config: oslist: windows - executable: Squirrel_Sphere_Build\\WindowsNoEditor\\Squirrel_Sphere.exe + executable: "Squirrel_Sphere_Build\\\\WindowsNoEditor\\\\Squirrel_Sphere.exe" type: default -'776820': +"776820": installDir: Sit on bottle launch: - config: oslist: windows executable: Sit on bottle.exe type: config -'776830': +"776830": installDir: tears910 launch: - config: oslist: windows executable: tears910.exe type: default -'776890': +"776890": installDir: Clicker Mining Simulator launch: - executable: CMS.exe type: none -'776930': +"776930": installDir: Omnibion War launch: - executable: Omnibion_war.exe type: default -'776960': +"776960": installDir: Mouse (Sneaking) launch: - config: @@ -359518,7 +354233,7 @@ type: default nameLocalized: russian: Мыш (кродеться) -'776970': +"776970": installDir: Scary new year launch: - config: @@ -359533,50 +354248,50 @@ oslist: linux executable: SNY.x86 type: none -'7770': +"7770": installDir: XCom Enforcer launch: - - executable: system\\xcom.exe + - executable: "system\\\\xcom.exe" workingdir: system -'777000': +"777000": installDir: FreeFlight launch: - config: oslist: windows executable: game.exe type: default -'777010': {} -'777020': +"777010": {} +"777020": installDir: Mumps launch: - config: oslist: windows executable: nw.exe type: default -'777040': +"777040": installDir: Criminal Bundle launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Criminal.exe type: default -'777050': +"777050": installDir: TOXIC PLUMBING launch: - config: oslist: windows executable: TOXIC PLUMBING.exe type: none -'777090': +"777090": installDir: Assembly Required launch: - config: oslist: windows executable: AssemblyRequired.exe type: default -'777100': {} -'777130': +"777100": {} +"777130": installDir: BlushBlush launch: - config: @@ -359588,23 +354303,23 @@ executable: BlushBlush.app type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: BlushBlush.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: BlushBlush.x86_64 type: none -'777140': +"777140": installDir: MEGAMiX launch: - config: oslist: windows executable: MegaMix.exe type: default -'777150': +"777150": installDir: adventureland launch: - config: @@ -359619,7 +354334,7 @@ oslist: linux executable: Adventure Land type: none -'777160': +"777160": installDir: Forgotten Places Regained Castle launch: - config: @@ -359630,7 +354345,7 @@ oslist: macos executable: RegainedCastle.app/Contents/MacOS/Regained Castle type: default -'777200': +"777200": installDir: koewotayorinisp launch: - arguments: www @@ -359638,92 +354353,92 @@ oslist: windows executable: nw.exe type: default -'777210': {} -'777220': +"777210": {} +"777220": installDir: Inquisitor launch: - config: oslist: windows executable: Game.exe type: default -'777240': +"777240": installDir: Tren0 launch: - config: oslist: windows executable: Game.exe type: default -'777250': +"777250": installDir: the Tavern of Magic launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Tavern.exe type: vr -'777270': +"777270": installDir: Thirsty Bubble launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: thirstyball.exe type: default -'777300': +"777300": installDir: The Placebos launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ThePlacebos.exe type: default -'777310': +"777310": installDir: Battle Of Keys launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: BOK.exe type: default -'777320': +"777320": installDir: PubgTrainingCamp launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: PubgTrainingCamp.exe type: default -'777330': {} -'777340': +"777330": {} +"777340": installDir: Animals Memory Underwater Kingdom launch: - config: oslist: windows executable: Animals Memory - Underwater Kingdom.exe type: config -'777350': +"777350": installDir: Maze Walker launch: - config: oslist: windows executable: MazeWalker.exe type: none -'777360': +"777360": installDir: HorD High or Die launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: HorD.exe type: default -'777380': +"777380": installDir: Fleets of Ascendancy launch: - config: oslist: windows executable: FOA.exe type: default -'777400': +"777400": installDir: Ultimate Spider Hero launch: - config: @@ -359732,13 +354447,13 @@ type: none - config: oslist: macos - executable: Ultimate Spider Hero.app\\Contents\\MacOS\\Ultimate Spider Hero + executable: "Ultimate Spider Hero.app\\\\Contents\\\\MacOS\\\\Ultimate Spider Hero" type: none - config: oslist: linux executable: Ultimate Spider Hero.x86 type: none -'777410': +"777410": installDir: EarthNight launch: - config: @@ -359749,9 +354464,9 @@ - config: oslist: macos description: Launch - executable: EarthNight.app\\Contents\\MacOS\\EarthNight + executable: "EarthNight.app\\\\Contents\\\\MacOS\\\\EarthNight" type: none -'777420': +"777420": installDir: Quests Unlimited launch: - config: @@ -359766,86 +354481,86 @@ oslist: macos executable: QuestsUnlimited_EA.app type: default -'777430': +"777430": installDir: VirtualBoxingLeague launch: - config: oslist: windows executable: VirtualBoxingLeague.exe type: default -'777530': +"777530": installDir: Salsa Virtual launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Default Launch executable: Salsa Virtual.exe type: vr -'777540': +"777540": installDir: Entertainment Hero launch: - config: oslist: windows - executable: Entertainment Hero 1.0\\EnterHero1.0.exe + executable: "Entertainment Hero 1.0\\\\EnterHero1.0.exe" type: none -'777550': +"777550": installDir: King Battle launch: - config: oslist: windows executable: wzzy.exe type: default -'777560': +"777560": installDir: INVISIBLE launch: - config: oslist: windows executable: invisible.exe type: default -'777580': +"777580": installDir: Champ Against Chumps Upgrade Edition launch: - config: oslist: windows executable: ChampAgainstChumpsUPGRADEEDITION.exe type: default -'777590': +"777590": installDir: The Lives launch: - config: oslist: windows executable: The Lives.exe type: default -'777610': +"777610": installDir: DrummingVR launch: - config: oslist: windows executable: game.exe type: othervr -'777620': +"777620": installDir: Little fight launch: - config: oslist: windows executable: game.exe type: default -'777640': +"777640": installDir: Lightform launch: - config: oslist: macos - executable: Lightform.app\\Contents\\MacOS\\Lightform + executable: "Lightform.app\\\\Contents\\\\MacOS\\\\Lightform" type: default - config: oslist: windows executable: Lightform.exe type: default -'777650': +"777650": installDir: Yet Another Research Dog launch: - - arguments: '-windowed' + - arguments: "-windowed" config: oslist: windows executable: Yet Another Research Dog.exe @@ -359854,7 +354569,7 @@ oslist: macos executable: Yet Another Research Dog.app type: default -'777660': +"777660": installDir: Spacepowers launch: - config: @@ -359863,9 +354578,9 @@ type: none - config: oslist: macos - executable: Spacepowers.app\\Contents\\MacOS\\Spacepowers + executable: "Spacepowers.app\\\\Contents\\\\MacOS\\\\Spacepowers" type: none -'777670': +"777670": installDir: Okinawa Rush launch: - config: @@ -359876,8 +354591,8 @@ japanese: 沖縄ラッシュ (Okinawa Rush) koreana: 오키나와 러시 (Okinawa Rush) tchinese: 沖繩激鬥 (Okinawa Rush) -'777710': {} -'777730': +"777710": {} +"777730": installDir: Entropy 2120 launch: - config: @@ -359892,14 +354607,14 @@ oslist: linux executable: Entropy2120Linux.x86_64 type: default -'777760': +"777760": installDir: Charlie II launch: - config: oslist: windows executable: Charlie2.exe type: default -'777770': +"777770": installDir: Warparty launch: - config: @@ -359910,7 +354625,7 @@ oslist: macos executable: warparty.app type: none -'777790': +"777790": installDir: Final Directive launch: - config: @@ -359922,37 +354637,37 @@ executable: finaldirective.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: finaldirective.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: finaldirective.x86_64 type: default -'777820': +"777820": installDir: BigKey launch: - config: oslist: windows executable: BigKey.exe type: default -'777850': +"777850": installDir: Cannon Crew launch: - config: oslist: windows executable: CannonCrew.exe type: default -'777860': +"777860": installDir: Jambo launch: - config: oslist: windows executable: Jambo.exe type: default -'777870': +"777870": installDir: While I Sleep I am Debug launch: - config: @@ -359963,7 +354678,7 @@ oslist: macos executable: WISIAD_v01_07_OSX.app type: default -'777880': +"777880": installDir: Fluffy Horde launch: - config: @@ -359978,17 +354693,17 @@ oslist: linux executable: FluffyHorde.x86 type: none -'777900': +"777900": installDir: The Departure launch: - - description: 'For all versions AFTER February 15, 2018.' + - description: "For all versions AFTER February 15, 2018." executable: The Departure.exe type: default -'7780': +"7780": installDir: MLB Front Office Manager launch: - executable: mgr.exe -'778000': +"778000": installDir: The SOL Device launch: - config: @@ -360001,17 +354716,17 @@ type: default - config: oslist: macos - executable: TheSOLDevice.app\\Contents\\MacOS\\Mac_Runner + executable: "TheSOLDevice.app\\\\Contents\\\\MacOS\\\\Mac_Runner" type: default -'778010': +"778010": installDir: Filmmaker Tycoon launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Filmmaker Tycoon.exe type: default -'778030': +"778030": installDir: BHI launch: - config: @@ -360019,92 +354734,84 @@ executable: BHI.exe type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: BHI.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: BHI.x86_64 type: none - config: oslist: macos - executable: BHI.app\\Contents\\MacOS\\BHI + executable: "BHI.app\\\\Contents\\\\MacOS\\\\BHI" type: none - - arguments: '-editor' + - arguments: "-editor" config: oslist: windows description: Map Editor - description_loc: - english: Map Editor executable: BHI.exe type: editor - - arguments: '-editor' + - arguments: "-editor" config: - osarch: '32' + osarch: "32" oslist: linux description: Map Editor - description_loc: - english: Map Editor executable: BHI.x86 type: editor - - arguments: '-editor' + - arguments: "-editor" config: - osarch: '64' + osarch: "64" oslist: linux description: Map Editor - description_loc: - english: Map Editor executable: BHI.x86_64 type: editor - - arguments: '-editor' + - arguments: "-editor" config: oslist: macos description: Map Editor - description_loc: - english: Map Editor - executable: BHI.app\\Contents\\MacOS\\BHI + executable: "BHI.app\\\\Contents\\\\MacOS\\\\BHI" type: editor -'778050': +"778050": installDir: Headless launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Headless.exe type: default -'778070': {} -'778080': +"778070": {} +"778080": installDir: 40 Winks launch: - config: oslist: windows executable: 40 winks.exe type: default -'778110': +"778110": installDir: Bladeline VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: BladeLine.exe type: vr -'778120': +"778120": installDir: Hyperbolic Ignition launch: - config: oslist: windows executable: HyperbolicIgnition.exe type: default -'778140': +"778140": installDir: BRIKS 2 launch: - config: oslist: windows executable: BRIKS2.exe type: default -'778150': +"778150": installDir: Crossroad launch: - config: @@ -360119,45 +354826,45 @@ oslist: macos executable: CrossRoad_Lumi.app type: none -'778230': +"778230": installDir: Mighty Gemstones launch: - config: oslist: windows executable: MightyGemstones.exe type: default -'778240': +"778240": installDir: STAR SOD launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: STAR_SOD.exe type: vr -'778250': +"778250": installDir: Battle of Kings VR launch: - config: oslist: windows executable: Battle of Kings VR.exe type: vr -'778260': +"778260": installDir: TheScentOfSummer launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TheScentOfSummer.exe type: vr -'778270': +"778270": installDir: Tombo Breaker VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TomboBreakerVR.exe type: vr -'778330': +"778330": installDir: SQUIRM launch: - config: @@ -360168,56 +354875,48 @@ - config: oslist: linux description: Squirm - description_loc: - english: Squirm executable: Squirm.x86_64 type: option1 - config: oslist: macos description: Squirm - executable: Squirm.app\\Contents\\MacOS\\Squirm + executable: "Squirm.app\\\\Contents\\\\MacOS\\\\Squirm" type: option1 - config: oslist: windows - ownsdlc: '1293870' + ownsdlc: "1293870" description: Pocket Squirm - description_loc: - english: Pocket Squirm - executable: Pocket Squim\\Pocket Squim.exe + executable: "Pocket Squim\\\\Pocket Squim.exe" type: option2 - config: oslist: macos - ownsdlc: '1293870' + ownsdlc: "1293870" description: Pocket Squirm - description_loc: - english: Pocket Squirm - executable: Pocket Squim\\Pocket Squim.app\\Contents\\MacOS\\Pocket Squim + executable: "Pocket Squim\\\\Pocket Squim.app\\\\Contents\\\\MacOS\\\\Pocket Squim" type: option2 - config: oslist: linux - ownsdlc: '1293870' + ownsdlc: "1293870" description: Pocket Squirm - description_loc: - english: Pocket Squirm - executable: Pocket Squim\\Pocket Squim.x86_64 + executable: "Pocket Squim\\\\Pocket Squim.x86_64" type: option2 -'778340': +"778340": installDir: Animals Memory Dogs launch: - config: oslist: windows executable: Animals Memory - Dogs.exe type: config -'778360': +"778360": installDir: Love or Loved launch: - config: oslist: windows executable: LoveOrLoved.exe type: default -'778370': {} -'778380': {} -'778390': +"778370": {} +"778380": {} +"778390": installDir: Corpse Party Book of Shadows launch: - config: @@ -360226,7 +354925,7 @@ type: default nameLocalized: japanese: コープスパーティー Book of Shadows -'778400': +"778400": installDir: Corpse Party Hysteric Birthday launch: - config: @@ -360235,7 +354934,7 @@ type: default nameLocalized: japanese: コープスパーティー -THE ANTHOLOGY- サチコの恋愛遊戯♥Hysteric Birthday 2U -'778410': +"778410": installDir: Dead Ground launch: - config: @@ -360246,22 +354945,22 @@ oslist: linux executable: Dead_Ground type: default -'778420': {} -'778450': {} -'778460': +"778420": {} +"778450": {} +"778460": installDir: The Communist Dogifesto launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TheCommunistDogifesto.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: TheCommunistDogifesto.x86_64 type: default -'778470': +"778470": installDir: Crystals and Curses launch: - config: @@ -360272,47 +354971,47 @@ oslist: macos executable: CrystalsAndCurses.app type: none -'778500': {} -'778540': +"778500": {} +"778540": installDir: Big Blue Memory launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Big Blue - Memory.exe type: vr -'778550': +"778550": installDir: NaziElimination launch: - config: oslist: windows executable: nazi_elimination.exe type: default -'778570': +"778570": installDir: Bustories launch: - config: oslist: windows executable: nw.exe type: default -'778580': +"778580": installDir: Trinity launch: - config: oslist: windows executable: Trinity.exe type: default -'778590': +"778590": installDir: Mountain Troll launch: - config: oslist: windows executable: Mountain Troll.exe type: none -'778600': +"778600": installDir: Zero Gravity Pool launch: - - arguments: '-nocompositor' + - arguments: "-nocompositor" config: oslist: windows executable: ZeroGPool32.exe @@ -360322,35 +355021,35 @@ description: Zero Gravity Pool (VR) executable: ZeroGPool32.exe type: vr -'778610': +"778610": installDir: Foto Flash launch: - config: oslist: windows executable: FotoFlash.exe type: none -'778630': +"778630": installDir: Snoobli launch: - config: oslist: windows executable: Snoobli.exe type: default -'778640': +"778640": installDir: Super Bit Adventure Paragons of Life launch: - config: oslist: windows executable: SBA.exe type: default -'778650': +"778650": installDir: Volcano Tower launch: - config: oslist: windows executable: volcano.exe type: default -'778700': +"778700": installDir: Amorous launch: - config: @@ -360365,10 +355064,10 @@ oslist: linux executable: Amorous.Game.Unix type: none -'778760': +"778760": installDir: The Agency - Chapter 2 launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows executable: nw.exe @@ -360377,7 +355076,7 @@ oslist: macos executable: nwjs.app type: none -'778770': +"778770": installDir: Ladybird Reflect launch: - config: @@ -360386,32 +355085,32 @@ type: default - config: oslist: linux - executable: ./Ladybird_Reflect + executable: "./Ladybird_Reflect" type: default -'778800': +"778800": installDir: HYBRIS - Pulse of Ruin launch: - config: oslist: windows executable: Game.exe type: default -'778810': +"778810": installDir: Soul for two launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows executable: Soulfortwo.exe type: default - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" executable: Game.exe type: default -'778830': +"778830": installDir: The Ritual launch: - executable: KoH.exe type: none -'778840': +"778840": installDir: Armored Evolution launch: - config: @@ -360422,7 +355121,7 @@ oslist: macos executable: Armored Evolution.app type: none -'778850': +"778850": installDir: Please close the doors launch: - config: @@ -360433,35 +355132,35 @@ oslist: windows executable: Game.exe type: default -'778860': +"778860": installDir: Animals Memory Insect launch: - config: oslist: windows executable: Animals Memory - Insect.exe type: config -'778870': +"778870": installDir: KOMMERSANT launch: - executable: kom.exe type: none -'778900': +"778900": installDir: Magical Star Pillars launch: - config: oslist: windows executable: Puzzle.exe type: none -'778910': {} -'778930': +"778910": {} +"778930": installDir: Property launch: - config: oslist: windows executable: Randomlevel.exe type: none -'778960': {} -'778980': +"778960": {} +"778980": installDir: The Drain Collector launch: - config: @@ -360476,38 +355175,38 @@ oslist: linux executable: TheDrainCollector.x86_64 type: none -'778990': {} -'779000': {} -'779050': +"778990": {} +"779000": {} +"779050": installDir: A tractor launch: - config: oslist: windows executable: Atractor.exe type: default -'779060': +"779060": installDir: Cyborg Invasion Shooter 2 Battle Of Earth launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: CIS2.exe type: default -'779070': +"779070": installDir: Steel Knight 1513 launch: - config: oslist: windows executable: STEEL_KNIGHT_1513.exe type: none -'779090': +"779090": installDir: Umfend launch: - config: oslist: windows executable: Umfend.exe type: none -'779100': +"779100": installDir: Daemonical launch: - config: @@ -360515,11 +355214,11 @@ description: Launch executable: daemonical.exe type: default -'779110': +"779110": installDir: Harsh launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Harsh.exe type: none @@ -360528,56 +355227,56 @@ description: notreadyforprimetime executable: Harsh.exe type: none -'779130': +"779130": installDir: Virtual Fighting Championship launch: - config: oslist: windows executable: VFC.exe type: vr -'779140': +"779140": installDir: Outrealm launch: - config: oslist: windows executable: Outrealm.exe type: default -'779150': +"779150": installDir: Shadow of Something launch: - executable: sos.exe type: default -'779160': +"779160": installDir: Realshot launch: - config: oslist: windows executable: Realshot.exe type: vr -'779170': {} -'779190': {} -'779220': +"779170": {} +"779190": {} +"779220": installDir: LOA Me And Angel launch: - config: oslist: windows executable: game.exe type: none -'779240': +"779240": installDir: Conquer launch: - config: oslist: windows executable: Conquer.exe type: vr -'779250': +"779250": installDir: Paradox Wrench launch: - config: oslist: windows executable: ParadoxWrench.exe type: default -'779290': +"779290": installDir: Stygian Reign of the Old Ones launch: - config: @@ -360586,19 +355285,19 @@ type: default - config: oslist: macos - executable: STYGIAN.app\\Contents\\MacOS\\STEAM + executable: "STYGIAN.app\\\\Contents\\\\MacOS\\\\STEAM" type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: STYGIAN.x86_64 type: default -'779300': +"779300": installDir: Battle of Kings launch: - executable: Battle Of Kings.exe -'779310': {} -'779320': +"779310": {} +"779320": installDir: Asura Valley launch: - config: @@ -360606,7 +355305,7 @@ description: 启动 executable: Asura_Valley.exe type: default -'779330': +"779330": installDir: Ninja Tycoon launch: - config: @@ -360624,12 +355323,12 @@ description: Play Ninja Tycoon executable: NinjaTycoon.x86 type: default -'779340': +"779340": installDir: Total War THREE KINGDOMS launch: - config: oslist: windows - description: 'Total War: Three Kingdoms' + description: "Total War: Three Kingdoms" executable: launcher/launcher.exe type: option1 workingdir: launcher @@ -360641,15 +355340,15 @@ oslist: linux executable: ThreeKingdoms.sh type: default -'779360': +"779360": installDir: Instant Death launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Instant Death.exe type: default -'779380': +"779380": installDir: Atmocity launch: - config: @@ -360657,7 +355356,7 @@ executable: Atmocity.exe type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: Atmocity.x86_64 type: none @@ -360665,18 +355364,18 @@ oslist: macos executable: Atmocity.app type: none -'779390': +"779390": installDir: Run Dorothy Run launch: - config: oslist: windows executable: RunDorothyRun.exe type: vr -'779410': +"779410": installDir: OutworldBattlegrounds launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: OutworldBattlegrounds.exe type: none @@ -360684,60 +355383,60 @@ oslist: macos executable: OutworldBattlegrounds.app type: none -'779420': - installDir: '#WarGames' +"779420": + installDir: "#WarGames" launch: - config: oslist: windows - executable: '#WarGames.exe' + executable: "#WarGames.exe" type: default - config: oslist: macos - executable: '#WarGames.app' + executable: "#WarGames.app" type: default -'779430': +"779430": installDir: Full Ace Tennis Simulator launch: - config: oslist: windows executable: FullAce.exe type: default -'779450': +"779450": installDir: Overlanders launch: - - arguments: '-FULLSCREEN' + - arguments: "-FULLSCREEN" config: - osarch: '64' + osarch: "64" oslist: windows executable: Overlanders.exe type: default -'779550': +"779550": installDir: The Rising of the Rose Ocelot launch: - config: oslist: windows executable: runGame.exe type: default -'779560': +"779560": installDir: Days Of A Princess launch: - executable: DaysOfAPrincess.exe type: none -'779570': +"779570": installDir: RouletteSimulator launch: - config: oslist: windows executable: RouletteSimulator.exe type: none -'779580': +"779580": installDir: Fat Foods launch: - config: oslist: windows executable: Fat Foods.exe type: vr -'779590': +"779590": installDir: Scavenger SV-4 launch: - config: @@ -360749,68 +355448,68 @@ description: Configure Scavenger SV-4 executable: ConfigTool.exe type: config -'779610': +"779610": installDir: Death Field launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: DeathField\\Binaries\\Win64\\DeathFieldClient-Win64-Shipping.exe + executable: "DeathField\\\\Binaries\\\\Win64\\\\DeathFieldClient-Win64-Shipping.exe" type: default -'779620': +"779620": installDir: EmptyTown launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: EmptyTown.exe type: vr -'779640': +"779640": installDir: MyGame launch: - executable: DeliverMe.exe type: none -'779650': +"779650": installDir: Ready Player One launch: - - arguments: '-windowed' + - arguments: "-windowed" config: - osarch: '64' + osarch: "64" oslist: windows executable: Oasis.exe type: vr -'779670': {} -'779700': +"779670": {} +"779700": installDir: In Between Games launch: - config: oslist: windows executable: ibg.exe type: default -'779730': +"779730": installDir: Foosball VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows - description: 'FoosballVR ' + description: "FoosballVR " executable: FoosballVR.exe type: vr - config: - osarch: '64' + osarch: "64" oslist: windows - description: 'FoosballVR ' + description: "FoosballVR " executable: FoosballVR.exe type: othervr -'779760': - installDir: Burak Bahar's Unseen Anchor +"779760": + installDir: "Burak Bahar's Unseen Anchor" launch: - config: oslist: windows - executable: windows_content\\UnseenAnchor.exe + executable: "windows_content\\\\UnseenAnchor.exe" type: none -'779770': {} -'779780': +"779770": {} +"779780": installDir: R Academy launch: - config: @@ -360833,27 +355532,27 @@ description: Launcg executable: R academy.py type: none -'779790': +"779790": installDir: cell launch: - config: oslist: windows executable: c.exe type: none -'779800': +"779800": installDir: Dangerous Level launch: - config: oslist: windows executable: Dangerous Level.exe type: default -'779840': +"779840": installDir: Forgotten Sound 1 - Revelation launch: - executable: Forgotten Sound 1.exe type: default -'779850': {} -'779870': +"779850": {} +"779870": installDir: Flatwaters launch: - config: @@ -360864,7 +355563,7 @@ oslist: linux executable: Flatwaters type: default -'779920': +"779920": installDir: Hexxon launch: - config: @@ -360879,7 +355578,7 @@ oslist: linux executable: Hexxon type: default -'779950': +"779950": installDir: Spirit Roots launch: - config: @@ -360887,32 +355586,30 @@ description: Launch executable: Spirit Roots.exe type: default -'779960': +"779960": installDir: BM Studio launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Button_Music.exe type: default -'779990': +"779990": installDir: Space Between Worlds launch: - config: oslist: windows executable: Space Between Worlds.exe type: default -'7800': +"7800": installDir: Stubbs the Zombie launch: - config: - osarch: '64' + osarch: "64" description: Stubbs 2021 - description_loc: - english: Stubbs 2021 executable: StubbsTheZombie.exe type: none -'78000': +"78000": installDir: Bejeweled 3 launch: - config: @@ -360921,7 +355618,7 @@ - config: oslist: macos executable: Bejeweled 3.app -'780000': +"780000": installDir: Critical Mess launch: - config: @@ -360932,8 +355629,8 @@ oslist: macos executable: Critical Mess.app type: default -'780010': {} -'780020': +"780010": {} +"780020": installDir: True Hentai Puzzle launch: - config: @@ -360948,29 +355645,29 @@ oslist: macos executable: True Hentai Puzzle.app type: default -'780080': +"780080": installDir: Bikour! launch: - config: oslist: windows executable: Bikour.exe type: default -'780110': {} -'780120': +"780110": {} +"780120": installDir: Car Crash Couch Party launch: - config: oslist: windows executable: CCCP.exe type: default -'780150': +"780150": installDir: TheStudio launch: - config: oslist: windows executable: TheStudio.exe type: none -'780160': +"780160": installDir: AllStarsRacingCup launch: - config: @@ -360979,9 +355676,9 @@ type: default - config: oslist: macos - executable: AllStarsRacingCup.app\\Contents\\MacOS\\AllStarsRacingCup + executable: "AllStarsRacingCup.app\\\\Contents\\\\MacOS\\\\AllStarsRacingCup" type: default -'780210': +"780210": installDir: Freeways launch: - config: @@ -360990,23 +355687,23 @@ type: default - config: oslist: macos - executable: Freeways.app\\Contents\\MacOS\\Freeways + executable: "Freeways.app\\\\Contents\\\\MacOS\\\\Freeways" type: default -'780220': +"780220": installDir: Gump launch: - config: oslist: windows executable: Gump.exe type: default -'780230': +"780230": installDir: Missing Road launch: - config: oslist: windows executable: Missing_Road.exe type: default -'780260': +"780260": installDir: Stranded Alone launch: - config: @@ -361015,61 +355712,55 @@ type: default - config: oslist: macos - executable: Stranded Alone.app\\Contents\\MacOS\\Stranded Alone + executable: "Stranded Alone.app\\\\Contents\\\\MacOS\\\\Stranded Alone" type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: 64-bit executable: Stranded Alone.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: linux description: 32-bit executable: Stranded Alone.x86 type: option2 -'780270': +"780270": installDir: Brimstone Brawlers launch: - config: oslist: windows executable: BrimstoneBrawlers.exe type: none -'780280': +"780280": installDir: Summer Funland launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Summer Funland.exe type: vr -'780290': +"780290": installDir: Gloomhaven launch: - config: oslist: windows description: Play Gloomhaven - description_loc: - english: Play Gloomhaven executable: GH.exe type: none - config: oslist: macos description: Play Gloomhaven - description_loc: - english: Play Gloomhaven executable: GH_OSX.app type: none - - arguments: '-force-d3d12' + - arguments: "-force-d3d12" config: betakey: open_beta oslist: windows description: Force DirectX 12 (better performance on newer GFX cards) - description_loc: - english: Force DirectX 12 (better performance on newer GFX cards) executable: GH.exe -'780310': +"780310": installDir: Riftbreaker launch: - executable: bin/riftbreaker_win_release.exe @@ -361092,7 +355783,7 @@ workingdir: bin nameLocalized: schinese: The Riftbreaker 银河破裂者 -'780320': +"780320": installDir: Snow White Solitaire. Legacy of Dwarves launch: - config: @@ -361103,8 +355794,8 @@ oslist: macos executable: Snow White Solitaire. Legacy of Dwarves.app type: default -'780330': {} -'780350': +"780330": {} +"780350": installDir: Unruly Heroes launch: - config: @@ -361113,17 +355804,17 @@ type: default nameLocalized: sc_schinese: 非常英雄 -'780360': {} -'780370': +"780360": {} +"780370": installDir: Bubble Blast Rescue VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: BubbleBlastRescueVRSteam.exe type: vr -'780380': {} -'780390': +"780380": {} +"780390": installDir: Space Bob vs. The Replicons launch: - config: @@ -361135,21 +355826,21 @@ executable: SpaceBob.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: SpaceBob.x86_64 type: default -'780400': {} -'780410': {} -'780430': - installDir: Hiro's Forest Rumble +"780400": {} +"780410": {} +"780430": + installDir: "Hiro's Forest Rumble" launch: - config: oslist: windows - executable: Hiro's Forest Rumble PC/HirosForestRumble.exe + executable: "Hiro's Forest Rumble PC/HirosForestRumble.exe" type: default -'780440': {} -'780500': +"780440": {} +"780500": installDir: Suzy Cube launch: - config: @@ -361162,56 +355853,56 @@ description: Launch options for Windows. executable: SuzyCube.exe type: default -'780520': +"780520": installDir: Technolites_E1 launch: - config: oslist: windows executable: Technolites_E1.exe type: default -'780570': +"780570": installDir: AI Anomaly launch: - config: oslist: windows executable: AI_Anomaly.exe type: none -'780580': +"780580": installDir: Lost in the Dungeon launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Lost in the Dungeon.exe type: default - config: oslist: macos - executable: Lost in the Dungeon.app\\Contents\\MacOS\\Lost in the Dungeon + executable: "Lost in the Dungeon.app\\\\Contents\\\\MacOS\\\\Lost in the Dungeon" type: default - config: oslist: linux executable: Lost in the Dungeon.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: Lost in the Dungeon.exe type: default -'780590': +"780590": installDir: Jumanji The VR Adventure launch: - config: oslist: windows executable: JumanjiVR.exe type: vr -'780630': - installDir: The Painter's Apprentice +"780630": + installDir: "The Painter's Apprentice" launch: - config: oslist: windows executable: the_painters_apprentice.exe type: default -'780670': +"780670": installDir: Fantasy of Expedition launch: - config: @@ -361228,60 +355919,60 @@ koreana: 기묘한 모험 schinese: 奇幻东征 tchinese: 奇幻東征 -'780690': +"780690": installDir: UniversityTycoon2019 launch: - config: oslist: windows executable: UniversityTycoon2019.exe type: none -'780710': +"780710": installDir: TURRETSYNDROME launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TURRETSYNDROME.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: TURRETSYNDROME.exe type: othervr - config: betakey: test - osarch: '64' + osarch: "64" oslist: windows description: New Test executable: newTDVRtest.exe type: default -'780740': +"780740": installDir: Silent Footsteps launch: - config: oslist: windows executable: Silent Footsteps.exe type: default -'780750': +"780750": installDir: Snake Classic launch: - executable: Snake Classic.exe type: none -'780760': +"780760": installDir: Lots of Balls launch: - config: oslist: windows - executable: Lots of Balls\\Lots of Balls.exe + executable: "Lots of Balls\\\\Lots of Balls.exe" type: default -'780800': +"780800": installDir: Ball laB launch: - config: oslist: windows executable: BalllaB.exe type: default -'780820': +"780820": installDir: XOXO Blood Droplets launch: - config: @@ -361292,46 +355983,46 @@ oslist: macos executable: XOXOBloodDroplets.app type: none -'780840': +"780840": installDir: Kuchisake Onna - 口裂け女 launch: - executable: Kuchisake-Onna.exe type: none -'780850': +"780850": installDir: Recreational Dreaming launch: - config: oslist: windows executable: Recreational Dreaming.exe type: vr -'780930': +"780930": installDir: Cute War:Zero launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: CuteWar0.exe type: none -'780970': +"780970": installDir: Food dreamworks launch: - config: oslist: windows executable: game.exe type: default -'7810': +"7810": installDir: Top Spin 2 launch: - - executable: Data\\Top Spin 2.exe + - executable: "Data\\\\Top Spin 2.exe" workingdir: Data -'781000': +"781000": installDir: Mystic Space launch: - config: oslist: windows executable: mystic space.exe type: default -'781030': +"781030": installDir: DKOnline launch: - arguments: steam 3.209.176.82 28004 @@ -361346,64 +356037,62 @@ description: Development 서버 executable: DKonline.exe type: none -'781040': +"781040": installDir: MetropolisVR launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Lauch - description_loc: - english: Lauch executable: MissionX.exe type: default -'781050': +"781050": installDir: Evie launch: - config: oslist: windows executable: Evie.exe type: default -'781100': +"781100": installDir: Winner Winner Chicken Dinner! launch: - executable: wwcd.exe type: default -'781110': +"781110": installDir: Later On launch: - config: oslist: windows executable: Game.exe type: default -'781120': +"781120": installDir: Alan Rift Breakers launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: - osarch: '64' + osarch: "64" oslist: windows description: Alan Rift Breakers executable: RiftBreakers.exe type: option1 - config: - osarch: '64' + osarch: "64" oslist: windows description: Alan Rift Breakers (no overlay) executable: RiftBreakers.exe type: option2 nameLocalized: - french: 'Alan : Briseurs de Failles' -'781130': + french: "Alan : Briseurs de Failles" +"781130": installDir: Creatura launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Creatura.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Creatura.x86_64 type: default @@ -361411,106 +356100,106 @@ oslist: macos executable: creatura.app type: default -'781150': +"781150": installDir: GeneRain launch: - config: oslist: windows executable: GeneRain.exe type: none -'781200': {} -'781220': +"781200": {} +"781220": installDir: Drakkhen launch: - config: oslist: windows executable: dosbox.exe type: default -'781230': +"781230": installDir: Bubble GhostBubble + launch: - config: oslist: windows executable: dosbox.exe type: default -'781240': +"781240": installDir: Mystical launch: - config: oslist: windows executable: dosbox.exe type: default -'781250': +"781250": installDir: Eternam launch: - - arguments: ' -conf fdd.conf' + - arguments: " -conf fdd.conf" config: oslist: windows description: FDD version executable: dosbox.exe type: option1 - - arguments: '-conf cd.conf' + - arguments: "-conf cd.conf" config: oslist: windows description: CD version executable: dosbox.exe type: option2 -'781260': +"781260": installDir: Marco Polo launch: - config: oslist: windows executable: dosbox.exe type: default -'781270': +"781270": installDir: Chaos Control launch: - config: oslist: windows executable: dosbox.exe type: default -'781280': +"781280": installDir: Time Gate Knight Chase launch: - config: oslist: windows executable: dosbox.exe type: default -'781290': +"781290": installDir: Hostages launch: - config: oslist: windows executable: dosbox.exe type: default -'781310': +"781310": installDir: AlphaOmega The Christian RPG launch: - config: oslist: windows - executable: Alpha Omega - The Christian RPG\\Game.exe + executable: "Alpha Omega - The Christian RPG\\\\Game.exe" type: default -'781320': +"781320": installDir: Guns&Notes launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: VRExpPluginExample.exe type: vr -'781380': +"781380": installDir: SOS Atlas launch: - executable: SOSAtlas.exe type: none -'781440': - installDir: 'OH MY GOD, LOOK AT THIS KNIGHT' +"781440": + installDir: "OH MY GOD, LOOK AT THIS KNIGHT" launch: - config: oslist: windows executable: OH_MY_GOD__LOOK_AT_THIS_KNIGHT.exe type: default -'781480': +"781480": installDir: Tech Support Error Unknown launch: - config: @@ -361525,7 +356214,7 @@ oslist: linux executable: techsupport.x86 type: default -'781490': +"781490": installDir: Lonely Trip launch: - config: @@ -361534,232 +356223,232 @@ type: none - config: oslist: macos - executable: Lonely Trip.app\\Contents\\MacOS\\Lonely Trip + executable: "Lonely Trip.app\\\\Contents\\\\MacOS\\\\Lonely Trip" type: none -'781500': +"781500": installDir: Candy Snake Master launch: - config: oslist: windows executable: CandySnakeMaster.exe type: default -'781520': +"781520": installDir: Polyventure launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: PolyventureW\\Polyventure86_64.exe + executable: "PolyventureW\\\\Polyventure86_64.exe" type: default - config: oslist: macos - executable: PolyventureM\\PolyventureMacUniversal.app + executable: "PolyventureM\\\\PolyventureMacUniversal.app" type: default - config: - osarch: '64' + osarch: "64" oslist: linux - executable: PolyventureL\\PolyventureLinuxUniversal.x86_64 + executable: "PolyventureL\\\\PolyventureLinuxUniversal.x86_64" type: default -'781560': {} -'781590': +"781560": {} +"781590": installDir: sgyxz launch: - config: oslist: windows executable: Game.exe type: default -'781600': {} -'781610': +"781600": {} +"781610": installDir: Night Fly launch: - executable: NF.exe type: default -'781630': +"781630": installDir: Iffy Institute launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Play Iffy Institute (32-bit) executable: 32 Bit/Iffy Institute.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows description: Play Iffy Institute (64-bit) executable: 64 Bit/Iffy Institute.exe type: default -'781640': +"781640": installDir: Run Jump Fail launch: - executable: RunJumpFail.exe type: none -'781650': +"781650": installDir: Endlessness launch: - config: oslist: windows executable: Endlessness.exe type: default -'781660': +"781660": installDir: Space Rocket launch: - executable: Space Rocket.exe type: none -'781670': +"781670": installDir: the_directed launch: - config: oslist: windows executable: directed.exe type: default -'781680': +"781680": installDir: In Darkness launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: InDarkness.exe type: default -'781700': {} -'781760': +"781700": {} +"781760": installDir: Trivia Vault Health Trivia Deluxe launch: - config: oslist: windows executable: Trivia Vault Deluxe Medical Health.exe type: default -'781780': +"781780": installDir: Behind Walls launch: - config: oslist: windows executable: Behind_Walls.exe type: default -'781800': +"781800": installDir: Walhall launch: - config: oslist: windows executable: Walhall.exe type: default -'781810': +"781810": installDir: Oik4 launch: - - arguments: '-windowed' + - arguments: "-windowed" config: oslist: windows executable: Oik4.exe type: default -'781820': +"781820": installDir: OM2 launch: - config: oslist: windows executable: OM2.exe type: default -'781830': +"781830": installDir: Survival_Space_Unlimited_Shooting launch: - config: oslist: windows executable: ssus.exe type: default -'781840': +"781840": installDir: Sub Terra Draconis launch: - config: oslist: windows executable: Draconis.exe type: default -'781860': +"781860": installDir: Stick Adventures Wizard Madness Chapter 1 launch: - config: oslist: windows executable: RUN_GAME.exe type: default -'781880': +"781880": installDir: Object Cleaning launch: - config: oslist: windows executable: object.exe type: default -'781890': +"781890": installDir: Darkness Restricted launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Darkness Restricted.exe type: default -'781910': {} -'781930': +"781910": {} +"781930": installDir: Count Dookie Fart launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: CountDookie_64bit.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: CountDookie_32bit.exe type: default -'781940': {} -'781950': +"781940": {} +"781950": installDir: Galactic Delivery launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: GalacticDelivery_64Bit.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: GalacticDelivery_32Bit.exe type: default -'781990': +"781990": installDir: Wequer launch: - config: oslist: windows executable: Wequer.exe type: default -'782010': {} -'782020': +"782010": {} +"782020": installDir: EndLess Crusade launch: - config: oslist: windows executable: EndlessCrusade.exe type: vr -'782050': +"782050": installDir: Frio3 Parting and Meeting launch: - config: oslist: windows executable: friothree.exe type: none -'782060': {} -'782070': +"782060": {} +"782070": installDir: Late Night 1320 launch: - config: - osarch: '64' + osarch: "64" executable: ln1320.exe type: config -'782080': {} -'782090': {} -'782100': - installDir: '#CuteSnake' +"782080": {} +"782090": {} +"782100": + installDir: "#CuteSnake" launch: - executable: SN1.exe type: default -'782120': +"782120": installDir: Super Gravity Ball launch: - config: @@ -361771,45 +356460,45 @@ executable: Super Gravity Ball.app type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: Super Gravity Ball.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: Super Gravity Ball.x86_64 type: none -'782130': +"782130": installDir: Wer weiß denn sowas launch: - config: oslist: windows executable: Wer Weiß Denn Sowas.exe type: default -'782140': +"782140": installDir: Re-Legion launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Re-Legion.exe type: default -'782160': +"782160": installDir: Raptainment launch: - config: oslist: windows executable: saad2.exe type: default -'782180': +"782180": installDir: defeat_devil launch: - config: oslist: windows executable: game.exe type: default -'782190': +"782190": installDir: The Tail Makes the Fox - Episode 1 launch: - config: @@ -361824,68 +356513,68 @@ oslist: linux executable: The_Tail_Makes_the_Fox.sh type: default -'782210': +"782210": installDir: Arc Surfer launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ArcSurfer.exe type: vr -'782280': +"782280": installDir: Beer! launch: - - arguments: '-windowed' + - arguments: "-windowed" config: oslist: windows executable: Beer!.exe type: default - - arguments: '-fullscreen' + - arguments: "-fullscreen" config: oslist: windows description: in full screen mode executable: Beer!.exe type: option1 - - arguments: '--setup' + - arguments: "--setup" config: oslist: windows executable: Beer!.exe type: config - - arguments: '-windowed' + - arguments: "-windowed" config: oslist: linux executable: Game.sh type: default - - arguments: '-fullscreen' + - arguments: "-fullscreen" config: oslist: linux description: in full screen mode executable: Game.sh type: option1 -'782290': +"782290": installDir: TavernTableTactics launch: - config: oslist: windows executable: TavernTableTactics.exe type: default -'782300': +"782300": installDir: Unstoppable Hamster launch: - config: oslist: windows executable: Unstoppable Hamster.exe type: none -'782320': {} -'782330': +"782320": {} +"782330": installDir: DOOMEternal launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: idTechLauncher.exe type: default -'782340': +"782340": installDir: Lake of Voices launch: - config: @@ -361896,54 +356585,54 @@ oslist: macos executable: Lake-of-Voices.app type: none -'782350': {} -'782380': +"782350": {} +"782380": installDir: Mirage of The Dragon launch: - config: oslist: windows executable: Mirage of Dragon.exe type: default -'782410': +"782410": installDir: Metropolis launch: - config: oslist: windows executable: Metropolis.exe type: default -'782420': +"782420": installDir: StretchingVr launch: - config: - osarch: '64' + osarch: "64" executable: StretchingVR.exe type: none - config: - osarch: '64' + osarch: "64" oslist: windows executable: StretchingVR.exe type: vr -'782430': {} -'782450': +"782430": {} +"782450": installDir: Fleazer launch: - executable: Fleazer The Game.blend.exe type: default -'782460': +"782460": installDir: Tank Slam launch: - config: oslist: windows executable: TankSlam.exe type: default -'782510': +"782510": installDir: Draft Day Sports Pro Football 2018 launch: - config: oslist: windows executable: DDSPF18.exe type: default -'782570': +"782570": installDir: Endless Road launch: - config: @@ -361954,29 +356643,29 @@ oslist: macos executable: EndlessRoad.app type: none -'782610': +"782610": installDir: Tank 51 launch: - config: oslist: windows executable: Tank 51.exe type: default -'782630': +"782630": installDir: Twisted Sails launch: - config: oslist: windows executable: Twisted Sails.exe type: none -'782640': {} -'782650': +"782640": {} +"782650": installDir: Drones and Ruins launch: - config: oslist: windows executable: Drones_and_Ruins.exe type: default -'782660': +"782660": installDir: Modern Tanks launch: - config: @@ -361991,7 +356680,7 @@ oslist: macos executable: Modern Tanks.app type: default -'782670': +"782670": installDir: Battle Tanks launch: - config: @@ -362006,22 +356695,22 @@ oslist: macos executable: BattleTanks.app type: none -'782690': +"782690": installDir: Gazing from beyond launch: - config: oslist: windows executable: Gfb.exe type: none -'782700': +"782700": installDir: Jerry and the mystery loot box launch: - config: oslist: windows executable: Jerry and the mystery loot box.exe type: none -'782940': {} -'7830': +"782940": {} +"7830": installDir: Men of War launch: - config: @@ -362031,16 +356720,16 @@ oslist: windows description: Launch Editor executable: mow_editor.exe -'783050': - installDir: Bear With Me - Collector's Edition +"783050": + installDir: "Bear With Me - Collector's Edition" launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: Bear With Me.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: Bear With Me.exe type: default @@ -362050,35 +356739,35 @@ type: default - config: oslist: macos - executable: Bear With Me.app\\Contents\\MacOS\\Bear With Me + executable: "Bear With Me.app\\\\Contents\\\\MacOS\\\\Bear With Me" type: default -'783060': +"783060": installDir: AIDEN launch: - config: oslist: windows executable: AIDEN.exe type: default -'783070': +"783070": installDir: VRobot launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: vrobot.exe type: vr - config: oslist: macos - executable: VRobot.app\\Cantents\\MacOS\\VRobot + executable: "VRobot.app\\\\Cantents\\\\MacOS\\\\VRobot" type: vr -'783090': +"783090": installDir: Neon launch: - config: oslist: windows executable: NEON_steam.exe type: othervr -'783120': +"783120": installDir: hello_lady launch: - executable: hello.exe @@ -362088,32 +356777,32 @@ japanese: ハロー・レディ! schinese: 淑女同萌! tchinese: 淑女同萌! -'783140': +"783140": installDir: Replace of the Reality launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Rotr.exe type: default -'783170': +"783170": installDir: Insomnia The Ark launch: - config: betakey: testing oslist: windows - executable: Insomnia_v2\\Binaries\\Win64\\Insomnia_v2-Win64-Shipping.exe + executable: "Insomnia_v2\\\\Binaries\\\\Win64\\\\Insomnia_v2-Win64-Shipping.exe" type: default -'783180': +"783180": installDir: Fairune Collection launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Fairune.exe type: default -'783190': {} -'783200': +"783190": {} +"783200": installDir: Forbidden Clicker Party launch: - config: @@ -362122,37 +356811,37 @@ type: none - config: oslist: macos - executable: The Forbidden Clicker Party.app\\Contents\\MacOS\\The Forbidden Clicker Party + executable: "The Forbidden Clicker Party.app\\\\Contents\\\\MacOS\\\\The Forbidden Clicker Party" type: none -'783210': +"783210": installDir: Aggressors Ancient Rome launch: - config: oslist: windows executable: autorun.exe type: default -'783220': +"783220": installDir: Blockshock launch: - config: oslist: windows executable: Block Shock.exe type: default -'783230': +"783230": installDir: Way Of The Orb launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Way Of The Orb executable: Way of the Orb.exe type: vr -'783240': +"783240": installDir: Die pig die Battle Royale launch: - executable: dpd.exe type: none -'783250': +"783250": installDir: CONTAINMENT launch: - config: @@ -362167,16 +356856,16 @@ oslist: linux executable: Containment.x86_64 type: default -'783260': +"783260": installDir: CRUSH launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: nw.exe type: none - config: - osarch: '32' + osarch: "32" oslist: windows executable: nw.exe type: none @@ -362184,64 +356873,64 @@ oslist: macos executable: nw.app type: default -'783270': +"783270": installDir: Seek_and_Destroy_Steampunk_Arcade launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SteamHammerVR.exe type: vr -'783310': +"783310": installDir: Burden launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Burden.exe type: default -'783320': {} -'783330': +"783320": {} +"783330": installDir: Super Robolom launch: - config: oslist: windows executable: SuperRobolom.exe type: default -'783340': +"783340": installDir: Fracter launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Fracter.exe type: default - config: oslist: macos - executable: FRACTER.app\\Contents\\MacOS\\FRACTER + executable: "FRACTER.app\\\\Contents\\\\MacOS\\\\FRACTER" type: default -'783400': +"783400": installDir: Lexie launch: - config: oslist: windows executable: Lexie The Takeover.exe type: default -'783410': {} -'783420': +"783410": {} +"783420": installDir: Elementium launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: RomeIllusion.exe type: none -'783430': - installDir: Gatlin' +"783430": + installDir: "Gatlin'" launch: - config: oslist: windows - executable: Gatlin'.exe + executable: "Gatlin'.exe" type: default - config: oslist: linux @@ -362249,48 +356938,48 @@ type: default - config: oslist: macos - executable: Contents\\MacOS\\Gatlin' + executable: "Contents\\\\MacOS\\\\Gatlin'" type: default -'783440': +"783440": installDir: Seven Mysteries - The Last Page launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows executable: Game.exe type: default -'783450': +"783450": installDir: HYPERGUN launch: - executable: Hypergun.exe type: none -'783470': {} -'783560': +"783470": {} +"783560": installDir: MathTile launch: - config: oslist: windows executable: MathTile.exe type: none -'783590': +"783590": installDir: Age of Gladiators II Rome launch: - executable: AoGII.exe type: default -'783600': {} -'783650': +"783600": {} +"783650": installDir: Keys launch: - config: oslist: windows executable: Game.exe type: none -'783720': +"783720": installDir: Ninja Striker! launch: - executable: NinjaStriker.exe type: none -'783770': +"783770": installDir: Ironsight_wpg launch: - arguments: ip=ironsight-ch1.koreacentral.cloudapp.azure.com port=28000 use_steam=1 @@ -362298,7 +356987,7 @@ oslist: windows executable: launcher.exe type: none -'783790': +"783790": installDir: Survivors of Borridor launch: - config: @@ -362306,22 +356995,22 @@ executable: SoB.exe type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: SoB.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: SoB.x86_64 type: none -'783810': +"783810": installDir: 牧剑:化神书(Tale Of Swords Mystery Scroll) launch: - executable: MJ_HuaShenShu.exe type: none -'783820': {} -'783840': +"783820": {} +"783840": installDir: Lakeview Valley - murder RPG launch: - config: @@ -362332,11 +357021,11 @@ oslist: macos executable: Lakeview Valley.app type: default -'783850': +"783850": installDir: Derpy Pirates! The search for the bungalow launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: derpypirates.exe type: default @@ -362345,29 +357034,29 @@ executable: derpypirates.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: derpypirates.x86_64 type: default -'783860': +"783860": installDir: Horse Riding Deluxe launch: - - arguments: '-nohmd' + - arguments: "-nohmd" config: - osarch: '64' + osarch: "64" oslist: windows executable: HorseRidingDeluxe.exe type: none -'783890': +"783890": installDir: BRIGHTEST launch: - config: oslist: windows executable: BRIGHTEST.exe type: default -'783900': {} -'783920': {} -'783940': +"783900": {} +"783920": {} +"783940": installDir: Forgotten Hill Mementoes launch: - config: @@ -362378,58 +357067,58 @@ oslist: windows executable: Forgotten Hill Mementoes.exe type: default -'783960': +"783960": installDir: Forgotten Sound 2 Destiny launch: - executable: ForgottenSound2.exe type: default -'783970': {} -'783980': {} -'7840': +"783970": {} +"783980": {} +"7840": installDir: Death Track launch: - executable: deathtrack.exe -'784000': {} -'784010': +"784000": {} +"784010": installDir: Dragon View launch: - config: oslist: windows executable: dragon view.exe type: default -'784030': {} -'784040': +"784030": {} +"784040": installDir: Food Monster and Animals Memory Match launch: - config: oslist: windows executable: Food Monster and Animals Memory Match.exe type: default -'784050': +"784050": installDir: Filthy Hands launch: - config: oslist: windows executable: FilthyHands.exe type: default -'784060': {} -'784080': +"784060": {} +"784080": installDir: MechWarrior 5 Mercenaries launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: MechWarrior.exe type: default -'784100': +"784100": installDir: Gone Fireflies launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows executable: nw.exe type: default -'784110': +"784110": installDir: blogicblox launch: - config: @@ -362444,14 +357133,14 @@ oslist: macos executable: blogicblox.app type: default -'784130': +"784130": installDir: Treasure Stack launch: - config: oslist: windows executable: Treasure Stack.exe type: default -'784150': +"784150": installDir: SovietRepublic launch: - config: @@ -362460,7 +357149,7 @@ type: default nameLocalized: schinese: 苏维埃共和国 (Soviet Republic) -'784180': +"784180": installDir: AmericanFarmer launch: - config: @@ -362475,7 +357164,7 @@ oslist: linux executable: Game type: default -'784890': +"784890": installDir: Bashville launch: - config: @@ -362486,23 +357175,23 @@ oslist: macos executable: Bashville.app type: default -'784940': +"784940": installDir: Countryballs Over The World launch: - config: oslist: windows executable: game.exe type: none -'784950': +"784950": installDir: Conflict of Nations launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Conflict of Nations.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: Conflict of Nations.exe type: default @@ -362510,28 +357199,28 @@ oslist: macos executable: Conflict of Nations.app/Contents/MacOS/Conflict of Nations type: default -'7850': +"7850": installDir: Cryostasis launch: - config: oslist: windows executable: Cryostasis.exe -'785030': +"785030": installDir: ee launch: - config: oslist: windows executable: Little adventurer III.exe type: default -'785050': {} -'785070': +"785050": {} +"785070": installDir: Dig and Shoot launch: - config: oslist: windows executable: Dig and Shoot.exe type: default -'785100': +"785100": installDir: CosmicTopSecret launch: - config: @@ -362542,14 +357231,14 @@ oslist: macos executable: CTS_Mac/CosmicTopSecret.app type: none -'785110': +"785110": installDir: Anime girl Or Bottle launch: - config: oslist: windows executable: AGOBdlc.exe type: default -'785130': +"785130": installDir: Clawface_Build launch: - config: @@ -362562,19 +357251,19 @@ type: none - config: oslist: macos - executable: Clawface.app\\Contents\\MacOS\\Clawface + executable: "Clawface.app\\\\Contents\\\\MacOS\\\\Clawface" type: none -'785140': {} -'785240': {} -'785260': +"785140": {} +"785240": {} +"785260": installDir: Team Sonic Racing launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: GameApp_PcDx11_x64Final.exe type: default -'785430': +"785430": installDir: spacefarm launch: - config: @@ -362585,31 +357274,31 @@ oslist: macos executable: SPACEFARM.app type: default -'785460': {} -'785480': +"785460": {} +"785480": installDir: Titanic - Adventure Out Of Time launch: - config: oslist: windows executable: TI.EXE type: config -'785560': +"785560": installDir: Scutter launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: scutter.exe type: vr -'785590': +"785590": installDir: The Real Laser Ball launch: - config: oslist: windows executable: TRLB.exe type: default -'785610': {} -'785620': +"785610": {} +"785620": installDir: Spring It! launch: - config: @@ -362620,26 +357309,26 @@ oslist: macos executable: SpringIt-Mac.app type: default -'785640': +"785640": installDir: Luminescence launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: Luminescence-v1.1-win/Luminescence.exe type: default -'785660': +"785660": installDir: Subway Simulator launch: - config: oslist: macos - executable: Subway Simulator.app\\Contents\\MacOS\\Subway Simulator + executable: "Subway Simulator.app\\\\Contents\\\\MacOS\\\\Subway Simulator" type: none - config: oslist: windows executable: Subway Simulator.exe type: none -'785670': +"785670": installDir: Hunting Animals launch: - config: @@ -362650,7 +357339,7 @@ oslist: windows executable: Great Hunt - North America.exe type: none -'785680': +"785680": installDir: Space Launch Engineer launch: - config: @@ -362659,9 +357348,9 @@ type: default - config: oslist: macos - executable: Space Launch Engineer.app\\Contents\\MacOS\\Space Launch Engineer + executable: "Space Launch Engineer.app\\\\Contents\\\\MacOS\\\\Space Launch Engineer" type: default -'785690': +"785690": installDir: Army Truck launch: - config: @@ -362670,13 +357359,13 @@ type: none - config: oslist: macos - executable: desTRUCKtors Warfare Showdown.app\\Contents\\MacOS\\desTRUCKtors Warfare Showdown + executable: "desTRUCKtors Warfare Showdown.app\\\\Contents\\\\MacOS\\\\desTRUCKtors Warfare Showdown" type: none -'785740': +"785740": installDir: This Is the Police 2 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Police2.exe type: default @@ -362685,33 +357374,33 @@ executable: Police2.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Police2.x86_64 type: default -'785750': +"785750": installDir: thdx launch: - config: oslist: windows executable: thdxsteam.exe type: none -'785760': +"785760": installDir: Crumple Zone launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: CrumpleZone.exe type: none -'785780': +"785780": installDir: OfMiceAndSand launch: - config: oslist: windows executable: SabakunoNezumiDan.exe type: default -'785790': +"785790": installDir: WHAT THE GOLF launch: - config: @@ -362723,26 +357412,26 @@ executable: WHATTHEGOLF.app type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: WHAT THE GOLF type: none -'785830': +"785830": installDir: Adonis launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Adonis.exe type: default - - arguments: '-dx12' + - arguments: "-dx12" config: - osarch: '64' + osarch: "64" oslist: windows description: Adonis RTX (Experimental) executable: Adonis.exe type: option1 -'785840': +"785840": installDir: MoeJigsaw launch: - config: @@ -362753,27 +357442,27 @@ oslist: macos executable: MoeJigsaw.app type: default -'785850': +"785850": installDir: Valthirian Arc launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: VAHSS.exe type: default -'785860': +"785860": installDir: Zombie Watch launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ZombieWatch.exe type: default -'785870': +"785870": installDir: Admine launch: - config: - osarch: '64' + osarch: "64" oslist: linux executable: linuxbin/adminegame type: default @@ -362787,12 +357476,12 @@ executable: winbin/adminegameDevdebug.exe type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: Play Admine (Developer Mode) executable: linuxbin/adminegameDevdebug type: none -'785880': +"785880": installDir: OVERWHELM launch: - config: @@ -362803,163 +357492,163 @@ oslist: macos executable: OVERWHELM.app type: default -'785890': +"785890": installDir: Hexologic launch: - config: oslist: windows executable: Hexologic.exe type: default - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" config: oslist: windows executable: Hexologic.exe type: config - config: oslist: windows - executable: LevelEditor\\HexologicCreator.exe + executable: "LevelEditor\\\\HexologicCreator.exe" type: editor - config: - osarch: '64' + osarch: "64" oslist: linux executable: Hexologic.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Hexologic.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: LevelEditor/HexologicCreator.x86_64 type: editor - config: - osarch: '32' + osarch: "32" oslist: linux executable: LevelEditorHexologicCreator.x86 type: editor -'785920': +"785920": installDir: Madness of the Architect launch: - config: oslist: windows executable: mota.exe type: default -'785930': +"785930": installDir: Command Modern Air Naval Operations launch: - description: Launch - executable: GameMenu_CTSS\\autorun.exe + executable: "GameMenu_CTSS\\\\autorun.exe" type: default -'785940': +"785940": installDir: Strategic Command Classic Global Conflict launch: - config: oslist: windows executable: autorun.exe type: default -'785950': +"785950": installDir: Sacrifice Dungeon launch: - executable: Sacrifice Dungeon.exe type: default -'785960': {} -'7860': +"785960": {} +"7860": installDir: NecroVisioN launch: - - executable: Bin\\NecroVisioN.exe + - executable: "Bin\\\\NecroVisioN.exe" workingdir: Bin -'786020': +"786020": installDir: Warhead launch: - config: oslist: windows executable: game.exe type: default -'786040': +"786040": installDir: Haunted Hotel Lonely Dream launch: - config: oslist: windows executable: Haunted Hotel Lonely Dream.exe type: default -'786050': - installDir: Redemption Cemetery Clock of Fate Collector's Edition +"786050": + installDir: "Redemption Cemetery Clock of Fate Collector's Edition" launch: - config: oslist: windows executable: RedemptionCemetery_ClockOfFate_CE.exe type: default -'786060': - installDir: Sea of Lies Burning Coast Collector's Edition +"786060": + installDir: "Sea of Lies Burning Coast Collector's Edition" launch: - config: oslist: windows executable: SeaOfLies_BurningCoast_CE.exe type: default -'786070': - installDir: Myths of the World Spirit Wolf Collector's Edition +"786070": + installDir: "Myths of the World Spirit Wolf Collector's Edition" launch: - config: oslist: windows executable: MythsOfTheWorld_SpiritWolf_CE.exe type: default -'786080': - installDir: Grim Facade A Wealth of Betrayal Collector's Edition +"786080": + installDir: "Grim Facade A Wealth of Betrayal Collector's Edition" launch: - config: oslist: windows executable: Grim_Facade_A_Wealth_of_Betrayal_CE.exe type: default -'786090': - installDir: Rite of Passage Hide and Seek Collector's Edition +"786090": + installDir: "Rite of Passage Hide and Seek Collector's Edition" launch: - config: oslist: windows executable: RiteOfPassage_HideAndSeek_CE.exe type: default -'786100': - installDir: Maestro Notes of Life Collector's Edition +"786100": + installDir: "Maestro Notes of Life Collector's Edition" launch: - config: oslist: windows executable: Maestro_NotesofLifeCE.exe type: default -'786110': +"786110": installDir: Cubes launch: - config: oslist: windows executable: cubes_0_1_4.exe type: vr -'786120': +"786120": installDir: GalaxyWideDomanation launch: - executable: Galaxy Wide Domination.exe type: none -'786130': +"786130": installDir: Teeny Heist launch: - config: oslist: windows executable: TeenyHeist.exe type: default -'786140': +"786140": installDir: Plat4mer launch: - config: oslist: windows executable: plat4mer.exe type: default -'786170': +"786170": installDir: Bomb Bay launch: - config: oslist: windows executable: Bomb Bay.exe type: default -'786180': +"786180": installDir: ReHack launch: - config: @@ -362968,18 +357657,18 @@ type: default - config: betakey: test - osarch: '64' + osarch: "64" oslist: windows executable: steamhandler.exe type: default -'786280': +"786280": installDir: Armored Squad launch: - config: oslist: windows executable: ArmoredSquad.exe type: default -'786290': +"786290": installDir: Undercover Agent launch: - config: @@ -362994,7 +357683,7 @@ oslist: linux executable: UndercoverAgent type: none -'786330': +"786330": installDir: Internal Storm launch: - config: @@ -363009,57 +357698,57 @@ oslist: linux executable: Internal Storm.x86_64 type: default -'786340': +"786340": installDir: Ativeil launch: - executable: AtiveilGame.exe type: default -'786350': +"786350": installDir: Shinobi Bad Buddies launch: - config: oslist: windows executable: ShinobiBadBuddies.exe type: default -'786370': +"786370": installDir: Alien Crusader launch: - config: oslist: windows executable: ac.exe type: none -'786380': {} -'786390': +"786380": {} +"786390": installDir: Purgatory Fell launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Purgatory Fell executable: PurgatoryFell.exe type: vr -'786400': +"786400": installDir: Element Industry launch: - config: oslist: windows executable: Element Industry.exe type: default -'786410': +"786410": installDir: An Aspie Life launch: - config: oslist: windows executable: AnAspieLife.exe type: default -'786420': +"786420": installDir: Fantastic Sea launch: - config: oslist: windows executable: FantasticSea.exe type: default -'786450': +"786450": installDir: DontBiteMeBro launch: - config: @@ -363074,29 +357763,29 @@ oslist: linux executable: DontBiteMeBro_LINUX/DontBiteMeBro_LINUX.x86_64 type: default -'786470': +"786470": installDir: BC_BSX_TPS launch: - config: oslist: windows executable: BC_BSX_TPS.exe type: default -'786490': +"786490": installDir: Brew-Ha launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Brewha.exe type: default -'786510': +"786510": installDir: Oracle of Forgotten Testament launch: - config: oslist: windows executable: Game.exe type: default -'786540': +"786540": installDir: Brick vs. Paddle launch: - config: @@ -363111,14 +357800,14 @@ oslist: macos executable: Brick_vs_Paddle.app type: default -'786560': +"786560": installDir: NeoBalls2 launch: - config: oslist: windows executable: NeoBalls2.exe type: default -'786570': +"786570": installDir: The Alpha Device launch: - config: @@ -363129,7 +357818,7 @@ oslist: macos executable: AlphaDevice.app type: default -'786580': +"786580": installDir: Gleaner Heights launch: - config: @@ -363140,49 +357829,49 @@ oslist: linux executable: assets/steamrun.sh type: default -'786590': +"786590": installDir: Karloman launch: - config: oslist: windows executable: Karloman.exe type: default -'786620': +"786620": installDir: Dash Blitz launch: - config: oslist: windows executable: Dash Blitz.exe type: none -'786630': +"786630": installDir: MY 1980s DASHBOARD launch: - config: oslist: windows executable: nw.exe type: default -'786640': - installDir: Back to the 80's +"786640": + installDir: "Back to the 80's" launch: - config: oslist: windows executable: nw.exe type: default -'786650': +"786650": installDir: Running King launch: - config: oslist: windows executable: RunningKing.exe type: default -'786670': +"786670": installDir: Loot Box Simulator 20!8 launch: - config: oslist: windows executable: Loot Box Simulator 20!8.exe type: default -'786680': +"786680": installDir: Dungeons Forever launch: - config: @@ -363193,31 +357882,31 @@ oslist: linux executable: DF_Game.x86 type: none -'786690': {} -'786710': +"786690": {} +"786710": installDir: Echoes of War The Last Heartbeat launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: content.exe type: vr -'786720': +"786720": installDir: Eternal Man Forest launch: - config: oslist: windows executable: Eternal Man.exe type: none -'786740': +"786740": installDir: Proletarian Budget Survival launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: 2201\\ProleBudgSurv.exe + executable: "2201\\\\ProleBudgSurv.exe" type: none -'786750': +"786750": installDir: Squares launch: - config: @@ -363232,86 +357921,86 @@ oslist: linux executable: Squares.x86 type: none -'786770': +"786770": installDir: Z launch: - config: oslist: windows executable: Z.exe type: default -'786800': +"786800": installDir: Puzzles By Axis launch: - config: oslist: windows executable: Puzzles By Axis.exe type: default -'786820': +"786820": installDir: SOK MAX launch: - executable: SOK_MAX.exe type: none -'786840': +"786840": installDir: OutOfColors launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: OutOfColors.exe type: vr -'786850': +"786850": installDir: Roun launch: - config: oslist: windows executable: RounUpdater.exe type: default -'786910': +"786910": installDir: Deluded Mind launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Deluded Mind executable: DeludedMind.exe type: option1 - - arguments: '-controller' + - arguments: "-controller" config: - osarch: '64' + osarch: "64" oslist: windows description: Deluded Mind (Gamepad) executable: DeludedMind.exe type: option2 -'786940': +"786940": installDir: AfternoonEmpire launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: AfternoonEmpire.exe type: none -'786950': +"786950": installDir: Baptize Billy launch: - executable: baptizebilly.exe type: default -'786960': +"786960": installDir: Star Epica 3720 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: StarEpica-3720-HTCVive.exe type: vr -'786980': +"786980": installDir: Behind The Beyond launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: BTB.exe type: default -'786990': +"786990": installDir: SpellKeeper launch: - config: @@ -363322,45 +358011,45 @@ oslist: macos executable: SpellKeeper.app type: none -'7870': +"7870": installDir: 1701 AD launch: - executable: 1701.exe -'787040': +"787040": installDir: Perfect Heist launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: PixelHeist.exe type: default -'787050': +"787050": installDir: Impossible Jumpy Quest launch: - config: oslist: windows executable: ImpossibleJumpyQuest.exe type: default -'787070': +"787070": installDir: Super Ledgehop Double Laser launch: - executable: SuperLedgehop.exe type: default -'787100': +"787100": installDir: Homeworld Defense launch: - config: oslist: windows executable: Space_TD.exe type: default -'787110': +"787110": installDir: Usotsuki_Game launch: - config: oslist: windows executable: game.exe type: default -'787120': +"787120": installDir: There Is No Tomorrow launch: - config: @@ -363369,42 +358058,42 @@ type: default nameLocalized: schinese: 没有明天 -'787130': {} -'787140': +"787130": {} +"787140": installDir: The Adventures of Kusoge launch: - executable: Game.exe type: none -'787150': +"787150": installDir: NecroWars launch: - config: oslist: windows executable: NecroWarsTest.exe type: default -'787160': +"787160": installDir: Frol Blok launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: FrolBlok.exe type: vr -'787170': +"787170": installDir: Choices The Game launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Choices.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: Choices.exe type: default -'787190': {} -'787200': +"787190": {} +"787200": installDir: Nova Wing launch: - config: @@ -363412,42 +358101,42 @@ description: Launch executable: Nova Wing.exe type: default -'787220': +"787220": installDir: Annotation of Love launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: nw.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: nw.exe type: default - config: oslist: macos - executable: Annotation of Love.app\\Contents\\MacOS\\nwjs + executable: "Annotation of Love.app\\\\Contents\\\\MacOS\\\\nwjs" type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: nw type: default -'787240': {} -'787250': +"787240": {} +"787250": installDir: Clash of Castle launch: - executable: Clash of Castle.exe type: none -'787260': +"787260": installDir: Universe Balancing Bureau launch: - config: oslist: windows executable: ubb.exe type: default -'787300': +"787300": installDir: Shadow Treachery cannot be tolerated launch: - config: @@ -363456,43 +358145,43 @@ type: default - config: oslist: windows - ownsdlc: '852980' - executable: episode2\\episode2.exe + ownsdlc: "852980" + executable: "episode2\\\\episode2.exe" type: default - config: oslist: windows - ownsdlc: '911070' + ownsdlc: "911070" executable: episode3.exe type: default -'787310': +"787310": installDir: bigfatneighbor launch: - - executable: \\bigfatneighbor\\bigfatneighbor.exe + - executable: "\\\\bigfatneighbor\\\\bigfatneighbor.exe" type: default -'787350': {} -'787370': +"787350": {} +"787370": installDir: Fable of the Sword launch: - config: oslist: windows executable: game.exe type: none -'787390': {} -'787400': +"787390": {} +"787400": installDir: Fantasy Versus launch: - config: oslist: windows executable: FantasyVersus.exe type: none -'787410': +"787410": installDir: BoomTris launch: - config: oslist: windows executable: BoomTris.exe type: default -'787420': +"787420": installDir: Robot Fighting launch: - config: @@ -363501,20 +358190,20 @@ type: none - config: oslist: macos - executable: Robot Fighting - Minibot Battle 3D.app\\Contents\\MacOS\\Robot Fighting - Minibot Battle 3D + executable: "Robot Fighting - Minibot Battle 3D.app\\\\Contents\\\\MacOS\\\\Robot Fighting - Minibot Battle 3D" type: none -'787430': +"787430": installDir: Warrior Robots 3D launch: - config: oslist: macos - executable: Steel Arena.app\\Contents\\MacOS\\Steel Arena + executable: "Steel Arena.app\\\\Contents\\\\MacOS\\\\Steel Arena" type: none - config: oslist: windows executable: Steel Arena.exe type: none -'787440': +"787440": installDir: Battle Sea 3D launch: - config: @@ -363523,9 +358212,9 @@ type: none - config: oslist: macos - executable: Sea Battle.app\\Contents\\MacOS\\Sea Battle + executable: "Sea Battle.app\\\\Contents\\\\MacOS\\\\Sea Battle" type: none -'787450': +"787450": installDir: koewotayorini launch: - arguments: www @@ -363533,201 +358222,201 @@ oslist: windows executable: nw.exe type: default -'787460': +"787460": installDir: Squash Kings VR launch: - - arguments: '-windowed' + - arguments: "-windowed" config: oslist: windows executable: Squash Kings VR.exe type: vr -'787480': +"787480": installDir: Phoenix Wright Ace Attorney Trilogy launch: - executable: PWAAT.exe type: default nameLocalized: - japanese: ' 逆転裁判123 成歩堂セレクション' -'787510': + japanese: " 逆転裁判123 成歩堂セレクション" +"787510": installDir: Muv-Luv Alternative Total Eclipse launch: - config: oslist: windows executable: te-win64vc14-release.exe -'787530': +"787530": installDir: PaleLandsVR launch: - - arguments: '-vr' + - arguments: "-vr" config: oslist: windows executable: palelands_vr.exe type: vr -'787550': +"787550": installDir: FarHomeVR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: FarHomeVR.exe type: openvroverlay - config: - osarch: '64' + osarch: "64" oslist: windows executable: FarHomeVR.exe type: othervr - config: - osarch: '64' + osarch: "64" oslist: windows executable: FarHomeVR.exe type: vr -'787570': {} -'787620': +"787570": {} +"787620": installDir: Dinoku launch: - config: oslist: windows executable: dinoku.exe type: none -'787650': +"787650": installDir: Neonwall launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Neonwall executable: NeonwallSteam/Neonwall.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows description: Neonwall Oculus executable: NeonwallSteamOculus/Neonwall.exe type: vr - config: - osarch: '64' + osarch: "64" oslist: windows description: Neonwall HTC executable: NeonwallSteamVive/Neonwall.exe type: vr -'787690': +"787690": installDir: Math Hero launch: - config: oslist: windows executable: MathHero.exe type: none -'787710': +"787710": installDir: Comrades and Barons Solitaire of Bloody 1919 launch: - config: oslist: windows executable: CaBSoB19.exe type: default -'787720': - installDir: Block'hood VR +"787720": + installDir: "Block'hood VR" launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Autodetect executable: BLOCKHOOD VR v0_1_2.exe type: vr - - arguments: '-vrmode openvr' + - arguments: "-vrmode openvr" config: - osarch: '64' + osarch: "64" oslist: windows description: HTC Vive executable: BLOCKHOOD VR v0_1_2.exe type: vr - - arguments: '-vrmode oculus' + - arguments: "-vrmode oculus" config: - osarch: '64' + osarch: "64" oslist: windows description: Oculus Rift executable: BLOCKHOOD VR v0_1_2.exe type: othervr -'787730': +"787730": installDir: Adventure Game launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: AdventureGame.exe type: vr -'787740': +"787740": installDir: Construction Simulator 2 US - Pocket Edition launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ConSim2USPE.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: ConSim2USPE32.exe type: default -'787750': +"787750": installDir: Blazing Core (beta) launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: EchoClient.exe type: default -'787780': +"787780": installDir: In memory of TITAN launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: In memory of TITAN.exe type: none -'787790': +"787790": installDir: Epic Roller Coasters launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Epic Roller Coasters.exe type: vr -'787810': +"787810": installDir: Rogue Heroes launch: - executable: Rogue Heroes.exe type: default nameLocalized: schinese: 痞子英雄:泰索斯遗迹 -'787820': +"787820": installDir: Rickos Island launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: Singleplayer\\PlatformerGame.exe + executable: "Singleplayer\\\\PlatformerGame.exe" type: default - config: - osarch: '64' + osarch: "64" oslist: windows - ownsdlc: '828850' + ownsdlc: "828850" description: Launch Singleplayer Adventure - executable: Singleplayer\\PlatformerGame.exe + executable: "Singleplayer\\\\PlatformerGame.exe" type: none - config: - osarch: '64' + osarch: "64" oslist: windows - ownsdlc: '827370' + ownsdlc: "827370" description: Launch Battle Royale - executable: Multiplayer\\Horizon.exe + executable: "Multiplayer\\\\Horizon.exe" type: none - config: betakey: test - osarch: '64' + osarch: "64" oslist: windows description: Launch Project Open Arena executable: PlatformerGame.exe type: none -'787840': +"787840": installDir: Blacksmith launch: - config: @@ -363742,22 +358431,22 @@ oslist: linux executable: Blacksmith.x86_64 type: none -'787850': +"787850": installDir: Heroine Anthem Zero - Episode 2 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: HeroineAnthemZero2.exe type: default nameLocalized: schinese: 圣女之歌ZERO 2:鳞痕誓约 tchinese: 聖女之歌ZERO 2:鱗痕誓約 -'787860': +"787860": installDir: Farming Simulator 19 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: x64/FarmingSimulator2019Game.exe type: default @@ -363765,34 +358454,34 @@ oslist: macos executable: Farming Simulator 2019.app type: default -'787930': +"787930": installDir: American Railroads launch: - config: oslist: windows executable: americanrailroads.exe type: default -'787940': +"787940": installDir: Glista launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: glista.bat type: default -'787950': +"787950": installDir: PixelCraft VR launch: - executable: PixelCraft VR.exe type: vr -'787960': +"787960": installDir: Prism launch: - config: oslist: windows executable: prism.exe type: default -'787970': +"787970": installDir: miraclr - Divine Dating Sim launch: - config: @@ -363807,16 +358496,16 @@ oslist: macos executable: miraclr.app type: default -'787980': +"787980": installDir: 4D Minesweeper launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: 4D Minesweeper 64.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: 4D Minesweeper.exe type: default @@ -363825,30 +358514,30 @@ executable: 4D Minesweeper.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: 4D Minesweeper.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: 4D Minesweeper.x86 type: default -'787990': +"787990": installDir: Resume The Video Game launch: - config: oslist: windows executable: resume1.exe type: none -'788000': +"788000": installDir: RogueVerseDungeon launch: - config: oslist: windows executable: RogueVerseDungeon.exe type: none -'788010': +"788010": installDir: Carried Away Winter Sports launch: - config: @@ -363857,17 +358546,17 @@ type: default - config: oslist: macos - executable: CarriedAway.app\\Contents\\MacOS\\CarriedAway + executable: "CarriedAway.app\\\\Contents\\\\MacOS\\\\CarriedAway" type: default -'788020': +"788020": installDir: Critical Gravity launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Critical Gravity.exe type: default -'788040': +"788040": installDir: Edvog Explorer Game launch: - config: @@ -363875,48 +358564,48 @@ executable: EdvogExplorerGame.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: EdvogExplorerGame64.exe type: none -'788050': +"788050": installDir: Re;Lord 1 launch: - config: oslist: windows executable: relord.exe type: default -'788090': {} -'788100': +"788090": {} +"788100": installDir: Neon Abyss launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: NeonAbyss.exe type: default nameLocalized: schinese: 霓虹深渊 -'788120': +"788120": installDir: Disjoint launch: - config: oslist: windows executable: disjoint.exe type: default -'788130': - installDir: Otaku's Fantasy 2 +"788130": + installDir: "Otaku's Fantasy 2" launch: - config: oslist: windows executable: Game.exe type: none -'788150': +"788150": installDir: GoAwayMyFat launch: - executable: Run.exe type: default -'788180': +"788180": installDir: City of sky launch: - config: @@ -363928,14 +358617,14 @@ oslist: macos executable: CityOfSky_mac.app type: default -'788190': +"788190": installDir: Super Asteroids launch: - config: oslist: windows executable: nw.exe type: default -'788200': +"788200": installDir: The Little Slime launch: - config: @@ -363946,7 +358635,7 @@ oslist: macos executable: The Little Slime(Piece of Memory).app type: default -'788210': +"788210": installDir: The Bonfire Forsaken Lands launch: - config: @@ -363955,21 +358644,21 @@ type: default - config: oslist: macos - executable: The Bonfire.app\\Contents\\MacOS\\The Bonfire + executable: "The Bonfire.app\\\\Contents\\\\MacOS\\\\The Bonfire" type: default -'788250': +"788250": installDir: SoulGrabber launch: - config: oslist: windows executable: SoulGrabber.exe type: default -'788260': +"788260": installDir: Rules Of Survival launch: - executable: ros.exe type: none -'788270': +"788270": installDir: Exiled Kingdoms launch: - config: @@ -363978,21 +358667,21 @@ type: default - config: oslist: macos - executable: Contents\\MacOS\\exiledkingdoms + executable: "Contents\\\\MacOS\\\\exiledkingdoms" type: default - config: oslist: linux executable: exiledkingdoms type: default -'788310': +"788310": installDir: Shallow Swing launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ShallowSwing.exe type: default -'788320': +"788320": installDir: Balls and Magnets launch: - config: @@ -364000,7 +358689,7 @@ description: Launch executable: PLAY.exe type: none -'788330': +"788330": installDir: Varion launch: - config: @@ -364008,18 +358697,18 @@ executable: Varion.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Varion type: default -'788350': +"788350": installDir: Funny Wings launch: - config: oslist: windows executable: FunnyWings.exe type: vr -'788380': +"788380": installDir: Viki Spotter The Farm launch: - config: @@ -364028,18 +358717,18 @@ type: none - config: oslist: macos - executable: Viki Spotter - The Farm.app\\Contents\\MacOS\\Viki Spotter - The Farm + executable: "Viki Spotter - The Farm.app\\\\Contents\\\\MacOS\\\\Viki Spotter - The Farm" type: none - config: oslist: linux executable: Viki Spotter - The Farm.x86 type: none -'788390': +"788390": installDir: Uagi-Saba launch: - executable: uagi-saba.exe type: none -'788410': +"788410": installDir: Tales of Nebezem - Elemental Link launch: - config: @@ -364047,7 +358736,7 @@ executable: Game.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: game type: default @@ -364055,7 +358744,7 @@ oslist: macos executable: Game.app type: default -'788420': +"788420": installDir: Potion Explosion launch: - config: @@ -364064,20 +358753,20 @@ type: default - config: oslist: macos - executable: PotionExplosion.app\\Contents\\MacOS\\PotionExplosion + executable: "PotionExplosion.app\\\\Contents\\\\MacOS\\\\PotionExplosion" type: default - config: oslist: linux executable: PotionExplosion.x86_64 type: default -'788470': +"788470": installDir: Stonies launch: - config: oslist: windows executable: Stonies.exe type: default -'788480': +"788480": installDir: Changeover launch: - config: @@ -364092,21 +358781,21 @@ oslist: linux executable: Changeover.x86_64 type: default -'788490': +"788490": installDir: StackFortress launch: - config: oslist: windows executable: StackFortress.exe type: default -'788500': +"788500": installDir: 7 Soccer launch: - config: oslist: windows executable: 7 Soccer_A sci_fi soccer tale.exe type: default -'788510': +"788510": installDir: AeveZero Gravity launch: - config: @@ -364114,118 +358803,116 @@ executable: Aeve.exe type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: Aeve.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: Aeve.x86_64 type: none - config: oslist: macos - executable: Aeve.app\\Contents\\MacOS\\Aeve + executable: "Aeve.app\\\\Contents\\\\MacOS\\\\Aeve" type: none -'788520': +"788520": installDir: Bleeding Knife launch: - - arguments: '-windowed' + - arguments: "-windowed" config: oslist: windows executable: Game.exe type: none -'788540': +"788540": installDir: Vivez Versailles launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: VivezVersailles.exe type: vr - config: - osarch: '64' + osarch: "64" oslist: windows executable: VivezVersailles.exe type: default -'788590': +"788590": installDir: VoxelWorld launch: - executable: VoxelWorld.exe type: none -'788610': +"788610": installDir: The Piano launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ThePiano.exe type: default -'788630': +"788630": installDir: Gaia Beyond launch: - config: oslist: windows executable: Gaia Beyond.exe type: default -'788640': +"788640": installDir: Dungeon Stars launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: Dungeonstars.exe type: default -'788670': +"788670": installDir: Waxworks Curse of the Ancestors launch: - config: oslist: windows - description: 'Waxworks: Curse of the Ancestors' - description_loc: - english: 'Waxworks: Curse of the Ancestors' + description: "Waxworks: Curse of the Ancestors" executable: WaxworksSE.exe type: default -'788690': +"788690": installDir: Psychonauts in the Rhombus of Ruin launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: PsychonautsInTheRhombusOfRuin.exe type: vr -'788700': +"788700": installDir: ValeGuard launch: - - arguments: '-windowed' + - arguments: "-windowed" config: oslist: windows executable: ValeGuard.exe type: default -'788720': +"788720": installDir: GuilinLandscape launch: - config: oslist: windows executable: GuilinLandscape.exe type: vr -'788730': +"788730": installDir: Mortar and Pestle launch: - config: oslist: windows executable: Mortar and Pestle.exe type: default -'788740': +"788740": installDir: A Salem Witch Trial launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows executable: nw.exe type: none -'788750': {} -'788760': +"788750": {} +"788760": installDir: Cubiques launch: - config: @@ -364236,7 +358923,7 @@ oslist: windows executable: Cubiques.exe type: default -'788770': +"788770": installDir: Meteor60Seconds launch: - config: @@ -364247,83 +358934,83 @@ oslist: macos executable: Meteor60Seconds_macos.app type: default -'788780': {} -'788800': +"788780": {} +"788800": installDir: Magic Tower 3D launch: - config: oslist: windows executable: MagicTower.exe type: default -'788810': +"788810": installDir: Exposure launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Exposure.exe type: default -'788820': +"788820": installDir: LightningWar launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: LightningWar.exe type: default -'788850': {} -'788870': +"788850": {} +"788870": installDir: In The Long Run launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: InTheLongRun_TheGame.exe type: default -'788880': {} -'788890': +"788880": {} +"788890": installDir: Tomato Jones 3 launch: - config: oslist: windows - executable: system\\Tomato Jones III.exe + executable: "system\\\\Tomato Jones III.exe" type: default - workingdir: system\\ -'788900': + workingdir: "system\\\\" +"788900": installDir: VR_PlayRoom Episode1(Escape Room - Horror) launch: - config: oslist: windows executable: VR_PlayRoom_EscapeHorror.exe type: vr -'788910': +"788910": installDir: Apartment of Love launch: - config: oslist: windows executable: game.exe type: none -'788930': +"788930": installDir: RazerwireNanowars launch: - config: oslist: windows - description: 'Razerwire:Nanowars' + description: "Razerwire:Nanowars" executable: RWNW.exe type: default - config: oslist: macos - description: 'Razerwire:Nanowars Mac Os X' + description: "Razerwire:Nanowars Mac Os X" executable: RWNW.app type: default -'788960': +"788960": installDir: MAR WAR The Evil Awakens launch: - config: oslist: windows executable: MARWAR_THEEVILAWAKENS.exe type: default -'788970': +"788970": installDir: Captain Nemo launch: - config: @@ -364337,93 +359024,93 @@ nameLocalized: czech: Skryté předměty - Kapitán Nemo dutch: Vind de Objecten - Kapitein Nemo - french: 'Recherche d''objets cachés : Capitaine Nemo' + french: "Recherche d'objets cachés : Capitaine Nemo" german: Wimmelbilder - Kapitän Nemo italian: Cerca oggetti - Capitano Nemo polish: Ukryte obiekty - Kapitanie Nemo russian: Найди предмет - Капитан Немо schinese: 隐藏物品游戏 - 海底两万里 spanish: Buscar Objetos Escondidos - Capitán Nemo -'789000': {} -'789010': +"789000": {} +"789010": installDir: Wanderfog launch: - executable: Game.exe type: none -'789050': +"789050": installDir: Paradise launch: - config: oslist: windows executable: Paradise.exe type: default -'789090': +"789090": installDir: Rainbow Reactor launch: - config: oslist: windows executable: Rainbow Reactor.exe type: vr -'789100': +"789100": installDir: MyLittleFarmies launch: - config: oslist: windows executable: MyLittleFarmies.exe type: none -'789110': {} -'789120': {} -'789150': +"789110": {} +"789120": {} +"789150": installDir: Mask Of Fury launch: - config: oslist: windows executable: MaskOfFury.exe type: default -'789160': +"789160": installDir: Plastic Rebellion launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Plastic.exe type: default -'789200': +"789200": installDir: S.P.I.C.E arena launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: nw.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: nw.exe type: default - config: oslist: macos - executable: osx64\\s.p.i.c.earena.app + executable: "osx64\\\\s.p.i.c.earena.app" type: default - config: - osarch: '32' + osarch: "32" oslist: linux - executable: linux32\\nw + executable: "linux32\\\\nw" type: default - config: - osarch: '64' + osarch: "64" oslist: linux - executable: linux64\\nw + executable: "linux64\\\\nw" type: default -'789210': +"789210": installDir: NCradle launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: NCradle.exe type: none -'789220': +"789220": installDir: Death or Cress launch: - config: @@ -364432,27 +359119,27 @@ type: none - config: oslist: macos - executable: Death or Cress_Data.app\\Contents\\MacOS\\Death or Cress_Data + executable: "Death or Cress_Data.app\\\\Contents\\\\MacOS\\\\Death or Cress_Data" type: none - config: - osarch: '32' + osarch: "32" oslist: linux - executable: Death or Cress_Data.linux\\Death or Cress_Data.x86 + executable: "Death or Cress_Data.linux\\\\Death or Cress_Data.x86" type: none - config: - osarch: '64' + osarch: "64" oslist: linux - executable: Death or Cress_Data.linux\\Death or Cress_Data.x86_64 + executable: "Death or Cress_Data.linux\\\\Death or Cress_Data.x86_64" type: none -'789240': +"789240": installDir: TDID launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TDID.exe type: default -'789260': +"789260": installDir: Unmoor! launch: - config: @@ -364467,101 +359154,101 @@ oslist: linux executable: Unmoor.sh type: none -'789270': {} -'789280': +"789270": {} +"789280": installDir: Rysen launch: - config: oslist: windows executable: Rysen.exe type: default -'789290': +"789290": installDir: RPG Merchant launch: - config: oslist: windows executable: RPGMerchant.exe type: vr -'789380': +"789380": installDir: InstallFolder launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ScrumProject.exe type: default -'789470': {} -'789480': +"789470": {} +"789480": installDir: AstroBlast VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: AstroBlast VR.exe type: vr -'789490': +"789490": installDir: Boom! Maze launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Boom! Maze.exe type: vr -'789500': {} -'789510': +"789500": {} +"789510": installDir: Super Goribei launch: - config: oslist: windows executable: Super Goribei.exe type: default -'789520': +"789520": installDir: Warz Horde launch: - config: oslist: windows executable: WeaponMasterVR.exe type: vr -'789540': +"789540": installDir: The Adventures of Nick & Willikins launch: - config: oslist: windows executable: Nick_and_Willikins.exe type: none -'789550': +"789550": installDir: Bright Bob launch: - config: oslist: windows executable: BrightBob.exe type: default -'789570': +"789570": installDir: Nepenthe launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows executable: Nepenthe.exe type: default - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: macos - executable: Nepenthe.app\\Contents\\MacOS\\nwjs + executable: "Nepenthe.app\\\\Contents\\\\MacOS\\\\nwjs" type: default - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: linux - executable: Nepenthe\\Game + executable: "Nepenthe\\\\Game" type: default -'789580': +"789580": installDir: ISU launch: - config: oslist: windows executable: ISU.exe type: none -'789600': +"789600": installDir: Mortal box launch: - config: @@ -364573,91 +359260,91 @@ description: Para Linux executable: runner type: default -'789610': +"789610": installDir: Splash Adventure - The Maze of Morla launch: - config: oslist: windows executable: Splash Adventure - The Maze of Morla.exe type: none -'789620': +"789620": installDir: Crypt launch: - config: oslist: windows executable: Crypt.exe type: default -'789670': +"789670": installDir: UNHALLOWED THE CABIN launch: - config: oslist: windows executable: Unhallowed_TheCabin.exe type: vr -'789680': +"789680": installDir: MechTroid launch: - config: oslist: windows executable: Mechtroid.exe type: default -'789700': +"789700": installDir: Wendy’s Mart 3D launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: WendyMart3D.exe type: default -'789710': +"789710": installDir: BoyAndLabyrinth launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: BALx64 executable: BAL.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows description: BALx32 executable: BAL.exe type: default -'789720': +"789720": installDir: Aurora launch: - config: oslist: windows executable: Game.exe type: default -'789730': +"789730": installDir: Not Without My Poop launch: - config: oslist: windows executable: NotWithoutMyPoop.exe type: default -'789740': +"789740": installDir: Maidens of a Hollow Dream launch: - executable: otome.exe type: none nameLocalized: japanese: 虚夢の乙女 -'789750': +"789750": installDir: Idle Earth launch: - executable: Idle Earth.exe type: none -'789760': +"789760": installDir: Dead or School launch: - config: oslist: windows executable: DeadOrSchool.exe type: none -'789770': +"789770": installDir: Starena launch: - config: @@ -364668,9 +359355,9 @@ sc_schinese: 星际角斗场 schinese: 星际角斗场 tchinese: 星際角鬥場 -'789780': {} -'789820': {} -'789830': +"789780": {} +"789820": {} +"789830": installDir: Muv-Luv UNLIMITED TDA03 launch: - config: @@ -364682,12 +359369,12 @@ betakey: test2 oslist: windows description: 旧仕様実行ファイル - executable: win32\\tda03\\bin\\tda03-win64vc14-release.exe + executable: "win32\\\\tda03\\\\bin\\\\tda03-win64vc14-release.exe" type: option1 nameLocalized: - english: '[TDA03] Muv-Luv Unlimited: THE DAY AFTER - Episode 03 REMASTERED' - japanese: '【TDA03】マブラヴ アンリミテッド ザ・デイアフター episode:03 REMASTERED' -'789840': + english: "[TDA03] Muv-Luv Unlimited: THE DAY AFTER - Episode 03 REMASTERED" + japanese: "【TDA03】マブラヴ アンリミテッド ザ・デイアフター episode:03 REMASTERED" +"789840": installDir: A Dream of Burning Sand launch: - config: @@ -364702,52 +359389,52 @@ oslist: macos executable: a-dream-of-burning-sand type: default -'789880': +"789880": installDir: Ghost Platoon launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Launcher.exe type: none - arguments: lan config: - osarch: '64' + osarch: "64" oslist: windows description: LAN Mode executable: Launcher.exe type: option1 -'789890': +"789890": installDir: City Patrol Police launch: - config: oslist: windows executable: WorldracingGame/Binaries/Win64/CityPatrol-Win64-Shipping.exe type: default - - arguments: '-NotInstalled' + - arguments: "-NotInstalled" config: betakey: usk-version oslist: windows description: City Patrol Police (everything unlocked) executable: CityPatrol.exe type: option2 -'789900': +"789900": installDir: My Little Riding Champion launch: - executable: Reiterland.exe type: default -'789910': +"789910": installDir: Planet of the Apes Last Frontier launch: - - arguments: '-NOSPLASH' + - arguments: "-NOSPLASH" config: betakey: test - osarch: '64' + osarch: "64" oslist: windows executable: Apes.exe type: default -'789920': {} -'789930': +"789920": {} +"789930": installDir: Blind Boris launch: - config: @@ -364756,20 +359443,20 @@ type: none - config: oslist: macos - executable: BlindBoris.app\\Contents\\MacOS\\BlindBoris + executable: "BlindBoris.app\\\\Contents\\\\MacOS\\\\BlindBoris" type: none - config: oslist: linux executable: BlindBoris.x86 type: none -'789950': +"789950": installDir: INFERNIUM launch: - config: oslist: windows - executable: Infernium\\Game\\INFERNIUM.exe + executable: "Infernium\\\\Game\\\\INFERNIUM.exe" type: none -'789960': +"789960": installDir: DARCO - Reign of Elements launch: - config: @@ -364777,62 +359464,62 @@ description: Default executable: DarcoClient.exe type: default -'789970': +"789970": installDir: Lets Kill Zombies VR launch: - config: oslist: windows executable: game.exe type: vr -'789980': +"789980": installDir: Twilight on Yulestead launch: - config: oslist: windows executable: toy.exe type: none -'7900': +"7900": installDir: The Movies launch: - executable: Movies.exe - description: Star Maker executable: StarMaker.exe -'790020': +"790020": installDir: Lightfield launch: - executable: Lightfield.exe type: default -'790040': {} -'790050': +"790040": {} +"790050": installDir: Porcelain Panic launch: - config: oslist: windows executable: PorcelainPanic.exe type: default -'790060': +"790060": installDir: The Void Rains Upon Her Heart launch: - config: oslist: windows executable: The Void Rains Upon Her Heart.exe type: default -'790070': {} -'790080': +"790070": {} +"790080": installDir: ZEROCAR launch: - config: oslist: windows executable: ZeroCar.exe type: none -'790100': +"790100": installDir: Project Tank launch: - config: oslist: windows - executable: Project Tank\\Project Tank.exe + executable: "Project Tank\\\\Project Tank.exe" type: default -'790120': +"790120": installDir: Run and Jump launch: - config: @@ -364842,17 +359529,17 @@ type: default - config: oslist: macos - executable: RunAndJumpMac.app\\Contents\\MacOS\\RunAndJumpMac + executable: "RunAndJumpMac.app\\\\Contents\\\\MacOS\\\\RunAndJumpMac" type: default -'790130': +"790130": installDir: ORE launch: - config: oslist: windows executable: Terra4m.exe type: default -'790140': {} -'790160': +"790140": {} +"790160": installDir: Five Keys to Exit launch: - config: @@ -364867,14 +359554,14 @@ oslist: macos executable: FiveKeysToExit_macOS.app type: none -'790170': +"790170": installDir: Fairly Certain Doom launch: - config: oslist: windows executable: FairlyCertainDoom.exe type: othervr -'790210': +"790210": installDir: Neon Knight Vengeance From The Grave launch: - config: @@ -364886,25 +359573,25 @@ description: Safe Mode Launcher executable: NK Launcher2.exe type: none -'790230': +"790230": installDir: Zombie Clicker Defense launch: - executable: zcd.exe type: none -'790250': +"790250": installDir: Bloodgeon launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: DBM.exe type: default -'790260': - installDir: Kate's Test +"790260": + installDir: "Kate's Test" launch: - executable: Game.exe type: none -'790290': +"790290": installDir: Lonely in the Winter launch: - config: @@ -364912,7 +359599,7 @@ description: Launch executable: Lonely in the Winter.exe type: none -'790300': +"790300": installDir: Puzzle for Kids launch: - config: @@ -364947,8 +359634,8 @@ type: option1 - config: oslist: windows - description: Children's Eyes - executable: Children's Eyes.exe + description: "Children's Eyes" + executable: "Children's Eyes.exe" type: option1 - config: oslist: windows @@ -364990,15 +359677,15 @@ description: Giraffe executable: Giraffe.exe type: option1 -'790340': {} -'790350': +"790340": {} +"790350": installDir: The InnerFriend launch: - config: oslist: windows executable: TheInnerfriend.exe type: none -'790360': +"790360": installDir: WarriOrb launch: - config: @@ -365009,7 +359696,7 @@ oslist: linux executable: Warriorb.sh type: default -'790390': +"790390": installDir: Johnny Bonasera 2 launch: - config: @@ -365021,39 +359708,39 @@ executable: Johnny Bonasera2.app/Contents/MacOS/bonasera2 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: bonasera2 type: default - - arguments: '-w' + - arguments: "-w" config: oslist: windows description: Windowed executable: bonasera2.exe type: option1 - - arguments: '-w' + - arguments: "-w" config: oslist: macos description: Windowed executable: Johnny Bonasera2.app/Contents/MacOS/bonasera2 type: option1 - - arguments: '-w' + - arguments: "-w" config: - osarch: '64' + osarch: "64" oslist: linux description: Windowed executable: bonasera2 type: option1 -'790400': {} -'790410': +"790400": {} +"790410": installDir: Futanari Quest launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows executable: Futanari Quest.exe type: default -'790450': +"790450": installDir: ANYKEY launch: - config: @@ -365062,31 +359749,31 @@ type: none - config: oslist: macos - executable: ANYKEY.app\\Contents\\MacOS\\ANYKEY + executable: "ANYKEY.app\\\\Contents\\\\MacOS\\\\ANYKEY" type: none -'790540': +"790540": installDir: THE QUIET MAN launch: - config: oslist: windows executable: Moon.exe type: default -'790550': +"790550": installDir: Monktastic launch: - config: oslist: windows executable: Monktastic.exe type: default -'790560': {} -'790570': +"790560": {} +"790570": installDir: Innocent launch: - config: oslist: windows executable: innocent.exe type: vr -'790600': +"790600": installDir: Stormbound Kingdom Wars launch: - config: @@ -365097,14 +359784,14 @@ oslist: macos executable: Stormbound.app/Contents/MacOS/Stormbound type: none -'790610': +"790610": installDir: 5Rings launch: - config: oslist: windows executable: 5Rings.exe type: default -'790630': +"790630": installDir: BoxCat launch: - config: @@ -365116,102 +359803,102 @@ executable: boxcat.app/Contents/MacOS/boxcat type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: boxcat.x86_64 type: default -'790650': +"790650": installDir: MARVEL END TIME ARENA launch: - - arguments: '--ip 121.254.209.11 --ppath ../publisher_config.xml ' + - arguments: "--ip 121.254.209.11 --ppath ../publisher_config.xml " config: oslist: windows description: MA LIVE - executable: deploy_client\\Marvel End Time Arena.exe + executable: "deploy_client\\\\Marvel End Time Arena.exe" type: default -'790660': {} -'790680': {} -'790700': +"790660": {} +"790680": {} +"790700": installDir: Bugout launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: BugOut.exe type: default -'790710': +"790710": installDir: World of Warplanes launch: - config: oslist: windows executable: WorldOfWarplanes.exe type: none -'790740': +"790740": installDir: TickTock launch: - config: oslist: macos - executable: Tick Tock.app\\Contents\\MacOS\\Tick Tock + executable: "Tick Tock.app\\\\Contents\\\\MacOS\\\\Tick Tock" type: none - config: - osarch: '64' + osarch: "64" oslist: windows executable: Tick Tock.exe type: none nameLocalized: - japanese: 'チックタック:二人のための物語(Tick Tock: A Tale for Two)' -'790750': + japanese: "チックタック:二人のための物語(Tick Tock: A Tale for Two)" +"790750": installDir: oVRshot launch: - - arguments: '-vrmode openvr' + - arguments: "-vrmode openvr" config: - osarch: '64' + osarch: "64" oslist: windows executable: oVRshot.exe type: vr - - arguments: '-vrmode oculus' + - arguments: "-vrmode oculus" config: - osarch: '64' + osarch: "64" oslist: windows executable: oVRshot.exe type: othervr -'790760': +"790760": installDir: Space Chip launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SpaceChip.exe type: none -'790780': +"790780": installDir: Yozakura Wizard VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: YozakuraWizard.exe type: othervr - config: - osarch: '64' + osarch: "64" oslist: windows executable: YozakuraWizard.exe type: vr -'790790': +"790790": installDir: Impossible Runner launch: - config: oslist: windows executable: Impossible Runner.exe type: none -'790800': +"790800": installDir: Ascent Spirit launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ascent-spirit.exe type: vr -'790810': +"790810": installDir: Voxel Baller launch: - config: @@ -365222,14 +359909,14 @@ oslist: linux executable: VoxelBaller.x86_64 type: none -'790820': +"790820": installDir: VC4 launch: - config: oslist: windows executable: Valkyria4_x64.exe type: default -'790840': +"790840": installDir: Epiphany launch: - config: @@ -365244,7 +359931,7 @@ oslist: macos executable: Gold 1_0_5.app type: default -'790850': +"790850": installDir: Undead Horde launch: - config: @@ -365259,48 +359946,48 @@ oslist: linux executable: UndeadHorde type: default -'790860': +"790860": installDir: Chocolate makes you happy 3 launch: - config: oslist: windows executable: Chocolate makes you happy 3.exe type: default -'790890': +"790890": installDir: For Food Sake! VR launch: - config: oslist: windows - executable: ForFoodSake!!!\\For Food Sake! VR.exe + executable: "ForFoodSake!!!\\\\For Food Sake! VR.exe" type: othervr -'790930': +"790930": installDir: Primitive Shooter launch: - config: oslist: windows executable: PrimitiveShooter.exe type: default -'790950': +"790950": installDir: Feed Eve launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: 64 - bit executable: FeedEve_Steam.exe type: vr -'790960': +"790960": installDir: Beer Ranger launch: - config: oslist: windows executable: Beer Ranger.exe type: default -'790970': +"790970": installDir: GOLFY GOLF launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Windows/GG_Windows64/GG_Windows64.exe type: default @@ -365312,37 +359999,37 @@ oslist: macos executable: Mac/GG_Mac.app type: default -'791000': +"791000": installDir: Atomic Heist launch: - config: oslist: windows executable: Atomic Heist.exe type: default -'791020': +"791020": installDir: Drumpf Rise Up Libertonia launch: - - arguments: '-windowed --in-process-gpu' + - arguments: "-windowed --in-process-gpu" config: oslist: windows executable: Game.exe type: default -'791030': {} -'791050': +"791030": {} +"791050": installDir: I Hate Heroes Rocket Man launch: - config: oslist: windows executable: steam_test.exe type: vr -'791080': {} -'791100': {} -'791140': +"791080": {} +"791100": {} +"791140": installDir: Shatter EVERYTHING launch: - executable: shattereverything.exe type: vr -'791150': +"791150": installDir: EV3 - Drag Racing launch: - config: @@ -365353,12 +360040,12 @@ oslist: macos executable: EV3.app type: default -'791160': +"791160": installDir: Icky launch: - executable: icky.exe type: default -'791180': +"791180": installDir: 1 Screen Platformer launch: - config: @@ -365369,46 +360056,46 @@ oslist: macos executable: OneScreenPlatformStaticGM14.app type: none -'791190': {} -'791240': +"791190": {} +"791240": installDir: Lumote launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: rEngine.exe type: default nameLocalized: schinese: 卢默特:赤灵主宰编年史 -'791260': +"791260": installDir: Pandora launch: - config: oslist: windows executable: Pandora.exe type: default -'791290': +"791290": installDir: Space Ball launch: - config: oslist: windows executable: SpaceBall.exe type: none -'791300': +"791300": installDir: Canek Quest for Corn launch: - config: oslist: windows executable: Canek.exe type: default -'791320': +"791320": installDir: Zahalia launch: - config: oslist: windows executable: Zahalia.exe type: default -'791330': +"791330": installDir: Fallen ~Makina and the City of Ruins~ launch: - config: @@ -365417,19 +360104,17 @@ type: default - config: betakey: beta - ownsdlc: '1381600' + ownsdlc: "1381600" description: Official Makina Cosplay by Harriet Sugarcookie - executable: >- - Makina Cosplay by Harriet Sugarcookie/Fallen Makina and the City of Ruins Makina Cosplay by Harriet Sugarcookie - 0001.jpg + executable: Makina Cosplay by Harriet Sugarcookie/Fallen Makina and the City of Ruins Makina Cosplay by Harriet Sugarcookie 0001.jpg type: option1 nameLocalized: japanese: Fallen ~炎髪のマキナと遺跡の町~ schinese: 堕落少女:焰发的玛琪娜与遗迹之城 tchinese: 墮落少女:焰發的瑪琪娜與遺跡之城 -'791340': {} -'791350': {} -'791370': +"791340": {} +"791350": {} +"791370": installDir: Xploquest2 launch: - config: @@ -365438,26 +360123,26 @@ type: default - config: oslist: macos - executable: xploquest2.app\\Contents\\MacOS\\Mac_Runner + executable: "xploquest2.app\\\\Contents\\\\MacOS\\\\Mac_Runner" type: default - config: oslist: linux - executable: xploquest2\\runner + executable: "xploquest2\\\\runner" type: default -'791380': +"791380": installDir: Way Out launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: way out.exe type: vr -'791390': +"791390": installDir: Mr Dirt Poor launch: - executable: Mr Dirt Poor.exe type: none -'791400': +"791400": installDir: From Village to Empire launch: - config: @@ -365468,14 +360153,14 @@ oslist: linux executable: run.sh type: default -'791430': +"791430": installDir: THE ARCHER Dead Hunt launch: - config: oslist: windows executable: THE_ARCHER_DEAD_HUNT.exe type: default -'791470': +"791470": installDir: DYO launch: - config: @@ -365484,11 +360169,11 @@ executable: DYO.exe type: default - config: - ownsdlc: '806050' - description: Open Collector's Edition Content - executable: Collector's Edition Content + ownsdlc: "806050" + description: "Open Collector's Edition Content" + executable: "Collector's Edition Content" type: none -'791490': +"791490": installDir: Rainbow Cult launch: - config: @@ -365496,20 +360181,20 @@ executable: RainbowCult.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: RainbowCult.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: RainbowCult.x86_64 type: default - config: oslist: macos - executable: rainbowcult.app\\Contents\\MacOS\\rainbowcult + executable: "rainbowcult.app\\\\Contents\\\\MacOS\\\\rainbowcult" type: default -'791500': +"791500": installDir: Mahjong Riichi Multiplayer launch: - config: @@ -365518,41 +360203,41 @@ type: none - config: oslist: macos - executable: Mahjong.app\\Contents\\MacOS\\Mahjong + executable: "Mahjong.app\\\\Contents\\\\MacOS\\\\Mahjong" type: none -'791540': {} -'791550': {} -'791570': +"791540": {} +"791550": {} +"791570": installDir: Redline Ultimate Racing launch: - config: oslist: windows executable: redracing.exe type: none -'791590': +"791590": installDir: Psychiatrist Simulator launch: - config: oslist: windows executable: Psychiatrist Simulator.exe type: default -'791600': +"791600": installDir: Aplestia launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Aplestia.exe type: default -'791620': +"791620": installDir: Masplado launch: - config: oslist: windows executable: Masplado.exe type: default -'791630': {} -'791700': +"791630": {} +"791700": installDir: Bird Game launch: - config: @@ -365567,84 +360252,84 @@ oslist: linux executable: birdgame.x86 type: default -'791720': {} -'791740': +"791720": {} +"791740": installDir: Gladiators of the arena launch: - config: - osarch: '32' + osarch: "32" oslist: windows - executable: Binaries\\Win32\\GOTA.exe + executable: "Binaries\\\\Win32\\\\GOTA.exe" type: default -'791750': +"791750": installDir: President Trump The Way In Uganda launch: - config: oslist: windows executable: President Trump The Way In Uganda.exe type: default -'791760': +"791760": installDir: A Story of Distress launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: A Story of Distress.exe type: vr -'791770': +"791770": installDir: Try To Fall Asleep launch: - config: oslist: windows executable: TTFA_EarlyAccess.exe type: default -'791790': +"791790": installDir: No safety launch: - executable: No safety.exe type: default -'791800': +"791800": installDir: Mind Over Mushroom launch: - executable: MindOverMushroom.exe type: default -'791810': {} -'791880': +"791810": {} +"791880": installDir: Essence of Illumination The Beginning launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: HTC Vive executable: Essence_of_Illumination_The_Beginning-vive.exe type: vr - config: - osarch: '64' + osarch: "64" oslist: windows description: Oculus Rift executable: Essence_of_Illumination_The_Beginning-oculus.exe type: othervr -'791930': +"791930": installDir: BombTag launch: - config: oslist: windows executable: BombTag.exe type: default -'791950': +"791950": installDir: Hiking Simulator 2018 launch: - executable: HikinSim.exe type: default -'791960': +"791960": installDir: Cactus Jumper launch: - config: oslist: windows executable: Cactus Jumper.exe type: default -'791970': {} -'791990': +"791970": {} +"791990": installDir: MOBA GM launch: - config: @@ -365659,22 +360344,22 @@ oslist: macos executable: mobagm.app type: none -'792000': +"792000": installDir: Pit Blocks 3D launch: - config: oslist: windows executable: PitBlocks3D.exe type: default -'792010': {} -'792030': - installDir: 'Just, Bearly' +"792010": {} +"792030": + installDir: "Just, Bearly" launch: - config: oslist: windows executable: justbearlyv3.exe type: default -'792040': +"792040": installDir: Detective Di The Silk Rose Murders launch: - config: @@ -365683,12 +360368,12 @@ type: default - config: oslist: macos - executable: DetectiveDi.app\\Contents\\MacOS\\DetectiveDi + executable: "DetectiveDi.app\\\\Contents\\\\MacOS\\\\DetectiveDi" type: default nameLocalized: - english: 'Detective Di: The Silk Rose Murders' - schinese: '狄仁杰之锦蔷薇 | Detective Di: The Silk Rose Murders' -'792050': + english: "Detective Di: The Silk Rose Murders" + schinese: "狄仁杰之锦蔷薇 | Detective Di: The Silk Rose Murders" +"792050": installDir: Beneath The Surface launch: - config: @@ -365699,7 +360384,7 @@ oslist: macos executable: Beneath The Surface.app type: default -'792060': +"792060": installDir: Stickman Fighting launch: - config: @@ -365708,23 +360393,23 @@ type: default - config: oslist: macos - executable: Stickman Fighting.app\\Contents\\MacOS\\Stickman Fighting + executable: "Stickman Fighting.app\\\\Contents\\\\MacOS\\\\Stickman Fighting" type: default -'792070': +"792070": installDir: Asteion Nights launch: - config: oslist: windows executable: Asteion Nights.exe type: default -'792080': +"792080": installDir: glutton man launch: - config: oslist: windows executable: gluttonman.exe type: default -'792100': +"792100": installDir: 7 Billion Humans launch: - config: @@ -365738,48 +360423,46 @@ executable: 7 Billion Humans.app/Contents/MacOS/7 Billion Humans type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: 7BillionHumans.bin.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: 7BillionHumans.bin.x86 type: default -'792120': +"792120": installDir: FIGHT KNIGHT launch: - config: oslist: windows description: Default - description_loc: - english: Default executable: FIGHTKNIGHT.exe type: default -'792160': +"792160": installDir: HeroesOfHellas4 launch: - config: oslist: windows executable: HeroesOfHellas4_BirthOfLegend.exe type: default -'792190': +"792190": installDir: Iridescence launch: - config: oslist: windows executable: iridescence_169.exe type: default -'792220': +"792220": installDir: Paunch launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Paunch.exe type: default -'792230': +"792230": installDir: Zombie Serial Killer Incident launch: - config: @@ -365790,49 +360473,47 @@ oslist: windows executable: config.exe type: config -'792280': {} -'792290': {} -'792300': +"792280": {} +"792290": {} +"792300": installDir: The Beast Inside launch: - config: oslist: windows executable: TheBeastInside.exe type: default -'792320': +"792320": installDir: Sunburnt launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: Sunburnt\\Binaries\\Win64\\Sunburnt-Win64-Shipping.exe + executable: "Sunburnt\\\\Binaries\\\\Win64\\\\Sunburnt-Win64-Shipping.exe" type: none - config: - osarch: '32' + osarch: "32" oslist: windows - executable: Sunburnt\\Binaries\\Win32\\Sunburnt-Win32-Shipping.exe + executable: "Sunburnt\\\\Binaries\\\\Win32\\\\Sunburnt-Win32-Shipping.exe" type: none - config: oslist: linux - executable: ./Sunburnt/Binaries/Linux/Sunburnt-Linux-Shipping + executable: "./Sunburnt/Binaries/Linux/Sunburnt-Linux-Shipping" type: none - config: betakey: unstable - osarch: '64' + osarch: "64" oslist: windows description: Dev Build - description_loc: - english: Dev Build - executable: Sunburnt\\Binaries\\Win64\\Sunburnt.exe + executable: "Sunburnt\\\\Binaries\\\\Win64\\\\Sunburnt.exe" type: option1 -'792340': +"792340": installDir: ESPER launch: - config: oslist: windows executable: Esper.exe type: vr -'792350': +"792350": installDir: JoyClimb launch: - config: @@ -365845,9 +360526,9 @@ type: none - config: oslist: macos - executable: \\Contents\\MacOS\\JoyClimbMacOS_X + executable: "\\\\Contents\\\\MacOS\\\\JoyClimbMacOS_X" type: none -'792370': +"792370": installDir: A Rite from the Stars launch: - config: @@ -365862,24 +360543,24 @@ oslist: linux executable: arfts.x86 type: default -'792380': +"792380": nameLocalized: schinese: 生存日记 -'792390': +"792390": installDir: Red Wizard Island launch: - config: betakey: alpha executable: Red_Wizard_Island.exe type: none -'792400': +"792400": installDir: Battleship Lonewolf 2 launch: - config: oslist: windows executable: BattleshipLonewolf2.exe type: none -'792410': +"792410": installDir: Viki Spotter Undersea launch: - config: @@ -365888,20 +360569,20 @@ type: none - config: oslist: macos - executable: Viki Spotter - Undersea.app\\Contents\\MacOS\\Viki Spotter - Undersea + executable: "Viki Spotter - Undersea.app\\\\Contents\\\\MacOS\\\\Viki Spotter - Undersea" type: none - config: oslist: linux executable: Viki Spotter - Undersea.x86 type: none -'792470': +"792470": installDir: WWIICarius launch: - config: oslist: windows executable: contents/Game.exe type: default -'792480': +"792480": installDir: NameTheSongQuiz launch: - config: @@ -365909,7 +360590,7 @@ executable: NtSQ.exe type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: NtSQ.x86_64 type: none @@ -365918,11 +360599,11 @@ executable: NtSQ.app type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: NtSQ.x86 type: none -'792500': +"792500": installDir: Streets Ablaze launch: - config: @@ -365934,15 +360615,15 @@ oslist: windows executable: StreetsTEST.exe type: none -'792530': {} -'792560': +"792530": {} +"792560": installDir: Ukhar launch: - config: oslist: windows executable: Ukhar.exe type: default -'792570': +"792570": installDir: BattleCON Online launch: - config: @@ -365951,14 +360632,14 @@ type: default - config: oslist: macos - executable: \\Products\\Applications\\bco_c.app + executable: "\\\\Products\\\\Applications\\\\bco_c.app" type: default - config: oslist: linux executable: bco_c type: default -'792610': {} -'792640': +"792610": {} +"792640": installDir: Inca Blocks launch: - config: @@ -365967,57 +360648,57 @@ type: none - config: oslist: macos - executable: Inca Blocks.app\\Contents\\MacOS\\Inca Blocks + executable: "Inca Blocks.app\\\\Contents\\\\MacOS\\\\Inca Blocks" type: none - config: oslist: linux executable: Inca Blocks.x86 type: none -'792650': +"792650": installDir: Super Jigsaw Puzzle launch: - config: oslist: windows executable: Super Jigsaw Puzzle.exe type: default -'792660': +"792660": installDir: The Operational Art of War IV launch: - - arguments: '-steam' + - arguments: "-steam" config: oslist: windows executable: autorun.exe type: default -'792670': +"792670": installDir: The Woods launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TheWoods.exe type: default -'792680': +"792680": installDir: Containment Initiative PC Standalone launch: - executable: CIPC.exe type: default -'792710': +"792710": installDir: Levelhead launch: - config: - betakey: 'develop, beta, candidate, localizationlevelup, staging, default' + betakey: "develop, beta, candidate, localizationlevelup, staging, default" oslist: windows executable: Levelhead.exe type: default - config: oslist: macos - executable: PlatformerBuilder.app\\Contents\\MacOS\\PlatformerBuilder + executable: "PlatformerBuilder.app\\\\Contents\\\\MacOS\\\\PlatformerBuilder" type: default - config: betakey: staging oslist: macos description: VM - executable: Levelhead.app\\Contents\\MacOS\\Mac_Runner + executable: "Levelhead.app\\\\Contents\\\\MacOS\\\\Mac_Runner" type: none - config: betakey: uwp_dev @@ -366037,7 +360718,7 @@ description: uwp_staging executable: levelhead.appx type: none -'792720': +"792720": installDir: Boxing Apocalypse launch: - config: @@ -366045,13 +360726,13 @@ executable: BoxingApocalypse.exe type: othervr - config: - osarch: '64' + osarch: "64" oslist: windows description: for Vive - executable: Vive\\BoxingApocalypse.exe + executable: "Vive\\\\BoxingApocalypse.exe" type: vr -'792750': {} -'792760': +"792750": {} +"792760": installDir: The Necklace Of Blood launch: - config: @@ -366066,22 +360747,22 @@ oslist: linux executable: NecklaceOfBlood.sh type: default -'792770': {} -'792800': +"792770": {} +"792800": installDir: Adventures of Hendri launch: - config: oslist: windows executable: Adventures of Hendri.exe type: none -'792810': +"792810": installDir: Balloon launch: - config: oslist: windows executable: Balloon.exe type: default -'792820': +"792820": installDir: Lost In 80s II launch: - config: @@ -366092,11 +360773,11 @@ oslist: macos executable: Lost In 80s II.app type: default -'792850': +"792850": installDir: RoboPuzzleSmash launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: smash.exe type: none @@ -366105,24 +360786,24 @@ executable: smash.app type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: smash.x86_64 type: none -'792860': +"792860": installDir: Road Doom launch: - config: oslist: windows executable: RoadDoom.exe type: none -'792870': +"792870": installDir: Super Nosebleed Land launch: - executable: SuperNosebleedLand.exe type: default -'792880': - installDir: Never Stop Sneakin' +"792880": + installDir: "Never Stop Sneakin'" launch: - config: oslist: windows @@ -366132,30 +360813,30 @@ oslist: macos executable: nss_mac.app type: default -'792900': +"792900": installDir: OutBreakZombie launch: - config: oslist: windows executable: outbreak.exe type: default -'792910': {} -'792920': {} -'792930': +"792910": {} +"792920": {} +"792930": installDir: Age of Viking Conquest launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch Age of Viking Conquest 32-bit executable - executable: 32bit\\VikingConquest.exe + executable: "32bit\\\\VikingConquest.exe" type: default workingdir: 32bit - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch Age of Viking Conquest 64-bit executable - executable: 64bit\\VikingConquest.exe + executable: "64bit\\\\VikingConquest.exe" type: default workingdir: 64bit - config: @@ -366163,15 +360844,15 @@ description: Launch Age of Viking Conquest macOS application executable: AgeOfVikingConquest.app type: default -'792940': +"792940": installDir: Sail and Sacrifice launch: - config: oslist: windows executable: WindowsNoEditor/ArchipleagoAlpha.exe type: default -'792960': {} -'792970': +"792960": {} +"792970": installDir: Wheelz2 launch: - config: @@ -366182,59 +360863,59 @@ oslist: linux executable: UnrealRacerz.sh type: default -'792990': +"792990": installDir: Identity Town Square launch: - config: oslist: windows executable: IdentityGame.exe type: default -'793000': +"793000": installDir: Star-Pit Starship launch: - config: oslist: windows executable: star-pit_starship.exe type: default -'793010': +"793010": installDir: SuperPillowFight launch: - config: oslist: windows executable: SuperPillowFight.exe type: default -'793030': +"793030": installDir: Asteroid Defender launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ADR_EarlyAccessRC2.exe type: default -'793050': +"793050": installDir: UndeadFactory launch: - config: oslist: windows executable: UndeadFactory.exe type: default -'793080': +"793080": installDir: Barbarossa launch: - config: oslist: windows executable: contents/Game.exe type: default -'793100': {} -'793130': {} -'793150': +"793100": {} +"793130": {} +"793150": installDir: Moe Ninja Girls launch: - config: oslist: windows executable: moeninjagirls.exe type: default -'793170': +"793170": installDir: Seeking Dawn - FTP Edition launch: - config: @@ -366246,28 +360927,28 @@ oslist: windows executable: SeekingDawn.exe type: vr -'793180': +"793180": installDir: Hero Village Simulator launch: - config: oslist: windows executable: HeroVillageSimulator.exe type: none -'793200': +"793200": installDir: Escape the Darkness launch: - config: oslist: windows executable: game.exe type: default -'793210': - installDir: The Cathedral Allison's Diary +"793210": + installDir: "The Cathedral Allison's Diary" launch: - config: oslist: windows executable: TCAD_SteamVR_Build_1.0.exe type: vr -'793220': +"793220": installDir: A Fine Mess launch: - config: @@ -366278,8 +360959,8 @@ oslist: macos executable: AFineMess.app type: default -'793230': {} -'793240': +"793230": {} +"793240": installDir: Merlin vs Zombies launch: - config: @@ -366288,13 +360969,13 @@ type: none - config: oslist: macos - executable: Merlin vs Zombies.app\\Contents\\MacOS\\Merlin vs Zombies + executable: "Merlin vs Zombies.app\\\\Contents\\\\MacOS\\\\Merlin vs Zombies" type: none - config: oslist: linux executable: Merlin vs Zombies.x86 type: none -'793250': +"793250": installDir: Casino Poker launch: - config: @@ -366307,22 +360988,22 @@ executable: PokerHelp/help.html type: none workingdir: PokerHelp -'793260': +"793260": installDir: Army of Squirrels launch: - config: oslist: windows executable: ArmyOfSquirrels.exe type: default -'793280': +"793280": installDir: Neon Valley Revenge launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: NV_4.0.exe type: none -'793310': +"793310": installDir: Die drei und der Riesenkrake launch: - config: @@ -366333,7 +361014,7 @@ oslist: macos executable: DDF_Riesenkrake_Steam.app type: default -'793320': +"793320": installDir: Die drei - Rätsel aus der Geisterwelt launch: - config: @@ -366344,20 +361025,20 @@ oslist: macos executable: DDF_Geisterwelt_Steam.app type: default -'793350': +"793350": installDir: Swarmlake launch: - executable: Swarmlake.exe type: default -'793360': +"793360": installDir: Big Crown Showdown launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Big Crown Showdown.exe type: default -'793370': +"793370": installDir: KIDS launch: - config: @@ -366375,28 +361056,28 @@ nameLocalized: schinese: 孩子们 tchinese: 孩子們 -'793400': +"793400": installDir: Fist of Brave launch: - config: oslist: windows executable: FistofBrave.exe type: default -'793410': +"793410": installDir: toutennnoginnyoku launch: - config: oslist: windows executable: contents/Game.exe type: default -'793450': +"793450": installDir: Desecration of Wings launch: - config: oslist: windows executable: Game.exe type: none -'793460': +"793460": installDir: 112 Operator launch: - config: @@ -366406,32 +361087,26 @@ - config: oslist: macos description: 112 Operator - description_loc: - english: 112 Operator executable: Operator 112 Mac.app type: none - - arguments: '-force-glcore' + - arguments: "-force-glcore" config: oslist: macos description: 112 Operator (OpenGL) - description_loc: - english: 112 Operator (OpenGL) executable: Operator 112 Mac.app type: none - - arguments: '-force-metal' + - arguments: "-force-metal" config: oslist: macos description: 112 Operator (Metal) - description_loc: - english: 112 Operator (Metal) executable: Operator 112 Mac.app type: none -'793480': +"793480": installDir: Trick Shot launch: - executable: Trick_Shot.exe type: none -'793490': +"793490": installDir: Exocraft launch: - config: @@ -366442,27 +361117,27 @@ oslist: macos executable: Exocraft.app type: default -'793510': +"793510": installDir: DuskOfConfinement launch: - config: oslist: windows executable: DuskOfConfinment.exe type: default -'793560': +"793560": installDir: Warfare 1944 launch: - - executable: Warfare1944\\Binaries\\Win64\\Warfare1944-Win64-Shipping.exe + - executable: "Warfare1944\\\\Binaries\\\\Win64\\\\Warfare1944-Win64-Shipping.exe" type: default -'793570': +"793570": installDir: Trenchfoot launch: - config: oslist: windows executable: Trenchfoot.exe type: default -'793600': - installDir: Don't Pick On The Fat Kid +"793600": + installDir: "Don't Pick On The Fat Kid" launch: - config: oslist: windows @@ -366476,7 +361151,7 @@ oslist: linux executable: Bully Beatdown.x86 type: none -'793620': +"793620": installDir: Hellbreaker launch: - config: @@ -366494,10 +361169,10 @@ - config: oslist: windows description: Game Editor - executable: Game\\Tool\\Editor.bat + executable: "Game\\\\Tool\\\\Editor.bat" type: editor - workingdir: Game\\Tool -'793630': + workingdir: "Game\\\\Tool" +"793630": installDir: GROOD launch: - config: @@ -366508,81 +361183,81 @@ oslist: macos executable: Build-osx.app type: default -'793640': - installDir: D.C. S#!storm +"793640": + installDir: "D.C. S#!storm" launch: - config: oslist: windows executable: DC.exe type: default -'793670': +"793670": installDir: The Wastes launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: The Wastes (32-Bit) executable: wastes32.exe type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: The Wastes (64-bit) executable: wastes.amd64 type: none - config: - osarch: '32' + osarch: "32" oslist: linux description: The Wastes (32-bit) executable: wastes.i486 type: none - config: - osarch: '64' + osarch: "64" oslist: windows description: The Wastes (64-Bit) executable: wastes64.exe type: none -'793680': +"793680": installDir: Fission Superstar X launch: - config: oslist: windows executable: FSSX.exe type: default -'793690': +"793690": installDir: Final Assault launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: FinalAssault.exe type: vr -'793700': {} -'793710': {} -'793720': {} -'793740': {} -'793760': +"793700": {} +"793710": {} +"793720": {} +"793740": {} +"793760": installDir: My Sweet Waifu launch: - config: oslist: windows executable: My Sweet Waifu.exe type: default -'793820': +"793820": installDir: Coffee Crawl launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows executable: Game.exe type: default - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: macos executable: Game.app type: default -'793830': +"793830": installDir: Kharons_Crypt_Even_Death_May_Die launch: - config: @@ -366593,22 +361268,22 @@ oslist: linux executable: KharonsCrypt_Even_Death_May_Die type: default -'793880': +"793880": installDir: Mirage launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: MIRAGE.exe type: vr - arguments: vr_disabled config: - osarch: '64' + osarch: "64" oslist: windows description: Launch (Desktop) executable: MIRAGE.exe type: none -'793940': +"793940": installDir: Moai V Collector’s Edition launch: - config: @@ -366616,22 +361291,22 @@ description: Launch executable: Moai5_NewGeneration_CE.exe type: default -'793970': +"793970": installDir: Super Kids Racing launch: - config: oslist: windows executable: superkids.exe type: default -'793980': {} -'793990': +"793980": {} +"793990": installDir: Dupio launch: - config: oslist: windows executable: nw.exe type: default -'7940': +"7940": installDir: Call of Duty 4 launch: - config: @@ -366649,54 +361324,54 @@ oslist: macos description: Launch Call of Duty 4 Modern Warfare Multiplayer executable: Call of Duty 4.app/Contents/Call of Duty 4 Multiplayer.app -'794030': +"794030": installDir: Pegasus 5 launch: - config: oslist: windows executable: Pegasus 5.exe type: default -'794040': +"794040": installDir: The Broken Seal Arena launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TheBrokenSealArena.exe type: vr -'794050': +"794050": installDir: Drift Legends launch: - config: oslist: windows executable: Drift Legends.exe type: none -'794180': +"794180": installDir: Pro Fishing Simulator launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ProFishingSimulator.exe type: none -'794190': +"794190": installDir: Football Russian 20!8 launch: - config: oslist: windows executable: Football Russian 20!8.exe type: default -'794210': {} -'794230': +"794210": {} +"794230": installDir: Golden8bits launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Golden8Bits.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: Golden8Bits.exe type: default @@ -366704,7 +361379,7 @@ oslist: macos executable: Golden8Bits.app/Contents/MacOS/Golden8Bits type: default -'794240': +"794240": installDir: Spinch launch: - config: @@ -366715,112 +361390,93 @@ oslist: macos executable: Spinch.app type: default -'794260': +"794260": installDir: Outward launch: - config: oslist: windows - ownsdlc: '1758860' + ownsdlc: "1758860" description: Outward - Definitive Edition - description_loc: - english: Outward - Definitive Edition executable: Outward_Defed/Outward Definitive Edition.exe type: option1 - config: oslist: windows executable: Outward.exe type: default -'794270': +"794270": installDir: Landinar Into the Void launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Landinar.exe type: default -'794290': {} -'794300': +"794290": {} +"794300": installDir: Simple Man launch: - config: oslist: windows executable: Simple Man.exe type: default -'794350': +"794350": installDir: NoCaptainAllowed launch: - - arguments: '-nohmd' + - arguments: "-nohmd" config: - osarch: '64' + osarch: "64" oslist: windows - executable: WindowsNoEditor\\Project_Respawn.exe + executable: "WindowsNoEditor\\\\Project_Respawn.exe" type: default - - arguments: '-nohmd' + - arguments: "-nohmd" config: betakey: Project_Respawn.exe - osarch: '64' + osarch: "64" oslist: windows description: BetaBuild - description_loc: - english: BetaBuild executable: Project_Respawn.exe type: config -'794360': {} -'794390': +"794360": {} +"794390": installDir: Zed Survival launch: - config: oslist: windows executable: ZedSurvival.exe type: default -'794410': {} -'794420': {} -'794480': +"794410": {} +"794420": {} +"794480": installDir: OESM launch: - config: oslist: windows - description: 'Ottoman Empire: Spectacular Millennium' - description_loc: - english: 'Ottoman Empire: Spectacular Millennium' - turkish: 'Osmanlı İmparatorluğu: Muhteşem Binyıl' + description: "Ottoman Empire: Spectacular Millennium" executable: OESM.exe type: default - config: oslist: windows description: Chapter Selection - description_loc: - english: Chapter Selection - turkish: Bölüm Seçimi executable: OESMCS.exe type: none - config: oslist: windows description: Beta TPS Mode - description_loc: - english: Beta TPS Mode - turkish: Beta TPS Modu executable: OESM_TPS.exe type: none - config: oslist: windows description: Convert to Retro Pixel Version - description_loc: - english: Convert to Retro Pixel Version - turkish: Retro Piksel Sürüme Dönüştür - executable: Files\\effectbank\\reloaded\\pixel.exe + executable: "Files\\\\effectbank\\\\reloaded\\\\pixel.exe" type: config - workingdir: Files\\effectbank\\reloaded\\ + workingdir: "Files\\\\effectbank\\\\reloaded\\\\" - config: oslist: windows description: Convert to Original Version - description_loc: - english: Convert to Original Version - turkish: Orijinal Sürüme Dönüştür - executable: Files\\effectbank\\reloaded\\normal.exe + executable: "Files\\\\effectbank\\\\reloaded\\\\normal.exe" type: config - workingdir: Files\\effectbank\\reloaded\\ -'794490': + workingdir: "Files\\\\effectbank\\\\reloaded\\\\" +"794490": installDir: Journey of Life launch: - executable: JourneyOfLife.exe @@ -366829,7 +361485,7 @@ betakey: legacy executable: JourneyOfLife_419.exe type: none -'794530': +"794530": installDir: Zombie Lane Survival launch: - config: @@ -366841,20 +361497,20 @@ executable: ZLS.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: ZLS.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: ZLS.x86_64 type: default -'794540': +"794540": installDir: Neo Cab launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Neo Cab.exe type: default @@ -366862,7 +361518,7 @@ oslist: macos executable: Neo Cab.app type: default -'794550': +"794550": installDir: Grapple Force Rena launch: - config: @@ -366877,82 +361533,82 @@ oslist: linux executable: nw type: default -'794570': +"794570": installDir: XBall Champion launch: - executable: game.exe type: default -'794580': +"794580": installDir: SNKHEROINES launch: - executable: SNKHEROINES.exe type: default -'794600': +"794600": installDir: LET IT DIE launch: - config: oslist: windows - executable: .\\Binaries\\Win64\\BrgGame-Steam.exe + executable: ".\\\\Binaries\\\\Win64\\\\BrgGame-Steam.exe" type: default -'794630': +"794630": installDir: Puzzle 3D launch: - config: oslist: windows executable: Puzzle3D.exe type: default -'794640': +"794640": installDir: Tommyknockers launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: Tommyknockers.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: Tommyknockers.exe type: default -'794650': +"794650": installDir: I saw IT launch: - config: oslist: windows executable: ISAW_IT.exe type: default -'794700': {} -'794710': +"794700": {} +"794710": installDir: WeddingVR_Yamato launch: - config: oslist: windows executable: WeddingVR.exe type: vr -'794720': +"794720": installDir: WeddingVR_Henry launch: - config: oslist: windows executable: WeddingVR.exe type: vr -'794730': +"794730": installDir: WeddingVR_Masamune launch: - config: oslist: windows executable: WeddingVR.exe type: vr -'794740': +"794740": installDir: Patent9 launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: Patent9.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: Patent9.exe type: default @@ -366960,7 +361616,7 @@ oslist: macos executable: Patent9.app/Contents/MacOS/Patent9 type: default -'794750': +"794750": installDir: MineSweepVR launch: - config: @@ -366975,36 +361631,36 @@ oslist: windows executable: MineSweepVR.exe type: othervr -'794760': +"794760": installDir: ABYSSCRAWLERSplus launch: - config: oslist: windows executable: abysscrawlers_plus.exe type: default -'794780': +"794780": installDir: Pathogen launch: - config: oslist: windows executable: Pathogen.exe type: default -'794800': +"794800": installDir: Clue launch: - config: oslist: windows executable: Cluedo.exe type: default -'794810': {} -'794820': +"794810": {} +"794820": installDir: Project V for Victory launch: - config: oslist: windows executable: kopp2.exe type: none -'794830': +"794830": installDir: Abha launch: - config: @@ -367013,7 +361669,7 @@ type: none - executable: game.exe type: none -'794850': +"794850": installDir: Landflix Odyssey launch: - config: @@ -367024,7 +361680,7 @@ oslist: macos executable: Landflix Odyssey.app type: none -'794860': +"794860": installDir: eSail launch: - config: @@ -367045,10 +361701,10 @@ russian: ПАРУСНЫЙ СИМУЛЯТОР ESAIL spanish: El Simulador de Navegación eSail turkish: eSail Yelken Simülatörü -'794870': {} -'794910': {} -'794920': {} -'794940': +"794870": {} +"794910": {} +"794920": {} +"794940": installDir: Hexa Turn launch: - config: @@ -367059,43 +361715,43 @@ oslist: macos executable: Hexa Turn.app type: default -'794950': +"794950": installDir: TheFrostyLeaves launch: - config: oslist: windows executable: Game.exe type: default -'794960': +"794960": installDir: The Sojourn launch: - config: oslist: windows executable: TheSojourn.exe type: default -'794990': +"794990": installDir: Geometry Runner Online launch: - config: oslist: windows executable: runner.exe type: default -'795030': {} -'795040': +"795030": {} +"795040": installDir: E.Z launch: - config: oslist: windows executable: EZ.exe type: default -'795050': +"795050": installDir: TechnoBoy launch: - executable: TechnoBoy.exe type: none -'795060': {} -'795070': {} -'795100': +"795060": {} +"795070": {} +"795100": installDir: Friday the 13th Killer Puzzle launch: - config: @@ -367106,7 +361762,7 @@ oslist: macos executable: F13.app type: default -'795110': +"795110": installDir: IIN launch: - config: @@ -367115,18 +361771,18 @@ type: default - config: oslist: macos - executable: IIN.app\\Contents\\MacOS\\IIN + executable: "IIN.app\\\\Contents\\\\MacOS\\\\IIN" type: default - config: oslist: linux executable: IIN.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: IIN.x86 type: default -'795120': +"795120": installDir: to_the_capital_2 launch: - config: @@ -367137,13 +361793,13 @@ oslist: linux executable: To The Capital 2 type: none -'795140': +"795140": installDir: Roanoke launch: - description: Standard launch option. executable: Roanoke.exe type: default -'795160': +"795160": installDir: TsundereIdol launch: - config: @@ -367156,24 +361812,24 @@ type: default - config: oslist: linux - executable: ./TsundereIdol.sh + executable: "./TsundereIdol.sh" type: default nameLocalized: schinese: 国民偶像 爱的解禁 tchinese: 国民偶像 愛的解禁 -'795220': +"795220": installDir: Venture Africa launch: - config: oslist: windows executable: Venture Africa.exe type: default -'795230': +"795230": installDir: Venture Arctic launch: - executable: VentureArctic.exe type: default -'795310': +"795310": installDir: Devil in the Details launch: - config: @@ -367191,14 +361847,14 @@ description: Launch executable: DevilintheDetails.app type: none -'795320': +"795320": installDir: Dissimilation launch: - config: oslist: windows executable: Dissimilation.exe type: default -'795420': +"795420": installDir: The Darkside Detective Season 2 launch: - config: @@ -367210,36 +361866,36 @@ executable: The Darkside Detective 2.app/Contents/MacOS/The Darkside Detective 2 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: The Darkside Detective 2.x86_64 type: default -'795430': +"795430": installDir: Puzzle Lab launch: - executable: PuzzleLab.exe type: default - executable: PuzzleLab.exe type: vr - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" executable: PuzzleLab.exe type: config -'795440': +"795440": installDir: Why War launch: - config: oslist: windows executable: WhyWar.exe type: none -'795480': +"795480": installDir: UnknownPainHardcore launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: UnknownPain.exe type: default -'795490': +"795490": installDir: FukTopia launch: - config: @@ -367252,8 +361908,8 @@ executable: FuckTopia.x86 type: default workingdir: FuckTopia_Data -'795500': {} -'795510': +"795500": {} +"795510": installDir: Koihime Enbu RyoRaiRai launch: - executable: KoihimeEnbu_steam.exe @@ -367263,7 +361919,7 @@ description: Key configuration tool for DirectInput Game Controller executable: AsignDInput.exe type: none -'795530': +"795530": installDir: Viral Cry launch: - config: @@ -367274,14 +361930,14 @@ oslist: macos executable: Viral Cry.app/Contents/MacOS/Viral Cry type: none -'795550': +"795550": installDir: Warawara Invaders launch: - config: oslist: windows executable: WarawaraInvaders.exe type: default -'795570': +"795570": installDir: Odium To the Core launch: - config: @@ -367293,24 +361949,24 @@ executable: OdiumTTC.app/Contents/MacOS/OdiumTTC type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: OdiumTTC.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: OdiumTTC.x86_64 type: default -'795580': +"795580": installDir: THE DAY Online launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Launcher.exe type: default -'795610': +"795610": installDir: Gift of Parthax launch: - config: @@ -367325,22 +361981,22 @@ oslist: linux executable: Gift of Parthax.x86_64 type: default -'795640': +"795640": installDir: VINDICTA Arcade launch: - config: oslist: windows executable: Vindicta.exe type: vr -'795680': +"795680": installDir: Border of her Heart launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows executable: Game.exe type: default - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: macos executable: Game.app @@ -367349,284 +362005,221 @@ oslist: linux executable: nw type: default -'795760': +"795760": installDir: UPPERS launch: - config: oslist: windows executable: UppersLauncher.exe type: default -'795910': +"795910": installDir: Montero launch: - config: oslist: windows executable: Montero.exe type: default -'795920': +"795920": installDir: SALVATOR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: game.exe type: default -'795940': +"795940": installDir: Fantasy Mosaics 19 Edge of the World launch: - config: oslist: windows executable: fantasy_mosaics_19.exe type: default -'795950': +"795950": installDir: DSTEOL launch: - config: oslist: windows - description: 'Deathly Storm: The Edge of Life Chapter 1' - description_loc: - english: 'Deathly Storm: The Edge of Life Chapter 1' - turkish: 'Ölümcül Fırtına: Yaşamın Kıyısında Bölüm 1' + description: "Deathly Storm: The Edge of Life Chapter 1" executable: DSTEOL.exe type: default - config: oslist: windows - description: 'Deathly Storm: The Edge of Life Chapter 2' - description_loc: - english: 'Deathly Storm: The Edge of Life Chapter 2' - turkish: 'Ölümcül Fırtına: Yaşamın Kıyısında Bölüm 2' + description: "Deathly Storm: The Edge of Life Chapter 2" executable: DSTEOL02.exe type: none - config: oslist: windows - description: 'Deathly Storm: The Edge of Life Chapter 3' - description_loc: - english: 'Deathly Storm: The Edge of Life Chapter 3' - turkish: 'Ölümcül Fırtına: Yaşamın Kıyısında Bölüm 3' + description: "Deathly Storm: The Edge of Life Chapter 3" executable: DSTEOL03.exe type: none - config: oslist: windows - description: 'Deathly Storm: The Edge of Life Chapter 4' - description_loc: - english: 'Deathly Storm: The Edge of Life Chapter 4' - turkish: 'Ölümcül Fırtına: Yaşamın Kıyısında Bölüm 4' + description: "Deathly Storm: The Edge of Life Chapter 4" executable: DSTEOL04.exe type: none - config: oslist: windows - description: 'Deathly Storm: The Edge of Life Chapter 5' - description_loc: - english: 'Deathly Storm: The Edge of Life Chapter 5' - turkish: 'Ölümcül Fırtına: Yaşamın Kıyısında Bölüm 5' + description: "Deathly Storm: The Edge of Life Chapter 5" executable: DSTEOL06.exe type: none - config: oslist: windows - description: 'Deathly Storm: The Edge of Life Chapter Zero Day' - description_loc: - english: 'Deathly Storm: The Edge of Life Chapter Zero Day' - turkish: 'Ölümcül Fırtına: Yaşamın Kıyısında Sıfırıncı Gün' + description: "Deathly Storm: The Edge of Life Chapter Zero Day" executable: DSTEOL05.exe type: none - config: oslist: windows - description: 'Deathly Storm: The Edge of Life Beta TPS Mode' - description_loc: - english: 'Deathly Storm: The Edge of Life Beta TPS Mode' - turkish: 'Ölümcül Fırtına: Yaşamın Kıyısında Beta TPS Modu' + description: "Deathly Storm: The Edge of Life Beta TPS Mode" executable: DSTEOL_TPS.exe type: none - config: oslist: windows description: Convert to Retro Pixel Version - description_loc: - english: Convert to Retro Pixel Version - turkish: Retro Piksel Sürüme Dönüştür - executable: Files\\effectbank\\reloaded\\pixel.exe + executable: "Files\\\\effectbank\\\\reloaded\\\\pixel.exe" type: config - workingdir: Files\\effectbank\\reloaded\\ + workingdir: "Files\\\\effectbank\\\\reloaded\\\\" - config: oslist: windows description: Convert to Original Version - description_loc: - english: Convert to Original Version - turkish: Orijinal Sürüme Dönüştür - executable: Files\\effectbank\\reloaded\\normal.exe + executable: "Files\\\\effectbank\\\\reloaded\\\\normal.exe" type: config - workingdir: Files\\effectbank\\reloaded -'795960': + workingdir: "Files\\\\effectbank\\\\reloaded" +"795960": installDir: MDA launch: - config: oslist: windows - description: 'Murder Diaries: Ankara Chapter 1' - description_loc: - english: 'Murder Diaries: Ankara Chapter 1' - turkish: 'Cinayet Günlükleri: Ankara Bölüm 1' + description: "Murder Diaries: Ankara Chapter 1" executable: MDA.exe type: default - config: oslist: windows - description: 'Murder Diaries: Ankara Chapter 2' - description_loc: - english: 'Murder Diaries: Ankara Chapter 2' - turkish: 'Cinayet Günlükleri: Ankara Bölüm 2' + description: "Murder Diaries: Ankara Chapter 2" executable: MDA02.exe type: none - config: oslist: windows - description: 'Murder Diaries: Ankara Chapter 3' - description_loc: - english: 'Murder Diaries: Ankara Chapter 3' - turkish: 'Cinayet Günlükleri: Ankara Bölüm 3' + description: "Murder Diaries: Ankara Chapter 3" executable: MDA03.exe type: none - config: oslist: windows - description: 'Murder Diaries: Ankara Chapter 4' - description_loc: - english: 'Murder Diaries: Ankara Chapter 4' - turkish: 'Cinayet Günlükleri: Ankara Bölüm 4' + description: "Murder Diaries: Ankara Chapter 4" executable: MDA04.exe type: none - config: oslist: windows - description: 'Murder Diaries: Ankara Chapter 5' - description_loc: - english: 'Murder Diaries: Ankara Chapter 5' - turkish: 'Cinayet Günlükleri: Ankara Bölüm 5' + description: "Murder Diaries: Ankara Chapter 5" executable: MDA05.exe type: none - config: oslist: windows - description: 'Murder Diaries: Ankara Chapter 6' - description_loc: - english: 'Murder Diaries: Ankara Chapter 6' - turkish: 'Cinayet Günlükleri: Ankara Bölüm 6' + description: "Murder Diaries: Ankara Chapter 6" executable: MDA06.exe type: none - config: oslist: windows - description: 'Murder Diaries: Ankara Chapter 7' - description_loc: - english: 'Murder Diaries: Ankara Chapter 7' - turkish: 'Cinayet Günlükleri: Ankara Bölüm 7' + description: "Murder Diaries: Ankara Chapter 7" executable: MDA07.exe type: none - config: oslist: windows - description: 'Murder Diaries: Ankara Chapter 8' - description_loc: - english: 'Murder Diaries: Ankara Chapter 8' - turkish: 'Cinayet Günlükleri: Ankara Bölüm 8' + description: "Murder Diaries: Ankara Chapter 8" executable: MDA08.exe type: none - config: oslist: windows - description: 'Murder Diaries: Ankara Chapter 9' - description_loc: - english: 'Murder Diaries: Ankara Chapter 9' - turkish: 'Cinayet Günlükleri: Ankara Bölüm 9' + description: "Murder Diaries: Ankara Chapter 9" executable: MDA09.exe type: none - config: oslist: windows - description: 'Murder Diaries: Ankara Beta TPS Mode' - description_loc: - english: 'Murder Diaries: Ankara Beta TPS Mode' - turkish: 'Cinayet Günlükleri: Ankara Beta TPS Modu' + description: "Murder Diaries: Ankara Beta TPS Mode" executable: MDA_TPS.exe type: none - config: oslist: windows description: Convert to Retro Pixel Version - description_loc: - english: Convert to Retro Pixel Version - turkish: Retro Piksel Sürüme Dönüştür - executable: Files\\effectbank\\reloaded\\pixel.exe + executable: "Files\\\\effectbank\\\\reloaded\\\\pixel.exe" type: config - workingdir: Files\\effectbank\\reloaded\\ + workingdir: "Files\\\\effectbank\\\\reloaded\\\\" - config: oslist: windows description: Convert to Original Version - description_loc: - english: Convert to Original Version - turkish: Orijinal Sürüme Dönüştür - executable: Files\\effectbank\\reloaded\\normal.exe + executable: "Files\\\\effectbank\\\\reloaded\\\\normal.exe" type: config - workingdir: Files\\effectbank\\reloaded\\ -'795990': + workingdir: "Files\\\\effectbank\\\\reloaded\\\\" +"795990": installDir: Rise launch: - config: oslist: windows executable: Rise.exe type: default -'796030': +"796030": installDir: HardHelmets launch: - config: oslist: windows executable: HardHelmets.exe type: default -'796050': - installDir: The Agency of Anomalies Mind Invasion Collector's Edition +"796050": + installDir: "The Agency of Anomalies Mind Invasion Collector's Edition" launch: - config: oslist: windows executable: AgencyofAnomalies_MindInvasion_CE.exe type: default -'796060': - installDir: Riddles of Fate Memento Mori Collector's Edition +"796060": + installDir: "Riddles of Fate Memento Mori Collector's Edition" launch: - config: oslist: windows executable: RiddlesOfFate_MementoMori_CE.exe type: default -'796070': - installDir: PuppetShow Return to Joyville Collector's Edition +"796070": + installDir: "PuppetShow Return to Joyville Collector's Edition" launch: - config: oslist: windows executable: PuppetShow_ReturnToJoyville_CE.exe type: default -'796080': - installDir: Amaranthine Voyage The Shadow of Torment Collector's Edition +"796080": + installDir: "Amaranthine Voyage The Shadow of Torment Collector's Edition" launch: - config: oslist: windows executable: AmaranthineVoyage_TheShadowofTormentCE.exe type: default -'796090': - installDir: Danse Macabre Deadly Deception Collector's Edition +"796090": + installDir: "Danse Macabre Deadly Deception Collector's Edition" launch: - config: oslist: windows executable: DanseMacabre_DeadlyDeception_CE.exe type: default -'796100': - installDir: Haunted Halls Fears from Childhood Collector's Edition +"796100": + installDir: "Haunted Halls Fears from Childhood Collector's Edition" launch: - config: oslist: windows executable: Haunted_Halls_Fears_from_Childhood.exe type: default -'796110': +"796110": installDir: Arkasha launch: - config: oslist: windows executable: nw.exe type: default -'796130': +"796130": installDir: Virus Petya launch: - config: oslist: windows executable: Virus Petya.exe type: config -'796140': +"796140": installDir: Zig launch: - config: @@ -367634,7 +362227,7 @@ executable: zig.exe type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: zig type: none @@ -367642,15 +362235,15 @@ oslist: macos executable: zig.app/Contents/MacOS/zig type: none -'796260': +"796260": installDir: Radiant Melodia launch: - config: oslist: windows executable: Radiant Melodia x86.exe type: default -'796270': {} -'796290': +"796270": {} +"796290": installDir: World of Tennis Roaring 20s launch: - config: @@ -367661,28 +362254,28 @@ oslist: macos executable: WorldOfTennis.app type: default -'796300': {} -'796320': +"796300": {} +"796320": installDir: Potatoe launch: - executable: nw.exe type: default -'796330': - installDir: Widower's Sky +"796330": + installDir: "Widower's Sky" launch: - config: oslist: windows executable: wsAug25-2019.exe type: none -'796340': +"796340": installDir: Lifeblood launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Lifeblood/Binaries/Win64/Lifeblood-Win64-Shipping.exe type: default -'796350': +"796350": installDir: NatureFly launch: - config: @@ -367693,12 +362286,12 @@ oslist: windows executable: NatureFly/NatureFly.exe type: default -'796360': +"796360": installDir: JQ countries launch: - executable: JQcountries.exe type: none -'796370': +"796370": installDir: Desert of Vice launch: - config: @@ -367707,37 +362300,37 @@ type: default - config: oslist: macos - executable: Desert of Vice.app\\Contents\\MacOS\\Desert of Vice + executable: "Desert of Vice.app\\\\Contents\\\\MacOS\\\\Desert of Vice" type: default -'796380': +"796380": installDir: TerraFeminarum launch: - config: oslist: windows executable: terra_feminarum.exe type: default -'796400': +"796400": installDir: I Misteri di Maggia launch: - config: oslist: windows executable: Maggia.exe type: default -'796430': +"796430": installDir: SHiRO 011 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SHiRO_011.exe type: none -'796440': +"796440": installDir: Spaceguy launch: - executable: SG.exe type: none -'796450': {} -'796460': +"796450": {} +"796460": installDir: Individual Investor Tycoon launch: - config: @@ -367746,26 +362339,26 @@ type: default - config: oslist: macos - executable: Individual-Investor-Tycoon.app\\Contents\\MacOS\\Individual-Investor-Tycoon + executable: "Individual-Investor-Tycoon.app\\\\Contents\\\\MacOS\\\\Individual-Investor-Tycoon" type: default -'796470': {} -'796480': +"796470": {} +"796480": installDir: Bit-Boom launch: - executable: Start.exe type: none -'796490': +"796490": installDir: Fantasy Mosaics 20 Castle of Puzzles launch: - config: oslist: windows executable: fantasy_mosaics_20.exe type: default -'796500': +"796500": installDir: SpellShokked launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SpellShokked.exe type: vr @@ -367773,41 +362366,41 @@ oslist: macos executable: SpellShokked.app type: vr -'796510': +"796510": installDir: MonkeySlap launch: - executable: MonkeySlap.exe type: none -'796520': +"796520": installDir: Ice Cream Factory launch: - config: oslist: windows - executable: Ice Cream Factory\\Ice Cream Factory.exe + executable: "Ice Cream Factory\\\\Ice Cream Factory.exe" type: default -'796530': {} -'796580': +"796530": {} +"796580": installDir: 100 Seconds launch: - config: oslist: windows executable: 100seconds.exe type: default -'796590': +"796590": installDir: taghiaexe launch: - config: oslist: windows executable: taghia.exe type: default -'796600': - installDir: DON'T touch the walls +"796600": + installDir: "DON'T touch the walls" launch: - config: oslist: windows executable: dttw.exe type: default -'796620': +"796620": installDir: Girl X Mushrooms(少女X蘑菇) launch: - config: @@ -367817,7 +362410,7 @@ nameLocalized: english: X Mushrooms schinese: X Mushrooms -'796640': +"796640": installDir: MrJezko launch: - config: @@ -367826,39 +362419,39 @@ type: none - config: oslist: macos - executable: mrjezko.app\\Contents\\MacOS\\mrjezko + executable: "mrjezko.app\\\\Contents\\\\MacOS\\\\mrjezko" type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: mrjezko.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: mrjezko.x86_64 type: none -'796650': +"796650": installDir: Frio2 - Memory of my sister launch: - config: oslist: windows executable: friotwo.exe type: none -'796710': +"796710": installDir: web spice launch: - executable: web spice.exe type: none -'796760': +"796760": installDir: varBlocks launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: varBlocks.exe type: openvroverlay -'796770': +"796770": installDir: Toddler Simulator launch: - config: @@ -367873,7 +362466,7 @@ oslist: linux executable: TodSim.x64 type: none -'796780': +"796780": installDir: Star Drift launch: - config: @@ -367882,24 +362475,24 @@ type: none - config: oslist: macos - executable: StarDrift.app\\Contents\\MacOS\\StarDrift + executable: "StarDrift.app\\\\Contents\\\\MacOS\\\\StarDrift" type: none -'796790': +"796790": installDir: GLAD VALAKAS SIMULATOR launch: - executable: GVS.exe type: none -'796800': +"796800": installDir: Lair of the Titans launch: - config: oslist: windows executable: Lair of the Titans.exe type: vr -'796810': {} -'796820': {} -'796830': {} -'796840': +"796810": {} +"796820": {} +"796830": {} +"796840": installDir: Molecule - a chemical challenge launch: - config: @@ -367910,45 +362503,45 @@ oslist: macos executable: molecule.app/Contents/MacOs/molecule type: default -'796860': +"796860": installDir: Police Enforcement VR 1-King-27 launch: - config: oslist: windows - executable: WindowsNoEditor\\WeaponMasterVR.exe + executable: "WindowsNoEditor\\\\WeaponMasterVR.exe" type: vr -'796890': {} -'796900': +"796890": {} +"796900": installDir: Trivia Vault Mixed Trivia 2 launch: - config: oslist: windows executable: Trivia Vault Mixed Trivia 2.exe type: default -'796910': +"796910": installDir: Please Love My Computer Game launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" executable: PLMCG.exe type: default -'796920': +"796920": installDir: Xenoform launch: - executable: Xenoform_win.exe type: default -'796930': +"796930": installDir: Neon Spaceboard launch: - config: oslist: windows - ownsdlc: '871630' + ownsdlc: "871630" executable: NeonSpaceboard.exe type: none - config: oslist: macos executable: NeonSpaceboard.app type: none -'796940': +"796940": installDir: Red Embrace launch: - config: @@ -367963,14 +362556,14 @@ oslist: linux executable: RedEmbrace.sh type: default -'796950': +"796950": installDir: The Haunting of Billy HD launch: - config: oslist: windows executable: The Haunting of Billy HD.exe type: default -'796970': +"796970": installDir: VR Soccer Training launch: - config: @@ -367978,125 +362571,125 @@ description: Launch executable: VR Soccer Training.exe type: othervr -'796980': - installDir: Kai Yuen's Overlapped Universe +"796980": + installDir: "Kai Yuen's Overlapped Universe" launch: - config: oslist: windows executable: ou_full.exe type: none -'7970': - installDir: Cabela's Trophy Bucks +"7970": + installDir: "Cabela's Trophy Bucks" launch: - - executable: bin\\ctb.exe + - executable: "bin\\\\ctb.exe" workingdir: bin -'797010': - installDir: Mavi's Journey +"797010": + installDir: "Mavi's Journey" launch: - config: oslist: windows executable: Game.exe type: default -'797020': +"797020": installDir: TinyWar high-speed launch: - config: oslist: windows - executable: bin\\TinyWar.exe + executable: "bin\\\\TinyWar.exe" type: default -'797040': +"797040": installDir: Reboant - Endless Dawn launch: - config: oslist: windows executable: Reboant.exe type: vr -'797060': +"797060": installDir: Qubika launch: - config: oslist: windows - executable: win64\\qubika.exe + executable: "win64\\\\qubika.exe" type: none - config: oslist: macos - executable: osx64\\qubika.app\\Contents\\MacOS\\nwjs + executable: "osx64\\\\qubika.app\\\\Contents\\\\MacOS\\\\nwjs" type: none -'797070': +"797070": installDir: Bunny adventure launch: - config: oslist: windows executable: Bunny Adventure.exe type: default -'797080': {} -'797090': +"797080": {} +"797090": installDir: Neon Sun launch: - executable: Neon Sun.exe type: default -'797100': {} -'797110': +"797100": {} +"797110": installDir: Shadow Blood VR launch: - config: oslist: windows executable: Shadow Blood VR.exe type: vr -'797160': {} -'797170': {} -'797180': {} -'797190': +"797160": {} +"797170": {} +"797180": {} +"797190": installDir: Survive The king killer launch: - config: oslist: windows executable: polygon2.exe type: default -'797200': +"797200": installDir: International Space Station Tour VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ISSTour-SteamVR8k.exe type: vr -'797300': +"797300": installDir: Fantasy Mosaics 21 On the Movie Set launch: - config: oslist: windows executable: fantasy_mosaics_21.exe type: default -'797310': +"797310": installDir: Fantasy Mosaics 22 Summer Vacation launch: - config: oslist: windows executable: fantasy_mosaics_22.exe type: default -'797330': +"797330": installDir: Fantasy Mosaics 23 Magic Forest launch: - config: oslist: windows executable: fantasy_mosaics_23.exe type: default -'797340': +"797340": installDir: Fantasy Mosaics 24 Deserted Island launch: - config: oslist: windows executable: fantasy_mosaics_24.exe type: default -'797350': +"797350": installDir: Fantasy Mosaics 25 Wedding Ceremony launch: - config: oslist: windows executable: fantasy_mosaics_25.exe type: default -'797390': +"797390": installDir: How To Cope With Boredom and Loneliness launch: - config: @@ -368107,27 +362700,27 @@ oslist: linux executable: HTC.x86 type: default -'797400': +"797400": installDir: Railroad Corporation launch: - config: oslist: windows executable: RailroadCorporationSteam.exe type: default -'797410': +"797410": installDir: HeadSnatchers launch: - executable: Headsnatchers.exe type: none -'797420': +"797420": installDir: Night Drive VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: NightRun.exe type: vr -'797430': +"797430": installDir: HD Poker launch: - config: @@ -368136,41 +362729,41 @@ type: default - config: oslist: macos - executable: HDPoker.app\\Contents\\MacOS\\HDPoker + executable: "HDPoker.app\\\\Contents\\\\MacOS\\\\HDPoker" type: default -'797440': +"797440": installDir: Fantasy Mosaics 26 Fairytale Garden launch: - config: oslist: windows executable: fantasy_mosaics_26.exe type: default -'797450': +"797450": installDir: Fantasy Mosaics 27 Secret Colors launch: - config: oslist: windows executable: fantasy_mosaics_27.exe type: default -'797530': {} -'797550': +"797530": {} +"797550": installDir: Ultimate Panic Flight launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: UltimatePanicFlight.x64.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: UltimatePanicFlight.x32.exe type: default -'797570': +"797570": installDir: Go Morse Go! Arcade Edition launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: GoMorseGo.exe type: default @@ -368178,16 +362771,16 @@ oslist: macos executable: GoMorseGo.app type: default -'797610': +"797610": installDir: Subsideria launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Subsideria_64.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: Subsideria_32.exe type: default @@ -368196,16 +362789,16 @@ executable: Subsideria.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Subsideria_Linux_64.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Subsideria_Linux_32.x86 type: default -'797620': +"797620": installDir: Dissembler launch: - config: @@ -368220,7 +362813,7 @@ oslist: linux executable: Dissembler type: default -'797640': +"797640": installDir: Monster RPG 3 launch: - config: @@ -368228,7 +362821,7 @@ executable: Monster RPG 3.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: MonsterRPG3 type: default @@ -368236,15 +362829,15 @@ oslist: macos executable: Monster RPG 3.app/Contents/MacOS/MonsterRPG3 type: default -'797660': +"797660": installDir: Legend Knight launch: - config: oslist: windows executable: GodTest.exe type: default -'797680': {} -'797710': +"797680": {} +"797710": installDir: RPGolf launch: - config: @@ -368255,94 +362848,94 @@ oslist: macos executable: RPGolf.app/Contents/MacOS/RPGolf type: default -'7980': +"7980": installDir: Soldier of Fortune Payback launch: - executable: sof3.exe -'798140': +"798140": installDir: Blood Drift launch: - config: oslist: windows executable: blooddrift.exe type: default -'798170': +"798170": installDir: Dive launch: - executable: Dive.exe type: none -'798180': +"798180": installDir: SpaceTurretGunner launch: - config: oslist: windows executable: SpaceTurretGunner.exe type: vr -'798190': +"798190": installDir: Star Clash launch: - config: oslist: windows executable: StarClash.exe type: default -'798200': +"798200": installDir: TombExplorationVR launch: - config: oslist: windows executable: TombExplorationVR.exe type: vr -'798230': +"798230": installDir: AWSO launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: game64.exe type: none -'798240': +"798240": installDir: CRYEP launch: - - arguments: '@f+ @INFOOFF' + - arguments: "@f+ @INFOOFF" config: oslist: windows description: Full screen executable: CRYEP.win32_steam.exe type: option1 - - arguments: '@f1920x1080 @z0.9 @INFOOFF' + - arguments: "@f1920x1080 @z0.9 @INFOOFF" config: oslist: windows description: Windowed executable: CRYEP.win32_steam.exe type: option1 -'798260': {} -'798270': {} -'798280': +"798260": {} +"798270": {} +"798280": installDir: CrocoMars launch: - config: oslist: windows executable: CrocoMars.exe type: none -'798290': +"798290": installDir: MXGP PRO launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: mxgp4.exe type: none -'798300': {} -'798330': +"798300": {} +"798330": installDir: Bacterium launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Bacterium.exe type: default -'798340': {} -'798350': +"798340": {} +"798350": installDir: Capsule Jump launch: - config: @@ -368355,17 +362948,17 @@ type: none - config: oslist: macos - executable: Capsule Jump.app\\Contents\\MacOS\\Capsule Jump + executable: "Capsule Jump.app\\\\Contents\\\\MacOS\\\\Capsule Jump" type: none -'798370': {} -'798380': +"798370": {} +"798380": installDir: Debtor launch: - config: oslist: windows executable: debtor.exe type: none -'798420': +"798420": installDir: PRO FISHING launch: - config: @@ -368378,22 +362971,22 @@ schinese: 专业钓鱼 tchinese: 專業釣魚 turkish: Profesyonel Balıkçılık -'798460': +"798460": installDir: Ni no Kuni Wrath of the White Witch™ Remastered launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: NinoKuni_WotWW_Remastered.exe type: none -'798480': +"798480": installDir: LONELINESS AFTER - Chapter 1 launch: - config: oslist: windows executable: LonelinessAfter.exe type: none -'798490': +"798490": installDir: Othercide launch: - config: @@ -368403,11 +362996,11 @@ type: default - config: oslist: windows - ownsdlc: '1347640' + ownsdlc: "1347640" description: Artbook executable: artbook.bat type: none -'798510': +"798510": installDir: SUPER DRAGON BALL HEROES WORLD MISSION launch: - config: @@ -368415,7 +363008,7 @@ executable: Launch_Game.exe type: default - config: - betakey: 'eac-release, eac-debug, qa-debug, qa-release, dev-debug, dev-release, dev_debug_p1, dev_release_p1' + betakey: "eac-release, eac-debug, qa-debug, qa-release, dev-debug, dev-release, dev_debug_p1, dev_release_p1" oslist: windows description: NO EAC Launch (EAC無しの起動) executable: SDBHeroes_WorldMission.exe @@ -368425,29 +363018,29 @@ description: Game_ReleaseSteam.exeから起動(昔のブランチ用) executable: Game_ReleaseSteam.exe type: none -'798550': {} -'798560': +"798550": {} +"798560": installDir: Inaccessible world launch: - executable: inaccessibleWorld.exe type: default -'798570': {} -'798590': +"798570": {} +"798590": installDir: Elven Love launch: - - arguments: '-windowed' + - arguments: "-windowed" config: oslist: windows executable: ElvenLove.exe type: vr -'798610': +"798610": installDir: Mermaid Adventures The Frozen Time launch: - executable: Mermfrozen.exe type: default -'798630': {} -'798640': {} -'798650': +"798630": {} +"798640": {} +"798650": installDir: Squeakers launch: - config: @@ -368456,18 +363049,18 @@ type: default - config: oslist: macos - executable: Squeakers.app\\Contents\\MacOS\\Squeakers + executable: "Squeakers.app\\\\Contents\\\\MacOS\\\\Squeakers" type: default - config: oslist: linux executable: Squeakers.x86_64 type: default -'798670': +"798670": installDir: Tactical Chronicle launch: - executable: DirTest.exe type: none -'798680': +"798680": installDir: Animosity launch: - config: @@ -368475,39 +363068,39 @@ description: PC version executable: Animosity.exe type: default -'798710': +"798710": installDir: Voltage launch: - config: oslist: windows executable: Voltage.exe type: default -'798720': +"798720": installDir: SUPER ROBO MOUSE launch: - config: oslist: windows executable: nw.exe type: none -'798730': +"798730": installDir: rOt launch: - config: oslist: windows executable: rOt.exe type: none -'798780': +"798780": installDir: Color Cannons+ launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Color Cannons+.exe type: default -'798790': +"798790": installDir: PolyCube launch: - - arguments: '-vrmode none' + - arguments: "-vrmode none" config: oslist: windows description: PolyCube @@ -368517,7 +363110,7 @@ oslist: windows executable: polycube.exe type: vr -'798830': +"798830": installDir: The Commission Organized Crime Grand Strategy launch: - config: @@ -368528,145 +363121,127 @@ oslist: macos executable: The Commission.app type: default -'798840': +"798840": installDir: PanzerWar-DE launch: - config: oslist: windows description: Game Lanucher - description_loc: - english: Game Lanucher - schinese: 主游戏启动器 executable: GameLanucher.exe type: option1 - config: - osarch: '64' + osarch: "64" oslist: windows description: Mod Installer - description_loc: - english: Mod Installer - schinese: ' 模组安装器' executable: /Mod-Tools/Installer.exe type: option1 - config: - osarch: '64' + osarch: "64" oslist: windows - description: 'Panzer War : DE' - description_loc: - english: 'Panzer War : DE' - schinese: 装甲纷争:决定版(标清) + description: "Panzer War : DE" executable: /dlc/PanzerWar-DE/PanzerWar-DE.exe - config: - osarch: '64' + osarch: "64" oslist: windows - description: 'Panzer War : Lit' - description_loc: - english: 'Panzer War : Lit' - schinese: 装甲纷争:普通版(低配置要求) + description: "Panzer War : Lit" executable: /dlc/PanzerWar/PanzerWar.exe - - description: 'Panzer War : DE (HDRP)' - description_loc: - english: 'Panzer War : DE (HDRP)' - schinese: 装甲纷争:决定版(高清) + - description: "Panzer War : DE (HDRP)" executable: /dlc/PanzerWar-DE-HDRP/PanzerWar-DE.exe - description: Panzer War Mod Uploader - description_loc: - english: Panzer War Mod Uploader - schinese: 模组上传工具 executable: /Mod-PW-Uploader/PW-Mod-Uploader.exe nameLocalized: - schinese: '装甲纷争:决定版 (战争号角)' -'798850': + schinese: "装甲纷争:决定版 (战争号角)" +"798850": installDir: Achievement Lurker Easiest Cosmetic Numbers launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" executable: Game.exe type: default -'798930': +"798930": installDir: Swing Dunk launch: - config: oslist: windows executable: Swing Dunk.exe type: default -'798940': +"798940": installDir: YSCCC launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ysccc.exe type: none -'798950': +"798950": installDir: Logout launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Logout.exe type: default -'798960': +"798960": installDir: Putin takes taxes launch: - config: oslist: windows executable: Putin takes taxes.exe type: config -'7990': +"7990": installDir: Monster Jam launch: - executable: MonsterJam.exe -'799060': +"799060": installDir: Biotix Phage Genesis launch: - config: oslist: windows executable: Biotix.exe type: none -'799070': +"799070": installDir: Zup! 8 launch: - config: oslist: windows executable: Zup! 8.exe type: default -'799080': +"799080": installDir: Hawaii Resort launch: - config: oslist: windows executable: Hawaii Resort.exe type: default -'799110': +"799110": installDir: Picrastination launch: - config: oslist: windows executable: Picrastination.exe type: none -'799120': +"799120": installDir: ZombieHunt launch: - config: oslist: windows executable: zombiehunt.exe type: default -'799180': +"799180": installDir: Unfinished Battle launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Unfinished Battle.exe type: default -'799210': +"799210": installDir: Legions At War launch: - config: oslist: windows executable: LAW.exe type: default -'799240': +"799240": installDir: My Free Farm 2 launch: - config: @@ -368674,31 +363249,31 @@ description: My Free Farm 2 executable: MyFreefarm2.exe type: default -'799260': +"799260": installDir: Godly Corp launch: - config: oslist: windows executable: Godly Corp.exe type: none - - arguments: '-screen-fullscreen 0' + - arguments: "-screen-fullscreen 0" config: oslist: linux executable: GodlyCorp.x86_64 type: none - config: oslist: macos - executable: Godly Corp.app\\Contents\\MacOS\\Godly Corp + executable: "Godly Corp.app\\\\Contents\\\\MacOS\\\\Godly Corp" type: none - config: - osarch: '32' + osarch: "32" oslist: windows executable: Godly Corp.exe type: none -'799270': +"799270": installDir: Looney Rally launch: - - arguments: '-screen-1' + - arguments: "-screen-1" config: oslist: windows executable: Looney Rally.exe @@ -368707,22 +363282,22 @@ oslist: macos executable: LooneyRally.app/Contents/MacOS/MAC type: default -'799300': +"799300": installDir: GoGuess launch: - - arguments: '-steam_rift' + - arguments: "-steam_rift" config: - osarch: '64' + osarch: "64" oslist: windows executable: GoGuess.exe type: othervr - - arguments: '-steam_vive' + - arguments: "-steam_vive" config: - osarch: '64' + osarch: "64" oslist: windows executable: GoGuess.exe type: vr -'799310': +"799310": installDir: Dhalang MG launch: - config: @@ -368733,16 +363308,16 @@ oslist: macos executable: Dhalang MG.app type: default -'799340': +"799340": installDir: battle_for_gaming launch: - config: - osarch: '64' + osarch: "64" oslist: linux executable: bfg.x86_64 type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: bfg.x86 type: none @@ -368754,32 +363329,32 @@ oslist: macos executable: bfg.app type: none -'799350': +"799350": installDir: Mirador launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Mirador.exe type: none -'799360': {} -'799420': +"799360": {} +"799420": installDir: Shadow of the Black Dragon launch: - config: oslist: windows executable: Game.exe type: default -'799460': +"799460": installDir: Broken Metal launch: - config: - osarch: '32' + osarch: "32" oslist: linux executable: linux_launch_32.sh type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: windows_launch_32.bat type: default @@ -368788,36 +363363,36 @@ executable: mac_launch.command type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: linux_launch_64.sh type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: windows_launch_64.bat type: default -'799470': {} -'799500': +"799470": {} +"799500": installDir: SurvivalZ launch: - executable: SurvivalZ.exe type: none -'799510': +"799510": installDir: Squidlit launch: - executable: Squidlit.exe type: none -'799530': +"799530": installDir: Psychopathics launch: - config: oslist: windows executable: Psychopathics.exe type: default -'799540': {} -'799560': - installDir: Blackbeard's Cove +"799540": {} +"799560": + installDir: "Blackbeard's Cove" launch: - config: oslist: windows @@ -368827,15 +363402,15 @@ oslist: macos executable: BlackbeardsCove.app type: default -'799570': +"799570": installDir: Angles launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: codeAngles.exe type: default -'799590': +"799590": installDir: Life Lessons launch: - config: @@ -368846,42 +363421,38 @@ oslist: macos executable: Life Lessons.app type: none -'799600': +"799600": installDir: Cosmoteer launch: - config: oslist: windows executable: Bin/Cosmoteer.exe type: default - - arguments: '--no-mods' + - arguments: "--no-mods" config: oslist: windows description: Temporarily Disable Mods - description_loc: - english: Temporarily Disable Mods executable: Bin/Cosmoteer.exe - - arguments: '--devmode' + - arguments: "--devmode" config: oslist: windows description: Developer Mode - description_loc: - english: Developer Mode executable: Bin/Cosmoteer.exe nameLocalized: - brazilian: 'Cosmoteer: Arquiteto e comandante de espaçonave' - french: 'Cosmoteer : architecte et commandant de vaisseaux spatiaux' - german: 'Cosmoteer: Raumschiffarchitekt & Kommandant' - latam: 'Cosmoteer: Arquitecto y comandante de una nave espacial' - portuguese: 'Cosmoteer: Arquiteto e comandante de espaçonave' - russian: 'Cosmoteer: Конструктор и командир звездолёта' - schinese: 'Cosmoteer: 星舰设计师' - spanish: 'Cosmoteer: Arquitecto y comandante de una nave espacial' -'799610': + brazilian: "Cosmoteer: Arquiteto e comandante de espaçonave" + french: "Cosmoteer : architecte et commandant de vaisseaux spatiaux" + german: "Cosmoteer: Raumschiffarchitekt & Kommandant" + latam: "Cosmoteer: Arquitecto y comandante de una nave espacial" + portuguese: "Cosmoteer: Arquiteto e comandante de espaçonave" + russian: "Cosmoteer: Конструктор и командир звездолёта" + schinese: "Cosmoteer: 星舰设计师" + spanish: "Cosmoteer: Arquitecto y comandante de una nave espacial" +"799610": installDir: Drill Arena launch: - executable: Drill Arena.exe type: none -'799620': +"799620": installDir: Grim wanderings launch: - config: @@ -368896,7 +363467,7 @@ oslist: macos executable: Contents/MacOS/Grim wanderings type: default -'799640': +"799640": installDir: Dungeon Munchies launch: - config: @@ -368910,16 +363481,16 @@ nameLocalized: schinese: 餐癮地城 tchinese: Dungeon Munchies 餐癮地城 -'799650': {} -'799660': +"799650": {} +"799660": installDir: The Blue Zula VR Concert Series launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TheBlueZulaConcert.exe type: vr -'799670': +"799670": installDir: Volantia launch: - config: @@ -368928,32 +363499,32 @@ type: default - config: oslist: macos - executable: Volantia.app\\Contents\\MacOS\\Volantia + executable: "Volantia.app\\\\Contents\\\\MacOS\\\\Volantia" type: default -'799730': +"799730": installDir: Guard of Wonderland VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Guard of Wonderland VR.exe type: vr -'799740': {} -'799770': +"799740": {} +"799770": installDir: Alea launch: - config: oslist: windows executable: Alea.exe type: none -'799800': +"799800": installDir: Animals Memory Cats launch: - config: oslist: windows executable: Animals Memory - Cats.exe type: config -'799810': +"799810": installDir: Returner 77 launch: - config: @@ -368964,7 +363535,7 @@ oslist: macos executable: Returner77.app type: none -'799840': +"799840": installDir: Life and Debt A Real Life Simulator launch: - config: @@ -368973,18 +363544,18 @@ type: default - config: oslist: macos - executable: LifeAndDebt.app\\Contents\\MacOS\\LifeAndDebt + executable: "LifeAndDebt.app\\\\Contents\\\\MacOS\\\\LifeAndDebt" type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: LifeAndDebt.x86_64 type: none -'799860': +"799860": installDir: BREATHE launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: BREATHE.exe type: default @@ -368992,7 +363563,7 @@ oslist: macos executable: BREATHE.app type: default -'799870': +"799870": installDir: Neko Dungeon launch: - config: @@ -369003,19 +363574,19 @@ oslist: macos executable: NekoDungeonMAC.app type: default -'799890': +"799890": installDir: REVENGER Age of Morons launch: - executable: REVENGER1.exe type: default -'799910': +"799910": installDir: Cheitha launch: - config: oslist: windows executable: cheitha.exe type: default -'799920': +"799920": installDir: IMPOSSIBLE FIGHTER FROG launch: - config: @@ -369026,7 +363597,7 @@ oslist: macos executable: IMPOSSIBLE FIGHTER FROG.app type: none -'799960': +"799960": installDir: Wizard101 launch: - config: @@ -369035,45 +363606,43 @@ type: default - config: oslist: macos - executable: Wizard101.app\\Contents\\MacOS\\Wizard101 + executable: "Wizard101.app\\\\Contents\\\\MacOS\\\\Wizard101" type: default -'80': +"80": installDir: Half-Life launch: - - arguments: '-steam -game czero' + - arguments: "-steam -game czero" config: oslist: windows executable: hl.exe - vacmodulefilename: resource\\sourceinit.dat - - arguments: '-steam -game czero' + - arguments: "-steam -game czero" config: oslist: macos executable: hl.sh - vacmodulefilename: resource\\sourceinit_macos.dat - - arguments: '-steam -game czero' + - arguments: "-steam -game czero" config: oslist: linux executable: hl.sh -'8000': +"8000": installDir: Tomb Raider Anniversary launch: - config: oslist: windows executable: tra.exe - - arguments: '-setup' + - arguments: "-setup" config: oslist: windows - description: 'Tomb Raider: Anniversary Setup' + description: "Tomb Raider: Anniversary Setup" executable: tra.exe - config: oslist: macos description: Launch executable: Tomb Raider Anniversary.app -'80000': +"80000": installDir: APOX launch: - executable: GameClient/APOX.exe -'800030': +"800030": installDir: Magikiras launch: - config: @@ -369088,7 +363657,7 @@ oslist: linux executable: Magikiras type: none -'800050': +"800050": installDir: The Great Tournament launch: - config: @@ -369103,8 +363672,8 @@ oslist: linux executable: TheGreatTournament type: none -'800110': {} -'800120': +"800110": {} +"800120": installDir: Lonely Yuri launch: - config: @@ -369112,36 +363681,36 @@ description: English Ver. executable: LonelyYuri.exe type: default -'800130': +"800130": installDir: SmartBoy launch: - config: oslist: windows executable: SmartBoy.exe type: default -'800160': +"800160": installDir: Poker3D launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Poker3D.exe type: openvroverlay -'800170': +"800170": installDir: Stealth launch: - config: oslist: windows executable: Stealth.exe type: default -'800180': +"800180": installDir: Momoiro Closet launch: - executable: moroclo.exe type: none nameLocalized: japanese: ももいろクローゼット -'800190': +"800190": installDir: The Adventures of Elena Temple launch: - config: @@ -369150,16 +363719,16 @@ type: default - config: oslist: macos - executable: ElenaTemple.app\\Contents\\MacOS\\ElenaTemple + executable: "ElenaTemple.app\\\\Contents\\\\MacOS\\\\ElenaTemple" type: default -'800200': +"800200": installDir: Witching Tower launch: - config: oslist: windows executable: WitchingTower.exe type: vr -'800230': +"800230": installDir: Viki Spotter Megapolis launch: - config: @@ -369168,18 +363737,18 @@ type: none - config: oslist: macos - executable: Viki Spotter - Megapolis.app\\Contents\\MacOS\\Viki Spotter - Megapolis + executable: "Viki Spotter - Megapolis.app\\\\Contents\\\\MacOS\\\\Viki Spotter - Megapolis" type: none - config: oslist: linux executable: Viki Spotter - Megapolis.x86 type: none -'800240': +"800240": installDir: Ghostly Matter launch: - executable: nw.exe type: none -'800270': +"800270": installDir: Terraforming Mars launch: - config: @@ -369190,22 +363759,22 @@ oslist: macos executable: TerraformingMars.app type: default -'800280': +"800280": installDir: FLYVALNY 20!8 launch: - config: oslist: windows executable: FLYVALNY.exe type: default -'800290': +"800290": installDir: ViSP launch: - config: oslist: windows executable: ViSP.exe type: vr -'800300': {} -'800310': +"800300": {} +"800310": installDir: Paladin Duty - Knights and Blades launch: - config: @@ -369217,10 +363786,10 @@ executable: Mac/PaladinDuty.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Linux/PaladinDuty.x86_64 -'800320': +"800320": installDir: Cubic Color launch: - config: @@ -369235,7 +363804,7 @@ oslist: linux executable: CubicColor_Linux/CubicColor.x86 type: default -'800330': +"800330": installDir: Color Circle launch: - config: @@ -369250,7 +363819,7 @@ oslist: linux executable: ColorCircle_Linux/ColorCircle.x86 type: default -'800350': +"800350": installDir: Casino Blackjack launch: - config: @@ -369269,42 +363838,42 @@ executable: BJHelp/movies type: none workingdir: BJHelp -'800380': +"800380": installDir: Escape Room VR Stories launch: - config: oslist: windows executable: Escape Room VR Stories.exe type: vr -'800390': +"800390": installDir: Puppet Fever launch: - config: oslist: windows executable: PuppetFever.exe type: openvroverlay -'800410': +"800410": installDir: Hikariblade RPG launch: - config: oslist: windows executable: Hikariblade.exe type: none -'800490': +"800490": installDir: ALASKA launch: - config: oslist: windows executable: ALASKA.exe type: default -'800510': +"800510": installDir: RoboHeist VR launch: - config: oslist: windows executable: RoboHeist VR.exe type: vr -'800520': +"800520": installDir: Just a Jumping Square launch: - config: @@ -369315,12 +363884,12 @@ oslist: windows executable: JaJS.exe type: none -'800530': +"800530": installDir: Ninja jump launch: - executable: ninja.exe type: default -'800550': +"800550": installDir: DarkDIRE launch: - config: @@ -369328,16 +363897,16 @@ executable: DarkDireClient.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux - executable: ./DarkDIREClient64.sh + executable: "./DarkDIREClient64.sh" type: default - - arguments: '-console' + - arguments: "-console" config: oslist: macos executable: DarkDIREClient.app type: default -'800560': +"800560": installDir: The Great Tournament 2 launch: - config: @@ -369352,7 +363921,7 @@ oslist: linux executable: TheGreatTournament2 type: none -'800580': +"800580": installDir: Highway Wars launch: - config: @@ -369367,7 +363936,7 @@ oslist: linux executable: HighwayWars type: none -'800600': +"800600": installDir: Wayhaven Chronicles Book One launch: - config: @@ -369382,7 +363951,7 @@ oslist: linux executable: WayhavenChroniclesBookOne type: none -'800620': +"800620": installDir: Fallen Hero Rebirth launch: - config: @@ -369397,14 +363966,14 @@ oslist: linux executable: FallenHeroRebirth type: none -'800640': +"800640": installDir: Xtreme Paddleball launch: - config: oslist: windows executable: XPB.exe type: vr -'800650': +"800650": installDir: The Last Operator launch: - config: @@ -369412,36 +363981,36 @@ description: Launch executable: TheLastOperator.exe type: vr -'800660': +"800660": installDir: Star Plantation launch: - config: oslist: windows executable: StarPlantationV0.1.36B.exe type: none -'800670': +"800670": installDir: NetStars - VR Goalie Trainer launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: NetStars.exe type: vr -'800680': +"800680": installDir: RTAG rise launch: - config: oslist: windows executable: RTAGrise.exe type: none -'800690': +"800690": installDir: Rusty Pup launch: - config: oslist: windows executable: RustyPupLauncher.exe type: default -'800700': +"800700": installDir: Project Hastur launch: - config: @@ -369449,48 +364018,48 @@ executable: Project Hastur.app/Contents/MacOS/Project Hastur type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: Project Hastur.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Project Hastur.x86_64 type: default -'800710': +"800710": installDir: Mad Zombie launch: - config: oslist: windows executable: MadZombie.exe type: default -'800720': +"800720": installDir: Space Fighters launch: - config: oslist: windows executable: Space Fighters.exe type: default -'800820': +"800820": installDir: 2236ad launch: - config: oslist: windows - executable: 2236 A.D. -Universal Edition-\\2236 A.D. -Universal Edition-.exe + executable: "2236 A.D. -Universal Edition-\\\\2236 A.D. -Universal Edition-.exe" type: default - config: oslist: macos executable: 2236 A.D. -Universal Edition-.app type: default -'800830': +"800830": installDir: Floogen launch: - config: oslist: windows executable: stopmotionOld.exe type: none -'800840': +"800840": installDir: Jesters Poker launch: - config: @@ -369499,9 +364068,9 @@ type: none - config: oslist: macos - executable: Jesters Poker.app\\Contents\\MacOS\\content + executable: "Jesters Poker.app\\\\Contents\\\\MacOS\\\\content" type: none -'800860': +"800860": installDir: Omnicube launch: - config: @@ -369512,14 +364081,14 @@ oslist: windows executable: Omnicube.exe type: default -'800910': +"800910": installDir: FriendZoned Archer launch: - config: oslist: windows executable: FriendZoned Archer.exe type: default -'800930': +"800930": installDir: Twin Blue Moons launch: - config: @@ -369535,34 +364104,34 @@ oslist: linux executable: twinbluemoons.sh type: default -'800980': +"800980": installDir: One Man Army VR launch: - config: oslist: windows executable: One Man Army VR.exe type: vr -'8010': +"8010": installDir: Ancient Wars Sparta launch: - executable: awe.exe -'801010': +"801010": installDir: Unsolved Stories launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: UnsolvedStories.exe type: default -'801020': +"801020": installDir: Golden Dungeons launch: - config: oslist: windows executable: Golden Dungeons.exe type: default -'801040': +"801040": installDir: Poly Universe launch: - config: @@ -369571,23 +364140,23 @@ type: default - config: oslist: macos - executable: Poly Universe.app\\Contents\\MacOS\\Poly Universe + executable: "Poly Universe.app\\\\Contents\\\\MacOS\\\\Poly Universe" type: default - config: oslist: linux executable: Poly Universe.x86_64 type: default -'801060': +"801060": installDir: ArcBall launch: - executable: ArcBall.exe type: default -'801080': {} -'801120': +"801080": {} +"801120": installDir: KirchhoffsRevenge launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Kirchhoff.exe type: none @@ -369595,72 +364164,72 @@ oslist: macos executable: KirchhoffsRevenge.app type: default -'801140': {} -'801150': +"801140": {} +"801150": installDir: IMM_Defense launch: - config: oslist: windows executable: IMMDefense.exe type: default -'801160': {} -'801180': +"801160": {} +"801180": installDir: Beer Pong VR launch: - config: oslist: windows executable: /BEER PONG VR v1.1.0/Beer Pong VR.exe type: vr -'801200': {} -'801210': +"801200": {} +"801210": installDir: Demontide launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Demontide.exe type: default -'801220': +"801220": installDir: Magnificent 5 launch: - - arguments: '-steam -mag5' + - arguments: "-steam -mag5" config: - osarch: '64' + osarch: "64" oslist: windows executable: Launcher.exe type: none -'801250': +"801250": installDir: GOHOROBO launch: - config: oslist: windows executable: GOHOROBO.exe type: none -'801260': +"801260": installDir: NOSTALGIC_TRAIN launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: NostalgicTrain.exe type: default nameLocalized: schinese: 追忆列车 NOSTALGIC TRAIN tchinese: 追憶列車 NOSTALGIC TRAIN -'801270': {} -'801280': +"801270": {} +"801280": installDir: Cowboy Escape launch: - config: oslist: windows executable: CowboyEscape.exe type: none -'801290': +"801290": installDir: Diabolic launch: - executable: Diabolic.exe type: none -'801300': +"801300": installDir: Digital Diamond Baseball launch: - config: @@ -369671,12 +364240,12 @@ oslist: macos executable: DigitalDiamondBaseballV7.app type: default -'801320': +"801320": installDir: The Last Hope Atomic Bomb launch: - executable: The Last Hope Atomic Bomb Crypto War.exe type: default -'801330': +"801330": installDir: Monkey Rush launch: - config: @@ -369688,39 +364257,39 @@ executable: MonkeyRush.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: MonkeyRush.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: MonkeyRush.x86_64 type: default -'801340': +"801340": installDir: Healer Simulator launch: - config: oslist: windows executable: HealerSimulator.exe type: default -'801360': {} -'801370': {} -'801380': +"801360": {} +"801370": {} +"801380": installDir: MOVIT launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: movit.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: movit_linux type: default -'801390': {} -'801410': +"801390": {} +"801410": installDir: Hidden Life launch: - config: @@ -369728,103 +364297,99 @@ description: Launch executable: Game.exe type: none -'801420': {} -'801450': {} -'801480': +"801420": {} +"801450": {} +"801480": nameLocalized: schinese: Agent A - 伪装游戏 tchinese: Agent A - 偽裝遊戲 -'801490': +"801490": installDir: HellCrunch launch: - config: oslist: windows executable: HellCrunch.exe type: default -'801500': +"801500": installDir: WannaMine launch: - config: oslist: windows executable: WannaMine.exe type: config -'801510': {} -'801550': +"801510": {} +"801550": installDir: VAIL launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: VAIL.exe type: openxr - - arguments: '-vulkan' + - arguments: "-vulkan" config: - osarch: '64' + osarch: "64" oslist: linux description: VAIL (Vulkan) - description_loc: - english: VAIL (Vulkan) executable: VAIL.exe type: openxr - - arguments: '-d3d11' + - arguments: "-d3d11" config: - osarch: '64' + osarch: "64" oslist: windows description: VAIL DX11 - description_loc: - english: VAIL DX11 executable: VAIL.exe type: openxr -'801600': +"801600": installDir: 夜雪冰娇 launch: - config: oslist: windows executable: 夜雪冰娇.exe type: none -'801610': +"801610": installDir: AmigoFishing launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Fishing.exe type: vr -'801630': - installDir: 'UNDER NIGHT In-Birth Exe Late[st]' +"801630": + installDir: "UNDER NIGHT In-Birth Exe Late[st]" launch: - config: oslist: windows executable: UNIst.exe type: default -'801660': +"801660": installDir: Swapper Tiles launch: - executable: Swapper Tiles.exe type: none -'801700': +"801700": installDir: AlpenCROSS launch: - config: oslist: windows executable: AlpenCROSS.exe type: default -'801750': +"801750": installDir: Hot Shot Burn launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: HotShotBurn.exe type: default -'801760': +"801760": installDir: City Monsters launch: - config: oslist: windows executable: CM.exe type: none -'801770': +"801770": installDir: Brutalism launch: - config: @@ -369835,14 +364400,14 @@ oslist: macos executable: brutalism_mac.app type: default -'801780': - installDir: 'Haters, kill them all!' +"801780": + installDir: "Haters, kill them all!" launch: - executable: Haters.exe type: default -'801790': {} -'801810': {} -'801840': +"801790": {} +"801810": {} +"801840": installDir: Psychoballs launch: - config: @@ -369857,146 +364422,146 @@ oslist: windows executable: PB_LevelEditor.exe type: editor -'801870': +"801870": installDir: Ramen launch: - config: oslist: windows executable: RAMEN.exe type: default -'801880': +"801880": installDir: Drift Tuner 2019 launch: - config: oslist: windows executable: DriftTuner2019.exe type: none -'801890': +"801890": installDir: Christmas Race 2 launch: - executable: Christmas Race 2.exe type: none -'801900': - installDir: The last Baron's stunt +"801900": + installDir: "The last Baron's stunt" launch: - executable: game.exe type: none -'801910': +"801910": installDir: Orbos launch: - config: oslist: windows executable: ProjectOrb.exe type: none -'801940': +"801940": installDir: Star Boy launch: - - arguments: '-windowed' + - arguments: "-windowed" config: oslist: windows executable: StarboyBetaVI.exe type: default -'80200': +"80200": installDir: Fate of the World launch: - config: oslist: windows description: Play - executable: bin\\fotw.exe + executable: "bin\\\\fotw.exe" - config: oslist: windows description: Configure - executable: bin\\fotw.exe --config + executable: "bin\\\\fotw.exe --config" - config: oslist: macos description: Play executable: FateOfTheWorld.app -'802020': +"802020": installDir: Acute Art VR Museum launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Acute Art VR.exe type: vr -'802040': +"802040": installDir: Captive launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: Captive.exe type: none - config: - osarch: '64' + osarch: "64" oslist: windows executable: Captive.exe type: none -'802050': +"802050": installDir: Ragdolljoe launch: - config: oslist: windows executable: RagdollJoe.exe type: default -'802060': +"802060": installDir: Spencer launch: - config: oslist: windows executable: Spencer.exe type: default -'802070': +"802070": installDir: Cluster Dust launch: - config: oslist: windows executable: ClusterDust1.exe type: default -'802080': +"802080": installDir: Pillage launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Pillage.exe type: none -'802090': +"802090": installDir: Dungeon Puzzle VR - Solve it or die launch: - config: oslist: windows executable: Dungeon Puzzle.exe type: othervr -'802120': +"802120": installDir: Boss Confrontation launch: - config: oslist: windows executable: Cellyon-BossConfrontation.exe type: default -'802130': +"802130": installDir: Break The Targets launch: - config: oslist: windows executable: BreakTheTargets.exe type: default -'802180': +"802180": installDir: DesertShootout launch: - config: oslist: windows executable: desertshootout.exe type: default -'802190': +"802190": installDir: Land of Glass launch: - config: oslist: windows executable: The Land of Glass.exe type: default -'802200': +"802200": installDir: Hellbound Survival Mode launch: - config: @@ -370009,7 +364574,7 @@ description: Classic Version executable: Classic/Hellbound.exe type: option2 -'802210': +"802210": installDir: BSL Winter Game Challenge launch: - config: @@ -370020,57 +364585,57 @@ oslist: macos executable: BSL Winter Game Challenge/BSL Winter Game Challenge.app type: default -'802270': +"802270": installDir: Tank Ball launch: - config: oslist: windows executable: TankBall.exe type: none -'802300': +"802300": installDir: Baseball Kings VR launch: - - arguments: '-windowed' + - arguments: "-windowed" config: oslist: windows executable: Baseball Kings VR.exe type: vr -'802310': +"802310": installDir: PingPong Kings VR launch: - - arguments: '-windowed' + - arguments: "-windowed" config: oslist: windows executable: PingPong Kings VR.exe type: vr -'802320': +"802320": installDir: Tennis Kings VR launch: - - arguments: '-windowed' + - arguments: "-windowed" config: oslist: windows executable: Tennis Kings VR.exe type: vr -'802330': +"802330": installDir: Badminton Kings VR launch: - - arguments: '-windowed' + - arguments: "-windowed" config: oslist: windows executable: Badminton Kings VR.exe type: vr -'802340': +"802340": installDir: Archery Kings VR launch: - - arguments: '-windowed' + - arguments: "-windowed" config: oslist: windows executable: Archery Kings VR.exe type: vr -'802360': +"802360": installDir: King of Mazes launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows executable: nw.exe @@ -370079,73 +364644,73 @@ oslist: macos executable: nwjs.app type: none -'802390': +"802390": installDir: Astonia Reborn launch: - config: oslist: windows executable: moac.exe type: default -'802400': +"802400": installDir: Fhtagn Tales of the Creeping Madness launch: - config: oslist: windows executable: Fhtagn.exe type: none -'802410': {} -'802450': +"802410": {} +"802450": installDir: NAIRI Tower of Shirin launch: - config: oslist: windows executable: NAIRI_TOS.exe type: none -'802480': +"802480": installDir: baby game plan 0-3 launch: - executable: main.exe type: default -'802490': +"802490": installDir: Fabulous 4 launch: - config: oslist: windows executable: Fabulous4.exe type: default -'802510': {} -'802530': +"802510": {} +"802530": installDir: Space Raiders RPG launch: - config: oslist: windows executable: SpaceRaiders.exe type: default -'802540': {} -'802550': +"802540": {} +"802550": installDir: various fighters launch: - config: oslist: windows executable: various fighters.exe type: default -'802560': {} -'802600': {} -'802650': +"802560": {} +"802600": {} +"802650": installDir: Russian AYE Race launch: - config: oslist: windows executable: Russian Aye Race.exe type: default -'802660': +"802660": installDir: Bitcoin Or Bomb launch: - config: oslist: windows executable: BOB.exe type: default -'802690': +"802690": installDir: Crazy Machines VR launch: - config: @@ -370153,23 +364718,23 @@ description: Launch executable: cmvr.exe type: openvroverlay -'802720': +"802720": installDir: GiveMeYourCoins launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: GiveMeYourCoins.exe type: default -'802730': +"802730": installDir: Mother Simulator launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Mother_Simulator.exe type: default -'802740': +"802740": installDir: Wild Glory launch: - config: @@ -370180,8 +364745,8 @@ oslist: linux executable: Wild Glory type: default -'802760': {} -'802780': +"802760": {} +"802780": installDir: Ball Platformer launch: - config: @@ -370190,148 +364755,140 @@ type: default - config: oslist: macos - executable: Ball Platformer.app\\Contents\\MacOS\\Ball Platformer + executable: "Ball Platformer.app\\\\Contents\\\\MacOS\\\\Ball Platformer" type: default -'802810': +"802810": installDir: KNACK launch: - config: oslist: windows executable: KNACK.exe type: default -'802850': +"802850": installDir: NaziShootout launch: - config: oslist: windows executable: nazishootout.exe type: default -'802870': +"802870": installDir: The Ditzy Demons Are in Love With Me launch: - - arguments: '-steam' + - arguments: "-steam" executable: DitzyDemons.exe type: default - config: - ownsdlc: '1354640' + ownsdlc: "1354640" description: The Ditzy Demons Are in Love With Me - Fandisc - executable: fandisc\\PnktAkmSE.exe + executable: "fandisc\\\\PnktAkmSE.exe" type: option1 -'802880': +"802880": installDir: Muv-Luv launch: - executable: muvluv16.exe type: default - config: - ownsdlc: '1501130' + ownsdlc: "1501130" description: Muv-Luv Alternative Manga Reader - description_loc: - english: Muv-Luv Alternative Manga Reader - executable: MangaReader\\Muv-Luv Manga Reader Super Bundle 1.exe + executable: "MangaReader\\\\Muv-Luv Manga Reader Super Bundle 1.exe" type: option2 - config: - ownsdlc: '1616080' + ownsdlc: "1616080" description: Muv-Luv Alternative Manga Reader 2 - description_loc: - english: Muv-Luv Alternative Manga Reader 2 - executable: MangaReader2\\Muv-Luv Manga Reader Super Bundle 2.exe + executable: "MangaReader2\\\\Muv-Luv Manga Reader Super Bundle 2.exe" type: option3 - config: - ownsdlc: '1811020' + ownsdlc: "1811020" description: Muv-Luv Alternative Manga Reader 3 - description_loc: - english: Muv-Luv Alternative Manga Reader 3 - executable: MangaReader3\\Muv-Luv Manga Reader Super Bundle 3.exe + executable: "MangaReader3\\\\Muv-Luv Manga Reader Super Bundle 3.exe" type: option3 -'802890': +"802890": installDir: Muv-Luv Alternative launch: - description: Muv-Luv Alternative executable: Muv-Luv_Alternative16.exe type: option1 - config: - ownsdlc: '1251940' + ownsdlc: "1251940" description: Muv-Luv Alternative CODEX executable: Muv-LuvCODEX.bat type: option2 - config: betakey: internaltest - ownsdlc: '1987170' + ownsdlc: "1987170" description: Muv-Luv Alternative Integral Works_JP - description_loc: - english: Muv-Luv Alternative Integral Works_JP executable: Muv-Luv_JapanCodex.bat type: option3 -'802900': +"802900": installDir: Hollow Steps launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: HollowSteps.exe type: none -'802920': +"802920": installDir: The Geology Game launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: geogame_en64.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: geogame_en64.run type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: geogame_en32.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: geogame_en32.run type: default -'802930': +"802930": installDir: The Rainsdowne Players launch: - config: oslist: windows - executable: The Rainsdowne Players\\The Rainsdowne Players.exe + executable: "The Rainsdowne Players\\\\The Rainsdowne Players.exe" type: default - config: oslist: macos executable: The Rainsdowne Players.app type: default -'802960': +"802960": installDir: Oracle Threads of Fate launch: - config: oslist: windows executable: Oracle.exe type: default -'802970': {} -'80300': +"802970": {} +"80300": installDir: Puzzle Bots launch: - executable: Puzzlebots.exe -'803010': +"803010": installDir: supermedium launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Supermedium.exe type: vr -'803030': +"803030": installDir: Seek Or Die launch: - config: oslist: windows executable: Seek Or Die.exe type: default -'803040': +"803040": installDir: Master of the Harem Guild launch: - config: @@ -370340,87 +364897,73 @@ type: default - config: oslist: linux - executable: ./HaremGuild.sh + executable: "./HaremGuild.sh" type: default - config: oslist: macos executable: HaremGuild.app type: default -'803050': +"803050": installDir: Per Aspera launch: - config: oslist: windows executable: Per Aspera.exe type: default -'803060': {} -'803080': +"803060": {} +"803080": installDir: Bad Day launch: - config: oslist: windows executable: Bad Day.exe type: default -'80310': +"80310": installDir: Gemini Rue launch: - config: - betakey: 'original, firstupdate' + betakey: "original, firstupdate" oslist: windows description: Gemini Rue - description_loc: - english: Gemini Rue executable: gemini_rue_pc.exe type: default - config: - betakey: 'original, firstupdate' + betakey: "original, firstupdate" oslist: macos description: Gemini Rue - description_loc: - english: Gemini Rue executable: GeminiRue.app - config: - betakey: 'original, firstupdate' - osarch: '32' + betakey: "original, firstupdate" + osarch: "32" oslist: linux description: Gemini Rue - description_loc: - english: Gemini Rue executable: GeminiRue.bin.x86 - config: - betakey: 'original, firstupdate' - osarch: '64' + betakey: "original, firstupdate" + osarch: "64" oslist: linux executable: GeminiRue.bin.x86_64 - config: - osarch: '64' + osarch: "64" oslist: linux - description: 'Launch [64bit]' - description_loc: - english: 'Launch [64bit]' - executable: ./Start.sh + description: "Launch [64bit]" + executable: "./Start.sh" type: default - config: - osarch: '32' + osarch: "32" oslist: linux - description: 'Launch [32bit]' - description_loc: - english: 'Launch [32bit]' - executable: ./Start.sh + description: "Launch [32bit]" + executable: "./Start.sh" type: default - - arguments: '--windowed' + - arguments: "--windowed" config: oslist: linux description: windowed - description_loc: - english: windowed - executable: ./Start.sh + executable: "./Start.sh" type: option1 - config: oslist: macos description: Launch - description_loc: - english: Launch executable: GeminiRue.app/Contents/MacOS/AGS type: default - config: @@ -370430,56 +364973,53 @@ - config: oslist: windows description: Settings - description_loc: - english: Settings executable: winsetup.exe type: config -'803110': +"803110": installDir: Dread station launch: - executable: Dread Station.exe type: none -'803130': +"803130": installDir: DIASTONE Demo launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: Diastone\\WindowsNoEditor\\DIASTONEMemories.exe + executable: "Diastone\\\\WindowsNoEditor\\\\DIASTONEMemories.exe" type: default -'803140': +"803140": installDir: Battle Carnival - launch: [] -'803150': +"803150": installDir: Nephise Ascension launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: NephiseAscension.exe type: default -'803160': {} -'803220': +"803160": {} +"803220": installDir: Winions Mana Champions launch: - config: oslist: windows executable: WOH.exe type: default -'803260': +"803260": installDir: Survive in Angaria launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows executable: Survive in Angaria.exe type: default -'803270': +"803270": installDir: One Bit Arena launch: - executable: OBA.exe type: none -'803280': +"803280": installDir: Briquid launch: - config: @@ -370490,43 +365030,35 @@ oslist: macos executable: Briquid.app type: none -'803290': +"803290": installDir: RANDOM rooms launch: - executable: RandomRooms.exe type: none -'80330': +"80330": installDir: Blackwell Legacy launch: - config: - osarch: '32' + osarch: "32" oslist: linux - description: 'Launch [32bit]' - description_loc: - english: 'Launch [32bit]' - executable: ./Start.sh + description: "Launch [32bit]" + executable: "./Start.sh" type: default - config: - osarch: '64' + osarch: "64" oslist: linux - description: 'Launch [64bit]' - description_loc: - english: 'Launch [64bit]' - executable: ./Start.sh + description: "Launch [64bit]" + executable: "./Start.sh" type: default - - arguments: '--windowed' + - arguments: "--windowed" config: oslist: linux description: Windowed - description_loc: - english: Windowed - executable: ./Start.sh + executable: "./Start.sh" type: option1 - config: oslist: macos description: Launch - description_loc: - english: Launch executable: Legacy.app/Contents/MacOS/AGS type: default - config: @@ -370537,73 +365069,73 @@ oslist: windows executable: winsetup.exe type: config -'803310': +"803310": installDir: Landlord Simulator launch: - config: oslist: windows executable: Landlord Simulator.exe type: default -'803320': +"803320": installDir: Haldor launch: - executable: Haldor.exe type: default -'803330': +"803330": installDir: Destroy All Humans! launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Shipping Build x64 executable: DH.exe type: default -'803350': +"803350": installDir: Fighter Royale launch: - - arguments: \"?steam=true&env=prod\" + - arguments: "\\\"?steam=true&env=prod\\\"" config: - osarch: '64' + osarch: "64" oslist: windows executable: FighterRoyale/FighterRoyale.exe type: default - - arguments: \"?steam=true&env=test\" + - arguments: "\\\"?steam=true&env=test\\\"" config: betakey: public_test - osarch: '64' + osarch: "64" oslist: windows description: Test environment executable: FighterRoyaleLauncher.exe type: default - - arguments: \"?steam=true&env=prod\" + - arguments: "\\\"?steam=true&env=prod\\\"" config: betakey: private_test - osarch: '64' + osarch: "64" oslist: windows description: Dev environment executable: FighterRoyale/FighterRoyale.exe type: default - - arguments: \"?steam=true&env=dev\" + - arguments: "\\\"?steam=true&env=dev\\\"" config: betakey: beta - osarch: '64' + osarch: "64" oslist: windows description: Test environment executable: FighterRoyale/FighterRoyale.exe type: default -'803360': +"803360": installDir: Hide The Body launch: - config: oslist: windows executable: Hide The Body.exe type: default -'803390': +"803390": installDir: Thunderbolt launch: - executable: Thunderbolt.exe type: none -'80340': +"80340": installDir: Blackwell Unbound launch: - config: @@ -370612,42 +365144,32 @@ - config: oslist: windows description: Configure - description_loc: - english: Configure executable: winsetup.exe type: none - config: - osarch: '32' + osarch: "32" oslist: linux - description: 'Launch [32bit]' - description_loc: - english: 'Launch [32bit]' - executable: ./Start.sh + description: "Launch [32bit]" + executable: "./Start.sh" type: default - config: - osarch: '64' + osarch: "64" oslist: linux - description: 'Launch [64 bit]' - description_loc: - english: 'Launch [64 bit]' - executable: ./Start.sh + description: "Launch [64 bit]" + executable: "./Start.sh" type: default - - arguments: '--windowed' + - arguments: "--windowed" config: oslist: linux description: windowed - description_loc: - english: windowed - executable: ./Start.sh + executable: "./Start.sh" type: option1 - config: oslist: macos description: Launch - description_loc: - english: Launch executable: Unbound.app/Contents/MacOS/AGS type: default -'80350': +"80350": installDir: Blackwell Convergence launch: - config: @@ -370656,43 +365178,33 @@ - config: oslist: windows description: Configure - description_loc: - english: Configure executable: winsetup.exe type: none - config: - osarch: '64' + osarch: "64" oslist: linux - description: 'Launch [64bit]' - description_loc: - english: 'Launch [64bit]' - executable: ./Start.sh + description: "Launch [64bit]" + executable: "./Start.sh" type: default - config: - osarch: '32' + osarch: "32" oslist: linux - description: 'Launch [32bit]' - description_loc: - english: 'Launch [32bit]' - executable: ./Start.sh + description: "Launch [32bit]" + executable: "./Start.sh" type: default - - arguments: '--windowed' + - arguments: "--windowed" config: oslist: linux description: windowed - description_loc: - english: windowed - executable: ./Start.sh + executable: "./Start.sh" type: option1 - config: oslist: macos description: Launch - description_loc: - english: Launch executable: Convergence.app/Contents/MacOS/AGS type: default -'803500': {} -'803520': +"803500": {} +"803520": installDir: Nothing To God launch: - config: @@ -370700,14 +365212,14 @@ description: Do this for us. executable: NtG.exe type: default -'803570': +"803570": installDir: SOLAR BATTALION launch: - config: oslist: windows executable: SOLAR BATTALION.exe type: default -'803590': +"803590": installDir: Little Gold Miner launch: - config: @@ -370718,9 +365230,9 @@ - config: oslist: linux description: Launcher - executable: ./LGM.x86 + executable: "./LGM.x86" type: default -'80360': +"80360": installDir: Blackwell Deception launch: - config: @@ -370730,42 +365242,32 @@ - config: oslist: windows description: Configure - description_loc: - english: Configure executable: winsetup.exe type: none - config: - osarch: '64' + osarch: "64" oslist: linux - description: 'Launch [64bit]' - description_loc: - english: 'Launch [64bit]' - executable: ./Start.sh + description: "Launch [64bit]" + executable: "./Start.sh" type: default - config: - osarch: '32' + osarch: "32" oslist: linux - description: 'Launch [32bit]' - description_loc: - english: 'Launch [32bit]' - executable: ./Start.sh + description: "Launch [32bit]" + executable: "./Start.sh" type: default - - arguments: '--windowed' + - arguments: "--windowed" config: oslist: linux description: windowed - description_loc: - english: windowed - executable: ./Start.sh + executable: "./Start.sh" type: option1 - config: oslist: macos description: Launch - description_loc: - english: Launch executable: Deception.app/Contents/MacOS/AGS type: default -'803600': +"803600": installDir: Disgaea 5 Complete launch: - config: @@ -370776,20 +365278,20 @@ japanese: 魔界戦記ディスガイア5 koreana: 마계전기 디스가이아5 tchinese: 魔界戰記DISGAEA5 -'803620': {} -'803680': +"803620": {} +"803680": installDir: Eat Your Words launch: - config: oslist: windows executable: Eat Your Words.exe type: default - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" config: oslist: windows executable: Eat Your Words.exe type: config -'803720': +"803720": installDir: War Theatre launch: - config: @@ -370800,24 +365302,24 @@ - config: oslist: macos description: Launch - executable: WarTheatre.app\\Contents\\MacOS\\WarTheatre + executable: "WarTheatre.app\\\\Contents\\\\MacOS\\\\WarTheatre" type: none -'803750': +"803750": installDir: Moon Castle launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: MoonCastle.exe type: none -'803760': +"803760": installDir: Free At Last launch: - config: oslist: windows executable: freeatlast.exe type: default -'803780': +"803780": installDir: ToonWar launch: - config: @@ -370831,24 +365333,24 @@ executable: ToonWar.app type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: ToonWar.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: ToonWar.x86 type: default -'803800': +"803800": installDir: Wide Cross launch: - config: oslist: windows executable: WideCross.exe type: default -'803820': {} -'803830': +"803820": {} +"803830": installDir: thesnowboardgame launch: - config: @@ -370856,17 +365358,17 @@ oslist: windows executable: tsg.exe type: none - - arguments: '-window-mode exclusive' + - arguments: "-window-mode exclusive" executable: tsg.exe type: none -'803840': +"803840": installDir: It could have been me launch: - config: oslist: windows executable: ItCouldHaveBeenMe.exe type: othervr -'803850': +"803850": installDir: Pixelpunk XL launch: - config: @@ -370874,61 +365376,61 @@ description: Launch executable: PLAY.exe type: none -'803870': +"803870": installDir: NickProject launch: - config: oslist: windows executable: NickProject.exe type: default -'803890': +"803890": installDir: Police Helicopter Simulator launch: - config: betakey: default;beta - osarch: '64' + osarch: "64" oslist: windows executable: PolizeihubschrauberSim.exe type: default -'803910': {} -'803920': +"803910": {} +"803920": installDir: Suna launch: - config: oslist: windows - executable: Suna\\Suna\\Binaries\\Win64\\Suna.exe + executable: "Suna\\\\Suna\\\\Binaries\\\\Win64\\\\Suna.exe" type: default -'803930': +"803930": installDir: Galactic Bulwark Strike launch: - config: oslist: windows - executable: ./GBS.exe + executable: "./GBS.exe" type: none -'803960': +"803960": installDir: Contrasted launch: - config: oslist: windows executable: contrasted.exe type: default -'803980': +"803980": installDir: Plane Mechanic Simulator launch: - executable: PMS_Build.exe type: default -'8040': +"8040": installDir: Championship Manager 2007 launch: - executable: CM2007.exe -'804000': +"804000": installDir: Expendable launch: - config: oslist: windows executable: Expendable.exe type: default -'804010': +"804010": installDir: SteamWorld Quest launch: - config: @@ -370940,55 +365442,55 @@ executable: SteamWorld Quest.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Quest type: default -'804070': {} -'804080': {} -'804120': +"804070": {} +"804080": {} +"804120": installDir: Oneness launch: - config: oslist: windows executable: Oneness.exe type: default -'804130': +"804130": installDir: EXIST launch: - executable: EXIST.exe type: default -'804210': +"804210": installDir: Star Advent launch: - config: oslist: windows executable: Game.exe type: default -'804230': {} -'804240': {} -'804270': +"804230": {} +"804240": {} +"804270": installDir: Chex Quest HD launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ChexHD.exe type: default - config: oslist: macos - executable: ChexHD.app\\Contents\\MacOS\\ChexHD + executable: "ChexHD.app\\\\Contents\\\\MacOS\\\\ChexHD" type: default -'804290': +"804290": installDir: Trainingaim launch: - config: oslist: windows executable: TrainingAim.exe type: none -'804300': {} -'804330': {} -'804350': +"804300": {} +"804330": {} +"804350": installDir: Starman launch: - config: @@ -370999,204 +365501,204 @@ oslist: macos executable: Starman.app type: default -'804400': - installDir: A Turd's Life +"804400": + installDir: "A Turd's Life" launch: - config: oslist: windows executable: ATurdsLifeBeta.exe type: default -'804430': +"804430": installDir: Drink Pro Tycoon launch: - config: oslist: windows executable: DrinkProTycoon.exe type: default -'804440': +"804440": installDir: Starman in space launch: - config: oslist: windows executable: Starman in space.exe type: config -'804460': +"804460": installDir: LAST WAR 2044 launch: - config: oslist: windows executable: Lastwar2044.exe type: none -'804490': +"804490": installDir: Creed Rise to Glory launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Creed.exe type: vr -'804530': +"804530": installDir: Cubism launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Cubism.exe type: vr -'804540': {} -'804550': {} -'804560': {} -'804600': +"804540": {} +"804550": {} +"804560": {} +"804600": installDir: Trivia Vault Football Trivia launch: - config: oslist: windows executable: Trivia Vault Football Trivia.exe type: default -'804610': +"804610": installDir: MONMUSU FIGHT! launch: - config: oslist: windows executable: monmusu_fight_allages.exe type: default -'804620': +"804620": installDir: BoxingFighterSP launch: - config: oslist: windows executable: nw.exe type: none -'804680': +"804680": installDir: Virtual Ninja VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: VirtualNinjaVR.exe type: vr -'804700': +"804700": installDir: The House in Fata Morgana - A Requiem for Innocence launch: - executable: requiem.exe type: none -'804730': +"804730": installDir: Third Front launch: - config: oslist: windows executable: ThirdFront.exe type: default -'804780': +"804780": installDir: VRでレムと異世界生活-膝枕&添寝編 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: rezero_rem.exe type: vr -'804810': +"804810": installDir: Robocraft Royale launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: RobocraftRoyale.exe type: default -'804830': +"804830": installDir: Shards of Eradine launch: - config: oslist: windows executable: ShardsofEradine.exe type: default -'804850': +"804850": installDir: Pax Nova launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Pax Nova.exe type: default -'804860': +"804860": installDir: Klotzen! Panzer Battles launch: - config: oslist: windows executable: KlotzenPanzerBattles.exe -'804870': +"804870": installDir: Armed to the Gears launch: - config: oslist: windows executable: Armed to the Gears.exe type: default -'804900': - installDir: Cat's Bar +"804900": + installDir: "Cat's Bar" launch: - config: oslist: windows - executable: Cat's Bar.exe + executable: "Cat's Bar.exe" type: default -'804910': +"804910": installDir: Mine Seeker launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: MineSeeker.exe type: default -'804940': {} -'804970': +"804940": {} +"804970": installDir: Shoottera launch: - config: oslist: windows executable: start.exe type: default -'804990': - installDir: Whispered Secrets Into the Wind Collector's Edition +"804990": + installDir: "Whispered Secrets Into the Wind Collector's Edition" launch: - config: oslist: windows executable: WS_IntoTheWind_CE.exe type: default -'805000': - installDir: Dark Tales™ Edgar Allan Poe's The Mystery of Marie Roget Collector's Edition +"805000": + installDir: "Dark Tales™ Edgar Allan Poe's The Mystery of Marie Roget Collector's Edition" launch: - config: oslist: windows executable: DarkTales_MarieRoget_CE.exe type: default -'805010': - installDir: Fierce Tales Feline Sight Collector's Edition +"805010": + installDir: "Fierce Tales Feline Sight Collector's Edition" launch: - config: oslist: windows executable: FierceTales_FelinesSight_CE.exe type: default -'805020': - installDir: Mayan Prophecies Blood Moon Collector's Edition +"805020": + installDir: "Mayan Prophecies Blood Moon Collector's Edition" launch: - config: oslist: windows executable: MayanProphecies_BloodMoon_CE.exe type: default -'805030': - installDir: Love Chronicles Salvation Collector's Edition +"805030": + installDir: "Love Chronicles Salvation Collector's Edition" launch: - config: oslist: windows executable: LoveChronicles_Salvation_CE.exe type: default -'805040': - installDir: European Mystery Flowers of Death Collector's Edition +"805040": + installDir: "European Mystery Flowers of Death Collector's Edition" launch: - config: oslist: windows executable: European Mystery_FlowersOfDeath_CE_RC.exe type: default -'805070': +"805070": installDir: SSSG2T launch: - config: @@ -371205,19 +365707,19 @@ type: default - config: oslist: macos - executable: SSSG2T.app\\Contents\\MacOS\\Mac_Runner + executable: "SSSG2T.app\\\\Contents\\\\MacOS\\\\Mac_Runner" type: default -'805090': +"805090": installDir: Blackjack In Space launch: - executable: SpaceBlackjack.exe type: none -'805110': +"805110": installDir: PAS launch: - executable: PAS.exe type: none -'805120': +"805120": installDir: The Fielder’s Choice launch: - config: @@ -371232,55 +365734,55 @@ oslist: linux executable: TheFieldersChoice type: none -'805150': +"805150": installDir: TSA Frisky launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TSAFrisky.exe type: vr -'805170': {} -'805220': {} -'805240': {} -'805260': +"805170": {} +"805220": {} +"805240": {} +"805260": installDir: PICNIC launch: - config: - osarch: '64' + osarch: "64" oslist: linux executable: PicnicSTART type: default -'805270': +"805270": installDir: PLAYCRAFT launch: - - executable: WindowsNoEditor\\Playcraft.exe + - executable: "WindowsNoEditor\\\\Playcraft.exe" type: none -'805280': +"805280": installDir: DeadRain - New Zombie Virus launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Dead Rain.exe type: default -'805320': - installDir: Conjuror's Eye +"805320": + installDir: "Conjuror's Eye" launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: Conjuror's Eye.exe + executable: "Conjuror's Eye.exe" type: vr -'805330': +"805330": installDir: AngeliaLost launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: AngeliaLost.exe type: vr -'805340': +"805340": installDir: Cubiques 2 launch: - config: @@ -371291,21 +365793,21 @@ oslist: windows executable: Cubiques2.exe type: default -'805350': +"805350": installDir: Sphera Turris launch: - config: oslist: windows executable: SpheraTurris.exe type: default -'805360': +"805360": installDir: Trivia Vault Baseball Trivia launch: - config: oslist: windows executable: Trivia Vault Baseball Trivia.exe type: default -'805370': +"805370": installDir: Are You Alone launch: - config: @@ -371320,15 +365822,15 @@ oslist: linux executable: AYA1.1.x86 type: none -'805380': {} -'805400': +"805380": {} +"805400": installDir: Mahjong Solitaire launch: - config: oslist: windows executable: Mahjong.exe type: none -'805420': +"805420": installDir: Stack & Crack launch: - config: @@ -371337,14 +365839,14 @@ type: default - config: oslist: macos - executable: Stack & Crack.app\\Contents\\MacOS\\Stack + executable: "Stack & Crack.app\\\\Contents\\\\MacOS\\\\Stack" type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Stack & Crack.x86_64 type: default -'805440': +"805440": installDir: Prismatix launch: - config: @@ -371353,29 +365855,29 @@ type: none - config: oslist: macos - executable: Prismatix.app\\Contents\\MacOS\\Prismatix + executable: "Prismatix.app\\\\Contents\\\\MacOS\\\\Prismatix" type: none -'805450': {} -'805470': +"805450": {} +"805470": installDir: CubicPanic launch: - config: oslist: windows executable: CubicPanic.exe type: default -'805480': +"805480": installDir: TANK_SOULS launch: - executable: TANK SOULS.exe type: none -'805500': +"805500": installDir: Dokkaebi Hentai Adventures launch: - config: oslist: windows executable: DHA.exe type: default -'805520': +"805520": installDir: The Dwarves of Glistenveld launch: - config: @@ -371390,44 +365892,44 @@ oslist: macos executable: DwarvesMac.sh type: default -'805530': {} -'805540': {} -'805550': +"805530": {} +"805540": {} +"805550": installDir: Assetto Corsa Competizione launch: - description: Assetto Corsa Competizione executable: acc.exe type: none - - arguments: '-vr hmd=SteamVR' + - arguments: "-vr hmd=SteamVR" description: Assetto Corsa Competizione Steam VR mode executable: acc.exe type: vr - - arguments: '-vr hmd=OculusHMD' + - arguments: "-vr hmd=OculusHMD" description: Assetto Corsa Competizione Oculus VR mode executable: acc.exe type: othervr nameLocalized: koreana: 아세토 코르사컴페티치오네 Assetto Corsa Competizione schinese: 神力科莎:竞速 Assetto Corsa Competizione - tchinese: '神力科莎出賽準備: 競爭 Assetto Corsa Competizione' -'805570': {} -'805610': + tchinese: "神力科莎出賽準備: 競爭 Assetto Corsa Competizione" +"805570": {} +"805610": installDir: Gulman 5 launch: - config: oslist: windows executable: G5.exe type: default -'805630': {} -'805660': +"805630": {} +"805660": installDir: Rad Rodgers launch: - config: oslist: windows executable: Rad.exe type: default -'805680': {} -'805690': +"805680": {} +"805690": installDir: Fear Half Factor launch: - config: @@ -371438,25 +365940,25 @@ oslist: linux executable: FearHalfFactor type: default -'805710': +"805710": installDir: Alien Worms Invasion launch: - config: oslist: windows executable: Alien Worms Invasion.exe type: default -'805720': - installDir: Satan's Castle +"805720": + installDir: "Satan's Castle" launch: - config: oslist: windows executable: Satanscastle.exe type: default -'805760': +"805760": installDir: Desire launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Desire.exe type: default @@ -371464,43 +365966,43 @@ oslist: macos executable: Desire.app type: default -'805770': +"805770": installDir: MyRacingCareer launch: - config: oslist: windows executable: 我的赛车生涯v0.2.4.1.exe type: default -'805780': {} -'805790': +"805780": {} +"805790": installDir: Torque Simulation Begins launch: - config: oslist: windows executable: torque.exe type: none -'805800': +"805800": installDir: FSoBM launch: - config: oslist: windows executable: Five Seconds of Bad Music.exe type: default -'805820': +"805820": installDir: Putin VS ISIS launch: - config: oslist: windows executable: Putin VS ISIS.exe type: default -'805840': +"805840": installDir: Just One Color launch: - config: oslist: windows executable: Just One Color.exe type: none -'805850': +"805850": installDir: Get Wrecked launch: - config: @@ -371509,51 +366011,51 @@ type: default - config: oslist: macos - executable: GW_MAC.app\\Contents\\MacOS\\GW_MAC + executable: "GW_MAC.app\\\\Contents\\\\MacOS\\\\GW_MAC" type: default - config: oslist: linux executable: GetWreckedLinux.x86 type: default -'805870': +"805870": installDir: Do you know de way launch: - config: oslist: windows executable: Do you know de way.exe type: config -'805880': +"805880": installDir: Trivia Vault Olympics Trivia launch: - config: oslist: windows executable: Trivia Vault Olympics Trivia.exe type: default -'805900': +"805900": installDir: Metal Division launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: MetalDivision.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: MetalDivision type: default - - arguments: '-screen-fullscreen 0' + - arguments: "-screen-fullscreen 0" config: - osarch: '64' + osarch: "64" oslist: linux description: Metal Division windowed executable: MetalDivision type: option1 -'805920': +"805920": installDir: Seek Etyliv launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Seek Etyliv.exe type: default @@ -371562,110 +366064,110 @@ executable: Seek Etyliv.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Seek Etyliv type: default -'805940': +"805940": installDir: RUSSIA BATTLEGROUNDS launch: - config: oslist: windows executable: RUSSIA BATTLEGROUNDS.exe type: default -'805950': +"805950": installDir: Isolated launch: - config: oslist: windows executable: Isolated.exe type: default -'805980': +"805980": installDir: My Safe House launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: pjtPeachLipOne.exe type: default -'805990': {} -'8060': +"805990": {} +"8060": installDir: Championship Manager 2008 launch: - executable: CM2008.exe -'806000': +"806000": installDir: OrcCraft launch: - config: oslist: windows executable: Gadget.exe type: server -'806020': +"806020": installDir: Milky Way Map launch: - config: oslist: windows executable: InfiniteHex.exe type: default -'806080': {} -'806100': +"806080": {} +"806100": installDir: PLATI NALOG Favorite Russian Game launch: - executable: nalog.exe type: default -'806140': +"806140": installDir: Achievement printer part 1 launch: - executable: basket.exe type: default -'806150': +"806150": installDir: Bloody and cruel story of toys launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: BACSOT64.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: BACSOT32.exe type: default -'806160': +"806160": installDir: Rabbirun launch: - executable: Rabbirun.exe type: none -'806170': {} -'806180': +"806170": {} +"806180": installDir: Beyond The Heavens launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TopDownShooter.exe type: default -'806220': +"806220": installDir: Absolute Blue launch: - config: oslist: windows executable: main.exe type: default -'806230': +"806230": installDir: Mech League Hunting launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Mech League Hunting.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: Mech League Hunting.exe type: vr -'806240': +"806240": installDir: RollingBall launch: - config: @@ -371673,62 +366175,62 @@ description: Launch executable: RollingBall.exe type: default -'806300': +"806300": installDir: Quotes Quest - Match 3 launch: - config: oslist: windows executable: QuotesQuest.exe type: none -'806330': +"806330": installDir: Retro Rocket Robot launch: - config: oslist: windows executable: rrr_win_x86.exe type: none -'806350': +"806350": installDir: Awkward Date Hero launch: - config: oslist: windows executable: AwkwardDateHero.exe type: none -'806360': +"806360": installDir: Uncanny launch: - config: oslist: windows - executable: Uncanny\\Uncanny.exe + executable: "Uncanny\\\\Uncanny.exe" type: default - config: oslist: macos - executable: Uncanny.app\\Contents\\MacOS\\Uncanny + executable: "Uncanny.app\\\\Contents\\\\MacOS\\\\Uncanny" type: default -'806470': +"806470": installDir: Crazy Archery launch: - executable: Archery Blast.exe type: none -'806480': +"806480": installDir: Bloodmoon The Last Stand launch: - config: oslist: windows executable: bloodmoon.exe type: default -'806490': +"806490": installDir: As We Know It launch: - config: oslist: windows - executable: As_We_Know_It-1.021-market\\As_We_Know_It.exe + executable: "As_We_Know_It-1.021-market\\\\As_We_Know_It.exe" type: default - config: oslist: macos - executable: As_We_Know_It-1.021-market\\As_We_Know_It.app + executable: "As_We_Know_It-1.021-market\\\\As_We_Know_It.app" type: default -'806510': +"806510": installDir: Her Lie I Tried To Believe launch: - config: @@ -371743,58 +366245,58 @@ oslist: macos executable: HerLieITriedToBelieve.app type: none -'806530': +"806530": installDir: Unending Dusk launch: - config: oslist: windows executable: UnendingDusk.exe type: none -'806540': +"806540": installDir: Away From Beauty launch: - executable: Away From Beauty.exe type: default -'806550': +"806550": installDir: Existence launch: - - arguments: '-windowed' + - arguments: "-windowed" config: oslist: windows executable: Existence.exe type: default -'806560': +"806560": installDir: VRでエミリアと異世界生活-膝枕&添寝編 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: rezero_emilia.exe type: vr -'806580': +"806580": installDir: 7th Deep launch: - config: oslist: windows executable: Game.exe type: none -'806600': +"806600": installDir: Escape! launch: - config: oslist: windows executable: Escape.exe type: none -'806610': +"806610": installDir: Trivia Vault Basketball Trivia launch: - config: oslist: windows executable: Trivia Vault Basketball Trivia.exe type: default -'806650': {} -'806660': {} -'806670': +"806650": {} +"806660": {} +"806670": installDir: Lanterns launch: - config: @@ -371802,15 +366304,15 @@ description: Launch executable: Lanterns.exe type: default -'806680': {} -'806720': +"806680": {} +"806720": installDir: GensoYonbaiKen2 launch: - config: oslist: windows executable: gsq2.exe type: default -'806740': +"806740": installDir: DMF_VS_KOBA launch: - config: @@ -371825,18 +366327,18 @@ oslist: macos executable: dmfVSkobayashi.app type: none -'806750': {} -'806760': {} -'806770': +"806750": {} +"806760": {} +"806770": installDir: NoReload Heroes launch: - config: oslist: windows executable: NoReloadHeroes.exe type: none -'806790': {} -'806800': {} -'806830': +"806790": {} +"806800": {} +"806830": installDir: Horse World launch: - config: @@ -371847,35 +366349,35 @@ oslist: macos executable: steam_mac.app type: default -'806840': +"806840": installDir: Guiding Hand VR launch: - config: oslist: windows executable: GuidingHandVR.exe type: vr -'806850': +"806850": installDir: aMAZE Gears launch: - config: oslist: windows executable: aMAZE Gears.exe type: default -'806860': +"806860": installDir: They Are Hundreds launch: - config: oslist: windows executable: FirstpersonZombie.exe type: default -'806880': +"806880": installDir: DJ Mole launch: - config: oslist: windows executable: win32/DJ Mole.exe type: default -'806900': +"806900": installDir: Them Bombs launch: - config: @@ -371886,7 +366388,7 @@ oslist: macos executable: Them Bombs.app type: default -'806910': +"806910": installDir: Posthuman Sanctuary launch: - config: @@ -371897,20 +366399,20 @@ oslist: macos executable: Posthuman-Sanctuary.app type: default -'806930': +"806930": installDir: Castle Secrets Between Day and Night launch: - executable: CastleSecretsBetweenDayAndNight.exe type: none -'806940': +"806940": installDir: SoLongGrandma launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SoLongGrandma.exe type: default -'806950': +"806950": installDir: Victory At Sea Pacific launch: - config: @@ -371925,8 +366427,8 @@ oslist: linux executable: VictoryAtSeaPacific type: none -'806960': - installDir: Dr. Cares 2 - Amy's Pet Clinic +"806960": + installDir: "Dr. Cares 2 - Amy's Pet Clinic" launch: - config: oslist: windows @@ -371934,16 +366436,16 @@ type: none - config: oslist: macos - executable: Dr. Cares 2.app\\Contents\\MacOS\\Dr. Cares 2 + executable: "Dr. Cares 2.app\\\\Contents\\\\MacOS\\\\Dr. Cares 2" type: none -'806970': +"806970": installDir: Loader launch: - config: oslist: windows executable: Loader.exe type: default -'806990': +"806990": installDir: EverHero launch: - config: @@ -371952,10 +366454,10 @@ type: default - config: oslist: macos - executable: EverHero.app\\Contents\\MacOS\\EverHero + executable: "EverHero.app\\\\Contents\\\\MacOS\\\\EverHero" type: default -'807000': {} -'807050': +"807000": {} +"807050": installDir: Scrash launch: - config: @@ -371970,7 +366472,7 @@ oslist: linux executable: nw type: default -'807060': +"807060": installDir: Void Monsters launch: - config: @@ -371979,13 +366481,13 @@ type: default - config: oslist: macos - executable: Game.app\\Contents\\MacOS\\nwjs + executable: "Game.app\\\\Contents\\\\MacOS\\\\nwjs" type: default - config: oslist: linux executable: Game type: default -'807070': +"807070": installDir: Atack of the Gigant Zombie vs Unity chan launch: - config: @@ -371995,24 +366497,22 @@ type: default - config: oslist: windows - ownsdlc: '1369680' + ownsdlc: "1369680" description: LITE version executable: AotGZvsU_LITE.exe type: default -'807120': +"807120": installDir: Iratus Lord of the Dead launch: - - arguments: '-logFile iratus.log' + - arguments: "-logFile iratus.log" config: oslist: windows executable: Iratus.exe type: default - config: oslist: windows - ownsdlc: '1018330' + ownsdlc: "1018330" description: Bonus Content - description_loc: - english: Bonus Content executable: open_bonus_win.bat type: none - config: @@ -372021,26 +366521,22 @@ type: default - config: oslist: macos - ownsdlc: '1018330' + ownsdlc: "1018330" description: Bonus Content - description_loc: - english: Bonus Content executable: open_bonus_osx.sh type: none - - arguments: '-logFile iratus.log' + - arguments: "-logFile iratus.log" config: oslist: linux executable: Iratus.exe type: default - config: oslist: linux - ownsdlc: '1018330' + ownsdlc: "1018330" description: Bonus Content - description_loc: - english: Bonus Content executable: open_bonus_lin.sh type: none -'807140': +"807140": installDir: Marble Run 2D launch: - config: @@ -372051,16 +366547,16 @@ oslist: macos executable: MR2D.APP type: default -'807230': +"807230": installDir: Silenced The House launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Silenced The House 64-bit.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: Silenced The House 32-bit.exe type: default @@ -372068,42 +366564,42 @@ oslist: macos executable: Silenced The House.app type: default -'807280': +"807280": installDir: Cactus Canyon launch: - executable: CactusCanyon.exe type: none -'807310': +"807310": installDir: Encompassed launch: - config: oslist: windows executable: Encompassed.exe type: default -'807340': +"807340": installDir: Frank the Miner launch: - config: oslist: windows executable: franktheminer.exe type: default -'807430': +"807430": installDir: VAD launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: VAD.exe type: othervr -'807570': +"807570": installDir: Volotic launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Volotic.exe type: vr -'807690': +"807690": installDir: Achilles launch: - config: @@ -372114,14 +366610,14 @@ oslist: windows executable: Achilles.exe type: default -'807730': +"807730": installDir: Draft Day Sports College Basketball 2018 launch: - config: oslist: windows executable: DDSCB2018.exe type: default -'807770': +"807770": installDir: Frequent Flyer A Long Distance Love Story launch: - config: @@ -372136,18 +366632,18 @@ oslist: linux executable: Frequent_Flyer.sh type: default -'807780': +"807780": installDir: Majong Classic launch: - config: oslist: macos - executable: Majong Classic.app\\Contents\\MacOS\\Majong Classic + executable: "Majong Classic.app\\\\Contents\\\\MacOS\\\\Majong Classic" type: default - config: oslist: windows executable: Majong Classic.exe type: default -'807790': +"807790": installDir: Parkour Simulator launch: - config: @@ -372156,10 +366652,10 @@ type: none - config: oslist: macos - executable: Parkour Simulator.app\\Contents\\MacOS\\Parkour Simulator + executable: "Parkour Simulator.app\\\\Contents\\\\MacOS\\\\Parkour Simulator" type: none -'807810': {} -'807820': +"807810": {} +"807820": installDir: Mystery Village Shards of the past launch: - config: @@ -372168,9 +366664,9 @@ type: default - config: oslist: macos - executable: Mystery Village - Shards of the Past.app\\Contents\\MacOS\\Mystery Village - Shards of the Past + executable: "Mystery Village - Shards of the Past.app\\\\Contents\\\\MacOS\\\\Mystery Village - Shards of the Past" type: default -'807830': +"807830": installDir: Pottery Crafts launch: - config: @@ -372179,9 +366675,9 @@ type: default - config: oslist: macos - executable: Pottery Crafts - Hand-Made Simulator.app\\Contents\\MacOS\\Pottery Crafts - Hand-Made Simulator + executable: "Pottery Crafts - Hand-Made Simulator.app\\\\Contents\\\\MacOS\\\\Pottery Crafts - Hand-Made Simulator" type: default -'807840': +"807840": installDir: Fuse Balls launch: - config: @@ -372192,7 +366688,7 @@ oslist: macos executable: FuseBalls.app type: default -'807850': +"807850": installDir: Build Bridges launch: - config: @@ -372203,25 +366699,25 @@ oslist: windows executable: Build Bridges.exe type: none -'807860': +"807860": installDir: Mafia Gambling launch: - config: oslist: macos - executable: Mafia Gambling.app\\Contents\\MacOS\\Mafia Gambling + executable: "Mafia Gambling.app\\\\Contents\\\\MacOS\\\\Mafia Gambling" type: default - config: oslist: windows executable: Mafia Gambling.exe type: default -'807870': +"807870": installDir: Survival Planet launch: - config: oslist: windows executable: Survival Planet D 3.2.exe type: default -'807880': +"807880": installDir: Mermaid Land launch: - config: @@ -372230,20 +366726,20 @@ type: none - config: oslist: macos - executable: Mermaid Land.app\\Contents\\MacOS\\Mermaid Land + executable: "Mermaid Land.app\\\\Contents\\\\MacOS\\\\Mermaid Land" type: none -'807890': +"807890": installDir: Math & Mental Fighter launch: - config: oslist: macos - executable: Geek Fighter.app\\Contents\\MacOS\\Geek Fighter + executable: "Geek Fighter.app\\\\Contents\\\\MacOS\\\\Geek Fighter" type: none - config: oslist: windows executable: Geek Fighter.exe type: none -'807910': +"807910": installDir: Road Legends launch: - config: @@ -372252,16 +366748,16 @@ type: none - config: oslist: macos - executable: Road Legends.app\\Contents\\MacOS\\Road Legends + executable: "Road Legends.app\\\\Contents\\\\MacOS\\\\Road Legends" type: none -'807920': +"807920": installDir: Onii-Chan launch: - config: oslist: windows - executable: \\Onii-Chan\\Onii-Chan.exe + executable: "\\\\Onii-Chan\\\\Onii-Chan.exe" type: none -'807930': +"807930": installDir: War Of Spells launch: - config: @@ -372272,7 +366768,7 @@ oslist: macos executable: War Of Spells.app/Contents/MacOS/War Of Spells type: none -'807940': +"807940": installDir: War of Criminals launch: - config: @@ -372281,9 +366777,9 @@ type: none - config: oslist: macos - executable: War of Criminals.app\\Contents\\MacOS\\War of Criminals + executable: "War of Criminals.app\\\\Contents\\\\MacOS\\\\War of Criminals" type: none -'807950': +"807950": installDir: Bump Tap launch: - config: @@ -372292,9 +366788,9 @@ type: none - config: oslist: macos - executable: Piano Cat.app\\Contents\\MacOS\\Piano Cat + executable: "Piano Cat.app\\\\Contents\\\\MacOS\\\\Piano Cat" type: none -'807960': +"807960": installDir: Poly World launch: - config: @@ -372303,38 +366799,38 @@ type: none - config: oslist: macos - executable: Poly World.app\\Contents\\MacOS\\Poly World + executable: "Poly World.app\\\\Contents\\\\MacOS\\\\Poly World" type: none -'807990': +"807990": installDir: DangerSpace launch: - config: oslist: windows executable: DangerSpace.exe type: default -'8080': +"8080": installDir: Kane and Lynch Dead Men launch: - executable: launcher.exe type: default - description: Install GFWL Redist manually - executable: \\XLiveRedist\\XLiveRedist01.02.0241.00.msi + executable: "\\\\XLiveRedist\\\\XLiveRedist01.02.0241.00.msi" type: config -'808010': +"808010": installDir: Critadel launch: - executable: Critadel.exe type: default nameLocalized: koreana: 크리타델 -'808020': +"808020": installDir: Nightmare Pop launch: - config: oslist: windows executable: NightmarePop.exe type: none -'808080': +"808080": installDir: Ultimate Racing 2D launch: - config: @@ -372343,34 +366839,34 @@ type: default - config: oslist: macos - executable: Ultimate_Racing_2D.app\\Contents\\MacOS\\Ultimate_Racing_2D + executable: "Ultimate_Racing_2D.app\\\\Contents\\\\MacOS\\\\Ultimate_Racing_2D" type: default - config: oslist: linux executable: run.sh type: default -'808090': - installDir: 'Bury me, my Love' +"808090": + installDir: "Bury me, my Love" launch: - config: oslist: windows executable: EMMA.Desktop.exe type: default -'808100': +"808100": installDir: Galimulator launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: galimulator-windows-64bit.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: galimulator-linux-64bit type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: galimulator-windows-32bit.exe type: default @@ -372378,22 +366874,22 @@ oslist: macos executable: Contents/MacOS/galimulator-macosx type: default -'808120': +"808120": installDir: Anark.io launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Anarkio.exe type: default -'808130': +"808130": installDir: Eternal Man Mountain launch: - config: oslist: windows executable: village.exe type: default -'808160': +"808160": installDir: UniverCity launch: - config: @@ -372404,7 +366900,7 @@ oslist: windows executable: univercity.exe type: default -'808190': +"808190": installDir: Super Sonic Racer launch: - config: @@ -372417,14 +366913,14 @@ description: Manual executable: SuperSonicRacerManual.pdf type: manual -'808210': - installDir: The Villa Allison's Diary +"808210": + installDir: "The Villa Allison's Diary" launch: - config: oslist: windows executable: TVAD_SteamVR_build_1.0.0.exe type: vr -'808220': +"808220": installDir: SCP087VR launch: - config: @@ -372439,7 +366935,7 @@ executable: Stairs/VRQSCP-087.exe type: option2 workingdir: Stairs -'808270': +"808270": installDir: Bomb Party launch: - config: @@ -372448,44 +366944,44 @@ type: default - config: oslist: macos - executable: Bomb Party.app\\Contents\\MacOS\\Bomb Party + executable: "Bomb Party.app\\\\Contents\\\\MacOS\\\\Bomb Party" type: default -'808290': +"808290": installDir: Runes of Magic launch: - - arguments: '--steam --region eu NoCheckVersion -steam_enabled 1' + - arguments: "--steam --region eu NoCheckVersion -steam_enabled 1" description: Runes of Magic EU executable: RoMLauncher.exe type: option1 - - arguments: '--steam --region eu --qa NoCheckVersion -steam_enabled 1' + - arguments: "--steam --region eu --qa NoCheckVersion -steam_enabled 1" config: betakey: prelive description: Runes of Magic EU (prelive) executable: RoMLauncher.exe type: option1 - - arguments: '--steam --region us --qa NoCheckVersion -steam_enabled 1' + - arguments: "--steam --region us --qa NoCheckVersion -steam_enabled 1" config: betakey: prelive description: Runes of Magic US (prelive) executable: RoMLauncher.exe type: option2 - - arguments: '--steam --region us NoCheckVersion -steam_enabled 1' + - arguments: "--steam --region us NoCheckVersion -steam_enabled 1" description: Runes of Magic US executable: RoMLauncher.exe type: option2 - - arguments: '--steam --region eu --qa NoCheckVersion -steam_enabled 1' + - arguments: "--steam --region eu --qa NoCheckVersion -steam_enabled 1" config: betakey: test description: Runes of Magic EU executable: RoMLauncher.exe type: option1 - - arguments: '--steam --region us --qa NoCheckVersion -steam_enabled 1' + - arguments: "--steam --region us --qa NoCheckVersion -steam_enabled 1" config: betakey: test description: Runes of Magic US executable: RoMLauncher.exe type: option2 -'808360': +"808360": installDir: Graveyard Birds launch: - config: @@ -372498,92 +366994,92 @@ description: Run Graveyard Birds on OSX executable: GraveyardBirds.app/Contents/MacOS/GraveyardBirds type: default -'808420': +"808420": installDir: Global Soccer Manager 2018 launch: - executable: manager18.exe type: default -'808450': +"808450": installDir: BeeFender launch: - config: oslist: windows executable: BEEFENDER.exe type: default -'808540': +"808540": installDir: Joust launch: - config: oslist: windows executable: Joust.exe type: default -'808550': +"808550": installDir: Rampage VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Rampage_VR.exe type: vr -'808570': {} -'808580': +"808570": {} +"808580": installDir: The Lone Chameleon launch: - config: oslist: windows executable: game.exe type: none -'808770': +"808770": installDir: Headspun launch: - config: oslist: windows executable: Headspun.exe type: default -'808790': {} -'808800': +"808790": {} +"808800": installDir: Star Singularity launch: - config: oslist: windows executable: StarSingularity.exe type: none -'808810': +"808810": installDir: Robo Boop launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Robo Boop.exe type: vr -'808870': +"808870": installDir: Multiple Views Objects launch: - config: oslist: windows executable: game.exe type: default -'808880': +"808880": installDir: MiniTracks launch: - config: oslist: windows executable: MiniTracks.exe type: default -'808910': +"808910": installDir: Star Wars Episode I Racer launch: - config: oslist: windows executable: SWEP1RCR.EXE type: default - - arguments: '-v' + - arguments: "-v" config: oslist: windows description: Display Settings executable: SWEP1RCR.EXE type: config -'808950': +"808950": installDir: Cross Stitching Puzzle launch: - config: @@ -372594,8 +367090,8 @@ oslist: windows executable: Cross-Stitch Puzzle.exe type: none -'808960': {} -'808990': +"808960": {} +"808990": installDir: RoboWorlD tactics launch: - config: @@ -372603,36 +367099,36 @@ executable: RoboWorlD.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: RoboWorlD.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: RoboWorlD.x86_64 type: default -'809000': +"809000": installDir: Art of Murder - FBI Confidential launch: - executable: game.exe type: none -'809010': {} -'809020': +"809010": {} +"809020": installDir: ZeroRanger launch: - config: oslist: windows executable: ZeroRanger.exe type: default -'809040': +"809040": installDir: Hummingz launch: - config: oslist: windows executable: Hummingz.exe type: none -'809050': +"809050": installDir: Holmes 2 launch: - config: @@ -372644,48 +367140,44 @@ executable: Sherlock Holmes 2.app type: none nameLocalized: - dutch: 'Zoek en vind: Sherlock Holmes - Val voor de jager' - french: 'Objet Caché : Sherlock Holmes - Chausse-trappe pour un chasseur' - german: 'Wimmelbildspiele : Sherlock Holmes - Eine Falle für den Jäger' - russian: 'Найди предметы: Шерлок Холмс - Капкан на охотника' - schinese: '侦探福尔摩斯: 诱捕猎人 - 隐藏物品游戏' - spanish: 'Buscar Objetos: Sherlock Holmes - Trampa para el cazador' -'809060': + dutch: "Zoek en vind: Sherlock Holmes - Val voor de jager" + french: "Objet Caché : Sherlock Holmes - Chausse-trappe pour un chasseur" + german: "Wimmelbildspiele : Sherlock Holmes - Eine Falle für den Jäger" + russian: "Найди предметы: Шерлок Холмс - Капкан на охотника" + schinese: "侦探福尔摩斯: 诱捕猎人 - 隐藏物品游戏" + spanish: "Buscar Objetos: Sherlock Holmes - Trampa para el cazador" +"809060": nameLocalized: schinese: 噩梦初醒 - REVEIL -'809070': +"809070": installDir: Dreamly launch: - config: oslist: windows executable: Dreamily.exe type: default -'809080': +"809080": installDir: Nanoui launch: - executable: NanouiGame.exe type: default -'809140': +"809140": installDir: Cliff Empire launch: - config: oslist: windows description: Cliff Empire - description_loc: - english: Cliff Empire executable: Cliff Empire.exe - description: Cliff Empire - Remastered - description_loc: - english: Cliff Empire - Remastered executable: Cliff Empire HQ.exe -'809150': +"809150": installDir: Tesseract VR launch: - config: oslist: windows - executable: \\Tesseract VR\\WindowsNoEditor\\Tesseract.exe + executable: "\\\\Tesseract VR\\\\WindowsNoEditor\\\\Tesseract.exe" type: vr -'809180': +"809180": installDir: District 112 Incident launch: - config: @@ -372700,14 +367192,14 @@ oslist: linux executable: District112Incident.x86 type: none -'809200': +"809200": installDir: TRIGGERED launch: - config: - osarch: '64' + osarch: "64" executable: Triggered.exe type: none -'809210': +"809210": installDir: LifeZ - Survival launch: - config: @@ -372718,12 +367210,12 @@ oslist: linux executable: LifeZ.x86 type: default -'809220': +"809220": installDir: AlienSurvival launch: - executable: aliensurvival.exe type: default -'809230': +"809230": installDir: Unity of Command 2 launch: - config: @@ -372736,7 +367228,7 @@ type: default nameLocalized: schinese: 统一指挥II -'809240': +"809240": installDir: Vandals launch: - config: @@ -372745,23 +367237,23 @@ type: none - config: oslist: macos - executable: Vandals.app\\Contents\\MacOS\\Vandals + executable: "Vandals.app\\\\Contents\\\\MacOS\\\\Vandals" type: none -'809250': +"809250": installDir: bekkouame launch: - config: oslist: windows executable: Game.exe type: default -'809280': +"809280": installDir: Grimmwood launch: - config: oslist: windows executable: Grimmwood.exe type: none -'809310': +"809310": installDir: Sipho launch: - config: @@ -372773,65 +367265,65 @@ executable: Sipho.app type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: Sipho type: none -'809320': +"809320": installDir: Silent Tweets launch: - executable: SilentTweets.exe type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: SilentTweets.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: SilentTweets.x86_64 type: none - config: oslist: macos - executable: SilentTweets.app\\Contents\\MacOS\\SilentTweets + executable: "SilentTweets.app\\\\Contents\\\\MacOS\\\\SilentTweets" type: none -'809330': +"809330": installDir: Destiny of Light launch: - config: oslist: windows executable: Game.exe type: default -'809340': +"809340": installDir: Exteme School Driving Simulator launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Exteme School Driving Simulator.exe type: default -'809360': +"809360": installDir: CosmicSnake launch: - executable: CosmicSnake3671.exe type: none -'809370': {} -'809380': +"809370": {} +"809380": installDir: MagicCat launch: - executable: Game.exe type: default -'809400': {} -'809410': +"809400": {} +"809410": installDir: The Take launch: - config: oslist: windows executable: TheTake.exe type: vr -'809430': {} -'809440': +"809430": {} +"809440": installDir: Protolife launch: - config: @@ -372846,36 +367338,36 @@ oslist: linux executable: Protolife type: default -'809450': - installDir: WHC The Game About Witch Hunter's Moving Castle You've Been So Long Waiting For +"809450": + installDir: "WHC The Game About Witch Hunter's Moving Castle You've Been So Long Waiting For" launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: WHC.exe type: default - config: oslist: macos - executable: WHC.app\\Contents\\MacOS\\WHC + executable: "WHC.app\\\\Contents\\\\MacOS\\\\WHC" type: none - config: - osarch: '32' + osarch: "32" oslist: linux - executable: WHC.linux\\WHC.x86 + executable: "WHC.linux\\\\WHC.x86" type: none - config: - osarch: '64' + osarch: "64" oslist: linux - executable: WHC.linux\\WHC.x86_64 + executable: "WHC.linux\\\\WHC.x86_64" type: none -'809460': +"809460": installDir: Earth Muncher launch: - config: oslist: windows executable: Earth Muncher.exe type: default -'809470': +"809470": installDir: Survivor island launch: - config: @@ -372886,34 +367378,34 @@ oslist: linux executable: Survivor Island.x86_64 type: default -'809480': +"809480": installDir: ZapBlastLoot launch: - config: oslist: windows - executable: 'Zap Blast Loot\\Zap, Blast, Loot.exe' + executable: "Zap Blast Loot\\\\Zap, Blast, Loot.exe" type: default - config: oslist: macos executable: Zap Blast Loot.app type: default -'809490': +"809490": installDir: Infernales Circles of Hell launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: InfernalesCOF.exe type: default -'809500': +"809500": installDir: BrazilianRoot launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: BrazilianRoot.exe type: default -'809530': +"809530": installDir: Hypergate launch: - config: @@ -372928,15 +367420,15 @@ executable: bin/hypergate type: default workingdir: bin -'809540': +"809540": installDir: Mechs V Kaijus launch: - config: oslist: windows executable: Mechs V Kaijus.exe type: config -'809550': {} -'809570': +"809550": {} +"809570": installDir: Ignis Avis Venatio launch: - config: @@ -372949,24 +367441,24 @@ type: default - config: oslist: linux - executable: Ignis_Avis_Venatio-1.0-linux\\IAV.sh + executable: "Ignis_Avis_Venatio-1.0-linux\\\\IAV.sh" type: default -'809580': +"809580": installDir: RAMS launch: - config: oslist: windows executable: rams.exe type: none -'809610': +"809610": installDir: Yacht Simulator VR launch: - executable: yacht_simulator_vr.exe type: vr - executable: yacht_simulator_vr.exe type: othervr -'809640': {} -'809680': +"809640": {} +"809680": installDir: Panzer Hearts launch: - config: @@ -372979,72 +367471,72 @@ type: default - config: oslist: macos - executable: PanzerHearts.app\\Contents\\MacOS\\PanzerHearts + executable: "PanzerHearts.app\\\\Contents\\\\MacOS\\\\PanzerHearts" type: default -'809700': +"809700": installDir: CubeRun launch: - config: oslist: windows executable: CubeRun.exe type: default -'809720': +"809720": installDir: RHQ launch: - executable: RHQ.exe type: none -'809730': +"809730": installDir: Fishery launch: - config: oslist: windows executable: Fishery.exe type: none -'809760': +"809760": installDir: JungleShoot launch: - executable: 1jungleshoot.exe type: default -'809770': +"809770": installDir: DeerHunterX launch: - executable: deerhunterx.exe type: default -'809780': +"809780": installDir: TheGunRunner launch: - executable: gunrunner.exe type: default -'809790': +"809790": installDir: Nightmare Simulator launch: - config: oslist: windows executable: Nightmare Simulator.exe type: default -'809800': +"809800": installDir: TheWraithTrials launch: - config: oslist: windows executable: TheWraithTrials.exe type: default -'809830': +"809830": installDir: MyGame launch: - config: oslist: windows executable: China VS Roman.exe type: default -'809840': +"809840": installDir: Anime show launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: animeshow.exe type: vr -'809850': +"809850": installDir: Sudoku Zenkai launch: - config: @@ -373053,33 +367545,33 @@ type: none - config: oslist: linux - executable: ./SudokuZenkai.x86_64 + executable: "./SudokuZenkai.x86_64" type: none - config: oslist: macos executable: SudokuZenkai.app type: none -'809870': +"809870": installDir: Ninjin Clash of Carrots launch: - config: oslist: windows executable: NinjinClashOfCarrots.exe type: default -'809880': +"809880": installDir: Degrees of Separation launch: - config: oslist: windows executable: dofs.exe type: default -'809890': +"809890": installDir: ShiningResonanceRefrain launch: - executable: game.exe type: none -'809900': - installDir: Calvin Tucker's Farm Animal Racing +"809900": + installDir: "Calvin Tucker's Farm Animal Racing" launch: - config: oslist: windows @@ -373091,26 +367583,26 @@ description: Manual executable: Manual.pdf type: manual -'809950': +"809950": installDir: Asemblance Oversight launch: - config: oslist: windows executable: Asemblance2.exe type: default -'809960': +"809960": installDir: RNR launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: \\ShooterGame\\Binaries\\Win64\\RadicalHeights.exe + executable: "\\\\ShooterGame\\\\Binaries\\\\Win64\\\\RadicalHeights.exe" type: default -'8100': +"8100": installDir: Conflict Denied Ops launch: - executable: ConflictDeniedOps.exe -'810000': +"810000": installDir: Manaya launch: - config: @@ -373125,7 +367617,7 @@ oslist: linux executable: Manaya.x86 type: none -'810040': +"810040": installDir: SwordsNMagicAndStuff_PreAlpha launch: - config: @@ -373135,16 +367627,12 @@ - config: oslist: macos description: Mac Build - description_loc: - english: Mac Build executable: SNMAS-Mac-Shipping.app type: default - - arguments: '-vulkan' + - arguments: "-vulkan" config: oslist: windows description: Windows 7 & 8 compatibility mode via Vulkan - description_loc: - english: Windows 7 & 8 compatibility mode via Vulkan executable: SNMAS.exe type: option1 - config: @@ -373152,19 +367640,19 @@ oslist: linux executable: SNMAS.sh type: default -'810050': +"810050": installDir: Starbucket launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Starbucket.exe type: default - config: oslist: macos - executable: Starbucket.app\\Contents\\MacOS\\Starbucket + executable: "Starbucket.app\\\\Contents\\\\MacOS\\\\Starbucket" type: default -'810060': +"810060": installDir: Beautiful Bricks launch: - config: @@ -373175,52 +367663,52 @@ oslist: macos executable: Beautiful Bricks.app type: default -'810100': {} -'810160': {} -'810190': +"810100": {} +"810160": {} +"810190": installDir: Zombie Town Online launch: - config: oslist: windows executable: ZombieTownOnline.exe type: default -'810200': +"810200": installDir: blue launch: - config: oslist: windows executable: game.exe type: none -'810220': +"810220": installDir: FAUCET VR launch: - config: oslist: windows executable: FaucetVR.exe type: othervr -'810230': +"810230": installDir: Traum launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows executable: Game.exe type: default -'810250': +"810250": installDir: RACING GAME launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: AdvancedVehicleKit.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: AdvancedVehicleKit.sh type: default -'810270': {} -'810330': +"810270": {} +"810330": installDir: Fast Food Rampage launch: - config: @@ -373229,12 +367717,12 @@ type: default - config: oslist: windows - executable: Fast Food Rampage\\Fast Food Rampage.exe + executable: "Fast Food Rampage\\\\Fast Food Rampage.exe" type: default -'810340': +"810340": installDir: World of Islands - Treasure Hunt launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows executable: WOITH.exe @@ -373247,19 +367735,19 @@ oslist: linux executable: Game.desktop type: default -'810360': +"810360": installDir: Masters of Puzzle launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Masters of Puzzle.exe type: default - config: oslist: macos - executable: Contents\\MacOS\\Masters of Puzzle + executable: "Contents\\\\MacOS\\\\Masters of Puzzle" type: default -'810420': +"810420": installDir: Find the gnome launch: - config: @@ -373274,52 +367762,52 @@ oslist: linux executable: Find the gnome type: none -'810450': - installDir: The Idiot's Tale +"810450": + installDir: "The Idiot's Tale" launch: - config: oslist: windows executable: idiotstale.exe type: none -'810460': +"810460": installDir: Riverhill Trials launch: - config: oslist: windows executable: RiverhillTrials.exe type: none -'810470': +"810470": installDir: Black Dream launch: - config: oslist: windows executable: RPG_RT.exe type: default -'810500': +"810500": installDir: PowerBeatsVR launch: - config: oslist: windows executable: PowerBeatsVR.exe type: vr -'810510': +"810510": installDir: Welcome Back Daddy launch: - config: oslist: windows executable: wbdaddy.exe type: default -'810520': {} -'810540': +"810520": {} +"810540": installDir: Monsters Attack launch: - config: oslist: windows executable: Monstetrs Attack.exe type: default -'810550': {} -'810560': {} -'810570': +"810550": {} +"810560": {} +"810570": installDir: FACE launch: - config: @@ -373334,14 +367822,14 @@ oslist: linux executable: FACE.x86 type: none -'810580': +"810580": installDir: Novas Las Aventurietas del Robercleiton o Renascimento do TURBO launch: - config: oslist: windows executable: RPG_RT.exe type: default -'810590': +"810590": installDir: Area 86 launch: - config: @@ -373353,35 +367841,35 @@ executable: Area 86.app/Contents/MacOS/Area 86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Area 86.x86_64 type: default -'810610': +"810610": installDir: Mission Of Hero launch: - config: oslist: windows executable: win32/MissionOfHero.exe type: default -'810630': +"810630": installDir: Paint It Black launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Paint It Black.exe type: default - config: oslist: macos - executable: Paint It Black.app\\Contents\\MacOS\\Paint It Black + executable: "Paint It Black.app\\\\Contents\\\\MacOS\\\\Paint It Black" type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: pib_linux.x86_64 type: default -'810640': +"810640": installDir: Radiis launch: - config: @@ -373393,85 +367881,85 @@ executable: Radiis.app/Contents/MacOS/Radiis type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Radiis.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Radiis.x86_64 type: default -'810650': +"810650": installDir: The Next Day After Friday launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: NextDayAfterFriday.exe type: vr -'810660': +"810660": installDir: The Office Quest launch: - config: oslist: windows executable: toq.exe type: default -'810670': +"810670": installDir: NALOGI launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" executable: Game.exe type: none -'810680': +"810680": installDir: Zombie Murder launch: - config: oslist: windows executable: win32/ZombieMurder.exe type: default -'810690': +"810690": installDir: Colour Box launch: - config: oslist: windows executable: Colour Box.exe type: default -'810700': +"810700": installDir: The Final Days Blood Dawn launch: - - executable: Blood_Dawn\\The Final Days_ Blood Dawn.exe + - executable: "Blood_Dawn\\\\The Final Days_ Blood Dawn.exe" type: none -'810720': +"810720": installDir: Zombie Murder Hell Arrives launch: - config: oslist: windows executable: ZombieMurderHellArrives.exe type: default -'810730': {} -'810740': +"810730": {} +"810740": installDir: Turtle Lu launch: - config: oslist: windows executable: TurtleLu.exe type: default -'810760': +"810760": installDir: StarmansVRExperience launch: - config: oslist: windows executable: starmanvr.exe type: vr -'810770': +"810770": installDir: Frog Demon launch: - config: oslist: windows executable: FrogDemon.exe type: default -'810780': +"810780": installDir: RAIN Project launch: - config: @@ -373480,21 +367968,21 @@ type: none - config: oslist: macos - executable: Rain.app\\Contents\\MacOS\\Rain + executable: "Rain.app\\\\Contents\\\\MacOS\\\\Rain" type: none -'810800': +"810800": installDir: Action Alien Tropical Mayhem launch: - config: oslist: windows description: Launch - executable: Binaries\\Win32\\UDK.exe + executable: "Binaries\\\\Win32\\\\UDK.exe" type: none -'811040': +"811040": installDir: Memoir launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Memoir.exe type: default @@ -373502,7 +367990,7 @@ oslist: macos executable: Memoir.app type: default -'811070': +"811070": installDir: Conviction launch: - config: @@ -373513,11 +368001,11 @@ oslist: macos executable: Game.app type: default -'811080': +"811080": installDir: TotalEsportsActionManager launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TEAM.exe type: default @@ -373525,18 +368013,18 @@ oslist: macos executable: TEAM.app/Contents/MacOS/TEAM type: default -'811090': {} -'811110': +"811090": {} +"811110": installDir: BlackSimulator launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows executable: BlackSimulator.exe type: default - executable: game.exe type: none -'811130': +"811130": installDir: Forever Space launch: - config: @@ -373547,51 +368035,51 @@ oslist: macos executable: ForeverSpace.app type: default -'811160': +"811160": installDir: Game of Stones launch: - config: oslist: windows executable: Game.exe type: default -'811180': +"811180": installDir: Farm Quest launch: - config: oslist: windows executable: FarmQuest.exe type: default -'811190': +"811190": installDir: ORION launch: - config: oslist: windows executable: ORION.exe type: default -'811240': - installDir: Don't Stand Out +"811240": + installDir: "Don't Stand Out" launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: DSO.exe type: default -'811250': +"811250": installDir: Content Creator Simulator launch: - config: oslist: windows executable: nw.exe type: default -'811270': +"811270": installDir: Impulsion launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Impulsion.exe type: default -'811290': +"811290": installDir: Project Pastorate launch: - config: @@ -373602,40 +368090,40 @@ oslist: macos executable: ProjectPastorate.app type: default -'811310': +"811310": installDir: Atomic Heart VR Adventures launch: - - arguments: '-vr' + - arguments: "-vr" config: - osarch: '64' + osarch: "64" oslist: windows executable: SovietLunaParkVR.exe type: vr -'811320': +"811320": installDir: Jupiter Hell launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Jupiter Hell (Vulkan renderer - recommended) executable: jh.exe type: option1 - config: - osarch: '64' + osarch: "64" oslist: linux description: Jupiter Hell (Vulkan renderer - recommended) executable: run_jh.sh type: option1 - - arguments: '--gl' + - arguments: "--gl" config: - osarch: '64' + osarch: "64" oslist: windows description: Jupiter Hell (OpenGL - if other option crashes) executable: jh.exe type: option2 - - arguments: '--gl' + - arguments: "--gl" config: - osarch: '64' + osarch: "64" oslist: linux description: Jupiter Hell (OpenGL - if other option crashes) executable: run_jh.sh @@ -373644,15 +368132,15 @@ oslist: macos executable: JupiterHell.app/Contents/MacOS/jhapp type: default -'811360': +"811360": installDir: Archibald launch: - config: oslist: windows executable: Archibald.exe type: default -'811440': - installDir: Gripper's Adventure +"811440": + installDir: "Gripper's Adventure" launch: - config: oslist: windows @@ -373662,35 +368150,35 @@ - config: oslist: macos description: Launch the game - executable: Gripper's Adventure.app + executable: "Gripper's Adventure.app" type: default -'811450': +"811450": installDir: Dongo Adventure launch: - config: oslist: windows executable: DongoAdventure.exe type: none -'811470': +"811470": installDir: Immunity launch: - executable: Immunity.exe type: default -'811480': +"811480": installDir: Geography Quiz launch: - config: oslist: windows executable: GeographyQuiz.exe type: none -'811500': +"811500": installDir: The Last Piece of Bacon Exe Files launch: - executable: game.exe type: none -'811520': {} -'811530': {} -'811540': +"811520": {} +"811530": {} +"811540": installDir: Amazon Rush launch: - config: @@ -373705,39 +368193,33 @@ oslist: macos executable: AmazonRush_macOS.app type: none -'811550': +"811550": installDir: MythBusters launch: - config: betakey: default - osarch: '64' + osarch: "64" oslist: windows executable: MythBustersTheGame.exe type: default - config: betakey: ks_demo_test - osarch: '64' + osarch: "64" oslist: windows description: KS_EDITION - description_loc: - english: KS_EDITION executable: MythBustersTheGame_KS_Edition.exe type: default - config: betakey: ks_demo_test_patch - osarch: '64' + osarch: "64" oslist: windows description: KS_EDITION_PATCH - description_loc: - english: KS_EDITION_PATCH executable: MythBustersTheGame_KS_Edition.exe type: default - config: betakey: prolog_test oslist: windows description: PROLOGUE - description_loc: - english: PROLOGUE executable: MythBustersTheGame_Prologue.exe type: default - config: @@ -373745,46 +368227,46 @@ oslist: windows executable: MythBustersTheGame.exe type: default -'811620': +"811620": installDir: Organosphere launch: - config: oslist: windows executable: Organosphere.exe type: default -'811630': - installDir: Don't Look Back +"811630": + installDir: "Don't Look Back" launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: Don't Look Back.exe + executable: "Don't Look Back.exe" type: default -'811640': +"811640": installDir: Divided Soul Theft launch: - config: oslist: windows executable: Divided Soul Theft.exe type: default -'811680': {} -'811690': - installDir: It's A Racing Game +"811680": {} +"811690": + installDir: "It's A Racing Game" launch: - config: oslist: windows executable: IARG.exe type: default -'811720': +"811720": installDir: Outbreak The Nightmare Chronicles launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Outbreak3DChronicles.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: OutbreakTheNightmareChroniclesLinux.x86_64 type: default @@ -373792,15 +368274,15 @@ oslist: macos executable: OBTNCMac.app type: default -'811750': +"811750": installDir: Breach of Contract Reloaded launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Breach of Contract Reloaded.exe type: default -'811790': +"811790": installDir: Project Plainsight launch: - config: @@ -373811,15 +368293,15 @@ oslist: linux executable: PlainSight.sh type: default -'811850': +"811850": installDir: Samba Shooter launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: game.exe type: none -'811860': +"811860": installDir: Cross And Crush launch: - config: @@ -373830,44 +368312,44 @@ oslist: macos executable: Cross and Crush.app/Contents/MacOS/Cross and Crush type: none -'811870': +"811870": installDir: Verlet Swing launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: 64 bit version executable: Verlet Swing.exe type: none - config: - osarch: '32' + osarch: "32" oslist: windows description: 32 bit version executable: Verlet Swing.exe type: none - config: oslist: macos - executable: Verlet Swing.app\\Contents\\MacOS\\Verlet Swing + executable: "Verlet Swing.app\\\\Contents\\\\MacOS\\\\Verlet Swing" type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: 64 bit version executable: Verlet Swing.x86_64 type: none - config: - osarch: '32' + osarch: "32" oslist: linux description: 32 bit version executable: Verlet Swing.x86 type: none -'811880': +"811880": installDir: Close Combat - The Bloody First launch: - description: Working Launch executable: autorun.exe type: default -'811890': +"811890": installDir: Perky Little Things launch: - config: @@ -373882,51 +368364,45 @@ oslist: linux executable: PerkyLittleThings.x86_64 type: none - - arguments: '-reset' + - arguments: "-reset" config: oslist: windows description: Perky Little Things and reset unlocked levels - description_loc: - english: Perky Little Things and reset unlocked levels executable: PerkyLittleThings.exe type: option1 - - arguments: '-reset' + - arguments: "-reset" config: oslist: macos description: Perky Little Things and reset unlocked levels - description_loc: - english: Perky Little Things and reset unlocked levels executable: Perky Little Things.app/Contents/MacOS/PerkyLittleThings type: option1 - - arguments: '-reset' + - arguments: "-reset" config: oslist: linux description: Perky Little Things and reset unlocked levels - description_loc: - english: Perky Little Things and reset unlocked levels executable: PerkyLittleThings.x86_64 type: option1 -'811900': +"811900": installDir: Tidy Your Room launch: - config: oslist: windows executable: TYR.exe type: default -'811910': +"811910": installDir: MRS SNAKE launch: - config: oslist: windows executable: mrssnake.exe type: default -'811950': +"811950": installDir: Bloody Faerie launch: - executable: BloodyFaerie.exe type: none -'811990': {} -'812020': +"811990": {} +"812020": installDir: Elea Episode 1 launch: - config: @@ -373934,16 +368410,16 @@ description: Early Access 0.6 Build executable: Elea.exe type: default -'812040': +"812040": installDir: Shortest Trip to Earth launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ST Earth.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: STEarth type: default @@ -373951,107 +368427,105 @@ oslist: macos executable: STEarth.app type: default -'812060': +"812060": installDir: VIARKANOID launch: - config: oslist: windows executable: VIARkanoid.exe type: vr -'812070': +"812070": installDir: Project Nightmares launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: pn.exe type: default -'812090': +"812090": installDir: RAW FOOTAGE launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: RawFootage.exe type: none -'812100': +"812100": installDir: Blake and Mortimer The Curse of the Thirty Denarii launch: - config: oslist: windows executable: Malediction.exe type: none -'812110': +"812110": installDir: Alice in Wonderland - Hidden Objects launch: - config: oslist: windows executable: Alice.exe type: none -'812120': +"812120": installDir: XIII - Lost Identity launch: - config: oslist: windows executable: XIII.exe type: none -'812140': +"812140": installDir: Assassins Creed Odyssey launch: - - arguments: '-uplay_steam_mode' + - arguments: "-uplay_steam_mode" config: - osarch: '64' + osarch: "64" oslist: windows - ownsdlc: '1254010' + ownsdlc: "1254010" executable: ACOdyssey.exe type: default - - arguments: '-upc_steam_free_package_id 18058 -uplay_steam_mode' + - arguments: "-upc_steam_free_package_id 18058 -uplay_steam_mode" config: - ownsdlc: '1254000' + ownsdlc: "1254000" description: Free Weekend - description_loc: - english: Free Weekend executable: ACOdyssey.exe -'812160': +"812160": installDir: Etherborn launch: - config: oslist: windows executable: Etherborn/Etherborn.exe type: default -'812170': +"812170": installDir: Parkland launch: - config: oslist: windows executable: Parkland.exe type: none -'812180': +"812180": installDir: Intro Maker launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Intro Maker.exe type: default -'812190': +"812190": installDir: Miasma Caves launch: - config: oslist: windows executable: Miasma Caves.exe type: default -'812350': {} -'812360': +"812350": {} +"812360": installDir: Monsters of Kanji launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows executable: MOK.exe type: default -'812380': +"812380": installDir: Flock of Dogs launch: - config: @@ -374065,15 +368539,15 @@ oslist: linux executable: LinuxAndSteamOS/FlockOfDogs/FlockOfDogs.x86_64 type: default -'812390': +"812390": installDir: Torimodosu launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Torimodosu.exe type: default -'812410': +"812410": installDir: Dimension of Monster Girls launch: - config: @@ -374086,56 +368560,56 @@ type: default - config: oslist: macos - executable: DoMG.app\\Contents\\MacOS\\DoMG + executable: "DoMG.app\\\\Contents\\\\MacOS\\\\DoMG" type: default -'812430': +"812430": installDir: Touch the devil VR(おさわり魔王VR) launch: - config: oslist: windows executable: おさわり魔王VR.exe type: vr -'812440': +"812440": installDir: Half-Life Absolute Zero launch: - - arguments: '-game AbsoluteZero' + - arguments: "-game AbsoluteZero" config: oslist: windows executable: hl.exe type: default -'812450': +"812450": installDir: The m0rg VS keys launch: - executable: TMVSK.exe type: none -'812460': +"812460": installDir: Air Raid Over Britain launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: AROB.exe type: vr -'812470': +"812470": installDir: Skyscraper Climb VR launch: - executable: skyscraper_climb_vr.exe type: vr -'812510': +"812510": installDir: StoneAge launch: - config: oslist: windows executable: StoneAge.exe type: none -'812550': - installDir: The King's Bird +"812550": + installDir: "The King's Bird" launch: - config: oslist: windows executable: TheKingsBird.exe type: default -'812560': +"812560": installDir: CROSS†CHANNEL Steam Edition launch: - config: @@ -374143,14 +368617,14 @@ description: Launch executable: AdvHD.exe type: default -'812580': +"812580": installDir: Chop It launch: - config: oslist: windows executable: chopit.exe type: vr -'812590': +"812590": installDir: Awakening of Celestial launch: - arguments: windowed @@ -374166,14 +368640,14 @@ oslist: linux executable: Awakening of Celestial.x86 type: default -'812610': +"812610": installDir: Escape Architect VR launch: - config: oslist: windows executable: Escape Architect VR.exe type: vr -'812650': +"812650": installDir: Data Defense launch: - config: @@ -374184,23 +368658,23 @@ oslist: macos executable: DataDefense.app type: default -'812740': +"812740": installDir: The Plus Point launch: - config: oslist: windows executable: The Plus Point.exe type: none -'812770': +"812770": installDir: Lunapark VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SimpleCoaster.exe type: vr -'812780': {} -'812800': +"812780": {} +"812800": installDir: Viki Spotter School launch: - config: @@ -374209,13 +368683,13 @@ type: none - config: oslist: macos - executable: Viki Spotter - School.app\\Contents\\MacOS\\Viki Spotter - School + executable: "Viki Spotter - School.app\\\\Contents\\\\MacOS\\\\Viki Spotter - School" type: none - config: oslist: linux executable: Viki Spotter - School.x86 type: none -'812810': +"812810": installDir: missed messages launch: - config: @@ -374224,24 +368698,24 @@ type: default - config: oslist: windows - executable: missedmessagesWindows\\missed messages..exe + executable: "missedmessagesWindows\\\\missed messages..exe" type: default - config: oslist: linux - executable: missedmessagesLinux\\missed messages.x86_64 + executable: "missedmessagesLinux\\\\missed messages.x86_64" type: default -'812840': +"812840": installDir: LuGame launch: - config: oslist: windows - executable: Windows\\LunchtimeGamesClub.exe + executable: "Windows\\\\LunchtimeGamesClub.exe" type: default - config: oslist: macos - executable: Mac\\LunchtimeGamesClub.app\\Contents\\MacOS\\LunchtimeGamesClub + executable: "Mac\\\\LunchtimeGamesClub.app\\\\Contents\\\\MacOS\\\\LunchtimeGamesClub" type: default -'812850': +"812850": installDir: Outline launch: - config: @@ -374256,7 +368730,7 @@ oslist: linux executable: Outline_Linux/Outline.x86 type: default -'812860': +"812860": installDir: Genius Calculator launch: - config: @@ -374271,7 +368745,7 @@ oslist: linux executable: GeniusCalculator_Linux/GeniusCalculator.x86 type: default -'812870': +"812870": installDir: Sentinels of Freedom launch: - config: @@ -374282,73 +368756,73 @@ oslist: macos executable: Sentinels.app type: default -'812890': +"812890": installDir: Bifrost Project launch: - config: oslist: windows executable: BifrostProject.exe type: none -'812900': +"812900": installDir: Bump Bump Bump launch: - config: oslist: windows executable: bbb.exe type: default -'812930': +"812930": installDir: Strategic Command Classic WWII launch: - config: oslist: windows executable: autorun.exe type: default -'812940': +"812940": installDir: Dear Leader launch: - config: oslist: windows executable: Dear Leader.exe type: default -'812980': +"812980": installDir: POSTWORLD launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: PostworldGame.exe type: none -'813020': +"813020": installDir: Broken Ties launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows executable: Game.exe type: default -'813030': +"813030": installDir: Reverie - A Heroes Tale launch: - config: oslist: windows executable: Reverie.exe type: default -'813110': +"813110": installDir: Paralines The Last paladin launch: - config: oslist: windows executable: game.exe type: default -'813150': +"813150": installDir: Elevator Ritual launch: - config: oslist: windows executable: Game.exe type: default -'813170': - installDir: Don't Pray To Satan +"813170": + installDir: "Don't Pray To Satan" launch: - config: oslist: windows @@ -374358,16 +368832,16 @@ oslist: macos executable: Dont Pray To Satan.app type: none -'813200': +"813200": installDir: DDS (D.I.Y Drone Simulator) Demo launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: SimulationProjects.exe type: default -'813240': +"813240": installDir: Grim Town Battle Tales launch: - config: @@ -374378,7 +368852,7 @@ oslist: macos executable: Grim Town Battle Tales.app/Contents/MacOS/Grim Town Battle Tales type: default -'813250': +"813250": installDir: Unicorn Dungeon launch: - config: @@ -374386,23 +368860,23 @@ executable: UnicornDungeon.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: UnicornDungeon.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: UnicornDungeon.x86_64 type: default -'813260': +"813260": installDir: Vector Born launch: - config: oslist: windows executable: Vector Born.exe type: default -'813280': +"813280": installDir: Sky Hawk launch: - config: @@ -374411,16 +368885,16 @@ type: default - config: oslist: macos - executable: Sky Hawk.app\\Contents\\MacOS\\Sky Hawk + executable: "Sky Hawk.app\\\\Contents\\\\MacOS\\\\Sky Hawk" type: default -'813290': +"813290": installDir: This Child Of Mine launch: - config: oslist: windows executable: ThisChildOfMine.exe type: default -'813300': +"813300": installDir: CODE_CRACKER launch: - config: @@ -374435,22 +368909,22 @@ oslist: macos executable: code_cracker.app type: none -'813310': +"813310": installDir: Outsider_Strategist launch: - config: oslist: windows - executable: Outsider_Strategist\\game.exe + executable: "Outsider_Strategist\\\\game.exe" type: none workingdir: Outsider_Strategist -'813360': +"813360": installDir: Space Duty launch: - config: oslist: windows executable: space_duty.exe type: none -'813370': +"813370": installDir: Garin Game Curse of Revival Ceremony launch: - config: @@ -374459,17 +368933,17 @@ type: default - config: oslist: macos - executable: Garin_File_01.app\\Contents\\MacOS\\Garin_File_01 + executable: "Garin_File_01.app\\\\Contents\\\\MacOS\\\\Garin_File_01" type: default -'813400': +"813400": installDir: Nilgamer launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows - executable: The_Forgets_Legend\\Nilgamer.exe + executable: "The_Forgets_Legend\\\\Nilgamer.exe" type: none -'813440': +"813440": installDir: DrillsVR launch: - config: @@ -374477,21 +368951,21 @@ description: DrillsVR executable: Drills.exe type: vr - - arguments: '-lang=TH-TH -rank=12' + - arguments: "-lang=TH-TH -rank=12" config: betakey: alpha oslist: windows description: For Thailand Unitry 2018 executable: Drills.exe type: vr - - arguments: '-lang=ZH-CHT -rank=12' + - arguments: "-lang=ZH-CHT -rank=12" config: betakey: alpha oslist: windows description: For EMF HK executable: Drills.exe type: vr -'813450': +"813450": installDir: Barbearian launch: - config: @@ -374500,20 +368974,20 @@ type: none nameLocalized: schinese: Barbearian 《熊蛮人》 -'813480': +"813480": installDir: General Horse and the Package of Doom launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: General Horse and the Package of Doom.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: General Horse and the Package of Doom type: default -'813530': +"813530": installDir: FPV Freerider Recharged launch: - config: @@ -374524,7 +368998,7 @@ oslist: macos executable: FPVFreerider_Recharged.app type: default -'813540': +"813540": installDir: Scheming Through Ep1 launch: - config: @@ -374535,46 +369009,46 @@ oslist: macos executable: Scheming Through Ep1.app type: none -'813580': {} -'813590': +"813580": {} +"813590": installDir: Solas and the White Winter launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Windows 32 Build executable: Solas and the White Winter - Win S.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows description: Windows 64 Build executable: Solas and the White Winter - Win S 64.exe type: default -'813630': +"813630": installDir: Supraland launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Supraland.exe type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: Supraland.sh type: none -'813650': +"813650": installDir: Runefall launch: - config: oslist: windows executable: Runefall.exe type: default -'813660': {} -'813670': {} -'813680': {} -'813700': +"813660": {} +"813670": {} +"813680": {} +"813700": installDir: Sakura Sadist launch: - config: @@ -374589,35 +369063,35 @@ oslist: linux executable: Sakura_Sadist.sh type: default -'813710': {} -'813730': +"813710": {} +"813730": installDir: Fleet Star V launch: - config: oslist: windows executable: FleetStarFive.exe type: default -'813780': +"813780": installDir: AoE2DE launch: - config: oslist: windows - description: 'Age of Empires II: Definitive Edition' + description: "Age of Empires II: Definitive Edition" executable: AoE2DE_s.exe type: default -'813820': +"813820": installDir: Realm Royale launch: - - arguments: '-seekfreeloadingpcconsole -pid=702 -steam -anon -homedir=\"paladinsroyale\" -eac_dir \"..\\\\EasyAntiCheat\\\\\"' + - arguments: "-seekfreeloadingpcconsole -pid=702 -steam -anon -homedir=\\\"paladinsroyale\\\" -eac_dir \\\"..\\\\\\\\EasyAntiCheat\\\\\\\\\\\"" config: - osarch: '64' + osarch: "64" oslist: windows description: Launch Win64 - executable: Binaries\\Win64\\RealmEAC.exe + executable: "Binaries\\\\Win64\\\\RealmEAC.exe" type: default workingdir: Binaries -'813860': {} -'813920': +"813860": {} +"813920": installDir: oldTail launch: - config: @@ -374625,27 +369099,27 @@ executable: Game/oldTail.exe type: default workingdir: /Game -'813930': +"813930": installDir: Revoke launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: PB/Binaries/Win64/PB-Win64-Shipping.exe type: vr -'813970': +"813970": installDir: Urban launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: URBAN 1.02.exe type: default -'8140': +"8140": installDir: Tomb Raider Underworld launch: - executable: tru.exe -'814000': +"814000": installDir: ONE PIECE ODYSSEY launch: - executable: odyssey.exe @@ -374654,23 +369128,23 @@ koreana: 원피스 오디세이 schinese: ONE PIECE 时光旅诗 tchinese: ONE PIECE 時光旅詩 -'814010': +"814010": installDir: Ball Driver launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: BallDriver.exe type: default -'814020': +"814020": installDir: Quickshot launch: - config: oslist: windows executable: Quickshot.exe type: vr -'814030': - installDir: Queen's Quest 4 +"814030": + installDir: "Queen's Quest 4" launch: - config: oslist: windows @@ -374678,13 +369152,13 @@ executable: QueensQuest4.exe type: none - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: QueensQuest4_i386 type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: QueensQuest4_amd64 @@ -374694,35 +369168,35 @@ description: Launch executable: mac_steam.app/Contents/MacOS/mac_steam type: none -'814080': {} -'814140': +"814080": {} +"814140": installDir: Nuclear 2050 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Proto.exe type: none -'814190': +"814190": installDir: Digital Runner launch: - config: oslist: windows executable: DigitalRunner.exe type: none -'814200': +"814200": installDir: Simple Story - Alex launch: - executable: Game.exe type: none -'814210': +"814210": installDir: The phantom of the city launch: - config: oslist: windows executable: The phantom of the city.exe type: default -'814230': +"814230": installDir: Slam Land launch: - config: @@ -374731,16 +369205,16 @@ type: default - config: oslist: macos - executable: slamland.app\\Contents\\MacOS\\slamland + executable: "slamland.app\\\\Contents\\\\MacOS\\\\slamland" type: default -'814300': +"814300": installDir: Pigeons Attack launch: - config: oslist: windows executable: PigeonsAttack.exe type: none -'814310': +"814310": installDir: D.A.T.A launch: - config: @@ -374749,12 +369223,12 @@ type: default - config: betakey: beta - osarch: '64' + osarch: "64" oslist: windows description: Beta executable: ABYSS421.exe type: default -'814320': +"814320": installDir: Arkady Survive launch: - config: @@ -374765,8 +369239,8 @@ oslist: linux executable: ArkadySurvive.x86_64 type: default -'814330': {} -'814340': +"814330": {} +"814340": installDir: The haunting of Baskerville launch: - config: @@ -374774,14 +369248,14 @@ description: Launch executable: Ghoststory.exe type: default -'814360': +"814360": installDir: Mythic Ocean launch: - config: oslist: windows executable: OceanGods.exe type: default -'814370': +"814370": installDir: Monster Sanctuary launch: - config: @@ -374789,39 +369263,39 @@ executable: Monster Sanctuary.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Monster Sanctuary.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Monster Sanctuary.x86 type: default - config: oslist: macos - executable: Monster Sanctuary.app\\Contents\\MacOS\\Monster Sanctuary + executable: "Monster Sanctuary.app\\\\Contents\\\\MacOS\\\\Monster Sanctuary" type: default nameLocalized: schinese: 怪物圣所 -'814380': +"814380": installDir: Sekiro launch: - executable: sekiro.exe type: none - config: - ownsdlc: '1039230' + ownsdlc: "1039230" description: DIGITAL ARTWORK & MINI SOUNDTRACK executable: Artwork_MiniSoundtrack/DigitalArtwork_MiniSoundtrack.exe type: option1 workingdir: Artwork_MiniSoundtrack -'814400': +"814400": installDir: Battlewake launch: - - arguments: '-demo' + - arguments: "-demo" config: betakey: partners - osarch: '64' + osarch: "64" oslist: windows description: For DEMO Mode executable: BroadSides.exe @@ -374830,31 +369304,31 @@ type: vr - config: betakey: dev-test - osarch: '64' + osarch: "64" oslist: windows executable: BroadSides.exe type: vr - config: betakey: ext-test - osarch: '64' + osarch: "64" oslist: windows executable: BroadSides.exe type: vr - config: betakey: mixedreality - osarch: '64' + osarch: "64" oslist: windows executable: BroadSides.exe type: vr - - arguments: '-demo' + - arguments: "-demo" config: betakey: demo1 - osarch: '64' + osarch: "64" oslist: windows description: For DEMO mode executable: BroadSides.exe type: vr -'814420': +"814420": installDir: TetraLogical launch: - config: @@ -374863,7 +369337,7 @@ description: Launch executable: TetraLogical.exe type: default -'814480': +"814480": installDir: Mini World Block Art launch: - config: @@ -374871,8 +369345,8 @@ oslist: windows executable: MicroMini.exe type: default -'814510': - installDir: '1248' +"814510": + installDir: "1248" launch: - config: oslist: windows @@ -374882,114 +369356,114 @@ oslist: macos executable: 1248.app type: default -'814530': +"814530": installDir: Death Crown launch: - config: oslist: windows executable: Death Crown.exe type: default -'814540': +"814540": installDir: Changed launch: - config: oslist: windows executable: Game.exe type: default -'814550': +"814550": installDir: Cherry Island launch: - executable: Cherry Island.exe type: none -'814560': +"814560": installDir: Eat my Shuriken and Die! launch: - config: oslist: windows executable: EatMyShuriken.exe type: default -'814570': +"814570": installDir: The Great Escape launch: - config: oslist: windows executable: dosbox.exe type: default -'814580': +"814580": installDir: Where Time Stood Still launch: - config: oslist: windows executable: dosbox.exe type: default -'814590': +"814590": installDir: Caveman Stories launch: - config: oslist: windows executable: Caveman Stories.exe type: none -'814600': +"814600": installDir: TunnelB1 launch: - config: oslist: windows description: Tunnel B1 - MS-DOS version - executable: dos\\dosbox.exe + executable: "dos\\\\dosbox.exe" type: option1 - workingdir: dos\\ + workingdir: "dos\\\\" - config: oslist: windows description: Tunnel B1 - PS1 version - executable: ps1\\pcsxr.exe + executable: "ps1\\\\pcsxr.exe" type: option2 - workingdir: ps1\\ + workingdir: "ps1\\\\" - config: oslist: linux executable: runTunnelB1.sh type: default -'814610': +"814610": installDir: Last Rites launch: - config: oslist: windows executable: dosbox.exe type: default -'814620': +"814620": installDir: Central Intelligence launch: - config: oslist: windows executable: dosbox.exe type: default -'814630': +"814630": installDir: ELF launch: - config: oslist: windows executable: dosbox.exe type: default -'814640': +"814640": installDir: Sleepwalker launch: - config: oslist: windows executable: dosbox.exe type: default -'814650': +"814650": installDir: Pushover launch: - config: oslist: windows executable: dosbox.exe type: default -'814660': +"814660": installDir: The Unintended Consequences of Curiosity launch: - executable: Unintended.exe type: none -'814670': {} -'814680': +"814670": {} +"814680": installDir: UnboundWorldsApart launch: - config: @@ -375004,43 +369478,43 @@ oslist: macos executable: Unbound.app type: default -'814700': +"814700": installDir: Larkin building by Frank Lloyd Wright launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: larkinbuilding.exe type: vr - config: - osarch: '64' + osarch: "64" oslist: windows executable: larkinbuilding.exe type: default -'814710': +"814710": installDir: The Rhys510 Flash Back launch: - config: oslist: windows executable: The Rhys510 Flash Back.exe type: default -'814740': +"814740": installDir: Armored Battle Crew WW1 launch: - config: oslist: windows executable: Armored Battle Crew WW1.exe type: none -'814770': +"814770": installDir: Duder launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: DUDER.exe type: default -'814800': {} -'814870': +"814800": {} +"814870": installDir: Monads launch: - config: @@ -375054,28 +369528,28 @@ nameLocalized: english: Monads koreana: 모나드의 겨울 -'814890': +"814890": installDir: BoxEngine launch: - config: oslist: windows executable: BoxEngine.exe type: default -'814900': +"814900": installDir: Sanguo Warriors VR launch: - - arguments: '-vr' + - arguments: "-vr" config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: super_vrsg.exe type: vr -'814920': +"814920": installDir: Sol705 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Sol705.exe type: default @@ -375083,16 +369557,16 @@ oslist: macos executable: Sol705.app/Contents/MacOS/Sol705 type: default -'814940': {} -'814960': +"814940": {} +"814960": installDir: Blackbox launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: BlackBox.exe type: vr -'814990': +"814990": installDir: Super X Chess launch: - config: @@ -375107,7 +369581,7 @@ oslist: linux executable: linuxbuild.x86_64 type: default -'815000': +"815000": installDir: Tardy launch: - config: @@ -375119,16 +369593,16 @@ executable: Tardy.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Tardy.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Tardy.x86_64 type: default -'815010': +"815010": installDir: Relaxicon launch: - config: @@ -375141,32 +369615,32 @@ type: default - config: oslist: linux - executable: ./Relaxicon + executable: "./Relaxicon" type: default -'815030': +"815030": installDir: SKULL FEAST launch: - config: oslist: windows executable: game.exe type: default -'815040': +"815040": installDir: Star Trek Adversaries launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: game.exe type: default - config: oslist: macos - executable: STA_Mac_Alpha_v03.6.app\\Contents\\MacOS\\STA_Mac_Alpha_v03.6 + executable: "STA_Mac_Alpha_v03.6.app\\\\Contents\\\\MacOS\\\\STA_Mac_Alpha_v03.6" type: default -'815070': +"815070": installDir: The_Adventurous_Four launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: advfour.exe type: default @@ -375178,36 +369652,34 @@ oslist: macos executable: AdventurousFour.app/Contents/MacOS/sdl-instead type: default - - arguments: '-fullscreen -standalone -game adventurous_four' + - arguments: "-fullscreen -standalone -game adventurous_four" config: - osarch: '64' + osarch: "64" oslist: windows executable: advfour.exe type: default -'815080': +"815080": installDir: Hot Mars 69 launch: - config: oslist: windows executable: Hot Mars 69.exe type: default -'815090': {} -'815100': +"815090": {} +"815100": installDir: Bubli launch: - config: oslist: windows executable: Bubli.exe type: none -'815150': +"815150": installDir: Knight Bewitched launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows description: Play the Enhanced Edition - description_loc: - english: Play the Enhanced Edition executable: Knight Bewitched Enhanced Edition/game.exe type: default - config: @@ -375217,27 +369689,25 @@ - config: oslist: windows description: Play the Legacy Edition - description_loc: - english: Play the Legacy Edition executable: game.exe type: none -'815170': +"815170": installDir: Zombie world launch: - config: oslist: windows executable: zw.exe type: vr -'815210': +"815210": installDir: TinyTasyTown launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Loat.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: Loat.exe type: default @@ -375245,7 +369715,7 @@ oslist: macos executable: Loat_Mac.sh type: default -'815240': +"815240": installDir: Forest Harvester Tractor 3D launch: - config: @@ -375255,9 +369725,9 @@ type: none - config: oslist: macos - executable: Forest Harvester Simulator.app\\Contents\\MacOS\\Forest Harvester Simulator + executable: "Forest Harvester Simulator.app\\\\Contents\\\\MacOS\\\\Forest Harvester Simulator" type: none -'815250': +"815250": installDir: Magic League launch: - config: @@ -375268,7 +369738,7 @@ oslist: windows executable: Magic League.exe type: none -'815260': +"815260": installDir: Lords of Kingdoms launch: - executable: game.exe @@ -375301,58 +369771,58 @@ turkish: Krallıkların Lordları ukrainian: Володарі Королівств vietnamese: Lãnh chúa của vương quốc -'815280': +"815280": installDir: Crooked Waters launch: - config: oslist: windows executable: CrookedWaters.exe type: vr -'815290': +"815290": installDir: Guards of the Gate launch: - config: oslist: windows executable: GuardsoftheGate.exe type: default -'815300': +"815300": installDir: 幻想英雄传 launch: - config: oslist: windows executable: 幻想英雄传 卡牌冒险.exe type: none -'815320': +"815320": installDir: CatifyVR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: CatifyVR.exe type: vr -'815360': +"815360": installDir: Stick War Castle Defence launch: - config: oslist: windows executable: StickWar.exe type: default -'815370': +"815370": installDir: Green Hell launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: GH.exe type: default -'815390': +"815390": installDir: Psi Cards launch: - config: oslist: windows executable: PsiCards.exe type: default -'815420': +"815420": installDir: Bomb Hero launch: - config: @@ -375360,15 +369830,15 @@ description: lauch executable: Bomb Hunter MT.exe type: none -'815440': +"815440": installDir: TimeTransitVR launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: TimeTransitVR\\Binaries\\Win64\\TimeTransitVR-Win64-Shipping.exe + executable: "TimeTransitVR\\\\Binaries\\\\Win64\\\\TimeTransitVR-Win64-Shipping.exe" type: vr -'815450': +"815450": installDir: CardinalCross launch: - config: @@ -375383,7 +369853,7 @@ oslist: linux executable: CardinalCross.sh type: default -'815480': +"815480": installDir: Ratergy launch: - config: @@ -375391,55 +369861,55 @@ description: Game executable: Ratergy_Project.exe type: default -'815490': {} -'815540': - installDir: Awakening The Skyward Castle Collector's Edition +"815490": {} +"815540": + installDir: "Awakening The Skyward Castle Collector's Edition" launch: - config: oslist: windows executable: Awakening_SkywardCastleCE.exe type: default -'815550': - installDir: Surface Alone in the Mist Collector's Edition +"815550": + installDir: "Surface Alone in the Mist Collector's Edition" launch: - config: oslist: windows executable: Surface_Alone_in_the_Mist_CE.exe type: default -'815560': - installDir: Dead Reckoning The Crescent Case Collector's Edition +"815560": + installDir: "Dead Reckoning The Crescent Case Collector's Edition" launch: - config: oslist: windows executable: DeadReckoning_TheCrescentCase_CE.exe type: default -'815570': - installDir: Witches' Legacy Hunter and the Hunted Collector's Edition +"815570": + installDir: "Witches' Legacy Hunter and the Hunted Collector's Edition" launch: - config: oslist: windows executable: WitchesLegacy_HunterAndTheHunted_CE.exe type: default -'815580': - installDir: Dark Parables Return of the Salt Princess Collector's Edition +"815580": + installDir: "Dark Parables Return of the Salt Princess Collector's Edition" launch: - config: oslist: windows executable: DarkParables_ReturnOfTheSaltPrincess_CE.exe type: default -'815620': +"815620": installDir: Cyber Escape launch: - executable: CyberEscape.exe type: default -'815630': +"815630": installDir: MajulaFrontier launch: - config: oslist: windows executable: MajulaFrontier.exe type: default -'815660': +"815660": installDir: Lucie launch: - config: @@ -375450,7 +369920,7 @@ oslist: macos executable: Lucie.app type: none -'815730': +"815730": installDir: Swingy Sword launch: - config: @@ -375461,7 +369931,7 @@ oslist: macos executable: Swingy Sword Mac.app type: none -'815780': +"815780": installDir: PIPE launch: - config: @@ -375473,22 +369943,22 @@ oslist: macos executable: PIPE.app/Contents/MacOS/PIPE type: default -'815800': +"815800": installDir: Infecto launch: - config: oslist: windows executable: Infecto.exe type: default -'815830': +"815830": installDir: Space Escape launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Space Escape.exe type: default -'815840': +"815840": installDir: Sword Mans launch: - config: @@ -375497,19 +369967,19 @@ type: default - config: oslist: macos - executable: SwordMans.app\\Contents\\MacOS\\SwordMans + executable: "SwordMans.app\\\\Contents\\\\MacOS\\\\SwordMans" type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Sword Mans.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Sword Mans.x86_64 type: default -'815860': +"815860": installDir: Reframed launch: - config: @@ -375517,43 +369987,43 @@ description: Launch executable: Binaries/Win32/UDK.exe type: none -'815920': {} -'815940': +"815920": {} +"815940": installDir: A.V.A launch: - - arguments: '-serveraddr\"AVA-LB-65279c13d91c7d86.elb.us-east-1.amazonaws.com:28004\" -redui' + - arguments: "-serveraddr\\\"AVA-LB-65279c13d91c7d86.elb.us-east-1.amazonaws.com:28004\\\" -redui" config: oslist: windows description: AVA 실행 executable: Binaries/AVA.exe type: default -'815950': +"815950": installDir: Chocolate makes you happy 4 launch: - config: oslist: windows executable: Chocolate makes you happy 4.exe type: default -'8160': +"8160": installDir: Shellshock 2 launch: - executable: Shellshock 2.exe -'816000': +"816000": installDir: Face au train launch: - config: oslist: windows - executable: windows_content\\Windows.exe + executable: "windows_content\\\\Windows.exe" type: vr -'816020': +"816020": installDir: JUMP FORCE launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: JUMP_FORCE.exe type: none -'816030': +"816030": installDir: Alice Must Find The Key To Escape launch: - config: @@ -375564,42 +370034,42 @@ oslist: macos executable: Alice Must Find The Key To Escape.app type: default -'816060': +"816060": installDir: Kingdom Clicker launch: - config: oslist: windows executable: Kingdom Clicker.exe type: default -'816070': {} -'816080': +"816070": {} +"816080": installDir: UltimateSelectHero launch: - config: oslist: windows executable: UltimateSelectHero.exe type: default -'816090': +"816090": installDir: Space Hulk Deathwing - Enhanced Edition launch: - executable: SpaceHulkGame.exe type: default - - arguments: '-SaveToUserDir -ExecCmds=\"SHDW.AllowTwitch 1\"' + - arguments: "-SaveToUserDir -ExecCmds=\\\"SHDW.AllowTwitch 1\\\"" config: - betakey: 'Local,shdwe_testqa,shdwe_twh_experimental' + betakey: "Local,shdwe_testqa,shdwe_twh_experimental" description: Test - executable: SpaceHulkGame\\Binaries\\Win64\\SpaceHulkGame-Win64-Test.exe + executable: "SpaceHulkGame\\\\Binaries\\\\Win64\\\\SpaceHulkGame-Win64-Test.exe" type: option1 - config: betakey: local description: Dev version (use for debug only) - executable: SpaceHulkGame\\Binaries\\Win64\\SpaceHulkGame.exe + executable: "SpaceHulkGame\\\\Binaries\\\\Win64\\\\SpaceHulkGame.exe" type: option1 - - arguments: '-EnableTwitch' - description: 'Space Hulk: Deathwing - Enhanced Edition - Twitch Mode' + - arguments: "-EnableTwitch" + description: "Space Hulk: Deathwing - Enhanced Edition - Twitch Mode" executable: SpaceHulkGame.exe type: option1 -'816120': +"816120": installDir: First Winter launch: - config: @@ -375610,7 +370080,7 @@ oslist: macos executable: FirstWinter.app type: none -'816150': +"816150": installDir: Hardway launch: - config: @@ -375621,34 +370091,34 @@ oslist: macos executable: HardwayParty.app type: default -'816160': +"816160": installDir: Score a goal 2 (Physical football) launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: Score a goal 2.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: Score a goal 2.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Score a goal 2.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Score a goal 2.x86_64 type: default - config: oslist: macos - executable: Score a goal 2.app\\Contents\\MacOS\\Score a goal 2 + executable: "Score a goal 2.app\\\\Contents\\\\MacOS\\\\Score a goal 2" type: default -'816170': +"816170": installDir: Spectrubes Infinity launch: - config: @@ -375666,26 +370136,26 @@ description: Launch Linux executable: spectrubes_infinity type: default -'816180': +"816180": installDir: Zhmyshenko Valery Albertovich launch: - config: oslist: windows executable: ZVA2.exe type: default -'816190': +"816190": installDir: Draw It! launch: - executable: Di!.exe type: default -'816200': +"816200": installDir: Planet Assault launch: - config: oslist: windows executable: Planet Assault.exe type: default -'816210': +"816210": installDir: The Balcony launch: - config: @@ -375693,16 +370163,16 @@ executable: The Balcony.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: The Balcony.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: The Balcony.x86_64 type: default -'816220': +"816220": installDir: Analistica Academy launch: - config: @@ -375717,20 +370187,20 @@ oslist: linux executable: Analistica Academy.sh type: default -'816240': +"816240": installDir: Build Wars launch: - config: oslist: windows executable: BuildWars.exe type: default -'816250': +"816250": installDir: JQ dogs & cats launch: - executable: JQ dogs & cats.exe type: none -'816260': {} -'816270': +"816260": {} +"816270": installDir: Sounds of Verity launch: - config: @@ -375745,7 +370215,7 @@ oslist: macos executable: SoundsOfVerity.app type: none -'816280': +"816280": installDir: Amora launch: - config: @@ -375756,14 +370226,14 @@ oslist: macos executable: Game.app type: none -'816330': +"816330": installDir: The Council launch: - config: - osarch: '64' + osarch: "64" executable: TheCouncil.exe type: default -'816340': +"816340": installDir: Kingdom Rush Origins launch: - config: @@ -375778,46 +370248,46 @@ oslist: linux executable: run.sh type: default -'816350': +"816350": installDir: The Flood launch: - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" config: oslist: windows executable: The Flood.exe type: default - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" config: - osarch: '32' + osarch: "32" oslist: linux executable: TheFlood_Linux.x86 type: default - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" config: - osarch: '64' + osarch: "64" oslist: linux executable: TheFlood_Linux.x86_64 type: default - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" config: oslist: macos executable: TheFlood_Mac.app type: default -'816380': +"816380": installDir: Crazzers launch: - config: oslist: windows executable: Crazzers.exe type: config -'816400': +"816400": installDir: Questlike launch: - config: oslist: windows executable: nw.exe type: none -'816410': +"816410": installDir: GoGoPoncho launch: - config: @@ -375828,14 +370298,14 @@ oslist: macos executable: gogoponcho.app type: none -'816430': +"816430": installDir: Radical Relocation launch: - config: oslist: windows executable: Radical Relocation.exe type: default -'816490': +"816490": installDir: Hidden Paws launch: - config: @@ -375844,9 +370314,9 @@ type: default - config: oslist: macos - executable: Contents\\MacOS\\Hidden Paws + executable: "Contents\\\\MacOS\\\\Hidden Paws" type: default -'816500': +"816500": installDir: Micro Pico Racers launch: - config: @@ -375855,17 +370325,17 @@ type: default - config: oslist: macos - executable: MicroPicoRacers.app\\Contents\\MacOS\\MicroPicoRacers + executable: "MicroPicoRacers.app\\\\Contents\\\\MacOS\\\\MicroPicoRacers" type: default -'816550': +"816550": installDir: Gallows launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Gallows.exe type: default -'816560': +"816560": installDir: AVARIAvs launch: - config: @@ -375876,22 +370346,22 @@ oslist: macos executable: AVARIAvs.app/Contents/MacOS/AVARIAvs type: default -'816570': +"816570": installDir: DESOLATE Clone Catastrophe launch: - config: oslist: windows executable: Game.exe type: none -'816580': +"816580": installDir: LOVE Obsession launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: LOVE Obsession VR.exe type: vr -'816590': +"816590": installDir: FinalFire launch: - arguments: TheRightWayToFF.10 @@ -375899,8 +370369,8 @@ oslist: windows executable: FinalFire.exe type: default -'816600': {} -'816610': +"816600": {} +"816610": installDir: HandyCopter launch: - config: @@ -375909,23 +370379,23 @@ type: none - config: oslist: macos - executable: HandyCopter.app\\Contents\\MacOS\\HandyCopter + executable: "HandyCopter.app\\\\Contents\\\\MacOS\\\\HandyCopter" type: none -'816630': +"816630": installDir: Monkey King launch: - config: oslist: windows executable: MonkeyKing Master of the Clouds.exe type: default -'816650': +"816650": installDir: Armor Contest launch: - config: oslist: windows executable: ArmorContest.exe type: default -'816660': +"816660": installDir: High Speed Trains launch: - config: @@ -375934,46 +370404,46 @@ type: none - config: oslist: macos - executable: High Speed Trains.app\\Contents\\MacOS\\High Speed Trains + executable: "High Speed Trains.app\\\\Contents\\\\MacOS\\\\High Speed Trains" type: none -'816670': +"816670": installDir: Slayer Of Traitors launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: softraitors.exe type: default -'816700': {} -'816710': +"816700": {} +"816710": installDir: Gray Cat launch: - executable: Gray_Cat_Steam.exe type: none -'816720': +"816720": installDir: Bugs Must Die launch: - config: oslist: windows executable: bmd.exe type: default -'816730': +"816730": installDir: HeadON launch: - config: oslist: windows executable: HeadOn!.exe type: vr -'816740': {} -'816750': {} -'816760': +"816740": {} +"816750": {} +"816760": installDir: Stickman_Fidget_Spinner_Rush launch: - config: oslist: windows executable: stickman-fsr.exe type: default -'816770': +"816770": installDir: The Four Colour Theorem launch: - config: @@ -375988,45 +370458,45 @@ oslist: macos executable: TheFourColourTheorem type: none -'816810': +"816810": installDir: Unlight launch: - config: oslist: windows executable: UnlightSC.exe type: default -'816820': {} -'816830': +"816820": {} +"816830": installDir: Varius launch: - config: oslist: windows executable: Varius.exe type: default -'816840': +"816840": installDir: NightoftheShrub1 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Night of the Shrub 1.exe type: default -'816850': +"816850": installDir: Stardust Origins launch: - config: oslist: windows executable: Stardust.exe type: default -'816870': - installDir: Kill 'Em All +"816870": + installDir: "Kill 'Em All" launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: Kill 'Em All.exe + executable: "Kill 'Em All.exe" type: default -'816890': +"816890": installDir: Perspecto launch: - config: @@ -376037,34 +370507,34 @@ oslist: macos executable: Perspecto.app type: default -'816920': +"816920": installDir: Coastiality launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: CoastialityVR.exe type: vr -'816930': +"816930": installDir: Production Sound launch: - config: oslist: windows executable: nw.exe type: default -'816960': {} -'816990': +"816960": {} +"816990": installDir: Dead Dust launch: - config: oslist: windows executable: Dead Dust steam.exe type: default -'8170': +"8170": installDir: Battlestations Pacific launch: - executable: battlestationspacific.exe -'817020': +"817020": installDir: Unholy launch: - config: @@ -376074,49 +370544,49 @@ nameLocalized: schinese: 诡门(Unholy) tchinese: 《詭門》Unholy -'817080': {} -'817110': +"817080": {} +"817110": installDir: Bitcoin VS Brain launch: - executable: MozgiBit.exe type: none -'817120': +"817120": installDir: HAMMY launch: - config: oslist: windows executable: Hammy.exe type: default -'817130': +"817130": installDir: WWE 2K19 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: WWE2K19_x64.exe type: default -'817150': +"817150": installDir: Factory pirates launch: - config: oslist: windows executable: Factory Pirates.exe type: default -'817160': +"817160": installDir: Scary defense launch: - config: oslist: windows executable: scary defense.exe type: default -'817190': +"817190": installDir: Next 3 launch: - config: oslist: windows executable: Next 3.exe type: default -'817200': +"817200": installDir: Nautical Life launch: - config: @@ -376124,83 +370594,83 @@ description: Nautical Life executable: Nautical Life.exe type: default -'817220': +"817220": installDir: TheForestale launch: - config: oslist: windows executable: TheForestale.exe type: default -'817230': +"817230": installDir: Acid Spy launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch Acid Spy executable: AcidSpy.exe type: default -'817250': +"817250": installDir: KillHim launch: - config: oslist: windows executable: KillHim.exe type: none -'817360': +"817360": installDir: Outer Rim Survivor launch: - config: oslist: windows executable: Outer Rim.exe type: default -'817370': +"817370": installDir: Marching Simulator launch: - executable: Marching Simulator.exe type: default -'817390': +"817390": installDir: Age of Giants launch: - config: oslist: windows executable: AgeOfGiants.exe type: none -'817410': +"817410": installDir: SushiParty_Ver1.00_Data launch: - config: oslist: windows executable: SushiParty_Ver1.00.exe type: default -'817440': +"817440": installDir: AngelShooter launch: - config: oslist: macos - executable: AngelShooter.app\\Contents\\MacOS\\AngelShooter + executable: "AngelShooter.app\\\\Contents\\\\MacOS\\\\AngelShooter" type: default - config: oslist: windows executable: AngelShooter.exe type: none -'817460': +"817460": installDir: Sea Dogs Caribbean Tales launch: - executable: ENGINE.exe type: none -'817470': +"817470": installDir: ToaZZle launch: - config: oslist: windows - executable: win64\\tzzl.exe + executable: "win64\\\\tzzl.exe" type: none - config: oslist: macos - executable: osx64\\toazzlepremium.app\\Contents\\MacOS\\nwjs + executable: "osx64\\\\toazzlepremium.app\\\\Contents\\\\MacOS\\\\nwjs" type: none -'817490': +"817490": installDir: Viki Spotter Around The World launch: - config: @@ -376209,13 +370679,13 @@ type: none - config: oslist: macos - executable: Viki Spotter - Around The World.app\\Contents\\MacOS\\Viki Spotter - Around The World + executable: "Viki Spotter - Around The World.app\\\\Contents\\\\MacOS\\\\Viki Spotter - Around The World" type: none - config: oslist: linux executable: Viki Spotter - Around The World.x86 type: none -'817510': +"817510": installDir: Golfing Over It with Alva Majo launch: - config: @@ -376223,12 +370693,12 @@ executable: Golfing Over It with Alva Majo.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Golfing Over It with Alva Majo.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Golfing Over It with Alva Majo.x86_64 type: default @@ -376236,14 +370706,14 @@ oslist: macos executable: Golfing Over It with Alva Majo.app type: default -'817530': +"817530": installDir: Mercury Race launch: - config: oslist: windows executable: Mercury Race.exe type: default -'817540': +"817540": installDir: SpellForceThree launch: - config: @@ -376256,103 +370726,98 @@ description: Launch SpellForce 3 with Debug stuff executable: SF3Client.exe type: option1 - - arguments: '-launch SF3Final' + - arguments: "-launch SF3Final" config: oslist: windows - executable: launcher\\SH\\Launcher.exe + executable: "launcher\\\\SH\\\\Launcher.exe" type: default - - arguments: '-launch LevelEditor' + - arguments: "-launch LevelEditor" config: oslist: windows - executable: launcher\\SH\\Launcher.exe + executable: "launcher\\\\SH\\\\Launcher.exe" type: editor - - arguments: '-launch SF3Debug' + - arguments: "-launch SF3Debug" config: oslist: windows description: with Debug Tools - description_loc: - english: with Debug Tools - executable: launcher\\SH\\Launcher.exe + executable: "launcher\\\\SH\\\\Launcher.exe" type: option1 - - arguments: '-launch ModdingDocs' + - arguments: "-launch ModdingDocs" config: oslist: windows description: Open Modding Documentation - description_loc: - english: Open Modding Documentation - executable: launcher\\SH\\Launcher.exe -'817580': {} -'817600': + executable: "launcher\\\\SH\\\\Launcher.exe" +"817580": {} +"817600": installDir: The Wranglers launch: - config: oslist: windows executable: The_Wranglers.exe type: none -'817620': +"817620": installDir: Gingerbread Story launch: - config: oslist: windows executable: Ginger.exe type: default -'817628': - unknown: true -'817630': +"817628": {} +"817630": installDir: Island Tribe 3 launch: - executable: island3.exe type: default -'817640': +"817640": installDir: 4 Aztec Skulls launch: - executable: 4 Aztec Skulls.exe type: default -'817650': {} -'817660': +"817650": {} +"817660": installDir: Soul Smith of the Kingdom launch: - description: Soul Smith of the Kingdom executable: SoulSmith.exe type: option1 - - arguments: \".\\SoulSmith.exe\" \"C932\" + - arguments: "\\\".\\\\SoulSmith.exe\\\" \\\"C932\\\"" description: the Chinese version game in the English system - executable: x86\\ntleas.exe + executable: "x86\\\\ntleas.exe" type: option2 -'817680': +"817680": installDir: Real Drift launch: - executable: Real Drift.exe type: none -'817690': {} -'817710': +"817690": {} +"817710": installDir: vridniX launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: \\win64\\vridniX64.exe + executable: "\\\\win64\\\\vridniX64.exe" type: default - config: - osarch: '32' + osarch: "32" oslist: windows - executable: \\win32\\vridniX32.exe + executable: "\\\\win32\\\\vridniX32.exe" type: none -'817720': +"817720": installDir: Cricket Captain 2018 launch: - config: oslist: windows executable: CricketCaptain.exe type: none -'817760': +"817760": installDir: The Castle Disaster launch: - config: oslist: windows executable: Castles.exe type: default -'817770': +"817770": installDir: 30 seconds to jail launch: - config: @@ -376363,9 +370828,9 @@ oslist: macos executable: 30STJ.app type: none -'817800': {} -'817810': {} -'817820': +"817800": {} +"817810": {} +"817820": installDir: The Quiet Please Collection launch: - config: @@ -376373,11 +370838,11 @@ executable: QuietPleaseCollection.exe type: none - config: - ownsdlc: '1192790' - description: 'Play \"Turkey, Please!\" DLC' - executable: 'Turkey, Please!.exe' + ownsdlc: "1192790" + description: "Play \\\"Turkey, Please!\\\" DLC" + executable: "Turkey, Please!.exe" type: none -'817840': +"817840": installDir: Max Gentlemen Sexy Business! launch: - config: @@ -376388,7 +370853,7 @@ oslist: macos executable: MaxGentlemenSexyBusiness.app type: default -'817860': +"817860": installDir: Perceptions of the Dead 2 launch: - config: @@ -376403,14 +370868,14 @@ oslist: macos executable: PotD2.app type: default -'817890': +"817890": installDir: Paleocalypse launch: - config: oslist: windows executable: Paleocalypse - Game.exe type: default -'817920': +"817920": installDir: NO LOVE launch: - config: @@ -376421,29 +370886,29 @@ oslist: macos executable: NO LOVE.app type: default -'817950': +"817950": installDir: Threegorges launch: - config: oslist: windows executable: ThreeGorges.exe type: vr -'817970': +"817970": installDir: HighNoomVR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: HighNoonVR.exe type: vr -'817980': +"817980": installDir: Murderwave - Digital Slaughter launch: - config: oslist: windows executable: Murderwave.exe type: default -'818030': +"818030": installDir: Alicia Quatermain and Mystery of the Flaming Gold launch: - config: @@ -376454,82 +370919,82 @@ oslist: macos executable: AliciaQuatermain3_CE.app type: none -'818050': +"818050": installDir: Wormster Dash launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: WormsterDash.exe type: default - config: oslist: macos - executable: wormsterdash_osx.app\\Contents\\MacOS\\wormsterdash_osx + executable: "wormsterdash_osx.app\\\\Contents\\\\MacOS\\\\wormsterdash_osx" type: default -'818060': +"818060": installDir: Super Saurio Fly launch: - config: oslist: windows executable: SuperSaurioFly.exe type: default -'818070': +"818070": installDir: Draoi launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: Draoi\\Draoi.exe + executable: "Draoi\\\\Draoi.exe" type: vr -'818080': {} -'818090': {} -'818140': +"818080": {} +"818090": {} +"818140": installDir: Stay Safe launch: - config: oslist: windows executable: StaySafe.exe type: default -'818150': +"818150": installDir: Retro Hacker launch: - config: oslist: windows executable: retrohacker.exe type: default -'818210': +"818210": installDir: Indie Pogo launch: - config: oslist: windows executable: IndiePogo.exe type: default -'818220': +"818220": installDir: Fatal Stormer launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: FatalStormer.exe type: default -'818240': +"818240": installDir: Fix Race launch: - config: oslist: windows executable: TouchRace.exe type: default -'818290': {} -'818320': +"818290": {} +"818320": installDir: LEGO The Incredibles launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: LEGO The Incredibles.exe type: none - config: - osarch: '64' + osarch: "64" oslist: windows executable: LEGO The Incredibles_DX11.exe type: none @@ -376537,7 +371002,7 @@ oslist: macos executable: LEGO The Incredibles.app type: default -'818350': +"818350": installDir: tenkyu launch: - config: @@ -376548,7 +371013,7 @@ oslist: windows executable: tenkyu.exe type: none -'818360': +"818360": installDir: Wildbus launch: - config: @@ -376557,16 +371022,16 @@ type: default - config: oslist: macos - executable: Wildbus.app\\Contents\\MacOS\\Wildbus + executable: "Wildbus.app\\\\Contents\\\\MacOS\\\\Wildbus" type: default -'818370': +"818370": installDir: Spadyssey launch: - config: oslist: windows executable: Spadyssey.exe type: none -'818380': +"818380": installDir: Seasonal Soccer launch: - config: @@ -376577,37 +371042,37 @@ oslist: macos executable: SeasonalSoccer28versionStable.app type: default -'818390': +"818390": installDir: The Deer launch: - config: oslist: windows executable: The Deer.exe type: none -'818400': +"818400": installDir: STARWAY VR launch: - config: oslist: windows executable: STARWAYVR.exe type: vr -'818410': +"818410": installDir: Space Hole 2018 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SpaceHole2018.exe type: none -'818430': +"818430": installDir: BurningBridges VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: BurningBridges.exe type: vr -'818440': +"818440": installDir: Forgotten Places Lost Circus launch: - config: @@ -376618,30 +371083,30 @@ oslist: macos executable: LostCircus.app/Contents/MacOS/Lost Circus type: default -'818450': {} -'818480': +"818450": {} +"818480": installDir: Eternal Man Mountain launch: - config: oslist: windows executable: mountain.exe type: none -'818500': +"818500": installDir: Colorzzle launch: - config: oslist: windows executable: Colorzzle.exe type: default -'818520': {} -'818530': +"818520": {} +"818530": installDir: WindowsNoEditor launch: - config: oslist: windows executable: EightBall.exe type: default -'818570': +"818570": installDir: Zombie Desperation launch: - config: @@ -376650,49 +371115,49 @@ type: default - config: oslist: macos - executable: ZombieDesperation.app\\Contents\\MacOS\\ZombieDesperation + executable: "ZombieDesperation.app\\\\Contents\\\\MacOS\\\\ZombieDesperation" type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: ZombieDesperation.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: ZombieDesperation.x86_64 type: default -'818580': +"818580": installDir: Shapestorm launch: - config: oslist: windows executable: Shapestorm.exe type: default -'818590': +"818590": installDir: Nano Nebula launch: - config: oslist: windows executable: Nano Nebula.exe type: vr -'818610': +"818610": installDir: The Great Gaias launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: nw.exe type: default - config: oslist: macos - executable: Game.app\\Contents\\MacOS\\nwjs + executable: "Game.app\\\\Contents\\\\MacOS\\\\nwjs" type: default -'818620': +"818620": installDir: MusicBoy3D launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: MB3D.exe type: default @@ -376704,45 +371169,45 @@ oslist: linux executable: MB3D type: default -'818640': +"818640": installDir: Alien Invasion 3d launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Lunch executable: AlienInvasion3D.exe type: none -'818650': +"818650": installDir: Evil Cogs launch: - config: oslist: windows executable: Evil Cogs.exe type: default -'818670': +"818670": installDir: Save Snegurochka launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: WindowsNoEditor/Savesneg.exe type: vr -'818690': {} -'818710': {} -'818720': +"818690": {} +"818710": {} +"818720": installDir: Gummy Goo Clean Up launch: - config: oslist: windows executable: Gummy Goo Clean Up.exe type: default -'818730': +"818730": installDir: 4e4nia kruto launch: - executable: Tower climber.exe type: none -'818760': +"818760": installDir: Woodways launch: - config: @@ -376753,7 +371218,7 @@ oslist: macos executable: Woodways.app type: default -'818780': +"818780": installDir: Scrunk launch: - config: @@ -376765,21 +371230,21 @@ executable: run type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: run type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: run64 type: default -'818790': +"818790": installDir: Stunt Hill launch: - executable: StuntHill.exe type: none -'818800': +"818800": installDir: Merrily Perilly launch: - config: @@ -376790,34 +371255,34 @@ oslist: macos executable: MerrilyPerilly.app type: none -'818830': +"818830": installDir: AsteroidDeflectorXL launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: nw.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: nw.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: nw type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: nw type: default - config: oslist: macos - executable: nwjs.app\\Contents\\MacOS\\nwjs + executable: "nwjs.app\\\\Contents\\\\MacOS\\\\nwjs" type: default -'818860': +"818860": installDir: Beyond the Sky launch: - config: @@ -376828,14 +371293,14 @@ oslist: windows executable: Beyond the Sky.exe type: default -'818890': +"818890": installDir: Box Maze Extreme launch: - config: oslist: windows executable: boxmazeextreme.exe type: default -'818940': +"818940": installDir: Oakwood Academy of Spells and Sorcery launch: - config: @@ -376850,36 +371315,36 @@ oslist: linux executable: Oakwood_Academy_of_Spells_and_Sorcery.sh type: default -'818950': +"818950": installDir: Space Slingshot VR launch: - config: oslist: windows executable: Space Slingshot VR.exe type: vr -'818960': +"818960": installDir: TAYAL launch: - config: oslist: windows executable: TAYAL.exe type: none -'818990': +"818990": installDir: Hotel Spring launch: - config: oslist: windows executable: Hotel Spring.exe type: default -'8190': +"8190": installDir: Just Cause 2 launch: - executable: JustCause2.exe -'819020': +"819020": installDir: ZankiZero launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: ゲーム起動 executable: ZankiZero.exe @@ -376892,14 +371357,14 @@ nameLocalized: japanese: ザンキゼロ tchinese: 殘機為零 -'819030': +"819030": installDir: SG_ELITE launch: - config: oslist: windows executable: boot.bat type: default -'819040': +"819040": installDir: Ashi launch: - config: @@ -376910,7 +371375,7 @@ oslist: macos executable: Ashi.app/Contents/MacOS/Ashi type: default -'819060': +"819060": installDir: Red Rover launch: - config: @@ -376921,25 +371386,25 @@ oslist: windows executable: RedRover.exe type: vr -'819070': +"819070": installDir: Windows_Content launch: - config: oslist: windows executable: The Unknown City.exe type: default -'819080': +"819080": installDir: Moto Racing 3D launch: - config: oslist: macos - executable: Moto Racing 3D.app\\Contents\\MacOS\\Moto Racing 3D + executable: "Moto Racing 3D.app\\\\Contents\\\\MacOS\\\\Moto Racing 3D" type: none - config: oslist: windows executable: Moto Racing 3D.exe type: none -'819090': +"819090": installDir: Pixel Caveman launch: - config: @@ -376948,10 +371413,10 @@ type: default - config: oslist: windows - executable: PixelCaveman\\Pixel Caveman.exe + executable: "PixelCaveman\\\\Pixel Caveman.exe" type: default -'819130': {} -'819160': +"819130": {} +"819160": installDir: AliensAreRude106 launch: - config: @@ -376959,21 +371424,21 @@ description: Aliens Are Rude! by David Ruttan executable: AliensAreRude!.exe type: default -'819180': - installDir: PLAYERUNKNOWN'S BATTLEBOXES +"819180": + installDir: "PLAYERUNKNOWN'S BATTLEBOXES" launch: - config: oslist: windows executable: PUBB.exe type: default -'819190': +"819190": installDir: Undead Citadel launch: - config: oslist: windows executable: Undead Citadel.exe type: vr -'819210': +"819210": installDir: The President launch: - config: @@ -376984,34 +371449,34 @@ oslist: macos executable: ThePresident.app type: none -'819220': +"819220": installDir: Yuso launch: - config: oslist: windows executable: Yuso.exe type: default -'819230': +"819230": installDir: Gothicc Breaker launch: - config: oslist: windows executable: Gothicc Breaker.exe type: default -'819260': {} -'819270': +"819260": {} +"819270": installDir: JUSTICE LEGION launch: - executable: jl.exe type: none -'819280': +"819280": installDir: ZAMB! Endless Extermination launch: - config: oslist: windows executable: ZambEndlessExtermination.exe type: default -'819330': +"819330": installDir: Quaddro 2 launch: - config: @@ -377020,20 +371485,20 @@ type: none - config: oslist: macos - executable: Quaddro 2.app\\Contents\\MacOS\\Quaddro 2 + executable: "Quaddro 2.app\\\\Contents\\\\MacOS\\\\Quaddro 2" type: none - config: oslist: linux executable: Quaddro2.x86 type: none -'819370': +"819370": installDir: Battle of cubes launch: - config: oslist: windows executable: Battle of cubes.exe type: none -'819400': +"819400": installDir: WhenWardensFall launch: - config: @@ -377044,126 +371509,124 @@ oslist: windows executable: WhenWardensFall.exe type: othervr -'819440': {} -'819460': {} -'819470': +"819440": {} +"819460": {} +"819470": installDir: TrainpunkRun launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TrainpunkRun180305.exe type: default -'819480': +"819480": installDir: Pizza Titan Ultra launch: - executable: Pizza Titan Ultra.exe type: none -'819500': +"819500": installDir: Fear The Wolves launch: - - arguments: '-login=ftw01.vostokgames.com:64000 -nosplash' + - arguments: "-login=ftw01.vostokgames.com:64000 -nosplash" config: - osarch: '64' + osarch: "64" oslist: windows description: FearTheWolves Main public server. - description_loc: - english: FearTheWolves Main public server. executable: Launch_Game.exe type: option1 - - arguments: '-login=54.36.126.173:64000 -noeac' + - arguments: "-login=54.36.126.173:64000 -noeac" config: betakey: local - osarch: '64' + osarch: "64" oslist: windows description: FearTheWolves VOSTOK test server. executable: FearTheWolves.exe type: option1 - - arguments: '-login=54.36.126.55:64000 -noeac' + - arguments: "-login=54.36.126.55:64000 -noeac" config: betakey: local description: FearTheWolves FOCUS test server. executable: FearTheWolves.exe type: option1 - - arguments: '-login=54.36.126.55:64000 -noeac' + - arguments: "-login=54.36.126.55:64000 -noeac" config: betakey: development_test_branch description: FearTheWolves FOCUS test server. executable: FearTheWolves.exe type: option1 - - arguments: '-login=ftw01.vostokgames.com:64000 -noeac' + - arguments: "-login=ftw01.vostokgames.com:64000 -noeac" config: betakey: shipping_test_branch - osarch: '64' + osarch: "64" oslist: windows executable: Launch_Game.exe type: default - - arguments: '-login=ftw01.vostokgames.com:64000 -noeac' + - arguments: "-login=ftw01.vostokgames.com:64000 -noeac" config: betakey: development_test_branch description: MAIN NO EAC executable: FearTheWolves.exe type: option1 - - arguments: '-login=ftw01.vostokgames.com:64000 -noeac' + - arguments: "-login=ftw01.vostokgames.com:64000 -noeac" config: betakey: local description: MAIN NO EAC executable: FearTheWolves.exe type: option1 - - arguments: '-login=ftw01-test.vostokgames.com:64000 -noeac -achievements_postfix=_' + - arguments: "-login=ftw01-test.vostokgames.com:64000 -noeac -achievements_postfix=_" config: betakey: shipping_test_branch description: FOCUS SERVER executable: FearTheWolves.exe type: option1 - - arguments: '-login=10.0.0.30:64000 -noeac' + - arguments: "-login=10.0.0.30:64000 -noeac" config: betakey: local - description: Andy's Server + description: "Andy's Server" executable: FearTheWolves.exe type: option1 - - arguments: '-login=ftw01-dev.vostokgames.com:64000 -noeac' + - arguments: "-login=ftw01-dev.vostokgames.com:64000 -noeac" config: betakey: development_test_branch description: FearTheWolves VOSTOK test server. executable: FearTheWolves.exe type: option1 - - arguments: '-login=ftw01-dev.vostokgames.com:64000 -noeac' + - arguments: "-login=ftw01-dev.vostokgames.com:64000 -noeac" config: betakey: shipping_test_branch description: FearTheWolves VOSTOK test server. executable: FearTheWolves.exe type: option1 - - arguments: '-login=ftw01.vostokgames.com:64000 -nosplash -record_fps_chart' + - arguments: "-login=ftw01.vostokgames.com:64000 -nosplash -record_fps_chart" config: betakey: shipping_test_branch description: Main server with record_fps_chart. executable: Launch_Game.exe type: option1 - - arguments: '-login=ftw01-dev.vostokgames.com:64000 -nosplash' + - arguments: "-login=ftw01-dev.vostokgames.com:64000 -nosplash" config: betakey: server_test_branch description: FearTheWolves VOSTOK test server. executable: Launch_Game.exe type: option1 - - arguments: '-record_fps_chart' + - arguments: "-record_fps_chart" config: - betakey: 'server_test_branch ' + betakey: "server_test_branch " description: Main server with record_fps_chart. executable: Launch_Game.exe type: option1 - - arguments: 'login=buildserv:64000 -noeac' + - arguments: "login=buildserv:64000 -noeac" config: betakey: local description: FearTheWolves LOCAL test server. executable: FearTheWolves.exe type: option1 -'819520': +"819520": installDir: Star Souls launch: - executable: Star Souls.exe type: none -'819550': +"819550": installDir: Cheese Maze launch: - config: @@ -377172,17 +371635,17 @@ type: default - config: oslist: macos - executable: CheeseMaze.app\\Contents\\MacOS\\CheeseMaze + executable: "CheeseMaze.app\\\\Contents\\\\MacOS\\\\CheeseMaze" type: default -'819560': +"819560": installDir: TurbOT Racing launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TurbOTRacing.exe type: default -'819630': +"819630": installDir: Basketball Classics launch: - config: @@ -377194,28 +371657,28 @@ executable: basketball_classics.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: basketball_classics.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: basketball_classics.x86_64 type: default -'819640': +"819640": installDir: Crypto Quest launch: - config: oslist: windows executable: Game.exe type: default -'819650': +"819650": installDir: Bitcoin launch: - executable: Bitcoin.exe type: none -'819660': +"819660": installDir: INFINITY CHALLENGE launch: - config: @@ -377226,37 +371689,37 @@ oslist: macos executable: InfinityChallenge_MacOS.app type: default -'819670': +"819670": installDir: Wall Walker launch: - config: oslist: windows executable: WallWalker.exe type: vr -'819680': {} -'819730': +"819680": {} +"819730": installDir: Rounders (Arena) launch: - config: oslist: windows executable: rounders.exe type: default -'819740': +"819740": installDir: Deadly Delivery launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: WindowsNoEditor\\Jumping\\Binaries\\Win64\\Jumping-Win64-Shipping.exe + executable: "WindowsNoEditor\\\\Jumping\\\\Binaries\\\\Win64\\\\Jumping-Win64-Shipping.exe" type: default workingdir: WindowsNoEditor - config: - osarch: '32' + osarch: "32" oslist: windows - executable: WindowsNoEditor\\Jumping\\Binaries\\Win32\\Jumping-Win32-Shipping.exe + executable: "WindowsNoEditor\\\\Jumping\\\\Binaries\\\\Win32\\\\Jumping-Win32-Shipping.exe" type: default workingdir: WindowsNoEditor -'819780': +"819780": installDir: The Singularity Wish launch: - config: @@ -377267,15 +371730,15 @@ oslist: macos executable: Game.app type: none -'819790': +"819790": installDir: Laplace:拉普拉斯的神子 launch: - - arguments: '-steam' + - arguments: "-steam" config: oslist: windows executable: Launcher.exe type: default -'819800': +"819800": installDir: Untouchable launch: - config: @@ -377284,16 +371747,16 @@ type: default - config: oslist: macos - executable: Mac\\Untouchable.app + executable: "Mac\\\\Untouchable.app" type: default -'819870': +"819870": installDir: game launch: - config: oslist: windows executable: Game.exe type: default -'819880': +"819880": installDir: SShield Reborn launch: - config: @@ -377304,29 +371767,29 @@ oslist: windows executable: S-Shield Reborn.exe type: othervr -'819910': {} -'819940': +"819910": {} +"819940": installDir: Rum Ram launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: RumRam.exe type: default -'819950': - installDir: Archer's story +"819950": + installDir: "Archer's story" launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: Archer`s Story.exe + executable: "Archer`s Story.exe" type: default - config: - osarch: '32' + osarch: "32" oslist: windows - executable: Archer`s Story.exe + executable: "Archer`s Story.exe" type: none -'819960': +"819960": installDir: Resynth launch: - config: @@ -377335,65 +371798,65 @@ type: default - config: oslist: macos - executable: Resynth.app\\Contents\\MacOS\\Resynth + executable: "Resynth.app\\\\Contents\\\\MacOS\\\\Resynth" type: default -'819980': +"819980": installDir: Brief Battles launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: Brief Battles.exe type: default -'819990': +"819990": installDir: Peccator launch: - config: oslist: windows executable: Peccator.exe type: default -'820020': - installDir: Alder's Blood +"820020": + installDir: "Alder's Blood" launch: - config: oslist: windows - executable: Alder's Blood.exe + executable: "Alder's Blood.exe" type: default nameLocalized: - japanese: 'アルダーズ・ブラッド: 完全版 (Alder''s Blood: Definitive Edition)' - koreana: '알더스 블러드: 데피니티브 에디션 (Alder''s Blood: Definitive Edition)' - schinese: '桤木之血: 决定版 (Alder''s Blood: Definitive Edition)' - tchinese: '阿爾德之血: 決定版 (Alder''s Blood: Definitive Edition)' -'820030': + japanese: "アルダーズ・ブラッド: 完全版 (Alder's Blood: Definitive Edition)" + koreana: "알더스 블러드: 데피니티브 에디션 (Alder's Blood: Definitive Edition)" + schinese: "桤木之血: 决定版 (Alder's Blood: Definitive Edition)" + tchinese: "阿爾德之血: 決定版 (Alder's Blood: Definitive Edition)" +"820030": installDir: Picross Fairytale launch: - config: oslist: windows executable: Picross Fairytale.exe type: default -'820040': +"820040": installDir: Picross Fairytale. Legend of the Mermaid launch: - config: oslist: windows executable: Picross Fairytale. Legend of the Mermaid.exe type: default -'820050': {} -'820070': +"820050": {} +"820070": installDir: Beosar launch: - - arguments: '--appid 820070' + - arguments: "--appid 820070" config: - osarch: '64' + osarch: "64" oslist: windows executable: Launcher.exe type: none -'820090': +"820090": installDir: Solitaire Knights launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: MedievalSolitaire.exe type: default @@ -377401,39 +371864,39 @@ oslist: macos executable: MedievalSolitaire.app type: default -'820170': +"820170": installDir: CRAZY MAZE launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: CrazyMaze.exe type: default -'820190': +"820190": installDir: FORWARD launch: - config: oslist: windows executable: Forward.exe type: default -'820210': +"820210": installDir: ASHIWASH launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ASHIWASH_MIGRATE.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: vr.bat type: vr -'820240': +"820240": installDir: Save One More launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Save One More.exe type: none @@ -377441,64 +371904,64 @@ oslist: macos executable: Save One More.app type: none -'820250': +"820250": installDir: Trial of the Gods launch: - config: oslist: windows executable: TrialoftheGods.exe type: vr -'820300': +"820300": installDir: Crypto Girl The Visual Novel launch: - config: oslist: windows executable: Crypto Girl.exe type: default -'820310': +"820310": installDir: TRUTH OF FALCHION launch: - config: oslist: windows executable: tof.exe type: default -'820320': +"820320": installDir: Word Typing Game launch: - config: oslist: windows executable: game.exe type: default -'820380': +"820380": installDir: Russian Prisoner VS Nazi Zombies launch: - config: oslist: windows executable: Russian Prisoner VS Nazi Zombies.exe type: default -'820400': +"820400": installDir: Shrouded in Sanity Freebirth launch: - executable: Shrouded in Sanity Freebirth.exe type: none -'820460': +"820460": installDir: Hero Academy 2 launch: - config: betakey: test oslist: macos description: Hero Academy 2 - executable: Tango_Internal.app\\Contents\\MacOS\\Tango_Dev + executable: "Tango_Internal.app\\\\Contents\\\\MacOS\\\\Tango_Dev" type: default - config: betakey: test - osarch: '64' + osarch: "64" oslist: windows executable: Tango_Internal.exe type: default - config: betakey: atdesk - osarch: '64' + osarch: "64" oslist: windows executable: Tango_Internal.exe type: default @@ -377506,15 +371969,15 @@ betakey: atdesk oslist: macos description: Hero Academy 2 - executable: Tango_Internal.app\\Contents\\MacOS\\Tango_Dev + executable: "Tango_Internal.app\\\\Contents\\\\MacOS\\\\Tango_Dev" type: default - config: oslist: macos description: Hero Academy 2 - executable: HeroAcademy2.app\\Contents\\MacOS\\HeroAcademy2 + executable: "HeroAcademy2.app\\\\Contents\\\\MacOS\\\\HeroAcademy2" type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: HeroAcademy2.exe type: default @@ -377522,11 +371985,11 @@ betakey: internal_prod oslist: macos description: Hero Academy 2 - executable: Tango_Internal.app\\Contents\\MacOS\\Tango_Dev + executable: "Tango_Internal.app\\\\Contents\\\\MacOS\\\\Tango_Dev" type: default - config: betakey: internal_prod - osarch: '64' + osarch: "64" oslist: windows executable: Tango_Internal.exe type: default @@ -377534,17 +371997,17 @@ betakey: final_prod oslist: macos description: Hero Academy 2 - executable: HeroAcademy2.app\\Contents\\MacOS\\HeroAcademy2 + executable: "HeroAcademy2.app\\\\Contents\\\\MacOS\\\\HeroAcademy2" type: default - config: betakey: final_prod - osarch: '64' + osarch: "64" oslist: windows executable: HeroAcademy2.exe type: default - config: betakey: final_prod_magenta - osarch: '64' + osarch: "64" oslist: windows executable: HeroAcademy2.exe type: default @@ -377552,9 +372015,9 @@ betakey: final_prod_magenta oslist: macos description: Hero Academy 2 - executable: HeroAcademy2.app\\Contents\\MacOS\\HeroAcademy2 + executable: "HeroAcademy2.app\\\\Contents\\\\MacOS\\\\HeroAcademy2" type: default -'820480': +"820480": installDir: Dead Shot Heroes launch: - config: @@ -377564,16 +372027,16 @@ type: vr - config: oslist: macos - executable: dsh.app\\Contents\\MacOS\\dsh + executable: "dsh.app\\\\Contents\\\\MacOS\\\\dsh" type: default -'820500': +"820500": installDir: Tisnart Shapes launch: - config: oslist: windows executable: Tisnart Shapes 1.1.exe type: default -'820510': +"820510": installDir: Camp W launch: - config: @@ -377582,152 +372045,150 @@ type: default - config: oslist: macos - executable: CampW.app\\Contents\\MacOS\\CampW + executable: "CampW.app\\\\Contents\\\\MacOS\\\\CampW" type: default -'820520': +"820520": installDir: DeceiveInc launch: - - arguments: '-nosplash' + - arguments: "-nosplash" config: betakey: latest_ue4 - osarch: '64' + osarch: "64" oslist: windows executable: DeceiveInc.exe type: default - - arguments: '-nosplash' + - arguments: "-nosplash" config: oslist: linux executable: DeceiveInc type: default - - arguments: '-nosplash -MatchmakingSuffix loc_qa' + - arguments: "-nosplash -MatchmakingSuffix loc_qa" config: betakey: loc_qa - osarch: '64' + osarch: "64" oslist: windows executable: DeceiveInc.exe type: default - - arguments: '-nosplash -MatchmakingSuffix cert_qa' + - arguments: "-nosplash -MatchmakingSuffix cert_qa" config: betakey: cert_qa - osarch: '64' + osarch: "64" oslist: windows executable: DeceiveInc.exe type: default - - arguments: '-nosplash' + - arguments: "-nosplash" config: betakey: candidate oslist: windows executable: DeceiveInc.exe type: default - - arguments: '-nosplash' + - arguments: "-nosplash" config: betakey: default oslist: windows executable: DeceiveInc.exe type: default - - arguments: '-nosplash -MatchmakingSuffix test' + - arguments: "-nosplash -MatchmakingSuffix test" config: betakey: env_production oslist: windows description: Use TEST server instances - description_loc: - english: Use TEST server instances executable: DeceiveInc.exe type: option1 - - arguments: '-nosplash -MatchmakingSuffix intel' + - arguments: "-nosplash -MatchmakingSuffix intel" config: betakey: teamblue oslist: windows executable: DeceiveInc.exe type: default - - arguments: '-nosplash' + - arguments: "-nosplash" config: betakey: env_production oslist: windows executable: DeceiveInc.exe type: default - - arguments: '-nosplash' + - arguments: "-nosplash" config: betakey: env_staging oslist: windows executable: DeceiveInc.exe type: default - - arguments: '-nosplash' + - arguments: "-nosplash" config: betakey: env_test oslist: windows executable: DeceiveInc.exe type: default - - arguments: '-nosplash' + - arguments: "-nosplash" config: betakey: env_dev oslist: windows executable: DeceiveInc.exe type: default - - arguments: '-nosplash -MatchmakingSuffix hammer' + - arguments: "-nosplash -MatchmakingSuffix hammer" config: betakey: hammer oslist: windows executable: DeceiveInc.exe type: default - - arguments: '-nosplash -MatchmakingSuffix nvidia' + - arguments: "-nosplash -MatchmakingSuffix nvidia" config: betakey: teamgreen executable: DeceiveInc.exe type: default -'820530': +"820530": installDir: Stardust VR launch: - - arguments: '-fullscreen off' + - arguments: "-fullscreen off" config: - osarch: '64' + osarch: "64" oslist: windows executable: StardustVR.exe type: vr - config: - osarch: '64' + osarch: "64" oslist: windows executable: StardustVR.exe type: othervr -'820540': +"820540": installDir: Bloodroots launch: - executable: Bloodroots.exe type: none -'820570': +"820570": installDir: Exterminate the world launch: - config: oslist: windows executable: game.exe type: vr -'820580': +"820580": installDir: Ashley The Story Of Survival launch: - config: oslist: macos - executable: Ashley The Story Of Survival.app\\Contents\\MacOS\\Ashley The Story Of Survival + executable: "Ashley The Story Of Survival.app\\\\Contents\\\\MacOS\\\\Ashley The Story Of Survival" type: none - config: oslist: windows executable: Ashley The Story Of Survival.exe type: none -'820600': +"820600": installDir: ReThink Evolved 2 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ReThink3.exe type: none -'820610': +"820610": installDir: Ages of Mages The last keeper launch: - config: oslist: windows executable: aom.exe type: default -'820620': +"820620": installDir: Spooky Ghosts Dot Com launch: - config: @@ -377738,10 +372199,10 @@ oslist: linux executable: SpookyGhostsDotCom type: none -'820630': +"820630": installDir: Metal Wolf Chaos XD launch: - - arguments: '-boostFx -instagram default' + - arguments: "-boostFx -instagram default" description: Run executable: wilson.exe type: default @@ -377817,13 +372278,13 @@ betakey: pax_south executable: run_kiosk.bat type: none - - arguments: '-language english' + - arguments: "-language english" config: betakey: weekly_build description: Play English executable: wilson.exe type: default - - arguments: ' -language japanese' + - arguments: " -language japanese" config: betakey: weekly_build description: Play Japanese @@ -377833,14 +372294,14 @@ betakey: ga_test executable: wilson.exe type: default -'820640': +"820640": installDir: AquaLungers launch: - config: oslist: windows executable: AquaLungers.exe type: none -'820660': +"820660": installDir: Future City Coaster launch: - executable: future_city_coaster_pc.exe @@ -377849,16 +372310,16 @@ type: vr - executable: future_city_coaster_vr.exe type: othervr -'820680': +"820680": installDir: HIGHER GROUND launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Get Your Higher Ground !! executable: HigherGround.exe type: default -'820690': +"820690": installDir: ZYTERNION launch: - config: @@ -377873,12 +372334,12 @@ oslist: linux executable: ZYTERNION.x86 type: default -'820700': +"820700": installDir: Free road launch: - executable: Free road.exe type: default -'820710': +"820710": installDir: +1S launch: - config: @@ -377889,7 +372350,7 @@ oslist: macos executable: +1s.app type: default -'820730': +"820730": installDir: Adventure of a Lifetime launch: - config: @@ -377897,7 +372358,7 @@ description: Launch executable: AdvHD.exe type: default -'820750': +"820750": installDir: Cryptocurrency Clicker launch: - config: @@ -377908,43 +372369,43 @@ oslist: windows executable: Cryptocurrency Clicker.exe type: none -'820760': +"820760": installDir: TC-JOA launch: - config: oslist: windows executable: sangirl.exe type: default -'820770': {} -'820780': +"820770": {} +"820780": installDir: Dungeon Jump launch: - config: oslist: windows executable: Dungeon Jump.exe type: none -'820790': +"820790": installDir: FEAST Book One Family Ties launch: - config: oslist: windows executable: FEAST.exe type: none -'820830': +"820830": installDir: The famous diver launch: - config: oslist: windows executable: The famous diver.exe type: config -'820840': +"820840": installDir: PREONE launch: - config: oslist: windows executable: PRE.exe type: default -'820880': +"820880": installDir: Helping Hand launch: - config: @@ -377955,63 +372416,63 @@ oslist: macos executable: Helping Hand.app type: none -'820890': +"820890": installDir: Blood Bond - Into the Shroud launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: IntoTheShroud.exe type: default -'820900': +"820900": installDir: Ceress and Orea launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: CeressAndOrea\\nw.exe + executable: "CeressAndOrea\\\\nw.exe" type: none -'820910': +"820910": installDir: Last Island Resort launch: - config: oslist: windows executable: Last Resort Island.exe type: default -'820920': {} -'820950': +"820920": {} +"820950": installDir: Boltzmann Brain launch: - config: oslist: windows executable: BB.exe type: default -'821020': {} -'821100': +"821020": {} +"821100": installDir: The Protocons launch: - config: oslist: windows executable: Protocons.exe type: none -'821120': +"821120": installDir: PoopyPhilosophy launch: - config: oslist: windows executable: PoopyPhilosophy.exe type: default -'821180': +"821180": installDir: Reliefs The Time of the Lemures launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launcher Windows64 executable: Reliefs The time of of Lemures.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: Launcher Linux64 executable: Reliefs The Time of the Lemures.x86_64 @@ -378021,7 +372482,7 @@ description: Launcher Mac64 executable: Reliefs The Time of the Lemures.app type: default -'821190': +"821190": installDir: Minitime launch: - config: @@ -378029,85 +372490,85 @@ description: Stable Release executable: minitime.exe type: default -'821230': +"821230": installDir: Drink Em launch: - config: oslist: windows executable: DrinkEmGame.exe type: default -'821250': +"821250": installDir: Flotsam launch: - config: oslist: windows executable: Flotsam.exe type: default -'821260': +"821260": installDir: Light launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: LightWin64\\Light64.exe + executable: "LightWin64\\\\Light64.exe" type: default - config: - osarch: '32' + osarch: "32" oslist: windows - executable: LightWin32\\Light32.exe + executable: "LightWin32\\\\Light32.exe" type: default -'821290': +"821290": installDir: Rune2 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: RuneRagnarok.exe type: default -'821320': +"821320": installDir: SPAGHET launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Spaghet.exe type: default -'821330': +"821330": installDir: Mob War Nazi Golds launch: - config: oslist: windows executable: mobwar.exe type: default -'821350': +"821350": installDir: R.B.I. Baseball 20 launch: - config: oslist: windows executable: RBIBaseball_2020.exe type: default -'821360': +"821360": installDir: Wallrunners launch: - config: oslist: windows executable: Wallrunners.exe type: default -'821370': +"821370": installDir: MLB Home Run Derby VR launch: - config: oslist: windows executable: HRDVR.exe type: vr -'821380': {} -'821390': +"821380": {} +"821390": installDir: Achievement Lurker Another one bites the dust launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" executable: Game.exe type: none -'821400': +"821400": installDir: Packed Train launch: - config: @@ -378122,15 +372583,15 @@ oslist: linux executable: PackedTrain.x86 type: default -'821410': +"821410": installDir: Yafti launch: - config: oslist: windows executable: nw.exe type: none -'821430': {} -'821440': +"821430": {} +"821440": installDir: GunnRunner launch: - config: @@ -378141,7 +372602,7 @@ oslist: macos executable: GunnRunner.app type: default -'821480': +"821480": installDir: Space Flowers launch: - config: @@ -378149,22 +372610,22 @@ description: Space Flowers Intra-galactic Tradewars Gane executable: rainbow.exe type: default -'821500': - installDir: Ria's Hook +"821500": + installDir: "Ria's Hook" launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: Ria's Hook.exe + executable: "Ria's Hook.exe" type: default -'821520': +"821520": installDir: Trivia Vault Boxing Trivia launch: - config: oslist: windows executable: Trivia Vault Boxing Trivia.exe type: default -'821550': +"821550": installDir: AislingQuest launch: - config: @@ -378175,7 +372636,7 @@ oslist: macos executable: AislingQuest.app type: default -'821560': +"821560": installDir: Behind The Screen launch: - config: @@ -378187,16 +372648,16 @@ executable: Behind The Screen.app type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: Behind The Screen.x86_64 type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: Behind The Screen.x86 type: none -'821570': +"821570": installDir: Lethal Lawns launch: - config: @@ -378205,21 +372666,21 @@ type: default - config: oslist: macos - executable: LethalLawns.app\\Contents\\MacOS\\Lethal Lawns + executable: "LethalLawns.app\\\\Contents\\\\MacOS\\\\Lethal Lawns" type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: LethalLawns.x86_64 type: default -'821610': +"821610": installDir: MySunnyResort launch: - config: oslist: windows executable: MySunnyResort.exe type: none -'821640': +"821640": installDir: Floor Kids launch: - config: @@ -378228,9 +372689,9 @@ type: default - config: oslist: macos - executable: FloorKids.app\\Contents\\MacOS\\FloorKids + executable: "FloorKids.app\\\\Contents\\\\MacOS\\\\FloorKids" type: default -'821670': +"821670": installDir: HorseFarm launch: - config: @@ -378238,92 +372699,92 @@ description: HorseFarm executable: HorseFarm.exe type: default -'821720': +"821720": installDir: 20.000 Leagues Under The Sea - Captain Nemo launch: - config: oslist: windows executable: 20000Leagues.exe type: default -'821730': {} -'821780': +"821730": {} +"821780": installDir: Last Anime Boy 2 Hentai Zombie Hell launch: - config: oslist: windows executable: lab2.exe type: default -'821790': +"821790": installDir: Who Am I The Tale of Dorothy launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: windows\\Who Am I.exe + executable: "windows\\\\Who Am I.exe" type: default - config: oslist: macos - executable: mac\\Who Am I.app\\Contents\\MacOS\\Who Am I + executable: "mac\\\\Who Am I.app\\\\Contents\\\\MacOS\\\\Who Am I" type: default - config: - osarch: '32' + osarch: "32" oslist: windows - executable: windows\\Who Am I.exe + executable: "windows\\\\Who Am I.exe" type: default -'821800': +"821800": installDir: ADR-Labelling Game launch: - config: oslist: windows executable: ADR-Labelling Game.exe type: none -'821810': {} -'821820': - installDir: Farmer's Fairy Tale +"821810": {} +"821820": + installDir: "Farmer's Fairy Tale" launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: FarmersFairyTale.exe type: default -'821850': +"821850": installDir: OldFactory launch: - config: oslist: windows executable: OldFactory.exe type: default -'821860': +"821860": installDir: SecretLaboratory launch: - config: oslist: windows executable: SecretLaboratory.exe type: default -'821880': +"821880": installDir: Idol Manager launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: IM.exe type: none - config: oslist: macos - executable: Idol Manager.app\\Contents\\MacOS\\Idol Manager + executable: "Idol Manager.app\\\\Contents\\\\MacOS\\\\Idol Manager" type: none - config: oslist: linux executable: IdolManager.x86_64 type: none - config: - osarch: '32' + osarch: "32" oslist: windows executable: Idol Manager.exe type: none nameLocalized: japanese: アイドルマネージャー -'821890': +"821890": installDir: Steven Universe Save the Light launch: - config: @@ -378332,55 +372793,55 @@ type: default - config: oslist: macos - executable: Save the Light.app\\Contents\\MacOS\\Save the Light + executable: "Save the Light.app\\\\Contents\\\\MacOS\\\\Save the Light" type: default -'821910': +"821910": installDir: Tower Defense Sudden Attack launch: - config: oslist: windows executable: TowerDefenceSuddenAttack.exe type: default -'821920': +"821920": installDir: OAOA launch: - executable: game.exe type: none -'822030': {} -'822040': +"822030": {} +"822040": installDir: Super Volley Blast launch: - executable: SuperVolleyBlast.exe type: default -'822070': +"822070": installDir: SAS VS Zombies launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SasVSzombies.exe type: default -'822110': +"822110": installDir: Magika Land of Fantasy launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Magika-64.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: Magika-32.exe type: default -'822130': +"822130": installDir: Flynn and Freckles launch: - config: oslist: windows executable: Flynn and Freckles.exe type: none -'822140': +"822140": installDir: Glaive Brick Breaker launch: - config: @@ -378389,16 +372850,16 @@ type: default - config: oslist: macos - executable: glaive.app\\Contents\\MacOS\\glaive + executable: "glaive.app\\\\Contents\\\\MacOS\\\\glaive" type: default -'822150': +"822150": installDir: WAY HOME launch: - config: oslist: windows executable: WAY HOME.exe type: default -'822190': +"822190": installDir: Little Bug launch: - config: @@ -378407,34 +372868,34 @@ type: none - config: oslist: macos - executable: Little Bug.app\\Contents\\MacOS\\Little Bug + executable: "Little Bug.app\\\\Contents\\\\MacOS\\\\Little Bug" type: none - config: oslist: linux executable: Little Bug.x86 type: none -'822230': {} -'822240': +"822230": {} +"822240": installDir: Animal Jam - Play Wild! launch: - config: oslist: windows executable: Play Wild.exe type: default -'822250': +"822250": installDir: GL1TCH launch: - config: oslist: windows executable: GL1TCH.exe type: default -'822310': {} -'822440': +"822310": {} +"822440": installDir: CoffeeTime launch: - executable: CoffeeTime.exe type: none -'822450': +"822450": installDir: EXE Mainframe launch: - config: @@ -378445,33 +372906,33 @@ oslist: linux executable: EXE-GM-Linux-1.x86_64 type: default -'822460': +"822460": installDir: Trivia Vault Auto Racing Trivia launch: - config: oslist: windows executable: Trivia Vault Auto Racing Trivia.exe type: default -'822470': +"822470": installDir: SXYSH launch: - executable: 属性与生活.exe type: default -'822510': +"822510": installDir: Struggle For Survival VR launch: - config: oslist: windows executable: SfsGame.exe type: vr -'822530': +"822530": installDir: Pukan Bye Bye launch: - config: oslist: windows executable: Pukan Bye Bye.exe type: default -'822540': +"822540": installDir: Escape From Tethys launch: - config: @@ -378482,126 +372943,126 @@ oslist: macos executable: Contents/MacOS/EscapeFromTethysMac type: default -'822550': +"822550": installDir: 2DGameManias Taken launch: - config: oslist: windows executable: taken.exe type: default -'822600': {} -'822610': +"822600": {} +"822610": installDir: Patternis launch: - executable: Patternis.exe type: default -'822640': +"822640": installDir: Squids Odyssey launch: - config: oslist: windows executable: SquidsDeluxe.exe type: default -'822650': +"822650": installDir: Typical Nightmare launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: Typical Nightmare\\Typical Nightmare.exe + executable: "Typical Nightmare\\\\Typical Nightmare.exe" type: default -'822680': +"822680": installDir: Jumping Man launch: - config: oslist: windows executable: Jumping Man.exe type: default -'822700': +"822700": installDir: Beer and Skittls VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Skittles.exe type: vr - config: - osarch: '64' + osarch: "64" oslist: windows executable: Skittles.exe type: othervr -'822710': +"822710": installDir: Clash Mutants Vs Pirates launch: - config: oslist: windows executable: Clash Mutants Vs Pirates.exe type: default -'822720': +"822720": installDir: The Amazing Bernard launch: - config: oslist: windows executable: The Amazing Bernard.exe type: default -'822740': +"822740": installDir: FlappyU launch: - config: oslist: windows executable: FlappyU.exe type: vr -'822750': +"822750": installDir: Try to seize me launch: - config: oslist: windows executable: TryToSeizeMe.exe type: default -'822760': +"822760": installDir: Fureraba ~Friend to Lover~ launch: - config: oslist: windows executable: fureraba.exe type: none -'822770': +"822770": installDir: The Secrets of the Forest launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: The Secrets of The Forest Beta executable: TSOTF.exe type: option1 - config: - osarch: '64' + osarch: "64" oslist: linux executable: TSOTF.x86_64 type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: The Secrets of The Forest.exe type: default - - arguments: '-force-d3d12' + - arguments: "-force-d3d12" config: - osarch: '64' + osarch: "64" oslist: windows description: The Secrets of The Forest DX12 Mode executable: The Secrets of The Forest.exe type: option1 -'822800': +"822800": installDir: Soulfire launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Soulfire.exe type: none nameLocalized: - schinese: ' 灵魂之火' -'822810': + schinese: " 灵魂之火" +"822810": installDir: Velvet Guard launch: - config: @@ -378614,7 +373075,7 @@ type: default - config: oslist: macos - executable: velvetguard.app\\Contents\\MacOS\\launcher + executable: "velvetguard.app\\\\Contents\\\\MacOS\\\\launcher" type: default - config: oslist: windows @@ -378626,37 +373087,37 @@ type: editor - config: oslist: macos - executable: velvetguard.app\\Contents\\MacOS\\editor_launcher + executable: "velvetguard.app\\\\Contents\\\\MacOS\\\\editor_launcher" type: editor -'822830': +"822830": installDir: Ouroboros launch: - config: oslist: windows executable: Game.exe type: default -'822840': +"822840": installDir: metal launch: - config: oslist: windows executable: fulgum.exe type: default -'822870': +"822870": installDir: Diary of Defender launch: - config: oslist: windows executable: DiaryofDefender.exe type: vr -'822900': +"822900": installDir: Trivia Vault Golf Trivia launch: - config: oslist: windows executable: Trivia Vault Golf Trivia.exe type: default -'822910': +"822910": installDir: Mortal Squad Portal to Hell launch: - config: @@ -378664,14 +373125,14 @@ description: Launch executable: MortalSquad.exe type: default -'822920': +"822920": installDir: Ellen launch: - config: oslist: windows executable: Ellen.exe type: default -'822930': +"822930": installDir: Wolf Tails launch: - config: @@ -378686,7 +373147,7 @@ oslist: macos executable: WolfTails.app type: none -'822940': +"822940": installDir: Tori launch: - config: @@ -378697,14 +373158,14 @@ oslist: macos executable: Tori.app type: default -'822970': +"822970": installDir: BLOCK CAT SPACE GOLF launch: - config: oslist: windows executable: BLOCK CAT SPACE GOLF.exe type: default -'822990': +"822990": installDir: Spinnortality launch: - config: @@ -378716,31 +373177,31 @@ executable: Spinnortality.app type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: Spinnortality.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: Spinnortality.x86_64 type: none -'823040': +"823040": installDir: Griefer launch: - config: oslist: windows executable: Griefer.exe type: default -'823060': {} -'823100': +"823060": {} +"823100": installDir: Peace Duke launch: - config: oslist: windows executable: PeaceDuke.exe type: default -'823130': +"823130": installDir: TotallyAccurateBattlegrounds launch: - config: @@ -378754,40 +373215,34 @@ - config: betakey: equ8 description: Launch Equ8 - description_loc: - english: Launch Equ8 executable: TABG_Launcher.exe type: none - - arguments: '-force-vulkan' + - arguments: "-force-vulkan" config: betakey: landfall description: Launch with Vulkan - description_loc: - english: Launch with Vulkan executable: TABG_Launcher.exe type: none - - arguments: '-force-vulkan' + - arguments: "-force-vulkan" config: betakey: secret_test description: Laucnh with Vulkan - description_loc: - english: Laucnh with Vulkan executable: TABG_Launcher.exe type: none -'823160': +"823160": installDir: Knife Hit Dash launch: - config: oslist: windows executable: game.exe type: default -'823180': +"823180": installDir: Bubble Strike launch: - executable: BubbleStrike.exe type: none -'823210': {} -'823280': +"823210": {} +"823280": installDir: STE - Save The Earth launch: - config: @@ -378796,17 +373251,17 @@ type: default - config: oslist: linux - executable: STE-Save_the_Earth\\runner + executable: "STE-Save_the_Earth\\\\runner" type: default -'823290': +"823290": installDir: Pokka Man launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Pokka Man.exe type: default -'823310': +"823310": installDir: Alchemy Classic launch: - config: @@ -378815,63 +373270,63 @@ type: default - config: oslist: macos - executable: Alchemy Classic Premium.app\\Contents\\MacOS\\alchemyclassicpremium + executable: "Alchemy Classic Premium.app\\\\Contents\\\\MacOS\\\\alchemyclassicpremium" type: default -'823320': +"823320": installDir: CrazyHousePlanes launch: - config: oslist: windows executable: CrazyHousePlanes.exe type: default -'823330': +"823330": installDir: Marginal act launch: - config: oslist: windows - ownsdlc: '894080' + ownsdlc: "894080" executable: MarginalAct.exe type: default - config: oslist: macos - ownsdlc: '894080' - executable: MarginalAct.app\\Contents\\MacOS\\MarginalAct + ownsdlc: "894080" + executable: "MarginalAct.app\\\\Contents\\\\MacOS\\\\MarginalAct" type: none - config: oslist: linux - ownsdlc: '894080' + ownsdlc: "894080" executable: MarginalAct.x86_64 type: none -'823340': +"823340": installDir: Round Mars launch: - config: oslist: windows executable: Round Mars.exe type: default -'823360': +"823360": installDir: Sloppy Goat launch: - config: oslist: windows executable: Sloppy goat.exe type: default -'823370': +"823370": installDir: Lucky VS Aliens launch: - config: oslist: windows executable: Lucky_VS_Aliens.exe type: none -'823390': {} -'823420': +"823390": {} +"823420": installDir: Erinye launch: - config: oslist: windows executable: Game.exe type: none -'823470': +"823470": installDir: Glitchball launch: - config: @@ -378880,33 +373335,33 @@ type: none - config: oslist: macos - executable: Glitchball.app\\Contents\\MacOS\\build1 + executable: "Glitchball.app\\\\Contents\\\\MacOS\\\\build1" type: none - config: oslist: linux executable: glitchball_linux.x86_64 type: none -'823490': {} -'823500': +"823490": {} +"823500": installDir: BONEWORKS launch: - config: oslist: windows - executable: BONEWORKS\\BONEWORKS.exe + executable: "BONEWORKS\\\\BONEWORKS.exe" type: vr -'823510': +"823510": installDir: Precision Sniping Competitive launch: - executable: Sniper.exe type: none -'823530': +"823530": installDir: AestheticArena launch: - config: oslist: windows executable: Aesthetic Arena.exe type: default -'823550': +"823550": installDir: Booty Calls launch: - config: @@ -378917,7 +373372,7 @@ oslist: windows executable: BootyCalls.exe type: default -'823580': +"823580": installDir: Isoland2 launch: - config: @@ -378930,24 +373385,24 @@ type: none - config: oslist: windows - ownsdlc: '909390' + ownsdlc: "909390" executable: IslandBook.exe type: none - config: oslist: macos - ownsdlc: '909390' + ownsdlc: "909390" executable: IslandBook.app type: none -'823590': {} -'823600': +"823590": {} +"823600": installDir: Battle Brawlers launch: - - arguments: '-windowed' + - arguments: "-windowed" config: oslist: windows executable: FTF.exe type: default -'823610': +"823610": installDir: DODK launch: - config: @@ -378967,50 +373422,50 @@ russian: Рыцари подземелий драконов schinese: 龙骑士之墓 tchinese: 龍騎士之墓 -'823640': +"823640": installDir: Gnomes Garden Lost King launch: - executable: Lost King.exe type: none -'823650': +"823650": installDir: Zombow launch: - executable: Zombow.exe type: none -'823670': +"823670": installDir: Hykee - Episode 1 Underwater launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: HykeeUW.exe type: vr -'823690': +"823690": installDir: HelpmeVR launch: - config: oslist: windows executable: helpMe.exe type: vr -'823700': +"823700": installDir: AUTOCROSS MADNESS launch: - config: oslist: windows executable: A.exe type: none -'823710': - installDir: Who's in the Box +"823710": + installDir: "Who's in the Box" launch: - config: oslist: macos - executable: Who's in the Box.app/Contents/MacOS/Who's in the Box + executable: "Who's in the Box.app/Contents/MacOS/Who's in the Box" type: default - config: oslist: windows - executable: Who's in the Box.exe + executable: "Who's in the Box.exe" type: default -'823730': +"823730": installDir: Oscillatron Alien Frequency launch: - config: @@ -379021,7 +373476,7 @@ oslist: macos executable: Oscillatron Alien Frequency.app/Contents/MacOS/Oscillatron Alien Frequency type: none -'823740': +"823740": installDir: Freedom March launch: - config: @@ -379030,33 +373485,33 @@ type: none - config: oslist: macos - executable: Freedom March.app\\Contents\\MacOS\\Freedom March + executable: "Freedom March.app\\\\Contents\\\\MacOS\\\\Freedom March" type: none -'823770': +"823770": installDir: Labyrinths of Atlantis launch: - executable: Labyrinths of Atlantis.exe type: default -'823800': +"823800": installDir: Kitty Play launch: - config: oslist: windows - executable: bin\\Game.exe + executable: "bin\\\\Game.exe" type: default -'823820': {} -'823830': +"823820": {} +"823830": installDir: Frightened Beetles launch: - config: oslist: windows executable: Frightened_Beetles.exe type: default -'823840': +"823840": installDir: Macrotis launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: macrotis.exe type: none @@ -379065,36 +373520,36 @@ executable: macrotis.app type: none - config: - osarch: '32' + osarch: "32" oslist: windows executable: macrotis.exe type: none -'823910': +"823910": installDir: LastEvil launch: - config: oslist: windows executable: LastEvil.exe type: default -'823920': +"823920": installDir: Kawaii Rainbow Portal launch: - executable: Kawaii.exe type: default -'823940': +"823940": installDir: Virtual Battlegrounds launch: - - arguments: '-vrmode Oculus' + - arguments: "-vrmode Oculus" config: oslist: windows executable: Virtual Battlegrounds.exe type: othervr - - arguments: '-vrmode OpenVR' + - arguments: "-vrmode OpenVR" config: oslist: windows executable: Virtual Battlegrounds.exe type: vr -'823950': +"823950": installDir: Re-Legend launch: - config: @@ -379107,7 +373562,7 @@ description: Beta Test executable: Milestone14.3.exe type: option1 -'824000': +"824000": installDir: Hokko Life launch: - config: @@ -379117,7 +373572,7 @@ type: default nameLocalized: schinese: 哈克小镇 -'824070': +"824070": installDir: Objects in Space launch: - config: @@ -379129,11 +373584,11 @@ executable: Objects in Space.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: runois.sh type: default -'824090': +"824090": installDir: TailQuest launch: - config: @@ -379142,35 +373597,35 @@ - config: oslist: linux executable: tq.64 -'824110': {} -'824170': +"824110": {} +"824170": installDir: Relic Raiders launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: RelicRaiders.exe type: default -'824190': +"824190": installDir: Achievement Clicker 2019 launch: - executable: AchievementClicker2019.exe type: none -'824200': +"824200": installDir: The Bell Chimes for Gold launch: - executable: Game.exe type: none -'824210': {} -'824220': +"824210": {} +"824220": installDir: Reflecting Reflections launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Reflecting Reflections.exe type: default -'824250': +"824250": installDir: BitBreaker launch: - config: @@ -379179,66 +373634,66 @@ type: default - config: oslist: macos - executable: BitBreaker.app\\Contents\\MacOS\\BitBreaker + executable: "BitBreaker.app\\\\Contents\\\\MacOS\\\\BitBreaker" type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: BitBreaker.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: BitBreaker.x86_64 type: default -'824260': +"824260": installDir: ShowMeWhatYouGot launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ShowMeWhatYouGot.exe type: vr - config: - osarch: '64' + osarch: "64" oslist: windows executable: ShowMeWhatYouGot.exe type: othervr -'824270': +"824270": installDir: FPSAimTrainer launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: FPSAimTrainer.exe type: default -'824280': +"824280": installDir: Monster Jam Steel Titans launch: - - arguments: '-nohmd' + - arguments: "-nohmd" config: - osarch: '64' + osarch: "64" oslist: windows executable: MxNext.exe type: default - - arguments: '-windowed -log' + - arguments: "-windowed -log" config: betakey: nightly - osarch: '64' + osarch: "64" oslist: windows description: w/ Log executable: MxNext.exe type: option1 - - arguments: '-vr' + - arguments: "-vr" config: betakey: mjstvr - osarch: '64' + osarch: "64" oslist: windows description: Monster Jam Steel Titans VR executable: MxNext.exe type: option2 -'824290': {} -'824300': +"824290": {} +"824300": installDir: Dragonawaken launch: - config: @@ -379253,24 +373708,24 @@ oslist: windows executable: Dragon Awaken.exe type: none -'824400': +"824400": installDir: Havoc in heaven launch: - executable: Havoc in heaven.exe type: vr -'824430': +"824430": installDir: Black Circle launch: - executable: Black Circle.exe type: none -'824440': +"824440": installDir: Abandoned Snowy Castle launch: - config: oslist: windows executable: ASC.exe type: default -'824450': +"824450": installDir: Blockchain Tycoon launch: - config: @@ -379281,12 +373736,12 @@ oslist: macos executable: BlockchainTycoon.app/Contents/MacOS/BlockchainTycoon type: default -'824460': +"824460": installDir: HELLFRONT HONEYMOON launch: - executable: HELLFRONT.exe type: none -'824470': +"824470": installDir: My Maid Girlfriend launch: - config: @@ -379297,18 +373752,18 @@ oslist: windows executable: My Maid Girlfriend.exe type: none -'824520': +"824520": installDir: MyGame launch: - config: oslist: windows executable: Nobody Knows.exe type: default -'824550': +"824550": installDir: SDGundamBA launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SDGundamBA.exe nameLocalized: @@ -379316,22 +373771,22 @@ koreana: SD건담 배틀 얼라이언스 schinese: SD GUNDAM 激斗同盟 tchinese: SD GUNDAM 激鬥同盟 -'824570': +"824570": installDir: Kine launch: - executable: Kine.exe type: none -'824580': +"824580": installDir: The Last Tower launch: - executable: game.exe type: none -'824600': +"824600": installDir: HROT launch: - executable: HROT.exe type: none -'824620': +"824620": installDir: Jolly Battle launch: - config: @@ -379339,12 +373794,12 @@ executable: jb.exe type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: Jb.x86_64 type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: Jb.x86 type: none @@ -379352,17 +373807,17 @@ oslist: macos executable: Jb.app type: none -'824660': {} -'824710': {} -'824720': +"824660": {} +"824710": {} +"824720": installDir: Pure Rock Crawling launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: PureRockCrawling.exe type: default -'824760': +"824760": installDir: Deathtrap Dungeon Trilogy launch: - config: @@ -379373,12 +373828,12 @@ oslist: macos executable: ff2.app type: default -'824770': +"824770": installDir: Labirinto 2 launch: - executable: labirinto2.exe type: none -'824830': +"824830": installDir: Corpse Party Blood Drive launch: - config: @@ -379387,8 +373842,8 @@ type: default nameLocalized: japanese: コープスパーティー BLOOD DRIVE -'824840': {} -'824850': +"824840": {} +"824850": installDir: Some Distant Memory launch: - config: @@ -379399,14 +373854,14 @@ oslist: macos executable: SDM.app/Contents/MacOS/SDM type: default -'824880': +"824880": installDir: Charlotte launch: - config: oslist: windows executable: YWP_working.exe type: none -'824900': +"824900": installDir: Fallen Empires launch: - config: @@ -379417,14 +373872,14 @@ oslist: macos executable: Fallen_Empires_alpha.app type: default -'825000': +"825000": installDir: Temptation launch: - config: oslist: windows executable: Temptation.exe type: default -'825060': +"825060": installDir: Watch Over Christmas launch: - config: @@ -379439,36 +373894,36 @@ oslist: linux executable: start type: default -'825080': +"825080": installDir: Dragonward launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows executable: Dragonward.exe type: default - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: betakey: linuxbeta oslist: linux executable: Dragonward type: none -'825100': +"825100": installDir: Redshift VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: WindowsNoEditor\\VRCade\\Binaries\\Win64\\VRExpPluginExample-Win64-Shipping.exe + executable: "WindowsNoEditor\\\\VRCade\\\\Binaries\\\\Win64\\\\VRExpPluginExample-Win64-Shipping.exe" type: vr -'825110': +"825110": installDir: Space Drift Squad launch: - config: oslist: windows executable: SpaceDriftSquad.exe type: default -'825170': +"825170": installDir: Porcuball launch: - config: @@ -379477,39 +373932,39 @@ type: default - config: oslist: macos - executable: Porcuball.app\\Contents\\MacOS\\Porcuball + executable: "Porcuball.app\\\\Contents\\\\MacOS\\\\Porcuball" type: default - config: oslist: linux executable: Porcuball.x86 type: default -'825190': +"825190": installDir: MisBits launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: CRAD.exe type: default -'825210': +"825210": installDir: Donut Shop launch: - config: oslist: windows executable: Donut Shop Final 3.exe type: default -'825240': +"825240": installDir: Elude launch: - config: oslist: macos - executable: Elude.app\\Contents\\MacOS\\Elude + executable: "Elude.app\\\\Contents\\\\MacOS\\\\Elude" type: default - config: oslist: windows executable: Elude.exe type: default -'825300': +"825300": installDir: To Trust an Incubus launch: - config: @@ -379520,21 +373975,21 @@ - config: oslist: macos description: Launch - executable: ToTrustAnIncubus.app\\Contents\\MacOS\\ToTrustAnIncubus + executable: "ToTrustAnIncubus.app\\\\Contents\\\\MacOS\\\\ToTrustAnIncubus" type: none - config: oslist: linux description: Launch executable: ToTrustAnIncubus.sh type: none -'825310': +"825310": installDir: Dude Simulator 2 launch: - config: oslist: windows executable: DudeSimulator2.exe type: default -'825320': +"825320": installDir: CyberRebeat -The Fifth Domain of Warfare- launch: - config: @@ -379543,9 +373998,9 @@ type: none - config: oslist: macos - executable: CyberRebeat.app\\Contents\\MacOS\\CyberRebeat + executable: "CyberRebeat.app\\\\Contents\\\\MacOS\\\\CyberRebeat" type: none -'825350': +"825350": installDir: Downhill Deceits launch: - config: @@ -379560,7 +374015,7 @@ oslist: linux executable: Downhill Deceits.x86 type: none -'825370': +"825370": installDir: A Bloody Party launch: - config: @@ -379575,28 +374030,28 @@ oslist: linux executable: A Bloody Party.sh type: default -'825380': +"825380": installDir: 强军 launch: - executable: QiangJun.exe type: none -'825410': {} -'825450': +"825410": {} +"825450": installDir: Type launch: - config: oslist: windows - executable: windows_content\\Typer.exe + executable: "windows_content\\\\Typer.exe" type: default -'825480': +"825480": installDir: MyGame launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: nw.exe type: default -'825490': +"825490": installDir: Crazy Science Long Run launch: - config: @@ -379605,22 +374060,22 @@ type: default - config: oslist: macos - executable: Crazy Science Long Run.app\\Contents\\MacOS\\Crazy Science Long Run + executable: "Crazy Science Long Run.app\\\\Contents\\\\MacOS\\\\Crazy Science Long Run" type: default -'825500': +"825500": installDir: DeadGroundArena launch: - arguments: PlatformService=Steam config: oslist: windows - executable: DeadGroundZ\\Binaries\\Win64\\DeadGroundZ-Win64-Shipping.exe + executable: "DeadGroundZ\\\\Binaries\\\\Win64\\\\DeadGroundZ-Win64-Shipping.exe" type: vr - arguments: PlatformService=Steam config: oslist: windows - executable: DeadGroundZ\\Binaries\\Win64\\DeadGroundZ-Win64-Shipping.exe + executable: "DeadGroundZ\\\\Binaries\\\\Win64\\\\DeadGroundZ-Win64-Shipping.exe" type: othervr -'825550': +"825550": installDir: BlueberryNOVA launch: - config: @@ -379635,42 +374090,42 @@ oslist: macos executable: BlueberryNOVA.app type: none -'825580': +"825580": installDir: Grotoro launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Grotoro.exe type: default -'825600': {} -'825610': - installDir: Viking's drakkars +"825600": {} +"825610": + installDir: "Viking's drakkars" launch: - config: oslist: windows executable: game.exe type: none -'825620': +"825620": installDir: MINDgame launch: - executable: mindgame.exe type: none -'825630': +"825630": installDir: STEINS;GATE 0 launch: - config: oslist: windows executable: boot.bat type: default -'825730': +"825730": installDir: Tzar launch: - config: oslist: windows executable: Tzar.exe type: none -'825930': +"825930": installDir: Royal Battleships launch: - config: @@ -379679,13 +374134,13 @@ type: none - config: oslist: macos - executable: Royal Battleships.app\\Contents\\MacOS\\Royal Battleships + executable: "Royal Battleships.app\\\\Contents\\\\MacOS\\\\Royal Battleships" type: none - config: oslist: linux executable: Royal Battleships.x86 type: none -'825970': +"825970": installDir: The Mystery of Devils House launch: - config: @@ -379696,26 +374151,26 @@ oslist: linux executable: TheMysteryofDevilsHouse type: default -'826000': +"826000": installDir: Masked Forces 3 launch: - config: oslist: windows executable: MaskedForces3.exe type: none -'826010': +"826010": installDir: JQ chemistry launch: - executable: JQchemistry.exe type: none -'826020': +"826020": installDir: Zombie Teacher launch: - config: oslist: windows executable: Zombie Teacher 1.6.exe type: default -'826030': +"826030": installDir: BrainPower launch: - config: @@ -379730,7 +374185,7 @@ oslist: linux executable: BrainPower.x86 type: none -'826040': +"826040": installDir: Sacred Stones launch: - config: @@ -379739,13 +374194,13 @@ type: none - config: oslist: macos - executable: SacredStones.app\\Contents\\MacOS\\Mac_Runner + executable: "SacredStones.app\\\\Contents\\\\MacOS\\\\Mac_Runner" type: default - config: oslist: linux executable: Sacred_Stones_2 type: default -'826050': +"826050": installDir: Chime Sharp Game Composer Edition launch: - config: @@ -379758,21 +374213,21 @@ description: Launch executable: ChimeSharpGCE.app type: none - - arguments: '-force-opengl' + - arguments: "-force-opengl" config: oslist: linux description: Launch executable: ChimeSharpGCE.x86 type: none -'826100': +"826100": installDir: Find someone else launch: - config: oslist: windows executable: Find_someone_else.exe type: default -'826130': {} -'826160': +"826130": {} +"826160": installDir: ButcherBoy launch: - config: @@ -379787,21 +374242,21 @@ oslist: linux executable: ButcherBoy.x86 type: none -'826170': +"826170": installDir: Laser Ball launch: - config: oslist: windows executable: Laser Ball.exe type: default -'826180': +"826180": installDir: EONIA launch: - config: oslist: windows executable: EONIA alpha.exe type: none -'826230': +"826230": installDir: CONCLUSE launch: - config: @@ -379810,65 +374265,65 @@ type: default - config: oslist: macos - executable: Mac.app\\Contents\\MacOS\\Mac + executable: "Mac.app\\\\Contents\\\\MacOS\\\\Mac" type: default -'826300': +"826300": installDir: Monochromaniacs launch: - config: oslist: windows executable: Monochromaniacs.exe type: none -'826370': - installDir: Spirits of Mystery The Silver Arrow Collector's Edition +"826370": + installDir: "Spirits of Mystery The Silver Arrow Collector's Edition" launch: - config: oslist: windows executable: SpiritsOfMystery_TheSilverArrow_CE.exe type: default -'826380': - installDir: Dark Canvas A Murder Exposed Collector's Edition +"826380": + installDir: "Dark Canvas A Murder Exposed Collector's Edition" launch: - config: oslist: windows executable: DarkCanvas_MurderExposed_CE.exe type: default -'826390': - installDir: Haunted Manor Painted Beauties Collector's Edition +"826390": + installDir: "Haunted Manor Painted Beauties Collector's Edition" launch: - config: oslist: windows executable: HauntedManor_PaintedBeautiesCE.exe type: default -'826420': - installDir: Dark Romance Heart of the Beast Collector's Edition +"826420": + installDir: "Dark Romance Heart of the Beast Collector's Edition" launch: - config: oslist: windows executable: DarkRomance_HeartOfTheBeast_CE.exe type: default -'826430': - installDir: Twilight Phenomena The Incredible Show Collector's Edition +"826430": + installDir: "Twilight Phenomena The Incredible Show Collector's Edition" launch: - config: oslist: windows executable: TwilightPhenomena_The_Incredible_Show_CE.exe type: default -'826440': - installDir: Sable Maze Forbidden Garden Collector's Edition +"826440": + installDir: "Sable Maze Forbidden Garden Collector's Edition" launch: - config: oslist: windows executable: SableMaze_ForbiddenGarden_CE.exe type: default -'826450': - installDir: Paws 'n Claws +"826450": + installDir: "Paws 'n Claws" launch: - config: oslist: windows executable: PawsNClaws5.exe type: vr -'826460': +"826460": installDir: The Road to Hades launch: - config: @@ -379880,26 +374335,26 @@ description: VR_MODE executable: TheRoadToHades.exe type: vr -'826480': +"826480": installDir: VRBenchMarkKanojo launch: - executable: VRBenchMarkKanojo.exe type: vr - executable: VRBenchMarkKanojo.exe type: othervr -'826540': +"826540": installDir: Audio Trip launch: - config: oslist: windows executable: AudioTrip.exe type: vr -'826550': +"826550": installDir: Golf Cart Drive launch: - executable: golf_cart_drive.exe type: default -'826580': +"826580": installDir: Mervin and the Wicked Station launch: - config: @@ -379908,10 +374363,10 @@ type: default - config: oslist: macos - executable: Mervin and the Wicked Station.app\\Contents\\MacOS\\Mervin and the Wicked Station + executable: "Mervin and the Wicked Station.app\\\\Contents\\\\MacOS\\\\Mervin and the Wicked Station" type: default -'826590': {} -'826600': +"826590": {} +"826600": installDir: ImNotaMonster launch: - config: @@ -379923,157 +374378,157 @@ oslist: macos executable: ImNotAMonster.app type: default -'826610': {} -'826630': +"826610": {} +"826630": installDir: Iron Harvest launch: - config: betakey: default - osarch: '64' + osarch: "64" oslist: windows executable: release/IronHarvest.exe type: default - - arguments: '-debug dev' + - arguments: "-debug dev" config: betakey: local - osarch: '64' + osarch: "64" oslist: windows description: Development Mode executable: development/IronHarvest.exe type: option1 - config: betakey: local - osarch: '64' + osarch: "64" oslist: windows executable: release/IronHarvest.exe type: default - config: betakey: internal_nightly - osarch: '64' + osarch: "64" oslist: windows executable: release/IronHarvest.exe type: default - config: betakey: internal_stable - osarch: '64' + osarch: "64" oslist: windows executable: release/IronHarvest.exe type: default - config: betakey: internal_staging - osarch: '64' + osarch: "64" oslist: windows executable: release/IronHarvest.exe type: default - - arguments: '-debug dev -config \\\\ih\\DATA\\general\\gamedesign\\__config_dev' + - arguments: "-debug dev -config \\\\\\\\ih\\\\DATA\\\\general\\\\gamedesign\\\\__config_dev" config: betakey: local - osarch: '64' + osarch: "64" oslist: windows description: Local Config Mode executable: release/IronHarvest.exe type: option2 - - arguments: '-kiosk' + - arguments: "-kiosk" config: betakey: external_kiosk_only - osarch: '64' + osarch: "64" oslist: windows executable: release/IronHarvest.exe type: option1 - - arguments: '-kiosk' + - arguments: "-kiosk" config: betakey: kiosk_2019 - osarch: '64' + osarch: "64" oslist: windows executable: release/IronHarvest.exe type: option1 -'826660': +"826660": installDir: Rosette and Words launch: - config: oslist: windows executable: Rosette_and_Words.exe type: default -'826740': +"826740": installDir: riseoftheslime launch: - config: oslist: windows executable: riseoftheslime.exe type: default -'826810': +"826810": installDir: Floor By Floor launch: - config: oslist: windows executable: Floor By Floor.exe type: default -'826930': +"826930": installDir: The Capture Worlds launch: - config: oslist: windows executable: TheCaptureWorlds.exe type: default -'826940': +"826940": installDir: Maid of Sker launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Maid of Sker.exe type: default -'827000': +"827000": installDir: CK_RageOfWar launch: - config: oslist: windows executable: Celtic kings Launcher.exe type: default -'827050': +"827050": installDir: Rising Kingdoms launch: - config: oslist: windows executable: RKLauncher.exe type: default -'827100': +"827100": installDir: Aladin & the Enchanted Lamp launch: - config: oslist: windows executable: Aladin.exe type: default -'827110': - installDir: The Three Musketeers - D'Artagnan & the 12 Jewels +"827110": + installDir: "The Three Musketeers - D'Artagnan & the 12 Jewels" launch: - config: oslist: windows executable: 3Musketeers.exe type: default -'827120': - installDir: Les Misérables Cosette's Fate +"827120": + installDir: "Les Misérables Cosette's Fate" launch: - config: oslist: windows executable: LesMiserables.exe type: default -'827130': +"827130": installDir: Les Misérables Jean Valjean launch: - config: oslist: windows executable: LesMiserables2.exe type: default -'827170': +"827170": installDir: FlickSync - Mad Hatter VR launch: - config: oslist: windows executable: flicksync.exe type: vr -'827210': {} -'827220': +"827210": {} +"827220": installDir: Overclocked The Aclockalypse launch: - config: @@ -380086,12 +374541,12 @@ description: Launch executable: Overclocked.app type: default -'827270': +"827270": installDir: Bounty Hunter Space Detective launch: - executable: game.exe type: none -'827290': +"827290": installDir: Secret Little Haven launch: - config: @@ -380106,104 +374561,104 @@ oslist: linux executable: Secret Little Haven.x86 type: default -'827330': +"827330": installDir: SkyDriftInfinity launch: - config: oslist: windows executable: SkydriftInfinity.exe type: default -'827360': {} -'827410': +"827360": {} +"827410": installDir: Luminous Combat launch: - executable: LuminousCombat.exe type: default -'827420': +"827420": installDir: Coin Pusher launch: - executable: Coin Pusher.exe type: none -'827450': +"827450": installDir: InkSplosion launch: - config: oslist: windows executable: InkSplosion.exe type: default -'827460': - installDir: TETRA's Escape +"827460": + installDir: "TETRA's Escape" launch: - config: oslist: windows executable: TETRAsEscape.exe type: default -'827520': +"827520": installDir: UberFlight launch: - config: oslist: windows executable: UberFlight-dev.exe type: default -'827530': +"827530": installDir: Current launch: - executable: Current/Project_Current.exe type: default -'827540': +"827540": installDir: A Penny For Some Motivation launch: - config: oslist: windows executable: Build_final_2_w_ach_steamManager.exe type: default -'827560': +"827560": installDir: Arena of the Gods launch: - - arguments: '-fullscreen' + - arguments: "-fullscreen" config: oslist: windows executable: ArenaoftheGods_R1.exe type: default -'827580': {} -'827590': +"827580": {} +"827590": installDir: Nova Wing II launch: - config: oslist: windows executable: Nova WingII.exe type: default -'827610': +"827610": installDir: Dead End Job launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: DeadEndJob.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: DeadEndJob.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: DeadEndJob.x86_64 type: default -'827640': +"827640": installDir: Trash Story launch: - executable: TrashStory.exe type: none -'827670': {} -'827770': +"827670": {} +"827770": installDir: Pathosis launch: - executable: ProjectAcylis.exe type: default -'827780': - installDir: Margot's Word Brain +"827780": + installDir: "Margot's Word Brain" launch: - config: oslist: windows @@ -380215,54 +374670,54 @@ description: Manual executable: Manual.pdf type: manual -'827830': +"827830": installDir: Agony launch: - config: oslist: windows executable: Agony.exe type: none -'827860': +"827860": installDir: Destined launch: - config: oslist: windows executable: Destined.exe type: default -'827880': +"827880": installDir: The Endless Mission launch: - - arguments: '-prod' + - arguments: "-prod" config: oslist: windows executable: Endless.exe type: default - - arguments: '-dev' + - arguments: "-dev" config: betakey: nightly ugc-demo release-candidate localization multiplayer previous feature feature2 oslist: windows description: in Development executable: Endless.exe type: option1 - - arguments: '-prod' + - arguments: "-prod" config: oslist: macos executable: Endless.app type: default - - arguments: '-dev' + - arguments: "-dev" config: betakey: nightly ugc-demo release-candidate localization previous feature feature2 oslist: macos description: in Development executable: Endless.app type: option1 -'827890': {} -'827900': +"827890": {} +"827900": installDir: Bounty Hunter Stampede launch: - executable: game.exe type: none -'827920': +"827920": installDir: Bounce launch: - config: @@ -380277,53 +374732,53 @@ oslist: linux executable: Bounce.x86 type: none -'827930': +"827930": installDir: Strive launch: - config: oslist: windows executable: Strive.exe type: none -'827940': +"827940": installDir: MarvInc launch: - - arguments: '--steam' + - arguments: "--steam" config: oslist: windows description: Normal executable: marvellous.exe type: default - - arguments: '--steam' + - arguments: "--steam" config: oslist: macos executable: Marvellous_Inc.app/Contents/MacOS/love type: default - - arguments: '--steam' + - arguments: "--steam" config: - osarch: '64' + osarch: "64" oslist: linux executable: Marvellous_Inc-x86_64.AppImage type: default -'827950': +"827950": installDir: Inzo launch: - config: oslist: windows executable: Game.exe type: default -'828030': +"828030": installDir: One Ping Only launch: - config: oslist: windows executable: OnePingOnly.exe type: default -'828050': +"828050": installDir: The Mirror Lied launch: - config: oslist: windows - executable: The Mirror Lied\\The Mirror Lied.exe + executable: "The Mirror Lied\\\\The Mirror Lied.exe" type: default workingdir: The Mirror Lied - config: @@ -380331,16 +374786,16 @@ executable: TheMirrorLied.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: TheMirrorLied.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: TheMirrorLied.amd64 type: default -'828070': +"828070": installDir: Treasure Hunter Claire launch: - config: @@ -380351,29 +374806,29 @@ japanese: トレジャーハンタークレア schinese: 宝藏猎人克莱儿 tchinese: 寶藏獵人克萊兒 -'828080': +"828080": installDir: MyGame launch: - config: oslist: windows executable: Pong like.exe type: default -'828100': {} -'828150': +"828100": {} +"828150": installDir: WIN THE GAME! launch: - config: oslist: windows executable: WIN THE GAME!.exe type: default -'828160': +"828160": installDir: rossprogrammproduct launch: - config: oslist: windows executable: XTown3Dgame.exe type: default -'828170': +"828170": installDir: Pivross launch: - config: @@ -380384,59 +374839,59 @@ - config: oslist: macos description: Pivross - executable: Pivross.app\\Contents\\MacOS\\Pivross + executable: "Pivross.app\\\\Contents\\\\MacOS\\\\Pivross" type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Pivross.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Pivross.x86_64 type: default -'828220': {} -'828230': +"828220": {} +"828230": installDir: Dungeons of the dead launch: - config: oslist: windows executable: game.exe type: none -'828240': +"828240": installDir: HOST launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: HOST.exe type: vr -'828250': +"828250": installDir: Stargazer program launch: - config: oslist: windows executable: stargazer_program.exe type: default -'828270': +"828270": installDir: Jelly Bomber launch: - config: oslist: windows executable: Jelly Bomber.exe type: default -'828290': {} -'828320': +"828290": {} +"828320": installDir: Grid Clash VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Grid Clash VR.exe type: vr -'828350': +"828350": installDir: Tomb Towers launch: - config: @@ -380448,28 +374903,28 @@ executable: Tomb Towers.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Tomb Towers.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Tomb Towers.x86_64 type: default -'828380': +"828380": installDir: The Death Mark Vol.1 launch: - config: oslist: windows executable: DeathMark.exe type: none -'828410': +"828410": installDir: OniBushi VR launch: - executable: OniBushi VR.exe type: vr -'828420': +"828420": installDir: Six Second Slam launch: - config: @@ -380487,38 +374942,38 @@ description: Launch executable: Six Second Slam.x86 type: default -'828440': +"828440": installDir: The other side of the screen launch: - config: oslist: windows executable: The other side of the screen.exe type: none -'828460': +"828460": installDir: Corpse Mob launch: - config: oslist: windows executable: corpsemob.exe type: default -'828470': {} -'828480': +"828470": {} +"828480": installDir: MinigolfParkVR launch: - config: oslist: windows executable: MinigolfParkVR.exe type: vr -'828510': {} -'828520': +"828510": {} +"828520": installDir: Metis One launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: MetisOne.exe type: default -'828540': +"828540": installDir: Game of the forgotten Gods launch: - config: @@ -380526,40 +374981,40 @@ description: Launch executable: GameOfFogottenGod.exe type: none -'828550': +"828550": installDir: Trivia Vault Hockey Trivia launch: - config: oslist: windows executable: Trivia Vault Hockey Trivia.exe type: default -'828580': +"828580": installDir: NEKO-NIN exHeart 2 launch: - config: oslist: windows executable: nekonin2.exe type: default -'828590': +"828590": installDir: Super Weekend Mode - EXTEND launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: Windows_Build\\Super_Weekend_Mode_Windows.exe + executable: "Windows_Build\\\\Super_Weekend_Mode_Windows.exe" type: default - config: oslist: macos - executable: Super_Weekend_Mode_Mac.app\\Contents\\MacOS\\Super_Weekend_Mode_Mac + executable: "Super_Weekend_Mode_Mac.app\\\\Contents\\\\MacOS\\\\Super_Weekend_Mode_Mac" type: default -'828600': +"828600": installDir: Mama Farm launch: - config: oslist: windows executable: MamaFarm.exe type: default -'828660': +"828660": installDir: War Of The Zombie launch: - config: @@ -380568,30 +375023,30 @@ type: default - config: oslist: macos - executable: WarOfTheZombie.app\\Contents\\MacOS\\WarOfTheZombie + executable: "WarOfTheZombie.app\\\\Contents\\\\MacOS\\\\WarOfTheZombie" type: default -'828680': - installDir: Berserker's Descent +"828680": + installDir: "Berserker's Descent" launch: - config: oslist: windows - executable: Berserker's Descent.exe + executable: "Berserker's Descent.exe" type: default -'828710': +"828710": installDir: Laws of Machine launch: - config: oslist: windows executable: LawsOfMachine.exe type: default -'828730': +"828730": installDir: Dumb As Wizards launch: - config: oslist: windows executable: DumbAsWizards.exe type: default -'828740': +"828740": installDir: Tales of the Neon Sea launch: - config: @@ -380601,7 +375056,7 @@ nameLocalized: schinese: 迷雾侦探 tchinese: 迷霧偵探 -'828760': +"828760": installDir: PS_RAINBOW_HOLLOW launch: - config: @@ -380612,7 +375067,7 @@ oslist: linux executable: Paper_Shakespeare_Hollow.sh type: default -'828770': +"828770": installDir: Turbo Soccer VR launch: - config: @@ -380621,9 +375076,9 @@ type: vr - config: oslist: windows - executable: TurboSoccerVR_Oculus\\TurboSoccerVR_Oculus.exe + executable: "TurboSoccerVR_Oculus\\\\TurboSoccerVR_Oculus.exe" type: othervr -'828860': +"828860": installDir: The Stroke of Midnight launch: - config: @@ -380636,9 +375091,9 @@ type: none - config: oslist: macos - executable: The Stroke of Midnight.app\\Contents\\MacOS\\The Stroke of Midnight + executable: "The Stroke of Midnight.app\\\\Contents\\\\MacOS\\\\The Stroke of Midnight" type: none -'828890': +"828890": installDir: My Golf launch: - config: @@ -380653,7 +375108,7 @@ oslist: linux executable: MyGolf.x86 type: none -'828900': +"828900": installDir: The Stillness of the Wind launch: - config: @@ -380664,14 +375119,14 @@ oslist: windows executable: StillnessWin.exe type: default -'828910': +"828910": installDir: aMAZE Frozen launch: - config: oslist: windows executable: aMAZE Frozen.exe type: default -'828950': +"828950": installDir: Howlville The Dark Past launch: - config: @@ -380686,12 +375141,12 @@ oslist: linux executable: Game.x86 type: default -'828960': +"828960": installDir: Blonde Driver launch: - executable: car kit.exe type: default -'828970': +"828970": installDir: Hit The Hive launch: - config: @@ -380699,7 +375154,7 @@ description: Launch Hit The Hive executable: HitTheHive.exe type: vr -'829040': +"829040": installDir: Light Borrower launch: - config: @@ -380710,17 +375165,17 @@ oslist: macos executable: LBLaunchBuildMac.app type: default -'829050': {} -'829080': +"829050": {} +"829080": installDir: Burst Into launch: - executable: Burst Into.exe type: default -'829110': +"829110": installDir: LEGO DC Super-Villains launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: LEGO DC Super-villains_DX11.exe @@ -380729,8 +375184,8 @@ oslist: macos executable: LEGO DC Super-Villains.app type: default -'829120': {} -'829210': +"829120": {} +"829210": installDir: AIdol launch: - config: @@ -380748,7 +375203,7 @@ description: Launch executable: AIdol.app type: none -'829250': +"829250": installDir: Craft & Dungeon launch: - config: @@ -380763,12 +375218,12 @@ oslist: linux executable: CraftAndDungeon_linux.x86 type: none -'829260': +"829260": installDir: Morning Never Comes launch: - executable: Morning Never Comes.exe type: none -'829280': +"829280": installDir: Kaze and the Wild Masks launch: - config: @@ -380776,21 +375231,21 @@ description: Launch the Game executable: Kaze and the Wild Masks.exe type: default -'829300': +"829300": installDir: bomber-un launch: - config: oslist: windows executable: Bomber-un.exe type: config -'829370': +"829370": installDir: Nicky launch: - config: oslist: windows executable: nicky.exe type: default -'829390': +"829390": installDir: Kitten Life Simulator launch: - config: @@ -380801,14 +375256,14 @@ oslist: macos executable: Kitten Life Simulator.app/Contents/MacOS/Kitten Life Simulator type: none -'829410': +"829410": installDir: Project Myriad launch: - config: oslist: windows executable: ProjectMyriad.exe type: default -'829420': +"829420": installDir: Fun Hospital launch: - config: @@ -380819,14 +375274,14 @@ oslist: macos executable: FunHospital.app/Contents/MacOS/FunHospital type: default -'829490': +"829490": installDir: Firebird - Steam version launch: - config: oslist: windows executable: Firebird.exe type: default -'829540': +"829540": installDir: Viki Spotter Shopping launch: - config: @@ -380835,13 +375290,13 @@ type: none - config: oslist: macos - executable: Viki Spotter - Shopping.app\\Contents\\MacOS\\Viki Spotter - Shopping + executable: "Viki Spotter - Shopping.app\\\\Contents\\\\MacOS\\\\Viki Spotter - Shopping" type: none - config: oslist: linux executable: Viki Spotter - Shopping.x86 type: none -'829560': +"829560": installDir: Katie launch: - config: @@ -380853,12 +375308,12 @@ description: Mac Launch executable: Katie.app type: none - - arguments: '-vr' + - arguments: "-vr" config: oslist: windows executable: Katie.exe type: vr -'829590': +"829590": installDir: CryoFall launch: - config: @@ -380867,29 +375322,29 @@ type: default - config: oslist: windows - ownsdlc: '1178321' + ownsdlc: "1178321" description: Supporter Pack Content executable: open_bonus_win.bat type: none nameLocalized: schinese: 末日觉醒 CryoFall tchinese: 嚴寒之秋 CryoFall -'829600': {} -'829610': +"829600": {} +"829610": installDir: AliceInVR launch: - config: oslist: windows executable: AliceInVR.exe type: othervr -'829630': +"829630": installDir: Skat Stammtisch launch: - config: oslist: windows executable: skat.exe type: default -'829660': +"829660": installDir: No Time to Relax launch: - config: @@ -380898,9 +375353,9 @@ type: default - config: oslist: macos - executable: No Time to Relax.app\\Contents\\MacOS\\No Time to Relax + executable: "No Time to Relax.app\\\\Contents\\\\MacOS\\\\No Time to Relax" type: default -'829720': +"829720": installDir: The Nature launch: - config: @@ -380911,19 +375366,19 @@ oslist: linux executable: runTN.sh type: none -'829750': +"829750": installDir: Robots Attack On Vapeland launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: RobotsVap.exe type: default -'829760': +"829760": installDir: Synthrally launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Play Synthrally executable: synthrally.exe @@ -380934,30 +375389,30 @@ executable: synthrally.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: synthrally.x86_64 type: default -'829780': - installDir: Baby's on fire +"829780": + installDir: "Baby's on fire" launch: - executable: babys.exe type: default -'829940': +"829940": installDir: Russian World launch: - config: oslist: windows executable: Russian World.exe type: default -'830360': +"830360": installDir: Platform Challenge launch: - config: oslist: windows executable: game.exe type: default -'830370': +"830370": installDir: Monster Crown launch: - config: @@ -380972,29 +375427,29 @@ oslist: macos executable: monstercrown.app type: default -'830380': {} -'830390': +"830380": {} +"830390": installDir: VadineBiteMan launch: - config: - osarch: '64' + osarch: "64" oslist: windows - description: 'Launch Vadine: Bite-Man' + description: "Launch Vadine: Bite-Man" executable: game.exe type: default - config: oslist: macos - description: 'Launch Vadine: Bite-Man' - executable: Vadine_Bite_Man.app\\Contents\\MacOS\\Vadine_Bite_Man + description: "Launch Vadine: Bite-Man" + executable: "Vadine_Bite_Man.app\\\\Contents\\\\MacOS\\\\Vadine_Bite_Man" type: default -'830410': +"830410": installDir: Nogalious launch: - config: oslist: windows executable: Nogalious.exe type: default -'830430': +"830430": installDir: Drowning launch: - config: @@ -381008,42 +375463,42 @@ executable: Drowning.app type: none - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: Drowning.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Drowning.x86_64 type: none -'830470': +"830470": installDir: MAZEBOT launch: - config: oslist: windows executable: MazeBot.exe type: default -'830490': +"830490": installDir: Achievement Lurker You are going to have to work for these nuts launch: - executable: Game.exe type: none -'830500': +"830500": installDir: The Blobs Fight launch: - config: oslist: windows executable: TheBlobsFight.exe type: default -'830510': +"830510": installDir: Bounty Hunter Ocean Diver launch: - executable: game.exe type: none -'830520': +"830520": installDir: Finger Jets Phase Challenge launch: - config: @@ -381052,29 +375507,29 @@ type: default - config: oslist: macos - executable: fingerjets.app\\Contents\\MacOS\\fingerjets + executable: "fingerjets.app\\\\Contents\\\\MacOS\\\\fingerjets" type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: fingerjets.x86_64 type: default - - arguments: ' -show-screen-selector' + - arguments: " -show-screen-selector" config: oslist: windows executable: fingerjets.exe type: config - - arguments: ' -show-screen-selector' + - arguments: " -show-screen-selector" config: oslist: linux executable: fingerjets.x86_64 type: config - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" config: oslist: macos - executable: fingerjets.app\\Contents\\MacOS\\fingerjets + executable: "fingerjets.app\\\\Contents\\\\MacOS\\\\fingerjets" type: config -'830540': +"830540": installDir: Motocross Chasing the Dream launch: - config: @@ -381085,16 +375540,16 @@ oslist: linux executable: mctd.x86_64 type: default -'830560': {} -'830580': +"830560": {} +"830580": installDir: BattleBeasts launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: BB.exe type: default -'830590': +"830590": installDir: Holy Potatoes! A Spy Story! launch: - config: @@ -381106,66 +375561,64 @@ executable: HPSPY.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: HPSPY.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: HPSPY.x86 type: default -'830620': +"830620": installDir: Storm Of Jigsaw Puzzles launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: StormOfJigsawPuzzles.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: StormOfJigsawPuzzles.exe type: default -'830630': +"830630": installDir: Existential Kitty Cat RPG launch: - config: oslist: windows executable: Game.exe type: default -'830640': +"830640": installDir: DayZ Tools launch: - description: DayZ Tools Launcher - executable: Bin\\Launcher\\DayZToolsLauncher.exe + executable: "Bin\\\\Launcher\\\\DayZToolsLauncher.exe" type: default - workingdir: Bin\\Launcher\\ + workingdir: "Bin\\\\Launcher\\\\" - description: Launch Workbench - executable: Bin\\Workbench\\workbenchApp.exe + executable: "Bin\\\\Workbench\\\\workbenchApp.exe" type: none - workingdir: Bin\\Workbench\\ - - arguments: \"%installdir%\" + workingdir: "Bin\\\\Workbench\\\\" + - arguments: "\\\"%installdir%\\\"" description: Open DayZ Tools directory - description_loc: - english: Open DayZ Tools directory - executable: Bin\\Launcher\\launcher.bat -'830710': + executable: "Bin\\\\Launcher\\\\launcher.bat" +"830710": installDir: The Eerie Inn launch: - config: oslist: windows executable: TheEerieInn.exe type: default -'830750': +"830750": installDir: PokerSimulator launch: - config: oslist: windows executable: poker.exe type: default -'830810': +"830810": installDir: DeathGamePlus launch: - config: @@ -381177,74 +375630,74 @@ executable: DeathGame.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: DeathGame.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: DeathGame.x86_64 type: default -'830820': - installDir: Jets'n'Guns 2 +"830820": + installDir: "Jets'n'Guns 2" launch: - config: oslist: windows - description: Normal Jets'n'Guns 2 launch + description: "Normal Jets'n'Guns 2 launch" executable: JnG2.exe type: default -'830890': +"830890": installDir: Infinite Vector launch: - executable: InfiniteVector.exe type: none -'830980': +"830980": installDir: Doodle Date launch: - config: oslist: windows executable: Doodle_Date.exe type: default -'8310': +"8310": installDir: Bone launch: - executable: bone1v20.exe -'831050': +"831050": installDir: Dolmen launch: - config: oslist: windows executable: Dolmen.exe type: none -'831060': +"831060": installDir: Black Jack story launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: BlackJack 64-bit\\Black Jack 64-bit.exe + executable: "BlackJack 64-bit\\\\Black Jack 64-bit.exe" type: default - config: - osarch: '32' + osarch: "32" oslist: windows - executable: BlackJack 32-bit\\Black Jack 32-bit.exe + executable: "BlackJack 32-bit\\\\Black Jack 32-bit.exe" type: default - config: oslist: macos executable: Black Jack Mac OS.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Black Jack linux/Black Jack story.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Black Jack linux/Black Jack story.x86_64 type: default -'831070': +"831070": installDir: The Cabinets of Doctor Arcana launch: - config: @@ -381255,10 +375708,10 @@ oslist: macos executable: The Cabinets of Doctor Arcana.app type: default -'831090': +"831090": installDir: OSPath launch: - - arguments: '-cp OSPath.jar game.App' + - arguments: "-cp OSPath.jar game.App" config: oslist: windows executable: jre/bin/javaw.exe @@ -381271,15 +375724,15 @@ oslist: linux executable: OSPath type: default -'831100': +"831100": installDir: Brother Perro launch: - config: oslist: windows - ownsdlc: 'No' + ownsdlc: "No" executable: Brother Perro.exe type: default -'831110': +"831110": installDir: Unconventional Warfare launch: - config: @@ -381287,97 +375740,95 @@ executable: Unconventional Warfare.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Unconventional Warfare.x86_64 type: default - - arguments: '-force-vulkan' + - arguments: "-force-vulkan" config: - osarch: '64' + osarch: "64" oslist: linux description: Unconventional Warfare (Vulkan) - description_loc: - english: Unconventional Warfare (Vulkan) executable: Unconventional Warfare.x86_64 type: option1 -'831120': +"831120": installDir: Space Pilgrim Academy Year 2 launch: - executable: nw.exe type: none -'831150': +"831150": installDir: Conveyor VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ConveyorVR.exe type: vr -'831180': +"831180": installDir: Pixel Beef Battle launch: - config: oslist: windows executable: Pixel Beef Battle.exe type: default -'831230': +"831230": installDir: Doors Quest Demo launch: - config: oslist: windows executable: Doors Quest Demo.exe type: default -'831250': +"831250": installDir: Maxi Pool Masters VR launch: - config: oslist: windows executable: MaxiPoolMasters.exe type: vr -'831260': +"831260": installDir: Keyboard Guitar Master launch: - config: oslist: windows executable: KeyboardGuitarMaster.exe type: default -'831350': +"831350": installDir: Hovercraft Drive launch: - executable: hovercraft_drive.exe type: default -'831450': +"831450": installDir: Kolb Antarctica Experience launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: KolbAntarctica-V1.0.065_SteamVR.exe type: vr -'831460': +"831460": installDir: VoiceActress2 launch: - config: oslist: windows executable: VoiceActress2.exe type: none -'831480': {} -'831490': +"831480": {} +"831490": installDir: Draw Near launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Non Virtual Reality executable: DrawNear.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows description: Virtual Reality executable: DrawNear.exe type: othervr -'831510': +"831510": installDir: Another Brick in Space launch: - config: @@ -381388,7 +375839,7 @@ oslist: windows executable: Another Brick in Space.exe type: default -'831520': +"831520": installDir: Jurassic City Walk launch: - config: @@ -381397,9 +375848,9 @@ type: none - config: oslist: macos - executable: Jurassic City Walk.app\\Contents\\MacOS\\Jurassic City Walk + executable: "Jurassic City Walk.app\\\\Contents\\\\MacOS\\\\Jurassic City Walk" type: none -'831530': +"831530": installDir: SRC Sprint Robot Championship launch: - config: @@ -381407,19 +375858,19 @@ description: Launch executable: SRC.exe type: default -'831540': +"831540": installDir: Norilsk launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: nw.exe type: default -'831560': +"831560": installDir: WARRIORS OROCHI 4 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: WO4.exe type: none @@ -381428,7 +375879,7 @@ koreana: 무쌍OROCHI3 schinese: WARRIORS OROCHI 4 / 無雙OROCHI 蛇魔3 tchinese: 無雙OROCHI 蛇魔3 -'831570': +"831570": installDir: Isoland launch: - config: @@ -381439,22 +375890,22 @@ oslist: macos executable: Isoland.app type: none -'831590': +"831590": installDir: VRQ_Vive_Steam launch: - config: oslist: windows executable: VRQ_Vive_Steam.exe type: vr -'831600': {} -'831650': +"831600": {} +"831650": installDir: Chronus Arc launch: - executable: ChronusArc.exe type: none nameLocalized: japanese: クロノスアーク -'831660': +"831660": installDir: monohe launch: - executable: monohe.exe @@ -381464,21 +375915,21 @@ japanese: ものべの -Happy End- schinese: 茂伸奇谈-Happy End- tchinese: 茂伸奇談-Happy End- -'831670': +"831670": installDir: SPACEHUNT launch: - config: oslist: windows executable: SPACEHUNT.exe type: none -'831680': +"831680": installDir: Hero Go launch: - config: oslist: windows executable: Launch.exe type: default -'831690': +"831690": installDir: Piano Play 3D launch: - config: @@ -381487,9 +375938,9 @@ type: none - config: oslist: macos - executable: Piano Play 3D.app\\Contents\\MacOS\\Piano Play 3D + executable: "Piano Play 3D.app\\\\Contents\\\\MacOS\\\\Piano Play 3D" type: none -'831720': +"831720": installDir: EMMA launch: - config: @@ -381500,48 +375951,48 @@ oslist: macos executable: Default Mac desktop Universal.app type: default -'831740': +"831740": installDir: Circles of hell launch: - executable: Circles of hell.exe type: none -'831770': +"831770": installDir: Zombie Derby launch: - config: oslist: windows executable: zombie_derby.exe type: default -'831790': +"831790": installDir: Geeste launch: - config: oslist: windows executable: Geeste.exe type: default -'831810': +"831810": installDir: Bane of Asphodel launch: - config: oslist: windows executable: BaneofAsphodel.exe type: default -'831900': {} -'831910': - installDir: Croc's World Construction Kit +"831900": {} +"831910": + installDir: "Croc's World Construction Kit" launch: - config: oslist: windows executable: Crocs World Construction Kit.exe type: none -'831950': +"831950": installDir: Infinite Survival launch: - config: oslist: windows executable: Infinite Survival.exe type: default -'831980': +"831980": installDir: Out of the Park Baseball 20 launch: - config: @@ -381555,40 +376006,38 @@ executable: OOTP Baseball 20.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch OOTP 20 executable: ootp20.sh type: default -'8320': +"8320": installDir: Bone 2 launch: - executable: bone2v20.exe -'832020': +"832020": installDir: BuildMSRPG launch: - config: oslist: windows description: ShooterPart - description_loc: - english: ShooterPart executable: CompleteShooter.exe type: default -'832030': {} -'832080': +"832030": {} +"832080": installDir: Back to the Moon launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: win32/storyplayer.exe type: vr - config: - osarch: '64' + osarch: "64" oslist: windows executable: win64/storyplayer.exe type: vr -'832130': +"832130": installDir: Negative World launch: - config: @@ -381597,23 +376046,23 @@ type: none - config: oslist: macos - executable: Negative World.app\\Contents\\MacOS\\Negative World + executable: "Negative World.app\\\\Contents\\\\MacOS\\\\Negative World" type: default -'832140': +"832140": installDir: Infernal Radiation launch: - config: oslist: windows executable: Infernal Radiation.exe type: default -'832320': +"832320": installDir: Mighty Switch Force! Collection launch: - config: oslist: windows executable: MSFC.exe type: default -'832360': +"832360": installDir: Hotel Magnate launch: - config: @@ -381624,69 +376073,69 @@ oslist: linux executable: Hotel Magnate.x86_64 type: default -'832370': {} -'832380': +"832370": {} +"832380": installDir: The Reign Man launch: - config: oslist: windows executable: Cards2048.exe type: default -'832420': +"832420": installDir: ICED_VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ICED_VR.exe type: vr -'832430': +"832430": installDir: SimplyTrivia launch: - executable: SimplyTrivia.exe type: default -'832460': {} -'832470': +"832460": {} +"832470": installDir: Season Up launch: - executable: SeasonUp.exe type: none -'832490': {} -'832500': {} -'832510': +"832490": {} +"832500": {} +"832510": installDir: AeroChopper launch: - config: oslist: windows executable: AeroChopperNonDemo.exe type: default -'832520': +"832520": installDir: XiYou launch: - config: oslist: windows executable: XiYou.exe type: none -'832530': +"832530": installDir: VR GAME-Brick of War launch: - config: oslist: windows executable: BrickofWar.exe type: vr -'832540': +"832540": installDir: Art of Murder - Hunt for the Puppeteer launch: - executable: Game.exe type: none -'832550': +"832550": installDir: Tetripank launch: - config: oslist: windows executable: tetripank.exe type: default -'832610': +"832610": installDir: Corrupted launch: - config: @@ -381701,7 +376150,7 @@ oslist: macos executable: Corrupted.app type: none -'832650': +"832650": installDir: Royal Adventure launch: - config: @@ -381712,7 +376161,7 @@ oslist: macos executable: RA.app type: none -'832680': +"832680": installDir: Darts and Friends launch: - config: @@ -381727,15 +376176,15 @@ oslist: linux executable: DartsAndFriends.x86 type: none -'832690': +"832690": installDir: Stonetowers launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Stonetowers.exe type: default -'832710': +"832710": installDir: The 7th Circle launch: - config: @@ -381748,14 +376197,14 @@ type: default - config: oslist: macos - executable: the7thcircle.app\\Contents\\MacOS\\nwjs + executable: "the7thcircle.app\\\\Contents\\\\MacOS\\\\nwjs" type: default -'832720': +"832720": installDir: Dungeon Brew Master launch: - - arguments: '-windowed' + - arguments: "-windowed" config: - osarch: '64' + osarch: "64" oslist: windows executable: DBM.exe type: vr @@ -381763,7 +376212,7 @@ oslist: windows executable: DBM.exe type: none -'832770': +"832770": installDir: AOF-GOLD launch: - config: @@ -381774,96 +376223,94 @@ - config: oslist: linux description: Launch - executable: ./aof-start-linux.sh + executable: "./aof-start-linux.sh" type: none - config: oslist: macos description: Launch - executable: ./aof-start-macosx.command + executable: "./aof-start-macosx.command" type: none - - arguments: '-config' + - arguments: "-config" config: oslist: windows description: Configuration executable: aof-start-windows.bat type: none - - arguments: '-config' + - arguments: "-config" config: oslist: linux description: Configuration - executable: ./aof-start-linux.sh + executable: "./aof-start-linux.sh" type: none - - arguments: '-config' + - arguments: "-config" config: oslist: macos description: Configuration - executable: ./aof-start-macosx.command + executable: "./aof-start-macosx.command" type: none - config: oslist: windows - description: 'Play Age of Fear: The Undead King GOLD (Log Console)' + description: "Play Age of Fear: The Undead King GOLD (Log Console)" executable: aof-start-windows-console.bat type: none - - arguments: '-workshop' + - arguments: "-workshop" config: oslist: windows description: Workshop Manager executable: aof-start-windows-console.bat type: none - - arguments: '-workshop' + - arguments: "-workshop" config: oslist: macos description: Workshop Manager - executable: ./aof-start-macosx.command + executable: "./aof-start-macosx.command" type: none - - arguments: '-workshop' + - arguments: "-workshop" config: oslist: linux description: Workshop Manager - executable: ./aof-start-linux.sh + executable: "./aof-start-linux.sh" type: none - config: oslist: windows - description: 'Play Age of Fear: The Undead King GOLD (Force 64bit)' - description_loc: - english: 'Play Age of Fear: The Undead King GOLD (Force 64bit)' + description: "Play Age of Fear: The Undead King GOLD (Force 64bit)" executable: aof-start-windows-64.bat type: none -'832790': {} -'832990': +"832790": {} +"832990": installDir: Apocalypse Rider launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ApocalypseRider.exe type: vr - config: - osarch: '64' + osarch: "64" oslist: windows executable: ApocalypseRider.exe type: othervr -'8330': +"8330": installDir: Telltale Games Poker launch: - executable: poker.exe -'833010': +"833010": installDir: Zombie Forest 2 launch: - config: oslist: windows executable: zf2.exe type: none -'833020': {} -'833030': +"833020": {} +"833030": installDir: Hypertrain launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: hypertrain.exe type: default -'833040': +"833040": installDir: Hiveswap Friendsim launch: - config: @@ -381878,53 +376325,51 @@ oslist: linux executable: hs-friendsim.sh type: none -'833070': +"833070": installDir: Arrowborn launch: - config: oslist: windows executable: arrowborn.exe type: vr -'833090': +"833090": installDir: Gurrah launch: - - arguments: '-vr BranchName=main' + - arguments: "-vr BranchName=main" config: betakey: default - osarch: '64' + osarch: "64" oslist: windows executable: Gurrah.exe type: vr - - arguments: '-vr BranchName=testing' + - arguments: "-vr BranchName=testing" config: betakey: testing - osarch: '64' + osarch: "64" oslist: windows description: Launch Gurrah in Testing Mode - description_loc: - english: Launch Gurrah in Testing Mode executable: Gurrah.exe type: vr - - arguments: '-vr BranchName=development' + - arguments: "-vr BranchName=development" config: betakey: development - osarch: '64' + osarch: "64" oslist: windows description: Launch Gurrah in Development Mode executable: Gurrah.exe type: vr -'833110': +"833110": installDir: SteadfastVR launch: - config: oslist: windows executable: Steadfast.exe type: vr -'833140': +"833140": installDir: Supaplex launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: Supaplex.exe type: default @@ -381933,42 +376378,42 @@ executable: Supaplex.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Supaplex.x86_64 type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: Supaplex.exe type: default -'833150': +"833150": installDir: Hungry Games Evolution launch: - config: oslist: windows executable: Hungry Fish.exe type: default -'833170': +"833170": installDir: Burned Land launch: - config: oslist: windows executable: Burned Land.exe type: none -'833180': +"833180": installDir: Spaceship Commander launch: - config: oslist: windows executable: Spaceship Commander.exe type: config -'833260': +"833260": installDir: catAnod launch: - executable: catanod.exe type: default -'833270': +"833270": installDir: Citrouille launch: - config: @@ -381983,21 +376428,21 @@ oslist: linux executable: Citrouille type: default -'833290': {} -'833300': +"833290": {} +"833300": installDir: Fantasyland launch: - config: oslist: windows executable: Fantasyland.exe type: default -'833360': +"833360": installDir: Star Valor launch: - description: Play Star Valor executable: Star Valor.exe type: none -'833370': +"833370": installDir: HexLab launch: - config: @@ -382005,7 +376450,7 @@ description: Launch executable: HexLab.exe type: none -'833380': +"833380": installDir: Downtown DarkRP launch: - config: @@ -382013,24 +376458,24 @@ description: Launch Game executable: SteamRPG.exe type: default - - arguments: '-log' + - arguments: "-log" description: Launch Server - executable: SteamRPG\\Binaries\\Win64\\DedicatedServer.exe + executable: "SteamRPG\\\\Binaries\\\\Win64\\\\DedicatedServer.exe" type: none -'833390': +"833390": installDir: En Tactico launch: - executable: EnTactico.exe type: none -'833400': +"833400": installDir: Corral launch: - config: oslist: windows executable: Corral.exe type: default -'833410': {} -'833440': +"833410": {} +"833440": installDir: Vera Swings launch: - config: @@ -382038,20 +376483,20 @@ executable: vera.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: vera.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: vera.x86_64 type: default - config: oslist: macos - executable: vera.app\\Contents\\MacOS\\vera + executable: "vera.app\\\\Contents\\\\MacOS\\\\vera" type: default -'833470': +"833470": installDir: Rabbit Jigsaw Puzzles launch: - config: @@ -382134,43 +376579,43 @@ description: Rabbit 16 executable: Rabbit 16.exe type: option1 -'833500': +"833500": installDir: Thunder Rally launch: - config: oslist: windows executable: ThunderRally.exe type: none -'833510': +"833510": installDir: Time Skip launch: - - arguments: '-fullscreen' - executable: Windows64\\ParadoxParadigm2.exe + - arguments: "-fullscreen" + executable: "Windows64\\\\ParadoxParadigm2.exe" type: default - - arguments: '-fullscreen' - executable: Windows32\\ParadoxParadigm2.exe + - arguments: "-fullscreen" + executable: "Windows32\\\\ParadoxParadigm2.exe" type: default -'833530': {} -'833540': +"833530": {} +"833540": installDir: The Platformer Gun launch: - executable: The Platformer Gun.exe type: none -'833640': +"833640": installDir: Sci-fi Chess launch: - config: oslist: windows executable: Sci-fi Chess.exe type: default -'833650': +"833650": installDir: Dust n Wheels launch: - config: - osarch: '64' + osarch: "64" executable: Dust_N_Wheels.exe type: none -'833660': +"833660": installDir: Grave Prosperity part1 launch: - config: @@ -382179,52 +376624,52 @@ type: none - config: oslist: windows - ownsdlc: '846620' + ownsdlc: "846620" description: Grave Prosperity - Part 1 - 2012 OG Costume executable: /OGdlc/GP Part1 OG.exe type: none - config: oslist: windows - ownsdlc: '846621' + ownsdlc: "846621" description: Grave Prosperity - Part 1 - Redux Costume executable: /REDUXdlc/GP Part1 REDUX.exe type: none - config: oslist: windows - ownsdlc: '955970' + ownsdlc: "955970" description: Grave Prosperity - Part 1 - Velez Costume executable: /VELEZdlc/GP Part1 VELEZ.exe type: none - config: - osarch: '64' + osarch: "64" oslist: windows - ownsdlc: '1515050' + ownsdlc: "1515050" description: The Vestigial Princess - DLC executable: /Vestigial_Princess/Binaries/Win64/Vestigial_Princess-Win64-Shipping.exe type: none -'833670': +"833670": installDir: Naughty study for exams with a ghost launch: - config: oslist: windows executable: MyGame1.exe type: default -'833690': +"833690": installDir: Cubesc launch: - config: oslist: windows executable: cubesc.exe type: default -'833700': +"833700": installDir: City Bus Simulator 2018 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: City Bus Simulator 2018.exe type: default -'833750': +"833750": installDir: Syko Swinger launch: - config: @@ -382235,7 +376680,7 @@ oslist: macos executable: Syko Swinger.app type: default -'833760': +"833760": installDir: Exploration Pro launch: - config: @@ -382246,50 +376691,50 @@ oslist: macos executable: ExplorationProHD_Mac.app type: default -'833770': +"833770": installDir: Couch Party Game Night launch: - config: oslist: windows executable: game.exe type: default -'833800': +"833800": installDir: Speed Car Fighter launch: - config: oslist: windows executable: speedcar.exe type: default -'833810': +"833810": installDir: Extreme Formula Championship launch: - config: oslist: windows executable: extremeformula.exe type: default -'833820': +"833820": installDir: Mountain Racing launch: - config: oslist: windows executable: mountainracing.exe type: default -'833870': {} -'833890': +"833870": {} +"833890": installDir: NeoSticks launch: - config: oslist: windows executable: NeoSticks.exe type: default -'833910': +"833910": installDir: Overchunked launch: - config: oslist: windows executable: Grind.exe type: default -'833920': +"833920": installDir: Meme Machine launch: - config: @@ -382302,7 +376747,7 @@ description: Videogame Button executable: MemeMachine.app type: default -'833950': +"833950": installDir: Risk System launch: - config: @@ -382310,30 +376755,30 @@ executable: RiskSystem.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: RiskSystem type: default - config: oslist: macos - executable: RiskSystem.app\\Contents\\MacOS\\RiskSystem + executable: "RiskSystem.app\\\\Contents\\\\MacOS\\\\RiskSystem" type: default -'833960': {} -'833980': +"833960": {} +"833980": installDir: Dave launch: - config: oslist: windows executable: Dave.exe type: default -'833990': +"833990": installDir: Stonewall Penitentiary launch: - config: oslist: windows executable: Stonewall Penitentiary Steam.exe type: default -'8340': +"8340": installDir: Homestar Ruiner launch: - config: @@ -382342,141 +376787,141 @@ - config: oslist: macos executable: Homestar 101.app -'834000': +"834000": installDir: Cross Country Skiing VR launch: - config: oslist: windows executable: FInal build.exe type: vr -'834030': +"834030": installDir: Slamdunk VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: Slamdunk VR.exe type: vr -'834060': +"834060": installDir: GoblinWalker launch: - config: oslist: windows executable: gob_steam.exe type: none -'834070': +"834070": installDir: AI Escort launch: - config: oslist: windows executable: Game.exe type: none -'834100': +"834100": installDir: Dungeon Adventure launch: - config: oslist: windows executable: Dungeon Adventure.exe type: default -'834140': +"834140": installDir: Blacksmith Dark Times launch: - config: oslist: windows executable: BlacksmithDarkTimes.exe type: default -'834150': +"834150": installDir: Glare1more launch: - executable: Glare_more.exe type: default -'834180': - installDir: '#CuteSnake 2' +"834180": + installDir: "#CuteSnake 2" launch: - executable: CuteSnake2.exe type: none -'834210': +"834210": installDir: Clicker Planet launch: - config: oslist: windows - description: ' With time pressure' + description: " With time pressure" executable: CLICKER PLANET.exe type: option1 - config: oslist: windows - ownsdlc: '834430' + ownsdlc: "834430" description: DLC executable: CPBS.exe type: option2 - - description: 'FREEMODE NO TIME! ' + - description: "FREEMODE NO TIME! " executable: Clicker Planet FREEMODE.exe type: option3 -'834280': +"834280": installDir: Fishing Sim World launch: - config: betakey: development - osarch: '64' + osarch: "64" oslist: windows - executable: FishingGame\\Binaries\\Win64\\FishingGame.exe + executable: "FishingGame\\\\Binaries\\\\Win64\\\\FishingGame.exe" type: none - config: betakey: release_candidate(shipping) - osarch: '64' + osarch: "64" oslist: windows - executable: FishingGame\\Binaries\\Win64\\FishingGame-Win64-Shipping.exe + executable: "FishingGame\\\\Binaries\\\\Win64\\\\FishingGame-Win64-Shipping.exe" type: none - config: betakey: release_candidate(test) - osarch: '64' + osarch: "64" oslist: windows - executable: FishingGame\\Binaries\\Win64\\FishingGame-Win64-Test.exe + executable: "FishingGame\\\\Binaries\\\\Win64\\\\FishingGame-Win64-Test.exe" type: none - config: - osarch: '64' + osarch: "64" oslist: windows - executable: FishingGame\\Binaries\\Win64\\FishingGame-Win64-Shipping.exe + executable: "FishingGame\\\\Binaries\\\\Win64\\\\FishingGame-Win64-Shipping.exe" type: none - config: betakey: dev_review - osarch: '64' + osarch: "64" oslist: windows description: Review Build - executable: FishingGame\\Binaries\\Win64\\FishingGame.exe + executable: "FishingGame\\\\Binaries\\\\Win64\\\\FishingGame.exe" type: none - config: betakey: rc_test - osarch: '64' + osarch: "64" oslist: windows description: FSW RC Test - executable: FishingGame\\Binaries\\Win64\\FishingGame-Win64-Test.exe + executable: "FishingGame\\\\Binaries\\\\Win64\\\\FishingGame-Win64-Test.exe" type: none - config: betakey: rc19_test - osarch: '64' + osarch: "64" oslist: windows description: FSW 19 RC Test - executable: FishingGame\\Binaries\\Win64\\FishingGame-Win64-Test.exe + executable: "FishingGame\\\\Binaries\\\\Win64\\\\FishingGame-Win64-Test.exe" type: none - config: betakey: dev_review - osarch: '64' + osarch: "64" oslist: windows description: FSW 19 RC Test - executable: FishingGame\\Binaries\\Win64\\FishingGame-Win64-Test.exe + executable: "FishingGame\\\\Binaries\\\\Win64\\\\FishingGame-Win64-Test.exe" type: none -'834320': {} -'834330': {} -'834340': +"834320": {} +"834330": {} +"834340": installDir: The Hardest Dungeon launch: - config: oslist: windows executable: nw.exe type: default -'834380': +"834380": installDir: Cube Zone launch: - config: @@ -382488,16 +376933,16 @@ executable: CubeZone.app type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: CubeZone.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: CubeZone.x86_64 type: none -'834390': +"834390": installDir: Kingmaker launch: - config: @@ -382506,13 +376951,13 @@ executable: Kingmaker1.exe type: none - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: Kingmaker1_i386 type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Kingmaker1_amd64 @@ -382522,7 +376967,7 @@ description: Launch executable: mac_steam.app/Contents/MacOS/mac_steam type: none -'834420': +"834420": installDir: RollingBall Unlimited World launch: - config: @@ -382530,14 +376975,14 @@ description: Launch executable: RollingBall_UW.exe type: default -'834440': +"834440": installDir: NAMELESS launch: - config: oslist: windows executable: Nameless.exe type: none -'834450': +"834450": installDir: Roarr! launch: - config: @@ -382546,25 +376991,25 @@ type: default - config: oslist: macos - executable: macBuild.app\\Contents\\MacOS\\macBuild + executable: "macBuild.app\\\\Contents\\\\MacOS\\\\macBuild" type: default -'834470': +"834470": installDir: Zima uhodi! launch: - config: oslist: windows executable: game.exe type: default -'834530': +"834530": installDir: Yakuza Kiwami launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: media\\YakuzaKiwami.exe + executable: "media\\\\YakuzaKiwami.exe" type: default workingdir: media -'834580': +"834580": installDir: 東方逆妙乱 ~ Ephemeral Unnatural Balance launch: - config: @@ -382575,8 +377020,8 @@ oslist: windows executable: config.exe type: config -'834730': {} -'834740': +"834730": {} +"834740": installDir: Circle Empires launch: - config: @@ -382585,27 +377030,27 @@ type: default - config: oslist: macos - executable: Contents\\MacOS\\ce_steam_mac + executable: "Contents\\\\MacOS\\\\ce_steam_mac" type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Circle Empires.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Circle Empires.x86_64 type: default -'834750': +"834750": installDir: Crucible Falls Together Forever launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: CrucibleFalls.exe type: none -'834760': +"834760": installDir: Robot Wants It All launch: - config: @@ -382616,96 +377061,96 @@ oslist: linux executable: run.sh type: default -'834800': +"834800": installDir: SolSeraph launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Empyrean.exe type: default -'834880': +"834880": installDir: AcroFS launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: bin\\AcroFS_x64.exe + executable: "bin\\\\AcroFS_x64.exe" type: default - - arguments: '-steamvr' + - arguments: "-steamvr" config: - osarch: '64' + osarch: "64" oslist: windows - executable: bin\\AcroFS_x64.exe + executable: "bin\\\\AcroFS_x64.exe" type: vr - - arguments: '-oculusvr' + - arguments: "-oculusvr" config: - osarch: '64' + osarch: "64" oslist: windows - executable: bin\\AcroFS_x64.exe + executable: "bin\\\\AcroFS_x64.exe" type: othervr -'834890': {} -'834910': +"834890": {} +"834910": installDir: ATLAS launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Play ATLAS - executable: ShooterGame\\Binaries\\Win64\\AtlasGame_BE.exe + executable: "ShooterGame\\\\Binaries\\\\Win64\\\\AtlasGame_BE.exe" type: none - workingdir: ShooterGame\\Binaries\\Win64 - - arguments: '-lowmemorymode' + workingdir: "ShooterGame\\\\Binaries\\\\Win64" + - arguments: "-lowmemorymode" config: - osarch: '64' + osarch: "64" oslist: windows description: Play ATLAS (Low Memory Mode) - executable: ShooterGame\\Binaries\\Win64\\AtlasGame_BE.exe + executable: "ShooterGame\\\\Binaries\\\\Win64\\\\AtlasGame_BE.exe" type: none - workingdir: ShooterGame\\Binaries\\Win64 + workingdir: "ShooterGame\\\\Binaries\\\\Win64" - config: - osarch: '64' + osarch: "64" oslist: windows description: Play ATLAS (No BattlEye) - executable: ShooterGame\\Binaries\\Win64\\AtlasGame.exe + executable: "ShooterGame\\\\Binaries\\\\Win64\\\\AtlasGame.exe" type: none - workingdir: ShooterGame\\Binaries\\Win64 + workingdir: "ShooterGame\\\\Binaries\\\\Win64" - config: - osarch: '64' + osarch: "64" oslist: windows - ownsdlc: '1113610' + ownsdlc: "1113610" description: Play ATLAS Public Test Realm - executable: PTR\\ShooterGame\\Binaries\\Win64\\AtlasGame.exe + executable: "PTR\\\\ShooterGame\\\\Binaries\\\\Win64\\\\AtlasGame.exe" type: none - workingdir: PTR\\ShooterGame\\Binaries\\Win64\\ -'834920': + workingdir: "PTR\\\\ShooterGame\\\\Binaries\\\\Win64\\\\" +"834920": installDir: Operation Osam Bin Laden launch: - config: oslist: windows executable: OpOBL.exe type: default -'834930': +"834930": installDir: Bishi and the Alien Slime Invasion launch: - config: oslist: windows executable: BishiAndTheAlienSlimeInvasion.exe type: none -'835040': +"835040": installDir: GirlsSummerFun launch: - executable: 美少女夏日欢乐.exe type: default -'835110': - installDir: America's Retribution +"835110": + installDir: "America's Retribution" launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: nw.exe type: default -'835130': +"835130": installDir: Last Stanza launch: - config: @@ -382714,13 +377159,13 @@ type: default - config: oslist: macos - executable: LastStanza.app\\Contents\\MacOS\\LastStanza + executable: "LastStanza.app\\\\Contents\\\\MacOS\\\\LastStanza" type: default - config: oslist: linux executable: LastStanza.sh type: default -'835430': +"835430": installDir: La-Mulana 2 launch: - config: @@ -382731,33 +377176,33 @@ oslist: macos executable: LaMulana2.app type: default -'835440': +"835440": installDir: USAGrandCanyon launch: - config: oslist: windows executable: USAGrandCanyon.exe type: vr -'835450': +"835450": installDir: neon_force_pushers launch: - config: - osarch: '32' + osarch: "32" oslist: linux executable: neon_force_pushers.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: neon_force_pushers.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: neon_force_pushers.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: neon_force_pushers.exe type: default @@ -382765,7 +377210,7 @@ oslist: macos executable: neon force pushers.app type: default -'835490': +"835490": installDir: Deadly Stigma launch: - config: @@ -382777,69 +377222,69 @@ oslist: windows executable: MyProject.exe type: default -'835500': +"835500": installDir: Embergarde launch: - - arguments: '-transcmd \"{-steam_enabled}\"' + - arguments: "-transcmd \\\"{-steam_enabled}\\\"" config: oslist: windows executable: RuLauncher.exe type: default -'835510': +"835510": installDir: Horror Fish Simulator launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: HorrorFisher.exe type: default -'835520': +"835520": installDir: DodgeShow launch: - config: oslist: windows executable: DodgeShow.exe type: default -'835530': +"835530": installDir: 魔物娘物语 launch: - - arguments: '-windowed' + - arguments: "-windowed" config: oslist: windows executable: mwnStory.exe type: default -'835560': +"835560": installDir: Ancient Rush 2 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: AncientRush2.exe type: default -'835600': +"835600": installDir: Techwars Deathmatch launch: - config: oslist: windows executable: Techwars Deathmatch.exe type: default -'835620': +"835620": installDir: Sneiroball launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Game.exe type: default -'835630': +"835630": installDir: All You Can Feed Sushi Bar launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: sushibar.exe type: default -'835640': +"835640": installDir: The Battle for Murk launch: - config: @@ -382848,9 +377293,9 @@ type: none - config: oslist: macos - executable: Battle for Murk.app\\Contents\\MacOS\\Battle for Murk + executable: "Battle for Murk.app\\\\Contents\\\\MacOS\\\\Battle for Murk" type: none -'835650': +"835650": installDir: Rising Lords launch: - config: @@ -382864,82 +377309,82 @@ type: default nameLocalized: schinese: 领主争锋 -'835660': +"835660": installDir: Circle Up launch: - - executable: Circle Up\\Circle Up.exe + - executable: "Circle Up\\\\Circle Up.exe" type: default -'835680': +"835680": installDir: Intelligence - Dinosaurs launch: - config: oslist: windows executable: Intelligence Dinosaurs.exe type: default -'835700': +"835700": installDir: Alice - Behind the Mirror launch: - config: oslist: windows executable: Alice2.exe type: default -'835710': +"835710": installDir: Tactics Maiden launch: - config: oslist: windows executable: TacticsMaiden.exe type: default - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" config: - osarch: '32' + osarch: "32" oslist: linux executable: TacticsMaiden.x86 type: default - config: oslist: macos - executable: TacticsMaiden.app\\Contents\\MacOS\\TacticsMaiden + executable: "TacticsMaiden.app\\\\Contents\\\\MacOS\\\\TacticsMaiden" type: default - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" config: - osarch: '64' + osarch: "64" oslist: linux executable: TacticsMaiden.x86_64 type: default -'835720': +"835720": installDir: sanctuary launch: - config: oslist: windows - executable: WindowsNoEditor\\Air.exe + executable: "WindowsNoEditor\\\\Air.exe" type: vr -'835740': +"835740": installDir: Hyper Fighter Boost Mode ON launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: HyperFighter.exe type: none - config: - osarch: '32' + osarch: "32" oslist: windows executable: HyperFighterx86.exe type: none -'835760': {} -'835770': +"835760": {} +"835770": installDir: Tony Slopes launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TonySlopes.exe type: default -'835790': {} -'835860': +"835790": {} +"835860": installDir: Dreadnought launch: - - arguments: '--debug' + - arguments: "--debug" config: oslist: windows executable: DreadnoughtLauncher.exe @@ -382950,38 +377395,38 @@ oslist: windows executable: DreadnoughtLauncher.exe type: default - - arguments: '--debug' + - arguments: "--debug" config: betakey: mith oslist: windows description: Launch with PlayDread executable: PlayDread.exe type: default -'835910': +"835910": installDir: Above the Fold launch: - config: oslist: windows executable: AboveTheFold.exe type: default -'835950': +"835950": installDir: Transpose launch: - config: oslist: windows executable: Transpose.exe type: vr -'835960': {} -'836010': {} -'836080': +"835960": {} +"836010": {} +"836080": installDir: BARRAGE launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: BARRAGE\\Binaries\\Win64\\BARRAGE.exe + executable: "BARRAGE\\\\Binaries\\\\Win64\\\\BARRAGE.exe" type: vr -'836110': +"836110": installDir: Time Tenshi Paradox Episode 2 launch: - config: @@ -382990,55 +377435,55 @@ type: default - config: oslist: macos - executable: Time Tenshi Paradox Episode 2.app\\Contents\\MacOS\\Time Tenshi Paradox Episode 2 + executable: "Time Tenshi Paradox Episode 2.app\\\\Contents\\\\MacOS\\\\Time Tenshi Paradox Episode 2" type: default - config: oslist: linux executable: Time Tenshi Paradox Episode 2.sh type: default -'836120': +"836120": installDir: Hard Way To Heaven launch: - config: oslist: windows executable: HardWayToHeaven.exe type: default -'836200': {} -'836230': +"836200": {} +"836230": installDir: HeavyBlade launch: - config: oslist: windows executable: HeavyBlade.exe type: none -'836260': +"836260": installDir: Call of Bitcoin launch: - config: oslist: windows executable: Call of Bitcoin.exe type: none -'836280': +"836280": installDir: Dynamite_Bunny launch: - config: oslist: windows executable: Dynamite_Bunny.exe type: default -'836290': +"836290": installDir: Achievement Lurker Ballad of the Shimapan Warrior - King of Panties launch: - executable: Game.exe type: none -'836300': +"836300": installDir: Humble Pie launch: - config: oslist: windows executable: humblepie.exe type: vr -'836310': {} -'836330': +"836310": {} +"836330": installDir: The God launch: - config: @@ -383048,7 +377493,7 @@ type: default - config: oslist: windows - description: 'The God for VR OCULUS ' + description: "The God for VR OCULUS " executable: TheGod_Oculus_Steam/TheGod/TheGod.exe type: othervr - config: @@ -383066,8 +377511,8 @@ description: The God for OSX executable: TheGod_OSX_Steam/TheGod.app/Contents/MacOS/TheGod type: default -'836340': {} -'836350': +"836340": {} +"836350": installDir: HeartbreakHigh launch: - config: @@ -383078,28 +377523,28 @@ oslist: macos executable: heartbreakhigh.app type: default -'836400': +"836400": installDir: Basketball Hero VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: This is the default launcher for Basketball Hero VR - executable: Basketball Hero VR\\Basketball Hero VR.exe + executable: "Basketball Hero VR\\\\Basketball Hero VR.exe" type: vr -'836420': - installDir: Beginner'sGame +"836420": + installDir: "Beginner'sGame" launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: Beginner'sGame.exe + executable: "Beginner'sGame.exe" type: default - config: oslist: linux - executable: Beginner'sGame.x86_64 + executable: "Beginner'sGame.x86_64" type: default -'836440': +"836440": installDir: MonsterxMan Inheritance To Lust launch: - config: @@ -383114,135 +377559,135 @@ oslist: macos executable: MonsterxMan.app type: default -'836450': +"836450": installDir: Heaven Will Be Mine launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: HeavenWillBeMine.exe type: default - config: oslist: macos - executable: HeavenWillBeMine.app\\Contents\\MacOS\\HeavenWillBeMine + executable: "HeavenWillBeMine.app\\\\Contents\\\\MacOS\\\\HeavenWillBeMine" type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: HeavenWillBeMine.x86_64 type: default -'836460': +"836460": installDir: Etherian launch: - config: oslist: windows executable: Etherian.exe type: vr -'836470': +"836470": installDir: Mage Fort launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: MageFort.exe type: default -'836480': +"836480": installDir: LoveSim launch: - - arguments: '-fontcharset=DEFAULT_CHARSET' + - arguments: "-fontcharset=DEFAULT_CHARSET" config: oslist: windows executable: game.exe type: default -'836490': +"836490": installDir: BlackteaWithMoon launch: - config: oslist: windows executable: Game.exe type: default -'836540': +"836540": installDir: VikingBrothers2 launch: - config: oslist: windows executable: VikingBrothers2.exe type: default -'836550': +"836550": installDir: Viking Brothers 3 launch: - config: oslist: windows executable: VikingBrothers3_CE.exe type: default -'836560': +"836560": installDir: Viking Brothers 4 launch: - config: oslist: windows executable: VikingBrothers4.exe type: default -'836580': +"836580": installDir: Dead GroundZ launch: - config: oslist: windows - executable: DGZ\\Binaries\\Win64\\DGZ-Win64-Shipping.exe + executable: "DGZ\\\\Binaries\\\\Win64\\\\DGZ-Win64-Shipping.exe" type: vr - config: oslist: windows - executable: DGZ\\Binaries\\Win64\\DGZ-Win64-Shipping.exe + executable: "DGZ\\\\Binaries\\\\Win64\\\\DGZ-Win64-Shipping.exe" type: othervr -'836590': +"836590": installDir: Stay Cool Kobayashi San launch: - config: oslist: windows - executable: 'STAY COOL, KOBAYASHI-SAN!.exe' + executable: "STAY COOL, KOBAYASHI-SAN!.exe" type: default nameLocalized: japanese: 熱血硬派くにおくん外伝 イカすぜ!小林さん koreana: 열혈외전 멋지다! 코바야시 schinese: 热血外传:好酷啊!小林 tchinese: 熱血外傳:好酷啊!小林 -'836600': +"836600": installDir: DAEDALUS:The Awakening of Golden Jazz launch: - - arguments: '-forcecontrollerappid 836600' + - arguments: "-forcecontrollerappid 836600" config: oslist: windows executable: SAX.exe type: none nameLocalized: japanese: ダイダロス:ジ・アウェイクニング・オブ・ゴールデンジャズ -'836610': +"836610": installDir: Jigsaw 360 launch: - - arguments: '-vr' + - arguments: "-vr" config: oslist: windows executable: VRnChill.exe type: vr - - arguments: '-vr' + - arguments: "-vr" config: oslist: windows executable: VRnChill.exe type: othervr -'836640': +"836640": installDir: Hermitage Strange Case Files launch: - config: oslist: windows executable: HermitageStrangeCaseFiles.exe type: default -'836690': +"836690": installDir: HomestarVR launch: - config: oslist: windows executable: hsvr.exe type: vr -'836700': +"836700": installDir: DoctorFlow launch: - config: @@ -383251,21 +377696,21 @@ type: default - config: oslist: macos - executable: Doctor Flow.app\\Contents\\MacOS\\Doctor Flow + executable: "Doctor Flow.app\\\\Contents\\\\MacOS\\\\Doctor Flow" type: default -'836760': +"836760": installDir: Sorcery Saga Curse of the Great Curry God launch: - config: oslist: windows executable: SorcerySaga.exe type: default -'836770': +"836770": installDir: Art of Murder - Cards of Destiny launch: - executable: game.exe type: none -'836790': +"836790": installDir: Dr. Pills launch: - config: @@ -383274,80 +377719,80 @@ type: none - config: oslist: macos - executable: Dr. Pills.app\\Contents\\MacOS\\Dr. Pills + executable: "Dr. Pills.app\\\\Contents\\\\MacOS\\\\Dr. Pills" type: none - config: oslist: linux executable: Dr. Pills.x86 type: none -'836850': +"836850": installDir: Tiny Tanks launch: - config: oslist: windows executable: TinyTanks.exe type: default -'836860': +"836860": installDir: Art of Murder - The Secret Files launch: - executable: MystLauncher.exe type: none -'836870': +"836870": installDir: Art of Murder - Deadly Secrets launch: - executable: MystLauncher.exe type: none -'836880': {} -'836940': +"836880": {} +"836940": installDir: 【SCP】器関ノ彷徨 -The will of a single Tale-【DEMOver.】 launch: - config: oslist: windows executable: kikan no kanata.exe type: none -'837040': +"837040": installDir: Chicken Hot Grill launch: - - executable: System\\kury.exe + - executable: "System\\\\kury.exe" type: none workingdir: system -'837090': +"837090": installDir: Chronicles of Mystery - The Tree of Life launch: - executable: ChoM2.exe type: none -'837100': +"837100": installDir: Chronicles of Mystery - The Legend of the Sacred Treasure launch: - executable: MystLauncher.exe type: none -'837110': +"837110": installDir: Chronicles of Mystery - Secret of the Lost Kingdom launch: - executable: MystLauncher.exe type: none -'837180': +"837180": installDir: Slamoids! launch: - config: oslist: windows executable: slamoids.exe type: default -'837190': +"837190": installDir: TANGLEWOOD launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: tanglewd_win_32.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: tanglewd_win_64.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: tanglewd_linux_64.sh type: default @@ -383355,11 +377800,11 @@ oslist: macos executable: tanglewood.app/Contents/MacOS/tanglewd_osx_64 type: default -'837200': +"837200": installDir: NetHack Legacy launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: NetHack Legacy.exe type: default @@ -383368,11 +377813,11 @@ executable: NetHack Legacy.app/Contents/MacOS/NetHack Legacy type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: NetHack Legacy type: default -'837210': +"837210": installDir: Doodle God Genesis Secrets launch: - config: @@ -383384,44 +377829,44 @@ executable: Doodle God HOG Steam.app type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: DoodleGame type: none -'837240': +"837240": installDir: Shopkeeper Simulator VR launch: - config: oslist: windows executable: Shopkeeper Simulator VR.exe type: vr -'837260': +"837260": installDir: Roller Coaster Apocalypse VR launch: - config: oslist: windows executable: game.exe type: vr -'837270': +"837270": installDir: Tharn launch: - config: oslist: windows executable: Tharn_V1.5.exe type: none -'837280': +"837280": installDir: Lost Borderline launch: - config: oslist: windows executable: LostBorderline.exe type: default -'837290': +"837290": installDir: Blind Mind launch: - executable: BlindMind.exe type: default -'837310': +"837310": installDir: Telophase launch: - config: @@ -383432,7 +377877,7 @@ oslist: macos executable: Telophase.app type: default -'837330': +"837330": installDir: Crimson Shift launch: - config: @@ -383440,7 +377885,7 @@ oslist: windows executable: Game.exe type: default -'837350': +"837350": installDir: King of the Hat launch: - config: @@ -383449,9 +377894,9 @@ type: default - config: oslist: macos - executable: KingOfTheHat.app\\Contents\\MacOS\\KingOfTheHat + executable: "KingOfTheHat.app\\\\Contents\\\\MacOS\\\\KingOfTheHat" type: default -'837390': +"837390": installDir: My zero trip launch: - config: @@ -383466,27 +377911,27 @@ oslist: linux executable: My zero trip.x86 type: none -'837400': +"837400": installDir: Fated Kingdom launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: FatedKingdom.exe type: default -'837430': +"837430": installDir: Navy Pilot Simulator launch: - config: oslist: windows executable: FlyingAces.exe type: vr -'837440': +"837440": installDir: MineSweep launch: - executable: MineSweep.exe type: none -'837460': +"837460": installDir: Batbarian launch: - config: @@ -383496,11 +377941,11 @@ type: default nameLocalized: japanese: バットバリアン ~太古の洞窟の謎~ -'837470': +"837470": installDir: Untitled Goose Game launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Untitled.exe type: none @@ -383510,7 +377955,7 @@ type: none nameLocalized: japanese: Untitled Goose Game 〜いたずらガチョウがやって来た!〜 -'837500': +"837500": installDir: Leder Panzer launch: - config: @@ -383518,93 +377963,93 @@ executable: Leder Panzer.exe type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: LederPanzer.x86_64 type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: LederPanzer.x86 type: none -'837530': +"837530": installDir: Dark Ghost RPG launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: DarkGhostRPG.exe type: default -'837550': +"837550": installDir: Bouncy Butter Ball launch: - config: oslist: windows executable: BOUNCY BUTTER BALL.exe type: none -'837590': +"837590": installDir: Operation Thunderstorm launch: - executable: game.exe type: none -'837600': +"837600": installDir: The Royal Marines Commando launch: - executable: game.exe type: none -'837610': +"837610": installDir: Mary Skelter Nightmares launch: - config: oslist: windows executable: MarySkelter.exe type: default -'837640': +"837640": installDir: TapSonic World Champion VR launch: - - arguments: '-steam' + - arguments: "-steam" config: - osarch: '32' + osarch: "32" oslist: windows executable: TapSonicWCVR.exe type: vr -'837720': +"837720": installDir: Tactical Mind launch: - config: oslist: windows executable: TacticalMind.exe type: default -'837780': +"837780": installDir: Coin-Op Kingdom launch: - - arguments: '-windowed' + - arguments: "-windowed" config: oslist: windows executable: Coin-Op Kingdom.exe type: default -'837790': +"837790": installDir: Around the World in 80 Days launch: - config: oslist: windows executable: 80days.exe type: default -'837800': +"837800": installDir: Red Riding Hood - Star Crossed Lovers launch: - config: oslist: windows executable: ChaperonRouge.exe type: default -'837850': +"837850": installDir: Photonic Distress launch: - config: oslist: windows executable: PhontonicDistress.exe type: default -'837880': +"837880": installDir: You Suck at Parking launch: - config: @@ -383613,26 +378058,26 @@ type: default nameLocalized: schinese: 狂野泊车 -'837900': +"837900": installDir: Bitcoin Trader launch: - executable: BitcoinTrader.exe type: none -'837920': +"837920": installDir: Abnormal world launch: - config: oslist: windows executable: abnormal world.exe type: none -'837930': +"837930": installDir: Alone launch: - config: oslist: windows executable: Alone.exe type: none -'837940': +"837940": installDir: Mobile Forces launch: - config: @@ -383645,21 +378090,21 @@ description: Manual executable: Manual.pdf type: manual -'837950': +"837950": installDir: Mad Carnage launch: - config: oslist: windows executable: MadCarnage.exe type: default -'838010': +"838010": installDir: Double Cross launch: - config: oslist: windows executable: DoubleCross.exe type: default -'838050': +"838050": installDir: The Hero Project Open Season launch: - config: @@ -383674,25 +378119,25 @@ oslist: linux executable: TheHeroProjectOpenSeason type: none -'838090': {} -'838100': +"838090": {} +"838100": installDir: Point launch: - config: oslist: windows executable: Point.exe type: default -'838110': +"838110": installDir: HyperParasite launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: HyperParasite.exe type: default nameLocalized: schinese: HyperParasite 超级寄生虫 -'838150': +"838150": installDir: Falling Slime launch: - config: @@ -383703,46 +378148,46 @@ oslist: linux executable: falling-slime type: default -'838160': +"838160": installDir: Trail Breaking launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TrailBreaking.exe type: default -'838180': +"838180": installDir: MechCorp launch: - config: oslist: windows executable: MechCorp.exe type: default -'838190': +"838190": installDir: ROADTRIP launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Roadtrip.exe type: default -'838220': +"838220": installDir: Endersite launch: - config: oslist: windows executable: Endersite.exe type: default -'838240': {} -'838260': {} -'838270': +"838240": {} +"838260": {} +"838270": installDir: Grandpa launch: - config: oslist: windows - executable: \\grandpa\\Grandpa.exe + executable: "\\\\grandpa\\\\Grandpa.exe" type: default -'838310': +"838310": installDir: Bloodstained Curse of the Moon launch: - config: @@ -383750,14 +378195,14 @@ executable: exe/COTM.exe type: default workingdir: exe/ -'838330': +"838330": installDir: Warlords Awakening launch: - config: oslist: windows executable: Starter.exe type: default -'838340': +"838340": installDir: May launch: - config: @@ -383772,49 +378217,49 @@ oslist: macos executable: May.app type: none -'838350': +"838350": installDir: The Scroll Of Taiwu launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: The Scroll Of Taiwu Alpha V1.0.exe type: default -'838360': {} -'838370': +"838360": {} +"838370": installDir: Green General launch: - config: oslist: windows executable: Game.exe type: default -'838380': +"838380": installDir: Dead or Alive 6 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: DOA6.exe type: default -'838390': +"838390": installDir: Merry Glade launch: - config: oslist: windows executable: Merry_Glade_Steam.exe type: default -'838410': +"838410": installDir: TabletopPlayground launch: - - arguments: '-nohmd' + - arguments: "-nohmd" config: - osarch: '64' + osarch: "64" oslist: windows executable: TabletopPlayground.exe type: default - - arguments: '-vr' + - arguments: "-vr" config: - osarch: '64' + osarch: "64" oslist: windows executable: TabletopPlayground.exe type: vr @@ -383826,7 +378271,7 @@ oslist: linux executable: TabletopPlayground.sh type: default -'838420': +"838420": installDir: Longboard Simulator launch: - config: @@ -383835,9 +378280,9 @@ type: none - config: oslist: macos - executable: Longboard Stunts and Tricks.app\\Contents\\MacOS\\Longboard Stunts and Tricks + executable: "Longboard Stunts and Tricks.app\\\\Contents\\\\MacOS\\\\Longboard Stunts and Tricks" type: none -'838430': +"838430": installDir: Galaxy Ball launch: - config: @@ -383848,23 +378293,23 @@ oslist: windows executable: Galaxy Ball.exe type: none -'838440': +"838440": installDir: The Great Race launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: RaceNChase.exe type: default -'838490': +"838490": installDir: Theorem launch: - config: oslist: windows executable: Theorem.exe type: default -'838500': {} -'838510': +"838500": {} +"838510": installDir: Find & Destroy Tank Strategy launch: - config: @@ -383872,7 +378317,7 @@ executable: fnd.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: fnd.x86 type: default @@ -383881,26 +378326,26 @@ executable: fnd.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: fnd.x86_64 type: default -'838530': +"838530": installDir: Ball Escape launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Ball Escape.exe type: default -'838540': +"838540": installDir: Game exe launch: - config: oslist: windows executable: nw.exe type: none -'838620': +"838620": installDir: Slappy Ass launch: - config: @@ -383908,12 +378353,12 @@ executable: Slappy Ass.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Slappy Ass.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Slappy Ass.x86_64 type: default @@ -383921,18 +378366,18 @@ oslist: macos executable: Slappy Ass.app type: default -'838630': +"838630": installDir: Deadliest Catch The Game launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: DeadliestCatch.exe type: default nameLocalized: turkish: Ölümcül Av -'838640': {} -'838690': +"838640": {} +"838690": installDir: Unleashed launch: - config: @@ -383943,73 +378388,73 @@ oslist: linux executable: Linux_Content/runner type: default -'838700': +"838700": installDir: Azada Ancient Magic launch: - config: oslist: windows executable: AzadaAncientMagic.exe type: default -'838710': - installDir: Dark Dimensions Somber Song Collector's Edition +"838710": + installDir: "Dark Dimensions Somber Song Collector's Edition" launch: - config: oslist: windows executable: DarkDimensions_SomberSong_CE.exe type: default -'838720': - installDir: Mystery Tales Alaskan Wild Collector's Edition +"838720": + installDir: "Mystery Tales Alaskan Wild Collector's Edition" launch: - config: oslist: windows executable: MysteryTales_AlaskanWild_CE.exe type: default -'838730': - installDir: Grim Tales The Stone Queen Collector's Edition +"838730": + installDir: "Grim Tales The Stone Queen Collector's Edition" launch: - config: oslist: windows executable: GrimTales_TheStoneQueenCE.exe type: default -'838740': - installDir: Final Cut The True Escapade Collector's Edition +"838740": + installDir: "Final Cut The True Escapade Collector's Edition" launch: - config: oslist: windows executable: FinalCut_TheTrueEscapade_CE.exe type: default -'838750': - installDir: Shadow Wolf Mysteries Cursed Wedding Collector's Edition +"838750": + installDir: "Shadow Wolf Mysteries Cursed Wedding Collector's Edition" launch: - config: oslist: windows executable: ShadowWolfMysteries_CursedWedding_CE.exe type: default -'838760': - installDir: Haunted Legends The Curse of Vox Collector's Edition +"838760": + installDir: "Haunted Legends The Curse of Vox Collector's Edition" launch: - config: oslist: windows executable: HauntedLegends_StoneGuest_CE.exe type: default -'838790': +"838790": installDir: TDG launch: - executable: TDG2.exe type: default -'838820': +"838820": installDir: Warzone launch: - - arguments: '-vr -windowed' + - arguments: "-vr -windowed" executable: Warzone.exe type: vr - - arguments: '-vr -windowed' + - arguments: "-vr -windowed" executable: Warzone.exe type: othervr -'838840': +"838840": installDir: Secret of Harrow Manor launch: - - arguments: '-vrmode none' + - arguments: "-vrmode none" config: oslist: windows executable: SoHM-WindowsVR/Secret of Harrow Manor.exe @@ -384025,52 +378470,46 @@ executable: SoHM-MacOSX.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: HarrowManor.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: HarrowManor.x86_64 type: default -'838900': +"838900": installDir: Cereal Soup launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Windows 64 - description_loc: - english: Windows 64 executable: Cereal Soup.exe type: none - config: - osarch: '32' + osarch: "32" oslist: windows description: Windows 86 - description_loc: - english: Windows 86 executable: Cereal Soup.exe type: none - config: oslist: macos description: Mac - description_loc: - english: Mac executable: Cereal Soup.app type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: CerealSoup.x86 type: none -'838940': - installDir: Little Marisa's Disaster Journey +"838940": + installDir: "Little Marisa's Disaster Journey" launch: - executable: LMDJ.exe type: default -'838980': +"838980": installDir: Eon Fleet launch: - config: @@ -384078,20 +378517,20 @@ executable: Eon Fleet.exe type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: EonFleet.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: EonFleet.x86_64 type: none - config: oslist: macos - executable: MacOs.app\\Contents\\MacOS\\MacOs + executable: "MacOs.app\\\\Contents\\\\MacOS\\\\MacOs" type: none -'838990': +"838990": installDir: Endhall launch: - config: @@ -384103,11 +378542,11 @@ executable: Endhall.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Endhall type: default -'839010': +"839010": installDir: RealWinnersVictoryball launch: - config: @@ -384118,43 +378557,43 @@ oslist: macos executable: RealWinners.app type: default -'839020': +"839020": installDir: The Rig launch: - config: oslist: windows executable: TheRig.exe type: vr -'839030': +"839030": installDir: Mad Frost launch: - config: oslist: windows executable: Mad Frost.exe type: default -'839040': - installDir: 'Fasaria Classics [LEGACY]' +"839040": + installDir: "Fasaria Classics [LEGACY]" launch: - config: oslist: windows description: Fasaria World MMORPG executable: Fasaria_World_MMORPG.exe type: option1 -'839080': +"839080": installDir: DRAW CHILLY launch: - config: oslist: windows executable: DRAW CHILLY.exe type: default -'839090': +"839090": installDir: Galaxy Ball Defender launch: - config: oslist: windows executable: Galaxy Ball Defender.exe type: vr -'839130': +"839130": installDir: Snowball Saves Summer launch: - config: @@ -384163,19 +378602,19 @@ type: default - config: oslist: macos - executable: SnowballSavesSummer.app\\Contents\\MacOS\\SnowballSavesSummer + executable: "SnowballSavesSummer.app\\\\Contents\\\\MacOS\\\\SnowballSavesSummer" type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: SnowballSavesSummer.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: SnowballSavesSummer.x86_64 type: default -'839170': +"839170": installDir: Paradox of the Cryptomancers launch: - config: @@ -384186,7 +378625,7 @@ oslist: macos executable: Paradox of the Cryptomancers.app/Contents/MacOS/Paradox of the Cryptomancers type: default -'839200': +"839200": installDir: FPH SpedV launch: - config: @@ -384194,7 +378633,7 @@ description: SpedV starten executable: Launcher.exe type: default -'839210': +"839210": installDir: The Land of the Seazogs launch: - config: @@ -384205,51 +378644,51 @@ oslist: macos executable: LandOfSeazogs.app type: none -'839230': +"839230": installDir: Mr. Sweet launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Mr. Sweet.exe type: config -'839240': +"839240": installDir: Penny Black launch: - config: oslist: windows executable: PennyBlack.exe type: default -'839250': +"839250": installDir: sgyxlz launch: - config: oslist: windows executable: Game.exe type: none -'839260': +"839260": installDir: Russian AYE Horror launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: RussianAYE.exe type: default -'839280': +"839280": installDir: Cartonfall launch: - config: oslist: windows executable: game.exe type: default -'839300': +"839300": installDir: Legendary Eleven launch: - config: oslist: windows executable: LegendaryEleven.exe type: default -'839310': +"839310": installDir: SignalSimulator launch: - config: @@ -384260,47 +378699,47 @@ oslist: linux executable: SignalSimulator.x86_64 type: default -'839340': +"839340": installDir: SOK MIN launch: - executable: SOK_MIN.exe type: none -'839370': +"839370": installDir: qs launch: - config: oslist: windows executable: Game.exe type: default -'839410': +"839410": installDir: Undead & Beyond launch: - config: oslist: windows executable: UndeadAndBeyond.exe type: default -'839420': +"839420": installDir: Krampus is Home launch: - config: oslist: windows executable: Krampus is Home.exe type: none -'839430': +"839430": installDir: Flurius launch: - config: oslist: windows executable: Flurius.exe type: default -'839450': +"839450": installDir: 7scarlet launch: - config: oslist: windows executable: SevenScarletSteam.exe type: default -'839460': +"839460": installDir: Psycho Squirrels launch: - config: @@ -384311,29 +378750,29 @@ oslist: macos executable: Psycho Squirrels.app type: none -'839500': +"839500": installDir: xunzhanjiapigou launch: - config: oslist: windows - executable: 0.9\\血战夹皮沟.exe + executable: "0.9\\\\血战夹皮沟.exe" type: default -'839520': +"839520": installDir: The Legend of Evil launch: - config: oslist: windows executable: The Legend of Evil.exe type: default -'839530': +"839530": installDir: Bomight launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Bomight.exe type: none -'839540': +"839540": installDir: Electroquest launch: - config: @@ -384342,16 +378781,16 @@ type: default - config: oslist: macos - executable: Electroquest - Resistance is Futile.app\\Contents\\MacOS\\Electroquest - Resistance is Futile + executable: "Electroquest - Resistance is Futile.app\\\\Contents\\\\MacOS\\\\Electroquest - Resistance is Futile" type: default -'839560': +"839560": installDir: Shrinking Pains launch: - config: oslist: windows executable: Shrinking Pains.exe type: default -'839570': +"839570": installDir: What Are You Stupid launch: - config: @@ -384362,14 +378801,14 @@ oslist: macos executable: What Are You Stupid_MacOS.app type: default -'839590': +"839590": installDir: Hamster Daily launch: - config: oslist: windows executable: HamsterDaily.exe type: default -'839620': +"839620": installDir: Bomb Labyrinth launch: - config: @@ -384380,16 +378819,16 @@ oslist: macos executable: Bomb Labyrinth.app/Contents/MacOS/Bomb Labyrinth type: default -'839630': +"839630": installDir: Survisland launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Survisland.exe type: default -'839670': - installDir: Alice's Adventures +"839670": + installDir: "Alice's Adventures" launch: - config: oslist: windows @@ -384397,57 +378836,57 @@ type: none - config: oslist: macos - executable: Alice's Adventures.app + executable: "Alice's Adventures.app" type: none -'839680': +"839680": installDir: The Front of Greed launch: - - arguments: '-SEEKFREELOADINGPCCONSOLE' + - arguments: "-SEEKFREELOADINGPCCONSOLE" config: oslist: windows - executable: Binaries\\Win32\\Greed.exe + executable: "Binaries\\\\Win32\\\\Greed.exe" type: default -'839730': +"839730": installDir: Planum launch: - executable: Planum.exe type: default -'839750': +"839750": installDir: Entre Deux launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: - osarch: '64' + osarch: "64" oslist: windows description: Entre-Deux executable: EntreDeux.exe type: option1 - config: - osarch: '64' + osarch: "64" oslist: windows description: Entre-Deux (no Steam overlay) executable: EntreDeux.exe type: option2 -'839770': +"839770": installDir: Phoenix Point launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: PhoenixPointWin64.exe type: default - config: oslist: macos - executable: PhoenixPointOSX.app\\Contents\\MacOS\\Phoenix Point + executable: "PhoenixPointOSX.app\\\\Contents\\\\MacOS\\\\Phoenix Point" type: default -'839810': +"839810": installDir: Drift4000 launch: - config: oslist: windows executable: Drift4000.exe type: default -'839820': +"839820": installDir: Match Connect Challenge launch: - config: @@ -384456,19 +378895,19 @@ type: default - config: oslist: windows - description: '''''DLC'''' Monsters Pack 1' + description: "''DLC'' Monsters Pack 1" executable: Match Connect Challenge - Monsters Pack 1.exe type: option1 -'839850': +"839850": installDir: Lenin - The Lion launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows executable: Lenin - The Lion.exe type: none -'839870': - installDir: Wilmot's Warehouse +"839870": + installDir: "Wilmot's Warehouse" launch: - config: oslist: windows @@ -384480,19 +378919,19 @@ executable: WilmotMac/Wilmot.app type: default workingdir: WilmotMac -'839880': {} -'839890': +"839880": {} +"839890": installDir: Kama Bullet Heritage 2 launch: - config: oslist: windows executable: Kama Bullet Heritage 2.exe type: default -'839910': +"839910": installDir: Mythgard launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Mythgard.exe type: default @@ -384500,17 +378939,17 @@ oslist: macos executable: Mythgard.app type: default -'839920': +"839920": installDir: 9 Balls launch: - executable: 9balls.exe type: none -'839930': +"839930": installDir: My Car launch: - executable: My Car.exe type: none -'839940': +"839940": installDir: Silverworld launch: - config: @@ -384525,18 +378964,18 @@ oslist: linux executable: Silverworld type: none -'839960': +"839960": installDir: The Technician launch: - config: oslist: windows executable: the_technician.exe type: vr -'839970': - installDir: Mr Rabbit's Memory +"839970": + installDir: "Mr Rabbit's Memory" launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Memory.exe type: default @@ -384544,11 +378983,11 @@ oslist: macos executable: Memory.app type: default -'8400': +"8400": installDir: Geometry Wars launch: - executable: GeometryWars.exe -'840010': +"840010": installDir: Garden Paws launch: - config: @@ -384559,19 +378998,19 @@ oslist: macos executable: GardenPaws.app type: default -'840020': +"840020": installDir: Gun Rage launch: - config: oslist: windows executable: Gun Rage.exe type: default -'840050': +"840050": installDir: ad movere launch: - executable: admovere.exe type: config -'840060': +"840060": installDir: Good Doggo launch: - config: @@ -384583,35 +379022,35 @@ executable: GoodDoggo_steam_mac.app type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: GoodDoggo_steam_linux.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: GoodDoggo_steam_linux.x86_64 type: none -'840090': +"840090": installDir: Battleground Shooting Training launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Battleground Shooting Training.exe type: default -'840100': +"840100": installDir: Magic Scroll Tactics launch: - executable: mst.exe type: default - - arguments: '--disable_joystick' + - arguments: "--disable_joystick" config: betakey: ver_1_3_3c description: disable joystick executable: mst.exe type: none -'840110': +"840110": installDir: The Beat A Glam Noir Game launch: - config: @@ -384626,65 +379065,65 @@ oslist: macos executable: TheBeat.app type: default -'840120': +"840120": installDir: Pi is Everything launch: - config: oslist: windows executable: pie1.exe type: none -'840130': +"840130": installDir: Survivals Battle Royale launch: - config: oslist: windows executable: Client.exe type: none -'840140': +"840140": installDir: wuxiax launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: WuXiaXClient.exe type: default -'840170': +"840170": installDir: Delivery man simulator launch: - config: oslist: windows executable: CS.exe type: default -'840180': +"840180": installDir: On Board 4 PC launch: - config: oslist: windows executable: On Board 4 PC.exe type: default -'840190': {} -'840210': +"840190": {} +"840210": installDir: Mansions of Madness launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ArkhamHorror.exe type: default -'840230': +"840230": installDir: Chicken ~Boiled Egg~ launch: - executable: BoiledEgg.exe type: default -'840240': +"840240": installDir: Mosaic Game of Gods II launch: - config: oslist: windows executable: MosaicGameOfGodsII.exe type: none -'840250': {} -'840260': +"840250": {} +"840260": installDir: EndlessWorld launch: - config: @@ -384695,8 +379134,8 @@ oslist: macos executable: EndlessWorld.app type: default -'840270': {} -'840290': +"840270": {} +"840290": installDir: Pendula Swing launch: - config: @@ -384707,14 +379146,14 @@ oslist: macos executable: PendulaSwing.app type: default -'840300': +"840300": installDir: Supralympic Runners launch: - config: oslist: windows executable: SupralympicRunners.exe type: default -'840310': +"840310": installDir: SLICE launch: - config: @@ -384728,25 +379167,25 @@ executable: SLICE.app type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: SLICE.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: SLICE.x86_64 type: default -'840340': {} -'840370': - installDir: Someday You'll Return +"840340": {} +"840370": + installDir: "Someday You'll Return" launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TheForest.exe type: default -'840380': +"840380": installDir: Quible Sphere launch: - config: @@ -384758,16 +379197,16 @@ executable: Quible Sphere.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Quible Sphere.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Quible Sphere.x86 type: default -'840390': +"840390": installDir: Spacebase Startopia launch: - config: @@ -384782,12 +379221,12 @@ oslist: linux executable: SpacebaseStartopia.x86_64 type: default -'840410': +"840410": installDir: Mushroom Heroes launch: - executable: MushroomHeroes.exe type: none -'840430': +"840430": installDir: Planetary Dustoff launch: - config: @@ -384798,40 +379237,40 @@ oslist: macos executable: Planetary Dustoff.app/Contents/MacOS/Planetary Dustoff type: default -'840440': +"840440": installDir: Good Boy! launch: - config: oslist: windows executable: GGame.exe type: none -'840500': - installDir: Dictator's dreams +"840500": + installDir: "Dictator's dreams" launch: - executable: dream.exe type: default -'840510': +"840510": installDir: Furious Drivers launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: FuriousDrivers.exe type: default -'840580': +"840580": installDir: Virtual Foosball launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: VirtualFoosball.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: VirtualFoosballWin32.exe type: default -'840590': +"840590": installDir: ANOIX launch: - config: @@ -384842,7 +379281,7 @@ oslist: macos executable: Anoix.app type: default -'840610': +"840610": installDir: Fortune-499 launch: - config: @@ -384853,110 +379292,110 @@ oslist: macos executable: Fortune-499.app type: default -'840620': +"840620": installDir: Geometry Boxer launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: GeometryBoxerV1-3Windows64.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: GeometryBoxerV1-3Windows32.exe type: default - config: oslist: macos description: 64 Bit - executable: GeometryBoxerV1-6Mac64.app\\Contents\\MacOS\\Geometry Boxer + executable: "GeometryBoxerV1-6Mac64.app\\\\Contents\\\\MacOS\\\\Geometry Boxer" type: default -'840690': +"840690": installDir: Setup Developer Tool 2018 launch: - config: oslist: windows executable: SetupDev2018.exe type: none -'840700': +"840700": installDir: Qvabllock launch: - config: oslist: windows executable: nw.exe type: default -'840710': +"840710": installDir: Trivia Vault Tennis Trivia launch: - config: oslist: windows executable: Trivia Vault Tennis Trivia.exe type: default -'840720': +"840720": installDir: Sword Art Online Lost Song launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SAOLS.exe type: default -'840730': +"840730": installDir: The Sandbox of God Legacy Edition launch: - config: oslist: windows executable: SOG_R.exe type: default -'840790': +"840790": installDir: The_Firlyn_Stones launch: - config: oslist: windows - executable: windows_content\\The_Firlyn_Stones\\TFS_Multiplayer.exe + executable: "windows_content\\\\The_Firlyn_Stones\\\\TFS_Multiplayer.exe" type: default -'840800': +"840800": installDir: Outlaws of the Old West launch: - arguments: EXEC=disableallscreenmessages config: betakey: default - executable: Outlaws\\Binaries\\Win64\\Outlaws-Win64-Shipping_BE.exe + executable: "Outlaws\\\\Binaries\\\\Win64\\\\Outlaws-Win64-Shipping_BE.exe" type: default - config: betakey: development - executable: Outlaws\\Binaries\\Win64\\Outlaws-Win64-Shipping_BE.exe + executable: "Outlaws\\\\Binaries\\\\Win64\\\\Outlaws-Win64-Shipping_BE.exe" type: none -'840810': +"840810": installDir: Data_Ball launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Data_Ball.exe type: default -'840820': {} -'840830': +"840820": {} +"840830": installDir: Noonie launch: - config: oslist: windows executable: Project_rogue_1_42.exe type: default -'840840': +"840840": installDir: CCS1 launch: - config: oslist: windows executable: CCS1.exe type: default -'840860': +"840860": installDir: NoRentPaid launch: - config: oslist: windows executable: NoRentPaid.exe type: vr -'840880': +"840880": installDir: Camped Out launch: - config: @@ -384965,33 +379404,33 @@ type: default - config: oslist: macos - executable: CampedOut.app\\Contents\\MacOS\\CampedOut + executable: "CampedOut.app\\\\Contents\\\\MacOS\\\\CampedOut" type: default -'840890': {} -'840910': - installDir: 'Save her, from dreams' +"840890": {} +"840910": + installDir: "Save her, from dreams" launch: - config: oslist: windows - executable: 'Save her, from dreams.exe' + executable: "Save her, from dreams.exe" type: default - config: oslist: macos - executable: 'Save her, from dreams.app\\Contents\\MacOS\\Save her, from dreams' + executable: "Save her, from dreams.app\\\\Contents\\\\MacOS\\\\Save her, from dreams" type: default - config: oslist: linux - executable: 'Save her, from dreams.x86_64' + executable: "Save her, from dreams.x86_64" type: default -'840920': +"840920": installDir: Asimov Laws launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Asimov Laws.exe type: default -'840930': +"840930": installDir: Bing Bong XL launch: - config: @@ -384999,60 +379438,60 @@ executable: BingBongXL.app type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: BingBongXL.x86_64 type: none - config: - osarch: '32' + osarch: "32" oslist: windows executable: BingBongXL.exe type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: BingBongXL.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: windows executable: BingBongXL.exe type: none -'840940': +"840940": installDir: SpiritsofMetropolis launch: - config: oslist: windows executable: SpiritsofMetropolis1_10.exe type: default -'840980': +"840980": installDir: Exoder launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ExoderWind64.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: ExoderWind32.exe type: default -'841010': +"841010": installDir: JackAndSara launch: - config: oslist: windows executable: JackAndSara.exe type: none -'841020': +"841020": installDir: Knockdown the Ball launch: - config: oslist: windows executable: KTB.exe type: default -'841030': +"841030": installDir: Fairy Escape launch: - config: @@ -385061,72 +379500,72 @@ type: none - config: oslist: macos - executable: Fairy Escape.app\\Contents\\MacOS\\Fairy Escape + executable: "Fairy Escape.app\\\\Contents\\\\MacOS\\\\Fairy Escape" type: none - config: oslist: linux executable: Fairy Escape.x86 type: none -'841070': {} -'841100': {} -'841110': +"841070": {} +"841100": {} +"841110": installDir: HOLY COW! Milking Simulator launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: HolyCow.exe type: none -'841120': +"841120": installDir: Wheelchair Simulator VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Wheelchair.exe type: vr -'841140': +"841140": installDir: Square Head Zombies 2 - FPS Game launch: - config: oslist: windows executable: SquareHeadsZombies2.exe type: default -'841190': - installDir: 'Honey, I Joined a Cult' +"841190": + installDir: "Honey, I Joined a Cult" launch: - config: oslist: windows - executable: 'Honey, I Joined a Cult.exe' + executable: "Honey, I Joined a Cult.exe" type: default -'841200': +"841200": installDir: Intelligence launch: - config: oslist: windows executable: Intelligence.exe type: config -'841210': +"841210": installDir: WW Fantasy launch: - executable: WW Fantasy.exe type: none -'841260': +"841260": installDir: FINAL MATCH launch: - config: oslist: windows executable: FinalMatch.exe type: default -'841270': +"841270": installDir: Trap launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows executable: Game.exe type: default -'841300': +"841300": installDir: Together launch: - config: @@ -385137,28 +379576,28 @@ oslist: windows executable: Together.exe type: default -'841320': +"841320": installDir: Whitevale Defender launch: - config: oslist: windows executable: wvd.exe type: default -'841330': {} -'841340': +"841330": {} +"841340": installDir: FightttrisVR launch: - config: oslist: windows executable: Fightris.exe type: vr -'841350': +"841350": installDir: NALOGI 2 launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" executable: Game.exe type: none -'841370': +"841370": installDir: NBA 2K19 launch: - executable: NBA2K19.exe @@ -385168,31 +379607,31 @@ description: Launch NBA 2K19 executable: NBA2K19_Launcher.exe type: none -'841410': {} -'841420': {} -'841430': {} -'841440': +"841410": {} +"841420": {} +"841430": {} +"841440": installDir: ShellBlast Legacy Edition launch: - config: oslist: windows executable: Shellblast.exe type: default -'841460': +"841460": installDir: The Great C launch: - config: oslist: windows - executable: greatc_project_ue4\\Binaries\\Win64\\greatc_project_ue4-Win64-Shipping.exe + executable: "greatc_project_ue4\\\\Binaries\\\\Win64\\\\greatc_project_ue4-Win64-Shipping.exe" type: vr -'841470': +"841470": installDir: greenTech Legacy Edition launch: - config: oslist: windows executable: greentech.exe type: default -'841500': +"841500": installDir: Sheep Game launch: - config: @@ -385200,11 +379639,11 @@ executable: Sheep Game.app type: none - config: - osarch: '64' + osarch: "64" oslist: windows executable: nw.exe type: none -'841570': +"841570": installDir: BlindMaze launch: - config: @@ -385215,7 +379654,7 @@ oslist: windows executable: BlindMaze.exe type: none -'841580': +"841580": installDir: Realmstone launch: - config: @@ -385223,8 +379662,8 @@ description: Launch executable: Realmstone.exe type: default -'841590': {} -'841600': +"841590": {} +"841600": installDir: AuraOfWorlds launch: - config: @@ -385233,7 +379672,7 @@ executable: AuraOfWorlds_MonoGame.exe type: option1 - config: - osarch: '64' + osarch: "64" oslist: linux description: Aura of Worlds - Launch option 1 executable: MacAndLinux/AuraOfWorlds_Linux_Ubuntu @@ -385246,7 +379685,7 @@ type: option1 workingdir: MacAndLinux - config: - osarch: '64' + osarch: "64" oslist: linux description: Aura of Worlds - Launch option 2 executable: MacAndLinux/Launch_LinuxAOW.sh @@ -385258,7 +379697,7 @@ executable: MacAndLinux/AuraOfWorlds_MacLaunch.command type: option2 workingdir: MacAndLinux -'841660': +"841660": installDir: The Treehouse Man launch: - config: @@ -385267,17 +379706,17 @@ type: none - config: oslist: macos - executable: thetreehouseman.app\\Contents\\MacOS\\Mac_Runner + executable: "thetreehouseman.app\\\\Contents\\\\MacOS\\\\Mac_Runner" type: none - config: oslist: linux executable: run.sh type: none -'841680': +"841680": installDir: Hazmat Hijinks launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Hazmat Hijinks.exe type: default @@ -385285,7 +379724,7 @@ oslist: macos executable: Hazmat Hijinks.app type: default -'841770': +"841770": installDir: Siralim 3 launch: - config: @@ -385300,42 +379739,40 @@ oslist: macos executable: Siralim 3.app type: default -'841790': +"841790": installDir: ADVENTURES IN THE LIGHT & DARK launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Adventures.exe type: default - - arguments: '-vr' + - arguments: "-vr" config: - osarch: '64' + osarch: "64" oslist: windows executable: Adventures.exe type: vr - config: oslist: windows description: Bonus Features - description_loc: - english: Bonus Features executable: BonusFeatures.bat type: none -'841800': +"841800": installDir: Super Hero VR launch: - config: oslist: windows executable: game.exe type: vr -'841830': +"841830": installDir: Semi Sweet Tofu launch: - config: oslist: windows executable: tofu.exe type: default -'841840': +"841840": installDir: Escape From Cozy Island launch: - config: @@ -385344,27 +379781,27 @@ type: default - config: oslist: macos - executable: Escape From Cozy Island.app\\Contents\\MacOS\\Escape From Cozy Island + executable: "Escape From Cozy Island.app\\\\Contents\\\\MacOS\\\\Escape From Cozy Island" type: default -'841860': {} -'841870': +"841860": {} +"841870": installDir: Guardian of Immortal Mountain launch: - config: oslist: windows executable: Guardian of Immortal Mountain.exe type: vr -'841950': +"841950": installDir: Echoes III launch: - executable: e3.exe type: none -'841970': +"841970": installDir: Play Top Frag launch: - executable: PlayTopFrag.exe type: none -'841980': +"841980": installDir: Avalon Legends Solitaire 3 launch: - config: @@ -385375,7 +379812,7 @@ oslist: macos executable: Avalon Legends Solitaire 3.app type: default -'842030': +"842030": installDir: Not So Middle Ages launch: - config: @@ -385386,7 +379823,7 @@ oslist: macos executable: Not So Middle Ages.app/Contents/MacOS/Not So Middle Ages type: none -'842070': +"842070": installDir: FantasyDynasty Le château DERETIC launch: - config: @@ -385394,22 +379831,22 @@ description: Launch executable: Game.exe type: none -'842080': +"842080": installDir: Rabbit Valley Legend launch: - config: - osarch: '64' + osarch: "64" executable: Rabbit Valley Legend.exe type: vr -'842100': +"842100": installDir: Daymare 1998 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Daymare_MASTER.exe type: default -'842120': +"842120": installDir: New_Project_08 launch: - config: @@ -385417,15 +379854,15 @@ oslist: windows executable: Arca_OpenVRSteam.exe type: vr -'842130': +"842130": installDir: Sunny Smiles launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: GameSmail type: default -'842140': +"842140": installDir: Kittend launch: - arguments: KittendSteam @@ -385435,17 +379872,17 @@ type: default - arguments: KittendSteam config: - osarch: '64' + osarch: "64" oslist: windows executable: KIT.exe type: vr - arguments: KittendSteam config: - osarch: '64' + osarch: "64" oslist: windows executable: KIT.exe type: othervr -'842150': +"842150": installDir: Wild West Saga launch: - config: @@ -385454,13 +379891,13 @@ type: default - config: oslist: macos - executable: \\wildwest.app\\Contents\\MacOS\\wildwest + executable: "\\\\wildwest.app\\\\Contents\\\\MacOS\\\\wildwest" type: default - config: oslist: linux executable: wildwest.x86 type: default -'842170': +"842170": installDir: Hyperspace Dogfights launch: - config: @@ -385471,7 +379908,7 @@ oslist: linux executable: Hyperspace Dogfights type: default -'842180': +"842180": installDir: Prison Simulator launch: - config: @@ -385480,71 +379917,71 @@ type: default nameLocalized: schinese: 监狱模拟器 | Prison Simulator -'842190': +"842190": installDir: jhxkx launch: - config: oslist: windows executable: jhxkx.exe type: default -'842220': {} -'842250': +"842220": {} +"842250": installDir: GM Forge - Virtual Tabletop launch: - config: oslist: windows executable: gmforge.exe type: default -'842270': +"842270": installDir: Formula X launch: - config: oslist: windows executable: FormulaXv2.exe type: none -'842290': +"842290": installDir: ArcBall 2 launch: - executable: ArcBall 2.exe type: default -'842310': {} -'842350': +"842310": {} +"842350": installDir: Escape Code launch: - config: oslist: macos - executable: EscapeCode.app\\Contents\\MacOS\\EscapeCode + executable: "EscapeCode.app\\\\Contents\\\\MacOS\\\\EscapeCode" type: default -'842420': +"842420": installDir: A Walk in the Woods launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: WalkInTheWoods.exe type: default -'842430': +"842430": installDir: StarGirls launch: - config: oslist: macos - executable: StarGirls.app\\Contents\\MacOS\\StarGirls + executable: "StarGirls.app\\\\Contents\\\\MacOS\\\\StarGirls" type: default - config: oslist: windows executable: StarGirls.exe type: default -'842440': {} -'842470': +"842440": {} +"842470": installDir: Cranes launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: cranes.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: crane type: default @@ -385552,7 +379989,7 @@ oslist: macos executable: crane.app/Contents/MacOS/crane type: default -'842490': +"842490": installDir: BOXiGON1 launch: - config: @@ -385560,49 +379997,49 @@ description: Launching BOXiGON1... executable: BOXiGON.exe type: default -'842500': +"842500": installDir: Kickshot launch: - config: oslist: windows executable: Kickshot.exe type: default -'842510': +"842510": installDir: Survival Maze launch: - config: oslist: windows executable: SurvivalMaze.exe type: default -'842520': +"842520": installDir: Neon Void Runner launch: - config: oslist: windows executable: NeonVoidRunner.exe type: default -'842530': +"842530": installDir: Police Patrol launch: - config: oslist: windows executable: PolicePatrol.exe type: default -'842560': +"842560": installDir: War Hunter launch: - config: oslist: windows executable: WarHunter.exe type: default -'842590': +"842590": installDir: Knight Fighter launch: - config: oslist: windows executable: KnightFighter.exe type: default -'842620': +"842620": installDir: Funny Yo launch: - config: @@ -385612,22 +380049,22 @@ type: option1 - config: oslist: windows - ownsdlc: '842650' + ownsdlc: "842650" description: FunnyYo 2 executable: FunnyYo2.exe type: option2 - config: oslist: windows - ownsdlc: '842651' + ownsdlc: "842651" description: FunnyYo 3 executable: FunnyYo3.exe type: option3 -'842640': +"842640": installDir: Deadly Tropics launch: - executable: Zombies.exe type: none -'842750': +"842750": installDir: Galaxy Champions TV launch: - config: @@ -385640,23 +380077,23 @@ type: default - config: oslist: macos - executable: GalaxyChampionsTV.app\\Contents\\MacOS\\GalaxyChampionsTV + executable: "GalaxyChampionsTV.app\\\\Contents\\\\MacOS\\\\GalaxyChampionsTV" type: default -'842760': +"842760": installDir: Highscore Processing Unit launch: - config: oslist: windows executable: HPU.exe type: default -'842770': +"842770": installDir: Deadfall Tropics launch: - config: oslist: windows executable: Deadfall Tropics.exe type: default -'842780': +"842780": installDir: NavalArt launch: - config: @@ -385668,16 +380105,16 @@ betakey: alphatest0.5 oslist: windows description: MultiplayerTest - executable: NetworkTest\\NetworkTest.exe + executable: "NetworkTest\\\\NetworkTest.exe" type: none -'842810': +"842810": installDir: merufore launch: - config: oslist: windows executable: merufore_for_win.exe type: default -'842850': +"842850": installDir: Newt One launch: - config: @@ -385688,7 +380125,7 @@ oslist: macos executable: Contents/MacOS/NewtOne-MacOS type: none -'842870': +"842870": installDir: Lords of Strife launch: - config: @@ -385697,62 +380134,62 @@ type: default - config: oslist: macos - executable: Lords of Strife.app\\Contents\\MacOS\\Lords of Strife + executable: "Lords of Strife.app\\\\Contents\\\\MacOS\\\\Lords of Strife" type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Lords of Strife.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Lords of Strife.x86 type: default -'842910': +"842910": installDir: The Missing launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TheMISSING.exe type: default -'842990': +"842990": installDir: Taco Gun launch: - config: oslist: windows executable: Taco Gun.exe type: default -'843010': +"843010": installDir: OrbLabsInc launch: - config: oslist: windows executable: OrbLabsInc.exe type: vr -'843020': +"843020": installDir: Hipster Cafe launch: - config: oslist: windows executable: Hipster Cafe.exe -'843040': +"843040": installDir: RECOG The First Wave launch: - config: oslist: windows executable: Recog.exe type: none - - arguments: '-screen-fullscreen 0 -screen-width 800 -screen-height 600' + - arguments: "-screen-fullscreen 0 -screen-width 800 -screen-height 600" config: - osarch: '32' + osarch: "32" oslist: linux executable: Recog.x86 type: none - - arguments: '-screen-fullscreen 0 -screen-width 800 -screen-height 600' + - arguments: "-screen-fullscreen 0 -screen-width 800 -screen-height 600" config: - osarch: '64' + osarch: "64" oslist: linux executable: Recog.x86_64 type: none @@ -385760,77 +380197,77 @@ oslist: macos executable: Recog.app type: none -'843050': +"843050": installDir: North Stars launch: - - arguments: '-windowed' + - arguments: "-windowed" config: oslist: windows executable: NS.exe type: default -'843080': +"843080": installDir: VR Hero Sentry launch: - executable: VR Hero Sentry.exe type: vr -'843120': +"843120": installDir: Joyo Kanji Quiz launch: - config: oslist: windows executable: kanji.exe type: default -'843130': +"843130": installDir: Squirgle launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: squirgle.exe type: default - config: oslist: macos - executable: squirgle.app\\Contents\\MacOS\\squirgle + executable: "squirgle.app\\\\Contents\\\\MacOS\\\\squirgle" type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: squirgle.x64 type: default -'843160': +"843160": installDir: The Lift launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: The Lift.exe type: none -'843170': +"843170": installDir: I L L U S I O N launch: - config: oslist: windows executable: RPG_RT.exe type: default -'843190': +"843190": installDir: Z Escape launch: - config: oslist: windows executable: Z_Escape_HD.exe type: default -'843200': {} -'843210': {} -'843250': +"843200": {} +"843210": {} +"843250": installDir: The Last DeadEnd launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TheLastDeadEnd.exe type: default -'843260': - installDir: The Bard's Tale Trilogy +"843260": + installDir: "The Bard's Tale Trilogy" launch: - config: oslist: windows @@ -385840,33 +380277,33 @@ oslist: macos executable: TheBardsTaleTrilogy.app type: none -'843270': +"843270": installDir: Flapping Over It launch: - config: oslist: windows executable: FlappingOverIt.exe type: default -'843280': {} -'843360': +"843280": {} +"843360": installDir: Rift Keeper launch: - config: oslist: windows executable: Rift Keeper.exe type: default -'843370': +"843370": installDir: GravityWellReleaseBuild launch: - config: oslist: windows executable: GravityWell_1.1.exe type: default -'843380': +"843380": installDir: Super Animal Royale launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Super Animal Royale.exe type: default @@ -385874,29 +380311,29 @@ oslist: macos executable: Super Animal Royale.app/Contents/MacOS/Super Animal Royale type: default -'843390': +"843390": installDir: Vertigo 2 launch: - config: oslist: windows executable: vertigo2.exe type: vr -'843400': +"843400": installDir: Distant castle launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: GAME.exe type: default -'843420': +"843420": installDir: Supermarket VR launch: - config: oslist: windows executable: SupermarketVR.exe type: vr -'843430': +"843430": installDir: Righty Tighty XL launch: - config: @@ -385904,26 +380341,26 @@ executable: RightyTightyXL.app type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: RightyTightyXL.x86_64 type: none - config: - osarch: '32' + osarch: "32" oslist: windows executable: RightyTightyXL.exe type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: RightyTightyXL.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: windows executable: RightyTightyXL.exe type: none -'843440': +"843440": installDir: Pivot XL launch: - config: @@ -385931,33 +380368,33 @@ executable: PivotXL.app type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: PivotXL.x86_64 type: none - config: - osarch: '32' + osarch: "32" oslist: windows executable: PivotXL.exe type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: PivotXL.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: windows executable: PivotXL.exe type: none -'843500': +"843500": installDir: God Vs Zombies launch: - config: oslist: windows executable: godvszombies.exe type: default -'843510': +"843510": installDir: Colony Prospector launch: - config: @@ -385966,22 +380403,22 @@ type: default - config: oslist: macos - executable: Game.app\\Contents\\MacOS\\nwjs + executable: "Game.app\\\\Contents\\\\MacOS\\\\nwjs" type: default - config: oslist: linux executable: Game type: default -'843520': +"843520": installDir: The Last Front launch: - config: oslist: windows executable: The Last Front.exe type: default -'843530': {} -'843570': {} -'843580': +"843530": {} +"843570": {} +"843580": installDir: DotLine launch: - config: @@ -385996,7 +380433,7 @@ oslist: macos executable: DotLine.app/Contents/MacOS/DotLine type: none -'843590': +"843590": installDir: GhostGame launch: - config: @@ -386005,16 +380442,16 @@ type: default - config: oslist: macos - executable: Ghostgame.app\\Contents\\MacOS\\Mac_Runner + executable: "Ghostgame.app\\\\Contents\\\\MacOS\\\\Mac_Runner" type: default -'843620': +"843620": installDir: The Forest Below launch: - config: oslist: windows executable: ForestBelow.exe type: none -'843630': +"843630": installDir: Project RAT launch: - config: @@ -386022,78 +380459,78 @@ description: Game executable: Project RAT.exe type: default -'843640': +"843640": installDir: WEscape launch: - executable: WEscape.exe type: default -'843650': +"843650": installDir: Sophont launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: WindowsNoEditor\\Sophont.exe + executable: "WindowsNoEditor\\\\Sophont.exe" type: default -'843660': +"843660": installDir: Rogue Agent launch: - config: oslist: windows executable: RogueAgent.exe type: default -'843700': +"843700": installDir: El Taco Diablo launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: El Taco Diablo executable: El Taco Diablo.exe type: none -'843720': +"843720": installDir: Dissimilated_Land launch: - executable: mx01.exe type: default -'843730': +"843730": installDir: Infected Battlegrounds launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Infected Battlegrounds.exe type: default -'843740': +"843740": installDir: HellStar Squadron launch: - config: oslist: windows executable: HellStarSquadron.exe type: default -'843760': +"843760": installDir: Kemonomichi-White Moment- launch: - config: oslist: windows - executable: kemonomichi_white_engsub\\game\\kemonomichi_white_engsub.exe + executable: "kemonomichi_white_engsub\\\\game\\\\kemonomichi_white_engsub.exe" type: default -'843780': +"843780": installDir: City Builder launch: - config: oslist: windows executable: City Builder.exe type: default -'843790': +"843790": installDir: How long can human beings exist launch: - config: oslist: windows executable: content.exe type: default -'843810': - installDir: ' A Perfect Day' +"843810": + installDir: " A Perfect Day" launch: - config: oslist: windows @@ -386108,55 +380545,55 @@ sc_schinese: 完美的一天 schinese: 完美的一天 tchinese: 完美的一天 -'843820': +"843820": installDir: TheShootOutGame launch: - executable: theshootoutgame.exe type: default -'843830': +"843830": installDir: HuntWithFriends launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: HuntWithFriends.exe type: none -'843840': +"843840": installDir: Space Orb launch: - config: oslist: windows executable: Spaceorb.exe type: default -'843850': {} -'843860': +"843850": {} +"843860": installDir: When They Arrived launch: - config: oslist: windows executable: When They Arrived.exe type: none -'843870': +"843870": installDir: Card Games Mega Collection launch: - config: oslist: windows executable: CardGames_MegaCollection.exe type: default -'843890': +"843890": installDir: WIN THE GAME! 2 launch: - executable: WIN THE GAME 2.exe type: default -'843900': - installDir: Demon's Rise - War for the Deep +"843900": + installDir: "Demon's Rise - War for the Deep" launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: Demon's Rise War for the Deep.exe + executable: "Demon's Rise War for the Deep.exe" type: default -'843920': +"843920": installDir: Hungry Piggy vs Chicken launch: - config: @@ -386167,36 +380604,36 @@ oslist: macos executable: HungryPiggyVsChicken.app type: default -'843930': +"843930": installDir: Cyadonia launch: - config: oslist: windows executable: cyadonia.exe type: default -'843980': +"843980": installDir: VortexRush launch: - config: oslist: windows executable: VortexRush.exe type: default -'843990': +"843990": installDir: Bullet Hell ADVANCED launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: BulletHellAdvanced.exe type: default -'844020': +"844020": installDir: Bundle launch: - - description: 'Bouncing DVD : The Game' - executable: Bouncing DVD The Game\\BouncingDVDThe Game.exe + - description: "Bouncing DVD : The Game" + executable: "Bouncing DVD The Game\\\\BouncingDVDThe Game.exe" type: option1 - - description: 'Jason''s Just Job 1 ' - executable: Jason's Just Job 1/Jason's Just Job Pizza.exe + - description: "Jason's Just Job 1 " + executable: "Jason's Just Job 1/Jason's Just Job Pizza.exe" type: option2 - description: MissinGoinGone executable: MISSINGOINGONE/MISSINGOINGONE.exe @@ -386204,28 +380641,28 @@ - description: Play Play The Game executable: Play The Game/Play The Game.exe type: none -'844030': +"844030": installDir: Codename Ghost Hunt launch: - config: oslist: windows executable: CGH/CGH.exe type: default -'844040': +"844040": installDir: RUSH launch: - - arguments: '-vrmode openvr' + - arguments: "-vrmode openvr" config: - osarch: '64' + osarch: "64" oslist: windows executable: Rush.exe type: vr - config: - osarch: '64' + osarch: "64" oslist: windows executable: Rush.exe type: othervr -'844050': +"844050": installDir: Desert Child launch: - config: @@ -386240,38 +380677,38 @@ oslist: linux executable: Desert_Child type: none -'844080': {} -'844090': +"844080": {} +"844090": installDir: Piano Simulator launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Piano Simulator.exe type: default -'844130': +"844130": installDir: Future Proof launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows executable: Future Proof.exe type: default -'844140': +"844140": installDir: Trivia Vault Soccer Trivia launch: - config: oslist: windows executable: Trivia Vault Soccer Trivia.exe type: default -'844160': +"844160": installDir: Chocolate makes you happy 5 launch: - config: oslist: windows executable: Chocolate makes you happy 5.exe type: default -'844180': +"844180": installDir: Slab launch: - config: @@ -386280,13 +380717,13 @@ type: default - config: oslist: macos - executable: Slab.app\\Contents\\MacOS\\Slab + executable: "Slab.app\\\\Contents\\\\MacOS\\\\Slab" type: default - config: oslist: linux executable: Slab.x86.x86_64 type: default -'844210': +"844210": installDir: Titty Crush launch: - config: @@ -386295,21 +380732,21 @@ type: default - config: oslist: macos - executable: TittyCrush.app\\Contents\\MacOS\\TittyCrush + executable: "TittyCrush.app\\\\Contents\\\\MacOS\\\\TittyCrush" type: default - config: oslist: linux executable: TittyCrush.x64 type: default -'844250': +"844250": installDir: GameMasterMAGUS launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: GameMasterMAGUS.exe type: default -'844260': +"844260": installDir: Rustler launch: - config: @@ -386320,7 +380757,7 @@ oslist: macos executable: Rustler.app type: none -'844290': +"844290": installDir: Sniper Squad Mission launch: - config: @@ -386329,9 +380766,9 @@ type: none - config: oslist: macos - executable: Sniper Squad Mission.app\\Contents\\MacOS\\Sniper Squad Mission + executable: "Sniper Squad Mission.app\\\\Contents\\\\MacOS\\\\Sniper Squad Mission" type: none -'844300': +"844300": installDir: Demolition Engineer launch: - config: @@ -386340,9 +380777,9 @@ type: default - config: oslist: macos - executable: Demolition Engineer.app\\Contents\\MacOS\\Demolition Engineer + executable: "Demolition Engineer.app\\\\Contents\\\\MacOS\\\\Demolition Engineer" type: default -'844310': +"844310": installDir: Curling World Cup launch: - config: @@ -386351,21 +380788,21 @@ type: none - config: oslist: macos - executable: Curling World Cup.app\\Contents\\MacOS\\Curling World Cup + executable: "Curling World Cup.app\\\\Contents\\\\MacOS\\\\Curling World Cup" type: none -'844330': +"844330": installDir: The Goatman launch: - config: oslist: windows executable: The Goatman.exe type: none -'844350': +"844350": installDir: Obscurity launch: - executable: Obscurity.exe type: none -'844380': +"844380": installDir: Cave Digger launch: - config: @@ -386376,19 +380813,19 @@ oslist: windows executable: CaveDigger.exe type: othervr -'844420': - installDir: Demon's Rise - Lords of Chaos +"844420": + installDir: "Demon's Rise - Lords of Chaos" launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: Demon's Rise Lords of Chaos.exe + executable: "Demon's Rise Lords of Chaos.exe" type: default -'844440': +"844440": installDir: TIGL3D launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TIGL3D.exe type: default @@ -386396,40 +380833,40 @@ oslist: macos executable: TIGL3D.app/Contents/MacOS/TIGL3D type: default -'844490': +"844490": installDir: Rhombus Legends launch: - config: oslist: windows executable: Rhombus_Legends.exe type: default -'844520': +"844520": installDir: recoil launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: recoil.exe type: default -'844540': {} -'844580': +"844540": {} +"844580": installDir: Jungle Juggle launch: - config: oslist: windows executable: Jungle_Juggle.exe type: default -'844590': +"844590": installDir: Hypnospace Outlaw launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: HypnOS Win64 executable: HypnOS.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows description: HypnOS Win32 executable: HypnOS.exe @@ -386440,33 +380877,33 @@ executable: HypnOS.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux description: HypnOS Linux32 executable: HypnOS type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: HypnOS Linux64 executable: HypnOS type: default -'844610': +"844610": installDir: Hentai PuZZles launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: HentaiPuZZles.exe type: default -'844620': +"844620": installDir: Odyssee launch: - config: oslist: windows executable: Odyssee.exe type: none -'844660': +"844660": installDir: Heart of the Woods launch: - config: @@ -386483,39 +380920,39 @@ type: default nameLocalized: schinese: 森灵之心 -'844730': {} -'844740': +"844730": {} +"844740": installDir: SCARF launch: - config: oslist: windows executable: Scarf.exe type: default -'844750': +"844750": installDir: Go-Kart Racing launch: - config: oslist: windows executable: gokartracing.exe type: none -'844760': +"844760": installDir: The Armclaw Experiment launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: armclaw.exe type: vr -'844800': {} -'844820': +"844800": {} +"844820": installDir: Ocean Wonder VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Aquarium_SteamPC.exe type: vr -'844850': +"844850": installDir: Tower Hunter launch: - config: @@ -386523,12 +380960,12 @@ executable: TowerHunter.exe type: none nameLocalized: - english: 'Tower Hunter: Erza''s Trial' + english: "Tower Hunter: Erza's Trial" japanese: タワーハンター ~エルザの試練~ russian: Охотник на Башню ~Испытание Эльзы~ - schinese: 'Tower Hunter: Erza''s Trial' + schinese: "Tower Hunter: Erza's Trial" tchinese: 塔獵手 ~艾爾莎的試煉~ -'844860': +"844860": installDir: Tank Operations launch: - config: @@ -386537,64 +380974,64 @@ type: default - config: betakey: internal - osarch: '64' + osarch: "64" oslist: windows executable: tankoperations64.exe type: default - config: betakey: internal - osarch: '32' + osarch: "32" oslist: windows executable: tankoperations32.exe type: default - config: betakey: early_adopter - osarch: '64' + osarch: "64" oslist: windows executable: tankoperations64.exe type: default - config: betakey: early_adopter - osarch: '32' + osarch: "32" oslist: windows executable: tankoperations32.exe type: default -'844870': +"844870": installDir: KurtzPel launch: - config: betakey: default - osarch: '64' + osarch: "64" oslist: windows executable: TheChase.exe type: default - - arguments: '-ZoneCode=qa1' + - arguments: "-ZoneCode=qa1" config: betakey: qa-version - osarch: '64' + osarch: "64" oslist: windows executable: TheChase.exe type: default - - arguments: '-ZoneCode=qa2' + - arguments: "-ZoneCode=qa2" config: betakey: qa2-version - osarch: '64' + osarch: "64" oslist: windows executable: TheChase.exe type: default -'844900': +"844900": installDir: Director of Football launch: - executable: dof_uk.exe type: default -'844920': +"844920": installDir: Fortissimo FA launch: - config: oslist: windows executable: fortissimo_fa.exe type: none -'844930': +"844930": installDir: FoxHimeZero launch: - config: @@ -386605,48 +381042,48 @@ oslist: macos executable: FoxHimeZero.app/Contents/MacOS/FoxHimeZero type: none -'844950': +"844950": installDir: Eternal Fantasy launch: - config: oslist: windows executable: game.exe type: none -'844970': +"844970": installDir: Cowboy Attack of Wild Animal launch: - config: oslist: windows executable: Cowboy Attack of Wild Animal.exe type: none -'844980': +"844980": installDir: I Am Your President launch: - config: oslist: windows executable: I Am Your President.exe type: default -'844990': +"844990": installDir: Drone Striker launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: FlyerFighting.exe type: vr - config: - osarch: '64' + osarch: "64" oslist: windows executable: FlyerFighting.exe type: othervr -'845030': +"845030": installDir: Evergate launch: - config: oslist: windows executable: Evergate.exe type: default -'845040': +"845040": installDir: AegisM launch: - config: @@ -386654,46 +381091,46 @@ executable: AegisM.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: AegisM.x86_64 type: default -'845050': +"845050": installDir: Last Regiment launch: - config: oslist: windows executable: LastRegiment.exe type: none -'845060': {} -'845070': +"845060": {} +"845070": installDir: CaptainSpirit launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: The Awesome Adventures of Captain Spirit - executable: CaptainSpirit\\Binaries\\Win64\\CaptainSpirit-Win64-Shipping.exe + executable: "CaptainSpirit\\\\Binaries\\\\Win64\\\\CaptainSpirit-Win64-Shipping.exe" type: option1 - config: betakey: se_ext - osarch: '64' + osarch: "64" oslist: windows description: Captain Spirit (test exe) - executable: CaptainSpirit\\Binaries\\Win64\\CaptainSpirit-Win64-Shipping.exe + executable: "CaptainSpirit\\\\Binaries\\\\Win64\\\\CaptainSpirit-Win64-Shipping.exe" type: option1 -'845080': {} -'845090': {} -'845110': +"845080": {} +"845090": {} +"845110": installDir: Snakelike launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Snakelike.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: Snakelike.exe type: default @@ -386701,23 +381138,23 @@ oslist: macos executable: Snakelike.app type: default -'845150': +"845150": installDir: Vietnam War PuZZles launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: VietnamPuzles.exe type: default -'845170': +"845170": installDir: Block Smashers launch: - config: oslist: windows executable: BlockSmashersVR.exe type: vr -'845180': {} -'845200': +"845180": {} +"845200": installDir: Weapon of War Getting Over It with Weapon and Shield Extended launch: - config: @@ -386726,14 +381163,14 @@ type: default - config: oslist: macos - executable: Weapon of War.app\\Contents\\MacOS\\Weapon of War + executable: "Weapon of War.app\\\\Contents\\\\MacOS\\\\Weapon of War" type: none - config: - osarch: '64' + osarch: "64" oslist: linux - executable: Weapon of War.linux\\Weapon of War.x86_64 + executable: "Weapon of War.linux\\\\Weapon of War.x86_64" type: none -'845250': +"845250": installDir: Fish Tycoon 2 Virtual Aquarium launch: - config: @@ -386744,16 +381181,16 @@ oslist: macos executable: Virtual Fish Tycoon.app type: none -'845270': +"845270": installDir: Mirror Drop launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: MirrorDrop.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: MirrorDrop type: default @@ -386761,7 +381198,7 @@ oslist: macos executable: Mirror Drop.app/Contents/MacOS/MirrorDrop type: default -'845290': +"845290": installDir: Destructions launch: - config: @@ -386769,24 +381206,24 @@ description: Launch executable: Destructions.exe type: default -'845300': {} -'845330': +"845300": {} +"845330": installDir: Sign Here _________ launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SignHere_________ type: vr -'845350': +"845350": installDir: Color Path launch: - config: oslist: windows executable: Color Path.exe type: default -'845370': {} -'845380': +"845370": {} +"845380": installDir: Instinct launch: - config: @@ -386801,22 +381238,22 @@ oslist: macos executable: Instinct.app type: none -'845390': +"845390": installDir: Ride To Canada launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ride_to_canada.exe type: default -'845400': +"845400": installDir: Club Dance Party VR launch: - config: oslist: windows executable: VR_ClubDance.exe type: vr -'845440': +"845440": installDir: World Of Walking Cities launch: - config: @@ -386827,8 +381264,8 @@ oslist: macos executable: World Of Walking Cities.app/Contents/MacOS/World Of Walking Cities type: none -'845450': {} -'845460': +"845450": {} +"845460": installDir: Make Route launch: - config: @@ -386838,18 +381275,18 @@ type: default - config: oslist: macos - executable: MakeRoute.app\\Contents\\MacOS\\Mac_Runner + executable: "MakeRoute.app\\\\Contents\\\\MacOS\\\\Mac_Runner" type: default -'845480': +"845480": installDir: Kinaman vs Gray Elephant launch: - executable: Kinaman vs Gray Elephant.exe type: default -'845490': +"845490": installDir: Resequenced launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Resequenced.exe type: default @@ -386857,25 +381294,25 @@ oslist: macos executable: Resequenced.app type: default -'845500': +"845500": installDir: Guilty Summer Kiss launch: - config: oslist: macos - executable: Guilty Summer Kiss.app\\Contents\\MacOS\\Guilty Summer Kiss + executable: "Guilty Summer Kiss.app\\\\Contents\\\\MacOS\\\\Guilty Summer Kiss" type: default - config: oslist: windows executable: Guilty Summer Kiss.exe type: default -'845510': +"845510": installDir: DiyMachinery launch: - config: oslist: windows executable: DiyMachinery.exe type: default -'845520': +"845520": installDir: Hard Work launch: - config: @@ -386890,7 +381327,7 @@ oslist: macos executable: Hard Work.app type: default -'845530': +"845530": installDir: Imperialism - The Dark Continent launch: - config: @@ -386899,13 +381336,13 @@ type: none - config: oslist: macos - executable: Imperialism - The Dark Continent.app\\Contents\\MacOS\\Imperialism - The Dark Continent + executable: "Imperialism - The Dark Continent.app\\\\Contents\\\\MacOS\\\\Imperialism - The Dark Continent" type: none -'845570': +"845570": installDir: Super Punchman launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Super Punchman.exe type: default @@ -386915,18 +381352,18 @@ executable: Mac.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch Linux or SteamOS executable: game.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch Linux or SteamOS - 64Bit executable: game.x86_64 type: default -'845590': +"845590": installDir: God is a Cube Programming Robot Cubes launch: - config: @@ -386934,76 +381371,76 @@ executable: giac.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: Linux 64 bits executable: giac.x86_64 type: default - config: oslist: macos - executable: giac.app\\Contents\\MacOS\\God_is_a_Cube-Age_of_DNA + executable: "giac.app\\\\Contents\\\\MacOS\\\\God_is_a_Cube-Age_of_DNA" type: default - config: - osarch: '32' + osarch: "32" oslist: linux description: Linux 32 bits executable: giac.x86 type: default - - arguments: '-popupwindow' + - arguments: "-popupwindow" config: oslist: windows description: with borderless window executable: giac.exe type: option1 - - arguments: '-popupwindow' + - arguments: "-popupwindow" config: - osarch: '32' + osarch: "32" oslist: linux description: with borderless window executable: giac.x86 type: option1 - - arguments: '-popupwindow' + - arguments: "-popupwindow" config: - osarch: '64' + osarch: "64" oslist: linux description: with borderless window executable: giac.x86_64 type: option1 - - arguments: '-popupwindow' + - arguments: "-popupwindow" config: oslist: macos description: with borderless window - executable: giac.app\\Contents\\MacOS\\God_is_a_Cube-Age_of_DNA + executable: "giac.app\\\\Contents\\\\MacOS\\\\God_is_a_Cube-Age_of_DNA" type: option1 -'845600': +"845600": installDir: Waking Violet launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: WakingViolet.exe type: default - config: oslist: macos - executable: WakingViolet.app\\Contents\\MacOS\\WakingViolet + executable: "WakingViolet.app\\\\Contents\\\\MacOS\\\\WakingViolet" type: default -'845610': {} -'845630': +"845610": {} +"845630": installDir: Disdoored launch: - config: oslist: windows executable: Disdoored.exe type: default -'845650': +"845650": installDir: Meteor Shower launch: - config: oslist: windows executable: meteorshower.exe type: none -'845660': {} -'845690': +"845660": {} +"845690": installDir: RatsBatsAndBones launch: - config: @@ -387011,20 +381448,20 @@ executable: RatsBatsAndBones.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: rbb.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: rbb.x86_64 type: default - config: oslist: macos - executable: rbb.app\\Contents\\MacOS\\rbb + executable: "rbb.app\\\\Contents\\\\MacOS\\\\rbb" type: default -'845700': +"845700": installDir: Mushroom The Ruckus launch: - config: @@ -387035,42 +381472,42 @@ oslist: linux executable: 64/ruckus.x86_64 type: default -'845730': +"845730": installDir: Russian Prison Sport OCHKO launch: - executable: ochko.exe type: default -'845750': - installDir: Don't Play With Dolls +"845750": + installDir: "Don't Play With Dolls" launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Dont_Play_With_Dolls type: default -'845760': {} -'845770': {} -'845820': +"845760": {} +"845770": {} +"845820": installDir: Lighter Than AR launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Win10_VRlaunch executable: LighterThanAR.exe type: vr -'845840': +"845840": installDir: LaserMaze launch: - config: oslist: windows - executable: '${lasermaze}.exe' + executable: "${lasermaze}.exe" type: none - config: oslist: macos executable: LaserMaze.app type: none -'845860': +"845860": installDir: Gem Rush launch: - config: @@ -387082,24 +381519,24 @@ executable: GemRush.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: GemRush.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: GemRush.x86 type: default -'845870': +"845870": installDir: BlackFaith launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: WindowsNoEditor\\BlackFaithMP.exe + executable: "WindowsNoEditor\\\\BlackFaithMP.exe" type: default -'845880': +"845880": installDir: TouhouScarletCuriosity launch: - config: @@ -387107,7 +381544,7 @@ description: Touhou Scarlet Curiosity executable: ScarletCuriosity.exe type: option1 - - arguments: '-forceConfig' + - arguments: "-forceConfig" config: oslist: windows description: Launcher @@ -387117,15 +381554,15 @@ japanese: 東方紅輝心 schinese: 東方紅輝心 tchinese: 東方紅輝心 -'845900': +"845900": installDir: AwakeEpisodeOne launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Awake.exe type: vr -'845940': +"845940": installDir: Brickfest launch: - config: @@ -387136,8 +381573,8 @@ oslist: linux executable: brickfest type: none -'845950': {} -'845960': +"845950": {} +"845960": installDir: FurriesScaliesBears launch: - config: @@ -387146,21 +381583,21 @@ type: default - config: oslist: macos - executable: FurriesScaliesBears.app\\Contents\\MacOS\\FurriesScaliesBears + executable: "FurriesScaliesBears.app\\\\Contents\\\\MacOS\\\\FurriesScaliesBears" type: default - config: oslist: linux executable: FurriesScaliesBears.sh type: default -'845970': +"845970": installDir: Trivia Vault Movie Trivia launch: - config: oslist: windows executable: Trivia Vault Movie Trivia.exe type: default -'846000': {} -'846010': +"846000": {} +"846010": installDir: Visceral Cubes launch: - config: @@ -387168,36 +381605,36 @@ executable: VisceralCubes.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: VisceralCubes.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: VisceralCubes.x86_64 type: default - config: oslist: macos - executable: VisceralCubes.app\\Contents\\MacOS\\VisceralCubes + executable: "VisceralCubes.app\\\\Contents\\\\MacOS\\\\VisceralCubes" type: default -'846020': +"846020": installDir: YOMOTSU launch: - config: oslist: windows executable: YOMOTSU.exe type: default -'846030': +"846030": installDir: dV Rings of Saturn launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Delta-V.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Delta-V.x86_64 type: default @@ -387205,31 +381642,31 @@ oslist: macos executable: Delta-V.app type: default -'846040': +"846040": installDir: Osternfield launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Osternfield.exe type: default -'846050': +"846050": installDir: SilentDepth launch: - config: oslist: windows executable: SilentDepth.exe type: default -'846080': +"846080": installDir: Where Thoughts Go launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch Where Thoughts Go executable: Where Thoughts Go.exe type: vr -'846110': +"846110": installDir: The friends of Ringo Ishikawa launch: - config: @@ -387238,45 +381675,45 @@ type: default - config: oslist: macos - executable: The_friends_of_Ringo_Ishikawa.app\\Contents\\MacOS\\Mac_Runner + executable: "The_friends_of_Ringo_Ishikawa.app\\\\Contents\\\\MacOS\\\\Mac_Runner" type: default -'846120': +"846120": installDir: Hello Pollution! launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: hp.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: hp.exe type: default -'846130': +"846130": installDir: Guardians Of The Past launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: 64-Bit executable: Project_Hologram.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows description: 32-Bit executable: Project_Hologram.exe type: default -'846150': {} -'846200': +"846150": {} +"846200": installDir: Bastard launch: - config: oslist: windows executable: Bastard.exe type: default -'846210': +"846210": installDir: Sea Explorer launch: - config: @@ -387285,39 +381722,39 @@ type: none - config: oslist: macos - executable: SeaExplorer.app\\Contents\\MacOS\\SeaExplorer + executable: "SeaExplorer.app\\\\Contents\\\\MacOS\\\\SeaExplorer" type: none -'846220': +"846220": installDir: Catsapults launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Catsapults.exe type: default -'846240': {} -'846250': +"846240": {} +"846250": installDir: Devious launch: - config: oslist: windows executable: Devious.exe type: default -'846320': +"846320": installDir: AI Vendetta launch: - config: oslist: windows executable: AIVendetta.exe type: default -'846330': +"846330": installDir: Forests of Augusta launch: - config: oslist: windows executable: ForestsOfAugusta.exe type: default -'846340': +"846340": installDir: Obliteracy launch: - config: @@ -387328,45 +381765,43 @@ oslist: macos executable: Obliteracy.app/Contents/MacOS/Obliteracy type: default -'846370': +"846370": installDir: OboStar launch: - config: oslist: windows executable: Obostar.exe type: default -'846430': {} -'846440': {} -'846470': +"846430": {} +"846440": {} +"846470": installDir: Moss launch: - config: oslist: windows - executable: MossGame\\Binaries\\Win64\\MossGame-Win64-Shipping.exe + executable: "MossGame\\\\Binaries\\\\Win64\\\\MossGame-Win64-Shipping.exe" type: vr - - arguments: '-nohmd -ResX=1280 -ResY=720' + - arguments: "-nohmd -ResX=1280 -ResY=720" config: betakey: experimental description: Launch Non-VR - description_loc: - english: Launch Non-VR - executable: MossGame\\Binaries\\Win64\\MossGame.exe + executable: "MossGame\\\\Binaries\\\\Win64\\\\MossGame.exe" type: default -'846490': +"846490": installDir: Dragon Defense launch: - config: oslist: windows executable: DragonDefense.exe type: none -'846530': +"846530": installDir: LifeGameSimulator launch: - config: oslist: windows executable: LifeGameSimulator.exe type: default -'846660': +"846660": installDir: cicadas_iqa launch: - config: @@ -387376,14 +381811,14 @@ nameLocalized: schinese: 蝉鸣 - 轻文版 tchinese: 蟬鳴 - 輕文版 -'846670': +"846670": installDir: Saint Slaughter X Days launch: - config: oslist: windows executable: ss10d.exe type: none -'846690': +"846690": installDir: Lost Lands Ice Spell launch: - config: @@ -387394,7 +381829,7 @@ oslist: macos executable: Lost Lands Ice Spell.app type: none -'846700': +"846700": installDir: The Legacy Prisoner launch: - config: @@ -387405,37 +381840,37 @@ oslist: macos executable: The Legacy Prisoner.app type: none -'846710': - installDir: De'Vine World of Shadows +"846710": + installDir: "De'Vine World of Shadows" launch: - config: betakey: game.exe oslist: windows executable: game.exe type: none -'846730': +"846730": installDir: Rugby 20 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Exe/Rugby.exe type: default workingdir: Exe/ - config: - osarch: '64' + osarch: "64" oslist: windows executable: Exe/ResolutionsOptions.exe type: config workingdir: Exe/ -'846750': +"846750": installDir: Catburglar launch: - config: oslist: windows executable: Catburglar.exe type: default -'846770': +"846770": installDir: DYSMANTLE launch: - config: @@ -387446,18 +381881,18 @@ oslist: macos executable: DYSMANTLE.app type: default -'846780': +"846780": installDir: JumpStream launch: - executable: JumpStream.exe type: default -'846790': {} -'846800': +"846790": {} +"846800": installDir: Diner Bros launch: - executable: Diner Bros.exe type: default -'846820': +"846820": installDir: TellMeEverything launch: - config: @@ -387472,33 +381907,33 @@ oslist: linux executable: TellMeLinux.x86_64 type: default -'846830': +"846830": installDir: PartyLine VR launch: - config: oslist: windows executable: PartyLine VR.exe type: vr -'846850': +"846850": installDir: DearCraft launch: - - arguments: '-nc -nx 500' + - arguments: "-nc -nx 500" config: oslist: windows description: 简体中文版 - executable: chs\\DearCraft.exe + executable: "chs\\\\DearCraft.exe" type: option1 - - arguments: '-nc -nx 500' + - arguments: "-nc -nx 500" config: oslist: windows description: English Version - executable: en\\DearCraft.exe + executable: "en\\\\DearCraft.exe" type: option2 -'846870': +"846870": installDir: Yooka-Laylee and the Impossible Lair launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: YLILWin64.exe type: default @@ -387507,31 +381942,31 @@ description: Tonic Stream Executable executable: BounceWin64.exe type: option1 -'846880': +"846880": installDir: The Chronicles of Quiver Dick launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows executable: Game.exe type: default -'847100': - installDir: ' Тридевятые земли(Свет или тьма)' +"847100": + installDir: " Тридевятые земли(Свет или тьма)" launch: - config: oslist: windows executable: Game.exe type: none -'847230': +"847230": installDir: Turn-Based Champion launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TurnBasedChampion.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: TurnBasedChampion type: default @@ -387540,30 +381975,30 @@ executable: TurnBasedChampion.dmg type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: TurnBasedChampion32.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: TurnBasedChampion32 type: default -'847240': +"847240": installDir: Zombie Commander launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Zombie-Commander.exe type: default -'847250': {} -'847260': +"847250": {} +"847260": installDir: Deep Dark Labyrinth launch: - executable: Deep_Dark_Labyrinth.exe type: none -'847290': +"847290": installDir: Community College Hero Knowledge is Power launch: - config: @@ -387578,7 +382013,7 @@ oslist: linux executable: CommunityCollegeHeroKnowledgeIsPower type: none -'847300': +"847300": installDir: Doomsday on Demand 2 launch: - config: @@ -387593,7 +382028,7 @@ oslist: linux executable: DoomsdayOnDemand2 type: none -'847310': +"847310": installDir: Doomsday on Demand launch: - config: @@ -387608,46 +382043,46 @@ oslist: linux executable: DoomsdayOnDemand type: none -'847360': - installDir: Super Lucky's Tale +"847360": + installDir: "Super Lucky's Tale" launch: - executable: SLT.exe type: none -'847370': +"847370": installDir: SunsetOverdrive launch: - - arguments: '-warn review' + - arguments: "-warn review" executable: Sunset.exe type: none -'847390': +"847390": installDir: BarrelBootCamp launch: - config: oslist: windows executable: BarrelBootCamp.exe type: default -'847450': +"847450": installDir: Solenars Edge Heroes launch: - config: oslist: windows executable: Game.exe type: default -'847460': +"847460": installDir: Trapped launch: - config: oslist: windows executable: Trapped.exe type: none -'847490': +"847490": installDir: StarSpeeder launch: - config: oslist: windows executable: StarSpeeder.exe type: default -'847510': +"847510": installDir: Roller launch: - config: @@ -387655,7 +382090,7 @@ description: Play Roller executable: Roller.exe type: default -'847530': +"847530": installDir: HyperBowl launch: - config: @@ -387664,9 +382099,9 @@ type: default - config: oslist: windows - executable: HyperBowl\\steamwin.exe + executable: "HyperBowl\\\\steamwin.exe" type: default -'847550': +"847550": installDir: Strike!OvulationDivine Fist! Rebellion to Extinction! launch: - config: @@ -387677,21 +382112,21 @@ oslist: macos executable: mac.app type: default -'847560': +"847560": installDir: Our Hero! First launch: - config: oslist: windows - executable: Our Hero! First\\Game.exe + executable: "Our Hero! First\\\\Game.exe" type: default -'847570': +"847570": installDir: How About Spikes launch: - config: oslist: windows executable: HowAboutSpikes.exe type: default -'847580': +"847580": installDir: Truth Disorder II launch: - config: @@ -387706,14 +382141,14 @@ oslist: macos executable: Game.app type: none -'847590': +"847590": installDir: Sword of the Black Stone launch: - config: oslist: windows executable: Sword Of The Black Stone.exe type: default -'847600': +"847600": installDir: RapidGame launch: - config: @@ -387721,7 +382156,7 @@ description: Launch executable: Rapid 0.2.5.exe type: editor -'847630': +"847630": installDir: Commanager tycoon launch: - config: @@ -387736,48 +382171,48 @@ oslist: linux executable: Commanager.x86_64 type: none -'847650': +"847650": installDir: Virtual Reality Experiment Framework launch: - config: oslist: windows executable: Virtual Reality Experiment Framework.exe type: vr -'847660': +"847660": installDir: Story - Heaven & Hell launch: - executable: Game.exe type: none -'847670': +"847670": installDir: Robo Runners launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: RoboRunners.exe type: default -'847790': +"847790": installDir: Indentured Servant launch: - config: oslist: windows executable: IndenturedServant.exe type: vr -'847800': +"847800": installDir: Toybit Quest launch: - config: oslist: windows executable: ToybitQuest20.exe type: default -'847810': +"847810": installDir: Endless Horizon launch: - config: oslist: windows executable: endlesshorizon.exe type: default -'847860': +"847860": installDir: Die In The Dark launch: - config: @@ -387790,45 +382225,45 @@ description: Die in the Dark executable: Die In The Dark Windows.exe type: default -'847870': +"847870": installDir: Monster Truck Drive launch: - executable: monster_tuck_pc.exe type: default -'847880': {} -'847900': +"847880": {} +"847900": installDir: DeathTolls Experience launch: - - arguments: '-vr' + - arguments: "-vr" config: - osarch: '64' + osarch: "64" oslist: windows description: Play with HTC Vive executable: DeathToll.exe type: vr - - arguments: '-vr' + - arguments: "-vr" config: - osarch: '64' + osarch: "64" oslist: windows description: Play with Oculus executable: DeathToll.exe type: othervr -'847920': {} -'847940': +"847920": {} +"847940": installDir: Sukis Spooky Romance launch: - config: oslist: windows executable: SukiSR.exe type: none -'847950': +"847950": installDir: Yakuza Kiss launch: - config: oslist: windows executable: YakuzaKiss.exe type: default -'848010': +"848010": installDir: Find your way launch: - config: @@ -387836,27 +382271,27 @@ executable: Find Your way.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: FindYourWay.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: FindYourWay.x86_64 type: none - config: oslist: macos - executable: MacOs.app\\Contents\\MacOS\\MacOs + executable: "MacOs.app\\\\Contents\\\\MacOS\\\\MacOs" type: none -'848030': +"848030": installDir: Roundguard launch: - config: oslist: windows executable: Roundguard.exe type: default -'848060': +"848060": installDir: Story of a Gladiator launch: - config: @@ -387865,63 +382300,63 @@ type: default - config: oslist: macos - executable: StoryofaGladiatorOSX.app\\Contents\\MacOS\\Story of a Gladiator + executable: "StoryofaGladiatorOSX.app\\\\Contents\\\\MacOS\\\\Story of a Gladiator" type: default -'848070': +"848070": installDir: UFOSimulatorControlMaster launch: - config: oslist: windows executable: UFO Simulator Control Master.exe type: none -'848080': +"848080": installDir: Depths of Sanity launch: - executable: DepthsofSanity.exe type: none -'848090': +"848090": installDir: BATTER_BURST launch: - config: oslist: windows executable: BATTER_BURST.exe type: none -'848100': +"848100": installDir: Maze Madness launch: - executable: MazeMadness.exe type: none -'848120': +"848120": installDir: Terror World launch: - config: oslist: windows executable: Terror World.exe type: default -'848150': +"848150": installDir: Fury Fighter VR launch: - config: - osarch: '64' + osarch: "64" executable: FuryFighterVR.exe type: vr -'848190': {} -'848200': +"848190": {} +"848200": installDir: Azuran Tales Trials launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: AzuranTrials.exe type: default -'848230': - installDir: Let's Go Nuts! +"848230": + installDir: "Let's Go Nuts!" launch: - config: oslist: windows executable: LetsGoNuts!.exe type: default -'848260': +"848260": installDir: Super GTR Racing launch: - config: @@ -387930,20 +382365,20 @@ type: none - config: oslist: macos - executable: Super GTR Racing.app\\Contents\\MacOS\\Super GTR Racing + executable: "Super GTR Racing.app\\\\Contents\\\\MacOS\\\\Super GTR Racing" type: none - config: oslist: linux executable: Super GTR Racing.x86 type: none -'848270': +"848270": installDir: Sky Conqueror launch: - config: oslist: windows executable: SkyConqueror.exe type: default -'848280': +"848280": installDir: Viki Spotter Space Mission launch: - config: @@ -387952,29 +382387,29 @@ type: none - config: oslist: macos - executable: Viki Spotter - Space Mission.app\\Contents\\MacOS\\Viki Spotter - Space Mission + executable: "Viki Spotter - Space Mission.app\\\\Contents\\\\MacOS\\\\Viki Spotter - Space Mission" type: none - config: oslist: linux executable: Viki Spotter - Space Mission.x86 type: none -'848300': +"848300": installDir: GROW Wild West launch: - executable: GROW_Wild_West.exe type: none -'848310': +"848310": installDir: Bitcoin Trading Master launch: - config: oslist: windows executable: SimulationTrade.exe type: default -'848330': +"848330": installDir: Pride Run launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Pride Run.exe type: default @@ -387982,53 +382417,53 @@ oslist: macos executable: PrideRun.app type: default -'848350': +"848350": installDir: Katamari Damacy REROLL launch: - executable: katamari.exe type: none -'848360': {} -'848400': +"848360": {} +"848400": installDir: SimianRising launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: SimianRising.exe type: none -'848410': +"848410": installDir: Detached Non-VR Edition launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: DetachedGameplay.exe type: default -'848420': {} -'848430': +"848420": {} +"848430": installDir: Freakout TV Calamity Show launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Freakout.exe type: default - config: oslist: macos - executable: Freakout.app\\Contents\\MacOS\\Freakout + executable: "Freakout.app\\\\Contents\\\\MacOS\\\\Freakout" type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Freakout.x86_64 type: default -'848450': +"848450": installDir: SubnauticaZero launch: - - arguments: '-silent-crashes -vrmode none' + - arguments: "-silent-crashes -vrmode none" config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: SubnauticaZero.exe @@ -388039,17 +382474,17 @@ executable: SubnauticaZero.app type: default - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: Subnautica32.exe type: default nameLocalized: japanese: サブノーティカ:ビロウゼロ - koreana: '서브노티카: 빌로우 제로' + koreana: "서브노티카: 빌로우 제로" schinese: 深海迷航:冰点之下 - tchinese: '深海迷航 : 氷點之下' -'848460': + tchinese: "深海迷航 : 氷點之下" +"848460": installDir: Aurum Kings launch: - config: @@ -388057,16 +382492,16 @@ executable: AurumKings.exe type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: AurumKings.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: AurumKings.x86 type: default -'848470': +"848470": installDir: Action Card Football launch: - config: @@ -388077,127 +382512,127 @@ oslist: macos executable: ACF.app type: none -'848480': +"848480": installDir: Creeper World 4 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: CW4.exe type: default -'848500': +"848500": installDir: Sniper Strike Special Ops launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Sniper Strike.exe type: default -'848520': +"848520": installDir: Super Destronaut DX launch: - config: oslist: windows executable: SuperDestronautDX.exe type: default -'848540': {} -'848550': +"848540": {} +"848550": installDir: Welcome Back To 2007 2 launch: - executable: WBT2007_2.exe type: none -'848610': +"848610": installDir: Adult Toy Store launch: - config: oslist: windows executable: Delight.exe type: default -'848630': +"848630": installDir: Dinosaur Hunter launch: - config: oslist: windows executable: dinosaurhunter.exe type: default -'848640': {} -'848650': {} -'848660': +"848640": {} +"848650": {} +"848660": installDir: Cool Headed launch: - config: oslist: windows executable: CoolHeaded.exe type: none -'848670': {} -'848680': {} -'848700': +"848670": {} +"848680": {} +"848700": installDir: Toki Time Trial launch: - config: oslist: windows executable: TokiTimeTrial.exe type: default -'848710': +"848710": installDir: Defendion launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: WindowsNoEditor/TDVR.exe type: vr -'848720': +"848720": installDir: Z.W! launch: - config: oslist: windows executable: Z.W!.exe type: none -'848730': +"848730": installDir: The Boy Who Typed Wolf launch: - config: oslist: windows executable: theboywhotypedwolf.exe type: default -'848740': +"848740": installDir: Lazergoat Invasion launch: - config: oslist: windows executable: LazergoatInvasion.exe type: default -'848750': +"848750": installDir: Space Drop launch: - config: oslist: windows executable: SpaceDrop.exe type: default -'848760': +"848760": installDir: CORRUPTION launch: - config: oslist: windows executable: CORRUPTION.exe type: default -'848770': +"848770": installDir: KrystalAdventurer launch: - config: oslist: windows executable: ProjFox.exe type: default -'848780': +"848780": installDir: Star Tower launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: StarTower.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: StarTower.x86_64 type: default @@ -388205,15 +382640,15 @@ oslist: macos executable: StarTowerBuildMac.app type: default -'848810': +"848810": installDir: Bug Splatt launch: - config: oslist: windows executable: BugSplatt.exe type: default -'848840': {} -'848890': +"848840": {} +"848890": installDir: Afelhem launch: - config: @@ -388228,74 +382663,74 @@ oslist: linux executable: linux/Afelhem.x86 type: default -'848920': +"848920": installDir: Bitsy_Bits_windows launch: - config: oslist: windows executable: Bitsy Bits.exe type: default -'848930': +"848930": installDir: Rising Dusk launch: - config: oslist: macos - executable: Rising Dusk.app\\Contents\\MacOS\\Rising Dusk + executable: "Rising Dusk.app\\\\Contents\\\\MacOS\\\\Rising Dusk" type: default - config: oslist: windows executable: Rising Dusk.exe type: default -'848960': +"848960": installDir: Gotcha Racing 2nd launch: - config: oslist: windows executable: Gotcha Racing 2nd.exe type: default -'849000': +"849000": installDir: OpenTheDoorCaiKai launch: - config: oslist: windows executable: OpenTheDoorCaiKai.exe type: none -'849020': {} -'849030': +"849020": {} +"849030": installDir: Asteroid Turret Defender VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Asteroid Turret Defender VR.exe type: vr -'849070': +"849070": installDir: Black Home 2 launch: - description: Launch executable: Game.exe type: none -'849090': +"849090": installDir: FIGHTWORLD launch: - config: oslist: windows executable: Fightworld.exe type: default -'849100': {} -'849140': +"849100": {} +"849140": installDir: MidnightCaravan launch: - executable: tmc/tmc.exe type: none -'849210': +"849210": installDir: Raccoo Venture launch: - config: oslist: windows executable: RaccooVenture.exe type: default -'849270': +"849270": installDir: Soccer Nations Battle launch: - config: @@ -388306,44 +382741,44 @@ oslist: macos executable: SoccerNationsBattle.app type: default -'849280': {} -'849290': {} -'849320': +"849280": {} +"849290": {} +"849320": installDir: Tank rush launch: - config: oslist: windows executable: tank.exe type: default -'849350': +"849350": installDir: RealisticIllusion launch: - config: oslist: windows executable: RealisticIllusion.exe type: default -'849360': +"849360": installDir: Wrecking Towers launch: - config: oslist: windows executable: Wrecking Towers.exe type: default -'849390': +"849390": installDir: ValerianTales launch: - config: oslist: windows executable: Valerian Tales.exe type: default -'849410': +"849410": installDir: Poop Slinger launch: - config: oslist: windows executable: PoopSlinger.exe type: default -'849420': +"849420": installDir: Professor Madhouse launch: - config: @@ -388352,30 +382787,30 @@ type: default - config: oslist: macos - executable: ProfessorMadhouse.app\\Contents\\MacOS\\Professor Madhouse + executable: "ProfessorMadhouse.app\\\\Contents\\\\MacOS\\\\Professor Madhouse" type: default -'849520': +"849520": installDir: Rheum launch: - config: oslist: windows executable: rheum.exe type: default -'849530': +"849530": installDir: spheroid launch: - config: betakey: default oslist: windows - executable: Spheroid_public\\Spheroid.exe + executable: "Spheroid_public\\\\Spheroid.exe" type: default - config: betakey: closedbeta description: Spheroid (closed beta branch) - executable: Spheroid_private\\Spheroid.exe + executable: "Spheroid_private\\\\Spheroid.exe" type: option2 -'849550': {} -'849560': +"849550": {} +"849560": installDir: The Road to Canterbury launch: - config: @@ -388390,7 +382825,7 @@ oslist: linux executable: TheRoadToCanterbury type: none -'849600': +"849600": installDir: Sandbox Showdown launch: - config: @@ -388398,35 +382833,35 @@ description: Launch executable: Sandbox Showdown.exe type: default -'849620': +"849620": installDir: Trivia Vault Celebrity Trivia launch: - config: oslist: windows executable: Trivia Vault Celebrity Trivia.exe type: default -'849630': +"849630": installDir: Wolf Balls launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Wolf_Balls.exe type: default -'849670': +"849670": installDir: Oval launch: - - arguments: '-vrmode openvr' + - arguments: "-vrmode openvr" config: oslist: windows executable: Oval.exe type: vr - - arguments: '-vrmode oculus' + - arguments: "-vrmode oculus" config: oslist: windows executable: Oval.exe type: othervr -'849680': +"849680": installDir: TimeTekker launch: - config: @@ -388444,12 +382879,12 @@ description: Launch executable: TimeTekker Linux/TimeTekker.x86 type: default -'849690': +"849690": installDir: Ghost Mountain Roller Coaster launch: - executable: Ghost Mountain.exe type: othervr -'849740': +"849740": installDir: Love Esquire launch: - config: @@ -388467,89 +382902,89 @@ nameLocalized: schinese: 小兵求爱记 (Love Esquire) tchinese: 小兵求愛記 (Love Esquire) -'849790': +"849790": installDir: Firmament-Wars launch: - config: oslist: windows executable: firmament-wars.exe type: none -'849800': +"849800": installDir: Mermaid Mission Titanic launch: - config: oslist: windows - executable: Mermaid_Mission_Titanic-1.0-market\\Mermaid_Mission_Titanic.exe + executable: "Mermaid_Mission_Titanic-1.0-market\\\\Mermaid_Mission_Titanic.exe" type: default - config: oslist: linux - executable: Mermaid_Mission_Titanic-1.0-market\\Mermaid_Mission_Titanic.sh + executable: "Mermaid_Mission_Titanic-1.0-market\\\\Mermaid_Mission_Titanic.sh" type: default - config: oslist: macos - executable: Mermaid_Mission_Titanic-1.0-mac\\Mermaid_Mission_Titanic.app + executable: "Mermaid_Mission_Titanic-1.0-mac\\\\Mermaid_Mission_Titanic.app" type: default -'849840': +"849840": installDir: Imperi II launch: - config: oslist: windows executable: imperi2.exe type: none -'849860': +"849860": installDir: The RisenDead VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ProjectTheRisenDead.exe type: vr -'849870': +"849870": installDir: Virtual Pirate VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: VirtualPirateVR.exe type: vr -'849880': +"849880": installDir: JourneyoftheFox launch: - config: oslist: windows executable: JourneyoftheFox type: default -'849890': {} -'849900': {} -'849910': {} -'849920': +"849890": {} +"849900": {} +"849910": {} +"849920": installDir: Dungeon Quest launch: - config: oslist: windows executable: Game.exe type: default -'849940': +"849940": installDir: Freefall Tournament launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Freefall Tournament Windows 64 bit - executable: ./WindowsClient/freefalltournament.exe + executable: "./WindowsClient/freefalltournament.exe" type: default - config: oslist: macos description: Freefall Tournament Mac - executable: ./MacOSXClient/freefalltournament.app + executable: "./MacOSXClient/freefalltournament.app" type: default - config: - osarch: '32' + osarch: "32" oslist: windows description: Freefall Tournament Windows 32 bit - executable: ./WindowsClient/freefalltournament32.exe + executable: "./WindowsClient/freefalltournament32.exe" type: default -'849970': +"849970": installDir: Forgotten Realm RPG launch: - config: @@ -388564,35 +382999,35 @@ oslist: macos executable: Game.app/Contents/MacOS/nwjs type: default -'849980': +"849980": installDir: Color by Numbers - Dinosaurs launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: cbn-dinosaurs.exe type: default - config: oslist: macos - executable: Color by Numbers - Dinosaurs.app\\Contents\\MacOS\\Color by Numbers - Dinosaurs + executable: "Color by Numbers - Dinosaurs.app\\\\Contents\\\\MacOS\\\\Color by Numbers - Dinosaurs" type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: cbn-dinosaurs.x86_64 type: default -'8500': +"8500": installDir: Eve Online launch: - config: oslist: windows - executable: Launcher\\evelauncher.exe + executable: "Launcher\\\\evelauncher.exe" - config: oslist: macos executable: EVE Online.app nameLocalized: koreana: 이브 온라인 -'850000': +"850000": installDir: Noel The Mortal Fate S1-7 launch: - config: @@ -388602,25 +383037,25 @@ nameLocalized: japanese: 被虐のノエル S1-7 schinese: 被虐的诺艾尔 S1-7 -'850030': {} -'850040': +"850030": {} +"850040": installDir: Puzzgun launch: - config: oslist: windows executable: PuzzGun.exe type: none -'850050': +"850050": installDir: Achievement Idler Red launch: - executable: Achievement Idler Red.exe type: default -'850060': +"850060": installDir: Anima The Nameless Chronicles launch: - executable: TheNamelessChronicles.exe type: default -'850110': +"850110": installDir: Number Guesser launch: - config: @@ -388630,33 +383065,33 @@ nameLocalized: schinese: Number Guesser 猜数字的人 tchinese: Number Guesser 猜數字的人 -'850230': - installDir: Women's Soccer Manager +"850230": + installDir: "Women's Soccer Manager" launch: - config: oslist: windows executable: wsm.exe type: default -'850250': +"850250": installDir: NEW DARK MATTER launch: - executable: Dark Matter.exe type: none -'850270': +"850270": installDir: Kaleido Chaos launch: - config: oslist: windows executable: Kaleido Chaos.exe type: default -'850290': +"850290": installDir: Grimmwood Open beta launch: - config: oslist: windows executable: Grimmwood.exe type: none -'850310': +"850310": installDir: Deadly Station launch: - config: @@ -388668,19 +383103,19 @@ description: Start game (no launcher) executable: game.exe type: option1 -'850320': +"850320": installDir: PHOGS! launch: - executable: PHOGS.exe type: default -'850330': +"850330": installDir: best game eu launch: - config: oslist: windows executable: best game eu.exe type: default -'850340': +"850340": installDir: Deep Voyage launch: - config: @@ -388691,7 +383126,7 @@ oslist: macos executable: DeepVoyage.app/Contents/MacOS/dv type: none -'850450': +"850450": installDir: Escape First launch: - config: @@ -388699,62 +383134,62 @@ description: Play on desktop - No VR executable: EscapeFirst.exe type: default - - arguments: '-inVR' + - arguments: "-inVR" config: oslist: windows description: Play in SteamVR - Vive executable: EscapeFirst.exe type: vr - - arguments: '-inVROculus' + - arguments: "-inVROculus" config: oslist: windows description: Play in SteamVR - Oculus executable: EscapeFirst.exe type: vr -'850500': +"850500": installDir: Slum Ball VR Tournament launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: RXVRPONG.exe type: vr - config: - osarch: '64' + osarch: "64" oslist: windows executable: RXVRPONG.exe type: othervr -'850550': +"850550": installDir: World of Virtual Reality launch: - config: oslist: windows executable: World of VR.exe type: vr -'850630': +"850630": installDir: Starting The Game launch: - config: oslist: windows executable: respawn.exe type: none -'850690': +"850690": installDir: Crying is not Enough launch: - config: oslist: windows executable: Crying is not Enough.exe type: default -'850710': - installDir: Skip's Sanity +"850710": + installDir: "Skip's Sanity" launch: - config: oslist: windows - description: Skip's Sanity - executable: Skip's Sanity.exe + description: "Skip's Sanity" + executable: "Skip's Sanity.exe" type: default -'850720': {} -'850740': +"850720": {} +"850740": installDir: The Princess Adventure launch: - config: @@ -388765,27 +383200,27 @@ oslist: linux executable: the-princess-adventure.x86 type: default -'850780': +"850780": installDir: Battle Royale Bootcamp launch: - config: oslist: windows executable: Bootcamp.exe type: default -'850790': {} -'850810': +"850790": {} +"850810": installDir: KarasDarkness launch: - executable: KarasDarknessCopy.exe type: none -'850820': +"850820": installDir: Disenchantment Acculturation launch: - config: oslist: windows executable: Disenchantment Acculturation.exe type: none -'850830': +"850830": installDir: Adventure in Kana Village launch: - config: @@ -388796,21 +383231,21 @@ oslist: macos executable: Game.exe type: default -'850840': +"850840": installDir: Camp Grizzly VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: CampGrizzly.exe type: vr - config: - osarch: '64' + osarch: "64" oslist: windows executable: CampGrizzly.exe type: othervr -'850870': {} -'850880': +"850870": {} +"850880": installDir: Vegetaball launch: - config: @@ -388825,25 +383260,25 @@ oslist: linux executable: Vegetaball.x86 type: none -'850910': {} -'850920': +"850910": {} +"850920": installDir: Hypersonic Speed Girl 超速少女 launch: - executable: bn07.exe type: none -'850930': +"850930": installDir: Modern road like launch: - config: oslist: windows executable: Game.exe type: default -'850940': +"850940": installDir: Space Colonizers launch: - config: oslist: macos - executable: Space Colonizers.app\\Contents\\MacOS\\Space Colonizers! + executable: "Space Colonizers.app\\\\Contents\\\\MacOS\\\\Space Colonizers!" type: default - config: oslist: windows @@ -388858,7 +383293,7 @@ schinese: 星际移民:太空飞行放置点击游戏 spanish: Colonizadores del Espacio tchinese: 星際移民:太空飞行放置點擊遊戲 -'850950': +"850950": installDir: Helicopter Flight Simulator launch: - config: @@ -388867,9 +383302,9 @@ type: none - config: oslist: macos - executable: Helicopter Flight Simulator.app\\Contents\\MacOS\\Helicopter Flight Simulator + executable: "Helicopter Flight Simulator.app\\\\Contents\\\\MacOS\\\\Helicopter Flight Simulator" type: none -'850960': +"850960": installDir: Dinosaur Safari launch: - config: @@ -388880,22 +383315,22 @@ oslist: windows executable: Jurassic Safari Hunt.exe type: none -'850970': +"850970": installDir: Plunker launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Plunker.exe type: vr -'850980': +"850980": installDir: GUILTYGEAR launch: - config: oslist: windows executable: GuiltyGear.exe type: default -'851000': +"851000": installDir: Achievement Machine launch: - config: @@ -388904,9 +383339,9 @@ type: default - config: oslist: macos - executable: Achievement Machine.app\\Contents\\MacOS\\Achievement Machine + executable: "Achievement Machine.app\\\\Contents\\\\MacOS\\\\Achievement Machine" type: default -'851010': +"851010": installDir: Airplane Sky Voyage launch: - config: @@ -388915,30 +383350,30 @@ type: none - config: oslist: macos - executable: Airplane Sky Voyage.app\\Contents\\MacOS\\Airplane Sky Voyage + executable: "Airplane Sky Voyage.app\\\\Contents\\\\MacOS\\\\Airplane Sky Voyage" type: none -'851030': {} -'851040': +"851030": {} +"851040": installDir: DarkestMana launch: - config: oslist: windows executable: DarkestMana.exe type: vr -'851050': +"851050": installDir: PaperDolls launch: - config: oslist: windows executable: PaperDolls.exe type: vr -'851080': {} -'851100': {} -'851110': +"851080": {} +"851100": {} +"851110": installDir: Idle Racing GO launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Idle Racing GO.exe type: default @@ -388946,17 +383381,17 @@ oslist: macos executable: Idle Racing GO.app type: default -'851150': +"851150": installDir: Burning Knight launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Windows executable: Desktop.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: Linux executable: Desktop.bin.x86_64 @@ -388965,37 +383400,37 @@ oslist: macos executable: BurningKnight.app/Contents/MacOS/Desktop.bin.osx type: default -'851180': +"851180": installDir: Blood Harvest 3 launch: - config: oslist: windows executable: BloodHarvest3.exe type: default -'851200': +"851200": installDir: Omae Wa Mou Shindeiru launch: - config: oslist: windows executable: Omae Wa Mou Shindeiru.exe type: config -'851210': {} -'851220': +"851210": {} +"851220": installDir: Free the Animation launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: FreeTheAnimation.exe type: none - - arguments: '--webxr' + - arguments: "--webxr" config: - osarch: '64' + osarch: "64" oslist: windows executable: FreeTheAnimation.exe type: vr -'851230': {} -'851240': +"851230": {} +"851240": installDir: Journey To Valhalla launch: - config: @@ -389013,152 +383448,152 @@ description: Journey to Valhalla executable: JourneyToValhalla.x86 type: default -'851250': +"851250": installDir: Sleeping Dawn VR launch: - executable: SleepingDawnVR.exe type: vr -'851280': +"851280": installDir: MindSeize launch: - config: oslist: windows executable: MindSeize.exe type: default -'851290': +"851290": installDir: Fesnia launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows executable: Fesnia.exe type: default -'851320': +"851320": installDir: SlimeGear launch: - config: oslist: windows executable: SlimeGear.exe type: default -'851330': {} -'851350': - installDir: Let's Play with Nanai! +"851330": {} +"851350": + installDir: "Let's Play with Nanai!" launch: - config: oslist: windows - description: Launch Let's Play with Nanai! + description: "Launch Let's Play with Nanai!" executable: nanai.exe type: vr -'851370': +"851370": installDir: EXAELLA launch: - config: oslist: windows executable: EXAELLA.exe type: none -'851490': +"851490": installDir: The Amazing Adventures of Lady Fanny Featherstone launch: - executable: fannyfeatherstone.exe type: none -'851520': +"851520": installDir: Trivia Vault TV Trivia launch: - config: oslist: windows executable: Trivia Vault TV Trivia.exe type: default -'851530': +"851530": installDir: Mini-Dead launch: - config: oslist: windows executable: mini-dead/minidead.exe type: default -'851570': +"851570": installDir: Zombie Hotel_Data launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Zombie Hotel.exe type: default -'851580': +"851580": installDir: Planet Unknown Runner launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Planet Unknown Runner.exe type: default -'851590': {} -'851640': +"851590": {} +"851640": installDir: Marble Race launch: - config: oslist: windows executable: Marble Race.exe type: none -'851650': +"851650": installDir: LOGistICAL ABC Islands launch: - config: oslist: windows executable: LogisticalApp.exe type: none -'851670': +"851670": installDir: LUMINES REMASTERED launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Lumines-remastered.exe type: default -'851690': {} -'851710': +"851690": {} +"851710": installDir: Trivia Vault Art Trivia launch: - config: oslist: windows executable: Trivia Vault Art Trivia.exe type: default -'851730': +"851730": installDir: Sandmade launch: - config: oslist: windows executable: Sandmade.exe type: default -'851770': +"851770": installDir: Number Hunt launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: NumberHunt.exe type: vr - config: - osarch: '64' + osarch: "64" oslist: windows executable: NumberHunt.exe type: othervr -'851780': {} -'851790': +"851780": {} +"851790": installDir: AstronTycoon launch: - config: oslist: windows executable: AstronTycoon.exe type: none -'851800': +"851800": installDir: G2 Fighter launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: G2 Fighter.exe type: none -'851810': +"851810": installDir: Ultimate Sudoku Collection launch: - config: @@ -389169,7 +383604,7 @@ oslist: windows executable: UltimateSudoku.exe type: default -'851820': +"851820": installDir: Boxes Inc launch: - config: @@ -389178,37 +383613,37 @@ type: default - config: oslist: macos - executable: mac_content.app\\Contents\\MacOS\\mac_content + executable: "mac_content.app\\\\Contents\\\\MacOS\\\\mac_content" type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: game.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: game.x86_64 type: none -'851840': +"851840": installDir: Strangers of the Power 2 launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows description: Launch executable: nw.exe type: default - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: macos executable: Game.app type: default -'851850': +"851850": installDir: DRAGON BALL Z KAKAROT launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: AT.exe type: default @@ -389216,35 +383651,35 @@ koreana: 드래곤볼 Z 카카로트 schinese: 七龙珠Z 卡卡洛特 tchinese: 七龍珠Z 卡卡洛特 -'851880': +"851880": installDir: ROA launch: - config: oslist: windows executable: ROA.exe type: default -'851890': +"851890": installDir: GalGun 2 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: GalGun2.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows - ownsdlc: '932660' + ownsdlc: "932660" executable: GalGun2.exe type: vr -'851920': +"851920": installDir: Nova Wing III launch: - config: oslist: windows executable: Nova WingIII.exe type: default -'851930': +"851930": installDir: Battle Royale Tycoon launch: - config: @@ -389262,77 +383697,77 @@ description: Battle Royale Tycoon executable: BattleRoyaleTycoon.x86 type: default -'851940': +"851940": installDir: Dirt Bike Insanity launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Dirt Bike Insanity.exe type: default -'851950': +"851950": installDir: Heroine of the Sniper launch: - executable: game.exe type: none -'851960': +"851960": installDir: Acrophobia launch: - executable: Acrophobia.exe type: vr -'851970': {} -'851980': +"851970": {} +"851980": installDir: Ball Grabbers launch: - config: oslist: windows executable: Ball Grabbers.exe type: default -'852050': {} -'852060': {} -'852070': {} -'852080': {} -'852090': +"852050": {} +"852060": {} +"852070": {} +"852080": {} +"852090": installDir: Penko Park launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Penko Park.exe type: default -'852110': +"852110": installDir: RetroMaze launch: - config: oslist: windows executable: retro_maze.exe type: default -'852140': {} -'852160': +"852140": {} +"852160": installDir: Jack the Barbarian launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows executable: Jack the Barbarian.exe type: default -'852180': +"852180": installDir: Bunker Rush Folder launch: - config: oslist: windows executable: BunkerRush.exe type: default -'852190': +"852190": installDir: 10 seconds launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: 10Seconds.exe type: vr -'852210': {} -'852220': +"852210": {} +"852220": installDir: Accident launch: - config: @@ -389342,14 +383777,14 @@ nameLocalized: schinese: 车祸现场模拟器 tchinese: 车祸现场模拟器 -'852250': +"852250": installDir: Danger Room launch: - config: oslist: windows executable: dangerroom.exe type: vr -'852300': +"852300": installDir: CreatureInTheWell launch: - config: @@ -389363,26 +383798,26 @@ description: Demo executable: CITW.exe type: option1 -'852310': +"852310": installDir: Omega Commando launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: \\omegacommando_win\\OmegaCommando.exe + executable: "\\\\omegacommando_win\\\\OmegaCommando.exe" type: default - config: oslist: macos executable: OmegaCommando.app type: default -'852320': +"852320": installDir: HOLONGLIDE launch: - config: oslist: windows executable: HOLONGLIDE.exe type: none -'852340': +"852340": installDir: King Rabbit launch: - config: @@ -389395,23 +383830,23 @@ description: Launch King Rabbit Game Client executable: King Rabbit.exe type: default -'852390': +"852390": installDir: SwordBounce launch: - config: oslist: windows executable: Swordbounce.exe type: default -'852420': {} -'852450': +"852420": {} +"852450": installDir: The Stray Cat launch: - config: oslist: windows executable: The Stray Cat.exe type: vr -'852470': {} -'852480': +"852470": {} +"852480": installDir: Snow Daze launch: - config: @@ -389426,7 +383861,7 @@ oslist: linux executable: SnowDaze.sh type: default -'852500': +"852500": installDir: WorldQuest launch: - config: @@ -389437,14 +383872,14 @@ oslist: windows executable: StartServerWithWindow.exe type: server -'852530': +"852530": installDir: Atex Brawl launch: - config: oslist: windows executable: Atex Brawl.exe type: none -'852560': +"852560": installDir: GUNS BATTLE ROYALE launch: - config: @@ -389455,27 +383890,27 @@ oslist: macos executable: GUNS BATTLE ROYALE.app type: none -'852570': +"852570": installDir: A tale of pirates VR launch: - config: oslist: windows executable: A Tales of Pirates - A Dummy Mutiny.exe type: vr -'852590': +"852590": installDir: Alone In The Forest VR launch: - config: oslist: windows executable: AloneInTheForest.exe type: vr -'852610': {} -'852620': +"852610": {} +"852620": installDir: Zen Vs Gravity launch: - executable: Zen vs Gravity.exe type: default -'852630': +"852630": installDir: Keiko Everlasting launch: - config: @@ -389486,39 +383921,39 @@ oslist: windows executable: game.exe type: default -'852650': +"852650": installDir: Barbarroja_New launch: - config: oslist: windows executable: SetupBarbarroja.exe type: none -'852660': +"852660": installDir: LinearChicken launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: LinearChicken.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: LinearChicken.x86_64 type: default - config: oslist: macos - executable: Contents\\MacOS\\LinearChicken - Mac + executable: "Contents\\\\MacOS\\\\LinearChicken - Mac" type: default -'852720': +"852720": installDir: VoxelTanks launch: - config: oslist: windows executable: VoxelTanks.exe type: none -'852740': {} -'852750': +"852740": {} +"852750": installDir: Paper Shakespeare Stick Merchant of Venice launch: - config: @@ -389527,64 +383962,64 @@ type: default - config: oslist: macos - executable: Paper_Shakespeare_M.app\\Contents\\MacOS\\Paper_Shakespeare_M + executable: "Paper_Shakespeare_M.app\\\\Contents\\\\MacOS\\\\Paper_Shakespeare_M" type: default - config: oslist: linux executable: Paper_Shakespeare_M.sh type: default -'852760': +"852760": installDir: D.F.R. The Light VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: DFR_VR.exe type: vr -'852770': {} -'852780': +"852770": {} +"852780": installDir: TemperiaSoulofMajestic launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Temperia Soul of Majestic.exe type: default - config: oslist: macos - executable: Majestic.app\\Contents\\MacOS\\Majestic + executable: "Majestic.app\\\\Contents\\\\MacOS\\\\Majestic" type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: Temperia Soul of Majestic.exe type: default -'852790': +"852790": installDir: The Adventure of Magical Girl launch: - config: oslist: windows executable: Game.exe type: default -'852810': {} -'852820': {} -'852860': +"852810": {} +"852820": {} +"852860": installDir: Towards a perilous journey launch: - config: oslist: windows executable: windows_build.exe type: vr -'852870': {} -'852880': +"852870": {} +"852880": installDir: Ficterra launch: - config: oslist: windows executable: Ficterra.exe type: default -'852890': {} -'852900': +"852890": {} +"852900": installDir: Space Captain McCallery - Episode 1 Crash Landing launch: - config: @@ -389595,12 +384030,12 @@ oslist: macos executable: CaptainMcCallery.app type: default -'852910': +"852910": installDir: sweet pool launch: - executable: sweetpool.exe type: none -'852920': +"852920": installDir: Bad Bots Rise launch: - config: @@ -389616,29 +384051,29 @@ oslist: linux executable: runner type: default -'853000': +"853000": installDir: Generic Jumper launch: - config: oslist: windows executable: GenericJumper.exe type: default -'853020': +"853020": installDir: Venal Soul launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: VS.exe type: default -'853050': +"853050": installDir: El Hijo launch: - config: oslist: windows executable: el-hijo.exe type: default -'853110': +"853110": installDir: Viki Spotter Sports launch: - config: @@ -389647,37 +384082,37 @@ type: none - config: oslist: macos - executable: Viki Spotter - Sports.app\\Contents\\MacOS\\Viki Spotter - Sports + executable: "Viki Spotter - Sports.app\\\\Contents\\\\MacOS\\\\Viki Spotter - Sports" type: none - config: oslist: linux executable: Viki Spotter - Sports.x86 type: none -'853120': +"853120": installDir: Iron Ground launch: - config: oslist: windows executable: IronGroundVR_v01.exe type: vr -'853140': +"853140": installDir: Adeptus Titanicus Dominus launch: - config: oslist: windows executable: Dominus.exe type: default -'853150': +"853150": installDir: WaW Russian Battles launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: 64Bits/WAW.exe type: default workingdir: 64Bits - config: - osarch: '32' + osarch: "32" oslist: windows executable: 32Bits/WAW.exe type: default @@ -389686,7 +384121,7 @@ oslist: macos executable: WAW.app type: default -'853200': +"853200": installDir: Shred! 2 launch: - config: @@ -389697,19 +384132,19 @@ oslist: macos executable: Shred!2.app type: none -'853210': +"853210": installDir: Gopnik Simulator launch: - executable: GopnikSimulator.exe type: none -'853220': +"853220": installDir: Doors&Rooms launch: - config: oslist: windows executable: DoorsAndRooms.exe type: default -'853230': +"853230": installDir: Champions of Titan launch: - arguments: Connect=IDCGamesSteam @@ -389717,44 +384152,44 @@ oslist: windows executable: cot.exe type: default -'853240': +"853240": installDir: The Light Keeps Us Safe launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: light.exe type: default - - arguments: '-logmessages -logstack' + - arguments: "-logmessages -logstack" config: betakey: internal-test - osarch: '64' + osarch: "64" oslist: windows description: Launch with debug logging executable: light.exe type: none - - arguments: '-window-mode borderless' + - arguments: "-window-mode borderless" config: - osarch: '64' + osarch: "64" oslist: windows description: Play in borderless window executable: light.exe type: none -'853250': +"853250": installDir: A Compendium of Ghosts launch: - config: oslist: windows executable: A Compendium of Ghosts.exe type: none -'853260': +"853260": installDir: Ants! Mission of the salvation launch: - config: oslist: windows executable: app.exe type: none -'853290': +"853290": installDir: Claw Breaker launch: - config: @@ -389769,7 +384204,7 @@ oslist: linux executable: Claw Breaker.x86_64 type: default -'853300': +"853300": installDir: Pizza Delivery Boy launch: - config: @@ -389784,37 +384219,37 @@ oslist: linux executable: The_Pizza_Delivery_Boy_Who_Saved_the_World.sh type: default -'853310': +"853310": installDir: Mr. Maze launch: - config: oslist: windows executable: MrMaze.exe type: default -'853380': +"853380": installDir: Air Threat launch: - executable: air_threat.exe type: none -'853410': +"853410": installDir: YAPP2 Yet Another Pushing Puzzler launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: yapp2.exe type: none -'853440': {} -'853460': {} -'853480': +"853440": {} +"853460": {} +"853480": installDir: Pestis launch: - config: oslist: windows executable: Pestis.exe type: default -'853490': {} -'853500': +"853490": {} +"853500": installDir: Quarantine Circular launch: - config: @@ -389825,7 +384260,7 @@ oslist: macos executable: QC.app type: default -'853550': +"853550": installDir: Equilinox launch: - config: @@ -389840,12 +384275,12 @@ oslist: linux executable: equilinox type: default -'853580': +"853580": installDir: Lost launch: - executable: Lost.exe type: none -'853590': +"853590": installDir: Goroons launch: - config: @@ -389854,44 +384289,44 @@ type: default - config: oslist: macos - executable: Goroons.app\\Contents\\MacOS\\Goroons + executable: "Goroons.app\\\\Contents\\\\MacOS\\\\Goroons" type: default - config: oslist: linux executable: Goroons.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Goroons.x86 type: default -'853610': - installDir: 'The Outlaw, The Drunk, & The Whore' +"853610": + installDir: "The Outlaw, The Drunk, & The Whore" launch: - config: oslist: windows executable: ODW.exe type: default -'853620': +"853620": installDir: Stickman in the portal launch: - config: oslist: windows executable: Stickman In The Portal.exe type: default -'853700': +"853700": installDir: Heart of Dixie launch: - - executable: \\Heart of Dixie GOTY Hyper Combo Edition\\Game.exe + - executable: "\\\\Heart of Dixie GOTY Hyper Combo Edition\\\\Game.exe" type: none -'853760': +"853760": installDir: Space Armor 2 launch: - config: oslist: windows executable: SpaceArmor2.exe type: default -'853770': +"853770": installDir: Maximum Action launch: - config: @@ -389901,7 +384336,7 @@ - description: Maximum Uploader executable: Maximum Action Custom Weapons.exe type: option1 -'853780': +"853780": installDir: BlubBlub launch: - config: @@ -389912,29 +384347,29 @@ oslist: macos executable: BlubBlub.app type: none -'853830': +"853830": installDir: Great_Mountain_Experience launch: - config: oslist: windows executable: Great_Mountain_Experience.exe type: vr -'853850': +"853850": installDir: LOGistICAL Caribbean Islands launch: - config: oslist: windows executable: LogisticalApp.exe type: none -'853860': +"853860": installDir: aMAZE Classic launch: - config: oslist: windows executable: aMAZE Classic.exe type: default -'853900': {} -'853940': +"853900": {} +"853940": installDir: Moonfall Ultimate launch: - config: @@ -389945,8 +384380,8 @@ oslist: macos executable: MoonfallUltimate.app type: default -'853960': {} -'853980': +"853960": {} +"853980": installDir: Splash launch: - config: @@ -389955,36 +384390,36 @@ type: none - config: oslist: macos - executable: Splash.app\\Contents\\MacOS\\Splash + executable: "Splash.app\\\\Contents\\\\MacOS\\\\Splash" type: none -'854030': +"854030": installDir: Ancient Journey launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: AncientJourney.exe type: vr -'854060': +"854060": installDir: Bob The Cube launch: - config: oslist: windows executable: bobthecube.exe type: default -'854110': +"854110": installDir: AFTER-H launch: - config: oslist: windows executable: build/After-H-SmartVR.exe type: vr -'854120': +"854120": installDir: Subterraneus launch: - executable: Subterraneus.exe type: default -'854150': +"854150": installDir: Snail Racer EXTREME launch: - config: @@ -389993,31 +384428,31 @@ type: default - config: oslist: linux - executable: ./Snail_Racer_Extreme + executable: "./Snail_Racer_Extreme" type: default -'854160': +"854160": installDir: Dino Dawn launch: - config: oslist: windows - executable: win32\\Dino Dawn.exe + executable: "win32\\\\Dino Dawn.exe" type: none -'854190': +"854190": installDir: Russian Gangsta In HELL launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Classic_Shooter_v1_5.exe type: default -'854210': +"854210": installDir: Ice Demon launch: - config: oslist: windows executable: IceDemon2b.exe type: default -'854250': +"854250": installDir: FPV Freerider launch: - config: @@ -390028,52 +384463,52 @@ oslist: macos executable: FPVFreerider.app type: default -'854300': {} -'854310': +"854300": {} +"854310": installDir: Rise of Crustaceans launch: - config: oslist: windows executable: Rise of Crustaceans.exe type: config -'854330': +"854330": installDir: Lost in Spice launch: - config: oslist: windows executable: FinalBuild.exe type: othervr -'854340': {} -'854380': {} -'854390': +"854340": {} +"854380": {} +"854390": installDir: Doors Push or Pull launch: - config: oslist: windows executable: doors.exe type: none -'854400': +"854400": installDir: EXCHANGE launch: - config: oslist: windows executable: EXCHANGE.exe type: default -'854450': +"854450": installDir: ArloTheRabbitPC launch: - config: oslist: windows executable: Arlo_The_Rabbit.exe type: default -'854500': +"854500": installDir: Dawn of the Celestialpod launch: - config: oslist: windows executable: GWAMM_DOTC_GOLD_MASTER.exe type: default -'854510': +"854510": installDir: Warlock Tower Defence launch: - config: @@ -390086,7 +384521,7 @@ description: with OpenGL Core executable: OpenGL Core.exe type: option2 -'854530': +"854530": installDir: Paper Shakespeare Stick Caesar launch: - config: @@ -390095,14 +384530,14 @@ type: default - config: oslist: macos - executable: PS_JC.app\\Contents\\MacOS\\PS_JC + executable: "PS_JC.app\\\\Contents\\\\MacOS\\\\PS_JC" type: default - config: oslist: linux executable: PS_JC.sh type: default -'854540': - installDir: Paper Shakespeare Love's Labor Lost +"854540": + installDir: "Paper Shakespeare Love's Labor Lost" launch: - config: oslist: windows @@ -390110,33 +384545,33 @@ type: default - config: oslist: macos - executable: Paper_Shakespeare_LLL.app\\Contents\\MacOS\\Paper_Shakespeare_LLL + executable: "Paper_Shakespeare_LLL.app\\\\Contents\\\\MacOS\\\\Paper_Shakespeare_LLL" type: default - config: oslist: linux executable: Paper_Shakespeare_LLL.sh type: default -'854550': +"854550": installDir: ScaryMaze launch: - config: oslist: windows executable: scarymaze.exe type: default -'854560': {} -'854570': +"854560": {} +"854570": installDir: Pamali Indonesian Folklore Horror launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch Pamali executable: pjtRedLipstick.exe type: default nameLocalized: schinese: 鬼妇:印尼民间恐怖传说 -'854640': {} -'854650': +"854640": {} +"854650": installDir: Indian Mutiny - Little Sepoy launch: - config: @@ -390145,9 +384580,9 @@ type: default - config: oslist: macos - executable: Indian Mutiny - Little Sepoy.app\\Contents\\MacOS\\Indian Mutiny - Little Sepoy + executable: "Indian Mutiny - Little Sepoy.app\\\\Contents\\\\MacOS\\\\Indian Mutiny - Little Sepoy" type: default -'854670': +"854670": installDir: HEROES TRIALS launch: - config: @@ -390156,40 +384591,40 @@ type: default - config: oslist: macos - executable: Heroes Trials.app\\Contents\\MacOS\\Heroes Trials + executable: "Heroes Trials.app\\\\Contents\\\\MacOS\\\\Heroes Trials" type: default -'854680': +"854680": installDir: DeepLands launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: DeepLands.exe type: default -'854690': - installDir: RollerCoaster Legends 2 Thor's Hammer +"854690": + installDir: "RollerCoaster Legends 2 Thor's Hammer" launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: on Vive executable: RCLegends2.exe type: vr - - arguments: '-vrmode oculus' + - arguments: "-vrmode oculus" config: - osarch: '64' + osarch: "64" oslist: windows description: on Oculus Rift executable: RCLegends2.exe type: othervr -'854740': +"854740": installDir: President Pig launch: - config: oslist: windows executable: President Pig.exe type: default -'854770': +"854770": installDir: WhatTheFAQ launch: - config: @@ -390204,7 +384639,7 @@ oslist: linux executable: WhatTheFAQ.x86 type: none -'854810': +"854810": installDir: Simple Sailing launch: - config: @@ -390219,7 +384654,7 @@ oslist: linux executable: SimpleSailing.x86 type: none -'854830': +"854830": installDir: WashedUp launch: - config: @@ -390230,7 +384665,7 @@ oslist: macos executable: WashedUp.app/Contents/MacOS/WashedUp type: default -'854860': +"854860": installDir: Cows VS Vikings launch: - config: @@ -390246,11 +384681,11 @@ executable: CowsAndVikingsSteam.x86_64 type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: CowsAndVikingsSteam.x86 type: none -'854870': +"854870": installDir: Perseverance Part 1 launch: - config: @@ -390259,16 +384694,16 @@ type: default - config: oslist: macos - executable: P1 Mac.app\\Contents\\MacOS\\Perseverance1 + executable: "P1 Mac.app\\\\Contents\\\\MacOS\\\\Perseverance1" type: default -'854890': +"854890": installDir: International Basketball Manager launch: - config: oslist: windows executable: ibm.exe type: default -'854940': +"854940": installDir: Ikenfell launch: - config: @@ -390279,7 +384714,7 @@ oslist: macos executable: Ikenfell.app/Contents/MacOS/Ikenfell type: default -'854950': +"854950": installDir: Not Without You launch: - config: @@ -390290,34 +384725,34 @@ oslist: macos executable: NWY Mac Build.app type: default -'854990': {} -'855030': +"854990": {} +"855030": installDir: Balloon Strike launch: - config: oslist: windows executable: balloonstrike.exe type: default -'855050': +"855050": installDir: Thunderbolt 2 launch: - executable: Thunderbolt2.exe type: none -'855100': +"855100": installDir: StopDictator launch: - config: oslist: windows executable: stopdictator.exe type: none -'855160': +"855160": installDir: VTree Beach Volleyball launch: - config: oslist: windows executable: VTreeBeachVolleyball.exe type: default -'855180': +"855180": installDir: Squares launch: - config: @@ -390328,7 +384763,7 @@ oslist: macos executable: Squares.app type: none -'855190': +"855190": installDir: The Subject launch: - config: @@ -390337,28 +384772,28 @@ executable: TheSubject.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: TheSubject.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: TheSubject.x86 type: default -'855200': {} -'855240': {} -'855320': +"855200": {} +"855240": {} +"855320": installDir: 18 Floors launch: - config: oslist: windows executable: 18Floors.exe type: vr -'855370': {} -'855480': +"855370": {} +"855480": installDir: Digital Dungeon launch: - config: @@ -390367,9 +384802,9 @@ type: none - config: oslist: macos - executable: Digital Dungeon.app\\Contents\\MacOS\\Digital Dungeon + executable: "Digital Dungeon.app\\\\Contents\\\\MacOS\\\\Digital Dungeon" type: none -'855490': +"855490": installDir: Fury Race launch: - config: @@ -390380,14 +384815,14 @@ oslist: windows executable: Fury Race.exe type: none -'855510': +"855510": installDir: VOiD launch: - config: oslist: windows executable: VOiD.exe type: default -'855530': +"855530": installDir: New Ice York launch: - config: @@ -390398,33 +384833,33 @@ oslist: macos executable: newiceyork_mac.app type: default -'855550': +"855550": installDir: Coffee Noir - Business Detective Game launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: CoffeeNoir.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: CoffeeNoir.x86_64 type: default - config: oslist: macos - executable: CoffeeNoir.app\\Contents\\MacOS\\CoffeeNoir + executable: "CoffeeNoir.app\\\\Contents\\\\MacOS\\\\CoffeeNoir" type: default -'855580': +"855580": installDir: Ahlman Arcade 2018 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Ahlman Arcade 2018.exe type: default -'855610': {} -'855620': +"855610": {} +"855620": installDir: Asteroid Deathmatch launch: - config: @@ -390432,12 +384867,12 @@ executable: AsteroidDeathmatch.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: AsteroidDeathmatch.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: AsteroidDeathmatch.x86_64 type: default @@ -390445,7 +384880,7 @@ oslist: macos executable: AsteroidDeathmatch.app type: default -'855630': +"855630": installDir: Zeliria_Sanctuary launch: - config: @@ -390460,13 +384895,13 @@ oslist: macos executable: zeliria.app type: none -'855640': +"855640": installDir: My Brother Rabbit launch: - config: oslist: macos description: Launch - executable: MyBrotherRabbit.app\\Contents\\MacOS\\MyBrotherRabbit + executable: "MyBrotherRabbit.app\\\\Contents\\\\MacOS\\\\MyBrotherRabbit" type: default - config: oslist: windows @@ -390474,57 +384909,57 @@ executable: My Brother Rabbit.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: MyBrotherRabbit_i386 type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: MyBrotherRabbit_amd64 type: default -'855650': +"855650": installDir: TRIGGER launch: - config: oslist: windows executable: TRIGGER.exe type: default -'855670': +"855670": installDir: hyxz launch: - config: oslist: windows executable: hyxz.exe type: default -'855700': +"855700": installDir: Trippy Jump launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TrippyJump.exe type: default -'855710': {} -'855730': +"855710": {} +"855730": installDir: Plants launch: - config: oslist: windows executable: nw.exe type: default -'855740': +"855740": installDir: Bum Simulator launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: BumSim.exe type: default -'855750': {} -'855760': +"855750": {} +"855760": installDir: Sweet Treats launch: - config: @@ -390535,15 +384970,15 @@ oslist: macos executable: Sweet Treats.app type: default -'855800': +"855800": installDir: Trek_TATW launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: ./Trek_TATW.exe + executable: "./Trek_TATW.exe" type: vr -'855850': +"855850": installDir: Space Elite Force launch: - config: @@ -390551,11 +384986,11 @@ executable: Space Elite Force.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Space Elite Force.x86_64 type: default -'855860': +"855860": installDir: Superfighters Deluxe launch: - config: @@ -390566,15 +385001,15 @@ oslist: windows executable: Superfighters Deluxe Server.exe type: server -'855920': {} -'855940': +"855920": {} +"855940": installDir: Magical Fable The Princess of Light launch: - config: oslist: windows executable: Game.exe type: none -'855970': +"855970": installDir: Vixens From outer Space launch: - config: @@ -390582,52 +385017,52 @@ description: Start Game executable: VFOS_Game.exe type: default -'855980': +"855980": installDir: Tower Defense Ultimate (Restocked) launch: - config: oslist: windows executable: Tower Defense Ultimate.exe type: default -'855990': - installDir: 'Wake Up, Good Guardian!' +"855990": + installDir: "Wake Up, Good Guardian!" launch: - - arguments: '-windowed' + - arguments: "-windowed" config: oslist: windows executable: Game.exe type: default -'856010': +"856010": installDir: National Machine launch: - config: oslist: windows executable: NatMachine.exe type: none -'856040': +"856040": installDir: ChameleonMan launch: - config: oslist: windows executable: ChameleonMan.exe type: none -'856050': +"856050": installDir: Conjury of Nature launch: - config: oslist: windows executable: Conjury of Nature.exe type: vr -'856060': +"856060": installDir: Butterfly dream shadow launch: - executable: Butterfly dream shadow.exe type: none - config: - ownsdlc: '1014700' + ownsdlc: "1014700" executable: gaming strategy.txt type: none -'856080': +"856080": installDir: Mind Labyrinth VR Dreams launch: - config: @@ -390638,7 +385073,7 @@ oslist: windows executable: Mind Labyrinth VR Dreams.exe type: othervr -'856100': +"856100": installDir: Little Comet launch: - config: @@ -390649,53 +385084,49 @@ oslist: macos executable: Little Comet.app type: default -'856110': +"856110": installDir: Antisnake launch: - config: oslist: windows description: Antisnake - description_loc: - english: Antisnake executable: antisnake_beta.exe type: none - config: oslist: windows description: Antisnake classic - description_loc: - english: Antisnake classic executable: antisnake.exe type: none -'856120': +"856120": installDir: Next 4 launch: - config: oslist: windows executable: Next 4.exe type: default -'856130': +"856130": installDir: Dark SASI launch: - config: oslist: windows executable: Dark_SASI.exe type: default -'856160': +"856160": installDir: Star Baron VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: game.exe type: vr -'856170': +"856170": installDir: Exo TD launch: - config: oslist: windows executable: ExoTD.exe type: default -'856190': +"856190": installDir: Metori launch: - config: @@ -390707,59 +385138,59 @@ executable: Metori.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Metori.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Metori.x86_64 type: default -'856210': +"856210": installDir: bit Dungeon III launch: - executable: bd3.exe type: default -'856220': - installDir: DON'T DIE! +"856220": + installDir: "DON'T DIE!" launch: - config: oslist: windows executable: nw.exe type: default -'856240': +"856240": installDir: Total Singu launch: - config: oslist: windows executable: Total Singu.exe type: none -'856260': +"856260": installDir: 100 Chests launch: - config: oslist: windows executable: build_version_1.1.exe type: default -'856270': +"856270": installDir: Draid launch: - config: oslist: windows executable: Draid.exe type: default -'856300': +"856300": installDir: Disc Golf VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: VR Disc Golf.exe type: vr - config: betakey: beta - osarch: '64' + osarch: "64" oslist: windows executable: Done Prix VR.exe type: none @@ -390769,38 +385200,38 @@ description: For launching the dedicated rust Server executable: default-start.bat type: server -'856310': +"856310": installDir: Seul (Alone) The entrée launch: - config: oslist: windows executable: Seul(Alone).exe type: default -'856320': +"856320": installDir: The Road Trip launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: The Road Trip.exe type: none -'856350': +"856350": installDir: 15 seconds launch: - config: oslist: windows executable: 15seconds.exe type: default -'856370': +"856370": installDir: One-way Ticket · 单程票 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: A418.exe type: none -'856380': +"856380": installDir: Cartoonway - Mini Cars launch: - config: @@ -390811,25 +385242,25 @@ oslist: macos executable: Cartoonway - Mini Cars.app/Contents/MacOS/Cartoonway - Mini Cars type: default -'856390': +"856390": installDir: Apex Hunters launch: - config: oslist: windows executable: apex.exe type: none -'856400': +"856400": installDir: Stalker Crab Simulator launch: - config: oslist: macos - executable: Stalker Crab Simulator.app\\Contents\\MacOS\\Stalker Crab Simulator + executable: "Stalker Crab Simulator.app\\\\Contents\\\\MacOS\\\\Stalker Crab Simulator" type: default - config: oslist: windows executable: Stalker Crab Simulator.exe type: default -'856410': +"856410": installDir: Longest Monday Unveiling launch: - config: @@ -390840,25 +385271,25 @@ oslist: macos executable: Longest Monday Unveiling.app/Contents/MacOS/Longest Monday Unveiling type: none -'856420': +"856420": installDir: Glow Ball - Not A Billiard Puzzle Game launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: GBNABPG32.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: GBNABPG64.exe type: default -'856430': +"856430": installDir: Pinball 2018 launch: - config: oslist: macos - executable: Pinball 2018.app\\Contents\\MacOS\\Pinball 2018 + executable: "Pinball 2018.app\\\\Contents\\\\MacOS\\\\Pinball 2018" type: none - config: oslist: windows @@ -390868,13 +385299,13 @@ oslist: linux executable: Pinball 2018.x86 type: none -'856440': +"856440": installDir: Cube - The Jumper launch: - executable: ctjgame.exe type: none -'856460': {} -'856490': +"856460": {} +"856490": installDir: Falling words launch: - config: @@ -390889,9 +385320,9 @@ oslist: linux executable: Falling words.x86 type: none -'856500': {} -'856510': {} -'856540': +"856500": {} +"856510": {} +"856540": installDir: Super Dangerous Dungeons launch: - config: @@ -390902,24 +385333,24 @@ oslist: macos executable: Super Dangerous Dungeons.app type: default -'856550': +"856550": installDir: Stabby Machine launch: - config: oslist: windows executable: Stabby Machine.exe type: default -'856560': +"856560": installDir: Black Roses launch: - config: oslist: windows executable: Black Roses.exe type: none -'856570': +"856570": installDir: Lost Flame launch: - - arguments: '&& exit' + - arguments: "&& exit" config: oslist: windows executable: start.bat @@ -390928,137 +385359,118 @@ oslist: linux executable: LostFlame type: default -'856580': +"856580": installDir: Boo Boo Bananas launch: - config: oslist: windows executable: Boo Boo Bananas.exe type: none -'856600': +"856600": installDir: Fur the Game launch: - config: oslist: windows executable: Fur_0.5.exe type: none -'856610': +"856610": installDir: Beacon launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Beacon.exe type: default -'856620': +"856620": installDir: v_katsu launch: - config: betakey: default - osarch: '64' + osarch: "64" oslist: windows description: VKatsu - description_loc: - english: VKatsu - japanese: Vカツ executable: VKatsu.exe type: option1 - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" config: betakey: default - osarch: '64' + osarch: "64" oslist: windows description: 起動ダイアログを表示 - description_loc: - english: 起動ダイアログを表示 executable: VKatsu.exe type: none - config: betakey: labo - osarch: '64' + osarch: "64" oslist: windows description: VカツLABOを起動 executable: VKatsuLABO.exe type: none - - arguments: '-screen-width 1600 -screen-height 900 -screen-fullscreen 0' + - arguments: "-screen-width 1600 -screen-height 900 -screen-fullscreen 0" config: betakey: beta - osarch: '64' + osarch: "64" oslist: windows description: VKatsu (Windowed) - description_loc: - english: VKatsu (Windowed) - japanese: Vカツ (ウィンドウ表示) executable: VKatsu.exe type: option1 - - arguments: '-screen-width 1600 -screen-height 900 -screen-fullscreen 0' + - arguments: "-screen-width 1600 -screen-height 900 -screen-fullscreen 0" config: betakey: alpha - osarch: '64' + osarch: "64" oslist: windows description: VKatsu (Windowed) - description_loc: - english: VKatsu (Windowed) - japanese: Vカツ (ウィンドウ表示) executable: Vkatsu.exe type: option1 - - arguments: '-screen-width 1920 -screen-height 1080 -screen-fullscreen 1' + - arguments: "-screen-width 1920 -screen-height 1080 -screen-fullscreen 1" config: betakey: beta - osarch: '64' + osarch: "64" oslist: windows description: VKatsu (Fullscreen) - description_loc: - english: VKatsu (Fullscreen) - japanese: Vカツ (フルスクリーン表示) executable: VKatsu.exe type: option1 - - arguments: '-screen-width 1920 -screen-height 1080 -screen-fullscreen 1' + - arguments: "-screen-width 1920 -screen-height 1080 -screen-fullscreen 1" config: betakey: alpha - osarch: '64' + osarch: "64" oslist: windows description: VKatsu (Fullscreen) - description_loc: - english: VKatsu (Fullscreen) - japanese: Vカツ (フルスクリーン表示) executable: VKatsu.exe type: option1 - config: betakey: alpha - osarch: '64' + osarch: "64" oslist: windows description: VRoom - description_loc: - english: VRoom executable: VRoom.exe type: option1 nameLocalized: english: V-Katsu -'856650': +"856650": installDir: Pylon Racer launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: flight.bat type: default -'856670': +"856670": installDir: Present for manager launch: - config: oslist: windows executable: Present for Manager.exe type: none -'856730': +"856730": installDir: ARENA 8 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: game.exe type: none -'856750': +"856750": installDir: Metanoia launch: - config: @@ -391067,39 +385479,39 @@ type: default - config: oslist: macos - executable: Metanoia_Early_Access.app\\Contents\\MacOS\\Metanoia_Early_Access + executable: "Metanoia_Early_Access.app\\\\Contents\\\\MacOS\\\\Metanoia_Early_Access" type: default - config: oslist: linux executable: Metanoia_Early_Access.x86 type: default -'856760': +"856760": installDir: Gachi Gang launch: - config: oslist: windows executable: Gachi Gang.exe type: default -'856770': +"856770": installDir: Hokan Monster Slayer launch: - config: oslist: windows executable: Hokan.exe type: default -'856790': +"856790": installDir: Export Simulator launch: - config: oslist: windows executable: Export Simulator.exe type: default -'856850': +"856850": installDir: AFL Evolution 2 launch: - executable: afl.exe type: default -'856880': +"856880": installDir: Fighting Fantasy Classics launch: - config: @@ -391112,14 +385524,14 @@ description: Launch executable: Fighting Fantasy Classics.exe type: default -'856890': +"856890": installDir: Justice Sucks launch: - config: oslist: windows executable: JUSTICE SUCKS.exe type: default -'856980': +"856980": installDir: 7-in-1 Brain Sharpness Bundle launch: - config: @@ -391128,13 +385540,13 @@ type: default - config: oslist: macos - executable: BrainSharpness71.app\\Contents\\MacOS\\nwjs + executable: "BrainSharpness71.app\\\\Contents\\\\MacOS\\\\nwjs" type: default - config: oslist: linux executable: BrainSharpness71 type: default -'856990': +"856990": installDir: A Long Way Down launch: - config: @@ -391143,7 +385555,7 @@ type: default - config: oslist: macos - executable: ALWD.app\\Contents\\MacOS\\ALWD + executable: "ALWD.app\\\\Contents\\\\MacOS\\\\ALWD" type: default - config: oslist: linux @@ -391152,31 +385564,31 @@ nameLocalized: japanese: A Long Way Down (ログダン) schinese: 漫漫长路 -'857010': +"857010": installDir: HUBE Seeker of Achievements launch: - config: oslist: windows executable: HUBE Seeker of Achievements.exe type: default -'857020': +"857020": installDir: Putinoids VS Navalnyats - Путиноиды Против Навальнят launch: - config: oslist: windows executable: PUTIN.exe type: default -'857050': +"857050": installDir: Casual Penalty launch: - executable: CP.exe type: none -'857060': +"857060": installDir: CCCPCALLS launch: - executable: CCCPCALLS.exe type: none -'857080': +"857080": installDir: EscapeFromThePrincess launch: - config: @@ -391191,34 +385603,34 @@ oslist: macos executable: EscapeFromThePrincess.app type: default -'857100': {} -'857110': +"857100": {} +"857110": installDir: SPACE BLASTER 8 BIT launch: - executable: SPACE BLASTER 8 BIT.exe type: none -'857130': +"857130": installDir: Evo launch: - executable: Evo.exe type: default -'857140': - installDir: 'Snake, snake, snake!' +"857140": + installDir: "Snake, snake, snake!" launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: SnakeSnakeSnake\\Binaries\\Win64\\SnakeSnakeSnake.exe + executable: "SnakeSnakeSnake\\\\Binaries\\\\Win64\\\\SnakeSnakeSnake.exe" type: default -'857160': {} -'857180': +"857160": {} +"857180": installDir: TheCookingGameVR launch: - config: oslist: windows executable: TheCookingGameVR.exe type: vr -'857200': +"857200": installDir: Planet Stronghold 2 launch: - config: @@ -391229,7 +385641,7 @@ oslist: linux executable: PlanetStronghold2.sh type: none -'857210': +"857210": installDir: Building Block Heroes Rush launch: - config: @@ -391238,37 +385650,37 @@ type: default - config: oslist: macos - executable: Building Block Heroes Rush.app\\Contents\\MacOS\\Building Block Heroes Rush + executable: "Building Block Heroes Rush.app\\\\Contents\\\\MacOS\\\\Building Block Heroes Rush" type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: BBHRush type: default -'857230': {} -'857240': +"857230": {} +"857240": installDir: The Prison Experiment launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: BattleRoyale.exe type: default -'857300': +"857300": installDir: Korvux launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows executable: Korvux.exe type: none -'857330': +"857330": installDir: Trainiac launch: - executable: Trainiac.exe type: none -'857340': {} -'857370': +"857340": {} +"857370": installDir: The Entity launch: - config: @@ -391281,17 +385693,17 @@ type: default - config: oslist: windows - ownsdlc: '897280' - description: 'The Entity: Returning Home' + ownsdlc: "897280" + description: "The Entity: Returning Home" executable: The Entity Returning Home.exe type: none - config: oslist: macos - ownsdlc: '897280' - description: 'The Entity: Returning Home' + ownsdlc: "897280" + description: "The Entity: Returning Home" executable: The Entity Returning Home.app type: none -'857410': +"857410": installDir: RedSpider3-AHeroineNeverDies launch: - config: @@ -391302,41 +385714,41 @@ oslist: windows executable: RedSpider3.exe type: default -'857420': +"857420": installDir: Just Beat Em Up World of Fury launch: - config: oslist: windows executable: JBEU.exe type: default -'857440': {} -'857450': +"857440": {} +"857450": installDir: ISLAND launch: - config: oslist: windows executable: ISLAND.exe type: none -'857460': +"857460": installDir: Akashicforce launch: - - description: 'Launch ' + - description: "Launch " executable: Akashicforce.exe type: none - config: - ownsdlc: '1067340' + ownsdlc: "1067340" description: ∀kashicbox Vol.2 - Sound Matrix - executable: akashicbox\\sound_matrix.exe + executable: "akashicbox\\\\sound_matrix.exe" type: none workingdir: akashicbox -'857480': +"857480": installDir: Seirei launch: - config: oslist: windows executable: Seirei.exe type: none -'857500': +"857500": installDir: BlackBird launch: - config: @@ -391347,119 +385759,119 @@ oslist: macos executable: BLACKBIRD.app type: default -'857510': +"857510": installDir: Knife Flipping launch: - executable: Knife Flipping.exe type: none -'857520': +"857520": installDir: Degrees launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: nw.exe type: default -'857540': +"857540": installDir: Soviet Bear Uni Adventure launch: - config: oslist: windows executable: Soviet Bear Uni Adventure.exe type: none -'857570': +"857570": installDir: World of Feudal launch: - config: oslist: windows executable: World of Feudal.exe type: default -'857590': +"857590": installDir: ball fall launch: - executable: BallFall (1) - new and improved.exe type: default -'857600': +"857600": installDir: Fight_the_Horror launch: - config: oslist: windows executable: Fight_the_Horror.exe type: default -'857680': +"857680": installDir: Catan VR launch: - executable: Catan.exe type: vr -'857690': +"857690": installDir: Lagoon Lounge launch: - config: oslist: windows executable: LagoonLounge.exe type: default -'857700': +"857700": installDir: ZombieHunterZ launch: - executable: zombiehunterz.exe type: default -'857710': +"857710": installDir: Fallen Bird launch: - config: oslist: windows executable: FallenBird.exe type: none -'857740': +"857740": installDir: Ludicrous Speed launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: LudicrousSpeed.exe type: vr -'857760': +"857760": installDir: SAD RPG launch: - config: oslist: windows executable: SAD_RPG_WINDOWS/SAD RPG.exe type: default -'857770': +"857770": installDir: The Risers launch: - config: oslist: windows executable: The Risers.exe type: default -'857790': {} -'857800': {} -'857810': {} -'857820': {} -'857840': {} -'857850': +"857790": {} +"857800": {} +"857810": {} +"857820": {} +"857840": {} +"857850": installDir: Dwarf Defense launch: - config: oslist: windows executable: Dwarf Defense.exe type: default -'857860': +"857860": installDir: Planetary Settlers launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: PlanetarySettlers.exe type: default -'857890': +"857890": installDir: RuneTech launch: - config: oslist: windows executable: RuneTech.exe type: vr -'857900': +"857900": installDir: HugeEnemy launch: - config: @@ -391467,7 +385879,7 @@ executable: HugeEnemy.exe type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: HugeEnemy.x86_64 type: none @@ -391476,19 +385888,19 @@ executable: HugeEnemy.app type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: HugeEnemy.x86 type: none -'857940': +"857940": installDir: Nature Calls launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: HumanRace.exe type: default -'857950': +"857950": installDir: Incredible Mandy launch: - config: @@ -391497,11 +385909,11 @@ type: default nameLocalized: schinese: 不可思议之梦蝶 -'857980': +"857980": installDir: Void Bastards launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Void Bastards.exe type: default @@ -391509,7 +385921,7 @@ oslist: macos executable: Void Bastards.app/Contents/MacOS/Void Bastards type: default -'858010': +"858010": installDir: EnchantedGirl launch: - config: @@ -391520,8 +385932,8 @@ oslist: macos executable: EnchantedGirl.app type: none -'858030': {} -'858040': +"858030": {} +"858040": installDir: Sudoku Jigsaw launch: - config: @@ -391536,14 +385948,14 @@ oslist: linux executable: Sudoku Jigsaw.x86_64 type: default -'858050': +"858050": installDir: The Rose of Segunda launch: - config: oslist: windows executable: TROS.exe type: none -'858060': +"858060": installDir: Idle Heist launch: - config: @@ -391558,7 +385970,7 @@ oslist: macos executable: IdleHeist.app type: default -'858080': +"858080": installDir: Spoorky launch: - config: @@ -391569,26 +385981,26 @@ oslist: macos executable: Spoorky.app/Contents/MacOS/Spoorky type: default -'858090': +"858090": installDir: Spellcastia launch: - config: oslist: windows executable: Spellcastia.exe type: vr -'858100': +"858100": installDir: Grimshade launch: - config: oslist: windows executable: Grimshade.exe type: default -'858160': {} -'858170': +"858160": {} +"858170": installDir: The Last Train launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: The Last Train.exe type: default @@ -391597,23 +386009,23 @@ executable: Mac.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: The Last Train.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: The Last Train.x86 type: default -'858180': +"858180": installDir: Adventures of Mike launch: - config: oslist: windows executable: Adventures of Mike.exe type: default -'858210': +"858210": installDir: Nova Drift launch: - config: @@ -391626,15 +386038,15 @@ type: default nameLocalized: schinese: 新星漂移 Nova Drift -'858220': {} -'858250': +"858220": {} +"858250": installDir: Tainted Fate launch: - config: oslist: windows executable: Tainted Fate.exe type: vr -'858260': +"858260": installDir: UntilYouFall launch: - config: @@ -391645,15 +386057,15 @@ betakey: development executable: UntilYouFall.exe type: othervr -'858310': {} -'858320': +"858310": {} +"858320": installDir: Itsy Blitzy launch: - config: oslist: windows executable: ItsyBlitzy.exe type: default -'858360': +"858360": installDir: The Initiate 2 The First Interviews launch: - config: @@ -391664,24 +386076,24 @@ oslist: macos executable: The Initiate 2.app type: none -'858370': {} -'858380': +"858370": {} +"858380": installDir: WindowsNoEditor launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: EVR.exe type: vr -'858410': {} -'858420': +"858410": {} +"858420": installDir: Trivia Vault Business Trivia launch: - config: oslist: windows executable: Trivia Vault Business Trivia.exe type: default -'858440': +"858440": installDir: Ninja Midori launch: - config: @@ -391694,10 +386106,10 @@ type: none - executable: ninjamidori.app type: none -'858490': +"858490": installDir: Sanctus Mortem launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows executable: Sanctus Mortem.exe @@ -391710,14 +386122,14 @@ oslist: macos executable: Game.app type: default -'858500': +"858500": installDir: STD Gamefiles launch: - config: oslist: windows executable: STD.exe type: default -'858530': +"858530": installDir: Cat Lady launch: - config: @@ -391726,33 +386138,33 @@ type: none - config: oslist: macos - executable: CatLady.app\\Contents\\MacOS\\CatLady + executable: "CatLady.app\\\\Contents\\\\MacOS\\\\CatLady" type: none -'858560': +"858560": installDir: Tet VR launch: - config: oslist: windows executable: TetVR.exe type: vr -'858590': +"858590": installDir: Last Tide launch: - arguments: MainMenu_Proto -game -ENV=LIVE config: - osarch: '64' + osarch: "64" oslist: windows - executable: WindowsNoEditor\\DR.exe + executable: "WindowsNoEditor\\\\DR.exe" type: default - workingdir: WindowsNoEditor\\ -'858630': + workingdir: "WindowsNoEditor\\\\" +"858630": installDir: Aquaculture Land launch: - config: oslist: windows executable: Aquaculture Land.exe type: default -'858680': +"858680": installDir: Black Paradox launch: - config: @@ -391761,9 +386173,9 @@ type: default - config: oslist: macos - executable: BlackParadox.app\\Contents\\MacOS\\BlackParadox + executable: "BlackParadox.app\\\\Contents\\\\MacOS\\\\BlackParadox" type: default -'858700': +"858700": installDir: The Adventures of 00 Dilly launch: - config: @@ -391771,16 +386183,16 @@ executable: dilly.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: dilly.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: dilly.x86 type: default -'858710': +"858710": installDir: Gravity Circuit launch: - config: @@ -391797,14 +386209,14 @@ type: default nameLocalized: schinese: 重力回路 -'858730': +"858730": installDir: YokeLight launch: - config: oslist: windows executable: YokeLight.exe type: none -'858760': +"858760": installDir: Scalak launch: - config: @@ -391819,7 +386231,7 @@ oslist: linux executable: Scalak.x86_64 type: default -'858780': +"858780": installDir: Rent-a-Vice launch: - config: @@ -391834,11 +386246,11 @@ oslist: linux executable: RentAVice type: none -'858810': +"858810": installDir: DawnOfMan launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: DawnOfMan.exe type: default @@ -391846,115 +386258,115 @@ oslist: macos executable: DawnOfMan.app/Contents/MacOS/DawnOfMan type: default -'858820': +"858820": installDir: Tribes of Midgard launch: - - arguments: '-noreuseconn' + - arguments: "-noreuseconn" config: oslist: windows executable: TOM.exe nameLocalized: japanese: トライブス オブ ミッドガルド schinese: 米德加尔的部落 -'858830': +"858830": installDir: Echoes of the Fey The Last Sacrament launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: EotF2_TheLastSacrament/EotF_Sacrament.exe type: default -'858840': +"858840": installDir: The Epic Bang Theory launch: - executable: TEBT.exe type: default -'858860': +"858860": installDir: Tabletop Gods launch: - - arguments: '-NONVR -logFile log.log' + - arguments: "-NONVR -logFile log.log" config: oslist: windows executable: ttg.exe type: default - - arguments: '-logFile log.log' + - arguments: "-logFile log.log" config: oslist: windows executable: ttg.exe type: othervr - - arguments: '-logFile log.log' + - arguments: "-logFile log.log" config: oslist: windows executable: ttg.exe type: vr -'858870': +"858870": installDir: Queen of Seas 2 launch: - config: oslist: windows - executable: QoS2 Windows\\Queen of Seas 2.exe + executable: "QoS2 Windows\\\\Queen of Seas 2.exe" type: none - config: oslist: linux - executable: QoS2 Linux\\Queen of Seas 2.x86 + executable: "QoS2 Linux\\\\Queen of Seas 2.x86" type: none -'858880': +"858880": installDir: Fragile Fighter launch: - - arguments: '--disable-devtools' + - arguments: "--disable-devtools" config: oslist: windows executable: nw.exe type: default - - arguments: '--disable-devtools' + - arguments: "--disable-devtools" config: oslist: macos executable: fragilefighter2018.app type: default - - arguments: '--disable-devtools' + - arguments: "--disable-devtools" config: oslist: linux executable: nw type: default -'858940': +"858940": installDir: Flowers -Le volume sur ete- launch: - config: oslist: windows executable: FLOWERS.exe type: default -'858950': +"858950": installDir: RabbitAndTheMoon launch: - executable: Rabbitandthemoon.exe type: none -'858960': +"858960": installDir: Sumo launch: - config: oslist: windows executable: Sumo.exe type: default -'859030': {} -'859050': +"859030": {} +"859050": installDir: 360 No Scope! launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: 360NoScope.exe type: default -'859070': {} -'859090': +"859070": {} +"859090": installDir: Turbo Tunnel launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Pipeline.exe type: default -'859120': {} -'859150': +"859120": {} +"859150": installDir: FantasiaSango5 launch: - config: @@ -391965,20 +386377,20 @@ nameLocalized: schinese: 幻想三国志5 /Fantasia Sango 5 tchinese: 幻想三國誌5/Fantasia Sango 5 -'859160': {} -'859170': +"859160": {} +"859170": installDir: Survival launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: VR_ShootGame.exe type: vr -'859180': +"859180": installDir: Monster Castle launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: mc.exe type: default @@ -391986,29 +386398,28 @@ oslist: macos executable: mc.app type: default -'859200': +"859200": installDir: ChaosOfEast launch: - config: oslist: windows executable: ChaosOfEast.exe type: default -'859220': +"859220": installDir: Sweeper Zero launch: - config: oslist: windows executable: Start.exe type: vr -'859280': +"859280": installDir: Falsemen Rebirth launch: - executable: Game.exe type: none -'859310': +"859310": installDir: Dragon Battle - launch: [] -'859340': +"859340": installDir: SeekingDawn launch: - config: @@ -392016,244 +386427,232 @@ description: Normal Version executable: SeekingDawn.exe type: vr -'859350': +"859350": installDir: Aces of the Luftwaffe - Squadron launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: aotls.exe type: default -'859370': +"859370": installDir: in My Mind launch: - config: oslist: windows executable: in_My_MIND.exe type: default -'859380': +"859380": installDir: Whats My Gender launch: - config: oslist: windows executable: whatsmygender.exe type: default -'859410': {} -'859420': +"859410": {} +"859420": installDir: Deflection Dimension launch: - executable: Deflection Dimension.exe type: none -'859440': +"859440": installDir: Mars or Die! launch: - - arguments: '-fullscreen' + - arguments: "-fullscreen" config: - osarch: '64' + osarch: "64" oslist: windows executable: MarsOrDie.exe type: default -'859460': +"859460": installDir: Small person launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TwoNightsOneday.exe type: default -'859480': {} -'859510': +"859480": {} +"859510": installDir: Ace Meerkats launch: - config: oslist: windows executable: AceMeerkats.exe type: none -'859530': +"859530": installDir: Vive le Roi 2 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Vive le Roi 2.exe type: default -'859560': +"859560": installDir: EscapeTheGridVR launch: - config: oslist: windows executable: EscapeTheGridVR.exe type: openvroverlay -'859570': +"859570": installDir: Secret Neighbor launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Secret Neighbour.exe type: default -'859580': +"859580": installDir: ImperatorRome launch: - - arguments: '-- -steam' + - arguments: "-- -steam" config: betakey: 1.0.3 1.1.1 1.2.0 1.3.0 1.3.1 1.3.2 oslist: macos description: Launch game (pre-1.4) executable: launcher/Paradox Launcher.app/Contents/MacOS/Paradox Launcher type: default - - arguments: '-- -steam' + - arguments: "-- -steam" config: betakey: 1.0.3 1.1.1 1.2.0 1.3.0 1.3.1 1.3.2 oslist: linux description: Launch game (pre-1.4) executable: launcher/Paradox Launcher type: default - - arguments: '-- -steam' + - arguments: "-- -steam" config: betakey: 1.0.3 1.1.1 1.2.0 1.3.0 1.3.1 1.3.2 oslist: windows description: Launch game (pre-1.4) executable: launcher/Paradox Launcher.exe type: default - - arguments: '-steam -hardoos -randomlog' + - arguments: "-steam -hardoos -randomlog" config: betakey: atlantis_rising_beta mariuspress oslist: windows description: Multiplayer - description_loc: - english: Multiplayer executable: launcher/dowser.exe type: none - - arguments: '-hardoos -randomlog' + - arguments: "-hardoos -randomlog" config: betakey: atlantis_rising_beta mariuspress oslist: linux description: Multiplayer - description_loc: - english: Multiplayer executable: launcher/dowser type: none - - arguments: '-steam -hardoos -randomlog' + - arguments: "-steam -hardoos -randomlog" config: betakey: atlantis_rising_beta mariuspress oslist: macos description: Multiplayer - description_loc: - english: Multiplayer executable: launcher/dowser type: none - - arguments: '-nakama' + - arguments: "-nakama" config: betakey: atlantis_rising_beta mariuspress oslist: macos description: Nakama - description_loc: - english: Nakama executable: launcher/dowser type: none - - arguments: '-nakama' + - arguments: "-nakama" config: betakey: atlantis_rising_beta mariuspress oslist: linux description: Nakama - description_loc: - english: Nakama executable: launcher/dowser type: none - - arguments: '-nakama' + - arguments: "-nakama" config: betakey: atlantis_rising_beta mariuspress oslist: windows description: Nakama - description_loc: - english: Nakama executable: launcher/dowser.exe type: none - - arguments: '-nakama' + - arguments: "-nakama" config: betakey: imperator_test oslist: macos description: Crossplay Beta executable: launcher/dowser type: none - - arguments: '-nakama' + - arguments: "-nakama" config: betakey: imperator_test oslist: linux description: Crossplay Beta executable: launcher/dowser type: none - - arguments: '-nakama' + - arguments: "-nakama" config: betakey: imperator_test oslist: windows description: Crossplay Beta executable: launcher/dowser.exe type: none - - arguments: '-steam' + - arguments: "-steam" config: betakey: archimedes_press 1.4.0 1.4.1 1.4.2 oslist: windows executable: launcher/dowser.exe type: default - - arguments: '-steam' + - arguments: "-steam" config: betakey: archimedes_press 1.4.0 1.4.1 1.4.2 oslist: macos executable: launcher/dowser type: default - - arguments: '-steam' + - arguments: "-steam" config: betakey: archimedes_press 1.4.0 1.4.1 1.4.2 oslist: linux executable: launcher/dowser type: default - - arguments: '-nakama' + - arguments: "-nakama" config: - betakey: 'public atlantis_rising_beta menander_press 1.5.0 1.5.1 1.5.2 mariuspress 1.5.3 2.0.0, 2.0.1, 2.0.2' + betakey: "public atlantis_rising_beta menander_press 1.5.0 1.5.1 1.5.2 mariuspress 1.5.3 2.0.0, 2.0.1, 2.0.2" oslist: windows executable: launcher/dowser.exe type: default - - arguments: '-nakama' + - arguments: "-nakama" config: - betakey: 'public atlantis_rising_beta menander_press 1.5.0 1.5.1 1.5.2 mariuspress 1.5.3 2.0.0, 2.0.1, 2.0.2' + betakey: "public atlantis_rising_beta menander_press 1.5.0 1.5.1 1.5.2 mariuspress 1.5.3 2.0.0, 2.0.1, 2.0.2" oslist: macos executable: launcher/dowser type: default - config: - betakey: 'public atlantis_rising_beta menander_press 1.5.0 1.5.1 1.5.2 mariuspress 1.5.3 2.0.0, 2.0.1, 2.0.2' + betakey: "public atlantis_rising_beta menander_press 1.5.0 1.5.1 1.5.2 mariuspress 1.5.3 2.0.0, 2.0.1, 2.0.2" oslist: linux executable: launcher/dowser type: default -'859610': +"859610": installDir: STRETCH launch: - executable: STRETCH.exe type: default -'859640': +"859640": installDir: Along Together launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: AlongTogether_Steam.exe type: vr -'859660': +"859660": installDir: Discs of Steel Party launch: - config: oslist: windows executable: DiscsOfSteel.exe type: default -'859680': +"859680": installDir: Deep Space Waifu Fantasy launch: - config: oslist: windows executable: Deep Space Waifu Fantasy.exe type: default -'859700': +"859700": installDir: USA2020 launch: - config: @@ -392261,7 +386660,7 @@ description: USA 2020 executable: usa2020.exe type: default -'859720': +"859720": installDir: Cubelz launch: - config: @@ -392270,12 +386669,12 @@ type: default - config: oslist: windows - ownsdlc: '874121' + ownsdlc: "874121" description: DLC Cubelz Car executable: game.exe type: option1 - workingdir: \\dlc\\ -'859740': + workingdir: "\\\\dlc\\\\" +"859740": installDir: DontNoticeMe launch: - config: @@ -392286,8 +386685,8 @@ oslist: macos executable: DontNoticeMe.app type: default -'859760': {} -'859820': +"859760": {} +"859820": installDir: TripTrip launch: - config: @@ -392296,45 +386695,45 @@ type: default - config: oslist: linux - executable: ./TripTrip/runner + executable: "./TripTrip/runner" type: default - config: oslist: macos executable: TripTrip.app/Contents/MacOS/Mac_Runner type: default -'859860': +"859860": installDir: VikingJourney launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: VikingJourney.exe type: default -'859870': +"859870": installDir: Frqncy launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Frqncy.exe type: default -'859900': {} -'859920': +"859900": {} +"859920": installDir: Double Head Shark Attack launch: - config: oslist: windows executable: twoheadshark.exe type: default -'859930': {} -'859950': +"859930": {} +"859950": installDir: The Enthralling Realms launch: - config: oslist: windows executable: TheEnthrallingRealms.exe type: default -'859960': +"859960": installDir: Geocells Tricells launch: - config: @@ -392343,46 +386742,46 @@ type: none - config: oslist: macos - executable: Geocells.app\\Contents\\MacOS\\Geocells + executable: "Geocells.app\\\\Contents\\\\MacOS\\\\Geocells" type: none - config: oslist: linux executable: Geocells Tricells.x86_64 type: none -'859970': +"859970": installDir: Math Classroom Challenge launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Math CC.exe type: default - arguments: VR config: betakey: math_vr - osarch: '64' + osarch: "64" oslist: windows executable: MCLC.exe type: othervr - arguments: VR2 config: - osarch: '64' + osarch: "64" oslist: windows executable: MCLC.exe type: vr - config: oslist: macos - executable: Math_Classroom_Challenge.app\\Contents\\MacOS\\Math_Classroom_Challenge + executable: "Math_Classroom_Challenge.app\\\\Contents\\\\MacOS\\\\Math_Classroom_Challenge" type: default -'859980': {} -'859990': +"859980": {} +"859990": installDir: Eggs 1942 launch: - config: oslist: windows executable: Eggs 1942.exe type: none -'8600': +"8600": installDir: race 07 launch: - executable: SteamProxy.exe @@ -392391,30 +386790,30 @@ - arguments: /launchregistration description: Competition Registration executable: steamproxy.exe -'860000': +"860000": installDir: Cosmic collapse launch: - config: oslist: windows executable: Cosmic collapse.exe type: none -'860010': {} -'860020': {} -'860030': +"860010": {} +"860020": {} +"860030": installDir: Common Hanzi Quiz launch: - config: oslist: windows executable: hanzi.exe type: default -'860070': +"860070": installDir: BULLETLINE launch: - config: oslist: windows executable: BULLETLINE.exe type: default -'860080': +"860080": installDir: lilGunBois launch: - config: @@ -392425,95 +386824,95 @@ oslist: linux executable: lilGunBois-x86_64.AppImage type: none -'860090': +"860090": installDir: Erotic Jigsaw Challenge Vol 1 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: nw.exe type: default -'860100': - installDir: God's Blessing +"860100": + installDir: "God's Blessing" launch: - config: oslist: windows - executable: God's Blessing.exe + executable: "God's Blessing.exe" type: default - config: oslist: macos - executable: God's Blessing.app + executable: "God's Blessing.app" type: default -'860150': {} -'860160': {} -'860190': +"860150": {} +"860160": {} +"860190": installDir: Vietcong launch: - config: oslist: windows executable: Vietcong.exe type: none -'860200': {} -'860210': {} -'860220': {} -'860240': {} -'860260': +"860200": {} +"860210": {} +"860220": {} +"860240": {} +"860260": installDir: Strike Force Remastered launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: StrikeForce.exe type: none - config: - osarch: '64' + osarch: "64" oslist: windows executable: DedicatedServer.exe type: server -'860270': +"860270": installDir: Requiem launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Requiem.exe type: default -'860280': {} -'860320': +"860280": {} +"860320": installDir: Apartment 3301 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Apartment3301.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: Apartment3301.exe type: default -'860330': +"860330": installDir: Mutation Mayhem launch: - config: oslist: windows executable: MutationMayhem.exe type: default -'860340': +"860340": installDir: Trivia Vault Toy Trivia launch: - config: oslist: windows executable: Trivia Vault Toy Trivia.exe type: default -'860350': +"860350": installDir: Trivia Vault Fashion Trivia launch: - config: oslist: windows executable: Trivia Vault Fashion Trivia.exe type: default -'860360': +"860360": installDir: Kogent Defender launch: - config: @@ -392528,14 +386927,14 @@ oslist: linux executable: KogentDefender.x86_64 type: default -'860380': {} -'860390': {} -'860400': +"860380": {} +"860390": {} +"860400": installDir: Unexpected Journey launch: - config: oslist: macos - executable: UEJ.app\\Contents\\MacOS\\UEJ + executable: "UEJ.app\\\\Contents\\\\MacOS\\\\UEJ" type: none - config: oslist: windows @@ -392544,26 +386943,26 @@ nameLocalized: schinese: 奇幻之旅 tchinese: 奇幻之旅 -'860430': +"860430": installDir: Burgerwise the Clown launch: - - executable: windows_content\\Burgerwise The Clown.exe + - executable: "windows_content\\\\Burgerwise The Clown.exe" type: none -'860440': +"860440": installDir: Goat Life launch: - config: oslist: windows executable: Goat Life.exe type: none -'860450': +"860450": installDir: Module TD. Sci-Fi Tower Defense launch: - config: oslist: windows executable: ModuleTd.exe type: default -'860480': +"860480": installDir: Fernz Gate launch: - config: @@ -392573,70 +386972,54 @@ type: none nameLocalized: japanese: フェルンズゲート -'860490': +"860490": installDir: Revenant Dogma launch: - executable: RevenantDogma.exe type: none nameLocalized: japanese: レヴナントドグマ -'860500': +"860500": installDir: SpellFront launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SpellFront.exe type: default -'860510': +"860510": installDir: Little Nightmares II launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: Helios\\Binaries\\Win64\\Little Nightmares II.exe + executable: "Helios\\\\Binaries\\\\Win64\\\\Little Nightmares II.exe" type: default - config: - osarch: '64' + osarch: "64" oslist: windows - ownsdlc: '1413420' + ownsdlc: "1413420" description: Enhanced Edition - description_loc: - arabic: Enhanced Edition - brazilian: Enhanced Edition - english: Enhanced Edition - french: Enhanced Edition - german: Enhanced Edition - italian: Enhanced Edition - japanese: 'リトルナイトメア2 Enhanced Edition ' - koreana: 리틀 나이트메어 2 Enhanced Edition - latam: Edición mejorada - polish: Enhanced Edition - portuguese: Enhanced Edition - russian: Enhanced Edition - schinese: 小小梦魇2 强化版 - spanish: Enhanced Edition - tchinese: 小小夢魘2 強化版 - executable: EnhancedEdition\\Little_Nightmares_II_Enhanced.exe + executable: "EnhancedEdition\\\\Little_Nightmares_II_Enhanced.exe" type: option1 nameLocalized: japanese: Little Nightmares II -リトルナイトメア2- schinese: 小小梦魇2 tchinese: 小小夢魘2 -'860520': {} -'860530': +"860520": {} +"860530": installDir: Babycar Driver launch: - executable: Babycar.exe type: default -'860550': +"860550": installDir: Secrets of the Past Dion launch: - config: oslist: windows executable: secrets-of-the-past-dion.exe type: default -'860570': +"860570": installDir: Music Producer launch: - config: @@ -392645,9 +387028,9 @@ type: none - config: oslist: macos - executable: Music Producer.app\\Contents\\MacOS\\Music Producer + executable: "Music Producer.app\\\\Contents\\\\MacOS\\\\Music Producer" type: none -'860580': +"860580": installDir: Wrestling launch: - config: @@ -392658,21 +387041,21 @@ oslist: macos executable: Wrestlers Without Boundaries.app/Contents/MacOS/Wrestlers Without Boundaries type: none -'860590': +"860590": installDir: MissileDancer launch: - config: oslist: windows executable: MissileDancer.exe type: default -'860600': +"860600": installDir: Betweenside launch: - config: oslist: windows executable: Betweenside.exe type: none -'860620': +"860620": installDir: KURSK launch: - config: @@ -392681,13 +387064,13 @@ type: none - config: oslist: macos - executable: Kursk-SteamVersion.app\\Contents\\MacOS\\Kursk-SteamVersion + executable: "Kursk-SteamVersion.app\\\\Contents\\\\MacOS\\\\Kursk-SteamVersion" type: none - config: oslist: linux executable: Kursk-SteamVersion.x86_64 type: default -'860640': +"860640": installDir: Lingotopia launch: - config: @@ -392702,22 +387085,22 @@ oslist: linux executable: Lingotopia-Linux.x86_64 type: none -'860650': +"860650": installDir: Drizzlepath Deja Vu launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: DejaVu.exe type: default -'860660': +"860660": installDir: ToHellWithHell launch: - config: oslist: windows executable: ToHellWithHell.exe type: default -'860670': +"860670": installDir: Dungeons and Hunting launch: - config: @@ -392726,34 +387109,34 @@ type: default - config: oslist: macos - executable: Dungeons and Hunting.app\\Contents\\MacOS\\Dungeons and Hunting + executable: "Dungeons and Hunting.app\\\\Contents\\\\MacOS\\\\Dungeons and Hunting" type: none - config: - osarch: '32' + osarch: "32" oslist: linux - executable: Dungeons and Hunting.linux\\Dungeons and Hunting.x86 + executable: "Dungeons and Hunting.linux\\\\Dungeons and Hunting.x86" type: none - config: - osarch: '64' + osarch: "64" oslist: linux - executable: Dungeons and Hunting.linux\\Dungeons and Hunting.x86_64 + executable: "Dungeons and Hunting.linux\\\\Dungeons and Hunting.x86_64" type: none -'860680': - installDir: Smile'N'Slide +"860680": + installDir: "Smile'N'Slide" launch: - config: oslist: windows description: Launch executable: PLAY.exe type: none -'860730': +"860730": installDir: Skinscape launch: - config: oslist: windows executable: Skinscape.exe type: vr -'860770': +"860770": installDir: Made to Order launch: - config: @@ -392762,24 +387145,24 @@ type: default - config: oslist: macos - executable: MadeToOrder.app\\Contents\\MacOS\\MadeToOrder + executable: "MadeToOrder.app\\\\Contents\\\\MacOS\\\\MadeToOrder" type: default -'860790': +"860790": installDir: Adventures Of Pipi 2 Save Hype launch: - config: oslist: windows executable: AOP2DSH.exe type: default -'860820': +"860820": installDir: Meme Supreme launch: - config: oslist: windows executable: Meme Supreme.exe type: default -'860850': {} -'860860': +"860850": {} +"860860": installDir: Suicide Guy Sleepin Deeply launch: - config: @@ -392794,90 +387177,90 @@ oslist: linux executable: SuicideGuySleepinDeeply.x86_64 type: none -'860870': +"860870": installDir: BULLY STORE launch: - config: oslist: windows executable: BullyStore.exe type: vr -'860880': +"860880": installDir: Castle Jigsaw Puzzles launch: - config: oslist: windows - description: 'Puzzle 1: 104 Pieces' + description: "Puzzle 1: 104 Pieces" executable: Puzzle 1 104 Pieces.exe type: option1 - config: oslist: windows - description: 'Puzzle 2: 104 Pieces' + description: "Puzzle 2: 104 Pieces" executable: Puzzle 2 104 Pieces.exe type: option1 - config: oslist: windows - description: 'Puzzle 3: 104 Pieces' + description: "Puzzle 3: 104 Pieces" executable: Puzzle 3 104 Pieces.exe type: option1 - config: oslist: windows - description: 'Puzzle 4: 104 Pieces' + description: "Puzzle 4: 104 Pieces" executable: Puzzle 4 104 Pieces.exe type: option1 - config: oslist: windows - description: 'Puzzle 5: 104 Pieces' + description: "Puzzle 5: 104 Pieces" executable: Puzzle 5 104 Pieces.exe type: option1 - config: oslist: windows - description: 'Puzzle 6: 104 Pieces' + description: "Puzzle 6: 104 Pieces" executable: Puzzle 6 104 Pieces.exe type: option1 - config: oslist: windows - description: 'Puzzle 7: 104 Pieces' + description: "Puzzle 7: 104 Pieces" executable: Puzzle 7 104 Pieces.exe type: option1 - config: oslist: windows - description: 'Puzzle 8: 70 Pieces' + description: "Puzzle 8: 70 Pieces" executable: Puzzle 8 70 Pieces.exe type: option1 - config: oslist: windows - description: 'Puzzle 9: 70 Pieces' + description: "Puzzle 9: 70 Pieces" executable: Puzzle 9 70 Pieces.exe type: option1 - config: oslist: windows - description: 'Puzzle 10: 60 Pieces' + description: "Puzzle 10: 60 Pieces" executable: Puzzle 10 60 Pieces.exe type: option1 - config: oslist: windows - description: 'Puzzle 11: 60 Pieces' + description: "Puzzle 11: 60 Pieces" executable: Puzzle 11 60 Pieces.exe type: option1 - config: oslist: windows - description: 'Puzzle 12: 48 Pieces' + description: "Puzzle 12: 48 Pieces" executable: Puzzle 12 48 Pieces.exe type: option1 - - description: 'Puzzle 13: 60 Pieces' + - description: "Puzzle 13: 60 Pieces" executable: Puzzle 13 60 Pieces.exe type: option1 - config: oslist: windows - description: 'Puzzle 14: 60 Pieces' + description: "Puzzle 14: 60 Pieces" executable: Puzzle 14 60 Pieces.exe type: option1 - config: oslist: windows - description: 'Puzzle 15: 70 Pieces' + description: "Puzzle 15: 70 Pieces" executable: Puzzle 15 70 Pieces.exe type: option1 -'860890': +"860890": installDir: Factory Town launch: - config: @@ -392889,11 +387272,11 @@ oslist: macos executable: Factory Town.app type: none -'860900': +"860900": installDir: Bounty Battle launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: BountyBattle.exe type: default @@ -392905,12 +387288,12 @@ oslist: linux executable: BountyLinux.x86_64 type: default -'860910': +"860910": installDir: Hentai 3018 launch: - executable: Hentai.exe type: default -'860930': +"860930": installDir: A Quiet Mind launch: - config: @@ -392925,12 +387308,12 @@ oslist: linux executable: A Quiet Mind - Linux1.0.5.x86 type: default -'860940': {} -'860950': +"860940": {} +"860950": installDir: Mark of the Ninja Remastered launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: bin/Ninja.exe type: default @@ -392940,57 +387323,57 @@ executable: Ninja.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: bin64/Ninja type: default workingdir: bin64/ -'860990': +"860990": installDir: Chroma Shift launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ChromaShift.exe type: none -'861000': +"861000": installDir: Putinization launch: - config: oslist: windows executable: Putinization.exe type: none -'861010': +"861010": installDir: Minako launch: - executable: minako.exe type: default -'861020': +"861020": installDir: Virus launch: - config: oslist: windows executable: Virus.exe type: vr -'861030': +"861030": installDir: Lovely Fox launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Lovely Fox.exe type: default -'861050': +"861050": installDir: DemonsAreCrazy launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Only for Valve evaluation. executable: DemonsAreCrazy.exe type: default -'861070': {} -'861080': +"861070": {} +"861080": installDir: Lonia Saga 2 launch: - config: @@ -393001,16 +387384,16 @@ oslist: macos executable: Lonia Saga 2.app type: none -'861150': {} -'861160': +"861150": {} +"861160": installDir: Argos launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Argos130.exe type: vr -'861180': +"861180": installDir: Fading Visage launch: - config: @@ -393021,7 +387404,7 @@ oslist: windows executable: Fading Visage.exe type: none -'861190': +"861190": installDir: Shining Hotel launch: - config: @@ -393030,9 +387413,9 @@ type: default - config: oslist: macos - executable: Shining Hotel - Lost in Nowhere.app\\Contents\\MacOS\\Shining Hotel - Lost in Nowhere + executable: "Shining Hotel - Lost in Nowhere.app\\\\Contents\\\\MacOS\\\\Shining Hotel - Lost in Nowhere" type: default -'861210': +"861210": installDir: Gaze At Maze launch: - config: @@ -393043,22 +387426,22 @@ oslist: linux executable: GazeAtMaze type: default -'861230': +"861230": installDir: Arevoatl Seven Coins launch: - - arguments: '-Windowed' + - arguments: "-Windowed" config: oslist: windows executable: Arevoatl Seven Coins.exe type: default -'861240': +"861240": installDir: Paper Valley launch: - config: oslist: windows executable: Paper Valley.exe type: vr -'861250': +"861250": installDir: Cyber Shadow launch: - config: @@ -393075,18 +387458,18 @@ oslist: linux executable: CyberShadow/run.sh type: default -'861260': +"861260": installDir: Synthetic Love launch: - config: oslist: windows - executable: win\\SynLove.exe + executable: "win\\\\SynLove.exe" type: default - config: oslist: macos - executable: macOS\\Visionaire Player.app + executable: "macOS\\\\Visionaire Player.app" type: default -'861270': +"861270": installDir: Sudoku Killer launch: - config: @@ -393101,32 +387484,32 @@ oslist: linux executable: Sudoku Killer.x86_64 type: default -'861280': +"861280": installDir: Chimera of Tactics 2 launch: - config: oslist: windows executable: ZSKX2.exe type: default -'861290': +"861290": installDir: Shooter Game launch: - config: oslist: windows executable: ShooterGame.exe type: default -'861320': +"861320": installDir: Beyond Minimalism launch: - config: oslist: windows executable: BeyondMinimalism.exe type: default -'861330': +"861330": installDir: Dungeon Deathball launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Dungeon Deathball.exe type: default @@ -393134,36 +387517,36 @@ japanese: ダンジョン・デスボール schinese: 地牢亡球 tchinese: 地牢亡球 -'861340': {} -'861350': +"861340": {} +"861350": installDir: Gym Simulator launch: - config: oslist: windows executable: Gym Simulator.exe type: default -'861400': +"861400": installDir: Nefertari Journey to Eternity launch: - config: oslist: windows executable: TombNew.exe type: vr -'861450': {} -'861460': {} -'861480': {} -'861510': +"861450": {} +"861460": {} +"861480": {} +"861510": installDir: Sail Ships launch: - config: oslist: windows executable: sail ships 12.blend.exe type: default -'861540': +"861540": installDir: Dicey Dungeons launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: diceydungeons.exe type: default @@ -393172,126 +387555,126 @@ executable: diceydungeons.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: diceydungeons type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: diceydungeons type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: diceydungeons.exe type: default -'861550': +"861550": installDir: Neon Universe launch: - executable: game.exe type: none -'861560': {} -'861570': {} -'861580': +"861560": {} +"861570": {} +"861580": installDir: Delve launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows executable: Game.exe type: none -'861650': +"861650": installDir: Session launch: - config: oslist: windows executable: SessionGame.exe type: default -'861670': +"861670": installDir: Street Level Windows Edition launch: - config: oslist: windows executable: StreetLevel.exe type: default -'861710': +"861710": installDir: Geometry Rush launch: - executable: Geometry Rush.exe type: none -'861720': +"861720": installDir: Trivia Vault Food Trivia launch: - config: oslist: windows executable: Trivia Vault Food Trivia.exe type: default -'861740': +"861740": installDir: Trivia Vault Literature Trivia launch: - config: oslist: windows executable: Trivia Vault Literature Trivia.exe type: default -'861760': +"861760": installDir: Foto Flash 2 launch: - config: oslist: windows executable: Foto Flash 2.exe type: default -'861770': +"861770": installDir: FrogStatue launch: - config: oslist: windows executable: FrogStatue.exe type: default -'861790': +"861790": installDir: Bomb-Bomb launch: - config: oslist: windows executable: 0.1.1.exe type: default -'861810': +"861810": installDir: Tango5Reloaded launch: - - arguments: ./nxsteam/src/ - executable: nxsteam\\nxsteam.exe + - arguments: "./nxsteam/src/" + executable: "nxsteam\\\\nxsteam.exe" type: none -'861840': {} -'861850': {} -'861860': +"861840": {} +"861850": {} +"861860": installDir: Doctor Tsunami launch: - config: oslist: windows executable: DrTsunami_V97_MasterBuild.exe type: default -'861910': +"861910": installDir: Catch-em launch: - config: oslist: windows - description: Launch Catch'em! + description: "Launch Catch'em!" executable: Catchem.exe type: default - - arguments: '-settings' + - arguments: "-settings" config: oslist: windows description: Configure Settings executable: Catchem.exe type: none -'861920': +"861920": installDir: Rocket Valley Tycoon launch: - config: oslist: windows executable: RocketValleyTycoon.exe type: default -'861930': +"861930": installDir: Kidz launch: - config: @@ -393302,7 +387685,7 @@ oslist: macos executable: kidz.app type: default -'861940': +"861940": installDir: Crashbots launch: - config: @@ -393317,7 +387700,7 @@ oslist: linux executable: Crashbots.x86_64 type: default -'861960': +"861960": installDir: Master Pyrox Wizard Smackdown launch: - arguments: intro.tscn @@ -393327,31 +387710,31 @@ type: default - arguments: intro.tscn config: - osarch: '32' + osarch: "32" oslist: linux executable: MasterPyrox.x86 type: default - arguments: intro.tscn config: - osarch: '64' + osarch: "64" oslist: linux executable: MasterPyrox.x86_64 type: default -'8620': +"8620": installDir: Attack on Pearl Harbor launch: - executable: Setup.exe -'862010': {} -'862020': {} -'862040': {} -'862110': +"862010": {} +"862020": {} +"862040": {} +"862110": installDir: Super Jigsaw Puzzle Cities launch: - config: oslist: windows executable: Super Jigsaw Puzzle Cities.exe type: default -'862120': +"862120": installDir: Deconstructor launch: - config: @@ -393360,28 +387743,28 @@ type: none - config: oslist: macos - executable: Deconstructor.app\\Contents\\MacOS\\Deconstructor + executable: "Deconstructor.app\\\\Contents\\\\MacOS\\\\Deconstructor" type: none - config: oslist: linux executable: Deconstructor.x86 type: none -'862130': +"862130": installDir: Rainy Day Racer launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: rdr.exe type: none -'862150': +"862150": installDir: Prison Test launch: - config: oslist: windows executable: Prison Test.exe type: default -'862160': +"862160": installDir: Comet Crasher launch: - config: @@ -393393,31 +387776,31 @@ executable: CometCrasher.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: CometCrasher.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: CometCrasher.x86_64 type: default -'862180': {} -'862190': +"862180": {} +"862190": installDir: Footy Ball Tournament 2018 launch: - config: oslist: windows executable: FootyBall_T2018.exe type: none -'862200': +"862200": installDir: Bot Tales The Crashed launch: - config: oslist: windows executable: Bot Tales The Crashed.exe type: default -'862210': +"862210": installDir: Inca Marbles launch: - config: @@ -393426,28 +387809,28 @@ type: none - config: oslist: macos - executable: Inca Marbles.app\\Contents\\MacOS\\Inca Marbles + executable: "Inca Marbles.app\\\\Contents\\\\MacOS\\\\Inca Marbles" type: none - config: oslist: linux executable: Inca Marbles.x86 type: none -'862230': {} -'862240': +"862230": {} +"862240": installDir: E3.14CENTER launch: - config: oslist: windows executable: ePIcenter.exe type: default -'862250': +"862250": installDir: Danger!Energy launch: - config: oslist: windows executable: danger-energy.exe type: default -'862260': +"862260": installDir: Miami Cruise launch: - config: @@ -393459,59 +387842,59 @@ executable: Miami Cruise.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: MiamiCruise.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: MiamiCruise.x86_64 type: default -'862300': +"862300": installDir: ROS launch: - config: oslist: windows executable: ROS.exe type: default -'862320': {} -'862370': +"862320": {} +"862370": installDir: Yahrit launch: - config: oslist: windows executable: Yahrit.exe type: default -'862390': +"862390": installDir: FlyInside Flight Simulator launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: FlyInsideSimulator.exe type: default - - arguments: '-start_in_steam_vr' + - arguments: "-start_in_steam_vr" config: - osarch: '64' + osarch: "64" oslist: windows executable: FlyInsideSimulator.exe type: vr - - arguments: '-start_in_oculus_vr' + - arguments: "-start_in_oculus_vr" config: - osarch: '64' + osarch: "64" oslist: windows executable: FlyInsideSimulator.exe type: othervr -'862440': +"862440": installDir: Angel Wings launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: AngelStory.exe type: default -'862460': +"862460": installDir: To Light Ex Umbra launch: - config: @@ -393522,16 +387905,16 @@ oslist: windows executable: Game.exe type: default -'862480': +"862480": installDir: The Spiral Scouts launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: TheSpiralScouts.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: TheSpiralScouts.exe type: default @@ -393539,11 +387922,11 @@ oslist: macos executable: TheSpiralScouts.app type: default -'862490': +"862490": installDir: Fantasy Raiders launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Fantasy Raiders.exe type: default @@ -393551,23 +387934,23 @@ oslist: macos executable: Fantasy Raiders.app type: default -'862500': +"862500": installDir: Talos VR launch: - config: oslist: windows executable: Talos.exe type: othervr -'862520': +"862520": installDir: LuckyNight launch: - - arguments: '-VR -LoginServer=master.solar.qq.com:10008' + - arguments: "-VR -LoginServer=master.solar.qq.com:10008" config: - osarch: '64' + osarch: "64" oslist: windows executable: SolarGame.exe type: vr -'862570': +"862570": installDir: Ding Dong XL launch: - config: @@ -393575,26 +387958,26 @@ executable: DingDongXL.app type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: DingDongXL.x86_64 type: none - config: - osarch: '32' + osarch: "32" oslist: windows executable: DingDongXL.exe type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: DingDongXL.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: windows executable: DingDongXL.exe type: none -'862580': +"862580": installDir: OKNORMAL launch: - config: @@ -393605,15 +387988,15 @@ oslist: macos executable: oknormal_mac_steam.app type: default -'862590': +"862590": installDir: Blue Fear launch: - config: oslist: windows executable: bin/win_x64/GameLauncher.exe type: default -'862620': {} -'862640': +"862620": {} +"862640": installDir: Heroes Of The Offworld Arena launch: - config: @@ -393624,7 +388007,7 @@ oslist: macos executable: Heroes Of The Offworld Arena.app/Contents/MacOS/Heroes Of The Offworld Arena type: none -'862650': +"862650": installDir: City Of Jade Imperial Frontier launch: - config: @@ -393633,9 +388016,9 @@ type: none - config: oslist: macos - executable: City of Jade Imperial Frontier.app\\Contents\\MacOS\\City of Jade Imperial Frontier + executable: "City of Jade Imperial Frontier.app\\\\Contents\\\\MacOS\\\\City of Jade Imperial Frontier" type: none -'862660': +"862660": installDir: Football Girls Dream Team launch: - config: @@ -393646,39 +388029,39 @@ oslist: macos executable: Football Girls - Dream Team.app/Contents/MacOS/Football Girls - Dream Team type: default -'862670': {} -'862690': - installDir: 'Kid,napper' +"862670": {} +"862690": + installDir: "Kid,napper" launch: - config: oslist: windows - executable: 'Kid,napper.exe' + executable: "Kid,napper.exe" type: default - config: oslist: macos - executable: 'Kid,napper.app' + executable: "Kid,napper.app" type: default - config: oslist: linux - executable: 'Kid,napper.sh' + executable: "Kid,napper.sh" type: default nameLocalized: - english: 'Kid,napper: Gosh, I''m Kidnapped by a Pupil' + english: "Kid,napper: Gosh, I'm Kidnapped by a Pupil" schinese: 关于我被小学女生绑架这件事 tchinese: 關於我被小學女生綁架這件事 -'862730': +"862730": installDir: MagicBlastVR launch: - config: oslist: windows executable: MagicBlastVR/MagicBlastVR.exe type: vr -'862740': +"862740": installDir: OneShift launch: - executable: OneShift.exe type: default -'862770': +"862770": installDir: KOMech launch: - config: @@ -393687,56 +388070,56 @@ type: none - config: oslist: macos - executable: KOMAC.app\\Contents\\MacOS\\KOMAC + executable: "KOMAC.app\\\\Contents\\\\MacOS\\\\KOMAC" type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: KOLin.x86_64 type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: KOLin.x86 type: none -'862790': +"862790": installDir: 13 Cycles launch: - config: oslist: windows executable: 13 Cycles.exe type: default -'862800': +"862800": installDir: Storm Chasers launch: - config: oslist: windows executable: Storm Chasers.exe type: default -'862850': +"862850": installDir: The Great Story of a Mighty Hero - Remastered launch: - config: oslist: windows executable: GSMH-R.exe type: default -'862880': +"862880": installDir: Intelligence Anime girls launch: - config: oslist: windows executable: Intelligence Anime girls.exe type: config -'862890': {} -'862900': {} -'862920': +"862890": {} +"862900": {} +"862920": installDir: Kitsune Kitchen launch: - config: oslist: windows executable: KitchenKitsunes.exe type: default -'862940': +"862940": installDir: GB2_vive_862943 launch: - config: @@ -393745,68 +388128,68 @@ type: default - executable: ghostbusters.exe type: vr -'862990': +"862990": installDir: SurviveTheWest launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SurviveTheWest.exe type: none -'863120': +"863120": installDir: The-General-Retreats launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: GeneralRetreats.bat type: default -'863140': {} -'863150': +"863140": {} +"863150": installDir: Caverns Lost Sky launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Caverns.exe type: default -'863170': +"863170": installDir: MuertesArena launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: MuertesArena.exe type: othervr -'863190': +"863190": installDir: Range Royale launch: - - arguments: '-FULLSCREEN -SAVEINPOS=1' + - arguments: "-FULLSCREEN -SAVEINPOS=1" config: - osarch: '64' + osarch: "64" oslist: windows executable: RangeRoyale.exe type: default -'863210': +"863210": installDir: Delta Horizon launch: - executable: DeltaHorizon.exe type: default -'863220': +"863220": installDir: Anderson launch: - config: oslist: windows executable: Anderson.exe type: vr -'863270': +"863270": installDir: Orc Island launch: - config: oslist: windows executable: Orc Island.exe type: default -'863280': +"863280": installDir: Astraeus launch: - executable: Astraeus.exe @@ -393814,39 +388197,39 @@ - description: Launch Astraeus Non-VR Version executable: Astraeus_NonVR.exe type: none -'863290': +"863290": installDir: BalanceOfSoccer launch: - config: oslist: windows executable: BalanceOfSoccer.exe type: default -'863300': {} -'863310': +"863300": {} +"863310": installDir: VF launch: - executable: vf.exe type: none - executable: vf.exe type: none -'863380': +"863380": installDir: Frankenstein Beyond the Time launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Frankenstein.exe type: openvroverlay -'863400': +"863400": installDir: Feud launch: - config: - osarch: '64' + osarch: "64" oslist: linux executable: feud type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: feud.exe type: default @@ -393854,14 +388237,14 @@ oslist: macos executable: Feud.app/Contents/MacOS/feud type: default -'863420': +"863420": installDir: Melting World Online launch: - config: oslist: windows executable: Melting-World-Online.exe type: none -'863430': +"863430": installDir: One person story launch: - config: @@ -393872,7 +388255,7 @@ oslist: macos executable: onePersonStory.app type: none -'863460': +"863460": installDir: Cyber Ops launch: - config: @@ -393883,26 +388266,26 @@ oslist: macos executable: Cyber Ops.app type: default -'863470': - installDir: Cairo's Tale The Big Egg +"863470": + installDir: "Cairo's Tale The Big Egg" launch: - config: oslist: windows executable: CairoVRGame2.exe type: vr -'863490': +"863490": installDir: Bighead Runner launch: - executable: Bighead runner.exe type: default -'863550': +"863550": installDir: HITMAN2 launch: - config: oslist: windows executable: Launcher.exe type: default -'863560': +"863560": installDir: Slime CCG launch: - config: @@ -393912,10 +388295,10 @@ type: default - config: oslist: windows - ownsdlc: '865620' - executable: Slime CCG DLC\\Slime CCG DLC.exe + ownsdlc: "865620" + executable: "Slime CCG DLC\\\\Slime CCG DLC.exe" type: default -'863570': +"863570": installDir: Super Seducer 2 launch: - config: @@ -393928,54 +388311,54 @@ type: default - config: oslist: windows - ownsdlc: '932740' + ownsdlc: "932740" description: Bonus Video 1 - executable: \\Seduction Masterclass 1 - Meeting The Right Women\\openFolder.bat + executable: "\\\\Seduction Masterclass 1 - Meeting The Right Women\\\\openFolder.bat" type: none - config: oslist: windows - ownsdlc: '932741' + ownsdlc: "932741" description: Bonus Video 2 - executable: \\Seduction Masterclass 2 - Creating Abundance\\openFolder.bat + executable: "\\\\Seduction Masterclass 2 - Creating Abundance\\\\openFolder.bat" type: none - config: oslist: windows - ownsdlc: '932742' + ownsdlc: "932742" description: Bonus Video 3 - executable: \\Seduction Masterclass 3 - Girlfriend Guaranteed\\openFolder.bat + executable: "\\\\Seduction Masterclass 3 - Girlfriend Guaranteed\\\\openFolder.bat" type: none - config: oslist: windows - ownsdlc: '938950' + ownsdlc: "938950" description: Soundtrack - executable: \\Super Seducer 2 Soundtrack\\openFolder.bat + executable: "\\\\Super Seducer 2 Soundtrack\\\\openFolder.bat" type: none - config: oslist: windows - ownsdlc: '932744' + ownsdlc: "932744" description: Soul Mate Sequence Book - executable: \\Soulmate Sequence - Your Guide to Social Confidence and Finding the One (book)\\openFolder.bat + executable: "\\\\Soulmate Sequence - Your Guide to Social Confidence and Finding the One (book)\\\\openFolder.bat" type: none - config: oslist: windows - ownsdlc: '932743' + ownsdlc: "932743" description: Dark Side of Seduction Documentary - executable: \\The Dark Side of Seduction_ (SS2 Documentary)\\openFolder.bat + executable: "\\\\The Dark Side of Seduction_ (SS2 Documentary)\\\\openFolder.bat" type: none -'863580': +"863580": installDir: Viking Days launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: VikingDays.exe type: vr - config: - osarch: '64' + osarch: "64" oslist: windows executable: VikingDays.exe type: othervr -'863590': +"863590": installDir: Starcom Nexus launch: - config: @@ -393983,66 +388366,66 @@ executable: StarcomNexus.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: StarcomNexus.x86_64 type: default -'863640': +"863640": installDir: Quiz Time launch: - config: oslist: windows executable: Quiz.exe type: default -'863660': +"863660": installDir: Sea of memories launch: - config: oslist: windows executable: SeaOfMemories.exe type: vr -'863670': +"863670": installDir: ScienceThe world is in your hands launch: - config: oslist: windows executable: Science.exe type: vr -'863690': +"863690": installDir: Blueprint launch: - executable: blueprint.exe type: none -'863700': {} -'863720': {} -'863730': +"863700": {} +"863720": {} +"863730": installDir: Artillery Cats launch: - config: oslist: windows executable: ArtilleryCats.exe type: none -'863750': {} -'863770': {} -'863780': {} -'863810': +"863750": {} +"863770": {} +"863780": {} +"863810": installDir: SMASHBOY_KZ launch: - config: oslist: windows executable: Game.exe type: default -'863870': +"863870": installDir: Brain 43 launch: - executable: Game.exe type: none -'863900': - installDir: Villager'sBiography +"863900": + installDir: "Villager'sBiography" launch: - executable: Game.exe type: default -'863920': +"863920": installDir: The Lost Sky launch: - config: @@ -394053,36 +388436,36 @@ oslist: windows executable: lostsky.exe type: default -'863980': +"863980": installDir: ORIX! launch: - config: oslist: windows executable: ORIX.exe type: default -'864010': +"864010": installDir: Space Force launch: - config: oslist: windows executable: SpaceForce.exe type: default -'864020': +"864020": installDir: Lost Legend launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows executable: Game.exe type: default - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: macos executable: Game.app type: default -'864030': {} -'864040': {} -'864060': +"864030": {} +"864040": {} +"864060": installDir: Marble It Up! launch: - config: @@ -394107,17 +388490,15 @@ type: option1 - config: oslist: linux - executable: ./MarbleItUp.x86_64 + executable: "./MarbleItUp.x86_64" type: default - arguments: +LevelTest 1 config: oslist: linux description: Level Tester - description_loc: - english: Level Tester - executable: ./MarbleItUp.x86_64 + executable: "./MarbleItUp.x86_64" type: option1 -'864100': +"864100": installDir: Sagebrush launch: - config: @@ -394126,17 +388507,17 @@ type: default - config: oslist: macos - executable: Sagebrush.app\\Contents\\MacOS\\Sagebrush + executable: "Sagebrush.app\\\\Contents\\\\MacOS\\\\Sagebrush" type: default -'864110': +"864110": installDir: Trap Defense launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Trap Defense.exe type: default -'864130': +"864130": installDir: My Magical Demon Lover launch: - config: @@ -394154,11 +388535,11 @@ description: launch executable: MyMagicalDemonLover.sh type: none -'864150': +"864150": installDir: Feelin launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Feelin.exe type: none @@ -394166,16 +388547,16 @@ oslist: macos executable: Feelin.app type: none -'864160': +"864160": installDir: BE-A Walker launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Walker.exe type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: walker.x86_64 type: none @@ -394183,105 +388564,105 @@ oslist: macos executable: walker.app type: none -'864190': - installDir: '3, 2, 1, SURVIVE !' +"864190": + installDir: "3, 2, 1, SURVIVE !" launch: - config: oslist: windows executable: 321Survive.exe type: default -'864200': +"864200": installDir: Demolition Ball launch: - executable: Demolition Ball.exe type: default -'864230': {} -'864260': {} -'864270': {} -'864300': +"864230": {} +"864260": {} +"864270": {} +"864300": installDir: qop 3 launch: - config: oslist: windows executable: qop 3.exe type: default -'864310': +"864310": installDir: Destiny of a Wizard 2 Beyond the Vale launch: - config: oslist: windows executable: Game.exe type: default -'864360': +"864360": installDir: SavannaShotVR launch: - config: oslist: windows executable: SavannaShotVR.exe type: vr -'864370': +"864370": installDir: Aztec_Number launch: - config: oslist: windows executable: AztecNumber.exe type: none -'864380': {} -'864390': {} -'864400': {} -'864410': {} -'864420': +"864380": {} +"864390": {} +"864400": {} +"864410": {} +"864420": installDir: WatersideChirping launch: - config: oslist: windows executable: Game.exe type: default -'864430': +"864430": installDir: silverframe launch: - config: oslist: windows executable: silverframe.exe type: default -'864480': +"864480": installDir: TapRPG - Homeland launch: - config: oslist: windows executable: TapRPGPC.exe type: default -'864500': +"864500": installDir: Calm Cards - Klondike launch: - config: oslist: windows executable: KlondikeBuild.exe type: default -'864510': +"864510": installDir: Scud Frenzy launch: - config: oslist: windows executable: Scud Frenzy.exe type: none -'864520': {} -'864530': +"864520": {} +"864530": installDir: Necro Immortallis launch: - config: oslist: windows executable: Necro Immortallis.exe type: default -'864540': +"864540": installDir: FALLBACK launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: fallback.exe type: none -'864550': +"864550": installDir: RadiantOne launch: - config: @@ -394290,37 +388671,37 @@ type: default - config: oslist: macos - executable: RadiantOne.app\\Contents\\MacOS\\RadiantOne + executable: "RadiantOne.app\\\\Contents\\\\MacOS\\\\RadiantOne" type: default -'864570': +"864570": installDir: Chocolate makes you happy 6 launch: - config: oslist: windows executable: Chocolate makes you happy 6.exe type: default -'864590': +"864590": installDir: Zombie Rampage launch: - executable: zombie_rampage.exe type: default -'864600': - installDir: Jade's Dungeon Descent +"864600": + installDir: "Jade's Dungeon Descent" launch: - config: oslist: windows executable: TempleAdventure.exe type: default -'864610': +"864610": installDir: Magic Realm Online launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: HTC Vive - launch with Steam VR executable: MRO.exe type: vr -'864680': +"864680": installDir: Rover Mechanic Simulator launch: - config: @@ -394329,7 +388710,7 @@ type: default nameLocalized: schinese: 火星探测器大师 (Rover Mechanic Simulator) -'864700': +"864700": installDir: Dinosaur Fossil Hunter launch: - config: @@ -394344,34 +388725,34 @@ russian: Dinosaur Fossil Hunter - симулятор палеонтологии schinese: 恐龙化石猎人 古生物学家模拟器 (Dinosaur Fossil Hunter) spanish: Dinosaur Fossil Hunter - Simulador de paleontología -'864730': +"864730": installDir: Panther launch: - config: oslist: windows executable: Panther VR.exe type: vr -'864740': +"864740": installDir: The World of Labyrinths Labyronia launch: - config: oslist: windows executable: Game.exe type: default -'864780': {} -'864810': +"864780": {} +"864810": installDir: Content launch: - executable: NUMERIC.exe type: default -'864850': +"864850": installDir: Permission VR launch: - config: oslist: windows executable: Permission VR.exe type: vr -'864860': +"864860": installDir: HellCat launch: - config: @@ -394379,19 +388760,19 @@ executable: HellCat.exe type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: HellCat type: none -'864880': +"864880": installDir: Beasts&Chests launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: BeastsNChests.exe type: default -'864920': +"864920": installDir: Tap Cats Battle Arena launch: - config: @@ -394402,20 +388783,20 @@ oslist: macos executable: TCCG_OSX.app type: default -'864930': {} -'864940': +"864930": {} +"864940": installDir: 150000bc launch: - executable: 150k.exe type: none -'864950': +"864950": installDir: Space Whip launch: - config: oslist: windows executable: Space Whip.exe type: default -'864960': +"864960": installDir: Drops Rhythm Garden launch: - config: @@ -394426,14 +388807,14 @@ oslist: windows executable: Drops.exe type: othervr -'864970': +"864970": installDir: NIGHTSTAR Alliance launch: - config: oslist: windows executable: ALLIANCE.exe type: vr -'865040': +"865040": installDir: Super Bit Blaster XL launch: - config: @@ -394444,92 +388825,92 @@ oslist: linux executable: Super Bit Blaster XL.x86_64 - config: - osarch: '32' + osarch: "32" oslist: windows executable: Super Bit Blaster XL.exe type: none - config: - osarch: '64' + osarch: "64" oslist: windows executable: Super Bit Blaster XL.exe type: none -'865050': {} -'865060': +"865050": {} +"865060": installDir: Murasaki2 launch: - config: oslist: windows - executable: Murasaki2\\mu.exe + executable: "Murasaki2\\\\mu.exe" type: default - config: oslist: windows - executable: Murasaki2\\config.exe + executable: "Murasaki2\\\\config.exe" type: config -'865090': +"865090": installDir: AHEGAL launch: - config: oslist: windows executable: AHEGAL.exe type: none -'865100': +"865100": installDir: LEEgame launch: - executable: Leegame.exe type: none -'865130': +"865130": installDir: AlesDash launch: - - arguments: '-screen-height720 -screen-width1280' + - arguments: "-screen-height720 -screen-width1280" config: oslist: windows executable: AlesDash.exe type: default -'865150': +"865150": installDir: SafetyEducation launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: 安全教育.exe type: vr -'865160': +"865160": installDir: Takenoko launch: - config: oslist: windows executable: takenoko.exe type: default -'865170': +"865170": installDir: Heavenly Duels launch: - config: oslist: windows executable: HeavenlyDuels.exe type: vr -'865180': +"865180": installDir: Reformers-Intl launch: - config: oslist: windows executable: Game.exe type: default -'865190': +"865190": installDir: HotFloor launch: - config: oslist: windows executable: HotFloor.exe type: default -'865200': +"865200": installDir: DiveReal launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: _data\\DiveReal3D\\DiveReal3D.exe + executable: "_data\\\\DiveReal3D\\\\DiveReal3D.exe" type: default -'865220': +"865220": installDir: Puzlogic launch: - config: @@ -394538,61 +388919,61 @@ type: default - config: oslist: linux - executable: Puzlogic\\runner + executable: "Puzlogic\\\\runner" type: default - config: oslist: macos - executable: Puzlogic.app\\Contents\\MacOS\\Mac_Runner + executable: "Puzlogic.app\\\\Contents\\\\MacOS\\\\Mac_Runner" type: default -'865240': {} -'865250': +"865240": {} +"865250": installDir: Phase Shift launch: - config: oslist: windows executable: phase_shift.exe type: default -'865270': +"865270": installDir: LIBRARY launch: - - arguments: '-windowed' + - arguments: "-windowed" config: oslist: windows executable: LIBRARY.exe type: default - config: oslist: macos - executable: LIBRARYmac.app\\Contents\\MacOS\\LIBRARYmac + executable: "LIBRARYmac.app\\\\Contents\\\\MacOS\\\\LIBRARYmac" type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: LIBRARYlinux.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: LIBRARYlinux.x86_64 type: default -'865310': +"865310": installDir: Dubstep Abasralsa launch: - config: oslist: windows executable: dubstep_Abasralsa.exe type: default -'865330': +"865330": installDir: Dark Days of Horror launch: - config: oslist: windows executable: DarkDaysOfHorror.exe type: none -'865360': +"865360": installDir: We Were Here Together launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: We Were Here Together.exe type: default @@ -394600,43 +388981,39 @@ oslist: macos executable: We Were Here Together.app type: default -'865370': +"865370": installDir: El Hincha Rusia 2018 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ElHincha.exe type: none -'865390': +"865390": installDir: Infinite World 1.0 launch: - config: oslist: windows executable: IW.exe type: default -'865400': {} -'865540': +"865400": {} +"865540": installDir: PLAYNE launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: PLAYNE.exe type: default - description: Playne - description_loc: - english: Playne executable: PLAYNE.exe type: default - config: - ownsdlc: '1525880' + ownsdlc: "1525880" description: Playne VR - description_loc: - english: Playne VR executable: VR/PLAYNE.exe type: vr -'865570': +"865570": installDir: pact with a witch launch: - config: @@ -394651,11 +389028,11 @@ oslist: linux executable: pact_with_a_witch.sh type: default -'865610': +"865610": installDir: Backbone launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Detective.exe type: default @@ -394665,14 +389042,14 @@ type: default nameLocalized: schinese: 浣熊硬探 -'865630': +"865630": installDir: One Hundred Times Me launch: - config: oslist: windows executable: One Hundred Times Me.exe type: none -'865640': +"865640": installDir: Mind Your Manas launch: - config: @@ -394684,27 +389061,25 @@ executable: Mind Your Manas.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Mind Your Manas.x86_64 type: default -'865680': +"865680": installDir: TheEternalCylinder launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TheEternalCylinder.exe type: default - - arguments: '-d3d11' + - arguments: "-d3d11" config: - osarch: '64' + osarch: "64" oslist: windows description: Play with DirectX11 - description_loc: - english: Play with DirectX11 executable: TheEternalCylinder.exe -'865720': +"865720": installDir: Torn Tales Rebound Edition launch: - config: @@ -394715,32 +389090,32 @@ oslist: macos executable: TornTalesReboundEdition.app type: none - - arguments: '-force-opengl' + - arguments: "-force-opengl" config: oslist: linux executable: TornTalesReboundEdition.x86 type: none -'865750': +"865750": installDir: Harmony of the bravest launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows executable: Game.exe type: default -'865760': +"865760": installDir: Solitude Escape of Head launch: - config: oslist: windows executable: Solitude - Escape of Head.exe type: none -'865780': +"865780": installDir: parallel pixel launch: - executable: Parallel Pixel.exe type: default -'865800': +"865800": installDir: Octo Gravity launch: - config: @@ -394749,19 +389124,19 @@ type: default - config: oslist: macos - executable: octogravity.app\\Contents\\MacOS\\octogravity + executable: "octogravity.app\\\\Contents\\\\MacOS\\\\octogravity" type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: octogravity.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: octogravity.x86_64 type: default -'865810': +"865810": installDir: WFDS launch: - config: @@ -394770,9 +389145,9 @@ type: default - config: oslist: macos - executable: WaifuFightPreBeta.app\\Contents\\MacOS\\WaifuFightPreBeta + executable: "WaifuFightPreBeta.app\\\\Contents\\\\MacOS\\\\WaifuFightPreBeta" type: default -'865820': +"865820": installDir: Psychedelica of the Black Butterfly launch: - config: @@ -394783,7 +389158,7 @@ koreana: 검은 나비의 사이키델리카 schinese: 黑蝶幻境 tchinese: 黑蝶幻境 -'865830': +"865830": installDir: Psychedelica of the Ashen Hawk launch: - config: @@ -394794,22 +389169,22 @@ koreana: 잿빛 매의 사이키델리카 schinese: 灰鹰幻境 tchinese: 灰鷹幻境 -'865840': {} -'865850': +"865840": {} +"865850": installDir: Dehumanized launch: - config: oslist: windows executable: Dehumanized.exe type: none -'865860': +"865860": installDir: Vein Hotel launch: - config: oslist: windows executable: VeinHotel.exe type: default -'865870': +"865870": installDir: SpaceTone launch: - config: @@ -394818,16 +389193,16 @@ type: default - config: oslist: macos - executable: SpaceTone.app\\Contents\\MacOS\\SpaceTone + executable: "SpaceTone.app\\\\Contents\\\\MacOS\\\\SpaceTone" type: default -'865880': +"865880": installDir: tianlanxing launch: - config: oslist: windows executable: Game.exe type: default -'865930': +"865930": installDir: BQM launch: - config: @@ -394836,11 +389211,11 @@ type: default - config: oslist: macos - executable: bqm.app\\Contents\\MacOS\\bqm + executable: "bqm.app\\\\Contents\\\\MacOS\\\\bqm" type: default nameLocalized: schinese: BQM - 砖块迷宫建造者 -'865940': +"865940": installDir: SNK40thCollection launch: - config: @@ -394848,7 +389223,7 @@ description: Launch executable: SNK40thCollection.exe type: default -'865980': +"865980": installDir: BOSSGARD launch: - config: @@ -394856,120 +389231,106 @@ description: Launch executable: Bossgard.exe type: none -'865990': +"865990": installDir: Highway Junkie launch: - config: oslist: windows executable: HighwayJunkie.exe type: default -'866010': +"866010": installDir: Beat Stickman launch: - config: oslist: windows description: Original Edition - description_loc: - english: Original Edition executable: Beat Stickman.exe type: option1 - config: oslist: macos description: Original Edition - description_loc: - english: Original Edition executable: Contents/MacOS/beat-stickman-BUILD type: option1 - config: - osarch: '32' + osarch: "32" oslist: linux description: Original Edition - description_loc: - english: Original Edition executable: BS.x86 type: option1 - config: - osarch: '64' + osarch: "64" oslist: linux description: Original Edition - description_loc: - english: Original Edition executable: BS.x86_64 type: option1 - config: oslist: windows - ownsdlc: '1152700' + ownsdlc: "1152700" description: Definitive Edition - description_loc: - english: Definitive Edition - executable: Definitive\\Beat Stickman.exe + executable: "Definitive\\\\Beat Stickman.exe" type: option1 - config: oslist: macos - ownsdlc: '1152700' + ownsdlc: "1152700" description: Definitive Edition - description_loc: - english: Definitive Edition executable: Definitive/Mac.app/Contents/Beat Stickman type: option1 - config: oslist: linux - ownsdlc: '1152700' + ownsdlc: "1152700" description: Definitive Edition - description_loc: - english: Definitive Edition executable: Definitive/Beat Stickman.x86_64 type: option1 -'866040': +"866040": installDir: kicker launch: - config: oslist: windows executable: kicker.exe type: vr -'866080': +"866080": installDir: FlyWarzz launch: - config: oslist: windows executable: FlyWarzz.exe type: none -'866100': +"866100": installDir: HarmonyTD launch: - config: oslist: windows executable: TowerDefense.exe type: default -'866140': +"866140": installDir: Arise launch: - - arguments: '-SAVEWINPOS=1' + - arguments: "-SAVEWINPOS=1" config: - osarch: '64' + osarch: "64" oslist: windows description: Arise executable: Arise.exe type: default -'866150': +"866150": installDir: TotA-Egypt launch: - executable: tota_egypt.exe type: none -'866180': +"866180": installDir: Debris launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: nw.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: nw.exe type: default -'866190': +"866190": installDir: Irony Curtain launch: - config: @@ -394978,13 +389339,13 @@ executable: IronyCurtain.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: IronyCurtain_i386 type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: IronyCurtain_amd64 @@ -394992,16 +389353,16 @@ - config: oslist: macos description: Launch - executable: IronyCurtain.app\\Contents\\MacOS\\IronyCurtain + executable: "IronyCurtain.app\\\\Contents\\\\MacOS\\\\IronyCurtain" type: none -'866200': +"866200": installDir: TimeCluster launch: - config: oslist: windows executable: TimeCluster.exe type: vr -'866260': +"866260": installDir: EreaDrone launch: - config: @@ -395016,14 +389377,14 @@ oslist: windows executable: EreaDrone.exe type: default -'866270': +"866270": installDir: Lambs on the Road launch: - config: oslist: windows executable: Lambs on the road.exe type: none -'866280': +"866280": installDir: Emergency Robot Simulator launch: - config: @@ -395032,17 +389393,17 @@ type: default - config: oslist: macos - executable: Emergency Robot Simulator.app\\Contents\\MacOS\\Emergency Robot Simulator + executable: "Emergency Robot Simulator.app\\\\Contents\\\\MacOS\\\\Emergency Robot Simulator" type: none -'866310': +"866310": installDir: Putin Run Away From Trump launch: - config: oslist: windows executable: PRAFT.exe type: default -'866330': {} -'866340': +"866330": {} +"866340": installDir: Colonumbers launch: - config: @@ -395053,15 +389414,15 @@ oslist: macos executable: Colonumbers.app/Contents/MacOS/Mac_Runner type: none -'866350': +"866350": installDir: HexTrains launch: - config: oslist: windows executable: HexTrains.exe type: default -'866390': {} -'866400': +"866390": {} +"866400": installDir: On The Western Front launch: - config: @@ -395070,29 +389431,29 @@ type: default - config: oslist: macos - executable: On The Western Front.app\\Contents\\MacOS\\On The Western Front + executable: "On The Western Front.app\\\\Contents\\\\MacOS\\\\On The Western Front" type: default -'866420': +"866420": installDir: TANKS launch: - config: oslist: windows executable: TANKS.exe type: default -'866430': +"866430": installDir: Ascend launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: ascend.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: ascend.exe type: default -'866440': +"866440": installDir: What Never Was launch: - config: @@ -395107,31 +389468,31 @@ oslist: linux executable: WhatNeverWas.sh type: default -'866450': +"866450": installDir: Light Rider launch: - config: oslist: windows executable: Light_Rider.exe type: default -'866500': +"866500": installDir: SpaceToadsMayhem launch: - config: - osarch: '32' + osarch: "32" oslist: windows - executable: windows\\SpaceToadsMayhem.exe + executable: "windows\\\\SpaceToadsMayhem.exe" type: default - config: oslist: macos - executable: mac\\SpaceToadsMayhem.app\\Contents\\MacOS\\SpaceToadsMayhem + executable: "mac\\\\SpaceToadsMayhem.app\\\\Contents\\\\MacOS\\\\SpaceToadsMayhem" type: default - config: - osarch: '64' + osarch: "64" oslist: windows - executable: win64\\SpaceToadsMayhem.exe + executable: "win64\\\\SpaceToadsMayhem.exe" type: default -'866510': +"866510": installDir: Anyway launch: - config: @@ -395164,7 +389525,7 @@ type: option1 - config: oslist: macos - ownsdlc: '891036' + ownsdlc: "891036" description: Realidad invertida executable: awupdate/anyway.exe type: option1 @@ -395178,131 +389539,131 @@ description: SRPT TEST executable: srpt.bat type: option1 -'866520': +"866520": installDir: Defense the Farm launch: - executable: dtf.exe type: none -'866540': +"866540": installDir: VR Flush launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: VRFlush.exe type: othervr - config: - osarch: '64' + osarch: "64" oslist: windows executable: VRFlush.exe type: vr - - arguments: '-nohmd -vrskip' + - arguments: "-nohmd -vrskip" config: - osarch: '64' + osarch: "64" oslist: windows description: in desktop mode - Wait 30 seconds after launch - Calculation will be skipped executable: VRFlush.exe type: option1 -'866700': +"866700": installDir: Echoes of the Past Wolf Healer launch: - config: oslist: windows executable: EchoesOfThePast_WolfHealer_CE.exe type: default -'866710': - installDir: Shiver The Lily's Requiem Collector's Edition +"866710": + installDir: "Shiver The Lily's Requiem Collector's Edition" launch: - config: oslist: windows executable: Shiver_TheLilysRequiem_CE.exe type: default -'866720': - installDir: Off the Record The Final Interview Collector's Edition +"866720": + installDir: "Off the Record The Final Interview Collector's Edition" launch: - config: oslist: windows executable: OffTheRecord_TheFinalInterview_CE.exe type: default -'866730': +"866730": installDir: Love Story The Way Home launch: - config: oslist: windows executable: LoveStoryTheWayHome.exe type: default -'866740': - installDir: Haunted Hotel Charles Dexter Ward Collector's Edition +"866740": + installDir: "Haunted Hotel Charles Dexter Ward Collector's Edition" launch: - config: oslist: windows executable: HauntedHotel_CharlesDexterWardCE.exe type: default -'866750': +"866750": installDir: Redemption Cemetery Grave Testimony Collector’s Edition launch: - config: oslist: windows executable: RedemptionCemetery_GraveTestimonyCE.exe type: default -'866770': +"866770": installDir: Spaceteam launch: - config: oslist: windows executable: SpaceTeam.exe type: vr -'866780': - installDir: Sea of Lies Tide of Treachery Collector's Edition +"866780": + installDir: "Sea of Lies Tide of Treachery Collector's Edition" launch: - config: oslist: windows executable: SeaOfLies_TideOfTreachery_CE.exe type: default -'866790': - installDir: Myths of the World Of Fiends and Fairies Collector's Edition +"866790": + installDir: "Myths of the World Of Fiends and Fairies Collector's Edition" launch: - config: oslist: windows executable: MythsOfTheWorld_OfFiendsAndFairies_CE.exe type: default -'866800': +"866800": installDir: The Walking Dead The Final Season launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: WalkingDead4.exe type: default -'866890': {} -'866900': +"866890": {} +"866900": installDir: Realms_of_Supremacy launch: - config: oslist: windows executable: Game.exe type: default -'866950': +"866950": installDir: Deep Noise launch: - config: oslist: windows executable: Deep Noise.exe type: default -'866960': +"866960": installDir: Slime Kingdom launch: - executable: Slime_Kingdom.exe type: default -'867010': +"867010": installDir: Adventure Delivery Service launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Adventure Delivery Service.exe type: default -'867050': +"867050": installDir: Endless Fables 3 launch: - config: @@ -395311,13 +389672,13 @@ executable: EndlessFables3.exe type: none - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: EndlessFables3_i386 type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: EndlessFables3_amd64 @@ -395333,11 +389694,11 @@ description: Launch executable: EndlessFables3.app/Contents/MacOS/EndlessFables3 type: none -'867080': +"867080": installDir: SOY launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SOY.exe type: default @@ -395345,21 +389706,21 @@ oslist: linux executable: SOY.sh type: default -'867090': +"867090": installDir: TSUN-TSUN_VR launch: - executable: TSUN-TSUN VR.exe type: vr - executable: TSUN-TSUN VR.exe type: othervr -'867110': +"867110": installDir: Dungeon Rankers launch: - config: oslist: windows executable: DungeonRankers.exe type: default -'867120': +"867120": installDir: Lilipalace launch: - config: @@ -395370,7 +389731,7 @@ japanese: リリパレス schinese: 莉莉宫殿 tchinese: 莉莉宮殿 -'867130': +"867130": installDir: Alice in Wonderland - 3D Game launch: - config: @@ -395381,15 +389742,15 @@ oslist: macos executable: Alice in wonderland 3D - IOS.app type: default -'867140': +"867140": installDir: WIN THE GAME WTF! launch: - config: oslist: windows executable: WIN THE GAME! WTF.exe type: default -'867150': {} -'867180': +"867150": {} +"867180": installDir: Tilesweeper launch: - config: @@ -395398,9 +389759,9 @@ type: default - config: oslist: macos - executable: Tilesweeper.app\\Contents\\MacOS\\Tilesweeper + executable: "Tilesweeper.app\\\\Contents\\\\MacOS\\\\Tilesweeper" type: default -'867210': +"867210": installDir: SongsOfConquest launch: - config: @@ -395409,30 +389770,30 @@ type: default - config: oslist: macos - executable: SongsOfConquest.app\\Contents\\MacOS\\SongsOfConquest + executable: "SongsOfConquest.app\\\\Contents\\\\MacOS\\\\SongsOfConquest" type: default - config: - betakey: 'prototype, twoandahalfd' + betakey: "prototype, twoandahalfd" oslist: windows description: (develop) executable: AdventuresAndConquest.exe type: default - config: - betakey: 'prototype, twoandahalfd' + betakey: "prototype, twoandahalfd" oslist: macos description: (develop) - executable: AdventuresAndConquest.app\\Contents\\MacOS\\AdventuresAndConquest + executable: "AdventuresAndConquest.app\\\\Contents\\\\MacOS\\\\AdventuresAndConquest" type: default nameLocalized: schinese: 征服之歌 -'867250': +"867250": installDir: Wars of Succession launch: - config: oslist: windows executable: autorun.exe type: default -'867290': +"867290": installDir: Crossroads Inn launch: - config: @@ -395447,7 +389808,7 @@ oslist: linux executable: Crossroads Inn type: default -'867380': +"867380": installDir: Upleftout launch: - config: @@ -395459,49 +389820,49 @@ executable: Upleftout.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Upleftout.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Upleftout.x86_64 type: default -'867390': +"867390": installDir: Chase launch: - config: oslist: windows executable: Chase.exe type: none -'867400': +"867400": installDir: Treasure Royale launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TreasureRoyale.exe type: none -'867420': +"867420": installDir: Andor - the Cards of Wonder launch: - config: oslist: windows - executable: runtime\\win32\\Andor.exe + executable: "runtime\\\\win32\\\\Andor.exe" type: default -'867460': +"867460": installDir: PLANET RESERVE v2 launch: - config: oslist: windows executable: PLANER RESERVE v2.exe type: none -'867470': +"867470": installDir: Albedon Wars launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: AlbedonWarsGame.exe type: default @@ -395509,35 +389870,35 @@ oslist: macos executable: AlbedonWarsGame.app type: default -'867480': +"867480": installDir: Daddy launch: - config: oslist: windows executable: Daddy.exe type: default -'867490': +"867490": installDir: Remyadry launch: - config: oslist: windows executable: remi.exe type: default -'867510': +"867510": installDir: PHOTON CUBE launch: - config: oslist: windows executable: PhotonCube.exe type: default -'867530': +"867530": installDir: Party Poopers launch: - config: oslist: windows executable: nw.exe type: default -'867540': +"867540": installDir: Honor Cry Aftermath launch: - config: @@ -395548,7 +389909,7 @@ oslist: macos executable: Game.app type: none -'867550': +"867550": installDir: Range Ball launch: - config: @@ -395559,40 +389920,40 @@ oslist: macos executable: Range Ball.app type: default -'867570': +"867570": installDir: Red Rose Rising launch: - config: oslist: windows executable: Red Rose Rising.exe type: default -'867580': +"867580": installDir: Magic Flight Academy launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: MFA.exe type: vr -'867590': +"867590": installDir: Sakura and Crit The Mock Game launch: - config: oslist: windows executable: Game.exe type: default -'867600': +"867600": installDir: Guilty Summer Kiss 2 launch: - config: oslist: macos - executable: Guilty Summer Kiss 2.app\\Contents\\MacOS\\Guilty Summer Kiss 2 + executable: "Guilty Summer Kiss 2.app\\\\Contents\\\\MacOS\\\\Guilty Summer Kiss 2" type: none - config: oslist: windows executable: Guilty Summer Kiss 2.exe type: none -'867610': +"867610": installDir: Shadow Council - The Puppeteers launch: - config: @@ -395601,9 +389962,9 @@ type: none - config: oslist: macos - executable: Shadow Council - The Puppeteers.app\\Contents\\MacOS\\Shadow Council - The Puppeteers + executable: "Shadow Council - The Puppeteers.app\\\\Contents\\\\MacOS\\\\Shadow Council - The Puppeteers" type: none -'867620': +"867620": installDir: Hyper Train Corporation launch: - config: @@ -395612,40 +389973,38 @@ type: default - config: oslist: macos - executable: Hyper Train Corporation.app\\Contents\\MacOS\\Hyper Train Corporation + executable: "Hyper Train Corporation.app\\\\Contents\\\\MacOS\\\\Hyper Train Corporation" type: default -'867640': +"867640": installDir: Office Race launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Office Race.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: Office Race.exe type: default -'867660': +"867660": installDir: NYKRA launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: NYKRA - description_loc: - english: NYKRA executable: NYKRA.exe type: default -'867690': +"867690": installDir: Psycho Wolf launch: - config: oslist: windows executable: Psycho Wolf.exe type: default -'867700': +"867700": installDir: The Wilting Amaranth launch: - config: @@ -395660,8 +390019,8 @@ oslist: linux executable: TheWiltingAmaranth.sh type: default -'867720': {} -'867730': +"867720": {} +"867730": installDir: Pixel Traffic Highway Racing launch: - config: @@ -395670,132 +390029,122 @@ type: none - config: oslist: macos - executable: Pixel Traffic - Highway Racing.app\\Contents\\MacOS\\Pixel Traffic - Highway Racing + executable: "Pixel Traffic - Highway Racing.app\\\\Contents\\\\MacOS\\\\Pixel Traffic - Highway Racing" type: none - config: oslist: linux executable: Pixel Traffic - Highway Racing.x86 type: none -'867750': +"867750": installDir: Gull Kebap VR launch: - - arguments: '--vive --reset' + - arguments: "--vive --reset" config: - osarch: '64' + osarch: "64" oslist: windows description: standing/room-scale - description_loc: - english: standing/room-scale executable: kebap.exe type: vr - - arguments: '--width 1920 --height 1080 --fullscreen --reset' + - arguments: "--width 1920 --height 1080 --fullscreen --reset" config: - osarch: '64' + osarch: "64" oslist: windows description: 1080p fullscreen - description_loc: - english: 1080p fullscreen executable: kebap.exe type: option1 - - arguments: '--width 1280 --height 720 --fullscreen --reset' + - arguments: "--width 1280 --height 720 --fullscreen --reset" config: - osarch: '64' + osarch: "64" oslist: windows description: 720p fullscreen - description_loc: - english: 720p fullscreen executable: kebap.exe type: option1 - - arguments: '--vive --seated --reset' + - arguments: "--vive --seated --reset" config: - osarch: '64' + osarch: "64" oslist: windows description: seated - description_loc: - english: seated executable: kebap.exe type: vr -'867760': +"867760": installDir: IOTBP launch: - config: oslist: windows executable: IOTBP.exe type: default -'867770': +"867770": installDir: The One We Found launch: - config: oslist: windows executable: TheOneWefoundBuild1.exe type: default -'867790': +"867790": installDir: Aeroplanoui launch: - executable: AeroplanouiGame.exe type: default -'867800': +"867800": installDir: Gravity Jump launch: - config: oslist: windows executable: Gravity Jump.exe type: config -'867850': +"867850": installDir: Turn up jeans launch: - config: oslist: windows executable: Turn up jeans.exe type: none -'867900': +"867900": installDir: Tennis Tune-Up launch: - config: oslist: windows executable: game.exe type: vr -'867920': +"867920": installDir: Tales of Mahabharata launch: - config: oslist: windows executable: Game.exe type: default -'867960': +"867960": installDir: Remorse The List launch: - config: oslist: windows description: Launch - description_loc: - english: Launch executable: Remorse.exe type: default -'867980': +"867980": installDir: Raiders Of The Lost Island launch: - config: oslist: windows executable: Raiders Of The Lost Island.exe type: default -'868000': +"868000": installDir: Dance With Memes launch: - config: oslist: windows executable: game.exe type: none -'868010': +"868010": installDir: Hallo Spaceboy launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: HalloSpaceboy.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: HalloSpaceboy32.exe type: default @@ -395803,36 +390152,36 @@ oslist: macos executable: HalloSpaceboyMacOS.app/Contents/MacOS/HalloSpaceboyMacOS type: default -'868020': +"868020": installDir: Knux launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Knux.exe type: vr -'868040': +"868040": installDir: Stick Spartans launch: - config: oslist: windows executable: Stick Spartans.exe type: none -'868060': +"868060": installDir: Immortal Darkness Curse of The Pale King launch: - config: oslist: windows executable: Immortal_Darkness.exe type: default -'868070': +"868070": installDir: Through The Tomb launch: - config: oslist: windows executable: Through_The_Tomb.exe type: default -'868080': +"868080": installDir: Golf Galore launch: - config: @@ -395841,17 +390190,17 @@ type: none - config: oslist: macos - executable: Golf Galore.app\\Contents\\MacOS\\Golf Galore + executable: "Golf Galore.app\\\\Contents\\\\MacOS\\\\Golf Galore" type: none -'868090': +"868090": installDir: BattleSummonersBasic launch: - - arguments: '-screen-fullscreen 0' + - arguments: "-screen-fullscreen 0" config: oslist: windows executable: BattleSummonersBasic.exe type: vr -'868100': +"868100": installDir: Arenaofcube launch: - config: @@ -395860,7 +390209,7 @@ executable: game/bin/GameClient.exe type: default workingdir: game/bin/ -'868130': +"868130": installDir: Hex Two launch: - config: @@ -395871,21 +390220,21 @@ oslist: macos executable: hex_two.app type: default -'868150': +"868150": installDir: Takelings House Party launch: - config: oslist: windows executable: Takelings.exe type: vr -'868180': +"868180": installDir: SSB launch: - config: oslist: windows executable: Salty.exe type: none -'868190': +"868190": installDir: Sapper boom! launch: - config: @@ -395900,14 +390249,14 @@ oslist: macos executable: Sapperboom.app type: default -'868200': +"868200": installDir: CROSSING MAN launch: - config: oslist: windows executable: Crossing Man.exe type: vr -'868210': +"868210": installDir: Road Z Survival The Last Winter launch: - config: @@ -395916,9 +390265,9 @@ type: default - config: oslist: macos - executable: offroad_survival_osx.app\\Contents\\MacOS\\offroad_survival_osx + executable: "offroad_survival_osx.app\\\\Contents\\\\MacOS\\\\offroad_survival_osx" type: default -'868240': +"868240": installDir: FINSummerVR launch: - config: @@ -395926,230 +390275,158 @@ description: SteamVR executable: FinSummerVR.exe type: vr -'868260': +"868260": installDir: Zoo Constructor launch: - - arguments: '-console' + - arguments: "-console" config: oslist: windows executable: ZooConstructor-Steam.exe type: none -'868270': +"868270": installDir: The Cycle launch: - arguments: PF_TITLEID=D82BF -steam_auth config: oslist: windows description: Default - description_loc: - english: Default executable: Prospect_BE.exe type: default - - arguments: >- - -log / PF_TITLEID=D3493 -steam_auth -yawsaccesskey=AKIAULN5NLEJ7QTANLPL - -yawssecretkey=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 -yawsbucketname=tcf-filestorage-dev + - arguments: "-log / PF_TITLEID=D3493 -steam_auth -yawsaccesskey=AKIAULN5NLEJ7QTANLPL -yawssecretkey=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 -yawsbucketname=tcf-filestorage-dev" config: betakey: rl_dev_qa oslist: windows description: Release-Dev-QA - description_loc: - english: Release-Dev-QA executable: Prospect_BE.exe type: option1 - - arguments: >- - -log / PF_TITLEID=2EA46 -steam_auth -yawsaccesskey=AKIAULN5NLEJ7QTANLPL - -yawssecretkey=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 -yawsbucketname=tcf-filestorage-dev + - arguments: "-log / PF_TITLEID=2EA46 -steam_auth -yawsaccesskey=AKIAULN5NLEJ7QTANLPL -yawssecretkey=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 -yawsbucketname=tcf-filestorage-dev" config: betakey: dev_playtest description: Daily Dev Playtest - description_loc: - english: Daily Dev Playtest executable: Prospect_BE.exe type: option1 - - arguments: >- - PF_TITLEID=D3493 -steam_auth -yawsaccesskey=AKIAULN5NLEJ7QTANLPL - -yawssecretkey=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 -yawsbucketname=tcf-filestorage-dev + - arguments: PF_TITLEID=D3493 -steam_auth -yawsaccesskey=AKIAULN5NLEJ7QTANLPL -yawssecretkey=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 -yawsbucketname=tcf-filestorage-dev config: betakey: rl_staging - description: 'Release Staging ' - description_loc: - english: 'Release Staging ' + description: "Release Staging " executable: Prospect_BE.exe type: option1 - - arguments: '-log / PF_TITLEID=4E80 -steam_auth' + - arguments: "-log / PF_TITLEID=4E80 -steam_auth" config: - betakey: 'install_testing ' - description: 'install_testing ' - description_loc: - english: 'install_testing ' + betakey: "install_testing " + description: "install_testing " executable: Prospect_BE.exe type: option1 - - arguments: >- - -log / PF_TITLEID=B735C -steam_auth -yawsaccesskey=AKIAULN5NLEJ7QTANLPL - -yawssecretkey=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 -yawsbucketname=tcf-filestorage-dev + - arguments: "-log / PF_TITLEID=B735C -steam_auth -yawsaccesskey=AKIAULN5NLEJ7QTANLPL -yawssecretkey=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 -yawsbucketname=tcf-filestorage-dev" config: betakey: external_qa description: External QA - description_loc: - english: External QA executable: Prospect_BE.exe type: option1 - - arguments: '-log / PF_TITLEID=87751 -steam_auth' + - arguments: "-log / PF_TITLEID=87751 -steam_auth" config: betakey: mods_pt description: FTG PlayTest - description_loc: - english: FTG PlayTest executable: Prospect_BE.exe type: option1 - - arguments: >- - -log / PF_TITLEID=2EA46 -steam_auth -yawsaccesskey=AKIAULN5NLEJ7QTANLPL - -yawssecretkey=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 -yawsbucketname=tcf-filestorage-dev + - arguments: "-log / PF_TITLEID=2EA46 -steam_auth -yawsaccesskey=AKIAULN5NLEJ7QTANLPL -yawssecretkey=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 -yawsbucketname=tcf-filestorage-dev" config: - betakey: 'main_shipping ' + betakey: "main_shipping " description: Shipping Main - description_loc: - english: Shipping Main executable: Prospect_BE.exe type: option1 - - arguments: '-log / PF_TITLEID=87751 -steam_auth' + - arguments: "-log / PF_TITLEID=87751 -steam_auth" config: betakey: streamerinternal description: Streamer PT - description_loc: - english: Streamer PT executable: Prospect_BE.exe type: option1 - - arguments: '-log / PF_TITLEID=A22AB -steam_auth' + - arguments: "-log / PF_TITLEID=A22AB -steam_auth" config: betakey: tcf_ptsdev ownsdlc: PTS Dev executable: Prospect_BE.exe type: option1 - - arguments: '-log / PF_TITLEID=35692 -steam_auth' + - arguments: "-log / PF_TITLEID=35692 -steam_auth" config: betakey: externalpartners description: External Partners - description_loc: - english: External Partners executable: Prospect_BE.exe type: option1 - - arguments: >- - -log / PF_TITLEID=D6349 -steam_auth -yawsaccesskey=AKIAULN5NLEJ7QTANLPL - -yawssecretkey=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 -yawsbucketname=tcf-filestorage-dev + - arguments: "-log / PF_TITLEID=D6349 -steam_auth -yawsaccesskey=AKIAULN5NLEJ7QTANLPL -yawssecretkey=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 -yawsbucketname=tcf-filestorage-dev" config: betakey: prospect_be1 description: Prospect_BE1 - description_loc: - english: Prospect_BE1 executable: Prospect_BE.exe type: option1 - - arguments: >- - -log / PF_TITLEID=D6349 -steam_auth -yawsaccesskey=AKIAULN5NLEJ7QTANLPL - -yawssecretkey=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 -yawsbucketname=tcf-filestorage-dev + - arguments: "-log / PF_TITLEID=D6349 -steam_auth -yawsaccesskey=AKIAULN5NLEJ7QTANLPL -yawssecretkey=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 -yawsbucketname=tcf-filestorage-dev" config: betakey: prospect_be2 description: Prospect_BE2 - description_loc: - english: Prospect_BE2 executable: Prospect_BE.exe type: option1 - - arguments: >- - -log / PF_TITLEID=35692 -steam_auth -yawsaccesskey=AKIAULN5NLEJ7QTANLPL - -yawssecretkey=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 -yawsbucketname=tcf-filestorage-dev + - arguments: "-log / PF_TITLEID=35692 -steam_auth -yawsaccesskey=AKIAULN5NLEJ7QTANLPL -yawssecretkey=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 -yawsbucketname=tcf-filestorage-dev" config: betakey: prospect_dev1 description: Prospect_Dev1 - description_loc: - english: Prospect_Dev1 executable: Prospect_BE.exe type: option1 - - arguments: >- - -log / PF_TITLEID=B4FA5 -steam_auth -yawsaccesskey=AKIAULN5NLEJ7QTANLPL - -yawssecretkey=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 -yawsbucketname=tcf-filestorage-dev + - arguments: "-log / PF_TITLEID=B4FA5 -steam_auth -yawsaccesskey=AKIAULN5NLEJ7QTANLPL -yawssecretkey=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 -yawsbucketname=tcf-filestorage-dev" config: betakey: prospect_dev2 description: Prospect_Dev2 - description_loc: - english: Prospect_Dev2 executable: Prospect_BE.exe type: option1 - - arguments: >- - -log / PF_TITLEID=52823 -steam_auth -yawsaccesskey=AKIAULN5NLEJ7QTANLPL - -yawssecretkey=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 -yawsbucketname=tcf-filestorage-dev + - arguments: "-log / PF_TITLEID=52823 -steam_auth -yawsaccesskey=AKIAULN5NLEJ7QTANLPL -yawssecretkey=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 -yawsbucketname=tcf-filestorage-dev" config: betakey: prospect_dev3 description: Prospect_Dev3 - description_loc: - english: Prospect_Dev3 executable: Prospect_BE.exe type: option1 - - arguments: >- - -log / PF_TITLEID=FB648 -steam_auth -yawsaccesskey=AKIAULN5NLEJ7QTANLPL - -yawssecretkey=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 -yawsbucketname=tcf-filestorage-dev + - arguments: "-log / PF_TITLEID=FB648 -steam_auth -yawsaccesskey=AKIAULN5NLEJ7QTANLPL -yawssecretkey=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 -yawsbucketname=tcf-filestorage-dev" config: betakey: prospect_dev4 description: Prospect_Dev4 - description_loc: - english: Prospect_Dev4 executable: Prospect_BE.exe type: option1 - - arguments: >- - -log / PF_TITLEID=D82BF -steam_auth -yawsaccesskey=AKIAULN5NLEJ7QTANLPL - -yawssecretkey=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 -yawsbucketname=tcf-filestorage-dev + - arguments: "-log / PF_TITLEID=D82BF -steam_auth -yawsaccesskey=AKIAULN5NLEJ7QTANLPL -yawssecretkey=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 -yawsbucketname=tcf-filestorage-dev" config: betakey: externalqa_dev description: External QA dev - description_loc: - english: External QA dev executable: Prospect_BE.exe type: option1 - - arguments: >- - -log / PF_TITLEID=B735C -steam_auth -yawsaccesskey=AKIAULN5NLEJ7QTANLPL - -yawssecretkey=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 -yawsbucketname=tcf-filestorage-dev + - arguments: "-log / PF_TITLEID=B735C -steam_auth -yawsaccesskey=AKIAULN5NLEJ7QTANLPL -yawssecretkey=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 -yawsbucketname=tcf-filestorage-dev" config: betakey: externalqa_ship description: External QA ship - description_loc: - english: External QA ship executable: Prospect_BE.exe type: option1 - - arguments: '-log / PF_TITLEID=BFAC9 -steam_auth' + - arguments: "-log / PF_TITLEID=BFAC9 -steam_auth" config: betakey: hotfix description: Hotfix - description_loc: - english: Hotfix executable: Prospect_BE.exe type: option1 - - arguments: >- - PF_TITLEID= D3493 -steam_auth -yawsaccesskey=AKIAULN5NLEJ7QTANLPL - -yawssecretkey=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 -yawsbucketname=tcf-filestorage-dev + - arguments: PF_TITLEID= D3493 -steam_auth -yawsaccesskey=AKIAULN5NLEJ7QTANLPL -yawssecretkey=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 -yawsbucketname=tcf-filestorage-dev config: betakey: testing_support description: Season 2 testing support - description_loc: - english: Season 2 testing support executable: Prospect_BE.exe type: option1 - - arguments: >- - -log / PF_TITLEID=BFAC9 -steam_auth -yawsaccesskey=AKIAULN5NLEJ7QTANLPL - -yawssecretkey=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 -yawsbucketname=tcf-filestorage-dev + - arguments: "-log / PF_TITLEID=BFAC9 -steam_auth -yawsaccesskey=AKIAULN5NLEJ7QTANLPL -yawssecretkey=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 -yawsbucketname=tcf-filestorage-dev" config: betakey: hotfix_dev description: Hotfix development - description_loc: - english: Hotfix development executable: Prospect_BE.exe type: option1 -'868320': +"868320": installDir: SYZZ launch: - config: oslist: windows executable: Game.exe type: config -'868350': +"868350": installDir: Ancient Warlords launch: - config: @@ -396160,29 +390437,29 @@ oslist: macos executable: Ancient Warlords Aequilibrium.app/Contents/MacOS/Ancient Warlords Aequilibrium type: none -'868360': +"868360": installDir: Project Hospital launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ProjectHospital.exe type: none - - arguments: '-force-glcore42 -force-clamped' + - arguments: "-force-glcore42 -force-clamped" config: - osarch: '64' + osarch: "64" oslist: linux description: in OpenGL 4.2 mode (nVidia fix) executable: ProjectHospital.x86_64 type: option1 - - arguments: '-force-glcore42 -force-clamped' + - arguments: "-force-glcore42 -force-clamped" config: oslist: macos description: in OpenGL 4.2 mode (nVidia fix) executable: project_hospital.app type: option1 - config: - osarch: '64' + osarch: "64" oslist: linux description: in latest OpenGL mode executable: ProjectHospital.x86_64 @@ -396192,74 +390469,74 @@ description: in latest Open GL mode executable: project_hospital.app type: option2 -'868370': +"868370": installDir: Lost Tales - The Castle Escape launch: - config: oslist: windows executable: lost tales - A castle escape.exe type: none -'868380': +"868380": installDir: Sexbot Quality Assurance Simulator launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: SexBotQA executable: SexBotQA_Assets.exe type: vr - config: - osarch: '64' + osarch: "64" oslist: windows description: SexBotQA executable: SexBotQA_Assets.exe type: default -'868390': +"868390": installDir: Survival Diary launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: Win_32.bat type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: Win_64.bat type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Lin_32.sh type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Lin_64.sh type: default -'868410': +"868410": installDir: DAISENRYAKU PERFECT 4 launch: - executable: DSP4.exe type: default nameLocalized: japanese: 大戦略パーフェクト4.0 -'868430': +"868430": installDir: Brathian launch: - config: oslist: windows executable: Brathian.exe type: default -'868440': +"868440": installDir: Apostasy launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Apostasy.exe type: default -'868450': +"868450": installDir: Full Colour Tiles launch: - config: @@ -396274,12 +390551,12 @@ oslist: linux executable: linux-tiles-build14-2.x86 type: default -'868460': +"868460": installDir: Lode Runner launch: - executable: AoaD.exe type: none -'868470': +"868470": installDir: Heroes Arena launch: - config: @@ -396294,21 +390571,21 @@ oslist: linux executable: HeroesArena_linux.x86 type: none -'868500': +"868500": installDir: Qybe launch: - config: oslist: windows executable: qybe.exe type: default -'868510': +"868510": installDir: The Outsiders launch: - config: oslist: windows executable: TheOutsiders.exe type: none -'868520': +"868520": installDir: killer7 launch: - config: @@ -396318,26 +390595,24 @@ - config: oslist: windows description: Configuration Tool (F11 to open in-game) - description_loc: - english: Configuration Tool (F11 to open in-game) executable: Killer7ConfigurationTool.exe type: config -'868550': +"868550": installDir: What do you hear Yanny vs Laurel launch: - config: oslist: windows executable: What do you hear - Yanny vs Laurel.exe type: config -'868560': +"868560": installDir: Fly Killer VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: FLY_KILLER.exe type: vr -'868570': +"868570": installDir: Prototype Mansion - Used No Cover launch: - config: @@ -396345,7 +390620,7 @@ executable: prototypemansion.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: prototypemansion.x86_64 type: default @@ -396353,11 +390628,11 @@ oslist: macos executable: PrototypeMansion.app type: default -'868580': +"868580": installDir: Arkhangel The House of the Seven Stars launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: 32-bit executable: Arkhangel The House of the Seven Stars.exe @@ -396367,30 +390642,30 @@ executable: Arkhangel The House of the Seven Stars.app type: none - config: - osarch: '64' + osarch: "64" oslist: windows description: 64-bit executable: Arkhangel The House of the Seven Stars.exe type: none - config: - osarch: '32' + osarch: "32" oslist: linux description: Linux 32-bit executable: Arkhangel.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: Linux 64-bit executable: Arkhangel.x86_64 type: none -'868600': +"868600": installDir: Lands Of The Lost launch: - - description: 'Launch the standalone game, no installation needed' + - description: "Launch the standalone game, no installation needed" executable: LandsOfTheLost.exe type: default -'868660': +"868660": installDir: Soccer Battle Royale launch: - config: @@ -396398,7 +390673,7 @@ description: Soccer Battle Royale executable: Soccer Battle Royale.exe type: default -'868710': +"868710": installDir: Hopeofhumanity launch: - config: @@ -396410,30 +390685,30 @@ executable: nw type: default - config: - osarch: '32' + osarch: "32" oslist: windows - ownsdlc: '1219660' - executable: '' + ownsdlc: "1219660" + executable: "" type: config - workingdir: \\DLC Hope of Humanity - Digital Wallpaper Pack + workingdir: "\\\\DLC Hope of Humanity - Digital Wallpaper Pack" - config: - osarch: '64' + osarch: "64" oslist: windows - ownsdlc: '1219660' - executable: '' + ownsdlc: "1219660" + executable: "" type: config - workingdir: \\DLC Hope of Humanity - Digital Wallpaper Pack -'868720': {} -'868740': {} -'868760': + workingdir: "\\\\DLC Hope of Humanity - Digital Wallpaper Pack" +"868720": {} +"868740": {} +"868760": installDir: DontStop_64 launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: Don`t Stop.exe + executable: "Don`t Stop.exe" type: default -'868770': +"868770": installDir: Saint Kotar The Yellow Mask launch: - config: @@ -396446,10 +390721,10 @@ type: default - config: oslist: macos - executable: Saint_Kotar_macOS.app\\Contents\\MacOS\\Saint_Kotar_macOS + executable: "Saint_Kotar_macOS.app\\\\Contents\\\\MacOS\\\\Saint_Kotar_macOS" type: default -'868780': - installDir: 'I, Cyborg' +"868780": + installDir: "I, Cyborg" launch: - config: oslist: windows @@ -396463,29 +390738,29 @@ oslist: linux executable: ICyborg type: none -'868810': +"868810": installDir: EggFight launch: - config: oslist: windows executable: EggFight.exe type: vr -'868820': +"868820": installDir: SquareWorld launch: - config: oslist: windows executable: squareworld.exe type: default -'868830': +"868830": installDir: Rio Rex launch: - config: oslist: windows executable: rio_rex.exe type: default -'868860': {} -'868880': +"868860": {} +"868880": installDir: Candy Raid The Factory launch: - config: @@ -396496,22 +390771,22 @@ oslist: linux executable: candyraidthefactory.x86_64 type: default -'868890': +"868890": installDir: Horny Fighter launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: skeletoncombat.exe type: default -'868910': +"868910": installDir: Cryptozookeeper launch: - config: oslist: windows executable: czk.exe type: none -'868920': +"868920": installDir: Pylow launch: - config: @@ -396520,13 +390795,13 @@ type: default - config: betakey: pylowfree - osarch: '64' + osarch: "64" oslist: windows description: Pylow Free executable: pylowfree.exe type: option1 -'868930': - installDir: Nobunaga's Shadow +"868930": + installDir: "Nobunaga's Shadow" launch: - config: oslist: windows @@ -396536,15 +390811,15 @@ oslist: macos executable: Game.app type: none -'868940': +"868940": installDir: CuriousStudy launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TheOffice.exe type: vr -'868950': +"868950": installDir: Absolute VR Experiences launch: - config: @@ -396557,52 +390832,52 @@ description: Absolute VR Experience - Legacy launch executable: VRExperience.exe type: vr -'868960': +"868960": installDir: AridFortress launch: - executable: aridfortress.exe type: default -'868970': +"868970": installDir: Cut The Ex-girlfriends launch: - executable: CTEG.exe type: default -'868980': +"868980": installDir: Deep Space Waifu Nekomimi launch: - config: oslist: windows executable: Deep Space Waifu Nekomimi.exe type: default -'869010': +"869010": installDir: Katto launch: - config: oslist: windows executable: Katto.exe type: none -'869030': +"869030": installDir: Brotherhood United launch: - config: oslist: windows executable: Brotherhood United.exe type: default -'869060': +"869060": installDir: Resort Boss Golf launch: - config: oslist: windows executable: Resort Boss Golf.exe type: default -'869080': +"869080": installDir: TRAGO launch: - config: oslist: windows executable: Trago.exe type: none -'869090': +"869090": installDir: Sampling launch: - config: @@ -396611,9 +390886,9 @@ type: default - config: oslist: macos - executable: Sampling.app\\Contents\\MacOS\\Sampling + executable: "Sampling.app\\\\Contents\\\\MacOS\\\\Sampling" type: default -'869100': +"869100": installDir: Universally Loved launch: - config: @@ -396622,9 +390897,9 @@ type: default - config: oslist: macos - executable: UL.app\\Contents\\MacOS\\UL + executable: "UL.app\\\\Contents\\\\MacOS\\\\UL" type: default -'869110': +"869110": installDir: Guess Da Meme launch: - config: @@ -396633,13 +390908,13 @@ executable: Guess Da Meme.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch (32bits) executable: Guess Da Meme.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch (64bits) executable: Guess Da Meme.x86_64 @@ -396649,112 +390924,112 @@ description: Launch executable: Guess Da Meme.app type: default -'869120': +"869120": installDir: Grounds of Glory launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Arenaz.exe type: default -'869130': +"869130": installDir: World of Zombies launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: WolrdOfZombies.exe type: default -'869170': +"869170": installDir: Oneiros launch: - executable: Oneiros.exe type: default -'869180': {} -'869250': {} -'869270': {} -'869280': +"869180": {} +"869250": {} +"869270": {} +"869280": installDir: RapStar Tycoon launch: - config: oslist: windows executable: RapStar Tycoon.exe type: default -'869290': - installDir: Don't Look Down +"869290": + installDir: "Don't Look Down" launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: WindowsNoEditor\\Dont_Look_Down.exe + executable: "WindowsNoEditor\\\\Dont_Look_Down.exe" type: vr -'869300': +"869300": installDir: The Darkest Woods launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: The Darkest Woods.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: The Darkest Woods.x86_64 type: default - config: oslist: macos - executable: The Darkest Woods.app\\Contents\\MacOS\\The Darkest Woods + executable: "The Darkest Woods.app\\\\Contents\\\\MacOS\\\\The Darkest Woods" type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: The Darkest Woods.exe type: default -'869320': {} -'869340': +"869320": {} +"869340": installDir: TheFederalRescue launch: - config: oslist: windows executable: The Federal Rescue.exe type: default -'869350': - installDir: Because We're Here ~Mohnblume und Blauerose~ +"869350": + installDir: "Because We're Here ~Mohnblume und Blauerose~" launch: - config: oslist: windows - description: Play Because We're Here ~Act I~ - executable: Because We're Here - Act I.exe + description: "Play Because We're Here ~Act I~" + executable: "Because We're Here - Act I.exe" type: none - config: oslist: macos - description: Play Because We're Here ~Act I~ - executable: Because We're Here - Act I.app + description: "Play Because We're Here ~Act I~" + executable: "Because We're Here - Act I.app" type: none - config: oslist: linux - description: Play Because We're Here ~Act I~ - executable: Because We're Here - Act I.sh + description: "Play Because We're Here ~Act I~" + executable: "Because We're Here - Act I.sh" type: none - config: oslist: windows - ownsdlc: '869390' - description: Play Because We're Here ~Act II~ - executable: \\Because-We're-Here-Act-II-v1.0-market\\Because We're Here - Act II.exe + ownsdlc: "869390" + description: "Play Because We're Here ~Act II~" + executable: "\\\\Because-We're-Here-Act-II-v1.0-market\\\\Because We're Here - Act II.exe" type: none - config: oslist: macos - ownsdlc: '869390' - description: Play Because We're Here ~Act II~ - executable: \\Because-We're-Here-Act-II-v1.0-market\\Because We're Here - Act II.app + ownsdlc: "869390" + description: "Play Because We're Here ~Act II~" + executable: "\\\\Because-We're-Here-Act-II-v1.0-market\\\\Because We're Here - Act II.app" type: none - config: oslist: linux - ownsdlc: '869390' - description: Play Because We're Here ~Act II~ - executable: \\Because-We're-Here-Act-II-v1.0-market\\Because We're Here - Act II.sh + ownsdlc: "869390" + description: "Play Because We're Here ~Act II~" + executable: "\\\\Because-We're-Here-Act-II-v1.0-market\\\\Because We're Here - Act II.sh" type: none -'869370': +"869370": installDir: The Goracle launch: - config: @@ -396765,8 +391040,8 @@ oslist: macos executable: Game.app type: none -'869410': {} -'869440': +"869410": {} +"869440": installDir: Cherry in the Sky launch: - config: @@ -396774,22 +391049,22 @@ description: Launch Cherry in the Sky executable: CitS.exe type: default -'869450': {} -'869460': {} -'869470': +"869450": {} +"869460": {} +"869470": installDir: Tiny Hands Adventure launch: - executable: tha.exe type: none -'869480': +"869480": installDir: Jabroni Brawl Episode 3 launch: - - arguments: '-game jbep3 -steam' + - arguments: "-game jbep3 -steam" config: oslist: windows - executable: bin\\win32\\jbep3.exe + executable: "bin\\\\win32\\\\jbep3.exe" type: default - - arguments: '-game jbep3 -steam' + - arguments: "-game jbep3 -steam" config: oslist: linux executable: launcher.sh @@ -396797,7 +391072,7 @@ nameLocalized: schinese: 傻缺大乱斗:第三章 tchinese: 傻樂大亂鬥:三部曲 -'869500': +"869500": installDir: The Book of Regrets launch: - config: @@ -396810,28 +391085,28 @@ description: Launch Mac executable: thebookofregrets.app type: default -'869540': +"869540": installDir: Hero Hunters Shooting Sniper 3D launch: - config: oslist: windows executable: HeroHunter.exe type: none -'869550': +"869550": installDir: Double Shot launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Double Shot.exe type: vr -'869560': +"869560": installDir: DayD Through time launch: - executable: Day D.exe type: default -'869570': {} -'869580': +"869570": {} +"869580": installDir: Keep Running launch: - config: @@ -396842,13 +391117,13 @@ oslist: macos executable: KeepRunning_RunToTheCure.exe type: default -'869590': {} -'869600': +"869590": {} +"869600": installDir: on your mark launch: - executable: On_Your_Mark.exe type: vr -'869620': +"869620": installDir: Katy & Bob Cake Café launch: - config: @@ -396859,94 +391134,94 @@ oslist: macos executable: Katy And Bob Cake Cafe.app type: default -'869630': - installDir: Heart'n Block +"869630": + installDir: "Heart'n Block" launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: nw.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: nw.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: nw type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: nw type: default -'869650': +"869650": installDir: Franky Lettuce launch: - config: oslist: windows executable: Franky Lettuce.exe type: default -'869660': +"869660": installDir: FANTASY LOVE STORY launch: - executable: Game.exe type: default -'869690': +"869690": installDir: Cat Lady launch: - config: oslist: windows executable: Cat Lady.exe type: default -'869710': {} -'869750': +"869710": {} +"869750": installDir: Super Chicken Catchers launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Super Chicken Catchers executable: SCC.exe type: none -'869780': +"869780": installDir: Super Golf 2018 launch: - executable: Super Golf 2018.exe type: none - config: oslist: macos - executable: Super Golf 2018.app\\Contents\\MacOS\\Super Golf 2018 + executable: "Super Golf 2018.app\\\\Contents\\\\MacOS\\\\Super Golf 2018" type: none - config: oslist: linux executable: Super Golf 2018.x86 type: none -'869790': {} -'869840': +"869790": {} +"869840": installDir: FeatherOfPraying launch: - config: oslist: windows executable: Game.exe type: default -'869850': +"869850": installDir: Jet Ant launch: - config: oslist: windows executable: Jet Ant.exe type: none -'869870': +"869870": installDir: She is Mermaid launch: - config: oslist: windows executable: Mermaid.exe type: none -'869880': +"869880": installDir: Cyanide & Happiness Freakpocalypse launch: - config: @@ -396963,22 +391238,22 @@ type: default nameLocalized: schinese: 氰化欢乐秀-末日通行证 -'869910': +"869910": installDir: AmazeBowl launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: amaze_bowl_1_72b.exe type: vr -'869930': +"869930": installDir: Up And Up launch: - config: oslist: windows executable: UpAndUp.exe type: default -'870000': +"870000": installDir: AmazeD 3D launch: - config: @@ -396989,30 +391264,30 @@ oslist: macos executable: AmazeD_3D_Mac.app type: default -'870010': +"870010": installDir: Mazes and Mages launch: - config: oslist: windows - executable: builds\\win32\\mazesandmages.exe + executable: "builds\\\\win32\\\\mazesandmages.exe" type: default - workingdir: builds\\win32 -'870020': + workingdir: "builds\\\\win32" +"870020": installDir: 3D Gravity Rocket launch: - config: oslist: windows executable: 3D Gravity Rocket.exe type: default -'870030': +"870030": installDir: Polymatic launch: - config: oslist: windows executable: Polymatic.exe type: default -'870040': {} -'870080': +"870040": {} +"870080": installDir: Running Through Russia 2 launch: - config: @@ -397020,12 +391295,12 @@ executable: Windows.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Linux.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Linux.x86_64 type: default @@ -397033,77 +391308,77 @@ oslist: macos executable: MacOSX.app type: default -'870090': +"870090": installDir: Lems launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Lems.exe type: vr -'870100': +"870100": installDir: crows launch: - config: oslist: windows executable: crows.exe type: default -'870110': - installDir: The Monsters' History Book +"870110": + installDir: "The Monsters' History Book" launch: - - description: The Monsters' History Book + - description: "The Monsters' History Book" executable: Game.exe type: option1 - config: - ownsdlc: '873660' - description: The Monsters' History Book - Classic + ownsdlc: "873660" + description: "The Monsters' History Book - Classic" executable: /GameC/Game.exe type: option2 - description: Description document executable: tools.txt type: option3 nameLocalized: - english: The Monsters' History Book + english: "The Monsters' History Book" schinese: 怪物的历史书 tchinese: 怪物的历史书 -'870120': +"870120": installDir: The Bad Gravedigger launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: The Bad Gravedigger.exe type: default -'870140': +"870140": installDir: Treasure Hunter Man 2 launch: - config: oslist: windows executable: THM2.exe type: default -'870150': +"870150": installDir: Jumponaut launch: - config: oslist: windows executable: Jumponaut.exe type: default -'870160': +"870160": installDir: ROVER launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Rover.exe type: default -'870180': +"870180": installDir: Blueprint Word launch: - config: oslist: windows - executable: WindowsNoEditor\\Blueprint_Word_R3 + executable: "WindowsNoEditor\\\\Blueprint_Word_R3" type: default -'870190': +"870190": installDir: That Which Binds Us launch: - config: @@ -397116,13 +391391,13 @@ type: default - config: oslist: macos - executable: TWBU.app\\Contents\\MacOS\\TWBU + executable: "TWBU.app\\\\Contents\\\\MacOS\\\\TWBU" type: default -'870200': +"870200": installDir: SimpleRockets2 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SimpleRockets2.exe type: default @@ -397130,14 +391405,14 @@ oslist: macos executable: SimpleRockets2.app/Contents/MacOS/SimpleRockets 2 type: default -'870260': +"870260": installDir: Forward Line launch: - config: oslist: windows executable: ForwardLine.exe type: default -'870290': +"870290": installDir: The Miskatonic launch: - config: @@ -397148,7 +391423,7 @@ oslist: macos executable: The Miskatonic.app type: none -'870400': +"870400": installDir: Fugue launch: - config: @@ -397163,14 +391438,14 @@ oslist: linux executable: Fugue.x86 type: default -'870430': +"870430": installDir: Debit And Credit launch: - config: oslist: windows executable: DebitAndCredit.exe type: default -'870450': +"870450": installDir: Fobia launch: - config: @@ -397179,71 +391454,70 @@ type: default - config: oslist: macos - executable: Fobia.app\\Contents\\MacOS\\Fobia + executable: "Fobia.app\\\\Contents\\\\MacOS\\\\Fobia" type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Fobia.x86_64 type: default -'870510': - installDir: The Fiend's Tavern +"870510": + installDir: "The Fiend's Tavern" launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: The Fiend's Tavern.exe + executable: "The Fiend's Tavern.exe" type: default - config: oslist: macos - executable: The Fiend's Tavern.app\\Contents\\MacOS\\The Fiend's Tavern + executable: "The Fiend's Tavern.app\\\\Contents\\\\MacOS\\\\The Fiend's Tavern" type: default - config: - osarch: '32' + osarch: "32" oslist: windows - executable: The Fiend's Tavern.exe + executable: "The Fiend's Tavern.exe" type: none -'870520': +"870520": installDir: arashi6 launch: - config: oslist: windows executable: launcher.exe type: default -'870570': {} -'870580': +"870570": {} +"870580": installDir: ZOOMnBOOM launch: - config: oslist: windows executable: ZOOMnBOOM.exe type: none -'870590': +"870590": installDir: Moonbase Down launch: - config: oslist: windows executable: Moonbase Down.exe type: default -'870610': {} -'870650': +"870610": {} +"870650": installDir: HerWam - launch: [] -'870670': +"870670": installDir: Ink Cipher launch: - config: oslist: windows executable: InkCipher.exe type: default -'870680': +"870680": installDir: Automatum launch: - config: oslist: windows executable: Automatum.exe type: default -'870690': +"870690": installDir: Galaxy Trucker launch: - config: @@ -397252,7 +391526,7 @@ type: default - config: oslist: macos - executable: GalaxyTrucker_steam.app\\Contents\\MacOS\\GalaxyTrucker_steam + executable: "GalaxyTrucker_steam.app\\\\Contents\\\\MacOS\\\\GalaxyTrucker_steam" type: default - config: betakey: essenpreview @@ -397262,39 +391536,39 @@ - config: betakey: essenpreview oslist: macos - executable: GalaxyTrucker_steam.app\\Contents\\MacOS\\GalaxyTrucker_steam_essen + executable: "GalaxyTrucker_steam.app\\\\Contents\\\\MacOS\\\\GalaxyTrucker_steam_essen" type: default -'870730': +"870730": installDir: Adapt or Perish launch: - - arguments: '-show-screen-selector -vrmode none' + - arguments: "-show-screen-selector -vrmode none" config: oslist: windows executable: aop.exe type: default - - arguments: '-force-d3d11' + - arguments: "-force-d3d11" config: oslist: windows executable: aop.exe type: vr - - arguments: '-show-screen-selector -vrmode none' + - arguments: "-show-screen-selector -vrmode none" config: - osarch: '32' + osarch: "32" oslist: linux executable: aop.x86 type: default - - arguments: '-show-screen-selector -vrmode none' + - arguments: "-show-screen-selector -vrmode none" config: - osarch: '64' + osarch: "64" oslist: linux executable: aop.x86_64 type: default - - arguments: '-show-screen-selector -vrmode none' + - arguments: "-show-screen-selector -vrmode none" config: oslist: macos executable: AOP.app type: default -'870740': +"870740": installDir: BowmanVSZombies launch: - config: @@ -397303,16 +391577,16 @@ type: default - config: oslist: macos - executable: BowmanVSZombies.app\\Contents\\MacOS\\BowmanVSZombies + executable: "BowmanVSZombies.app\\\\Contents\\\\MacOS\\\\BowmanVSZombies" type: default -'870750': +"870750": installDir: Junk Smasher launch: - config: oslist: windows executable: SMASH IT.exe type: default -'870780': +"870780": installDir: Control launch: - config: @@ -397321,26 +391595,26 @@ type: none nameLocalized: japanese: Control Ultimate Edition - koreana: 'Control Ultimate Edition : 컨트롤 얼티밋 에디션' + koreana: "Control Ultimate Edition : 컨트롤 얼티밋 에디션" schinese: 控制 - 终极合辑 / Control Ultimate Edition tchinese: 控制 - 終極合輯 / Control Ultimate Edition -'870800': +"870800": installDir: Kilcount launch: - config: oslist: windows executable: Game.exe type: default -'870830': {} -'870890': +"870830": {} +"870890": installDir: Museum of Symmetry launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: MuseumOfSymmetry.exe type: vr -'870940': +"870940": installDir: Brainstorm launch: - config: @@ -397351,20 +391625,20 @@ oslist: macos executable: Brainstorm.app type: none -'870950': {} -'870980': {} -'870990': - installDir: '!LABrpgUP!' +"870950": {} +"870980": {} +"870990": + installDir: "!LABrpgUP!" launch: - config: oslist: windows executable: RPG.exe type: default -'871100': +"871100": installDir: Animyst launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: AnimystClient.exe type: none @@ -397372,37 +391646,37 @@ oslist: macos executable: AnimystClient.app type: none -'871120': +"871120": installDir: MilkChoco launch: - config: oslist: windows executable: MilkChoco.exe type: none -'871140': +"871140": installDir: GOO launch: - - arguments: '-windowed' + - arguments: "-windowed" config: oslist: windows - executable: GOO_Win64\\GOO.exe + executable: "GOO_Win64\\\\GOO.exe" type: default - - arguments: '-windowed' + - arguments: "-windowed" config: oslist: macos - executable: GOO.app\\Contents\\MacOS\\GOO + executable: "GOO.app\\\\Contents\\\\MacOS\\\\GOO" type: default -'871150': +"871150": installDir: Noble Crusade launch: - config: oslist: windows - executable: \\data\\Noble-Crusade.exe + executable: "\\\\data\\\\Noble-Crusade.exe" type: none - workingdir: \\data -'871160': {} -'871180': {} -'871190': + workingdir: "\\\\data" +"871160": {} +"871180": {} +"871190": installDir: HATCH launch: - config: @@ -397417,35 +391691,35 @@ oslist: linux executable: HatchLinux.x86_64 type: default -'871200': +"871200": installDir: FIGHTING EX LAYER launch: - config: oslist: windows executable: EXF.exe type: none -'871220': +"871220": installDir: The Adventures of Captain Potato launch: - config: oslist: windows executable: taocp.exe type: default -'871230': +"871230": installDir: Dungeon Rush launch: - config: oslist: windows executable: dr.exe type: vr -'871270': +"871270": installDir: Wild West VR launch: - config: oslist: windows executable: WildWestVR.exe type: vr -'871280': +"871280": installDir: Grisaia Phantom Trigger Vol.5 launch: - executable: GPT_vol5.exe @@ -397453,29 +391727,29 @@ nameLocalized: japanese: グリザイア ファントムトリガー Vol.5 schinese: 灰色幻影扳机第5卷 -'871290': +"871290": installDir: Shepard Fairey VR - DAMAGED launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: DAMAGED_64.exe type: vr -'871300': +"871300": installDir: Curse in our heads launch: - config: oslist: windows executable: curse.exe type: default -'871310': +"871310": installDir: Arc Savior launch: - config: oslist: windows executable: Arc Savior.exe type: default -'871320': +"871320": installDir: Flaming Pixels launch: - config: @@ -397486,7 +391760,7 @@ oslist: macos executable: Flaming Pixels.app/Contents/MacOS/Flaming Pixels type: none -'871330': +"871330": installDir: Achaem launch: - config: @@ -397498,25 +391772,25 @@ executable: Achaem.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Achaem.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Achaem.x86_64 type: default -'871360': {} -'871390': +"871360": {} +"871390": installDir: Rock n Rush Battle Racing launch: - config: oslist: windows executable: RocknRushBattleRacing.exe type: default -'871420': - installDir: Lovecraft's Untold Stories +"871420": + installDir: "Lovecraft's Untold Stories" launch: - config: oslist: windows @@ -397526,18 +391800,18 @@ oslist: macos executable: Lus.app type: default -'871450': {} -'871470': {} -'871480': {} -'871510': +"871450": {} +"871470": {} +"871480": {} +"871510": installDir: Wheelchair Simulator launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Wheelchair.exe type: default -'871530': +"871530": installDir: Radio Commander launch: - config: @@ -397552,7 +391826,7 @@ oslist: linux executable: RC.x86_64 type: none -'871550': +"871550": installDir: Chicken Rider launch: - config: @@ -397561,9 +391835,9 @@ type: default - config: oslist: macos - executable: ChickenRider.app\\Contents\\MacOS\\ChickenRider + executable: "ChickenRider.app\\\\Contents\\\\MacOS\\\\ChickenRider" type: default -'871570': +"871570": installDir: Summer Memory of Bell launch: - config: @@ -397583,7 +391857,7 @@ russian: Летние Воспоминания о Белл schinese: 忆夏之铃 tchinese: 憶夏之鈴 -'871580': +"871580": installDir: SUPER BALL WRESTLE YES launch: - config: @@ -397592,9 +391866,9 @@ type: default - config: oslist: macos - executable: game.app\\Contents\\MacOS\\game + executable: "game.app\\\\Contents\\\\MacOS\\\\game" type: default -'871590': +"871590": installDir: Nurikabe launch: - config: @@ -397603,17 +391877,17 @@ type: default - config: oslist: macos - executable: Nurikabe.app\\Contents\\MacOS\\Mac_Runner + executable: "Nurikabe.app\\\\Contents\\\\MacOS\\\\Mac_Runner" type: default -'871620': +"871620": installDir: Volcano Eruption launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: WindowsNoEditor\\Ocean_VR_3\\Binaries\\Win64\\Ocean_VR_3.exe + executable: "WindowsNoEditor\\\\Ocean_VR_3\\\\Binaries\\\\Win64\\\\Ocean_VR_3.exe" type: vr -'871640': +"871640": installDir: Asteroid RKD launch: - config: @@ -397621,64 +391895,64 @@ description: Launch executable: AsteroidRKD.exe type: default -'871670': +"871670": installDir: Tomb Reader TrapLand launch: - config: oslist: windows executable: nw.exe type: default -'871710': +"871710": installDir: Galactic Dominion launch: - config: oslist: windows executable: Galactic Dominion.exe type: default -'871720': +"871720": installDir: Ultimate Custom Night launch: - config: oslist: windows executable: Ultimate Custom Night.exe type: default -'871810': +"871810": installDir: Blackout launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: BlackOut.exe type: default -'871850': +"871850": installDir: MUTATION PHASE launch: - config: oslist: windows executable: MUTATION_PHASE.exe type: default -'871860': +"871860": installDir: Allergenium launch: - config: oslist: windows executable: Allergenium.exe type: default -'871870': +"871870": installDir: Alone launch: - config: oslist: windows executable: AloneProject.exe type: none -'871920': +"871920": installDir: Mad Restaurant People launch: - config: oslist: windows executable: MRP.exe type: default -'871930': +"871930": installDir: Gladiabots launch: - config: @@ -397690,20 +391964,20 @@ executable: Gladiabots.app type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: Gladiabots.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: Gladiabots.x86_64 type: none -'871940': +"871940": installDir: BrawlQuest launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: brawlquest.exe type: default @@ -397711,7 +391985,7 @@ oslist: macos executable: brawlquest.app type: default -'871950': +"871950": installDir: DERE EVIL EXE launch: - config: @@ -397719,11 +391993,11 @@ description: Launch DERE EVIL .EXE executable: DERE EVIL .exe type: default -'871980': +"871980": installDir: Digimon Survive launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: DigimonSurvive.exe type: none @@ -397732,46 +392006,46 @@ koreana: 디지몬 서바이브 schinese: 数码宝贝 绝境求生 tchinese: 數碼寶貝 絕境求生 -'871990': +"871990": installDir: BattleRush 2 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Cv2_Base/Binaries/Win64/Cv2_BaseClient_Shipping.exe type: none - config: - osarch: '32' + osarch: "32" oslist: windows executable: Cv2_Base/Binaries/Win32/Cv2_BaseClient_Shipping.exe type: none - config: betakey: devel - osarch: '64' + osarch: "64" oslist: windows description: Играть в BattleRush Development executable: Cv2_Base/Binaries/Win64/Cv2_BaseClient.exe type: none - config: betakey: devel - osarch: '32' + osarch: "32" oslist: windows description: Играть в BattleRush Development executable: Cv2_Base/Binaries/Win32/Cv2_BaseClient.exe type: none -'872000': +"872000": installDir: Beerd leaver launch: - executable: nw.exe type: none -'872040': +"872040": installDir: Hovership Havoc launch: - config: oslist: windows executable: Hovership Havoc.exe type: default -'872060': +"872060": installDir: Quiet as a Stone launch: - config: @@ -397782,14 +392056,14 @@ oslist: macos executable: QuietasaStone.app/Contents/MacOS/QuietasaStone type: none -'872090': +"872090": installDir: Freezeer launch: - config: oslist: windows executable: nw.exe type: default -'872110': +"872110": installDir: Burden of Proof launch: - config: @@ -397801,52 +392075,52 @@ executable: BurdenOfProof.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: BurdenOfProof.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: BurdenOfProof.x86_64 type: default -'872130': +"872130": installDir: Deep Space Waifu World launch: - config: oslist: windows executable: Deep Space Waifu World.exe type: default -'872140': {} -'872180': +"872140": {} +"872180": installDir: Charm Tale launch: - executable: CharmTale.exe type: none -'872200': +"872200": installDir: Rogue Company launch: - - arguments: '-oss=steam -hirezenv=RETAIL -homedir=RogueCompany' + - arguments: "-oss=steam -hirezenv=RETAIL -homedir=RogueCompany" config: - osarch: '64' + osarch: "64" oslist: windows executable: RogueCompany.exe type: default -'872220': +"872220": installDir: Delta G launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: Gravity.exe type: default -'872230': +"872230": installDir: Destiny of Altrais launch: - executable: Game.exe type: default -'872240': +"872240": installDir: Nick Beard - The Fedora of Destiny launch: - executable: Game.exe @@ -397856,14 +392130,14 @@ description: Mega Knockdown Test executable: Mega Knockdown.exe type: none -'872270': +"872270": installDir: The change launch: - config: oslist: windows executable: The changeDEMO.exe type: default -'872310': +"872310": installDir: Color Coded launch: - config: @@ -397874,61 +392148,61 @@ oslist: macos executable: GridGamesColorCoded.app type: default -'872330': +"872330": installDir: Wizard Street launch: - config: oslist: windows executable: WizardStreet.exe type: vr -'872340': +"872340": installDir: Bunny Battle Arena launch: - config: oslist: windows executable: BunnyBattleArena.exe type: none -'872350': +"872350": installDir: Zombie Killing Simulator launch: - config: - osarch: '64' + osarch: "64" description: Start the Game executable: Zombie Killing Simulator.exe type: default -'872360': +"872360": installDir: Fruit Hoop launch: - config: oslist: windows executable: fruithoop.exe type: default -'872380': +"872380": installDir: Banzo - Marks of Slavery launch: - config: oslist: windows executable: Banzo.exe type: none -'872390': {} -'872400': +"872390": {} +"872400": installDir: Capsella The Lights of Lucern launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: WindowsNoEditor\\CapsellaGame.exe + executable: "WindowsNoEditor\\\\CapsellaGame.exe" type: default - config: - osarch: '32' + osarch: "32" oslist: windows - executable: WindowsNoEditor\\CapsellaGame.exe + executable: "WindowsNoEditor\\\\CapsellaGame.exe" type: default -'872410': +"872410": installDir: Romance_of_the_Three_Kingdoms_14 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SAN14_Launcher.exe type: default @@ -397937,7 +392211,7 @@ koreana: 삼국지14 schinese: 三国志14 tchinese: 三國志14 -'872470': +"872470": installDir: Necro Mutex launch: - config: @@ -397954,33 +392228,33 @@ japanese: アンデッドミューテーション koreana: 언데드 돌연변이 schinese: 亡灵突变 -'872490': +"872490": installDir: Blind Souls launch: - config: oslist: windows executable: WindowsNoEditor/BlindSouls.exe type: none -'872530': +"872530": installDir: Korean Scary Folk Tales VR The Forbidden Book launch: - config: oslist: windows executable: KoreanScaryFolkTales.exe type: vr -'872550': +"872550": installDir: Urbance Card Game launch: - config: oslist: windows executable: UrbanceCardGame.exe type: default -'872560': +"872560": installDir: Cubeology launch: - executable: Cubeology.exe type: none -'872570': +"872570": installDir: RomansAOC launch: - config: @@ -398008,56 +392282,52 @@ oslist: windows executable: RomansAOC.exe type: default -'872580': +"872580": installDir: The Neon Boy launch: - config: oslist: windows executable: TheNeonBoy.exe type: none -'872590': +"872590": installDir: Detective_Psychic launch: - config: oslist: windows executable: game.exe type: default -'872600': +"872600": installDir: Hist Maker launch: - config: oslist: windows executable: Hist Maker.exe type: none -'872630': +"872630": installDir: Project VR Wild Hunt launch: - config: oslist: windows executable: Project VR Wild Hunt.exe type: vr -'872670': +"872670": installDir: SCPPandemic launch: - - arguments: '-d3d12' + - arguments: "-d3d12" config: - osarch: '64' + osarch: "64" oslist: windows description: DirectX 12 - description_loc: - english: DirectX 12 executable: WindowsNoEditor/Pandemic.exe type: option1 - - arguments: '-d3d11' + - arguments: "-d3d11" config: - osarch: '64' + osarch: "64" oslist: windows description: DirectX 11 - description_loc: - english: DirectX 11 executable: WindowsNoEditor/Pandemic.exe type: option2 -'872680': +"872680": installDir: ZDawn launch: - config: @@ -398072,21 +392342,21 @@ oslist: linux executable: ZDawn.x86_64 type: default -'872690': +"872690": installDir: Funky Karts launch: - config: oslist: windows executable: FunkyKarts.exe type: default -'872700': +"872700": installDir: Jet-Story 2018 launch: - config: oslist: windows executable: JetStory.exe type: none -'872720': +"872720": installDir: SuperMash launch: - config: @@ -398097,14 +392367,14 @@ oslist: linux executable: SuperMash.x86_64 type: none -'872730': +"872730": installDir: Test your knowledge Cities launch: - config: oslist: windows executable: Test your knowledge - Cities.exe type: config -'872750': +"872750": installDir: Guard Duty launch: - config: @@ -398115,23 +392385,23 @@ oslist: windows executable: winsetup.exe type: config - - arguments: '--fullscreen' + - arguments: "--fullscreen" config: oslist: linux description: using OpenGL (Fullscreen) - executable: ./Start.sh + executable: "./Start.sh" type: option1 - - arguments: '--windowed' + - arguments: "--windowed" config: oslist: linux description: using OpenGL (Windowed) - executable: ./Start.sh + executable: "./Start.sh" type: option2 - config: oslist: macos executable: Guard Duty.app/Contents/MacOS/Guard Duty type: default -'872790': +"872790": installDir: Football Manager 2019 launch: - config: @@ -398142,14 +392412,14 @@ oslist: macos executable: fm.app type: none -'872810': +"872810": installDir: Eleven Eleven launch: - config: oslist: windows executable: ElevenEleven.exe type: vr -'872820': +"872820": installDir: Football Manager 2019 Touch launch: - config: @@ -398160,29 +392430,29 @@ oslist: macos executable: fm.app type: none -'872970': - installDir: Azurael's Circle Chapter 1 +"872970": + installDir: "Azurael's Circle Chapter 1" launch: - config: oslist: windows executable: Game.exe type: none -'872980': {} -'872990': +"872980": {} +"872990": installDir: StreamGames launch: - config: oslist: windows executable: STREAMGAMES.exe type: default -'873040': +"873040": installDir: Final Missions launch: - config: oslist: windows executable: FinalMisssions.exe type: default -'873050': +"873050": installDir: Crescent Hollow launch: - config: @@ -398191,82 +392461,82 @@ type: default - config: oslist: macos - executable: CrescentHollow.app\\Contents\\MacOS\\build_MAC_EAB + executable: "CrescentHollow.app\\\\Contents\\\\MacOS\\\\build_MAC_EAB" type: default - config: oslist: linux executable: Crescent Hollow.x86_64 type: default -'873070': +"873070": installDir: NEO NEO launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: NEO NEO.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: NEO NEO.exe type: default -'873090': - installDir: Chibisu's Costume Combat +"873090": + installDir: "Chibisu's Costume Combat" launch: - config: oslist: windows executable: ChibisusCostumeCombat.exe type: default -'873120': +"873120": installDir: Hectic launch: - config: oslist: windows executable: Hectic Void.exe type: default -'873140': +"873140": installDir: War of Gaia Into the Fire launch: - config: oslist: windows executable: War of Gaia.exe type: default -'873150': {} -'873160': +"873150": {} +"873160": installDir: Speckle launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: WindowsNoEditor\\Speckle.exe + executable: "WindowsNoEditor\\\\Speckle.exe" type: default - config: oslist: macos executable: Speckle.app type: default -'873180': +"873180": installDir: 1000 Stages launch: - config: oslist: windows executable: game.exe type: none -'873190': +"873190": installDir: ЕСТЬ ДВА СТУЛА launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Есть Два Стула.exe type: default -'873200': - installDir: Teleportals. I swear it's a nice game +"873200": + installDir: "Teleportals. I swear it's a nice game" launch: - config: oslist: windows executable: nw.exe type: default -'873210': +"873210": installDir: iterform launch: - config: @@ -398277,12 +392547,12 @@ oslist: linux executable: iterform type: default -'873220': +"873220": installDir: SurvivalZ Battlegrounds launch: - executable: SurvivalZ Battlegrounds.exe type: none -'873230': +"873230": installDir: TheKingsRequest launch: - config: @@ -398300,82 +392570,82 @@ type: option2 - config: oslist: linux - description: then read HELP.TXT in this game's folder - executable: www\\index.html + description: "then read HELP.TXT in this game's folder" + executable: "www\\\\index.html" type: none -'873240': +"873240": installDir: Hentai Memory launch: - config: oslist: windows executable: Hentai Memory.exe type: default -'873250': +"873250": installDir: Crimson Light launch: - config: oslist: windows executable: Game.exe type: default -'873270': +"873270": installDir: rolledout launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: RolledOut.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: RolledOut.sh type: default -'873280': +"873280": installDir: Kick Them Out!!! launch: - config: oslist: windows executable: Kick Them Out!!!.exe type: default -'873290': {} -'873310': +"873290": {} +"873310": installDir: A Typewriter’s Story launch: - config: oslist: windows - executable: A Typewriter's Story.exe + executable: "A Typewriter's Story.exe" type: default -'873320': - installDir: Life's Playground +"873320": + installDir: "Life's Playground" launch: - executable: lifeplay.exe type: none -'873330': +"873330": installDir: Color by Numbers - Flowers launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: cbn-flowers.exe type: default - config: oslist: macos - executable: Color by Numbers - Flowers.app\\Contents\\MacOS\\Color by Numbers - Flowers + executable: "Color by Numbers - Flowers.app\\\\Contents\\\\MacOS\\\\Color by Numbers - Flowers" type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: cbn-flowers.x86_64 type: default -'873360': {} -'873370': +"873360": {} +"873370": installDir: MDF launch: - config: oslist: windows executable: MDF.exe type: default -'873390': +"873390": installDir: CelestialHackerGirlJessica launch: - config: @@ -398388,27 +392658,27 @@ description: Launch executable: CelestialHackerGirlJessica.app type: none -'873410': +"873410": installDir: The Basilisk launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: The Basilisk.exe type: none - config: oslist: macos - executable: thebasilisk.app\\Contents\\MacOS\\nwjs + executable: "thebasilisk.app\\\\Contents\\\\MacOS\\\\nwjs" type: none -'873470': +"873470": installDir: Zero Sum Future launch: - config: oslist: windows executable: v4Engine.exe type: none -'873480': {} -'873490': +"873480": {} +"873490": installDir: Unconquered launch: - config: @@ -398419,7 +392689,7 @@ oslist: macos executable: Mac.app type: default -'873500': +"873500": installDir: Space Maze launch: - config: @@ -398427,7 +392697,7 @@ description: Launch executable: Maze.exe type: none -'873530': +"873530": installDir: Trapper launch: - config: @@ -398438,62 +392708,62 @@ oslist: windows executable: Trapper.exe type: openvroverlay -'873560': - installDir: Jack N' Jill DX +"873560": + installDir: "Jack N' Jill DX" launch: - - arguments: '0' + - arguments: "0" config: oslist: windows - description: Jack N' Jill DX (1280x720) + description: "Jack N' Jill DX (1280x720)" executable: JackNJill.exe type: option1 - - arguments: '1' + - arguments: "1" config: oslist: windows - description: Jack N' Jill (1920x1080) + description: "Jack N' Jill (1920x1080)" executable: JackNJill.exe type: option2 - - arguments: '2' + - arguments: "2" config: oslist: windows - description: Jack N' Jill (Fullscreen) + description: "Jack N' Jill (Fullscreen)" executable: JackNJill.exe type: option3 -'873580': +"873580": installDir: Dark Fairies launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: - osarch: '64' + osarch: "64" oslist: windows description: Dark Fairies executable: nw.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows description: Dark Fairies (no Steam overlay) executable: nw.exe type: option1 nameLocalized: french: Fees Tenebreuses -'873590': +"873590": installDir: Shirina launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: - osarch: '64' + osarch: "64" oslist: windows description: Shirina executable: nw.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows description: Shirina (no Steam overlay) executable: nw.exe type: option1 -'873610': +"873610": installDir: mr.Vegan launch: - config: @@ -398504,161 +392774,161 @@ oslist: linux executable: runner type: none -'873620': {} -'873700': {} -'873710': +"873620": {} +"873700": {} +"873710": installDir: Paris Jigsaw Puzzles launch: - config: oslist: windows - description: 'Puzzle 1: 90 Pieces' + description: "Puzzle 1: 90 Pieces" executable: Puzzle 1 90 Pieces.exe type: option1 - config: oslist: windows - description: 'Puzzle 2: 70 Pieces' + description: "Puzzle 2: 70 Pieces" executable: Puzzle 2 70 Pieces.exe type: option1 - config: oslist: windows - description: 'Puzzle 3: 54 Pieces' + description: "Puzzle 3: 54 Pieces" executable: Puzzle 3 54 Pieces.exe type: option1 - config: oslist: windows - description: 'Puzzle 4: 96 Pieces' + description: "Puzzle 4: 96 Pieces" executable: Puzzle 4 96 Pieces.exe type: option1 - config: oslist: windows - description: 'Puzzle 5: 104 Pieces' + description: "Puzzle 5: 104 Pieces" executable: Puzzle 5 104 Pieces.exe type: option1 - config: oslist: windows - description: 'Puzzle 6: 70 Pieces' + description: "Puzzle 6: 70 Pieces" executable: Puzzle 6 70 Pieces.exe type: option1 - config: oslist: windows - description: 'Puzzle 7: 96 Pieces' + description: "Puzzle 7: 96 Pieces" executable: Puzzle 7 96 Pieces.exe type: option1 - config: oslist: windows - description: 'Puzzle 8: 54 Pieces' + description: "Puzzle 8: 54 Pieces" executable: Puzzle 8 54 Pieces.exe type: option1 - config: oslist: windows - description: 'Puzzle 9: 60 Pieces' + description: "Puzzle 9: 60 Pieces" executable: Puzzle 9 60 Pieces.exe type: option1 - config: oslist: windows - description: 'Puzzle 10: 60 Pieces' + description: "Puzzle 10: 60 Pieces" executable: Puzzle 10 60 Pieces.exe type: option1 - config: oslist: windows - description: 'Puzzle 11: 77 Pieces' + description: "Puzzle 11: 77 Pieces" executable: Puzzle 11 77 Pieces.exe type: option1 - config: oslist: windows - description: 'Puzzle 12: 40 Pieces' + description: "Puzzle 12: 40 Pieces" executable: Puzzle 12 40 Pieces.exe type: option1 - config: oslist: windows - description: 'Puzzle 13: 96 Pieces' + description: "Puzzle 13: 96 Pieces" executable: Puzzle 13 96 Pieces.exe type: option1 - config: oslist: windows - description: 'Puzzle 14: 40 Pieces' + description: "Puzzle 14: 40 Pieces" executable: Puzzle 14 40 Pieces.exe type: option1 - - description: 'Puzzle 15: 60 Pieces' + - description: "Puzzle 15: 60 Pieces" executable: Puzzle 15 60 Pieces.exe type: option1 -'873720': +"873720": installDir: Pac Adventures 3D launch: - executable: Pac3D.exe type: none -'873730': +"873730": installDir: UnderTheWar launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: 64.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: 32.exe type: default -'873740': +"873740": installDir: Tranquility Base Mining Colony The Moon - Explorer Version launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TBMC_Explorer64.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: TBMC_Explorer32.exe type: default -'873790': +"873790": installDir: Freebot Battle for FreeWeb launch: - config: oslist: windows executable: Freebot19.exe type: none -'873810': +"873810": installDir: CarsArena launch: - config: oslist: windows executable: game.exe type: none -'873820': +"873820": installDir: 尘与土的边缘 launch: - executable: Game.exe type: default -'873830': +"873830": installDir: Subcube launch: - config: - osarch: '64' + osarch: "64" oslist: linux executable: subcube.x86_64 type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: subcube.exe type: default -'873850': +"873850": installDir: PASSAGE launch: - executable: PASSAGE.exe type: default -'873860': +"873860": installDir: Pop Island launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: popisland.exe type: default -'873890': +"873890": installDir: Legends of Amberland launch: - config: @@ -398666,13 +392936,13 @@ description: The Game executable: LegendsOfAmberland.exe type: default - - arguments: '-safemode' + - arguments: "-safemode" config: oslist: windows description: Legends of Amberland - safe mode executable: LegendsOfAmberland.exe type: option1 -'873900': +"873900": installDir: Lost Artifacts Golden Island launch: - config: @@ -398683,7 +392953,7 @@ oslist: macos executable: Lost Artifacts Golden Island.app type: default -'873910': +"873910": installDir: Railworld launch: - config: @@ -398691,16 +392961,16 @@ description: RailWorld executable: RailWorld.exe type: default -'873930': +"873930": installDir: ALIENS INVADED OUR PLANET launch: - executable: AliensInvaded.exe type: none -'873940': +"873940": installDir: Crying Suns launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: cs.exe type: default @@ -398708,13 +392978,13 @@ oslist: macos executable: cs.app/Contents/MacOS/cs type: default - - arguments: '-force-opengl' + - arguments: "-force-opengl" config: oslist: macos description: Crying Suns (Intel iGPU - OpenGL) executable: cs.app/Contents/MacOS/cs type: option1 -'873960': +"873960": installDir: Panic Room 2 Hide and Seek launch: - config: @@ -398723,16 +392993,16 @@ type: default - config: oslist: macos - executable: Freedom.app\\Contents\\MacOS\\game + executable: "Freedom.app\\\\Contents\\\\MacOS\\\\game" type: default -'873970': +"873970": installDir: Virtual Families 2 launch: - config: oslist: windows executable: Virtual Families 2.exe type: default -'873980': +"873980": installDir: Isle of Skye launch: - config: @@ -398744,23 +393014,23 @@ executable: ixs.app type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: ixs.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: ixs.x86_64 type: none -'874010': +"874010": installDir: aMAZE Classic Inverted launch: - config: oslist: windows executable: aMAZE Classic Inverted.exe type: default -'874020': +"874020": installDir: Lost Artifacts Soulstone launch: - config: @@ -398771,14 +393041,14 @@ oslist: macos executable: Lost Artifacts Soulstone.app type: default -'874030': +"874030": installDir: To the Core launch: - config: oslist: windows executable: ToTheCore.exe type: default -'874040': +"874040": installDir: Ministry of Broadcast launch: - config: @@ -398787,84 +393057,84 @@ type: default - config: oslist: macos - executable: MinistryOfBroadcast.app\\Contents\\MacOS\\MinistryOfBroadcast + executable: "MinistryOfBroadcast.app\\\\Contents\\\\MacOS\\\\MinistryOfBroadcast" type: default nameLocalized: schinese: 围城里的演出/Ministry of Broadcast tchinese: 圍城裡的演出/Ministry of Broadcast -'874060': +"874060": installDir: Bleeding Moons launch: - config: oslist: windows executable: game.exe type: default -'874080': +"874080": installDir: Detective Failure launch: - config: oslist: windows executable: game.exe type: default -'874090': +"874090": installDir: Jaguars VR launch: - config: oslist: windows executable: Jaguars.exe type: vr -'874100': {} -'874130': +"874100": {} +"874130": installDir: HUNTER BRICK BALL launch: - config: oslist: windows executable: Hunter brick ball.exe type: default -'874140': +"874140": installDir: Othello 2018 launch: - config: oslist: windows executable: Othello 2018.exe type: none -'874180': +"874180": installDir: Vanguardian launch: - config: oslist: windows executable: nw.exe type: default -'874200': +"874200": installDir: Swipe Fruit Smash launch: - config: oslist: windows executable: SwipeFruitSmash.exe type: default -'874230': +"874230": installDir: Antirocketh launch: - config: oslist: windows executable: Antirocketh.exe type: default -'874240': +"874240": installDir: MU Legend launch: - arguments: /mu-legend-steam config: oslist: windows - executable: Binaries\\Win32\\MULegend.exe + executable: "Binaries\\\\Win32\\\\MULegend.exe" type: default - arguments: /mu-legend-steam config: betakey: vf-test oslist: windows description: vf-mu-legend - executable: Binaries\\Win32\\MULegend.exe + executable: "Binaries\\\\Win32\\\\MULegend.exe" type: default -'874250': +"874250": installDir: Hum Drum Experiences launch: - config: @@ -398872,43 +393142,41 @@ description: Launch executable: Experience.exe type: default -'874260': +"874260": installDir: The Forgotten City launch: - config: oslist: windows executable: ModernStoryteller01.exe type: default - - arguments: '-utomik -language=zh' + - arguments: "-utomik -language=zh" config: betakey: internonly description: Option Utomik SteamOS visible ? - description_loc: - english: Option Utomik SteamOS visible ? executable: ModernStoryteller01.exe type: option1 nameLocalized: schinese: 遗忘之城 -'874330': +"874330": installDir: MeAndDungeons launch: - config: oslist: windows executable: MeAndDungeons.exe type: none -'874370': +"874370": installDir: Repentant launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Repentant.exe type: default - config: oslist: macos - executable: Repentant.app\\Contents\\MacOS\\Repentant + executable: "Repentant.app\\\\Contents\\\\MacOS\\\\Repentant" type: default -'874380': +"874380": installDir: Chess Puzzles launch: - config: @@ -398921,9 +393189,9 @@ type: none - config: oslist: macos - executable: Chess Puzzles.app\\Contents\\MacOS\\Chess Puzzles + executable: "Chess Puzzles.app\\\\Contents\\\\MacOS\\\\Chess Puzzles" type: none -'874390': +"874390": installDir: The Battle of Polytopia launch: - config: @@ -398932,14 +393200,14 @@ type: default - config: oslist: macos - executable: Polytopia.app\\Contents\\MacOS\\Polytopia + executable: "Polytopia.app\\\\Contents\\\\MacOS\\\\Polytopia" type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Polytopia.x86_64 type: default -'874400': +"874400": installDir: Dinosaur Hunt Puzzle launch: - config: @@ -398954,40 +393222,40 @@ oslist: linux executable: DinosaurHuntPuzzle.x86 type: none -'874440': {} -'874450': +"874440": {} +"874450": installDir: Lunacy launch: - config: oslist: windows executable: Lunacy.exe type: default -'874460': +"874460": installDir: Achtung! Cthulhu Tactics launch: - executable: AC.exe type: default -'874560': {} -'874630': +"874560": {} +"874630": installDir: All Quite On The Bridge - MAD Cliff launch: - config: oslist: windows executable: M.A.D_Cliff.exe type: vr -'874640': - installDir: The Life's Lane +"874640": + installDir: "The Life's Lane" launch: - config: oslist: windows executable: LL.exe type: default -'874650': +"874650": installDir: XXX Puzzle launch: - executable: game.exe type: none -'874690': +"874690": installDir: MazeAndDagger launch: - config: @@ -398995,63 +393263,63 @@ executable: Maze And Dagger Mac/MazeAndDagger.app type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: Maze And Dagger Win 64/MazeAndDagger/MazeAndDagger.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: Maze And Dagger Win 32/MazeAndDagger/MazeAndDagger.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Maze And Dagger Linux/MazeAndDagger.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Maze And Dagger Linux/MazeAndDagger.x86_64 type: default -'874700': +"874700": installDir: The Putinland Divide & Conquer launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Putinland.exe type: default -'874760': +"874760": installDir: GIPHY World VR launch: - config: oslist: windows executable: giphy_world_vr.exe type: vr -'874770': +"874770": installDir: Goinund launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: GOINUNDR.exe type: default -'874780': +"874780": installDir: Brick Breaker Premium launch: - config: oslist: windows executable: game.exe type: default -'874810': +"874810": installDir: Brick Breaker Premium 3 launch: - config: oslist: windows executable: game.exe type: default -'874830': +"874830": installDir: School of Horror launch: - config: @@ -399059,31 +393327,31 @@ executable: School of Horror.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: SchoolofHorror.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: SchoolofHorror.x86_64 type: none - config: oslist: macos - executable: School of Horror.app\\Contents\\MacOS\\MacOs + executable: "School of Horror.app\\\\Contents\\\\MacOS\\\\MacOs" type: none -'874840': +"874840": installDir: ArcBall 3 Infinity launch: - config: oslist: windows executable: ArcBall 3.exe type: default -'874880': +"874880": installDir: Hat Hunters launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: HatHunters.exe type: none @@ -399092,21 +393360,21 @@ executable: HatHunters.app/Contents/MacOS/HatHunters type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: HatHunters.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: HatHunters.x86_64 type: none - config: - osarch: '64' + osarch: "64" oslist: windows executable: HatHunters.exe type: none -'874930': +"874930": installDir: What A Trash Game launch: - config: @@ -399117,30 +393385,30 @@ oslist: macos executable: What A Trash Game.app/Contents/MacOS/What A Trash Game type: default -'875080': +"875080": installDir: Solar Explorer - New Dawn launch: - config: oslist: windows executable: Solar Explorer - New Dawn.exe type: default -'875100': +"875100": installDir: Tiger Tank 59 Ⅰ launch: - config: oslist: windows executable: game.exe type: default -'875110': +"875110": installDir: InfiniPicross 2.0 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: InfiniPicross2.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: InfiniPicross2 type: default @@ -399148,15 +393416,15 @@ oslist: macos executable: InfiniPicross2.app type: default -'875160': +"875160": installDir: Mall Town launch: - - arguments: '-vr' + - arguments: "-vr" config: oslist: windows executable: MallTown.exe type: vr -'875210': +"875210": installDir: Heroes of the Three Kingdoms 8 launch: - config: @@ -399168,14 +393436,14 @@ japanese: 三国群英伝8 schinese: 三国群英传8 tchinese: 三國群英傳8 -'875230': +"875230": installDir: goodgirl launch: - config: oslist: windows executable: goodgirl.exe type: none -'875240': +"875240": installDir: Tree.Bonsai launch: - config: @@ -399186,7 +393454,7 @@ oslist: macos executable: Tree.Bonsai.app/Contents/MacOS/Tree.Bonsai type: default -'875250': +"875250": installDir: Recursive Dragon launch: - config: @@ -399195,9 +393463,9 @@ type: default - config: oslist: macos - executable: Recursive Dragon.app\\Contents\\MacOS\\Recursive Dragon + executable: "Recursive Dragon.app\\\\Contents\\\\MacOS\\\\Recursive Dragon" type: default -'875260': +"875260": installDir: Frozen Soul launch: - config: @@ -399206,27 +393474,27 @@ type: default - config: oslist: macos - executable: Frozen Soul.app\\Contents\\MacOS\\Frozen Soul + executable: "Frozen Soul.app\\\\Contents\\\\MacOS\\\\Frozen Soul" type: default -'875270': +"875270": installDir: Anceder launch: - - arguments: '-steam' + - arguments: "-steam" config: - osarch: '64' + osarch: "64" oslist: windows description: VR mask auto-detect executable: AncederRift.exe type: default - - arguments: '-steam' + - arguments: "-steam" config: - osarch: '64' + osarch: "64" oslist: windows description: Launch SteamVR executable: AncederRift.exe type: vr -'875280': {} -'875300': +"875280": {} +"875300": installDir: De Fobos y Deimos launch: - config: @@ -399237,26 +393505,26 @@ oslist: macos executable: Game.app type: none -'875310': +"875310": installDir: Liberated launch: - executable: Liberated.exe type: none -'875320': +"875320": installDir: Exo Racing launch: - config: oslist: windows executable: Exo Racing.exe type: default -'875340': +"875340": installDir: Dead Mayhem launch: - config: oslist: windows executable: DeadMayhem.exe type: default -'875360': +"875360": installDir: Last Alive launch: - config: @@ -399267,7 +393535,7 @@ oslist: macos executable: Last Alive.app/Contents/MacOS/Last Alive type: none -'875400': +"875400": installDir: Blackout launch: - config: @@ -399276,14 +393544,14 @@ type: default - config: oslist: macos - executable: Blackout.app\\Contents\\MacOS\\Blackout + executable: "Blackout.app\\\\Contents\\\\MacOS\\\\Blackout" type: default - config: oslist: linux executable: Blackout.x86_64 type: default -'875420': {} -'875430': +"875420": {} +"875430": installDir: Hentai Words launch: - config: @@ -399298,80 +393566,80 @@ oslist: linux executable: HentaiWords.x86 type: none -'875470': {} -'875480': +"875470": {} +"875480": installDir: Somnium Space launch: - config: oslist: windows executable: SomniumLauncher.exe type: default -'875500': +"875500": installDir: Factory of Monsters launch: - config: oslist: windows executable: Factory of Monsters.exe type: default -'875520': - installDir: Freddy's Journey +"875520": + installDir: "Freddy's Journey" launch: - config: oslist: windows executable: fj.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: fj.x86 type: default - config: oslist: macos - executable: fj.app\\Contents\\MacOS\\fj + executable: "fj.app\\\\Contents\\\\MacOS\\\\fj" type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: fj.x86_64 type: none -'875530': +"875530": installDir: Dead in time launch: - config: oslist: windows executable: DeadInTime.exe type: default -'875540': +"875540": installDir: Virtual telescope launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Stars.exe type: vr -'875550': - installDir: 'Vogue, the Explorer' +"875550": + installDir: "Vogue, the Explorer" launch: - config: oslist: windows executable: export.exe type: default -'875630': +"875630": installDir: Call each NEW YEAR launch: - config: oslist: windows executable: CalleachNEWYEAR.exe type: default -'875640': +"875640": installDir: Mechanisms Of Mystery launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: MechanismsOfMystery.exe type: vr -'875660': +"875660": installDir: Tales From Windy Meadow launch: - config: @@ -399379,13 +393647,13 @@ description: Launch executable: TalesFromWindyMeadow.exe type: none -'875670': +"875670": installDir: Sophisticated Puzzle launch: - executable: puzzle.exe type: none -'875680': {} -'875710': +"875680": {} +"875710": installDir: BRANE™ Prototype launch: - config: @@ -399396,22 +393664,22 @@ oslist: linux executable: BranePrototype type: default -'875740': +"875740": installDir: Scorch launch: - config: oslist: windows executable: scorch_final.exe type: none -'875760': +"875760": installDir: Furious_Seas launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: FuriousSeas.exe type: vr -'875780': +"875780": installDir: Trivia King launch: - config: @@ -399419,12 +393687,12 @@ executable: game.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: game.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: game.x86 type: default @@ -399432,7 +393700,7 @@ oslist: macos executable: Trivia King.app type: default -'875790': +"875790": installDir: The Movie Trivia Challenge launch: - config: @@ -399440,12 +393708,12 @@ executable: game.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: game.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: game.x86 type: default @@ -399453,30 +393721,30 @@ oslist: macos executable: The Movie Trivia Challenge.app type: default -'875800': +"875800": installDir: Wasteland Remastered launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Wasteland Remastered.exe type: none -'875810': +"875810": installDir: Salio launch: - executable: salio.exe type: default - executable: salio_editor.exe type: editor -'875830': +"875830": installDir: Hidden launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: MoralKing.exe type: default -'875840': +"875840": installDir: Bookers Underground Chapter launch: - config: @@ -399487,7 +393755,7 @@ oslist: macos executable: Bookers.app type: default -'875930': +"875930": installDir: Rehtona launch: - config: @@ -399498,73 +393766,73 @@ oslist: macos executable: Rehtona.app type: default -'876100': +"876100": installDir: Zodicat launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Zodicat_pc.exe type: default -'876110': +"876110": installDir: Envoy of Nezphere launch: - config: oslist: windows executable: game.exe type: vr -'876130': +"876130": installDir: VRGROUND Crazy Farm launch: - config: oslist: windows executable: VRGROUND_CrazyFarm.exe type: vr -'876140': +"876140": installDir: Game launch: - config: oslist: windows executable: PoliceAirTransporter.exe type: none -'876150': +"876150": installDir: The Lost Light of Sisu launch: - config: oslist: windows executable: Sisu.exe type: none -'876160': +"876160": installDir: Occupy White Walls launch: - - executable: WindowsNoEditor\\OWW.exe + - executable: "WindowsNoEditor\\\\OWW.exe" type: none -'876170': +"876170": installDir: DDS (D.I.Y. Drone Simulator) launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: DDSForAcro.exe type: default -'876180': - installDir: Skyscrapers Puzzle Airi's tale +"876180": + installDir: "Skyscrapers Puzzle Airi's tale" launch: - config: oslist: windows executable: SkyscrapersPuzzle.exe type: default -'876190': +"876190": installDir: Football Drama launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: FootballDrama64.exe type: none - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch executable: FootballDrama32.exe @@ -399574,14 +393842,14 @@ description: Launch executable: FootballDrama.app type: none -'876200': +"876200": installDir: Laserium launch: - config: oslist: windows executable: Laserium.exe type: none -'876210': +"876210": installDir: Space Flight - VR Showcase launch: - config: @@ -399592,7 +393860,7 @@ oslist: windows executable: Zen Space Flight.exe type: othervr -'876220': +"876220": installDir: Moss Destruction launch: - config: @@ -399605,40 +393873,40 @@ type: default - config: oslist: macos - executable: MossDestruction.app\\Contents\\MacOS\\MossDestruction + executable: "MossDestruction.app\\\\Contents\\\\MacOS\\\\MossDestruction" type: default -'876240': {} -'876260': +"876240": {} +"876260": installDir: Top Down Survivor launch: - config: oslist: windows executable: Top Down Survivor.exe type: none -'876270': +"876270": installDir: Homo Flimsy launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ElliottsGame.exe type: default -'876290': - installDir: Let's Split Up (A Visual Novel) +"876290": + installDir: "Let's Split Up (A Visual Novel)" launch: - config: oslist: windows executable: Lets_Split_Up.exe type: default -'876300': +"876300": installDir: ROAD HOMEWARD launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ROADHOMEWARD1.exe type: none -'876310': +"876310": installDir: BIG POGO MAN launch: - config: @@ -399647,9 +393915,9 @@ type: none - config: oslist: macos - executable: BIGPOGOMAN.app\\Contents\\MacOS\\BIGPOGOMAN + executable: "BIGPOGOMAN.app\\\\Contents\\\\MacOS\\\\BIGPOGOMAN" type: none -'876320': +"876320": installDir: Hyperspace Delivery Service launch: - config: @@ -399661,42 +393929,42 @@ executable: HyperspaceDeliveryService.app type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: HyperspaceDeliveryService.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: HyperspaceDeliveryService.x86_64 type: none -'876330': +"876330": installDir: Revelation Online launch: - - arguments: '-fromsteam' + - arguments: "-fromsteam" executable: RevelationMycomSteamLoader.exe type: none -'876340': +"876340": installDir: VR Slots launch: - config: oslist: windows - executable: .\\bin\\BelkaVR Slots.exe + executable: ".\\\\bin\\\\BelkaVR Slots.exe" type: default - arguments: use-vr 1 config: oslist: windows - executable: .\\bin\\BelkaVR Slots.exe + executable: ".\\\\bin\\\\BelkaVR Slots.exe" type: vr -'876380': +"876380": installDir: Underwater hunting launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: nw.exe type: default -'876410': +"876410": installDir: Greenspawn Restaurant launch: - config: @@ -399707,33 +393975,30 @@ oslist: linux executable: GreenspawnRestaurant.x86 type: default -'876460': +"876460": installDir: CityBattle Virtual Earth (EU) launch: - - arguments: >- - -idc idc override-auth-server=https://api.live.cb.idcgames.com - override-warguard-server=https://api.live.cb.idcgames.com - override-global-server=https://api.live.cb.idcgames.com -wolopay + - arguments: "-idc idc override-auth-server=https://api.live.cb.idcgames.com override-warguard-server=https://api.live.cb.idcgames.com override-global-server=https://api.live.cb.idcgames.com -wolopay" config: - osarch: '64' + osarch: "64" oslist: windows executable: WarguardGameLauncher.exe type: default -'876470': +"876470": installDir: Tentlan launch: - config: oslist: windows executable: Tentlan.exe type: none -'876480': +"876480": installDir: Vosaria launch: - config: oslist: windows executable: Vosaria.exe type: default -'876500': +"876500": installDir: HyperDot launch: - config: @@ -399748,20 +394013,20 @@ oslist: linux executable: HyperDot.x86_64 type: default -'876540': +"876540": installDir: Adventure Hero launch: - executable: AdventureHero.exe type: none -'876580': +"876580": installDir: CanYouSurvive launch: - config: oslist: windows executable: RunRunRun.exe type: default -'876600': {} -'876650': +"876600": {} +"876650": installDir: Aground launch: - config: @@ -399776,42 +394041,42 @@ oslist: macos executable: Aground type: default -'876780': +"876780": installDir: Kronorite launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Kronorite.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Kronorite.sh type: default -'876810': +"876810": installDir: One Jump Bomb launch: - config: oslist: windows executable: nw.exe type: none -'876840': - installDir: '999' +"876840": + installDir: "999" launch: - config: oslist: windows executable: 999.exe type: default -'876850': +"876850": installDir: Princess Lili launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows executable: PrincessLili.exe type: default -'876870': +"876870": installDir: Road Patrol Truck launch: - config: @@ -399822,48 +394087,48 @@ oslist: macos executable: Road Patrol Truck.app/Contents/MacOS/Road Patrol Truck type: none -'876880': +"876880": installDir: Caretaker launch: - config: oslist: windows executable: WindowsNoEditor/Caretaker.exe type: none -'876890': +"876890": installDir: Draw It! 2 launch: - config: oslist: windows executable: Di!2.exe type: default -'876900': +"876900": installDir: Climb launch: - config: oslist: windows executable: Climb.exe type: default -'876910': +"876910": installDir: Aquarium Simulator launch: - config: oslist: windows executable: AquariumSimulator.exe type: default -'876930': +"876930": installDir: FancySkiing2 Online launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: FancySkiing2SteamVR/FancySkiing2 Online.exe type: vr - config: - osarch: '64' + osarch: "64" oslist: windows executable: FancySkiing2Oculus/Skiing2.0.exe type: othervr -'876960': +"876960": installDir: Round Ways launch: - config: @@ -399874,37 +394139,37 @@ oslist: macos executable: Round Ways.app type: default -'877010': +"877010": installDir: Beyond launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Beyond.exe type: default -'877020': {} -'877040': +"877020": {} +"877040": installDir: Samurai Wish launch: - config: oslist: windows executable: Samurai Wish.exe type: default -'877060': +"877060": installDir: MultiBall launch: - config: oslist: windows executable: TheBall.exe type: default -'877070': +"877070": installDir: Ticktock launch: - config: oslist: windows executable: ticktock.exe type: default -'877080': +"877080": installDir: Seeds of Resilience launch: - config: @@ -399913,7 +394178,7 @@ type: default - config: oslist: macos - executable: Seeds of Resilience.app\\Contents\\MacOS\\Seeds of Resilience + executable: "Seeds of Resilience.app\\\\Contents\\\\MacOS\\\\Seeds of Resilience" type: default - config: oslist: linux @@ -399921,7 +394186,7 @@ type: default nameLocalized: schinese: 复苏之种 -'877150': +"877150": installDir: Gravity Wars launch: - config: @@ -399939,44 +394204,44 @@ description: Launch executable: Gravity Wars.x86_64 type: default -'877200': +"877200": installDir: Zero Caliber VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ZeroCaliber.exe type: vr -'877230': +"877230": installDir: Welcome to the Pool Hall launch: - config: oslist: windows executable: BilliardGame.exe type: none -'877240': {} -'877250': +"877240": {} +"877250": installDir: Devochka Quest launch: - executable: DevochkaQuest.exe type: default - executable: winsetup.exe type: config -'877260': +"877260": installDir: Retro Snake launch: - config: oslist: windows executable: snake.exe type: none -'877270': +"877270": installDir: The Pirates of Sector 7 launch: - config: oslist: windows executable: Sector7.exe type: none -'877300': +"877300": installDir: Liquid Sunshine launch: - config: @@ -399985,51 +394250,51 @@ type: default - config: oslist: macos - executable: Liquid Sunshine.app\\Contents\\MacOS\\Liquid Sunshine + executable: "Liquid Sunshine.app\\\\Contents\\\\MacOS\\\\Liquid Sunshine" type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Liquid Sunshine.x86_64 type: default -'877310': +"877310": installDir: Sumerian Blood Gilgamesh against the Gods launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SumerianBlood.exe type: none -'877330': +"877330": installDir: Castle Kong launch: - config: oslist: windows executable: Castle.exe type: default -'877340': +"877340": installDir: ATMOTECH EPISODE PRAELUDIUM launch: - config: betakey: default oslist: windows - executable: bin\\win_x86\\ATMOTECH_Game.exe + executable: "bin\\\\win_x86\\\\ATMOTECH_Game.exe" type: default -'877360': +"877360": installDir: 18+ launch: - executable: 18+.exe type: none -'877370': {} -'877380': +"877370": {} +"877380": installDir: Factory Manager launch: - config: oslist: windows executable: FactoryManager.exe type: default -'877390': {} -'877400': +"877390": {} +"877400": installDir: Dust and Echos Vengeance launch: - config: @@ -400042,12 +394307,12 @@ description: Play with CoreGL executable: CoreGL.exe type: option2 -'877440': +"877440": installDir: Quench launch: - executable: Quench.exe type: default -'877460': +"877460": installDir: WTC 0 launch: - config: @@ -400058,18 +394323,18 @@ oslist: linux executable: WTC0.sh type: default -'877470': +"877470": installDir: Rage of the Pumpkins launch: - config: oslist: windows executable: RAGE OF THE PUMPKINS.exe type: default -'877480': +"877480": installDir: Ammo Pigs Armed and Delicious launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Windows10/Ammo Pigs.exe type: none @@ -400077,36 +394342,36 @@ oslist: macos executable: macOS/AmmoPigsAD.app type: none -'877510': +"877510": installDir: The Station VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TheStationVR.exe type: vr -'877530': {} -'877550': +"877530": {} +"877550": installDir: Digital Jigsaw Puzzle launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: DigitalJigsawPuzzleSteam.exe type: default -'877590': +"877590": installDir: choutenalapha launch: - config: oslist: windows executable: 幻想郷ローリングフォース.exe type: default -'877680': +"877680": installDir: Hardcore Weapon Challenge launch: - executable: HardcoreWeaponChallenge.exe type: none -'877730': +"877730": installDir: Deadly Silence launch: - config: @@ -400115,26 +394380,26 @@ type: default - config: oslist: macos - executable: Deadly Silence.app\\Contents\\MacOS\\Deadly Silence + executable: "Deadly Silence.app\\\\Contents\\\\MacOS\\\\Deadly Silence" type: default - config: oslist: linux executable: Deadly Silence.x86_64 type: default -'877750': +"877750": installDir: Coinon launch: - executable: coinon.exe type: default -'877760': {} -'877780': +"877760": {} +"877780": installDir: Puzzles for smart Cats launch: - config: oslist: windows executable: Puzzles for smart - Cats.exe type: config -'877800': +"877800": installDir: Swimsanity! launch: - config: @@ -400142,7 +394407,7 @@ description: Swimsanity! executable: Swimsanity.exe type: default -'877810': +"877810": installDir: Anodyne 2 launch: - config: @@ -400154,23 +394419,23 @@ executable: Anodyne2.app/Contents/MacOS/Anodyne2 type: default - config: - osarch: '32' + osarch: "32" oslist: linux description: 32 bit executable: Anodyne2.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: 64 bit executable: Anodyne2.x86_64 type: default nameLocalized: - japanese: 'Anodyne 2 (アノダイン2: ダストへの帰還)' + japanese: "Anodyne 2 (アノダイン2: ダストへの帰還)" schinese: 镇痛2:归于尘土 tchinese: 鎮痛2:歸於塵埃 -'877820': {} -'877840': +"877820": {} +"877840": installDir: Pixel Hentai Mosaic launch: - config: @@ -400178,30 +394443,30 @@ executable: nw.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: nw type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: nw type: default -'877910': +"877910": installDir: Time Drifter launch: - config: oslist: windows executable: TimeDrifter-1.8.exe type: default -'877940': +"877940": installDir: Gekraxel launch: - config: oslist: windows executable: gekraxel.exe type: default -'877960': +"877960": installDir: The Legend of Monster Mountain launch: - config: @@ -400212,34 +394477,33 @@ oslist: windows executable: Game.exe type: default -'877980': +"877980": installDir: Hunting fields of Jackals launch: - config: betakey: beta version - osarch: '64' + osarch: "64" oslist: windows executable: Jackals.exe type: default -'8780': - unknown: true -'878020': +"8780": {} +"878020": installDir: itsyoubreakup launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ItsYou.exe type: default - config: oslist: macos - executable: ItsYou.app\\Contents\\MacOS\\ItsYou + executable: "ItsYou.app\\\\Contents\\\\MacOS\\\\ItsYou" type: default - config: oslist: linux executable: ItsYou.x86_64 type: default -'878030': +"878030": installDir: Trains And Things launch: - config: @@ -400250,42 +394514,42 @@ oslist: windows executable: TrainsAndThings_Windows.exe type: default -'878050': {} -'878080': +"878050": {} +"878080": installDir: Board Battlefield launch: - config: oslist: windows executable: boardBattlefield_steam.exe type: default -'878090': - installDir: The Dragons' Twilight 2 +"878090": + installDir: "The Dragons' Twilight 2" launch: - config: oslist: windows executable: Game.exe type: none -'878100': +"878100": installDir: One Day for Revenge launch: - config: oslist: windows executable: One Day for Revenge.exe type: default -'878110': +"878110": installDir: Fuel Renegades launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Racing.exe type: default -'878120': +"878120": installDir: UniteStar launch: - executable: UniteStar.exe type: none -'878140': +"878140": installDir: Witch of the Woods launch: - config: @@ -400296,71 +394560,71 @@ oslist: macos executable: Witch of the Woods.app type: default -'878150': +"878150": installDir: Core Awaken ~The Yuka~ launch: - config: oslist: windows executable: Launcher.exe type: default -'878160': - installDir: Granny's Grantastic Granventure +"878160": + installDir: "Granny's Grantastic Granventure" launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: GrannysGranventure.exe type: vr -'878180': +"878180": installDir: Hyper Simon X launch: - executable: Hyper Simon X.exe type: none -'878220': {} -'878240': +"878220": {} +"878240": installDir: Adva-lines launch: - config: oslist: windows executable: Adva-lines.exe type: default -'878250': +"878250": installDir: Super Jigsaw Puzzle Monuments launch: - config: oslist: windows executable: Super Jigsaw Puzzle Monuments.exe type: default -'878270': +"878270": installDir: Trivia Vault Music Trivia launch: - config: oslist: windows executable: Trivia Vault Music Trivia.exe type: default -'878280': +"878280": installDir: DistortedIllusions launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: DistortedIllusions.exe type: default -'878290': +"878290": installDir: Double Switch - 25th Anniversary Edition launch: - config: oslist: windows executable: DS25.exe type: none -'878300': +"878300": installDir: RollTheEarth launch: - config: oslist: windows executable: RolltheEarth.exe type: default -'878310': +"878310": installDir: Dishwasher launch: - config: @@ -400375,46 +394639,46 @@ oslist: linux executable: Dishwasher.x86_64 type: default -'878320': +"878320": installDir: SIMULACRA Pipe Dreams launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: pipedreams.exe type: default -'878330': +"878330": installDir: WhipWhip launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: windows_content\\whipwhip64.exe + executable: "windows_content\\\\whipwhip64.exe" type: default - config: - osarch: '32' + osarch: "32" oslist: windows - executable: windows_content\\whipwhip.exe + executable: "windows_content\\\\whipwhip.exe" type: default - config: oslist: macos executable: macos_content/whipwhip.app type: default -'878340': +"878340": installDir: WISGR launch: - config: oslist: windows executable: WISGR.exe type: default -'878350': +"878350": installDir: TAVERN GUARDIANS BANQUET launch: - config: oslist: windows executable: TAVERN_GUARDIANS_BANQUET.exe type: none -'878380': +"878380": installDir: Touhou Big Big Battle launch: - config: @@ -400431,7 +394695,7 @@ koreana: 동방대전쟁 ~ Touhou Big Big Battle schinese: 东方大战争 ~ Touhou Big Big Battle tchinese: 東方大戰爭 ~ Touhou Big Big Battle -'878400': +"878400": installDir: Muay Thai Fighting launch: - config: @@ -400442,7 +394706,7 @@ oslist: macos executable: Muay Thai Fighting.app/Contents/MacOS/Muay Thai Fighting type: none -'878410': +"878410": installDir: Unbroken Warrior launch: - config: @@ -400453,41 +394717,41 @@ oslist: macos executable: Unbroken Warrior.app/Contents/MacOS/Unbroken Warrior type: none -'878420': +"878420": installDir: Woodpunk launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Woodpunk.exe type: none - config: oslist: macos - executable: Woodpunk.app\\Contents\\MacOS\\Woodpunk + executable: "Woodpunk.app\\\\Contents\\\\MacOS\\\\Woodpunk" type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Woodpunk.x86_64 type: none -'878440': +"878440": installDir: Fantasy Ball launch: - config: oslist: windows executable: Fantasy Ball.exe type: none -'878470': +"878470": installDir: 70 Seconds Survival launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Race4cars.exe type: default -'878480': {} -'878490': {} -'878500': +"878480": {} +"878490": {} +"878500": installDir: Captain The Runner launch: - config: @@ -400498,7 +394762,7 @@ oslist: linux executable: CaptainTheRunner type: default -'878510': +"878510": installDir: Sort the Cube launch: - config: @@ -400509,7 +394773,7 @@ oslist: linux executable: sortthecube type: default -'878520': +"878520": installDir: sallys-salon-kiss-and-make-up launch: - config: @@ -400518,9 +394782,9 @@ type: default - config: oslist: macos - executable: Sally's Salon - Kiss & Make-Up.app\\Contents\\MacOS\\OSX_Steam + executable: "Sally's Salon - Kiss & Make-Up.app\\\\Contents\\\\MacOS\\\\OSX_Steam" type: default -'878540': +"878540": installDir: Coach Bus Simulator Parking launch: - arguments: windowed @@ -400528,7 +394792,7 @@ oslist: windows executable: Coach Bus Simulator Parking.exe type: default -'878570': +"878570": installDir: Cryptochain launch: - config: @@ -400541,9 +394805,9 @@ type: none - config: oslist: macos - executable: Cryptochain.app\\Contents\\MacOS\\Cryptochain + executable: "Cryptochain.app\\\\Contents\\\\MacOS\\\\Cryptochain" type: none -'878580': +"878580": installDir: Garage launch: - config: @@ -400553,28 +394817,28 @@ type: none - config: oslist: macos - executable: garage.app\\Contents\\MacOS\\garage + executable: "garage.app\\\\Contents\\\\MacOS\\\\garage" type: default -'878590': +"878590": installDir: TapRPG - The Second One launch: - executable: TapRPG2.exe type: default -'878610': - installDir: Don't Feed The Slimes! +"878610": + installDir: "Don't Feed The Slimes!" launch: - config: oslist: windows - executable: Don't Feed The Slimes!.exe + executable: "Don't Feed The Slimes!.exe" type: default -'878620': +"878620": installDir: Neotrie VR launch: - config: oslist: windows executable: Neotrie VR.exe type: vr -'878640': +"878640": installDir: LO-OP launch: - config: @@ -400585,32 +394849,32 @@ oslist: linux executable: loop.x86 type: none -'878660': +"878660": installDir: Build buildings launch: - executable: BuildBuildings.exe type: none -'878670': +"878670": installDir: ShenmueIII launch: - executable: Shenmue3.exe type: none -'878680': +"878680": installDir: The 50 States Quiz launch: - config: oslist: windows executable: The 50 States Quiz.exe type: default -'878690': {} -'878710': +"878690": {} +"878710": installDir: Draft Day Sports College Football 2018 launch: - config: oslist: windows executable: DDSCF18.exe type: default -'878750': +"878750": installDir: HentaiGirl launch: - config: @@ -400621,46 +394885,46 @@ oslist: macos executable: HentaiGirl.app type: default -'878770': +"878770": installDir: SpearMaster launch: - config: oslist: windows executable: SpearMaster.exe type: default -'878780': +"878780": installDir: Cute Cats PuZZles launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: HentaiPuZZles.exe type: default -'878810': +"878810": installDir: Ashes of the Ark launch: - config: oslist: windows executable: AshesOfTheArk.exe type: vr -'878820': +"878820": installDir: The Castle Disaster 2 launch: - executable: CasDis2.exe type: none -'878860': {} -'878910': +"878860": {} +"878910": installDir: Sarah in the Sky launch: - config: oslist: windows executable: Sarah_in_the_Sky.exe type: default -'878940': +"878940": installDir: Collective Card Game launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Collective.exe type: default @@ -400668,17 +394932,17 @@ oslist: macos executable: Collective.app type: default -'878950': +"878950": installDir: _dive launch: - executable: _dive.exe type: default -'878970': +"878970": installDir: The Block Box launch: - executable: TheBlockBox.exe type: none -'878980': +"878980": installDir: Welcome To The Dreamscape launch: - config: @@ -400687,10 +394951,10 @@ type: default - config: oslist: macos - executable: Welcome To The Dreamscape.app\\Contents\\MacOS\\Welcome To The Dreamscape + executable: "Welcome To The Dreamscape.app\\\\Contents\\\\MacOS\\\\Welcome To The Dreamscape" type: default -'878990': {} -'8790': +"878990": {} +"8790": installDir: GTR 2 - FIA GT Racing Game launch: - arguments: GTR2.exe @@ -400702,124 +394966,92 @@ - arguments: GTR2Dedicated.exe description: Dedicated server executable: sudo.exe -'879000': +"879000": installDir: Comanche launch: - - arguments: >- - -gamesparksClientApiKey=n386480dCtgl -gamesparksClientApiSecret=XtjUBuVKM0WWD9CYf6LkBwcSJntjU4TR - -GameAnalyticsKey=e2a5d2508a87f7822bbb99da61c08e4f -GameAnalyticsSecret=d537252097760d501bb113c562f289c5a1408464 + - arguments: "-gamesparksClientApiKey=n386480dCtgl -gamesparksClientApiSecret=XtjUBuVKM0WWD9CYf6LkBwcSJntjU4TR -GameAnalyticsKey=e2a5d2508a87f7822bbb99da61c08e4f -GameAnalyticsSecret=d537252097760d501bb113c562f289c5a1408464" config: betakey: development - osarch: '64' + osarch: "64" oslist: windows description: DEVELOPMENT ENV - description_loc: - english: DEVELOPMENT ENV executable: ComancheClient.exe type: option1 - config: betakey: daily - osarch: '64' + osarch: "64" oslist: windows description: DAILY ENV - description_loc: - english: DAILY ENV executable: ComancheClient.exe type: option1 - - arguments: >- - -gamesparksClientApiKey=v386478o3kEi -gamesparksClientApiSecret=dXsLPs4qBbS4lKqcy5w1KL1bw9zNKzog - -GameAnalyticsKey=e2a5d2508a87f7822bbb99da61c08e4f -GameAnalyticsSecret=d537252097760d501bb113c562f289c5a1408464 + - arguments: "-gamesparksClientApiKey=v386478o3kEi -gamesparksClientApiSecret=dXsLPs4qBbS4lKqcy5w1KL1bw9zNKzog -GameAnalyticsKey=e2a5d2508a87f7822bbb99da61c08e4f -GameAnalyticsSecret=d537252097760d501bb113c562f289c5a1408464" config: betakey: stable - osarch: '64' + osarch: "64" oslist: windows description: STABLE ENV - description_loc: - english: STABLE ENV executable: ComancheClient.exe type: option1 - - arguments: >- - -gamesparksClientApiKey=X386481E0Ev5 -gamesparksClientApiSecret=iPjR1ixSkn6BEqSFeTC4GUuM9mh93pjh - -GameAnalyticsKey=e2a5d2508a87f7822bbb99da61c08e4f -GameAnalyticsSecret=d537252097760d501bb113c562f289c5a1408464 + - arguments: "-gamesparksClientApiKey=X386481E0Ev5 -gamesparksClientApiSecret=iPjR1ixSkn6BEqSFeTC4GUuM9mh93pjh -GameAnalyticsKey=e2a5d2508a87f7822bbb99da61c08e4f -GameAnalyticsSecret=d537252097760d501bb113c562f289c5a1408464" config: betakey: milestone - osarch: '64' + osarch: "64" oslist: windows description: MILESTONE ENV - description_loc: - english: MILESTONE ENV executable: ComancheClient.exe type: option1 - - arguments: >- - -gamesparksClientApiKey=D378608Cn7RC -gamesparksClientApiSecret=VW3lRy2KuyYm0YACPz9PMgPPKyeUayqy -gamesparksLive - -GameAnalyticsKey=bbea95e90e3230d6f171d131bb6162f2 -GameAnalyticsSecret=68be5d94a641f255c0ed0146295a30b48be7a8aa + - arguments: "-gamesparksClientApiKey=D378608Cn7RC -gamesparksClientApiSecret=VW3lRy2KuyYm0YACPz9PMgPPKyeUayqy -gamesparksLive -GameAnalyticsKey=bbea95e90e3230d6f171d131bb6162f2 -GameAnalyticsSecret=68be5d94a641f255c0ed0146295a30b48be7a8aa" config: betakey: staging - osarch: '64' + osarch: "64" oslist: windows description: STAGING ENV (staging) - description_loc: - english: STAGING ENV (staging) executable: ComancheClient.exe type: option1 - - arguments: >- - -gamesparksClientApiKey=v386478o3kEi -gamesparksClientApiSecret=dXsLPs4qBbS4lKqcy5w1KL1bw9zNKzog - -GameAnalyticsKey=e2a5d2508a87f7822bbb99da61c08e4f -GameAnalyticsSecret=d537252097760d501bb113c562f289c5a1408464 + - arguments: "-gamesparksClientApiKey=v386478o3kEi -gamesparksClientApiSecret=dXsLPs4qBbS4lKqcy5w1KL1bw9zNKzog -GameAnalyticsKey=e2a5d2508a87f7822bbb99da61c08e4f -GameAnalyticsSecret=d537252097760d501bb113c562f289c5a1408464" config: betakey: testgate - osarch: '64' + osarch: "64" oslist: windows description: TESTGATE - description_loc: - english: TESTGATE executable: ComancheClient.exe type: option1 - - arguments: >- - -gamesparksClientApiKey=D378608Cn7RC -gamesparksClientApiSecret=VW3lRy2KuyYm0YACPz9PMgPPKyeUayqy -gamesparksLive - -GameAnalyticsKey=df43f895f87df1952f3e85464ea1df46 -GameAnalyticsSecret=97bfbafa979fb60027dc33cc839ee660e01000ce + - arguments: "-gamesparksClientApiKey=D378608Cn7RC -gamesparksClientApiSecret=VW3lRy2KuyYm0YACPz9PMgPPKyeUayqy -gamesparksLive -GameAnalyticsKey=df43f895f87df1952f3e85464ea1df46 -GameAnalyticsSecret=97bfbafa979fb60027dc33cc839ee660e01000ce" config: - osarch: '64' + osarch: "64" oslist: windows executable: ComancheClient.exe type: option1 - - arguments: >- - -gamesparksClientApiKey=v386478o3kEi -gamesparksClientApiSecret=dXsLPs4qBbS4lKqcy5w1KL1bw9zNKzog - -GameAnalyticsKey=e2a5d2508a87f7822bbb99da61c08e4f -GameAnalyticsSecret=d537252097760d501bb113c562f289c5a1408464 + - arguments: "-gamesparksClientApiKey=v386478o3kEi -gamesparksClientApiSecret=dXsLPs4qBbS4lKqcy5w1KL1bw9zNKzog -GameAnalyticsKey=e2a5d2508a87f7822bbb99da61c08e4f -GameAnalyticsSecret=d537252097760d501bb113c562f289c5a1408464" config: betakey: press-review - osarch: '64' + osarch: "64" oslist: windows description: PRESS-REVIEW - description_loc: - english: PRESS-REVIEW executable: ComancheClient.exe type: option1 - - arguments: >- - -gamesparksClientApiKey=X386481E0Ev5 -gamesparksClientApiSecret=iPjR1ixSkn6BEqSFeTC4GUuM9mh93pjh - -GameAnalyticsKey=e2a5d2508a87f7822bbb99da61c08e4f -GameAnalyticsSecret=d537252097760d501bb113c562f289c5a1408464 + - arguments: "-gamesparksClientApiKey=X386481E0Ev5 -gamesparksClientApiSecret=iPjR1ixSkn6BEqSFeTC4GUuM9mh93pjh -GameAnalyticsKey=e2a5d2508a87f7822bbb99da61c08e4f -GameAnalyticsSecret=d537252097760d501bb113c562f289c5a1408464" config: betakey: stage2 - osarch: '64' + osarch: "64" description: Staging - description_loc: - english: Staging executable: ComancheClient.exe type: option1 -'879030': +"879030": installDir: Egg Teacher VR launch: - config: oslist: windows executable: Egg Teacher VR.exe type: vr -'879050': +"879050": installDir: Drakkar Crew launch: - config: oslist: windows executable: DrakkarCrew.exe type: default -'879060': +"879060": installDir: BORIS launch: - config: @@ -400830,120 +395062,120 @@ oslist: macos executable: Mac.app type: none -'879080': {} -'879090': - installDir: Meower's Quest Jasper's Tale +"879080": {} +"879090": + installDir: "Meower's Quest Jasper's Tale" launch: - config: oslist: windows executable: Game.exe type: default -'879100': +"879100": installDir: STARSHIP AVENGER Operation Take Back Earth launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: StarshipAvenger.exe type: default -'879110': +"879110": installDir: Warcaby launch: - config: oslist: windows executable: Project2.exe type: default -'879120': +"879120": installDir: ClusterDisaster launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ClusterDisaster.exe type: default -'879140': +"879140": installDir: ch5vr launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ch5vr.exe type: vr nameLocalized: - brazilian: 'Space Channel 5 VR: Kinda Funky News Flash!' + brazilian: "Space Channel 5 VR: Kinda Funky News Flash!" english: Space Channel 5 VR Kinda Funky News Flash! - french: "Space Channel\_5 VR: Kinda Funky News Flash!" - german: 'Space Channel 5 VR: Kinda Funky News Flash!' - italian: 'Space Channel 5 VR: Kinda Funky News Flash!' + french: "Space Channel 5 VR: Kinda Funky News Flash!" + german: "Space Channel 5 VR: Kinda Funky News Flash!" + italian: "Space Channel 5 VR: Kinda Funky News Flash!" schinese: Space Channel 5 VR Kinda Funky News Flash! - spanish: 'Space Channel 5 VR: Kinda Funky News Flash!' + spanish: "Space Channel 5 VR: Kinda Funky News Flash!" tchinese: Space Channel 5 VR Kinda Funky News Flash! -'879160': +"879160": installDir: Battlerite Royale launch: - - arguments: '-logfile BattleriteRoyale_Data\\output_log.txt' + - arguments: "-logfile BattleriteRoyale_Data\\\\output_log.txt" config: - osarch: '64' + osarch: "64" oslist: windows description: DirectX 11 executable: BattleriteRoyale.exe type: option1 -'879200': +"879200": installDir: KIN launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: VR with 2D fallback executable: KIN.exe type: vr - - arguments: '-vrmode oculus' + - arguments: "-vrmode oculus" config: - osarch: '64' + osarch: "64" oslist: windows description: VR with 2D fallback executable: KIN.exe type: othervr - - arguments: '-vrmode none' + - arguments: "-vrmode none" config: - osarch: '64' + osarch: "64" oslist: windows description: Forced 2D Mode executable: KIN.exe type: none -'879210': {} -'879220': {} -'879250': +"879210": {} +"879220": {} +"879250": installDir: Dot to Dot Puzzles launch: - config: oslist: windows executable: dotsadult.exe type: default -'879260': +"879260": installDir: Windshift launch: - config: oslist: windows executable: Windshift.exe type: none -'879270': +"879270": installDir: TheZombieKillingCyborg launch: - config: oslist: windows - executable: TheZombieKillingCyborg\\The Zombie Killing Cyborg.exe + executable: "TheZombieKillingCyborg\\\\The Zombie Killing Cyborg.exe" type: default -'879280': +"879280": installDir: Supesu launch: - - executable: Supesu\\Binaries\\Win64\\Supesu-Win64-Shipping.exe + - executable: "Supesu\\\\Binaries\\\\Win64\\\\Supesu-Win64-Shipping.exe" type: none -'879290': +"879290": installDir: MultiTaskMaster launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Launch Windows Build executable: MultiTaskMaster.exe @@ -400954,24 +395186,24 @@ executable: MultiTaskMaster.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch Linux Build executable: MultiTaskMaster.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: MultiTaskMaster64.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: MultiTaskMaster64.x86_64 type: default -'879300': {} -'879310': - installDir: '''90s Football Stars' +"879300": {} +"879310": + installDir: "'90s Football Stars" launch: - config: oslist: windows @@ -400981,7 +395213,7 @@ oslist: macos executable: 90s Football Stars.app type: default -'879320': +"879320": installDir: Street Karate launch: - config: @@ -400991,19 +395223,19 @@ type: option1 - config: oslist: windows - ownsdlc: '879330' + ownsdlc: "879330" description: Street Karate 2 executable: StreetKarate2.exe type: option2 -'879390': +"879390": installDir: PowerUpElevation launch: - config: oslist: windows executable: PowerUp_Elevation.exe type: default -'879410': - installDir: Let's Go There And Wander Nowhere +"879410": + installDir: "Let's Go There And Wander Nowhere" launch: - config: oslist: windows @@ -401017,21 +395249,21 @@ oslist: linux executable: LGTAWN.x86 type: default -'879420': +"879420": installDir: Agony UNRATED launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Agony.exe type: default -'879430': +"879430": installDir: Switch - Black & White launch: - executable: Switch.exe type: none -'879440': {} -'879450': +"879440": {} +"879450": installDir: The Chambers launch: - config: @@ -401042,7 +395274,7 @@ oslist: macos executable: The Chambers.app/Contents/MacOS/Chambers type: none -'879470': +"879470": installDir: Idle Hunter launch: - config: @@ -401053,7 +395285,7 @@ oslist: linux executable: Idle Hunter.x86 type: default -'879480': +"879480": installDir: The Journey to Fairytales launch: - config: @@ -401064,9 +395296,9 @@ - config: oslist: macos description: Launch - executable: The Journey to Fairytales.app\\Contents\\MacOS\\The Journey to Fairytales + executable: "The Journey to Fairytales.app\\\\Contents\\\\MacOS\\\\The Journey to Fairytales" type: default -'879510': +"879510": installDir: Lucy Got Problems launch: - config: @@ -401081,81 +395313,81 @@ oslist: linux executable: LGP.sh type: default -'879520': +"879520": installDir: Ruby and Majesty Treasure Team launch: - config: oslist: windows executable: Ruby and Majesty Treasure Team.exe type: default -'879530': +"879530": installDir: Thunderbowl launch: - config: oslist: windows executable: ThunderBowl.exe type: default -'879580': +"879580": installDir: Hyperball launch: - config: oslist: windows executable: Hyperball.exe type: vr -'879600': +"879600": installDir: Ones and Zeroes launch: - config: oslist: windows executable: Ones and Zeroes.exe type: none -'879610': +"879610": installDir: GirlsVR_0.1.0 launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: GirlsVR_0.1.0.exe type: vr -'879620': +"879620": installDir: Bronepoezd launch: - config: oslist: windows executable: nw.exe type: default -'879650': +"879650": installDir: Stick Arena launch: - config: oslist: windows executable: StickArena.exe type: default -'879670': +"879670": installDir: Battle Simulator launch: - executable: Battle Simulator.exe type: none -'879740': +"879740": installDir: Epic Skater 2 launch: - executable: Epic Skater 2.exe type: none -'879780': {} -'879850': +"879780": {} +"879850": installDir: Box_The_Game launch: - config: oslist: windows executable: Box.exe type: default -'879920': +"879920": installDir: Trakker launch: - executable: beta.exe type: vr -'880130': +"880130": installDir: Lawless Lands launch: - config: @@ -401164,47 +395396,47 @@ executable: Game.exe type: default - config: - ownsdlc: '1408290' + ownsdlc: "1408290" description: Unrest DLC - executable: Unrest\\Game.exe + executable: "Unrest\\\\Game.exe" type: option1 -'880150': {} -'880180': +"880150": {} +"880180": installDir: Long Road launch: - config: oslist: windows executable: Long Road.exe type: none -'880200': +"880200": installDir: J15FighterJetVR launch: - config: oslist: windows executable: J15FighterJetVR.exe type: vr -'880210': +"880210": installDir: The Red Moon launch: - config: oslist: windows executable: Game.exe type: default -'880260': {} -'880270': +"880260": {} +"880270": installDir: GeoGebra Mixed Reality launch: - arguments: ~windowed config: - osarch: '64' + osarch: "64" oslist: windows executable: GeoGebraMR.exe type: vr -'880300': +"880300": installDir: Blood will be Spilled launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: BloodWillBeSpilled.exe type: none @@ -401212,11 +395444,11 @@ oslist: macos executable: BloodWillBeSpilled.app type: none -'880320': +"880320": installDir: Magic_MechSuit_Akane launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: akane.exe type: default @@ -401225,32 +395457,32 @@ description: 旧ブランチ用 executable: akane.exe type: none -'880330': +"880330": installDir: LastByteStanding launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: LastByteStanding.exe type: vr - config: - ownsdlc: '911970' + ownsdlc: "911970" executable: LAST BYTE STANDING Artbook.pdf type: none -'880340': +"880340": installDir: Trooper 2 - Alien Justice launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Alien_Justice.exe type: default -'880370': +"880370": installDir: Jetpack Dog launch: - executable: Jetpack.exe type: default -'880380': +"880380": installDir: Franchise Hockey Manager 5 launch: - config: @@ -401263,12 +395495,12 @@ description: Launch FHM 5 (macOS) executable: Franchise Hockey Manager 5.app type: default -'880400': +"880400": installDir: Lingering Fragrance launch: - executable: LF.exe type: none -'880470': +"880470": installDir: Pro Basketball Manager 2019 launch: - config: @@ -401279,40 +395511,40 @@ oslist: macos executable: PBM2019.app/Contents/MacOS/PBM2019 type: default -'880490': +"880490": installDir: Happy Stealing with Kirisame Marisa launch: - config: oslist: windows executable: StealingWIthMarisa.exe type: default -'880510': +"880510": installDir: Girl and Goblin launch: - config: oslist: windows executable: Girl and Goblin.exe type: default -'880550': +"880550": installDir: How to be Best Russian Publisher launch: - executable: BRGD.exe type: default -'880560': {} -'880570': +"880560": {} +"880570": installDir: Drugs to Bee launch: - executable: Drugs.exe type: default -'880580': +"880580": installDir: yorgio launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: yorgio.exe type: default -'880590': +"880590": installDir: Slabs launch: - config: @@ -401326,32 +395558,32 @@ description: Launch executable: Alias.exe type: default -'880600': {} -'880610': +"880600": {} +"880610": installDir: Lets Beats launch: - config: oslist: windows executable: LetsBeats.exe type: none -'880620': +"880620": installDir: DFJW launch: - config: oslist: windows executable: DFJW01.exe type: default -'880700': {} -'880720': +"880700": {} +"880720": installDir: Entangled launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Entangled_win64.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: Entangled_win32.exe type: default @@ -401360,30 +395592,30 @@ executable: Entangled_osx64.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Entangled_linux32.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Entangled_linux64.exe type: default -'880730': +"880730": installDir: Rocket Assault launch: - config: oslist: windows executable: hoverCar.exe type: default -'880750': +"880750": installDir: Astra Exodus launch: - config: oslist: windows executable: Launcher.exe type: default -'880770': +"880770": installDir: Cybrus launch: - config: @@ -401391,7 +395623,7 @@ executable: Cybrus.exe type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: Cybrus.x86 type: none @@ -401400,40 +395632,40 @@ executable: Cybrus.app type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: Cybrus.x86_64 type: none -'880780': +"880780": installDir: Vatnik Simulator - A Russian Patriot Game launch: - config: oslist: windows executable: VSAPG228.exe type: default -'880800': +"880800": installDir: AKAI NOROI launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: AKAI NOROI.exe type: default -'880830': +"880830": installDir: Cavesweeper launch: - config: oslist: windows executable: cavesweeper.exe type: none -'880840': +"880840": installDir: Sniper Fodder launch: - config: oslist: windows executable: sniperfodder.exe type: default -'880850': +"880850": installDir: WarRock Global launch: - arguments: 2 0 @@ -401441,29 +395673,29 @@ oslist: windows executable: WRLauncher.exe type: default -'880860': +"880860": installDir: JuanvJuan launch: - config: oslist: windows executable: JuanvJuan.exe type: default -'880890': +"880890": installDir: Dark Visit launch: - config: oslist: windows executable: DarkVisit.exe type: default -'880910': {} -'880940': +"880910": {} +"880940": installDir: Pummel Party launch: - config: oslist: windows executable: PummelParty.exe type: none -'880950': +"880950": installDir: PureStation launch: - config: @@ -401471,21 +395703,21 @@ executable: PureStation.exe type: default nameLocalized: - english: 'Maitetsu:Pure Station' + english: "Maitetsu:Pure Station" japanese: まいてつ -Pure Station- schinese: 爱上火车-Pure Station- tchinese: 愛上火車-Pure Station -'880990': +"880990": installDir: SchoolIdol launch: - config: oslist: windows executable: School Idol.exe type: default -'881020': +"881020": nameLocalized: - japanese: 'GRANBLUE FANTASY: Relink' -'881040': + japanese: "GRANBLUE FANTASY: Relink" +"881040": installDir: Bug Academy launch: - config: @@ -401494,59 +395726,59 @@ type: default nameLocalized: schinese: 虫虫学院 -'881050': +"881050": installDir: BEAST_KING launch: - config: oslist: windows executable: BEAST_KING.exe type: none -'881060': +"881060": installDir: Fortune & Gloria launch: - config: oslist: windows executable: nw.exe type: default -'881080': +"881080": installDir: Subway Surfers 2018 - Pet vs Police launch: - config: oslist: windows executable: PetSurfer.exe type: default -'881090': +"881090": installDir: Super Dodgeball Beats launch: - config: oslist: windows executable: Super Dodgeball Beats.exe type: none -'881100': +"881100": installDir: Noita launch: - description: Starts the game (normally) executable: noita.exe type: default -'881110': +"881110": installDir: Incel Clicker launch: - executable: Incel_Clicker.exe type: none -'881130': +"881130": installDir: SynthwaveDream85 launch: - config: oslist: windows - executable: Synthwave Dream '85.exe + executable: "Synthwave Dream '85.exe" type: default - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" config: oslist: windows description: Customize controls and resolution/screen - executable: Synthwave Dream '85.exe + executable: "Synthwave Dream '85.exe" type: config -'881170': +"881170": installDir: Bloody sand launch: - config: @@ -401555,53 +395787,53 @@ type: default - config: oslist: macos - executable: Bloody Sand.app\\Contents\\MacOS\\Bloody Sand + executable: "Bloody Sand.app\\\\Contents\\\\MacOS\\\\Bloody Sand" type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: Bloody Sand.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: Bloody Sand.x86_64 type: none -'881190': +"881190": installDir: Robbotto launch: - config: oslist: windows executable: nw.exe type: default -'881210': {} -'881230': +"881210": {} +"881230": installDir: Top Down Racer launch: - config: oslist: windows executable: TopDownRacer.exe type: default -'881250': {} -'881260': +"881250": {} +"881260": installDir: VagrantFury launch: - config: oslist: windows executable: VagrantFury.exe type: default -'881270': {} -'881280': {} -'881290': {} -'881300': +"881270": {} +"881280": {} +"881290": {} +"881300": installDir: Arboreal launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Arboreal.exe type: default -'881310': +"881310": installDir: BearHammer launch: - config: @@ -401609,11 +395841,11 @@ description: launches vr game executable: RamboSlice.exe type: vr -'881320': +"881320": installDir: The LEGO Movie 2 Videogame launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: LEGO The LEGO Movie 2_DX11.exe type: default @@ -401621,7 +395853,7 @@ oslist: macos executable: The LEGO Movie 2.app type: default -'881420': +"881420": installDir: Six Ages Ride Like the Wind launch: - config: @@ -401632,7 +395864,7 @@ oslist: macos executable: RLTW.app type: none -'881470': +"881470": installDir: Combo Postage launch: - config: @@ -401640,52 +395872,48 @@ executable: nw.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: 64-bit Linux - description_loc: - english: 64-bit Linux executable: nw - config: - osarch: '32' + osarch: "32" oslist: linux description: 32-bit Linux - description_loc: - english: 32-bit Linux executable: nw -'881490': +"881490": installDir: Tower Keepers launch: - config: oslist: windows executable: Tower Keepers.exe type: none -'881500': +"881500": installDir: Steamulator 2019 launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Steamulator2019 executable: Steamulator2019.exe type: option1 -'881510': - installDir: 'The Official GamingTaylor Game, Great Job!' +"881510": + installDir: "The Official GamingTaylor Game, Great Job!" launch: - config: oslist: windows executable: OfficialGamingTaylorGame.exe type: none -'881520': +"881520": installDir: Geometry Defense Infinite launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: GeometryDefense_x64.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: GeometryDefense.exe type: default @@ -401694,22 +395922,22 @@ executable: GeometryDefense.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: GeometryDefense.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: GeometryDefense.x86_64 type: default -'881530': {} -'881550': +"881530": {} +"881550": installDir: Magic Synthesis launch: - executable: Game.exe type: none -'881560': +"881560": installDir: How To Date A Magical Girl! launch: - config: @@ -401720,51 +395948,51 @@ oslist: macos executable: HowToDateAMagicalGirl.app type: default -'881610': +"881610": installDir: Professor Watts Word Search Space Voyage launch: - config: oslist: windows executable: Professor Watts Word Search Space Voyage.exe type: default -'881620': +"881620": installDir: Plumber the Pipe Rush launch: - config: oslist: windows executable: PipeRush.exe type: none -'881670': +"881670": installDir: ScreensaversVR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Screensavers VR.exe type: vr -'881690': +"881690": installDir: The Slater launch: - config: oslist: windows executable: TheSlater.exe type: default -'881710': {} -'881730': +"881710": {} +"881730": installDir: Train Simulator London Subway launch: - config: oslist: windows executable: TrainSimulatorLondonSubway.exe type: default -'881750': +"881750": installDir: Furwind launch: - config: oslist: windows executable: Furwind.exe type: default -'881880': +"881880": installDir: Degeneration launch: - config: @@ -401772,21 +396000,21 @@ description: Launch executable: Degeneration.exe type: none -'881910': +"881910": installDir: The Battle Of Ages launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TheBattleOfAges.exe type: none -'881920': +"881920": installDir: Depression The Game launch: - config: oslist: windows description: Launch Normal Game - executable: Depression The Game\\Depression_The_Game.exe + executable: "Depression The Game\\\\Depression_The_Game.exe" type: option1 - config: oslist: macos @@ -401802,36 +396030,36 @@ betakey: patch-preview oslist: windows description: Launch Patch - executable: \\Depression The Game v1.06 I 64 Bit Unity 2019.3.0f6 IL2CPP Dev Build\\DWSGameLauncher.exe + executable: "\\\\Depression The Game v1.06 I 64 Bit Unity 2019.3.0f6 IL2CPP Dev Build\\\\DWSGameLauncher.exe" type: option3 -'881930': +"881930": installDir: Business Tycoon Billionaire launch: - config: oslist: windows executable: Business Tycoon Billionaire.exe type: default -'881970': +"881970": installDir: Pif Paf launch: - - arguments: '-windowed' + - arguments: "-windowed" config: oslist: windows executable: Pif Paf.exe type: default -'881980': +"881980": installDir: Drive Switch Evade launch: - executable: Drive Switch Evade.exe type: default -'882020': +"882020": installDir: Monster Energy Supercross - The Official Videogame 2 launch: - config: - osarch: '64' + osarch: "64" executable: supercross2.exe type: none -'882040': +"882040": installDir: The Outpost Nine launch: - config: @@ -401842,180 +396070,170 @@ oslist: macos executable: The Outpost Nine Mac.app type: none -'882070': +"882070": installDir: PlatONIR launch: - config: oslist: windows executable: PlatONI.exe type: default -'882080': - installDir: Star'Shoot +"882080": + installDir: "Star'Shoot" launch: - config: oslist: windows executable: StarShoot.exe type: none -'882100': +"882100": installDir: XCOM-Chimera-Squad launch: - - arguments: '-allowconsole -crashdumpwatcher -review -noRedscreens' + - arguments: "-allowconsole -crashdumpwatcher -review -noRedscreens" config: - betakey: 'cc_dontmove, fc_dontmove, fpm_dontmove, interim0415_dontmove, vs_dontmove' - osarch: '64' + betakey: "cc_dontmove, fc_dontmove, fpm_dontmove, interim0415_dontmove, vs_dontmove" + osarch: "64" oslist: windows description: Release - executable: Dio\\binaries\\Win64\\XCom2.exe + executable: "Dio\\\\binaries\\\\Win64\\\\XCom2.exe" type: option1 - - arguments: '-crashdumpwatcher -review -noRedscreens' + - arguments: "-crashdumpwatcher -review -noRedscreens" config: - betakey: 'firaxis_qa, firaxis_qa_alt, qa_alt, review, ihv_review, firaxis_review, age_ratings' - osarch: '64' + betakey: "firaxis_qa, firaxis_qa_alt, qa_alt, review, ihv_review, firaxis_review, age_ratings" + osarch: "64" oslist: windows description: Release - executable: binaries\\Win64\\XCom.exe + executable: "binaries\\\\Win64\\\\XCom.exe" type: option1 - - arguments: '-log -allowconsole -crashdumpwatcher -noredscreens' + - arguments: "-log -allowconsole -crashdumpwatcher -noredscreens" config: - betakey: 'firaxis_qa, firaxis_qa_alt, qa_alt, ihv_review, firaxis_review, age_ratings, qa_a, qa_b, qa_c' - osarch: '64' + betakey: "firaxis_qa, firaxis_qa_alt, qa_alt, ihv_review, firaxis_review, age_ratings, qa_a, qa_b, qa_c" + osarch: "64" oslist: windows description: Testing/Debug - executable: binaries\\Win64\\XCom.exe + executable: "binaries\\\\Win64\\\\XCom.exe" type: option2 - - arguments: '-steam_auto_login -game-50546=-crashdumpwatcher -game-50546=-review -game-50546=-noRedscreens' + - arguments: "-steam_auto_login -game-50546=-crashdumpwatcher -game-50546=-review -game-50546=-noRedscreens" config: - betakey: 'firaxis_qa, external_review, qa_b, qa_c, xsolla' - osarch: '64' + betakey: "firaxis_qa, external_review, qa_b, qa_c, xsolla" + osarch: "64" oslist: windows description: Dio - description_loc: - english: Dio - executable: Launcher\\launcher.exe + executable: "Launcher\\\\launcher.exe" type: option3 workingdir: Launcher - - arguments: '-steam_auto_login -game-50546=-crashdumpwatcher -game-50546=-review -game-50546=-noRedscreens' + - arguments: "-steam_auto_login -game-50546=-crashdumpwatcher -game-50546=-review -game-50546=-noRedscreens" config: betakey: old - osarch: '64' + osarch: "64" oslist: windows - executable: Launcher\\launcher.exe + executable: "Launcher\\\\launcher.exe" type: default workingdir: Launcher - - arguments: '-steam_auto_login -game-50546=-crashdumpwatcher -game-50546=-review -game-50546=-noRedscreens' + - arguments: "-steam_auto_login -game-50546=-crashdumpwatcher -game-50546=-review -game-50546=-noRedscreens" config: - osarch: '64' + osarch: "64" description: 2K Launcher - description_loc: - english: 2K Launcher - executable: 2KLauncher\\LauncherPatcher.exe + executable: "2KLauncher\\\\LauncherPatcher.exe" type: default workingdir: Launcher -'882110': +"882110": installDir: Google Spotlight Stories Age of Sail launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: win64/storyplayer.exe type: vr -'882140': +"882140": installDir: Reentry - An Orbital Simulator launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ReEntry.exe type: default -'882150': +"882150": installDir: Sky Link launch: - - arguments: '-gsenv=prod -gskey=e375341k5DPR -gssecret=o8tovzDA628nAqcDkmtsdNdVNmMAutVB' + - arguments: "-gsenv=prod -gskey=e375341k5DPR -gssecret=o8tovzDA628nAqcDkmtsdNdVNmMAutVB" config: betakey: default oslist: windows executable: drones.exe type: default - - arguments: '-gsenv=dev -gskey=e375341k5DPR -gssecret=o8tovzDA628nAqcDkmtsdNdVNmMAutVB' + - arguments: "-gsenv=dev -gskey=e375341k5DPR -gssecret=o8tovzDA628nAqcDkmtsdNdVNmMAutVB" config: betakey: staging oslist: windows description: Launch the client on the staging (S) environment - (Use this one) - description_loc: - english: Launch the client on the staging (S) environment - (Use this one) executable: drones.exe type: default - - arguments: >- - -gsenv=dev -gskey=K368038hczTd -gssecret=LflT7NEFqZeUFLeGwXgRyjnkXWTfE8Zr -bcAppId=14102 - -bcAppSecret=42854ecf-1c97-4f6f-b226-1182f548996b -log + - arguments: "-gsenv=dev -gskey=K368038hczTd -gssecret=LflT7NEFqZeUFLeGwXgRyjnkXWTfE8Zr -bcAppId=14102 -bcAppSecret=42854ecf-1c97-4f6f-b226-1182f548996b -log" config: betakey: testing oslist: windows executable: drones.exe type: default - - arguments: '-gsenv=dev -gskey=n354956kXonS -gssecret=bsMGaF1RhAdNaklMb9vXgn7TM8y0KNXw -log' + - arguments: "-gsenv=dev -gskey=n354956kXonS -gssecret=bsMGaF1RhAdNaklMb9vXgn7TM8y0KNXw -log" config: betakey: development oslist: windows executable: drones.exe type: default - - arguments: '-gsenv=dev -gskey=n354956kXonS -gssecret=bsMGaF1RhAdNaklMb9vXgn7TM8y0KNXw -log' + - arguments: "-gsenv=dev -gskey=n354956kXonS -gssecret=bsMGaF1RhAdNaklMb9vXgn7TM8y0KNXw -log" config: betakey: devshipping oslist: windows executable: drones.exe type: default - - arguments: >- - -gsenv=dev -gskey=K368038hczTd -gssecret=LflT7NEFqZeUFLeGwXgRyjnkXWTfE8Zr -bcAppId=14102 - -bcAppSecret=42854ecf-1c97-4f6f-b226-1182f548996b -log + - arguments: "-gsenv=dev -gskey=K368038hczTd -gssecret=LflT7NEFqZeUFLeGwXgRyjnkXWTfE8Zr -bcAppId=14102 -bcAppSecret=42854ecf-1c97-4f6f-b226-1182f548996b -log" config: betakey: tstshipping oslist: windows executable: drones.exe type: default - - arguments: '-gsenv=dev -gskey=P394490wf9jf -gssecret=ZrDqf3nL4gd9AhN72shBePgohl3wnuTu -log' + - arguments: "-gsenv=dev -gskey=P394490wf9jf -gssecret=ZrDqf3nL4gd9AhN72shBePgohl3wnuTu -log" config: betakey: xxxdevelopment oslist: windows executable: drones.exe type: default -'882180': {} -'882200': +"882180": {} +"882200": installDir: Reveal launch: - config: oslist: windows executable: Reveal.exe type: default -'882210': +"882210": installDir: Duke of Defense launch: - config: oslist: windows executable: DukeOfDefense.exe type: default -'882220': +"882220": installDir: Mecha-Tokyo Rush launch: - config: oslist: windows executable: Mecha-Tokyo Rush.exe type: none -'882230': - installDir: Dog's Quest +"882230": + installDir: "Dog's Quest" launch: - config: oslist: windows executable: DogsQuest.exe type: none -'882250': +"882250": installDir: Metro Sim Hustle launch: - config: oslist: windows executable: Metro Sim Hustle.exe type: none -'882260': +"882260": installDir: HellMaze launch: - config: @@ -402028,18 +396246,18 @@ type: none - config: oslist: macos - executable: HellMaze.app\\Contents\\MacOS\\HellMaze + executable: "HellMaze.app\\\\Contents\\\\MacOS\\\\HellMaze" type: none -'882280': +"882280": installDir: TinkrGarage launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch Tinkr Garage For Windows executable: TinkrGarage/TinkrGarage.exe type: default -'882290': +"882290": installDir: Take Care of the Paperwork launch: - config: @@ -402048,20 +396266,20 @@ type: default - config: oslist: macos - executable: TCOTP.app\\Contents\\MacOS\\TCOTP + executable: "TCOTP.app\\\\Contents\\\\MacOS\\\\TCOTP" type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: TCOTP type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: TCOTP Standalone type: default -'882310': {} -'882330': +"882310": {} +"882330": installDir: Sudoku Original launch: - config: @@ -402070,23 +396288,23 @@ type: none - config: oslist: macos - executable: Sudoku Original.app\\Contents\\MacOS\\Sudoku Original + executable: "Sudoku Original.app\\\\Contents\\\\MacOS\\\\Sudoku Original" type: none - config: oslist: linux executable: Sudoku Original.x86 type: none -'882360': {} -'882370': {} -'882380': {} -'882390': +"882360": {} +"882370": {} +"882380": {} +"882390": installDir: EnHanced launch: - config: oslist: windows executable: EnHanced.exe type: default -'882410': +"882410": installDir: Age of Fear The Free World GOLD launch: - config: @@ -402097,82 +396315,80 @@ - config: oslist: linux description: Launch - executable: ./aof-freeworld-start-linux.sh + executable: "./aof-freeworld-start-linux.sh" type: none - config: oslist: macos description: Launch - executable: ./aof-freeworld-start-macosx.command + executable: "./aof-freeworld-start-macosx.command" type: none - - arguments: '-config' + - arguments: "-config" config: oslist: windows description: Configuration executable: aof-freeworld-start-windows.bat type: none - - arguments: '-config' + - arguments: "-config" config: oslist: linux description: Configuration - executable: ./aof-freeworld-start-linux.sh + executable: "./aof-freeworld-start-linux.sh" type: none - - arguments: '-config' + - arguments: "-config" config: oslist: macos description: Configuration - executable: ./aof-freeworld-start-macosx.command + executable: "./aof-freeworld-start-macosx.command" type: none - config: oslist: windows - description: 'Play Age of Fear: The Free World (Log Console)' + description: "Play Age of Fear: The Free World (Log Console)" executable: aof-freeworld-start-windows-console.bat type: none - - arguments: '-workshop' + - arguments: "-workshop" config: oslist: windows description: Workshop Manager executable: aof-freeworld-start-windows-console.bat type: none - - arguments: '-workshop' + - arguments: "-workshop" config: oslist: macos description: Workshop Manager - executable: ./aof-freeworld-start-macosx.command + executable: "./aof-freeworld-start-macosx.command" type: none - - arguments: '-workshop' + - arguments: "-workshop" config: oslist: linux description: Workshop Manager - executable: ./aof-freeworld-start-linux.sh + executable: "./aof-freeworld-start-linux.sh" type: none - config: oslist: windows - description: 'Play Age of Fear: The Free World (Force 64bit)' - description_loc: - english: 'Play Age of Fear: The Free World (Force 64bit)' + description: "Play Age of Fear: The Free World (Force 64bit)" executable: aof-freeworld-start-windows-64.bat type: none -'882440': {} -'882460': +"882440": {} +"882460": installDir: The Warrior War launch: - config: oslist: windows executable: The Warrior War.exe type: default -'882510': {} -'882520': {} -'882530': {} -'882560': +"882510": {} +"882520": {} +"882530": {} +"882560": installDir: Doors launch: - config: oslist: windows executable: Door.exe type: none -'882570': {} -'882590': {} -'882600': +"882570": {} +"882590": {} +"882600": installDir: Chess Multiple Boards launch: - config: @@ -402183,7 +396399,7 @@ oslist: macos executable: Chess Multiple Boards.app type: none -'882620': +"882620": installDir: Zeon 25 launch: - config: @@ -402195,23 +396411,23 @@ executable: Zeon 25.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Zeon 25.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Zeon 25.x86_64 type: default -'882630': +"882630": installDir: Leviathan launch: - config: oslist: windows executable: Leviathan.exe type: default -'882640': +"882640": installDir: Ashley Clark Secret of the Ruby launch: - config: @@ -402226,33 +396442,33 @@ oslist: linux executable: Game.x86 type: default -'882660': {} -'882670': - installDir: Nono's magic general shop +"882660": {} +"882670": + installDir: "Nono's magic general shop" launch: - executable: NonoLauncher.exe type: none -'882680': +"882680": installDir: ForeskinFury launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ForeskinFury.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: ForeskinFury.sh type: default -'882700': +"882700": installDir: Thievery launch: - config: oslist: windows executable: Thievery.exe type: default -'882710': +"882710": installDir: TouHou Makuka Sai ~ Fantastic Danmaku Festival launch: - executable: THMHJ.exe @@ -402260,24 +396476,22 @@ - description: custom.exe executable: custom.exe type: config -'882750': +"882750": installDir: 1 HIT KILL launch: - config: oslist: windows description: Launch - description_loc: - english: Launch executable: RTP_RT.exe -'882760': +"882760": installDir: Nom Nom Apocalypse launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Nom Nom Apocalypse.exe type: default -'882790': +"882790": installDir: FateSeeker launch: - config: @@ -402289,7 +396503,7 @@ japanese: 天命奇御 schinese: 天命奇御 tchinese: 天命奇御 -'882830': +"882830": installDir: Fallen Beast US launch: - config: @@ -402302,24 +396516,24 @@ - description: Disc 3 of 3 executable: Beast3.exe type: default -'882840': +"882840": installDir: True North launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Main launch executable: TrueNorth.exe type: default -'882860': +"882860": installDir: Another Reigny Day launch: - config: oslist: windows executable: Another Reigny Day.exe type: vr -'882870': {} -'882900': +"882870": {} +"882900": installDir: ypmaker launch: - config: @@ -402328,29 +396542,29 @@ type: default nameLocalized: koreana: 여포키우기 -'882910': +"882910": installDir: BattleX-1.0.1 launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: VCGame\\Binaries\\Win64\\VCGame-Win64-Shipping.exe + executable: "VCGame\\\\Binaries\\\\Win64\\\\VCGame-Win64-Shipping.exe" type: vr -'882940': +"882940": installDir: The Moment We Met launch: - config: oslist: windows executable: TTWM.exe type: none -'882960': +"882960": installDir: Visitor launch: - config: oslist: windows executable: Visitor.exe type: default -'882990': +"882990": installDir: BAD DAY launch: - config: @@ -402361,22 +396575,22 @@ oslist: windows executable: nw_original.exe type: default -'883000': +"883000": installDir: Horror Rollercoaster launch: - config: oslist: windows executable: horrorrollercoaster.exe type: vr -'883010': {} -'883020': +"883010": {} +"883020": installDir: Shadowlings launch: - config: oslist: windows executable: Shadowlings.exe type: default -'883070': +"883070": installDir: Viviette launch: - config: @@ -402384,7 +396598,7 @@ description: Launch (Windows) executable: viviette.exe type: none -'883080': +"883080": installDir: Ludo Online launch: - config: @@ -402399,15 +396613,15 @@ oslist: macos executable: ludo-online.osx type: default -'883100': +"883100": installDir: 360 No Scope Arena launch: - config: oslist: windows executable: 360NoScopeArena.exe type: default -'883120': {} -'883130': +"883120": {} +"883130": installDir: New Star Soccer Manager launch: - config: @@ -402430,26 +396644,26 @@ description: Windowed (1024x768) executable: Manager.app/Contents/MacOS/Manager type: option1 -'883160': +"883160": installDir: Legend of Dragon Labyrinth launch: - config: oslist: windows executable: Game.exe type: default -'883170': +"883170": installDir: AVATAR Consolidate launch: - executable: AVATAR Consolidate.exe type: none -'883190': +"883190": installDir: Jorji and Impossible Forest launch: - config: oslist: windows executable: jorji.exe type: default -'883220': +"883220": installDir: Fugue in Void launch: - config: @@ -402460,28 +396674,28 @@ oslist: macos executable: FugueinVoid.app type: none -'883270': +"883270": installDir: Immortals launch: - config: oslist: windows executable: Immortals.exe type: default -'883280': +"883280": installDir: Struggle For Light launch: - config: oslist: windows executable: Struggle For Light.exe type: none -'883300': +"883300": installDir: Poverty is a Choice launch: - config: oslist: windows executable: Stock2D.exe type: default -'883330': +"883330": installDir: The Skeleton launch: - config: @@ -402490,16 +396704,16 @@ type: default - executable: game.exe type: none -'883360': +"883360": installDir: Beyond Blue launch: - - arguments: '-eline.target Steam' + - arguments: "-eline.target Steam" config: oslist: windows description: Launch executable: BeyondBlue.exe type: default -'883370': +"883370": installDir: Shimmer launch: - config: @@ -402507,13 +396721,13 @@ description: Launch executable: Shimmer.exe type: none -'883390': +"883390": installDir: Beyond the Mind launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" executable: nw.exe type: none -'883400': +"883400": installDir: The treasure of the lost temple launch: - config: @@ -402521,12 +396735,12 @@ description: Launch executable: Game.exe type: default -'883560': +"883560": installDir: Wardens_of_the_Amber_Cage_Full launch: - arguments: +force_flat_screen_mode config: - osarch: '64' + osarch: "64" oslist: windows executable: WardensOfTheAmberCage_Win64.exe type: default @@ -402545,7 +396759,7 @@ oslist: macos executable: WardensOfTheAmberCage_Mac.app type: vr -'883620': +"883620": installDir: FlowDot launch: - config: @@ -402553,7 +396767,7 @@ description: FlowDot for Windows executable: FlowDot.exe type: default -'883630': +"883630": installDir: Rocket Island launch: - config: @@ -402564,14 +396778,14 @@ oslist: macos executable: RocketIsland.app type: default -'883670': +"883670": installDir: VT launch: - config: oslist: windows executable: VT.exe type: default -'883680': +"883680": installDir: Four Kings One War launch: - config: @@ -402584,15 +396798,15 @@ type: default - config: oslist: windows - ownsdlc: '932600' + ownsdlc: "932600" executable: 4k1wDLC.exe type: vr - config: oslist: macos - ownsdlc: '932600' + ownsdlc: "932600" executable: 4K1W_DLC.app type: vr -'883710': +"883710": installDir: RESIDENT EVIL 2 BIOHAZARD RE2 launch: - config: @@ -402600,38 +396814,38 @@ executable: re2.exe type: none nameLocalized: - japanese: 'BIOHAZARD RE:2' - koreana: 'BIOHAZARD RE:2' -'883750': {} -'883780': + japanese: "BIOHAZARD RE:2" + koreana: "BIOHAZARD RE:2" +"883750": {} +"883780": installDir: Wayblock launch: - config: oslist: windows executable: Wayblock.exe type: default -'883790': +"883790": installDir: Threelife launch: - config: oslist: windows executable: Three life.exe type: vr -'883810': +"883810": installDir: Nocturne of Steel launch: - config: oslist: windows executable: NocturneofSteel.exe type: default -'883830': +"883830": installDir: NSFWare launch: - config: oslist: windows executable: NSFWare.exe type: none -'883860': +"883860": installDir: Cadria Item Shop launch: - config: @@ -402641,19 +396855,19 @@ nameLocalized: schinese: 卡德里亚道具屋 tchinese: 卡德里亞道具屋 -'883870': +"883870": installDir: 3acg-qy launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: win\\win\\霎时晴荫.exe + executable: "win\\\\win\\\\霎时晴荫.exe" type: none - config: oslist: macos executable: 霎时晴荫.app/Contents/MacOS/霎时晴荫 type: none -'883880': +"883880": installDir: Faraway Directors Cut launch: - config: @@ -402668,37 +396882,37 @@ oslist: linux executable: FarawayDirectorsCut type: default -'883900': +"883900": installDir: ERI launch: - config: oslist: windows executable: ERI.exe type: default -'883930': +"883930": installDir: Mercs launch: - config: oslist: windows executable: Mercs.exe type: default -'883960': +"883960": installDir: The Lost And Forgotten launch: - config: oslist: windows executable: The Lost Caves.exe type: vr -'883970': +"883970": installDir: Little Imps launch: - config: oslist: windows executable: LittleImps.exe type: none -'884020': {} -'884050': {} -'884070': +"884020": {} +"884050": {} +"884070": installDir: War Ender launch: - config: @@ -402706,215 +396920,215 @@ description: Launch executable: War Ender.exe type: default -'884080': +"884080": installDir: Munchies launch: - executable: Munchies.exe type: none -'884090': +"884090": installDir: Idle Dungeons launch: - executable: Idle Dungeons.exe type: default -'884150': {} -'884160': +"884150": {} +"884160": installDir: HyperZen Training launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: hyperzen-training-win64.exe type: none - config: - osarch: '32' + osarch: "32" oslist: windows executable: hyperzen-training-win32.exe type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: hyperzen-training-linux64 type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: hyperzen-training-linux32 type: none -'884170': {} -'884180': {} -'884200': +"884170": {} +"884180": {} +"884200": installDir: PUBNite launch: - executable: PUBGNite.exe type: none -'884210': {} -'884230': {} -'884240': +"884210": {} +"884230": {} +"884240": installDir: TheEdgeBall launch: - - arguments: '-windowed' + - arguments: "-windowed" config: oslist: windows description: Launch executable: TheEdgeBall.exe type: default -'884250': {} -'884260': +"884250": {} +"884260": installDir: Akane launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: akane_win64\\Akane.exe + executable: "akane_win64\\\\Akane.exe" type: default - config: - osarch: '32' + osarch: "32" oslist: windows - executable: akane_win32\\Akane.exe + executable: "akane_win32\\\\Akane.exe" type: default - config: oslist: macos executable: Akane.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux - executable: Linux64\\Akane.x86_64 + executable: "Linux64\\\\Akane.x86_64" type: default - config: - osarch: '32' + osarch: "32" oslist: linux - executable: Linux86\\Akane.x86 + executable: "Linux86\\\\Akane.x86" type: default -'884270': +"884270": installDir: Cabins Jigsaw Puzzles launch: - config: oslist: windows - description: 'Puzzle 1: 70 Pieces' + description: "Puzzle 1: 70 Pieces" executable: Puzzle 1 70 Pieces.exe type: option1 - config: oslist: windows - description: 'Puzzle 2: 96 Pieces' + description: "Puzzle 2: 96 Pieces" executable: Puzzle 2 96 Pieces.exe type: option1 - config: oslist: windows - description: 'Puzzle 3: 96 Pieces' + description: "Puzzle 3: 96 Pieces" executable: Puzzle 3 96 Pieces.exe type: option1 - config: oslist: windows - description: 'Puzzle 4: 60 Pieces' + description: "Puzzle 4: 60 Pieces" executable: Puzzle 4 60 Pieces.exe type: option1 - config: oslist: windows - description: 'Puzzle 5: 126 Pieces' + description: "Puzzle 5: 126 Pieces" executable: Puzzle 5 126 Pieces.exe type: option1 - config: oslist: windows - description: 'Puzzle 6: 63 Pieces' + description: "Puzzle 6: 63 Pieces" executable: Puzzle 6 63 Pieces.exe type: option1 - config: oslist: windows - description: 'Puzzle 7: 77 Pieces' + description: "Puzzle 7: 77 Pieces" executable: Puzzle 7 77 Pieces.exe type: option1 - config: oslist: windows - description: 'Puzzle 8: 77 Pieces' + description: "Puzzle 8: 77 Pieces" executable: Puzzle 8 77 Pieces.exe type: option1 - config: oslist: windows - description: 'Puzzle 9: 126 Pieces' + description: "Puzzle 9: 126 Pieces" executable: Puzzle 9 126 Pieces.exe type: option1 - config: oslist: windows - description: 'Puzzle 10: 60 Pieces' + description: "Puzzle 10: 60 Pieces" executable: Puzzle 10 60 Pieces.exe type: option1 - config: oslist: windows - description: 'Puzzle 11: 70 Pieces' + description: "Puzzle 11: 70 Pieces" executable: Puzzle 11 70 Pieces.exe type: option1 - config: oslist: windows - description: 'Puzzle 12: 150 Pieces' + description: "Puzzle 12: 150 Pieces" executable: Puzzle 12 150 Pieces.exe type: option1 - config: oslist: windows - description: 'Puzzle 13: 80 Pieces' + description: "Puzzle 13: 80 Pieces" executable: Puzzle 13 80 Pieces.exe type: option1 - config: oslist: windows - description: 'Puzzle 14: 60 Pieces' + description: "Puzzle 14: 60 Pieces" executable: Puzzle 14 60 Pieces.exe type: option1 - config: oslist: windows - description: 'Puzzle 15: 70 Pieces' + description: "Puzzle 15: 70 Pieces" executable: Puzzle 15 70 Pieces.exe type: option1 -'884290': - installDir: Cat's Yarn +"884290": + installDir: "Cat's Yarn" launch: - config: oslist: windows - executable: Cat'sYarnx86.exe + executable: "Cat'sYarnx86.exe" type: none -'884320': +"884320": installDir: Love Vibe Aria launch: - - arguments: '-windowed -desktopVer' + - arguments: "-windowed -desktopVer" config: oslist: windows description: Non-VR Version executable: Love Vibe Aria.exe type: option1 - - arguments: '-windowed' + - arguments: "-windowed" config: oslist: windows executable: Love Vibe Aria.exe type: vr -'884340': +"884340": installDir: Hold Out launch: - config: oslist: windows executable: Final_Mansion.exe type: default -'884350': +"884350": installDir: UnfoldingEngine launch: - config: oslist: windows executable: UnfoldingEngine.exe type: none -'884370': +"884370": installDir: Hotel Transylvania Popstic launch: - config: oslist: windows executable: Popstic.exe type: vr -'884390': +"884390": installDir: Professor Watts Word Search Pirates Life launch: - config: oslist: windows executable: Professor Watts Word Search Pirates Life.exe type: default -'884400': - installDir: The Harbinger's Head +"884400": + installDir: "The Harbinger's Head" launch: - config: oslist: windows @@ -402922,13 +397136,13 @@ type: none - config: oslist: macos - executable: The Harbinger's Head.app/Contents/MacOS/The Harbinger's Head + executable: "The Harbinger's Head.app/Contents/MacOS/The Harbinger's Head" type: none - config: oslist: linux executable: TheHarbingersHead type: none -'884410': +"884410": installDir: Unnatural launch: - config: @@ -402943,7 +397157,7 @@ oslist: linux executable: Unnatural type: none -'884420': +"884420": installDir: The Last Wizard launch: - config: @@ -402958,8 +397172,8 @@ oslist: linux executable: TheLastWizard type: none -'884430': - installDir: The Magician's Burden +"884430": + installDir: "The Magician's Burden" launch: - config: oslist: windows @@ -402967,54 +397181,54 @@ type: none - config: oslist: macos - executable: The Magician's Burden.app/Contents/MacOS/The Magician's Burden + executable: "The Magician's Burden.app/Contents/MacOS/The Magician's Burden" type: none - config: oslist: linux executable: TheMagiciansBurden type: none -'884440': +"884440": installDir: Professor Watts Word Search Yummy Foods launch: - config: oslist: windows executable: Professor Watts Word Search Yummy Foods.exe type: default -'884470': +"884470": installDir: Sunken launch: - executable: Pirates.exe type: none -'884500': +"884500": installDir: Bitcoin Mining Tycoon launch: - config: oslist: windows executable: BitcoinMiningTycoon.exe type: default -'884520': {} -'884530': +"884520": {} +"884530": installDir: Pro Gamer Tycoon launch: - config: oslist: windows executable: ProGamerTycoon.exe type: default -'884550': +"884550": installDir: Mist of the Dark launch: - config: oslist: windows executable: MistOfTheDark.exe type: default -'884590': +"884590": installDir: Garage Master 2018 launch: - config: oslist: windows executable: GarageMaster.exe type: default -'884610': +"884610": installDir: Road Rage Royale launch: - config: @@ -403026,42 +397240,42 @@ executable: Road Rage Royale.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: RoadRageRoyale.x86_64 type: default -'884630': +"884630": installDir: Golden Fall launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Golden Fall.exe type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: GoldenFall.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: GoldenFall.x86_64 type: none -'884640': +"884640": installDir: Mines and Magic launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: MinesAndMagic.exe type: default - config: oslist: macos - executable: MinesAndMagic.app\\Contents\\MacOS\\MinesAndMagic + executable: "MinesAndMagic.app\\\\Contents\\\\MacOS\\\\MinesAndMagic" type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: MinesAndMagic32.exe type: default @@ -403069,27 +397283,27 @@ oslist: linux executable: MinesAndMagicLinux.x86 type: none -'884660': +"884660": installDir: CRSED launch: - - arguments: ' -eac_dir EasyAntiCheat/cuisine_royale -config:circuit:t=venus -game:cuisine_royale -circuit:venus -skip_pkg_validation' + - arguments: " -eac_dir EasyAntiCheat/cuisine_royale -config:circuit:t=venus -game:cuisine_royale -circuit:venus -skip_pkg_validation" config: - osarch: '64' + osarch: "64" oslist: windows executable: eaccrlauncher.exe type: default - - arguments: ' -eac_dir EasyAntiCheat/cuisine_royale -config:circuit:t=venus -game:cuisine_royale -circuit:venus -skip_pkg_validation -eac_launcher_settings Settings32.json' + - arguments: " -eac_dir EasyAntiCheat/cuisine_royale -config:circuit:t=venus -game:cuisine_royale -circuit:venus -skip_pkg_validation -eac_launcher_settings Settings32.json" config: - osarch: '32' + osarch: "32" oslist: windows executable: cuisine_royale_eac_launcher.exe type: none - - arguments: '-config:circuit:t=venus -game:cuisine_royale -circuit:venus -skip_pkg_validation' + - arguments: "-config:circuit:t=venus -game:cuisine_royale -circuit:venus -skip_pkg_validation" config: - osarch: '64' + osarch: "64" oslist: linux executable: linux64/cuisine_royale -'884770': +"884770": installDir: Astro Bouncer launch: - config: @@ -403102,10 +397316,10 @@ type: none - config: oslist: macos - executable: Astro Bouncer.app\\Contents\\MacOS\\Astro Bouncer + executable: "Astro Bouncer.app\\\\Contents\\\\MacOS\\\\Astro Bouncer" type: none -'884800': {} -'884830': +"884800": {} +"884830": installDir: Football Manager 2019 Hashtag United Challenge launch: - config: @@ -403116,34 +397330,34 @@ oslist: macos executable: fm.app type: none -'884880': +"884880": installDir: Super Seeker launch: - config: oslist: windows executable: Super Seeker.exe type: default - - arguments: '-window-mode exclusive' + - arguments: "-window-mode exclusive" config: oslist: windows description: Super Seeker Exclusive Fullscreen executable: Super Seeker.exe type: option1 -'884900': +"884900": installDir: Slider launch: - config: oslist: windows executable: Slider.exe type: none -'884910': +"884910": installDir: Interlude launch: - config: oslist: windows executable: Universal Shooter.exe type: default -'884920': +"884920": installDir: Exo-Adventures launch: - config: @@ -403151,32 +397365,32 @@ description: Launch executable: Exo_Adventures.exe type: none -'884930': {} -'884960': +"884930": {} +"884960": installDir: Rolling in the Reef launch: - config: oslist: windows executable: rolling.exe type: none - - arguments: '-force-opengl -show-screen-selector' + - arguments: "-force-opengl -show-screen-selector" config: oslist: macos - executable: rolling.app\\Contents\\MacOS\\rolling.app + executable: "rolling.app\\\\Contents\\\\MacOS\\\\rolling.app" type: none - - arguments: '-force-opengl -show-screen-selector' + - arguments: "-force-opengl -show-screen-selector" config: - osarch: '64' + osarch: "64" oslist: linux executable: rolling.x86_64 type: none - - arguments: '-force-opengl -show-screen-selector' + - arguments: "-force-opengl -show-screen-selector" config: - osarch: '32' + osarch: "32" oslist: linux executable: rolling.x86 type: none -'884980': +"884980": installDir: Code Romantic launch: - config: @@ -403187,46 +397401,46 @@ oslist: macos executable: CodeRomantic_Mac.app type: default -'884990': +"884990": installDir: Absinth launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Absinth.exe type: default -'8850': +"8850": installDir: BioShock 2 launch: - config: oslist: windows description: BioShock 2 Single Player - executable: SP\\Builds\\Binaries\\Bioshock2Launcher.exe - workingdir: SP\\Builds\\Binaries + executable: "SP\\\\Builds\\\\Binaries\\\\Bioshock2Launcher.exe" + workingdir: "SP\\\\Builds\\\\Binaries" - config: oslist: windows description: BioShock 2 Multiplayer - executable: MP\\Builds\\Binaries\\Bioshock2Launcher.exe - workingdir: SP\\Builds\\Binaries + executable: "MP\\\\Builds\\\\Binaries\\\\Bioshock2Launcher.exe" + workingdir: "SP\\\\Builds\\\\Binaries" - config: oslist: macos description: Launch executable: BioShock 2.app -'885000': +"885000": installDir: SynthRiders launch: - config: oslist: windows executable: SynthRiders.exe type: vr -'885030': +"885030": installDir: Platform Builder launch: - config: oslist: windows executable: Platform Builder.exe type: default -'885090': +"885090": installDir: Digital Siege launch: - config: @@ -403235,9 +397449,9 @@ type: default - config: oslist: macos - executable: Digital Siege.app\\Contents\\MacOS\\Digital Siege + executable: "Digital Siege.app\\\\Contents\\\\MacOS\\\\Digital Siege" type: default -'885100': +"885100": installDir: Intelligence Trader launch: - config: @@ -403248,7 +397462,7 @@ oslist: macos executable: Intelligence Trader.app/Contents/MacOS/Intelligence Trader type: default -'885110': +"885110": installDir: Fate Of India launch: - config: @@ -403257,9 +397471,9 @@ type: none - config: oslist: macos - executable: Imperialism - Fate of India.app\\Contents\\MacOS\\Imperialism - Fate of India + executable: "Imperialism - Fate of India.app\\\\Contents\\\\MacOS\\\\Imperialism - Fate of India" type: none -'885120': +"885120": installDir: Werewolves Haven Rising launch: - config: @@ -403274,24 +397488,24 @@ oslist: linux executable: WerewolvesHavenRising type: none -'885140': +"885140": installDir: Seven Sacrifices launch: - config: oslist: windows executable: SevenSacrifices.exe type: default -'885150': +"885150": installDir: CBEUB launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: CBEUB.exe type: default nameLocalized: japanese: カプコン ベルトアクション コレクション -'885170': +"885170": installDir: My Russian Trip launch: - config: @@ -403302,7 +397516,7 @@ oslist: macos executable: My Russian Trip.app/Contents/MacOS/My Russian Trip type: none -'885180': +"885180": installDir: Boobserman launch: - config: @@ -403311,22 +397525,22 @@ type: default - config: oslist: macos - executable: Boobserman.app\\Contents\\MacOS\\Boobserman + executable: "Boobserman.app\\\\Contents\\\\MacOS\\\\Boobserman" type: default -'885190': +"885190": installDir: mahjongPrettyMangaGirls launch: - executable: nw.exe type: none -'885210': {} -'885220': +"885210": {} +"885220": installDir: Neon Cat Tickler launch: - config: oslist: windows executable: Neon Cat Tickler.exe type: none -'885240': +"885240": installDir: Tower Stacker launch: - config: @@ -403339,40 +397553,40 @@ type: none - config: oslist: macos - executable: Tower Stacker.app\\Contents\\MacOS\\Tower Stacker + executable: "Tower Stacker.app\\\\Contents\\\\MacOS\\\\Tower Stacker" type: none -'885290': +"885290": installDir: AceSpeeder3 launch: - config: oslist: windows executable: AceSpeeder3.exe type: default -'885310': {} -'885320': +"885310": {} +"885320": installDir: Cro Magnon launch: - config: oslist: windows executable: Cro Magnon.exe type: default -'885380': +"885380": installDir: Need a packet launch: - config: oslist: windows - executable: NeedAPacket_Windows\\NeedAPacket.exe + executable: "NeedAPacket_Windows\\\\NeedAPacket.exe" type: none - config: oslist: macos - executable: NeedAPacketMAC.app\\Contents\\MacOS\\NeedAPacketMAC + executable: "NeedAPacketMAC.app\\\\Contents\\\\MacOS\\\\NeedAPacketMAC" type: default - config: oslist: linux executable: NeedAPacket.x86_64 type: default -'885390': {} -'885470': +"885390": {} +"885470": installDir: Wired launch: - config: @@ -403383,7 +397597,7 @@ oslist: macos executable: wired.app type: none -'885480': +"885480": installDir: Maze Crusher launch: - config: @@ -403393,10 +397607,10 @@ - config: betakey: testing oslist: linux - description: 'Linux-Test (Experimental, Unsupported)' + description: "Linux-Test (Experimental, Unsupported)" executable: MazeCrusher.x86 type: option2 -'885570': +"885570": installDir: Nova-Life launch: - config: @@ -403405,24 +397619,24 @@ type: default - config: oslist: macos - executable: nova-life.app\\Contents\\MacOS\\Nova-Life + executable: "nova-life.app\\\\Contents\\\\MacOS\\\\Nova-Life" type: default -'885590': +"885590": installDir: Time launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Time.exe type: vr -'885600': {} -'885620': {} -'885630': +"885600": {} +"885620": {} +"885630": installDir: Floor Massacre launch: - executable: FM.exe type: none -'885640': +"885640": installDir: Lynne launch: - config: @@ -403440,7 +397654,7 @@ description: Launch executable: Lynne.app type: none -'885650': +"885650": installDir: The Waters Above Prelude launch: - config: @@ -403455,27 +397669,27 @@ oslist: linux executable: twap.sh type: default -'885690': +"885690": installDir: Liminal launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SuspiciousGame.exe type: default -'885730': +"885730": installDir: Aerial Guardian launch: - executable: Aerial Guardian.exe type: none -'885780': - installDir: Legion's Crawl +"885780": + installDir: "Legion's Crawl" launch: - config: oslist: windows - executable: Legion's Crawl.exe + executable: "Legion's Crawl.exe" type: none -'885790': +"885790": installDir: AyniFairyland launch: - config: @@ -403486,8 +397700,8 @@ oslist: macos executable: AyniFairylandUnity.app/Contents/MacOS/AyniFairylandUnity type: none -'885810': - installDir: The Witch's House MV +"885810": + installDir: "The Witch's House MV" launch: - config: oslist: windows @@ -403499,41 +397713,41 @@ type: default nameLocalized: japanese: 魔女の家MV -'885890': +"885890": installDir: Immortal Quest launch: - config: oslist: windows executable: ImmortalQuest_32_bit_os_V_1_steam_all.exe type: default -'885910': +"885910": installDir: GingaForce launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: GingaForce_x64_Release.exe type: none -'885940': +"885940": installDir: Meritocracy of the Oni & Blade launch: - config: oslist: windows executable: Game.exe type: default -'885950': +"885950": installDir: WalkonArrow launch: - config: oslist: windows - executable: Airranger\\Airranger.exe + executable: "Airranger\\\\Airranger.exe" type: vr -'885970': +"885970": installDir: Total War ROME REMASTERED launch: - config: - betakey: 'external_press, external_nvidia, external_preview, external_modding, external_modding_b' - osarch: '64' + betakey: "external_press, external_nvidia, external_preview, external_modding, external_modding_b" + osarch: "64" oslist: windows executable: Total War ROME REMASTERED.exe type: default @@ -403542,7 +397756,7 @@ executable: Total War ROME REMASTERED.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Total War ROME REMASTERED.sh type: default @@ -403551,7 +397765,7 @@ executable: launcher/launcher.exe type: default workingdir: launcher -'886010': +"886010": installDir: Smash Halloween Pumpkins The Challenge launch: - config: @@ -403562,28 +397776,28 @@ oslist: linux executable: SmashHalloweenPumpkinsTheChallenge type: default -'886020': +"886020": installDir: Jumper Magic launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: JumperMagic.exe type: default -'886040': +"886040": installDir: Hentai Temple launch: - executable: Hentai Temple.exe type: none -'886060': +"886060": installDir: Redout Space Assault launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SpaceAssault.exe type: default -'886070': +"886070": installDir: Jewel Match Solitaire launch: - config: @@ -403591,37 +397805,37 @@ description: Launch executable: JewelMatchSolitaire.exe type: none -'886110': +"886110": installDir: RKN Block Me - Telegram launch: - config: oslist: windows executable: RKN_Telegram.exe type: default -'886120': +"886120": installDir: UpBreakers launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: UpBreakers.exe type: default -'886160': +"886160": installDir: Respublica launch: - config: oslist: windows - executable: Respublica-win32-x64\\Respublica.exe + executable: "Respublica-win32-x64\\\\Respublica.exe" type: none - config: oslist: linux - executable: respublica-linux-x64\\respublica + executable: "respublica-linux-x64\\\\respublica" type: none - config: oslist: macos - executable: Respublica-darwin-x64\\Respublica.app + executable: "Respublica-darwin-x64\\\\Respublica.app" type: none -'886180': +"886180": installDir: Blood Money launch: - config: @@ -403636,83 +397850,83 @@ oslist: linux executable: BloodMoney type: none -'886200': +"886200": installDir: EndCycle VS launch: - config: oslist: windows executable: EndCycle.exe type: default - - arguments: '-jar game.jar' + - arguments: "-jar game.jar" config: - osarch: '64' + osarch: "64" oslist: linux executable: jre/bin/java type: default -'886210': +"886210": installDir: Slaughterman launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: DSM.exe type: default -'886220': +"886220": installDir: Thunderballs launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Thunderballs.exe type: vr -'886230': +"886230": installDir: Noble Armada Lost Worlds launch: - executable: NALW.exe type: none -'886250': +"886250": installDir: PokerStars VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Default (Recommended) executable: PokerStarsVR.exe type: vr -'886270': +"886270": installDir: Yeli Orog launch: - config: oslist: windows executable: Yeli Orog.exe type: none -'886290': +"886290": installDir: Starfield Wars launch: - executable: StarfieldWars.exe type: default -'886300': +"886300": installDir: Store Crasher launch: - config: oslist: windows executable: Store Crasher.exe type: default -'886310': +"886310": installDir: The Island Combat launch: - config: oslist: windows executable: The Island Combat.exe type: default -'886330': +"886330": installDir: DomiCard launch: - config: oslist: windows executable: DomiCard.exe type: default -'886350': +"886350": installDir: Clouded launch: - config: @@ -403723,21 +397937,21 @@ oslist: macos executable: Clouded Mac.app type: none -'886360': +"886360": installDir: Casino Mega Collection launch: - config: oslist: windows executable: Casino_MegaCollection.exe type: default -'886370': +"886370": installDir: Multicellular launch: - config: oslist: windows executable: Multicellular.exe type: default -'886380': +"886380": installDir: Ruya launch: - config: @@ -403748,7 +397962,7 @@ oslist: macos executable: Ruya.app type: default -'886390': +"886390": installDir: A Roll-Back Story launch: - config: @@ -403756,73 +397970,73 @@ executable: A Roll Back Story.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: A Roll-Back Story.x86_64 type: default -'886420': +"886420": installDir: UnBorn launch: - executable: unbornz.exe type: default -'886430': +"886430": installDir: Tock launch: - executable: Tock.exe type: none -'886450': +"886450": installDir: NightoftheShrub2 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Night of the Shrub 2.exe type: default -'886460': +"886460": installDir: Outside the Lines launch: - config: oslist: windows executable: Outside the Lines.exe type: default -'886470': +"886470": installDir: Another Otter launch: - config: oslist: windows executable: Another Otter.exe type: none -'886490': +"886490": installDir: SPEED BOX launch: - - executable: SPEED BOX\\SPEED BOX English.exe + - executable: "SPEED BOX\\\\SPEED BOX English.exe" type: none -'886520': +"886520": installDir: HopeLine launch: - config: oslist: windows executable: hopeline.exe type: default -'886530': +"886530": installDir: GolemRush launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: MyProject32\\Binaries\\Win64\\MyProject32-Win64-Shipping.exe + executable: "MyProject32\\\\Binaries\\\\Win64\\\\MyProject32-Win64-Shipping.exe" type: default -'886540': - installDir: Magical girl's labyrinth +"886540": + installDir: "Magical girl's labyrinth" launch: - config: oslist: windows - executable: Magical girl's labyrinth/Game.exe + executable: "Magical girl's labyrinth/Game.exe" type: default -'886560': {} -'886570': {} -'886580': {} -'886590': +"886560": {} +"886570": {} +"886580": {} +"886590": installDir: My Bingo launch: - config: @@ -403837,35 +398051,35 @@ oslist: linux executable: MyBingo.x86 type: none -'886600': +"886600": installDir: BrutalAliens launch: - config: oslist: windows executable: BrutalAliensGame_v1.0.exe type: default -'886610': +"886610": installDir: The Mystery of Happyville launch: - config: oslist: windows executable: The Mystery of Happyville.exe type: default -'886630': +"886630": installDir: GlitchPets launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: GP_UE5.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: Linux executable: Glitched_Pets.sh type: option1 -'886650': +"886650": installDir: 6-in-1 IQ Scale Bundle launch: - config: @@ -403880,48 +398094,46 @@ oslist: linux executable: IQScale61.exe type: default -'886670': +"886670": installDir: Proficient Paddles launch: - config: oslist: windows executable: Proficient Paddles.exe type: none -'886710': +"886710": installDir: Lavender launch: - - arguments: '-nohmd' + - arguments: "-nohmd" config: - osarch: '64' + osarch: "64" oslist: windows description: Desktop Mode - description_loc: - english: Desktop Mode executable: Lavender.exe type: option1 - - arguments: '-vr' + - arguments: "-vr" config: - osarch: '64' + osarch: "64" oslist: windows description: SteamVR Mode executable: Lavender.exe type: vr -'886720': {} -'886730': +"886720": {} +"886730": installDir: EPHEMERAL -FANTASY ON DARK- launch: - config: oslist: windows executable: config.exe type: none -'886780': +"886780": installDir: Jelly Wrestle launch: - config: oslist: windows executable: Jelly Wrestle.exe type: default -'886820': +"886820": installDir: Nelke and the Legendary Alchemists Ateliers of the New World launch: - executable: Nelke_and_the_Legendary_Alchemists_Launcher.exe @@ -403929,21 +398141,21 @@ nameLocalized: japanese: ネルケと伝説の錬金術士たち ~新たな大地のアトリエ~ tchinese: 奈爾克與傳說之鍊金術士們 ~新大地之鍊金工房~ -'886830': +"886830": installDir: ParkourMan launch: - config: oslist: windows executable: ParkourMan.exe type: default -'886840': {} -'886860': {} -'886890': {} -'886900': +"886840": {} +"886860": {} +"886890": {} +"886900": installDir: Chef launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: chefgame.exe type: default @@ -403952,18 +398164,18 @@ executable: ChefMac.app type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: chefgame.exe nameLocalized: schinese: 大厨 Chef -'886950': +"886950": installDir: Roman The Worm launch: - description: Launch executable: romantheworm.exe type: default -'886960': +"886960": installDir: Dragon_Spear launch: - config: @@ -403974,25 +398186,25 @@ oslist: macos executable: Dragon_Spear.app/Contents/MacOS/Dragon_Spear type: default -'886970': +"886970": installDir: Tomato Way 2 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TW2.exe type: default -'8870': +"8870": installDir: BioShock Infinite launch: - config: oslist: windows description: Launch BioShock Infinite - executable: Binaries\\Win32\\BioShockInfinite.exe + executable: "Binaries\\\\Win32\\\\BioShockInfinite.exe" - config: oslist: windows description: Launch BioShock Infinite Benchmarking Utility - executable: Binaries\\Win32\\Benchmark.bat + executable: "Binaries\\\\Win32\\\\Benchmark.bat" - config: oslist: macos description: Launch BioShock Infinite @@ -404000,28 +398212,26 @@ - config: oslist: linux description: Launch BioShock Infinite - executable: ./bioshock + executable: "./bioshock" - config: - betakey: 'qatest1,qatest2,dev2klauncherintegration' + betakey: "qatest1,qatest2,dev2klauncherintegration" oslist: windows description: Launch With 2KLauncher - description_loc: - english: Launch With 2KLauncher - executable: 2KLauncher\\LauncherPatcher.exe - workingdir: Binaries\\Win32 + executable: "2KLauncher\\\\LauncherPatcher.exe" + workingdir: "Binaries\\\\Win32" nameLocalized: japanese: バイオショック インフィニット コンプリート・エディション - koreana: '바이오쇼크 인피니트: 컴플리트 에디션' + koreana: "바이오쇼크 인피니트: 컴플리트 에디션" schinese: 生化奇兵:无限 完全版 tchinese: 生化奇兵:無限之城 完全版 -'887040': +"887040": installDir: Paper Planets launch: - config: oslist: windows executable: PaperPlanets.exe type: default -'887060': +"887060": installDir: Asterix XXL 2 launch: - config: @@ -404032,66 +398242,66 @@ oslist: macos executable: Bin/Mac_Master/xxl2.app type: default -'887090': +"887090": installDir: Blocks! Richard III launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Blocks! Richard III.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: Blocks! Richard III.exe type: default - config: oslist: macos - executable: Blocks! Richard III.app\\Contents\\MacOS\\Blocks! Richard III + executable: "Blocks! Richard III.app\\\\Contents\\\\MacOS\\\\Blocks! Richard III" type: none -'887160': +"887160": installDir: TheSunnyDay launch: - config: oslist: windows executable: Game.exe type: default -'887170': +"887170": installDir: Vortex Of Pain launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: VoP.exe type: none -'887210': {} -'887260': {} -'887280': +"887210": {} +"887260": {} +"887280": installDir: Epic Helicopter launch: - executable: EpicHelicopterCompilaciónParaSteam.exe type: none -'887300': +"887300": installDir: Bleeding Sun launch: - config: oslist: windows executable: BleedingSun.exe type: default -'887340': +"887340": installDir: Owl Watch launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: OwlWatch.exe type: default -'887370': +"887370": installDir: Element Space launch: - executable: ElementSpace.exe type: default -'887400': +"887400": installDir: The Great Geometric Multiverse Tour launch: - config: @@ -404106,8 +398316,8 @@ oslist: macos executable: The Great Geometric Multiverse Tour.app type: default -'887410': {} -'887420': +"887410": {} +"887420": installDir: Warman launch: - config: @@ -404115,19 +398325,19 @@ executable: Warman.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Warman.x86_64 type: default -'887440': +"887440": installDir: Fractal Chicken launch: - - arguments: '-s games.moon -game minesmenu' + - arguments: "-s games.moon -game minesmenu" config: oslist: windows executable: boxEngine.exe type: default -'887450': +"887450": installDir: Tunche launch: - config: @@ -404137,8 +398347,8 @@ nameLocalized: schinese: 密林传奇 tchinese: 密林传奇 -'887490': {} -'887510': +"887490": {} +"887510": installDir: Galencia launch: - config: @@ -404150,12 +398360,12 @@ description: Galencia (change controls & language) executable: test.bat type: none -'887520': +"887520": installDir: Seat of War launch: - executable: Seat of War.exe type: none -'887530': +"887530": installDir: President Yukino launch: - config: @@ -404166,65 +398376,57 @@ japanese: おっとり!?ドジっ子!?牧原幸乃の日常 schinese: 共享委员长 tchinese: 共享委員長 -'887550': +"887550": installDir: Dimetrosaur launch: - config: oslist: windows - executable: '${DIMETROSAUR}.exe' + executable: "${DIMETROSAUR}.exe" type: default -'887590': +"887590": installDir: BoxRunner launch: - config: oslist: macos description: Mac Version - description_loc: - english: Mac Version executable: BoxRunner_macOS.app/Contents/MacOS/BoxRunner type: default - config: - osarch: '32' + osarch: "32" oslist: windows description: Windows Version - description_loc: - english: Windows Version executable: BoxRunner_Win.exe type: default - config: betakey: beta oslist: macos description: Mac Beta Version - description_loc: - english: Mac Beta Version executable: BoxRunner_macOS.app/Contents/MacOS/BoxRunner type: option2 - config: betakey: beta - osarch: '64' + osarch: "64" oslist: windows description: Windows Beta Version - description_loc: - english: Windows Beta Version executable: BoxRunner_Win.exe type: option3 -'887630': +"887630": installDir: Harpoon Cat launch: - config: oslist: windows executable: HarpoonCat.exe type: default -'887660': +"887660": installDir: Brath Brain and Math launch: - config: oslist: windows executable: Brath.exe type: default -'887670': {} -'887680': {} -'887690': +"887670": {} +"887680": {} +"887690": installDir: Ashland launch: - arguments: LauncherStart @@ -404232,35 +398434,35 @@ oslist: windows executable: Tomb_Explore.exe type: none -'887700': {} -'887710': +"887700": {} +"887710": installDir: Ritter launch: - executable: Ritter.exe type: none -'887720': - installDir: Devil's Hunt +"887720": + installDir: "Devil's Hunt" launch: - config: oslist: windows executable: DevilsHuntUnreal.exe type: default -'887730': +"887730": installDir: HordeZombieOutbreak launch: - config: oslist: windows executable: Horde.exe type: none -'887740': +"887740": installDir: TigerEntertainment launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TigerEntertainmentForSteam.exe type: none -'887750': +"887750": installDir: Opus Mortem launch: - config: @@ -404269,50 +398471,50 @@ type: default - config: oslist: linux - executable: OpusMortem\\runner + executable: "OpusMortem\\\\runner" type: default -'887790': {} -'887800': +"887790": {} +"887800": installDir: Snooker 19 launch: - config: oslist: windows executable: Snooker19.exe type: default -'887820': +"887820": installDir: Double launch: - config: oslist: windows executable: Double.exe type: default -'887850': +"887850": installDir: TAL Arctic launch: - executable: TALarctic.exe type: none -'887870': +"887870": installDir: Retro Racers 2 launch: - config: oslist: windows executable: game.exe type: default -'887880': +"887880": installDir: OCD - On Completeness and Dissonance launch: - config: oslist: windows executable: ocd.exe type: default -'887890': +"887890": installDir: Puzzles By Axis Hyper launch: - config: oslist: windows executable: Puzzles By Axis Hyper.exe type: default -'887900': +"887900": installDir: egg is broken launch: - config: @@ -404321,70 +398523,70 @@ type: default - config: oslist: macos - executable: egg is broken.app\\Contents\\MacOS\\egg is broken + executable: "egg is broken.app\\\\Contents\\\\MacOS\\\\egg is broken" type: default -'887910': - installDir: Rite of Passage The Lost Tides Collector's Edition +"887910": + installDir: "Rite of Passage The Lost Tides Collector's Edition" launch: - config: oslist: windows executable: RiteOfPassage_TheLostTides_CE.exe type: default -'887920': - installDir: Maestro Music from the Void Collector's Edition +"887920": + installDir: "Maestro Music from the Void Collector's Edition" launch: - config: oslist: windows executable: Maestro_MusicFromTheVoid_CE.exe type: default -'887930': - installDir: PuppetShow Destiny Undone Collector's Edition +"887930": + installDir: "PuppetShow Destiny Undone Collector's Edition" launch: - config: oslist: windows executable: PuppetShow_DestinyUndone_CE.exe type: default -'887940': - installDir: Amaranthine Voyage The Obsidian Book Collector's Edition +"887940": + installDir: "Amaranthine Voyage The Obsidian Book Collector's Edition" launch: - config: oslist: windows executable: AmaranthineVoyage_TheObsidianBook_CE.exe type: default -'887950': - installDir: Danse Macabre Thin Ice Collector's Edition +"887950": + installDir: "Danse Macabre Thin Ice Collector's Edition" launch: - config: oslist: windows executable: DanseMacabre_ThinIce_CE.exe type: default -'887960': - installDir: Mystery Case Files Rewind Collector's Edition +"887960": + installDir: "Mystery Case Files Rewind Collector's Edition" launch: - config: oslist: windows executable: MysteryCaseFiles_Rewind_CE.exe type: default -'887970': +"887970": installDir: Generation Streets launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: bin-win64/streets64.exe type: default workingdir: bin-win64 - config: - osarch: '64' + osarch: "64" oslist: linux executable: bin-linux64-steamrt/run-streets64-steamrt.sh type: default workingdir: bin-linux64-steamrt -'8880': +"8880": installDir: Freedom Force launch: - executable: fforce.exe -'888010': +"888010": installDir: Tango The Adventure Game launch: - config: @@ -404393,17 +398595,17 @@ type: none - config: oslist: macos - executable: Tango.app\\Contents\\MacOS\\Tango + executable: "Tango.app\\\\Contents\\\\MacOS\\\\Tango" type: default -'888020': {} -'888030': +"888020": {} +"888030": installDir: Pilot Rudder VR launch: - config: oslist: windows executable: PilotRudder.exe type: vr -'888040': +"888040": installDir: Metal Fatigue launch: - config: @@ -404415,29 +398617,29 @@ description: Configure nGlide executable: nglide_config.exe type: none -'888070': +"888070": installDir: Railroad Tracks launch: - config: oslist: windows executable: Game.exe type: default -'888090': +"888090": installDir: Tree launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Tree.exe type: default -'888130': +"888130": installDir: Starport Delta launch: - config: oslist: windows executable: StarportDelta.exe type: default -'888150': +"888150": installDir: Space Hamster in Turmoil launch: - config: @@ -404452,29 +398654,29 @@ oslist: linux executable: Space_Hamster_in_Turmoil.sh type: default -'888200': +"888200": installDir: PSI Magic launch: - config: oslist: windows executable: Game.exe type: default -'888220': +"888220": installDir: MatchyGotchy Z launch: - config: oslist: windows executable: MatchyGotchy Z.exe type: default -'888250': +"888250": installDir: Ultimate War launch: - config: oslist: windows executable: Ultimate War.exe type: default -'888260': {} -'888310': +"888260": {} +"888310": installDir: Suitchi launch: - config: @@ -404485,14 +398687,14 @@ oslist: windows executable: windows/Suitchi_windows.exe type: default -'888380': +"888380": installDir: ZOLO - Zombies Only Live Once launch: - config: oslist: windows executable: Cartoon.exe type: vr -'888400': +"888400": installDir: World of War Battlegrounds launch: - config: @@ -404503,27 +398705,27 @@ oslist: macos executable: Battlegrounds.app type: none -'888480': +"888480": installDir: Ninja SpeedRush launch: - config: oslist: windows executable: Ninja SpeedRush.exe type: none -'888530': +"888530": installDir: Yaga launch: - executable: yaga.exe type: default -'888540': +"888540": installDir: Project 59 launch: - config: oslist: windows executable: Project59.exe type: vr -'888550': {} -'888560': +"888550": {} +"888560": installDir: sdk launch: - config: @@ -404534,7 +398736,7 @@ oslist: macos executable: Forest Rabbit.app type: default -'888570': +"888570": installDir: Zombie Head launch: - config: @@ -404542,31 +398744,31 @@ description: Launch executable: Zombie Head.exe type: none -'888610': +"888610": installDir: Oligopoly launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Oligopoly.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Oligopoly.x86_64 type: default -'888620': +"888620": installDir: Pilgrimage launch: - config: oslist: windows executable: Pilgrimage.exe type: default -'888630': +"888630": installDir: Another Sight launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Another Sight.exe type: default @@ -404574,43 +398776,43 @@ oslist: macos executable: AnotherSight.app type: default -'888640': +"888640": installDir: Lovestory launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Lovestory(x64).exe type: default - config: - osarch: '32' + osarch: "32" executable: Lovestory(x86).exe type: default -'888670': +"888670": installDir: Notified launch: - config: oslist: windows executable: Notified.exe type: default -'888690': +"888690": installDir: Guess who launch: - executable: Guesswho.exe type: default -'888710': +"888710": installDir: Pitch Perfect Ear Training launch: - config: oslist: windows executable: pitchPerfect.exe type: default -'888740': +"888740": installDir: FortOfTheNight launch: - executable: fortofthenight.exe type: default -'888750': +"888750": installDir: Seed of Amaranth launch: - config: @@ -404625,36 +398827,36 @@ oslist: linux executable: SeedOfAmaranth.sh type: none -'888760': +"888760": installDir: Dragonfly Chronicles launch: - config: oslist: windows - description: '0' + description: "0" executable: Dragonfly Chronicles.exe type: default - config: oslist: macos - executable: DragonflyChronicles.app\\Contents\\MacOS\\DragonflyChronicles + executable: "DragonflyChronicles.app\\\\Contents\\\\MacOS\\\\DragonflyChronicles" type: default -'888780': {} -'888790': +"888780": {} +"888790": installDir: Sabbat of the Witch launch: - executable: SabbatOfTheWitch.exe type: none -'888800': +"888800": installDir: SF77 launch: - config: oslist: windows executable: SF77.exe type: default -'888810': +"888810": installDir: Wetwork launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Wetwork.exe type: default @@ -404662,29 +398864,29 @@ oslist: macos executable: Wetwork.app type: default -'888880': +"888880": installDir: Summer Jigsaw Puzzles launch: - config: oslist: windows executable: Summer Jigsaw Puzzles.exe type: default -'888900': +"888900": installDir: ZYX STORY launch: - config: oslist: windows executable: ZYX STORY.exe type: default -'888910': {} -'888970': +"888910": {} +"888970": installDir: MiniCar Race launch: - config: oslist: windows executable: Minicar.exe type: none -'888990': +"888990": installDir: Ameagari no Hanaby launch: - config: @@ -404693,55 +398895,55 @@ type: default - config: oslist: macos - executable: hanaby.app\\Contents\\MacOS\\hanaby + executable: "hanaby.app\\\\Contents\\\\MacOS\\\\hanaby" type: default -'8890': +"8890": installDir: Freedom Force vs. the 3rd Reich launch: - executable: ffvt3r.exe -'889030': +"889030": installDir: Grand Kokoro - Episode 1 launch: - config: oslist: windows executable: nw.exe type: none -'889040': +"889040": installDir: FPV Air 2 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: FPVAir2.exe type: default -'889060': +"889060": installDir: Open Space 2D launch: - config: oslist: windows executable: Game.exe type: default -'889080': +"889080": installDir: Deity Empires launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Launcher64.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: Launcher32.exe type: default -'889100': - installDir: Pythagoras' Perpetual Motion Machine +"889100": + installDir: "Pythagoras' Perpetual Motion Machine" launch: - config: oslist: windows executable: Pitagora.exe type: default -'889130': +"889130": installDir: KnifeBoy launch: - config: @@ -404749,52 +398951,52 @@ description: Launch executable: KnifeBoy.exe type: none -'889150': +"889150": installDir: IgKnight Food Fight launch: - config: oslist: windows description: Launch - executable: .\\windows_content\\IgKnightFoodFight.exe + executable: ".\\\\windows_content\\\\IgKnightFoodFight.exe" type: vr -'889160': +"889160": installDir: ULTIRE Balls Out launch: - config: oslist: windows executable: ThirdPersonBall.exe type: default -'889170': +"889170": installDir: Battle Royale Builder launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: BattleRoyaleBuilder.exe type: default -'889210': +"889210": installDir: Two Wars launch: - config: oslist: windows executable: TwoWars.exe type: none -'889220': +"889220": installDir: A Stickman Reality launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Astickmanreality.exe type: vr -'889240': +"889240": installDir: Loot Box Simulator launch: - config: oslist: windows executable: Loot Box Simulator.exe type: default -'889260': +"889260": installDir: Bonkies launch: - config: @@ -404802,76 +399004,76 @@ description: Launch executable: Bonkies.exe type: default -'889270': {} -'889280': +"889270": {} +"889280": installDir: Marginalia launch: - config: oslist: windows executable: Marginalia.exe type: default -'889290': +"889290": installDir: Echoes World launch: - - arguments: '-windowed' + - arguments: "-windowed" config: oslist: windows executable: SteamWin.exe type: default -'889320': +"889320": installDir: The Plant launch: - config: oslist: windows executable: Plant.exe type: default -'889330': +"889330": installDir: Nerved launch: - config: oslist: windows executable: WindowsNoEditor/Nerved.exe type: none -'889360': {} -'889400': +"889360": {} +"889400": installDir: StickyBots launch: - config: oslist: windows - executable: blank1\\Binaries\\Win64\\blank1-Win64-Shipping.exe + executable: "blank1\\\\Binaries\\\\Win64\\\\blank1-Win64-Shipping.exe" type: default - config: betakey: beta oslist: windows - executable: blank1\\Binaries\\Win64\\blank1.exe + executable: "blank1\\\\Binaries\\\\Win64\\\\blank1.exe" type: default - config: oslist: macos - executable: blank1\\Binaries\\Mac\\blank1-Mac-Shipping.app + executable: "blank1\\\\Binaries\\\\Mac\\\\blank1-Mac-Shipping.app" type: default -'889450': +"889450": installDir: Centifeed launch: - config: oslist: windows executable: Centifeed.exe type: default -'889460': {} -'889470': +"889460": {} +"889470": installDir: Another world Truck driver launch: - config: oslist: windows executable: Another world Truck driver.exe type: default -'889480': +"889480": installDir: Virtual Virtual Reality launch: - config: oslist: windows executable: VirtualVirtualReality.exe type: vr -'889510': +"889510": installDir: Senran Kagura Burst ReNewal launch: - config: @@ -404879,35 +399081,35 @@ executable: SKBurstReNewal.exe type: none nameLocalized: - japanese: '閃乱カグラ Burst Re:Newal' -'889520': + japanese: "閃乱カグラ Burst Re:Newal" +"889520": installDir: Empire launch: - config: oslist: windows executable: Empire.exe type: default -'889530': +"889530": installDir: Sharp launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Sharp.exe type: default -'889600': +"889600": installDir: The Caligula Effect launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: COD.exe type: default nameLocalized: japanese: カリギュラ オーバードーズ -'889670': {} -'889680': {} -'889700': +"889670": {} +"889680": {} +"889700": installDir: Muv-Luv photonflowers launch: - config: @@ -404916,7 +399118,7 @@ type: none nameLocalized: japanese: マブラヴ photonflowers* -'889710': +"889710": installDir: Muv-Luv photonmelodies launch: - config: @@ -404925,16 +399127,16 @@ type: none nameLocalized: japanese: マブラヴ photonmelodies♮ -'889720': +"889720": installDir: Crypto Crisis launch: - config: - osarch: '32' + osarch: "32" oslist: linux executable: crypto_crisis.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: crypto_crisis.x86_64 type: default @@ -404946,7 +399148,7 @@ oslist: macos executable: crypto_crisis.app type: default -'889730': +"889730": installDir: dtmafia launch: - config: @@ -404958,67 +399160,63 @@ executable: dtmafia.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: dtmafia type: default -'889740': +"889740": installDir: The Oni Sellsword launch: - config: oslist: windows - executable: .\\windows_content\\Game.exe + executable: ".\\\\windows_content\\\\Game.exe" type: default -'889750': - installDir: BABYLON'S FALL +"889750": + installDir: "BABYLON'S FALL" launch: - executable: data/exe/Launcher.exe type: none -'889760': {} -'889770': +"889760": {} +"889770": installDir: UnHolY DisAsTeR launch: - config: oslist: windows executable: UnHolY DisAsTeR.exe type: default -'889790': +"889790": installDir: Incandescent 2 launch: - config: oslist: windows executable: Incandescent 2.exe type: default -'889850': +"889850": installDir: Save President From Rebels launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Rescuepresident.exe type: default -'889910': +"889910": installDir: Hell Pie launch: - - arguments: '-d3d12' + - arguments: "-d3d12" config: - osarch: '64' + osarch: "64" oslist: windows description: Hell Pie DirectX 12 - description_loc: - english: Hell Pie DirectX 12 executable: HellPie.exe type: option1 - - arguments: '-d3d11' + - arguments: "-d3d11" config: - osarch: '64' + osarch: "64" oslist: windows description: Hell Pie DirectX 11 - description_loc: - english: Hell Pie DirectX 11 executable: HellPie.exe type: option1 -'889970': +"889970": installDir: My Farm launch: - config: @@ -405029,30 +399227,30 @@ oslist: macos executable: MyFarm2018.app type: default -'889990': +"889990": installDir: RGBCELLS launch: - config: oslist: windows executable: RGBCELLS.exe type: default -'890010': {} -'890070': +"890010": {} +"890070": installDir: FallInLoveSeason1_Demo launch: - config: oslist: windows executable: FallInLoveSeason1_Demo.exe type: default -'890110': +"890110": installDir: Deicide launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: CharacterSystem.exe type: default -'890130': +"890130": installDir: Pawn of the Dead launch: - config: @@ -405064,11 +399262,11 @@ executable: Pawn of the Dead.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: PawnOfTheDead.x86_64 type: default -'890180': +"890180": installDir: Ecchi Cards launch: - config: @@ -405083,40 +399281,40 @@ oslist: linux executable: EcchiCards.x86 type: none -'890200': +"890200": installDir: Destruction Paper launch: - - executable: dpaper\\Destruction Paper.exe + - executable: "dpaper\\\\Destruction Paper.exe" type: config -'890210': +"890210": installDir: Kids Learn launch: - config: oslist: windows executable: kidslearn.exe type: default -'890220': +"890220": installDir: Math Fun launch: - config: oslist: windows executable: mathfun.exe type: default -'890280': +"890280": installDir: Myha Return to the Lost Island launch: - config: oslist: windows executable: Myha_Gold_01.exe type: default -'890300': +"890300": installDir: Kitrinos launch: - config: oslist: windows executable: Kitrinos.exe type: default -'890310': +"890310": installDir: Shadow Brawlers launch: - config: @@ -405129,7 +399327,7 @@ description: Linux executable: sb.x86_64 type: none -'890340': +"890340": installDir: Lovefield General Back to Work launch: - config: @@ -405144,7 +399342,7 @@ oslist: linux executable: Lovefield General.sh type: none -'890400': +"890400": installDir: Uncharted Waters Online launch: - arguments: steam @@ -405152,19 +399350,19 @@ oslist: windows executable: GVOnline.exe type: default -'890410': {} -'890470': +"890410": {} +"890470": installDir: SlaveMasterTG launch: - config: oslist: windows executable: Game.exe type: default -'890480': +"890480": installDir: Widget Satchel launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Widget Satchel.exe type: default @@ -405173,42 +399371,42 @@ executable: Widget Satchel.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Widget Satchel.x86_64 type: default -'890500': +"890500": installDir: Love ritual launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Game.exe type: default -'890510': {} -'890520': +"890510": {} +"890520": installDir: HDYLIEM launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: HDYLIEM.exe type: default -'890570': +"890570": installDir: Almost Alive launch: - config: oslist: windows executable: Almost_Alive.exe type: none -'890590': +"890590": installDir: Knight King Assassin launch: - config: oslist: windows executable: nw.exe type: default -'890630': +"890630": installDir: Perspectrum launch: - config: @@ -405223,53 +399421,53 @@ oslist: linux executable: launch.sh type: default -'890640': +"890640": installDir: Rampage of the Dead launch: - config: oslist: windows executable: Rampage of the Dead.exe type: none -'890660': {} -'890680': +"890660": {} +"890680": installDir: Mars Troopers launch: - config: oslist: windows executable: MarsTroopers.exe type: none -'890690': +"890690": installDir: ForgottenWorld launch: - config: oslist: windows executable: Forgotten World © .exe type: default -'890700': - installDir: Caffeine Victoria's Legacy +"890700": + installDir: "Caffeine Victoria's Legacy" launch: - config: oslist: windows executable: Caffeine_Victorias_Legacy.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Caffeine_Victorias_Legacy.sh type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Caffeine_Victorias_Legacy.sh type: default - config: oslist: macos - executable: Caffeine_Victorias_Legacy.app\\Contents\\MacOS\\Caffeine_Victorias_Legacy + executable: "Caffeine_Victorias_Legacy.app\\\\Contents\\\\MacOS\\\\Caffeine_Victorias_Legacy" type: default nameLocalized: schinese: 咖啡因之城 tchinese: 咖啡因之城 -'890710': +"890710": installDir: Ecchi Puzzle launch: - config: @@ -405284,7 +399482,7 @@ oslist: linux executable: EcchiPuzzle.x86 type: none -'890720': +"890720": installDir: In Other Waters launch: - config: @@ -405293,10 +399491,10 @@ type: default - config: oslist: macos - executable: In Other Waters.app\\Contents\\MacOS\\In Other Waters + executable: "In Other Waters.app\\\\Contents\\\\MacOS\\\\In Other Waters" type: default -'890730': {} -'890740': +"890730": {} +"890740": installDir: A Gentlemanly Adventure launch: - config: @@ -405307,38 +399505,38 @@ oslist: linux executable: launcher.sh type: none -'890750': - installDir: Lily's Night Off +"890750": + installDir: "Lily's Night Off" launch: - config: oslist: windows - executable: Lily's Night Off.exe + executable: "Lily's Night Off.exe" type: none - config: oslist: macos - executable: Contents\\MacOS\\Lily's Night Off + executable: "Contents\\\\MacOS\\\\Lily's Night Off" type: none - config: oslist: linux - executable: Lily's Night Off.x86 + executable: "Lily's Night Off.x86" type: none -'890780': {} -'890800': +"890780": {} +"890800": installDir: Park Simulator launch: - config: oslist: windows executable: Country_Park_RM.exe type: default -'890820': +"890820": installDir: Valor Time launch: - - arguments: '-steam' + - arguments: "-steam" config: oslist: windows executable: ValorTime.exe type: default -'890840': +"890840": installDir: Ilhumia launch: - config: @@ -405349,14 +399547,14 @@ oslist: macos executable: Ilhumia.app/Contents/MacOS/Ilhumia type: default -'890880': +"890880": installDir: FROSTBITE Deadly Climate launch: - config: oslist: windows executable: Frostbite_AlexO.exe type: default -'890900': +"890900": installDir: Whacker Guy Distance Hunter launch: - config: @@ -405365,44 +399563,44 @@ executable: WhackerGuyDH.app type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: WhackerGuyDH.exe type: default -'890910': +"890910": installDir: Kill The Monster launch: - config: oslist: windows executable: KTM.exe type: default -'890920': +"890920": installDir: Glitch launch: - - arguments: '-windowed' + - arguments: "-windowed" executable: Glitch.exe type: default -'890930': +"890930": installDir: Whiskered Away launch: - config: oslist: windows - executable: \\Whiskered Away\\Whiskered Away.exe + executable: "\\\\Whiskered Away\\\\Whiskered Away.exe" type: default workingdir: Whiskered Away -'890940': +"890940": installDir: Romancing Monarchy launch: - executable: Game.exe type: none -'890970': +"890970": installDir: Oakwood launch: - config: oslist: windows executable: Oakwood.exe type: default -'891020': +"891020": installDir: Handball 21 launch: - executable: Exe/Handball 21.exe @@ -405411,7 +399609,7 @@ - executable: Exe/ResolutionsOptions.exe type: config workingdir: Exe -'891040': +"891040": installDir: Pool 2D - Poolians launch: - config: @@ -405434,72 +399632,72 @@ tchinese: 檯球2D - Poolians turkish: Bilardo 2D - Poolians vietnamese: Bi-a 2D - Poolians -'891050': +"891050": installDir: Deplau launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Deplau.exe type: vr -'891090': +"891090": installDir: JUSTaGAME launch: - executable: JustaGame.exe -'891100': +"891100": installDir: Ray of Light launch: - config: oslist: windows executable: Ray of Light.exe type: default -'891110': +"891110": installDir: Hell Knights launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Hell Knights executable: HellKnights.exe type: default -'891120': +"891120": installDir: Watching Delusion launch: - config: oslist: windows executable: Watching_Delusion.exe type: default -'891130': +"891130": installDir: SUPER FLAIL launch: - config: oslist: windows executable: SuperFlail.exe type: default -'891150': {} -'891170': +"891150": {} +"891170": installDir: Witch & 66 Mushrooms launch: - executable: player.exe type: none nameLocalized: japanese: 魔女と66のキノコ -'891180': +"891180": installDir: PINPIN BALLBALL launch: - executable: player.exe type: default -'891190': +"891190": installDir: CROSS X CARROT launch: - executable: player.exe type: default -'891200': +"891200": installDir: Bike Dash Excite! launch: - executable: player.exe type: default -'891220': +"891220": installDir: pla_toon launch: - config: @@ -405510,14 +399708,14 @@ oslist: macos executable: pla_toon.app type: none - - arguments: '-log' + - arguments: "-log" config: betakey: dedicated_server oslist: windows description: Host A Dedicated Server - executable: \\pla_toon\\Binaries\\Win64\\pla_toonServer.exe + executable: "\\\\pla_toon\\\\Binaries\\\\Win64\\\\pla_toonServer.exe" type: none -'891240': +"891240": installDir: Hentai Defense launch: - config: @@ -405532,40 +399730,40 @@ oslist: linux executable: HentaiDefense.x86 type: none -'891270': +"891270": installDir: Draft Day Sports Pro Golf launch: - config: oslist: windows executable: DDSPG.exe type: default -'891290': +"891290": installDir: Easy Racing launch: - config: oslist: windows executable: Easy Racing.exe type: default -'891310': +"891310": installDir: Medical verdict launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: MEDIC.exe type: default -'891320': +"891320": installDir: Echoes in White launch: - config: oslist: windows executable: EchoesInWhite.exe type: vr -'891330': +"891330": installDir: Fast Dust launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: fastdust.exe type: none @@ -405574,12 +399772,12 @@ executable: fastdust.app type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: Linux 64 bit executable: fastdust.x86_64 type: none -'891340': +"891340": installDir: Roidrekt launch: - config: @@ -405587,46 +399785,46 @@ description: Launch executable: Roidrekt.exe type: default -'891350': +"891350": installDir: JUST DUSH launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: JUSTDASH.exe type: none -'891370': +"891370": installDir: The Last Hex launch: - config: oslist: windows executable: TheLastHex.exe type: default -'891380': +"891380": installDir: Snake The Adventure new launch: - - arguments: '-windowed' + - arguments: "-windowed" config: oslist: windows executable: nw.exe type: default -'891430': +"891430": installDir: Rogue Heist launch: - config: oslist: windows executable: RogueHeist.exe type: default -'891460': {} -'891470': +"891460": {} +"891470": installDir: Falling Blocks launch: - config: oslist: windows executable: FallingBlocks.exe type: none -'891510': - installDir: Love's Sweet Garnish +"891510": + installDir: "Love's Sweet Garnish" launch: - config: oslist: windows @@ -405634,7 +399832,7 @@ type: none nameLocalized: japanese: 恋ニ、甘味ヲソエテ -'891520': +"891520": installDir: Tranquil Garden launch: - config: @@ -405642,16 +399840,16 @@ description: Launch executable: Game.exe type: default -'891570': {} -'891580': {} -'891590': {} -'891600': {} -'891610': {} -'891620': {} -'891640': {} -'891650': {} -'891670': {} -'891700': +"891570": {} +"891580": {} +"891590": {} +"891600": {} +"891610": {} +"891620": {} +"891640": {} +"891650": {} +"891670": {} +"891700": installDir: Mosaics Galore. Challenging journey launch: - config: @@ -405662,7 +399860,7 @@ oslist: macos executable: Mosaics Galore. Challenging journey.app type: default -'891710': +"891710": installDir: Thanksgiving Day Mosaic launch: - config: @@ -405673,7 +399871,7 @@ oslist: macos executable: Thanksgiving Day Mosaic.app type: default -'891720': +"891720": installDir: Pirate Mosaic Puzzle. Caribbean Treasures launch: - config: @@ -405684,31 +399882,31 @@ oslist: macos executable: Pirate Mosaic Puzzle. Caribbean Treasures.app type: default -'891790': +"891790": installDir: Devil Engine launch: - config: oslist: windows executable: DevilEngine.exe type: default -'891850': +"891850": installDir: AstrelaStarlight launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ASL.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: asllx.x86_64 type: default - config: oslist: macos - executable: Astrela Starlight.app\\Contents\\MacOS\\ASL + executable: "Astrela Starlight.app\\\\Contents\\\\MacOS\\\\ASL" type: default -'891860': +"891860": installDir: Riddles of the Owls Kingdom launch: - config: @@ -405719,10 +399917,10 @@ oslist: macos executable: Riddles Of The Owls Kingdom.app type: default -'891870': +"891870": installDir: King of Phoenix launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows executable: nw.exe @@ -405731,63 +399929,63 @@ oslist: macos executable: nwjs.app type: none -'891890': {} -'891920': {} -'891950': +"891890": {} +"891920": {} +"891950": installDir: Wagers of War launch: - config: oslist: windows executable: Wagers of War.exe type: default -'891960': +"891960": installDir: WebbVR The James Webb Space Telescope Virtual Experience launch: - config: oslist: windows executable: WebbVR.exe type: vr -'891970': {} -'891990': +"891970": {} +"891990": installDir: Rusty Runner launch: - executable: Rusty Runner.exe type: none -'892020': +"892020": installDir: Robots 2 Unknown World launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Robots2.exe type: default -'892130': +"892130": installDir: The Searcher Wild West Adventure launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TSWWA.exe type: default -'892160': +"892160": installDir: BareBoobBrawlerz_PC launch: - executable: PClaw_v05.exe type: none -'892170': +"892170": installDir: ShapeSim launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ShapeSim.exe type: vr - config: - osarch: '64' + osarch: "64" oslist: windows executable: ShapeSim.exe type: default -'892180': +"892180": installDir: Powernode launch: - config: @@ -405796,41 +399994,41 @@ type: none - config: oslist: macos - executable: Powernode.app\\Contents\\MacOS\\Powernode + executable: "Powernode.app\\\\Contents\\\\MacOS\\\\Powernode" type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: Powernode.x86_64 type: none -'892200': +"892200": installDir: UFO Combat 2000 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: UFOCBT.exe type: default -'892210': +"892210": installDir: GunGrave VR launch: - config: oslist: windows executable: GG.exe type: vr -'892380': +"892380": installDir: Dr Greenstuff launch: - executable: DrGreenstuff.exe type: none -'892420': +"892420": installDir: XiuXian launch: - config: oslist: windows executable: 懒人修仙传.exe type: default -'892440': +"892440": installDir: Exodus Proxima Centauri launch: - config: @@ -405843,40 +400041,40 @@ description: Launch executable: Exodus Proxima Centauri.exe type: default -'892460': +"892460": installDir: TwoPlay Mahjong All launch: - config: oslist: windows executable: Mahjong.exe type: default -'892470': +"892470": installDir: BVRGER VAN launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: bVRgerVan.exe type: vr -'892480': +"892480": installDir: Cursed Queen Wicked Witch launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: - osarch: '64' + osarch: "64" oslist: windows - description: 'Cursed Queen Wicked Witch ' + description: "Cursed Queen Wicked Witch " executable: nw.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows - description: 'Cursed Queen : Wicked Witch (no steam overlay)' + description: "Cursed Queen : Wicked Witch (no steam overlay)" executable: nw.exe type: option1 nameLocalized: - french: 'Reine Maudite : Sorciere Malefique' -'892490': + french: "Reine Maudite : Sorciere Malefique" +"892490": installDir: Fish Catcher launch: - config: @@ -405886,16 +400084,16 @@ nameLocalized: schinese: Fish Catcher 飞鱼捕手 tchinese: Fish Catcher 飛魚捕手 -'892500': {} -'892510': +"892500": {} +"892510": installDir: Slay Together launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SlayTogether.exe type: default -'892550': +"892550": installDir: Beauty and the Beast launch: - config: @@ -405906,36 +400104,36 @@ oslist: macos executable: Beauty and the Beast.app type: none -'892560': +"892560": installDir: PaulPaul - Act 1 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: PaulPaulv1.1.exe type: vr -'892570': {} -'892630': +"892570": {} +"892630": installDir: Mojo Hanako launch: - executable: game.exe type: none -'892640': - installDir: FAN'CIE VEER! +"892640": + installDir: "FAN'CIE VEER!" launch: - config: oslist: windows - executable: FAN'CIE VEER!.exe + executable: "FAN'CIE VEER!.exe" type: default -'892650': +"892650": installDir: Play With Kizami launch: - - arguments: '-fontcharset=DEFAULT_CHARSET' + - arguments: "-fontcharset=DEFAULT_CHARSET" config: oslist: windows executable: game.exe type: default -'892690': +"892690": installDir: Daemon 9 launch: - config: @@ -405950,8 +400148,8 @@ oslist: linux executable: daemon_9 type: default -'892740': {} -'892760': +"892740": {} +"892760": installDir: Seed of Evil launch: - config: @@ -405962,7 +400160,7 @@ japanese: 花開く魔種 schinese: 花开之魔种 tchinese: 花開之魔種 -'892780': +"892780": installDir: Sanguine Sanctum launch: - config: @@ -405973,18 +400171,18 @@ oslist: macos executable: SanguineSanctum.app type: none -'892830': +"892830": installDir: VRITRA COMPLETE EDITION launch: - config: oslist: windows executable: windows_content/VritraCompleteEdition/VritraCompleteEdition.exe type: default -'892860': +"892860": installDir: Hot Brass launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Hot Brass.exe type: none @@ -405992,14 +400190,14 @@ oslist: macos executable: Hot Brass.app type: none -'892880': +"892880": installDir: Chocolate makes you happy 7 launch: - config: oslist: windows executable: Chocolate makes you happy 7.exe type: default -'892910': +"892910": installDir: Space Wars launch: - config: @@ -406008,19 +400206,19 @@ type: default - config: oslist: macos - executable: lastmac.app\\Contents\\MacOS\\lastmac + executable: "lastmac.app\\\\Contents\\\\MacOS\\\\lastmac" type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Space_Wars.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Space_Wars.x86 type: default -'892930': +"892930": installDir: Sonar Beat launch: - config: @@ -406031,24 +400229,24 @@ oslist: macos executable: Sonar Beat.app type: default -'892960': +"892960": installDir: Dimension Of Gameth launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: DOG.exe type: default -'892970': +"892970": installDir: Valheim launch: - config: - osarch: '64' + osarch: "64" oslist: linux executable: valheim.x86_64 type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: valheim.exe type: default @@ -406056,25 +400254,23 @@ oslist: macos executable: valheim.app type: default - - arguments: '-force-glcore' + - arguments: "-force-glcore" config: - osarch: '64' + osarch: "64" oslist: linux description: Valheim using OpenGL executable: valheim.x86_64 type: option1 - - arguments: '-force-vulkan' + - arguments: "-force-vulkan" config: - osarch: '64' + osarch: "64" oslist: windows description: Valheim using Vulkan - description_loc: - english: Valheim using Vulkan executable: valheim.exe type: option1 nameLocalized: - schinese: 'Valheim: 英灵神殿' -'892980': + schinese: "Valheim: 英灵神殿" +"892980": installDir: My Heart Grows Fonder launch: - config: @@ -406089,13 +400285,13 @@ oslist: macos executable: MHGF.app type: default -'8930': - installDir: Sid Meier's Civilization V +"8930": + installDir: "Sid Meier's Civilization V" launch: - config: betakey: legacy oslist: windows - description: Sid Meier's Civilization V - Legacy Launcher + description: "Sid Meier's Civilization V - Legacy Launcher" executable: Launcher.exe type: default - config: @@ -406104,50 +400300,50 @@ - config: oslist: linux description: Launch - executable: ./Civ5XP + executable: "./Civ5XP" - config: - osarch: '64' + osarch: "64" oslist: windows executable: LaunchPad/LaunchPad.exe type: default workingdir: LaunchPad - - arguments: '--launchConfig Config/civ5/config.bin' + - arguments: "--launchConfig Config/civ5/config.bin" config: betakey: ltest - osarch: '64' + osarch: "64" oslist: windows description: Launchconfig launchpad executable: LaunchPad/LaunchPad.exe type: option1 workingdir: LaunchPad -'893010': - installDir: Slave's Sword +"893010": + installDir: "Slave's Sword" launch: - config: oslist: windows executable: Game.exe type: default nameLocalized: - japanese: Slave's Sword~自由都市編~ + japanese: "Slave's Sword~自由都市編~" schinese: 奴隶之剑 tchinese: 奴隸之劍 -'893020': - installDir: Slave's Sword 2 +"893020": + installDir: "Slave's Sword 2" launch: - executable: Game.exe type: default nameLocalized: - japanese: Slave's Sword 2~帝国革命編~ + japanese: "Slave's Sword 2~帝国革命編~" schinese: 奴隶之剑2 tchinese: 奴隸之劍2 -'893030': +"893030": installDir: Music Racer launch: - config: oslist: windows executable: Music Racer.exe type: none -'893040': +"893040": installDir: Jelly Wants More launch: - config: @@ -406156,47 +400352,47 @@ type: default - config: oslist: macos - executable: Jelly Wants More.app\\Contents\\MacOS\\Jelly Wants More + executable: "Jelly Wants More.app\\\\Contents\\\\MacOS\\\\Jelly Wants More" type: default -'893050': - installDir: Hasbro's BATTLESHIP +"893050": + installDir: "Hasbro's BATTLESHIP" launch: - config: oslist: windows executable: Battleship.exe type: default -'893060': +"893060": installDir: WAyE launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: WAyE.exe type: none -'893070': +"893070": installDir: The End launch: - config: oslist: windows executable: the_end_.exe type: default -'893090': +"893090": installDir: Mad Factory launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: MadFactory.exe type: vr -'893110': {} -'893120': +"893110": {} +"893120": installDir: Synthrun launch: - config: oslist: windows executable: Synthrun.exe type: default -'893140': +"893140": installDir: Gold Digger Maze launch: - config: @@ -406205,20 +400401,20 @@ type: none - config: oslist: macos - executable: Gold Digger Maze.app\\Contents\\MacOS\\Gold Digger Maze + executable: "Gold Digger Maze.app\\\\Contents\\\\MacOS\\\\Gold Digger Maze" type: none - config: oslist: linux executable: Gold Digger Maze.x86 type: none -'893150': +"893150": installDir: Fury Strike launch: - config: oslist: windows executable: FuryStrike.exe type: none -'893170': +"893170": installDir: MYSTERY HOUSE SECRET STEALTH launch: - config: @@ -406229,27 +400425,27 @@ oslist: macos executable: MYSTERY HOUSE SECRET STEALTH.app type: none -'893180': +"893180": installDir: CatherineClassic launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: Catherine.exe type: default -'893330': +"893330": installDir: Voxel Race launch: - executable: Voxel Race.exe type: none -'893350': +"893350": installDir: Malfortune launch: - config: oslist: windows executable: Malfortune.exe type: default -'893360': +"893360": installDir: The Mansion launch: - config: @@ -406260,14 +400456,14 @@ oslist: linux executable: TheMansion.sh type: default -'893370': +"893370": installDir: Absolute Adventure Zero launch: - config: oslist: windows executable: Absolute Adventure Zero.exe type: default -'893390': +"893390": installDir: Meridian 59 launch: - config: @@ -406275,68 +400471,68 @@ oslist: windows executable: Meridian.exe type: none -'893420': +"893420": installDir: Harvested launch: - config: oslist: windows executable: Harvested.exe type: none -'893450': +"893450": installDir: Life After The Living launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: LATL.exe type: default -'893460': +"893460": installDir: NightmareBullet launch: - config: oslist: windows executable: NightmareBullet.exe type: none -'893470': +"893470": installDir: Salary Man Escape launch: - - arguments: '-nohmd' + - arguments: "-nohmd" config: - osarch: '64' + osarch: "64" oslist: windows executable: SalaryMan.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: SalaryMan.exe type: vr -'893480': +"893480": installDir: For the Revenge launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: For the Revenge.exe type: none -'893490': +"893490": installDir: Team A.R.G. Anthology launch: - config: - osarch: '64' + osarch: "64" oslist: linux - executable: ./anthology + executable: "./anthology" type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: anthology.exe type: default - config: oslist: macos - executable: ./anthology-osx + executable: "./anthology-osx" type: default -'893500': +"893500": installDir: Reign of the Succubus launch: - config: @@ -406346,7 +400542,7 @@ nameLocalized: schinese: 魅魔栖息的小岛 tchinese: 魅魔棲息的小島 -'893510': +"893510": installDir: Waifu Bay Resort launch: - config: @@ -406355,95 +400551,95 @@ type: default - config: oslist: macos - executable: Waifu Bay Resort.app\\Contents\\MacOS\\Waifu Bay Resort + executable: "Waifu Bay Resort.app\\\\Contents\\\\MacOS\\\\Waifu Bay Resort" type: default -'893520': +"893520": installDir: CreativeDestruction launch: - config: oslist: windows executable: client.exe type: none -'893570': +"893570": installDir: Short Life launch: - config: oslist: windows executable: short_life.exe type: none -'893590': +"893590": installDir: Monopolist Technological Revolution launch: - config: oslist: windows executable: Monopolist Technological Revolution.exe type: default -'893610': +"893610": installDir: Into the Fray launch: - config: oslist: windows executable: IntoTheFray.exe type: none -'893620': - installDir: Azurael's Circle Chapter 2 +"893620": + installDir: "Azurael's Circle Chapter 2" launch: - config: oslist: windows executable: Game.exe type: default -'893640': +"893640": installDir: Dances with Butterflies VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: DancesWithButterflies.exe type: vr -'893650': +"893650": installDir: CSI VR Crime Scene Investigation launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: CSI VR Crime Scene Investigation.exe type: othervr - config: - osarch: '64' + osarch: "64" oslist: windows executable: CSI VR Crime Scene Investigation.exe type: vr -'893670': {} -'893680': +"893670": {} +"893680": installDir: Project Warlock launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: pw_x64.exe type: default -'893690': +"893690": installDir: Rikki & Vikki launch: - config: oslist: windows executable: Rikki & Vikki.exe type: default -'893710': +"893710": installDir: Mercenary Leto launch: - config: oslist: windows executable: Mercenary Leto.exe type: default -'893720': +"893720": installDir: One Hand Clapping launch: - config: oslist: windows executable: One Hand Clapping.exe type: none -'893730': +"893730": installDir: Viki Spotter Camping launch: - config: @@ -406452,13 +400648,13 @@ type: none - config: oslist: macos - executable: Viki Spotter - Camping.app\\Contents\\MacOS\\Viki Spotter - Camping + executable: "Viki Spotter - Camping.app\\\\Contents\\\\MacOS\\\\Viki Spotter - Camping" type: none - config: oslist: linux executable: Viki Spotter - Camping.x86 type: none -'893740': +"893740": installDir: Memory Trainer launch: - config: @@ -406467,13 +400663,13 @@ type: none - config: oslist: macos - executable: Memory Trainer.app\\Contents\\MacOS\\Memory Trainer + executable: "Memory Trainer.app\\\\Contents\\\\MacOS\\\\Memory Trainer" type: none - config: oslist: linux executable: Memory Trainer.x86 type: none -'893790': +"893790": installDir: Newfound Courage launch: - config: @@ -406482,21 +400678,21 @@ type: default - config: oslist: macos - executable: Contents\\MacOS\\Newfound Courage + executable: "Contents\\\\MacOS\\\\Newfound Courage" type: default - config: oslist: windows - ownsdlc: '1119960' - description: '[DLC] Winter''s Fair' - executable: Newfound Courage - Winter's Fair.exe + ownsdlc: "1119960" + description: "[DLC] Winter's Fair" + executable: "Newfound Courage - Winter's Fair.exe" type: option1 - config: oslist: macos - ownsdlc: '1119960' - description: '[DLC] Winter''s Fair' - executable: DLC\\Contents\\MacOS\\Winter's Fair + ownsdlc: "1119960" + description: "[DLC] Winter's Fair" + executable: "DLC\\\\Contents\\\\MacOS\\\\Winter's Fair" type: option1 -'893810': +"893810": installDir: Chrono Project launch: - config: @@ -406511,7 +400707,7 @@ oslist: macos executable: ChronoProject.app type: default -'893850': +"893850": installDir: The Longing launch: - config: @@ -406529,43 +400725,43 @@ nameLocalized: japanese: ザ・ロンギング schinese: 漫长等待 -'893870': +"893870": installDir: Trials of Ascension Exile launch: - config: betakey: default - osarch: '64' + osarch: "64" oslist: windows executable: Exile.exe type: default - config: betakey: beta - osarch: '64' + osarch: "64" oslist: windows executable: Exile.exe type: default - config: betakey: default - osarch: '64' + osarch: "64" oslist: windows description: Host Island executable: host-island.bat type: server - - arguments: '--internal' + - arguments: "--internal" config: betakey: development - osarch: '64' + osarch: "64" oslist: windows executable: Exile.exe type: default -'893900': +"893900": installDir: Astral Gunners launch: - config: oslist: windows executable: astralgunners.exe type: default -'893940': +"893940": installDir: SUPER GMA launch: - config: @@ -406574,25 +400770,25 @@ type: default - config: oslist: windows - executable: ..\\PAUSED\\SUPER GMA - PAUSED.exe + executable: "..\\\\PAUSED\\\\SUPER GMA - PAUSED.exe" type: option1 -'893950': +"893950": installDir: RUSSI ARTYOM SIMULATOR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: RussiArtyomSimulator.exe type: default -'893960': +"893960": installDir: Running Naked Simulator 2019 launch: - - arguments: '-fullscreen' + - arguments: "-fullscreen" config: oslist: windows executable: Running Naked Simulator 2019.exe type: default -'894000': +"894000": installDir: Night of the Blood Moon launch: - config: @@ -406607,37 +400803,37 @@ oslist: linux executable: NotBM type: default -'894010': +"894010": installDir: Battle Of Worldviews launch: - config: oslist: windows executable: Battle Of Worldviews.exe type: default -'894020': - installDir: Death's Door +"894020": + installDir: "Death's Door" launch: - config: oslist: windows executable: DeathsDoor.exe type: none -'894050': {} -'894070': +"894050": {} +"894070": installDir: Unmanned helicopter launch: - config: oslist: windows executable: UNMANNED HELICOPTER.exe type: config -'894090': +"894090": installDir: Maze Gold Run launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: MazeGoldRun.exe type: default -'894110': +"894110": installDir: PIDO1 launch: - config: @@ -406652,87 +400848,87 @@ oslist: linux executable: PIDO1.x86 type: none -'894120': +"894120": installDir: GhostmanTheCouncilCalamity launch: - config: oslist: windows executable: Rebut And Ghostman.exe type: none -'894160': +"894160": installDir: cheese chasers launch: - config: oslist: windows executable: cheese chasers.exe type: default -'894200': {} -'894270': +"894200": {} +"894270": installDir: BoT launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: BoT.exe type: default -'894310': +"894310": installDir: Finding Light launch: - config: oslist: windows executable: Game.exe type: default -'894320': {} -'894330': +"894320": {} +"894330": installDir: One Hunt launch: - config: oslist: windows executable: One Hunt.exe type: default -'894340': +"894340": installDir: BeatTheSong launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: BeatTheSong.exe type: none -'894350': {} -'894360': +"894350": {} +"894360": installDir: ActionpaintVR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ActionpaintVR.exe type: vr -'894370': {} -'894380': +"894370": {} +"894380": installDir: Exoplanet launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Exoplanet.exe type: vr -'894390': +"894390": installDir: Bernie’s Nightmare launch: - config: oslist: windows - description: 'Bernie''s Nightmare, a horror game by Kevin Yang Games.' - executable: Bernie's Nightmare.exe + description: "Bernie's Nightmare, a horror game by Kevin Yang Games." + executable: "Bernie's Nightmare.exe" type: default - config: oslist: macos - executable: Bernie's Nightmare.app\\Contents\\MacOS\\Bernie's Nightmare + executable: "Bernie's Nightmare.app\\\\Contents\\\\MacOS\\\\Bernie's Nightmare" type: default - config: oslist: linux - executable: Bernie's Nightmare.x86 + executable: "Bernie's Nightmare.x86" type: default -'894420': +"894420": installDir: Duke Dashington Remastered launch: - config: @@ -406743,8 +400939,8 @@ oslist: macos executable: Duke Dashington Remastered.app type: default -'894450': {} -'894460': +"894450": {} +"894460": installDir: Crimson Gray Dusk and Dawn launch: - config: @@ -406759,18 +400955,18 @@ oslist: linux executable: Crimson Gray 1.5.sh type: default -'894540': +"894540": installDir: ShyChess launch: - config: oslist: windows executable: Game.exe type: none -'894570': +"894570": installDir: Supaplex HARD launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: SupaplexHard.exe type: default @@ -406779,16 +400975,16 @@ executable: SupaplexHard.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: SupaplexHard.x86_64 type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: SupaplexHard.exe type: default -'894610': +"894610": installDir: Hungry Kitty Donuts Mania launch: - config: @@ -406799,67 +400995,67 @@ oslist: macos executable: HungryKittyDonutsMania.app type: default -'894620': +"894620": installDir: ATONE launch: - executable: Atone.exe -'894630': +"894630": installDir: Final Theory launch: - config: oslist: windows executable: FinalTheory.exe type: default -'894730': +"894730": installDir: Windows Content launch: - config: oslist: windows executable: NoahsArk.exe type: default -'894740': +"894740": installDir: Cosmic Ray launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Cosmic Ray.exe type: none -'894750': +"894750": installDir: L_Way launch: - config: oslist: windows executable: L_Way/L-Way.exe type: default -'894790': +"894790": installDir: Invaders From Outer Space launch: - config: oslist: windows executable: invaders.exe type: default -'894820': +"894820": installDir: Trumpy Wall launch: - executable: TrumpyWall.exe type: none -'894830': +"894830": installDir: Hanz Puppetguns launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: HANZ.exe type: none -'894890': +"894890": installDir: Stalked at Night launch: - config: oslist: windows - executable: SaN\\SaN.exe + executable: "SaN\\\\SaN.exe" type: default -'894900': +"894900": installDir: Speedy Girls - Dream Team launch: - config: @@ -406870,14 +401066,14 @@ oslist: macos executable: Speedy Girls - Dream Team.app/Contents/MacOS/Speedy Girls - Dream Team type: default -'894920': +"894920": installDir: ZKILLER launch: - config: oslist: windows executable: ZKILLER.exe type: none -'894930': +"894930": installDir: The Cage 笼 launch: - description: The Cage @@ -406886,7 +401082,7 @@ - description: Description file executable: tools.txt type: option2 -'894940': +"894940": installDir: Littlewood launch: - config: @@ -406900,13 +401096,13 @@ type: none - config: oslist: macos - executable: Littlewood.app\\Contents\\MacOS\\Littlewood + executable: "Littlewood.app\\\\Contents\\\\MacOS\\\\Littlewood" type: none -'894960': +"894960": installDir: EvilReap launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: EvilReapV1.exe type: default @@ -406914,101 +401110,101 @@ type: none nameLocalized: english: Evil Reap -'895010': {} -'895060': +"895010": {} +"895060": installDir: My House launch: - executable: My House.exe type: none -'895080': +"895080": installDir: Warrecs launch: - config: oslist: windows executable: warrecs.exe type: default -'895120': +"895120": installDir: Dog Jam launch: - config: oslist: windows executable: Dog Jam.exe type: default -'895140': +"895140": installDir: JJBoom launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: JJBoom.exe type: none - config: oslist: macos - executable: JJBoom.app\\Contents\\MacOS\\JJBoom + executable: "JJBoom.app\\\\Contents\\\\MacOS\\\\JJBoom" type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: JJBoom.exe type: none -'895150': +"895150": installDir: EndlessBattle launch: - config: oslist: windows executable: cos.exe type: default -'895160': {} -'895170': +"895160": {} +"895170": installDir: Drop_Up launch: - config: oslist: windows executable: dropup.exe type: none - - arguments: '-game /Applications/DropUp/GameAssetsMac.zip' + - arguments: "-game /Applications/DropUp/GameAssetsMac.zip" config: oslist: macos executable: YoYo Runner.app type: default - config: oslist: linux - executable: 'dropup\\assets\\game.unx ' + executable: "dropup\\\\assets\\\\game.unx " type: none -'895180': +"895180": installDir: Majin Woman launch: - config: oslist: windows executable: uki3.exe type: default -'895200': +"895200": installDir: Swords of Gargantua launch: - - arguments: '-hmd=steamvr -login=Steam' + - arguments: "-hmd=steamvr -login=Steam" config: oslist: windows executable: Gargantua.exe type: vr nameLocalized: japanese: ソード・オブ・ガルガンチュア -'895210': +"895210": installDir: On Board Remastered launch: - config: oslist: windows - executable: On Board Remastered\\On Board Remastered.exe + executable: "On Board Remastered\\\\On Board Remastered.exe" type: default -'895220': +"895220": installDir: Leaflet Love Story launch: - - arguments: '-fontcharset=DEFAULT_CHARSET' + - arguments: "-fontcharset=DEFAULT_CHARSET" config: oslist: windows executable: leaflet.exe type: none -'895230': {} -'895330': +"895230": {} +"895330": installDir: Unblock The Parking launch: - config: @@ -407021,29 +401217,29 @@ type: none - config: oslist: macos - executable: Unblock - The Parking.app\\Contents\\MacOS\\Unblock - The Parking + executable: "Unblock - The Parking.app\\\\Contents\\\\MacOS\\\\Unblock - The Parking" type: none -'895360': {} -'895370': +"895360": {} +"895370": installDir: DollKart launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: DollKart.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: DollKart.x86_64 type: default -'895380': {} -'895400': +"895380": {} +"895400": installDir: Deadside launch: - executable: Deadside.exe type: none -'895420': +"895420": installDir: Path of Sin Greed launch: - config: @@ -407052,13 +401248,13 @@ executable: PathOfSin1.exe type: none - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: PathOfSin1_i386 type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: PathOfSin1_amd64 @@ -407068,26 +401264,26 @@ description: Launch executable: mac_steam.app/Contents/MacOS/mac_steam type: none -'895430': +"895430": installDir: From The Sky launch: - executable: From The Sky.exe type: default -'895450': +"895450": installDir: UglyDolls launch: - config: oslist: windows executable: Moon.exe type: default -'895470': +"895470": installDir: EWWE launch: - config: oslist: windows executable: EWWE.exe type: none -'895480': +"895480": installDir: Fates of Ort launch: - config: @@ -407102,24 +401298,24 @@ oslist: macos executable: Contents/MacOS/FatesofOrt type: none -'895510': +"895510": installDir: Blow Up Pieces Unleashed launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: BlowUpPiecesUnleashed.exe type: default -'895520': {} -'895550': +"895520": {} +"895550": installDir: Total 15 launch: - config: oslist: windows executable: Total 15.exe type: default -'895560': {} -'895570': +"895560": {} +"895570": installDir: Fairy Rescue launch: - config: @@ -407128,29 +401324,29 @@ type: none - config: oslist: macos - executable: Fairy Rescue.app\\Contents\\MacOS\\Fairy Rescue + executable: "Fairy Rescue.app\\\\Contents\\\\MacOS\\\\Fairy Rescue" type: none - config: oslist: linux executable: Fairy Rescue.x86 type: none -'895580': +"895580": installDir: Yoga Lesson VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Yoga Lesson VR.exe type: vr -'895600': +"895600": installDir: Mojo launch: - config: oslist: windows executable: game.exe type: none -'895610': - installDir: Where's Baby +"895610": + installDir: "Where's Baby" launch: - config: oslist: windows @@ -407160,7 +401356,7 @@ oslist: macos executable: WheresBaby.app type: none -'895620': +"895620": installDir: Spellcaster University launch: - config: @@ -407171,12 +401367,12 @@ oslist: macos executable: Spellcaster University.app type: none -'895650': +"895650": installDir: Save the cookie launch: - executable: STC.exe type: default -'895670': +"895670": installDir: Armajet launch: - config: @@ -407187,33 +401383,33 @@ oslist: macos executable: Armajet.app type: default -'895710': +"895710": installDir: Electronic Stock Trading System launch: - config: oslist: windows executable: ESTS.EXE type: none -'895740': +"895740": installDir: Gunfu launch: - config: oslist: windows executable: Gunfu.exe type: default -'895750': +"895750": installDir: The Adventures of Mr. Fluffykins launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: MrFluffykins.exe type: none -'895760': +"895760": installDir: OllieOop launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: OllieOop.exe type: default @@ -407225,7 +401421,7 @@ oslist: linux executable: OllieOop.x86_64 type: default -'895820': +"895820": installDir: Kokorogawari launch: - config: @@ -407242,79 +401438,77 @@ type: default - config: oslist: windows - ownsdlc: '934960' + ownsdlc: "934960" description: Kokorogawari Quiz executable: Kokorogawari Quiz.exe type: default - config: oslist: macos - ownsdlc: '934960' + ownsdlc: "934960" description: Kokorogawari Quiz executable: Kokorogawari Quiz.app type: default - config: oslist: linux - ownsdlc: '934960' + ownsdlc: "934960" description: Kokorogawari Quiz executable: Kokorogawari Quiz.sh type: default - config: oslist: windows - ownsdlc: '934961' + ownsdlc: "934961" description: Kokorogawari RPG executable: Game.exe type: default -'895850': +"895850": installDir: URO launch: - executable: URO.exe type: none -'895860': +"895860": installDir: WitchAction launch: - config: oslist: windows executable: WitchAction.exe type: default -'895870': +"895870": installDir: Project Wingman launch: - - arguments: '-nohmd' + - arguments: "-nohmd" config: - osarch: '64' + osarch: "64" oslist: windows description: Launch Project Wingman (Non-VR) - description_loc: - english: Launch Project Wingman (Non-VR) executable: ProjectWingman.exe type: default - - arguments: '-vr -hmd=SteamVR' + - arguments: "-vr -hmd=SteamVR" config: - osarch: '64' + osarch: "64" oslist: windows description: Project Wingman executable: ProjectWingman.exe type: vr - - arguments: '-vr -hmd=Oculus' + - arguments: "-vr -hmd=Oculus" config: - osarch: '64' + osarch: "64" oslist: windows description: Project Wingman executable: ProjectWingman.exe type: othervr -'895890': +"895890": installDir: SF_GrabBag launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: GrabBag.exe type: vr -'895900': +"895900": installDir: The Chaotic Workshop launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: The Chaotic Workshop.exe type: none @@ -407326,58 +401520,56 @@ oslist: linux executable: cws_startup type: none -'895920': {} -'895930': +"895920": {} +"895930": installDir: Maze Quest 1 The Forest launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows executable: Game.exe type: none - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: linux executable: Game type: none -'895940': +"895940": installDir: Atlantic Edge launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Atlantic_Edge.exe type: vr -'895960': +"895960": installDir: Save Them launch: - config: oslist: windows executable: SaveThem.exe type: none -'895970': +"895970": installDir: BlackShot Revolution launch: - arguments: steam config: oslist: windows - executable: \\BlackShot\\Patcher.exe + executable: "\\\\BlackShot\\\\Patcher.exe" type: default -'895980': +"895980": installDir: 《古斯塔奥:帝國重生》Gustavo Kingdom Rebirth launch: - config: oslist: windows description: 繁體中文版 - description_loc: - english: 繁體中文版 executable: GKR.exe type: default -'895990': +"895990": installDir: 3acg-water-clock launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: 水时钟.exe type: default @@ -407386,37 +401578,37 @@ executable: 水时钟.app/Contents/MacOS/水时钟 type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: 水时钟.exe type: default -'896030': +"896030": installDir: Fortissimo FA INTL Ver launch: - executable: game.exe type: none -'896040': +"896040": installDir: The Impure launch: - config: oslist: windows executable: Impure.exe type: none -'896070': +"896070": installDir: content launch: - config: oslist: windows executable: nw.exe type: default -'896110': +"896110": installDir: Crime Stories Days of Vengeance launch: - config: oslist: windows executable: CrimeStories.exe type: default -'896160': +"896160": installDir: Evil Bank Manager launch: - config: @@ -407427,41 +401619,41 @@ oslist: macos executable: IBM.app type: default -'896180': +"896180": installDir: Nazi 2 launch: - executable: nazi2.exe type: default -'896190': +"896190": installDir: JIN LIN LOVE STORY P launch: - config: oslist: windows executable: JLLS.exe type: default -'896220': - installDir: Dangerous Skies 80's edition +"896220": + installDir: "Dangerous Skies 80's edition" launch: - config: oslist: windows executable: dangerousskiespc.exe type: default -'896230': +"896230": installDir: Picross Bonbon - Nonogram launch: - config: oslist: windows executable: Picross BonBon - Nonograms.exe type: default -'896240': +"896240": installDir: The Grand Museum VR launch: - config: oslist: windows executable: TheGrandMuseumVR/WindowsNoEditor/TheGrandMuseumVR/Binaries/Win64/TheGrandMuseumVR.exe type: vr -'896320': {} -'896340': +"896320": {} +"896340": installDir: To Leave launch: - config: @@ -407476,57 +401668,57 @@ oslist: linux executable: To Leave.x86_64 type: default -'896350': +"896350": installDir: symphonics launch: - executable: symphonics.exe type: vr -'896370': +"896370": installDir: Navigator launch: - config: oslist: windows - executable: \\Platforms\\Windows\\launcher.exe + executable: "\\\\Platforms\\\\Windows\\\\launcher.exe" type: default - config: - osarch: '32' + osarch: "32" oslist: linux - executable: \\Platforms\\Linux32\\launcher + executable: "\\\\Platforms\\\\Linux32\\\\launcher" type: default - config: - osarch: '64' + osarch: "64" oslist: linux - executable: \\Platforms\\Linux64\\launcher + executable: "\\\\Platforms\\\\Linux64\\\\launcher" type: default -'896380': +"896380": installDir: Before Nightfall launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TillNight.exe type: default -'896400': +"896400": installDir: AAPE launch: - executable: AAPE.exe type: default -'896410': {} -'896420': +"896410": {} +"896420": installDir: Starless Night launch: - config: oslist: windows executable: Starless Night.exe type: default -'896440': +"896440": installDir: Eternal Edge launch: - config: oslist: windows executable: Eternal Edge +.exe type: default -'896460': +"896460": installDir: Lucah Born of a Dream launch: - config: @@ -407537,33 +401729,33 @@ oslist: macos executable: Lucah Born of a Dream.app type: default - - arguments: '-force-glcore42 -force-clamped' + - arguments: "-force-glcore42 -force-clamped" config: - osarch: '64' + osarch: "64" oslist: linux executable: Lucah Born of a Dream.x86_64 type: default - - arguments: '-force-glcore42 -force-clamped' + - arguments: "-force-glcore42 -force-clamped" config: oslist: linux executable: Lucah Born of a Dream.x86 type: default -'896500': +"896500": installDir: Whispering Flames launch: - config: oslist: windows executable: Whispering_Flames.exe type: none -'896510': +"896510": installDir: Norpon launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: PlatformerGame.exe type: default -'896520': +"896520": installDir: Stay Out of the House launch: - config: @@ -407574,30 +401766,30 @@ oslist: macos executable: Stay out of the House.app type: default -'896550': +"896550": installDir: The Sea Between launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows description: The Sea Between - executable: \\windows_content\\Game.exe + executable: "\\\\windows_content\\\\Game.exe" type: default - workingdir: \\windows_content\\ + workingdir: "\\\\windows_content\\\\" - config: oslist: macos description: The Sea Between - executable: \\mac_content\\Game.app + executable: "\\\\mac_content\\\\Game.app" type: default - workingdir: \\mac_content\\ -'896570': + workingdir: "\\\\mac_content\\\\" +"896570": installDir: PUZZLE CATS & DOGS launch: - config: oslist: windows executable: PUZZLE - CATS DOGS.exe type: default -'896590': +"896590": installDir: MilMo launch: - config: @@ -407608,7 +401800,7 @@ oslist: macos executable: MilMo.app type: default -'896650': +"896650": installDir: end War RTS launch: - config: @@ -407616,19 +401808,19 @@ description: End War RTS executable: EndWarRTS.exe type: none -'896670': +"896670": installDir: 前夜祭 launch: - description: 游戏Bate版(新版封面和人设) executable: Game.exe type: option1 - description: 游戏原版(原版封面和人设) - executable: GameC\\Game.exe + executable: "GameC\\\\Game.exe" type: option2 - description: 查看说明和攻略 executable: tool.txt type: option3 -'896700': +"896700": installDir: Extreme Drifters launch: - config: @@ -407639,7 +401831,7 @@ oslist: windows executable: Extreme Drifters.exe type: none -'896730': +"896730": installDir: Dare Course launch: - config: @@ -407648,49 +401840,49 @@ type: none - config: oslist: macos - executable: Dare Course.app\\Contents\\MacOS\\Dare Course + executable: "Dare Course.app\\\\Contents\\\\MacOS\\\\Dare Course" type: none -'896750': +"896750": installDir: Koral launch: - - executable: Koral\\Koral-Game-Launcher.exe + - executable: "Koral\\\\Koral-Game-Launcher.exe" type: none -'896840': +"896840": installDir: Call of Da Wild launch: - config: oslist: windows executable: Call of Da Wild.exe type: none -'896850': +"896850": installDir: Car Crash Online launch: - config: oslist: windows executable: Car Crash Online.exe type: default -'896860': +"896860": installDir: TACS_Program launch: - executable: TrekkingAndCampingSketch.exe type: none -'896870': {} -'896880': +"896870": {} +"896880": installDir: Bouncing Over It with friends launch: - config: oslist: windows executable: boiwf.exe type: none -'896890': +"896890": installDir: VR Paradise launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: VRParadise.exe type: vr -'896940': +"896940": installDir: Switcher launch: - config: @@ -407698,15 +401890,15 @@ description: Launch the game executable: Switcher.exe type: none -'896950': +"896950": installDir: Jumanji launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Echo.exe type: default -'896960': +"896960": installDir: Dragons Dawn of New Riders launch: - config: @@ -407714,53 +401906,53 @@ description: Initial Build executable: DragonsDawnOfNewRiders.exe type: default -'896970': - installDir: Haunted Halls Revenge of Doctor Blackmore Collector's Edition +"896970": + installDir: "Haunted Halls Revenge of Doctor Blackmore Collector's Edition" launch: - config: oslist: windows executable: HH3_RevengeofDoctorBlackmore_CE.exe type: default -'896980': - installDir: Whispered Secrets Golden Silence Collector's Edition +"896980": + installDir: "Whispered Secrets Golden Silence Collector's Edition" launch: - config: oslist: windows executable: WS_GoldenSilence_CE.exe type: default -'896990': - installDir: Dark Tales Edgar Allan Poe's The Tell-Tale Heart Collector's Edition +"896990": + installDir: "Dark Tales Edgar Allan Poe's The Tell-Tale Heart Collector's Edition" launch: - config: oslist: windows executable: DarkTales_EAP_TheTellTaleHeart_CE.exe type: default -'8970': +"8970": installDir: Axel and Pixel launch: - executable: ap.exe -'897000': - installDir: Love Chronicles A Winter's Spell Collector's Edition +"897000": + installDir: "Love Chronicles A Winter's Spell Collector's Edition" launch: - config: oslist: windows executable: LoveChronicles_AWintersSpellCE.exe type: default -'897010': - installDir: Surface Return to Another World Collector's Edition +"897010": + installDir: "Surface Return to Another World Collector's Edition" launch: - config: oslist: windows executable: Surface_ReturntoAnotherWorld_CE.exe type: default -'897020': +"897020": installDir: Awakening Moonfell Wood launch: - config: oslist: windows executable: Awakening2.exe type: default -'897030': +"897030": installDir: ParatopicAM001 launch: - config: @@ -407775,71 +401967,71 @@ oslist: linux executable: Paratopic.x86 type: default -'897040': +"897040": installDir: Nazi Bunker launch: - config: oslist: windows executable: NaziBunker.exe type: default -'897100': +"897100": installDir: Escape Black Orion VR launch: - config: oslist: windows executable: EscapeRoom.exe type: vr -'897110': +"897110": installDir: Swap Swap Swap launch: - config: oslist: windows executable: Swap Swap Swap.exe type: default -'897120': +"897120": installDir: Last Day launch: - config: oslist: windows executable: nw.exe type: default -'897150': +"897150": installDir: Motor Gladiators launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: MotorGladiators.exe type: default -'897210': +"897210": installDir: Omicroid launch: - config: oslist: windows executable: Omicroid.exe type: none -'897270': +"897270": installDir: Words cannot convey launch: - config: oslist: windows executable: Words_cannot_convey.exe type: none -'897290': +"897290": installDir: Triggerun launch: - config: oslist: windows executable: Triggerun_S.exe type: default -'897300': +"897300": installDir: Hacked launch: - config: oslist: windows executable: hacked.exe type: default -'897330': +"897330": installDir: Coloring Pixels launch: - config: @@ -407854,20 +402046,20 @@ oslist: linux executable: ColoringPixels type: default -'897340': {} -'897360': +"897340": {} +"897360": installDir: Urban Explorer Golf launch: - executable: game.exe type: none -'897380': +"897380": installDir: Reptiles In Hunt launch: - config: oslist: windows executable: Reptiles In Hunt.exe type: default -'897390': +"897390": installDir: Full Metal Renegade launch: - config: @@ -407878,7 +402070,7 @@ oslist: macos executable: Full Metal Renegade.app/Contents/MacOS/Full Metal Renegade type: none -'897400': +"897400": installDir: Driftpunk Racer launch: - config: @@ -407889,20 +402081,20 @@ oslist: macos executable: Driftpunk Racer.app/Contents/MacOS/Driftpunk Racer type: none -'897410': +"897410": installDir: Esports Life Tycoon launch: - - arguments: '-force-gfx-direct' + - arguments: "-force-gfx-direct" config: oslist: windows executable: EsportsLifeTycoon.exe type: default - - arguments: '-force-gfx-direct -force-glcore32' + - arguments: "-force-gfx-direct -force-glcore32" config: oslist: macos - executable: EsportsLifeTycoon.app\\Contents\\MacOS\\EsportsLifeTycoon + executable: "EsportsLifeTycoon.app\\\\Contents\\\\MacOS\\\\EsportsLifeTycoon" type: default -'897420': +"897420": installDir: The Christmas Gifts launch: - config: @@ -407913,8 +402105,8 @@ oslist: linux executable: TheChristmasGifts type: default -'897430': {} -'897440': +"897430": {} +"897440": installDir: Leviathan ~A Survival RPG~ launch: - executable: Game.exe @@ -407923,7 +402115,7 @@ japanese: Leviathan schinese: 列维坦 tchinese: 列維坦 -'897450': +"897450": installDir: The Survivalists launch: - config: @@ -407947,21 +402139,21 @@ betakey: stable executable: The Survivalists.exe type: default -'897530': +"897530": installDir: Retroids launch: - config: oslist: windows executable: Retroids.exe type: default -'897550': +"897550": installDir: Study of Unusual Forest of Secrets launch: - config: oslist: windows executable: StudyOfUnusual.exe type: default -'897560': +"897560": installDir: Waveform Wipeout launch: - config: @@ -407972,7 +402164,7 @@ oslist: macos executable: Waveform.app type: none -'897580': +"897580": installDir: Avem888 launch: - config: @@ -407980,68 +402172,68 @@ description: Avem888 Game Launch executable: w32_avem888_drm.exe type: default -'897610': +"897610": installDir: Scrapland launch: - config: oslist: windows executable: Bin/Scrap.exe type: default -'897620': {} -'897630': +"897620": {} +"897630": installDir: Death Fungeon launch: - config: oslist: windows executable: Death Fungeon.exe type: none -'897640': +"897640": installDir: Gun Crazy launch: - config: oslist: windows executable: Gun Crazy.exe type: default -'897650': {} -'897690': +"897650": {} +"897690": installDir: Ding Dong VR launch: - config: oslist: windows executable: Ding Dong VR.exe type: vr -'897700': +"897700": installDir: Bladequest launch: - config: oslist: windows executable: Bladequest.exe type: default -'897730': +"897730": installDir: Among Trees launch: - executable: Among Trees.exe -'897760': +"897760": installDir: PUTANNA launch: - executable: game.exe type: none -'897770': +"897770": installDir: Solar Fighters launch: - config: oslist: windows executable: SolarFightersBetaVersion.exe type: default -'897780': {} -'897800': +"897780": {} +"897800": installDir: Arcane Golf launch: - config: oslist: windows executable: ArcaneGolf.exe type: default -'897820': +"897820": installDir: ReignsGoT launch: - config: @@ -408050,19 +402242,19 @@ type: default - config: oslist: macos - executable: ReignsGoT.app\\Contents\\MacOS\\ReignsGoT + executable: "ReignsGoT.app\\\\Contents\\\\MacOS\\\\ReignsGoT" type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: ReignsGoT.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: ReignsGoT.x86 type: default -'897830': +"897830": installDir: The Queen of Blackwood High launch: - config: @@ -408075,31 +402267,31 @@ type: default - config: oslist: macos - executable: TQoBH.app\\Contents\\MacOS\\TQoBH + executable: "TQoBH.app\\\\Contents\\\\MacOS\\\\TQoBH" type: default -'897840': +"897840": installDir: Alien Hunt 3D launch: - config: oslist: windows executable: Alien Hunt 3D.exe type: default -'897880': +"897880": installDir: The Occluder launch: - config: oslist: windows executable: The Occluder.exe type: default -'897890': +"897890": installDir: BladeOfArena launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: BOAWorld.exe type: default -'897900': +"897900": installDir: Typing of the Undead launch: - config: @@ -408108,13 +402300,13 @@ type: default - config: oslist: macos - executable: game.app\\Contents\\MacOS\\Typing of the Undead + executable: "game.app\\\\Contents\\\\MacOS\\\\Typing of the Undead" type: default - config: oslist: linux executable: Typing of the Undead.x86_64 type: default -'897910': +"897910": installDir: Sandhill Architectures launch: - config: @@ -408123,13 +402315,13 @@ type: default - config: oslist: macos - executable: SandhillArchitectures.app\\Contents\\MacOS\\SandhillArchitectures + executable: "SandhillArchitectures.app\\\\Contents\\\\MacOS\\\\SandhillArchitectures" type: default - config: oslist: linux executable: SandhillArchitectures.x86 type: default -'897930': +"897930": installDir: Demonheart Hunters launch: - config: @@ -408144,98 +402336,98 @@ oslist: linux executable: DemonheartHunters type: default -'897940': +"897940": installDir: High Cats launch: - config: oslist: windows executable: HighCats-Desktop.exe type: default -'897950': +"897950": installDir: King of the Dead launch: - config: oslist: windows executable: king.exe type: default -'897970': +"897970": installDir: Viper Attack launch: - config: oslist: windows executable: Viper Attack.exe type: default -'8980': +"8980": installDir: Borderlands launch: - - executable: Binaries\\Borderlands.exe -'898000': + - executable: "Binaries\\\\Borderlands.exe" +"898000": installDir: Uventa launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: uventa.exe type: default -'898040': +"898040": installDir: Whirlygig launch: - config: oslist: windows executable: Whirlygig.exe type: default -'898050': {} -'898080': - installDir: everybody's sad +"898050": {} +"898080": + installDir: "everybody's sad" launch: - config: oslist: windows - executable: everybody's sad.exe + executable: "everybody's sad.exe" type: vr -'898090': +"898090": installDir: Cubic Kill Array launch: - config: oslist: windows executable: 立方杀阵(Cubic Kill Array).exe type: default -'898120': +"898120": installDir: Temple of the Lost launch: - config: oslist: windows executable: TempleOfLost.exe type: default -'898140': {} -'898160': +"898140": {} +"898160": installDir: Hotel Remorse launch: - config: oslist: windows executable: HotelRemorse.exe type: default -'898170': +"898170": installDir: Grid Gunner launch: - executable: game.exe type: none -'898180': {} -'898200': {} -'898240': +"898180": {} +"898200": {} +"898240": installDir: KinkShamed launch: - config: oslist: windows executable: Game.exe type: default -'898250': +"898250": installDir: PackageRun launch: - config: oslist: windows executable: PackageRun.exe type: default -'898260': +"898260": installDir: Juliantli launch: - config: @@ -408250,95 +402442,95 @@ oslist: linux executable: JuliantliLinux.x86 type: none -'898290': +"898290": installDir: VOID launch: - config: oslist: windows executable: VOID.exe type: default -'898310': +"898310": installDir: Happy Empire - A Bouquet for the Princess (Enhanced Edition) launch: - config: oslist: windows executable: game.exe type: none -'898320': +"898320": installDir: Synth Ninja launch: - config: oslist: windows executable: Synth Ninja.exe type: vr -'898340': +"898340": installDir: Puzzles and Board Games Mega Collection launch: - config: oslist: windows executable: BoardGames_MegaCollection.exe type: default -'898350': {} -'898380': +"898350": {} +"898380": installDir: Color Party launch: - config: oslist: windows executable: ColorParty.exe type: default -'898400': +"898400": installDir: The Misadventures of Botsworth launch: - config: oslist: windows executable: TMOB.exe type: default -'898430': +"898430": installDir: CubeCreatorX launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: CubeCreatorX.exe type: default -'898440': +"898440": installDir: Turing Tumble VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TTVR.exe type: vr -'898450': +"898450": installDir: UBERMOSH_SANTICIDE launch: - config: oslist: windows executable: UBERMOSH_SANTICIDE.exe type: default -'898460': +"898460": installDir: Outback Survival launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: OutbackSurvival.exe type: none -'898490': +"898490": installDir: Dorian Morris Adventure launch: - config: oslist: windows executable: Dorian Morris - Adventure Game.exe type: default -'898500': +"898500": installDir: Hentai City Content launch: - config: oslist: windows executable: Hentai City.exe type: default -'898530': +"898530": installDir: Waifu Master launch: - config: @@ -408347,53 +402539,53 @@ type: default - config: oslist: macos - executable: Waifu Master.app\\Contents\\MacOS\\Waifu Master + executable: "Waifu Master.app\\\\Contents\\\\MacOS\\\\Waifu Master" type: default -'898540': +"898540": installDir: Catgirl Magic - Fury Duel launch: - config: oslist: windows executable: Catgirl Magic - Fury Duel.exe type: default - - executable: Catgirl Magic - Fury Duel.app\\Contents\\MacOS\\Catgirl Magic - Fury Duel + - executable: "Catgirl Magic - Fury Duel.app\\\\Contents\\\\MacOS\\\\Catgirl Magic - Fury Duel" type: none -'898580': +"898580": installDir: Premium Bowling launch: - config: oslist: windows executable: premiumbowling.exe type: default - - arguments: '-steamvr' + - arguments: "-steamvr" config: oslist: windows executable: premiumbowling.exe type: vr - - arguments: '-oculus' + - arguments: "-oculus" config: oslist: windows executable: premiumbowling.exe type: othervr - config: oslist: macos - executable: premiumbowling.app\\Contents\\MacOS\\Premium Bowling + executable: "premiumbowling.app\\\\Contents\\\\MacOS\\\\Premium Bowling" type: default -'898590': +"898590": installDir: MargonemCOM launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Margonem.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: Margonem.exe type: default -'898630': {} -'898650': +"898630": {} +"898650": installDir: The Shapeshifting Detective launch: - config: @@ -408404,7 +402596,7 @@ oslist: macos executable: ShapeshiftingDetective.app type: default -'898660': +"898660": installDir: Cubicus Arcanum launch: - config: @@ -408414,31 +402606,31 @@ type: default - config: oslist: macos - executable: Cubicus Arcanum.app\\Contents\\MacOS\\Cubicus Arcanum + executable: "Cubicus Arcanum.app\\\\Contents\\\\MacOS\\\\Cubicus Arcanum" type: default -'898670': {} -'898680': - installDir: JUMP AND RUN - DON'T FALL +"898670": {} +"898680": + installDir: "JUMP AND RUN - DON'T FALL" launch: - config: oslist: windows executable: JumpAndRunDontFall.exe type: default -'898690': +"898690": installDir: Zombie launch: - executable: zombie.exe type: default -'898720': +"898720": installDir: Kubifaktorium launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Kubifaktorium-Windows64.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Kubifaktorium-Linux type: default @@ -408446,12 +402638,12 @@ oslist: macos executable: Kubifaktorium-Mac.app type: default -'898740': {} -'898750': +"898740": {} +"898750": installDir: SRW30 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: srw30.exe type: default @@ -408460,56 +402652,56 @@ koreana: 슈퍼로봇대전 30 schinese: 超级机器人大战30 tchinese: 超級機器人大戰30 -'898760': +"898760": installDir: Clone Adventures launch: - executable: CloneAdventures.exe type: none -'898780': +"898780": installDir: Escape Game launch: - executable: Escape Game.exe type: none -'898790': +"898790": installDir: Locomotion launch: - config: oslist: windows executable: Locomotion.exe type: default -'898800': +"898800": installDir: Constructor Plus launch: - config: oslist: windows executable: Constructor.exe type: default - - arguments: '-Q' + - arguments: "-Q" config: oslist: windows description: Quick Start executable: Constructor.exe type: none -'898810': +"898810": installDir: Merv Liberation launch: - config: oslist: windows executable: Merv Liberation.exe type: default -'898830': +"898830": installDir: In Your Realm launch: - config: oslist: windows executable: InYourRealm.exe type: default -'898890': +"898890": installDir: Endling launch: - executable: Endling.exe type: none -'898910': +"898910": installDir: DASH Danger Action Speed Heroes launch: - config: @@ -408522,7 +402714,7 @@ description: ea 2003 executable: dash_early_access type: default -'898920': +"898920": installDir: Axis & Allies Online launch: - config: @@ -408530,7 +402722,7 @@ executable: AxisAndAllies1942Online.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: AxisAndAllies1942Online type: default @@ -408538,21 +402730,21 @@ oslist: macos executable: AxisAndAllies1942Online.app type: default -'898930': +"898930": installDir: Pingball Ultra launch: - config: oslist: windows executable: game.exe type: none -'898940': +"898940": installDir: VirtuaCreature launch: - config: oslist: windows executable: VirtuaCreature.exe type: default -'898950': +"898950": installDir: ulxrd launch: - config: @@ -408563,14 +402755,14 @@ oslist: macos executable: ulxrd.app type: default -'898980': +"898980": installDir: The Mine launch: - config: oslist: windows executable: TheMine.exe type: none -'899000': +"899000": installDir: Warlords.IO launch: - config: @@ -408581,29 +402773,29 @@ oslist: macos executable: Warlords.io-MacOSBuild.app type: default -'899020': +"899020": installDir: Chiptune DJ launch: - config: oslist: windows executable: CHIPTUNE DJ VERSION FINAL.exe type: default -'899090': +"899090": installDir: Ricecakers launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Ricecakers.exe type: default -'899100': +"899100": installDir: SUM launch: - config: oslist: windows executable: SUM.exe type: vr -'899160': +"899160": installDir: Koba launch: - config: @@ -408611,21 +402803,21 @@ description: 启动小林正雪复仇之密室重置版 executable: Koba.exe type: default -'899180': +"899180": installDir: Voronium - Locust Sols launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Voronium - Locust Sols executable: TowerDefence.exe type: vr -'899190': +"899190": installDir: A Piece of Wish upon the Stars launch: - executable: SatrrySky.exe type: default -'899200': +"899200": installDir: Ostwind 2 launch: - config: @@ -408633,10 +402825,10 @@ executable: Ostwind2.exe type: default nameLocalized: - dutch: 'Whisper: Een Onverwachte Ontmoeting' - french: 'Whisper: Une Arrivée Inattendue' - german: 'Ostwind: Ein unerwartetes Abenteuer' -'899220': + dutch: "Whisper: Een Onverwachte Ontmoeting" + french: "Whisper: Une Arrivée Inattendue" + german: "Ostwind: Ein unerwartetes Abenteuer" +"899220": installDir: Fly of butterfly launch: - config: @@ -408647,65 +402839,65 @@ oslist: linux executable: nw type: default -'899230': {} -'899240': +"899230": {} +"899240": installDir: TaleOfPalmi launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TaleOfPalmi.exe type: default -'899270': +"899270": installDir: BlamBox launch: - executable: BlamBox.exe type: default -'899290': +"899290": installDir: The night of fire stealing launch: - executable: TNOFS.exe type: default -'899310': +"899310": installDir: Iron Danger launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: IronDanger.exe type: default - config: - betakey: 'experimental, testing' + betakey: "experimental, testing" oslist: macos executable: IronDanger.app/Contents/MacOS/IronDanger type: default - config: - betakey: 'experimental, testing' - osarch: '64' + betakey: "experimental, testing" + osarch: "64" oslist: linux executable: RunIronDangerLinux.sh type: default - config: oslist: windows - ownsdlc: '1130871,1130872' + ownsdlc: "1130871,1130872" description: Bonus Content executable: open_bonus_win.bat type: none - config: - betakey: 'experimental, testing' + betakey: "experimental, testing" oslist: macos - ownsdlc: '1130871,1130872' + ownsdlc: "1130871,1130872" description: Bonus Content executable: open_bonus_osx.sh type: none - config: - betakey: 'experimental, testing' + betakey: "experimental, testing" oslist: linux - ownsdlc: '1130871,1130872' + ownsdlc: "1130871,1130872" description: Bonus Content executable: open_bonus_lin.sh type: none -'899340': +"899340": installDir: Mendel launch: - config: @@ -408716,29 +402908,29 @@ oslist: macos executable: Mendel.app type: none -'899370': {} -'899390': +"899370": {} +"899390": installDir: Xenon Racer launch: - config: oslist: windows executable: XenonRacer.exe type: default -'899440': +"899440": installDir: GOD EATER 3 launch: - executable: ge3.exe type: none -'899460': +"899460": installDir: Shores Unknown launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: ProjectShore.exe type: default -'899470': +"899470": installDir: Chook & Sosig Walk the Plank launch: - config: @@ -408747,30 +402939,30 @@ type: default - config: oslist: macos - executable: WalkthePlank.app\\Contents\\MacOS\\WalkthePlank + executable: "WalkthePlank.app\\\\Contents\\\\MacOS\\\\WalkthePlank" type: default -'899480': +"899480": installDir: Girls dance launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: girls dance.exe type: default -'899530': +"899530": installDir: Cosmi-Cave 64 launch: - config: oslist: windows executable: cosmicave.exe type: default -'899540': +"899540": installDir: PROTEST launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" executable: Game.exe type: none -'899570': +"899570": installDir: My First Music Workshop launch: - config: @@ -408785,7 +402977,7 @@ oslist: linux executable: MyFirstMusicWorkshop.x86 type: none -'899590': +"899590": installDir: Heliophobia launch: - config: @@ -408797,62 +402989,62 @@ executable: Heliophobia.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Heliophobia.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Heliophobia.x86_64 type: default -'899610': +"899610": installDir: Spaceship Crashed launch: - config: oslist: windows executable: Game.exe type: default -'899620': {} -'899630': +"899620": {} +"899630": installDir: Waifu School launch: - config: oslist: windows executable: Waifu School.exe type: default -'899760': +"899760": installDir: Her launch: - config: oslist: windows executable: Her.exe type: default -'899770': +"899770": installDir: Last Epoch launch: - - arguments: '-steam' + - arguments: "-steam" config: - osarch: '64' + osarch: "64" oslist: windows executable: Last Epoch.exe type: default - - arguments: '-steam' + - arguments: "-steam" config: - osarch: '64' + osarch: "64" oslist: linux executable: Last Epoch.x86_64 type: default - - arguments: '-steam' + - arguments: "-steam" config: oslist: macos executable: Last Epoch.app type: default -'899930': +"899930": installDir: Spaceball launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Spaceball.exe type: none @@ -408860,45 +403052,45 @@ oslist: macos executable: Spaceball.app type: default -'899960': +"899960": installDir: The Greater Good launch: - config: oslist: windows executable: The Greater Good.exe type: default -'899970': +"899970": installDir: NEKOPARA Extra launch: - config: oslist: windows executable: nekopara_extra.exe type: none -'899990': +"899990": installDir: LVN Fake News launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: nw.exe type: default -'9000': +"9000": installDir: Spear of Destiny launch: - - arguments: base\\M1-SOD.exe -conf base\\SOD.conf -fullscreen -exit - executable: base\\dosbox.exe - - arguments: base\\M2-SOD.exe -conf base\\SOD.conf -fullscreen -exit - description: 'Launch Mission 2: Return to Danger' - executable: base\\dosbox.exe - - arguments: base\\M3-SOD.exe -conf base\\SOD.conf -fullscreen -exit - description: 'Launch Mission 3: Ultimate Challenge' - executable: base\\dosbox.exe -'900010': + - arguments: "base\\\\M1-SOD.exe -conf base\\\\SOD.conf -fullscreen -exit" + executable: "base\\\\dosbox.exe" + - arguments: "base\\\\M2-SOD.exe -conf base\\\\SOD.conf -fullscreen -exit" + description: "Launch Mission 2: Return to Danger" + executable: "base\\\\dosbox.exe" + - arguments: "base\\\\M3-SOD.exe -conf base\\\\SOD.conf -fullscreen -exit" + description: "Launch Mission 3: Ultimate Challenge" + executable: "base\\\\dosbox.exe" +"900010": installDir: Meeple Station launch: - config: oslist: windows - executable: Meeple Station\\Meeple Station.exe + executable: "Meeple Station\\\\Meeple Station.exe" type: default - config: oslist: macos @@ -408908,31 +403100,29 @@ oslist: linux executable: Meeple Station.x86_64 type: default -'900020': +"900020": installDir: Construction Truck Simulator launch: - config: oslist: windows executable: ConstructionTruckSimulator.exe type: default -'900040': +"900040": installDir: ELEX2 launch: - config: oslist: windows - executable: system\\ELEX2.exe + executable: "system\\\\ELEX2.exe" type: default - workingdir: system\\ + workingdir: "system\\\\" - config: oslist: windows description: ELEX II DirectX 11 - description_loc: - english: ELEX II DirectX 11 - executable: ELEX2DX11\\system\\ELEX2.exe + executable: "ELEX2DX11\\\\system\\\\ELEX2.exe" type: option1 - workingdir: ELEX2DX11\\system\\ -'900050': - installDir: Amber's Airline High Hopes + workingdir: "ELEX2DX11\\\\system\\\\" +"900050": + installDir: "Amber's Airline High Hopes" launch: - config: oslist: windows @@ -408940,16 +403130,16 @@ type: default - config: oslist: macos - executable: AA1_Mac.app\\Contents\\MacOS\\AA1_Mac + executable: "AA1_Mac.app\\\\Contents\\\\MacOS\\\\AA1_Mac" type: default -'900060': +"900060": installDir: Free Throw launch: - config: oslist: windows executable: FreeThrow.exe type: default -'900270': +"900270": installDir: Reventure launch: - config: @@ -408958,7 +403148,7 @@ type: none nameLocalized: japanese: Reventure (レベンチャー) -'900290': +"900290": installDir: Veritas launch: - config: @@ -408967,22 +403157,22 @@ type: default - config: oslist: macos - executable: Veritas.app\\Contents\\MacOS\\Veritas + executable: "Veritas.app\\\\Contents\\\\MacOS\\\\Veritas" type: default -'900330': +"900330": installDir: King-Dom launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: King-Dom.exe type: default -'900340': +"900340": installDir: Terror launch: - executable: Terror/HorrorGame.exe type: default -'900370': +"900370": installDir: Stockpile launch: - config: @@ -408994,16 +403184,16 @@ executable: sxp.app type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: sxp.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: sxp.x86_64 type: none -'900380': +"900380": installDir: Indian Summer launch: - config: @@ -409015,16 +403205,16 @@ executable: ins.app type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: ins.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: ins.x86_64 type: none -'900390': +"900390": installDir: Algae launch: - config: @@ -409036,16 +403226,16 @@ executable: Algae.app/Contents/MacOS/Algae type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Algae.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Algae.x86_64 type: default -'900400': +"900400": installDir: Sacred Fire launch: - config: @@ -409060,8 +403250,8 @@ oslist: linux executable: Sacred Fire.x86_64 type: default -'90047': {} -'900490': +"90047": {} +"900490": installDir: Power Gunner launch: - config: @@ -409069,24 +403259,24 @@ executable: PowerGunner.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: PowerGunner.x86_64 type: default - config: oslist: macos - executable: PowerGunner.app\\Contents\\MacOS\\PowerGunner + executable: "PowerGunner.app\\\\Contents\\\\MacOS\\\\PowerGunner" type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: PowerGunner.x86 type: default -'900790': +"900790": installDir: Bunny Minesweeper launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: WindowsNoEditor/MMS.exe type: default @@ -409094,14 +403284,14 @@ oslist: linux executable: LinuxNoEditor/MMS.sh type: default -'900990': {} -'9010': +"900990": {} +"9010": installDir: Return to Castle Wolfenstein launch: - executable: WolfSP.exe - description: Launch Return to Castle Wolfenstein Multiplayer executable: WolfMP.exe -'901000': +"901000": installDir: Serenade_of_the_Sirens launch: - config: @@ -409113,35 +403303,32 @@ executable: Serenade_of_the_Sirens type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Serenade_of_the_Sirens.x86_64 type: default -'901020': +"901020": installDir: Adventure Portal launch: - config: oslist: windows executable: Adventure Portal.exe type: default -'901147': {} -'901399': - unknown: true -'901660': - unknown: true -'901663': - unknown: true -'90200': +"901147": {} +"901399": {} +"901660": {} +"901663": {} +"90200": installDir: Farming Simulator 2011 launch: - - arguments: '-name FarmingSimulator2011' + - arguments: "-name FarmingSimulator2011" config: oslist: windows executable: game.exe - config: oslist: macos executable: FarmingSimulator2011.app -'903040': +"903040": installDir: Castles of Burgundy launch: - config: @@ -409153,41 +403340,41 @@ executable: bvb.app type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: bvb.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: bvb.x86_64 type: none -'903070': {} -'903150': +"903070": {} +"903150": installDir: FALL launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows executable: FALL.exe type: default -'903160': +"903160": installDir: Wunderwaffe launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: nw.exe type: default -'903180': +"903180": installDir: Privateers launch: - description: Launch Privateers executable: Privateers.exe type: default -'903200': {} -'903390': {} -'903560': +"903200": {} +"903390": {} +"903560": installDir: Pixel Fishies launch: - config: @@ -409195,12 +403382,12 @@ executable: pixel_fishies.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: pixel_fishies.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: pixel_fishies.x86_64 type: default @@ -409208,14 +403395,14 @@ oslist: macos executable: pixel_fishies.app type: default -'903570': +"903570": installDir: Displacement Arcade Game Box launch: - config: oslist: windows executable: Menu.exe type: default -'903580': +"903580": installDir: AstroViking launch: - config: @@ -409230,18 +403417,18 @@ oslist: macos executable: AstroViking_Mac/AstroViking.app type: default -'903620': +"903620": installDir: EverydayBaseballVR launch: - config: oslist: windows executable: EverydayBaseballVR.exe type: vr -'903630': +"903630": installDir: The Last Cube launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: The Last Cube.exe type: none @@ -409251,136 +403438,134 @@ - config: oslist: macos executable: thelastcube.app -'903640': +"903640": installDir: Super Zombie Arcade launch: - config: oslist: windows executable: Super Zombie Arcade.exe type: vr -'903670': +"903670": installDir: Dogs of War Kill to Survive launch: - config: oslist: windows executable: Dogs of War Kill to Survive.exe type: none -'903680': +"903680": installDir: conNEcT01 launch: - config: oslist: windows executable: conNEcT01.exe type: default -'903700': +"903700": installDir: DennizAndDiana launch: - config: oslist: windows executable: DennizAndDiana.exe type: default -'903710': +"903710": installDir: Headshot VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Headshot VR.exe type: vr -'903730': +"903730": installDir: Axiom Soccer launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Axiom Soccer.exe type: default -'903740': +"903740": installDir: Kings launch: - executable: Kings.exe type: none -'903760': +"903760": installDir: BinaryBotsVR launch: - config: oslist: windows executable: BinarySteamVR.exe type: vr -'903780': +"903780": installDir: Beast Agenda 2030 launch: - config: oslist: windows executable: Beast_Agenda_2030.exe type: default -'903790': +"903790": installDir: Card Battle Spirit Link launch: - config: oslist: windows executable: Card Battle Spirit Link.exe type: none -'903830': +"903830": installDir: Cash Rush launch: - config: oslist: windows executable: Cash Rush.exe type: default -'903850': +"903850": installDir: FairyKnights launch: - config: oslist: windows executable: Pipe.exe type: default -'903880': +"903880": installDir: Drying Paint Simulator VR launch: - config: oslist: windows executable: Drying Paint Simulator VR.exe type: vr -'903910': +"903910": installDir: Tranzient launch: - - arguments: '-vr -ForceNoStereoLayer' + - arguments: "-vr -ForceNoStereoLayer" config: - osarch: '64' + osarch: "64" oslist: windows description: In VR executable: Tranzient.exe type: vr - config: - osarch: '64' + osarch: "64" oslist: windows description: Without VR executable: Tranzient.exe type: option2 - - arguments: '-vr -ALVR -ForceNoStereoLayer' + - arguments: "-vr -ALVR -ForceNoStereoLayer" config: - osarch: '64' + osarch: "64" oslist: windows description: Virtual Desktop mode (Quest) - description_loc: - english: Virtual Desktop mode (Quest) executable: Tranzient.exe type: option3 -'903930': {} -'903950': +"903930": {} +"903950": installDir: Last Oasis launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: OasisLauncher.exe type: none -'90400': +"90400": installDir: Blue Toad Murder Files 01 launch: - executable: Launcher.exe -'904050': +"904050": installDir: American University Life ~Welcome Week!~ launch: - config: @@ -409395,7 +403580,7 @@ oslist: macos executable: American University Life.app type: default -'904130': +"904130": installDir: Defense Abominations launch: - config: @@ -409403,41 +403588,41 @@ executable: DefenseAbominations.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: DefenseAbominations.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: DefenseAbominations.x86_64 type: default - config: oslist: macos - executable: DefenseAbominations.app\\Contents\\MacOS\\DefenseAbominations + executable: "DefenseAbominations.app\\\\Contents\\\\MacOS\\\\DefenseAbominations" type: default -'904160': +"904160": installDir: Ashes launch: - executable: AshesGame.exe type: none -'904170': +"904170": installDir: Never Breakup launch: - config: oslist: windows executable: Never-Breakup.exe type: none -'904230': {} -'904310': +"904230": {} +"904310": installDir: Initial 2 New Stage launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Initial2.exe type: default -'904320': +"904320": installDir: My Holiday launch: - config: @@ -409450,15 +403635,15 @@ description: 兼容模式启动(独立显卡) executable: Game.exe type: none -'904340': +"904340": installDir: Marbledrome Crazy Balls launch: - config: oslist: windows executable: Marbledrome.exe type: none -'904350': {} -'904360': +"904350": {} +"904360": installDir: Family Man launch: - config: @@ -409466,11 +403651,11 @@ description: Default Launch executable: FamilyMan.exe type: default -'904380': +"904380": installDir: Vambrace Cold Soul launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Windows Version executable: VambraceColdSoul.exe @@ -409485,22 +403670,22 @@ description: Linux Version executable: VambraceColdSoul.x86_64 type: default -'904400': +"904400": installDir: Cardpocalypse launch: - config: oslist: windows executable: Cardpocalypse.exe type: none -'904410': {} -'904430': +"904410": {} +"904430": installDir: Swing the cat launch: - config: oslist: windows executable: Swing The Cat.exe type: vr -'904440': +"904440": installDir: Type Defense launch: - config: @@ -409515,120 +403700,120 @@ oslist: linux executable: Type Defense.x86 type: default -'904450': {} -'904500': +"904450": {} +"904500": installDir: Grompula launch: - config: oslist: windows executable: Grompula.exe type: default -'904510': {} -'904520': +"904510": {} +"904520": installDir: Red Embrace Hollywood launch: - config: oslist: windows - executable: lib\\windows-i686\\RedEmbraceHollywood.exe + executable: "lib\\\\windows-i686\\\\RedEmbraceHollywood.exe" type: none - config: oslist: macos - executable: RedEmbraceHollywood.app\\Contents\\MacOS\\RedEmbraceHollywood + executable: "RedEmbraceHollywood.app\\\\Contents\\\\MacOS\\\\RedEmbraceHollywood" type: default - config: oslist: linux executable: RedEmbraceHollywood.sh type: none -'904530': +"904530": installDir: Erotic Jigsaw Challenge Vol 2 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: nw.exe type: default -'904540': +"904540": installDir: Indiana Jones and the Infernal Machine launch: - config: oslist: windows executable: Jones3D.exe type: default -'904550': +"904550": installDir: Robot Chase launch: - executable: RobotChase.exe type: none -'904560': +"904560": installDir: Flameruby launch: - config: oslist: windows executable: Flameruby.exe type: default -'904570': +"904570": installDir: TOK launch: - config: oslist: windows executable: TOK.exe type: default -'904590': +"904590": installDir: LA_Deadzone launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: LAD.exe type: vr -'904600': +"904600": installDir: Small Sister launch: - config: oslist: windows executable: sister.exe type: none -'904640': +"904640": installDir: DairyFarmSimulator launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: DFS.exe type: default -'904680': +"904680": installDir: HotHead launch: - config: oslist: windows executable: HotHead.exe type: default -'904700': +"904700": installDir: Down Ward launch: - config: oslist: windows executable: Down Ward.exe type: none -'904740': +"904740": installDir: 东方试闻广纪 ~ Perfect Memento of Touhou Question launch: - config: oslist: windows executable: 东方试闻广纪 ~ Perfect Memento of Touhou Question.exe type: default -'904750': +"904750": installDir: Zniw Adventure launch: - config: oslist: windows executable: CTGAME.exe type: default - - arguments: '--windowed' + - arguments: "--windowed" config: oslist: linux description: Zniw Adventure (windowed/okienko) - executable: ./runzniw.sh + executable: "./runzniw.sh" type: none - config: oslist: windows @@ -409644,11 +403829,11 @@ description: Karta referencyjna (Polski/PDF) executable: refCardWinPolish.pdf type: none - - arguments: '--fullscreen --gfxfilter stdscale 2' + - arguments: "--fullscreen --gfxfilter stdscale 2" config: oslist: linux description: Zniw Adventure (fullscreen/pelny ekran) - executable: ./runzniw.sh + executable: "./runzniw.sh" type: none - config: oslist: windows @@ -409664,88 +403849,88 @@ oslist: macos executable: ZniwAdventure.app type: default -'904760': {} -'904770': +"904760": {} +"904770": installDir: Divine Miracle Defense launch: - executable: DMD.exe type: none -'904780': +"904780": installDir: DeepWeb launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: DeepWeb\\Binaries\\Win64\\DeepWeb.exe + executable: "DeepWeb\\\\Binaries\\\\Win64\\\\DeepWeb.exe" type: default - config: - osarch: '32' + osarch: "32" oslist: windows - executable: DeepWeb\\Binaries\\Win32\\DeepWeb.exe + executable: "DeepWeb\\\\Binaries\\\\Win32\\\\DeepWeb.exe" type: default -'904790': {} -'904800': +"904790": {} +"904800": installDir: Ambition launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Ambition-Win.exe type: default -'904810': +"904810": installDir: Ectolibrium launch: - config: oslist: windows executable: Ectolibrium.exe type: none -'904820': +"904820": installDir: VR Jogger launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: VRJogger.exe type: vr -'904840': {} -'904850': +"904840": {} +"904850": nameLocalized: - schinese: 'Fat[EX]快递模拟器' -'904860': + schinese: "Fat[EX]快递模拟器" +"904860": installDir: IGS launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: 25CadreofDeath.exe type: default -'904890': +"904890": installDir: Neverliria launch: - executable: Neverliria.exe type: none -'904900': +"904900": installDir: PinupBall launch: - - arguments: '-screen-fullscreen 1' + - arguments: "-screen-fullscreen 1" config: oslist: windows description: Fullscreen executable: PinupBall.exe type: default - - arguments: '-screen-fullscreen 1' + - arguments: "-screen-fullscreen 1" config: oslist: linux description: Fullscreen executable: PinupBall type: default - - arguments: '-screen-fullscreen 0' + - arguments: "-screen-fullscreen 0" config: oslist: windows description: Windowed executable: PinupBall.exe type: none - - arguments: '-screen-fullscreen 0' + - arguments: "-screen-fullscreen 0" config: oslist: linux description: Windowed @@ -409755,37 +403940,37 @@ oslist: macos executable: PinupBall.app type: none - - arguments: '-screen-fullscreen 0' + - arguments: "-screen-fullscreen 0" config: oslist: macos description: Windowed executable: PinupBall.app type: none -'904930': +"904930": installDir: YOU - The Untold Stories launch: - config: oslist: windows executable: You - The Untold Stories.exe type: default -'904940': +"904940": installDir: Les 4 Alice Lorange Journey launch: - config: oslist: windows - executable: QuatreAliceJourney\\QuatreAliceJourney.exe + executable: "QuatreAliceJourney\\\\QuatreAliceJourney.exe" type: default - config: oslist: linux - executable: QuatreAliceJourney\\QuatreAliceJourney.sh + executable: "QuatreAliceJourney\\\\QuatreAliceJourney.sh" type: default - config: oslist: macos - executable: QuatreAliceJourney\\QuatreAliceJourney.app + executable: "QuatreAliceJourney\\\\QuatreAliceJourney.app" type: default nameLocalized: - french: 'Les 4 Alice: L’aventure de Lorange ' -'904950': + french: "Les 4 Alice: L’aventure de Lorange " +"904950": installDir: Exodus launch: - config: @@ -409793,11 +403978,11 @@ description: Launch Exodus executable: Exodus.exe type: none -'904960': +"904960": installDir: CineTracer launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: CineTracer.exe type: none @@ -409805,58 +403990,58 @@ oslist: macos executable: CineTracer.app type: none -'904970': {} -'904990': +"904970": {} +"904990": installDir: 21+ launch: - executable: 21+.exe type: none -'9050': +"9050": installDir: Doom 3 launch: - executable: Doom3.exe - description: Launch Doom 3 Server executable: DOOM3DED.exe -'90500': +"90500": installDir: Guardians Of Graxia launch: - executable: GuardiansOfGraxia.exe -'905010': +"905010": installDir: Draw Light launch: - executable: Draw Light.exe type: default -'905020': +"905020": installDir: Fort launch: - executable: fort.exe type: default -'905030': {} -'905060': +"905030": {} +"905060": installDir: Turret Tech launch: - executable: TT.exe type: none -'905070': +"905070": installDir: CONTINGENCY launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: nw.exe type: default - config: oslist: macos - executable: \\contingency.app\\Contents\\MacOS\\nwjs + executable: "\\\\contingency.app\\\\Contents\\\\MacOS\\\\nwjs" type: default -'905090': +"905090": installDir: Pineview Drive - Homeless launch: - config: oslist: windows executable: PineviewDriveHomeless.exe type: default -'905120': +"905120": installDir: SonLightSleepwalker launch: - config: @@ -409867,7 +404052,7 @@ oslist: linux executable: sls.x86_64 type: default -'905130': +"905130": installDir: Doggo Dig Down launch: - config: @@ -409879,63 +404064,63 @@ executable: doggo type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: doggo type: none -'905150': +"905150": installDir: Trivia Quiz All about everything launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TriviaQuiz64.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: TriviaQuiz32.exe type: default -'905180': +"905180": installDir: Inevitable VR launch: - config: oslist: windows executable: InevitableVR.exe type: openvroverlay -'905200': {} -'905220': +"905200": {} +"905220": installDir: Grim Earth launch: - config: oslist: windows executable: GrimEarth.exe type: none -'905230': {} -'905240': {} -'905260': +"905230": {} +"905240": {} +"905260": installDir: Hags Castle launch: - config: oslist: windows executable: WindowsBuild.exe type: default -'905270': +"905270": installDir: Merlin Soccer launch: - config: oslist: windows executable: Merlin Soccer.exe type: none - - executable: Merlin Soccer.app\\Contents\\MacOS\\Merlin Soccer + - executable: "Merlin Soccer.app\\\\Contents\\\\MacOS\\\\Merlin Soccer" type: none - config: oslist: linux executable: Merlin Soccer.x86 type: none -'905280': {} -'905300': +"905280": {} +"905300": installDir: Daytona Racing launch: - config: @@ -409948,9 +404133,9 @@ type: none - config: oslist: macos - executable: Daytona Racing.app\\Contents\\MacOS\\Daytona Racing + executable: "Daytona Racing.app\\\\Contents\\\\MacOS\\\\Daytona Racing" type: none -'905330': +"905330": installDir: oOo Ascension launch: - config: @@ -409960,13 +404145,13 @@ type: default - config: oslist: macos - executable: oOo_Mac.app\\Contents\\MacOS\\oOo_Mac + executable: "oOo_Mac.app\\\\Contents\\\\MacOS\\\\oOo_Mac" type: default - config: oslist: linux executable: oOo.x86_64 type: default -'905340': +"905340": installDir: Heave Ho launch: - config: @@ -409977,19 +404162,19 @@ oslist: macos executable: Heave Ho.app/Contents/MacOS/Heave Ho type: default -'905350': +"905350": installDir: Bang Bang Fruit 3 launch: - executable: BBF3.exe type: none -'905360': {} -'905370': - installDir: Conqueror's Blade +"905360": {} +"905370": + installDir: "Conqueror's Blade" launch: - - arguments: '-fromsteam' + - arguments: "-fromsteam" executable: ConquerorsBladeSteamLoader.exe type: none -'905380': +"905380": installDir: RpgEra launch: - config: @@ -410005,11 +404190,11 @@ executable: Game type: default workingdir: RpgEra -'905390': +"905390": installDir: Drone Spektra launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: DroneSpektra1.0.exe type: default @@ -410017,94 +404202,92 @@ oslist: linux executable: MyProject.sh type: default -'905400': {} -'905440': +"905400": {} +"905440": installDir: RogueAlongWay launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: RogueAlongWay.exe type: none -'905450': +"905450": installDir: NASCAR Heat 3 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: NASCARHeat3.exe type: default - - arguments: '-MGI-reset-graphics-settings' + - arguments: "-MGI-reset-graphics-settings" config: - osarch: '64' + osarch: "64" oslist: windows description: Reset Graphic Settings executable: NASCARHeat3.exe type: none -'905460': +"905460": installDir: Nutrients for Life launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: AgriumSSVR.exe type: vr -'905490': +"905490": installDir: Deck Hunter launch: - config: oslist: windows executable: DeckHunter.exe type: default -'905510': +"905510": installDir: Rugosi launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: rugosi.exe type: default -'905530': +"905530": installDir: Anew The Distant Light launch: - config: oslist: windows - description: 'Launch Anew: The Distant Light' - description_loc: - english: 'Launch Anew: The Distant Light' + description: "Launch Anew: The Distant Light" executable: Anew_TheDistantLight.exe type: default -'905560': +"905560": installDir: Bullets in the Space launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: nw.exe type: default -'905590': - installDir: The Asteroid Belt's Trial +"905590": + installDir: "The Asteroid Belt's Trial" launch: - config: oslist: windows - executable: The Asteroid Belt's Trial.exe + executable: "The Asteroid Belt's Trial.exe" type: default -'905630': +"905630": installDir: GALAXY TOP WING launch: - config: oslist: windows executable: topwingvr.exe type: openvroverlay -'905640': +"905640": installDir: Combat Arms Reloaded launch: - - arguments: '--vfapp vfsteam' + - arguments: "--vfapp vfsteam" config: oslist: windows executable: Engine_BE.exe type: default -'905650': +"905650": installDir: Dominus2 launch: - config: @@ -410119,7 +404302,7 @@ oslist: macos executable: Dominus 2.app type: default -'905660': +"905660": installDir: PaperWar launch: - config: @@ -410127,14 +404310,14 @@ description: Launch executable: cow.exe type: none -'905670': +"905670": installDir: GFBH launch: - config: oslist: windows executable: Main.exe type: default -'905690': +"905690": installDir: 魔物讨伐团 launch: - config: @@ -410145,61 +404328,61 @@ oslist: macos executable: MonsterSlayers.app type: default -'905760': {} -'905790': +"905760": {} +"905790": installDir: Hungry Shadows launch: - executable: Hungry Shadows.exe type: none -'905800': +"905800": installDir: SpaceExile launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Space_Exile.exe type: default -'905860': +"905860": installDir: DrillMania launch: - config: oslist: windows executable: DrillMania.exe type: default -'905870': +"905870": installDir: Inn the Countryside launch: - config: oslist: windows executable: InnTheCountryside.exe type: default -'905880': +"905880": installDir: Caves of Plague launch: - config: oslist: windows executable: CavesOfPlague.exe type: default -'905890': +"905890": installDir: MONOWARS Red Zone launch: - - executable: MONOWARS - Red Zone\\MONOWARS - Red Zone.exe + - executable: "MONOWARS - Red Zone\\\\MONOWARS - Red Zone.exe" type: none -'905940': {} -'905960': +"905940": {} +"905960": installDir: Skyland Defense launch: - executable: Skyland Defense.exe type: default - - arguments: '-vr' + - arguments: "-vr" executable: Skyland Defense.exe type: vr -'905980': {} -'9060': +"905980": {} +"9060": installDir: Hexen 2 launch: - executable: glh2.exe -'906000': +"906000": installDir: Keyhole Spy Student Girls launch: - config: @@ -410210,12 +404393,12 @@ oslist: macos executable: Keyhole Spy Student Girls.app/Contents/MacOS/Keyhole Spy Student Girls type: default -'906010': +"906010": installDir: TAL Arctic 2 launch: - executable: TALArctic2.exe type: none -'906020': +"906020": installDir: Strike Cars - Armed & Armored launch: - config: @@ -410224,88 +404407,88 @@ type: none - config: oslist: macos - executable: Strike Cars.app\\Contents\\MacOS\\Strike Cars + executable: "Strike Cars.app\\\\Contents\\\\MacOS\\\\Strike Cars" type: none -'906030': +"906030": installDir: NOCE launch: - config: oslist: windows executable: NOCEforSTEAM.exe type: default -'906050': +"906050": installDir: Hentai Case Opening launch: - executable: Hentai Case Opening.exe type: none -'906080': {} -'906100': +"906080": {} +"906100": installDir: Observation launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Observation.exe type: default -'906110': +"906110": installDir: Minotaur Arcade Volume 1 launch: - config: oslist: windows executable: MinotaurArcade.exe type: default - - arguments: '-mode 1' + - arguments: "-mode 1" config: oslist: windows executable: MinotaurArcade.exe type: othervr - - arguments: '-mode 2' + - arguments: "-mode 2" config: oslist: windows description: Oculus Arcade Mode executable: MinotaurArcade.exe type: option1 -'906120': +"906120": installDir: POLYBIUS launch: - config: oslist: windows executable: Polybius.exe type: default - - arguments: '-mode 1' + - arguments: "-mode 1" config: oslist: windows executable: Polybius.exe type: othervr -'906160': +"906160": installDir: Repeat the image Animals launch: - config: oslist: windows executable: Repeat the image - Animals.exe type: default -'906170': +"906170": installDir: Metal Brigade Tactics launch: - config: oslist: windows executable: MetalBrigadeTactics.exe type: default -'906190': +"906190": installDir: Kamikaze Cube 2 launch: - config: oslist: windows executable: Kamikaze Cube 2.exe type: default -'906200': +"906200": installDir: Tunche Arena launch: - config: oslist: windows executable: Tunche.exe type: default -'906240': +"906240": installDir: Encore_Card_Games launch: - config: @@ -410316,7 +404499,7 @@ oslist: macos executable: Encore Card Games.app type: default -'906250': +"906250": installDir: Encore Casino Games launch: - config: @@ -410327,25 +404510,25 @@ oslist: macos executable: Encore Casino Games.app type: default -'906260': +"906260": installDir: Ravensgard Arena launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Ravensgard Arena.exe type: default -'906280': +"906280": installDir: Combat rush launch: - executable: CombatRushSteam.exe type: config -'906300': +"906300": installDir: Under One Wing launch: - executable: UnderOneWing.exe type: default -'906310': +"906310": installDir: RapidRacing launch: - config: @@ -410356,8 +404539,8 @@ oslist: linux executable: RapidRacing.exe type: default -'906340': {} -'906360': +"906340": {} +"906360": installDir: LUXO Buddies launch: - config: @@ -410369,20 +404552,20 @@ description: Expansion Pack 1 executable: LUXO Buddies - Expansion Pack 1.exe type: option1 -'906370': - installDir: Starkid's Obstacle Course +"906370": + installDir: "Starkid's Obstacle Course" launch: - - executable: Starkid's Obstacle Course.exe + - executable: "Starkid's Obstacle Course.exe" type: none -'906390': +"906390": installDir: Return launch: - config: oslist: windows executable: Return.exe type: default -'906430': {} -'906450': +"906430": {} +"906450": installDir: Tenacious launch: - config: @@ -410391,20 +404574,20 @@ type: default - config: oslist: macos - executable: Tenacious\\Tenacious.app\\Contents\\MacOS\\Tenacious + executable: "Tenacious\\\\Tenacious.app\\\\Contents\\\\MacOS\\\\Tenacious" type: default - config: oslist: linux executable: Tenacious.x86_64 type: default -'906460': +"906460": installDir: Galactis launch: - config: oslist: windows executable: Galactis.exe type: default -'906470': +"906470": installDir: Gravia launch: - config: @@ -410415,60 +404598,60 @@ oslist: macos executable: Gravia.app/Contents/MacOS/Gravia type: default -'906480': +"906480": installDir: Defenders of Ekron - Definitive Edition launch: - executable: Defenders of Ekron - Definitive Edition.exe type: default -'906510': +"906510": installDir: ConceptionPlus launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ConceptionPlus.exe type: default - config: oslist: windows description: Launch - executable: launcher\\ConceptionPlus-Launcher.exe + executable: "launcher\\\\ConceptionPlus-Launcher.exe" type: config nameLocalized: japanese: CONCEPTION PLUS 俺の子供を産んでくれ! tchinese: CONCEPTION PLUS 產子救世錄 -'906560': +"906560": installDir: BARE BOOB BRAWLERZ VNovel Vol.1 launch: - config: oslist: windows executable: BBB_VN_01.exe type: default -'906590': {} -'906600': +"906590": {} +"906600": installDir: Gunkid99 launch: - config: oslist: windows executable: Gunkid99.exe type: none -'906650': +"906650": installDir: Gumstein The Awakening launch: - executable: SlimeGame.exe type: none -'906660': +"906660": installDir: Seacurity Breach launch: - config: oslist: windows executable: Seacurity Breach.exe type: none -'906680': +"906680": installDir: BloodyMary launch: - executable: BloodyMary.exe type: none -'906730': +"906730": installDir: Typical launch: - config: @@ -410483,30 +404666,30 @@ oslist: macos executable: Typical.app type: none -'906740': +"906740": installDir: Voidship The Long Journey launch: - config: oslist: windows executable: Voidship.exe type: default -'906750': +"906750": installDir: Weaverse launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Weaverse.exe type: default -'906770': +"906770": installDir: TITAN SLAYERⅡ launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TitanSlayer2.exe type: vr -'906790': +"906790": installDir: Gaia launch: - config: @@ -410521,70 +404704,62 @@ description: Closed Pre Alpha Test executable: gaia.exe type: none -'906820': {} -'906850': +"906820": {} +"906850": installDir: Again launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: again.exe type: default -'906870': +"906870": installDir: FurryFury launch: - config: oslist: windows executable: FurryFury.exe type: default -'906880': +"906880": installDir: goto launch: - executable: goto.exe type: default -'906900': {} -'906920': +"906900": {} +"906920": installDir: Puzzle launch: - executable: puzzle.exe type: none -'906930': +"906930": installDir: ProjectY launch: - config: oslist: windows description: LEAP - description_loc: - english: LEAP executable: start_protected_game.exe type: option1 - config: oslist: windows description: LEAP with Anti-Cheat Disabled (limited) - description_loc: - english: LEAP with Anti-Cheat Disabled (limited) executable: LEAP.exe type: option2 - description: Install EasyAntiCheat - description_loc: - english: Install EasyAntiCheat executable: EasyAntiCheat/Install.bat type: none workingdir: EasyAntiCheat - description: Uninstall EasyAntiCheat - description_loc: - english: Uninstall EasyAntiCheat executable: EasyAntiCheat/Uninstall.bat type: none workingdir: EasyAntiCheat -'906950': +"906950": installDir: Bomb Riders launch: - config: oslist: windows executable: BombRiders/BombRiders.exe type: default -'907000': +"907000": installDir: The Navigator launch: - config: @@ -410595,19 +404770,19 @@ oslist: macos executable: TheNavigator.app type: default -'907020': +"907020": installDir: Bomber 95 launch: - config: oslist: windows executable: Bomber95.exe type: none -'907030': +"907030": installDir: Globat Pixels launch: - executable: Globat Pixels.exe type: default -'907040': +"907040": installDir: Simple Racing launch: - config: @@ -410616,20 +404791,20 @@ type: default - config: oslist: macos - executable: SimpleRacing.app\\Contents\\MacOS\\SimpleRacing + executable: "SimpleRacing.app\\\\Contents\\\\MacOS\\\\SimpleRacing" type: default - config: oslist: linux executable: Simple Racing.x86 type: default -'907050': +"907050": installDir: Deep Space launch: - config: oslist: windows executable: Deep Space.exe type: none -'907090': +"907090": installDir: 诅咒铠甲 launch: - executable: Game.exe @@ -410638,14 +404813,14 @@ english: Cursed Armor schinese: 詛咒铠甲 tchinese: 詛咒鎧甲 -'907160': +"907160": installDir: Project Skylab launch: - config: oslist: windows executable: FindAWayHomeAMars.exe type: none -'907190': +"907190": installDir: GRITS Racing launch: - config: @@ -410657,11 +404832,11 @@ executable: GRITS Racing.app/Contents/MacOS/GRITS Racing type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: grits.x86_64 type: default -'907210': +"907210": installDir: Phantom Thief Celianna launch: - config: @@ -410672,35 +404847,33 @@ japanese: 正義の怪盗セリアーヌ schinese: 少女怪盗赛丽安娜 tchinese: 少女怪盜賽麗安娜 -'907220': +"907220": installDir: One Piu Day launch: - executable: OnePiuDay.exe type: none -'907240': +"907240": installDir: Pixel Xiuzhen launch: - description: Pixel Xiuzhen executable: Pixel Xiuzhen.exe type: default -'907250': +"907250": installDir: GunGrave VR U.N launch: - config: oslist: windows executable: GG.exe type: vr -'907270': +"907270": installDir: 电竞传奇 launch: - config: oslist: windows - realm: steamglobal executable: EL_Steam.exe type: default - config: oslist: windows - realm: steamchina executable: EL_Steam.exe type: default nameLocalized: @@ -410708,32 +404881,32 @@ sc_schinese: 电竞传奇 schinese: 电竞传奇 tchinese: 電競傳奇 -'907310': +"907310": installDir: World of Myths launch: - config: oslist: windows executable: World of Myths.exe type: none -'907320': +"907320": installDir: DreamThreeKingdom launch: - config: oslist: windows - executable: build\\release\\Dream War.exe + executable: "build\\\\release\\\\Dream War.exe" type: default -'907330': +"907330": installDir: Amulet_Zero.Optimize launch: - config: oslist: windows executable: Game.exe type: default -'907350': +"907350": installDir: WTC 2 - Part 1 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: WelcomeToChichester2-PartI.exe type: default @@ -410746,35 +404919,35 @@ executable: WelcomeToChichester2-PartI.app type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: WelcomeToChichester2-PartI-32.exe type: default -'907380': +"907380": installDir: The Ballad Singer launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: windows_content\\TBS_1_8.exe + executable: "windows_content\\\\TBS_1_8.exe" type: default - config: oslist: macos executable: The Ballad Singer.app type: default - config: - osarch: '32' + osarch: "32" oslist: windows - executable: windows_content_x86\\TBS_1_8_x86.exe + executable: "windows_content_x86\\\\TBS_1_8_x86.exe" type: none -'907390': +"907390": installDir: Numberline 3 launch: - config: oslist: windows executable: nw.exe type: none -'907410': +"907410": installDir: Hard Times launch: - config: @@ -410783,13 +404956,13 @@ type: none - config: oslist: macos - executable: HardTimes.app\\Contents\\MacOS\\HardTimes + executable: "HardTimes.app\\\\Contents\\\\MacOS\\\\HardTimes" type: none - config: oslist: linux executable: HardTimes.x86 type: default -'907440': +"907440": installDir: Keyhole Spy Teachers launch: - config: @@ -410800,93 +404973,91 @@ oslist: macos executable: Keyhole Spy Teachers.app/Contents/MacOS/Keyhole Spy Teachers type: default -'907460': +"907460": installDir: GirlfriendCards launch: - config: oslist: windows executable: GirlfriendCards.exe type: default -'907470': +"907470": installDir: Iris.Fall launch: - config: oslist: windows executable: IrisFall.exe type: none -'907500': {} -'907560': +"907500": {} +"907560": installDir: Terrawurm launch: - config: oslist: windows executable: Terrawurm.exe type: default -'907590': +"907590": installDir: Data mining launch: - config: oslist: windows executable: Data mining.exe type: default -'907600': +"907600": installDir: Towaga Among Shadows launch: - config: oslist: windows executable: Towaga Among Shadows.exe type: default -'907620': +"907620": installDir: Lawnmower Game 3 Horror launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: LM3H.exe type: default -'907630': {} -'907650': +"907630": {} +"907650": installDir: Stronghold Warlords launch: - config: oslist: windows - description: 'Stronghold: Warlords' - description_loc: - english: 'Stronghold: Warlords' - executable: bin\\win32_release\\StrongholdWarlords.exe + description: "Stronghold: Warlords" + executable: "bin\\\\win32_release\\\\StrongholdWarlords.exe" type: none - workingdir: bin\\win32_release -'907670': + workingdir: "bin\\\\win32_release" +"907670": installDir: Super Crush KO launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SuperCrushKO.exe type: none -'907680': +"907680": installDir: Opai Puzzle launch: - config: oslist: windows executable: Opai Puzzle.exe type: default -'907710': +"907710": installDir: This Is the Zodiac Speaking launch: - config: oslist: windows executable: Zodiac.exe type: default -'907720': +"907720": installDir: Do Or Die launch: - config: oslist: windows executable: DoOrDie.exe type: vr -'907760': - installDir: Arida Backland's Awakening +"907760": + installDir: "Arida Backland's Awakening" launch: - config: oslist: windows @@ -410905,32 +405076,32 @@ oslist: linux executable: Arida.exe type: default -'907770': +"907770": installDir: STONE launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Stone.exe type: default - config: oslist: macos - executable: Stone.app\\Contents\\MacOS\\Stone + executable: "Stone.app\\\\Contents\\\\MacOS\\\\Stone" type: default -'907780': +"907780": installDir: Puzzle_Noid launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: nw.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: nw.exe type: default -'907820': +"907820": installDir: Aeon of Sands - The Trail launch: - config: @@ -410939,25 +405110,25 @@ type: default - config: oslist: macos - executable: AeonOfSands.app\\Contents\\MacOS\\love + executable: "AeonOfSands.app\\\\Contents\\\\MacOS\\\\love" type: default - config: oslist: linux executable: Aeon_of_Sands_-_The_Trail-x86_64.AppImage type: default -'907860': {} -'907870': +"907860": {} +"907870": installDir: Wandering Star launch: - config: oslist: windows executable: Wandering Star.exe type: default -'907890': +"907890": installDir: The Cat and the Coup (4K Remaster) launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TheCatAndTheCoup.exe type: default @@ -410965,52 +405136,52 @@ oslist: macos executable: TheCatAndTheCoup.app type: default -'907900': +"907900": installDir: Mystic Ruins launch: - config: oslist: windows executable: Game.exe type: default -'907920': +"907920": installDir: jzdmx launch: - config: oslist: windows executable: game.exe type: default -'907940': +"907940": installDir: Defense Contract launch: - config: oslist: windows executable: DefenseContract.exe type: default - - arguments: '--editor' + - arguments: "--editor" config: oslist: windows executable: DefenseContract.exe type: editor - - arguments: '--vr' + - arguments: "--vr" config: oslist: windows executable: DefenseContract.exe type: vr -'907950': +"907950": installDir: Bottle of truth launch: - config: oslist: windows executable: bot.exe type: none -'907980': +"907980": installDir: GRAULARM launch: - config: oslist: windows executable: Game.exe type: default -'90800': +"90800": installDir: Crasher launch: - config: @@ -411021,7 +405192,7 @@ oslist: macos description: mac executable: Crasher.app -'908000': +"908000": installDir: Stories In Stone launch: - config: @@ -411032,7 +405203,7 @@ oslist: macos executable: Game.app type: default -'908010': +"908010": installDir: Farjob launch: - config: @@ -411041,32 +405212,32 @@ type: default - config: oslist: macos - executable: Farjob.app\\Contents\\MacOS\\Mac_Runner + executable: "Farjob.app\\\\Contents\\\\MacOS\\\\Mac_Runner" type: default -'908020': +"908020": installDir: Tactic Code launch: - config: oslist: windows executable: Tactic Code.exe type: default -'908030': +"908030": installDir: Breen Origins launch: - config: oslist: windows executable: Breen Origins.exe type: default -'908050': +"908050": installDir: Summer Catchers launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Summer Catchers.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Summer Catchers.x86_64 type: default @@ -411074,7 +405245,7 @@ oslist: macos executable: Summer Catchers.app type: default -'908070': +"908070": installDir: Mystic Vale launch: - config: @@ -411085,54 +405256,54 @@ oslist: macos executable: Mystic Vale_Release.app type: default -'908090': +"908090": installDir: Skateboarding pro launch: - config: oslist: windows executable: SkateboarindProParaSteamEste.exe type: default -'908100': +"908100": installDir: Nine Provinces Caravan launch: - config: oslist: windows executable: Nine.exe type: default -'908120': +"908120": installDir: W T B launch: - executable: wtb.exe type: default -'908150': +"908150": installDir: Dunderheads launch: - config: oslist: windows executable: Dunderheads.exe type: default -'908180': +"908180": installDir: Space Maze launch: - config: oslist: windows executable: SpaceMaze.exe type: vr -'908230': +"908230": installDir: Basketball Hoop launch: - config: oslist: windows executable: Basketball Hoop.exe type: default -'908260': +"908260": installDir: Velocity G launch: - config: oslist: windows executable: Velocity G.exe type: default -'908270': +"908270": installDir: Slime Dad launch: - config: @@ -411141,33 +405312,33 @@ type: none - config: oslist: macos - executable: SlimeDad.app\\Contents\\MacOS\\SlimeDad + executable: "SlimeDad.app\\\\Contents\\\\MacOS\\\\SlimeDad" type: none - config: oslist: linux executable: SlimeDad.x86 type: none -'908310': +"908310": installDir: The Call launch: - config: oslist: windows executable: The Call.exe type: none -'908320': +"908320": installDir: CaptainTraining launch: - description: Chinese Version executable: Captain-training.exe type: config -'908330': {} -'908350': +"908330": {} +"908350": installDir: PrettyGirlsMahjong launch: - executable: 美少女麻将接龙.exe type: default -'908360': {} -'908390': +"908360": {} +"908390": installDir: Infinitrap Rehamstered Edition launch: - config: @@ -411182,75 +405353,75 @@ oslist: macos executable: Launcher.app type: default -'908400': +"908400": installDir: Age Of Forays launch: - config: oslist: windows executable: Age Of Forays.exe type: none -'908430': +"908430": installDir: Colliderscope launch: - config: oslist: windows executable: Colliderscope.exe type: default -'908440': +"908440": installDir: AllForOne launch: - executable: AllForOne.exe type: default -'908480': +"908480": installDir: Legends of Ethernal launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: LegendsOfEthernal.exe type: default - config: oslist: macos - executable: LegendsOfEthernal.app\\Contents\\MacOS\\Legends of Ethernal + executable: "LegendsOfEthernal.app\\\\Contents\\\\MacOS\\\\Legends of Ethernal" type: default -'908500': +"908500": installDir: crazy_maze launch: - config: oslist: windows executable: crazy_maze.exe type: none -'908510': {} -'908590': +"908510": {} +"908590": installDir: Combiner the Card Game launch: - config: oslist: windows executable: combiner.exe type: default -'908600': {} -'908660': +"908600": {} +"908660": installDir: Circle Brawl launch: - config: oslist: windows executable: Circle Brawl.exe type: config -'908690': +"908690": installDir: BigBoyVisualCrimeNovel launch: - config: oslist: windows executable: BigBoy.exe type: default -'908710': +"908710": installDir: NightKnight launch: - config: oslist: windows executable: NightKnight.exe type: vr -'908730': +"908730": installDir: TimeScar Hyperion launch: - config: @@ -411261,50 +405432,50 @@ oslist: macos executable: TimeScar_Hyperion.app/Contents/MacOS/TimeScar_Hyperion type: default -'908740': +"908740": installDir: VALHALL Harbinger launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: VALHALL.exe type: default -'908750': +"908750": installDir: Death Race launch: - config: oslist: windows executable: DeathRace.exe type: vr -'908790': +"908790": installDir: Subdivision Infinity launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Subdivision.exe type: default -'908820': {} -'908830': +"908820": {} +"908830": installDir: Shadow Fear Path to Insanity launch: - config: oslist: windows executable: Shadow Fear Path to Insanity.exe type: default -'908840': +"908840": installDir: Suprapong launch: - executable: Suprapong.exe type: none -'908920': +"908920": installDir: Nightmare Simulator launch: - config: oslist: windows executable: NS.exe type: default -'908940': +"908940": installDir: Windows_Content launch: - config: @@ -411315,7 +405486,7 @@ oslist: macos executable: Mac_Content.app/Contents/MacOS/Desktop type: default -'908950': +"908950": installDir: Glow Chess launch: - config: @@ -411330,20 +405501,20 @@ oslist: linux executable: GlowChess.sh type: default -'908960': +"908960": installDir: Second Chance launch: - executable: Second Chance.exe type: none -'908990': +"908990": installDir: Steel Vampire launch: - executable: steel_vampire.exe type: none nameLocalized: japanese: 鋼鉄のヴァンパイア -'909000': {} -'909010': +"909000": {} +"909010": installDir: LoveBug launch: - config: @@ -411358,14 +405529,14 @@ oslist: macos executable: LoveBug.app type: none -'909020': +"909020": installDir: Menbenwuyou launch: - config: oslist: windows executable: Game.exe type: default -'909080': +"909080": installDir: Cube Escape Paradox launch: - config: @@ -411376,29 +405547,29 @@ oslist: macos executable: CubeEscapeParadox.app type: default -'909100': +"909100": installDir: Epic Fun launch: - config: - osarch: '64' + osarch: "64" executable: Epic Fun.exe type: vr -'909110': +"909110": installDir: Acid Nimbus launch: - config: oslist: windows executable: AcidNimbus.exe type: none -'909130': {} -'909170': - installDir: 'A.D.M(Angels,Demons And Men)' +"909130": {} +"909170": + installDir: "A.D.M(Angels,Demons And Men)" launch: - config: oslist: windows executable: ADM64bit.exe type: default -'909190': +"909190": installDir: Escape Lala launch: - config: @@ -411409,29 +405580,29 @@ oslist: macos executable: Escape Lala.app type: none -'909200': +"909200": installDir: Wandering Owl launch: - config: oslist: windows executable: WanderingOwl.exe type: default -'909220': +"909220": installDir: Punch Pad Workout launch: - config: oslist: windows executable: Punch Pad Workout.exe type: vr -'909240': {} -'909270': +"909240": {} +"909270": installDir: Flying Soul launch: - config: oslist: windows executable: FlyingSoul.exe type: none -'909320': +"909320": installDir: Ruinarch launch: - config: @@ -411439,85 +405610,85 @@ description: This is a description executable: Ruinarch.exe type: default -'909360': {} -'909370': +"909360": {} +"909370": installDir: ESCAPE - Secret of the Hidden Room the Collaborator launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: HiddenRoom.exe type: default -'909430': +"909430": installDir: Travel Riddles Mahjong launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: mahjong.exe type: none - config: - osarch: '64' + osarch: "64" oslist: windows executable: mahjong64.exe type: none -'909470': {} -'909480': +"909470": {} +"909480": installDir: PUZZLE LANDSCAPES launch: - config: oslist: windows executable: PUZZLE - LANDSCAPES.exe type: default -'909490': +"909490": installDir: Hipster Attack launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: Hipster Attack.exe type: default -'909500': +"909500": installDir: Hurricane chase launch: - config: oslist: windows executable: Hurricane chase.exe type: default -'909510': +"909510": installDir: MISTOVER launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: MISTOVER.exe type: default -'909570': +"909570": installDir: Spuds Unearthed launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Spuds Unearthed.exe type: vr -'909580': +"909580": installDir: Cortex launch: - executable: Cortex.exe type: none -'909630': +"909630": installDir: Desktop Dynasties launch: - config: oslist: windows executable: Desktop Dynasties.exe type: default -'909660': +"909660": installDir: Vagrus - The Riven Realms launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Vagrus.exe type: default @@ -411526,23 +405697,23 @@ executable: Vagrus.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Vagrus.x86_64 type: none -'909670': +"909670": installDir: SkyboltZack launch: - config: oslist: windows executable: SkyboltZack.exe type: none -'909780': +"909780": installDir: Scraper The First Strike launch: - executable: Scraper_Unreal.exe type: vr -'909820': +"909820": installDir: Songbird Symphony launch: - config: @@ -411553,7 +405724,7 @@ oslist: macos executable: Songbird Symphony.app type: default -'909830': +"909830": installDir: Pixel Draw launch: - config: @@ -411590,49 +405761,49 @@ description: Expansion Pack 6 executable: Pixel Draw - Expansion Pack 6.exe type: option1 -'909860': {} -'909900': +"909860": {} +"909900": installDir: er-mo launch: - config: oslist: windows executable: data.exe type: none -'909970': +"909970": installDir: TechCorp launch: - config: oslist: windows executable: TechCorp.exe type: default -'910150': +"910150": installDir: Roving in the Dark launch: - executable: Rovinginthedark.exe type: none -'910180': {} -'910200': +"910180": {} +"910200": installDir: Professor Watts Memory Match Cute Animals launch: - config: oslist: windows executable: Professor Watts Memory Match Baby Animals.exe type: default -'910210': +"910210": installDir: CoffeeTrainerVR launch: - config: oslist: windows executable: CoffeeTrainerPC.exe type: vr -'910220': +"910220": installDir: Professor Watts Memory Match Yummy Cupcakes launch: - config: oslist: windows executable: Professor Watts Memory Match Cupcakes.exe type: default -'910230': +"910230": installDir: Fortified Swiss launch: - config: @@ -411641,23 +405812,23 @@ type: default - config: oslist: macos - executable: OSXFOLDER\\FortifiedSwiss.app\\Contents\\MacOS\\FortifiedSwiss\\FortifiedSwiss.app + executable: "OSXFOLDER\\\\FortifiedSwiss.app\\\\Contents\\\\MacOS\\\\FortifiedSwiss\\\\FortifiedSwiss.app" type: default -'910250': +"910250": installDir: Professor Watts Memory Match Fresh Fruit launch: - config: oslist: windows executable: Professor Watts Memory Match Fruit.exe type: default -'910260': +"910260": installDir: Chicken VR launch: - config: oslist: windows executable: Chicken VR.exe type: vr -'910280': +"910280": installDir: Dash Island launch: - config: @@ -411665,65 +405836,65 @@ description: Launch Dash Island executable: Game.exe type: default -'910290': +"910290": installDir: CRACKPOT DESPOT TRUMP WARFARE launch: - config: oslist: windows executable: Crackpot Despot.exe type: default -'910320': +"910320": installDir: adasanguozhi2018 launch: - config: oslist: windows executable: sanguo.exe type: default -'910380': +"910380": installDir: ShiningSouls launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ShiningSouls.exe type: default -'910390': +"910390": installDir: Stay_or_Leave launch: - executable: SOL.exe type: default -'910400': +"910400": installDir: Mio Garden launch: - config: oslist: windows executable: MioGarden.exe type: vr -'910420': +"910420": installDir: Brick Breaker with Risa launch: - config: oslist: windows executable: bbwr.exe type: none -'910430': +"910430": installDir: The War of the Worlds Andromeda launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Andromeda.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Andromeda.x64 type: default -'910450': +"910450": installDir: Warhammer Quest 2 The End Times launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: WQ2.exe type: none @@ -411731,48 +405902,48 @@ oslist: macos executable: WQ2.app type: none -'910460': +"910460": installDir: Rocket of Whispers Prologue launch: - config: oslist: macos - executable: Rocket of Whispers Prologue.app\\Contents\\MacOS\\Rocket of Whispers Prologue + executable: "Rocket of Whispers Prologue.app\\\\Contents\\\\MacOS\\\\Rocket of Whispers Prologue" type: default - config: oslist: windows executable: Rocket of Whispers Prologue.exe type: default -'910470': +"910470": installDir: Backworlds launch: - config: oslist: windows executable: backworlds.exe type: default -'910490': +"910490": installDir: KillSquad launch: - - arguments: '-nohmd' + - arguments: "-nohmd" config: - osarch: '64' + osarch: "64" oslist: windows executable: Game.exe type: default -'910500': +"910500": installDir: Goalkeeper Legend launch: - config: oslist: windows executable: goalkeeperLegend.exe type: vr -'910530': +"910530": installDir: The Eerie Inn VR launch: - config: oslist: windows executable: TheEerieInn.exe type: vr -'910540': +"910540": installDir: Moon River launch: - config: @@ -411787,11 +405958,11 @@ oslist: linux executable: Moon River.x86_64 type: none -'910590': +"910590": installDir: Supaplex SQUARES launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: SupaplexSquares.exe type: default @@ -411800,16 +405971,16 @@ executable: SupaplexSquares.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: SupaplexSquares.x86_64 type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: SupaplexSquares.exe type: default -'910630': +"910630": installDir: Arcade Spirits launch: - config: @@ -411824,28 +405995,28 @@ oslist: macos executable: ArcadeSpirits.app type: default -'910650': +"910650": installDir: Thy Knights Of Climbalot launch: - config: oslist: windows executable: Thy Knights Of Climbalot.exe type: none -'910660': +"910660": installDir: Shudder launch: - config: oslist: windows executable: shudderGame.exe type: default -'910700': +"910700": installDir: Space Break launch: - config: oslist: windows executable: space_break reload 2.blend.exe type: none -'910730': +"910730": installDir: Solid Aether launch: - config: @@ -411856,7 +406027,7 @@ oslist: macos executable: solid_aether.app type: default -'910750': +"910750": installDir: Battle Species launch: - config: @@ -411867,15 +406038,15 @@ oslist: macos executable: BattleSpecies.app type: default -'910770': +"910770": installDir: Slay The Dragon launch: - config: oslist: windows executable: SlayTheDragon.exe type: none -'910800': {} -'910830': +"910800": {} +"910830": installDir: RebelGalaxyOutlaw launch: - executable: SteamLauncher.exe @@ -411883,14 +406054,14 @@ - description: Without Launcher executable: RebelGalaxySteam.exe type: option1 -'910850': +"910850": installDir: Darken VR launch: - config: oslist: windows executable: DarkenV1.0.exe type: vr -'910880': +"910880": installDir: Mad Tower Tycoon launch: - config: @@ -411901,115 +406072,115 @@ oslist: macos executable: MadTowerTycoon.app type: default -'910980': {} -'910990': +"910980": {} +"910990": installDir: Urban Lockdown launch: - config: oslist: windows executable: urban lockdown.exe type: none -'91100': +"91100": installDir: SkyDrift launch: - description: SkyDrift executable: SkyDrift.exe - - arguments: '-safemode' + - arguments: "-safemode" description: SkyDrift (Safe Mode) executable: SkyDrift.exe -'911010': +"911010": installDir: Farplane Relic launch: - config: oslist: windows executable: FarplaneRelic.exe type: default -'911040': +"911040": installDir: Bunny - The Horror Game launch: - executable: Bunny.exe type: none -'911050': +"911050": installDir: Holiday Escape launch: - config: oslist: windows executable: Holiday Escape.exe type: default -'911060': {} -'911090': {} -'911100': +"911060": {} +"911090": {} +"911100": installDir: Memetown USA launch: - config: oslist: windows executable: Memetown USA.exe type: default -'911120': +"911120": installDir: Yumori Forest launch: - config: oslist: windows executable: yumoriforest.exe type: default -'911130': +"911130": installDir: Puzzle Monarch Vampires launch: - config: oslist: windows executable: Puzzle Monarch Vampires.exe type: default -'911170': +"911170": installDir: Veccol launch: - config: oslist: windows executable: Veccol.exe type: default -'911180': +"911180": installDir: Lost Letters launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: lostletters.exe type: default -'911190': {} -'911200': +"911190": {} +"911200": installDir: Petoons Party launch: - config: oslist: windows executable: PetoonsParty.exe type: none -'911210': +"911210": installDir: King of my Castle VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: 'KOMC_VR[HTC VIVE].exe' + executable: "KOMC_VR[HTC VIVE].exe" type: vr - config: - osarch: '64' + osarch: "64" oslist: windows - executable: 'KOMC_VR[OCULUS].exe' + executable: "KOMC_VR[OCULUS].exe" type: othervr -'911220': +"911220": installDir: Dusk Diver launch: - config: oslist: windows executable: ProjectEverett.exe type: none -'911230': +"911230": installDir: Running Man 3D launch: - config: oslist: windows executable: RM3D.exe type: default -'911240': +"911240": installDir: SuperStreakerPlus launch: - config: @@ -412027,82 +406198,82 @@ description: SuperStreakerPlus Linux executable: SuperStreakerPlusiOSTestDemo v2.0.x86_64 type: default -'911260': +"911260": installDir: Dawn of the Breakers launch: - config: oslist: windows executable: Breakers.exe type: default -'911270': +"911270": installDir: Intelligence Cats launch: - config: oslist: windows executable: Intelligence Cats.exe type: default -'911280': +"911280": installDir: Dinosaur Hunter VR launch: - config: oslist: windows executable: dinosaurhunter.exe type: vr -'911290': +"911290": installDir: Prehistoria launch: - config: oslist: windows executable: prehistoria.exe type: vr -'911320': +"911320": installDir: Timeover launch: - config: oslist: windows executable: Timeover.exe type: default -'911380': {} -'911400': - installDir: Assassin's Creed III Remastered +"911380": {} +"911400": + installDir: "Assassin's Creed III Remastered" launch: - - arguments: '-uplay_steam_mode' + - arguments: "-uplay_steam_mode" config: - osarch: '64' + osarch: "64" oslist: windows - description: Assassins's Creed III Remaster + description: "Assassins's Creed III Remaster" executable: ACIII.exe type: option1 - - arguments: '-uplay_steam_mode' + - arguments: "-uplay_steam_mode" config: - osarch: '64' + osarch: "64" oslist: windows - description: Assassin's Creed Liberation Remaster + description: "Assassin's Creed Liberation Remaster" executable: ACLiberation.exe type: option2 -'911420': +"911420": installDir: Terra Incognito - Antarctica 1911 launch: - config: oslist: windows executable: Terra Incognito.exe type: default -'911430': +"911430": installDir: Good Company launch: - config: oslist: windows executable: GoodCompany.exe type: default - - arguments: '-force-opengl' + - arguments: "-force-opengl" config: betakey: _latest_beta - osarch: '64' + osarch: "64" oslist: windows description: Good Company (OpenGL) executable: GoodCompany.exe type: option1 -'911440': +"911440": installDir: Evemnesis launch: - config: @@ -412117,38 +406288,38 @@ oslist: linux executable: Evemnesis.x86_64 type: default -'911470': {} -'911480': +"911470": {} +"911480": installDir: GoFetch launch: - config: oslist: windows executable: GoFetch.exe type: default -'911500': +"911500": installDir: Antox vs. Free Radicals launch: - config: oslist: windows executable: Antox vs. Free Radicals.exe type: none -'911510': +"911510": installDir: Paws and Soul launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: \\Paws_and_soul.exe + executable: "\\\\Paws_and_soul.exe" type: default -'911520': +"911520": installDir: One More Roll launch: - config: oslist: windows executable: RollingSnowMan.exe type: default -'911550': - installDir: Din's Legacy +"911550": + installDir: "Din's Legacy" launch: - config: oslist: windows @@ -412165,7 +406336,7 @@ description: Launch executable: DinsLegacy type: default -'911580': +"911580": installDir: Audio Infection launch: - config: @@ -412173,21 +406344,21 @@ description: in normal mode executable: Audio Infection.exe type: default - - arguments: '-vrEnabled' + - arguments: "-vrEnabled" config: oslist: windows executable: Audio Infection.exe type: vr -'911600': {} -'911630': +"911600": {} +"911630": installDir: Unexpected Circumstances launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: UnexpectedCircumstances.exe type: default -'911640': +"911640": installDir: ChromaSquares launch: - config: @@ -412195,32 +406366,32 @@ executable: ChromaSquares.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: ChromaSquares.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: ChromaSquares.x86_64 type: default - config: oslist: macos - executable: ChromaSquares.app\\Contents\\MacOS\\ChromaSquares + executable: "ChromaSquares.app\\\\Contents\\\\MacOS\\\\ChromaSquares" type: default -'911660': +"911660": installDir: Ducks and Gooobers launch: - executable: Ducks And Gooobers.exe type: none -'911680': +"911680": installDir: REZ PLZ launch: - config: oslist: windows executable: REZPLZ.exe type: default -'911690': +"911690": installDir: The Orphaned Soul launch: - config: @@ -412231,7 +406402,7 @@ oslist: macos executable: Game.app type: none -'911760': +"911760": installDir: Fruit Tower Defense launch: - config: @@ -412242,10 +406413,10 @@ oslist: linux executable: Launcher.sh type: default -'911770': {} -'911790': {} -'911850': {} -'911880': +"911770": {} +"911790": {} +"911850": {} +"911880": installDir: Caramba launch: - config: @@ -412260,7 +406431,7 @@ oslist: macos executable: Caramba.app type: default -'911950': +"911950": installDir: Origami Flight launch: - config: @@ -412268,11 +406439,11 @@ executable: OrigamiFlight.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: origamiflight.x86_64 type: default -'91200': +"91200": installDir: Anomaly Warzone Earth launch: - config: @@ -412284,9 +406455,9 @@ - config: oslist: linux executable: AnomalyWarzoneEarth -'912000': {} -'912010': {} -'912020': +"912000": {} +"912010": {} +"912020": installDir: Deadly Curse launch: - config: @@ -412295,18 +406466,18 @@ type: default - config: oslist: macos - executable: Deadly Curse.app\\Contents\\MacOS\\Deadly Curse + executable: "Deadly Curse.app\\\\Contents\\\\MacOS\\\\Deadly Curse" type: default - config: oslist: linux executable: Deadly Curse.x86_64 type: default -'912070': +"912070": installDir: Desert Kill launch: - executable: DesertKill.exe type: none -'912110': +"912110": installDir: Ashley Clark The Secrets of the Ancient Temple launch: - config: @@ -412321,7 +406492,7 @@ oslist: linux executable: Game.x86 type: default -'912120': +"912120": installDir: Saturnine launch: - config: @@ -412332,79 +406503,79 @@ oslist: macos executable: Saturnine.app type: default -'912130': {} -'912140': +"912130": {} +"912140": installDir: SpaceBall in Cube launch: - config: oslist: windows executable: SpaceBallInCube.exe type: default -'912190': +"912190": installDir: Hentai IQ Puzzle launch: - config: oslist: windows executable: Hentai IQ Puzzl.exe type: default -'912210': +"912210": installDir: Achievement Collector Cat launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: nw.exe type: none - config: - osarch: '64' + osarch: "64" oslist: windows executable: nw.exe type: none -'912250': +"912250": installDir: Simplex Mundi launch: - config: oslist: windows executable: SimplexMundiRelease1.1.5.exe type: default -'912260': +"912260": installDir: Gallery One launch: - config: oslist: windows executable: Gallery One.exe type: none -'912300': {} -'912310': {} -'912360': +"912300": {} +"912310": {} +"912360": installDir: Garrison Gauntlet launch: - config: oslist: windows executable: Garrison Gauntlet.exe type: default -'912370': +"912370": installDir: Mahjong Club launch: - config: oslist: windows executable: Mahjong Club.exe type: default -'912390': +"912390": installDir: Dismantle Construct Carnage launch: - config: oslist: windows executable: Dismantle.exe type: none -'912420': - installDir: It's a Trap +"912420": + installDir: "It's a Trap" launch: - config: oslist: windows executable: traps.exe type: vr -'912450': +"912450": installDir: YU-NO launch: - config: @@ -412413,7 +406584,7 @@ type: default nameLocalized: japanese: この世の果てで恋を唄う少女YU-NO -'912500': +"912500": installDir: Poltergeist Treasure launch: - config: @@ -412421,55 +406592,55 @@ executable: PoltergeistTreasure.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: PoltergeistTreasure.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: PoltergeistTreasure.x86_64 type: default -'912510': +"912510": installDir: OhShipArena launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Oh Ship.exe -'912520': +"912520": installDir: Tiger Fighter 1931 launch: - config: oslist: windows executable: game.exe type: default -'912550': +"912550": installDir: Savage Vessels launch: - config: oslist: windows executable: Savage Vessels.exe type: default -'912560': +"912560": installDir: PROZE_Prologue launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Proze.exe type: vr -'912570': +"912570": installDir: BEAUTIFUL DESOLATION launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: PLAY BEAUTIFUL DESOLATION executable: desolation.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: PLAY BEAUTIFUL DESOLATION executable: desolation.x86_64 @@ -412479,30 +406650,30 @@ description: PLAY BEAUTIFUL DESOLATION executable: desolation.app type: default -'912580': +"912580": installDir: RAZ launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: RAZ.exe type: default -'912590': +"912590": installDir: The path to domination launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows executable: Game.exe type: none -'912600': +"912600": installDir: Speedway Challenge Career launch: - config: oslist: windows executable: SpeedwayChallengeCareer.exe type: none -'912630': +"912630": installDir: Dystopia launch: - config: @@ -412511,13 +406682,13 @@ type: default - config: oslist: macos - executable: Dystopia.app\\Contents\\MacOS\\Dystopia + executable: "Dystopia.app\\\\Contents\\\\MacOS\\\\Dystopia" type: default -'912650': +"912650": installDir: Time Carnage Classic launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TimeCarnage.exe type: default @@ -412525,24 +406696,24 @@ oslist: macos executable: TimeCarnage.app type: default -'912660': +"912660": installDir: WelcomeAbove launch: - config: oslist: windows executable: Welcome Above.exe type: vr -'912680': {} -'912690': {} -'912720': {} -'912730': +"912680": {} +"912690": {} +"912720": {} +"912730": installDir: Gamble of Gods launch: - config: oslist: windows executable: Egipto.exe type: default -'912760': +"912760": installDir: Volcanic Blocks launch: - config: @@ -412555,49 +406726,49 @@ type: none - config: oslist: macos - executable: Volcanic Blocks.app\\Contents\\MacOS\\Volcanic Blocks + executable: "Volcanic Blocks.app\\\\Contents\\\\MacOS\\\\Volcanic Blocks" type: none -'912770': +"912770": installDir: San Camillo II launch: - config: oslist: windows - ownsdlc: 'No' + ownsdlc: "No" executable: San Camillo II.exe type: default -'912790': +"912790": installDir: Mateor launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: Meteor.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: Meteor.exe type: default -'912810': - installDir: Sargon's Lair +"912810": + installDir: "Sargon's Lair" launch: - config: oslist: windows - description: Launching Sargon's Lair - executable: Sargon's Lair.exe + description: "Launching Sargon's Lair" + executable: "Sargon's Lair.exe" type: default -'912820': +"912820": installDir: Survive in Angaria TWO launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows executable: surviveia.exe type: default -'912840': {} -'912860': {} -'912890': {} -'912920': +"912840": {} +"912860": {} +"912890": {} +"912920": installDir: SMUSH.TV launch: - config: @@ -412605,28 +406776,28 @@ description: the game executable: SMUSH.exe type: vr - - arguments: '-vrmode oculus' + - arguments: "-vrmode oculus" config: oslist: windows description: the game executable: SMUSH.exe type: othervr -'912930': +"912930": installDir: Insurgence RPG launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows executable: Game.exe type: default -'912990': +"912990": installDir: PlatBall launch: - config: oslist: windows executable: PlatBall.exe type: default -'913000': +"913000": installDir: Sheepageddon launch: - config: @@ -412635,18 +406806,18 @@ type: default - config: oslist: macos - executable: Contents\\MacOS\\Mac_Runner + executable: "Contents\\\\MacOS\\\\Mac_Runner" type: default - config: oslist: linux executable: runner type: default -'913010': +"913010": installDir: Your Dry Delight launch: - config: oslist: windows - executable: YourDryDelight-1.9.8-pc\\YourDryDelight.exe + executable: "YourDryDelight-1.9.8-pc\\\\YourDryDelight.exe" type: default - config: oslist: macos @@ -412654,9 +406825,9 @@ type: default - config: oslist: linux - executable: YourDryDelight-1.9.8-pc\\YourDryDelight.sh + executable: "YourDryDelight-1.9.8-pc\\\\YourDryDelight.sh" type: default -'913060': +"913060": installDir: JetLancer launch: - config: @@ -412666,15 +406837,15 @@ type: default - config: oslist: macos - executable: JetLancer.app\\Contents\\MacOS\\JetLancer + executable: "JetLancer.app\\\\Contents\\\\MacOS\\\\JetLancer" type: default -'913080': {} -'913090': +"913080": {} +"913090": installDir: Rogue Party launch: - executable: Rogue_Party.exe type: none -'91310': +"91310": installDir: Dead Island launch: - config: @@ -412688,142 +406859,140 @@ oslist: linux description: Launch executable: DeadIslandGame -'913100': +"913100": installDir: RED launch: - - arguments: '-vrmode none' + - arguments: "-vrmode none" config: oslist: windows description: Default mode executable: Red1.exe type: default - - arguments: '-vrmode oculus' + - arguments: "-vrmode oculus" config: oslist: windows description: Oculus mode executable: Red1.exe type: vr -'913110': +"913110": installDir: Desktop Tree launch: - - arguments: '--nwapp=game\\1 --disable-gpu-compositing --force-cpu-draw --enable-transparent-visuals --disable-gpu' + - arguments: "--nwapp=game\\\\1 --disable-gpu-compositing --force-cpu-draw --enable-transparent-visuals --disable-gpu" config: oslist: windows executable: nw.exe type: default - - arguments: >- - --nwapp=game --password-store=basic --disable-gpu-compositing --force-cpu-draw --enable-transparent-visuals - --disable-gpu --nowarning + - arguments: "--nwapp=game --password-store=basic --disable-gpu-compositing --force-cpu-draw --enable-transparent-visuals --disable-gpu --nowarning" config: oslist: linux executable: nw type: default - - arguments: '--disable-gpu-compositing --force-cpu-draw --enable-transparent-visuals --disable-gpu' + - arguments: "--disable-gpu-compositing --force-cpu-draw --enable-transparent-visuals --disable-gpu" config: oslist: macos executable: Desktop Tree.app type: default - - arguments: '--nwapp=game --in-process-gpu --nowarning' + - arguments: "--nwapp=game --in-process-gpu --nowarning" config: oslist: windows description: Windowed mode executable: nw.exe type: option1 - - arguments: '--nowarning' + - arguments: "--nowarning" config: oslist: macos description: Windowed mode executable: Desktop Tree w.app type: option1 -'913120': +"913120": installDir: Cat Inside launch: - config: oslist: windows executable: s008.exe type: default -'913130': +"913130": installDir: Fantasy Girl Puzzle launch: - config: oslist: windows executable: FGP1.exe type: none -'913150': +"913150": installDir: Kitten and food adventure park launch: - executable: Cats and food.exe type: none -'913160': +"913160": installDir: Jasmine Summer launch: - executable: JasmineSummer_茉莉之夏.exe type: none -'913180': +"913180": installDir: Battle royale simulator launch: - config: oslist: windows executable: Battle Royale simulator.exe type: default -'913210': +"913210": installDir: CatCatch launch: - config: oslist: windows executable: CatCatch.exe type: none -'913220': {} -'913250': +"913220": {} +"913250": installDir: Mimic launch: - config: oslist: windows executable: Mim.exe type: default -'913260': +"913260": installDir: Victoria launch: - config: oslist: windows executable: Victoria.exe type: default -'913270': +"913270": installDir: WAT_TheFirstDays launch: - config: oslist: windows executable: WAT_TheFirstDays.exe type: default -'913280': +"913280": installDir: Pranky Cat launch: - config: oslist: windows executable: nw.exe type: default -'91330': +"91330": installDir: IronFront launch: - executable: ironfront.exe -'913300': {} -'913310': {} -'913320': +"913300": {} +"913310": {} +"913320": installDir: tdw_win launch: - config: oslist: windows executable: Game.exe type: default -'913330': +"913330": installDir: Girls launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Girls.exe type: default -'913340': +"913340": installDir: Pro Strategy Football 2019 launch: - config: @@ -412834,45 +407003,45 @@ oslist: macos executable: PSF2019.app type: default -'913350': +"913350": installDir: CaveDare launch: - config: oslist: windows executable: CaveDare x86.exe type: none -'913370': +"913370": installDir: The Colony launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: Release\\TheColony.exe + executable: "Release\\\\TheColony.exe" type: default workingdir: Release -'913420': +"913420": installDir: The Odd Battle launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TheOddBattleVer1.0.1.exe type: default -'913440': +"913440": installDir: Mahjongg The Ultimate Collection 2 launch: - config: oslist: windows executable: Mahjongg_TheUltimateCollection2.exe type: default -'913450': +"913450": installDir: DareSora - Tears for an Unknown Sky launch: - executable: daresora_vol1.exe type: default -'913460': {} -'913490': {} -'913500': +"913460": {} +"913490": {} +"913500": installDir: Prank Masters launch: - config: @@ -412887,49 +407056,45 @@ oslist: linux executable: Prank Masters.sh type: default -'913520': {} -'913550': +"913520": {} +"913550": installDir: AG launch: - config: oslist: windows description: 使用Unity新版游玩(测试) - description_loc: - english: 使用Unity新版游玩(测试) - executable: UN\\i wanna be the Creator.exe + executable: "UN\\\\i wanna be the Creator.exe" - config: oslist: windows description: 使用旧版本游玩(兼容部分旧关卡) - description_loc: - english: 使用旧版本游玩(兼容部分旧关卡) executable: AG.exe -'913570': +"913570": installDir: DrymirCave launch: - config: oslist: windows executable: DrymirCave.exe type: default -'913590': +"913590": installDir: Dimension Drifter launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: launch executable: DimensionDrifter.exe type: none -'913600': +"913600": installDir: Galactic Lander launch: - executable: Galactic Lander.exe type: default -'913640': {} -'913650': +"913640": {} +"913650": installDir: Supaplex GO! launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: SupaplexGo.exe type: default @@ -412938,20 +407103,20 @@ executable: SupaplexGo.app type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: SupaplexGo.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: SupaplexGo.x86_64 type: default -'913660': +"913660": installDir: Supaplex THINK! launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: SupaplexThink.exe type: default @@ -412960,20 +407125,20 @@ executable: SupaplexThink.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: SupaplexThink.x86_64 type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: SupaplexThink.exe type: default -'913670': +"913670": installDir: Supaplex WOW! launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: SupaplexWow.exe type: default @@ -412982,30 +407147,30 @@ executable: SupaplexWow.app type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: SupaplexWow.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: SupaplexWow.x86_64 type: default -'913690': +"913690": installDir: Me Smart Orc launch: - config: oslist: windows executable: Quest.exe type: default -'913710': +"913710": installDir: Dangerous Lands - Magic and RPG launch: - config: oslist: windows executable: DangerousLands.exe type: default -'913720': +"913720": installDir: Alchemic Cutie launch: - config: @@ -413020,7 +407185,7 @@ oslist: macos executable: Alchemic Cutie.app type: default -'913740': +"913740": installDir: WOH launch: - config: @@ -413031,7 +407196,7 @@ oslist: macos executable: wohgame.app type: default -'913770': +"913770": installDir: Toy Gun Office Simulator launch: - config: @@ -413039,22 +407204,22 @@ description: Toy Gun Office Simulator executable: Toy Gun Office Simulator.exe type: vr -'913780': +"913780": installDir: NEW LIFE launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: NewLife_Project type: none -'913820': +"913820": installDir: MMA Simulator launch: - config: oslist: windows executable: mmasimulator.exe type: default -'913830': +"913830": installDir: Slime Age Parody MMORPG Clicker launch: - config: @@ -413065,23 +407230,23 @@ oslist: macos executable: SlimeAge.app type: none -'913840': - installDir: Super Frog's Quest +"913840": + installDir: "Super Frog's Quest" launch: - config: oslist: windows - executable: Super Frog's Quest.exe + executable: "Super Frog's Quest.exe" type: default -'913850': - installDir: '103' +"913850": + installDir: "103" launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: 103.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: OneZeroThree.sh type: default @@ -413089,16 +407254,16 @@ oslist: macos executable: 103.app type: default -'913870': {} -'913890': +"913870": {} +"913890": installDir: Plastic Soldiers launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Plastic_Soldiers type: default -'913910': +"913910": installDir: Nightmare Of Melanie 梅兰妮的噩梦 launch: - description: Nightmare Of Melanie @@ -413107,18 +407272,18 @@ - description: Description document executable: tools.txt type: option2 -'913960': {} -'913970': +"913960": {} +"913970": installDir: The Legend of Protey launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" executable: nw.exe type: none - config: oslist: macos executable: Game.app type: default -'914000': +"914000": installDir: TinyBattleSimulator launch: - config: @@ -413129,23 +407294,21 @@ - config: oslist: macos description: Launch - executable: TinyBattleSimulator.app\\Contents\\MacOS\\TinyBattleSimulator + executable: "TinyBattleSimulator.app\\\\Contents\\\\MacOS\\\\TinyBattleSimulator" type: none -'914010': +"914010": installDir: Train Station Renovation launch: - description: Test - description_loc: - english: Test executable: TSR_STEAM.exe type: default nameLocalized: schinese: 火车站改造王 -'914020': +"914020": installDir: Gibbous - A Cthulhu Adventure launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Gibbous - A Cthulhu Adventure.exe type: default @@ -413153,27 +407316,27 @@ oslist: macos executable: Gibbous - A Cthulhu Adventure.app type: default - - arguments: '-force-glcore42 -force-clamped' + - arguments: "-force-glcore42 -force-clamped" config: - osarch: '64' + osarch: "64" oslist: linux executable: Gibbous - A Cthulhu Adventure.x86_64 type: default -'914030': +"914030": installDir: B. Braun Aesculap Spine VR launch: - config: oslist: windows executable: 2019-04-10_B Braun Aesculap Spine VR.exe type: vr -'914050': +"914050": installDir: Mummy on the run launch: - config: oslist: windows executable: Mummy on the run.exe type: default -'914070': +"914070": installDir: Shoemaker launch: - config: @@ -413188,23 +407351,23 @@ oslist: linux executable: Shoemaker.x86 type: none -'914090': +"914090": installDir: GIRAL launch: - config: oslist: windows executable: Game.exe type: default -'914110': +"914110": installDir: Narcos ROTC launch: - config: - osarch: '64' + osarch: "64" oslist: windows - description: 'Narcos: Rise of the Cartels' + description: "Narcos: Rise of the Cartels" executable: Narcos.exe type: default -'914130': +"914130": installDir: ICE launch: - config: @@ -413219,19 +407382,19 @@ oslist: linux executable: ICE.x86 type: none -'914140': +"914140": installDir: Hentai Dojo launch: - executable: Hentai Dojo.exe type: none -'914150': {} -'914160': +"914150": {} +"914160": installDir: Zup! Arena launch: - - arguments: '-popupwindow' + - arguments: "-popupwindow" executable: Zup! Arena.exe type: default -'914170': +"914170": installDir: Duck Life Battle launch: - config: @@ -413242,16 +407405,16 @@ oslist: macos executable: Duck Life Battle.app type: default -'914180': +"914180": installDir: MMA Team Manager launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: MMA Team Manager.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: MMA Team Manager.exe type: default @@ -413259,29 +407422,29 @@ oslist: macos executable: MMA Team Manager_Mac.app type: default -'914190': +"914190": installDir: BattleBlade launch: - config: oslist: windows executable: BattleBlade.exe type: default -'914200': +"914200": installDir: Football Director 2019 launch: - config: oslist: windows executable: FD19.exe type: none -'914210': {} -'914220': +"914210": {} +"914220": installDir: Land of Puzzles Castles launch: - config: oslist: windows executable: Land of Puzzles Castles.exe type: default -'914230': +"914230": installDir: Swamp Jump launch: - config: @@ -413290,13 +407453,13 @@ type: none - config: oslist: macos - executable: Swamp Jump.app\\Contents\\MacOS\\Swamp Jump + executable: "Swamp Jump.app\\\\Contents\\\\MacOS\\\\Swamp Jump" type: none - config: oslist: linux executable: Swamp Jump.x86 type: none -'914240': +"914240": installDir: Atomic Rancher launch: - config: @@ -413304,31 +407467,31 @@ description: Nuclear Rancher Alpha Build executable: NuclearRancher.exe type: default -'914250': +"914250": installDir: Deadly Burrito launch: - - arguments: '-mode VR' + - arguments: "-mode VR" config: - osarch: '64' + osarch: "64" oslist: windows - executable: AtomicPinata\\Binaries\\Win64\\AtomicPinata-Win64-Shipping.exe + executable: "AtomicPinata\\\\Binaries\\\\Win64\\\\AtomicPinata-Win64-Shipping.exe" type: default -'914260': +"914260": installDir: HALF DEAD 2 launch: - executable: hd2.exe type: none -'914270': {} -'914290': +"914270": {} +"914290": installDir: Welcome to Princeland launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Welcome to Princeland.exe type: none -'914300': {} -'914320': +"914300": {} +"914320": installDir: Swarm Simulator Evolution launch: - config: @@ -413341,29 +407504,29 @@ description: Launch executable: Swarm Simulator.app type: none -'914330': {} -'914350': +"914330": {} +"914350": installDir: Wet Warfare launch: - config: oslist: windows executable: Wet Warfare.exe type: none -'914390': +"914390": installDir: Dojini launch: - config: oslist: windows executable: dojini.exe type: none -'914400': +"914400": installDir: Key Of Impasse launch: - config: oslist: windows executable: KeyOfImpasse.exe type: vr -'914420': +"914420": installDir: Shadow Fencer Theatre launch: - config: @@ -413374,11 +407537,11 @@ oslist: windows executable: Shadow Fencer Theatre.exe type: default -'914430': +"914430": installDir: Pro Office Calculator launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: procalc.exe type: default @@ -413387,63 +407550,63 @@ executable: Contents/MacOS/procalc type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: bin/procalc type: default -'914450': +"914450": installDir: Horror Game launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TestSubject901.exe type: vr -'914480': +"914480": installDir: Boom Bits launch: - config: oslist: windows executable: BoomBits.exe type: default -'914500': +"914500": installDir: Boons Farm launch: - executable: Boons Farm.exe type: default -'914510': +"914510": installDir: Project Reset launch: - executable: ProjectReset.exe type: none -'914600': +"914600": installDir: Surge launch: - executable: Surge.exe type: none -'914610': {} -'914620': +"914610": {} +"914620": installDir: Mist Survival launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: MistSurvival.exe -'914630': +"914630": installDir: Wolf The Evolution - Online RPG launch: - config: oslist: windows executable: Build_003.exe type: default -'914640': +"914640": installDir: Ice and Fire of Maiden launch: - config: oslist: windows executable: IceAndFireOfMaiden.exe type: default -'914680': +"914680": installDir: Crazy Alchemist launch: - config: @@ -413452,14 +407615,14 @@ type: default - config: oslist: windows - executable: Crazy Alchemistvr\\Crazy Alchemistvr.exe + executable: "Crazy Alchemistvr\\\\Crazy Alchemistvr.exe" type: vr -'914690': +"914690": installDir: Hentai Shooter 3D launch: - executable: game.exe type: none -'914700': +"914700": installDir: MINImax Tinyverse launch: - config: @@ -413474,22 +407637,22 @@ japanese: ミニマックス・タイニーバース koreana: 미니막스 타이니버스 tchinese: 小人物大對決 -'914710': +"914710": installDir: Cat Quest II launch: - config: oslist: windows executable: Cat Quest II.exe type: default -'914750': +"914750": installDir: Bee Simulator launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: BeBee.exe type: default -'914800': +"914800": installDir: Coffee Talk launch: - config: @@ -413498,47 +407661,38 @@ type: default - config: oslist: macos - executable: CoffeeTalk.app\\Contents\\MacOS\\CoffeeTalk + executable: "CoffeeTalk.app\\\\Contents\\\\MacOS\\\\CoffeeTalk" type: default -'914850': +"914850": installDir: Hentai Puzzle launch: - config: oslist: windows executable: Hentai Puzzle.exe type: default -'914890': +"914890": installDir: Nine Noir Lives launch: - config: oslist: windows description: Launch Nine Noir Lives - description_loc: - english: Launch Nine Noir Lives - german: Nine Noir Lives executable: NineNoirLives.exe type: default - config: oslist: macos description: Launch Nine Noir Lives - description_loc: - english: Launch Nine Noir Lives - german: Nine Noir Lives - executable: Nine Noir Lives.app\\Contents\\MacOS\\Visionaire Player + executable: "Nine Noir Lives.app\\\\Contents\\\\MacOS\\\\Visionaire Player" type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch Nine Noir Lives - description_loc: - english: Launch Nine Noir Lives - german: Nine Noir Lives executable: start type: default nameLocalized: schinese: 猫城谜案 tchinese: 猫城谜案 -'914900': +"914900": installDir: Super Strawberry Man launch: - config: @@ -413549,8 +407703,8 @@ oslist: linux executable: SuperStrawberryMan type: default -'914920': {} -'914950': +"914920": {} +"914950": installDir: The Ultra Code launch: - config: @@ -413561,72 +407715,72 @@ oslist: macos executable: RUNGAME type: default -'914980': {} -'915020': +"914980": {} +"915020": installDir: THE E BALL launch: - config: oslist: windows executable: THE E BALL.exe type: default -'915060': +"915060": installDir: DreamEnders launch: - config: oslist: windows executable: DreamEnders.exe type: none -'915080': +"915080": installDir: Sokoban The RPG launch: - config: oslist: windows - description: 'Sokoban: The RPG MV' - executable: SokobanMV\\Game.exe + description: "Sokoban: The RPG MV" + executable: "SokobanMV\\\\Game.exe" type: option1 - config: oslist: macos description: Sokoban MV Mac - executable: SokobanMV\\Game.app + executable: "SokobanMV\\\\Game.app" type: default - config: oslist: linux description: Sokoban MV Linux - executable: SokobanMV\\Game + executable: "SokobanMV\\\\Game" type: default - config: oslist: windows - description: 'Sokoban: The RPG VX Ace' - executable: Sokoban\\Game.exe + description: "Sokoban: The RPG VX Ace" + executable: "Sokoban\\\\Game.exe" type: option2 -'915110': {} -'915120': +"915110": {} +"915120": installDir: Koi Solitaire launch: - executable: KoiSolitaire.exe type: none -'915130': +"915130": installDir: DFLYT launch: - config: oslist: windows executable: DFLYT.exe type: none -'915140': +"915140": installDir: Adera launch: - config: oslist: windows executable: Adera.exe type: default -'915160': +"915160": installDir: Anime Girl Or Boy launch: - config: oslist: windows executable: AGOB2.exe type: default -'915190': +"915190": installDir: Cartoony Cars 2 launch: - config: @@ -413641,48 +407795,48 @@ oslist: linux executable: Cartoony Cars 2.x86 type: default -'915200': +"915200": installDir: RepubliqueVR launch: - config: oslist: windows executable: RepubliqueVR.exe type: vr -'915230': +"915230": installDir: Zombie Rollerz launch: - - arguments: '-noLog' + - arguments: "-noLog" config: oslist: windows executable: Zombie Rollerz.exe type: default nameLocalized: - japanese: 'ゾンビ ローラーズ:ピンボール・ヒーロー Zombie Rollerz: Pinball Heroes' - koreana: '좀비 롤러스: 핀볼 히어로즈 Zombie Rollerz: Pinball Heroes' - schinese: '滚弹吧僵尸 Zombie Rollerz: Pinball Heroes' - tchinese: '滾彈吧殭屍 Zombie Rollerz: Pinball Heroes' -'915300': - installDir: The planet's rescuer + japanese: "ゾンビ ローラーズ:ピンボール・ヒーロー Zombie Rollerz: Pinball Heroes" + koreana: "좀비 롤러스: 핀볼 히어로즈 Zombie Rollerz: Pinball Heroes" + schinese: "滚弹吧僵尸 Zombie Rollerz: Pinball Heroes" + tchinese: "滾彈吧殭屍 Zombie Rollerz: Pinball Heroes" +"915300": + installDir: "The planet's rescuer" launch: - config: oslist: windows executable: game.exe type: none -'915360': +"915360": installDir: Hexahedral Pathfinder launch: - config: oslist: windows executable: Hexahedral Pathfinder.exe type: none -'915380': +"915380": installDir: John Black Memories launch: - config: oslist: windows executable: John Black Memories.exe type: none -'915420': +"915420": installDir: TeleBlast launch: - config: @@ -413691,63 +407845,63 @@ type: default - config: oslist: macos - executable: TeleBlast.app\\Contents\\MacOS\\TeleBlast + executable: "TeleBlast.app\\\\Contents\\\\MacOS\\\\TeleBlast" type: default - config: oslist: linux executable: TeleBlast type: default -'915430': +"915430": installDir: 1MP launch: - config: oslist: windows executable: TPS.exe type: none -'915440': +"915440": installDir: FirefliesGame launch: - config: oslist: windows executable: Fireflies.exe type: none -'915460': +"915460": installDir: UHD launch: - config: oslist: windows executable: UHD.exe type: default -'915480': {} -'915490': +"915480": {} +"915490": installDir: Frontline Zed launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: FrontlineZed.exe type: default -'915540': +"915540": installDir: Aim Master launch: - config: oslist: windows executable: Aim Master.exe type: default -'915560': +"915560": installDir: Koropokkur in Love ~A Little Fairy’s Tale~ launch: - config: oslist: windows - executable: Koropokkur in Love ~A Little Fairy's Tale~.exe + executable: "Koropokkur in Love ~A Little Fairy's Tale~.exe" type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Koropokkur.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Koropokkur.x86_64 type: default @@ -413755,7 +407909,7 @@ oslist: macos executable: Koropokkur.app type: default -'915570': +"915570": installDir: Polygone launch: - config: @@ -413763,58 +407917,53 @@ executable: Polygone.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: polygonex64.out type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: polygone.out type: default -'915580': +"915580": installDir: Dungeon Hunter Champions launch: - config: oslist: windows executable: DHC.exe type: none -'915600': +"915600": installDir: Them & Us launch: - - arguments: ' -seekfreeloading -dx9' + - arguments: " -seekfreeloading -dx9" config: - osarch: '64' + osarch: "64" oslist: windows description: Them and Us - English - description_loc: - brazilian: Jogar Them and Us - Ingles - english: Them and Us - English - schinese: Them and Us - 英语 - turkish: Them and Us - İngilizce executable: Binaries/Win64/UDK.exe type: none -'915610': +"915610": installDir: GreatestCitiesMosaics launch: - config: oslist: windows executable: GreatestCitiesMosaics.exe type: default -'915670': +"915670": installDir: Everreach launch: - executable: Everreach.exe type: default -'915710': +"915710": installDir: Little Dragons Café launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: LDC.exe type: none -'915720': +"915720": installDir: Session Seven launch: - config: @@ -413825,7 +407974,7 @@ oslist: linux executable: SessionSeven type: none -'915730': +"915730": installDir: Catch The Kids Priest Simulator Game launch: - config: @@ -413837,88 +407986,88 @@ - config: oslist: macos executable: Catch The Kids macOS.app -'915740': {} -'915760': +"915740": {} +"915760": installDir: Aether Drift launch: - config: oslist: windows executable: AetherDrift.exe type: default -'915770': +"915770": installDir: People Cu3ed launch: - config: oslist: windows executable: People Cu3ed.exe type: vr -'915810': +"915810": installDir: Midnight Ghost Hunt launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: start_protected_game.exe type: default -'915820': +"915820": installDir: Amethlion launch: - config: - betakey: '3038877' + betakey: "3038877" executable: Amethlion.exe type: default -'915850': +"915850": installDir: Super Hiking League launch: - config: oslist: windows executable: Super Hiking League.exe type: default -'915860': +"915860": installDir: Zettavolt Trigger launch: - config: oslist: windows executable: Zettavolt Trigger.exe type: none -'915880': {} -'915930': +"915880": {} +"915930": installDir: Sparticles launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Sparticles.exe type: default -'915950': {} -'915960': +"915950": {} +"915960": installDir: Gallows Choice launch: - config: oslist: windows executable: Gallows choice.exe type: default -'91600': +"91600": installDir: Sanctum launch: - config: oslist: windows description: Normal Launch - executable: Binaries\\Win32\\SanctumGame-Win32-Shipping.exe - workingdir: Binaries\\Win32 - - arguments: '-log' + executable: "Binaries\\\\Win32\\\\SanctumGame-Win32-Shipping.exe" + workingdir: "Binaries\\\\Win32" + - arguments: "-log" config: oslist: macos description: Normal launch executable: Sanctum.app -'916010': +"916010": installDir: Beating A Dead Horse With A One-Trick Pony launch: - config: oslist: windows executable: BADH2.exe type: none -'916030': +"916030": installDir: A Summer with the Shiba Inu launch: - config: @@ -413933,7 +408082,7 @@ oslist: linux executable: Summer_Shiba_Inu_Game.sh type: none -'916040': +"916040": installDir: SFD launch: - config: @@ -413942,13 +408091,13 @@ type: default - config: oslist: macos - executable: Contents\\MacOS\\SFD + executable: "Contents\\\\MacOS\\\\SFD" type: default - config: oslist: linux executable: SFD type: default -'916050': +"916050": installDir: Clocker launch: - config: @@ -413963,7 +408112,7 @@ english: Clocker schinese: 铸时匠 Clocker tchinese: 鑄時匠 Clocker -'916060': +"916060": installDir: Loca-Love My Cute Roommate launch: - executable: localove1.exe @@ -413971,54 +408120,54 @@ nameLocalized: japanese: ろけらぶ 同棲×後輩 schinese: 恋爱定位Location Love同居×后辈 -'916100': +"916100": installDir: Telefrag VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TelefragVR.exe type: othervr - config: - osarch: '64' + osarch: "64" oslist: windows executable: TelefragVR.exe type: vr -'916120': +"916120": installDir: Rascals launch: - executable: Rascals.exe type: vr -'916130': +"916130": installDir: Meet the Miner - WDR VR Bergwerk launch: - - arguments: '-culture=en' + - arguments: "-culture=en" config: - osarch: '64' + osarch: "64" oslist: windows description: Meet the Miner (English) executable: CoalVR.exe type: vr - - arguments: '-culture=de-DE' + - arguments: "-culture=de-DE" config: - osarch: '64' + osarch: "64" oslist: windows description: Meet the Miner (German) executable: CoalVR.exe type: vr -'916140': +"916140": installDir: The Tale of Bistun launch: - executable: The Tale of Bistun.exe type: default -'916150': +"916150": installDir: Here Nya launch: - config: oslist: windows executable: Here Nya.exe type: none -'916160': +"916160": installDir: Dreamwalker launch: - config: @@ -414027,13 +408176,13 @@ executable: Dreamwalker.exe type: none - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: Dreamwalker_i386 type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Dreamwalker_amd64 @@ -414043,30 +408192,30 @@ description: Launch executable: mac_steam.app/Contents/MacOS/mac_steam type: none -'916180': +"916180": installDir: Fromto launch: - config: oslist: windows executable: DoodleDerby.exe type: none -'916240': +"916240": installDir: Madievals launch: - config: oslist: windows executable: MADievals.exe type: none -'916260': +"916260": installDir: Cyclones Playground launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: CyclonesPlayground.exe type: default -'916270': {} -'916290': +"916270": {} +"916290": installDir: Crime Girl launch: - config: @@ -414076,13 +408225,13 @@ type: option2 - config: oslist: macos - executable: crimegirl.app\\Contents\\MacOS\\crimegirl + executable: "crimegirl.app\\\\Contents\\\\MacOS\\\\crimegirl" type: default - config: oslist: linux executable: crimegirl.x86_64 type: default -'916320': +"916320": installDir: Fair Deal Las Vegas launch: - config: @@ -414091,100 +408240,100 @@ type: default - config: oslist: macos - executable: FairDealBetaMac.app\\Contents\\MacOS\\FairDealBetaMac + executable: "FairDealBetaMac.app\\\\Contents\\\\MacOS\\\\FairDealBetaMac" type: default -'916330': +"916330": installDir: Wisentree Spirit launch: - config: - betakey: '0.01' + betakey: "0.01" oslist: windows executable: WisentreeSpirit.exe type: none -'916340': +"916340": installDir: Blue Time launch: - executable: Blue_Time_4_18.exe type: none -'916370': +"916370": installDir: Tempo Wizard launch: - executable: Tempo Wizard.exe type: none -'916380': +"916380": installDir: PancosJourney launch: - executable: PancosJourney.exe type: none -'916390': +"916390": installDir: Team Up launch: - config: oslist: windows executable: TeamUp.exe type: vr -'916440': +"916440": installDir: Anno 1800 launch: - - arguments: '-uplay_steam_mode' + - arguments: "-uplay_steam_mode" config: - osarch: '64' + osarch: "64" oslist: windows - executable: Bin\\Win64\\Anno1800.exe + executable: "Bin\\\\Win64\\\\Anno1800.exe" type: default -'916470': +"916470": installDir: Gimel Dimension launch: - executable: Gimel Dimension.exe type: none -'916510': +"916510": installDir: Running Man 3D Part2 launch: - config: oslist: windows executable: RunningMan3DPart2.exe type: default -'916540': +"916540": installDir: Fatal Hour Petroleum launch: - config: oslist: windows executable: Fatal Hour - Petroleum.exe type: default -'916560': {} -'916580': +"916560": {} +"916580": installDir: Hentai Puzzle X launch: - config: oslist: windows executable: Hentai Puzzle X.exe type: default -'916620': +"916620": installDir: Professor Chuckenhope launch: - config: oslist: windows executable: Professor_Chuckenhope.exe type: vr -'916630': +"916630": installDir: Double Stretch launch: - executable: Double Stretch.exe type: default -'916640': +"916640": installDir: HecatoncheirStory launch: - executable: HecatoncheirStory.exe type: default -'916700': {} -'916710': {} -'916730': +"916700": {} +"916710": {} +"916730": installDir: Gato Roboto launch: - executable: GatoRoboto.exe type: none -'916760': {} -'916780': +"916760": {} +"916780": installDir: Groundless launch: - config: @@ -414195,37 +408344,35 @@ oslist: macos executable: Groundless.app type: none -'916820': +"916820": installDir: Smiles vs Ghosts launch: - config: oslist: windows executable: WAR_WAR_WAR. Smiles vs Ghosts.exe type: default -'916840': +"916840": installDir: TWDSaintsAndSinners launch: - - arguments: '-steam' + - arguments: "-steam" description: TWD - description_loc: - english: TWD executable: TWD.exe type: vr -'916860': +"916860": installDir: Puzzle Monarch Super Natural launch: - config: oslist: windows executable: Puzzle Monarch Super Natural.exe type: default -'916880': +"916880": installDir: Puzzle Monarch Zombie launch: - config: oslist: windows executable: Puzzle Monarch Zombie.exe type: default -'916900': +"916900": installDir: Paperbark launch: - config: @@ -414234,17 +408381,17 @@ type: default - config: oslist: macos - executable: Paperbark.app\\Contents\\MacOS\\Paperbark + executable: "Paperbark.app\\\\Contents\\\\MacOS\\\\Paperbark" type: default -'916910': +"916910": installDir: Infommi launch: - config: oslist: windows description: Infommi - executable: Infommi_V1.0\\Infommi.exe + executable: "Infommi_V1.0\\\\Infommi.exe" type: default -'916930': +"916930": installDir: War Trigger Classic launch: - config: @@ -414257,28 +408404,28 @@ description: Launch executable: War Trigger Classic.exe type: default -'916950': +"916950": installDir: Awesome Pea launch: - config: oslist: windows executable: AwesomePea.exe type: none -'916960': +"916960": installDir: Skelittle launch: - config: oslist: windows executable: Skelittle.exe type: default -'916970': +"916970": installDir: DUCK CASINO BULLET launch: - config: oslist: windows executable: DuckCasino.exe type: default -'916980': +"916980": installDir: CryptoFarm launch: - config: @@ -414289,11 +408436,11 @@ oslist: macos executable: CryptoFarm.app/Contents/MacOS/CryptoFarm type: none -'91700': +"91700": installDir: EYE launch: - executable: EYE.exe -'917000': +"917000": installDir: WORLD HENTAI launch: - config: @@ -414308,7 +408455,7 @@ oslist: linux executable: WORLDHENTAI.x86 type: default -'917020': +"917020": installDir: The Con Simulator launch: - config: @@ -414319,7 +408466,7 @@ oslist: macos executable: TheConSimulator.app type: none -'917050': +"917050": installDir: Find The Balance launch: - config: @@ -414330,26 +408477,26 @@ oslist: macos executable: FindTheBalance.app type: none -'917120': {} -'917130': +"917120": {} +"917130": installDir: Lily launch: - config: oslist: windows executable: Lily.exe type: none -'917140': +"917140": installDir: Amberial Dreams launch: - config: oslist: windows executable: /Amberial Dreams/Amberial Dreams.exe type: default -'917150': +"917150": installDir: Godhood launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: godhood.exe @@ -414360,19 +408507,19 @@ executable: godhood.app type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: godhood type: none -'917200': +"917200": installDir: Kill the Dictator launch: - config: oslist: windows executable: KillTheDictator.exe type: none -'917240': +"917240": installDir: Heavy Dreams launch: - config: @@ -414380,16 +408527,16 @@ description: A boy. A laptop. A dream. executable: Heavy Dreams.exe type: default -'917280': {} -'917290': +"917280": {} +"917290": installDir: Duck Souls launch: - config: oslist: windows executable: nw.exe type: default -'917380': - installDir: Lancelot's Hangover +"917380": + installDir: "Lancelot's Hangover" launch: - config: oslist: windows @@ -414399,204 +408546,172 @@ oslist: windows executable: winsetup.exe type: config -'917550': +"917550": installDir: Checkmate launch: - config: oslist: windows executable: CheckMate.exe type: default -'917600': +"917600": installDir: Became The Hunted launch: - config: - ownsdlc: 'no' + ownsdlc: "no" description: Wolf role-playing game executable: BecametheHunted.exe type: default -'917610': +"917610": installDir: The Story of My Life launch: - config: oslist: windows executable: TheStoryofMyLife.exe type: default -'917640': {} -'917650': {} -'917660': {} -'917680': - installDir: 'one night, hot springs' +"917640": {} +"917650": {} +"917660": {} +"917680": + installDir: "one night, hot springs" launch: - config: oslist: windows description: 64-bit - description_loc: - english: 64-bit executable: onsengame-market/onsengame.exe type: default - config: oslist: linux description: Linux + SteamOS - description_loc: - english: Linux + SteamOS executable: onsengame-market/onsengame.sh type: default - config: oslist: macos description: macOS - description_loc: - english: macOS executable: onsengame-market/onsengame.app type: default - config: - osarch: '32' + osarch: "32" oslist: windows description: 32-bit - description_loc: - english: 32-bit executable: onsengame-market/onsengame-32.exe type: default -'917690': +"917690": installDir: VANILLA GARDEN OF JUDGEMENT launch: - config: oslist: windows executable: vanilla.exe type: default -'917710': +"917710": installDir: Decisions launch: - executable: Decisions.exe.exe type: default -'917720': +"917720": installDir: Gamedec launch: - - arguments: '-choiceslogger' + - arguments: "-choiceslogger" config: betakey: dailybuilds oslist: windows description: Daily Build Gamedec - description_loc: - english: Daily Build Gamedec - executable: GameDEC\\Binaries\\Win64\\GameDEC.exe + executable: "GameDEC\\\\Binaries\\\\Win64\\\\GameDEC.exe" type: option1 - - arguments: '-choiceslogger -disableAnalytics' + - arguments: "-choiceslogger -disableAnalytics" config: betakey: shipping oslist: windows description: Shipping Branch - description_loc: - english: Shipping Branch - executable: GameDEC\\Binaries\\Win64\\GameDEC-Win64-Shipping.exe + executable: "GameDEC\\\\Binaries\\\\Win64\\\\GameDEC-Win64-Shipping.exe" type: option1 - - arguments: '-choiceslogger -disableAnalytics' + - arguments: "-choiceslogger -disableAnalytics" config: betakey: whispergames oslist: windows description: Whispergames - description_loc: - english: Whispergames - executable: GameDEC\\Binaries\\Win64\\GameDEC-Win64-Test.exe + executable: "GameDEC\\\\Binaries\\\\Win64\\\\GameDEC-Win64-Test.exe" type: option1 - - arguments: '-choiceslogger -disableAnalytics' + - arguments: "-choiceslogger -disableAnalytics" config: betakey: localization_test oslist: windows description: Localization Test - description_loc: - english: Localization Test - executable: GameDEC\\Binaries\\Win64\\GameDEC.exe + executable: "GameDEC\\\\Binaries\\\\Win64\\\\GameDEC.exe" type: option1 - - arguments: '-dx12 -choiceslogger' + - arguments: "-dx12 -choiceslogger" config: betakey: dailybuilds oslist: windows description: Daily Build Gamedec (DirectX12) - description_loc: - english: Daily Build Gamedec (DirectX12) - executable: GameDEC\\Binaries\\Win64\\GameDEC.exe + executable: "GameDEC\\\\Binaries\\\\Win64\\\\GameDEC.exe" type: option1 - - arguments: '-dx12 -choiceslogger -disableAnalytics' + - arguments: "-dx12 -choiceslogger -disableAnalytics" config: betakey: shipping oslist: windows description: Shipping Gamedec (DirectX12) - description_loc: - english: Shipping Gamedec (DirectX12) - executable: GameDEC\\Binaries\\Win64\\GameDEC-Win64-Shipping.exe + executable: "GameDEC\\\\Binaries\\\\Win64\\\\GameDEC-Win64-Shipping.exe" type: option1 - - arguments: '-choiceslogger -disableAnalytics' + - arguments: "-choiceslogger -disableAnalytics" config: betakey: external_tests oslist: windows description: external_tests - description_loc: - english: external_tests - executable: GameDEC\\Binaries\\Win64\\GameDEC-Win64-Test.exe + executable: "GameDEC\\\\Binaries\\\\Win64\\\\GameDEC-Win64-Test.exe" type: option1 - - arguments: '-choiceslogger' + - arguments: "-choiceslogger" config: betakey: test oslist: windows description: Test - description_loc: - english: Test - executable: GameDEC\\Binaries\\Win64\\GameDEC-Win64-Test.exe + executable: "GameDEC\\\\Binaries\\\\Win64\\\\GameDEC-Win64-Test.exe" type: option1 - - arguments: '-choiceslogger' + - arguments: "-choiceslogger" config: - osarch: '64' + osarch: "64" oslist: windows - executable: GameDEC\\Binaries\\Win64\\GameDEC-Win64-Shipping.exe + executable: "GameDEC\\\\Binaries\\\\Win64\\\\GameDEC-Win64-Shipping.exe" type: default - - arguments: '-dx12 -choiceslogger' + - arguments: "-dx12 -choiceslogger" config: - osarch: '64' + osarch: "64" oslist: windows description: Gamedec (DirectX12) - description_loc: - english: Gamedec (DirectX12) - executable: GameDEC\\Binaries\\Win64\\GameDEC-Win64-Shipping.exe + executable: "GameDEC\\\\Binaries\\\\Win64\\\\GameDEC-Win64-Shipping.exe" type: option1 - - arguments: '-dx12 -choiceslogger' + - arguments: "-dx12 -choiceslogger" config: betakey: development - osarch: '64' + osarch: "64" oslist: windows description: Development (DirectX12) - description_loc: - english: Development (DirectX12) - executable: GameDEC\\Binaries\\Win64\\GameDEC.exe + executable: "GameDEC\\\\Binaries\\\\Win64\\\\GameDEC.exe" type: option1 - - arguments: '-choiceslogger' + - arguments: "-choiceslogger" config: betakey: development - osarch: '64' + osarch: "64" oslist: windows description: Development - description_loc: - english: Development - executable: GameDEC\\Binaries\\Win64\\GameDEC.exe + executable: "GameDEC\\\\Binaries\\\\Win64\\\\GameDEC.exe" type: option1 - - arguments: '-choiceslogger -disableAnalytics' + - arguments: "-choiceslogger -disableAnalytics" config: betakey: community_test - osarch: '64' + osarch: "64" oslist: windows description: Community Test - description_loc: - english: Community Test - executable: GameDEC\\Binaries\\Win64\\GameDEC-Win64-Shipping.exe + executable: "GameDEC\\\\Binaries\\\\Win64\\\\GameDEC-Win64-Shipping.exe" type: option1 nameLocalized: japanese: ゲームデック koreana: 게임덱 schinese: 骇游侠探 tchinese: 駭遊俠探 -'917740': +"917740": installDir: MandysRoom launch: - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" config: oslist: windows description: Mandys Room Windows @@ -414605,7 +408720,7 @@ - config: oslist: macos description: Mandys Room Mac - executable: Contents\\MacOS\\MandysRoomMac + executable: "Contents\\\\MacOS\\\\MandysRoomMac" type: default - description: Mandys Room Steam VR executable: MandysRoom.exe @@ -414613,28 +408728,28 @@ - description: Mandys Room Oculus executable: MandysRoom.exe type: othervr -'917760': +"917760": installDir: Survivor in Summer launch: - config: oslist: windows executable: Survivor in Summer.exe type: default -'917770': +"917770": installDir: MysteryHouse launch: - config: oslist: windows executable: FiveStones_FPS.exe type: vr -'917800': +"917800": installDir: steamworks launch: - config: oslist: windows executable: JOYDOOR.exe type: default -'917810': +"917810": installDir: Beast Modon launch: - config: @@ -414647,39 +408762,39 @@ oslist: macos executable: BeastModonMac.app type: default -'917820': {} -'917830': +"917820": {} +"917830": installDir: Anima launch: - - arguments: '-vr' + - arguments: "-vr" config: - osarch: '64' + osarch: "64" oslist: windows executable: Anima.exe type: vr - - arguments: '-desktop' + - arguments: "-desktop" config: - osarch: '64' + osarch: "64" oslist: windows executable: Anima.exe type: default -'917840': +"917840": installDir: Wintermoor Tactics Club launch: - config: oslist: windows executable: Wintermoor Tactics Club.exe type: none -'917850': +"917850": installDir: Elemental War launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Elemental War.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Elemental War.x86_64 type: default @@ -414687,22 +408802,22 @@ oslist: macos executable: Elemental War.app/Contents/MacOS/Elemental War type: default -'917870': +"917870": installDir: Gauge Of Rage launch: - config: oslist: windows executable: Gauge Of Rage.exe type: default -'917880': +"917880": installDir: Misfit launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: MISFIT.exe type: default -'917900': +"917900": installDir: Monster Logic launch: - config: @@ -414710,16 +408825,16 @@ executable: mnlog.exe type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: mnlog type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: mnlog-32 type: none -'917910': +"917910": installDir: Lucid Path launch: - config: @@ -414727,16 +408842,16 @@ executable: LucidPath.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: LucidPath.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: LucidPath.x86_64 type: default -'917920': +"917920": installDir: The Other Half launch: - config: @@ -414745,137 +408860,137 @@ type: none - config: oslist: macos - executable: The Other Half.app\\Contents\\MacOS\\The Other Half + executable: "The Other Half.app\\\\Contents\\\\MacOS\\\\The Other Half" type: none - config: oslist: linux executable: The Other Half.x86 type: none -'917990': +"917990": installDir: Starboost EX launch: - config: oslist: windows executable: Starboost EX.exe type: none -'9180': +"9180": installDir: Commander Keen launch: - - arguments: base1\\keen1.exe -conf base1\\keen1.conf -fullscreen -exit - executable: base1\\dosbox.exe - - arguments: base2\\keen2.exe -conf base2\\keen2.conf -fullscreen -exit + - arguments: "base1\\\\keen1.exe -conf base1\\\\keen1.conf -fullscreen -exit" + executable: "base1\\\\dosbox.exe" + - arguments: "base2\\\\keen2.exe -conf base2\\\\keen2.conf -fullscreen -exit" description: Launch Commander Keen The Earth Explodes - executable: base2\\dosbox.exe - - arguments: base3\\keen3.exe -conf base3\\keen3.conf -fullscreen -exit + executable: "base2\\\\dosbox.exe" + - arguments: "base3\\\\keen3.exe -conf base3\\\\keen3.conf -fullscreen -exit" description: Launch Commander Keen Keen Must Die - executable: base3\\dosbox.exe - - arguments: base4\\keen4e.exe -conf base4\\keen4.conf -fullscreen -exit + executable: "base3\\\\dosbox.exe" + - arguments: "base4\\\\keen4e.exe -conf base4\\\\keen4.conf -fullscreen -exit" description: Launch Commander Keen Secret of the Oracle - executable: base4\\dosbox.exe - - arguments: base5\\keen5e.exe -conf base5\\keen5.conf -fullscreen -exit + executable: "base4\\\\dosbox.exe" + - arguments: "base5\\\\keen5e.exe -conf base5\\\\keen5.conf -fullscreen -exit" description: Launch Commander Keen The Armaggeddon Machine - executable: base5\\dosbox.exe -'91800': + executable: "base5\\\\dosbox.exe" +"91800": installDir: Cloning Clyde launch: - executable: CloningClyde.exe -'918000': +"918000": installDir: TenMinions launch: - executable: TenMinions.exe type: none -'918020': {} -'918030': {} -'918040': {} -'918060': +"918020": {} +"918030": {} +"918040": {} +"918060": installDir: Obstruction launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Obstruction.exe type: vr -'918070': +"918070": installDir: JQ Beautiful Japan launch: - executable: JQBeautifulJapan.exe type: none -'918080': +"918080": installDir: Evolo.Evolution launch: - executable: Evolo.Evolution.exe type: default -'91810': +"91810": installDir: Ancients of Ooga launch: - executable: Ooga.exe -'918100': +"918100": installDir: Space Cowboy launch: - config: oslist: windows executable: spacecowboy.exe type: default -'918110': +"918110": installDir: Animus - Stand Alone launch: - config: oslist: windows executable: Animus.exe type: default -'918120': +"918120": installDir: A.L.A.N. Rift Breakers launch: - config: oslist: windows - executable: AlanRiftBreakers\\AlanRiftBreakers.exe + executable: "AlanRiftBreakers\\\\AlanRiftBreakers.exe" type: default - config: oslist: linux - executable: AlanRiftBreakers\\AlanRiftBreakers.sh + executable: "AlanRiftBreakers\\\\AlanRiftBreakers.sh" type: default - config: oslist: macos - executable: AlanRiftBreakers\\AlanRiftBreakers.app + executable: "AlanRiftBreakers\\\\AlanRiftBreakers.app" type: default nameLocalized: - french: 'A.L.A.N.: Briseurs de Failles' -'918130': + french: "A.L.A.N.: Briseurs de Failles" +"918130": installDir: Entre-Deux Cursed launch: - config: oslist: windows - executable: EntreDeuxCursed\\EntreDeuxCursed.exe + executable: "EntreDeuxCursed\\\\EntreDeuxCursed.exe" type: default - config: oslist: macos - executable: EntreDeuxCursed\\EntreDeuxCursed.app + executable: "EntreDeuxCursed\\\\EntreDeuxCursed.app" type: default - config: oslist: linux - executable: EntreDeuxCursed\\EntreDeuxCursed.sh + executable: "EntreDeuxCursed\\\\EntreDeuxCursed.sh" type: default nameLocalized: - french: 'Entre-Deux: Maudit' -'918140': + french: "Entre-Deux: Maudit" +"918140": installDir: Hack the Core launch: - config: oslist: windows - executable: HackCore\\HackCore.exe + executable: "HackCore\\\\HackCore.exe" type: default - config: oslist: linux - executable: HackCore\\HackCore.sh + executable: "HackCore\\\\HackCore.sh" type: default - config: oslist: macos - executable: HackCore\\HackCore.app + executable: "HackCore\\\\HackCore.app" type: default nameLocalized: - french: 'Pirater le Noyau ' -'918160': {} -'918170': + french: "Pirater le Noyau " +"918160": {} +"918170": installDir: Curiosity launch: - config: @@ -414883,38 +408998,38 @@ description: Launch executable: Curiosity.exe type: none -'918180': +"918180": installDir: Test your knowledge Cats launch: - config: oslist: windows executable: Test your knowledge - Cats.exe type: default -'918190': {} -'918200': {} -'918260': +"918190": {} +"918200": {} +"918260": installDir: Pachansky Mathematics 2+2=8 launch: - config: oslist: windows executable: PM228.exe type: default -'918300': +"918300": installDir: TailzFromTheGrave launch: - config: oslist: windows executable: TailzFromTheGrave.exe type: none -'918320': +"918320": installDir: Swords with spice launch: - config: oslist: windows executable: Survival.exe type: default -'918370': {} -'918380': +"918370": {} +"918380": installDir: Choice of Magics launch: - config: @@ -414929,22 +409044,22 @@ oslist: linux executable: ChoiceOfMagics type: none -'918430': +"918430": installDir: Second Second launch: - config: oslist: windows executable: SecondSecond.exe type: none -'918440': +"918440": installDir: SHEEP SLING launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SheepSling.exe type: vr -'918450': +"918450": installDir: Dumb Little Creatures launch: - config: @@ -414955,33 +409070,33 @@ oslist: macos executable: DumbLittleCreatures.app type: none -'918480': +"918480": installDir: Project GR-5LYR Galactic Relocation launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ProjectGR-x64-release.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows description: Project GR (Windows 8 Compatibility Mode) executable: ProjectGR.bat type: option1 -'918500': +"918500": installDir: Fish Duel launch: - config: oslist: windows executable: FishDuel.exe type: none -'918520': {} -'918530': +"918520": {} +"918530": installDir: The Dark Room launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: DarkRoomUnreal.exe type: default @@ -414989,58 +409104,58 @@ oslist: macos executable: DarkRoomUnreal.app type: default - - arguments: '-windowed' + - arguments: "-windowed" config: - osarch: '64' + osarch: "64" oslist: windows description: The Dark Room in windowed mode executable: DarkRoomUnreal.exe type: option1 - - arguments: '-windowed' + - arguments: "-windowed" config: oslist: macos description: The Dark Room in windowed mode executable: DarkRoomUnreal.app/Contents/MacOS/DarkRoomUnreal type: option1 -'918550': +"918550": installDir: FromDarkness launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: FromDarkness.exe type: default -'918570': +"918570": installDir: Century launch: - - arguments: '-noraytracing -dx11' + - arguments: "-noraytracing -dx11" config: - osarch: '64' + osarch: "64" oslist: windows executable: Century.exe type: default -'918590': +"918590": installDir: Ocean Nomad Survival on Raft launch: - config: oslist: windows executable: Ocean Nomad.exe type: default -'918610': +"918610": installDir: NearEscape launch: - config: oslist: windows executable: NearEscape.exe type: none -'918620': +"918620": installDir: Warships 3D launch: - config: oslist: windows executable: Warships3D.exe type: default -'918670': +"918670": installDir: Jewel Match Twilight Solitaire launch: - config: @@ -415048,14 +409163,14 @@ description: Launch executable: JewelMatchTwilightSolitaire.exe type: none -'918680': +"918680": installDir: Castle of Venia launch: - config: oslist: windows executable: castleofvenia.exe type: default -'918690': +"918690": installDir: SurvivalBall launch: - config: @@ -415066,11 +409181,11 @@ oslist: macos executable: survivalball.app/Contents/MacOS/survivalball type: default -'918700': +"918700": installDir: Star99 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Star99.exe type: default @@ -415079,11 +409194,11 @@ executable: Contents/MacOS/Star99 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Star99.x86_64 type: default -'918720': +"918720": installDir: Help Me Escape launch: - config: @@ -415094,14 +409209,14 @@ oslist: macos executable: HelpMeEscape.app type: none -'918740': +"918740": installDir: Flat Trip launch: - config: oslist: windows executable: nw.exe type: default -'918820': +"918820": installDir: Headliner NoviNews launch: - config: @@ -415113,29 +409228,29 @@ executable: HeadlinerNoviNews.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: HeadlinerNoviNews.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: HeadlinerNoviNews.x86_64 type: none nameLocalized: japanese: ヘッドライナー:ノヴィニュース - koreana: '헤드라이너 : NoviNews' + koreana: "헤드라이너 : NoviNews" schinese: 头条新闻:《诺维新闻》 -'918850': +"918850": installDir: SP!TE launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SPITE.exe type: default -'918860': {} -'918870': +"918860": {} +"918870": installDir: Legend of Assassin Egypt launch: - config: @@ -415148,24 +409263,24 @@ type: none - config: oslist: macos - executable: Legend of Assassin - Egypt.app\\Contents\\MacOS\\Legend of Assassin - Egypt + executable: "Legend of Assassin - Egypt.app\\\\Contents\\\\MacOS\\\\Legend of Assassin - Egypt" type: none -'918880': +"918880": installDir: AeiothRPG launch: - config: oslist: windows executable: AeiothRPG.exe type: default -'918900': +"918900": installDir: Girls Dance VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: girls dance vr.exe type: vr -'918950': +"918950": installDir: WARBORN launch: - config: @@ -415174,30 +409289,30 @@ type: default - config: oslist: macos - executable: WARBORN.app\\Contents\\MacOS\\WARBORN + executable: "WARBORN.app\\\\Contents\\\\MacOS\\\\WARBORN" type: default -'918960': {} -'918980': {} -'918990': +"918960": {} +"918980": {} +"918990": installDir: gladio_v2 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: gladio_v2.exe type: default -'91900': +"91900": installDir: Post Apocalyptic Mayhem launch: - executable: PAMMainGame.exe -'919040': +"919040": installDir: Skywriter launch: - config: oslist: windows executable: skywriter.exe type: default -'919150': +"919150": installDir: A Sun Of Salt launch: - config: @@ -415212,30 +409327,30 @@ oslist: macos executable: /MacOS/ASunOfSalt type: default -'919160': +"919160": installDir: Submerged VR Escape the Room launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Submerged type: vr -'919170': +"919170": installDir: Dude Cops launch: - config: oslist: windows executable: Game.exe type: default -'919190': +"919190": installDir: Cube Full of Mines launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: CubeFullOfMines.exe type: default -'919200': +"919200": installDir: Special Warfare launch: - config: @@ -415244,13 +409359,13 @@ type: default - config: oslist: macos - executable: SpecialWarfareMac.app\\Contents\\MacOS\\SpecialWarfareMac + executable: "SpecialWarfareMac.app\\\\Contents\\\\MacOS\\\\SpecialWarfareMac" type: default -'919220': +"919220": installDir: DOF launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: DOF.exe type: default @@ -415259,19 +409374,19 @@ executable: DOF.app/Contents/MacOS/DOF type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: DOF.x86_64 type: none -'919240': +"919240": installDir: HappyBlock launch: - - arguments: '-LydGameStudio' + - arguments: "-LydGameStudio" config: oslist: windows executable: happyblock.exe type: default -'919300': +"919300": installDir: Hentai Hexa Mosaic launch: - config: @@ -415282,21 +409397,21 @@ oslist: linux executable: nw type: default -'919320': +"919320": installDir: Touch Down Football Solitaire launch: - config: oslist: windows executable: TouchDownSolitaire.exe type: none -'919360': +"919360": installDir: Alaloth - Champions of The Four Kingdoms launch: - config: oslist: windows executable: Alaloth.exe type: default -'919370': +"919370": installDir: Overdungeon launch: - config: @@ -415304,19 +409419,19 @@ executable: OSX.app type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: Windows-64bit.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: Windows-32bit.exe type: default nameLocalized: japanese: Overdungeon | オーバーダンジョン schinese: 超载地牢 -'919410': +"919410": installDir: Felix The Reaper launch: - config: @@ -415329,30 +409444,30 @@ type: default - config: oslist: windows - ownsdlc: '1159930' + ownsdlc: "1159930" description: Bonus Content executable: open_bonus_win.bat type: none - config: oslist: macos - ownsdlc: '1159930' + ownsdlc: "1159930" description: Bonus Content executable: open_bonus_osx.sh type: none - config: oslist: linux - ownsdlc: '1159930' + ownsdlc: "1159930" description: Bonus Content executable: open_bonus_lin.sh type: none -'919440': +"919440": installDir: Dark Xingzer launch: - config: oslist: windows executable: Game.exe type: none -'919560': +"919560": installDir: Monster Farm launch: - config: @@ -415361,110 +409476,110 @@ type: none - config: oslist: macos - executable: Monster Farm.app\\Contents\\MacOS\\Monster Farm + executable: "Monster Farm.app\\\\Contents\\\\MacOS\\\\Monster Farm" type: none - config: oslist: linux executable: Monster Farm.x86 type: none -'919610': +"919610": installDir: TheBallEncounter launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: The Ball Encounter.exe type: default -'919640': +"919640": installDir: Steel Division 2 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SteelDivision2.exe type: default -'919690': +"919690": installDir: Click and Manage Tycoon launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows executable: CMTycoon.exe type: none -'919730': +"919730": installDir: Project Z launch: - - arguments: '--pancake' + - arguments: "--pancake" config: oslist: macos executable: ProjectZ.app/Contents/MacOS/ProjectZ type: default - - arguments: '--pancake' + - arguments: "--pancake" config: - osarch: '64' + osarch: "64" oslist: linux executable: ProjectZ type: default - - arguments: '--pancake' + - arguments: "--pancake" config: - osarch: '64' + osarch: "64" oslist: windows executable: ProjectZ.exe type: default - - arguments: '--openvr' + - arguments: "--openvr" config: - osarch: '64' + osarch: "64" oslist: windows executable: ProjectZ.exe type: vr - - arguments: '--oculusvr' + - arguments: "--oculusvr" config: - osarch: '64' + osarch: "64" oslist: windows executable: ProjectZ.exe type: othervr - - arguments: '--openvr' + - arguments: "--openvr" config: - osarch: '64' + osarch: "64" oslist: linux executable: ProjectZ type: vr - - arguments: '--openvr' + - arguments: "--openvr" config: oslist: macos executable: ProjectZ.app/Contents/MacOS/ProjectZ type: vr -'919850': {} -'919890': +"919850": {} +"919890": installDir: Navyblue & the Spectrum Killers launch: - config: oslist: windows executable: NavyBlue.exe type: default -'92': +"92": installDir: Codename Gordon launch: - executable: cg.exe -'9200': +"9200": installDir: RAGE launch: - executable: rage.exe - arguments: +com_allowMods 1 +logfile 1 +fs_savepath ./SAVES description: Play RAGE 64-bit with Mods (unsupported) executable: Rage64.exe -'92000': +"92000": installDir: Hydrophobia launch: - executable: HydroPC.exe -'920190': +"920190": installDir: Greetings launch: - config: oslist: windows executable: Greetings.exe type: default -'920200': +"920200": installDir: Artificial Mansion launch: - config: @@ -415477,30 +409592,30 @@ type: default - config: oslist: macos - executable: ArtificialMansion.app\\Contents\\MacOS\\ArtificialMansion + executable: "ArtificialMansion.app\\\\Contents\\\\MacOS\\\\ArtificialMansion" type: default -'920210': +"920210": installDir: LEGO Star Wars - The Skywalker Saga launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: LEGOSTARWARSSKYWALKERSAGA_DX11.exe type: default nameLocalized: - arabic: 'LEGO® STAR WARS™: سلسلة سكاي ووكر' - brazilian: 'LEGO® Star Wars™: A Saga Skywalker' - french: 'LEGO® Star Wars™ : La Saga Skywalker' - german: 'LEGO® Star Wars™: Die Skywalker Saga' - italian: 'LEGO® Star Wars™: La Saga Degli Skywalker' + arabic: "LEGO® STAR WARS™: سلسلة سكاي ووكر" + brazilian: "LEGO® Star Wars™: A Saga Skywalker" + french: "LEGO® Star Wars™ : La Saga Skywalker" + german: "LEGO® Star Wars™: Die Skywalker Saga" + italian: "LEGO® Star Wars™: La Saga Degli Skywalker" japanese: レゴ®スター・ウォーズ/スカイウォーカー・サーガ - koreana: 'LEGO® Star Wars™: 스카이워커 사가' - latam: 'LEGO® Star Wars™: La Saga De Skywalker' - polish: 'LEGO ® Gwiezdne Wojny™: Saga Skywalkerów' - russian: 'LEGO® Звездные Войны™: Скайуокер. Сага' - spanish: 'LEGO® Star Wars™: La Saga Skywalker' - tchinese: 'LEGO® Star Wars™ : 天行者傳奇' -'920280': + koreana: "LEGO® Star Wars™: 스카이워커 사가" + latam: "LEGO® Star Wars™: La Saga De Skywalker" + polish: "LEGO ® Gwiezdne Wojny™: Saga Skywalkerów" + russian: "LEGO® Звездные Войны™: Скайуокер. Сага" + spanish: "LEGO® Star Wars™: La Saga Skywalker" + tchinese: "LEGO® Star Wars™ : 天行者傳奇" +"920280": installDir: Monster Pub launch: - config: @@ -415533,7 +409648,7 @@ description: Chapter 3 executable: monster_pub_3.app type: option3 -'920320': +"920320": installDir: Virgo vs The Zodiac launch: - config: @@ -415548,7 +409663,7 @@ oslist: macos executable: Virgo Versus The Zodiac.app type: default -'920450': +"920450": installDir: Escape The Labyrinth launch: - config: @@ -415563,20 +409678,20 @@ oslist: linux executable: Escape The Labyrinth.x86 type: default -'920460': +"920460": installDir: Hentai Space launch: - executable: Hentai Space.exe type: none -'920470': +"920470": installDir: Dissolution launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Dissolution.exe type: default -'920500': +"920500": installDir: Construction Charlie launch: - config: @@ -415589,80 +409704,80 @@ description: Launch CC Builder executable: CCBuilder.exe type: none -'920510': - installDir: '1' +"920510": + installDir: "1" launch: - config: oslist: windows executable: 123.exe type: none -'920520': +"920520": installDir: Sexy Jigsaw launch: - config: oslist: windows executable: Sexy Jigsaw.exe type: default -'920550': {} -'920580': +"920550": {} +"920580": installDir: Tanks With Hands Armed and Treaded launch: - config: oslist: windows - executable: TanksWithHands\\TanksWithHands.exe + executable: "TanksWithHands\\\\TanksWithHands.exe" type: default -'920620': +"920620": installDir: Ghosting Gun S launch: - config: oslist: windows executable: Ghosting Gun S.exe type: default -'920640': +"920640": installDir: Emitters launch: - config: betakey: beta - osarch: '64' + osarch: "64" oslist: windows executable: Emitters.exe type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: Emitters.sh type: none -'920660': {} -'920670': {} -'920680': +"920660": {} +"920670": {} +"920680": installDir: Fate Hunters launch: - - arguments: '-logFile log.txt' + - arguments: "-logFile log.txt" config: oslist: windows executable: fatehunters.exe type: default - - arguments: '-logFile log.txt' + - arguments: "-logFile log.txt" config: oslist: macos - executable: Fate Hunters.app\\Contents\\MacOS\\Fate Hunters + executable: "Fate Hunters.app\\\\Contents\\\\MacOS\\\\Fate Hunters" type: default - - arguments: '-logFile log.txt' + - arguments: "-logFile log.txt" config: - osarch: '64' + osarch: "64" oslist: linux executable: fatehunters.x64 type: default -'920690': +"920690": installDir: CardLife launch: - - arguments: '-steam' + - arguments: "-steam" config: - osarch: '64' + osarch: "64" oslist: windows executable: launcher.exe type: none -'920700': +"920700": installDir: Piano Bar launch: - config: @@ -415671,9 +409786,9 @@ type: none - config: oslist: macos - executable: Piano Bar.app\\Contents\\MacOS\\Piano Bar + executable: "Piano Bar.app\\\\Contents\\\\MacOS\\\\Piano Bar" type: none -'920710': +"920710": installDir: Burndown launch: - config: @@ -415681,136 +409796,132 @@ oslist: windows executable: Burndown.exe type: default -'920770': - installDir: Santa's Story of Christmas +"920770": + installDir: "Santa's Story of Christmas" launch: - config: oslist: windows executable: SantasStory.exe type: none -'920780': +"920780": installDir: Safe launch: - config: oslist: windows executable: Safe.exe type: default -'920800': +"920800": installDir: LabGen launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: LabGen\\Binaries\\Win64\\LabGen-Win64-Shipping.exe + executable: "LabGen\\\\Binaries\\\\Win64\\\\LabGen-Win64-Shipping.exe" type: none -'920810': {} -'920820': +"920810": {} +"920820": installDir: Skater Cally launch: - config: oslist: windows executable: Skater Cally.exe type: none -'920830': {} -'920850': {} -'920860': {} -'92100': +"920830": {} +"920850": {} +"920860": {} +"92100": installDir: DETOUR launch: - executable: DETOUR.exe -'921050': +"921050": installDir: Jar Battlers launch: - executable: JarBattlers.exe type: none -'921060': +"921060": installDir: Modern Combat 5 launch: - config: oslist: windows executable: mc5.exe type: none -'921070': +"921070": installDir: Spellwake launch: - config: oslist: windows - executable: Spellwake\\Code\\Current\\Release\\Spellwake.exe + executable: "Spellwake\\\\Code\\\\Current\\\\Release\\\\Spellwake.exe" type: default - workingdir: Spellwake\\Code\\Current\\Release -'921090': - installDir: Where Humans Shouldn't Go + workingdir: "Spellwake\\\\Code\\\\Current\\\\Release" +"921090": + installDir: "Where Humans Shouldn't Go" launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: WHSG.exe type: none -'921390': +"921390": installDir: Wushu Chronicles launch: - config: oslist: windows - executable: wlz\\release_dx11\\winpc_launcher.exe + executable: "wlz\\\\release_dx11\\\\winpc_launcher.exe" type: none nameLocalized: schinese: 武林志 -'921400': {} -'921420': +"921400": {} +"921420": installDir: Kingpin Royale launch: - executable: KingpinRoyale.exe type: default -'921430': +"921430": installDir: Genius! NAZI-GIRL GoePPels-Chan ep1 launch: - config: oslist: windows description: Genius! NAZI-GIRL GoePPels-Chan ep1(English) - description_loc: - english: Genius! NAZI-GIRL GoePPels-Chan ep1(English) executable: goeppels01E.exe type: default - config: oslist: windows description: Moemoe! NAZI-GIRL GoePPels-Chan ep1(Japanese) - description_loc: - english: Moemoe! NAZI-GIRL GoePPels-Chan ep1(Japanese) executable: goeppels01.exe type: none -'921440': {} -'921450': - installDir: King Randall's Party +"921440": {} +"921450": + installDir: "King Randall's Party" launch: - config: oslist: windows executable: KingRandallsParty.exe type: default -'921500': +"921500": installDir: Jack Is Missing launch: - config: oslist: windows - description: 'Jack Is Missing, a horror game by Kevin Yang Games.' + description: "Jack Is Missing, a horror game by Kevin Yang Games." executable: Jack Is Missing.exe type: default - config: oslist: macos - executable: Jack Is Missing.app\\Contents\\MacOS\\Jack Is Missing + executable: "Jack Is Missing.app\\\\Contents\\\\MacOS\\\\Jack Is Missing" type: default - config: oslist: linux executable: Jack Is Missing.x86 type: default -'921520': +"921520": installDir: Puppy Chef Academy launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Puppy Chef Academy.exe type: vr -'921530': +"921530": installDir: Demon King Domination launch: - config: @@ -415825,12 +409936,12 @@ oslist: linux executable: DKDDE.sh type: default -'921550': {} -'921570': +"921550": {} +"921570": installDir: OCTOPATH TRAVELER launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Octopath_Traveler.exe type: default @@ -415839,43 +409950,43 @@ koreana: 옥토패스 트래블러 schinese: 八方旅人 tchinese: 八方旅人 -'921590': +"921590": installDir: DISSIDIA FINAL FANTASY NT Free Edition launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: dffnt.exe type: default -'921630': +"921630": installDir: 音灵 INVAXION launch: - config: oslist: windows executable: INVAXION.exe type: default -'921660': +"921660": installDir: Quirky Crystal RPG launch: - config: oslist: windows executable: Game.exe type: default -'921670': +"921670": installDir: William and the Lands of Rage launch: - config: oslist: windows executable: WilliamandtheLandsofRage.exe type: default -'921690': +"921690": installDir: O2Jam x DancingParty launch: - config: oslist: windows executable: O2JamxDancingParty.exe type: vr -'921700': +"921700": installDir: Crashphalt launch: - config: @@ -415886,7 +409997,7 @@ oslist: macos executable: Crashphalt.app type: none -'921710': +"921710": installDir: Galaxy Squad launch: - config: @@ -415897,23 +410008,23 @@ oslist: linux executable: Galaxy Squad.x86 type: default -'921720': +"921720": installDir: Frog Out! launch: - config: oslist: windows executable: FrogOut.exe type: none -'921730': +"921730": installDir: Abberbury launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Abberbury.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Abberbury.x86_64 type: default @@ -415921,31 +410032,31 @@ oslist: macos executable: Abberbury.app type: default -'921740': +"921740": installDir: Shahrzad - The Storyteller launch: - executable: Shahrzad.exe type: none -'921750': {} -'921760': {} -'921770': +"921750": {} +"921760": {} +"921770": installDir: HANZ! launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: HANZ.exe type: none -'921780': +"921780": installDir: The Dark Occult launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: The_Dark_Occult.exe type: none -'921790': {} -'921800': +"921790": {} +"921800": installDir: Encased launch: - config: @@ -415956,83 +410067,83 @@ oslist: linux executable: Encased.x86_64 type: default -'921810': {} -'921840': +"921810": {} +"921840": installDir: Sabreurs - A Noble Duel launch: - config: oslist: windows executable: Sabreurs.exe type: none -'921850': +"921850": installDir: Jar Sam launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: game.exe type: default -'921860': {} -'921890': +"921860": {} +"921890": installDir: Retro Rockets launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: RetroRockets.exe type: default -'921900': +"921900": installDir: My Burning Heart launch: - config: oslist: windows - executable: MyBurningHeart-2.0-pc\\MyBurningHeart.exe + executable: "MyBurningHeart-2.0-pc\\\\MyBurningHeart.exe" type: default - config: oslist: macos - executable: MyBurningHeart.app\\Contents\\MacOS\\MyBurningHeart + executable: "MyBurningHeart.app\\\\Contents\\\\MacOS\\\\MyBurningHeart" type: default -'921910': {} -'921920': +"921910": {} +"921920": installDir: Robikon launch: - config: oslist: windows executable: Robikon.exe type: default -'921940': +"921940": installDir: Icarus Online launch: - config: oslist: windows - executable: microlauncher\\icarus-101xp-micro-launcher.exe + executable: "microlauncher\\\\icarus-101xp-micro-launcher.exe" type: default -'921960': +"921960": installDir: Koliseum Soccer VR launch: - config: oslist: windows executable: KoliseumSoccer.exe type: vr -'921970': +"921970": installDir: Liberty Prime launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: LibertyPrime.exe type: default -'921980': {} -'92200': +"921980": {} +"92200": installDir: Gundemonium Recollection launch: - executable: gundemonium.exe -'922020': +"922020": installDir: Beyond The Veil launch: - executable: BeyondTheVeil.exe type: default -'922040': +"922040": installDir: Hamsterdam launch: - config: @@ -416043,30 +410154,30 @@ oslist: macos executable: Hamsterdam.app/Contents/MacOS/Hamsterdam type: default -'922060': +"922060": installDir: Ball run and rush launch: - config: oslist: windows executable: ballrunandrush.exe type: default -'922080': +"922080": installDir: Shards the Deckbuilder launch: - executable: shards.exe type: none -'922090': +"922090": installDir: CMD 2048 launch: - config: oslist: windows executable: CMD 2048.exe type: none -'92210': +"92210": installDir: Hitogata Happa launch: - executable: happa64.exe -'922100': +"922100": installDir: Nauticrawl launch: - config: @@ -416075,55 +410186,55 @@ type: default - config: oslist: macos - executable: Nauticrawl.app\\Contents\\MacOS\\Nauticrawl + executable: "Nauticrawl.app\\\\Contents\\\\MacOS\\\\Nauticrawl" type: default -'922130': +"922130": installDir: Land of Puzzles Knights launch: - config: oslist: windows executable: Land of Puzzles Knights.exe type: default -'922140': - installDir: 'Oh, you touch my balls ( ͡° ͜ʖ ͡°)' +"922140": + installDir: "Oh, you touch my balls ( ͡° ͜ʖ ͡°)" launch: - executable: ball.exe type: default -'922150': +"922150": installDir: Ink Plane launch: - config: oslist: windows executable: nw.exe type: default -'922170': +"922170": installDir: The True Slime King launch: - config: oslist: windows executable: The True Slime King.exe type: default -'922190': +"922190": installDir: Beat Champion launch: - - arguments: '-vrmode openvr' + - arguments: "-vrmode openvr" config: - osarch: '64' + osarch: "64" oslist: windows executable: BeatChampion.exe type: vr - config: - osarch: '64' + osarch: "64" oslist: windows - ownsdlc: '1199870' + ownsdlc: "1199870" description: Beat Champion Editor Tool executable: BeatChampionEditor.exe type: option1 -'92220': +"92220": installDir: GundeadliGne launch: - executable: gundeadligne.exe -'922220': +"922220": installDir: Khospis launch: - config: @@ -416134,19 +410245,19 @@ - config: oslist: macos description: Khopis For Macs - executable: Khospis.app\\Contents\\MacOS\\Khospis Macs 1.5 + executable: "Khospis.app\\\\Contents\\\\MacOS\\\\Khospis Macs 1.5" type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Khospis.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Khospis.x86_64 type: default -'922250': +"922250": installDir: Heavy Burger launch: - config: @@ -416155,17 +410266,17 @@ type: default - config: oslist: macos - executable: HeavyBurger.app\\Contents\\MacOS\\HeavyBurger + executable: "HeavyBurger.app\\\\Contents\\\\MacOS\\\\HeavyBurger" type: default -'922290': +"922290": installDir: Flappy Flappy VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: FlappyFlappyVR.exe type: vr -'922320': +"922320": installDir: Sniper3D launch: - config: @@ -416176,8 +410287,8 @@ oslist: macos executable: Sniper3D.app type: default -'922380': {} -'922400': +"922380": {} +"922400": installDir: DX-Ball 2 - 20th Anniversary Edition launch: - config: @@ -416188,7 +410299,7 @@ oslist: windows executable: Tools/DXB2Editor.exe type: editor -'922410': +"922410": installDir: DinoKnights launch: - config: @@ -416203,14 +410314,14 @@ oslist: linux executable: DinoKnights type: none -'922450': +"922450": installDir: funclick_space launch: - config: oslist: windows executable: q3dgame.exe type: default -'922460': +"922460": installDir: Cheeky Chooks launch: - config: @@ -416221,14 +410332,14 @@ oslist: macos executable: CheekyChooks.app type: default -'922470': +"922470": installDir: Space Mayhem launch: - config: oslist: windows executable: Space Mayhem.exe type: default -'922480': +"922480": installDir: funclick_zzq launch: - config: @@ -416237,29 +410348,29 @@ type: default nameLocalized: schinese: 自走大逃杀 -'922500': +"922500": installDir: KILL la KILL -IF launch: - config: oslist: windows executable: KILLlaKILL_IF.exe type: default -'922510': +"922510": installDir: JellyfishTheGhost launch: - config: oslist: windows executable: JellyfishTheGhost/JellyfishTheGhost.exe type: default -'922520': +"922520": installDir: MyGame launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: nw.exe type: default -'922530': +"922530": installDir: Bestiary of Sigillum launch: - config: @@ -416270,7 +410381,7 @@ oslist: macos executable: Bestiary of Sigillum.app type: default -'922550': +"922550": installDir: keyg launch: - config: @@ -416285,16 +410396,16 @@ oslist: linux executable: keyg type: default -'922560': +"922560": installDir: Blixten Quest launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: Blixten Quest.exe type: none -'922590': +"922590": installDir: Enter_The_Moon_1_0_4 launch: - arguments: v.1.0.4 @@ -416303,45 +410414,39 @@ description: v.1.0.4 executable: Enter_The_Moon.exe type: default -'922620': +"922620": installDir: Kingshunt launch: - - arguments: '-d3d11' + - arguments: "-d3d11" config: oslist: windows description: DirectX 11 - description_loc: - english: DirectX 11 - finnish: DirectX 11 executable: Kingshunt.exe type: option1 - - arguments: '-d3d12' + - arguments: "-d3d12" config: oslist: windows description: DirectX 12 - description_loc: - english: DirectX 12 - finnish: DirectX 12 executable: Kingshunt.exe type: option2 -'922630': +"922630": installDir: Mortal Royale launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: \\UnrealEngine3\\Binaries\\Win64\\MortalRoyale.exe + executable: "\\\\UnrealEngine3\\\\Binaries\\\\Win64\\\\MortalRoyale.exe" type: default -'922640': {} -'922650': +"922640": {} +"922650": installDir: Caveman Chuck launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Caveman Chuck.exe -'922690': {} -'922700': +"922690": {} +"922700": installDir: Hidden Animals Photo Hunt launch: - config: @@ -416352,8 +410457,8 @@ oslist: macos executable: Photo Hunt.app type: none -'922710': - installDir: Knightin'+ +"922710": + installDir: "Knightin'+" launch: - config: oslist: windows @@ -416365,16 +410470,16 @@ type: default - config: oslist: macos - executable: knightin'+.app\\Contents\\MacOS\\nwjs + executable: "knightin'+.app\\\\Contents\\\\MacOS\\\\nwjs" type: default -'922800': +"922800": installDir: Girlfriend Experience VR launch: - config: oslist: windows executable: Girlfriend Experience VR.exe type: vr -'922810': +"922810": installDir: MeatPossible Chapter 1.5 launch: - config: @@ -416383,24 +410488,24 @@ type: default - config: oslist: macos - executable: MeatPossible Chapter 1.5.app\\Contents\\MacOS\\nwjs + executable: "MeatPossible Chapter 1.5.app\\\\Contents\\\\MacOS\\\\nwjs" type: default - config: oslist: linux executable: MeatPossible Chapter 1.5 type: default -'922870': +"922870": installDir: Final Hope launch: - executable: Client.exe -'922880': +"922880": installDir: Siberian Dawn launch: - config: oslist: windows executable: Siberian Dawn.exe type: default -'922920': +"922920": installDir: Knights of Tartarus launch: - config: @@ -416415,29 +410520,27 @@ oslist: linux executable: Knights of Tartarus.x86 type: none -'92300': +"92300": installDir: ARES launch: - executable: ARES.exe - - description: >- - Launch without fixedtimestep. This will maximize framerate on high-end system but will cause problem on low-end - system + - description: Launch without fixedtimestep. This will maximize framerate on high-end system but will cause problem on low-end system executable: ARES_nofixedtimestep.exe -'923010': +"923010": installDir: EggHuntSteamv2 launch: - config: oslist: windows executable: Egg Hunt.exe type: none -'923030': +"923030": installDir: Rocket Swords launch: - config: oslist: windows executable: Rocket Swords.exe type: vr -'923050': +"923050": installDir: WindowsNoEditor launch: - config: @@ -416445,21 +410548,21 @@ description: Launch executable: Donttouchme.exe type: none -'923080': +"923080": installDir: AngelandDevil launch: - config: oslist: windows executable: AngelandDevil.exe type: default -'923100': {} -'923110': {} -'923120': +"923100": {} +"923110": {} +"923120": installDir: Food Bomber launch: - executable: Food Bomber.exe type: default -'923130': +"923130": installDir: PlunderSquad launch: - config: @@ -416474,66 +410577,66 @@ oslist: linux executable: plundersquad type: default -'923140': +"923140": installDir: Elven Magic launch: - config: oslist: windows executable: ElvenMagicProWin.exe type: default - workingdir: \\ + workingdir: "\\\\" - config: oslist: macos - executable: ElvenMagicProMAConMAC.app\\Contents\\MacOS\\ElvenMagicProMAConMAC + executable: "ElvenMagicProMAConMAC.app\\\\Contents\\\\MacOS\\\\ElvenMagicProMAConMAC" type: default - workingdir: ElvenMagicProMAConMAC.app\\Contents\\MacOS\\ + workingdir: "ElvenMagicProMAConMAC.app\\\\Contents\\\\MacOS\\\\" - config: oslist: macos - executable: ElvenMagic2MAConMAC.app\\Contents\\MacOS\\ElvenMagic2MacOnMac + executable: "ElvenMagic2MAConMAC.app\\\\Contents\\\\MacOS\\\\ElvenMagic2MacOnMac" type: default - workingdir: ElvenMagic2MAConMAC.app\\Contents\\MacOS\\ + workingdir: "ElvenMagic2MAConMAC.app\\\\Contents\\\\MacOS\\\\" - config: oslist: windows executable: ElvenMagic2Win.exe type: default - workingdir: \\ + workingdir: "\\\\" - config: oslist: windows - executable: \\ElvenMagicSE\\ElvenMagicSEWin.exe + executable: "\\\\ElvenMagicSE\\\\ElvenMagicSEWin.exe" type: default - workingdir: \\ElvenMagicSE\\ + workingdir: "\\\\ElvenMagicSE\\\\" - config: oslist: macos - executable: 'ElvenMagicSEMAConMAC.app\\Contents\\MacOS\\EMMMORPGKIT ' + executable: "ElvenMagicSEMAConMAC.app\\\\Contents\\\\MacOS\\\\EMMMORPGKIT " type: default - workingdir: ElvenMagicSEMAConMAC.app\\Contents\\MacOS + workingdir: "ElvenMagicSEMAConMAC.app\\\\Contents\\\\MacOS" nameLocalized: - english: 'Elven Magic: The Witch, The Elf & The Fairy' -'923180': + english: "Elven Magic: The Witch, The Elf & The Fairy" +"923180": installDir: The prophecy of statues launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: The prophecy of statues.exe type: default -'923230': +"923230": installDir: DreamBack VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: DreamBackVR.exe type: vr -'923240': +"923240": installDir: The Warrior Of Treasures 2 Skull Hunter launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Warrior2treasures type: default -'923260': +"923260": installDir: Golf Peaks launch: - config: @@ -416544,15 +410647,15 @@ oslist: macos executable: Golf Peaks.app type: default -'923330': {} -'923340': +"923330": {} +"923340": installDir: Space Adventure TD launch: - config: oslist: windows executable: Space Adventure TD.exe type: default -'923350': +"923350": installDir: Sakura Day Mahjong launch: - config: @@ -416563,14 +410666,14 @@ oslist: macos executable: Sakura Day Mahjong.app type: default -'923360': +"923360": installDir: Bombjour launch: - config: oslist: windows executable: Bombjour.exe type: none -'923370': +"923370": installDir: Cat Warfare launch: - config: @@ -416579,42 +410682,42 @@ type: default - config: oslist: macos - executable: Cat Warfare Mac.app\\Contents\\MacOS\\Cat Warfare + executable: "Cat Warfare Mac.app\\\\Contents\\\\MacOS\\\\Cat Warfare" type: default - config: oslist: linux executable: Cat Warfare.x86_64 type: default -'923390': +"923390": installDir: Shoot-No-Shoot launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: content.exe type: vr -'923400': +"923400": installDir: 苍夜 launch: - executable: Game.exe type: default -'923420': +"923420": installDir: Farstorm launch: - config: oslist: windows executable: Farstorm.exe type: default -'923430': {} -'923460': +"923430": {} +"923460": installDir: Biodigital launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: vrstory1.exe type: vr -'923470': +"923470": installDir: MOMO.EXE launch: - config: @@ -416629,43 +410732,43 @@ oslist: linux executable: MOMO.EXE.x86_64 type: default -'923480': +"923480": installDir: Strategist launch: - config: oslist: windows executable: Strategist.exe type: default -'923500': +"923500": installDir: Metanormal Demo launch: - config: oslist: windows executable: Metanormal.exe type: default -'923510': +"923510": installDir: Cedar Junction launch: - config: oslist: windows executable: Cedar Junction.exe type: default -'923530': +"923530": installDir: RIP launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: RIP.exe type: default -'923540': +"923540": installDir: Pandas Die launch: - config: oslist: windows executable: PandasDie.exe type: default -'923550': +"923550": installDir: Rescale launch: - config: @@ -416680,7 +410783,7 @@ oslist: linux executable: Rescale.x86 type: default -'923570': +"923570": installDir: Eternal Radiance launch: - config: @@ -416689,22 +410792,22 @@ type: default nameLocalized: schinese: 永恒光辉 -'923590': +"923590": installDir: Forebearers launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Forebearers.exe type: none -'923630': +"923630": installDir: Burger Lord launch: - config: oslist: windows executable: BurgerLord.exe type: default -'923670': +"923670": installDir: Super Shopper launch: - config: @@ -416715,7 +410818,7 @@ oslist: macos executable: MacBuild.app type: default -'923690': +"923690": installDir: Hacker.exe launch: - config: @@ -416724,44 +410827,44 @@ type: default - config: oslist: macos - executable: hacker_exe.app\\Contents\\MacOS\\hacker_exe + executable: "hacker_exe.app\\\\Contents\\\\MacOS\\\\hacker_exe" type: default -'923710': +"923710": installDir: uFactory launch: - config: oslist: windows executable: uFactory.exe type: default -'923730': +"923730": installDir: Monster MIX launch: - config: oslist: windows executable: Monster MIX.exe type: default -'923750': {} -'923760': +"923750": {} +"923760": installDir: Chi Busters launch: - config: oslist: windows executable: Build.exe type: default -'923780': +"923780": installDir: Project Cybertronic launch: - config: oslist: windows executable: Cybertronic_Alpha.exe type: none -'923790': +"923790": installDir: Battle Royale Survival launch: - executable: Battle Royale Survival.exe type: none -'923800': {} -'923810': +"923800": {} +"923810": installDir: IF MY HEART HAD WINGS FLIGHT DIARY launch: - config: @@ -416769,30 +410872,30 @@ description: Launch executable: AdvHD.exe type: default -'923820': +"923820": installDir: DeadPrison launch: - config: oslist: windows executable: DeadPrison.exe type: vr -'923830': {} -'923840': +"923830": {} +"923840": installDir: Wuxia archive Crisis escape launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Wuxia archive - Crisis escape.exe type: none -'923880': +"923880": installDir: Educator 2076 - Basics in Education launch: - config: oslist: windows executable: Educator 2076.exe type: default -'923890': +"923890": installDir: Yet another tower defence launch: - config: @@ -416801,40 +410904,40 @@ type: none - config: oslist: macos - executable: YetAnotherTowerDefense.app\\Contents\\MacOS\\YetAnotherTowerDefense + executable: "YetAnotherTowerDefense.app\\\\Contents\\\\MacOS\\\\YetAnotherTowerDefense" type: none -'923900': +"923900": installDir: MagicgirlVN launch: - config: oslist: windows executable: Lightning Angel Litona Liliche.exe type: default -'923910': +"923910": installDir: Eve of Souls Static Pod launch: - config: oslist: windows executable: Game.exe type: none -'923970': +"923970": installDir: Space Company Simulator launch: - executable: scs.exe type: none -'92400': +"92400": installDir: button launch: - executable: B.U.T.T.O.N.exe -'924020': +"924020": installDir: Spellrune launch: - config: oslist: windows executable: Spellrune.exe type: default -'924030': {} -'924040': +"924030": {} +"924040": installDir: Fairy Tower Defense launch: - config: @@ -416847,29 +410950,29 @@ type: none - config: oslist: macos - executable: Fairy Tower Defense.app\\Contents\\MacOS\\Fairy Tower Defense + executable: "Fairy Tower Defense.app\\\\Contents\\\\MacOS\\\\Fairy Tower Defense" type: none -'924070': +"924070": installDir: Arboria launch: - config: oslist: windows executable: Arboria.exe type: none -'924080': {} -'924090': +"924080": {} +"924090": installDir: Trip in HELL launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ZombiesMultiplayerjk.exe type: default -'924100': +"924100": installDir: Helheim launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Helheim/Helheim.exe type: default @@ -416878,59 +410981,59 @@ description: Controller Test executable: ControllerTest.exe type: option1 -'924120': {} -'924130': +"924120": {} +"924130": installDir: Slime-san Creator launch: - config: oslist: macos - executable: Slime-san Creator.app\\Contents\\MacOS\\Slime-san Creator + executable: "Slime-san Creator.app\\\\Contents\\\\MacOS\\\\Slime-san Creator" type: none - config: oslist: windows executable: Slime-san Creator.exe type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: Slime-san Creator.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: Slime-san Creator.x86_64 type: none -'924140': +"924140": installDir: Hand Simulator Survival launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Hand Simulator Survival.exe type: default -'924200': +"924200": installDir: WeAreShowtime launch: - config: oslist: windows executable: WeAreShowtime.exe type: vr -'924250': +"924250": installDir: PROZE_Enlightenment launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Proze.exe type: vr -'924280': +"924280": installDir: BingoBango launch: - config: oslist: windows executable: BingoBango.exe type: none -'924310': +"924310": installDir: VIDEO GAME launch: - config: @@ -416941,14 +411044,14 @@ oslist: macos executable: VIDEO GAME.exe type: default -'924360': +"924360": installDir: Zenith Hunter launch: - config: oslist: windows executable: Zenith Hunter.exe type: default -'924370': +"924370": installDir: Kontrakt launch: - config: @@ -416959,50 +411062,50 @@ oslist: linux executable: Kontrakt type: default -'924380': {} -'924390': +"924380": {} +"924390": installDir: Ozapell Mystery Text Adventure launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: TXTADV.exe type: default -'924430': +"924430": installDir: Squid Vs Vexus launch: - config: oslist: windows executable: SquidVsVexus.exe type: default -'924460': +"924460": installDir: Vinylove launch: - executable: Vinylove.exe type: none -'924500': +"924500": installDir: funclick_heros launch: - config: oslist: windows executable: q3dgame.exe type: default -'924520': +"924520": installDir: Sunny Shine Funland! launch: - config: oslist: windows executable: Sunny_Shine_Funland!.exe type: default -'924540': {} -'924560': +"924540": {} +"924560": installDir: Evocation launch: - config: oslist: windows executable: Evocation.exe type: none -'924650': +"924650": installDir: th165 launch: - config: @@ -417014,54 +411117,54 @@ executable: custom.exe type: config nameLocalized: - english: 'Hifuu Nightmare Diary ~ Violet Detector. ' + english: "Hifuu Nightmare Diary ~ Violet Detector. " japanese: 秘封ナイトメアダイアリー ~ Violet Detector. -'924660': +"924660": installDir: RollerPlay launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Virtual Reality (VR) executable: RollerPlay.exe type: vr - - arguments: '-nonvr' + - arguments: "-nonvr" config: - osarch: '64' + osarch: "64" oslist: windows description: Non Virtual Reality (on a computer monitor) executable: RollerPlay.exe type: vr -'924670': +"924670": installDir: Need for Spirit Drink & Drive Simulator launch: - config: oslist: windows executable: Need for Spirit Drink & Drive Simulator.exe type: default -'924710': +"924710": installDir: DiceWarrior launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: DiceWarrior.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: DiceWarrior.exe type: default -'924740': +"924740": installDir: Beyond Senses launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: BeyondSenses.exe type: default -'924750': {} -'924780': +"924750": {} +"924780": installDir: How to Sing to Open Your Heart launch: - config: @@ -417075,7 +411178,7 @@ nameLocalized: japanese: 心を開く歌い方 koreana: 사랑을 노래하는 방법 -'924790': +"924790": installDir: Island Maze launch: - config: @@ -417086,33 +411189,33 @@ oslist: macos executable: Island Maze.app type: none -'924800': +"924800": installDir: TITANIC Shipwreck Exploration launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TitanicDesktop_1.0.exe type: default -'924810': +"924810": installDir: Idle Kingdom Builder launch: - config: oslist: windows executable: Idle Kingdom Builder.exe type: default -'924830': +"924830": installDir: Zether launch: - config: oslist: windows executable: Zether.exe type: vr -'924870': +"924870": installDir: WARP-TEK launch: - config: - osarch: '64' + osarch: "64" oslist: linux executable: Linux/64/launch_warptek.sh type: default @@ -417125,171 +411228,147 @@ oslist: macos executable: WARP-TEK.app type: default -'924890': {} -'924900': +"924890": {} +"924900": installDir: One Gun Cat launch: - config: oslist: windows executable: onegun.exe type: default -'924940': +"924940": installDir: Guard of Wonderland launch: - config: oslist: windows executable: Guard of Wonderland.exe type: default -'924960': +"924960": installDir: Conjure Strike launch: - executable: cs_master.exe type: vr -'924970': +"924970": installDir: Back 4 Blood launch: - - arguments: '-SaveToUserDir -NOSCREENMESSAGES' + - arguments: "-SaveToUserDir -NOSCREENMESSAGES" config: oslist: windows - ownsdlc: '1142380' + ownsdlc: "1142380" description: Test - description_loc: - english: Test executable: Gobi-Win64-Test.exe type: option1 - - arguments: '-SaveToUserDir' + - arguments: "-SaveToUserDir" config: oslist: windows - ownsdlc: '1142380' + ownsdlc: "1142380" description: Shipping - description_loc: - english: Shipping executable: Gobi-Win64-Shipping.exe type: option2 - - arguments: '-SaveToUserDir -NOSCREENMESSAGES' + - arguments: "-SaveToUserDir -NOSCREENMESSAGES" config: oslist: windows - ownsdlc: '1142380' + ownsdlc: "1142380" description: Development - description_loc: - english: Development executable: Gobi.exe type: option3 - - arguments: '-SaveToUserDir -NOSCREENMESSAGES -windowed -ResX=1280 -ResY=720 -ExecCmds=\"SCALABILITY 0\"' + - arguments: "-SaveToUserDir -NOSCREENMESSAGES -windowed -ResX=1280 -ResY=720 -ExecCmds=\\\"SCALABILITY 0\\\"" config: oslist: windows - ownsdlc: '1142420' + ownsdlc: "1142420" description: SafeMode - description_loc: - english: SafeMode - executable: Gobi\\Binaries\\Win64\\Gobi.exe + executable: "Gobi\\\\Binaries\\\\Win64\\\\Gobi.exe" type: option3 - - arguments: '-SaveToUserDir -TRSPixelStreamingOnly -NOSCREENMESSAGES' + - arguments: "-SaveToUserDir -TRSPixelStreamingOnly -NOSCREENMESSAGES" config: oslist: windows - ownsdlc: '1142420' + ownsdlc: "1142420" description: PixelStreaming Development - executable: Gobi\\Binaries\\Win64\\Gobi.exe + executable: "Gobi\\\\Binaries\\\\Win64\\\\Gobi.exe" type: option1 - - arguments: '-SaveToUserDir' + - arguments: "-SaveToUserDir" config: oslist: windows - ownsdlc: '1142420' + ownsdlc: "1142420" description: Development OnScreenMessages - executable: Gobi\\Binaries\\Win64\\Gobi.exe + executable: "Gobi\\\\Binaries\\\\Win64\\\\Gobi.exe" type: option1 - - arguments: '-NOSCREENMESSAGES' + - arguments: "-NOSCREENMESSAGES" config: betakey: usability oslist: windows - ownsdlc: '1142380' + ownsdlc: "1142380" description: Usability Test Only - description_loc: - english: Usability Test Only executable: Gobi-Win64-Test.exe type: option1 - config: - osarch: '64' + osarch: "64" oslist: windows description: Retail - description_loc: - english: Retail executable: Back4Blood.exe type: option1 - - arguments: '-ExecCmds=\"WebServices.Environment qua, mm.bucket TEST3\"' + - arguments: "-ExecCmds=\\\"WebServices.Environment qua, mm.bucket TEST3\\\"" config: betakey: method - osarch: '64' + osarch: "64" oslist: windows - ownsdlc: '1142380' - executable: Gobi\\Binaries\\Win64\\Gobi.exe + ownsdlc: "1142380" + executable: "Gobi\\\\Binaries\\\\Win64\\\\Gobi.exe" type: option1 - - arguments: '-ExecCmds=\"mm.bucket WBQA6\" -SaveToUserDir -NOSCREENMESSAGES' + - arguments: "-ExecCmds=\\\"mm.bucket WBQA6\\\" -SaveToUserDir -NOSCREENMESSAGES" config: betakey: hitdetection - osarch: '64' + osarch: "64" oslist: windows - ownsdlc: '1142380' + ownsdlc: "1142380" description: Hit Detection - Select This! - description_loc: - english: Hit Detection - Select This! - executable: Gobi\\Binaries\\Win64\\Gobi.exe + executable: "Gobi\\\\Binaries\\\\Win64\\\\Gobi.exe" type: none - config: - osarch: '64' + osarch: "64" oslist: windows - ownsdlc: '1142380' + ownsdlc: "1142380" description: Development without EasyAntiCheat - description_loc: - english: Development without EasyAntiCheat - executable: Gobi\\Binaries\\Win64\\Gobi.exe + executable: "Gobi\\\\Binaries\\\\Win64\\\\Gobi.exe" type: option1 - config: - osarch: '64' + osarch: "64" oslist: windows - ownsdlc: '1142380' + ownsdlc: "1142380" description: Test without EasyAntiCheat - description_loc: - english: Test without EasyAntiCheat - executable: Gobi\\Binaries\\Win64\\Gobi-Win64-Test.exe + executable: "Gobi\\\\Binaries\\\\Win64\\\\Gobi-Win64-Test.exe" type: option1 - config: - osarch: '64' + osarch: "64" oslist: windows - ownsdlc: '1142380' + ownsdlc: "1142380" description: Debug without EasyAntiCheat - description_loc: - english: Debug without EasyAntiCheat - executable: Gobi\\Binaries\\Win64\\Gobi-Win64-Debug.exe + executable: "Gobi\\\\Binaries\\\\Win64\\\\Gobi-Win64-Debug.exe" type: option1 - config: - osarch: '64' + osarch: "64" oslist: windows - ownsdlc: '1142380' + ownsdlc: "1142380" description: Retail without EasyAntiCheat - description_loc: - english: Retail without EasyAntiCheat - executable: Gobi\\Binaries\\Win64\\Back4Blood.exe + executable: "Gobi\\\\Binaries\\\\Win64\\\\Back4Blood.exe" type: option1 - config: - osarch: '64' + osarch: "64" oslist: windows - ownsdlc: '1142380' + ownsdlc: "1142380" description: Shipping without EasyAntiCheat - description_loc: - english: Shipping without EasyAntiCheat - executable: Gobi\\Binaries\\Win64\\Gobi-Win64-Shipping.exe + executable: "Gobi\\\\Binaries\\\\Win64\\\\Gobi-Win64-Shipping.exe" type: option1 nameLocalized: schinese: 喋血复仇 tchinese: 喋血復仇 -'924980': +"924980": installDir: Trials of Mana launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: \\Trials of Mana\\Binaries\\Win64\\Trials of Mana-Win64-Shipping.exe + executable: "\\\\Trials of Mana\\\\Binaries\\\\Win64\\\\Trials of Mana-Win64-Shipping.exe" type: default nameLocalized: english: Trials of Mana @@ -417300,62 +411379,62 @@ schinese: 圣剑传说3 TRIALS of MANA spanish: Trials of Mana tchinese: 聖劍傳說3 TRIALS of MANA -'92500': +"92500": installDir: PC Gamer Digital Edition launch: - executable: freakshow.exe -'925000': +"925000": installDir: Impossible VR Ninja launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ImpossibleVRNinja.exe type: vr -'925010': +"925010": installDir: PC_GSChronicles launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Ghosthip3.exe type: default - - arguments: '-setup' + - arguments: "-setup" config: - osarch: '64' + osarch: "64" oslist: windows executable: Ghosthip3.exe type: config -'925040': +"925040": installDir: Ero Date launch: - config: oslist: windows executable: Ero Date.exe type: default -'925050': +"925050": installDir: Crystal Path launch: - executable: CrystalPath.exe type: none -'925060': +"925060": installDir: Fiber Twig 2 launch: - executable: FiberTwigII.exe type: none -'925070': +"925070": installDir: Dark Asylum launch: - executable: DarkAsylumMysteryAdventure.exe type: none -'925090': +"925090": installDir: Sharknado VR launch: - config: oslist: windows executable: SharknadoVR.exe type: vr -'925120': +"925120": installDir: TianlaoSokoban launch: - config: @@ -417366,80 +411445,80 @@ oslist: macos executable: Game.app type: default -'925170': +"925170": installDir: DinoTrek launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Vive_RC5.exe type: vr -'925280': - installDir: Lot'zAmonsters +"925280": + installDir: "Lot'zAmonsters" launch: - config: oslist: windows executable: Lotzamonsters.exe type: default -'925290': +"925290": installDir: Endless Fighter launch: - config: oslist: windows executable: EndlessFighter.exe type: default -'925300': {} -'925330': +"925300": {} +"925330": installDir: Chronophobia launch: - config: oslist: windows executable: Chronophobia.exe type: default -'925340': - installDir: A Winter's Daydream +"925340": + installDir: "A Winter's Daydream" launch: - config: oslist: windows description: Launch - executable: A_Winter's_Daydream.exe + executable: "A_Winter's_Daydream.exe" type: default - config: oslist: linux description: Launch - executable: A_Winter's_Daydream.sh + executable: "A_Winter's_Daydream.sh" type: default - config: oslist: macos description: Launch - executable: A_Winter's_Daydream.app + executable: "A_Winter's_Daydream.app" type: default -'925360': +"925360": installDir: Ape Hit launch: - config: - osarch: '64' + osarch: "64" executable: DemolitionSimulator.exe type: vr -'925370': +"925370": installDir: Wizard Slime launch: - config: oslist: windows executable: Wizard Slime.exe type: default -'925440': +"925440": installDir: FloralAromaintheShrine launch: - config: oslist: windows executable: Game.exe type: default -'925460': +"925460": installDir: Vectronom launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Vectronom.exe type: default @@ -417447,60 +411526,60 @@ oslist: macos executable: Vectronom.app/Contents/MacOS/Vectronom type: default -'925470': +"925470": installDir: Endless Jade Sea -Midori no Umi- launch: - config: oslist: windows executable: ExHIBIT.exe type: none -'925490': +"925490": installDir: Test your knowledge Dogs launch: - config: oslist: windows executable: Test your knowledge - Dogs.exe type: default -'925520': +"925520": installDir: Welcome To Bummertown launch: - config: oslist: windows executable: Welcome to Bummertown.exe type: none -'925540': +"925540": installDir: Lifespan 5seconds launch: - executable: player.exe type: none -'925550': +"925550": installDir: Cross Racing Championship launch: - executable: crc.exe type: default -'925560': +"925560": installDir: Bot Gaiden launch: - config: oslist: windows executable: BotGaiden.exe type: default -'925570': +"925570": installDir: The Uncertain - Light At The End launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: splash.exe type: none -'925600': +"925600": installDir: Afterlifes launch: - config: oslist: windows executable: Afterlifes.exe type: default -'925610': +"925610": installDir: Legend of Assassin Siberia launch: - config: @@ -417513,10 +411592,10 @@ type: none - config: oslist: macos - executable: Legend of Assassin - Siberia.app\\Contents\\MacOS\\Legend of Assassin - Siberia + executable: "Legend of Assassin - Siberia.app\\\\Contents\\\\MacOS\\\\Legend of Assassin - Siberia" type: none -'925630': {} -'925640': +"925630": {} +"925640": installDir: Atlantis launch: - config: @@ -417529,7 +411608,7 @@ description: Древние времена игра executable: Drevn.exe type: none -'925670': +"925670": installDir: Dungeon Kitty launch: - config: @@ -417540,35 +411619,35 @@ oslist: macos executable: DKMAC.app type: default -'925690': +"925690": installDir: Witch Blood launch: - config: oslist: windows executable: ProjectWitch.exe type: default -'925700': +"925700": installDir: Evening Star launch: - config: oslist: windows executable: Evening Star.exe type: default -'925810': +"925810": installDir: Ican launch: - config: oslist: windows executable: I_can.exe type: default -'925880': +"925880": installDir: Seraphims of Astraeus launch: - config: oslist: windows executable: Seraphims of Astraeus.exe type: default -'925900': +"925900": installDir: MGC launch: - config: @@ -417579,45 +411658,45 @@ oslist: macos executable: game.app/Contents/MacOS/game type: none -'925910': +"925910": installDir: MMMmmm... Cake! launch: - executable: Mmmm.... Cake!.exe type: default -'925930': +"925930": installDir: Myst III Exile launch: - - arguments: '-c myst3.ini myst3-win' + - arguments: "-c myst3.ini myst3-win" config: oslist: windows description: English executable: residualvm.exe type: none - - arguments: '-c myst3.ini myst3-win-fr' + - arguments: "-c myst3.ini myst3-win-fr" config: oslist: windows description: Français (French) executable: residualvm.exe type: none - - arguments: '-c myst3.ini myst3-win-de' + - arguments: "-c myst3.ini myst3-win-de" config: oslist: windows description: Deutsch (German) executable: residualvm.exe type: none - - arguments: '-c myst3.ini myst3-win-nl' + - arguments: "-c myst3.ini myst3-win-nl" config: oslist: windows description: Dutch (Netherlands) executable: residualvm.exe type: none - - arguments: '-c myst3.ini myst3-win-it' + - arguments: "-c myst3.ini myst3-win-it" config: oslist: windows description: Italiano (Italian) executable: residualvm.exe type: none - - arguments: '-c myst3.ini myst3-win-es' + - arguments: "-c myst3.ini myst3-win-es" config: oslist: windows description: Español (Spanish) @@ -417627,7 +411706,7 @@ oslist: macos executable: exile.app type: none - - arguments: '-c myst3.ini myst3-win' + - arguments: "-c myst3.ini myst3-win" config: oslist: windows description: English @@ -417668,80 +411747,80 @@ description: Español (Spanish) executable: exile.app type: none -'925940': +"925940": installDir: Myst IV Revelation launch: - config: oslist: windows - executable: bin\\Myst4.exe + executable: "bin\\\\Myst4.exe" type: none - config: oslist: macos executable: Myst IV Revelation.app type: default -'925950': +"925950": installDir: Here Comes Niko launch: - executable: Here Comes Niko!.exe type: default -'925980': {} -'92600': +"925980": {} +"92600": installDir: Xotic launch: - - arguments: '' - description: '' + - arguments: "" + description: "" executable: Xotic.exe - workingdir: '' -'926010': + workingdir: "" +"926010": installDir: Operation Lone Wolf launch: - config: oslist: windows executable: Operation Lone Wolf.exe type: none -'926070': - installDir: Fear for Sale City of the Past Collector's Edition +"926070": + installDir: "Fear for Sale City of the Past Collector's Edition" launch: - config: oslist: windows executable: FearForSale_CityOfThePast_CE.exe type: default -'926090': - installDir: Reflections of Life Tree of Dreams Collector's Edition +"926090": + installDir: "Reflections of Life Tree of Dreams Collector's Edition" launch: - config: oslist: windows executable: RoL_TreeOfDreamsCE.exe type: default -'926100': - installDir: Mystery of the Ancients Curse of the Black Water Collector's Edition +"926100": + installDir: "Mystery of the Ancients Curse of the Black Water Collector's Edition" launch: - config: oslist: windows executable: MysteryoftheAncients_CurseoftheBlackWater_CE.exe type: default -'926110': - installDir: Death and Betrayal in Romania A Dana Knightstone Novel Collector's Edition +"926110": + installDir: "Death and Betrayal in Romania A Dana Knightstone Novel Collector's Edition" launch: - config: oslist: windows executable: DeathandBetrayalinRomania_CE.exe type: default -'926120': - installDir: Mystery Trackers Black Isle Collector's Edition +"926120": + installDir: "Mystery Trackers Black Isle Collector's Edition" launch: - config: oslist: windows executable: MysteryTrackers_BlackIsle_CE.exe type: default -'926130': - installDir: Living Legends Wrath of the Beast Collector's Edition +"926130": + installDir: "Living Legends Wrath of the Beast Collector's Edition" launch: - config: oslist: windows executable: LivingLegends_WrathOfTheBeast_CE.exe type: default -'926140': +"926140": installDir: CHANGE A Homeless Survival Experience launch: - config: @@ -417750,19 +411829,19 @@ type: default - config: oslist: macos - executable: Contents\\MacOS\\CHANGE + executable: "Contents\\\\MacOS\\\\CHANGE" type: default - config: oslist: linux executable: CHANGE.x86_64 type: default nameLocalized: - german: 'CHANGE: Überleben in der Obdachlosigkeit' - russian: 'CHANGE: попробуйте выжить на улице' + german: "CHANGE: Überleben in der Obdachlosigkeit" + russian: "CHANGE: попробуйте выжить на улице" schinese: CHANGE:无家可归的生存体验 - spanish: 'CHANGE: Una Experiencia De Supervivencia En La Calle' - turkish: 'CHANGE: Evsiz Biri Olarak Hayatta Kalma Deneyimi' -'926170': + spanish: "CHANGE: Una Experiencia De Supervivencia En La Calle" + turkish: "CHANGE: Evsiz Biri Olarak Hayatta Kalma Deneyimi" +"926170": installDir: Achromatic launch: - config: @@ -417773,62 +411852,62 @@ oslist: macos executable: achromatic.app type: default -'926180': +"926180": installDir: Bubsy Paws on Fire! launch: - config: oslist: windows - description: 'Play Bubsy: Paws on Fire!' + description: "Play Bubsy: Paws on Fire!" executable: Bubsy Paws On Fire!.exe type: default - config: oslist: macos - description: 'Play Bubsy: Paws on Fire!' + description: "Play Bubsy: Paws on Fire!" executable: BubsyPOF.app type: default -'926210': +"926210": installDir: Incoming Evil launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: IncomingEvil.exe type: default -'926220': +"926220": installDir: LA_Deadzone launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: FreeroamLADeadzone.exe type: vr -'926240': +"926240": installDir: PsyBurst launch: - config: oslist: windows executable: Psyburst.exe type: default -'926250': - installDir: Mirror Angel's Paradise +"926250": + installDir: "Mirror Angel's Paradise" launch: - config: oslist: windows executable: MirrorAngelsParadise.exe type: default -'926310': +"926310": installDir: LoveStoryOfSparrow launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: GameLauncher.exe type: default - config: oslist: macos - executable: GameLauncher.app\\Contents\\MacOS\\GameLauncher + executable: "GameLauncher.app\\\\Contents\\\\MacOS\\\\GameLauncher" type: default -'926340': +"926340": installDir: Romans Christmas launch: - config: @@ -417840,96 +411919,96 @@ executable: Romans_Christmas.app type: default nameLocalized: - koreana: 로만의 크리스마스 / Roman's Christmas + koreana: "로만의 크리스마스 / Roman's Christmas" schinese: 罗曼圣诞探案集 tchinese: 羅曼聖誕探案集 -'926350': +"926350": installDir: ALIEN FIELD launch: - executable: AlienField.exe type: none -'926370': +"926370": installDir: Home Security launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: Home Security\\Home_Security.exe + executable: "Home Security\\\\Home_Security.exe" type: default -'926390': +"926390": installDir: Infected Shelter launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: InfectedShelter.exe type: none -'926400': +"926400": installDir: Scatteria launch: - config: oslist: windows executable: Scatteria.exe type: default -'926410': +"926410": installDir: Rabbit of destiny launch: - config: oslist: windows executable: nw.exe type: default -'926420': +"926420": installDir: MoRE_Christmas launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: MoRE_Christmas.exe type: none -'926440': +"926440": installDir: The Bloobles and the Quest for Chocolate launch: - config: oslist: windows executable: The Bloobles.exe type: none -'926450': +"926450": installDir: Thibalryn launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: Thibalryn\\Thibalryn.exe + executable: "Thibalryn\\\\Thibalryn.exe" type: default - config: - osarch: '64' + osarch: "64" oslist: linux - executable: Thibalryn\\Thibalryn.x86_64 + executable: "Thibalryn\\\\Thibalryn.x86_64" type: default - config: oslist: macos - executable: Thibalryn\\Thibalryn.app + executable: "Thibalryn\\\\Thibalryn.app" type: default -'926470': +"926470": installDir: Kolkhoz The Red Wedge launch: - executable: game.exe type: none -'926480': +"926480": installDir: TheSecretOfPuffinCove launch: - config: oslist: windows executable: TheSecretOfPuffinCove.exe type: vr -'926490': +"926490": installDir: The Legend Of Vraz launch: - config: oslist: windows - executable: \\The Legend of Vraz.exe + executable: "\\\\The Legend of Vraz.exe" type: default -'926520': +"926520": installDir: Love Letter launch: - config: @@ -417940,23 +412019,23 @@ oslist: macos executable: LoveLetter.app type: default -'926540': +"926540": installDir: Prime & Load launch: - config: oslist: windows executable: WaT.exe type: default -'926580': +"926580": installDir: Broken Lines launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Broken Lines.exe type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: Broken Lines.x86_64 type: none @@ -417964,8 +412043,8 @@ oslist: macos executable: Broken Lines.app type: none -'926600': {} -'926610': +"926600": {} +"926610": installDir: Superior Wizards launch: - config: @@ -417980,23 +412059,23 @@ oslist: linux executable: SuperiorWizards.x86_64 type: default -'926720': +"926720": installDir: KyivLenovoExplorer launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: KyivLenovoExplorer.exe type: vr -'926730': +"926730": installDir: Munchkin launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Munchkin.exe type: default -'926810': +"926810": installDir: Dark Places launch: - config: @@ -418007,17 +412086,17 @@ - config: oslist: windows description: DARK PLACES - EPISODE II - executable: \\Episode 2\\Launcher.exe + executable: "\\\\Episode 2\\\\Launcher.exe" type: option2 - workingdir: \\Episode 2 -'926820': + workingdir: "\\\\Episode 2" +"926820": installDir: Eternal space battles launch: - config: oslist: windows executable: nw.exe type: none -'926860': +"926860": installDir: Bloody Rally Show launch: - config: @@ -418025,7 +412104,7 @@ executable: Bloody Rally Show.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: BloodyRallyShow type: default @@ -418033,14 +412112,14 @@ oslist: macos executable: BloodyRallyShow.app type: default -'926870': +"926870": installDir: Twin Synth launch: - config: oslist: windows executable: Twin Synth.exe type: none -'926990': +"926990": installDir: WolfQuest Anniversary Edition launch: - config: @@ -418052,78 +412131,78 @@ executable: WolfQuestAE.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: WolfQuestAE.x86_64 type: default -'92700': +"92700": installDir: Shadow Harvest launch: - executable: sh.exe -'927050': +"927050": installDir: Burning Instinct launch: - config: oslist: windows executable: BurningInstinct.exe type: default -'927080': +"927080": installDir: Space Fox Kimi launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows executable: Space Fox Kimi.exe type: default - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows - ownsdlc: '944600' + ownsdlc: "944600" description: Space Fox Kimi - The Interstellar Fortress - executable: \\Interstellar Fortress\\Interstellar Fortress.exe + executable: "\\\\Interstellar Fortress\\\\Interstellar Fortress.exe" type: option2 - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows - ownsdlc: '965520' + ownsdlc: "965520" description: Space Fox Kimi - The Battle of Mochi Prime - executable: \\Mochi Prime\\MochiPrime.exe + executable: "\\\\Mochi Prime\\\\MochiPrime.exe" type: option2 - config: oslist: windows - ownsdlc: '1006130' + ownsdlc: "1006130" description: Space Fox Kimi - A Very Kimi Christmas - executable: \\Kimi Christmas\\KimiChristmas.exe + executable: "\\\\Kimi Christmas\\\\KimiChristmas.exe" type: option2 -'927120': +"927120": installDir: Quantum Covenant launch: - config: oslist: windows executable: quantum_covenant.exe type: default -'927130': +"927130": installDir: Legend of CaoCao Tactics launch: - - arguments: 'ROTK.exe --nxapp=nxsteam --ticket={gameAuthTicket} --nx:title=\"Legend of CaoCao Tactics\"' - executable: nxsteam\\nxsteam.exe + - arguments: "ROTK.exe --nxapp=nxsteam --ticket={gameAuthTicket} --nx:title=\\\"Legend of CaoCao Tactics\\\"" + executable: "nxsteam\\\\nxsteam.exe" type: default - - arguments: 'ROTK.exe --nxapp=nxsteam --ticket={gameAuthTicket} --nx:title=\"Legend of CaoCao Tactics\"' + - arguments: "ROTK.exe --nxapp=nxsteam --ticket={gameAuthTicket} --nx:title=\\\"Legend of CaoCao Tactics\\\"" config: betakey: stage - executable: nxsteam\\nxsteam.exe + executable: "nxsteam\\\\nxsteam.exe" type: default - - arguments: 'ROTK.exe --nxapp=nxsteam --ticket={gameAuthTicket} --nx:title=\"Legend of CaoCao Tactics\"' + - arguments: "ROTK.exe --nxapp=nxsteam --ticket={gameAuthTicket} --nx:title=\\\"Legend of CaoCao Tactics\\\"" config: betakey: live - executable: nxsteam\\nxsteam.exe + executable: "nxsteam\\\\nxsteam.exe" type: default - - arguments: 'ROTK.exe --nxapp=nxsteam --ticket={gameAuthTicket} --nx:title=\"Legend of CaoCao Tactics\"' + - arguments: "ROTK.exe --nxapp=nxsteam --ticket={gameAuthTicket} --nx:title=\\\"Legend of CaoCao Tactics\\\"" config: betakey: develop - executable: nxsteam\\nxsteam.exe + executable: "nxsteam\\\\nxsteam.exe" type: default -'927150': +"927150": installDir: OrdinaryFamily launch: - config: @@ -418133,181 +412212,148 @@ nameLocalized: english: OrdinaryFamily schinese: 普通家庭 -'927190': +"927190": installDir: Doll of Resurrection launch: - config: oslist: windows executable: RoofGirl.exe type: default -'927250': +"927250": installDir: Bladed launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: chopghost.exe type: default nameLocalized: schinese: Bladed Fury|幽林怪谈 -'927270': +"927270": installDir: AccountingPlus launch: - config: oslist: windows executable: AccountingPlus.exe type: vr -'927310': - installDir: Valencia SagaSophia's rebirth +"927310": + installDir: "Valencia SagaSophia's rebirth" launch: - config: oslist: windows description: Chinese Version executable: game.exe type: default -'927320': {} -'927350': +"927320": {} +"927350": installDir: Hood launch: - - arguments: ' -online -NoDebugExecBindings -EAC -tier=live' + - arguments: " -online -NoDebugExecBindings -EAC -tier=live" config: - osarch: '64' + osarch: "64" oslist: windows executable: Launch_Hood.exe type: none - - arguments: ' -online -log -NoDebugExecBindings -session_type=Citadel -EAC' + - arguments: " -online -log -NoDebugExecBindings -session_type=Citadel -EAC" config: - betakey: >- - agerating,classicheist,focus_hw_test,focusqaweekly,focusqaweekly2,miscplaytest,miscplaytest2,playtests,season2,focuscapture - osarch: '64' + betakey: "agerating,classicheist,focus_hw_test,focusqaweekly,focusqaweekly2,miscplaytest,miscplaytest2,playtests,season2,focuscapture" + osarch: "64" oslist: windows description: M1 - CITADEL - description_loc: - english: M1 - CITADEL executable: Launch_Hood.exe type: option1 - - arguments: '-online -log -NoDebugExecBindings -session_type=Marshland -EAC' + - arguments: "-online -log -NoDebugExecBindings -session_type=Marshland -EAC" config: - betakey: >- - agerating,classicheist,focus_hw_test,focusqaweekly,focusqaweekly2,miscplaytest,miscplaytest2,playtests,season2,focuscapture - osarch: '64' + betakey: "agerating,classicheist,focus_hw_test,focusqaweekly,focusqaweekly2,miscplaytest,miscplaytest2,playtests,season2,focuscapture" + osarch: "64" oslist: windows description: M2 - MARSHLAND - description_loc: - english: M2 - MARSHLAND executable: Launch_Hood.exe type: option1 - - arguments: '-online -log -NoDebugExecBindings -session_type=Coastal -EAC' + - arguments: "-online -log -NoDebugExecBindings -session_type=Coastal -EAC" config: - betakey: >- - agerating,classicheist,focus_hw_test,focusqaweekly,focusqaweekly2,miscplaytest,miscplaytest2,playtests,season2,focuscapture - osarch: '64' + betakey: "agerating,classicheist,focus_hw_test,focusqaweekly,focusqaweekly2,miscplaytest,miscplaytest2,playtests,season2,focuscapture" + osarch: "64" oslist: windows description: M3 - COASTAL - description_loc: - english: M3 - COASTAL executable: Launch_Hood.exe type: option1 - - arguments: '-online -log -NoDebugExecBindings -session_type=Canyon -EAC' + - arguments: "-online -log -NoDebugExecBindings -session_type=Canyon -EAC" config: - betakey: >- - agerating,classicheist,focus_hw_test,focusqaweekly,focusqaweekly2,miscplaytest,miscplaytest2,playtests,season2,focuscapture - osarch: '64' + betakey: "agerating,classicheist,focus_hw_test,focusqaweekly,focusqaweekly2,miscplaytest,miscplaytest2,playtests,season2,focuscapture" + osarch: "64" oslist: windows description: M4 - OUTPOST - description_loc: - english: M4 - OUTPOST executable: Launch_Hood.exe type: option1 - - arguments: '-online -log -NoDebugExecBindings -session_type=Graveyard -EAC' + - arguments: "-online -log -NoDebugExecBindings -session_type=Graveyard -EAC" config: - betakey: >- - agerating,classicheist,focus_hw_test,focusqaweekly,focusqaweekly2,miscplaytest,miscplaytest2,playtests,season2,focuscapture - osarch: '64' + betakey: "agerating,classicheist,focus_hw_test,focusqaweekly,focusqaweekly2,miscplaytest,miscplaytest2,playtests,season2,focuscapture" + osarch: "64" oslist: windows description: M5 - GRAVEYARD - description_loc: - english: M5 - GRAVEYARD executable: Launch_Hood.exe type: option1 - - arguments: '-online -log -NoDebugExecBindings -session_type=Mountain -EAC' + - arguments: "-online -log -NoDebugExecBindings -session_type=Mountain -EAC" config: - betakey: >- - agerating,classicheist,focus_hw_test,focusqaweekly,focusqaweekly2,miscplaytest,miscplaytest2,playtests,season2,focuscapture - osarch: '64' + betakey: "agerating,classicheist,focus_hw_test,focusqaweekly,focusqaweekly2,miscplaytest,miscplaytest2,playtests,season2,focuscapture" + osarch: "64" oslist: windows description: M6 - MOUNTAIN - description_loc: - english: M6 - MOUNTAIN executable: Launch_Hood.exe type: option1 - - arguments: '-online -log -NoDebugExecBindings -session_type=CombatGym' + - arguments: "-online -log -NoDebugExecBindings -session_type=CombatGym" config: - betakey: 'agerating,classicheist,focus_hw_test,miscplaytest,miscplaytest2,playtests,season1' - osarch: '64' + betakey: "agerating,classicheist,focus_hw_test,miscplaytest,miscplaytest2,playtests,season1" + osarch: "64" oslist: windows description: COMBAT GYM - description_loc: - english: COMBAT GYM - executable: Hood\\Binaries\\Win64\\Hood.exe + executable: "Hood\\\\Binaries\\\\Win64\\\\Hood.exe" type: option1 - - arguments: '-online -log -NoDebugExecBindings -session_type=AIPlaytest' + - arguments: "-online -log -NoDebugExecBindings -session_type=AIPlaytest" config: - betakey: 'agerating,classicheist,focus_hw_test,miscplaytest,miscplaytest2,playtests,season1' - osarch: '64' + betakey: "agerating,classicheist,focus_hw_test,miscplaytest,miscplaytest2,playtests,season1" + osarch: "64" oslist: windows description: AI Gym - description_loc: - english: AI Gym - executable: Hood\\Binaries\\Win64\\Hood.exe + executable: "Hood\\\\Binaries\\\\Win64\\\\Hood.exe" type: option1 - - arguments: ' -online -log -NoDebugExecBindings' + - arguments: " -online -log -NoDebugExecBindings" config: - betakey: >- - agerating,classicheist,focus_hw_test,focusqaweekly,focusqaweekly2,miscplaytest,miscplaytest2,playtests,season2,focuscapture,focuscapture2 - osarch: '64' + betakey: "agerating,classicheist,focus_hw_test,focusqaweekly,focusqaweekly2,miscplaytest,miscplaytest2,playtests,season2,focuscapture,focuscapture2" + osarch: "64" oslist: windows description: No EAC - description_loc: - english: No EAC - executable: Hood\\Binaries\\Win64\\Hood.exe + executable: "Hood\\\\Binaries\\\\Win64\\\\Hood.exe" type: option1 - - arguments: '-online -log -NoDebugExecBindings -EAC' + - arguments: "-online -log -NoDebugExecBindings -EAC" config: - betakey: >- - agerating,classicheist,focus_hw_test,focusqaweekly,focusqaweekly2,miscplaytest,miscplaytest2,playtests,season2,focuscapture,fanatic_games - osarch: '64' + betakey: "agerating,classicheist,focus_hw_test,focusqaweekly,focusqaweekly2,miscplaytest,miscplaytest2,playtests,season2,focuscapture,fanatic_games" + osarch: "64" oslist: windows description: EAC - description_loc: - english: EAC executable: Launch_Hood.exe type: option1 - - arguments: '-online -log -NoDebugExecBindings -session_type=ClassicHeist' + - arguments: "-online -log -NoDebugExecBindings -session_type=ClassicHeist" config: - betakey: >- - classicheist,miscplaytest,miscplaytest2,playtests,season1,focuscapture,focusqaweekly,focusqaweekly2,focus_0204playtest - osarch: '64' + betakey: "classicheist,miscplaytest,miscplaytest2,playtests,season1,focuscapture,focusqaweekly,focusqaweekly2,focus_0204playtest" + osarch: "64" oslist: windows description: Classic Heist - description_loc: - english: Classic Heist - executable: Hood\\Binaries\\Win64\\Hood.exe + executable: "Hood\\\\Binaries\\\\Win64\\\\Hood.exe" type: option1 - - arguments: '-online -log -NoDebugExecBindings -session_type=GoldRush' + - arguments: "-online -log -NoDebugExecBindings -session_type=GoldRush" config: - betakey: 'focusqaweekly,focusqaweekly2,miscplaytest,miscplaytest2,playtests,season2' - osarch: '64' + betakey: "focusqaweekly,focusqaweekly2,miscplaytest,miscplaytest2,playtests,season2" + osarch: "64" oslist: windows description: Gold Rush - description_loc: - english: Gold Rush - executable: Hood\\Binaries\\Win64\\Hood.exe + executable: "Hood\\\\Binaries\\\\Win64\\\\Hood.exe" type: option1 nameLocalized: schinese: 绿林侠盗:亡命之徒与传奇 -'927360': {} -'927370': +"927360": {} +"927370": installDir: DoC God Mode Edition launch: - config: @@ -418322,11 +412368,11 @@ oslist: linux executable: DoCGodMode.x86 type: default -'927380': +"927380": installDir: Yakuza Kiwami 2 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: YakuzaKiwami2.exe type: default @@ -418346,12 +412392,12 @@ betakey: test_debug executable: lexus2.exe type: none -'927580': +"927580": installDir: Smoker The Car Game launch: - executable: SmokersCar.exe type: default -'927670': +"927670": installDir: Extreme Painting Puzzle launch: - config: @@ -418366,16 +412412,16 @@ oslist: linux executable: EPP.x86_64 type: default -'927760': {} -'927810': {} -'927840': +"927760": {} +"927810": {} +"927840": installDir: Clinically Dead launch: - config: oslist: windows executable: ClinicallyDead.exe type: none -'927850': +"927850": installDir: Corrupt launch: - config: @@ -418384,16 +412430,16 @@ type: default - config: oslist: macos - executable: Corrupt.app\\Contents\\MacOS\\Corrupt + executable: "Corrupt.app\\\\Contents\\\\MacOS\\\\Corrupt" type: default -'927860': +"927860": installDir: Project Skylab 2 launch: - config: oslist: windows executable: ProjectSkylab2.exe type: default -'927890': +"927890": installDir: HentaiGirlLinda launch: - config: @@ -418404,21 +412450,21 @@ oslist: macos executable: HentaiGirlLinda.app type: default -'927930': +"927930": installDir: CRAKEN launch: - config: oslist: windows executable: Craken.exe type: default -'927970': +"927970": installDir: ForzeBreak launch: - config: oslist: windows executable: ForzeBreak_steam_8.23.2018.exe type: default -'927990': +"927990": installDir: A Game About launch: - config: @@ -418429,7 +412475,7 @@ oslist: macos executable: AGameAbout.app type: none -'92800': +"92800": installDir: SpaceChem launch: - config: @@ -418440,40 +412486,40 @@ executable: SpaceChem.app - config: oslist: linux - executable: ./SpaceChem + executable: "./SpaceChem" type: none -'928000': +"928000": installDir: Solace State launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Solace State.exe type: default nameLocalized: - brazilian: 'Solace State: Histórias ciberpunk emocionais' - french: 'Solace State: Histoires émouvantes de cyberpunk' - german: 'Solace State: Emotionale Cyberpunkgeschichten' - italian: 'Solace State: emozionanti storie cyberpunk' + brazilian: "Solace State: Histórias ciberpunk emocionais" + french: "Solace State: Histoires émouvantes de cyberpunk" + german: "Solace State: Emotionale Cyberpunkgeschichten" + italian: "Solace State: emozionanti storie cyberpunk" japanese: ソレイス・ステイト:情動のサイバーパンク物語 - koreana: '솔라스 스테이트: 감성 사이버펑크 스토리' - latam: 'Solace State: Historias emotivas de ciberpunk' - russian: 'Solace State: Киберпанк-новелла' - schinese: '迷城寻心:赛博朋克故事' - tchinese: '迷城尋心:賽博朋克故事' -'928060': + koreana: "솔라스 스테이트: 감성 사이버펑크 스토리" + latam: "Solace State: Historias emotivas de ciberpunk" + russian: "Solace State: Киберпанк-новелла" + schinese: "迷城寻心:赛博朋克故事" + tchinese: "迷城尋心:賽博朋克故事" +"928060": installDir: Hentai Lady launch: - executable: Hentai Lady.exe type: default -'928070': +"928070": installDir: MARD launch: - config: oslist: windows executable: MARD.exe type: default -'928130': +"928130": installDir: Master of Rogues - The Seven Artifacts launch: - config: @@ -418484,38 +412530,38 @@ oslist: linux executable: Seven.x86 type: default -'928140': +"928140": installDir: Puzzles for smart Dogs launch: - config: oslist: windows executable: Puzzles for smart - Dogs.exe type: default -'928150': {} -'928160': +"928150": {} +"928160": installDir: Prototype TD launch: - config: oslist: windows executable: TD.exe type: none -'928170': +"928170": installDir: Blazing Core launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: EchoClient.exe type: default -'928180': +"928180": installDir: Shop manager video game tycoon launch: - config: oslist: windows executable: shopmanager.exe type: default -'928200': {} -'928210': +"928200": {} +"928210": installDir: Snake VR launch: - config: @@ -418524,23 +412570,23 @@ type: default - executable: game.exe type: vr -'928230': +"928230": installDir: 3D Defender launch: - config: oslist: windows executable: Defender.exe type: default -'928250': {} -'928300': +"928250": {} +"928300": installDir: Visionarium launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: visionarium.exe type: vr -'928350': +"928350": installDir: Steven the Sperm launch: - config: @@ -418551,31 +412597,31 @@ oslist: macos executable: Steven the Sperm.app type: default -'928370': +"928370": installDir: Axe Throw VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Axe Throw VR.exe type: vr -'928390': +"928390": installDir: R-Type_Dimensions launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: R-Type_Dimensions.exe type: default -'928410': +"928410": installDir: Zombies in the dark launch: - config: oslist: windows executable: ZiD.exe type: default -'928420': {} -'928440': +"928420": {} +"928440": installDir: Azure Reflections launch: - config: @@ -418583,7 +412629,7 @@ description: Default game launch. executable: AzureReflections.exe type: default - - arguments: '-ResetSettings' + - arguments: "-ResetSettings" config: oslist: windows description: Reset the key configuration information and other settings and start the game. @@ -418593,7 +412639,7 @@ japanese: 舞華蒼魔鏡 schinese: Azure Reflections / 舞華蒼魔鏡 tchinese: Azure Reflections / 舞華蒼魔鏡 -'928460': +"928460": installDir: The Love Boat - Second Chances launch: - config: @@ -418602,17 +412648,17 @@ type: none - config: oslist: macos - executable: love.app\\Contents\\MacOS\\love + executable: "love.app\\\\Contents\\\\MacOS\\\\love" type: none -'928490': {} -'928520': +"928490": {} +"928520": installDir: Eve Story of HT launch: - config: oslist: windows executable: Eve Story of HT_1.13.exe type: none -'928600': +"928600": installDir: F1 2019 launch: - config: @@ -418625,16 +412671,16 @@ description: F1 2019 (DirectX 11) executable: F1_2019.exe type: option2 -'928610': +"928610": installDir: aMAZE ABC launch: - config: oslist: windows executable: aMAZE ABC.exe type: default -'928620': {} -'928630': {} -'928660': +"928620": {} +"928630": {} +"928660": installDir: Count Logica launch: - config: @@ -418649,7 +412695,7 @@ oslist: macos executable: CountLogica.app type: none -'928670': +"928670": installDir: Kids of Hellas Back to Olympus launch: - config: @@ -418660,24 +412706,24 @@ oslist: macos executable: KidsOfHellas_CE.app type: none -'928680': +"928680": installDir: Chicken in the Darkness launch: - config: oslist: windows executable: Chicken in the Darkness.exe type: default -'928690': +"928690": installDir: hakennwonigire launch: - config: oslist: windows executable: game.exe type: default -'928700': {} -'928780': {} -'928790': {} -'928830': +"928700": {} +"928780": {} +"928790": {} +"928830": installDir: Choice of Broadsides HMS Foraker launch: - config: @@ -418692,44 +412738,44 @@ oslist: linux executable: ChoiceOfBroadsidesHMSForaker type: none -'928840': +"928840": installDir: Cybarian The Time Travelling Warrior launch: - config: oslist: windows executable: Cybarian.exe type: none -'928880': +"928880": installDir: FlyWings 2018 Flight Simulator launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: FlyWings 2018 Flight Simulator.exe type: default - config: oslist: macos - executable: FlyWings 2018 Flight Simulator.app\\Contents\\MacOS\\FlyWings 2018 Flight Simulator + executable: "FlyWings 2018 Flight Simulator.app\\\\Contents\\\\MacOS\\\\FlyWings 2018 Flight Simulator" type: default -'928940': +"928940": installDir: Pirate Island Rescue launch: - config: oslist: windows executable: nw.exe type: default -'928960': +"928960": installDir: Godfall launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Aperion.exe type: default nameLocalized: schinese: 众神陨落 tchinese: 众神陨落 -'928970': +"928970": installDir: Lost Frontier launch: - config: @@ -418740,32 +412786,32 @@ oslist: macos executable: Lost Frontier.app/Contents/MacOS/Lost Frontier type: none -'928990': +"928990": installDir: Undungeon launch: - config: oslist: windows executable: Undungeon.exe type: default -'92900': +"92900": installDir: Agricultural Simulator 2011 launch: - executable: farm.exe -'929000': +"929000": installDir: Aesthetic World launch: - config: oslist: windows executable: AW.exe type: default -'929010': +"929010": installDir: Swag and Sorcery launch: - config: oslist: windows executable: Swag and Sorcery.exe type: default -'929020': +"929020": installDir: Nuclear Powered Toaster launch: - config: @@ -418780,7 +412826,7 @@ oslist: linux executable: NuclearPoweredToaster type: none -'929030': +"929030": installDir: The Twelve Trials launch: - config: @@ -418795,22 +412841,22 @@ oslist: linux executable: TheTwelveTrials type: none -'929060': +"929060": installDir: Road to Eden launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: RoadToEden424.exe type: default -'929080': +"929080": installDir: Be hate Free Interactive launch: - config: oslist: windows executable: nw.exe type: none -'929120': +"929120": installDir: Hop Step Sing! Nozokanaide Naked Heart (HQ Edition) launch: - executable: HSS_PV4.exe @@ -418819,7 +412865,7 @@ japanese: Hop Step Sing!『覗かないでNAKEDハート』 schinese: Hop Step Sing! “不要偷看哦NAKED HEART” tchinese: Hop Step Sing!『不要偷看哦NAKED HEART』 -'929140': +"929140": installDir: Tank Royale launch: - config: @@ -418828,30 +412874,30 @@ type: default - config: oslist: macos - executable: TankRoyale.app\\Contents\\MacOS\\TankRoyale + executable: "TankRoyale.app\\\\Contents\\\\MacOS\\\\TankRoyale" type: default -'929150': +"929150": installDir: Final Islands launch: - config: oslist: windows executable: game.exe type: none -'929170': +"929170": installDir: Innocent Forest The Bird of Light launch: - config: oslist: windows executable: InnocentForest.exe type: vr -'929180': +"929180": installDir: Innocent Forest 2 The Bed in the Sky launch: - config: oslist: windows executable: InnocentForest2.exe type: vr -'929200': +"929200": installDir: Tunshi Kongming Legends launch: - config: @@ -418859,7 +412905,7 @@ description: lunch app executable: game.exe type: none -'929210': +"929210": installDir: CrazyDriving launch: - config: @@ -418867,54 +412913,54 @@ description: Launch executable: CrazyDriving.exe type: none -'929230': +"929230": installDir: Raptor Cretaceous Island launch: - config: - osarch: '64' + osarch: "64" oslist: windows - description: 'Raptor: Cretaceous Island' + description: "Raptor: Cretaceous Island" executable: RaptorCI.exe type: vr -'929280': +"929280": installDir: Tiska Buska launch: - config: oslist: windows executable: TiskaBuska.exe type: none -'929290': +"929290": installDir: stripBreakerHG launch: - executable: nw.exe type: none -'929300': +"929300": installDir: chromaSHG launch: - executable: nw.exe type: none -'929310': +"929310": installDir: kamasutraConnectHentaiGirls launch: - config: oslist: windows executable: nw.exe type: none -'929320': +"929320": installDir: RHEM II SE The Cave launch: - config: oslist: windows executable: RhemIISE.exe type: default -'929330': +"929330": installDir: DefendingCamelot launch: - config: oslist: windows executable: DefendingCamelot.exe type: default -'929400': +"929400": installDir: Mahjong Magic Journey 3 launch: - config: @@ -418925,7 +412971,7 @@ oslist: macos executable: Mahjong Magic Journey 3.app type: default -'929410': +"929410": installDir: Christmas Mahjong 2 launch: - config: @@ -418936,7 +412982,7 @@ oslist: macos executable: Mahjong Christmas 2.app type: default -'929420': +"929420": installDir: Sakura Day 2 Mahjong launch: - config: @@ -418947,7 +412993,7 @@ oslist: macos executable: Sakura Day 2 Mahjong.app type: default -'929430': +"929430": installDir: Mahjong Magic Journey 2 launch: - config: @@ -418958,7 +413004,7 @@ oslist: macos executable: Mahjong Magic Journey 2.app type: default -'929440': +"929440": installDir: Christmas Mahjong launch: - config: @@ -418969,70 +413015,70 @@ oslist: macos executable: Christmas mahjong.app type: default -'929450': +"929450": installDir: Sky Brawl launch: - config: oslist: windows executable: SkyBrawl.exe type: vr -'929460': +"929460": installDir: Money Master launch: - executable: gold.exe type: none -'929470': - installDir: Mahjong Valentine's Day +"929470": + installDir: "Mahjong Valentine's Day" launch: - config: oslist: windows - executable: Mahjong Valentine's Day.exe + executable: "Mahjong Valentine's Day.exe" type: default - config: oslist: macos - executable: Valentine's Day Mahjong.app + executable: "Valentine's Day Mahjong.app" type: default -'929490': +"929490": installDir: RAM_PRESSURE launch: - - arguments: ' -steam' + - arguments: " -steam" config: oslist: windows executable: RPLauncher.exe type: default -'929510': +"929510": installDir: Type Fighter launch: - config: oslist: windows executable: TypeFighter.exe type: default -'929530': +"929530": installDir: Glassteroids launch: - - arguments: '-nohmd' + - arguments: "-nohmd" config: - osarch: '64' + osarch: "64" oslist: windows executable: Glassteroids.exe type: default - - arguments: '-vr' + - arguments: "-vr" config: - osarch: '64' + osarch: "64" oslist: windows executable: Glassteroids.exe type: vr -'929540': +"929540": nameLocalized: french: Cube Paste -'929570': +"929570": installDir: A Familiar Fairytale Dyslexic Text Based Adventure launch: - config: oslist: windows executable: AFamiliarFairytale.exe type: default -'929600': +"929600": installDir: Can You find it launch: - config: @@ -419040,41 +413086,41 @@ description: Launch executable: nw.exe type: default -'929610': +"929610": installDir: Dark Nebula VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Dark Nebula VR.exe type: vr -'929630': +"929630": installDir: Luna Sky RDX launch: - description: Regular executable: lunasky.exe type: default - - arguments: '-console' + - arguments: "-console" description: Console Enabled executable: lunasky.exe type: none -'929640': +"929640": installDir: Farragnarok launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Farragnarok.exe type: default -'929660': {} -'929670': +"929660": {} +"929670": installDir: Orion Sandbox Enhanced launch: - config: oslist: windows executable: Orion Sandbox Enhanced.exe type: default -'929690': +"929690": installDir: Legend of Assassin Jungle launch: - config: @@ -419087,26 +413133,26 @@ type: none - config: oslist: macos - executable: Legend of Assassin - Jungle.app\\Contents\\MacOS\\Legend of Assassin - Jungle + executable: "Legend of Assassin - Jungle.app\\\\Contents\\\\MacOS\\\\Legend of Assassin - Jungle" type: none -'929730': {} -'929740': +"929730": {} +"929740": installDir: Aeronaut launch: - executable: Aeronaut.exe type: vr -'929750': {} -'929770': {} -'929800': +"929750": {} +"929770": {} +"929800": installDir: Bikini Heaven launch: - config: oslist: windows executable: BikiniHeaven.exe type: default -'929810': {} -'929840': {} -'929850': +"929810": {} +"929840": {} +"929850": installDir: DiamondCaves launch: - config: @@ -419114,7 +413160,7 @@ description: Diamond Caves executable: dc5Steam.exe type: default - - arguments: '-window' + - arguments: "-window" config: oslist: windows description: (window mode) @@ -419124,7 +413170,7 @@ oslist: windows executable: dc5Editor.exe type: editor -'929860': +"929860": installDir: Game Builder launch: - config: @@ -419135,7 +413181,7 @@ oslist: macos executable: Game Builder.app/Contents/MacOS/Game Builder type: none -'929870': +"929870": installDir: DefendTheKeep launch: - config: @@ -419146,15 +413192,15 @@ oslist: linux executable: DefendTheKeep.sh type: default -'930030': +"930030": installDir: CyberWatch launch: - config: betakey: default oslist: windows - executable: WindowsNoEditor\\WindowsNoEditor\\CyberWatch.exe + executable: "WindowsNoEditor\\\\WindowsNoEditor\\\\CyberWatch.exe" type: default -'930110': +"930110": installDir: Sufoco launch: - config: @@ -419162,33 +413208,33 @@ executable: Sufoco.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Sufoco.exe type: default - config: oslist: macos - executable: Sufoco.app\\Contents\\MacOS\\Sufoco + executable: "Sufoco.app\\\\Contents\\\\MacOS\\\\Sufoco" type: default -'930150': +"930150": installDir: HappyFishing launch: - - arguments: '-LydGameStudio' + - arguments: "-LydGameStudio" config: oslist: windows executable: bin/win32/happyfishing.exe type: default workingdir: bin/win32 -'930210': +"930210": installDir: HuniePop 2 - Double Date launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: HuniePop 2 - Double Date.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: HuniePop 2 - Double Date.exe type: default @@ -419196,8 +413242,8 @@ oslist: macos executable: HuniePop 2 - Double Date.app type: default -'930220': {} -'930230': +"930220": {} +"930230": installDir: King under the Mountain launch: - config: @@ -419212,25 +413258,23 @@ oslist: macos executable: Contents/MacOS/King under the Mountain type: default -'930280': +"930280": installDir: Murder Mystery Machine launch: - executable: MurderMysteryMachine.exe - config: - osarch: '64' + osarch: "64" oslist: windows description: Murder Mystery Machine (Tilt Five) - description_loc: - english: Murder Mystery Machine (Tilt Five) - executable: TiltFive\\MurderMysteryMachine_TiltFive.exe + executable: "TiltFive\\\\MurderMysteryMachine_TiltFive.exe" nameLocalized: arabic: Murder Mystery Machine ( آلة ألغاز قاتلة) - japanese: '殺人ミステリーマシーン: 犯罪推理捜査の館' + japanese: "殺人ミステリーマシーン: 犯罪推理捜査の館" koreana: 머더 미스터리 머신 russian: Murder Mystery Machine (Машина таинственных убийств) schinese: Murder Mystery Machine(神秘谋杀机器) tchinese: Murder Mystery Machine(神秘謀殺機器) -'930290': +"930290": installDir: DucksInferno launch: - config: @@ -419241,30 +413285,30 @@ oslist: macos executable: DucksInferno.app type: default -'930300': +"930300": installDir: Desolate Sands launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: DesolateSands.exe type: vr -'930310': +"930310": installDir: Puzzle Plunder launch: - config: oslist: windows executable: Puzzle Plunder.exe type: default -'930320': +"930320": installDir: Oops.I Slept With Your Mom launch: - config: oslist: windows executable: iswym.exe type: default -'930330': {} -'930360': +"930330": {} +"930360": installDir: Engram launch: - arguments: app.sxap . @@ -419272,47 +413316,47 @@ oslist: windows executable: cpp-app-vr-studio.exe type: default -'930420': {} -'930430': +"930420": {} +"930430": installDir: CoreRescue launch: - config: oslist: windows executable: CoreRescue.exe type: default -'930450': {} -'930460': +"930450": {} +"930460": installDir: Bolsomito 2k18 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: bolsomito2k18.exe type: none -'930470': +"930470": installDir: Crimson Souls launch: - config: oslist: windows executable: Crimson Souls.exe type: default -'930480': +"930480": installDir: Mushroom rain launch: - config: oslist: windows executable: Mushroom rain.exe type: default -'930500': +"930500": installDir: You Are Here launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: You are here.exe type: vr -'930580': {} -'930600': +"930580": {} +"930600": installDir: Chessboard Kingdoms launch: - config: @@ -419321,18 +413365,18 @@ type: default - config: oslist: windows - ownsdlc: '979140' + ownsdlc: "979140" description: Launch Map Editor executable: CK Map Editor/CK Map Editor.exe type: editor -'930620': +"930620": installDir: MusicKiller launch: - config: oslist: windows executable: Music Killer.exe type: none -'930630': +"930630": installDir: The Lost Legends of Redwall Escape the Gloomer launch: - config: @@ -419343,35 +413387,35 @@ oslist: macos executable: Escape the Gloomer Mac.app type: default -'930640': +"930640": installDir: Code Brown launch: - config: oslist: windows executable: Code Brown.exe type: default -'930650': +"930650": installDir: Parkour Polygon launch: - executable: ParkourPolygon.exe type: default -'930690': +"930690": installDir: Arcane Trials launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ArcaneTrials.exe type: vr -'930700': +"930700": installDir: Scarlet Smiling Skull launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Game.exe type: default -'930710': +"930710": installDir: Main Character Simulator launch: - config: @@ -419386,7 +413430,7 @@ oslist: linux executable: Main_Character_Simulator.sh type: none -'930780': +"930780": installDir: BloodCard launch: - config: @@ -419400,26 +413444,26 @@ nameLocalized: schinese: 血牌 tchinese: 血牌 -'930840': +"930840": installDir: TouHouAsked launch: - executable: 东方百问~TouHouAsked.exe type: none -'930850': +"930850": installDir: Tale of the Fragmented Star Single Fragment Version launch: - config: oslist: windows executable: TaleoftheFragmentedStar_SingleFragmentVersion.exe type: vr -'930860': +"930860": installDir: The Party of Demons launch: - config: oslist: windows executable: Party.exe type: none -'930910': +"930910": installDir: SG_Phenogram launch: - config: @@ -419428,33 +413472,33 @@ type: default nameLocalized: japanese: STEINS;GATE 線形拘束のフェノグラム -'930930': {} -'930940': +"930930": {} +"930940": installDir: Torii Path launch: - config: oslist: windows executable: ToriiPath_Winter.exe type: default -'930970': +"930970": installDir: AngryBallVR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: AngryBallVR.exe type: vr -'931000': +"931000": installDir: URUZ Return of The Er Kishi launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: \\UruzErKishi\\Binaries\\Win64\\UruzErKishi-Win64-Shipping.exe + executable: "\\\\UruzErKishi\\\\Binaries\\\\Win64\\\\UruzErKishi-Win64-Shipping.exe" type: default nameLocalized: turkish: URUZ Er Kişinin Geri Dönüşü -'931040': +"931040": installDir: BreakHack launch: - config: @@ -419462,70 +413506,70 @@ executable: breakhack.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: breakhack.run type: default -'931060': {} -'931070': +"931060": {} +"931070": installDir: Echo of Combats launch: - config: oslist: windows executable: Echo of Combats.exe type: none -'931090': +"931090": installDir: Slither_Link launch: - config: oslist: windows executable: SlitherLink.exe type: default -'931120': +"931120": installDir: Pixel Maze launch: - config: oslist: windows executable: PixelMaze.exe type: none -'931140': +"931140": installDir: Epic Game Theory launch: - config: oslist: windows executable: Game.exe type: default -'931150': +"931150": installDir: Rento Fortune VR launch: - config: oslist: windows executable: RentoVR.exe type: vr -'931170': {} -'931200': +"931170": {} +"931200": installDir: Rebound VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ReboundVR.exe type: vr -'931210': +"931210": installDir: Tabletop Basketball VR launch: - config: oslist: windows executable: Tabletop Basketball VR.exe type: vr -'931220': +"931220": installDir: Beat launch: - config: oslist: windows executable: Beat.exe type: default -'931250': +"931250": installDir: Pixel Royale launch: - config: @@ -419540,7 +413584,7 @@ oslist: linux executable: Pixel Royale.x86 type: none -'931260': +"931260": installDir: Multibombers launch: - config: @@ -419558,7 +413602,7 @@ description: linux default executable: Multibombers.x86_64 type: default -'931270': +"931270": installDir: MicroTown launch: - config: @@ -419573,7 +413617,7 @@ oslist: linux executable: MicroTown.x86_64 type: default -'931280': +"931280": installDir: Iron Marines launch: - config: @@ -419581,7 +413625,7 @@ executable: ironmarines.app type: none - config: - osarch: '64' + osarch: "64" oslist: windows executable: ironmarines.exe type: none @@ -419590,63 +413634,63 @@ executable: ironmarines.x86 type: none - config: - osarch: '32' + osarch: "32" oslist: windows executable: ironmarines.exe type: none -'931310': +"931310": installDir: AirplaneMode launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: AirplaneMode.exe type: none - config: oslist: macos - executable: Contents\\MacOS\\AirplaneMode + executable: "Contents\\\\MacOS\\\\AirplaneMode" type: none -'931320': +"931320": installDir: Agent Roswell launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: AgentRoswell.exe type: default -'931360': +"931360": installDir: Land of Puzzles Battles launch: - config: oslist: windows executable: Land of Puzzles Battles.exe type: default -'931430': +"931430": installDir: Land of an Endless Journey launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: LandJourney.exe type: default -'931440': +"931440": installDir: RunGame launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Run.exe type: default -'931450': +"931450": installDir: Solar Purge launch: - - arguments: '-nohmd' + - arguments: "-nohmd" config: - osarch: '64' + osarch: "64" oslist: windows executable: SolarPurgeLauncher.bat type: default -'931480': +"931480": installDir: Lab Runner X launch: - config: @@ -419657,8 +413701,8 @@ oslist: macos executable: LabRunnerX.app type: default -'931490': {} -'931500': +"931490": {} +"931500": installDir: Touhou Genso Wanderer -Reloaded- launch: - config: @@ -419670,44 +413714,44 @@ japanese: 不思議の幻想郷TOD -RELOADED- schinese: 不可思议的幻想乡TOD -RELOADED- tchinese: 不可思議的幻想鄉TOD -RELOADED- -'931540': +"931540": installDir: RevelationTrestan-尸忆岛 launch: - config: oslist: windows executable: RevelationTrestan.exe type: vr -'931560': +"931560": installDir: Seven Days launch: - executable: Seven Days.eXe type: none nameLocalized: japanese: セヴンデイズ あなたとすごす七日間 -'931570': +"931570": installDir: Twiggles launch: - config: oslist: windows executable: Twiggles.exe type: vr -'931590': +"931590": installDir: CrystalWar launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: CrystalWar.exe type: vr -'931610': {} -'931620': +"931610": {} +"931620": installDir: Kai Entity launch: - config: oslist: windows executable: KaiEntity.exe type: none -'931630': +"931630": installDir: Viki Spotter Zoo launch: - config: @@ -419716,21 +413760,21 @@ type: none - config: oslist: macos - executable: Viki Spotter - Zoo.app\\Contents\\MacOS\\Viki Spotter - Zoo + executable: "Viki Spotter - Zoo.app\\\\Contents\\\\MacOS\\\\Viki Spotter - Zoo" type: none - config: oslist: linux executable: Viki Spotter - Zoo.x86 type: none -'931650': +"931650": installDir: Braveland Heroes launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: braveland_heroes.exe type: default -'931690': +"931690": installDir: Himno launch: - config: @@ -419745,7 +413789,7 @@ oslist: linux executable: Himno.x86_64 type: default -'931700': +"931700": installDir: ShootingHurts launch: - config: @@ -419760,23 +413804,23 @@ oslist: linux executable: ShootingHurts.sh type: default -'931760': {} -'931780': +"931760": {} +"931780": installDir: To Catch a Monkey launch: - config: oslist: windows executable: TCAM.exe type: none -'931810': {} -'931820': +"931810": {} +"931820": installDir: Space Pirate Amai launch: - config: oslist: windows executable: Amai.exe type: default -'931830': +"931830": installDir: morphe launch: - config: @@ -419788,16 +413832,16 @@ executable: morphe.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: morphe-linux-v100/morphe.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: morphe-linux-v100/morphe.x86_64 type: default -'931860': +"931860": installDir: Sydney Hunter COTM launch: - config: @@ -419808,36 +413852,36 @@ oslist: macos executable: cotm.app type: default -'931870': +"931870": installDir: oborozyuuya launch: - config: oslist: windows executable: oborozyuuya_win.exe type: default -'931880': +"931880": installDir: Tekling 2 launch: - config: oslist: windows executable: Tekling_Unreal.exe type: default -'931930': +"931930": installDir: The Haunted Graveyard launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: WindowsNoEditor\\GhostLantern.exe + executable: "WindowsNoEditor\\\\GhostLantern.exe" type: vr -'931940': +"931940": installDir: Junkyard Wizard launch: - config: oslist: windows executable: Junkyard Wizard.exe type: vr -'93200': +"93200": installDir: Revenge of the Titans launch: - config: @@ -419850,27 +413894,27 @@ oslist: linux description: Launch the game executable: revenge.sh -'932050': {} -'932070': +"932050": {} +"932070": installDir: Kwaidan School launch: - config: oslist: windows executable: school.exe type: default -'932090': {} -'932120': +"932090": {} +"932120": installDir: TAL Arctic 3 launch: - executable: TALArctic3.exe type: none -'932130': {} -'932150': +"932130": {} +"932150": installDir: WWTF launch: - executable: WWTF.exe type: none -'932160': +"932160": installDir: Late at night launch: - arguments: b @@ -419878,23 +413922,23 @@ oslist: windows executable: Late at night.exe type: default -'932170': {} -'932180': {} -'932190': +"932170": {} +"932180": {} +"932190": installDir: Aliens Attack VR launch: - config: oslist: windows executable: Aliens Attack VR.exe type: vr -'932210': +"932210": installDir: Nexoria launch: - config: oslist: windows executable: NEXORIA.exe type: default -'932220': +"932220": installDir: IMMURE launch: - config: @@ -419905,12 +413949,12 @@ oslist: macos executable: IMMURE.app type: default - - arguments: '-screen-fullscreen 0' + - arguments: "-screen-fullscreen 0" config: oslist: linux executable: IMMURE type: default -'932240': +"932240": installDir: Pushing Through launch: - config: @@ -419919,27 +413963,27 @@ type: default - config: oslist: macos - executable: pushingThroughMAC.app\\Contents\\MacOS\\pushingThroughMAC + executable: "pushingThroughMAC.app\\\\Contents\\\\MacOS\\\\pushingThroughMAC" type: default -'932250': +"932250": installDir: rOt 2 launch: - config: oslist: windows executable: rOt 2.exe type: none -'932270': +"932270": installDir: July the Lost Child launch: - config: oslist: windows executable: July the Lost Child.exe type: default -'932300': +"932300": installDir: Taco Truck Madness launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Taco Truck Madness.exe type: default @@ -419947,24 +413991,24 @@ oslist: macos executable: Taco Truck Madness.app type: default -'932310': +"932310": installDir: Hentball launch: - executable: HentBall.exe type: default -'932330': +"932330": installDir: Alchemia launch: - executable: Alchemia.exe type: default -'932350': +"932350": installDir: Intelligence Dogs launch: - config: oslist: windows executable: Intelligence Dogs.exe type: default -'932420': +"932420": installDir: Russpuppy Kid Games launch: - config: @@ -419972,22 +414016,22 @@ description: Launch executable: nw.exe type: none -'932450': +"932450": installDir: Blade of Acrimony launch: - config: oslist: windows executable: Game.exe type: none -'932480': +"932480": installDir: GraviSound launch: - config: oslist: windows executable: GraviSound.exe type: default -'932490': {} -'932500': +"932490": {} +"932500": installDir: Damned_Daniel launch: - config: @@ -419996,12 +414040,12 @@ executable: Game.exe type: option1 - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch For Linux executable: game.x64 type: option2 -'932560': +"932560": installDir: Battle Of Britain launch: - config: @@ -420009,32 +414053,32 @@ description: Launch executable: bob.exe type: default -'932570': +"932570": installDir: Treasure_of_abyss launch: - executable: Treasure_of_abyss.exe type: default -'932670': +"932670": installDir: Professor Watts Memory Match Expressions launch: - config: oslist: windows executable: Professor Watts Memory Match Expressions.exe type: default -'932690': +"932690": installDir: REOZMA launch: - config: oslist: windows - description: 'RE:OZMA (Human type)' + description: "RE:OZMA (Human type)" executable: REOZMA_alien.exe type: option1 - config: oslist: windows - description: 'RE:OZMA (Flame type)' + description: "RE:OZMA (Flame type)" executable: REOZMA.exe type: option2 -'932730': +"932730": installDir: Formula XD launch: - config: @@ -420043,9 +414087,9 @@ type: default - config: oslist: macos - executable: Formula_XD.app\\Contents\\MacOS\\Formula_XD + executable: "Formula_XD.app\\\\Contents\\\\MacOS\\\\Formula_XD" type: default -'932790': +"932790": installDir: ASCENT Crash Landing launch: - config: @@ -420053,30 +414097,30 @@ description: Launch executable: ASCENT_Crash_Landing.exe type: none -'932800': +"932800": installDir: Letzte Worte VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: LetzteWorte.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: LetzteWorte.exe type: vr - config: - osarch: '64' + osarch: "64" oslist: windows executable: LetzteWorte.exe type: openvroverlay - config: - osarch: '64' + osarch: "64" oslist: windows executable: LetzteWorte.exe type: othervr -'932810': +"932810": installDir: BattleCry launch: - config: @@ -420088,11 +414132,11 @@ executable: battlecry.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: battlecry type: default -'932820': +"932820": installDir: The Great Voyage launch: - config: @@ -420101,10 +414145,10 @@ type: default - config: oslist: macos - executable: TheGreatVoyage.app\\Contents\\MacOS\\TheGreatVoyage + executable: "TheGreatVoyage.app\\\\Contents\\\\MacOS\\\\TheGreatVoyage" type: default -'932830': {} -'932850': +"932830": {} +"932850": installDir: Simmiland launch: - config: @@ -420115,33 +414159,33 @@ oslist: macos executable: simmiland.app type: none -'932870': +"932870": installDir: The Mark of Robot launch: - config: oslist: windows executable: The Mark of Robot.exe type: default -'932920': +"932920": installDir: RIFF VR for Arcades launch: - config: oslist: windows executable: RiffVR.exe type: vr -'932930': +"932930": installDir: Sexy Girls Puzzle launch: - config: oslist: windows executable: Sexy Girls Puzzle.exe type: default -'932940': +"932940": installDir: Seems good archery game launch: - executable: seems good archery game.exe type: none -'932950': +"932950": installDir: Zombiotik launch: - config: @@ -420149,15 +414193,15 @@ executable: Zombiotik.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Zombiotik type: default - config: oslist: macos - executable: Zombiotik.app\\Contents\\MacOS\\Zombiotik + executable: "Zombiotik.app\\\\Contents\\\\MacOS\\\\Zombiotik" type: default -'932970': +"932970": installDir: Shopping Clutter The Best Playground launch: - config: @@ -420168,7 +414212,7 @@ oslist: macos executable: ShoppingClutter2_ChristmasSquare.app type: none -'932980': +"932980": installDir: Axis Football 2018 launch: - config: @@ -420186,41 +414230,41 @@ description: Launch executable: Axis Football 2018.x86 type: default -'933000': +"933000": installDir: Toy-War The Beginning launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ToyWar_BW.exe type: default -'933030': +"933030": installDir: Heavy Recoil launch: - executable: heavy_recoil.exe type: default -'933040': {} -'933050': +"933040": {} +"933050": installDir: Lost Cosmonauts ARG launch: - config: oslist: windows executable: game.exe type: none -'933060': +"933060": installDir: Hentai Weed PuZZles launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: HWP.exe type: default -'933070': +"933070": installDir: Cold Blooded Cube launch: - executable: cbcproject.exe type: none -'933080': +"933080": installDir: Fire Place launch: - config: @@ -420232,25 +414276,25 @@ executable: FirePlace.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: FirePlace.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: FirePlace.x86_64 type: default -'933090': {} -'933110': +"933090": {} +"933110": installDir: AoE3DE launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: AoE3DE_s.exe type: default -'933120': +"933120": installDir: Rumours From Elsewhere demo launch: - config: @@ -420263,28 +414307,28 @@ description: Closed Beta executable: RumoursFromElsewhere.exe type: option1 -'933140': +"933140": installDir: Drunkn Bar Fight on Halloween launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: DBFH.exe type: vr -'933160': +"933160": installDir: Space Cows launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SpaceCows.exe type: default -'933200': +"933200": installDir: Ant Empire launch: - - executable: build\\Ant Empire.exe + - executable: "build\\\\Ant Empire.exe" type: default -'933210': +"933210": installDir: Heart Chain Kitty launch: - config: @@ -420293,13 +414337,13 @@ type: default - config: oslist: macos - executable: kitty.app\\Contents\\MacOS\\kitty + executable: "kitty.app\\\\Contents\\\\MacOS\\\\kitty" type: default - config: oslist: linux executable: kitty.x86 type: default -'933230': +"933230": installDir: Signed and Sealed With a Kiss launch: - config: @@ -420314,22 +414358,22 @@ oslist: macos executable: Signed_and_Sealed_With_a_Kiss.app type: default -'933250': +"933250": installDir: Shining Orb Prequel launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows executable: Game.exe type: default -'933290': +"933290": installDir: PixelRPG launch: - config: oslist: windows executable: PixelRPG.exe type: default -'933300': +"933300": installDir: WuxiaMaster launch: - config: @@ -420340,15 +414384,15 @@ english: Wuxia Master schinese: 御侠客 tchinese: 御俠客 -'933360': {} -'933380': +"933360": {} +"933380": installDir: Tennis Story launch: - config: oslist: windows executable: ArtExplorations.exe type: default -'933390': +"933390": installDir: Mythical launch: - config: @@ -420359,59 +414403,59 @@ oslist: macos executable: Mythical.app/Contents/MacOS/Mythical type: default -'933430': +"933430": installDir: Sword of Rapier launch: - config: oslist: windows executable: SofR.exe type: default -'933440': {} -'933450': +"933440": {} +"933450": installDir: Wenjia launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: WenJia executable: Wenjia.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows - ownsdlc: '983270' + ownsdlc: "983270" description: WenJia - Art Book - executable: WenJia - Art Book\\WenJia Art Book.pdf + executable: "WenJia - Art Book\\\\WenJia Art Book.pdf" type: option1 - config: - osarch: '64' + osarch: "64" oslist: windows - ownsdlc: '983271' + ownsdlc: "983271" description: WenJia - Soundtrack - executable: WenJia - Soundtrack\\PlayList.m3u + executable: "WenJia - Soundtrack\\\\PlayList.m3u" type: option1 -'933480': +"933480": installDir: Enderal launch: - config: oslist: windows executable: Enderal Launcher.exe type: default -'933540': +"933540": installDir: Idle Space Raider launch: - config: oslist: windows executable: isr.exe type: default -'933590': +"933590": installDir: Legends of Koyannis launch: - config: oslist: windows executable: LegendsofKoyannis.exe type: default -'933630': +"933630": installDir: Dawn of China - Rise of Qin launch: - config: @@ -420420,16 +414464,16 @@ type: none - config: oslist: macos - executable: Dawn of China - Rise of Qin.app\\Contents\\MacOS\\Dawn of China - Rise of Qin + executable: "Dawn of China - Rise of Qin.app\\\\Contents\\\\MacOS\\\\Dawn of China - Rise of Qin" type: none -'933660': +"933660": installDir: In Memory launch: - config: oslist: windows executable: inMemory.exe type: vr -'933690': +"933690": installDir: Trains of the Orient launch: - config: @@ -420440,7 +414484,7 @@ oslist: macos executable: Trains of the Orient.app/Contents/MacOS/Trains of the Orient type: default -'933700': +"933700": installDir: Death Trader Cold War launch: - config: @@ -420451,7 +414495,7 @@ oslist: macos executable: Death Trader.app/Contents/MacOS/Death Trader type: none -'933710': +"933710": installDir: Iron Ladies 2048 launch: - config: @@ -420462,12 +414506,12 @@ oslist: macos executable: Iron Ladies 2048.app/Contents/MacOS/Iron Ladies 2048 type: default -'933740': +"933740": installDir: Shottris Beyond the Classic Game launch: - executable: Beyond the Classic Brick Game.exe type: none -'933770': +"933770": installDir: Star Sky 3 - ブルームーン 3 launch: - config: @@ -420476,11 +414520,11 @@ type: default nameLocalized: japanese: ブルームーン 3 -'933820': +"933820": installDir: Endzone - A World Apart launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Endzone.exe type: default @@ -420488,54 +414532,54 @@ oslist: macos executable: Endzone.app type: default -'933830': +"933830": installDir: Of Ships & Scoundrels launch: - executable: OfShipsAndScoundrels.exe type: default -'933840': +"933840": installDir: World Enduro Rally launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: WorldEnduroRally.exe type: none -'933860': +"933860": installDir: Discolored launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Beta executable: Discolored.exe type: default -'933870': {} -'933880': {} -'933900': +"933870": {} +"933880": {} +"933900": installDir: The Amazonian Dread launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TheAmazonianDread.exe type: default -'933920': +"933920": installDir: Virtual Girls launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: girlsvr.exe type: vr -'933930': +"933930": installDir: Tiny Escape launch: - config: oslist: windows executable: Tiny Escape.exe type: vr -'933940': +"933940": installDir: IfIamAI launch: - config: @@ -420546,7 +414590,7 @@ oslist: macos executable: iamai.app type: none -'933970': +"933970": installDir: Brainfuck launch: - config: @@ -420557,13 +414601,13 @@ oslist: linux executable: brainfuck type: default -'9340': +"9340": installDir: Company of Heroes launch: - executable: RelicCOH.exe -'934020': {} -'934050': {} -'934060': +"934020": {} +"934050": {} +"934060": installDir: Wish Giver launch: - description: Wish Giver @@ -420572,22 +414616,22 @@ - description: Description document-说明 executable: tools.txt type: option2 -'934070': +"934070": installDir: MochiMochi launch: - config: oslist: windows executable: nw.exe type: default -'934120': +"934120": installDir: Monkeys & Dragons launch: - config: oslist: windows executable: Monkeys & Dragons.exe type: default -'934160': {} -'934180': +"934160": {} +"934180": installDir: Trials of Wilderness launch: - config: @@ -420597,46 +414641,46 @@ nameLocalized: russian: Испытания диких земель schinese: 荒野的试炼 -'934220': +"934220": installDir: Buy Low Sell High launch: - config: oslist: windows executable: Buy High Sell Low.exe type: default -'934250': +"934250": installDir: Tactics Rogue launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TacticsRogue.exe type: none -'934260': +"934260": installDir: GroundFall launch: - config: oslist: windows executable: GroundFall.exe type: default -'934410': +"934410": installDir: ReThink 2 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ReThink 2.exe type: none -'934470': +"934470": installDir: A Top-Down Job Blood Gain launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: nw.exe type: none - config: - osarch: '32' + osarch: "32" oslist: windows executable: nw.exe type: none @@ -420645,16 +414689,16 @@ executable: atdj2.app type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: nw type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: nw type: none -'934480': +"934480": installDir: Falling Plus launch: - config: @@ -420665,65 +414709,65 @@ oslist: windows executable: FallingPlus.exe type: default -'934500': +"934500": installDir: StoneDefence_Steam32bit launch: - config: oslist: windows executable: StoneDefence.exe type: default -'934510': +"934510": installDir: Cubanoids launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Run game executable: cubiqee.exe type: default -'934520': +"934520": installDir: Raygun Commando VR 2 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: RaygunCommando2.exe type: vr -'934540': +"934540": installDir: Pleasure Puzzle Sexy Girls launch: - config: oslist: windows executable: PP2.exe type: default -'934550': +"934550": installDir: Duck Hunting Challenge launch: - executable: Duck Hunting Challenge.exe type: none -'934580': +"934580": installDir: Hell Wedding launch: - config: oslist: windows executable: HellWedding.exe type: none -'934590': +"934590": installDir: Closing Lamp launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: MyProject/Binaries/Win64/MyProject-Win64-Shipping.exe type: default -'934600': +"934600": installDir: Mech Rage launch: - config: oslist: windows executable: MechRage.exe type: default -'934630': +"934630": installDir: Rocky Planet launch: - config: @@ -420732,83 +414776,83 @@ type: none - config: oslist: macos - executable: Rocky Planet.app\\Contents\\MacOS\\Rocky Planet + executable: "Rocky Planet.app\\\\Contents\\\\MacOS\\\\Rocky Planet" type: none -'934670': +"934670": installDir: Avernus launch: - config: oslist: windows executable: Avernus.exe type: none -'934710': +"934710": installDir: yingyusha launch: - config: oslist: windows executable: Game.exe type: default -'934780': +"934780": installDir: American Fugitive launch: - executable: AmericanFugitive.exe type: none nameLocalized: schinese: 美国逃亡者 / American Fugitive -'934790': {} -'934800': +"934790": {} +"934800": installDir: Little World Of Creatures launch: - config: oslist: windows executable: Little World Of Creatures.exe type: default -'934810': +"934810": installDir: 酒店 launch: - config: oslist: windows executable: Game.exe type: default -'934830': +"934830": installDir: CircuitSlinger launch: - config: oslist: windows executable: CircuitSlinger.exe type: vr -'934840': +"934840": installDir: FrostRunner launch: - config: oslist: windows executable: FrostRunner.exe type: default -'934850': +"934850": installDir: Cyberdrome launch: - config: oslist: windows executable: Cyberdrome.exe type: none -'934860': +"934860": installDir: La Rana launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: La_Rana.exe type: default -'934870': {} -'934880': {} -'934920': +"934870": {} +"934880": {} +"934920": installDir: SparkChess launch: - config: oslist: windows executable: SparkChess.exe type: default -'934930': +"934930": installDir: RDS - The Official Drift Videogame launch: - config: @@ -420840,7 +414884,7 @@ description: Test executable: RDS.exe type: option1 -'934950': +"934950": installDir: ARTè Mecenas™ launch: - config: @@ -420849,23 +414893,23 @@ type: default - config: oslist: macos - executable: ArteMecenas.app\\Contents\\MacOS\\ArteMecenas + executable: "ArteMecenas.app\\\\Contents\\\\MacOS\\\\ArteMecenas" type: default -'934970': {} -'934990': +"934970": {} +"934990": installDir: CuteGirls launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: cutegirls.exe type: vr -'9350': +"9350": installDir: Supreme Commander launch: - - executable: bin\\SupremeCommander.exe -'935030': {} -'935070': + - executable: "bin\\\\SupremeCommander.exe" +"935030": {} +"935070": installDir: Sakura MMO launch: - config: @@ -420880,37 +414924,37 @@ oslist: linux executable: Sakura_MMO.sh type: default -'935110': - installDir: The Desert's Rose +"935110": + installDir: "The Desert's Rose" launch: - config: oslist: windows executable: TheDesertsRose.exe type: vr -'935120': +"935120": installDir: GonzoVR launch: - - arguments: '-vrmode openvr' + - arguments: "-vrmode openvr" config: - osarch: '64' + osarch: "64" oslist: windows executable: Gonzo-VR.exe type: vr - - arguments: '-vrmode oculus' + - arguments: "-vrmode oculus" config: - osarch: '64' + osarch: "64" oslist: windows executable: Gonzo-VR.exe type: othervr -'935140': {} -'935180': +"935140": {} +"935180": installDir: Puzzle Monarch Mummy launch: - config: oslist: windows executable: Puzzle Monarch Mummy.exe type: default -'935190': +"935190": installDir: Bewitched game launch: - config: @@ -420925,42 +414969,42 @@ oslist: macos executable: BewitchedGame.app type: default -'935240': +"935240": installDir: Puzzle Monarch Forests launch: - config: oslist: windows executable: Puzzle Monarch Forests.exe type: default -'935250': +"935250": installDir: Necrolance launch: - config: oslist: windows executable: Necrolance.exe type: default -'935260': +"935260": installDir: Scarlet Fantasy launch: - config: oslist: windows executable: Fareo Shadowlands.exe type: default -'935270': - installDir: Great Hero's Beard +"935270": + installDir: "Great Hero's Beard" launch: - config: oslist: windows executable: Great Heros Beard.exe type: default -'935320': +"935320": installDir: Get To A Gun launch: - config: oslist: windows executable: game.exe type: none -'935340': +"935340": installDir: Green Dragon launch: - executable: GreenDragon.exe @@ -420969,38 +415013,38 @@ oslist: macos executable: GreenDragonMac.app type: default -'935350': +"935350": installDir: CatFuMi launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: CatFuMi.exe type: default -'935360': +"935360": installDir: ItazuraVR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ItazuraVR.exe type: default - arguments: VR_MODE config: - osarch: '64' + osarch: "64" oslist: windows executable: ItazuraVR.exe type: vr -'935380': {} -'935400': +"935380": {} +"935400": installDir: Alchemy Garden launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: AlchemyGardenUE.exe type: default -'935440': +"935440": installDir: Viki Spotter Professions launch: - config: @@ -421009,13 +415053,13 @@ type: none - config: oslist: macos - executable: Viki Spotter - Professions.app\\Contents\\MacOS\\Viki Spotter - Professions + executable: "Viki Spotter - Professions.app\\\\Contents\\\\MacOS\\\\Viki Spotter - Professions" type: none - config: oslist: linux executable: Viki Spotter - Professions.x86 type: none -'935450': +"935450": installDir: Forest Plague launch: - config: @@ -421026,7 +415070,7 @@ oslist: windows executable: Forest Plague.exe type: none -'935460': +"935460": installDir: Girl Rugby Dash launch: - config: @@ -421037,15 +415081,15 @@ oslist: macos executable: Girl Rugby Dash.app/Contents/MacOS/Girl Rugby Dash type: none -'935490': +"935490": installDir: AreaZ launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Areaz.exe type: default -'935500': +"935500": installDir: Keyhole Spy Hot Nurses launch: - config: @@ -421056,15 +415100,15 @@ oslist: macos executable: Keyhole Spy Hot Nurses.app/Contents/MacOS/Keyhole Spy Hot Nurses type: default -'935540': +"935540": installDir: M计划-plan M launch: - config: oslist: windows executable: MPlan.exe type: default -'935550': {} -'935560': +"935550": {} +"935560": installDir: Hentai Strip Shot launch: - config: @@ -421079,15 +415123,15 @@ oslist: linux executable: Hentai Strip Shot.x86 type: default -'935570': +"935570": installDir: Ary and the secret of seasons launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Ary and the Secret of Seasons.exe type: default -'935580': +"935580": installDir: True Fear Forsaken Souls Part 2 launch: - config: @@ -421098,7 +415142,7 @@ oslist: macos executable: True Fear 2.app type: none -'935610': +"935610": installDir: Eugenics launch: - config: @@ -421107,10 +415151,10 @@ type: none - config: oslist: macos - executable: Eugenics.app\\Contents\\MacOS\\Eugenics + executable: "Eugenics.app\\\\Contents\\\\MacOS\\\\Eugenics" type: none -'935630': {} -'935640': +"935630": {} +"935640": installDir: Pixelarium launch: - config: @@ -421122,52 +415166,52 @@ oslist: linux executable: Pixelarium type: default -'935660': +"935660": installDir: Pixel Robot Hunter launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Pixelrobothunter.exe type: default -'935670': {} -'935680': - installDir: 'Air Attack 3.0, Aerial Firefighting Game' +"935670": {} +"935680": + installDir: "Air Attack 3.0, Aerial Firefighting Game" launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: AA3.exe type: default -'935690': {} -'935700': +"935690": {} +"935700": installDir: Love Hentai Sexy Body launch: - executable: lhsb.exe type: default -'935720': +"935720": installDir: Cinderella VR launch: - config: oslist: windows executable: CinderellaVR.exe type: vr -'935730': {} -'935750': +"935730": {} +"935750": installDir: Antiquitas launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Antiquitas.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: Antiquitas.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Antiquitas type: default @@ -421175,28 +415219,28 @@ oslist: macos executable: Antiquitas.app type: default -'935790': +"935790": installDir: Angry Troll Simulator 1.02 launch: - config: oslist: windows - executable: Angry Troll Simulator 1.02\\Angry Troll Simulator.exe + executable: "Angry Troll Simulator 1.02\\\\Angry Troll Simulator.exe" type: default -'935840': +"935840": installDir: Fantasy Battles launch: - config: oslist: windows executable: FantasyBattles.exe type: none -'935860': +"935860": installDir: The young mathematician Easy difficulty launch: - config: oslist: windows executable: The young mathematician - Easy difficulty.exe type: default -'935880': +"935880": installDir: Glass Masquerade 2 launch: - config: @@ -421205,16 +415249,16 @@ type: default - config: oslist: macos - executable: Illusions.app\\Contents\\MacOS\\Illusions + executable: "Illusions.app\\\\Contents\\\\MacOS\\\\Illusions" type: default -'935910': +"935910": installDir: Brrrainz launch: - config: oslist: windows executable: Brrrainz.exe type: default -'935920': +"935920": installDir: Fallstreak launch: - config: @@ -421227,67 +415271,67 @@ type: none - config: oslist: macos - executable: Fallstreak.app\\Contents\\MacOS\\Fallstreak + executable: "Fallstreak.app\\\\Contents\\\\MacOS\\\\Fallstreak" type: none -'935930': +"935930": installDir: Reignfall launch: - config: oslist: windows executable: Reignfall.exe type: default -'935940': +"935940": installDir: Croquet Pro 2 launch: - executable: CroquetPro2.exe type: none -'935950': +"935950": installDir: Croquet Pro launch: - executable: CroquetPro.exe type: none -'935960': +"935960": installDir: Zuma Legend VR launch: - config: oslist: windows executable: Zuma Legend VR.exe type: vr -'935970': +"935970": installDir: Uniland launch: - config: oslist: windows executable: UniLand.exe type: default -'935980': +"935980": installDir: Aeternitas launch: - config: oslist: windows executable: Aeternitas.exe type: default -'936000': +"936000": installDir: A Mars Journey Redturtle launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: MarsRover.exe type: vr -'936010': +"936010": installDir: Feed the Pets launch: - config: oslist: windows executable: Feed the Pets.exe type: none -'936020': +"936020": installDir: Find Differences launch: - executable: Find Differences.exe type: none -'936040': +"936040": installDir: Master of Mutations launch: - config: @@ -421298,80 +415342,80 @@ oslist: macos executable: Master of Mutations.app/Contents/MacOS/Master of Mutations type: none -'936060': +"936060": installDir: VR203_Tutorial launch: - config: oslist: windows executable: VR203_Tutorial.exe type: vr -'936070': +"936070": installDir: APARTMENT 327 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Apartmet_327.exe type: none -'936140': +"936140": installDir: Pro Cycling Manager 2019 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: PCM64.exe type: default - config: - betakey: 'cyanide-stable,bigben-qa,delivery' - osarch: '64' + betakey: "cyanide-stable,bigben-qa,delivery" + osarch: "64" oslist: windows description: bot executable: LaunchBot.bat type: none - config: - betakey: 'cyanide-stable,bigben-qa,delivery' - osarch: '64' + betakey: "cyanide-stable,bigben-qa,delivery" + osarch: "64" oslist: windows description: multiplayer executable: LaunchMulti.bat type: none - - arguments: '-noassert -debug_Screenshot' + - arguments: "-noassert -debug_Screenshot" config: - betakey: 'cyanide-stable,bigben-qa,delivery' - osarch: '64' + betakey: "cyanide-stable,bigben-qa,delivery" + osarch: "64" oslist: windows description: Screenshot executable: PCM64.exe type: none - config: - betakey: 'cyanide-stable,bigben-qa,delivery' - osarch: '64' + betakey: "cyanide-stable,bigben-qa,delivery" + osarch: "64" oslist: windows description: multires executable: LaunchMultiRes.bat type: none - config: - betakey: 'master-candidate,aigcp,agerating,review,localization-portuguese' - osarch: '64' + betakey: "master-candidate,aigcp,agerating,review,localization-portuguese" + osarch: "64" oslist: windows executable: PCM64.exe type: default - - arguments: '-noassert' + - arguments: "-noassert" config: - betakey: 'cyanide-stable,bigben-qa,delivery' - osarch: '64' + betakey: "cyanide-stable,bigben-qa,delivery" + osarch: "64" oslist: windows description: noassert executable: PCM64.exe type: default -'936150': +"936150": installDir: ouzyaden launch: - config: oslist: windows executable: ouzyaden_win.exe type: default -'936160': +"936160": installDir: Atelier Rorona ~The Alchemist of Arland~ DX launch: - config: @@ -421382,7 +415426,7 @@ japanese: ロロナのアトリエ ~アーランドの錬金術士~ DX schinese: 萝乐娜的炼金工房 ~亚兰德之炼金术士~ DX tchinese: 蘿樂娜的鍊金工房 ~亞蘭德之鍊金術士~ DX -'936170': +"936170": installDir: DoodleVR launch: - config: @@ -421397,7 +415441,7 @@ oslist: windows executable: DoodleVR.exe type: othervr -'936180': +"936180": installDir: Atelier Totori ~The Adventurer of Arland~ DX launch: - config: @@ -421408,7 +415452,7 @@ japanese: トトリのアトリエ ~アーランドの錬金術士2~ DX schinese: 托托莉的炼金工房 ~亚兰德之炼金术士2~ DX tchinese: 托托莉的鍊金工房 ~亞蘭德之鍊金術士2~ DX -'936190': +"936190": installDir: Atelier Meruru ~The Apprentice of Arland~ DX launch: - config: @@ -421419,22 +415463,22 @@ japanese: メルルのアトリエ ~アーランドの錬金術士3~ DX schinese: 梅露露的炼金工房 ~亚兰德之炼金术士3~ DX tchinese: 梅露露的鍊金工房 ~亞蘭德之鍊金術士3~ DX -'936210': +"936210": installDir: The Prometheus Secret Noohra launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ThePrometheusSecret.exe type: default -'936270': +"936270": installDir: CaveRacer launch: - config: oslist: windows executable: CaveRacer.exe type: none -'936490': +"936490": installDir: Counter Terrorist Agency launch: - config: @@ -421443,9 +415487,9 @@ type: default - config: oslist: macos - executable: CTA.app\\Contents\\MacOS\\CTA + executable: "CTA.app\\\\Contents\\\\MacOS\\\\CTA" type: default -'936500': +"936500": installDir: Transport INC launch: - config: @@ -421456,21 +415500,21 @@ oslist: macos executable: TransportInc.app type: none -'936510': +"936510": installDir: 2nd Circle - Powerful Places launch: - config: oslist: windows - executable: 2ndCircle\\2ndCircle.exe + executable: "2ndCircle\\\\2ndCircle.exe" type: default -'936530': +"936530": installDir: Close Combat Last Stand Arnhem launch: - config: oslist: windows executable: autorun.exe type: default -'936560': +"936560": installDir: Cubeverse launch: - config: @@ -421481,20 +415525,20 @@ oslist: windows executable: Cubeverse.exe type: none -'936580': +"936580": installDir: Avoidon launch: - config: oslist: windows executable: Avoidon.exe type: none -'936590': {} -'936600': - installDir: Shoot'n'Scroll 3D +"936590": {} +"936600": + installDir: "Shoot'n'Scroll 3D" launch: - executable: helic_P2.exe type: none -'936610': +"936610": installDir: Of Gods and Men - The Daybreak Empire launch: - config: @@ -421503,14 +415547,14 @@ type: default - config: oslist: macos - executable: Of Gods and Men - The Daybreak Empire.app\\Contents\\MacOS\\Of Gods and Men - The Daybreak Empire + executable: "Of Gods and Men - The Daybreak Empire.app\\\\Contents\\\\MacOS\\\\Of Gods and Men - The Daybreak Empire" type: default -'936620': +"936620": installDir: Trailerpark mechanic launch: - executable: Trailerpark Mechanic.exe type: none -'936630': +"936630": installDir: Garden Variety Body Horror launch: - config: @@ -421518,7 +415562,7 @@ executable: gardenvariety.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: gardenvariety.x86_64 type: default @@ -421526,87 +415570,81 @@ oslist: macos executable: gardenvariety.app type: default -'936650': +"936650": installDir: Space Pilgrim Academy Year 3 launch: - executable: nw.exe type: none -'936700': - installDir: Ms Squeaker's Home for the Sick +"936700": + installDir: "Ms Squeaker's Home for the Sick" launch: - config: oslist: windows executable: MSHFTS.exe type: default -'936720': +"936720": installDir: Wrench launch: - - arguments: '-nohmd' + - arguments: "-nohmd" config: - osarch: '64' + osarch: "64" oslist: windows description: Desktop (Mouse + Keyboard) Mode executable: WindowsNoEditor/WrenchGame.exe type: default - - arguments: '-vr' + - arguments: "-vr" config: - osarch: '64' + osarch: "64" oslist: windows description: VR Mode (SteamVR) executable: WindowsNoEditor/WrenchGame.exe type: vr - - arguments: '-vr' + - arguments: "-vr" config: - osarch: '64' + osarch: "64" oslist: windows description: VR Mode (OculusVR) executable: WindowsNoEditor/WrenchGame.exe type: othervr - - arguments: '-nohmd -d3d11' + - arguments: "-nohmd -d3d11" config: betakey: nvidia_dev - osarch: '64' + osarch: "64" oslist: windows description: DX11 Desktop Mode (Mouse + Keyboard) - description_loc: - english: DX11 Desktop Mode (Mouse + Keyboard) executable: WindowsNoEditor/WrenchGame.exe type: none - - arguments: '-vr -d3d11' + - arguments: "-vr -d3d11" config: betakey: nvidia_dev - osarch: '64' + osarch: "64" oslist: windows description: DX11 VR Mode (SteamVR) - description_loc: - english: DX11 VR Mode (SteamVR) executable: WindowsNoEditor/WrenchGame.exe type: vr - - arguments: '-vr -d3d11' + - arguments: "-vr -d3d11" config: betakey: nvidia_dev - osarch: '64' + osarch: "64" oslist: windows description: DX11 VR Mode (Oculus SDK) - description_loc: - english: DX11 VR Mode (Oculus SDK) executable: WindowsNoEditor/WrenchGame.exe type: othervr -'936740': +"936740": installDir: Orogenesis launch: - config: oslist: windows executable: Game.exe type: none -'936770': +"936770": installDir: DBW Battle Royal launch: - config: oslist: windows executable: DBW Battle Royal/DBW Battle Royal.exe type: default -'936780': +"936780": installDir: Warplanes WW2 Dogfight launch: - config: @@ -421621,96 +415659,92 @@ oslist: linux executable: Warplanes.x86_64 type: default -'936790': +"936790": installDir: LifeIsStrange3 launch: - config: - betakey: 'se_jp,se_loc,se_compat,se-qa1,se-qa2,se_qa3,se-locqa' - osarch: '64' + betakey: "se_jp,se_loc,se_compat,se-qa1,se-qa2,se_qa3,se-locqa" + osarch: "64" oslist: windows description: Launch Test exe - description_loc: - english: Launch Test exe - executable: \\Binaries\\Win64\\Siren-Win64-Test.exe + executable: "\\\\Binaries\\\\Win64\\\\Siren-Win64-Test.exe" type: none - config: - osarch: '64' + osarch: "64" oslist: windows executable: LifeIsStrange3.exe type: default - - arguments: '-dx12' + - arguments: "-dx12" config: - osarch: '64' + osarch: "64" oslist: windows - description: 'Life is Strange: True Colors (DirectX 12)' - description_loc: - english: 'Life is Strange: True Colors (DirectX 12)' + description: "Life is Strange: True Colors (DirectX 12)" executable: LifeIsStrange3.exe type: option3 -'936800': +"936800": installDir: Professor Watts Memory Match Cats launch: - config: oslist: windows executable: Professor Watts Memory Match Kittens.exe type: default -'936810': +"936810": installDir: Professor Watts Memory Match Puppies launch: - config: oslist: windows executable: Professor Watts Memory Match Puppies.exe type: default -'936820': +"936820": installDir: J-Girl launch: - config: oslist: windows executable: J-Girl_Win/J-Girl.exe type: none -'936870': +"936870": installDir: Tale of Legends launch: - config: oslist: windows executable: Tale of Legends.exe type: none -'936890': +"936890": installDir: Source beginning launch: - config: oslist: windows - executable: Source beginning\\Game.exe + executable: "Source beginning\\\\Game.exe" type: default -'936930': +"936930": installDir: Oil Baron launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: nw.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: nw.exe type: default -'936940': +"936940": installDir: DingDingDing launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: DingDingDing.exe type: none -'936950': +"936950": installDir: BR Logic Pack launch: - config: oslist: windows executable: BR_Logic_Pack.exe type: default -'936960': +"936960": installDir: General Practitioner launch: - config: @@ -421726,33 +415760,33 @@ executable: General_Practitioner.sh type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: General_Practitioner-32.exe type: default -'936970': +"936970": installDir: CANDLE UNDER WATER launch: - executable: suii.exe type: none -'937020': +"937020": installDir: SJX launch: - config: oslist: windows executable: Game.exe type: default -'937030': {} -'937040': +"937030": {} +"937040": installDir: Bezirk launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Bezirk | The Game executable: Bezirk.exe type: default -'937050': +"937050": installDir: JackQuest launch: - config: @@ -421761,51 +415795,51 @@ type: default - config: oslist: macos - executable: JackQuest.app\\Contents\\MacOS\\Mac_Runner + executable: "JackQuest.app\\\\Contents\\\\MacOS\\\\Mac_Runner" type: default -'937070': - installDir: A Killer's Sorrow +"937070": + installDir: "A Killer's Sorrow" launch: - config: oslist: windows - executable: A Killer's Sorrow.exe + executable: "A Killer's Sorrow.exe" type: default -'937090': +"937090": installDir: Stacksquatch launch: - config: oslist: windows executable: Stacksquatch.exe type: vr -'937120': +"937120": installDir: Slingshot Explorer The Twelve Tower launch: - config: oslist: windows executable: slingshotexplorer.exe type: default -'937130': +"937130": installDir: ColorGuardian launch: - executable: Color Guardian.exe type: default -'937140': +"937140": installDir: Pixel Girl launch: - executable: PixelGirl.exe type: default -'937160': +"937160": installDir: BRINGITDOWN launch: - - arguments: '-vrmode None' + - arguments: "-vrmode None" description: in Pancake (No VR - BETA) executable: BRING IT DOWN!.exe type: option3 - - arguments: '-vrmode OpenVR' + - arguments: "-vrmode OpenVR" executable: BRING IT DOWN!.exe type: vr -'937170': - installDir: Otaku's Adventure +"937170": + installDir: "Otaku's Adventure" launch: - config: oslist: windows @@ -421813,148 +415847,148 @@ type: default - config: oslist: macos - executable: gal.app\\Contents\\MacOS\\gal + executable: "gal.app\\\\Contents\\\\MacOS\\\\gal" type: default nameLocalized: schinese: 宅男的人间冒险 tchinese: 宅男的人間冒險 -'937180': +"937180": installDir: Impixable launch: - config: oslist: windows executable: Impixable.exe type: default -'937210': +"937210": installDir: МЫЛО УРОНИЛ launch: - config: oslist: windows executable: YRONIL MILO.exe type: default -'937220': {} -'937230': {} -'937290': {} -'937300': +"937220": {} +"937230": {} +"937290": {} +"937300": installDir: The Long Return launch: - config: oslist: windows executable: The Long Return.exe type: none -'937320': +"937320": installDir: Jay Walker launch: - description: Launch Game executable: jWalker.exe type: default -'937340': {} -'937350': +"937340": {} +"937350": installDir: Food Drive launch: - config: oslist: windows executable: FD 2-1.exe type: none -'937360': +"937360": installDir: Pantheon launch: - config: oslist: windows executable: Pantheon_Update_2.exe type: default -'937390': - installDir: 'Ah, Love!' +"937390": + installDir: "Ah, Love!" launch: - config: oslist: windows executable: Ah Love.exe type: default -'937420': {} -'937450': {} -'937460': +"937420": {} +"937450": {} +"937460": installDir: Survival Hell launch: - config: oslist: windows executable: SurvivalHell.exe type: none -'937490': +"937490": installDir: Neighbor launch: - config: oslist: windows executable: Neighbor.exe type: none -'937520': +"937520": installDir: Critter Kart launch: - - arguments: '-vrmode none' + - arguments: "-vrmode none" config: oslist: windows description: Critter Kart executable: CritterKart.exe type: default - - arguments: '-vrmode oculus' + - arguments: "-vrmode oculus" config: oslist: windows description: Critter Kart executable: CritterKart.exe type: othervr - - arguments: '-vrmode openvr' + - arguments: "-vrmode openvr" config: oslist: windows description: Critter Kart executable: CritterKart.exe type: vr - - arguments: '-vrmode none' + - arguments: "-vrmode none" config: oslist: macos description: Critter Kart - executable: Critter Kart.app\\Contents\\MacOS\\Critter Kart + executable: "Critter Kart.app\\\\Contents\\\\MacOS\\\\Critter Kart" type: default - - arguments: '-vrmode none' + - arguments: "-vrmode none" config: oslist: linux description: Critter Kart executable: CritterKart.x86_64 type: default -'937530': +"937530": installDir: Crowley launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Crowley.exe type: default -'937550': +"937550": installDir: fhaMAZEin launch: - config: - osarch: '32' + osarch: "32" oslist: linux description: Linux x32 launch executable: launch_script_linux_x32.sh type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: Linux x64 launch executable: launch_script_linux_x64.sh type: default - config: - osarch: '32' + osarch: "32" oslist: windows description: Windows x32 launch executable: launch_script_windows_x32.bat type: default - config: - osarch: '64' + osarch: "64" oslist: windows description: Windows x64 launch executable: launch_script_windows_x64.bat type: default -'937570': +"937570": installDir: th143 launch: - config: @@ -421968,7 +416002,7 @@ nameLocalized: english: Danmaku Amanojaku ~ Impossible Spell Card. japanese: 弾幕アマノジャク 〜 Impossible Spell Card. -'937580': +"937580": installDir: th15 launch: - config: @@ -421982,9 +416016,9 @@ nameLocalized: english: Touhou Kanjuden ~ Legacy of Lunatic Kingdom. japanese: 東方紺珠伝 ~ Legacy of Lunatic Kingdom. -'937590': {} -'937610': {} -'937620': +"937590": {} +"937610": {} +"937620": installDir: Zack Y launch: - config: @@ -421995,14 +416029,14 @@ oslist: linux executable: Zacky type: default -'937640': {} -'937690': +"937640": {} +"937690": installDir: Adventurer Guild launch: - executable: AdventurerGuild.exe type: none -'937730': - installDir: Lady's Hentai Mosaic +"937730": + installDir: "Lady's Hentai Mosaic" launch: - config: oslist: windows @@ -422012,19 +416046,19 @@ oslist: linux executable: nw type: default -'937740': +"937740": installDir: Anime Babes Solitaire launch: - config: oslist: windows executable: Anime Babes Solitaire.exe type: default -'937770': +"937770": installDir: BlackHoopS launch: - executable: BHS.exe type: default -'937780': +"937780": installDir: The Tactics of War launch: - config: @@ -422033,90 +416067,90 @@ type: default - config: oslist: macos - executable: The Tactics of War.app\\Contents\\MacOS\\The Tactics of War + executable: "The Tactics of War.app\\\\Contents\\\\MacOS\\\\The Tactics of War" type: none - config: - osarch: '32' + osarch: "32" oslist: linux - executable: The Tactics of War.linux\\The Tactics of War.x86 + executable: "The Tactics of War.linux\\\\The Tactics of War.x86" type: none - config: - osarch: '64' + osarch: "64" oslist: linux - executable: The Tactics of War.linux\\The Tactics of War.x86_64 + executable: "The Tactics of War.linux\\\\The Tactics of War.x86_64" type: none -'937820': +"937820": installDir: Shadow Play launch: - config: oslist: windows executable: Shadow Play.exe type: none -'937850': +"937850": installDir: Hidden Paws Mystery launch: - config: oslist: windows executable: Hidden Paws Mystery.exe type: default -'937860': +"937860": installDir: Bigger Guns launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: Bigger Guns.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: Bigger Guns.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Bigger Guns.x86_64 type: default -'937870': +"937870": installDir: Mist Hunter launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: mh.exe type: none -'937910': +"937910": installDir: Vulcan Sacrifice launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: VulcanSacrifice_Win64.exe type: none -'937920': {} -'937930': +"937920": {} +"937930": installDir: Elle launch: - executable: game.exe type: none -'937940': +"937940": installDir: Sea Dogs City of Abandoned Ships launch: - executable: START.exe type: none -'937950': +"937950": installDir: Not in Heaven launch: - executable: Not in Heaven.exe type: default -'937960': +"937960": installDir: Classified Stories launch: - config: oslist: windows executable: Classified Stories.exe type: default -'937970': +"937970": installDir: Running Girl launch: - config: @@ -422125,40 +416159,40 @@ type: none - config: oslist: macos - executable: Mac.app\\Contents\\MacOS\\Mac + executable: "Mac.app\\\\Contents\\\\MacOS\\\\Mac" type: none - config: - osarch: '32' + osarch: "32" oslist: linux - executable: Linux\\RG.x86 + executable: "Linux\\\\RG.x86" type: none - config: - osarch: '64' + osarch: "64" oslist: linux - executable: Linux\\RG.x86_64 + executable: "Linux\\\\RG.x86_64" type: none -'937980': +"937980": installDir: Jellyfish Season launch: - config: oslist: windows executable: JellyfishSeason.exe type: default -'938000': +"938000": installDir: Land of Puzzles Elven Princess launch: - config: oslist: windows executable: Land of Puzzles Elven Princess.exe type: default -'938040': +"938040": installDir: Stackems launch: - config: oslist: windows executable: Stackems.exe type: none -'938050': +"938050": installDir: The Anomaly Demo launch: - config: @@ -422171,54 +416205,54 @@ type: default - config: oslist: macos - executable: The Anomaly Demo.app\\Contents\\MacOS\\The Anomaly Demo + executable: "The Anomaly Demo.app\\\\Contents\\\\MacOS\\\\The Anomaly Demo" type: default -'938070': +"938070": installDir: LOGistICAL2Belgium launch: - config: oslist: windows executable: LogisticalApp.exe type: none -'938100': +"938100": installDir: Sacred Earth - Promise launch: - config: oslist: windows executable: Game.exe type: none -'938170': - installDir: Colette's Sugar Madness +"938170": + installDir: "Colette's Sugar Madness" launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ColetteCandy.exe type: default -'938210': +"938210": installDir: Jack & the creepy Castle launch: - config: oslist: windows executable: creepy_castle_3d.exe type: default -'938220': +"938220": installDir: TAPSONIC BOLD launch: - - arguments: '-force-d3d11-no-singlethreaded' + - arguments: "-force-d3d11-no-singlethreaded" config: - osarch: '64' + osarch: "64" oslist: windows executable: Bold.exe type: default -'938240': +"938240": installDir: Cthulhu Mythos RPG -The Sleeping Girl of the Miasma Sea- launch: - config: oslist: windows executable: Game.exe type: default -'938250': +"938250": installDir: Hentai The Shell Game launch: - config: @@ -422229,7 +416263,7 @@ oslist: macos executable: Hentai The Shell Game.app type: none -'938260': +"938260": installDir: To Burn in Memory (Anniversary Edition) launch: - config: @@ -422244,7 +416278,7 @@ oslist: linux executable: toburninmemory type: default -'938270': +"938270": installDir: Lovekami -Healing Harem- launch: - config: @@ -422252,7 +416286,7 @@ description: Launch executable: AdvHD.exe type: default -'938280': +"938280": installDir: ROLL! launch: - config: @@ -422263,14 +416297,14 @@ oslist: linux executable: ROLL!.x86 type: default -'938300': +"938300": installDir: CuberPunk 2089 launch: - config: oslist: windows executable: CuberPunk 2089.exe type: none -'938310': +"938310": installDir: 12 Labours of Hercules VIII launch: - config: @@ -422281,16 +416315,16 @@ oslist: macos executable: 12 Labours of Hercules VIII.app type: none -'938320': +"938320": installDir: Nibû launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Nibû.exe type: none -'938330': {} -'938340': +"938330": {} +"938340": installDir: The Necklace Of Blood Part II launch: - config: @@ -422305,22 +416339,22 @@ oslist: linux executable: NecklaceOfBloodII.sh type: default -'938350': +"938350": installDir: Divine Business Fantasy Trading Simulator launch: - config: oslist: windows executable: DivineBusiness.exe type: none -'938360': +"938360": installDir: The last soldier launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: game.exe type: default -'938370': +"938370": installDir: wgame launch: - config: @@ -422328,7 +416362,7 @@ executable: wgame.exe type: default nameLocalized: - english: 'War in Pocket ' + english: "War in Pocket " french: War in Pocket german: Taschenkrieg japanese: ポケットウォーズ @@ -422336,28 +416370,28 @@ russian: War in Pocket schinese: 口袋战争 tchinese: 口袋戰爭 -'938380': +"938380": installDir: Townsmen - A Kingdom Rebuilt launch: - executable: TownsmenRebuilt.exe type: default -'938390': +"938390": installDir: My Riding Stables launch: - config: oslist: windows executable: game.exe type: default -'938480': - installDir: The Savior's Gang +"938480": + installDir: "The Savior's Gang" launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TheSaviorsGang.exe type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: TheSaviorsGang.sh type: none @@ -422365,22 +416399,21 @@ oslist: macos executable: TheSaviorsGang.app type: none -'938500': +"938500": installDir: Willowbrooke Post - launch: [] -'938510': +"938510": installDir: PolyAndTheMarbleMaze launch: - config: oslist: windows executable: PolyAndTheMarbleMaze.exe type: default -'938520': - installDir: '21' +"938520": + installDir: "21" launch: - executable: 21.exe type: default -'938560': +"938560": installDir: Inmost launch: - config: @@ -422393,41 +416426,41 @@ description: Inmost the game executable: inmost.app type: default -'938570': {} -'938600': +"938570": {} +"938600": installDir: Drift Stunt Racing 2019 launch: - executable: DriftStuntRacing.exe type: default -'938630': +"938630": installDir: Jewel Tree launch: - executable: JewelTree.exe type: none -'938640': +"938640": installDir: IGS launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: StalingradAbatis.exe type: default -'938660': +"938660": installDir: AchtungDieKugel launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: AchtungDieKugel.exe type: default -'938680': +"938680": installDir: Pixels Guide to Staying Dead launch: - config: oslist: windows executable: Pixels Guide to Staying Dead.exe type: none -'938740': +"938740": installDir: MUSEUM I launch: - config: @@ -422437,39 +416470,39 @@ type: option1 - config: oslist: windows - ownsdlc: '1075840' + ownsdlc: "1075840" description: Museum Volume II executable: MUSEUM II.exe type: option2 -'938810': +"938810": installDir: Yuyasc launch: - executable: Game.exe type: none -'938820': +"938820": installDir: Puzzle Monarch Egypt launch: - config: oslist: windows executable: Puzzle Monarch Egypt.exe type: default -'938840': +"938840": installDir: Puzzle Monarch Nile River launch: - config: oslist: windows executable: Puzzle Monarch Nile River.exe type: default -'938850': - installDir: Infinity +"938850": + installDir: "Infinity" launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Infinity.exe type: none -'938860': - installDir: 'Get In The Car, Loser!' +"938860": + installDir: "Get In The Car, Loser!" launch: - config: oslist: windows @@ -422479,24 +416512,24 @@ oslist: macos executable: Get in the Car Loser.app type: none -'938870': +"938870": installDir: Chronon launch: - config: oslist: windows executable: Chronon.exe type: default -'938890': +"938890": installDir: HotPuzzleGrils launch: - executable: Hotpuzzlegirls.exe type: none -'938940': - installDir: "天风之光\_~ Touhou Fan of Destiny" +"938940": + installDir: 天风之光 ~ Touhou Fan of Destiny launch: - executable: Touhou Fan of Destiny.exe type: none -'938960': +"938960": installDir: Soul-Ivy C0 launch: - config: @@ -422507,50 +416540,46 @@ oslist: macos executable: Game.app type: none -'939000': +"939000": installDir: Crisis VRigade launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: CrisisVRigade.exe type: vr -'939100': +"939100": installDir: Darksburg launch: - arguments: dxboot.dat config: oslist: windows description: Darksburg DirectX - description_loc: - english: Darksburg DirectX executable: Darksburg.exe type: option1 - config: oslist: windows description: Darksburg OpenGL - description_loc: - english: Darksburg OpenGL executable: Darksburg.exe type: option1 -'939110': {} -'939120': +"939110": {} +"939120": installDir: Grand Guilds launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: GrandGuilds.exe type: none -'939150': +"939150": installDir: CUBE 332 launch: - executable: CUBE 332.exe type: none -'939160': {} -'939180': {} -'939190': {} -'939200': +"939160": {} +"939180": {} +"939190": {} +"939200": installDir: Gold Magic 800 launch: - config: @@ -422563,7 +416592,7 @@ description: The Gold Magic 800 Level Editor executable: editor/leveleditor.exe type: none -'939210': +"939210": installDir: TakeTheTurn launch: - config: @@ -422571,60 +416600,60 @@ description: Start Game executable: T3 - Take The Turn.exe type: default -'939230': +"939230": installDir: BARDO launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: BARDO.exe type: vr -'939240': +"939240": installDir: Super Commander XL launch: - config: oslist: windows executable: SCXL.exe type: none -'939250': +"939250": installDir: Dungeons and Dinners launch: - config: oslist: windows executable: DungeonAndDinner.exe type: none -'939260': {} -'939270': {} -'939280': {} -'939330': +"939260": {} +"939270": {} +"939280": {} +"939330": installDir: Tailor Tales launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows description: Launch - executable: Tailor Tales\\nw.exe + executable: "Tailor Tales\\\\nw.exe" type: none -'939350': +"939350": installDir: Rugby Champions launch: - config: oslist: windows executable: RugbyChampions.exe type: default -'939380': +"939380": installDir: Fruit Punch launch: - config: oslist: windows executable: DyrnwynGames-FruitPunch.exe type: default -'939390': +"939390": installDir: The Life of One Dog launch: - executable: Game.exe type: none -'939400': +"939400": installDir: LoveChoice launch: - config: @@ -422633,7 +416662,7 @@ type: none - config: oslist: macos - executable: LoveChoice.app\\Contents\\MacOS\\Mac + executable: "LoveChoice.app\\\\Contents\\\\MacOS\\\\Mac" type: none - config: oslist: linux @@ -422645,7 +416674,7 @@ sc_schinese: 拣爱 schinese: LoveChoice 拣爱 tchinese: LoveChoice 揀愛 -'939410': +"939410": installDir: Bloody Mary - Forgotten Curse launch: - config: @@ -422658,65 +416687,65 @@ type: default - config: oslist: macos - executable: BM.app\\Contents\\MacOS\\BM + executable: "BM.app\\\\Contents\\\\MacOS\\\\BM" type: default -'939450': +"939450": installDir: Forklift Simulator 2019 launch: - - arguments: ../FL_Content/FLS-CON-004/startup.json -vrmode None + - arguments: "../FL_Content/FLS-CON-004/startup.json -vrmode None" executable: FL_Engine/FL-Simulator.exe type: default workingdir: FL_Engine - - arguments: ../FL_Content/FLS-CON-004/startup.json -vrmode OpenVR + - arguments: "../FL_Content/FLS-CON-004/startup.json -vrmode OpenVR" executable: FL_Engine/FL-Simulator.exe type: vr workingdir: FL_Engine - - arguments: ../FL_Content/FLS-CON-004/startup.json -vrmode None -show-screen-selector + - arguments: "../FL_Content/FLS-CON-004/startup.json -vrmode None -show-screen-selector" executable: FL_Engine/FL-Simulator.exe type: config workingdir: FL_Engine -'939470': +"939470": installDir: TRIP launch: - config: oslist: windows executable: Trip.exe type: default -'939510': +"939510": installDir: Pandemic Express launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Launch_PandemicExpress.exe type: default -'939520': +"939520": installDir: HELLGATE_London launch: - config: oslist: windows executable: Hellgate.exe type: default -'939540': +"939540": installDir: Space Ashes launch: - config: oslist: windows executable: space_ashes.exe type: default -'939560': +"939560": installDir: Monster Trampoline launch: - config: oslist: windows executable: Monster Trampoline.exe type: none -'939580': +"939580": installDir: Ladies launch: - executable: Ladies.exe type: default -'939600': +"939600": installDir: LOVE CUBE launch: - config: @@ -422728,30 +416757,30 @@ koreana: LOVE³ -러브큐브- schinese: LOVE³ -爱立方- tchinese: LOVE³ -愛立方- -'939620': +"939620": installDir: Pleasure Puzzle Portrait launch: - config: oslist: windows executable: PP1.exe type: default -'939670': {} -'939740': +"939670": {} +"939740": installDir: Qian Shan Village launch: - - arguments: '-windowed' + - arguments: "-windowed" config: oslist: windows executable: QianShanVillage.exe type: vr - - arguments: '-beta' + - arguments: "-beta" config: oslist: windows executable: QianShanVillage.exe type: vr -'939760': {} -'939780': {} -'939790': +"939760": {} +"939780": {} +"939790": installDir: Royal Alchemist launch: - config: @@ -422764,17 +416793,17 @@ type: default - config: oslist: macos - executable: RoyalAlchemist.app\\Contents\\MacOS\\RoyalAlchemist + executable: "RoyalAlchemist.app\\\\Contents\\\\MacOS\\\\RoyalAlchemist" type: default -'939810': +"939810": installDir: Reflex launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Reflex.exe type: default -'939830': +"939830": installDir: WheelTravel launch: - config: @@ -422782,14 +416811,14 @@ description: Launch game executable: WHEEL_TRAVEL.exe type: none -'939850': +"939850": installDir: The Dark Pictures Anthology - Man of Medan launch: - config: oslist: windows executable: ManOfMedan.exe type: default -'939870': +"939870": installDir: BlackberryNOVA launch: - config: @@ -422800,7 +416829,7 @@ oslist: linux executable: BlackberryNOVA.sh type: none -'939930': +"939930": installDir: Beach Pong launch: - config: @@ -422813,65 +416842,65 @@ type: none - config: oslist: macos - executable: Beach Pong.app\\Contents\\MacOS\\Beach Pong + executable: "Beach Pong.app\\\\Contents\\\\MacOS\\\\Beach Pong" type: none -'939960': +"939960": installDir: Far Cry New Dawn launch: - - arguments: '-uplay_steam_mode' + - arguments: "-uplay_steam_mode" config: - osarch: '64' + osarch: "64" oslist: windows description: Master exe executable: bin/FarCryNewDawn.exe type: default -'939990': +"939990": installDir: Boxing School launch: - config: oslist: windows executable: boxingschool.exe type: default -'9400': +"9400": installDir: Juiced 2 Hot Import Nights launch: - executable: j2launcher.exe -'94000': +"94000": installDir: Dinner Date launch: - executable: Dinner Date.exe -'940020': +"940020": installDir: Survive Together launch: - config: oslist: windows executable: Survive Together.exe type: default -'940070': +"940070": installDir: Robot Female Hero 1 launch: - config: oslist: windows executable: Game.exe type: default -'940130': +"940130": installDir: Red and Blue ~ Cycles of Existence launch: - config: oslist: windows - executable: CyclesExistence\\CyclesExistence.exe + executable: "CyclesExistence\\\\CyclesExistence.exe" type: default - config: oslist: linux - executable: CyclesExistence\\CyclesExistence.sh + executable: "CyclesExistence\\\\CyclesExistence.sh" type: default - config: oslist: macos - executable: CyclesExistence\\CyclesExistence.app + executable: "CyclesExistence\\\\CyclesExistence.app" type: default nameLocalized: - french: Rouge et Bleu ~ Cycles d'Existence -'940140': + french: "Rouge et Bleu ~ Cycles d'Existence" +"940140": installDir: Project AETHER First Contact launch: - config: @@ -422882,7 +416911,7 @@ oslist: macos executable: Mac Build.app type: default -'940150': +"940150": installDir: Saboteur! launch: - config: @@ -422893,14 +416922,14 @@ oslist: macos executable: Saboteur.app type: default -'940180': +"940180": installDir: Hailey launch: - config: oslist: windows executable: Hailey.exe type: default -'940190': +"940190": installDir: Chuckie Egg 2017 launch: - config: @@ -422911,21 +416940,21 @@ oslist: macos executable: CE2017.app type: default -'940240': +"940240": installDir: Jake and the Giant launch: - config: oslist: windows executable: Jake and the Giant.exe type: othervr -'940290': +"940290": installDir: Trip Troupe launch: - config: oslist: windows executable: TripTroupe.exe type: none -'940300': +"940300": installDir: Escape Legacy launch: - config: @@ -422934,13 +416963,13 @@ type: default - config: oslist: macos - executable: EscapeLegacyPC.app\\Contents\\MacOS\\EscapeLegacyPC + executable: "EscapeLegacyPC.app\\\\Contents\\\\MacOS\\\\EscapeLegacyPC" type: default - config: oslist: linux executable: EscapeLegacyPC type: default -'940310': +"940310": installDir: Corpse Party 2 Dead Patient launch: - config: @@ -422953,68 +416982,68 @@ type: config nameLocalized: japanese: コープスパーティー2 DEAD PATIENT1 -'940320': +"940320": installDir: Combo Jumper launch: - config: oslist: windows executable: Combo_Jumper.exe type: none -'940330': +"940330": installDir: BBlocks launch: - executable: BBlocks.exe type: default -'940350': +"940350": installDir: Snakest launch: - executable: Snakest.exe type: default -'940430': {} -'940520': +"940430": {} +"940520": installDir: Attractorache launch: - executable: JuYinYuan.exe type: none -'940580': +"940580": installDir: TruckRacingChampionship launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TruckRacer.exe type: none -'940600': +"940600": installDir: Potion island launch: - config: oslist: windows executable: Potion island.exe type: default -'940630': +"940630": installDir: Hexen Hegemony launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Salemburg.exe type: default -'940640': +"940640": installDir: Astronaut launch: - config: oslist: windows executable: Astronaut.exe type: default -'940650': +"940650": installDir: Our World Is Ended launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: OurWorldIsEnded.exe type: default -'940680': +"940680": installDir: Textorcist launch: - config: @@ -423025,7 +417054,7 @@ oslist: macos executable: Textorcist.app type: default -'940700': +"940700": installDir: Infinity Disk launch: - description: Play Game (Vive / WMR) @@ -423034,14 +417063,14 @@ - description: Play Game(Oculus) executable: InfinityDisk.exe type: othervr -'940710': +"940710": installDir: Colt Canyon launch: - config: oslist: windows executable: ColtCanyon.exe type: default -'940780': +"940780": installDir: Royal Roads launch: - config: @@ -423052,7 +417081,7 @@ oslist: macos executable: Royal Roads.app type: default -'940790': +"940790": installDir: Gnomes Garden Halloween launch: - config: @@ -423063,7 +417092,7 @@ oslist: macos executable: Gnomes Garden Halloween.app type: default -'940800': +"940800": installDir: Gnomes Garden Christmas Story launch: - config: @@ -423074,7 +417103,7 @@ oslist: macos executable: Gnomes Garden Christmas Story.app type: default -'940810': +"940810": installDir: Lost Artifacts Time Machine launch: - config: @@ -423085,33 +417114,33 @@ oslist: macos executable: Lost Artifacts Time Machine.app type: default -'940830': +"940830": installDir: Legacy of Lina launch: - executable: nw.exe type: default -'940850': +"940850": installDir: Taptiles launch: - - arguments: '-screen-fullscreen' + - arguments: "-screen-fullscreen" config: oslist: windows executable: Taptiles.exe type: default - - arguments: '-vrmode' + - arguments: "-vrmode" config: oslist: windows executable: Taptiles.exe type: vr -'940870': +"940870": installDir: Bloom launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Bloom.exe type: none -'940910': +"940910": installDir: Minoria launch: - config: @@ -423120,91 +417149,91 @@ type: default nameLocalized: japanese: ミノリア -'940980': - installDir: Phantasmat The Dread of Oakville Collector's Edition +"940980": + installDir: "Phantasmat The Dread of Oakville Collector's Edition" launch: - config: oslist: windows executable: Phantasmat_TheDreadOfOakville_CE.exe type: default -'940990': - installDir: Grim Facade The Artist and The Pretender Collector's Edition +"940990": + installDir: "Grim Facade The Artist and The Pretender Collector's Edition" launch: - config: oslist: windows executable: GrimFacade_TheArtistandthePretender_CE.exe type: default -'941000': - installDir: Witches' Legacy Lair of the Witch Queen Collector's Edition +"941000": + installDir: "Witches' Legacy Lair of the Witch Queen Collector's Edition" launch: - config: oslist: windows executable: WitchesLegacy_LairOfTheWitchQueen_CE.exe type: default -'941020': +"941020": installDir: BAYANI launch: - config: oslist: windows executable: Bayani.exe type: none -'941030': - installDir: Spirits of Mystery Chains of Promise Collector's Edition +"941030": + installDir: "Spirits of Mystery Chains of Promise Collector's Edition" launch: - config: oslist: windows executable: SpiritsOfMystery_ChainsOfPromise_CE.exe type: default -'941040': - installDir: Dark Romance The Swan Sonata Collector's Edition +"941040": + installDir: "Dark Romance The Swan Sonata Collector's Edition" launch: - config: oslist: windows executable: DarkRomance_TheSwanSonata_CE.exe type: default -'941050': - installDir: Sable Maze Twelve Fears Collector's Edition +"941050": + installDir: "Sable Maze Twelve Fears Collector's Edition" launch: - config: oslist: windows executable: SableMaze_TwelveFears_CE.exe type: default -'941120': +"941120": installDir: Optimum Link launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: OptimumLink.exe type: default -'941130': {} -'941140': {} -'941150': +"941130": {} +"941140": {} +"941150": installDir: PsiSyn The Game launch: - executable: PsiSyn.exe type: none - config: - ownsdlc: '995150' - description: 'PsiSyn: Workshop' - executable: workbench-DLC\\PsiSyn Workshop.exe + ownsdlc: "995150" + description: "PsiSyn: Workshop" + executable: "workbench-DLC\\\\PsiSyn Workshop.exe" type: option2 -'941160': +"941160": installDir: Slavicus launch: - - arguments: '-screen-height 720 -screen-width 1280' + - arguments: "-screen-height 720 -screen-width 1280" config: oslist: windows description: HD executable: Slavicus.exe type: default - - arguments: '-screen-height 1080 -screen-width 1920' + - arguments: "-screen-height 1080 -screen-width 1920" config: oslist: windows description: FullHD executable: Slavicus.exe type: default -'941200': +"941200": installDir: Red Beard Labyrinth launch: - config: @@ -423213,17 +417242,17 @@ type: default - config: oslist: macos - executable: Red Beard Labyrinth.app\\Contents\\MacOS\\Red Beard Labyrinth + executable: "Red Beard Labyrinth.app\\\\Contents\\\\MacOS\\\\Red Beard Labyrinth" type: default - config: oslist: linux executable: Red Beard Labyrinth.x86_64 type: default -'941300': +"941300": installDir: TouHou Nil Soul launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: v0.7.6.7 executable: Touhou Nil Soul.exe @@ -423234,7 +417263,7 @@ japanese: 東方夢零魂 schinese: 东方梦零魂 tchinese: 東方夢零魂 -'941320': +"941320": installDir: Mariner Accident launch: - config: @@ -423247,20 +417276,20 @@ type: none - config: oslist: macos - executable: Contents\\MacOS\\new + executable: "Contents\\\\MacOS\\\\new" type: none - config: oslist: windows - executable: win\\Mariner Accident.exe + executable: "win\\\\Mariner Accident.exe" type: none -'941330': +"941330": installDir: The detective ChuLin launch: - config: oslist: windows executable: The detective ChuLin.exe type: default -'941340': +"941340": installDir: TheManWithTheDog launch: - config: @@ -423273,33 +417302,33 @@ description: Experimental executable: TheManWithTheDog.exe type: option1 -'941350': +"941350": installDir: ConnectomePain Control launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Connectome_Pain_Control.exe type: none -'941390': +"941390": installDir: Washed Up Wizard launch: - config: oslist: windows executable: Washed Up Wizard.exe type: default -'941400': +"941400": installDir: Scraps and Patches launch: - config: oslist: macos - executable: mac\\S&P.app + executable: "mac\\\\S&P.app" type: default - config: oslist: windows - executable: windows\\S&P.exe + executable: "windows\\\\S&P.exe" type: default -'941460': +"941460": installDir: Death Trash launch: - config: @@ -423311,33 +417340,33 @@ executable: DeathTrash.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: DeathTrash type: default -'941480': +"941480": installDir: Giraffe Town launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Giraffe Town.exe type: none -'941500': {} -'941540': - installDir: Candice DeBébé's Scandalous Secrets +"941500": {} +"941540": + installDir: "Candice DeBébé's Scandalous Secrets" launch: - config: oslist: windows executable: CandiceSecrets.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: CandiceSecrets.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: CandiceSecrets.x86_64 type: default @@ -423345,17 +417374,17 @@ oslist: macos executable: CandiceSecrets.app type: default - - arguments: ' -show-screen-selector' + - arguments: " -show-screen-selector" config: oslist: windows executable: CandiceSecrets.exe type: config - - arguments: ' -show-screen-selector' + - arguments: " -show-screen-selector" config: oslist: macos executable: CandiceSecrets.app type: config -'941570': +"941570": installDir: Relicta launch: - config: @@ -423363,102 +417392,102 @@ description: DirectX 11 executable: Relicta.exe type: option2 - - arguments: '-dx12' + - arguments: "-dx12" config: oslist: windows description: DirectX 12 executable: Relicta.exe type: option1 -'941580': +"941580": installDir: Bad Day Betsy launch: - config: oslist: windows executable: Bad Day Betsy.exe type: default -'941600': +"941600": installDir: RoboBunnies In Space launch: - config: oslist: macos - executable: RoboBunniesInSpace.app\\Contents\\MacOS\\RoboBunniesInSpace + executable: "RoboBunniesInSpace.app\\\\Contents\\\\MacOS\\\\RoboBunniesInSpace" type: none - config: oslist: windows executable: RoboBunniesInSpace.exe type: none -'941620': +"941620": installDir: Galactic Tree Frog launch: - config: oslist: windows executable: GalacticAmphibians.exe type: default -'941630': +"941630": installDir: Little Memories launch: - config: oslist: windows executable: littlememories.exe type: default -'941650': +"941650": installDir: The Island In To The Mist launch: - executable: TheIsland.exe type: none nameLocalized: koreana: 그 섬 -'941670': +"941670": installDir: Warrior Fighter launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: WarriorFighter.exe type: default -'941710': +"941710": installDir: NO-GO launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: NO-GO.exe type: default -'941730': +"941730": installDir: Firebase Defence launch: - config: oslist: windows executable: firebase.exe type: default -'941760': {} -'941790': +"941760": {} +"941790": installDir: Chocolate makes you happy Halloween launch: - config: oslist: windows executable: Chocolate makes you happy Halloween.exe type: default -'941800': +"941800": installDir: Construct PRO launch: - config: oslist: windows executable: Construct PRO.exe type: default -'941810': {} -'941830': {} -'941850': +"941810": {} +"941830": {} +"941850": installDir: Vanguard Normandy 1944 launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: bin\\win_x64\\vanguard.exe + executable: "bin\\\\win_x64\\\\vanguard.exe" type: none -'941860': {} -'941870': {} -'941890': +"941860": {} +"941870": {} +"941890": installDir: Mini Matches launch: - config: @@ -423469,45 +417498,41 @@ oslist: macos executable: Mini Matches.app type: default -'941920': +"941920": installDir: Classic Card Games 3D launch: - config: oslist: windows executable: CardGames.exe type: default - - arguments: '-safemode' + - arguments: "-safemode" config: oslist: windows description: Safe mode (windowed) - description_loc: - english: Safe mode (windowed) executable: CardGames.exe type: option2 - - arguments: '-autoconfig' + - arguments: "-autoconfig" config: oslist: windows description: Autoconfig mode (fullscreen) - description_loc: - english: Autoconfig mode (fullscreen) executable: CardGames.exe type: option3 nameLocalized: french: Jeux de Cartes Classiques 3D german: Kartenspiel Klassiker 3D -'941980': +"941980": installDir: HotDog launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TheHotDogWouldExplode.exe type: default -'9420': +"9420": installDir: Supreme Commander Forged Alliance launch: - - executable: bin\\SupremeCommander.exe -'94200': + - executable: "bin\\\\SupremeCommander.exe" +"94200": installDir: Jamestown launch: - config: @@ -423516,37 +417541,37 @@ - config: oslist: macos executable: Jamestown.app -'942010': +"942010": installDir: The Third Building launch: - config: oslist: windows - executable: WindowsNoEditor\\HorrorEngineV424.exe + executable: "WindowsNoEditor\\\\HorrorEngineV424.exe" type: default -'942020': +"942020": installDir: Grimm & Tonic launch: - config: oslist: windows executable: GnT.exe type: none -'942050': - installDir: '2048' +"942050": + installDir: "2048" launch: - config: oslist: windows executable: 2048.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux - executable: '2048' + executable: "2048" type: default - config: oslist: macos executable: 2048.app/Contents/MacOS/nwjs type: default -'942060': +"942060": installDir: Jumpgrid launch: - config: @@ -423561,27 +417586,27 @@ oslist: linux executable: jumpgrid type: default -'942140': +"942140": installDir: Fap Queen launch: - config: oslist: windows executable: FQ.exe type: default -'942200': +"942200": installDir: Ricky Runner launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Ricky Runner.exe type: none -'942220': {} -'942250': +"942220": {} +"942250": installDir: Smith and Winston launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SmithAndWinston.exe type: default @@ -423590,11 +417615,11 @@ executable: SmithAndWinston.app/Contents/MacOS/SmithAndWinston type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: SmithAndWinston type: none -'942300': +"942300": installDir: Johnny Rocket launch: - config: @@ -423603,37 +417628,37 @@ type: default - config: oslist: macos - executable: JohnnyRocket.app\\Contents\\MacOS\\JohnnyRocket + executable: "JohnnyRocket.app\\\\Contents\\\\MacOS\\\\JohnnyRocket" type: default - config: oslist: linux - executable: JohnnyRocket.linux\\JohnnyRocket.x86_64 + executable: "JohnnyRocket.linux\\\\JohnnyRocket.x86_64" type: none -'942310': +"942310": installDir: Blocky Snake launch: - config: oslist: windows executable: Blocky Snake.exe type: default -'942320': +"942320": installDir: Halzae Heroes of Divinity launch: - config: oslist: windows executable: HalzaeHeroesOfDivinity.exe type: default -'942340': +"942340": installDir: Achievement Collector Space launch: - config: oslist: windows executable: nw.exe type: default -'942370': +"942370": installDir: Offside launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows executable: nw.exe @@ -423641,43 +417666,43 @@ - config: oslist: macos executable: nwjs.app -'942440': +"942440": installDir: DeathCave launch: - executable: deathCave.exe type: none -'942480': +"942480": installDir: Criminal Pursuit Force launch: - config: oslist: windows executable: Criminal Pursuit Force.exe type: default -'942490': +"942490": installDir: Double Bubble Blaster Madness VR launch: - - arguments: '-vr' + - arguments: "-vr" config: oslist: windows executable: BubbleAttack.exe type: vr -'942510': +"942510": installDir: Scamp High Hat Havoc launch: - config: oslist: windows executable: Scamp High Hat Havoc.exe type: default -'942520': +"942520": installDir: Thrusty Ship launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Thrusty Ship.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: ThrustyShip.x86 type: default @@ -423686,51 +417711,51 @@ executable: ThrustyShip.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: ThrustyShip.x86_64 type: default -'942530': +"942530": installDir: Two Till Midnight launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TwoTillMid.exe type: default -'942550': {} -'942560': {} -'942580': - installDir: An Adventurer's Tale +"942550": {} +"942560": {} +"942580": + installDir: "An Adventurer's Tale" launch: - config: oslist: windows - executable: An Adventurer's Tale.exe + executable: "An Adventurer's Tale.exe" type: default - config: oslist: macos - executable: An Adventurer's Tale.app + executable: "An Adventurer's Tale.app" type: default - config: oslist: linux - executable: An Adventurer's Tale.sh + executable: "An Adventurer's Tale.sh" type: default -'942600': +"942600": installDir: Temporality launch: - config: oslist: windows executable: Temporality.exe type: none -'942760': +"942760": installDir: Burnout Drift launch: - config: oslist: windows executable: Burnout Drift.exe type: default -'942840': {} -'942850': +"942840": {} +"942850": installDir: I Walk Among Zombies launch: - config: @@ -423740,23 +417765,23 @@ nameLocalized: japanese: ゾンビのあふれた世界で俺だけが襲われない schinese: 末世孤雄 Vol. 1 -'942870': +"942870": installDir: Lolly Pang VR launch: - config: oslist: windows executable: LollyPangVR.exe type: vr -'942900': - installDir: Goblin's Shop +"942900": + installDir: "Goblin's Shop" launch: - config: oslist: windows - executable: Goblin's Shop.exe + executable: "Goblin's Shop.exe" type: default -'942910': {} -'942920': {} -'942930': +"942910": {} +"942920": {} +"942930": installDir: MOE Hypnotist launch: - config: @@ -423767,7 +417792,7 @@ oslist: macos executable: game.app type: none -'942970': +"942970": installDir: Unheard launch: - config: @@ -423778,7 +417803,7 @@ oslist: macos executable: Unheard.app type: default -'94300': +"94300": installDir: The Dream Machine launch: - config: @@ -423789,15 +417814,15 @@ oslist: macos executable: the_dream_machine.app type: default -'943010': +"943010": installDir: Rapid Fire launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: RapidFire.exe type: vr -'943030': +"943030": installDir: NIGHT FALLEN launch: - config: @@ -423807,33 +417832,33 @@ type: default - config: oslist: macos - description: 'Mac OS ' + description: "Mac OS " executable: Night Fallen.app type: default -'943040': +"943040": installDir: Inside Grass launch: - config: oslist: windows executable: Inside Grass.exe type: none -'943080': +"943080": installDir: Siege - Battle of Ashington launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Siege.exe type: vr -'943100': {} -'943130': +"943100": {} +"943130": installDir: Cattle Call launch: - config: oslist: windows executable: Cattle Call.exe type: default -'943140': +"943140": installDir: Sparklite launch: - config: @@ -423848,27 +417873,27 @@ oslist: linux executable: Sparklite.x86_64 type: default -'943150': +"943150": installDir: Nostos launch: - - arguments: '-vrmode None' + - arguments: "-vrmode None" config: oslist: windows executable: Nostos.exe type: default - - arguments: '-vrmode OpenVR' + - arguments: "-vrmode OpenVR" config: oslist: windows executable: Nostos.exe type: vr -'943170': +"943170": installDir: Blast_the_Past launch: - config: oslist: windows executable: BlastThePast.exe type: vr -'943190': +"943190": installDir: OCTOPTICOM launch: - config: @@ -423876,28 +417901,28 @@ executable: OCTOPTICOM.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: OCTOPTICOM.sh type: default -'943210': +"943210": installDir: SUB FOUR -the uncle- launch: - executable: ksg.exe type: none - config: - ownsdlc: '956610' + ownsdlc: "956610" description: DLC Quiz mode executable: quiz.exe type: none -'943230': +"943230": installDir: Thrill Rollercoasters launch: - config: oslist: windows executable: Thrill Rollercoaster.exe type: vr -'943260': +"943260": installDir: Stranded Sails launch: - config: @@ -423906,25 +417931,25 @@ type: none nameLocalized: german: Stranded Sails - Entdecker der verfluchten Inseln - schinese: '落難航船:詛咒之島的探險者' -'943270': {} -'943290': + schinese: "落難航船:詛咒之島的探險者" +"943270": {} +"943290": installDir: Zombie school-丧尸学院 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SSXY.exe type: vr -'943310': +"943310": installDir: ManGuin Penguin Apocalypse launch: - config: oslist: windows executable: ManGuin.exe type: default -'943330': {} -'943370': +"943330": {} +"943370": installDir: Bravery and Greed launch: - config: @@ -423933,7 +417958,7 @@ type: default nameLocalized: schinese: 英勇无厌 -'943380': +"943380": installDir: TimbermanVS launch: - config: @@ -423944,14 +417969,14 @@ oslist: macos executable: TimbermanVS.app type: default -'943390': +"943390": installDir: Pan Panda launch: - config: oslist: windows executable: PanPanda.exe type: none -'943410': +"943410": installDir: Istanbul Digital Edition launch: - config: @@ -423963,47 +417988,47 @@ executable: Istanbul.app/Contents/MacOS/Istanbul type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: Istanbul.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: Istanbul.x86_64 type: none -'943440': +"943440": installDir: Cards of Knight launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Cards of Knight.exe type: default -'943510': +"943510": installDir: Blindia launch: - config: oslist: windows executable: Blindia.exe type: default -'943520': +"943520": installDir: Pixie Panic Garden launch: - config: oslist: windows executable: PixiePanicGarden.exe type: default -'943590': +"943590": installDir: BlitzKeep Unleashed launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: BlitzKeep Unleashed.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: BlitzKeep Unleashed.exe type: default @@ -424012,16 +418037,16 @@ executable: BlitzKeep Unleashed.app/Contents/MacOS/BlitzKeep Unleashed type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: BlitzKeep Unleashed.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: BlitzKeep Unleashed.x86_64 type: default -'943630': +"943630": installDir: Star Trek En Territoire Alien launch: - config: @@ -424036,7 +418061,7 @@ oslist: windows executable: Star Trek En Territoire Alien.exe type: none -'943640': +"943640": installDir: SSO launch: - config: @@ -424051,38 +418076,38 @@ oslist: windows executable: Sacred Saga Online.exe type: none -'943680': +"943680": installDir: Bargain Hunter launch: - config: oslist: windows executable: Bargain Hunter.exe type: default -'943700': +"943700": installDir: MGI Prologue launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: MGI Prologue\\MGI.exe + executable: "MGI Prologue\\\\MGI.exe" type: default -'943710': +"943710": installDir: Arauco Saga launch: - config: oslist: windows executable: Arauco Saga.exe type: default -'943810': +"943810": installDir: Chaos Sector launch: - config: oslist: windows executable: Chaos Sector.exe type: default -'943860': {} -'943880': {} -'943900': +"943860": {} +"943880": {} +"943900": installDir: Tombeaux launch: - config: @@ -424093,7 +418118,7 @@ oslist: macos executable: Tombeaux.app type: default -'943920': +"943920": installDir: Spinball launch: - config: @@ -424106,60 +418131,60 @@ description: Play Spinball executable: spinball type: default -'943950': +"943950": installDir: Photo Finish launch: - config: oslist: windows executable: Photo Finish.exe type: default -'943960': +"943960": installDir: 3Buttons launch: - config: - osarch: '64' + osarch: "64" oslist: windows - description: '3Buttons, Windows 64-bit' + description: "3Buttons, Windows 64-bit" executable: 3Buttons-Windows_x86_64.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows - description: '3Buttons, Windows 32-bit' + description: "3Buttons, Windows 32-bit" executable: 3Buttons-Windows_x86.exe type: default - config: oslist: macos - description: '3Buttons, Mac OS X' + description: "3Buttons, Mac OS X" executable: 3Buttons-Mac_OS_X.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux - description: '3Buttons, Linux 64-bit' + description: "3Buttons, Linux 64-bit" executable: 3Buttons.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: linux - description: '3Buttons, Linux 32-bit' + description: "3Buttons, Linux 32-bit" executable: 3Buttons.x86 type: default -'943970': +"943970": installDir: DJ Whip VR launch: - config: oslist: windows executable: DJ Whip VR.exe type: vr -'943980': +"943980": installDir: The logic of the miniature garden launch: - config: oslist: windows executable: ExHIBIT.exe type: none -'94400': +"94400": installDir: Nidhogg launch: - config: @@ -424170,14 +418195,14 @@ oslist: macos description: Launch executable: Nidhogg.app -'944010': +"944010": installDir: SWINE HD Remaster launch: - config: oslist: windows executable: swineHD.exe type: default -'944020': +"944020": installDir: Dream Ending launch: - config: @@ -424187,35 +418212,35 @@ nameLocalized: schinese: 梦末 tchinese: 夢末 -'944030': +"944030": installDir: Chimera of Tactics 3-Gun and Football launch: - config: oslist: windows executable: ZSKX3.exe type: default -'944100': +"944100": installDir: Poisoner launch: - config: oslist: windows executable: Poisoner.exe type: vr -'944110': +"944110": installDir: Pocket Waifu launch: - config: oslist: windows executable: pw_steam.exe type: none -'944120': +"944120": installDir: Abalyte launch: - config: oslist: windows executable: Abalyte.exe type: default -'944180': +"944180": installDir: Titan Outpost launch: - config: @@ -424227,42 +418252,42 @@ executable: TitanOutpost.app type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: TitanOutpostL.x86_64 type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: TitanOutpost.x86_64 type: none -'944200': +"944200": installDir: El Pansas launch: - config: oslist: windows executable: El Pansas.exe type: default -'944220': +"944220": installDir: Gachi Heroes launch: - config: oslist: windows executable: nw.exe type: none -'944250': +"944250": installDir: Castle Flipper launch: - executable: Castle Flipper.exe type: default nameLocalized: schinese: Castle Flipper (城堡达人) -'944260': +"944260": installDir: GG Puzzler launch: - executable: GG Puzzler.exe type: default -'944300': +"944300": installDir: Byte Driver launch: - config: @@ -424274,100 +418299,100 @@ executable: ByteDriver.app type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: ByteDr.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: ByteDr.x86_64 type: none -'944330': +"944330": installDir: Hunt and Snare launch: - - arguments: '-steam' + - arguments: "-steam" config: - osarch: '64' + osarch: "64" oslist: windows executable: ruffleneck.exe type: default - - arguments: '-steam -noburst' + - arguments: "-steam -noburst" config: oslist: macos description: Old Processor Support - executable: ruffleneck.app\\Contents\\MacOS\\ruffleneck + executable: "ruffleneck.app\\\\Contents\\\\MacOS\\\\ruffleneck" type: none - - arguments: '-steam' + - arguments: "-steam" config: - osarch: '64' + osarch: "64" oslist: linux executable: ruffleneck.x64 type: default - - arguments: '-steam -censored' + - arguments: "-steam -censored" config: - osarch: '64' + osarch: "64" oslist: windows description: Censored executable: ruffleneck.exe type: none - - arguments: '-steam -censored' + - arguments: "-steam -censored" config: - osarch: '64' + osarch: "64" oslist: linux description: Censored executable: ruffleneck.x64 type: none - - arguments: '-steam -censored -noburst' + - arguments: "-steam -censored -noburst" config: oslist: macos description: Old Processor Support Censored - executable: ruffleneck.app\\Contents\\MacOS\\ruffleneck + executable: "ruffleneck.app\\\\Contents\\\\MacOS\\\\ruffleneck" type: none - - arguments: '-steam -noburst' + - arguments: "-steam -noburst" config: - osarch: '64' + osarch: "64" oslist: windows description: Old Processor Support executable: ruffleneck.exe type: none - - arguments: '-steam -censored -noburst' + - arguments: "-steam -censored -noburst" config: - osarch: '64' + osarch: "64" oslist: windows description: Old Processor Support Censored executable: ruffleneck.exe type: none - - arguments: '-steam -noburst' + - arguments: "-steam -noburst" config: - osarch: '64' + osarch: "64" oslist: linux description: Old Processor Support executable: ruffleneck.x64 type: none - - arguments: '-steam -censored -noburst' + - arguments: "-steam -censored -noburst" config: - osarch: '64' + osarch: "64" oslist: linux description: Old Processor Support Censored executable: ruffleneck.x64 type: none - - arguments: '-steam' + - arguments: "-steam" config: oslist: macos - executable: ruffleneck.app\\Contents\\MacOS\\ruffleneck + executable: "ruffleneck.app\\\\Contents\\\\MacOS\\\\ruffleneck" type: default - - arguments: '-steam -censored' + - arguments: "-steam -censored" config: oslist: macos description: Censored - executable: ruffleneck.app\\Contents\\MacOS\\ruffleneck + executable: "ruffleneck.app\\\\Contents\\\\MacOS\\\\ruffleneck" type: none -'944340': +"944340": installDir: Vignettes launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Vignettes.exe type: default @@ -424375,36 +418400,36 @@ oslist: macos executable: Vignettes.app type: default -'944370': {} -'944380': +"944370": {} +"944380": installDir: Drunk Puppet launch: - executable: Puppet.exe type: none -'944420': +"944420": installDir: King Of Gods Angel The Awakening Of A Demon launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows executable: nw.exe type: default -'944430': +"944430": installDir: The Last Friend launch: - config: oslist: windows executable: The Last Friend.exe type: default -'944440': +"944440": installDir: powercutinc launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: nw.exe type: default -'944450': +"944450": installDir: Escape Velocity launch: - config: @@ -424415,26 +418440,26 @@ oslist: macos executable: mac_content.app type: default -'944500': +"944500": installDir: Antistatic launch: - - arguments: '--disallow-code-generation-from-strings ./app/dist/src/launch.js' + - arguments: "--disallow-code-generation-from-strings ./app/dist/src/launch.js" config: - osarch: '64' + osarch: "64" oslist: windows description: Default executable: Antistatic.exe type: default -'944530': +"944530": installDir: Sweet Seasons launch: - config: oslist: windows executable: Sweet Seasons.exe type: default -'944550': {} -'944560': {} -'944590': +"944550": {} +"944560": {} +"944590": installDir: Thunder Kid launch: - config: @@ -424445,27 +418470,27 @@ oslist: macos executable: Thunder Kid.app type: none -'944610': +"944610": installDir: automobiles and the eisenhower hiway system the game launch: - executable: automobiels and the Eisenhower Hiway system the game.exe type: none -'944620': {} -'944630': +"944620": {} +"944630": installDir: MOLOCH (Zero) launch: - config: oslist: windows executable: MOLOCH_zero.exe type: default -'944640': - installDir: Xenia's Ark +"944640": + installDir: "Xenia's Ark" launch: - config: oslist: windows - executable: Xenia's Ark.exe + executable: "Xenia's Ark.exe" type: default -'944650': +"944650": installDir: The Mysteries of Baroque launch: - config: @@ -424480,29 +418505,29 @@ oslist: linux executable: MysteriesOfBaroque type: none -'944690': +"944690": installDir: Star Goddess launch: - config: oslist: windows executable: Star Goddess.exe type: default -'944710': +"944710": installDir: TurnTack launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TurnTack.exe type: none -'944720': +"944720": installDir: Hellbanger launch: - config: oslist: windows executable: Hellbanger.exe type: default -'944730': +"944730": installDir: Trends launch: - config: @@ -424514,21 +418539,21 @@ executable: Trends.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Trends.x86_64 type: default -'944740': +"944740": installDir: SanguoWarriorsVR2 launch: - - arguments: '-vr' + - arguments: "-vr" config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: super_vrsg.exe type: vr -'944810': +"944810": installDir: Dr. Cares 3 - Family Practice launch: - config: @@ -424537,9 +418562,9 @@ type: none - config: oslist: macos - executable: Dr. Cares 3 Steam.app\\Contents\\MacOS\\Dr. Cares 3 Steam + executable: "Dr. Cares 3 Steam.app\\\\Contents\\\\MacOS\\\\Dr. Cares 3 Steam" type: none -'944830': +"944830": installDir: Swap Swap launch: - config: @@ -424550,15 +418575,15 @@ oslist: macos executable: swapswap.app type: default -'944840': +"944840": installDir: Mixed Estate launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: MixedEstate.exe type: vr -'944860': +"944860": installDir: Perverts Society launch: - config: @@ -424573,7 +418598,7 @@ oslist: linux executable: PervertsSociety.x86 type: none -'944910': +"944910": installDir: Knife Sisters launch: - config: @@ -424588,16 +418613,16 @@ oslist: linux executable: KnifeSisters.x86_64 type: default -'944920': +"944920": installDir: Nanotale launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Nanotale.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Nanotale type: default @@ -424607,27 +418632,27 @@ type: default nameLocalized: schinese: 魔境奇缘:文字大冒险 -'944960': +"944960": installDir: ContactLastDefence launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: CLDF.exe type: vr -'9450': +"9450": installDir: Dawn of War Soulstorm launch: - executable: soulstorm.exe -'945100': +"945100": installDir: Bassline Sinker launch: - config: oslist: windows executable: Bassline Sinker.exe type: none -'945110': {} -'945140': +"945110": {} +"945140": installDir: dev_me launch: - config: @@ -424638,7 +418663,7 @@ oslist: macos executable: dev_me.app type: none -'945160': +"945160": installDir: Angelo and Deemon One Hell of a Quest launch: - config: @@ -424653,15 +418678,15 @@ oslist: linux executable: angelo-deemon.x86_64 type: default -'945240': +"945240": installDir: Fly High launch: - config: oslist: windows executable: BUILD 10.09.18_2.exe type: default -'945300': {} -'945340': +"945300": {} +"945340": installDir: Ravva and the Cyclops Curse launch: - config: @@ -424673,16 +418698,16 @@ executable: RavvaOSX.app type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: RavvaLNX.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: RavvaLNX.x86_64 type: none -'945360': +"945360": installDir: Among Us launch: - config: @@ -424693,14 +418718,14 @@ oslist: macos executable: AmongUs.app type: default -'945390': +"945390": installDir: Bala na manga launch: - config: oslist: windows executable: Bala Na Manga.exe type: default -'945440': +"945440": installDir: Tiny Bird Garden launch: - config: @@ -424711,14 +418736,14 @@ oslist: macos executable: Tiny Bird Garden Deluxe.app type: none -'945460': +"945460": installDir: Zombie Builder Defense launch: - config: oslist: windows executable: ZBDefense.exe type: default -'945490': +"945490": installDir: Little Square Things launch: - config: @@ -424726,47 +418751,47 @@ executable: Little Square Things.exe type: default - config: - ownsdlc: '1110590' + ownsdlc: "1110590" description: Legacy Version - executable: Legacy\\Little Square Things (Legacy).exe + executable: "Legacy\\\\Little Square Things (Legacy).exe" type: option1 workingdir: Legacy -'945500': +"945500": installDir: Steel Dungeon launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SteelDungeon.exe type: default -'945520': +"945520": installDir: The Perfectionist launch: - config: oslist: windows executable: ThePerfectionist.exe type: default -'945530': +"945530": installDir: Bohrdom launch: - config: oslist: windows executable: Bohrdom.exe type: none -'945550': +"945550": installDir: Tiger Striker launch: - executable: game.exe type: none -'945570': {} -'945580': +"945570": {} +"945580": installDir: Bubbles the Cat launch: - config: oslist: windows executable: BubblesTheCat.exe type: none -'945590': +"945590": installDir: Cliché - Critical Change launch: - config: @@ -424774,22 +418799,22 @@ description: Launch executable: cliche.exe type: none -'945610': - installDir: Tall Guy Productions - Lil' Arena +"945610": + installDir: "Tall Guy Productions - Lil' Arena" launch: - config: oslist: windows - executable: Lil' Arena.exe + executable: "Lil' Arena.exe" type: default -'945620': +"945620": installDir: Tadpole Swimmer launch: - config: oslist: windows executable: Tadpole Swimmer.exe type: default -'945630': {} -'945680': +"945630": {} +"945680": installDir: HereBeDragons launch: - config: @@ -424798,26 +418823,26 @@ type: default - config: oslist: macos - executable: hbd.app\\Contents\\MacOS\\hbd + executable: "hbd.app\\\\Contents\\\\MacOS\\\\hbd" type: default -'945700': {} -'945710': +"945700": {} +"945710": installDir: DreadOut 2 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: DreadOut2.exe type: default -'945740': +"945740": installDir: Buildings Have Feelings Too! launch: - config: oslist: windows executable: Buildings Have Feelings Too!.exe type: default -'945770': {} -'945810': +"945770": {} +"945810": installDir: Bayala launch: - config: @@ -424830,11 +418855,11 @@ german: bayala - das spiel italian: bayala - il gioco spanish: bayala - el juego -'945820': +"945820": installDir: Spotter launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: Spotter.exe @@ -424842,24 +418867,24 @@ - config: oslist: macos description: Launch - executable: Spotter.app\\Contents\\MacOS\\Spotter + executable: "Spotter.app\\\\Contents\\\\MacOS\\\\Spotter" type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Spotter.x86_64 type: default -'945850': - installDir: Hunter's Trial +"945850": + installDir: "Hunter's Trial" launch: - executable: HuntersTrial.exe type: default -'945870': +"945870": installDir: Starcross Arena launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: StarcrossArena.exe type: none @@ -424867,27 +418892,27 @@ oslist: linux executable: StarcrossArena.sh type: none - - arguments: '-d3d12' + - arguments: "-d3d12" config: betakey: alpha - osarch: '64' + osarch: "64" oslist: windows description: with D3D12 and RTX (On RTX GPUs) executable: StarcrossArena.exe type: option1 -'945880': - installDir: Beer'em Up +"945880": + installDir: "Beer'em Up" launch: - executable: BeerEmUp.exe type: default -'945890': +"945890": installDir: Hentai no Hero launch: - config: oslist: windows executable: HnH.exe type: none -'94590': +"94590": installDir: Puzzle Agent 2 launch: - config: @@ -424896,7 +418921,7 @@ - config: oslist: macos executable: Grickle102.app -'945910': +"945910": installDir: TerrorForTwo launch: - config: @@ -424907,25 +418932,25 @@ oslist: macos executable: TerrorForTwoMacOSX.app type: default -'945920': +"945920": installDir: Long Arm of the Law launch: - executable: LongArmOfTheLaw.exe type: default -'945950': +"945950": installDir: Shopkeepers Tale launch: - - arguments: ' --in-process-gpu' + - arguments: " --in-process-gpu" config: oslist: windows executable: Shopkeeper.exe type: default -'9460': +"9460": installDir: Frontlines Fuel of War launch: - - executable: Binaries\\ffow.exe + - executable: "Binaries\\\\ffow.exe" workingdir: Binaries -'94600': +"94600": installDir: Hector Episode 1 launch: - config: @@ -424934,14 +418959,14 @@ - config: oslist: macos executable: Hector101.app -'946000': +"946000": installDir: Captain MaCaw launch: - config: oslist: windows executable: MaCaw.exe type: none -'946010': +"946010": installDir: Tasty Planet Forever launch: - config: @@ -424954,30 +418979,26 @@ description: Launch executable: Tasty Planet Forever.app type: none -'946030': +"946030": installDir: Axiom Verge 2 launch: - config: oslist: windows executable: AxiomVerge2.exe type: default - - arguments: '/gldevice:Vulkan' + - arguments: "/gldevice:Vulkan" config: oslist: linux description: with Vulkan (default) - description_loc: - english: with Vulkan (default) executable: AxiomVerge2 type: option1 - - arguments: '/gldevice:OpenGL' + - arguments: "/gldevice:OpenGL" config: oslist: linux description: with OpenGL - description_loc: - english: with OpenGL executable: AxiomVerge2 type: option2 -'946040': +"946040": installDir: Supply Chain Idle launch: - config: @@ -424988,12 +419009,12 @@ oslist: linux executable: SupplyChainIdle.x86 type: default - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" config: oslist: windows executable: SupplyChainIdle.exe type: config - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" config: oslist: linux executable: SupplyChainIdle.x86 @@ -425002,12 +419023,12 @@ oslist: macos executable: SupplyChainIdle.app type: default - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" config: oslist: macos executable: SupplyChainIdle.app type: config -'946050': +"946050": installDir: Soda Dungeon 2 launch: - config: @@ -425018,20 +419039,20 @@ oslist: macos executable: SodaDungeon2.app type: none -'946060': {} -'946070': +"946060": {} +"946070": installDir: Abstract launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Abstract.exe type: default -'946080': +"946080": installDir: The Earth Dies Screaming launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: nw.exe type: none @@ -425039,123 +419060,123 @@ oslist: macos executable: EDS.app type: none -'946090': +"946090": installDir: Hentai Neighbors launch: - config: oslist: windows executable: Hentai Neighbors.exe type: default -'946160': {} -'946170': +"946160": {} +"946170": installDir: Papper Balls launch: - executable: Papper Balls.exe type: none -'946190': +"946190": installDir: Loveless cat launch: - config: oslist: windows executable: Lovaless Cat.exe type: default -'946200': {} -'946210': +"946200": {} +"946210": installDir: Secret_Girl launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: Secret_Girl\\SteamG\\Binaries\\Win64\\SteamG-Win64-Shipping.exe + executable: "Secret_Girl\\\\SteamG\\\\Binaries\\\\Win64\\\\SteamG-Win64-Shipping.exe" type: default -'946230': {} -'946240': +"946230": {} +"946240": installDir: Xobox launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Xobox/MyXoboX/Binaries/Win64/MyXoboX-Win64-Shipping.exe type: none - config: - osarch: '32' + osarch: "32" oslist: windows executable: Xobox/MyXoboX/Binaries/Win32/MyXoboX-Win32-Shipping.exe type: none - config: - osarch: '32' + osarch: "32" oslist: windows executable: XoboxVR/MyXoboX/Binaries/Win32/MyXoboX-Win32-Shipping.exe type: vr - config: - osarch: '64' + osarch: "64" oslist: windows executable: XoboxVR/MyXoboX/Binaries/Win64/MyXoboX-Win64-Shipping.exe type: vr -'946280': {} -'946290': {} -'946300': +"946280": {} +"946290": {} +"946300": installDir: Shooting Chicken Insanity Chickens launch: - config: oslist: windows executable: Shooting Chicken Insanity Chickens.exe type: default -'946320': {} -'946330': +"946320": {} +"946330": installDir: Fallen Threats launch: - executable: FALLEN THREATS PC.exe type: none -'946340': +"946340": installDir: LOSTCAVE launch: - config: oslist: windows executable: LostCave.exe type: vr -'946360': +"946360": installDir: inside path launch: - config: oslist: windows executable: insidepath.exe type: default -'946380': +"946380": installDir: TheMemory launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: StMors.exe type: default -'946400': +"946400": installDir: Slime Quest launch: - executable: SlimeQuest.exe type: none -'946460': +"946460": installDir: Seven days with the Ghost launch: - config: oslist: windows executable: 7days_with_the_Ghost.exe type: default -'946490': {} -'946500': +"946490": {} +"946500": installDir: Waifu Hunter - Episode 1 The Runaway Samurai launch: - config: oslist: windows executable: Waifu Hunter Episode 1 - The Runaway Samurai.exe type: default -'946550': +"946550": installDir: Hentai Forest launch: - executable: Hentai Forest.exe type: none -'946560': - installDir: Don't Forget Our Esports Dream +"946560": + installDir: "Don't Forget Our Esports Dream" launch: - config: oslist: windows @@ -425169,10 +419190,10 @@ oslist: linux executable: EsportsDream.sh type: none -'946600': +"946600": installDir: Girl with a big SWORD launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows description: Launch @@ -425186,13 +419207,13 @@ oslist: macos executable: Game.app type: none -'946610': +"946610": installDir: Pocket Rogues launch: - executable: Pocket Rogues.exe type: default -'946650': - installDir: Streets of Red Devil's Dare Deluxe +"946650": + installDir: "Streets of Red Devil's Dare Deluxe" launch: - config: oslist: windows @@ -425206,7 +419227,7 @@ oslist: linux executable: StreetsOfRed.x86 type: default -'946660': +"946660": installDir: Loria launch: - config: @@ -425218,11 +419239,11 @@ executable: Loria/Loria.app type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: Loria/Loria.x86_64 type: none -'946670': +"946670": installDir: School Owner launch: - config: @@ -425237,7 +419258,7 @@ oslist: linux executable: SchoolOwner.x86 type: none -'946680': +"946680": installDir: Boss Barrage launch: - config: @@ -425246,21 +419267,21 @@ type: none - config: oslist: macos - executable: ballbarrage.app\\Contents\\MacOS\\Ball Barrage + executable: "ballbarrage.app\\\\Contents\\\\MacOS\\\\Ball Barrage" type: default -'946690': +"946690": installDir: GoGoGo launch: - executable: game.exe type: none -'946700': +"946700": installDir: No King No Kingdom VR launch: - executable: No King No Kingdom.exe type: othervr - executable: No King No Kingdom.exe type: vr -'946720': +"946720": installDir: To The Rescue! launch: - config: @@ -425275,17 +419296,15 @@ - config: betakey: qa_branch oslist: windows - description: 'Launch QA build. ' - description_loc: - english: 'Launch QA build. ' + description: "Launch QA build. " executable: launcher/freedom-launcher.exe - config: betakey: internaltest oslist: windows executable: To The Rescue!.exe type: default -'946770': {} -'946780': +"946770": {} +"946780": installDir: MOMO.EXE 2 launch: - config: @@ -425300,7 +419319,7 @@ oslist: linux executable: MOMO.EXE 2.x86_64 type: default -'946790': +"946790": installDir: Colo Grid Zation launch: - config: @@ -425309,24 +419328,24 @@ type: default - config: oslist: macos - executable: Contents\\MacOS\\ColoGridZation + executable: "Contents\\\\MacOS\\\\ColoGridZation" type: none -'946800': +"946800": installDir: Hentai 2+2=4 launch: - config: oslist: windows executable: Hentai Mathematics.exe type: default -'946810': +"946810": installDir: the Escape launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: The escape.exe type: default -'946860': +"946860": installDir: StampBoy launch: - config: @@ -425338,20 +419357,20 @@ executable: StampBoy.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: StampBoyLinux.x86_64 type: default -'946920': {} -'946950': +"946920": {} +"946950": installDir: BoxTheTop launch: - config: oslist: windows executable: BoxTheTop.exe type: none -'946980': {} -'946990': +"946980": {} +"946990": installDir: Secret Government launch: - config: @@ -425360,15 +419379,15 @@ type: default - config: oslist: macos - executable: Secret Government.app\\Contents\\MacOS\\Secret Government + executable: "Secret Government.app\\\\Contents\\\\MacOS\\\\Secret Government" type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Secret Government.x86_64 type: default -'947040': {} -'947060': +"947040": {} +"947060": installDir: Paper Shakespeare Dating Sim 2 launch: - config: @@ -425381,9 +419400,9 @@ type: default - config: oslist: macos - executable: Paper_Shakespeare_DS2.app\\Contents\\MacOS\\Paper_Shakespeare_DS2 + executable: "Paper_Shakespeare_DS2.app\\\\Contents\\\\MacOS\\\\Paper_Shakespeare_DS2" type: default -'947070': +"947070": installDir: Dashing Dinosaurs launch: - config: @@ -425392,13 +419411,13 @@ type: default - config: oslist: macos - executable: DashingDinos.app\\Contents\\MacOS\\DashingDinos + executable: "DashingDinos.app\\\\Contents\\\\MacOS\\\\DashingDinos" type: default - config: oslist: linux executable: DashingDinos.sh type: default -'947080': +"947080": installDir: JOE_PAPP_2 launch: - config: @@ -425409,11 +419428,11 @@ oslist: linux executable: TheGhostofJoePapp2.sh type: default -'947120': +"947120": installDir: Where The Water Tastes Like Wine - Fireside Chats launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: Fireside Chats Win32.exe type: default @@ -425422,22 +419441,22 @@ executable: Fireside Chats Mac.app/Contents/MacOS/Fireside Chats Mac type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: Fireside Chats Win64.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Fireside Chats Linux.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Fireside Chats Linux.x86_64 type: default -'947230': {} -'947250': +"947230": {} +"947250": installDir: Bibi & Tina - Adventures with Horses launch: - config: @@ -425445,7 +419464,7 @@ description: Bibi und Tina Test-Build executable: Bibi und Tina_steam.exe type: default -'947260': +"947260": installDir: Bibi Blocksberg - Big Broom Race 3 launch: - config: @@ -425453,7 +419472,7 @@ description: Bibi Blocksberg - Big Broom Race 3 executable: game.exe type: default -'947270': +"947270": installDir: I love the money launch: - config: @@ -425464,7 +419483,7 @@ oslist: macos executable: I love the money.app type: default -'947290': +"947290": installDir: Arkane Rush launch: - config: @@ -425479,7 +419498,7 @@ oslist: linux executable: ArkaneRush.x86_64 type: default -'947300': +"947300": installDir: Grim Nights launch: - config: @@ -425489,11 +419508,11 @@ type: option1 - config: oslist: windows - ownsdlc: '1025340' + ownsdlc: "1025340" description: Grim Nights - Elven Curse (DLC) - executable: DLC\\GrimNightsElvenCurse.exe + executable: "DLC\\\\GrimNightsElvenCurse.exe" type: option2 -'947310': +"947310": installDir: Wonderland Trails launch: - config: @@ -425506,9 +419525,9 @@ type: none - config: oslist: macos - executable: Wonderland Trails.app\\Contents\\MacOS\\Wonderland Trails + executable: "Wonderland Trails.app\\\\Contents\\\\MacOS\\\\Wonderland Trails" type: none -'947390': +"947390": installDir: Doodle Farm launch: - config: @@ -425516,7 +419535,7 @@ executable: DoodleFarm.exe type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: DoodleGame type: none @@ -425524,7 +419543,7 @@ oslist: macos executable: DoodleFarm.app type: none -'947400': +"947400": installDir: Mahjong Secrets launch: - config: @@ -425535,7 +419554,7 @@ oslist: macos executable: MahjongSecrets.app type: none -'947430': +"947430": installDir: KiritanVSKanitan launch: - config: @@ -425546,15 +419565,15 @@ oslist: macos executable: KiritanVSKanitan.app type: default -'947450': +"947450": installDir: Super BOO Quest launch: - config: oslist: windows executable: Super BOO Quest.exe type: none -'947460': {} -'947470': +"947460": {} +"947470": installDir: Optica launch: - config: @@ -425566,35 +419585,35 @@ oslist: macos executable: Optica.app type: none -'947490': +"947490": installDir: Jam Studio VR - Education & Health Care Edition launch: - config: oslist: windows executable: windows_content/Jam Studio VR.exe type: vr -'947500': {} -'947530': +"947500": {} +"947530": installDir: The Cup launch: - config: oslist: windows executable: TheCup.exe type: default -'947540': +"947540": installDir: Spacefarers! launch: - config: oslist: windows executable: Spacefarers.exe type: default -'947560': {} -'947580': +"947560": {} +"947580": installDir: Expedition Oregon launch: - executable: expeditionoregon.exe type: default -'947600': +"947600": installDir: Eroico launch: - config: @@ -425603,54 +419622,54 @@ type: none - executable: game.exe type: none -'947640': {} -'947830': +"947640": {} +"947830": installDir: Beyond launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: Beyond.exe type: default -'947880': +"947880": installDir: Radio Violence launch: - config: oslist: windows executable: Radio Violence.exe type: default -'947890': +"947890": installDir: VirtualCast launch: - - arguments: '-platform-steam' + - arguments: "-platform-steam" config: - osarch: '64' + osarch: "64" oslist: windows executable: VirtualCast.exe type: vr -'947940': +"947940": installDir: SCP Nukalypse launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launching SCP Nukalypse... executable: SCP Nukalypse.exe type: default -'947960': +"947960": installDir: RibbonRacer launch: - config: oslist: windows executable: rr.exe type: default -'947970': +"947970": installDir: Roads of Rome New Generation 2 launch: - executable: RoR_NG2.exe type: none -'9480': +"9480": installDir: Saints Row 2 launch: - config: @@ -425659,34 +419678,34 @@ type: default - config: oslist: linux - executable: ./saintsrow2 + executable: "./saintsrow2" type: default - config: oslist: macos executable: Saints Row 2.app type: default -'948000': {} -'948020': +"948000": {} +"948020": installDir: Mojo 2 launch: - executable: game.exe type: none -'948070': +"948070": installDir: snuse221 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: horror.exe type: default -'948080': +"948080": installDir: Lights Out launch: - config: oslist: windows executable: LightsOut.exe type: none -'948100': +"948100": installDir: AREA4643 launch: - config: @@ -425697,29 +419716,29 @@ oslist: macos executable: yoroshi.app type: default -'948120': +"948120": installDir: IGS launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TheMummyPharaoh.exe type: default -'948200': +"948200": installDir: MiniGolfBuddies launch: - config: oslist: windows executable: MiniGolfBuddies.exe type: default -'948240': +"948240": installDir: Voltage Drop launch: - config: oslist: windows executable: vdrop.exe type: default -'948270': +"948270": installDir: Byte Chaser launch: - config: @@ -425730,14 +419749,14 @@ oslist: macos executable: Byte Chaser.app type: none -'948320': +"948320": installDir: Dragon Simulator Multiplayer launch: - config: oslist: windows executable: DragonSimulatorMultiplayer.exe type: none -'948330': +"948330": installDir: Werewolf Hunter X launch: - config: @@ -425746,20 +419765,20 @@ type: default - config: oslist: macos - executable: Werewolf_Hunter_X.app\\Contents\\MacOS\\Werewolf_Hunter_X + executable: "Werewolf_Hunter_X.app\\\\Contents\\\\MacOS\\\\Werewolf_Hunter_X" type: default - config: oslist: linux executable: Werewolf_Hunter_X type: default -'948340': +"948340": installDir: Journey Through Memories launch: - config: oslist: windows executable: BuildVer1.exe type: default -'948350': +"948350": installDir: Royal Booty Quest launch: - config: @@ -425768,20 +419787,20 @@ type: default - config: oslist: macos - executable: RBQ.app\\Contents\\MacOS\\RBQ + executable: "RBQ.app\\\\Contents\\\\MacOS\\\\RBQ" type: none - config: oslist: linux - executable: ./app/RoyalBootyQuest + executable: "./app/RoyalBootyQuest" type: none -'948370': +"948370": installDir: Shaoye launch: - config: oslist: windows executable: Shaoye.exe type: none -'948420': +"948420": installDir: EXAPUNKS TEC Redshift Player launch: - config: @@ -425799,18 +419818,18 @@ description: Launch executable: EXAPUNKS type: default -'948460': +"948460": installDir: Wizard Prison launch: - config: oslist: windows executable: Wizard Prison.exe type: none -'948470': +"948470": installDir: Deadsiege launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Deadsiege.exe type: none @@ -425819,25 +419838,25 @@ executable: Deadsiege.app type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: Deadsiege.sh type: none -'948490': +"948490": installDir: Standard Legend launch: - config: oslist: windows executable: SL.exe type: default -'948510': +"948510": installDir: Monster Clicker Idle Halloween Strategy launch: - config: oslist: windows executable: MonsterClicker.exe type: default -'948630': +"948630": installDir: HentaiMineSweeper launch: - config: @@ -425849,16 +419868,16 @@ executable: hms.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: hms.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: hms.x86 type: default -'948640': +"948640": installDir: Wizardry Labyrinth of Lost Souls launch: - config: @@ -425867,7 +419886,7 @@ type: default nameLocalized: japanese: Wizardry 囚われし魂の迷宮 -'948650': +"948650": installDir: Asdivine Hearts II launch: - config: @@ -425876,7 +419895,7 @@ type: default nameLocalized: japanese: アスディバインハーツII -'948660': +"948660": installDir: Alvastia Chronicles launch: - config: @@ -425885,14 +419904,14 @@ type: none nameLocalized: japanese: アルバスティア戦記 -'948690': +"948690": installDir: stickmanMaverickBBK launch: - config: oslist: windows executable: nw.exe type: none -'948710': +"948710": installDir: Keyhole Spy Naughty Witches launch: - config: @@ -425903,7 +419922,7 @@ oslist: macos executable: Keyhole Spy Naughty Witches.app/Contents/MacOS/Keyhole Spy Naughty Witches type: default -'948720': +"948720": installDir: Keyhole Spy Fantasy Passion launch: - config: @@ -425914,7 +419933,7 @@ oslist: macos executable: Keyhole Spy Fantasy Passion.app/Contents/MacOS/Keyhole Spy Fantasy Passion type: default -'948730': +"948730": installDir: Keyhole Spy Lots of Girls launch: - config: @@ -425925,7 +419944,7 @@ oslist: macos executable: Keyhole Spy Lots of Girls.app/Contents/MacOS/Keyhole Spy Lots of Girls type: default -'948740': +"948740": installDir: AI The Somnium Files launch: - config: @@ -425933,22 +419952,22 @@ executable: Launcher.exe type: none nameLocalized: - japanese: 'AI: ソムニウム ファイル' + japanese: "AI: ソムニウム ファイル" tchinese: AI:夢境檔案 -'948770': +"948770": installDir: Magic_Tower_2018 launch: - executable: Game.exe type: default -'948790': +"948790": installDir: Party Poppers launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Party Poppers.exe type: default -'948830': +"948830": installDir: Symbiotic launch: - config: @@ -425959,64 +419978,62 @@ oslist: macos executable: Symbiotic Love.app type: none -'948840': +"948840": installDir: 死亡投票_Death Voting Game launch: - executable: vote.exe type: none -'948880': +"948880": installDir: Arena Renovation launch: - config: oslist: windows executable: Arena Renovation.exe type: default -'948900': +"948900": installDir: macdows 95 launch: - config: oslist: windows executable: macdows95.exe type: default -'948920': {} -'948940': {} -'948950': {} -'948960': +"948920": {} +"948940": {} +"948950": {} +"948960": installDir: MorphiesLaw launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: MorphiesLaw.exe - config: - osarch: '64' + osarch: "64" oslist: windows description: Intel 11th gen CPU fix - description_loc: - english: Intel 11th gen CPU fix executable: MorphiesLaw.bat -'948990': +"948990": installDir: Grottesco Absurdus launch: - config: oslist: windows executable: Grottesco_Absurdus_Steam.exe type: default -'949000': +"949000": installDir: Marble Combat launch: - config: oslist: windows executable: P8Ball.exe type: default -'949030': +"949030": installDir: aMAZE Halloween launch: - config: oslist: windows executable: aMAZE Halloween.exe type: default -'949050': +"949050": installDir: Virtual Villagers Origins 2 launch: - config: @@ -426027,7 +420044,7 @@ oslist: macos executable: Virtual Villagers Origins 2.app type: none -'949060': +"949060": installDir: LoveThyself launch: - config: @@ -426038,73 +420055,73 @@ oslist: macos executable: LoveThyself.app type: none -'949070': +"949070": installDir: Colonies launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Colonies.exe type: default -'949090': +"949090": installDir: Kimmie Jong On Nukes the World launch: - config: oslist: windows executable: Kimmie Jong On Nukes the World.exe type: default -'949130': {} -'949150': +"949130": {} +"949150": installDir: VR Party Club launch: - config: oslist: windows executable: vrpartyclub.exe type: vr -'949170': +"949170": installDir: Killing random dudes online launch: - config: oslist: windows executable: KILLING RANDOM DUDES ONLINE.exe type: default -'949200': +"949200": installDir: Ambition A Minuet in Power launch: - config: oslist: windows - executable: windows_content\\Ambition A Minuet in Power.exe + executable: "windows_content\\\\Ambition A Minuet in Power.exe" type: none - config: oslist: macos - executable: mac_content.app\\Contents\\MacOS\\Ambition A Minuet in Power + executable: "mac_content.app\\\\Contents\\\\MacOS\\\\Ambition A Minuet in Power" type: default -'949210': +"949210": installDir: Hinterhalt 2 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Hinterhalt 2.exe type: default - config: oslist: macos - executable: Contents\\MacOS\\Hinterhalt 2 + executable: "Contents\\\\MacOS\\\\Hinterhalt 2" type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Hinterhalt 2.x86_64 type: default -'949230': {} -'949290': +"949230": {} +"949290": installDir: Winkeltje launch: - config: oslist: windows executable: Shopkeeper.exe type: none -'949330': +"949330": installDir: Magicae Mundi launch: - config: @@ -426119,12 +420136,12 @@ oslist: linux executable: Magicae Mundi.x86_64 type: none -'949370': +"949370": installDir: Cateau launch: - executable: Cateau.exe type: default -'949380': +"949380": installDir: AV-17 launch: - config: @@ -426135,7 +420152,7 @@ oslist: linux executable: AV_17 type: default -'949390': +"949390": installDir: Puppet Blaster launch: - config: @@ -426143,23 +420160,23 @@ description: Launch executable: PuppetBlasterVR.exe type: vr -'949420': +"949420": installDir: The Energy Lab launch: - config: oslist: windows executable: The Energy Lab.exe type: vr -'949450': +"949450": installDir: 11th Dream Game launch: - config: betakey: alpha - osarch: '64' + osarch: "64" oslist: windows executable: 11thDream.exe type: default -'949480': +"949480": installDir: Brok launch: - config: @@ -426168,7 +420185,7 @@ type: default - config: oslist: macos - executable: Brokgame.app\\Contents\\MacOS\\Brokgame + executable: "Brokgame.app\\\\Contents\\\\MacOS\\\\Brokgame" type: default - config: oslist: linux @@ -426178,7 +420195,7 @@ japanese: BROK the InvestiGator 名探偵ブロクと秘密の依頼 schinese: BROK the InvestiGator 鳄鱼侦探布罗格 tchinese: BROK the InvestiGator 鱷魚偵探布羅格 -'949510': +"949510": installDir: Deadly Curse Insane Nightmare launch: - config: @@ -426187,23 +420204,23 @@ type: default - config: oslist: macos - executable: Deadly Curse Insane Nightmare.app\\Contents\\MacOS\\Deadly Curse Insane Nightmare + executable: "Deadly Curse Insane Nightmare.app\\\\Contents\\\\MacOS\\\\Deadly Curse Insane Nightmare" type: default - config: oslist: linux executable: Deadly Curse Insane Nightmare.x86_64 type: default -'949520': +"949520": installDir: LostOnTheIsland launch: - arguments: +map Islandvr config: - osarch: '64' + osarch: "64" oslist: windows - executable: Bin64\\LostOnTheIslandLauncher.exe + executable: "Bin64\\\\LostOnTheIslandLauncher.exe" type: vr - workingdir: Bin64\\ -'949530': + workingdir: "Bin64\\\\" +"949530": installDir: Time Splatter launch: - config: @@ -426211,42 +420228,42 @@ executable: TimeSplatter.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: TimeSplatter.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: TimeSplatter.x86_64 type: default - config: oslist: macos - executable: TimeSplatter.app\\Contents\\MacOS\\TimeSplatter + executable: "TimeSplatter.app\\\\Contents\\\\MacOS\\\\TimeSplatter" type: default -'949570': +"949570": installDir: Rand-O-mazE launch: - config: oslist: windows executable: Rand-O-mazE.exe type: default -'949580': {} -'949600': +"949580": {} +"949600": installDir: Intergalactic Fishing launch: - config: oslist: windows executable: Intergalactic Fishing.exe type: default -'949630': +"949630": installDir: Russian roulette launch: - config: oslist: windows executable: RussianRoulette.exe type: config -'949650': +"949650": installDir: Mystery Teens launch: - config: @@ -426257,21 +420274,21 @@ oslist: macos executable: Mystery Teens.app type: default -'949670': +"949670": installDir: Event-D launch: - config: oslist: windows executable: EventD.exe type: none -'949680': +"949680": installDir: Fantasy Monarch launch: - config: oslist: windows executable: Fantasy Monarch.exe type: default -'949690': +"949690": installDir: Record of Lodoss War Online launch: - arguments: steam @@ -426280,7 +420297,7 @@ description: Launch executable: LodossLauncher.exe type: default -'949700': +"949700": installDir: Waifu Bay Girls launch: - config: @@ -426289,9 +420306,9 @@ type: default - config: oslist: macos - executable: Waifu Bay Girls.app\\Contents\\MacOS\\Waifu Bay Girls + executable: "Waifu Bay Girls.app\\\\Contents\\\\MacOS\\\\Waifu Bay Girls" type: default -'949710': +"949710": installDir: Exiled to the Void launch: - config: @@ -426302,21 +420319,21 @@ oslist: macos executable: Exiled to the Void.app/Contents/MacOS/Exiled to the Void type: none -'949740': {} -'949770': +"949740": {} +"949770": installDir: Spitkiss launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Spitkiss.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: Spitkiss.exe type: default -'949790': +"949790": installDir: Rogue Bit launch: - config: @@ -426331,25 +420348,25 @@ oslist: linux executable: game.i386 type: default - - arguments: '-s' + - arguments: "-s" config: oslist: windows description: safe mode executable: game.exe type: option1 - - arguments: '-s' + - arguments: "-s" config: oslist: macos description: safe mode executable: RogueBit.app/Contents/MacOS/game type: option1 - - arguments: '-s' + - arguments: "-s" config: oslist: linux description: safe mode executable: game.i386 type: option1 -'949800': +"949800": installDir: Skyland launch: - config: @@ -426358,13 +420375,13 @@ executable: Skyland.exe type: none - config: - osarch: '32' + osarch: "32" oslist: linux description: Launch executable: Skyland_i386 type: none - config: - osarch: '64' + osarch: "64" oslist: linux description: Launch executable: Skyland_amd64 @@ -426374,46 +420391,46 @@ description: Launch executable: mac_steam.app/Contents/MacOS/mac_steam type: none -'949810': +"949810": installDir: Go Cabbies!GB launch: - config: oslist: windows executable: GoCabbiesGB.exe type: none -'949820': +"949820": installDir: Crazy Washing Machine launch: - executable: CrazyWashingMachine.exe type: none -'949830': +"949830": installDir: Shrines Of Sacred Essenсe launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SoSE.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: SoSEx86.exe type: default -'949860': +"949860": installDir: Goalkeeper VR Challenge launch: - config: oslist: windows executable: VR Goalie.exe type: vr -'949880': +"949880": installDir: Ninja Code launch: - config: oslist: windows executable: Ninja Code.exe type: default -'949890': +"949890": installDir: Physical Exorcism Case 01 launch: - config: @@ -426431,18 +420448,18 @@ executable: nw.exe type: default nameLocalized: - english: 'Physical Exorcism: Case 01' + english: "Physical Exorcism: Case 01" japanese: 除霊(物理)ケース01 schinese: 除灵(物理)案件01 tchinese: 除靈(物理)案件01 -'949910': +"949910": installDir: RefillYourRoguelike launch: - config: oslist: windows executable: Refill your Roguelike.exe type: default -'949930': +"949930": installDir: HNH launch: - config: @@ -426456,30 +420473,30 @@ type: default - config: oslist: macos - executable: MacOS\\nwjs + executable: "MacOS\\\\nwjs" type: default -'949960': +"949960": installDir: Best Life Simulator launch: - config: oslist: windows executable: Best Life Simulator.exe type: default -'949970': +"949970": installDir: Reborn In Wild City launch: - config: oslist: windows executable: wmt.exe type: default -'949990': +"949990": installDir: Magical Monster Land launch: - config: oslist: windows executable: MML.exe type: default -'9500': +"9500": installDir: Gish launch: - config: @@ -426488,7 +420505,7 @@ - config: oslist: macos executable: Gish.app -'95000': +"95000": installDir: SuperSplatters launch: - config: @@ -426507,28 +420524,28 @@ oslist: linux description: No Steam Runtime Mode executable: RunGameNoSteamRT.sh -'950050': +"950050": installDir: Starlink Battle for Atlas launch: - - arguments: '-uplay_steam_mode' + - arguments: "-uplay_steam_mode" config: oslist: windows executable: Starlink.exe type: none -'950100': +"950100": installDir: PRO EVOLUTION SOCCER 2019 LITE launch: - description: Launch executable: PES2019_F2P.exe type: none -'950130': +"950130": installDir: Evidence of Life launch: - config: oslist: windows executable: Evidence of Life.exe type: default -'950140': +"950140": installDir: Hiding Spot launch: - config: @@ -426543,25 +420560,25 @@ oslist: linux executable: hidingspot.x86_64 type: default -'950160': +"950160": installDir: Miracle Circus 奇迹马戏团 launch: - description: Miracle Circus executable: Game.exe type: option1 - config: - ownsdlc: '956220' + ownsdlc: "956220" description: DLC - executable: DLC\\Game.exe + executable: "DLC\\\\Game.exe" type: option2 - description: Description document-说明文档 executable: tools.txt type: option3 -'950180': +"950180": installDir: LemnisGate launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: LemnisGate.exe type: default @@ -426570,35 +420587,35 @@ koreana: 렘니스 게이트 schinese: 雷能思之门 tchinese: 雷能思之門 -'950210': +"950210": installDir: SUFFER launch: - config: oslist: windows executable: SUFFER.exe type: default - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" config: oslist: windows executable: SUFFER.exe type: config -'950240': +"950240": installDir: Rise of the Pirates launch: - config: oslist: windows executable: Rise of the Pirates.exe type: default -'950250': +"950250": installDir: Halfway Home launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Play Halfway Home executable: HalfwayHome.exe type: default -'950260': +"950260": installDir: Divenia launch: - executable: Divenia.exe @@ -426606,61 +420623,61 @@ - description: Azael Adventure RPG Demo executable: Azael.exe type: option1 -'950300': +"950300": installDir: REDO! launch: - config: oslist: windows executable: REDO!.exe type: default -'950310': +"950310": installDir: GloPhlox launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Glo Phlox executable: Glo Phlox.exe type: default -'950330': +"950330": installDir: Oil Patch Simulations launch: - config: oslist: windows executable: OILPATCHSIMS.EXE type: none -'950360': +"950360": installDir: Quest room Hanon launch: - config: oslist: windows executable: Hanon.exe type: default -'950370': +"950370": installDir: TSM2 launch: - config: oslist: windows executable: sangirl.exe type: default -'950380': +"950380": installDir: HangUp launch: - executable: HangUp.exe type: vr -'950400': +"950400": installDir: Blame him launch: - executable: BlameHim.exe type: default -'950460': +"950460": installDir: Paradise Cleaning! launch: - config: oslist: windows executable: Cleaner.exe type: default -'950490': +"950490": installDir: INFILTRIA launch: - config: @@ -426668,28 +420685,28 @@ executable: INFILTRIA.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: INFILTRIA_linux.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: INFILTRIA_linux.x86 type: default -'950510': +"950510": installDir: VolcanDefendTheTower launch: - config: oslist: windows executable: VolcanDefendTheTower.exe type: none -'950530': +"950530": installDir: Mojo 2 Mia launch: - executable: game.exe type: none -'950570': +"950570": installDir: Bitworm launch: - config: @@ -426701,26 +420718,26 @@ executable: Bitworm.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Bitworm.x86 type: default -'950600': +"950600": installDir: Zoological Era launch: - config: oslist: windows executable: Zoological Era.exe type: default -'950620': +"950620": installDir: Priest Simulator launch: - config: oslist: windows executable: Priest_Simulator.exe type: default -'950630': {} -'950670': +"950630": {} +"950670": installDir: THQBCNP1 launch: - config: @@ -426728,24 +420745,24 @@ oslist: windows executable: GothicRemake.exe type: default -'950700': +"950700": installDir: VICCP launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: VICCP.exe type: default - config: oslist: macos - executable: Contents\\MacOS\\____VICCP_BUILD_MAC + executable: "Contents\\\\MacOS\\\\____VICCP_BUILD_MAC" type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: viccp64.x86_64 type: default -'950730': +"950730": installDir: fallenskyonline launch: - config: @@ -426753,26 +420770,26 @@ oslist: windows executable: fsode.exe type: default -'950740': - installDir: Mao's Legacy +"950740": + installDir: "Mao's Legacy" launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: China.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: China.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: China.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: China.x86 type: default @@ -426780,7 +420797,7 @@ oslist: macos executable: China.app type: default -'950750': +"950750": installDir: Dega Madness launch: - config: @@ -426788,29 +420805,29 @@ description: Launch executable: Dega_Madness.exe type: none -'950780': +"950780": installDir: PRATAGON launch: - config: oslist: windows executable: DOTA_FPS.exe type: default -'950810': +"950810": installDir: SquareWorld Unpixeled launch: - config: oslist: windows executable: win32/SquareWorld.exe type: default -'950830': +"950830": installDir: The Pusher launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ThePusher.exe type: none -'950850': +"950850": installDir: The Window Box launch: - config: @@ -426821,14 +420838,14 @@ oslist: macos executable: The Window Box.app type: default -'950860': +"950860": installDir: Spiral Clicker launch: - config: oslist: windows executable: Spiral Clicker.exe type: none -'950890': +"950890": installDir: Game Master Plus launch: - config: @@ -426843,26 +420860,26 @@ oslist: linux executable: Game type: none -'950910': +"950910": installDir: Space Bugs launch: - executable: Space Bugs.exe type: default -'950950': +"950950": installDir: In The Dark launch: - config: oslist: windows executable: inthedark.exe type: default -'950990': +"950990": installDir: Business Builder launch: - config: oslist: windows executable: bm.exe type: default -'951000': +"951000": installDir: Trap Shrine launch: - executable: josou_jinjya.exe @@ -426871,15 +420888,15 @@ japanese: 女装神社 schinese: 女裝神社 tchinese: 女裝神社 -'951010': +"951010": installDir: Zero spring episode 1 English translation version launch: - config: oslist: windows executable: estart.exe type: default -'951020': {} -'951030': +"951020": {} +"951030": installDir: SCP Derelict - SciFi First Person Shooter launch: - config: @@ -426890,39 +420907,39 @@ oslist: macos executable: Derelict_MacOS.app type: default -'951040': {} -'951050': +"951040": {} +"951050": installDir: Another Hardcore Game launch: - config: oslist: windows executable: AnotherHardcoreGame.exe type: none -'951060': {} -'951070': +"951060": {} +"951070": installDir: Zero spring episode 1 Japanese version launch: - config: oslist: windows executable: jstart.exe type: default -'951090': {} -'951100': +"951090": {} +"951100": installDir: The Adventures of Team Australia launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows executable: nw.exe type: none -'951110': +"951110": installDir: VR Cricket launch: - config: oslist: windows executable: Cricket.exe type: vr -'951130': +"951130": installDir: Eine Kleine launch: - config: @@ -426931,47 +420948,47 @@ type: default - config: oslist: macos - executable: 心之檻.app\\Contents\\MacOS\\心之檻 + executable: "心之檻.app\\\\Contents\\\\MacOS\\\\心之檻" type: default -'951140': {} -'951160': +"951140": {} +"951160": installDir: JUMP UP launch: - config: oslist: windows executable: JUMP_UP.exe type: default -'951170': +"951170": installDir: LethalRunningPrologue launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: lethalrunning.exe type: default -'951180': {} -'951190': +"951180": {} +"951190": installDir: Ancient lands the Tsar awakening launch: - config: oslist: windows executable: AncientLands.exe type: none -'951220': +"951220": installDir: Pumpkin Death Garden launch: - config: oslist: windows executable: Pumpkin Death Garden.exe type: none -'951240': +"951240": installDir: Open Sewer launch: - config: oslist: windows executable: Open Sewer.exe type: default -'951250': +"951250": installDir: Not Heaven launch: - config: @@ -426982,49 +420999,45 @@ oslist: macos executable: Not Heaven.app type: none -'951260': +"951260": installDir: Shieldwall Chronicles Swords of the North launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Shieldwall Chronicles Swords of the North.exe type: none -'951310': +"951310": installDir: DoVille launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch in VR - description_loc: - english: Launch in VR executable: DoVille.exe type: vr - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch in 2D (unplug HMD) - description_loc: - english: Launch in 2D (unplug HMD) executable: DoVille.exe type: none -'951320': +"951320": installDir: Not my day launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: Not my day\\Not my day.exe + executable: "Not my day\\\\Not my day.exe" type: default -'951330': +"951330": installDir: Weaponry Dealer VR launch: - config: oslist: windows executable: WeaponryDealer.exe type: vr -'951360': +"951360": installDir: Super Potato Bruh launch: - config: @@ -427035,7 +421048,7 @@ oslist: linux executable: Super Potato Bruh type: default -'951370': +"951370": installDir: Drawkanoid launch: - config: @@ -427046,13 +421059,13 @@ oslist: macos executable: Drawkanoid.app type: none -'951400': {} -'951410': {} -'951420': +"951400": {} +"951410": {} +"951420": installDir: Refraction launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Refraction.exe type: default @@ -427061,11 +421074,11 @@ executable: Refraction.app/Contents/MacOS/Refraction type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Refraction.x86_64 type: default -'951430': +"951430": installDir: Dead Age 2 launch: - config: @@ -427080,64 +421093,60 @@ oslist: linux executable: DeadAge2.64 type: default -'951440': +"951440": installDir: Volcanoids launch: - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" config: - osarch: '64' + osarch: "64" oslist: windows executable: Volcanoids.exe type: default - - arguments: '-force-vulkan' + - arguments: "-force-vulkan" config: - osarch: '64' + osarch: "64" oslist: linux description: Volcanoids (Vulkan) - description_loc: - english: Volcanoids (Vulkan) executable: Volcanoids.x86_64 type: option1 - - arguments: '-force-opengl' + - arguments: "-force-opengl" config: - osarch: '64' + osarch: "64" oslist: linux description: Volcanoids (OpenGL) - description_loc: - english: Volcanoids (OpenGL) executable: Volcanoids.x86_64 type: option2 - config: oslist: macos executable: Volcanoids.app/Contents/MacOS/Volcanoids type: default -'951450': +"951450": installDir: Fit it launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Fitit.exe type: vr -'951470': +"951470": installDir: common launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: bloodfear.exe type: default -'951490': +"951490": installDir: Stream Battlecards launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: stream-battlecards.exe type: none nameLocalized: english: Stream Battlecards -'951500': +"951500": installDir: Poker Tower Defense launch: - config: @@ -427150,34 +421159,32 @@ type: none - config: oslist: macos - executable: Poker Tower Defense.app\\Contents\\MacOS\\Poker Tower Defense + executable: "Poker Tower Defense.app\\\\Contents\\\\MacOS\\\\Poker Tower Defense" type: none -'951540': {} -'951550': +"951540": {} +"951550": installDir: Attack Of Mutants launch: - executable: AttackOfMutants.exe type: none -'951570': +"951570": installDir: Deadness launch: - config: oslist: windows description: Play Deadness in SteamVR - description_loc: - english: Play Deadness in SteamVR executable: Deadness.exe type: vr -'951620': {} -'951640': +"951620": {} +"951640": installDir: Gangsta Sniper launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: GangstaSniper.exe type: default -'951670': +"951670": installDir: Precipice launch: - arguments: bootstrap.tscn @@ -427187,17 +421194,17 @@ type: none - arguments: bootstrap.tscn config: - osarch: '64' + osarch: "64" oslist: linux executable: precipice.x86_64 type: default - arguments: bootstrap.tscn config: - osarch: '32' + osarch: "32" oslist: linux executable: precipice.x86 type: default -'951680': +"951680": installDir: Dream Home launch: - config: @@ -427207,109 +421214,109 @@ type: config - config: oslist: macos - executable: dreamhome.app\\Contents\\MacOS\\dreamhome + executable: "dreamhome.app\\\\Contents\\\\MacOS\\\\dreamhome" type: default -'951690': +"951690": installDir: Surge launch: - config: oslist: windows executable: Surge.exe type: default -'951700': +"951700": installDir: Super Jigsaw Puzzle Space launch: - config: oslist: windows executable: Super Jigsaw Puzzle Space.exe type: default -'951740': +"951740": installDir: Nice Shot! The Gun Golfing Game launch: - config: oslist: windows executable: Nice Shot!V1.1.2.exe type: default -'951750': +"951750": installDir: I Am Dead launch: - config: oslist: windows - executable: IAmDeadPC\\IAD.exe + executable: "IAmDeadPC\\\\IAD.exe" type: default - config: oslist: macos executable: IAmDeadMac/IAD.app type: default -'951760': +"951760": installDir: Full Body Workout launch: - config: oslist: windows executable: Full Body Workout.exe type: default -'951770': {} -'951780': +"951770": {} +"951780": installDir: Zombie Deathrace Feeding Frenzy launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Zombie Deathrace Feeding Frenzy Client executable: Frenzy.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows description: Zombie Deathrace Feeding Frenzy Client executable: FrenzyVR.exe type: othervr - config: - osarch: '64' + osarch: "64" oslist: windows description: Zombie Deathrace Feeding Frenzy Server executable: server.exe type: server -'951810': {} -'951820': +"951810": {} +"951820": installDir: Captain Bones launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Captain Bones.exe type: default -'951830': +"951830": installDir: The Last Sovereign launch: - executable: Game.exe type: default -'951840': {} -'951860': +"951840": {} +"951860": installDir: Once Ever After launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows executable: Game.exe type: default -'951910': {} -'951920': - installDir: Charlie's Conscious +"951910": {} +"951920": + installDir: "Charlie's Conscious" launch: - config: oslist: windows - executable: Charlie's Conscious.exe + executable: "Charlie's Conscious.exe" type: none -'951930': +"951930": installDir: Typing Incremental launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: typer-incremental-win32-x64\\typer-incremental.exe + executable: "typer-incremental-win32-x64\\\\typer-incremental.exe" type: default -'951940': +"951940": installDir: Almost_There launch: - config: @@ -427327,13 +421334,13 @@ description: Launches Almost There executable: AlmostThere.app/Contents/MacOS/AlmostThere type: none -'952000': +"952000": installDir: Be Vigilant! launch: - config: oslist: windows executable: BeVigilant.exe -'952010': +"952010": installDir: The Martian Job launch: - config: @@ -427348,7 +421355,7 @@ oslist: linux executable: TheMartianJob type: none -'952020': +"952020": installDir: Love at Elevation launch: - config: @@ -427363,7 +421370,7 @@ oslist: linux executable: LoveAtElevation type: none -'952030': +"952030": installDir: Gilded Rails launch: - config: @@ -427378,7 +421385,7 @@ oslist: linux executable: GildedRails type: none -'952040': +"952040": installDir: MUSYNX launch: - config: @@ -427393,25 +421400,25 @@ nameLocalized: sc_schinese: 同步音律 schinese: 同步音律喵赛克 -'952050': +"952050": installDir: Buddinpals - Take One Home With You !! launch: - config: oslist: windows executable: Buddinpals.exe type: default -'952060': +"952060": installDir: RE3 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: re3.exe type: none nameLocalized: - japanese: 'BIOHAZARD RE:3' - koreana: 'BIOHAZARD RE:3' -'952070': + japanese: "BIOHAZARD RE:3" + koreana: "BIOHAZARD RE:3" +"952070": installDir: RESIDENT EVIL RESISTANCE launch: - config: @@ -427421,7 +421428,7 @@ nameLocalized: japanese: BIOHAZARD RESISTANCE koreana: BIOHAZARD RESISTANCE -'952090': +"952090": installDir: Grand Strategy launch: - config: @@ -427432,43 +421439,43 @@ oslist: linux executable: GrandStrategyClient type: none -'952120': +"952120": installDir: adasanguozhi2018_shuban launch: - config: oslist: windows executable: sanguo.exe type: default -'952130': +"952130": installDir: Origin of Decay launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Origin_of_Decay.exe type: default -'952140': +"952140": installDir: Surrogate launch: - config: oslist: windows executable: surrogate.exe type: default -'952200': +"952200": installDir: stikir launch: - config: oslist: windows executable: stikir.exe type: default -'952230': +"952230": installDir: MiamiResort launch: - config: oslist: windows executable: MiamiResort.exe type: default -'952240': +"952240": installDir: Dieselpunk Wars launch: - config: @@ -427477,7 +421484,7 @@ type: none nameLocalized: schinese: 柴油朋克:战争巨兽 -'952250': +"952250": installDir: SEPTEMBER1999 launch: - config: @@ -427488,7 +421495,7 @@ oslist: macos executable: September1999_mac.app type: default -'952270': +"952270": installDir: Boat Basketball launch: - config: @@ -427499,39 +421506,39 @@ oslist: macos executable: Boat Basketball.app/Contents/MacOS/Boat Basketball type: default -'952290': +"952290": installDir: Zueirama launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: Zueirama.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: nw type: none - config: - osarch: '64' + osarch: "64" oslist: windows executable: Zueirama.exe type: default -'952330': +"952330": installDir: Blackfoot Burrows launch: - config: oslist: windows executable: BlackfootBurrows1.0.exe type: default -'952370': +"952370": installDir: Armored Fighter launch: - config: oslist: windows executable: AF.exe type: none -'952400': +"952400": installDir: Void Mine launch: - config: @@ -427546,11 +421553,11 @@ oslist: linux executable: Mine.x86 type: default -'952420': +"952420": installDir: Shan Gui 2 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Episode1/ShanGui2.exe type: default @@ -427559,78 +421566,54 @@ executable: Episode1/ShanGui2.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Episode1/ShanGui2.x86_64 type: default - config: - osarch: '64' + osarch: "64" oslist: windows - ownsdlc: '955180' - description: 'Shan Gui II: Episode 2' - description_loc: - english: 'Shan Gui II: Episode 2' - schinese: 山桂贰 · 中 - tchinese: 山桂貳 · 中 + ownsdlc: "955180" + description: "Shan Gui II: Episode 2" executable: Episode2/ShanGui22.exe type: option1 - config: oslist: macos - ownsdlc: '955180' - description: 'Shan Gui II: Episode 2' - description_loc: - english: 'Shan Gui II: Episode 2' - schinese: 山桂贰 · 中 - tchinese: 山桂貳 · 中 + ownsdlc: "955180" + description: "Shan Gui II: Episode 2" executable: Episode2/ShanGui22.app type: option1 - config: - osarch: '64' + osarch: "64" oslist: linux - ownsdlc: '955180' - description: 'Shan Gui II: Episode 2' - description_loc: - english: 'Shan Gui II: Episode 2' - schinese: 山桂贰 · 中 - tchinese: 山桂貳 · 中 + ownsdlc: "955180" + description: "Shan Gui II: Episode 2" executable: Episode2/ShanGui22.x86_64 type: option1 - config: oslist: windows - ownsdlc: '1210300' - description: 'Shan Gui I: Definitive Edition' - description_loc: - english: 'Shan Gui I: Definitive Edition' - schinese: 山桂壹:决定版 - tchinese: 山桂壹:決定版 + ownsdlc: "1210300" + description: "Shan Gui I: Definitive Edition" executable: ShanGuiDE/ShanGuiDE.exe type: option2 - config: oslist: macos - ownsdlc: '1210300' - description: 'Shan Gui I: Definitive Edition' - description_loc: - english: 'Shan Gui I: Definitive Edition' - schinese: 山桂壹:决定版 - tchinese: 山桂壹:決定版 + ownsdlc: "1210300" + description: "Shan Gui I: Definitive Edition" executable: ShanGuiDE/lib/mac-x86_64/renpy type: option2 - config: oslist: linux - ownsdlc: '1210300' - description: 'Shan Gui I: Definitive Edition' - description_loc: - english: 'Shan Gui I: Definitive Edition' - schinese: 山桂壹:决定版 - tchinese: 山桂壹:決定版 + ownsdlc: "1210300" + description: "Shan Gui I: Definitive Edition" executable: ShanGuiDE/lib/linux-x86_64/renpy type: option2 nameLocalized: - english: 'Shan Gui II: Sweet Osmanthus II' - russian: 'Shan Gui II: Сладкий Османтус II' + english: "Shan Gui II: Sweet Osmanthus II" + russian: "Shan Gui II: Сладкий Османтус II" schinese: 山桂贰 tchinese: 山桂貳 -'952460': +"952460": installDir: lovecraft-quest-a-comix-game launch: - config: @@ -427638,7 +421621,7 @@ executable: Lovecraft-Quest.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Lovecraft-Quest type: default @@ -427646,26 +421629,26 @@ oslist: macos executable: Lovecraft-Quest.app type: default -'952510': +"952510": installDir: Chronicles of Lurra launch: - config: oslist: windows executable: Game.exe type: default -'952530': {} -'952540': +"952530": {} +"952540": installDir: RomancingSaGa3 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: rs3.exe type: default nameLocalized: japanese: ロマンシング サガ3 -'952560': {} -'952600': +"952560": {} +"952600": installDir: FirefliesGame launch: - config: @@ -427673,23 +421656,23 @@ description: Launch executable: Firefly421.exe type: none -'952680': +"952680": installDir: Blind Girl launch: - config: oslist: windows executable: Game.exe type: default -'952710': {} -'952850': +"952710": {} +"952850": installDir: Last Wish launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: LastWish.exe type: none -'952860': +"952860": installDir: 河洛群俠傳 (Ho Tu Lo Shu : The Books of Dragon) launch: - config: @@ -427698,8 +421681,8 @@ type: default nameLocalized: schinese: 河洛群侠传 (Ho Tu Lo Shu : The Books of Dragon) -'952880': {} -'952910': +"952880": {} +"952910": installDir: Lantern of Worlds - The First Quest launch: - config: @@ -427710,7 +421693,7 @@ oslist: macos executable: Game.app type: default -'952920': +"952920": installDir: Hoyeonjigi launch: - config: @@ -427720,37 +421703,37 @@ nameLocalized: english: Hoyeonjigi koreana: 호연지기 (Hoyeonjigi) -'952930': +"952930": installDir: ArmZ launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ARMZ.exe type: vr - executable: ARMZ.exe type: othervr -'952940': {} -'952950': - installDir: 03.04 +"952940": {} +"952950": + installDir: "03.04" launch: - config: oslist: windows executable: 03.04.exe type: default -'952970': +"952970": installDir: Stick_to_the_end launch: - config: oslist: windows executable: stte.exe type: none -'952980': +"952980": installDir: Torn Earth launch: - executable: Game.exe type: none -'95300': +"95300": installDir: Capsized launch: - config: @@ -427763,16 +421746,16 @@ - config: oslist: linux description: Launch - executable: ./Capsized -'953000': {} -'953050': + executable: "./Capsized" +"953000": {} +"953050": installDir: Dread of Laughter launch: - config: oslist: windows executable: DoL.exe type: default -'953060': +"953060": installDir: Go to IT launch: - config: @@ -427792,59 +421775,59 @@ oslist: macos executable: GoToIT.app/Contents/MacOS/GotoIT type: default -'953110': {} -'953120': +"953110": {} +"953120": installDir: The Lost Sergeant launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Beta.exe type: default -'953150': +"953150": installDir: TrivaTune launch: - config: oslist: windows executable: TrivaTune.exe type: default -'953170': - installDir: Witch's Tales +"953170": + installDir: "Witch's Tales" launch: - config: oslist: windows executable: WitchsTales.exe type: default -'953180': {} -'953190': +"953180": {} +"953190": installDir: Dream Walker launch: - config: oslist: windows executable: dreamwalker.exe type: default -'953220': +"953220": installDir: Corrupted Commander launch: - config: oslist: windows executable: Corrupted Commander.exe type: default -'953230': - installDir: Quiver Dick's Terrible Tale +"953230": + installDir: "Quiver Dick's Terrible Tale" launch: - config: oslist: windows executable: Game.exe type: default -'953240': +"953240": installDir: Spicy Deck launch: - config: oslist: windows executable: Spicy Deck Hardcore.exe type: default -'953250': +"953250": installDir: WarMachines launch: - config: @@ -427855,32 +421838,32 @@ oslist: macos executable: WarMachines.app type: default -'953270': +"953270": installDir: Dominatrix Simulator launch: - - arguments: '-enableSteam' + - arguments: "-enableSteam" config: - osarch: '64' + osarch: "64" oslist: windows description: Dominatrix Simulator executable: Dominatrix Simulator.exe type: vr - - arguments: '-vrmode None -enableSteam' + - arguments: "-vrmode None -enableSteam" config: - osarch: '64' + osarch: "64" oslist: windows description: Keyboard & Mouse executable: Dominatrix Simulator.exe type: default -'953290': +"953290": installDir: Dinosaur Safari VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: DinosaurSafariVR.exe type: vr -'953300': +"953300": installDir: ART SQOOL launch: - config: @@ -427891,31 +421874,31 @@ oslist: macos executable: Art Sqool.app/Contents/MacOS/Mac19 type: default -'953310': {} -'953340': +"953310": {} +"953340": installDir: Colourless launch: - config: oslist: windows executable: Colourless.exe type: default -'953370': +"953370": installDir: Zed launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: zed.exe type: default - - arguments: '-opengl' + - arguments: "-opengl" config: oslist: linux description: using OpenGL (recommended) executable: zed.sh type: option2 - - arguments: '-vr' + - arguments: "-vr" config: - osarch: '64' + osarch: "64" oslist: windows executable: zed.exe type: vr @@ -427923,38 +421906,38 @@ oslist: macos executable: zed.app type: default - - arguments: '-vulkan' + - arguments: "-vulkan" config: oslist: linux description: using Vulkan executable: zed.sh type: option1 -'953380': +"953380": installDir: FlipsideGenesis launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Flipside.exe type: default -'953400': {} -'953440': +"953400": {} +"953440": installDir: AndYoureThereToo launch: - config: oslist: windows executable: AndYoureThereToo.exe type: vr -'953490': +"953490": installDir: Carrion launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Carrion.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Carrion type: default @@ -427964,86 +421947,76 @@ type: default - config: oslist: windows - ownsdlc: '1462530' + ownsdlc: "1462530" description: CARRION Comic Book executable: CarrionComicBook/CarrionComicBook.exe type: none - config: oslist: linux - ownsdlc: '1462530' + ownsdlc: "1462530" description: CARRION Comic Book executable: CarrionComicBook/CarrionComicBook type: none - config: oslist: macos - ownsdlc: '1462530' + ownsdlc: "1462530" description: CARRION Comic Book executable: CarrionComicBook/CarrionComicBook.app/Contents/Resources/CarrionComicBook type: none - config: oslist: windows - ownsdlc: '1462530' + ownsdlc: "1462530" description: The Art of CARRION executable: CarrionArtBook/CarrionComicBook.exe type: none - config: oslist: linux - ownsdlc: '1462530' + ownsdlc: "1462530" description: The Art of CARRION executable: CarrionArtBook/CarrionComicBook type: none - config: oslist: macos - ownsdlc: '1462530' + ownsdlc: "1462530" description: The Art of CARRION executable: CarrionArtBook/CarrionComicBook.app/Contents/Resources/CarrionComicBook type: none - config: betakey: prototypes oslist: windows - description: 'Prototype #1' - description_loc: - english: 'Prototype #1' + description: "Prototype #1" executable: Prototypes/1/Game210617.exe type: none workingdir: Prototypes/1/ - config: betakey: prototypes oslist: windows - description: 'Prototype #2' - description_loc: - english: 'Prototype #2' + description: "Prototype #2" executable: Prototypes/2/Game210617.exe type: none workingdir: Prototypes/2/ - config: betakey: prototypes oslist: windows - description: 'Prototype #3' - description_loc: - english: 'Prototype #3' + description: "Prototype #3" executable: Prototypes/3/Game210617.exe type: none workingdir: Prototypes/3/ - config: betakey: prototypes oslist: windows - description: 'Prototype #4' - description_loc: - english: 'Prototype #4' + description: "Prototype #4" executable: Prototypes/4/Game210617.exe type: none workingdir: Prototypes/4/ - config: betakey: prototypes oslist: windows - description: 'Prototype #5' - description_loc: - english: 'Prototype #5' + description: "Prototype #5" executable: Prototypes/5/build/Game210617.exe type: none workingdir: Prototypes/5/build/ -'953550': +"953550": installDir: Temple Scramble launch: - config: @@ -428058,41 +422031,41 @@ oslist: macos executable: TempleScramble.app type: default -'953560': +"953560": installDir: 3C Wonderland Coaster launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: 3CWonderland_Coaster.exe type: othervr -'953570': +"953570": installDir: White Dove 白雀 launch: - executable: Game.exe type: none -'953580': +"953580": installDir: Tourist Bus Simulator launch: - - executable: TouristBusSimulator\\Binaries\\Win64\\TouristBusSimulator.exe + - executable: "TouristBusSimulator\\\\Binaries\\\\Win64\\\\TouristBusSimulator.exe" type: none - - arguments: '-dx12' + - arguments: "-dx12" config: betakey: nighlybuild description: DirectX 12 (BETA) - executable: TouristBusSimulator\\Binaries\\Win64\\TouristBusSimulator.exe + executable: "TouristBusSimulator\\\\Binaries\\\\Win64\\\\TouristBusSimulator.exe" type: option1 nameLocalized: schinese: 旅游巴士模拟 -'953610': +"953610": installDir: HOT GIRLS launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: hotgirls.exe type: vr -'953640': +"953640": installDir: Gyro Buster launch: - config: @@ -428104,37 +422077,37 @@ executable: Gyro Buster.app type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: Gyro Buster.x86_64 type: none - config: - osarch: '32' + osarch: "32" oslist: windows executable: Gyro Buster.exe type: none -'953690': +"953690": installDir: DoomAndDestinyWorlds launch: - config: oslist: windows executable: DoomAndDestiny3.exe type: default -'953700': - installDir: I'm an Adventurer +"953700": + installDir: "I'm an Adventurer" launch: - config: oslist: windows - executable: I'mAdventurer.exe + executable: "I'mAdventurer.exe" type: default -'953740': +"953740": installDir: srch launch: - config: oslist: windows executable: srch.exe type: none -'953750': +"953750": installDir: The Masked Mage launch: - config: @@ -428145,71 +422118,71 @@ oslist: linux executable: The Masked Mage type: default -'953760': +"953760": installDir: Gravity Spin launch: - config: oslist: windows - executable: win64\\GravitySpin.exe + executable: "win64\\\\GravitySpin.exe" type: default - config: oslist: macos - executable: mac64\\GravitySpin.app + executable: "mac64\\\\GravitySpin.app" type: default - config: oslist: linux - executable: linux64\\GravitySpin + executable: "linux64\\\\GravitySpin" type: default -'953790': +"953790": installDir: wdhy launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: wwe/wdhy.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: nuoza/nuoza.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: haidao64/wdhye(32bit).exe type: default -'953810': {} -'953820': +"953810": {} +"953820": installDir: Parkan Iron Strategy launch: - config: oslist: windows executable: iron_3d.exe type: default -'953840': +"953840": installDir: Apollo 11 HD launch: - - arguments: '-platform_steam -sdk_steamvr -hardware_vive' + - arguments: "-platform_steam -sdk_steamvr -hardware_vive" config: - osarch: '64' + osarch: "64" oslist: windows executable: Apollo11VRHD_Steam.exe type: vr - - arguments: '-platform_steam -sdk_oculus -hardware_rift' + - arguments: "-platform_steam -sdk_oculus -hardware_rift" config: - osarch: '64' + osarch: "64" oslist: windows description: with Oculus Rift executable: Apollo11VRHD_Steam.exe type: othervr - - arguments: '-platform_steam -sdk_nonvr -hardware_monitor' + - arguments: "-platform_steam -sdk_nonvr -hardware_monitor" config: - osarch: '64' + osarch: "64" oslist: windows description: Launch on Monitor executable: Apollo11VRHD_Steam.exe type: none -'953870': +"953870": installDir: Space Robinson launch: - config: @@ -428224,15 +422197,15 @@ oslist: linux executable: Space_Robinson type: default -'953880': +"953880": installDir: First Class Trouble launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: FCTClient.exe type: default -'953900': +"953900": installDir: Pantsu Hunter Back to the 90s launch: - config: @@ -428245,23 +422218,23 @@ type: none - config: oslist: macos - executable: PantsuHunter.app\\Contents\\MacOS\\PantsuHunter + executable: "PantsuHunter.app\\\\Contents\\\\MacOS\\\\PantsuHunter" type: none -'953920': +"953920": installDir: Palace of the Azure Dragon launch: - config: oslist: windows executable: Palace of the Azure Dragon.exe type: vr -'953950': +"953950": installDir: Kubble launch: - config: oslist: windows executable: bubble3D.exe type: default -'95400': +"95400": installDir: ibbandobb launch: - config: @@ -428277,56 +422250,52 @@ oslist: macos description: Launch executable: ibbobb.app -'954000': +"954000": installDir: Cosa Nostra launch: - executable: cosanostra.exe type: none -'954010': +"954010": installDir: Definitely Sneaky But Not Sneaky launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Definitely Sneaky But Not Sneaky (Vulkan) - description_loc: - english: Definitely Sneaky But Not Sneaky (Vulkan) executable: Definitely Sneaky But Not Sneaky.exe type: option1 - - arguments: '-force-d3d11' + - arguments: "-force-d3d11" config: - osarch: '64' + osarch: "64" oslist: windows description: Definitely Sneaky But Not Sneaky (Direct3D 11) - description_loc: - english: Definitely Sneaky But Not Sneaky (Direct3D 11) executable: Definitely Sneaky But Not Sneaky.exe type: option2 - config: - osarch: '64' + osarch: "64" oslist: linux executable: dsbns.x86_64 type: default -'954070': +"954070": installDir: Beat Boxers launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launches Beat Boxers Game executable: BeatBoxers.exe type: default -'954080': +"954080": installDir: Memorrha launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Windows 64x executable: Memorrha_x64.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows description: Windows 32x executable: Memorrha_x32.exe @@ -428337,344 +422306,334 @@ executable: Memorrha.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: Linux executable: Memorrha_Linux.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: linux description: Linux 32x executable: Memorrha_Linux.x86 type: default -'954150': +"954150": installDir: Nowhere Girl launch: - config: oslist: windows executable: NowhereGirl.exe type: none -'954160': +"954160": installDir: Angelus Runner launch: - executable: AngelusBrandVrExperience.exe type: vr -'954170': +"954170": installDir: Backyard Brawl launch: - config: oslist: windows executable: BackyardBrawl.exe type: default -'954210': +"954210": installDir: Symphonic Mayhem launch: - config: oslist: windows executable: Symphonic Mayhem.exe type: default -'954240': +"954240": installDir: Cuboid Keeper launch: - config: oslist: windows executable: Cuboid Keeper.exe type: default -'954270': +"954270": installDir: LOGistICAL2 launch: - config: oslist: windows executable: LogisticalApp.exe type: none -'954280': +"954280": installDir: 3dSenVR launch: - - arguments: '-vrmode OpenVR' + - arguments: "-vrmode OpenVR" config: - osarch: '64' + osarch: "64" oslist: windows executable: 3dSenVR.exe type: vr - - arguments: '-vrmode Oculus' + - arguments: "-vrmode Oculus" config: - osarch: '64' + osarch: "64" oslist: windows executable: 3dSenVR.exe type: othervr - config: - osarch: '64' + osarch: "64" description: In Desktop Mode executable: 3dSenVR.exe type: option1 -'954360': +"954360": installDir: Color by Numbers - Halloween launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: cbn-halloween.exe type: default - config: oslist: macos - executable: Color by Numbers - Halloween.app\\Contents\\MacOS\\Color by Numbers - Halloween + executable: "Color by Numbers - Halloween.app\\\\Contents\\\\MacOS\\\\Color by Numbers - Halloween" type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: cbn-halloween.x86_64 type: default -'954400': +"954400": installDir: Color by Numbers - Christmas launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: cbn-christmas.exe type: default - config: oslist: macos - executable: Color by Numbers - Christmas.app\\Contents\\MacOS\\Color by Numbers - Christmas + executable: "Color by Numbers - Christmas.app\\\\Contents\\\\MacOS\\\\Color by Numbers - Christmas" type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: cbn-christmas.x86_64 type: default -'954410': +"954410": installDir: Color by Numbers - Animals launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: cbn-animals.exe type: default - config: oslist: macos - executable: Color by Numbers - Animals.app\\Contents\\MacOS\\Color by Numbers - Animals + executable: "Color by Numbers - Animals.app\\\\Contents\\\\MacOS\\\\Color by Numbers - Animals" type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: cbn-animals.x86_64 type: default -'954420': +"954420": installDir: DotX launch: - config: oslist: windows executable: DotX.exe type: default -'954530': +"954530": installDir: Momo launch: - - executable: \\windows_content\\Momo.exe + - executable: "\\\\windows_content\\\\Momo.exe" type: none -'954590': +"954590": installDir: TEXT launch: - config: oslist: windows executable: TEXT.exe type: default -'954610': +"954610": installDir: Onii-chan Asobo launch: - executable: Onii_chan_Asobo.exe type: none -'954620': {} -'954650': +"954620": {} +"954650": installDir: Druidstone launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: druidstone.exe type: default -'954710': +"954710": installDir: BlockDoc launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Blockdoc2.exe type: none -'954720': +"954720": installDir: The Shedding launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TheShedding.exe type: default -'954740': +"954740": installDir: Terminator Resistance launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Terminator.exe type: default -'954760': +"954760": installDir: The Cells launch: - executable: Cells.exe type: none -'954780': +"954780": installDir: Zombie Soldier launch: - config: oslist: windows executable: ZombieSoldier.exe type: default -'954850': +"954850": installDir: Kerbal Space Program 2 launch: - config: oslist: windows description: Kerbal Space Program 2 - description_loc: - english: Kerbal Space Program 2 - executable: PDLauncher\\LauncherPatcher.exe - workingdir: PDLauncher\\ + executable: "PDLauncher\\\\LauncherPatcher.exe" + workingdir: "PDLauncher\\\\" - config: - betakey: 'development, development2, development3, development4, external, playtest, t2test, test, test2' + betakey: "development, development2, development3, development4, external, playtest, t2test, test, test2" oslist: windows description: Kerbal Space Program 2 - Executable Launch - description_loc: - english: Kerbal Space Program 2 - Executable Launch executable: KSP2_x64.exe type: option2 -'954860': - installDir: Mad Cat's World +"954860": + installDir: "Mad Cat's World" launch: - config: oslist: windows executable: MCW.exe type: default -'954870': +"954870": installDir: Astrox Imperium launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Astrox Imperium.exe type: default -'954900': {} -'954920': +"954900": {} +"954920": installDir: Flank That Tank launch: - arguments: fs=1 config: - osarch: '64' + osarch: "64" oslist: windows description: Full Screen Launch executable: FTT.exe type: default - arguments: fs=1 config: - osarch: '64' + osarch: "64" oslist: linux executable: armor type: default -'954930': {} -'954970': +"954930": {} +"954970": installDir: Golden Key launch: - config: oslist: windows executable: GoldenKey.exe type: default -'955020': {} -'955030': +"955020": {} +"955030": installDir: Metamorph launch: - config: oslist: windows executable: Metamorph.exe type: default -'955050': +"955050": installDir: BrightMemory_EP1 launch: - - arguments: '-dx11' + - arguments: "-dx11" config: - osarch: '64' + osarch: "64" oslist: windows description: StartGame(DX11) - description_loc: - english: StartGame(DX11) - schinese: 开始游戏(DX11) - executable: BrightMemory_EP1\\Binaries\\Win64\\BrightMemory_EP1-Win64-Shipping.exe + executable: "BrightMemory_EP1\\\\Binaries\\\\Win64\\\\BrightMemory_EP1-Win64-Shipping.exe" type: option1 - config: - osarch: '64' + osarch: "64" oslist: windows description: StartGame(DX12) - description_loc: - english: StartGame(DX12) - schinese: 开始游戏(DX12) - executable: BrightMemory_EP1\\Binaries\\Win64\\BrightMemory_EP1-Win64-Shipping.exe + executable: "BrightMemory_EP1\\\\Binaries\\\\Win64\\\\BrightMemory_EP1-Win64-Shipping.exe" type: option2 nameLocalized: schinese: 光明记忆 -'955060': +"955060": installDir: WatsonScott launch: - config: oslist: windows executable: WatsonScott.exe type: default - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" config: oslist: windows description: Launch with display options executable: WatsonScott.exe type: none -'955070': +"955070": installDir: Forex Trading Master Simulator launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SimulationTrade.exe type: default -'955120': +"955120": installDir: SCUOS launch: - config: oslist: windows executable: SCUOS.exe type: none -'955170': +"955170": installDir: RailwaySaga launch: - config: oslist: windows executable: RailwaySaga.exe type: default -'955190': +"955190": installDir: Blueprint Word Classroom launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: nw.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: nw.exe type: default -'955230': {} -'955250': +"955230": {} +"955250": installDir: Weirdest Thing launch: - config: oslist: windows executable: WeirdestThing.exe type: default -'955260': +"955260": installDir: Island Invasion launch: - config: @@ -428689,18 +422648,18 @@ oslist: linux executable: Island Invasion.x86 type: default -'955290': +"955290": installDir: The Blood Eclipse launch: - - arguments: '-vrmode none' + - arguments: "-vrmode none" config: - osarch: '64' + osarch: "64" oslist: windows executable: BloodEclipse-WindowsVR/The Blood Eclipse.exe type: default workingdir: BloodEclipse-WindowsVR - config: - osarch: '64' + osarch: "64" oslist: windows executable: BloodEclipse-WindowsVR/The Blood Eclipse.exe type: vr @@ -428710,29 +422669,29 @@ executable: BloodEclipse-OSX.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Blood Eclipse.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Blood Eclipse.x86_64 type: default -'955300': +"955300": installDir: ShotKill launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ShotKill 1.0.0.exe type: none -'955310': {} -'955320': +"955310": {} +"955320": installDir: Dark Fantasy launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Dark Fantasy.exe type: default @@ -428741,11 +422700,11 @@ executable: Dark Fantasy.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Dark Fantasy.x86_64 type: default -'955360': +"955360": installDir: Stronghold A Heros Fate launch: - config: @@ -428760,7 +422719,7 @@ oslist: linux executable: StrongholdAHerosFate type: none -'955370': +"955370": installDir: Weyrwood launch: - config: @@ -428775,7 +422734,7 @@ oslist: linux executable: Weyrwood type: none -'955380': +"955380": installDir: Death Collector launch: - config: @@ -428790,64 +422749,64 @@ oslist: linux executable: DeathCollector type: none -'955400': +"955400": installDir: Bonds launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows executable: Game.exe type: default - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: macos executable: Game.app type: default - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: linux executable: Game type: default -'955410': +"955410": installDir: Armoured Alliance launch: - config: - osarch: '64' + osarch: "64" oslist: linux executable: /app/ArmouredAllianceCMD type: default workingdir: /app - config: - osarch: '64' + osarch: "64" oslist: windows - executable: \\app\\ArmouredAllianceCMD.bat + executable: "\\\\app\\\\ArmouredAllianceCMD.bat" type: default - workingdir: \\app + workingdir: "\\\\app" - config: oslist: macos executable: ArmouredAlliance.app/Contents/MacOS/JavaAppLauncher type: default -'955470': +"955470": installDir: The Royal Game of Ur launch: - config: oslist: windows executable: ur.exe type: none -'955490': +"955490": installDir: Terror In The Atomic Desert launch: - executable: Terror.exe type: default -'955530': +"955530": installDir: Wildest of the Wild launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Wildest of the Wild.exe type: default -'955540': +"955540": installDir: Telecube Nightmare launch: - config: @@ -428856,131 +422815,131 @@ type: default - config: oslist: macos - executable: Telecube Nightmare.app\\Contents\\MacOS\\Telecube Nightmare + executable: "Telecube Nightmare.app\\\\Contents\\\\MacOS\\\\Telecube Nightmare" type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Telecube Nightmare.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Telecube Nightmare.x86_64 type: default -'955550': +"955550": installDir: Root Beer Tapper VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: RootBeerOnTap.exe type: vr -'955560': +"955560": installDir: Evenicle launch: - executable: Evenicle.exe type: default -'955570': +"955570": installDir: Teck Boxing 3D launch: - config: oslist: windows executable: Teck Boxing 3D.exe type: none -'955580': +"955580": installDir: RISE Race The Future launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: RISE Race The Future.exe type: default - - arguments: '-vrmode openvr' + - arguments: "-vrmode openvr" config: - osarch: '64' + osarch: "64" oslist: windows executable: RISE Race The Future.exe type: vr -'955600': +"955600": installDir: Noble In Exile 落魄之家 launch: - config: oslist: windows executable: NobleInExile.exe type: default -'955620': +"955620": installDir: Battle Arena Euro Wars launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: BattleArena_EuroWars.exe type: none -'955640': +"955640": installDir: Go Outside Simulator launch: - config: oslist: windows executable: Go Outside Simulator.exe type: default -'955670': +"955670": installDir: Acropolis - The Archaic Age launch: - executable: game.exe type: default -'955700': +"955700": installDir: TITAN HUNTER launch: - config: oslist: windows executable: TITAN HUNTER.exe type: default -'955720': {} -'955750': +"955720": {} +"955750": installDir: Antitetrise launch: - config: oslist: windows executable: antitetrise.exe type: default -'955770': {} -'955790': +"955770": {} +"955790": installDir: Breakout launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Breakout.exe type: default -'955820': {} -'955840': +"955820": {} +"955840": installDir: Slide to finish launch: - config: oslist: windows executable: SlideToFinish.exe type: default - - arguments: '-editor' + - arguments: "-editor" config: oslist: windows executable: SlideToFinish.exe type: editor - - arguments: '-settings' + - arguments: "-settings" config: oslist: windows executable: SlideToFinish.exe type: config -'955850': {} -'955860': +"955850": {} +"955860": installDir: Woodboy launch: - config: oslist: windows executable: Woodboy.exe type: default -'955880': {} -'955890': +"955880": {} +"955890": installDir: WP launch: - config: @@ -428989,16 +422948,13 @@ type: none - config: oslist: macos - executable: wp.app\\Contents\\MacOS\\wp-main + executable: "wp.app\\\\Contents\\\\MacOS\\\\wp-main" type: none -'955900': +"955900": installDir: AmazingCultivationSimulator launch: - - arguments: '-st' + - arguments: "-st" description: 普通模式 - description_loc: - english: 普通模式 - sc_schinese: 普通模式 executable: Amazing Cultivation Simulator.exe type: default nameLocalized: @@ -429006,19 +422962,19 @@ sc_schinese: 了不起的修仙模拟器 schinese: 了不起的修仙模拟器 tchinese: 了不起的修仙模擬器 -'955940': {} -'955950': {} -'955980': +"955940": {} +"955950": {} +"955980": installDir: Dive Inside launch: - config: oslist: windows executable: DiveInside.exe type: default -'956000': +"956000": installDir: Su Hack launch: - - arguments: '-windowed' + - arguments: "-windowed" config: oslist: windows description: Default no beta @@ -429026,26 +422982,26 @@ type: default - config: betakey: linux_beta - osarch: '64' + osarch: "64" oslist: linux description: Linux X64 executable: suLinux.x86_64 type: default - config: betakey: alpha_closed - osarch: '64' + osarch: "64" oslist: linux description: 64 Bits Linux executable: suLinux.x86_64 type: default - config: - betakey: 'default ' - osarch: '64' + betakey: "default " + osarch: "64" oslist: linux description: Linux 64 bits Default executable: suLinux.x86_64 type: default - - arguments: '-w 1920 -h 1080' + - arguments: "-w 1920 -h 1080" config: betakey: beta oslist: windows @@ -429054,18 +423010,18 @@ type: none - config: betakey: beta_win32bits - osarch: '32' + osarch: "32" oslist: windows executable: suhackx86.exe type: none - - arguments: '-width 1560 -h 720 -windowed' + - arguments: "-width 1560 -h 720 -windowed" config: betakey: beta oslist: windows description: 1560 * 720 display beta executable: suhack.exe type: config -'956010': +"956010": installDir: Hexanome launch: - config: @@ -429076,7 +423032,7 @@ oslist: macos executable: Hexanome.app type: default -'956030': +"956030": installDir: Creaks launch: - config: @@ -429087,7 +423043,7 @@ oslist: macos executable: Creaks.app type: default -'956060': +"956060": installDir: Mittelborg launch: - config: @@ -429102,73 +423058,73 @@ oslist: linux executable: Mittelborg.x86_64 type: none -'956090': +"956090": installDir: Animals Memory Horses launch: - config: oslist: windows executable: Animals Memory - Horses.exe type: default -'956100': - installDir: Lovers ' Smiles +"956100": + installDir: "Lovers ' Smiles" launch: - config: oslist: windows executable: Lovers Smiles.exe type: default -'956140': +"956140": installDir: Lifeslide launch: - config: oslist: windows executable: Lifeslide.exe type: default -'956150': +"956150": installDir: Mars Chaos Menace launch: - config: oslist: windows executable: Mars.exe type: default -'956190': {} -'956200': +"956190": {} +"956200": installDir: Leopoldo Manquiseil launch: - config: oslist: windows executable: LeopoldoManquiseil.exe type: none -'956210': +"956210": installDir: Spec Defense launch: - executable: Spec Defense.exe type: none -'956240': +"956240": installDir: Simson Tuningwerkstatt 3D launch: - - arguments: '-steam' + - arguments: "-steam" config: oslist: windows executable: Tuningwerkstatt.exe type: default - - arguments: '-steam' + - arguments: "-steam" config: oslist: macos - executable: Tuningwerkstatt.app\\Contents\\MacOS\\Tuningwerkstatt + executable: "Tuningwerkstatt.app\\\\Contents\\\\MacOS\\\\Tuningwerkstatt" type: default -'956270': {} -'956280': - installDir: Joe's Wrath +"956270": {} +"956280": + installDir: "Joe's Wrath" launch: - config: oslist: windows - executable: Joe's Wrath.exe + executable: "Joe's Wrath.exe" type: default - config: oslist: macos executable: JoesWrathMacOS.app type: default -'956310': +"956310": installDir: mvsc launch: - config: @@ -429179,14 +423135,14 @@ oslist: macos executable: mvsc.app type: default -'956350': +"956350": installDir: NoTurningBack launch: - config: oslist: windows executable: There Is No Turning Back!.exe type: none -'956360': +"956360": installDir: Badminton Warrior launch: - config: @@ -429195,31 +423151,31 @@ type: none - config: oslist: macos - executable: BadmintonWarrior.app\\Contents\\MacOS\\BadmintonWarrior + executable: "BadmintonWarrior.app\\\\Contents\\\\MacOS\\\\BadmintonWarrior" type: none -'956370': {} -'956380': - installDir: Dark Dimensions Homecoming Collector's Edition +"956370": {} +"956380": + installDir: "Dark Dimensions Homecoming Collector's Edition" launch: - config: oslist: windows executable: DarkDimensions_Homecoming_CE.exe type: default -'956390': - installDir: Final Cut Fame Fatale Collector's Edition +"956390": + installDir: "Final Cut Fame Fatale Collector's Edition" launch: - config: oslist: windows executable: FinalCut_FameFatale_CE.exe type: default -'956400': - installDir: Grim Tales Bloody Mary Collector's Edition +"956400": + installDir: "Grim Tales Bloody Mary Collector's Edition" launch: - config: oslist: windows executable: GrimTales_BloodyMaryCE.exe type: default -'956430': +"956430": installDir: Steampunk Graveyard launch: - config: @@ -429230,7 +423186,7 @@ oslist: linux executable: nw type: default -'956450': +"956450": installDir: Rogue Fable III launch: - config: @@ -429241,25 +423197,25 @@ oslist: macos executable: Rogue-Fable-III.app type: default -'956470': +"956470": installDir: Six Degrees of Damnation launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SixDegrees.exe type: default -'956480': +"956480": installDir: AquariumSandbox launch: - config: oslist: windows - executable: \\AquariumSandbox\\AquariumSandbox.exe + executable: "\\\\AquariumSandbox\\\\AquariumSandbox.exe" type: default -'956500': +"956500": installDir: Bow to Blood launch: - - arguments: '-vrmode none' + - arguments: "-vrmode none" config: oslist: windows executable: BowToBlood.exe @@ -429268,15 +423224,15 @@ oslist: windows executable: BowToBlood.exe type: vr -'956550': +"956550": installDir: DevilGirlNeedsMassages launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: DevilGirlNeedsMassages.exe type: default -'956560': +"956560": installDir: StarCrossed launch: - config: @@ -429285,26 +423241,26 @@ type: default - config: oslist: macos - executable: StarCrossed.app\\Contents\\MacOS\\StarCrossed + executable: "StarCrossed.app\\\\Contents\\\\MacOS\\\\StarCrossed" type: default - config: oslist: linux executable: StarCrossed.x86_64 type: default -'956580': +"956580": installDir: NineDragonsARENA launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: NineDragonsArenaClient.exe type: default -'956590': +"956590": installDir: Yet Another Snake Game launch: - executable: YASG.exe type: none -'956600': +"956600": installDir: Magebuster Amorous Augury launch: - config: @@ -429319,7 +423275,7 @@ oslist: linux executable: Magebuster.sh type: default -'956620': +"956620": installDir: Talk to Yuno launch: - config: @@ -429334,25 +423290,25 @@ oslist: linux executable: Yuno.sh type: none -'956680': +"956680": installDir: M.A.S.S. Builder launch: - - arguments: '-novr -nohmd' + - arguments: "-novr -nohmd" config: - osarch: '64' + osarch: "64" oslist: windows executable: MASS_Builder.exe type: default -'956780': +"956780": installDir: x2Roulette launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: x2Roulette.exe type: default -'956850': {} -'956870': +"956850": {} +"956870": installDir: Zvezda launch: - config: @@ -429363,22 +423319,22 @@ oslist: macos executable: Zvezda.app type: default -'956880': +"956880": installDir: GDVR launch: - config: oslist: windows executable: GDVR.exe type: vr -'956910': {} -'956990': +"956910": {} +"956990": installDir: Slavistan 2 launch: - config: oslist: windows executable: Slavistan 2.exe type: default -'95700': +"95700": installDir: The Cat and the Coup launch: - config: @@ -429389,52 +423345,52 @@ oslist: macos executable: TheCatAndTheCoup.app type: default -'957050': +"957050": installDir: Ultra Off-Road Simulator 2019 - Alaska launch: - config: oslist: windows executable: Ultra Off-Road Simulator 2019 Alaska.exe type: default -'957060': {} -'957080': +"957060": {} +"957080": installDir: EEP15 launch: - config: oslist: windows executable: EEP15.exe type: none -'957140': +"957140": installDir: yj launch: - executable: Game.exe type: none -'957150': +"957150": installDir: KUNG FU LEGEND32c launch: - config: oslist: windows executable: Game.exe type: default -'957170': {} -'957180': {} -'957190': {} -'957220': +"957170": {} +"957180": {} +"957190": {} +"957220": installDir: Our Worst Fears launch: - executable: OurWorstFears.exe type: none -'957270': {} -'957280': +"957270": {} +"957280": installDir: COUCH VERSUS launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: COUCH VERSUS.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: COUCH VERSUS.exe type: default @@ -429443,16 +423399,16 @@ executable: couchversus.app/Contents/MacOS/nwjs type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: COUCH VERSUS type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: COUCH VERSUS type: default -'957350': +"957350": installDir: Rogue Rails launch: - config: @@ -429463,17 +423419,17 @@ oslist: linux executable: RogueRails.x86 type: default -'957390': - installDir: Chief's Quest +"957390": + installDir: "Chief's Quest" launch: - config: oslist: windows executable: Chiefs Quest.exe type: default -'957410': +"957410": installDir: King of Queendoms launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows executable: nw.exe @@ -429482,14 +423438,14 @@ oslist: macos executable: nwjs.app type: none -'957430': +"957430": installDir: Mentai Uncensored launch: - config: oslist: windows executable: Mentai Uncensored.exe type: default -'957440': +"957440": installDir: Swords and Sandals Pirates launch: - config: @@ -429500,70 +423456,70 @@ oslist: macos executable: swords_and_sandals_pirates.app/Contents/MacOS/Swords and Sandals Pirates type: default -'957510': +"957510": installDir: The Hour Has Come launch: - config: oslist: windows executable: TheHourHasCome.exe type: default -'957570': +"957570": installDir: The Qaedon Wars - The Story Begins launch: - executable: The Story Begins.exe type: default -'957590': {} -'957660': +"957590": {} +"957660": installDir: Catizens launch: - - arguments: '-steam' + - arguments: "-steam" config: oslist: windows executable: Catizens.exe - - arguments: '-steam' + - arguments: "-steam" config: oslist: macos - executable: Catizens.app\\Contents\\MacOS\\Catizens + executable: "Catizens.app\\\\Contents\\\\MacOS\\\\Catizens" type: default nameLocalized: schinese: 喵星总动员 | Catizens tchinese: 喵星总动员 | Catizens thai: พลเมืองชาวเหมียว | Catizens -'957680': +"957680": installDir: DoughlingsInvasion launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: DoughlingsInvasion.exe type: default -'957710': +"957710": installDir: THE WAYLANDERS launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Waylanders.exe type: default -'957720': +"957720": installDir: Strategic Command WWII World at War launch: - config: oslist: windows executable: autorun.exe type: default -'957770': +"957770": installDir: WarpThrough launch: - config: oslist: windows executable: WarpThrough.exe type: none -'957780': +"957780": installDir: Tower of Fate launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TowerOfFate.exe type: default @@ -429571,8 +423527,8 @@ oslist: linux executable: TowerOfFate.sh type: default -'957800': {} -'957810': +"957800": {} +"957810": installDir: Sow_Windows_Content_Setup launch: - config: @@ -429580,7 +423536,7 @@ description: Public default branch executable: Season of War (Alpha).exe type: default -'957820': +"957820": installDir: Across the Grooves launch: - config: @@ -429595,22 +423551,22 @@ oslist: linux executable: AcrosstheGrooves type: default -'957830': +"957830": installDir: Crystal Maidens launch: - config: oslist: windows executable: Crystal Maidens.exe type: default -'957850': +"957850": installDir: Light Up the Holidays launch: - config: oslist: windows executable: Light Up the Holidays.exe type: none -'957860': {} -'957890': +"957860": {} +"957890": installDir: The Horologists Legacy launch: - config: @@ -429621,51 +423577,47 @@ oslist: macos executable: THL_Mac.app type: default -'957930': +"957930": installDir: Intelligence Underwater Kingdom launch: - config: oslist: windows executable: Intelligence Underwater Kingdom.exe type: default -'957950': +"957950": installDir: 1971 Indian Naval Front launch: - config: oslist: windows executable: INF_PC.exe type: default -'957960': +"957960": installDir: Inkulinati launch: - - arguments: '-nolog' + - arguments: "-nolog" config: oslist: windows executable: Inkulinati.exe type: default - - arguments: '-nolog' + - arguments: "-nolog" config: oslist: macos executable: Inkulinati.app type: default - config: oslist: windows - ownsdlc: '2223510' + ownsdlc: "2223510" description: Bonus Content - description_loc: - english: Bonus Content executable: open_bonus_win.bat - config: oslist: macos - ownsdlc: '2223510' + ownsdlc: "2223510" description: Bonus Content - description_loc: - english: Bonus Content executable: open_bonus_osx.sh nameLocalized: schinese: Inkulinati 神笔谈兵 tchinese: Inkulinati 神筆談兵 -'958050': +"958050": installDir: 1001stHyperTower launch: - config: @@ -429678,31 +423630,31 @@ oslist: linux executable: 1001stHyperTower.x86_64 type: none -'958090': +"958090": installDir: School of the Dead Anastasia launch: - config: oslist: windows executable: School of the Dead Anastasia.exe type: default -'958130': +"958130": installDir: NEET simulator launch: - executable: S009.exe type: none -'958190': +"958190": installDir: Surge Radio launch: - config: oslist: windows executable: SurgeRadio.exe type: default -'958200': +"958200": installDir: Ralf launch: - executable: Ralf.exe type: none -'958220': +"958220": installDir: Search for Surf launch: - config: @@ -429713,23 +423665,23 @@ oslist: macos executable: MAC.app/Contents/MacOS/MAC type: default -'958230': +"958230": installDir: AXE launch: - config: oslist: windows - executable: windows_content\\AXESURVIVAL.exe + executable: "windows_content\\\\AXESURVIVAL.exe" type: default -'958240': {} -'958260': +"958240": {} +"958260": installDir: DOAX-VenusVacation launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: DOAX_VV_Launcher.exe type: default -'958280': +"958280": installDir: Float Night launch: - config: @@ -429739,21 +423691,21 @@ nameLocalized: schinese: 宣夜 tchinese: 宣夜 -'958290': {} -'958300': +"958290": {} +"958300": installDir: Cute Girls PC launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: cutegirlspc.exe type: default -'958310': +"958310": installDir: Evolo.SpiderSim launch: - executable: Evolo.SpiderSim.exe type: none -'958320': +"958320": installDir: AFTF_Normandy launch: - config: @@ -429762,23 +423714,23 @@ type: default - config: oslist: macos - executable: AFTF1_Mac.app\\Contents\\MacOS\\AFTF1_Mac + executable: "AFTF1_Mac.app\\\\Contents\\\\MacOS\\\\AFTF1_Mac" type: default - config: oslist: linux executable: AFrontTooFar.x86 type: default -'958360': +"958360": installDir: Silver Child launch: - config: oslist: windows executable: Silver Child.exe type: default -'958400': +"958400": installDir: Project CARS 3 launch: - - arguments: '-novr' + - arguments: "-novr" config: oslist: windows description: Virgo Publish Exe @@ -429794,79 +423746,79 @@ description: Project CARS 3 executable: pCARS3.exe type: vr - - arguments: '-novr' + - arguments: "-novr" config: betakey: testing externalqa staging compat hardwaremanuf testing2 4_ed oslist: windows description: Project CARS 3 QA build executable: VirgoQA.exe type: option1 - - arguments: '-novr' + - arguments: "-novr" config: betakey: 4_ed oslist: windows description: Temp Gold Launcher executable: VirgoGld.exe type: option2 - - arguments: '-novr' + - arguments: "-novr" config: betakey: staging oslist: windows description: Temp Publish exe Staging executable: Virgo.exe type: option3 -'958480': +"958480": installDir: Seed of the Dead launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SeedOfTheDead_64bit.exe type: none - config: - osarch: '32' + osarch: "32" oslist: windows executable: SeedOfTheDead_32bit.exe type: none -'958490': +"958490": installDir: Titan shield launch: - config: oslist: windows executable: Titan shield.exe type: default -'958510': +"958510": installDir: Assault on Hyperion Base launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TopDown.exe type: none -'958560': {} -'958640': +"958560": {} +"958640": installDir: Super Turbo Sudoku launch: - config: oslist: windows executable: Super Turbo Sudoku.exe type: default -'958650': +"958650": installDir: Strange Encounter launch: - config: oslist: windows executable: Strange_Encounter.exe type: none -'958680': +"958680": installDir: Self-knowledge VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: KnowledgeVR.exe type: vr -'958690': +"958690": installDir: The Sky Climber launch: - config: @@ -429874,20 +423826,20 @@ executable: TheSkyClimber.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: TheSkyClimber.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: TheSkyClimber.x86_64 type: default - config: oslist: macos - executable: TheSkyClimber.app\\Contents\\MacOS\\TheSkyClimber + executable: "TheSkyClimber.app\\\\Contents\\\\MacOS\\\\TheSkyClimber" type: default -'958720': +"958720": installDir: Second Chance launch: - config: @@ -429900,48 +423852,48 @@ type: default - config: oslist: macos - executable: SecondChance.app\\Contents\\MacOS\\SecondChance + executable: "SecondChance.app\\\\Contents\\\\MacOS\\\\SecondChance" type: none -'958740': +"958740": installDir: Heretic Operative launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Heretic Operative.exe type: default -'958750': +"958750": installDir: Re-O-Ri launch: - config: oslist: windows executable: Re-O-Ri.exe type: vr -'958790': +"958790": installDir: Big Breezy Boat launch: - config: oslist: windows executable: b3.exe type: vr -'958800': {} -'958880': +"958800": {} +"958880": installDir: NickBounty3 launch: - config: oslist: windows executable: Nick Bounty and the Dame with the Blue Chewed Shoe.exe type: default -'958900': +"958900": installDir: BattleX-1.0.1-Arcade launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: VCGame\\Binaries\\Win64\\VCGame-Win64-Shipping.exe + executable: "VCGame\\\\Binaries\\\\Win64\\\\VCGame-Win64-Shipping.exe" type: vr -'958910': {} -'958930': +"958910": {} +"958930": installDir: Ricky Recharge launch: - config: @@ -429952,19 +423904,19 @@ oslist: windows executable: RickyRecharge.exe type: default -'958960': - installDir: Darwin's Test +"958960": + installDir: "Darwin's Test" launch: - config: oslist: windows executable: Darwins_Test.exe type: default -'958980': +"958980": installDir: Pang and Bang launch: - executable: Pang and Bang.exe type: none -'958990': +"958990": installDir: Blokin launch: - config: @@ -429973,15 +423925,15 @@ type: default - config: oslist: macos - executable: Blokin.app\\Contents\\MacOS\\Blokin + executable: "Blokin.app\\\\Contents\\\\MacOS\\\\Blokin" type: default -'95900': +"95900": installDir: Air Conflicts Secret Wars launch: - executable: ACSW.exe - description: Configure executable: Configure.exe -'959000': +"959000": installDir: Edna Anniversary launch: - config: @@ -429993,31 +423945,31 @@ executable: Edna.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: edna.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: edna.x86 type: default -'959020': +"959020": installDir: You Shall Not Break! launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: YouShallNotBreak.exe type: none -'959030': +"959030": installDir: Zombie Cubes launch: - config: oslist: windows executable: ZombieCubes.exe type: default -'959050': +"959050": installDir: Bound Up & Squirming launch: - config: @@ -430028,7 +423980,7 @@ oslist: macos executable: BoundSquirm.app type: default -'959080': +"959080": installDir: Unsung Warriors launch: - config: @@ -430040,26 +423992,26 @@ executable: UnsungWarriorsPrologue.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: UnsungWarriorsPrologue.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: UnsungWarriorsPrologue.x86 type: default -'959090': +"959090": installDir: WayDown launch: - config: oslist: windows executable: waydown.exe type: none -'959130': +"959130": installDir: DandyRandy launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows description: Main WIN32 Launcher @@ -430071,17 +424023,17 @@ type: default - config: oslist: linux - executable: DandyRandy-linux-x64\\DandyRandy + executable: "DandyRandy-linux-x64\\\\DandyRandy" type: default -'959170': +"959170": installDir: JohnCondemned launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: JohnCondemned.exe type: default -'959200': +"959200": installDir: Battleships and Carriers launch: - config: @@ -430092,38 +424044,38 @@ oslist: windows executable: battleship.exe type: default -'959210': {} -'959220': {} -'959260': +"959210": {} +"959220": {} +"959260": installDir: aspect the game launch: - config: oslist: windows executable: Aspect.exe type: default -'959280': +"959280": installDir: Total Seclusion launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TotalSeclusion.exe type: default -'959340': +"959340": installDir: Deconstruction Lab launch: - config: oslist: windows executable: PROJECT.exe type: default -'959350': +"959350": installDir: SengokuNeet launch: - config: oslist: windows executable: Game.exe type: default -'959380': +"959380": installDir: War in Space launch: - config: @@ -430131,67 +424083,67 @@ description: Launch War In Space executable: WarinSpace.exe type: default -'959400': +"959400": installDir: Save Thine Kingdom launch: - config: oslist: windows executable: SaveThineKingdom.exe type: default -'959410': +"959410": installDir: The Endless Empty launch: - config: oslist: windows executable: Game.exe type: none -'959440': {} -'959480': {} -'959500': +"959440": {} +"959480": {} +"959500": installDir: Cute Puzzle launch: - config: oslist: windows executable: WC_Puzzle.exe type: default -'959510': +"959510": installDir: The Master Club launch: - executable: The Master Club.exe type: vr -'959520': +"959520": installDir: Fantasy Blacksmith launch: - config: oslist: windows executable: FantasyBlacksmith.exe type: default -'959540': - installDir: Devil's Toy +"959540": + installDir: "Devil's Toy" launch: - config: oslist: windows - executable: Devil's Toy.exe + executable: "Devil's Toy.exe" type: default - config: oslist: macos - executable: Devil's Toy.app + executable: "Devil's Toy.app" type: default - config: oslist: linux - executable: Devil's Toy.x86 + executable: "Devil's Toy.x86" type: default -'959590': +"959590": installDir: Super Keepy Ups launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: 32bit executable: Super Keepy Ups.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows description: 64bit executable: Super Keepy Ups.exe @@ -430200,7 +424152,7 @@ oslist: macos executable: Super Keepy Ups.app type: default -'959700': +"959700": installDir: Chuckie Egg 2017 Challenges launch: - config: @@ -430211,7 +424163,7 @@ oslist: macos executable: CEC2017.app type: none -'959710': +"959710": installDir: the earth is a better person than me launch: - config: @@ -430222,57 +424174,57 @@ oslist: macos executable: theearthisabetterpersonthanme.app type: default -'959730': +"959730": installDir: Spider Lander launch: - config: oslist: windows executable: SpiderLanderDX.exe type: default -'959750': +"959750": installDir: A Book of Beasts and Buddies launch: - config: oslist: windows executable: Beast Buds.exe type: default -'959760': +"959760": installDir: Play Room 0g launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: PlayRoom0gBuild.exe type: none -'959770': +"959770": installDir: Moe launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Moe.exe type: default -'959800': {} -'959830': +"959800": {} +"959830": installDir: Navalny Posledniy miting launch: - config: oslist: windows executable: Navalny Posledniy miting.exe type: none -'959850': +"959850": installDir: American Patriots The Swamp Fox launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SwampFox.exe type: default -'959860': +"959860": installDir: The Valiant launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Direct3D 11 executable: The Valiant.exe @@ -430282,7 +424234,7 @@ oslist: linux executable: The Valiant.exe type: default -'959870': +"959870": installDir: The Monster launch: - description: The Monstar @@ -430291,12 +424243,12 @@ - description: 查看说明和攻略 executable: 0cube.url type: option2 -'959880': +"959880": installDir: Dungeon Town launch: - executable: Game.exe type: default -'959890': +"959890": installDir: Sister Travel launch: - executable: Game.exe @@ -430305,14 +424257,14 @@ japanese: 限界!?お兄ちゃん シスタートラベル schinese: 妹妹旅行 tchinese: 妹妹旅行 -'959920': +"959920": installDir: VR Curling launch: - config: oslist: windows executable: VR Curling.exe type: vr -'959930': +"959930": installDir: Duality launch: - config: @@ -430323,11 +424275,11 @@ oslist: linux executable: ClickOnMeToRunCoolGame.x86_64 type: default -'959940': {} -'959960': {} -'959980': {} -'959990': {} -'96000': +"959940": {} +"959960": {} +"959980": {} +"959990": {} +"96000": installDir: The Tiny Bang Story launch: - config: @@ -430339,16 +424291,16 @@ - config: oslist: linux executable: TTBS -'960010': {} -'960040': +"960010": {} +"960040": installDir: Clash of Chefs VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ClashOfChefsVR.exe type: vr -'960090': +"960090": installDir: BloonsTD6 launch: - config: @@ -430359,15 +424311,15 @@ oslist: macos executable: BloonsTD6.app/Contents/MacOS/BloonsTD6 type: none -'960130': +"960130": installDir: GALAXITY Beta launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Galaxity.exe type: vr -'960140': +"960140": installDir: FlowerDesignTwo launch: - config: @@ -430378,38 +424330,38 @@ english: Flower Design Ⅱ schinese: 插花设计Ⅱ tchinese: 插花設計Ⅱ -'960150': +"960150": installDir: Rending Sky® launch: - config: oslist: windows executable: game.exe type: default -'960170': +"960170": installDir: DJMAX RESPECT V launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: DJMAX RESPECT V.exe type: default -'960190': - installDir: Maytroid. I swear it's a nice game too +"960190": + installDir: "Maytroid. I swear it's a nice game too" launch: - executable: nw.exe type: default -'960200': +"960200": installDir: One Night 2 The Beyond launch: - config: oslist: windows executable: Game.exe type: default -'960220': - installDir: Lufulus' Creatures +"960220": + installDir: "Lufulus' Creatures" launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: LufulusCreaturesLauncher.exe type: none @@ -430417,20 +424369,20 @@ oslist: macos executable: LufulusCreatures.app type: none -'960240': +"960240": installDir: StuntKiteParty launch: - executable: StuntKiteParty.exe type: none -'960270': +"960270": installDir: Dafen Oil Painting Village An Immersive Reality launch: - config: oslist: windows executable: Dafen Final build final attempt.exe type: vr -'960280': {} -'960320': +"960280": {} +"960320": installDir: Ego Hearts launch: - config: @@ -430441,41 +424393,41 @@ oslist: macos executable: EgoHearts.app type: default -'960330': +"960330": installDir: Dark Gnome launch: - config: oslist: windows executable: DarkGnome.exe type: default -'960340': +"960340": installDir: YUNA Sugar hearts and Love launch: - description: YUNA Main Game executable: yuna.exe type: option1 - config: - ownsdlc: '1089040' + ownsdlc: "1089040" description: YUNA DLC - NEW LOVE executable: /DLC/yunaNL.exe type: option2 workingdir: /DLC/ -'960360': +"960360": installDir: Yuzi Lims Hentai launch: - executable: YLH.exe type: none -'960370': {} -'960380': {} -'960420': +"960370": {} +"960380": {} +"960420": installDir: Hello Neighbor Hide and Seek launch: - config: oslist: windows executable: HideAndSeek.exe type: default -'960430': {} -'960550': +"960430": {} +"960550": installDir: Distress A Choice-Driven Sci-Fi Adventure launch: - config: @@ -430490,7 +424442,7 @@ oslist: linux executable: Distress.sh type: default -'960590': +"960590": installDir: CourageForAKiss launch: - config: @@ -430505,29 +424457,29 @@ oslist: macos executable: CourageForAKiss.app type: default -'960600': +"960600": installDir: Nanoswarm launch: - config: oslist: windows - executable: 'SteamBeta0,1.exe' + executable: "SteamBeta0,1.exe" type: default -'960610': +"960610": installDir: The Gameshow launch: - config: oslist: windows executable: TheGameshow.exe type: default -'960630': +"960630": installDir: Beyond Critical launch: - config: oslist: windows executable: Beyond Critical.exe type: default -'960650': {} -'960660': +"960650": {} +"960660": installDir: Coldfall launch: - config: @@ -430536,9 +424488,9 @@ type: none - config: oslist: linux - executable: ./runner + executable: "./runner" type: none -'960680': +"960680": installDir: Anno Domini Godfather launch: - config: @@ -430549,11 +424501,11 @@ oslist: macos executable: Anno_Domini_Godfather type: none -'960690': +"960690": installDir: One Step From Eden launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: OSFE.exe type: default @@ -430562,27 +424514,27 @@ executable: OSFE.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: OSFE.x86_64 type: none - config: - osarch: '32' + osarch: "32" oslist: windows executable: OSFE.exe type: default nameLocalized: schinese: 伊甸之路 tchinese: 伊甸之路 -'960700': - installDir: GUNS 'n GUTS +"960700": + installDir: "GUNS 'n GUTS" launch: - config: oslist: windows - executable: GUNS 'n GUTS.exe + executable: "GUNS 'n GUTS.exe" type: default -'960710': - installDir: DON'T GIVE UP A Cynical Tale +"960710": + installDir: "DON'T GIVE UP A Cynical Tale" launch: - config: oslist: windows @@ -430593,51 +424545,51 @@ executable: DontGiveUp.app type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: DontGiveUp.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: DontGiveUp.x86_64 type: none -'960740': +"960740": installDir: GirlsCivilization launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Gciv21V.exe type: none -'960800': +"960800": installDir: Second World Air War S launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SecondWorld.exe type: default -'960820': +"960820": installDir: Data mining 2 launch: - config: oslist: windows executable: Data mining 2.exe type: default -'960900': +"960900": installDir: Lornsword Winter Chronicle launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Lornsword Winter Chronicle.exe type: default -'960910': +"960910": installDir: HEAVY RAIN launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Master version executable: HeavyRain.exe @@ -430645,26 +424597,26 @@ nameLocalized: schinese: 暴雨 tchinese: 暴雨 -'960940': +"960940": installDir: VRiczat - The Virtual Reality Cricket Game launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Vriczat - The Virtual Reality Cricket Game.exe type: vr -'960980': +"960980": installDir: Apsulov End of Gods launch: - config: oslist: windows executable: Project_C.exe type: none -'960990': +"960990": installDir: BEYOND Two Souls launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Master version executable: BeyondTwoSouls_Steam.exe @@ -430672,11 +424624,11 @@ nameLocalized: schinese: 超凡双生 tchinese: 超凡双生 -'96100': +"96100": installDir: Defy Gravity launch: - executable: DefyGravity.exe -'961000': +"961000": installDir: SURVIVERS LEFT X launch: - config: @@ -430684,7 +424636,7 @@ description: Launch executable: SURVIVORS LEFT X.exe type: default -'961010': +"961010": installDir: The Hand of Glory launch: - config: @@ -430694,18 +424646,14 @@ - config: oslist: macos description: The Hand of Glory - Mac Version - description_loc: - english: The Hand of Glory - Mac Version executable: The Hand of Glory.app - config: oslist: linux description: The Hand of Glory - Linux Version - description_loc: - english: The Hand of Glory - Linux Version executable: start type: default -'961030': {} -'961040': +"961030": {} +"961040": installDir: Down to Hell launch: - config: @@ -430714,9 +424662,9 @@ type: default - config: oslist: macos - executable: DownToHell.app\\Contents\\MacOS\\DownToHell + executable: "DownToHell.app\\\\Contents\\\\MacOS\\\\DownToHell" type: default -'961060': +"961060": installDir: Ellen launch: - config: @@ -430725,51 +424673,51 @@ type: default - config: oslist: macos - executable: Contents\\MacOS\\Mac + executable: "Contents\\\\MacOS\\\\Mac" type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: GameEllen.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: GameEllen.x86 type: default -'961070': {} -'961110': +"961070": {} +"961110": installDir: Prixel launch: - config: oslist: windows executable: Prixal1.01a.exe type: default -'961180': {} -'961200': +"961180": {} +"961200": installDir: Predecessor launch: - config: oslist: windows executable: PredecessorLauncher.exe -'961210': +"961210": installDir: 7-minute HOP launch: - config: oslist: windows executable: 7-minute HOP.exe type: default -'961220': +"961220": installDir: Sanatorium Purgatorium launch: - config: oslist: windows executable: Sanatorium-Purgatorium.exe type: default -'961230': - installDir: 'Backgammon, Chess, Checkers' +"961230": + installDir: "Backgammon, Chess, Checkers" launch: - - arguments: '-vrmode' + - arguments: "-vrmode" config: oslist: windows executable: BackgammonChessCheckers.exe @@ -430778,30 +424726,30 @@ oslist: windows executable: BackgammonChessCheckers.exe type: default -'961240': +"961240": installDir: CastleGuard launch: - config: oslist: windows - description: 'CastleGuard : SinglePlayer' + description: "CastleGuard : SinglePlayer" executable: CastleGuard.exe type: option1 - config: oslist: windows - description: 'CastleGuard : Multiplayer' - executable: CastleGuardMP\\CastleGuardMP.exe + description: "CastleGuard : Multiplayer" + executable: "CastleGuardMP\\\\CastleGuardMP.exe" type: option2 -'961260': {} -'961270': {} -'961280': {} -'961410': +"961260": {} +"961270": {} +"961280": {} +"961410": installDir: Red or Blue launch: - config: oslist: windows executable: Red Blue.exe type: none -'961420': +"961420": installDir: Vile launch: - config: @@ -430814,48 +424762,48 @@ type: default - config: oslist: macos - executable: vile.app\\Contents\\MacOS\\nwjs + executable: "vile.app\\\\Contents\\\\MacOS\\\\nwjs" type: default -'961450': +"961450": installDir: eCheese Zone launch: - config: oslist: windows executable: eCheese Zone Beta.exe type: default -'961460': {} -'961490': +"961460": {} +"961490": installDir: TSANMH launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: TSANMH\\Binaries\\Win64\\TSANMH.exe + executable: "TSANMH\\\\Binaries\\\\Win64\\\\TSANMH.exe" type: default - config: - ownsdlc: '961490' - executable: TSANMH\\OST + ownsdlc: "961490" + executable: "TSANMH\\\\OST" type: default -'961510': +"961510": installDir: MarisaLand Legacy launch: - config: oslist: windows executable: MariLega.exe type: default -'961540': +"961540": installDir: Config Wars launch: - executable: Config Wars.exe type: default -'961560': +"961560": installDir: Dark Trail launch: - config: oslist: windows executable: DarkTrail.exe type: default -'961620': +"961620": installDir: Flashback launch: - config: @@ -430866,7 +424814,7 @@ oslist: macos executable: Flashback.app type: default -'961640': +"961640": installDir: The Tower Of Five Hearts launch: - config: @@ -430878,41 +424826,41 @@ executable: Tower of Five Hearts.app type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: Tower of Five Hearts.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: Tower of Five Hearts.x86_64 type: none -'961660': +"961660": installDir: Nowhere Patrol launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: NowherePatrol.exe type: default -'961680': +"961680": installDir: Rampage Online launch: - executable: RampageOnline.exe type: default -'961700': +"961700": installDir: NekoCharm launch: - executable: NekoCharm.exe type: none -'961710': +"961710": installDir: Puzzle Out VR launch: - config: oslist: windows executable: Puzzle Out VR.exe type: vr -'961720': +"961720": installDir: Xenochamber launch: - config: @@ -430923,7 +424871,7 @@ oslist: macos executable: Xenochamber.app/Contents/MacOS/Xenochamber type: default -'961740': +"961740": installDir: Quantum Retribution launch: - config: @@ -430934,18 +424882,18 @@ oslist: macos executable: Quantum Retribution.app/Contents/MacOS/Quantum Retribution type: none -'961750': - installDir: Rope Racer O'Neon +"961750": + installDir: "Rope Racer O'Neon" launch: - config: oslist: windows executable: Rope Racer.exe type: default -'961850': +"961850": installDir: Circle of Sumo launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Circle of Sumo.exe type: default @@ -430953,55 +424901,55 @@ oslist: macos executable: Circle of Sumo.app type: default -'961860': +"961860": installDir: Super Blasting Boy launch: - config: oslist: windows executable: SuperBlastingBoy.exe type: default -'961870': +"961870": installDir: TOLTEC AND THE MYSTERIES OF THE SECRET ISLAND launch: - config: oslist: windows executable: nw.exe type: default -'961910': +"961910": installDir: Charm Tale 2 Mermaid Lagoon launch: - executable: CharmTale2.exe type: none -'961920': +"961920": installDir: RomanticJourney launch: - executable: RomanticJourney.exe type: none -'96200': +"96200": installDir: steelstorm launch: - config: oslist: windows - description: 'Steel Storm: Burning Retribution' + description: "Steel Storm: Burning Retribution" executable: steelstorm.exe - - arguments: '-game dlc2' + - arguments: "-game dlc2" config: oslist: windows description: Forgotten Prison DLC executable: steelstorm.exe - config: oslist: macos - description: 'Steel Storm: Burning Retribution' + description: "Steel Storm: Burning Retribution" executable: steelstorm.app - config: oslist: linux - description: 'Steel Storm: Burning Retribution 32-bit' + description: "Steel Storm: Burning Retribution 32-bit" executable: steelstorm - config: oslist: linux - description: 'Play Steel Storm: Burning Retribution 64-bit' + description: "Play Steel Storm: Burning Retribution 64-bit" executable: steelstorm64 - - arguments: '-game dlc2' + - arguments: "-game dlc2" config: oslist: linux description: Forgotten Prison DLC @@ -431009,36 +424957,36 @@ - config: oslist: windows description: Steel Storm Level Editor - executable: netradiant_win32\\radiant.exe -'962050': + executable: "netradiant_win32\\\\radiant.exe" +"962050": installDir: Puzzles for smart Birds launch: - config: oslist: windows executable: Puzzles for smart - Birds.exe type: default -'962060': +"962060": installDir: HeavenAndHell2 launch: - config: oslist: windows executable: HeavenHell2.exe type: default -'962070': +"962070": installDir: Angry King launch: - executable: Angry King.exe type: none -'962080': {} -'962090': +"962080": {} +"962090": installDir: Commonhood launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: Common'hood.exe + executable: "Common'hood.exe" type: default -'962130': +"962130": installDir: Grounded launch: - executable: Grounded.exe @@ -431056,13 +425004,11 @@ - config: betakey: latest_release description: (GroundedDev.exe) Build with debug options. - description_loc: - english: (GroundedDev.exe) Build with debug options. executable: GroundedDev.exe type: none - config: betakey: stable_release - description: '(GroundedDev,exe) Build with debug options.' + description: "(GroundedDev,exe) Build with debug options." executable: GroundedDev.exe type: none - config: @@ -431073,20 +425019,16 @@ - config: betakey: microsoft_research description: (GroundedDev.exe) Build with debug options. - description_loc: - english: (GroundedDev.exe) Build with debug options. executable: GroundedDev.exe type: none - config: betakey: live_debug description: (GroundedDev.exe) Build with debug options. - description_loc: - english: (GroundedDev.exe) Build with debug options. executable: GroundedDev.exe -'962150': +"962150": installDir: Tactics V launch: - - arguments: '-force-glcore' + - arguments: "-force-glcore" config: oslist: windows description: using OpenGl Core @@ -431094,15 +425036,15 @@ type: option1 - config: oslist: macos - executable: TacticsV.app\\Contents\\MacOS\\TacticsV + executable: "TacticsV.app\\\\Contents\\\\MacOS\\\\TacticsV" type: default - - arguments: '-force-glcore' + - arguments: "-force-glcore" config: oslist: linux description: using OpenGL Core executable: TacticsV.x86_64 type: option1 - - arguments: '-force-vulkan' + - arguments: "-force-vulkan" config: oslist: windows description: using Vulkan @@ -431113,20 +425055,20 @@ description: using Vulkan executable: TacticsV.x86_64 type: option2 - - arguments: '-force-d3d11' + - arguments: "-force-d3d11" config: oslist: windows description: using DirectX 11 executable: TacticsV.exe type: option3 - - arguments: '-force-driver-type-warp' + - arguments: "-force-driver-type-warp" config: betakey: publicbeta oslist: windows description: using Warp executable: TacticsV.exe type: none -'962170': +"962170": installDir: Ultimate Legends launch: - config: @@ -431137,7 +425079,7 @@ oslist: macos executable: Game.app type: none -'962220': +"962220": installDir: Singularity Tactics Arena launch: - config: @@ -431148,61 +425090,61 @@ oslist: macos executable: Game.app type: none -'962240': +"962240": installDir: Tiger Tank 59 A-Gun launch: - config: oslist: windows executable: game.exe type: default -'962250': +"962250": installDir: Solitaire Learn the Flags launch: - config: oslist: windows executable: Solitaire Learn the Flags.exe type: default -'962270': +"962270": installDir: Time Virus launch: - executable: Time Virus.exe type: none -'962280': +"962280": installDir: Fantom Feast launch: - executable: Fantom Feast.exe type: default -'962290': +"962290": installDir: The sea of TianGang XinSu launch: - config: oslist: windows executable: tgxsh.exe type: none -'962310': +"962310": installDir: Flip-Out! launch: - config: oslist: windows executable: Flip-Out.exe type: none -'962340': {} -'962360': {} -'962370': +"962340": {} +"962360": {} +"962370": installDir: Silc Aoorha-Axeman launch: - config: oslist: windows executable: Axeman.exe type: none -'962380': +"962380": installDir: Hot Fit launch: - config: oslist: windows executable: Fitness.exe type: none -'962390': +"962390": installDir: S.A.I.A awaknening a Robothorium visual novel launch: - config: @@ -431217,16 +425159,16 @@ oslist: linux executable: RobothoriumVisualNovel.x86 type: default -'962400': +"962400": installDir: Granny launch: - config: oslist: windows executable: Granny.exe type: default -'962450': {} -'962470': {} -'962490': +"962450": {} +"962470": {} +"962490": installDir: EnergyGirl launch: - config: @@ -431236,31 +425178,31 @@ - config: oslist: macos description: Mac OS X App Launch - executable: Game.app\\Contents\\MacOS\\nwjs + executable: "Game.app\\\\Contents\\\\MacOS\\\\nwjs" type: default -'962510': +"962510": installDir: The Darkest Woods 2 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: The Darkest Woods 2.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: The Darkest Woods 2.x86_64 type: default - config: oslist: macos - executable: The Darkest Woods 2.app\\Contents\\MacOS\\The Darkest Woods 2 + executable: "The Darkest Woods 2.app\\\\Contents\\\\MacOS\\\\The Darkest Woods 2" type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: The Darkest Woods 2.exe type: default -'962580': +"962580": installDir: Summer in Mara launch: - config: @@ -431271,36 +425213,36 @@ oslist: macos executable: Summer in Mara.app type: none -'962610': +"962610": installDir: IScream launch: - config: oslist: windows executable: IScream.exe type: none -'962630': +"962630": installDir: Transient launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: /Transient.exe type: default -'962650': +"962650": installDir: paroniria launch: - config: oslist: windows executable: Game.exe type: default -'962700': +"962700": installDir: Mountains of Madness launch: - config: oslist: windows executable: winsetup.exe type: default -'962710': +"962710": installDir: We Must Praise Our Glorious Leader The Flumf launch: - config: @@ -431311,7 +425253,7 @@ oslist: linux executable: flumfGame type: none -'962730': +"962730": installDir: Skater XL launch: - config: @@ -431319,44 +425261,44 @@ oslist: windows executable: SkaterXL.exe type: default -'962770': {} -'962810': +"962770": {} +"962810": installDir: Dark Roll launch: - config: oslist: windows executable: Dark Roll.exe type: default -'962850': {} -'962860': +"962850": {} +"962860": installDir: Madland launch: - executable: Madland.exe type: default -'962940': {} -'962950': +"962940": {} +"962950": installDir: Executor launch: - config: oslist: windows executable: Executor.exe type: default -'962970': +"962970": installDir: My 16 Lover launch: - config: oslist: windows executable: One-sixth lover.exe type: none -'96300': +"96300": installDir: Ravaged launch: - - arguments: '-seekfreeloading' + - arguments: "-seekfreeloading" config: oslist: windows - executable: Binaries\\Win32\\RavagedGame.exe - workingdir: Binaries\\Win32 -'963000': + executable: "Binaries\\\\Win32\\\\RavagedGame.exe" + workingdir: "Binaries\\\\Win32" +"963000": installDir: The Haunted Island a Frog Detective Game launch: - config: @@ -431367,15 +425309,15 @@ oslist: macos executable: The_Haunted_Island.app type: default -'963010': {} -'963020': +"963010": {} +"963020": installDir: ponkle launch: - config: oslist: windows executable: ponkle.exe type: default -'963050': +"963050": installDir: Toy Road Constructor launch: - config: @@ -431386,8 +425328,8 @@ oslist: macos executable: Toy Road Constructor.app/Contents/MacOS/Toy Road Constructor type: none -'963080': {} -'963110': +"963080": {} +"963110": installDir: Love Casino Smoking Aces launch: - config: @@ -431398,7 +425340,7 @@ oslist: windows executable: Love Casino Smoking Aces.exe type: none -'963150': +"963150": installDir: Pirate Survival Fantasy Shooter launch: - config: @@ -431408,47 +425350,47 @@ type: vr - config: oslist: windows - description: 'No Headset version, normal PC FPS' + description: "No Headset version, normal PC FPS" executable: Pirate Survival Fantasy Shooter NO Headset.exe type: default -'963170': +"963170": installDir: Citadale - The Ancestral Strain launch: - config: oslist: windows - executable: win64\\Citadale4.exe + executable: "win64\\\\Citadale4.exe" type: default - config: oslist: macos - executable: mac64\\Citadale4.app + executable: "mac64\\\\Citadale4.app" type: default - config: oslist: linux - executable: linux64\\Citadale4 + executable: "linux64\\\\Citadale4" type: default -'963180': +"963180": installDir: Trash Rage launch: - - arguments: '-steam' + - arguments: "-steam" config: oslist: windows executable: Trash Rage.exe type: vr - - arguments: '-steam' + - arguments: "-steam" config: betakey: beta oslist: windows - description: 'Trash Rage [BETA]' + description: "Trash Rage [BETA]" executable: beta/Trash Rage.exe type: vr -'963190': +"963190": installDir: Pixel World launch: - config: oslist: windows executable: PixelWorld.exe type: default -'963200': +"963200": installDir: PixNautiCraft launch: - config: @@ -431459,15 +425401,15 @@ oslist: macos executable: PixNautiCraft.app type: none -'963210': - installDir: Another Sight - Hodge's Journey +"963210": + installDir: "Another Sight - Hodge's Journey" launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: Hodge's Journey.exe + executable: "Hodge's Journey.exe" type: default -'963220': +"963220": installDir: Les Tuniques Bleues Nord & Sud launch: - config: @@ -431476,18 +425418,18 @@ type: none - config: oslist: macos - executable: NorthSouth.app\\Contents\\MacOS\\N_S + executable: "NorthSouth.app\\\\Contents\\\\MacOS\\\\N_S" type: none nameLocalized: - french: 'Les Tuniques Bleues : Nord & Sud' -'963230': + french: "Les Tuniques Bleues : Nord & Sud" +"963230": installDir: Cute Puzzle MAX launch: - config: oslist: windows executable: WC_Puzzle.exe type: default -'963280': +"963280": installDir: Talk to Strangers launch: - config: @@ -431502,15 +425444,15 @@ oslist: linux executable: Talk to Strangers type: default -'963290': +"963290": installDir: Heroes of Fortunia launch: - config: oslist: windows executable: DungeonsAndHeroes.exe type: default -'963300': - installDir: 'Angel, Devil, Elf and Me!' +"963300": + installDir: "Angel, Devil, Elf and Me!" launch: - config: oslist: windows @@ -431522,44 +425464,44 @@ type: default - config: oslist: linux - executable: ./ADE&ME.sh + executable: "./ADE&ME.sh" type: default nameLocalized: - latam: '¡Ángel, Demonio, Elfa y Yo!' - spanish: '¡Ángel, Demonio, Elfa y Yo!' -'963320': {} -'963330': + latam: "¡Ángel, Demonio, Elfa y Yo!" + spanish: "¡Ángel, Demonio, Elfa y Yo!" +"963320": {} +"963330": installDir: NNNG launch: - executable: Nya Nya Nya Girls.exe type: none -'963360': {} -'963370': +"963360": {} +"963370": installDir: PRiCERPG launch: - config: oslist: windows executable: Game.exe type: default -'963400': +"963400": installDir: SCP Blackout launch: - - arguments: '-novr -vrdisable' + - arguments: "-novr -vrdisable" config: - osarch: '64' + osarch: "64" oslist: windows description: Play on desktop executable: SCP_Blackout.exe type: default - - arguments: '-govr -vr' + - arguments: "-govr -vr" config: - osarch: '64' + osarch: "64" oslist: windows description: Launch with SteamVR App executable: SCP_Blackout.exe type: vr -'963450': - installDir: 'The Eternal Castle [REMASTERED]' +"963450": + installDir: "The Eternal Castle [REMASTERED]" launch: - config: oslist: windows @@ -431567,80 +425509,80 @@ type: none - config: oslist: macos - executable: 'The Eternal Castle [REMASTERED].app' + executable: "The Eternal Castle [REMASTERED].app" type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: TheEternalCastle type: none -'963470': +"963470": installDir: A Sound Plan launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: Etc\\ZombieStealth_SteamRelease.exe + executable: "Etc\\\\ZombieStealth_SteamRelease.exe" type: default - workingdir: Etc\\ + workingdir: "Etc\\\\" - config: oslist: macos executable: A_Sound_Plan_OSX_Steam.app type: default - - arguments: 'LD_LIBRARY_PATH=.:$LD_LIBRARY_PATH' + - arguments: "LD_LIBRARY_PATH=.:$LD_LIBRARY_PATH" config: - osarch: '64' + osarch: "64" oslist: linux executable: Etc/ZombieStealth_SteamRelease type: default workingdir: Etc/ -'963490': +"963490": installDir: Abyss Manager launch: - executable: Abyss Manager.exe type: default -'963510': +"963510": installDir: Intersolar Overdrive launch: - config: oslist: windows executable: InterSolarOverdrive.exe type: none -'963560': {} -'963570': +"963560": {} +"963570": installDir: SMOKED launch: - config: oslist: windows executable: SMOKED.exe type: default -'963590': +"963590": installDir: Cubic Factory launch: - config: oslist: windows executable: Cubic Factory.exe type: none -'963660': +"963660": installDir: Write word launch: - config: oslist: windows executable: Write word.exe type: default -'963670': +"963670": installDir: Project Flesh launch: - executable: ProjectFlesh.exe type: none -'963680': +"963680": installDir: Clad in Iron Sakhalin 1904 launch: - config: oslist: windows executable: CladInIron_Sakhalin_1904.exe type: default -'963690': +"963690": installDir: HentaiGirlHime launch: - config: @@ -431651,68 +425593,56 @@ oslist: macos executable: HentaiGirlHime.app type: default -'963710': +"963710": installDir: Lost in Vivo launch: - config: oslist: windows executable: LIV.exe type: none -'963720': +"963720": installDir: BeastsShallRise launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Oculus Native Runtime - description_loc: - english: Oculus Native Runtime executable: BEASTS_SHALL_RISE.exe type: othervr - config: - osarch: '64' + osarch: "64" oslist: windows description: OpenXR - description_loc: - english: OpenXR executable: BEASTS_SHALL_RISE.exe type: openxr - config: - osarch: '64' + osarch: "64" oslist: windows description: SteamVR Native Runtime - description_loc: - english: SteamVR Native Runtime executable: BEASTS_SHALL_RISE.exe type: vr - - arguments: '-DX11' + - arguments: "-DX11" config: - osarch: '64' + osarch: "64" oslist: windows description: Force DX11 Oculus Native Runtime - description_loc: - english: Force DX11 Oculus Native Runtime executable: BEASTS_SHALL_RISE.exe type: othervr - - arguments: '-DX11' + - arguments: "-DX11" config: - osarch: '64' + osarch: "64" oslist: windows description: Force DX11 OpenXR - description_loc: - english: Force DX11 OpenXR executable: BEASTS_SHALL_RISE.exe type: openxr - - arguments: '-DX11' + - arguments: "-DX11" config: - osarch: '64' + osarch: "64" oslist: windows description: Force DX11 SteamVR Native Runtime - description_loc: - english: Force DX11 SteamVR Native Runtime executable: BEASTS_SHALL_RISE.exe type: vr -'963770': +"963770": installDir: WTC 1 launch: - config: @@ -431727,8 +425657,8 @@ oslist: macos executable: WelcomeToChichester1.app type: default -'963780': {} -'963830': +"963780": {} +"963830": installDir: A Flappy Bird in the Real Life launch: - config: @@ -431740,11 +425670,11 @@ executable: Flappy Mac.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: FlappyLinux.x86_64 type: default -'963860': +"963860": installDir: Invaders from Dimension X launch: - config: @@ -431759,56 +425689,56 @@ oslist: linux executable: Invaders type: default -'963870': +"963870": installDir: Valor and Victory launch: - config: oslist: windows executable: Launcher.exe type: default -'963900': +"963900": installDir: Chromatic Aberration launch: - config: oslist: windows executable: ChromaticAbberation.exe type: none -'963910': +"963910": installDir: They That Feast launch: - config: oslist: windows executable: They That Feast.exe type: default -'963930': +"963930": installDir: ContractorsVR launch: - - arguments: '-hmd=steamvr' + - arguments: "-hmd=steamvr" config: - osarch: '64' + osarch: "64" oslist: windows executable: Contractors.exe type: vr - config: - osarch: '64' + osarch: "64" oslist: windows executable: Contractors.exe type: othervr -'963940': +"963940": installDir: Edge launch: - - arguments: '-windowed' + - arguments: "-windowed" config: oslist: windows description: Launch executable: Edge.exe type: default -'963960': +"963960": installDir: NEONARCADE adventure puzzle muse launch: - executable: NAapm.exe type: none -'963980': +"963980": installDir: STARBOY launch: - config: @@ -431816,22 +425746,22 @@ executable: STARBOY.exe type: default workingdir: STARBOY -'96400': +"96400": installDir: Shoot Many Robots launch: - - executable: ShootManyRobots\\Binaries\\ShootManyRobots.exe -'964020': + - executable: "ShootManyRobots\\\\Binaries\\\\ShootManyRobots.exe" +"964020": installDir: Make Your Kingdom launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Make your Kingdom.exe type: none nameLocalized: schinese: 建立自己的王国 -'964030': {} -'964040': +"964030": {} +"964040": installDir: Snood launch: - config: @@ -431844,26 +425774,26 @@ description: Play Snood executable: Snood.exe type: default -'964050': +"964050": installDir: TTMP launch: - executable: TTMP.exe type: default -'964060': +"964060": installDir: Brainmelter Deluxe launch: - executable: Brainmelter Deluxe.exe type: none nameLocalized: schinese: 熔脑 (Brainmelter Deluxe) -'964070': +"964070": installDir: Aim Theory - Trainer launch: - config: oslist: windows executable: Trainer.exe type: default -'964100': +"964100": installDir: AmeadowPiece launch: - config: @@ -431874,24 +425804,24 @@ oslist: macos executable: ameadowpiece.app type: default -'964110': +"964110": installDir: MonGirlTile launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: MonGirlPC.exe type: default -'964130': +"964130": installDir: My Colony launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: My Colony.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: My Colony.exe type: default @@ -431900,63 +425830,63 @@ executable: My Colony.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: My Colony type: default -'964150': {} -'964170': +"964150": {} +"964170": installDir: PomboTroll launch: - config: oslist: windows executable: PomboTroll.exe type: default -'964180': - installDir: Late'O'Clock +"964180": + installDir: "Late'O'Clock" launch: - config: oslist: windows - executable: NailGun Studios - Late'O'Clock.exe + executable: "NailGun Studios - Late'O'Clock.exe" type: none -'964190': +"964190": installDir: ANSIBLE launch: - config: oslist: windows executable: ANSIBLE.exe type: default -'964210': +"964210": installDir: Mr Husky launch: - executable: Mr Husky.exe type: none -'964220': +"964220": installDir: vbs-x launch: - config: oslist: windows executable: vbsx2.exe type: default -'964230': +"964230": installDir: FutureGpxCyberFormulaSinVier launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: CfSinVier.exe type: default -'964240': +"964240": installDir: NightHoming launch: - config: oslist: windows executable: game.exe type: none -'964260': {} -'964300': {} -'964320': {} -'964340': +"964260": {} +"964300": {} +"964320": {} +"964340": installDir: Fant Kids Matching Game launch: - config: @@ -431967,7 +425897,7 @@ oslist: macos executable: FantKidsMatchingGame.app type: none -'964350': +"964350": installDir: At Home Alone launch: - description: At Home Alone @@ -431979,25 +425909,25 @@ - description: Official website-访问官网 executable: 0cube.url type: option3 -'964390': +"964390": installDir: Australian Road Trains launch: - config: oslist: windows executable: road_trains.exe type: none -'964420': +"964420": installDir: Heavyweight Transport Simulator 3 launch: - config: oslist: windows executable: heavy_weight_3_win_multi.exe type: none -'964440': +"964440": installDir: Hell is Others launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: HellIsOthers_launcher.exe type: default @@ -432007,46 +425937,40 @@ executable: HellIsOthers.app - config: betakey: development2019 - osarch: '64' + osarch: "64" oslist: windows description: Legacy - description_loc: - english: Legacy executable: Hell_is_others.exe type: option1 - config: betakey: development2019 oslist: macos description: Legacy - description_loc: - english: Legacy executable: Hell_is_others.app type: option1 - config: - betakey: 'development,development-two,external-nightly,recording' - osarch: '64' + betakey: "development,development-two,external-nightly,recording" + osarch: "64" oslist: windows description: Hell is Others WITHOUT EAC - description_loc: - english: Hell is Others WITHOUT EAC executable: HellIsOthers.exe type: option1 -'964450': +"964450": installDir: Control Freak launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: MapBuildingTest.exe type: none -'964460': +"964460": installDir: VR Rome launch: - config: oslist: windows executable: VRRome.exe type: vr -'964470': +"964470": installDir: Shakes and Fidget Remastered launch: - config: @@ -432055,48 +425979,46 @@ type: none - config: oslist: macos - executable: shakesandfidget.app\\Contents\\MacOS\\shakesandfidget + executable: "shakesandfidget.app\\\\Contents\\\\MacOS\\\\shakesandfidget" type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: shakesandfidget.x86_64 type: none -'964570': +"964570": installDir: DCL - The Game launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: DCGame.exe type: default - config: oslist: macos description: Launches the latest stable release of DCL - The Game - description_loc: - english: Launches the latest stable release of DCL - The Game executable: DCGame.app type: default -'964600': {} -'964620': +"964600": {} +"964620": installDir: Shakes on a Plane launch: - config: oslist: windows executable: shakesdemo.exe type: default -'964650': +"964650": installDir: InvasionMachine launch: - config: oslist: windows executable: Invasion Machine.exe type: default -'964700': +"964700": installDir: Dear Apothecary launch: - config: - osarch: '32' + osarch: "32" oslist: windows description: Dear Apothecary - 32bit executable: DearApothecary.exe @@ -432106,13 +426028,13 @@ executable: DearApothecary.sh type: default - config: - osarch: '64' + osarch: "64" oslist: windows description: Dear Apothecary - 64bit executable: DearApothecary.exe type: default -'964720': {} -'964750': +"964720": {} +"964750": installDir: Nelson and the Magic Cauldron launch: - config: @@ -432127,12 +426049,12 @@ oslist: linux executable: start type: default -'964760': {} -'964770': +"964760": {} +"964770": installDir: Deathdays End launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Game.exe type: default @@ -432140,69 +426062,63 @@ oslist: macos executable: Game.app type: default -'964800': +"964800": installDir: Prodeus launch: - - arguments: '-steamEnabled' + - arguments: "-steamEnabled" config: oslist: windows executable: Prodeus.exe type: default - - arguments: '-steamEnabled' + - arguments: "-steamEnabled" config: oslist: macos - executable: Prodeus.app\\Contents\\MacOS\\Prodeus + executable: "Prodeus.app\\\\Contents\\\\MacOS\\\\Prodeus" type: default - - arguments: '-steamEnabled' + - arguments: "-steamEnabled" config: oslist: linux executable: Prodeus.x86_64 type: default - - arguments: '-steamEnabled -screen-fullscreen 0 -window-mode borderless -screen-height 720 -screen-width 1280 -offline' + - arguments: "-steamEnabled -screen-fullscreen 0 -window-mode borderless -screen-height 720 -screen-width 1280 -offline" config: oslist: windows description: Compatibility Mode - description_loc: - english: Compatibility Mode executable: Prodeus.exe type: option1 - - arguments: '-steamEnabled -offline' + - arguments: "-steamEnabled -offline" config: oslist: windows description: Offline Mode - description_loc: - english: Offline Mode executable: Prodeus.exe type: option2 - - arguments: '-steamEnabled -screen-fullscreen 0 -window-mode borderless -screen-height 720 -screen-width 1280 -offline' + - arguments: "-steamEnabled -screen-fullscreen 0 -window-mode borderless -screen-height 720 -screen-width 1280 -offline" config: oslist: macos description: Compatibility Mode - description_loc: - english: Compatibility Mode - executable: Prodeus.app\\Contents\\MacOS\\Prodeus + executable: "Prodeus.app\\\\Contents\\\\MacOS\\\\Prodeus" type: none -'964810': +"964810": installDir: SHELL launch: - config: oslist: windows executable: SHELL.exe type: none -'964910': +"964910": installDir: Sunshine & Overcast launch: - config: oslist: windows executable: SandO.exe type: default -'964960': +"964960": installDir: Plunder launch: - executable: Plunder.exe type: default -'964970': {} -'964990': +"964970": {} +"964990": installDir: Storm Boy launch: - config: @@ -432215,31 +426131,31 @@ description: Launch executable: StormBoy.app type: default -'965000': +"965000": installDir: DriftKing2D launch: - - arguments: '-Windowed' + - arguments: "-Windowed" config: oslist: windows executable: DK2D.exe type: default -'965010': +"965010": installDir: Trinoline launch: - config: oslist: windows executable: trinoline_en_AA.exe type: default -'965030': +"965030": installDir: Run Naked Woman Run launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: RunPutinRun.exe type: default -'965050': {} -'965060': +"965050": {} +"965060": installDir: Keyhole Spy Frozen Hotties launch: - config: @@ -432250,51 +426166,51 @@ oslist: macos executable: Keyhole Spy Frozen Hotties.app/Contents/MacOS/Keyhole Spy Frozen Hotties type: default -'965080': +"965080": installDir: Ganghood Survival launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: 江湖求生.exe type: default -'965110': +"965110": installDir: Space Gladiator launch: - config: oslist: windows executable: space_gladiator.exe type: default -'965120': +"965120": installDir: Energy Shock launch: - config: oslist: windows executable: EnergyShock.exe type: none -'965140': +"965140": installDir: VR Smash Park launch: - config: oslist: windows executable: vrsmashpark.exe type: vr -'965160': {} -'965180': +"965160": {} +"965180": installDir: HeroWars launch: - config: oslist: windows executable: KingWar.exe type: default -'965200': +"965200": installDir: The Walking Zombie 2 launch: - config: oslist: windows executable: The Walking Zombie 2.exe type: none -'965210': +"965210": installDir: CafeInternational launch: - config: @@ -432305,63 +426221,63 @@ oslist: macos executable: CafeInternational.app type: default - - arguments: '-screen-fullscreen 0' + - arguments: "-screen-fullscreen 0" config: - osarch: '64' + osarch: "64" oslist: linux executable: CafeInternational.x86_64 type: default -'965230': +"965230": installDir: DORAEMON STORY OF SEASONS launch: - executable: DORaEMON STORY OF SEASONS.exe type: default -'965240': +"965240": installDir: Akabeth Tactics launch: - executable: Akabeth.exe type: default -'965250': +"965250": installDir: SubmarineCraft launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SubmarineCraft.exe type: default -'965300': +"965300": installDir: The Settlers - Heritage of Kings - History Edition launch: - - arguments: '-uplay_steam_mode' + - arguments: "-uplay_steam_mode" config: oslist: windows - executable: bin\\SettlersHoK.exe + executable: "bin\\\\SettlersHoK.exe" type: default - - arguments: '-extra1 -uplay_steam_mode' + - arguments: "-extra1 -uplay_steam_mode" config: oslist: windows description: Expansion Disc - executable: bin\\SettlersHoK.exe + executable: "bin\\\\SettlersHoK.exe" type: option1 - - arguments: '-extra2 -uplay_steam_mode' + - arguments: "-extra2 -uplay_steam_mode" config: oslist: windows description: Legends Expansion - executable: bin\\SettlersHoK.exe + executable: "bin\\\\SettlersHoK.exe" type: option2 - config: oslist: windows executable: bin/SHoKMapEditor.exe type: editor -'965310': +"965310": installDir: The Settlers - Rise of an Empire - History Edition launch: - - arguments: '-uplay_steam_mode' + - arguments: "-uplay_steam_mode" config: oslist: windows executable: Data/base/bin/Settlers6R.exe type: default - - arguments: '-extra1 -uplay_steam_mode' + - arguments: "-extra1 -uplay_steam_mode" config: oslist: windows description: The Eastern Realm @@ -432371,32 +426287,32 @@ oslist: windows executable: Data/base/bin/S6MapEditorR.exe type: editor -'965320': +"965320": installDir: The Settlers 7 - History Edition launch: - - arguments: '-uplay_steam_mode' + - arguments: "-uplay_steam_mode" config: oslist: windows executable: Data/Base/Bin/Settlers7R.exe type: default -'965340': +"965340": installDir: Human Rocket Person launch: - config: oslist: windows executable: HRP.exe type: default -'965360': {} -'965410': +"965360": {} +"965410": installDir: Desolate City The Bloody Dawn Enhanced Edition launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: game.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: game.x64 type: default @@ -432405,23 +426321,23 @@ oslist: macos executable: game.app/Contents/MacOS/parent type: default -'965450': {} -'965460': +"965450": {} +"965460": installDir: Jungle Guardians launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Jungle Guardians.exe type: default -'965470': +"965470": installDir: ROGO launch: - config: oslist: windows executable: ROGO.exe type: default -'965490': +"965490": installDir: Propaganda Llama launch: - config: @@ -432432,13 +426348,13 @@ oslist: macos executable: propaganda_llama.app type: default -'965510': +"965510": installDir: Neon Junctions launch: - executable: NeonJunctions.exe type: none -'965540': {} -'965600': +"965540": {} +"965600": installDir: Raiders of the North Sea launch: - config: @@ -432449,7 +426365,7 @@ oslist: macos executable: Raiders.app type: default -'965610': +"965610": installDir: Yellow & Yangtze launch: - config: @@ -432460,16 +426376,16 @@ oslist: macos executable: YellowYangtze.app type: default -'965640': +"965640": installDir: Horror Legends launch: - config: oslist: windows executable: Horror Legends.exe type: default -'965650': {} -'965670': - installDir: Niplheim's Hunter - Branded Azel +"965650": {} +"965670": + installDir: "Niplheim's Hunter - Branded Azel" launch: - config: oslist: windows @@ -432479,13 +426395,13 @@ - config: oslist: windows description: Branded Azel - Bonus - executable: \\Bonus\\Game.exe + executable: "\\\\Bonus\\\\Game.exe" type: option1 nameLocalized: japanese: ニプルヘイムの狩人 -Branded Azel- schinese: 尼夫海姆的猎人:阿瑟尔的烙印 tchinese: 尼夫海姆的獵人:阿瑟爾的烙印 -'965680': +"965680": installDir: Boomerang Fu launch: - config: @@ -432494,61 +426410,61 @@ type: default nameLocalized: japanese: ブーメランヒュー -'965710': +"965710": installDir: Survive Zombies launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SURVIVE ZOMBIES.exe type: vr -'965730': +"965730": installDir: Evoke launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Evoke.exe type: vr -'965760': +"965760": installDir: Super Dart VR launch: - config: oslist: windows executable: Super Darts VR.exe type: vr -'965810': +"965810": installDir: Kara no Shojo launch: - executable: karanoshojo.exe type: default -'965820': +"965820": installDir: 沉睡的法则 launch: - executable: Game.exe type: none -'965830': +"965830": installDir: Deported Drain the Swamp launch: - config: oslist: windows executable: Game.exe type: default -'965840': +"965840": installDir: Club Lighting launch: - config: oslist: windows executable: Club Lighting.exe type: none -'965860': +"965860": installDir: SnowNight launch: - config: oslist: windows executable: SnowNight.exe type: none -'965880': +"965880": installDir: Whimsical Quest launch: - config: @@ -432556,23 +426472,23 @@ description: Launch executable: WhimsicalQuest.exe type: none -'965890': +"965890": installDir: dishonest launch: - config: oslist: windows executable: dishonest.exe type: default -'965900': +"965900": installDir: Animal Force launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: game.exe type: vr -'965910': {} -'965920': +"965910": {} +"965920": installDir: RocketGO launch: - config: @@ -432583,7 +426499,7 @@ oslist: macos executable: RocketGo_os.app type: default -'965940': +"965940": installDir: Qutros launch: - config: @@ -432591,38 +426507,38 @@ executable: Qutros.exe type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: Qutros.x86_64 type: default -'965960': +"965960": installDir: VRetired launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: VRetiredLauncher.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: VRetiredLauncher.exe type: vr -'965970': +"965970": installDir: My Exotic Farm launch: - config: oslist: windows executable: MyExoticFarm.exe type: default -'965990': - installDir: Destiny's Sword +"965990": + installDir: "Destiny's Sword" launch: - config: oslist: windows executable: Destinys-Sword-Client-PC.exe type: default -'966000': +"966000": installDir: Detective Sherlock Pug launch: - config: @@ -432633,28 +426549,28 @@ oslist: macos executable: Detective Sherlock Pug.app type: none -'966010': +"966010": installDir: Anstorm launch: - config: oslist: windows executable: nw.exe type: default -'966020': +"966020": installDir: Trivia Clash Adult Film Star Edition launch: - config: oslist: windows executable: Trivia Clash.exe type: none -'966050': +"966050": installDir: Atom-X launch: - config: oslist: windows executable: AtomX.exe type: none -'966070': +"966070": installDir: Relow launch: - config: @@ -432663,40 +426579,40 @@ type: default - config: oslist: macos - executable: relow.app\\Contents\\MacOS\\RELOW + executable: "relow.app\\\\Contents\\\\MacOS\\\\RELOW" type: default - config: oslist: linux executable: relow.x86_64 type: default -'966090': +"966090": installDir: Canasta 3D Premium launch: - config: oslist: windows executable: Canasta3D.exe type: default - - arguments: '-safe' + - arguments: "-safe" config: oslist: windows description: Safe mode (windowed) executable: Canasta3D.exe type: option2 - - arguments: '-autoconfig' + - arguments: "-autoconfig" config: oslist: windows description: Autoconfig mode (fullscreen) executable: Canasta3D.exe type: option3 -'966100': {} -'966140': +"966100": {} +"966140": installDir: MagicJam launch: - config: oslist: windows executable: nw.exe type: none -'966160': +"966160": installDir: Seek Love launch: - config: @@ -432707,11 +426623,11 @@ oslist: macos executable: Seek Love.app type: default -'966180': +"966180": installDir: Slime Research launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SlimeResearch.exe type: default @@ -432720,37 +426636,37 @@ executable: SlimeResearch.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: SlimeResearch.x86_64 type: default -'966210': +"966210": installDir: Tippy Tree launch: - executable: Tippy Tree.exe type: vr - - arguments: '-arcade' + - arguments: "-arcade" config: betakey: arcade description: Arcade Version executable: Tippy Tree.exe type: vr -'966230': {} -'966240': - installDir: Ocean's Treasures +"966230": {} +"966240": + installDir: "Ocean's Treasures" launch: - config: oslist: windows - executable: Ocean's Treasures.exe + executable: "Ocean's Treasures.exe" type: vr -'966250': +"966250": installDir: Homestead launch: - config: oslist: windows executable: Homestead.exe type: default -'966320': +"966320": installDir: LaterAlligator launch: - config: @@ -432759,35 +426675,35 @@ type: default - config: oslist: macos - executable: LaterAlligator.app\\Contents\\MacOS\\LaterAlligator + executable: "LaterAlligator.app\\\\Contents\\\\MacOS\\\\LaterAlligator" type: default - config: oslist: linux executable: LaterAlligator.x86_64 type: default -'966330': +"966330": installDir: Flower launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Flower.exe type: default -'966370': +"966370": installDir: Bravado launch: - config: oslist: windows executable: Bravado.exe type: default -'966400': +"966400": installDir: Speaking Simulator launch: - config: oslist: windows executable: SpeakingSimulator.exe type: none -'966430': +"966430": installDir: Neverinth launch: - config: @@ -432796,60 +426712,60 @@ type: none nameLocalized: schinese: 永劫回廊 -'966450': - installDir: I'm the Koala +"966450": + installDir: "I'm the Koala" launch: - config: oslist: windows - executable: I'm the Koala.exe + executable: "I'm the Koala.exe" type: default -'966460': +"966460": installDir: Undress Tournament launch: - config: oslist: windows executable: Undress Tournament.exe type: default -'966530': +"966530": installDir: DrunkFriend launch: - config: oslist: windows executable: DrunkFriend.exe type: default -'966540': +"966540": installDir: Bedtime Blues launch: - config: oslist: windows executable: Bedtime Blues.exe type: default -'966560': +"966560": installDir: ROGAN launch: - config: oslist: windows - executable: Rogan\\Binaries\\Win64\\Rogan.exe + executable: "Rogan\\\\Binaries\\\\Win64\\\\Rogan.exe" type: vr - config: oslist: windows - executable: Rogan\\Binaries\\Win64\\Rogan.exe + executable: "Rogan\\\\Binaries\\\\Win64\\\\Rogan.exe" type: othervr -'966580': +"966580": installDir: Zquirrels Jump launch: - config: oslist: windows executable: Zquirrels Jump.exe type: default -'966590': +"966590": installDir: Beat Blocks VR launch: - config: oslist: windows executable: BeatBlocksVR.exe type: vr -'966600': +"966600": installDir: Erotic Winter Sports launch: - config: @@ -432860,13 +426776,13 @@ oslist: macos executable: Erotic Winter Sports.app/Contents/MacOS/Erotic Winter Sports type: default -'966630': +"966630": installDir: qop 4 launch: - executable: qop 4.exe type: default -'966650': {} -'966660': +"966650": {} +"966660": installDir: Invisible Fist launch: - config: @@ -432875,10 +426791,10 @@ type: default - config: oslist: macos - executable: InvisibleFist.app\\Contents\\MacOS\\mac + executable: "InvisibleFist.app\\\\Contents\\\\MacOS\\\\mac" type: default -'966670': - installDir: 'Frankenstein, Naissance d''un mythe' +"966670": + installDir: "Frankenstein, Naissance d'un mythe" launch: - config: oslist: windows @@ -432888,48 +426804,48 @@ oslist: macos executable: The Wanderer.app type: default -'966680': +"966680": installDir: Red Matter launch: - config: oslist: windows - executable: hypnos\\Binaries\\Win64\\RedMatter.exe + executable: "hypnos\\\\Binaries\\\\Win64\\\\RedMatter.exe" type: vr -'966720': +"966720": installDir: Pumped BMX Pro launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: PumpedBMXPro.exe type: default -'966730': +"966730": installDir: Leprechaun Shadow launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: LeprechaunShadow.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: LeprechaunShadow.x86_64 type: default -'966760': +"966760": installDir: The Yellow Quiz launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: The Yellow Quiz.exe type: default - config: oslist: macos - executable: Contents\\MacOS\\The Yellow Quiz + executable: "Contents\\\\MacOS\\\\The Yellow Quiz" type: default -'966770': {} -'966870': +"966770": {} +"966870": installDir: SinVR launch: - config: @@ -432940,11 +426856,11 @@ oslist: windows executable: SinNoVR.exe type: default -'967050': +"967050": installDir: Pacify launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Pacify.exe type: default @@ -432952,65 +426868,65 @@ oslist: macos executable: Pacify.app type: default -'967070': {} -'967100': +"967070": {} +"967100": installDir: Curfew launch: - config: oslist: windows executable: CURFEW.exe type: default -'967120': +"967120": installDir: Cursed Mansion launch: - config: oslist: windows executable: Game.exe type: none -'967160': {} -'967210': +"967160": {} +"967210": installDir: Spark Five launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Spark Five.exe type: default - config: oslist: macos - executable: SparkFive.app\\Contents\\MacOS\\Spark Five + executable: "SparkFive.app\\\\Contents\\\\MacOS\\\\Spark Five" type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: SparkFive.x86_64 type: default -'967240': +"967240": installDir: MonkeyKing launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Nirvana.exe type: default nameLocalized: schinese: 西游记之大圣归来 -'967250': +"967250": installDir: DOKA 2 launch: - config: oslist: windows executable: DOKA2.exe type: default -'967290': +"967290": installDir: Mo The Frog launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: MòTheFrog.exe type: default -'967330': +"967330": installDir: Starfighter Infinity launch: - config: @@ -433019,72 +426935,72 @@ type: default - config: oslist: macos - executable: StarfighterInfinity.app\\Contents\\MacOS\\Starfighter Infinity + executable: "StarfighterInfinity.app\\\\Contents\\\\MacOS\\\\Starfighter Infinity" type: default - - arguments: '-vrmode openvr' + - arguments: "-vrmode openvr" config: oslist: windows executable: Starfighter Infinity.exe type: vr - config: - osarch: '64' + osarch: "64" oslist: linux executable: StarfighterInfinity.x86_64 type: default -'967370': +"967370": installDir: Dungeons of Necromancers launch: - config: oslist: windows executable: Dungeons of Necromancers.exe type: none -'967390': +"967390": installDir: Chronos launch: - config: oslist: windows executable: Chronos.exe type: default -'967410': +"967410": installDir: Creatures Inc launch: - config: oslist: windows executable: CreaturesInc.exe type: default -'967430': +"967430": installDir: Nights at the Clown Maze launch: - config: oslist: windows executable: Nights_at_the_Clown_Maze.exe type: default -'967440': +"967440": installDir: Kick The Anime Simulator launch: - executable: Kick The Anime Simulator.exe type: none -'967450': +"967450": installDir: Special Counter Force Attack launch: - config: oslist: windows executable: Special Counter Force Attack.exe type: default -'967460': +"967460": installDir: Red Eclipse 2 launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Play Red Eclipse - executable: bin\\amd64\\redeclipse.exe + executable: "bin\\\\amd64\\\\redeclipse.exe" type: default - config: - osarch: '32' + osarch: "32" oslist: windows description: Play Red Eclipse - executable: bin\\x86\\redeclipse.exe + executable: "bin\\\\x86\\\\redeclipse.exe" type: default - config: oslist: linux @@ -433096,55 +427012,55 @@ description: Play Red Eclipse executable: bin/redeclipse.app/Contents/MacOS/redeclipse type: default -'967470': {} -'967490': +"967470": {} +"967490": installDir: Microsoft Maquette launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch Maquette executable: Maquette.exe type: vr -'967750': {} -'967910': +"967750": {} +"967910": installDir: Galactic Incoming launch: - config: oslist: windows executable: Galactic_Incoming.exe type: default -'967920': {} -'967940': +"967920": {} +"967940": installDir: AssaultOnMetaltron launch: - executable: Aom.exe type: default -'967950': {} -'967960': +"967950": {} +"967960": installDir: Spray Dynamite X Radioactive Insects launch: - config: oslist: windows - executable: \\ContentBuilder\\content\\windows_content\\Spray Dinamite X Insetos Radioativos.exe + executable: "\\\\ContentBuilder\\\\content\\\\windows_content\\\\Spray Dinamite X Insetos Radioativos.exe" type: default -'96800': +"96800": installDir: Nexuiz launch: - - executable: Bin32\\Nexuiz.exe - workingdir: Bin32\\ + - executable: "Bin32\\\\Nexuiz.exe" + workingdir: "Bin32\\\\" - description: Launch Editor - executable: Bin32\\Editor.exe - workingdir: Bin32\\ -'968170': - installDir: '[it''s possible] Classic' + executable: "Bin32\\\\Editor.exe" + workingdir: "Bin32\\\\" +"968170": + installDir: "[it's possible] Classic" launch: - config: oslist: windows - executable: '[it''s possible] Classic.exe' + executable: "[it's possible] Classic.exe" type: default -'968190': {} -'968200': +"968190": {} +"968200": installDir: JumpJumpz launch: - config: @@ -433155,14 +427071,14 @@ oslist: macos executable: JumpJumpz.app type: default -'968210': +"968210": installDir: Predicate launch: - config: oslist: windows executable: Predicate.exe type: none -'968250': +"968250": installDir: King of Retail launch: - config: @@ -433173,14 +427089,14 @@ oslist: macos executable: KingOfRetail.app type: default -'968290': +"968290": installDir: Deported 2 Build That Wall launch: - config: oslist: windows executable: Game.exe type: default -'968300': +"968300": installDir: superchains launch: - arguments: chains.love --fused @@ -433195,26 +427111,26 @@ type: default - arguments: chains.love --fused config: - osarch: '64' + osarch: "64" oslist: linux executable: love type: default -'968310': +"968310": installDir: BreathePeace.World launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: BreathePeace.exe type: vr -'968320': +"968320": installDir: Alpha & Beta launch: - config: oslist: windows executable: Alpha & Beta.exe type: default -'968350': +"968350": installDir: Hotel Sowls launch: - config: @@ -433225,35 +427141,35 @@ oslist: macos executable: HotelSowls.app type: none -'968360': +"968360": installDir: Recursive Pain launch: - config: oslist: windows executable: RecursivePain.exe type: none -'968370': +"968370": installDir: The Blind Prophet launch: - config: oslist: windows executable: The Blind Prophet.exe type: default -'968380': +"968380": installDir: Perfect Life VR launch: - config: oslist: windows executable: Perfect Life VR.exe type: vr -'968410': +"968410": installDir: AstroGenesis launch: - config: oslist: windows executable: Astrogenesis.exe type: default -'968420': +"968420": installDir: Fururu Project Ruby launch: - config: @@ -433265,46 +427181,46 @@ executable: Fururu_2018.2_mac.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: fururu.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: fururu.x86_64 type: default -'968430': +"968430": installDir: Colonization of the Moon 1.01 launch: - config: oslist: windows executable: Cos.exe type: default -'968440': +"968440": installDir: Artist Idle launch: - executable: game.exe type: none -'968450': +"968450": installDir: Hentai Puzzle Classic launch: - config: oslist: windows executable: Hentai Puzzle Classic.exe type: none -'968460': +"968460": installDir: Mine Royale launch: - config: oslist: windows executable: Mine Royale.exe type: default -'968470': +"968470": installDir: Bunny Mahjo launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: WindowsNoEditor/BunnyMahjong.exe type: default @@ -433312,14 +427228,14 @@ oslist: linux executable: LinuxNoEditor/BunnyMahjong.sh type: default -'968480': +"968480": installDir: The Portal Dimension launch: - config: oslist: windows executable: The Portal Dimension.exe type: default -'968500': +"968500": installDir: A Bewitching Revolution launch: - config: @@ -433330,14 +427246,14 @@ oslist: macos executable: BewitchingRevolutionMac.app type: default -'968540': +"968540": installDir: TooHot! launch: - config: oslist: windows executable: TooHot.exe type: default -'968550': +"968550": installDir: Tinytopia launch: - config: @@ -433346,10 +427262,10 @@ type: default - config: oslist: macos - executable: Tinytopia.app\\Contents\\MacOS\\Tinytopia + executable: "Tinytopia.app\\\\Contents\\\\MacOS\\\\Tinytopia" type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: Tinytopia.x86_64 type: none @@ -433357,8 +427273,8 @@ japanese: タイニートピア Tinytopia schinese: 小小乌托邦 Tinytopia tchinese: 小小烏托邦 Tinytopia -'968560': {} -'968570': +"968560": {} +"968570": installDir: Chaordic launch: - config: @@ -433367,20 +427283,20 @@ executable: nw.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows - ownsdlc: '1178800' - executable: '' + ownsdlc: "1178800" + executable: "" type: config - workingdir: \\Wallpaper pack + workingdir: "\\\\Wallpaper pack" - config: - osarch: '64' + osarch: "64" oslist: windows - ownsdlc: '1178800' - executable: '' + ownsdlc: "1178800" + executable: "" type: config - workingdir: \\Wallpaper pack -'968580': + workingdir: "\\\\Wallpaper pack" +"968580": installDir: Halloween Puzzles launch: - config: @@ -433388,7 +427304,7 @@ description: Halloween Puzzles executable: Halloween Puzzles.exe type: default -'968590': +"968590": installDir: SuperUrbanWizard launch: - config: @@ -433398,7 +427314,7 @@ - description: Play on Older Windows computers executable: game.exe type: option2 -'968600': +"968600": installDir: Angry Punisher launch: - config: @@ -433411,43 +427327,43 @@ type: default - config: oslist: macos - executable: AngryPunisher.app\\Contents\\MacOS\\AngryPunisher + executable: "AngryPunisher.app\\\\Contents\\\\MacOS\\\\AngryPunisher" type: default -'968620': +"968620": installDir: Bomb N Bats launch: - config: oslist: windows executable: Bomb n Bats.exe type: none -'968640': {} -'968700': +"968640": {} +"968700": installDir: The Kite launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: The Kite.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: The Kite.exe type: default - config: oslist: macos - executable: The_Kite.app\\Contents\\MacOS\\The_Kite + executable: "The_Kite.app\\\\Contents\\\\MacOS\\\\The_Kite" type: default -'968710': {} -'968730': +"968710": {} +"968730": installDir: Worlds Collide launch: - config: oslist: windows executable: Worlds Collide.exe type: default -'968780': {} -'968790': +"968780": {} +"968790": installDir: Dynasty Warriors 7 DX launch: - config: @@ -433462,8 +427378,8 @@ nameLocalized: japanese: 真・三國無双6 with 猛将伝 DX tchinese: 真‧三國無雙6 with 猛將傳 DX -'968800': {} -'968820': +"968800": {} +"968820": installDir: Stormhill Mystery launch: - config: @@ -433474,29 +427390,29 @@ oslist: macos executable: Stormhill Mystery Steam.app type: default -'968870': +"968870": installDir: Close to the Sun launch: - config: oslist: windows executable: ctts.exe type: default -'968920': - installDir: It's Not A Moon +"968920": + installDir: "It's Not A Moon" launch: - config: oslist: windows executable: NotAMoon.exe type: default -'968930': {} -'968940': +"968930": {} +"968940": installDir: A night with Natalie VR launch: - config: oslist: windows executable: Night with Natalie.exe type: vr -'968950': +"968950": installDir: Sakura MMO 2 launch: - config: @@ -433511,17 +427427,17 @@ oslist: linux executable: Sakura_MMO_2.sh type: default -'968970': +"968970": installDir: Lumberjacks Dynasty launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: LumberjacksDynasty.exe type: default nameLocalized: schinese: 伐木工王朝 -'968980': +"968980": installDir: Winter Windows launch: - config: @@ -433532,7 +427448,7 @@ oslist: macos executable: Glass Painting - Winter Art.app/Contents/MacOS/Glass Painting - Winter Art type: none -'968990': +"968990": installDir: Mean Routine launch: - config: @@ -433543,96 +427459,96 @@ oslist: macos executable: Mean Routine.app/Contents/MacOS/Mean Routine type: default -'96900': +"96900": installDir: Slam Bolt Scrappers launch: - description: Play executable: SBS.exe -'969060': +"969060": installDir: mikapyon launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: mikapyon.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: mikapyon.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: mikapyon.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: mikapyon.exe type: default -'969130': +"969130": installDir: The Lost Soul launch: - config: oslist: windows executable: The Lost Soul.exe type: default -'969180': {} -'969190': +"969180": {} +"969190": installDir: Cult of the Glitch King launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: - betakey: '3402077' - executable: Cult of the Glitch King Content\\Game.exe + betakey: "3402077" + executable: "Cult of the Glitch King Content\\\\Game.exe" type: default -'969230': +"969230": installDir: Death Space launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: DIS.exe type: default -'969240': +"969240": installDir: Siam Twinstick launch: - config: oslist: windows executable: SiamTwinstick.exe type: default -'969250': +"969250": installDir: Flynguin Station launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: FlynguinStation.exe type: default -'969330': +"969330": nameLocalized: schinese: 狂怒之道 The Way of Wrath tchinese: 狂怒之道 The Way of Wrath -'969340': +"969340": installDir: The Dungeon Paradox launch: - executable: The Dungeon Paradox.exe type: default - - arguments: '-force-vulkan' + - arguments: "-force-vulkan" config: oslist: windows description: The Dungeon Paradox - Using Vulkan executable: The Dungeon Paradox.exe type: option1 -'969350': +"969350": installDir: Hentai Memorama launch: - config: oslist: windows executable: Hentai Memorama.exe type: none -'969420': +"969420": installDir: Dereliction launch: - config: @@ -433641,9 +427557,9 @@ type: default - config: oslist: macos - executable: Dereliction.app\\Contents\\MacOS\\Dereliction15 + executable: "Dereliction.app\\\\Contents\\\\MacOS\\\\Dereliction15" type: default -'969480': +"969480": installDir: Warp Glider launch: - config: @@ -433658,14 +427574,14 @@ oslist: linux executable: Warp Glider.x86_64 type: none -'969530': +"969530": installDir: Cope Island Adrift launch: - config: oslist: windows executable: Game.exe type: default -'969540': +"969540": installDir: Pattern launch: - config: @@ -433676,112 +427592,112 @@ oslist: macos executable: Pattern.app type: default -'969680': +"969680": installDir: Steel_Circus launch: - config: oslist: windows executable: sc.exe type: default -'969690': +"969690": installDir: Brave Hero Yuusha EX launch: - config: oslist: windows executable: Game.exe type: none -'969700': +"969700": installDir: NekoMiko launch: - config: oslist: windows executable: NekoMiko.exe type: default -'969740': +"969740": installDir: Yearning launch: - config: oslist: windows executable: Yearning.exe type: none -'969760': +"969760": installDir: Omno launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Omno.exe type: default -'969840': {} -'969860': +"969840": {} +"969860": installDir: Corrupt The Priest launch: - config: oslist: macos - executable: Corrupt the Priest.app\\Contents\\MacOS\\Corrupt the Priest + executable: "Corrupt the Priest.app\\\\Contents\\\\MacOS\\\\Corrupt the Priest" type: none - config: oslist: windows executable: Corrupt the Priest.exe type: none -'969870': +"969870": installDir: Klondike & Girls launch: - config: oslist: windows executable: Klondike & Girls.exe type: default -'969880': +"969880": installDir: Terrible Beast from the East launch: - executable: The Terrible Beast from the East.exe type: none -'969940': +"969940": installDir: Car Transport Simulator launch: - config: oslist: windows executable: cartrans_win_multi.exe type: none -'969950': +"969950": installDir: Woodcutter Simulator 2011 launch: - config: oslist: windows executable: woodcutter2011.exe type: none -'969970': +"969970": installDir: BattleRush Ardennes Assault launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Cv2_Base/Binaries/Win64/Cv2_BaseClient_Shipping.exe type: none - config: - osarch: '32' + osarch: "32" oslist: windows executable: Cv2_Base/Binaries/Win32/Cv2_BaseClient_Shipping.exe type: none - config: betakey: devel - osarch: '64' + osarch: "64" oslist: windows description: Играть в BattleRush Development executable: Cv2_Base/Binaries/Win64/Cv2_BaseClient.exe type: none - config: betakey: devel - osarch: '32' + osarch: "32" oslist: windows description: Играть в BattleRush Development executable: Cv2_Base/Binaries/Win32/Cv2_BaseClient.exe type: none -'969990': +"969990": installDir: SpongeBob SquarePants Battle for Bikini Bottom - Rehydrated launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SpongeBob_BFBB_R.exe type: default @@ -433790,9 +427706,9 @@ betakey: kubi oslist: windows description: Spongebob BfBB with Epic Online Friends Invites - executable: Pineapple\\Binaries\\Win64\\Pineapple-Win64-Shipping.exe + executable: "Pineapple\\\\Binaries\\\\Win64\\\\Pineapple-Win64-Shipping.exe" type: option1 -'97000': +"97000": installDir: Solar 2 launch: - config: @@ -433805,14 +427721,14 @@ oslist: linux executable: Solar2 type: none -'970000': +"970000": installDir: Puzzles for smart Horses launch: - config: oslist: windows executable: Puzzles for smart - Horses.exe type: default -'970030': +"970030": installDir: Gems of Magic Lost Family launch: - config: @@ -433823,56 +427739,56 @@ oslist: macos executable: Gems of Magic Lost Family.app type: none -'970090': +"970090": installDir: Snares of Ruin Zero launch: - config: oslist: windows executable: SoR_Zero.exe type: default -'970130': +"970130": installDir: TrinityVR launch: - config: oslist: windows executable: Trinity.exe type: vr -'970140': +"970140": installDir: Reynard launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Reynard.exe type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: Reynard.x86_64 type: none -'970150': +"970150": installDir: Hentai Plus Girl launch: - config: oslist: windows executable: Hentai Plus Girl.exe type: default -'970180': +"970180": installDir: 3 Days in the Abyss launch: - config: oslist: windows executable: III Days in the Abyss.exe type: default -'970190': +"970190": installDir: Sierra Madre launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Sierra Madre.exe type: default -'970200': +"970200": installDir: Campido launch: - config: @@ -433885,7 +427801,7 @@ description: Launch executable: Campido.app type: none -'970240': +"970240": installDir: DrSchplotsNanobots launch: - config: @@ -433896,56 +427812,56 @@ oslist: macos executable: DrSchplotsNanobotsMacSteam.app type: default -'970260': +"970260": installDir: Huli The Mage launch: - arguments: Huli the Mage config: - osarch: '64' + osarch: "64" oslist: windows executable: Huli.exe type: default -'970300': +"970300": installDir: RePoly launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: RePoly.exe type: default -'970360': +"970360": installDir: The Last Sphinx ARG launch: - executable: game.exe type: none -'970370': +"970370": installDir: Gala_Collider launch: - - arguments: '-LaunchArgs=default' + - arguments: "-LaunchArgs=default" config: oslist: windows executable: GalaCollider.exe type: none - - arguments: '-LaunchArgs=default' + - arguments: "-LaunchArgs=default" config: oslist: macos - executable: GalaCollider.app\\Contents\\MacOS\\GalaCollider + executable: "GalaCollider.app\\\\Contents\\\\MacOS\\\\GalaCollider" type: none - - arguments: '-LaunchArgs=default' + - arguments: "-LaunchArgs=default" config: - osarch: '64' + osarch: "64" oslist: linux executable: GalaCollider.x86_64 type: none - - arguments: '-LaunchArgs=default' + - arguments: "-LaunchArgs=default" config: - osarch: '32' + osarch: "32" oslist: linux executable: GalaCollider.x86 type: none -'970390': {} -'970400': +"970390": {} +"970400": installDir: Our Lovely Escape launch: - config: @@ -433960,22 +427876,22 @@ oslist: linux executable: OLE.sh type: default -'970450': +"970450": installDir: Descent of Man launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: DescentOfMan.exe type: none -'970460': +"970460": installDir: Spot The Oddity launch: - config: oslist: windows executable: Spot The Oddity.exe type: none -'970470': +"970470": installDir: Emerald Shores launch: - config: @@ -433987,7 +427903,7 @@ executable: Emerald_Shores/runner type: default workingdir: Emerald_Shores -'970510': +"970510": installDir: 蓝宝石般的被害妄想少女 launch: - config: @@ -433998,14 +427914,14 @@ oslist: macos executable: Sapphire - like murdered paranoid girl.app type: default -'970530': +"970530": installDir: TestPackage launch: - config: oslist: windows executable: Start.exe type: default -'970550': +"970550": installDir: Color Chain launch: - config: @@ -434020,8 +427936,8 @@ oslist: macos executable: Color Chain.app type: none -'970560': - installDir: SG_My Darling's Embrace +"970560": + installDir: "SG_My Darling's Embrace" launch: - config: oslist: windows @@ -434029,23 +427945,23 @@ type: default nameLocalized: japanese: STEINS;GATE 比翼恋理のだーりん -'970570': +"970570": installDir: CHAOS;CHILD launch: - config: oslist: windows executable: boot.bat type: default -'970580': +"970580": installDir: Cubicity launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: Cubicity.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: Cubicity.exe type: default @@ -434057,19 +427973,19 @@ oslist: linux executable: Cubicity.x86_64 type: default -'970600': +"970600": installDir: Paranoia Deliver Me launch: - executable: DeliverMe.exe type: none -'970620': +"970620": installDir: Castle Rencounter launch: - config: oslist: windows executable: nw.exe type: default -'970650': +"970650": installDir: Dig to the Stars launch: - config: @@ -434078,9 +427994,9 @@ type: default - config: oslist: macos - executable: Dig to the Stars.app\\Contents\\MacOS\\Dig to the Stars + executable: "Dig to the Stars.app\\\\Contents\\\\MacOS\\\\Dig to the Stars" type: default -'970660': +"970660": installDir: Nuclear Power Station Creator launch: - config: @@ -434089,9 +428005,9 @@ type: none - config: oslist: macos - executable: Nuclear Power Station Creator.app\\Contents\\MacOS\\Nuclear Power Station Creator + executable: "Nuclear Power Station Creator.app\\\\Contents\\\\MacOS\\\\Nuclear Power Station Creator" type: none -'970680': +"970680": installDir: Snow Rush launch: - config: @@ -434102,7 +428018,7 @@ oslist: macos executable: Snowballed - Crazy Downhill.app/Contents/MacOS/Snowballed - Crazy Downhill type: none -'970710': +"970710": installDir: Kolumno launch: - config: @@ -434113,48 +428029,48 @@ oslist: macos executable: kolumno.app/Contents/MacOS/kolumno type: none -'970730': +"970730": installDir: Ball Out launch: - - arguments: '-nohmd' + - arguments: "-nohmd" config: - osarch: '64' + osarch: "64" oslist: windows executable: BallOut.exe type: default - - arguments: ' -launchinvr' + - arguments: " -launchinvr" config: - osarch: '64' + osarch: "64" oslist: windows executable: BallOut.exe type: vr -'970760': +"970760": installDir: Khaos Wind launch: - config: oslist: windows executable: KhaosWind.exe type: default -'970800': +"970800": installDir: Short Circuit VR launch: - config: oslist: windows executable: ShortCircuitVR.exe type: vr -'970810': - installDir: Julie's Sweets +"970810": + installDir: "Julie's Sweets" launch: - config: oslist: windows executable: Julie.exe type: none -'970820': {} -'970830': +"970820": {} +"970830": installDir: The Dungeon Of Naheulbeuk The Amulet Of Chaos launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Naheulbeuk.exe type: default @@ -434163,18 +428079,18 @@ executable: Naheulbeuk.app/Contents/MacOS/Naheulbeuk type: default nameLocalized: - french: 'Le Donjon de Naheulbeuk : L''Amulette du Désordre' + french: "Le Donjon de Naheulbeuk : L'Amulette du Désordre" schinese: 纳赫鲁博王国地下城:混沌护符 -'970840': +"970840": installDir: Overpass launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: overpass.exe type: default -'970860': {} -'970870': +"970860": {} +"970870": installDir: 1001 Jigsaw. Earth Chronicles launch: - config: @@ -434185,7 +428101,7 @@ oslist: macos executable: 1001 Jigsaw. Earth Chronicles.app type: default -'970880': +"970880": installDir: 1001 Jigsaw. World Tour Australian Puzzles launch: - config: @@ -434196,7 +428112,7 @@ oslist: macos executable: 1001 Jigsaw. World Tour Australian Puzzles.app type: default -'970890': +"970890": installDir: 1001 Jigsaw. World Tour London launch: - config: @@ -434207,7 +428123,7 @@ oslist: macos executable: 1001 Jigsaw. World Tour London Puzzles.app type: default -'970900': +"970900": installDir: 1001 Jigsaw. Home Sweet Home launch: - config: @@ -434218,7 +428134,7 @@ oslist: macos executable: 1001 Jigsaw. World Tour Home Sweet Home.app type: default -'970910': +"970910": installDir: 1001 Jigsaw. World Tour Great America launch: - config: @@ -434229,12 +428145,12 @@ oslist: macos executable: 1001 Jigsaw. World Tour Great America.app type: default -'970940': +"970940": installDir: Unicorn Princess launch: - executable: rlup.exe type: default -'970960': +"970960": installDir: Rebel Cops launch: - config: @@ -434249,32 +428165,32 @@ oslist: linux executable: Rebel Cops.x86_64 type: default -'970970': +"970970": installDir: crappytube launch: - executable: factoryofdelusions.exe type: default -'970980': +"970980": installDir: VR CINEMATIC TRAILER - Runes launch: - config: oslist: windows executable: RUNESVR_TRAILER.exe type: vr -'9710': +"9710": installDir: Desperados 2 launch: - executable: Desperados2.exe -'97100': +"97100": installDir: Section 8 Prejudice launch: - - arguments: '-noreloadenv' + - arguments: "-noreloadenv" executable: S9.exe -'971030': +"971030": installDir: SkateBIRD launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SkateBIRD.exe type: default @@ -434283,50 +428199,50 @@ executable: SkateBIRD.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: SkateBIRD.x86_64 type: default -'971060': - installDir: Mystery Case Files The Countess Collector's Edition +"971060": + installDir: "Mystery Case Files The Countess Collector's Edition" launch: - config: oslist: windows executable: MysteryCaseFiles_TheCountess_CE.exe type: default -'971070': - installDir: Dark Parables The Match Girl's Lost Paradise Collector's Edition +"971070": + installDir: "Dark Parables The Match Girl's Lost Paradise Collector's Edition" launch: - config: oslist: windows executable: DarkParables_TheMatchGirlsLostParadise_CE.exe type: default -'971080': - installDir: Shadow Wolf Mysteries Under the Crimson Moon Collector's Edition +"971080": + installDir: "Shadow Wolf Mysteries Under the Crimson Moon Collector's Edition" launch: - config: oslist: windows executable: ShadowWolfMysteries_UnderTheCrimsonMoonCE.exe type: default -'971090': +"971090": installDir: Hidden Object Home Makeover launch: - config: oslist: windows executable: HomeMakeover.exe type: default -'97110': +"97110": installDir: Kohan Immortal Sovereigns launch: - executable: Kohan.exe -'971100': - installDir: Haunted Legends The Dark Wishes Collector's Edition +"971100": + installDir: "Haunted Legends The Dark Wishes Collector's Edition" launch: - config: oslist: windows executable: HauntedLegends_TheDarkWishes_CE.exe type: default -'971120': +"971120": installDir: Forgiveness launch: - config: @@ -434341,87 +428257,87 @@ oslist: macos executable: Forgiveness.app type: default -'971130': - installDir: Anubis' Challenge +"971130": + installDir: "Anubis' Challenge" launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: AnubisChallenge.exe type: vr -'971160': - installDir: Möbius Front '83 +"971160": + installDir: "Möbius Front '83" launch: - config: oslist: windows - executable: Möbius Front '83.exe + executable: "Möbius Front '83.exe" type: default - config: oslist: macos - executable: Möbius Front '83.app/Contents/MacOS/MobiusFront83 + executable: "Möbius Front '83.app/Contents/MacOS/MobiusFront83" type: default - config: oslist: linux executable: MobiusFront83 type: default -'971180': +"971180": installDir: 8bit Arena launch: - executable: 8bit Arena.exe type: none -'97120': +"97120": installDir: Kohan Ahrimans Gift launch: - executable: Kohan_AG.exe -'971210': +"971210": installDir: ChronoBreach launch: - config: oslist: windows executable: ChronoBreach.exe type: none -'971230': +"971230": installDir: Daedalic Complex launch: - config: oslist: windows executable: Game.exe type: default -'971280': +"971280": installDir: Bomber Arena launch: - config: oslist: windows executable: BomberArena.exe type: default -'97130': +"97130": installDir: Kohan II launch: - executable: k2.exe -'971340': +"971340": installDir: Orc Towers VR launch: - config: - osarch: '64' + osarch: "64" executable: Orc Towers.exe type: vr -'971350': +"971350": installDir: The Limit An Immersive Cinema Experience launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: Robert Rodriguez's The Limit An Immersive Cinema Experience.exe + executable: "Robert Rodriguez's The Limit An Immersive Cinema Experience.exe" type: vr -'971390': +"971390": installDir: Bulls town_Windows launch: - config: oslist: windows executable: BullTown.exe type: default -'971400': {} -'971430': +"971400": {} +"971430": installDir: From Beyond Prologue launch: - config: @@ -434429,28 +428345,28 @@ executable: Prologue.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Prologue.x86_64 type: default - config: oslist: macos - executable: \\Contents\\MacOS\\Prologue + executable: "\\\\Contents\\\\MacOS\\\\Prologue" type: default -'971450': {} -'971460': +"971450": {} +"971460": installDir: FPS Training launch: - executable: FPSTraining.exe type: default -'971480': +"971480": installDir: Kitten Love Emulator launch: - config: oslist: windows executable: I_HT_CATS.exe type: default -'971500': +"971500": installDir: Bubble Burst launch: - config: @@ -434463,49 +428379,49 @@ type: default - config: oslist: macos - executable: BubbleBurst.app\\Contents\\MacOS\\BubbleBurst + executable: "BubbleBurst.app\\\\Contents\\\\MacOS\\\\BubbleBurst" type: default -'971530': +"971530": installDir: VoidGate launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: VoidGate\\VoidGate.exe + executable: "VoidGate\\\\VoidGate.exe" type: default -'971540': +"971540": installDir: SAMS launch: - - arguments: '@f+ @INFOOFF' + - arguments: "@f+ @INFOOFF" config: oslist: windows description: Full screen executable: SAMS.win32_steam.exe type: option1 - - arguments: '@f1920x1080 @z0.9 @INFOOFF' + - arguments: "@f1920x1080 @z0.9 @INFOOFF" config: oslist: windows description: Windowed executable: SAMS.win32_steam.exe type: option1 -'971610': +"971610": installDir: Gyro Boss DX launch: - config: oslist: windows executable: Gyro Boss DX.exe type: default -'971620': +"971620": installDir: Puyo Puyo Champions launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: PuyoPuyoChampions.exe type: default nameLocalized: japanese: ぷよぷよ eスポーツ -'971640': +"971640": installDir: DragonScales5 launch: - config: @@ -434516,52 +428432,52 @@ oslist: macos executable: DragonScales5.app type: default -'971650': +"971650": installDir: Failspace launch: - executable: Failspace.exe type: vr - executable: Failspace.exe type: othervr -'971670': {} -'971680': +"971670": {} +"971680": installDir: Montaro RE launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Montaro RE.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: Montaro RE.exe type: default -'971690': +"971690": installDir: CakeBash launch: - config: betakey: NONE - osarch: '64' + osarch: "64" oslist: windows executable: CakeBash_Win64_Steam.exe type: default - config: betakey: dev-qa - osarch: '64' + osarch: "64" oslist: windows executable: CakeBash_Win64_Steam.exe type: default - config: betakey: demo-test - osarch: '64' + osarch: "64" oslist: windows executable: CakeBash_Win64_Steam.exe type: default -'971700': {} -'971710': {} -'971740': - installDir: The Wizard's Tower +"971700": {} +"971710": {} +"971740": + installDir: "The Wizard's Tower" launch: - config: oslist: windows @@ -434569,24 +428485,24 @@ type: default - config: oslist: macos - executable: TWT.app\\Contents\\MacOS\\TWTMac + executable: "TWT.app\\\\Contents\\\\MacOS\\\\TWTMac" type: default -'971780': +"971780": installDir: ECON - Elemental Connection launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: ECON\\ECON (Windows64)\\nw.exe + executable: "ECON\\\\ECON (Windows64)\\\\nw.exe" type: default - config: - osarch: '32' + osarch: "32" oslist: windows - executable: ECON\\ECON (Windows32)\\nw.exe + executable: "ECON\\\\ECON (Windows32)\\\\nw.exe" type: default -'971800': {} -'971810': {} -'971880': +"971800": {} +"971810": {} +"971880": installDir: Solitaire Mystery Four Seasons launch: - config: @@ -434597,86 +428513,86 @@ oslist: macos executable: SolitaireMysteryFourSeasons.app type: none -'971900': +"971900": installDir: Draft Day Sports Pro Basketball 2019 launch: - config: oslist: windows executable: DDSPB2019.exe type: default -'972010': +"972010": installDir: Raiders launch: - config: oslist: windows executable: Raiders.exe type: none -'972040': {} -'972050': +"972040": {} +"972050": installDir: Super Captain 3D launch: - config: oslist: windows executable: supercap3D.exe type: none -'972080': +"972080": installDir: Bots Rush launch: - config: oslist: windows executable: Bots Rush.exe type: default -'972160': - installDir: The Witch's Love Diary +"972160": + installDir: "The Witch's Love Diary" launch: - - executable: The Witch's Love Diary.exe + - executable: "The Witch's Love Diary.exe" type: default nameLocalized: japanese: 魔女こいにっき -'972170': +"972170": installDir: EchoOfSoul launch: - - arguments: '-steam' + - arguments: "-steam" executable: EOSLauncher.exe type: default -'972180': +"972180": installDir: Geno The Fallen King 1 launch: - config: oslist: windows executable: Geno The Fallen King.exe type: default -'972200': +"972200": installDir: Disenchantment Nirvana launch: - config: oslist: windows executable: Disenchantment Nirvana.exe type: none -'972230': +"972230": installDir: WatchFamily launch: - config: oslist: windows executable: WatchFamily.exe type: default -'972280': +"972280": installDir: Deep Space Shooter launch: - config: oslist: windows executable: Deep Space Shooter.exe type: none -'972290': +"972290": installDir: FlyingMetalSuit launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Flyingmetalsuit.exe type: vr -'972420': - installDir: Houdini's Castle!! +"972420": + installDir: "Houdini's Castle!!" launch: - config: oslist: windows @@ -434686,36 +428602,36 @@ oslist: macos executable: Houdini.app type: none -'972430': +"972430": installDir: Super Jigsaw Puzzle Anime launch: - config: oslist: windows executable: Super Jigsaw Puzzle Anime.exe type: default -'972480': +"972480": installDir: Dog In A Box launch: - config: oslist: windows executable: Dog In A Box.exe type: vr -'972510': +"972510": installDir: Thingamajig launch: - config: oslist: windows executable: thingamajig.exe type: vr -'972520': +"972520": installDir: The Misadventure Of Melon launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: The Misadventure Of Melon.exe type: default -'972560': +"972560": installDir: Termite launch: - config: @@ -434730,21 +428646,21 @@ oslist: windows executable: termite.exe type: default -'972600': +"972600": installDir: Block Pooper 9 launch: - config: oslist: windows executable: Block Pooper 9.exe type: default -'972620': +"972620": installDir: Gems Kingdom launch: - config: oslist: windows executable: nw.exe type: none -'972650': +"972650": installDir: Actual Volleyball launch: - config: @@ -434755,7 +428671,7 @@ oslist: macos executable: mac/actual volleyball.app/contents/MacOS/Actual Volleyball type: default -'972660': +"972660": installDir: Kami launch: - config: @@ -434768,42 +428684,38 @@ type: default - config: oslist: linux - description: .exe launcher - description_loc: - english: .exe launcher + description: ".exe launcher" executable: Spiritfarer.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux - description: .x86_64 launcher - description_loc: - english: .x86_64 launcher + description: ".x86_64 launcher" executable: Spiritfarer.x86_64 type: default nameLocalized: - brazilian: 'Spiritfarer®: Edição Farewell' - english: 'Spiritfarer®: Farewell Edition' - french: 'Spiritfarer®: édition Farewell' - german: 'Spiritfarer®: Farewell-Edition' - italian: 'Spiritfarer®: Edizione Farewell' - japanese: 'Spiritfarer®: Farewellエディション' - koreana: 'Spiritfarer®: 작별 인사 에디션' - latam: 'Spiritfarer®: Edición Farewell' - portuguese: 'Spiritfarer®: Edição Farewell' - russian: 'Издание Spiritfarer®: Farewell' + brazilian: "Spiritfarer®: Edição Farewell" + english: "Spiritfarer®: Farewell Edition" + french: "Spiritfarer®: édition Farewell" + german: "Spiritfarer®: Farewell-Edition" + italian: "Spiritfarer®: Edizione Farewell" + japanese: "Spiritfarer®: Farewellエディション" + koreana: "Spiritfarer®: 작별 인사 에디션" + latam: "Spiritfarer®: Edición Farewell" + portuguese: "Spiritfarer®: Edição Farewell" + russian: "Издание Spiritfarer®: Farewell" schinese: 《Spiritfarer®》Farewell版 - spanish: 'Spiritfarer®: Edición Farewell' - tchinese: 'Spiritfarer®: Farewell 版' -'972740': + spanish: "Spiritfarer®: Edición Farewell" + tchinese: "Spiritfarer®: Farewell 版" +"972740": installDir: KOB_Steam_352 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Kobold_EA.exe type: vr -'972760': +"972760": installDir: Secret Saga launch: - config: @@ -434818,7 +428730,7 @@ oslist: linux executable: SecretSaga.x86_64 type: default -'972770': +"972770": installDir: Thousand Threads launch: - config: @@ -434829,35 +428741,35 @@ oslist: windows executable: Thousand Threads.exe type: default -'972780': +"972780": installDir: Broomstick League launch: - config: oslist: windows executable: Broomstick.exe type: default -'972890': +"972890": installDir: RideOp - VR Thrill Ride Experience launch: - executable: RideOperatorVR.exe type: vr -'972910': +"972910": installDir: Timore 6 launch: - config: oslist: windows executable: Timore 6.exe type: default -'972920': +"972920": installDir: Rebirth launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Rebirth.exe type: default -'972930': {} -'972940': +"972930": {} +"972940": installDir: stepbystep launch: - config: @@ -434868,246 +428780,189 @@ oslist: linux executable: stepbystep type: none -'972950': {} -'972960': +"972950": {} +"972960": installDir: INV launch: - config: oslist: windows description: Invasion Chapter 1 - description_loc: - english: Invasion Chapter 1 - turkish: İstila Bölüm 1 executable: INV.exe type: default - config: oslist: windows description: Invasion Chapter 2 - description_loc: - english: Invasion Chapter 2 - turkish: İstila Bölüm 2 executable: INV2.exe type: none - config: oslist: windows description: Invasion Chapter 3 - description_loc: - english: Invasion Chapter 3 - turkish: İstila Bölüm 3 executable: INV3.exe type: none - config: oslist: windows description: Invasion Chapter 4 - description_loc: - english: Invasion Chapter 4 - turkish: İstila Bölüm 4 executable: INV4.exe type: none - config: oslist: windows description: Invasion Chapter 5 - description_loc: - english: Invasion Chapter 5 - turkish: İstila Bölüm 5 executable: INV5.exe type: none - config: oslist: windows description: Invasion Chapter 6 - description_loc: - english: Invasion Chapter 6 - turkish: İstila Bölüm 6 executable: INV6.exe type: none - config: oslist: windows description: Invasion Chapter 7 - description_loc: - english: Invasion Chapter 7 - turkish: İstila Bölüm 7 executable: INV7.exe type: none - config: oslist: windows description: Invasion Chapter Selection - description_loc: - english: Invasion Chapter Selection - turkish: İstila Bölüm Seçimi executable: INVCS.exe type: none - config: oslist: windows description: Invasion Beta TPS Mode - description_loc: - english: Invasion Beta TPS Mode - turkish: İstila Beta TPS Modu executable: INV_TPS.exe type: none - config: oslist: windows description: Convert to Retro Pixel Version - description_loc: - english: Convert to Retro Pixel Version - turkish: Retro Piksel Sürüme Dönüştür - executable: Files\\effectbank\\reloaded\\pixel.exe + executable: "Files\\\\effectbank\\\\reloaded\\\\pixel.exe" type: config - workingdir: Files\\effectbank\\reloaded\\ + workingdir: "Files\\\\effectbank\\\\reloaded\\\\" - config: oslist: windows description: Convert to Original Version - description_loc: - english: Convert to Original Version - turkish: Orijinal Sürüme Dönüştür - executable: Files\\effectbank\\reloaded\\normal.exe + executable: "Files\\\\effectbank\\\\reloaded\\\\normal.exe" type: config - workingdir: Files\\effectbank\\reloaded\\ -'972990': + workingdir: "Files\\\\effectbank\\\\reloaded\\\\" +"972990": installDir: HR launch: - config: oslist: windows description: Hopper Rabbit FPS - description_loc: - english: Hopper Rabbit FPS - turkish: Zıp Zıp Tavşan FPS executable: HR.exe type: default - config: oslist: windows description: Hopper Rabbit FPS Hacker Mode - description_loc: - english: Hopper Rabbit FPS Hacker Mode - turkish: Zıp Zıp Tavşan FPS Hacker Modu executable: HR_HACKER.exe type: none - config: oslist: windows description: Hopper Rabbit FPS Xmas Mode - description_loc: - english: Hopper Rabbit FPS Xmas Mode - turkish: Zıp Zıp Tavşan FPS Yeni Yıl Modu executable: HR_XMAS.exe type: none - config: oslist: windows description: Hopper Rabbit TPS - description_loc: - english: Hopper Rabbit TPS - turkish: Zıp Zıp Tavşan TPS executable: HR_TPS.exe type: none - config: oslist: windows description: Hopper Rabbit TPS Hacker Mode - description_loc: - english: Hopper Rabbit TPS Hacker Mode - turkish: Zıp Zıp Tavşan TPS Hacker Modu executable: HR_TPS_HACKER.exe type: none - config: oslist: windows description: Hopper Rabbit TPS Xmas Mode - description_loc: - english: Hopper Rabbit TPS Xmas Mode - turkish: Zıp Zıp Tavşan TPS Yeni Yıl Modu executable: HR_TPS_XMAS.exe type: none - config: oslist: windows description: Convert to Retro Pixel Version - description_loc: - english: Convert to Retro Pixel Version - turkish: Retro Piksel Sürüme Dönüştür - executable: Files\\effectbank\\reloaded\\pixel.exe + executable: "Files\\\\effectbank\\\\reloaded\\\\pixel.exe" type: config - workingdir: Files\\effectbank\\reloaded\\ + workingdir: "Files\\\\effectbank\\\\reloaded\\\\" - config: oslist: windows description: Convert to Original Version - description_loc: - english: Convert to Original Version - turkish: Orijinal Sürüme Dönüştür - executable: Files\\effectbank\\reloaded\\normal.exe + executable: "Files\\\\effectbank\\\\reloaded\\\\normal.exe" type: config - workingdir: Files\\effectbank\\reloaded\\ -'9730': + workingdir: "Files\\\\effectbank\\\\reloaded\\\\" +"9730": installDir: Tycoon City New York launch: - executable: TycoonCity.exe -'973000': +"973000": installDir: DieYoungPrologue launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: DieYoungPrologue\\Binaries\\Win64\\DieYoungPrologue-Win64-Shipping.exe + executable: "DieYoungPrologue\\\\Binaries\\\\Win64\\\\DieYoungPrologue-Win64-Shipping.exe" type: none -'973040': +"973040": installDir: Kobold Slayer launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: linux executable: Dungeon3D/nw type: default - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: - osarch: '64' + osarch: "64" oslist: windows executable: Dungeon3D/Game.exe type: default - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: macos executable: Dungeon3D/Game.app/Contents/MacOS/nwjs type: default -'973050': +"973050": installDir: Ashes of the Night launch: - - executable: Project2\\Game.exe + - executable: "Project2\\\\Game.exe" type: default -'973060': +"973060": installDir: Evil Maze 2 launch: - executable: Game.exe type: default -'973070': +"973070": installDir: Bound By Blades launch: - config: oslist: windows executable: Bound By Blades.exe type: default -'973090': +"973090": installDir: Toilet Simulator launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Launcher.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows - description: 'Real Time Pee Mode [NEW] [HILLARIOUS]' - executable: '1\\Toilet Simulator [REAL TIME LIQUID SIMULATION].exe' + description: "Real Time Pee Mode [NEW] [HILLARIOUS]" + executable: "1\\\\Toilet Simulator [REAL TIME LIQUID SIMULATION].exe" type: option1 -'973100': +"973100": installDir: Super Realistic Autocross launch: - config: oslist: windows executable: Super Realistic Autocross.exe type: default -'973110': +"973110": installDir: Farm Business launch: - config: oslist: windows executable: Farm Business.exe type: default -'973130': +"973130": installDir: Ecchi 2 compile 2D chan launch: - config: @@ -435122,9 +428977,9 @@ oslist: macos executable: Ecchi 2.app type: default -'973140': {} -'973160': {} -'973170': +"973140": {} +"973160": {} +"973170": installDir: RoboBall launch: - config: @@ -435135,7 +428990,7 @@ oslist: macos executable: RoboBall.app type: default -'973200': +"973200": installDir: Case Simulator Weapons and Armors launch: - config: @@ -435147,7 +429002,7 @@ description: Expansion Pack 1 executable: Case Simulator Weapons and Armors Expansion Pack 1.exe type: option1 -'973220': +"973220": installDir: SiNKR 2 launch: - config: @@ -435166,29 +429021,25 @@ japanese: SiNKR 2 / シズめル 2 schinese: SiNKR 2 / 冰钩 2 tchinese: SiNKR 2 / 冰钩 2 -'973230': +"973230": installDir: We who are about to Die launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Default - description_loc: - english: Default executable: WWAATD.exe type: default - - arguments: '-DX11' + - arguments: "-DX11" config: - osarch: '64' + osarch: "64" oslist: windows description: We Who Are About To Die (DirectX 11) - description_loc: - english: We Who Are About To Die (DirectX 11) executable: WWAATD.exe type: option1 nameLocalized: russian: We Who Are About To Die - Идущие на смерть -'973240': +"973240": installDir: Anime And You Life launch: - config: @@ -435211,11 +429062,11 @@ koreana: 애니메이션과 당신의 삶 russian: Аниме И Твоя Жизнь tchinese: 動漫與你的生活 -'973250': +"973250": installDir: Altered launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Altered.exe type: default @@ -435227,29 +429078,29 @@ oslist: linux executable: Altered.x86_64 type: default -'97330': +"97330": installDir: Magic 2013 launch: - executable: DotP_D13.exe -'973300': +"973300": installDir: Super Lolicon Puzzle Simulator 2019 launch: - config: oslist: windows executable: PicturePuzzle.exe type: default -'973310': +"973310": installDir: Symphony of Stars launch: - - arguments: '-vrmode none' + - arguments: "-vrmode none" config: - osarch: '64' + osarch: "64" oslist: windows executable: SymphonyOfStars-WindowsVR/Symphony of Stars.exe type: default workingdir: SymphonyOfStars-WindowsVR - config: - osarch: '64' + osarch: "64" oslist: windows executable: SymphonyOfStars-WindowsVR/Symphony of Stars.exe type: vr @@ -435259,36 +429110,36 @@ executable: SymphonyOfStars-OSX.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: SymphonyOfStars.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: SymphonyOfStars.x86_64 type: default -'973320': {} -'973350': +"973320": {} +"973350": installDir: Warriors Of Ragarök launch: - config: oslist: windows executable: GamePlanProject.exe type: default -'973390': +"973390": installDir: EmpiresThe Rise launch: - config: oslist: windows executable: Empire_Win_HaiWai.exe type: default -'973400': {} -'973410': +"973400": {} +"973410": installDir: The Elementalist launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TheElementalist.exe type: default @@ -435298,25 +429149,25 @@ type: default - config: oslist: macos - executable: The Elementalist.app\\Contents\\MacOS\\The Elementalist + executable: "The Elementalist.app\\\\Contents\\\\MacOS\\\\The Elementalist" type: none - config: - osarch: '32' + osarch: "32" oslist: windows executable: The Elementalist.exe type: default -'973440': +"973440": installDir: Otokomizu launch: - config: oslist: windows executable: OM.exe type: default -'973450': +"973450": nameLocalized: schinese: 轮回深渊 -'973470': {} -'973560': +"973470": {} +"973560": installDir: Tama launch: - config: @@ -435327,20 +429178,20 @@ oslist: macos executable: Tama.app type: default -'973580': +"973580": installDir: Sniper Ghost Warrior Contracts launch: - - executable: win_x64\\SGWContracts.exe + - executable: "win_x64\\\\SGWContracts.exe" nameLocalized: schinese: 狙击手:幽灵战士契约 -'973640': +"973640": installDir: The Breach VR Escape Game launch: - config: oslist: windows executable: Escape-Game.exe type: vr -'973690': +"973690": installDir: Antrum launch: - config: @@ -435348,45 +429199,45 @@ executable: Antrum.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Antrum.x86_64 type: default - config: oslist: macos - executable: Antrum.app\\Contents\\MacOS\\Antrum + executable: "Antrum.app\\\\Contents\\\\MacOS\\\\Antrum" type: none -'973700': +"973700": installDir: Disassembly VR launch: - config: oslist: windows executable: DisassemblyVR.exe type: vr -'973720': +"973720": installDir: Element Z launch: - config: oslist: windows executable: Element Z.exe type: none -'973760': +"973760": installDir: Thronebreaker The Witcher Tales launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Thronebreaker.exe type: default -'973780': {} -'973800': +"973780": {} +"973800": installDir: Dragon World launch: - config: oslist: windows executable: DragonWorld.exe type: none -'973810': +"973810": installDir: Journey to the Savage Planet launch: - config: @@ -435397,7 +429248,7 @@ koreana: 저니 투 더 새비지 플래닛/ Journey To The Savage Planet schinese: 狂野星球之旅 / Journey To The Savage Planet tchinese: 狂野星球之旅/ Journey To The Savage Planet -'973850': +"973850": installDir: Gorytale launch: - config: @@ -435408,18 +429259,18 @@ oslist: macos executable: Gorytale.app/Contents/MacOS/Gorytale type: none -'973860': +"973860": installDir: CYPEST Underground launch: - config: oslist: windows executable: cypest.exe type: default -'9740': +"9740": installDir: Indigo Prophecy launch: - executable: Indigo Prophecy.exe -'974010': +"974010": installDir: Zero spring episode 2 launch: - config: @@ -435428,36 +429279,36 @@ type: default - config: oslist: windows - ownsdlc: '1095490' + ownsdlc: "1095490" description: TEST ADV executable: TESTADV.exe type: option1 -'974040': +"974040": installDir: BattleMore launch: - config: oslist: windows executable: BattleMore.exe type: none -'974060': +"974060": installDir: Sleigh Runner launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Sleigh Runner.exe type: vr -'974070': +"974070": installDir: Juggly launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Juggly.exe type: default -'974090': {} -'974100': {} -'974110': +"974090": {} +"974100": {} +"974110": installDir: Zeroptian Invasion launch: - config: @@ -435468,37 +429319,37 @@ oslist: linux executable: runner type: default -'974140': +"974140": installDir: Xtractor Defender launch: - config: oslist: windows executable: XtractorDefender.exe type: default -'974150': +"974150": installDir: Well Town launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: WindowsNoEditor\\WellTown.exe + executable: "WindowsNoEditor\\\\WellTown.exe" type: vr -'974160': +"974160": installDir: StupidCupid launch: - config: oslist: windows executable: StupidCupid.exe type: vr -'974180': +"974180": installDir: Falnarion Tactics launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows executable: game.exe type: default -'974200': +"974200": installDir: haoyuekonghua launch: - description: 皓月空华 @@ -435507,42 +429358,42 @@ - description: 攻略 executable: tools.txt type: option2 -'974220': +"974220": installDir: MEMORISE CREATION launch: - config: oslist: windows executable: MEMORISE CREATION.exe type: default -'974240': +"974240": installDir: Detective escape1 launch: - config: oslist: windows executable: Detective escape1.exe type: default -'974250': +"974250": installDir: Grooming Adventure launch: - config: oslist: windows executable: Grooming Adventure.exe type: none -'974320': +"974320": installDir: Hentai Dreams launch: - config: oslist: windows executable: Hentai Dreams.exe type: default -'974370': +"974370": installDir: Chop is dish launch: - config: oslist: windows executable: Chop is dish.exe type: default -'974390': +"974390": installDir: Morigin launch: - config: @@ -435553,129 +429404,129 @@ oslist: macos executable: MOrigin/MOrigin.app type: default -'974420': {} -'974430': +"974420": {} +"974430": installDir: GC launch: - config: oslist: windows - executable: GC\\GC.exe + executable: "GC\\\\GC.exe" type: default - config: oslist: macos - executable: GC\\GC mac.app\\Contents\\MacOS\\GC mac + executable: "GC\\\\GC mac.app\\\\Contents\\\\MacOS\\\\GC mac" type: config - config: oslist: linux - executable: GC linux\\GC linux.x86 + executable: "GC linux\\\\GC linux.x86" type: default -'974450': +"974450": installDir: 三和大神 launch: - executable: GodsInSanhe.exe type: none -'974470': +"974470": installDir: Girls Free launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Girls Free.exe type: default -'974490': {} -'974520': +"974490": {} +"974520": installDir: Ultimo Reino launch: - config: oslist: windows executable: uro.exe type: default -'974530': +"974530": installDir: Draft Day Sports Pro Football 2019 launch: - config: oslist: windows executable: DDSPF19.exe type: default -'974600': +"974600": installDir: Retro Wing Prime launch: - config: oslist: macos - executable: retro_wing.app\\Contents\\MacOS\\retro_wing + executable: "retro_wing.app\\\\Contents\\\\MacOS\\\\retro_wing" type: default - config: oslist: windows executable: Retro Wing.exe type: default -'974620': +"974620": installDir: Ultrawings FLAT launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: UltrawingsFlat.exe type: default -'974670': +"974670": installDir: DREAM GIRLS VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: dream girls vr.exe type: vr -'974680': +"974680": installDir: A night with Natalie launch: - config: oslist: windows executable: Night with Natalie PC.exe type: default -'974750': +"974750": installDir: The Crazy Cookies! launch: - config: oslist: windows executable: The Crazy Cookies!.exe type: default -'974830': +"974830": installDir: The Art Theft by Jay Doherty launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: TheArtTheft.exe type: vr -'974840': +"974840": installDir: A Show of Kindness launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: AShowOfKindness.exe type: vr -'974850': +"974850": installDir: Flan launch: - config: oslist: windows executable: Flan.exe type: default -'974860': +"974860": installDir: Condition Red launch: - executable: ConditionRed.exe type: none -'974870': +"974870": installDir: FIREWORK launch: - config: oslist: windows executable: FIREWORK.exe type: default -'974910': +"974910": installDir: Magical Diary Wolf Hall launch: - config: @@ -435690,21 +429541,21 @@ oslist: macos executable: WolfHall.app type: default -'974920': +"974920": installDir: New Adult Reality launch: - config: oslist: windows executable: Adult_2019_.exe type: othervr -'974930': +"974930": installDir: Dark Matter launch: - config: oslist: windows executable: Game.exe type: default -'974950': +"974950": installDir: DAMNOSAUR launch: - config: @@ -435716,45 +429567,45 @@ executable: Damnosaur.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Damnosaur.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Damnosaur.x86_64 type: default -'974970': +"974970": installDir: Blocky McBlockFace launch: - config: oslist: windows executable: Blocky McBlockFace.exe type: default -'975000': - installDir: 'NO, THANK YOU!!!' +"975000": + installDir: "NO, THANK YOU!!!" launch: - config: oslist: windows executable: nothankyou.exe type: default -'975010': {} -'975020': +"975010": {} +"975020": installDir: The Spirit Master of Retarnia -Conqueror of the Labyrinth- launch: - config: oslist: windows executable: Retarnia.exe type: default -'975030': +"975030": installDir: Abandoned launch: - config: oslist: windows executable: Abandoned.exe type: default -'975050': +"975050": installDir: Orphan of the Petal launch: - description: Orphan of the Petal @@ -435766,26 +429617,26 @@ - description: 帮助文档 executable: bangzhu.txt type: option3 -'975100': +"975100": installDir: Justice launch: - executable: Justice VR.exe type: vr -'975110': +"975110": installDir: No Crossing launch: - config: oslist: windows executable: NoCrossing.exe type: none -'975120': - installDir: ~necromancy~Emily's Escape +"975120": + installDir: "~necromancy~Emily's Escape" launch: - config: oslist: windows - executable: ~necromancy~Emily's Escape.exe + executable: "~necromancy~Emily's Escape.exe" type: none -'975150': +"975150": installDir: Resolutiion launch: - config: @@ -435798,31 +429649,31 @@ type: default - config: oslist: macos - executable: Resolutiion.app\\Contents\\MacOS\\Resolutiion + executable: "Resolutiion.app\\\\Contents\\\\MacOS\\\\Resolutiion" type: default -'975160': +"975160": installDir: Ankh Guardian launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: Ankh Guardian - Treasure of the Demon's Temple.exe + executable: "Ankh Guardian - Treasure of the Demon's Temple.exe" type: default -'975200': +"975200": installDir: Red points launch: - config: oslist: windows executable: Red points.exe type: default -'975220': +"975220": installDir: A Business Power launch: - config: oslist: windows executable: A Business Power.exe type: default -'975230': +"975230": installDir: Das Geisterschiff launch: - config: @@ -435830,93 +429681,93 @@ executable: DasGeisterschiff.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux description: 32-bit executable: DasGeisterschiff.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux description: 64-bit executable: DasGeisterschiff.x86_64 type: default - config: oslist: macos - executable: DasGeisterschiff.app\\Contents\\MacOS\\DasGeisterschiff + executable: "DasGeisterschiff.app\\\\Contents\\\\MacOS\\\\DasGeisterschiff" type: default -'975240': +"975240": installDir: Hentai Shooter 3D Christmas Party launch: - executable: game.exe type: none -'975270': - installDir: ' Legion War' +"975270": + installDir: " Legion War" launch: - config: oslist: windows executable: LegionWar.exe type: none -'975290': +"975290": installDir: The Pepper Prince - Seasoning 1 launch: - config: oslist: windows executable: The Pepper Prince - Seasoning 1.exe type: default -'975350': +"975350": installDir: Mojo XXX launch: - executable: game.exe type: none -'975370': +"975370": installDir: Dwarf Fortress launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Dwarf Fortress.exe type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: dwarfort -'975390': +"975390": installDir: Dodgeball Simulator VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Dodgeball Simulator VR.exe type: vr -'975410': +"975410": installDir: Vestige launch: - config: oslist: windows executable: Vestige.exe type: vr -'975430': +"975430": installDir: Dick Wilde 2 launch: - config: oslist: windows executable: DickWilde2.exe type: vr -'975460': {} -'975470': +"975460": {} +"975470": installDir: Silver Chains launch: - config: oslist: windows executable: SilverChains.exe type: none -'975500': {} -'975510': +"975500": {} +"975510": installDir: PanzerPaladin launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: PanzerPaladin.exe type: default @@ -435924,29 +429775,29 @@ oslist: linux executable: PanzerPaladin type: default -'975520': +"975520": installDir: SHNIPERS launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SHNIPERS_PC_64.exe type: default - config: oslist: macos - executable: SHNIPERS_Mac.app\\Contents\\MacOS\\SHNIPERS_Mac + executable: "SHNIPERS_Mac.app\\\\Contents\\\\MacOS\\\\SHNIPERS_Mac" type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: SHNIPERS_PC.exe type: default -'975600': +"975600": installDir: Roguelite launch: - executable: Game.exe type: default -'975620': +"975620": installDir: Project DeepWeb launch: - config: @@ -435959,51 +429810,51 @@ type: default - config: oslist: windows - ownsdlc: '1466980' + ownsdlc: "1466980" description: Artbook executable: artbook/Project DeepWeb Artbook.exe type: option1 - config: oslist: macos - ownsdlc: '1466980' + ownsdlc: "1466980" description: Artbook executable: Project DeepWeb Artbook.app type: option1 -'975640': +"975640": installDir: Adolf Hitler Humiliation Simulator launch: - config: oslist: windows executable: Launcher.exe type: default -'975660': +"975660": installDir: Discharge launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: NeuralNetwork.exe type: default -'975670': +"975670": installDir: Neon Blast launch: - config: oslist: windows executable: neon blast.exe type: default -'975680': +"975680": installDir: Pineapple launch: - config: oslist: windows executable: Metal Slug XX.exe type: default -'975700': +"975700": installDir: KoterGame launch: - executable: KoterLauncher.exe type: default -'975710': +"975710": installDir: Qipa World-Hello Big Adventure launch: - config: @@ -436018,30 +429869,30 @@ oslist: linux executable: QipaWorld.x86_64 type: none -'975750': {} -'975760': +"975750": {} +"975760": installDir: LoveRoomVR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: loveroom.exe type: vr - - arguments: '--non-vr' + - arguments: "--non-vr" config: - osarch: '64' + osarch: "64" oslist: windows description: Non-VR / 非VR版 executable: loveroom.exe type: option1 - - arguments: '--force-virtual-hand' + - arguments: "--force-virtual-hand" config: - osarch: '64' + osarch: "64" oslist: windows description: Virtual Hand Mode executable: loveroom.exe type: vr -'975770': +"975770": installDir: Escape From The Dragons launch: - config: @@ -436053,38 +429904,38 @@ executable: EscapeFromTheDragons.app/Contents/MacOS/EscapeFromTheDragons type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: EscapeFromTheDragons.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: EscapeFromTheDragons.x86_64 type: default -'975800': +"975800": installDir: CosmoDriveZero launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: \\CosmoDriveZero\\InfiniteMatrix.exe + executable: "\\\\CosmoDriveZero\\\\InfiniteMatrix.exe" type: default -'975860': +"975860": installDir: 拖拉机 launch: - config: oslist: windows - executable: Bin\\game.bat + executable: "Bin\\\\game.bat" type: default workingdir: Bin - - arguments: 'app:UpgradeGame.dll w:1024 h:640 d3d11' + - arguments: "app:UpgradeGame.dll w:1024 h:640 d3d11" config: oslist: windows - executable: Bin\\IFWinApp.exe + executable: "Bin\\\\IFWinApp.exe" type: none workingdir: Bin -'975910': +"975910": installDir: HENTAI SHADOW launch: - config: @@ -436099,15 +429950,15 @@ oslist: linux executable: HENTAI SHADOW.x86 type: default -'975950': +"975950": installDir: Effie launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: \\Effie\\Binaries\\Win64\\Effie-Win64-Shipping.exe + executable: "\\\\Effie\\\\Binaries\\\\Win64\\\\Effie-Win64-Shipping.exe" type: default -'975980': +"975980": installDir: Mahjong Fest Winterland launch: - config: @@ -436118,11 +429969,11 @@ oslist: macos executable: MahjongFestWinterland.app/Contents/MacOS/mahjong type: none -'9760': +"9760": installDir: Act of War High Treason launch: - executable: ActOfWar_HighTreason.exe -'976010': +"976010": installDir: I hate this game launch: - config: @@ -436130,7 +429981,7 @@ description: Launch executable: I hate this game.exe type: default -'976020': +"976020": installDir: The True Tales of Bloodstreet 13 launch: - config: @@ -436141,16 +429992,16 @@ oslist: macos executable: True Tales of Bloodstreet 13 - Chapter 1.app type: default -'976030': +"976030": installDir: Drafting Tales launch: - config: - osarch: '64' + osarch: "64" oslist: linux executable: Drafting Tales.x86_64 type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: Drafting Tales.exe type: default @@ -436158,87 +430009,87 @@ oslist: macos executable: Drafting Tales.app type: default -'976060': +"976060": installDir: InTheEmber launch: - config: oslist: windows executable: Game.exe type: default -'976070': +"976070": installDir: BadNote launch: - config: oslist: windows executable: Game.exe type: default -'976090': +"976090": installDir: Fight for Gold II launch: - config: oslist: windows executable: Fight for Gold II.exe type: default -'976120': +"976120": installDir: WARPZONE DRIFTER launch: - config: oslist: windows executable: WARPZONE DRIFTER.exe type: default -'976160': +"976160": installDir: Beer Bar launch: - executable: Game.exe type: none -'976170': +"976170": installDir: CutePuzzle launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Cute(Hard)Puzzle.exe type: default -'976190': {} -'976230': +"976190": {} +"976230": installDir: TV189 launch: - executable: TV189.exe type: none -'976240': +"976240": installDir: Spaceguy Red Space launch: - config: oslist: windows executable: Spaceguy Red Space.exe type: none -'976290': {} -'976310': +"976290": {} +"976310": installDir: Mortal Kombat 11 launch: - config: oslist: windows description: Denuvo_executable (PROD) - executable: Binaries\\Retail\\MK11.exe + executable: "Binaries\\\\Retail\\\\MK11.exe" type: default - config: betakey: test1 test2 test18 test23 test24 test12 oslist: windows description: Debug_executable - executable: \\Binaries\\Retail\\MK11Game-RetailCheatsOn.exe + executable: "\\\\Binaries\\\\Retail\\\\MK11Game-RetailCheatsOn.exe" type: option1 - config: betakey: test1 test2 test24 test12 test18 oslist: windows description: No-Denuvo_executable - executable: \\Binaries\\Retail\\MK11Game-Retail.exe + executable: "\\\\Binaries\\\\Retail\\\\MK11Game-Retail.exe" type: option2 - config: oslist: windows description: DirectX 12 (Windows 10 required) - executable: Binaries\\Retail\\MK11_DX12.exe + executable: "Binaries\\\\Retail\\\\MK11_DX12.exe" type: option3 -'976320': +"976320": installDir: Drawz launch: - config: @@ -436246,14 +430097,14 @@ description: Launch executable: drawz.exe type: default -'976340': +"976340": installDir: You Can(Not) Survive launch: - config: oslist: windows executable: You Can(Not) Survive.exe type: default -'976360': +"976360": installDir: Cotrio launch: - config: @@ -436262,9 +430113,9 @@ type: default - config: oslist: macos - executable: Cotrio.app\\Contents\\MacOS\\Cotrio + executable: "Cotrio.app\\\\Contents\\\\MacOS\\\\Cotrio" type: default -'976390': +"976390": installDir: nine_kokoiro launch: - executable: nine_kokoiro.exe @@ -436273,11 +430124,11 @@ japanese: 9-nine-ここのつここのかここのいろ schinese: 9-nine-九次九日九重色 tchinese: 9-nine-九次九日九重色 -'976410': +"976410": installDir: Infinite Children launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Infinite_Children.exe type: default @@ -436285,8 +430136,8 @@ oslist: macos executable: Infinite_Children_OSX.app type: default -'976420': - installDir: 'My so-called future girlfriend [Visual Novel]' +"976420": + installDir: "My so-called future girlfriend [Visual Novel]" launch: - config: oslist: windows @@ -436294,25 +430145,25 @@ type: default nameLocalized: koreana: 미래의 여친님이 나에게 인사를 건네왔다 -'976440': {} -'976500': +"976440": {} +"976500": installDir: Venineth launch: - config: oslist: windows executable: Game.exe type: default -'976560': {} -'976570': +"976560": {} +"976570": installDir: CodeShifter launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: CodeShifter.exe type: none -'976580': {} -'976590': +"976580": {} +"976590": installDir: Bus Simulator 21 launch: - executable: BusSimulator21.exe @@ -436349,58 +430200,50 @@ betakey: ebranch executable: BusSimulator20.exe type: none -'976600': {} -'976620': +"976600": {} +"976620": installDir: Enderal Special Edition launch: - executable: Enderal Launcher.exe type: none -'976630': {} -'976680': +"976630": {} +"976680": installDir: Minimal Move launch: - config: oslist: windows executable: MinimalMove.exe type: none -'976700': +"976700": installDir: SizeMatters launch: - config: oslist: windows executable: Size Matters.exe type: default -'976720': +"976720": installDir: Case Opener Guns launch: - config: oslist: windows executable: Case Opener Guns.exe type: default -'976730': +"976730": installDir: Halo The Master Chief Collection launch: - - description: 'Halo: The Master Chief Collection' - description_loc: - english: 'Halo: The Master Chief Collection' + - description: "Halo: The Master Chief Collection" executable: mcclauncher.exe type: option1 - - arguments: '-no-eac' - description: 'Halo: MCC Anti-Cheat Disabled (Mods and Limited Services)' - description_loc: - english: 'Halo: MCC Anti-Cheat Disabled (Mods and Limited Services)' - executable: mcc\\binaries\\win64\\mcc-win64-shipping.exe + - arguments: "-no-eac" + description: "Halo: MCC Anti-Cheat Disabled (Mods and Limited Services)" + executable: "mcc\\\\binaries\\\\win64\\\\mcc-win64-shipping.exe" type: option2 - config: - betakey: >- - dailybuild-main dailybuild-release dailybuild-qfe1 sq_hold the_core dailybuild chelan_423 chelan_426 - the_retail_core chelan_ns_hold chelan_capture_101321 gimme_gimme_moa_102621 chelan_re chelan_lkg qa_hold + betakey: dailybuild-main dailybuild-release dailybuild-qfe1 sq_hold the_core dailybuild chelan_423 chelan_426 the_retail_core chelan_ns_hold chelan_capture_101321 gimme_gimme_moa_102621 chelan_re chelan_lkg qa_hold description: DEV EXE - description_loc: - english: DEV EXE - executable: mcc\\binaries\\win64\\mcc.exe + executable: "mcc\\\\binaries\\\\win64\\\\mcc.exe" type: option3 -'976780': +"976780": installDir: NeonCode launch: - config: @@ -436413,46 +430256,46 @@ type: none - config: oslist: macos - executable: NeonCode.app\\Contents\\MacOS\\NeonCode + executable: "NeonCode.app\\\\Contents\\\\MacOS\\\\NeonCode" type: none -'976800': +"976800": installDir: NineTrials launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: NineTrials\\Binaries\\Win64\\NineTrials.exe + executable: "NineTrials\\\\Binaries\\\\Win64\\\\NineTrials.exe" type: default -'976830': +"976830": installDir: Diaperquest 2055 launch: - config: oslist: windows executable: Game.exe type: default -'976840': +"976840": installDir: Happy Vampire Girl launch: - config: oslist: windows executable: Happy Vampire Girl.exe type: default -'976850': +"976850": installDir: Trafic Road Rush launch: - config: oslist: windows executable: trafficracer.exe type: default -'976860': {} -'976870': +"976860": {} +"976870": installDir: Kukoo Kitchen launch: - config: oslist: windows executable: Main.exe type: none -'976890': +"976890": installDir: Hidden Deep launch: - config: @@ -436463,67 +430306,59 @@ betakey: aderow oslist: windows description: Play Hidden Deep 64 - description_loc: - english: Play Hidden Deep 64 executable: hdeep_NG.exe type: option1 - config: oslist: windows - ownsdlc: '1670550' + ownsdlc: "1670550" description: Bonus content - description_loc: - english: Bonus content executable: open_bonus_win.bat nameLocalized: schinese: Hidden Deep 幽闭深渊 tchinese: Hidden Deep 幽閉深淵 -'976900': +"976900": installDir: Lumberhill launch: - config: oslist: windows executable: Lumberhill.exe type: none -'976920': +"976920": installDir: Dance_of_Death launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: dance_of_death.exe type: default -'976930': +"976930": installDir: Groove Gunner launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: GrooveGunner.exe type: vr - arguments: editor config: - osarch: '64' + osarch: "64" oslist: windows description: Editor - description_loc: - english: Editor executable: GrooveGunner.exe type: vr - config: - osarch: '64' + osarch: "64" oslist: linux executable: GrooveGunner type: vr - arguments: editor config: - osarch: '64' + osarch: "64" oslist: linux description: Editor - description_loc: - english: Editor executable: GrooveGunner type: vr -'976940': +"976940": installDir: TheShellofPermafrost launch: - config: @@ -436534,87 +430369,87 @@ - config: oslist: windows description: English - executable: \\ENV\\Game.exe + executable: "\\\\ENV\\\\Game.exe" type: option2 -'976950': +"976950": installDir: Defeat the Beat launch: - executable: Defeat the Beat.exe type: vr -'976960': +"976960": installDir: Heart of Moon launch: - config: oslist: windows executable: HeartOfMoon.exe type: default -'976970': +"976970": installDir: A Cheesy Game launch: - config: oslist: windows executable: A Cheesy Game.exe type: default -'976980': +"976980": installDir: The Great Emu War launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TheGreatEmuWars.exe type: default -'977030': {} -'977050': +"977030": {} +"977050": installDir: Action Source launch: - - arguments: '-game ahl2 -steam' + - arguments: "-game ahl2 -steam" config: oslist: windows executable: hl2.exe type: default - - arguments: '-game ahl2 -steam' + - arguments: "-game ahl2 -steam" config: - osarch: '64' + osarch: "64" oslist: linux executable: hl2.sh type: default -'977080': +"977080": installDir: CleanUpClydeCollection launch: - config: oslist: windows executable: cleanupclyde.exe type: none -'977090': {} -'977100': +"977090": {} +"977100": installDir: UnblockGridlock launch: - config: oslist: windows executable: UnblockGridlock.exe type: default -'977110': +"977110": installDir: Elite Archery launch: - executable: Elite Archery.exe type: none -'977140': {} -'977160': +"977140": {} +"977160": installDir: HORSE launch: - config: oslist: windows executable: Horse.exe type: none -'977200': {} -'977210': +"977200": {} +"977210": installDir: THE CHOICE OF SAND launch: - config: oslist: windows executable: freedom.exe type: none -'977230': +"977230": installDir: Mars Power Industries launch: - config: @@ -436626,34 +430461,34 @@ executable: MarsPowerIndustry.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: MarsPowerIndustries.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: MarsPowerIndustries.x86_64 type: default - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" config: oslist: windows executable: game.exe type: config - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" config: oslist: macos executable: MarsPowerIndustry.app type: config - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" config: - osarch: '32' + osarch: "32" oslist: linux executable: MarsPowerIndustries.x86 type: config - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" config: - osarch: '64' + osarch: "64" oslist: linux executable: MarsPowerIndustries.x86_64 type: config @@ -436665,27 +430500,27 @@ russian: Марсэнергосбыт роскошный schinese: 火星电力行业豪华版 spanish: Eléctricas de Marte -'977260': {} -'977270': +"977260": {} +"977270": installDir: RCRacerVR launch: - config: oslist: windows executable: RCRacerVR.exe type: vr -'977290': +"977290": installDir: Thirty Two launch: - executable: ThirtyTwo.exe type: none -'977300': +"977300": installDir: Fenimore Fillmore 3 Skulls of the Toltecs launch: - config: oslist: windows executable: 3 Skulls of the Toltecs.exe type: none -'977310': +"977310": installDir: Sea Birds End of an Age launch: - config: @@ -436696,26 +430531,26 @@ oslist: linux executable: Sea_Birds___End_of_an_Age type: default -'977340': +"977340": installDir: Skinny launch: - - executable: \\windows_content\\Skinny.exe + - executable: "\\\\windows_content\\\\Skinny.exe" type: none -'977380': +"977380": installDir: SPiS launch: - config: oslist: windows executable: SPiS.exe type: none -'977390': +"977390": installDir: Tokyo Warfare Turbo launch: - config: oslist: windows executable: TokyoWarfareTurbo.exe type: none -'977400': +"977400": installDir: Cell to Singularity launch: - config: @@ -436726,7 +430561,7 @@ oslist: macos executable: CellToSingularity.app/Contents/MacOS/CellToSingularity type: default -'977410': +"977410": installDir: The Dealer launch: - config: @@ -436735,51 +430570,51 @@ type: default - config: oslist: macos - executable: The Dealer.app\\Contents\\MacOS\\The Dealer + executable: "The Dealer.app\\\\Contents\\\\MacOS\\\\The Dealer" type: default - config: oslist: linux executable: The Dealer.x86_64 type: default -'977430': +"977430": installDir: Money Maker launch: - config: oslist: windows executable: MMLauncher.exe type: default -'977450': +"977450": installDir: Where Thoughts Go - Resolutions launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Resolutions.exe type: vr -'977460': +"977460": installDir: Steam Prison launch: - executable: BGI.exe type: default - config: oslist: windows - ownsdlc: '1394890' + ownsdlc: "1394890" description: Fin Route executable: Fin Route/SteamPrison.exe type: option1 - config: oslist: macos - ownsdlc: '1394890' + ownsdlc: "1394890" description: Fin Route executable: Fin Route/SteamPrison.app type: option1 - config: oslist: linux - ownsdlc: '1394890' + ownsdlc: "1394890" description: Fin Route executable: Fin Route/SteamPrison.py type: option1 -'977490': +"977490": installDir: Jigsaw Masterpieces launch: - config: @@ -436790,7 +430625,7 @@ oslist: windows executable: JigsawMasterpieces.exe type: default -'977500': +"977500": installDir: 克苏鲁异闻录 launch: - config: @@ -436801,14 +430636,14 @@ oslist: macos executable: Lus.app type: default -'977560': +"977560": installDir: UNBREAKER launch: - config: oslist: windows executable: UNBREAKER.exe type: none -'977570': +"977570": installDir: TheExperimentEscapeRoom launch: - config: @@ -436816,19 +430651,19 @@ description: Play on desktop - No VR executable: The Experiment.exe type: default - - arguments: '-inVR' + - arguments: "-inVR" config: oslist: windows description: Play in SteamVR executable: The Experiment.exe type: vr -'977580': {} -'977590': +"977580": {} +"977590": installDir: unbind launch: - executable: Game.exe type: none -'977630': +"977630": installDir: Shelter 3 launch: - config: @@ -436841,7 +430676,7 @@ description: Launch executable: Shelter 3.app type: none -'977640': +"977640": installDir: Happy toys launch: - arguments: b @@ -436849,74 +430684,72 @@ oslist: windows executable: Happy toys.exe type: default -'977650': +"977650": installDir: DwarfHeim launch: - config: oslist: windows - executable: Client\\DwarfHeim.exe + executable: "Client\\\\DwarfHeim.exe" type: default - config: betakey: development - osarch: '64' + osarch: "64" oslist: windows description: Internal Testing - executable: Development\\DwarfHeim.exe + executable: "Development\\\\DwarfHeim.exe" type: option1 - - arguments: '-devol' + - arguments: "-devol" config: betakey: elite - osarch: '64' + osarch: "64" oslist: windows description: Elite Test - executable: Client\\DwarfHeim.exe + executable: "Client\\\\DwarfHeim.exe" type: option2 - config: betakey: development2 - osarch: '64' + osarch: "64" oslist: windows description: Internal Testing - description_loc: - english: Internal Testing - executable: Development\\DwarfHeim.exe + executable: "Development\\\\DwarfHeim.exe" type: option1 nameLocalized: schinese: 矮人海姆 -'977670': +"977670": installDir: Snow Ash Land launch: - config: oslist: windows executable: snoweater.exe type: default -'977690': +"977690": installDir: Skyworld Brawl launch: - executable: Skyworld Kingdom Brawl.exe type: vr -'977720': +"977720": installDir: Starpoint Gemini 3 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: GameLauncher.exe type: default -'977780': +"977780": installDir: Magnolia launch: - config: oslist: windows executable: magnolia_cocos_proj.exe type: default -'977790': +"977790": installDir: Fairground 2 - The Ride Simulation launch: - config: oslist: windows executable: Fairground2.exe type: default -'977810': +"977810": installDir: THE ENIGMA MACHINE launch: - config: @@ -436927,40 +430760,30 @@ oslist: macos executable: THE ENIGMA MACHINE.app type: default -'977840': +"977840": installDir: EMERGENCY 2 launch: - executable: Emergency2.exe type: default -'977880': +"977880": installDir: Eastward launch: - - arguments: '--gfx dx10' + - arguments: "--gfx dx10" config: - osarch: '64' + osarch: "64" oslist: windows - steamdeck: '0' description: Start in D3D10 Mode - description_loc: - english: Start in D3D10 Mode - japanese: 「D3D10モード」でスタート - schinese: 使用D3D10模式 executable: Eastward.exe type: default - config: oslist: macos executable: Eastward.app/Contents/MacOS/eastward type: default - - arguments: '--gfx gl' + - arguments: "--gfx gl" config: - osarch: '64' + osarch: "64" oslist: windows description: Start in OpenGL mode - description_loc: - english: Start in OpenGL mode - french: ' Mode OpenGL' - japanese: 「OpenGLモード」でスタート - schinese: 用 OPENGL 模式启动 executable: Eastward.exe type: none nameLocalized: @@ -436969,24 +430792,24 @@ sc_schinese: 风来之国 schinese: 风来之国 (Eastward) tchinese: 風來之國 (Eastward) -'977900': +"977900": installDir: Kick The Puppet launch: - executable: Kick The Puppet.exe type: default -'977920': +"977920": installDir: BALSA Model Flight Simulator launch: - executable: balsa.exe type: default - - arguments: '-vrmode oculus' + - arguments: "-vrmode oculus" config: betakey: VR-PREVIEW - ownsdlc: '0' + ownsdlc: "0" description: Balsa executable: balsa.exe type: othervr -'977950': +"977950": installDir: A Dance of Fire and Ice launch: - config: @@ -437000,26 +430823,26 @@ nameLocalized: schinese: 冰与火之舞 A Dance of Fire and Ice tchinese: 冰與火之舞 A Dance of Fire and Ice -'977980': +"977980": installDir: Paintball Chibis launch: - config: oslist: windows executable: PaintballChibis.exe type: default -'978010': +"978010": installDir: Dawnshadow launch: - executable: Dawnshadow.exe type: default -'978020': +"978020": installDir: You are Never Alone launch: - config: oslist: windows executable: YouareNeverAlone.exe type: default -'978040': +"978040": installDir: StarquakeAcademy launch: - config: @@ -437031,7 +430854,7 @@ oslist: macos executable: SQA-Ep1.app type: default -'978110': +"978110": installDir: Mutland launch: - config: @@ -437040,9 +430863,9 @@ type: default - config: oslist: macos - executable: Mutland.app\\Contents\\MacOS\\Mutland + executable: "Mutland.app\\\\Contents\\\\MacOS\\\\Mutland" type: default -'978120': +"978120": installDir: Ballastic launch: - config: @@ -437051,38 +430874,38 @@ executable: Ballastic.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Ballastic type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Ballastic32 type: default - config: oslist: macos - executable: Ballastic.app\\Contents\\MacOS\\Ballastic + executable: "Ballastic.app\\\\Contents\\\\MacOS\\\\Ballastic" type: default -'978180': +"978180": installDir: StaySilent launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: StaySilent.exe type: vr -'978190': +"978190": installDir: Steel Sword Story launch: - executable: player.exe type: none -'978210': +"978210": installDir: TAL Jungle launch: - executable: TALJungle.exe type: none -'978250': +"978250": installDir: Matter launch: - config: @@ -437093,37 +430916,37 @@ oslist: macos executable: /Matter.app type: default -'978270': +"978270": installDir: Floaty Flatmates launch: - config: oslist: windows executable: sad.exe type: vr -'978290': +"978290": installDir: Total Battle launch: - config: oslist: windows executable: TotalBattleSteam.exe type: none -'978300': +"978300": installDir: Saints Row The Third Remastered launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SRTTR.exe type: default -'978340': +"978340": installDir: RGB RUN launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: RGB_RUN.exe type: default -'978380': +"978380": installDir: Spinheads launch: - config: @@ -437132,23 +430955,23 @@ type: none - config: oslist: macos - executable: Spinheads.app\\Contents\\MacOS\\Spinheads + executable: "Spinheads.app\\\\Contents\\\\MacOS\\\\Spinheads" type: none -'978440': +"978440": installDir: Mining Rail launch: - config: oslist: windows executable: Mining Rail.exe type: default -'978450': +"978450": installDir: Data mining 3 launch: - config: oslist: windows executable: Data mining 3.exe type: default -'978460': +"978460": installDir: Emily is Away 3 launch: - config: @@ -437159,19 +430982,19 @@ oslist: macos executable: Emily3.app type: default -'978470': +"978470": installDir: Clicker Glad Valakas launch: - executable: CGV.exe type: none -'978490': +"978490": installDir: Yo My Yo! launch: - config: oslist: windows executable: YMO.exe type: default -'978510': +"978510": installDir: Settlers of Orion launch: - config: @@ -437179,7 +431002,7 @@ oslist: windows executable: SOO.exe type: default -'978520': +"978520": installDir: Legend of Keepers launch: - config: @@ -437195,16 +431018,16 @@ executable: LegendOfKeepers.x86_64 type: default nameLocalized: - japanese: 'Legend of Keepers: Welcome to the Dungeons Company' + japanese: "Legend of Keepers: Welcome to the Dungeons Company" schinese: 魔王大人,击退勇者吧 -'978580': +"978580": installDir: Oops!!! Puzzles!!! launch: - config: oslist: windows executable: nw.exe type: default -'978610': +"978610": installDir: Fallalypse Disconnect launch: - config: @@ -437213,23 +431036,23 @@ type: none - config: oslist: macos - executable: Fallalypse Disconnect.app\\Contents\\MacOS\\Fallalypse Disconnect + executable: "Fallalypse Disconnect.app\\\\Contents\\\\MacOS\\\\Fallalypse Disconnect" type: none - config: - osarch: '32' + osarch: "32" oslist: linux - executable: Fallalypse Disconnect.linux\\Fallalypse Disconnect.x86 + executable: "Fallalypse Disconnect.linux\\\\Fallalypse Disconnect.x86" type: none - config: - osarch: '64' + osarch: "64" oslist: linux - executable: Fallalypse Disconnect.linux\\Fallalypse Disconnect.x86_64 + executable: "Fallalypse Disconnect.linux\\\\Fallalypse Disconnect.x86_64" type: none -'978620': +"978620": installDir: Corma launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: NemosWorld.exe type: default @@ -437237,38 +431060,36 @@ betakey: nextlevel executable: NemosWorld.exe type: default -'978630': +"978630": installDir: Juro Janosik launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch - description_loc: - english: Launch executable: Juro Janosik.exe type: default - config: oslist: macos - executable: Juro Mac Build.app\\Contents\\MacOS\\Juro Mac Build + executable: "Juro Mac Build.app\\\\Contents\\\\MacOS\\\\Juro Mac Build" type: default - config: oslist: linux executable: Juro Janosik Linux.x86_64 type: none - config: - osarch: '32' + osarch: "32" oslist: windows executable: Juro Janosik.exe type: default -'978640': +"978640": installDir: You Have 10 Seconds 3 launch: - config: oslist: windows executable: You Have 10 Seconds 3.exe type: default -'978650': +"978650": installDir: SpaceFrogVR launch: - config: @@ -437276,7 +431097,7 @@ description: The first official SpaceFrogVR release. executable: SpaceFrogVR.exe type: vr -'978660': +"978660": installDir: Parity launch: - config: @@ -437284,7 +431105,7 @@ executable: Parity.exe type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: Parity type: none @@ -437292,60 +431113,58 @@ oslist: macos executable: Parity.app/Contents/MacOS/Parity type: none -'978670': +"978670": installDir: Christmas Clicker Idle Gift Builder launch: - config: oslist: windows executable: ChristmasClicker.exe type: default -'978700': +"978700": installDir: IronsmithMS launch: - - arguments: 'cmd /c \"set OPENSSL_ia32cap=:~0x20000000 && %command%\"' + - arguments: "cmd /c \\\"set OPENSSL_ia32cap=:~0x20000000 && %command%\\\"" config: - osarch: '64' + osarch: "64" oslist: windows executable: IronSmith.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows description: on Intel 10th/11th/12th GEN - description_loc: - english: on Intel 10th/11th/12th GEN executable: IronSmithLauncher.bat type: option1 -'978710': +"978710": installDir: Dinosaurus Life VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: DinosaurusLifeVR.exe type: othervr -'978780': +"978780": installDir: STORY OF SEASONS Friends of Mineral Town launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: STORY OF SEASONS Friends of Mineral Town.exe type: none - config: - osarch: '64' + osarch: "64" oslist: windows executable: SOSFoMTLauncher.exe type: config - config: - osarch: '64' + osarch: "64" oslist: windows description: Compatibility Mode (互換モード) executable: STORY OF SEASONS Friends of Mineral Town_Compatibility.exe type: option1 nameLocalized: japanese: 牧場物語 再会のミネラルタウン -'978790': +"978790": installDir: Frantic Dimension launch: - config: @@ -437355,7 +431174,7 @@ nameLocalized: english: Frantic Dimension koreana: 광란의 차원 (Frantic Dimension) -'978800': +"978800": installDir: Rolling Bird launch: - config: @@ -437365,65 +431184,65 @@ nameLocalized: english: Rolling Bird koreana: 롤링 버드 (Rolling Bird) -'978840': +"978840": installDir: FrozenPixel-Nanobotic launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Nanobotic.exe type: default -'978870': +"978870": installDir: Lilycle Rainbow Stage!!! launch: - executable: LYRSADV.exe type: default -'978910': +"978910": installDir: Necro Defense launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: NecroDefense.exe type: vr -'978920': +"978920": installDir: Wings of Virtus launch: - executable: nw.exe type: default -'978960': +"978960": installDir: Starters Orders 7 Horse Racing launch: - config: oslist: windows executable: so7.exe type: default -'978970': +"978970": installDir: God Hand launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: GodHand.exe type: vr -'978980': +"978980": installDir: Paradigm Blast launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ParadigmParty.exe type: default -'979000': +"979000": installDir: Abrakadaboom launch: - executable: Abrakadaboom.exe type: default -'979060': +"979060": installDir: Bloons Adventure Time TD launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: btdadventuretime.exe type: default @@ -437432,39 +431251,39 @@ description: Launch executable: btdadventuretime.app type: none -'979070': +"979070": installDir: Just Die Already launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: JDGame.exe type: default nameLocalized: schinese: 模拟老大爷 -'979080': +"979080": installDir: Rebel Forces launch: - config: oslist: windows executable: RebelForces.exe type: none -'979090': +"979090": installDir: Stunt Simulator Multiplayer launch: - config: oslist: windows executable: StuntSimulatorMultiplayer.exe type: none -'979100': +"979100": installDir: Experience Colorblindness launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: XPP.exe type: vr -'979110': +"979110": installDir: SpaceHaven launch: - config: @@ -437479,7 +431298,7 @@ oslist: macos executable: spacehaven.app type: default -'979120': +"979120": installDir: Autonauts launch: - config: @@ -437488,91 +431307,91 @@ type: default nameLocalized: schinese: 机器人殖民地 / Autonauts -'979160': +"979160": installDir: Moi Mei launch: - - arguments: '@f+ @INFOOFF' + - arguments: "@f+ @INFOOFF" config: oslist: windows description: Full screen executable: MoiMei.win32_steam.exe type: option1 - - arguments: '@f1920x1080 @z0.9 @INFOOFF' + - arguments: "@f1920x1080 @z0.9 @INFOOFF" config: oslist: windows description: Windowed executable: MoiMei.win32_steam.exe type: option2 -'979170': +"979170": installDir: CARDCORE launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: steampvp.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: steampvp.exe type: default -'979220': +"979220": installDir: Girls and Tests launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" executable: nw.exe type: none -'979260': +"979260": installDir: Gizmo launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: GIZMO_GAME.exe type: none -'979290': +"979290": installDir: Christmas Defence launch: - config: oslist: windows executable: Christmas Defence.exe type: default -'979300': +"979300": installDir: Allied Nations launch: - config: oslist: windows executable: AlliedNations.exe type: none -'979310': +"979310": installDir: Disjunction launch: - executable: Disjunction.exe type: none -'979320': {} -'979330': +"979320": {} +"979330": installDir: Hikari! Clover Rescue launch: - config: oslist: windows executable: HikariCloverRescue.exe type: default -'979350': +"979350": installDir: Sunset Giant launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SunsetGiant.exe type: vr -'979360': +"979360": installDir: Super Racha launch: - config: oslist: windows executable: Super Racha.exe type: none -'979390': +"979390": installDir: Laser Party launch: - config: @@ -437583,23 +431402,23 @@ oslist: macos executable: LaserParty.app/Contents/MacOS/LaserParty type: default -'979400': +"979400": installDir: LastLabyrinth launch: - config: oslist: windows executable: LL_SteamVR.exe type: vr -'979410': {} -'979450': +"979410": {} +"979450": installDir: Halloween Arkanoid 2 launch: - config: oslist: windows - description: '0' + description: "0" executable: Halloween Arkanoid 2.exe type: default -'979480': +"979480": installDir: Born Punk launch: - config: @@ -437608,7 +431427,7 @@ type: default - config: oslist: linux - executable: ./start + executable: "./start" type: default - config: oslist: macos @@ -437616,72 +431435,64 @@ type: default - config: oslist: linux - description: 'For troubleshooting: Launch using ./visplayer' - description_loc: - english: 'For troubleshooting: Launch using ./visplayer' - executable: ./visplayer + description: "For troubleshooting: Launch using ./visplayer" + executable: "./visplayer" type: option2 - config: oslist: linux - description: 'For troubleshooting: Launch using visplayer' - description_loc: - english: 'For troubleshooting: Launch using visplayer' + description: "For troubleshooting: Launch using visplayer" executable: visplayer type: option1 - config: oslist: linux - description: 'For troubleshooting: Launch using start' - description_loc: - english: 'For troubleshooting: Launch using start' + description: "For troubleshooting: Launch using start" executable: start type: option3 - config: oslist: macos - description: 'For troubleshooting: Launch using Visionaire Player' - description_loc: - english: 'For troubleshooting: Launch using Visionaire Player' + description: "For troubleshooting: Launch using Visionaire Player" executable: Born Punk.app/Contents/MacOS/Visionaire Player type: option1 -'979500': - installDir: '3655457' +"979500": + installDir: "3655457" launch: - executable: Snow_Border_Plan.exe type: none -'979510': {} -'979520': +"979510": {} +"979520": installDir: Starblazer launch: - config: oslist: windows executable: Starblazer.exe type: vr -'979530': +"979530": installDir: Endless Maneuver launch: - config: oslist: windows executable: EndlessManeuver.exe type: default -'979550': +"979550": installDir: Evolo.Mine launch: - executable: Evolo.Mine.exe type: default -'979580': +"979580": installDir: The Counterattack OF Sacrifice launch: - config: oslist: windows executable: 祭品的逆襲 The Counterattack OF Sacrifice.exe type: default -'979590': +"979590": installDir: Jumpopitec launch: - config: oslist: windows executable: nw.exe type: default -'979600': +"979600": installDir: Kaori After Story launch: - config: @@ -437694,7 +431505,7 @@ description: Mac Launch executable: Kaori After Story.app type: default -'979620': +"979620": installDir: Atrocity launch: - config: @@ -437705,45 +431516,39 @@ oslist: linux executable: Atrocity.x86_64 type: default -'979640': +"979640": installDir: Cepheus Protocol launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: DirectX 12 Mode - description_loc: - english: DirectX 12 Mode executable: CepheusProtocol.exe type: default - - arguments: '-dx11' + - arguments: "-dx11" config: - osarch: '64' + osarch: "64" oslist: windows description: DirectX 11 Mode - description_loc: - english: DirectX 11 Mode executable: CepheusProtocol.exe type: option1 - config: - osarch: '64' + osarch: "64" oslist: linux description: DirectX 12 Mode - description_loc: - english: DirectX 12 Mode executable: CepheusProtocol.sh type: default -'979680': +"979680": installDir: iys launch: - config: oslist: windows executable: inyourshadow.exe type: default -'979690': +"979690": installDir: The Ascent launch: - - arguments: '-Installed' + - arguments: "-Installed" config: oslist: windows executable: TheAscent.exe @@ -437751,52 +431556,52 @@ nameLocalized: japanese: The Ascent「アセント」 schinese: 上行战场 / The Ascent -'979720': +"979720": installDir: Big Bash Boom launch: - config: oslist: windows executable: Big Bash Boom.exe type: default -'979740': +"979740": installDir: Profundum launch: - config: oslist: windows executable: Profundum.exe type: vr -'979760': +"979760": installDir: PASKA BATTLE STYLE! launch: - executable: PASKABATTLESTYLE!.exe type: none -'979770': {} -'979790': +"979770": {} +"979790": installDir: Change A Little Story launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Change -A Little Story.exe type: default -'979800': +"979800": installDir: Haxity launch: - config: oslist: windows executable: Haxity.exe type: default -'979810': +"979810": installDir: Grave Keeper launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: GraveK.exe type: default -'979830': {} -'979870': {} -'979880': +"979830": {} +"979870": {} +"979880": installDir: Fast Food Fighters launch: - config: @@ -437804,37 +431609,37 @@ description: Launch executable: Fast Food Fighter.exe type: none -'979890': - installDir: Allison's Diary Rebirth +"979890": + installDir: "Allison's Diary Rebirth" launch: - config: oslist: windows executable: AllisonsDiary_Rebirth.exe type: default -'979900': +"979900": installDir: RRRR launch: - - arguments: '@f+ @INFOOFF' + - arguments: "@f+ @INFOOFF" config: oslist: windows description: Full screen executable: RRRR.win32_steam.exe type: option1 - - arguments: '@f1920x1080 @z0.9 @INFOOFF' + - arguments: "@f1920x1080 @z0.9 @INFOOFF" config: oslist: windows description: Windowed executable: RRRR.win32_steam.exe type: option1 -'979910': +"979910": installDir: 3D Pinball Hentai launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Pinball.exe type: default -'979920': +"979920": installDir: Supremacy 1914 launch: - config: @@ -437845,29 +431650,29 @@ oslist: macos executable: Supremacy 1914.app/Contents/MacOS/Supremacy 1914 type: default -'979970': +"979970": installDir: IMAZE.EXE launch: - config: oslist: windows executable: IMAZE.exe type: default -'9800': +"9800": installDir: Death to Spies launch: - config: oslist: windows executable: smersh.exe -'980060': {} -'980090': +"980060": {} +"980090": installDir: Hentai Girl Sets launch: - config: oslist: windows executable: Hentai Girl Sets.exe type: default -'980120': {} -'980160': +"980120": {} +"980160": installDir: UBERCOLD launch: - config: @@ -437875,11 +431680,11 @@ description: Launch UBERCOLD executable: UBERCOLD.exe type: default -'980190': +"980190": installDir: Flaky Bakery launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Flaky Bakery.exe type: default @@ -437888,41 +431693,41 @@ executable: Flaky Bakery.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Flaky Bakery.x86_64 type: default -'980210': +"980210": installDir: HordeCore launch: - config: oslist: windows executable: HordeCore! Launcher.exe type: default -'980220': {} -'980300': +"980220": {} +"980300": installDir: One Finger Death Punch 2 launch: - config: oslist: windows executable: One Finger Death Punch 2.exe type: default -'980310': {} -'980320': +"980310": {} +"980320": installDir: Haunting Hour launch: - config: oslist: windows executable: Base.exe type: vr -'980360': +"980360": installDir: Melody Flight launch: - config: oslist: windows executable: Melody Flight.exe type: default -'980380': +"980380": installDir: HelpTheAlien launch: - config: @@ -437933,7 +431738,7 @@ oslist: windows executable: HelpTheAlien.exe type: none -'980440': +"980440": installDir: Knights Rubbish launch: - config: @@ -437941,17 +431746,17 @@ executable: Knights Rubbish.app/Contents/MacOS/Knights Rubbish type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: Knights Rubbish.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: run.sh type: default -'980470': {} -'980480': +"980470": {} +"980480": installDir: Towertale launch: - config: @@ -437966,45 +431771,45 @@ oslist: macos executable: Towertale.app type: none -'980490': +"980490": installDir: Heaven & Hell launch: - config: oslist: windows executable: HeavenHell.exe type: default -'980520': - installDir: Azurael's Circle Chapter 3 +"980520": + installDir: "Azurael's Circle Chapter 3" launch: - config: oslist: windows executable: Game.exe type: default -'980560': +"980560": installDir: Overcraft launch: - config: oslist: windows executable: Overcraft.exe type: default -'980600': +"980600": installDir: Maze 4D launch: - config: oslist: windows executable: Project4D.exe type: none -'980610': +"980610": installDir: Quaver launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: Quaver.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Quaver type: default @@ -438012,11 +431817,11 @@ oslist: macos executable: Quaver type: default -'980630': +"980630": installDir: Mission Evilguy launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: game_ReleaseSteam.exe type: default @@ -438024,24 +431829,24 @@ oslist: windows executable: configure.exe type: config -'980640': +"980640": installDir: Empire of Ember launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Empire of Ember.exe type: default -'980680': {} -'980690': +"980680": {} +"980690": installDir: Heavy Memories launch: - config: oslist: windows executable: heavy_memories.exe type: default -'980700': {} -'980730': +"980700": {} +"980730": installDir: Underlight launch: - config: @@ -438057,51 +431862,51 @@ - config: oslist: windows description: PTR Underlight Client (See README.txt) - executable: PTR\\underlight-ptr.exe + executable: "PTR\\\\underlight-ptr.exe" type: option2 - workingdir: PTR\\ + workingdir: "PTR\\\\" - config: oslist: windows description: PTR Player Nightmare Client (See README.txt) - executable: PTR\\pmare-ptr.exe + executable: "PTR\\\\pmare-ptr.exe" type: option3 - workingdir: PTR\\ -'980750': - installDir: Santa's Workshop + workingdir: "PTR\\\\" +"980750": + installDir: "Santa's Workshop" launch: - config: oslist: windows executable: xmasHO.exe type: none -'980770': +"980770": installDir: Flying Circus launch: - config: oslist: windows executable: FlyingCircus.exe type: none -'980800': +"980800": installDir: BEAK_SQUADRON launch: - config: oslist: windows executable: BeakSquadron.exe type: default -'980830': +"980830": installDir: Death Mark launch: - config: oslist: windows executable: Death Mark.exe type: none -'980850': +"980850": installDir: Pixel Battle Royale launch: - config: oslist: windows executable: PixelBattleRoyale.exe type: none -'980880': +"980880": installDir: Twinfold launch: - config: @@ -438112,7 +431917,7 @@ oslist: macos executable: Twinfold.app type: none -'980940': +"980940": installDir: My Little Blacksmith Shop launch: - config: @@ -438120,7 +431925,7 @@ description: Default Branch executable: ShopSim.exe type: default -'980950': +"980950": installDir: Crome launch: - config: @@ -438130,9 +431935,9 @@ type: none - config: oslist: macos - executable: Crome.app\\Contents\\MacOS\\Crome + executable: "Crome.app\\\\Contents\\\\MacOS\\\\Crome" type: none -'98100': +"98100": installDir: TRAUMA launch: - config: @@ -438141,15 +431946,15 @@ - config: oslist: macos executable: trauma.app -'981010': +"981010": installDir: UNIDENTIFIED launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: UNIDENTIFIED.exe type: default -'981020': +"981020": installDir: Clea launch: - config: @@ -438164,126 +431969,126 @@ oslist: linux executable: Clea.x86_64 type: default -'981040': +"981040": installDir: Comit in Krater Returns launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Comit in Krater Returns.exe type: default -'981050': - installDir: Comit in Cosmo Knight's Revenge +"981050": + installDir: "Comit in Cosmo Knight's Revenge" launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Comit in Cosmo Knights Revenge.exe type: default -'981080': +"981080": installDir: Burst Drive launch: - config: oslist: windows executable: Burst Drive.exe type: default -'981100': {} -'981130': +"981100": {} +"981130": installDir: Lucky Skiing launch: - config: oslist: windows executable: Snow.exe type: vr -'981140': +"981140": installDir: Chaos Maker launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Chaos Maker.exe type: default -'981160': - installDir: Woman's body +"981160": + installDir: "Woman's body" launch: - config: oslist: windows - executable: Woman's body.exe + executable: "Woman's body.exe" type: default -'981180': {} -'981250': +"981180": {} +"981250": installDir: C.Q.C. - Close Quaters Combat launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: CQC.exe type: default -'981260': +"981260": installDir: Love In Drawing launch: - executable: Love In Drawing.exe type: none -'981270': - installDir: Runa's School Story +"981270": + installDir: "Runa's School Story" launch: - config: oslist: windows - executable: Runa's School Story.exe + executable: "Runa's School Story.exe" type: default - config: oslist: macos - executable: Contents\\MacOS\\Runa's School Story + executable: "Contents\\\\MacOS\\\\Runa's School Story" type: default - config: oslist: linux - executable: Runa's School Story.x86 + executable: "Runa's School Story.x86" type: default -'981280': - installDir: Reksarych's Sudoku +"981280": + installDir: "Reksarych's Sudoku" launch: - executable: Game.exe type: default -'981290': +"981290": installDir: CGENcore launch: - config: oslist: windows executable: CGENcore.exe type: none -'981300': +"981300": installDir: PUSSY launch: - executable: game.exe type: none -'981310': +"981310": installDir: Ishmael launch: - config: oslist: windows executable: ishmael.exe type: default -'981320': +"981320": installDir: Whale Island launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: WhaleIsland.exe type: vr - config: - osarch: '64' + osarch: "64" oslist: windows executable: WhaleIsland.exe type: othervr -'981420': +"981420": installDir: Game Soup launch: - config: oslist: windows executable: GameSoup.exe type: default -'981430': +"981430": installDir: GordianQuest launch: - config: @@ -438292,49 +432097,49 @@ type: default nameLocalized: schinese: 高殿战记 -'981440': +"981440": installDir: The Great Emu War Of 1932 launch: - config: oslist: windows executable: TheWarOf1932.exe type: default -'981450': +"981450": installDir: GeminiArms launch: - config: oslist: windows executable: gemini_arms.exe type: default -'981470': {} -'981490': {} -'981500': +"981470": {} +"981490": {} +"981500": installDir: Market Dominion launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Market Dominion.exe type: default -'981540': +"981540": installDir: Stellar Sphere launch: - config: oslist: macos - executable: stellarsphere.app\\Contents\\MacOS\\stellarsphere + executable: "stellarsphere.app\\\\Contents\\\\MacOS\\\\stellarsphere" type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: stellar sphere.exe type: default -'981550': +"981550": installDir: GACHIMUCHI MANLY PUZZLE launch: - executable: GACHIMUCHI_III_MANLY_PUZZLE.exe type: none -'981560': {} -'981620': +"981560": {} +"981620": installDir: Hexa launch: - config: @@ -438349,164 +432154,164 @@ oslist: linux executable: Hexa.x86_64 type: none -'981630': +"981630": installDir: Guntastic launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: FolliesGame.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows - executable: Guntastic\\Binaries\\Win32\\FolliesGame-Win32-Shipping.exe + executable: "Guntastic\\\\Binaries\\\\Win32\\\\FolliesGame-Win32-Shipping.exe" type: default - config: oslist: macos - executable: Guntastic.app\\Contents\\MacOS\\Guntastic + executable: "Guntastic.app\\\\Contents\\\\MacOS\\\\Guntastic" type: default -'981660': +"981660": installDir: The Detective Chapters Part One launch: - config: oslist: windows executable: The_Detective_Chapters_v1.6.2.exe type: default -'981670': +"981670": installDir: Agent 9 launch: - executable: Agent9.exe type: default -'981690': +"981690": installDir: Gun Chain launch: - config: oslist: windows executable: Gun Chain.exe type: default - - arguments: '-ssgvr' + - arguments: "-ssgvr" executable: Gun Chain.exe type: vr -'981710': +"981710": installDir: Just Roll With It launch: - config: oslist: windows executable: PUZZ BALL.exe type: default -'981720': {} -'981750': +"981720": {} +"981750": installDir: Crystar launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: CRYSTAR.exe type: default -'981770': +"981770": installDir: Senran Kagura Reflexions launch: - executable: SKReflexions.exe type: none nameLocalized: japanese: シノビリフレ -SENRAN KAGURA- -'981790': +"981790": installDir: Halloween Girl launch: - executable: HalloweenGirl.exe type: none -'981800': {} -'981830': +"981800": {} +"981830": installDir: GIGABUSTER launch: - config: oslist: windows executable: GIGABUSTER.exe -'981850': +"981850": installDir: BATALJ launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: BATALJ.exe type: none -'981870': {} -'981880': +"981870": {} +"981880": installDir: GrowRilla launch: - executable: GrowRilla.exe type: vr - - arguments: '-vrmode oculus' + - arguments: "-vrmode oculus" config: - osarch: '64' + osarch: "64" oslist: windows executable: GrowRilla.exe type: othervr -'981890': +"981890": installDir: Tokyo2020 launch: - config: betakey: musashi00001 - osarch: '64' + osarch: "64" oslist: windows executable: musashi.exe type: default nameLocalized: brazilian: Jogos Olímpicos de Tokyo 2020 – O jogo oficial™ - french: "Jeux Olympiques de Tokyo\_2020 – le jeu vidéo officiel™" - german: "Olympische Spiele Tokyo 2020\_– Das offizielle Videospiel™" + french: Jeux Olympiques de Tokyo 2020 – le jeu vidéo officiel™ + german: Olympische Spiele Tokyo 2020 – Das offizielle Videospiel™ italian: Giochi olimpici di Tokyo 2020 – Il videogioco ufficiale™ japanese: 東京2020オリンピック The Official Video Game koreana: 2020 도쿄 올림픽 - The Official Video Game - latam: 'Juegos Olímpicos de Tokyo 2020: El videojuego oficial™' - polish: 'Igrzyska Olimpijskie w Tokyo 2020: Oficjalna gra wideo™' + latam: "Juegos Olímpicos de Tokyo 2020: El videojuego oficial™" + polish: "Igrzyska Olimpijskie w Tokyo 2020: Oficjalna gra wideo™" russian: Олимпийские игры Tokyo 2020 – Официальная игра™ schinese: 2020东京奥运 官方授权游戏 - spanish: 'Juegos Olímpicos de Tokyo 2020: El videojuego oficial™' + spanish: "Juegos Olímpicos de Tokyo 2020: El videojuego oficial™" tchinese: 2020東京奧運 The Official Video Game -'981900': +"981900": installDir: KingsCross launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: steam.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: steam.exe type: default -'981910': +"981910": installDir: Hentai Girl in Space launch: - config: oslist: windows executable: nw.exe type: default -'981960': +"981960": installDir: Horror Girl Puzzle launch: - config: oslist: windows executable: Horror_Girl_Puzzle.exe type: default -'981980': +"981980": installDir: Panda Hero launch: - config: oslist: windows executable: Panda Hero.exe type: default -'981990': +"981990": installDir: DontShootRabbit launch: - config: oslist: windows executable: DontShootRabbit.exe type: default -'98200': +"98200": installDir: Frozen Synapse launch: - config: @@ -438518,50 +432323,50 @@ - config: oslist: linux executable: FS.sh -'982010': +"982010": installDir: ZDF History 360° – Tempelhof launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ZDF History 360° – Tempelhof.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: ZDF History 360° – Tempelhof.exe type: vr -'982020': +"982020": installDir: Eurobi Racing launch: - config: oslist: windows executable: Eurobi Racing.exe type: default -'982030': {} -'982040': - installDir: 'Don''t Die, Minerva!' +"982030": {} +"982040": + installDir: "Don't Die, Minerva!" launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: DDM.exe type: default -'982050': +"982050": installDir: Caracoland launch: - config: oslist: windows executable: caracoland.exe type: default -'982060': +"982060": installDir: Undholm launch: - config: oslist: windows executable: Undholm.exe type: default -'982090': +"982090": installDir: Noms the Fish launch: - config: @@ -438572,7 +432377,7 @@ oslist: linux executable: runner type: none -'982100': +"982100": installDir: Samozbor Rebellion launch: - config: @@ -438580,13 +432385,13 @@ executable: szr.exe type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: szr type: none nameLocalized: - russian: 'Самосбор: Восстание' -'982120': + russian: "Самосбор: Восстание" +"982120": installDir: Giant Celebration launch: - config: @@ -438594,21 +432399,21 @@ description: SteamVR executable: Giant Celebration.exe type: vr -'982150': +"982150": installDir: Hentai Secrets launch: - config: oslist: windows executable: Hentai Secrets.exe type: default -'982180': +"982180": installDir: Slave Ghost launch: - config: oslist: windows executable: SG.exe type: default -'982220': +"982220": installDir: Globesweeper launch: - config: @@ -438620,16 +432425,16 @@ executable: Globesweeper.app type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Globesweeper.x86_64 type: default - - arguments: '-show-screen-selector' + - arguments: "-show-screen-selector" config: oslist: macos executable: Globesweeper.app type: config -'982240': +"982240": installDir: Lendas Episódio I A Lenda Do Corpo Seco launch: - config: @@ -438639,15 +432444,15 @@ nameLocalized: brazilian: Lendas Urbanas - O Corpo Seco schinese: 都市传说:枯干的身体 -'982270': +"982270": installDir: DealersLife launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: Dealer's Life.exe + executable: "Dealer's Life.exe" type: default -'982290': +"982290": installDir: Airborne Kingdom launch: - config: @@ -438656,22 +432461,22 @@ - config: oslist: macos executable: AirborneKingdom.app -'982320': +"982320": installDir: Battle of the Boros launch: - config: oslist: windows executable: Game.exe type: none -'982370': {} -'982380': +"982370": {} +"982380": installDir: GodsandKings launch: - config: oslist: windows executable: CardWar.exe type: default -'982390': +"982390": installDir: Boom Boom Bovine launch: - config: @@ -438682,7 +432487,7 @@ oslist: macos executable: Contents/MacOS/Boom Boom Bovine type: default -'982400': +"982400": installDir: Inganock of The Rage Fire Fullvoice ReBORN launch: - config: @@ -438695,16 +432500,16 @@ description: HD (1280 × 960) executable: Inganock_HD.exe type: option2 -'982410': {} -'982420': {} -'982440': +"982410": {} +"982420": {} +"982440": installDir: Slightly Heroes launch: - config: oslist: windows executable: Slightly Heroes.exe type: vr -'982450': +"982450": installDir: Truth Disorder III - Gemini launch: - config: @@ -438719,97 +432524,97 @@ oslist: macos executable: TruthDisorderIIIGemini.app type: none -'982480': +"982480": installDir: Supreme Casino City launch: - config: oslist: windows executable: supreme_casino_city.exe type: default -'982510': +"982510": installDir: Dungeon Hunter 5 launch: - config: oslist: windows executable: DH5.exe type: none -'982540': +"982540": installDir: Hyss launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Hyss.exe type: default -'982670': +"982670": installDir: Clan N launch: - config: oslist: windows executable: ClanN.exe type: default -'982680': {} -'982690': +"982680": {} +"982690": installDir: DATAFLOW launch: - config: oslist: windows executable: Dataflow.exe type: default -'982700': +"982700": installDir: Space Battle VR launch: - config: oslist: windows executable: SpaceBattleVR.exe type: vr -'982710': +"982710": installDir: Cop Academy launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: CopAcademy.exe type: vr -'982720': +"982720": installDir: Paradise Lost launch: - config: oslist: windows executable: ParadiseLost.exe type: default -'982750': +"982750": installDir: Puzzles for smart Underwater Kingdom launch: - config: oslist: windows executable: Puzzles for smart - Underwater Kingdom.exe type: default -'982770': +"982770": installDir: Hir Corruption launch: - config: oslist: windows - executable: HirCorruption\\HirCorruption.exe + executable: "HirCorruption\\\\HirCorruption.exe" type: default - config: oslist: linux - executable: HirCorruption\\HirCorruption.sh + executable: "HirCorruption\\\\HirCorruption.sh" type: default - config: oslist: macos - executable: HirCorruption\\HirCorruption.app + executable: "HirCorruption\\\\HirCorruption.app" type: default nameLocalized: french: Sa Corruption -'982800': +"982800": installDir: Moon Tycoon launch: - config: oslist: windows executable: MoonTycoon.exe type: none -'982840': +"982840": installDir: Bomber Barn launch: - config: @@ -438827,30 +432632,30 @@ executable: Contents/MacOS/Bomber Barn type: default workingdir: Contents/MacOS -'982850': +"982850": installDir: Tess Elated launch: - config: oslist: windows executable: TessElated.exe type: none -'982860': {} -'982880': {} -'982890': {} -'982900': {} -'982990': +"982860": {} +"982880": {} +"982890": {} +"982900": {} +"982990": installDir: Muzzleloaded launch: - config: oslist: windows executable: nw.exe type: default -'98300': +"98300": installDir: toy soldiers launch: - description: Toy Soldiers Steamworks executable: GameSW.exe -'983040': +"983040": installDir: Koboomballs launch: - config: @@ -438858,17 +432663,17 @@ executable: Koboomballs.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Koboomballs.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Koboomballs.x86_64 type: default -'983060': {} -'983070': +"983060": {} +"983070": installDir: Hyperborea launch: - config: @@ -438879,23 +432684,23 @@ oslist: macos executable: Game.app type: default -'983100': +"983100": installDir: WOGS launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: Release\\WorldSeed.exe + executable: "Release\\\\WorldSeed.exe" type: default -'983120': +"983120": installDir: TendyTrainer launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TendyTrainer.exe type: othervr -'983140': +"983140": installDir: Monster Jaunt launch: - config: @@ -438906,17 +432711,17 @@ oslist: macos executable: MonsterJaunt.app type: default -'983150': +"983150": installDir: sakuranomori2 launch: - executable: sakura2.exe type: default nameLocalized: - english: ' Sakura no Mori † Dreamers 2' + english: " Sakura no Mori † Dreamers 2" japanese: サクラノモリ†ドリーマーズ2 schinese: 樱之杜†净梦者 2 tchinese: 櫻之杜†凈夢者 2 -'983160': +"983160": installDir: Junk on Wheels launch: - config: @@ -438929,52 +432734,52 @@ executable: JoW.app/Contents/MacOS/JoW type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: JoW type: default - - arguments: '-force-d3d11' + - arguments: "-force-d3d11" config: oslist: windows description: DirectX 11 (No Ray Tracing) executable: JoW.exe type: option2 -'983170': +"983170": installDir: Infinite Chili Sauce launch: - config: oslist: windows executable: Infinite Chili Sauce.exe type: default -'983190': +"983190": installDir: GANUSH launch: - config: oslist: windows executable: GANUSH.exe type: default -'983200': {} -'983230': {} -'983260': +"983200": {} +"983230": {} +"983260": installDir: Pixel Ship Shooter launch: - - executable: PixelShipShooter\\WindowsNoEditor\\PixelShipShooter.exe + - executable: "PixelShipShooter\\\\WindowsNoEditor\\\\PixelShipShooter.exe" type: default -'983280': +"983280": installDir: Chocolate makes you happy New Year launch: - config: oslist: windows executable: Chocolate makes you happy New Year.exe type: default -'983290': +"983290": installDir: Lightstep Chronicles launch: - config: oslist: windows executable: Lightstep Chronicles.exe type: none -'983320': +"983320": installDir: Morph Pong launch: - config: @@ -438989,96 +432794,96 @@ oslist: macos executable: Moprh Pong.app type: default -'983330': +"983330": installDir: Colourful Maze launch: - config: oslist: windows executable: Colourful Maze.exe type: none -'983340': +"983340": installDir: Waifu Hunter - Secret of Pirates launch: - config: oslist: windows executable: Waifu Hunter - Secret of Pirates.exe type: default -'983350': +"983350": installDir: Sea Salt launch: - config: oslist: windows executable: SeaSalt.exe type: default -'983380': {} -'983390': {} -'983520': +"983380": {} +"983390": {} +"983520": installDir: Bizango Blast launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Bizango Blast DirectX 11 executable: BizangoBlast.exe type: default - - arguments: '-DX12' + - arguments: "-DX12" config: - osarch: '64' + osarch: "64" oslist: windows - description: 'Bizango Blast DirectX 12 ' + description: "Bizango Blast DirectX 12 " executable: BizangoBlast.exe type: option1 - - arguments: '-vulkan' + - arguments: "-vulkan" config: - osarch: '64' + osarch: "64" oslist: windows description: Bizango Blast Vulkan executable: BizangoBlast.exe type: option2 - config: - osarch: '64' + osarch: "64" oslist: windows description: Bizango Blast VR executable: BizangoBlastvr.exe type: vr -'983540': {} -'983570': {} -'983590': +"983540": {} +"983570": {} +"983590": installDir: Tank Blazers launch: - config: oslist: windows executable: TankBlazers.exe type: default -'983610': +"983610": installDir: Burning Out launch: - executable: Burning Out.exe type: none -'983640': +"983640": installDir: Theseus Journey to Athens launch: - config: oslist: windows executable: Theseus.exe type: default -'983650': +"983650": installDir: Jumper Tree launch: - config: oslist: windows executable: JT Remastered.exe type: default -'983670': +"983670": installDir: Pangeon launch: - config: oslist: windows executable: Pangeon.exe type: none -'983680': {} -'983710': {} -'983760': +"983680": {} +"983710": {} +"983760": installDir: Chrono Ghost launch: - config: @@ -439086,31 +432891,31 @@ description: Launch executable: Chrono Ghost.exe type: default -'983790': +"983790": installDir: Arcane Domains launch: - config: oslist: windows executable: ArcaneDomains.exe type: default -'983830': +"983830": installDir: Rogue launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Rogue.exe type: default -'983840': +"983840": installDir: HUNTING SIMULATOR VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: HSVR.exe type: vr -'983850': {} -'983880': +"983850": {} +"983880": installDir: Strategy Game 1 launch: - config: @@ -439121,7 +432926,7 @@ oslist: macos executable: Arctic Fleet.app/Contents/MacOS/Arctic Fleet type: default -'983890': +"983890": installDir: Digging Dragon launch: - config: @@ -439130,9 +432935,9 @@ type: none - config: oslist: macos - executable: Digging Dragon.app\\Contents\\MacOS\\Digging Dragon + executable: "Digging Dragon.app\\\\Contents\\\\MacOS\\\\Digging Dragon" type: none -'983900': +"983900": installDir: Mojack - Quest of Jackal Puzzle game launch: - config: @@ -439141,24 +432946,24 @@ type: default - config: oslist: macos - executable: Mojack - Quest Of Jackal.app\\Contents\\MacOS\\Mojack - Quest Of Jackal + executable: "Mojack - Quest Of Jackal.app\\\\Contents\\\\MacOS\\\\Mojack - Quest Of Jackal" type: default -'983920': {} -'983970': +"983920": {} +"983970": installDir: Haven launch: - config: oslist: windows executable: Haven.exe type: default -'983980': +"983980": installDir: Euclidean Skies launch: - config: oslist: windows executable: EuclideanSkies.exe type: default -'983990': +"983990": installDir: Steel Alcimus launch: - config: @@ -439168,11 +432973,11 @@ nameLocalized: english: Steel Alcimus koreana: 강철파리매 (Steel Alcimus) -'98400': +"98400": installDir: HardReset launch: - executable: hardreset.exe -'984020': +"984020": installDir: Super Ninja Meow Cat launch: - config: @@ -439183,7 +432988,7 @@ oslist: windows executable: Super Ninja Meow Cat.exe type: default -'984030': +"984030": installDir: Killer Clowns launch: - config: @@ -439191,28 +432996,28 @@ description: Kill some clowns executable: Killer Clowns.exe type: default -'984070': +"984070": installDir: Chaos Theory launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Chaos Theory.exe type: default -'984080': +"984080": installDir: Christmas Carol launch: - executable: ChristmasCarol.exe type: default -'984140': {} -'984150': +"984140": {} +"984150": installDir: Powerless launch: - config: oslist: windows executable: Powerless.exe type: default -'984170': +"984170": installDir: The Seven Chambers launch: - config: @@ -439223,18 +433028,18 @@ oslist: macos executable: sevenchambers.app type: default -'984220': +"984220": installDir: Alien911 launch: - config: oslist: windows executable: Alien911.exe type: default -'984230': +"984230": installDir: X Archetype launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: XArchetype.exe type: default @@ -439242,35 +433047,35 @@ oslist: linux executable: X_Archetype type: default -'984240': +"984240": installDir: School Grounds launch: - config: oslist: windows executable: School Grounds.exe type: default -'984250': +"984250": installDir: Red Tractor Tycoon launch: - config: oslist: windows executable: RedTractorTycoon.exe type: none -'984260': +"984260": installDir: Tora launch: - config: oslist: windows executable: Tora.exe type: none -'984300': +"984300": installDir: Robozarro launch: - config: oslist: windows executable: Robozarro.exe type: default -'984360': +"984360": installDir: Pocoman launch: - config: @@ -439285,7 +433090,7 @@ oslist: macos executable: PocoMan!.app type: default -'984450': +"984450": installDir: Super Crome Bullet Purgatory launch: - config: @@ -439295,30 +433100,30 @@ type: none - config: oslist: macos - executable: SuperCrome.app\\Contents\\MacOS\\SuperCrome + executable: "SuperCrome.app\\\\Contents\\\\MacOS\\\\SuperCrome" type: none -'984470': +"984470": installDir: Big Dipper launch: - config: oslist: windows - executable: WIN\\Big Dipper.exe + executable: "WIN\\\\Big Dipper.exe" type: default - config: oslist: macos executable: MAC/BigDipper.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: LINUX/BigDipper.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: LINUX/BigDipper.x86_64 type: default -'984510': +"984510": installDir: Adventure Boy Cheapskate DX launch: - config: @@ -439327,9 +433132,9 @@ type: default - config: oslist: macos - executable: Adventure Boy Cheapskate DX.app\\Contents\\MacOS\\Flash Player + executable: "Adventure Boy Cheapskate DX.app\\\\Contents\\\\MacOS\\\\Flash Player" type: default -'984520': +"984520": installDir: Weightless launch: - config: @@ -439340,104 +433145,104 @@ oslist: macos executable: Weightless.app type: none -'984540': +"984540": installDir: Hostile User Interface launch: - config: oslist: windows executable: HUI.exe type: none -'984560': +"984560": installDir: HEARTBEAT launch: - - arguments: '--in-process-gpu --user-data-dir=heartbeat/' + - arguments: "--in-process-gpu --user-data-dir=heartbeat/" config: oslist: windows executable: nw.exe type: none - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: macos executable: Game.app type: none - - arguments: '--in-process-gpu --user-data-dir=heartbeat/' + - arguments: "--in-process-gpu --user-data-dir=heartbeat/" config: oslist: linux executable: nw type: none -'984570': +"984570": installDir: Chess Sphere launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Chess Sphere.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: ChessSphere.x86_64 type: default -'984580': +"984580": installDir: Stone In Galaxy launch: - executable: nw.exe type: default -'984590': +"984590": installDir: Coloring Book launch: - executable: nw.exe type: default -'984610': +"984610": installDir: MechMercCompany launch: - config: oslist: windows executable: MechMercCompany.exe type: default -'984680': +"984680": installDir: Interstellar Space Genesis launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: isg.exe type: default - config: oslist: macos - executable: Contents\\MacOS\\1.0.7 mac + executable: "Contents\\\\MacOS\\\\1.0.7 mac" type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: isg.x86_64 type: default -'984690': +"984690": installDir: Otter of My Life launch: - config: oslist: windows - executable: OOML\\OOML.exe + executable: "OOML\\\\OOML.exe" type: default -'984720': +"984720": installDir: Hentai Summer launch: - config: oslist: windows executable: Hentai Summer.exe type: default -'984730': +"984730": installDir: Battles For Spain launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: 64Bits executable: 64Bits/Bfs.exe type: default workingdir: 64Bits - config: - osarch: '32' + osarch: "32" oslist: windows description: 32Bits executable: 32Bits/Bfs.exe @@ -439448,25 +433253,25 @@ description: MAC OSX executable: Bfs.app type: default -'984750': {} -'984780': +"984750": {} +"984780": installDir: MotoGP™19 launch: - executable: motogp19.exe type: none -'984800': +"984800": installDir: Automachef launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Automachef.exe type: default -'984810': +"984810": installDir: Nightmare Trails launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: NightmareTrails.exe type: default @@ -439475,33 +433280,33 @@ executable: NightmareTrails.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: NightmareTrails.exe type: default -'984820': +"984820": installDir: Counter Fight 3 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: CounterFight3.exe type: vr -'984830': +"984830": installDir: Magician of Fire launch: - config: oslist: windows executable: Magician of Fire.exe type: default -'984870': +"984870": installDir: Tecroroid Assault launch: - config: oslist: windows executable: Tecroroid Assault.exe type: default -'984880': +"984880": installDir: Pilgrimage launch: - config: @@ -439509,51 +433314,51 @@ executable: Pilgrimage/pilgrimage.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Pilgrimage/pilgrimage.x86_64 type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Pilgrimage/pilgrimage.x86 type: default - config: oslist: macos - executable: Pilgrimage.app\\Contents\\MacOS\\Pilgrimage + executable: "Pilgrimage.app\\\\Contents\\\\MacOS\\\\Pilgrimage" type: default -'984910': +"984910": installDir: Rocket Golf launch: - config: - osarch: '32' + osarch: "32" oslist: windows executable: Rocket Golf PC 32bit.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows executable: Rocket Golf PC 64bit.exe type: default - config: oslist: macos - executable: Contents\\MacOS\\Rocket Golf Mac 32bit + executable: "Contents\\\\MacOS\\\\Rocket Golf Mac 32bit" type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Rocket Golf Linux 32bit.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Rocket Golf Linux 64bit.x86_64 type: default - config: oslist: macos - executable: Contents\\MacOS\\Rocket Golf Mac 64bit + executable: "Contents\\\\MacOS\\\\Rocket Golf Mac 64bit" type: default -'984930': +"984930": installDir: The Black Widow launch: - config: @@ -439565,8 +433370,8 @@ oslist: windows executable: The Black Widow.exe type: default -'984980': {} -'984990': +"984980": {} +"984990": installDir: AlienJellyFoodForThought launch: - config: @@ -439577,26 +433382,26 @@ oslist: windows executable: AlienJelly.exe type: default -'9850': +"9850": installDir: Codename Panzers Cold War launch: - config: oslist: windows - executable: Home\\Game\\CPCW.exe + executable: "Home\\\\Game\\\\CPCW.exe" type: default - workingdir: Home\\Game - - arguments: '-windowed' + workingdir: "Home\\\\Game" + - arguments: "-windowed" config: oslist: windows description: Launch Codename Panzers Cold War Windowed - executable: Home\\Game\\CPCW.exe + executable: "Home\\\\Game\\\\CPCW.exe" type: none - workingdir: Home\\Game -'98500': + workingdir: "Home\\\\Game" +"98500": installDir: Naval Warfare launch: - executable: naval warfare.exe -'985000': +"985000": installDir: Potion Paws launch: - config: @@ -439607,38 +433412,38 @@ oslist: macos executable: PotionPaws.app type: default -'985040': +"985040": installDir: NPCs launch: - - arguments: '-d3d11' + - arguments: "-d3d11" config: - osarch: '64' + osarch: "64" oslist: windows description: NPCs Directx 11 (Standard) executable: NPC_Attack.exe type: option1 - - arguments: '-d3d10' + - arguments: "-d3d10" config: - osarch: '64' + osarch: "64" oslist: windows description: NPCs Directx 10 (Legacy) executable: NPC_Attack.exe type: option2 - - arguments: '-d3d12' + - arguments: "-d3d12" config: - osarch: '64' + osarch: "64" oslist: windows description: NPCs Directx 12 executable: NPC_Attack.exe type: option3 -'985070': +"985070": installDir: Darkheart Flight of the Harpies launch: - config: oslist: windows executable: Darkheart.exe type: default -'985080': +"985080": installDir: 食用系少女 Food Girls launch: - config: @@ -439649,16 +433454,16 @@ oslist: macos executable: Eatery.app type: none -'98510': +"98510": installDir: STORM - Frontline Nation launch: - executable: STORM.exe -'985150': {} -'985240': +"985150": {} +"985240": installDir: Woodfel launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Woodfel.exe type: default @@ -439666,23 +433471,23 @@ oslist: macos executable: Woodfel.app type: default -'985260': +"985260": installDir: The Morrigan launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TheMorrigan.exe type: vr -'985280': +"985280": installDir: The Trials of Olympus launch: - config: oslist: windows executable: TheTrialsOfOlympus.exe type: default -'985330': {} -'985400': +"985330": {} +"985400": installDir: Marle The Labyrinth of the Black Sea launch: - config: @@ -439693,14 +433498,14 @@ japanese: マーレと黒き海の迷宮 schinese: 玛蕾与黑海迷宫 tchinese: 瑪蕾與黑海迷宮 -'985420': +"985420": installDir: Esc From Planet launch: - config: oslist: windows executable: esc_fp.exe type: none -'985430': +"985430": installDir: Terrible Laboratory launch: - config: @@ -439711,52 +433516,52 @@ japanese: てりぶるラボラトリー schinese: 灾难实验室 tchinese: 災難實驗室 -'985440': {} -'985500': +"985440": {} +"985500": installDir: EF Universe Reclaiming the World launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Reclaiming the World.exe type: default -'985510': +"985510": installDir: Necken launch: - config: oslist: windows executable: Necken.exe type: none -'985530': +"985530": installDir: Hunter launch: - executable: Hunter.exe type: none -'985540': +"985540": installDir: Shaverma Ravshan Edition launch: - executable: Shaverma.exe type: none -'985560': +"985560": installDir: Magic Mouse launch: - config: oslist: windows executable: Magic Mouse.exe type: none -'985580': +"985580": installDir: Ultra Pig launch: - executable: UltraPig.exe type: none -'985590': +"985590": installDir: Necrolepsy launch: - config: oslist: windows executable: Necrolepsy.exe type: default -'985600': +"985600": installDir: The Last Aura launch: - config: @@ -439771,7 +433576,7 @@ oslist: linux executable: The Last Aura.x86_64 type: default -'985620': +"985620": installDir: Space Captain McCallery - Episode 2 Pilgrims in Purple Moss launch: - config: @@ -439782,26 +433587,26 @@ oslist: macos executable: PurpleMoss.app type: none -'985640': +"985640": installDir: AmandasStickerBook launch: - config: oslist: windows executable: AmandasStickerBook.exe type: default -'985650': +"985650": installDir: Olaguna Chronicles 命运启示录-阿尔巴雷克战纪- launch: - executable: game.exe type: none nameLocalized: english: Olaguna Chronicles -'985660': +"985660": installDir: Luna and Cynthia launch: - executable: Game.exe type: none -'985690': +"985690": installDir: Fall In Love - My Billionaire Boss launch: - config: @@ -439810,24 +433615,24 @@ type: none - config: oslist: macos - executable: Contents\\MacOS\\mbb + executable: "Contents\\\\MacOS\\\\mbb" type: none -'985710': +"985710": installDir: Wall Street Tycoon launch: - config: oslist: windows executable: WallStreetTycoon.exe type: default -'985720': +"985720": installDir: RUINS Survival launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: RuinsSurvival.exe type: default -'985740': +"985740": installDir: CohabitationGuide launch: - config: @@ -439838,25 +433643,25 @@ oslist: macos executable: TJZN.app/Contents/MacOS/TJZN type: none -'985760': +"985760": installDir: 3DCustomLadyMaker launch: - config: oslist: windows executable: 3DCustomLadyMaker.exe type: none -'985770': +"985770": installDir: Artillery Globe launch: - config: oslist: windows - executable: ArtilleryGlobe\\ArtilleryGlobe.exe + executable: "ArtilleryGlobe\\\\ArtilleryGlobe.exe" type: default - config: oslist: macos - executable: ArtilleryGlobe.app\\Contents\\MacOS\\ArtilleryGlobe + executable: "ArtilleryGlobe.app\\\\Contents\\\\MacOS\\\\ArtilleryGlobe" type: default -'985780': +"985780": installDir: Jack Axe launch: - config: @@ -439865,71 +433670,65 @@ type: default nameLocalized: schinese: 斧女侠小婕 -'985800': +"985800": installDir: BATTLLOON launch: - config: oslist: windows executable: BATTLLOON.exe type: none -'985820': {} -'985830': +"985820": {} +"985830": installDir: SUCCUBUS launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Succubus.exe type: default - - arguments: '-dx12' + - arguments: "-dx12" config: betakey: nightly - osarch: '64' + osarch: "64" oslist: windows description: DirectX 12 - description_loc: - english: DirectX 12 executable: Succubus.exe type: none - config: - ownsdlc: '1670520' + ownsdlc: "1670520" description: Artbook - description_loc: - english: Artbook executable: SUCCUBUS ARTBOOK_1-10-2021.pdf - config: - ownsdlc: '1670521' + ownsdlc: "1670521" description: Comic book - description_loc: - english: Comic book executable: Comic_Succubus_eng.pdf -'985840': +"985840": installDir: Greedy Crush launch: - config: oslist: windows executable: GreedyCrush.exe type: vr -'985870': +"985870": installDir: The Tourist Trap launch: - config: oslist: windows executable: The Tourist Trap.exe type: default -'985880': {} -'985890': +"985880": {} +"985890": installDir: Streets of Rage 4 launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: x64\\SOR4.exe + executable: "x64\\\\SOR4.exe" type: default - workingdir: x64\\ + workingdir: "x64\\\\" - config: oslist: linux - executable: ./SOR4 + executable: "./SOR4" type: default - config: oslist: macos @@ -439939,7 +433738,7 @@ japanese: ベア・ナックル4 schinese: 怒之铁拳4 tchinese: 怒之鐵拳4 -'985900': +"985900": installDir: Young Souls launch: - config: @@ -439949,7 +433748,7 @@ nameLocalized: schinese: 双子星:盛气凌人 tchinese: 雙子星:盛氣淩人 -'985920': +"985920": installDir: Mining Empire Earth Resources launch: - config: @@ -439958,37 +433757,37 @@ type: default - config: oslist: macos - executable: Mining Empire- Earth Resources.app\\Contents\\MacOS\\Mining Empire- Earth Resources + executable: "Mining Empire- Earth Resources.app\\\\Contents\\\\MacOS\\\\Mining Empire- Earth Resources" type: default -'985930': +"985930": installDir: CallBack launch: - config: oslist: windows executable: CallBackBuild.exe type: none -'985940': +"985940": installDir: Beat Me! launch: - config: oslist: windows executable: Beat Me.exe type: default -'985950': +"985950": installDir: Operencia The Stolen Sun launch: - executable: Operencia.exe type: default - - arguments: '-vr' + - arguments: "-vr" description: VR Mode executable: VR/Operencia.exe type: vr -'9860': +"9860": installDir: Chronicles of Riddick - Assault on Dark Athena launch: - - executable: System\\Win32_x86\\DarkAthena.exe - workingdir: System\\Win32_x86 -'98600': + - executable: "System\\\\Win32_x86\\\\DarkAthena.exe" + workingdir: "System\\\\Win32_x86" +"98600": installDir: DemolitionInc launch: - config: @@ -439998,14 +433797,14 @@ oslist: macos description: Launch executable: DemolitionInc.app -'986010': +"986010": installDir: FIT IN launch: - config: oslist: windows - executable: '${fit_in}.exe' + executable: "${fit_in}.exe" type: default -'986020': +"986020": installDir: Kunoichi Botan launch: - executable: Game.exe @@ -440014,46 +433813,44 @@ japanese: くノ一牡丹 schinese: 女忍者牡丹 tchinese: 女忍者牡丹 -'986040': +"986040": installDir: The Unliving launch: - config: oslist: windows executable: The Unliving.exe type: default - - arguments: '-force-enable-console' + - arguments: "-force-enable-console" config: betakey: milestone_17 oslist: windows description: Debug Mode (test) - description_loc: - english: Debug Mode (test) executable: The Unliving.exe type: option1 nameLocalized: schinese: 亡灵法师 -'986070': +"986070": installDir: Spirit Oath launch: - config: oslist: windows executable: SpiritOath.exe type: none -'986080': +"986080": installDir: Zombie Apocalypse launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Zombie Apocalypse.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: Zombie Apocalypse.exe type: default -'986100': {} -'986130': +"986100": {} +"986130": installDir: Shadows of Doubt launch: - config: @@ -440062,85 +433859,85 @@ type: default nameLocalized: schinese: Shadows of Doubt - 凶影疑云 -'986220': {} -'986280': +"986220": {} +"986280": installDir: Lingua Fleur Lily launch: - executable: Lingua Fleur_Lily.exe type: default -'986310': +"986310": installDir: Recompile launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Event Mode executable: Recompile.exe type: default - - arguments: '-dev' + - arguments: "-dev" config: betakey: development - osarch: '64' + osarch: "64" oslist: windows description: Dev Mode executable: Recompile.exe type: default nameLocalized: schinese: 再编译 -'986320': +"986320": installDir: AA Touch Gun! launch: - config: oslist: windows executable: nw.exe type: default -'986340': +"986340": installDir: Raid on the Ruhr launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: RaidOnTheRuhr.exe type: none -'986350': +"986350": installDir: Nemezis Mysterious Journey III launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: NemezisIIIMysteriousJourney.exe type: default -'986370': +"986370": installDir: Try To Reach 10 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: nw.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: nw.exe type: default -'986400': +"986400": installDir: Helidefence launch: - config: oslist: windows executable: nw.exe type: default -'986460': {} -'986490': +"986460": {} +"986490": installDir: Another Bad Day in the Future launch: - config: oslist: windows executable: BadDayin21342.exe type: vr -'986500': {} -'986520': {} -'986680': +"986500": {} +"986520": {} +"986680": installDir: PAGUI launch: - config: @@ -440148,8 +433945,8 @@ description: Lanch executable: Pagui3D.exe type: default -'986700': {} -'986710': +"986700": {} +"986710": installDir: Nusantara Legend of The Winged Ones launch: - config: @@ -440164,23 +433961,23 @@ oslist: macos executable: NusantaraLoTWO.app type: default -'986760': +"986760": installDir: Paradise Checkers launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Release/InstancedRender.exe type: default workingdir: common_res -'986770': {} -'986780': {} -'986800': +"986770": {} +"986780": {} +"986800": installDir: Avicii - Invector launch: - executable: AVICII Invector.exe type: default -'986820': +"986820": installDir: Lost Lands Mistakes of the Past launch: - config: @@ -440191,8 +433988,8 @@ oslist: macos executable: Lost Lands Mistakes of the Past.app type: none -'986860': {} -'986920': +"986860": {} +"986920": installDir: Exploding Babies launch: - config: @@ -440201,7 +433998,7 @@ type: default nameLocalized: japanese: エクスプローディング・ベイビーズ -'986930': +"986930": installDir: Perchang launch: - config: @@ -440216,72 +434013,72 @@ oslist: linux executable: Perchang.x86 type: none -'986950': +"986950": installDir: Hyper Galactica launch: - - arguments: '-jar hg.jar' + - arguments: "-jar hg.jar" config: - osarch: '64' + osarch: "64" oslist: windows executable: jre1.8.0.171/bin/java.exe type: default -'986990': +"986990": installDir: aMAZE Christmas launch: - config: oslist: windows executable: aMAZE Christmas.exe type: default -'9870': +"9870": installDir: Ghostbusters launch: - executable: ghost_w32.exe -'987000': +"987000": installDir: Shadow Uprising launch: - config: oslist: windows executable: shadowuprising.exe type: vr -'987020': +"987020": installDir: D.R.O.N.E. The Game launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: DRONE The Game executable: D.R.O.N.E. Launcher.exe type: default - - arguments: '-launcher' + - arguments: "-launcher" config: - osarch: '64' + osarch: "64" oslist: windows description: Open the launcher executable: D.R.O.N.E. Launcher.exe type: none -'987040': +"987040": installDir: Goblin Squad - Total Division launch: - config: oslist: windows executable: GSQD.exe type: default -'987060': - installDir: Auri'sTales +"987060": + installDir: "Auri'sTales" launch: - - executable: Auri'sTales\\Auri'sTales.exe + - executable: "Auri'sTales\\\\Auri'sTales.exe" type: none -'987090': {} -'987130': {} -'987140': {} -'987180': +"987090": {} +"987130": {} +"987140": {} +"987180": installDir: Black Salt Coreuption launch: - config: oslist: windows executable: Black Salt Coreuption.exe type: default -'987190': +"987190": installDir: The Aether Life as a God launch: - config: @@ -440296,7 +434093,7 @@ oslist: linux executable: TheAetherLifeAsAGod type: none -'987200': +"987200": installDir: Dragon Racer launch: - config: @@ -440311,7 +434108,7 @@ oslist: linux executable: DragonRacer type: none -'987210': +"987210": installDir: Crossroads Roguelike RPG Dungeon Crawler launch: - config: @@ -440320,24 +434117,24 @@ type: none - config: oslist: macos - executable: Crossroads.app\\Contents\\MacOS\\Crossroads + executable: "Crossroads.app\\\\Contents\\\\MacOS\\\\Crossroads" type: none -'987230': +"987230": installDir: Shadow Legend VR launch: - - arguments: '-vrmode openvr' + - arguments: "-vrmode openvr" config: - osarch: '64' + osarch: "64" oslist: windows executable: ShadowLegendVR.exe type: vr - - arguments: '-vrmode oculus' + - arguments: "-vrmode oculus" config: - osarch: '64' + osarch: "64" oslist: windows executable: ShadowLegendVR.exe type: othervr -'987290': +"987290": installDir: DUSTNET launch: - config: @@ -440346,39 +434143,39 @@ type: default - config: oslist: macos - executable: DUSTNET.app\\Contents\\MacOS\\DUSTNET + executable: "DUSTNET.app\\\\Contents\\\\MacOS\\\\DUSTNET" type: default - - arguments: '-dustnetvr' + - arguments: "-dustnetvr" config: oslist: windows executable: DUSTNET.exe type: vr - - arguments: '-dustnetvr' + - arguments: "-dustnetvr" config: oslist: macos - executable: DUSTNET.app\\Contents\\MacOS\\DUSTNET + executable: "DUSTNET.app\\\\Contents\\\\MacOS\\\\DUSTNET" type: vr -'987310': {} -'987330': +"987310": {} +"987330": installDir: Street Outlaws launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Street Outlaws The List_US.exe type: default -'987350': +"987350": installDir: Planetside Arena launch: - arguments: Inifile=ClientConfig.ini STEAM_ENABLED=1 UseSteamLogin=1 config: - osarch: '64' + osarch: "64" oslist: windows description: PSA executable: PSA_BE.exe type: none -'987360': {} -'987370': +"987360": {} +"987370": installDir: lifeone launch: - config: @@ -440389,59 +434186,59 @@ oslist: windows executable: Game.exe type: default -'987400': +"987400": installDir: Disney Hercules Action Game launch: - config: oslist: windows executable: hercules.exe type: default -'987410': +"987410": installDir: Maui Mallard in Cold Shadow launch: - config: oslist: windows executable: coldshdw.exe type: default -'987450': +"987450": installDir: Embrace the Three Kingdoms launch: - - arguments: '-entrance steam' + - arguments: "-entrance steam" config: oslist: windows executable: pc_3p.exe type: default -'987490': +"987490": installDir: DOKA 2 EXODUS launch: - config: oslist: windows executable: Doka2.exe type: none -'987510': {} -'987560': {} -'987570': +"987510": {} +"987560": {} +"987570": installDir: chainReactionSHG launch: - config: oslist: windows executable: nw.exe type: none -'987580': +"987580": installDir: reach50SHG launch: - config: oslist: windows executable: nw.exe type: none -'987590': +"987590": installDir: dotsPopSHG launch: - config: oslist: windows executable: nw.exe type: none -'987620': +"987620": installDir: Ski Drive Biathlon launch: - config: @@ -440452,7 +434249,7 @@ oslist: macos executable: Ski Drive Biathlon.app/Contents/MacOS/Ski Drive Biathlon type: none -'987630': +"987630": installDir: Opencast Mining launch: - config: @@ -440463,60 +434260,60 @@ oslist: macos executable: Opencast Mining.app/Contents/MacOS/Opencast Mining type: default -'987660': +"987660": installDir: ASTRONEST VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: AstroVR.exe type: vr -'987670': +"987670": installDir: Chocolat Rush launch: - config: oslist: windows executable: ChocolatRush.exe type: vr -'987710': +"987710": installDir: BLASK launch: - config: oslist: windows executable: BLASK.exe type: default -'987720': +"987720": installDir: ONINAKI launch: - - arguments: '-nolog' + - arguments: "-nolog" executable: ONINAKI.exe type: none -'987740': +"987740": installDir: Donald VS Martians launch: - config: oslist: windows executable: Donald VS Martians.exe type: default -'987770': +"987770": installDir: Singularity 5 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: MonochExp_Master_3.exe type: vr - config: - osarch: '64' + osarch: "64" oslist: windows executable: MonochExp_Master_3.exe type: othervr - config: - osarch: '64' + osarch: "64" oslist: windows executable: MonochExp_Master_3.exe type: vr -'987780': +"987780": installDir: Dark Shiny launch: - config: @@ -440524,14 +434321,14 @@ oslist: windows executable: game.exe type: none -'987790': +"987790": installDir: Call Of Pixel Close Quarters launch: - config: oslist: windows executable: Launcher.exe type: default -'987800': +"987800": installDir: CandyVenture launch: - config: @@ -440540,17 +434337,17 @@ type: default - config: oslist: linux - executable: ./runner + executable: "./runner" type: default -'987810': +"987810": installDir: Ayre launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Ayre.exe type: default -'987820': +"987820": installDir: chrono launch: - config: @@ -440561,99 +434358,91 @@ oslist: macos executable: CHRONO_MAC.app type: none -'987840': +"987840": installDir: Expeditions Rome launch: - config: betakey: trailer_branch oslist: windows description: Expeditions Rome Legacy Executable Dev - description_loc: - english: Expeditions Rome Legacy Executable Dev executable: Rome.exe type: default - config: betakey: trailer_branch oslist: windows description: Expeditions Rome Legacy Executable Shipping - description_loc: - english: Expeditions Rome Legacy Executable Shipping executable: Rome-Win64-Shipping.exe type: default - config: oslist: windows description: Expeditions Rome - description_loc: - english: Expeditions Rome executable: ExpeditionsRome.exe type: default - config: - betakey: 'daily_jenkins,continuous_jenkins,baseline' + betakey: "daily_jenkins,continuous_jenkins,baseline" oslist: windows description: Expeditions Rome Shipping - description_loc: - english: Expeditions Rome Shipping executable: ExpeditionsRome-Win64-Shipping.exe type: default -'987850': - installDir: '2084' +"987850": + installDir: "2084" launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: VShooter.exe type: none -'987880': +"987880": installDir: Moo Moo Move launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: MooMooMove_001.exe type: default -'987900': +"987900": installDir: Seeker launch: - config: oslist: windows executable: Seeker.exe type: default -'987910': +"987910": installDir: WarZone launch: - config: oslist: windows executable: WarzoneFlashpoint.exe type: default -'987930': {} -'987950': +"987930": {} +"987950": installDir: eBall launch: - config: oslist: windows executable: eBall.exe type: default -'987980': +"987980": installDir: ACEChariot launch: - config: oslist: windows executable: TGLauncher.exe type: default -'987990': +"987990": installDir: Hyperborean Charter launch: - config: oslist: windows executable: Expedition.exe type: none -'9880': +"9880": installDir: Champions Online launch: - - arguments: '-affiliate \"appid=9880\" -launchedfrom steam - ' + - arguments: "-affiliate \\\"appid=9880\\\" -launchedfrom steam - " executable: Champions Online.exe type: none -'98800': +"98800": installDir: Dungeons of Dredmor launch: - config: @@ -440665,19 +434454,19 @@ - config: oslist: linux executable: Dredmor -'988070': +"988070": installDir: All Of Zhem launch: - executable: All of ZHEM.exe type: none -'988080': +"988080": installDir: 3 on 3 Super Robot Hockey launch: - config: oslist: windows executable: 3 on 3 Super Robot Hockey.exe type: default -'988100': +"988100": installDir: Super Phantom Cat launch: - config: @@ -440685,27 +434474,27 @@ description: prerelease in 1/27 am executable: SPC_REMAKE_STEAM.exe type: default -'988110': +"988110": installDir: Breacher Story launch: - executable: Breacher Story.exe type: none -'988190': +"988190": installDir: Red Dead Pixel Man launch: - config: oslist: windows executable: Red Dead Pixel Man.exe type: default -'988240': +"988240": installDir: Urban Trial Playground launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: UrbanTrialFreestyle3.exe type: default - - arguments: '-metalsm5' + - arguments: "-metalsm5" config: oslist: macos executable: UrbanTrialFreestyle3.app/Contents/MacOS/UrbanTrialFreestyle3 @@ -440714,46 +434503,46 @@ oslist: linux executable: UrbanTrialFreestyle3.sh type: default -'988250': +"988250": installDir: TowerHex launch: - - arguments: '-show-screen-selector -non-vr' + - arguments: "-show-screen-selector -non-vr" config: oslist: windows executable: allGame1.exe type: default - - arguments: '-vr' + - arguments: "-vr" config: oslist: windows executable: allGame1.exe type: vr -'988310': +"988310": installDir: Viola launch: - config: oslist: windows executable: Viola.exe type: default -'988330': +"988330": installDir: One minute of death launch: - config: oslist: windows executable: omod.exe type: default -'988340': +"988340": installDir: Mad Hunting Simulator VR launch: - config: oslist: windows executable: Mad Hunting Simulator VR.exe type: vr -'988370': {} -'988430': +"988370": {} +"988430": installDir: Lightseekers launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Lightseekers.exe type: none @@ -440761,12 +434550,12 @@ oslist: macos executable: Lightseekers.app type: none -'988460': {} -'988480': +"988460": {} +"988480": installDir: Champions launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Champions.exe type: none @@ -440774,7 +434563,7 @@ oslist: macos executable: Champions.app type: none -'988490': +"988490": installDir: Black Powder Red Earth® launch: - config: @@ -440789,59 +434578,59 @@ oslist: linux executable: 8bitwar type: none -'988500': +"988500": installDir: Trigger Table launch: - executable: Trigger Table.exe type: default -'988600': {} -'988650': +"988600": {} +"988650": installDir: Inclement launch: - config: oslist: windows executable: Inclement.exe type: default -'988890': +"988890": installDir: The.Thend.End launch: - config: oslist: windows executable: The.Thend.End.exe type: default -'988910': +"988910": installDir: Super Mega Baseball 3 launch: - config: oslist: windows executable: supermegabaseball.exe type: none -'988940': +"988940": installDir: Dark Alley Elf launch: - config: oslist: windows executable: DarkAlleyElf.exe type: default -'988960': {} -'988980': +"988960": {} +"988980": installDir: GLAD VALAKAS TOWER DEFENCE launch: - executable: GVTD.exe type: none -'98900': +"98900": installDir: Alien Hallway launch: - config: oslist: windows executable: preloader.exe type: default -'989000': +"989000": installDir: Ruthless Water launch: - executable: Ruthless Water.exe type: default -'989010': +"989010": installDir: The Scenic Treasures - Japanese Learning launch: - config: @@ -440852,68 +434641,68 @@ oslist: macos executable: The_Scenic_Treasures.app type: default -'989040': +"989040": installDir: After Hours launch: - config: oslist: windows executable: After Hours.exe type: default -'989050': +"989050": installDir: Elleros launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Thornblood.exe type: default - executable: game.exe type: none -'989070': {} -'989080': +"989070": {} +"989080": installDir: My Goddess of Love launch: - config: oslist: windows executable: MGoL.exe type: none -'989100': {} -'989110': +"989100": {} +"989110": installDir: Crystal Chameleon launch: - config: oslist: windows executable: cc.exe type: default -'989120': {} -'989140': +"989120": {} +"989140": installDir: Damnaze launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Launch executable: MazeSurvivor2.exe type: default -'989150': {} -'989160': +"989150": {} +"989160": installDir: Throne Quest launch: - config: oslist: windows executable: Throne Quest.exe type: none -'989190': +"989190": installDir: Slay All Goblins launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: sag.exe type: default -'989230': {} -'989240': {} -'989250': +"989230": {} +"989240": {} +"989250": installDir: Fight For Love launch: - config: @@ -440924,16 +434713,16 @@ oslist: linux executable: FightForLove type: default -'989260': +"989260": installDir: Home Plate Baseball launch: - executable: Home Plate Baseball.exe type: vr -'989270': +"989270": installDir: DSE launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: v 1.1 executable: DSE.exe @@ -440941,58 +434730,56 @@ - description: Read Manual executable: How To Play.txt type: manual -'989310': {} -'989340': - installDir: Aliens Don't Exist +"989310": {} +"989340": + installDir: "Aliens Don't Exist" launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ADE.exe type: default -'989370': +"989370": installDir: Moreandmore launch: - config: oslist: windows executable: Moreandmore.exe type: default -'989390': {} -'989400': +"989390": {} +"989400": installDir: Wild Ride launch: - config: oslist: windows executable: Wild Ride.exe type: default -'989430': +"989430": installDir: Story About Times launch: - config: oslist: windows executable: Story About Times.exe type: default -'989440': +"989440": installDir: Phantom Abyss launch: - - arguments: '-game' + - arguments: "-game" config: - osarch: '64' + osarch: "64" oslist: windows description: Phantom Abyss - description_loc: - english: Phantom Abyss executable: PhantomAbyss.exe type: default -'989450': +"989450": installDir: Corridor of time launch: - config: oslist: windows executable: timec.exe type: default -'989470': {} -'989490': +"989470": {} +"989490": installDir: The Emulator launch: - config: @@ -441003,29 +434790,29 @@ oslist: macos executable: Mac.app type: none -'989540': +"989540": installDir: THE LAST SURVIVOR launch: - config: oslist: windows executable: TheLastSurvival.exe type: openvroverlay -'989550': +"989550": installDir: Million Arthur Arcana Blood launch: - config: oslist: windows executable: Million Arthur.exe type: default -'989560': +"989560": installDir: NeoGeometry launch: - config: oslist: windows executable: NeoGeometry.exe type: default -'989630': {} -'989690': +"989630": {} +"989690": installDir: Conan Unconquered launch: - executable: ClientLauncherG.exe @@ -441042,291 +434829,255 @@ description: Release Build executable: ClientLauncherR.exe type: option1 -'989710': +"989710": installDir: YuoniZero launch: - config: oslist: windows executable: YuoniZero.exe type: vr -'989720': {} -'989750': +"989720": {} +"989750": installDir: Life In Helsinki launch: - executable: Helsinki.exe type: none -'989770': +"989770": installDir: Biker Garage launch: - config: oslist: windows executable: BikerGarage.exe type: default -'989780': +"989780": installDir: Paradise City VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: paradise city vr.exe type: vr -'989790': +"989790": installDir: The Vale launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TheVale.exe type: default -'989800': {} -'989860': +"989800": {} +"989860": installDir: Stop Cats launch: - config: oslist: windows executable: StopCats.exe type: default -'989870': +"989870": installDir: Northern Tales launch: - config: oslist: windows executable: NorthernTales.exe type: none -'989990': {} -'9900': +"989990": {} +"9900": installDir: Star Trek Online launch: - - arguments: '-affiliate \"appid=9900\" -launchedfrom steam - ' + - arguments: "-affiliate \\\"appid=9900\\\" -launchedfrom steam - " config: oslist: windows executable: Star Trek Online.exe type: none -'990020': +"990020": installDir: SINNERS launch: - config: oslist: windows executable: RPG_RT.exe type: default -'990030': +"990030": installDir: Deep Diving Simulator launch: - executable: Deep Diving Simulator.exe type: none -'990050': +"990050": installDir: Death end reQuest launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: resource\\bin\\Application.exe + executable: "resource\\\\bin\\\\Application.exe" type: default nameLocalized: japanese: デス エンド リクエスト tchinese: 死亡終局 輪廻試練 -'990080': +"990080": installDir: Hogwarts Legacy launch: - - arguments: '-SaveToUserDir -UserDir=\"Hogwarts Legacy\"' + - arguments: "-SaveToUserDir -UserDir=\\\"Hogwarts Legacy\\\"" config: betakey: development - osarch: '64' + osarch: "64" oslist: windows description: Phoenix (Test) - description_loc: - english: Phoenix (Test) executable: Phoenix-Win64-Test.exe type: option1 - - arguments: '-cleanpsocache -cleanuserdata -SaveToUserDir -UserDir=\"Hogwarts Legacy\"' + - arguments: "-cleanpsocache -cleanuserdata -SaveToUserDir -UserDir=\\\"Hogwarts Legacy\\\"" config: betakey: development - osarch: '64' + osarch: "64" oslist: windows description: Play Phoenix (Test) and clean files - description_loc: - english: Play Phoenix (Test) and clean files executable: Phoenix-Win64-Test.exe - - arguments: '-SaveToUserDir -UserDir=\"Hogwarts Legacy\"' + - arguments: "-SaveToUserDir -UserDir=\\\"Hogwarts Legacy\\\"" config: betakey: gobo_playtest - osarch: '64' + osarch: "64" oslist: windows description: Phoenix (Test) - description_loc: - english: Phoenix (Test) executable: Phoenix-Win64-Test.exe type: option1 - - arguments: '-cleanpsocache -cleanuserdata -SaveToUserDir -UserDir=\"Hogwarts Legacy\"' + - arguments: "-cleanpsocache -cleanuserdata -SaveToUserDir -UserDir=\\\"Hogwarts Legacy\\\"" config: betakey: gobo_playtest - osarch: '64' + osarch: "64" oslist: windows description: Play Phoenix (Test) and clean files - description_loc: - english: Play Phoenix (Test) and clean files executable: Phoenix-Win64-Test.exe - - arguments: '-SaveToUserDir -UserDir=\"Hogwarts Legacy\"' + - arguments: "-SaveToUserDir -UserDir=\\\"Hogwarts Legacy\\\"" config: betakey: milestone - osarch: '64' + osarch: "64" oslist: windows description: Phoenix (Test) - description_loc: - english: Phoenix (Test) executable: Phoenix-Win64-Test.exe type: option1 - - arguments: '-cleanpsocache -cleanuserdata -SaveToUserDir -UserDir=\"Hogwarts Legacy\"' + - arguments: "-cleanpsocache -cleanuserdata -SaveToUserDir -UserDir=\\\"Hogwarts Legacy\\\"" config: betakey: milestone - osarch: '64' + osarch: "64" oslist: windows description: Play Phoenix (Test) and clean files - description_loc: - english: Play Phoenix (Test) and clean files executable: Phoenix-Win64-Test.exe - - arguments: '-SaveToUserDir -UserDir=\"Hogwarts Legacy\"' + - arguments: "-SaveToUserDir -UserDir=\\\"Hogwarts Legacy\\\"" config: betakey: playtest - osarch: '64' + osarch: "64" oslist: windows description: Phoenix (Test) - description_loc: - english: Phoenix (Test) executable: Phoenix-Win64-Test.exe type: option1 - - arguments: '-cleanpsocache -cleanuserdata -SaveToUserDir -UserDir=\"Hogwarts Legacy\"' + - arguments: "-cleanpsocache -cleanuserdata -SaveToUserDir -UserDir=\\\"Hogwarts Legacy\\\"" config: betakey: playtest - osarch: '64' + osarch: "64" oslist: windows description: Play Phoenix (Test) and clean files - description_loc: - english: Play Phoenix (Test) and clean files executable: Phoenix-Win64-Test.exe - - arguments: '-SaveToUserDir -UserDir=\"Hogwarts Legacy\"' + - arguments: "-SaveToUserDir -UserDir=\\\"Hogwarts Legacy\\\"" config: betakey: release - osarch: '64' + osarch: "64" oslist: windows description: Phoenix (Test) - description_loc: - english: Phoenix (Test) executable: Phoenix-Win64-Test.exe type: option1 - - arguments: '-cleanpsocache -cleanuserdata -SaveToUserDir -UserDir=\"Hogwarts Legacy\"' + - arguments: "-cleanpsocache -cleanuserdata -SaveToUserDir -UserDir=\\\"Hogwarts Legacy\\\"" config: betakey: release - osarch: '64' + osarch: "64" oslist: windows description: Play Phoenix (Test) and clean files - description_loc: - english: Play Phoenix (Test) and clean files executable: Phoenix-Win64-Test.exe - - arguments: '-SaveToUserDir -UserDir=\"Hogwarts Legacy\"' + - arguments: "-SaveToUserDir -UserDir=\\\"Hogwarts Legacy\\\"" config: betakey: staging - osarch: '64' + osarch: "64" oslist: windows description: Phoenix (Test) - description_loc: - english: Phoenix (Test) executable: Phoenix-Win64-Test.exe type: option1 - - arguments: '-cleanpsocache -cleanuserdata -SaveToUserDir -UserDir=\"Hogwarts Legacy\"' + - arguments: "-cleanpsocache -cleanuserdata -SaveToUserDir -UserDir=\\\"Hogwarts Legacy\\\"" config: betakey: staging - osarch: '64' + osarch: "64" oslist: windows description: Play Phoenix (Test) and clean files - description_loc: - english: Play Phoenix (Test) and clean files executable: Phoenix-Win64-Test.exe - - arguments: '-SaveToUserDir -UserDir=\"Hogwarts Legacy\"' + - arguments: "-SaveToUserDir -UserDir=\\\"Hogwarts Legacy\\\"" config: - osarch: '64' + osarch: "64" oslist: windows executable: HogwartsLegacy.exe type: default - - arguments: '-SaveToUserDir -UserDir=\"Hogwarts Legacy\" -SavedDirSuffix=User1' + - arguments: "-SaveToUserDir -UserDir=\\\"Hogwarts Legacy\\\" -SavedDirSuffix=User1" config: betakey: Playtest - osarch: '64' + osarch: "64" oslist: windows description: Phoenix (Test) - Playtest User 1 - description_loc: - english: Phoenix (Test) - Playtest User 1 executable: Phoenix-Win64-Test.exe - - arguments: '-SaveToUserDir -UserDir=\"Hogwarts Legacy\" -SavedDirSuffix=User2' + - arguments: "-SaveToUserDir -UserDir=\\\"Hogwarts Legacy\\\" -SavedDirSuffix=User2" config: betakey: Playtest - osarch: '64' + osarch: "64" oslist: windows description: Phoenix (Test) - Playtest User 2 - description_loc: - english: Phoenix (Test) - Playtest User 2 executable: Phoenix-Win64-Test.exe - - arguments: '-SaveToUserDir -UserDir=\"Hogwarts Legacy\"' + - arguments: "-SaveToUserDir -UserDir=\\\"Hogwarts Legacy\\\"" config: betakey: main_development - osarch: '64' + osarch: "64" oslist: windows description: Play Phoenix (Test) - description_loc: - english: Play Phoenix (Test) executable: Phoenix-Win64-Test.exe type: option1 - - arguments: '-cleanpsocache -cleanuserdata -SaveToUserDir -UserDir=\"Hogwarts Legacy\"' + - arguments: "-cleanpsocache -cleanuserdata -SaveToUserDir -UserDir=\\\"Hogwarts Legacy\\\"" config: betakey: main_development - osarch: '64' + osarch: "64" oslist: windows description: Play Phoenix (Test) and clean files - description_loc: - english: Play Phoenix (Test) and clean files executable: Phoenix-Win64-Test.exe - - arguments: '-SaveToUserDir -UserDir=\"Hogwarts Legacy\"' + - arguments: "-SaveToUserDir -UserDir=\\\"Hogwarts Legacy\\\"" config: betakey: ratings - osarch: '64' + osarch: "64" oslist: windows description: Play Phoenix (Test) - description_loc: - english: Play Phoenix (Test) executable: Phoenix-Win64-Test.exe type: option1 - - arguments: '-cleanpsocache -cleanuserdata -SaveToUserDir -UserDir=\"Hogwarts Legacy\"' + - arguments: "-cleanpsocache -cleanuserdata -SaveToUserDir -UserDir=\\\"Hogwarts Legacy\\\"" config: betakey: ratings - osarch: '64' + osarch: "64" oslist: windows description: Play Phoenix (Test) and clean files - description_loc: - english: Play Phoenix (Test) and clean files executable: Phoenix-Win64-Test.exe nameLocalized: arabic: تراث هوغورتس - french: "Hogwarts Legacy\_: L'Héritage de Poudlard" + french: "Hogwarts Legacy : L'Héritage de Poudlard" japanese: ホグワーツ・レガシー koreana: 호그와트 레거시 polish: Dziedzictwo Hogwartu russian: Хогвартс. Наследие schinese: 霍格沃茨之遗 tchinese: 霍格華茲的傳承 -'990090': +"990090": installDir: The Dandelion Girl launch: - config: oslist: windows executable: dggame.exe type: none -'990110': +"990110": installDir: TilePuzzle launch: - executable: TilePuzzle1.exe type: none -'990150': {} -'990160': +"990150": {} +"990160": installDir: ToyShot VR launch: - config: @@ -441337,20 +435088,20 @@ oslist: windows executable: ToyShot.exe type: othervr -'990180': +"990180": installDir: The Ghost of You launch: - config: oslist: windows executable: TheGhostofYou.exe type: default -'990210': {} -'990240': +"990210": {} +"990240": installDir: Anime Vampire Slayer launch: - executable: Vampire Slayer.exe type: vr -'990250': +"990250": installDir: Darkness and Flame The Dark Side f2p launch: - config: @@ -441361,32 +435112,32 @@ oslist: macos executable: Darkness and Flame The Dark Side F2P.app type: none -'990280': +"990280": installDir: Olimdal launch: - config: oslist: windows executable: Olimdal.exe type: default -'990360': +"990360": installDir: SKYHILL Black Mist launch: - config: oslist: windows executable: Skyhill Black Mist.exe type: default -'990390': - installDir: Riddles of the Owls' Kingdom. Magic Wings +"990390": + installDir: "Riddles of the Owls' Kingdom. Magic Wings" launch: - config: oslist: windows - executable: Riddles of the Owls' Kingdom Magic Wings.exe + executable: "Riddles of the Owls' Kingdom Magic Wings.exe" type: default - config: oslist: macos - executable: Riddles of the Owls' Kingdom Magic Wings.app + executable: "Riddles of the Owls' Kingdom Magic Wings.app" type: default -'990400': +"990400": installDir: Solitaire. Dragon Light launch: - config: @@ -441397,72 +435148,72 @@ oslist: macos executable: Solitaire. Dragon Light.app type: default -'990410': +"990410": installDir: Slashvival launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Slashvival.exe type: none -'990460': {} -'990500': +"990460": {} +"990500": installDir: PANTY SLIDE launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: PantySlide.exe type: vr -'990630': +"990630": installDir: The Last Campfire launch: - executable: The Last Campfire.exe type: none -'990640': +"990640": installDir: Numgeon launch: - config: oslist: windows executable: nw.exe type: none -'990720': +"990720": installDir: Bookend launch: - executable: BookendPC.exe type: default -'990740': +"990740": installDir: The Second Chance Strip Club launch: - config: oslist: windows executable: The Second Chance Strip Club.exe type: default -'990750': +"990750": installDir: RoboSnakes launch: - config: oslist: windows executable: RoboSnakes.exe type: none -'990840': +"990840": installDir: Running Tadpoles launch: - executable: RT.exe type: none -'990850': +"990850": installDir: Yanpai Simulator launch: - - executable: \\windows_content\\Yanpai Simulator.exe + - executable: "\\\\windows_content\\\\Yanpai Simulator.exe" type: none -'990890': +"990890": installDir: Desktop Soccer launch: - config: oslist: windows executable: Desktop Soccer.exe type: default -'990900': +"990900": installDir: Neon Noodles launch: - config: @@ -441473,7 +435224,7 @@ oslist: linux executable: neonnoodles.x86_64 type: default -'990920': +"990920": installDir: Sea of Craft launch: - config: @@ -441482,19 +435233,19 @@ nameLocalized: sc_schinese: 沉浮 schinese: 沉浮 -'990940': +"990940": installDir: FullOfLove launch: - executable: FullOfLove.exe type: none -'990950': +"990950": installDir: Indiana Boy Steam Edition launch: - config: oslist: windows executable: indianaboy.exe type: default -'990960': +"990960": installDir: ATRIUM launch: - config: @@ -441509,13 +435260,13 @@ oslist: linux executable: ATRIUM.x86_64 type: default -'990970': {} -'99100': +"990970": {} +"99100": installDir: Daggerdale launch: - - executable: Binaries\\Win32\\DnDGame.exe -'991050': {} -'991070': + - executable: "Binaries\\\\Win32\\\\DnDGame.exe" +"991050": {} +"991070": installDir: Destroy The World launch: - config: @@ -441526,20 +435277,20 @@ oslist: macos executable: DestroyTheWorld_V_1.0.1_MAC.app type: default -'991090': {} -'991100': {} -'991120': {} -'991130': +"991090": {} +"991100": {} +"991120": {} +"991130": installDir: GUNSMOKE launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Gunsmoke.exe type: vr -'991140': {} -'991160': {} -'991170': +"991140": {} +"991160": {} +"991170": installDir: BarnFinders launch: - config: @@ -441549,55 +435300,55 @@ nameLocalized: schinese: 废品大亨 tchinese: 废品大亨 -'99120': +"99120": installDir: Yars Revenge launch: - - executable: win32\\launch.bat + - executable: "win32\\\\launch.bat" workingdir: win32 - - arguments: '-configure' + - arguments: "-configure" description: Configure Yars Revenge - executable: win32\\launch.bat + executable: "win32\\\\launch.bat" workingdir: win32 -'991230': +"991230": installDir: Highway of death launch: - config: oslist: windows executable: Highway of death.exe type: config -'991240': +"991240": installDir: Trivia Throwdown launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Trivia Throwdown.exe type: none -'991260': +"991260": installDir: Borderlands 2 VR launch: - - executable: Binaries\\Win64\\Borderlands2VR.exe + - executable: "Binaries\\\\Win64\\\\Borderlands2VR.exe" type: vr - config: betakey: test - osarch: '64' + osarch: "64" oslist: windows - executable: Binaries\\Win64\\Borderlands2VR.exe + executable: "Binaries\\\\Win64\\\\Borderlands2VR.exe" type: vr -'991270': +"991270": installDir: The Legend of Heroes Trails of Cold Steel III launch: - - executable: bin\\x64\\ed8_3_PC.exe + - executable: "bin\\\\x64\\\\ed8_3_PC.exe" type: default - executable: Sen3Launcher.exe type: config - - arguments: '-latest' + - arguments: "-latest" description: Resume from the latest save - executable: bin\\x64\\ed8_3_PC.exe + executable: "bin\\\\x64\\\\ed8_3_PC.exe" type: none nameLocalized: japanese: 英雄伝説 閃の軌跡III -'991280': +"991280": installDir: Air Combat launch: - config: @@ -441606,24 +435357,24 @@ type: default - config: oslist: macos - executable: Game.app\\Contents\\MacOS\\AirCombat + executable: "Game.app\\\\Contents\\\\MacOS\\\\AirCombat" type: default -'991290': {} -'991430': - installDir: You're Not Special +"991290": {} +"991430": + installDir: "You're Not Special" launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows executable: Game.exe type: default - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: macos executable: Game.app type: default -'991450': {} -'991480': +"991450": {} +"991480": installDir: Santa Simulator launch: - config: @@ -441631,59 +435382,59 @@ description: Santa Simulator executable: Santa Simulator.exe type: vr -'991490': +"991490": installDir: The Black Knight launch: - config: oslist: windows executable: TheBlackKnight.exe type: none -'991500': +"991500": installDir: Make A Jigsaw Puzzle launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: VR Mode executable: Make A Jigsaw Puzzle.exe type: vr - config: - osarch: '64' + osarch: "64" oslist: windows - ownsdlc: '1025100' + ownsdlc: "1025100" description: Non-VR Mode executable: Non-VR Mode/Make A Jigsaw Puzzle.exe type: none -'991510': +"991510": installDir: Epic Food Fight launch: - config: oslist: windows executable: Epic Food Fight.exe type: default -'991530': +"991530": installDir: Choice or Fate launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows description: Choice or Fate executable: Game.exe type: none -'991560': +"991560": installDir: ONE PUNCH MAN A HERO NOBODY KNOWS launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ONE PUNCH MAN A HERO NOBODY KNOWS.exe type: none -'991600': +"991600": installDir: Rabbit Burn launch: - executable: Rabbit Burn.exe type: none -'991620': +"991620": installDir: RepairBot launch: - config: @@ -441694,50 +435445,47 @@ oslist: macos executable: repairbot.app type: default -'991630': {} -'991660': +"991630": {} +"991660": installDir: Voxel Sword launch: - config: oslist: windows executable: VoxelSword.exe type: default -'991680': +"991680": installDir: The fallen of the blaze empire launch: - config: oslist: windows executable: stone.exe type: default -'991740': +"991740": installDir: Era Of Newborns launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Official Era Of Newborns Game - description_loc: - english: Official Era Of Newborns Game - turkish: Resmi Era Of Newborns Oyunu executable: EraOfNewborns.exe type: default -'991760': +"991760": installDir: Summer Sports Games launch: - executable: summersportsgames.exe type: none -'991780': +"991780": installDir: NotesOfSoul launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: NotesOfSoul.exe type: default nameLocalized: english: Notes of Soul tchinese: 探灵笔記/拾遗记 -'991790': +"991790": installDir: Magnesia launch: - config: @@ -441748,58 +435496,58 @@ oslist: macos executable: Magnesia.app type: default -'991810': +"991810": installDir: Strategic Mind The Pacific launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: StrategicMind.exe type: default nameLocalized: schinese: 战略思维:太平洋 -'991860': +"991860": installDir: IMAZE.EXE 2 launch: - config: oslist: windows executable: IMAZE 2.exe type: default -'991930': +"991930": installDir: PsychoBoys launch: - config: oslist: windows executable: PsychoBoys.exe type: default -'991960': +"991960": installDir: Greed The Mad Scientist launch: - config: oslist: windows executable: Greed.exe type: default -'992000': +"992000": installDir: Telekinetic launch: - executable: Telekinetic/Telekinetic.exe type: default -'992040': +"992040": installDir: Moot District launch: - config: oslist: windows executable: Moot District.exe type: default -'992050': +"992050": installDir: Oik5 launch: - - arguments: '-windowed' + - arguments: "-windowed" config: oslist: windows executable: oik5.exe type: default -'992070': +"992070": installDir: Idle Wizard launch: - config: @@ -441814,14 +435562,14 @@ oslist: macos executable: IdleWizard.app type: default -'992120': +"992120": installDir: Inch by Inch launch: - config: oslist: windows executable: Inch By Inch.exe type: default -'992200': +"992200": installDir: Feathery Ears launch: - config: @@ -441830,19 +435578,19 @@ type: default - config: oslist: macos - executable: 'Feathery Ears [WIN].app' + executable: "Feathery Ears [WIN].app" type: default nameLocalized: japanese: 羽耳 Feathery Ears -'992210': +"992210": installDir: WavesOfTheAtlantide launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: WavesOfTheAtlantide.exe type: default -'992240': +"992240": installDir: Trawel launch: - arguments: autoconnect @@ -441853,86 +435601,84 @@ - config: oslist: windows description: Advanced Mode - description_loc: - english: Advanced Mode executable: RunTrawel.bat type: option1 - config: oslist: linux executable: RunTrawel.sh type: default -'992250': +"992250": installDir: SpaceHockey launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Space Hockey.exe type: default -'992260': +"992260": installDir: 牧剑 launch: - executable: MuJian.exe type: none -'992300': +"992300": installDir: BloodySpell launch: - config: oslist: windows executable: BloodySpell.exe type: default -'992330': +"992330": installDir: Incubo launch: - config: oslist: windows executable: INCUBO.exe type: none -'992520': +"992520": installDir: MeadowFun launch: - config: oslist: windows executable: MeadowFun.exe type: default -'992560': +"992560": installDir: happy blue bear launch: - config: oslist: windows executable: happybluebear.exe type: default -'992610': - installDir: Let's Create! Pottery VR +"992610": + installDir: "Let's Create! Pottery VR" launch: - config: oslist: windows executable: PotteryVR.exe type: vr -'992620': +"992620": installDir: DemonClub launch: - config: oslist: windows executable: DemonClub.exe type: default -'992630': {} -'992640': +"992630": {} +"992640": installDir: Pagan Online launch: - config: oslist: windows executable: Pagan.exe type: default -'992680': +"992680": installDir: The_Lovebirds launch: - config: oslist: windows executable: The_Lovebirds.exe type: default -'992690': {} -'992700': +"992690": {} +"992700": installDir: Lighter launch: - config: @@ -441941,32 +435687,32 @@ type: default - config: oslist: macos - executable: Lighter.app\\Contents\\MacOS\\Lighter + executable: "Lighter.app\\\\Contents\\\\MacOS\\\\Lighter" type: default -'992730': +"992730": installDir: Project Downfall launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: PDF.exe type: default -'992740': +"992740": installDir: Inorikaze launch: - config: oslist: windows executable: Inorikaze.exe type: none -'992750': +"992750": installDir: 社稷终于幻想 ~ A Finality with Sheji launch: - config: oslist: windows executable: AFinalityWithSheji.exe type: default -'992780': {} -'992790': +"992780": {} +"992790": installDir: Switch & Ditch launch: - config: @@ -441977,87 +435723,87 @@ oslist: macos executable: Switch_Ditch-Mac.app type: none -'992820': +"992820": installDir: Monster Hentai launch: - executable: MonsterHentai.exe type: default -'992840': {} -'992870': +"992840": {} +"992870": installDir: The Secret of Gillwood launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TSOG.exe type: default -'992880': +"992880": installDir: Space Cruise launch: - config: oslist: windows executable: SpaceCruise.exe type: none -'992890': +"992890": installDir: Tank raid launch: - executable: Tank raid.exe type: default -'992910': +"992910": installDir: The Black Masses launch: - config: - osarch: '64' + osarch: "64" oslist: windows description: Normal executable: The Black Masses.exe type: default -'992930': {} -'992950': +"992930": {} +"992950": installDir: Circle Rally Party launch: - config: oslist: windows executable: CircleRallyParty.exe type: default -'992960': +"992960": installDir: A Lullaby of Colors VR launch: - config: oslist: windows executable: A Lullaby of Colors.exe type: vr -'992970': +"992970": installDir: Super Blackout launch: - config: oslist: windows executable: SuperBlackout.exe type: none -'992990': +"992990": installDir: Beyond Extinct launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: BeyondExtinct.exe type: default -'9930': +"9930": installDir: Test Drive Unlimited 2 launch: - executable: UpLauncher.exe -'99300': +"99300": installDir: Renegade Ops launch: - executable: RenegadeOps.exe -'993110': +"993110": installDir: Skinwalker Hunt launch: - config: oslist: windows executable: Skinwalker Hunt.exe type: none -'993170': +"993170": installDir: THE DEVIL HAUNTS ME launch: - config: @@ -442073,25 +435819,25 @@ executable: THE DEVIL HAUNTS ME (linux).x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: THE DEVIL HAUNTS ME (linux).x86_64 type: none -'993200': +"993200": installDir: Calcul8² launch: - config: oslist: windows executable: calcul82.exe type: default -'993220': +"993220": installDir: FirstPlanet launch: - config: oslist: windows executable: FirstPlanet.exe type: none -'993250': +"993250": installDir: Cover Sky launch: - config: @@ -442101,69 +435847,69 @@ nameLocalized: schinese: 盖天 tchinese: 盖天 -'993290': +"993290": installDir: JOBU-KI launch: - config: oslist: windows executable: JOBU-KI.exe type: default -'993330': +"993330": installDir: ISLAND 404 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: nw.exe type: default -'993340': +"993340": installDir: VirtualSurfing launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: VirtualSurfing.exe type: default -'993360': {} -'993370': +"993360": {} +"993370": installDir: Killing Trials launch: - executable: DumpInk.exe type: none -'993390': +"993390": installDir: Oriza launch: - config: - osarch: '32' + osarch: "32" oslist: windows - executable: Oriza Windows 32 Bit\\Oriza.exe + executable: "Oriza Windows 32 Bit\\\\Oriza.exe" type: default - config: oslist: macos executable: Oriza.app type: default - config: - osarch: '64' + osarch: "64" oslist: windows - executable: Oriza Windows 64 Bit\\Oriza.exe + executable: "Oriza Windows 64 Bit\\\\Oriza.exe" type: default -'993400': +"993400": installDir: Finding summer launch: - executable: Finding summer.exe type: default -'993430': {} -'993460': {} -'993470': {} -'993490': +"993430": {} +"993460": {} +"993470": {} +"993490": installDir: Tower Tank - TD Reversal launch: - config: oslist: windows - description: Double click on \"tower_tank.exe\" to launch the game. + description: "Double click on \\\"tower_tank.exe\\\" to launch the game." executable: tower_tank.exe type: default -'993500': +"993500": installDir: Ritual of the Moon launch: - config: @@ -442174,15 +435920,15 @@ oslist: macos executable: Ritual_of_the_Moon.app type: default -'993520': +"993520": installDir: The Mars Agenda launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: The Mars Agenda.exe type: default -'993530': +"993530": installDir: Codename Nemesis launch: - config: @@ -442193,28 +435939,28 @@ oslist: windows executable: Codename Nemesis.exe type: default -'993630': +"993630": installDir: Data mining 4 launch: - config: oslist: windows executable: Data mining 4.exe type: default -'993640': +"993640": installDir: Boy Teen Dream launch: - config: oslist: windows executable: BoyTeenDream.exe type: default -'993650': +"993650": installDir: Bullynoid launch: - config: oslist: windows executable: Bullynoid.exe type: default -'993690': +"993690": installDir: Transport Services launch: - config: @@ -442222,12 +435968,12 @@ executable: Transport services.exe type: none - config: - osarch: '32' + osarch: "32" oslist: linux executable: Transport_services.x86 type: none - config: - osarch: '64' + osarch: "64" oslist: linux executable: Transport_services.x86_64 type: none @@ -442235,7 +435981,7 @@ oslist: macos executable: Transport services.app type: none -'993740': +"993740": installDir: Hentai Mosaique Puzzle launch: - config: @@ -442246,7 +435992,7 @@ oslist: linux executable: Hentai Mosaique Puzzle.x86_64 type: none -'993750': +"993750": installDir: Girls & sweets launch: - config: @@ -442261,7 +436007,7 @@ oslist: linux executable: TwoSisProject.sh type: none -'993780': +"993780": installDir: Jewel Match Solitaire Winterscapes launch: - config: @@ -442269,7 +436015,7 @@ description: Launch executable: JewelMatchSolitaireWinterscapes.exe type: none -'993790': +"993790": installDir: Ancient Enemy launch: - config: @@ -442277,20 +436023,20 @@ description: Launch executable: AncientEnemy.exe type: none -'993810': +"993810": installDir: Lost City of Vampires launch: - executable: LostCity.exe type: none -'993840': +"993840": installDir: Drive launch: - - arguments: '-LaunchOculus' + - arguments: "-LaunchOculus" config: oslist: windows executable: Drive.exe type: othervr - - arguments: '-LaunchOpenVR' + - arguments: "-LaunchOpenVR" config: oslist: windows executable: Drive.exe @@ -442299,56 +436045,56 @@ oslist: windows executable: Drive.exe type: default -'993850': +"993850": installDir: Tsukumono launch: - config: oslist: windows executable: Tsukumono.exe type: none -'993860': +"993860": installDir: OO.Inc launch: - config: oslist: windows executable: OO.Inc.exe type: default -'993870': +"993870": installDir: CODE2040 launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ReDreamLauncher.exe type: default -'993880': {} -'993890': +"993880": {} +"993890": installDir: Scribble launch: - config: oslist: windows executable: nw.exe type: default -'993960': {} -'993970': {} -'993980': +"993960": {} +"993970": {} +"993980": installDir: Metatron launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Metatron.exe type: default - config: oslist: macos - executable: Metatron.app\\Contents\\MacOS\\Innovator + executable: "Metatron.app\\\\Contents\\\\MacOS\\\\Innovator" type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Metatron.sh type: default -'993990': +"993990": installDir: Hunger Aparment launch: - config: @@ -442357,31 +436103,31 @@ type: default - config: oslist: macos - executable: Hunger Apartment.app\\Contents\\MacOS\\Hunger Apartment + executable: "Hunger Apartment.app\\\\Contents\\\\MacOS\\\\Hunger Apartment" type: default -'9940': +"9940": installDir: Blade Kitten launch: - config: oslist: windows executable: bladekitten.exe -'99400': +"99400": installDir: TheMonsterSlayer launch: - description: The Monster Slayer - Garshasp (Game) - executable: distro\\garshasp.exe + executable: "distro\\\\garshasp.exe" workingdir: distro - description: Game Configuration - executable: distro\\garshaspconfig.exe + executable: "distro\\\\garshaspconfig.exe" workingdir: distro -'994020': +"994020": installDir: Tempest of the Heavens and Earth launch: - config: oslist: windows executable: game.exe type: default -'994030': +"994030": installDir: Anime Girl Slide Puzzle launch: - config: @@ -442396,7 +436142,7 @@ oslist: linux executable: Anime Girl Slide Puzzle.x86_64 type: default -'994040': +"994040": installDir: Lichtspeer Double Speer Edition launch: - config: @@ -442411,7 +436157,7 @@ oslist: linux executable: Lichtspeer.x86 type: default -'99410': +"99410": installDir: ValveTestApp99410 launch: - config: @@ -442424,50 +436170,50 @@ description: Configuration executable: distro/garshaspconfig.exe workingdir: distro -'994140': +"994140": installDir: Lightmatter launch: - config: oslist: windows executable: Lightmatter.exe type: default -'994160': +"994160": installDir: The Seduction of Shaqeera launch: - config: oslist: windows executable: The Seduction of Shaqeera.exe type: default -'994170': +"994170": installDir: Statue Defender launch: - config: oslist: windows executable: Statue Defender.exe type: default -'994180': +"994180": installDir: Tennis Fighters launch: - config: oslist: windows executable: TennisFighters.exe type: none -'994190': +"994190": installDir: Sound Slide launch: - config: oslist: windows executable: SoundSlide.exe type: none -'994200': +"994200": installDir: Horizon launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: GameClient.exe type: default -'994220': +"994220": installDir: Neoverse launch: - config: @@ -442476,78 +436222,75 @@ type: default - config: oslist: macos - executable: NEOVERSE.app\\Contents\\MacOS\\NEOVERSE + executable: "NEOVERSE.app\\\\Contents\\\\MacOS\\\\NEOVERSE" type: default nameLocalized: - schinese: '无尽宇宙:Neoverse' -'994230': + schinese: "无尽宇宙:Neoverse" +"994230": installDir: Farming Village launch: - config: oslist: windows - executable: FarmingVillage\\FarmingVillage.exe + executable: "FarmingVillage\\\\FarmingVillage.exe" type: default -'994250': +"994250": installDir: fatbattle launch: - config: oslist: windows executable: jszd.exe type: none -'994260': +"994260": installDir: Accel launch: - config: oslist: windows executable: accel.exe type: none -'994280': +"994280": installDir: Gujian3 launch: - - arguments: 'gj3_gates=210.73.215.190:2200 --fs=data:_index/303.idx:_index/303.idx' + - arguments: "gj3_gates=210.73.215.190:2200 --fs=data:_index/303.idx:_index/303.idx" config: - osarch: '64' + osarch: "64" oslist: windows description: 服务器 - 1 (适用于身处中国大陆的玩家) - executable: bin64\\Gujian3.exe + executable: "bin64\\\\Gujian3.exe" type: option1 - - arguments: 'gj3_gates=52.173.25.223:2200 --fs=data:_index/303.idx:_index/303.idx' + - arguments: "gj3_gates=52.173.25.223:2200 --fs=data:_index/303.idx:_index/303.idx" config: - osarch: '64' + osarch: "64" oslist: windows description: 服务器 - 2 (适用于身处中国大陆以外的玩家) - executable: bin64\\Gujian3.exe + executable: "bin64\\\\Gujian3.exe" type: option2 - - arguments: 'gj3_gates=49.233.33.157:2200 --fs=data:_index/303.idx:_index/303.idx' + - arguments: "gj3_gates=49.233.33.157:2200 --fs=data:_index/303.idx:_index/303.idx" config: betakey: for_jp_test - osarch: '64' + osarch: "64" oslist: windows - realm: steamglobal description: 日文版测试 - description_loc: - english: 日文版测试 - executable: bin64\\Gujian3.exe + executable: "bin64\\\\Gujian3.exe" type: option1 nameLocalized: - japanese: '古剣奇譚 ~星夜に謡い継ぐ万世の夢~ ' + japanese: "古剣奇譚 ~星夜に謡い継ぐ万世の夢~ " sc_schinese: 古剑奇谭三(Gujian3) -'994290': +"994290": installDir: FiveDayEscape launch: - config: oslist: windows executable: FiveDayEscape.exe type: default -'994310': - installDir: Let's Sing 2019 +"994310": + installDir: "Let's Sing 2019" launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: Let's Sing 2019.exe + executable: "Let's Sing 2019.exe" type: default -'994340': +"994340": installDir: CatAndGhostlyRoad launch: - config: @@ -442555,18 +436298,18 @@ executable: CatWay.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: CatWay.x86_64 type: default -'994350': +"994350": installDir: The Seduction of Shaqeera VR launch: - config: oslist: windows executable: The Seduction of Shaqeera VR.exe type: vr -'994360': +"994360": installDir: CoderBear launch: - config: @@ -442575,18 +436318,18 @@ type: none - config: oslist: macos - executable: CoderBear.app\\Contents\\MacOS\\Mac_Runner + executable: "CoderBear.app\\\\Contents\\\\MacOS\\\\Mac_Runner" type: none -'994390': {} -'994400': {} -'994450': +"994390": {} +"994400": {} +"994450": installDir: Steel Fight launch: - config: oslist: windows executable: Steel Fight.exe type: default -'994500': +"994500": installDir: Sky Racket launch: - config: @@ -442601,7 +436344,7 @@ oslist: macos executable: SkyRacket.app type: default -'994520': +"994520": installDir: Oh Trap! launch: - config: @@ -442610,25 +436353,25 @@ type: none - config: oslist: macos - executable: release.app\\Contents\\MacOS\\release + executable: "release.app\\\\Contents\\\\MacOS\\\\release" type: none -'994560': {} -'994570': {} -'994590': +"994560": {} +"994570": {} +"994590": installDir: Pixel Fish launch: - config: oslist: windows executable: pixelfish.exe type: default -'994610': +"994610": installDir: RelayCars launch: - config: oslist: windows executable: RelayCars.exe type: vr -'994650': +"994650": installDir: Space Struck Run launch: - config: @@ -442636,29 +436379,29 @@ executable: SpaceStruckRun.exe type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: SpaceStruckRun.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: SpaceStruckRun.x86_64 type: default - config: oslist: macos - executable: SpaceStruckRun.app\\Contents\\MacOS\\SpaceStruckRun + executable: "SpaceStruckRun.app\\\\Contents\\\\MacOS\\\\SpaceStruckRun" type: default -'994670': +"994670": installDir: ThreatGEN launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: ThreatGEN Red vs. Blue.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: ThreatGENRvB.x86_64 type: default @@ -442666,8 +436409,8 @@ oslist: macos executable: ThreatGENRvB.app type: default -'994680': {} -'994730': +"994680": {} +"994730": installDir: Banner of the Maid launch: - config: @@ -442678,26 +436421,26 @@ english: Banner of the Maid schinese: 圣女战旗 tchinese: 聖女戰旗 -'994790': +"994790": installDir: Wildkids launch: - executable: WildKids.exe type: none -'994860': +"994860": installDir: Gunpowder on The Teeth Arcade launch: - config: oslist: windows executable: Gunpowder on The Teeth Arcade.exe type: default -'994870': +"994870": installDir: Mysteries of Neverville The Runestone of Light launch: - config: oslist: windows executable: Neverville.exe type: default -'994890': +"994890": installDir: Metro Simulator launch: - config: @@ -442706,167 +436449,165 @@ type: default nameLocalized: schinese: 地铁模拟器 -'994900': +"994900": installDir: Christmas Wonderland 2 launch: - executable: christmas2.exe type: none -'994930': +"994930": installDir: Soccer Manager 2019 launch: - config: oslist: windows executable: Soccer Manager 2019.exe type: none -'994940': {} -'995000': +"994940": {} +"995000": installDir: Escape Legacy VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: EscapeLegacy_VRVER.exe type: vr - config: oslist: macos - executable: EscapeLegacy_VRVER.app\\Contents\\MacOS\\EscapeLegacy_VRVER + executable: "EscapeLegacy_VRVER.app\\\\Contents\\\\MacOS\\\\EscapeLegacy_VRVER" type: vr -'995050': +"995050": installDir: Havocado launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Havocado.exe type: default - config: oslist: macos - executable: Havocado.app\\Contents\\MacOS\\Havocado + executable: "Havocado.app\\\\Contents\\\\MacOS\\\\Havocado" type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Havocado.x86_64 type: default -'995060': +"995060": installDir: Fant Kids Animated Puzzle launch: - config: oslist: windows executable: Fant Kids Animated Puzzle.exe type: none -'995070': +"995070": installDir: RiseEterna launch: - config: oslist: windows executable: RiseEterna.exe type: default -'995140': +"995140": installDir: Hand to Hand Combat launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: HandtoHandCombat.exe type: vr -'995160': +"995160": installDir: Impulsow launch: - executable: Impulsow.exe type: none -'995170': +"995170": installDir: Aim Bot launch: - config: oslist: windows description: Launch - description_loc: - english: Launch executable: Aim Bot.exe type: default -'995210': +"995210": installDir: Tale of Fortune launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: taleoffortune.exe type: default -'995230': +"995230": installDir: Freediver - Triton Down launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Freediver Triton Down.exe type: vr -'995240': +"995240": installDir: Remilore launch: - config: oslist: windows executable: RemiLore.exe type: default -'995270': +"995270": installDir: DeMagnete launch: - executable: DeMagneteVR.exe type: vr -'995280': +"995280": installDir: Stary launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Stary.exe type: default - config: - osarch: '64' + osarch: "64" oslist: windows description: Neurosis - executable: Neurosis\\Neurosis.exe + executable: "Neurosis\\\\Neurosis.exe" type: none -'995310': +"995310": installDir: Marble_Odyssey launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Marble_Odyssey.exe type: default -'995330': +"995330": installDir: Et cetera In launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows executable: eto_cetera.exe type: none -'995340': +"995340": installDir: The Magnet Trials launch: - config: - osarch: '64' + osarch: "64" oslist: windows - executable: \\WindowsNoEditor\\Magnet.exe + executable: "\\\\WindowsNoEditor\\\\Magnet.exe" type: none -'995430': +"995430": installDir: Zombieland launch: - config: oslist: windows executable: Zombieland.exe type: default -'995450': +"995450": installDir: Geeksos launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Geeksos.exe type: default -'995460': +"995460": installDir: MiracleVN launch: - config: @@ -442875,19 +436616,19 @@ type: default nameLocalized: koreana: 기적의 분식집 -'995480': +"995480": installDir: Super president How to rule the country launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Super President.exe type: default -'995490': +"995490": installDir: Kadath launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: KadathEp0.exe type: default @@ -442895,32 +436636,32 @@ oslist: macos executable: KadathEp0.app type: default -'995580': {} -'995600': {} -'995680': {} -'995700': +"995580": {} +"995600": {} +"995680": {} +"995700": installDir: Jewel Puzzle Click launch: - config: oslist: windows executable: JewelPuzzleClick.exe type: default -'995720': +"995720": installDir: Coffee VendoR launch: - config: oslist: windows - executable: \\WindowsNoEditor\\VendingMachine.exe + executable: "\\\\WindowsNoEditor\\\\VendingMachine.exe" type: vr -'995740': {} -'995790': +"995740": {} +"995790": installDir: Dark Sauce launch: - config: oslist: windows executable: Dark Sauce.exe type: default -'995840': +"995840": installDir: Road to Guangdong launch: - config: @@ -442939,71 +436680,71 @@ japanese: Road to Guangdong - ストーリーベースのロードトリップ運転シミュレーター russian: Road to Guangdong - Сюжетная инди-игра о путешествиях с симулятором вождения spanish: Road to Guangdong - Título indie de simulador de conducción basado en la historia de un viaje por carretera -'995850': +"995850": installDir: MEMES launch: - config: oslist: windows executable: Game.exe type: none -'995870': +"995870": installDir: Toddler Shooter launch: - executable: Toddler Shooter.exe type: none -'995880': +"995880": installDir: BLOCK Multiplayer RPG launch: - config: oslist: windows executable: Block_MP.exe type: none -'995890': - installDir: Echoes of the Past The Citadels of Time Collector's Edition +"995890": + installDir: "Echoes of the Past The Citadels of Time Collector's Edition" launch: - config: oslist: windows executable: EchoesofthePast_TheCitadelsofTime.exe type: default -'995900': - installDir: Haunted Hotel Eclipse Collector's Edition +"995900": + installDir: "Haunted Hotel Eclipse Collector's Edition" launch: - config: oslist: windows executable: HauntedHotel_EclipseCE.exe type: default -'995910': - installDir: Redemption Cemetery Children's Plight Collector's Edition +"995910": + installDir: "Redemption Cemetery Children's Plight Collector's Edition" launch: - config: oslist: windows executable: RedemptionCemetery_ChildrensPlight.exe type: default -'995920': - installDir: Myths of the World Black Rose Collector's Edition +"995920": + installDir: "Myths of the World Black Rose Collector's Edition" launch: - config: oslist: windows executable: MythsOfTheWorld_BlackRose_CE.exe type: default -'995930': - installDir: Maestro Dark Talent Collector's Edition +"995930": + installDir: "Maestro Dark Talent Collector's Edition" launch: - config: oslist: windows executable: Maestro_DarkTalent_CE.exe type: default -'995980': +"995980": installDir: Fae Tactics launch: - description: Standard version executable: fae_tactics.exe type: default -'9960': +"9960": installDir: Haunted House launch: - executable: Launcher.exe -'996000': +"996000": installDir: Dark Data launch: - config: @@ -443014,21 +436755,21 @@ oslist: macos executable: DarkData.app type: none -'996080': - installDir: King's League II +"996080": + installDir: "King's League II" launch: - config: oslist: windows executable: Kings League II/Kings League II.exe type: default -'996140': +"996140": installDir: STRANGE AND WEIRD MUSEUM launch: - config: oslist: windows executable: STRANGE AND WEIRD MUSEUM.exe type: vr -'996160': +"996160": installDir: DuckQuest launch: - config: @@ -443043,14 +436784,14 @@ oslist: linux executable: game.i386 type: default -'996170': +"996170": installDir: Mage VR -Mini Version- launch: - config: oslist: windows executable: VR Mage.exe type: vr -'996180': +"996180": installDir: Cryptofall launch: - config: @@ -443065,34 +436806,34 @@ oslist: linux executable: cryptofall type: default -'996230': +"996230": installDir: tia.sav launch: - config: oslist: windows executable: Game.exe type: default -'996280': +"996280": installDir: Buttle Tank launch: - config: oslist: windows executable: Buttle Tank.exe type: default -'996380': +"996380": installDir: Smartphone Tycoon launch: - config: oslist: windows executable: Smartphone Tycoon.exe type: default -'996430': +"996430": installDir: Pilot Sports launch: - executable: pilotsports.exe type: default -'996450': - installDir: 7th Sea A Pirate's Pact +"996450": + installDir: "7th Sea A Pirate's Pact" launch: - config: oslist: windows @@ -443106,33 +436847,33 @@ oslist: linux executable: 7thSeaAPiratesPact type: none -'996470': +"996470": installDir: eFootball PES 2020 launch: - description: Launch executable: PES2020.exe type: none -'996550': - installDir: 'Kaidi,armed with a cat' +"996550": + installDir: "Kaidi,armed with a cat" launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Kaidi.exe type: none -'996580': +"996580": installDir: Spyro Reignited Trilogy launch: - executable: Spyro.exe type: default -'996620': +"996620": installDir: LCD Sports American Football launch: - config: oslist: windows executable: setup.exe type: default -'996650': +"996650": installDir: A Christmas Peril launch: - config: @@ -443141,9 +436882,9 @@ type: default - config: oslist: macos - executable: SnowJam.app\\Contents\\MacOS\\SnowJam + executable: "SnowJam.app\\\\Contents\\\\MacOS\\\\SnowJam" type: none -'996710': +"996710": installDir: GameOfTianHuo launch: - config: @@ -443151,22 +436892,22 @@ description: StartGame executable: TianHuoGame.exe type: default -'996730': +"996730": installDir: Unknown launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: oslist: windows executable: Game.exe type: default -'996770': +"996770": installDir: Moving Out launch: - config: oslist: windows executable: MovingOut.exe type: none -'996830': +"996830": installDir: Rules of The Mafia Trade & Blood launch: - config: @@ -443175,37 +436916,37 @@ type: default - config: oslist: macos - executable: Rules of The Mafia Trade & Blood.app\\Contents\\MacOS\\Rules of The Mafia Trade & Blood + executable: "Rules of The Mafia Trade & Blood.app\\\\Contents\\\\MacOS\\\\Rules of The Mafia Trade & Blood" type: default -'996860': +"996860": installDir: Planet Nine launch: - config: oslist: windows executable: Planet nine.exe type: default -'996920': +"996920": installDir: CONTINUE launch: - config: oslist: windows executable: CONTINUE.exe type: none -'996980': +"996980": installDir: Dis Pontibus launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Dis Pontibus.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: Dis Pontibus.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Dis Pontibus.x86_64 type: default @@ -443213,162 +436954,139 @@ oslist: macos executable: Contents/MacOS/Dis Pontibus type: default -'9970': +"9970": installDir: Star Raiders launch: - executable: StarRaiders.exe -'99700': +"99700": installDir: Nightsky launch: - config: oslist: windows executable: Nightsky.exe - config: - osarch: '32' + osarch: "32" oslist: linux description: NightSky (32-bit) executable: run-i386.sh - config: - osarch: '64' + osarch: "64" oslist: linux description: NightSky (64-bit) executable: run-x64.sh - config: - osarch: '64' + osarch: "64" oslist: macos description: Launch executable: NightSky.app -'997000': +"997000": installDir: OSIRIS launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: osiris.exe type: none -'997010': +"997010": installDir: Police Simulator Patrol Officers launch: - executable: Boston.exe type: default -'997030': +"997030": installDir: Earth Atlantis launch: - config: oslist: windows executable: earthatlantis.exe type: none -'997050': +"997050": installDir: Hentai Like a Boss launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: nw.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: nw.exe type: default -'997060': +"997060": installDir: Kotodama launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Kotodama The 7 Mysteries of Fujisawa.exe type: default -'997070': +"997070": installDir: Marvels Avengers launch: - config: - osarch: '64' + osarch: "64" oslist: windows - description: Launch Marvel's Avengers + description: "Launch Marvel's Avengers" executable: avengers.exe type: default - config: - betakey: >- - development, pub_qa_nxt_2, dev_intel_nxt, latest_ra, latest_rb, latest_rc, 1.8.2, 2.0.0, 2.0.1, 2.0.2, 2.0.3, - 2.0.4, 2.2.0, 2.2.0c, 2.2.0d, 2.2.1, 2.2.1a, 2.2.2, 2.2.3, latest_nxt, latest, pub_qa_1, pub_qa_2, - pub_qa_compat_1, ext_partner1, ext_partner2, pub_qa_dev, pub_qa_nxt, nixxes_dev, pub_qa_live, dev_intel, - dev_intel_2, capture_nxt, dev_nvidia_2 - osarch: '64' + betakey: "development, pub_qa_nxt_2, dev_intel_nxt, latest_ra, latest_rb, latest_rc, 1.8.2, 2.0.0, 2.0.1, 2.0.2, 2.0.3, 2.0.4, 2.2.0, 2.2.0c, 2.2.0d, 2.2.1, 2.2.1a, 2.2.2, 2.2.3, latest_nxt, latest, pub_qa_1, pub_qa_2, pub_qa_compat_1, ext_partner1, ext_partner2, pub_qa_dev, pub_qa_nxt, nixxes_dev, pub_qa_live, dev_intel, dev_intel_2, capture_nxt, dev_nvidia_2" + osarch: "64" oslist: windows - ownsdlc: '1179600' + ownsdlc: "1179600" description: Launch AV1 GM - description_loc: - english: Launch AV1 GM executable: AV1_x64_gm.exe - config: - betakey: >- - development, pub_qa_nxt_2, dev_intel_nxt, latest_ra, latest_rb, latest_rc, 1.8.2, 2.0.0, 2.0.1, 2.0.2, 2.0.3, - 2.0.4, 2.2.0, 2.2.0c, 2.2.0d, 2.2.1, 2.2.1a, 2.2.2, 2.2.3, latest_nxt, latest, pub_qa_1, pub_qa_2, - pub_qa_compat_1, ext_partner1, ext_partner2, pub_qa_dev, pub_qa_nxt, nixxes_dev, pub_qa_live, dev_intel, - dev_intel_2, capture_nxt, dev_nvidia_2 - osarch: '64' + betakey: "development, pub_qa_nxt_2, dev_intel_nxt, latest_ra, latest_rb, latest_rc, 1.8.2, 2.0.0, 2.0.1, 2.0.2, 2.0.3, 2.0.4, 2.2.0, 2.2.0c, 2.2.0d, 2.2.1, 2.2.1a, 2.2.2, 2.2.3, latest_nxt, latest, pub_qa_1, pub_qa_2, pub_qa_compat_1, ext_partner1, ext_partner2, pub_qa_dev, pub_qa_nxt, nixxes_dev, pub_qa_live, dev_intel, dev_intel_2, capture_nxt, dev_nvidia_2" + osarch: "64" oslist: windows - ownsdlc: '1179600' + ownsdlc: "1179600" description: Launch AV1 Final - description_loc: - english: Launch AV1 Final executable: AV1_x64_final.exe - - arguments: '-archive -norootchange -mainmenu -noassert -launcher -pix' + - arguments: "-archive -norootchange -mainmenu -noassert -launcher -pix" config: - betakey: >- - development, pub_qa_nxt_2, dev_intel_nxt, latest_ra, latest_rb, latest_rc, 1.8.2, 2.0.0, 2.0.1, 2.0.2, 2.0.3, - 2.0.4, 2.2.0, 2.2.0c, 2.2.0d, 2.2.1, 2.2.1a, 2.2.2, 2.2.3, latest_nxt, latest, pub_qa_1, pub_qa_2, - pub_qa_compat_1, ext_partner1, ext_partner2, pub_qa_dev, pub_qa_nxt, nixxes_dev, pub_qa_live, dev_intel, - dev_intel_2, capture_nxt, dev_nvidia_2 - osarch: '64' + betakey: "development, pub_qa_nxt_2, dev_intel_nxt, latest_ra, latest_rb, latest_rc, 1.8.2, 2.0.0, 2.0.1, 2.0.2, 2.0.3, 2.0.4, 2.2.0, 2.2.0c, 2.2.0d, 2.2.1, 2.2.1a, 2.2.2, 2.2.3, latest_nxt, latest, pub_qa_1, pub_qa_2, pub_qa_compat_1, ext_partner1, ext_partner2, pub_qa_dev, pub_qa_nxt, nixxes_dev, pub_qa_live, dev_intel, dev_intel_2, capture_nxt, dev_nvidia_2" + osarch: "64" oslist: windows - ownsdlc: '1179600' + ownsdlc: "1179600" description: Launch AV1 Release - description_loc: - english: Launch AV1 Release executable: AV1_x64_release.exe - - arguments: >- - -OLEnvironment=6 -noassert=true -showdebugdata=false -\"ActionGraph/Enable Logging\"=false -No_cheats=true - -freememwarning=false -EnableCpuReservation=false -\"cdcRender/Lighting/Show Too Many Lights Error\"=false - -\"cdcRender/Postprocessing/Bloom/Filter Out NaNs\"=true + - arguments: "-OLEnvironment=6 -noassert=true -showdebugdata=false -\\\"ActionGraph/Enable Logging\\\"=false -No_cheats=true -freememwarning=false -EnableCpuReservation=false -\\\"cdcRender/Lighting/Show Too Many Lights Error\\\"=false -\\\"cdcRender/Postprocessing/Bloom/Filter Out NaNs\\\"=true" config: betakey: build_valve - osarch: '64' + osarch: "64" oslist: windows description: Launch AV1 Final executable: AV1_x64_final.exe type: none - - arguments: '-OLEnvironment=4' + - arguments: "-OLEnvironment=4" config: betakey: dev_ut - osarch: '64' + osarch: "64" oslist: windows - ownsdlc: '1179600' + ownsdlc: "1179600" description: Launch AV1 UT executable: AV1_x64_final.exe type: none - - arguments: '-archive -norootchange -mainmenu -noassert -launcher' + - arguments: "-archive -norootchange -mainmenu -noassert -launcher" config: betakey: ext_capture - osarch: '64' + osarch: "64" oslist: windows description: Launch Screen Capture executable: av_cap.exe type: none - - arguments: '-archive -norootchange -mainmenu -noassert -launcher' + - arguments: "-archive -norootchange -mainmenu -noassert -launcher" config: betakey: capture_nxt - osarch: '64' + osarch: "64" oslist: windows description: Launch Screen Capture - description_loc: - english: Launch Screen Capture executable: AV1_x64_release_screencap.exe type: none nameLocalized: schinese: Marvel’s Avengers | 漫威复仇者 -'997170': +"997170": installDir: Zombie Scrapper launch: - config: @@ -443380,76 +437098,76 @@ executable: Zombie Scrapper.app type: default - config: - osarch: '32' + osarch: "32" oslist: linux executable: Zombie Scrapper.x86 type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: Zombie Scrapper.x86_64 type: default -'997180': +"997180": installDir: be you launch: - config: oslist: windows executable: BeYou.exe type: default -'997240': +"997240": installDir: Siluman Fantasy - First Half launch: - config: oslist: windows - executable: Game\\Game.exe + executable: "Game\\\\Game.exe" type: default -'997260': +"997260": installDir: Hyper Scuffle launch: - config: oslist: windows executable: Hyper Scuffle.exe type: default -'997270': +"997270": installDir: AoHuang launch: - config: oslist: windows executable: AoHuang.exe type: default -'997280': +"997280": installDir: Final_SIM launch: - config: oslist: windows executable: Final_SIM.exe type: default -'997290': {} -'997310': - installDir: Rolly's Adventure +"997290": {} +"997310": + installDir: "Rolly's Adventure" launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Rollys Adventure.exe type: default -'997340': +"997340": installDir: Star Destroyer launch: - config: oslist: windows executable: Star Destroyer.exe type: default -'997350': {} -'997370': +"997350": {} +"997370": installDir: SimpleMovie launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SimpleMovie.exe type: default -'997380': +"997380": installDir: The Sapling launch: - config: @@ -443457,33 +437175,33 @@ executable: the_sapling.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: the_sapling.x86_64 type: default -'997430': +"997430": installDir: The Mirum launch: - config: oslist: windows executable: Mirum.exe type: none -'997450': {} -'997480': +"997450": {} +"997480": installDir: Age of Solitaire launch: - config: oslist: windows executable: TheFarKingdomsAgeOfSolitaire.exe type: default -'997500': +"997500": installDir: Ship Fight launch: - config: oslist: windows executable: Ship Fight.exe type: none -'997530': +"997530": installDir: Caladria Chronicles launch: - config: @@ -443492,32 +437210,32 @@ type: default - config: oslist: macos - executable: Contents\\MacOS\\Caladria Chronicles + executable: "Contents\\\\MacOS\\\\Caladria Chronicles" type: none - config: oslist: linux executable: Caladria Chronicles.sh type: none -'997560': +"997560": installDir: Flash Point launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Flash Point.exe type: default -'997600': {} -'997630': {} -'997640': {} -'997650': {} -'997670': +"997600": {} +"997630": {} +"997640": {} +"997650": {} +"997670": installDir: Ninja Power Slasher launch: - config: oslist: windows executable: Ninja power slasher.exe type: default -'997700': +"997700": installDir: FairyInAJar launch: - config: @@ -443528,17 +437246,17 @@ - config: oslist: windows description: English Version - executable: \\ENV\\Game.exe + executable: "\\\\ENV\\\\Game.exe" type: option2 -'997710': +"997710": installDir: Ravenland launch: - config: oslist: windows executable: Ravenland.exe type: default -'997720': - installDir: Let's Learn Japanese! Hiragana +"997720": + installDir: "Let's Learn Japanese! Hiragana" launch: - config: oslist: windows @@ -443548,93 +437266,93 @@ german: Lasst uns Japanisch lernen! Hiragana latam: ¡Aprendamos Japonés! Hiragana spanish: ¡Aprendamos Japonés! Hiragana -'997730': +"997730": installDir: Deez launch: - executable: quest for death.exe type: default -'997760': +"997760": installDir: GGANG! launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: GGANG_1001.exe type: vr -'997770': +"997770": installDir: Dungeon Maze launch: - config: oslist: windows executable: DungeonMaze.exe type: vr -'997790': {} -'997820': {} -'997870': +"997790": {} +"997820": {} +"997870": installDir: City Defense launch: - config: oslist: windows executable: City Defense.exe type: default -'997900': +"997900": installDir: Ordinem launch: - config: oslist: windows executable: Ordinem.exe type: default -'997950': +"997950": installDir: Folding Edge launch: - config: oslist: windows executable: Hemlet.exe type: none -'9980': +"9980": installDir: The UnderGarden launch: - executable: TheUndergarden.exe -'998010': +"998010": installDir: chromaDeluxeSHG launch: - config: oslist: windows executable: nw.exe type: none -'998020': +"998020": installDir: Unearthing Mars 2 The Ancient War launch: - config: oslist: windows executable: UnearthingMars.exe type: vr -'99810': +"99810": installDir: Bulletstorm launch: - - executable: Binaries\\Win32\\ShippingPC-StormGame.exe -'998150': + - executable: "Binaries\\\\Win32\\\\ShippingPC-StormGame.exe" +"998150": installDir: Frozen launch: - config: oslist: windows executable: wildsuperman.exe type: default -'998220': +"998220": installDir: The Dungeon of Lulu Farea launch: - config: oslist: windows executable: Game.exe type: default -'998270': - installDir: The Other Airi's Adventure +"998270": + installDir: "The Other Airi's Adventure" launch: - config: oslist: windows executable: game.exe type: default -'998300': +"998300": installDir: AOC launch: - config: @@ -443643,7 +437361,7 @@ executable: game/bin/GameClient.exe type: default workingdir: game/bin/ -'998340': +"998340": installDir: DragonFang launch: - config: @@ -443658,78 +437376,78 @@ oslist: linux executable: Dragonfang.x86 type: none -'998400': {} -'998470': +"998400": {} +"998470": installDir: Adult Math launch: - config: oslist: windows executable: nw.exe type: default -'998480': +"998480": installDir: Gangsta Sniper 2 Revenge launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: GangstaSniper2.exe type: default -'998490': {} -'998530': +"998490": {} +"998530": installDir: Winter Sports Games launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: wintersportsgames.exe type: default -'998570': - installDir: De'Vine Card Game +"998570": + installDir: "De'Vine Card Game" launch: - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: betakey: game.exe oslist: windows executable: game.exe type: none - - arguments: '--in-process-gpu' + - arguments: "--in-process-gpu" config: betakey: osmac oslist: macos executable: game.app type: none -'998590': +"998590": installDir: Infernum launch: - - arguments: '-fullscreen' + - arguments: "-fullscreen" config: oslist: windows - executable: WindowsNoEditor\\INFERNUM.exe + executable: "WindowsNoEditor\\\\INFERNUM.exe" type: default -'998630': +"998630": installDir: Fated Era launch: - config: oslist: windows executable: Fated Era.exe type: default -'998640': {} -'998660': +"998640": {} +"998660": installDir: Sopwith VR launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: SopwithVR.exe type: vr -'998690': +"998690": installDir: Run Away launch: - config: oslist: windows executable: nw.exe type: none -'998730': +"998730": installDir: Hail To The King launch: - config: @@ -443744,7 +437462,7 @@ oslist: linux executable: Hail To The King.x86 type: none -'998740': +"998740": installDir: Ring of Pain launch: - config: @@ -443753,34 +437471,34 @@ type: none - config: oslist: macos - executable: Ring Of Pain.app\\Contents\\MacOS\\Ring Of Pain + executable: "Ring Of Pain.app\\\\Contents\\\\MacOS\\\\Ring Of Pain" type: none nameLocalized: schinese: 苦痛之环 Ring of Pain tchinese: 苦痛之環 Ring of Pain -'998760': +"998760": installDir: Chewing launch: - config: oslist: windows executable: Chewing.exe type: none -'998770': {} -'998780': +"998770": {} +"998780": installDir: AtaqueMarino launch: - config: oslist: windows executable: AtaqueMarino.exe type: none -'998790': +"998790": installDir: Piczle Lines DX+α launch: - config: oslist: windows executable: PiczleLinesDX.exe type: default -'998820': +"998820": installDir: Cortex launch: - config: @@ -443795,7 +437513,7 @@ oslist: windows executable: cortex.exe type: default -'998830': +"998830": installDir: The Last Roman Village launch: - config: @@ -443808,9 +437526,9 @@ type: default - config: oslist: macos - executable: The Last Roman Village.app\\Contents\\MacOS\\The Last Roman Village + executable: "The Last Roman Village.app\\\\Contents\\\\MacOS\\\\The Last Roman Village" type: default -'998850': +"998850": installDir: Knights of the Card Table launch: - config: @@ -443821,68 +437539,68 @@ oslist: macos executable: KotCT.app/Contents/MacOS/KotCT type: default -'998880': {} -'998890': +"998880": {} +"998890": installDir: The Colony launch: - config: oslist: windows executable: TheColony.exe type: default -'99890': +"99890": installDir: Darkspore launch: - - executable: DarksporeBin\\Darkspore.exe + - executable: "DarksporeBin\\\\Darkspore.exe" - description: View Support Information - executable: Support\\EA Help\\Electronic_Arts_Technical_Support.htm -'998930': + executable: "Support\\\\EA Help\\\\Electronic_Arts_Technical_Support.htm" +"998930": installDir: SeekGirl launch: - config: oslist: windows executable: SeekGirl.exe type: default -'998940': +"998940": installDir: The Invisible Guardian launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: TheInvisibleGuardian.exe type: default - config: - osarch: '32' + osarch: "32" oslist: windows executable: TheInvisibleGuardian.exe type: default - config: oslist: macos - executable: TheInvisibleGuardian.app\\Contents\\MacOS\\TheInvisibleGuardian + executable: "TheInvisibleGuardian.app\\\\Contents\\\\MacOS\\\\TheInvisibleGuardian" type: default -'998950': +"998950": installDir: Rhythm Nights launch: - executable: Rhythm Nights/Rhythm Nights.exe type: othervr - executable: Rhythm Nights/vive/Rhythm Nights.exe type: vr -'998990': +"998990": installDir: Psyvariar Delta launch: - executable: PsyvariarDelta.exe type: none -'9990': +"9990": installDir: Ghostbusters Sanctum of Slime launch: - - description: 'Launch Ghostbusters: Sanctum of Slime' - executable: Game\\GhostBustersSOS.exe -'99900': + - description: "Launch Ghostbusters: Sanctum of Slime" + executable: "Game\\\\GhostBustersSOS.exe" +"99900": installDir: Spiral Knights launch: - - arguments: '-Dsun.java2d.d3d=false -Dcheck_unpacked=true -jar getdown-pro.jar . client' + - arguments: "-Dsun.java2d.d3d=false -Dcheck_unpacked=true -jar getdown-pro.jar . client" config: oslist: windows - executable: java_vm\\bin\\javaw.exe + executable: "java_vm\\\\bin\\\\javaw.exe" - config: oslist: macos description: app launch @@ -443893,7 +437611,7 @@ description: Spiral Knights with your own JVM executable: run.sh type: option2 -'999020': +"999020": installDir: MZZXLC launch: - config: @@ -443902,52 +437620,52 @@ type: none nameLocalized: japanese: ロックマン ゼロ&ゼクス ダブルヒーローコレクション -'999030': +"999030": installDir: Gamepad Massage launch: - - arguments: ' -Dfile.encoding=UTF-8 -classpath bin;lib;bin/*;lib/* com.xenoamess.cyan_potion.base.GameEntrance SettingFilePath=settings/GamepadMassageGuiSettings.x8l -XX:+UnlockExperimentalVMOptions -XX:+UseShenandoahGC' + - arguments: " -Dfile.encoding=UTF-8 -classpath bin;lib;bin/*;lib/* com.xenoamess.cyan_potion.base.GameEntrance SettingFilePath=settings/GamepadMassageGuiSettings.x8l -XX:+UnlockExperimentalVMOptions -XX:+UseShenandoahGC" config: oslist: windows - executable: jre\\bin\\javaw.exe + executable: "jre\\\\bin\\\\javaw.exe" type: default - - arguments: ' -Dfile.encoding=UTF-8 -classpath bin;lib;bin/*;lib/* com.xenoamess.cyan_potion.base.GameEntrance SettingFilePath=settings/GamepadMassageSettings.x8l -XX:+UnlockExperimentalVMOptions -XX:+UseShenandoahGC' + - arguments: " -Dfile.encoding=UTF-8 -classpath bin;lib;bin/*;lib/* com.xenoamess.cyan_potion.base.GameEntrance SettingFilePath=settings/GamepadMassageSettings.x8l -XX:+UnlockExperimentalVMOptions -XX:+UseShenandoahGC" config: oslist: windows description: Pure Massage Mode - executable: jre\\bin\\javaw.exe + executable: "jre\\\\bin\\\\javaw.exe" type: option1 - - arguments: ' -Dfile.encoding=UTF-8 -classpath \"bin:lib:bin/*:lib/*\" com.xenoamess.cyan_potion.base.GameEntrance SettingFilePath=settings/GamepadMassageGuiSettings.x8l -XX:+UnlockExperimentalVMOptions -XX:+UseShenandoahGC' + - arguments: " -Dfile.encoding=UTF-8 -classpath \\\"bin:lib:bin/*:lib/*\\\" com.xenoamess.cyan_potion.base.GameEntrance SettingFilePath=settings/GamepadMassageGuiSettings.x8l -XX:+UnlockExperimentalVMOptions -XX:+UseShenandoahGC" config: - osarch: '64' + osarch: "64" oslist: linux - executable: jre\\bin\\java + executable: "jre\\\\bin\\\\java" type: default - - arguments: ' -Dfile.encoding=UTF-8 -classpath \"bin:lib:bin/*:lib/*\" com.xenoamess.cyan_potion.base.GameEntrance SettingFilePath=settings/GamepadMassageSettings.x8l -XX:+UnlockExperimentalVMOptions -XX:+UseShenandoahGC' + - arguments: " -Dfile.encoding=UTF-8 -classpath \\\"bin:lib:bin/*:lib/*\\\" com.xenoamess.cyan_potion.base.GameEntrance SettingFilePath=settings/GamepadMassageSettings.x8l -XX:+UnlockExperimentalVMOptions -XX:+UseShenandoahGC" config: - osarch: '64' + osarch: "64" oslist: linux description: Pure Massage Mode - executable: jre\\bin\\java + executable: "jre\\\\bin\\\\java" type: option1 -'999040': +"999040": installDir: K.O.M.A launch: - config: oslist: windows executable: K.O.M.A.exe type: vr -'99910': +"99910": installDir: Puzzle Pirates launch: - - arguments: '-Dsun.java2d.d3d=false -jar getdown-dop.jar . client' + - arguments: "-Dsun.java2d.d3d=false -jar getdown-dop.jar . client" config: oslist: windows - executable: java_vm\\bin\\javaw.exe + executable: "java_vm\\\\bin\\\\javaw.exe" - config: oslist: macos executable: run.sh -'999170': {} -'999190': +"999170": {} +"999190": installDir: EndZVillage launch: - config: @@ -443956,13 +437674,13 @@ type: default - config: oslist: macos - executable: EndZ Village.app\\Contents\\MacOS\\EndZ Village + executable: "EndZ Village.app\\\\Contents\\\\MacOS\\\\EndZ Village" type: default - config: oslist: linux executable: EndZ Village.x86_64 type: default -'999200': +"999200": installDir: Offendron Warrior launch: - config: @@ -443972,7 +437690,7 @@ nameLocalized: english: Offendron Warrior koreana: 오펜드론 전사 (Offendron Warrior) -'999220': +"999220": installDir: Amnesia Rebirth launch: - config: @@ -443983,68 +437701,68 @@ oslist: linux executable: Amnesia2.bin.x86_64 type: default -'999250': +"999250": installDir: Chucky launch: - config: oslist: windows executable: Chucky.exe type: default -'999270': +"999270": installDir: War Builder League launch: - config: oslist: windows executable: WarBuilderLeague.exe type: default -'999280': +"999280": installDir: Bahama Conch n Burger Shack launch: - config: oslist: windows executable: BahamaConchBurgerShack.exe type: default -'999290': +"999290": installDir: Nine Hentai Babes launch: - executable: Nine Hentai Babes.exe type: default -'999310': +"999310": installDir: THE NED BALLS launch: - executable: THE NED BALLS.exe type: default -'999330': +"999330": installDir: Juggernauts launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Juggernauts.exe type: default -'999340': +"999340": installDir: Nature Hunter launch: - config: oslist: windows executable: Nature_Hunter.exe type: none -'999350': +"999350": installDir: Epics of the Distant Realm Remastered Edition launch: - config: oslist: windows executable: Epics of the Distant Realm.exe type: default -'999360': +"999360": installDir: soul_room launch: - config: oslist: windows executable: soul_room.exe type: default -'999390': {} -'999410': +"999390": {} +"999410": installDir: Magnibox launch: - config: @@ -444055,16 +437773,16 @@ oslist: windows executable: magnibox.exe type: default -'999430': +"999430": installDir: Santa Tracker launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: santa.exe type: default - config: - osarch: '64' + osarch: "64" oslist: linux executable: santa.x86_64 type: default @@ -444072,60 +437790,60 @@ oslist: macos executable: santa2.app type: default -'999450': {} -'999480': +"999450": {} +"999480": installDir: Hentai - Color by Number launch: - config: oslist: windows executable: Hentai - Color by Number.exe type: default -'999540': +"999540": installDir: Scroll2Read launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Scrol2Read.exe type: none -'999560': +"999560": installDir: Fragile Equilibrium launch: - config: oslist: windows executable: fragile_equilibrium.exe type: default -'999570': {} -'999640': +"999570": {} +"999640": installDir: Cube Defense launch: - executable: Cube Defense.exe type: none -'999660': +"999660": installDir: SAMURAI SHODOWN NEOGEO COLLECTION launch: - config: - osarch: '64' + osarch: "64" oslist: windows executable: Samurai Shodown Collection.exe type: default nameLocalized: japanese: サムライスピリッツ ネオジオコレクション -'999750': +"999750": installDir: BLASTER LiLO launch: - config: oslist: windows executable: BLlauncher.exe type: none -'999760': +"999760": installDir: Mobile Wars X launch: - config: oslist: windows executable: Mobile Wars X.exe type: default -'999830': +"999830": installDir: Becalm launch: - config: @@ -444140,7 +437858,7 @@ oslist: linux executable: Becalm.x86_64 type: default -'999860': +"999860": installDir: EnemyOnBoard launch: - config: @@ -444151,21 +437869,21 @@ oslist: macos executable: enemy-on-board.app type: none -'999890': +"999890": installDir: Bruken launch: - config: oslist: windows executable: Bruken.exe type: default -'999930': +"999930": installDir: Fantasy Sino-Japanese War 幻想甲午 launch: - config: oslist: windows executable: game.exe type: default -'999990': +"999990": installDir: Bouncing Hero launch: - config: diff --git a/data/wiki-game-cache.yaml b/data/wiki-game-cache.yaml index 8640fc3e..a80ecbc6 100644 --- a/data/wiki-game-cache.yaml +++ b/data/wiki-game-cache.yaml @@ -1,121 +1,118 @@ -'! That Bastard Is Trying To Steal Our Gold !': +--- +"! That Bastard Is Trying To Steal Our Gold !": pageId: 44303 steam: 449940 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\SOFTWARE\WTFOMGames\That Dick Trying To Steal Our Gold}}' - - '{{Game data/saves|Windows|{{p|hkcu}}\SOFTWARE\WTFOMGames\That Dick Trying To Steal Our Gold}}' -'!4RC4N01D!': + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\WTFOMGames\\That Dick Trying To Steal Our Gold}}" + - "{{Game data/saves|Windows|{{p|hkcu}}\\SOFTWARE\\WTFOMGames\\That Dick Trying To Steal Our Gold}}" +"!4RC4N01D!": pageId: 79714 steam: 777010 -'!4RC4N01D! 2: Retro Edition': +"!4RC4N01D! 2: Retro Edition": pageId: 81494 steam: 791550 -'!4RC4N01D! 3: Cold Space': +"!4RC4N01D! 3: Cold Space": pageId: 87950 steam: 809370 -'!4RC4N01D! 4: Kohbeep Edition': +"!4RC4N01D! 4: Kohbeep Edition": pageId: 90162 steam: 824660 -'!Anyway!': +"!Anyway!": pageId: 95445 steam: 866510 templates: - - '{{Game data/saves|Windows|{{p|localappdata}}\anyway}}' -'!BurnToDie!': + - "{{Game data/saves|Windows|{{p|localappdata}}\\anyway}}" +"!BurnToDie!": pageId: 112320 steam: 928700 -'!Dead Pixels Adventure!': +"!Dead Pixels Adventure!": pageId: 96793 steam: 873700 -'!LABrpgUP!': +"!LABrpgUP!": pageId: 95591 steam: 870990 -'!Peace Phantom 2!': +"!Peace Phantom 2!": pageId: 88077 steam: 805170 -'"LIFE" not found': +"\"LIFE\" not found": pageId: 178903 steam: 1908870 $1 Ride: pageId: 41997 steam: 508290 -'''83': +"'83": pageId: 136088 steam: 1059220 -'''90s Football Stars': +"'90s Football Stars": pageId: 98644 steam: 879310 -'''Member the Alamo?': +"'Member the Alamo?": pageId: 164909 steam: 1364510 -'''n Verlore Verstand': +"'n Verlore Verstand": pageId: 43728 steam: 439550 -'***': +"***": pageId: 129579 steam: 1034230 -.Age: +".Age": pageId: 122912 steam: 638510 -.EXE: +".EXE": pageId: 33500 steam: 471640 -.Projekt: +".Projekt": pageId: 88752 steam: 759000 templates: - - '{{Game data/saves|Windows|{{p|hkcu}}/Software/Stampede Games/.projekt/}}' -'.T.E.S.T: Expected Behaviour': + - "{{Game data/saves|Windows|{{p|hkcu}}/Software/Stampede Games/.projekt/}}" +".T.E.S.T: Expected Behaviour": pageId: 82680 steam: 771710 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Veslo Games\Test Expected Behaviour}}' - - '{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/Veslo Games/Test Expected Behaviour/pref}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Veslo Games\Test Expected Behaviour\default.profile}}' - - '{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/Veslo Games/Test Expected Behaviour/default.profile}}' -.fall: + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Veslo Games\\Test Expected Behaviour}}" + - "{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/Veslo Games/Test Expected Behaviour/pref}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Veslo Games\\Test Expected Behaviour\\default.profile}}" + - "{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/Veslo Games/Test Expected Behaviour/default.profile}}" +".fall": pageId: 149967 steam: 1087950 -.hack//G.U. Last Recode: +".hack//G.U. Last Recode": pageId: 70532 steam: 525480 templates: - - '{{Game data/saves|Windows|{{p|steam}}\userdata\{{p|uid}}\525480\remote\savedata\}}' -.kkrieger: + - "{{Game data/saves|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\525480\\remote\\savedata\\}}" +".kkrieger": pageId: 18872 0 A.D.: pageId: 6203 templates: - - '{{Game data/config|Windows|{{p|appdata}}\0ad}}' - - '{{Game data/config|Linux|{{P|xdgconfighome}}/0ad/}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\0ad\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application\ Support/0ad/}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/0ad/}}' + - "{{Game data/config|Windows|{{p|appdata}}\\0ad}}" + - "{{Game data/config|Linux|{{P|xdgconfighome}}/0ad/}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\0ad\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application\\ Support/0ad/}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/0ad/}}" 0 Day: pageId: 53391 steam: 554920 -'0000': +"0000": pageId: 77351 steam: 639880 007 Legends: pageId: 31663 steam: 211670 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Activision\007 Legends\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Activision\007 Legends\}}' -'007: Licence to Kill': + - "{{Game data/config|Windows|{{p|localappdata}}\\Activision\\007 Legends\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Activision\\007 Legends\\}}" +"007: Licence to Kill": pageId: 176727 -'007: Quantum of Solace': +"007: Quantum of Solace": pageId: 21826 steam: 10080 templates: - - >- - {{Game data/config|Windows|{{p|appdata}}\Activision\Quantum of - Solace\players\{{p|uid}}\config.cfg|{{p|programdata}}\Activision\Quantum of Solace\}} - - >- - {{Game data/saves|Windows|{{p|appdata}}\Activision\Quantum of - Solace\players\{{p|uid}}\config.cfg|{{p|localappdata}}\Microsoft\XLive\Content\01100001007F57F2\}} -03.04: + - "{{Game data/config|Windows|{{p|appdata}}\\Activision\\Quantum of Solace\\players\\{{p|uid}}\\config.cfg|{{p|programdata}}\\Activision\\Quantum of Solace\\}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Activision\\Quantum of Solace\\players\\{{p|uid}}\\config.cfg|{{p|localappdata}}\\Microsoft\\XLive\\Content\\01100001007F57F2\\}}" +"03.04": pageId: 124362 steam: 952950 0Gravity: @@ -125,48 +122,48 @@ $1 Ride: pageId: 17027 steam: 278440 templates: - - '{{Game data/config|Windows|{{p|appdata}}\0RBITALIS\}}' - - '{{Game data/config|Steam|{{p|steam}}/userdata/{{P|uid}}/278440/remote/}}' - - '{{Game data/saves|Windows|{{p|appdata}}\0RBITALIS\}}' - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{P|uid}}/278440/remote/}}' + - "{{Game data/config|Windows|{{p|appdata}}\\0RBITALIS\\}}" + - "{{Game data/config|Steam|{{p|steam}}/userdata/{{P|uid}}/278440/remote/}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\0RBITALIS\\}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{P|uid}}/278440/remote/}}" 0°N 0°W: pageId: 67968 steam: 670750 1 Hit Kill: pageId: 103249 steam: 882750 -'1 Moment of Time: Silentville': +"1 Moment of Time: Silentville": pageId: 37981 steam: 497400 templates: - - '{{Game data/config|Windows|{{p|appdata}}\2Monkeys\CrossMoT\Settings.sav}}' - - '{{Game data/saves|Windows|{{p|appdata}}\2Monkeys\CrossMoT\}}' + - "{{Game data/config|Windows|{{p|appdata}}\\2Monkeys\\CrossMoT\\Settings.sav}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\2Monkeys\\CrossMoT\\}}" 1 Screen Platformer: pageId: 93261 steam: 791180 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\OneScreenPlatformStaticGM14\}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\OneScreenPlatformStaticGM14\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\OneScreenPlatformStaticGM14\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\OneScreenPlatformStaticGM14\\}}" 1 ⛷ 1: pageId: 112420 steam: 932490 -'1, 2, 3... Bruegel!': +"1, 2, 3... Bruegel!": pageId: 135461 steam: 1071310 -'1,000 Heads Among the Trees': +"1,000 Heads Among the Trees": pageId: 45316 steam: 406730 1-2-Swift: pageId: 57105 steam: 583570 -'1-Bit Revival: The Residuals of Null': +"1-Bit Revival: The Residuals of Null": pageId: 130036 steam: 1025480 1... 2... 3... KICK IT! (Drop That Beat Like an Ugly Baby): pageId: 18566 steam: 15540 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Dejobaan Games\Ugly Baby}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Dejobaan Games\\Ugly Baby}}" 1/4平方米的星空: pageId: 104871 steam: 899190 @@ -187,16 +184,16 @@ $1 Ride: pageId: 15676 steam: 271670 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\10_Second_Ninja\settings.ini}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/com.yoyogames.macyoyorunner/settings.ini}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\10_Second_Ninja\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/com.yoyogames.macyoyorunner/}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\10_Second_Ninja\\settings.ini}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/com.yoyogames.macyoyorunner/settings.ini}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\10_Second_Ninja\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/com.yoyogames.macyoyorunner/}}" 10 Second Ninja X: pageId: 41408 steam: 435790 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\_10_Second_Ninja_X_Test\asyncsavegroup\10SNX.sav}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\_10_Second_Ninja_X_Test\asyncsavegroup\10SNX.sav}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\_10_Second_Ninja_X_Test\\asyncsavegroup\\10SNX.sav}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\_10_Second_Ninja_X_Test\\asyncsavegroup\\10SNX.sav}}" 10 Second Shuriken: pageId: 145152 steam: 1130440 @@ -207,16 +204,16 @@ $1 Ride: pageId: 30014 steam: 339240 templates: - - '{{Game data/config|Windows|{{p|HKCU}}\SOFTWARE\Ten Tree Games\10 Years After\}}' - - '{{Game data/saves|Windows|{{p|HKCU}}\SOFTWARE\Ten Tree Games\10 Years After\}}' -'10,000,000': + - "{{Game data/config|Windows|{{p|HKCU}}\\SOFTWARE\\Ten Tree Games\\10 Years After\\}}" + - "{{Game data/saves|Windows|{{p|HKCU}}\\SOFTWARE\\Ten Tree Games\\10 Years After\\}}" +"10,000,000": pageId: 14386 steam: 227580 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\EightyEightGames\10000000\}}' - - '{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/EightyEightGames/10000000/}}' - - '{{Game data/saves|Windows|{{p|hkcu}}\Software\EightyEightGames\10000000\}}' - - '{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/EightyEightGames/10000000/}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\EightyEightGames\\10000000\\}}" + - "{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/EightyEightGames/10000000/}}" + - "{{Game data/saves|Windows|{{p|hkcu}}\\Software\\EightyEightGames\\10000000\\}}" + - "{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/EightyEightGames/10000000/}}" 10-4 Indirect Contact: pageId: 132361 steam: 1055140 @@ -226,7 +223,7 @@ $1 Ride: 100 Seconds: pageId: 88057 steam: 796580 -100 Years' War: +"100 Years' War": pageId: 144256 steam: 1025530 100$: @@ -236,19 +233,17 @@ $1 Ride: pageId: 27256 steam: 282800 templates: - - '{{Game data/config|Windows|{{p|game}}\config.dat}}' - - '{{Game data/saves|Windows|{{p|game}}\user.dat}}' + - "{{Game data/config|Windows|{{p|game}}\\config.dat}}" + - "{{Game data/saves|Windows|{{p|game}}\\user.dat}}" 1000 Amps: pageId: 22797 steam: 205690 templates: - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Brandon Brizzi/1000 Amps/}}' - - '{{Game data/config|Steam|{{p|game}}/settings}}' - - >- - {{Game data/saves|Windows|{{p|appdata}}\Macromedia\Flash - Player\#SharedObjects\{random}\localhost\games\Desura\Common\1000-amps\1000AmpsReWin.exe}} - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Brandon Brizzi/1000 Amps/}}' - - '{{Game data/saves|Steam|{{p|game}}/save*}}' + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Brandon Brizzi/1000 Amps/}}" + - "{{Game data/config|Steam|{{p|game}}/settings}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Macromedia\\Flash Player\\#SharedObjects\\{random}\\localhost\\games\\Desura\\Common\\1000-amps\\1000AmpsReWin.exe}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Brandon Brizzi/1000 Amps/}}" + - "{{Game data/saves|Steam|{{p|game}}/save*}}" 1000 Days to Escape: pageId: 141369 steam: 1103100 @@ -278,33 +273,33 @@ $1 Ride: 1001 Jigsaw. Myths of ancient Greece: pageId: 154055 steam: 1165430 -'1001 Jigsaw. World Tour: Australian Puzzles': +"1001 Jigsaw. World Tour: Australian Puzzles": pageId: 124287 steam: 970880 -'1001 Jigsaw. World Tour: Europe': +"1001 Jigsaw. World Tour: Europe": pageId: 144005 renamedFrom: - - '1001 Jigsaw World Tour: Europe' + - "1001 Jigsaw World Tour: Europe" steam: 1128830 -'1001 Jigsaw. World Tour: France': +"1001 Jigsaw. World Tour: France": pageId: 149574 steam: 1095870 -'1001 Jigsaw. World Tour: Great America': +"1001 Jigsaw. World Tour: Great America": pageId: 124333 steam: 970910 -'1001 Jigsaw. World Tour: London': +"1001 Jigsaw. World Tour: London": pageId: 124411 steam: 970890 1001 Spikes: pageId: 17553 steam: 260790 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\1001 Spikes\Saves\Common.dat}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/1001 Spikes/}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/1001 spikes/}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\1001 Spikes\Saves\Profile*.sav}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/1001 Spikes/}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/1001 spikes/}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\1001 Spikes\\Saves\\Common.dat}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/1001 Spikes/}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/1001 spikes/}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\1001 Spikes\\Saves\\Profile*.sav}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/1001 Spikes/}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/1001 spikes/}}" 1001st Hyper Tower: pageId: 128377 steam: 958050 @@ -312,49 +307,47 @@ $1 Ride: pageId: 59222 steam: 368000 templates: - - '{{Game data/config|Windows|{{P|game}}}}' - - '{{Game data/saves|Windows|{{P|game}}}}' + - "{{Game data/config|Windows|{{P|game}}}}" + - "{{Game data/saves|Windows|{{P|game}}}}" 100nya: pageId: 53061 steam: 553830 -'101 Dalmatians: Escape from DeVil Manor': +"101 Dalmatians: Escape from DeVil Manor": pageId: 176904 101 Ways to Die: pageId: 44098 steam: 413480 -'1010': +"1010": pageId: 77982 steam: 761190 -'101010': +"101010": pageId: 149219 steam: 1081800 -'102 Dalmatians: Puppies to the Rescue': +"102 Dalmatians: Puppies to the Rescue": pageId: 55326 templates: - - '{{Game data/saves|Windows|{{p|game}}\savegame.dat}}' -'103': + - "{{Game data/saves|Windows|{{p|game}}\\savegame.dat}}" +"103": pageId: 105455 steam: 913850 templates: - - >- - {{Game - data/config|Windows|{{p|localappdata}}\OneZeroThree\Saved\SaveGames|{{p|localappdata}}\OneZeroThree\Saved\Config\WindowsNoEditor}} - - '{{Game data/saves|Windows|{{p|localappdata}}\OneZeroThree\Saved\SaveGames}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\OneZeroThree\\Saved\\SaveGames|{{p|localappdata}}\\OneZeroThree\\Saved\\Config\\WindowsNoEditor}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\OneZeroThree\\Saved\\SaveGames}}" 11-11 Memories Retold: pageId: 105391 steam: 735580 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Bandai Namco\11-11: Memories Retold\}}' - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\735580\remote\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Bandai Namco\\11-11: Memories Retold\\}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\735580\\remote\\}}" 112 Operator: pageId: 128567 steam: 793460 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\JutsuGames\112 Operator\Config\playerConfig.json}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\JutsuGames\112 Operator\Saves}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\JutsuGames\\112 Operator\\Config\\playerConfig.json}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\JutsuGames\\112 Operator\\Saves}}" 112th Seed: pageId: 176829 -'1166': +"1166": pageId: 56687 steam: 581810 11th Dream: @@ -373,96 +366,96 @@ $1 Ride: pageId: 31758 steam: 342580 templates: - - '{{Game data/config|Windows|{{P|appdata}}\ZOG\Hercules\Settings.sav}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/ZOG/Hercules/Settings.sav}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.Saves/ZOG/Hercules/Settings.sav}}' - - '{{Game data/saves|Windows|{{P|appdata}}\ZOG\Hercules\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/ZOG/Hercules/}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.Saves/ZOG/Hercules/}}' -'12 Labours of Hercules II: The Cretan Bull': + - "{{Game data/config|Windows|{{P|appdata}}\\ZOG\\Hercules\\Settings.sav}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/ZOG/Hercules/Settings.sav}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.Saves/ZOG/Hercules/Settings.sav}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\ZOG\\Hercules\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/ZOG/Hercules/}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.Saves/ZOG/Hercules/}}" +"12 Labours of Hercules II: The Cretan Bull": pageId: 34863 steam: 360640 templates: - - '{{Game data/config|Windows|{{p|APPDATA}}\ZOG\Hercules2\Settings.sav}}' - - '{{Game data/saves|Windows|{{p|APPDATA}}\ZOG\Hercules2\}}' -'12 Labours of Hercules III: Girl Power': + - "{{Game data/config|Windows|{{p|APPDATA}}\\ZOG\\Hercules2\\Settings.sav}}" + - "{{Game data/saves|Windows|{{p|APPDATA}}\\ZOG\\Hercules2\\}}" +"12 Labours of Hercules III: Girl Power": pageId: 34865 steam: 360650 templates: - - '{{Game data/config|Windows|{{p|APPDATA}}\ZOG\Hercules3\Settings.sav}}' - - '{{Game data/saves|Windows|{{p|APPDATA}}\ZOG\Hercules3\}}' -'12 Labours of Hercules IV: Mother Nature': + - "{{Game data/config|Windows|{{p|APPDATA}}\\ZOG\\Hercules3\\Settings.sav}}" + - "{{Game data/saves|Windows|{{p|APPDATA}}\\ZOG\\Hercules3\\}}" +"12 Labours of Hercules IV: Mother Nature": pageId: 34867 steam: 396800 -'12 Labours of Hercules IX: A Hero''s Moonwalk': +"12 Labours of Hercules IX: A Hero's Moonwalk": pageId: 148573 steam: 1026070 -'12 Labours of Hercules V: Kids of Hellas': +"12 Labours of Hercules V: Kids of Hellas": pageId: 33557 steam: 491330 -'12 Labours of Hercules VI: Race for Olympus': +"12 Labours of Hercules VI: Race for Olympus": pageId: 55047 steam: 567800 templates: - - '{{Game data/config|Windows|{{P|appdata}}\ZOG\Hercules6CE\Settings.sav}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/ZOG/Hercules6CE/Settings.sav}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.Saves/ZOG/Hercules6CE/Settings.sav}}' - - '{{Game data/saves|Windows|{{P|appdata}}\ZOG\Hercules6CE\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/ZOG/Hercules6CE/}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.Saves/ZOG/Hercules6CE/}}' -'12 Labours of Hercules VII: Fleecing the Fleece': + - "{{Game data/config|Windows|{{P|appdata}}\\ZOG\\Hercules6CE\\Settings.sav}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/ZOG/Hercules6CE/Settings.sav}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.Saves/ZOG/Hercules6CE/Settings.sav}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\ZOG\\Hercules6CE\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/ZOG/Hercules6CE/}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.Saves/ZOG/Hercules6CE/}}" +"12 Labours of Hercules VII: Fleecing the Fleece": pageId: 79720 steam: 663210 -'12 Labours of Hercules VIII: How I Met Megara': +"12 Labours of Hercules VIII: How I Met Megara": pageId: 125416 steam: 938310 12 Orbits: pageId: 51667 steam: 529950 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Roman Uhlig\12 orbits}}' - - '{{Game data/config|OS X|{{p|osxhome}}/.config/unity3d/Roman Uhlig/12 orbits}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/Library/Preferences/unity.Roman Uhlig.12 orbits.plist}}' - - '{{Game data/saves|Windows|{{p|hkcu}}\Software\Roman Uhlig\12 orbits}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/.config/unity3d/Roman Uhlig/12 orbits}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/Library/Preferences/unity.Roman Uhlig.12 orbits.plist}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Roman Uhlig\\12 orbits}}" + - "{{Game data/config|OS X|{{p|osxhome}}/.config/unity3d/Roman Uhlig/12 orbits}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/Library/Preferences/unity.Roman Uhlig.12 orbits.plist}}" + - "{{Game data/saves|Windows|{{p|hkcu}}\\Software\\Roman Uhlig\\12 orbits}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/.config/unity3d/Roman Uhlig/12 orbits}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/Library/Preferences/unity.Roman Uhlig.12 orbits.plist}}" 12 is Better Than 6: pageId: 38569 steam: 410110 steamSide: - 411110 - - 450830 - 450820 + - 450830 templates: - - '{{Game data/config|Windows|{{p|appdata}}\_12ibt6\settings.ini}}' - - '{{Game data/saves|Windows|{{p|appdata}}\_12ibt6\savedata.ini}}' + - "{{Game data/config|Windows|{{p|appdata}}\\_12ibt6\\settings.ini}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\_12ibt6\\savedata.ini}}" 123 Slaughter Me Street: pageId: 34869 steam: 405180 123 Slaughter Me Street 2: pageId: 52682 steam: 551190 -'1248': +"1248": pageId: 128409 steam: 814510 13 Cycles: pageId: 95341 steam: 862790 -'140': +"140": gog: 1096313866 gogSide: - 1087788668 pageId: 18518 steam: 242820 templates: - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Preferences/unity.JeppeCarlsen.140.plist}}' - - '{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/JeppeCarlsen/140/}}' - - '{{Game data/saves|Windows|{{p|hkcu}}\SOFTWARE\JeppeCarlsen\140}}' - - '{{Game data/saves|Linux|{{p|game}}/140.sav}}' -'1406': + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Preferences/unity.JeppeCarlsen.140.plist}}" + - "{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/JeppeCarlsen/140/}}" + - "{{Game data/saves|Windows|{{p|hkcu}}\\SOFTWARE\\JeppeCarlsen\\140}}" + - "{{Game data/saves|Linux|{{p|game}}/140.sav}}" +"1406": pageId: 130096 steam: 1043350 -'141': +"141": pageId: 153077 steam: 1140110 15 Days: @@ -470,131 +463,127 @@ $1 Ride: pageId: 48324 steam: 342990 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\House of Tales\15Days}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\15 Days Savegames}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\House of Tales\\15Days}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\15 Days Savegames}}" 15 Defense: pageId: 60442 steam: 599090 15 Seconds: pageId: 94565 steam: 856350 -'150,000 B.C.': +"150,000 B.C.": pageId: 95397 steam: 864940 16 Bit Arena: pageId: 33451 steam: 347630 -'16 Planes:Return': +"16 Planes:Return": pageId: 124464 steam: 986770 16bit Trader: pageId: 31459 steam: 375460 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\SOFTWARE\Forever Entertainment\16bit Trader\}}' - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/375460/remote/}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\Forever Entertainment\\16bit Trader\\}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/375460/remote/}}" 16bit vs Reality: pageId: 164851 steam: 1305450 -'171': +"171": pageId: 184770 steam: 1269370 -'1775: Rebellion': +"1775: Rebellion": pageId: 38967 steam: 422610 18 Floors: pageId: 103433 steam: 855320 -'18 Wheels of Steel: Across America': +"18 Wheels of Steel: Across America": gog: 2006903941 pageId: 29601 steam: 514160 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\18 WoS Across - America\config.cfg|{{p|userprofile\Documents}}\18 WoS Across America\hw_caps.def}} - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\18 WoS Across America\saves\}}' -'18 Wheels of Steel: American Long Haul': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\18 WoS Across America\\config.cfg|{{p|userprofile\\Documents}}\\18 WoS Across America\\hw_caps.def}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\18 WoS Across America\\saves\\}}" +"18 Wheels of Steel: American Long Haul": gog: 2034202455 pageId: 25378 steam: 12520 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\18 WoS American Long Haul\}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\18 WoS American Long Haul\save\}}' -'18 Wheels of Steel: Convoy': + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\18 WoS American Long Haul\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\18 WoS American Long Haul\\save\\}}" +"18 Wheels of Steel: Convoy": gog: 1377450511 pageId: 28619 steam: 514170 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\18 WoS Convoy\}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\18 WoS Convoy\save\}}' -'18 Wheels of Steel: Extreme Trucker': + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\18 WoS Convoy\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\18 WoS Convoy\\save\\}}" +"18 Wheels of Steel: Extreme Trucker": gog: 1935795441 pageId: 24873 steam: 33730 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\18 WoS Extreme Trucker\}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\18 WoS Extreme Trucker\profile##}}' -'18 Wheels of Steel: Extreme Trucker 2': + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\18 WoS Extreme Trucker\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\18 WoS Extreme Trucker\\profile##}}" +"18 Wheels of Steel: Extreme Trucker 2": gog: 1775839845 pageId: 25376 steam: 362780 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\18 WoS Extreme Trucker 2\}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\18 WoS Extreme Trucker 2\profile##\}}' -'18 Wheels of Steel: Haulin''': + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\18 WoS Extreme Trucker 2\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\18 WoS Extreme Trucker 2\\profile##\\}}" +"18 Wheels of Steel: Haulin'": gog: 2126540092 pageId: 28617 steam: 514180 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\18 WoS Haulin\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\18 WoS Haulin\save\}}' -'18 Wheels of Steel: Pedal to the Metal': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\18 WoS Haulin\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\18 WoS Haulin\\save\\}}" +"18 Wheels of Steel: Pedal to the Metal": gog: 1834997665 pageId: 29599 steam: 337460 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\18 WoS Pedal to the - Metal\config.cfg|{{p|userprofile\Documents}}\18 WoS Pedal to the Metal\controls.def}} - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\18 WoS Pedal to the Metal\saves\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\18 WoS Pedal to the Metal\\config.cfg|{{p|userprofile\\Documents}}\\18 WoS Pedal to the Metal\\controls.def}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\18 WoS Pedal to the Metal\\saves\\}}" 18+: pageId: 98580 steam: 877360 18+ MEMORY: pageId: 156473 steam: 1222470 -'1812: Napoleon Wars': +"1812: Napoleon Wars": pageId: 148801 steam: 1166230 -'1812: The Invasion of Canada': +"1812: The Invasion of Canada": pageId: 62360 steam: 555370 -'1849': +"1849": gog: 1207664483 pageId: 18002 steam: 290970 templates: - - '{{Game data/config|Windows|{{p|appdata}}\com.somasim.fortynine\Local Store}}' - - '{{Game data/saves|Windows|{{p|appdata}}\com.somasim.fortynine\Local Store}}' + - "{{Game data/config|Windows|{{p|appdata}}\\com.somasim.fortynine\\Local Store}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\com.somasim.fortynine\\Local Store}}" 1912 Titanic Mystery: pageId: 140904 steam: 1114270 -'1914: Prelude to Chaos': +"1914: Prelude to Chaos": pageId: 62006 steam: 627950 1917 - The Alien Invasion: pageId: 33882 steam: 470060 -'1931: Scheherazade at the Library of Pergamum': +"1931: Scheherazade at the Library of Pergamum": pageId: 34871 steam: 334850 -'1942: The Henan Famine': +"1942: The Henan Famine": pageId: 149087 renamedFrom: - 河南1942 The Henan Famine steam: 1126280 -'1942: The Pacific Air War': +"1942: The Pacific Air War": gog: 1460222301 pageId: 34873 steam: 347230 @@ -607,17 +596,17 @@ $1 Ride: 1943 Megami Strike: pageId: 44471 steam: 440810 -'1944: Battle of the Bulge': +"1944: Battle of the Bulge": pageId: 138407 templates: - - '{{Game data/saves|Windows|{{p|game}}\Save}}' + - "{{Game data/saves|Windows|{{p|game}}\\Save}}" 1953 - KGB Unleashed: pageId: 10627 steam: 248490 templates: - - '{{Game data/config|Windows|{{P|game}}\Bin}}' - - '{{Game data/saves|Windows|{{P|game}}\Save}}' -'1953: NATO vs Warsaw Pact': + - "{{Game data/config|Windows|{{P|game}}\\Bin}}" + - "{{Game data/saves|Windows|{{P|game}}\\Save}}" +"1953: NATO vs Warsaw Pact": pageId: 49191 steam: 325470 1954 Alcatraz: @@ -625,27 +614,27 @@ $1 Ride: pageId: 18226 steam: 255280 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\SOFTWARE\Daedalic Entertainment\1954 Alcatraz\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Preferences/de.daedalic.alcatraz1.plist}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Daedalic Entertainment\1954 Alcatraz\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\SOFTWARE\\Daedalic Entertainment\\1954 Alcatraz\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Preferences/de.daedalic.alcatraz1.plist}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Daedalic Entertainment\\1954 Alcatraz\\}}" 1971 Project Helios: gog: 1196128708 pageId: 147117 steam: 1186630 -'1971: Indian Naval Front': +"1971: Indian Naval Front": pageId: 122446 steam: 957950 1979 Invasion Earth: pageId: 56376 steam: 575880 -'1979 Revolution: Black Friday': +"1979 Revolution: Black Friday": gog: 1459441475 pageId: 34216 steam: 388320 templates: - - '{{Game data/config|Windows|{{P|game}}\PlayerPrefs.txt}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\N-Fusion Interactive\1979 Revolution\*.xml}}' -'1982': + - "{{Game data/config|Windows|{{P|game}}\\PlayerPrefs.txt}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\N-Fusion Interactive\\1979 Revolution\\*.xml}}" +"1982": pageId: 64453 steam: 639650 1984 Rewired: @@ -656,14 +645,14 @@ $1 Ride: pageId: 137931 steam: 1086010 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\HiBit Studios\198X\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\HiBit Studios\198X\playerData.dat}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\HiBit Studios\\198X\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\HiBit Studios\\198X\\playerData.dat}}" 1993 Space Machine: pageId: 43945 steam: 373480 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\SOFTWARE\Limit Break\1993 Shenandoah\}}' - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Limit Break\1993 Shenandoah\save_slot_*.dat}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\SOFTWARE\\Limit Break\\1993 Shenandoah\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Limit Break\\1993 Shenandoah\\save_slot_*.dat}}" 199X: pageId: 48493 steam: 355270 @@ -680,18 +669,18 @@ $1 Ride: pageId: 34875 steam: 332710 templates: - - '{{Game data/saves|Windows|{{p|appdata}}\fr.ratzngodz.1Quest}}' + - "{{Game data/saves|Windows|{{p|appdata}}\\fr.ratzngodz.1Quest}}" 1bitHeart: pageId: 67621 steam: 618720 templates: - - '{{Game data/saves|Windows|{{p|game}}\Save\SaveData*.sav | {{p|game}}\Save\System.sav}}' -'1vs1: Battle Royale for the throne': + - "{{Game data/saves|Windows|{{p|game}}\\Save\\SaveData*.sav | {{p|game}}\\Save\\System.sav}}" +"1vs1: Battle Royale for the throne": pageId: 130221 steam: 1045930 templates: - - '{{Game data/config|Windows|{{p|game}}\package.json}}' - - '{{Game data/saves|Windows|{{p|game}}\www\save\}}' + - "{{Game data/config|Windows|{{p|game}}\\package.json}}" + - "{{Game data/saves|Windows|{{p|game}}\\www\\save\\}}" 2 Ninjas 1 Cup: pageId: 56984 steam: 576810 @@ -705,7 +694,7 @@ $1 Ride: pageId: 189658 steam: 1966900 templates: - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Flanne\MinutesTillDawn\*.json}}' + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Flanne\\MinutesTillDawn\\*.json}}" 20.000 Leagues Under the Sea - Captain Nemo: pageId: 89994 steam: 821720 @@ -713,13 +702,13 @@ $1 Ride: pageId: 29431 steam: 335190 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Fruitbat Factory\200% Mixed Juice!\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Fruitbat Factory\200% Mixed Juice!\}}' -'2000:1: A Space Felony': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Fruitbat Factory\\200% Mixed Juice!\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Fruitbat Factory\\200% Mixed Juice!\\}}" +"2000:1: A Space Felony": pageId: 140053 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\a20001ASpaceFelony\Saved\Config\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\a20001ASpaceFelony\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\a20001ASpaceFelony\\Saved\\Config\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\a20001ASpaceFelony\\Saved\\SaveGames\\}}" 2002 FIFA World Cup: pageId: 173669 2006 FIFA World Cup: @@ -732,13 +721,13 @@ $1 Ride: steam: 575600 2020 Super Baseball: pageId: 168848 -'2048': +"2048": pageId: 114452 steam: 942050 2048 (2019): pageId: 137414 steam: 1026330 -'2064: Read Only Memories': +"2064: Read Only Memories": gog: 1444027604 gogSide: - 1444027762 @@ -748,28 +737,24 @@ $1 Ride: - 406520 - 406521 templates: - - >- - {{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\MidBoss\2064_ Read Only - Memories\Core_Memory.cfg|{{p|hkcu}}\Software\MidBoss\2064: Read Only Memories\}} - - >- - {{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/unity.MidBoss.2064: Read Only - Memories/Core_Memory.cfg}} - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\MidBoss\2064_ Read Only Memories\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/unity.MidBoss.2064: Read Only Memories/}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/MidBoss/Read Only Memories/Saves/}}' -'2084': + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\MidBoss\\2064_ Read Only Memories\\Core_Memory.cfg|{{p|hkcu}}\\Software\\MidBoss\\2064: Read Only Memories\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/unity.MidBoss.2064: Read Only Memories/Core_Memory.cfg}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\MidBoss\\2064_ Read Only Memories\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/unity.MidBoss.2064: Read Only Memories/}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/MidBoss/Read Only Memories/Saves/}}" +"2084": pageId: 123930 steam: 987850 20XX: pageId: 34797 steam: 322110 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\20XX\20XXv096.opt}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\20XX\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\20XX\\20XXv096.opt}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\20XX\\}}" 20something: pageId: 56784 steam: 582840 -'21': +"21": pageId: 112716 steam: 938520 21 Days: @@ -781,12 +766,12 @@ $1 Ride: 21+: pageId: 108520 steam: 904990 -'2100': +"2100": pageId: 127702 steam: 1018090 221 B Baker St.: pageId: 177397 -'222': +"222": pageId: 127967 steam: 1028160 222 Hearts: @@ -801,7 +786,7 @@ $1 Ride: 24 Hours: pageId: 40036 steam: 485580 -24 Hours 'til Rescue: +"24 Hours 'til Rescue": pageId: 44531 steam: 444420 25 Cadre of Death: @@ -810,8 +795,8 @@ $1 Ride: 25 to Life: pageId: 63938 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\25 to life\settings.ini}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\25 to life\SaveGames\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\25 to life\\settings.ini}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\25 to life\\SaveGames\\}}" 28 Waves Later: pageId: 39165 steam: 444290 @@ -834,8 +819,8 @@ $1 Ride: pageId: 56513 steam: 435100 templates: - - '{{Game data/config|Windows|{{p|appdata}}\GloomyWood\2Dark\.monkeystate}}' - - '{{Game data/saves|Windows|{{p|appdata}}\GloomyWood\2Dark\.monkeystate}}' + - "{{Game data/config|Windows|{{p|appdata}}\\GloomyWood\\2Dark\\.monkeystate}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\GloomyWood\\2Dark\\.monkeystate}}" 2MD VR Football: pageId: 72698 steam: 674850 @@ -851,20 +836,20 @@ $1 Ride: 2nd Circle - Powerful Places: pageId: 112596 steam: 936510 -'3 Blind Mice: A Remediation Game for Improper Children': +"3 Blind Mice: A Remediation Game for Improper Children": pageId: 150412 steam: 1182040 3 Coins at School: pageId: 43486 steam: 462110 templates: - - '{{Game data/config|Windows|{{p|game}}\Options.3cs}}' + - "{{Game data/config|Windows|{{p|game}}\\Options.3cs}}" 3 Count Bout: pageId: 168849 3 Days in the Abyss: pageId: 123675 steam: 970180 -'3 Days: Zoo Mystery': +"3 Days: Zoo Mystery": pageId: 77646 steam: 573650 3 GEEKS: @@ -884,21 +869,21 @@ $1 Ride: 3 out of 10: pageId: 162450 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\ThreeTen\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\ThreeTen\Saved\SaveGames\}}' -'3, 2, 1, Survive!': + - "{{Game data/config|Windows|{{P|localappdata}}\\ThreeTen\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\ThreeTen\\Saved\\SaveGames\\}}" +"3, 2, 1, Survive!": pageId: 94796 steam: 864190 3-D Ultra Lionel Train Town: pageId: 16494 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/saves|Windows|{{p|game}}\}}' + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\}}" 3-D Ultra Minigolf: pageId: 175587 templates: - - '{{Game data/config|Windows|{{p|game}}\minigolf.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\SCORES.BST}}' + - "{{Game data/config|Windows|{{p|game}}\\minigolf.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\SCORES.BST}}" 3-D Ultra Radio Control Racers: pageId: 8402 3-in-1 Bundle Brain Trainings: @@ -928,44 +913,44 @@ $1 Ride: 3000th Duel: pageId: 144955 steam: 1098080 -'303 Squadron: Battle of Britain': +"303 Squadron: Battle of Britain": pageId: 65888 steam: 675170 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Squadron303\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\Squadron303\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\Squadron303\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Squadron303\\Saved\\SaveGames\\}}" 3030 Deathwar Redux: pageId: 37359 steam: 464360 templates: - - '{{Game data/config|Windows|{{P|game}}\data\settings.txt}}' - - '{{Game data/saves|Windows|{{P|game}}\save\*.3030}}' -'3079': + - "{{Game data/config|Windows|{{P|game}}\\data\\settings.txt}}" + - "{{Game data/saves|Windows|{{P|game}}\\save\\*.3030}}" +"3079": pageId: 12767 steam: 259620 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\3079Saves\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/3079Saves/}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/3079Saves/}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\3079Saves\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/3079Saves/}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/3079Saves/}}' -'3089': + - "{{Game data/config|Windows|{{p|userprofile}}\\3079Saves\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/3079Saves/}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/3079Saves/}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\3079Saves\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/3079Saves/}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/3079Saves/}}" +"3089": pageId: 12858 steam: 263360 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\3089\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/3089/}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/3089/}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\3089\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/3089/}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/3089/}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\3089\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/3089/}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/3089/}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\3089\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/3089/}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/3089/}}" 30XX: pageId: 162110 steam: 1029210 templates: - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\30XX\}}' -'30km survival zone: Chernobyl': + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\30XX\\}}" +"30km survival zone: Chernobyl": pageId: 152821 steam: 1158590 30th Century Post Office: @@ -983,8 +968,8 @@ $1 Ride: steamSide: - 486210 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\NSS\35MM}}' - - '{{Game data/saves|Windows|{{p|hkcu}}\Software\NSS\35MM}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\NSS\\35MM}}" + - "{{Game data/saves|Windows|{{p|hkcu}}\\Software\\NSS\\35MM}}" 36 Fragments of Midnight: pageId: 66209 steam: 679930 @@ -1023,7 +1008,7 @@ $1 Ride: 3D Cube Hopper: pageId: 36257 templates: - - '{{Game data/config|Windows|{{p|game}}\3DCube.ini}}' + - "{{Game data/config|Windows|{{p|game}}\\3DCube.ini}}" 3D Custom Lady Maker: pageId: 134853 steam: 985760 @@ -1047,8 +1032,8 @@ $1 Ride: 3D Instructor: pageId: 169804 templates: - - '{{Game data/config|Windows|{{p|game}}\data\config}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\Multisoft\PDD\profiles\}}' + - "{{Game data/config|Windows|{{p|game}}\\data\\config}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\Multisoft\\PDD\\profiles\\}}" 3D MiniGolf: pageId: 47715 steam: 362830 @@ -1061,7 +1046,7 @@ $1 Ride: 3D Pinball for Windows - Space Cadet: pageId: 11230 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Microsoft\Plus!\Pinball\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Microsoft\\Plus!\\Pinball\\}}" 3D Pool: pageId: 33539 steam: 492160 @@ -1092,7 +1077,7 @@ $1 Ride: pageId: 154071 steam: 1147940 templates: - - '{{Game data/config|Windows|{{P|userprofile}}\AppData\LocalLow\Geod Studio\3dSen\}}' + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Geod Studio\\3dSen\\}}" 3dSen VR: pageId: 138774 renamedFrom: @@ -1101,7 +1086,7 @@ $1 Ride: 3on3 FreeStyle: pageId: 72865 steam: 624910 -'3on3 FreeStyle: Rebound': +"3on3 FreeStyle: Rebound": pageId: 180990 steam: 1292630 3rd Invasion - Zombies vs. Steel: @@ -1119,17 +1104,17 @@ $1 Ride: 4 Alice Magical Autistic Girls: pageId: 174468 steam: 1684120 -'4 Alice: Lorange Journey': +"4 Alice: Lorange Journey": pageId: 78018 steam: 761160 -'4 Classes, Many Paths': +"4 Classes, Many Paths": pageId: 135990 steam: 1078610 4 Elements: pageId: 34879 steam: 47000 templates: - - '{{Game data/saves|Windows|{{p|programdata}}\Playrix Entertainment\4 Elements\GameInfo.xml}}' + - "{{Game data/saves|Windows|{{p|programdata}}\\Playrix Entertainment\\4 Elements\\GameInfo.xml}}" 4 Elements II: pageId: 131051 4 for the Money: @@ -1148,8 +1133,8 @@ $1 Ride: pageId: 113196 steam: 778080 templates: - - '{{Game data/config|Windows|{{p|game}}\settings.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\memcard\Mcd****.mcr}}' + - "{{Game data/config|Windows|{{p|game}}\\settings.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\memcard\\Mcd****.mcr}}" 4004-022: pageId: 134418 steam: 1065670 @@ -1157,20 +1142,20 @@ $1 Ride: pageId: 34881 steam: 361630 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\AppData\Local\404Sight\Saved\Config}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\Local\404Sight\Saved\SaveGames}}' -'4089: Ghost Within': + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\Local\\404Sight\\Saved\\Config}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\Local\\404Sight\\Saved\\SaveGames}}" +"4089: Ghost Within": pageId: 33990 steam: 329770 420 Button Clicker: pageId: 127643 steam: 1026180 -'428: Shibuya Scramble': +"428: Shibuya Scramble": pageId: 59136 steam: 648580 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\428 Shibuya Scramble\}}' - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\648580\remote\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\428 Shibuya Scramble\\}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\648580\\remote\\}}" 4D Minesweeper: pageId: 82065 steam: 787980 @@ -1214,17 +1199,17 @@ $1 Ride: 4x4 Evo: pageId: 88200 templates: - - '{{Game data/saves|Windows|{{P|game}}\SYSTEM\metal.ini}}' + - "{{Game data/saves|Windows|{{P|game}}\\SYSTEM\\metal.ini}}" 4x4 Evo 2: pageId: 88246 templates: - - '{{Game data/config|Windows|{{p|game}}\SYSTEM}}' - - '{{Game data/saves|Windows|{{p|game}}\SYSTEM\metal.ini}}' + - "{{Game data/config|Windows|{{p|game}}\\SYSTEM}}" + - "{{Game data/saves|Windows|{{p|game}}\\SYSTEM\\metal.ini}}" 4x4 Hummer: pageId: 59775 steam: 46210 templates: - - '{{Game data/saves|Windows|{{p|game}}\Data\profiles\}}' + - "{{Game data/saves|Windows|{{p|game}}\\Data\\profiles\\}}" 4x4 Offroad Racing - Nitro: pageId: 59191 steam: 537170 @@ -1234,8 +1219,8 @@ $1 Ride: 5 Days a Stranger: pageId: 29999 templates: - - '{{Game data/config|Windows|{{p|game}}\acsetup.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\agssave.{{code|XXX}}}}' + - "{{Game data/config|Windows|{{p|game}}\\acsetup.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\agssave.{{code|XXX}}}}" 5 Minutes Rage: pageId: 57468 steam: 416700 @@ -1251,10 +1236,10 @@ $1 Ride: 5-in-1 Bundle Brain Trainings: pageId: 83001 steam: 715710 -'5-in-1 Pack - Monument Builders: Destination USA': +"5-in-1 Pack - Monument Builders: Destination USA": pageId: 55520 steam: 564340 -'5.0': +"5.0": pageId: 144027 steam: 1132070 5.84 Wing: @@ -1267,23 +1252,23 @@ $1 Ride: pageId: 36880 steam: 502740 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\_50years\YEAR50.TXT}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\_50years\\YEAR50.TXT}}" 500 Years Act 1: pageId: 48220 steam: 357200 -'5089': +"5089": pageId: 33969 steam: 414510 templates: - - '{{Game data/saves|Windows|{{P|userprofile}}\5089}}' + - "{{Game data/saves|Windows|{{P|userprofile}}\\5089}}" 5D Chess With Multiverse Time Travel: pageId: 167846 steam: 1349230 templates: - - '{{Game data/config|Windows|{{P|appdata}}\Thunkspace\5dchesswithmultiversetimetravel\settings_and_progress.txt}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/Thunkspace/5dchesswithmultiversetimetravel/settings_and_progress.txt}}' - - '{{Game data/saves|Windows|{{P|appdata}}\Thunkspace\5dchesswithmultiversetimetravel\settings_and_progress.txt}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/Thunkspace/5dchesswithmultiversetimetravel/settings_and_progress.txt}}' + - "{{Game data/config|Windows|{{P|appdata}}\\Thunkspace\\5dchesswithmultiversetimetravel\\settings_and_progress.txt}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/Thunkspace/5dchesswithmultiversetimetravel/settings_and_progress.txt}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\Thunkspace\\5dchesswithmultiversetimetravel\\settings_and_progress.txt}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/Thunkspace/5dchesswithmultiversetimetravel/settings_and_progress.txt}}" 5Leaps (Space Tower Defense): pageId: 135244 steam: 1059420 @@ -1302,7 +1287,7 @@ $1 Ride: 6-in-1 IQ Scale Bundle (2018): pageId: 137304 steam: 886650 -'6.0': +"6.0": pageId: 153001 steam: 1165860 60 Parsecs!: @@ -1310,9 +1295,9 @@ $1 Ride: pageId: 73626 steam: 646270 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Robot Gentleman\60 Parsecs\}}' - - '{{Game data/config|Steam|{{P|steam}}\userdata\{{P|uid}}\646270\remote\settings}}' - - '{{Game data/saves|Steam|{{P|steam}}\userdata\{{P|uid}}\646270\remote\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Robot Gentleman\\60 Parsecs\\}}" + - "{{Game data/config|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\646270\\remote\\settings}}" + - "{{Game data/saves|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\646270\\remote\\}}" 60 Second Strike: pageId: 70677 steam: 696540 @@ -1321,29 +1306,29 @@ $1 Ride: pageId: 34539 steam: 368360 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\Robot Gentleman\60 Seconds}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Robot Gentleman\\60 Seconds}}" 60 Seconds! Reatomized: pageId: 141256 steam: 1012880 templates: - - '{{Game data/config|Steam|{{P|steam}}\userdata\{{P|uid}}\1012880\remote\settings}}' - - '{{Game data/saves|Steam|{{P|steam}}\userdata\{{P|uid}}\1012880\remote\}}' + - "{{Game data/config|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\1012880\\remote\\settings}}" + - "{{Game data/saves|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\1012880\\remote\\}}" 61 Days: pageId: 141780 steam: 1119820 -'6120': +"6120": pageId: 134836 steam: 1063230 6180 the moon: pageId: 37820 steam: 299660 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Turtle Cream\6180 the moon\}}' -'64.0': + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Turtle Cream\\6180 the moon\\}}" +"64.0": pageId: 58551 steam: 578850 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\rebelrabbit\64_0\*.dat}}' + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\rebelrabbit\\64_0\\*.dat}}" 688 Attack Sub: pageId: 173773 688(I) Hunter/Killer: @@ -1351,8 +1336,8 @@ $1 Ride: pageId: 41397 steam: 2900 templates: - - '{{Game data/config|Windows|{{p|game}}\688HK.ini}}' -'69': + - "{{Game data/config|Windows|{{p|game}}\\688HK.ini}}" +"69": pageId: 93621 steam: 854380 69 Ways to Kill a Zombie: @@ -1361,7 +1346,7 @@ $1 Ride: 6souls: pageId: 150814 steam: 1153520 -'7': +"7": pageId: 81434 steam: 684210 7 Angels: @@ -1372,16 +1357,11 @@ $1 Ride: pageId: 81782 steam: 792100 templates: - - '{{Game data/config|Windows|{{p|appdata}}\7 Billion Humans\settings.txt}}' - - >- - {{Game data/config|OS X|{{P|osxhome}}/Library/Application Support/7 Billion - Humans/settings.txt|{{P|osxhome}}/Library/Containers/com.tomorrowcorporation.7billionhumansmac/Data/Library/Application - Support/7 Billion Humans/settings.txt - - }} - - '{{Game data/config|Linux|{{P|linuxhome}}/.local/share/Tomorrow Corporation/7 Billion Humans/settings.txt}}' - - '{{Game data/saves|Windows|{{p|appdata}}\7 Billion Humans\}}' - - '{{Game data/saves|Linux|{{P|linuxhome}}/.local/share/Tomorrow Corporation/7 Billion Humans/profile.bin}}' + - "{{Game data/config|Windows|{{p|appdata}}\\7 Billion Humans\\settings.txt}}" + - "{{Game data/config|OS X|{{P|osxhome}}/Library/Application Support/7 Billion Humans/settings.txt|{{P|osxhome}}/Library/Containers/com.tomorrowcorporation.7billionhumansmac/Data/Library/Application Support/7 Billion Humans/settings.txt\n}}" + - "{{Game data/config|Linux|{{P|linuxhome}}/.local/share/Tomorrow Corporation/7 Billion Humans/settings.txt}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\7 Billion Humans\\}}" + - "{{Game data/saves|Linux|{{P|linuxhome}}/.local/share/Tomorrow Corporation/7 Billion Humans/profile.bin}}" 7 Bones and 7 Stones - The Ritual: pageId: 74586 steam: 712080 @@ -1392,20 +1372,20 @@ $1 Ride: pageId: 13353 steam: 251570 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\SOFTWARE\The Fun Pimps\7 Days To Die\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Preferences/unity.The Fun Pimps.7 Days To Die.plist}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/The Fun Pimps/7 Days To Die/}}' - - '{{Game data/saves|Windows|{{p|appdata}}\7DaysToDie\Saves\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/7DaysToDie/Saves/}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.local/share/7DaysToDie/Saves/}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\The Fun Pimps\\7 Days To Die\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Preferences/unity.The Fun Pimps.7 Days To Die.plist}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/The Fun Pimps/7 Days To Die/}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\7DaysToDie\\Saves\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/7DaysToDie/Saves/}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.local/share/7DaysToDie/Saves/}}" 7 Days with Death: pageId: 73217 steam: 617820 -'7 Grand Steps: What Ancients Begat': +"7 Grand Steps: What Ancients Begat": pageId: 26451 steam: 238930 templates: - - '{{Game data/saves|Windows|{{p|programdata}}\Mousechief\7GS\}}' + - "{{Game data/saves|Windows|{{p|programdata}}\\Mousechief\\7GS\\}}" 7 Lives: pageId: 139005 steam: 1096240 @@ -1419,9 +1399,9 @@ $1 Ride: pageId: 134700 steam: 1023740 templates: - - '{{Game data/config|Linux|{{p|xdgconfighome}}/unity3d/ZaiStudio/7SexySins/prefs}}' - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\ZaiStudio\7SexySins\{{p|uid}}\*.dat}}' - - '{{Game data/saves|Linux|{{p|xdgconfighome}}/unity3d/ZaiStudio/7SexySins/{{p|uid}}/*.dat}}' + - "{{Game data/config|Linux|{{p|xdgconfighome}}/unity3d/ZaiStudio/7SexySins/prefs}}" + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\ZaiStudio\\7SexySins\\{{p|uid}}\\*.dat}}" + - "{{Game data/saves|Linux|{{p|xdgconfighome}}/unity3d/ZaiStudio/7SexySins/{{p|uid}}/*.dat}}" 7 Sins: pageId: 90843 7 Soccer: @@ -1433,19 +1413,19 @@ $1 Ride: 7 Wonders of the Ancient World: pageId: 50648 steam: 275810 -'7 Wonders: Ancient Alien Makeover': +"7 Wonders: Ancient Alien Makeover": pageId: 38392 steam: 223000 -'7 Wonders: Magical Mystery Tour': +"7 Wonders: Magical Mystery Tour": pageId: 50646 steam: 275830 -'7 Wonders: Treasures of Seven': +"7 Wonders: Treasures of Seven": pageId: 41331 steam: 16030 -'7 summer days: Youth sky': +"7 summer days: Youth sky": pageId: 179070 steam: 1331590 -7'scarlet: +"7'scarlet": pageId: 124370 steam: 839450 7-in-1 Brain Sharpness Bundle: @@ -1459,37 +1439,37 @@ $1 Ride: pageId: 46198 steam: 306290 templates: - - '{{Game data/saves|Windows|{{p|game}}\Saves}}' + - "{{Game data/saves|Windows|{{p|game}}\\Saves}}" 7.62 High Calibre: gog: 1727035233 pageId: 50348 steam: 289890 templates: - - '{{Game data/saves|Windows|{{p|game}}\Saves}}' + - "{{Game data/saves|Windows|{{p|game}}\\Saves}}" 70 Seconds Survival: pageId: 104599 steam: 878470 70 Seconds! Adventure: pageId: 144419 steam: 1143420 -'7554: Glorious Memories Revived': +"7554: Glorious Memories Revived": pageId: 162011 templates: - - '{{Game data/config|Windows|{{p|game}}\setting.xml}}' - - '{{Game data/saves|Windows|{{p|game}}\SaveGames}}' -'7776 II: Dwarven Greed': + - "{{Game data/config|Windows|{{p|game}}\\setting.xml}}" + - "{{Game data/saves|Windows|{{p|game}}\\SaveGames}}" +"7776 II: Dwarven Greed": pageId: 149690 steam: 1019340 -'77p egg: Eggwife': +"77p egg: Eggwife": pageId: 181598 steam: 1317020 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\eggwife\Saved\Config\WindowsNoEditor}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\eggwife\Saved\SaveGames}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\eggwife\\Saved\\Config\\WindowsNoEditor}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\eggwife\\Saved\\SaveGames}}" 7D Game: pageId: 52562 steam: 547440 -'7WORLDS: The Dreaming Dale': +"7WORLDS: The Dreaming Dale": pageId: 156615 steam: 1222220 7th Deep: @@ -1500,17 +1480,17 @@ $1 Ride: pageId: 15356 steam: 327910 templates: - - '{{Game data/config|Windows|{{P|game}}\Siege.ini}}' - - '{{Game data/saves|Windows|{{P|game}}\Data\SAVE0.SAV}}' -'7th Sea: A Pirate''s Pact': + - "{{Game data/config|Windows|{{P|game}}\\Siege.ini}}" + - "{{Game data/saves|Windows|{{P|game}}\\Data\\SAVE0.SAV}}" +"7th Sea: A Pirate's Pact": pageId: 125502 steam: 996450 7th Sector: pageId: 128314 steam: 749250 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\SOFTWARE\SN_Production\7TH_Sector}}' - - '{{Game data/saves|Windows|{{P|hkcu}}\SOFTWARE\SN_Production\7TH_Sector}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\SOFTWARE\\SN_Production\\7TH_Sector}}" + - "{{Game data/saves|Windows|{{P|hkcu}}\\SOFTWARE\\SN_Production\\7TH_Sector}}" 8 Ball: pageId: 89541 steam: 818530 @@ -1518,8 +1498,8 @@ $1 Ride: pageId: 42143 steam: 409530 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\_8DAYS\prefs.ini}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\_8DAYS\Game1.sav}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\_8DAYS\\prefs.ini}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\_8DAYS\\Game1.sav}}" 8 Eyes: gog: 2107065151 pageId: 144135 @@ -1531,7 +1511,7 @@ $1 Ride: gog: 1757325641 pageId: 74321 steam: 733110 -'8-Bit Adventures: The Forgotten Journey Remastered Edition': +"8-Bit Adventures: The Forgotten Journey Remastered Edition": gog: 1636163734 pageId: 47819 steam: 370300 @@ -1543,38 +1523,36 @@ $1 Ride: pageId: 34106 steam: 427250 templates: - - '{{Game data/config|Windows|{{p|game}}\profile_*}}' - - '{{Game data/saves|Windows|{{p|game}}\profile_*}}' -'8-Bit Armies: Arena': + - "{{Game data/config|Windows|{{p|game}}\\profile_*}}" + - "{{Game data/saves|Windows|{{p|game}}\\profile_*}}" +"8-Bit Armies: Arena": pageId: 57222 steam: 586040 8-Bit Bayonetta: pageId: 60213 steam: 567090 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Sega - Bitbaboon\8 Bit Bayonetta\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Sega - Bitbaboon\\8 Bit Bayonetta\\}}" 8-Bit Commando: pageId: 23940 steam: 287860 templates: - - '{{Game data/config|Windows|{{p|appdata}}\8bitcommando\}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.agen/8-Bit\ Commando/}}' - - '{{Game data/saves|Windows|{{p|appdata}}\8bitcommando\}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.agen/8-Bit\ Commando/}}' + - "{{Game data/config|Windows|{{p|appdata}}\\8bitcommando\\}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.agen/8-Bit\\ Commando/}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\8bitcommando\\}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.agen/8-Bit\\ Commando/}}" 8-Bit Hordes: pageId: 35980 steam: 497850 8-Bit Invaders!: pageId: 50927 steam: 531680 -'8-bit Adventure Anthology: Volume I': +"8-bit Adventure Anthology: Volume I": pageId: 75433 steam: 664850 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Abstraction Games\8-bit Adventure Anthology: Volume I\}}' - - >- - {{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Abstraction Games\8-bit Adventure Anthology_ Volume - I\{{P|uid}}\}} + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Abstraction Games\\8-bit Adventure Anthology: Volume I\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Abstraction Games\\8-bit Adventure Anthology_ Volume I\\{{P|uid}}\\}}" 8-in-1 IQ Scale Bundle: pageId: 79218 steam: 772470 @@ -1583,18 +1561,18 @@ $1 Ride: pageId: 30492 steam: 381780 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Inkle Studios\80 Days\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Inkle Studios\80 Days\}}' -80's Style: + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Inkle Studios\\80 Days\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Inkle Studios\\80 Days\\}}" +"80's Style": pageId: 97928 steam: 879440 -'80.08': +"80.08": pageId: 67195 steam: 688180 868-HACK: pageId: 37648 steam: 274700 -'87 Aftermath: A Rolling Ball Game': +"87 Aftermath: A Rolling Ball Game": pageId: 171939 steam: 990110 88 Heroes: @@ -1607,24 +1585,24 @@ $1 Ride: 8Bit Killer: pageId: 131280 templates: - - '{{Game data/saves|Windows| }}' + - "{{Game data/saves|Windows| }}" 8BitBoy: pageId: 50316 steam: 296910 templates: - - '{{Game data/saves|Windows|{{p|localappdata}}\8BitBoy}}' + - "{{Game data/saves|Windows|{{p|localappdata}}\\8BitBoy}}" 8BitMMO: pageId: 48885 steam: 250420 -'8Doors: Arum''s Afterlife Adventure': +"8Doors: Arum's Afterlife Adventure": gog: 1305658745 pageId: 157253 renamedFrom: - 8Doors steam: 668550 templates: - - '{{Game data/config|Windows|{{P|userprofile\appdata\locallow}}\Rootless\8Doors}}' - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Rootless\8Doors\SaveOptionSetting2.txt}}' + - "{{Game data/config|Windows|{{P|userprofile\\appdata\\locallow}}\\Rootless\\8Doors}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Rootless\\8Doors\\SaveOptionSetting2.txt}}" 8bit Arena: pageId: 135504 steam: 971180 @@ -1641,41 +1619,41 @@ $1 Ride: pageId: 41505 steam: 526540 templates: - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/526540/remote/}}' + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/526540/remote/}}" 9 Balls: pageId: 91993 steam: 839920 -'9 Clues 2: The Ward': +"9 Clues 2: The Ward": pageId: 37840 steam: 369420 templates: - - '{{Game data/config|Windows|{{P|appdata}}\Tap It Games\9 Clues 2 - The Ward\SE\}}' - - '{{Game data/saves|Windows|{{p|steam}}\userdata\{{p|uid}}\369420\remote\profile\}}' -'9 Clues: The Secret of Serpent Creek': + - "{{Game data/config|Windows|{{P|appdata}}\\Tap It Games\\9 Clues 2 - The Ward\\SE\\}}" + - "{{Game data/saves|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\369420\\remote\\profile\\}}" +"9 Clues: The Secret of Serpent Creek": pageId: 37919 steam: 284870 templates: - - '{{Game data/config|Windows|{{P|appdata}}\Tap It Games\9 Clues - The Secret of Serpent Creek\CE}}' - - '{{Game data/saves|Windows|{{p|steam}}\userdata\{{p|uid}}\284870\remote\profile}}' + - "{{Game data/config|Windows|{{P|appdata}}\\Tap It Games\\9 Clues - The Secret of Serpent Creek\\CE}}" + - "{{Game data/saves|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\284870\\remote\\profile}}" 9 Monkeys of Shaolin: pageId: 90419 steam: 739080 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\9MonkeysOfShaolin\Saved\Config\}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\9MonkeysOfShaolin\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\9MonkeysOfShaolin\\Saved\\Config\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\9MonkeysOfShaolin\\Saved\\SaveGames\\}}" 9 Years of Shadows: gog: 2099051765 pageId: 186136 steam: 1402120 templates: - - '{{Game data/saves|Windows|{{p|appdata}}\..\LocalLow\Halberd Studios\9 Years of Shadows\SaveData\}}' -'9-Bit Armies: A Bit Too Far': + - "{{Game data/saves|Windows|{{p|appdata}}\\..\\LocalLow\\Halberd Studios\\9 Years of Shadows\\SaveData\\}}" +"9-Bit Armies: A Bit Too Far": pageId: 190625 steam: 1439750 -'9-nine-:Episode 1': +"9-nine-:Episode 1": pageId: 127539 steam: 976390 -'9-nine-:Episode 2': +"9-nine-:Episode 2": pageId: 143339 steam: 1033420 9.03m: @@ -1689,17 +1667,17 @@ $1 Ride: 90 Minute Fever: pageId: 42412 steam: 468070 -'900': +"900": pageId: 78715 steam: 696860 911 Operator: pageId: 39390 steam: 503560 templates: - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Preferences/{{file|unity.JutsuGames.911 Operator.plist}}}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\JutsuGames\911 Operator}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/unity.JutsuGames.911 Operator}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/JutsuGames/911 Operator}}' + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Preferences/{{file|unity.JutsuGames.911 Operator.plist}}}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\JutsuGames\\911 Operator}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/unity.JutsuGames.911 Operator}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/JutsuGames/911 Operator}}" 96 Mill: pageId: 57070 steam: 561480 @@ -1708,16 +1686,16 @@ $1 Ride: pageId: 7229 steam: 264280 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Pipes And Mushrooms\99 levels to hell\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Preferences/unity.Pipes And Mushrooms.99 levels to hell.plist}}' - - '{{Game data/saves|Windows|{{p|hkcu}}\Software\Pipes And Mushrooms\99 levels to hell\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Preferences/unity.Pipes And Mushrooms.99 levels to hell.plist}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Pipes And Mushrooms\\99 levels to hell\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Preferences/unity.Pipes And Mushrooms.99 levels to hell.plist}}" + - "{{Game data/saves|Windows|{{p|hkcu}}\\Software\\Pipes And Mushrooms\\99 levels to hell\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Preferences/unity.Pipes And Mushrooms.99 levels to hell.plist}}" 99 Spirits: pageId: 26862 steam: 258090 templates: - - '{{Game data/config|Windows|{{p|game}}\99 Spirits.cf}}' - - '{{Game data/saves|Windows|{{p|game}}\savedata\}}' + - "{{Game data/config|Windows|{{p|game}}\\99 Spirits.cf}}" + - "{{Game data/saves|Windows|{{p|game}}\\savedata\\}}" 99 Waves to Die: pageId: 48246 steam: 360600 @@ -1727,30 +1705,30 @@ $1 Ride: 996的真实老板篇: pageId: 138758 steam: 1086470 -'999': +"999": pageId: 99320 steam: 876840 -'99999': +"99999": pageId: 104957 steam: 906600 99Vidas: pageId: 55281 steam: 557040 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\QUByte Interactive\99Vidas - The Game}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\QUByte Interactive\99Vidas - The Game}}' -'9: The Last Resort': + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\QUByte Interactive\\99Vidas - The Game}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\QUByte Interactive\\99Vidas - The Game}}" +"9: The Last Resort": pageId: 147680 9Dragons: pageId: 57454 steam: 390100 -'9Dragons : Kung Fu Arena': +"9Dragons : Kung Fu Arena": pageId: 126191 steam: 956580 9Grids VR: pageId: 39966 steam: 486140 -'9th Company: Roots of Terror': +"9th Company: Roots of Terror": pageId: 41196 steam: 12480 9th Dawn Classic - Clunky controls edition: @@ -1763,7 +1741,7 @@ $1 Ride: gog: 2062750501 pageId: 164609 steam: 1154850 -A Bastard's Tale: +"A Bastard's Tale": pageId: 47783 steam: 371550 A Bewitching Revolution: @@ -1774,19 +1752,17 @@ A Bird Story: pageId: 21003 steam: 327410 templates: - - '{{Game data/config|Windows|{{p|appdata}}\A Bird Story\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/freebirdgames/abirdstory}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/freebirdgames/abirdstory/}}' - - '{{Game data/saves|Windows|{{p|appdata}}\A Bird Story\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/freebirdgames/abirdstory}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/freebirdgames/abirdstory/}}' + - "{{Game data/config|Windows|{{p|appdata}}\\A Bird Story\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/freebirdgames/abirdstory}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/freebirdgames/abirdstory/}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\A Bird Story\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/freebirdgames/abirdstory}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/freebirdgames/abirdstory/}}" A Blind Legend: pageId: 38539 steam: 437530 templates: - - >- - {{Game data/config|Windows|{{P|userprofile\appdata\locallow}}\Dowino\A Blind - Legend\data\PlayerPrefs.dat|{{P|hkcu}}\SOFTWARE\Dowino\A Blind Legend\}} + - "{{Game data/config|Windows|{{P|userprofile\\appdata\\locallow}}\\Dowino\\A Blind Legend\\data\\PlayerPrefs.dat|{{P|hkcu}}\\SOFTWARE\\Dowino\\A Blind Legend\\}}" A Bloody Night: pageId: 63996 steam: 639720 @@ -1804,23 +1780,23 @@ A Boy and His Blob: pageId: 30615 steam: 281200 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\My Games\ABAHB\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/ABAHB/}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/ABAHB/}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\My Games\ABAHB\savedata.vfs}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/ABAHB/savedata.vfs}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/ABAHB/savedata.vfs}}' -A Bug's Life: + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\My Games\\ABAHB\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/ABAHB/}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/ABAHB/}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\My Games\\ABAHB\\savedata.vfs}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/ABAHB/savedata.vfs}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/ABAHB/savedata.vfs}}" +"A Bug's Life": pageId: 134342 templates: - - '{{Game data/saves|Windows|{{p|game}}\save\}}' + - "{{Game data/saves|Windows|{{p|game}}\\save\\}}" A Building Full of Cats: gog: 1113686198 pageId: 185503 steam: 1969080 templates: - - '{{Game data/config|Windows|{{p|game}}\settings.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\progress.cfg}}' + - "{{Game data/config|Windows|{{p|game}}\\settings.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\progress.cfg}}" A Business Power: pageId: 121855 steam: 975220 @@ -1831,24 +1807,24 @@ A Buttload of Free Games: pageId: 179076 steam: 1275070 templates: - - '{{Game data/saves|Windows|{{p|game}}\}}' + - "{{Game data/saves|Windows|{{p|game}}\\}}" A Case of Distrust: pageId: 78663 steam: 717610 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\SOFTWARE\Ben Wander\A Case of Distrust\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Ben Wander\A Case of Distrust\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\Ben Wander\\A Case of Distrust\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Ben Wander\\A Case of Distrust\\}}" A Castle Full of Cats: gog: 1087358566 pageId: 185579 steam: 2070550 templates: - - '{{Game data/config|Windows|{{p|game}}\settings.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\progress.cfg}}' -A Cat's Manor: + - "{{Game data/config|Windows|{{p|game}}\\settings.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\progress.cfg}}" +"A Cat's Manor": pageId: 64910 steam: 667430 -'A Chair in a Room: Greenwater': +"A Chair in a Room: Greenwater": pageId: 34848 steam: 427760 A Cheesy Game: @@ -1860,24 +1836,18 @@ A Christmas Peril: A City Sleeps: pageId: 49498 steam: 316180 -'A Clockwork Ley-Line: Daybreak of Remnants Shadow': +"A Clockwork Ley-Line: Daybreak of Remnants Shadow": pageId: 58186 steam: 1815970 -'A Clockwork Ley-Line: Flowers Falling in the Morning Mist': +"A Clockwork Ley-Line: Flowers Falling in the Morning Mist": pageId: 58188 steam: 2138010 -'A Clockwork Ley-Line: The Borderline of Dusk': +"A Clockwork Ley-Line: The Borderline of Dusk": pageId: 58183 steam: 620080 templates: - - >- - {{Game data/config|Windows|{{P|userprofile\Documents}}\UNiSONSHiFT\A Clockwork Ley-Line - The Borderline of - Dusk\save\config.dat|{{P|userprofile\Documents}}\UNiSONSHiFT\A Clockwork Ley-Line - The Borderline of - Dusk\save\system.dat}} - - >- - {{Game data/saves|Windows|{{P|userprofile\Documents}}\UNiSONSHiFT\A Clockwork Ley-Line - The Borderline of - Dusk\save\save{{code|###}}.dat|{{P|userprofile\Documents}}\UNiSONSHiFT\A Clockwork Ley-Line - The Borderline of - Dusk\save\system.dat}} + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\UNiSONSHiFT\\A Clockwork Ley-Line - The Borderline of Dusk\\save\\config.dat|{{P|userprofile\\Documents}}\\UNiSONSHiFT\\A Clockwork Ley-Line - The Borderline of Dusk\\save\\system.dat}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\UNiSONSHiFT\\A Clockwork Ley-Line - The Borderline of Dusk\\save\\save{{code|###}}.dat|{{P|userprofile\\Documents}}\\UNiSONSHiFT\\A Clockwork Ley-Line - The Borderline of Dusk\\save\\system.dat}}" A Collection of Bad Moments: pageId: 78637 steam: 717120 @@ -1888,32 +1858,32 @@ A Dance of Fire and Ice: pageId: 125260 steam: 977950 templates: - - '{{Game data/saves|Windows|{{p|game}}\User\data.sav|{{p|game}}\User\data.sav.old}}' -'A Dark World: The Glowing City': + - "{{Game data/saves|Windows|{{p|game}}\\User\\data.sav|{{p|game}}\\User\\data.sav.old}}" +"A Dark World: The Glowing City": pageId: 153208 steam: 1182690 A Date in the Park: pageId: 38456 steam: 468530 templates: - - '{{Game data/config|Windows|{{P|userprofile}}\Saved Games\A Date in the Park\acsetup.cfg}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\Saved Games\A Date in the Park\agssave.*}}' + - "{{Game data/config|Windows|{{P|userprofile}}\\Saved Games\\A Date in the Park\\acsetup.cfg}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\Saved Games\\A Date in the Park\\agssave.*}}" A Day for a Kitten: pageId: 76079 steam: 742230 A Day in the Woods: pageId: 52091 steam: 526890 -A Dead World's Dream: +"A Dead World's Dream": pageId: 40436 steam: 517680 -'A Deadly Maze: Phase 1': +"A Deadly Maze: Phase 1": pageId: 144301 steam: 1127250 -A Demon's Game - Episode 1: +"A Demon's Game - Episode 1": pageId: 55039 steam: 569430 -A Detective's Novel: +"A Detective's Novel": pageId: 42001 steam: 503820 A Divided Light: @@ -1922,7 +1892,7 @@ A Divided Light: A Dragon Girl Looks Up at the Endless Sky: pageId: 52558 steam: 456760 -A Dragon's Tale VR: +"A Dragon's Tale VR": pageId: 148645 steam: 1163950 A Dream for Aaron: @@ -1931,12 +1901,12 @@ A Dream for Aaron: A Dream of Burning Sand: pageId: 124409 steam: 789840 -A Druid's Duel: +"A Druid's Duel": pageId: 48595 steam: 333970 templates: - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Thoughtshelter Games/A Druid''s Duel/}}' -'A Duel Hand Disaster: Trackher': + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Thoughtshelter Games/A Druid's Duel/}}" +"A Duel Hand Disaster: Trackher": pageId: 53489 steam: 515010 A Dump in the Dark: @@ -1944,7 +1914,7 @@ A Dump in the Dark: steam: 577080 A Fairy Tale: pageId: 174627 -'A Familiar Fairytale: Dyslexic Text Based Adventure': +"A Familiar Fairytale: Dyslexic Text Based Adventure": pageId: 149075 steam: 929570 A Family of Grave Diggers: @@ -1954,28 +1924,28 @@ A Farewell to Dragons: pageId: 89815 steam: 3160 templates: - - '{{Game data/saves|Windows|{{p|game}}\profiles\}}' -'A Fear of Heights, and Other Things': + - "{{Game data/saves|Windows|{{p|game}}\\profiles\\}}" +"A Fear of Heights, and Other Things": pageId: 51451 steam: 535460 -'A Feeble Saga: Chapter I': +"A Feeble Saga: Chapter I": pageId: 127407 steam: 345020 A Fine Mess: pageId: 82766 steam: 793220 -A Fisherman's Tale: +"A Fisherman's Tale": pageId: 108668 steam: 559330 templates: - - '{{Game data/saves|Windows|{{P|localappdata}}\Fisherman\Saved\SaveGames\}}' + - "{{Game data/saves|Windows|{{P|localappdata}}\\Fisherman\\Saved\\SaveGames\\}}" A Fistful of Gun: gog: 1442910587 pageId: 32510 steam: 229810 templates: - - '{{Game data/config|Windows|{{p|game}}\*.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\storycharacter.ini}}' + - "{{Game data/config|Windows|{{p|game}}\\*.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\storycharacter.ini}}" A Flappy Bird in Real Life: pageId: 121169 steam: 963830 @@ -1986,15 +1956,15 @@ A Foretold Affair: pageId: 58814 steam: 586670 templates: - - '{{Game data/config|Windows|{{p|game}}\renpy\config.py}}' - - '{{Game data/saves|Windows|{{P|appdata}}\renpy\A Foretold Affair-1463652208\*.save|{{p|game}}\game\saves\*.save}}' -'A Front Too Far: Normandy': + - "{{Game data/config|Windows|{{p|game}}\\renpy\\config.py}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\renpy\\A Foretold Affair-1463652208\\*.save|{{p|game}}\\game\\saves\\*.save}}" +"A Front Too Far: Normandy": pageId: 122500 steam: 958320 A Game About: pageId: 120945 steam: 927990 -'A Game For You, Josh': +"A Game For You, Josh": pageId: 132304 steam: 1035260 A Game of Changes: @@ -2004,18 +1974,18 @@ A Game of Dwarves: pageId: 40705 steam: 200370 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Zeal Game Studio\A Game of Dwarves}}' + - "{{Game data/config|Windows|{{p|appdata}}\\Zeal Game Studio\\A Game of Dwarves}}" A Game of Thrones - Genesis: pageId: 40901 steam: 58550 -'A Game of Thrones: The Board Game - Digital Edition': +"A Game of Thrones: The Board Game - Digital Edition": gog: 1570109294 pageId: 163960 steam: 1075190 A Gay Love Story About Gay Love: pageId: 164567 steam: 1384700 -A Gay's Life: +"A Gay's Life": pageId: 153125 steam: 1147500 A Gentlemanly Adventure: @@ -2030,14 +2000,12 @@ A Giant Problem: A Girls Fabric Face: pageId: 59031 steam: 603810 -A Glider's Journey: +"A Glider's Journey": pageId: 142009 steam: 1102500 templates: - - >- - {{Game - data/config|Windows|{{P|localappdata}}\FlyingProject\Saved\Config\WindowsNoEditor\|{{P|localappdata}}\FlyingProject\Saved\SaveGames\GlobalSettingsSaveSlot.sav}} - - '{{Game data/saves|Windows|{{P|localappdata}}\FlyingProject\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\FlyingProject\\Saved\\Config\\WindowsNoEditor\\|{{P|localappdata}}\\FlyingProject\\Saved\\SaveGames\\GlobalSettingsSaveSlot.sav}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\FlyingProject\\Saved\\SaveGames\\}}" A God-Like Backhand!: pageId: 56497 steam: 579160 @@ -2046,11 +2014,11 @@ A Golden Wake: pageId: 20418 steam: 307570 templates: - - '{{Game data/config|Windows|{{P|userprofile}}\Saved Games\A Golden Wake\acsetup.cfg}}' - - '{{Game data/config|Linux|{{P|game}}/acsetup.cfg}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\Saved Games\A Golden Wake\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library Application Support/A Golden Wake}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.local/share/A Golden Wake/}}' + - "{{Game data/config|Windows|{{P|userprofile}}\\Saved Games\\A Golden Wake\\acsetup.cfg}}" + - "{{Game data/config|Linux|{{P|game}}/acsetup.cfg}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\Saved Games\\A Golden Wake\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library Application Support/A Golden Wake}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.local/share/A Golden Wake/}}" A Goo Adventure: pageId: 64064 steam: 655470 @@ -2058,17 +2026,17 @@ A Good Snowman Is Hard to Build: pageId: 37752 steam: 316610 templates: - - '{{Game data/config|Windows|{{P|appdata}}\A Good Snowman Is Hard To Build\config.json}}' - - '{{Game data/config|Linux|{{P|linuxhome}}/.local/share/a-good-snowman/config.json}}' - - '{{Game data/saves|Windows|{{P|appdata}}\A Good Snowman Is Hard To Build\progress.json}}' - - '{{Game data/saves|Linux|{{P|linuxhome}}/.local/share/a-good-snowman/progress.json}}' + - "{{Game data/config|Windows|{{P|appdata}}\\A Good Snowman Is Hard To Build\\config.json}}" + - "{{Game data/config|Linux|{{P|linuxhome}}/.local/share/a-good-snowman/config.json}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\A Good Snowman Is Hard To Build\\progress.json}}" + - "{{Game data/saves|Linux|{{P|linuxhome}}/.local/share/a-good-snowman/progress.json}}" A Grande Bagunça Espacial - The Big Space Mess: pageId: 43781 steam: 449220 A Grim Tale of Vices: pageId: 130767 steam: 987140 -A Gummy's Life: +"A Gummy's Life": pageId: 57850 steam: 585190 A Hand in the Darkness: @@ -2080,26 +2048,22 @@ A Handful of Keflings: A Hat in Time: gog: 1686426343 gogSide: - - 2041626152 - - 1345088935 - 1122739696 + - 1345088935 + - 2041626152 pageId: 39610 steam: 253230 steamSide: - - 940220 - - 787340 - 356831 - 693170 + - 787340 + - 940220 templates: - - '{{Game data/config|Windows|{{p|game}}\HatinTimeGame\Config\}}' - - >- - {{Game data/config|OS X|{{p|osxhome}}/Library/Application - Support/com.GearsforBreakfast.HatinTimeGame/HatinTimeGame/Config}} - - '{{Game data/saves|Windows|{{p|game}}\HatinTimeGame\SaveData\}}' - - >- - {{Game data/saves|OS X|{{p|osxhome}}/Library/Application - Support/com.GearsforBreakfast.HatinTimeGame/HatinTimeGame/SaveData}} -'A Haunting: Witching Hour': + - "{{Game data/config|Windows|{{p|game}}\\HatinTimeGame\\Config\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/com.GearsforBreakfast.HatinTimeGame/HatinTimeGame/Config}}" + - "{{Game data/saves|Windows|{{p|game}}\\HatinTimeGame\\SaveData\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/com.GearsforBreakfast.HatinTimeGame/HatinTimeGame/SaveData}}" +"A Haunting: Witching Hour": pageId: 72712 steam: 554550 A Healer Only Lives Twice: @@ -2115,16 +2079,16 @@ A House of Many Doors: pageId: 51505 steam: 437250 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\A_House_of_Many_Doors\Game Data.ini}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\A_House_of_Many_Doors\SaveFile*.homd}}' -A Juggler's Tale: + - "{{Game data/config|Windows|{{P|localappdata}}\\A_House_of_Many_Doors\\Game Data.ini}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\A_House_of_Many_Doors\\SaveFile*.homd}}" +"A Juggler's Tale": gog: 1268895261 pageId: 161003 steam: 1252830 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\ajugglerstale\Saved\Config}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\ajugglerstale\Saved\SaveGames}}' -A Killer's Sorrow: + - "{{Game data/config|Windows|{{P|localappdata}}\\ajugglerstale\\Saved\\Config}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\ajugglerstale\\Saved\\SaveGames}}" +"A Killer's Sorrow": pageId: 121395 steam: 937070 A Kingdom for Keflings: @@ -2142,15 +2106,13 @@ A Kiss for the Petals - Remembering How We Met: pageId: 37465 steam: 397270 templates: - - '{{Game data/config|Windows|{{p|game}}\renpy\config.py}}' - - >- - {{Game data/saves|Windows|{{P|appdata}}\renpy\A Kiss For The Petals - Remembering How We - Met\*.save|{{p|game}}\game\saves\*.save}} -A Knight's Quest: + - "{{Game data/config|Windows|{{p|game}}\\renpy\\config.py}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\renpy\\A Kiss For The Petals - Remembering How We Met\\*.save|{{p|game}}\\game\\saves\\*.save}}" +"A Knight's Quest": pageId: 147577 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\AKnightsQuest\Saved\Config\}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\AKnightsQuest\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\AKnightsQuest\\Saved\\Config\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\AKnightsQuest\\Saved\\SaveGames\\}}" A Land Fit for Heroes: pageId: 43205 steam: 456210 @@ -2165,7 +2127,7 @@ A Legend of Luca: steam: 433600 steamSide: - 457100 -A Legionary's Life: +"A Legionary's Life": gog: 1901298062 pageId: 134830 steam: 1058430 @@ -2174,11 +2136,8 @@ A Light in the Dark: pageId: 87557 steam: 766280 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\Storia_CreSpirit\A Light in the Dark\config.dat}}' - - >- - {{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Storia_CreSpirit\A Light in the - Dark\collections.dat|{{p|userprofile}}\AppData\LocalLow\Storia_CreSpirit\A Light in the - Dark\dialogues.dat|{{p|userprofile}}\AppData\LocalLow\Storia_CreSpirit\A Light in the Dark\savedata.dat}} + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Storia_CreSpirit\\A Light in the Dark\\config.dat}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Storia_CreSpirit\\A Light in the Dark\\collections.dat|{{p|userprofile}}\\AppData\\LocalLow\\Storia_CreSpirit\\A Light in the Dark\\dialogues.dat|{{p|userprofile}}\\AppData\\LocalLow\\Storia_CreSpirit\\A Light in the Dark\\savedata.dat}}" A Little Golf Journey: gog: 1462683593 pageId: 171861 @@ -2187,7 +2146,7 @@ A Little Lily Princess: pageId: 34700 steam: 449250 templates: - - '{{Game data/saves|Linux|{{p|linuxhome}}/.renpy/ALittleLilyPrincess}}' + - "{{Game data/saves|Linux|{{p|linuxhome}}/.renpy/ALittleLilyPrincess}}" A Little Rabbit Story: pageId: 80968 steam: 789000 @@ -2199,8 +2158,8 @@ A Long Journey to an Uncertain End: - 1542590 - 2347370 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Crispy Creative\LongJourney}}' - - '{{Game data/saves|Steam|{{P|steam}}\userdata\{{P|uid}}\1164830\remote\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Crispy Creative\\LongJourney}}" + - "{{Game data/saves|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\1164830\\remote\\}}" A Long Night For Crazy King: pageId: 150754 steam: 1104530 @@ -2229,9 +2188,9 @@ A Magical High School Girl: pageId: 53293 steam: 555630 templates: - - '{{Game data/config|Windows|{{p|hklm}}\SOFTWARE\illuCalab.\MagicalGirl\|{{p|game}}\config.dat}}' - - '{{Game data/saves|Windows|{{p|game}}\score*.dat}}' -'A Mars Adventure: Redturtle': + - "{{Game data/config|Windows|{{p|hklm}}\\SOFTWARE\\illuCalab.\\MagicalGirl\\|{{p|game}}\\config.dat}}" + - "{{Game data/saves|Windows|{{p|game}}\\score*.dat}}" +"A Mars Adventure: Redturtle": pageId: 112584 steam: 936000 A Mass of Dead: @@ -2250,8 +2209,8 @@ A Memoir Blue: pageId: 176950 steam: 1497450 templates: - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Cloisters Interactive\A_Memoir_Blue\saves\}}' -A Midsummer Night's Choice: + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Cloisters Interactive\\A_Memoir_Blue\\saves\\}}" +"A Midsummer Night's Choice": pageId: 36796 steam: 520150 A Mining Game: @@ -2260,21 +2219,19 @@ A Mining Game: A Modest Legacy: pageId: 184619 steam: 1858090 -A Monster's Expedition: +"A Monster's Expedition": pageId: 163432 steam: 1052990 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Draknek and Friends\A Monster''s Expedition}}' + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Draknek and Friends\\A Monster's Expedition}}" A More Beautiful World: pageId: 39458 steam: 436680 -A Mortician's Tale: +"A Mortician's Tale": pageId: 58394 steam: 578720 templates: - - >- - {{Game data/config|Windows|{{P|userprofile}}\AppData\LocalLow\Laundry Bear Games\A Mortician's - Tale\options|{{P|hkcu}}\Software\Laundry Bear Games\A Mortician's Tale\}} + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Laundry Bear Games\\A Mortician's Tale\\options|{{P|hkcu}}\\Software\\Laundry Bear Games\\A Mortician's Tale\\}}" A Moustache in the House: pageId: 155514 steam: 1203770 @@ -2286,8 +2243,8 @@ A Musical Story: pageId: 172768 steam: 1546100 templates: - - '{{Game data/saves|Windows|{{p|game}}\Save}}' -A NIGHTMARE'S TRIP: + - "{{Game data/saves|Windows|{{p|game}}\\Save}}" +"A NIGHTMARE'S TRIP": pageId: 149101 steam: 1156630 steamSide: @@ -2300,13 +2257,9 @@ A New Beginning: pageId: 7315 steam: 105000 templates: - - >- - {{Game data/config|Windows|{{p|localappdata}}\Daedalic Entertainment\A New - Beginning\config.ini||{{p|localappdata}}\Daedalic Entertainment\A New Beginning - Final Cut\config.ini}} - - >- - {{Game data/saves|Windows|{{p|localappdata}}\Daedalic Entertainment\A New - Beginning\Savegames\||{{p|localappdata}}\Daedalic Entertainment\A New Beginning - Final Cut\Savegames\}} -'A New World: Kingdoms': + - "{{Game data/config|Windows|{{p|localappdata}}\\Daedalic Entertainment\\A New Beginning\\config.ini||{{p|localappdata}}\\Daedalic Entertainment\\A New Beginning - Final Cut\\config.ini}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Daedalic Entertainment\\A New Beginning\\Savegames\\||{{p|localappdata}}\\Daedalic Entertainment\\A New Beginning - Final Cut\\Savegames\\}}" +"A New World: Kingdoms": pageId: 72523 steam: 628650 A New Zero: @@ -2319,12 +2272,12 @@ A Normal Lost Phone: pageId: 53578 steam: 523210 templates: - - '{{Game data/config|Windows|{{p|HKCU}}\Software\Accidental Queens\A Normal Lost Phone\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Accidental Queens\A Normal Lost Phone\save}}' + - "{{Game data/config|Windows|{{p|HKCU}}\\Software\\Accidental Queens\\A Normal Lost Phone\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Accidental Queens\\A Normal Lost Phone\\save}}" A Nova Califórnia: pageId: 70379 steam: 699510 -A Number's life: +"A Number's life": pageId: 54963 steam: 560200 A Penny For Some Motivation: @@ -2336,7 +2289,7 @@ A Percent of a Pirate: A Perfect Day: pageId: 93364 steam: 843810 -A Pirate's Pleasure: +"A Pirate's Pleasure": pageId: 152783 steam: 1183230 A Pixel Story: @@ -2345,17 +2298,17 @@ A Pixel Story: A Place for the Unwilling: pageId: 135781 steam: 1064310 -'A Plague Tale: Innocence': +"A Plague Tale: Innocence": gog: 1924096256 pageId: 110952 steam: 752590 steamSide: - 967380 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\A Plague Tale Innocence\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\A Plague Tale Innocence\}}' - - '{{Game data/saves|Steam|{{P|Steam}}\userdata\{{P|uid}}\752590\}}' -'A Plague Tale: Requiem': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\A Plague Tale Innocence\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\A Plague Tale Innocence\\}}" + - "{{Game data/saves|Steam|{{P|Steam}}\\userdata\\{{P|uid}}\\752590\\}}" +"A Plague Tale: Requiem": gog: 1552771812 gogSide: - 2127449931 @@ -2364,14 +2317,12 @@ A Place for the Unwilling: steamSide: - 1906530 templates: - - '{{Game data/config|GOG.com|{{p|userprofile\Documents}}\My Games\A Plague Tale Requiem\ENGINESETTINGS}}' - - '{{Game data/config|Microsoft Store|{{p|userprofile\Documents}}\My Games\A Plague Tale Requiem\ENGINESETTINGS}}' - - '{{Game data/config|Steam|{{P|appdata}}\A Plague Tale Requiem\ENGINESETTINGS}}' - - '{{Game data/saves|GOG.com|{{p|localappdata}}\GOG.com\Galaxy\Applications\55243620139303375\Storage\Shared\Files}}' - - >- - {{Game data/saves|Microsoft - Store|{{p|localappdata}}\Packages\FocusHomeInteractiveSA.APlagueTaleRequiem-Windows_4hny5m903y3g0\SystemAppData\wgs\{{p|uid}}}} - - '{{Game data/saves|Steam|{{P|steam}}\userdata\1182900\{{p|uid}}\remote}}' + - "{{Game data/config|GOG.com|{{p|userprofile\\Documents}}\\My Games\\A Plague Tale Requiem\\ENGINESETTINGS}}" + - "{{Game data/config|Microsoft Store|{{p|userprofile\\Documents}}\\My Games\\A Plague Tale Requiem\\ENGINESETTINGS}}" + - "{{Game data/config|Steam|{{P|appdata}}\\A Plague Tale Requiem\\ENGINESETTINGS}}" + - "{{Game data/saves|GOG.com|{{p|localappdata}}\\GOG.com\\Galaxy\\Applications\\55243620139303375\\Storage\\Shared\\Files}}" + - "{{Game data/saves|Microsoft Store|{{p|localappdata}}\\Packages\\FocusHomeInteractiveSA.APlagueTaleRequiem-Windows_4hny5m903y3g0\\SystemAppData\\wgs\\{{p|uid}}}}" + - "{{Game data/saves|Steam|{{P|steam}}\\userdata\\1182900\\{{p|uid}}\\remote}}" A Planet of Mine: pageId: 153460 steam: 1170980 @@ -2381,7 +2332,7 @@ A Plot Story: A Plunge into Darkness: pageId: 156917 steam: 615700 -A Princess' Tale: +"A Princess' Tale": pageId: 42950 steam: 461380 A Purrtato Tail - By the Light of the Elderstar: @@ -2409,12 +2360,9 @@ A Robot Named Fight!: pageId: 66273 steam: 603530 templates: - - '{{Game data/saves|Windows|{{P|userprofile}}\Appdata\LocalLow\Matt Bitner\A Robot Named Fight\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/unity.Matt Bitner.A Robot Named Fight/}}' - - >- - {{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Matt Bitner/A Robot Named - Fight/{{Refurl|url=https://steamcommunity.com/app/603530/discussions/1/1473096694440794319/#c3377008022026160641/|title=Where - is my save file? :: A Robot Named Fight Bug Reporting|date=2019-05-28}}}} + - "{{Game data/saves|Windows|{{P|userprofile}}\\Appdata\\LocalLow\\Matt Bitner\\A Robot Named Fight\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/unity.Matt Bitner.A Robot Named Fight/}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Matt Bitner/A Robot Named Fight/{{Refurl|url=https://steamcommunity.com/app/603530/discussions/1/1473096694440794319/#c3377008022026160641/|title=Where is my save file? :: A Robot Named Fight Bug Reporting|date=2019-05-28}}}}" A Roll-Back Story: pageId: 100390 steam: 886390 @@ -2427,7 +2375,7 @@ A Rose in the Twilight: A Salem Witch Trial - Murder Mystery: pageId: 81615 steam: 788740 -A Sceptic's Guide to Magic: +"A Sceptic's Guide to Magic": pageId: 135736 steam: 1074520 A Second Before Us: @@ -2447,11 +2395,11 @@ A Short Hike: pageId: 132799 steam: 1055540 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\adamgryu\A Short Hike\}}' - - '{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/adamgryu/A Short Hike/}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\adamgryu\A Short Hike\GameSaveNew.mountain}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/com.adamgryu.AShortHike/GameSaveNew.mountain}}' - - '{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/adamgryu/A Short Hike/GameSaveNew.mountain}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\adamgryu\\A Short Hike\\}}" + - "{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/adamgryu/A Short Hike/}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\adamgryu\\A Short Hike\\GameSaveNew.mountain}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/com.adamgryu.AShortHike/GameSaveNew.mountain}}" + - "{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/adamgryu/A Short Hike/GameSaveNew.mountain}}" A Show of Kindness: pageId: 123203 steam: 974840 @@ -2462,12 +2410,12 @@ A Sky Full of Stars: pageId: 77281 steam: 745960 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\Saved Games\MoeNovel\A Sky Full of Stars\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\Saved Games\MoeNovel\A Sky Full of Stars\}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\Saved Games\\MoeNovel\\A Sky Full of Stars\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Saved Games\\MoeNovel\\A Sky Full of Stars\\}}" A Small Robot Story: pageId: 78282 steam: 753440 -A Snake's Tale: +"A Snake's Tale": pageId: 64500 steam: 654810 A Song in the Void: @@ -2481,8 +2429,8 @@ A Space for the Unbound: pageId: 154406 steam: 1201270 templates: - - '{{Game data/config|Windows|{{P|userprofile\appdata\locallow}}\Mojiken\A Space for the Unbound}}' - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Mojiken\A Space for the Unbound}}' + - "{{Game data/config|Windows|{{P|userprofile\\appdata\\locallow}}\\Mojiken\\A Space for the Unbound}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Mojiken\\A Space for the Unbound}}" A Space for the Unbound - Prologue: pageId: 156312 steam: 1201280 @@ -2502,26 +2450,26 @@ A Story about My Uncle: - A Story About My Uncle steam: 278360 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\A Story About My Uncle\ASAMU\Config\}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.steam/steam/steamapps/common/A Story About My Uncle/*/Config/}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\A Story About My Uncle\ASAMU\Saves\}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.steam/steam/steamapps/common/A Story About My Uncle/ASAMU/Saves/}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\A Story About My Uncle\\ASAMU\\Config\\}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.steam/steam/steamapps/common/A Story About My Uncle/*/Config/}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\A Story About My Uncle\\ASAMU\\Saves\\}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.steam/steam/steamapps/common/A Story About My Uncle/ASAMU/Saves/}}" A Story of Distress: pageId: 82886 steam: 791760 A Story of Us - ep. 1 - First Memories: pageId: 128252 steam: 1026810 -'A Street Cat''s Tale : support edition': +"A Street Cat's Tale : support edition": pageId: 144649 steam: 1140570 -'A Stroke of Fate: Operation Bunker': +"A Stroke of Fate: Operation Bunker": pageId: 46749 steam: 372570 -'A Stroke of Fate: Operation Valkyrie': +"A Stroke of Fate: Operation Valkyrie": pageId: 40870 steam: 10240 -'A Study in Steampunk: Choice by Gaslight': +"A Study in Steampunk: Choice by Gaslight": pageId: 37327 steam: 421630 A Summer Promise to Forever: @@ -2536,22 +2484,22 @@ A Sun Of Salt: A Tale for Anna: pageId: 184833 steam: 1521930 -'A Tale of Caos: Overture': +"A Tale of Caos: Overture": pageId: 55193 steam: 500320 -'A Tale of Paper: Refolded': +"A Tale of Paper: Refolded": gog: 1433408594 pageId: 181047 steam: 1454640 -'A Tale of Pirates: a Dummy Mutiny': +"A Tale of Pirates: a Dummy Mutiny": pageId: 94519 steam: 852570 A Tale of Two Kingdoms: pageId: 59253 steam: 603870 templates: - - '{{Game data/config|Windows|{{P|game}}\acsetup.cfg}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\Saved Games\A Tale of Two Kingdoms}}' + - "{{Game data/config|Windows|{{P|game}}\\acsetup.cfg}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Saved Games\\A Tale of Two Kingdoms}}" A Time Paradox: pageId: 151377 steam: 1167730 @@ -2561,44 +2509,44 @@ A Timely Intervention: A Tofu Tail: pageId: 153569 steam: 454240 -'A Top-Down Job: Blood Gain': +"A Top-Down Job: Blood Gain": pageId: 112496 steam: 934470 -'A Total War Saga: Troy': +"A Total War Saga: Troy": pageId: 147224 steam: 1099410 templates: - - '{{Game data/saves|Windows|{{p|APPDATA}}\The Creative Assembly\Troy\save_games}}' + - "{{Game data/saves|Windows|{{p|APPDATA}}\\The Creative Assembly\\Troy\\save_games}}" A Tractor: pageId: 103971 steam: 779050 -'A Trip to Yugoslavia: Director''s Cut': +"A Trip to Yugoslavia: Director's Cut": pageId: 58001 steam: 545410 -A Turd's Life: +"A Turd's Life": pageId: 88714 steam: 804400 -A Typewriter's Story: +"A Typewriter's Story": pageId: 97920 steam: 873310 A Valley Without Wind: pageId: 10147 steam: 209330 templates: - - '{{Game data/config|Windows|{{p|game}}\RuntimeData\settings.dat|{{p|game}}\RuntimeData\serversettings.dat}}' - - '{{Game data/saves|Windows|{{p|game}}\RuntimeData\Worlds\}}' + - "{{Game data/config|Windows|{{p|game}}\\RuntimeData\\settings.dat|{{p|game}}\\RuntimeData\\serversettings.dat}}" + - "{{Game data/saves|Windows|{{p|game}}\\RuntimeData\\Worlds\\}}" A Valley Without Wind 2: pageId: 10150 steam: 228320 templates: - - '{{Game data/config|Linux|{{p|game}}/RuntimeData/settings.dat}}' - - '{{Game data/saves|Linux|{{p|game}}/RuntimeData/Worlds/}}' + - "{{Game data/config|Linux|{{p|game}}/RuntimeData/settings.dat}}" + - "{{Game data/saves|Linux|{{p|game}}/RuntimeData/Worlds/}}" A Vampyre Story: gog: 1481793614 pageId: 49927 steam: 313870 templates: - - '{{Game data/saves|Windows|{{p|game}}\game\assets\scripts}}' + - "{{Game data/saves|Windows|{{p|game}}\\game\\assets\\scripts}}" A Verdant Hue: pageId: 42065 steam: 496380 @@ -2606,13 +2554,13 @@ A Virus Named TOM: pageId: 4884 steam: 207650 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\SavedGames\avnt\CircuitGameData\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/AVNT/CircuitGameData/}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/AVNT/CircuitGameData/}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\SavedGames\avnt\CircuitGameData\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/AVNT/CircuitGameData/}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/AVNT/CircuitGameData/}}' - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{P|uid}}/207650/remote/}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\SavedGames\\avnt\\CircuitGameData\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/AVNT/CircuitGameData/}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/AVNT/CircuitGameData/}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\SavedGames\\avnt\\CircuitGameData\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/AVNT/CircuitGameData/}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/AVNT/CircuitGameData/}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{P|uid}}/207650/remote/}}" A Walk Along the Wall: pageId: 79748 steam: 776360 @@ -2622,7 +2570,7 @@ A Walk in the Dark: A Walk in the Woods: pageId: 92241 steam: 842420 -A Wanderer's Adventure: +"A Wanderer's Adventure": pageId: 143897 steam: 1127200 A War Story: @@ -2632,10 +2580,8 @@ A Way Out: pageId: 81902 steam: 1222700 templates: - - >- - {{Game data/config|Windows|{{P|userprofile\Documents}}\My Games\A Way - Out\|{{p|localappdata}}\Haze1\Saved\Config\WindowsNoEditor\}} - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\My Games\A Way Out\Saves\}}' + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\My Games\\A Way Out\\|{{p|localappdata}}\\Haze1\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\My Games\\A Way Out\\Saves\\}}" A Week of Circus Terror: pageId: 41795 steam: 498450 @@ -2643,23 +2589,23 @@ A Wild Catgirl Appears!: pageId: 45097 steam: 429580 templates: - - '{{Game data/config|Windows|{{p|game}}\renpy\config.py}}' - - '{{Game data/saves|Windows|{{p|game}}\game\saves\|{{p|appdata}}\renpy\A Wild Catgirl Appears-1466283085\}}' -A Winter's Daydream: + - "{{Game data/config|Windows|{{p|game}}\\renpy\\config.py}}" + - "{{Game data/saves|Windows|{{p|game}}\\game\\saves\\|{{p|appdata}}\\renpy\\A Wild Catgirl Appears-1466283085\\}}" +"A Winter's Daydream": pageId: 113790 steam: 925340 templates: - - '{{Game data/config|Windows|{{p|game}}\renpy\config.py}}' - - '{{Game data/saves|Windows|{{P|appdata}}\renpy\winter-daydream-1528552171\*.save|{{p|game}}\game\saves\*.save}}' + - "{{Game data/config|Windows|{{p|game}}\\renpy\\config.py}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\renpy\\winter-daydream-1528552171\\*.save|{{p|game}}\\game\\saves\\*.save}}" A Wise Use of Time: pageId: 46540 steam: 397780 -A Wizard's Lizard: +"A Wizard's Lizard": pageId: 50051 steam: 280040 templates: - - '{{Game data/saves|Windows|{{p|localappdata}}\A Wizard''s Lizard}}' -'A Wizard''s Lizard: Soul Thief': + - "{{Game data/saves|Windows|{{p|localappdata}}\\A Wizard's Lizard}}" +"A Wizard's Lizard: Soul Thief": pageId: 43734 steam: 373470 A Wolf in Autumn: @@ -2680,7 +2626,7 @@ A Year of Rain: pageId: 132836 steam: 319540 templates: - - '{{Game data/config|Windows|{{P|game}}\AYearOfRain\Saved\Config\WindowsNoEditor\}}' + - "{{Game data/config|Windows|{{P|game}}\\AYearOfRain\\Saved\\Config\\WindowsNoEditor\\}}" A five-day tour in the morgue: pageId: 134586 steam: 1057310 @@ -2714,7 +2660,7 @@ A-Gents: pageId: 43482 steam: 460910 templates: - - '{{Game data/saves|Windows|{{p|hkcu}}\Software\phime studio\A-Gents}}' + - "{{Game data/saves|Windows|{{p|hkcu}}\\Software\\phime studio\\A-Gents}}" A-Men: pageId: 50711 steam: 264460 @@ -2727,19 +2673,19 @@ A-Tech Cybernetic VR: - A-Tech Cybernetic steam: 578210 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\VRFPS_1\Saved\Config\WindowsNoEditor}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\VRFPS_1\Saved\SaveGames}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\VRFPS_1\\Saved\\Config\\WindowsNoEditor}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\VRFPS_1\\Saved\\SaveGames}}" A-Train 8: pageId: 40592 steam: 249930 -'A-Train 9 V4.0: Japan Rail Simulator': +"A-Train 9 V4.0: Japan Rail Simulator": pageId: 45962 steam: 278550 A-Train PC Classic: pageId: 54930 steam: 492090 templates: - - '{{Game data/saves|Windows|{{P|steam}}\userdata\{{P|uid}}\492090\}}' + - "{{Game data/saves|Windows|{{P|steam}}\\userdata\\{{P|uid}}\\492090\\}}" A-Vroom!: pageId: 149360 steam: 1159070 @@ -2747,63 +2693,59 @@ A.D. 2044: gog: 2075976504 pageId: 76799 templates: - - '{{Game data/config|Windows|{{p|game}}\save0009.dta}}' - - '{{Game data/saves|Windows|{{p|game}}\save000*.dta}}' + - "{{Game data/config|Windows|{{p|game}}\\save0009.dta}}" + - "{{Game data/saves|Windows|{{p|game}}\\save000*.dta}}" A.I. Invasion: pageId: 46216 steam: 386540 A.I. Space Corps: pageId: 44683 steam: 423180 -'A.I.M. 2: Clan Wars': +"A.I.M. 2: Clan Wars": gog: 1103597019 pageId: 31229 steam: 289180 templates: - - '{{Game data/config|Windows|{{p|game}}\Data\CONFIG\}}' - - '{{Game data/saves|Windows|{{p|game}}\SAVES\}}' + - "{{Game data/config|Windows|{{p|game}}\\Data\\CONFIG\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\SAVES\\}}" A.I.M. Racing: gog: 1732894127 pageId: 35996 steam: 46200 templates: - - >- - {{Game data/config|Windows|Main: {{P|game}}\Data\Config\cfg.ini
Player-specific: - {{p|userprofile\Documents}}\My Games\A.I.M. Racing\(player name).ini}} - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\A.I.M. Racing\}}' -'A.I.M.3: War Protocol': + - "{{Game data/config|Windows|Main: {{P|game}}\\Data\\Config\\cfg.ini
Player-specific: {{p|userprofile\\Documents}}\\My Games\\A.I.M. Racing\\(player name).ini}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\A.I.M. Racing\\}}" +"A.I.M.3: War Protocol": pageId: 157329 steam: 1171340 -'A.I.M.: Artificial Intelligence Machines': +"A.I.M.: Artificial Intelligence Machines": pageId: 36003 templates: - - '{{Game data/config|Windows|{{P|game}}\data\config\}}' - - '{{Game data/saves|Windows|{{P|game}}\SAVES\}}' + - "{{Game data/config|Windows|{{P|game}}\\data\\config\\}}" + - "{{Game data/saves|Windows|{{P|game}}\\SAVES\\}}" A.L.A.N.: pageId: 77057 steam: 754190 -'A.L.A.N.: Rift Breakers': +"A.L.A.N.: Rift Breakers": pageId: 109930 steam: 918120 A.N.N.E: pageId: 130609 steam: 262370 -'A.R.E.S.: Extinction Agenda': +"A.R.E.S.: Extinction Agenda": pageId: 9805 steam: 92300 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\ARES\config.ini}}' - - '{{Game data/config|Steam|{{p|steam}}/userdata/{{p|uid}}/92300/}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\ARES\Profile\*.plf}}' - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/92300/}}' -'A.R.E.S.: Extinction Agenda EX': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\ARES\\config.ini}}" + - "{{Game data/config|Steam|{{p|steam}}/userdata/{{p|uid}}/92300/}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\ARES\\Profile\\*.plf}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/92300/}}" +"A.R.E.S.: Extinction Agenda EX": pageId: 49574 steam: 315340 templates: - - >- - {{Game - data/config|Windows|{{p|userprofile\Documents}}\ARES_EX\configs.ini|{{p|userprofile\Documents}}\ARES_EX\keyboard.configs|{{p|userprofile\Documents}}\ARES_EX\xinput.configs}} - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\ARES_EX\steam-*\save.profile}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\ARES_EX\\configs.ini|{{p|userprofile\\Documents}}\\ARES_EX\\keyboard.configs|{{p|userprofile\\Documents}}\\ARES_EX\\xinput.configs}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\ARES_EX\\steam-*\\save.profile}}" A.S.H.: pageId: 93323 steam: 827580 @@ -2817,20 +2759,20 @@ A.W.O.L.: pageId: 173988 steam: 1740150 templates: - - '{{Game data/config|Windows|{{p|game}}\*.cfg}}' - - '{{Game data/config|Linux|{{p|game}}\*.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\save*.esv}}' - - '{{Game data/saves|Linux|{{p|game}}\save*.esv}}' + - "{{Game data/config|Windows|{{p|game}}\\*.cfg}}" + - "{{Game data/config|Linux|{{p|game}}\\*.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\save*.esv}}" + - "{{Game data/saves|Linux|{{p|game}}\\save*.esv}}" A2 Racer: pageId: 1700 A2 Racer II: pageId: 88285 -'A2 Racer III: Europa Tour': +"A2 Racer III: Europa Tour": pageId: 88287 -'A2 Racer IV: The Cop''s Revenge': +"A2 Racer IV: The Cop's Revenge": pageId: 88289 templates: - - '{{Game data/saves|Windows |{{p|game}}\SaveGame0.RCR}}' + - "{{Game data/saves|Windows |{{p|game}}\\SaveGame0.RCR}}" A2Be - A Science-Fiction Narrative: pageId: 95019 steam: 656540 @@ -2840,19 +2782,19 @@ AA Touch Gun!: AAAAXY: pageId: 185075 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\AAAAXY\}}' - - '{{Game data/config|OS X|~/Library/Application Support/AAAAXY/config}}' - - '{{Game data/config|Linux|~/.config/AAAAXY}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\Saved Games\AAAAXY\}}' - - '{{Game data/saves|OS X|~/Library/Application Support/AAAAXY/save}}' - - '{{Game data/saves|Linux|~/.local/share/AAAAXY}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\AAAAXY\\}}" + - "{{Game data/config|OS X|~/Library/Application Support/AAAAXY/config}}" + - "{{Game data/config|Linux|~/.config/AAAAXY}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Saved Games\\AAAAXY\\}}" + - "{{Game data/saves|OS X|~/Library/Application Support/AAAAXY/save}}" + - "{{Game data/saves|Linux|~/.local/share/AAAAXY}}" ABANdon02: pageId: 153430 steam: 1201530 ABC Coloring Town: pageId: 42824 steam: 478010 -'ABD: A Beautiful Day': +"ABD: A Beautiful Day": pageId: 46859 steam: 384920 ABE VR: @@ -2861,17 +2803,17 @@ ABE VR: ABRACA - Imagic Games: pageId: 43867 steam: 345990 -ACA NeoGeo The King of Fighters '94: +"ACA NeoGeo The King of Fighters '94": pageId: 92504 -ACA NeoGeo The King of Fighters '95: +"ACA NeoGeo The King of Fighters '95": pageId: 92507 -ACA NeoGeo The King of Fighters '96: +"ACA NeoGeo The King of Fighters '96": pageId: 97609 -ACA NeoGeo The King of Fighters '97: +"ACA NeoGeo The King of Fighters '97": pageId: 111616 -ACA NeoGeo The King of Fighters '98: +"ACA NeoGeo The King of Fighters '98": pageId: 133831 -ACA NeoGeo The King of Fighters '99: +"ACA NeoGeo The King of Fighters '99": pageId: 133833 ACA NeoGeo The King of Fighters 2000: pageId: 133835 @@ -2902,15 +2844,13 @@ ADIOS Amigos: ADM 2(WHEN WORLDS COLLIDE): pageId: 141245 steam: 1082780 -'ADOM: Ancient Domains of Mystery': +"ADOM: Ancient Domains of Mystery": gog: 1499192955 pageId: 37945 steam: 333300 templates: - - >- - {{Game - data/config|Steam|{{P|userprofile\Documents}}\ADOM\adom_steam\adom.cfg|{{P|userprofile\Documents}}\ADOM\adom_steam\config.noe|{{P|userprofile\Documents}}\ADOM\adom_steam\config-adom.noe}} - - '{{Game data/saves|Steam|{{P|userprofile\Documents}}\ADOM\adom_steam\savedg\*.svg}}' + - "{{Game data/config|Steam|{{P|userprofile\\Documents}}\\ADOM\\adom_steam\\adom.cfg|{{P|userprofile\\Documents}}\\ADOM\\adom_steam\\config.noe|{{P|userprofile\\Documents}}\\ADOM\\adom_steam\\config-adom.noe}}" + - "{{Game data/saves|Steam|{{P|userprofile\\Documents}}\\ADOM\\adom_steam\\savedg\\*.svg}}" ADR-Labelling Game: pageId: 91482 steam: 821800 @@ -2932,12 +2872,12 @@ AEW Fight Forever: pageId: 177529 steam: 1913210 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\AEWFightForever\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\AEWFightForever\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\AEWFightForever\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\AEWFightForever\\Saved\\SaveGames\\}}" AF-ZERO: pageId: 75437 steam: 744280 -'AFFECTED: The Manor': +"AFFECTED: The Manor": pageId: 72718 steam: 707580 AFL 23: @@ -2952,8 +2892,8 @@ AFL Evolution 2: AFL Live: pageId: 89116 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\AFL Live\}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\My Games\AFL Live\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\AFL Live\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\My Games\\AFL Live\\}}" AFTER-H: pageId: 94056 steam: 854110 @@ -2962,7 +2902,7 @@ AFTERLIFE (2021): renamedFrom: - AFTERLIFE steam: 1619590 -'AFTERLIFE: KILLING DEATH': +"AFTERLIFE: KILLING DEATH": pageId: 175603 steam: 1879720 AGENT 00111: @@ -2972,21 +2912,21 @@ AGON - The Mysterious Codex (Trilogy): pageId: 45581 steam: 410120 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Private Moon Studios\AGON_Tmc}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Private Moon Studios\AGON_Tmc\Save}}' -'AGON: The Lost Sword of Toledo': + - "{{Game data/config|Windows|{{p|appdata}}\\Private Moon Studios\\AGON_Tmc}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Private Moon Studios\\AGON_Tmc\\Save}}" +"AGON: The Lost Sword of Toledo": pageId: 45565 steam: 410130 templates: - - '{{Game data/config|Windows|{{P|appdata}}\Private Moon Studios\AGON_Toledo\AGON.ini}}' - - '{{Game data/saves|Windows|{{P|appdata}}\Private Moon Studios\AGON_Toledo\Save\}}' -'AGOS: A Game of Space': + - "{{Game data/config|Windows|{{P|appdata}}\\Private Moon Studios\\AGON_Toledo\\AGON.ini}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\Private Moon Studios\\AGON_Toledo\\Save\\}}" +"AGOS: A Game of Space": pageId: 164802 renamedFrom: - - 'AGOS: A Game Of Space' + - "AGOS: A Game Of Space" steam: 1392700 templates: - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\AGOS\Saves\}}' + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\AGOS\\Saves\\}}" AHTS Ship Simulator: pageId: 65285 steam: 670910 @@ -3008,8 +2948,8 @@ AI Vendetta: AI War 2: gog: 1895572517 gogSide: - - 1889174592 - 1512994101 + - 1889174592 - 1971284855 pageId: 93289 steam: 573410 @@ -3018,47 +2958,32 @@ AI War 2: - 1290340 - 1466780 templates: - - '{{Game data/config|Windows|{{P|game}}\PlayerData}}' - - >- - {{Game data/saves|Windows|{{p|game}}\PlayerData\*.dat | {{p|game}}\PlayerData\*.bak | - {{p|game}}\PlayerData\*.graphics | {{p|game}}\PlayerData\Profiles\*.aiwprof | {{p|game}}\PlayerData\Save\ }} -'AI War: Fleet Command': + - "{{Game data/config|Windows|{{P|game}}\\PlayerData}}" + - "{{Game data/saves|Windows|{{p|game}}\\PlayerData\\*.dat | {{p|game}}\\PlayerData\\*.bak | {{p|game}}\\PlayerData\\*.graphics | {{p|game}}\\PlayerData\\Profiles\\*.aiwprof | {{p|game}}\\PlayerData\\Save\\ }}" +"AI War: Fleet Command": gog: 1207665323 pageId: 10464 steam: 40400 templates: - - '{{Game data/config|Windows|{{p|game}}\RuntimeData\Save\}}' - - '{{Game data/saves|Windows|{{p|game}}\RuntimeData\}}' -'AI: Rampage': + - "{{Game data/config|Windows|{{p|game}}\\RuntimeData\\Save\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\RuntimeData\\}}" +"AI: Rampage": pageId: 44800 steam: 438020 -'AI: The Somnium Files': +"AI: The Somnium Files": pageId: 132809 steam: 948740 templates: - - >- - {{Game data/config|Windows|{{P|localappdata}}\SpikeChunsoft\AI The Somnium - Files\launcher.ini|{{p|hkcu}}\Software\SpikeChunsoft\AI_TheSomniumFiles\}} - - >- - {{Game data/config|Microsoft Store|{{P|localappdata}}\SpikeChunsoft\AI The Somnium - Files\launcher.ini|{{p|hkcu}}\Software\SpikeChunsoft\AI_TheSomniumFiles\}} - - >- - {{Game data/saves|Windows|{{P|localappdata}}\SpikeChunsoft\AI The Somnium - Files\PSYNCAUTOSAVE|{{P|localappdata}}\SpikeChunsoft\AI The Somnium Files\PSYNCDEF*}} - - >- - {{Game data/saves|Microsoft - Store|{{P|localappdata}}\Packages\44133SpikeChunsoftCo.Ltd.429137939DA7E_f545tdr3ah1rr\SystemAppData\wgs\}} -'AI: The Somnium Files - nirvanA Initiative': + - "{{Game data/config|Windows|{{P|localappdata}}\\SpikeChunsoft\\AI The Somnium Files\\launcher.ini|{{p|hkcu}}\\Software\\SpikeChunsoft\\AI_TheSomniumFiles\\}}" + - "{{Game data/config|Microsoft Store|{{P|localappdata}}\\SpikeChunsoft\\AI The Somnium Files\\launcher.ini|{{p|hkcu}}\\Software\\SpikeChunsoft\\AI_TheSomniumFiles\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\SpikeChunsoft\\AI The Somnium Files\\PSYNCAUTOSAVE|{{P|localappdata}}\\SpikeChunsoft\\AI The Somnium Files\\PSYNCDEF*}}" + - "{{Game data/saves|Microsoft Store|{{P|localappdata}}\\Packages\\44133SpikeChunsoftCo.Ltd.429137939DA7E_f545tdr3ah1rr\\SystemAppData\\wgs\\}}" +"AI: The Somnium Files - nirvanA Initiative": pageId: 169653 steam: 1449200 templates: - - >- - {{Game data/config|Windows|{{P|localappdata}}\SpikeChunsoft\AI Nirvana - Initiative\launcher.ini|{{p|hkcu}}\Software\SpikeChunsoft\AI_TheSomniumFiles2\}} - - >- - {{Game data/saves|Windows|{{P|localappdata}}\SpikeChunsoft\AI Nirvana - Initiative\Auto.dat|{{P|localappdata}}\SpikeChunsoft\AI Nirvana - Initiative\Manual.dat|{{P|localappdata}}\SpikeChunsoft\AI Nirvana Initiative\System.dat}} + - "{{Game data/config|Windows|{{P|localappdata}}\\SpikeChunsoft\\AI Nirvana Initiative\\launcher.ini|{{p|hkcu}}\\Software\\SpikeChunsoft\\AI_TheSomniumFiles2\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\SpikeChunsoft\\AI Nirvana Initiative\\Auto.dat|{{P|localappdata}}\\SpikeChunsoft\\AI Nirvana Initiative\\Manual.dat|{{P|localappdata}}\\SpikeChunsoft\\AI Nirvana Initiative\\System.dat}}" AIDS Simulator: pageId: 96877 steam: 875280 @@ -3078,12 +3003,12 @@ AIdol: pageId: 92147 steam: 829210 templates: - - '{{Game data/config|Windows|{{P|appdata}}\RenPy\AIdol-1507887105\persistent}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/RenPy/AIdol-1507887105/persistent}}' - - '{{Game data/config|Linux|{{p|linuxhome}}\.renpy\AIdol-1507887105\persistent}}' - - '{{Game data/saves|Windows|{{P|appdata}}\RenPy\AIdol-1507887105\*.save}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/RenPy/AIdol-1507887105/*.save}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.renpy/AIdol-1507887105/*.save}}' + - "{{Game data/config|Windows|{{P|appdata}}\\RenPy\\AIdol-1507887105\\persistent}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/RenPy/AIdol-1507887105/persistent}}" + - "{{Game data/config|Linux|{{p|linuxhome}}\\.renpy\\AIdol-1507887105\\persistent}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\RenPy\\AIdol-1507887105\\*.save}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/RenPy/AIdol-1507887105/*.save}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.renpy/AIdol-1507887105/*.save}}" AI*Shoujo: pageId: 166213 renamedFrom: @@ -3108,12 +3033,12 @@ ALLTYNEX Second: pageId: 38159 steam: 283840 templates: - - '{{Game data/config|Windows|{{p|appdata}}\SITER SKAIN\ALLTYNEX Second}}' - - '{{Game data/saves|Windows|{{p|appdata}}\SITER SKAIN\ALLTYNEX Second}}' + - "{{Game data/config|Windows|{{p|appdata}}\\SITER SKAIN\\ALLTYNEX Second}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\SITER SKAIN\\ALLTYNEX Second}}" ALPHA: pageId: 148521 steam: 1171880 -'ALTDEUS: Beyond Chronos': +"ALTDEUS: Beyond Chronos": pageId: 175006 steam: 150208 ALTERITY EXPERIENCE: @@ -3123,9 +3048,9 @@ ALTF4: pageId: 181860 steam: 1137460 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\ALTF4_F\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\ALTF4_F\Saved\SaveGames\}}' -'ALaLa: Wake Mi Up!': + - "{{Game data/config|Windows|{{p|localappdata}}\\ALTF4_F\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\ALTF4_F\\Saved\\SaveGames\\}}" +"ALaLa: Wake Mi Up!": pageId: 62296 steam: 628820 AL・FINE: @@ -3134,10 +3059,10 @@ AL・FINE: AMAZEing Adventures: pageId: 54606 steam: 552870 -'AMaze Achievements: Darkness': +"AMaze Achievements: Darkness": pageId: 70489 steam: 710440 -'AMaze Achievements: Forest': +"AMaze Achievements: Forest": pageId: 70635 steam: 710450 AMazing TD: @@ -3149,7 +3074,7 @@ ANAREA Battle Royale: ANDROMALIUS: pageId: 128066 steam: 1011090 -'ANNO: Mutationem': +"ANNO: Mutationem": pageId: 175700 steam: 1368030 steamSide: @@ -3157,10 +3082,8 @@ ANDROMALIUS: - 1823560 - 1909960 templates: - - >- - {{Game - data/config|Windows|{{P|hkcu}}\Software\ThinkingStars\Anno\|{{P|userprofile}}\AppData\LocalLow\Thinkingstars\Anno\SavesDir\GameData.db}} - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Thinkingstars\Anno\SavesDir\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\ThinkingStars\\Anno\\|{{P|userprofile}}\\AppData\\LocalLow\\Thinkingstars\\Anno\\SavesDir\\GameData.db}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Thinkingstars\\Anno\\SavesDir\\}}" ANOIX: pageId: 92021 steam: 840590 @@ -3176,22 +3099,22 @@ ANVIL: ANYKEY: pageId: 88053 steam: 790450 -'ANti: Virus Destroyer': +"ANti: Virus Destroyer": pageId: 100290 steam: 762860 AO International Tennis: pageId: 93054 steam: 758410 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\AO Tennis\config.ini}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\AO Tennis\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\AO Tennis\\config.ini}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\AO Tennis\\}}" AO Tennis 2: pageId: 153991 steam: 1072500 AO Tennis 2 Tools: pageId: 156145 steam: 1089570 -'AOK: Adventures of Kok': +"AOK: Adventures of Kok": pageId: 67524 steam: 686690 AOS Manager: @@ -3201,7 +3124,7 @@ APB Reloaded: pageId: 8486 steam: 113400 templates: - - '{{Game data/config|Windows|{{p|game}}\APBGame\Config\}}' + - "{{Game data/config|Windows|{{p|game}}\\APBGame\\Config\\}}" APOX: pageId: 41029 steam: 80000 @@ -3215,18 +3138,18 @@ AQtion: pageId: 180299 steam: 1978800 templates: - - '{{Game data/saves|Windows|{{p|game}}\action\}}' - - '{{Game data/saves|OS X|{{p|game}}/action/}}' - - '{{Game data/saves|Linux|{{p|game}}/action/}}' + - "{{Game data/saves|Windows|{{p|game}}\\action\\}}" + - "{{Game data/saves|OS X|{{p|game}}/action/}}" + - "{{Game data/saves|Linux|{{p|game}}/action/}}" AR-K: pageId: 18679 steam: 269890 templates: - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Gato_Salvaje\ark1\datos.txt}}' -'AR-K: End Game': + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Gato_Salvaje\\ark1\\datos.txt}}" +"AR-K: End Game": pageId: 122654 steam: 958910 -'AR-K: The Great Escape': +"AR-K: The Great Escape": pageId: 37219 steam: 368890 ARC: @@ -3256,56 +3179,56 @@ ARK II: ARK Park: pageId: 55219 steam: 529910 -'ARK: Survival Ascended': +"ARK: Survival Ascended": pageId: 188972 steam: 2399830 -'ARK: Survival Evolved': +"ARK: Survival Evolved": pageId: 25430 steam: 346110 templates: - - '{{Game data/config|Windows|{{P|game}}\ShooterGame\Saved\Config\}}' - - '{{Game data/saves|Windows|{{P|game}}\ShooterGame\Saved\SavedArksLocal\}}' - - '{{Game data/saves|Linux|{{p|game}}/ShooterGame/Saved/Config/LinuxNoEditor}}' -'ARK: Survival of the Fittest': + - "{{Game data/config|Windows|{{P|game}}\\ShooterGame\\Saved\\Config\\}}" + - "{{Game data/saves|Windows|{{P|game}}\\ShooterGame\\Saved\\SavedArksLocal\\}}" + - "{{Game data/saves|Linux|{{p|game}}/ShooterGame/Saved/Config/LinuxNoEditor}}" +"ARK: Survival of the Fittest": pageId: 44136 steam: 407530 ARM Planetary Prospectors Asteroid Resource Mining: pageId: 46188 steam: 344890 -'ARTé: Mecenas': +"ARTé: Mecenas": pageId: 121906 steam: 934950 AS+CEND: pageId: 100298 steam: 866430 -'ASA: A Space Adventure - Remastered Edition': +"ASA: A Space Adventure - Remastered Edition": pageId: 48529 steam: 329980 -'ASCENT: Crash Landing': +"ASCENT: Crash Landing": pageId: 113982 steam: 932790 ASCENXION: pageId: 135963 steam: 1000000 -'ASCII Achievement Mania: Space Shooter': +"ASCII Achievement Mania: Space Shooter": pageId: 91900 steam: 838500 ASCII Attack: pageId: 44114 steam: 370490 -'ASCII Game Series: Beginning': +"ASCII Game Series: Beginning": pageId: 82714 steam: 798550 -'ASCII Game Series: Blocks': +"ASCII Game Series: Blocks": pageId: 87227 steam: 808570 -'ASCII Game Series: Maze': +"ASCII Game Series: Maze": pageId: 91060 steam: 832790 -'ASCII Game Series: Pinball': +"ASCII Game Series: Pinball": pageId: 87323 steam: 810160 -'ASCII Game Series: Snake': +"ASCII Game Series: Snake": pageId: 87091 steam: 805240 ASCII Wars: @@ -3314,7 +3237,7 @@ ASCII Wars: ASCIIDENT: pageId: 151442 steam: 1113220 -'ASDAD: All-Stars Dungeons and Diamonds': +"ASDAD: All-Stars Dungeons and Diamonds": pageId: 46206 steam: 364190 ASRECorp: @@ -3343,27 +3266,27 @@ ATOM RPG: pageId: 59866 steam: 552620 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\AtomTeam\Atom\}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\AtomTeam\Atom\}}' - - '{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/AtomTeam}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\AtomTeam\\Atom\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\AtomTeam\\Atom\\}}" + - "{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/AtomTeam}}" ATOM RPG Trudograd: gog: 1818710374 pageId: 160121 steam: 1139940 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\AtomTeam\Atom_Trudograd\}}' - - '{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/AtomTeam/Atom_Trudograd/prefs}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\AtomTeam\Atom_Trudograd\}}' - - '{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/AtomTeam/Atom_Trudograd/*.as}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\AtomTeam\\Atom_Trudograd\\}}" + - "{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/AtomTeam/Atom_Trudograd/prefs}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\AtomTeam\\Atom_Trudograd\\}}" + - "{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/AtomTeam/Atom_Trudograd/*.as}}" ATRI -My Dear Moments-: pageId: 173905 steam: 1230140 templates: - - '{{Game data/saves|Windows|{{p|steam}}\userdata\{{p|uid}}\1230140\remote\*}}' + - "{{Game data/saves|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\1230140\\remote\\*}}" ATRIUM: pageId: 135730 steam: 990960 -'ATROFIL: THE KEY': +"ATROFIL: THE KEY": pageId: 153632 steam: 1196350 ATTACK OF THE EVIL POOP: @@ -3387,16 +3310,16 @@ AV-17: AVA: pageId: 163570 steam: 1143680 -'AVA: Dark History': +"AVA: Dark History": pageId: 149165 steam: 1162320 -'AVA: Dog Tag': +"AVA: Dog Tag": pageId: 132518 steam: 815940 AVARIAvs: pageId: 122672 steam: 816560 -'AVATAR: Consolidate': +"AVATAR: Consolidate": pageId: 99304 steam: 883170 AVSEQ: @@ -3411,55 +3334,55 @@ AWAKE - Definitive Edition: AWS Argentina Wingshooting Simulator: pageId: 74964 steam: 718410 -'AX:EL - Air XenoDawn': +"AX:EL - Air XenoDawn": pageId: 45397 steam: 319830 -'AXE:SURVIVAL': +"AXE:SURVIVAL": pageId: 121839 steam: 958230 AXYOS: pageId: 49408 steam: 318100 -'AXYOS: Battlecards': +"AXYOS: Battlecards": pageId: 130054 steam: 730450 AaaaaAAaaaAAAaaAAAAaAAAAA!!! - A Reckless Disregard for Gravity: pageId: 9649 steam: 15520 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\AaaaaRecklessDisregard\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\AaaaaRecklessDisregard\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\AaaaaRecklessDisregard\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\AaaaaRecklessDisregard\\}}" AaaaaAAaaaAAAaaAAAAaAAAAA!!! for the Awesome: pageId: 9654 steam: 15560 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Dejobaan Games\Awesome\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Preferences/unity.Dejobaan Games.Awesome.plist}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Dejobaan Games/Awesome/}}' - - '{{Game data/saves|Windows|{{p|hkcu}}\Software\Dejobaan Games\Awesome\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Preferences/unity.Dejobaan Games.Awesome.plist}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Dejobaan Games/Awesome/}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Dejobaan Games\\Awesome\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Preferences/unity.Dejobaan Games.Awesome.plist}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Dejobaan Games/Awesome/}}" + - "{{Game data/saves|Windows|{{p|hkcu}}\\Software\\Dejobaan Games\\Awesome\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Preferences/unity.Dejobaan Games.Awesome.plist}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Dejobaan Games/Awesome/}}" Aaero: pageId: 59525 steam: 499890 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Mad Fellows Ltd\Aaero\}}' - - '{{Game data/saves|Windows|{{P|steam}}\userdata\{{P|uid}}\499890\remote\savegame.dat}}' -'Aah, Halloween pie!': + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Mad Fellows Ltd\\Aaero\\}}" + - "{{Game data/saves|Windows|{{P|steam}}\\userdata\\{{P|uid}}\\499890\\remote\\savegame.dat}}" +"Aah, Halloween pie!": pageId: 148555 steam: 1171990 -'Aarklash: Legacy': +"Aarklash: Legacy": gog: 1207659983 pageId: 10224 steam: 222640 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Aarklash Legacy\Config.xml}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Aarklash Legacy\Profiles\}}' -Aaru's Awakening: + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Aarklash Legacy\\Config.xml}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Aarklash Legacy\\Profiles\\}}" +"Aaru's Awakening": pageId: 48633 steam: 294060 templates: - - '{{Game data/saves|Windows|{{p|game}}\aaru_Data\StreamingAssets\offlscore.xml}}' + - "{{Game data/saves|Windows|{{p|game}}\\aaru_Data\\StreamingAssets\\offlscore.xml}}" Abalone: pageId: 50395 steam: 279480 @@ -3484,7 +3407,7 @@ Abandoned Snowy Castle: renamedFrom: - 雪色废都 Abandoned Snowy Castle steam: 824440 -'Abandoned: Chestnut Lodge Asylum': +"Abandoned: Chestnut Lodge Asylum": pageId: 46322 steam: 397970 Abandonment: @@ -3502,7 +3425,7 @@ Abatron: Abberbury: pageId: 122774 steam: 921730 -Abbot's Book: +"Abbot's Book": pageId: 37423 steam: 434430 Abducted: @@ -3514,22 +3437,22 @@ Abduction Action! Plus: Abduction Bit: pageId: 53085 steam: 550810 -'Abduction Episode 1: Her Name was Sarah': +"Abduction Episode 1: Her Name was Sarah": pageId: 79444 steam: 600360 -'Abduction Prologue: The Story of Jonathan Blake': +"Abduction Prologue: The Story of Jonathan Blake": pageId: 53962 steam: 498460 Abermore: pageId: 176682 steam: 1569220 templates: - - '{{Game data/config|Windows|{{P|userprofile\appdata\locallow}}\Four Circle Interactive\Abermore}}' - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Four Circle Interactive\Abermore}}' + - "{{Game data/config|Windows|{{P|userprofile\\appdata\\locallow}}\\Four Circle Interactive\\Abermore}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Four Circle Interactive\\Abermore}}" Aberoth: pageId: 47209 steam: 354200 -Abha "Light on the Path": +"Abha \"Light on the Path\"": pageId: 121415 steam: 794830 Able Black: @@ -3538,7 +3461,7 @@ Able Black: Ablepsia: pageId: 71876 steam: 713680 -'Abnormal World: Season One': +"Abnormal World: Season One": pageId: 91868 steam: 837920 Abo Khashem: @@ -3551,8 +3474,8 @@ Abode: pageId: 52291 steam: 548340 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\OverflorGames\Abode\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\OverflowGames\Abode\PlayerPrefs.txt}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\OverflorGames\\Abode\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\OverflowGames\\Abode\\PlayerPrefs.txt}}" Abode 2: pageId: 150404 steam: 1147970 @@ -3562,7 +3485,7 @@ Abomi Nation: Abomination Tower: pageId: 48695 steam: 340390 -'Abomination: The Nemesis Project': +"Abomination: The Nemesis Project": pageId: 1702 Aboo: pageId: 167427 @@ -3572,13 +3495,13 @@ Aborigenus: About Elise: pageId: 51519 steam: 448930 -'About Love, Hate and the other ones': +"About Love, Hate and the other ones": pageId: 38077 steam: 277680 templates: - - '{{Game data/config|Windows|{{P|appdata}}\About Love Hate and the other ones\settings.ini}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.aboutloveandhate/settings.ini}}' - - '{{Game data/saves|Steam|{{P|steam}}\userdata\{{P|uid}}\277680\remote\default.save}}' + - "{{Game data/config|Windows|{{P|appdata}}\\About Love Hate and the other ones\\settings.ini}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.aboutloveandhate/settings.ini}}" + - "{{Game data/saves|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\277680\\remote\\default.save}}" Above: pageId: 89724 steam: 743500 @@ -3594,13 +3517,13 @@ Above Earth: Above the Fold: pageId: 123536 steam: 835910 -'Above: The Fallen': +"Above: The Fallen": pageId: 89328 steam: 715490 Abrakadaboom: pageId: 126137 steam: 979000 -Abraxas Interactive's PUSH: +"Abraxas Interactive's PUSH": pageId: 137218 steam: 661100 Abriss: @@ -3608,7 +3531,7 @@ Abriss: pageId: 177092 steam: 1671480 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Randwerk\ABRISS - build to destroy\}}' + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Randwerk\\ABRISS - build to destroy\\}}" Abrix for Kids: pageId: 41639 steam: 486880 @@ -3647,17 +3570,15 @@ Absolute Drift: pageId: 26809 steam: 320140 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Funselektor Labs Inc.\Absolute Drift\}}' - - '{{Game data/saves|Windows|{{p|hkcu}}\Software\Funselektor Labs Inc.\Absolute Drift\}}' - - >- - {{Game data/saves|Epic Games Launcher|{{p|userprofile}}\AppData\LocalLow\Funselektor Labs Inc_\Absolute - Drift\EOS_cloud}} - - '{{Game data/saves|GOG.com|{{p|userprofile}}\AppData\LocalLow\Funselektor Labs Inc_\Absolute Drift\GOG_cloud}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/Steam/userdata/{{P|uid}}/320140}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Funselektor Labs Inc.\\Absolute Drift\\}}" + - "{{Game data/saves|Windows|{{p|hkcu}}\\Software\\Funselektor Labs Inc.\\Absolute Drift\\}}" + - "{{Game data/saves|Epic Games Launcher|{{p|userprofile}}\\AppData\\LocalLow\\Funselektor Labs Inc_\\Absolute Drift\\EOS_cloud}}" + - "{{Game data/saves|GOG.com|{{p|userprofile}}\\AppData\\LocalLow\\Funselektor Labs Inc_\\Absolute Drift\\GOG_cloud}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/Steam/userdata/{{P|uid}}/320140}}" Absolute Fall: pageId: 138752 steam: 1091670 -'Absolute Tactics: Daughters of Mercy': +"Absolute Tactics: Daughters of Mercy": gog: 1186536188 gogSide: - 1563735310 @@ -3676,8 +3597,8 @@ Absolver: pageId: 39713 steam: 473690 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Absolver\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Absolver\Saved\SaveGames}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Absolver\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Absolver\\Saved\\SaveGames}}" Abstract: pageId: 135417 steam: 946070 @@ -3699,8 +3620,8 @@ Abstractism: Abuse: pageId: 26408 templates: - - '{{Game data/config|DOS|{{p|game}}}}' - - '{{Game data/saves|DOS|{{p|game}}}}' + - "{{Game data/config|DOS|{{p|game}}}}" + - "{{Game data/saves|DOS|{{p|game}}}}" Abyss: pageId: 157357 steam: 1193080 @@ -3720,20 +3641,20 @@ Abyss Odyssey: pageId: 29688 steam: 255070 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\AbyssOdyssey\AOGame\Config\}}' - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\255070\}}' -'Abyss Raiders: Uncharted': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\AbyssOdyssey\\AOGame\\Config\\}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\255070\\}}" +"Abyss Raiders: Uncharted": pageId: 48052 steam: 348730 -'Abyss World: Apocalypse': +"Abyss World: Apocalypse": pageId: 183798 steam: 2244780 -'Abyss: The Wraiths of Eden': +"Abyss: The Wraiths of Eden": pageId: 37923 steam: 284710 templates: - - '{{Game data/config|Windows|{{P|appdata}}\ArtifexMundi\Abyss_TheWraithsOfEden\CE\}}' - - '{{Game data/saves|Windows|{{p|steam}}\userdata\{{p|uid}}\284710\remote\profile\}}' + - "{{Game data/config|Windows|{{P|appdata}}\\ArtifexMundi\\Abyss_TheWraithsOfEden\\CE\\}}" + - "{{Game data/saves|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\284710\\remote\\profile\\}}" Abyssal Fall: pageId: 68144 steam: 694150 @@ -3745,25 +3666,21 @@ Abzû: pageId: 35826 steam: 384190 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\AbzuGame\Saved\Config\WindowsNoEditor\}}' - - >- - {{Game data/config|Microsoft - Store|{{p|localappdata}}\Packages\505GAMESS.P.A.35784A6D3DB4D_tefn33qh9azfc\LocalState\AbzuGame\Saved\Config\UWP\}} - - '{{Game data/saves|Windows|{{p|localappdata}}\AbzuGame\Saved\SaveGames\}}' - - >- - {{Game data/saves|Microsoft - Store|{{p|localappdata}}\Packages\505GAMESS.P.A.35784A6D3DB4D_tefn33qh9azfc\SystemAppData\wgs\}} + - "{{Game data/config|Windows|{{p|localappdata}}\\AbzuGame\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/config|Microsoft Store|{{p|localappdata}}\\Packages\\505GAMESS.P.A.35784A6D3DB4D_tefn33qh9azfc\\LocalState\\AbzuGame\\Saved\\Config\\UWP\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\AbzuGame\\Saved\\SaveGames\\}}" + - "{{Game data/saves|Microsoft Store|{{p|localappdata}}\\Packages\\505GAMESS.P.A.35784A6D3DB4D_tefn33qh9azfc\\SystemAppData\\wgs\\}}" AcChen - Tile Matching the Arcade Way: pageId: 78198 steam: 747540 -'Academagia: The Making of Mages': +"Academagia: The Making of Mages": pageId: 61319 steam: 533480 -'Academia: School Simulator': +"Academia: School Simulator": gog: 2059343244 pageId: 68960 steam: 672630 -'Acan''s Call: Act 1': +"Acan's Call: Act 1": pageId: 38006 steam: 501180 Acaratus: @@ -3776,35 +3693,26 @@ Accel World vs. Sword Art Online: pageId: 70567 steam: 607880 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Accel World vs. Sword Art Online\OptionConfig.ini}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Accel World vs. Sword Art Online\\OptionConfig.ini}}" Acceleration of SUGURI: pageId: 29130 templates: - - '{{Game data/config|Windows|{{p|game}}\config.dat}}' - - '{{Game data/saves|Windows|{{p|game}}\system.dat|{{p|game}}\system_x.dat}}' + - "{{Game data/config|Windows|{{p|game}}\\config.dat}}" + - "{{Game data/saves|Windows|{{p|game}}\\system.dat|{{p|game}}\\system_x.dat}}" Acceleration of SUGURI 2: pageId: 39695 steam: 390710 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\Fruitbat - Factory\AoS2\game.cfg|{{p|userprofile\Documents}}\Fruitbat - Factory\AoS2\controller.cfg|{{p|userprofile\Documents}}\Fruitbat Factory\AoS2\player.rkg}} - - >- - {{Game data/saves|Windows|{{p|userprofile\Documents}}\Fruitbat - Factory\AoS2\game.sys|{{p|userprofile\Documents}}\Fruitbat Factory\AoS2\game.rkg}} + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Fruitbat Factory\\AoS2\\game.cfg|{{p|userprofile\\Documents}}\\Fruitbat Factory\\AoS2\\controller.cfg|{{p|userprofile\\Documents}}\\Fruitbat Factory\\AoS2\\player.rkg}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Fruitbat Factory\\AoS2\\game.sys|{{p|userprofile\\Documents}}\\Fruitbat Factory\\AoS2\\game.rkg}}" Acceleration of SUGURI X-Edition HD: pageId: 29913 steam: 265170 templates: - - '{{Game data/config|Windows|{{p|game}}\config.dat|{{p|game}}\config_s.dat}}' - - >- - {{Game - data/config|Steam|{{p|steam}}\userdata\{{p|uid}}\265170\remote\config.dat|{{p|steam}}\userdata\{{p|uid}}\265170\remote\config_s.dat}} - - '{{Game data/saves|Windows|{{p|game}}\system.dat|{{p|game}}\system_x.dat|{{p|game}}\ranking.dat}}' - - >- - {{Game - data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\265170\remote\system.dat|{{p|steam}}\userdata\{{p|uid}}\265170\remote\system_x.dat|{{p|steam}}\userdata\{{p|uid}}\265170\remote\ranking.dat}} + - "{{Game data/config|Windows|{{p|game}}\\config.dat|{{p|game}}\\config_s.dat}}" + - "{{Game data/config|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\265170\\remote\\config.dat|{{p|steam}}\\userdata\\{{p|uid}}\\265170\\remote\\config_s.dat}}" + - "{{Game data/saves|Windows|{{p|game}}\\system.dat|{{p|game}}\\system_x.dat|{{p|game}}\\ranking.dat}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\265170\\remote\\system.dat|{{p|steam}}\\userdata\\{{p|uid}}\\265170\\remote\\system_x.dat|{{p|steam}}\\userdata\\{{p|uid}}\\265170\\remote\\ranking.dat}}" Access: pageId: 70214 steam: 672410 @@ -3812,7 +3720,7 @@ Access Denied: pageId: 55031 steam: 562570 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\StatelySnail\AccessDenied}}' + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\StatelySnail\\AccessDenied}}" Accident: pageId: 93325 steam: 852220 @@ -3826,7 +3734,7 @@ Accounting+: pageId: 113826 steam: 927270 templates: - - '{{Game data/saves|Windows|{{p|hkcu}}\Software\Crows Crows Crows\Accounting+\}}' + - "{{Game data/saves|Windows|{{p|hkcu}}\\Software\\Crows Crows Crows\\Accounting+\\}}" AccuRC 2: pageId: 64793 steam: 495290 @@ -3839,35 +3747,35 @@ Accurate Segmentation 2: Accurate Segmentation 3: pageId: 120699 steam: 963080 -'Ace Combat 7: Skies Unknown': +"Ace Combat 7: Skies Unknown": pageId: 57049 steam: 502500 steamSide: - - 1454770 - - 1421553 - - 1421552 - - 1421551 - - 1421550 - - 1421540 - - 929106 - - 929105 - - 929104 - - 929103 - - 929102 - - 929101 - - 929100 - - 868312 - - 868311 - 868310 + - 868311 + - 868312 + - 929100 + - 929101 + - 929102 + - 929103 + - 929104 + - 929105 + - 929106 + - 1421540 + - 1421550 + - 1421551 + - 1421552 + - 1421553 + - 1454770 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\BANDAI NAMCO Entertainment\ACE COMBAT 7\Config\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\BANDAI NAMCO Entertainment\ACE COMBAT 7\SaveGames\}}' -'Ace Combat: Assault Horizon - Enhanced Edition': + - "{{Game data/config|Windows|{{p|localappdata}}\\BANDAI NAMCO Entertainment\\ACE COMBAT 7\\Config\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\BANDAI NAMCO Entertainment\\ACE COMBAT 7\\SaveGames\\}}" +"Ace Combat: Assault Horizon - Enhanced Edition": pageId: 8889 steam: 228400 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\NAMCO\ACAH\}}' - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\228400\remote\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\NAMCO\\ACAH\\}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\228400\\remote\\}}" Ace In Space: pageId: 156742 steam: 1220710 @@ -3877,8 +3785,8 @@ Ace Meerkats: Ace Ventura: pageId: 79532 templates: - - '{{Game data/config|Windows|{{p|game}}\7THLEVEL.INI}}' - - '{{Game data/saves|Windows|{{p|game}}\ACEGAME.SAV}}' + - "{{Game data/config|Windows|{{p|game}}\\7THLEVEL.INI}}" + - "{{Game data/saves|Windows|{{p|game}}\\ACEGAME.SAV}}" Ace of Protectors: pageId: 35184 steam: 398150 @@ -3886,35 +3794,32 @@ Ace of Seafood: pageId: 43686 steam: 450500 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\nussoft\AceOfSeafoods\}}' - - >- - {{Game data/saves|Windows|{{p|hkcu}}\Software\nussoft\AceOfSeafoods\saveDataHead* | - {{p|userprofile}}\AppData\LocalLow\nussoft\AceOfSeafood\PlayerPrefs.json | - {{p|userprofile}}\AppData\LocalLow\nussoft\AceOfSeafood\PlayerPrefs*.json}} + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\nussoft\\AceOfSeafoods\\}}" + - "{{Game data/saves|Windows|{{p|hkcu}}\\Software\\nussoft\\AceOfSeafoods\\saveDataHead* | {{p|userprofile}}\\AppData\\LocalLow\\nussoft\\AceOfSeafood\\PlayerPrefs.json | {{p|userprofile}}\\AppData\\LocalLow\\nussoft\\AceOfSeafood\\PlayerPrefs*.json}}" Ace of Space: pageId: 149394 steam: 1157780 Ace of Spades: pageId: 4341 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' -'Ace of Spades: Battle Builder': + - "{{Game data/config|Windows|{{p|game}}\\}}" +"Ace of Spades: Battle Builder": pageId: 4337 steam: 224540 templates: - - '{{Game data/config|Windows|{{p|game}}\config.txt}}' + - "{{Game data/config|Windows|{{p|game}}\\config.txt}}" Ace of Words: pageId: 43051 steam: 398680 templates: - - '{{Game data/saves|Windows|{{p|appdata}}\AceOfWords\SG_PC-####.SAV}}' + - "{{Game data/saves|Windows|{{p|appdata}}\\AceOfWords\\SG_PC-####.SAV}}" AceSpeeder3: pageId: 99616 steam: 885290 Aces High III: pageId: 68366 steam: 651090 -'Aces Wild: Manic Brawling Action!': +"Aces Wild: Manic Brawling Action!": pageId: 50697 steam: 269230 Aces and Adventures: @@ -3923,8 +3828,8 @@ Aces and Adventures: - Aces steam: 1815570 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\Triple B Titles\Aces and Adventures\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Triple B Titles\Aces and Adventures\}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Triple B Titles\\Aces and Adventures\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Triple B Titles\\Aces and Adventures\\}}" Aces of the Galaxy: pageId: 1704 steam: 10120 @@ -3935,7 +3840,7 @@ Aces of the Luftwaffe - Squadron: pageId: 103045 steam: 859350 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\HandyGames\Aces of the Luftwaffe Squadron}}' + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\HandyGames\\Aces of the Luftwaffe Squadron}}" AchBall: pageId: 75584 steam: 739180 @@ -3951,19 +3856,19 @@ Achievement Clicker 2018: Achievement Clicker 2019: pageId: 90578 steam: 824190 -'Achievement Clicker: The End': +"Achievement Clicker: The End": pageId: 100522 steam: 875680 -'Achievement Collector: Cat': +"Achievement Collector: Cat": pageId: 109640 steam: 912210 -'Achievement Collector: Dog': +"Achievement Collector: Dog": pageId: 125904 steam: 1008370 -'Achievement Collector: Space': +"Achievement Collector: Space": pageId: 114468 steam: 942340 -'Achievement Collector: Zombie': +"Achievement Collector: Zombie": pageId: 125906 steam: 1009300 Achievement Creator: @@ -3972,133 +3877,133 @@ Achievement Creator: Achievement Dummy: pageId: 114818 steam: 948950 -'Achievement Hunter: Alien': +"Achievement Hunter: Alien": pageId: 78038 steam: 760100 -'Achievement Hunter: Begins': +"Achievement Hunter: Begins": pageId: 65628 steam: 674040 -'Achievement Hunter: Cat': +"Achievement Hunter: Cat": pageId: 91042 steam: 834330 -'Achievement Hunter: Chef': +"Achievement Hunter: Chef": pageId: 82663 steam: 799740 -'Achievement Hunter: Cromulent': +"Achievement Hunter: Cromulent": pageId: 65658 steam: 675460 -'Achievement Hunter: Darkness': +"Achievement Hunter: Darkness": pageId: 67591 steam: 689990 -'Achievement Hunter: Darkness 2': +"Achievement Hunter: Darkness 2": pageId: 69358 steam: 700790 -'Achievement Hunter: Dogger': +"Achievement Hunter: Dogger": pageId: 70002 steam: 707600 -'Achievement Hunter: Dragon': +"Achievement Hunter: Dragon": pageId: 88668 steam: 814670 -'Achievement Hunter: Foxy': +"Achievement Hunter: Foxy": pageId: 70315 steam: 710330 -'Achievement Hunter: Gnom': +"Achievement Hunter: Gnom": pageId: 88760 steam: 817690 -'Achievement Hunter: Golem': +"Achievement Hunter: Golem": pageId: 94619 steam: 859030 -'Achievement Hunter: Kiborg': +"Achievement Hunter: Kiborg": pageId: 70333 steam: 710860 -'Achievement Hunter: Knight': +"Achievement Hunter: Knight": pageId: 91987 steam: 840250 -'Achievement Hunter: Mermaid': +"Achievement Hunter: Mermaid": pageId: 89450 steam: 820920 -'Achievement Hunter: Offensive': +"Achievement Hunter: Offensive": pageId: 69360 steam: 696550 -'Achievement Hunter: Overdose': +"Achievement Hunter: Overdose": pageId: 66659 steam: 674110 -'Achievement Hunter: Pharaoh': +"Achievement Hunter: Pharaoh": pageId: 67859 steam: 691660 -'Achievement Hunter: Princess': +"Achievement Hunter: Princess": pageId: 87009 steam: 804240 -'Achievement Hunter: Punk': +"Achievement Hunter: Punk": pageId: 81482 steam: 790340 -'Achievement Hunter: Samurai': +"Achievement Hunter: Samurai": pageId: 82006 steam: 797530 -'Achievement Hunter: Scars': +"Achievement Hunter: Scars": pageId: 76967 steam: 756050 -'Achievement Hunter: Spinner Edition': +"Achievement Hunter: Spinner Edition": pageId: 65983 steam: 675450 -'Achievement Hunter: Thief': +"Achievement Hunter: Thief": pageId: 72067 steam: 714260 -'Achievement Hunter: Unicorn': +"Achievement Hunter: Unicorn": pageId: 93555 steam: 848360 -'Achievement Hunter: Urban': +"Achievement Hunter: Urban": pageId: 68152 steam: 695020 -'Achievement Hunter: Urban 2': +"Achievement Hunter: Urban 2": pageId: 70000 steam: 704380 -'Achievement Hunter: Witch': +"Achievement Hunter: Witch": pageId: 90022 steam: 823060 -'Achievement Hunter: Wizard': +"Achievement Hunter: Wizard": pageId: 68444 steam: 693870 -'Achievement Hunter: Zombie': +"Achievement Hunter: Zombie": pageId: 72855 steam: 721440 -'Achievement Hunter: Zombie 2': +"Achievement Hunter: Zombie 2": pageId: 81924 steam: 790400 -'Achievement Hunter: Zombie 3': +"Achievement Hunter: Zombie 3": pageId: 78122 steam: 765990 -'Achievement Idler: Black': +"Achievement Idler: Black": pageId: 90356 steam: 684050 -'Achievement Idler: Red': +"Achievement Idler: Red": pageId: 92983 steam: 850050 -'Achievement Lurker: Another One Bites the Dust': +"Achievement Lurker: Another One Bites the Dust": pageId: 90500 steam: 821390 -'Achievement Lurker: Ballad of the Shimapan Warrior - King of Panties': +"Achievement Lurker: Ballad of the Shimapan Warrior - King of Panties": pageId: 95158 steam: 836290 -'Achievement Lurker: Dad Jokes': +"Achievement Lurker: Dad Jokes": pageId: 76201 steam: 747190 -'Achievement Lurker: Easiest Cosmetic Numbers': +"Achievement Lurker: Easiest Cosmetic Numbers": pageId: 89434 steam: 798850 -'Achievement Lurker: Respectable Accomplishment': +"Achievement Lurker: Respectable Accomplishment": pageId: 74484 steam: 738000 -'Achievement Lurker: We Give Up!': +"Achievement Lurker: We Give Up!": pageId: 80452 steam: 774281 -'Achievement Lurker: You are going to have to work hard for these nuts': +"Achievement Lurker: You are going to have to work hard for these nuts": pageId: 95152 steam: 830490 Achievement Machine: pageId: 93950 steam: 851000 -'Achievement Machine: Cubic Chaos': +"Achievement Machine: Cubic Chaos": pageId: 135690 steam: 1067370 Achievement Park: @@ -4108,12 +4013,12 @@ Achievement Simulator: pageId: 143922 steam: 1128190 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Achievement_Simulator\game_options.ini}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Achievement_Simulator\game_save.sav}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Achievement_Simulator\\game_options.ini}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Achievement_Simulator\\game_save.sav}}" Achievement Simulator 2018: pageId: 88071 steam: 745690 -'Achievements Printer: Part 1': +"Achievements Printer: Part 1": pageId: 87191 steam: 806140 Achilles: @@ -4125,7 +4030,7 @@ Achromatic: Achron: pageId: 40920 steam: 109700 -'Achtung Panzer: Kharkov 1943': +"Achtung Panzer: Kharkov 1943": gog: 1442578014 pageId: 94976 steam: 42830 @@ -4147,34 +4052,32 @@ Acid Nimbus: Acid Spy: pageId: 95131 steam: 817230 -'Acorn Assault: Rodent Revolution': +"Acorn Assault: Rodent Revolution": pageId: 44349 steam: 410290 templates: - - >- - {{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\High Tale - Studios\AcornAssaultRodentRevolution\Saves}} -'Acorns Above: A World Gone Nuts': + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\High Tale Studios\\AcornAssaultRodentRevolution\\Saves}}" +"Acorns Above: A World Gone Nuts": pageId: 70074 steam: 673040 Acquitted: pageId: 177614 steam: 1954750 templates: - - '{{Game data/saves|Windows|{{p|localappdata}}\Acquitted\}}' + - "{{Game data/saves|Windows|{{p|localappdata}}\\Acquitted\\}}" Acro FS: pageId: 93925 steam: 834880 Acro Storm: pageId: 54511 steam: 546610 -'Acron: Attack of the Squirrels!': +"Acron: Attack of the Squirrels!": pageId: 139406 steam: 1094870 Acrophobia: pageId: 129819 steam: 851960 -'Acropolis: The Archaic Age': +"Acropolis: The Archaic Age": pageId: 121730 steam: 955670 Across: @@ -4190,7 +4093,7 @@ Across the Grooves: pageId: 145373 steam: 957820 templates: - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Nova-box\Across the Grooves\User}}' + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Nova-box\\Across the Grooves\\User}}" Across the Line: pageId: 57428 steam: 491800 @@ -4205,45 +4108,36 @@ Act of Aggression: pageId: 23005 steam: 318020 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\Saved Games\EugenSystems\ActOfAggression}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\Saved Games\EugenSystems\ActOfAggression}}' -'Act of War: Direct Action': + - "{{Game data/config|Windows|{{p|userprofile}}\\Saved Games\\EugenSystems\\ActOfAggression}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Saved Games\\EugenSystems\\ActOfAggression}}" +"Act of War: Direct Action": gog: 1427704538 pageId: 10893 steam: 2710 templates: - - '{{Game data/saves|Windows|{{p|game}}\AOW\Save\}}' -'Act of War: High Treason': + - "{{Game data/saves|Windows|{{p|game}}\\AOW\\Save\\}}" +"Act of War: High Treason": gog: 1427704705 pageId: 17276 steam: 9760 templates: - - '{{Game data/saves|Windows|{{p|game}}\AOW\}}' + - "{{Game data/saves|Windows|{{p|game}}\\AOW\\}}" Acting Lessons: gog: 1470920629 pageId: 145918 steam: 1045520 templates: - - >- - {{Game - data/config|Windows|{{p|game}}\game\saves\persistent|{{p|appdata}}\RenPy\ActingLessons-1523296524\persistent - (Steam version)|{{p|appdata}}\RenPy\ActingLessonsGOG-1523296524\persistent (GOG version)}} - - >- - {{Game data/config|Linux|{{p|game}}/game/game/saves/persistent|~/.renpy/ActingLessons-1523296524/persistent (Steam - version)|~/.renpy/ActingLessonsGOG-1523296524/persistent (GOG version)}} - - >- - {{Game data/saves|Windows|{{p|game}}\game\saves|{{p|appdata}}\RenPy\ActingLessons-1523296524 (Steam - version)|{{p|appdata}}\RenPy\ActingLessonsGOG-1523296524 (GOG version)}} - - >- - {{Game data/saves|Linux|{{p|game}}/game/game/saves|~/.renpy/ActingLessons-1523296524 (Steam - version)|~/.renpy/ActingLessonsGOG-1523296524 (GOG version)}} + - "{{Game data/config|Windows|{{p|game}}\\game\\saves\\persistent|{{p|appdata}}\\RenPy\\ActingLessons-1523296524\\persistent (Steam version)|{{p|appdata}}\\RenPy\\ActingLessonsGOG-1523296524\\persistent (GOG version)}}" + - "{{Game data/config|Linux|{{p|game}}/game/game/saves/persistent|~/.renpy/ActingLessons-1523296524/persistent (Steam version)|~/.renpy/ActingLessonsGOG-1523296524/persistent (GOG version)}}" + - "{{Game data/saves|Windows|{{p|game}}\\game\\saves|{{p|appdata}}\\RenPy\\ActingLessons-1523296524 (Steam version)|{{p|appdata}}\\RenPy\\ActingLessonsGOG-1523296524 (GOG version)}}" + - "{{Game data/saves|Linux|{{p|game}}/game/game/saves|~/.renpy/ActingLessons-1523296524 (Steam version)|~/.renpy/ActingLessonsGOG-1523296524 (GOG version)}}" Action Alien: pageId: 47463 steam: 382080 -'Action Alien: Prelude': +"Action Alien: Prelude": pageId: 79696 steam: 773330 -'Action Alien: Tropical Mayhem': +"Action Alien: Tropical Mayhem": pageId: 95115 steam: 810800 Action Ball 2: @@ -4258,21 +4152,21 @@ Action Henk: pageId: 37826 steam: 285820 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\RageSquid\Action Henk}}' - - '{{Game data/saves|Steam|{{p|Steam}}/userdata/{{P|uid}}/285820/remote/}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\RageSquid\\Action Henk}}" + - "{{Game data/saves|Steam|{{p|Steam}}/userdata/{{P|uid}}/285820/remote/}}" Action Legion: pageId: 34817 steam: 431630 Action Mahjong: pageId: 58230 steam: 575810 -'Action Man: Arctic Adventure': +"Action Man: Arctic Adventure": pageId: 122943 -'Action Man: Jungle Storm': +"Action Man: Jungle Storm": pageId: 122945 -'Action Man: Operation Extreme': +"Action Man: Operation Extreme": pageId: 122947 -'Action Man: Raid on Island X': +"Action Man: Raid on Island X": pageId: 122952 Action Reactor: pageId: 139106 @@ -4287,7 +4181,7 @@ Action SuperCross: Action Taimanin: pageId: 164887 steam: 1335200 -'Action: Source': +"Action: Source": pageId: 149801 steam: 977050 ActionpaintVR: @@ -4303,7 +4197,7 @@ Actraiser Renaissance: pageId: 171684 steam: 1393370 templates: - - '{{Game data/saves|Windows|C:\Users\Admin\Documents\My Games\Actraiser Renaissance|}}' + - "{{Game data/saves|Windows|C:\\Users\\Admin\\Documents\\My Games\\Actraiser Renaissance|}}" Actua Golf: pageId: 184250 steam: 2183800 @@ -4319,8 +4213,8 @@ Actua Ice Hockey 2: pageId: 77733 steam: 2152720 templates: - - '{{Game data/config|Windows|{{p|game}}\*.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\saves}}' + - "{{Game data/config|Windows|{{p|game}}\\*.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\saves}}" Actua Pool: pageId: 167625 Actua Soccer: @@ -4332,14 +4226,14 @@ Actua Soccer 3: pageId: 59735 steam: 285030 templates: - - '{{Game data/config|Windows|{{p|game}}\install.txt}}' + - "{{Game data/config|Windows|{{p|game}}\\install.txt}}" Actua Soccer Club Edition: pageId: 154919 Actua Tennis: pageId: 77827 steam: 2152730 templates: - - '{{Game data/config|Windows|{{p|game}}\PREFS.DAT}}' + - "{{Game data/config|Windows|{{p|game}}\\PREFS.DAT}}" Actual Sunlight: pageId: 50486 steam: 288040 @@ -4358,14 +4252,14 @@ Ad Exitum: Ad movere: pageId: 92393 renamedFrom: - - 'EWNetwork: Red and Blue' + - "EWNetwork: Red and Blue" steam: 840050 AdVenture Capitalist: pageId: 24235 steam: 346900 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\SOFTWARE\Hyper Hippo Productions Ltd.\AdVenture Capitalist!}}' - - '{{Game data/saves|Windows|{{p|hkcu}}\SOFTWARE\Hyper Hippo Productions Ltd.\AdVenture Capitalist!}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\Hyper Hippo Productions Ltd.\\AdVenture Capitalist!}}" + - "{{Game data/saves|Windows|{{p|hkcu}}\\SOFTWARE\\Hyper Hippo Productions Ltd.\\AdVenture Capitalist!}}" AdVenture Communist: pageId: 36894 steam: 462930 @@ -4373,13 +4267,13 @@ Adabana Odd Tales: pageId: 173899 steam: 1094820 templates: - - '{{Game data/saves|Windows|{{p|game}}\save\*}}' + - "{{Game data/saves|Windows|{{p|game}}\\save\\*}}" Adaca: pageId: 185805 steam: 1765780 templates: - - '{{Game data/config|Windows|{{Folder|{{P|localappdata}}\ADACA\Saved\Config\WindowsNoEditor}}}}' - - '{{Game data/saves|Windows|{{Folder|{{P|localappdata}}\ADACA\Saved\SaveGames}}}}' + - "{{Game data/config|Windows|{{Folder|{{P|localappdata}}\\ADACA\\Saved\\Config\\WindowsNoEditor}}}}" + - "{{Game data/saves|Windows|{{Folder|{{P|localappdata}}\\ADACA\\Saved\\SaveGames}}}}" Adagio: pageId: 136507 steam: 1061430 @@ -4393,30 +4287,26 @@ Adam Wolfe: pageId: 51157 steam: 483420 templates: - - >- - {{Game data/config|Windows|{{p|appdata}}\Mad Head Games\Adam Wolfe - Steam\options.cfg|{{P|appdata}}\Mad Head - Games\Adam Wolfe - MHG\options.cfg}} - - >- - {{Game data/saves|Windows|{{p|appdata}}\Mad Head Games\Adam Wolfe - Steam\|{{P|appdata}}\Mad Head Games\Adam Wolfe - - MHG\}} -'Adam and Eve: The Game - Chapter 1': + - "{{Game data/config|Windows|{{p|appdata}}\\Mad Head Games\\Adam Wolfe - Steam\\options.cfg|{{P|appdata}}\\Mad Head Games\\Adam Wolfe - MHG\\options.cfg}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Mad Head Games\\Adam Wolfe - Steam\\|{{P|appdata}}\\Mad Head Games\\Adam Wolfe - MHG\\}}" +"Adam and Eve: The Game - Chapter 1": pageId: 44413 steam: 443530 -Adam's Ascending: +"Adam's Ascending": pageId: 145465 steam: 1110210 -Adam's Venture Chronicles: +"Adam's Venture Chronicles": pageId: 47007 steam: 362410 -'Adam''s Venture: Origins': +"Adam's Venture: Origins": pageId: 43835 renamedFrom: - - Adam's Venture Origins + - "Adam's Venture Origins" steam: 400360 templates: - - '{{Game data/config|Steam|{{P|steam}}\userdata\{{P|uid}}\400360\remote\AVUserSettings}}' - - '{{Game data/saves|Steam|{{P|steam}}\userdata\{{P|uid}}\400360\remote\AVAutoSave}}' -'Adam: Robot World': + - "{{Game data/config|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\400360\\remote\\AVUserSettings}}" + - "{{Game data/saves|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\400360\\remote\\AVAutoSave}}" +"Adam: Robot World": pageId: 153129 steam: 1146210 Adapt: @@ -4443,10 +4333,10 @@ Adelantado Trilogy. Book Three: Adelantado Trilogy. Book Two: pageId: 77640 steam: 573670 -'Adele: Following the Signs': +"Adele: Following the Signs": pageId: 42732 steam: 457980 -'Adeptus Titanicus: Dominus': +"Adeptus Titanicus: Dominus": gog: 1607008216 pageId: 93993 steam: 853140 @@ -4456,7 +4346,7 @@ Adera: Adidas Power Soccer: pageId: 158020 templates: - - '{{Game data/saves|Windows|{{P|game}}\SaveGame}}' + - "{{Game data/saves|Windows|{{P|game}}\\SaveGame}}" Adidas Power Soccer 98: pageId: 161596 Adios: @@ -4494,16 +4384,16 @@ Adorable Crush: pageId: 164413 steam: 1266800 templates: - - '{{Game data/config|Windows|{{p|game}}\acrush_Data\Saves\*.bin}}' + - "{{Game data/config|Windows|{{p|game}}\\acrush_Data\\Saves\\*.bin}}" Adorables: pageId: 43873 steam: 366760 Adore: pageId: 136066 steam: 1074620 -'Adrenalin 2: Rush Hour': +"Adrenalin 2: Rush Hour": pageId: 187180 -'Adrenalin: Extreme Show': +"Adrenalin: Extreme Show": pageId: 88258 Adrenaline Adventure: pageId: 53453 @@ -4512,8 +4402,8 @@ Adrift: pageId: 23007 steam: 300060 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\ADR1FT\Saved\SaveGames\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\ADR1FT\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\ADR1FT\\Saved\\SaveGames\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\ADR1FT\\Saved\\SaveGames\\}}" Adrift Arena: pageId: 156627 steam: 1199560 @@ -4526,7 +4416,7 @@ Adult Toy Store: Adva-lines: pageId: 100246 steam: 878240 -'Advanced Gaming Platform: Epica': +"Advanced Gaming Platform: Epica": pageId: 51495 steam: 398120 Advanced Tactics Gold: @@ -4540,8 +4430,8 @@ Advent Rising: pageId: 7309 steam: 3800 templates: - - '{{Game data/config|Windows|{{p|game}}\System\*.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\System\Saves\}}' + - "{{Game data/config|Windows|{{p|game}}\\System\\*.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\System\\Saves\\}}" Adventure Apes and the Mayan Mystery: pageId: 42309 steam: 461830 @@ -4551,7 +4441,7 @@ Adventure Boy Cheapskate DX: Adventure Boy Jailbreak: pageId: 155440 steam: 1207380 -'Adventure Chronicles: The Search For Lost Treasure': +"Adventure Chronicles: The Search For Lost Treasure": pageId: 50354 steam: 281240 Adventure Climb VR: @@ -4598,10 +4488,10 @@ Adventure Land - The Code MMORPG: Adventure Park: pageId: 33466 steam: 256050 -'Adventure Pinball: Forgotten Island': +"Adventure Pinball: Forgotten Island": pageId: 97688 templates: - - '{{Game data/config|Windows|{{p|game}}\System\PB.ini}}' + - "{{Game data/config|Windows|{{p|game}}\\System\\PB.ini}}" Adventure Portal: pageId: 107724 steam: 901020 @@ -4614,40 +4504,38 @@ Adventure Road: Adventure Slime: pageId: 144562 steam: 1146500 -'Adventure Time: Explore the Dungeon Because I Don''t Know!': +"Adventure Time: Explore the Dungeon Because I Don't Know!": pageId: 40513 steam: 243560 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Wayforward Technologies\AdventureTime}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Wayforward Technologies\AdventureTime}}' -'Adventure Time: Finn and Jake Investigations': + - "{{Game data/config|Windows|{{p|appdata}}\\Wayforward Technologies\\AdventureTime}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Wayforward Technologies\\AdventureTime}}" +"Adventure Time: Finn and Jake Investigations": pageId: 31859 steam: 369300 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Vicious Cycle Software\Adventure Time\Settings}}' -'Adventure Time: Finn and Jake''s Epic Quest': + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Vicious Cycle Software\\Adventure Time\\Settings}}" +"Adventure Time: Finn and Jake's Epic Quest": pageId: 50456 steam: 258590 templates: - - '{{Game data/config|Windows|{{P|game}}\options.at}}' - - '{{Game data/saves|Windows|{{P|game}}\save#.at}}' -'Adventure Time: Magic Man''s Head Games': + - "{{Game data/config|Windows|{{P|game}}\\options.at}}" + - "{{Game data/saves|Windows|{{P|game}}\\save#.at}}" +"Adventure Time: Magic Man's Head Games": pageId: 43789 steam: 412790 -'Adventure Time: Pirates of the Enchiridion': +"Adventure Time: Pirates of the Enchiridion": pageId: 88225 steam: 728240 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Outright Games Ltd\Adventure Time Pirates of the Enchiridion}}' - - >- - {{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Outright Games Ltd\Adventure Time Pirates of the - Enchiridion\progress.dat}} -'Adventure Time: The Secret of the Nameless Kingdom': + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Outright Games Ltd\\Adventure Time Pirates of the Enchiridion}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Outright Games Ltd\\Adventure Time Pirates of the Enchiridion\\progress.dat}}" +"Adventure Time: The Secret of the Nameless Kingdom": pageId: 49309 steam: 298890 templates: - - '{{Game data/config|Windows|{{P|appdata}}\Wayforward\AdventureTime3\wfEngine.ini}}' - - '{{Game data/saves|Windows|{{P|appdata}}\Wayforward\AdventureTime3}}' + - "{{Game data/config|Windows|{{P|appdata}}\\Wayforward\\AdventureTime3\\wfEngine.ini}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\Wayforward\\AdventureTime3}}" Adventure Trip: pageId: 155693 steam: 1217300 @@ -4660,7 +4548,7 @@ Adventure in Kana Village: Adventure in King Caries Land: pageId: 134739 steam: 1057150 -'Adventure in Russia: Road to Harvetsky': +"Adventure in Russia: Road to Harvetsky": pageId: 135040 steam: 1072030 Adventure in Serenia: @@ -4684,7 +4572,7 @@ Adventure of a Lifetime: pageId: 92807 steam: 820730 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\Saved Games\MoeNovel\Adventure of a Lifetime}}' + - "{{Game data/saves|Windows|{{p|userprofile}}\\Saved Games\\MoeNovel\\Adventure of a Lifetime}}" Adventure or Normality?: pageId: 150162 steam: 1174540 @@ -4712,29 +4600,25 @@ Adventures in the Light & Dark: Adventures of Abrix: pageId: 59241 steam: 576380 -'Adventures of Bertram Fiddle: Episode 1: A Dreadly Business': +"Adventures of Bertram Fiddle: Episode 1: A Dreadly Business": pageId: 37963 steam: 354680 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Rumpus Animation\The Adventures of Bertram Fiddle: Episode 1\}}' - - '{{Game data/saves|Windows|{{P|hkcu}}\Software\Rumpus Animation\The Adventures of Bertram Fiddle: Episode 1\}}' -'Adventures of Bertram Fiddle: Episode 2: A Bleaker Predicklement': + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Rumpus Animation\\The Adventures of Bertram Fiddle: Episode 1\\}}" + - "{{Game data/saves|Windows|{{P|hkcu}}\\Software\\Rumpus Animation\\The Adventures of Bertram Fiddle: Episode 1\\}}" +"Adventures of Bertram Fiddle: Episode 2: A Bleaker Predicklement": pageId: 39394 steam: 489930 templates: - - >- - {{Game data/config|Windows|{{P|hkcu}}\Software\Rumpus Animation\The Adventures of Bertram Fiddle: A Bleaker - Predicklment}} - - >- - {{Game data/saves|Windows|{{P|hkcu}}\Software\Rumpus Animation\The Adventures of Bertram Fiddle: A Bleaker - Predicklment}} + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Rumpus Animation\\The Adventures of Bertram Fiddle: A Bleaker Predicklment}}" + - "{{Game data/saves|Windows|{{P|hkcu}}\\Software\\Rumpus Animation\\The Adventures of Bertram Fiddle: A Bleaker Predicklment}}" Adventures of Chris: gog: 1554215892 pageId: 122792 steam: 341170 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\Guin Entertainment LLC\Adventures of Chris\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Guin Entertainment LLC\Adventures of Chris\}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Guin Entertainment LLC\\Adventures of Chris\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Guin Entertainment LLC\\Adventures of Chris\\}}" Adventures of Dragon: pageId: 78356 steam: 770370 @@ -4750,7 +4634,7 @@ Adventures of Heroes: Adventures of Hooi: pageId: 54351 steam: 563140 -'Adventures of Isabelle Fine: Murder on Rails': +"Adventures of Isabelle Fine: Murder on Rails": pageId: 141064 steam: 1024100 Adventures of Mike: @@ -4760,13 +4644,13 @@ Adventures of Pip: pageId: 24866 steam: 303550 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Tic Toc Games\Adventures of Pip\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Tic Toc Games\Adventures of Pip\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Caches/unity.Tic Toc Games.Adventures of Pip}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Tic Toc Games\\Adventures of Pip\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Tic Toc Games\\Adventures of Pip\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Caches/unity.Tic Toc Games.Adventures of Pip}}" Adventures of Pipi: pageId: 75021 steam: 744420 -'Adventures of Pipi 2: Save Hype': +"Adventures of Pipi 2: Save Hype": pageId: 94699 steam: 860790 Adventures of Quin85: @@ -4775,7 +4659,7 @@ Adventures of Quin85: Adventures of Robinson Crusoe: pageId: 48993 steam: 334470 -'Adventures of forsenE: The Hobo Knight': +"Adventures of forsenE: The Hobo Knight": pageId: 132510 steam: 1054030 Adventures of musical tones and their notes: @@ -4784,7 +4668,7 @@ Adventures of musical tones and their notes: Adventures of the Worm: pageId: 67577 steam: 681410 -'Adventurezator: When Pigs Fly': +"Adventurezator: When Pigs Fly": pageId: 46414 steam: 300280 Adventuring Gentleman: @@ -4797,9 +4681,9 @@ AdvertCity: pageId: 26103 steam: 365800 templates: - - '{{Game data/saves|Windows|{{p|game}}/advertcity.save}}' - - '{{Game data/saves|OS X|{{p|game}}/Contents/Resources/advertcity.save}}' - - '{{Game data/saves|Linux|{{p|game}}/advertcity.save}}' + - "{{Game data/saves|Windows|{{p|game}}/advertcity.save}}" + - "{{Game data/saves|OS X|{{p|game}}/Contents/Resources/advertcity.save}}" + - "{{Game data/saves|Linux|{{p|game}}/advertcity.save}}" Advisors at the End of the Universe: pageId: 148424 steam: 1148750 @@ -4815,19 +4699,17 @@ Aegis Defenders: steamSide: - 800810 templates: - - >- - {{Game data/config|Windows|{{P|userprofile}}\AppData\LocalLow\GUTS Department\Aegis - Defenders\inputPrefs.data|{{P|hkcu}}\Software\GUTS Department\Aegis Defenders\}} - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\GUTS Department\Aegis Defenders\{{P|uid}}.data}}' + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\GUTS Department\\Aegis Defenders\\inputPrefs.data|{{P|hkcu}}\\Software\\GUTS Department\\Aegis Defenders\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\GUTS Department\\Aegis Defenders\\{{P|uid}}.data}}" Aegis Descent: pageId: 179272 steam: 1251040 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Casper\Saved\Config\WindowsNoEditor\GameUserSettings.ini}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Casper\\Saved\\Config\\WindowsNoEditor\\GameUserSettings.ini}}" Aegis Online: pageId: 145115 steam: 1131590 -'Aegis of Earth: Protonovus Assault': +"Aegis of Earth: Protonovus Assault": pageId: 42273 steam: 450250 AegisM: @@ -4846,8 +4728,8 @@ Aeolis Tournament: pageId: 142248 steam: 1097770 templates: - - '{{Game data/config|Windows|{{p|userprofile\appdata\locallow}}\Beyond Fun Studio\Aeolis Tournament}}' - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\Beyond Fun Studio\Aeolis Tournament}}' + - "{{Game data/config|Windows|{{p|userprofile\\appdata\\locallow}}\\Beyond Fun Studio\\Aeolis Tournament}}" + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\Beyond Fun Studio\\Aeolis Tournament}}" Aeon: pageId: 62477 steam: 543390 @@ -4860,30 +4742,28 @@ Aeon Must Die!: Aeon of Sands - The Trail: pageId: 109528 steam: 907820 -Aeon's End: +"Aeon's End": pageId: 138948 steam: 1063580 Aequitas Orbis: pageId: 74520 steam: 679100 -'Aer: Memories of Old': +"Aer: Memories of Old": gog: 1509324336 pageId: 39807 steam: 331870 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Daedalic Entertainment GmbH\Aer\config.ini}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/Daedalic Entertainment GmbH/Aer/config.ini}}' - - >- - {{Game - data/saves|GOG.com|{{p|localappdata}}\GOG.com\Galaxy\Applications\49854609386510630\Storage\Shared\Files\aersave.fks}} - - '{{Game data/saves|Windows|{{p|localappdata}}\Daedalic Entertainment GmbH\Aer\aersave.fks}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/Daedalic Entertainment GmbH/Aer/aersave.fks}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Daedalic Entertainment GmbH\\Aer\\config.ini}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/Daedalic Entertainment GmbH/Aer/config.ini}}" + - "{{Game data/saves|GOG.com|{{p|localappdata}}\\GOG.com\\Galaxy\\Applications\\49854609386510630\\Storage\\Shared\\Files\\aersave.fks}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Daedalic Entertainment GmbH\\Aer\\aersave.fks}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/Daedalic Entertainment GmbH/Aer/aersave.fks}}" Aerannis: pageId: 46458 steam: 356580 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Aerannis\}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Aerannis\}}' + - "{{Game data/config|Windows|{{p|appdata}}\\Aerannis\\}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Aerannis\\}}" AereA: pageId: 59417 steam: 573660 @@ -4891,31 +4771,31 @@ Aerena - Clash of Champions: pageId: 15315 steam: 333530 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Cliffhanger\Aerena}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Cliffhanger\\Aerena}}" Aerial Destruction: pageId: 57805 steam: 592730 Aerial Guardian: pageId: 100234 steam: 885730 -Aerial Knight's Never Yield: +"Aerial Knight's Never Yield": pageId: 168505 steam: 1323540 templates: - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Aerial_Knight\AKNY}}' + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Aerial_Knight\\AKNY}}" Aero Fighters 2: pageId: 168738 Aero Fighters 3: pageId: 168739 -'Aero Tales Online: The World - Anime MMORPG': +"Aero Tales Online: The World - Anime MMORPG": pageId: 180183 steam: 1943610 -Aero's Quest: +"Aero's Quest": pageId: 47593 steam: 367780 templates: - - '{{Game data/config|Windows|{{p|LOCALAPPDATA}}\aerosquest110\settings.sav}}' - - '{{Game data/saves|Windows|{{p|LOCALAPPDATA}}\aerosquest110\}}' + - "{{Game data/config|Windows|{{p|LOCALAPPDATA}}\\aerosquest110\\settings.sav}}" + - "{{Game data/saves|Windows|{{p|LOCALAPPDATA}}\\aerosquest110\\}}" AeroChopper: pageId: 93366 steam: 832510 @@ -4929,10 +4809,8 @@ Aerofly FS 2 Flight Simulator: pageId: 42995 steam: 434030 templates: - - >- - {{Game data/config|Windows|{{P|userprofile\Documents}}\Aerofly FS 2\main.mcf|{{P|userprofile\Documents}}\Aerofly - FS 2\gc-map.mcf}} - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\Aerofly FS 2\mission_progress.mcf}}' + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\Aerofly FS 2\\main.mcf|{{P|userprofile\\Documents}}\\Aerofly FS 2\\gc-map.mcf}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\Aerofly FS 2\\mission_progress.mcf}}" Aerofly RC 7: pageId: 49390 steam: 322930 @@ -4951,7 +4829,7 @@ Aery: Aery VR: pageId: 153744 steam: 1198000 -Aesop's Fables - A New Approach: +"Aesop's Fables - A New Approach": pageId: 149237 steam: 1167940 Aesthetic Arena: @@ -4964,7 +4842,7 @@ Aeterna Noctis: pageId: 168453 steam: 1517970 templates: - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\AeternaTheGame\Aeterna Noctis}}' + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\AeternaTheGame\\Aeterna Noctis}}" Aeternitas: pageId: 122176 steam: 935980 @@ -4983,7 +4861,7 @@ Aetheria Online: Aetherspace: pageId: 65000 steam: 659900 -'Aeve: Zero Gravity': +"Aeve: Zero Gravity": pageId: 80996 steam: 788510 Afandas Survival: @@ -4995,7 +4873,7 @@ Afarid: Afelhem: pageId: 109032 steam: 848890 -'Affairs of the Court: Choice of Romance': +"Affairs of the Court: Choice of Romance": pageId: 35202 steam: 492370 Affected Zone Tactics: @@ -5011,12 +4889,12 @@ Affogato: pageId: 189305 steam: 1983970 templates: - - '{{Game data/config|Windows|{{P|userprofile\appdata\locallow}}\Befun\Affogato\}}' - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Befun\Affogato\QSaveData\GameSaveData\}}' + - "{{Game data/config|Windows|{{P|userprofile\\appdata\\locallow}}\\Befun\\Affogato\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Befun\\Affogato\\QSaveData\\GameSaveData\\}}" AffordaGolf Online: pageId: 55458 steam: 567040 -Afghanistan '11: +"Afghanistan '11": pageId: 57843 steam: 580710 Afloat: @@ -5045,10 +4923,10 @@ After Gloom: After Hours: pageId: 124167 steam: 989040 -'After I Met That Catgirl, My Questlist Got Too Long!': +"After I Met That Catgirl, My Questlist Got Too Long!": pageId: 135917 renamedFrom: - - 'After I met that catgirl, my questlist got too long!' + - "After I met that catgirl, my questlist got too long!" steam: 1071220 After Life - Story of a Father: pageId: 53469 @@ -5056,7 +4934,7 @@ After Life - Story of a Father: After Life VR: pageId: 79113 steam: 772590 -'After Rain: Phoenix Rise': +"After Rain: Phoenix Rise": pageId: 69749 steam: 693560 After Reset RPG: @@ -5069,7 +4947,7 @@ After Us: pageId: 183792 steam: 1406810 templates: - - '{{Game data/config|Windows|%AppData%\Local\AfterUs\Saved\Config}}' + - "{{Game data/config|Windows|%AppData%\\Local\\AfterUs\\Saved\\Config}}" After the Collapse: pageId: 113088 steam: 727570 @@ -5079,9 +4957,9 @@ After the Empire: After the End: pageId: 174387 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\KraiSoft\After The End}}' - - '{{Game data/saves|Windows|{{P|game}}\Campaign.cdf|{{P|game}}\Safari.cdf}}' -'After the End: The Harvest': + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\KraiSoft\\After The End}}" + - "{{Game data/saves|Windows|{{P|game}}\\Campaign.cdf|{{P|game}}\\Safari.cdf}}" +"After the End: The Harvest": pageId: 47297 steam: 386140 After the Fall: @@ -5121,16 +4999,14 @@ Afterfall Reconquest Episode I: pageId: 181682 steam: 299640 templates: - - '{{Game data/config|Windows|{{p|GAME}}\PearlGame\Config}}' - - >- - {{Game data/saves|Windows|(32bit) - {{p|game}}\Binaries\Win32\SaveGame.sav|(64bit) - - {{p|game}}\Binaries\Win64\SaveGame.sav}} -'Afterfall: InSanity': + - "{{Game data/config|Windows|{{p|GAME}}\\PearlGame\\Config}}" + - "{{Game data/saves|Windows|(32bit) - {{p|game}}\\Binaries\\Win32\\SaveGame.sav|(64bit) - {{p|game}}\\Binaries\\Win64\\SaveGame.sav}}" +"Afterfall: InSanity": pageId: 10380 steam: 224420 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Afterfall InSanity\RascalGame\Config\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Afterfall InSanity\RascalGame\SaveData\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Afterfall InSanity\\RascalGame\\Config\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Afterfall InSanity\\RascalGame\\SaveData\\}}" Aftergrinder: pageId: 61345 steam: 618310 @@ -5138,21 +5014,21 @@ Afterimage: pageId: 173616 steam: 1701520 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Afterimage\Saved\SaveGames\}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\Afterimage\Saved\Config\WindowsNoEditor\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\Afterimage\\Saved\\SaveGames\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Afterimage\\Saved\\Config\\WindowsNoEditor\\}}" Afterlife: gog: 1425308948 pageId: 2934 steam: 557240 templates: - - '{{Game data/config|DOS|{{P|game}}\ALIFE\AFTERDOS.INI}}' - - '{{Game data/config|Windows|{{P|game}}\ALIFE.INI|{{P|game}}\ALIFE\AFTERDOS.INI}}' - - '{{Game data/config|OS X|{{P|game}}/ALIFE/AFTERDOS.INI}}' - - '{{Game data/config|Linux|{{P|game}}/ALIFE/AFTERDOS.INI}}' - - '{{Game data/saves|DOS|{{P|game}}\SAVE}}' - - '{{Game data/saves|Windows|{{P|game}}\SAVE}}' - - '{{Game data/saves|OS X|{{P|game}}/SAVE}}' - - '{{Game data/saves|Linux|{{P|game}}/SAVE}}' + - "{{Game data/config|DOS|{{P|game}}\\ALIFE\\AFTERDOS.INI}}" + - "{{Game data/config|Windows|{{P|game}}\\ALIFE.INI|{{P|game}}\\ALIFE\\AFTERDOS.INI}}" + - "{{Game data/config|OS X|{{P|game}}/ALIFE/AFTERDOS.INI}}" + - "{{Game data/config|Linux|{{P|game}}/ALIFE/AFTERDOS.INI}}" + - "{{Game data/saves|DOS|{{P|game}}\\SAVE}}" + - "{{Game data/saves|Windows|{{P|game}}\\SAVE}}" + - "{{Game data/saves|OS X|{{P|game}}/SAVE}}" + - "{{Game data/saves|Linux|{{P|game}}/SAVE}}" Afterlife (2019): pageId: 137456 steam: 1012370 @@ -5186,9 +5062,9 @@ Afterparty: pageId: 91290 steam: 762220 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\SOFTWARE\Night School Studio\Afterparty}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Night School Studio\Afterparty\}}' - - '{{Game data/saves|Steam|{{P|steam}}\userdata\{{P|uid}}\762220\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\SOFTWARE\\Night School Studio\\Afterparty}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Night School Studio\\Afterparty\\}}" + - "{{Game data/saves|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\762220\\}}" Again: pageId: 87309 steam: 810570 @@ -5218,75 +5094,73 @@ Against the Storm: pageId: 163449 steam: 1336490 templates: - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\Eremite Games\Against the Storm}}' + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\Eremite Games\\Against the Storm}}" Agapan: pageId: 47707 steam: 344260 -'Agarest: Generations of War': +"Agarest: Generations of War": gog: 1207666943 pageId: 10978 steam: 237890 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Ghostlight Ltd\Agarest - Generations of War}}' -'Agarest: Generations of War 2': + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Ghostlight Ltd\\Agarest - Generations of War}}" +"Agarest: Generations of War 2": gog: 1438083997 pageId: 30517 steam: 312790 -'Agarest: Generations of War Zero': +"Agarest: Generations of War Zero": gog: 1426762679 pageId: 16755 steam: 260130 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Ghostlight Ltd\Agarest - Generations of War Zero\}}' + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Ghostlight Ltd\\Agarest - Generations of War Zero\\}}" Agartha: pageId: 130038 steam: 1002420 Agassi Tennis Generation: pageId: 95728 -'Agatha Christie - Hercule Poirot: The First Cases': +"Agatha Christie - Hercule Poirot: The First Cases": gog: 1308284027 pageId: 170183 steam: 1573720 templates: - - >- - {{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Microids\Agatha Christie - Hercule Poirot_ The First - Cases\GameData_v3.bin}} -'Agatha Christie - Hercule Poirot: The London Case': + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Microids\\Agatha Christie - Hercule Poirot_ The First Cases\\GameData_v3.bin}}" +"Agatha Christie - Hercule Poirot: The London Case": gog: 1138549039 pageId: 187366 steam: 2223740 -'Agatha Christie: And Then There Were None': +"Agatha Christie: And Then There Were None": pageId: 176856 steam: 39600 -'Agatha Christie: Evil under the Sun': +"Agatha Christie: Evil under the Sun": pageId: 176955 steam: 39610 -'Agatha Christie: Murder on the Orient Express': +"Agatha Christie: Murder on the Orient Express": pageId: 176953 steam: 39620 -'Agatha Christie: Murder on the Orient Express (2023)': +"Agatha Christie: Murder on the Orient Express (2023)": gog: 1408221873 pageId: 188021 steam: 1904790 -'Agatha Christie: The ABC Murders': +"Agatha Christie: The ABC Murders": gog: 1452691186 pageId: 34282 steam: 374900 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Microids\The ABC Murders}}' - - '{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/Microids/The ABC Murders/prefs}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Microids\The ABC Murders\Profils\}}' - - '{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/Microids/The ABC Murders/Profils/}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Microids\\The ABC Murders}}" + - "{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/Microids/The ABC Murders/prefs}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Microids\\The ABC Murders\\Profils\\}}" + - "{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/Microids/The ABC Murders/Profils/}}" Agatha Knife: pageId: 61488 steam: 618950 steamSide: - 622400 templates: - - '{{Game data/config|Windows|{{P|appdata}}\Agatha Knife\preferences}}' - - '{{Game data/saves|Windows|{{P|appdata}}\Agatha Knife\save\}}' + - "{{Game data/config|Windows|{{P|appdata}}\\Agatha Knife\\preferences}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\Agatha Knife\\save\\}}" Age Of Forays: pageId: 108470 steam: 908400 @@ -5294,12 +5168,12 @@ Age of Barbarian: pageId: 35309 steam: 402880 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/saves|Windows|{{p|game}}\}}' + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\}}" Age of Booty: pageId: 41312 steam: 21600 -'Age of Castles: Warlords': +"Age of Castles: Warlords": pageId: 47873 steam: 371710 Age of Cavemen: @@ -5308,7 +5182,7 @@ Age of Cavemen: Age of Chivalry: pageId: 32064 steam: 17510 -'Age of Conan: Unchained': +"Age of Conan: Unchained": pageId: 40656 steam: 217750 Age of Conquest III: @@ -5320,23 +5194,23 @@ Age of Darkness: pageId: 75608 steam: 718070 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Achilles\Saved\Config\WindowsNoEditor}}' -'Age of Darkness: Die Suche nach Relict': + - "{{Game data/config|Windows|{{P|localappdata}}\\Achilles\\Saved\\Config\\WindowsNoEditor}}" +"Age of Darkness: Die Suche nach Relict": pageId: 135032 steam: 1033090 -'Age of Darkness: Final Stand': +"Age of Darkness: Final Stand": pageId: 171921 steam: 1426450 templates: - - '{{Game data/saves|Windows|{{p|USERPROFILE}}\Documents\My Games\AgeOfDarkness\Saves}}' + - "{{Game data/saves|Windows|{{p|USERPROFILE}}\\Documents\\My Games\\AgeOfDarkness\\Saves}}" Age of Defense: pageId: 58708 steam: 603320 Age of Empires: pageId: 521 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Microsoft\Games\Age of Empires\1.00\}}' - - '{{Game data/saves|Windows|{{p|game}}\savegame|{{p|game}}\game0.nfo}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Microsoft\\Games\\Age of Empires\\1.00\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\savegame|{{p|game}}\\game0.nfo}}" Age of Empires II (2013): pageId: 5441 steam: 221380 @@ -5345,9 +5219,9 @@ Age of Empires II (2013): - 355950 - 488060 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Age2HD\}}' - - '{{Game data/saves|Windows|{{p|game}}\savegame}}' -'Age of Empires II: Definitive Edition': + - "{{Game data/config|Windows|{{p|appdata}}\\Age2HD\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\savegame}}" +"Age of Empires II: Definitive Edition": pageId: 134274 steam: 813780 steamSide: @@ -5358,43 +5232,39 @@ Age of Empires II (2013): - 2141580 - 2555420 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\Games\Age of Empires 2 DE\{{p|uid}}\profile\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\Games\Age of Empires 2 DE\{{p|uid}}\savegame\}}' - - >- - {{Game data/saves|Microsoft Store|{{p|userprofile}}\Games\Age of Empires 2 - DE\{{p|uid}}\savegame\|{{p|userprofile}}\Games\Age of Empires 2 DE\{{p|uid}}\modes\Pompeii\savegame\}} -'Age of Empires II: The Age of Kings': + - "{{Game data/config|Windows|{{p|userprofile}}\\Games\\Age of Empires 2 DE\\{{p|uid}}\\profile\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Games\\Age of Empires 2 DE\\{{p|uid}}\\savegame\\}}" + - "{{Game data/saves|Microsoft Store|{{p|userprofile}}\\Games\\Age of Empires 2 DE\\{{p|uid}}\\savegame\\|{{p|userprofile}}\\Games\\Age of Empires 2 DE\\{{p|uid}}\\modes\\Pompeii\\savegame\\}}" +"Age of Empires II: The Age of Kings": pageId: 28 templates: - - '{{Game data/config|Windows|{{p|game}}\config.xml}}' - - '{{Game data/saves|Windows|{{p|game}}\SaveGame\}}' + - "{{Game data/config|Windows|{{p|game}}\\config.xml}}" + - "{{Game data/saves|Windows|{{p|game}}\\SaveGame\\}}" Age of Empires III: pageId: 126 steam: 105450 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Age of Empires 3\Users\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Documents/Age of Empires III/Users/}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Age of Empires 3\Savegame\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Documents/Age of Empires III/Savegame/}}' -'Age of Empires III: Definitive Edition': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Age of Empires 3\\Users\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Documents/Age of Empires III/Users/}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Age of Empires 3\\Savegame\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Documents/Age of Empires III/Savegame/}}" +"Age of Empires III: Definitive Edition": pageId: 134275 steam: 933110 steamSide: - - 2477660 - 1581450 - 1581451 - - 1817370 - 1817361 + - 1817370 - 2154360 - 2154361 - 2154362 + - 2477660 templates: - - '{{Game data/config|Windows|{{P|userprofile}}\Games\Age of Empires 3 DE\Common}}' - - '{{Game data/config|Microsoft Store|{{P|userprofile}}\Games\Age of Empires 3 DE\Common}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\Games\Age of Empires 3 DE\16 digit number\Savegame}}' - - >- - {{Game data/saves|Microsoft Store|{{P|userprofile}}\Games\Age of Empires 3 DE\16 digit - number\Savegame}} + - "{{Game data/config|Windows|{{P|userprofile}}\\Games\\Age of Empires 3 DE\\Common}}" + - "{{Game data/config|Microsoft Store|{{P|userprofile}}\\Games\\Age of Empires 3 DE\\Common}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\Games\\Age of Empires 3 DE\\16 digit number\\Savegame}}" + - "{{Game data/saves|Microsoft Store|{{P|userprofile}}\\Games\\Age of Empires 3 DE\\16 digit number\\Savegame}}" Age of Empires IV: pageId: 127093 steam: 1466860 @@ -5403,8 +5273,8 @@ Age of Empires IV: - 1797050 - 1959430 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Age of Empires IV\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Age of Empires IV\Users\(UserID)\Savegames\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Age of Empires IV\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Age of Empires IV\\Users\\(UserID)\\Savegames\\}}" Age of Empires Online: pageId: 1952 steam: 105430 @@ -5422,48 +5292,44 @@ Age of Empires Online: - 201972 - 201973 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Spartan\Users2\NewProfile2.xml}}' -'Age of Empires: Castle Siege': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Spartan\\Users2\\NewProfile2.xml}}" +"Age of Empires: Castle Siege": pageId: 63541 -'Age of Empires: Definitive Edition': +"Age of Empires: Definitive Edition": pageId: 68766 steam: 1017900 templates: - - >- - {{Game data/config|Microsoft Store|{{p|localappdata}}\Packages\ActiveSync\LocalState\Games\Age of Empires - DE\Config\}} - - '{{Game data/config|Steam|{{p|userprofile}}\Games\Age of Empires DE\Config\}}' - - >- - {{Game data/saves|Microsoft Store|{{p|localappdata}}\Packages\ActiveSync\LocalState\Games\Age of Empires DE\Saved - Games\}} - - '{{Game data/saves|Steam|{{p|userprofile}}\Games\Age of Empires DE\Users\{{p|uid}}\Saved Games\}}' -'Age of Enigma: The Secret of the Sixth Ghost': + - "{{Game data/config|Microsoft Store|{{p|localappdata}}\\Packages\\ActiveSync\\LocalState\\Games\\Age of Empires DE\\Config\\}}" + - "{{Game data/config|Steam|{{p|userprofile}}\\Games\\Age of Empires DE\\Config\\}}" + - "{{Game data/saves|Microsoft Store|{{p|localappdata}}\\Packages\\ActiveSync\\LocalState\\Games\\Age of Empires DE\\Saved Games\\}}" + - "{{Game data/saves|Steam|{{p|userprofile}}\\Games\\Age of Empires DE\\Users\\{{p|uid}}\\Saved Games\\}}" +"Age of Enigma: The Secret of the Sixth Ghost": pageId: 47949 steam: 362740 Age of Farming: pageId: 53437 steam: 556300 -'Age of Fear 2: The Chaos Lord': +"Age of Fear 2: The Chaos Lord": pageId: 38530 steam: 341150 -'Age of Fear 3: The Legend': +"Age of Fear 3: The Legend": pageId: 66267 steam: 431700 -'Age of Fear 4: The Iron Killer': +"Age of Fear 4: The Iron Killer": pageId: 137139 steam: 431950 -'Age of Fear: The Free World': +"Age of Fear: The Free World": pageId: 122548 steam: 882410 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Age-of-Fear-Free-World\savegame\}}' -'Age of Fear: The Undead King': + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Age-of-Fear-Free-World\\savegame\\}}" +"Age of Fear: The Undead King": pageId: 34091 steam: 351480 -'Age of Fear: The Undead King GOLD': +"Age of Fear: The Undead King GOLD": pageId: 121580 steam: 832770 -'Age of Fear: Total': +"Age of Fear: Total": pageId: 189894 steam: 431520 Age of Giants: @@ -5472,10 +5338,10 @@ Age of Giants: Age of Gladiators: pageId: 44443 steam: 442500 -'Age of Gladiators II: Death League': +"Age of Gladiators II: Death League": pageId: 64091 steam: 639300 -'Age of Gladiators II: Rome': +"Age of Gladiators II: Rome": pageId: 95087 steam: 783590 Age of Grit: @@ -5484,7 +5350,7 @@ Age of Grit: Age of Heroes: pageId: 65632 steam: 586080 -'Age of Heroes: Conquest': +"Age of Heroes: Conquest": pageId: 61309 steam: 599060 Age of History II: @@ -5494,38 +5360,38 @@ Age of History II: - Age of Civilizations II steam: 603850 templates: - - '{{Game data/config|Windows|{{p|game}}}}' + - "{{Game data/config|Windows|{{p|game}}}}" Age of Magic CCG: pageId: 44066 steam: 426970 Age of Mythology: pageId: 5661 templates: - - '{{Game data/config|Windows|{{p|game}}\Startup\Persistent.cfg|{{p|game}}\Users\}}' - - '{{Game data/saves|Windows|{{p|game}}\savegame\}}' -'Age of Mythology: Extended Edition': + - "{{Game data/config|Windows|{{p|game}}\\Startup\\Persistent.cfg|{{p|game}}\\Users\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\savegame\\}}" +"Age of Mythology: Extended Edition": pageId: 16471 steam: 266840 templates: - - '{{Game data/config|Windows|{{p|game}}\Startup\Persistent.cfg|{{p|game}}\Users\}}' - - '{{Game data/saves|Windows|{{p|game}}\savegame\}}' + - "{{Game data/config|Windows|{{p|game}}\\Startup\\Persistent.cfg|{{p|game}}\\Users\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\savegame\\}}" Age of Omens: pageId: 132668 steam: 1016660 -'Age of Pirates 2: City of Abandoned Ships': +"Age of Pirates 2: City of Abandoned Ships": gog: 1455191756 pageId: 121071 steam: 937940 templates: - - '{{Game data/config|Windows|{{p|game}}\engine.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\SAVE}}' -'Age of Pirates: Caribbean Tales': + - "{{Game data/config|Windows|{{p|game}}\\engine.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\SAVE}}" +"Age of Pirates: Caribbean Tales": gog: 1444806723 pageId: 88768 steam: 817460 templates: - - '{{Game data/config|Windows|{{p|game}}\config.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\Save}}' + - "{{Game data/config|Windows|{{p|game}}\\config.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\Save}}" Age of Pixels: pageId: 135868 steam: 1077250 @@ -5541,7 +5407,7 @@ Age of Solitaire: Age of Space: pageId: 105635 steam: 616780 -'Age of Steel: Recharge': +"Age of Steel: Recharge": pageId: 45081 steam: 421060 Age of Survival: @@ -5555,18 +5421,18 @@ Age of Wonders: pageId: 7261 steam: 61500 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Triumph Studios\Age of Wonders}}' - - '{{Game data/saves|Windows|{{p|game}}\Save\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Triumph Studios\\Age of Wonders}}" + - "{{Game data/saves|Windows|{{p|game}}\\Save\\}}" Age of Wonders 4: gog: 1915432764 gogSide: - 1113728204 - - 1677754007 - - 2127759575 - - 2127737278 - 1467390423 + - 1677754007 - 1804193941 - 1935859883 + - 2127737278 + - 2127759575 pageId: 184517 steam: 1669000 steamSide: @@ -5578,45 +5444,45 @@ Age of Wonders 4: - 2401850 - 2401860 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\Paradox Interactive\Age of Wonders 4\Config\Settings.cfg}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\Paradox Interactive\Age of Wonders 4\Storage}}' - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\1669000\remote\}}' -'Age of Wonders II: The Wizard''s Throne': + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\Paradox Interactive\\Age of Wonders 4\\Config\\Settings.cfg}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\Paradox Interactive\\Age of Wonders 4\\Storage}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\1669000\\remote\\}}" +"Age of Wonders II: The Wizard's Throne": gog: 1207658884 pageId: 7267 steam: 61510 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\SOFTWARE\Triumph Studios\Age of Wonders II\}}' - - '{{Game data/saves|Windows|{{p|game}}\Save\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\Triumph Studios\\Age of Wonders II\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\Save\\}}" Age of Wonders III: gog: 1207660893 gogSide: - - 1207660903 - 1207660883 + - 1207660903 - 1207665893 - 1428937263 pageId: 16278 steam: 226840 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\AoW3\Profiles\{{p|uid}}\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/AoW3/}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/AoW3/}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\AoW3\Profiles\{{p|uid}}\SAVES\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/AoW3/}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/AoW3/}}' -'Age of Wonders: Planetfall': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\AoW3\\Profiles\\{{p|uid}}\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/AoW3/}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/AoW3/}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\AoW3\\Profiles\\{{p|uid}}\\SAVES\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/AoW3/}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/AoW3/}}" +"Age of Wonders: Planetfall": gog: 1918301028 gogSide: - - 1526268080 - - 1934161828 - 1462425012 - 1479494583 - - 2146336406 + - 1526268080 - 1628354654 - 1766797571 - - 1890841855 - 1828150101 + - 1890841855 + - 1934161828 - 2064778517 + - 2146336406 pageId: 95045 steam: 718850 steamSide: @@ -5631,17 +5497,15 @@ Age of Wonders III: - 1137801 - 1137802 templates: - - >- - {{Game data/config|Windows|{{P|userprofile\Documents}}\Paradox Interactive\Age of Wonders - Planetfall\Config\Settings.cfg}} - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\Paradox Interactive\Age of Wonders Planetfall\Saves\}}' -'Age of Wonders: Shadow Magic': + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\Paradox Interactive\\Age of Wonders Planetfall\\Config\\Settings.cfg}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\Paradox Interactive\\Age of Wonders Planetfall\\Saves\\}}" +"Age of Wonders: Shadow Magic": gog: 1207658885 pageId: 7317 steam: 61520 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\SOFTWARE\Triumph Studios\Age of Wonders Shadow Magic\}}' - - '{{Game data/saves|Windows|{{p|game}}\Save\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\Triumph Studios\\Age of Wonders Shadow Magic\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\Save\\}}" Age of Wushu: pageId: 87628 steam: 265650 @@ -5652,39 +5516,39 @@ Ageless: pageId: 162364 steam: 1210150 templates: - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\OneMoreDream Studios\Ageless}}' + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\OneMoreDream Studios\\Ageless}}" Agenda: pageId: 39055 steam: 513460 -'Agent 64: Spies Never Die': +"Agent 64: Spies Never Die": pageId: 175758 steam: 1574480 Agent 9: pageId: 126316 steam: 981670 -'Agent A: A Puzzle in Disguise': +"Agent A: A Puzzle in Disguise": gog: 1243209140 pageId: 122630 steam: 801480 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\SOFTWARE\Yak & Co\AgentA\}}' - - '{{Game data/saves|Windows|{{p|hkcu}}\SOFTWARE\Yak & Co\AgentA\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Preferences/co.yakand.steam.agentaapuzzleindisguise.plist}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\Yak & Co\\AgentA\\}}" + - "{{Game data/saves|Windows|{{p|hkcu}}\\SOFTWARE\\Yak & Co\\AgentA\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Preferences/co.yakand.steam.agentaapuzzleindisguise.plist}}" Agent Awesome: pageId: 48679 steam: 345220 Agent Girl: pageId: 80456 steam: 680270 -'Agent Hugo: Hula Holiday': +"Agent Hugo: Hula Holiday": pageId: 20677 -'Agent Hugo: Lemoon Twist': +"Agent Hugo: Lemoon Twist": pageId: 189274 Agent Intercept: pageId: 147799 steam: 1502710 templates: - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\PikPok\AgentIntercept}}' + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\PikPok\\AgentIntercept}}" Agent Of Love: pageId: 141310 steam: 1013830 @@ -5693,36 +5557,36 @@ Agent P Strikes Back: Agent Roswell: pageId: 151351 steam: 931320 -'Agent Walker: Secret Journey': +"Agent Walker: Secret Journey": pageId: 37046 steam: 497580 -'Agent X: Equation Rider': +"Agent X: Equation Rider": pageId: 78475 steam: 767010 Agents of Mayhem: pageId: 39634 steam: 304530 templates: - - '{{Game data/config|Windows|{{p|game}}\aom\display.ini}}' - - '{{Game data/saves|Windows|{{p|steam}}\userdata\{{p|uid}}\304530\remote\}}' -'Agents: Biohunters': + - "{{Game data/config|Windows|{{p|game}}\\aom\\display.ini}}" + - "{{Game data/saves|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\304530\\remote\\}}" +"Agents: Biohunters": pageId: 142039 steam: 765800 -'Ages of Mages: The Last Keeper': +"Ages of Mages: The Last Keeper": pageId: 92009 steam: 820610 Aggelos: pageId: 98066 steam: 717310 templates: - - '{{Game data/config|Windows|{{P|game}}\config.ini|{{P|game}}\screen.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\sauvegarde*.ini|{{p|game}}\curseur.ini}}' -'Aggression: Europe Under Fire': + - "{{Game data/config|Windows|{{P|game}}\\config.ini|{{P|game}}\\screen.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\sauvegarde*.ini|{{p|game}}\\curseur.ini}}" +"Aggression: Europe Under Fire": pageId: 50468 steam: 289580 Aggressors of Dark Kombat: pageId: 168088 -'Aggressors: Ancient Rome': +"Aggressors: Ancient Rome": gog: 1971695113 pageId: 94110 steam: 783210 @@ -5735,52 +5599,50 @@ Agony: pageId: 39739 steam: 487720 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Agony\Saved\Config\WindowsNoEditor}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\Agony\Saved\SaveGames}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\Agony\\Saved\\Config\\WindowsNoEditor}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Agony\\Saved\\SaveGames}}" Agony Unrated: gog: 1874396259 pageId: 145884 steam: 879420 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Agony\Saved_Unrated\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\Agony\Saved_Unrated\SaveGames\}}' -'Agony: Lords of Hell': + - "{{Game data/config|Windows|{{P|localappdata}}\\Agony\\Saved_Unrated\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Agony\\Saved_Unrated\\SaveGames\\}}" +"Agony: Lords of Hell": pageId: 173793 steam: 1493430 -'Agricola: All Creatures Big and Small': +"Agricola: All Creatures Big and Small": pageId: 57900 steam: 528180 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\DIGIDICED\All Creatures\}}' -'Agricola: Revised Edition': + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\DIGIDICED\\All Creatures\\}}" +"Agricola: Revised Edition": pageId: 160214 steam: 1005580 Agricultural Simulator 2011: pageId: 41016 steam: 92900 templates: - - '{{Game data/config|Windows|{{p|game}}\system\}}' - - >- - {{Game data/saves|Windows|{{P|userprofile\Documents}}\My Games\agrar simulator - 2011\|{{P|userprofile\Documents}}\My Games\agrar simulator bga 2011\}} + - "{{Game data/config|Windows|{{p|game}}\\system\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\My Games\\agrar simulator 2011\\|{{P|userprofile\\Documents}}\\My Games\\agrar simulator bga 2011\\}}" Agricultural Simulator 2012: pageId: 48196 steam: 273790 templates: - - '{{Game data/config|Windows|{{p|game}}\system\}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\My Games\agrar simulator 2012\}}' + - "{{Game data/config|Windows|{{p|game}}\\system\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\My Games\\agrar simulator 2012\\}}" Agricultural Simulator 2013: pageId: 40616 steam: 236790 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\My Games\Agrar Simulator 2013\system\}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\My Games\Agrar Simulator 2013\saved games\}}' -'Agricultural Simulator: Historical Farming': + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\My Games\\Agrar Simulator 2013\\system\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\My Games\\Agrar Simulator 2013\\saved games\\}}" +"Agricultural Simulator: Historical Farming": pageId: 40526 steam: 259890 templates: - - '{{Game data/config|Windows|{{p|game}}\system\}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\My Games\agrar history 2012\}}' + - "{{Game data/config|Windows|{{p|game}}\\system\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\My Games\\agrar history 2012\\}}" Agross: pageId: 144528 steam: 1145430 @@ -5788,10 +5650,10 @@ Aground: gog: 2000742928 pageId: 96943 steam: 876650 -'Agtnan: Monster Shutdown Sequence': +"Agtnan: Monster Shutdown Sequence": pageId: 130664 steam: 1044820 -'Ah, Love!': +"Ah, Love!": pageId: 114182 steam: 937390 Ahegal: @@ -5800,7 +5662,7 @@ Ahegal: - AHEGAL steam: 865090 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Oppai Reveal Studios\AheGal\*.gd}}' + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Oppai Reveal Studios\\AheGal\\*.gd}}" Ahegal Seasons: pageId: 149567 renamedFrom: @@ -5809,20 +5671,20 @@ Ahegal Seasons: Ahlman Arcade 2018: pageId: 104447 steam: 855580 -'Ahnayro: The Dream World': +"Ahnayro: The Dream World": pageId: 33866 steam: 449730 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Alice & Smith\Ahnayro: The Dream World\}}' - - '{{Game data/saves|Windows|{{P|game}}\ahnayro_Data\playerInfo.dat}}' -'Ahros: One Warrior Chronicle': + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Alice & Smith\\Ahnayro: The Dream World\\}}" + - "{{Game data/saves|Windows|{{P|game}}\\ahnayro_Data\\playerInfo.dat}}" +"Ahros: One Warrior Chronicle": pageId: 40325 steam: 518110 Ai Yori Aoshi: pageId: 52035 templates: - - '{{Game data/config|Windows|{{p|game}}\save\}}' - - '{{Game data/saves|Windows|{{p|game}}\save\}}' + - "{{Game data/config|Windows|{{p|game}}\\save\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\save\\}}" Ai no Uta あいのうた: pageId: 155432 steam: 1212780 @@ -5832,13 +5694,13 @@ Aiball: Aiden: pageId: 81562 steam: 783060 -'Aidsmoji: The Forbidden Fruit': +"Aidsmoji: The Forbidden Fruit": pageId: 82025 steam: 794410 Aigor Escape from Bishop: pageId: 156061 steam: 1207520 -Aik's Cheese Adventures: +"Aik's Cheese Adventures": pageId: 93009 steam: 850790 Ailment: @@ -5848,8 +5710,8 @@ Aim Hero: pageId: 38720 steam: 518030 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Aim Hero\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Aim Hero\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Aim Hero\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Aim Hero\\}}" Aim Lab VR: pageId: 181033 steam: 1845630 @@ -5868,7 +5730,7 @@ Aim Trainer Pro: Aim for the Win: pageId: 141574 steam: 1111300 -'Aima Wars: Steampunk & Orcs': +"Aima Wars: Steampunk & Orcs": pageId: 94372 steam: 798230 AimerBall: @@ -5909,8 +5771,8 @@ Aion: steam: 261430 steamSide: - 29640 - - 29660 - 29650 + - 29660 - 29670 Air: pageId: 150026 @@ -5919,17 +5781,15 @@ Air Attack: pageId: 172999 steam: 1424900 templates: - - >- - {{Game - data/config|Windows|{{p|Steam}}\steamapps\common\AirAttack\WindowsAABuild\obfuscatedtestjar\properties.properties}} -'Air Attack 3.0, Aerial Firefighting Game': + - "{{Game data/config|Windows|{{p|Steam}}\\steamapps\\common\\AirAttack\\WindowsAABuild\\obfuscatedtestjar\\properties.properties}}" +"Air Attack 3.0, Aerial Firefighting Game": pageId: 156059 steam: 935680 Air Brawl: pageId: 45733 steam: 375600 templates: - - '{{Game data/config|Windows|Computer\HKEY_CURRENT_USER\SOFTWARE\DefaultCompany\Air Brawl}}' + - "{{Game data/config|Windows|Computer\\HKEY_CURRENT_USER\\SOFTWARE\\DefaultCompany\\Air Brawl}}" Air Combat: pageId: 124109 steam: 991280 @@ -5942,23 +5802,23 @@ Air Combat Fighter: Air Combat III: pageId: 142279 steam: 1114390 -'Air Conflicts: Pacific Carriers': +"Air Conflicts: Pacific Carriers": pageId: 13019 steam: 214910 templates: - - '{{Game data/config|Windows|{{P|game}}\config.ini}}' - - '{{Game data/saves|Windows|{{P|game}}\save}}' -'Air Conflicts: Secret Wars': + - "{{Game data/config|Windows|{{P|game}}\\config.ini}}" + - "{{Game data/saves|Windows|{{P|game}}\\save}}" +"Air Conflicts: Secret Wars": pageId: 40895 steam: 95900 -'Air Conflicts: Vietnam': +"Air Conflicts: Vietnam": pageId: 11275 steam: 233210 Air Control: pageId: 17662 steam: 295810 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Killjoy Games\Air Control}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Killjoy Games\\Air Control}}" Air Dash: pageId: 77865 steam: 755140 @@ -5966,8 +5826,8 @@ Air Forte: pageId: 6294 steam: 55020 templates: - - '{{Game data/config|Windows|{{p|game}}\data\AirForteSaveData\settings.dat}}' - - '{{Game data/saves|Windows|{{p|game}}\data\AirForteSaveData\}}' + - "{{Game data/config|Windows|{{p|game}}\\data\\AirForteSaveData\\settings.dat}}" + - "{{Game data/saves|Windows|{{p|game}}\\data\\AirForteSaveData\\}}" Air Guardians: pageId: 48869 steam: 342230 @@ -5977,7 +5837,7 @@ Air Hockey: Air Marty: pageId: 135744 steam: 1076880 -'Air Missions: HIND': +"Air Missions: HIND": pageId: 38151 steam: 423490 Air Raid Over Britain: @@ -6001,7 +5861,7 @@ AirBuccaneers: pageId: 16650 steam: 223630 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' + - "{{Game data/config|Windows|{{p|game}}\\}}" AirHockey 3D: pageId: 128828 AirMech Command: @@ -6022,15 +5882,15 @@ AirShock: AirStrike 2: pageId: 168719 templates: - - '{{Game data/config|Windows|{{p|game}}\config.ini}}' -'AirStrike 2: Gulf Thunder': + - "{{Game data/config|Windows|{{p|game}}\\config.ini}}" +"AirStrike 2: Gulf Thunder": pageId: 173690 templates: - - '{{Game data/config|Windows|{{p|game}}\config.ini}}' -'AirStrike 3D: Operation W.A.T': + - "{{Game data/config|Windows|{{p|game}}\\config.ini}}" +"AirStrike 3D: Operation W.A.T": pageId: 173665 templates: - - '{{Game data/config|Windows|{{p|game}}\config.ini}}' + - "{{Game data/config|Windows|{{p|game}}\\config.ini}}" Airball: pageId: 175911 steam: 1804370 @@ -6048,7 +5908,7 @@ Airborne Kingdom: pageId: 130638 steam: 982290 templates: - - '{{Game data/saves|Windows|{{P|userprofile\AppData\LocalLow}}\The Wandering Band LLC\Airborne Kingdom\Save Files\}}' + - "{{Game data/saves|Windows|{{P|userprofile\\AppData\\LocalLow}}\\The Wandering Band LLC\\Airborne Kingdom\\Save Files\\}}" Airborne Motocross: pageId: 175635 steam: 1772800 @@ -6056,11 +5916,11 @@ Airborne Ranger: gog: 1311823581 pageId: 183875 steam: 1703070 -'Airborne Troops: Countdown to D-Day': +"Airborne Troops: Countdown to D-Day": pageId: 160802 templates: - - '{{Game data/saves|Windows|{{p|game}}\AirborneTroops_Profile*.sav}}' -'Airborne: Trials': + - "{{Game data/saves|Windows|{{p|game}}\\AirborneTroops_Profile*.sav}}" +"Airborne: Trials": pageId: 153804 steam: 1115110 Aircar: @@ -6081,12 +5941,12 @@ Aircraft War X: Airfix Dogfighter: pageId: 54891 templates: - - '{{Game data/config|Windows|{{p|game}}\system.ini|{{p|game}}\user.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\User\}}' + - "{{Game data/config|Windows|{{p|game}}\\system.ini|{{p|game}}\\user.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\User\\}}" Airglow: pageId: 139693 steam: 1103560 -'Airhack: Hacking': +"Airhack: Hacking": pageId: 154420 steam: 1188950 Airhead: @@ -6097,25 +5957,25 @@ Airheart: pageId: 51416 steam: 531180 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Blindflug Studios AG\Airheart\}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Blindflug Studios AG\Airheart\}}' -Airi's World: + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Blindflug Studios AG\\Airheart\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Blindflug Studios AG\\Airheart\\}}" +"Airi's World": pageId: 64246 steam: 664590 Airis: pageId: 61622 steam: 628610 templates: - - '{{Game data/config|Windows|{{p|game}}\renpy\config.py}}' - - '{{Game data/saves|Windows|{{p|appdata}}\renpy\AIRIS-1466417547\*.save}}' + - "{{Game data/config|Windows|{{p|game}}\\renpy\\config.py}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\renpy\\AIRIS-1466417547\\*.save}}" Airline Director 2 - Tycoon Game: pageId: 43318 steam: 462830 Airline Tycoon: pageId: 79504 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Spellbound Software\Airline Tycoon\1.0}}' - - '{{Game data/saves|Windows|{{p|game}}\Savegame\Game*.dat}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Spellbound Software\\Airline Tycoon\\1.0}}" + - "{{Game data/saves|Windows|{{p|game}}\\Savegame\\Game*.dat}}" Airline Tycoon 2: pageId: 40879 steam: 201490 @@ -6124,32 +5984,30 @@ Airline Tycoon Deluxe: pageId: 23862 steam: 331920 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Spellbound Software\Airline Tycoon Deluxe\1.0\}}' - - >- - {{Game - data/config|Linux|{{P|linuxhome}}/.AirlineTycoonDeluxeconfig.ini|{{P|linuxhome}}/.AirlineTycoonDeluxe/language.ini}} - - '{{Game data/saves|Windows|{{p|game}}\Savegame\Game*.dat|{{p|game}}\Myplanes\}}' - - '{{Game data/saves|Linux|{{P|linuxhome}}/.AirlineTycoonDeluxe/}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Spellbound Software\\Airline Tycoon Deluxe\\1.0\\}}" + - "{{Game data/config|Linux|{{P|linuxhome}}/.AirlineTycoonDeluxeconfig.ini|{{P|linuxhome}}/.AirlineTycoonDeluxe/language.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\Savegame\\Game*.dat|{{p|game}}\\Myplanes\\}}" + - "{{Game data/saves|Linux|{{P|linuxhome}}/.AirlineTycoonDeluxe/}}" Airline Tycoon Evolution: pageId: 77437 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Spellbound Software\Airline Tycoon Evolution\1.0}}' - - '{{Game data/saves|Windows|{{p|game}}\Savegame\Game*.dat|{{p|game}}\Myplanes}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Spellbound Software\\Airline Tycoon Evolution\\1.0}}" + - "{{Game data/saves|Windows|{{p|game}}\\Savegame\\Game*.dat|{{p|game}}\\Myplanes}}" Airline Tycoon First Class: pageId: 82263 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Spellbound Software\Airline Tycoon First Class\1.0}}' - - '{{Game data/saves|Windows|{{p|game}}\Savegame\Game*.dat}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Spellbound Software\\Airline Tycoon First Class\\1.0}}" + - "{{Game data/saves|Windows|{{p|game}}\\Savegame\\Game*.dat}}" Airmen: pageId: 63841 steam: 647740 Airon Ball: pageId: 63819 steam: 657490 -'AironBall: The Floating Lands': +"AironBall: The Floating Lands": pageId: 65084 steam: 663260 -'AironBall: The Loop': +"AironBall: The Loop": pageId: 66023 steam: 674820 Airplane Mode: @@ -6161,12 +6019,12 @@ Airplane Sky Voyage: Airport CEO: gog: 1597610706 gogSide: - - 1428657105 - - 1238330416 - 1116054340 - - 2027337642 + - 1238330416 + - 1428657105 - 1587865064 - 1992252315 + - 2027337642 pageId: 66828 steam: 673610 steamSide: @@ -6175,7 +6033,7 @@ Airport CEO: - 1844590 - 2555540 templates: - - '{{Game data/saves|Windows|{{p|appdata}}\Apoapsis Studios\Airport CEO\Saves\}}' + - "{{Game data/saves|Windows|{{p|appdata}}\\Apoapsis Studios\\Airport CEO\\Saves\\}}" Airport Contraband: pageId: 151379 steam: 1167820 @@ -6186,23 +6044,23 @@ Airport Firefighters - The Simulation: pageId: 47919 steam: 350530 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\VIS Games\AirportFirefighters2015}}' + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\VIS Games\\AirportFirefighters2015}}" Airport Madness 3D: pageId: 42924 steam: 445770 -'Airport Madness 3D: Volume 2': +"Airport Madness 3D: Volume 2": pageId: 76969 steam: 748610 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Big Fat Simulations Inc.\AM3D2}}' - - '{{Game data/saves|Windows|{{p|hkcu}}\Software\Big Fat Simulations Inc.\AM3D2}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Big Fat Simulations Inc.\\AM3D2}}" + - "{{Game data/saves|Windows|{{p|hkcu}}\\Software\\Big Fat Simulations Inc.\\AM3D2}}" Airport Madness 4: pageId: 47148 steam: 387850 -'Airport Madness: Time Machine': +"Airport Madness: Time Machine": pageId: 46400 steam: 402210 -'Airport Madness: World Edition': +"Airport Madness: World Edition": pageId: 47735 steam: 369290 Airport Master: @@ -6215,8 +6073,8 @@ Airport Simulator 2014: pageId: 14841 steam: 267600 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Airport Simulator 2014\system}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Airport Simulator 2014\airport simulator 2014}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Airport Simulator 2014\\system}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Airport Simulator 2014\\airport simulator 2014}}" Airport Simulator 2015: pageId: 48146 steam: 319780 @@ -6228,16 +6086,16 @@ Airport Tycoon 2: Airport Tycoon 3: pageId: 160099 templates: - - '{{Game data/config|Windows|{{P|game}}\data\config.txt}}' - - '{{Game data/saves|Windows|{{P|game}}\save}}' -'Airscape: The Fall of Gravity': + - "{{Game data/config|Windows|{{P|game}}\\data\\config.txt}}" + - "{{Game data/saves|Windows|{{P|game}}\\save}}" +"Airscape: The Fall of Gravity": pageId: 34934 steam: 317250 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Airscape\}}' - - '{{Game data/config|Linux|{{P|xdgconfighome}}/Airscape/}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Airscape\Local Storage\}}' - - '{{Game data/saves|Linux|{{P|xdgconfighome}}/Airscape/Local Storage/}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Airscape\\}}" + - "{{Game data/config|Linux|{{P|xdgconfighome}}/Airscape/}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Airscape\\Local Storage\\}}" + - "{{Game data/saves|Linux|{{P|xdgconfighome}}/Airscape/Local Storage/}}" Airship Asunder: pageId: 42185 steam: 474730 @@ -6247,14 +6105,14 @@ Airship Commander: Airship Dragoon: pageId: 49715 steam: 308380 -'Airships: Conquer the Skies': +"Airships: Conquer the Skies": gog: 1232664301 pageId: 35485 steam: 342560 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/saves|Windows|{{P|appdata}}\AirshipsGame\}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.airshipsgame/}}' + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\AirshipsGame\\}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.airshipsgame/}}" Airstrike HD: pageId: 44012 steam: 453980 @@ -6279,7 +6137,7 @@ Aka: pageId: 188531 steam: 1591450 templates: - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\Cosmo Gatto\Aka\save*}}' + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\Cosmo Gatto\\Aka\\save*}}" Aka Manto: pageId: 184208 steam: 1130620 @@ -6290,33 +6148,31 @@ Akai Katana Shin: pageId: 182436 steam: 2076220 templates: - - '{{Game data/config|Windows|{{p|game}}\AkaiKatanaShin.ini}}' - - '{{Game data/saves|Windows|{{p|appdata}}\AkaiKatanaShin\SYSTEM.DAT.bin}}' -'Akalabeth: World of Doom': + - "{{Game data/config|Windows|{{p|game}}\\AkaiKatanaShin.ini}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\AkaiKatanaShin\\SYSTEM.DAT.bin}}" +"Akalabeth: World of Doom": gog: 1207666073 pageId: 21721 templates: - - '{{Game data/saves|DOS|{{p|game}}\PLAYER.U0}}' + - "{{Game data/saves|DOS|{{p|game}}\\PLAYER.U0}}" Akane: gog: 1742114859 pageId: 98804 steam: 884260 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Ludic\Akane}}' - - '{{Game data/saves|Windows|{{P|hkcu}}\Software\Ludic\Akane}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Ludic\\Akane}}" + - "{{Game data/saves|Windows|{{P|hkcu}}\\Software\\Ludic\\Akane}}" Akane the Kunoichi: pageId: 50322 steam: 291130 templates: - - >- - {{Game - data/saves|Windows|{{p|USERPROFILE\Documents}}\SavedGames\AkaneTheKunoichi\AkaneTheKunoichi\AllPlayers\data.sav}} -'Akaneiro: Demon Hunters': + - "{{Game data/saves|Windows|{{p|USERPROFILE\\Documents}}\\SavedGames\\AkaneTheKunoichi\\AkaneTheKunoichi\\AllPlayers\\data.sav}}" +"Akaneiro: Demon Hunters": pageId: 8044 steam: 230310 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Spicy Horse\Akaneiro}}' -'Akash: Path of the Five': + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Spicy Horse\\Akaneiro}}" +"Akash: Path of the Five": pageId: 145013 steam: 1098370 Akda: @@ -6326,26 +6182,26 @@ Aker Fern: pageId: 161502 steam: 1344840 templates: - - '{{Game data/config|Windows| {{p|game}}\saves\ | {{p|appdata}}\RenPy\Akkerfern-1520714294\ }}' + - "{{Game data/config|Windows| {{p|game}}\\saves\\ | {{p|appdata}}\\RenPy\\Akkerfern-1520714294\\ }}" - "{{Game data/saves|Windows|{{p|game}}\\saves\\ | \t{{p|appdata}}\\RenPy\\Akkerfern-1520714294\\ }}" -'Akhenaten: Rule as Pharaoh': +"Akhenaten: Rule as Pharaoh": pageId: 75117 steam: 719160 -'Akiba''s Trip: Hellbound & Debriefed': +"Akiba's Trip: Hellbound & Debriefed": gog: 2042702760 pageId: 166544 steam: 1236780 templates: - - '{{Game data/saves|Windows|{{p|game}}\AkibaHD_Data\SaveData\{{p|uid}}\}}' -'Akiba''s Trip: Undead & Undressed': + - "{{Game data/saves|Windows|{{p|game}}\\AkibaHD_Data\\SaveData\\{{p|uid}}\\}}" +"Akiba's Trip: Undead & Undressed": gog: 2053169534 pageId: 25151 steam: 333980 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\AKIBA''S TRIP\config.dat|{{p|game}}\gamepad.ini}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\AKIBA''S TRIP\savedata}}' - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\333980\}}' - - '{{Game data/saves|GOG.com|{{p|localappdata}}\GOG.com\Galaxy\Applic.\53377098024699305\Storage\Shared\Files\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\AKIBA'S TRIP\\config.dat|{{p|game}}\\gamepad.ini}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\AKIBA'S TRIP\\savedata}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\333980\\}}" + - "{{Game data/saves|GOG.com|{{p|localappdata}}\\GOG.com\\Galaxy\\Applic.\\53377098024699305\\Storage\\Shared\\Files\\}}" Akihabara - Feel the Rhythm: pageId: 56120 steam: 565660 @@ -6361,41 +6217,41 @@ Akin Vol 2: Akuatica: pageId: 45473 steam: 401330 -'Akuto: Showdown': +"Akuto: Showdown": pageId: 40173 steam: 530130 Akuya: pageId: 55147 steam: 545490 -Al Emmo and the Lost Dutchman's Mine: +"Al Emmo and the Lost Dutchman's Mine": pageId: 50290 steam: 296850 templates: - - '{{Game data/config|Windows|{{p|USERPROFILE}}\Saved Games\Al Emmo and the Lost Dutchmans Mine (Steam)\}}' -Al Emmo's Postcards from Anozira: + - "{{Game data/config|Windows|{{p|USERPROFILE}}\\Saved Games\\Al Emmo and the Lost Dutchmans Mine (Steam)\\}}" +"Al Emmo's Postcards from Anozira": pageId: 47661 steam: 375020 -'Al-Qadim: The Genie''s Curse': +"Al-Qadim: The Genie's Curse": gog: 1441096843 pageId: 62258 steam: 1904640 templates: - - '{{Game data/saves|DOS|{{p|game}}\SAVEGAM*.DAT}}' + - "{{Game data/saves|DOS|{{p|game}}\\SAVEGAM*.DAT}}" Aladdin Chess Adventures: pageId: 93516 Aladdin Pinball: pageId: 151695 -Aladdin in Nasira's Revenge: +"Aladdin in Nasira's Revenge": pageId: 93537 templates: - - '{{Game data/config|Windows|{{p|HKLM}}\SOFTWARE\{{p|wow64}}\Disney Interactive\Aladdin\1.0\}}' - - '{{Game data/saves|Windows|{{p|game}}\slots.crd}}' + - "{{Game data/config|Windows|{{p|HKLM}}\\SOFTWARE\\{{p|wow64}}\\Disney Interactive\\Aladdin\\1.0\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\slots.crd}}" Aladdin’s Magic Carpet Racing: pageId: 93509 Aladin & the Enchanted Lamp: pageId: 90923 steam: 827100 -'Alaloth: Champions of the Four Kingdoms': +"Alaloth: Champions of the Four Kingdoms": gog: 1995405622 pageId: 137078 renamedFrom: @@ -6409,65 +6265,63 @@ Alan Wake: - 108726 - 268560 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Remedy\AlanWake\}}' - - '{{Game data/config|Epic Games Store|{{p|userprofile\Documents}}\Remedy\AlanWake_EGS_Version\}}' - - '{{Game data/config|GOG.com|{{p|userprofile\Documents}}\Remedy\AlanWake_GOG_Version\}}' - - '{{Game data/config|Microsoft Store|{{p|userprofile\Documents}}\Remedy\AlanWake_MS_Version\}}' - - '{{Game data/config|Steam|{{p|Steam}}/userdata/{{p|uid}}/108710/}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Remedy\AlanWake\}}' - - '{{Game data/saves|Epic Games Store|{{p|userprofile\Documents}}\Remedy\AlanWake_EGS_Version\}}' - - '{{Game data/saves|GOG.com|{{p|userprofile\Documents}}\Remedy\AlanWake_GOG_Version\}}' - - '{{Game data/saves|Microsoft Store|{{p|userprofile\Documents}}\Remedy\AlanWake_MS_Version\}}' - - '{{Game data/saves|Steam|{{p|Steam}}/userdata/{{p|uid}}/108710/}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Remedy\\AlanWake\\}}" + - "{{Game data/config|Epic Games Store|{{p|userprofile\\Documents}}\\Remedy\\AlanWake_EGS_Version\\}}" + - "{{Game data/config|GOG.com|{{p|userprofile\\Documents}}\\Remedy\\AlanWake_GOG_Version\\}}" + - "{{Game data/config|Microsoft Store|{{p|userprofile\\Documents}}\\Remedy\\AlanWake_MS_Version\\}}" + - "{{Game data/config|Steam|{{p|Steam}}/userdata/{{p|uid}}/108710/}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Remedy\\AlanWake\\}}" + - "{{Game data/saves|Epic Games Store|{{p|userprofile\\Documents}}\\Remedy\\AlanWake_EGS_Version\\}}" + - "{{Game data/saves|GOG.com|{{p|userprofile\\Documents}}\\Remedy\\AlanWake_GOG_Version\\}}" + - "{{Game data/saves|Microsoft Store|{{p|userprofile\\Documents}}\\Remedy\\AlanWake_MS_Version\\}}" + - "{{Game data/saves|Steam|{{p|Steam}}/userdata/{{p|uid}}/108710/}}" Alan Wake II: pageId: 173571 renamedFrom: - Alan Wake 2 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Remedy\AlanWake2\renderer.ini}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\Remedy\AlanWake2\{{P|uid}}\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\Remedy\\AlanWake2\\renderer.ini}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Remedy\\AlanWake2\\{{P|uid}}\\}}" Alan Wake Remastered: pageId: 171319 templates: - - '{{Game data/config|Windows|{{P|USERPROFILE}}\Documents\Remedy\AlanWakeRemastered\}}' - - '{{Game data/saves|Epic Games Store|{{p|userprofile\Documents}}\Remedy\AlanWakeRemastered\}}' -Alan Wake's American Nightmare: + - "{{Game data/config|Windows|{{P|USERPROFILE}}\\Documents\\Remedy\\AlanWakeRemastered\\}}" + - "{{Game data/saves|Epic Games Store|{{p|userprofile\\Documents}}\\Remedy\\AlanWakeRemastered\\}}" +"Alan Wake's American Nightmare": gog: 1207659038 pageId: 7197 steam: 202750 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Remedy\AmericanNightmare\}}' - - '{{Game data/config|Epic Games Launcher|{{p|userprofile\Documents}}\Remedy\AmericanNightmare_EGS_Version\}}' - - '{{Game data/config|GOG.com|{{p|userprofile\Documents}}\Remedy\AmericanNightmare_GOG_Version\}}' - - '{{Game data/config|Microsoft Store|{{p|userprofile\Documents}}\Remedy\AmericanNightmare_MS_Version\}}' - - '{{Game data/config|Steam|{{p|Steam}}\userdata\{{p|uid}}\202750\remote\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Remedy\AmericanNightmare\}}' - - '{{Game data/saves|Epic Games Launcher|{{p|userprofile\Documents}}\Remedy\AmericanNightmare_EGS_Version\}}' - - '{{Game data/saves|GOG.com|{{p|userprofile\Documents}}\Remedy\AmericanNightmare_GOG_Version\}}' - - '{{Game data/saves|Microsoft Store|{{p|userprofile\Documents}}\Remedy\AmericanNightmare_MS_Version\}}' - - '{{Game data/saves|Steam|{{p|Steam}}\userdata\{{p|uid}}\202750\remote\}}' -Alan's Attitude: + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Remedy\\AmericanNightmare\\}}" + - "{{Game data/config|Epic Games Launcher|{{p|userprofile\\Documents}}\\Remedy\\AmericanNightmare_EGS_Version\\}}" + - "{{Game data/config|GOG.com|{{p|userprofile\\Documents}}\\Remedy\\AmericanNightmare_GOG_Version\\}}" + - "{{Game data/config|Microsoft Store|{{p|userprofile\\Documents}}\\Remedy\\AmericanNightmare_MS_Version\\}}" + - "{{Game data/config|Steam|{{p|Steam}}\\userdata\\{{p|uid}}\\202750\\remote\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Remedy\\AmericanNightmare\\}}" + - "{{Game data/saves|Epic Games Launcher|{{p|userprofile\\Documents}}\\Remedy\\AmericanNightmare_EGS_Version\\}}" + - "{{Game data/saves|GOG.com|{{p|userprofile\\Documents}}\\Remedy\\AmericanNightmare_GOG_Version\\}}" + - "{{Game data/saves|Microsoft Store|{{p|userprofile\\Documents}}\\Remedy\\AmericanNightmare_MS_Version\\}}" + - "{{Game data/saves|Steam|{{p|Steam}}\\userdata\\{{p|uid}}\\202750\\remote\\}}" +"Alan's Attitude": pageId: 148850 steam: 1158990 -Alan's Automaton Workshop: +"Alan's Automaton Workshop": pageId: 174463 steam: 1289990 templates: - - >- - {{Game data/config|Windows|{{P|userprofile\appdata\locallow}}\Laputa Labs\Alan's Automaton - Workshop\GameSettings.xml|{{P|hkcu}}\Software\Laputa Labs\Alan's Automaton Workshop\}} - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Laputa Labs\Alan''s Automaton Workshop\}}' -'Alan: Rift Breakers': + - "{{Game data/config|Windows|{{P|userprofile\\appdata\\locallow}}\\Laputa Labs\\Alan's Automaton Workshop\\GameSettings.xml|{{P|hkcu}}\\Software\\Laputa Labs\\Alan's Automaton Workshop\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Laputa Labs\\Alan's Automaton Workshop\\}}" +"Alan: Rift Breakers": pageId: 80442 steam: 781120 Alarameth TD: pageId: 47529 steam: 377280 -'Alarm for Cobra 11: Nitro': +"Alarm for Cobra 11: Nitro": pageId: 181354 templates: - - '{{Game data/config|Windows|{{p|game}}\Config.ini
{{p|game}}\CtrlMappings.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\C11-Saves\}}' + - "{{Game data/config|Windows|{{p|game}}\\Config.ini
{{p|game}}\\CtrlMappings.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\C11-Saves\\}}" Alaska: pageId: 82760 steam: 800490 @@ -6476,49 +6330,47 @@ Alaskan Road Truckers: renamedFrom: - Alaskan Truck Simulator steam: 849100 -'Alba: A Wildlife Adventure': +"Alba: A Wildlife Adventure": gog: 1892014768 pageId: 165256 steam: 1337010 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\SOFTWARE\ustwo games\Alba\}}' - - '{{Game data/saves|Windows|{{p|USERPROFILE}}\AppData\LocalLow\ustwo games\Alba}}' - - >- - {{Game data/saves|OS X|{{p|osxhome}}/Library/Containers/Alba/Data/Library/Application - Support/com.ustwo.alba/SaveFiles}} -'Albedo: Eyes from Outer Space': + - "{{Game data/config|Windows|{{P|hkcu}}\\SOFTWARE\\ustwo games\\Alba\\}}" + - "{{Game data/saves|Windows|{{p|USERPROFILE}}\\AppData\\LocalLow\\ustwo games\\Alba}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Containers/Alba/Data/Library/Application Support/com.ustwo.alba/SaveFiles}}" +"Albedo: Eyes from Outer Space": gog: 1428071176 pageId: 24330 steam: 277520 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\z4g0\Albedo\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Preferences/unity.z4g0.Albedo.plist}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\z4g0\\Albedo\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Preferences/unity.z4g0.Albedo.plist}}" Albedon Wars: pageId: 136883 steam: 867470 Albert Mort - Desert Heat: pageId: 65882 steam: 670780 -'Albert and Otto: The Adventure Begins': +"Albert and Otto: The Adventure Begins": pageId: 45868 steam: 368590 -'Albino Lullaby: Episode 1': +"Albino Lullaby: Episode 1": pageId: 46468 steam: 355860 Albion: gog: 1436955815 pageId: 32293 templates: - - '{{Game data/config|DOS|{{p|game}}\setup.ini}}' - - '{{Game data/saves|DOS|{{p|game}}\SAVES}}' + - "{{Game data/config|DOS|{{p|game}}\\setup.ini}}" + - "{{Game data/saves|DOS|{{p|game}}\\SAVES}}" Albion Online: pageId: 91074 steam: 761890 -'Alcatraz: Prison Escape': +"Alcatraz: Prison Escape": pageId: 187057 templates: - - '{{Game data/config|Windows|{{p|game}}/autoexec.fg}}' -'Alcatraz: VR Escape Room': + - "{{Game data/config|Windows|{{p|game}}/autoexec.fg}}" +"Alcatraz: VR Escape Room": pageId: 55556 steam: 573270 Alchemage: @@ -6531,7 +6383,7 @@ Alchemia: pageId: 112412 steam: 932330 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\SOFTWARE\Matthew Brown\Alchemia}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\SOFTWARE\\Matthew Brown\\Alchemia}}" Alchemic Cutie: pageId: 109708 steam: 913720 @@ -6566,13 +6418,13 @@ Alchemist Penguin: Alchemist Simulator: pageId: 142198 steam: 1105040 -Alchemist's Awakening: +"Alchemist's Awakening": pageId: 44058 steam: 431450 templates: - - '{{Game data/config|Windows|{{p|appdata}}\.alchemist\}}' - - '{{Game data/saves|Windows|{{p|appdata}}\.alchemist\saves}}' -Alchemist's Castle: + - "{{Game data/config|Windows|{{p|appdata}}\\.alchemist\\}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\.alchemist\\saves}}" +"Alchemist's Castle": pageId: 74265 steam: 726340 Alchemy: @@ -6584,37 +6436,35 @@ Alchemy Garden: pageId: 126251 steam: 935400 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\AlchemyGardenUE\Saved\SaveGames\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\AlchemyGardenUE\Saved\SaveGames\}}' -'Alchemy Mysteries: Prague Legends': + - "{{Game data/config|Windows|{{p|localappdata}}\\AlchemyGardenUE\\Saved\\SaveGames\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\AlchemyGardenUE\\Saved\\SaveGames\\}}" +"Alchemy Mysteries: Prague Legends": pageId: 26488 steam: 326190 templates: - - '{{Game data/config|Windows|{{p|game}}\settings.cfg|{{p|appdata}}\Jetdogs Studios\Alchemy\options.cfg}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Jetdogs Studios\Alchemy\}}' + - "{{Game data/config|Windows|{{p|game}}\\settings.cfg|{{p|appdata}}\\Jetdogs Studios\\Alchemy\\options.cfg}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Jetdogs Studios\\Alchemy\\}}" Alchemy Story: pageId: 132830 steam: 1040630 templates: - - '{{Game data/saves|Windows|{{p|localappdata}}\AlchemyStory\Saved\SaveGames}}' + - "{{Game data/saves|Windows|{{p|localappdata}}\\AlchemyStory\\Saved\\SaveGames}}" Alchemy of Castle: pageId: 91564 steam: 832490 Alchemyland: pageId: 66146 steam: 610670 -'Alcyone: The Last City': +"Alcyone: The Last City": pageId: 135951 steam: 1074830 -Alder's Blood: +"Alder's Blood": gog: 1164879863 pageId: 89575 steam: 820020 templates: - - >- - {{Game data/config|Windows|{{P|userprofile}}\AppData\LocalLow\Shockwork Games\Alder's - Blood\config.data|{{P|hkcu}}\Software\Shockwork Games\Alder's Blood\}} - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Shockwork Games\Alder''s Blood\Saves\}}' + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Shockwork Games\\Alder's Blood\\config.data|{{P|hkcu}}\\Software\\Shockwork Games\\Alder's Blood\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Shockwork Games\\Alder's Blood\\Saves\\}}" Aldred Knight: pageId: 155835 steam: 1215520 @@ -6630,66 +6480,58 @@ Alea Jacta Est: - 329551 - 397380 - 397381 -Aleesha's Tower: +"Aleesha's Tower": pageId: 144618 steam: 1130590 -Alekhine's Gun: +"Alekhine's Gun": gog: 1242327312 pageId: 31594 steam: 406720 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\My - Games\AlekhinesGun\settings.scg|{{p|userprofile\Documents}}\My Games\AlekhinesGun\smersh.shadvs}} - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\AlekhinesGun\Profiles\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\AlekhinesGun\\settings.scg|{{p|userprofile\\Documents}}\\My Games\\AlekhinesGun\\smersh.shadvs}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\AlekhinesGun\\Profiles\\}}" Alekon: pageId: 173784 steam: 1479390 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Alekon\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\Alekon\Saved\SaveGame\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\Alekon\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Alekon\\Saved\\SaveGame\\}}" Aleph Null: pageId: 41607 steam: 511420 -'Alert: Sector 8': +"Alert: Sector 8": pageId: 39852 templates: - - >- - {{Game - data/config|Windows|{{p|localappdata}}\CIAS8PC\Saved\Config\WindowsNoEditor\|{{p|localappdata}}\CIAS8PC\Saved\SaveGames\settings.sav}} - - '{{Game data/saves|Windows|{{p|localappdata}}\CIAS8PC\Saved\SaveGames\GameSave.sav}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\CIAS8PC\\Saved\\Config\\WindowsNoEditor\\|{{p|localappdata}}\\CIAS8PC\\Saved\\SaveGames\\settings.sav}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\CIAS8PC\\Saved\\SaveGames\\GameSave.sav}}" Ales Dash: pageId: 95403 steam: 865130 -'Aleshar: The World of Ice': +"Aleshar: The World of Ice": pageId: 75833 templates: - - '{{Game data/config|DOS|{{p|game}}\SBOARD.CFG}}' - - '{{Game data/saves|DOS|{{p|game}}\*.SAV}}' + - "{{Game data/config|DOS|{{p|game}}\\SBOARD.CFG}}" + - "{{Game data/saves|DOS|{{p|game}}\\*.SAV}}" Alex Builds His Farm: pageId: 88449 templates: - - '{{Game data/config|Windows|{{p|windir}}\UbiSoft\ubi.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\Gamedata\SaveGame}}' -'Alex Hunter: Lord of the Mind': + - "{{Game data/config|Windows|{{p|windir}}\\UbiSoft\\ubi.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\Gamedata\\SaveGame}}" +"Alex Hunter: Lord of the Mind": pageId: 40503 steam: 1120800 Alex Kidd in Miracle World DX: pageId: 161060 steam: 1333470 templates: - - '{{Game data/saves|Windows|{{p|userprofile\AppData\LocalLow}}\Merge Games\Alex Kidd in Miracle World DX\savedata}}' + - "{{Game data/saves|Windows|{{p|userprofile\\AppData\\LocalLow}}\\Merge Games\\Alex Kidd in Miracle World DX\\savedata}}" Alex Kidd in the Enchanted Castle: pageId: 30854 steam: 34283 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\SEGA Mega Drive - Classics\setup.dat|{{p|userprofile\Documents}}\SEGA Genesis Classics\setup.dat}} - - >- - {{Game data/saves|Windows|{{p|userprofile\Documents}}\SEGA Mega Drive - Classics\0011\|{{p|userprofile\Documents}}\SEGA Genesis Classics\0011\}} -Alexa's Wild Night: + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\SEGA Mega Drive Classics\\setup.dat|{{p|userprofile\\Documents}}\\SEGA Genesis Classics\\setup.dat}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\SEGA Mega Drive Classics\\0011\\|{{p|userprofile\\Documents}}\\SEGA Genesis Classics\\0011\\}}" +"Alexa's Wild Night": pageId: 76299 steam: 457370 Alexander: @@ -6703,10 +6545,10 @@ Alexio: Alfelus: pageId: 151321 steam: 1126590 -Alfonzo's Arctic Adventure: +"Alfonzo's Arctic Adventure": pageId: 150297 steam: 1170170 -'Alfred Hitchcock: Vertigo': +"Alfred Hitchcock: Vertigo": gog: 2143043899 pageId: 169967 steam: 1449320 @@ -6720,40 +6562,40 @@ Algo Bot: pageId: 79358 steam: 286300 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Fishing Cactus\Algobot\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Preferences/unity.FishingCactus.Algobot.plist}}' - - '{{Game data/saves|Windows|{{p|USERPROFILE}}\AppData\LocalLow\Fishing Cactus\Algobot\Game\Default\save.bin}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Fishing Cactus\\Algobot\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Preferences/unity.FishingCactus.Algobot.plist}}" + - "{{Game data/saves|Windows|{{p|USERPROFILE}}\\AppData\\LocalLow\\Fishing Cactus\\Algobot\\Game\\Default\\save.bin}}" Algorithm: pageId: 74131 steam: 703540 Algotica - Iteration 1: pageId: 58840 steam: 593330 -Alia's Carnival!: +"Alia's Carnival!": pageId: 153244 renamedFrom: - - ALIA's CARNIVAL! + - "ALIA's CARNIVAL!" steam: 1094530 -Alia's Carnival! Flowering Sky: +"Alia's Carnival! Flowering Sky": pageId: 165026 Alias: pageId: 59305 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Acclaim\Alias}}' - - '{{Game data/saves|Windows|{{P|appdata}}\Acclaim Entertainment\Alias}}' -'Alias: Underground': + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Acclaim\\Alias}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\Acclaim Entertainment\\Alias}}" +"Alias: Underground": pageId: 161483 templates: - - '{{Game data/config|Windows|{{P|game}}home\Trimorph\client\browser.cfg}}' - - '{{Game data/saves|Windows|{{P|game}}home\Trimorph\client\gameProperties.cfg}}' + - "{{Game data/config|Windows|{{P|game}}home\\Trimorph\\client\\browser.cfg}}" + - "{{Game data/saves|Windows|{{P|game}}home\\Trimorph\\client\\gameProperties.cfg}}" Alice - Behind the Mirror: pageId: 91781 steam: 835700 Alice Greenfingers: pageId: 123139 templates: - - '{{Game data/config|Windows|{{p|game}}\settings.bin}}' - - '{{Game data/saves|Windows|{{p|game}}\resume.bin}}' + - "{{Game data/config|Windows|{{p|game}}\\settings.bin}}" + - "{{Game data/saves|Windows|{{p|game}}\\resume.bin}}" Alice In VR: pageId: 123756 steam: 829610 @@ -6764,8 +6606,8 @@ Alice Mystery Garden: pageId: 78184 steam: 751300 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\AliceMysteryGarden\Saved\Config\WindowsNoEditor}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\AliceMysteryGarden\Saved\SaveGames}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\AliceMysteryGarden\\Saved\\Config\\WindowsNoEditor}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\AliceMysteryGarden\\Saved\\SaveGames}}" Alice Sisters: pageId: 176821 steam: 1246540 @@ -6774,8 +6616,8 @@ Alice VR: pageId: 51467 steam: 513320 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\ALICE\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\ALICE\Saved\SaveGames}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\ALICE\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\ALICE\\Saved\\SaveGames}}" Alice and The Magical Dragons: pageId: 169699 Alice and The Magical Islands: @@ -6790,76 +6632,76 @@ Alice in Stardom: pageId: 132216 steam: 1054560 templates: - - '{{Game data/config|Windows|{{p|game}}\renpy\config.py}}' - - '{{Game data/saves|Windows|{{P|appdata}}\renpy\AliceinStardom-1551500018\*.save|{{p|game}}\game\saves\*.save}}' + - "{{Game data/config|Windows|{{p|game}}\\renpy\\config.py}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\renpy\\AliceinStardom-1551500018\\*.save|{{p|game}}\\game\\saves\\*.save}}" Alice in Wonderland: pageId: 33992 steam: 316030 templates: - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Disney Interactive Studios\Alice\}}' + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Disney Interactive Studios\\Alice\\}}" Alice in Wonderland - 3D Labyrinth Game: pageId: 95475 steam: 867130 Alice in Wonderland - Hidden Objects: pageId: 88101 steam: 812110 -Alice's Adventures. Hidden Object: +"Alice's Adventures. Hidden Object": pageId: 92325 steam: 839670 -Alice's Jigsaw. Wonderland Chronicles: +"Alice's Jigsaw. Wonderland Chronicles": pageId: 132379 steam: 1034380 -Alice's Jigsaw. Wonderland Chronicles 2: +"Alice's Jigsaw. Wonderland Chronicles 2": pageId: 135413 steam: 1034390 -Alice's Mom's Rescue: +"Alice's Mom's Rescue": pageId: 46566 steam: 399260 -Alice's Patchwork: +"Alice's Patchwork": pageId: 44329 steam: 444280 -Alice's Patchworks 2: +"Alice's Patchworks 2": pageId: 51559 steam: 523160 -'Alice: Madness Returns': +"Alice: Madness Returns": pageId: 1863 steam: 19680 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Alice Madness Returns\AliceGame\Config\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Alice Madness Returns\AliceGame\CheckPoint\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Alice Madness Returns\\AliceGame\\Config\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Alice Madness Returns\\AliceGame\\CheckPoint\\}}" Alicemare: pageId: 53662 steam: 524850 templates: - - '{{Game data/config|Windows|{{p|game}}\System\Game.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\Save\SaveData*.sav | {{p|game}}\Save\System.sav}}' + - "{{Game data/config|Windows|{{p|game}}\\System\\Game.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\Save\\SaveData*.sav | {{p|game}}\\Save\\System.sav}}" Alicia Griffith - Lakeside Murder: pageId: 55027 steam: 569380 Alicia Online: pageId: 175231 -'Alicia Quatermain 2: The Stone of Fate': +"Alicia Quatermain 2: The Stone of Fate": pageId: 99228 steam: 667040 -'Alicia Quatermain 3: The Mystery of the Flaming Gold': +"Alicia Quatermain 3: The Mystery of the Flaming Gold": pageId: 123848 steam: 818030 -'Alicia Quatermain 4: Da Vinci and the Time Machine': +"Alicia Quatermain 4: Da Vinci and the Time Machine": pageId: 150101 steam: 1020080 -'Alicia Quatermain: Secrets of the Lost Treasures': +"Alicia Quatermain: Secrets of the Lost Treasures": pageId: 67932 steam: 646470 -'Alien Arena: Warriors of Mars': +"Alien Arena: Warriors of Mars": pageId: 66291 steam: 629540 Alien Attack in Space: pageId: 34944 steam: 391310 -'Alien Attack: Pocket Edition': +"Alien Attack: Pocket Edition": pageId: 102343 steam: 896400 -'Alien Blast: The Encounter': +"Alien Blast: The Encounter": pageId: 185651 Alien Blitz: pageId: 43119 @@ -6868,50 +6710,50 @@ Alien Breed: gog: 1207658988 pageId: 7237 templates: - - '{{Game data/saves|Windows|GOG:
{{p|userprofile\Documents}}\My Games\UnrealEngine3\AlienBreedEp1Game\SaveData\}}' -'Alien Breed 2: Assault': + - "{{Game data/saves|Windows|GOG:
{{p|userprofile\\Documents}}\\My Games\\UnrealEngine3\\AlienBreedEp1Game\\SaveData\\}}" +"Alien Breed 2: Assault": gog: 1786995757 pageId: 12496 steam: 22650 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\UnrealEngine3\AlienBreed2AssaultGame\Config\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\UnrealEngine3\AlienBreed2AssaultGame\SaveData\}}' -'Alien Breed 3: Descent': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\UnrealEngine3\\AlienBreed2AssaultGame\\Config\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\UnrealEngine3\\AlienBreed2AssaultGame\\SaveData\\}}" +"Alien Breed 3: Descent": gog: 1743464065 pageId: 12498 steam: 22670 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\UnrealEngine3\AlienBreed3DescentGame\Config\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\UnrealEngine3\AlienBreed3DescentGame\SaveData\}}' -'Alien Breed: Impact': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\UnrealEngine3\\AlienBreed3DescentGame\\Config\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\UnrealEngine3\\AlienBreed3DescentGame\\SaveData\\}}" +"Alien Breed: Impact": gog: 1905791638 pageId: 12494 steam: 22610 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\UnrealEngine3\AlienBreedEp1Game\Config\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\UnrealEngine3\AlienBreedEp1Game\SaveData\}}' -'Alien Breed: Tower Assault': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\UnrealEngine3\\AlienBreedEp1Game\\Config\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\UnrealEngine3\\AlienBreedEp1Game\\SaveData\\}}" +"Alien Breed: Tower Assault": gog: 1207658988 pageId: 7241 templates: - - '{{Game data/config|DOS|{{p|game}}\tower\ta.cfg}}' - - '{{Game data/saves|DOS|{{p|game}}\tower\highscores.dat}}' + - "{{Game data/config|DOS|{{p|game}}\\tower\\ta.cfg}}" + - "{{Game data/saves|DOS|{{p|game}}\\tower\\highscores.dat}}" Alien Bubble Destroyer: pageId: 79830 steam: 779310 Alien Cabal: pageId: 31359 templates: - - '{{Game data/config|DOS|{{p|game}}\ACABAL.CFG}}' - - '{{Game data/config|Windows|{{p|game}}\Acabal.ini}}' - - '{{Game data/saves|DOS|{{p|game}}\SAVE****.ACG}}' - - '{{Game data/saves|Windows|{{p|game}}\AC95****.ACG}}' + - "{{Game data/config|DOS|{{p|game}}\\ACABAL.CFG}}" + - "{{Game data/config|Windows|{{p|game}}\\Acabal.ini}}" + - "{{Game data/saves|DOS|{{p|game}}\\SAVE****.ACG}}" + - "{{Game data/saves|Windows|{{p|game}}\\AC95****.ACG}}" Alien Carnage: pageId: 13253 steam: 358280 templates: - - '{{Game data/config|DOS|{{p|game}}\HARRY.CFG}}' - - '{{Game data/saves|DOS|{{p|game}}\SLOT.*}}' + - "{{Game data/config|DOS|{{p|game}}\\HARRY.CFG}}" + - "{{Game data/saves|DOS|{{p|game}}\\SLOT.*}}" Alien Cow Farm: pageId: 136743 steam: 1036620 @@ -6937,8 +6779,8 @@ Alien Hallway: pageId: 14978 steam: 98900 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Sigma Team\Alien Hallway\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Sigma Team\Alien Hallway\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Sigma Team\\Alien Hallway\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Sigma Team\\Alien Hallway\\}}" Alien Hallway 2: pageId: 72740 steam: 656450 @@ -6975,7 +6817,7 @@ Alien Invasion 3d: Alien Invasion Tower Defense: pageId: 52556 steam: 547880 -'Alien Jelly: Food For Thought!': +"Alien Jelly: Food For Thought!": pageId: 144558 steam: 984990 Alien Kingdom: @@ -6987,11 +6829,11 @@ Alien League: Alien Legacy: pageId: 17026 templates: - - '{{Game data/saves|DOS|{{p|game}}\SAVES}}' -'Alien Logic: A Skyrealms of Jorune Adventure': + - "{{Game data/saves|DOS|{{p|game}}\\SAVES}}" +"Alien Logic: A Skyrealms of Jorune Adventure": pageId: 74736 templates: - - '{{Game data/saves|DOS|{{p|game}}\SAVE**.GAM|{{p|game}}\GAMES.SAV}}' + - "{{Game data/saves|DOS|{{p|game}}\\SAVE**.GAM|{{p|game}}\\GAMES.SAV}}" Alien Mayhem: pageId: 78180 steam: 714060 @@ -7002,8 +6844,8 @@ Alien Nations: gog: 1207658717 pageId: 7326 templates: - - '{{Game data/config|Windows|{{p|game}}\Savegames\an.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\Savegames}}' + - "{{Game data/config|Windows|{{p|game}}\\Savegames\\an.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\Savegames}}" Alien Planet: pageId: 76923 steam: 740450 @@ -7011,17 +6853,14 @@ Alien Rage - Unlimited: pageId: 10667 steam: 217920 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\My - Games\AlienRage\SinglePlayer\AFEARGame\Config\|{{p|userprofile\Documents}}\My - Games\AlienRage\Multiplayer\ARageMPGame\Config\}} - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\AlienRage\SinglePlayer\AFEARGame\SaveData\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\AlienRage\\SinglePlayer\\AFEARGame\\Config\\|{{p|userprofile\\Documents}}\\My Games\\AlienRage\\Multiplayer\\ARageMPGame\\Config\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\AlienRage\\SinglePlayer\\AFEARGame\\SaveData\\}}" Alien Rampage: gog: 1991056046 pageId: 73772 steam: 516440 templates: - - '{{Game data/saves|DOS|{{p|game}}\RAMPAGE.CFG}}' + - "{{Game data/saves|DOS|{{p|game}}\\RAMPAGE.CFG}}" Alien Removal Division: pageId: 191396 steam: 1768550 @@ -7039,22 +6878,22 @@ Alien Shooter: pageId: 7230 steam: 33100 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\SigmaTeam\AlienShooter\|{{p|game}}\AlienShooter.cfg}}' - - '{{Game data/saves|Windows|{{p|hkcu}}\Software\SigmaTeam\AlienShooter\{{p|uid}}}}' -'Alien Shooter 2: Conscription': + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\SigmaTeam\\AlienShooter\\|{{p|game}}\\AlienShooter.cfg}}" + - "{{Game data/saves|Windows|{{p|hkcu}}\\Software\\SigmaTeam\\AlienShooter\\{{p|uid}}}}" +"Alien Shooter 2: Conscription": pageId: 40777 steam: 211010 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\AlienShooter2 Conscription Saves\Saves\_global.dat}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\AlienShooter2 Conscription Saves\Saves\}}' -'Alien Shooter 2: Reloaded': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\AlienShooter2 Conscription Saves\\Saves\\_global.dat}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\AlienShooter2 Conscription Saves\\Saves\\}}" +"Alien Shooter 2: Reloaded": gog: 1207658711 pageId: 6689 steam: 33120 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\AlienShooter2 Reloaded Saves\Saves\_global.dat}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\AlienShooter2 Reloaded Saves\Saves\}}' -'Alien Shooter 2: The Legend': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\AlienShooter2 Reloaded Saves\\Saves\\_global.dat}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\AlienShooter2 Reloaded Saves\\Saves\\}}" +"Alien Shooter 2: The Legend": pageId: 142056 renamedFrom: - Alien Shooter 2 - The Legend @@ -7065,13 +6904,13 @@ Alien Shooter TD: Alien Shooter in Space Cradle - Virtual Reality: pageId: 140999 steam: 1110870 -'Alien Shooter: Revisited': +"Alien Shooter: Revisited": pageId: 15089 steam: 33110 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\AlienShooter Revisited Saves\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\AlienShooter Revisited Saves\}}' -'Alien Shooter: Vengeance': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\AlienShooter Revisited Saves\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\AlienShooter Revisited Saves\\}}" +"Alien Shooter: Vengeance": pageId: 60041 steam: 6290 Alien Simulator: @@ -7080,18 +6919,14 @@ Alien Simulator: Alien Sky: pageId: 174385 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\KraiSoft\Alien Sky}}' - - '{{Game data/saves|Windows|{{P|game}}\MP.cdf|{{P|game}}\Save.cdf}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\KraiSoft\\Alien Sky}}" + - "{{Game data/saves|Windows|{{P|game}}\\MP.cdf|{{P|game}}\\Save.cdf}}" Alien Soldier: pageId: 30847 steam: 71116 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\SEGA Mega Drive - Classics\setup.dat|{{p|userprofile\Documents}}\SEGA Genesis Classics\setup.dat}} - - >- - {{Game data/saves|Windows|{{p|userprofile\Documents}}\SEGA Mega Drive - Classics\0034\|{{p|userprofile\Documents}}\SEGA Genesis Classics\0034\}} + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\SEGA Mega Drive Classics\\setup.dat|{{p|userprofile\\Documents}}\\SEGA Genesis Classics\\setup.dat}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\SEGA Mega Drive Classics\\0034\\|{{p|userprofile\\Documents}}\\SEGA Genesis Classics\\0034\\}}" Alien Spidy: pageId: 40640 steam: 207000 @@ -7105,29 +6940,25 @@ Alien Storm: pageId: 30740 steam: 34315 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\SEGA Mega Drive - Classics\setup.dat|{{p|userprofile\Documents}}\SEGA Genesis Classics\setup.dat}} - - >- - {{Game data/saves|Windows|{{p|userprofile\Documents}}\SEGA Mega Drive - Classics\0023\|{{p|userprofile\Documents}}\SEGA Genesis Classics\0023\}} + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\SEGA Mega Drive Classics\\setup.dat|{{p|userprofile\\Documents}}\\SEGA Genesis Classics\\setup.dat}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\SEGA Mega Drive Classics\\0023\\|{{p|userprofile\\Documents}}\\SEGA Genesis Classics\\0023\\}}" Alien Swarm: pageId: 193 steam: 630 templates: - - '{{Game data/config|Windows|{{p|game}}\swarm\cfg\}}' -'Alien Swarm: Reactive Drop': + - "{{Game data/config|Windows|{{p|game}}\\swarm\\cfg\\}}" +"Alien Swarm: Reactive Drop": pageId: 56286 steam: 563560 templates: - - '{{Game data/config|Windows|{{p|game}}\reactivedrop\cfg\}}' + - "{{Game data/config|Windows|{{p|game}}\\reactivedrop\\cfg\\}}" Alien Syndrome: pageId: 30751 Alien Trilogy: pageId: 61902 templates: - - '{{Game data/config|DOS|{{p|game}}\TRILOGY.CFG}}' - - '{{Game data/saves|DOS|{{p|game}}\TRIL.SG*}}' + - "{{Game data/config|DOS|{{p|game}}\\TRILOGY.CFG}}" + - "{{Game data/saves|DOS|{{p|game}}\\TRIL.SG*}}" Alien Worms Invasion: pageId: 88019 steam: 805710 @@ -7140,7 +6971,7 @@ Alien grenadier: Alien invasion: pageId: 138783 steam: 1087040 -'Alien: Isolation': +"Alien: Isolation": gog: 1744178250 gogSide: - 1080028185 @@ -7155,14 +6986,14 @@ Alien invasion: pageId: 17716 steam: 214490 templates: - - '{{Game data/config|Steam|{{p|steam}}\userdata\{{p|uid}}\214490\local}}' - - '{{Game data/config|GOG.com|{{p|userprofile\Documents}}\My Games\Alien Isolation\}}' - - '{{Game data/config|Epic Games Launcher|{{P|localappdata}}\The Creative Assembly\Alien Isolation\}}' - - '{{Game data/config|Linux|{{P|xdgconfighome}}/feral-interactive/AlienIsolation}}' - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\214490\remote}}' - - '{{Game data/saves|GOG.com|{{p|userprofile\Documents}}\My Games\Alien Isolation\}}' - - '{{Game data/saves|Epic Games Launcher|{{P|localappdata}}\The Creative Assembly\Alien Isolation\}}' - - '{{Game data/saves|Linux|{{P|xdgconfighome}}/feral-interactive/AlienIsolation/Steam Saves ({{p|uid}})}}' + - "{{Game data/config|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\214490\\local}}" + - "{{Game data/config|GOG.com|{{p|userprofile\\Documents}}\\My Games\\Alien Isolation\\}}" + - "{{Game data/config|Epic Games Launcher|{{P|localappdata}}\\The Creative Assembly\\Alien Isolation\\}}" + - "{{Game data/config|Linux|{{P|xdgconfighome}}/feral-interactive/AlienIsolation}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\214490\\remote}}" + - "{{Game data/saves|GOG.com|{{p|userprofile\\Documents}}\\My Games\\Alien Isolation\\}}" + - "{{Game data/saves|Epic Games Launcher|{{P|localappdata}}\\The Creative Assembly\\Alien Isolation\\}}" + - "{{Game data/saves|Linux|{{P|xdgconfighome}}/feral-interactive/AlienIsolation/Steam Saves ({{p|uid}})}}" AlienAfterlife: pageId: 127277 steam: 1014570 @@ -7178,7 +7009,7 @@ Aliens Are Rude!: Aliens Attack VR: pageId: 135507 steam: 932190 -Aliens Don't Exist: +"Aliens Don't Exist": pageId: 125286 steam: 989340 Aliens Go Home Run: @@ -7201,28 +7032,28 @@ Aliens versus Predator: pageId: 8248 steam: 3730 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Rebellion\AvP Classic\video.cfg}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Rebellion\AvP Classic\User_Profiles}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Rebellion\\AvP Classic\\video.cfg}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Rebellion\\AvP Classic\\User_Profiles}}" Aliens versus Predator 2: pageId: 754 templates: - - '{{Game data/config|Windows|{{p|game}}\autoexec.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\Save\Player_0}}' + - "{{Game data/config|Windows|{{p|game}}\\autoexec.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\Save\\Player_0}}" Aliens vs. Predator (2010): pageId: 4437 steam: 10680 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\AliensVsPredator\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\AliensVsPredator\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\AliensVsPredator\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\AliensVsPredator\\}}" Aliens&Asteroids: pageId: 66844 steam: 661030 -'Aliens: A Comic Book Adventure': +"Aliens: A Comic Book Adventure": pageId: 162191 templates: - - '{{Game data/config|DOS|C:\ALIENS.CFG|C:\ALIENS1.CFG}}' - - '{{Game data/saves|DOS|{{p|game}}\*AL95.SAV}}' -'Aliens: Colonial Marines': + - "{{Game data/config|DOS|C:\\ALIENS.CFG|C:\\ALIENS1.CFG}}" + - "{{Game data/saves|DOS|{{p|game}}\\*AL95.SAV}}" +"Aliens: Colonial Marines": pageId: 4507 steam: 49540 steamSide: @@ -7236,38 +7067,34 @@ Aliens&Asteroids: - 219447 - 224840 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Aliens Colonial Marines\PecanGame\Config\}}' - - '{{Game data/saves|Windows|{{p|steam}}\userdata\{{p|uid}}\49540\}}' -'Aliens: Dark Descent': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Aliens Colonial Marines\\PecanGame\\Config\\}}" + - "{{Game data/saves|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\49540\\}}" +"Aliens: Dark Descent": pageId: 178263 steam: 1150440 steamSide: - 1155310 - 2272330 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\ASF\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\ASF\Saved\SaveGames\*.sav}}' -'Aliens: Fireteam Elite': + - "{{Game data/config|Windows|{{p|localappdata}}\\ASF\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\ASF\\Saved\\SaveGames\\*.sav}}" +"Aliens: Fireteam Elite": pageId: 167017 renamedFrom: - - 'Aliens: Fireteam' + - "Aliens: Fireteam" steam: 1549970 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Endeavor\Saved\Config\WindowsNoEditor\}}' - - >- - {{Game data/config|Microsoft - Store|{{p|localappdata}}\Packages\ColdIronStudiosLLC.AliensFireteam_r52mqvf2yh3da\LocalCache\Local\Endeavor\Saved\Config\WinGDK\}} - - '{{Game data/saves|Windows|{{p|localappdata}}\Endeavor\Saved\SaveGames\}}' - - >- - {{Game data/saves|Microsoft - Store|{{p|localappdata}}\Packages\ColdIronStudiosLLC.AliensFireteam_r52mqvf2yh3da\SystemAppData\wgs\}} + - "{{Game data/config|Windows|{{p|localappdata}}\\Endeavor\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/config|Microsoft Store|{{p|localappdata}}\\Packages\\ColdIronStudiosLLC.AliensFireteam_r52mqvf2yh3da\\LocalCache\\Local\\Endeavor\\Saved\\Config\\WinGDK\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Endeavor\\Saved\\SaveGames\\}}" + - "{{Game data/saves|Microsoft Store|{{p|localappdata}}\\Packages\\ColdIronStudiosLLC.AliensFireteam_r52mqvf2yh3da\\SystemAppData\\wgs\\}}" Alight: pageId: 136058 steam: 1050270 Alimardan Meets Merlin: pageId: 68817 steam: 694430 -Alimardan's Mischief: +"Alimardan's Mischief": pageId: 68819 steam: 694420 Alina of the Arena: @@ -7277,9 +7104,9 @@ Alisa: pageId: 165806 steam: 1335530 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\CasperCroes\Alisa}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/CasperCroes/Alisa}}' - - '{{Game data/saves|Windows|{{p|userprofile\AppData\LocalLow}}\CasperCroes\Alisa\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\CasperCroes\\Alisa}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/CasperCroes/Alisa}}" + - "{{Game data/saves|Windows|{{p|userprofile\\AppData\\LocalLow}}\\CasperCroes\\Alisa\\}}" Alive: pageId: 105651 steam: 906430 @@ -7295,7 +7122,7 @@ AliveInVR: Alkimya: pageId: 59255 steam: 521620 -'All Alone: VR': +"All Alone: VR": pageId: 58985 steam: 604830 All Aspect Warfare: @@ -7334,7 +7161,7 @@ All Is Dust: pageId: 25987 steam: 373330 templates: - - '{{Game data/config|Windows|{{p|HKCU}}\Software\Mannequin Games LLC\All Is Dust}}' + - "{{Game data/config|Windows|{{p|HKCU}}\\Software\\Mannequin Games LLC\\All Is Dust}}" All My Gods: pageId: 46088 steam: 404270 @@ -7345,7 +7172,7 @@ All Our Asias: pageId: 72104 steam: 698050 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Sean Han Tani\All Our Asias\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Sean Han Tani\\All Our Asias\\}}" All Quiet On The Bridge - MAD Cliff: pageId: 99820 steam: 874630 @@ -7358,15 +7185,15 @@ All Systems Operational: All That Remains: pageId: 75968 steam: 749580 -'All That Remains: A story about a child''s future': +"All That Remains: A story about a child's future": pageId: 141687 steam: 1111610 All Walls Must Fall: pageId: 62215 steam: 628290 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\ProjectDisco\Saved\Config\WindowsNoEditor}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\ProjectDisco\Saved\SaveGames}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\ProjectDisco\\Saved\\Config\\WindowsNoEditor}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\ProjectDisco\\Saved\\SaveGames}}" All World Pro Wrestling: pageId: 152781 steam: 1183170 @@ -7374,8 +7201,8 @@ All You Can Eat: pageId: 64799 steam: 663240 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\interactivecomics_just_ayce\allyoucaneat_options.json}}' -'All You Can Feed: Sushi Bar': + - "{{Game data/config|Windows|{{P|localappdata}}\\interactivecomics_just_ayce\\allyoucaneat_options.json}}" +"All You Can Feed: Sushi Bar": pageId: 91981 steam: 835630 All You Can Shoot: @@ -7384,11 +7211,11 @@ All You Can Shoot: All Zombies Must Die!: pageId: 1707 steam: 204140 -'All Zombies Must Die!: Scorepocalypse': +"All Zombies Must Die!: Scorepocalypse": pageId: 40795 steam: 209360 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\UnrealEngine3\Bzb2Game\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\UnrealEngine3\\Bzb2Game\\}}" All of You: pageId: 164175 All the Delicate Duplicates: @@ -7401,8 +7228,8 @@ All-Star Fruit Racing: pageId: 66834 steam: 673190 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\3DClouds\AllStarFruitRacing\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\3DClouds\AllStarFruitRacing\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\3DClouds\\AllStarFruitRacing\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\3DClouds\\AllStarFruitRacing\\Saved\\SaveGames\\}}" Allegiance: pageId: 36475 steam: 700480 @@ -7415,7 +7242,7 @@ Alliance of Valiant Arms: pageId: 579 steam: 1473480 templates: - - '{{Game data/config|Windows|{{p|game}}\avaGame\Config}}' + - "{{Game data/config|Windows|{{p|game}}\\avaGame\\Config}}" Alliance of the Sacred Suns: gog: 1387169703 pageId: 142077 @@ -7425,7 +7252,7 @@ Allied General: Allied Nations: pageId: 122830 steam: 979300 -'Allison''s Diary: Rebirth': +"Allison's Diary: Rebirth": pageId: 123373 steam: 979890 Allods Online: @@ -7446,10 +7273,10 @@ Alluris: Alma: pageId: 79690 steam: 749320 -'Almightree: The Last Dreamer': +"Almightree: The Last Dreamer": pageId: 46532 steam: 368050 -'Almighty: Kill Your Gods': +"Almighty: Kill Your Gods": gog: 1121527658 pageId: 168136 steam: 1206600 @@ -7463,11 +7290,9 @@ Almost There: pageId: 126128 steam: 951940 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\The Quantum Astrophysicists Guild\Almost There - The Platformer\}}' - - >- - {{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\The Quantum Astrophysicists Guild\Almost There - The - Platformer\{{P|uid}}.local}} - - '{{Game data/saves|Steam|{{P|steam}}\userdata\{{P|uid}}\951940\remote\{{P|uid}}.cloud}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\The Quantum Astrophysicists Guild\\Almost There - The Platformer\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\The Quantum Astrophysicists Guild\\Almost There - The Platformer\\{{P|uid}}.local}}" + - "{{Game data/saves|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\951940\\remote\\{{P|uid}}.cloud}}" Aloe and Cal: pageId: 156023 steam: 1209760 @@ -7487,8 +7312,8 @@ Alone With You: pageId: 56679 steam: 564940 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\AloneWithYou\awysave\awy_options.ini}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\AloneWithYou\awysave\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\AloneWithYou\\awysave\\awy_options.ini}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\AloneWithYou\\awysave\\}}" Alone With a Bunch of Robots: pageId: 128751 steam: 1029190 @@ -7503,13 +7328,13 @@ Alone in the Dark: pageId: 7524 steam: 548090 templates: - - '{{Game data/saves|DOS|{{p|game}}\SAVE*.ITD}}' + - "{{Game data/saves|DOS|{{p|game}}\\SAVE*.ITD}}" Alone in the Dark (2008): pageId: 51108 steam: 259170 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Atari\AITD\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Atari\AITD\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Atari\\AITD\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Atari\\AITD\\}}" Alone in the Dark (2023): gog: 1177195295 pageId: 180712 @@ -7519,26 +7344,26 @@ Alone in the Dark 2: pageId: 7526 steam: 548890 templates: - - '{{Game data/saves|DOS|{{p|game}}\SAVE*.ITD}}' + - "{{Game data/saves|DOS|{{p|game}}\\SAVE*.ITD}}" Alone in the Dark 3: gog: 1207660973 pageId: 7528 steam: 548900 templates: - - '{{Game data/config|DOS|{{p|game}}\INDARK3.CFG}}' - - '{{Game data/saves|DOS|{{p|game}}\}}' -'Alone in the Dark: Illumination': + - "{{Game data/config|DOS|{{p|game}}\\INDARK3.CFG}}" + - "{{Game data/saves|DOS|{{p|game}}\\}}" +"Alone in the Dark: Illumination": pageId: 23009 steam: 275060 templates: - - '{{Game data/config|Windows|{{p|game}}\Dark\Saved\Config\WindowsNoEditor\}}' -'Alone in the Dark: The New Nightmare': + - "{{Game data/config|Windows|{{p|game}}\\Dark\\Saved\\Config\\WindowsNoEditor\\}}" +"Alone in the Dark: The New Nightmare": gog: 1207658874 pageId: 7530 steam: 259190 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Spiral House\launch\Data}}' - - '{{Game data/saves|Windows|{{p|game}}\_Alone4_.000.sav}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Spiral House\\launch\\Data}}" + - "{{Game data/saves|Windows|{{p|game}}\\_Alone4_.000.sav}}" Alone in the Forest VR: pageId: 93958 steam: 852590 @@ -7558,15 +7383,15 @@ Along the Edge: pageId: 50881 steam: 504390 templates: - - '{{Game data/config|Windows|{{p|appdata}}\along_the_edge\Preferences}}' - - '{{Game data/saves|Windows|{{p|appdata}}\along_the_edge\Local Storage}}' + - "{{Game data/config|Windows|{{p|appdata}}\\along_the_edge\\Preferences}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\along_the_edge\\Local Storage}}" Alpacapaca Dash: pageId: 56770 steam: 579230 Alpacapaca Double Dash: pageId: 151010 steam: 1003190 -'Alpages: The Five Books': +"Alpages: The Five Books": pageId: 45914 steam: 403860 AlpenCROSS: @@ -7602,40 +7427,40 @@ Alpha Polaris: pageId: 45954 steam: 405780 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\TurmoilGames\AlphaPolaris\}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\Saved Games\Alpha Polaris}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\TurmoilGames\\AlphaPolaris\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\Saved Games\\Alpha Polaris}}" Alpha Prime: pageId: 15948 steam: 2590 templates: - - '{{Game data/config|Windows|{{p|game}}\settings.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\save\}}' + - "{{Game data/config|Windows|{{p|game}}\\settings.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\save\\}}" Alpha Protocol: pageId: 1936 steam: 34010 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Alpha Protocol\APGame\Config\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Alpha Protocol\Checkpoints\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Alpha Protocol\\APGame\\Config\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Alpha Protocol\\Checkpoints\\}}" Alpha Runner: pageId: 46590 steam: 387840 Alpha Storm: pageId: 71975 templates: - - '{{Game data/saves|DOS|{{p|game}}\OLD_ONES\}}' + - "{{Game data/saves|DOS|{{p|game}}\\OLD_ONES\\}}" Alpha Version.0: pageId: 39568 steam: 359970 Alpha Zylon: pageId: 49933 steam: 313210 -'Alpha/Omega: The Christian RPG': +"Alpha/Omega: The Christian RPG": pageId: 93615 steam: 781310 -'Alphabear: Hardcover Edition': +"Alphabear: Hardcover Edition": pageId: 66695 steam: 644080 -'Alphabeats: Master Edition': +"Alphabeats: Master Edition": pageId: 44245 steam: 420160 Alphabet Jump: @@ -7654,15 +7479,15 @@ Alt-Frequencies: pageId: 132698 steam: 1035050 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\SOFTWARE\Accidental Queens\Alt-Frequencies\}}' - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Accidental Queens\Alt-Frequencies\SaveData.es3}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\SOFTWARE\\Accidental Queens\\Alt-Frequencies\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Accidental Queens\\Alt-Frequencies\\SaveData.es3}}" AltCoin: pageId: 80424 steam: 782010 Altar Guardian: pageId: 51993 steam: 543770 -'Alteil: Horizons': +"Alteil: Horizons": pageId: 39113 steam: 379870 Alter Army: @@ -7675,40 +7500,36 @@ Alter Ego: pageId: 64295 steam: 664780 templates: - - '{{Game data/config|Windows|{{p|game}}\Engine.config}}' + - "{{Game data/config|Windows|{{p|game}}\\Engine.config}}" Alter Ego (2010): pageId: 41106 steam: 63110 templates: - - '{{Game data/config|Windows|{{p|game}}\Engine.config|{{p|game}}\saves\options}}' - - '{{Game data/saves|Windows|{{p|game}}\saves\*.egs}}' + - "{{Game data/config|Windows|{{p|game}}\\Engine.config|{{p|game}}\\saves\\options}}" + - "{{Game data/saves|Windows|{{p|game}}\\saves\\*.egs}}" Alter World: pageId: 47717 steam: 357280 -'AlterVerse: Disruption': +"AlterVerse: Disruption": pageId: 59121 steam: 389800 Altered: pageId: 135814 steam: 973250 templates: - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Glitchheart\Altered\}}' + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Glitchheart\\Altered\\}}" Altered Beast: pageId: 30705 templates: - - '{{Game data/config|DOS|{{p|game}}\SETUP.DAT}}' + - "{{Game data/config|DOS|{{p|game}}\\SETUP.DAT}}" Altered Beast (Genesis): pageId: 30707 renamedFrom: - Altered Beast (2010) steam: 34281 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\SEGA Mega Drive - Classics\setup.dat|{{p|userprofile\Documents}}\SEGA Genesis Classics\setup.dat}} - - >- - {{Game data/saves|Windows|{{p|userprofile\Documents}}\SEGA Mega Drive - Classics\0000\|{{p|userprofile\Documents}}\SEGA Genesis Classics\0000\}} + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\SEGA Mega Drive Classics\\setup.dat|{{p|userprofile\\Documents}}\\SEGA Genesis Classics\\setup.dat}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\SEGA Mega Drive Classics\\0000\\|{{p|userprofile\\Documents}}\\SEGA Genesis Classics\\0000\\}}" Altered Destiny: gog: 1276221446 pageId: 165142 @@ -7724,9 +7545,9 @@ Alternativa: pageId: 41050 steam: 33990 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Centauri\ALTERNATIVA}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\Alternativa\}}' -'Alternator: Tactical Stealth Operations': + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Centauri\\ALTERNATIVA}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\Alternativa\\}}" +"Alternator: Tactical Stealth Operations": pageId: 132731 steam: 1052120 Altero: @@ -7735,13 +7556,13 @@ Altero: Altitude: pageId: 6135 steam: 41300 -Alto's Adventure: +"Alto's Adventure": pageId: 147759 -'Alto''s Adventure: Remastered': +"Alto's Adventure: Remastered": pageId: 175514 -Alto's Odyssey: +"Alto's Odyssey": pageId: 162441 -'Alto''s Odyssey: The Lost City': +"Alto's Odyssey: The Lost City": pageId: 169471 Altorius: pageId: 144733 @@ -7753,15 +7574,13 @@ Alucinod: pageId: 137006 steam: 727040 templates: - - >- - {{Game - data/config|Windows|{{P|localappdata}}\Alucinod\Saved\Config\WindowsNoEditor\GameUserSettings.ini|{{P|localappdata}}\Alucinod\Saved\Config\WindowsNoEditor\Input.ini|{{P|localappdata}}\Alucinod\Saved\SaveGames\OptionsData.sav}} - - '{{Game data/saves|Windows|{{P|localappdata}}\Alucinod\Saved\SaveGames\GameData.sav}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\Alucinod\\Saved\\Config\\WindowsNoEditor\\GameUserSettings.ini|{{P|localappdata}}\\Alucinod\\Saved\\Config\\WindowsNoEditor\\Input.ini|{{P|localappdata}}\\Alucinod\\Saved\\SaveGames\\OptionsData.sav}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Alucinod\\Saved\\SaveGames\\GameData.sav}}" Alum: pageId: 47891 steam: 338420 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\Saved Games\Alum}}' + - "{{Game data/saves|Windows|{{p|userprofile}}\\Saved Games\\Alum}}" Alvarok: pageId: 74502 steam: 729270 @@ -7769,45 +7588,39 @@ Alvastia Chronicles: pageId: 125711 steam: 948660 templates: - - >- - {{Game data/config|Microsoft - Store|{{p|localappdata}}\Packages\KEMCO.AlvastiaChronicles_f2bp5vqmgh7cp\SystemAppData\wgs\0009E7027027425A_0000000000000000000000006216911F}} - - >- - {{Game data/saves|Microsoft - Store|{{p|localappdata}}\Packages\KEMCO.AlvastiaChronicles_f2bp5vqmgh7cp\SystemAppData\wgs\0009E7027027425A_0000000000000000000000006216911F}} + - "{{Game data/config|Microsoft Store|{{p|localappdata}}\\Packages\\KEMCO.AlvastiaChronicles_f2bp5vqmgh7cp\\SystemAppData\\wgs\\0009E7027027425A_0000000000000000000000006216911F}}" + - "{{Game data/saves|Microsoft Store|{{p|localappdata}}\\Packages\\KEMCO.AlvastiaChronicles_f2bp5vqmgh7cp\\SystemAppData\\wgs\\0009E7027027425A_0000000000000000000000006216911F}}" Alveari: pageId: 51384 steam: 484990 Alvin and the Chipmunks: pageId: 89108 templates: - - '{{Game data/saves|Windows|{{p|game}}\SaveGames}}' + - "{{Game data/saves|Windows|{{p|game}}\\SaveGames}}" Alvo: pageId: 75157 steam: 604520 Alvora Tactics: pageId: 62799 steam: 643900 -Alwa's Awakening: +"Alwa's Awakening": gog: 1396087560 pageId: 54677 steam: 549260 templates: - - >- - {{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\EldenPixels\Alwa's - Awakening\settings.dat|{{P|hkcu}}\Software\EldenPixels\Alwa's Awakening\}} - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/EldenPixels/Alwa''s Awakening/settings.dat}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\EldenPixels\Alwa''s Awakening\}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/EldenPixels/Alwa''s Awakening/playerInfo[1, 2 or 3].dat}}' -Alwa's Legacy: + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\EldenPixels\\Alwa's Awakening\\settings.dat|{{P|hkcu}}\\Software\\EldenPixels\\Alwa's Awakening\\}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/EldenPixels/Alwa's Awakening/settings.dat}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\EldenPixels\\Alwa's Awakening\\}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/EldenPixels/Alwa's Awakening/playerInfo[1, 2 or 3].dat}}" +"Alwa's Legacy": gog: 2132127165 gogSide: - 2118716711 pageId: 160493 steam: 1205900 templates: - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/EldenPixels/Alwa''s Legacy/Settings.dat}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/EldenPixels/Alwa''s Legacy/}}' + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/EldenPixels/Alwa's Legacy/Settings.dat}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/EldenPixels/Alwa's Legacy/}}" Always Higher: pageId: 42189 steam: 497300 @@ -7815,27 +7628,27 @@ Always Remember Me: pageId: 16500 steam: 291030 templates: - - '{{Game data/saves|Windows|{{p|appdata}}\Renpy\Remember_Me-1.3}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/RenPy/Remember_Me-1.3}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.renpy/Remember_Me-1.3}}' + - "{{Game data/saves|Windows|{{p|appdata}}\\Renpy\\Remember_Me-1.3}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/RenPy/Remember_Me-1.3}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.renpy/Remember_Me-1.3}}" Always Sometimes Monsters: gog: 1207664583 pageId: 18232 steam: 274310 templates: - - '{{Game data/config|Windows|{{P|game}}\Game.ini}}' - - '{{Game data/config|OS X|{{p|osxhome}}/My Games/ASM/}}' - - '{{Game data/saves|Windows|{{p|game}}\Save01.rvdata2}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/My Games/ASM/}}' - - '{{Game data/saves|Linux|{{P|game}}/}}' + - "{{Game data/config|Windows|{{P|game}}\\Game.ini}}" + - "{{Game data/config|OS X|{{p|osxhome}}/My Games/ASM/}}" + - "{{Game data/saves|Windows|{{p|game}}\\Save01.rvdata2}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/My Games/ASM/}}" + - "{{Game data/saves|Linux|{{P|game}}/}}" Always the Same Blue Sky...: pageId: 47835 renamedFrom: - Always The Same Blue Sky... steam: 363410 templates: - - '{{Game data/config|Windows|{{p|appdata}}\RenPy\Always The Same Blue Sky-1334743217\persistent}}' - - '{{Game data/saves|Windows|{{p|appdata}}\RenPy\Always The Same Blue Sky-1334743217\*.save}}' + - "{{Game data/config|Windows|{{p|appdata}}\\RenPy\\Always The Same Blue Sky-1334743217\\persistent}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\RenPy\\Always The Same Blue Sky-1334743217\\*.save}}" Amairo Chocolate: gog: 1437926538 pageId: 170771 @@ -7846,10 +7659,10 @@ Amalgam: Amanda the Adventurer: pageId: 189513 steam: 2166060 -Amanda's Sticker Book: +"Amanda's Sticker Book": pageId: 124139 steam: 985640 -Amanda's Sticker Book 2 - Amazing Wildlife: +"Amanda's Sticker Book 2 - Amazing Wildlife": pageId: 129639 steam: 1039560 AmaranTime: @@ -7858,19 +7671,19 @@ AmaranTime: Amaranthine: pageId: 43716 steam: 454900 -'Amaranthine Voyage: The Living Mountain': +"Amaranthine Voyage: The Living Mountain": pageId: 63179 steam: 647910 -'Amaranthine Voyage: The Obsidian Book': +"Amaranthine Voyage: The Obsidian Book": pageId: 100058 steam: 887940 -'Amaranthine Voyage: The Orb of Purity': +"Amaranthine Voyage: The Orb of Purity": pageId: 127995 steam: 1030190 -'Amaranthine Voyage: The Shadow of Torment': +"Amaranthine Voyage: The Shadow of Torment": pageId: 81996 steam: 796080 -'Amaranthine Voyage: The Tree of Life': +"Amaranthine Voyage: The Tree of Life": pageId: 53077 steam: 554560 Amatarasu Riddle Star: @@ -7880,7 +7693,7 @@ Amatsutsumi: gog: 1452324564 pageId: 179991 templates: - - '{{Game data/saves|Windows|{{p|game}}\save\*.dat|{{p|game}}\save\*.bak}}' + - "{{Game data/saves|Windows|{{p|game}}\\save\\*.dat|{{p|game}}\\save\\*.bak}}" Amaze: pageId: 59332 steam: 604780 @@ -7891,7 +7704,7 @@ Amaze 3D: pageId: 64598 steam: 667300 templates: - - '{{Game data/saves|Windows|{{p|game}}\.}}' + - "{{Game data/saves|Windows|{{p|game}}\\.}}" Amaze ABC: pageId: 110548 steam: 928610 @@ -7902,30 +7715,30 @@ Amaze Christmas: pageId: 123495 steam: 986990 templates: - - '{{Game data/saves|Windows|{{p|game}}\.}}' + - "{{Game data/saves|Windows|{{p|game}}\\.}}" Amaze Classic: pageId: 93082 steam: 853860 templates: - - '{{Game data/saves|Windows|{{p|game}}\.}}' -'Amaze Classic: Inverted': + - "{{Game data/saves|Windows|{{p|game}}\\.}}" +"Amaze Classic: Inverted": pageId: 96821 steam: 874010 Amaze Dark Times: pageId: 67581 steam: 692200 templates: - - '{{Game data/saves|Windows|{{p|game}}\.}}' + - "{{Game data/saves|Windows|{{p|game}}\\.}}" Amaze Double: pageId: 74518 steam: 736840 templates: - - '{{Game data/saves|Windows|{{p|game}}\.}}' + - "{{Game data/saves|Windows|{{p|game}}\\.}}" Amaze Easter: pageId: 130183 steam: 1048080 templates: - - '{{Game data/saves|Windows|{{p|game}}\.}}' + - "{{Game data/saves|Windows|{{p|game}}\\.}}" Amaze Frozen: pageId: 90558 steam: 828910 @@ -7933,7 +7746,7 @@ Amaze Gears: pageId: 87225 steam: 806850 templates: - - '{{Game data/saves|Windows|{{p|game}}\.}}' + - "{{Game data/saves|Windows|{{p|game}}\\.}}" Amaze Gears 2: pageId: 150351 renamedFrom: @@ -7946,7 +7759,7 @@ Amaze Lunar: pageId: 128079 steam: 1031540 templates: - - '{{Game data/saves|Windows|{{p|game}}\.}}' + - "{{Game data/saves|Windows|{{p|game}}\\.}}" Amaze St. Patrick: pageId: 127530 steam: 1017350 @@ -7960,23 +7773,23 @@ Amaze Zero: pageId: 65672 steam: 679660 templates: - - '{{Game data/saves|Windows|{{p|game}}\.}}' -Amaze'D: + - "{{Game data/saves|Windows|{{p|game}}\\.}}" +"Amaze'D": pageId: 99792 steam: 870000 Amazeing Lemons: pageId: 76606 steam: 754400 -'Amazing Adventures: Around the World': +"Amazing Adventures: Around the World": pageId: 41302 steam: 3530 -'Amazing Adventures: Riddle of the Two Knights': +"Amazing Adventures: Riddle of the Two Knights": pageId: 72648 -'Amazing Adventures: The Caribbean Secret': +"Amazing Adventures: The Caribbean Secret": pageId: 72644 -'Amazing Adventures: The Forgotten Dynasty': +"Amazing Adventures: The Forgotten Dynasty": pageId: 72646 -'Amazing Adventures: The Lost Tomb': +"Amazing Adventures: The Lost Tomb": pageId: 41384 steam: 3510 Amazing Bomberman: @@ -7990,8 +7803,8 @@ Amazing Cultivation Simulator: steamSide: - 1446730 templates: - - '{{Game data/saves|Windows|{{P|steam}}\steamapps\common\AmazingCultivationSimulator\saves}}' - - '{{Game data/saves|GOG.com|{{p|game}}\saves}}' + - "{{Game data/saves|Windows|{{P|steam}}\\steamapps\\common\\AmazingCultivationSimulator\\saves}}" + - "{{Game data/saves|GOG.com|{{p|game}}\\saves}}" Amazing Frog?: pageId: 38189 steam: 332570 @@ -8018,7 +7831,7 @@ Amazing Trivia: Amazing World: pageId: 49797 steam: 293500 -'Amazing: A House In Kansas VR': +"Amazing: A House In Kansas VR": pageId: 139041 steam: 1096960 Amazon Odyssey: @@ -8027,19 +7840,19 @@ Amazon Odyssey: Amazon Rush: pageId: 87321 steam: 811540 -'Amazon: Guardians of Eden': +"Amazon: Guardians of Eden": gog: 2012885158 pageId: 147127 Amber Tail Adventure: pageId: 60446 steam: 614460 -Amber's Airline - 7 Wonders: +"Amber's Airline - 7 Wonders": pageId: 132500 steam: 1029860 -Amber's Airline - High Hopes: +"Amber's Airline - High Hopes": pageId: 107748 steam: 900050 -Amber's Magic Shop: +"Amber's Magic Shop": pageId: 62815 steam: 584940 Amberial Dreams: @@ -8063,7 +7876,7 @@ Ambition: Ambition of the Slimes: pageId: 82665 steam: 568910 -'Ambition: A Minuet in Power': +"Ambition: A Minuet in Power": gog: 1748947415 pageId: 151297 steam: 949200 @@ -8071,10 +7884,10 @@ Ambre: pageId: 61648 steam: 623840 templates: - - '{{Game data/config|Windows|{{p|game}}\renpy\config.py}}' - - '{{Game data/config|Steam|{{p|game}}\renpy\config.py}}' - - '{{Game data/saves|Windows|{{P|appdata}}\renpy\Ambre-1440530563\*.save|{{p|game}}\game\saves\*.save}}' - - '{{Game data/saves|Steam|{{p|appdata}}\renpy\Ambre - Steam Edition-1487343621\*.save}}' + - "{{Game data/config|Windows|{{p|game}}\\renpy\\config.py}}" + - "{{Game data/config|Steam|{{p|game}}\\renpy\\config.py}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\renpy\\Ambre-1440530563\\*.save|{{p|game}}\\game\\saves\\*.save}}" + - "{{Game data/saves|Steam|{{p|appdata}}\\renpy\\Ambre - Steam Edition-1487343621\\*.save}}" Ambrosia: gog: 1270026588 pageId: 142211 @@ -8086,23 +7899,23 @@ Ame no Marginal: pageId: 33652 steam: 348950 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\STAGE-NANA\Rain marginal\}}' - - '{{Game data/saves|Windows|{{p|game}}\savedata\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\STAGE-NANA\\Rain marginal\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\savedata\\}}" Ameagari no Hanaby: pageId: 100530 steam: 888990 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Enigmatic Network\Ameagari no Hanaby\|{{p|game}}\Settings\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Enigmatic Network\Ameagari no Hanaby\}}' -Amelia's Curse: + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Enigmatic Network\\Ameagari no Hanaby\\|{{p|game}}\\Settings\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Enigmatic Network\\Ameagari no Hanaby\\}}" +"Amelia's Curse": pageId: 87559 steam: 778500 Amelie: pageId: 175332 steam: 1835810 templates: - - '{{Game data/config|Windows|{{P|appdata}}\renpy\Amelie-1633011796\persistent}}' - - '{{Game data/saves|Windows|{{P|appdata}}\renpy\Amelie-1633011796\*.save}}' + - "{{Game data/config|Windows|{{P|appdata}}\\renpy\\Amelie-1633011796\\persistent}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\renpy\\Amelie-1633011796\\*.save}}" Ameline and the Ultimate Burger: pageId: 66144 steam: 672380 @@ -8112,28 +7925,28 @@ Amelon: America: pageId: 101637 templates: - - '{{Game data/config|Windows|{{p|game}}\America.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\Save|{{p|game}}\Save2 for the Expansion Pack}}' -America's Army: + - "{{Game data/config|Windows|{{p|game}}\\America.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\Save|{{p|game}}\\Save2 for the Expansion Pack}}" +"America's Army": pageId: 30487 templates: - - '{{Game data/config|Windows|{{p|game}}\System}}' - - '{{Game data/saves|Windows|{{p|game}}\System\Save}}' -America's Army 3: + - "{{Game data/config|Windows|{{p|game}}\\System}}" + - "{{Game data/saves|Windows|{{p|game}}\\System\\Save}}" +"America's Army 3": pageId: 24220 steam: 13140 templates: - - '{{Game data/config|Windows|{{p|game}}\AA3Game\Config}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\America''s Army 3\}}' -'America''s Army: Proving Grounds': + - "{{Game data/config|Windows|{{p|game}}\\AA3Game\\Config}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\America's Army 3\\}}" +"America's Army: Proving Grounds": pageId: 30277 steam: 203290 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\America''s Army Proving Grounds\AAGame\Config\}}' -America's Retribution: + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\America's Army Proving Grounds\\AAGame\\Config\\}}" +"America's Retribution": pageId: 92023 steam: 835110 -America's Retribution Term 2: +"America's Retribution Term 2": pageId: 135020 steam: 1072350 American Angst: @@ -8149,17 +7962,17 @@ American Conquest: pageId: 1494 steam: 115210 templates: - - '{{Game data/saves|Windows|{{p|game}}\Save\}}' -'American Conquest: Divided Nation': + - "{{Game data/saves|Windows|{{p|game}}\\Save\\}}" +"American Conquest: Divided Nation": pageId: 7826 templates: - - '{{Game data/saves|Windows|{{p|game}}\Run\Save\}}' -'American Conquest: Fight Back': + - "{{Game data/saves|Windows|{{p|game}}\\Run\\Save\\}}" +"American Conquest: Fight Back": gog: 1207662813 pageId: 7501 steam: 115220 templates: - - '{{Game data/saves|Windows|{{p|game}}\Save\}}' + - "{{Game data/saves|Windows|{{p|game}}\\Save\\}}" American Farmer: pageId: 90995 steam: 784180 @@ -8167,39 +7980,37 @@ American Fugitive: pageId: 130573 steam: 934780 templates: - - >- - {{Game data/config|Windows|{{P|userprofile}}\AppData\LocalLow\Fallen Tree Games Ltd\American - Fugitive\SaveGame\Profile\PlayerProfile.dat.bson|{{P|hkcu}}\Software\Fallen Tree Games Ltd\American Fugitive\}} - - '{{Game data/saves|Windows|{{p|USERPROFILE}}\AppData\LocalLow\Fallen Tree Games Ltd\American Fugitive\SaveGame\}}' + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Fallen Tree Games Ltd\\American Fugitive\\SaveGame\\Profile\\PlayerProfile.dat.bson|{{P|hkcu}}\\Software\\Fallen Tree Games Ltd\\American Fugitive\\}}" + - "{{Game data/saves|Windows|{{p|USERPROFILE}}\\AppData\\LocalLow\\Fallen Tree Games Ltd\\American Fugitive\\SaveGame\\}}" American Hero: gog: 1718511445 gogSide: - 1160264518 pageId: 171969 -American McGee's Alice: +"American McGee's Alice": pageId: 17504 templates: - - '{{Game data/config|Windows|{{p|game}}\base\config.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\base\save\}}' -American McGee's Alice (2011): + - "{{Game data/config|Windows|{{p|game}}\\base\\config.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\base\\save\\}}" +"American McGee's Alice (2011)": pageId: 79639 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\American McGee''s Alice\config.cfg}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\American McGee''s Alice\save\}}' -American McGee's Grimm: + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\American McGee's Alice\\config.cfg}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\American McGee's Alice\\save\\}}" +"American McGee's Grimm": gog: 1207660243 pageId: 13683 steam: 252150 templates: - - '{{Game data/config|Windows|{{p|game}}\*\*\GrimmGame\Config\}}' - - '{{Game data/saves|Windows|{{p|game}}\*\*\GrimmGame\Config\GameSetting.ini}}' + - "{{Game data/config|Windows|{{p|game}}\\*\\*\\GrimmGame\\Config\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\*\\*\\GrimmGame\\Config\\GameSetting.ini}}" American Mensa Academy: pageId: 67448 steam: 214400 -'American Patriots: Boston Tea Party': +"American Patriots: Boston Tea Party": pageId: 69609 steam: 705750 -'American Patriots: The Swamp Fox': +"American Patriots: The Swamp Fox": pageId: 121147 steam: 959850 American Powerhaul Train Simulator: @@ -8212,84 +8023,83 @@ American Theft 80s: pageId: 182500 steam: 1321450 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Noble Muffins\American Theft 80s\}}' - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\Noble Muffins\American Theft 80s\saves\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Noble Muffins\\American Theft 80s\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\Noble Muffins\\American Theft 80s\\saves\\}}" American Truck Simulator: pageId: 25655 steam: 270880 steamSide: - - 1209471 - - 1209470 - - 1162160 - - 1149810 - - 1116310 - - 1104880 - - 1076080 - - 1015160 - - 962750 - - 951650 - - 800370 - - 684630 - - 620610 - - 588600 - - 566890 - - 561620 - - 546260 - - 541260 - - 526940 - - 520550 - - 463740 - - 450550 - - 441960 - - 432710 - - 422310 - - 421090 - - 421081 - - 421080 - - 421070 - 300010 + - 421070 + - 421080 + - 421081 + - 421090 + - 422310 + - 432710 + - 441960 + - 450550 + - 463740 + - 520550 + - 526940 + - 541260 + - 546260 + - 561620 + - 566890 + - 588600 + - 620610 + - 684630 + - 800370 + - 951650 + - 962750 + - 1015160 + - 1076080 + - 1104880 + - 1116310 + - 1149810 + - 1162160 + - 1209470 + - 1209471 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\American Truck Simulator\config.cfg}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/American Truck Simulator/config.cfg}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/American Truck Simulator/config.cfg}}' - - '{{Game data/config|Steam|{{P|steam}}\userdata\{{P|uid}}\270880\remote\profiles\{{P|uid}}\config.cfg}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\American Truck Simulator\profiles\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/American Truck Simulator/profiles/}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/American Truck Simulator/profiles/}}' - - '{{Game data/saves|Steam|{{P|steam}}\userdata\{{P|uid}}\270880\remote\profiles\{{P|uid}}\save\}}' -'American University Life: Welcome Week!': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\American Truck Simulator\\config.cfg}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/American Truck Simulator/config.cfg}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/American Truck Simulator/config.cfg}}" + - "{{Game data/config|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\270880\\remote\\profiles\\{{P|uid}}\\config.cfg}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\American Truck Simulator\\profiles\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/American Truck Simulator/profiles/}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/American Truck Simulator/profiles/}}" + - "{{Game data/saves|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\270880\\remote\\profiles\\{{P|uid}}\\save\\}}" +"American University Life: Welcome Week!": pageId: 102421 steam: 904050 American VR Coasters: pageId: 65006 steam: 610260 -'Amerzone: The Explorer''s Legacy': +"Amerzone: The Explorer's Legacy": gog: 1207658847 pageId: 7549 steam: 302190 templates: - - '{{Game data/config|Windows|{{p|game}}\Launch\Settings.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\Saved_*.bin}}' + - "{{Game data/config|Windows|{{p|game}}\\Launch\\Settings.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\Saved_*.bin}}" Amethlion: pageId: 108100 steam: 915820 Amid Evil: gog: 2023945788 gogSide: - - 1555384361 - - 1630779642 - - 1615834314 - 1211833469 + - 1555384361 + - 1615834314 + - 1630779642 pageId: 75151 steam: 673130 steamSide: + - 1198780 - 1633340 - 1852860 - - 1198780 - - 1852860 templates: - - '{{Game data/config|Windows|{{p|LOCALAPPDATA}}\AmidEvil\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{p|LOCALAPPDATA}}\AmidEvil\Saved\}}' + - "{{Game data/config|Windows|{{p|LOCALAPPDATA}}\\AmidEvil\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{p|LOCALAPPDATA}}\\AmidEvil\\Saved\\}}" Amigdala: pageId: 43935 steam: 450110 @@ -8305,65 +8115,63 @@ Amihailu in Dreamland: Amira: pageId: 164688 steam: 1371640 -'Amiss 13: The Curse': +"Amiss 13: The Curse": pageId: 72090 steam: 684830 -'Ammo Pigs: Armed and Delicious': +"Ammo Pigs: Armed and Delicious": pageId: 108080 steam: 877480 Amnesia: pageId: 175950 -'Amnesia: A Machine for Pigs': +"Amnesia: A Machine for Pigs": gog: 1207659443 pageId: 557 steam: 239200 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Amnesia\Pig\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Frictional Games/Amnesia/Pig/}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.frictionalgames/Amnesia/Pig/}}' - - '{{Game data/config|Steam|{{p|steam}}/userdata/{{p|uid}}/239200/}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Amnesia\Pig\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Frictional Games/Amnesia/Pig/}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.frictionalgames/Amnesia/Pig/}}' - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/239200/}}' -'Amnesia: Memories': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Amnesia\\Pig\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Frictional Games/Amnesia/Pig/}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.frictionalgames/Amnesia/Pig/}}" + - "{{Game data/config|Steam|{{p|steam}}/userdata/{{p|uid}}/239200/}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Amnesia\\Pig\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Frictional Games/Amnesia/Pig/}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.frictionalgames/Amnesia/Pig/}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/239200/}}" +"Amnesia: Memories": gog: 1589114519 pageId: 30504 steam: 359390 templates: - - '{{Game data/config|Windows|{{p|game}}\savedata\system.dat}}' - - '{{Game data/saves|Windows|{{p|game}}\savedata\saveg.dat}}' -'Amnesia: Rebirth': + - "{{Game data/config|Windows|{{p|game}}\\savedata\\system.dat}}" + - "{{Game data/saves|Windows|{{p|game}}\\savedata\\saveg.dat}}" +"Amnesia: Rebirth": gog: 1714817458 pageId: 158273 steam: 999220 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\My Games\Amnesia Rebirth\Main}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.local/share/frictionalgames/Amnesia Rebirth/Main}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Amnesia Rebirth\Main\}}' -'Amnesia: The Bunker': + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\My Games\\Amnesia Rebirth\\Main}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.local/share/frictionalgames/Amnesia Rebirth/Main}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Amnesia Rebirth\\Main\\}}" +"Amnesia: The Bunker": gog: 1186009992 pageId: 184168 steam: 1944430 templates: - - '{{Game data/config|Steam|{{P|steam}}\userdata\{{P|uid}}\1944430\remote}}' - - '{{Game data/config|Windows|{{p|userprofile\documents}}\My Games\Amnesia The Bunker\Main}}' - - '{{Game data/saves|Steam|{{P|steam}}\userdata\{{P|uid}}\1944430\remote\Main}}' - - '{{Game data/saves|Windows|{{p|userprofile\documents}}\My Games\Amnesia The Bunker\Main\Default}}' - - >- - {{Game data/saves|Microsoft - Store|{{P|localappdata}}\Packages\FrictionalGames.AmnesiaTheBunker_yhrbwy6qaj8bt\SystemAppData\wgs}} -'Amnesia: The Dark Descent': + - "{{Game data/config|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\1944430\\remote}}" + - "{{Game data/config|Windows|{{p|userprofile\\documents}}\\My Games\\Amnesia The Bunker\\Main}}" + - "{{Game data/saves|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\1944430\\remote\\Main}}" + - "{{Game data/saves|Windows|{{p|userprofile\\documents}}\\My Games\\Amnesia The Bunker\\Main\\Default}}" + - "{{Game data/saves|Microsoft Store|{{P|localappdata}}\\Packages\\FrictionalGames.AmnesiaTheBunker_yhrbwy6qaj8bt\\SystemAppData\\wgs}}" +"Amnesia: The Dark Descent": gog: 1207659259 pageId: 693 steam: 57300 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Amnesia\Main\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Frictional Games/Amnesia/}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.frictionalgames/Amnesia/Main/}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Amnesia\Main\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Frictional Games/Amnesia/}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.frictionalgames/Amnesia/Main/}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Amnesia\\Main\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Frictional Games/Amnesia/}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.frictionalgames/Amnesia/Main/}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Amnesia\\Main\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Frictional Games/Amnesia/}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.frictionalgames/Amnesia/Main/}}" Amok: pageId: 44042 steam: 446780 @@ -8373,7 +8181,7 @@ Amon: Among Ripples: pageId: 48901 steam: 341720 -'Among Ripples: Shallow Waters': +"Among Ripples: Shallow Waters": pageId: 139745 steam: 1096090 Among Trees: @@ -8383,13 +8191,9 @@ Among Us: pageId: 121898 steam: 945360 templates: - - >- - {{Game data/config|Windows|{{P|userprofile\appdata\locallow}}\Innersloth\Among - Us\|{{p|hkcu}}\Software\InnerSloth\AmongUs}} - - >- - {{Game data/config|Microsoft - Store|{{p|localappdata}}\Packages\Innersloth.AmongUs_fw5x688tam7rm\SystemAppData\Helium\}} - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Innersloth\Among Us\playerStats3}}' + - "{{Game data/config|Windows|{{P|userprofile\\appdata\\locallow}}\\Innersloth\\Among Us\\|{{p|hkcu}}\\Software\\InnerSloth\\AmongUs}}" + - "{{Game data/config|Microsoft Store|{{p|localappdata}}\\Packages\\Innersloth.AmongUs_fw5x688tam7rm\\SystemAppData\\Helium\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Innersloth\\Among Us\\playerStats3}}" Among Us VR: pageId: 188609 steam: 1849900 @@ -8400,8 +8204,8 @@ Among the Heavens: pageId: 45721 steam: 409380 templates: - - '{{Game data/saves|Windows|{{p|appdata}}\CorePunch Game Studio\Among The Heavens\}}' -'Among the Innocent: A Stricken Tale': + - "{{Game data/saves|Windows|{{p|appdata}}\\CorePunch Game Studio\\Among The Heavens\\}}" +"Among the Innocent: A Stricken Tale": pageId: 57450 steam: 558320 Among the Sleep: @@ -8409,10 +8213,10 @@ Among the Sleep: pageId: 17591 steam: 250620 templates: - - '{{Game data/config|Windows|{{p|USERPROFILE}}\AppData\LocalLow\Krillbite Studio\Among The Sleep\}}' - - '{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/Krillbite Studio/Among The Sleep/prefs}}' - - '{{Game data/saves|Windows|{{p|USERPROFILE}}\AppData\LocalLow\Krillbite Studio\Among The Sleep\}}' - - '{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/Krillbite Studio/Among The Sleep/*/profile.json}}' + - "{{Game data/config|Windows|{{p|USERPROFILE}}\\AppData\\LocalLow\\Krillbite Studio\\Among The Sleep\\}}" + - "{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/Krillbite Studio/Among The Sleep/prefs}}" + - "{{Game data/saves|Windows|{{p|USERPROFILE}}\\AppData\\LocalLow\\Krillbite Studio\\Among The Sleep\\}}" + - "{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/Krillbite Studio/Among The Sleep/*/profile.json}}" Amora: pageId: 95125 steam: 816280 @@ -8426,8 +8230,8 @@ Amorous: pageId: 81719 steam: 778700 templates: - - '{{Game data/config|Windows|{{p|game}}\options.json|{{p|game}}\ShowMeSomeBooty|{{p|game}}\NonSteam}}' - - '{{Game data/saves|Windows|{{p|game}}\Saves\}}' + - "{{Game data/config|Windows|{{p|game}}\\options.json|{{p|game}}\\ShowMeSomeBooty|{{p|game}}\\NonSteam}}" + - "{{Game data/saves|Windows|{{p|game}}\\Saves\\}}" Amortizer Off-Road: pageId: 134920 steam: 1052600 @@ -8438,18 +8242,18 @@ Ampersand: pageId: 35104 steam: 410210 templates: - - '{{Game data/config|Windows|{{p|game}}\S3DClient.cfg}}' + - "{{Game data/config|Windows|{{p|game}}\\S3DClient.cfg}}" Ampersat: pageId: 167804 steam: 1356040 templates: - - '{{Game data/config|Windows|{{P|userprofile\appdata\locallow}}\Gaterooze, Ink\Ampersat\}}' + - "{{Game data/config|Windows|{{P|userprofile\\appdata\\locallow}}\\Gaterooze, Ink\\Ampersat\\}}" Amphora: pageId: 38414 steam: 331510 templates: - - '{{Game data/saves|Windows|{{p|game}}\data\profiles\*.json}}' -'Amplitude: A Visual Novel': + - "{{Game data/saves|Windows|{{p|game}}\\data\\profiles\\*.json}}" +"Amplitude: A Visual Novel": pageId: 69836 steam: 704680 Ampu-Tea: @@ -8462,35 +8266,30 @@ Amulet of Dreams: pageId: 42710 steam: 476920 templates: - - '{{Game data/config|Windows|{{P|appdata}}\MysteryTag\Amulet of Dreams\Player_{{code|#}}\settings.ini}}' - - '{{Game data/saves|Windows|{{P|appdata}}\MysteryTag\Amulet of Dreams\Player_{{code|#}}\session.dat}}' + - "{{Game data/config|Windows|{{P|appdata}}\\MysteryTag\\Amulet of Dreams\\Player_{{code|#}}\\settings.ini}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\MysteryTag\\Amulet of Dreams\\Player_{{code|#}}\\session.dat}}" Amulet of the Seven Souls: pageId: 72033 steam: 702060 Amulets & Armor: pageId: 6522 templates: - - '{{Game data/config|DOS|{{p|game}}\config.ini}}' - - '{{Game data/config|Windows|{{p|game}}\config.ini}}' - - '{{Game data/saves|DOS|{{p|game}}\S0000000}}' - - '{{Game data/saves|Windows|{{p|game}}\S0000000}}' + - "{{Game data/config|DOS|{{p|game}}\\config.ini}}" + - "{{Game data/config|Windows|{{p|game}}\\config.ini}}" + - "{{Game data/saves|DOS|{{p|game}}\\S0000000}}" + - "{{Game data/saves|Windows|{{p|game}}\\S0000000}}" Amygdala: pageId: 47261 steam: 369060 -An Adventurer's Tale: +"An Adventurer's Tale": pageId: 124372 steam: 942580 An Airport for Aliens Currently Run by Dogs: pageId: 168680 steam: 1246250 templates: - - >- - {{Game data/config|Windows|{{P|hkcu}}\Software\Strange Scaffold\An Airport for Aliens Currently Run by - Dogs\|{{P|userprofile\appdata\locallow}}\Strange Scaffold\An Airport for Aliens Currently Run by - Dogs\GameSaveFiles\}} - - >- - {{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Strange Scaffold\An Airport for Aliens Currently Run - by Dogs\GameSaveFiles\}} + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Strange Scaffold\\An Airport for Aliens Currently Run by Dogs\\|{{P|userprofile\\appdata\\locallow}}\\Strange Scaffold\\An Airport for Aliens Currently Run by Dogs\\GameSaveFiles\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Strange Scaffold\\An Airport for Aliens Currently Run by Dogs\\GameSaveFiles\\}}" An Alien with a Magnet: pageId: 59502 steam: 390620 @@ -8501,18 +8300,18 @@ An Assassin in Orlandes: pageId: 47927 steam: 335460 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Tin Man Games\Assassin\}}' - - '{{Game data/saves|Windows|{{P|game}}\Documents\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Tin Man Games\\Assassin\\}}" + - "{{Game data/saves|Windows|{{P|game}}\\Documents\\}}" An Egg Can Dream: pageId: 150760 steam: 1139100 -'An Elder Scrolls Legend: Battlespire': +"An Elder Scrolls Legend: Battlespire": gog: 1440163341 pageId: 3403 steam: 1812420 templates: - - '{{Game data/config|DOS|{{p|game}}\SPIRE.CFG|{{p|game}}\MSS\DIG.INI|C:\SPIRE.GRD}}' - - '{{Game data/saves|DOS|{{p|game}}\SAVE*\}}' + - "{{Game data/config|DOS|{{p|game}}\\SPIRE.CFG|{{p|game}}\\MSS\\DIG.INI|C:\\SPIRE.GRD}}" + - "{{Game data/saves|DOS|{{p|game}}\\SAVE*\\}}" An Imp? A Fiend!: pageId: 48457 steam: 354960 @@ -8532,22 +8331,22 @@ An Octave Higher: - 415430 - 415431 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\An Octave Higher\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\An Octave Higher\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\An Octave Higher\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\An Octave Higher\\}}" An Octonaut Odyssey: pageId: 58644 steam: 566320 -'An Odyssey: Echoes of War': +"An Odyssey: Echoes of War": pageId: 156041 steam: 1199220 -'An Orc''s Tale: Kriegsruf': +"An Orc's Tale: Kriegsruf": pageId: 66130 steam: 676070 An Untitled Story: pageId: 137173 templates: - - '{{Game data/config|Windows|{{P|game}}}}' - - '{{Game data/saves|Windows|{{P|game}}|{{P|hkcu}}\Software\Game Maker\695487\}}' + - "{{Game data/config|Windows|{{P|game}}}}" + - "{{Game data/saves|Windows|{{P|game}}|{{P|hkcu}}\\Software\\Game Maker\\695487\\}}" Ana The Game: pageId: 90228 steam: 811090 @@ -8556,8 +8355,8 @@ Anachronox: pageId: 2981 steam: 242940 templates: - - '{{Game data/config|Windows|{{P|game}}\anoxdata\CONFIGS\}}' - - '{{Game data/saves|Windows|{{p|game}}\anoxdata\SAVE\}}' + - "{{Game data/config|Windows|{{P|game}}\\anoxdata\\CONFIGS\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\anoxdata\\SAVE\\}}" Anahita: pageId: 78398 steam: 707110 @@ -8567,18 +8366,18 @@ Analemma: Analistica Academy: pageId: 88828 steam: 816220 -'Analogue: A Hate Story': +"Analogue: A Hate Story": pageId: 6626 steam: 209370 steamSide: - 209373 templates: - - '{{Game data/config|Windows|{{p|appdata}}\RenPy\Analogue\persistent}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/RenPy/Analogue/persistent}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.renpy/Analogue/persistent}}' - - '{{Game data/saves|Windows|{{p|appdata}}\RenPy\Analogue\1-*.save}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/RenPy/Analogue/1-*.save}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.renpy/Analogue/1-*.save}}' + - "{{Game data/config|Windows|{{p|appdata}}\\RenPy\\Analogue\\persistent}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/RenPy/Analogue/persistent}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.renpy/Analogue/persistent}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\RenPy\\Analogue\\1-*.save}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/RenPy/Analogue/1-*.save}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.renpy/Analogue/1-*.save}}" Anamorphine: pageId: 52121 steam: 545620 @@ -8589,8 +8388,8 @@ Anarchy Arcade: pageId: 20761 steam: 266430 templates: - - '{{Game data/config|Windows|{{p|game}}\aarcade\cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\aarcade\save}}' + - "{{Game data/config|Windows|{{p|game}}\\aarcade\\cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\aarcade\\save}}" Anarchy Online: pageId: 58295 steam: 396280 @@ -8600,9 +8399,9 @@ Anarcute: steamSide: - 490310 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Anarteam\Anarcute\}}' - - '{{Game data/saves|Windows|{{p|Steam}}\steamapps\common\Anarcute\anarcute_Data\Savefiles\}}' - - '{{Game data/saves|Amazon Games|{{p|appdata}}\Anarcute\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Anarteam\\Anarcute\\}}" + - "{{Game data/saves|Windows|{{p|Steam}}\\steamapps\\common\\Anarcute\\anarcute_Data\\Savefiles\\}}" + - "{{Game data/saves|Amazon Games|{{p|appdata}}\\Anarcute\\}}" Anark.io: pageId: 90977 steam: 808120 @@ -8615,32 +8414,30 @@ Anceder: Ancestors Legacy: gog: 1848455842 gogSide: - - 1797616458 - - 2117158635 - - 1855776856 - - 1774090337 - 1338520897 + - 1774090337 + - 1797616458 + - 1855776856 + - 2117158635 pageId: 62203 steam: 620590 steamSide: - - 1049810 - 799330 - 799331 - 983360 + - 1049810 templates: - - '{{Game data/config|Steam|{{p|userprofile\Documents}}\AncestorsLegacy\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/config|Windows|{{P|game}}\Anc\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Steam|{{p|userprofile\Documents}}\AncestorsLegacy\SaveGames\}}' - - '{{Game data/saves|Windows|{{P|game}}\Anc\Savegames\}}' -'Ancestors: The Humankind Odyssey': + - "{{Game data/config|Steam|{{p|userprofile\\Documents}}\\AncestorsLegacy\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/config|Windows|{{P|game}}\\Anc\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Steam|{{p|userprofile\\Documents}}\\AncestorsLegacy\\SaveGames\\}}" + - "{{Game data/saves|Windows|{{P|game}}\\Anc\\Savegames\\}}" +"Ancestors: The Humankind Odyssey": gog: 1482578564 pageId: 124593 steam: 536270 templates: - - >- - {{Game - data/config|Windows|{{P|localappdata}}\Ancestors\Saved\SaveGames\System.sav|{{P|localappdata}}\Ancestors\Saved\Config\WindowsNoEditor\}} - - '{{Game data/saves|Windows|{{P|localappdata}}\Ancestors\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\Ancestors\\Saved\\SaveGames\\System.sav|{{P|localappdata}}\\Ancestors\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Ancestors\\Saved\\SaveGames\\}}" Ancestory: pageId: 46080 steam: 349840 @@ -8648,7 +8445,7 @@ Anchorhead: pageId: 80551 steam: 726870 templates: - - '{{Game data/config|Windows|{{P|appdata}}\Anchorhead\lectrote-prefs.json}}' + - "{{Game data/config|Windows|{{P|appdata}}\\Anchorhead\\lectrote-prefs.json}}" Ancient Abyss: pageId: 122660 steam: 973450 @@ -8658,33 +8455,33 @@ Ancient Amuletor VR: Ancient Anathema: pageId: 125920 steam: 1010540 -'Ancient Battle: Alexander': +"Ancient Battle: Alexander": pageId: 141326 steam: 1025520 -'Ancient Battle: Hannibal': +"Ancient Battle: Hannibal": pageId: 123377 steam: 715280 -'Ancient Battle: Rome': +"Ancient Battle: Rome": pageId: 67833 steam: 363840 -'Ancient Battle: Successors': +"Ancient Battle: Successors": pageId: 144661 steam: 1025510 Ancient Cities: pageId: 165741 steam: 667610 templates: - - '{{Game data/config|Windows|%userprofile%\Documents\Uncasual Games\Ancient Cities}}' + - "{{Game data/config|Windows|%userprofile%\\Documents\\Uncasual Games\\Ancient Cities}}" Ancient Code VR (The Fantasy Egypt Journey): pageId: 70242 renamedFrom: - Ancient Code VR( The Fantasy Egypt Journey) steam: 546040 -'Ancient Conquest: Quest for the Golden Fleece': +"Ancient Conquest: Quest for the Golden Fleece": pageId: 164094 templates: - - '{{Game data/config|Windows|{{p|hklm}}\SOFTWARE\Megamedia\Megamedia Australia\Ancient conquest\Config}}' - - '{{Game data/saves|Windows|{{p|game}}\savegame}}' + - "{{Game data/config|Windows|{{p|hklm}}\\SOFTWARE\\Megamedia\\Megamedia Australia\\Ancient conquest\\Config}}" + - "{{Game data/saves|Windows|{{p|game}}\\savegame}}" Ancient Dungeon: pageId: 145326 renamedFrom: @@ -8695,14 +8492,14 @@ Ancient Enemy: pageId: 126224 steam: 993790 templates: - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Grey Alien Games\Ancient Enemy}}' + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Grey Alien Games\\Ancient Enemy}}" Ancient Evil: pageId: 149490 steam: 1156530 Ancient Frontier: pageId: 39706 steam: 521790 -'Ancient Frontier: Steel Shadows': +"Ancient Frontier: Steel Shadows": pageId: 98216 steam: 734730 Ancient Future: @@ -8720,7 +8517,7 @@ Ancient Journey VR: Ancient Land of Ys: pageId: 75747 templates: - - '{{Game data/saves|DOS|{{p|game}}\*.DAT}}' + - "{{Game data/saves|DOS|{{p|game}}\\*.DAT}}" Ancient Planet: pageId: 48805 steam: 345090 @@ -8739,7 +8536,7 @@ Ancient Siberia: Ancient Space: pageId: 49603 steam: 249190 -'Ancient Stories: Gods of Egypt': +"Ancient Stories: Gods of Egypt": pageId: 138808 steam: 1093280 Ancient Tower: @@ -8748,37 +8545,37 @@ Ancient Tower: Ancient VR Coaster: pageId: 35112 steam: 495320 -'Ancient War: Three Kingdoms': +"Ancient War: Three Kingdoms": pageId: 125779 steam: 1002850 Ancient Warfare 3: pageId: 78254 steam: 758990 -'Ancient Warlords: Aequilibrium': +"Ancient Warlords: Aequilibrium": pageId: 95525 steam: 868350 -'Ancient Wars: Sparta': +"Ancient Wars: Sparta": pageId: 89817 steam: 8010 -'Ancient Worlds: Jaguar''s Fate': +"Ancient Worlds: Jaguar's Fate": pageId: 67522 steam: 681480 Ancient knowledge: pageId: 139414 steam: 1101770 -'Ancient lands: the Tsar awakening': +"Ancient lands: the Tsar awakening": pageId: 124538 steam: 951190 -'Ancients 1: Death Watch': +"Ancients 1: Death Watch": pageId: 76473 templates: - - '{{Game data/config|DOS|{{p|game}}\SETUP.DTA}}' - - '{{Game data/saves|DOS|{{p|game}}\SAVEGAME.DTA|{{p|game}}\*.KAR}}' -'Ancients II: Approaching Evil': + - "{{Game data/config|DOS|{{p|game}}\\SETUP.DTA}}" + - "{{Game data/saves|DOS|{{p|game}}\\SAVEGAME.DTA|{{p|game}}\\*.KAR}}" +"Ancients II: Approaching Evil": pageId: 76477 templates: - - '{{Game data/config|DOS|{{p|game}}\SETUP.DTA}}' - - '{{Game data/saves|DOS|{{p|game}}\SAVEGAME.DTA|{{p|game}}\*.KAR}}' + - "{{Game data/config|DOS|{{p|game}}\\SETUP.DTA}}" + - "{{Game data/saves|DOS|{{p|game}}\\SAVEGAME.DTA|{{p|game}}\\*.KAR}}" Ancients of Ooga: pageId: 40971 steam: 91810 @@ -8795,20 +8592,20 @@ And Yet It Moves: pageId: 4698 steam: 18700 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Broken Rules\And Yet It Moves}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Broken Rules/And Yet It Moves/}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.Broken Rules/And Yet It Moves/}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Broken Rules\And Yet It Moves}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Broken Rules/And Yet It Moves/}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.Broken Rules/And Yet It Moves/}}' -'And You''re There, Too': + - "{{Game data/config|Windows|{{p|appdata}}\\Broken Rules\\And Yet It Moves}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Broken Rules/And Yet It Moves/}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.Broken Rules/And Yet It Moves/}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Broken Rules\\And Yet It Moves}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Broken Rules/And Yet It Moves/}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.Broken Rules/And Yet It Moves/}}" +"And You're There, Too": pageId: 122008 steam: 953440 Andarilho: pageId: 60946 steam: 450860 templates: - - '{{Game data/saves|Windows|{{p|game}}\Andarilho\Save}}' + - "{{Game data/saves|Windows|{{p|game}}\\Andarilho\\Save}}" Anderson: pageId: 94780 steam: 863220 @@ -8839,7 +8636,7 @@ Andromeda Wing: Andromedum: pageId: 43546 steam: 457660 -'Anew: The Distant Light': +"Anew: The Distant Light": pageId: 109486 steam: 905530 Angband: @@ -8854,8 +8651,8 @@ Angel Light The Elven Truce: pageId: 127337 steam: 772730 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Rocket Regios studios\Angel Light The Elven Truce}}' - - '{{Game data/saves|Windows|No save function available}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Rocket Regios studios\\Angel Light The Elven Truce}}" + - "{{Game data/saves|Windows|No save function available}}" Angel Precario: pageId: 89680 steam: 810520 @@ -8863,20 +8660,20 @@ Angel Wings: pageId: 95333 steam: 862440 templates: - - '{{Game data/saves|Windows|{{p|game}}\saves\autosave\}}' -'Angel and Devil,ninja,sushi,tempura,panda and the statue of liverty': + - "{{Game data/saves|Windows|{{p|game}}\\saves\\autosave\\}}" +"Angel and Devil,ninja,sushi,tempura,panda and the statue of liverty": pageId: 110174 steam: 923080 -Angel's Love: +"Angel's Love": pageId: 92771 steam: 845770 -'Angel, Devil, Elf and Me!': +"Angel, Devil, Elf and Me!": pageId: 146036 steam: 963300 AngelShooter: pageId: 92029 steam: 817440 -Angela's Odyssey: +"Angela's Odyssey": pageId: 134733 steam: 1061680 Angeldust: @@ -8885,22 +8682,20 @@ Angeldust: AngeliaLost: pageId: 95109 steam: 805330 -'Angelica Weaver: Catch Me When You Can': +"Angelica Weaver: Catch Me When You Can": pageId: 40667 steam: 218700 Angelo Skate Away: pageId: 80873 steam: 756680 -'Angelo and Deemon: One Hell of a Quest': +"Angelo and Deemon: One Hell of a Quest": pageId: 135465 steam: 945160 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Specialbit Studio\Angelo and Deemon One Hell of a Quest}}' - - '{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/Specialbit Studio/angelo-deemon/prefs}}' - - >- - {{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Specialbit Studio\Angelo and Deemon One Hell of a - Quest\}} - - '{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/Specialbit Studio/angelo-deemon/}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Specialbit Studio\\Angelo and Deemon One Hell of a Quest}}" + - "{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/Specialbit Studio/angelo-deemon/prefs}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Specialbit Studio\\Angelo and Deemon One Hell of a Quest\\}}" + - "{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/Specialbit Studio/angelo-deemon/}}" Angels & Demigods: pageId: 39099 steam: 503160 @@ -8908,20 +8703,20 @@ Angels Fall First: pageId: 28925 steam: 367270 templates: - - '{{Game data/config|Windows|{{p|game}}\Angels Fall First\AFFGame\Config}}' + - "{{Game data/config|Windows|{{p|game}}\\Angels Fall First\\AFFGame\\Config}}" Angels That Kill: pageId: 45549 steam: 383240 Angels of Death: pageId: 54425 steam: 537110 -'Angels of Fasaria: Version 2.0': +"Angels of Fasaria: Version 2.0": pageId: 49151 steam: 335900 Angels with Scaly Wings: pageId: 56794 steam: 571880 -'Angels, Demons and Men': +"Angels, Demons and Men": pageId: 104619 steam: 909170 Angelus Brand VR Experience: @@ -8930,16 +8725,16 @@ Angelus Brand VR Experience: AngerDark: pageId: 123503 steam: 983710 -'AngerForce: Reloaded': +"AngerForce: Reloaded": gog: 1924930564 pageId: 69651 steam: 650780 templates: - - '{{Game data/config|Windows| {{p|userprofile}}\AppData\LocalLow\ScreamBox\AngerForcePC}}' + - "{{Game data/config|Windows| {{p|userprofile}}\\AppData\\LocalLow\\ScreamBox\\AngerForcePC}}" Angle of Attack: pageId: 41246 steam: 36900 -Angler's Life: +"Angler's Life": pageId: 141960 steam: 1085390 Angles: @@ -8954,8 +8749,8 @@ Angry Ball VR: Angry Birds: pageId: 163701 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Rovio\Angry Birds\settings.lua}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Rovio\Angry Birds\*.*}}' + - "{{Game data/config|Windows|{{p|appdata}}\\Rovio\\Angry Birds\\settings.lua}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Rovio\\Angry Birds\\*.*}}" Angry Birds 2: pageId: 163826 Angry Birds Friends: @@ -8965,32 +8760,32 @@ Angry Birds Reloaded: Angry Birds Rio: pageId: 163704 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Rovio\Angry Birds Rio\settings.lua}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Rovio\Angry Birds Rio\*.*}}' + - "{{Game data/config|Windows|{{p|appdata}}\\Rovio\\Angry Birds Rio\\settings.lua}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Rovio\\Angry Birds Rio\\*.*}}" Angry Birds Seasons: pageId: 163730 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Rovio\Angry Birds Seasons\settings.lua}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Rovio\Angry Birds Seasons\*.*}}' + - "{{Game data/config|Windows|{{p|appdata}}\\Rovio\\Angry Birds Seasons\\settings.lua}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Rovio\\Angry Birds Seasons\\*.*}}" Angry Birds Space: pageId: 20679 steam: 210550 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Rovio\Angry Birds Space\settings.lua}}' - - '{{Game data/config|Steam|{{P|steam}}\userdata\{{P|uid}}\210550\remote\settings.lua}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Rovio\Angry Birds Space\*.*}}' - - '{{Game data/saves|Steam|{{P|steam}}\userdata\{{P|uid}}\210550\remote\}}' + - "{{Game data/config|Windows|{{p|appdata}}\\Rovio\\Angry Birds Space\\settings.lua}}" + - "{{Game data/config|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\210550\\remote\\settings.lua}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Rovio\\Angry Birds Space\\*.*}}" + - "{{Game data/saves|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\210550\\remote\\}}" Angry Birds Star Wars: pageId: 163736 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Rovio\Angry Birds Star Wars\settings.lua}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Rovio\Angry Birds Star Wars\*.*}}' + - "{{Game data/config|Windows|{{p|appdata}}\\Rovio\\Angry Birds Star Wars\\settings.lua}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Rovio\\Angry Birds Star Wars\\*.*}}" Angry Birds Star Wars II: pageId: 163739 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Rovio\Angry Birds Star Wars II\settings.lua}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Rovio\Angry Birds Star Wars II\*.*}}' -'Angry Birds VR: Isle of Pigs': + - "{{Game data/config|Windows|{{p|appdata}}\\Rovio\\Angry Birds Star Wars II\\settings.lua}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Rovio\\Angry Birds Star Wars II\\*.*}}" +"Angry Birds VR: Isle of Pigs": pageId: 127048 steam: 1001140 Angry Bunny: @@ -9024,17 +8819,17 @@ Angry Video Game Nerd Adventures: pageId: 9639 steam: 237740 templates: - - '{{Game data/config|Windows|{{p|appdata}}\MMFApplications\avgn.ini}}' - - '{{Game data/saves|Windows|{{p|appdata}}\MMFApplications\avgn.ini}}' + - "{{Game data/config|Windows|{{p|appdata}}\\MMFApplications\\avgn.ini}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\MMFApplications\\avgn.ini}}" Angry Video Game Nerd I & II Deluxe: pageId: 162662 steam: 1162960 -'Angry Video Game Nerd II: ASSimilation': +"Angry Video Game Nerd II: ASSimilation": pageId: 37475 steam: 409660 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\ScrewAttackGames\AVGN2\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\ScrewAttackGames\AVGN2\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\ScrewAttackGames\\AVGN2\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\ScrewAttackGames\\AVGN2\\}}" Angry Zombies: pageId: 150484 steam: 1183670 @@ -9053,10 +8848,10 @@ Angus Hates Aliens: Angvik: pageId: 50630 steam: 278890 -Anicon - Animal Complex - Cat's Path: +"Anicon - Animal Complex - Cat's Path": pageId: 41890 steam: 502120 -Anicon - Animal Complex - Sheep's Path: +"Anicon - Animal Complex - Sheep's Path": pageId: 103805 steam: 611390 AnimVR: @@ -9065,17 +8860,17 @@ AnimVR: Anima: pageId: 144961 steam: 917830 -'Anima Gate of Memories: The Nameless Chronicles': +"Anima Gate of Memories: The Nameless Chronicles": pageId: 94046 steam: 850060 -'Anima: Gate of Memories': +"Anima: Gate of Memories": gog: 1183022406 pageId: 42728 steam: 380750 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Anima Project Studio\GateofMemories\}}' - - '{{Game data/saves|Windows|{{p|hkcu}}\Software\Anima Project Studio\GateofMemories\}}' - - '{{Game data/saves|Linux|{{p|xdgconfighome}}/unity3d/Anima Project Studio/GateofMemories/prefs}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Anima Project Studio\\GateofMemories\\}}" + - "{{Game data/saves|Windows|{{p|hkcu}}\\Software\\Anima Project Studio\\GateofMemories\\}}" + - "{{Game data/saves|Linux|{{p|xdgconfighome}}/unity3d/Anima Project Studio/GateofMemories/prefs}}" Animal Crush: pageId: 66786 steam: 666690 @@ -9101,8 +8896,8 @@ Animal Lover: pageId: 56681 steam: 542200 templates: - - '{{Game data/config|Windows|{{p|game}}\renpy\config.py}}' - - '{{Game data/saves|Windows|{{P|appdata}}\renpy\Animal Lover PROTO-1406568715\*.save|{{p|game}}\game\saves\*.save}}' + - "{{Game data/config|Windows|{{p|game}}\\renpy\\config.py}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\renpy\\Animal Lover PROTO-1406568715\\*.save|{{p|game}}\\game\\saves\\*.save}}" Animal Notes: pageId: 138576 steam: 1090350 @@ -9116,8 +8911,8 @@ Animal Super Squad: pageId: 74524 steam: 703840 templates: - - '{{Game data/config|Windows|{{p|LOCALAPPDATA}}\GWGame\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{p|LOCALAPPDATA}}\GWGame\Saved\}}' + - "{{Game data/config|Windows|{{p|LOCALAPPDATA}}\\GWGame\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{p|LOCALAPPDATA}}\\GWGame\\Saved\\}}" Animal Up!: pageId: 144506 steam: 1127730 @@ -9134,8 +8929,8 @@ Animality: pageId: 57113 steam: 576470 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\RACE\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\RACE\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\RACE\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\RACE\\}}" Animallica: pageId: 64767 steam: 638850 @@ -9144,39 +8939,39 @@ Animals Memory: renamedFrom: - Memory Meme steam: 754520 -'Animals Memory: Birds': +"Animals Memory: Birds": pageId: 79212 steam: 775910 -'Animals Memory: Cats': +"Animals Memory: Cats": pageId: 82718 steam: 799800 -'Animals Memory: Dinosaurs': +"Animals Memory: Dinosaurs": pageId: 79210 steam: 775520 -'Animals Memory: Dogs': +"Animals Memory: Dogs": pageId: 79784 steam: 778340 -'Animals Memory: Horses': +"Animals Memory: Horses": pageId: 121421 steam: 956090 -'Animals Memory: Insect': +"Animals Memory: Insect": pageId: 79786 steam: 778860 -'Animals Memory: Underwater Kingdom': +"Animals Memory: Underwater Kingdom": pageId: 79722 steam: 777340 -'Animamundi: Dark Alchemist': +"Animamundi: Dark Alchemist": pageId: 164974 Animated Puzzles: pageId: 33826 steam: 379610 -'Animation Throwdown: The Quest for Cards': +"Animation Throwdown: The Quest for Cards": pageId: 61508 steam: 591960 Anime Artist: pageId: 139328 steam: 1101270 -'Anime Babes: Solitaire': +"Anime Babes: Solitaire": pageId: 114210 steam: 937740 Anime Berry Match-Three: @@ -9245,32 +9040,32 @@ Animus - Stand Alone: Animyst: pageId: 96639 steam: 871100 -'Anito: Defend a Land Enraged': +"Anito: Defend a Land Enraged": pageId: 176338 Ankh - Anniversary Edition: gog: 1216103455 pageId: 47845 steam: 353980 templates: - - '{{Game data/config|Windows|{{p|game}}\media\Ankh.ini|{{p|game}}\media\keybinds.ini}}' - - '{{Game data/saves|Windows|{{P|game}}\save\|{{p|APPDATA}}\Ankh\save\}}' -Ankh Guardian - Treasure of the Demon's Temple/ゴッド・オブ・ウォール 魔宮の秘宝: + - "{{Game data/config|Windows|{{p|game}}\\media\\Ankh.ini|{{p|game}}\\media\\keybinds.ini}}" + - "{{Game data/saves|Windows|{{P|game}}\\save\\|{{p|APPDATA}}\\Ankh\\save\\}}" +"Ankh Guardian - Treasure of the Demon's Temple/ゴッド・オブ・ウォール 魔宮の秘宝": pageId: 140892 steam: 975160 -'Ankh: Battle of the Gods': +"Ankh: Battle of the Gods": gog: 1721250578 pageId: 17295 steam: 12450 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\Ankh - Battle of the Gods\settings.ini}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\Ankh - Battle of the Gods\save\}}' -'Ankh: Heart of Osiris': + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\Ankh - Battle of the Gods\\settings.ini}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\Ankh - Battle of the Gods\\save\\}}" +"Ankh: Heart of Osiris": gog: 1621663895 pageId: 21219 steam: 12440 templates: - - '{{Game data/config|Windows|{{P|appdata}}\Ankh - Heart of Osiris\settings.ini}}' - - '{{Game data/saves|Windows|{{P|appdata}}\Ankh - Heart of Osiris\save\}}' + - "{{Game data/config|Windows|{{P|appdata}}\\Ankh - Heart of Osiris\\settings.ini}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\Ankh - Heart of Osiris\\save\\}}" Anki: pageId: 46745 steam: 395380 @@ -9281,50 +9076,43 @@ Ann: pageId: 173903 steam: 1511270 templates: - - >- - {{Game - data/config|Windows|{{p|game}}\Ann\save\config.rmmzsave|{{p|game}}\AnnJP\save\config.rmmzsave|{{p|game}}\AnnJP - Offline version\save\config.rmmzsave}} - - >- - {{Game data/saves|Windows|{{p|game}}\Ann\save\*.rmmzsave|{{p|game}}\AnnJP\save\*.rmmzsave|{{p|game}}\AnnJP Offline - version\save\*.rmmzsave}} -'Ann Achronist: Many Happy Returns': + - "{{Game data/config|Windows|{{p|game}}\\Ann\\save\\config.rmmzsave|{{p|game}}\\AnnJP\\save\\config.rmmzsave|{{p|game}}\\AnnJP Offline version\\save\\config.rmmzsave}}" + - "{{Game data/saves|Windows|{{p|game}}\\Ann\\save\\*.rmmzsave|{{p|game}}\\AnnJP\\save\\*.rmmzsave|{{p|game}}\\AnnJP Offline version\\save\\*.rmmzsave}}" +"Ann Achronist: Many Happy Returns": pageId: 149410 steam: 1152580 Anna - Extended Edition: pageId: 10681 steam: 217690 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Dreampainters\AnnaEE\}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Dreampainters/AnnaEE/}}' - - >- - {{Game - data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Dreampainters\AnnaEE\Saves\|{{P|steam}}\userdata\{{P|uid}}\217690\remote\__annaext__\saves\}} - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Dreampainters/AnnaEE/}}' -Anna's Quest: + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Dreampainters\\AnnaEE\\}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Dreampainters/AnnaEE/}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Dreampainters\\AnnaEE\\Saves\\|{{P|steam}}\\userdata\\{{P|uid}}\\217690\\remote\\__annaext__\\saves\\}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Dreampainters/AnnaEE/}}" +"Anna's Quest": gog: 1434460532 pageId: 34350 steam: 327220 steamSide: - 454490 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Daedalic Entertainment GmbH\Anna''s Quest\config.ini}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/Daedalic Entertainment GmbH/Anna''s Quest/config.ini}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\Daedalic Entertainment GmbH\Anna''s Quest\Savegames\}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/Daedalic Entertainment GmbH/Anna''s Quest/Savegames/}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\Daedalic Entertainment GmbH\\Anna's Quest\\config.ini}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/Daedalic Entertainment GmbH/Anna's Quest/config.ini}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Daedalic Entertainment GmbH\\Anna's Quest\\Savegames\\}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/Daedalic Entertainment GmbH/Anna's Quest/Savegames/}}" Annals of Rome: gog: 1118180511 pageId: 149650 steam: 1148670 -'Anne McCaffrey''s Freedom: First Resistance': +"Anne McCaffrey's Freedom: First Resistance": pageId: 187200 templates: - - '{{Game data/config|Windows|{{p|game}}}}' - - '{{Game data/saves|Windows|{{p|game}}\SaveGame}}' + - "{{Game data/config|Windows|{{p|game}}}}" + - "{{Game data/saves|Windows|{{p|game}}\\SaveGame}}" Annie Amber: pageId: 33561 steam: 464440 -'Annie: Last Hope': +"Annie: Last Hope": pageId: 153171 steam: 1174390 Anno 1404: @@ -9332,46 +9120,40 @@ Anno 1404: pageId: 28752 steam: 33210 steamSide: - - 33340 - 33250 + - 33340 - 33350 - 33359 templates: - - >- - {{Game - data/config|Windows|{{p|appdata}}\Ubisoft\Anno1404\Config\Engine.ini|{{p|appdata}}\Ubisoft\Anno1404Addon\Config\Engine.ini}} - - >- - {{Game data/saves|Windows|{{p|appdata}}\Ubisoft\Anno1404\Profiles\|{{p|userprofile\Documents}}\Anno - 1404\Savegames|{{p|userprofile\Documents}}\Anno 1404 Venice\Savegames}} -'Anno 1404: History Edition': + - "{{Game data/config|Windows|{{p|appdata}}\\Ubisoft\\Anno1404\\Config\\Engine.ini|{{p|appdata}}\\Ubisoft\\Anno1404Addon\\Config\\Engine.ini}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Ubisoft\\Anno1404\\Profiles\\|{{p|userprofile\\Documents}}\\Anno 1404\\Savegames|{{p|userprofile\\Documents}}\\Anno 1404 Venice\\Savegames}}" +"Anno 1404: History Edition": pageId: 161410 steam: 1281630 templates: - - '{{Game data/config|Windows|{{P|appdata}}\Ubisoft\Anno1404\Config}}' - - >- - {{Game data/saves|Windows|{{P|userprofile\Documents}}\Anno1404\Savegames|{{P|userprofile}}\Documents\Anno1404 - Venice\Savegames}} + - "{{Game data/config|Windows|{{P|appdata}}\\Ubisoft\\Anno1404\\Config}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\Anno1404\\Savegames|{{P|userprofile}}\\Documents\\Anno1404 Venice\\Savegames}}" Anno 1503: gog: 1438074791 pageId: 27506 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\SOFTWARE\Max-Design\Anno1503}}' - - '{{Game data/saves|Windows|{{Path|Game}}\SaveGame}}' -'Anno 1503: History Edition': + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\Max-Design\\Anno1503}}" + - "{{Game data/saves|Windows|{{Path|Game}}\\SaveGame}}" +"Anno 1503: History Edition": pageId: 161430 templates: - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\Anno 1503 History Edition\SaveGame\Profilename\}}' -'Anno 1602: Creation of a New World': + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\Anno 1503 History Edition\\SaveGame\\Profilename\\}}" +"Anno 1602: Creation of a New World": gog: 1438168222 pageId: 8788 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\SOFTWARE\ANNO1602}}' - - '{{Game data/saves|Windows|{{p|game}}\SAVEGAME|{{p|game}}\Game.dat}}' -'Anno 1602: History Edition': + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\ANNO1602}}" + - "{{Game data/saves|Windows|{{p|game}}\\SAVEGAME|{{p|game}}\\Game.dat}}" +"Anno 1602: History Edition": pageId: 161426 templates: - - '{{Game data/config|Windows|{{P|appdata}}\Ubisoft\Anno1602\Config}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\Anno1602 History Edition\}}' + - "{{Game data/config|Windows|{{P|appdata}}\\Ubisoft\\Anno1602\\Config}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\Anno1602 History Edition\\}}" Anno 1701: gog: 1438075172 pageId: 24920 @@ -9379,34 +9161,32 @@ Anno 1701: steamSide: - 7880 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Virtual Store\Program Files (x86)\Aspyr\1701 AD\Engine.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\Savegames\}}' -'Anno 1701: History Edition': + - "{{Game data/config|Windows|{{p|localappdata}}\\Virtual Store\\Program Files (x86)\\Aspyr\\1701 AD\\Engine.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\Savegames\\}}" +"Anno 1701: History Edition": pageId: 161402 templates: - - '{{Game data/config|Windows|{{P|appdata}}\Ubisoft\Anno1701\Config}}' - - '{{Game data/saves|Windows|{{P|uplay}}\games\Anno 1701 - History Edition\Savegames}}' + - "{{Game data/config|Windows|{{P|appdata}}\\Ubisoft\\Anno1701\\Config}}" + - "{{Game data/saves|Windows|{{P|uplay}}\\games\\Anno 1701 - History Edition\\Savegames}}" Anno 1800: pageId: 109838 steam: 916440 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Anno 1800\config\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Anno 1800\accounts\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Anno 1800\\config\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Anno 1800\\accounts\\}}" Anno 2070: pageId: 1719 steam: 48240 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Ubisoft\ANNO 2070\Config\}}' - - >- - {{Game data/saves|Windows|{{p|userprofile\Documents}}\ANNO 2070\Accounts\|{{p|appdata}}\Ubisoft\ANNO - 2070\Accounts\}} + - "{{Game data/config|Windows|{{p|appdata}}\\Ubisoft\\ANNO 2070\\Config\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\ANNO 2070\\Accounts\\|{{p|appdata}}\\Ubisoft\\ANNO 2070\\Accounts\\}}" Anno 2205: pageId: 25853 steam: 375910 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Anno 2205\config\}}' - - '{{Game data/saves|Windows|{{p|uplay}}\savegames\{{p|uid}}\2052\}}' -'Anno Domini: Huntsman': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Anno 2205\\config\\}}" + - "{{Game data/saves|Windows|{{p|uplay}}\\savegames\\{{p|uid}}\\2052\\}}" +"Anno Domini: Huntsman": pageId: 122370 steam: 960680 Anno Online: @@ -9418,12 +9198,12 @@ Annotation of Love: Annual: pageId: 99472 steam: 710090 -'Annwn: The Otherworld': +"Annwn: The Otherworld": pageId: 80507 steam: 770860 templates: - - '{{Game data/config|Windows|{{P|userprofile}}\AppData\LocalLow\Quantum Soup Studios\Annwn}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Quantum Soup Studios\Annwn}}' + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Quantum Soup Studios\\Annwn}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Quantum Soup Studios\\Annwn}}" Anode: pageId: 46160 steam: 401120 @@ -9432,24 +9212,18 @@ Anodyne: pageId: 4872 steam: 234900 templates: - - >- - {{Game data/saves|Windows|{{p|appdata}}\Anodyne\Local - Store\#SharedObjects\Anodyne.swf|{{p|userprofile}}\.Anodyne}} - - >- - {{Game data/saves|OS X|{{p|osxhome}}/Library/Preferences/Anodyne/Local - Store/#SharedObjects/Anodyne.swf/|~/Anodyne}} - - '{{Game data/saves|Linux|{{p|linuxhome}}/.appdata/Anodyne/Local Store/#SharedObjects/Anodyne.swf/|~/Anodyne}}' -'Anodyne 2: Return to Dust': + - "{{Game data/saves|Windows|{{p|appdata}}\\Anodyne\\Local Store\\#SharedObjects\\Anodyne.swf|{{p|userprofile}}\\.Anodyne}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Preferences/Anodyne/Local Store/#SharedObjects/Anodyne.swf/|~/Anodyne}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.appdata/Anodyne/Local Store/#SharedObjects/Anodyne.swf/|~/Anodyne}}" +"Anodyne 2: Return to Dust": gog: 1092487258 pageId: 98592 steam: 877810 templates: - - >- - {{Game data/config|Windows|{{P|userprofile}}\AppData\LocalLow\Analgesic Productions LLC\Anodyne - 2\config*.txt|{{P|hkcu}}\Software\Analgesic Productions LLC\Anodyne 2\}} - - '{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/Analgesic Productions LLC/Anodyne 2/config*.txt}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Analgesic Productions LLC\Anodyne 2\save*.txt}}' - - '{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/Analgesic Productions LLC/Anodyne 2/save*.txt}}' + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Analgesic Productions LLC\\Anodyne 2\\config*.txt|{{P|hkcu}}\\Software\\Analgesic Productions LLC\\Anodyne 2\\}}" + - "{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/Analgesic Productions LLC/Anodyne 2/config*.txt}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Analgesic Productions LLC\\Anodyne 2\\save*.txt}}" + - "{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/Analgesic Productions LLC/Anodyne 2/save*.txt}}" Anomalie: pageId: 42718 steam: 474780 @@ -9464,62 +9238,62 @@ Anomaly 2: pageId: 6425 steam: 236730 templates: - - '{{Game data/config|Windows|{{p|appdata}}\11bitstudios\Anomaly 2\}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.Anomaly 2/}}' - - '{{Game data/saves|Windows|{{p|appdata}}\11bitstudios\Anomaly 2\}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.Anomaly 2/}}' - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{P|uid}}/236730/remote/}}' + - "{{Game data/config|Windows|{{p|appdata}}\\11bitstudios\\Anomaly 2\\}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.Anomaly 2/}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\11bitstudios\\Anomaly 2\\}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.Anomaly 2/}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{P|uid}}/236730/remote/}}" Anomaly Defenders: gog: 1207664863 pageId: 17029 steam: 294750 templates: - - '{{Game data/config|Windows|{{p|APPDATA}}\11bitstudios\Anomaly Defense\}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.Anomaly Defenders/config.bin}}' - - '{{Game data/saves|Windows|{{p|APPDATA}}\11bitstudios\Anomaly Defense\}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.Anomaly Defenders/}}' - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{P|uid}}/294750/}}' + - "{{Game data/config|Windows|{{p|APPDATA}}\\11bitstudios\\Anomaly Defense\\}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.Anomaly Defenders/config.bin}}" + - "{{Game data/saves|Windows|{{p|APPDATA}}\\11bitstudios\\Anomaly Defense\\}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.Anomaly Defenders/}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{P|uid}}/294750/}}" Anomaly Korea: gog: 1207667133 pageId: 8039 steam: 251530 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Anomaly Korea\}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.Anomaly Korea/}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Anomaly Korea\}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.Anomaly Korea/}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Anomaly Korea\\}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.Anomaly Korea/}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Anomaly Korea\\}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.Anomaly Korea/}}" Anomaly Warzone Earth: gog: 1207659035 pageId: 4755 steam: 91200 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Anomaly Warzone Earth\}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.Anomaly/}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Anomaly Warzone Earth\}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.Anomaly/}}' - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{P|uid}}/91200/remote/}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Anomaly Warzone Earth\\}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.Anomaly/}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Anomaly Warzone Earth\\}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.Anomaly/}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{P|uid}}/91200/remote/}}" Anomaly Warzone Earth Mobile Campaign: gog: 1207667143 pageId: 16806 steam: 252170 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Anomaly Warzone Earth - Mobile Campaign\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Anomaly Warzone Earth - Mobile Campaign\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Anomaly Warzone Earth - Mobile Campaign\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Anomaly Warzone Earth - Mobile Campaign\\}}" Anomaly Zone: pageId: 153346 steam: 1157250 Anomie: pageId: 68388 steam: 625410 -'Anonymous Agony: File': +"Anonymous Agony: File": pageId: 136585 steam: 1081840 -'Anonymous Letter: Lost Heart / Stayer': +"Anonymous Letter: Lost Heart / Stayer": pageId: 155892 renamedFrom: - 匿名信:失心者 / Stayer steam: 1209170 -'Anonymous Letter: Prowler': +"Anonymous Letter: Prowler": pageId: 150136 renamedFrom: - Anonymous Letter :Prowler / 匿名信:隐匿者 @@ -9534,8 +9308,8 @@ Anonymous;Code: pageId: 178973 steam: 2291020 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\mages_steam\ANONYMOUS;CODE\config.dat}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\mages_steam\ANONYMOUS;CODE}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\mages_steam\\ANONYMOUS;CODE\\config.dat}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\mages_steam\\ANONYMOUS;CODE}}" Another Adventure: pageId: 59195 steam: 604450 @@ -9557,25 +9331,23 @@ Another Eden: pageId: 167093 steam: 1252600 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\AnotherEden\UserDefault.xml}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\AnotherEden\\UserDefault.xml}}" Another Hardcore Game: pageId: 121137 steam: 951050 -'Another Lost Phone: Laura''s Story': +"Another Lost Phone: Laura's Story": gog: 1418882576 pageId: 68691 steam: 689910 -'Another Metroid 2 Remake: Return of Samus': +"Another Metroid 2 Remake: Return of Samus": pageId: 40387 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\AM2R\config.ini|{{p|game}}\modifiers.ini}}' - - >- - {{Game data/config|OS X|{{P|osxhome}}/Library/Application - Support/com.yoyogames.am2r/config.ini|{{p|game}}/Contents/Resources/modifiers.ini}} - - '{{Game data/config|Linux|{{P|xdgconfighome}}/AM2R/config.ini}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\AM2R\save#}}' - - '{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/com.yoyogames.am2r/save#}}' - - '{{Game data/saves|Linux|{{P|xdgconfighome}}/AM2R}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\AM2R\\config.ini|{{p|game}}\\modifiers.ini}}" + - "{{Game data/config|OS X|{{P|osxhome}}/Library/Application Support/com.yoyogames.am2r/config.ini|{{p|game}}/Contents/Resources/modifiers.ini}}" + - "{{Game data/config|Linux|{{P|xdgconfighome}}/AM2R/config.ini}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\AM2R\\save#}}" + - "{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/com.yoyogames.am2r/save#}}" + - "{{Game data/saves|Linux|{{P|xdgconfighome}}/AM2R}}" Another Otter: pageId: 103329 steam: 886470 @@ -9583,8 +9355,8 @@ Another Perspective: pageId: 38203 steam: 305920 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Another_Perspective\options.ini}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Another_Perspective\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Another_Perspective\\options.ini}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Another_Perspective\\}}" Another Reigny Day: pageId: 135855 steam: 882860 @@ -9595,8 +9367,8 @@ Another Sight: pageId: 109268 steam: 888630 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\SK\Saved\Config\WindowsNoEditor\}}' -Another Sight - Hodge's Journey: + - "{{Game data/config|Windows|{{p|localappdata}}\\SK\\Saved\\Config\\WindowsNoEditor\\}}" +"Another Sight - Hodge's Journey": pageId: 121746 steam: 963210 Another Star: @@ -9610,18 +9382,16 @@ Another World: pageId: 7270 steam: 233550 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\Another - World\AnotherWorldUserDef.xml|{{p|game}}\AnotherWorld.ini}} - - '{{Game data/config|OS X|{{p|osxhome}}/Documents/Another World/}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/DotEMU/Another World/}}' - - '{{Game data/saves|Windows|{{p|game}}\progression.dat|{{p|userprofile\Documents}}\Another World\}}' - - '{{Game data/saves|OS X|{{P|game}}/}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/DotEMU/Another World/}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Another World\\AnotherWorldUserDef.xml|{{p|game}}\\AnotherWorld.ini}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Documents/Another World/}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/DotEMU/Another World/}}" + - "{{Game data/saves|Windows|{{p|game}}\\progression.dat|{{p|userprofile\\Documents}}\\Another World\\}}" + - "{{Game data/saves|OS X|{{P|game}}/}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/DotEMU/Another World/}}" Another World Quest: pageId: 180321 steam: 2083010 -'Another World: Truck Driver': +"Another World: Truck Driver": pageId: 102631 steam: 889470 Anoxemia: @@ -9633,10 +9403,10 @@ Anstorm: Anstoss: gog: 1142670940 pageId: 169881 -'Anstoss 2: Der Fußballmanager': +"Anstoss 2: Der Fußballmanager": gog: 1808817480 pageId: 169884 -'Anstoss 3: Der Fußballmanager': +"Anstoss 3: Der Fußballmanager": gog: 1886141726 pageId: 169886 Answer Knot: @@ -9651,10 +9421,10 @@ Ant Empire: Ant Queen: pageId: 33585 steam: 491090 -'Ant War: Domination': +"Ant War: Domination": pageId: 46168 steam: 406080 -'Ant-gravity: Tiny''s Adventure': +"Ant-gravity: Tiny's Adventure": pageId: 54639 steam: 522890 AntQueen 3D: @@ -9664,13 +9434,13 @@ AntVentor: pageId: 76293 steam: 739190 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\LoopyMood\AntVentor}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\LoopyMood\AntVentor\AntVentor_1_0.save}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\LoopyMood\\AntVentor}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\LoopyMood\\AntVentor\\AntVentor_1_0.save}}" Antagonist: pageId: 59067 steam: 585260 templates: - - '{{Game data/saves|Windows|{{p|game}}\Save*.rvdata2}}' + - "{{Game data/saves|Windows|{{p|game}}\\Save*.rvdata2}}" Antarctic Girl 南極娘: pageId: 148669 steam: 1160900 @@ -9687,8 +9457,8 @@ Antenna: pageId: 43690 steam: 443580 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Antenna\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Antenna\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Antenna\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Antenna\\}}" Antenna Dilemma: pageId: 128523 steam: 1027990 @@ -9701,7 +9471,7 @@ Anthelion: Anthem: pageId: 63532 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\BioWare\Anthem\settings\}}' + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\BioWare\\Anthem\\settings\\}}" Anthology of Fear: pageId: 142225 steam: 1092530 @@ -9724,12 +9494,12 @@ Antichamber: pageId: 4635 steam: 219890 templates: - - '{{Game data/config|Windows|{{p|game}}\UDKGame\Config\}}' - - '{{Game data/config|OS X|{{p|game}}/Antichamber.app/Contents/Resources/UDKGame/Config/}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/AlexanderBruce/Antichamber/UDKGame/Config/}}' - - '{{Game data/saves|Windows|{{p|game}}\Binaries\Win32\SavedGame.bin}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Unreal Tournament 3/}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/AlexanderBruce/Antichamber/SavedGame.bin}}' + - "{{Game data/config|Windows|{{p|game}}\\UDKGame\\Config\\}}" + - "{{Game data/config|OS X|{{p|game}}/Antichamber.app/Contents/Resources/UDKGame/Config/}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/AlexanderBruce/Antichamber/UDKGame/Config/}}" + - "{{Game data/saves|Windows|{{p|game}}\\Binaries\\Win32\\SavedGame.bin}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Unreal Tournament 3/}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/AlexanderBruce/Antichamber/SavedGame.bin}}" Anticorps VR: pageId: 141568 steam: 1101220 @@ -9737,22 +9507,20 @@ Antiflux: pageId: 34127 steam: 470760 templates: - - '{{Game data/config|Windows|{{p|game}}\antiflux_settings.txt}}' - - '{{Game data/saves|Windows|{{p|game}}\antiflux_savegame.txt}}' + - "{{Game data/config|Windows|{{p|game}}\\antiflux_settings.txt}}" + - "{{Game data/saves|Windows|{{p|game}}\\antiflux_savegame.txt}}" Antigraviator: pageId: 77563 steam: 621020 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\CyberneticWalrus\Antigraviator\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\CyberneticWalrus\\Antigraviator\\}}" Antihero: gog: 1417678837 pageId: 53499 steam: 505640 templates: - - >- - {{Game data/config|Windows|{{P|appdata}}\com.timconkling.aciv\Local - Store\#SharedObjects\com.timconkling.aciv.sol}} - - '{{Game data/saves|Windows|{{P|appdata}}\com.timconkling.aciv\Local Store\SavedGames\}}' + - "{{Game data/config|Windows|{{P|appdata}}\\com.timconkling.aciv\\Local Store\\#SharedObjects\\com.timconkling.aciv.sol}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\com.timconkling.aciv\\Local Store\\SavedGames\\}}" Antihorror: pageId: 42023 steam: 496650 @@ -9802,7 +9570,7 @@ Antz Extreme Racing: Anubis Dungeon: pageId: 78008 steam: 756870 -Anubis' Challenge: +"Anubis' Challenge": pageId: 121936 steam: 971130 Anuchard: @@ -9815,13 +9583,13 @@ Anvil Saga: steamSide: - 1588800 templates: - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\Pirozhok Std_\Anvil Saga\Saves\*.es3}}' + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\Pirozhok Std_\\Anvil Saga\\Saves\\*.es3}}" Anvil of Dawn: gog: 1207659224 pageId: 7614 templates: - - '{{Game data/config|DOS|{{p|game}}\DATA\OPTIONS.DAT}}' - - '{{Game data/saves|DOS|{{p|game}}\SAVES\}}' + - "{{Game data/config|DOS|{{p|game}}\\DATA\\OPTIONS.DAT}}" + - "{{Game data/saves|DOS|{{p|game}}\\SAVES\\}}" Anxiety: pageId: 66015 steam: 667340 @@ -9837,7 +9605,7 @@ AoF Chess Club 2.0: AoF World Online: pageId: 48579 steam: 339860 -'AoT: Attack on Titanous The Game': +"AoT: Attack on Titanous The Game": pageId: 132745 steam: 1044830 Aokana - EXTRA1: @@ -9847,7 +9615,7 @@ Aokana - Four Rhythms Across the Blue: pageId: 141965 steam: 1044620 templates: - - '{{Game data/saves|Windows|{{p|game}}\SaveData}}' + - "{{Game data/saves|Windows|{{p|game}}\\SaveData}}" Aoki Ōkami to Shiroki Mejika: pageId: 54932 steam: 545000 @@ -9855,8 +9623,8 @@ Aozora Meikyuu: pageId: 44812 steam: 427980 templates: - - '{{Game data/config|Windows|{{p|game}}\renpy\config.py}}' - - '{{Game data/saves|Windows|{{P|appdata}}\renpy\Aozora_Meikyuu-1427576285\*.save|{{p|game}}\game\saves\*.save}}' + - "{{Game data/config|Windows|{{p|game}}\\renpy\\config.py}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\renpy\\Aozora_Meikyuu-1427576285\\*.save|{{p|game}}\\game\\saves\\*.save}}" Aozora Under Girls - Karsome Irony: pageId: 138890 steam: 1090370 @@ -9864,8 +9632,8 @@ Apache Longbow: gog: 1207659006 pageId: 7743 templates: - - '{{Game data/config|Windows|{{p|game}}\PREFS.CFG}}' - - '{{Game data/saves|Windows|{{p|game}}\}}' + - "{{Game data/config|Windows|{{p|game}}\\PREFS.CFG}}" + - "{{Game data/saves|Windows|{{p|game}}\\}}" Apartment 327: pageId: 114110 steam: 936070 @@ -9878,7 +9646,7 @@ Apartment 666: Apartment of Love: pageId: 81665 steam: 788910 -'Apartment: A Separated Place': +"Apartment: A Separated Place": pageId: 154154 steam: 435730 Ape Hit: @@ -9889,8 +9657,8 @@ Ape Out: pageId: 59129 steam: 447150 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Gabe Cuzzillo\ApeOut\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Gabe Cuzzillo\ApeOut\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Gabe Cuzzillo\\ApeOut\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Gabe Cuzzillo\\ApeOut\\}}" Aperion Cyberstorm: pageId: 58928 steam: 492860 @@ -9898,19 +9666,19 @@ Aperture Desk Job: pageId: 175478 steam: 1902490 templates: - - '{{Game data/config|Windows|{{P|game}}\game\steampal\cfg\video.txt}}' - - '{{Game data/saves|Windows|{{P|game}}\game\steampal\cfg\machine_convars.vcfg}}' + - "{{Game data/config|Windows|{{P|game}}\\game\\steampal\\cfg\\video.txt}}" + - "{{Game data/saves|Windows|{{P|game}}\\game\\steampal\\cfg\\machine_convars.vcfg}}" Aperture Hand Lab: pageId: 140096 steam: 868020 templates: - - '{{Game data/config|Windows|{{p|game}}\Knux_Data\settings.json|{{p|hkcu}}\Software\Cloudhead Games, Ltd.\Knux\}}' -'Aperture Tag: The Paint Gun Testing Initiative': + - "{{Game data/config|Windows|{{p|game}}\\Knux_Data\\settings.json|{{p|hkcu}}\\Software\\Cloudhead Games, Ltd.\\Knux\\}}" +"Aperture Tag: The Paint Gun Testing Initiative": pageId: 18351 steam: 280740 templates: - - '{{Game data/config|Steam|{{p|game}}/aperturetag/cfg/}}' - - '{{Game data/saves|Steam|{{p|game}}/aperturetag/SAVE/}}' + - "{{Game data/config|Steam|{{p|game}}/aperturetag/cfg/}}" + - "{{Game data/saves|Steam|{{p|game}}/aperturetag/SAVE/}}" Apewar: pageId: 186270 steam: 2306590 @@ -9930,7 +9698,7 @@ Apex Legends: pageId: 126989 steam: 1172470 templates: - - '{{Game data/config|Windows|{{P|userprofile}}\Saved Games\Respawn\Apex\local\videoconfig.txt}}' + - "{{Game data/config|Windows|{{P|userprofile}}\\Saved Games\\Respawn\\Apex\\local\\videoconfig.txt}}" Apex Tournament: pageId: 77198 steam: 656260 @@ -9945,10 +9713,10 @@ Apico: - 1567220 - 1736930 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\APICO}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/APICO/saves/settings.json}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\APICO}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/APICO/saves/}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\APICO}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/APICO/saves/settings.json}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\APICO}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/APICO/saves/}}" Aplestia: pageId: 82125 steam: 791600 @@ -9963,7 +9731,7 @@ Apocalipsis: pageId: 53572 steam: 505330 templates: - - '{{Game data/saves|Windows|{{p|appdata}}\Apocalipsis\}}' + - "{{Game data/saves|Windows|{{p|appdata}}\\Apocalipsis\\}}" Apocalypse Cow: pageId: 77347 steam: 592380 @@ -9985,21 +9753,21 @@ Apocalypse Rider: Apocalypse Zombie Race: pageId: 81486 steam: 768510 -'Apocalypse: Legacy Edition': +"Apocalypse: Legacy Edition": pageId: 70359 renamedFrom: - - 'Apocalypse: The Game' + - "Apocalypse: The Game" steam: 705050 -'Apocalypse: Party''s Over': +"Apocalypse: Party's Over": pageId: 37227 steam: 368800 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Hoplon Infotainment\Apocalypse_ Party_s Over\}}' + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Hoplon Infotainment\\Apocalypse_ Party_s Over\\}}" Apocalyptica: pageId: 74786 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\ExtremeFX\Apocalyptica\}}' - - '{{Game data/saves|Windows|{{p|hkcu}}\Software\ExtremeFX\Apocalyptica\|{{p|game}}\data\profiles_{{p|uid}}\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\ExtremeFX\\Apocalyptica\\}}" + - "{{Game data/saves|Windows|{{p|hkcu}}\\Software\\ExtremeFX\\Apocalyptica\\|{{p|game}}\\data\\profiles_{{p|uid}}\\}}" Apocryph: pageId: 68510 steam: 596240 @@ -10012,7 +9780,7 @@ Apollo 11 VR: Apollo 11 VR HD: pageId: 121851 steam: 953840 -'Apollo Justice: Ace Attorney Trilogy': +"Apollo Justice: Ace Attorney Trilogy": pageId: 189991 steam: 2187220 Apollo4x: @@ -10021,12 +9789,12 @@ Apollo4x: Apolune: pageId: 127395 steam: 1019150 -'Aporia: Beyond The Valley': +"Aporia: Beyond The Valley": pageId: 62036 steam: 573130 templates: - - '{{Game data/config|Windows|{{P|game}}\user\system\|{{p|game}}\user\profiles\}}' - - '{{Game data/saves|Windows|{{P|game}}\user\savegames\}}' + - "{{Game data/config|Windows|{{P|game}}\\user\\system\\|{{p|game}}\\user\\profiles\\}}" + - "{{Game data/saves|Windows|{{P|game}}\\user\\savegames\\}}" Apostasy: pageId: 96517 steam: 868440 @@ -10034,28 +9802,28 @@ Apostle: gog: 1459974775 pageId: 130529 steam: 1015730 -'Apostle: Rebellion': +"Apostle: Rebellion": gog: 1731798766 pageId: 165074 steam: 1419750 -'Apothecarium: The Renaissance of Evil': +"Apothecarium: The Renaissance of Evil": pageId: 47749 renamedFrom: - - 'Apothecarium: The Renaissance of Evil - Premium Edition' + - "Apothecarium: The Renaissance of Evil - Premium Edition" steam: 373860 Apotheon: gog: 1422870624 pageId: 17729 steam: 208750 templates: - - '{{Game data/config|Windows|{{p|game}}\Content\Config-7.cfg}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Apotheon/}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/Apotheon/}}' - - '{{Game data/config|Steam|{{p|steam}}/userdata/{{P|uid}}/208750/remote/}}' - - '{{Game data/saves|Windows|{{p|game}}\Content\SavedGames\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Apotheon/}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/Apotheon/}}' - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{P|uid}}/208750/remote/}}' + - "{{Game data/config|Windows|{{p|game}}\\Content\\Config-7.cfg}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Apotheon/}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/Apotheon/}}" + - "{{Game data/config|Steam|{{p|steam}}/userdata/{{P|uid}}/208750/remote/}}" + - "{{Game data/saves|Windows|{{p|game}}\\Content\\SavedGames\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Apotheon/}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/Apotheon/}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{P|uid}}/208750/remote/}}" Apotheon Arena: pageId: 45363 steam: 417890 @@ -10082,10 +9850,10 @@ AppleSnake: AppleSnake2: pageId: 77152 steam: 754780 -'AppleSnake: Christmas Story': +"AppleSnake: Christmas Story": pageId: 87053 steam: 794870 -'AppleSnake: Halloween Adventures': +"AppleSnake: Halloween Adventures": pageId: 82012 steam: 789470 Applewood: @@ -10097,25 +9865,23 @@ Appointment With FEAR: Approaching Blocks: pageId: 42692 steam: 467390 -'Apsulov: End of Gods': +"Apsulov: End of Gods": gog: 1659642973 pageId: 120631 steam: 960980 templates: - - >- - {{Game - data/config|Windows|{{p|localappdata}}\Project_C\Saved\Config\WindowsNoEditor\|{{p|localappdata}}\Project_C\Saved\SaveGames\Local\OptionsData.sav}} - - '{{Game data/saves|Windows|{{p|localappdata}}\Project_C\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Project_C\\Saved\\Config\\WindowsNoEditor\\|{{p|localappdata}}\\Project_C\\Saved\\SaveGames\\Local\\OptionsData.sav}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Project_C\\Saved\\SaveGames\\}}" Aqua Fish: pageId: 78453 steam: 763090 -'Aqua Kitty: Milk Mine Defender': +"Aqua Kitty: Milk Mine Defender": gog: 1207660053 pageId: 13685 steam: 263880 templates: - - '{{Game data/config|Windows|{{p|game}}\joystick.cfg}}' - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{P|uid}}/263880/}}' + - "{{Game data/config|Windows|{{p|game}}\\joystick.cfg}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{P|uid}}/263880/}}" Aqua Lungers: pageId: 89624 steam: 820640 @@ -10136,14 +9902,14 @@ AquaNox: pageId: 7332 steam: 39630 templates: - - '{{Game data/saves|Windows|{{p|appdata}}\AquaNox}}' -'AquaNox 2: Revelation': + - "{{Game data/saves|Windows|{{p|appdata}}\\AquaNox}}" +"AquaNox 2: Revelation": gog: 1207658851 pageId: 8134 steam: 39640 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\AquaNox2\Config.txt}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\AquaNox2\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\AquaNox2\\Config.txt}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\AquaNox2\\}}" Aquaculture Land: pageId: 121967 steam: 858630 @@ -10154,13 +9920,13 @@ Aquamarine: gog: 1820733314 pageId: 172747 steam: 1280750 -'Aquanox: Deep Descent': +"Aquanox: Deep Descent": gog: 1365179539 pageId: 39530 steam: 254370 templates: - - '{{Game data/config|Windows|{{p|LOCALAPPDATA}}\ANX\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{p|LOCALAPPDATA}}\ANX\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{p|LOCALAPPDATA}}\\ANX\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{p|LOCALAPPDATA}}\\ANX\\Saved\\SaveGames\\}}" Aquaponics Life: pageId: 77196 steam: 665980 @@ -10169,9 +9935,9 @@ Aquaria: pageId: 1658 steam: 24420 templates: - - '{{Game data/config|Windows|{{p|game}}\usersettings.xml}}' - - '{{Game data/saves|Windows|{{p|game}}\save\}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/Aquaria/}}' + - "{{Game data/config|Windows|{{p|game}}\\usersettings.xml}}" + - "{{Game data/saves|Windows|{{p|game}}\\save\\}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/Aquaria/}}" Aquarium Sandbox: pageId: 122416 steam: 956480 @@ -10188,44 +9954,36 @@ Aquatico: pageId: 184427 steam: 1812300 templates: - - '{{Game data/saves|Windows|{{p|game}}\Saves}}' + - "{{Game data/saves|Windows|{{p|game}}\\Saves}}" Aquila Bird Flight Simulator: pageId: 56768 steam: 583530 -'Ar Nosurge: Ode to an Unborn Star DX': +"Ar Nosurge: Ode to an Unborn Star DX": pageId: 167659 steam: 1477490 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\KoeiTecmo\ArnosurgeDX\Setting.ini}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\KoeiTecmo\ArnosurgeDX\SAVEDATA\SYSDATA.pcsave}}' -'Ar nosurge: Ode to an Unborn Star Deluxe': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\KoeiTecmo\\ArnosurgeDX\\Setting.ini}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\KoeiTecmo\\ArnosurgeDX\\SAVEDATA\\SYSDATA.pcsave}}" +"Ar nosurge: Ode to an Unborn Star Deluxe": pageId: 167379 steam: 1477490 -'Ar:piel': +"Ar:piel": pageId: 152240 Ara Fell: gog: 1809773746 pageId: 34437 steam: 440540 templates: - - >- - {{Game data/config|Windows|{{P|hkcu}}\SOFTWARE\Stegosoft Games\Ara - Fell|{{P|userprofile\appdata\locallow}}\Stegosoft Games\Ara Fell\Custom Input Config.json}} - - >- - {{Game data/config|Linux|{{p|xdgconfighome}}/unity3d/Stegosoft Games/Ara - Fell/prefs|{{p|xdgconfighome}}/unity3d/Stegosoft Games/Ara Fell/Custom Input Config.json}} - - >- - {{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\Stegosoft Games\Ara - Fell\*.json|{{p|userprofile\appdata\locallow}}\Stegosoft Games\Ara Fell\*.json.meta|{{p|game}}\Save*.lsd}} - - >- - {{Game data/saves|Linux|{{p|xdgconfighome}}/unity3d/Stegosoft Games/Ara - Fell/*.json|{{p|xdgconfighome}}/unity3d/Stegosoft Games/Ara Fell/*.json.meta}} + - "{{Game data/config|Windows|{{P|hkcu}}\\SOFTWARE\\Stegosoft Games\\Ara Fell|{{P|userprofile\\appdata\\locallow}}\\Stegosoft Games\\Ara Fell\\Custom Input Config.json}}" + - "{{Game data/config|Linux|{{p|xdgconfighome}}/unity3d/Stegosoft Games/Ara Fell/prefs|{{p|xdgconfighome}}/unity3d/Stegosoft Games/Ara Fell/Custom Input Config.json}}" + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\Stegosoft Games\\Ara Fell\\*.json|{{p|userprofile\\appdata\\locallow}}\\Stegosoft Games\\Ara Fell\\*.json.meta|{{p|game}}\\Save*.lsd}}" + - "{{Game data/saves|Linux|{{p|xdgconfighome}}/unity3d/Stegosoft Games/Ara Fell/*.json|{{p|xdgconfighome}}/unity3d/Stegosoft Games/Ara Fell/*.json.meta}}" Arabian Nights: gog: 1679826562 pageId: 32114 templates: - - '{{Game data/config|Windows|{{p|game}}\opt.def}}' - - '{{Game data/saves|Windows|{{p|game}}\sultan.sa*}}' + - "{{Game data/config|Windows|{{p|game}}\\opt.def}}" + - "{{Game data/saves|Windows|{{p|game}}\\sultan.sa*}}" Arabian Stones - The VR Sudoku Game: pageId: 149207 steam: 1157070 @@ -10242,28 +10000,26 @@ Aragami: pageId: 39225 steam: 280160 templates: - - '{{Game data/config|Windows|{{P|userprofile}}\AppData\LocalLow\Lince Works\Aragami\settings.cfg}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Lince Works/Aragami/settings.cfg}}' - - '{{Game data/config|Linux|{{p|xdgconfighome}}/unity3d/Lince Works/Aragami/settings.cfg}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Lince Works\Aragami\saveData.dat}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Lince Works/Aragami/saveData.dat}}' - - '{{Game data/saves|Linux|{{p|xdgconfighome}}/unity3d/Lince Works/Aragami/saveData.dat}}' + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Lince Works\\Aragami\\settings.cfg}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Lince Works/Aragami/settings.cfg}}" + - "{{Game data/config|Linux|{{p|xdgconfighome}}/unity3d/Lince Works/Aragami/settings.cfg}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Lince Works\\Aragami\\saveData.dat}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Lince Works/Aragami/saveData.dat}}" + - "{{Game data/saves|Linux|{{p|xdgconfighome}}/unity3d/Lince Works/Aragami/saveData.dat}}" Aragami 2: gog: 1772522891 pageId: 169179 steam: 1158370 templates: - - '{{Game data/saves|GOG.com|{{P|localappdata}}\gameid\storage\shared\Files\Aragami2.lin\}}' - - >- - {{Game data/saves|Microsoft - Store|{{p|localappdata}}\Packages\34421DavidLen.Aragami2_ad789ek20a95w\SystemAppData\wgs\}} - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\1158370\remote\}}' -'Araha: Curse of Yieun Island': + - "{{Game data/saves|GOG.com|{{P|localappdata}}\\gameid\\storage\\shared\\Files\\Aragami2.lin\\}}" + - "{{Game data/saves|Microsoft Store|{{p|localappdata}}\\Packages\\34421DavidLen.Aragami2_ad789ek20a95w\\SystemAppData\\wgs\\}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\1158370\\remote\\}}" +"Araha: Curse of Yieun Island": pageId: 153533 renamedFrom: - - 'Araha : Curse of Yieun Island' + - "Araha : Curse of Yieun Island" steam: 1190130 -'Arakion: Book One': +"Arakion: Book One": pageId: 78665 steam: 528980 Arauco Saga - Rpg Action: @@ -10273,12 +10029,12 @@ Araya: pageId: 52330 steam: 466740 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Mad Studio\Araya\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Araya\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Mad Studio\\Araya\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Araya\\}}" Arbiter: pageId: 93011 steam: 772220 -'Arbitology: Dei Gratia Rex': +"Arbitology: Dei Gratia Rex": pageId: 151555 steam: 1161020 Arboreal: @@ -10288,8 +10044,8 @@ Arboria: pageId: 151299 steam: 924070 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Arboria\Saved\Config\WindowsNoEditor}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\Arboria\Saved\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\Arboria\\Saved\\Config\\WindowsNoEditor}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Arboria\\Saved\\}}" Arc Continuum: pageId: 56675 steam: 543050 @@ -10308,10 +10064,10 @@ ArcBall: ArcBall 2: pageId: 92091 steam: 842290 -'ArcBall 3: Infinity': +"ArcBall 3: Infinity": pageId: 97866 steam: 874840 -Arca's Path VR: +"Arca's Path VR": pageId: 100658 steam: 842120 Arcade Battlers: @@ -10320,24 +10076,24 @@ Arcade Battlers: Arcade Classics Anniversary Collection: pageId: 133907 steam: 1018000 -'Arcade Game Series: Dig Dug': +"Arcade Game Series: Dig Dug": pageId: 43516 steam: 403400 templates: - - '{{Game data/saves|Windows|{{p|appdata}}\ArcadeGameSeries\{{p|uid}}\DIG DUG\}}' -'Arcade Game Series: Galaga': + - "{{Game data/saves|Windows|{{p|appdata}}\\ArcadeGameSeries\\{{p|uid}}\\DIG DUG\\}}" +"Arcade Game Series: Galaga": pageId: 43512 steam: 403430 templates: - - '{{Game data/saves|Windows|{{p|appdata}}\ArcadeGameSeries\{{p|uid}}\GALAGA\}}' -'Arcade Game Series: Ms. Pac-Man': + - "{{Game data/saves|Windows|{{p|appdata}}\\ArcadeGameSeries\\{{p|uid}}\\GALAGA\\}}" +"Arcade Game Series: Ms. Pac-Man": pageId: 43514 steam: 403410 -'Arcade Game Series: Pac-Man': +"Arcade Game Series: Pac-Man": pageId: 43518 steam: 394160 templates: - - '{{Game data/saves|Windows|{{p|appdata}}\ArcadeGameSeries\{{p|uid}}\PAC-MAN\}}' + - "{{Game data/saves|Windows|{{p|appdata}}\\ArcadeGameSeries\\{{p|uid}}\\PAC-MAN\\}}" Arcade LA Deadzone: pageId: 105729 steam: 904590 @@ -10348,12 +10104,8 @@ Arcade Moonlander: pageId: 73897 steam: 727020 templates: - - >- - {{Game data/config|Windows|{{P|userprofile}}\AppData\LocalLow\Back of Nowhere Studios\Arcade Moonlander+ - v2.0\Progress.json | {{P|userprofile}}\AppData\LocalLow\Back of Nowhere Studios\Arcade Moonlander\Progress.json}} - - >- - {{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Back of Nowhere Studios\Arcade Moonlander+ - v2.0\Progress.json}} + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Back of Nowhere Studios\\Arcade Moonlander+ v2.0\\Progress.json | {{P|userprofile}}\\AppData\\LocalLow\\Back of Nowhere Studios\\Arcade Moonlander\\Progress.json}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Back of Nowhere Studios\\Arcade Moonlander+ v2.0\\Progress.json}}" Arcade Paradise: gog: 1645177204 pageId: 170067 @@ -10373,7 +10125,7 @@ Arcade Tale: Arcade Tycoon: pageId: 95061 steam: 750520 -'Arcade''s Greatest Hits: The Midway Collection 2': +"Arcade's Greatest Hits: The Midway Collection 2": pageId: 16838 Arcadecraft: pageId: 50218 @@ -10382,15 +10134,15 @@ Arcadegeddon: pageId: 169890 steam: 1515640 templates: - - '{{Game data/config|Windows|{{p|game}}\Arcade\Saved\SaveGames\UserSettings.sav}}' - - '{{Game data/saves|Windows|{{p|game}}\Arcade\Saved\SaveGames\OfflineProgression.sav}}' + - "{{Game data/config|Windows|{{p|game}}\\Arcade\\Saved\\SaveGames\\UserSettings.sav}}" + - "{{Game data/saves|Windows|{{p|game}}\\Arcade\\Saved\\SaveGames\\OfflineProgression.sav}}" Arcadia: pageId: 41038 steam: 72500 Arcadia Fallen: pageId: 151463 steam: 1174640 -'Arcadia: The Crystal Wars': +"Arcadia: The Crystal Wars": pageId: 142258 steam: 1114690 Arcadian Atlas: @@ -10400,27 +10152,27 @@ Arcana Heart 3 LOVE MAX!!!!!: pageId: 29107 steam: 370460 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\ARC SYSTEM WORKS\AH3LM\Config\}}' - - '{{Game data/saves|Windows|{{p|game}}\Save\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\ARC SYSTEM WORKS\\AH3LM\\Config\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\Save\\}}" Arcana Heart 3 LOVEMAX SIXSTARS!!!!!! XTEND: pageId: 73304 renamedFrom: - Arcana Heart 3 LOVEMAX SIXSTARS!!!!!! steam: 661990 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\ARC SYSTEM WORKS\AH3LM\Config\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\ARC SYSTEM WORKS\\AH3LM\\Config\\}}" Arcana Ritter: pageId: 75119 steam: 739880 -'Arcana: Heat and Cold. Season 1': +"Arcana: Heat and Cold. Season 1": pageId: 187936 steam: 1357830 templates: - - '{{Game data/saves|Windows|{{p|localappdata}}\ArcanaHeatandCold\User Data\Default\IndexedDB\}}' -'Arcana: Heat and Cold. Season 2': + - "{{Game data/saves|Windows|{{p|localappdata}}\\ArcanaHeatandCold\\User Data\\Default\\IndexedDB\\}}" +"Arcana: Heat and Cold. Season 2": pageId: 187938 steam: 1679870 -'Arcana: Heat and Cold. Stories': +"Arcana: Heat and Cold. Stories": pageId: 187940 steam: 2426310 Arcane: @@ -10442,7 +10194,7 @@ Arcane PreRaise: pageId: 59383 steam: 603780 templates: - - '{{Game data/saves|Windows|{{p|game}}\.}}' + - "{{Game data/saves|Windows|{{p|game}}\\.}}" Arcane Raise: pageId: 59021 steam: 603750 @@ -10450,7 +10202,7 @@ Arcane ReRaise: pageId: 59409 steam: 603770 templates: - - '{{Game data/saves|Windows|{{p|game}}\.}}' + - "{{Game data/saves|Windows|{{p|game}}\\.}}" Arcane Sorcery: pageId: 46456 steam: 397870 @@ -10460,40 +10212,40 @@ Arcane Trials: Arcane Worlds: pageId: 14715 steam: 269610 -'Arcania: Fall of Setarrif': +"Arcania: Fall of Setarrif": gog: 1282519889 pageId: 40877 steam: 65610 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\ArcaniA - AddOn\*.xml}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\ArcaniA - AddOn\*.sav}}' -'Arcania: Gothic 4': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\ArcaniA - AddOn\\*.xml}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\ArcaniA - AddOn\\*.sav}}" +"Arcania: Gothic 4": gog: 1244052225 pageId: 11472 steam: 39690 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\ArcaniA - Gothic 4\*.xml}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\ArcaniA - Gothic 4\*.sav}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\ArcaniA - Gothic 4\\*.xml}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\ArcaniA - Gothic 4\\*.sav}}" Arcanist Revival: pageId: 114762 steam: 947640 -'Arcanium: Rise of Akhan': +"Arcanium: Rise of Akhan": pageId: 135852 renamedFrom: - Arcanium steam: 1056840 -'Arcanum: Of Steamworks & Magick Obscura': +"Arcanum: Of Steamworks & Magick Obscura": gog: 1207658829 pageId: 3243 steam: 500810 templates: - - '{{Game data/config|Windows|{{p|game}}\arcanum.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\modules\Arcanum\Save\}}' -'Arcatera: The Dark Brotherhood': + - "{{Game data/config|Windows|{{p|game}}\\arcanum.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\modules\\Arcanum\\Save\\}}" +"Arcatera: The Dark Brotherhood": pageId: 171108 templates: - - '{{Game data/config|Windows|{{p|game}}\arcatera.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\SAVE}}' + - "{{Game data/config|Windows|{{p|game}}\\arcatera.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\SAVE}}" Arcfall: pageId: 61402 steam: 623310 @@ -10512,20 +10264,20 @@ Archaelund: ArchaeologyX: pageId: 122192 steam: 724630 -'Archaica: The Path of Light': +"Archaica: The Path of Light": pageId: 53708 steam: 550590 templates: - - '{{Game data/config|Windows|{{P|game}}\Local\conf.txt}}' - - '{{Game data/saves|Windows|{{P|game}}\Local\profiles.prf}}' + - "{{Game data/config|Windows|{{P|game}}\\Local\\conf.txt}}" + - "{{Game data/saves|Windows|{{P|game}}\\Local\\profiles.prf}}" Archamon: pageId: 76869 steam: 350880 Archangel: pageId: 61577 templates: - - '{{Game data/config|Windows|{{p|game}}\bin\standard.feel}}' - - '{{Game data/saves|Windows|{{p|game}}\bin\current-save\|{{p|game}}\bin\savegame-{{p|UID}}\}}' + - "{{Game data/config|Windows|{{p|game}}\\bin\\standard.feel}}" + - "{{Game data/saves|Windows|{{p|game}}\\bin\\current-save\\|{{p|game}}\\bin\\savegame-{{p|UID}}\\}}" Archangel (2017): pageId: 65150 steam: 553880 @@ -10536,23 +10288,23 @@ ArcheAge: pageId: 19752 steam: 304030 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\ArcheAge\}}' -'ArcheAge: Unchained': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\ArcheAge\\}}" +"ArcheAge: Unchained": pageId: 148807 steam: 1147660 Archeblade: pageId: 8800 steam: 207230 templates: - - '{{Game data/config|Windows|{{p|game}}\ABGame\Config}}' -'Archeo: Shinar': + - "{{Game data/config|Windows|{{p|game}}\\ABGame\\Config}}" +"Archeo: Shinar": gog: 1165376925 pageId: 125639 steam: 1001980 -'Archer Guardian VR: The Chapter Zero': +"Archer Guardian VR: The Chapter Zero": pageId: 53417 steam: 543540 -Archer's Story: +"Archer's Story": pageId: 91466 steam: 819950 Archers: @@ -10576,24 +10328,24 @@ Archibald: Archibald 2: pageId: 132450 steam: 1053300 -Archibald's Adventures: +"Archibald's Adventures": pageId: 33870 steam: 461480 Archimedean Dynasty: gog: 1436955893 pageId: 7611 templates: - - '{{Game data/saves|DOS|{{p|game}}\DAT\SAVE}}' + - "{{Game data/saves|DOS|{{p|game}}\\DAT\\SAVE}}" Archimedes: pageId: 50869 steam: 530920 -'Archimedes: Eureka!': +"Archimedes: Eureka!": pageId: 137224 steam: 667030 Archipelago: pageId: 36212 steam: 513720 -'Archipelago: Navigable VR Comic': +"Archipelago: Navigable VR Comic": pageId: 56258 steam: 577120 Archmage: @@ -10604,14 +10356,14 @@ Archmage Rises: Archon Classic: pageId: 41054 steam: 65400 -'Archon: The Light and the Dark': +"Archon: The Light and the Dark": pageId: 176870 Archvale: gog: 1536961491 pageId: 173341 steam: 1296360 templates: - - '{{Game data/saves|Windows|{{p|appdata}}\AV_gms2_3}}' + - "{{Game data/saves|Windows|{{p|appdata}}\\AV_gms2_3}}" Arclight Cascade: pageId: 46721 steam: 391210 @@ -10620,13 +10372,13 @@ Arcmaze: Arcomage: pageId: 88616 templates: - - '{{Game data/config|Windows|{{p|game}}\Data\Arcomage}}' + - "{{Game data/config|Windows|{{p|game}}\\Data\\Arcomage}}" Arctic Adventure: pageId: 16716 steam: 358170 templates: - - '{{Game data/config|DOS|{{p|game}}\AA*.CFG}}' - - '{{Game data/saves|DOS|{{p|game}}\AA*.SAV|{{p|game}}\AA*.HS}}' + - "{{Game data/config|DOS|{{p|game}}\\AA*.CFG}}" + - "{{Game data/saves|DOS|{{p|game}}\\AA*.SAV|{{p|game}}\\AA*.HS}}" Arctic Cave: pageId: 92785 steam: 848540 @@ -10645,7 +10397,7 @@ Arctico: renamedFrom: - Eternal Winter steam: 325210 -'Arcturus: The Curse and Loss of Divinity': +"Arcturus: The Curse and Loss of Divinity": pageId: 172619 Ardent Seas: pageId: 175702 @@ -10663,15 +10415,15 @@ Are You Smarter Than a 5th Grader? (2022): gog: 1308673515 pageId: 177307 steam: 1521160 -'Are You Smarter Than a 5th Grader?: Make the Grade': +"Are You Smarter Than a 5th Grader?: Make the Grade": pageId: 89870 Area 51: pageId: 159391 Area 51 (2005): pageId: 18572 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/saves|Windows|{{p|game}}\SAVES\}}' + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\SAVES\\}}" Area 51 (2019): pageId: 144299 steam: 1125130 @@ -10681,10 +10433,10 @@ Area 51 Defense: Area 86: pageId: 88231 steam: 810590 -'Area Cooperation Economic Simulation: North Korea (ACES)': +"Area Cooperation Economic Simulation: North Korea (ACES)": pageId: 125016 steam: 1004350 -'Area of Darkness: Sentinel': +"Area of Darkness: Sentinel": pageId: 128324 steam: 626810 Area-X: @@ -10703,7 +10455,7 @@ Arelite Core: pageId: 39620 steam: 466160 templates: - - '{{Game data/saves|Windows|{{p|appdata}}\dragon_slumber\arelite_core}}' + - "{{Game data/saves|Windows|{{p|appdata}}\\dragon_slumber\\arelite_core}}" Arena: pageId: 65588 steam: 655200 @@ -10742,13 +10494,13 @@ Arena of Shaelo: Arena of the Gods: pageId: 90502 steam: 827560 -'Arena: An Age of Barbarians Story': +"Arena: An Age of Barbarians Story": pageId: 60327 steam: 570970 -'Arena: Blood on the Sand VR': +"Arena: Blood on the Sand VR": pageId: 56324 steam: 577890 -'Arena: Cyber Evolution': +"Arena: Cyber Evolution": pageId: 19359 steam: 285580 Arenus: @@ -10766,10 +10518,10 @@ Arevoatl Seven Coins: Argo: pageId: 52746 steam: 530700 -'Argonauts Agency: Golden Fleece': +"Argonauts Agency: Golden Fleece": pageId: 128016 steam: 1005000 -'Argonauts Agency: Pandora''s Box': +"Argonauts Agency: Pandora's Box": pageId: 134884 steam: 1055970 Argonus and the Gods of Stone: @@ -10781,84 +10533,84 @@ Argos: Aria Dating Simulator: pageId: 153206 steam: 1181290 -Aria's Wing: +"Aria's Wing": pageId: 92889 steam: 796300 -Ariadna's Bane: +"Ariadna's Bane": pageId: 139699 steam: 1095560 Arid: pageId: 182536 steam: 1463730 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Arid\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\Arid\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\Arid\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Arid\\Saved\\SaveGames\\}}" AridFortress: pageId: 95543 steam: 868960 -'Arida: Backland''s Awakening': +"Arida: Backland's Awakening": pageId: 103815 steam: 907760 templates: - - '{{Game data/saves|Windows|{{P|hkcu}}\SOFTWARE\Aoca Game Lab\Arida\}}' -'Arida: Rise of the Brave': + - "{{Game data/saves|Windows|{{P|hkcu}}\\SOFTWARE\\Aoca Game Lab\\Arida\\}}" +"Arida: Rise of the Brave": pageId: 157057 renamedFrom: - - 'ARIDA: Rise of the Brave' + - "ARIDA: Rise of the Brave" steam: 1212030 Ariel: pageId: 54663 steam: 449700 -Ariel's Story Studio: +"Ariel's Story Studio": pageId: 166639 Arietta of Spirits: pageId: 151401 steam: 1140170 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\AriettaOfSpirits\settings.ini}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\AriettaOfSpirits\savegames_full.dat}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\AriettaOfSpirits\\settings.ini}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\AriettaOfSpirits\\savegames_full.dat}}" Arima: pageId: 151264 steam: 1112450 -'Arise: A Simple Story': +"Arise: A Simple Story": gog: 1140432531 pageId: 147469 steam: 866140 templates: - - '{{Game data/config|Windows|{{P|appdata}}\Arise\Saved\Config\WindowsNoEditor}}' - - '{{Game data/saves|Windows|{{P|appdata}}\Arise\Saved\SaveGames}}' -'Arisen: Chronicles of Var''Nagal': + - "{{Game data/config|Windows|{{P|appdata}}\\Arise\\Saved\\Config\\WindowsNoEditor}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\Arise\\Saved\\SaveGames}}" +"Arisen: Chronicles of Var'Nagal": pageId: 142353 renamedFrom: - - 'ARISEN : Chronicles of Var''Nagal' + - "ARISEN : Chronicles of Var'Nagal" steam: 1101670 -Aritana and the Harpy's Feather: +"Aritana and the Harpy's Feather": pageId: 49761 steam: 314360 Arizona Derby: pageId: 132763 steam: 661290 -Arizona Rose and the Pharaohs' Riddles: +"Arizona Rose and the Pharaohs' Riddles": pageId: 56459 steam: 575800 -Arizona Rose and the Pirates' Riddles: +"Arizona Rose and the Pirates' Riddles": pageId: 51661 steam: 537760 Arizona Sunshine: pageId: 39470 steam: 342180 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Vertigo Games\ArizonaSunshine}}' + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Vertigo Games\\ArizonaSunshine}}" Ark Noir: pageId: 103397 steam: 739220 Arkady Survive: pageId: 135313 steam: 814320 -'Arkaia: The Enigmatic Isle': +"Arkaia: The Enigmatic Isle": pageId: 72519 steam: 619010 -'Arkan: The dog adventurer': +"Arkan: The dog adventurer": pageId: 149205 steam: 1157040 Arkane Rush: @@ -10870,50 +10622,48 @@ Arkane Rush Multiverse Mayhem: Arkanoid: pageId: 159395 templates: - - '{{Game data/saves|DOS|{{Path|Game}}\ARKANOID.SCR}}' - - '{{Game data/saves|Mac OS|{{Path|Game}}\ArkHighScore}}' + - "{{Game data/saves|DOS|{{Path|Game}}\\ARKANOID.SCR}}" + - "{{Game data/saves|Mac OS|{{Path|Game}}\\ArkHighScore}}" Arkanoid For Painters: pageId: 104179 steam: 912130 -'Arkanoid: Doh It Again': +"Arkanoid: Doh It Again": pageId: 137738 -'Arkanoid: Eternal Battle': +"Arkanoid: Eternal Battle": gog: 1630907432 pageId: 182313 steam: 1717270 steamSide: - 2152770 -'Arkanoid: Revenge of Doh': +"Arkanoid: Revenge of Doh": pageId: 161734 templates: - - '{{Game data/config|DOS|{{Path|Game}}\DOH.CFG}}' - - '{{Game data/saves|DOS|{{Path|Game}}\REVOFDOH.SCR}}' + - "{{Game data/config|DOS|{{Path|Game}}\\DOH.CFG}}" + - "{{Game data/saves|DOS|{{Path|Game}}\\REVOFDOH.SCR}}" ArkanoidSmoking: pageId: 67187 steam: 686490 Arkasha: pageId: 82139 steam: 796110 -'Arkham Horror: Mother''s Embrace': +"Arkham Horror: Mother's Embrace": gog: 1385646355 pageId: 93355 renamedFrom: - - 'Mansions of Madness: Mother''s Embrace' + - "Mansions of Madness: Mother's Embrace" steam: 840210 Arkham Nightmares: pageId: 41635 steam: 513810 -'Arkhangel: The House of the Seven Stars': +"Arkhangel: The House of the Seven Stars": pageId: 96525 steam: 868580 templates: - - >- - {{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Winter Night Games\Arkhangel_ The House of the Seven - Stars}} + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Winter Night Games\\Arkhangel_ The House of the Seven Stars}}" Arkhelom 3D: pageId: 47713 steam: 373670 -'Arknights: Endfield': +"Arknights: Endfield": pageId: 190804 Arkshot: pageId: 37628 @@ -10921,8 +10671,8 @@ Arkshot: Arktika.1: pageId: 73992 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\4A Games\Arktika.1\}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\4A Games\Arktika.1\}}' + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\4A Games\\Arktika.1\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\4A Games\\Arktika.1\\}}" Arktrum: pageId: 151195 steam: 1180960 @@ -10939,100 +10689,90 @@ Arma 2: steamSide: - 33910 - 33930 - - 33934 - - 65720 - - 65700 - - 219540 - - 33940 - 33933 + - 33934 + - 33940 + - 65700 + - 65720 - 107400 + - 219540 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\ARMA 2\ArmA2.cfg|{{p|userprofile\Documents}}\ARMA - 2\ArmA2OA.cfg}} - - >- - {{Game data/saves|Windows|{{p|userprofile\Documents}}\ARMA 2\*.ArmA2Profile|{{p|userprofile\Documents}}\ARMA - 2\*.ArmA2OAProfile|{{p|userprofile\Documents}}\ArmA 2\Saved\}} + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\ARMA 2\\ArmA2.cfg|{{p|userprofile\\Documents}}\\ARMA 2\\ArmA2OA.cfg}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\ARMA 2\\*.ArmA2Profile|{{p|userprofile\\Documents}}\\ARMA 2\\*.ArmA2OAProfile|{{p|userprofile\\Documents}}\\ArmA 2\\Saved\\}}" Arma 3: pageId: 4673 steam: 107410 steamSide: - 233800 - - 390500 - - 601670 - - 304380 + - 249860 + - 275700 - 288520 + - 304380 - 332350 + - 390500 - 395180 - 571710 + - 601670 - 639600 - - 275700 - 744950 - 798390 - 1021790 - 1042220 - - 249860 - 1294440 - 1325500 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Arma 3\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/com.vpltd.Arma3/GameDocuments/Arma 3/}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.local/share/bohemiainteractive/arma3/GameDocuments/Arma 3/}}' - - >- - {{Game data/saves|Windows|{{p|userprofile\Documents}}\Arma 3\*.Arma3Profile|{{p|userprofile\Documents}}\Arma - 3\Saved\}} - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/com.vpltd.Arma3/GameDocuments/Arma 3/Saved/}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.local/share/bohemiainteractive/arma3/GameDocuments/Arma 3/Saved/}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Arma 3\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/com.vpltd.Arma3/GameDocuments/Arma 3/}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.local/share/bohemiainteractive/arma3/GameDocuments/Arma 3/}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Arma 3\\*.Arma3Profile|{{p|userprofile\\Documents}}\\Arma 3\\Saved\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/com.vpltd.Arma3/GameDocuments/Arma 3/Saved/}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.local/share/bohemiainteractive/arma3/GameDocuments/Arma 3/Saved/}}" Arma Reforger: pageId: 177696 steam: 1874880 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\ArmaReforger}}' - - '{{Game data/saves|Windows|{{P|game}}\userdata\{{P|uid}}\1874880}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\ArmaReforger}}" + - "{{Game data/saves|Windows|{{P|game}}\\userdata\\{{P|uid}}\\1874880}}" Arma Tactics: pageId: 11246 steam: 224860 templates: - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Bohemia Interactive/Arma Tactics/}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Bohemia Interactive/Arma Tactics/}}' -'Arma: Armed Assault': + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Bohemia Interactive/Arma Tactics/}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Bohemia Interactive/Arma Tactics/}}" +"Arma: Armed Assault": gog: 1207658975 pageId: 4555 steam: 2780 steamSide: - 65780 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\ArmA|{{p|userprofile\Documents}}\ArmA Other Profiles}}' - - >- - {{Game data/saves|Windows|{{p|userprofile\Documents}}\ArmA\Saved\|{{p|userprofile\Documents}}\ArmA Other - Profiles\{{p|uid}}\Saved}} -'Arma: Cold War Assault': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\ArmA|{{p|userprofile\\Documents}}\\ArmA Other Profiles}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\ArmA\\Saved\\|{{p|userprofile\\Documents}}\\ArmA Other Profiles\\{{p|uid}}\\Saved}}" +"Arma: Cold War Assault": gog: 1207658661 pageId: 5532 steam: 65790 steamSide: - 594550 templates: - - '{{Game data/config|Windows|{{p|game}}\ColdWarAssault.cfg|{{p|game}}\Users\{{p|uid}}\UserInfo.cfg}}' - - >- - {{Game - data/config|Linux|{{p|linuxhome}}/.local/share/vpltd/ArmaColdWarAssault/ColdWarAssault.cfg|~/.local/share/vpltd/ArmaColdWarAssault/SavedGames/{{p|uid}}/UserInfo.cfg}} - - '{{Game data/saves|Windows|{{p|game}}\Users\}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.local/share/vpltd/SavedGames}}' + - "{{Game data/config|Windows|{{p|game}}\\ColdWarAssault.cfg|{{p|game}}\\Users\\{{p|uid}}\\UserInfo.cfg}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.local/share/vpltd/ArmaColdWarAssault/ColdWarAssault.cfg|~/.local/share/vpltd/ArmaColdWarAssault/SavedGames/{{p|uid}}/UserInfo.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\Users\\}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.local/share/vpltd/SavedGames}}" Armada 2526: pageId: 40997 steam: 46790 templates: - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Armada 2526\}}' + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Armada 2526\\}}" Armada Skies: pageId: 80895 steam: 776320 Armada Tanks: pageId: 162067 templates: - - '{{Game data/config|Windows|{{p|programdata}}\Enkord\Armada Tanks\gameconf.ini}}' - - '{{Game data/saves|Windows|{{p|programdata}}\Enkord\Armada Tanks\Save\}}' -'Armada: Modern Tanks': + - "{{Game data/config|Windows|{{p|programdata}}\\Enkord\\Armada Tanks\\gameconf.ini}}" + - "{{Game data/saves|Windows|{{p|programdata}}\\Enkord\\Armada Tanks\\Save\\}}" +"Armada: Modern Tanks": pageId: 82286 steam: 782660 Armadusa: @@ -11044,13 +10784,13 @@ Armajet: Armed Against the Undead: pageId: 35252 steam: 488590 -'Armed Fantasia: To the End of the Wilderness': +"Armed Fantasia: To the End of the Wilderness": pageId: 185976 Armed Forces Corp.: pageId: 186354 templates: - - '{{Game data/config|Windows|{{p|public}}\Documents\City Interactive\Armed Forces Corp}}' - - '{{Game data/saves|Windows|{{p|public}}\Documents\City Interactive\Armed Forces Corp}}' + - "{{Game data/config|Windows|{{p|public}}\\Documents\\City Interactive\\Armed Forces Corp}}" + - "{{Game data/saves|Windows|{{p|public}}\\Documents\\City Interactive\\Armed Forces Corp}}" Armed Seven: pageId: 15695 steam: 349690 @@ -11062,8 +10802,8 @@ Armed and Dangerous: pageId: 38015 steam: 6090 templates: - - '{{Game data/config|Windows|{{P|game}}\GameData\SavedGames\options.opt}}' - - '{{Game data/saves|Windows|{{P|game}}\GameData\SaveGames}}' + - "{{Game data/config|Windows|{{P|game}}\\GameData\\SavedGames\\options.opt}}" + - "{{Game data/saves|Windows|{{P|game}}\\GameData\\SaveGames}}" Armed and Gelatinous: pageId: 51022 steam: 446510 @@ -11071,14 +10811,12 @@ Armed to the Gears: pageId: 88804 steam: 804870 templates: - - >- - {{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Deonn Software ltd_\Armed to the - Gears\playerinfo.dat}} -'Armed with Wings: Rearmed': + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Deonn Software ltd_\\Armed to the Gears\\playerinfo.dat}}" +"Armed with Wings: Rearmed": pageId: 37309 steam: 340580 templates: - - '{{Game data/saves|Windows|\My Games\Armed with Wings Rearmed\SaveData_v2.sav}}' + - "{{Game data/saves|Windows|\\My Games\\Armed with Wings Rearmed\\SaveData_v2.sav}}" Armed!: pageId: 180690 Armello: @@ -11086,19 +10824,15 @@ Armello: pageId: 18535 steam: 290340 templates: - - >- - {{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\League of - Geeks\Armello\Profiles\{{p|uid}}\Options|{{P|hkcu}}\Software\League of Geeks\Armello}} - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/League of Geeks/Armello/}}' - - >- - {{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\League of - Geeks\Armello\Profiles\{{p|uid}}\SavedGameState}} - - '{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/League of Geeks/Armello/profiles/{{p|uid}}/SavedGameState}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\League of Geeks\\Armello\\Profiles\\{{p|uid}}\\Options|{{P|hkcu}}\\Software\\League of Geeks\\Armello}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/League of Geeks/Armello/}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\League of Geeks\\Armello\\Profiles\\{{p|uid}}\\SavedGameState}}" + - "{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/League of Geeks/Armello/profiles/{{p|uid}}/SavedGameState}}" Armies of Exigo: pageId: 60852 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\Armies of Exigo\Save\Profile1}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\Armies of Exigo\Save}}' + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\Armies of Exigo\\Save\\Profile1}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\Armies of Exigo\\Save}}" Armies of Riddle CCG Fantasy Battle Card Game: pageId: 50745 steam: 527040 @@ -11110,10 +10844,10 @@ Armikrog: pageId: 25692 steam: 334120 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\PencilTestStudios\Armikrog\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\PencilTestStudios\Armikrog\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/unity.PencilTestStudios.Armikrog\SaveGame.dat}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/PencilTestStudios/Armikrog/*.dat}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\PencilTestStudios\\Armikrog\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\PencilTestStudios\\Armikrog\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/unity.PencilTestStudios.Armikrog\\SaveGame.dat}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/PencilTestStudios/Armikrog/*.dat}}" Armor Clash: pageId: 51033 steam: 395600 @@ -11133,9 +10867,9 @@ Armor of Heroes: pageId: 164301 steam: 1368440 templates: - - '{{Game data/config|Windows|{{p|HKCU}}\Software\Sega\ArmorOfHeroes}}' - - '{{Game data/saves|Windows|{{p|HKCU}}\Software\Sega\ArmorOfHeroes}}' -'Armored Animals: H1N1z': + - "{{Game data/config|Windows|{{p|HKCU}}\\Software\\Sega\\ArmorOfHeroes}}" + - "{{Game data/saves|Windows|{{p|HKCU}}\\Software\\Sega\\ArmorOfHeroes}}" +"Armored Animals: H1N1z": pageId: 82796 steam: 798260 Armored Battle Crew: @@ -11147,12 +10881,12 @@ Armored Brigade: steam: 1089840 steamSide: - 1101590 -'Armored Core VI: Fires of Rubicon': +"Armored Core VI: Fires of Rubicon": pageId: 183625 steam: 1888160 templates: - - '{{Game data/config|Windows|{{p|appdata}}\ArmoredCore6\GraphicsConfig.xml}}' - - '{{Game data/saves|Windows|{{p|appdata}}\ArmoredCore6\{{p|uid}}\AC60000.sl2}}' + - "{{Game data/config|Windows|{{p|appdata}}\\ArmoredCore6\\GraphicsConfig.xml}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\ArmoredCore6\\{{p|uid}}\\AC60000.sl2}}" Armored Evolution: pageId: 80583 steam: 778840 @@ -11163,8 +10897,8 @@ Armored Fist 3: pageId: 41286 steam: 32710 templates: - - '{{Game data/config|Windows|{{p|game}}\af3prefs.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\slot00.dat}}' + - "{{Game data/config|Windows|{{p|game}}\\af3prefs.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\slot00.dat}}" Armored Freedom: pageId: 59615 steam: 586150 @@ -11179,23 +10913,21 @@ Armored Hunter Gunhound: renamedFrom: - Armored Hunter GUNHOUND templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/saves|Windows|{{p|game}}\}}' + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\}}" Armored Hunter Gunhound EX: pageId: 28649 steam: 273240 templates: - - '{{Game data/config|Windows|{{p|game}}\ex2data.cfg|{{p|game}}\padconfig.dat}}' - - '{{Game data/saves|Windows|{{p|game}}\ex2data.cfg}}' - - '{{Game data/saves|Steam|{{p|steam}}\UserData\{{p|uid}}\273240\remote\ex2data.cfg}}' + - "{{Game data/config|Windows|{{p|game}}\\ex2data.cfg|{{p|game}}\\padconfig.dat}}" + - "{{Game data/saves|Windows|{{p|game}}\\ex2data.cfg}}" + - "{{Game data/saves|Steam|{{p|steam}}\\UserData\\{{p|uid}}\\273240\\remote\\ex2data.cfg}}" Armored Kitten: pageId: 71902 steam: 713530 templates: - - >- - {{Game - data/config|Windows|{{p|userprofile}}\AppData\LocalLow\ArmoredKitten\Unity\b691cd47-9719-4e6f-80d5-65093c992316\Analytics\config}} - - '{{Game data/saves|Windows|{{p|hkcu}}\Software\Ducat\ArmoredKitten}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\ArmoredKitten\\Unity\\b691cd47-9719-4e6f-80d5-65093c992316\\Analytics\\config}}" + - "{{Game data/saves|Windows|{{p|hkcu}}\\Software\\Ducat\\ArmoredKitten}}" Armored Squad: pageId: 81030 steam: 786280 @@ -11211,11 +10943,11 @@ Armored Warfare: - 753510 - 753520 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\Saved Games\ArmoredWarfare\}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\Saved Games\\ArmoredWarfare\\}}" Armorgeddon: pageId: 153673 steam: 1200120 -'Armorik the Viking: The Eight Conquests': +"Armorik the Viking: The Eight Conquests": pageId: 165083 steam: 1233030 Armortale: @@ -11256,37 +10988,37 @@ Army Men II: gog: 1913968552 pageId: 79066 steam: 549170 -'Army Men: RTS': +"Army Men: RTS": gog: 1932981761 pageId: 31910 steam: 694500 templates: - - '{{Game data/config|Windows|{{p|game}}\settings.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\user\}}' -'Army Men: Sarge''s Heroes': + - "{{Game data/config|Windows|{{p|game}}\\settings.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\user\\}}" +"Army Men: Sarge's Heroes": pageId: 31023 templates: - - '{{Game data/saves|Windows|{{p|game}}\GameState.dat}}' -'Army Men: Sarge''s War': + - "{{Game data/saves|Windows|{{p|game}}\\GameState.dat}}" +"Army Men: Sarge's War": pageId: 174367 templates: - - '{{Game data/config|Windows|{{P|game}}\Data\sage.ini}}' - - '{{Game data/saves|Windows|{{p|game}}}}' -'Army Men: Toys in Space': + - "{{Game data/config|Windows|{{P|game}}\\Data\\sage.ini}}" + - "{{Game data/saves|Windows|{{p|game}}}}" +"Army Men: Toys in Space": gog: 1317709786 pageId: 79071 steam: 549180 -'Army Men: World War': +"Army Men: World War": gog: 1824112482 pageId: 16550 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/saves|Windows|{{p|game}}\save}}' -'Army Ranger: Mogadishu': + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\save}}" +"Army Ranger: Mogadishu": pageId: 80272 templates: - - '{{Game data/config|Windows|{{p|game}}\autoexec.cfg|{{p|game}}\display.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\Profiles\|{{p|game}}\Save\}}' + - "{{Game data/config|Windows|{{p|game}}\\autoexec.cfg|{{p|game}}\\display.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\Profiles\\|{{p|game}}\\Save\\}}" Army Truck 2: pageId: 87033 steam: 785690 @@ -11296,24 +11028,22 @@ Army of Pixels: Army of Squirrels: pageId: 87087 steam: 793260 -'Army of Tentacles: (Not) A Cthulhu Dating Sim': +"Army of Tentacles: (Not) A Cthulhu Dating Sim": pageId: 44607 steam: 427930 templates: - - >- - {{Game data/config|Windows|{{P|appdata}}\renpy\Army of Tentacles Ren'Py - V1-1355529154\persistent|{{P|game}}\game\saves\persistent}} - - '{{Game data/saves|Windows|{{P|appdata}}\renpy\Army of Tentacles Ren''Py V1-1355529154\*.save}}' -'Army of Tentacles: (Not) a Cthulhu Dating Sim: Black Goat of the Woods Edition': + - "{{Game data/config|Windows|{{P|appdata}}\\renpy\\Army of Tentacles Ren'Py V1-1355529154\\persistent|{{P|game}}\\game\\saves\\persistent}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\renpy\\Army of Tentacles Ren'Py V1-1355529154\\*.save}}" +"Army of Tentacles: (Not) a Cthulhu Dating Sim: Black Goat of the Woods Edition": pageId: 78647 steam: 770380 -Aron's Adventure: +"Aron's Adventure": gog: 1304684573 pageId: 136048 steam: 1013910 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\AronsAdventure\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\AronsAdventure\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\AronsAdventure\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\AronsAdventure\\Saved\\SaveGames\\}}" Around the Words: pageId: 66438 steam: 677230 @@ -11333,8 +11063,8 @@ Arrog: pageId: 158121 steam: 1185700 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\SOFTWARE\LeapGS\Arrog\}}' - - '{{Game data/saves|Windows|{{P|hkcu}}\SOFTWARE\LeapGS\Arrog\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\SOFTWARE\\LeapGS\\Arrog\\}}" + - "{{Game data/saves|Windows|{{P|hkcu}}\\SOFTWARE\\LeapGS\\Arrog\\}}" Arrow: pageId: 152977 steam: 1190180 @@ -11356,26 +11086,26 @@ Ars Fabulae: Arsenal Demon: pageId: 148999 steam: 1149860 -'Arsenal of Democracy: A Hearts of Iron Game': +"Arsenal of Democracy: A Hearts of Iron Game": gog: 1440359475 pageId: 6884 steam: 42850 templates: - - '{{Game data/saves|Windows|{{p|game}}\Scenarios\Save games}}' -'Arsenal: Taste the Power': + - "{{Game data/saves|Windows|{{p|game}}\\Scenarios\\Save games}}" +"Arsenal: Taste the Power": pageId: 14511 templates: - - '{{Game data/saves|DOS|{{p|game}}\*.map}}' -'Arslan: The Warriors of Legend': + - "{{Game data/saves|DOS|{{p|game}}\\*.map}}" +"Arslan: The Warriors of Legend": pageId: 31333 steam: 401890 Arson and Plunder: pageId: 129172 -'Arson and Plunder: Unleashed': +"Arson and Plunder: Unleashed": pageId: 46294 steam: 293600 templates: - - '{{Game data/saves|Windows|{{P|appdata}}\ArsonAndPlunderUnleashed\ArsonAndPlunderSave.dat}}' + - "{{Game data/saves|Windows|{{P|appdata}}\\ArsonAndPlunderUnleashed\\ArsonAndPlunderSave.dat}}" ArsonVille: pageId: 53399 steam: 553610 @@ -11395,10 +11125,8 @@ Art Sqool: pageId: 114992 steam: 953300 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Julian Glander\ART SQOOL\}}' - - >- - {{Game data/saves|Windows|{{P|hkcu}}\Software\Julian Glander\ART SQOOL\|{{P|userprofile}}\AppData\LocalLow\Julian - Glander\ART SQOOL\}} + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Julian Glander\\ART SQOOL\\}}" + - "{{Game data/saves|Windows|{{P|hkcu}}\\Software\\Julian Glander\\ART SQOOL\\|{{P|userprofile}}\\AppData\\LocalLow\\Julian Glander\\ART SQOOL\\}}" Art by Numbers: pageId: 148940 steam: 1024530 @@ -11413,14 +11141,14 @@ Art of Fighting: Art of Fighting 2: gog: 1429723205 pageId: 131731 -'Art of Fighting 3: The Path of the Warrior': +"Art of Fighting 3: The Path of the Warrior": pageId: 138518 Art of Gravity: pageId: 63024 steam: 642560 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Hamster On Coke Games\Art Of Gravity\}}' - - '{{Game data/saves|Windows|{{p|hkcu}}\Software\Hamster On Coke Games\Art Of Gravity\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Hamster On Coke Games\\Art Of Gravity\\}}" + - "{{Game data/saves|Windows|{{p|hkcu}}\\Software\\Hamster On Coke Games\\Art Of Gravity\\}}" Art of Guile: pageId: 59415 steam: 600250 @@ -11431,10 +11159,8 @@ Art of Murder - Cards of Destiny: pageId: 103377 steam: 836770 templates: - - >- - {{Game data/config|Windows|{{P|userprofile\Documents}}\{{LocalizedPath|Art of Murder - Cards of - Destiny}}\game.setup}} - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\{{LocalizedPath|Art of Murder - Cards of Destiny}}\}}' + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\{{LocalizedPath|Art of Murder - Cards of Destiny}}\\game.setup}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\{{LocalizedPath|Art of Murder - Cards of Destiny}}\\}}" Art of Murder - Deadly Secrets: pageId: 103373 steam: 836870 @@ -11442,18 +11168,14 @@ Art of Murder - FBI Confidential: pageId: 103385 steam: 809000 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\CITY_INTERACTIVE\AoM}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\Saved Games\Art of Murder FBI Confidential\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\CITY_INTERACTIVE\\AoM}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\Saved Games\\Art of Murder FBI Confidential\\}}" Art of Murder - Hunt for the Puppeteer: pageId: 103381 steam: 832540 templates: - - >- - {{Game data/config|Windows|{{P|userprofile\Documents}}\{{LocalizedPath|Art of Murder - The Hunt for the - Puppeteer}}\game.setup}} - - >- - {{Game data/saves|Windows|{{P|userprofile\Documents}}\{{LocalizedPath|Art of Murder - The Hunt for the - Puppeteer}}\}} + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\{{LocalizedPath|Art of Murder - The Hunt for the Puppeteer}}\\game.setup}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\{{LocalizedPath|Art of Murder - The Hunt for the Puppeteer}}\\}}" Art of Murder - The Secret Files: pageId: 103369 steam: 836860 @@ -11461,8 +11183,8 @@ Art of Rally: gog: 1192126527 gogSide: - 1371826936 - - 1811863520 - 1417806275 + - 1811863520 pageId: 137030 renamedFrom: - Art of rally @@ -11471,20 +11193,18 @@ Art of Rally: - 1297610 - 2250420 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\Funselektor Labs\art of rally\prefs}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Funselektor Labs/art of rally/prefs}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Funselektor Labs/art of rally/prefs}}' - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\Funselektor Labs\art of rally\cloud}}' - - >- - {{Game data/saves|Microsoft - Store|{{p|localappdata}}\Packages\Funselektor.artofrally_43tswnvjm2gzr\SystemAppData\wgs}} - - '{{Game data/saves|GOG.com|{{p|localappdata}}\GOG.com\Galaxy\Applications\52472571249609451\Storage\Shared\Files}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Funselektor Labs/art of rally/cloud}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Funselektor Labs/art of rally/cloud}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Funselektor Labs\\art of rally\\prefs}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Funselektor Labs/art of rally/prefs}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Funselektor Labs/art of rally/prefs}}" + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\Funselektor Labs\\art of rally\\cloud}}" + - "{{Game data/saves|Microsoft Store|{{p|localappdata}}\\Packages\\Funselektor.artofrally_43tswnvjm2gzr\\SystemAppData\\wgs}}" + - "{{Game data/saves|GOG.com|{{p|localappdata}}\\GOG.com\\Galaxy\\Applications\\52472571249609451\\Storage\\Shared\\Files}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Funselektor Labs/art of rally/cloud}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Funselektor Labs/art of rally/cloud}}" Art of Stealth: pageId: 56086 steam: 575160 -'Art of War: Red Tides': +"Art of War: Red Tides": pageId: 55476 steam: 558100 ArtFormer the Game: @@ -11496,47 +11216,47 @@ Artania: Artemis Spaceship Bridge Simulator: pageId: 37949 steam: 247350 -'Artemis: God-Queen of The Hunt': +"Artemis: God-Queen of The Hunt": pageId: 136647 steam: 1081850 Arthur and the Invisibles: pageId: 28989 templates: - - '{{Game data/saves|Windows|{{p|game}}\SAVE}}' + - "{{Game data/saves|Windows|{{p|game}}\\SAVE}}" Arthur and the Revenge of Maltazard: pageId: 172708 -Arthur's Birthday: +"Arthur's Birthday": pageId: 147526 steam: 2471140 -Arthur's Computer Adventure: +"Arthur's Computer Adventure": pageId: 187049 steam: 2471170 -'Arthur''s Knights II: The Secret of Merlin': +"Arthur's Knights II: The Secret of Merlin": pageId: 157686 templates: - - '{{Game data/config|Windows|{{p|game}}\System\}}' -'Arthur''s Knights: Tales of Chivalry': + - "{{Game data/config|Windows|{{p|game}}\\System\\}}" +"Arthur's Knights: Tales of Chivalry": pageId: 157684 templates: - - '{{Game data/config|Windows|{{p|game}}\System\}}' - - '{{Game data/saves|Windows|{{p|game}}}}' -Arthur's Reading Race: + - "{{Game data/config|Windows|{{p|game}}\\System\\}}" + - "{{Game data/saves|Windows|{{p|game}}}}" +"Arthur's Reading Race": pageId: 187051 steam: 2471160 -Arthur's Teacher Trouble: +"Arthur's Teacher Trouble": pageId: 186446 steam: 2471150 Arthurian Legends: pageId: 190889 steam: 658890 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\001\Games\Arthurian Legends\SETTINGS.INI}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\001\Games\Arthurian Legends}}' + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\001\\Games\\Arthurian Legends\\SETTINGS.INI}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\001\\Games\\Arthurian Legends}}" Artifact: pageId: 89134 steam: 583950 templates: - - '{{Game data/config|Steam|{{p|game}}/game/dcg/cfg/}}' + - "{{Game data/config|Steam|{{p|game}}/game/dcg/cfg/}}" Artifact Adventure: pageId: 47693 steam: 359440 @@ -11561,7 +11281,7 @@ Artificial Defense: pageId: 34499 steam: 443420 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\onemangames\Artificial Defense\savegame.dat}}' + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\onemangames\\Artificial Defense\\savegame.dat}}" Artificial Extinction: pageId: 151038 steam: 1167320 @@ -11583,14 +11303,14 @@ Artillery Cats: Artillery Globe: pageId: 123946 steam: 985770 -'Artisan: Going Home Again': +"Artisan: Going Home Again": pageId: 40022 steam: 525050 Artist Idle: pageId: 125697 steam: 968440 templates: - - '{{Game data/saves|Windows|{{P|localappdata}}\rgb11\save}}' + - "{{Game data/saves|Windows|{{P|localappdata}}\\rgb11\\save}}" Artistic Girl 1: pageId: 180370 steam: 1918700 @@ -11607,15 +11327,15 @@ Arx Fatalis: steamSide: - 1710 templates: - - '{{Game data/config|Windows|{{p|game}}\cfg_default.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\Save}}' + - "{{Game data/config|Windows|{{p|game}}\\cfg_default.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\Save}}" Ary and the Secret of Seasons: pageId: 114086 steam: 935570 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\eXiin\Ary and the Secret of Seasons\76561198040539092}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\eXiin\Ary and the Secret of Seasons\76561198040539092}}' -'Arzette: The Jewel of Faramore': + - "{{Game data/config|Windows|{{p|localappdata}}\\eXiin\\Ary and the Secret of Seasons\\76561198040539092}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\eXiin\\Ary and the Secret of Seasons\\76561198040539092}}" +"Arzette: The Jewel of Faramore": pageId: 190404 steam: 1924780 Arzt Simulator: @@ -11625,10 +11345,8 @@ As Dusk Falls: pageId: 162117 steam: 1341820 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Interior Night Ltd\Dusk\Save}}' - - >- - {{Game data/saves|Microsoft - Store|{{P|localappdata}}\Packages\Microsoft.3020BF20E956_8wekyb3d8bbwe\SystemAppData\wgs}} + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Interior Night Ltd\\Dusk\\Save}}" + - "{{Game data/saves|Microsoft Store|{{P|localappdata}}\\Packages\\Microsoft.3020BF20E956_8wekyb3d8bbwe\\SystemAppData\\wgs}}" As Far as the Eye: gog: 1556019399 pageId: 151034 @@ -11636,9 +11354,9 @@ As Far as the Eye: - As Far As The Eye steam: 1119700 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\A FATE}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\A FATE\Saves}}' -As If Dreaming When You're Wide Awake: + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\A FATE}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\A FATE\\Saves}}" +"As If Dreaming When You're Wide Awake": pageId: 93090 steam: 845370 As We Know It: @@ -11647,10 +11365,10 @@ As We Know It: Ascend: pageId: 139349 steam: 1036570 -'Ascend: Reborn': +"Ascend: Reborn": pageId: 89819 renamedFrom: - - 'Ascend: Hand of Kul' + - "Ascend: Hand of Kul" steam: 2113570 Ascendance: pageId: 89601 @@ -11660,8 +11378,8 @@ Ascendant: pageId: 17839 steam: 296930 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Hapa Games\Ascendant\}}' - - '{{Game data/saves|Windows|{{p|hkcu}}\Software\Hapa Games\Ascendant\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Hapa Games\\Ascendant\\}}" + - "{{Game data/saves|Windows|{{p|hkcu}}\\Software\\Hapa Games\\Ascendant\\}}" Ascendant Hearts: pageId: 76337 steam: 595730 @@ -11682,14 +11400,14 @@ Ascension to the Throne: pageId: 50389 steam: 289200 templates: - - '{{Game data/config|Windows|{{p|game}}\graphic.cfg|}}' - - '{{Game data/saves|Windows|{{p|game}}\Saves\}}' -'Ascension to the Throne: Valkyrie': + - "{{Game data/config|Windows|{{p|game}}\\graphic.cfg|}}" + - "{{Game data/saves|Windows|{{p|game}}\\Saves\\}}" +"Ascension to the Throne: Valkyrie": pageId: 154514 templates: - - '{{Game data/config|Windows|{{p|game}}\graphic.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\Saves\}}' -'Ascension: Deckbuilding Game': + - "{{Game data/config|Windows|{{p|game}}\\graphic.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\Saves\\}}" +"Ascension: Deckbuilding Game": pageId: 49103 steam: 320430 Ascent - The Space Game: @@ -11725,37 +11443,37 @@ Asemblance: pageId: 42621 steam: 452970 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\HoloRoom9code\Saved\SaveGames\GameVideoSave1.sav}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\HoloRoom9code\Saved\SaveGames\GameSave1.sav}}' -'Asemblance: Oversight': + - "{{Game data/config|Windows|{{p|localappdata}}\\HoloRoom9code\\Saved\\SaveGames\\GameVideoSave1.sav}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\HoloRoom9code\\Saved\\SaveGames\\GameSave1.sav}}" +"Asemblance: Oversight": pageId: 93696 steam: 809950 -Asgard's Wrath: +"Asgard's Wrath": pageId: 165491 templates: - - '{{Game data/config|Windows|C:\Program Files\Oculus\Software\Software\sanzaru-games-inc-wrath\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\WrathGame\Saved\SaveGames}}' + - "{{Game data/config|Windows|C:\\Program Files\\Oculus\\Software\\Software\\sanzaru-games-inc-wrath\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\WrathGame\\Saved\\SaveGames}}" Asguaard: pageId: 37874 steam: 332380 Ash Asylum: pageId: 143942 steam: 1102680 -'Ash of Gods: Redemption': +"Ash of Gods: Redemption": gog: 1756411154 gogSide: - 1608547183 pageId: 76369 steam: 691690 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\AurumDust LLC\Ash of Gods}}' - - '{{Game data/saves|Steam|{{p|Steam}}\userdata\{{p|uid}}\691690\remote\}}' -'Ash of Gods: The Way': + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\AurumDust LLC\\Ash of Gods}}" + - "{{Game data/saves|Steam|{{p|Steam}}\\userdata\\{{p|uid}}\\691690\\remote\\}}" +"Ash of Gods: The Way": gog: 1411422741 pageId: 187552 steam: 1293460 templates: - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\AurumDust LLC\Ash of Gods The Way\Saves}}' + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\AurumDust LLC\\Ash of Gods The Way\\Saves}}" Ash of War: pageId: 113188 renamedFrom: @@ -11769,17 +11487,17 @@ Ashen: pageId: 63658 steam: 649950 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Ashen\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Ashen\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Ashen\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Ashen\\Saved\\SaveGames\\}}" AshenForest: pageId: 150948 steam: 1160020 Asher: pageId: 52660 steam: 445950 -Asheron's Call: +"Asheron's Call": pageId: 175790 -'Asheron''s Call 2: Fallen Kings': +"Asheron's Call 2: Fallen Kings": pageId: 175795 Ashes: pageId: 64449 @@ -11797,8 +11515,8 @@ Ashes Cricket 2009: pageId: 145745 steam: 12860 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\My Games\Codemasters\Ashes Cricket 2009\USER.DAT}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\My Games\Codemasters\Ashes Cricket 2009\}}' + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\My Games\\Codemasters\\Ashes Cricket 2009\\USER.DAT}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\My Games\\Codemasters\\Ashes Cricket 2009\\}}" Ashes Cricket 2013: pageId: 95692 steam: 265020 @@ -11811,7 +11529,7 @@ Ashes of Immortality: Ashes of Immortality II: pageId: 46653 steam: 362140 -'Ashes of Immortality II: Bad Blood': +"Ashes of Immortality II: Bad Blood": pageId: 52698 steam: 362150 Ashes of Kanaka: @@ -11829,74 +11547,64 @@ Ashes of the Night: Ashes of the Singularity: gog: 1447327294 gogSide: + - 1309756718 - 1460023188 - 1543259894 - - 1309756718 - 2146570130 pageId: 34294 steam: 228880 steamSide: - - 488010 - - 475450 - - 460460 - 381650 + - 460460 + - 475450 + - 488010 - 565050 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Ashes of the Singularity\settings.ini}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Ashes of the Singularity\Saves\}}' -'Ashes of the Singularity: Escalation': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Ashes of the Singularity\\settings.ini}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Ashes of the Singularity\\Saves\\}}" +"Ashes of the Singularity: Escalation": gog: 1581811358 pageId: 39139 steam: 507490 templates: - - >- - {{Game data/config|Windows|{{P|userprofile\Documents}}\My Games\Ashes of the Singularity - - Escalation\settings.ini}} - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\My Games\Ashes of the Singularity - Escalation\Saves\}}' - - '{{Game data/saves|Steam|{{P|steam}}\userdata\{{P|uid}}\507490\remote\saves\}}' + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\My Games\\Ashes of the Singularity - Escalation\\settings.ini}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\My Games\\Ashes of the Singularity - Escalation\\Saves\\}}" + - "{{Game data/saves|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\507490\\remote\\saves\\}}" Ashi Wash: pageId: 92748 steam: 820210 -'Ashi: Lake of Light': +"Ashi: Lake of Light": pageId: 99498 steam: 819040 -'Ashina: The Red Witch': +"Ashina: The Red Witch": pageId: 191166 steam: 1259140 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\Saved Games\Ashina Saves\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\Saved Games\Ashina Saves\}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\Saved Games\\Ashina Saves\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Saved Games\\Ashina Saves\\}}" Ashland Dossier: pageId: 157420 steam: 1174680 Ashland 墲人之境: pageId: 150458 steam: 887690 -'Ashley Clark: Secret of the Ruby': +"Ashley Clark: Secret of the Ruby": pageId: 99514 steam: 882640 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\N-Tri Studio\Ashley Clark: Secret of the Ruby}}' - - '{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/N-Tri Studio/Ashley Clark: Secret of the Ruby/prefs}}' - - >- - {{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\N-Tri Studio\Ashley Clark: Secret of the - Ruby\Profiles\}} - - '{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/N-Tri Studio/Ashley Clark: Secret of the Ruby/Profiles/}}' -'Ashley Clark: The Secrets of the Ancient Temple': + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\N-Tri Studio\\Ashley Clark: Secret of the Ruby}}" + - "{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/N-Tri Studio/Ashley Clark: Secret of the Ruby/prefs}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\N-Tri Studio\\Ashley Clark: Secret of the Ruby\\Profiles\\}}" + - "{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/N-Tri Studio/Ashley Clark: Secret of the Ruby/Profiles/}}" +"Ashley Clark: The Secrets of the Ancient Temple": pageId: 107784 steam: 912110 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\N-Tri Studio\Ashley Clark: The Secrets of the Ancient Temple}}' - - >- - {{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/N-Tri Studio/Ashley Clark_ The Secrets of the Ancient - Temple/prefs}} - - >- - {{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\N-Tri Studio\Ashley Clark_ The Secrets of the Ancient - Temple\Profiles\}} - - >- - {{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/N-Tri Studio/Ashley Clark_ The Secrets of the Ancient - Temple/Profiles/}} -'Ashley: The Story of Survival': + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\N-Tri Studio\\Ashley Clark: The Secrets of the Ancient Temple}}" + - "{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/N-Tri Studio/Ashley Clark_ The Secrets of the Ancient Temple/prefs}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\N-Tri Studio\\Ashley Clark_ The Secrets of the Ancient Temple\\Profiles\\}}" + - "{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/N-Tri Studio/Ashley Clark_ The Secrets of the Ancient Temple/Profiles/}}" +"Ashley: The Story of Survival": pageId: 90092 steam: 820580 Ashwalkers: @@ -11927,28 +11635,26 @@ Aspect: Aspects of change: pageId: 145182 steam: 1136470 -'Aspectus: Rinascimento Chronicles': +"Aspectus: Rinascimento Chronicles": pageId: 48010 steam: 342250 -'Asphalt 6: Adrenaline': +"Asphalt 6: Adrenaline": pageId: 166364 -'Asphalt 7: Heat': +"Asphalt 7: Heat": pageId: 24947 -'Asphalt 8: Airborne': +"Asphalt 8: Airborne": pageId: 24950 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Packages\GAMELOFTSA.Asphalt8Airborne_0pp20fcewvvtj\Settings\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Packages\GAMELOFTSA.Asphalt8Airborne_0pp20fcewvvtj\LocalState\}}' -'Asphalt 9: Legends': + - "{{Game data/config|Windows|{{p|localappdata}}\\Packages\\GAMELOFTSA.Asphalt8Airborne_0pp20fcewvvtj\\Settings\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Packages\\GAMELOFTSA.Asphalt8Airborne_0pp20fcewvvtj\\LocalState\\}}" +"Asphalt 9: Legends": pageId: 101917 steam: 1815780 templates: - - '{{Game data/config|Microsoft Store|{{p|localappdata}}\Packages\A278AB0D.Asphalt9_h6adky7gbf63m\Settings}}' - - '{{Game data/config|Steam|{{p|localappdata}}\Gameloft\Asphalt 9 Legends\Temp}}' - - >- - {{Game data/saves|Microsoft - Store|{{p|localappdata}}\Packages\A278AB0D.Asphalt9_h6adky7gbf63m\LocalState\Documents}} - - '{{Game data/saves|Steam|{{p|localappdata}}\Gameloft\Asphalt 9 Legends\Documents}}' + - "{{Game data/config|Microsoft Store|{{p|localappdata}}\\Packages\\A278AB0D.Asphalt9_h6adky7gbf63m\\Settings}}" + - "{{Game data/config|Steam|{{p|localappdata}}\\Gameloft\\Asphalt 9 Legends\\Temp}}" + - "{{Game data/saves|Microsoft Store|{{p|localappdata}}\\Packages\\A278AB0D.Asphalt9_h6adky7gbf63m\\LocalState\\Documents}}" + - "{{Game data/saves|Steam|{{p|localappdata}}\\Gameloft\\Asphalt 9 Legends\\Documents}}" Asphalt Overdrive: pageId: 171874 Asphalt Street Storm Racing: @@ -11956,82 +11662,80 @@ Asphalt Street Storm Racing: Asphalt Xtreme: pageId: 57248 templates: - - '{{Game data/config|Windows|{{p|programfiles}}\WindowsApps\A278AB0D.AsphaltXtreme_1.7.3.8_x86__h6adky7gbf63m}}' + - "{{Game data/config|Windows|{{p|programfiles}}\\WindowsApps\\A278AB0D.AsphaltXtreme_1.7.3.8_x86__h6adky7gbf63m}}" Asphyxia: pageId: 33642 steam: 386990 -'Aspire: Ina''s Tale': +"Aspire: Ina's Tale": pageId: 173772 steam: 1720090 Assassin 2015: pageId: 191398 -Assassin's Creed: +"Assassin's Creed": gog: 1207659023 pageId: 84 steam: 15100 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Ubisoft\Assassin''s Creed\}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Ubisoft\Assassin''s Creed\Saved Games\}}' -'Assassin''s Creed Chronicles: China': + - "{{Game data/config|Windows|{{p|appdata}}\\Ubisoft\\Assassin's Creed\\}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Ubisoft\\Assassin's Creed\\Saved Games\\}}" +"Assassin's Creed Chronicles: China": pageId: 24032 steam: 354380 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\UnrealEngine3\ACCGame\ACCGame\Config\}}' - - '{{Game data/saves|Windows|{{P|uplay}}\savegames\{{p|uid}}\1651\}}' - - '{{Game data/saves|Steam|{{p|uplay}}\savegames\{{p|uid}}\1841\}}' -'Assassin''s Creed Chronicles: India': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\UnrealEngine3\\ACCGame\\ACCGame\\Config\\}}" + - "{{Game data/saves|Windows|{{P|uplay}}\\savegames\\{{p|uid}}\\1651\\}}" + - "{{Game data/saves|Steam|{{p|uplay}}\\savegames\\{{p|uid}}\\1841\\}}" +"Assassin's Creed Chronicles: India": pageId: 30763 steam: 359610 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\ACIndia\ACCGame\Config\}}' - - '{{Game data/saves|Windows|{{P|uplay}}\savegames\{{p|uid}}\1847\}}' - - '{{Game data/saves|Steam|{{p|uplay}}\savegames\{{p|uid}}\1849\}}' -'Assassin''s Creed Chronicles: Russia': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\ACIndia\\ACCGame\\Config\\}}" + - "{{Game data/saves|Windows|{{P|uplay}}\\savegames\\{{p|uid}}\\1847\\}}" + - "{{Game data/saves|Steam|{{p|uplay}}\\savegames\\{{p|uid}}\\1849\\}}" +"Assassin's Creed Chronicles: Russia": pageId: 31349 steam: 359600 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\ACRussia\ACCGame\Config\}}' - - '{{Game data/saves|Windows|{{P|uplay}}\savegames\{{p|uid}}\1848\}}' - - '{{Game data/saves|Steam|{{p|uplay}}\savegames\{{p|uid}}\1850\}}' -Assassin's Creed II: + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\ACRussia\\ACCGame\\Config\\}}" + - "{{Game data/saves|Windows|{{P|uplay}}\\savegames\\{{p|uid}}\\1848\\}}" + - "{{Game data/saves|Steam|{{p|uplay}}\\savegames\\{{p|uid}}\\1850\\}}" +"Assassin's Creed II": pageId: 221 steam: 33230 templates: - - '{{Game data/config|Windows|{{P|appdata}}\Ubisoft\Assassin''s Creed 2\Assassin2.ini}}' - - '{{Game data/saves|Windows|{{p|uplay}}\savegames\{{p|uid}}\4\}}' -Assassin's Creed III: + - "{{Game data/config|Windows|{{P|appdata}}\\Ubisoft\\Assassin's Creed 2\\Assassin2.ini}}" + - "{{Game data/saves|Windows|{{p|uplay}}\\savegames\\{{p|uid}}\\4\\}}" +"Assassin's Creed III": pageId: 3455 steam: 208480 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Assassin''s Creed III\Assassin3.ini}}' - - '{{Game data/saves|Windows|{{p|uplay}}\savegames\{{p|uid}}\54\}}' -Assassin's Creed III Remastered: + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Assassin's Creed III\\Assassin3.ini}}" + - "{{Game data/saves|Windows|{{p|uplay}}\\savegames\\{{p|uid}}\\54\\}}" +"Assassin's Creed III Remastered": pageId: 124755 steam: 911400 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Assassin''s Creed III Remaster\}}' - - '{{Game data/saves|Windows|{{p|uplay}}\savegames\{{p|uid}}\5183\|{{p|uplay}}\savegames\{{p|uid}}\5184\}}' -'Assassin''s Creed III: Liberation Remastered': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Assassin's Creed III Remaster\\}}" + - "{{Game data/saves|Windows|{{p|uplay}}\\savegames\\{{p|uid}}\\5183\\|{{p|uplay}}\\savegames\\{{p|uid}}\\5184\\}}" +"Assassin's Creed III: Liberation Remastered": pageId: 143155 steam: 911400 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Assassin''s Creed Liberation HD\Assassin3.ini}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Assassin''s Creed Liberation HD\Saves\}}' -'Assassin''s Creed IV: Black Flag': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Assassin's Creed Liberation HD\\Assassin3.ini}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Assassin's Creed Liberation HD\\Saves\\}}" +"Assassin's Creed IV: Black Flag": pageId: 5389 steam: 242050 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\Assassin's Creed IV Black - Flag\*.ini|{{p|userprofile\Documents}}\Assassin's Creed IV Black Flag\GFXSettings.*.xml}} - - '{{Game data/saves|Uplay|{{p|uplay}}\savegames\{{p|uid}}\273\}}' - - '{{Game data/saves|Steam|{{p|uplay}}\savegames\{{p|uid}}\437\}}' -Assassin's Creed Mirage: + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Assassin's Creed IV Black Flag\\*.ini|{{p|userprofile\\Documents}}\\Assassin's Creed IV Black Flag\\GFXSettings.*.xml}}" + - "{{Game data/saves|Uplay|{{p|uplay}}\\savegames\\{{p|uid}}\\273\\}}" + - "{{Game data/saves|Steam|{{p|uplay}}\\savegames\\{{p|uid}}\\437\\}}" +"Assassin's Creed Mirage": pageId: 181462 templates: - - '{{Game data/config|Windows|{{P|userprofile}}\Documents\Assassin''s Creed Mirage\}}' - - '{{Game data/saves|Windows|{{p|ubisoftconnect}}\savegames\{{p|uid}}\6100\}}' -Assassin's Creed Odyssey: + - "{{Game data/config|Windows|{{P|userprofile}}\\Documents\\Assassin's Creed Mirage\\}}" + - "{{Game data/saves|Windows|{{p|ubisoftconnect}}\\savegames\\{{p|uid}}\\6100\\}}" +"Assassin's Creed Odyssey": pageId: 97309 steam: 812140 steamSide: @@ -12039,80 +11743,74 @@ Assassin's Creed Odyssey: - 937891 - 937892 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Assassin''s Creed Odyssey\ACOdyssey.ini}}' - - '{{Game data/saves|Uplay|{{p|uplay}}\savegames\{{p|uid}}\5059\}}' - - '{{Game data/saves|Steam|{{p|uplay}}\savegames\{{p|uid}}\5092\}}' -Assassin's Creed Origins: + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Assassin's Creed Odyssey\\ACOdyssey.ini}}" + - "{{Game data/saves|Uplay|{{p|uplay}}\\savegames\\{{p|uid}}\\5059\\}}" + - "{{Game data/saves|Steam|{{p|uplay}}\\savegames\\{{p|uid}}\\5092\\}}" +"Assassin's Creed Origins": pageId: 63632 steam: 582160 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\Assassin's Creed - Origins\ACO.ini|{{p|userprofile\Documents}}\Assassin's Creed Origins\ControlMappings.xml}} - - '{{Game data/saves|Windows|{{p|uplay}}\savegames\{{p|uid}}\3539\}}' - - '{{Game data/saves|Steam|{{p|uplay}}\savegames\{{p|uid}}\4923\}}' -Assassin's Creed Rogue: + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Assassin's Creed Origins\\ACO.ini|{{p|userprofile\\Documents}}\\Assassin's Creed Origins\\ControlMappings.xml}}" + - "{{Game data/saves|Windows|{{p|uplay}}\\savegames\\{{p|uid}}\\3539\\}}" + - "{{Game data/saves|Steam|{{p|uplay}}\\savegames\\{{p|uid}}\\4923\\}}" +"Assassin's Creed Rogue": pageId: 22658 steam: 311560 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\Assassin''s Creed Rogue\AssassinRogue.ini}}' - - '{{Game data/saves|Uplay|{{P|uplay}}\savegames\{{p|uid}}\895\|{{P|uplay}}\savegames\{{p|uid}}\1186\}}' - - '{{Game data/saves|Steam|{{p|uplay}}\savegames\{{p|uid}}\934\|{{P|uplay}}\savegames\{{p|uid}}\1187\}}' -Assassin's Creed Syndicate: + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\Assassin's Creed Rogue\\AssassinRogue.ini}}" + - "{{Game data/saves|Uplay|{{P|uplay}}\\savegames\\{{p|uid}}\\895\\|{{P|uplay}}\\savegames\\{{p|uid}}\\1186\\}}" + - "{{Game data/saves|Steam|{{p|uplay}}\\savegames\\{{p|uid}}\\934\\|{{P|uplay}}\\savegames\\{{p|uid}}\\1187\\}}" +"Assassin's Creed Syndicate": pageId: 25229 steam: 368500 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\Assassin''s Creed Syndicate\AC.ini}}' - - '{{Game data/saves|Windows|{{P|uplay}}\savegames\{{p|uid}}\1875\}}' - - '{{Game data/saves|Steam|{{P|uplay}}\savegames\{{p|uid}}\1957\}}' -Assassin's Creed Unity: + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\Assassin's Creed Syndicate\\AC.ini}}" + - "{{Game data/saves|Windows|{{P|uplay}}\\savegames\\{{p|uid}}\\1875\\}}" + - "{{Game data/saves|Steam|{{P|uplay}}\\savegames\\{{p|uid}}\\1957\\}}" +"Assassin's Creed Unity": pageId: 17713 steam: 289650 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\Assassin''s Creed Unity\ACU.ini}}' - - '{{Game data/saves|Windows|{{P|uplay}}\savegames\{{p|uid}}\720\}}' - - '{{Game data/saves|Steam|{{P|ubisoftconnect}}\savegames\{{p|uid}}\857\}}' -Assassin's Creed Valhalla: + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\Assassin's Creed Unity\\ACU.ini}}" + - "{{Game data/saves|Windows|{{P|uplay}}\\savegames\\{{p|uid}}\\720\\}}" + - "{{Game data/saves|Steam|{{P|ubisoftconnect}}\\savegames\\{{p|uid}}\\857\\}}" +"Assassin's Creed Valhalla": pageId: 159546 steam: 2208920 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\Assassin''s Creed Valhalla\ACValhalla.ini}}' - - '{{Game data/saves|Windows|{{p|ubisoftconnect}}\savegames\{{p|uid}}\13504\}}' - - '{{Game data/saves|Steam|{{p|ubisoftconnect}}\savegames\{{p|uid}}\7013\}}' -'Assassin''s Creed: Brotherhood': + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\Assassin's Creed Valhalla\\ACValhalla.ini}}" + - "{{Game data/saves|Windows|{{p|ubisoftconnect}}\\savegames\\{{p|uid}}\\13504\\}}" + - "{{Game data/saves|Steam|{{p|ubisoftconnect}}\\savegames\\{{p|uid}}\\7013\\}}" +"Assassin's Creed: Brotherhood": pageId: 222 steam: 48190 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\Saved Games\Assassin''s Creed Brotherhood\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\Saved Games\Assassin''s Creed Brotherhood\SAVES\}}' -'Assassin''s Creed: Freedom Cry': + - "{{Game data/config|Windows|{{p|userprofile}}\\Saved Games\\Assassin's Creed Brotherhood\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Saved Games\\Assassin's Creed Brotherhood\\SAVES\\}}" +"Assassin's Creed: Freedom Cry": pageId: 18460 steam: 277590 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\Assassin's Creed Freedom - Cry\Assassin4.ini|{{p|userprofile\Documents}}\Assassin's Creed Freedom Cry\GFXSettings.*.xml}} - - '{{Game data/saves|Windows|{{p|uplay}}\savegames\{{p|uid}}\664\}}' -'Assassin''s Creed: Liberation HD': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Assassin's Creed Freedom Cry\\Assassin4.ini|{{p|userprofile\\Documents}}\\Assassin's Creed Freedom Cry\\GFXSettings.*.xml}}" + - "{{Game data/saves|Windows|{{p|uplay}}\\savegames\\{{p|uid}}\\664\\}}" +"Assassin's Creed: Liberation HD": pageId: 14074 steam: 260210 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Assassin''s Creed Liberation HD\Assassin4.ini}}' - - '{{Game data/saves|Windows|{{p|uplay}}\savegames\{{p|uid}}\625\|{{p|uplay}}\savegames\{{p|uid}}\632\}}' -'Assassin''s Creed: Pirates': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Assassin's Creed Liberation HD\\Assassin4.ini}}" + - "{{Game data/saves|Windows|{{p|uplay}}\\savegames\\{{p|uid}}\\625\\|{{p|uplay}}\\savegames\\{{p|uid}}\\632\\}}" +"Assassin's Creed: Pirates": pageId: 69296 -'Assassin''s Creed: Revelations': +"Assassin's Creed: Revelations": pageId: 223 steam: 201870 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Assassin''s Creed Revelations\ACRevelations.ini}}' - - >- - {{Game data/saves|Windows|{{p|uplay}}\savegames\{{p|uid}}\40\|{{p|LOCALAPPDATA}}\Ubisoft Game - Launcher\savegame_storage\{{p|uid}}\40\}} + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Assassin's Creed Revelations\\ACRevelations.ini}}" + - "{{Game data/saves|Windows|{{p|uplay}}\\savegames\\{{p|uid}}\\40\\|{{p|LOCALAPPDATA}}\\Ubisoft Game Launcher\\savegame_storage\\{{p|uid}}\\40\\}}" Assassination Box: pageId: 52700 steam: 551550 -'Assassination Classroom VR: Balloon Challenge Time': +"Assassination Classroom VR: Balloon Challenge Time": pageId: 63709 steam: 625460 Assassination Station: @@ -12125,9 +11823,9 @@ Assault Android Cactus: pageId: 36295 steam: 250110 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Witch Beam\Assault Android Cactus}}' - - '{{Game data/saves|Windows|{{p|game}}\cactus_Data\game0a.sav}}' - - '{{Game data/saves|Steam|{{p|Steam}}/userdata/{{p|uid}}/250110/remote}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Witch Beam\\Assault Android Cactus}}" + - "{{Game data/saves|Windows|{{p|game}}\\cactus_Data\\game0a.sav}}" + - "{{Game data/saves|Steam|{{p|Steam}}/userdata/{{p|uid}}/250110/remote}}" Assault Corps 2: pageId: 47259 steam: 376120 @@ -12139,8 +11837,8 @@ Assault Spy: pageId: 82926 steam: 767930 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\ASSAULT_SPY\Saved\Config\WindowsNoEditor\}}' -'Assault Squad 2: Men of War Origins': + - "{{Game data/config|Windows|{{p|localappdata}}\\ASSAULT_SPY\\Saved\\Config\\WindowsNoEditor\\}}" +"Assault Squad 2: Men of War Origins": pageId: 36784 steam: 1260050 steamSide: @@ -12168,15 +11866,15 @@ Assault on the Necrospire: AssaultCube: pageId: 21782 templates: - - '{{Game data/config|Windows|{{p|game}}\config}}' - - '{{Game data/config|OS X|{{p|osxhome}}/.assaultcube/config}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.assaultcube/config}}' + - "{{Game data/config|Windows|{{p|game}}\\config}}" + - "{{Game data/config|OS X|{{p|osxhome}}/.assaultcube/config}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.assaultcube/config}}" Assemble with Care: pageId: 147903 steam: 1202900 templates: - - '{{Game data/config|Windows|{{P|userprofile\appdata\locallow}}\ustwo games\AWC\}}' - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\ustwo games\AWC\}}' + - "{{Game data/config|Windows|{{P|userprofile\\appdata\\locallow}}\\ustwo games\\AWC\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\ustwo games\\AWC\\}}" Assembly League: pageId: 82894 steam: 725890 @@ -12193,21 +11891,21 @@ Assetto Corsa: pageId: 12223 steam: 244210 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Assetto Corsa\cfg\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Assetto Corsa\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Assetto Corsa\\cfg\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Assetto Corsa\\}}" Assetto Corsa Competizione: pageId: 87589 steam: 805550 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Assetto Corsa Competizione\Config\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Assetto Corsa Competizione\Savegames\}}' -'Astalon: Tears of the Earth': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Assetto Corsa Competizione\\Config\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Assetto Corsa Competizione\\Savegames\\}}" +"Astalon: Tears of the Earth": gog: 1204422578 pageId: 132891 steam: 1046400 templates: - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\LABSWorks\Astalon\MySave}}' - - '{{Game data/saves|Linux|Home/.config/unity3d/LABSWorks/Astalon}}' + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\LABSWorks\\Astalon\\MySave}}" + - "{{Game data/saves|Linux|Home/.config/unity3d/LABSWorks/Astalon}}" Astaria: pageId: 130404 steam: 1033540 @@ -12216,8 +11914,8 @@ Astebreed: pageId: 18981 steam: 283680 templates: - - '{{Game data/config|Windows|{{p|game}}\data\config.json}}' - - '{{Game data/saves|Windows|{{p|game}}\data\system.dat}}' + - "{{Game data/config|Windows|{{p|game}}\\data\\config.json}}" + - "{{Game data/saves|Windows|{{p|game}}\\data\\system.dat}}" Asteion Nights: pageId: 82853 steam: 792070 @@ -12228,19 +11926,18 @@ Aster: pageId: 156674 steam: 1070940 templates: - - '{{Game data/config|Windows|{{p|game}}/config.txt}}' - - '{{Game data/saves|Windows|{{p|game}}/save1.txt}}' + - "{{Game data/config|Windows|{{p|game}}/config.txt}}" + - "{{Game data/saves|Windows|{{p|game}}/save1.txt}}" Asteria: pageId: 50007 steam: 307130 -'Asterigos: Curse of the Stars': +"Asterigos: Curse of the Stars": gog: 1125601806 gogSide: - - 2125000806 - - 1493317175 - - 1381703489 - 1343537666 + - 1381703489 - 1487942939 + - 1493317175 - 2002301113 - 2125000806 pageId: 177274 @@ -12250,16 +11947,11 @@ Asteria: - 1969900 - 1970150 - 2119800 - - 1783160 templates: - - '{{Game data/config|Windows|{{P|userprofile}}\Saved Games\AcmeGS\Asterigos\Saved\Config\WindowsNoEditor\}}' - - >- - {{Game - data/config|GOG.com|{{P|localappdata}}\GOG.com\Galaxy\Applications\55527939497609229\Storage\Asterigos\Saved\Config\WindowsNoEditor\}} - - '{{Game data/saves|Windows|{{P|userprofile}}\Saved Games\AcmeGS\Asterigos\Saved\SaveGames\}}' - - >- - {{Game - data/saves|GOG.com|{{P|localappdata}}\GOG.com\Galaxy\Applications\55527939497609229\Storage\Asterigos\Saved\SaveGames\}} + - "{{Game data/config|Windows|{{P|userprofile}}\\Saved Games\\AcmeGS\\Asterigos\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/config|GOG.com|{{P|localappdata}}\\GOG.com\\Galaxy\\Applications\\55527939497609229\\Storage\\Asterigos\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\Saved Games\\AcmeGS\\Asterigos\\Saved\\SaveGames\\}}" + - "{{Game data/saves|GOG.com|{{P|localappdata}}\\GOG.com\\Galaxy\\Applications\\55527939497609229\\Storage\\Asterigos\\Saved\\SaveGames\\}}" Asterion: pageId: 122896 steam: 955940 @@ -12269,64 +11961,64 @@ Asterism: Asterix & Obelix: pageId: 76514 templates: - - '{{Game data/config|DOS|{{p|game}}\OBELIXW.CFG}}' - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Infogrames\Asterix & Obelix}}' + - "{{Game data/config|DOS|{{p|game}}\\OBELIXW.CFG}}" + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Infogrames\\Asterix & Obelix}}" Asterix & Obelix XXL: pageId: 133728 templates: - - '{{Game data/config|Windows|{{p|game}}\SAVE\AOXXL.sav}}' - - '{{Game data/saves|Windows|{{p|game}}\SAVE\AOXXL.sav}}' + - "{{Game data/config|Windows|{{p|game}}\\SAVE\\AOXXL.sav}}" + - "{{Game data/saves|Windows|{{p|game}}\\SAVE\\AOXXL.sav}}" Asterix & Obelix XXL 2: gog: 1858508334 pageId: 113476 steam: 887060 templates: - - '{{Game data/config|Windows|{{P|game}}\_Save\Local Settings.ob}}' - - '{{Game data/saves|Windows|{{P|game}}\_Save\Profile.ob}}' -'Asterix & Obelix XXL 2: Mission: Las Vegum': + - "{{Game data/config|Windows|{{P|game}}\\_Save\\Local Settings.ob}}" + - "{{Game data/saves|Windows|{{P|game}}\\_Save\\Profile.ob}}" +"Asterix & Obelix XXL 2: Mission: Las Vegum": pageId: 175914 -'Asterix & Obelix XXL 3: The Crystal Menhir': +"Asterix & Obelix XXL 3: The Crystal Menhir": gog: 1621135703 pageId: 145187 renamedFrom: - Asterix & Obelix XXL 3 - The Crystal Menhir steam: 1109690 templates: - - '{{Game data/config|Windows|{{P|appdata}}\XXL3\Settings.ob}}' - - '{{Game data/saves|Windows|{{P|appdata}}\XXL3\GameSave.ob}}' - - '{{Game data/saves|OS X|Path}}' -'Asterix & Obelix XXL: Romastered': + - "{{Game data/config|Windows|{{P|appdata}}\\XXL3\\Settings.ob}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\XXL3\\GameSave.ob}}" + - "{{Game data/saves|OS X|Path}}" +"Asterix & Obelix XXL: Romastered": gog: 1651633788 pageId: 162927 renamedFrom: - Asterix & Obelix XXL Romastered steam: 1261520 templates: - - '{{Game data/saves|Windows|{{P|appdata}}\XXL1\GameSlot_*.ob}}' -'Asterix & Obelix XXXL: The Ram from Hibernia': + - "{{Game data/saves|Windows|{{P|appdata}}\\XXL1\\GameSlot_*.ob}}" +"Asterix & Obelix XXXL: The Ram from Hibernia": gog: 1896503203 pageId: 182974 steam: 1894730 -'Asterix & Obelix: Slap Them All!': +"Asterix & Obelix: Slap Them All!": gog: 1144297591 pageId: 170020 renamedFrom: - - 'Asterix & Obelix: Slap them All!' + - "Asterix & Obelix: Slap them All!" steam: 1492310 templates: - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Microids\gameslots.000}}' + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Microids\\gameslots.000}}" Asterix at the Olympic Games: pageId: 185064 templates: - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\Atari\Asterix at the Olympic Games\AsterixJO.sav}}' -'Asterix: Mega Madness': + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\Atari\\Asterix at the Olympic Games\\AsterixJO.sav}}" +"Asterix: Mega Madness": pageId: 174308 templates: - - '{{Game data/saves|Windows|{{p|game}}\ASTERIX.cfg}}' -'Asterix: The Gallic War': + - "{{Game data/saves|Windows|{{p|game}}\\ASTERIX.cfg}}" +"Asterix: The Gallic War": pageId: 168583 templates: - - '{{Game data/saves|Windows|{{p|game}}}}' + - "{{Game data/saves|Windows|{{p|game}}}}" Asterlode: pageId: 105133 steam: 887210 @@ -12340,7 +12032,7 @@ Asteroid Bounty Hunter: pageId: 34141 steam: 444220 templates: - - '{{Game data/saves|Windows|{{p|appdata}}\AsteroidBountyHunter\}}' + - "{{Game data/saves|Windows|{{p|appdata}}\\AsteroidBountyHunter\\}}" Asteroid Deathmatch: pageId: 122046 steam: 855620 @@ -12371,7 +12063,7 @@ Asteroid Navigation: Asteroid RKD: pageId: 112088 steam: 871640 -'Asteroid Run: No Questions Asked': +"Asteroid Run: No Questions Asked": pageId: 141226 steam: 1090030 Asteroid Turret Defender VR: @@ -12390,15 +12082,15 @@ Asteroids Minesweeper: pageId: 42479 steam: 425070 templates: - - '{{Game data/config|Windows|{{p|appdata}}\AsteroidsMinesweeper\conf.dat}}' - - '{{Game data/saves|Windows|{{p|appdata}}\AsteroidsMinesweeper\save.dat}}' + - "{{Game data/config|Windows|{{p|appdata}}\\AsteroidsMinesweeper\\conf.dat}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\AsteroidsMinesweeper\\save.dat}}" Asteroids VR: pageId: 82101 steam: 789480 -'Asteroids: Outpost': +"Asteroids: Outpost": pageId: 48359 steam: 330210 -'Asteroids: Recharged': +"Asteroids: Recharged": gog: 1651421166 pageId: 173681 steam: 1700890 @@ -12414,7 +12106,7 @@ Astonia Reborn: Astonishing Baseball 2019: pageId: 138918 steam: 1092190 -'Astoria: The Holders of Power Saga': +"Astoria: The Holders of Power Saga": pageId: 65712 steam: 669380 Astra Exodus: @@ -12428,8 +12120,8 @@ Astral Ascent: pageId: 172766 steam: 1280930 templates: - - '{{Game data/config|Windows|{{P|userprofile}}\Saved Games\Astral Ascent\{{P|uid}}\aa_options.sav}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\Saved Games\Astral Ascent\{{P|uid}}\aa_game.sav}}' + - "{{Game data/config|Windows|{{P|userprofile}}\\Saved Games\\Astral Ascent\\{{P|uid}}\\aa_options.sav}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\Saved Games\\Astral Ascent\\{{P|uid}}\\aa_game.sav}}" Astral Battlefield / 星界战场: pageId: 142209 steam: 1098500 @@ -12449,35 +12141,35 @@ Astral Heroes: pageId: 51865 steam: 488910 templates: - - '{{Game data/config|Windows|{{p|game}}\game.ctl}}' + - "{{Game data/config|Windows|{{p|game}}\\game.ctl}}" Astral Shipwright: pageId: 189481 steam: 1728180 templates: - - '{{Game data/saves|Windows|{{p|localappdata}}\AstralShipwright\Saved\}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/Epic/AstralShipwright/Saved/}}' + - "{{Game data/saves|Windows|{{p|localappdata}}\\AstralShipwright\\Saved\\}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/Epic/AstralShipwright/Saved/}}" Astral Terra: pageId: 45680 steam: 266190 Astral Traveler: pageId: 66474 steam: 618630 -'Astralojia: Episode 1': +"Astralojia: Episode 1": pageId: 141950 steam: 1090420 Astray: pageId: 48797 steam: 329200 templates: - - '{{Game data/saves|Windows|{{p|localappdata}}\Astray\}}' -'Astrea: Six-Sided Oracles': + - "{{Game data/saves|Windows|{{p|localappdata}}\\Astray\\}}" +"Astrea: Six-Sided Oracles": gog: 2090876025 pageId: 177720 steam: 1755830 steamSide: - 1942700 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Little Leo Games\Astrea\}}' + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Little Leo Games\\Astrea\\}}" Astrela Starlight: pageId: 108320 steam: 891850 @@ -12486,21 +12178,19 @@ Astria Ascending: pageId: 167464 steam: 1121780 templates: - - '{{Game data/saves|Windows|$USER/AppData/LocalLow/Artisan Game Studios/Astria Ascending/}}' - - >- - {{Game data/saves|Microsoft - Store|{{P|LOCALAPPDATA}}\Packages\PlugInDigital.AstriaAscending_9e3ank8rmgj0t\SystemAppData\wgs}} + - "{{Game data/saves|Windows|$USER/AppData/LocalLow/Artisan Game Studios/Astria Ascending/}}" + - "{{Game data/saves|Microsoft Store|{{P|LOCALAPPDATA}}\\Packages\\PlugInDigital.AstriaAscending_9e3ank8rmgj0t\\SystemAppData\\wgs}}" Astro Bouncer: pageId: 99332 steam: 884770 -'Astro Boy: Edge of Time': +"Astro Boy: Edge of Time": pageId: 63334 steam: 542560 Astro Colony: pageId: 191183 steam: 1614550 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\AstroColony\Saved\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\AstroColony\\Saved\\}}" Astro Duel: pageId: 44503 steam: 429690 @@ -12510,7 +12200,7 @@ Astro Emporia: Astro Joust: pageId: 81498 steam: 762670 -'Astro Lords: Oort Cloud': +"Astro Lords: Oort Cloud": pageId: 44954 steam: 372190 Astro Tripper: @@ -12519,7 +12209,7 @@ Astro Tripper: Astro4x: pageId: 135250 steam: 1070980 -'Astro: The Beginning': +"Astro: The Beginning": pageId: 136449 steam: 1082200 AstroGenesis: @@ -12535,7 +12225,7 @@ AstroPop: pageId: 12261 steam: 3340 templates: - - '{{Game data/saves|Windows|{{p|game}}\users}}' + - "{{Game data/saves|Windows|{{p|game}}\\users}}" AstroShift: pageId: 72282 steam: 703250 @@ -12548,8 +12238,8 @@ Astrobase Command: Astrobatics: pageId: 174383 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\KraiSoft\Astrobatics}}' - - '{{Game data/saves|Windows|{{P|game}}\RESOURCE\Astrobatics.plt}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\KraiSoft\\Astrobatics}}" + - "{{Game data/saves|Windows|{{P|game}}\\RESOURCE\\Astrobatics.plt}}" Astroderps: pageId: 35246 steam: 492850 @@ -12569,7 +12259,7 @@ Astrog: Astrohazard Solutions Ltd.: pageId: 76321 steam: 751260 -'Astroloco: Worst Contact': +"Astroloco: Worst Contact": pageId: 44175 steam: 357490 Astrologaster: @@ -12581,32 +12271,28 @@ Astrologaster: steamSide: - 1111550 templates: - - '{{Game data/config|Windows|{{p|game}}\Save\AstrologasterSettingData.bin}}' - - '{{Game data/saves|Windows|{{p|game}}\Save\AstrologasterSaveData.bin}}' + - "{{Game data/config|Windows|{{p|game}}\\Save\\AstrologasterSettingData.bin}}" + - "{{Game data/saves|Windows|{{p|game}}\\Save\\AstrologasterSaveData.bin}}" AstronTycoon: pageId: 94033 steam: 851790 -'AstronTycoon2: Ritual': +"AstronTycoon2: Ritual": pageId: 150826 steam: 1160500 Astronaut Simulator: pageId: 48300 steam: 356770 -'Astronaut: The Moon Eclipse': +"Astronaut: The Moon Eclipse": pageId: 114376 steam: 940640 Astroneer: pageId: 39482 steam: 361420 templates: - - >- - {{Game data/config|Microsoft - Store|{{p|localappdata}}\Packages\SystemEraSoftworks.29415440E1269_ftk5pbg2rayv2\LocalState\Astro\Saved\Config\UWP\}} - - '{{Game data/config|Steam|{{P|localappdata}}\Astro\Saved\Config\WindowsNoEditor\}}' - - >- - {{Game data/saves|Microsoft - Store|{{p|localappdata}}\Packages\SystemEraSoftworks.29415440E1269_ftk5pbg2rayv2\SystemAppData\wgs\}} - - '{{Game data/saves|Steam|{{P|localappdata}}\Astro\Saved\SaveGames\}}' + - "{{Game data/config|Microsoft Store|{{p|localappdata}}\\Packages\\SystemEraSoftworks.29415440E1269_ftk5pbg2rayv2\\LocalState\\Astro\\Saved\\Config\\UWP\\}}" + - "{{Game data/config|Steam|{{P|localappdata}}\\Astro\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Microsoft Store|{{p|localappdata}}\\Packages\\SystemEraSoftworks.29415440E1269_ftk5pbg2rayv2\\SystemAppData\\wgs\\}}" + - "{{Game data/saves|Steam|{{P|localappdata}}\\Astro\\Saved\\SaveGames\\}}" AstronjumpBaby: pageId: 68172 steam: 692710 @@ -12621,14 +12307,14 @@ Astrox Imperium: pageId: 130161 steam: 954870 templates: - - '{{Game data/config|Windows|{{P|game}}\MOD\game_config.txt}}' - - '{{Game data/saves|Windows|{{P|game}}\MOD\saves}}' -'Astrox: Hostile Space Excavation': + - "{{Game data/config|Windows|{{P|game}}\\MOD\\game_config.txt}}" + - "{{Game data/saves|Windows|{{P|game}}\\MOD\\saves}}" +"Astrox: Hostile Space Excavation": pageId: 37975 steam: 414720 -'Astérix & Obélix: Take on Caesar': +"Astérix & Obélix: Take on Caesar": pageId: 178386 -'Astérix: Caesar''s Challenge': +"Astérix: Caesar's Challenge": pageId: 173305 Asuka 120% Return BURNING Fest.: pageId: 168106 @@ -12645,7 +12331,7 @@ Asura the Striker: - Asura the Striker - Asura The Striker steam: 2389830 -'Asylamba: Influence': +"Asylamba: Influence": pageId: 93932 steam: 756240 Asylopole: @@ -12667,7 +12353,7 @@ Asyula 方舟之链: At Dead Of Night: pageId: 166053 steam: 1450830 -At Eve's Wake: +"At Eve's Wake": pageId: 172544 steam: 1395120 At Home: @@ -12693,91 +12379,91 @@ Atajrubah: Ataque Marino: pageId: 125306 steam: 998780 -'Atari 50: The Anniversary Celebration': +"Atari 50: The Anniversary Celebration": gog: 1256432987 pageId: 180544 steam: 1919470 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Atari 50}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Atari 50}}' + - "{{Game data/config|Windows|{{p|appdata}}\\Atari 50}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Atari 50}}" Atari Anniversary Edition: pageId: 171178 Atari Mania: pageId: 181793 steam: 1911800 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Atari\Atari Mania\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Atari\Atari Mania}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Atari\\Atari Mania\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Atari\\Atari Mania}}" Atari Vault: pageId: 44001 steam: 400020 templates: - - '{{Game data/config|Linux|{{P|xdgconfighome}}/.config/unity3d/Atari+/Atari Vault}}' - - '{{Game data/saves|Linux|{{P|xdgconfighome}}/.config/unity3d/Atari+/Atari Vault}}' -'Atari: 80 Classic Games in One!': + - "{{Game data/config|Linux|{{P|xdgconfighome}}/.config/unity3d/Atari+/Atari Vault}}" + - "{{Game data/saves|Linux|{{P|xdgconfighome}}/.config/unity3d/Atari+/Atari Vault}}" +"Atari: 80 Classic Games in One!": pageId: 87772 steam: 2790 -'Atelier Ayesha: The Alchemist of Dusk DX': +"Atelier Ayesha: The Alchemist of Dusk DX": pageId: 155087 steam: 1152300 -'Atelier Elie: The Alchemist of Salburg 2': +"Atelier Elie: The Alchemist of Salburg 2": pageId: 162382 -'Atelier Escha & Logy: Alchemists of the Dusk Sky DX': +"Atelier Escha & Logy: Alchemists of the Dusk Sky DX": pageId: 155089 steam: 1152310 -'Atelier Firis: The Alchemist and the Mysterious Journey': +"Atelier Firis: The Alchemist and the Mysterious Journey": pageId: 57033 steam: 527290 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\KoeiTecmo\A18\}}' - - '{{Game data/saves|Steam|{{p|userprofile\Documents}}\KoeiTecmo\A18\SAVEDATA\}}' -'Atelier Firis: The Alchemist and the Mysterious Journey DX': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\KoeiTecmo\\A18\\}}" + - "{{Game data/saves|Steam|{{p|userprofile\\Documents}}\\KoeiTecmo\\A18\\SAVEDATA\\}}" +"Atelier Firis: The Alchemist and the Mysterious Journey DX": pageId: 167818 steam: 1502980 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\KoeiTecmo\Atelier Firis DX}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\KoeiTecmo\Atelier Firis DX\SAVEDATA}}' -'Atelier Lulua: The Scion of Arland': + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\KoeiTecmo\\Atelier Firis DX}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\KoeiTecmo\\Atelier Firis DX\\SAVEDATA}}" +"Atelier Lulua: The Scion of Arland": pageId: 134221 steam: 1045620 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\KoeiTecmo\Atelier Lulua\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\KoeiTecmo\Atelier Lulua\GameData00}}' -'Atelier Lydie & Suelle: The Alchemists and the Mysterious Paintings': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\KoeiTecmo\\Atelier Lulua\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\KoeiTecmo\\Atelier Lulua\\GameData00}}" +"Atelier Lydie & Suelle: The Alchemists and the Mysterious Paintings": pageId: 90904 steam: 756590 steamSide: - 776840 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\KoeiTecmo\Atelier Lydie and Suelle\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\KoeiTecmo\Atelier Lydie and Suelle\SAVEDATA\}}' -'Atelier Lydie & Suelle: The Alchemists and the Mysterious Paintings DX': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\KoeiTecmo\\Atelier Lydie and Suelle\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\KoeiTecmo\\Atelier Lydie and Suelle\\SAVEDATA\\}}" +"Atelier Lydie & Suelle: The Alchemists and the Mysterious Paintings DX": pageId: 167820 steam: 1502990 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\KoeiTecmo\Atelier Lydie and Suelle DX}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\KoeiTecmo\Atelier Lydie and Suelle DX\SAVEDATA}}' -'Atelier Marie Remake: The Alchemist of Salburg': + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\KoeiTecmo\\Atelier Lydie and Suelle DX}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\KoeiTecmo\\Atelier Lydie and Suelle DX\\SAVEDATA}}" +"Atelier Marie Remake: The Alchemist of Salburg": pageId: 185396 steam: 2138090 templates: - - '{{Game data/config|Windows|{{p|userprofile\documents}}\KoeiTecmo\Atelier Marie Remake\Setting.ini}}' - - '{{Game data/saves|Windows|{{p|userprofile\documents}}\KoeiTecmo\Atelier Marie Remake}}' -'Atelier Marie: The Alchemist of Salburg': + - "{{Game data/config|Windows|{{p|userprofile\\documents}}\\KoeiTecmo\\Atelier Marie Remake\\Setting.ini}}" + - "{{Game data/saves|Windows|{{p|userprofile\\documents}}\\KoeiTecmo\\Atelier Marie Remake}}" +"Atelier Marie: The Alchemist of Salburg": pageId: 155193 -'Atelier Meruru: The Apprentice of Arland DX': +"Atelier Meruru: The Apprentice of Arland DX": pageId: 123265 steam: 936190 templates: - - '{{Game data/config|Windows|{{P|game}}\ArlandDX_Settings.ini}}' - - '{{Game data/saves|Windows|{{P|steam}}\userdata\{{P|uid}}\936190\remote\SAVEDATA}}' -'Atelier Rorona: The Alchemist of Arland DX': + - "{{Game data/config|Windows|{{P|game}}\\ArlandDX_Settings.ini}}" + - "{{Game data/saves|Windows|{{P|steam}}\\userdata\\{{P|uid}}\\936190\\remote\\SAVEDATA}}" +"Atelier Rorona: The Alchemist of Arland DX": pageId: 123261 steam: 936160 templates: - - '{{Game data/config|Windows|{{P|game}}\ArlandDX_Settings.ini}}' - - '{{Game data/saves|Windows|{{P|steam}}\userdata\{{P|uid}}\936160\remote\SAVEDATA}}' -'Atelier Ryza 2: Lost Legends & the Secret Fairy': + - "{{Game data/config|Windows|{{P|game}}\\ArlandDX_Settings.ini}}" + - "{{Game data/saves|Windows|{{P|steam}}\\userdata\\{{P|uid}}\\936160\\remote\\SAVEDATA}}" +"Atelier Ryza 2: Lost Legends & the Secret Fairy": pageId: 162354 steam: 1257290 steamSide: @@ -12791,47 +12477,47 @@ Atari Vault: - 1441717 - 1441718 templates: - - '{{Game data/config|Windows|{{p|userprofile\documents}}\KoeiTecmo\Atelier Ryza 2\Setting.ini}}' - - '{{Game data/saves|Windows|{{p|userprofile\documents}}\KoeiTecmo\Atelier Ryza 2\}}' -'Atelier Ryza 3: Alchemist of the End & the Secret Key': + - "{{Game data/config|Windows|{{p|userprofile\\documents}}\\KoeiTecmo\\Atelier Ryza 2\\Setting.ini}}" + - "{{Game data/saves|Windows|{{p|userprofile\\documents}}\\KoeiTecmo\\Atelier Ryza 2\\}}" +"Atelier Ryza 3: Alchemist of the End & the Secret Key": pageId: 181556 steam: 1999770 templates: - - '{{Game data/config|Windows|{{p|userprofile\documents}}\KoeiTecmo\Atelier Ryza 3\Setting.ini}}' - - '{{Game data/saves|Windows|{{p|userprofile\documents}}\KoeiTecmo\Atelier Ryza 3\}}' -'Atelier Ryza: Ever Darkness & the Secret Hideout': + - "{{Game data/config|Windows|{{p|userprofile\\documents}}\\KoeiTecmo\\Atelier Ryza 3\\Setting.ini}}" + - "{{Game data/saves|Windows|{{p|userprofile\\documents}}\\KoeiTecmo\\Atelier Ryza 3\\}}" +"Atelier Ryza: Ever Darkness & the Secret Hideout": pageId: 146781 steam: 1121560 templates: - - '{{Game data/config|Windows|{{p|userprofile\documents}}\KoeiTecmo\Atelier Ryza\}}' - - '{{Game data/saves|Windows|{{P|userprofile\documents}}\KoeiTecmo\Atelier Ryza\}}' -'Atelier Shallie: Alchemists of the Dusk Sea DX': + - "{{Game data/config|Windows|{{p|userprofile\\documents}}\\KoeiTecmo\\Atelier Ryza\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\documents}}\\KoeiTecmo\\Atelier Ryza\\}}" +"Atelier Shallie: Alchemists of the Dusk Sea DX": pageId: 155091 steam: 1152320 -'Atelier Sophie 2: The Alchemist of the Mysterious Dream': +"Atelier Sophie 2: The Alchemist of the Mysterious Dream": pageId: 171971 steam: 1621310 templates: - - '{{Game data/config|Windows|{{p|userprofile\documents}}\KoeiTecmo\Atelier Sophie 2\Setting.ini}}' - - '{{Game data/saves|Windows|{{p|userprofile\documents}}\KoeiTecmo\Atelier Sophie 2\}}' -'Atelier Sophie: The Alchemist of the Mysterious Book': + - "{{Game data/config|Windows|{{p|userprofile\\documents}}\\KoeiTecmo\\Atelier Sophie 2\\Setting.ini}}" + - "{{Game data/saves|Windows|{{p|userprofile\\documents}}\\KoeiTecmo\\Atelier Sophie 2\\}}" +"Atelier Sophie: The Alchemist of the Mysterious Book": pageId: 56707 steam: 527270 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\KoeiTecmo\A17\}}' - - '{{Game data/saves|Steam|{{p|userprofile\Documents}}\KoeiTecmo\A17\SAVEDATA\}}' -'Atelier Sophie: The Alchemist of the Mysterious Book DX': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\KoeiTecmo\\A17\\}}" + - "{{Game data/saves|Steam|{{p|userprofile\\Documents}}\\KoeiTecmo\\A17\\SAVEDATA\\}}" +"Atelier Sophie: The Alchemist of the Mysterious Book DX": pageId: 167816 steam: 1502970 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\KoeiTecmo\Atelier Sophie DX}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\KoeiTecmo\Atelier Sophie DX\SAVEDATA}}' -'Atelier Totori: The Adventurer of Arland DX': + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\KoeiTecmo\\Atelier Sophie DX}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\KoeiTecmo\\Atelier Sophie DX\\SAVEDATA}}" +"Atelier Totori: The Adventurer of Arland DX": pageId: 123263 steam: 936180 templates: - - '{{Game data/config|Windows|{{P|game}}\ArlandDX_Settings.ini}}' - - '{{Game data/saves|Windows|{{P|steam}}\userdata\{{P|uid}}\936180\remote\SAVEDATA}}' + - "{{Game data/config|Windows|{{P|game}}\\ArlandDX_Settings.ini}}" + - "{{Game data/saves|Windows|{{P|steam}}\\userdata\\{{P|uid}}\\936180\\remote\\SAVEDATA}}" Atex Brawl: pageId: 94096 steam: 852530 @@ -12840,7 +12526,7 @@ Athenian Acropolis: steam: 716390 Athens 2004: pageId: 89770 -'Ather: Chapter 1': +"Ather: Chapter 1": pageId: 91512 steam: 819990 Athletics Games VR: @@ -12862,8 +12548,8 @@ Atlantic Fleet: pageId: 38470 steam: 420440 templates: - - '{{Game data/config|Windows|{{P|userprofile}}\AppData\LocalLow\Killerfish Games\Atlantic Fleet}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Killerfish Games\Atlantic Fleet}}' + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Killerfish Games\\Atlantic Fleet}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Killerfish Games\\Atlantic Fleet}}" Atlantic Quest 2 - New Adventure: pageId: 43771 steam: 412530 @@ -12873,35 +12559,35 @@ Atlantic Quest Solitaire: Atlantis Evolution: gog: 1294416884 pageId: 131257 -'Atlantis II: Beyond Atlantis': +"Atlantis II: Beyond Atlantis": gog: 1207658951 pageId: 7732 steam: 362920 templates: - - '{{Game data/config|Windows|{{p|game}}\atlant2.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\save}}' -'Atlantis III: The New World': + - "{{Game data/config|Windows|{{p|game}}\\atlant2.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\save}}" +"Atlantis III: The New World": gog: 1207658958 pageId: 7742 templates: - - '{{Game data/config|Windows|{{p|game}}\Datas\Atlantis3.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\Datas\save}}' + - "{{Game data/config|Windows|{{p|game}}\\Datas\\Atlantis3.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\Datas\\save}}" Atlantis Sky Patrol: pageId: 41140 steam: 51030 Atlantis VR: pageId: 75407 steam: 741490 -'Atlantis: Pearls of the Deep': +"Atlantis: Pearls of the Deep": pageId: 38712 steam: 521280 -'Atlantis: The Lost Empire – Trial by Fire': +"Atlantis: The Lost Empire – Trial by Fire": pageId: 189868 -'Atlantis: The Lost Tales': +"Atlantis: The Lost Tales": gog: 1207658944 pageId: 7731 templates: - - '{{Game data/saves|Windows|{{p|game}}\*.gam}}' + - "{{Game data/saves|Windows|{{p|game}}\\*.gam}}" Atlas: pageId: 123926 steam: 834910 @@ -12911,7 +12597,7 @@ Atlas Fallen: steamSide: - 1933030 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\My Games\Atlas Fallen}}' + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\My Games\\Atlas Fallen}}" Atlas Protect Your Planet: pageId: 125653 steam: 1009880 @@ -12946,50 +12632,46 @@ Atom Zombie Smasher: pageId: 4685 steam: 55040 templates: - - '{{Game data/saves|Windows|{{p|appdata}}\AtomZombieData}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/AtomZombieData}}' - - '{{Game data/saves|Linux|{{P|xdgconfighome}}/AtomZombieData/}}' + - "{{Game data/saves|Windows|{{p|appdata}}\\AtomZombieData}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/AtomZombieData}}" + - "{{Game data/saves|Linux|{{P|xdgconfighome}}/AtomZombieData/}}" Atom-X: pageId: 122225 steam: 966050 Atomaders: pageId: 174375 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\KraiSoft\Atomaders}}' - - '{{Game data/saves|Windows|{{P|game}}\Players.cdf}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\KraiSoft\\Atomaders}}" + - "{{Game data/saves|Windows|{{P|game}}\\Players.cdf}}" Atomaders 2: pageId: 174380 templates: - - >- - {{Game data/config|Windows|{{P|game}}\Save.cdf{{Refcheck|user=Stormshadow429|date=2023-03-27|comment=The game - loses its current configuration if this file is reset or deleted.}}}} - - '{{Game data/saves|Windows|{{P|game}}\Save.cdf}}' + - "{{Game data/config|Windows|{{P|game}}\\Save.cdf{{Refcheck|user=Stormshadow429|date=2023-03-27|comment=The game loses its current configuration if this file is reset or deleted.}}}}" + - "{{Game data/saves|Windows|{{P|game}}\\Save.cdf}}" Atomega: pageId: 70599 steam: 619880 Atomic 79: pageId: 56342 steam: 567370 -'Atomic Adam: Episode 1': +"Atomic Adam: Episode 1": pageId: 78510 steam: 764280 Atomic Bomberman: pageId: 14810 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/saves|Windows|{{p|game}}\}}' -'Atomic Butcher: Homo Metabolicus': + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\}}" +"Atomic Butcher: Homo Metabolicus": pageId: 52219 steam: 523970 Atomic Heart: pageId: 78571 steam: 668580 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\AtomicHeart\Saved\Config}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\AtomicHeart\Saved\SaveGames}}' - - >- - {{Game data/saves|Microsoft - Store|{{P|localappdata}}\Packages\FocusHomeInteractiveSA.579645D26CFD_4hny5m903y3g0\SystemAppData\wgs\{{P|uid}}\}} + - "{{Game data/config|Windows|{{P|localappdata}}\\AtomicHeart\\Saved\\Config}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\AtomicHeart\\Saved\\SaveGames}}" + - "{{Game data/saves|Microsoft Store|{{P|localappdata}}\\Packages\\FocusHomeInteractiveSA.579645D26CFD_4hny5m903y3g0\\SystemAppData\\wgs\\{{P|uid}}\\}}" Atomic Hearts: pageId: 167722 Atomic Heist: @@ -13015,19 +12697,9 @@ Atomicrops: pageId: 138459 steam: 757320 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Bird Bath Games\Atomicrops\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Bird Bath Games\Atomicrops\*.banana}}' - - >- - {{Game data/saves|Microsoft - Store|{{P|localappdata}}\Packages\RawFury.AtomicropsWIN10_9s0pnehqffj7t\SystemAppData\wgs\{{note|There will be a - folder with a [https://en.wikipedia.org/wiki/Hexadecimal hexadecimal] name, which will have two items within, a - file called "containers.index" and a folder with another hexadecimal name. Within said subfolder there are two - files without file extensions also bearing hexadecimal names.
- -
- - These files are the .banana files you're looking for. The larger of the two is the profile_v1_0_silo.banana file - and the smaller one is the profile_v1_0.banana file.}}}} + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Bird Bath Games\\Atomicrops\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Bird Bath Games\\Atomicrops\\*.banana}}" + - "{{Game data/saves|Microsoft Store|{{P|localappdata}}\\Packages\\RawFury.AtomicropsWIN10_9s0pnehqffj7t\\SystemAppData\\wgs\\{{note|There will be a folder with a [https://en.wikipedia.org/wiki/Hexadecimal hexadecimal] name, which will have two items within, a file called \"containers.index\" and a folder with another hexadecimal name. Within said subfolder there are two files without file extensions also bearing hexadecimal names.
\n
\nThese files are the .banana files you're looking for. The larger of the two is the profile_v1_0_silo.banana file and the smaller one is the profile_v1_0.banana file.}}}}" Atomine: pageId: 61846 steam: 603100 @@ -13040,20 +12712,20 @@ Atomorf2: Atoms: pageId: 81478 steam: 765460 -'Atone: Heart of the Elder Tree': +"Atone: Heart of the Elder Tree": gog: 2054943829 pageId: 122834 renamedFrom: - Atone steam: 894620 -'Atonement 2: Ruptured by Despair': +"Atonement 2: Ruptured by Despair": pageId: 51933 steam: 533820 -'Atonement: Scourge of Time': +"Atonement: Scourge of Time": pageId: 35108 steam: 385070 templates: - - '{{Game data/saves|Windows|{{p|appdata}}\Atonement Scourge of Time\Saves\}}' + - "{{Game data/saves|Windows|{{p|appdata}}\\Atonement Scourge of Time\\Saves\\}}" Atooms to Moolecules: pageId: 70815 steam: 213390 @@ -13066,7 +12738,7 @@ Atramentum VR: Atriage: pageId: 34715 steam: 454780 -'Atrio: The Dark Wild': +"Atrio: The Dark Wild": pageId: 145336 steam: 1125390 Atrocity: @@ -13104,7 +12776,7 @@ Attack of the Earthlings: pageId: 63038 steam: 621930 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Junkfish\Attack of the Earthlings\Slots}}' + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Junkfish\\Attack of the Earthlings\\Slots}}" Attack of the Giant Mutant Lizard: pageId: 126376 steam: 590840 @@ -13137,24 +12809,24 @@ Attack on Titan: pageId: 32119 steam: 449800 templates: - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\KoeiTecmo\Attack on Titan\SAVEDATA\}}' + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\KoeiTecmo\\Attack on Titan\\SAVEDATA\\}}" Attack on Titan 2: pageId: 83007 steam: 601050 steamSide: - - 799700 - - 797790 + - 797730 + - 797740 + - 797750 + - 797760 - 797770 - 797780 - - 797760 - - 797730 - - 797750 - - 797740 + - 797790 - 799680 - 799690 + - 799700 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\KoeiTecmo\Attack on Titan2_AOT2\System\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\KoeiTecmo\Attack on Titan2_AOT2\SAVEDATA\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\KoeiTecmo\\Attack on Titan2_AOT2\\System\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\KoeiTecmo\\Attack on Titan2_AOT2\\SAVEDATA\\}}" Attack on Toys: pageId: 191423 Attempt 42: @@ -13165,8 +12837,8 @@ Attentat 1942: pageId: 74453 steam: 676630 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\SOFTWARE\Charles Games\Attentat 1942\}}' - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Charles Games\Attentat 1942}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\SOFTWARE\\Charles Games\\Attentat 1942\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Charles Games\\Attentat 1942}}" Attract Fragments 5: pageId: 139213 steam: 1091550 @@ -13174,28 +12846,28 @@ Attractio: pageId: 44936 steam: 317060 templates: - - '{{Game data/config|Linux|{{p|linuxhome}}/.attractio}}' + - "{{Game data/config|Linux|{{p|linuxhome}}/.attractio}}" Attractorache: pageId: 112804 steam: 940520 -'Attrition: Nuclear Domination': +"Attrition: Nuclear Domination": pageId: 59737 steam: 392870 -'Attrition: Tactical Fronts': +"Attrition: Tactical Fronts": pageId: 64480 steam: 656400 Atulos Online: pageId: 43255 steam: 449470 -Au fil de l'eau: +"Au fil de l'eau": pageId: 148503 steam: 1085820 Audica: pageId: 128330 steam: 1020340 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\Harmonix Music Systems, Inc_\Audica}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Harmonix Music Systems, Inc_\Audica}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Harmonix Music Systems, Inc_\\Audica}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Harmonix Music Systems, Inc_\\Audica}}" Audio Arena: pageId: 42103 steam: 457770 @@ -13224,7 +12896,7 @@ Audioshield: pageId: 37905 steam: 412740 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Audiosurf, LLC\Audioshield\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Audiosurf, LLC\\Audioshield\\}}" Audioship: pageId: 65447 steam: 661560 @@ -13232,13 +12904,13 @@ Audiosurf: pageId: 5565 steam: 12900 templates: - - '{{Game data/config|Windows|{{p|game}}\config.ini}}' + - "{{Game data/config|Windows|{{p|game}}\\config.ini}}" Audiosurf 2: pageId: 10781 steam: 235800 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Audiosurf, LLC\Audiosurf 2\}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Audiosurf, LLC/Audiosurf 2/}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Audiosurf, LLC\\Audiosurf 2\\}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Audiosurf, LLC/Audiosurf 2/}}" Audition Online: pageId: 36469 steam: 349720 @@ -13246,12 +12918,8 @@ Auditorium: pageId: 7329 steam: 205870 templates: - - >- - {{Game data/config|Windows|{{P|game}}\lib\config\config.xml|{{P|appdata}}\com.cipherprime.auditorium\Local - Store\#SharedObjects\gameSettings.sol}} - - >- - {{Game data/saves|Windows|{{P|appdata}}\com.cipherprime.auditorium\Local - Store\#SharedObjects\main.swf\AuditoriumClassicLevelProgress.sol}} + - "{{Game data/config|Windows|{{P|game}}\\lib\\config\\config.xml|{{P|appdata}}\\com.cipherprime.auditorium\\Local Store\\#SharedObjects\\gameSettings.sol}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\com.cipherprime.auditorium\\Local Store\\#SharedObjects\\main.swf\\AuditoriumClassicLevelProgress.sol}}" Auf Abwegen: pageId: 129661 steam: 1036850 @@ -13261,35 +12929,35 @@ Aura Kingdom: pageId: 50001 steam: 268420 templates: - - '{{Game data/config|Windows|{{p|game}}\client.ini}}' + - "{{Game data/config|Windows|{{p|game}}\\client.ini}}" Aura Shift: pageId: 144164 steam: 1124800 Aura of Worlds: pageId: 92626 steam: 841600 -'Aura: Fate of the Ages': +"Aura: Fate of the Ages": pageId: 41082 steam: 65500 templates: - - '{{Game data/config|Windows|{{P|game}}\Settings.ini}}' - - '{{Game data/saves|Windows|{{P|game}}\Saved\}}' -'Auralux: Constellations': + - "{{Game data/config|Windows|{{P|game}}\\Settings.ini}}" + - "{{Game data/saves|Windows|{{P|game}}\\Saved\\}}" +"Auralux: Constellations": pageId: 32957 steam: 444130 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\Auralux Constellations\}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\Auralux Constellations\}}' -Auri's Tales: + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\Auralux Constellations\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\Auralux Constellations\\}}" +"Auri's Tales": pageId: 123888 steam: 987060 -'Aurion: Legacy of the Kori-Odan': +"Aurion: Legacy of the Kori-Odan": pageId: 37760 steam: 368080 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\AurionSaves\data_configGenerale.Jgod}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\AurionSaves\data_Sauvegarde_*.Jgod}}' -'Auro: A Monster-Bumping Adventure': + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\AurionSaves\\data_configGenerale.Jgod}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\AurionSaves\\data_Sauvegarde_*.Jgod}}" +"Auro: A Monster-Bumping Adventure": pageId: 43628 steam: 459680 Aurora: @@ -13298,7 +12966,7 @@ Aurora: Aurora - Hidden Colors: pageId: 153468 steam: 1184530 -'Aurora Dusk: Steam Age': +"Aurora Dusk: Steam Age": pageId: 43308 steam: 397160 Aurora Hex - Pattern Puzzles: @@ -13310,7 +12978,7 @@ Aurora Nights: Aurora Trail: pageId: 78577 steam: 755150 -'Aurora: The Lost Medallion Episode I': +"Aurora: The Lost Medallion Episode I": pageId: 139501 steam: 1088610 AuroraBound Deluxe: @@ -13354,7 +13022,7 @@ Australian Trip: Author Clicker: pageId: 129857 steam: 1038830 -'Auto Age: Standoff': +"Auto Age: Standoff": pageId: 39462 steam: 458680 Auto Assault: @@ -13366,8 +13034,8 @@ Auto Chess: pageId: 138456 steam: 1530300 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\AutoChess\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\AutoChess\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\AutoChess\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\AutoChess\\Saved\\SaveGames\\}}" Auto Dealership Tycoon: pageId: 45918 steam: 393920 @@ -13383,16 +13051,14 @@ Auto-Staccato: Autobahn: pageId: 170501 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\Forward Development\Autobahn\config\}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\Forward Development\Autobahn\}}' + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\Forward Development\\Autobahn\\config\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\Forward Development\\Autobahn\\}}" Autobahn Police Simulator: pageId: 46709 steam: 348510 templates: - - >- - {{Game data/config|Windows|{{p|HKCU}}\Software\Z-Software - GmbH\highwaypatrol|{{p|USERPROFILE}}\AppData\LocalLow\Z-Software GmbH\highwaypatrol}} - - '{{Game data/saves|Windows|{{p|Steam}}\userdata\22454901\348510\remote}}' + - "{{Game data/config|Windows|{{p|HKCU}}\\Software\\Z-Software GmbH\\highwaypatrol|{{p|USERPROFILE}}\\AppData\\LocalLow\\Z-Software GmbH\\highwaypatrol}}" + - "{{Game data/saves|Windows|{{p|Steam}}\\userdata\\22454901\\348510\\remote}}" Autobahn Police Simulator 2: pageId: 77565 steam: 483770 @@ -13403,8 +13069,8 @@ Autobahn Raser II: Autobahn Raser IV: pageId: 142405 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/saves|Windows|{{p|game}}\Common}}' + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\Common}}" Autocraft: pageId: 49506 steam: 287220 @@ -13414,16 +13080,14 @@ Autocross Madness: Autoduel: pageId: 183819 templates: - - '{{Game data/config|DOS|{{p|game}}}}' + - "{{Game data/config|DOS|{{p|game}}}}" Automachef: gog: 1884540966 pageId: 134271 steam: 984800 templates: - - >- - {{Game - data/config|Windows|{{P|userprofile}}\AppData\LocalLow\HermesInteractive\Automachef\Saves\{{P|uid}}\prefs.dat|{{P|hkcu}}\Software\HermesInteractive\Automachef\}} - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\HermesInteractive\Automachef\Saves\{{P|uid}}\}}' + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\HermesInteractive\\Automachef\\Saves\\{{P|uid}}\\prefs.dat|{{P|hkcu}}\\Software\\HermesInteractive\\Automachef\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\HermesInteractive\\Automachef\\Saves\\{{P|uid}}\\}}" Automata Empire: pageId: 43668 steam: 423800 @@ -13451,8 +13115,8 @@ Automobilista: steamSide: - 521600 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\Documents\Automobilista\Config.ini}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\Documents\Automobilista\UserData\{{p|uid}}\{{p|uid}}.plr}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\Documents\\Automobilista\\Config.ini}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Documents\\Automobilista\\UserData\\{{p|uid}}\\{{p|uid}}.plr}}" Automobilista 2: pageId: 139566 steam: 1066890 @@ -13460,18 +13124,14 @@ Autonauts: pageId: 145091 steam: 979120 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\SOFTWARE\Denki Ltd\Autonauts\}}' - - >- - {{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Denki - Ltd\Autonauts\Saves\|{{P|userprofile}}\AppData\LocalLow\Denki Ltd\Autonauts\Autosaves\}} + - "{{Game data/config|Windows|{{P|hkcu}}\\SOFTWARE\\Denki Ltd\\Autonauts\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Denki Ltd\\Autonauts\\Saves\\|{{P|userprofile}}\\AppData\\LocalLow\\Denki Ltd\\Autonauts\\Autosaves\\}}" Autonauts vs Piratebots: pageId: 184291 steam: 1907720 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\SOFTWARE\Denki Ltd\Autonauts vs Pirate Bots\}}' - - >- - {{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Denki Ltd\Autonauts vs Pirate - Bots\Saves\|{{P|userprofile}}\AppData\LocalLow\Denki Ltd\Autonauts vs Pirate Bots\Autosaves\}} + - "{{Game data/config|Windows|{{P|hkcu}}\\SOFTWARE\\Denki Ltd\\Autonauts vs Pirate Bots\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Denki Ltd\\Autonauts vs Pirate Bots\\Saves\\|{{P|userprofile}}\\AppData\\LocalLow\\Denki Ltd\\Autonauts vs Pirate Bots\\Autosaves\\}}" Autumn: pageId: 43043 steam: 473520 @@ -13484,10 +13144,10 @@ Autumn Night 3D Shooter: Autumn Park Mini Golf: pageId: 40056 steam: 502650 -Autumn's Chorus: +"Autumn's Chorus": pageId: 128745 steam: 1025570 -Autumn's End: +"Autumn's End": pageId: 135923 steam: 1068650 Avabel Online: @@ -13495,36 +13155,32 @@ Avabel Online: renamedFrom: - AVABEL ONLINE steam: 1130700 -'Avadon 2: The Corruption': +"Avadon 2: The Corruption": gog: 1207660054 pageId: 13687 steam: 233310 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Spiderweb Software\Avadon 2 Saved Games\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Spiderweb Software\Avadon 2 Saved Games\}}' -'Avadon 3: The Warborn': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Spiderweb Software\\Avadon 2 Saved Games\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Spiderweb Software\\Avadon 2 Saved Games\\}}" +"Avadon 3: The Warborn": gog: 1130879425 pageId: 36357 steam: 460780 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Spiderweb Software\Avadon 3 Saved Games\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Spiderweb Software\Avadon 3 Saved Games\}}' -'Avadon: The Black Fortress': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Spiderweb Software\\Avadon 3 Saved Games\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Spiderweb Software\\Avadon 3 Saved Games\\}}" +"Avadon: The Black Fortress": gog: 1207659166 pageId: 5117 steam: 112100 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Spiderweb Software\Avadon Saved Games\}}' - - >- - {{Game data/config|OS X|{{p|osxhome}}/Documents/Spiderweb Software/Avadon Saved Games|~/Library/Application - Support/Spiderweb Software/Avadon Saved Games/}} - - '{{Game data/config|Linux|{{P|xdgdatahome}}/Avadon/}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Spiderweb Software\Avadon Saved Games\}}' - - >- - {{Game data/saves|OS X|{{p|osxhome}}/Documents/Spiderweb Software/Avadon Saved Games|~/Library/Application - Support/Spiderweb Software/Avadon Saved Games/}} - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/Avadon/}}' -'Avalanche 2: Super Avalanche': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Spiderweb Software\\Avadon Saved Games\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Documents/Spiderweb Software/Avadon Saved Games|~/Library/Application Support/Spiderweb Software/Avadon Saved Games/}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/Avadon/}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Spiderweb Software\\Avadon Saved Games\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Documents/Spiderweb Software/Avadon Saved Games|~/Library/Application Support/Spiderweb Software/Avadon Saved Games/}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/Avadon/}}" +"Avalanche 2: Super Avalanche": pageId: 47561 steam: 351250 Avalo Legends: @@ -13539,16 +13195,16 @@ Avalon Legends Solitaire 2: Avalon Legends Solitaire 3: pageId: 94449 steam: 841980 -'Avalon Lords: Dawn Rises': +"Avalon Lords: Dawn Rises": pageId: 43325 steam: 329280 -'Avalon: The Journey Begins': +"Avalon: The Journey Begins": pageId: 51959 steam: 502780 -'Avaria: Chains of Lust': +"Avaria: Chains of Lust": pageId: 164448 steam: 1224690 -'Avaris 2: The Return of the Empress': +"Avaris 2: The Return of the Empress": pageId: 45292 steam: 421890 Avast Ye: @@ -13557,16 +13213,16 @@ Avast Ye: Avatar of the Wolf: pageId: 62827 steam: 643570 -'Avatar: Frontiers of Pandora': +"Avatar: Frontiers of Pandora": pageId: 169233 -'Avatar: The Last Airbender': +"Avatar: The Last Airbender": pageId: 126697 -'Avatar: The Last Airbender - Quest for Balance': +"Avatar: The Last Airbender - Quest for Balance": pageId: 189943 steam: 1620030 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Ala\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\Ala\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\Ala\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Ala\\Saved\\SaveGames\\}}" Avatarika: pageId: 61120 steam: 583740 @@ -13584,15 +13240,15 @@ Aven Colony: pageId: 62082 steam: 484900 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\AvenColony\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\AvenColony\Saved}}' -'Avencast: Rise of the Mage': + - "{{Game data/config|Windows|{{p|localappdata}}\\AvenColony\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\AvenColony\\Saved}}" +"Avencast: Rise of the Mage": gog: 1731734113 pageId: 17452 steam: 46410 templates: - - '{{Game data/config|Windows|{{p|game}}\cfg\}}' - - '{{Game data/saves|Windows|{{p|game}}\save\}}' + - "{{Game data/config|Windows|{{p|game}}\\cfg\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\save\\}}" Avenger Bird: pageId: 54655 steam: 557030 @@ -13603,114 +13259,101 @@ Avernum: gog: 1207663333 pageId: 8607 templates: - - '{{Game data/config|Windows|{{p|game}}\irunin.ini}}' - - '{{Game data/saves|Windows|*.sav}}' -'Avernum 2: Crystal Souls': + - "{{Game data/config|Windows|{{p|game}}\\irunin.ini}}" + - "{{Game data/saves|Windows|*.sav}}" +"Avernum 2: Crystal Souls": gog: 1420648481 pageId: 22240 steam: 337850 templates: - - >- - {{Game data/config|Windows|{{P|userprofile\Documents}}\Spiderweb Software\Avernum 2 Saved - Games\Avernum2Settings.dat}} - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\Spiderweb Software\Avernum 2 Saved Games\}}' -'Avernum 3: Ruined World': + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\Spiderweb Software\\Avernum 2 Saved Games\\Avernum2Settings.dat}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\Spiderweb Software\\Avernum 2 Saved Games\\}}" +"Avernum 3: Ruined World": gog: 1733684424 pageId: 70707 steam: 691830 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\Spiderweb Software\Avernum 3 Saved - Games\Avernum3Settings.dat}} - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Spiderweb Software\Avernum 3 Saved Games\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Spiderweb Software\\Avernum 3 Saved Games\\Avernum3Settings.dat}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Spiderweb Software\\Avernum 3 Saved Games\\}}" Avernum II: gog: 1207663353 pageId: 8764 templates: - - '{{Game data/config|Windows|{{p|game}}\irunin.ini}}' - - '{{Game data/saves|Windows|*.sav}}' + - "{{Game data/config|Windows|{{p|game}}\\irunin.ini}}" + - "{{Game data/saves|Windows|*.sav}}" Avernum III: gog: 1207663373 pageId: 8806 templates: - - '{{Game data/config|Windows|{{p|game}}\irunin.ini}}' - - '{{Game data/saves|Windows|*.sav}}' + - "{{Game data/config|Windows|{{p|game}}\\irunin.ini}}" + - "{{Game data/saves|Windows|*.sav}}" Avernum IV: gog: 1207663403 pageId: 8813 steam: 206020 templates: - - '{{Game data/config|Windows|{{p|game}}\irunin.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\Data}}' + - "{{Game data/config|Windows|{{p|game}}\\irunin.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\Data}}" Avernum V: gog: 1207663423 pageId: 7728 steam: 206040 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Spiderweb Software\Avernum 5 Saved Games\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Documents/Spiderweb Software/Avernum 5 Saved Games/}}' - - '{{Game data/config|Steam|{{p|userprofile\Documents}}\Avernum 5 Saved Games\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Spiderweb Software\Avernum 5 Saved Games\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Documents/Spiderweb Software/Avernum 5 Saved Games/}}' - - '{{Game data/saves|Steam|{{p|userprofile\Documents}}\Avernum 5 Saved Games\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Spiderweb Software\\Avernum 5 Saved Games\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Documents/Spiderweb Software/Avernum 5 Saved Games/}}" + - "{{Game data/config|Steam|{{p|userprofile\\Documents}}\\Avernum 5 Saved Games\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Spiderweb Software\\Avernum 5 Saved Games\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Documents/Spiderweb Software/Avernum 5 Saved Games/}}" + - "{{Game data/saves|Steam|{{p|userprofile\\Documents}}\\Avernum 5 Saved Games\\}}" Avernum VI: gog: 1207663443 pageId: 7725 steam: 206060 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Spiderweb Software\Avernum 6 Saved Games\}}' - - >- - {{Game data/config|OS X|{{p|osxhome}}/Documents/Spiderweb Software/Avernum 6 Saved Games/|~/Library/Application - Support/Spiderweb Software/Avernum 6 Saved Games/}} - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Spiderweb Software\Avernum 6 Saved Games\Save*}}' - - >- - {{Game data/saves|OS X|{{p|osxhome}}/Documents/Spiderweb Software/Avernum 6 Saved Games/|~/Library/Application - Support/Spiderweb Software/Avernum 6 Saved Games/Save*}} -'Avernum: Escape from the Pit': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Spiderweb Software\\Avernum 6 Saved Games\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Documents/Spiderweb Software/Avernum 6 Saved Games/|~/Library/Application Support/Spiderweb Software/Avernum 6 Saved Games/}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Spiderweb Software\\Avernum 6 Saved Games\\Save*}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Documents/Spiderweb Software/Avernum 6 Saved Games/|~/Library/Application Support/Spiderweb Software/Avernum 6 Saved Games/Save*}}" +"Avernum: Escape from the Pit": gog: 1420630484 pageId: 7695 steam: 208400 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\Spiderweb Software\Avernum Saved - Games\AvernumSettings.dat}} - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Spiderweb Software\Avernum Saved Games\}}' - - >- - {{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Spiderweb Software/Avernum Saved - Games/|~/Library/Containers/com.spiderwebsoftware.Avernum/Data/Library/Application Support/Spiderweb - Software/Avernum Saved Games/}} + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Spiderweb Software\\Avernum Saved Games\\AvernumSettings.dat}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Spiderweb Software\\Avernum Saved Games\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Spiderweb Software/Avernum Saved Games/|~/Library/Containers/com.spiderwebsoftware.Avernum/Data/Library/Application Support/Spiderweb Software/Avernum Saved Games/}}" Avernus: pageId: 114050 steam: 934670 Averon Rising: pageId: 157247 steam: 1171180 -'Aveyond 4: Shadow of the Mist': +"Aveyond 4: Shadow of the Mist": pageId: 37257 steam: 433920 -'Aveyond: Gates of Night': +"Aveyond: Gates of Night": pageId: 50410 steam: 278490 templates: - - '{{Game data/config|Windows|{{P|appdata}}\Aveyond 3\*.txt}}' - - '{{Game data/saves|Windows|{{P|appdata}}\Aveyond 3\Chapter 2\Save*.rxdata}}' -'Aveyond: Lord of Twilight': + - "{{Game data/config|Windows|{{P|appdata}}\\Aveyond 3\\*.txt}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\Aveyond 3\\Chapter 2\\Save*.rxdata}}" +"Aveyond: Lord of Twilight": pageId: 50677 steam: 272010 templates: - - '{{Game data/config|Windows|{{P|appdata}}\Aveyond 3\*.txt}}' - - '{{Game data/saves|Windows|{{P|appdata}}\Aveyond 3\Chapter 1\Save*.rxdata}}' -'Aveyond: The Darkthrop Prophecy': + - "{{Game data/config|Windows|{{P|appdata}}\\Aveyond 3\\*.txt}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\Aveyond 3\\Chapter 1\\Save*.rxdata}}" +"Aveyond: The Darkthrop Prophecy": pageId: 48693 steam: 321890 -'Aveyond: The Lost Orb': +"Aveyond: The Lost Orb": pageId: 48933 steam: 321880 Aviary Attorney: pageId: 30796 steam: 384630 templates: - - '{{Game data/saves|Windows|{{p|localappdata}}\AviaryAttorney\IndexedDB\file__0.indexeddb.leveldb\}}' + - "{{Game data/saves|Windows|{{p|localappdata}}\\AviaryAttorney\\IndexedDB\\file__0.indexeddb.leveldb\\}}" Aviation Hurricane Storm: pageId: 95553 steam: 869250 @@ -13725,10 +13368,8 @@ Avicii Invector: pageId: 150707 steam: 986800 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\SOFTWARE\Hello There Games\Avicii Invector\}}' - - >- - {{Game data/saves|Windows|{{p|USERPROFILE}}\AppData\LocalLow\Hello There Games\AVICII - Invector\{{p|uid}}\save.dat}} + - "{{Game data/config|Windows|{{P|hkcu}}\\SOFTWARE\\Hello There Games\\Avicii Invector\\}}" + - "{{Game data/saves|Windows|{{p|USERPROFILE}}\\AppData\\LocalLow\\Hello There Games\\AVICII Invector\\{{p|uid}}\\save.dat}}" Avis Rapida - Aerobatic Racing: pageId: 136535 steam: 1070160 @@ -13750,8 +13391,8 @@ Avorion: pageId: 55770 steam: 445220 templates: - - '{{Game data/saves|Windows|{{p|appdata}}\Avorion}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.avorion}}' + - "{{Game data/saves|Windows|{{p|appdata}}\\Avorion}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.avorion}}" Avowed: pageId: 162116 steam: 2457220 @@ -13764,13 +13405,13 @@ Awaiting Salvation: Awake: pageId: 45262 steam: 421110 -'Awake: Episode One': +"Awake: Episode One": pageId: 122388 steam: 845900 Awaken: pageId: 56477 steam: 555970 -'Awaken: Gunpowder Adventurer Day.Dream': +"Awaken: Gunpowder Adventurer Day.Dream": pageId: 92712 steam: 760000 Awakened: @@ -13782,27 +13423,27 @@ Awakening of Celestial: Awakening of Solutio: pageId: 42866 steam: 464820 -'Awakening: Moonfell Wood': +"Awakening: Moonfell Wood": pageId: 103701 steam: 897020 -'Awakening: The Dreamless Castle': +"Awakening: The Dreamless Castle": pageId: 132250 steam: 1055690 -'Awakening: The Goblin Kingdom': +"Awakening: The Goblin Kingdom": pageId: 68883 steam: 695960 -'Awakening: The Golden Age': +"Awakening: The Golden Age": pageId: 57257 steam: 586680 -'Awakening: The Redleaf Forest': +"Awakening: The Redleaf Forest": pageId: 43937 renamedFrom: - - 'Awakening: The Redleaf Forest Collector''s Edition' + - "Awakening: The Redleaf Forest Collector's Edition" steam: 455080 -'Awakening: The Skyward Castle': +"Awakening: The Skyward Castle": pageId: 88654 steam: 815540 -'Awakening: The Sunhook Spire': +"Awakening: The Sunhook Spire": pageId: 33948 steam: 465860 Award. Room of Fear: @@ -13817,35 +13458,35 @@ Awareness Rooms: Away: pageId: 113144 steam: 757910 -'Away From Earth: Moon': +"Away From Earth: Moon": pageId: 125601 steam: 1008530 -'Away From Earth: Titan': +"Away From Earth: Titan": pageId: 136574 steam: 1083120 -'Away From Earth: Titan 2': +"Away From Earth: Titan 2": pageId: 141336 steam: 1119930 Away from beauty 色即是空: pageId: 127951 steam: 806540 -'Away: Journey to the Unexpected': +"Away: Journey to the Unexpected": gog: 2049669635 pageId: 127120 renamedFrom: - - 'AWAY: Journey to the Unexpected' + - "AWAY: Journey to the Unexpected" steam: 573110 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Playdius\Away Journey to the Unexpected\}}' - - '{{Game data/saves|Windows|{{P|UserProfile}}\AppData\LocalLow\Playdius\Away Journey to the Unexpected\}}' -'Away: The Survival Series': + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Playdius\\Away Journey to the Unexpected\\}}" + - "{{Game data/saves|Windows|{{P|UserProfile}}\\AppData\\LocalLow\\Playdius\\Away Journey to the Unexpected\\}}" +"Away: The Survival Series": pageId: 78768 steam: 750200 Awe: pageId: 46122 steam: 371450 templates: - - '{{Game data/saves|Windows|{{p|game}}\Saves\}}' + - "{{Game data/saves|Windows|{{p|game}}\\Saves\\}}" Awe of Despair: pageId: 76022 steam: 739730 @@ -13859,14 +13500,14 @@ Awesome Pea: pageId: 109862 steam: 916950 templates: - - '{{Game data/config|Windows|HKEY_CURRENT_USER\Software\PigeonDevGames\AwesomePea}}' - - '{{Game data/saves|Windows|HKEY_CURRENT_USER\Software\PigeonDevGames\AwesomePea}}' + - "{{Game data/config|Windows|HKEY_CURRENT_USER\\Software\\PigeonDevGames\\AwesomePea}}" + - "{{Game data/saves|Windows|HKEY_CURRENT_USER\\Software\\PigeonDevGames\\AwesomePea}}" Awesome Pea 2: pageId: 153977 steam: 1200420 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\PigeonDev\Awesome Pea 2}}' - - '{{Game data/saves|Windows|{{P|hkcu}}\Software\PigeonDev\Awesome Pea 2}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\PigeonDev\\Awesome Pea 2}}" + - "{{Game data/saves|Windows|{{P|hkcu}}\\Software\\PigeonDev\\Awesome Pea 2}}" Awesome taxi: pageId: 138886 steam: 1097950 @@ -13874,12 +13515,10 @@ Awesomenauts: pageId: 3407 steam: 204300 templates: - - '{{Game data/config|Windows|{{p|game}}\Config.txt|{{p|game}}\Controlschemes.xml}}' - - >- - {{Game - data/config|Linux|{{P|xdgdatahome}}/Awesomenauts/Config.txt|{{P|xdgdatahome}}/Awesomenauts/Controlschemes.xml}} - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/Awesomenauts/save.txt}}' - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/204300/remote/}}' + - "{{Game data/config|Windows|{{p|game}}\\Config.txt|{{p|game}}\\Controlschemes.xml}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/Awesomenauts/Config.txt|{{P|xdgdatahome}}/Awesomenauts/Controlschemes.xml}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/Awesomenauts/save.txt}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/204300/remote/}}" Awkward: pageId: 94338 steam: 769730 @@ -13901,7 +13540,7 @@ Axe Prime: Axe Throw VR: pageId: 110536 steam: 928370 -'Axe, Bow & Staff': +"Axe, Bow & Staff": pageId: 42952 steam: 432230 Axel & Pixel: @@ -13920,21 +13559,21 @@ Axiom Soccer: pageId: 113574 steam: 903730 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Axiom Soccer\Saved\Config\WindowsNoEditor\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\Axiom Soccer\\Saved\\Config\\WindowsNoEditor\\}}" Axiom Verge: pageId: 24929 steam: 332200 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\SavedGames\AxiomVerge\Saves\}}' - - '{{Game data/config|Steam|{{P|steam}}\userdata\{{P|uid}}\332200\remote\}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\SavedGames\AxiomVerge\Saves\}}' - - '{{Game data/saves|Steam|{{P|steam}}\userdata\{{P|uid}}\332200\remote\}}' + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\SavedGames\\AxiomVerge\\Saves\\}}" + - "{{Game data/config|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\332200\\remote\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\SavedGames\\AxiomVerge\\Saves\\}}" + - "{{Game data/saves|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\332200\\remote\\}}" Axiom Verge 2: pageId: 166567 steam: 946030 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\SavedGames\AxiomVerge2\}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\SavedGames\AxiomVerge2\}}' + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\SavedGames\\AxiomVerge2\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\SavedGames\\AxiomVerge2\\}}" Axion: pageId: 45320 steam: 380570 @@ -13943,7 +13582,7 @@ Axis & Allies (2004): renamedFrom: - Axis & Allies templates: - - '{{Game data/saves|Windows|{{p|userprofile\documents}}\A&A\data}}' + - "{{Game data/saves|Windows|{{p|userprofile\\documents}}\\A&A\\data}}" Axis & Allies 1942 Online: gog: 1406874362 pageId: 130277 @@ -13951,7 +13590,7 @@ Axis & Allies 1942 Online: - Axis & Allies Online steam: 898920 templates: - - '{{Game data/config|Windows|{{P|appdata}}\axisandalliesonline-desktop\local-settings\}}' + - "{{Game data/config|Windows|{{P|appdata}}\\axisandalliesonline-desktop\\local-settings\\}}" Axis Football 2015: pageId: 47273 steam: 370090 @@ -13970,7 +13609,7 @@ Axis Football 2019: Axis Football 2021: pageId: 172106 steam: 1641830 -Aya's Journey: +"Aya's Journey": pageId: 69448 steam: 705390 Ayahuasca: @@ -13980,38 +13619,38 @@ Ayakashigami: pageId: 55167 steam: 565690 templates: - - '{{Game data/saves|Windows|{{p|localappdata}}\アヤカシガミ\save.dat}}' + - "{{Game data/saves|Windows|{{p|localappdata}}\\アヤカシガミ\\save.dat}}" Ayni Fairyland: pageId: 108230 steam: 885790 Ayo the Clown: pageId: 142305 steam: 1114900 -'Ayo: A Rain Tale': +"Ayo: A Rain Tale": pageId: 74277 steam: 667220 Ayre: pageId: 132895 steam: 987810 -'Ayumi: Enhanced Edition': +"Ayumi: Enhanced Edition": pageId: 42507 steam: 497790 Azada: pageId: 41142 steam: 7340 -'Azada: Ancient Magic': +"Azada: Ancient Magic": pageId: 91833 steam: 838700 -'Azada: Elementa': +"Azada: Elementa": pageId: 58362 steam: 596400 -'Azada: In Libro': +"Azada: In Libro": pageId: 73859 steam: 729940 Azai - TD: pageId: 66197 steam: 681610 -'Azkend 2: The World Beneath': +"Azkend 2: The World Beneath": pageId: 53574 steam: 550440 Aztaka: @@ -14029,7 +13668,7 @@ Aztec Venture: Aztecalypse: pageId: 53188 steam: 517010 -'Aztech: Forgotten Gods': +"Aztech: Forgotten Gods": gog: 1844318817 pageId: 175399 steam: 1592320 @@ -14037,41 +13676,39 @@ Aztez: pageId: 62749 steam: 244750 templates: - - '{{Game data/config|Windows|{{P|userprofile}}/AppData/LocalLow/TeamColorblind/Aztez/Player.az}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/com.TeamColorblind.Aztez/Player.az}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Team Colorblind/Aztez/Player.az}}' - - '{{Game data/saves|Windows|{{P|userprofile}}/AppData/LocalLow/TeamColorblind/Aztez/Campaign}}' - - |- - {{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/com.TeamColorblind.Aztez/Campaign - }} - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Team Colorblind/Aztez/Campaign}}' + - "{{Game data/config|Windows|{{P|userprofile}}/AppData/LocalLow/TeamColorblind/Aztez/Player.az}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/com.TeamColorblind.Aztez/Player.az}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Team Colorblind/Aztez/Player.az}}" + - "{{Game data/saves|Windows|{{P|userprofile}}/AppData/LocalLow/TeamColorblind/Aztez/Campaign}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/com.TeamColorblind.Aztez/Campaign\n}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Team Colorblind/Aztez/Campaign}}" Aztlan Uncovered: pageId: 180089 steam: 1873510 templates: - - '{{Game data/saves|Windows|{{p|localappdata}}\AztlanUncovered\Saved\SaveGames}}' -'Azur Lane: Crosswave': + - "{{Game data/saves|Windows|{{p|localappdata}}\\AztlanUncovered\\Saved\\SaveGames}}" +"Azur Lane: Crosswave": pageId: 154150 steam: 1150080 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Azurlane\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\Azurlane\Saved\SaveData\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\Azurlane\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Azurlane\\Saved\\SaveData\\}}" Azura: pageId: 73651 steam: 709410 -'Azurael''s Circle: Chapter 1': +"Azurael's Circle: Chapter 1": pageId: 109156 steam: 872970 -'Azurael''s Circle: Chapter 2': +"Azurael's Circle: Chapter 2": pageId: 109328 steam: 893620 -'Azurael''s Circle: Chapter 3': +"Azurael's Circle: Chapter 3": pageId: 123596 steam: 980520 -'Azurael''s Circle: Chapter 4': +"Azurael's Circle: Chapter 4": pageId: 134800 steam: 1060170 -'Azuran Tales: Trials': +"Azuran Tales: Trials": pageId: 93721 steam: 848200 Azure Reflections: @@ -14079,7 +13716,7 @@ Azure Reflections: renamedFrom: - Azure Reflections / 舞華蒼魔鏡 steam: 928440 -'Azure Saga: Pathfinder': +"Azure Saga: Pathfinder": pageId: 82841 steam: 672590 Azure Sky Project: @@ -14089,15 +13726,15 @@ Azure Striker Gunvolt: pageId: 27487 steam: 388800 templates: - - '{{Game data/config|Windows|{{p|game}}\save\gv_config.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\save\*.bin}}' + - "{{Game data/config|Windows|{{p|game}}\\save\\gv_config.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\save\\*.bin}}" Azure Striker Gunvolt 2: pageId: 160930 steam: 1065180 templates: - - '{{Game data/config|Windows|{{p|game}}\win\save\gv_config.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\win\save\gv2_save.bin|{{p|game}}\win\save\gv2_sys_save.bin}}' -'Azure Wing: Rising Gale': + - "{{Game data/config|Windows|{{p|game}}\\win\\save\\gv_config.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\win\\save\\gv2_save.bin|{{p|game}}\\win\\save\\gv2_sys_save.bin}}" +"Azure Wing: Rising Gale": pageId: 134492 steam: 1056420 Azurea Juncture: @@ -14115,7 +13752,7 @@ B: B A S E M E N T: pageId: 72714 steam: 722010 -'B-12: Brantisky Mk. 12': +"B-12: Brantisky Mk. 12": pageId: 61520 steam: 616640 B-17 Flying Fortress World War II Bombers in Action: @@ -14123,16 +13760,16 @@ B-17 Flying Fortress World War II Bombers in Action: pageId: 187151 steam: 1634450 templates: - - '{{Game data/config|DOS|{{p|game}}\B17.CFG}}' - - '{{Game data/config|Windows|{{p|game}}\game\B17.CFG}}' - - '{{Game data/saves|DOS|{{p|game}}\*.BSG}}' - - '{{Game data/saves|Windows|{{p|game}}\game\*.BSG}}' -'B-17 Flying Fortress: The Mighty 8th': + - "{{Game data/config|DOS|{{p|game}}\\B17.CFG}}" + - "{{Game data/config|Windows|{{p|game}}\\game\\B17.CFG}}" + - "{{Game data/saves|DOS|{{p|game}}\\*.BSG}}" + - "{{Game data/saves|Windows|{{p|game}}\\game\\*.BSG}}" +"B-17 Flying Fortress: The Mighty 8th": gog: 1207658968 pageId: 8405 steam: 328900 templates: - - '{{Game data/saves|Windows|{{p|game}}\Saved Games}}' + - "{{Game data/saves|Windows|{{p|game}}\\Saved Games}}" B-Rabbit: pageId: 134525 steam: 1067070 @@ -14182,23 +13819,23 @@ BAFF 4: BAFL - Brakes Are For Losers: pageId: 63628 steam: 573070 -'BAJA: Edge of Control HD': +"BAJA: Edge of Control HD": pageId: 69482 steam: 623090 templates: - - '{{Game data/config|Windows|{{P|appdata}}\BAJA Edge of Control HD\setup.ini}}' + - "{{Game data/config|Windows|{{P|appdata}}\\BAJA Edge of Control HD\\setup.ini}}" BALL!: pageId: 125847 steam: 1007880 BALSA Model Flight Simulator: pageId: 122133 steam: 977920 -'BANZAI PECAN: The Last Hope for the Young Century': +"BANZAI PECAN: The Last Hope for the Young Century": pageId: 31821 steam: 341440 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/saves|Windows|{{p|windir}}\}}' + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{p|windir}}\\}}" BARDO: pageId: 121621 steam: 939230 @@ -14208,7 +13845,7 @@ BARRICADEZ: BATALJ: pageId: 124474 steam: 981850 -'BATS: Bloodsucker Anti-Terror Squad': +"BATS: Bloodsucker Anti-Terror Squad": gog: 2012376195 pageId: 184510 steam: 1642110 @@ -14227,7 +13864,7 @@ BAX: BAYANI - Fighting Game: pageId: 124512 steam: 941020 -'BBB: Vestal (Visual Novel Vol. 1)': +"BBB: Vestal (Visual Novel Vol. 1)": pageId: 135793 steam: 906560 BBlocks: @@ -14236,7 +13873,7 @@ BBlocks: BC Kings: pageId: 41289 steam: 12460 -'BDSM: Big Drunk Satanic Massacre': +"BDSM: Big Drunk Satanic Massacre": pageId: 75162 steam: 669950 steamSide: @@ -14245,19 +13882,15 @@ BC Kings: - 1173920 - 1209860 templates: - - >- - {{Game data/config|Windows|{{P|userprofile}}\AppData\LocalLow\Big Way Games\Big Drunk Satanic - Massacre\Users\SteamUser_{{P|uid}}\}} - - >- - {{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Big Way Games\Big Drunk Satanic - Massacre\Users\SteamUser_{{P|uid}}\Player}} -'BDSM: Big Drunk Satanic Massacre Demo': + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Big Way Games\\Big Drunk Satanic Massacre\\Users\\SteamUser_{{P|uid}}\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Big Way Games\\Big Drunk Satanic Massacre\\Users\\SteamUser_{{P|uid}}\\Player}}" +"BDSM: Big Drunk Satanic Massacre Demo": pageId: 156645 steam: 1209860 BE-A Walker: pageId: 94794 steam: 864160 -"BEARS, VODKA, BALALAIKA! \U0001F43B": +"BEARS, VODKA, BALALAIKA! 🐻": pageId: 144090 steam: 1129220 BEAST: @@ -14269,24 +13902,24 @@ BEAT.R.: BEATris: pageId: 76577 steam: 708890 -'BELPAESE: Homecoming': +"BELPAESE: Homecoming": pageId: 72541 steam: 710820 templates: - - '{{Game data/config|Windows|{{p|game}}}}' - - '{{Game data/saves|Windows|{{p|game}}}}' + - "{{Game data/config|Windows|{{p|game}}}}" + - "{{Game data/saves|Windows|{{p|game}}}}" BFF or Die: pageId: 98188 steam: 652360 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\SOFTWARE\ASA Studio\BFF or Die\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\SOFTWARE\\ASA Studio\\BFF or Die\\}}" BFGE (Bartender Flair Game): pageId: 128268 steam: 1024860 BH Trials: pageId: 135476 steam: 1067080 -'BHB: BioHazard Bot': +"BHB: BioHazard Bot": pageId: 74498 steam: 711260 BIGHARDSUN: @@ -14296,8 +13929,8 @@ BIOS: pageId: 38240 steam: 350600 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\BIOS\Saved\Config\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\BIOS\Saved\Savegames\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\BIOS\\Saved\\Config\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\BIOS\\Saved\\Savegames\\}}" BIOSZARD Corporation: pageId: 130297 steam: 1037690 @@ -14316,7 +13949,7 @@ BLAST-AXIS: BLASTER LiLO: pageId: 125365 steam: 999750 -'BLOCK Multiplayer: RPG': +"BLOCK Multiplayer: RPG": pageId: 156479 steam: 995880 BLOCKPOST: @@ -14328,19 +13961,19 @@ BLogic Blox: BMW M3 Challenge: pageId: 134379 templates: - - '{{Game data/config|Windows|{{p|game}}\config.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\UserData\{{p|uid}}\{{p|uid}}.plr}}' + - "{{Game data/config|Windows|{{p|game}}\\config.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\UserData\\{{p|uid}}\\{{p|uid}}.plr}}" BOC: pageId: 151450 steam: 1159150 -'BOMB: Who let the dogfight?': +"BOMB: Who let the dogfight?": pageId: 47089 steam: 301500 BOMJMAN: pageId: 142015 steam: 1092040 templates: - - '{{Game data/saves|Windows|{{P|hkcu}}\SOFTWARE\BomjDev\BomjProject\}}' + - "{{Game data/saves|Windows|{{P|hkcu}}\\SOFTWARE\\BomjDev\\BomjProject\\}}" BOMTILES: pageId: 150154 steam: 1115860 @@ -14377,7 +14010,7 @@ BOXiGON!: BOllO: pageId: 51388 steam: 521190 -'BPM: Bullets per Minute': +"BPM: Bullets per Minute": gog: 1112159766 gogSide: - 1883453201 @@ -14386,24 +14019,24 @@ BOllO: steamSide: - 1314470 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\BPM\Saved\Config\WindowsNoEditor}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\BPM\Saved\SaveGames}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\BPM\\Saved\\Config\\WindowsNoEditor}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\BPM\\Saved\\SaveGames}}" BQM - BlockQuest Maker: pageId: 95423 steam: 865930 BR Logic Pack: pageId: 112624 steam: 936950 -'BRAINPIPE: A Plunge to Unhumanity': +"BRAINPIPE: A Plunge to Unhumanity": pageId: 41281 steam: 35800 -BRG's Alice in Wonderland Visual Novel: +"BRG's Alice in Wonderland Visual Novel": pageId: 136712 steam: 1065870 -BRG's Red Riding Hood: +"BRG's Red Riding Hood": pageId: 136716 steam: 1078040 -BRG's The Stonecutter: +"BRG's The Stonecutter": pageId: 136714 steam: 1078060 BRING IT DOWN!: @@ -14445,12 +14078,12 @@ Baba Is You: steamSide: - 955710 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Baba_Is_You\SettingsC.txt}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Baba_Is_You}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/Baba_Is_You}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Baba_Is_You\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Baba_Is_You}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/Baba_Is_You}}' + - "{{Game data/config|Windows|{{p|appdata}}\\Baba_Is_You\\SettingsC.txt}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Baba_Is_You}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/Baba_Is_You}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Baba_Is_You\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Baba_Is_You}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/Baba_Is_You}}" Babel Climbers: pageId: 148673 renamedFrom: @@ -14459,10 +14092,10 @@ Babel Climbers: Babel Rising: pageId: 40755 steam: 204840 -'Babel: Choice': +"Babel: Choice": pageId: 44645 steam: 430170 -'Babel: Tower to the Gods': +"Babel: Tower to the Gods": pageId: 34747 steam: 441230 Baby Bee: @@ -14477,7 +14110,7 @@ Baby Hands: Baby Redemption: pageId: 130303 steam: 1029040 -'Baby Shark: Sing & Swim Party': +"Baby Shark: Sing & Swim Party": pageId: 191294 Baby Storm: gog: 1193138771 @@ -14490,7 +14123,7 @@ Baby Storm: Baby Walking Simulator: pageId: 149911 steam: 1136880 -Baby's on Fire: +"Baby's on Fire": pageId: 90945 steam: 829780 Babycar Driver: @@ -14499,7 +14132,7 @@ Babycar Driver: Babylon 2055 Pinball: pageId: 59822 steam: 458500 -Babylon's Fall: +"Babylon's Fall": pageId: 154516 steam: 889750 Babylonia: @@ -14520,14 +14153,10 @@ Back 4 Blood: - Back4Blood steam: 924970 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Back4Blood\Steam\Saved\Config\WindowsNoEditor\}}' - - >- - {{Game data/config|Microsoft - Store|{{P|localappdata}}\Packages\WarnerBros.Interactive.e172091a-6630-4ff3-959f-830_ktmk1xygcecda\LocalCache\Local\Back4Blood\WinGDK\Saved\Config\WinGDK\}} - - '{{Game data/saves|Windows|{{p|localappdata}}\Back4Blood\Steam\Saved\SaveGames\}}' - - >- - {{Game data/saves|Microsoft - Store|{{p|localappdata}}\Packages\WarnerBros.Interactive.e172091a-6630-4ff3-959f-830_ktmk1xygcecda\SystemAppData\wgs\}} + - "{{Game data/config|Windows|{{P|localappdata}}\\Back4Blood\\Steam\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/config|Microsoft Store|{{P|localappdata}}\\Packages\\WarnerBros.Interactive.e172091a-6630-4ff3-959f-830_ktmk1xygcecda\\LocalCache\\Local\\Back4Blood\\WinGDK\\Saved\\Config\\WinGDK\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Back4Blood\\Steam\\Saved\\SaveGames\\}}" + - "{{Game data/saves|Microsoft Store|{{p|localappdata}}\\Packages\\WarnerBros.Interactive.e172091a-6630-4ff3-959f-830_ktmk1xygcecda\\SystemAppData\\wgs\\}}" Back To Ashes: pageId: 142328 steam: 1054700 @@ -14544,9 +14173,9 @@ Back to Bed: pageId: 18876 steam: 308040 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Back to Bed\}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/Back to Bed/}}' - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/308040/remote/}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Back to Bed\\}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/Back to Bed/}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/308040/remote/}}" Back to Dinosaur Island: pageId: 45591 steam: 412940 @@ -14556,11 +14185,11 @@ Back to Dinosaur Island Part 2: Back to Ebatoria: pageId: 104105 steam: 906900 -'Back to Gaya: The Adventures of Zino and Buu': +"Back to Gaya: The Adventures of Zino and Buu": pageId: 67423 templates: - - '{{Game data/config|Windows|{{p|game}}\data\config\backtogaya.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\data\savegames\}}' + - "{{Game data/config|Windows|{{p|game}}\\data\\config\\backtogaya.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\data\\savegames\\}}" Back to Life 2: pageId: 50312 steam: 299100 @@ -14570,19 +14199,15 @@ Back to Life 3: Back to the Egg!: pageId: 69591 steam: 705640 -'Back to the Future: The Game': +"Back to the Future: The Game": gog: 1207659097 pageId: 7384 steam: 31290 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\Telltale Games\Episode \prefs.prop|{{p|userprofile\Documents}}\Telltale Games\Back to the Future 104\prefs.prop}} - - '{{Game data/config|OS X|{{P|osxhome}}/Library/Application Support/Telltale Games/BacktotheFuture*/prefs.prop}}' - - >- - {{Game data/saves|Windows|{{p|userprofile\Documents}}\Telltale Games\Episode \*.save|{{p|userprofile\Documents}}\Telltale Games\Back to the Future 104\*.save}} - - '{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/Telltale Games/BacktotheFuture*/*.save}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Telltale Games\\Episode \\prefs.prop|{{p|userprofile\\Documents}}\\Telltale Games\\Back to the Future 104\\prefs.prop}}" + - "{{Game data/config|OS X|{{P|osxhome}}/Library/Application Support/Telltale Games/BacktotheFuture*/prefs.prop}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Telltale Games\\Episode \\*.save|{{p|userprofile\\Documents}}\\Telltale Games\\Back to the Future 104\\*.save}}" + - "{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/Telltale Games/BacktotheFuture*/*.save}}" BackSlash: pageId: 68885 steam: 668280 @@ -14596,30 +14221,30 @@ Backfirewall: pageId: 184906 steam: 1920100 templates: - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Naraven Games\Backfirewall_\SavedGameData}}' + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Naraven Games\\Backfirewall_\\SavedGameData}}" Backgammon: pageId: 68382 steam: 696110 Backgammon Blitz: pageId: 45659 steam: 395900 -'Backgammon, Chess & Checkers': +"Backgammon, Chess & Checkers": pageId: 121241 steam: 961230 Backlash: pageId: 35626 templates: - - '{{Game data/config|DOS|{{p|game}}\BL.OPT}}' - - '{{Game data/saves|DOS|{{p|game}}\*.SAV}}' + - "{{Game data/config|DOS|{{p|game}}\\BL.OPT}}" + - "{{Game data/saves|DOS|{{p|game}}\\*.SAV}}" Backpack Hero: pageId: 191377 steam: 1970580 steamSide: - 2109040 templates: - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\TheJaspel\Backpack Hero\}}' - - '{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/TheJaspel/Backpack Hero/}}' - - '{{Game data/saves|Linux|{{P|xdgconfighome}}/TheJaspel/Backpack Hero/}}' + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\TheJaspel\\Backpack Hero\\}}" + - "{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/TheJaspel/Backpack Hero/}}" + - "{{Game data/saves|Linux|{{P|xdgconfighome}}/TheJaspel/Backpack Hero/}}" Backpack Twins: pageId: 136010 steam: 1049310 @@ -14646,13 +14271,13 @@ Backworlds: Backyard Baseball: pageId: 147045 templates: - - '{{Game data/config|Windows|C:\hegames.ini}}' - - '{{Game data/saves|Windows|C:\hegames}}' + - "{{Game data/config|Windows|C:\\hegames.ini}}" + - "{{Game data/saves|Windows|C:\\hegames}}" Backyard Baseball 2001: pageId: 82611 templates: - - '{{Game data/config|Windows|C:\Windows\hegames.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\Coaches}}' + - "{{Game data/config|Windows|C:\\Windows\\hegames.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\Coaches}}" Backyard Baseball 2003: pageId: 147047 Backyard Brawl: @@ -14661,14 +14286,14 @@ Backyard Brawl: Backyard Football: pageId: 147049 templates: - - '{{Game data/config|Windows|C:\Windows\hegames.ini}}' - - '{{Game data/saves|Windows|C:\hegames}}' + - "{{Game data/config|Windows|C:\\Windows\\hegames.ini}}" + - "{{Game data/saves|Windows|C:\\hegames}}" Backyard Football 2002: pageId: 147051 templates: - - '{{Game data/config|Windows|C:\hegames.ini}}' - - '{{Game data/saves|Windows|C:\hegames\Football2002\Coaches}}' -'Bacon Man: An Adventure': + - "{{Game data/config|Windows|C:\\hegames.ini}}" + - "{{Game data/saves|Windows|C:\\hegames\\Football2002\\Coaches}}" +"Bacon Man: An Adventure": pageId: 41886 steam: 327760 Bacon May Die: @@ -14678,7 +14303,7 @@ Bacon Rebellion: pageId: 39366 steam: 415780 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\BaconRebellion\settings.ini}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\BaconRebellion\\settings.ini}}" Bacon Roll: pageId: 87489 steam: 770010 @@ -14700,10 +14325,10 @@ Bad Bots: Bad Bots Rise: pageId: 100710 steam: 852920 -'Bad Boys: Miami Takedown': +"Bad Boys: Miami Takedown": pageId: 78964 templates: - - '{{Game data/config|Windows|{{p|game}}\BB2Config.cfg}}' + - "{{Game data/config|Windows|{{p|game}}\\BB2Config.cfg}}" Bad Business: pageId: 136936 steam: 1079440 @@ -14722,23 +14347,23 @@ Bad Day Betsy: Bad Day L.A.: pageId: 30458 templates: - - '{{Game data/saves|Windows|{{p|game}}\Save\}}' -'Bad Dream: Coma': + - "{{Game data/saves|Windows|{{p|game}}\\Save\\}}" +"Bad Dream: Coma": gog: 1844011652 pageId: 53976 steam: 538070 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Bad_dream_Coma\}}' - - '{{Game data/config|OS X|{{P|osxhome}}/Library/Application Support/com.desertfox.baddreamcoma/}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Bad_dream_Coma\}}' - - '{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/com.desertfox.baddreamcoma/}}' -'Bad Dream: Fever': + - "{{Game data/config|Windows|{{p|localappdata}}\\Bad_dream_Coma\\}}" + - "{{Game data/config|OS X|{{P|osxhome}}/Library/Application Support/com.desertfox.baddreamcoma/}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Bad_dream_Coma\\}}" + - "{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/com.desertfox.baddreamcoma/}}" +"Bad Dream: Fever": gog: 1297501772 pageId: 79434 steam: 769970 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Bad_Dream_Fever\Config.ini}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\Bad_Dream_Fever\Save\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\Bad_Dream_Fever\\Config.ini}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Bad_Dream_Fever\\Save\\}}" Bad Dudes: pageId: 169509 Bad Dudes (Retro Classix): @@ -14764,14 +14389,8 @@ Bad End Theater: - 1814840 - 1921440 templates: - - >- - {{Game - data/config|Windows|{{p|appdata}}\RenPy\badendtheater-1564762000\|{{p|appdata}}\RenPy\persistent\nomnomnami}} - - >- - {{Game - data/saves|Windows|{{p|appdata}}\RenPy\badendtheater-1564762000\|{{p|appdata}}\RenPy\persistent\nomnomnami}} + - "{{Game data/config|Windows|{{p|appdata}}\\RenPy\\badendtheater-1564762000\\|{{p|appdata}}\\RenPy\\persistent\\nomnomnami}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\RenPy\\badendtheater-1564762000\\|{{p|appdata}}\\RenPy\\persistent\\nomnomnami}}" Bad Girl: pageId: 155961 steam: 1211790 @@ -14782,8 +14401,8 @@ Bad Guys at School: pageId: 156708 steam: 1218280 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\BadGuysAtSchool\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\BadGuysAtSchool\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\BadGuysAtSchool\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\BadGuysAtSchool\\Saved\\SaveGames\\}}" Bad Hombre: pageId: 139263 steam: 1071610 @@ -14791,10 +14410,10 @@ Bad Hotel: pageId: 11306 steam: 231720 templates: - - '{{Game data/config|Linux|{{P|xdgdatahome}}/BadHotel/}}' - - '{{Game data/config|Steam|{{p|steam}}/userdata/{{p|uid}}/231720/}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/BadHotel/}}' - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/231720/}}' + - "{{Game data/config|Linux|{{P|xdgdatahome}}/BadHotel/}}" + - "{{Game data/config|Steam|{{p|steam}}/userdata/{{p|uid}}/231720/}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/BadHotel/}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/231720/}}" Bad Milk: pageId: 175344 Bad Mojo: @@ -14804,8 +14423,8 @@ Bad Mojo Redux: pageId: 18680 steam: 255960 templates: - - '{{Game data/config|Windows|{{p|game}}\SAVE\badmojo.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\SAVE\}}' + - "{{Game data/config|Windows|{{p|game}}\\SAVE\\badmojo.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\SAVE\\}}" Bad Mojos: pageId: 138737 steam: 1087820 @@ -14817,18 +14436,12 @@ Bad North: pageId: 91250 steam: 688420 templates: - - >- - {{Game data/config|Windows|{{P|userprofile}}\AppData\LocalLow\Plausible Concept\Bad - North\Saves\settings|{{P|hkcu}}\Software\Plausible Concept\Bad North\}} - - >- - {{Game data/config|OS X|{{p|osxhome}}/Library/Application - Support/com.PlausibleConcept.BadNorthOSX/Saves/settings}} - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Plausible Concept\Bad North\Saves\}}' - - >- - {{Game data/saves|Microsoft - Store|{{P|localappdata}}\GOG.com\Galaxy\Applications\51399757586222569\Storage\Shared\Files}} - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/com.PlausibleConcept.BadNorthOSX/Saves}}' - - '{{Game data/saves|Steam|Steam\userdata\\688420\remote}}' + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Plausible Concept\\Bad North\\Saves\\settings|{{P|hkcu}}\\Software\\Plausible Concept\\Bad North\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/com.PlausibleConcept.BadNorthOSX/Saves/settings}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Plausible Concept\\Bad North\\Saves\\}}" + - "{{Game data/saves|Microsoft Store|{{P|localappdata}}\\GOG.com\\Galaxy\\Applications\\51399757586222569\\Storage\\Shared\\Files}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/com.PlausibleConcept.BadNorthOSX/Saves}}" + - "{{Game data/saves|Steam|Steam\\userdata\\\\688420\\remote}}" Bad Note: pageId: 122320 steam: 976070 @@ -14838,14 +14451,14 @@ Bad Pad: Bad Piggies: pageId: 163742 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\Rovio\Bad Piggies\Settings.xml}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Rovio\Bad Piggies\Progress.dat}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Rovio\\Bad Piggies\\Settings.xml}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Rovio\\Bad Piggies\\Progress.dat}}" Bad Rats Show: pageId: 38214 steam: 393200 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Invent4.com\Bad Rats Show\}}' -'Bad Rats: The Rats'' Revenge': + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Invent4.com\\Bad Rats Show\\}}" +"Bad Rats: The Rats' Revenge": pageId: 17111 steam: 34900 Bad School Boy: @@ -14863,8 +14476,8 @@ Bad Thoughts: Bad Toys 3D: pageId: 68729 templates: - - '{{Game data/config|Windows|{{p|game}}\bt3d.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\GAME_*.SVG}}' + - "{{Game data/config|Windows|{{p|game}}\\bt3d.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\GAME_*.SVG}}" Bad birthday: pageId: 53073 steam: 551680 @@ -14880,7 +14493,7 @@ Badass: Badblood: pageId: 45639 steam: 404400 -'Badiya: Desert Survival': +"Badiya: Desert Survival": pageId: 52840 steam: 545050 Badland: @@ -14893,14 +14506,14 @@ Badland Caravan: steam: 1052420 Badland Party: pageId: 177514 -'Badland: Game of the Year Edition': +"Badland: Game of the Year Edition": pageId: 38309 steam: 269670 templates: - - '{{Game data/config|Windows|{{P|appdata}}\BADLAND\data\}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.BADLAND}}' - - '{{Game data/saves|Windows|{{P|appdata}}\BADLAND\data\}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.BADLAND}}' + - "{{Game data/config|Windows|{{P|appdata}}\\BADLAND\\data\\}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.BADLAND}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\BADLAND\\data\\}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.BADLAND}}" Badminton Kings VR: pageId: 87575 steam: 802330 @@ -14931,7 +14544,7 @@ Baikonur Space: Bail or Jail: pageId: 179714 steam: 1715980 -Bake 'n Switch: +"Bake 'n Switch": pageId: 142073 steam: 1080410 Bakemono - Demon Brigade Tenmen Unit 01: @@ -14947,8 +14560,8 @@ Bakery Simulator: pageId: 128543 steam: 1031120 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\BakerySimulatorFull\Saved\Config}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\BakerySimulatorFull\Saved\SaveGames}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\BakerySimulatorFull\\Saved\\Config}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\BakerySimulatorFull\\Saved\\SaveGames}}" Baking Bounce: pageId: 57862 steam: 467720 @@ -14956,7 +14569,7 @@ Bakso Simulator: pageId: 178542 steam: 2022270 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Akhir Pekan\Bakso Simulator}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Akhir Pekan\\Bakso Simulator}}" Baku Baku: pageId: 177114 Bala na manga: @@ -14966,15 +14579,13 @@ Balan Wonderworld: pageId: 162129 steam: 1341050 templates: - - >- - {{Game data/config|Windows|{{P|userprofile\Documents}}\My Games\BALAN - WONDERWORLD\Steam\{{P|uid}}\SaveGames\Option.sav|{{p|localappdata}}\Happiness\Saved\Config\WindowsNoEditor\}} - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\My Games\BALAN WONDERWORLD\Steam\{{P|uid}}\SaveGames\}}' + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\My Games\\BALAN WONDERWORLD\\Steam\\{{P|uid}}\\SaveGames\\Option.sav|{{p|localappdata}}\\Happiness\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\My Games\\BALAN WONDERWORLD\\Steam\\{{P|uid}}\\SaveGames\\}}" BalanCity: pageId: 41545 steam: 462680 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\BalanCity}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\BalanCity}}" Balance Breakers: pageId: 144622 steam: 1069750 @@ -14989,7 +14600,7 @@ Balance of Kingdoms: steam: 738690 Balance of Power: pageId: 175956 -'Balance of Power: The 1990 Edition': +"Balance of Power: The 1990 Edition": pageId: 175958 Balance of Soccer 2018: pageId: 95347 @@ -15004,31 +14615,31 @@ Balconing Simulator 2020: pageId: 154715 steam: 1383010 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Fancy ''n Punk\Balconing Simulator 2020}}' - - '{{Game data/saves|Windows|{{P|hkcu}}\Software\Fancy ''n Punk\Balconing Simulator 2020}}' -Baldi's Basics - Field Trip: + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Fancy 'n Punk\\Balconing Simulator 2020}}" + - "{{Game data/saves|Windows|{{P|hkcu}}\\Software\\Fancy 'n Punk\\Balconing Simulator 2020}}" +"Baldi's Basics - Field Trip": pageId: 126632 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Mysman12\Baldi''s Basics and Education and Learning 1.3.2\}}' - - '{{Game data/saves|Windows|{{P|appdata}}\Baldi''s Basics and Education and Learning}}' -Baldi's Basics Birthday Bash: + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Mysman12\\Baldi's Basics and Education and Learning 1.3.2\\}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\Baldi's Basics and Education and Learning}}" +"Baldi's Basics Birthday Bash": pageId: 189075 -Baldi's Basics Classic Remastered: +"Baldi's Basics Classic Remastered": pageId: 189074 steam: 1712830 -Baldi's Basics Plus: +"Baldi's Basics Plus": pageId: 160300 steam: 1275890 -Baldi's Basics in Education & Learning: +"Baldi's Basics in Education & Learning": pageId: 126630 -Baldina's Basis in Education Literary Grammar: +"Baldina's Basis in Education Literary Grammar": pageId: 141298 steam: 1028850 -'Baldo: The Guardian Owls': +"Baldo: The Guardian Owls": gog: 1707235154 pageId: 170466 steam: 1614890 -Baldoo's Basics of Math Education: +"Baldoo's Basics of Math Education": pageId: 132134 steam: 1038840 Baldr Sky: @@ -15036,83 +14647,73 @@ Baldr Sky: pageId: 156114 steam: 741140 templates: - - >- - {{Game - data/saves|Windows|{{p|userprofile\Documents}}\GIGA\BALDRSKY_EN\Save\*.dat|{{p|userprofile\Documents}}\GIGA\BALDRSKY_DIVE2\Save\*.dat}} -Baldur's Gate: + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\GIGA\\BALDRSKY_EN\\Save\\*.dat|{{p|userprofile\\Documents}}\\GIGA\\BALDRSKY_DIVE2\\Save\\*.dat}}" +"Baldur's Gate": gog: 1207658886 gogSide: - 1207666353 pageId: 359 templates: - - '{{Game data/config|Windows|{{p|game}}\baldur.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\Save}}' -Baldur's Gate 3: + - "{{Game data/config|Windows|{{p|game}}\\baldur.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\Save}}" +"Baldur's Gate 3": gog: 1456460669 gogSide: - 1157299235 pageId: 138197 renamedFrom: - - Baldur's Gate III + - "Baldur's Gate III" steam: 1086940 steamSide: - 2378500 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Larian Studios\Baldur''s Gate 3\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Documents/Larian Studios/Baldur''s Gate 3/}}' - - >- - {{Game data/saves|Windows|{{p|localappdata}}\Larian Studios\Baldur's Gate - 3\PlayerProfiles\Public\Savegames\Story\}} - - >- - {{Game data/saves|OS X|{{p|osxhome}}/Documents/Larian Studios/Baldur's Gate - 3/PlayerProfiles/Public/Savegames/Story/}} -'Baldur''s Gate II: Enhanced Edition': + - "{{Game data/config|Windows|{{p|localappdata}}\\Larian Studios\\Baldur's Gate 3\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Documents/Larian Studios/Baldur's Gate 3/}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Larian Studios\\Baldur's Gate 3\\PlayerProfiles\\Public\\Savegames\\Story\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Documents/Larian Studios/Baldur's Gate 3/PlayerProfiles/Public/Savegames/Story/}}" +"Baldur's Gate II: Enhanced Edition": gog: 1207666373 gogSide: - 2129826400 pageId: 13575 steam: 257350 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Baldur''s Gate II - Enhanced Edition\baldur.lua}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Documents/Baldur''s Gate II - Enhanced Edition/baldur.lua}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.local/share/Baldur''s Gate II - Enhanced Edition/Baldur.lua}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Baldur''s Gate II - Enhanced Edition\save\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Documents/Baldur''s Gate II - Enhanced Edition/save/}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.local/share/Baldur''s Gate II - Enhanced Edition/save/}}' -'Baldur''s Gate II: Shadows of Amn': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Baldur's Gate II - Enhanced Edition\\baldur.lua}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Documents/Baldur's Gate II - Enhanced Edition/baldur.lua}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.local/share/Baldur's Gate II - Enhanced Edition/Baldur.lua}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Baldur's Gate II - Enhanced Edition\\save\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Documents/Baldur's Gate II - Enhanced Edition/save/}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.local/share/Baldur's Gate II - Enhanced Edition/save/}}" +"Baldur's Gate II: Shadows of Amn": gog: 1207658893 gogSide: - 1207666373 pageId: 52 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/saves|Windows|{{p|game}}\Save\}}' -'Baldur''s Gate: Dark Alliance': + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\Save\\}}" +"Baldur's Gate: Dark Alliance": gog: 1760702251 pageId: 173748 steam: 1695830 templates: - - >- - {{Game data/config|Windows|{{P|localappdata}}\Baldur's Gate - Dark Alliance\savedata\bgda.cfg{{note|It's a - binary/encrypted file that can't be easily edited.}}}} - - '{{Game data/saves|Windows|{{P|localappdata}}\Baldur''s Gate - Dark Alliance\savedata}}' -'Baldur''s Gate: Dark Alliance II': + - "{{Game data/config|Windows|{{P|localappdata}}\\Baldur's Gate - Dark Alliance\\savedata\\bgda.cfg{{note|It's a binary/encrypted file that can't be easily edited.}}}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Baldur's Gate - Dark Alliance\\savedata}}" +"Baldur's Gate: Dark Alliance II": gog: 1745438757 pageId: 175454 steam: 1889930 templates: - - >- - {{Game data/config|Windows|{{P|localappdata}}\Baldur's Gate - Dark Alliance II\bgda2.cfg{{note|It's a - binary/encrypted file that can't be easily edited.}}}} - - '{{Game data/saves|Windows|{{P|localappdata}}\Baldur''s Gate - Dark Alliance II\savedata}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Baldur''s Gate - Dark Alliance II/savedata}}' - - '{{Game data/saves|Linux|{{p|xdgdatahome}}/Baldur''s Gate - Dark Alliance II/data/savedata}}' -'Baldur''s Gate: Enhanced Edition': + - "{{Game data/config|Windows|{{P|localappdata}}\\Baldur's Gate - Dark Alliance II\\bgda2.cfg{{note|It's a binary/encrypted file that can't be easily edited.}}}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Baldur's Gate - Dark Alliance II\\savedata}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Baldur's Gate - Dark Alliance II/savedata}}" + - "{{Game data/saves|Linux|{{p|xdgdatahome}}/Baldur's Gate - Dark Alliance II/data/savedata}}" +"Baldur's Gate: Enhanced Edition": gog: 1207666353 gogSide: + - 1092899832 - 1459335293 - 1459337461 - - 1092899832 - 1488384694 pageId: 4009 steam: 228280 @@ -15122,22 +14723,22 @@ Baldur's Gate 3: - 459290 - 687500 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Baldur''s Gate - Enhanced Edition\Baldur.lua}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Documents/Baldur''s Gate - Enhanced Edition/Baldur.lua}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.local/share/Baldur''s Gate - Enhanced Edition/Baldur.lua}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Baldur''s Gate - Enhanced Edition\save\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Documents/Baldur''s Gate - Enhanced Edition/save/}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.local/share/Baldur''s Gate - Enhanced Edition/save/}}' -'Ball 2D: Soccer Online': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Baldur's Gate - Enhanced Edition\\Baldur.lua}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Documents/Baldur's Gate - Enhanced Edition/Baldur.lua}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.local/share/Baldur's Gate - Enhanced Edition/Baldur.lua}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Baldur's Gate - Enhanced Edition\\save\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Documents/Baldur's Gate - Enhanced Edition/save/}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.local/share/Baldur's Gate - Enhanced Edition/save/}}" +"Ball 2D: Soccer Online": pageId: 69258 steam: 703940 -'Ball 3D: Soccer Online': +"Ball 3D: Soccer Online": pageId: 60085 steam: 485610 Ball Breakers: pageId: 168819 templates: - - '{{Game data/saves|Windows|{{p|game}}\Save}}' + - "{{Game data/saves|Windows|{{p|game}}\\Save}}" Ball Driver: pageId: 88818 steam: 814010 @@ -15157,8 +14758,8 @@ Ball Lab: pageId: 87615 steam: 780800 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Viktor Yurchuk\Ball laB\}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Viktor Yurchuk\Ball laB\game.save}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Viktor Yurchuk\\Ball laB\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Viktor Yurchuk\\Ball laB\\game.save}}" Ball Out: pageId: 123345 steam: 970730 @@ -15198,16 +14799,16 @@ Ballads at Midnight: Ballads of Hongye: pageId: 184898 steam: 1723560 -'Ballads of Reemus: When the Bed Bites': +"Ballads of Reemus: When the Bed Bites": pageId: 48088 Ballance: gog: 1918420377 pageId: 134317 steam: 2000770 templates: - - '{{Game data/config|Windows|{{P|hklm}}\SOFTWARE\{{P|wow64}}\Ballance\Settings}}' - - '{{Game data/saves|Windows|{{p|game}}\Database.tdb}}' -'Ballance: The Return': + - "{{Game data/config|Windows|{{P|hklm}}\\SOFTWARE\\{{P|wow64}}\\Ballance\\Settings}}" + - "{{Game data/saves|Windows|{{p|game}}\\Database.tdb}}" +"Ballance: The Return": pageId: 153410 steam: 1186290 Ballanced: @@ -15216,10 +14817,10 @@ Ballanced: Ballastic: pageId: 121908 steam: 978120 -'Ballerburg: Castle Siege': +"Ballerburg: Castle Siege": pageId: 184712 templates: - - '{{Game data/config|Windows|{{p|game}}\Settings.dat}}' + - "{{Game data/config|Windows|{{p|game}}\\Settings.dat}}" Ballex: pageId: 141540 steam: 1114430 @@ -15246,9 +14847,7 @@ Ballistic Overkill: pageId: 46132 steam: 296300 templates: - - >- - {{Game data/config|Windows|{{P|userprofile}}\AppData\LocalLow\Aquiris Game Studio\Ballistic - Overkill\Unity\762356f9-eed9-4597-bdd9-4472c0ebea59\Analytics}} + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Aquiris Game Studio\\Ballistic Overkill\\Unity\\762356f9-eed9-4597-bdd9-4472c0ebea59\\Analytics}}" Ballistic Protection: pageId: 51563 steam: 537860 @@ -15266,15 +14865,15 @@ BallisticNG: - 1165070 - 1596120 templates: - - '{{Game data/config|Windows|{{P|game}}\User\Configs\Controller\|{{P|game}}\User\Configs\ini\}}' - - '{{Game data/saves|Windows|{{p|game}}\User\Save\}}' + - "{{Game data/config|Windows|{{P|game}}\\User\\Configs\\Controller\\|{{P|game}}\\User\\Configs\\ini\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\User\\Save\\}}" Ballistick: pageId: 39290 steam: 518620 Ballistics: pageId: 32978 templates: - - '{{Game data/saves|Windows|{{P|game}}\Savegames\}}' + - "{{Game data/saves|Windows|{{P|game}}\\Savegames\\}}" Balloon: pageId: 81962 steam: 792810 @@ -15296,7 +14895,7 @@ Balloon Girl: Balloon Guy: pageId: 88112 steam: 811520 -'Balloon Popping Pigs: Deluxe': +"Balloon Popping Pigs: Deluxe": pageId: 56124 steam: 575590 Balloon Saga: @@ -15311,17 +14910,15 @@ BalloonBoyBob: Balloonatics: pageId: 81038 steam: 744600 -'Ballpoint Universe: Infinite': +"Ballpoint Universe: Infinite": pageId: 15202 steam: 259390 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Arachnid Games\Ballpoint Universe}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Arachnid Games/Ballpoint Universe/}}' - - '{{Game data/saves|Windows|{{P|Game}}/BPU_Data\CloudSaves\}}' - - '{{Game data/saves|OS X|{{P|Game}}/BPU.app/Contents/CloudSaves/}}' - - >- - {{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Arachnid Games/Ballpoint - Universe/|{{P|Game}}/BPU_Data/CloudSaves/}} + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Arachnid Games\\Ballpoint Universe}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Arachnid Games/Ballpoint Universe/}}" + - "{{Game data/saves|Windows|{{P|Game}}/BPU_Data\\CloudSaves\\}}" + - "{{Game data/saves|OS X|{{P|Game}}/BPU.app/Contents/CloudSaves/}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Arachnid Games/Ballpoint Universe/|{{P|Game}}/BPU_Data/CloudSaves/}}" Balls Out: pageId: 139651 steam: 1073920 @@ -15333,12 +14930,12 @@ Balls of Steel: pageId: 13690 steam: 358430 templates: - - '{{Game data/config|Windows|{{p|hklm}}\SOFTWARE\Wildfire Studios\Balls of Steel}}' - - '{{Game data/saves|Windows|{{p|hklm}}\SOFTWARE\Wildfire Studios\Balls of Steel\High scores}}' + - "{{Game data/config|Windows|{{p|hklm}}\\SOFTWARE\\Wildfire Studios\\Balls of Steel}}" + - "{{Game data/saves|Windows|{{p|hklm}}\\SOFTWARE\\Wildfire Studios\\Balls of Steel\\High scores}}" Balls! Virtual Reality Cricket: pageId: 50773 steam: 517220 -"Balls!\U0001F92C\U0001F346": +Balls!🤬🍆: pageId: 152903 steam: 1156670 BallsBlasterVR: @@ -15350,7 +14947,7 @@ Ballway: Ballz Royale: pageId: 112384 steam: 931760 -'Ballz: Farm': +"Ballz: Farm": pageId: 80432 steam: 705670 Balrum: @@ -15358,16 +14955,16 @@ Balrum: pageId: 35032 steam: 424250 templates: - - '{{Game data/saves| Windows | {{p|game}}\files\saves}}' -Balthazar's Dream: + - "{{Game data/saves| Windows | {{p|game}}\\files\\saves}}" +"Balthazar's Dream": pageId: 56944 steam: 583890 Bambino Rally 3: pageId: 51420 steam: 469550 templates: - - '{{Game data/config|Windows|{{p|game}}\scriptsAndAssets\client\prefs.cs}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Maluch Racer 3\users\}}' + - "{{Game data/config|Windows|{{p|game}}\\scriptsAndAssets\\client\\prefs.cs}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Maluch Racer 3\\users\\}}" Bamboo EP: pageId: 54629 steam: 561190 @@ -15384,8 +14981,8 @@ Banana Hell: pageId: 171755 steam: 1260130 templates: - - '{{Game data/config|Windows|{{P|appdata}}\Godot\app_userdata\Banana Hell\options.cfg}}' - - '{{Game data/saves|Windows|{{P|appdata}}\Godot\app_userdata\Banana Hell\save-file.cfg}}' + - "{{Game data/config|Windows|{{P|appdata}}\\Godot\\app_userdata\\Banana Hell\\options.cfg}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\Godot\\app_userdata\\Banana Hell\\save-file.cfg}}" Banana Invaders: pageId: 144713 steam: 1134530 @@ -15441,32 +15038,32 @@ Bang Bang Racing: pageId: 40773 steam: 207020 templates: - - '{{Game data/config|Steam|{{p|steam}}\userdata\{{p|uid}}\207020\remote\}}' - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\207020\remote\}}' + - "{{Game data/config|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\207020\\remote\\}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\207020\\remote\\}}" Bang! Bang!: pageId: 71954 steam: 651380 Bang! Howdy: pageId: 66269 steam: 675810 -'Bang-On Balls: Chronicles': +"Bang-On Balls: Chronicles": gog: 1117332315 pageId: 180750 steam: 1227650 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\BoB\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\BoB\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\BoB\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\BoB\\Saved\\SaveGames\\}}" Banished: gog: 1207660783 pageId: 11549 steam: 242920 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Shining Rock Software LLC\Banished\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Banished\Save\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Shining Rock Software LLC\\Banished\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Banished\\Save\\}}" Banished Castle VR: pageId: 144043 steam: 1123100 -'Bank Limit: Advanced Battle Racing': +"Bank Limit: Advanced Battle Racing": pageId: 41569 steam: 493500 Bankrupt Heroines 2: @@ -15479,7 +15076,7 @@ Banner of the Maid: pageId: 132907 steam: 994730 templates: - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\AzureFlameStudio\Banner}}' + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\AzureFlameStudio\\Banner}}" Bannerman: pageId: 64327 steam: 456170 @@ -15489,12 +15086,12 @@ Bannermen: Banners of Ruin: gog: 1590989280 gogSide: - - 1666515839 - 1143069331 - - 1550060684 - - 2053935128 - - 1569201309 - 1169004871 + - 1550060684 + - 1569201309 + - 1666515839 + - 2053935128 pageId: 170420 steam: 1075740 steamSide: @@ -15503,7 +15100,7 @@ Banners of Ruin: - 2191860 - 2523180 templates: - - '{{Game data/saves|Windows|{{p|userprofile\AppData\LocalLow}}\MonteBearo\BannersOfRuin\SaveData}}' + - "{{Game data/saves|Windows|{{p|userprofile\\AppData\\LocalLow}}\\MonteBearo\\BannersOfRuin\\SaveData}}" Banshee Force: pageId: 80942 steam: 771540 @@ -15516,8 +15113,8 @@ Banyu Lintar Angin - Little Storm -: Banzai Bug: pageId: 14795 templates: - - '{{Game data/config|Windows|{{p|game}}\EXE}}' - - '{{Game data/saves|Windows|{{p|game}}\EXE\*.sav}}' + - "{{Game data/config|Windows|{{p|game}}\\EXE}}" + - "{{Game data/saves|Windows|{{p|game}}\\EXE\\*.sav}}" Banzai Escape: pageId: 44389 steam: 440340 @@ -15527,13 +15124,13 @@ Banzai Royale: Banzo - Marks of Slavery: pageId: 103437 steam: 872380 -'Baobabs Mausoleum Ep.1: Ovnifagos Don''t Eat Flamingos': +"Baobabs Mausoleum Ep.1: Ovnifagos Don't Eat Flamingos": pageId: 63773 steam: 646600 -'Baobabs Mausoleum Ep.2: 1313 Barnabas Dead End Drive': +"Baobabs Mausoleum Ep.2: 1313 Barnabas Dead End Drive": pageId: 79378 steam: 687720 -'Baobabs Mausoleum Ep.3: Un Pato en Muertoburgo': +"Baobabs Mausoleum Ep.3: Un Pato en Muertoburgo": pageId: 150655 steam: 1042820 Baptism: @@ -15562,7 +15159,7 @@ Barbarian Trash: Barbaric: pageId: 66287 steam: 672440 -'Barbarous: Tavern Of Emyr': +"Barbarous: Tavern Of Emyr": pageId: 153915 steam: 1202170 Barbarroja: @@ -15571,17 +15168,17 @@ Barbarroja: Barbearian: pageId: 89692 steam: 813450 -'Barbie Adventure: Riding Club': +"Barbie Adventure: Riding Club": pageId: 170644 Barbie Beauty Boutique: pageId: 170650 -'Barbie Diaries: High School Mystery': +"Barbie Diaries: High School Mystery": pageId: 170620 Barbie Dreamhouse Party: pageId: 67452 steam: 251610 templates: - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\My Games\Barbie Party}}' + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\My Games\\Barbie Party}}" Barbie Explorer: pageId: 170618 Barbie Fashion Designer: @@ -15594,25 +15191,25 @@ Barbie and Her Sisters Puppy Rescue: pageId: 45246 steam: 396390 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Torus\Barbie2\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Torus\\Barbie2\\}}" Barbie and the Three Musketeers: pageId: 158717 -'Barbie: Super Sports': +"Barbie: Super Sports": pageId: 170642 -'Barclay: The Marrowdale Murder': +"Barclay: The Marrowdale Murder": pageId: 59228 steam: 605470 Bard to the Future: pageId: 48563 steam: 337110 -Bard's Gold: +"Bard's Gold": pageId: 38432 steam: 381900 Bardbarian: pageId: 37903 steam: 269490 templates: - - '{{Game data/saves|Windows|{{p|APPDATA}}\com.treefortress.bardbarian\local store\saves.dat}}' + - "{{Game data/saves|Windows|{{p|APPDATA}}\\com.treefortress.bardbarian\\local store\\saves.dat}}" Bare Metal: pageId: 77616 steam: 674130 @@ -15621,37 +15218,37 @@ Bargain Hunter: steam: 943680 Bargon Attack: pageId: 146991 -'Barkley, Shut Up and Jam: Gaiden': +"Barkley, Shut Up and Jam: Gaiden": pageId: 163670 templates: - - '{{Game data/config|Windows|{{p|game}}\config.txt
{{p|game}}\controls.txt}}' - - '{{Game data/saves|Windows|{{p|game}}\Save*.sav}}' + - "{{Game data/config|Windows|{{p|game}}\\config.txt
{{p|game}}\\controls.txt}}" + - "{{Game data/saves|Windows|{{p|game}}\\Save*.sav}}" Barn Finders: pageId: 128680 steam: 991170 templates: - - '{{Game data/config|Windows|{{p|USERPROFILE}}\AppData\Local\BarnFinders\Saved\Config\WindowsNoEditor}}' - - '{{Game data/saves|Windows|{{p|USERPROFILE}}\AppData\Local\BarnFinders\Saved\SaveGames}}' -Barney's Dream Cruise: + - "{{Game data/config|Windows|{{p|USERPROFILE}}\\AppData\\Local\\BarnFinders\\Saved\\Config\\WindowsNoEditor}}" + - "{{Game data/saves|Windows|{{p|USERPROFILE}}\\AppData\\Local\\BarnFinders\\Saved\\SaveGames}}" +"Barney's Dream Cruise": pageId: 141332 steam: 1052210 Barnyard: pageId: 155236 templates: - - '{{Game data/config|Windows|{{p|HKCU}}\Software\THQ\Barnyard\}}' - - '{{Game data/saves|Windows|{{P|game}}\Save\}}' + - "{{Game data/config|Windows|{{p|HKCU}}\\Software\\THQ\\Barnyard\\}}" + - "{{Game data/saves|Windows|{{P|game}}\\Save\\}}" Barnyard Mahjong 3: pageId: 41988 steam: 498030 -'Baron Wittard: Nemesis of Ragnarok': +"Baron Wittard: Nemesis of Ragnarok": pageId: 50377 steam: 293980 -'Baron: Fur Is Gonna Fly': +"Baron: Fur Is Gonna Fly": pageId: 151111 steam: 1134370 templates: - - '{{Game data/config|Windows|{{p|Steam}}\steamapps\common\Baron Fur Is Gonna Fly\data\saves}}' - - '{{Game data/saves|Windows|{{p|Steam}}\steamapps\common\Baron Fur Is Gonna Fly\data\saves}}' + - "{{Game data/config|Windows|{{p|Steam}}\\steamapps\\common\\Baron Fur Is Gonna Fly\\data\\saves}}" + - "{{Game data/saves|Windows|{{p|Steam}}\\steamapps\\common\\Baron Fur Is Gonna Fly\\data\\saves}}" Barony: gog: 1797331296 gogSide: @@ -15662,20 +15259,18 @@ Barony: - 470540 - 1010820 templates: - - '{{Game data/config|Windows|{{p|game}}\default.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\savegames\}}' + - "{{Game data/config|Windows|{{p|game}}\\default.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\savegames\\}}" Barotrauma: pageId: 124516 steam: 602960 templates: - - '{{Game data/config|Windows|{{P|game}}\config_player.xml}}' - - >- - {{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Daedalic Entertainment - GmbH/Barotrauma/config_player.xml}} - - '{{Game data/config|Linux|{{P|xdgdatahome}}/Daedalic Entertainment GmbH/Barotrauma/config_player.xml}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\Daedalic Entertainment GmbH\Barotrauma\}}' - - '{{Game data/saves|OS X| ~/Library/Application\ Support/Daedalic\ Entertainment\ GmbH/Barotrauma/}}' - - '{{Game data/saves|Linux|/home/USER/.local/share/Daedalic Entertainment GmbH/Barotrauma/}}' + - "{{Game data/config|Windows|{{P|game}}\\config_player.xml}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Daedalic Entertainment GmbH/Barotrauma/config_player.xml}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/Daedalic Entertainment GmbH/Barotrauma/config_player.xml}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Daedalic Entertainment GmbH\\Barotrauma\\}}" + - "{{Game data/saves|OS X| ~/Library/Application\\ Support/Daedalic\\ Entertainment\\ GmbH/Barotrauma/}}" + - "{{Game data/saves|Linux|/home/USER/.local/share/Daedalic Entertainment GmbH/Barotrauma/}}" Barrage: pageId: 91921 steam: 836080 @@ -15698,7 +15293,7 @@ Barrier X: pageId: 37343 steam: 463150 templates: - - '{{Game data/saves|Windows|{{p|hkcu}}\SOFTWARE\Pinkapp\BarrierX}}' + - "{{Game data/saves|Windows|{{p|hkcu}}\\SOFTWARE\\Pinkapp\\BarrierX}}" Barrimean Jungle: pageId: 76045 steam: 749650 @@ -15706,25 +15301,25 @@ Barro: pageId: 90894 steam: 618140 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\SC Jogos\Barro}}' - - '{{Game data/saves|Windows|{{p|game}}\Barro\Save\*.scj}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\SC Jogos\\Barro}}" + - "{{Game data/saves|Windows|{{p|game}}\\Barro\\Save\\*.scj}}" Barro 2020: pageId: 150289 steam: 1168660 -'Barrow Hill: Curse of the Ancient Circle': +"Barrow Hill: Curse of the Ancient Circle": gog: 2133405352 pageId: 40305 steam: 494360 templates: - - '{{Game data/config|Windows|{{p|game}}\settings.mat}}' - - '{{Game data/saves|Windows|{{p|game}}\savegame#.sav}}' -'Barrow Hill: The Dark Path': + - "{{Game data/config|Windows|{{p|game}}\\settings.mat}}" + - "{{Game data/saves|Windows|{{p|game}}\\savegame#.sav}}" +"Barrow Hill: The Dark Path": gog: 1840673966 pageId: 40307 steam: 520990 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\ShadowTorStudios\TheDarkPath}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\Saved Games\The Dark Path\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\ShadowTorStudios\\TheDarkPath}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Saved Games\\The Dark Path\\}}" Barry Has a Secret: pageId: 95369 steam: 864230 @@ -15747,7 +15342,7 @@ Base Defense: pageId: 176641 steam: 632730 templates: - - '{{Game data/config|Windows|{{P|game}}\Base Defense\valve\}}' + - "{{Game data/config|Windows|{{P|game}}\\Base Defense\\valve\\}}" Base One: gog: 1879726525 pageId: 167060 @@ -15787,7 +15382,7 @@ Basement: pageId: 38183 steam: 340150 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Halfbus\Basement\Saves\}}' + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Halfbus\\Basement\\Saves\\}}" Bashed.OS: pageId: 129803 steam: 1034030 @@ -15805,7 +15400,7 @@ Basingstoke: pageId: 81765 steam: 336940 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Puppygames\Basingstoke\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Puppygames\\Basingstoke\\}}" BasketBelle: pageId: 35289 steam: 329690 @@ -15869,16 +15464,14 @@ Bastion: pageId: 1033 steam: 107100 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Saved Games\Bastion\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/com.wb.Bastion/}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/Bastion/}}' - - '{{Game data/config|Steam|{{p|steam}}/userdata/{{P|uid}}/107100/}}' - - >- - {{Game data/saves|Windows|{{p|userprofile\Documents}}\Saved Games\Bastion\ | {{p|userprofile}}\Saved - Games\Bastion}} - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/com.wb.Bastion/}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/Bastion/}}' - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{P|uid}}/107100/}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Saved Games\\Bastion\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/com.wb.Bastion/}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/Bastion/}}" + - "{{Game data/config|Steam|{{p|steam}}/userdata/{{P|uid}}/107100/}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Saved Games\\Bastion\\ | {{p|userprofile}}\\Saved Games\\Bastion}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/com.wb.Bastion/}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/Bastion/}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{P|uid}}/107100/}}" Bastion (1996): pageId: 155044 Bat Hotel: @@ -15887,7 +15480,7 @@ Bat Hotel: BatMUD: pageId: 153141 steam: 616920 -'Batbarian: Testament of the Primordials': +"Batbarian: Testament of the Primordials": gog: 1845013484 pageId: 139655 renamedFrom: @@ -15909,34 +15502,32 @@ Batman: pageId: 179738 Batman Forever: pageId: 176717 -'Batman Forever: The Arcade Game': +"Batman Forever: The Arcade Game": pageId: 176719 Batman Returns: pageId: 176691 -'Batman: Arkham Asylum': +"Batman: Arkham Asylum": gog: 1482504285 pageId: 638 steam: 35140 steamSide: - 35010 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Square Enix\Batman Arkham Asylum GOTY\BmGame\Config\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Square Enix\Batman Arkham Asylum GOTY\SaveData\}}' - - >- - {{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Feral Interactive/Batman Arkham City GOTY/Save - Data/}} - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/35140/remote/}}' -'Batman: Arkham City': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Square Enix\\Batman Arkham Asylum GOTY\\BmGame\\Config\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Square Enix\\Batman Arkham Asylum GOTY\\SaveData\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Feral Interactive/Batman Arkham City GOTY/Save Data/}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/35140/remote/}}" +"Batman: Arkham City": gog: 1260066469 pageId: 748 steam: 200260 steamSide: - 57400 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\WB Games\Batman Arkham City GOTY\BmGame\Config\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\WB Games\Batman Arkham City GOTY\SaveData\}}' - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\200260\}}' -'Batman: Arkham Knight': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\WB Games\\Batman Arkham City GOTY\\BmGame\\Config\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\WB Games\\Batman Arkham City GOTY\\SaveData\\}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\200260\\}}" +"Batman: Arkham Knight": gog: 1881970704 gogSide: - 1136349258 @@ -15980,85 +15571,78 @@ Batman Returns: - 415650 - 418930 templates: - - '{{Game data/config|Windows|{{p|game}}\BMGame\Config\}}' - - '{{Game data/saves|Windows|{{p|game}}\BMGame\SaveData\}}' - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\208650\}}' -'Batman: Arkham Origins': + - "{{Game data/config|Windows|{{p|game}}\\BMGame\\Config\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\BMGame\\SaveData\\}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\208650\\}}" +"Batman: Arkham Origins": gog: 1908486934 gogSide: - 1431357301 pageId: 10725 steam: 209000 templates: - - >- - {{Game data/config|Windows|{{p|game}}\SinglePlayer\BMGame\Config\|{{P|userprofile\Documents}}\WB Games\Batman - Arkham Origins\BMGame\Config|{{p|userprofile\Documents}}\WB Games\Batman Arkham - Origins\GFXSettings.BatmanArkhamOrigins.xml}} - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\WB Games\Batman Arkham Origins\SaveData\}}' - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\209000\}}' -'Batman: Arkham Origins Blackgate Deluxe Edition': + - "{{Game data/config|Windows|{{p|game}}\\SinglePlayer\\BMGame\\Config\\|{{P|userprofile\\Documents}}\\WB Games\\Batman Arkham Origins\\BMGame\\Config|{{p|userprofile\\Documents}}\\WB Games\\Batman Arkham Origins\\GFXSettings.BatmanArkhamOrigins.xml}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\WB Games\\Batman Arkham Origins\\SaveData\\}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\209000\\}}" +"Batman: Arkham Origins Blackgate Deluxe Edition": pageId: 15769 renamedFrom: - - 'Batman: Arkham Origins Blackgate' + - "Batman: Arkham Origins Blackgate" steam: 267490 templates: - - '{{Game data/config|Windows|{{P|game}}\VideoSettings.txt}}' - - '{{Game data/saves|Windows|{{P|game}}\GameData\SteamSaves\}}' -'Batman: Arkham VR': + - "{{Game data/config|Windows|{{P|game}}\\VideoSettings.txt}}" + - "{{Game data/saves|Windows|{{P|game}}\\GameData\\SteamSaves\\}}" +"Batman: Arkham VR": pageId: 60782 steam: 502820 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\ArkhamVR\Saved\SaveGames\BatmanVR_{{P|uid}}.sav}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\ArkhamVR\Saved\SaveGames\BatmanVR_{{P|uid}}.sav}}' -'Batman: The Enemy Within - The Telltale Series': + - "{{Game data/config|Windows|{{p|localappdata}}\\ArkhamVR\\Saved\\SaveGames\\BatmanVR_{{P|uid}}.sav}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\ArkhamVR\\Saved\\SaveGames\\BatmanVR_{{P|uid}}.sav}}" +"Batman: The Enemy Within - The Telltale Series": gog: 2135854393 pageId: 66213 steam: 675260 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\Telltale Games\Batman The Enemy Within - The Telltale - Series\}} - - >- - {{Game data/saves|Windows|{{p|userprofile\Documents}}\Telltale Games\Batman The Enemy Within - The Telltale - Series\}} -'Batman: The Telltale Series': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Telltale Games\\Batman The Enemy Within - The Telltale Series\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Telltale Games\\Batman The Enemy Within - The Telltale Series\\}}" +"Batman: The Telltale Series": gog: 2140144872 pageId: 35591 steam: 498240 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Telltale Games\Batman The Telltale Series\}}' - - '{{Game data/config|GOG.com|{{p|userprofile\Documents}}\Telltale Games\Batman Series\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Telltale Games\Batman The Telltale Series\}}' - - '{{Game data/saves|GOG.com|{{p|userprofile\Documents}}\Telltale Games\Batman Series\}}' -'Batman: Vengeance': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Telltale Games\\Batman The Telltale Series\\}}" + - "{{Game data/config|GOG.com|{{p|userprofile\\Documents}}\\Telltale Games\\Batman Series\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Telltale Games\\Batman The Telltale Series\\}}" + - "{{Game data/saves|GOG.com|{{p|userprofile\\Documents}}\\Telltale Games\\Batman Series\\}}" +"Batman: Vengeance": pageId: 81828 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/saves|Windows|{{p|game}}\SaveGame\}}' -'Bato: Treasures of Tibet': + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\SaveGame\\}}" +"Bato: Treasures of Tibet": pageId: 155454 steam: 1218560 -'Batora: Lost Haven': +"Batora: Lost Haven": gog: 1673878699 gogSide: - - 1674268355 - 1385235026 + - 1674268355 - 2103490191 pageId: 182896 steam: 1506440 templates: - - '{{Game data/config|Windows| %AppData%\Local\Batora\Saved\Config\WindowsNoEditor\GameUserSettings.ini}}' -'Batta Batta: Kampen mod Ultra': + - "{{Game data/config|Windows| %AppData%\\Local\\Batora\\Saved\\Config\\WindowsNoEditor\\GameUserSettings.ini}}" +"Batta Batta: Kampen mod Ultra": pageId: 81207 -'Batta Batta: Kejserens Gave': +"Batta Batta: Kejserens Gave": pageId: 81204 -'Batta Batta: Skurkestreger': +"Batta Batta: Skurkestreger": pageId: 81195 Battalion 1944: pageId: 39733 steam: 489940 templates: - - '{{Game data/config|Windows|{{p|game}}\Battalion\configs}}' + - "{{Game data/config|Windows|{{p|game}}\\Battalion\\configs}}" Batter Burst: pageId: 93122 steam: 848090 @@ -16084,7 +15668,7 @@ Battle Academy: - 287093 - 287094 - 287095 -'Battle Academy 2: Eastern Front': +"Battle Academy 2: Eastern Front": pageId: 37644 steam: 306640 Battle Arena: @@ -16094,7 +15678,7 @@ Battle Arena Toshinden: pageId: 170079 Battle Arena Toshinden 2: pageId: 170080 -'Battle Arena: Euro Wars': +"Battle Arena: Euro Wars": pageId: 121476 steam: 955620 Battle Army: @@ -16105,8 +15689,8 @@ Battle Axe: pageId: 168183 steam: 1167300 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\SOFTWARE\Bitmap Bureau\Battle Axe\}}' - - '{{Game data/saves|Windows|{{P|hkcu}}\SOFTWARE\Bitmap Bureau\Battle Axe\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\SOFTWARE\\Bitmap Bureau\\Battle Axe\\}}" + - "{{Game data/saves|Windows|{{P|hkcu}}\\SOFTWARE\\Bitmap Bureau\\Battle Axe\\}}" Battle Balls: pageId: 128583 steam: 1025900 @@ -16120,8 +15704,8 @@ Battle Battalions: Battle Beast: pageId: 185940 templates: - - '{{Game data/config|Windows|{{p|game}}}}' - - '{{Game data/saves|Windows|{{p|game}}}}' + - "{{Game data/config|Windows|{{p|game}}}}" + - "{{Game data/saves|Windows|{{p|game}}}}" Battle Bolts: pageId: 98172 steam: 606790 @@ -16134,20 +15718,19 @@ Battle Brawlers: Battle Breakers: pageId: 152080 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\WorldExplorers\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\WorldExplorers\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\WorldExplorers\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\WorldExplorers\\Saved\\SaveGames\\}}" Battle Brothers: gog: 1590012242 gogSide: - - 1353924604 - 1138065447 + - 1262476412 - 1353924604 + - 1354029796 - 1439127300 - 1478596696 - - 1262476412 - - 1354029796 - - 2092450271 - 1763378047 + - 2092450271 pageId: 37561 steam: 365360 steamSide: @@ -16160,8 +15743,8 @@ Battle Brothers: - 1361280 - 1910050 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Battle Brothers\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Battle Brothers\savegames\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Battle Brothers\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Battle Brothers\\savegames\\}}" Battle Bruise: pageId: 61606 steam: 618510 @@ -16179,33 +15762,27 @@ Battle Bugs: Battle Carnival: pageId: 90344 steam: 803140 -'Battle Chasers: Nightwar': +"Battle Chasers: Nightwar": gog: 1345854066 gogSide: - 1882677993 pageId: 39432 steam: 451020 templates: - - >- - {{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\Airship - Syndicate\BattleChasersNightwar\user\BCSettings.txt}} - - >- - {{Game data/config|Steam|{{p|userprofile}}\AppData\LocalLow\Airship - Syndicate\BattleChasersNightwar\{{p|uid}}\BCSettings.txt}} - - '{{Game data/config|Linux|{{p|xdgconfighome}}/unity3d/Airship Syndicate/BattleChasersNightwar/}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Airship Syndicate\BattleChasersNightwar\user\saves\}}' - - >- - {{Game data/saves|Steam|{{p|userprofile}}\AppData\LocalLow\Airship - Syndicate\BattleChasersNightwar\{{p|uid}}\saves\}} - - '{{Game data/saves|Linux|{{p|xdgconfighome}}/unity3d/Airship Syndicate/BattleChasersNightwar/{{p|uid}}/saves/}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Airship Syndicate\\BattleChasersNightwar\\user\\BCSettings.txt}}" + - "{{Game data/config|Steam|{{p|userprofile}}\\AppData\\LocalLow\\Airship Syndicate\\BattleChasersNightwar\\{{p|uid}}\\BCSettings.txt}}" + - "{{Game data/config|Linux|{{p|xdgconfighome}}/unity3d/Airship Syndicate/BattleChasersNightwar/}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Airship Syndicate\\BattleChasersNightwar\\user\\saves\\}}" + - "{{Game data/saves|Steam|{{p|userprofile}}\\AppData\\LocalLow\\Airship Syndicate\\BattleChasersNightwar\\{{p|uid}}\\saves\\}}" + - "{{Game data/saves|Linux|{{p|xdgconfighome}}/unity3d/Airship Syndicate/BattleChasersNightwar/{{p|uid}}/saves/}}" Battle Chef Brigade: gog: 1739650883 pageId: 32176 steam: 452570 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\SOFTWARE\Trinket Studios\Battle Chef Brigade\}}' - - '{{Game data/config|Steam|{{p|Steam}}\userdata\{{p|uid}}\452570\remote\BCBConfig.ini}}' - - '{{Game data/saves|Steam|{{p|Steam}}\userdata\{{p|uid}}\452570\remote\*.save}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\SOFTWARE\\Trinket Studios\\Battle Chef Brigade\\}}" + - "{{Game data/config|Steam|{{p|Steam}}\\userdata\\{{p|uid}}\\452570\\remote\\BCBConfig.ini}}" + - "{{Game data/saves|Steam|{{p|Steam}}\\userdata\\{{p|uid}}\\452570\\remote\\*.save}}" Battle Chess: gog: 1207663033 pageId: 8629 @@ -16214,16 +15791,16 @@ Battle Chess 4000: gog: 1207663053 pageId: 8634 steam: 1769220 -'Battle Chess II: Chinese Chess': +"Battle Chess II: Chinese Chess": gog: 1207663043 pageId: 8632 steam: 678620 -'Battle Chess: Game of Kings': +"Battle Chess: Game of Kings": pageId: 45308 steam: 200150 templates: - - '{{Game data/config|Steam|{{P|localappdata}}\Olde Sküül\Battlechess Game of Kings\LocalConfig.ini}}' - - '{{Game data/saves|Steam|{{P|steam}}\userdata\{{P|uid}}\200150\remote\}}' + - "{{Game data/config|Steam|{{P|localappdata}}\\Olde Sküül\\Battlechess Game of Kings\\LocalConfig.ini}}" + - "{{Game data/saves|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\200150\\remote\\}}" Battle Commanders: pageId: 62104 steam: 628880 @@ -16241,25 +15818,25 @@ Battle Engine Aquila: pageId: 25848 steam: 1346400 templates: - - '{{Game data/config|Windows|{{p|game}}\defaultoptions.bea}}' - - '{{Game data/saves|Windows|{{p|game}}\savegames\}}' + - "{{Game data/config|Windows|{{p|game}}\\defaultoptions.bea}}" + - "{{Game data/saves|Windows|{{p|game}}\\savegames\\}}" Battle Fantasia -Revised Edition-: pageId: 26172 steam: 356910 templates: - - '{{Game data/config|Windows|{{P|game}}\setting.cfg}}' - - '{{Game data/saves|Windows|{{P|game}}\save\}}' + - "{{Game data/config|Windows|{{P|game}}\\setting.cfg}}" + - "{{Game data/saves|Windows|{{P|game}}\\save\\}}" Battle Fleet 2: pageId: 49287 steam: 332490 -'Battle Fleet: Ground Assault': +"Battle Fleet: Ground Assault": pageId: 92235 steam: 400350 -'Battle For Crown: Multiplayer': +"Battle For Crown: Multiplayer": pageId: 160840 steam: 1330740 templates: - - '{{Game data/config|Windows|{{p|game}}\etc\mono\config.cfg}}' + - "{{Game data/config|Windows|{{p|game}}\\etc\\mono\\config.cfg}}" Battle For It All: pageId: 105681 steam: 789780 @@ -16287,7 +15864,7 @@ Battle Group 2: pageId: 50071 steam: 277490 templates: - - '{{Game data/saves|Windows|{{p|hkcu}}\Software\Bane Games\Battle Group 2}}' + - "{{Game data/saves|Windows|{{p|hkcu}}\\Software\\Bane Games\\Battle Group 2}}" Battle High 2 A+: pageId: 77905 steam: 755590 @@ -16297,7 +15874,7 @@ Battle Ion: Battle Islands: pageId: 49803 steam: 305260 -'Battle Islands: Commanders': +"Battle Islands: Commanders": pageId: 52590 steam: 445720 Battle Isle: @@ -16307,32 +15884,32 @@ Battle Isle 2: gog: 1207661073 pageId: 13651 templates: - - '{{Game data/config|DOS|{{p|game}}\}}' - - '{{Game data/saves|DOS|{{p|game}}\SAV}}' + - "{{Game data/config|DOS|{{p|game}}\\}}" + - "{{Game data/saves|DOS|{{p|game}}\\SAV}}" Battle Isle 3: gog: 1207661103 pageId: 13653 templates: - - '{{Game data/saves|Windows|{{p|game}}\SDI\SAV}}' -'Battle Isle: The Andosia War': + - "{{Game data/saves|Windows|{{p|game}}\\SDI\\SAV}}" +"Battle Isle: The Andosia War": gog: 1207658954 pageId: 13670 templates: - - '{{Game data/config|Windows|{{p|game}}\save\config}}' - - '{{Game data/saves|Windows|{{p|game}}\save}}' + - "{{Game data/config|Windows|{{p|game}}\\save\\config}}" + - "{{Game data/saves|Windows|{{p|game}}\\save}}" Battle Kaola Rogue: pageId: 127953 steam: 828220 Battle Knights: pageId: 37098 steam: 493000 -'Battle Mage : Card Caster': +"Battle Mage : Card Caster": pageId: 154239 steam: 1172400 Battle Mages: pageId: 51051 steam: 302470 -'Battle Mages: Sign of Darkness': +"Battle Mages: Sign of Darkness": pageId: 49857 steam: 311060 Battle Master: @@ -16356,22 +15933,20 @@ Battle Planet - Judgement Day: pageId: 144987 steam: 1099170 templates: - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\EuroVideo Medien GmbH\Battle Planet - Judgement Day}}' + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\EuroVideo Medien GmbH\\Battle Planet - Judgement Day}}" Battle Princess Madelyn: gog: 1139980926 pageId: 59257 steam: 603930 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Causal Bit Games Inc.\Battle Princess Madelyn\}}' - - >- - {{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Causal Bit Games Inc_\Battle Princess - Madelyn\BattlePrincessMadelyn\savegame.bpm}} -'Battle Ranch: Pigs vs Plants': + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Causal Bit Games Inc.\\Battle Princess Madelyn\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Causal Bit Games Inc_\\Battle Princess Madelyn\\BattlePrincessMadelyn\\savegame.bpm}}" +"Battle Ranch: Pigs vs Plants": pageId: 34616 steam: 340070 templates: - - '{{Game data/config|Windows|{{p|game}}\option.inf}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Playboom Entertainment\Battle Ranch\{{p|uid}}\}}' + - "{{Game data/config|Windows|{{p|game}}\\option.inf}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Playboom Entertainment\\Battle Ranch\\{{p|uid}}\\}}" Battle Rap Simulator: pageId: 75083 steam: 740120 @@ -16380,8 +15955,8 @@ Battle Realms: pageId: 13692 steam: 1025600 templates: - - '{{Game data/config|Windows|{{p|game}}\Battle_Realms.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\Saved Games}}' + - "{{Game data/config|Windows|{{p|game}}\\Battle_Realms.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\Saved Games}}" Battle Riders: pageId: 60942 steam: 418060 @@ -16404,11 +15979,11 @@ Battle Royale Tycoon: pageId: 99562 steam: 851930 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Endless Loop Studios\Battle Royale Tycoon\}}' - - '{{Game data/config|Steam|{{P|steam}}\userdata\{{P|uid}}\851930\remote\options}}' - - '{{Game data/saves|Windows|{{P|game}}\BattleRoyaleTycoon_Data\Saves\}}' - - '{{Game data/saves|Steam|{{P|steam}}\userdata\{{P|uid}}\851930\remote\}}' -'Battle Royale: Survivors': + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Endless Loop Studios\\Battle Royale Tycoon\\}}" + - "{{Game data/config|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\851930\\remote\\options}}" + - "{{Game data/saves|Windows|{{P|game}}\\BattleRoyaleTycoon_Data\\Saves\\}}" + - "{{Game data/saves|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\851930\\remote\\}}" +"Battle Royale: Survivors": pageId: 98328 steam: 840130 Battle Runner: @@ -16447,35 +16022,35 @@ Battle Survive Hentai: Battle Tank Armada: pageId: 50757 steam: 533920 -'Battle Tanks: Legends of World War II': +"Battle Tanks: Legends of World War II": pageId: 127842 steam: 782670 Battle Teams 2: pageId: 178047 steam: 1969870 -'Battle Test: A Nissan Rogue 360° VR Experience': +"Battle Test: A Nissan Rogue 360° VR Experience": pageId: 60217 steam: 605810 Battle Trendaria: pageId: 75005 steam: 739660 -'Battle Worlds: Kronos': +"Battle Worlds: Kronos": gog: 1207660124 pageId: 12082 steam: 237470 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\KING Art\BattleWorldsKronos\}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/KING Art/BattleWorldsKronos/}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\BattleWorldsKronos\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Documents/BattleWorldsKronos/}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/Documents/BattleWorldsKronos/}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\KING Art\\BattleWorldsKronos\\}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/KING Art/BattleWorldsKronos/}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\BattleWorldsKronos\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Documents/BattleWorldsKronos/}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/Documents/BattleWorldsKronos/}}" Battle X: pageId: 105035 steam: 882910 Battle X Arcade: pageId: 121361 steam: 958900 -'Battle Zombie Shooter: Survival of the Dead': +"Battle Zombie Shooter: Survival of the Dead": pageId: 93869 steam: 846430 Battle for Blood - Epic battles within 30 seconds!: @@ -16508,15 +16083,15 @@ Battle for the Sun: Battle of Cubes: pageId: 89565 steam: 819370 -'Battle of Empires: 1914-1918': +"Battle of Empires: 1914-1918": pageId: 47178 steam: 316430 Battle of Europe: pageId: 49625 steam: 321710 templates: - - '{{Game data/config|Windows|{{p|game}}\Storage}}' - - '{{Game data/saves|Windows|{{p|game}}\Storage}}' + - "{{Game data/config|Windows|{{p|game}}\\Storage}}" + - "{{Game data/saves|Windows|{{p|game}}\\Storage}}" Battle of Frigates: pageId: 70325 steam: 711320 @@ -16535,7 +16110,7 @@ Battle of Kings VR: Battle of Red Cliffs VR: pageId: 89240 steam: 716400 -'Battle of Vukovar: Rain of Steel': +"Battle of Vukovar: Rain of Steel": pageId: 184820 steam: 2122210 Battle of Worldviews: @@ -16559,21 +16134,19 @@ Battle vs. Chess: steamSide: - 211070 - 338920 - - 339760 - 339620 - 339630 - - 510150 + - 339760 - 510140 + - 510150 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\battle vs chess\user_config.cfg}}' -'Battle: Los Angeles': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\battle vs chess\\user_config.cfg}}" +"Battle: Los Angeles": pageId: 41004 steam: 61220 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\BattleLA - Saves\UserConfigs\user.cfg|{{p|userprofile\Documents}}\BattleLA Saves\game_local.cfg}} - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\BattleLA Saves\UserConfigs\saves.ps}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\BattleLA Saves\\UserConfigs\\user.cfg|{{p|userprofile\\Documents}}\\BattleLA Saves\\game_local.cfg}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\BattleLA Saves\\UserConfigs\\saves.ps}}" BattleBeasts: pageId: 93078 steam: 830580 @@ -16581,7 +16154,7 @@ BattleBit Remastered: pageId: 65726 steam: 671860 templates: - - '{{Game data/config|Windows|{{P|appdata}}\BattleBitConfig.ini|{{p|hkcu}}\Software\BattleBitDevTeam\BattleBit\}}' + - "{{Game data/config|Windows|{{P|appdata}}\\BattleBitConfig.ini|{{p|hkcu}}\\Software\\BattleBitDevTeam\\BattleBit\\}}" BattleBlade: pageId: 105007 steam: 914190 @@ -16589,31 +16162,31 @@ BattleBlock Theater: pageId: 15734 steam: 238460 templates: - - '{{Game data/config|Steam|{{p|steam}}/userdata/{{p|uid}}/238460/}}' - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/238460/}}' -'BattleCON: Online': + - "{{Game data/config|Steam|{{p|steam}}/userdata/{{p|uid}}/238460/}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/238460/}}" +"BattleCON: Online": pageId: 104205 steam: 792570 BattleCore Arena: pageId: 71729 steam: 689570 -'BattleCry: World At War': +"BattleCry: World At War": pageId: 113986 steam: 932810 -'BattleCubes: Arena': +"BattleCubes: Arena": pageId: 130283 steam: 1036330 BattleGroupVR: pageId: 157315 steam: 1178780 -'BattleLore: Command': +"BattleLore: Command": pageId: 48328 steam: 348400 BattleMoonWars Shirogane: pageId: 164049 templates: - - '{{Game data/config|Windows|{{p|game}}\savedata\config.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\savedata\*.*}}' + - "{{Game data/config|Windows|{{p|game}}\\savedata\\config.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\savedata\\*.*}}" BattleMore: pageId: 121787 steam: 974040 @@ -16626,10 +16199,10 @@ BattleRush: BattleRush 2: pageId: 107992 steam: 871990 -'BattleRush: Ardennes Assault': +"BattleRush: Ardennes Assault": pageId: 123896 steam: 969970 -'BattleSky Brigade: Harpooner': +"BattleSky Brigade: Harpooner": pageId: 148016 BattleSky VR: pageId: 78679 @@ -16659,24 +16232,20 @@ BattleTech: pageId: 62370 steam: 637090 steamSide: - - 1047180 - - 911930 - - 799790 - - 799751 - 799750 + - 799751 + - 799790 + - 911930 + - 1047180 templates: - - '{{Game data/config|Windows|{{p|HKCU}}\Software\Harebrained Schemes\BATTLETECH}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Harebrained Schemes/BATTLETECH}}' - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\Harebrained Schemes\BattleTech\C#\SGS#}}' - - >- - {{Game - data/saves|GOG.com|{{p|localappdata}}\GOG.com\Galaxy\Applications\50593543263669699\Storage\Shared\Files\C#\SGS#}} - - >- - {{Game data/saves|Microsoft - Store|{{p|localappdata}}\Packages\ParadoxInteractive.Battletech-MainGame_zfnrdv2de78ny\SystemAppData\wgs}} - - '{{Game data/saves|OS X|{{p|osxhome}}/Library\Application Support\Harebrained Schemes\BattleTech\C#\SGS#}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Harebrained Schemes/BATTLETECH/C#/SGS#}}' - - '{{Game data/saves|Steam|{{p|Steam}}\userdata\{{p|uid}}\637090\remote\C#\SGS#}}' + - "{{Game data/config|Windows|{{p|HKCU}}\\Software\\Harebrained Schemes\\BATTLETECH}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Harebrained Schemes/BATTLETECH}}" + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\Harebrained Schemes\\BattleTech\\C#\\SGS#}}" + - "{{Game data/saves|GOG.com|{{p|localappdata}}\\GOG.com\\Galaxy\\Applications\\50593543263669699\\Storage\\Shared\\Files\\C#\\SGS#}}" + - "{{Game data/saves|Microsoft Store|{{p|localappdata}}\\Packages\\ParadoxInteractive.Battletech-MainGame_zfnrdv2de78ny\\SystemAppData\\wgs}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library\\Application Support\\Harebrained Schemes\\BattleTech\\C#\\SGS#}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Harebrained Schemes/BATTLETECH/C#/SGS#}}" + - "{{Game data/saves|Steam|{{p|Steam}}\\userdata\\{{p|uid}}\\637090\\remote\\C#\\SGS#}}" BattleTime: pageId: 40327 steam: 509600 @@ -16687,8 +16256,8 @@ Battleborn: pageId: 23011 steam: 394230 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Battleborn\PoplarGame\Config\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Battleborn\PoplarGame\SaveData\{{p|uid}}\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Battleborn\\PoplarGame\\Config\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Battleborn\\PoplarGame\\SaveData\\{{p|uid}}\\}}" Battlecursed: pageId: 39675 steam: 454370 @@ -16696,39 +16265,39 @@ Battlefield 1: pageId: 32669 steam: 1238840 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Battlefield 1\settings\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Battlefield 1\settings\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Battlefield 1\\settings\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Battlefield 1\\settings\\}}" Battlefield 1942: pageId: 446 templates: - - '{{Game data/config|Windows|{{p|game}}\Mods\bf1942\Settings\}}' - - '{{Game data/saves|Windows|{{P|game}}\Mods\bf1942\save\{{P|uid}}\}}' + - "{{Game data/config|Windows|{{p|game}}\\Mods\\bf1942\\Settings\\}}" + - "{{Game data/saves|Windows|{{P|game}}\\Mods\\bf1942\\save\\{{P|uid}}\\}}" Battlefield 2: pageId: 225 steam: 24860 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Battlefield 2\Profiles\{{P|uid}}\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Battlefield 2\\Profiles\\{{P|uid}}\\}}" Battlefield 2042: pageId: 169100 steam: 1517290 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\Battlefield 2042\settings\}}' + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\Battlefield 2042\\settings\\}}" Battlefield 2142: pageId: 4478 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Battlefield 2142\Profiles\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Battlefield 2142\\Profiles\\}}" Battlefield 3: pageId: 102 steam: 1238820 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Battlefield 3\settings\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Battlefield 3\settings\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Battlefield 3\\settings\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Battlefield 3\\settings\\}}" Battlefield 4: pageId: 5924 steam: 1238860 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Battlefield 4\settings\PROFSAVE_profile}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Battlefield 4\settings\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Battlefield 4\\settings\\PROFSAVE_profile}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Battlefield 4\\settings\\}}" Battlefield Alliance: pageId: 66589 steam: 681350 @@ -16739,16 +16308,16 @@ Battlefield Hardline: pageId: 17778 steam: 1238880 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\BFH\settings\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\BFH\settings\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\BFH\\settings\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\BFH\\settings\\}}" Battlefield Heroes: pageId: 73080 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\Battlefield Heroes\}}' + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\Battlefield Heroes\\}}" Battlefield Play4Free: pageId: 22444 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Battlefield Play4Free\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Battlefield Play4Free\\}}" Battlefield Supremacy: pageId: 109842 steam: 916560 @@ -16756,44 +16325,40 @@ Battlefield V: pageId: 94948 steam: 1238810 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Battlefield V\settings\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Battlefield V\settings\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Battlefield V\\settings\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Battlefield V\\settings\\}}" Battlefield Vietnam: pageId: 2006 templates: - - '{{Game data/config|Windows|{{P|game}}\Mods\BfVietnam\settings\Profiles\{{P|uid}}\}}' -'Battlefield: Bad Company 2': + - "{{Game data/config|Windows|{{P|game}}\\Mods\\BfVietnam\\settings\\Profiles\\{{P|uid}}\\}}" +"Battlefield: Bad Company 2": pageId: 59 steam: 24960 steamSide: - - 47880 - 24963 + - 47880 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\BFBC2\settings.ini}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\BFBC2\GameSettings.bin}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\BFBC2\\settings.ini}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\BFBC2\\GameSettings.bin}}" Battlefleet Engineer: pageId: 67225 steam: 685910 -'Battlefleet Gothic: Armada': +"Battlefleet Gothic: Armada": gog: 1641905012 pageId: 23013 steam: 363680 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\BattleFleetGothic\Saved\Config\}}' - - >- - {{Game data/config|Microsoft - Store|{{p|localappdata}}\Packages\FocusHomeInteractiveSA.841C19581B1_4hny5m903y3g0\LocalCache\Local\BattleFleetGothic\Saved\Config\WindowsNoEditor}} - - '{{Game data/saves|Windows|{{p|localappdata}}\BattleFleetGothic\Saved\SaveGames\}}' - - >- - {{Game data/saves|Microsoft - Store|{{p|localappdata}}\Packages\FocusHomeInteractiveSA.841C19581B1_4hny5m903y3g0\LocalCache\Local\BattleFleetGothic\Saved\SaveGames}} -'Battlefleet Gothic: Armada 2': + - "{{Game data/config|Windows|{{p|localappdata}}\\BattleFleetGothic\\Saved\\Config\\}}" + - "{{Game data/config|Microsoft Store|{{p|localappdata}}\\Packages\\FocusHomeInteractiveSA.841C19581B1_4hny5m903y3g0\\LocalCache\\Local\\BattleFleetGothic\\Saved\\Config\\WindowsNoEditor}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\BattleFleetGothic\\Saved\\SaveGames\\}}" + - "{{Game data/saves|Microsoft Store|{{p|localappdata}}\\Packages\\FocusHomeInteractiveSA.841C19581B1_4hny5m903y3g0\\LocalCache\\Local\\BattleFleetGothic\\Saved\\SaveGames}}" +"Battlefleet Gothic: Armada 2": gog: 1471253378 pageId: 95911 steam: 573100 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\BattlefleetGothic2\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\BattlefleetGothic2\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\BattlefleetGothic2\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\BattlefleetGothic2\\Saved\\SaveGames\\}}" Battlegrounds of Eldhelm: pageId: 49474 steam: 329020 @@ -16806,7 +16371,7 @@ Battlegun: Battleheart Legacy: pageId: 149005 steam: 1122490 -'Battleline: Steel Warfare': +"Battleline: Steel Warfare": pageId: 36766 steam: 394740 Battlemage Training: @@ -16819,30 +16384,26 @@ Battlepaths: pageId: 24955 steam: 296050 templates: - - >- - {{Game - data/config|Windows|{{p|userprofile\Documents}}\SavedGames\Battlepaths\BPSaves\Player1\settings.xml|{{p|game}}\keymapping.cfg}} - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\SavedGames\Battlepaths\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\SavedGames\\Battlepaths\\BPSaves\\Player1\\settings.xml|{{p|game}}\\keymapping.cfg}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\SavedGames\\Battlepaths\\}}" Battlepillars Gold Edition: pageId: 38343 steam: 280930 templates: - - '{{Game data/saves|Steam|{{p|userprofile\Documents}}\Battlepillars\SavedGames\}}' -'Battleplan: American Civil War': + - "{{Game data/saves|Steam|{{p|userprofile\\Documents}}\\Battlepillars\\SavedGames\\}}" +"Battleplan: American Civil War": pageId: 49997 steam: 285130 Battlerite: pageId: 39023 steam: 504370 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\SOFTWARE\Stunlock Studios\Battlerite\|{{p|appdata}}\Battlerite\*.json}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\SOFTWARE\\Stunlock Studios\\Battlerite\\|{{p|appdata}}\\Battlerite\\*.json}}" Battlerite Royale: pageId: 112096 steam: 879160 templates: - - >- - {{Game data/config|Windows|{{P|hkcu}}\SOFTWARE\Stunlock Studios\Battlerite - Royale\|{{p|appdata}}\BattleriteRoyale\*.json}} + - "{{Game data/config|Windows|{{P|hkcu}}\\SOFTWARE\\Stunlock Studios\\Battlerite Royale\\|{{p|appdata}}\\BattleriteRoyale\\*.json}}" Battles For Spain: pageId: 141628 steam: 984730 @@ -16870,14 +16431,14 @@ Battleship Lonewolf: Battleship Lonewolf 2: pageId: 82740 steam: 792400 -'Battleship: Official Edition': +"Battleship: Official Edition": pageId: 104015 steam: 893050 -'Battleship: Surface Thunder': +"Battleship: Surface Thunder": pageId: 167187 templates: - - '{{Game data/config|Windows|{{p|game}}\DisplaySettings.ini}}' - - '{{Game data/saves|Windows|{{p|game}}}}' + - "{{Game data/config|Windows|{{p|game}}\\DisplaySettings.ini}}" + - "{{Game data/saves|Windows|{{p|game}}}}" Battleships and Carriers - Pacific War: pageId: 150545 steam: 1166000 @@ -16893,19 +16454,19 @@ Battlesloths: Battlestar Galactica: pageId: 186249 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\My Games\Battlestar Galactica\}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\My Games\Battlestar Galactica\}}' + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\My Games\\Battlestar Galactica\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\My Games\\Battlestar Galactica\\}}" Battlestar Galactica Deadlock: gog: 1797575342 gogSide: - - 1507290543 - - 2014814913 - - 1411605677 - - 1893554753 - - 2058516012 - - 1733288799 - 1158112885 + - 1411605677 + - 1507290543 + - 1733288799 - 1864020232 + - 1893554753 + - 2014814913 + - 2058516012 pageId: 62481 steam: 544610 steamSide: @@ -16918,44 +16479,34 @@ Battlestar Galactica Deadlock: - 1315350 - 1353080 templates: - - >- - {{Game data/config|Windows|{{P|userprofile\Documents}}\Black Lab - Games\BSG\config.txt|{{P|userprofile\Documents}}\Black Lab - Games\BSG\graphics.txt|{{P|userprofile\Documents}}\Black Lab Games\BSG\keymapping.txt|{{P|hkcu}}\Software\Black - Lab Games\BattlestarGalacticaDeadlock\}} - - '{{Game data/saves|GOG.com|{{P|userprofile\Documents}}\Black Lab Games\BSG\}}' - - '{{Game data/saves|Steam|{{P|steam}}\userdata\{{P|uid}}\544610\remote}}' -'Battlestations: Midway': + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\Black Lab Games\\BSG\\config.txt|{{P|userprofile\\Documents}}\\Black Lab Games\\BSG\\graphics.txt|{{P|userprofile\\Documents}}\\Black Lab Games\\BSG\\keymapping.txt|{{P|hkcu}}\\Software\\Black Lab Games\\BattlestarGalacticaDeadlock\\}}" + - "{{Game data/saves|GOG.com|{{P|userprofile\\Documents}}\\Black Lab Games\\BSG\\}}" + - "{{Game data/saves|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\544610\\remote}}" +"Battlestations: Midway": pageId: 18628 steam: 6870 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Battlestations-Midway\save}}' -'Battlestations: Pacific': + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Battlestations-Midway\\save}}" +"Battlestations: Pacific": pageId: 21046 steam: 8170 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\Documents\Battlestations-Pacific\options.txt\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\Documents\Battlestations-Pacific\save\}}' -'Battlestrike: Force of Resistance': + - "{{Game data/config|Windows|{{p|userprofile}}\\Documents\\Battlestations-Pacific\\options.txt\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Documents\\Battlestations-Pacific\\save\\}}" +"Battlestrike: Force of Resistance": pageId: 45113 templates: - - >- - {{Game - data/config|Windows|{{p|game}}\Data\AdditionalOptions.scr|{{p|game}}\Data\AudioSettings.scr|{{p|game}}\Data\UserControls.scr|{{p|game}}\Data\VideoSettings.scr}} - - '{{Game data/saves|Windows|{{p|game}}\Save\}}' -'Battlestrike: Shadow of Stalingrad': + - "{{Game data/config|Windows|{{p|game}}\\Data\\AdditionalOptions.scr|{{p|game}}\\Data\\AudioSettings.scr|{{p|game}}\\Data\\UserControls.scr|{{p|game}}\\Data\\VideoSettings.scr}}" + - "{{Game data/saves|Windows|{{p|game}}\\Save\\}}" +"Battlestrike: Shadow of Stalingrad": pageId: 186339 templates: - - >- - {{Game data/config|Windows|{{P|public}}\Public Documents\City Interactive\Battlestrike Force Of Resistance - 2\}} - - >- - {{Game data/saves|Windows|{{P|public}}\Public Documents\City Interactive\Battlestrike Force Of Resistance - 2\Save}} -'Battlestrike: The Road to Berlin': + - "{{Game data/config|Windows|{{P|public}}\\Public Documents\\City Interactive\\Battlestrike Force Of Resistance 2\\}}" + - "{{Game data/saves|Windows|{{P|public}}\\Public Documents\\City Interactive\\Battlestrike Force Of Resistance 2\\Save}}" +"Battlestrike: The Road to Berlin": pageId: 176542 -'Battlestrike: The Siege': +"Battlestrike: The Siege": pageId: 176538 Battletank LOBA: pageId: 48449 @@ -16964,22 +16515,20 @@ Battletoads: pageId: 162372 steam: 1244950 templates: - - >- - {{Game data/saves|Microsoft - Store|{{p|localappdata}}\Packages\Microsoft.Frogspawn_8wekyb3d8bbwe\SystemAppData\wgs\}} - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\1244950\remote\}}' -'Battlevoid: Harbinger': + - "{{Game data/saves|Microsoft Store|{{p|localappdata}}\\Packages\\Microsoft.Frogspawn_8wekyb3d8bbwe\\SystemAppData\\wgs\\}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\1244950\\remote\\}}" +"Battlevoid: Harbinger": gog: 2047670766 pageId: 34200 steam: 396480 templates: - - '{{Game data/config|Linux|{{p|linuxhome}}/.local/share/Steam/steamapps/common/Battlestation Harbinger/}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.local/share/Steam/steamapps/common/Battlestation Harbinger/}}' -'Battlevoid: Sector Siege': + - "{{Game data/config|Linux|{{p|linuxhome}}/.local/share/Steam/steamapps/common/Battlestation Harbinger/}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.local/share/Steam/steamapps/common/Battlestation Harbinger/}}" +"Battlevoid: Sector Siege": pageId: 74335 steam: 716630 templates: - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Bugbyte\Battlevoid_ Sector Siege\}}' + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Bugbyte\\Battlevoid_ Sector Siege\\}}" Battlewake: pageId: 136991 steam: 814400 @@ -16993,31 +16542,27 @@ Battlezone (2017): pageId: 62395 steam: 312650 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Battlezone\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Battlezone\\}}" Battlezone 98 Redux: gog: 1454067812 pageId: 32644 steam: 301650 templates: - - '{{Game data/config|Windows|{{p|game}}\Ogre.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\save\cpProgress.def}}' -'Battlezone II: Combat Commander': + - "{{Game data/config|Windows|{{p|game}}\\Ogre.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\save\\cpProgress.def}}" +"Battlezone II: Combat Commander": pageId: 14185 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Battlezone II\}}' -'Battlezone: Combat Commander': + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Battlezone II\\}}" +"Battlezone: Combat Commander": gog: 1120387413 pageId: 78784 steam: 624970 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Battlezone Combat - Commander\launch.ini|{{p|userprofile\Documents}}\My Games\Battlezone Combat Commander\UserPrefs}} - - >- - {{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Battlezone Combat - Commander\pilots\|{{p|userprofile\Documents}}\My Games\Battlezone Combat Commander\saved\}} -'Baxter''s Venture: Director''s Cut': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Battlezone Combat Commander\\launch.ini|{{p|userprofile\\Documents}}\\My Games\\Battlezone Combat Commander\\UserPrefs}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Battlezone Combat Commander\\pilots\\|{{p|userprofile\\Documents}}\\My Games\\Battlezone Combat Commander\\saved\\}}" +"Baxter's Venture: Director's Cut": pageId: 47077 steam: 386460 Bayala - the game: @@ -17030,14 +16575,14 @@ Bayonetta: pageId: 61081 steam: 460790 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Bayonetta\}}' - - '{{Game data/saves|Windows|{{p|steam}}\userdata\{{p|uid}}\460790\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Bayonetta\\}}" + - "{{Game data/saves|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\460790\\}}" Bayou Island: pageId: 58140 steam: 597210 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Bayou Island\User Data\Default\Local Storage\}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\Bayou Island\User Data\Default\Local Storage\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\Bayou Island\\User Data\\Default\\Local Storage\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Bayou Island\\User Data\\Default\\Local Storage\\}}" Bazaar: pageId: 43943 steam: 455230 @@ -17047,7 +16592,7 @@ Be A Lord: Be Funny Now!: pageId: 176324 steam: 1644990 -'Be My Mom - maternity simulator, take care of your child': +"Be My Mom - maternity simulator, take care of your child": pageId: 174946 steam: 1312660 Be Quiet!: @@ -17059,7 +16604,7 @@ Be Vigilant!: Be an Archer: pageId: 128163 steam: 1026230 -'Be hate Free: Interactive': +"Be hate Free: Interactive": pageId: 113862 steam: 929080 Be the Hero: @@ -17081,8 +16626,8 @@ Beach Bounce: pageId: 46877 steam: 352010 templates: - - '{{Game data/config|Windows|{{p|game}}\renpy\config.py}}' - - '{{Game data/saves|Windows|{{P|appdata}}\RenPy\beachbounce-140820150356\*.save}}' + - "{{Game data/config|Windows|{{p|game}}\\renpy\\config.py}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\RenPy\\beachbounce-140820150356\\*.save}}" Beach Bowling Dream VR: pageId: 56352 steam: 557960 @@ -17092,8 +16637,8 @@ Beach Buggy Racing 2: pageId: 161524 steam: 1230800 templates: - - '{{Game data/config|Windows|{{P|steam}}\userdata\{{P|uid}}\1230800}}' - - '{{Game data/saves|Windows|{{P|steam}}\userdata\{{P|uid}}\1230800}}' + - "{{Game data/config|Windows|{{P|steam}}\\userdata\\{{P|uid}}\\1230800}}" + - "{{Game data/saves|Windows|{{P|steam}}\\userdata\\{{P|uid}}\\1230800}}" Beach Girls: pageId: 76396 steam: 511280 @@ -17101,21 +16646,21 @@ Beach Head 2000: pageId: 61992 steam: 509610 templates: - - '{{Game data/saves|Windows|{{P|game}}\SAVE\}}' + - "{{Game data/saves|Windows|{{P|game}}\\SAVE\\}}" Beach Head 2002: pageId: 61990 steam: 511660 templates: - - '{{Game data/config|Windows|{{p|game}}\BH2002.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\Save\000000*.sav}}' -'Beach Head: Desert War': + - "{{Game data/config|Windows|{{p|game}}\\BH2002.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\Save\\000000*.sav}}" +"Beach Head: Desert War": pageId: 61988 steam: 614770 Beach Life: pageId: 75389 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/saves|Windows|{{p|game}}\SaveGames}}' + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\SaveGames}}" Beach Pong: pageId: 114344 steam: 939930 @@ -17135,10 +16680,8 @@ Beacon: pageId: 94118 steam: 856610 templates: - - >- - {{Game - data/config|Windows|{{p|userprofile}}\AppData\LocalLow\Monothetic\Beacon\settings_audio.xml|{{p|userprofile}}\AppData\LocalLow\Monothetic\Beacon\settings_input.xml|{{p|userprofile}}\AppData\LocalLow\Monothetic\Beacon\settings_input_mouse.xml}} - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Monothetic\Beacon\savedata.json}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Monothetic\\Beacon\\settings_audio.xml|{{p|userprofile}}\\AppData\\LocalLow\\Monothetic\\Beacon\\settings_input.xml|{{p|userprofile}}\\AppData\\LocalLow\\Monothetic\\Beacon\\settings_input_mouse.xml}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Monothetic\\Beacon\\savedata.json}}" Beacon Pines: gog: 1787971761 pageId: 178172 @@ -17161,14 +16704,14 @@ BeamNG.drive: - BeamNG Drive steam: 284160 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\BeamNG.drive\\settings\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\BeamNG.drive\\\\settings\\}}" Bean Battles: pageId: 104837 steam: 765410 BeanVR: pageId: 62937 steam: 638920 -'Beans: The Coffee Shop Simulator': +"Beans: The Coffee Shop Simulator": pageId: 62485 steam: 549240 Bear Football: @@ -17177,12 +16720,12 @@ Bear Football: Bear Haven Nights: pageId: 44758 steam: 434220 -'Bear Party: Adventure': +"Bear Party: Adventure": pageId: 160344 steam: 1274450 templates: - - '{{Game data/config|Windows|{{p|game}}\bisounew\cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\bisounew\save}}' + - "{{Game data/config|Windows|{{p|game}}\\bisounew\\cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\bisounew\\save}}" Bear Simulator: pageId: 44415 steam: 395850 @@ -17193,26 +16736,24 @@ Bear With Me: pageId: 37602 steam: 492630 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\ExordiumGames\Bear With Me}}' - - '{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/ExordiumGames/Bear With Me/prefs}}' - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\ExordiumGames\Bear With Me\*.save}}' - - '{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/ExordiumGames/Bear With Me/*.save}}' - - '{{Game data/saves|Steam|{{P|steam}}/userdata/{{P|uid}}/492630/remote/*.save}}' -Bear With Me - Collector's Edition: + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\ExordiumGames\\Bear With Me}}" + - "{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/ExordiumGames/Bear With Me/prefs}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\ExordiumGames\\Bear With Me\\*.save}}" + - "{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/ExordiumGames/Bear With Me/*.save}}" + - "{{Game data/saves|Steam|{{P|steam}}/userdata/{{P|uid}}/492630/remote/*.save}}" +"Bear With Me - Collector's Edition": pageId: 81580 steam: 783050 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\ExordiumGames\BearWithMe\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\ExordiumGames\BearWithMe}}' -'Bear With Me: The Lost Robots': + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\ExordiumGames\\BearWithMe\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\ExordiumGames\\BearWithMe}}" +"Bear With Me: The Lost Robots": gog: 1362698324 pageId: 135709 steam: 1050000 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Exordium Games\Bear With Me - The Lost Robots}}' - - >- - {{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Exordium Games\Bear With Me - The Lost - Robots\*.save}} + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Exordium Games\\Bear With Me - The Lost Robots}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Exordium Games\\Bear With Me - The Lost Robots\\*.save}}" Bear and Breakfast: gog: 1587536467 pageId: 179913 @@ -17226,7 +16767,7 @@ Beard & Axe: Beardy the Digger: pageId: 148627 steam: 1144630 -Bears Can't Drift!?: +"Bears Can't Drift!?": pageId: 41743 steam: 338040 Bears in Tanks: @@ -17253,12 +16794,12 @@ Beast Boxing Turbo: Beast Breaker: pageId: 171566 templates: - - '{{Game data/config|Windows|{{p|userprofile\AppData\LocalLow}}\Vodeo Games\Beast Breaker\Settings }}' - - '{{Game data/saves|Windows|{{p|userprofile\AppData\LocalLow}}\Vodeo Games\Beast Breaker\Saves }}' + - "{{Game data/config|Windows|{{p|userprofile\\AppData\\LocalLow}}\\Vodeo Games\\Beast Breaker\\Settings }}" + - "{{Game data/saves|Windows|{{p|userprofile\\AppData\\LocalLow}}\\Vodeo Games\\Beast Breaker\\Saves }}" Beast King: pageId: 125886 steam: 881050 -'Beast Mode: Night of the Werewolf': +"Beast Mode: Night of the Werewolf": pageId: 63797 steam: 655760 Beast Modon: @@ -17270,7 +16811,7 @@ Beast Pets: Beast Quest: pageId: 87415 steam: 707060 -'Beast Wars: Transformers': +"Beast Wars: Transformers": pageId: 80068 Beastiarium: pageId: 54339 @@ -17296,8 +16837,8 @@ Beasts of Maravilla Island: pageId: 169269 steam: 1378020 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\SOFTWARE\Banana Bird Studios\Beasts of Maravilla Island\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Banana Bird Studios\Beasts of Maravilla Island\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\Banana Bird Studios\\Beasts of Maravilla Island\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Banana Bird Studios\\Beasts of Maravilla Island\\}}" Beasts&Chests: pageId: 100086 steam: 864880 @@ -17336,9 +16877,9 @@ Beat Cop: pageId: 36296 steam: 461950 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Pixel Crow\Beat Cop\BeatCopSaves18}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/unity.Pixel Crow.Beat Cop/BeatCopSaves18}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Pixel Crow/Beat Cop/BeatCopSaves18}}' + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Pixel Crow\\Beat Cop\\BeatCopSaves18}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/unity.Pixel Crow.Beat Cop/BeatCopSaves18}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Pixel Crow/Beat Cop/BeatCopSaves18}}" Beat Da Beat: pageId: 44209 steam: 368570 @@ -17350,20 +16891,20 @@ Beat Hazard: pageId: 5347 steam: 49600 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Beat Hazard}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/BeatHazard_Linux2/}}' - - '{{Game data/config|Steam|{{p|steam}}/userdata/{{p|uid}}/49600/remote/}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Beat Hazard}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/BeatHazard_Linux2/}}' - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/49600/remote/}}' + - "{{Game data/config|Windows|{{p|appdata}}\\Beat Hazard}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/BeatHazard_Linux2/}}" + - "{{Game data/config|Steam|{{p|steam}}/userdata/{{p|uid}}/49600/remote/}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Beat Hazard}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/BeatHazard_Linux2/}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/49600/remote/}}" Beat Hazard 2: gog: 1623680822 pageId: 113012 steam: 618740 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\ColdBeamGames\BeatHazard2\settings2.dat}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\ColdBeamGames\BeatHazard2\}}' - - '{{Game data/saves|Steam|{{P|steam}}\userdata\{{P|uid}}\618740\}}' + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\ColdBeamGames\\BeatHazard2\\settings2.dat}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\ColdBeamGames\\BeatHazard2\\}}" + - "{{Game data/saves|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\618740\\}}" Beat Me!: pageId: 151201 steam: 985940 @@ -17387,21 +16928,19 @@ Beat Saber: pageId: 87499 steam: 620980 templates: - - '{{Game data/config|Windows|{{P|userprofile}}\AppData\LocalLow\Hyperbolic Magnetism\Beat Saber\settings.cfg}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Hyperbolic Magnetism\Beat Saber\*.dat}}' -'Beat Stickman: Infinity Clones': + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Hyperbolic Magnetism\\Beat Saber\\settings.cfg}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Hyperbolic Magnetism\\Beat Saber\\*.dat}}" +"Beat Stickman: Infinity Clones": pageId: 122704 steam: 866010 -'Beat Stickman: Infinity Clones - Definitive Edition': +"Beat Stickman: Infinity Clones - Definitive Edition": pageId: 141981 steam: 1105780 Beat The Game: pageId: 53704 steam: 543100 templates: - - >- - {{Game data/config|Windows|{{P|userprofile}}\AppData\LocalLow\Worm Animation - LLC\BeatTheGame\Unity\807cdfa4-d8b2-495f-975e-b0952098c488\Analytics}} + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Worm Animation LLC\\BeatTheGame\\Unity\\807cdfa4-d8b2-495f-975e-b0952098c488\\Analytics}}" Beat Your Meat: pageId: 128537 steam: 1013290 @@ -17417,7 +16956,7 @@ Beat the Rhythm VR: Beat the Song: pageId: 108028 steam: 894340 -'Beat.School: DJ Simulator': +"Beat.School: DJ Simulator": pageId: 150677 steam: 1170180 BeatAim - Rhythm Shooter: @@ -17429,22 +16968,22 @@ BeatBlasters III: BeatShips: pageId: 134837 steam: 1019400 -'Beatbuddy: On Tour': +"Beatbuddy: On Tour": pageId: 35102 steam: 412970 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\SOFTWARE\Threaks\Beatbuddy Music Mix\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Threaks\Beatbuddy Music Mix\PlayerPrefs.txt}}' -'Beatbuddy: Tale of the Guardians': + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\Threaks\\Beatbuddy Music Mix\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Threaks\\Beatbuddy Music Mix\\PlayerPrefs.txt}}" +"Beatbuddy: Tale of the Guardians": gog: 1207662533 pageId: 8591 steam: 231040 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Threaks\Beatbuddy\}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Threaks/Beatbuddy/}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Threaks\Beatbuddy}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Threaks/Beatbuddy/}}' - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{P|uid}}/231040/}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Threaks\\Beatbuddy\\}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Threaks/Beatbuddy/}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Threaks\\Beatbuddy}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Threaks/Beatbuddy/}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{P|uid}}/231040/}}" Beatcrash: pageId: 134988 steam: 1064360 @@ -17462,7 +17001,7 @@ Beats Fever: Beats Of Fury: pageId: 154023 steam: 727450 -'Beats Warrior: Nian': +"Beats Warrior: Nian": pageId: 135946 steam: 1065630 Beautiful Bricks: @@ -17473,8 +17012,8 @@ Beautiful Desolation: pageId: 113654 steam: 912570 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\THE BROTHERHOOD\BEAUTIFUL DESOLATION\config.cfg}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\THE BROTHERHOOD\BEAUTIFUL DESOLATION}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\THE BROTHERHOOD\\BEAUTIFUL DESOLATION\\config.cfg}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\THE BROTHERHOOD\\BEAUTIFUL DESOLATION}}" Beautiful Japanese Scenery - Animated Jigsaws: pageId: 40014 steam: 514090 @@ -17482,14 +17021,14 @@ Beautiful Mystic Defenders: pageId: 174047 steam: 1667130 templates: - - '{{Game data/saves|Windows|{{p|game}}\Saves\*.xml}}' + - "{{Game data/saves|Windows|{{p|game}}\\Saves\\*.xml}}" Beautiful elves: pageId: 150604 steam: 1183590 Beautify Day: pageId: 134512 steam: 1060280 -'Beauty And Violence: Valkyries': +"Beauty And Violence: Valkyries": pageId: 145093 steam: 1146670 Beauty Bounce: @@ -17497,12 +17036,12 @@ Beauty Bounce: steam: 372330 Beauty Factory: pageId: 188920 -'Beauty and the Beast: Be Our Guest': +"Beauty and the Beast: Be Our Guest": pageId: 167213 -'Beauty and the Beast: Hidden Object Fairy Tale. HOG': +"Beauty and the Beast: Hidden Object Fairy Tale. HOG": pageId: 100538 steam: 892550 -'Beauty and the Beast: Magical Ballroom': +"Beauty and the Beast: Magical Ballroom": pageId: 167211 Beavers Be Dammed: pageId: 79314 @@ -17518,7 +17057,7 @@ Becalm: pageId: 125621 steam: 999830 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Colorfiction\Becalm\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Colorfiction\\Becalm\\}}" Became The Hunted: pageId: 113698 steam: 917600 @@ -17527,9 +17066,9 @@ Becastled: pageId: 165878 steam: 1330460 templates: - - '{{Game data/config|Windows|{{P|userprofile\appdata\locallow}}\Mana Potion Studios\Becastled\}}' - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Mana Potion Studios\Becastled\saves\}}' -Because We're Here - Act I: + - "{{Game data/config|Windows|{{P|userprofile\\appdata\\locallow}}\\Mana Potion Studios\\Becastled\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Mana Potion Studios\\Becastled\\saves\\}}" +"Because We're Here - Act I": pageId: 100202 steam: 869350 Beckett: @@ -17548,8 +17087,8 @@ Bedlam (2015): pageId: 46086 steam: 261490 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Vision Games Publishing Ltd\Bedlam}}' - - '{{Game data/saves|Windows|{{p|game}}\Bedlam_Data\save}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Vision Games Publishing Ltd\\Bedlam}}" + - "{{Game data/saves|Windows|{{p|game}}\\Bedlam_Data\\save}}" Bedlamball: pageId: 66480 steam: 667690 @@ -17562,14 +17101,14 @@ Bee Aware!: Bee Movie Game: pageId: 87809 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Activision\Bee Movie Game\Settings\Display}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Activision\\Bee Movie Game\\Settings\\Display}}" Bee Simulator: gog: 1787679429 pageId: 105225 steam: 914750 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\BeBee\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\BeBee\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\BeBee\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\BeBee\\Saved\\SaveGames\\}}" BeeBeeQ: pageId: 92373 steam: 494250 @@ -17601,8 +17140,8 @@ Beep: pageId: 34928 steam: 104200 templates: - - '{{Game data/config|Windows|{{p|game}}\Art\Settings.xml}}' - - '{{Game data/saves|Windows|{{p|game}}\Art\Save\}}' + - "{{Game data/config|Windows|{{p|game}}\\Art\\Settings.xml}}" + - "{{Game data/saves|Windows|{{p|game}}\\Art\\Save\\}}" Beer Bar: pageId: 122020 steam: 976160 @@ -17621,10 +17160,10 @@ Beer and Skittls VR: Beer!: pageId: 81649 steam: 782280 -Beer'em Up: +"Beer'em Up": pageId: 120786 steam: 945880 -'Beer, Babes and Dragons': +"Beer, Babes and Dragons": pageId: 69667 steam: 703000 Beerd leaver: @@ -17648,7 +17187,7 @@ Beetle Hunter: Beetle Uprising: pageId: 67871 steam: 662680 -'Beetlejuice: Bad as Can': +"Beetlejuice: Bad as Can": pageId: 67855 steam: 692630 Before Arriving at the Terminal: @@ -17670,15 +17209,15 @@ Before We Leave: steamSide: - 1568770 templates: - - '{{Game data/config|Windows|{{p|HKCU}}\SOFTWARE\Balancing Monkey Games\Before We Leave\}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Balancing Monkey Games\Before We Leave\}}' + - "{{Game data/config|Windows|{{p|HKCU}}\\SOFTWARE\\Balancing Monkey Games\\Before We Leave\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Balancing Monkey Games\\Before We Leave\\}}" Before Your Eyes: gog: 1276542245 pageId: 167729 steam: 1082430 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Goodbye World\Before Your Eyes\PlayerSettings.json}}' - - '{{Game data/saves|Windows|{{p|hkcu}}\Software\Goodbye World\Before Your Eyes\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Goodbye World\\Before Your Eyes\\PlayerSettings.json}}" + - "{{Game data/saves|Windows|{{p|hkcu}}\\Software\\Goodbye World\\Before Your Eyes\\}}" Before the Blood: pageId: 90378 steam: 824110 @@ -17686,15 +17225,15 @@ Before the Echo: pageId: 17659 steam: 200910 templates: - - '{{Game data/saves|Windows|{{p|Steam}}\userdata\{{p|uid}}\200910\remote\}}' -Beginner'sGame: + - "{{Game data/saves|Windows|{{p|Steam}}\\userdata\\{{p|uid}}\\200910\\remote\\}}" +"Beginner'sGame": pageId: 93052 steam: 836420 Beglitched: pageId: 50871 steam: 461220 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\SOFTWARE\Alec Thomson\Beglitched}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\SOFTWARE\\Alec Thomson\\Beglitched}}" Beglov Style: pageId: 157462 steam: 1212500 @@ -17713,14 +17252,14 @@ Behind the Beyond: Behind the Door: pageId: 67563 steam: 676730 -'Behind the Frame: The Finest Scenery': +"Behind the Frame: The Finest Scenery": gog: 1562677989 pageId: 169527 steam: 1634150 steamSide: - 1697860 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Silver Lining Studio\Behind the Frame\}}' + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Silver Lining Studio\\Behind the Frame\\}}" Behind the Memory: pageId: 55041 steam: 568340 @@ -17734,7 +17273,7 @@ Behold the Kickmen: pageId: 66027 steam: 529440 templates: - - '{{Game data/saves|Windows|{{p|hkcu}}\SOFTWARE\Size Five Games\Behold the Kickmen}}' + - "{{Game data/saves|Windows|{{p|hkcu}}\\SOFTWARE\\Size Five Games\\Behold the Kickmen}}" Behold!: pageId: 52381 steam: 533260 @@ -17743,19 +17282,17 @@ Beholder: pageId: 39319 steam: 475550 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\Warm Lamp - Games\Beholder\GameSettings.ini|{{p|hkcu}}\Software\Warm Lamp Games\Beholder\}} - - '{{Game data/config|Linux|{{p|linuxhome}}/Warm Lamp Games/Beholder/GameSettings.ini}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Warm Lamp Games\Beholder\Saves\}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/Warm Lamp Games/Beholder/Saves/}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Warm Lamp Games\\Beholder\\GameSettings.ini|{{p|hkcu}}\\Software\\Warm Lamp Games\\Beholder\\}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/Warm Lamp Games/Beholder/GameSettings.ini}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Warm Lamp Games\\Beholder\\Saves\\}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/Warm Lamp Games/Beholder/Saves/}}" Beholder 2: gog: 1451215361 pageId: 79430 steam: 761620 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\Warm Lamp Games\Beholder 2\GameSettings.ini}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\Warm Lamp Games\Beholder 2\Saves}}' + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\Warm Lamp Games\\Beholder 2\\GameSettings.ini}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\Warm Lamp Games\\Beholder 2\\Saves}}" Beholder 3: gog: 1465514397 pageId: 172185 @@ -17773,60 +17310,48 @@ Being a DIK: - Being a DIK - Season 1 steam: 1126320 templates: - - >- - {{Game data/config|Windows|{{p|game}}\game\saves\persistent|{{p|appdata}}\RenPy\BeingaDIK-1535311494\persistent - (Patreon version)|{{p|appdata}}\RenPy\BeingaDIK-1535311495\persistent (Steam - version)|{{p|appdata}}\RenPy\BeingaDIK-GOG-1535311497\persistent (GOG version)}} - - >- - {{Game data/config|Linux|{{p|game}}/game/game/saves/persistent|~/.renpy/BeingaDIK-1535311494/persistent (Patreon - version)|~/.renpy/BeingaDIK-1535311495/persistent (Steam version)|~/.renpy/BeingaDIK-GOG-1535311497/persistent - (GOG version)}} - - >- - {{Game data/saves|Windows|{{p|game}}\game\saves|{{p|appdata}}\RenPy\BeingaDIK-1535311494 (Patreon - version)|{{p|appdata}}\RenPy\BeingaDIK-1535311495 (Steam version)|{{p|appdata}}\RenPy\BeingaDIK-GOG-1535311497 - (GOG version)|{{p|appdata}}\RenPy\persistent (Season 2 ending savefiles for Season 3)}} - - >- - {{Game data/saves|Linux|{{p|game}}/game/game/saves|~/.renpy/BeingaDIK-1535311494 (Patreon - version)|~/.renpy/BeingaDIK-1535311495 (Steam version)|~/.renpy/BeingaDIK-GOG-1535311497 (GOG - version)|~/.renpy/persistent (Season 2 ending savefiles for Season 3)}} + - "{{Game data/config|Windows|{{p|game}}\\game\\saves\\persistent|{{p|appdata}}\\RenPy\\BeingaDIK-1535311494\\persistent (Patreon version)|{{p|appdata}}\\RenPy\\BeingaDIK-1535311495\\persistent (Steam version)|{{p|appdata}}\\RenPy\\BeingaDIK-GOG-1535311497\\persistent (GOG version)}}" + - "{{Game data/config|Linux|{{p|game}}/game/game/saves/persistent|~/.renpy/BeingaDIK-1535311494/persistent (Patreon version)|~/.renpy/BeingaDIK-1535311495/persistent (Steam version)|~/.renpy/BeingaDIK-GOG-1535311497/persistent (GOG version)}}" + - "{{Game data/saves|Windows|{{p|game}}\\game\\saves|{{p|appdata}}\\RenPy\\BeingaDIK-1535311494 (Patreon version)|{{p|appdata}}\\RenPy\\BeingaDIK-1535311495 (Steam version)|{{p|appdata}}\\RenPy\\BeingaDIK-GOG-1535311497 (GOG version)|{{p|appdata}}\\RenPy\\persistent (Season 2 ending savefiles for Season 3)}}" + - "{{Game data/saves|Linux|{{p|game}}/game/game/saves|~/.renpy/BeingaDIK-1535311494 (Patreon version)|~/.renpy/BeingaDIK-1535311495 (Steam version)|~/.renpy/BeingaDIK-GOG-1535311497 (GOG version)|~/.renpy/persistent (Season 2 ending savefiles for Season 3)}}" Bejeweled: pageId: 12252 steam: 3350 templates: - - '{{Game data/saves|Windows|{{p|programdata}}\Steam\Bejeweled\userdata\}}' + - "{{Game data/saves|Windows|{{p|programdata}}\\Steam\\Bejeweled\\userdata\\}}" Bejeweled 2: pageId: 12258 steam: 3300 templates: - - '{{Game data/saves|Windows|{{p|programdata}}\Steam\Bejeweled2\users}}' + - "{{Game data/saves|Windows|{{p|programdata}}\\Steam\\Bejeweled2\\users}}" Bejeweled 3: pageId: 19940 steam: 78000 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\SOFTWARE\PopCap\Bejeweled3}}' - - '{{Game data/config|Steam|{{p|hkcu}}\SOFTWARE\SteamPopCap\Bejeweled3}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\PopCap Games\Bejeweled3\users\}}' - - '{{Game data/saves|Steam|{{p|localappdata}}\Steam\Bejeweled3\users\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\PopCap\\Bejeweled3}}" + - "{{Game data/config|Steam|{{p|hkcu}}\\SOFTWARE\\SteamPopCap\\Bejeweled3}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\PopCap Games\\Bejeweled3\\users\\}}" + - "{{Game data/saves|Steam|{{p|localappdata}}\\Steam\\Bejeweled3\\users\\}}" Bejeweled LIVE: pageId: 157594 Bejeweled Twist: pageId: 35017 steam: 3560 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\SOFTWARE\PopCap\BejeweledTwist\}}' - - '{{Game data/config|Steam|{{p|hkcu}}\SOFTWARE\Steam\BejeweledTwist\}}' - - '{{Game data/saves|Windows|{{p|programdata}}\PopCap Games\BejeweledTwist\users\}}' - - '{{Game data/saves|Steam|{{p|programdata}}\Steam\BejeweledTwist\users\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\PopCap\\BejeweledTwist\\}}" + - "{{Game data/config|Steam|{{p|hkcu}}\\SOFTWARE\\Steam\\BejeweledTwist\\}}" + - "{{Game data/saves|Windows|{{p|programdata}}\\PopCap Games\\BejeweledTwist\\users\\}}" + - "{{Game data/saves|Steam|{{p|programdata}}\\Steam\\BejeweledTwist\\users\\}}" Bekkouame: pageId: 90307 steam: 809250 Beku: pageId: 177098 steam: 1694610 -'Believe: Paranormal Psychic Adventure': +"Believe: Paranormal Psychic Adventure": pageId: 135865 steam: 964760 -'Belko VR: An Escape Room Experiment': +"Belko VR: An Escape Room Experiment": pageId: 58535 steam: 600140 Bell Ringer: @@ -17836,7 +17361,7 @@ Belladonna: pageId: 48559 steam: 351340 templates: - - '{{Game data/saves|Windows|{{P|localappdata}}\Neckbolt\Belladonna\}}' + - "{{Game data/saves|Windows|{{P|localappdata}}\\Neckbolt\\Belladonna\\}}" Belly Dance Girl: pageId: 153214 steam: 1184090 @@ -17847,8 +17372,8 @@ Below: pageId: 17733 steam: 250680 templates: - - '{{Game data/config|Windows|{{P|steam}}\userdata\{{P|uid}}\250680\local\save\Settings\usersettings.lua}}' - - '{{Game data/saves|Windows|{{P|steam}}\userdata\{{P|uid}}\250680\remote\}}' + - "{{Game data/config|Windows|{{P|steam}}\\userdata\\{{P|uid}}\\250680\\local\\save\\Settings\\usersettings.lua}}" + - "{{Game data/saves|Windows|{{P|steam}}\\userdata\\{{P|uid}}\\250680\\remote\\}}" Below Kryll: pageId: 46528 steam: 365870 @@ -17868,24 +17393,24 @@ Ben 10: Ben 10 Game Generator 5D: pageId: 44213 steam: 437510 -'Ben 10: Power Trip': +"Ben 10: Power Trip": pageId: 190265 Ben The Exorcist: pageId: 64777 steam: 654020 -'Ben There, Dan That!': +"Ben There, Dan That!": gog: 1207662983 pageId: 13310 steam: 37420 templates: - - '{{Game data/config|Windows|{{P|game}}\acsetup.cfg}}' - - '{{Game data/saves|Windows|{{P|game}}\agssave.*}}' + - "{{Game data/config|Windows|{{P|game}}\\acsetup.cfg}}" + - "{{Game data/saves|Windows|{{P|game}}\\agssave.*}}" Ben and Ed: pageId: 34683 steam: 395200 templates: - - '{{Game data/config|Windows|{{p|game}}\BenAndEd\Saved\SaveGames\settings.sav}}' - - '{{Game data/saves|Windows|{{p|game}}\BenAndEd\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{p|game}}\\BenAndEd\\Saved\\SaveGames\\settings.sav}}" + - "{{Game data/saves|Windows|{{p|game}}\\BenAndEd\\Saved\\SaveGames\\}}" Ben and Ed - Blood Party: pageId: 62302 steam: 500260 @@ -17895,21 +17420,19 @@ Bendy and the Dark Revival: - Awaking Godsoul steam: 1063660 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Joey Drew Studios\Bendy and the Dark Revival\}}' - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\Joey Drew Studios\Bendy and the Dark Revival\data\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Joey Drew Studios\\Bendy and the Dark Revival\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\Joey Drew Studios\\Bendy and the Dark Revival\\data\\}}" Bendy and the Ink Machine: pageId: 61608 steam: 622650 steamSide: - - 622661 - 622660 + - 622661 - 730000 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Joey Drew Studios}}' - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\Joey Drew Studios\Bendy and the Ink Machine\Saves\}}' - - >- - {{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/unity.TheMeatly Games.Bendy and the Ink - Machine/Saves/}} + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Joey Drew Studios}}" + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\Joey Drew Studios\\Bendy and the Ink Machine\\Saves\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/unity.TheMeatly Games.Bendy and the Ink Machine/Saves/}}" Beneath The Cherry Trees: pageId: 51421 steam: 531200 @@ -17917,17 +17440,17 @@ Beneath The Surface: pageId: 121673 steam: 792050 templates: - - '{{Game data/saves|Windows| Computer\HKEY_CURRENT_USER\SOFTWARE\Carla 51 Games\Beneath The Surface}}' + - "{{Game data/saves|Windows| Computer\\HKEY_CURRENT_USER\\SOFTWARE\\Carla 51 Games\\Beneath The Surface}}" Beneath a Steel Sky: gog: 1207658695 pageId: 7597 steam: 1368340 templates: - - '{{Game data/config|DOS|{{p|game}}\config.dat}}' - - '{{Game data/config|Windows|{{p|game}}\beneath.ini}}' - - '{{Game data/saves|DOS|{{p|game}}\}}' - - '{{Game data/saves|Windows|{{p|game}}\SKY-VM.***}}' - - '{{Game data/saves|OS X|{{P|osxhome}}/Documents/ScummVM Savegames/Beneath a Steel Sky}}' + - "{{Game data/config|DOS|{{p|game}}\\config.dat}}" + - "{{Game data/config|Windows|{{p|game}}\\beneath.ini}}" + - "{{Game data/saves|DOS|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\SKY-VM.***}}" + - "{{Game data/saves|OS X|{{P|osxhome}}/Documents/ScummVM Savegames/Beneath a Steel Sky}}" Beneath steel clouds: pageId: 155658 steam: 1198260 @@ -17940,24 +17463,24 @@ Benji Challenges: Beowulf: pageId: 87631 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\Ubisoft\Beowulf\}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\Ubisoft\Beowulf\}}' -'Bepuzzled Jigsaw Puzzle: Animals 103 Puzzles': + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\Ubisoft\\Beowulf\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\Ubisoft\\Beowulf\\}}" +"Bepuzzled Jigsaw Puzzle: Animals 103 Puzzles": pageId: 139096 steam: 1103050 -'Bepuzzled Jigsaw Puzzle: Aquatic': +"Bepuzzled Jigsaw Puzzle: Aquatic": pageId: 140962 steam: 1108040 -'Bepuzzled Jigsaw Puzzle: Japan': +"Bepuzzled Jigsaw Puzzle: Japan": pageId: 141141 steam: 1103070 -'Bepuzzled Jigsaw Puzzle: Nature': +"Bepuzzled Jigsaw Puzzle: Nature": pageId: 141139 steam: 1103080 -'Bepuzzled Jigsaw Puzzle: Paradise': +"Bepuzzled Jigsaw Puzzle: Paradise": pageId: 140995 steam: 1108030 -'Bepuzzled Jigsaw Puzzle: Sweets': +"Bepuzzled Jigsaw Puzzle: Sweets": pageId: 140993 steam: 1108020 Bepuzzled Kittens Jigsaw Puzzle: @@ -17987,13 +17510,13 @@ Bermuda: Bermuda - Lost Survival: pageId: 64894 steam: 654690 -Bernackels' Shoggoth: +"Bernackels' Shoggoth": pageId: 75660 steam: 737690 Bernie Needs Love: pageId: 46781 steam: 373120 -Bernie's Nightmare: +"Bernie's Nightmare": pageId: 102659 steam: 894390 Berry Pop Match: @@ -18009,8 +17532,8 @@ Berserk and the Band of the Hawk: pageId: 57995 steam: 502280 templates: - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\KoeiTecmo\BERSERK and the Band of the Hawk\SAVEDATA\}}' -'Berserk: The Cataclysm': + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\KoeiTecmo\\BERSERK and the Band of the Hawk\\SAVEDATA\\}}" +"Berserk: The Cataclysm": pageId: 41535 steam: 486160 Besiege: @@ -18018,13 +17541,11 @@ Besiege: pageId: 22441 steam: 346010 templates: - - '{{Game data/config|Windows|{{p|game}}\Besiege_Data\Config.txt}}' - - '{{Game data/config|OS X|{{p|game}}/Besiege.app/Contents/Config.txt}}' - - '{{Game data/config|Linux|{{p|game}}/Besiege_Data/Config.txt}}' - - '{{Game data/saves|Windows|{{p|game}}\Besiege_Data\SavedMachines\|{{p|game}}\Besiege_Data\CompletedLevels.txt}}' - - >- - {{Game data/saves|OS - X|{{p|game}}/Besiege.app/Contents/SavedMachines/|{{p|game}}/Besiege.app/Contents/CompletedLevels.txt}} + - "{{Game data/config|Windows|{{p|game}}\\Besiege_Data\\Config.txt}}" + - "{{Game data/config|OS X|{{p|game}}/Besiege.app/Contents/Config.txt}}" + - "{{Game data/config|Linux|{{p|game}}/Besiege_Data/Config.txt}}" + - "{{Game data/saves|Windows|{{p|game}}\\Besiege_Data\\SavedMachines\\|{{p|game}}\\Besiege_Data\\CompletedLevels.txt}}" + - "{{Game data/saves|OS X|{{p|game}}/Besiege.app/Contents/SavedMachines/|{{p|game}}/Besiege.app/Contents/CompletedLevels.txt}}" Best Buds vs Bad Guys: pageId: 39151 steam: 486130 @@ -18062,22 +17583,22 @@ Best of Us: Bestiary of Sigillum: pageId: 125821 steam: 922530 -'Bestseller: Curse of the Golden Owl': +"Bestseller: Curse of the Golden Owl": pageId: 59377 steam: 591090 Bet on Man: pageId: 127249 steam: 1009870 -'Bet on Soldier: Black-out Saigon': +"Bet on Soldier: Black-out Saigon": pageId: 134017 -'Bet on Soldier: Blood Sport': +"Bet on Soldier: Blood Sport": pageId: 49171 renamedFrom: - - 'Bet On Soldier: Blood Sport' - - 'Bet on Soldier: Blood Sport' - - 'Bet On Soldier: Blood Sport' + - "Bet On Soldier: Blood Sport" + - "Bet on Soldier: Blood Sport" + - "Bet On Soldier: Blood Sport" steam: 335320 -'Bet on Soldier: Blood of Sahara': +"Bet on Soldier: Blood of Sahara": pageId: 134014 Beta Runner: pageId: 65463 @@ -18089,9 +17610,9 @@ Betrayal at Club Low: pageId: 181472 steam: 1885750 templates: - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Cosmo D Studios\Betrayal At Club Low\}}' - - '{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/BetrayalAtClubLow/}}' - - '{{Game data/saves|Linux|{{P|linuxhome}}/.config/unity3d/Cosmo D Studios/Betrayal At Club Low/}}' + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Cosmo D Studios\\Betrayal At Club Low\\}}" + - "{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/BetrayalAtClubLow/}}" + - "{{Game data/saves|Linux|{{P|linuxhome}}/.config/unity3d/Cosmo D Studios/Betrayal At Club Low/}}" Betrayal at Krondor: gog: 1207660953 gogSide: @@ -18099,8 +17620,8 @@ Betrayal at Krondor: pageId: 19572 steam: 559640 templates: - - '{{Game data/config|DOS|{{P|game}}\KRONDOR.CFG}}' - - '{{Game data/saves|DOS|{{P|game}}\GAMES\}}' + - "{{Game data/config|DOS|{{P|game}}\\KRONDOR.CFG}}" + - "{{Game data/saves|DOS|{{P|game}}\\GAMES\\}}" Betrayal in Antara: gog: 1207660983 gogSide: @@ -18108,14 +17629,14 @@ Betrayal in Antara: pageId: 19571 steam: 559640 templates: - - '{{Game data/saves|Windows|{{P|game}}\SAVE\|{{p|appdata}}\Sierra\Betrayal in Antara\}}' + - "{{Game data/saves|Windows|{{P|game}}\\SAVE\\|{{p|appdata}}\\Sierra\\Betrayal in Antara\\}}" Betrayer: gog: 1090734724 pageId: 9456 steam: 243120 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Betrayer\UDKGame\Config\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Betrayer\Binaries\Win32\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Betrayer\\UDKGame\\Config\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Betrayer\\Binaries\\Win32\\}}" Better Late Than DEAD: pageId: 44319 steam: 352950 @@ -18130,8 +17651,8 @@ Between Me and The Night: pageId: 44854 steam: 285070 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Raindance LX\Between me and the night\}}' - - '{{Game data/saves|Windows|{{p|hkcu}}\Software\Raindance LX\Between me and the night\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Raindance LX\\Between me and the night\\}}" + - "{{Game data/saves|Windows|{{p|hkcu}}\\Software\\Raindance LX\\Between me and the night\\}}" Between Planets: pageId: 141728 steam: 696600 @@ -18139,8 +17660,8 @@ Between Two Castles - Digital Edition: pageId: 150602 steam: 1158500 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\BetweenTwoCastles\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\BetweenTwoCastles\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\BetweenTwoCastles\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\BetweenTwoCastles\\Saved\\SaveGames\\}}" Between the Stars: gog: 1690645681 pageId: 74608 @@ -18149,10 +17670,8 @@ Between the Stars: - 928050 - 1092490 templates: - - >- - {{Game data/config|Windows|{{p|HKCU}}\Software\Isolated Games\Between the - Stars|{{p|USERPROFILE}}\AppData\LocalLow\Isolated Games\Between the Stars\SavedData}} - - '{{Game data/saves|Windows|{{p|USERPROFILE}}\AppData\LocalLow\Isolated Games\Between the Stars\SavedData}}' + - "{{Game data/config|Windows|{{p|HKCU}}\\Software\\Isolated Games\\Between the Stars|{{p|USERPROFILE}}\\AppData\\LocalLow\\Isolated Games\\Between the Stars\\SavedData}}" + - "{{Game data/saves|Windows|{{p|USERPROFILE}}\\AppData\\LocalLow\\Isolated Games\\Between the Stars\\SavedData}}" Betweenside: pageId: 94687 steam: 860600 @@ -18160,7 +17679,7 @@ Beware Planet Earth: pageId: 27427 steam: 267340 templates: - - '{{Game data/saves|Windows|{{p|localappdata}}\Lightmare Studio\BewarePlanetEarth\Saves\}}' + - "{{Game data/saves|Windows|{{p|localappdata}}\\Lightmare Studio\\BewarePlanetEarth\\Saves\\}}" Beware of Trains: pageId: 102507 steam: 894270 @@ -18176,19 +17695,19 @@ Bewitched game: Beyond: pageId: 121149 steam: 947830 -Beyond Arm's Reach: +"Beyond Arm's Reach": pageId: 70709 steam: 713360 Beyond Blue: pageId: 100746 steam: 883360 templates: - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\E-Line Media\Beyond Blue\Saves}}' + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\E-Line Media\\Beyond Blue\\Saves}}" Beyond Castle Wolfenstein: pageId: 17602 templates: - - '{{Game data/saves|PC booter|{{p|game}}\BWC.COM}}' - - '{{Game data/saves|DOS|{{p|game}}\SAVEGAME.BCW}}' + - "{{Game data/saves|PC booter|{{p|game}}\\BWC.COM}}" + - "{{Game data/saves|DOS|{{p|game}}\\SAVEGAME.BCW}}" Beyond Clouds: pageId: 73947 steam: 732970 @@ -18196,8 +17715,8 @@ Beyond Contact: pageId: 184947 steam: 877010 templates: - - '{{Game data/config|Windows|{{p|steam}}\userdata\{{p|uid}}\877010\remote\}}' - - '{{Game data/saves|Windows|{{p|steam}}\userdata\{{p|uid}}\877010\remote\}}' + - "{{Game data/config|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\877010\\remote\\}}" + - "{{Game data/saves|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\877010\\remote\\}}" Beyond Critical: pageId: 153818 steam: 960630 @@ -18212,8 +17731,8 @@ Beyond Divinity: pageId: 15624 steam: 219760 templates: - - '{{Game data/config|Windows|{{p|game}}\config.div}}' - - '{{Game data/saves|Windows|{{p|game}}\savegames}}' + - "{{Game data/config|Windows|{{p|game}}\\config.div}}" + - "{{Game data/saves|Windows|{{p|game}}\\savegames}}" Beyond Eden: pageId: 63855 steam: 632800 @@ -18226,15 +17745,15 @@ Beyond Enemy Lines 2: Beyond Enemy Lines 2 Online: pageId: 157001 steam: 1165720 -'Beyond Enemy Lines: Operation Arctic Hawk': +"Beyond Enemy Lines: Operation Arctic Hawk": pageId: 129714 steam: 1022770 Beyond Eyes: pageId: 35465 steam: 356050 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\SOFTWARE\Team17\BeyondEyes\}}' - - '{{Game data/saves|Windows|{{p|game}}\Saves\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\Team17\\BeyondEyes\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\Saves\\}}" Beyond Flesh and Blood: pageId: 42784 steam: 391550 @@ -18243,8 +17762,8 @@ Beyond Good & Evil: pageId: 2862 steam: 15130 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Ubisoft\Beyond Good & Evil\}}' - - '{{Game data/saves|Windows|{{p|game}}\sally.idx|{{p|game}}\slot*.sav}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Ubisoft\\Beyond Good & Evil\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\sally.idx|{{p|game}}\\slot*.sav}}" Beyond Good & Evil 2: pageId: 97553 Beyond Gravity: @@ -18256,21 +17775,17 @@ Beyond Magic: Beyond Minimalism: pageId: 95319 steam: 861320 -'Beyond Normandy: Assignment Berlin': +"Beyond Normandy: Assignment Berlin": pageId: 89028 templates: - - '{{Game data/config|Windows|{{p|game}}\options.txt}}' - - '{{Game data/saves|Windows|{{p|game}}\Savegames}}' + - "{{Game data/config|Windows|{{p|game}}\\options.txt}}" + - "{{Game data/saves|Windows|{{p|game}}\\Savegames}}" Beyond Oasis: pageId: 30866 steam: 211200 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\SEGA Mega Drive - Classics\setup.dat|{{p|userprofile\Documents}}\SEGA Genesis Classics\setup.dat}} - - >- - {{Game data/saves|Windows|{{p|userprofile\Documents}}\SEGA Mega Drive - Classics\0048\|{{p|userprofile\Documents}}\SEGA Genesis Classics\0048\}} + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\SEGA Mega Drive Classics\\setup.dat|{{p|userprofile\\Documents}}\\SEGA Genesis Classics\\setup.dat}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\SEGA Mega Drive Classics\\0048\\|{{p|userprofile\\Documents}}\\SEGA Genesis Classics\\0048\\}}" Beyond Power VR: pageId: 40329 steam: 529820 @@ -18287,8 +17802,8 @@ Beyond Sol: pageId: 32015 steam: 348490 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\BeyondSol\Game.prefs}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\BeyondSol\Save\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\BeyondSol\\Game.prefs}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\BeyondSol\\Save\\}}" Beyond Space: pageId: 50037 steam: 297100 @@ -18312,7 +17827,7 @@ Beyond Zork: pageId: 7880 steam: 570580 templates: - - '{{Game data/saves|DOS|{{p|game}}\SAVE}}' + - "{{Game data/saves|DOS|{{p|game}}\\SAVE}}" Beyond a Steel Sky: gog: 1775031253 pageId: 133543 @@ -18321,14 +17836,12 @@ Beyond a Steel Sky: - 1368360 - 1368370 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\BASS2\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/config|OS X|{{P|osxhome}}/Library/Containers/BASS2/Data/Library/Preferences/BASS2/MacNoEditor/}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/Epic/BASS2/Saved/Config/LinuxNoEditor/}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\BASS2\Saved\SaveGames\}}' - - >- - {{Game data/saves|OS X|{{P|osxhome}}/Library/Containers/BASS2/Data/Library/Application - Support/Epic/BASS2/Saved/SaveGames}} - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/Epic/BASS2/Saved/SaveGames/}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\BASS2\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/config|OS X|{{P|osxhome}}/Library/Containers/BASS2/Data/Library/Preferences/BASS2/MacNoEditor/}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/Epic/BASS2/Saved/Config/LinuxNoEditor/}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\BASS2\\Saved\\SaveGames\\}}" + - "{{Game data/saves|OS X|{{P|osxhome}}/Library/Containers/BASS2/Data/Library/Application Support/Epic/BASS2/Saved/SaveGames}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/Epic/BASS2/Saved/SaveGames/}}" Beyond a Total Loss: pageId: 135653 steam: 1058470 @@ -18348,10 +17861,10 @@ Beyond the Edge of Owlsgard: Beyond the Horizon: pageId: 66430 steam: 666850 -'Beyond the Invisible: Darkness Came': +"Beyond the Invisible: Darkness Came": pageId: 87093 steam: 772670 -'Beyond the Invisible: Evening': +"Beyond the Invisible: Evening": pageId: 64206 steam: 650880 Beyond the Mind: @@ -18388,19 +17901,19 @@ Beyond the Wire: Beyond the Wizard: pageId: 139081 steam: 1095680 -'Beyond: Light Advent': +"Beyond: Light Advent": pageId: 61644 renamedFrom: - - 'Beyond: Light Advent Collector''s Edition' + - "Beyond: Light Advent Collector's Edition" steam: 629080 -'Beyond: Two Souls': +"Beyond: Two Souls": gog: 1986644574 pageId: 131300 steam: 960990 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\Quantic Dream\Beyond Two Souls\Save\Options\}}' - - '{{Game data/saves|Epic Games Store|{{P|userprofile\Documents}}\Quantic Dream\Beyond Two Souls\Save\}}' - - '{{Game data/saves|Steam|{{P|userprofile}}\Saved Games\Beyond Two Souls Steam\Save\}}' + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\Quantic Dream\\Beyond Two Souls\\Save\\Options\\}}" + - "{{Game data/saves|Epic Games Store|{{P|userprofile\\Documents}}\\Quantic Dream\\Beyond Two Souls\\Save\\}}" + - "{{Game data/saves|Steam|{{P|userprofile}}\\Saved Games\\Beyond Two Souls Steam\\Save\\}}" Bezier: pageId: 44323 steam: 381320 @@ -18419,10 +17932,10 @@ BiT Evolution: Biathlon Battle VR: pageId: 152030 steam: 1004200 -Biba's Adventures: +"Biba's Adventures": pageId: 156551 renamedFrom: - - Biba`s Adventures + - "Biba`s Adventures" steam: 1197230 Bibi & Tina - Adventures with Horses: pageId: 121665 @@ -18441,22 +17954,22 @@ Bibots: pageId: 174321 steam: 1610500 templates: - - '{{Game data/config|Windows|{{p|userprofile\appdata\locallow}}\SquareSquid\Bibots}}' - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\SquareSquid\Bibots}}' + - "{{Game data/config|Windows|{{p|userprofile\\appdata\\locallow}}\\SquareSquid\\Bibots}}" + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\SquareSquid\\Bibots}}" Bibou: pageId: 43283 steam: 464760 Bicyclism EP: pageId: 53075 steam: 507030 -Bientôt l'été: +"Bientôt l'été": pageId: 30018 steam: 229600 templates: - - "{{Game data/config|Windows|{{p|HKCU}}\\Software\\Tale of Tales\\BientoÌ‚t l'eÌ\x81teÌ\x81\\}}" - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Preferences/unity.Tale of Tales.Bientôt l’été.plist}}' - - "{{Game data/saves|Windows|{{p|HKCU}}\\Software\\Tale of Tales\\BientoÌ‚t l'eÌ\x81teÌ\x81\\}}" - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Preferences/unity.Tale of Tales.Bientôt l’été.plist}}' + - "{{Game data/config|Windows|{{p|HKCU}}\\Software\\Tale of Tales\\BientoÌ‚t l'été\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Preferences/unity.Tale of Tales.Bientôt l’été.plist}}" + - "{{Game data/saves|Windows|{{p|HKCU}}\\Software\\Tale of Tales\\BientoÌ‚t l'été\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Preferences/unity.Tale of Tales.Bientôt l’été.plist}}" Bierzerkers: pageId: 26325 steam: 348460 @@ -18470,8 +17983,8 @@ Big Ambitions: pageId: 186259 steam: 1331550 templates: - - '{{Game data/config|Windows|{{P|userprofile\appdata\locallow}}\Hovgaard Games\Big Ambitions}}' - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Hovgaard Games\Big Ambitions\SaveGames}}' + - "{{Game data/config|Windows|{{P|userprofile\\appdata\\locallow}}\\Hovgaard Games\\Big Ambitions}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Hovgaard Games\\Big Ambitions\\SaveGames}}" Big Bad Futanari Wolf: pageId: 184354 steam: 2152100 @@ -18497,12 +18010,8 @@ Big Brain Wolf: pageId: 41206 steam: 35600 templates: - - >- - {{Game data/config|Windows|{{P|appdata}}\Macromedia\Flash - Player\#SharedObjects\{{P|uid}}\localhost\savedGameBBW.sol}} - - >- - {{Game data/saves|Windows|{{P|appdata}}\Macromedia\Flash - Player\#SharedObjects\{{P|uid}}\localhost\savedGameBBW.sol}} + - "{{Game data/config|Windows|{{P|appdata}}\\Macromedia\\Flash Player\\#SharedObjects\\{{P|uid}}\\localhost\\savedGameBBW.sol}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\Macromedia\\Flash Player\\#SharedObjects\\{{P|uid}}\\localhost\\savedGameBBW.sol}}" Big Breezy Boat: pageId: 121411 steam: 958790 @@ -18511,7 +18020,7 @@ Big Buck Hunter Arcade: steam: 455700 Big Buck Hunter Pro Adventure: pageId: 169710 -'Big Crown: Showdown': +"Big Crown: Showdown": pageId: 92355 steam: 793360 Big Dick: @@ -18523,7 +18032,7 @@ Big Dipper: Big Farm Story: pageId: 177501 steam: 1329510 -'Big Farm: Mobile Harvest': +"Big Farm: Mobile Harvest": pageId: 177497 Big Fat Neighbor: pageId: 81016 @@ -18541,37 +18050,37 @@ Big Money!: pageId: 12244 steam: 3360 templates: - - '{{Game data/saves|Windows|{{p|game}}\savegame.dat}}' + - "{{Game data/saves|Windows|{{p|game}}\\savegame.dat}}" Big Mutha Truckers: pageId: 31727 templates: - - '{{Game data/saves|Windows|{{p|game}}\Saves}}' + - "{{Game data/saves|Windows|{{p|game}}\\Saves}}" Big Mutha Truckers 2: pageId: 73603 steam: 1377920 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Big Mutha Truckers 2\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Big Mutha Truckers 2\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Big Mutha Truckers 2\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Big Mutha Truckers 2\\}}" Big Pharma: gog: 1440407371 pageId: 34326 steam: 344850 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Big Pharma\Saves\global.data}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Big Pharma/Saves/global.data}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/Big Pharma/Saves/global.data}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Big Pharma\Saves}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Big Pharma/Saves}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/Big Pharma/Saves}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Big Pharma\\Saves\\global.data}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Big Pharma/Saves/global.data}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/Big Pharma/Saves/global.data}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Big Pharma\\Saves}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Big Pharma/Saves}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/Big Pharma/Saves}}" Big Pogo Man: pageId: 98558 steam: 876310 -'Big Red Hood: Halloween': +"Big Red Hood: Halloween": pageId: 148527 steam: 1173270 -'Big Rigs: Over the Road Racing': +"Big Rigs: Over the Road Racing": pageId: 367 -'Big Rumble Boxing: Creed Champions': +"Big Rumble Boxing: Creed Champions": pageId: 170036 steam: 1278170 Big Scale Racing: @@ -18605,9 +18114,9 @@ Bigfoot: - Finding Bigfoot steam: 509980 templates: - - '{{Game data/config|Windows|{{p|LOCALAPPDATA}}\Bigfoot\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{p|LOCALAPPDATA}}\Bigfoot\Saved\SaveGames\}}' -'Bigfoot: The Secret Life': + - "{{Game data/config|Windows|{{p|LOCALAPPDATA}}\\Bigfoot\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{p|LOCALAPPDATA}}\\Bigfoot\\Saved\\SaveGames\\}}" +"Bigfoot: The Secret Life": pageId: 136469 steam: 1083360 Bigger Guns: @@ -18616,24 +18125,24 @@ Bigger Guns: Bighead Runner: pageId: 94786 steam: 863490 -'Biglands: A Game Made By Kids': +"Biglands: A Game Made By Kids": pageId: 49719 steam: 316740 Bigscreen Beta: pageId: 37701 steam: 457550 -'Biing! 2: Sonne, Strand und Heiße Nächte': +"Biing! 2: Sonne, Strand und Heiße Nächte": gog: 1959845271 pageId: 182607 templates: - - '{{Game data/config|Windows|{{p|game}}\DULOG.CFG}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\*.b2g}}' -'Biing!: Sex, Intrigue and Scalpels': + - "{{Game data/config|Windows|{{p|game}}\\DULOG.CFG}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\*.b2g}}" +"Biing!: Sex, Intrigue and Scalpels": gog: 1959845271 pageId: 157970 templates: - - '{{Game data/config|DOS|{{p|game}}\*.CFG}}' - - '{{Game data/saves|DOS|{{p|game}}\GAMES\BGAME*}}' + - "{{Game data/config|DOS|{{p|game}}\\*.CFG}}" + - "{{Game data/saves|DOS|{{p|game}}\\GAMES\\BGAME*}}" Bik - A Space Adventure: pageId: 49516 steam: 325160 @@ -18652,11 +18161,11 @@ Biker Garage: Bikerz: pageId: 140789 steam: 1092580 -'Bikini Beach: Stunt Racer': +"Bikini Beach: Stunt Racer": pageId: 88302 templates: - - '{{Game data/config|Windows|{{p|game}}\Data\Common\savegame.usr}}' - - '{{Game data/saves|Windows|{{p|game}}\Data\Common\savegame.usr}}' + - "{{Game data/config|Windows|{{p|game}}\\Data\\Common\\savegame.usr}}" + - "{{Game data/saves|Windows|{{p|game}}\\Data\\Common\\savegame.usr}}" Bikini Heaven: pageId: 110616 steam: 929800 @@ -18675,7 +18184,7 @@ Bikour!: Bildo: pageId: 66573 steam: 674390 -'Billiard: VR': +"Billiard: VR": pageId: 54598 steam: 566290 Billiards: @@ -18702,16 +18211,16 @@ Billionaire: Billy: pageId: 154122 steam: 765520 -'Billy Blade: Temple of Time': +"Billy Blade: Temple of Time": pageId: 148261 templates: - - '{{Game data/saves|Windows|{{P|game}}\Data\Saves\}}' + - "{{Game data/saves|Windows|{{P|game}}\\Data\\Saves\\}}" Billy Hatcher and the Giant Egg: pageId: 38677 templates: - - '{{Game data/config|Windows|{{p|appdata}}\SEGA\Billy Hatcher\gegg.ini}}' - - '{{Game data/saves|Windows|{{p|appdata}}\SEGA\Billy Hatcher\gegg.bin}}' -'Billy the Wizard: Rocket Broomstick Racing': + - "{{Game data/config|Windows|{{p|appdata}}\\SEGA\\Billy Hatcher\\gegg.ini}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\SEGA\\Billy Hatcher\\gegg.bin}}" +"Billy the Wizard: Rocket Broomstick Racing": pageId: 88339 Bin Weevils Arty Arcade: pageId: 70946 @@ -18723,9 +18232,9 @@ Binary Domain: pageId: 2175 steam: 203750 templates: - - '{{Game data/config|Windows|{{p|game}}\savedata\UserCFG.txt}}' - - '{{Game data/saves|Windows|{{p|game}}\savedata\}}' - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\203750\}}' + - "{{Game data/config|Windows|{{p|game}}\\savedata\\UserCFG.txt}}" + - "{{Game data/saves|Windows|{{p|game}}\\savedata\\}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\203750\\}}" Binary Smoke: pageId: 166559 Binary Trigger: @@ -18746,22 +18255,22 @@ BingoBango: Binky show: pageId: 150570 steam: 1149910 -'Bio Crisis: Evil Hazard': +"Bio Crisis: Evil Hazard": pageId: 177392 steam: 1625950 Bio Inc. Redemption: pageId: 62528 steam: 612470 templates: - - '{{Game data/config|Windows|{{p|userprofile\appdata\locallow}}\DryGin Studios\BioIncRedemption}}' - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\DryGin Studios\BioIncRedemption}}' + - "{{Game data/config|Windows|{{p|userprofile\\appdata\\locallow}}\\DryGin Studios\\BioIncRedemption}}" + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\DryGin Studios\\BioIncRedemption}}" Bio Menace: gog: 1449569170 pageId: 5940 steam: 358180 templates: - - '{{Game data/config|DOS|{{p|game}}\CONFIG.BM*}}' - - '{{Game data/saves|DOS|{{p|game}}\SAVEGAM*.BM*}}' + - "{{Game data/config|DOS|{{p|game}}\\CONFIG.BM*}}" + - "{{Game data/saves|DOS|{{p|game}}\\SAVEGAM*.BM*}}" Bio Soup: pageId: 72690 steam: 662330 @@ -18769,12 +18278,8 @@ Bio-Hazard Battle: pageId: 30724 steam: 34316 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\SEGA Mega Drive - Classics\setup.dat|{{p|userprofile\Documents}}\SEGA Genesis Classics\setup.dat}} - - >- - {{Game data/saves|Windows|{{p|userprofile\Documents}}\SEGA Mega Drive - Classics\0024\|{{p|userprofile\Documents}}\SEGA Genesis Classics\0024\}} + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\SEGA Mega Drive Classics\\setup.dat|{{p|userprofile\\Documents}}\\SEGA Genesis Classics\\setup.dat}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\SEGA Mega Drive Classics\\0024\\|{{p|userprofile\\Documents}}\\SEGA Genesis Classics\\0024\\}}" BioEntity: pageId: 80701 steam: 751270 @@ -18789,17 +18294,15 @@ BioShock: pageId: 61 steam: 7670 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Bioshock}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Bioshock\SaveGames\}}' + - "{{Game data/config|Windows|{{p|appdata}}\\Bioshock}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Bioshock\\SaveGames\\}}" BioShock 2: gog: 1111208428 pageId: 1536 steam: 8850 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Bioshock2Steam}}' - - >- - {{Game - data/saves|Windows|{{p|userprofile\Documents}}\Bioshock2\SaveGames\|{{p|appdata}}\Bioshock2Steam\{{P|uid}}.profile}} + - "{{Game data/config|Windows|{{p|appdata}}\\Bioshock2Steam}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Bioshock2\\SaveGames\\|{{p|appdata}}\\Bioshock2Steam\\{{P|uid}}.profile}}" BioShock 2 Remastered: gog: 1111208428 pageId: 39886 @@ -18807,12 +18310,10 @@ BioShock 2 Remastered: steamSide: - 525720 templates: - - '{{Game data/config|Windows|{{p|appdata}}\BioshockHD\Bioshock2\*.ini}}' - - '{{Game data/config|Epic Games Launcher|{{p|appdata}}\Bioshock Epic HD\Bioshock2\*.ini}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\BioshockHD\Bioshock2\SaveGames\}}' - - >- - {{Game data/saves|Epic Games Launcher|{{p|userprofile\Documents}}\Bioshock Epic - HD\Bioshock2\{{p|uid}}\SaveGames\}} + - "{{Game data/config|Windows|{{p|appdata}}\\BioshockHD\\Bioshock2\\*.ini}}" + - "{{Game data/config|Epic Games Launcher|{{p|appdata}}\\Bioshock Epic HD\\Bioshock2\\*.ini}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\BioshockHD\\Bioshock2\\SaveGames\\}}" + - "{{Game data/saves|Epic Games Launcher|{{p|userprofile\\Documents}}\\Bioshock Epic HD\\Bioshock2\\{{p|uid}}\\SaveGames\\}}" BioShock Infinite: gog: 1752654506 pageId: 4082 @@ -18823,24 +18324,20 @@ BioShock Infinite: - 214932 - 214933 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\BioShock Infinite\XGame\Config\}}' - - >- - {{Game data/config|Linux|{{P|xdgdatahome}}/irrationalgames/bioshockinfinite/GameDocuments/My Games/BioShock - Infinite/}} - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\BioShock Infinite\XGame\SaveData}}' - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/8870/}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\BioShock Infinite\\XGame\\Config\\}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/irrationalgames/bioshockinfinite/GameDocuments/My Games/BioShock Infinite/}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\BioShock Infinite\\XGame\\SaveData}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/8870/}}" BioShock Remastered: gog: 1269268081 pageId: 35048 steam: 409710 templates: - - '{{Game data/config|Windows|{{p|appdata}}\BioshockHD\Bioshock\*.ini}}' - - '{{Game data/config|Epic Games Launcher|{{p|appdata}}\Bioshock Epic HD\Bioshock\*.ini}}' - - >- - {{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Feral Interactive/BioShock - Remastered/VFS/User/AppData/Roaming/BioshockHD/Bioshock/}} - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\BioshockHD\Bioshock\SaveGames\}}' - - '{{Game data/saves|Epic Games Launcher|{{p|userprofile\Documents}}\Bioshock Epic HD\Bioshock\{{p|uid}}\SaveGames\}}' + - "{{Game data/config|Windows|{{p|appdata}}\\BioshockHD\\Bioshock\\*.ini}}" + - "{{Game data/config|Epic Games Launcher|{{p|appdata}}\\Bioshock Epic HD\\Bioshock\\*.ini}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Feral Interactive/BioShock Remastered/VFS/User/AppData/Roaming/BioshockHD/Bioshock/}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\BioshockHD\\Bioshock\\SaveGames\\}}" + - "{{Game data/saves|Epic Games Launcher|{{p|userprofile\\Documents}}\\Bioshock Epic HD\\Bioshock\\{{p|uid}}\\SaveGames\\}}" Biodigital: pageId: 110214 steam: 923460 @@ -18850,13 +18347,13 @@ Biodrone Battle: Biohazard 2 (Sourcenext): pageId: 124707 templates: - - '{{Game data/config|Windows|{{p|hklm}}\Software\Capcom\Biohazard 2}}' - - '{{Game data/saves|Windows|{{p|game}}\savedata}}' -'Biohazard 3: Last Escape (Sourcenext)': + - "{{Game data/config|Windows|{{p|hklm}}\\Software\\Capcom\\Biohazard 2}}" + - "{{Game data/saves|Windows|{{p|game}}\\savedata}}" +"Biohazard 3: Last Escape (Sourcenext)": pageId: 124708 templates: - - '{{Game data/config|Windows|{{p|game}}\bio3.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\savedata}}' + - "{{Game data/config|Windows|{{p|game}}\\bio3.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\savedata}}" Biolab: pageId: 157780 Biolab Wars: @@ -18878,8 +18375,8 @@ Biomutant: steamSide: - 1549560 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Biomutant\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Biomutant\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Biomutant\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Biomutant\\Saved\\SaveGames\\}}" Biomydra: pageId: 59061 steam: 542870 @@ -18890,33 +18387,33 @@ Bionic Battle Mutants: pageId: 74855 steam: 625820 templates: - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\bbm\saves}}' + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\bbm\\saves}}" Bionic Commando: pageId: 176534 Bionic Commando (2009): pageId: 20622 steam: 21670 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\BC\data\settings\}}' - - '{{Game data/config|Steam|{{p|game}}\data\settings\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\BC\saves\}}' - - '{{Game data/saves|Steam|{{p|Steam}}\userdata\{{p|uid}}\21670\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\BC\\data\\settings\\}}" + - "{{Game data/config|Steam|{{p|game}}\\data\\settings\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\BC\\saves\\}}" + - "{{Game data/saves|Steam|{{p|Steam}}\\userdata\\{{p|uid}}\\21670\\}}" Bionic Commando Rearmed: pageId: 20618 steam: 21680 templates: - - '{{Game data/config|Windows|{{p|game}}\data\settings\renderer_settings.xml}}' - - '{{Game data/saves|Windows|{{p|game}}\saves\save0.sav}}' + - "{{Game data/config|Windows|{{p|game}}\\data\\settings\\renderer_settings.xml}}" + - "{{Game data/saves|Windows|{{p|game}}\\saves\\save0.sav}}" Bionic Dues: gog: 1207664573 pageId: 15634 steam: 238910 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\SOFTWARE\Arcen Games, LLC\Bionic Dues\|{{p|game}}\RuntimeData\settings.dat}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Preferences/unity.Arcen Games, LLC.Bionic Dues.plist}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/Arcen Games, LLC/Bionic Dues/}}' - - '{{Game data/saves|Windows|{{p|game}}\RuntimeData\Save\}}' - - '{{Game data/saves|OS X|{{p|game}}/RuntimeData/Save/}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\Arcen Games, LLC\\Bionic Dues\\|{{p|game}}\\RuntimeData\\settings.dat}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Preferences/unity.Arcen Games, LLC.Bionic Dues.plist}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/Arcen Games, LLC/Bionic Dues/}}" + - "{{Game data/saves|Windows|{{p|game}}\\RuntimeData\\Save\\}}" + - "{{Game data/saves|OS X|{{p|game}}/RuntimeData/Save/}}" Bionic Heart: pageId: 49767 steam: 314200 @@ -18924,8 +18421,8 @@ Bionic Heart 2: pageId: 49611 steam: 317290 templates: - - '{{Game data/config|Windows|{{P|game}}\game\saves\persistent|{{P|appdata}}\RenPy\Bionic_Heart_2\persistent}}' - - '{{Game data/saves|Windows|{{P|game}}\game\saves\*.save|{{P|appdata}}\RenPy\Bionic_Heart_2\*.save}}' + - "{{Game data/config|Windows|{{P|game}}\\game\\saves\\persistent|{{P|appdata}}\\RenPy\\Bionic_Heart_2\\persistent}}" + - "{{Game data/saves|Windows|{{P|game}}\\game\\saves\\*.save|{{P|appdata}}\\RenPy\\Bionic_Heart_2\\*.save}}" Bionic Hunter VR: pageId: 153786 steam: 1204880 @@ -18935,14 +18432,14 @@ BionicBlitz: Bionicle Heroes: pageId: 21922 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\EIDOS\BIONICLE Heroes\}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\EIDOS\BIONICLE Heroes\}}' -'Bionicle: The Game': + - "{{Game data/config|Windows|{{P|localappdata}}\\EIDOS\\BIONICLE Heroes\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\EIDOS\\BIONICLE Heroes\\}}" +"Bionicle: The Game": pageId: 74754 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\LEGO Interactive\Bionicle\Saved Games\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\LEGO Interactive\Bionicle\Configuration\}}' -'Bionite: Origins': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\LEGO Interactive\\Bionicle\\Saved Games\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\LEGO Interactive\\Bionicle\\Configuration\\}}" +"Bionite: Origins": pageId: 45146 steam: 414770 Biorhythm: @@ -18954,13 +18451,13 @@ Bios Ex - Yami no Wakusei: Biosupremacy: pageId: 58914 steam: 579870 -'Biotix: Phage Genesis': +"Biotix: Phage Genesis": pageId: 91126 steam: 799060 Biotope: pageId: 130492 steam: 549040 -'Biotoxin: The Dark Days': +"Biotoxin: The Dark Days": pageId: 58632 steam: 601870 Biped: @@ -18968,8 +18465,8 @@ Biped: pageId: 151267 steam: 1071870 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\NExTStudios\Biped}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\PostmetaGamesLimited\Biped}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\NExTStudios\\Biped}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\PostmetaGamesLimited\\Biped}}" Biplane Racer: pageId: 132592 steam: 1056310 @@ -18983,12 +18480,8 @@ Bird Assassin: pageId: 29848 steam: 312010 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\SavedGames\Bird Assassin\Bird Assassin - Data\AllPlayers\Options.dat}} - - >- - {{Game data/saves|Windows|{{p|userprofile\Documents}}\SavedGames\Bird Assassin\Bird Assassin - Data\AllPlayers\Game*.dat}} + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\SavedGames\\Bird Assassin\\Bird Assassin Data\\AllPlayers\\Options.dat}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\SavedGames\\Bird Assassin\\Bird Assassin Data\\AllPlayers\\Game*.dat}}" Bird Game: pageId: 82121 steam: 791700 @@ -19011,7 +18504,7 @@ BirdGut: pageId: 135022 steam: 1072390 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Micah\BirdGut\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Micah\\BirdGut\\}}" Birdcakes: pageId: 87553 steam: 699230 @@ -19026,7 +18519,7 @@ Birdtual Reality: steam: 513240 Birth of America: pageId: 172047 -'Birth of America 2: Wars in America': +"Birth of America 2: Wars in America": pageId: 172049 Birth of Shadows: pageId: 45741 @@ -19035,21 +18528,21 @@ Birth of a Hunter: pageId: 128306 steam: 1027480 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\BoaH\SETTINGS_DATA.BoaH}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\BoaH\RECORDS_DATA.BoaH}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\BoaH\\SETTINGS_DATA.BoaH}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\BoaH\\RECORDS_DATA.BoaH}}" Birth to Death: pageId: 157122 steam: 1205420 Birthdays the Beginning: pageId: 40367 steam: 525700 -'Birthright: The Gorgon''s Alliance': +"Birthright: The Gorgon's Alliance": pageId: 61717 templates: - - '{{Game data/config|DOS|{{p|game}}\GAMEOPT.DAT}}' - - '{{Game data/config|Windows|{{p|game}}\gameopt.dat|{{p|game}}\MP.cfg}}' - - '{{Game data/saves|DOS|{{p|game}}\SAVEGAME\}}' - - '{{Game data/saves|Windows|{{p|game}}\SAVEGAME\}}' + - "{{Game data/config|DOS|{{p|game}}\\GAMEOPT.DAT}}" + - "{{Game data/config|Windows|{{p|game}}\\gameopt.dat|{{p|game}}\\MP.cfg}}" + - "{{Game data/saves|DOS|{{p|game}}\\SAVEGAME\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\SAVEGAME\\}}" Birthseederia: pageId: 60135 steam: 571680 @@ -19060,9 +18553,9 @@ Bit Blaster XL: pageId: 37106 steam: 433950 templates: - - '{{Game data/saves|Windows|{{p|hkcu}}\Software\Nickervision Studios\Bit Blaster XL}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Preferences/unity.Nickervision Studios.Bit Blaster XL.plist}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Nickervision Studios/Bit Blaster XL/prefs}}' + - "{{Game data/saves|Windows|{{p|hkcu}}\\Software\\Nickervision Studios\\Bit Blaster XL}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Preferences/unity.Nickervision Studios.Bit Blaster XL.plist}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Nickervision Studios/Bit Blaster XL/prefs}}" Bit Bullet: pageId: 74910 steam: 726260 @@ -19087,7 +18580,7 @@ Bit Odyssey: Bit Shifter: pageId: 45801 steam: 393170 -'Bit Storm VR: First Loop': +"Bit Storm VR: First Loop": pageId: 73490 steam: 711300 Bit-Boom: @@ -19098,68 +18591,64 @@ Bit.Trip Beat: pageId: 4394 steam: 63700 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Gaijin Games\BIT.TRIP BEAT}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.gaijin_games/bit.trip.beat/}}' - - '{{Game data/config|Steam|{{p|localappdata}}\BIT.TRIP BEAT}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Gaijin Games\BIT.TRIP BEAT}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.gaijin_games/bit.trip.beat/}}' - - '{{Game data/saves|Steam|{{p|localappdata}}\BIT.TRIP BEAT}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Gaijin Games\\BIT.TRIP BEAT}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.gaijin_games/bit.trip.beat/}}" + - "{{Game data/config|Steam|{{p|localappdata}}\\BIT.TRIP BEAT}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Gaijin Games\\BIT.TRIP BEAT}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.gaijin_games/bit.trip.beat/}}" + - "{{Game data/saves|Steam|{{p|localappdata}}\\BIT.TRIP BEAT}}" Bit.Trip Core: gog: 1460735677 pageId: 4397 steam: 205060 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\BIT.TRIP CORE\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\BIT.TRIP CORE\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\BIT.TRIP CORE\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\BIT.TRIP CORE\\}}" Bit.Trip Fate: gog: 1460737449 pageId: 9071 steam: 205080 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Gaijin Games\BIT.TRIP FATE\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Gaijin Games\BIT.TRIP FATE\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Gaijin Games\\BIT.TRIP FATE\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Gaijin Games\\BIT.TRIP FATE\\}}" Bit.Trip Flux: gog: 1460737726 pageId: 34198 steam: 205090 templates: - - '{{Game data/config|Windows|AppData\Local\Gaijin Games\BIT.TRIP FLUX}}' - - '{{Game data/saves|Windows|AppData\Local\Gaijin Games\BIT.TRIP FLUX}}' -'Bit.Trip Presents... Runner2: Future Legend of Rhythm Alien': + - "{{Game data/config|Windows|AppData\\Local\\Gaijin Games\\BIT.TRIP FLUX}}" + - "{{Game data/saves|Windows|AppData\\Local\\Gaijin Games\\BIT.TRIP FLUX}}" +"Bit.Trip Presents... Runner2: Future Legend of Rhythm Alien": gog: 1460734831 pageId: 4417 steam: 218060 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Gaijin Games\Runner2}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Gaijin Games/Runner2/}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/gaijin_games/runner2/}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Gaijin Games\Runner2}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Gaijin Games/Runner2/}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/gaijin_games/runner2/}}' - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{P|uid}}/218060/remote/}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Gaijin Games\\Runner2}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Gaijin Games/Runner2/}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/gaijin_games/runner2/}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Gaijin Games\\Runner2}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Gaijin Games/Runner2/}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/gaijin_games/runner2/}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{P|uid}}/218060/remote/}}" Bit.Trip Runner: gog: 1460734409 pageId: 4382 steam: 63710 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\BIT.TRIP RUNNER\}}' - - >- - {{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/BIT.TRIP RUNNER/|~/Documents/BIT.TRIP - RUNNER/game.cfg}} - - '{{Game data/config|Linux|{{p|linuxhome}}/.gaijin_games/bit.trip.runner/}}' - - '{{Game data/config|Steam|{{P|steam}}/userdata/{{P|uid}}/63710/remote/}}' - - '{{Game data/saves|Windows|{{P|steam}}\userdata\{{P|uid}}\63710\}}' - - >- - {{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/BIT.TRIP RUNNER/|~/Documents/BIT.TRIP - RUNNER/game.cfg}} - - '{{Game data/saves|Linux|{{p|linuxhome}}/.gaijin_games/bit.trip.runner/}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\BIT.TRIP RUNNER\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/BIT.TRIP RUNNER/|~/Documents/BIT.TRIP RUNNER/game.cfg}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.gaijin_games/bit.trip.runner/}}" + - "{{Game data/config|Steam|{{P|steam}}/userdata/{{P|uid}}/63710/remote/}}" + - "{{Game data/saves|Windows|{{P|steam}}\\userdata\\{{P|uid}}\\63710\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/BIT.TRIP RUNNER/|~/Documents/BIT.TRIP RUNNER/game.cfg}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.gaijin_games/bit.trip.runner/}}" Bit.Trip Void: gog: 1460735908 pageId: 4399 steam: 205070 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\BIT.TRIP VOID\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\BIT.TRIP VOID\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\BIT.TRIP VOID\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\BIT.TRIP VOID\\}}" BitBreaker: pageId: 93148 steam: 824250 @@ -19172,13 +18661,13 @@ BitRay: BitRay2: pageId: 36195 steam: 512450 -'BitShift: BattleGrid': +"BitShift: BattleGrid": pageId: 39027 steam: 466290 Bitardia: pageId: 38315 steam: 405010 -'Bitardia Cards: Memes of 2ch': +"Bitardia Cards: Memes of 2ch": pageId: 42985 steam: 448310 Bitburner: @@ -19194,8 +18683,8 @@ Bitcoin Collector: pageId: 69356 steam: 704190 templates: - - '{{Game data/saves|Windows|{{p|game}}\.}}' -'Bitcoin Collector: Spinners Attack': + - "{{Game data/saves|Windows|{{p|game}}\\.}}" +"Bitcoin Collector: Spinners Attack": pageId: 72787 steam: 722020 Bitcoin Farm: @@ -19284,20 +18773,18 @@ Björk Vulnicura Virtual Reality Album: pageId: 144695 steam: 1095710 templates: - - '{{Game data/config|Windows|{{P|userprofile\appdata\locallow}}\Analog\BjorkVulnicura\}}' - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Analog\BjorkVulnicura\}}' + - "{{Game data/config|Windows|{{P|userprofile\\appdata\\locallow}}\\Analog\\BjorkVulnicura\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Analog\\BjorkVulnicura\\}}" Black & White: pageId: 1085 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Lionhead Studios Ltd\Black & White\}}' - - >- - {{Game data/saves|Windows|{{p|game}}\Profiles\{{p|uid}}\|{{p|hkcu}}\Software\Lionhead Studios Ltd\Black & - White\LHMultiplayer}} + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Lionhead Studios Ltd\\Black & White\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\Profiles\\{{p|uid}}\\|{{p|hkcu}}\\Software\\Lionhead Studios Ltd\\Black & White\\LHMultiplayer}}" Black & White 2: pageId: 5666 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Black & White 2\Settings.ini}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Black & White 2\Profiles\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Black & White 2\\Settings.ini}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Black & White 2\\Profiles\\}}" Black & White Bushido: pageId: 46180 steam: 404050 @@ -19328,10 +18815,8 @@ Black Book: - 1535180 - 1879710 templates: - - >- - {{Game data/config|Windows|{{P|userprofile\appdata\locallow}}\Morteshka\Black - Book\Saves\settings_savefile|{{P|hkcu}}\SOFTWARE\Morteshka\Black Book\}} - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Morteshka\Black Book\Saves\savefile}}' + - "{{Game data/config|Windows|{{P|userprofile\\appdata\\locallow}}\\Morteshka\\Black Book\\Saves\\settings_savefile|{{P|hkcu}}\\SOFTWARE\\Morteshka\\Black Book\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Morteshka\\Black Book\\Saves\\savefile}}" Black Box Alpha: pageId: 126193 steam: 308540 @@ -19347,7 +18832,7 @@ Black Circle: Black Closet: pageId: 34059 steam: 400580 -'Black Clover: Quartet Knights': +"Black Clover: Quartet Knights": pageId: 130951 steam: 714080 Black Crystals: @@ -19356,7 +18841,7 @@ Black Crystals: Black Day: pageId: 69022 steam: 696650 -'Black Death: Divarication': +"Black Death: Divarication": pageId: 68709 steam: 659030 Black Desert: @@ -19370,33 +18855,31 @@ Black Desert: - 706220 - 836620 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\Black Desert\}}' + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\Black Desert\\}}" Black Dream: pageId: 90016 steam: 810470 Black Forest: pageId: 38771 steam: 523070 -'Black Friday: The Game': +"Black Friday: The Game": pageId: 72810 steam: 712700 -Black Future '88: +"Black Future '88": gog: 1159243973 pageId: 90425 steam: 751820 templates: - - >- - {{Game data/config|Windows|{{P|userprofile}}\AppData\LocalLow\Super Scary Snakes\Black Future - '88\settingsData__GOG_bf88_user.xml|{{P|hkcu}}\Software\Super Scary Snakes\Black Future '88\}} -'Black Geyser: Couriers of Darkness': + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Super Scary Snakes\\Black Future '88\\settingsData__GOG_bf88_user.xml|{{P|hkcu}}\\Software\\Super Scary Snakes\\Black Future '88\\}}" +"Black Geyser: Couriers of Darkness": gog: 1342464301 pageId: 170042 steam: 1374930 templates: - - '{{Game data/config|Windows|{{p|userprofile\AppData\LocalLow}}\GrapeOcean\BlackGeyser\data\}}' - - '{{Game data/config|Linux| {{P|linuxhome}}/.config/unity3d/GrapeOcean/BlackGeyser/data/}}' - - '{{Game data/saves|Windows|{{p|userprofile\AppData\LocalLow}}\GrapeOcean\BlackGeyser\data\saves\}}' - - '{{Game data/saves|Linux|{{P|linuxhome}}/.config/unity3d/GrapeOcean/BlackGeyser/data/saves}}' + - "{{Game data/config|Windows|{{p|userprofile\\AppData\\LocalLow}}\\GrapeOcean\\BlackGeyser\\data\\}}" + - "{{Game data/config|Linux| {{P|linuxhome}}/.config/unity3d/GrapeOcean/BlackGeyser/data/}}" + - "{{Game data/saves|Windows|{{p|userprofile\\AppData\\LocalLow}}\\GrapeOcean\\BlackGeyser\\data\\saves\\}}" + - "{{Game data/saves|Linux|{{P|linuxhome}}/.config/unity3d/GrapeOcean/BlackGeyser/data/saves}}" Black Hangman: pageId: 121347 steam: 951810 @@ -19416,7 +18899,7 @@ Black Ice: pageId: 37243 steam: 311800 templates: - - '{{Game data/saves|Windows|{{P|game}}\Black Ice_Data\Saves\}}' + - "{{Game data/saves|Windows|{{P|game}}\\Black Ice_Data\\Saves\\}}" Black Island: pageId: 46076 steam: 376110 @@ -19434,31 +18917,29 @@ Black Mesa: pageId: 24761 steam: 362890 templates: - - |- - {{Game data/config|Steam|{{p|game}}\bms\cfg\
- {{p|game}}\bms\save\}} - - '{{Game data/saves|Steam|{{p|game}}\bms\save\}}' + - "{{Game data/config|Steam|{{p|game}}\\bms\\cfg\\
\n{{p|game}}\\bms\\save\\}}" + - "{{Game data/saves|Steam|{{p|game}}\\bms\\save\\}}" Black Mirror: gog: 1569429547 pageId: 69098 steam: 581300 templates: - - '{{Game data/config|Windows|{{p|HKCU}}\Software\KING Art Games\BlackMirror|{{p|LOCALAPPDATA}}\bm\bm-{{p|UID}}.cfg}}' - - '{{Game data/saves|Windows|{{p|LOCALAPPDATA}}\bm\}}' + - "{{Game data/config|Windows|{{p|HKCU}}\\Software\\KING Art Games\\BlackMirror|{{p|LOCALAPPDATA}}\\bm\\bm-{{p|UID}}.cfg}}" + - "{{Game data/saves|Windows|{{p|LOCALAPPDATA}}\\bm\\}}" Black Mirror 2: gog: 1207665043 pageId: 7805 steam: 286460 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\BlackMirror2\config.xml}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\BlackMirror2\Savegames\}}' + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\BlackMirror2\\config.xml}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\BlackMirror2\\Savegames\\}}" Black Mirror 3: gog: 1430743890 pageId: 7823 steam: 286480 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\BlackMirrorIII\config.xml}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\BlackMirrorIII\Savegames\}}' + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\BlackMirrorIII\\config.xml}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\BlackMirrorIII\\Savegames\\}}" Black Mist: pageId: 66179 steam: 673360 @@ -19470,15 +18951,15 @@ Black Moon Chronicles: pageId: 36788 steam: 501500 templates: - - '{{Game data/config|Windows|{{P|game}}\Ini\Configuration.ini}}' - - '{{Game data/saves|Windows|{{P|game}}\Sauvegarde}}' + - "{{Game data/config|Windows|{{P|game}}\\Ini\\Configuration.ini}}" + - "{{Game data/saves|Windows|{{P|game}}\\Sauvegarde}}" Black My White: pageId: 70313 steam: 708380 Black My White Again: pageId: 70317 steam: 708400 -'Black Myth: Wukong': +"Black Myth: Wukong": pageId: 162714 steam: 2358720 Black Office - Entertainment Department: @@ -19488,7 +18969,7 @@ Black Paradox: pageId: 98380 steam: 858680 templates: - - '{{Game data/saves|Windows|Steam\steamapps\common\Black Paradox\Saves}}' + - "{{Game data/saves|Windows|Steam\\steamapps\\common\\Black Paradox\\Saves}}" Black Powder: pageId: 94328 steam: 760950 @@ -19511,8 +18992,8 @@ Black Sails - The Ghost Ship: pageId: 46430 steam: 373240 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\BlackSails\settings-user.ini}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\BlackSails\save\*.sav}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\BlackSails\\settings-user.ini}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\BlackSails\\save\\*.sav}}" Black Salt Coreuption: pageId: 126238 steam: 987180 @@ -19522,10 +19003,10 @@ Black Sand Drift: Black Shades: pageId: 77471 templates: - - '{{Game data/config|Windows|{{p|game}}\config.txt}}' - - '{{Game data/config|OS X|{{p|game}}\config.txt}}' - - '{{Game data/saves|Windows|{{p|game}}\Data\Highscore}}' - - '{{Game data/saves|OS X|{{p|game}}\Data\Highscore}}' + - "{{Game data/config|Windows|{{p|game}}\\config.txt}}" + - "{{Game data/config|OS X|{{p|game}}\\config.txt}}" + - "{{Game data/saves|Windows|{{p|game}}\\Data\\Highscore}}" + - "{{Game data/saves|OS X|{{p|game}}\\Data\\Highscore}}" Black Skylands: gog: 1238406305 gogSide: @@ -19535,7 +19016,7 @@ Black Skylands: steamSide: - 1799480 templates: - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\HungryCouch\BlackSkylands\Saves\}}' + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\HungryCouch\\BlackSkylands\\Saves\\}}" Black Smith: pageId: 153862 steam: 1193530 @@ -19551,27 +19032,27 @@ Black Survival: Black Swan: pageId: 54317 steam: 560230 -'Black Viper: Sophia''s Fate': +"Black Viper: Sophia's Fate": pageId: 49494 steam: 322990 Black Widow: pageId: 172749 -'Black Widow: Recharged': +"Black Widow: Recharged": gog: 2038976793 pageId: 172733 steam: 1714180 templates: - - '{{Game data/config|Windows|{{p|game}}\Black Widow Recharged_Data}}' - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\Atari Inc_\Black Widow Recharged Epic}}' + - "{{Game data/config|Windows|{{p|game}}\\Black Widow Recharged_Data}}" + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\Atari Inc_\\Black Widow Recharged Epic}}" Black the Fall: pageId: 49999 renamedFrom: - Black The Fall steam: 308060 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Sand Sailor Studio\BlackTheFall\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Sand Sailor Studio\BlackTheFall\}}' - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\308060\remote\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Sand Sailor Studio\\BlackTheFall\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Sand Sailor Studio\\BlackTheFall\\}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\308060\\remote\\}}" BlackEye: pageId: 63422 steam: 627410 @@ -19584,39 +19065,39 @@ BlackHoopS: BlackShadows: pageId: 46492 steam: 398210 -'BlackShield: Upora Story': +"BlackShield: Upora Story": pageId: 79726 steam: 706520 -'BlackShot: Mercenary Warfare FPS': +"BlackShot: Mercenary Warfare FPS": pageId: 34503 steam: 433350 -'BlackShot: Revolution': +"BlackShot: Revolution": pageId: 104139 steam: 895970 BlackSimulator: pageId: 104011 steam: 811110 -'BlackSite: Area 51': +"BlackSite: Area 51": pageId: 38627 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Midway\Blacksite\Config\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Midway\Blacksite\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Midway\\Blacksite\\Config\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Midway\\Blacksite\\}}" BlackSmith HIT: pageId: 38264 steam: 508170 -'BlackSoul: Extended Edition': +"BlackSoul: Extended Edition": pageId: 50618 steam: 264480 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/saves|Windows|{{p|game}}\savegames\}}' + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\savegames\\}}" Blackbay Asylum: pageId: 49821 steam: 313140 Blackbeard the Cursed Jungle: pageId: 149688 steam: 1151310 -Blackbeard's Cove: +"Blackbeard's Cove": pageId: 82837 steam: 799560 Blackberry: @@ -19649,15 +19130,15 @@ Blackguards: steamSide: - 281770 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Daedalic Entertainment GmbH\Blackguards}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Daedalic Entertainment GmbH\Blackguards\Save}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Daedalic Entertainment GmbH\\Blackguards}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Daedalic Entertainment GmbH\\Blackguards\\Save}}" Blackguards 2: gog: 1207667233 pageId: 22129 steam: 314830 templates: - - '{{Game data/config|Windows|{{p|HKCU}}\Software\Daedalic Entertainment GmbH\Blackguards 2\}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\Daedalic Entertainment GmbH\Blackguards 2\{{P|uid}}\Save\}}' + - "{{Game data/config|Windows|{{p|HKCU}}\\Software\\Daedalic Entertainment GmbH\\Blackguards 2\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Daedalic Entertainment GmbH\\Blackguards 2\\{{P|uid}}\\Save\\}}" Blackhole: gog: 1838054499 gogSide: @@ -19665,15 +19146,15 @@ Blackhole: pageId: 34049 steam: 322680 steamSide: - - 323650 - 322700 + - 323650 - 445920 - 487520 templates: - - '{{Game data/config|Windows|{{p|LOCALAPPDATA}}\BLACKHOLE\}}' - - '{{Game data/config|Linux|{{P|xdgconfighome}}/BLACKHOLE/save.ini}}' - - '{{Game data/saves|Windows|{{p|LOCALAPPDATA}}\BLACKHOLE\root\save.ini}}' - - '{{Game data/saves|Linux|{{P|xdgconfighome}}/BLACKHOLE}}' + - "{{Game data/config|Windows|{{p|LOCALAPPDATA}}\\BLACKHOLE\\}}" + - "{{Game data/config|Linux|{{P|xdgconfighome}}/BLACKHOLE/save.ini}}" + - "{{Game data/saves|Windows|{{p|LOCALAPPDATA}}\\BLACKHOLE\\root\\save.ini}}" + - "{{Game data/saves|Linux|{{P|xdgconfighome}}/BLACKHOLE}}" Blackjack Bailey VR: pageId: 61321 steam: 613330 @@ -19683,16 +19164,16 @@ Blackjack in Space: Blackjack of Strip: pageId: 120864 steam: 945700 -'Blacklight: Retribution': +"Blacklight: Retribution": pageId: 3327 steam: 209870 templates: - - '{{Game data/config|Windows|{{p|game}}\FoxGame\Config\PCConsole\Cooked}}' -'Blacklight: Tango Down': + - "{{Game data/config|Windows|{{p|game}}\\FoxGame\\Config\\PCConsole\\Cooked}}" +"Blacklight: Tango Down": pageId: 51074 steam: 27330 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\My Games\Blacklight-Tango Down\FOXGame\Config}}' + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\My Games\\Blacklight-Tango Down\\FOXGame\\Config}}" Blacklist Brigade: pageId: 135073 steam: 1061270 @@ -19702,23 +19183,21 @@ Blackout Rugby Manager: - Blackout Rugby steam: 1157960 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\Blackout Entertainment\Blackout Rugby\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Blackout Entertainment\Blackout Rugby\SaveData}}' -'Blackout Z: Slaughterhouse Edition': + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Blackout Entertainment\\Blackout Rugby\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Blackout Entertainment\\Blackout Rugby\\SaveData}}" +"Blackout Z: Slaughterhouse Edition": pageId: 73495 steam: 729660 -'Blackout: The Darkest Night': +"Blackout: The Darkest Night": pageId: 122732 steam: 875400 -'Blacksad: Under the Skin': +"Blacksad: Under the Skin": gog: 1772238447 pageId: 134111 steam: 1003890 templates: - - >- - {{Game - data/config|Windows|{{p|hkcu}}\Software\PenduloStudios\Blacksad\|{{P|userprofile}}\AppData\LocalLow\PenduloStudios\Blacksad\}} - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\PenduloStudios\Blacksad\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\PenduloStudios\\Blacksad\\|{{P|userprofile}}\\AppData\\LocalLow\\PenduloStudios\\Blacksad\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\PenduloStudios\\Blacksad\\}}" Blackscreen Simulator: pageId: 75023 steam: 741460 @@ -19737,7 +19216,7 @@ Blacksmith Run: Blacksmith Simulator: pageId: 95051 steam: 721190 -'Blacksmith: Dark Times': +"Blacksmith: Dark Times": pageId: 103233 steam: 834140 Blackstone: @@ -19751,8 +19230,8 @@ Blacktail: pageId: 173422 steam: 1532690 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\BLACKTAIL\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\BLACKTAIL\Saved\SaveGames}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\BLACKTAIL\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\BLACKTAIL\\Saved\\SaveGames}}" Blacktea With Moon: pageId: 93019 steam: 836490 @@ -19762,13 +19241,13 @@ Blackthorn Arena: Blackthorne: pageId: 16677 templates: - - '{{Game data/saves|DOS|{{p|game}}\SAVEGAME.000}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Blizzard Entertainment\Blackthorne\SAVEGAME.000}}' + - "{{Game data/saves|DOS|{{p|game}}\\SAVEGAME.000}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Blizzard Entertainment\\Blackthorne\\SAVEGAME.000}}" Blackwake: pageId: 54842 steam: 420290 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' + - "{{Game data/config|Windows|{{p|game}}\\}}" Blackwater Bayou VR: pageId: 56100 steam: 576880 @@ -19779,11 +19258,11 @@ Blackwell Unbound: pageId: 14958 steam: 80340 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\Saved Games\Blackwell Unbound\acsetup.cfg}}' - - '{{Game data/config|OS X|{{P|game}}/acsetup.cfg}}' - - '{{Game data/config|Linux|{{P|game}}/acsetup.cfg}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\Saved Games\Blackwell Unbound\}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/ags/Blackwell Unbound/}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\Saved Games\\Blackwell Unbound\\acsetup.cfg}}" + - "{{Game data/config|OS X|{{P|game}}/acsetup.cfg}}" + - "{{Game data/config|Linux|{{P|game}}/acsetup.cfg}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Saved Games\\Blackwell Unbound\\}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/ags/Blackwell Unbound/}}" Blackwind: gog: 1082086381 pageId: 172006 @@ -19793,8 +19272,8 @@ Blackwood Crossing: pageId: 39632 steam: 453310 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\PaperSeven\Blackwood Crossing\}}' - - '{{Game data/saves|Windows|{{P|hkcu}}\Software\PaperSeven\Blackwood Crossing\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\PaperSeven\\Blackwood Crossing\\}}" + - "{{Game data/saves|Windows|{{P|hkcu}}\\Software\\PaperSeven\\Blackwood Crossing\\}}" Blade & Bones: gog: 1733644340 pageId: 52716 @@ -19803,23 +19282,23 @@ Blade & Sorcery: pageId: 122448 steam: 629730 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\BladeAndSorcery\Saves\Default\Options.opt}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\BladeAndSorcery\Saves\Default}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\BladeAndSorcery\\Saves\\Default\\Options.opt}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\BladeAndSorcery\\Saves\\Default}}" Blade & Soul: pageId: 30987 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\BnS\NCWest\}}' -'Blade Arcus from Shining: Battle Arena': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\BnS\\NCWest\\}}" +"Blade Arcus from Shining: Battle Arena": pageId: 41994 steam: 446040 templates: - - '{{Game data/saves|Windows|{{P|steam}}\userdata\{{P|uid}}\446040\}}' + - "{{Game data/saves|Windows|{{P|steam}}\\userdata\\{{P|uid}}\\446040\\}}" Blade Assault: pageId: 174442 steam: 1367300 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\SOFTWARE\TeamSuneat\BladeAssault}}' - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\TeamSuneat\BladeAssault\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\SOFTWARE\\TeamSuneat\\BladeAssault}}" + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\TeamSuneat\\BladeAssault\\}}" Blade Ballet: pageId: 41725 steam: 460750 @@ -19831,34 +19310,34 @@ Blade Runner: pageId: 67477 steam: 1678420 templates: - - '{{Game data/config|Windows|{{p|game}}\BLADE.INI}}' - - '{{Game data/saves|Windows|{{p|game}}\SAVE\*.SAV}}' -'Blade Runner 2049: Memory Lab': + - "{{Game data/config|Windows|{{p|game}}\\BLADE.INI}}" + - "{{Game data/saves|Windows|{{p|game}}\\SAVE\\*.SAV}}" +"Blade Runner 2049: Memory Lab": pageId: 79537 Blade Runner 9732: pageId: 79228 steam: 770990 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\DDR\Blade Runner 9732}}' -'Blade Runner: Enhanced Edition': + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\DDR\\Blade Runner 9732}}" +"Blade Runner: Enhanced Edition": gog: 1898192656 pageId: 158381 steam: 1678420 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\Saved Games\Nightdive Studios\Blade Runner EX\kexengine.cfg}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\Saved Games\Nightdive Studios\Blade Runner EX\save}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\Saved Games\\Nightdive Studios\\Blade Runner EX\\kexengine.cfg}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Saved Games\\Nightdive Studios\\Blade Runner EX\\save}}" Blade Strangers: pageId: 108060 steam: 565170 templates: - - '{{Game data/config|Steam|{{P|steam}}\userdata\{{P|uid}}\565170\remote\bs_conf\}}' - - '{{Game data/saves|Steam|{{P|steam}}\userdata\{{P|uid}}\565170\remote\bs_play\}}' + - "{{Game data/config|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\565170\\remote\\bs_conf\\}}" + - "{{Game data/saves|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\565170\\remote\\bs_play\\}}" Blade Symphony: pageId: 12407 steam: 225600 templates: - - '{{Game data/config|Windows|{{p|game}}\berimbau\cfg\}}' - - '{{Game data/config|Linux|{{p|game}}\berimbau\cfg\}}' + - "{{Game data/config|Windows|{{p|game}}\\berimbau\\cfg\\}}" + - "{{Game data/config|Linux|{{p|game}}\\berimbau\\cfg\\}}" Blade Tournament: pageId: 82314 steam: 796820 @@ -19876,22 +19355,18 @@ Blade of Darkness: gog: 1207659184 pageId: 14338 renamedFrom: - - 'Blade: The Edge of Darkness' + - "Blade: The Edge of Darkness" steam: 1710170 templates: - - '{{Game data/config|Windows|{{p|game}}\Config}}' - - '{{Game data/saves|Windows|{{p|game}}\Save}}' + - "{{Game data/config|Windows|{{p|game}}\\Config}}" + - "{{Game data/saves|Windows|{{p|game}}\\Save}}" Blade of Darkness (2021): gog: 1092710223 pageId: 173288 steam: 1710170 templates: - - >- - {{Game data/config|Windows|{{P|steam}}\steamapps\common\Blade of - Darkness\Config|{{P|steam}}\steamapps\common\Blade of Darkness\classic\Config}} - - >- - {{Game data/saves|Windows|{{P|steam}}\steamapps\common\Blade of Darkness\Save|{{P|steam}}\steamapps\common\Blade - of Darkness\classic\Save}} + - "{{Game data/config|Windows|{{P|steam}}\\steamapps\\common\\Blade of Darkness\\Config|{{P|steam}}\\steamapps\\common\\Blade of Darkness\\classic\\Config}}" + - "{{Game data/saves|Windows|{{P|steam}}\\steamapps\\common\\Blade of Darkness\\Save|{{P|steam}}\\steamapps\\common\\Blade of Darkness\\classic\\Save}}" BladeShield: pageId: 53421 steam: 554470 @@ -19899,7 +19374,7 @@ Bladed Fury: pageId: 124080 steam: 927250 templates: - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\NEXT Studios\Bladed Fury\savedata\*}}' + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\NEXT Studios\\Bladed Fury\\savedata\\*}}" Bladeline VR: pageId: 121681 steam: 778110 @@ -19913,13 +19388,13 @@ Blades of Avernum: gog: 1207663383 pageId: 8811 templates: - - '{{Game data/config|Windows|{{p|game}}\irunin.ini}}' - - '{{Game data/saves|Windows|*.sav}}' + - "{{Game data/config|Windows|{{p|game}}\\irunin.ini}}" + - "{{Game data/saves|Windows|*.sav}}" Blades of Exile: pageId: 168563 templates: - - '{{Game data/config|Windows|{{p|game}}}}' - - '{{Game data/saves|Windows|{{p|game}}}}' + - "{{Game data/config|Windows|{{p|game}}}}" + - "{{Game data/saves|Windows|{{p|game}}}}" Blades of Gory: pageId: 152713 steam: 1185330 @@ -19940,9 +19415,9 @@ Blades of Time: steamSide: - 208981 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\BladesOfTime\settings.blk}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\BladesOfTime\Saves\}}' - - '{{Game data/saves|Steam|{{P|steam}}\userdata\{{p|uid}}\208670\remote\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\BladesOfTime\\settings.blk}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\BladesOfTime\\Saves\\}}" + - "{{Game data/saves|Steam|{{P|steam}}\\userdata\\{{p|uid}}\\208670\\remote\\}}" Blades of Worlds: pageId: 113420 steam: 869410 @@ -19952,7 +19427,7 @@ Blades of the Righteous: Bladestar: pageId: 44962 steam: 424760 -'Bladestorm: Nightmare': +"Bladestorm: Nightmare": pageId: 22912 steam: 350310 Blair Witch: @@ -19960,82 +19435,76 @@ Blair Witch: pageId: 138398 steam: 1092660 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Blairwitch\Saved\Config\WindowsNoEditor\}}' - - >- - {{Game data/config|Microsoft - Store|{{p|localappdata}}\Packages\3951BlooberTeamS.A.BlairWitch_myqva651hxz16\LocalCache\Local\Blairwitch\Saved\Config\WindowsNoEditor}} - - '{{Game data/saves|Windows|{{P|localappdata}}\Blairwitch\Saved\SaveGames\}}' -'Blair Witch Volume 1: Rustin Parr': + - "{{Game data/config|Windows|{{p|localappdata}}\\Blairwitch\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/config|Microsoft Store|{{p|localappdata}}\\Packages\\3951BlooberTeamS.A.BlairWitch_myqva651hxz16\\LocalCache\\Local\\Blairwitch\\Saved\\Config\\WindowsNoEditor}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Blairwitch\\Saved\\SaveGames\\}}" +"Blair Witch Volume 1: Rustin Parr": pageId: 81895 templates: - - '{{Game data/config|Windows|{{P|game}}\SYSTEM\}}' - - '{{Game data/saves|Windows|{{P|game}}\save\}}' -'Blair Witch Volume 2: The Legend of Coffin Rock': + - "{{Game data/config|Windows|{{P|game}}\\SYSTEM\\}}" + - "{{Game data/saves|Windows|{{P|game}}\\save\\}}" +"Blair Witch Volume 2: The Legend of Coffin Rock": pageId: 81915 templates: - - '{{Game data/config|Windows|{{P|game}}\SYSTEM\}}' - - '{{Game data/saves|Windows|{{P|game}}\save\}}' -'Blair Witch Volume 3: The Elly Kedward Tale': + - "{{Game data/config|Windows|{{P|game}}\\SYSTEM\\}}" + - "{{Game data/saves|Windows|{{P|game}}\\save\\}}" +"Blair Witch Volume 3: The Elly Kedward Tale": pageId: 82235 templates: - - '{{Game data/config|Windows|{{P|game}}\SYSTEM\}}' - - '{{Game data/saves|Windows|{{P|game}}\save\}}' + - "{{Game data/config|Windows|{{P|game}}\\SYSTEM\\}}" + - "{{Game data/saves|Windows|{{P|game}}\\save\\}}" Blaite: pageId: 55748 steam: 461730 -'Blake Stone: Aliens of Gold': +"Blake Stone: Aliens of Gold": gog: 1207658728 pageId: 7847 steam: 358190 steamSide: - 238050 templates: - - '{{Game data/config|DOS|{{p|game}}\CONFIG.BS6}}' - - '{{Game data/saves|DOS|{{p|game}}\SAVEGAM*.BS6}}' - - '{{Game data/saves|Steam|{{p|game}}\Blake Stone - Aliens of Gold\SAVEGAM*.BS6}}' -'Blake Stone: Planet Strike': + - "{{Game data/config|DOS|{{p|game}}\\CONFIG.BS6}}" + - "{{Game data/saves|DOS|{{p|game}}\\SAVEGAM*.BS6}}" + - "{{Game data/saves|Steam|{{p|game}}\\Blake Stone - Aliens of Gold\\SAVEGAM*.BS6}}" +"Blake Stone: Planet Strike": gog: 1207658729 pageId: 7853 steam: 358310 steamSide: - 238050 templates: - - '{{Game data/config|DOS|{{p|game}}\CONFIG.VSI}}' - - >- - {{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Boxer/Gamebox - States/com.gog.blake-stone-planet-strike/Current.boxerstate/C Blake Stone Planet Strike.harddisk/CONFIG.VSI}} - - '{{Game data/saves|DOS|{{p|game}}\SAVEGAM*.VSI}}' - - >- - {{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Boxer/Gamebox - States/com.gog.blake-stone-planet-strike/Current.boxerstate/C Blake Stone Planet Strike.harddisk/SAVEGAM*.VSI}} -'Blake and Mortimer: The Curse of the Thirty Denarii': + - "{{Game data/config|DOS|{{p|game}}\\CONFIG.VSI}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Boxer/Gamebox States/com.gog.blake-stone-planet-strike/Current.boxerstate/C Blake Stone Planet Strike.harddisk/CONFIG.VSI}}" + - "{{Game data/saves|DOS|{{p|game}}\\SAVEGAM*.VSI}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Boxer/Gamebox States/com.gog.blake-stone-planet-strike/Current.boxerstate/C Blake Stone Planet Strike.harddisk/SAVEGAM*.VSI}}" +"Blake and Mortimer: The Curse of the Thirty Denarii": pageId: 88105 steam: 812100 -'Blake and Mortimer: The Tables of Babylon': +"Blake and Mortimer: The Tables of Babylon": pageId: 131505 BlamBox: pageId: 113562 steam: 899270 -'Blamdown: Udder Fury': +"Blamdown: Udder Fury": pageId: 36628 steam: 460560 Blame Him: pageId: 122556 steam: 950400 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Chilla''s Art\BlameHim}}' - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\Chilla''s Art\BlameHim}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Chilla's Art\\BlameHim}}" + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\Chilla's Art\\BlameHim}}" Blameless: pageId: 51408 steam: 530330 templates: - - '{{Game data/config|Windows|{{P|game}}\Blameless_Data\player.cfg|{{P|game}}\Blameless_Data\mappings.cfg}}' - - '{{Game data/saves|Windows|{{P|appdata}}\Blameless\Saves\}}' + - "{{Game data/config|Windows|{{P|game}}\\Blameless_Data\\player.cfg|{{P|game}}\\Blameless_Data\\mappings.cfg}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\Blameless\\Saves\\}}" Blanc: pageId: 188535 steam: 1982340 templates: - - '{{Game data/saves|Steam|{{p|Steam}}\userdata\{{p|uid}}\1982340\remote\}}' + - "{{Game data/saves|Steam|{{p|Steam}}\\userdata\\{{p|uid}}\\1982340\\remote\\}}" Blanco: pageId: 40185 steam: 528960 @@ -20048,33 +19517,29 @@ Blankspace: pageId: 168189 steam: 1228600 templates: - - '{{Game data/saves|Windows|{{p|game}}\game\saves\}}' + - "{{Game data/saves|Windows|{{p|game}}\\game\\saves\\}}" Blasphemous: gog: 2068474256 gogSide: - 1253069536 - 1362286130 - 1559529299 - - 1844816308 - 1772598132 + - 1844816308 pageId: 136315 steam: 774361 steamSide: + - 1129120 - 1143850 - 1143851 - 1143852 - 1143853 - - 1129120 templates: - - >- - {{Game - data/config|Windows|{{P|userprofile}}\AppData\LocalLow\TheGameKitchen\Blasphemous\Savegames\{{p|uid}}\options_settings.json}} - - >- - {{Game - data/config|Linux|{{p|xdgconfighome}}/unity3d/TheGameKitchen/Blasphemous/Savegames/{{p|uid}}/options_settings.json}} - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\TheGameKitchen\Blasphemous\Savegames\{{p|uid}}}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/TheGameKitchen/Blasphemous/Savegames/{{p|uid}}/}}' - - '{{Game data/saves|Linux|{{p|xdgconfighome}}/unity3d/TheGameKitchen/Blasphemous/Savegames/{{p|uid}}/}}' + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\TheGameKitchen\\Blasphemous\\Savegames\\{{p|uid}}\\options_settings.json}}" + - "{{Game data/config|Linux|{{p|xdgconfighome}}/unity3d/TheGameKitchen/Blasphemous/Savegames/{{p|uid}}/options_settings.json}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\TheGameKitchen\\Blasphemous\\Savegames\\{{p|uid}}}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/TheGameKitchen/Blasphemous/Savegames/{{p|uid}}/}}" + - "{{Game data/saves|Linux|{{p|xdgconfighome}}/unity3d/TheGameKitchen/Blasphemous/Savegames/{{p|uid}}/}}" Blasphemous 2: gog: 1747340100 gogSide: @@ -20084,11 +19549,11 @@ Blasphemous 2: - Blasphemous II steam: 2114740 templates: - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\The Game Kitchen\Blasphemous 2\Savegames}}' + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\The Game Kitchen\\Blasphemous 2\\Savegames}}" Blast: pageId: 69450 steam: 703260 -'Blast Brawl 2: Bloody Boogaloo': +"Blast Brawl 2: Bloody Boogaloo": pageId: 39025 steam: 447980 Blast Brigade vs. the Evil Legion of Dr. Cread: @@ -20096,7 +19561,7 @@ Blast Brigade vs. the Evil Legion of Dr. Cread: pageId: 170990 steam: 1550760 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\MYGAMES\Blast Brigade\GameSave\slot*.save}}' + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\MYGAMES\\Blast Brigade\\GameSave\\slot*.save}}" Blast Cats: pageId: 183156 steam: 2007430 @@ -20118,12 +19583,12 @@ Blast Zone! Tournament: pageId: 89706 steam: 649190 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Victory Lap Games\BZ\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Victory Lap Games\\BZ\\}}" Blast the Past: pageId: 114500 steam: 943170 templates: - - '{{Game data/saves|Windows|{{p|localappdata}}\BlastThePast}}' + - "{{Game data/saves|Windows|{{p|localappdata}}\\BlastThePast}}" Blast-off: pageId: 39476 steam: 391140 @@ -20131,7 +19596,7 @@ BlastZone 2: pageId: 48663 steam: 349260 templates: - - '{{Game data/config|Windows|{{p|game}}\bz2config.cfg}}' + - "{{Game data/config|Windows|{{p|game}}\\bz2config.cfg}}" Blastboard: pageId: 156959 steam: 1213770 @@ -20148,13 +19613,13 @@ Blaster Master Zero: pageId: 138849 steam: 1034900 templates: - - '{{Game data/saves|Windows|{{p|game}}\save\}}' + - "{{Game data/saves|Windows|{{p|game}}\\save\\}}" Blaster Master Zero 2: pageId: 152855 steam: 1034910 templates: - - '{{Game data/config|Windows|{{p|steam}}\steamapps\common\Blaster Master Zero 2\SystemData.bin}}' - - '{{Game data/saves|Windows|{{p|steam}}\steamapps\common\Blaster Master Zero 2\SystemData.bin}}' + - "{{Game data/config|Windows|{{p|steam}}\\steamapps\\common\\Blaster Master Zero 2\\SystemData.bin}}" + - "{{Game data/saves|Windows|{{p|steam}}\\steamapps\\common\\Blaster Master Zero 2\\SystemData.bin}}" Blaster Master Zero 3: pageId: 169443 steam: 1588380 @@ -20173,7 +19638,7 @@ Blasteron: Blasters of the Universe: pageId: 42347 steam: 490490 -'Blasting Agent: Ultimate Edition': +"Blasting Agent: Ultimate Edition": pageId: 36203 steam: 453810 Blastworld: @@ -20186,52 +19651,52 @@ BlazBlue Centralfiction: pageId: 61478 steam: 586140 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/saves|Windows|{{p|game}}\Save\}}' -'BlazBlue: Calamity Trigger': + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\Save\\}}" +"BlazBlue: Calamity Trigger": gog: 1207664163 pageId: 15126 steam: 263300 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\ARC SYSTEM WORKS\BLAZBLUE-CT\Config\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\ARC SYSTEM WORKS\BLAZBLUE-CT\E0000151BC2BFB15\save\}}' - - '{{Game data/saves|Steam|{{p|userprofile\Documents}}\ARC SYSTEM WORKS\BBCT\0000000000000000\save\}}' -'BlazBlue: Chronophantasma Extend': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\ARC SYSTEM WORKS\\BLAZBLUE-CT\\Config\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\ARC SYSTEM WORKS\\BLAZBLUE-CT\\E0000151BC2BFB15\\save\\}}" + - "{{Game data/saves|Steam|{{p|userprofile\\Documents}}\\ARC SYSTEM WORKS\\BBCT\\0000000000000000\\save\\}}" +"BlazBlue: Chronophantasma Extend": pageId: 31285 steam: 388750 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\ARC SYSTEM WORKS\BBCPEX\Config\}}' - - '{{Game data/saves|Windows|{{p|game}}\Save\}}' -'BlazBlue: Continuum Shift Extend': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\ARC SYSTEM WORKS\\BBCPEX\\Config\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\Save\\}}" +"BlazBlue: Continuum Shift Extend": pageId: 30774 steam: 294810 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\ARC SYSTEM WORKS\BBCSE\Config\}}' - - '{{Game data/saves|Windows|{{p|game}}\Save\}}' -'BlazBlue: Cross Tag Battle': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\ARC SYSTEM WORKS\\BBCSE\\Config\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\Save\\}}" +"BlazBlue: Cross Tag Battle": pageId: 91437 steam: 702890 templates: - - '{{Game data/config|Windows|{{p|game}}\Save\}}' - - '{{Game data/saves|Windows|{{p|game}}\Save\}}' -'Blaze & Blade: Eternal Quest': + - "{{Game data/config|Windows|{{p|game}}\\Save\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\Save\\}}" +"Blaze & Blade: Eternal Quest": pageId: 161659 -'Blaze and the Monster Machines: Axle City Racers': +"Blaze and the Monster Machines: Axle City Racers": pageId: 177728 steam: 1434330 BlazeRush: pageId: 20744 steam: 302710 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\BlazeRush\user_config.xml}}' - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/302710/}}' -'Blazing Angels 2: Secret Missions of WWII': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\BlazeRush\\user_config.xml}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/302710/}}" +"Blazing Angels 2: Secret Missions of WWII": pageId: 11178 steam: 15230 templates: - - '{{Game data/config|Windows|{{p|hklm}}\SOFTWARE\{{p|wow64}}\UBISOFT\BlazingAngels2\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\My Documents\BlazingAngels2\Profiles\}}' -'Blazing Angels: Squadrons of WWII': + - "{{Game data/config|Windows|{{p|hklm}}\\SOFTWARE\\{{p|wow64}}\\UBISOFT\\BlazingAngels2\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\My Documents\\BlazingAngels2\\Profiles\\}}" +"Blazing Angels: Squadrons of WWII": pageId: 11177 steam: 15220 Blazing Beaks: @@ -20239,28 +19704,24 @@ Blazing Beaks: pageId: 75548 steam: 585710 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\BlazingBeaks\gamedata.sav}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\BlazingBeaks\gamedata.sav}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\BlazingBeaks\\gamedata.sav}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\BlazingBeaks\\gamedata.sav}}" Blazing Chrome: gog: 1725796924 pageId: 124356 steam: 609110 templates: - - '{{Game data/config|Windows|{{P|appdata}}\Blazing_Chrome\gog_config.ini}}' - - >- - {{Game data/config|Microsoft - Store|{{P|localappdata}}\Packages\DotEmu.BlazingChrome_map6zyh9ym1xy\LocalState\config.ini}} - - '{{Game data/saves|Windows|{{P|appdata}}\Blazing_Chrome\gog_save*.bin}}' - - >- - {{Game data/saves|Microsoft - Store|{{P|localappdata}}\Packages\DotEmu.BlazingChrome_map6zyh9ym1xy\LocalState\save*.bin}} + - "{{Game data/config|Windows|{{P|appdata}}\\Blazing_Chrome\\gog_config.ini}}" + - "{{Game data/config|Microsoft Store|{{P|localappdata}}\\Packages\\DotEmu.BlazingChrome_map6zyh9ym1xy\\LocalState\\config.ini}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\Blazing_Chrome\\gog_save*.bin}}" + - "{{Game data/saves|Microsoft Store|{{P|localappdata}}\\Packages\\DotEmu.BlazingChrome_map6zyh9ym1xy\\LocalState\\save*.bin}}" Blazing Core: pageId: 137344 steam: 928170 Blazing Core Beta: pageId: 89696 steam: 787750 -'Blazing Sails: Pirate Battle Royale': +"Blazing Sails: Pirate Battle Royale": pageId: 151197 steam: 1158940 Blazing Star: @@ -20272,15 +19733,15 @@ Bleach Brave Souls: Bleak: pageId: 105249 steam: 786380 -'Bleak Faith: Forsaken': +"Bleak Faith: Forsaken": gog: 2135168204 pageId: 180560 steam: 1173220 steamSide: - 1482230 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Forsaken\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\Forsaken\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\Forsaken\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Forsaken\\Saved\\SaveGames\\}}" Bleak Sword: pageId: 147830 Bleak Sword DX: @@ -20288,8 +19749,8 @@ Bleak Sword DX: pageId: 187777 steam: 2193050 templates: - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\more8bit\BleakSwordDX\*.dat}}' -'Bleak: Welcome to Glimmer': + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\more8bit\\BleakSwordDX\\*.dat}}" +"Bleak: Welcome to Glimmer": pageId: 37172 steam: 364830 Bled Navalny: @@ -20299,20 +19760,20 @@ Bleed: pageId: 8456 steam: 239800 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\SavedGames\Bleed\Bleed\AllPlayers\}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/Bleed/Bleed/AllPlayers/}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\SavedGames\Bleed\Bleed\AllPlayers\}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/Bleed/Bleed/AllPlayers/}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\SavedGames\\Bleed\\Bleed\\AllPlayers\\}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/Bleed/Bleed/AllPlayers/}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\SavedGames\\Bleed\\Bleed\\AllPlayers\\}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/Bleed/Bleed/AllPlayers/}}" Bleed 2: pageId: 39630 steam: 396350 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Bleed2\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Bleed2/}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/Bleed2/}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Bleed2\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Bleed2/}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/Bleed2/}}' + - "{{Game data/config|Windows|{{p|appdata}}\\Bleed2\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Bleed2/}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/Bleed2/}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Bleed2\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Bleed2/}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/Bleed2/}}" Bleeding Blocks: pageId: 46448 steam: 400710 @@ -20323,10 +19784,8 @@ Bleeding Edge: pageId: 152131 steam: 1189800 templates: - - >- - {{Game data/config|Microsoft - Store|{{P|localappdata}}\Packages\Microsoft.BleedingEdge_8wekyb3d8bbwe\LocalCache\Local\Moblade\Saved\Config\WindowsClient}} - - '{{Game data/saves|Microsoft Store|{{P|localappdata}}\Packages\Microsoft.Moblade_8wekyb3d8bbwe\SystemAppData\wgs}}' + - "{{Game data/config|Microsoft Store|{{P|localappdata}}\\Packages\\Microsoft.BleedingEdge_8wekyb3d8bbwe\\LocalCache\\Local\\Moblade\\Saved\\Config\\WindowsClient}}" + - "{{Game data/saves|Microsoft Store|{{P|localappdata}}\\Packages\\Microsoft.Moblade_8wekyb3d8bbwe\\SystemAppData\\wgs}}" Bleeding Edge VR Chap.1: pageId: 129989 steam: 1011270 @@ -20353,9 +19812,9 @@ Bless Unleashed: pageId: 163855 steam: 1254120 templates: - - '{{Game data/config|Steam|{{p|game}}/Bless/Saved/Config/WindowsNoEditor/}}' - - '{{Game data/saves|Steam|{{p|game}}/Bless/Saved/SaveGames/}}' -'Blessed Ones: The Magic Wolves': + - "{{Game data/config|Steam|{{p|game}}/Bless/Saved/Config/WindowsNoEditor/}}" + - "{{Game data/saves|Steam|{{p|game}}/Bless/Saved/SaveGames/}}" +"Blessed Ones: The Magic Wolves": pageId: 45389 steam: 424310 Blessed Surface: @@ -20368,8 +19827,8 @@ Blightbound: pageId: 165882 steam: 1263070 templates: - - '{{Game data/config|Windows|{{p|game}}\config.txt}}' - - '{{Game data/saves|Windows|{{p|steam}}\userdata\{{p|uid}}\1263070\}}' + - "{{Game data/config|Windows|{{p|game}}\\config.txt}}" + - "{{Game data/saves|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\1263070\\}}" Blightmare: pageId: 142133 steam: 859160 @@ -20394,7 +19853,7 @@ Blind Date: Blind Drive: pageId: 167487 steam: 1300600 -'Blind Fate: Edo no Yami': +"Blind Fate: Edo no Yami": gog: 1245041742 pageId: 173726 steam: 1294880 @@ -20411,8 +19870,8 @@ Blind Men: pageId: 65074 steam: 657290 templates: - - '{{Game data/config|Windows|{{p|game}}\renpy\config.py}}' - - '{{Game data/saves|Windows|{{P|appdata}}\renpy\Blind Men-1464538920\*.save|{{p|game}}\game\saves\*.save}}' + - "{{Game data/config|Windows|{{p|game}}\\renpy\\config.py}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\renpy\\Blind Men-1464538920\\*.save|{{p|game}}\\game\\saves\\*.save}}" Blind Mind: pageId: 91943 steam: 837290 @@ -20430,11 +19889,11 @@ Blind Spot VR: Blind Trust: pageId: 42858 steam: 468560 -'Blind Witch: Peek Window': +"Blind Witch: Peek Window": pageId: 66605 steam: 674450 templates: - - '{{Game data/config|Windows|{{p|userprofile\appdata\locallow}}\strayrambling\blindwitchpeekwindow}}' + - "{{Game data/config|Windows|{{p|userprofile\\appdata\\locallow}}\\strayrambling\\blindwitchpeekwindow}}" BlindMaze: pageId: 91991 steam: 841570 @@ -20457,17 +19916,17 @@ Blink: pageId: 58370 steam: 447210 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Blink}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Blink}}" Blink Cam: pageId: 153642 steam: 1204360 Blink the Bulb: pageId: 55576 steam: 534190 -'Blink:Rogues': +"Blink:Rogues": pageId: 111988 steam: 739100 -Blinky's Hasty Adventure: +"Blinky's Hasty Adventure": pageId: 126041 steam: 991290 Bliss: @@ -20480,7 +19939,7 @@ Blitz Breaker: pageId: 37537 steam: 416110 templates: - - '{{Game data/saves|Windows|{{p|localappdata}}\BlitzBreaker}}' + - "{{Game data/saves|Windows|{{p|localappdata}}\\BlitzBreaker}}" Blitz Freak: pageId: 80940 steam: 757670 @@ -20494,8 +19953,8 @@ Blitzkrieg: pageId: 274 steam: 313480 templates: - - '{{Game data/config|Windows|{{p|game}}\Run}}' - - '{{Game data/saves|Windows|{{p|game}}\Run\saves}}' + - "{{Game data/config|Windows|{{p|game}}\\Run}}" + - "{{Game data/saves|Windows|{{p|game}}\\Run\\saves}}" Blitzkrieg 2: gog: 1207664013 pageId: 13949 @@ -20516,7 +19975,7 @@ BlobCat: pageId: 68867 steam: 613210 templates: - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\BySamb\BlobCat}}' + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\BySamb\\BlobCat}}" Blobby Tennis: pageId: 62032 steam: 628530 @@ -20547,7 +20006,7 @@ Block Fuse: Block Granny Horror Survival: pageId: 144037 steam: 1111880 -'Block Heads: Instakill': +"Block Heads: Instakill": pageId: 108584 steam: 778030 Block King: @@ -20563,7 +20022,7 @@ Block N Load: pageId: 48042 steam: 299360 templates: - - '{{Game data/config|Windows| HKEY_CURRENT_USER\Software\Artplant\Block N Load}}' + - "{{Game data/config|Windows| HKEY_CURRENT_USER\\Software\\Artplant\\Block N Load}}" Block Party Sports: pageId: 91192 steam: 384230 @@ -20592,14 +20051,12 @@ Block Story: pageId: 33486 steam: 270110 templates: - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\Mindblocks\Block Story\}}' -'Block Survival: Legend of the Lost Islands': + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\Mindblocks\\Block Story\\}}" +"Block Survival: Legend of the Lost Islands": pageId: 63181 steam: 641980 templates: - - >- - {{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Inter Pixel Arts\Block Survival_ Legend of the Lost - Islands\}} + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Inter Pixel Arts\\Block Survival_ Legend of the Lost Islands\\}}" Block Tuner: pageId: 144190 steam: 1128380 @@ -20615,11 +20072,11 @@ Block bat invasion: Block of Rum: pageId: 127427 steam: 1009180 -Block'hood: +"Block'hood": gog: 1457531523 pageId: 34234 steam: 416210 -Block'hood VR: +"Block'hood VR": pageId: 92648 steam: 787720 BlockAid: @@ -20634,7 +20091,7 @@ BlockDude: BlockGame: pageId: 67938 steam: 688110 -'BlockShip Wars: Roguelike': +"BlockShip Wars: Roguelike": pageId: 79123 steam: 763320 Blockade 3D: @@ -20643,7 +20100,7 @@ Blockade 3D: Blockade Classic: pageId: 131974 steam: 1049800 -'Blockade: War Stories': +"Blockade: War Stories": pageId: 132302 steam: 1051890 Blockara: @@ -20655,19 +20112,19 @@ Blockchain Tycoon: Blocked and Loaded: pageId: 79887 steam: 772270 -'Blockey: Block Yeah!': +"Blockey: Block Yeah!": pageId: 149404 steam: 1145280 Blockland: pageId: 13549 steam: 250340 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Blockland\config}}' - - '{{Game data/config|Steam|{{p|game}}\config}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Documents/Blockland/config}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Blockland\saves}}' - - '{{Game data/saves|Steam|{{p|game}}\saves}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Documents/Blockland/saves}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Blockland\\config}}" + - "{{Game data/config|Steam|{{p|game}}\\config}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Documents/Blockland/config}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Blockland\\saves}}" + - "{{Game data/saves|Steam|{{p|game}}\\saves}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Documents/Blockland/saves}}" Blockle: pageId: 62002 steam: 632510 @@ -20688,16 +20145,14 @@ Blocks That Matter: pageId: 4823 steam: 111800 templates: - - '{{Game data/config|Windows|{{p|game}}\config\|{{p|userprofile\Documents}}\BlocksThatMatterUserDatas\config\}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.BlocksThatMatterUserDatas/}}' - - >- - {{Game data/saves|Windows|{{p|game}}\Blocks That Matter - Save\|{{p|userprofile\Documents}}\BlocksThatMatterUserDatas\Blocks That Matter Save\}} - - '{{Game data/saves|Linux|{{p|linuxhome}}/.BlocksThatMatterUserDatas/}}' -'Blocks!: Julius Caesar': + - "{{Game data/config|Windows|{{p|game}}\\config\\|{{p|userprofile\\Documents}}\\BlocksThatMatterUserDatas\\config\\}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.BlocksThatMatterUserDatas/}}" + - "{{Game data/saves|Windows|{{p|game}}\\Blocks That Matter Save\\|{{p|userprofile\\Documents}}\\BlocksThatMatterUserDatas\\Blocks That Matter Save\\}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.BlocksThatMatterUserDatas/}}" +"Blocks!: Julius Caesar": pageId: 153509 steam: 1162670 -'Blocks!: Richard III': +"Blocks!: Richard III": pageId: 142036 steam: 887090 Blockscape: @@ -20715,7 +20170,7 @@ Blockstorm: Blocksworld: pageId: 72213 steam: 642390 -Blockus' Adventures: +"Blockus' Adventures": pageId: 136607 steam: 1081020 Blockwick 2: @@ -20746,27 +20201,27 @@ Bloo Kid 2: pageId: 37725 steam: 379640 templates: - - '{{Game data/saves|Windows|{{P|game}}\.monkeystate}}' + - "{{Game data/saves|Windows|{{P|game}}\\.monkeystate}}" Blood: gog: 1207658856 pageId: 13918 steam: 299030 templates: - - '{{Game data/config|DOS|{{p|game}}\BLOOD.CFG}}' - - '{{Game data/saves|DOS|{{p|game}}\*.SAV}}' -'Blood & Gold: Caribbean!': + - "{{Game data/config|DOS|{{p|game}}\\BLOOD.CFG}}" + - "{{Game data/saves|DOS|{{p|game}}\\*.SAV}}" +"Blood & Gold: Caribbean!": gog: 1448275717 pageId: 34288 steam: 413710 Blood & Magic: pageId: 160985 templates: - - '{{Game data/config|DOS|{{p|game}}}}' - - '{{Game data/saves|DOS|{{p|game}}}}' -Blood 'n Bikinis: + - "{{Game data/config|DOS|{{p|game}}}}" + - "{{Game data/saves|DOS|{{p|game}}}}" +"Blood 'n Bikinis": pageId: 68358 steam: 596200 -'Blood Alloy: Reborn': +"Blood Alloy: Reborn": pageId: 44347 steam: 355310 Blood Ancestors: @@ -20784,29 +20239,29 @@ Blood Bowl (2009): pageId: 10486 steam: 58520 templates: - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\BloodBowl\}}' + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\BloodBowl\\}}" Blood Bowl 2: gog: 1150455200 pageId: 26438 steam: 236690 templates: - - '{{Game data/config|Windows|{{p|game}}\Data\|{{p|userprofile\Documents}}\BloodBowl2\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\BloodBowl2\}}' + - "{{Game data/config|Windows|{{p|game}}\\Data\\|{{p|userprofile\\Documents}}\\BloodBowl2\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\BloodBowl2\\}}" Blood Bowl 3: pageId: 184876 steam: 1016950 -'Blood Bowl: Chaos Edition': +"Blood Bowl: Chaos Edition": gog: 2029377635 pageId: 27913 steam: 216890 templates: - - '{{Game data/config|Windows|{{p|game}}\Data\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\bloodbowlchaos\saves\}}' -'Blood Bowl: Death Zone': + - "{{Game data/config|Windows|{{p|game}}\\Data\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\bloodbowlchaos\\saves\\}}" +"Blood Bowl: Death Zone": pageId: 103321 steam: 602490 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Cyanide\Blood Bowl Death Zone\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Cyanide\\Blood Bowl Death Zone\\}}" Blood Broker: pageId: 124258 steam: 967070 @@ -20817,8 +20272,8 @@ Blood Card: pageId: 112372 steam: 930780 templates: - - '{{Game data/config|Windows|{{p|userprofile\appdata\locallow}}\PixelCattleGames\BloodCard}}' - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\PixelCattleGames\BloodCard}}' + - "{{Game data/config|Windows|{{p|userprofile\\appdata\\locallow}}\\PixelCattleGames\\BloodCard}}" + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\PixelCattleGames\\BloodCard}}" Blood City: pageId: 108052 steam: 922520 @@ -20826,8 +20281,8 @@ Blood Code: pageId: 45142 steam: 386480 templates: - - '{{Game data/config|Windows|{{P|game}}\game\saves\persistent|{{P|appdata}}\RenPy\Blood Code\persistent}}' - - '{{Game data/saves|Windows|{{P|game}}\game\saves\*.save|{{P|appdata}}\RenPy\Blood Code\*.save}}' + - "{{Game data/config|Windows|{{P|game}}\\game\\saves\\persistent|{{P|appdata}}\\RenPy\\Blood Code\\persistent}}" + - "{{Game data/saves|Windows|{{P|game}}\\game\\saves\\*.save|{{P|appdata}}\\RenPy\\Blood Code\\*.save}}" Blood Day: pageId: 122255 steam: 971670 @@ -20846,13 +20301,13 @@ Blood Harvest 2: Blood Harvest 3: pageId: 95212 steam: 851180 -'Blood II: The Chosen': +"Blood II: The Chosen": gog: 1207658857 pageId: 13923 steam: 299050 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/saves|Windows|{{p|game}}\Save\}}' + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\Save\\}}" Blood Island: pageId: 125655 steam: 1009810 @@ -20860,9 +20315,9 @@ Blood Knights: pageId: 40520 steam: 258220 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\BloodKnights\settings.ini|{{P|game}}\settings.ini}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\BloodKnights\save\}}' - - '{{Game data/saves|Steam|{{p|Steam}}\userdata\{{p|uid}}\258220\remote\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\BloodKnights\\settings.ini|{{P|game}}\\settings.ini}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\BloodKnights\\save\\}}" + - "{{Game data/saves|Steam|{{p|Steam}}\\userdata\\{{p|uid}}\\258220\\remote\\}}" Blood Magic: pageId: 143863 steam: 1072930 @@ -20872,21 +20327,21 @@ Blood Money: Blood Moon: pageId: 132631 steam: 1023030 -'Blood Moon: The Last Stand': +"Blood Moon: The Last Stand": pageId: 89415 steam: 806480 -'Blood Omen: Legacy of Kain': +"Blood Omen: Legacy of Kain": gog: 1837805079 pageId: 26719 templates: - - '{{Game data/config|Windows|{{P|game}}\SAVED\}}' - - '{{Game data/config|GOG.com|{{P|game}}\Saves\}}' - - '{{Game data/saves|Windows|{{P|game}}\SAVED\}}' - - '{{Game data/saves|GOG.com|{{P|game}}\Saves\}}' + - "{{Game data/config|Windows|{{P|game}}\\SAVED\\}}" + - "{{Game data/config|GOG.com|{{P|game}}\\Saves\\}}" + - "{{Game data/saves|Windows|{{P|game}}\\SAVED\\}}" + - "{{Game data/saves|GOG.com|{{P|game}}\\Saves\\}}" Blood Opera Crescendo: pageId: 141383 steam: 1114480 -'Blood Rage: Digital Edition': +"Blood Rage: Digital Edition": pageId: 160407 steam: 1015930 Blood Scrolls: @@ -20896,7 +20351,7 @@ Blood Spear: pageId: 173554 steam: 1638660 templates: - - '{{Game data/saves|Windows|{{p|localappdata}}\Blood_Spear\Saved\SaveGames\}}' + - "{{Game data/saves|Windows|{{p|localappdata}}\\Blood_Spear\\Saved\\SaveGames\\}}" Blood Ties (2016): pageId: 52207 steam: 544870 @@ -20913,8 +20368,8 @@ Blood and Bacon: pageId: 37126 steam: 434570 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\IsolatedStorage\*.*\*.*\*.*\*.*\Files\saveprefs}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\IsolatedStorage\*.*\*.*\*.*\*.*\Files\savegame}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\IsolatedStorage\\*.*\\*.*\\*.*\\*.*\\Files\\saveprefs}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\IsolatedStorage\\*.*\\*.*\\*.*\\*.*\\Files\\savegame}}" Blood and Lust: pageId: 138944 steam: 1064140 @@ -20928,8 +20383,8 @@ Blood of Old - The Rise to Greatness!: pageId: 39978 steam: 596440 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\SOFTWARE\Andrew Watt\Blood Of Old}}' - - '{{Game data/saves|Windows|{{p|game}}\BloodofOld_Data\bloodofoldsave|{{p|game}}\BloodofOld32_Data\bloodofoldsave}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\Andrew Watt\\Blood Of Old}}" + - "{{Game data/saves|Windows|{{p|game}}\\BloodofOld_Data\\bloodofoldsave|{{p|game}}\\BloodofOld32_Data\\bloodofoldsave}}" Blood of Patriots: pageId: 81980 steam: 775310 @@ -20942,34 +20397,32 @@ Blood of the Werewolf: pageId: 17399 steam: 260250 templates: - - >- - {{Game data/config|Windows|{{p|hkcu}}\Software\Scientifically Proven Entertainment\Blood of the - Werewolf\Settings\}} + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Scientifically Proven Entertainment\\Blood of the Werewolf\\Settings\\}}" Blood will be Spilled: pageId: 98672 steam: 880300 -'Blood: Fresh Supply': +"Blood: Fresh Supply": gog: 1374469660 pageId: 136135 steam: 1010750 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Nightdive Studios\Blood EX\kexengine.cfg}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Nightdive Studios\Blood EX\saves\save_**.sav}}' + - "{{Game data/config|Windows|{{p|appdata}}\\Nightdive Studios\\Blood EX\\kexengine.cfg}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Nightdive Studios\\Blood EX\\saves\\save_**.sav}}" BloodGate: pageId: 38504 steam: 464470 -'BloodLust 2: Nemesis': +"BloodLust 2: Nemesis": pageId: 81135 steam: 758080 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Dungeon\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Dungeon\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Dungeon\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Dungeon\\Saved\\SaveGames\\}}" BloodLust Shadowhunter: pageId: 46376 steam: 280600 templates: - - '{{Game data/config|Windows|{{P|game}}\UDKGame\Config}}' - - '{{Game data/saves|Windows|{{P|game}}\UDKGame\Config}}' + - "{{Game data/config|Windows|{{P|game}}\\UDKGame\\Config}}" + - "{{Game data/saves|Windows|{{P|game}}\\UDKGame\\Config}}" BloodNet: gog: 1207660453 gogSide: @@ -20977,8 +20430,8 @@ BloodNet: pageId: 15367 steam: 327920 templates: - - '{{Game data/config|DOS|{{P|game}}\BLOODNET.CFG}}' - - '{{Game data/saves|DOS|{{p|game}}\SAVE}}' + - "{{Game data/config|DOS|{{P|game}}\\BLOODNET.CFG}}" + - "{{Game data/saves|DOS|{{p|game}}\\SAVE}}" BloodRayne: gog: 1207658808 gogSide: @@ -20986,8 +20439,8 @@ BloodRayne: pageId: 7437 steam: 3810 templates: - - '{{Game data/config|Windows|{{p|game}}\system\}}' - - '{{Game data/saves|Windows|{{p|game}}\savegame\}}' + - "{{Game data/config|Windows|{{p|game}}\\system\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\savegame\\}}" BloodRayne 2: gog: 1207658809 gogSide: @@ -20995,41 +20448,41 @@ BloodRayne 2: pageId: 7408 steam: 3820 templates: - - '{{Game data/config|Windows|{{p|game}}\system\}}' - - '{{Game data/saves|Windows|{{p|game}}\savegame\}}' -'BloodRayne 2: Terminal Cut': + - "{{Game data/config|Windows|{{p|game}}\\system\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\savegame\\}}" +"BloodRayne 2: Terminal Cut": gog: 2110288694 gogSide: - 1473633902 pageId: 165079 steam: 1373550 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\BloodRayne2\settings\rayne2.ini}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\BloodRayne2\savegame\}}' -'BloodRayne Betrayal: Fresh Bites': + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\BloodRayne2\\settings\\rayne2.ini}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\BloodRayne2\\savegame\\}}" +"BloodRayne Betrayal: Fresh Bites": gog: 1803582429 pageId: 169318 steam: 1550260 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Wayforward Technologies\BloodRayne\}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Wayforward Technologies\BloodRayne\}}' -'BloodRayne: Betrayal': + - "{{Game data/config|Windows|{{p|appdata}}\\Wayforward Technologies\\BloodRayne\\}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Wayforward Technologies\\BloodRayne\\}}" +"BloodRayne: Betrayal": gog: 1446645601 pageId: 16899 steam: 281220 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Wayforward Technologies\BloodRayne\}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Wayforward Technologies\BloodRayne\}}' -'BloodRayne: Terminal Cut': + - "{{Game data/config|Windows|{{p|appdata}}\\Wayforward Technologies\\BloodRayne\\}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Wayforward Technologies\\BloodRayne\\}}" +"BloodRayne: Terminal Cut": gog: 1598751450 gogSide: - 1805408888 pageId: 165077 steam: 1373510 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\BloodRayne1\settings\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\BloodRayne1\savegame\}}' -'BloodRealm: Battlegrounds': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\BloodRayne1\\settings\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\BloodRayne1\\savegame\\}}" +"BloodRealm: Battlegrounds": pageId: 48709 steam: 311700 Bloodbath: @@ -21039,8 +20492,8 @@ Bloodbath Kavkaz: pageId: 28880 steam: 348020 templates: - - '{{Game data/config|Windows|{{P|game}}\data}}' - - '{{Game data/saves|Windows|{{P|appdata}}\Dagestan Technology\Bloodbath Kavkaz\}}' + - "{{Game data/config|Windows|{{P|game}}\\data}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\Dagestan Technology\\Bloodbath Kavkaz\\}}" Bloodbath Requiem: pageId: 79955 steam: 777710 @@ -21059,8 +20512,8 @@ Bloodless: Bloodline: pageId: 120426 templates: - - '{{Game data/config|Windows|{{p|game}}\Default.cfe|{{p|game}}\system.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\Save\}}' + - "{{Game data/config|Windows|{{p|game}}\\Default.cfe|{{p|game}}\\system.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\Save\\}}" Bloodline Champions: pageId: 38289 steam: 6370 @@ -21071,50 +20524,46 @@ Bloodroots: pageId: 108912 steam: 820540 templates: - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Paper Cult\Bloodroots}}' + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Paper Cult\\Bloodroots}}" Bloodsports.TV: pageId: 38472 steam: 336420 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Toadman Interactive\BloodsportsTV\user_settings.config}}' -'Bloodstained: Curse of the Moon': + - "{{Game data/config|Windows|{{p|appdata}}\\Toadman Interactive\\BloodsportsTV\\user_settings.config}}" +"Bloodstained: Curse of the Moon": pageId: 94187 steam: 838310 templates: - - '{{Game data/config|Windows|{{p|game}}\exe\SystemData.bin}}' - - '{{Game data/saves|Windows|{{p|game}}\exe\GameData*.bin}}' -'Bloodstained: Curse of the Moon 2': + - "{{Game data/config|Windows|{{p|game}}\\exe\\SystemData.bin}}" + - "{{Game data/saves|Windows|{{p|game}}\\exe\\GameData*.bin}}" +"Bloodstained: Curse of the Moon 2": pageId: 161365 steam: 1257360 templates: - - '{{Game data/config|Windows|{{p|game}}\config.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\bscotm2gd*}}' -'Bloodstained: Ritual of the Night': + - "{{Game data/config|Windows|{{p|game}}\\config.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\bscotm2gd*}}" +"Bloodstained: Ritual of the Night": gog: 1133514031 pageId: 61255 steam: 692850 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\BloodstainedRotN\Saved\Config\WindowsNoEditor\}}' - - >- - {{Game data/config|Microsoft - Store|{{p|localappdata}}\Packages\505GAMESS.P.A.BloodstainedRitualoftheNightPCGP_tefn33qh9azfc\LocalCache\Local\BloodstainedRotN\Saved\Config\WindowsNoEditor\}} - - '{{Game data/saves|Windows|{{p|localappdata}}\BloodstainedRotN\Saved\SaveGames\}}' - - >- - {{Game data/saves|Microsoft - Store|{{p|localappdata}}\Packages\505GAMESS.P.A.BloodstainedRitualoftheNightPCGP_tefn33qh9azfc\LocalCache\Local\BloodstainedRotN\Saved\SaveGames\}} -'Bloodstone: An Epic Dwarven Tale': + - "{{Game data/config|Windows|{{p|localappdata}}\\BloodstainedRotN\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/config|Microsoft Store|{{p|localappdata}}\\Packages\\505GAMESS.P.A.BloodstainedRitualoftheNightPCGP_tefn33qh9azfc\\LocalCache\\Local\\BloodstainedRotN\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\BloodstainedRotN\\Saved\\SaveGames\\}}" + - "{{Game data/saves|Microsoft Store|{{p|localappdata}}\\Packages\\505GAMESS.P.A.BloodstainedRitualoftheNightPCGP_tefn33qh9azfc\\LocalCache\\Local\\BloodstainedRotN\\Saved\\SaveGames\\}}" +"Bloodstone: An Epic Dwarven Tale": pageId: 75370 templates: - - '{{Game data/config|DOS|{{p|game}}\SOUNDRV.DPK}}' - - '{{Game data/saves|DOS|{{p|game}}\DBSAV*.MCS|{{p|game}}\DBSAV.MCI|{{p|game}}\NOTES*.TXT}}' + - "{{Game data/config|DOS|{{p|game}}\\SOUNDRV.DPK}}" + - "{{Game data/saves|DOS|{{p|game}}\\DBSAV*.MCS|{{p|game}}\\DBSAV.MCI|{{p|game}}\\NOTES*.TXT}}" Bloodstream: pageId: 144319 steam: 1049570 -'Bloodwings: Pumpkinhead''s Revenge': +"Bloodwings: Pumpkinhead's Revenge": pageId: 152570 templates: - - '{{Game data/config|DOS|{{p|game}}\*.PHS}}' - - '{{Game data/saves|DOS|{{p|game}}\PUMPKIN.INI}}' + - "{{Game data/config|DOS|{{p|game}}\\*.PHS}}" + - "{{Game data/saves|DOS|{{p|game}}\\PUMPKIN.INI}}" Bloodwood Reload: pageId: 45815 steam: 350990 @@ -21126,7 +20575,7 @@ Bloodwych: pageId: 72466 steam: 1249410 templates: - - '{{Game data/saves|DOS|{{p|game}}\BWYSAVE.*}}' + - "{{Game data/saves|DOS|{{p|game}}\\BWYSAVE.*}}" Bloody Boobs: pageId: 55950 steam: 545250 @@ -21156,7 +20605,7 @@ Bloody Mary: Bloody Mary (2019): pageId: 137380 steam: 886560 -'Bloody Mary: Forgotten Curse': +"Bloody Mary: Forgotten Curse": pageId: 114320 steam: 939410 Bloody Mice: @@ -21175,8 +20624,8 @@ Bloody Spell: pageId: 125589 steam: 992300 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\shixue\BloodySpell\}}' - - '{{Game data/saves|Windows|{{p|game}}\SavesDir\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\shixue\\BloodySpell\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\SavesDir\\}}" Bloody Streets: pageId: 48479 steam: 336110 @@ -21184,9 +20633,9 @@ Bloody Trapland: pageId: 13577 steam: 257750 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Bloody Trapland\}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Bloody Trapland\}}' -'Bloody Trapland 2: Curiosity': + - "{{Game data/config|Windows|{{p|appdata}}\\Bloody Trapland\\}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Bloody Trapland\\}}" +"Bloody Trapland 2: Curiosity": pageId: 59234 steam: 579840 Bloody Walls: @@ -21207,10 +20656,10 @@ Bloom: Bloom (Cyberdei): pageId: 137346 steam: 940870 -'Bloom: Labyrinth': +"Bloom: Labyrinth": pageId: 124276 steam: 717710 -'Bloom: Memories': +"Bloom: Memories": pageId: 145148 steam: 1145440 Blooming Nightshade: @@ -21220,31 +20669,31 @@ Bloons Adventure Time TD: pageId: 127627 steam: 979060 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Ninja Kiwi\Bloons Adventure Time TD\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Ninja Kiwi\\Bloons Adventure Time TD\\}}" Bloons TD 5: pageId: 37658 steam: 306020 templates: - - '{{Game data/config|Windows|{{p|Steam}}\userdata\{{p|uid}}\306020\local\Data\Docs}}' - - '{{Game data/saves|Windows|{{p|Steam}}\userdata\{{p|uid}}\306020\local\Data\Docs}}' + - "{{Game data/config|Windows|{{p|Steam}}\\userdata\\{{p|uid}}\\306020\\local\\Data\\Docs}}" + - "{{Game data/saves|Windows|{{p|Steam}}\\userdata\\{{p|uid}}\\306020\\local\\Data\\Docs}}" Bloons TD 5 Deluxe: pageId: 189646 Bloons TD 6: pageId: 125496 steam: 960090 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\SOFTWARE\Ninja Kiwi\BloonsTD6}}' - - '{{Game data/saves|Windows|{{P|steam}}\userdata\{{p|uid}}\960090}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\Ninja Kiwi\\BloonsTD6}}" + - "{{Game data/saves|Windows|{{P|steam}}\\userdata\\{{p|uid}}\\960090}}" Bloons TD Battles: pageId: 43494 steam: 444640 templates: - - '{{Game data/config|Windows|{{p|game}}\Assets\config.ini}}' + - "{{Game data/config|Windows|{{p|game}}\\Assets\\config.ini}}" Bloons TD Battles 2: pageId: 183511 steam: 1276390 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\NinjaKiwi}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\NinjaKiwi}}" Bloonz Toonz: pageId: 44185 steam: 304190 @@ -21257,16 +20706,16 @@ Bloop Reloaded: Blortasia: pageId: 55938 steam: 497450 -'Blossom Tales 2: The Minotaur Prince': +"Blossom Tales 2: The Minotaur Prince": pageId: 171744 steam: 1747830 templates: - - '{{Game data/saves|Windows|{{P|appdata}}\Blossom Tales 2\save_file_*.txt}}' -'Blossom Tales: The Sleeping King': + - "{{Game data/saves|Windows|{{P|appdata}}\\Blossom Tales 2\\save_file_*.txt}}" +"Blossom Tales: The Sleeping King": pageId: 58684 steam: 446810 templates: - - '{{Game data/saves|Windows|{{p|appdata}}\Blossom Tales\*.txt}}' + - "{{Game data/saves|Windows|{{p|appdata}}\\Blossom Tales\\*.txt}}" Blossoming Yandere 満開 ヤンデレ: pageId: 128413 steam: 660800 @@ -21274,9 +20723,9 @@ Blossoms Bloom Brightest: pageId: 61335 steam: 437720 templates: - - '{{Game data/config|Windows|{{p|game}}\renpy\config.py}}' - - '{{Game data/saves|Windows|{{p|appdata}}\renpy\BBBV-1473772391\*.save|{{p|game}}\game\saves\*.save}}' -'Blow Up Pieces: Unleashed': + - "{{Game data/config|Windows|{{p|game}}\\renpy\\config.py}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\renpy\\BBBV-1473772391\\*.save|{{p|game}}\\game\\saves\\*.save}}" +"Blow Up Pieces: Unleashed": pageId: 132389 steam: 895510 BlowOut: @@ -21284,8 +20733,8 @@ BlowOut: pageId: 88650 steam: 719070 templates: - - '{{Game data/config|Windows|{{p|game}}\system\blowout.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\savegame\}}' + - "{{Game data/config|Windows|{{p|game}}\\system\\blowout.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\savegame\\}}" Blowhards: pageId: 58240 steam: 552000 @@ -21307,10 +20756,10 @@ Bloxyz: Blu Bandana: pageId: 65309 steam: 667830 -'BluBoy: The Journey Begins': +"BluBoy: The Journey Begins": pageId: 130058 steam: 1033250 -'BlubBlub: Quest of the Blob': +"BlubBlub: Quest of the Blob": pageId: 94535 steam: 853780 Bludgeon: @@ -21322,7 +20771,7 @@ Blue Angels Aerobatic Flight Simulator: Blue Bird: pageId: 39624 steam: 434600 -'Blue Boy: Bleeding Out': +"Blue Boy: Bleeding Out": pageId: 150764 steam: 1172150 Blue Crystal: @@ -21335,8 +20784,8 @@ Blue Estate The Game: pageId: 37676 steam: 305380 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\BlueEstate\BEGame\Config\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\BlueEstate\BEGame\SaveData\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\BlueEstate\\BEGame\\Config\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\BlueEstate\\BEGame\\SaveData\\}}" Blue Fire: gog: 1280776741 gogSide: @@ -21344,13 +20793,13 @@ Blue Fire: pageId: 166442 steam: 1220150 templates: - - '{{Game data/config|Amazon Games|{{P|localappdata}}\Local\PROA34\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/config|Steam|{{P|localappdata}}\Blue Fire\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Amazon Games|{{P|localappdata}}\Local\PROA34\Saved\SaveGames\}}' - - '{{Game data/saves|Steam|{{P|localappdata}}\Blue Fire\Saved\SaveGames\}}' + - "{{Game data/config|Amazon Games|{{P|localappdata}}\\Local\\PROA34\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/config|Steam|{{P|localappdata}}\\Blue Fire\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Amazon Games|{{P|localappdata}}\\Local\\PROA34\\Saved\\SaveGames\\}}" + - "{{Game data/saves|Steam|{{P|localappdata}}\\Blue Fire\\Saved\\SaveGames\\}}" Blue Force: pageId: 147150 -'Blue Heat: The Case of the Cover Girl Murders': +"Blue Heat: The Case of the Cover Girl Murders": pageId: 185881 Blue Horizon: pageId: 63034 @@ -21361,7 +20810,7 @@ Blue Lemon: Blue Libra: pageId: 47113 steam: 377890 -'Blue Max: Aces of the Great War': +"Blue Max: Aces of the Great War": gog: 1448462883 pageId: 172793 steam: 1782070 @@ -21372,16 +20821,14 @@ Blue Reflection: pageId: 72218 steam: 658260 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\KoeiTecmo\BLUE REFLECTION\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\KoeiTecmo\BLUE REFLECTION\SAVEDATA\}}' -'Blue Reflection: Second Light': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\KoeiTecmo\\BLUE REFLECTION\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\KoeiTecmo\\BLUE REFLECTION\\SAVEDATA\\}}" +"Blue Reflection: Second Light": pageId: 170450 steam: 1423600 templates: - - >- - {{Game data/config|Windows|{{P|userprofile\Documents}}\KoeiTecmo\BLUE REFLECTION Second - Light\setting.ini|{{P|userprofile\Documents}}\KoeiTecmo\BLUE REFLECTION Second Light\SystemData}} - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\KoeiTecmo\BLUE REFLECTION Second Light\}}' + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\KoeiTecmo\\BLUE REFLECTION Second Light\\setting.ini|{{P|userprofile\\Documents}}\\KoeiTecmo\\BLUE REFLECTION Second Light\\SystemData}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\KoeiTecmo\\BLUE REFLECTION Second Light\\}}" Blue Revolver: pageId: 51392 steam: 439490 @@ -21389,7 +20836,7 @@ Blue Rider: pageId: 44313 steam: 402340 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Ravegan\Blue Rider\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Ravegan\\Blue Rider\\}}" Blue Rose: pageId: 48132 steam: 362660 @@ -21402,7 +20849,7 @@ Blue Sheep: Blue Snake Adventures: pageId: 73671 steam: 722080 -'Blue Solar: Chaos War': +"Blue Solar: Chaos War": pageId: 37870 steam: 501430 Blue Tear: @@ -21411,33 +20858,33 @@ Blue Tear: Blue Time: pageId: 157041 steam: 916340 -'Blue Toad Murder Files: The Mysteries of Little Riddle': +"Blue Toad Murder Files: The Mysteries of Little Riddle": pageId: 41036 steam: 90400 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Relentless Software\}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Relentless Software\}}' + - "{{Game data/config|Windows|{{p|appdata}}\\Relentless Software\\}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Relentless Software\\}}" Blue Whale: pageId: 75435 steam: 744940 Blue sky fighter: pageId: 155444 steam: 1220360 -Blue's 123 Time Activities: +"Blue's 123 Time Activities": pageId: 147412 -Blue's ABC Time Activities: +"Blue's ABC Time Activities": pageId: 147414 -Blue's Art Time Activities: +"Blue's Art Time Activities": pageId: 147420 -Blue's Birthday Adventure: +"Blue's Birthday Adventure": pageId: 57515 templates: - - '{{Game data/saves|Windows|{{p|game}}\}}' -Blue's Journey: + - "{{Game data/saves|Windows|{{p|game}}\\}}" +"Blue's Journey": pageId: 168890 -Blue's Reading Time Activities: +"Blue's Reading Time Activities": pageId: 147418 -Blue's Treasure Hunt: +"Blue's Treasure Hunt": pageId: 147416 Blue-Collar Astronaut: pageId: 58453 @@ -21455,9 +20902,9 @@ Blueberry Garden: pageId: 4716 steam: 29160 templates: - - '{{Game data/config|Windows|{{P|game}}\Content\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/BlueberryGarden/}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/BlueberryGarden/}}' + - "{{Game data/config|Windows|{{P|game}}\\Content\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/BlueberryGarden/}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/BlueberryGarden/}}" BlueberryNOVA: pageId: 90368 steam: 825550 @@ -21468,23 +20915,23 @@ Blueprint Tycoon: pageId: 33488 steam: 454060 templates: - - '{{Game data/saves|Windows|{{p|game}}\BlueprintTycoon_Data\Saves\}}' + - "{{Game data/saves|Windows|{{p|game}}\\BlueprintTycoon_Data\\Saves\\}}" Blueprint Word: pageId: 95579 steam: 870180 -'Blueprint Word: Classroom': +"Blueprint Word: Classroom": pageId: 123450 steam: 955190 Blues and Bullets: pageId: 38297 steam: 378660 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\A Crowd of Monsters\BluesAndBullets\}}' - - '{{Game data/saves|Windows|{{P|game}}\Blues and Bullets_Data\SaveFiles\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\A Crowd of Monsters\\BluesAndBullets\\}}" + - "{{Game data/saves|Windows|{{P|game}}\\Blues and Bullets_Data\\SaveFiles\\}}" Blueshift: pageId: 55490 steam: 565030 -'Bluey: The Videogame': +"Bluey: The Videogame": pageId: 189838 steam: 2078350 Blunt Force: @@ -21494,14 +20941,14 @@ Blur: pageId: 2015 steam: 42640 templates: - - '{{Game data/config|Windows|{{p|appdata}}\bizarre creations\blur\settings.xml}}' - - '{{Game data/saves|Windows|{{p|appdata}}\bizarre creations\blur\save\}}' + - "{{Game data/config|Windows|{{p|appdata}}\\bizarre creations\\blur\\settings.xml}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\bizarre creations\\blur\\save\\}}" Blush Blush: pageId: 128393 steam: 777130 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\SadPandaStudios\BlushBlush\}}' - - '{{Game data/saves|Windows|{{P|game}}\SavesDir\blushblush.sav}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\SadPandaStudios\\BlushBlush\\}}" + - "{{Game data/saves|Windows|{{P|game}}\\SavesDir\\blushblush.sav}}" Blåfjell: pageId: 167077 BoX -containment-: @@ -21528,7 +20975,7 @@ Boat Adventure: Boat Basketball: pageId: 121101 steam: 952270 -'Boat Violence: Ship Happens': +"Boat Violence: Ship Happens": pageId: 149851 steam: 1140720 Bob & Bernard Against The Nazis: @@ -21538,33 +20985,33 @@ Bob Came in Pieces: pageId: 11026 steam: 46000 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Ludosity Interactive\Bob Came in Pieces\}}' - - '{{Game data/saves|Steam|{{P|steam}}\userdata\{{P|uid}}\46000\remote\*.data}}' - - '{{Game data/saves|Windows|{{p|programdata}}\Bob Came In Pieces\Profiles.data}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Ludosity Interactive\\Bob Came in Pieces\\}}" + - "{{Game data/saves|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\46000\\remote\\*.data}}" + - "{{Game data/saves|Windows|{{p|programdata}}\\Bob Came In Pieces\\Profiles.data}}" Bob Was Hungry: pageId: 37836 steam: 343560 -'Bob and Kuura: Lost in Snowglobe': +"Bob and Kuura: Lost in Snowglobe": pageId: 127399 steam: 1013940 Bob and Prickle: pageId: 145302 steam: 1124280 -'Bob the Builder: Bob Builds a Park': +"Bob the Builder: Bob Builds a Park": pageId: 126576 -'Bob the Builder: Bob''s Castle Adventure': +"Bob the Builder: Bob's Castle Adventure": pageId: 126572 templates: - - '{{Game data/saves|Windows|{{P|game}}/DATA}}' -'Bob the Builder: Can We Fix It?': + - "{{Game data/saves|Windows|{{P|game}}/DATA}}" +"Bob the Builder: Can We Fix It?": pageId: 126589 Bob the Cube: pageId: 93901 steam: 854060 -Bob's Cat Challenge: +"Bob's Cat Challenge": pageId: 129807 steam: 1032230 -Bob's game (puzzle game) from "bob's game": +"Bob's game (puzzle game) from \"bob's game\"": pageId: 52516 steam: 529720 Bobbi Cities: @@ -21590,7 +21037,7 @@ Bocce VR: Bode Miller Alpine Skiing: pageId: 91334 templates: - - '{{Game data/saves|Windows|{{p|game}}\Ski Alpin 2006 }}' + - "{{Game data/saves|Windows|{{p|game}}\\Ski Alpin 2006 }}" Body Discovery: pageId: 134638 steam: 1063070 @@ -21608,8 +21055,8 @@ Bohemian Killing: pageId: 42203 steam: 492220 templates: - - '{{Game data/config|Windows|{{p|userprofile\appdata\locallow}}\The Moonwalls\Bohemian Killing}}' - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\The Moonwalls\Bohemian Killing}}' + - "{{Game data/config|Windows|{{p|userprofile\\appdata\\locallow}}\\The Moonwalls\\Bohemian Killing}}" + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\The Moonwalls\\Bohemian Killing}}" Bohnanza the Duel: pageId: 78380 steam: 716100 @@ -21620,24 +21067,24 @@ Boid: pageId: 21079 steam: 314010 templates: - - '{{Game data/saves|Windows|{{p|game}}\GameData\}}' + - "{{Game data/saves|Windows|{{p|game}}\\GameData\\}}" BoidWatch: pageId: 68182 steam: 688050 Boiling Bolt: pageId: 39795 steam: 462250 -'Boiling Point: Road to Hell': +"Boiling Point: Road to Hell": gog: 1866033492 pageId: 4643 steam: 2000760 templates: - - '{{Game data/config|Windows|{{p|game}}\GAME.INI}}' - - '{{Game data/saves|Windows|{{p|game}}\save}}' + - "{{Game data/config|Windows|{{p|game}}\\GAME.INI}}" + - "{{Game data/saves|Windows|{{p|game}}\\save}}" Boiling Steel: pageId: 132773 steam: 1016860 -'Boiling Steel: Preface': +"Boiling Steel: Preface": pageId: 155650 steam: 1216220 Boinks: @@ -21653,7 +21100,7 @@ Bokuten - Why I Became an Angel: pageId: 153802 steam: 668360 templates: - - '{{Game data/saves|Windows|{{p|game}}\UserData\*.sad|{{p|game}}\UserData\*.sah|{{p|game}}\UserData\*.sud}}' + - "{{Game data/saves|Windows|{{p|game}}\\UserData\\*.sad|{{p|game}}\\UserData\\*.sah|{{p|game}}\\UserData\\*.sud}}" Bold Blade: pageId: 79780 steam: 749110 @@ -21670,9 +21117,9 @@ Bolt: pageId: 36471 steam: 340990 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Disney Interactive Studios\Disney Bolt\}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Disney Interactive Studios\Disney Bolt\storage\}}' -'Bolt Riley, A Reggae Adventure': + - "{{Game data/config|Windows|{{p|appdata}}\\Disney Interactive Studios\\Disney Bolt\\}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Disney Interactive Studios\\Disney Bolt\\storage\\}}" +"Bolt Riley, A Reggae Adventure": pageId: 43498 steam: 331210 BoltHalt: @@ -21697,8 +21144,8 @@ Bomb Chicken: pageId: 132536 steam: 658780 templates: - - '{{Game data/config|Windows|{{P|userprofile}}\AppData\LocalLow\Nitrome\BombChicken\Unity\}}' - - '{{Game data/saves|Windows|{{P|hkcu}}\SOFTWARE\Nitrome\BombChicken}}' + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Nitrome\\BombChicken\\Unity\\}}" + - "{{Game data/saves|Windows|{{P|hkcu}}\\SOFTWARE\\Nitrome\\BombChicken}}" Bomb Defense: pageId: 64060 steam: 656680 @@ -21708,7 +21155,7 @@ Bomb Hunter MT: Bomb Labyrinth: pageId: 93214 steam: 839620 -Bomb N' Bats: +"Bomb N' Bats": pageId: 122223 steam: 968620 Bomb Party: @@ -21725,15 +21172,15 @@ Bomb Rush Cyberfunk: pageId: 189066 steam: 1353230 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Team Reptile\Bomb Rush Cyberfunk\}}' - - '{{Game data/saves|GOG.com|{{p|userprofile}}\AppData\LocalLow\Team Reptile\Bomb Rush Cyberfunk\}}' - - '{{Game data/saves|Steam|{{P|steam}}\userdata\{{p|uid}}\1353230\remote\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Team Reptile\\Bomb Rush Cyberfunk\\}}" + - "{{Game data/saves|GOG.com|{{p|userprofile}}\\AppData\\LocalLow\\Team Reptile\\Bomb Rush Cyberfunk\\}}" + - "{{Game data/saves|Steam|{{P|steam}}\\userdata\\{{p|uid}}\\1353230\\remote\\}}" Bomb Squad Academy: pageId: 58563 steam: 591380 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\Systemic Games\Bomb Squad Academy\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Systemic Games\Bomb Squad Academy\}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Systemic Games\\Bomb Squad Academy\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Systemic Games\\Bomb Squad Academy\\}}" Bomb Sworders: pageId: 136060 steam: 1046970 @@ -21755,7 +21202,7 @@ BombTag: pageId: 82010 steam: 791930 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\BombTag\BombTag}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\BombTag\\BombTag}}" Bombastic Cars: pageId: 74267 steam: 714150 @@ -21776,16 +21223,16 @@ Bomber Crew: pageId: 69044 steam: 537800 steamSide: - - 765960 + - 728930 - 754680 - 756070 - - 728930 - 756071 + - 765960 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Runner Duck\Bomber Crew\}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Runner Duck\Bomber Crew\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Runner Duck/Bomber Crew}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Runner Duck/Bomber Crew/}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Runner Duck\\Bomber Crew\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Runner Duck\\Bomber Crew\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Runner Duck/Bomber Crew}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Runner Duck/Bomber Crew/}}" Bomber Fox: pageId: 153708 steam: 1193160 @@ -21803,10 +21250,10 @@ Bombergeddon: steam: 1218310 Bombergirl: pageId: 181663 -'Bombergrounds: Battle Royale': +"Bombergrounds: Battle Royale": pageId: 142221 steam: 1104450 -Bomberman '94: +"Bomberman '94": pageId: 33132 Bombernauts: pageId: 37411 @@ -21821,8 +21268,8 @@ Bombing Bastards: pageId: 49181 steam: 314220 templates: - - '{{Game data/config|Windows|{{p|steam}}/userdata/{{p|uid}}/314220}}' - - '{{Game data/saves|Windows|{{p|steam}}/userdata/{{p|uid}}/314220}}' + - "{{Game data/config|Windows|{{p|steam}}/userdata/{{p|uid}}/314220}}" + - "{{Game data/saves|Windows|{{p|steam}}/userdata/{{p|uid}}/314220}}" Bombing Quest: pageId: 153557 steam: 1018860 @@ -21838,24 +21285,22 @@ Bombman: Bombshell: gog: 1437149977 gogSide: - - 1453909333 - 1453909260 + - 1453909333 pageId: 31109 steam: 353190 templates: - - '{{Game data/config|Windows|{{p|userprofile\documents}}\My Games\Bombshell\ShellGame\Config\}}' - - '{{Game data/saves|Windows|{{p|userprofile\documents}}\My Games\Bombshell\ShellGame\Save\}}' -'Bombshell Barista: Speed Dating': + - "{{Game data/config|Windows|{{p|userprofile\\documents}}\\My Games\\Bombshell\\ShellGame\\Config\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\documents}}\\My Games\\Bombshell\\ShellGame\\Save\\}}" +"Bombshell Barista: Speed Dating": pageId: 190172 steam: 2496850 Bombslinger: pageId: 42251 steam: 475960 templates: - - >- - {{Game - data/config|Windows|{{P|userprofile\appdata\locallow}}\Mode4\Bombslinger\settings.bs|{{P|hkcu}}\SOFTWARE\Mode4\Bombslinger\}} - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Mode4\Bombslinger\statistics.bs}}' + - "{{Game data/config|Windows|{{P|userprofile\\appdata\\locallow}}\\Mode4\\Bombslinger\\settings.bs|{{P|hkcu}}\\SOFTWARE\\Mode4\\Bombslinger\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Mode4\\Bombslinger\\statistics.bs}}" Bombuzal: gog: 1288614568 pageId: 144088 @@ -21876,12 +21321,8 @@ Bonanza Bros.: pageId: 30722 steam: 34284 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\SEGA Mega Drive - Classics\setup.dat|{{p|userprofile\Documents}}\SEGA Genesis Classics\setup.dat}} - - >- - {{Game data/saves|Windows|{{p|userprofile\Documents}}\SEGA Mega Drive - Classics\0012\|{{p|userprofile\Documents}}\SEGA Genesis Classics\0012\}} + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\SEGA Mega Drive Classics\\setup.dat|{{p|userprofile\\Documents}}\\SEGA Genesis Classics\\setup.dat}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\SEGA Mega Drive Classics\\0012\\|{{p|userprofile\\Documents}}\\SEGA Genesis Classics\\0012\\}}" Bonbon: pageId: 74149 steam: 734120 @@ -21903,21 +21344,19 @@ Bone Voyage: pageId: 132692 steam: 1058370 templates: - - >- - {{Game - data/config|Windows|{{p|localappdata}}\Cobblestone\Saved\Config|{{p|localappdata}}\Cobblestone\Saved\SaveGames}} - - '{{Game data/saves|Windows|{{p|localappdata}}\Cobblestone\Saved\SaveGames}}' -'Bone: Out from Boneville': + - "{{Game data/config|Windows|{{p|localappdata}}\\Cobblestone\\Saved\\Config|{{p|localappdata}}\\Cobblestone\\Saved\\SaveGames}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Cobblestone\\Saved\\SaveGames}}" +"Bone: Out from Boneville": pageId: 41358 steam: 8310 templates: - - '{{Game data/config|Windows|{{P|game}}\prefs.prop}}' -'Bone: The Great Cow Race': + - "{{Game data/config|Windows|{{P|game}}\\prefs.prop}}" +"Bone: The Great Cow Race": pageId: 41359 steam: 8320 templates: - - '{{Game data/config|Windows|{{P|game}}\prefs.prop}}' - - '{{Game data/saves|Windows|{{p|game}}\}}' + - "{{Game data/config|Windows|{{P|game}}\\prefs.prop}}" + - "{{Game data/saves|Windows|{{p|game}}\\}}" BoneBone: pageId: 34467 steam: 491080 @@ -21927,8 +21366,8 @@ BoneCraft: BoneTown: pageId: 93539 templates: - - '{{Game data/config|Windows|{{p|appdata}}\BoneTown\game\}}' - - '{{Game data/saves|Windows|{{p|appdata}}\BoneTown\savegames\}}' + - "{{Game data/config|Windows|{{p|appdata}}\\BoneTown\\game\\}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\BoneTown\\savegames\\}}" Boneless Zombie: pageId: 47115 steam: 383700 @@ -21938,8 +21377,8 @@ Boneraiser Minions: - Boneraiser minions steam: 1944570 templates: - - '{{Game data/saves|Windows|{{P|localappdata}}\Boneraiser_Minions}}' -Bones 'n' Bullets: + - "{{Game data/saves|Windows|{{P|localappdata}}\\Boneraiser_Minions}}" +"Bones 'n' Bullets": pageId: 139730 steam: 822310 Bonetown - The Power of Death: @@ -21949,8 +21388,8 @@ Boneworks: pageId: 129124 steam: 823500 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Stress Level Zero\BONEWORKS\}}' - - '{{Game data/saves|Windows|{{p|USERPROFILE}}\AppData\LocalLow\Stress Level Zero\BONEWORKS\*.dat}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Stress Level Zero\\BONEWORKS\\}}" + - "{{Game data/saves|Windows|{{p|USERPROFILE}}\\AppData\\LocalLow\\Stress Level Zero\\BONEWORKS\\*.dat}}" Bonfire: pageId: 151078 steam: 1067580 @@ -21958,12 +21397,12 @@ Bonfire Peaks: pageId: 157035 steam: 1147890 templates: - - '{{Game data/saves|Windows|{{p|appdata}}\LocalLow\Corey Martin\Bonfire Peaks}}' + - "{{Game data/saves|Windows|{{p|appdata}}\\LocalLow\\Corey Martin\\Bonfire Peaks}}" Bonkies: gog: 1806096637 pageId: 100466 steam: 889260 -Bonny's Adventure: +"Bonny's Adventure": pageId: 61484 steam: 620310 Bonsai: @@ -21975,7 +21414,7 @@ Bonsai Castles: Boo Boo Bananas: pageId: 94569 steam: 856580 -'Boo Breakers: The Ghostening': +"Boo Breakers: The Ghostening": pageId: 52161 steam: 547200 Boo Bunny Plague: @@ -21999,7 +21438,7 @@ Boobserman: Booby And The Booby Trap: pageId: 144317 steam: 1126090 -Boofle's Home: +"Boofle's Home": pageId: 59798 steam: 611090 Boogeyman: @@ -22025,8 +21464,8 @@ Book of Demons: pageId: 37301 steam: 449960 templates: - - '{{Game data/saves|Windows|{{P|appdata}}\Return2Games_WIP21}}' -'Book of Demons: Hellcard': + - "{{Game data/saves|Windows|{{P|appdata}}\\Return2Games_WIP21}}" +"Book of Demons: Hellcard": pageId: 157342 steam: 1201540 Book of Eos: @@ -22036,8 +21475,8 @@ Book of Hours: pageId: 137828 steam: 1028310 templates: - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Weather Factory/Book of Hours/}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Weather Factory/Book of Hours/}}' + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Weather Factory/Book of Hours/}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Weather Factory/Book of Hours/}}" Book of Legends: pageId: 51086 steam: 47130 @@ -22061,7 +21500,7 @@ Bookbound Brigade: Bookend: pageId: 129741 steam: 990720 -'Bookers: Underground Chapter': +"Bookers: Underground Chapter": pageId: 96915 steam: 875840 Booking Revolution: @@ -22071,21 +21510,21 @@ Bookworm: pageId: 12491 steam: 3370 templates: - - '{{Game data/saves|Windows|{{p|programdata}}\Steam\Bookworm\players}}' + - "{{Game data/saves|Windows|{{p|programdata}}\\Steam\\Bookworm\\players}}" Bookworm Adventures: pageId: 15420 steam: 3470 templates: - - '{{Game data/config|Steam|{{P|hkcu}}\Software\Steam\WinBAD\}}' - - '{{Game data/saves|Windows|{{p|programdata}}\PopCap Games\WinBAD\users}}' - - '{{Game data/saves|Steam|{{p|programdata}}\Steam\WinBAD\users}}' -'Bookworm Adventures: Volume 2': + - "{{Game data/config|Steam|{{P|hkcu}}\\Software\\Steam\\WinBAD\\}}" + - "{{Game data/saves|Windows|{{p|programdata}}\\PopCap Games\\WinBAD\\users}}" + - "{{Game data/saves|Steam|{{p|programdata}}\\Steam\\WinBAD\\users}}" +"Bookworm Adventures: Volume 2": pageId: 29890 steam: 3630 templates: - - '{{Game data/config|Steam|{{P|hkcu}}\Software\SteamPopCap\BWAVol2\}}' - - '{{Game data/saves|Windows|{{p|programdata}}\PopCap Games\BWAVol2\users\}}' - - '{{Game data/saves|Steam|{{p|programdata}}\Steam\BWAVol2\users\}}' + - "{{Game data/config|Steam|{{P|hkcu}}\\Software\\SteamPopCap\\BWAVol2\\}}" + - "{{Game data/saves|Windows|{{p|programdata}}\\PopCap Games\\BWAVol2\\users\\}}" + - "{{Game data/saves|Steam|{{p|programdata}}\\Steam\\BWAVol2\\users\\}}" Boolean: pageId: 156559 steam: 1212370 @@ -22144,14 +21583,14 @@ Boomerang X: pageId: 154318 steam: 1170060 templates: - - '{{Game data/saves|Windows|{{p|appdata}}\LocalLow\DANG!\BOOMERANG X\}}' + - "{{Game data/saves|Windows|{{p|appdata}}\\LocalLow\\DANG!\\BOOMERANG X\\}}" Boon Boon: pageId: 139304 steam: 1092750 Boons Farm: pageId: 108564 steam: 914500 -'Booper, Get Home!': +"Booper, Get Home!": pageId: 63203 steam: 631670 Boor: @@ -22166,7 +21605,7 @@ BoostBots VR: Booster Trooper: pageId: 18789 steam: 27920 -'Boot : Game Dev Sim': +"Boot : Game Dev Sim": pageId: 156720 steam: 1160480 Boot Camp Fitness: @@ -22182,7 +21621,7 @@ Boot Hill Heroes: pageId: 49528 steam: 313470 templates: - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\SavedGames\Boot Hill Heroes\}}' + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\SavedGames\\Boot Hill Heroes\\}}" Booth: pageId: 78840 steam: 761350 @@ -22195,7 +21634,7 @@ Bootombaa: Booty Calls: pageId: 98300 steam: 823550 -'Booty Calls: Men At Work': +"Booty Calls: Men At Work": pageId: 179809 steam: 1254540 Booty Diver: @@ -22210,15 +21649,15 @@ BootyBuns & 21: Boozy Dwarf: pageId: 54533 steam: 562560 -Bop'N Wrestle: +"Bop'N Wrestle": gog: 2034764467 pageId: 165539 steam: 1315910 -Boppin': +"Boppin'": pageId: 148099 templates: - - '{{Game data/config|DOS|{{Path|Game}}\BOPPIN.CFG}}' - - '{{Game data/saves|DOS|{{Path|Game}}\Bopsave*.bin}}' + - "{{Game data/config|DOS|{{Path|Game}}\\BOPPIN.CFG}}" + - "{{Game data/saves|DOS|{{Path|Game}}\\Bopsave*.bin}}" Boratium Wars: pageId: 73258 steam: 700270 @@ -22251,27 +21690,25 @@ BorderZone: pageId: 50393 steam: 289220 templates: - - '{{Game data/config|Windows|{{p|game}}\saves\config.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\saves}}' + - "{{Game data/config|Windows|{{p|game}}\\saves\\config.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\saves}}" Borderlands: pageId: 64 steam: 8980 steamSide: - - 901566 - 8990 - 40940 - 50110 - 65920 - 301070 + - 901566 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Borderlands\WillowGame\Config\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Borderlands\SaveData\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Borderlands\\WillowGame\\Config\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Borderlands\\SaveData\\}}" Borderlands 2: pageId: 3401 steam: 49520 steamSide: - - 218560 - - 230090 - 207870 - 208690 - 208691 @@ -22283,6 +21720,7 @@ Borderlands 2: - 213781 - 213782 - 218550 + - 218560 - 221710 - 224140 - 224141 @@ -22316,20 +21754,21 @@ Borderlands 2: - 225832 - 225833 - 225834 + - 230090 - 872280 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Borderlands 2\WillowGame\Config\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Borderlands 2/WillowGame/Config/}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/aspyr-media/borderlands 2/willowgame/config/}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Borderlands 2\WillowGame\SaveData\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Borderlands 2/WillowGame/SaveData/}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/aspyr-media/borderlands 2/willowgame/savedata/}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Borderlands 2\\WillowGame\\Config\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Borderlands 2/WillowGame/Config/}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/aspyr-media/borderlands 2/willowgame/config/}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Borderlands 2\\WillowGame\\SaveData\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Borderlands 2/WillowGame/SaveData/}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/aspyr-media/borderlands 2/willowgame/savedata/}}" Borderlands 2 VR: pageId: 148236 steam: 991260 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Borderlands 2 VR\WillowGame\Config\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Borderlands 2 VR\WillowGame\SaveData\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Borderlands 2 VR\\WillowGame\\Config\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Borderlands 2 VR\\WillowGame\\SaveData\\}}" Borderlands 3: pageId: 131630 steam: 397540 @@ -22348,35 +21787,32 @@ Borderlands 3: - 1233062 - 1256890 templates: - - '{{Game data/config|Windows|{{P|userprofile\documents}}\My Games\Borderlands 3\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{P|userprofile\documents}}\My Games\Borderlands 3\Saved\SaveGames\}}' - - '{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/GearboxSoftware/OakGame/Saved/SaveGames/}}' -'Borderlands: Game of the Year Enhanced': + - "{{Game data/config|Windows|{{P|userprofile\\documents}}\\My Games\\Borderlands 3\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\documents}}\\My Games\\Borderlands 3\\Saved\\SaveGames\\}}" + - "{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/GearboxSoftware/OakGame/Saved/SaveGames/}}" +"Borderlands: Game of the Year Enhanced": pageId: 133055 steam: 729040 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Borderlands Game of the Year\WillowGame\Config\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Borderlands Game of the Year\Binaries\SaveData\}}' -'Borderlands: The Pre-Sequel': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Borderlands Game of the Year\\WillowGame\\Config\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Borderlands Game of the Year\\Binaries\\SaveData\\}}" +"Borderlands: The Pre-Sequel": pageId: 17722 steam: 261640 steamSide: - - 319090 + - 275690 - 289880 - 289881 - - 275690 - 316410 + - 319090 - 321430 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Borderlands The Pre-Sequel\WillowGame\Config\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Borderlands The Pre-Sequel/WillowGame/Config/}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/aspyr-media/borderlands the pre-sequel/willowgame/config/}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Borderlands The Pre-Sequel\WillowGame\SaveData\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Borderlands The Pre-Sequel/WillowGame/SaveData/}}' - - >- - {{Game data/saves|Linux|{{P|xdgdatahome}}/aspyr-media/borderlands the - pre-sequel/willowgame/savedata/|~/.var/app/com.valvesoftware.Steam/.local/share/aspyr-media/borderlands the - pre-sequel/willowgame/savedata/}} + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Borderlands The Pre-Sequel\\WillowGame\\Config\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Borderlands The Pre-Sequel/WillowGame/Config/}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/aspyr-media/borderlands the pre-sequel/willowgame/config/}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Borderlands The Pre-Sequel\\WillowGame\\SaveData\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Borderlands The Pre-Sequel/WillowGame/SaveData/}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/aspyr-media/borderlands the pre-sequel/willowgame/savedata/|~/.var/app/com.valvesoftware.Steam/.local/share/aspyr-media/borderlands the pre-sequel/willowgame/savedata/}}" Borderlight: pageId: 130121 steam: 1042900 @@ -22408,15 +21844,15 @@ Boros: Borstal: pageId: 44032 steam: 453730 -Bosch's Damnation: +"Bosch's Damnation": pageId: 47190 steam: 337130 Boson X: pageId: 11055 steam: 302610 templates: - - '{{Game data/config|Windows|{{p|game}}\data\config.lua}}' - - '{{Game data/saves|Windows|{{p|game}}\ltstate}}' + - "{{Game data/config|Windows|{{p|game}}\\data\\config.lua}}" + - "{{Game data/saves|Windows|{{p|game}}\\ltstate}}" Bosorka: pageId: 188542 steam: 2118370 @@ -22438,8 +21874,8 @@ Boss Monster: Boss Rally: pageId: 25884 templates: - - '{{Game data/config|Windows|{{p|game}}}}' - - '{{Game data/saves|Windows|{{p|game}}}}' + - "{{Game data/config|Windows|{{p|game}}}}" + - "{{Game data/saves|Windows|{{p|game}}}}" BossConstructor: pageId: 34053 steam: 330100 @@ -22455,27 +21891,27 @@ Bot Gaiden: Bot Land: pageId: 142044 steam: 1119870 -'Bot Net: Ramshackle Robotics': +"Bot Net: Ramshackle Robotics": pageId: 151469 steam: 1172350 -'Bot Tales: The Crashed': +"Bot Tales: The Crashed": pageId: 96353 steam: 862200 Bot Vice: pageId: 42447 steam: 491040 templates: - - '{{Game data/saves|Windows|{{p|localappdata}}\bot_vice\bc.sav}}' - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/491040/remote/bv.sav}}' + - "{{Game data/saves|Windows|{{p|localappdata}}\\bot_vice\\bc.sav}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/491040/remote/bv.sav}}" Bot War: pageId: 128234 steam: 1016330 -'Botanica: Earthbound': +"Botanica: Earthbound": pageId: 78581 renamedFrom: - - 'Botanica: Earthbound Collector''s Edition' + - "Botanica: Earthbound Collector's Edition" steam: 758610 -'Botanica: Into the Unknown': +"Botanica: Into the Unknown": pageId: 61482 steam: 626780 Botanicula: @@ -22483,16 +21919,16 @@ Botanicula: pageId: 2111 steam: 207690 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\BotaniculaSaves\settings.txt}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Amanita Design/Botanicula/settings.txt}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/Documents/BotaniculaSaves/settings.txt}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\BotaniculaSaves\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Amanita Design/Botanicula/}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/Documents/BotaniculaSaves/}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\BotaniculaSaves\\settings.txt}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Amanita Design/Botanicula/settings.txt}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/Documents/BotaniculaSaves/settings.txt}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\BotaniculaSaves\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Amanita Design/Botanicula/}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/Documents/BotaniculaSaves/}}" Botanik: pageId: 155384 steam: 1135160 -Botlike - a robot's rampage: +"Botlike - a robot's rampage": pageId: 66981 steam: 643830 Botology: @@ -22505,7 +21941,7 @@ Bottle: pageId: 43466 steam: 463030 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Bottle\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\Bottle\\Saved\\SaveGames\\}}" Bottle Flip Challenge VR: pageId: 61004 steam: 620140 @@ -22518,10 +21954,10 @@ Bottle Shooter: Bottle of truth: pageId: 104491 steam: 907950 -'Bottle: Pilgrim Redux': +"Bottle: Pilgrim Redux": pageId: 74257 renamedFrom: - - 'Bottle: Pilgrim' + - "Bottle: Pilgrim" steam: 735350 Bottler3000: pageId: 153679 @@ -22533,19 +21969,19 @@ Boulder Dash - 30th Anniversary: pageId: 38929 steam: 502320 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Tapstar Interactive\Boulder Dash®\}}' - - '{{Game data/saves|Windows|{{p|hkcu}}\Software\Tapstar Interactive\Boulder Dash®\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Tapstar Interactive\\Boulder Dash®\\}}" + - "{{Game data/saves|Windows|{{p|hkcu}}\\Software\\Tapstar Interactive\\Boulder Dash®\\}}" Boulder Dash Deluxe: gog: 1160592599 pageId: 173534 steam: 1221650 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\BBG Entertainment\Boulder Dash Deluxe}}' - - '{{Game data/saves|Windows|{{p|hkcu}}\Software\BBG Entertainment\Boulder Dash Deluxe}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\BBG Entertainment\\Boulder Dash Deluxe}}" + - "{{Game data/saves|Windows|{{p|hkcu}}\\Software\\BBG Entertainment\\Boulder Dash Deluxe}}" Bouldering Brawl: pageId: 96067 steam: 790070 -'Boulders: Puzzle': +"Boulders: Puzzle": pageId: 180392 steam: 1492290 Bounce: @@ -22572,7 +22008,7 @@ Bounced: Bouncers: pageId: 79287 steam: 772740 -'Bouncing DVD : The Game': +"Bouncing DVD : The Game": pageId: 127293 steam: 1014370 Bouncing Duck Simulator: @@ -22590,7 +22026,7 @@ Bouncing Over It with friends: Bouncy Bob: pageId: 66989 steam: 680620 -'Bouncy Bob: Episode 2': +"Bouncy Bob: Episode 2": pageId: 145121 steam: 1117330 Bouncy Butter Ball: @@ -22599,23 +22035,15 @@ Bouncy Butter Ball: Bouncy Ducks: pageId: 97511 templates: - - >- - {{Game - data/config|Windows|{{p|localappdata}}\Osgoode_Media\BouncyDucks.exe_Url_az3l1eymz112qx3vdmfaz5xueyjomagc\1.0.0.0\user.config}} - - >- - {{Game data/config|Microsoft - Store|{{p|localappdata}}\Packages\16591Monstrous.BouncyDucks_skedv6py88bbr\Settings\settings.dat}} - - >- - {{Game - data/saves|Windows|{{p|localappdata}}\Osgoode_Media\BouncyDucks.exe_Url_az3l1eymz112qx3vdmfaz5xueyjomagc\1.0.0.0\user.config}} - - >- - {{Game data/saves|Microsoft - Store|{{p|localappdata}}\Packages\16591Monstrous.BouncyDucks_skedv6py88bbr\Settings\settings.dat}} + - "{{Game data/config|Windows|{{p|localappdata}}\\Osgoode_Media\\BouncyDucks.exe_Url_az3l1eymz112qx3vdmfaz5xueyjomagc\\1.0.0.0\\user.config}}" + - "{{Game data/config|Microsoft Store|{{p|localappdata}}\\Packages\\16591Monstrous.BouncyDucks_skedv6py88bbr\\Settings\\settings.dat}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Osgoode_Media\\BouncyDucks.exe_Url_az3l1eymz112qx3vdmfaz5xueyjomagc\\1.0.0.0\\user.config}}" + - "{{Game data/saves|Microsoft Store|{{p|localappdata}}\\Packages\\16591Monstrous.BouncyDucks_skedv6py88bbr\\Settings\\settings.dat}}" Bound By Blades: pageId: 122918 steam: 973070 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Zeth\Bound By Blades}}' + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Zeth\\Bound By Blades}}" Bound To Light: pageId: 74327 steam: 711760 @@ -22627,12 +22055,10 @@ Bound by Flame: pageId: 17351 steam: 243930 templates: - - >- - {{Game data/config|Windows|{{P|userprofile\Documents}}\Bound by - Flame\graphicconfig.txt|{{P|userprofile\Documents}}\Bound by Flame\*.profile}} - - '{{Game data/config|Linux|{{p|linuxhome}}/BoundByFlame/}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\Bound by Flame\*.fsav}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/BoundByFlame/}}' + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\Bound by Flame\\graphicconfig.txt|{{P|userprofile\\Documents}}\\Bound by Flame\\*.profile}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/BoundByFlame/}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\Bound by Flame\\*.fsav}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/BoundByFlame/}}" Boundary: pageId: 132278 steam: 1004180 @@ -22657,13 +22083,13 @@ Bounty Hunter: Bounty Hunter (Avalon Studio): pageId: 137442 steam: 1057030 -'Bounty Hunter: Ocean Diver': +"Bounty Hunter: Ocean Diver": pageId: 90937 steam: 830510 -'Bounty Hunter: Space Detective': +"Bounty Hunter: Space Detective": pageId: 90136 steam: 827270 -'Bounty Hunter: Stampede': +"Bounty Hunter: Stampede": pageId: 90512 steam: 827900 Bounty Killer: @@ -22674,14 +22100,14 @@ Bounty Train: pageId: 36351 steam: 371520 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Daedalic Entertainment GmbH\Bounty Train}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Daedalic Entertainment GmbH\Bounty Train}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Daedalic Entertainment GmbH\\Bounty Train}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Daedalic Entertainment GmbH\\Bounty Train}}" Bounty of One: pageId: 186871 steam: 1968730 templates: - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\OptizOnion\BountyOfOne}}' -'Bow to Blood: Last Captain Standing': + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\OptizOnion\\BountyOfOne}}" +"Bow to Blood: Last Captain Standing": pageId: 128493 steam: 956500 BowMage: @@ -22693,7 +22119,7 @@ Bowl Bound College Football: Bowl VR: pageId: 34573 steam: 494350 -'Bowlbo: The Quest for Bing Bing': +"Bowlbo: The Quest for Bing Bing": pageId: 167090 steam: 1048250 Bowling Over It: @@ -22726,7 +22152,7 @@ Box Looter 2018: Box Maze: pageId: 38861 steam: 512020 -'Box Maze 2: Agent Cubert': +"Box Maze 2: Agent Cubert": pageId: 70621 steam: 682630 Box Maze Extreme: @@ -22738,17 +22164,13 @@ Box Out!: Box PC3: pageId: 151969 templates: - - '{{Game data/config|Windows|C:\pc3\drakssen\boxeo\keywiz.cfg}}' -'Box: The Game': + - "{{Game data/config|Windows|C:\\pc3\\drakssen\\boxeo\\keywiz.cfg}}" +"Box: The Game": pageId: 98664 steam: 879850 templates: - - >- - {{Game - data/config|Windows|{{P|localappdata}}\Box\Saved\SaveGames\GameSettingsSave.sav|{{P|localappdata}}\Box\Saved\Config\WindowsNoEditor\}} - - >- - {{Game data/saves|Windows|{{P|localappdata}}\Box\Saved\SaveGames\Move Count - Slot.sav|{{P|localappdata}}\Box\Saved\SaveGames\SaveSlot.sav}} + - "{{Game data/config|Windows|{{P|localappdata}}\\Box\\Saved\\SaveGames\\GameSettingsSave.sav|{{P|localappdata}}\\Box\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Box\\Saved\\SaveGames\\Move Count Slot.sav|{{P|localappdata}}\\Box\\Saved\\SaveGames\\SaveSlot.sav}}" BoxCat: pageId: 82657 steam: 790630 @@ -22782,7 +22204,7 @@ Boxing Apocalypse: Boxing Champs: pageId: 135486 steam: 1073410 -'Boxing Fighter: Super Punch': +"Boxing Fighter: Super Punch": pageId: 90110 steam: 804620 Boxing Saga: @@ -22833,7 +22255,7 @@ Boy VS Genius 贫穷少年与校园名人的生死对决: Boy and Labyrinth: pageId: 90050 steam: 789710 -Boy's Love: +"Boy's Love": pageId: 94639 steam: 859760 Boyar: @@ -22843,29 +22265,27 @@ Boyfriend Dungeon: pageId: 77407 steam: 674930 templates: - - >- - {{Game data/saves|Microsoft - Store|{{P|localappdata}}\Packages\20748KitfoxGamesInc.BoyfriendDungeon_ndj3659pgnjmr\SystemAppData}} + - "{{Game data/saves|Microsoft Store|{{P|localappdata}}\\Packages\\20748KitfoxGamesInc.BoyfriendDungeon_ndj3659pgnjmr\\SystemAppData}}" Braid: gog: 1461061433 pageId: 1673 steam: 26800 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Braid\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Preferences/Braid/}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.Braid/}}' - - '{{Game data/config|Steam|{{P|Steam}}/userdata/{{P|uid}}/26800/}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Braid\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Preferences/Braid/}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.Braid/}}' - - '{{Game data/saves|Steam|{{P|Steam}}/userdata/{{P|uid}}/26800/}}' + - "{{Game data/config|Windows|{{p|appdata}}\\Braid\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Preferences/Braid/}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.Braid/}}" + - "{{Game data/config|Steam|{{P|Steam}}/userdata/{{P|uid}}/26800/}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Braid\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Preferences/Braid/}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.Braid/}}" + - "{{Game data/saves|Steam|{{P|Steam}}/userdata/{{P|uid}}/26800/}}" Braid Anniversary Edition: pageId: 162560 Brain / Out: pageId: 58423 steam: 578310 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\.prefs}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\.prefs}}" Brain 43°C: pageId: 96379 steam: 863870 @@ -22886,7 +22306,7 @@ Brain In My Head: Brain Machine: pageId: 66233 steam: 601120 -'Brain Storm: Tower Bombarde': +"Brain Storm: Tower Bombarde": pageId: 65484 steam: 669750 Brain Voyagers: @@ -22907,7 +22327,7 @@ BrainBread 2: pageId: 42221 steam: 346330 templates: - - '{{Game data/config|Windows|{{p|game}}/brainbread2/cfg}}' + - "{{Game data/config|Windows|{{p|game}}/brainbread2/cfg}}" BrainCloud Bombers: pageId: 144202 steam: 1013340 @@ -22926,24 +22346,22 @@ Brainstorm: Brainy Joy: pageId: 76526 steam: 732010 -Bram Stoker's Dracula: +"Bram Stoker's Dracula": pageId: 176872 -'Bramble: The Mountain King': +"Bramble: The Mountain King": pageId: 182676 steam: 1623940 steamSide: - 2161880 - 2362270 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Bramble_TMK\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\Bramble_TMK\Saved\SaveGames\}}' - - >- - {{Game data/saves|Microsoft - Store|{{P|localappdata}}\Packages\MergeGamesLimited.BrambleTheMountainKing_j1rzjmssdh5zy\SystemAppData\wgs}} + - "{{Game data/config|Windows|{{P|localappdata}}\\Bramble_TMK\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Bramble_TMK\\Saved\\SaveGames\\}}" + - "{{Game data/saves|Microsoft Store|{{P|localappdata}}\\Packages\\MergeGamesLimited.BrambleTheMountainKing_j1rzjmssdh5zy\\SystemAppData\\wgs}}" BrambleLash: pageId: 69244 steam: 453220 -'Brane: Prototype': +"Brane: Prototype": pageId: 96907 steam: 875710 Brass: @@ -22959,7 +22377,7 @@ Brassheart: gog: 1681700510 pageId: 139528 steam: 1072550 -'Brath: Brain and Math': +"Brath: Brain and Math": pageId: 99866 steam: 887660 Brathian: @@ -22967,7 +22385,7 @@ Brathian: steam: 868430 Bratz: pageId: 136325 -'Bratz: Rock Angelz': +"Bratz: Rock Angelz": pageId: 136323 Bravada: pageId: 49733 @@ -22982,7 +22400,7 @@ Brave Alchemist Colette: gog: 1809056267 pageId: 150824 steam: 1135830 -'Brave Battle Saga: The Legend of The Magic Warrior': +"Brave Battle Saga: The Legend of The Magic Warrior": pageId: 129805 steam: 1028520 Brave Dungeon: @@ -22991,7 +22409,7 @@ Brave Dungeon: Brave Dungeon II: pageId: 123515 steam: 980220 -'Brave Earth: Prologue': +"Brave Earth: Prologue": gog: 1279379855 pageId: 72557 steam: 706680 @@ -23005,7 +22423,7 @@ Brave Hero Yuusha EX: pageId: 122622 steam: 969690 templates: - - '{{Game data/saves|Windows|{{p|game}}\Save*.rvdata2}}' + - "{{Game data/saves|Windows|{{p|game}}\\Save*.rvdata2}}" Brave Knight Runner: pageId: 129619 renamedFrom: @@ -23014,25 +22432,25 @@ Brave Knight Runner: Brave Path: pageId: 65656 steam: 669310 -'Brave: The Video Game': +"Brave: The Video Game": pageId: 49562 steam: 301830 templates: - - '{{Game data/saves|Windows|{{p|appdata}}\Behaviour Interactive\BRAVE\}}' + - "{{Game data/saves|Windows|{{p|appdata}}\\Behaviour Interactive\\BRAVE\\}}" Braveland: gog: 1207662143 pageId: 19497 steam: 285800 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\SOFTWARE\Tortuga Team\Braveland\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Tortuga Team\Braveland\}}' - - '{{Game data/saves|Steam|{{P|steam}}/userdata/{{P|uid}}/285800/remote/*-Save.dat}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\SOFTWARE\\Tortuga Team\\Braveland\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Tortuga Team\\Braveland\\}}" + - "{{Game data/saves|Steam|{{P|steam}}/userdata/{{P|uid}}/285800/remote/*-Save.dat}}" Braveland Heroes: pageId: 113966 steam: 931650 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Tortuga Team\Braveland Heroes\}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Tortuga Team\Braveland Heroes\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Tortuga Team\\Braveland Heroes\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Tortuga Team\\Braveland Heroes\\}}" Braveland Pirate: gog: 1446636874 pageId: 34304 @@ -23042,16 +22460,14 @@ Braveland Wizard: pageId: 21722 steam: 333880 templates: - - '{{Game data/config|Windows|{{p|HKCU}}\Software\Tortuga Team\Braveland Wizard\}}' - - '{{Game data/saves|Steam|{{P|steam}}/userdata/{{P|uid}}/333880/remote/*-Save1.dat}}' + - "{{Game data/config|Windows|{{p|HKCU}}\\Software\\Tortuga Team\\Braveland Wizard\\}}" + - "{{Game data/saves|Steam|{{P|steam}}/userdata/{{P|uid}}/333880/remote/*-Save1.dat}}" Bravely Default II: pageId: 171015 steam: 1446650 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Bravely_Default_II\Steam\{{P|uid}}\Saved\Config\}}' - - >- - {{Game data/saves|Windows|{{p|userprofile\Documents}}\My - Games\Bravely_Default_II\Steam\{{P|uid}}\Saved\SaveGames\}} + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Bravely_Default_II\\Steam\\{{P|uid}}\\Saved\\Config\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Bravely_Default_II\\Steam\\{{P|uid}}\\Saved\\SaveGames\\}}" Bravery & Greed: pageId: 181633 renamedFrom: @@ -23060,7 +22476,7 @@ Bravery & Greed: Bravery Network Online: pageId: 130743 steam: 1027120 -'Bravery: Rise of The Last Hero': +"Bravery: Rise of The Last Hero": pageId: 62717 steam: 613970 Braverz: @@ -23087,14 +22503,14 @@ BrawlQuest: Brawlderdash: pageId: 38935 steam: 525590 -'Brawlerz: Nitro': +"Brawlerz: Nitro": pageId: 61750 steam: 342660 Brawlhalla: pageId: 31292 steam: 291550 templates: - - '{{Game data/saves|Windows|{{p|appdata}}\BrawlhallaAir\}}' + - "{{Game data/saves|Windows|{{p|appdata}}\\BrawlhallaAir\\}}" Brawlout: pageId: 51517 steam: 263720 @@ -23118,23 +22534,23 @@ Breach & Clear: pageId: 17523 steam: 266130 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\SOFTWARE\Mighty Rabbit Studios\Breach & Clear\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Preferences/unity.Mighty Rabbit Studios.Breach _ Clear.plist}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\SavedGames\BreachClear\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Documents/SavedGames/BreachClear/}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/Documents/SavedGames/BreachClear/}}' -'Breach & Clear: Deadline': + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\Mighty Rabbit Studios\\Breach & Clear\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Preferences/unity.Mighty Rabbit Studios.Breach _ Clear.plist}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\SavedGames\\BreachClear\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Documents/SavedGames/BreachClear/}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/Documents/SavedGames/BreachClear/}}" +"Breach & Clear: Deadline": gog: 1434036647 pageId: 22518 steam: 310890 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\SavedGames\DEADline\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\SavedGames\\DEADline\\}}" Breach (2011): pageId: 185902 steam: 72300 templates: - - '{{Game data/config|Windows|{{P|steam}}\userdata\\72300\remote}}' - - '{{Game data/saves|Windows|{{P|steam}}\userdata\\72300\remote}}' + - "{{Game data/config|Windows|{{P|steam}}\\userdata\\\\72300\\remote}}" + - "{{Game data/saves|Windows|{{P|steam}}\\userdata\\\\72300\\remote}}" Breach It: pageId: 59516 steam: 591790 @@ -23147,7 +22563,7 @@ Breach of Contract Online: Breach of Contract Reloaded: pageId: 88730 steam: 811750 -'Breach: The Archangel Job': +"Breach: The Archangel Job": pageId: 153260 steam: 1166840 Breached: @@ -23165,7 +22581,7 @@ Bread & Fred: steamSide: - 1763200 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\SandCastles\Bread_Fred}}' + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\SandCastles\\Bread_Fred}}" BreadHead Adventure: pageId: 152817 steam: 1188070 @@ -23198,7 +22614,7 @@ Break The Cookie: Break The Food Chain: pageId: 65604 steam: 635980 -'Break Through: Artificial Maze': +"Break Through: Artificial Maze": pageId: 42428 steam: 454480 Break Time!: @@ -23228,8 +22644,8 @@ BreakHack: BreakQuest: pageId: 24678 templates: - - '{{Game data/config|Windows|{{p|game}}\quest.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\scores\*.his}}' + - "{{Game data/config|Windows|{{p|game}}\\quest.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\scores\\*.his}}" BreakThru: gog: 1637465515 pageId: 169495 @@ -23265,8 +22681,8 @@ Breakneck: pageId: 44740 steam: 432940 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\PikPok\Breakneck\}}' - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\PikPok\Breakneck\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\PikPok\\Breakneck\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\PikPok\\Breakneck\\}}" Breakneck City: pageId: 156903 steam: 1210340 @@ -23276,7 +22692,7 @@ Breakout: Breakout Invaders: pageId: 48106 steam: 366700 -'Breakout: Recharged': +"Breakout: Recharged": gog: 1340291710 pageId: 174639 steam: 1714190 @@ -23284,19 +22700,19 @@ Breakwaters: pageId: 172803 steam: 1203180 templates: - - '{{Game data/config|Windows|{{p|userprofile\AppData\LocalLow}}\SoaringPixels\Breakwaters}}' -'Breath of Death VII: The Beginning': + - "{{Game data/config|Windows|{{p|userprofile\\AppData\\LocalLow}}\\SoaringPixels\\Breakwaters}}" +"Breath of Death VII: The Beginning": pageId: 6705 steam: 107300 templates: - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\SavedGames\BoDVIIPC\}}' + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\SavedGames\\BoDVIIPC\\}}" Breath of Fire III: pageId: 182741 Breath of Fire IV: pageId: 22583 templates: - - '{{Game data/config|Windows|{{p|game}}}}' - - '{{Game data/saves|Windows|{{p|game}}}}' + - "{{Game data/config|Windows|{{p|game}}}}" + - "{{Game data/saves|Windows|{{p|game}}}}" Breath of Warfare: pageId: 77279 steam: 746090 @@ -23311,25 +22727,23 @@ Breathedge: pageId: 88208 steam: 738520 templates: - - '{{Game data/config|Windows|{{P|game}}\Breathedge\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{P|game}}\Breathedge\Saved\SaveGames\}}' - - >- - {{Game data/saves|Microsoft - Store|{{p|localappdata}}\Packages\HypeTrainDigital.BreathedgePC_7t701d8q7nf00\SystemAppData\wgs\}} + - "{{Game data/config|Windows|{{P|game}}\\Breathedge\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{P|game}}\\Breathedge\\Saved\\SaveGames\\}}" + - "{{Game data/saves|Microsoft Store|{{p|localappdata}}\\Packages\\HypeTrainDigital.BreathedgePC_7t701d8q7nf00\\SystemAppData\\wgs\\}}" Breathing Fear: pageId: 51308 steam: 535400 Breed: pageId: 165885 templates: - - '{{Game data/config|Windows|{{p|game}}\Breed.Cfg|{{p|game}}\Controllers.dat}}' - - '{{Game data/saves|Windows|{{p|game}}\Game Saves}}' -'Breeders of the Nephelym: Alpha': + - "{{Game data/config|Windows|{{p|game}}\\Breed.Cfg|{{p|game}}\\Controllers.dat}}" + - "{{Game data/saves|Windows|{{p|game}}\\Game Saves}}" +"Breeders of the Nephelym: Alpha": pageId: 148753 steam: 1161770 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\OBF\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\OBF\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\OBF\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\OBF\\Saved\\SaveGames\\}}" Breen Origins: pageId: 135907 steam: 908030 @@ -23351,17 +22765,17 @@ Brew-Ha: Brewer: pageId: 135718 steam: 1064200 -'Brewmaster: Beer Brewing Simulator': +"Brewmaster: Beer Brewing Simulator": pageId: 182200 steam: 1569200 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\BrewmasterMain\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\BrewmasterMain\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\BrewmasterMain\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\BrewmasterMain\\Saved\\SaveGames\\}}" Brian Lara Cricket: pageId: 91703 -Brian Lara Cricket '96: +"Brian Lara Cricket '96": pageId: 91702 -Brian Lara Cricket '99: +"Brian Lara Cricket '99": pageId: 91698 Brian Lara International Cricket 2005: pageId: 91687 @@ -23402,8 +22816,8 @@ Brick Rigs: pageId: 52910 steam: 552100 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\BrickRigs\Saved\Config}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\BrickRigs\Saved}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\BrickRigs\\Saved\\Config}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\BrickRigs\\Saved}}" Brick Stack VR: pageId: 42057 steam: 504840 @@ -23420,10 +22834,10 @@ Brickadia: pageId: 161186 steam: 2199420 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Brickadia\Saved\Config\WindowsNoEditor}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/Epic/Brickadia/Saved/Config/LinuxNoEditor}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Brickadia\Saved}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/Epic/Brickadia/Saved}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Brickadia\\Saved\\Config\\WindowsNoEditor}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/Epic/Brickadia/Saved/Config/LinuxNoEditor}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Brickadia\\Saved}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/Epic/Brickadia/Saved}}" Brickfest: pageId: 92919 steam: 845940 @@ -23441,59 +22855,45 @@ Bridge Constructor: pageId: 18606 steam: 250460 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\ClockStone Software GmbH\Bridge Constructor}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\ClockStone Software GmbH\Bridge Constructor}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\ClockStone Software GmbH\\Bridge Constructor}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\ClockStone Software GmbH\\Bridge Constructor}}" Bridge Constructor Medieval: gog: 1633252128 pageId: 49653 steam: 319850 templates: - - >- - {{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/ClockStone Software GmbH/Bridge Constructor - Medieval/prefs|{{P|xdgconfighome}}/unity3d/ClockStone Software GmbH/Bridge Constructor Medieval/Profile.dat}} - - >- - {{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\ClockStone Software GmbH\Bridge Constructor - Medieval}} - - '{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/ClockStone Software GmbH/Bridge Constructor Medieval/Region*}}' + - "{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/ClockStone Software GmbH/Bridge Constructor Medieval/prefs|{{P|xdgconfighome}}/unity3d/ClockStone Software GmbH/Bridge Constructor Medieval/Profile.dat}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\ClockStone Software GmbH\\Bridge Constructor Medieval}}" + - "{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/ClockStone Software GmbH/Bridge Constructor Medieval/Region*}}" Bridge Constructor Playground: gog: 1751054287 pageId: 50019 steam: 279990 templates: - - >- - {{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\ClockStone Software GmbH\Bridge Constructor - Playground\}} - - '{{Game data/saves|Linux|{{p|xdgconfighome}}/unity3d/ClockStone Software GmbH/Bridge Constructor Playground/}}' + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\ClockStone Software GmbH\\Bridge Constructor Playground\\}}" + - "{{Game data/saves|Linux|{{p|xdgconfighome}}/unity3d/ClockStone Software GmbH/Bridge Constructor Playground/}}" Bridge Constructor Portal: gog: 1942942943 pageId: 78196 steam: 684410 templates: - - >- - {{Game data/config|Windows|{{P|userprofile}}\AppData\LocalLow\ClockStone Software GmbH\Bridge Constructor - Portal\}} - - '{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/ClockStone Software GmbH/Bridge Constructor Portal/}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\ClockStone Software GmbH\Bridge Constructor Portal\}}' - - >- - {{Game data/saves|Microsoft - Store|{{P|localappdata}}\Packages\HeadupGames.BridgeConstructorPortal_zedvb25zy7eke\SystemAppData\wgs\{{p|uid}}\}} - - >- - {{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/ClockStone Software GmbH/Bridge Constructor - Portal/}} - - '{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/ClockStone Software GmbH/Bridge Constructor Portal/}}' + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\ClockStone Software GmbH\\Bridge Constructor Portal\\}}" + - "{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/ClockStone Software GmbH/Bridge Constructor Portal/}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\ClockStone Software GmbH\\Bridge Constructor Portal\\}}" + - "{{Game data/saves|Microsoft Store|{{P|localappdata}}\\Packages\\HeadupGames.BridgeConstructorPortal_zedvb25zy7eke\\SystemAppData\\wgs\\{{p|uid}}\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/ClockStone Software GmbH/Bridge Constructor Portal/}}" + - "{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/ClockStone Software GmbH/Bridge Constructor Portal/}}" Bridge Constructor Stunts: gog: 1827432329 pageId: 44481 steam: 419080 -'Bridge Constructor: The Walking Dead': +"Bridge Constructor: The Walking Dead": gog: 1381086285 pageId: 165199 steam: 1336120 templates: - - >- - {{Game data/config|Windows|{{P|userprofile\appdata\locallow}}\ClockStone Software GmbH\BC - TWD\Profile.dat|{{P|hkcu}}\SOFTWARE\ClockStone Software GmbH\BC TWD\}} - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\ClockStone Software GmbH\BC TWD\Profile.dat}}' + - "{{Game data/config|Windows|{{P|userprofile\\appdata\\locallow}}\\ClockStone Software GmbH\\BC TWD\\Profile.dat|{{P|hkcu}}\\SOFTWARE\\ClockStone Software GmbH\\BC TWD\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\ClockStone Software GmbH\\BC TWD\\Profile.dat}}" Bridge Creator 2015: pageId: 48887 steam: 345790 @@ -23504,19 +22904,19 @@ Bridge Project: pageId: 40638 steam: 232950 templates: - - '{{Game data/saves|Windows|{{p|localappdata}}\BridgeProject}}' + - "{{Game data/saves|Windows|{{p|localappdata}}\\BridgeProject}}" Bridge Trek: pageId: 88033 steam: 749180 -'Bridge to Another World: Burnt Dreams': +"Bridge to Another World: Burnt Dreams": pageId: 60904 renamedFrom: - - 'Bridge to Another World: Burnt Dreams Collector''s Edition' + - "Bridge to Another World: Burnt Dreams Collector's Edition" steam: 622150 -'Bridge to Another World: The Others': +"Bridge to Another World: The Others": pageId: 76032 renamedFrom: - - 'Bridge to Another World: The Others Collector''s Edition' + - "Bridge to Another World: The Others Collector's Edition" steam: 748580 Bridge to Nowhere: pageId: 51350 @@ -23539,31 +22939,31 @@ Brief Karate Foolish: Brig 12: pageId: 104681 steam: 792920 -'Brigade E5: New Jagged Union': +"Brigade E5: New Jagged Union": gog: 1195536799 pageId: 28944 steam: 296210 templates: - - '{{Game data/config|Windows|{{p|game}}\Config.e5c|{{p|game}}\AutoCamera.cfg|{{p|game}}\keys.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\Saves}}' + - "{{Game data/config|Windows|{{p|game}}\\Config.e5c|{{p|game}}\\AutoCamera.cfg|{{p|game}}\\keys.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\Saves}}" Brigador Killers: pageId: 139682 steam: 903930 -'Brigador: Up-Armored Edition': +"Brigador: Up-Armored Edition": gog: 1356485086 gogSide: - - 1178372828 - 1118047580 + - 1178372828 pageId: 34081 steam: 274500 steamSide: - 468280 templates: - - '{{Game data/config|Windows|{{p|game}}\settings.json|{{p|game}}\profile.json}}' - - '{{Game data/config|Linux|{{p|game}}/game/imgui.ini|{{p|game}}/game/settings.json|{{p|game}}/game/profile.json}}' - - '{{Game data/saves|Windows|{{p|game}}\profile.json}}' - - '{{Game data/saves|Linux|{{p|game}}/game/profile.json}}' -'Brigand: Oaxaca': + - "{{Game data/config|Windows|{{p|game}}\\settings.json|{{p|game}}\\profile.json}}" + - "{{Game data/config|Linux|{{p|game}}/game/imgui.ini|{{p|game}}/game/settings.json|{{p|game}}/game/profile.json}}" + - "{{Game data/saves|Windows|{{p|game}}\\profile.json}}" + - "{{Game data/saves|Linux|{{p|game}}/game/profile.json}}" +"Brigand: Oaxaca": gog: 1816592636 pageId: 64016 steam: 652410 @@ -23573,16 +22973,14 @@ Brigador Killers: - 1667070 - 2174110 templates: - - '{{Game data/config|Windows|{{p|game}}\Settings.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\Saves}}' -'Brigandine: The Legend of Runersia': + - "{{Game data/config|Windows|{{p|game}}\\Settings.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\Saves}}" +"Brigandine: The Legend of Runersia": pageId: 176887 steam: 1843940 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\SOFTWARE\Happinet\Brigandine: The Legend of Runersia}}' - - >- - {{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Happinet\Brigandine_ The Legend of - Runersia\SaveDatas\*.dat}} + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\Happinet\\Brigandine: The Legend of Runersia}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Happinet\\Brigandine_ The Legend of Runersia\\SaveDatas\\*.dat}}" Bright Bird: pageId: 132921 steam: 1007810 @@ -23597,24 +22995,24 @@ Bright Memory: pageId: 125021 steam: 955050 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\BrightMemory_EP1\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\BrightMemory_EP1\Saved\SaveGames}}' -'Bright Memory: Infinite': + - "{{Game data/config|Windows|{{p|localappdata}}\\BrightMemory_EP1\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\BrightMemory_EP1\\Saved\\SaveGames}}" +"Bright Memory: Infinite": gog: 1787213019 gogSide: - - 1663059313 - - 2096998203 + - 1088118940 - 1090152621 - - 1757262951 - 1150122974 - 1303688150 - - 1088118940 - - 1779097696 - - 1752592313 - 1456474829 - - 1757329659 - - 1873841175 + - 1663059313 - 1707477102 + - 1752592313 + - 1757262951 + - 1757329659 + - 1779097696 + - 1873841175 + - 2096998203 pageId: 157489 steam: 1178830 steamSide: @@ -23628,8 +23026,8 @@ Bright Memory: - 2218530 - 2218531 templates: - - '{{Game data/config|Windows|{{p|LocalAppData}}\BrightMemoryInfinite\Saved\Config\WindowsNoEditor}}' - - '{{Game data/saves|Windows|{{p|LocalAppData}}\BrightMemoryInfinite\Saved\SaveGames}}' + - "{{Game data/config|Windows|{{p|LocalAppData}}\\BrightMemoryInfinite\\Saved\\Config\\WindowsNoEditor}}" + - "{{Game data/saves|Windows|{{p|LocalAppData}}\\BrightMemoryInfinite\\Saved\\SaveGames}}" Bright Paw: pageId: 170555 steam: 1361920 @@ -23669,7 +23067,7 @@ Bring Her Home: Bring You Home: pageId: 168693 steam: 1273640 -'Bring me a man, Santa': +"Bring me a man, Santa": pageId: 179050 steam: 1468180 Bring to Light: @@ -23679,14 +23077,14 @@ Brink: pageId: 3331 steam: 22350 templates: - - '{{Game data/config|Windows|{{p|steam}}\userdata\{{p|uid}}\22350\local\base}}' -'Brink of Consciousness: Dorian Gray Syndrome Collector''s Edition': + - "{{Game data/config|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\22350\\local\\base}}" +"Brink of Consciousness: Dorian Gray Syndrome Collector's Edition": pageId: 38378 steam: 302130 templates: - - '{{Game data/config|Windows|{{P|appdata}}\MagicIndie\Dorian Gray CE\}}' - - '{{Game data/saves|Windows|{{P|appdata}}\MagicIndie\Dorian Gray CE\}}' -'Brink of Consciousness: The Lonely Hearts Murders': + - "{{Game data/config|Windows|{{P|appdata}}\\MagicIndie\\Dorian Gray CE\\}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\MagicIndie\\Dorian Gray CE\\}}" +"Brink of Consciousness: The Lonely Hearts Murders": pageId: 49255 steam: 327370 Brink of Extinction: @@ -23701,7 +23099,7 @@ Briquid: British Gangsters: pageId: 156157 steam: 1196160 -Britney's Dance Beat: +"Britney's Dance Beat": pageId: 190368 Brittany Home Alone: pageId: 174877 @@ -23712,16 +23110,16 @@ Brix VR: Broadside: pageId: 46392 steam: 401560 -'Broadsword: Age of Chivalry': +"Broadsword: Age of Chivalry": pageId: 32678 steam: 312710 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\SOFTWARE\Hoplite Research\Broadsword}}' - - '{{Game data/saves|Windows|{{p|hkcu}}\SOFTWARE\Hoplite Research\Broadsword}}' -'Broadway: 1849': + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\Hoplite Research\\Broadsword}}" + - "{{Game data/saves|Windows|{{p|hkcu}}\\SOFTWARE\\Hoplite Research\\Broadsword}}" +"Broadway: 1849": pageId: 76885 steam: 757080 -'Brocat: the B Game': +"Brocat: the B Game": pageId: 120784 steam: 559360 Broccoli Bob: @@ -23735,14 +23133,14 @@ Broforce: pageId: 14948 steam: 274190 templates: - - '{{Game data/config|Windows|{{p|game}}\Saves\Options.xml}}' - - '{{Game data/config|Microsoft Store|{{p|game}}\Saves\Options.xml}}' - - '{{Game data/config|OS X|{{p|game}}/Saves/Options.xml}}' - - '{{Game data/config|Linux|{{p|game}}/Saves/Options.xml}}' - - '{{Game data/saves|Windows|{{p|game}}\Saves\{{p|uid}}.sav}}' - - '{{Game data/saves|Microsoft Store|{{p|userprofile\appdata\locallow}}\Free Lives\Broforce\Saves\progress.sav}}' - - '{{Game data/saves|OS X|{{p|game}}/Saves/progress.sav}}' - - '{{Game data/saves|Linux|{{p|game}}/Saves/{{p|uid}}.sav}}' + - "{{Game data/config|Windows|{{p|game}}\\Saves\\Options.xml}}" + - "{{Game data/config|Microsoft Store|{{p|game}}\\Saves\\Options.xml}}" + - "{{Game data/config|OS X|{{p|game}}/Saves/Options.xml}}" + - "{{Game data/config|Linux|{{p|game}}/Saves/Options.xml}}" + - "{{Game data/saves|Windows|{{p|game}}\\Saves\\{{p|uid}}.sav}}" + - "{{Game data/saves|Microsoft Store|{{p|userprofile\\appdata\\locallow}}\\Free Lives\\Broforce\\Saves\\progress.sav}}" + - "{{Game data/saves|OS X|{{p|game}}/Saves/progress.sav}}" + - "{{Game data/saves|Linux|{{p|game}}/Saves/{{p|uid}}.sav}}" Brok the InvestiGator: gog: 1252694989 gogSide: @@ -23752,8 +23150,8 @@ Brok the InvestiGator: steamSide: - 1318790 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Brokgame\saves}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\Brokgame\saves}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\Brokgame\\saves}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Brokgame\\saves}}" Broke Girl: pageId: 147315 steam: 1077580 @@ -23765,14 +23163,14 @@ Broken Age: pageId: 5468 steam: 232790 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\BrokenAge\saves\game.settings}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/BrokenAge/Saves/game.settings}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/doublefine/BrokenAge/saves/game.settings}}' - - '{{Game data/config|Steam|{{P|game}}/saves/game.settings}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\BrokenAge\saves\*.sav}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/BrokenAge/Saves/*.sav}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/doublefine/BrokenAge/saves/*.sav}}' - - '{{Game data/saves|Steam|{{P|game}}/saves/*.sav}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\BrokenAge\\saves\\game.settings}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/BrokenAge/Saves/game.settings}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/doublefine/BrokenAge/saves/game.settings}}" + - "{{Game data/config|Steam|{{P|game}}/saves/game.settings}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\BrokenAge\\saves\\*.sav}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/BrokenAge/Saves/*.sav}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/doublefine/BrokenAge/saves/*.sav}}" + - "{{Game data/saves|Steam|{{P|game}}/saves/*.sav}}" Broken Armor: pageId: 41914 steam: 508840 @@ -23793,9 +23191,7 @@ Broken Dreams: pageId: 35265 steam: 444480 templates: - - >- - {{Game data/saves|Windows|{{p|appdata}}\Macromedia\Flash - Player\#SharedObjects\{{p|uid}}\localhost\BrokenDreams.sol}} + - "{{Game data/saves|Windows|{{p|appdata}}\\Macromedia\\Flash Player\\#SharedObjects\\{{p|uid}}\\localhost\\BrokenDreams.sol}}" Broken Ground: pageId: 78744 steam: 708420 @@ -23807,7 +23203,7 @@ Broken Lines: pageId: 139564 steam: 926580 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\PortaPlay\Broken Lines\Saves}}' + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\PortaPlay\\Broken Lines\\Saves}}" Broken Metal: pageId: 121385 steam: 799460 @@ -23819,15 +23215,15 @@ Broken Pieces: pageId: 182534 steam: 1293730 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\BrokenPieces\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\BrokenPieces\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\BrokenPieces\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\BrokenPieces\\Saved\\SaveGames\\}}" Broken Reality: gog: 1441606886 pageId: 78846 steam: 757480 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Dynamic Media Triad\The Broken Reality\}}' - - '{{Game data/saves|Windows|{{P|hkcu}}\Software\Dynamic Media Triad\The Broken Reality\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Dynamic Media Triad\\The Broken Reality\\}}" + - "{{Game data/saves|Windows|{{P|hkcu}}\\Software\\Dynamic Media Triad\\The Broken Reality\\}}" Broken Roads: pageId: 189734 steam: 1403440 @@ -23837,83 +23233,79 @@ Broken Spell: Broken Spell 2: pageId: 156722 steam: 1197440 -Broken Sword - Parzival's Stone: +"Broken Sword - Parzival's Stone": pageId: 189613 steam: 2546810 -'Broken Sword - Shadow of the Templars: Reforged': +"Broken Sword - Shadow of the Templars: Reforged": pageId: 189611 steam: 2544110 -'Broken Sword 2.5: The Return of the Templars': +"Broken Sword 2.5: The Return of the Templars": pageId: 68762 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Broken Sword 2.5\config.lua}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Broken Sword 2.5\saves\}}' -'Broken Sword 3: The Sleeping Dragon': + - "{{Game data/config|Windows|{{p|appdata}}\\Broken Sword 2.5\\config.lua}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Broken Sword 2.5\\saves\\}}" +"Broken Sword 3: The Sleeping Dragon": gog: 1207658708 pageId: 19574 steam: 33610 templates: - - '{{Game data/config|Windows|{{P|hklm}}\SOFTWARE\{{P|wow64}}\Revolution\BSTSD\}}' - - '{{Game data/saves|Windows|{{p|game}}\saves\}}' -'Broken Sword 4: The Angel of Death (Secrets of the Ark)': + - "{{Game data/config|Windows|{{P|hklm}}\\SOFTWARE\\{{P|wow64}}\\Revolution\\BSTSD\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\saves\\}}" +"Broken Sword 4: The Angel of Death (Secrets of the Ark)": gog: 1207658973 pageId: 19662 steam: 316160 templates: - - >- - {{Game data/config|Windows|{{p|hkcu}}\Software\Revolution Software Ltd\Broken Sword - The Angel of - Death|{{p|game}}\system\}} - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Broken Sword - The Angel of Death\}}' -'Broken Sword 5: The Serpent''s Curse': + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Revolution Software Ltd\\Broken Sword - The Angel of Death|{{p|game}}\\system\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Broken Sword - The Angel of Death\\}}" +"Broken Sword 5: The Serpent's Curse": gog: 1207660323 pageId: 13318 renamedFrom: - - Broken Sword 5 - The Serpent's Curse + - "Broken Sword 5 - The Serpent's Curse" steam: 262940 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Broken Sword 5\vt7.ini}}' - - '{{Game data/config|OS X|{{P|osxhome}}/Library/Application Support/Broken Sword 5/}}' - - '{{Game data/config|Linux|{{P|linuxhome}}/.bs5/vt7.ini}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Broken Sword 5\}}' - - '{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/Broken Sword 5/}}' - - '{{Game data/saves|Linux|{{P|linuxhome}}/.bs5/}}' -'Broken Sword II: The Smoking Mirror': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Broken Sword 5\\vt7.ini}}" + - "{{Game data/config|OS X|{{P|osxhome}}/Library/Application Support/Broken Sword 5/}}" + - "{{Game data/config|Linux|{{P|linuxhome}}/.bs5/vt7.ini}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Broken Sword 5\\}}" + - "{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/Broken Sword 5/}}" + - "{{Game data/saves|Linux|{{P|linuxhome}}/.bs5/}}" +"Broken Sword II: The Smoking Mirror": gog: 1207658707 pageId: 16485 steam: 580440 -'Broken Sword II: The Smoking Mirror - Remastered': +"Broken Sword II: The Smoking Mirror - Remastered": gog: 1207658707 pageId: 17518 steam: 33600 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Broken Sword II - Remastered\}}' - - >- - {{Game data/config|OS X|{{P|osxhome}}/Library/Application Support/Broken Sword - The Smoking Mirror - - Remastered/}} - - '{{Game data/config|Linux|{{P|linuxhome}}/.bs2/}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Broken Sword II - Remastered\}}' - - '{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/Broken Sword - The Smoking Mirror - Remastered/}}' - - '{{Game data/saves|Linux|{{P|linuxhome}}/.bs2/}}' -'Broken Sword: Shadow of the Templars: Director''s Cut': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Broken Sword II - Remastered\\}}" + - "{{Game data/config|OS X|{{P|osxhome}}/Library/Application Support/Broken Sword - The Smoking Mirror - Remastered/}}" + - "{{Game data/config|Linux|{{P|linuxhome}}/.bs2/}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Broken Sword II - Remastered\\}}" + - "{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/Broken Sword - The Smoking Mirror - Remastered/}}" + - "{{Game data/saves|Linux|{{P|linuxhome}}/.bs2/}}" +"Broken Sword: Shadow of the Templars: Director's Cut": gog: 1207658900 pageId: 8242 steam: 57640 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Broken Sword - Director''s Cut\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Broken Sword - Director''s Cut}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.bs1dc/}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Broken Sword - Director''s Cut\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Broken Sword - Director''s Cut}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.bs1dc/}}' -'Broken Sword: The Shadow of the Templars': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Broken Sword - Director's Cut\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Broken Sword - Director's Cut}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.bs1dc/}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Broken Sword - Director's Cut\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Broken Sword - Director's Cut}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.bs1dc/}}" +"Broken Sword: The Shadow of the Templars": gog: 1207658900 pageId: 15944 steam: 580430 templates: - - '{{Game data/config|DOS|{{p|game}}\SWORD.INF}}' - - '{{Game data/config|Windows|{{p|game}}\sword1.ini}}' - - '{{Game data/saves|DOS|{{p|game}}\SAVES\}}' - - '{{Game data/saves|Windows|{{p|game}}\save}}' + - "{{Game data/config|DOS|{{p|game}}\\SWORD.INF}}" + - "{{Game data/config|Windows|{{p|game}}\\sword1.ini}}" + - "{{Game data/saves|DOS|{{p|game}}\\SAVES\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\save}}" Broken Ties: pageId: 91492 steam: 813020 @@ -23939,17 +23331,17 @@ Broomstick League: pageId: 151072 steam: 972780 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Broomstick\Saved\Config\WindowsNoEditor\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\Broomstick\\Saved\\Config\\WindowsNoEditor\\}}" Brotato: pageId: 188573 steam: 1942280 templates: - - '{{Game data/saves|Windows|{{p|appdata}}\Brotato\{{p|uid}}\*.json}}' + - "{{Game data/saves|Windows|{{p|appdata}}\\Brotato\\{{p|uid}}\\*.json}}" Brother Bear: pageId: 97679 templates: - - '{{Game data/config|Windows|{{p|programdata}}\Disney Interactive\Brother Bear\System}}' - - '{{Game data/saves|Windows|{{p|programdata}}\Disney Interactive\Brother Bear\System\Save}}' + - "{{Game data/config|Windows|{{p|programdata}}\\Disney Interactive\\Brother Bear\\System}}" + - "{{Game data/saves|Windows|{{p|programdata}}\\Disney Interactive\\Brother Bear\\System\\Save}}" Brother Brother: pageId: 150416 steam: 1147850 @@ -23965,38 +23357,38 @@ BrotherZ: Brotherhood United: pageId: 96545 steam: 869030 -'Brothers in Arms: Earned in Blood': +"Brothers in Arms: Earned in Blood": gog: 1239584357 pageId: 11187 steam: 19800 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Gearbox Software\Earned In Blood\{{p|uid}}\}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Gearbox Software\Earned In Blood\{{p|uid}}\}}' -'Brothers in Arms: Hell''s Highway': + - "{{Game data/config|Windows|{{p|appdata}}\\Gearbox Software\\Earned In Blood\\{{p|uid}}\\}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Gearbox Software\\Earned In Blood\\{{p|uid}}\\}}" +"Brothers in Arms: Hell's Highway": gog: 1796017250 pageId: 11204 steam: 15390 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\BIA Hells Highway\SumacGame\Config\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\BIA Hells Highway\SumacGame\SaveData\}}' -'Brothers in Arms: Road to Hill 30': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\BIA Hells Highway\\SumacGame\\Config\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\BIA Hells Highway\\SumacGame\\SaveData\\}}" +"Brothers in Arms: Road to Hill 30": gog: 1993805983 pageId: 11179 steam: 15190 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Gearbox Software\Brothers In Arms\{{p|uid}}\}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Gearbox Software\Brothers In Arms\{{p|uid}}\}}' -'Brothers: A Tale of Two Sons': + - "{{Game data/config|Windows|{{p|appdata}}\\Gearbox Software\\Brothers In Arms\\{{p|uid}}\\}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Gearbox Software\\Brothers In Arms\\{{p|uid}}\\}}" +"Brothers: A Tale of Two Sons": gog: 1171070121 pageId: 10047 steam: 225080 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\UnrealEngine3\P13\Config\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Brothers - A Tale of Two Sons\}}' -'Brrrainz: Feed your Hunger': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\UnrealEngine3\\P13\\Config\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Brothers - A Tale of Two Sons\\}}" +"Brrrainz: Feed your Hunger": pageId: 130255 steam: 935910 -Bruce Jenner's World Class Decathlon: +"Bruce Jenner's World Class Decathlon": pageId: 106293 Bruce Lee: pageId: 91723 @@ -24021,15 +23413,15 @@ Brushwood Buddies: pageId: 44569 steam: 434820 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\BrushwoodBuddies\settings.xml}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\BrushwoodBuddies\savegames}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.local/share/BrushwoodBuddies/savegames}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\BrushwoodBuddies\\settings.xml}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\BrushwoodBuddies\\savegames}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.local/share/BrushwoodBuddies/savegames}}" Brut@l: pageId: 53582 steam: 489260 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Storm Cloud Games\Brut@l}}' - - '{{Game data/saves|Windows|{{p|steam}}\Steam\userdata\{{p|uid}}\489260\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Storm Cloud Games\\Brut@l}}" + - "{{Game data/saves|Windows|{{p|steam}}\\Steam\\userdata\\{{p|uid}}\\489260\\}}" Brutal Games: pageId: 139114 steam: 1026060 @@ -24064,7 +23456,7 @@ BrutalAliens: Brute: pageId: 62310 steam: 451630 -Bryce's Movement Engine¹: +"Bryce's Movement Engine¹": pageId: 152815 steam: 1117420 Brütal Legend: @@ -24074,16 +23466,16 @@ Brütal Legend: steamSide: - 225270 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Doublefine\BrutalLegend\screen.dat}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/doublefine/brutallegend/screen.dat}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/doublefine/brutallegend/screen.dat}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Doublefine\BrutalLegend\*.sav}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/doublefine/brutallegend/*.sav}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/doublefine/brutallegend/*.sav}}' -'BuKnight: The Order of the Golden Crest': + - "{{Game data/config|Windows|{{p|appdata}}\\Doublefine\\BrutalLegend\\screen.dat}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/doublefine/brutallegend/screen.dat}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/doublefine/brutallegend/screen.dat}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Doublefine\\BrutalLegend\\*.sav}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/doublefine/brutallegend/*.sav}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/doublefine/brutallegend/*.sav}}" +"BuKnight: The Order of the Golden Crest": pageId: 176963 templates: - - '{{Game data/config|Windows|{{p|game}}\config.ini}}' + - "{{Game data/config|Windows|{{p|game}}\\config.ini}}" Bubble Blast Rescue VR: pageId: 80627 steam: 780370 @@ -24093,21 +23485,17 @@ Bubble Blowout: Bubble Bobble: pageId: 127949 templates: - - '{{Game data/config|DOS|{{p|game}}\bubbob.cfg}}' + - "{{Game data/config|DOS|{{p|game}}\\bubbob.cfg}}" Bubble Bobble (also featuring Rainbow Islands): pageId: 127024 -'Bubble Bobble 4 Friends: The Baron''s Workshop': +"Bubble Bobble 4 Friends: The Baron's Workshop": pageId: 167272 renamedFrom: - - 'Bubble Bobble 4 Friends: The Baron is Back!' + - "Bubble Bobble 4 Friends: The Baron is Back!" steam: 1287030 templates: - - >- - {{Game - data/config|Windows|{{P|userprofile\appdata\locallow}}\co_jp_taito\BUBBLE_BOBBLE_4_FRIENDS\BBSave\BBSaveData}} - - >- - {{Game - data/saves|Windows|{{P|userprofile\appdata\locallow}}\co_jp_taito\BUBBLE_BOBBLE_4_FRIENDS\BBSave\BBSaveData}} + - "{{Game data/config|Windows|{{P|userprofile\\appdata\\locallow}}\\co_jp_taito\\BUBBLE_BOBBLE_4_FRIENDS\\BBSave\\BBSaveData}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\co_jp_taito\\BUBBLE_BOBBLE_4_FRIENDS\\BBSave\\BBSaveData}}" Bubble Burst: pageId: 125446 steam: 971500 @@ -24128,7 +23516,7 @@ Bubble Rush: Bubble Strike: pageId: 90293 steam: 823180 -'Bubble Struggle: Adventures': +"Bubble Struggle: Adventures": pageId: 78058 steam: 764970 Bubble Town: @@ -24147,45 +23535,45 @@ Bubblien Pop: Bubli: pageId: 123546 steam: 815100 -'Bubonic: Outbreak': +"Bubonic: Outbreak": pageId: 44635 steam: 322430 Bubsy Two-Fur: pageId: 30209 steam: 426630 templates: - - '{{Game data/config|Windows|{{p|game}}\game.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\*.sav}}' -'Bubsy: Paws on Fire!': + - "{{Game data/config|Windows|{{p|game}}\\game.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\*.sav}}" +"Bubsy: Paws on Fire!": pageId: 128531 steam: 926180 -'Bubsy: The Woolies Strike Back': +"Bubsy: The Woolies Strike Back": gog: 1751048018 pageId: 69264 steam: 627910 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Bubsy\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Bubsy\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Bubsy\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Bubsy\\}}" Buccaneers!: gog: 1396258045 pageId: 150952 steam: 1148560 -'Buccaneers, Bounty & Boom!': +"Buccaneers, Bounty & Boom!": pageId: 58658 steam: 597640 Buck: pageId: 39638 steam: 443890 -'Buck Rogers: Countdown to Doomsday': +"Buck Rogers: Countdown to Doomsday": pageId: 62692 templates: - - '{{Game data/config|DOS|{{p|game}}\BUCK.CFG}}' - - '{{Game data/saves|DOS|{{p|game}}\SAVE\}}' -'Buck Rogers: Matrix Cubed': + - "{{Game data/config|DOS|{{p|game}}\\BUCK.CFG}}" + - "{{Game data/saves|DOS|{{p|game}}\\SAVE\\}}" +"Buck Rogers: Matrix Cubed": pageId: 62694 templates: - - '{{Game data/config|DOS|{{p|game}}\MATRIX.CFG}}' - - '{{Game data/saves|DOS|{{p|game}}\SAVE\}}' + - "{{Game data/config|DOS|{{p|game}}\\MATRIX.CFG}}" + - "{{Game data/saves|DOS|{{p|game}}\\SAVE\\}}" Buck Zombies: pageId: 144023 steam: 1132750 @@ -24196,10 +23584,8 @@ Bucket Detective: pageId: 56934 steam: 461170 templates: - - >- - {{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\the whale husband\Bucket - Detective\Unity\local.*\Analytics\}} - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\the whale husband\Bucket Detective\s.dat}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\the whale husband\\Bucket Detective\\Unity\\local.*\\Analytics\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\the whale husband\\Bucket Detective\\s.dat}}" Bucket Knight: gog: 1460611578 pageId: 135684 @@ -24207,15 +23593,15 @@ Bucket Knight: Bud Blitz: pageId: 129691 steam: 1029930 -'Bud Spencer & Terence Hill: Slaps and Beans': +"Bud Spencer & Terence Hill: Slaps and Beans": pageId: 77891 renamedFrom: - Bud Spencer & Terence Hill - Slaps and Beans steam: 564050 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\TrinityTeam\SnB\}}' - - '{{Game data/saves|Windows|{{P|hkcu}}\Software\TrinityTeam\SnB\GAMECONFIG_h414560897}}' -'Bud Spencer & Terence Hill: Slaps and Beans 2': + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\TrinityTeam\\SnB\\}}" + - "{{Game data/saves|Windows|{{P|hkcu}}\\Software\\TrinityTeam\\SnB\\GAMECONFIG_h414560897}}" +"Bud Spencer & Terence Hill: Slaps and Beans 2": pageId: 171740 steam: 2142330 Bud Tucker in Double Trouble: @@ -24237,9 +23623,7 @@ Buddy Simulator 1984: - 1280740 - 1611310 templates: - - >- - {{Game data/saves|Windows|{{p|userprofile\Documents}}\Buddy Simulator 1984\|{{P|hkcu}}\Software\Not a Sailor - Studios\Buddy Simulator 1984\}} + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Buddy Simulator 1984\\|{{P|hkcu}}\\Software\\Not a Sailor Studios\\Buddy Simulator 1984\\}}" Buddy and Lucky Solitaire: pageId: 181752 steam: 1596750 @@ -24247,20 +23631,15 @@ Budget Cuts: pageId: 39540 steam: 400940 templates: - - >- - {{Game data/config|Windows|{{p|hkcu}}\SOFTWARE\Neat Corporation\Budget Cuts\|{{P|userprofile\Documents}}\Budget - Cuts Save Data\config_machine.cfg|{{P|userprofile\appdata\locallow}}\Neat Corporation\Budget - Cuts\config_machine.cfg}} - - >- - {{Game data/saves|Windows|{{P|userprofile\Documents}}\Budget Cuts Save - Data\*\|{{P|userprofile\appdata\locallow}}\Neat Corporation\Budget Cuts\*\}} -'Budget Cuts 2: Mission Insolvency': + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\Neat Corporation\\Budget Cuts\\|{{P|userprofile\\Documents}}\\Budget Cuts Save Data\\config_machine.cfg|{{P|userprofile\\appdata\\locallow}}\\Neat Corporation\\Budget Cuts\\config_machine.cfg}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\Budget Cuts Save Data\\*\\|{{P|userprofile\\appdata\\locallow}}\\Neat Corporation\\Budget Cuts\\*\\}}" +"Budget Cuts 2: Mission Insolvency": pageId: 139552 steam: 1092430 -'Budo War Girl: Maid of Desire': +"Budo War Girl: Maid of Desire": pageId: 156324 renamedFrom: - - 'Budo War Girl: maid of desire' + - "Budo War Girl: maid of desire" steam: 1212600 Buff Knight Advanced: pageId: 46588 @@ -24274,20 +23653,20 @@ Bug Academy: Bug Adventure: pageId: 167629 templates: - - '{{Game data/config|DOS|{{p|game}}\KA.CNF}}' + - "{{Game data/config|DOS|{{p|game}}\\KA.CNF}}" Bug Attack!: pageId: 90178 steam: 738720 Bug Battle: pageId: 77168 steam: 752000 -'Bug Fables: The Everlasting Sapling': +"Bug Fables: The Everlasting Sapling": gog: 1406270716 pageId: 139484 steam: 1082710 templates: - - '{{Game data/config|Windows|{{p|game}}\config.dat|{{p|hkcu}}\Software\Moonsprout Games\Bug Fables}}' - - '{{Game data/saves|Windows|{{p|game}}\Bug Fables The Everlasting Sapling}}' + - "{{Game data/config|Windows|{{p|game}}\\config.dat|{{p|hkcu}}\\Software\\Moonsprout Games\\Bug Fables}}" + - "{{Game data/saves|Windows|{{p|game}}\\Bug Fables The Everlasting Sapling}}" Bug Invaders: pageId: 80849 steam: 614160 @@ -24303,14 +23682,14 @@ Bug Splatt: Bug Too!: pageId: 24665 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\SOFTWARE\SEGA\Bug Too!}}' - - '{{Game data/saves|Windows|{{p|game}}\SAVEGAME}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\SEGA\\Bug Too!}}" + - "{{Game data/saves|Windows|{{p|game}}\\SAVEGAME}}" Bug!: pageId: 24664 templates: - - '{{Game data/config|Windows|{{P|game}}\BUG!.CFG}}' - - '{{Game data/saves|Windows|{{P|game}}\*.sav}}' -'BugRiders: The Race of Kings': + - "{{Game data/config|Windows|{{P|game}}\\BUG!.CFG}}" + - "{{Game data/saves|Windows|{{P|game}}\\*.sav}}" +"BugRiders: The Race of Kings": gog: 1753573785 pageId: 14429 Bugdom: @@ -24321,16 +23700,16 @@ Buggy (2015): Buggy Bump: pageId: 150699 steam: 1152800 -Bugs 'N Boo Hags: +"Bugs 'N Boo Hags": pageId: 139451 steam: 1066620 -'Bugs Bunny & Taz: Time Busters': +"Bugs Bunny & Taz: Time Busters": pageId: 90835 -'Bugs Bunny: Lost in Time': +"Bugs Bunny: Lost in Time": pageId: 27471 templates: - - '{{Game data/config|Windows|{{p|game}}\bin\config.pc}}' - - '{{Game data/saves|Windows|{{p|game}}\bin}}' + - "{{Game data/config|Windows|{{p|game}}\\bin\\config.pc}}" + - "{{Game data/saves|Windows|{{p|game}}\\bin}}" Bugs Must Die: pageId: 120963 steam: 816720 @@ -24341,18 +23720,16 @@ Bugsnax: pageId: 161042 steam: 674140 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\Saved Games\Bugsnax\Settings}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\Saved Games\Bugsnax\}}' - - >- - {{Game data/saves|Microsoft - Store|{{P|LOCALAPPDATA}}\Packages\31281YoungHorses.Bugsnax_x6qn5461etveg\SystemAppData\wgs}} + - "{{Game data/config|Windows|{{p|userprofile}}\\Saved Games\\Bugsnax\\Settings}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Saved Games\\Bugsnax\\}}" + - "{{Game data/saves|Microsoft Store|{{P|LOCALAPPDATA}}\\Packages\\31281YoungHorses.Bugsnax_x6qn5461etveg\\SystemAppData\\wgs}}" Bugspeed Collider: pageId: 51153 steam: 415900 -'Build ''m up, Shoot ''m down!': +"Build 'm up, Shoot 'm down!": pageId: 150737 steam: 1174570 -Build 'n Bump: +"Build 'n Bump": pageId: 47180 steam: 375790 Build Bridges: @@ -24377,15 +23754,15 @@ Build-A-Lot: pageId: 41192 steam: 38080 templates: - - '{{Game data/config|Windows|{{p|programdata}}\HipSoft\Buildalot\}}' - - '{{Game data/config|Windows|{{p|programdata}}\HipSoft\Buildalot\}}' -'Build-A-Lot 2: Town of the Year': + - "{{Game data/config|Windows|{{p|programdata}}\\HipSoft\\Buildalot\\}}" + - "{{Game data/config|Windows|{{p|programdata}}\\HipSoft\\Buildalot\\}}" +"Build-A-Lot 2: Town of the Year": pageId: 41191 steam: 38090 -'Build-A-Lot 3: Passport to Europe': +"Build-A-Lot 3: Passport to Europe": pageId: 41190 steam: 38100 -'Build-A-Lot 4: Power Source': +"Build-A-Lot 4: Power Source": pageId: 41189 steam: 38110 BuildMoreCubes: @@ -24398,7 +23775,7 @@ Builder Simulator: pageId: 145550 steam: 1120320 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Live Motion Games\Builder Simulator\Save}}' + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Live Motion Games\\Builder Simulator\\Save}}" Builder VR: pageId: 156013 steam: 1203760 @@ -24409,7 +23786,7 @@ Builders of Egypt: Building Block Heroes: pageId: 69398 steam: 695560 -'Building Block Heroes: Rush Edition': +"Building Block Heroes: Rush Edition": pageId: 93730 steam: 857210 Building Blocks: @@ -24432,8 +23809,8 @@ Bulb Boy: pageId: 33697 steam: 390290 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\SOFTWARE\Bulbware\Bulb Boy\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Bulbware\Bulb Boy\BBSave.sgf}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\Bulbware\\Bulb Boy\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Bulbware\\Bulb Boy\\BBSave.sgf}}" Bulby - Diamond Course: pageId: 39123 steam: 461390 @@ -24456,8 +23833,8 @@ Bullet Girls Phantasia: pageId: 155442 steam: 1163590 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\BulletGirlsPhantasia}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\BulletGirlsPhantasia}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\BulletGirlsPhantasia}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\BulletGirlsPhantasia}}" Bullet Harmony: pageId: 134719 steam: 1058480 @@ -24465,7 +23842,7 @@ Bullet Heaven 2: pageId: 37201 steam: 412670 templates: - - '{{Game data/saves|Windows|{{p|game}}\BulletHeaven2data.meow}}' + - "{{Game data/saves|Windows|{{p|game}}\\BulletHeaven2data.meow}}" Bullet Hell Advanced: pageId: 93667 steam: 843990 @@ -24494,8 +23871,8 @@ Bullet Witch: pageId: 92121 steam: 696180 templates: - - '{{Game data/config|Windows|{{p|game}}\SystemSetting.dat|{{p|game}}\BulletWitchLangauge}}' - - '{{Game data/saves|Windows|{{p|game}}\savedata\}}' + - "{{Game data/config|Windows|{{p|game}}\\SystemSetting.dat|{{p|game}}\\BulletWitchLangauge}}" + - "{{Game data/saves|Windows|{{p|game}}\\savedata\\}}" BulletRage: pageId: 95146 steam: 827210 @@ -24518,23 +23895,17 @@ Bulletstorm: pageId: 1973 steam: 99810 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\My - Games\Bulletstorm\StormGame\Config|{{p|game}}\Bulletstorm\StormGame\Config}} - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\BulletStorm\StormGame\SaveData\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Bulletstorm\\StormGame\\Config|{{p|game}}\\Bulletstorm\\StormGame\\Config}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\BulletStorm\\StormGame\\SaveData\\}}" Bulletstorm VR: pageId: 190818 steam: 2451320 -'Bulletstorm: Full Clip Edition': +"Bulletstorm: Full Clip Edition": pageId: 54255 steam: 501590 templates: - - |- - {{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Bulletstorm Full Clip Edition\StormGame\Config\| - {{p|userprofile\Documents}}\My Games\Bulletstorm Lite\StormGame\Config\}} - - |- - {{Game data/saves|Windows|{{p|steam}}\userdata\{{p|uid}}\501590\remote\| - {{p|userprofile\Documents}}\My Games\Bulletstorm Lite\StormGame\SaveData\}} + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Bulletstorm Full Clip Edition\\StormGame\\Config\\|\n{{p|userprofile\\Documents}}\\My Games\\Bulletstorm Lite\\StormGame\\Config\\}}" + - "{{Game data/saves|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\501590\\remote\\|\n{{p|userprofile\\Documents}}\\My Games\\Bulletstorm Lite\\StormGame\\SaveData\\}}" Bulls town: pageId: 124239 steam: 971390 @@ -24547,31 +23918,31 @@ Bullshot: Bully Store: pageId: 94701 steam: 860870 -'Bully: Scholarship Edition': +"Bully: Scholarship Edition": pageId: 3155 steam: 12200 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Rockstar Games\Bully Scholarship Edition\A0\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Bully Scholarship Edition\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Rockstar Games\\Bully Scholarship Edition\\A0\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Bully Scholarship Edition\\}}" Bullynoid: pageId: 129938 steam: 993650 Bullyparade - DER Spiel: pageId: 67798 steam: 656780 -'Bulwark: Falconeer Chronicles': +"Bulwark: Falconeer Chronicles": pageId: 188184 steam: 290100 steamSide: - 2278440 templates: - - '{{Game data/config|Windows|{{File|{{P|userprofile\appdata\locallow}}\Wired Productions\Bulwark\settings.dat}}}}' + - "{{Game data/config|Windows|{{File|{{P|userprofile\\appdata\\locallow}}\\Wired Productions\\Bulwark\\settings.dat}}}}" Bum Simulator: pageId: 94555 steam: 855740 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\BumSim\Saved\Config}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\BumSim\Saved\SaveGames}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\BumSim\\Saved\\Config}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\BumSim\\Saved\\SaveGames}}" Bumbledore: pageId: 40822 steam: 207710 @@ -24590,7 +23961,7 @@ Bunch of Heroes: pageId: 15996 steam: 111400 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\BoH\config.xml}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\BoH\\config.xml}}" Bundeskanzler 2009-2013: pageId: 91439 Bundle Kitt: @@ -24600,8 +23971,8 @@ Bunka no Kenkyu - Revival of Queen Leyak -: pageId: 64321 steam: 521420 templates: - - '{{Game data/config|Windows|{{p|game}}\renpy\config.py}}' - - '{{Game data/saves|Windows|{{p|appdata}}\RenPy\BNK_SAVE_DIR\}}' + - "{{Game data/config|Windows|{{p|game}}\\renpy\\config.py}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\RenPy\\BNK_SAVE_DIR\\}}" Bunker - Nightmare Begins: pageId: 132550 steam: 1053740 @@ -24669,14 +24040,14 @@ Bunny Minesweeper: pageId: 104271 steam: 900790 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\MMS\Saved\Config\WindowsNoEditor\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\MMS\\Saved\\Config\\WindowsNoEditor\\}}" Bunny Must Die! Chelsea and the 7 Devils: pageId: 17269 steam: 250660 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/saves|Windows|{{p|game}}\}}' - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\250660\remote\}}' + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\250660\\remote\\}}" Bunny Park: pageId: 155536 steam: 1208600 @@ -24696,11 +24067,11 @@ Buoyancy: pageId: 130514 steam: 1012610 templates: - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\DevsOnABoat\Buoyancy\}}' + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\DevsOnABoat\\Buoyancy\\}}" Buoyant: pageId: 141062 steam: 1085280 -Burak Bahar's Unseen Anchor: +"Burak Bahar's Unseen Anchor": pageId: 81103 steam: 779760 Burden: @@ -24725,12 +24096,12 @@ Burger Shop: pageId: 76873 steam: 730840 templates: - - '{{Game data/saves|Windows|{{P|programdata}}\GoBit Games\BurgerShop\users}}' + - "{{Game data/saves|Windows|{{P|programdata}}\\GoBit Games\\BurgerShop\\users}}" Burger Shop 2: pageId: 76875 steam: 730870 templates: - - '{{Game data/saves|Windows|{{P|programdata}}\GoBit Games\BurgerShop2\BigFishGames\users}}' + - "{{Game data/saves|Windows|{{P|programdata}}\\GoBit Games\\BurgerShop2\\BigFishGames\\users}}" Burger in Hyperland: pageId: 71868 steam: 710320 @@ -24759,7 +24130,7 @@ Burgle Bros.: Buried Alive VR: pageId: 90530 steam: 678830 -'Buried: An Interactive Story': +"Buried: An Interactive Story": pageId: 44852 steam: 434370 BuriedTown: @@ -24769,15 +24140,15 @@ Burly Men at Sea: pageId: 39127 steam: 403290 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\brainandbrain\Burly Men at Sea\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\brainandbrain\Burly Men at Sea\burlySave.burly}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\brainandbrain\\Burly Men at Sea\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\brainandbrain\\Burly Men at Sea\\burlySave.burly}}" Burn It Down: pageId: 65451 steam: 657440 Burn Zombie Burn!: pageId: 19141 steam: 50510 -'Burn, Clown, Burn!': +"Burn, Clown, Burn!": pageId: 74908 steam: 740150 Burndown: @@ -24790,35 +24161,33 @@ Burnhouse Lane: pageId: 178798 steam: 1846460 templates: - - >- - {{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\Harvester - Games\BurnhouseLane\BurnhouseLane_Savefile_*.save}} -Burnin' Rubber: + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\Harvester Games\\BurnhouseLane\\BurnhouseLane_Savefile_*.save}}" +"Burnin' Rubber": pageId: 167028 templates: - - '{{Game data/config|Windows|{{P|userprofile\appdata\locallow}}\Adobe\Director 11\BurninRubber}}' - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Adobe\Director 11\BurninRubber}}' -Burnin' Rubber 3: + - "{{Game data/config|Windows|{{P|userprofile\\appdata\\locallow}}\\Adobe\\Director 11\\BurninRubber}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Adobe\\Director 11\\BurninRubber}}" +"Burnin' Rubber 3": pageId: 166990 templates: - - '{{Game data/config|Windows|{{P|userprofile\appdata\locallow}}\Adobe\Director 11\BurninRubber3}}' - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Adobe\Director 11\BurninRubber3}}' -Burnin' Rubber 4: + - "{{Game data/config|Windows|{{P|userprofile\\appdata\\locallow}}\\Adobe\\Director 11\\BurninRubber3}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Adobe\\Director 11\\BurninRubber3}}" +"Burnin' Rubber 4": pageId: 167010 templates: - - '{{Game data/config|Windows|{{P|userprofile\appdata\locallow}}\Adobe\Director 11\BurninRubber4}}' - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Adobe\Director 11\BurninRubber4}}' -Burnin' Rubber 5 HD: + - "{{Game data/config|Windows|{{P|userprofile\\appdata\\locallow}}\\Adobe\\Director 11\\BurninRubber4}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Adobe\\Director 11\\BurninRubber4}}" +"Burnin' Rubber 5 HD": pageId: 80913 steam: 420660 templates: - - '{{Game data/config|Windows|{{p|game}}/BurninRubber5HD_Data/UserData}}' - - '{{Game data/saves|Windows|{{p|game}}/BurninRubber5HD_Data/UserData}}' -Burnin' Rubber Crash n' Burn: + - "{{Game data/config|Windows|{{p|game}}/BurninRubber5HD_Data/UserData}}" + - "{{Game data/saves|Windows|{{p|game}}/BurninRubber5HD_Data/UserData}}" +"Burnin' Rubber Crash n' Burn": pageId: 174498 templates: - - '{{Game data/config|Windows|{{P|userprofile\appdata\locallow}}\XformGames\BurninRubberCrashnBurn}}' - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\XformGames\BurninRubberCrashnBurn}}' + - "{{Game data/config|Windows|{{P|userprofile\\appdata\\locallow}}\\XformGames\\BurninRubberCrashnBurn}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\XformGames\\BurninRubberCrashnBurn}}" Burning Cars: pageId: 50699 steam: 269430 @@ -24836,7 +24205,7 @@ Burning Knight: Burning Out: pageId: 123856 steam: 983610 -'Burning Requiem: Fates': +"Burning Requiem: Fates": pageId: 180225 steam: 2016510 BurningBridges VR: @@ -24849,15 +24218,15 @@ Burnout Paradise: pageId: 443 steam: 24740 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Criterion Games\Burnout Paradise\*.ini}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Criterion Games\Burnout Paradise\Save\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Criterion Games\\Burnout Paradise\\*.ini}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Criterion Games\\Burnout Paradise\\Save\\}}" Burnout Paradise Remastered: pageId: 86915 steam: 1238080 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Criterion Games\Burnout Paradise Remastered\*.ini}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\Criterion Games\Burnout Paradise Remastered\Save\}}' -'Burnouts: The Igne Mori': + - "{{Game data/config|Windows|{{P|localappdata}}\\Criterion Games\\Burnout Paradise Remastered\\*.ini}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Criterion Games\\Burnout Paradise Remastered\\Save\\}}" +"Burnouts: The Igne Mori": pageId: 122522 steam: 970820 Burnstar: @@ -24884,7 +24253,7 @@ Burst The Game: Burstfire: pageId: 46302 steam: 349580 -'Bury Me, My Love': +"Bury Me, My Love": pageId: 124305 steam: 808090 Bus Controller Simulator: @@ -24894,8 +24263,8 @@ Bus Driver: pageId: 19166 steam: 302080 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Bus Driver\config.cfg}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Bus Driver\save\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Bus Driver\\config.cfg}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Bus Driver\\save\\}}" Bus Driver Simulator: gog: 1633843667 pageId: 75656 @@ -24906,7 +24275,7 @@ Bus Mechanic Simulator: pageId: 151269 steam: 1011420 templates: - - '{{Game data/config|Windows| %userprofile%/AppData/LocalLow/VIS-Games/BusMechanicSimulator/Savegames}}' + - "{{Game data/config|Windows| %userprofile%/AppData/LocalLow/VIS-Games/BusMechanicSimulator/Savegames}}" Bus Simulator 16: pageId: 44357 steam: 324310 @@ -24914,19 +24283,19 @@ Bus Simulator 18: pageId: 92335 steam: 515180 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\BusSimulator18\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\BusSimulator18\Saved\SaveGames\}}' - - '{{Game data/saves|Steam|{{P|steam}}\userdata\{{P|uid}}\515180\remote\SaveGames\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\BusSimulator18\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\BusSimulator18\\Saved\\SaveGames\\}}" + - "{{Game data/saves|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\515180\\remote\\SaveGames\\}}" Bus Simulator 2008: pageId: 174798 templates: - - '{{Game data/config|Windows|{{p|game}}\data}}' - - '{{Game data/saves|Windows|{{p|game}}\data}}' + - "{{Game data/config|Windows|{{p|game}}\\data}}" + - "{{Game data/saves|Windows|{{p|game}}\\data}}" Bus Simulator 2009: pageId: 174800 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\Bus-Simulator 2009}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\Bus-Simulator 2009}}' + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\Bus-Simulator 2009}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\Bus-Simulator 2009}}" Bus Simulator 2012: pageId: 40510 steam: 253770 @@ -24960,10 +24329,10 @@ Business Tycoon Billionaire: BusinessMan: pageId: 66416 steam: 677820 -'Bust-A-Move 2: Arcade Edition': +"Bust-A-Move 2: Arcade Edition": pageId: 125339 templates: - - '{{Game data/config|DOS|{{p|game}}/BM2SETUP.DAT}}' + - "{{Game data/config|DOS|{{p|game}}/BM2SETUP.DAT}}" Busted!: pageId: 51592 steam: 535150 @@ -24987,8 +24356,8 @@ Butcher: pageId: 39296 steam: 474210 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\THD\Butcher}}' - - '{{Game data/saves|Linux|{{p|xdgconfighome}}/unity3d/THD/Butcher}}' + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\THD\\Butcher}}" + - "{{Game data/saves|Linux|{{p|xdgconfighome}}/unity3d/THD/Butcher}}" ButcherBoy: pageId: 91214 steam: 826160 @@ -25032,15 +24401,15 @@ Button Music: Button Tales: pageId: 55462 steam: 545590 -'Butts: The VR Experience': +"Butts: The VR Experience": pageId: 44694 steam: 439260 Buy Low Sell High: pageId: 112488 steam: 934220 -Buzz Aldrin's Race into Space: +"Buzz Aldrin's Race into Space": pageId: 171482 -Buzz Aldrin's Space Program Manager: +"Buzz Aldrin's Space Program Manager": gog: 2079613275 pageId: 49412 steam: 308270 @@ -25050,8 +24419,8 @@ Buzz Kill Zero: Buzz Lightyear of Star Command: pageId: 167071 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/saves|Windows|{{p|game}}\BuzzXX.sav}}' + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\BuzzXX.sav}}" By Any Means Necessary: pageId: 70675 steam: 702820 @@ -25059,23 +24428,23 @@ By Moonlight: pageId: 127645 steam: 1014880 templates: - - '{{Game data/saves|Windows|{{P|game}}\*.sav}}' + - "{{Game data/saves|Windows|{{P|game}}\\*.sav}}" ByLo: pageId: 144488 steam: 1127620 -'Bye-Bye, Wacky Planet': +"Bye-Bye, Wacky Planet": pageId: 37433 steam: 492130 Bygone Dreams: pageId: 184835 steam: 951620 -'Bygone Worlds: Drama at the Odeion': +"Bygone Worlds: Drama at the Odeion": pageId: 77952 steam: 758840 -'Bygone Worlds: Ephesus': +"Bygone Worlds: Ephesus": pageId: 75604 steam: 739090 -'Bygone Worlds: Jerusalem': +"Bygone Worlds: Jerusalem": pageId: 78086 steam: 716410 Bystander: @@ -25094,13 +24463,13 @@ Bytepath: pageId: 82383 steam: 760330 templates: - - '{{Game data/saves|Windows|{{P|appdata}}\BYTEPATH}}' + - "{{Game data/saves|Windows|{{P|appdata}}\\BYTEPATH}}" Bzzzt: pageId: 188685 steam: 1293170 templates: - - '{{Game data/config|Windows|{{p|USERPROFILE}}\AppData\LocalLow\Kodll\Bzzzt\}}' - - '{{Game data/saves|Windows|{{p|USERPROFILE}}\AppData\LocalLow\Kodll\Bzzzt\}}' + - "{{Game data/config|Windows|{{p|USERPROFILE}}\\AppData\\LocalLow\\Kodll\\Bzzzt\\}}" + - "{{Game data/saves|Windows|{{p|USERPROFILE}}\\AppData\\LocalLow\\Kodll\\Bzzzt\\}}" B画少说: pageId: 127229 steam: 1007870 @@ -25164,8 +24533,8 @@ CAFE 0 ~The Drowned Mermaid~: pageId: 48857 steam: 335660 templates: - - '{{Game data/config|Windows|{{P|game}}\game\saves\persistent}}' - - '{{Game data/saves|Windows|{{P|game}}\game\saves\*.save}}' + - "{{Game data/config|Windows|{{P|game}}\\game\\saves\\persistent}}" + - "{{Game data/saves|Windows|{{P|game}}\\game\\saves\\*.save}}" CAFE 0 ~The Sleeping Beast~: pageId: 52834 steam: 461810 @@ -25175,13 +24544,13 @@ CAGE: CANDLE UNDER WATER: pageId: 149124 steam: 936970 -'CAP-FIG-CID (Colors Are Pretty, Fish Is Gross, Cake is Delicious)': +"CAP-FIG-CID (Colors Are Pretty, Fish Is Gross, Cake is Delicious)": pageId: 100010 steam: 892640 CAPCOM GO! Apollo VR Planetarium: pageId: 141467 steam: 1116650 -'CAR TUNE: Project': +"CAR TUNE: Project": pageId: 128735 steam: 1020800 CARDCORE: @@ -25193,15 +24562,15 @@ CARRUMBLE: CART Precision Racing: pageId: 162947 templates: - - '{{Game data/config|Windows|{{p|game}}\system}}' - - '{{Game data/saves|Windows|{{p|game}}\Saved Races}}' -'CASE: Animatronics': + - "{{Game data/config|Windows|{{p|game}}\\system}}" + - "{{Game data/saves|Windows|{{p|game}}\\Saved Races}}" +"CASE: Animatronics": pageId: 38224 steam: 489360 templates: - - '{{Game data/config|Windows|{{p|Steam}}\userdata\{{p|uid}}\489360\remote}}' - - '{{Game data/saves|Windows|{{p|Steam}}\userdata\{{p|uid}}\489360\remote}}' -'CASTILLO: Shattered Mirrors': + - "{{Game data/config|Windows|{{p|Steam}}\\userdata\\{{p|uid}}\\489360\\remote}}" + - "{{Game data/saves|Windows|{{p|Steam}}\\userdata\\{{p|uid}}\\489360\\remote}}" +"CASTILLO: Shattered Mirrors": pageId: 178679 steam: 1870970 CAT & MOUSE: @@ -25211,8 +24580,8 @@ CAT Interstellar: pageId: 46673 steam: 384740 templates: - - '{{Game data/config|Windows|{{p|game}}\CATInterstellar\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{p|game}}\CATInterstellar\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{p|game}}\\CATInterstellar\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\CATInterstellar\\Saved\\SaveGames\\}}" CATAPULT BATTLE SIMULATOR!: pageId: 143837 steam: 1140160 @@ -25229,15 +24598,15 @@ CDF Ghostship: pageId: 47471 steam: 263640 templates: - - '{{Game data/saves|Windows|{{p|game}}\Binaries\Win32\gsstorysav0.sav}}' + - "{{Game data/saves|Windows|{{p|game}}\\Binaries\\Win32\\gsstorysav0.sav}}" CDF Starfighter VR: pageId: 43746 steam: 433190 CEO CITY: pageId: 182794 templates: - - '{{Game data/config|Windows|{{p|game}}\CyberPlanet Interactive\CEO City\Data}}' - - '{{Game data/saves|Windows|{{p|game}}\CyberPlanet Interactive\CEO City\Data\Save}}' + - "{{Game data/config|Windows|{{p|game}}\\CyberPlanet Interactive\\CEO City\\Data}}" + - "{{Game data/saves|Windows|{{p|game}}\\CyberPlanet Interactive\\CEO City\\Data\\Save}}" CEdges: pageId: 88957 steam: 715570 @@ -25259,21 +24628,21 @@ CHAZE!: CHERNOBYL HISTORY OF NUCLEAR DISASTER: pageId: 142250 steam: 1104800 -'CHERNOBYL: The Untold Story': +"CHERNOBYL: The Untold Story": pageId: 149527 steam: 1155830 templates: - - '{{Game data/saves|Windows|{{p|hkcu}}\SOFTWARE\MEHSOFT\CHERNOBYL: The Untold Story}}' + - "{{Game data/saves|Windows|{{p|hkcu}}\\SOFTWARE\\MEHSOFT\\CHERNOBYL: The Untold Story}}" CHEXS: pageId: 41533 steam: 511810 -'CHIKARA: AAW Wrestle Factory': +"CHIKARA: AAW Wrestle Factory": pageId: 149398 steam: 1137700 -'CHIKARA: Action Arcade Wrestling': +"CHIKARA: Action Arcade Wrestling": pageId: 145051 steam: 1072100 -'CHIP: Rescuer of Kittens': +"CHIP: Rescuer of Kittens": pageId: 157389 steam: 1029830 CHKN: @@ -25282,7 +24651,7 @@ CHKN: CHROMATOSE: pageId: 130793 steam: 1003900 -'CIA Operative: Solo Missions': +"CIA Operative: Solo Missions": pageId: 176662 CICADS 3301: pageId: 121541 @@ -25290,16 +24659,16 @@ CICADS 3301: CINEVEO - VR Cinema: pageId: 48108 steam: 364380 -'CITYCONOMY: Service for your City': +"CITYCONOMY: Service for your City": pageId: 45443 steam: 304580 CLARC: gog: 1207664563 pageId: 19738 templates: - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/GoldenTricycle/CLARC}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\GoldenTricycle\CLARC}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/GoldenTricycle/CLARC}}' + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/GoldenTricycle/CLARC}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\GoldenTricycle\\CLARC}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/GoldenTricycle/CLARC}}" CLASH! - Battle Arena: pageId: 127850 steam: 1022130 @@ -25309,7 +24678,7 @@ CLIMB OUT!: CLIMB!: pageId: 139582 steam: 749720 -'CLS: Signal Person': +"CLS: Signal Person": pageId: 138898 steam: 1088830 CMD 2048: @@ -25318,16 +24687,16 @@ CMD 2048: CMYW: pageId: 46026 steam: 396590 -'CO-JUMP,FLY': +"CO-JUMP,FLY": pageId: 153408 steam: 1199460 -'CO-OP: Decrypted': +"CO-OP: Decrypted": pageId: 46849 steam: 315130 CODE2040: pageId: 139522 steam: 993870 -'COLINA: Legacy': +"COLINA: Legacy": pageId: 39466 steam: 371650 CONTINGENCY: @@ -25339,13 +24708,13 @@ CONTINUE: COSH: pageId: 82884 steam: 797180 -COTTOn Rock'n'Roll -SUPERLATIVE NIGHT DREAMS-: +"COTTOn Rock'n'Roll -SUPERLATIVE NIGHT DREAMS-": pageId: 169518 renamedFrom: - - Cotton Rock'n'Roll + - "Cotton Rock'n'Roll" - Cotton Fantasy steam: 1364760 -'COVID: The Outbreak': +"COVID: The Outbreak": gog: 1574007943 pageId: 160740 steam: 1287000 @@ -25358,10 +24727,10 @@ CPU Invaders: CRAKEN: pageId: 121474 steam: 927930 -'CRANGA!: Harbor Frenzy': +"CRANGA!: Harbor Frenzy": pageId: 50939 steam: 517970 -'CRASH: Autodrive': +"CRASH: Autodrive": pageId: 157177 steam: 1199050 CROSS X CARROT: @@ -25375,15 +24744,13 @@ CROWZ: steam: 1692070 CRRCSim: pageId: 168637 -'CRSED: F.O.A.D.': +"CRSED: F.O.A.D.": pageId: 98092 renamedFrom: - Cuisine Royale steam: 884660 templates: - - >- - {{Game - data/config|Windows|{{P|game}}\cuisine_royale.config.blk|{{P|localappdata}}\cuisine_royale\downloads\online_storage\{{P|uid}}\cuisine_royale\venus\}} + - "{{Game data/config|Windows|{{P|game}}\\cuisine_royale.config.blk|{{P|localappdata}}\\cuisine_royale\\downloads\\online_storage\\{{P|uid}}\\cuisine_royale\\venus\\}}" CRYPTIC: pageId: 149170 steam: 1154160 @@ -25391,83 +24758,83 @@ CS2D: pageId: 75065 steam: 666220 templates: - - '{{Game data/config|Windows|{{p|game}}\sys}}' - - '{{Game data/config|Linux|{{p|game}}/sys}}' -'CSI VR: Crime Scene Investigation': + - "{{Game data/config|Windows|{{p|game}}\\sys}}" + - "{{Game data/config|Linux|{{p|game}}/sys}}" +"CSI VR: Crime Scene Investigation": pageId: 109332 steam: 893650 -'CSI: 3 Dimensions of Murder': +"CSI: 3 Dimensions of Murder": pageId: 102123 templates: - - '{{Game data/config|Windows|{{p|game}}/*.prop}}' - - '{{Game data/saves|Windows|{{p|game}}/*.save}}' -'CSI: Crime Scene Investigation': + - "{{Game data/config|Windows|{{p|game}}/*.prop}}" + - "{{Game data/saves|Windows|{{p|game}}/*.save}}" +"CSI: Crime Scene Investigation": pageId: 147668 templates: - - '{{Game data/saves|Windows|{{p|game}}\CSI\Data\}}' -'CSI: Dark Motives': + - "{{Game data/saves|Windows|{{p|game}}\\CSI\\Data\\}}" +"CSI: Dark Motives": pageId: 155106 templates: - - '{{Game data/saves|Windows|{{p|game}}\CSI2\Data\}}' -'CSI: Deadly Intent': + - "{{Game data/saves|Windows|{{p|game}}\\CSI2\\Data\\}}" +"CSI: Deadly Intent": pageId: 170276 templates: - - '{{Game data/config|Windows|{{p|game}}/*.prop}}' - - '{{Game data/saves|Windows|{{p|game}}/*.save}}' -'CSI: Hard Evidence': + - "{{Game data/config|Windows|{{p|game}}/*.prop}}" + - "{{Game data/saves|Windows|{{p|game}}/*.save}}" +"CSI: Hard Evidence": pageId: 59994 steam: 21730 templates: - - '{{Game data/config|Windows|{{p|game}}/*.prop}}' - - '{{Game data/saves|Windows|{{p|game}}/*.save}}' -'CSI: Miami': + - "{{Game data/config|Windows|{{p|game}}/*.prop}}" + - "{{Game data/saves|Windows|{{p|game}}/*.save}}" +"CSI: Miami": pageId: 158988 -'CSI: NY - The Game': +"CSI: NY - The Game": pageId: 59989 steam: 21750 CSR Racing: pageId: 176913 -'CT Special Forces: Fire for Effect': +"CT Special Forces: Fire for Effect": pageId: 50575 steam: 283410 templates: - - '{{Game data/config|Windows|{{p|game}}\User.tsc}}' - - '{{Game data/saves|Windows|{{p|game}}\Savegame\}}' + - "{{Game data/config|Windows|{{p|game}}\\User.tsc}}" + - "{{Game data/saves|Windows|{{p|game}}\\Savegame\\}}" CTHON: pageId: 59351 steam: 595100 -'CTU: Counter Terrorism Unit': +"CTU: Counter Terrorism Unit": pageId: 34819 steam: 397320 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Excalibur Publishing\CTU}}' -'CTU: Marine Sharpshooter': + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Excalibur Publishing\\CTU}}" +"CTU: Marine Sharpshooter": pageId: 161660 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/saves|Windows|{{p|game}}\Save\}}' + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\Save\\}}" CUBE 332: pageId: 112760 steam: 939150 -'CUBE-C: VR Game Collection': +"CUBE-C: VR Game Collection": pageId: 73264 steam: 688910 -'CUBG: Car Unknown''s Battlegrounds': +"CUBG: Car Unknown's Battlegrounds": pageId: 141172 steam: 1096650 CULT: pageId: 144109 steam: 1133250 -CUSTOM ORDER MAID 3D2 It's a Night Magic: +"CUSTOM ORDER MAID 3D2 It's a Night Magic": pageId: 141415 steam: 1097580 -'CW: Chaco War': +"CW: Chaco War": pageId: 63209 steam: 634810 -'CYBER.one: trans car racing': +"CYBER.one: trans car racing": pageId: 154184 steam: 1002010 -'CYCOM: Cybernet Combat': +"CYCOM: Cybernet Combat": pageId: 74135 steam: 713440 CYNK 3030: @@ -25487,48 +24854,48 @@ Cabal Online: renamedFrom: - CABAL Online steam: 253490 -'Cabals: Card Blitz': +"Cabals: Card Blitz": pageId: 57643 steam: 562540 -'Cabals: Magic & Battle Cards': +"Cabals: Magic & Battle Cards": pageId: 39578 steam: 458410 -Cabela's 4x4 Off-Road Adventure: +"Cabela's 4x4 Off-Road Adventure": pageId: 86802 templates: - - '{{Game data/config|Windows|{{p|game}}}}' - - '{{Game data/saves|Windows|{{p|game}}\Profile\}}' -Cabela's 4x4 Off-Road Adventure 2: + - "{{Game data/config|Windows|{{p|game}}}}" + - "{{Game data/saves|Windows|{{p|game}}\\Profile\\}}" +"Cabela's 4x4 Off-Road Adventure 2": pageId: 86804 templates: - - '{{Game data/config|Windows|{{P|hklm}}\SOFTWARE\WOW6432Node\clevers\cabelas_4x4adv2}}' -Cabela's 4x4 Off-Road Adventure 3: + - "{{Game data/config|Windows|{{P|hklm}}\\SOFTWARE\\WOW6432Node\\clevers\\cabelas_4x4adv2}}" +"Cabela's 4x4 Off-Road Adventure 3": pageId: 77462 -Cabela's African Adventures: +"Cabela's African Adventures": pageId: 40575 steam: 250200 -Cabela's African Safari: +"Cabela's African Safari": pageId: 184562 -Cabela's Big Game Hunter 2005 Adventures: +"Cabela's Big Game Hunter 2005 Adventures": pageId: 77491 -Cabela's Big Game Hunter Pro Hunts: +"Cabela's Big Game Hunter Pro Hunts": pageId: 50532 steam: 247770 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\Saved Games\Big Game Hunter 2014\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\Saved Games\Big Game Hunter 2014\}}' -Cabela's Big Game Hunter Trophy Bucks: + - "{{Game data/config|Windows|{{p|userprofile}}\\Saved Games\\Big Game Hunter 2014\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Saved Games\\Big Game Hunter 2014\\}}" +"Cabela's Big Game Hunter Trophy Bucks": pageId: 41374 steam: 7970 -'Cabela''s Big Game Hunter: 10th Anniversary Edition - Alaskan Adventure': +"Cabela's Big Game Hunter: 10th Anniversary Edition - Alaskan Adventure": pageId: 167785 -Cabela's Dangerous Hunts 2013: +"Cabela's Dangerous Hunts 2013": pageId: 40707 steam: 218860 -Cabela's Hunting Expeditions: +"Cabela's Hunting Expeditions": pageId: 60503 steam: 214210 -'Cabins: Jigsaw Puzzles': +"Cabins: Jigsaw Puzzles": pageId: 99436 steam: 884270 Cactus Canyon: @@ -25540,22 +24907,22 @@ Cactus Jumper: Cadence: pageId: 39057 steam: 362800 -'Cadenza: Music, Betrayal and Death': +"Cadenza: Music, Betrayal and Death": pageId: 61638 renamedFrom: - - 'Cadenza: Music, Betrayal and Death Collector''s Edition' + - "Cadenza: Music, Betrayal and Death Collector's Edition" steam: 629100 -'Cadenza: The Kiss of Death': +"Cadenza: The Kiss of Death": pageId: 77879 renamedFrom: - - 'Cadenza: The Kiss of Death Collector''s Edition' + - "Cadenza: The Kiss of Death Collector's Edition" steam: 758630 -'Cadillacs and Dinosaurs: The Second Cataclysm': +"Cadillacs and Dinosaurs: The Second Cataclysm": pageId: 183446 Cadria Item Shop: pageId: 107602 steam: 883860 -'Caelum: Into the Sky': +"Caelum: Into the Sky": pageId: 63304 steam: 631950 Caelus Trident: @@ -25565,36 +24932,36 @@ Caesar: gog: 1469336312 pageId: 131911 templates: - - '{{Game data/saves|Windows|{{p|game}}\cloud_saves}}' - - '{{Game data/saves|Mac OS|{{p|game}}\cloud_saves}}' + - "{{Game data/saves|Windows|{{p|game}}\\cloud_saves}}" + - "{{Game data/saves|Mac OS|{{p|game}}\\cloud_saves}}" Caesar II: gog: 1386577474 pageId: 77468 templates: - - '{{Game data/config|DOS|{{p|game}}\RESOURCE.CFG}}' - - '{{Game data/config|Windows|{{p|game}}\RESOURCE.CFG}}' - - '{{Game data/config|Mac OS|{{p|game}}\RESOURCE.CFG}}' - - '{{Game data/saves|DOS|{{p|game}}\*.sav}}' - - '{{Game data/saves|Windows|{{p|game}}\*.sav}}' - - '{{Game data/saves|Mac OS|{{p|game}}\*.sav}}' + - "{{Game data/config|DOS|{{p|game}}\\RESOURCE.CFG}}" + - "{{Game data/config|Windows|{{p|game}}\\RESOURCE.CFG}}" + - "{{Game data/config|Mac OS|{{p|game}}\\RESOURCE.CFG}}" + - "{{Game data/saves|DOS|{{p|game}}\\*.sav}}" + - "{{Game data/saves|Windows|{{p|game}}\\*.sav}}" + - "{{Game data/saves|Mac OS|{{p|game}}\\*.sav}}" Caesar III: gog: 1207658835 pageId: 5922 steam: 517790 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/saves|Windows|{{p|game}}\*.sav}}' + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\*.sav}}" Caesar IV: gog: 1460037487 pageId: 36666 steam: 517810 templates: - - '{{Game data/config|Windows|{{P|game}}\CaesarIV.ini}}' - - '{{Game data/config|GOG.com|{{P|game}}\CaesarIV.ini}}' - - '{{Game data/config|Steam|{{P|Steam}}\steamapps\common\Caesar 4\C4\CaesarIV.ini}}' - - '{{Game data/saves|Windows|{{P|game}}\Data\Saved Games\}}' - - '{{Game data/saves|GOG.com|{{P|game}}\Data\Saved Games\}}' - - '{{Game data/saves|Steam|{{P|Steam}}\steamapps\common\Caesar 4\C4\Data\Saved Games\}}' + - "{{Game data/config|Windows|{{P|game}}\\CaesarIV.ini}}" + - "{{Game data/config|GOG.com|{{P|game}}\\CaesarIV.ini}}" + - "{{Game data/config|Steam|{{P|Steam}}\\steamapps\\common\\Caesar 4\\C4\\CaesarIV.ini}}" + - "{{Game data/saves|Windows|{{P|game}}\\Data\\Saved Games\\}}" + - "{{Game data/saves|GOG.com|{{P|game}}\\Data\\Saved Games\\}}" + - "{{Game data/saves|Steam|{{P|Steam}}\\steamapps\\common\\Caesar 4\\C4\\Data\\Saved Games\\}}" CaesarIA: pageId: 48917 steam: 327640 @@ -25607,13 +24974,13 @@ Cafe Owner Simulator: Caffeine: pageId: 46090 steam: 323680 -'Caffeine: Victoria''s Legacy': +"Caffeine: Victoria's Legacy": pageId: 105607 steam: 890700 Café International: pageId: 124603 steam: 965210 -Café Stella and the Reapers' Butterflies: +"Café Stella and the Reapers' Butterflies": gog: 1944735225 pageId: 177844 steam: 1829980 @@ -25626,7 +24993,7 @@ Cahertis: Cahors Sunset: pageId: 48969 steam: 341700 -'Cairo''s Tale: The Big Egg': +"Cairo's Tale: The Big Egg": pageId: 95349 steam: 863470 Cake Bash: @@ -25641,7 +25008,7 @@ Cake Mania 2: Cake Mania 3: pageId: 53781 steam: 36200 -'Cake Mania: Main Street': +"Cake Mania: Main Street": pageId: 41173 steam: 36300 Caketomino: @@ -25657,21 +25024,21 @@ Caladrius Blaze: pageId: 56102 steam: 386770 templates: - - '{{Game data/config|Windows|{{p|appdata}}\MOSS\Caladrius Blaze}}' - - '{{Game data/saves|Windows|{{p|appdata}}\MOSS\Caladrius Blaze\save}}' + - "{{Game data/config|Windows|{{p|appdata}}\\MOSS\\Caladrius Blaze}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\MOSS\\Caladrius Blaze\\save}}" Calamari Clash: pageId: 155416 steam: 1205150 -'Calavera: Day of the Dead': +"Calavera: Day of the Dead": pageId: 62407 renamedFrom: - - 'Calavera: Day of the Dead Collector''s Edition' + - "Calavera: Day of the Dead Collector's Edition" steam: 638240 Calcu-Late: pageId: 35275 steam: 449200 templates: - - '{{Game data/saves|Windows|{{p|game}}\Save.rxdata}}' + - "{{Game data/saves|Windows|{{p|game}}\\Save.rxdata}}" Calcul8²: pageId: 124088 steam: 993200 @@ -25685,7 +25052,7 @@ Caliber: pageId: 189204 steam: 307950 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\1CGS\Caliber\}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\1CGS\\Caliber\\}}" Calibre 10 Racing: pageId: 50528 steam: 266370 @@ -25703,22 +25070,20 @@ California Games II: pageId: 158703 steam: 1418350 templates: - - '{{Game data/saves|DOS|{{p|game}}\CG2MED.YAY}}' + - "{{Game data/saves|DOS|{{p|game}}\\CG2MED.YAY}}" Californium: gog: 1455529924 pageId: 31407 steam: 402060 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\SOFTWARE\Darjeeling\Californium}}' - - '{{Game data/saves|Windows|{{p|hkcu}}\SOFTWARE\Darjeeling\Californium}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\Darjeeling\\Californium}}" + - "{{Game data/saves|Windows|{{p|hkcu}}\\SOFTWARE\\Darjeeling\\Californium}}" Caligo: pageId: 70609 steam: 629840 templates: - - >- - {{Game - data/config|Windows|{{P|hkcu}}\Software\Krealit\Caligo\|{{P|userprofile}}\AppData\LocalLow\Krealit\Caligo\{{P|uid}}\}} - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Krealit\Caligo\{{P|uid}}\Profile\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Krealit\\Caligo\\|{{P|userprofile}}\\AppData\\LocalLow\\Krealit\\Caligo\\{{P|uid}}\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Krealit\\Caligo\\{{P|uid}}\\Profile\\}}" Caliper: pageId: 57210 steam: 581840 @@ -25731,7 +25096,7 @@ Call Each New Year: Call Me Skyfish: pageId: 67183 steam: 690220 -'Call Of Pixel: Close Quarters': +"Call Of Pixel: Close Quarters": pageId: 123886 steam: 987790 Call Of Unity: @@ -25749,34 +25114,30 @@ Call of Cthulhu: gog: 1522289470 pageId: 91328 renamedFrom: - - 'Call of Cthulhu: The Official Video Game' + - "Call of Cthulhu: The Official Video Game" steam: 399810 templates: - - >- - {{Game - data/config|Windows|{{p|localappdata}}\CallOfCthulhu\Saved\Config\WindowsNoEditor\|{{p|localappdata}}\CallOfCthulhu\Saved\SaveGames\Configuration.sav}} - - '{{Game data/saves|Windows|{{p|localappdata}}\CallOfCthulhu\Saved\SaveGames\}}' -'Call of Cthulhu: Dark Corners of the Earth': + - "{{Game data/config|Windows|{{p|localappdata}}\\CallOfCthulhu\\Saved\\Config\\WindowsNoEditor\\|{{p|localappdata}}\\CallOfCthulhu\\Saved\\SaveGames\\Configuration.sav}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\CallOfCthulhu\\Saved\\SaveGames\\}}" +"Call of Cthulhu: Dark Corners of the Earth": gog: 1557265213 pageId: 2099 steam: 22340 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\Bethesda\Call of - Cthulhu\Options\|{{p|hkcu}}\Software\Bethesda Softworks\Call Of Cthulhu DCoTE\Settings}} - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Bethesda\Call of Cthulhu\}}' -'Call of Cthulhu: Prisoner of Ice': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Bethesda\\Call of Cthulhu\\Options\\|{{p|hkcu}}\\Software\\Bethesda Softworks\\Call Of Cthulhu DCoTE\\Settings}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Bethesda\\Call of Cthulhu\\}}" +"Call of Cthulhu: Prisoner of Ice": gog: 1432222749 pageId: 34340 steam: 359620 templates: - - '{{Game data/config|Windows|{{p|game}}\ICE\ICE.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\ICE\*.ICE}}' -'Call of Cthulhu: Shadow of the Comet': + - "{{Game data/config|Windows|{{p|game}}\\ICE\\ICE.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\ICE\\*.ICE}}" +"Call of Cthulhu: Shadow of the Comet": gog: 1431942210 pageId: 34342 steam: 389470 -'Call of Cthulhu: The Wasted Land': +"Call of Cthulhu: The Wasted Land": pageId: 50596 steam: 251390 Call of Duty: @@ -25785,171 +25146,165 @@ Call of Duty: steamSide: - 2640 templates: - - '{{Game data/config|Windows|{{p|game}}\Main\|{{p|game}}\uo\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Call of Duty/Main/}}' - - '{{Game data/saves|Windows|{{p|game}}\Main\save\|{{p|game}}\uo\save\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Call of Duty/Main/Save/}}' + - "{{Game data/config|Windows|{{p|game}}\\Main\\|{{p|game}}\\uo\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Call of Duty/Main/}}" + - "{{Game data/saves|Windows|{{p|game}}\\Main\\save\\|{{p|game}}\\uo\\save\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Call of Duty/Main/Save/}}" Call of Duty 2: pageId: 4229 steam: 2630 templates: - - '{{Game data/config|Windows|{{p|game}}\main\players\{{p|uid}}\*.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\main\players\}}' -'Call of Duty 4: Modern Warfare': + - "{{Game data/config|Windows|{{p|game}}\\main\\players\\{{p|uid}}\\*.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\main\\players\\}}" +"Call of Duty 4: Modern Warfare": pageId: 912 steam: 7940 templates: - - '{{Game data/config|Windows|{{p|game}}\players\profiles\{{p|uid}}\config.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\players\profiles\}}' -'Call of Duty: Advanced Warfare': + - "{{Game data/config|Windows|{{p|game}}\\players\\profiles\\{{p|uid}}\\config.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\players\\profiles\\}}" +"Call of Duty: Advanced Warfare": pageId: 17063 steam: 209650 steamSide: - 209660 - 317660 templates: - - '{{Game data/config|Windows|{{P|game}}\players2\}}' -'Call of Duty: Black Ops': + - "{{Game data/config|Windows|{{P|game}}\\players2\\}}" +"Call of Duty: Black Ops": pageId: 1654 steam: 42700 steamSide: - 42710 + - 42716 + - 42718 - 42719 - 42722 - - 42718 - - 42716 - 214630 - - 214649 - - 214643 - 214640 + - 214643 + - 214649 templates: - - '{{Game data/config|Windows|{{p|game}}\players\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Call of Duty Black Ops/players}}' - - '{{Game data/saves|Windows|{{p|game}}\players\save\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Call of Duty Black Ops/players/save}}' -'Call of Duty: Black Ops Cold War': + - "{{Game data/config|Windows|{{p|game}}\\players\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Call of Duty Black Ops/players}}" + - "{{Game data/saves|Windows|{{p|game}}\\players\\save\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Call of Duty Black Ops/players/save}}" +"Call of Duty: Black Ops Cold War": pageId: 162705 renamedFrom: - Call of Duty Black Ops Cold War steam: 1985810 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\Call Of Duty Black Ops Cold War\player\{{P|uid}}\}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\Call Of Duty Black Ops Cold War\player\{{P|uid}}\}}' -'Call of Duty: Black Ops II': + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\Call Of Duty Black Ops Cold War\\player\\{{P|uid}}\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\Call Of Duty Black Ops Cold War\\player\\{{P|uid}}\\}}" +"Call of Duty: Black Ops II": pageId: 3457 steam: 202970 steamSide: - 202990 templates: - - '{{Game data/config|Windows|{{p|game}}\players\bindings_*.bdg}}' - - >- - {{Game - data/saves|Windows|{{p|game}}\players\hardware*.chp|{{p|game}}\players\user_*.cgp|{{p|game}}\players\savegame.foo|{{p|game}}\players\savegame.svg}} -'Call of Duty: Black Ops III': + - "{{Game data/config|Windows|{{p|game}}\\players\\bindings_*.bdg}}" + - "{{Game data/saves|Windows|{{p|game}}\\players\\hardware*.chp|{{p|game}}\\players\\user_*.cgp|{{p|game}}\\players\\savegame.foo|{{p|game}}\\players\\savegame.svg}}" +"Call of Duty: Black Ops III": pageId: 24480 steam: 311210 templates: - - '{{Game data/config|Windows|{{P|game}}\players\}}' - - '{{Game data/saves|Windows|{{P|game}}\players\}}' -'Call of Duty: Black Ops IIII': + - "{{Game data/config|Windows|{{P|game}}\\players\\}}" + - "{{Game data/saves|Windows|{{P|game}}\\players\\}}" +"Call of Duty: Black Ops IIII": pageId: 91292 templates: - - '{{Game data/config|Windows|{{P|game}}\players\}}' -'Call of Duty: Ghosts': + - "{{Game data/config|Windows|{{P|game}}\\players\\}}" +"Call of Duty: Ghosts": pageId: 7772 steam: 209160 steamSide: - - 255163 - 209170 - 255160 + - 255163 templates: - - '{{Game data/config|Windows|{{p|game}}\players2\}}' - - '{{Game data/saves|Windows|{{p|game}}\players2\}}' -'Call of Duty: Heroes': + - "{{Game data/config|Windows|{{p|game}}\\players2\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\players2\\}}" +"Call of Duty: Heroes": pageId: 76744 -'Call of Duty: Infinite Warfare': +"Call of Duty: Infinite Warfare": pageId: 32597 steam: 292730 templates: - - >- - {{Game data/config|Microsoft - Store|{{P|localappdata}}\Packages\38985CA0.PCCallofDutyInfiniteWarfare_5bkah9njm3e9g\LocalState}} - - '{{Game data/config|Steam|{{p|game}}\players2\}}' -'Call of Duty: Modern Warfare': + - "{{Game data/config|Microsoft Store|{{P|localappdata}}\\Packages\\38985CA0.PCCallofDutyInfiniteWarfare_5bkah9njm3e9g\\LocalState}}" + - "{{Game data/config|Steam|{{p|game}}\\players2\\}}" +"Call of Duty: Modern Warfare": pageId: 137772 steam: 2000950 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\Call of Duty Modern Warfare\players}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\Call of Duty Modern Warfare\players}}' -'Call of Duty: Modern Warfare 2': + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\Call of Duty Modern Warfare\\players}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\Call of Duty Modern Warfare\\players}}" +"Call of Duty: Modern Warfare 2": pageId: 3848 steam: 10180 steamSide: - 10190 templates: - - '{{Game data/config|Windows|{{p|game}}\players\}}' - - >- - {{Game - data/saves|Windows|{{p|game}}\players\save\|{{p|game}}\players\settings_c.zip.iw4|{{p|game}}\players\settings_s.zip.iw4}} -'Call of Duty: Modern Warfare 2 Campaign Remastered': + - "{{Game data/config|Windows|{{p|game}}\\players\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\players\\save\\|{{p|game}}\\players\\settings_c.zip.iw4|{{p|game}}\\players\\settings_s.zip.iw4}}" +"Call of Duty: Modern Warfare 2 Campaign Remastered": pageId: 158844 templates: - - '{{Game data/config|Windows|{{p|game}}\players2\{{p|uid}}}}' - - '{{Game data/saves|Windows|{{p|game}}\players2\{{p|uid}}}}' -'Call of Duty: Modern Warfare 3': + - "{{Game data/config|Windows|{{p|game}}\\players2\\{{p|uid}}}}" + - "{{Game data/saves|Windows|{{p|game}}\\players2\\{{p|uid}}}}" +"Call of Duty: Modern Warfare 3": pageId: 30 steam: 115300 steamSide: - 42680 - 42690 templates: - - '{{Game data/config|Windows|{{p|game}}\players2\*.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\players2\save}}' -'Call of Duty: Modern Warfare II': + - "{{Game data/config|Windows|{{p|game}}\\players2\\*.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\players2\\save}}" +"Call of Duty: Modern Warfare II": pageId: 178173 steam: 1938090 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\Call of Duty\players}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\Call of Duty\players}}' -'Call of Duty: Modern Warfare III': + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\Call of Duty\\players}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\Call of Duty\\players}}" +"Call of Duty: Modern Warfare III": pageId: 189135 steam: 2519060 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\Call of Duty\players}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\Call of Duty\players}}' -'Call of Duty: Modern Warfare Remastered': + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\Call of Duty\\players}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\Call of Duty\\players}}" +"Call of Duty: Modern Warfare Remastered": pageId: 32600 steam: 393080 steamSide: - 393100 templates: - - '{{Game data/config|Steam|{{p|game}}\players2}}' - - '{{Game data/saves|Steam|{{p|game}}\players2\savegame.svg}}' -'Call of Duty: Online': + - "{{Game data/config|Steam|{{p|game}}\\players2}}" + - "{{Game data/saves|Steam|{{p|game}}\\players2\\savegame.svg}}" +"Call of Duty: Online": pageId: 94163 -'Call of Duty: Vanguard': +"Call of Duty: Vanguard": pageId: 170793 steam: 1985820 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\Call of Duty Vanguard\players\}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\Call of Duty Vanguard\player}}' -'Call of Duty: WWII': + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\Call of Duty Vanguard\\players\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\Call of Duty Vanguard\\player}}" +"Call of Duty: WWII": pageId: 61703 steam: 476600 steamSide: - 696790 templates: - - '{{Game data/config|Windows|{{P|game}}\players2\}}' - - '{{Game data/saves|Windows|{{P|game}}\players2\}}' -'Call of Duty: Warzone 2.0': + - "{{Game data/config|Windows|{{P|game}}\\players2\\}}" + - "{{Game data/saves|Windows|{{P|game}}\\players2\\}}" +"Call of Duty: Warzone 2.0": pageId: 182994 steam: 1962663 -'Call of Duty: World at War': +"Call of Duty: World at War": pageId: 576 steam: 10090 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Activision\CoDWaW\players\profiles\*.cfg}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Activision\CoDWaW\players\profiles\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Activision\\CoDWaW\\players\\profiles\\*.cfg}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Activision\\CoDWaW\\players\\profiles\\}}" Call of Fries: pageId: 132460 steam: 1045510 @@ -25961,31 +25316,29 @@ Call of Juarez: pageId: 29988 steam: 3020 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\call of juarez\out\Settings\}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\call of juarez\out\save\}}' -'Call of Juarez: Bound in Blood': + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\call of juarez\\out\\Settings\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\call of juarez\\out\\save\\}}" +"Call of Juarez: Bound in Blood": gog: 1770556474 pageId: 7212 steam: 21980 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\Call of Juarez - Bound in Blood\Out\Settings\}}' - - >- - {{Game data/saves|Windows|{{P|userprofile\Documents}}\Call of Juarez - Bound in - Blood\Out\save\{{p|uid}}\|{{P|userprofile\Documents}}\Call of Juarez - Bound in Blood\Out\profiles\}} -'Call of Juarez: Gunslinger': + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\Call of Juarez - Bound in Blood\\Out\\Settings\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\Call of Juarez - Bound in Blood\\Out\\save\\{{p|uid}}\\|{{P|userprofile\\Documents}}\\Call of Juarez - Bound in Blood\\Out\\profiles\\}}" +"Call of Juarez: Gunslinger": gog: 2015389384 pageId: 6971 steam: 204450 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\techland\cojgunslinger\out\Settings\Video.scr}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\techland\cojgunslinger\out\}}' - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/204450/remote/out/}}' -'Call of Juarez: The Cartel': + - "{{Game data/config|Windows|{{p|localappdata}}\\techland\\cojgunslinger\\out\\Settings\\Video.scr}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\techland\\cojgunslinger\\out\\}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/204450/remote/out/}}" +"Call of Juarez: The Cartel": pageId: 7404 steam: 33420 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Call of Juarez - The Cartel\out\Settings\}}' - - '{{Game data/saves|Windows|{{p|steam}}\userdata\{{p|uid}}\33420\remote\out}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Call of Juarez - The Cartel\\out\\Settings\\}}" + - "{{Game data/saves|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\33420\\remote\\out}}" Call of Nightmare: pageId: 72889 steam: 724450 @@ -26016,14 +25369,10 @@ Call of the Sea: pageId: 160502 steam: 1042490 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\COTS\Saved\Config\WindowsNoEditor\}}' - - >- - {{Game data/config|Microsoft - Store|{{P|localappdata}}\Packages\RawFury.CallofTheSeaW10_9s0pnehqffj7t\LocalCache\Local\COTS\Saved\Config\WinGDK\}} - - '{{Game data/saves|Windows|{{P|localappdata}}\COTS\Saved\SaveGames\}}' - - >- - {{Game data/saves|Microsoft - Store|{{P|localappdata}}\Packages\RawFury.CallofTheSeaW10_9s0pnehqffj7t\SystemAppData\wgs\}} + - "{{Game data/config|Windows|{{P|localappdata}}\\COTS\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/config|Microsoft Store|{{P|localappdata}}\\Packages\\RawFury.CallofTheSeaW10_9s0pnehqffj7t\\LocalCache\\Local\\COTS\\Saved\\Config\\WinGDK\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\COTS\\Saved\\SaveGames\\}}" + - "{{Game data/saves|Microsoft Store|{{P|localappdata}}\\Packages\\RawFury.CallofTheSeaW10_9s0pnehqffj7t\\SystemAppData\\wgs\\}}" Call of the Void: pageId: 136971 steam: 1060100 @@ -26034,58 +25383,56 @@ Call to Arms: pageId: 47071 steam: 302670 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\My Games\call to arms\profiles\"string of numbers"|}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\My Games\call to arms\profiles\"string of numbers"|}}' + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\My Games\\call to arms\\profiles\\\"string of numbers\"|}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\My Games\\call to arms\\profiles\\\"string of numbers\"|}}" Call to Power II: gog: 1207658838 pageId: 3524 steam: 572050 templates: - - >- - {{Game - data/config|Windows|{{p|game}}\ctp2_program\ctp\userprofile.txt|{{p|game}}\ctp2_program\ctp\userkeymap.txt}} - - '{{Game data/saves|Windows|{{p|game}}\ctp2_program\ctp\save}}' + - "{{Game data/config|Windows|{{p|game}}\\ctp2_program\\ctp\\userprofile.txt|{{p|game}}\\ctp2_program\\ctp\\userkeymap.txt}}" + - "{{Game data/saves|Windows|{{p|game}}\\ctp2_program\\ctp\\save}}" CallBack: pageId: 137400 steam: 985930 -Callahan's Crosstime Saloon: +"Callahan's Crosstime Saloon": pageId: 170000 -Caller's Bane: +"Caller's Bane": pageId: 5432 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\Mojang\Scrolls\}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Mojang\\Scrolls\\}}" Callisto: pageId: 132324 steam: 1049730 -Cally's Caves 3: +"Cally's Caves 3": pageId: 45091 steam: 418120 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\CC3_steam_greenlight}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\CC3_steam_greenlight}}' -Cally's Caves 4: + - "{{Game data/config|Windows|{{p|localappdata}}\\CC3_steam_greenlight}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\CC3_steam_greenlight}}" +"Cally's Caves 4": pageId: 79248 steam: 642580 templates: - - '{{Game data/saves|Windows|{{p|localappdata}}\Super_Callys_World_Steam}}' -Cally's Trials: + - "{{Game data/saves|Windows|{{p|localappdata}}\\Super_Callys_World_Steam}}" +"Cally's Trials": pageId: 33802 steam: 476510 templates: - - '{{Game data/saves|Windows|{{p|localappdata}}\CC2_Steam_Greenlight}}' + - "{{Game data/saves|Windows|{{p|localappdata}}\\CC2_Steam_Greenlight}}" Calm Cards - Klondike: pageId: 95381 steam: 864500 -'Calm Down, Stalin': +"Calm Down, Stalin": pageId: 38797 steam: 502940 -'Calm Down, Stalin - VR': +"Calm Down, Stalin - VR": pageId: 143298 steam: 1133990 Calm Waters: pageId: 55069 steam: 541350 -Calvin Tucker's Farm Animal Racing: +"Calvin Tucker's Farm Animal Racing": pageId: 88003 steam: 809900 Calvino Noir: @@ -26098,7 +25445,7 @@ Camera Obscura: pageId: 25843 steam: 341500 templates: - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\341500\remote\.prof}}' + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\341500\\remote\\.prof}}" Camp Focus: pageId: 175886 steam: 1871750 @@ -26115,20 +25462,20 @@ Campaign Clicker: pageId: 51346 steam: 485650 templates: - - '{{Game data/saves|Windows|{{p|game}}\SpringClick\}}' + - "{{Game data/saves|Windows|{{p|game}}\\SpringClick\\}}" Camper Jumper Simulator: pageId: 55932 steam: 520380 Campfire Cooking: pageId: 72549 steam: 679500 -'Campfire: One of Us Is the Killer': +"Campfire: One of Us Is the Killer": pageId: 53093 steam: 533180 -'Campgrounds: The Endorus Expedition': +"Campgrounds: The Endorus Expedition": pageId: 44311 renamedFrom: - - 'Campgrounds: The Endorus Expedition Collector''s Edition' + - "Campgrounds: The Endorus Expedition Collector's Edition" steam: 450150 Campido: pageId: 121963 @@ -26139,21 +25486,21 @@ Camping with girls: Campus Notes - forget me not.: pageId: 43718 steam: 435360 -'Camy 2: The Machine': +"Camy 2: The Machine": pageId: 184276 templates: - - '{{Game data/config|Windows|{{p|game}}\Options_c2.dat}}' + - "{{Game data/config|Windows|{{p|game}}\\Options_c2.dat}}" Can You Eat by Yourself: pageId: 78146 steam: 761720 Can You find it?: pageId: 113910 steam: 929600 -Can't Drive This: +"Can't Drive This": pageId: 39103 steam: 466980 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\SOFTWARE\Pixel Maniacs\Cant Drive This}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\SOFTWARE\\Pixel Maniacs\\Cant Drive This}}" CanBoom VR: pageId: 67877 steam: 686100 @@ -26164,8 +25511,8 @@ Canabalt: pageId: 4740 steam: 358960 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Finji\Canabalt\}}' - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/358960/remote/SaveData}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Finji\\Canabalt\\}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/358960/remote/SaveData}}" Canadian Football 2017: pageId: 64313 steam: 664650 @@ -26178,13 +25525,13 @@ Canari: Canasta 3D Premium: pageId: 136591 steam: 966090 -'Candera: The Forgotten Realm': +"Candera: The Forgotten Realm": pageId: 155981 steam: 1204480 -Candice DeBébé's Incredibly Trick Lifestyle: +"Candice DeBébé's Incredibly Trick Lifestyle": pageId: 44034 steam: 453790 -Candice DeBébé's Scandalous Secrets: +"Candice DeBébé's Scandalous Secrets": pageId: 121049 steam: 941540 Candle: @@ -26192,21 +25539,21 @@ Candle: pageId: 39047 steam: 420060 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\SOFTWARE\Daedalic Entertainment GmbH\CANDLE}}' - - '{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/Daedalic Entertainment GmbH/CANDLE/prefs}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Daedalic Entertainment GmbH\CANDLE\*.sav}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/Daedalic Entertainment GmbH/CANDLE/*.sav}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\SOFTWARE\\Daedalic Entertainment GmbH\\CANDLE}}" + - "{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/Daedalic Entertainment GmbH/CANDLE/prefs}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Daedalic Entertainment GmbH\\CANDLE\\*.sav}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/Daedalic Entertainment GmbH/CANDLE/*.sav}}" Candlelight: pageId: 44146 steam: 451200 -'Candleman: The Complete Journey': +"Candleman: The Complete Journey": gog: 1913602334 pageId: 78675 steam: 591630 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Zodiac Interactive\Candleman\}}' - - '{{Game data/saves|Windows|{{p|USERPROFILE}}\AppData\LocalLow\Spotlightor Interactive\Candleman\}}' - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\591630\remote\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Zodiac Interactive\\Candleman\\}}" + - "{{Game data/saves|Windows|{{p|USERPROFILE}}\\AppData\\LocalLow\\Spotlightor Interactive\\Candleman\\}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\591630\\remote\\}}" Candy Adventure: pageId: 132283 steam: 1049080 @@ -26234,7 +25581,7 @@ Candy Machine: Candy Mandy: pageId: 127736 steam: 1022040 -'Candy Raid: The Factory': +"Candy Raid: The Factory": pageId: 105279 steam: 868880 Candy Smash VR: @@ -26255,7 +25602,7 @@ CandySnake 2: CandyVenture: pageId: 123978 steam: 987800 -'Canek: Quest for Corn': +"Canek: Quest for Corn": pageId: 137250 steam: 791300 Canine: @@ -26288,7 +25635,7 @@ Cannon Crew: Cannon Fire: pageId: 81101 steam: 773660 -'Cannon Fire: Bloody Sea': +"Cannon Fire: Bloody Sea": pageId: 130488 steam: 1033600 Cannon Fodder: @@ -26303,15 +25650,15 @@ Cannon Fodder 3: Cannonball: pageId: 168205 templates: - - '{{Game data/config|Windows|{{p|game}}\config.xml}}' - - '{{Game data/saves|Windows|{{p|game}}\hiscores.xml}}' + - "{{Game data/config|Windows|{{p|game}}\\config.xml}}" + - "{{Game data/saves|Windows|{{p|game}}\\hiscores.xml}}" Cannonfire Concerto: pageId: 54602 steam: 558410 Cannons Lasers Rockets: pageId: 49721 steam: 265770 -'Cannons-Defenders: Steam Edition': +"Cannons-Defenders: Steam Edition": pageId: 60742 steam: 617710 Cantata: @@ -26330,15 +25677,15 @@ Canyon Capers: pageId: 26737 steam: 275490 templates: - - '{{Game data/saves|Windows|{{p|steam}}\userdata\{{p|uid}}\275490\}}' -'CapRiders: Euro Soccer': + - "{{Game data/saves|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\275490\\}}" +"CapRiders: Euro Soccer": pageId: 35244 steam: 492200 Capcom Arcade 2nd Stadium: pageId: 178199 steam: 1755910 templates: - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\1755910\}}' + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\1755910\\}}" Capcom Arcade Hits Volume 1: pageId: 180498 Capcom Arcade Hits Volume 2: @@ -26349,9 +25696,9 @@ Capcom Arcade Stadium: pageId: 166736 steam: 1515950 templates: - - '{{Game data/config|Windows|{{P|game}}\config.ini}}' - - '{{Game data/saves|Steam|{{P|steam}}\userdata\{{P|uid}}\1515950\remote\win64_save\}}' -Capcom Beat 'Em Up Bundle: + - "{{Game data/config|Windows|{{P|game}}\\config.ini}}" + - "{{Game data/saves|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\1515950\\remote\\win64_save\\}}" +"Capcom Beat 'Em Up Bundle": pageId: 111274 steam: 885150 Capcom Coin-Op Classics Series 1: @@ -26373,11 +25720,11 @@ Capitalism II: pageId: 8997 steam: 638200 templates: - - '{{Game data/saves|Windows|{{p|game}}\save}}' + - "{{Game data/saves|Windows|{{p|game}}\\save}}" Capitals: pageId: 180829 steam: 2083790 -'Capria: Magic of the Elements': +"Capria: Magic of the Elements": pageId: 43787 steam: 457790 Capsa: @@ -26394,17 +25741,17 @@ Capsized: pageId: 4680 steam: 95300 templates: - - '{{Game data/config|Windows|{{p|game}}\Content\Config.cfg}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Capsized/Config.cfg}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/Capsized/Config.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\Content\Config.cfg}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Capsized/Config.cfg}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/Capsized/Config.cfg}}' + - "{{Game data/config|Windows|{{p|game}}\\Content\\Config.cfg}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Capsized/Config.cfg}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/Capsized/Config.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\Content\\Config.cfg}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Capsized/Config.cfg}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/Capsized/Config.cfg}}" Capsular: pageId: 78276 steam: 690200 templates: - - '{{Game data/config|Windows|{{p|game}}\Capsular\Saved\Config\WindowsNoEditor\}}' + - "{{Game data/config|Windows|{{p|game}}\\Capsular\\Saved\\Config\\WindowsNoEditor\\}}" Capsule: pageId: 38406 steam: 303940 @@ -26414,7 +25761,7 @@ Capsule Force: Capsule Jump: pageId: 82708 steam: 798350 -'Captain 13: Beyond the Hero': +"Captain 13: Beyond the Hero": pageId: 71855 steam: 704350 Captain Backwater: @@ -26423,10 +25770,10 @@ Captain Backwater: Captain Bones: pageId: 151014 steam: 951820 -'Captain Cook: Word Puzzle': +"Captain Cook: Word Puzzle": pageId: 150758 steam: 1172000 -Captain Curve's Intergalactic Space Adventure: +"Captain Curve's Intergalactic Space Adventure": pageId: 42073 steam: 494790 Captain Firebeard and the Bay of Crows: @@ -26441,7 +25788,7 @@ Captain Forever Trilogy: Captain Kaon: pageId: 53287 steam: 527380 -'Captain Lycop: Invasion of the Heters': +"Captain Lycop: Invasion of the Heters": pageId: 57323 steam: 525070 Captain MaCaw: @@ -26451,8 +25798,8 @@ Captain Morgane and the Golden Turtle: pageId: 50735 steam: 264320 templates: - - '{{Game data/config|Windows|{{p|game}}\Settings.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\save.dat}}' + - "{{Game data/config|Windows|{{p|game}}\\Settings.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\save.dat}}" Captain Sabertooth and the Magic Diamond: pageId: 176155 steam: 1383970 @@ -26462,11 +25809,11 @@ Captain Starshot: Captain The Runner: pageId: 98616 steam: 878500 -'Captain Tsubasa: Rise of New Champions': +"Captain Tsubasa: Rise of New Champions": pageId: 157564 steam: 1163550 templates: - - '{{Game data/saves|Windows|{{P|appdata}}\Captain Tsubasa Rise of New Champions\Savedata\}}' + - "{{Game data/saves|Windows|{{P|appdata}}\\Captain Tsubasa Rise of New Champions\\Savedata\\}}" Captain fly and sexy students: pageId: 148964 steam: 1135400 @@ -26474,14 +25821,14 @@ Captain of Industry: pageId: 182921 steam: 1594320 templates: - - '{{Game data/saves|Windows|{{P|appdata}}\Captain of Industry\Saves\|{{P|appdata}}\Captain of Industry\Blueprints\}}' + - "{{Game data/saves|Windows|{{P|appdata}}\\Captain of Industry\\Saves\\|{{P|appdata}}\\Captain of Industry\\Blueprints\\}}" Captain vs Sky Pirates: pageId: 72768 steam: 722340 -Captain's Tail: +"Captain's Tail": pageId: 124637 steam: 977580 -'Captain:Training': +"Captain:Training": pageId: 103831 steam: 908320 CaptainMarlene: @@ -26502,7 +25849,7 @@ Captivus: Capture the Monster: pageId: 82330 steam: 794920 -'Capture the planet: Cute War': +"Capture the planet: Cute War": pageId: 127898 steam: 1024780 Captured King: @@ -26536,17 +25883,17 @@ Car Mechanic Simulator 2014: pageId: 50713 steam: 270850 templates: - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\Red Dot Games\Car Mechanic Simulator}}' + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\Red Dot Games\\Car Mechanic Simulator}}" Car Mechanic Simulator 2015: pageId: 34569 steam: 320300 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Red Dot Games\Car Mechanic Simulator 2015\profile#\}}' + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Red Dot Games\\Car Mechanic Simulator 2015\\profile#\\}}" Car Mechanic Simulator 2018: pageId: 63322 steam: 645630 templates: - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Red Dot Games\Car Mechanic Simulator 2018\}}' + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Red Dot Games\\Car Mechanic Simulator 2018\\}}" Car Mechanic Simulator 2021: pageId: 170669 steam: 1190000 @@ -26576,39 +25923,37 @@ Car Tycoon: Car Wash Simulator: pageId: 124339 steam: 992840 -'Car Washer: Summer of the Ninja': +"Car Washer: Summer of the Ninja": pageId: 45757 steam: 369360 CarX Drift Racing Online: pageId: 65013 steam: 635260 steamSide: - - 1535220 - - 1449350 - - 1308680 - - 1308670 - - 1214350 - - 1178950 - - 1159010 - - 1112470 - - 1112460 - - 1112420 - - 998560 - - 967320 - - 965040 - - 937630 - - 906130 - - 858690 - - 842050 - - 776950 - - 769710 - - 752450 - 752440 + - 752450 + - 769710 + - 776950 + - 842050 + - 858690 + - 906130 + - 937630 + - 965040 + - 967320 + - 998560 + - 1112420 + - 1112460 + - 1112470 + - 1159010 + - 1178950 + - 1214350 + - 1308670 + - 1308680 + - 1449350 + - 1535220 templates: - - >- - {{Game data/config|Windows|{{P|hkcu}}\Software\CarX Technologies\Drift Racing - Online|{{p|userprofile}}\AppData\LocalLow\CarX Technologies\Drift Racing Online\}} - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\CarX Technologies\Drift Racing Online\Cache}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\CarX Technologies\\Drift Racing Online|{{p|userprofile}}\\AppData\\LocalLow\\CarX Technologies\\Drift Racing Online\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\CarX Technologies\\Drift Racing Online\\Cache}}" CarX Streets: pageId: 145495 steam: 1114150 @@ -26626,7 +25971,7 @@ Caravan: pageId: 39211 steam: 352890 templates: - - '{{Game data/saves|Windows|{{p|appdata}}\Daedalic Entertainment GmbH\Caravan\}}' + - "{{Game data/saves|Windows|{{p|appdata}}\\Daedalic Entertainment GmbH\\Caravan\\}}" Caravaneer 2: pageId: 184178 steam: 1500820 @@ -26638,12 +25983,10 @@ Carcassonne: pageId: 76255 steam: 598810 templates: - - >- - {{Game - data/config|Windows|{{P|userprofile}}\AppData\LocalLow\Asmodee\Carcassonne\Default\|{{P|hkcu}}\Software\Asmodee\Carcassonne\}} - - '{{Game data/config|Epic Games Launcher|{{P|userprofile}}\AppData\LocalLow\Asmodee\Carcassonne\EpicGames\}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Asmodee\Carcassonne\Default\}}' - - '{{Game data/saves|Epic Games Launcher|{{P|userprofile}}\AppData\LocalLow\Asmodee\Carcassonne\EpicGames\}}' + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Asmodee\\Carcassonne\\Default\\|{{P|hkcu}}\\Software\\Asmodee\\Carcassonne\\}}" + - "{{Game data/config|Epic Games Launcher|{{P|userprofile}}\\AppData\\LocalLow\\Asmodee\\Carcassonne\\EpicGames\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Asmodee\\Carcassonne\\Default\\}}" + - "{{Game data/saves|Epic Games Launcher|{{P|userprofile}}\\AppData\\LocalLow\\Asmodee\\Carcassonne\\EpicGames\\}}" Card Adventures: pageId: 127547 steam: 1005780 @@ -26658,10 +26001,10 @@ Card City Nights: pageId: 15193 steam: 271820 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\Ludosity\CardCityNights\}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Ludosity/CardCityNights/}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Ludosity\CardCityNights\}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Ludosity/CardCityNights/}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Ludosity\\CardCityNights\\}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Ludosity/CardCityNights/}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Ludosity\\CardCityNights\\}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Ludosity/CardCityNights/}}" Card City Nights 2: pageId: 56820 steam: 241300 @@ -26678,26 +26021,24 @@ Card Hog: pageId: 154410 steam: 1163740 templates: - - '{{Game data/config|Windows|{{P|localappdata}}/CardHog/}}' - - '{{Game data/saves|Windows|{{P|localappdata}}/CardHog/saves/}}' + - "{{Game data/config|Windows|{{P|localappdata}}/CardHog/}}" + - "{{Game data/saves|Windows|{{P|localappdata}}/CardHog/saves/}}" Card Hunter: pageId: 38285 steam: 293260 templates: - - >- - {{Game data/config|Windows|{{P|appdata}}\com.bluemanchu.CardHunter\Local - Store\#SharedObjects\CardHunterSteamApp.swf\DesktopOptions.sol}} + - "{{Game data/config|Windows|{{P|appdata}}\\com.bluemanchu.CardHunter\\Local Store\\#SharedObjects\\CardHunterSteamApp.swf\\DesktopOptions.sol}}" Card Quest: pageId: 55602 steam: 493080 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\WinterSpring Games\Card Quest}}' + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\WinterSpring Games\\Card Quest}}" Card Shark: gog: 1176964782 pageId: 172004 steam: 1371720 templates: - - '{{Game data/saves|Windows|{{p|UserProfile}}\AppData\LocalLow\Nerial\Card_shark\Saves}}' + - "{{Game data/saves|Windows|{{p|UserProfile}}\\AppData\\LocalLow\\Nerial\\Card_shark\\Saves}}" Card Throw VR: pageId: 138929 steam: 1087770 @@ -26709,7 +26050,7 @@ Card of Spirits: Card story: pageId: 141693 steam: 1103330 -'CardLife: Cardboard Survival': +"CardLife: Cardboard Survival": pageId: 113734 steam: 920690 Cardaclysm: @@ -26717,7 +26058,7 @@ Cardaclysm: pageId: 166941 steam: 1252710 templates: - - '{{Game data/config|Windows|{{p|appdata}}\LocalLow\Elder Games\Cardaclysm - Shards of the Four}}' + - "{{Game data/config|Windows|{{p|appdata}}\\LocalLow\\Elder Games\\Cardaclysm - Shards of the Four}}" Cardaria: pageId: 149370 steam: 1112870 @@ -26731,7 +26072,7 @@ Cardfight!! Vanguard Dear Days: pageId: 180606 steam: 1881420 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\Saved Games\VG2\SAVELOAD}}' + - "{{Game data/saves|Windows|{{p|userprofile}}\\Saved Games\\VG2\\SAVELOAD}}" Cardiganical: pageId: 108304 steam: 917660 @@ -26762,7 +26103,7 @@ Cards of Cthulhu: Cards of Knight: pageId: 114520 steam: 943440 -'Carefree Capers: Shaping Up!': +"Carefree Capers: Shaping Up!": pageId: 167443 Caretaker: pageId: 96951 @@ -26783,21 +26124,21 @@ Cargo Commander: pageId: 7492 steam: 220460 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Serious Brew\Cargo Commander\}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Serious Brew/Cargo Commander/}}' - - '{{Game data/saves|Windows|{{p|hkcu}}\Software\Serious Brew\Cargo Commander\}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Serious Brew/Cargo Commander/}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Serious Brew\\Cargo Commander\\}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Serious Brew/Cargo Commander/}}" + - "{{Game data/saves|Windows|{{p|hkcu}}\\Software\\Serious Brew\\Cargo Commander\\}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Serious Brew/Cargo Commander/}}" Cargo Cult: pageId: 122756 steam: 961280 -'Cargo Cult: Shoot''n''Loot VR': +"Cargo Cult: Shoot'n'Loot VR": pageId: 54762 steam: 565380 Cargo! The Quest for Gravity: pageId: 40992 steam: 41740 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Ice-pick Lodge\Cargo\rcfg.xml}}' + - "{{Game data/config|Windows|{{p|appdata}}\\Ice-pick Lodge\\Cargo\\rcfg.xml}}" Caribbean Odyssey: pageId: 45653 steam: 414500 @@ -26806,8 +26147,8 @@ Caribbean!: pageId: 22975 steam: 293010 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Caribbean!\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Caribbean!\Savegames\Caribbean!\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Caribbean!\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Caribbean!\\Savegames\\Caribbean!\\}}" Carlos III y la difusión de la antigüedad: pageId: 59271 steam: 590440 @@ -26819,59 +26160,57 @@ Carmageddon: pageId: 13419 steam: 282010 templates: - - '{{Game data/config|Windows|{{p|game}}\DATA}}' - - '{{Game data/saves|Windows|{{p|game}}\DATA\SAVEGAME}}' -'Carmageddon II: Carpocalypse Now': + - "{{Game data/config|Windows|{{p|game}}\\DATA}}" + - "{{Game data/saves|Windows|{{p|game}}\\DATA\\SAVEGAME}}" +"Carmageddon II: Carpocalypse Now": gog: 1207659963 pageId: 13423 steam: 282030 templates: - - '{{Game data/config|Windows|{{p|game}}\data}}' - - '{{Game data/saves|Windows|{{p|game}}\data\SAVEDGAMES.ARS}}' + - "{{Game data/config|Windows|{{p|game}}\\data}}" + - "{{Game data/saves|Windows|{{p|game}}\\data\\SAVEDGAMES.ARS}}" Carmageddon TDR 2000: gog: 1146738698 pageId: 24482 steam: 331650 templates: - - '{{Game data/config|Windows|{{p|game}}\ASSETS\options.txt}}' - - '{{Game data/saves|Windows|{{p|game}}\Save\}}' -'Carmageddon: Max Damage': + - "{{Game data/config|Windows|{{p|game}}\\ASSETS\\options.txt}}" + - "{{Game data/saves|Windows|{{p|game}}\\Save\\}}" +"Carmageddon: Max Damage": gog: 1904451332 pageId: 52456 steam: 505170 templates: - - '{{Game data/config|Windows|{{p|steam}}\Data_Misc\config|{{p|steam}}\userdata\{{p|uid}}\505170\remote\}}' - - >- - {{Game data/saves|Windows|{{p|userprofile\Documents}}\Carmageddon Max - Damage\savegames|{{p|steam}}\steamapps\common\Carmageddon1\CARMA\DATA\SAVEGAME}} -'Carmageddon: Reincarnation': + - "{{Game data/config|Windows|{{p|steam}}\\Data_Misc\\config|{{p|steam}}\\userdata\\{{p|uid}}\\505170\\remote\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Carmageddon Max Damage\\savegames|{{p|steam}}\\steamapps\\common\\Carmageddon1\\CARMA\\DATA\\SAVEGAME}}" +"Carmageddon: Reincarnation": pageId: 16273 steam: 249380 templates: - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Carmageddon Reincarnation\savegames}}' + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Carmageddon Reincarnation\\savegames}}" Carmen Sandiego Math Detective: pageId: 123146 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/saves|Windows|{{p|game}}\}}' + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\}}" Carmen Sandiego Returns: pageId: 183616 -Carmen Sandiego's Great Chase through Time: +"Carmen Sandiego's Great Chase through Time": pageId: 27367 renamedFrom: - - Carmen Sandiego's Great Chase Through Time + - "Carmen Sandiego's Great Chase Through Time" templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/saves|Windows|{{p|game}}\}}' -Carmen Sandiego's ThinkQuick Challenge: + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\}}" +"Carmen Sandiego's ThinkQuick Challenge": pageId: 111324 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/saves|Windows|{{p|game}}\}}' + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\}}" Carnage Racing: pageId: 40512 steam: 228940 -'Carnage in Space: Ignition': +"Carnage in Space: Ignition": pageId: 78473 steam: 748650 Carnal: @@ -26880,10 +26219,10 @@ Carnal: Carnal Instinct: pageId: 174786 steam: 1495320 -'CarneyVale: Showtime': +"CarneyVale: Showtime": pageId: 89112 templates: - - '{{Game data/saves|Windows|{{P|appdata}}\Gambit\CarneyVale Showtime}}' + - "{{Game data/saves|Windows|{{P|appdata}}\\Gambit\\CarneyVale Showtime}}" Carnival Ball: pageId: 68348 steam: 676300 @@ -26891,7 +26230,7 @@ Carnival Games: pageId: 165345 steam: 1249740 templates: - - '{{Game data/saves|Windows|{{p|userprofile\documents}}\My Games\Carnival Games\{{p|uid}}}}' + - "{{Game data/saves|Windows|{{p|userprofile\\documents}}\\My Games\\Carnival Games\\{{p|uid}}}}" Carnival Games VR: pageId: 39341 steam: 458920 @@ -26904,48 +26243,48 @@ Carnivore Land: Carnivores: pageId: 161119 templates: - - '{{Game data/config|Windows|{{p|game}}}}' - - '{{Game data/saves|Windows|{{p|game}}}}' + - "{{Game data/config|Windows|{{p|game}}}}" + - "{{Game data/saves|Windows|{{p|game}}}}" Carnivores 2: pageId: 161115 templates: - - '{{Game data/config|Windows|{{p|game}}}}' - - '{{Game data/saves|Windows|{{p|game}}}}' -'Carnivores: Cityscape': + - "{{Game data/config|Windows|{{p|game}}}}" + - "{{Game data/saves|Windows|{{p|game}}}}" +"Carnivores: Cityscape": pageId: 155252 templates: - - '{{Game data/config|Windows|{{p|game}}\Scripts\}}' - - '{{Game data/saves|Windows|{{p|game}}\SaveGame\}}' -'Carnivores: Dinosaur Hunt': + - "{{Game data/config|Windows|{{p|game}}\\Scripts\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\SaveGame\\}}" +"Carnivores: Dinosaur Hunt": pageId: 186795 steam: 1461030 -'Carnivores: Dinosaur Hunter Reborn': +"Carnivores: Dinosaur Hunter Reborn": pageId: 47761 steam: 293520 -'Carnivores: Ice Age': +"Carnivores: Ice Age": pageId: 161118 templates: - - '{{Game data/config|Windows|{{p|game}}}}' - - '{{Game data/saves|Windows|{{p|game}}}}' + - "{{Game data/config|Windows|{{p|game}}}}" + - "{{Game data/saves|Windows|{{p|game}}}}" Caromble!: pageId: 46677 steam: 347660 Carp Fishing Simulator: pageId: 48066 steam: 366290 -Carpe Deal 'Em: +"Carpe Deal 'Em": pageId: 51445 steam: 528190 Carpe Diem: pageId: 37792 steam: 423880 templates: - - '{{Game data/config|Windows|{{p|game}}\renpy\config.py}}' - - '{{Game data/saves|Windows|{{P|appdata}}\RenPy\Carpe Diem-1438651883\}}' -'Carpe Diem: Reboot': + - "{{Game data/config|Windows|{{p|game}}\\renpy\\config.py}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\RenPy\\Carpe Diem-1438651883\\}}" +"Carpe Diem: Reboot": pageId: 72258 steam: 686760 -'Carpe Lucem: Seize the Light': +"Carpe Lucem: Seize the Light": pageId: 43752 steam: 433700 Carpet Bombing: @@ -26954,10 +26293,10 @@ Carpet Bombing: Carreras de Velocidad: pageId: 130368 steam: 1032060 -Carrie's Order Up!: +"Carrie's Order Up!": pageId: 39948 steam: 522490 -'Carried Away: Winter Sports': +"Carried Away: Winter Sports": pageId: 81677 steam: 788010 Carrier: @@ -26970,14 +26309,14 @@ Carrier Command 2: pageId: 171410 steam: 1489630 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Carrier Command 2\}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Carrier Command 2\saved_games}}' -'Carrier Command: Gaea Mission': + - "{{Game data/config|Windows|{{p|appdata}}\\Carrier Command 2\\}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Carrier Command 2\\saved_games}}" +"Carrier Command: Gaea Mission": pageId: 40717 steam: 65740 templates: - - '{{Game data/config|Windows|{{p|steam}}\userdata\{{p|uid}}\65740\local\ccsettings.xml}}' - - '{{Game data/saves|Windows|{{p|steam}}\userdata\{{p|uid}}\65740\local\}}' + - "{{Game data/config|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\65740\\local\\ccsettings.xml}}" + - "{{Game data/saves|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\65740\\local\\}}" Carrier Deck: pageId: 63326 steam: 580720 @@ -26993,16 +26332,12 @@ Carrion: steamSide: - 1181730 templates: - - '{{Game data/config|Windows|{{p|USERPROFILE}}\AppData\LocalLow\Phobia\Carrion\settings.json}}' - - >- - {{Game data/config|Microsoft - Store|{{P|localappdata}}\Packages\DevolverDigital.CarrionWin10_6kzv4j18v0c96\SystemAppData\wgs\}} - - '{{Game data/config|Linux|{{P|xdgdatahome}}/Phobia/Carrion/}}' - - '{{Game data/saves|Windows|{{p|USERPROFILE}}\AppData\LocalLow\Phobia\Carrion\saves\}}' - - >- - {{Game data/saves|Microsoft - Store|{{P|localappdata}}\Packages\DevolverDigital.CarrionWin10_6kzv4j18v0c96\SystemAppData\wgs\}} - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/Phobia/Carrion/}}' + - "{{Game data/config|Windows|{{p|USERPROFILE}}\\AppData\\LocalLow\\Phobia\\Carrion\\settings.json}}" + - "{{Game data/config|Microsoft Store|{{P|localappdata}}\\Packages\\DevolverDigital.CarrionWin10_6kzv4j18v0c96\\SystemAppData\\wgs\\}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/Phobia/Carrion/}}" + - "{{Game data/saves|Windows|{{p|USERPROFILE}}\\AppData\\LocalLow\\Phobia\\Carrion\\saves\\}}" + - "{{Game data/saves|Microsoft Store|{{P|localappdata}}\\Packages\\DevolverDigital.CarrionWin10_6kzv4j18v0c96\\SystemAppData\\wgs\\}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/Phobia/Carrion/}}" Carrotting Brain: pageId: 45922 steam: 404750 @@ -27010,14 +26345,14 @@ Cars: pageId: 36473 steam: 331160 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\THQ\Cars\Settings\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\THQ\Cars\Save\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\THQ\\Cars\\Settings\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\THQ\\Cars\\Save\\}}" Cars 2: pageId: 49564 steam: 301760 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\Disney Interactive Studios\Cars2}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\Disney Interactive Studios\Cars2\storage}}' + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\Disney Interactive Studios\\Cars2}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\Disney Interactive Studios\\Cars2\\storage}}" Cars Arena: pageId: 120919 steam: 873810 @@ -27025,21 +26360,21 @@ Cars Mater-National Championship: pageId: 48613 steam: 332260 templates: - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\THQ\Cars2\}}' -'Cars Toon: Mater''s Tall Tales': + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\THQ\\Cars2\\}}" +"Cars Toon: Mater's Tall Tales": pageId: 49550 steam: 316320 -'Cars with Guns: It''s About Time': +"Cars with Guns: It's About Time": pageId: 78098 steam: 762900 -'Cars: Fast as Lightning': +"Cars: Fast as Lightning": pageId: 173837 -'Cars: Radiator Springs Adventures': +"Cars: Radiator Springs Adventures": pageId: 40473 steam: 343140 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\THQ\Cars - Radiator Springs Adventures\Settings}}' - - '{{Game data/saves|Windows|{{p|game}}\Users\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\THQ\\Cars - Radiator Springs Adventures\\Settings}}" + - "{{Game data/saves|Windows|{{p|game}}\\Users\\}}" Carsteroids: pageId: 87495 steam: 671470 @@ -27047,8 +26382,8 @@ Cart Life: pageId: 6106 steam: 233390 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/saves|Windows|{{p|game}}\agssave}}' + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\agssave}}" Cart Racer: pageId: 63145 steam: 587420 @@ -27061,21 +26396,21 @@ Cartel Smash: Cartel Tycoon: gog: 1579393346 gogSide: - - 1653457263 - - 1267824996 - 1156481338 - - 1999609476 - 1259294737 + - 1267824996 + - 1653457263 + - 1999609476 - 2056410911 pageId: 157162 steam: 1220140 steamSide: - - 2081450 - - 2081480 - 1570090 - 2020980 + - 2081450 + - 2081480 templates: - - '{{Game data/saves|Windows|{{P|localappdata}}\CartelTycoon\Saved\SaveGames\}}' + - "{{Game data/saves|Windows|{{P|localappdata}}\\CartelTycoon\\Saved\\SaveGames\\}}" Cartesian: pageId: 58221 steam: 596470 @@ -27084,10 +26419,8 @@ Carto: pageId: 157118 steam: 1172450 templates: - - >- - {{Game - data/config|Windows|{{P|userprofile\appdata\locallow}}\SunheadGames\Carto\Saves\player.globalsave|{{P|hkcu}}\SOFTWARE\SunheadGames\Carto\}} - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\SunheadGames\Carto\Saves\}}' + - "{{Game data/config|Windows|{{P|userprofile\\appdata\\locallow}}\\SunheadGames\\Carto\\Saves\\player.globalsave|{{P|hkcu}}\\SOFTWARE\\SunheadGames\\Carto\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\SunheadGames\\Carto\\Saves\\}}" Carton: pageId: 50831 steam: 531920 @@ -27106,13 +26439,13 @@ Cartoon Network Journeys VR: Cartoon Strike: pageId: 93279 steam: 616830 -'Cartoonway: Mini Cars': +"Cartoonway: Mini Cars": pageId: 93961 steam: 856380 Cartoony Cars 2: pageId: 120741 steam: 915190 -'Case 2: Animatronics Survival': +"Case 2: Animatronics Survival": pageId: 94070 steam: 722960 Case 8: @@ -27137,7 +26470,7 @@ Cash Crop: pageId: 65475 steam: 662910 templates: - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\JointVentures\CashCrop\}}' + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\JointVentures\\CashCrop\\}}" Cash Out: pageId: 47755 steam: 372970 @@ -27172,10 +26505,10 @@ Casino Slot Machines: CasinoRPG: pageId: 80342 steam: 658970 -'Casinopia: The Blackjack': +"Casinopia: The Blackjack": pageId: 72867 steam: 692060 -Cassandra's Fabulous Foray: +"Cassandra's Fabulous Foray": pageId: 71942 steam: 688200 Cassette Beasts: @@ -27187,19 +26520,17 @@ Cassette Beasts: - 2259020 - 2259040 templates: - - '{{Game data/config|Windows|{{p|appdata}}\CassetteBeasts}}' - - '{{Game data/config|Microsoft Store|{{p|appdata}}\CassetteBeasts}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.local/share/CassetteBeasts}}' - - '{{Game data/saves|Windows|{{p|appdata}}\CassetteBeasts}}' - - >- - {{Game data/saves|Microsoft - Store|{{p|localappdata}}\Packages\RawFury.CassetteBeasts_9s0pnehqffj7t\SystemAppData\wgs\{{P|uid}}}} - - '{{Game data/saves|Linux|{{p|linuxhome}}/.local/share/CassetteBeasts}}' + - "{{Game data/config|Windows|{{p|appdata}}\\CassetteBeasts}}" + - "{{Game data/config|Microsoft Store|{{p|appdata}}\\CassetteBeasts}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.local/share/CassetteBeasts}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\CassetteBeasts}}" + - "{{Game data/saves|Microsoft Store|{{p|localappdata}}\\Packages\\RawFury.CassetteBeasts_9s0pnehqffj7t\\SystemAppData\\wgs\\{{P|uid}}}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.local/share/CassetteBeasts}}" Cassiodora: pageId: 183889 steam: 1708550 templates: - - '{{Game data/saves|Windows|{{p|localappdata}}\projectCassiodora\Saved\SaveGames}}' + - "{{Game data/saves|Windows|{{p|localappdata}}\\projectCassiodora\\Saved\\SaveGames}}" Cast Away: pageId: 102971 steam: 894370 @@ -27210,7 +26541,7 @@ Castaway Home Designer: pageId: 64795 steam: 656560 templates: - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/656560/remote/}}' + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/656560/remote/}}" Castaway Paradise Complete Edition: pageId: 38347 steam: 304950 @@ -27225,8 +26556,8 @@ Caster: pageId: 41309 steam: 29800 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/saves|Windows|{{p|game}}\save\}}' + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\save\\}}" Casting Hearts: pageId: 176273 Castle: @@ -27260,8 +26591,8 @@ Castle Crashers: pageId: 3670 steam: 204360 templates: - - '{{Game data/config|Steam|{{p|steam}}/userdata/{{p|uid}}/204360/}}' - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/204360/Remote}}' + - "{{Game data/config|Steam|{{p|steam}}/userdata/{{p|uid}}/204360/}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/204360/Remote}}" Castle Defender: pageId: 63727 steam: 651520 @@ -27274,15 +26605,15 @@ Castle Explorer (2017): Castle Fantasia: pageId: 178009 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Ego!\CastleFantasia\Main\*}}' - - '{{Game data/saves|Windows|{{P|hkcu}}\Software\Ego!\CastleFantasia\Save\*}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Ego!\\CastleFantasia\\Main\\*}}" + - "{{Game data/saves|Windows|{{P|hkcu}}\\Software\\Ego!\\CastleFantasia\\Save\\*}}" Castle Flipper: pageId: 122814 steam: 944250 -'Castle Heist: Chapter 1': +"Castle Heist: Chapter 1": pageId: 43183 steam: 438220 -'Castle Invasion: Throne Out': +"Castle Invasion: Throne Out": pageId: 50996 steam: 504850 Castle Kong: @@ -27291,11 +26622,11 @@ Castle Kong: Castle Master: pageId: 75890 templates: - - '{{Game data/saves|DOS|{{p|game}}\********}}' -'Castle Master II: The Crypt': + - "{{Game data/saves|DOS|{{p|game}}\\********}}" +"Castle Master II: The Crypt": pageId: 75893 templates: - - '{{Game data/saves|DOS|{{p|game}}\********}}' + - "{{Game data/saves|DOS|{{p|game}}\\********}}" Castle Must Be Mine: pageId: 52922 steam: 542770 @@ -27305,21 +26636,21 @@ Castle Of Pixel Skulls: Castle Rencounter: pageId: 120796 steam: 970620 -'Castle Secrets: Between Day and Night': +"Castle Secrets: Between Day and Night": pageId: 87141 steam: 806930 Castle Story: pageId: 10718 steam: 227860 templates: - - '{{Game data/config|Windows|{{p|game}}\Info\UserSettings\}}' - - '{{Game data/saves|Windows|{{p|game}}\Info\Saves\}}' + - "{{Game data/config|Windows|{{p|game}}\\Info\\UserSettings\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\Info\\Saves\\}}" Castle Strike: pageId: 171686 templates: - - '{{Game data/config|Windows|{{p|game}}}}' - - '{{Game data/saves|Windows|{{p|game}}/savegame}}' -'Castle Torgeath: Descent into Darkness': + - "{{Game data/config|Windows|{{p|game}}}}" + - "{{Game data/saves|Windows|{{p|game}}/savegame}}" +"Castle Torgeath: Descent into Darkness": pageId: 44856 steam: 431870 Castle Wars VR: @@ -27331,8 +26662,8 @@ Castle Werewolf: Castle Wolfenstein: pageId: 17599 templates: - - '{{Game data/config|DOS|{{p|game}}\ctrls}}' - - '{{Game data/saves|DOS|{{p|game}}\CASTLE|{{p|game}}\CW.EXE}}' + - "{{Game data/config|DOS|{{p|game}}\\ctrls}}" + - "{{Game data/saves|DOS|{{p|game}}\\CASTLE|{{p|game}}\\CW.EXE}}" Castle Woodwarf: pageId: 145025 steam: 1123300 @@ -27343,8 +26674,8 @@ Castle in the Darkness: pageId: 22863 steam: 262960 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/saves|Windows|{{p|game}}\citdt}}' + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\citdt}}" Castle of Cthulhu: pageId: 135111 steam: 1064880 @@ -27354,8 +26685,8 @@ Castle of Illusion: pageId: 10058 steam: 227600 templates: - - '{{Game data/config|Windows|{{p|game}}\pcrun.cfg|{{p|hkcu}}\Software\SSA\COI\}}' - - '{{Game data/saves|Windows|{{p|steam}}\userdata\{{p|uid}}\227600\remote\}}' + - "{{Game data/config|Windows|{{p|game}}\\pcrun.cfg|{{p|hkcu}}\\Software\\SSA\\COI\\}}" + - "{{Game data/saves|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\227600\\remote\\}}" Castle of Shikigami: pageId: 62821 steam: 582980 @@ -27376,8 +26707,8 @@ Castle of no Escape 2: Castle of the Winds: pageId: 265 templates: - - '{{Game data/config|Windows|{{p|game}}}}' - - '{{Game data/saves|Windows|{{p|game}}}}' + - "{{Game data/config|Windows|{{p|game}}}}" + - "{{Game data/saves|Windows|{{p|game}}}}" Castle on the Coast: gog: 1565525472 pageId: 173449 @@ -27385,12 +26716,12 @@ Castle on the Coast: steamSide: - 1397090 templates: - - '{{Game data/config|Windows|{{p|game}}\CastleOnTheCoast\Saved\SaveGames\settings.sav}}' - - '{{Game data/saves|Windows|{{p|game}}\CastleOnTheCoast\Saved\SaveGames}}' -'Castle: Jigsaw Puzzles': + - "{{Game data/config|Windows|{{p|game}}\\CastleOnTheCoast\\Saved\\SaveGames\\settings.sav}}" + - "{{Game data/saves|Windows|{{p|game}}\\CastleOnTheCoast\\Saved\\SaveGames}}" +"Castle: Jigsaw Puzzles": pageId: 94703 steam: 860880 -'Castle: Never Judge a Book by its Cover': +"Castle: Never Judge a Book by its Cover": pageId: 50095 steam: 301740 CastleAbra: @@ -27406,82 +26737,74 @@ CastleMiner Z: pageId: 50695 steam: 253430 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\CastleMiner\user.settings}}' - - |- - {{Game data/saves|Windows|{{P|localappdata}}\CastleMinerZ\{{P|uid}} - }} + - "{{Game data/config|Windows|{{P|localappdata}}\\CastleMiner\\user.settings}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\CastleMinerZ\\{{P|uid}}\n}}" CastleStorm: pageId: 9014 steam: 241410 templates: - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\Zen Studios\}}' - - '{{Game data/saves|Steam|/userdata//241410/remote/Profile.dat}}' + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\Zen Studios\\}}" + - "{{Game data/saves|Steam|/userdata//241410/remote/Profile.dat}}" CastleStorm II: pageId: 139790 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Castlestorm2\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\Castlestorm2\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\Castlestorm2\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Castlestorm2\\Saved\\SaveGames\\}}" Castles: gog: 1207663063 pageId: 14491 steam: 666660 templates: - - '{{Game data/saves|DOS|{{p|game}}\SAVEGAME.*}}' + - "{{Game data/saves|DOS|{{p|game}}\\SAVEGAME.*}}" Castles (2015): pageId: 51035 steam: 384010 -'Castles II: Siege and Conquest': +"Castles II: Siege and Conquest": gog: 1207663073 pageId: 14492 steam: 670180 templates: - - '{{Game data/config|DOS|{{p|game}}\OPTIONS.DAT}}' - - '{{Game data/saves|DOS|{{p|game}}\*.GAM}}' + - "{{Game data/config|DOS|{{p|game}}\\OPTIONS.DAT}}" + - "{{Game data/saves|DOS|{{p|game}}\\*.GAM}}" Castlevania: pageId: 75404 templates: - - '{{Game data/saves|DOS|{{p|game}}\CASTLE.DAT|{{p|game}}\SCORES.DAT}}' + - "{{Game data/saves|DOS|{{p|game}}\\CASTLE.DAT|{{p|game}}\\SCORES.DAT}}" Castlevania Advance Collection: pageId: 171688 steam: 1552550 templates: - - '{{Game data/saves|Windows|{{p|appdata}}\Castlevania Advance Collection\savedata\}}' - - '{{Game data/saves|Steam|{{P|steam}}\userdata\{{P|uid}}\1552550\remote\}}' + - "{{Game data/saves|Windows|{{p|appdata}}\\Castlevania Advance Collection\\savedata\\}}" + - "{{Game data/saves|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\1552550\\remote\\}}" Castlevania Anniversary Collection: pageId: 134008 steam: 1018010 templates: - - '{{Game data/config|Windows|{{P|appdata}}\Castlevania Anniversary Collection\savedata\savecfg.txt}}' - - '{{Game data/saves|Windows|{{P|appdata}}\Castlevania Anniversary Collection\savedata\}}' - - '{{Game data/saves|Steam|{{P|steam}}\userdata\{{P|uid}}\1018010\remote\}}' -'Castlevania: Grimoire of Souls': + - "{{Game data/config|Windows|{{P|appdata}}\\Castlevania Anniversary Collection\\savedata\\savecfg.txt}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\Castlevania Anniversary Collection\\savedata\\}}" + - "{{Game data/saves|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\1018010\\remote\\}}" +"Castlevania: Grimoire of Souls": pageId: 170733 -'Castlevania: Lords of Shadow': +"Castlevania: Lords of Shadow": pageId: 9474 steam: 234080 templates: - - '{{Game data/config|Windows|{{p|game}}\bin\Profile\Saves\Castlevania.cfg}}' - - '{{Game data/config|Steam|{{p|steam}}\userdata\{{p|uid}}\234080\remote\}}' - - '{{Game data/saves|Windows|{{p|game}}\bin\Profile\Saves\Castlevania.profile}}' - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\234080\remote\}}' -'Castlevania: Lords of Shadow - Mirror of Fate HD': + - "{{Game data/config|Windows|{{p|game}}\\bin\\Profile\\Saves\\Castlevania.cfg}}" + - "{{Game data/config|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\234080\\remote\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\bin\\Profile\\Saves\\Castlevania.profile}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\234080\\remote\\}}" +"Castlevania: Lords of Shadow - Mirror of Fate HD": pageId: 16268 steam: 282530 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\MercurySteam\Castlevania Lords of Shadow Mirror of Fate - HD\{{p|uid}}\}} - - >- - {{Game data/saves|Windows|{{p|userprofile\Documents}}\MercurySteam\Castlevania Lords of Shadow Mirror of Fate - HD\{{p|uid}}\}} -'Castlevania: Lords of Shadow 2': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\MercurySteam\\Castlevania Lords of Shadow Mirror of Fate HD\\{{p|uid}}\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\MercurySteam\\Castlevania Lords of Shadow Mirror of Fate HD\\{{p|uid}}\\}}" +"Castlevania: Lords of Shadow 2": pageId: 14830 steam: 239250 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\MercurySteam\Castlevania Lords of Shadow - 2\{{p|uid}}\game.cfg}} - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\MercurySteam\Castlevania Lords of Shadow 2\{{p|uid}}\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\MercurySteam\\Castlevania Lords of Shadow 2\\{{p|uid}}\\game.cfg}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\MercurySteam\\Castlevania Lords of Shadow 2\\{{p|uid}}\\}}" Castra: pageId: 139314 steam: 1073140 @@ -27494,14 +26817,14 @@ Casual Penalty: Casual Spider Solitaire: pageId: 73455 steam: 722810 -'Casus Belli: Battle of Annihilation': +"Casus Belli: Battle of Annihilation": pageId: 65299 steam: 667000 -'Cat Burglar: A Tail of Purrsuit': +"Cat Burglar: A Tail of Purrsuit": pageId: 94326 steam: 760510 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Gamers for Good\Cat Burglar: A Tail of Purrsuit\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Gamers for Good\\Cat Burglar: A Tail of Purrsuit\\}}" Cat Cafe Manager: gog: 1218859479 pageId: 176866 @@ -27526,13 +26849,13 @@ Cat Girl: Cat Girl Without Salad: pageId: 136166 templates: - - '{{Game data/saves|Windows|{{P|game}}\DATA\}}' + - "{{Game data/saves|Windows|{{P|game}}\\DATA\\}}" Cat Goes Fishing: pageId: 37668 steam: 343780 templates: - - '{{Game data/config|Windows|{{p|game}}\options.ini}}' - - '{{Game data/saves|Windows|{{p|LOCALAPPDATA}}\Cat_Goes_Fishing\}}' + - "{{Game data/config|Windows|{{p|game}}\\options.ini}}" + - "{{Game data/saves|Windows|{{p|LOCALAPPDATA}}\\Cat_Goes_Fishing\\}}" Cat Goes Platform: pageId: 58380 steam: 567250 @@ -27551,29 +26874,26 @@ Cat Meat: Cat Notebook: pageId: 126215 steam: 1003490 -'Cat President: A More Purrfect Union': +"Cat President: A More Purrfect Union": pageId: 36886 steam: 474980 templates: - - '{{Game data/config|Windows|{{p|game}}\renpy\config.py}}' + - "{{Game data/config|Windows|{{p|game}}\\renpy\\config.py}}" Cat Quest: gog: 1687656736 pageId: 65118 steam: 593280 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\The Gentlebros Pte. Ltd.\Cat Quest\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\The Gentlebros Pte_ Ltd_\Cat Quest\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/com.thegentlebros.catquest}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\The Gentlebros Pte. Ltd.\\Cat Quest\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\The Gentlebros Pte_ Ltd_\\Cat Quest\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/com.thegentlebros.catquest}}" Cat Quest II: gog: 1958338581 pageId: 132805 steam: 914710 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\documents}}\Cat Quest II\settings|{{p|hkcu}}\SOFTWARE\The Gentlebros Pte. Ltd.\Cat Quest II\|{{p|userprofile\appdata\locallow}}\The - Gentlebros Pte. Ltd_\Cat Quest II\}} - - '{{Game data/saves|Windows|{{p|userprofile}}\Documents\Cat Quest II\save_file*.dat}}' + - "{{Game data/config|Windows|{{p|userprofile\\documents}}\\Cat Quest II\\settings|{{p|hkcu}}\\SOFTWARE\\The Gentlebros Pte. Ltd.\\Cat Quest II\\|{{p|userprofile\\appdata\\locallow}}\\The Gentlebros Pte. Ltd_\\Cat Quest II\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Documents\\Cat Quest II\\save_file*.dat}}" Cat Simulator: pageId: 44629 steam: 393390 @@ -27589,15 +26909,15 @@ Cat and Ghostly Road: Cat couple: pageId: 99712 steam: 891570 -Cat doesn't like banana: +"Cat doesn't like banana": pageId: 104487 steam: 914150 Cat on a Diet: pageId: 37630 steam: 447890 templates: - - '{{Game data/config|Windows|{{P|appdata}}\CatOnADiet\settings.ini}}' - - '{{Game data/saves|Windows|{{P|appdata}}\CatOnADiet\saves\}}' + - "{{Game data/config|Windows|{{P|appdata}}\\CatOnADiet\\settings.ini}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\CatOnADiet\\saves\\}}" Cat or Bread?: pageId: 62168 steam: 574820 @@ -27610,16 +26930,16 @@ Cat survival: Cat vs. Corgis: pageId: 67251 steam: 687610 -Cat's Bar: +"Cat's Bar": pageId: 87393 steam: 804900 -Cat's Lover: +"Cat's Lover": pageId: 68432 steam: 691990 -Cat's Puzzle /ᐠ。ꞈ。ᐟ\: +"Cat's Puzzle /ᐠ。ꞈ。ᐟ\\": pageId: 121546 steam: 956190 -Cat's Yarn: +"Cat's Yarn": pageId: 99566 steam: 884290 Cat-o-Combo!: @@ -27631,18 +26951,16 @@ CatAnod: CatCatch: pageId: 109696 steam: 913210 -'Cataclysm: Dark Days Ahead': +"Cataclysm: Dark Days Ahead": pageId: 168215 steam: 1639000 templates: - - '{{Game data/config|Linux|{{p|xdgconfighome}}/cataclysm-dda/}}' - - >- - {{Game - data/saves|Linux|{{p|xdgdatahome}}/cataclysm-dda/save/|{{p|xdgdatahome}}/cataclysm-dda/memorial/|{{p|xdgdatahome}}/cataclysm-dda/graveyard/|{{p|xdgdatahome}}/cataclysm-dda/templates/}} + - "{{Game data/config|Linux|{{p|xdgconfighome}}/cataclysm-dda/}}" + - "{{Game data/saves|Linux|{{p|xdgdatahome}}/cataclysm-dda/save/|{{p|xdgdatahome}}/cataclysm-dda/memorial/|{{p|xdgdatahome}}/cataclysm-dda/graveyard/|{{p|xdgdatahome}}/cataclysm-dda/templates/}}" Catacomb: gog: 1207659189 pageId: 21645 -'Catacomb 3-D: The Descent': +"Catacomb 3-D: The Descent": gog: 1207659189 pageId: 13703 Catacomb Abyss: @@ -27662,7 +26980,7 @@ Catacomb Kids: steam: 315840 Catacomb Snatch: pageId: 3024 -'Catacombs 1: Demon War': +"Catacombs 1: Demon War": pageId: 63777 steam: 654250 Catacombs of Kas: @@ -27671,7 +26989,7 @@ Catacombs of Kas: Catacombs of the Undercity: pageId: 44918 steam: 352440 -'Cataegis: The White Wind': +"Cataegis: The White Wind": pageId: 46280 steam: 344130 Catalyst: @@ -27683,16 +27001,16 @@ Catan Universe: Catan VR: pageId: 90720 steam: 857680 -'Catan: Creator''s Edition': +"Catan: Creator's Edition": pageId: 40602 steam: 239410 templates: - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Catan}}' -'Catan: Die Erste Insel': + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Catan}}" +"Catan: Die Erste Insel": pageId: 152217 templates: - - '{{Game data/config|Windows|{{P|game}}\SAVE_C}}' - - '{{Game data/saves|Windows|{{P|game}}\SAVE_C}}' + - "{{Game data/config|Windows|{{P|game}}\\SAVE_C}}" + - "{{Game data/saves|Windows|{{P|game}}\\SAVE_C}}" Catapult Quest: pageId: 181927 Catastronauts: @@ -27705,7 +27023,7 @@ Catch & Release: pageId: 95025 steam: 679750 templates: - - '{{Game data/saves|Windows|{{p|steam}}\userdata\{{p|uid}}\679750\remote\}}' + - "{{Game data/saves|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\679750\\remote\\}}" Catch Canvas: pageId: 39007 steam: 459550 @@ -27715,7 +27033,7 @@ Catch Me: Catch The Ball 3: pageId: 153058 steam: 1186320 -'Catch The Kids: Priest Simulator Game': +"Catch The Kids: Priest Simulator Game": pageId: 122528 steam: 915730 Catch Your Kitty: @@ -27728,18 +27046,18 @@ Catch a Falling Star: pageId: 35287 steam: 451880 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\SOFTWARE\Alister Software\Catch a Falling Star\}}' - - '{{Game data/saves|Windows|{{p|hkcu}}\SOFTWARE\Alister Software\Catch a Falling Star\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\Alister Software\\Catch a Falling Star\\}}" + - "{{Game data/saves|Windows|{{p|hkcu}}\\SOFTWARE\\Alister Software\\Catch a Falling Star\\}}" Catch a Lover: pageId: 59385 steam: 589320 Catch the Head: pageId: 139440 steam: 1049690 -'Catch the Thief, If you can!': +"Catch the Thief, If you can!": pageId: 72999 steam: 717760 -Catch'em: +"Catch'em": pageId: 104315 steam: 861910 Catching: @@ -27749,28 +27067,28 @@ Cateau: pageId: 114846 steam: 949370 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Lemon Curd Games\Cateau\}}' - - '{{Game data/saves|Windows|{{P|game}}\save.bin}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Lemon Curd Games\\Cateau\\}}" + - "{{Game data/saves|Windows|{{P|game}}\\save.bin}}" Catechumen: pageId: 91641 templates: - - '{{Game data/config|Windows|{{p|game}}\catechumen.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\save\}}' -'Category:Free-to-play': + - "{{Game data/config|Windows|{{p|game}}\\catechumen.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\save\\}}" +"Category:Free-to-play": pageId: 159098 -'Category:Game prototypes': +"Category:Game prototypes": pageId: 14310 -'Category:Games in development': +"Category:Games in development": pageId: 14315 -'Category:Local multiplayer games': +"Category:Local multiplayer games": pageId: 80284 -'Category:Non-updated early access games': +"Category:Non-updated early access games": pageId: 137687 -'Category:Released games under active development': +"Category:Released games under active development": pageId: 9552 -'Category:Unplayable games': +"Category:Unplayable games": pageId: 134978 -'Category:VR games': +"Category:VR games": pageId: 77673 Caterpillar Royale: pageId: 135012 @@ -27786,7 +27104,7 @@ Catgirl Lover 2: renamedFrom: - CATGIRL LOVER 2 steam: 1157750 -'Catgirl Magic: Fury Duel': +"Catgirl Magic: Fury Duel": pageId: 104395 steam: 898540 Cathedral: @@ -27794,8 +27112,8 @@ Cathedral: pageId: 139904 steam: 1056180 templates: - - '{{Game data/config|Windows|{{p|appdata}}\DBornInteractive\Cathedral\config.json}}' - - '{{Game data/saves|Windows|{{p|appdata}}\DBornInteractive\Cathedral\profile*.bin}}' + - "{{Game data/config|Windows|{{p|appdata}}\\DBornInteractive\\Cathedral\\config.json}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\DBornInteractive\\Cathedral\\profile*.bin}}" Cathedral 3-D: pageId: 151240 steam: 1091590 @@ -27803,8 +27121,8 @@ Catherine Classic: pageId: 124963 steam: 893180 templates: - - '{{Game data/config|Windows|{{p|appdata}}\TheEccentricApe\Catherine\AppSettings.ini}}' - - '{{Game data/saves|Windows|{{p|appdata}}\TheEccentricApe\Catherine\}}' + - "{{Game data/config|Windows|{{p|appdata}}\\TheEccentricApe\\Catherine\\AppSettings.ini}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\TheEccentricApe\\Catherine\\}}" Catie in MeowmeowLand: gog: 1281243693 gogSide: @@ -27814,8 +27132,8 @@ Catie in MeowmeowLand: steamSide: - 1643730 templates: - - '{{Game data/config|Linux|~/.local/share/Steam/steamapps/common/Catie in MeowmeowLand/Save/}}' - - '{{Game data/saves|Linux|~/.local/share/Steam/steamapps/common/Catie in MeowmeowLand/Save/}}' + - "{{Game data/config|Linux|~/.local/share/Steam/steamapps/common/Catie in MeowmeowLand/Save/}}" + - "{{Game data/saves|Linux|~/.local/share/Steam/steamapps/common/Catie in MeowmeowLand/Save/}}" Catify VR: pageId: 99412 steam: 815320 @@ -27833,7 +27151,7 @@ Catmaze: pageId: 74600 steam: 620220 templates: - - '{{Game data/config|Windows| %LOCALAPPDATA%\Catmaze\User Data\ }}' + - "{{Game data/config|Windows| %LOCALAPPDATA%\\Catmaze\\User Data\\ }}" Catmouth Island: pageId: 49049 steam: 336380 @@ -27858,9 +27176,9 @@ Cats are Liquid: pageId: 42105 steam: 498330 templates: - - '{{Game data/config|Windows|{{p|HKEY_CURRENT_USER}}\SOFTWARE\LastQuarter Studios\Cats are Liquid}}' - - '{{Game data/config|Linux|{{p|game}}/CatsAreLiquidLinux_Data/Mono/etc/mono/}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\LastQuarter Studios\Cats are Liquid}}' + - "{{Game data/config|Windows|{{p|HKEY_CURRENT_USER}}\\SOFTWARE\\LastQuarter Studios\\Cats are Liquid}}" + - "{{Game data/config|Linux|{{p|game}}/CatsAreLiquidLinux_Data/Mono/etc/mono/}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\LastQuarter Studios\\Cats are Liquid}}" Cats are Liquid - A Better Place: pageId: 153565 steam: 1188080 @@ -27868,8 +27186,8 @@ Cats in Time: pageId: 171018 steam: 1599880 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\SOFTWARE\Pine Studio\Cats in Time}}' - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Pine Studio\Cats in Time\*.sav}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\SOFTWARE\\Pine Studio\\Cats in Time}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Pine Studio\\Cats in Time\\*.sav}}" Cats!: pageId: 35188 steam: 388840 @@ -27882,7 +27200,7 @@ Catsby: Cattle Admission Challenge: pageId: 155771 steam: 1215500 -'Cattle Call: Hollywood Talent Manager': +"Cattle Call: Hollywood Talent Manager": pageId: 114492 steam: 943130 Cattle and Crops: @@ -27890,30 +27208,25 @@ Cattle and Crops: pageId: 82037 steam: 704030 templates: - - '{{Game data/config|Windows|{{p|userprofile\documents}}\My Games\Cattle and Crops\Engine}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.cattle-and-crops/Engine}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\documents\My Games\Cattle and Crops\Profiles\\Save}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.cattle-and-crops/Profiles//Save}}' + - "{{Game data/config|Windows|{{p|userprofile\\documents}}\\My Games\\Cattle and Crops\\Engine}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.cattle-and-crops/Engine}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\documents\\My Games\\Cattle and Crops\\Profiles\\\\Save}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.cattle-and-crops/Profiles//Save}}" Catwoman: pageId: 70448 templates: - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\EA GAMES\Catwoman\Saved Games\}}' -'Catyph: The Kunci Experiment': + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\EA GAMES\\Catwoman\\Saved Games\\}}" +"Catyph: The Kunci Experiment": pageId: 43093 steam: 396870 templates: - - >- - {{Game data/config|Windows|{{P|game}}\config.ini|{{P|localappdata}}\Simon Says - Play\Catyph\config.ini|{{P|game}}\addon\Light Edition\config.ini|{{P|localappdata}}\Simon Says Play\Catyph Light - Edition\config.ini}} - - >- - {{Game data/saves|Windows|{{P|localappdata}}\Simon Says Play\Catyph\Savegames\|{{P|localappdata}}\Simon Says - Play\Catyph Light Edition\Savegames\}} + - "{{Game data/config|Windows|{{P|game}}\\config.ini|{{P|localappdata}}\\Simon Says Play\\Catyph\\config.ini|{{P|game}}\\addon\\Light Edition\\config.ini|{{P|localappdata}}\\Simon Says Play\\Catyph Light Edition\\config.ini}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Simon Says Play\\Catyph\\Savegames\\|{{P|localappdata}}\\Simon Says Play\\Catyph Light Edition\\Savegames\\}}" Catz: pageId: 93454 -'Catz: Your Computer Petz': +"Catz: Your Computer Petz": pageId: 93518 -'Causa, Voices of the Dusk': +"Causa, Voices of the Dusk": pageId: 135837 steam: 1034040 Causality: @@ -27952,28 +27265,28 @@ Cave Runner: Cave Story: pageId: 4689 templates: - - '{{Game data/config|Windows|{{p|game}}\Config.dat}}' - - '{{Game data/saves|Windows|{{p|game}}\Profile.dat}}' -Cave Story's Secret Santa: + - "{{Game data/config|Windows|{{p|game}}\\Config.dat}}" + - "{{Game data/saves|Windows|{{p|game}}\\Profile.dat}}" +"Cave Story's Secret Santa": gog: 1278463559 pageId: 173596 steam: 1812280 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\SOFTWARE\Nicalis\Cave Story''s Secret Santa\}}' - - '{{Game data/saves|Windows|{{p|game}}\secret_santa.dat}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\Nicalis\\Cave Story's Secret Santa\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\secret_santa.dat}}" Cave Story+: gog: 1114665528 pageId: 2359 steam: 200900 templates: - - '{{Game data/config|Windows|{{p|game}}\Profile.dat}}' - - '{{Game data/config|GOG.com|{{p|userprofile\Documents}}\My Games\Cave Story+ (Galaxy)\Profile.dat}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.local/share/CaveStory+/}}' - - '{{Game data/saves|Windows|{{p|game}}\Profile.dat}}' - - '{{Game data/saves|GOG.com|{{p|userprofile\Documents}}\My Games\Cave Story+ (Galaxy)\Profile.dat}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Profile.dat}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.local/share/CaveStory+/Profile.dat}}' + - "{{Game data/config|Windows|{{p|game}}\\Profile.dat}}" + - "{{Game data/config|GOG.com|{{p|userprofile\\Documents}}\\My Games\\Cave Story+ (Galaxy)\\Profile.dat}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.local/share/CaveStory+/}}" + - "{{Game data/saves|Windows|{{p|game}}\\Profile.dat}}" + - "{{Game data/saves|GOG.com|{{p|userprofile\\Documents}}\\My Games\\Cave Story+ (Galaxy)\\Profile.dat}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Profile.dat}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.local/share/CaveStory+/Profile.dat}}" Cave of Illusions: pageId: 150031 steam: 1177890 @@ -27994,8 +27307,8 @@ Caveblazers: pageId: 43839 steam: 452060 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Caveblazers\*.ini}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Caveblazers\*.sav}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Caveblazers\\*.ini}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Caveblazers\\*.sav}}" Caveman Alive: pageId: 72529 steam: 720470 @@ -28014,7 +27327,7 @@ Caveman The Game: Caveman Warriors: pageId: 60962 steam: 603420 -'Caveman World: Mountains of Unga Boonga': +"Caveman World: Mountains of Unga Boonga": pageId: 43380 steam: 462960 Caveman adventures: @@ -28044,36 +27357,31 @@ Cavern of Dreams: pageId: 191342 steam: 2059660 templates: - - >- - {{Game data/saves|Windows|{{p|appdata}}\LocalLow\Bynine Studio\Cavern of - Dreams\save1.json|{{p|appdata}}\LocalLow\Bynine Studio\Cavern of Dreams\save2.json|{{p|appdata}}\LocalLow\Bynine - Studio\Cavern of Dreams\save3.json}} + - "{{Game data/saves|Windows|{{p|appdata}}\\LocalLow\\Bynine Studio\\Cavern of Dreams\\save1.json|{{p|appdata}}\\LocalLow\\Bynine Studio\\Cavern of Dreams\\save2.json|{{p|appdata}}\\LocalLow\\Bynine Studio\\Cavern of Dreams\\save3.json}}" Cavern of Time: pageId: 56904 steam: 578830 Caverns of Karvella: pageId: 126069 steam: 1011460 -'Caverns of Mars: Recharged': +"Caverns of Mars: Recharged": pageId: 185727 steam: 2213980 templates: - - >- - {{Game data/config|Windows|{{P|userprofile\appdata\locallow}}\Atari - Inc_\CavernsOfMarsRecharged\config.txt|{{P|hkcu}}\Software\Atari Inc.\CavernsOfMarsRecharged\}} - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Atari Inc_\CavernsOfMarsRecharged\save.sav}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Atari Inc_/CavernsOfMarsRecharged}}' - - '{{Game data/saves|Linux|{{p|xdgconfighome}}/unity3d/Atari Inc_/CavernsOfMarsRecharged}}' + - "{{Game data/config|Windows|{{P|userprofile\\appdata\\locallow}}\\Atari Inc_\\CavernsOfMarsRecharged\\config.txt|{{P|hkcu}}\\Software\\Atari Inc.\\CavernsOfMarsRecharged\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Atari Inc_\\CavernsOfMarsRecharged\\save.sav}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Atari Inc_/CavernsOfMarsRecharged}}" + - "{{Game data/saves|Linux|{{p|xdgconfighome}}/unity3d/Atari Inc_/CavernsOfMarsRecharged}}" Caverns of the Snow Witch: pageId: 46997 steam: 324730 -'Caverns: Lost Sky': +"Caverns: Lost Sky": pageId: 126002 steam: 863150 Cavernus: pageId: 42587 steam: 475080 -'Caves and Castles: Underworld': +"Caves and Castles: Underworld": pageId: 153320 steam: 1182770 Caves of Plague: @@ -28084,14 +27392,12 @@ Caves of Qud: pageId: 37235 steam: 333640 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\Freehold Games\CavesOfQud\PlayerOptions.json}}' - - >- - {{Game data/config|OS X|{{p|osxhome}}/Library/Application - Support/com.FreeholdGames.CavesOfQud/PlayerOptions.json}} - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Freehold Games/CavesOfQud/PlayerOptions.json}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Freehold Games\CavesOfQud\Saves\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/com.FreeholdGames.CavesOfQud/Saves/}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Freehold Games/CavesOfQud/Saves/ }}' + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Freehold Games\\CavesOfQud\\PlayerOptions.json}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/com.FreeholdGames.CavesOfQud/PlayerOptions.json}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Freehold Games/CavesOfQud/PlayerOptions.json}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Freehold Games\\CavesOfQud\\Saves\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/com.FreeholdGames.CavesOfQud/Saves/}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Freehold Games/CavesOfQud/Saves/ }}" Caves!: pageId: 69502 steam: 704490 @@ -28105,7 +27411,7 @@ Cavity Busters: pageId: 137143 steam: 1084220 templates: - - '{{Game data/saves|Windows|{{P|localappdata}}\Cavity_Busters\*.sav}}' + - "{{Game data/saves|Windows|{{P|localappdata}}\\Cavity_Busters\\*.sav}}" Cavyrn: pageId: 127714 steam: 1008970 @@ -28114,13 +27420,11 @@ Cayne: pageId: 52778 steam: 532840 templates: - - >- - {{Game data/config|Windows|{{P|localappdata}}\The Brotherhood\CAYNE\config.ini|{{P|hkcu}}\Software\THE - BROTHERHOOD\CAYNE\}} - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/The Brotherhood/CAYNE}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\The Brotherhood\CAYNE\}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/The Brotherhood/CAYNE}}' -'Cazzarion: Demon Hunting': + - "{{Game data/config|Windows|{{P|localappdata}}\\The Brotherhood\\CAYNE\\config.ini|{{P|hkcu}}\\Software\\THE BROTHERHOOD\\CAYNE\\}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/The Brotherhood/CAYNE}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\The Brotherhood\\CAYNE\\}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/The Brotherhood/CAYNE}}" +"Cazzarion: Demon Hunting": pageId: 190415 steam: 1994680 Cecconoid: @@ -28136,7 +27440,7 @@ Cefore: pageId: 62102 steam: 625730 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Pixelz Games\Cefore\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Pixelz Games\\Cefore\\}}" Ceggtcher VR: pageId: 41470 steam: 524610 @@ -28144,24 +27448,20 @@ Celaria: pageId: 137104 steam: 1081650 templates: - - '{{Game data/config |Windows|{{p|localappdata}}\Celaria}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Celaria}}' + - "{{Game data/config |Windows|{{p|localappdata}}\\Celaria}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Celaria}}" Celeste: pageId: 61156 steam: 504230 templates: - - '{{Game data/config|Windows|{{P|game}}\Saves\settings.celeste}}' - - >- - {{Game data/config|Microsoft - Store|{{p|localappdata}}\Packages\MattMakesGamesInc.Celeste_79daxvg0dq3v6\SystemAppData\wgs\|{{P|localappdata}}\Packages\MattMakesGamesInc.Celeste_79daxvg0dq3v6\Settings\settings.dat}} - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Celeste/Saves/settings.celeste}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/Celeste/Saves/settings.celeste}}' - - '{{Game data/saves|Windows|{{P|game}}\Saves\*.celeste|{{P|game}}\Saves\debug.celeste}}' - - >- - {{Game data/saves|Microsoft - Store|{{p|localappdata}}\Packages\MattMakesGamesInc.Celeste_79daxvg0dq3v6\SystemAppData\wgs\}} - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Celeste/Saves}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/Celeste/Saves}}' + - "{{Game data/config|Windows|{{P|game}}\\Saves\\settings.celeste}}" + - "{{Game data/config|Microsoft Store|{{p|localappdata}}\\Packages\\MattMakesGamesInc.Celeste_79daxvg0dq3v6\\SystemAppData\\wgs\\|{{P|localappdata}}\\Packages\\MattMakesGamesInc.Celeste_79daxvg0dq3v6\\Settings\\settings.dat}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Celeste/Saves/settings.celeste}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/Celeste/Saves/settings.celeste}}" + - "{{Game data/saves|Windows|{{P|game}}\\Saves\\*.celeste|{{P|game}}\\Saves\\debug.celeste}}" + - "{{Game data/saves|Microsoft Store|{{p|localappdata}}\\Packages\\MattMakesGamesInc.Celeste_79daxvg0dq3v6\\SystemAppData\\wgs\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Celeste/Saves}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/Celeste/Saves}}" Celestial: pageId: 144911 steam: 1128330 @@ -28172,12 +27472,12 @@ Celestial Command: pageId: 49279 steam: 330460 templates: - - '{{Game data/config|Windows| .\Celestial Command\Saves\GameSettings.settings}}' - - '{{Game data/config|OS X| .\Celestial Command\Saves\GameSettings.settings}}' - - '{{Game data/config|Linux| .\Celestial Command\Saves\GameSettings.settings}}' - - '{{Game data/saves|Windows|.\Celestial Command\Saves}}' - - '{{Game data/saves|OS X|.\Celestial Command\Saves}}' - - '{{Game data/saves|Linux|.\Celestial Command\Saves}}' + - "{{Game data/config|Windows| .\\Celestial Command\\Saves\\GameSettings.settings}}" + - "{{Game data/config|OS X| .\\Celestial Command\\Saves\\GameSettings.settings}}" + - "{{Game data/config|Linux| .\\Celestial Command\\Saves\\GameSettings.settings}}" + - "{{Game data/saves|Windows|.\\Celestial Command\\Saves}}" + - "{{Game data/saves|OS X|.\\Celestial Command\\Saves}}" + - "{{Game data/saves|Linux|.\\Celestial Command\\Saves}}" Celestial Creator: pageId: 64554 steam: 666930 @@ -28187,48 +27487,48 @@ Celestial Crossing: Celestial Hacker Girl Jessica: pageId: 98514 steam: 873390 -'Celestial Tear: Demon''s Revenge': +"Celestial Tear: Demon's Revenge": pageId: 45563 steam: 385190 -'Celestian Tales: Old North': +"Celestian Tales: Old North": gog: 1438597128 pageId: 34334 steam: 315860 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Ekuator Games\Celestian Tales Old North\}}' - - '{{Game data/config|Linux|{{p|xdgconfighome}}/unity3d/Ekuator Games/Celestian Tales Old North/prefs}}' - - '{{Game data/saves|Windows|{{p|userprofile\documents}}\Celestian Tales Old North\*.cton}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/Documents/Celestian Tales Old North/*.cton}}' -'Celestian Tales: Realms Beyond': + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Ekuator Games\\Celestian Tales Old North\\}}" + - "{{Game data/config|Linux|{{p|xdgconfighome}}/unity3d/Ekuator Games/Celestian Tales Old North/prefs}}" + - "{{Game data/saves|Windows|{{p|userprofile\\documents}}\\Celestian Tales Old North\\*.cton}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/Documents/Celestian Tales Old North/*.cton}}" +"Celestian Tales: Realms Beyond": gog: 1875180273 pageId: 69411 steam: 684700 Celestrion: pageId: 45381 steam: 424100 -Celia's Quest: +"Celia's Quest": pageId: 47513 steam: 380120 Cell Defender: pageId: 135010 steam: 1002580 -'Cell HD: Emergence': +"Cell HD: Emergence": pageId: 48649 steam: 334960 Cell to Singularity - Evolution Never Ends: pageId: 123874 steam: 977400 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Computer Lunch\Cell to Singularity\}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Computer Lunch\Cell to Singularity\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Computer Lunch\\Cell to Singularity\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Computer Lunch\\Cell to Singularity\\}}" Cellar: pageId: 37770 steam: 449060 -'Cellfactor: Revolution': +"Cellfactor: Revolution": pageId: 90701 templates: - - '{{Game data/config|Windows|{{p|game}}\RealityEngine.ini}}' -'Cellyon: Boss Confrontation': + - "{{Game data/config|Windows|{{p|game}}\\RealityEngine.ini}}" +"Cellyon: Boss Confrontation": pageId: 145387 steam: 802120 Cellz: @@ -28240,7 +27540,7 @@ Celsius: Celtabula: pageId: 72021 steam: 706200 -'Celtic Kings: Rage of War': +"Celtic Kings: Rage of War": gog: 1207658762 pageId: 19727 steam: 827000 @@ -28248,10 +27548,8 @@ Celtreos: pageId: 134994 steam: 1065900 templates: - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Containers/name.kevingrant.celtreosmac/Data/Library/Preferences}}' - - >- - {{Game data/saves|OS X|{{p|osxhome}}/Library/Containers/name.kevingrant.celtreosmac/Data/Library/Application - Support/}} + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Containers/name.kevingrant.celtreosmac/Data/Library/Preferences}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Containers/name.kevingrant.celtreosmac/Data/Library/Application Support/}}" Cemetery Warrior 2: pageId: 89230 steam: 761410 @@ -28264,9 +27562,7 @@ Cemetery Warrior 4: Cemu: pageId: 169218 templates: - - >- - {{Game data/saves|Windows|{{p|game}}\mlc01\usr\save\|{{p|userprofile}}\Documents\mlc01\usr\save\{{Note|Legacy - default location}}}} + - "{{Game data/saves|Windows|{{p|game}}\\mlc01\\usr\\save\\|{{p|userprofile}}\\Documents\\mlc01\\usr\\save\\{{Note|Legacy default location}}}}" Cendric: pageId: 79938 steam: 681460 @@ -28279,7 +27575,7 @@ Center of Gravity: Centifeed: pageId: 120753 steam: 889450 -'Centipede: Recharged': +"Centipede: Recharged": gog: 1848182037 pageId: 171167 steam: 1630960 @@ -28291,21 +27587,21 @@ Centralia: renamedFrom: - CENTRALIA steam: 1122110 -'Centralia: Homecoming': +"Centralia: Homecoming": pageId: 148737 steam: 1166740 -'Century: Age of Ashes': +"Century: Age of Ashes": pageId: 165668 steam: 918570 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Century\Saved\Config\WindowsNoEditor}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\Century\Saved\SaveGames}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\Century\\Saved\\Config\\WindowsNoEditor}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Century\\Saved\\SaveGames}}" Cepheus Protocol: pageId: 157205 steam: 979640 templates: - - '{{Game data/saves|Windows|{{p|localappdata}}\CepheusProtocol\Saved\SaveGames}}' -'Cerberus: Orbital watch': + - "{{Game data/saves|Windows|{{p|localappdata}}\\CepheusProtocol\\Saved\\SaveGames}}" +"Cerberus: Orbital watch": pageId: 148541 steam: 1175510 Cerdocornio: @@ -28318,7 +27614,7 @@ Ceres: pageId: 46034 steam: 351300 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Jotunn Games\Ceres\}}' + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Jotunn Games\\Ceres\\}}" Ceress and Orea: pageId: 91520 steam: 820900 @@ -28330,12 +27626,12 @@ Ceville: pageId: 19656 steam: 23460 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\Ceville\config.cfg}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\Ceville\save\}}' + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\Ceville\\config.cfg}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\Ceville\\save\\}}" Chai: pageId: 188746 steam: 2094380 -'Chain Reaction : Sexy Hentai Girls': +"Chain Reaction : Sexy Hentai Girls": pageId: 146016 steam: 987570 ChainMan: @@ -28350,11 +27646,11 @@ Chained Echoes: steamSide: - 1373130 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Chained Echoes\Chained Echoes\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Chained Echoes\Chained Echoes}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/unity.Chained-Echoes.Chained-Echoes}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/.config/unity3d/Chained Echoes/Chained Echoes}}' -'Chained: A Victorian Nightmare': + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Chained Echoes\\Chained Echoes\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Chained Echoes\\Chained Echoes}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/unity.Chained-Echoes.Chained-Echoes}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/.config/unity3d/Chained Echoes/Chained Echoes}}" +"Chained: A Victorian Nightmare": pageId: 153774 steam: 1198700 Chainless: @@ -28367,8 +27663,8 @@ Chains: pageId: 29868 steam: 11360 templates: - - '{{Game data/config|Windows|{{p|game}}\Save\settings.lua|{{p|appdata}}\chains\*.xml}}' - - '{{Game data/saves|Windows|{{p|game}}\Save\*.lua}}' + - "{{Game data/config|Windows|{{p|game}}\\Save\\settings.lua|{{p|appdata}}\\chains\\*.xml}}" + - "{{Game data/saves|Windows|{{p|game}}\\Save\\*.lua}}" Chains of Fury: pageId: 151549 steam: 1121320 @@ -28376,12 +27672,12 @@ Chainsaw Warrior: pageId: 40581 steam: 251710 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Auroch Digital\Chainsaw Warrior\}}' - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/251710/remote/}}' -'Chainsaw Warrior: Lords of the Night': + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Auroch Digital\\Chainsaw Warrior\\}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/251710/remote/}}" +"Chainsaw Warrior: Lords of the Night": pageId: 48675 steam: 307600 -'Chainz 2: Relinked': +"Chainz 2: Relinked": pageId: 41279 steam: 32120 Chalkship: @@ -28418,8 +27714,8 @@ Chambered: Chameleon: pageId: 53527 templates: - - '{{Game data/config|Windows|{{p|game}}\Profiles\{{p|uid}}\controls.cfg|{{p|game}}\Profiles\{{p|uid}}\usets.cfg }}' - - '{{Game data/saves|Windows|{{p|game}}\Profiles\{{p|uid}}\Savegame\ }}' + - "{{Game data/config|Windows|{{p|game}}\\Profiles\\{{p|uid}}\\controls.cfg|{{p|game}}\\Profiles\\{{p|uid}}\\usets.cfg }}" + - "{{Game data/saves|Windows|{{p|game}}\\Profiles\\{{p|uid}}\\Savegame\\ }}" Chameleon (2020): pageId: 155749 renamedFrom: @@ -28434,7 +27730,7 @@ Chameleon Run Deluxe Edition: Champ Against Chumps Upgrade Edition: pageId: 91882 steam: 777580 -Champ's Nightmare: +"Champ's Nightmare": pageId: 182867 renamedFrom: - Somerville @@ -28448,11 +27744,11 @@ Champions: Champions Forces: pageId: 156210 steam: 1221470 -'Champions Online: Free For All': +"Champions Online: Free For All": pageId: 2602 steam: 9880 templates: - - '{{Game data/config|Windows|{{p|game}}\localdata}}' + - "{{Game data/config|Windows|{{p|game}}\\localdata}}" Champions of Aerial: pageId: 75849 steam: 701940 @@ -28462,7 +27758,7 @@ Champions of Anteria: Champions of Breakfast: pageId: 35208 steam: 454380 -'Champions of Chaos II: Ambassadors of the Arena': +"Champions of Chaos II: Ambassadors of the Arena": pageId: 46312 steam: 366100 Champions of Krynn: @@ -28470,8 +27766,8 @@ Champions of Krynn: pageId: 55640 steam: 1904620 templates: - - '{{Game data/config|DOS|{{p|game}}\KRYNN.CFG}}' - - '{{Game data/saves|DOS|{{p|game}}\SAVE\}}' + - "{{Game data/config|DOS|{{p|game}}\\KRYNN.CFG}}" + - "{{Game data/saves|DOS|{{p|game}}\\SAVE\\}}" Champions of Midgard: pageId: 122304 steam: 945570 @@ -28489,7 +27785,7 @@ Championsheep Rally: Championship Lode Runner: pageId: 76487 templates: - - '{{Game data/saves|PC booter|A:\}}' + - "{{Game data/saves|PC booter|A:\\}}" Championship Manager 2: pageId: 154803 Championship Manager 2006: @@ -28501,11 +27797,11 @@ Championship Manager 2008: pageId: 41386 steam: 8060 templates: - - '{{Game data/config|Windows |{{p|userprofile\Documents}}\Eidos\Championship Manager 2008\Config}}' + - "{{Game data/config|Windows |{{p|userprofile\\Documents}}\\Eidos\\Championship Manager 2008\\Config}}" Championship Manager 2010: pageId: 41240 steam: 35030 -'Championship Manager 2: Including 96/97 Updates': +"Championship Manager 2: Including 96/97 Updates": pageId: 154808 Championship Manager 3: pageId: 1782 @@ -28514,21 +27810,21 @@ Championship Manager 4: Championship Manager 5: pageId: 154796 templates: - - '{{Game data/config|Windows|{{p|game}}\Config.txt}}' - - '{{Game data/saves|Windows|{{p|game}}\Saves}}' + - "{{Game data/config|Windows|{{p|game}}\\Config.txt}}" + - "{{Game data/saves|Windows|{{p|game}}\\Saves}}" Championship Manager 93: pageId: 154810 Championship Manager Quiz: pageId: 154744 -'Championship Manager: Season 00/01': +"Championship Manager: Season 00/01": pageId: 154736 -'Championship Manager: Season 01/02': +"Championship Manager: Season 01/02": pageId: 23372 -'Championship Manager: Season 03/04': +"Championship Manager: Season 03/04": pageId: 154792 -'Championship Manager: Season 97/98': +"Championship Manager: Season 97/98": pageId: 154742 -'Championship Manager: Season 99/00': +"Championship Manager: Season 99/00": pageId: 154738 Championship Surfer: pageId: 75742 @@ -28538,42 +27834,42 @@ Change: Change Ranger: pageId: 156523 steam: 1216350 -'Change: A Homeless Survival Experience': +"Change: A Homeless Survival Experience": gog: 1897074196 pageId: 112288 steam: 926140 -'Change: A Little Story': +"Change: A Little Story": pageId: 124249 renamedFrom: - - 'Change : A Little Story' + - "Change : A Little Story" steam: 979790 Changed: pageId: 88866 steam: 814540 templates: - - '{{Game data/saves|Windows|{{p|game}}\Save{{code|X}}.rvdata}}' + - "{{Game data/saves|Windows|{{p|game}}\\Save{{code|X}}.rvdata}}" Changeling: pageId: 125980 steam: 1010240 -'Changeover: Decisions': +"Changeover: Decisions": pageId: 92291 steam: 788480 Changes: pageId: 138662 steam: 1044120 -'Chantelise: A Tale of Two Sisters': +"Chantelise: A Tale of Two Sisters": gog: 1441875464 pageId: 34314 steam: 70420 templates: - - '{{Game data/config|Windows|{{p|game}}\chante.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\save.dat}}' + - "{{Game data/config|Windows|{{p|game}}\\chante.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\save.dat}}" Chants of Sennaar: pageId: 190032 steam: 1931770 templates: - - '{{Game data/config|Windows|HKEY_CURRENT_USER\Software\Rundisc\Chants Of Sennaar}}' - - '{{Game data/saves|Windows|%USERPROFILE%\AppData\LocalLow\Rundisc\Chants Of Sennaar\}}' + - "{{Game data/config|Windows|HKEY_CURRENT_USER\\Software\\Rundisc\\Chants Of Sennaar}}" + - "{{Game data/saves|Windows|%USERPROFILE%\\AppData\\LocalLow\\Rundisc\\Chants Of Sennaar\\}}" Chaordic: pageId: 124460 steam: 968570 @@ -28586,7 +27882,7 @@ Chaos Battle: Chaos Caves: pageId: 125944 steam: 1004100 -'Chaos Code: New Sign of Catastrophe': +"Chaos Code: New Sign of Catastrophe": pageId: 59057 steam: 536560 Chaos Control: @@ -28595,7 +27891,7 @@ Chaos Control: Chaos Domain: pageId: 21161 steam: 287100 -'Chaos Dream: Retribution': +"Chaos Dream: Retribution": pageId: 139127 steam: 1101100 Chaos Drift: @@ -28610,8 +27906,8 @@ Chaos Galaxy: Chaos Legion: pageId: 73391 templates: - - '{{Game data/config|Windows|{{p|game}}\CL_UDCONF2.DAT|{{p|game}}\CL_UDSYS.DAT|{{p|game}}\config.txt}}' - - '{{Game data/saves|Windows|{{p|game}}\CL_UD##.DAT}}' + - "{{Game data/config|Windows|{{p|game}}\\CL_UDCONF2.DAT|{{p|game}}\\CL_UDSYS.DAT|{{p|game}}\\config.txt}}" + - "{{Game data/saves|Windows|{{p|game}}\\CL_UD##.DAT}}" Chaos Overlords: gog: 1207659228 pageId: 19553 @@ -28620,7 +27916,7 @@ Chaos Reborn: pageId: 34284 steam: 319050 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Snapshot Games Inc.\Chaos Reborn\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Snapshot Games Inc.\\Chaos Reborn\\}}" Chaos Ride: pageId: 59739 steam: 346400 @@ -28659,26 +27955,26 @@ Chaos on Deponia: pageId: 12630 steam: 220740 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Daedalic Entertainment\Deponia 2\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Daedalic Entertainment/Deponia 2/}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/Daedalic Entertainment/Deponia 2/}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Daedalic Entertainment\Deponia 2\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Daedalic Entertainment/Deponia 2/}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/Daedalic Entertainment/Deponia 2/}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Daedalic Entertainment\\Deponia 2\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Daedalic Entertainment/Deponia 2/}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/Daedalic Entertainment/Deponia 2/}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Daedalic Entertainment\\Deponia 2\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Daedalic Entertainment/Deponia 2/}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/Daedalic Entertainment/Deponia 2/}}" Chaos;Child: gog: 2018454546 pageId: 99067 steam: 970570 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\mages_dmm\CHAOS CHILD}}' - - '{{Game data/config|Steam|{{p|userprofile\Documents}}\My Games\mages_steam\CHAOS CHILD\eng}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\mages_dmm\CHAOS CHILD}}' - - '{{Game data/saves|Steam|{{p|userprofile\Documents}}\My Games\mages_steam\CHAOS CHILD\eng}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\mages_dmm\\CHAOS CHILD}}" + - "{{Game data/config|Steam|{{p|userprofile\\Documents}}\\My Games\\mages_steam\\CHAOS CHILD\\eng}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\mages_dmm\\CHAOS CHILD}}" + - "{{Game data/saves|Steam|{{p|userprofile\\Documents}}\\My Games\\mages_steam\\CHAOS CHILD\\eng}}" Chaos;Head: pageId: 126659 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Nitroplus\CHAOS;HEAD}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Nitroplus\CHAOS;HEAD}}' + - "{{Game data/config|Windows|{{p|appdata}}\\Nitroplus\\CHAOS;HEAD}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Nitroplus\\CHAOS;HEAD}}" Chaos;Head NoAH: gog: 1902238860 gogSide: @@ -28688,19 +27984,17 @@ Chaos;Head NoAH: steamSide: - 2103330 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\My Games\mages_steam\CHAOS;HEAD NOAH\*.dat}}' - - >- - {{Game data/config|GOG.com|{{P|userprofile\Documents}}\My Games\Mages Inc\CHAOS;HEAD - NOAH\CONFIG.DAT|{{P|userprofile\Documents}}\My Games\Mages Inc\CHAOS;HEAD NOAH\PADCONFIG.DAT}} - - '{{Game data/saves|Steam|{{P|userprofile\Documents}}\My Games\mages_steam\CHAOS;HEAD NOAH\*.dat}}' - - '{{Game data/saves|GOG.com|{{P|userprofile\Documents}}\My Games\Mages Inc\CHAOS;HEAD NOAH\SAVEDATA.DAT}}' + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\My Games\\mages_steam\\CHAOS;HEAD NOAH\\*.dat}}" + - "{{Game data/config|GOG.com|{{P|userprofile\\Documents}}\\My Games\\Mages Inc\\CHAOS;HEAD NOAH\\CONFIG.DAT|{{P|userprofile\\Documents}}\\My Games\\Mages Inc\\CHAOS;HEAD NOAH\\PADCONFIG.DAT}}" + - "{{Game data/saves|Steam|{{P|userprofile\\Documents}}\\My Games\\mages_steam\\CHAOS;HEAD NOAH\\*.dat}}" + - "{{Game data/saves|GOG.com|{{P|userprofile\\Documents}}\\My Games\\Mages Inc\\CHAOS;HEAD NOAH\\SAVEDATA.DAT}}" ChaosTower: pageId: 44483 steam: 354280 Chaotic Void: pageId: 81806 steam: 762980 -'Chapayev: Legend of Checkers': +"Chapayev: Legend of Checkers": pageId: 77201 steam: 750660 Chapeau: @@ -28713,8 +28007,8 @@ Charge Kid: pageId: 164449 steam: 1334300 templates: - - '{{Game data/config|Windows|{{Path|Appdata}}\Charge Kid}}' - - '{{Game data/saves|Windows|{{Path|Appdata}}\Charge Kid\save_progress.save}}' + - "{{Game data/config|Windows|{{Path|Appdata}}\\Charge Kid}}" + - "{{Game data/saves|Windows|{{Path|Appdata}}\\Charge Kid\\save_progress.save}}" ChargeShot: pageId: 46394 steam: 401840 @@ -28722,8 +28016,8 @@ Chariot: pageId: 49347 steam: 319450 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\FrimaStudio\Chariot-Steam\}}' - - '{{Game data/saves|Windows|{{p|steam}}\userdata\{{p|uid}}\319450\remote\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\FrimaStudio\\Chariot-Steam\\}}" + - "{{Game data/saves|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\319450\\remote\\}}" Chariot Wars: pageId: 47793 steam: 365460 @@ -28731,17 +28025,17 @@ Charlie II: pageId: 82322 steam: 777760 templates: - - '{{Game data/saves|Windows|{{P|game}}\HISCORES.SAV|{{P|game}}\PROGRESS.SAV}}' + - "{{Game data/saves|Windows|{{P|game}}\\HISCORES.SAV|{{P|game}}\\PROGRESS.SAV}}" Charlie Murder: pageId: 59878 steam: 405290 templates: - - '{{Game data/config|Windows|{{p|appdata}}\CharlieMurder\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/CharlieMurder/}}' - - '{{Game data/config|Linux|{{p|xdgconfighome}}/CharlieMurder/}}' - - '{{Game data/saves|Windows|{{p|appdata}}\CharlieMurder\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/CharlieMurder/}}' - - '{{Game data/saves|Linux|{{p|xdgdatahome}}/CharlieMurder/}}' + - "{{Game data/config|Windows|{{p|appdata}}\\CharlieMurder\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/CharlieMurder/}}" + - "{{Game data/config|Linux|{{p|xdgconfighome}}/CharlieMurder/}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\CharlieMurder\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/CharlieMurder/}}" + - "{{Game data/saves|Linux|{{p|xdgdatahome}}/CharlieMurder/}}" Charlie and Friends: pageId: 180918 steam: 2020570 @@ -28751,11 +28045,11 @@ Charlie the Duck: pageId: 72175 steam: 691250 templates: - - '{{Game data/saves|Windows|{{P|appdata}}\Wiering Software\Charlie_the_Duck\Charlie_the_Duck.sol}}' -Charlie's Adventure: + - "{{Game data/saves|Windows|{{P|appdata}}\\Wiering Software\\Charlie_the_Duck\\Charlie_the_Duck.sol}}" +"Charlie's Adventure": pageId: 54327 steam: 556870 -Charlie's Conscious: +"Charlie's Conscious": pageId: 114956 steam: 951920 Charlotte: @@ -28764,13 +28058,13 @@ Charlotte: Charm Tale: pageId: 102495 steam: 872180 -'Charm Tale 2: Mermaid Lagoon': +"Charm Tale 2: Mermaid Lagoon": pageId: 121103 steam: 961910 Charm Tale Quest: pageId: 52554 steam: 550220 -Charon's Return: +"Charon's Return": pageId: 141005 steam: 1098180 Charpi: @@ -28778,7 +28072,7 @@ Charpi: steam: 694670 Charrua Soccer: pageId: 157861 -'Charterstone: Digital Edition': +"Charterstone: Digital Edition": gog: 1877382924 pageId: 135998 steam: 1046660 @@ -28790,20 +28084,20 @@ Chaser: pageId: 14593 steam: 39670 templates: - - '{{Game data/config|Windows|{{p|game}}\Save\Users\default.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\Save\}}' + - "{{Game data/config|Windows|{{p|game}}\\Save\\Users\\default.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\Save\\}}" Chasing Dead: pageId: 44305 steam: 428440 templates: - - '{{Game data/config| Windows | {{p|hkcu}}\Software\Twenty20Venture\ChasingDead\}}' - - '{{Game data/saves| Windows | {{p|hkcu}}\Software\Twenty20Venture\ChasingDead\}}' + - "{{Game data/config| Windows | {{p|hkcu}}\\Software\\Twenty20Venture\\ChasingDead\\}}" + - "{{Game data/saves| Windows | {{p|hkcu}}\\Software\\Twenty20Venture\\ChasingDead\\}}" Chasing Light: pageId: 168375 steam: 1247110 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Vittgen\ChasingLight\}}' - - '{{Game data/saves|Windows|{{p|hkcu}}\Software\Vittgen\ChasingLight\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Vittgen\\ChasingLight\\}}" + - "{{Game data/saves|Windows|{{p|hkcu}}\\Software\\Vittgen\\ChasingLight\\}}" Chasing Nebula: pageId: 141379 steam: 1118800 @@ -28811,7 +28105,7 @@ Chasing Static: pageId: 174065 steam: 1319420 templates: - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\Headware Games\Chasing Static}}' + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\Headware Games\\Chasing Static}}" Chasing Styx: pageId: 60087 steam: 594300 @@ -28826,17 +28120,17 @@ Chasm: pageId: 39801 steam: 312200 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Chasm\config.ini}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Chasm/}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/Chasm/}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Chasm\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Chasm/}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/Chasm/}}' -'Chasm: The Rift': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Chasm\\config.ini}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Chasm/}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/Chasm/}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Chasm\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Chasm/}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/Chasm/}}" +"Chasm: The Rift": gog: 1302753134 pageId: 26846 steam: 2061230 -'Chasm: The Rift (2022)': +"Chasm: The Rift (2022)": gog: 1302753134 gogSide: - 1728887675 @@ -28845,8 +28139,8 @@ Chasm: steamSide: - 2141610 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\Chasm\chasm_config.txt}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\Chasm\saves}}' + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\Chasm\\chasm_config.txt}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\Chasm\\saves}}" ChatAid: pageId: 141552 steam: 1121250 @@ -28875,11 +28169,11 @@ Cheeky Chooks: pageId: 121125 steam: 922460 templates: - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\Trilum Studios\Cheeky Chooks\}}' + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\Trilum Studios\\Cheeky Chooks\\}}" Cheer and Track: pageId: 149244 steam: 1149900 -'Cheerleader: Reverse Side of Life': +"Cheerleader: Reverse Side of Life": pageId: 91124 steam: 834890 Cheese Game: @@ -28898,18 +28192,14 @@ Chef: - Chef - A Restaurant Tycoon Game steam: 886900 templates: - - >- - {{Game data/config|Windows|{{P|userprofile}}\AppData\LocalLow\Inner Void Interactive\Chef_ A Restaurant Tycoon - Game\GameSettings.xml}} - - >- - {{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Inner Void Interactive\Chef_ A Restaurant Tycoon - Game\}} -'Chef Solitaire: USA': + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Inner Void Interactive\\Chef_ A Restaurant Tycoon Game\\GameSettings.xml}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Inner Void Interactive\\Chef_ A Restaurant Tycoon Game\\}}" +"Chef Solitaire: USA": pageId: 44958 steam: 432190 templates: - - '{{Game data/config|Windows|{{p|PROGRAMDATA}}\The Revills Games\Chef Solitaire USA SE\ChefSolitaire.ini}}' - - '{{Game data/saves|Windows|{{p|PROGRAMDATA}}\The Revills Games\Chef Solitaire USA SE\profiles\}}' + - "{{Game data/config|Windows|{{p|PROGRAMDATA}}\\The Revills Games\\Chef Solitaire USA SE\\ChefSolitaire.ini}}" + - "{{Game data/saves|Windows|{{p|PROGRAMDATA}}\\The Revills Games\\Chef Solitaire USA SE\\profiles\\}}" ChefSquad: pageId: 175589 steam: 1501980 @@ -28919,7 +28209,7 @@ ChefU: Cheitha: pageId: 87379 steam: 799910 -'ChemCaper: Act I - Petticles in Peril': +"ChemCaper: Act I - Petticles in Peril": pageId: 75421 steam: 592990 Chemical Chimpet: @@ -28936,8 +28226,8 @@ Chenso Club: pageId: 185955 steam: 1454730 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Pixadome\Chenso Club\Data\Settings.bin}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Pixadome\Chenso Club\Data\SaveData.bin}}' + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Pixadome\\Chenso Club\\Data\\Settings.bin}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Pixadome\\Chenso Club\\Data\\SaveData.bin}}" Cheops Pyramid: pageId: 126863 Chernobyl 1986: @@ -28950,25 +28240,25 @@ Chernobyl Liquidators Simulator: pageId: 142331 steam: 1113010 templates: - - '{{Game data/config|Windows|{{p|HKCU}}\SOFTWARE\Live Motion Games\Chernobyl Liquidators Simulator}}' + - "{{Game data/config|Windows|{{p|HKCU}}\\SOFTWARE\\Live Motion Games\\Chernobyl Liquidators Simulator}}" Chernobyl Underground: pageId: 131434 -'Chernobyl: Road of Death': +"Chernobyl: Road of Death": pageId: 149426 steam: 1151600 -'Chernobyl: Terrorist Attack': +"Chernobyl: Terrorist Attack": pageId: 61006 steam: 546810 templates: - - '{{Game data/config|Windows|{{p|game}}\ar.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\save\}}' + - "{{Game data/config|Windows|{{p|game}}\\ar.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\save\\}}" Chernobylite: gog: 1472128402 pageId: 128686 steam: 1016800 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\ChernobylGame\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\ChernobylGame\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\ChernobylGame\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\ChernobylGame\\Saved\\SaveGames\\}}" Chernomeat Survival Game: pageId: 136509 steam: 1077030 @@ -28985,17 +28275,17 @@ Cherry Tree High Comedy Club: pageId: 23221 steam: 214610 templates: - - '{{Game data/config|Windows|{{p|game}}\conf.rxdata}}' - - '{{Game data/saves|Windows|{{p|game}}\Save*.rxdata}}' -Cherry Tree High Girls' Fight: + - "{{Game data/config|Windows|{{p|game}}\\conf.rxdata}}" + - "{{Game data/saves|Windows|{{p|game}}\\Save*.rxdata}}" +"Cherry Tree High Girls' Fight": pageId: 33598 steam: 459540 Cherry Tree High I! My! Girls!: pageId: 23223 steam: 333220 templates: - - '{{Game data/config|Windows|{{p|game}}\conf.rxdata}}' - - '{{Game data/saves|Windows|{{p|game}}\Save1.rxdata}}' + - "{{Game data/config|Windows|{{p|game}}\\conf.rxdata}}" + - "{{Game data/saves|Windows|{{p|game}}\\Save1.rxdata}}" Cherry in the Sky: pageId: 98462 steam: 869440 @@ -29007,7 +28297,7 @@ Chess: steam: 707140 Chess (Apple): pageId: 186444 -'Chess 2: The Sequel': +"Chess 2: The Sequel": pageId: 19361 steam: 314340 Chess Arena-象棋竞技场: @@ -29034,8 +28324,8 @@ Chess Sudoku: Chess Titans: pageId: 13128 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Microsoft Games\Chess Titans}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\Saved Games\Microsoft Games\Chess Titans}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Microsoft Games\\Chess Titans}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Saved Games\\Microsoft Games\\Chess Titans}}" Chess Ultra: pageId: 62156 steam: 518060 @@ -29051,7 +28341,7 @@ ChessBase 15 Steam Edition: ChessVR: pageId: 42535 steam: 493380 -'Chessaria: The Tactical Adventure': +"Chessaria: The Tactical Adventure": pageId: 69407 steam: 575340 Chessboard Kingdoms: @@ -29063,13 +28353,13 @@ Chessia: Chessmaster 10th Edition: pageId: 175688 templates: - - '{{Game data/config|Windows|{{p|game}}\Data\Users\{{p|uid}}\}}' - - '{{Game data/saves|Windows|{{p|game}}\Data\Users\{{p|uid}}\}}' + - "{{Game data/config|Windows|{{p|game}}\\Data\\Users\\{{p|uid}}\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\Data\\Users\\{{p|uid}}\\}}" Chessmaster 5500: pageId: 6286 templates: - - '{{Game data/config|Windows|{{p|game}}\*.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\*.CMG}}' + - "{{Game data/config|Windows|{{p|game}}\\*.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\*.CMG}}" Chessmaster 9000: gog: 1207658756 pageId: 6166 @@ -29077,14 +28367,14 @@ Chessmaster Challenge: pageId: 140519 steam: 37200 templates: - - '{{Game data/config|Windows|{{P|appdata}}\Chessmaster Challenge\}}' - - '{{Game data/saves|Windows|{{P|appdata}}\Chessmaster Challenge\}}' -'Chessmaster: Grandmaster Edition': + - "{{Game data/config|Windows|{{P|appdata}}\\Chessmaster Challenge\\}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\Chessmaster Challenge\\}}" +"Chessmaster: Grandmaster Edition": pageId: 6186 steam: 15260 templates: - - '{{Game data/config|Windows|{{p|game}}\Data\Users\{{p|uid}}\}}' - - '{{Game data/saves|Windows|{{p|game}}\Data\Users\{{p|uid}}\}}' + - "{{Game data/config|Windows|{{p|game}}\\Data\\Users\\{{p|uid}}\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\Data\\Users\\{{p|uid}}\\}}" Chesster: pageId: 44118 steam: 352050 @@ -29092,15 +28382,15 @@ Chester One: pageId: 58124 steam: 348800 templates: - - '{{Game data/saves|Windows|{{P|userprofile}}\Documents\SavedGames\Chester\Chester\AllPlayers}}' + - "{{Game data/saves|Windows|{{P|userprofile}}\\Documents\\SavedGames\\Chester\\Chester\\AllPlayers}}" Chevalier Historie: gog: 1128377881 pageId: 175654 steam: 1413960 templates: - - '{{Game data/config|Windows|{{p|game}}\Game.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\Save}}' -'Chevo Lurker: Exodus': + - "{{Game data/config|Windows|{{p|game}}\\Game.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\Save}}" +"Chevo Lurker: Exodus": pageId: 72850 steam: 712010 Chewbrick: @@ -29109,7 +28399,7 @@ Chewbrick: Chewing: pageId: 125091 steam: 998760 -'Chewy: Esc from F5': +"Chewy: Esc from F5": pageId: 177994 Chex Quest: pageId: 124683 @@ -29117,7 +28407,7 @@ Chex Quest HD: pageId: 159228 steam: 804270 templates: - - '{{Game data/saves|Windows|{{P|localappdata}}\ChexHD\Saved\SaveGames\}}' + - "{{Game data/saves|Windows|{{P|localappdata}}\\ChexHD\\Saved\\SaveGames\\}}" Chi Busters: pageId: 121732 steam: 923760 @@ -29127,23 +28417,23 @@ Chiaro and the Elixir of Life: Chibi Volleyball: pageId: 139308 steam: 1100200 -Chibisu's Costume Combat: +"Chibisu's Costume Combat": pageId: 113430 steam: 873090 -'Chicago 1930: The Prohibition': +"Chicago 1930: The Prohibition": gog: 1678303006 pageId: 70295 steam: 623920 templates: - - '{{Game data/config|Windows|{{p|game}}\Data\Configuration}}' - - '{{Game data/saves|Windows|{{p|game}}\Data\Savegame}}' + - "{{Game data/config|Windows|{{p|game}}\\Data\\Configuration}}" + - "{{Game data/saves|Windows|{{p|game}}\\Data\\Savegame}}" Chicken Assassin - Master of Humiliation: gog: 1316203883 pageId: 35182 steam: 489610 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Oneshark\ChickenAssassin\}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Oneshark\ChickenAssassin\CASaveData.xml}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Oneshark\\ChickenAssassin\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Oneshark\\ChickenAssassin\\CASaveData.xml}}" Chicken Chase: pageId: 51338 steam: 538410 @@ -29156,40 +28446,40 @@ Chicken Farm 2K17: Chicken Invaders: pageId: 123137 templates: - - '{{Game data/saves|Windows|{{p|game}}\}}' + - "{{Game data/saves|Windows|{{p|game}}\\}}" Chicken Invaders 2: pageId: 44279 steam: 449550 templates: - - '{{Game data/config|Windows|{{P|game}}\ChickenInvaders2.cfg}}' - - '{{Game data/saves|Windows|{{P|game}}\ChickenInvaders2.hst}}' + - "{{Game data/config|Windows|{{P|game}}\\ChickenInvaders2.cfg}}" + - "{{Game data/saves|Windows|{{P|game}}\\ChickenInvaders2.hst}}" Chicken Invaders 3: pageId: 47589 steam: 377460 templates: - - '{{Game data/config|Windows|{{p|ProgramData}}\InterAction studios\CI3\}}' - - '{{Game data/saves|Windows|{{p|ProgramData}}\InterAction studios\CI3\}}' + - "{{Game data/config|Windows|{{p|ProgramData}}\\InterAction studios\\CI3\\}}" + - "{{Game data/saves|Windows|{{p|ProgramData}}\\InterAction studios\\CI3\\}}" Chicken Invaders 4: pageId: 37199 steam: 301300 templates: - - '{{Game data/config|Windows|{{p|ProgramData}}\InterAction studios\CI4\}}' - - '{{Game data/saves|Windows|{{p|ProgramData}}\InterAction studios\CI4\}}' - - '{{Game data/saves|Steam|{{p|Steam}}\userdata\{{p|uid}}\301300\remote\steamcloud\CI4\4.20steam\}}' + - "{{Game data/config|Windows|{{p|ProgramData}}\\InterAction studios\\CI4\\}}" + - "{{Game data/saves|Windows|{{p|ProgramData}}\\InterAction studios\\CI4\\}}" + - "{{Game data/saves|Steam|{{p|Steam}}\\userdata\\{{p|uid}}\\301300\\remote\\steamcloud\\CI4\\4.20steam\\}}" Chicken Invaders 5: pageId: 37381 steam: 353090 templates: - - '{{Game data/config|Windows|{{p|ProgramData}}\InterAction studios\CI5\}}' - - '{{Game data/saves|Windows|{{p|ProgramData}}\InterAction studios\CI5\}}' -'Chicken Invaders 5: Cluck of the Dark Side': + - "{{Game data/config|Windows|{{p|ProgramData}}\\InterAction studios\\CI5\\}}" + - "{{Game data/saves|Windows|{{p|ProgramData}}\\InterAction studios\\CI5\\}}" +"Chicken Invaders 5: Cluck of the Dark Side": pageId: 173623 Chicken Invaders Universe: pageId: 165704 steam: 1510460 templates: - - '{{Game data/config|Windows|{{p|ProgramData}}\InterAction studios\CIU\}}' - - '{{Game data/saves|Windows|{{p|ProgramData}}\InterAction studios\CIU\}}' + - "{{Game data/config|Windows|{{p|ProgramData}}\\InterAction studios\\CIU\\}}" + - "{{Game data/saves|Windows|{{p|ProgramData}}\\InterAction studios\\CIU\\}}" Chicken Labyrinth Puzzles: pageId: 64202 steam: 635880 @@ -29198,10 +28488,8 @@ Chicken Police: pageId: 139653 steam: 1084640 templates: - - >- - {{Game data/config|Windows|{{P|userprofile\Documents}}\My Games\Chicken - Police\Savegames\Savegame.sav|{{P|hkcu}}\Software\HandyGames\Chicken Police\}} - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\My Games\Chicken Police\Savegames\Savegame.sav}}' + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\My Games\\Chicken Police\\Savegames\\Savegame.sav|{{P|hkcu}}\\Software\\HandyGames\\Chicken Police\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\My Games\\Chicken Police\\Savegames\\Savegame.sav}}" Chicken Rider: pageId: 98482 steam: 871550 @@ -29237,18 +28525,16 @@ Chicku: Chico: pageId: 155745 steam: 1207420 -'Chicory: A Colorful Tale': +"Chicory: A Colorful Tale": pageId: 145574 steam: 1123450 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\paintdog\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/com.greglobanov.chicory/}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\paintdog\save}}' - - >- - {{Game data/saves|Microsoft - Store|{{p|localappdata}}\Packages\Finji.ChicoryAColorfulTale_tys0ffscxatjj\SystemAppData\wgs}} - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/com.greglobanov.chicory/save/}}' -Chief's Quest: + - "{{Game data/config|Windows|{{P|localappdata}}\\paintdog\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/com.greglobanov.chicory/}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\paintdog\\save}}" + - "{{Game data/saves|Microsoft Store|{{p|localappdata}}\\Packages\\Finji.ChicoryAColorfulTale_tys0ffscxatjj\\SystemAppData\\wgs}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/com.greglobanov.chicory/save/}}" +"Chief's Quest": pageId: 121821 steam: 957390 Chiffa 2: @@ -29257,7 +28543,7 @@ Chiffa 2: Chika Militant Cockroach: pageId: 59359 steam: 590420 -'Child Phobia: Nightcoming Fears': +"Child Phobia: Nightcoming Fears": pageId: 55504 steam: 570500 Child of Ault: @@ -29267,9 +28553,9 @@ Child of Light: pageId: 14834 steam: 256290 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Child of Light\{{p|uid}}\}}' - - '{{Game data/saves|Uplay|{{p|Uplay}}\savegames\{{path|uid}}\609\}}' - - '{{Game data/saves|Windows|{{p|programdata}}\Orbit\611\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Child of Light\\{{p|uid}}\\}}" + - "{{Game data/saves|Uplay|{{p|Uplay}}\\savegames\\{{path|uid}}\\609\\}}" + - "{{Game data/saves|Windows|{{p|programdata}}\\Orbit\\611\\}}" Child of the Wind: pageId: 61662 steam: 490040 @@ -29290,17 +28576,13 @@ Children of Morta: - 1317160 - 1648880 templates: - - >- - {{Game data/config|Windows|{{P|userprofile}}\AppData\LocalLow\Dead Mage\Children of - Morta\|{{p|hkcu}}\Software\Dead Mage\Children of Morta\}} - - '{{Game data/config|GOG.com|{{P|localappdata}}\GOG.com\Galaxy\Applications\49845465038978536\Storage\Shared\Files}}' - - '{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/Dead Mage/Children of Morta/}}' - - '{{Game data/saves|GOG.com|{{P|localappdata}}\GOG.com\Galaxy\Applications\49845465038978536\Storage\Shared\Files}}' - - >- - {{Game data/saves|Microsoft - Store|{{P|localappdata}}\Packages\11bitstudios.12487E5DA4D9B_gwy9gn5q9j1y6\SystemAppData\wgs}} - - '{{Game data/saves|Steam|{{P|steam}}\userdata\{{P|uid}}\330020\remote\}}' - - '{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/Dead Mage/Children of Morta/}}' + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Dead Mage\\Children of Morta\\|{{p|hkcu}}\\Software\\Dead Mage\\Children of Morta\\}}" + - "{{Game data/config|GOG.com|{{P|localappdata}}\\GOG.com\\Galaxy\\Applications\\49845465038978536\\Storage\\Shared\\Files}}" + - "{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/Dead Mage/Children of Morta/}}" + - "{{Game data/saves|GOG.com|{{P|localappdata}}\\GOG.com\\Galaxy\\Applications\\49845465038978536\\Storage\\Shared\\Files}}" + - "{{Game data/saves|Microsoft Store|{{P|localappdata}}\\Packages\\11bitstudios.12487E5DA4D9B_gwy9gn5q9j1y6\\SystemAppData\\wgs}}" + - "{{Game data/saves|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\330020\\remote\\}}" + - "{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/Dead Mage/Children of Morta/}}" Children of Orc: pageId: 53449 steam: 544840 @@ -29309,21 +28591,21 @@ Children of Silentown: pageId: 141907 steam: 1108000 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Daedalic Entertainment GmbH\ChildrenOfSilentown}}' - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Daedalic Entertainment GmbH\ChildrenOfSilentown\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Daedalic Entertainment GmbH\\ChildrenOfSilentown}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Daedalic Entertainment GmbH\\ChildrenOfSilentown\\}}" Children of Zodiarcs: gog: 1520937970 pageId: 39719 steam: 436290 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Cardboard Utopia\Children of Zodiarcs\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Cardboard Utopia\Children of Zodiarcs\Saves\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Cardboard Utopia\\Children of Zodiarcs\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Cardboard Utopia\\Children of Zodiarcs\\Saves\\}}" Children of a Dead Earth: pageId: 39095 steam: 476530 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\AppData\Roaming\CDE\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\Roaming\CDE\}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\Roaming\\CDE\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\Roaming\\CDE\\}}" Children of the Eclipse: pageId: 151477 steam: 1157760 @@ -29337,8 +28619,8 @@ Children of the Nile: steamSide: - 17120 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Tilted Mill\Children of the Nile\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Tilted Mill\Children of the Nile\Saved Games\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Tilted Mill\\Children of the Nile\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Tilted Mill\\Children of the Nile\\Saved Games\\}}" ChildrenBreak: pageId: 93190 steam: 849890 @@ -29367,13 +28649,13 @@ ChilloutVR: pageId: 145361 steam: 661130 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\Appdata\LocalLow\Alpha Blend Interactive\ChilloutVR}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\Appdata\\LocalLow\\Alpha Blend Interactive\\ChilloutVR}}" Chime: pageId: 37570 steam: 62100 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Chime\}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Chime\}}' + - "{{Game data/config|Windows|{{p|appdata}}\\Chime\\}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Chime\\}}" Chime Sharp: pageId: 42241 steam: 326520 @@ -29389,28 +28671,28 @@ Chimera of Tactics 2: Chimeraland: pageId: 180177 steam: 1913730 -'Chimeras: The Signs of Prophecy': +"Chimeras: The Signs of Prophecy": pageId: 65636 renamedFrom: - - 'Chimeras: The Signs of Prophecy Collector''s Edition' + - "Chimeras: The Signs of Prophecy Collector's Edition" steam: 678410 -'Chimeras: Tune of Revenge': +"Chimeras: Tune of Revenge": pageId: 54993 renamedFrom: - - 'Chimeras: Tune of Revenge Collector''s Edition' + - "Chimeras: Tune of Revenge Collector's Edition" steam: 565140 -'Chimpact 1: Chuck''s Adventure': +"Chimpact 1: Chuck's Adventure": pageId: 51989 steam: 518120 templates: - - '{{Game data/saves|Windows|{{p|USERPROFILE}}\Saved Games\Yippee\ChimpactClassic\}}' + - "{{Game data/saves|Windows|{{p|USERPROFILE}}\\Saved Games\\Yippee\\ChimpactClassic\\}}" Chimpology: pageId: 63749 steam: 604010 China vs Roman: pageId: 88706 steam: 809830 -'China: Mao''s Legacy': +"China: Mao's Legacy": pageId: 132590 steam: 950740 Chinatown Detective Agency: @@ -29418,20 +28700,16 @@ Chinatown Detective Agency: pageId: 151475 steam: 1172190 templates: - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\General Interactive Co_\Chinatown Detective Agency}}' - - >- - {{Game data/saves|Microsoft - Store|{{P|localappdata}}\Packages\HumbleBundle.ChinatownDetectiveAgency_q2mcdwmzx4qja\SystemAppData\wgs}} - - >- - {{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/unity.General Interactive Co_.Chinatown Detective - Agency/General Interactive Co_/Chinatown Detective Agency}} -Chinbu's Adventure: + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\General Interactive Co_\\Chinatown Detective Agency}}" + - "{{Game data/saves|Microsoft Store|{{P|localappdata}}\\Packages\\HumbleBundle.ChinatownDetectiveAgency_q2mcdwmzx4qja\\SystemAppData\\wgs}}" + - "{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/unity.General Interactive Co_.Chinatown Detective Agency/General Interactive Co_/Chinatown Detective Agency}}" +"Chinbu's Adventure": pageId: 78278 steam: 755570 Chinese Brush Simulator: pageId: 156603 steam: 1222160 -'Chinese Chess/ Elephant Game: 象棋': +"Chinese Chess/ Elephant Game: 象棋": pageId: 73238 steam: 722670 Chinese Ink Painting Puzzle & Creator: @@ -29440,28 +28718,26 @@ Chinese Ink Painting Puzzle & Creator: Chinese Inn: pageId: 78427 steam: 762480 -'Chinese Paladin: Sword and Fairy 4': +"Chinese Paladin: Sword and Fairy 4": pageId: 68853 steam: 681820 -'Chinese Paladin: Sword and Fairy 5': +"Chinese Paladin: Sword and Fairy 5": pageId: 68970 steam: 681830 -'Chinese Paladin: Sword and Fairy 5 Prequel': +"Chinese Paladin: Sword and Fairy 5 Prequel": pageId: 71948 steam: 681840 -'Chinese Paladin: Sword and Fairy 6': +"Chinese Paladin: Sword and Fairy 6": pageId: 69982 steam: 696360 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Pal6}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Pal6\Save}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Pal6}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Pal6\\Save}}" Chinese Parents: pageId: 82420 steam: 736190 templates: - - >- - {{Game - data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\moyuwan\中国式家长\Save\*.sav|{{p|userprofile}}\AppData\LocalLow\moyuwan\chineseparentsgame\Save\*.sav}} + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\moyuwan\\中国式家长\\Save\\*.sav|{{p|userprofile}}\\AppData\\LocalLow\\moyuwan\\chineseparentsgame\\Save\\*.sav}}" Chinese Souls - Hua Garden: pageId: 64830 steam: 668300 @@ -29481,22 +28757,18 @@ Chionophile: pageId: 164539 steam: 1432750 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Chionophile\Saved\Config\WindowsNoEditor\*.ini}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\Chionophile\Saved\SaveGames\*.sav}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\Chionophile\\Saved\\Config\\WindowsNoEditor\\*.ini}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Chionophile\\Saved\\SaveGames\\*.sav}}" Chip: pageId: 38567 steam: 275470 -Chip's Challenge 1: +"Chip's Challenge 1": pageId: 37969 steam: 346850 templates: - - >- - {{Game data/config|Windows|{{P|windir}}\entpack.ini ''(Windows 3.x - version)''|{{p|game}}/data/options.txt}} - - >- - {{Game data/saves|Windows|{{P|windir}}\entpack.ini ''(Windows 3.x - version)''|{{p|game}}/data/games/save.c2l|{{p|game}}/data/saves/}} -Chip's Challenge 2: + - "{{Game data/config|Windows|{{P|windir}}\\entpack.ini ''(Windows 3.x version)''|{{p|game}}/data/options.txt}}" + - "{{Game data/saves|Windows|{{P|windir}}\\entpack.ini ''(Windows 3.x version)''|{{p|game}}/data/games/save.c2l|{{p|game}}/data/saves/}}" +"Chip's Challenge 2": pageId: 47737 steam: 348300 Chipmonk!: @@ -29520,22 +28792,20 @@ Chivalry 2: pageId: 138420 steam: 1824220 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Chivalry 2\Saved\Config\WindowsNoEditor}}' - - '{{Game data/config|Microsoft Store|{{P|localappdata}}\Chivalry 2\Saved\Config\WinGDK}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\Chivalry 2\\Saved\\Config\\WindowsNoEditor}}" + - "{{Game data/config|Microsoft Store|{{P|localappdata}}\\Chivalry 2\\Saved\\Config\\WinGDK}}" Chivalry Is Not Dead: pageId: 147229 templates: - - '{{Game data/saves|Windows|{{P|game}}\saves\}}' -'Chivalry: Medieval Warfare': + - "{{Game data/saves|Windows|{{P|game}}\\saves\\}}" +"Chivalry: Medieval Warfare": pageId: 4576 steam: 219640 steamSide: - 241280 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Chivalry Medieval - Warfare\UDKGame\Config\|{{p|userprofile\Documents}}\My Games\Chivalry Deadliest Warrior\CDWGame\Config\}} - - '{{Game data/config|Linux|{{P|xdgdatahome}}/TornBanner/Chivalry/UDKGame/Config/}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Chivalry Medieval Warfare\\UDKGame\\Config\\|{{p|userprofile\\Documents}}\\My Games\\Chivalry Deadliest Warrior\\CDWGame\\Config\\}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/TornBanner/Chivalry/UDKGame/Config/}}" Chlorophos: pageId: 138892 steam: 1093770 @@ -29580,8 +28850,8 @@ Chocolate: Chocolate Castle: pageId: 5156 templates: - - '{{Game data/config| Linux | ~/.lexaloffle/Chocolate Castle/}}' - - '{{Game data/saves| Linux | ~/.lexaloffle/Chocolate Castle/}}' + - "{{Game data/config| Linux | ~/.lexaloffle/Chocolate Castle/}}" + - "{{Game data/saves| Linux | ~/.lexaloffle/Chocolate Castle/}}" Chocolate Makes You Happy: pageId: 76141 steam: 749340 @@ -29592,50 +28862,50 @@ Chocolate Makes You Happy 3: pageId: 81520 steam: 790860 templates: - - '{{Game data/saves|Windows|{{p|game}}\.}}' + - "{{Game data/saves|Windows|{{p|game}}\\.}}" Chocolate Makes You Happy 4: pageId: 88724 steam: 815950 templates: - - '{{Game data/saves|Windows|{{p|game}}\.}}' + - "{{Game data/saves|Windows|{{p|game}}\\.}}" Chocolate Makes You Happy 5: pageId: 92079 steam: 844160 templates: - - '{{Game data/saves|Windows|{{p|game}}\.}}' + - "{{Game data/saves|Windows|{{p|game}}\\.}}" Chocolate Makes You Happy 6: pageId: 94805 steam: 864570 templates: - - '{{Game data/saves|Windows|{{p|game}}\.}}' + - "{{Game data/saves|Windows|{{p|game}}\\.}}" Chocolate Makes You Happy 7: pageId: 99974 steam: 892880 -'Chocolate Makes You Happy: Easter': +"Chocolate Makes You Happy: Easter": pageId: 132266 steam: 1054610 -'Chocolate Makes You Happy: Halloween': +"Chocolate Makes You Happy: Halloween": pageId: 112852 steam: 941790 templates: - - '{{Game data/saves|Windows|{{p|game}}\.}}' -'Chocolate Makes You Happy: Lunar New Year': + - "{{Game data/saves|Windows|{{p|game}}\\.}}" +"Chocolate Makes You Happy: Lunar New Year": pageId: 129767 steam: 1035920 -'Chocolate Makes You Happy: New Year': +"Chocolate Makes You Happy: New Year": pageId: 123661 steam: 983280 -'Chocolate Makes You Happy: St. Patrick''s Day': +"Chocolate Makes You Happy: St. Patrick's Day": pageId: 127403 steam: 1021260 -'Chocolate Makes You Happy: Valentine''s Day': +"Chocolate Makes You Happy: Valentine's Day": pageId: 125571 steam: 1006880 -'Chocolatier: Decadence by Design': +"Chocolatier: Decadence by Design": pageId: 41255 steam: 37210 templates: - - '{{Game data/config|Windows|{{p|appdata}}\PlayFirst\chocolatier-decadence-design\prefs.dat}}' + - "{{Game data/config|Windows|{{p|appdata}}\\PlayFirst\\chocolatier-decadence-design\\prefs.dat}}" Choconoa: pageId: 126045 steam: 1009150 @@ -29646,16 +28916,14 @@ Choice Chamber: pageId: 47249 steam: 359960 templates: - - >- - {{Game data/config|Windows|{{P|appdata}}\com.onemrbean.choicechamber\Local - Store\#SharedObjects\choicechamber.swf\choicechamber.sol}} + - "{{Game data/config|Windows|{{P|appdata}}\\com.onemrbean.choicechamber\\Local Store\\#SharedObjects\\choicechamber.swf\\choicechamber.sol}}" Choice of Alexandria: pageId: 33884 steam: 466430 Choice of Broadsides: pageId: 74117 steam: 726460 -'Choice of Broadsides: HMS Foraker': +"Choice of Broadsides: HMS Foraker": pageId: 112328 steam: 928830 Choice of Kung Fu: @@ -29664,7 +28932,7 @@ Choice of Kung Fu: Choice of Magics: pageId: 108596 steam: 918380 -'Choice of Rebels: Uprising': +"Choice of Rebels: Uprising": pageId: 75980 steam: 748890 Choice of Robots: @@ -29700,37 +28968,37 @@ Choice of the Star Captain: Choice of the Vampire: pageId: 82621 steam: 776000 -'Choice of the Vampire: The Fall of Memphis': +"Choice of the Vampire: The Fall of Memphis": pageId: 82619 steam: 776020 Choice or Fate: pageId: 125085 steam: 991530 -'Choices, The Game': +"Choices, The Game": pageId: 80972 steam: 787170 Chompy Chomp Chomp: pageId: 34809 steam: 292570 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\SavedGames\ChompyChompChomp\}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\SavedGames\ChompyChompChomp\}}' + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\SavedGames\\ChompyChompChomp\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\SavedGames\\ChompyChompChomp\\}}" Choo-Choo Charles: pageId: 171983 steam: 1766740 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Obscure\Saved\Config\WindowsNoEditor}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Obscure\Saved\SaveGames}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Obscure\\Saved\\Config\\WindowsNoEditor}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Obscure\\Saved\\SaveGames}}" Choo-Choo! Train Rides!: pageId: 82359 steam: 743920 -'Chook & Sosig: Walk the Plank': +"Chook & Sosig: Walk the Plank": gog: 2034022055 pageId: 124508 steam: 899470 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\SOFTWARE\TookiPalooki\WalkthePlank\}}' - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\TookiPalooki\WalkthePlank\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\TookiPalooki\\WalkthePlank\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\TookiPalooki\\WalkthePlank\\}}" Choose Wisely: pageId: 76041 steam: 618750 @@ -29761,7 +29029,7 @@ Choplifter HD: pageId: 38502 steam: 202070 templates: - - '{{Game data/config|Windows|{{P|userprofile}}\Documents\My Games\UnrealEngine3\ChopGame\Config\}}' + - "{{Game data/config|Windows|{{P|userprofile}}\\Documents\\My Games\\UnrealEngine3\\ChopGame\\Config\\}}" Choppa: pageId: 57912 steam: 554330 @@ -29771,10 +29039,10 @@ Chopper Battle New Horizon: Chopper To Hell: pageId: 134768 steam: 1061790 -'Chopper: Attack helicopters': +"Chopper: Attack helicopters": pageId: 69611 steam: 703760 -'Chopper: Lethal Darkness': +"Chopper: Lethal Darkness": pageId: 40319 steam: 529480 Chorus: @@ -29787,8 +29055,8 @@ Chorus: - 1797160 - 2237300 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\SpacePrototype\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\SpacePrototype\SaveGames\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\SpacePrototype\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\SpacePrototype\\SaveGames\\}}" Chosen 2: pageId: 58896 steam: 569970 @@ -29798,14 +29066,14 @@ Chowderchu: Chowdertwo: pageId: 57125 steam: 585750 -Chris Sawyer's Locomotion: +"Chris Sawyer's Locomotion": gog: 1207658955 pageId: 16112 steam: 356430 templates: - - '{{Game data/config|Windows|{{p|game}}\Data\GAME.CFG}}' - - '{{Game data/saves|Windows|{{p|game}}\Single Player Saved Games\|{{p|game}}\Two Player Saved Games\}}' -'Christmas Adventure: Candy Storm': + - "{{Game data/config|Windows|{{p|game}}\\Data\\GAME.CFG}}" + - "{{Game data/saves|Windows|{{p|game}}\\Single Player Saved Games\\|{{p|game}}\\Two Player Saved Games\\}}" +"Christmas Adventure: Candy Storm": pageId: 43837 steam: 456430 Christmas Carol: @@ -29814,7 +29082,7 @@ Christmas Carol: Christmas Cats Revenge: pageId: 153616 steam: 1201500 -'Christmas Clicker: Idle Gift Builder': +"Christmas Clicker: Idle Gift Builder": pageId: 124024 steam: 978670 Christmas Crisis: @@ -29823,10 +29091,10 @@ Christmas Crisis: Christmas Defence: pageId: 124094 steam: 979290 -'Christmas Eve: Midnight''s Call': +"Christmas Eve: Midnight's Call": pageId: 54649 renamedFrom: - - 'Christmas Eve: Midnight''s Call Collector''s Edition' + - "Christmas Eve: Midnight's Call Collector's Edition" steam: 565630 Christmas Mahjong: pageId: 113894 @@ -29839,10 +29107,8 @@ Christmas Massacre: pageId: 182892 steam: 1840490 templates: - - >- - {{Game data/config|Windows|{{p|hkcu}}\Software\Puppet Combo\Christmas - Massacre
{{p|userprofile}}\AppData\LocalLow\Puppet Combo\Christmas Massacre\config.es3}} - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Puppet Combo\Christmas Massacre\SaveData.es3}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Puppet Combo\\Christmas Massacre
{{p|userprofile}}\\AppData\\LocalLow\\Puppet Combo\\Christmas Massacre\\config.es3}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Puppet Combo\\Christmas Massacre\\SaveData.es3}}" Christmas Massacre VR: pageId: 55558 steam: 574040 @@ -29870,19 +29136,19 @@ Christmas Race 2: Christmas Santa Troubles: pageId: 79135 steam: 773120 -'Christmas Stories: A Christmas Carol': +"Christmas Stories: A Christmas Carol": pageId: 77624 steam: 757030 -'Christmas Stories: Enchanted Express': +"Christmas Stories: Enchanted Express": pageId: 156198 steam: 1198060 -'Christmas Stories: Hans Christian Andersen''s Tin Soldier': +"Christmas Stories: Hans Christian Andersen's Tin Soldier": pageId: 78048 steam: 758600 -'Christmas Stories: Nutcracker': +"Christmas Stories: Nutcracker": pageId: 54643 renamedFrom: - - 'Christmas Stories: Nutcracker Collector''s Edition' + - "Christmas Stories: Nutcracker Collector's Edition" steam: 565600 Christmas Tale - Visual Novel: pageId: 79149 @@ -29905,16 +29171,16 @@ Christmastry: Christmastry 2: pageId: 69735 steam: 697790 -'Chroma : Sexy Hentai Girls': +"Chroma : Sexy Hentai Girls": pageId: 113870 steam: 929300 Chroma Blast: pageId: 63757 steam: 653220 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\William Cheek\Chroma Blast\}}' - - '{{Game data/saves|Windows|{{P|hkcu}}\Software\William Cheek\Chroma Blast\}}' -'Chroma Deluxe : Sexy Hentai Girls': + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\William Cheek\\Chroma Blast\\}}" + - "{{Game data/saves|Windows|{{P|hkcu}}\\Software\\William Cheek\\Chroma Blast\\}}" +"Chroma Deluxe : Sexy Hentai Girls": pageId: 145986 steam: 998010 Chroma Lab: @@ -29928,18 +29194,18 @@ Chroma Squad: pageId: 24903 steam: 251130 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\SOFTWARE\Behold Studios\Chroma Squad\}}' - - '{{Game data/saves|Windows|{{P|game}}\chromasquad_Data\savedGames\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Behold Studios\Chroma Squad\savedGames\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\Behold Studios\\Chroma Squad\\}}" + - "{{Game data/saves|Windows|{{P|game}}\\chromasquad_Data\\savedGames\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Behold Studios\\Chroma Squad\\savedGames\\}}" ChromaGun: pageId: 37245 steam: 408650 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Benjamin Lochmann New Media GmbH\Chromagun}}' - - '{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/Benjamin Lochmann New Media GmbH/Chromagun/prefs}}' - - '{{Game data/saves|Windows|{{P|game}}\chromagun_Data\save*.chapp}}' - - '{{Game data/saves|OS X|{{P|game}}/Chromagun.app/Contents/save*.chapp}}' - - '{{Game data/saves|Linux|{{P|game}}/Chromagun_Data/save*.chapp}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Benjamin Lochmann New Media GmbH\\Chromagun}}" + - "{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/Benjamin Lochmann New Media GmbH/Chromagun/prefs}}" + - "{{Game data/saves|Windows|{{P|game}}\\chromagun_Data\\save*.chapp}}" + - "{{Game data/saves|OS X|{{P|game}}/Chromagun.app/Contents/save*.chapp}}" + - "{{Game data/saves|Linux|{{P|game}}/Chromagun_Data/save*.chapp}}" ChromaSquares: pageId: 109624 steam: 911640 @@ -29965,14 +29231,14 @@ Chrome: pageId: 21661 steam: 46420 templates: - - '{{Game data/config|Windows|{{p|game}}\Data\}}' - - '{{Game data/saves|Windows|{{p|game}}\Save\}}' + - "{{Game data/config|Windows|{{p|game}}\\Data\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\Save\\}}" Chrome SpecForce: pageId: 21666 steam: 46430 templates: - - '{{Game data/config|Windows|{{p|game}}\Data\}}' - - '{{Game data/saves|Windows|{{p|game}}\Save\}}' + - "{{Game data/config|Windows|{{p|game}}\\Data\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\Save\\}}" Chromosome Evil: gog: 1499960187 pageId: 130678 @@ -29980,24 +29246,22 @@ Chromosome Evil: Chronac: pageId: 136789 steam: 1079470 -'Chronicle Keepers: The Dreaming Garden': +"Chronicle Keepers: The Dreaming Garden": pageId: 47563 steam: 377120 Chronicle of Innsmouth: pageId: 58692 steam: 420180 templates: - - >- - {{Game data/config|Windows|{{p|USERPROFILE}}\Saved Games\Chronicle of - Innsmouth\acsetup.cfg|{{p|PROGRAMDATA}}\Adventure Game Studio\Chronicle of Innsmouth\}} - - '{{Game data/saves|Windows|{{p|USERPROFILE}}\Saved Games\Chronicle of Innsmouth\}}' -'Chronicle of Innsmouth: Mountains of Madness': + - "{{Game data/config|Windows|{{p|USERPROFILE}}\\Saved Games\\Chronicle of Innsmouth\\acsetup.cfg|{{p|PROGRAMDATA}}\\Adventure Game Studio\\Chronicle of Innsmouth\\}}" + - "{{Game data/saves|Windows|{{p|USERPROFILE}}\\Saved Games\\Chronicle of Innsmouth\\}}" +"Chronicle of Innsmouth: Mountains of Madness": pageId: 122852 steam: 962700 -'Chronicle: RuneScape Legends': +"Chronicle: RuneScape Legends": pageId: 42904 steam: 205890 -'Chronicle: Unit Eight': +"Chronicle: Unit Eight": pageId: 156871 steam: 1221990 Chronicles of Cyberpunk: @@ -30009,7 +29273,7 @@ Chronicles of Galdurvale: Chronicles of Lurra: pageId: 114980 steam: 952510 -'Chronicles of Magic: Divided Kingdoms': +"Chronicles of Magic: Divided Kingdoms": pageId: 90002 steam: 746840 Chronicles of Mystery - Secret of the Lost Kingdom: @@ -30022,35 +29286,35 @@ Chronicles of Mystery - The Tree of Life: pageId: 103365 steam: 837090 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\Chronicles of Mystery - The Tree of Life\game.setup}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\Chronicles of Mystery - The Tree of Life\save*.*}}' -'Chronicles of Mystery: The Scorpio Ritual': + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\Chronicles of Mystery - The Tree of Life\\game.setup}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\Chronicles of Mystery - The Tree of Life\\save*.*}}" +"Chronicles of Mystery: The Scorpio Ritual": pageId: 41282 steam: 34800 templates: - - '{{Game data/config|Windows|{{P|userprofile}}\Documents\CoM\game.setup}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\Documents\CoM\save*.*}}' + - "{{Game data/config|Windows|{{P|userprofile}}\\Documents\\CoM\\game.setup}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\Documents\\CoM\\save*.*}}" Chronicles of Teddy: pageId: 48296 steam: 341020 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\FindingTeddy2}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\FindingTeddy2}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\FindingTeddy2}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\FindingTeddy2}}" Chronicles of Vinland: pageId: 78218 steam: 753110 templates: - - '{{Game data/saves|Windows|{{p|localappdata}}\Wonderbox Games\Chronicles Of Vinland\}}' -'Chronicles of a Dark Lord: Episode 1 Tides of Fate Complete': + - "{{Game data/saves|Windows|{{p|localappdata}}\\Wonderbox Games\\Chronicles Of Vinland\\}}" +"Chronicles of a Dark Lord: Episode 1 Tides of Fate Complete": pageId: 49077 steam: 336280 -'Chronicles of a Dark Lord: Episode II War of The Abyss': +"Chronicles of a Dark Lord: Episode II War of The Abyss": pageId: 48931 steam: 341780 -'Chronicles of a Dark Lord: Rhapsody Clash': +"Chronicles of a Dark Lord: Rhapsody Clash": pageId: 45545 steam: 418310 -'Chronicles of a Dark Lord: Tides of Fate Remastered': +"Chronicles of a Dark Lord: Tides of Fate Remastered": pageId: 59639 steam: 603080 Chronicles of the Witches and Warlocks: @@ -30063,9 +29327,9 @@ Chronicon: - 1599010 - 2206120 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Chronicon}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Chronicon\save}}' - - '{{Game data/saves|Linux|{{P|linuxhome}}/.config/Chronicon/save}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Chronicon}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Chronicon\\save}}" + - "{{Game data/saves|Linux|{{P|linuxhome}}/.config/Chronicon/save}}" Chronicon Apocalyptica: pageId: 125033 steam: 1001500 @@ -30075,16 +29339,12 @@ Chrono: Chrono Ark: pageId: 153866 steam: 1188930 -'Chrono Cross: The Radical Dreamers Edition': +"Chrono Cross: The Radical Dreamers Edition": pageId: 175100 steam: 1133760 templates: - - >- - {{Game data/config|Windows|{{P|userprofile\Documents}}\My Games\CHRONO CROSS THE RADICAL DREAMERS - EDITION\Steam\{{p|uid}}\}} - - >- - {{Game data/saves|Windows|{{P|userprofile\Documents}}\My Games\CHRONO CROSS THE RADICAL DREAMERS - EDITION\Steam\{{p|uid}}\}} + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\My Games\\CHRONO CROSS THE RADICAL DREAMERS EDITION\\Steam\\{{p|uid}}\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\My Games\\CHRONO CROSS THE RADICAL DREAMERS EDITION\\Steam\\{{p|uid}}\\}}" Chrono Ghost: pageId: 125211 steam: 983760 @@ -30095,9 +29355,9 @@ Chrono Trigger: pageId: 87854 steam: 613830 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\My Games\Chrono Trigger\}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\My Games\Chrono Trigger\}}' -Chrono's Arena: + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\My Games\\Chrono Trigger\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\My Games\\Chrono Trigger\\}}" +"Chrono's Arena": pageId: 150135 steam: 1179110 ChronoBreach: @@ -30107,8 +29367,8 @@ ChronoClock: pageId: 57343 steam: 539660 templates: - - '{{Game data/config|Windows|{{P|game}}\save\system.dat}}' - - '{{Game data/saves|Windows|{{P|game}}\save\save{{code|###}}.dat|{{P|game}}\save\system.dat}}' + - "{{Game data/config|Windows|{{P|game}}\\save\\system.dat}}" + - "{{Game data/saves|Windows|{{P|game}}\\save\\save{{code|###}}.dat|{{P|game}}\\save\\system.dat}}" Chronoclysm: pageId: 45647 steam: 368690 @@ -30117,14 +29377,14 @@ Chronology: pageId: 19771 steam: 269330 templates: - - '{{Game data/saves|Windows|{{p|game}}\RFSaveData*.rfo}}' + - "{{Game data/saves|Windows|{{p|game}}\\RFSaveData*.rfo}}" Chronomaster: gog: 1093622919 pageId: 54245 steam: 1734350 templates: - - '{{Game data/config|DOS|{{p|game}}\GAME.OPT}}' - - '{{Game data/saves|DOS|{{p|game}}\SAVE.0**|{{p|game}}\QUIKSAVE.DAT}}' + - "{{Game data/config|DOS|{{p|game}}\\GAME.OPT}}" + - "{{Game data/saves|DOS|{{p|game}}\\SAVE.0**|{{p|game}}\\QUIKSAVE.DAT}}" Chronon: pageId: 114288 steam: 938870 @@ -30136,13 +29396,13 @@ Chronoraptor: steam: 1049000 Chronos: pageId: 128777 -'Chronos: Before the Ashes': +"Chronos: Before the Ashes": gog: 1678001942 pageId: 163269 steam: 967390 templates: - - '{{Game data/saves|Windows|{{p|localappdata}}\Chronos\Saved\SaveGames}}' -'Chronostorm: Siberian Border': + - "{{Game data/saves|Windows|{{p|localappdata}}\\Chronos\\Saved\\SaveGames}}" +"Chronostorm: Siberian Border": pageId: 45539 steam: 361890 Chronus Arc: @@ -30163,11 +29423,11 @@ Chuchel: pageId: 73971 steam: 711660 templates: - - '{{Game data/saves|Windows|{{p|appdata}}\Amanita-Design.CHUCHEL}}' + - "{{Game data/saves|Windows|{{p|appdata}}\\Amanita-Design.CHUCHEL}}" Chuck: pageId: 132373 steam: 1051710 -Chuck's Challenge 3D: +"Chuck's Challenge 3D": pageId: 50610 steam: 262590 Chuckie Egg: @@ -30199,20 +29459,20 @@ Church Era: Churchgoers: pageId: 136959 steam: 1067390 -'Chuusotsu! 1.5th Graduation: The Moving Castle': +"Chuusotsu! 1.5th Graduation: The Moving Castle": pageId: 155314 steam: 1148930 -'Chuusotsu! 1st Graduation: Time After Time': +"Chuusotsu! 1st Graduation: Time After Time": pageId: 62098 steam: 630870 Chuzzle: pageId: 12288 steam: 3310 templates: - - '{{Game data/config|Windows|{{p|programdata}}\PopCap Games\Chuzzle\Profiles}}' - - '{{Game data/config|Steam|{{p|steam}}\steamapps\common\Chuzzle Deluxe\Profiles}}' - - '{{Game data/saves|Windows|{{p|programdata}}\PopCap Games\Chuzzle\Profiles}}' - - '{{Game data/saves|Steam|{{p|steam}}\steamapps\common\Chuzzle Deluxe\Profiles}}' + - "{{Game data/config|Windows|{{p|programdata}}\\PopCap Games\\Chuzzle\\Profiles}}" + - "{{Game data/config|Steam|{{p|steam}}\\steamapps\\common\\Chuzzle Deluxe\\Profiles}}" + - "{{Game data/saves|Windows|{{p|programdata}}\\PopCap Games\\Chuzzle\\Profiles}}" + - "{{Game data/saves|Steam|{{p|steam}}\\steamapps\\common\\Chuzzle Deluxe\\Profiles}}" Cibele: pageId: 45803 steam: 408120 @@ -30225,18 +29485,18 @@ Cicadas: Cicadas - The IQA Edition: pageId: 149115 steam: 846660 -'Ciconia When They Cry - Phase 1: For You, the Replaceable Ones': +"Ciconia When They Cry - Phase 1: For You, the Replaceable Ones": pageId: 147627 steam: 1162560 Ciel Fledge: pageId: 75707 steam: 738270 -'Ciel Nosurge: Requiem for a Lost Star DX': +"Ciel Nosurge: Requiem for a Lost Star DX": pageId: 167657 steam: 1477480 templates: - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\KoeiTecmo\CielnosurgeDX\SaveData\data_sys.bin}}' -'Ciel Nosurge: Requiem for a Lost Star Deluxe': + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\KoeiTecmo\\CielnosurgeDX\\SaveData\\data_sys.bin}}" +"Ciel Nosurge: Requiem for a Lost Star Deluxe": pageId: 165055 renamedFrom: - Surge Concerto DX @@ -30249,39 +29509,39 @@ Cinderella Escape!: - Cinderella Escape! R12 steam: 408000 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\SOFTWARE\com.hajimegames.cegame\CinderellaEscape!}}' - - '{{Game data/saves|Windows|{{p|game}}\savedata\SaveData*.dat}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\com.hajimegames.cegame\\CinderellaEscape!}}" + - "{{Game data/saves|Windows|{{p|game}}\\savedata\\SaveData*.dat}}" Cinderella Escape!! Revenge: pageId: 72531 renamedFrom: - Cinderella Escape 2 Revenge steam: 710030 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\SOFTWARE\com.game.ultimagic}}' - - '{{Game data/saves|Windows|{{p|game}}\savedata}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\com.game.ultimagic}}" + - "{{Game data/saves|Windows|{{p|game}}\\savedata}}" Cinderella Free Fall: pageId: 172199 Cinderella Phenomenon: pageId: 60696 steam: 568770 templates: - - '{{Game data/config|Windows|{{P|appdata}}\RenPy\CinderellaPhenomenon-1479011247\persistent}}' - - '{{Game data/config|Steam|{{p|game}}\Cinderella Phenomenon - OtomeVisual Novel\game\saves\persistent}}' - - '{{Game data/saves|Windows|{{P|appdata}}\RenPy\CinderellaPhenomenon-1479011247\*.save}}' - - '{{Game data/saves|Steam|{{p|game}}\Cinderella Phenomenon - OtomeVisual Novel\game\saves\*.save}}' + - "{{Game data/config|Windows|{{P|appdata}}\\RenPy\\CinderellaPhenomenon-1479011247\\persistent}}" + - "{{Game data/config|Steam|{{p|game}}\\Cinderella Phenomenon - OtomeVisual Novel\\game\\saves\\persistent}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\RenPy\\CinderellaPhenomenon-1479011247\\*.save}}" + - "{{Game data/saves|Steam|{{p|game}}\\Cinderella Phenomenon - OtomeVisual Novel\\game\\saves\\*.save}}" Cinderella VR: pageId: 120974 steam: 935720 -Cinderella's Castle Designer: +"Cinderella's Castle Designer": pageId: 166675 -Cinderella's Dollhouse: +"Cinderella's Dollhouse": pageId: 166645 Cinders: gog: 1098996397 pageId: 18252 steam: 293680 templates: - - '{{Game data/saves|Windows|{{p|appdata}}\Cinders\}}' + - "{{Game data/saves|Windows|{{p|appdata}}\\Cinders\\}}" Cine Game: pageId: 105263 steam: 904960 @@ -30294,22 +29554,22 @@ Cions of Vega: pageId: 177081 steam: 1577240 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\CionsOfVega\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\CionsOfVega\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\CionsOfVega\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\CionsOfVega\\Saved\\SaveGames\\}}" Circa Infinity: pageId: 37205 steam: 390610 templates: - - '{{Game data/saves|Windows|{{p|localappdata}}\CircaInfinity\*.sav}}' - - '{{Game data/saves|Linux|{{P|xdgconfighome}}/CircaInfinity/}}' + - "{{Game data/saves|Windows|{{p|localappdata}}\\CircaInfinity\\*.sav}}" + - "{{Game data/saves|Linux|{{P|xdgconfighome}}/CircaInfinity/}}" Circadian City: pageId: 132801 steam: 1045430 Circadian Dice: pageId: 169336 templates: - - '{{Game data/config|Windows|{{P|game}}}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Circadian_Dice}}' + - "{{Game data/config|Windows|{{P|game}}}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Circadian_Dice}}" Circle: pageId: 155290 steam: 1210220 @@ -30341,7 +29601,7 @@ Circle of Life: Circle of Sumo: pageId: 154099 steam: 961850 -'Circle of Sumo: Online Rumble!': +"Circle of Sumo: Online Rumble!": pageId: 153808 steam: 1181790 Circlecers: @@ -30375,16 +29635,16 @@ Circuits: pageId: 34030 steam: 282760 templates: - - '{{Game data/config|Windows|{{p|steam}}\config\}}' - - '{{Game data/saves|Windows|{{p|hkcu}}\Software\Digital Tentacle S.L.\Circuits\}}' - - '{{Game data/saves|Linux|"~/.config/unity3d/Digital Tentacle S.L./Circuits/prefs"}}' + - "{{Game data/config|Windows|{{p|steam}}\\config\\}}" + - "{{Game data/saves|Windows|{{p|hkcu}}\\Software\\Digital Tentacle S.L.\\Circuits\\}}" + - "{{Game data/saves|Linux|\"~/.config/unity3d/Digital Tentacle S.L./Circuits/prefs\"}}" Circularity: pageId: 71864 steam: 709380 Circus Electrique: pageId: 174672 steam: 1666250 -Cirno's Perfect Summer Vacation: +"Cirno's Perfect Summer Vacation": pageId: 156619 steam: 1211650 Cirque du Soleil: @@ -30396,7 +29656,7 @@ Cirrata: Citadale - The Ancestral Strain: pageId: 121381 steam: 963170 -'Citadale: The Legends Trilogy': +"Citadale: The Legends Trilogy": pageId: 70098 steam: 670410 Citadel: @@ -30405,12 +29665,12 @@ Citadel: Citadel 1986: pageId: 36224 steam: 510830 -'Citadel: Forged with Fire': +"Citadel: Forged with Fire": pageId: 65654 steam: 487120 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Citadel\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Citadel\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Citadel\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Citadel\\Saved\\SaveGames\\}}" Citadels: pageId: 40604 steam: 238870 @@ -30430,36 +29690,36 @@ Cities XL Platinum: pageId: 6189 steam: 231140 templates: - - '{{Game data/saves|Windows|{{p|appdata}}\Monte Cristo\Cities XL Platinum}}' + - "{{Game data/saves|Windows|{{p|appdata}}\\Monte Cristo\\Cities XL Platinum}}" Cities XXL: pageId: 29557 steam: 313010 Cities in Motion: gog: 1437043994 gogSide: - - 1437047329 - 1437046838 + - 1437047329 pageId: 2651 steam: 73010 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Cities In Motion\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Cities in Motion/}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/Cities In Motion/}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Cities In Motion\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Cities in Motion/}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/Cities In Motion/}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Cities In Motion\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Cities in Motion/}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/Cities In Motion/}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Cities In Motion\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Cities in Motion/}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/Cities In Motion/}}" Cities in Motion 2: pageId: 5557 steam: 225420 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Colossal Order\Cities in Motion 2\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Preferences/unity.Colossal Order.Cities in Motion 2.plist}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Colossal Order/Cities in Motion 2/}}' - - '{{Game data/saves|Windows|AppData\LocalLow\Colossal Order\Cities in Motion 2\Saves}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/.Library/Caches/unity.Colossal Order.Cities in Motion 2/Saves/}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Colossal Order/Cities in Motion 2/}}' - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/225420/}}' -'Cities: Skylines': + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Colossal Order\\Cities in Motion 2\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Preferences/unity.Colossal Order.Cities in Motion 2.plist}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Colossal Order/Cities in Motion 2/}}" + - "{{Game data/saves|Windows|AppData\\LocalLow\\Colossal Order\\Cities in Motion 2\\Saves}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/.Library/Caches/unity.Colossal Order.Cities in Motion 2/Saves/}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Colossal Order/Cities in Motion 2/}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/225420/}}" +"Cities: Skylines": pageId: 22752 steam: 255710 steamSide: @@ -30524,9 +29784,9 @@ Cities in Motion 2: - 2144483 - 2148900 - 2148901 + - 2148902 - 2148903 - 2148904 - - 2148902 - 2224690 - 2224691 - 2225940 @@ -30538,20 +29798,18 @@ Cities in Motion 2: - 2313324 - 2342310 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Colossal Order\Cities_Skylines\gameSettings.cgs}}' - - >- - {{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Colossal - Order/Cities_Skylines/gameSettings.cgs}} - - '{{Game data/config|Linux|{{P|xdgdatahome}}/Colossal Order/Cities_Skylines/gameSettings.cgs}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\Colossal Order\Cities_Skylines\Saves\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Colossal Order/Cities_Skylines/Saves/}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/Colossal Order/Cities_Skylines/Saves/}}' -'Cities: Skylines II': + - "{{Game data/config|Windows|{{P|localappdata}}\\Colossal Order\\Cities_Skylines\\gameSettings.cgs}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Colossal Order/Cities_Skylines/gameSettings.cgs}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/Colossal Order/Cities_Skylines/gameSettings.cgs}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Colossal Order\\Cities_Skylines\\Saves\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Colossal Order/Cities_Skylines/Saves/}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/Colossal Order/Cities_Skylines/Saves/}}" +"Cities: Skylines II": pageId: 185663 steam: 949230 templates: - - '{{Game data/saves|Microsoft Store|{{p|userprofile}}\AppData\LocalLow\Colossal Order\Cities Skylines II}}' - - '{{Game data/saves|Microsoft Store|{{p|userprofile}}\AppData\LocalLow\Colossal Order\Cities Skylines II\Saves}}' + - "{{Game data/saves|Microsoft Store|{{p|userprofile}}\\AppData\\LocalLow\\Colossal Order\\Cities Skylines II}}" + - "{{Game data/saves|Microsoft Store|{{p|userprofile}}\\AppData\\LocalLow\\Colossal Order\\Cities Skylines II\\Saves}}" CitiesCorp Concept - Build Everything on Your Own: pageId: 43265 steam: 446010 @@ -30560,13 +29818,9 @@ Citizen Sleeper: pageId: 171592 steam: 1578650 templates: - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Jump Over the Age\Citizen Sleeper}}' - - >- - {{Game data/saves|Microsoft - Store|{{P|localappdata}}\Packages\SurpriseAttackPtyLtd.CitizenSleeper_8k24hnfn3vvj0\SystemAppData\wgs}} - - >- - {{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/Jump Over the Age/Citizen Sleeper or - {{P|osxhome}}/Library/Application Support/com.JumpOvertheAge.CitizenSleeper}} + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Jump Over the Age\\Citizen Sleeper}}" + - "{{Game data/saves|Microsoft Store|{{P|localappdata}}\\Packages\\SurpriseAttackPtyLtd.CitizenSleeper_8k24hnfn3vvj0\\SystemAppData\\wgs}}" + - "{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/Jump Over the Age/Citizen Sleeper or {{P|osxhome}}/Library/Application Support/com.JumpOvertheAge.CitizenSleeper}}" Citizen of Rome - Dynasty Ascendant: pageId: 135467 steam: 1063790 @@ -30574,15 +29828,15 @@ Citizens of Earth: pageId: 17737 steam: 258910 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Citizens of Earth\config.ini|{{p|game}}\Citizens of Earth\config\}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Citizens of Earth\SaveData\}}' - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\258910\remote\}}' + - "{{Game data/config|Windows|{{p|appdata}}\\Citizens of Earth\\config.ini|{{p|game}}\\Citizens of Earth\\config\\}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Citizens of Earth\\SaveData\\}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\258910\\remote\\}}" Citizens of Space: pageId: 138272 steam: 1016760 templates: - - '{{Game data/config|Windows|{{p|Steam}}\steamapps\common\Citizens of Space\config\config.ini}}' -'Citizens: Far Lands': + - "{{Game data/config|Windows|{{p|Steam}}\\steamapps\\common\\Citizens of Space\\config\\config.ini}}" +"Citizens: Far Lands": pageId: 182681 steam: 1646120 Citrouille: @@ -30596,8 +29850,8 @@ City Balls VR: City Beneath the Surface: pageId: 175408 templates: - - '{{Game data/config|DOS|{{p|game}}}}' - - '{{Game data/saves|DOS|{{p|game}}}}' + - "{{Game data/config|DOS|{{p|game}}}}" + - "{{Game data/saves|DOS|{{p|game}}}}" City Blocks: pageId: 109738 steam: 914270 @@ -30614,10 +29868,10 @@ City Car Driving: pageId: 52298 steam: 493490 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\Forward Development\City Car Driving\config\}}' - - '{{Game data/config|Steam|{{P|userprofile\Documents}}\Forward Development\City Car Driving Steam\config\}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\Forward Development\City Car Driving\}}' - - '{{Game data/saves|Steam|{{P|userprofile\Documents}}\Forward Development\City Car Driving Steam\}}' + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\Forward Development\\City Car Driving\\config\\}}" + - "{{Game data/config|Steam|{{P|userprofile\\Documents}}\\Forward Development\\City Car Driving Steam\\config\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\Forward Development\\City Car Driving\\}}" + - "{{Game data/saves|Steam|{{P|userprofile\\Documents}}\\Forward Development\\City Car Driving Steam\\}}" City Climber: pageId: 51677 steam: 538840 @@ -30635,12 +29889,12 @@ City Game Studio: pageId: 75172 steam: 726840 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Godot\app_userdata\CityGameStudio}}' - - '{{Game data/config|OS X|{{p|osxhome}}/.godot/CityGameStudio}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.godot/CityGameStudio}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Godot\app_userdata\CityGameStudio\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/.godot/CityGameStudio}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.godot/CityGameStudio}}' + - "{{Game data/config|Windows|{{p|appdata}}\\Godot\\app_userdata\\CityGameStudio}}" + - "{{Game data/config|OS X|{{p|osxhome}}/.godot/CityGameStudio}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.godot/CityGameStudio}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Godot\\app_userdata\\CityGameStudio\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/.godot/CityGameStudio}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.godot/CityGameStudio}}" City Gangs San Andreas: pageId: 149795 steam: 1150610 @@ -30650,7 +29904,7 @@ City Life: City Monsters: pageId: 88642 steam: 801760 -'City Patrol: Police': +"City Patrol: Police": pageId: 93033 steam: 789890 City Play: @@ -30662,8 +29916,8 @@ City Quest: City Racing: pageId: 186103 templates: - - '{{Game data/config|Windows|{{p|game}}\Game.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\Save\Profile*.sav}}' + - "{{Game data/config|Windows|{{p|game}}\\Game.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\Save\\Profile*.sav}}" City Rush: pageId: 59480 steam: 609400 @@ -30684,22 +29938,22 @@ City Z: City Zombies: pageId: 132322 steam: 1056470 -'City of Ages: Picture Supportive Text MUD (server and client included)': +"City of Ages: Picture Supportive Text MUD (server and client included)": pageId: 67974 steam: 688930 City of Brass: pageId: 65347 steam: 301840 templates: - - '{{Game data/config|Windows|{{p|LOCALAPPDATA}}\COB\Saved\Config\WindowsNoEditor}}' - - '{{Game data/config|Epic Games Store|{{p|LOCALAPPDATA}}\COB\Saved_EGS\Config\WindowsNoEditor}}' - - '{{Game data/saves|Windows|{{p|LOCALAPPDATA}}\COB\Saved\SaveGames\}}' - - '{{Game data/saves|Epic Games Store|{{p|LOCALAPPDATA}}\COB\Saved_EGS\SaveGames\}}' + - "{{Game data/config|Windows|{{p|LOCALAPPDATA}}\\COB\\Saved\\Config\\WindowsNoEditor}}" + - "{{Game data/config|Epic Games Store|{{p|LOCALAPPDATA}}\\COB\\Saved_EGS\\Config\\WindowsNoEditor}}" + - "{{Game data/saves|Windows|{{p|LOCALAPPDATA}}\\COB\\Saved\\SaveGames\\}}" + - "{{Game data/saves|Epic Games Store|{{p|LOCALAPPDATA}}\\COB\\Saved_EGS\\SaveGames\\}}" City of Chains: pageId: 34954 steam: 412170 templates: - - '{{Game data/saves|Windows|{{p|appdata}}\City of Chains\Saves\}}' + - "{{Game data/saves|Windows|{{p|appdata}}\\City of Chains\\Saves\\}}" City of Edges: pageId: 134673 steam: 1048780 @@ -30711,26 +29965,26 @@ City of Gangsters: pageId: 162868 steam: 1386780 templates: - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\SomaSim\City of Gangsters\saves}}' + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\SomaSim\\City of Gangsters\\saves}}" City of God I - Prison Empire: pageId: 58011 steam: 466860 -'City of Jade: Imperial Frontier': +"City of Jade: Imperial Frontier": pageId: 94768 steam: 862650 -'City of Rott: Streets of Rott': +"City of Rott: Streets of Rott": pageId: 56930 steam: 580880 City of Sky: pageId: 87197 steam: 788180 -'City of Steam: Arkadia': +"City of Steam: Arkadia": pageId: 50600 steam: 266070 City of the Shroud: pageId: 39691 steam: 449100 -'CityBattle: Virtual Earth': +"CityBattle: Virtual Earth": pageId: 152243 steam: 876460 CityManager: @@ -30743,79 +29997,75 @@ Cityglitch: pageId: 82794 steam: 756790 templates: - - '{{Game data/saves|Windows|{{p|appdata}}\cityglitch\savedata.lua}}' + - "{{Game data/saves|Windows|{{p|appdata}}\\cityglitch\\savedata.lua}}" Citystate: pageId: 81695 steam: 774351 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\CITYSTATE}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\CITYSTATE}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\CITYSTATE}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\CITYSTATE}}" Citystate II: pageId: 183178 steam: 1352850 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\AndySztark\Citystate II}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\AndySztark\Citystate II}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\AndySztark\\Citystate II}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\AndySztark\\Citystate II}}" Citywars Savage: pageId: 137076 steam: 910800 -'CivCity: Rome': +"CivCity: Rome": gog: 1367477034 pageId: 41391 steam: 3980 templates: - - >- - {{Game data/config|Windows|{{P|userprofile\Documents}}\CivCity - Rome\CivCityRome.GraphicsSettings.xml|{{p|game}}\CivCityRome.configuration.xml}} - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\CivCity Rome\Saves}}' + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\CivCity Rome\\CivCityRome.GraphicsSettings.xml|{{p|game}}\\CivCityRome.configuration.xml}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\CivCity Rome\\Saves}}" Civil War II: pageId: 50009 steam: 306630 -'Civil War: 1861': +"Civil War: 1861": pageId: 57101 steam: 540230 -'Civil War: 1862': +"Civil War: 1862": pageId: 51328 steam: 532890 -'Civil War: 1863': +"Civil War: 1863": pageId: 42619 steam: 436270 -'Civil War: 1864': +"Civil War: 1864": pageId: 72328 steam: 699860 -'Civil War: 1865': +"Civil War: 1865": pageId: 60748 steam: 620630 -'Civil War: Battle of Petersburg': +"Civil War: Battle of Petersburg": pageId: 57570 steam: 584800 -'Civil War: Bull Run 1861': +"Civil War: Bull Run 1861": pageId: 66003 steam: 374960 -'Civil War: Gettysburg': +"Civil War: Gettysburg": pageId: 67639 steam: 665440 -'Civil Warfare: Another Bullet in the War': +"Civil Warfare: Another Bullet in the War": pageId: 78366 steam: 734590 -'Civil: The Game': +"Civil: The Game": pageId: 145528 steam: 1131160 CivilContract: pageId: 126016 steam: 1010460 -'Civilization II: Test of Time': +"Civilization II: Test of Time": pageId: 172202 templates: - - '{{Game data/config|Windows|{{p|game}}\CIV2.DAT}}' - - >- - {{Game - data/saves|Windows|{{p|game}}\Original\*.sav
{{p|game}}\ExtendedOriginal\*.sav
{{p|game}}\Fantasy\*.sav
{{p|game}}\Midgard\*.sav
{{p|game}}\SciFi\*.sav}} -'Civilization: Call to Power': + - "{{Game data/config|Windows|{{p|game}}\\CIV2.DAT}}" + - "{{Game data/saves|Windows|{{p|game}}\\Original\\*.sav
{{p|game}}\\ExtendedOriginal\\*.sav
{{p|game}}\\Fantasy\\*.sav
{{p|game}}\\Midgard\\*.sav
{{p|game}}\\SciFi\\*.sav}}" +"Civilization: Call to Power": pageId: 148114 templates: - - '{{Game data/config|Windows|{{p|game}}\ctp_program\ctp\userprofile.txt|{{p|game}}\ctp_program\ctp\userkeymap.txt}}' - - '{{Game data/saves|Windows|{{p|game}}\ctp_program\ctp\save}}' + - "{{Game data/config|Windows|{{p|game}}\\ctp_program\\ctp\\userprofile.txt|{{p|game}}\\ctp_program\\ctp\\userkeymap.txt}}" + - "{{Game data/saves|Windows|{{p|game}}\\ctp_program\\ctp\\save}}" Civitas Nova: pageId: 144250 steam: 1086250 @@ -30826,21 +30076,21 @@ Civitatem: Civlands: pageId: 157148 steam: 1208890 -'Clad in Iron: Chincha Islands 1866': +"Clad in Iron: Chincha Islands 1866": pageId: 186084 steam: 2196170 -'Clad in Iron: Gulf of Mexico 1864': +"Clad in Iron: Gulf of Mexico 1864": pageId: 68937 steam: 693450 -'Clad in Iron: Philippines 1898': +"Clad in Iron: Philippines 1898": pageId: 75550 steam: 712970 -'Clad in Iron: Sakhalin 1904': +"Clad in Iron: Sakhalin 1904": pageId: 120998 steam: 963680 -'Clad in Iron: War of the Pacific 1879': +"Clad in Iron: War of the Pacific 1879": pageId: 186411 -'Cladun Returns: This Is Sengoku!': +"Cladun Returns: This Is Sengoku!": pageId: 53495 steam: 506260 Cladun X2: @@ -30850,7 +30100,7 @@ Claire: pageId: 49987 steam: 252830 templates: - - '{{Game data/saves|Windows|{{p|hkcu}}\Software\Hailstorm Games\Claire}}' + - "{{Game data/saves|Windows|{{p|hkcu}}\\Software\\Hailstorm Games\\Claire}}" Claire de Lune: pageId: 162366 steam: 717110 @@ -30867,42 +30117,40 @@ Clandestine: pageId: 45747 steam: 290530 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Clandestine\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Clandestine\saves\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Clandestine\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Clandestine\\saves\\}}" Clandestinity of Elsie: pageId: 47339 steam: 379320 templates: - - '{{Game data/config|Windows|{{p|appdata}}\coe\Settings.ini}}' - - '{{Game data/saves|Windows|{{p|appdata}}\coe}}' + - "{{Game data/config|Windows|{{p|appdata}}\\coe\\Settings.ini}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\coe}}" Clandestiny: pageId: 147292 Clanfolk: pageId: 179731 steam: 1700870 templates: - - '{{Game data/config|Windows|{{P|userprofile}}\AppData\LocalLow\MinMax Games\Clanfolk\Options\Options.opt}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\MinMax Games\Clanfolk\Cloud\SavedData}}' + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\MinMax Games\\Clanfolk\\Options\\Options.opt}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\MinMax Games\\Clanfolk\\Cloud\\SavedData}}" Clannad: pageId: 21159 steam: 324160 templates: - - >- - {{Game - data/config|Windows|{{p|game}}\SAVEDATA\REALLIVE.sav|{{p|game}}\SAVEDATA\REALLIVEEN.sav|{{p|game}}\SAVEDATA\read.sav}} - - '{{Game data/saves|Windows|{{p|game}}\SAVEDATA\save{{code|###}}.sav}}' + - "{{Game data/config|Windows|{{p|game}}\\SAVEDATA\\REALLIVE.sav|{{p|game}}\\SAVEDATA\\REALLIVEEN.sav|{{p|game}}\\SAVEDATA\\read.sav}}" + - "{{Game data/saves|Windows|{{p|game}}\\SAVEDATA\\save{{code|###}}.sav}}" Clannad Side Stories: pageId: 33600 steam: 420100 templates: - - '{{Game data/config|Windows|{{p|game}}\Gameexe.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\SAVEDATA\}}' + - "{{Game data/config|Windows|{{p|game}}\\Gameexe.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\SAVEDATA\\}}" Clans: pageId: 50573 steam: 281430 templates: - - '{{Game data/config|Windows|{{p|game}}\data\Clans.INI}}' - - '{{Game data/saves|Windows|{{p|game}}\*.csg}}' + - "{{Game data/config|Windows|{{p|game}}\\data\\Clans.INI}}" + - "{{Game data/saves|Windows|{{p|game}}\\*.csg}}" Clans of Reign: pageId: 141997 steam: 718550 @@ -30913,10 +30161,10 @@ Clash: gog: 2056790662 pageId: 82258 templates: - - '{{Game data/config|DOS|{{p|game}}\OPTIONS.CFG}}' - - '{{Game data/config|Windows|{{p|game}}\options.cfg}}' - - '{{Game data/saves|DOS|{{p|game}}\SAVE\}}' - - '{{Game data/saves|Windows|{{p|game}}\save\}}' + - "{{Game data/config|DOS|{{p|game}}\\OPTIONS.CFG}}" + - "{{Game data/config|Windows|{{p|game}}\\options.cfg}}" + - "{{Game data/saves|DOS|{{p|game}}\\SAVE\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\save\\}}" Clash (2016): pageId: 40126 steam: 416040 @@ -30960,18 +30208,18 @@ Clash of Vessels VR: Clash of the Monsters: pageId: 43618 steam: 431500 -'Clash: Artifacts of Chaos': +"Clash: Artifacts of Chaos": pageId: 169783 steam: 1430680 -'Clash: Mutants Vs Pirates': +"Clash: Mutants Vs Pirates": pageId: 90444 steam: 822710 -Class of '09: +"Class of '09": gog: 1822996619 pageId: 181013 steam: 1443200 templates: - - '{{Game data/saves|Windows|{{P|game}}\game\saves\}}' + - "{{Game data/saves|Windows|{{P|game}}\\game\\saves\\}}" ClassiCube: pageId: 135285 steam: 1065710 @@ -31004,7 +30252,7 @@ Classic Snake Adventures: Classified Stories: pageId: 114234 steam: 937960 -'Classified Stories: Color Out of Space': +"Classified Stories: Color Out of Space": pageId: 179349 steam: 1810130 Classroom Aquatic: @@ -31016,14 +30264,14 @@ Clatter: Claude Monet - The Water Lily obsession: pageId: 134519 steam: 1071170 -'Claustrophobia: The Downward Struggle': +"Claustrophobia: The Downward Struggle": pageId: 49669 steam: 269590 Claw: pageId: 4449 templates: - - '{{Game data/config|Windows|{{p|hklm}}\SOFTWARE\{{p|wow64}}\Monolith Productions\Claw\}}' - - '{{Game data/saves|Windows|{{P|game}}\CLAW.USR}}' + - "{{Game data/config|Windows|{{p|hklm}}\\SOFTWARE\\{{p|wow64}}\\Monolith Productions\\Claw\\}}" + - "{{Game data/saves|Windows|{{P|game}}\\CLAW.USR}}" Claw Breaker: pageId: 100470 steam: 853290 @@ -31037,7 +30285,7 @@ Claws & Feathers: pageId: 48365 steam: 354310 templates: - - '{{Game data/saves|Windows|{{p|appdata}}\AlawarEntertainment\Adept Studios\Claws And Feathers}}' + - "{{Game data/saves|Windows|{{p|appdata}}\\AlawarEntertainment\\Adept Studios\\Claws And Feathers}}" Claws & Feathers 2: pageId: 54965 steam: 566940 @@ -31048,8 +30296,8 @@ Claybook: pageId: 73252 steam: 661920 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Claybook\Saved\Config}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Claybook\Saved\SaveGames}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Claybook\\Saved\\Config}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Claybook\\Saved\\SaveGames}}" Claybreaker - VR Clay Shooting: pageId: 64184 steam: 657450 @@ -31062,11 +30310,11 @@ Clea: Clean VR: pageId: 136601 steam: 1071090 -Clean'Em Up: +"Clean'Em Up": pageId: 36179 steam: 351410 templates: - - '{{Game data/config|Windows|{{Path|Game}}\CleanEmUp.exe.config}}' + - "{{Game data/config|Windows|{{Path|Game}}\\CleanEmUp.exe.config}}" Cleaner: pageId: 138558 steam: 1097590 @@ -31076,10 +30324,10 @@ Cleansuit: ClearIt5: pageId: 143889 steam: 1125820 -Cleo's Lost Idols: +"Cleo's Lost Idols": pageId: 76907 steam: 515230 -'Cleo: A Pirate''s Tale': +"Cleo: A Pirate's Tale": gog: 1305589612 gogSide: - 1238007070 @@ -31090,10 +30338,8 @@ Cleo's Lost Idols: - 1699680 - 1833880 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Christoph Schultz\CleoAPiratesTale\}}' - - >- - {{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Christoph - Schultz\CleoAPiratesTale\save.cleo{{P|uid}}*}} + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Christoph Schultz\\CleoAPiratesTale\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Christoph Schultz\\CleoAPiratesTale\\save.cleo{{P|uid}}*}}" Cleopatra Fortune S-Tribute: pageId: 182728 steam: 1913690 @@ -31101,10 +30347,10 @@ Clergy Splode: pageId: 35299 steam: 403900 templates: - - '{{Game data/config|Windows|{{p|game}}\S3DClient.cfg}}' - - '{{Game data/config|Linux|{{p|game}}/data/S3DClient.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\557b7d79\Saves\}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.StoneTrip/.saves/}}' + - "{{Game data/config|Windows|{{p|game}}\\S3DClient.cfg}}" + - "{{Game data/config|Linux|{{p|game}}/data/S3DClient.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\557b7d79\\Saves\\}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.StoneTrip/.saves/}}" Clergyman: pageId: 82004 steam: 796810 @@ -31144,10 +30390,10 @@ Click.O.Fast: ClickBit: pageId: 77610 steam: 674220 -'ClickCells: Office Lady': +"ClickCells: Office Lady": pageId: 153561 steam: 1189460 -'ClickCells: Winter Lady': +"ClickCells: Winter Lady": pageId: 156441 steam: 1221030 ClickRaid: @@ -31172,13 +30418,13 @@ Clicker Guild: pageId: 55033 steam: 557810 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Fox Dawn\Clicker Guild}}' + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Fox Dawn\\Clicker Guild}}" Clicker Heroes: pageId: 25098 steam: 363970 templates: - - '{{Game data/saves|Windows|{{p|appdata}}\com.playsaurus.heroclicker\Local Store\}}' - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\363970\remote\}}' + - "{{Game data/saves|Windows|{{p|appdata}}\\com.playsaurus.heroclicker\\Local Store\\}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\363970\\remote\\}}" Clicker Heroes 2: pageId: 72411 steam: 629910 @@ -31191,23 +30437,23 @@ Clicker Warriors: Clicker bAdventure: pageId: 78280 steam: 736430 -'Clicker: Glad Valakas': +"Clicker: Glad Valakas": pageId: 123701 steam: 978470 -'Clicker: Mining Simulator': +"Clicker: Mining Simulator": pageId: 79805 steam: 776890 Clickey: pageId: 63614 steam: 655450 -'Clickey: The Velocity Click': +"Clickey: The Velocity Click": pageId: 64288 steam: 662310 Clickr: pageId: 24984 steam: 45500 templates: - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\45500\remote\ClickrConfig_cloud.pak}}' + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\45500\\remote\\ClickrConfig_cloud.pak}}" Clid the Snail: gog: 1575455721 pageId: 173563 @@ -31216,17 +30462,17 @@ Cliff Empire: pageId: 92155 steam: 809140 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\LionShade\Cliff Empire\}}' + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\LionShade\\Cliff Empire\\}}" Cliff Hanger: pageId: 37008 steam: 515200 -'Cliffs of War: Fortress Defenders': +"Cliffs of War: Fortress Defenders": pageId: 45775 steam: 396540 Cliffstone Manor: pageId: 72543 steam: 698910 -'Climatic Survival: Northern Storm': +"Climatic Survival: Northern Storm": pageId: 143930 steam: 1131640 Climb: @@ -31253,24 +30499,24 @@ Climbtime: Clinically Dead: pageId: 110500 steam: 927840 -Clive 'N' Wrench: +"Clive 'N' Wrench": gog: 1936905339 pageId: 139663 steam: 1094720 templates: - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\Dinosaur Bytes Studio\Clive ''N'' Wrench\GameSave}}' -Clive Barker's Jericho: + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\Dinosaur Bytes Studio\\Clive 'N' Wrench\\GameSave}}" +"Clive Barker's Jericho": pageId: 7720 steam: 11420 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Codemasters\Clive Barker''s Jericho\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Codemasters\Clive Barker''s Jericho\}}' -Clive Barker's Undying: + - "{{Game data/config|Windows|{{p|appdata}}\\Codemasters\\Clive Barker's Jericho\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Codemasters\\Clive Barker's Jericho\\}}" +"Clive Barker's Undying": gog: 1207659191 pageId: 1521 templates: - - '{{Game data/config|Windows|{{p|game}}\System\*.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\Save\}}' + - "{{Game data/config|Windows|{{p|game}}\\System\\*.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\Save\\}}" Cloak and Dasher: pageId: 151085 steam: 1114620 @@ -31278,11 +30524,11 @@ Clock Simulator: pageId: 37505 steam: 501120 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Kool2Play\Clock Simulator\}}' + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Kool2Play\\Clock Simulator\\}}" Clock Tower: pageId: 71800 templates: - - '{{Game data/saves|Windows|{{p|game}}\DATA.BIN}}' + - "{{Game data/saves|Windows|{{p|game}}\\DATA.BIN}}" Clock Tower (2024): pageId: 188644 Clocker: @@ -31303,12 +30549,12 @@ Clockwork Empires: pageId: 18481 steam: 224740 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Gaslamp Games\Clockwork Empires\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Gaslamp Games\Clockwork Empires\save}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Gaslamp Games\\Clockwork Empires\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Gaslamp Games\\Clockwork Empires\\save}}" Clockwork Revolution: pageId: 187996 steam: 2439280 -'Clockwork Tales: Of Glass and Ink': +"Clockwork Tales: Of Glass and Ink": pageId: 34038 steam: 284830 Clodhoppers: @@ -31321,21 +30567,17 @@ Clone Drone in the Danger Zone: pageId: 59059 steam: 597170 templates: - - >- - {{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\Doborog\Clone Drone in the Danger - Zone\SettingsData.json|{{p|userprofile}}\AppData\LocalLow\Doborog\Clone Drone in the Danger - Zone\CoopCustomGameSettings.json|{{p|userprofile}}\AppData\LocalLow\Doborog\Clone Drone in the Danger - Zone\Multiplayer1v1CustomGameSettings.json|{{P|hkcu}}\Software\Doborog\Clone Drone in the Danger Zone\}} - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Doborog\Clone Drone in the Danger Zone\}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Doborog\\Clone Drone in the Danger Zone\\SettingsData.json|{{p|userprofile}}\\AppData\\LocalLow\\Doborog\\Clone Drone in the Danger Zone\\CoopCustomGameSettings.json|{{p|userprofile}}\\AppData\\LocalLow\\Doborog\\Clone Drone in the Danger Zone\\Multiplayer1v1CustomGameSettings.json|{{P|hkcu}}\\Software\\Doborog\\Clone Drone in the Danger Zone\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Doborog\\Clone Drone in the Danger Zone\\}}" Clone Hero: pageId: 158692 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Clone Hero\settings.ini}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.clonehero/settings.ini}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Clone Hero/settings.ini}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\srylain Inc_\Clone Hero}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/srylain Inc_/Clone Hero/}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/com.srylain.CloneHero}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Clone Hero\\settings.ini}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.clonehero/settings.ini}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Clone Hero/settings.ini}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\srylain Inc_\\Clone Hero}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/srylain Inc_/Clone Hero/}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/com.srylain.CloneHero}}" Clones: pageId: 41040 steam: 72400 @@ -31346,62 +30588,62 @@ Cloning Clyde: pageId: 9134 steam: 91800 templates: - - '{{Game data/config|Windows|{{p|game}}\data\rawPCOnlyData\defaultOptions.ini}}' - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\91800\}}' + - "{{Game data/config|Windows|{{p|game}}\\data\\rawPCOnlyData\\defaultOptions.ini}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\91800\\}}" Close Call Extreme: pageId: 79316 steam: 752530 Close Combat: gog: 1649233263 pageId: 131877 -'Close Combat III: The Russian Front': +"Close Combat III: The Russian Front": gog: 1981721026 pageId: 8692 -'Close Combat: A Bridge Too Far': +"Close Combat: A Bridge Too Far": gog: 1649233263 pageId: 8686 -'Close Combat: Cross of Iron': +"Close Combat: Cross of Iron": gog: 1988084980 pageId: 131873 steam: 1367320 -'Close Combat: First to Fight': +"Close Combat: First to Fight": pageId: 80265 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Destineer\FirstToFight\global\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Destineer\FirstToFight\Dossiers\}}' -'Close Combat: Gateway to Caen': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Destineer\\FirstToFight\\global\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Destineer\\FirstToFight\\Dossiers\\}}" +"Close Combat: Gateway to Caen": gog: 1321528002 pageId: 50099 steam: 297750 templates: - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\Close Combat Gateway to Caen\Saved Games\}}' -'Close Combat: Invasion Normandy': + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\Close Combat Gateway to Caen\\Saved Games\\}}" +"Close Combat: Invasion Normandy": gog: 2016902862 pageId: 8706 -'Close Combat: Last Stand Arnhem': +"Close Combat: Last Stand Arnhem": gog: 1516759579 pageId: 123621 steam: 936530 -'Close Combat: Modern Tactics': +"Close Combat: Modern Tactics": gog: 2078946998 pageId: 131875 steam: 1367330 -'Close Combat: Panthers in the Fog': +"Close Combat: Panthers in the Fog": gog: 1966901360 pageId: 47907 steam: 368220 -'Close Combat: The Battle of the Bulge': +"Close Combat: The Battle of the Bulge": gog: 1714577252 pageId: 8697 -'Close Combat: The Bloody First': +"Close Combat: The Bloody First": gog: 1893134433 pageId: 135427 steam: 811880 -'Close Combat: The Longest Day': +"Close Combat: The Longest Day": gog: 1877181554 pageId: 160806 steam: 1272130 -'Close Combat: Wacht am Rhein': +"Close Combat: Wacht am Rhein": gog: 1215191504 pageId: 160113 steam: 1272110 @@ -31414,11 +30656,11 @@ Close Order: Close Quarters Conflict: pageId: 187807 templates: - - '{{Game data/config|Windows|{{p|game}}/System/*.ini}}' + - "{{Game data/config|Windows|{{p|game}}/System/*.ini}}" Close Your Eyes: pageId: 38307 steam: 377330 -'Close Your Eyes: Anniversary Remake': +"Close Your Eyes: Anniversary Remake": pageId: 69719 steam: 706710 Close the Window!: @@ -31429,8 +30671,8 @@ Close to the Sun: pageId: 134198 steam: 968870 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\ctts\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\ctts\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\ctts\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\ctts\\Saved\\SaveGames\\}}" Closer Than You Think: pageId: 107696 steam: 916710 @@ -31438,23 +30680,23 @@ Closers: pageId: 75990 steam: 215830 templates: - - '{{Game data/config|Windows|{{p|game}}\closers\GAME_OPTION.lua}}' + - "{{Game data/config|Windows|{{p|game}}\\closers\\GAME_OPTION.lua}}" Closure: pageId: 4731 steam: 72000 templates: - - '{{Game data/config|Windows|{{P|game}}\Resources\savedsettings.cfg}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/Eyebrow Interactive/Closure/}}' - - '{{Game data/config|Steam|{{p|steam}}/userdata/{{p|uid}}/72000/}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/Eyebrow Interactive/Closure/}}' - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/72000/}}' + - "{{Game data/config|Windows|{{P|game}}\\Resources\\savedsettings.cfg}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/Eyebrow Interactive/Closure/}}" + - "{{Game data/config|Steam|{{p|steam}}/userdata/{{p|uid}}/72000/}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/Eyebrow Interactive/Closure/}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/72000/}}" Clothesline Carnage: pageId: 65859 steam: 548790 Cloud Chamber: pageId: 18943 steam: 290710 -'Cloud Chasers: Journey of Hope': +"Cloud Chasers: Journey of Hope": pageId: 88148 renamedFrom: - Cloud Chasers - Journey of Hope @@ -31464,16 +30706,14 @@ Cloud Gardens: pageId: 171106 steam: 1372320 templates: - - >- - {{Game data/config|Windows|{{P|userprofile\appdata\locallow}}\noio\Cloud Gardens|{{P|hkcu}}\SOFTWARE\noio\Cloud - Gardens}} - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\noio\Cloud Gardens\Save}}' + - "{{Game data/config|Windows|{{P|userprofile\\appdata\\locallow}}\\noio\\Cloud Gardens|{{P|hkcu}}\\SOFTWARE\\noio\\Cloud Gardens}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\noio\\Cloud Gardens\\Save}}" Cloud Knights: pageId: 32488 steam: 360130 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\SOFTWARE\Astrosnout\Cloud Knights}}' - - '{{Game data/saves|Windows|{{p|hkcu}}\SOFTWARE\Astrosnout\Cloud Knights}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\Astrosnout\\Cloud Knights}}" + - "{{Game data/saves|Windows|{{p|hkcu}}\\SOFTWARE\\Astrosnout\\Cloud Knights}}" Cloud Pirates: pageId: 58620 steam: 559460 @@ -31490,8 +30730,8 @@ Cloudberry Kingdom: pageId: 9597 steam: 210870 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\Cloudberry Kingdom\}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\Cloudberry Kingdom\}}' + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\Cloudberry Kingdom\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\Cloudberry Kingdom\\}}" Cloudborn: pageId: 72226 steam: 677040 @@ -31502,8 +30742,8 @@ Cloudbuilt: - 307550 - 330730 templates: - - '{{Game data/config|Windows|{{P|game}}\settings\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Coilworks\Cloudbuilt\Saved Games\}}' + - "{{Game data/config|Windows|{{P|game}}\\settings\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Coilworks\\Cloudbuilt\\Saved Games\\}}" Clouded: pageId: 123836 steam: 886350 @@ -31512,7 +30752,7 @@ Cloudface: Cloudlands 2: pageId: 155436 steam: 1206960 -'Cloudlands: VR Minigolf': +"Cloudlands: VR Minigolf": pageId: 34567 steam: 425720 Cloudphobia: @@ -31523,8 +30763,8 @@ Cloudpunk: pageId: 122480 steam: 746850 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\ION LANDS\Cloudpunk\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Ion Lands\Cloudpunk\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\ION LANDS\\Cloudpunk\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Ion Lands\\Cloudpunk\\}}" Cloudrift: pageId: 45834 steam: 403270 @@ -31535,7 +30775,7 @@ Cloudy with a Chance of Meatballs: pageId: 88493 steam: 33270 templates: - - '{{Game data/config|Windows|{{p|appdata}}\CLOUDY}}' + - "{{Game data/config|Windows|{{p|appdata}}\\CLOUDY}}" Clouzy!: pageId: 175395 steam: 1493360 @@ -31557,8 +30797,8 @@ Club Dance Party VR: Club Football 2005: pageId: 157919 templates: - - '{{Game data/config|Windows|{{P|game}}\ini|{{P|userprofile\Documents}}\Club Football 2005\configpc.cfg}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\Club Football 2005\}}' + - "{{Game data/config|Windows|{{P|game}}\\ini|{{P|userprofile\\Documents}}\\Club Football 2005\\configpc.cfg}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\Club Football 2005\\}}" Club Life: pageId: 43630 steam: 404180 @@ -31589,17 +30829,17 @@ Cluck Yegger in Escape From The Planet of The Poultroid: pageId: 45696 steam: 416800 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Guys from Andromeda\SpaceVenture\}}' -Cluckles' Adventure: + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Guys from Andromeda\\SpaceVenture\\}}" +"Cluckles' Adventure": pageId: 59523 steam: 605250 -Cludbugz's Twisted Magic: +"Cludbugz's Twisted Magic": pageId: 66470 steam: 683570 -'Clue/Cluedo: The Classic Mystery Game': +"Clue/Cluedo: The Classic Mystery Game": pageId: 93672 steam: 794800 -'Clue: Murder at Boddy Mansion': +"Clue: Murder at Boddy Mansion": pageId: 7605 Clumsy Chef: pageId: 81524 @@ -31610,7 +30850,7 @@ Clumsy Fred: Clumsy Knight: pageId: 60746 steam: 614050 -'Clumsy Knights : Threats of Dragon': +"Clumsy Knights : Threats of Dragon": pageId: 80523 steam: 765360 Clumsy Moose Season: @@ -31620,8 +30860,8 @@ Clumsy Runners: pageId: 35260 steam: 455590 templates: - - '{{Game data/config|Windows|{{p|HKCU}}\Software\plaiko\ClumsyRunners\}}' - - '{{Game data/saves|Windows|{{p|HKCU}}\Software\plaiko\ClumsyRunners\}}' + - "{{Game data/config|Windows|{{p|HKCU}}\\Software\\plaiko\\ClumsyRunners\\}}" + - "{{Game data/saves|Windows|{{p|HKCU}}\\Software\\plaiko\\ClumsyRunners\\}}" Clunk: pageId: 82183 steam: 789150 @@ -31643,23 +30883,23 @@ Clustertruck: pageId: 37020 steam: 397950 templates: - - '{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/Landfall/Clustertruck/}}' - - '{{Game data/saves|Windows|{{p|hkcu}}\Software\Landfall\Clustertruck}}' + - "{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/Landfall/Clustertruck/}}" + - "{{Game data/saves|Windows|{{p|hkcu}}\\Software\\Landfall\\Clustertruck}}" Clutch: pageId: 41263 steam: 35310 templates: - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Clutch}}' + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Clutch}}" Clutchball: pageId: 155359 steam: 1167710 -'Clutter Infinity: Joe''s Ultimate Quest': +"Clutter Infinity: Joe's Ultimate Quest": pageId: 67532 steam: 553330 -'Clutter V: Welcome to Clutterville': +"Clutter V: Welcome to Clutterville": pageId: 42183 steam: 499280 -'Clutter VI: Leigh''s Story': +"Clutter VI: Leigh's Story": pageId: 74111 steam: 733810 Cmoar VR Cinema: @@ -31706,13 +30946,13 @@ Cobalt: pageId: 5407 steam: 357340 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Cobalt\}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Cobalt\}}' + - "{{Game data/config|Windows|{{p|appdata}}\\Cobalt\\}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Cobalt\\}}" Cobalt Core: pageId: 191231 steam: 2179850 templates: - - '{{Game data/saves|Windows|{{P|appdata}}\CobaltCore\}}' + - "{{Game data/saves|Windows|{{P|appdata}}\\CobaltCore\\}}" Cobalt WASD: pageId: 77636 steam: 590720 @@ -31720,22 +30960,17 @@ Cobi Treasure Deluxe: pageId: 50204 steam: 301690 templates: - - '{{Game data/config|Windows|{{p|appdata}}\CobiMobi\Cobi Treasure Deluxe\options.dat}}' - - >- - {{Game data/saves|Windows|{{p|appdata}}\CobiMobi\Cobi Treasure Deluxe\users.dat|{{p|appdata}}\CobiMobi\Cobi - Treasure Deluxe\highscores.dat}} + - "{{Game data/config|Windows|{{p|appdata}}\\CobiMobi\\Cobi Treasure Deluxe\\options.dat}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\CobiMobi\\Cobi Treasure Deluxe\\users.dat|{{p|appdata}}\\CobiMobi\\Cobi Treasure Deluxe\\highscores.dat}}" Cobos: pageId: 74389 steam: 685450 -'Cobra Kai: The Karate Kid Saga Continues': +"Cobra Kai: The Karate Kid Saga Continues": pageId: 165057 steam: 1279920 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Flux Games\Cobra Kai: The Karate Kid Saga Continues}}' - - >- - {{Game data/saves|Windows|C:\Users\USERNAME\AppData\LocalLow\Flux Games\Cobra Kai_ The Karate Kid Saga Continues - [https://steamcommunity.com/app/1279920/discussions/0/5312531598971460586/ Source of save game data location - information]}} + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Flux Games\\Cobra Kai: The Karate Kid Saga Continues}}" + - "{{Game data/saves|Windows|C:\\Users\\USERNAME\\AppData\\LocalLow\\Flux Games\\Cobra Kai_ The Karate Kid Saga Continues [https://steamcommunity.com/app/1279920/discussions/0/5312531598971460586/ Source of save game data location information]}}" Cockatrice Attacking the city: pageId: 140865 steam: 1118030 @@ -31755,7 +30990,7 @@ Cockwork Industries Complete: pageId: 150379 steam: 1172940 templates: - - '{{Game data/saves|Windows|{{p|localappdata}}\Digital Seductions\Cockwork Industries\Savegames\}}' + - "{{Game data/saves|Windows|{{p|localappdata}}\\Digital Seductions\\Cockwork Industries\\Savegames\\}}" Coco VR: pageId: 89880 Coconut Queen: @@ -31765,15 +31000,15 @@ Cocoon: pageId: 178396 steam: 1497440 templates: - - '{{Game data/config|Windows|{{P|userprofile\appdata\locallow}}\GeometricInteractive\Cocoon\}}' - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\GeometricInteractive\Cocoon\}}' + - "{{Game data/config|Windows|{{P|userprofile\\appdata\\locallow}}\\GeometricInteractive\\Cocoon\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\GeometricInteractive\\Cocoon\\}}" Code 7: pageId: 65482 steam: 650570 templates: - - '{{Game data/config|Linux|$HOME/.config/unity3d/GoodwolfStudio/Code 7}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\GoodwolfStudio\Code 7\saveFiles}}' - - '{{Game data/saves|Linux|$HOME/.config/unity3d/GoodwolfStudio/Code 7/saveFiles}}' + - "{{Game data/config|Linux|$HOME/.config/unity3d/GoodwolfStudio/Code 7}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\GoodwolfStudio\\Code 7\\saveFiles}}" + - "{{Game data/saves|Linux|$HOME/.config/unity3d/GoodwolfStudio/Code 7/saveFiles}}" Code 9: pageId: 71717 steam: 682280 @@ -31783,17 +31018,17 @@ Code Brown: Code Cracker: pageId: 88914 steam: 813300 -'Code Head: Calculated Risk': +"Code Head: Calculated Risk": pageId: 190290 -'Code Head: X-Treme Culture': +"Code Head: X-Treme Culture": pageId: 190288 -'Code Name: Origin': +"Code Name: Origin": pageId: 78412 steam: 761930 Code Romantic: pageId: 105559 steam: 884980 -'Code S-44: Episode 1': +"Code S-44: Episode 1": pageId: 135608 steam: 1055380 Code Shifter: @@ -31806,24 +31041,22 @@ Code Vein: pageId: 91685 steam: 678960 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\CodeVein\Saved\Config\WindowsNoEditor}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\CodeVein\Saved\SaveGames}}' - - >- - {{Game data/saves|Microsoft - Store|{{P|localappdata}}\Packages\NAMCOBANDAIGamesInc.CODEVEINPCBaseGame_gdy2aq6ez762w\SystemAppData\wgs\}} + - "{{Game data/config|Windows|{{P|localappdata}}\\CodeVein\\Saved\\Config\\WindowsNoEditor}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\CodeVein\\Saved\\SaveGames}}" + - "{{Game data/saves|Microsoft Store|{{P|localappdata}}\\Packages\\NAMCOBANDAIGamesInc.CODEVEINPCBaseGame_gdy2aq6ez762w\\SystemAppData\\wgs\\}}" Code World: pageId: 70571 steam: 708190 -'Code of Honor 2: Conspiracy Island': +"Code of Honor 2: Conspiracy Island": pageId: 186234 templates: - - '{{Game data/config|Windows|{{p|public}}\Documents\City Interactive\CODE OF HONOR 2}}' - - '{{Game data/saves|Windows|{{p|public}}\Documents\City Interactive\CODE OF HONOR 2}}' -'Code of Honor 3: Desperate Measures': + - "{{Game data/config|Windows|{{p|public}}\\Documents\\City Interactive\\CODE OF HONOR 2}}" + - "{{Game data/saves|Windows|{{p|public}}\\Documents\\City Interactive\\CODE OF HONOR 2}}" +"Code of Honor 3: Desperate Measures": pageId: 30666 templates: - - '{{Game data/config|Windows|{{p|public}}\Documents\City Interactive\CODE OF HONOR 3}}' - - '{{Game data/saves|Windows|{{p|public}}\Documents\City Interactive\CODE OF HONOR 3\save}}' + - "{{Game data/config|Windows|{{p|public}}\\Documents\\City Interactive\\CODE OF HONOR 3}}" + - "{{Game data/saves|Windows|{{p|public}}\\Documents\\City Interactive\\CODE OF HONOR 3\\save}}" Code of Princess: pageId: 43600 steam: 408640 @@ -31833,10 +31066,10 @@ Code of Princess EX: Code/The Werewolf Party: pageId: 141535 steam: 1108240 -'Code51:Mecha Arena': +"Code51:Mecha Arena": pageId: 108036 steam: 640760 -'CodeRed: Agent Sarah''s Story - Day One': +"CodeRed: Agent Sarah's Story - Day One": pageId: 77994 steam: 639240 CodeSpells: @@ -31852,71 +31085,69 @@ Codename CURE: pageId: 47207 steam: 355180 templates: - - '{{Game data/config|Steam|{{p|game}}\cure\cfg\}}' + - "{{Game data/config|Steam|{{p|game}}\\cure\\cfg\\}}" Codename Ghost Hunt: pageId: 108992 steam: 844030 Codename Nemesis: pageId: 126283 steam: 993530 -'Codename: Agent Cat': +"Codename: Agent Cat": pageId: 65008 steam: 632150 -'Codename: Eagle': +"Codename: Eagle": pageId: 25225 -'Codename: Gordon': +"Codename: Gordon": pageId: 5597 steam: 92 templates: - - '{{Game data/config|Windows|{{P|AppData}}\Macromedia\Flash Player\localhost\hl2d_settings.sol}}' -'Codename: ICEMAN': + - "{{Game data/config|Windows|{{P|AppData}}\\Macromedia\\Flash Player\\localhost\\hl2d_settings.sol}}" +"Codename: ICEMAN": gog: 1405883093 pageId: 17081 templates: - - '{{Game data/config|DOS|{{p|game}}\}}' - - '{{Game data/saves|DOS|{{p|game}}\}}' -'Codename: Outbreak': + - "{{Game data/config|DOS|{{p|game}}\\}}" + - "{{Game data/saves|DOS|{{p|game}}\\}}" +"Codename: Outbreak": gog: 1434357748 pageId: 58083 templates: - - '{{Game data/config|Windows|{{p|game}}\GAME.INI|{{p|game}}\lev\Server.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\savegame\}}' -'Codename: Panzers - Cold War': + - "{{Game data/config|Windows|{{p|game}}\\GAME.INI|{{p|game}}\\lev\\Server.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\savegame\\}}" +"Codename: Panzers - Cold War": pageId: 22386 steam: 9850 templates: - - >- - {{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Codename Panzers - Cold - War\Profiles\001.profile\Saved Games}} -'Codename: Panzers - Phase One': + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Codename Panzers - Cold War\\Profiles\\001.profile\\Saved Games}}" +"Codename: Panzers - Phase One": gog: 1455704049 pageId: 34250 steam: 411310 templates: - - '{{Game data/config|Windows|{{p|game}}\options.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\Run\SaveGames\}}' -'Codename: Panzers - Phase Two': + - "{{Game data/config|Windows|{{p|game}}\\options.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\Run\\SaveGames\\}}" +"Codename: Panzers - Phase Two": gog: 1455704410 pageId: 34252 steam: 411320 -'Codename: Phantom': +"Codename: Phantom": pageId: 76101 steam: 703140 -'Codename: Rogue Fleet': +"Codename: Rogue Fleet": pageId: 44956 steam: 403690 CoderBear: pageId: 132674 steam: 994360 -'Codex Temondera: Lost Vision': +"Codex Temondera: Lost Vision": pageId: 128503 steam: 1031800 Codex of Victory: pageId: 42211 steam: 464100 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\SOFTWARE\Ino-Co\Codex of Victory\}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Ino-Co\Codex of Victory\Saves\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\SOFTWARE\\Ino-Co\\Codex of Victory\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Ino-Co\\Codex of Victory\\Saves\\}}" Coffee Break: pageId: 155666 steam: 1207500 @@ -31951,27 +31182,23 @@ Coffee Shop Tycoon: pageId: 39422 steam: 370060 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Riff Studios\Coffee Shop Tycoon\}}' - - '{{Game data/saves|Windows|{{P|hkcu}}\Software\Riff Studios\Coffee Shop Tycoon\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Riff Studios\\Coffee Shop Tycoon\\}}" + - "{{Game data/saves|Windows|{{P|hkcu}}\\Software\\Riff Studios\\Coffee Shop Tycoon\\}}" Coffee Talk: gog: 1371683428 pageId: 107684 steam: 914800 templates: - - '{{Game data/config|Windows|{{P|userprofile}}\AppData\LocalLow\Toge Productions\CoffeeTalk\Data\SettingsData}}' - - >- - {{Game data/config|Microsoft - Store|{{P|localappdata}}\Packages\ChorusWorldwideGames.CoffeeTalk_3e08f9hn67c02\LocalState\playerprefs.dat}} - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Toge Productions\CoffeeTalk\Data\}}' - - >- - {{Game data/saves|Microsoft - Store|{{P|localappdata}}\Packages\ChorusWorldwideGames.CoffeeTalk_3e08f9hn67c02\SystemAppData\wgs}} -'Coffee Talk Episode 2: Hibiscus & Butterfly': + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Toge Productions\\CoffeeTalk\\Data\\SettingsData}}" + - "{{Game data/config|Microsoft Store|{{P|localappdata}}\\Packages\\ChorusWorldwideGames.CoffeeTalk_3e08f9hn67c02\\LocalState\\playerprefs.dat}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Toge Productions\\CoffeeTalk\\Data\\}}" + - "{{Game data/saves|Microsoft Store|{{P|localappdata}}\\Packages\\ChorusWorldwideGames.CoffeeTalk_3e08f9hn67c02\\SystemAppData\\wgs}}" +"Coffee Talk Episode 2: Hibiscus & Butterfly": gog: 1414975207 pageId: 172889 steam: 1663220 templates: - - '{{Game data/saves|Steam|{{p|userprofile\appdata\locallow}}\Toge Productions\CTHB\SaveData\Steam\{{p|uid}}}}' + - "{{Game data/saves|Steam|{{p|userprofile\\appdata\\locallow}}\\Toge Productions\\CTHB\\SaveData\\Steam\\{{p|uid}}}}" Coffee Trainer VR: pageId: 112168 steam: 910210 @@ -32005,21 +31232,14 @@ Cogmind: pageId: 72919 steam: 722730 templates: - - '{{Game data/saves|Windows|{{p|game}}/user}}' -'Cognition: An Erica Reed Thriller': + - "{{Game data/saves|Windows|{{p|game}}/user}}" +"Cognition: An Erica Reed Thriller": gog: 1207659633 pageId: 21622 steam: 242780 templates: - - >- - {{Game data/config|Windows|{{P|hkcu}}\Software\Phoenix Online Studios\Cognition - Episode - 1|{{P|hkcu}}\Software\Phoenix Online Studios\Cognition - Episode 2|{{P|hkcu}}\Software\Phoenix Online - Studios\Cognition - Episode 3|{{P|hkcu}}\Software\Phoenix Online Studios\Cognition - Episode 4}} - - >- - {{Game data/saves|Windows|{{P|steam}}\userdata\{{P|uid}}\242780\remote\cognition _ episode - 1\|{{P|steam}}\userdata\{{P|uid}}\242780\remote\cognition _ episode - 2\|{{P|steam}}\userdata\{{P|uid}}\242780\remote\cognition _ episode - 3\|{{P|steam}}\userdata\{{P|uid}}\242780\remote\cognition _ episode 4\}} + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Phoenix Online Studios\\Cognition - Episode 1|{{P|hkcu}}\\Software\\Phoenix Online Studios\\Cognition - Episode 2|{{P|hkcu}}\\Software\\Phoenix Online Studios\\Cognition - Episode 3|{{P|hkcu}}\\Software\\Phoenix Online Studios\\Cognition - Episode 4}}" + - "{{Game data/saves|Windows|{{P|steam}}\\userdata\\{{P|uid}}\\242780\\remote\\cognition _ episode 1\\|{{P|steam}}\\userdata\\{{P|uid}}\\242780\\remote\\cognition _ episode 2\\|{{P|steam}}\\userdata\\{{P|uid}}\\242780\\remote\\cognition _ episode 3\\|{{P|steam}}\\userdata\\{{P|uid}}\\242780\\remote\\cognition _ episode 4\\}}" Cognizant Protocol: pageId: 65985 steam: 664440 @@ -32033,11 +31253,11 @@ Cogs: pageId: 4674 steam: 26500 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Lazy 8 Studios\Cogs\cogs.ini}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/Cogs/}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Lazy 8 Studios\Cogs\playerInfo.dat}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/Cogs/}}' - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{P|uid}}/26500/remote/}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Lazy 8 Studios\\Cogs\\cogs.ini}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/Cogs/}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Lazy 8 Studios\\Cogs\\playerInfo.dat}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/Cogs/}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{P|uid}}/26500/remote/}}" Cogs and Cowboys: pageId: 41685 steam: 510410 @@ -32048,8 +31268,8 @@ Coin Crypt: pageId: 26839 steam: 264690 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Coin\config}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Coin\save}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Coin\\config}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Coin\\save}}" Coin Pickers: pageId: 155783 steam: 1199060 @@ -32076,7 +31296,7 @@ Cold Bite: Cold Blooded Cube: pageId: 113994 steam: 933070 -'Cold Cable: Lifeshift': +"Cold Cable: Lifeshift": pageId: 130115 steam: 1043610 Cold Contract: @@ -32092,7 +31312,7 @@ Cold Fear: pageId: 26840 steam: 15270 templates: - - '{{Game data/saves|Windows|{{p|game}}\SAVES}}' + - "{{Game data/saves|Windows|{{p|game}}\\SAVES}}" Cold Hearts: gog: 1395627516 pageId: 130668 @@ -32116,8 +31336,8 @@ Cold War: pageId: 50730 steam: 260650 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Cold War\Config.txt}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Cold War\Saves\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Cold War\\Config.txt}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Cold War\\Saves\\}}" Cold War Game: pageId: 145162 steam: 1047210 @@ -32129,16 +31349,16 @@ Cold Waters: pageId: 57916 steam: 541210 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Killerfish Games\Cold Waters}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Killerfish Games\Cold Waters\savegame\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Killerfish Games\\Cold Waters}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Killerfish Games\\Cold Waters\\savegame\\}}" Cold Winter Morning: pageId: 155572 steam: 1217440 -'Cold Zero: No Mercy': +"Cold Zero: No Mercy": pageId: 101693 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/saves|Windows|{{p|game}}\save}}' + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\save}}" Cold wires: pageId: 153794 steam: 1204530 @@ -32154,90 +31374,79 @@ Coldfire Keep: ColecoVision Flashback: pageId: 51302 steam: 529860 -Colette's Sugar Madness: +"Colette's Sugar Madness": pageId: 114246 steam: 938170 Colin McRae Rally: pageId: 22760 templates: - - '{{Game data/saves|Windows|{{p|game}}\save}}' + - "{{Game data/saves|Windows|{{p|game}}\\save}}" Colin McRae Rally (2014): pageId: 18733 steam: 287340 templates: - - >- - {{Game data/config|Windows|{{p|game}}\CMR_Data\Saves\Options.txt|{{p|hkcu}}\Software\Codemasters Software - Ltd\Colin McRae Rally\}} - - '{{Game data/config|OS X|{{p|game}}/Cmr.app/Contents/Saves/}}' - - '{{Game data/saves|Windows|{{p|game}}\CMR_Data\Saves\}}' - - '{{Game data/saves|OS X|{{p|game}}/Cmr.app/Contents/Saves/}}' + - "{{Game data/config|Windows|{{p|game}}\\CMR_Data\\Saves\\Options.txt|{{p|hkcu}}\\Software\\Codemasters Software Ltd\\Colin McRae Rally\\}}" + - "{{Game data/config|OS X|{{p|game}}/Cmr.app/Contents/Saves/}}" + - "{{Game data/saves|Windows|{{p|game}}\\CMR_Data\\Saves\\}}" + - "{{Game data/saves|OS X|{{p|game}}/Cmr.app/Contents/Saves/}}" Colin McRae Rally 04: pageId: 14252 templates: - - >- - {{Game data/config|Windows|{{p|hklm}}\SOFTWARE\{{P|wow64}}\Codemasters\Colin McRae Rally - 04\|{{P|game}}\netopts|{{P|game}}\network.cfg|{{P|game}}\OPTIONS|{{P|game}}\SpecSelection.bin}} - - '{{Game data/saves|Windows|{{P|game}}\BESTTIMES_GHOSTS|{{P|game}}\CHAMPIONSHIP_SLOT_*}}' + - "{{Game data/config|Windows|{{p|hklm}}\\SOFTWARE\\{{P|wow64}}\\Codemasters\\Colin McRae Rally 04\\|{{P|game}}\\netopts|{{P|game}}\\network.cfg|{{P|game}}\\OPTIONS|{{P|game}}\\SpecSelection.bin}}" + - "{{Game data/saves|Windows|{{P|game}}\\BESTTIMES_GHOSTS|{{P|game}}\\CHAMPIONSHIP_SLOT_*}}" Colin McRae Rally 2.0: pageId: 22766 templates: - - '{{Game data/config|Windows|{{P|game}}\Configuration\}}' - - '{{Game data/saves|Windows|{{P|game}}\gamesave\|{{P|game}}\pps\}}' + - "{{Game data/config|Windows|{{P|game}}\\Configuration\\}}" + - "{{Game data/saves|Windows|{{P|game}}\\gamesave\\|{{P|game}}\\pps\\}}" Colin McRae Rally 2005: gog: 1207658663 pageId: 5076 templates: - - '{{Game data/config|Windows|{{p|hklm}}\SOFTWARE\{{P|wow64}}\Codemasters\Colin McRae Rally 2005}}' - - '{{Game data/saves|Windows|{{P|game}}\SG\}}' + - "{{Game data/config|Windows|{{p|hklm}}\\SOFTWARE\\{{P|wow64}}\\Codemasters\\Colin McRae Rally 2005}}" + - "{{Game data/saves|Windows|{{P|game}}\\SG\\}}" Colin McRae Rally 3: pageId: 29108 templates: - - '{{Game data/config|Windows|{{p|hklm}}\SOFTWARE\{{p|wow64}}\Codemasters\Colin McRae Rally 3\}}' - - '{{Game data/saves|Windows|{{P|game}}\CMR3}}' -'Colin McRae: DiRT': + - "{{Game data/config|Windows|{{p|hklm}}\\SOFTWARE\\{{p|wow64}}\\Codemasters\\Colin McRae Rally 3\\}}" + - "{{Game data/saves|Windows|{{P|game}}\\CMR3}}" +"Colin McRae: DiRT": pageId: 14344 steam: 11440 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Codemasters\DiRT\hardware_settings_config.xml}}' - - '{{Game data/config|Steam|{{p|game}}\system\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Codemasters\DiRT\savegame\}}' - - '{{Game data/saves|Steam|{{p|game}}\savegame\}}' -'Colin McRae: DiRT 2': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Codemasters\\DiRT\\hardware_settings_config.xml}}" + - "{{Game data/config|Steam|{{p|game}}\\system\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Codemasters\\DiRT\\savegame\\}}" + - "{{Game data/saves|Steam|{{p|game}}\\savegame\\}}" +"Colin McRae: DiRT 2": pageId: 4606 steam: 12840 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\My - Games\DiRT2\hardwaresettings\hardware_settings_config.xml}} - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\DiRT2\savegame\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Feral Interactive/DiRT 2/Savegame}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\DiRT2\\hardwaresettings\\hardware_settings_config.xml}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\DiRT2\\savegame\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Feral Interactive/DiRT 2/Savegame}}" Collapse: pageId: 27646 steam: 289620 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Creoteam Collapse\setup.ini}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Creoteam Collapse\saveGame\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Creoteam Collapse\\setup.ini}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Creoteam Collapse\\saveGame\\}}" Collapsed: gog: 1649028464 pageId: 136987 steam: 1074610 templates: - - >- - {{Game data/config|Windows|{{P|userprofile}}\AppData\LocalLow\Glaive - Games\Collapsed\GameDataState|{{P|userprofile}}\AppData\LocalLow\Glaive - Games\Collapsed\InputSettings|{{P|hkcu}}\Software\Glaive Games\Collapsed\}} - - >- - {{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Glaive - Games\Collapsed\shared.dat|{{P|userprofile}}\AppData\LocalLow\Glaive Games\Collapsed\user*.dat}} + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Glaive Games\\Collapsed\\GameDataState|{{P|userprofile}}\\AppData\\LocalLow\\Glaive Games\\Collapsed\\InputSettings|{{P|hkcu}}\\Software\\Glaive Games\\Collapsed\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Glaive Games\\Collapsed\\shared.dat|{{P|userprofile}}\\AppData\\LocalLow\\Glaive Games\\Collapsed\\user*.dat}}" Collateral: pageId: 49251 steam: 297390 -'Collection of SaGa: Final Fantasy Legend': +"Collection of SaGa: Final Fantasy Legend": pageId: 171768 steam: 1642620 templates: - - '{{Game data/saves|Steam|{{p|userprofile\documents}}\My Games\Sa・Ga COLLECTION\Steam\{{p|uid}}\}}' -'Collective: the Community Created Card Game': + - "{{Game data/saves|Steam|{{p|userprofile\\documents}}\\My Games\\Sa・Ga COLLECTION\\Steam\\{{p|uid}}\\}}" +"Collective: the Community Created Card Game": pageId: 125231 steam: 878940 Collector: @@ -32256,9 +31465,9 @@ College Kings - Act I: pageId: 179052 steam: 1463120 templates: - - '{{Game data/saves|Windows|{{p|game}}\game\saves}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/RenPy/CollegeKings}}' - - '{{Game data/saves|Linux|{{p|game}}/game/saves}}' + - "{{Game data/saves|Windows|{{p|game}}\\game\\saves}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/RenPy/CollegeKings}}" + - "{{Game data/saves|Linux|{{p|game}}/game/saves}}" Collide: pageId: 87425 steam: 725910 @@ -32283,13 +31492,13 @@ Colloc: Colo Grid Zation: pageId: 114710 steam: 946790 -'Colobot: Gold Edition': +"Colobot: Gold Edition": pageId: 25392 templates: - - '{{Game data/config|Windows|{{p|USERPROFILE}}\colobot\colobot.ini}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/colobot/colobot.ini}}' - - '{{Game data/saves|Windows|{{p|USERPROFILE}}\colobot\savegame\}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/colobot/savegame/}}' + - "{{Game data/config|Windows|{{p|USERPROFILE}}\\colobot\\colobot.ini}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/colobot/colobot.ini}}" + - "{{Game data/saves|Windows|{{p|USERPROFILE}}\\colobot\\savegame\\}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/colobot/savegame/}}" Cologne: pageId: 44199 steam: 444740 @@ -32326,16 +31535,14 @@ Colony Assault: Colony Prospector: pageId: 92169 steam: 843510 -'Colony Ship: A Post-Earth Role Playing Game': +"Colony Ship: A Post-Earth Role Playing Game": gog: 1091815649 pageId: 108696 renamedFrom: - The New World steam: 648410 templates: - - |- - {{Game data/saves|Windows|{{p|localappdata}}\ColonyShipGame\Saved\SaveGames - }} + - "{{Game data/saves|Windows|{{p|localappdata}}\\ColonyShipGame\\Saved\\SaveGames\n}}" Colony Siege: pageId: 153932 steam: 1198740 @@ -32343,13 +31550,13 @@ Colony Survival: pageId: 60804 steam: 366090 templates: - - '{{Game data/config|Linux|{{p|game}}/Colony Survival/gamedata/savegames/*.json}}' - - '{{Game data/saves|Windows|{{p|game}}/Colony Survival/gamedata/savegames}}' - - '{{Game data/saves|Linux|{{p|game}}/Colony Survival/gamedata/savegames}}' + - "{{Game data/config|Linux|{{p|game}}/Colony Survival/gamedata/savegames/*.json}}" + - "{{Game data/saves|Windows|{{p|game}}/Colony Survival/gamedata/savegames}}" + - "{{Game data/saves|Linux|{{p|game}}/Colony Survival/gamedata/savegames}}" Colony on Mars: pageId: 79208 steam: 773640 -'ColonyShip-4: Survivors': +"ColonyShip-4: Survivors": pageId: 114754 steam: 947500 Color: @@ -32415,7 +31622,7 @@ Color Slayer: Color Snooker: pageId: 69561 steam: 675760 -'Color Soul: Memories': +"Color Soul: Memories": pageId: 150954 steam: 1171570 Color Sudoku: @@ -32425,8 +31632,8 @@ Color Symphony: pageId: 20018 steam: 317410 templates: - - '{{Game data/config|Windows|{{p|game}}\save\Config.dtcf}}' - - '{{Game data/saves|Windows|{{p|game}}\save\Player.sav}}' + - "{{Game data/config|Windows|{{p|game}}\\save\\Config.dtcf}}" + - "{{Game data/saves|Windows|{{p|game}}\\save\\Player.sav}}" Color Symphony 2: pageId: 46032 steam: 403780 @@ -32483,10 +31690,10 @@ Coloring Game: Coloring Game 2: pageId: 155652 steam: 1216200 -'Coloring Game: Little City': +"Coloring Game: Little City": pageId: 144063 steam: 1132190 -'Coloring Game: Pixel': +"Coloring Game: Pixel": pageId: 148457 steam: 1173830 Coloring Girls: @@ -32496,8 +31703,8 @@ Coloring Pixels: pageId: 104757 steam: 897330 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\ToastieLabs\ColoringPixels\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\ToastieLabs\ColoringPixels\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\ToastieLabs\\ColoringPixels\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\ToastieLabs\\ColoringPixels\\}}" Colorless Life: pageId: 65648 steam: 670430 @@ -32517,7 +31724,7 @@ Colossal Cave: gog: 2090725880 pageId: 185485 steam: 2215540 -'Colossal Kaiju Combat: Kaijuland Battles': +"Colossal Kaiju Combat: Kaijuland Battles": pageId: 49777 steam: 290810 Colossal Saga: @@ -32547,7 +31754,7 @@ Colourise: Colourless: pageId: 121613 steam: 953340 -'Colours of Magic: Aqua Teeter': +"Colours of Magic: Aqua Teeter": pageId: 43398 steam: 464230 Colt Canyon: @@ -32555,14 +31762,14 @@ Colt Canyon: pageId: 128684 steam: 940710 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\ColtCanyon\userdata\settings.ini}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\ColtCanyon\userdata\save.sav}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\ColtCanyon\\userdata\\settings.ini}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\ColtCanyon\\userdata\\save.sav}}" Colt Express: pageId: 52613 steam: 534360 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Asmodee\Colt Express\}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Asmodee\Colt Express\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Asmodee\\Colt Express\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Asmodee\\Colt Express\\}}" Colum and His Friends: pageId: 136973 steam: 1079760 @@ -32576,22 +31783,14 @@ Columns: pageId: 30713 steam: 34285 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\SEGA Mega Drive - Classics\setup.dat|{{p|userprofile\Documents}}\SEGA Genesis Classics\setup.dat}} - - >- - {{Game data/saves|Windows|{{p|userprofile\Documents}}\SEGA Mega Drive - Classics\0013\|{{p|userprofile\Documents}}\SEGA Genesis Classics\0013\}} -'Columns III: Revenge of Columns': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\SEGA Mega Drive Classics\\setup.dat|{{p|userprofile\\Documents}}\\SEGA Genesis Classics\\setup.dat}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\SEGA Mega Drive Classics\\0013\\|{{p|userprofile\\Documents}}\\SEGA Genesis Classics\\0013\\}}" +"Columns III: Revenge of Columns": pageId: 30715 steam: 34317 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\SEGA Mega Drive - Classics\setup.dat|{{p|userprofile\Documents}}\SEGA Genesis Classics\setup.dat}} - - >- - {{Game data/saves|Windows|{{p|userprofile\Documents}}\SEGA Mega Drive - Classics\0025\|{{p|userprofile\Documents}}\SEGA Genesis Classics\0025\}} + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\SEGA Mega Drive Classics\\setup.dat|{{p|userprofile\\Documents}}\\SEGA Genesis Classics\\setup.dat}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\SEGA Mega Drive Classics\\0025\\|{{p|userprofile\\Documents}}\\SEGA Genesis Classics\\0025\\}}" ComPet: pageId: 54329 steam: 532800 @@ -32599,17 +31798,17 @@ ComPressure: pageId: 169556 steam: 1528120 templates: - - '{{Game data/config|Windows|{{P|appdata}}\CharlieBrej\ComPressure\compressure.save}}' - - '{{Game data/saves|Windows|{{P|appdata}}\CharlieBrej\ComPressure\compressure.save}}' + - "{{Game data/config|Windows|{{P|appdata}}\\CharlieBrej\\ComPressure\\compressure.save}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\CharlieBrej\\ComPressure\\compressure.save}}" Coma Simulator 2020 VR: pageId: 153942 steam: 1198120 -'Coma: Mortuary': +"Coma: Mortuary": pageId: 34861 steam: 293320 templates: - - '{{Game data/config|Windows|{{P|game}}\UDKGame\Config\}}' - - '{{Game data/saves|Windows|{{P|game}}\Binaries\Win32\}}' + - "{{Game data/config|Windows|{{P|game}}\\UDKGame\\Config\\}}" + - "{{Game data/saves|Windows|{{P|game}}\\Binaries\\Win32\\}}" Comanche: gog: 1835921084 pageId: 145294 @@ -32622,8 +31821,8 @@ Comanche 4: pageId: 41285 steam: 32750 templates: - - '{{Game data/config|Windows|{{p|game}}\c4.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\c4plyr.sav}}' + - "{{Game data/config|Windows|{{p|game}}\\c4.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\c4plyr.sav}}" Combat: pageId: 7781 Combat Air Patrol 2: @@ -32633,12 +31832,12 @@ Combat Arms: pageId: 121151 steam: 905640 templates: - - '{{Game data/config|Windows|{{p|game}}\Profiles\}}' + - "{{Game data/config|Windows|{{p|game}}\\Profiles\\}}" Combat Cats: pageId: 47465 steam: 350610 templates: - - '{{Game data/saves|Windows|{{p|LOCALAPPDATA}}\Combat_Cats}}' + - "{{Game data/saves|Windows|{{p|LOCALAPPDATA}}\\Combat_Cats}}" Combat Champions: pageId: 186077 steam: 2309440 @@ -32657,24 +31856,24 @@ Combat Helicopter VR - Surgical Strike: Combat Instinct: pageId: 73465 steam: 725970 -'Combat Medic: Special Ops': +"Combat Medic: Special Ops": pageId: 94987 -'Combat Mission 3: Afrika Korps': +"Combat Mission 3: Afrika Korps": gog: 1196739945 pageId: 138118 Combat Mission Cold War: pageId: 173027 steam: 1551160 -'Combat Mission II: Barbarossa to Berlin': +"Combat Mission II: Barbarossa to Berlin": gog: 1615872630 pageId: 138111 -'Combat Mission: Beyond Overlord': +"Combat Mission: Beyond Overlord": gog: 1207658821 pageId: 16304 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/saves|Windows|{{p|game}}\Saved Games}}' -'Combat Mission: Shock Force 2': + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\Saved Games}}" +"Combat Mission: Shock Force 2": pageId: 163045 steam: 1369370 Combat Monsters: @@ -32692,19 +31891,17 @@ Combat Rush: Combat Tested: pageId: 88065 steam: 750010 -'Combat Wings: Battle of Britain': +"Combat Wings: Battle of Britain": pageId: 41221 steam: 34820 Combat master: pageId: 188279 steam: 2281730 -'Combat: Task Force 121': +"Combat: Task Force 121": pageId: 187805 templates: - - >- - {{Game data/config|Windows|{{p|appdata}}\Groove Games\Combat\*.ini|{{p|appdata}}\Groove - Games\Combat\Profiles\{{P|uid}}.ini}} - - '{{Game data/config|Windows|{{p|appdata}}\Groove Games\Combat\Profiles\{{P|uid}}.ini}}' + - "{{Game data/config|Windows|{{p|appdata}}\\Groove Games\\Combat\\*.ini|{{p|appdata}}\\Groove Games\\Combat\\Profiles\\{{P|uid}}.ini}}" + - "{{Game data/config|Windows|{{p|appdata}}\\Groove Games\\Combat\\Profiles\\{{P|uid}}.ini}}" Combate Monero: pageId: 134439 steam: 1052360 @@ -32724,7 +31921,7 @@ Combustion: gog: 1251190785 pageId: 181637 steam: 2145090 -'Come Back: Chapter 1': +"Come Back: Chapter 1": pageId: 141074 steam: 1102510 Come Home: @@ -32737,7 +31934,7 @@ Comedy Night: pageId: 67253 steam: 665360 templates: - - '{{Game data/config|Windows|{{p|HKCU}}\Software\Lighthouse Games Studio\Comedy Night}}' + - "{{Game data/config|Windows|{{p|HKCU}}\\Software\\Lighthouse Games Studio\\Comedy Night}}" Comedy Quest: pageId: 46594 steam: 399520 @@ -32745,8 +31942,8 @@ Comet 64: pageId: 166466 steam: 1397290 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\SOFTWARE\what sorceress this\Comet 64\}}' - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\what sorceress this\Comet 64\comet64slot*.dat}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\SOFTWARE\\what sorceress this\\Comet 64\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\what sorceress this\\Comet 64\\comet64slot*.dat}}" Comet Crasher: pageId: 124398 steam: 862160 @@ -32761,16 +31958,16 @@ CometStriker DX: Comets Wake: pageId: 78326 steam: 763650 -'Comic Book Hero: The Greatest Cape': +"Comic Book Hero: The Greatest Cape": pageId: 45349 steam: 422130 Coming Out on Top: pageId: 66285 steam: 642090 templates: - - '{{Game data/saves|Windows|{{p|appdata}}/RenPy/Coming-Out-On-Top }}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/RenPy/Coming-Out-On-Top/}}' -Comit in Cosmo Knight's Revenge: + - "{{Game data/saves|Windows|{{p|appdata}}/RenPy/Coming-Out-On-Top }}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/RenPy/Coming-Out-On-Top/}}" +"Comit in Cosmo Knight's Revenge": pageId: 124291 steam: 981050 Comit in Krater Returns: @@ -32789,12 +31986,8 @@ Comix Zone (2010): pageId: 30870 steam: 34272 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\SEGA Mega Drive - Classics\setup.dat|{{p|userprofile\Documents}}\SEGA Genesis Classics\setup.dat}} - - >- - {{Game data/saves|Windows|{{p|userprofile\Documents}}\SEGA Mega Drive - Classics\0001\|{{p|userprofile\Documents}}\SEGA Genesis Classics\0001\}} + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\SEGA Mega Drive Classics\\setup.dat|{{p|userprofile\\Documents}}\\SEGA Genesis Classics\\setup.dat}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\SEGA Mega Drive Classics\\0001\\|{{p|userprofile\\Documents}}\\SEGA Genesis Classics\\0001\\}}" ComixPlay: pageId: 44467 steam: 425040 @@ -32804,121 +31997,100 @@ Commanager Tycoon: Command & Conquer: pageId: 76 templates: - - '{{Game data/config|DOS|{{p|game}}\conquer.ini}}' - - '{{Game data/config|Windows|{{p|game}}\*.ini}}' - - '{{Game data/saves|DOS|{{p|game}}\savegame.***}}' - - '{{Game data/saves|Windows|{{p|game}}\savegame.***}}' + - "{{Game data/config|DOS|{{p|game}}\\conquer.ini}}" + - "{{Game data/config|Windows|{{p|game}}\\*.ini}}" + - "{{Game data/saves|DOS|{{p|game}}\\savegame.***}}" + - "{{Game data/saves|Windows|{{p|game}}\\savegame.***}}" Command & Conquer (2013): pageId: 182598 templates: - - >- - {{Game data/config|Windows|{{p|userprofile}}\Documents\Command & Conquer{{Refcheck|user=Mrtnptrs|date=2022-10-17|comment=readme.txt files from build of October 8, 2013 - revealed this information.}}}} - - '{{Game data/saves|Windows|{{p|userprofile}}\Documents\Command & Conquer}}' -'Command & Conquer 3: Tiberium Wars': + - "{{Game data/config|Windows|{{p|userprofile}}\\Documents\\Command & Conquer{{Refcheck|user=Mrtnptrs|date=2022-10-17|comment=readme.txt files from build of October 8, 2013 revealed this information.}}}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Documents\\Command & Conquer}}" +"Command & Conquer 3: Tiberium Wars": pageId: 484 steam: 24790 steamSide: - 24810 templates: - - >- - {{Game data/config|Windows|{{p|appdata}}\{{LocalizedPath|Command & Conquer 3 Tiberium - Wars}}\Profiles\{{p|uid}}\|{{p|appdata}}\{{LocalizedPath|Command & Conquer 3 Kane's Wrath}}\Profiles\{{p|uid}}\}} - - >- - {{Game data/saves|Windows|{{p|userprofile}}\Saved Games\{{LocalizedPath|Command & Conquer 3 Tiberium - Wars}}\|{{p|userprofile}}\Saved Games\{{LocalizedPath|Command & Conquer 3 Kane's Wrath}}\}} -'Command & Conquer 4: Tiberian Twilight': + - "{{Game data/config|Windows|{{p|appdata}}\\{{LocalizedPath|Command & Conquer 3 Tiberium Wars}}\\Profiles\\{{p|uid}}\\|{{p|appdata}}\\{{LocalizedPath|Command & Conquer 3 Kane's Wrath}}\\Profiles\\{{p|uid}}\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Saved Games\\{{LocalizedPath|Command & Conquer 3 Tiberium Wars}}\\|{{p|userprofile}}\\Saved Games\\{{LocalizedPath|Command & Conquer 3 Kane's Wrath}}\\}}" +"Command & Conquer 4: Tiberian Twilight": pageId: 4292 steam: 47700 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Command and Conquer 4\Profiles\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\Saved Games\Command and Conquer 4\}}' + - "{{Game data/config|Windows|{{p|appdata}}\\Command and Conquer 4\\Profiles\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Saved Games\\Command and Conquer 4\\}}" Command & Conquer Remastered Collection: pageId: 138289 steam: 1213210 templates: - - >- - {{Game - data/config|Windows|{{p|userprofile\Documents}}\CnCRemastered\Profile\|{{p|HKCU}}\Software\Petroglyph\CnCRemastered\}} - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\CnCRemastered\Save\}}' -'Command & Conquer: Generals': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\CnCRemastered\\Profile\\|{{p|HKCU}}\\Software\\Petroglyph\\CnCRemastered\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\CnCRemastered\\Save\\}}" +"Command & Conquer: Generals": pageId: 2101 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\Command and Conquer Generals - Data\|{{p|userprofile\Documents}}\Command and Conquer Generals Zero Hour Data\}} - - >- - {{Game data/config|OS - X|{{p|osxhome}}/Library/Containers/com.aspyr.command.conquer.generals.appstore/Data/Documents/Command & Conquer - Generals/User Data/|~/Library/Containers/com.aspyr.command.conquer.generals.appstore/Data/Documents/Command & - Conquer Generals Zero Hour/User Data/}} - - >- - {{Game data/saves|Windows|{{p|userprofile\Documents}}\Command and Conquer Generals - Data\Save\|{{p|userprofile\Documents}}\Command and Conquer Generals Zero Hour Data\Save\}} - - >- - {{Game data/saves |OS X|~/Library/Containers/com.aspyr.command.conquer.generals.appstore/Data/Documents/Command & - Conquer Generals/User - Data/Save/|~/Library/Containers/com.aspyr.command.conquer.generals.appstore/Data/Documents/Command & Conquer - Generals Zero Hour/User Data/Save/}} -'Command & Conquer: Red Alert': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Command and Conquer Generals Data\\|{{p|userprofile\\Documents}}\\Command and Conquer Generals Zero Hour Data\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Containers/com.aspyr.command.conquer.generals.appstore/Data/Documents/Command & Conquer Generals/User Data/|~/Library/Containers/com.aspyr.command.conquer.generals.appstore/Data/Documents/Command & Conquer Generals Zero Hour/User Data/}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Command and Conquer Generals Data\\Save\\|{{p|userprofile\\Documents}}\\Command and Conquer Generals Zero Hour Data\\Save\\}}" + - "{{Game data/saves |OS X|~/Library/Containers/com.aspyr.command.conquer.generals.appstore/Data/Documents/Command & Conquer Generals/User Data/Save/|~/Library/Containers/com.aspyr.command.conquer.generals.appstore/Data/Documents/Command & Conquer Generals Zero Hour/User Data/Save/}}" +"Command & Conquer: Red Alert": pageId: 3188 templates: - - '{{Game data/config|Windows|{{p|game}}\*.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\savegame.***}}' -'Command & Conquer: Red Alert 2': + - "{{Game data/config|Windows|{{p|game}}\\*.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\savegame.***}}" +"Command & Conquer: Red Alert 2": pageId: 459 templates: - - '{{Game data/config|Windows|{{p|game}}\ra2.ini|{{p|game}}\ra2md.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\*.sav}}' -'Command & Conquer: Red Alert 3': + - "{{Game data/config|Windows|{{p|game}}\\ra2.ini|{{p|game}}\\ra2md.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\*.sav}}" +"Command & Conquer: Red Alert 3": pageId: 3140 steam: 17480 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Red Alert 3\Profiles\{{p|uid}}\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\Saved Games\Red Alert 3\}}' -'Command & Conquer: Red Alert 3 - Uprising': + - "{{Game data/config|Windows|{{p|appdata}}\\Red Alert 3\\Profiles\\{{p|uid}}\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Saved Games\\Red Alert 3\\}}" +"Command & Conquer: Red Alert 3 - Uprising": pageId: 13416 steam: 24800 templates: - - '{{Game data/config|Windows|{{P|appdata}}\{{LocalizedPath|Red Alert 3 Uprising}}\Profiles\{{P|uid}}\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\Saved Games\{{LocalizedPath|Red Alert 3 Uprising}}\{{p|uid}}}}' -'Command & Conquer: Renegade': + - "{{Game data/config|Windows|{{P|appdata}}\\{{LocalizedPath|Red Alert 3 Uprising}}\\Profiles\\{{P|uid}}\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Saved Games\\{{LocalizedPath|Red Alert 3 Uprising}}\\{{p|uid}}}}" +"Command & Conquer: Renegade": pageId: 1078 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\SOFTWARE\Westwood\Renegade\}}' - - '{{Game data/saves|Windows|{{p|game}}\Data\save\}}' -'Command & Conquer: Sole Survivor': + - "{{Game data/config|Windows|{{P|hkcu}}\\SOFTWARE\\Westwood\\Renegade\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\Data\\save\\}}" +"Command & Conquer: Sole Survivor": pageId: 174143 templates: - - '{{Game data/config|Windows|{{p|game}}\*.ini}}' -'Command & Conquer: Tiberian Sun': + - "{{Game data/config|Windows|{{p|game}}\\*.ini}}" +"Command & Conquer: Tiberian Sun": pageId: 458 templates: - - '{{Game data/config|Windows|{{p|game}}\sun.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\SAVE****.sav}}' -'Command Adventures: Starship': + - "{{Game data/config|Windows|{{p|game}}\\sun.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\SAVE****.sav}}" +"Command Adventures: Starship": pageId: 184714 Command HQ: gog: 1699056346 pageId: 17108 steam: 329630 templates: - - '{{Game data/config|DOS|{{p|game}}\}}' - - '{{Game data/saves|DOS|{{p|game}}\SAVE}}' + - "{{Game data/config|DOS|{{p|game}}\\}}" + - "{{Game data/saves|DOS|{{p|game}}\\SAVE}}" Command Ops 2: pageId: 57904 steam: 521800 -'Command: Chains of War': +"Command: Chains of War": pageId: 62534 steam: 614130 -'Command: Desert Storm': +"Command: Desert Storm": pageId: 130109 steam: 1036420 -'Command: Modern Air / Naval Operations': +"Command: Modern Air / Naval Operations": pageId: 38208 steam: 321410 -'Command: Modern Operations': +"Command: Modern Operations": pageId: 150539 steam: 1076160 steamSide: @@ -32944,23 +32116,23 @@ Command Ops 2: - 1594140 - 1712070 - 2141010 -'Command: Northern Inferno': +"Command: Northern Inferno": pageId: 45940 steam: 397180 -'Command: Shifting Sands': +"Command: Shifting Sands": pageId: 74853 steam: 718710 -'Command: The Silent Service': +"Command: The Silent Service": pageId: 87163 steam: 785930 -Commander '85: +"Commander '85": pageId: 142067 steam: 1086990 Commander Babes: pageId: 166548 steam: 1083420 templates: - - '{{Game data/saves|Linux|{{p|linuxhome}}/.renpy/CommanderBabes-1557844763/}}' + - "{{Game data/saves|Linux|{{p|linuxhome}}/.renpy/CommanderBabes-1557844763/}}" Commander Blood: pageId: 169067 Commander Cool 2: @@ -32972,55 +32144,55 @@ Commander Keen in Keen Dreams: pageId: 28623 steam: 356200 templates: - - '{{Game data/config|Windows|{{P|appdata}}\Commander Keen\Keen Dreams\}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/Commander Keen/Keen Dreams/}}' - - '{{Game data/saves|Windows|{{P|appdata}}\Commander Keen\Keen Dreams\}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/Commander Keen/Keen Dreams/}}' + - "{{Game data/config|Windows|{{P|appdata}}\\Commander Keen\\Keen Dreams\\}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/Commander Keen/Keen Dreams/}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\Commander Keen\\Keen Dreams\\}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/Commander Keen/Keen Dreams/}}" Commander Keen in Keen Must Die!: gog: 2070676386 pageId: 36954 steam: 9180 templates: - - '{{Game data/config|Windows|{{p|game}}\base3}}' - - '{{Game data/saves|Windows|{{p|game}}\base3\SAVED*.CK3}}' + - "{{Game data/config|Windows|{{p|game}}\\base3}}" + - "{{Game data/saves|Windows|{{p|game}}\\base3\\SAVED*.CK3}}" Commander Keen in Marooned on Mars: gog: 2070676386 pageId: 36950 steam: 9180 templates: - - '{{Game data/config|Windows|{{p|game}}\base1}}' - - '{{Game data/saves|Windows|{{p|game}}\base1\SAVED*.CK1}}' + - "{{Game data/config|Windows|{{p|game}}\\base1}}" + - "{{Game data/saves|Windows|{{p|game}}\\base1\\SAVED*.CK1}}" Commander Keen in Secret of the Oracle: gog: 2070676386 pageId: 22659 steam: 9180 templates: - - '{{Game data/config|Windows|{{p|game}}\base4}}' - - '{{Game data/saves|Windows|{{p|game}}\base4\SAVEGAM*.CK4}}' + - "{{Game data/config|Windows|{{p|game}}\\base4}}" + - "{{Game data/saves|Windows|{{p|game}}\\base4\\SAVEGAM*.CK4}}" Commander Keen in The Armageddon Machine: gog: 2070676386 pageId: 38617 steam: 9180 templates: - - '{{Game data/config|Windows|{{p|game}}\base5}}' - - '{{Game data/saves|Windows|{{p|game}}\base5\SAVEGAM*.CK5}}' + - "{{Game data/config|Windows|{{p|game}}\\base5}}" + - "{{Game data/saves|Windows|{{p|game}}\\base5\\SAVEGAM*.CK5}}" Commander Keen in The Earth Explodes: gog: 2070676386 pageId: 36952 steam: 9180 templates: - - '{{Game data/config|Windows|{{p|game}}\base2}}' - - '{{Game data/saves|Windows|{{p|game}}\base2\SAVED*.CK2}}' -'Commander Keen: Keen Dreams Definitive Edition': + - "{{Game data/config|Windows|{{p|game}}\\base2}}" + - "{{Game data/saves|Windows|{{p|game}}\\base2\\SAVED*.CK2}}" +"Commander Keen: Keen Dreams Definitive Edition": pageId: 189547 steam: 2496830 -'Commander: Conquest of the Americas': +"Commander: Conquest of the Americas": pageId: 23281 steam: 49300 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Commander\Config\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Commander\SaveGame\}}' -'Commander: The Great War': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Commander\\Config\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Commander\\SaveGame\\}}" +"Commander: The Great War": pageId: 49845 steam: 312350 Commanders of Valor: @@ -33031,104 +32203,98 @@ Commando: Commando Dog: pageId: 139286 steam: 1103650 -'Commando Fodder: War Dogs': +"Commando Fodder: War Dogs": pageId: 128473 steam: 1020650 Commando Jack: pageId: 23743 steam: 299260 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Colossal Games\Com. Jack\}}' - - '{{Game data/saves|Windows|{{p|hkcu}}\Software\Colossal Games\Com. Jack\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Colossal Games\\Com. Jack\\}}" + - "{{Game data/saves|Windows|{{p|hkcu}}\\Software\\Colossal Games\\Com. Jack\\}}" Commandos 2 HD Remaster: gog: 1532116323 pageId: 138529 steam: 1100410 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Kalypso Media Group GmbH\Commandos 2 HD Remaster}}' - - '{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/Kalypso Media Group GmbH/Commandos 2 HD Remaster/prefs}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Kalypso Media Group GmbH\Commandos 2 HD Remaster\}}' - - >- - {{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/Kalypso Media Group GmbH/Commandos 2 HD - Remaster/*.SAV|{{P|xdgconfighome}}/unity3d/Kalypso Media Group GmbH/Commandos 2 HD Remaster/PERFILES.DAT}} -'Commandos 2: Men of Courage': + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Kalypso Media Group GmbH\\Commandos 2 HD Remaster}}" + - "{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/Kalypso Media Group GmbH/Commandos 2 HD Remaster/prefs}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Kalypso Media Group GmbH\\Commandos 2 HD Remaster\\}}" + - "{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/Kalypso Media Group GmbH/Commandos 2 HD Remaster/*.SAV|{{P|xdgconfighome}}/unity3d/Kalypso Media Group GmbH/Commandos 2 HD Remaster/PERFILES.DAT}}" +"Commandos 2: Men of Courage": gog: 1207662213 gogSide: - 1207658803 pageId: 7591 steam: 6830 templates: - - >- - {{Game data/config|Steam|{{P|userprofile\Documents}}\Commandos - II\OUTPUT\COMM2.CFG|{{P|game}}\Legacy\OUTPUT\COMM2.CFG}} - - '{{Game data/config|Windows|{{P|game}}\OUTPUT\COMM2.CFG}}' - - '{{Game data/saves|Steam|{{P|userprofile\Documents}}\Commandos II\OUTPUT\|{{P|game}}\Legacy\OUTPUT\}}' - - '{{Game data/saves|Windows|{{P|game}}\OUTPUT\}}' + - "{{Game data/config|Steam|{{P|userprofile\\Documents}}\\Commandos II\\OUTPUT\\COMM2.CFG|{{P|game}}\\Legacy\\OUTPUT\\COMM2.CFG}}" + - "{{Game data/config|Windows|{{P|game}}\\OUTPUT\\COMM2.CFG}}" + - "{{Game data/saves|Steam|{{P|userprofile\\Documents}}\\Commandos II\\OUTPUT\\|{{P|game}}\\Legacy\\OUTPUT\\}}" + - "{{Game data/saves|Windows|{{P|game}}\\OUTPUT\\}}" Commandos 3 HD Remaster: pageId: 178277 steam: 1469170 -'Commandos 3: Destination Berlin': +"Commandos 3: Destination Berlin": gog: 1207662223 gogSide: - 1207658803 pageId: 14089 steam: 6840 templates: - - '{{Game data/config|Windows|{{P|game}}\Output\}}' - - '{{Game data/saves|Windows|{{P|game}}\Output\}}' -'Commandos: Behind Enemy Lines': + - "{{Game data/config|Windows|{{P|game}}\\Output\\}}" + - "{{Game data/saves|Windows|{{P|game}}\\Output\\}}" +"Commandos: Behind Enemy Lines": gog: 1207662193 gogSide: - 1207658800 pageId: 561 steam: 6800 templates: - - '{{Game data/config|Windows|{{P|game}}\OUTPUT\|{{p|userprofile\documents}}\Pyro Studios\Commandos\OUTPUT}}' - - '{{Game data/saves|Windows|{{P|game}}\OUTPUT\|{{p|userprofile\documents}}\Pyro Studios\Commandos\OUTPUT}}' -'Commandos: Beyond the Call of Duty': + - "{{Game data/config|Windows|{{P|game}}\\OUTPUT\\|{{p|userprofile\\documents}}\\Pyro Studios\\Commandos\\OUTPUT}}" + - "{{Game data/saves|Windows|{{P|game}}\\OUTPUT\\|{{p|userprofile\\documents}}\\Pyro Studios\\Commandos\\OUTPUT}}" +"Commandos: Beyond the Call of Duty": gog: 1207662203 gogSide: - 1207658800 pageId: 14062 steam: 6810 templates: - - '{{Game data/config|Windows|{{p|userprofile\documents}}\Pyro Studios\CommandosMissionPack\OUTPUT}}' - - >- - {{Game data/saves|Windows|{{p|game}}\OUTPUT\|{{p|userprofile\documents}}\Pyro - Studios\CommandosMissionPack\OUTPUT}} -'Commandos: Origins': + - "{{Game data/config|Windows|{{p|userprofile\\documents}}\\Pyro Studios\\CommandosMissionPack\\OUTPUT}}" + - "{{Game data/saves|Windows|{{p|game}}\\OUTPUT\\|{{p|userprofile\\documents}}\\Pyro Studios\\CommandosMissionPack\\OUTPUT}}" +"Commandos: Origins": pageId: 190225 steam: 1479730 -'Commandos: Strike Force': +"Commandos: Strike Force": pageId: 14092 steam: 6820 templates: - - '{{Game data/config|Windows|{{p|game}}\Config}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\CSF Data\Games}}' -'Commands & Colors: Ancients': + - "{{Game data/config|Windows|{{p|game}}\\Config}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\CSF Data\\Games}}" +"Commands & Colors: Ancients": pageId: 104875 steam: 699870 -'Commands & Colors: The Great War': +"Commands & Colors: The Great War": pageId: 56645 steam: 449460 Commercium: pageId: 53101 steam: 540550 -'Committed: Mystery at Shady Pines': +"Committed: Mystery at Shady Pines": pageId: 81611 renamedFrom: - - 'Committed: Mystery at Shady Pines - Premium Edition' + - "Committed: Mystery at Shady Pines - Premium Edition" steam: 772210 Common Hanzi Quiz: pageId: 94649 steam: 860030 -Common'hood: +"Common'hood": pageId: 122874 steam: 962090 -'Community College Hero: Knowledge Is Power': +"Community College Hero: Knowledge Is Power": pageId: 92901 steam: 847290 -'Community College Hero: Trial by Fire': +"Community College Hero: Trial by Fire": pageId: 37717 steam: 423120 Community Garden: @@ -33151,31 +32317,25 @@ Company of Heroes: pageId: 468 steam: 4560 steamSide: + - 9340 + - 20540 - 228200 - 228221 - - 9340 - - 228223 - - 20540 - 228222 + - 228223 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Company of - Heroes\*.ini|{{p|userprofile\Documents}}\My Games\Company of Heroes\*.lua|{{p|userprofile\Documents}}\My - Games\Company of Heroes\*.txt}} - - >- - {{Game data/config|Steam|{{p|userprofile\Documents}}\My Games\Company of Heroes - Relaunch\*.ini|{{p|userprofile\Documents}}\My Games\Company of Heroes - Relaunch\*.lua|{{p|userprofile\Documents}}\My Games\Company of Heroes Relaunch\*.txt}} - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Company of Heroes\Savegames\}}' - - '{{Game data/saves|Steam|{{p|userprofile\Documents}}\My Games\Company of Heroes Relaunch\Savegames\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Company of Heroes\\*.ini|{{p|userprofile\\Documents}}\\My Games\\Company of Heroes\\*.lua|{{p|userprofile\\Documents}}\\My Games\\Company of Heroes\\*.txt}}" + - "{{Game data/config|Steam|{{p|userprofile\\Documents}}\\My Games\\Company of Heroes Relaunch\\*.ini|{{p|userprofile\\Documents}}\\My Games\\Company of Heroes Relaunch\\*.lua|{{p|userprofile\\Documents}}\\My Games\\Company of Heroes Relaunch\\*.txt}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Company of Heroes\\Savegames\\}}" + - "{{Game data/saves|Steam|{{p|userprofile\\Documents}}\\My Games\\Company of Heroes Relaunch\\Savegames\\}}" Company of Heroes 2: pageId: 6265 steam: 231430 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Company of Heroes 2\}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/feral-interactive/CompanyOfHeroes2/}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Company of Heroes 2\Savegames\}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/feral-interactive/CompanyOfHeroes2/}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Company of Heroes 2\\}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/feral-interactive/CompanyOfHeroes2/}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Company of Heroes 2\\Savegames\\}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/feral-interactive/CompanyOfHeroes2/}}" Company of Heroes 2 - Ardennes Assault: pageId: 27807 steam: 317850 @@ -33191,19 +32351,15 @@ Company of Heroes 3: steamSide: - 741534 templates: - - |- - {{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Company of Heroes 3\configuration_system.lua| - {{p|userprofile\Documents}}\My Games\Company of Heroes 3\Savegames\users\{{P|uid}}\configuration_user.lua}} - - >- - {{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Company of Heroes - 2\Savegames\users\{{P|uid}}\savegames}} -'Company of Heroes: Eastern Front': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Company of Heroes 3\\configuration_system.lua|\n{{p|userprofile\\Documents}}\\My Games\\Company of Heroes 3\\Savegames\\users\\{{P|uid}}\\configuration_user.lua}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Company of Heroes 2\\Savegames\\users\\{{P|uid}}\\savegames}}" +"Company of Heroes: Eastern Front": pageId: 61842 steam: 317600 -'Company of Heroes: Opposing Fronts': +"Company of Heroes: Opposing Fronts": pageId: 5079 steam: 9340 -'Company of Heroes: Tales of Valor': +"Company of Heroes: Tales of Valor": pageId: 5082 steam: 20540 Complex: @@ -33213,25 +32369,25 @@ CompliKATed: pageId: 72791 steam: 646460 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\Lite Microsystems\CompliKATed}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Lite Microsystems/CompliKATed}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Lite Microsystems/CompliKATed}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Lite Microsystems\CompliKATed\saves}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Lite Microsystems/CompliKATed/saves}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Lite Microsystems/CompliKATed/saves}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Lite Microsystems\\CompliKATed}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Lite Microsystems/CompliKATed}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Lite Microsystems/CompliKATed}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Lite Microsystems\\CompliKATed\\saves}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Lite Microsystems/CompliKATed/saves}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Lite Microsystems/CompliKATed/saves}}" Compound: pageId: 60808 steam: 615120 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\COMPOUND\config_2.cfg}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\COMPOUND\compound.sav}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\COMPOUND\\config_2.cfg}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\COMPOUND\\compound.sav}}" Computer Mechanic Simulator 2019: pageId: 127231 steam: 1015010 Computer Tycoon: pageId: 72847 steam: 686680 -'Comrades and Barons: Solitaire of Bloody 1919': +"Comrades and Barons: Solitaire of Bloody 1919": pageId: 81588 steam: 787710 Con Amore: @@ -33243,26 +32399,26 @@ ConNEcT01: Conan: pageId: 61279 templates: - - '{{Game data/saves|Windows|{{p|game}}\ConanSave_*}}' + - "{{Game data/saves|Windows|{{p|game}}\\ConanSave_*}}" Conan Chop Chop: pageId: 138435 steam: 1061880 templates: - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Funcom Oslo AS\Conan Chop Chop\Saves\{{P|uid}}\}}' + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Funcom Oslo AS\\Conan Chop Chop\\Saves\\{{P|uid}}\\}}" Conan Exiles: pageId: 33428 steam: 440900 templates: - - '{{Game data/config|Windows|{{p|game}}\ConanSandbox\Saved\Config\WindowsNoEditor\|{{p|game}}\ConanSandbox\Config\}}' - - '{{Game data/saves|Windows|{{p|game}}\ConanSandbox\Saved\}}' + - "{{Game data/config|Windows|{{p|game}}\\ConanSandbox\\Saved\\Config\\WindowsNoEditor\\|{{p|game}}\\ConanSandbox\\Config\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\ConanSandbox\\Saved\\}}" Conan Unconquered: pageId: 126319 steam: 989690 Conan the Cimmerian: pageId: 54254 templates: - - '{{Game data/config|DOS|{{p|game}}\GAME.CFG}}' - - '{{Game data/saves|DOS|{{p|game}}\SAVE.DAT}}' + - "{{Game data/config|DOS|{{p|game}}\\GAME.CFG}}" + - "{{Game data/saves|DOS|{{p|game}}\\SAVE.DAT}}" Conan the Mighty Pig: pageId: 42537 steam: 487700 @@ -33271,13 +32427,11 @@ Conarium: pageId: 51503 steam: 313780 templates: - - >- - {{Game - data/config|Windows|{{p|localappdata}}\Conarium\Saved\SaveGames\options*.sav|{{p|localappdata}}\Conarium\Saved\Config\WindowsNoEditor\}} - - '{{Game data/config|Linux|{{P|linuxhome}}/.config/Epic/Conarium/Saved/SaveGames/options*.sav}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Conarium\Saved\SaveGames\}}' - - '{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/Epic/Conarium/Saved/SaveGames/}}' - - '{{Game data/saves|Linux|{{P|linuxhome}}/.config/Epic/Conarium/Saved/SaveGames/}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Conarium\\Saved\\SaveGames\\options*.sav|{{p|localappdata}}\\Conarium\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/config|Linux|{{P|linuxhome}}/.config/Epic/Conarium/Saved/SaveGames/options*.sav}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Conarium\\Saved\\SaveGames\\}}" + - "{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/Epic/Conarium/Saved/SaveGames/}}" + - "{{Game data/saves|Linux|{{P|linuxhome}}/.config/Epic/Conarium/Saved/SaveGames/}}" ConcPerfect 2017: pageId: 65876 steam: 651550 @@ -33290,24 +32444,24 @@ Concept 20: Concept Destruction: pageId: 150830 steam: 1153540 -'Conception II: Children of the Seven Stars': +"Conception II: Children of the Seven Stars": pageId: 36007 steam: 458730 templates: - - '{{Game data/config|Steam|{{p|game}}/config.json}}' -'Conception PLUS: Maidens of the Twelve Stars': + - "{{Game data/config|Steam|{{p|game}}/config.json}}" +"Conception PLUS: Maidens of the Twelve Stars": pageId: 140277 steam: 906510 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\ConceptionPlus}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\ConceptionPlus\Saves}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\ConceptionPlus}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\ConceptionPlus\\Saves}}" Conclave: pageId: 56739 steam: 333990 Concluse: pageId: 91200 steam: 826230 -'Concluse 2: The Drifting Prefecture': +"Concluse 2: The Drifting Prefecture": pageId: 132816 steam: 1052230 Conclusion: @@ -33315,7 +32469,7 @@ Conclusion: steam: 497350 Concord: pageId: 187423 -'Concordia: Digital Edition': +"Concordia: Digital Edition": gog: 1503947102 pageId: 171812 steam: 1450330 @@ -33323,9 +32477,9 @@ Concrete Jungle: pageId: 37711 steam: 400160 templates: - - '{{Game data/config|Windows|{{p|AppData}}\ConcreteJungle\ConcreteJungleSave.ini}}' - - '{{Game data/saves|Windows|{{p|AppData}}\ConcreteJungle\*.arr}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/ConcreteJungle}}' + - "{{Game data/config|Windows|{{p|AppData}}\\ConcreteJungle\\ConcreteJungleSave.ini}}" + - "{{Game data/saves|Windows|{{p|AppData}}\\ConcreteJungle\\*.arr}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/ConcreteJungle}}" Concrete Sky: pageId: 63042 steam: 611340 @@ -33339,20 +32493,16 @@ Concursion: pageId: 18230 steam: 303340 templates: - - >- - {{Game - data/config|Windows|{{p|userprofile\Documents}}\ConcursionSaves\Global.gmu|{{p|userprofile\Documents}}\ConcursionSaves\Global.bmu}} - - '{{Game data/config|OS X|{{p|osxhome}}/ConcursionSaves/Global.gmu|~/ConcursionSaves/Global.bmu}}' - - >- - {{Game - data/saves|Windows|{{p|userprofile\Documents}}\ConcursionSaves\Profile*.gmu|{{p|userprofile\Documents}}\ConcursionSaves\Profile*.bmu}} - - '{{Game data/saves|OS X|{{p|osxhome}}/ConcursionSaves/Profile*.gmu|~/ConcursionSaves/Profile*.bmu}}' -'Condemned: Criminal Origins': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\ConcursionSaves\\Global.gmu|{{p|userprofile\\Documents}}\\ConcursionSaves\\Global.bmu}}" + - "{{Game data/config|OS X|{{p|osxhome}}/ConcursionSaves/Global.gmu|~/ConcursionSaves/Global.bmu}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\ConcursionSaves\\Profile*.gmu|{{p|userprofile\\Documents}}\\ConcursionSaves\\Profile*.bmu}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/ConcursionSaves/Profile*.gmu|~/ConcursionSaves/Profile*.bmu}}" +"Condemned: Criminal Origins": pageId: 3850 steam: 4720 templates: - - '{{Game data/config|Windows|{{p|public}}\Documents\Monolith Productions\Condemned\settings.cfg}}' - - '{{Game data/saves|Windows|{{p|public}}\Documents\Monolith Productions\Condemned\Save\}}' + - "{{Game data/config|Windows|{{p|public}}\\Documents\\Monolith Productions\\Condemned\\settings.cfg}}" + - "{{Game data/saves|Windows|{{p|public}}\\Documents\\Monolith Productions\\Condemned\\Save\\}}" Condition Red: pageId: 121969 steam: 974860 @@ -33360,7 +32510,7 @@ Conduct Deluxe!: pageId: 77590 steam: 737870 templates: - - '{{Game data/saves|Windows|{{p|steam}}\userdata\{{p|uid}}\737870\remote}}' + - "{{Game data/saves|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\737870\\remote}}" Conductor: pageId: 61333 steam: 584930 @@ -33371,7 +32521,7 @@ Confess My Love: pageId: 62931 steam: 637850 templates: - - '{{Game data/saves|Windows|{{p|game}}\System\System.rvdata2}}' + - "{{Game data/saves|Windows|{{p|game}}\\System\\System.rvdata2}}" Config Wars: pageId: 125992 steam: 961540 @@ -33381,51 +32531,46 @@ Conflicks - Revolutionary Space Battles: Conflict Zone: pageId: 17244 templates: - - '{{Game data/saves|Windows|{{p|game}}\DATA\SAVE}}' -'Conflict of Heroes: Awakening the Bear': + - "{{Game data/saves|Windows|{{p|game}}\\DATA\\SAVE}}" +"Conflict of Heroes: Awakening the Bear": pageId: 52163 steam: 510320 -'Conflict of Nations: Modern War': +"Conflict of Nations: Modern War": pageId: 81936 steam: 784950 -'Conflict: Denied Ops': +"Conflict: Denied Ops": pageId: 26313 steam: 8100 templates: - - '{{Game data/config|Windows|{{p|HKCU}}\Software\Eidos\CDO\Device Settings}}' -'Conflict: Desert Storm': + - "{{Game data/config|Windows|{{p|HKCU}}\\Software\\Eidos\\CDO\\Device Settings}}" +"Conflict: Desert Storm": gog: 1207658998 pageId: 21194 steam: 211780 templates: - - '{{Game data/config|Windows|{{p|HKLM}}\SOFTWARE\{{p|wow64}}\Pivotal Games\Conflict Desert Storm\Device Settings}}' - - |- - {{Game data/saves|Windows|{{p|userprofile}}\Documents\SCi\DesertStorm {{note|Retail version}}
- {{p|game}}\ - }} -'Conflict: Desert Storm II': + - "{{Game data/config|Windows|{{p|HKLM}}\\SOFTWARE\\{{p|wow64}}\\Pivotal Games\\Conflict Desert Storm\\Device Settings}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Documents\\SCi\\DesertStorm {{note|Retail version}}
\n{{p|game}}\\\n}}" +"Conflict: Desert Storm II": pageId: 26306 templates: - - '{{Game data/config|Windows|{{p|HKLM}}\SOFTWARE\SCi Games\CDS II}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\Documents\SCi\CDSII}}' -'Conflict: Europe': + - "{{Game data/config|Windows|{{p|HKLM}}\\SOFTWARE\\SCi Games\\CDS II}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Documents\\SCi\\CDSII}}" +"Conflict: Europe": gog: 1973799922 pageId: 183881 steam: 1244830 -'Conflict: Global Terror': +"Conflict: Global Terror": pageId: 26312 templates: - - '{{Game data/config|Windows|{{p|HKLM}}\SOFTWARE\Pivotal\Conflict Global\Device Settings}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Eidos\ConflictGlobalStorm\}}' -'Conflict: Middle East Political Simulator (2009)': + - "{{Game data/config|Windows|{{p|HKLM}}\\SOFTWARE\\Pivotal\\Conflict Global\\Device Settings}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Eidos\\ConflictGlobalStorm\\}}" +"Conflict: Middle East Political Simulator (2009)": pageId: 91742 -'Conflict: Vietnam': +"Conflict: Vietnam": pageId: 26308 templates: - - >- - {{Game data/config|Windows|{{p|HKLM}}\SOFTWARE\SCi Games\Conflict - Vietnam|{{p|userprofile\Documents}}\SCi\ConflictVietnam\}} - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\SCi\ConflictVietnam\*.sav}}' + - "{{Game data/config|Windows|{{p|HKLM}}\\SOFTWARE\\SCi Games\\Conflict Vietnam|{{p|userprofile\\Documents}}\\SCi\\ConflictVietnam\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\SCi\\ConflictVietnam\\*.sav}}" ConflictCraft: pageId: 53688 steam: 495570 @@ -33433,8 +32578,8 @@ Confrontation: pageId: 2004 steam: 204560 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Confrontation\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Confrontation\Profiles\Default\Saves\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Confrontation\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Confrontation\\Profiles\\Default\\Saves\\}}" Conga Master: gog: 1801442545 pageId: 40028 @@ -33444,10 +32589,8 @@ Conglomerate 451: pageId: 132387 steam: 1022710 templates: - - >- - {{Game data/config|Windows|{{P|userprofile}}\AppData\LocalLow\RuneHeads\Conglomerate - 451\setting.cfg|{{P|hkcu}}\Software\RuneHeads\Conglomerate 451\}} - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\RuneHeads\Conglomerate 451\mng_*.sav}}' + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\RuneHeads\\Conglomerate 451\\setting.cfg|{{P|hkcu}}\\Software\\RuneHeads\\Conglomerate 451\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\RuneHeads\\Conglomerate 451\\mng_*.sav}}" Congo: pageId: 44054 steam: 317530 @@ -33468,7 +32611,7 @@ Conjuntalia: Conjure Strike: pageId: 110314 steam: 924960 -Conjuror's Eye: +"Conjuror's Eye": pageId: 87421 steam: 805320 Conjury of Nature: @@ -33480,23 +32623,23 @@ Connect the Dots: Connected Hearts - Visual novel: pageId: 67237 steam: 603140 -'Connectionism:Pain Control': +"Connectionism:Pain Control": pageId: 114412 steam: 941350 Conquer: pageId: 81079 steam: 779240 -Conqueror's Blade: +"Conqueror's Blade": pageId: 105479 steam: 905370 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\Conqueror''s Blade\}}' -'Conqueror: A.D. 1086': + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\Conqueror's Blade\\}}" +"Conqueror: A.D. 1086": gog: 2110944433 pageId: 62136 templates: - - '{{Game data/config|DOS|{{p|game}}\CONQUER.INI|{{p|game}}\DEFAULT.DAT}}' - - '{{Game data/saves|DOS|{{p|game}}\SAVEGAME\}}' + - "{{Game data/config|DOS|{{p|game}}\\CONQUER.INI|{{p|game}}\\DEFAULT.DAT}}" + - "{{Game data/saves|DOS|{{p|game}}\\SAVEGAME\\}}" Conquest of Champions: pageId: 50383 steam: 266450 @@ -33504,12 +32647,12 @@ Conquest of Elysium 3: pageId: 40699 steam: 211900 templates: - - '{{Game data/saves|Windows|{{p|appdata}}\coe3\saves}}' + - "{{Game data/saves|Windows|{{p|appdata}}\\coe3\\saves}}" Conquest of Elysium 4: pageId: 37736 steam: 403950 templates: - - '{{Game data/saves|Windows|{{p|appdata}}\coe4\saves\}}' + - "{{Game data/saves|Windows|{{p|appdata}}\\coe4\\saves\\}}" Conquest of Gerazania: pageId: 72395 steam: 710650 @@ -33518,16 +32661,16 @@ Conquest of the New World: pageId: 21633 steam: 674190 templates: - - '{{Game data/config|GOG.com|{{P|game}}\cloud_saves\CONQUEST.CFG}}' - - '{{Game data/saves|GOG.com|{{P|game}}\cloud_saves\}}' -'Conquest: Frontier Wars': + - "{{Game data/config|GOG.com|{{P|game}}\\cloud_saves\\CONQUEST.CFG}}" + - "{{Game data/saves|GOG.com|{{P|game}}\\cloud_saves\\}}" +"Conquest: Frontier Wars": gog: 1207659159 pageId: 21680 steam: 578670 -'Conquests of Camelot: The Search for the Grail': +"Conquests of Camelot: The Search for the Grail": gog: 1516146567 pageId: 131681 -'Conquests of the Longbow: The Legend of Robin Hood': +"Conquests of the Longbow: The Legend of Robin Hood": gog: 1344050778 pageId: 131689 Conran - The dinky Raccoon: @@ -33545,40 +32688,36 @@ Consortium: pageId: 14127 steam: 264240 templates: - - '{{Game data/config|Windows|{{P|game}}\consortium\cfg}}' - - '{{Game data/saves|Windows|{{P|game}}\consortium\SAVE}}' + - "{{Game data/config|Windows|{{P|game}}\\consortium\\cfg}}" + - "{{Game data/saves|Windows|{{P|game}}\\consortium\\SAVE}}" Consortium Remastered: pageId: 186813 steam: 2380550 templates: - - >- - {{Game - data/config|Windows|{{p|localappdata}}\Consortium\Saved\Config\WindowsNoEditor\|{{p|localappdata}}\idgi\Consortium\CTUser\{{P|uid}}\}} - - '{{Game data/saves|Windows|{{p|localappdata}}\idgi\Consortium\SaveGames\{{P|uid}}\}}' -'Consortium: The Tower': + - "{{Game data/config|Windows|{{p|localappdata}}\\Consortium\\Saved\\Config\\WindowsNoEditor\\|{{p|localappdata}}\\idgi\\Consortium\\CTUser\\{{P|uid}}\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\idgi\\Consortium\\SaveGames\\{{P|uid}}\\}}" +"Consortium: The Tower": pageId: 71866 steam: 626250 templates: - - >- - {{Game - data/config|Windows|{{p|game}}\thetower\Saved\Config\WindowsNoEditor|{{p|game}}\thetower\Saved\csav\inputsettings.ini}} - - '{{Game data/saves|Windows|{{p|game}}\thetower\Saved\csav}}' + - "{{Game data/config|Windows|{{p|game}}\\thetower\\Saved\\Config\\WindowsNoEditor|{{p|game}}\\thetower\\Saved\\csav\\inputsettings.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\thetower\\Saved\\csav}}" Conspiracy - KGB: pageId: 169069 templates: - - '{{Game data/saves|DOS|{{p|game}}}}' - - '{{Game data/saves|Windows|{{p|game}}}}' + - "{{Game data/saves|DOS|{{p|game}}}}" + - "{{Game data/saves|Windows|{{p|game}}}}" Constant C: pageId: 50582 steam: 251510 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\ConstantC_Saves\gameSetting.txt}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\ConstantC_Saves\{{p|uid}}\slot*\Save.lua}}' + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\ConstantC_Saves\\gameSetting.txt}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\ConstantC_Saves\\{{p|uid}}\\slot*\\Save.lua}}" Constantine: pageId: 62425 templates: - - '{{Game data/config|Windows|{{p|HKCU}}\Software\SCi Games\Constantine_3.23\}}' - - '{{Game data/saves|Windows|{{p|game}}\*.dat|{{p|game}}\*.dpt}}' + - "{{Game data/config|Windows|{{p|HKCU}}\\Software\\SCi Games\\Constantine_3.23\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\*.dat|{{p|game}}\\*.dpt}}" Constellatio: pageId: 110804 steam: 934630 @@ -33594,14 +32733,14 @@ Constricting Cubes: Construct PRO: pageId: 114440 steam: 941800 -'Construct: Embers of Life': +"Construct: Embers of Life": pageId: 67179 steam: 362060 -'Construct: Escape the System': +"Construct: Escape the System": pageId: 54263 steam: 497080 templates: - - '{{Game data/saves|Windows|{{P|hkcu}}\SOFTWARE\Oliver Boyce\CONSTRUCT\}}' + - "{{Game data/saves|Windows|{{P|hkcu}}\\SOFTWARE\\Oliver Boyce\\CONSTRUCT\\}}" Construction Charlie: pageId: 110022 steam: 920500 @@ -33621,10 +32760,8 @@ Construction Simulator 2015: pageId: 49305 steam: 289950 templates: - - >- - {{Game data/config|Windows|{{p|game}}\ConSim2015_Data\config.ini|{{p|userprofile}}\Saved - Games\ConstructionSimulator2015\Profiles\0\*.xml}} - - '{{Game data/saves|Windows|{{p|userprofile}}\Saved Games\ConstructionSimulator2015\Profiles\0\}}' + - "{{Game data/config|Windows|{{p|game}}\\ConSim2015_Data\\config.ini|{{p|userprofile}}\\Saved Games\\ConstructionSimulator2015\\Profiles\\0\\*.xml}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Saved Games\\ConstructionSimulator2015\\Profiles\\0\\}}" Construction Truck Simulator: pageId: 104623 steam: 900020 @@ -33636,44 +32773,44 @@ Constructor: pageId: 16066 steam: 599600 templates: - - '{{Game data/config|DOS|{{p|game}}\SETTINGS}}' - - '{{Game data/saves|DOS|{{p|game}}\SAVEGAME}}' + - "{{Game data/config|DOS|{{p|game}}\\SETTINGS}}" + - "{{Game data/saves|DOS|{{p|game}}\\SAVEGAME}}" Constructor HD: pageId: 61236 steam: 579020 steamSide: - - 619760 - 616150 - 616901 + - 619760 templates: - - '{{Game data/saves|Windows|{{p|appdata}}\System 3\Constructor\}}' + - "{{Game data/saves|Windows|{{p|appdata}}\\System 3\\Constructor\\}}" Constructor Plus: pageId: 136589 steam: 898800 Consumed Awakening: pageId: 154428 steam: 1187250 -'Consummate: Missing World': +"Consummate: Missing World": pageId: 65981 steam: 630060 -'Contact Draw: Bowling': +"Contact Draw: Bowling": pageId: 98584 steam: 877390 -'Contact Draw: Football': +"Contact Draw: Football": pageId: 96315 steam: 860220 -'Contact: Last Defence': +"Contact: Last Defence": pageId: 127979 renamedFrom: - - 'Contact : Last Defence' + - "Contact : Last Defence" steam: 944960 Contagion: pageId: 11618 steam: 238430 templates: - - '{{Game data/config|Windows|{{p|game}}\contagion\cfg\}}' - - '{{Game data/config|Steam|{{p|steam}}\userdata\{{p|uid}}\238430\remote\cfg\config.cfg}}' -'Contagion VR: Outbreak': + - "{{Game data/config|Windows|{{p|game}}\\contagion\\cfg\\}}" + - "{{Game data/config|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\238430\\remote\\cfg\\config.cfg}}" +"Contagion VR: Outbreak": pageId: 80691 steam: 676840 Containment: @@ -33689,16 +32826,14 @@ Containment Initiative: pageId: 41517 steam: 527700 templates: - - >- - {{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Containment Initiative\Containment - Initiative\playerInfo.dat}} -'Containment Initiative: PC Standalone': + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Containment Initiative\\Containment Initiative\\playerInfo.dat}}" +"Containment Initiative: PC Standalone": pageId: 92165 steam: 792680 Containment Protocol: pageId: 46633 steam: 346300 -'Containment: The Zombie Puzzler': +"Containment: The Zombie Puzzler": pageId: 1715 steam: 203560 Contasion 2: @@ -33720,10 +32855,10 @@ Continue?9876543210: pageId: 14217 steam: 263340 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Jason Oda\continue}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Preferences/unity.Jason Oda.continue.plist}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Jason Oda/continue/}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Jason Oda/continue/}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Jason Oda\\continue}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Preferences/unity.Jason Oda.continue.plist}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Jason Oda/continue/}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Jason Oda/continue/}}" Continuum: pageId: 136605 steam: 1059840 @@ -33736,37 +32871,37 @@ Contra Anniversary Collection: gog: 2028570892 pageId: 137736 steam: 1018020 -'Contra: Rogue Corps': +"Contra: Rogue Corps": pageId: 139813 steam: 1020540 templates: - - '{{Game data/config|Windows|{{P|userprofile}}\Documents\CONTRA ROGUE CORPS\}}' - - '{{Game data/saves|Windows|{{P|steam}}\userdata\{{p|uid}}\1020540\remote\}}' + - "{{Game data/config|Windows|{{P|userprofile}}\\Documents\\CONTRA ROGUE CORPS\\}}" + - "{{Game data/saves|Windows|{{P|steam}}\\userdata\\{{p|uid}}\\1020540\\remote\\}}" Contraband: pageId: 169283 Contraband Police: pageId: 77395 steam: 756800 templates: - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\CrazyRocks\ContrabandPolice\saves}}' + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\CrazyRocks\\ContrabandPolice\\saves}}" Contract: pageId: 45093 steam: 409170 Contract J.A.C.K.: pageId: 4537 templates: - - '{{Game data/config|Windows|{{p|game}}\*.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\Save\}}' + - "{{Game data/config|Windows|{{p|game}}\\*.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\Save\\}}" Contract Wars Client: pageId: 77674 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Absolutsoft\Contract Wars}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Absolutsoft\\Contract Wars}}" Contract With the Devil: pageId: 45326 steam: 409600 templates: - - '{{Game data/config|Windows|{{P|appdata}}\Az-Art\Contract with the Devil\{{LocalizedPath|en}}\config.dat}}' - - '{{Game data/saves|Windows|{{P|appdata}}\Az-Art\Contract with the Devil\{{LocalizedPath|en}}\users.dat}}' + - "{{Game data/config|Windows|{{P|appdata}}\\Az-Art\\Contract with the Devil\\{{LocalizedPath|en}}\\config.dat}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\Az-Art\\Contract with the Devil\\{{LocalizedPath|en}}\\users.dat}}" Contract Work: pageId: 153012 steam: 1076940 @@ -33777,30 +32912,28 @@ Contractors: pageId: 122420 steam: 963930 templates: - - '{{Game data/config|Windows|{{P|localappdata}}/Contractors_UE4_22/Saved/Config/WindowsNoEditor/}}' - - '{{Game data/saves|Windows|{{P|localappdata}}/Contractors_UE4_22/Saved/SaveGames/}}' -'Contradiction: Spot The Liar!': + - "{{Game data/config|Windows|{{P|localappdata}}/Contractors_UE4_22/Saved/Config/WindowsNoEditor/}}" + - "{{Game data/saves|Windows|{{P|localappdata}}/Contractors_UE4_22/Saved/SaveGames/}}" +"Contradiction: Spot The Liar!": pageId: 37120 steam: 373390 templates: - - '{{Game data/saves|Windows|{{P|localappdata}}\Contradiction\Local Storage\}}' - - '{{Game data/saves|Steam|{{P|steam}}\userdata\{{P|uid}}\373390\remote\Save*}}' + - "{{Game data/saves|Windows|{{P|localappdata}}\\Contradiction\\Local Storage\\}}" + - "{{Game data/saves|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\373390\\remote\\Save*}}" Contraption Maker: pageId: 9797 steam: 241240 templates: - - '{{Game data/config|Windows|{{p|game}}\data\cmprefs.data|{{p|game}}\data\layout.data}}' - - >- - {{Game data/config|OS - X|{{p|osxhome}}/Documents/contraptionmaker/cmprefs.data|~/Documents/contraptionmaker/layout.data}} - - '{{Game data/saves|Windows|{{p|game}}\data\puzzles.data}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Documents/contraptionmaker/data/puzzles.data}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/spotkincm/contraptionmaker/data/puzzles.data}}' + - "{{Game data/config|Windows|{{p|game}}\\data\\cmprefs.data|{{p|game}}\\data\\layout.data}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Documents/contraptionmaker/cmprefs.data|~/Documents/contraptionmaker/layout.data}}" + - "{{Game data/saves|Windows|{{p|game}}\\data\\puzzles.data}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Documents/contraptionmaker/data/puzzles.data}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/spotkincm/contraptionmaker/data/puzzles.data}}" Contraption Zack: pageId: 16930 templates: - - '{{Game data/config|DOS|{{p|game}}\}}' - - '{{Game data/saves|DOS|{{p|game}}\}}' + - "{{Game data/config|DOS|{{p|game}}\\}}" + - "{{Game data/saves|DOS|{{p|game}}\\}}" Contraptions: pageId: 141944 steam: 1117710 @@ -33811,8 +32944,8 @@ Contrast: pageId: 11910 steam: 224460 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Contrast\ContrastGame\Config\}}' - - '{{Game data/saves|Windows|{{p|game}}\binaries\win32\contrastsave*}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Contrast\\ContrastGame\\Config\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\binaries\\win32\\contrastsave*}}" Contrasted: pageId: 92279 steam: 803960 @@ -33821,22 +32954,14 @@ Control: pageId: 97395 steam: 870780 templates: - - >- - {{Game data/config|Epic Games - Store|{{P|game}}\renderer.ini|{{P|localappdata}}\Remedy\Control\Default-Epic-User\preferences\}} - - >- - {{Game data/config|GOG.com|{{P|game}}\renderer.ini|{{P|userprofile\documents}}\My - Games\Control\Saves\preferences_data}} - - >- - {{Game data/config|Microsoft - Store|{{p|localappdata}}\Packages\505GAMESS.P.A.ControlPCGP_tefn33qh9azfc\SystemAppData\wgs\}} - - '{{Game data/config|Steam|{{P|game}}\renderer.ini|{{P|steam}}\userdata\{{p|uid}}\870780\remote\preferences_data}}' - - '{{Game data/saves|Epic Games Store|{{P|localappdata}}\Remedy\Control\Default-Epic-User\}}' - - '{{Game data/saves|GOG.com|{{P|userprofile\documents}}\My Games\Control\Saves\}}' - - >- - {{Game data/saves|Microsoft - Store|{{p|localappdata}}\Packages\505GAMESS.P.A.ControlPCGP_tefn33qh9azfc\SystemAppData\wgs\}} - - '{{Game data/saves|Steam|{{P|steam}}\userdata\{{p|uid}}\870780\remote\}}' + - "{{Game data/config|Epic Games Store|{{P|game}}\\renderer.ini|{{P|localappdata}}\\Remedy\\Control\\Default-Epic-User\\preferences\\}}" + - "{{Game data/config|GOG.com|{{P|game}}\\renderer.ini|{{P|userprofile\\documents}}\\My Games\\Control\\Saves\\preferences_data}}" + - "{{Game data/config|Microsoft Store|{{p|localappdata}}\\Packages\\505GAMESS.P.A.ControlPCGP_tefn33qh9azfc\\SystemAppData\\wgs\\}}" + - "{{Game data/config|Steam|{{P|game}}\\renderer.ini|{{P|steam}}\\userdata\\{{p|uid}}\\870780\\remote\\preferences_data}}" + - "{{Game data/saves|Epic Games Store|{{P|localappdata}}\\Remedy\\Control\\Default-Epic-User\\}}" + - "{{Game data/saves|GOG.com|{{P|userprofile\\documents}}\\My Games\\Control\\Saves\\}}" + - "{{Game data/saves|Microsoft Store|{{p|localappdata}}\\Packages\\505GAMESS.P.A.ControlPCGP_tefn33qh9azfc\\SystemAppData\\wgs\\}}" + - "{{Game data/saves|Steam|{{P|steam}}\\userdata\\{{p|uid}}\\870780\\remote\\}}" Control 2: pageId: 182878 Control Craft 2: @@ -33848,7 +32973,7 @@ Control Craft 3: Control Freak: pageId: 120923 steam: 964450 -'Conv/rgence: A League of Legends Story': +"Conv/rgence: A League of Legends Story": gog: 2067376346 pageId: 164809 steam: 1276800 @@ -33869,67 +32994,67 @@ Convoy: pageId: 25361 steam: 318230 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Convoy\}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Convoy Games/Convoy/Convoy}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Convoy\}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Convoy Games/Convoy/Convoy}}' -'Conway: Disappearance at Dahlia View': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Convoy\\}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Convoy Games/Convoy/Convoy}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Convoy\\}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Convoy Games/Convoy/Convoy}}" +"Conway: Disappearance at Dahlia View": gog: 1873335333 pageId: 172521 steam: 1548750 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\DahliaView\Config\WindowsNoEditor}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\DahliaView\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\DahliaView\\Config\\WindowsNoEditor}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\DahliaView\\Saved\\SaveGames\\}}" Cook Dungeon: pageId: 153519 steam: 1201910 Cook Serve Forever: pageId: 179621 steam: 1928090 -'Cook, Serve, Delicious!': +"Cook, Serve, Delicious!": gog: 1712729523 pageId: 26587 steam: 247020 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\CSDSteamBuild\}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/CSDSteamBuild}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\CSDSteamBuild\}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/CSDSteamBuild}}' -'Cook, Serve, Delicious! 2!!': + - "{{Game data/config|Windows|{{p|localappdata}}\\CSDSteamBuild\\}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/CSDSteamBuild}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\CSDSteamBuild\\}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/CSDSteamBuild}}" +"Cook, Serve, Delicious! 2!!": gog: 1091423420 pageId: 40369 steam: 386620 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\NEW_CSD2_PS4Steam}}' - - '{{Game data/config|Linux|{{P|xdgconfighome}}/NEW_CSD2_PS4Steam}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\NEW_CSD2_PS4Steam}}' - - '{{Game data/saves|Linux|{{P|xdgconfighome}}/NEW_CSD2_PS4Steam}}' -'Cook, Serve, Delicious! 3?!': + - "{{Game data/config|Windows|{{p|localappdata}}\\NEW_CSD2_PS4Steam}}" + - "{{Game data/config|Linux|{{P|xdgconfighome}}/NEW_CSD2_PS4Steam}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\NEW_CSD2_PS4Steam}}" + - "{{Game data/saves|Linux|{{P|xdgconfighome}}/NEW_CSD2_PS4Steam}}" +"Cook, Serve, Delicious! 3?!": gog: 1457922558 pageId: 142941 steam: 1000030 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\CSD3_Foodtruck\CSD3_Op.ini}}' - - '{{Game data/config|Steam|{{P|steam}}\userdata\{{P|uid}}\1000030\remote\1S_CSD3_CloudSave.ini}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\CSD3_Foodtruck\}}' -'Cook, Serve, Delicious: Re-Mustard!': + - "{{Game data/config|Windows|{{P|localappdata}}\\CSD3_Foodtruck\\CSD3_Op.ini}}" + - "{{Game data/config|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\1000030\\remote\\1S_CSD3_CloudSave.ini}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\CSD3_Foodtruck\\}}" +"Cook, Serve, Delicious: Re-Mustard!": pageId: 188858 steam: 2139040 Cook-Out: pageId: 172538 steam: 1523720 templates: - - '{{Game data/saves|Steam|{{p|userprofile\appdata\locallow}}\ResolutionGames\Cook-Out\{{P|uid}}}}' + - "{{Game data/saves|Steam|{{p|userprofile\\appdata\\locallow}}\\ResolutionGames\\Cook-Out\\{{P|uid}}}}" Cookie Clicker: pageId: 171139 steam: 1454400 templates: - - '{{Game data/config|Windows|{{p|appdata}}\cookie-electron\}}' - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\1454400\remote\save.txt}}' + - "{{Game data/config|Windows|{{p|appdata}}\\cookie-electron\\}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\1454400\\remote\\save.txt}}" Cookies vs. Claus: pageId: 77045 steam: 752910 -'Cooking Academy 2: World Cuisine': +"Cooking Academy 2: World Cuisine": pageId: 179729 Cooking Academy Fire and Knives: pageId: 49460 @@ -33941,14 +33066,14 @@ Cooking Companions: pageId: 173373 steam: 1263230 templates: - - '{{Game data/saves|Windows|{{P|appdata}}\RenPy\CookingCompanions-Final-1587829054\*.save}}' + - "{{Game data/saves|Windows|{{P|appdata}}\\RenPy\\CookingCompanions-Final-1587829054\\*.save}}" Cooking Dash: pageId: 41254 steam: 37220 Cooking Live: pageId: 183181 steam: 1990690 -'Cooking Mama: Cuisine!': +"Cooking Mama: Cuisine!": pageId: 178063 Cooking Simulator: gog: 1676123628 @@ -33958,14 +33083,14 @@ Cooking Simulator VR: pageId: 169409 steam: 1358140 templates: - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\GameBoom VR\CookingSimulatorVR\Saves}}' + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\GameBoom VR\\CookingSimulatorVR\\Saves}}" Cooking Trip: pageId: 134538 steam: 1028110 -'Cooking Trip: Back on the Road': +"Cooking Trip: Back on the Road": pageId: 140908 renamedFrom: - - 'Cooking Trip: Back on the road' + - "Cooking Trip: Back on the road" steam: 1101660 Cooking Witch: pageId: 62318 @@ -33989,7 +33114,7 @@ Cop Academy: Copa Petrobras de Marcas: pageId: 48262 steam: 359800 -'Cope Island: Adrift': +"Cope Island: Adrift": pageId: 125617 steam: 969530 Copierre: @@ -33999,13 +33124,13 @@ Copoka: pageId: 57456 steam: 582620 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Copoka_Unreal\Saved\Config\WindowsNoEditor\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\Copoka_Unreal\\Saved\\Config\\WindowsNoEditor\\}}" Copperbell: pageId: 130551 steam: 1039040 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Zero Fun\Copperbell}}' -'Cops 2170: The Power of Law': + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Zero Fun\\Copperbell}}" +"Cops 2170: The Power of Law": pageId: 187391 steam: 1913160 Cops Kissing Each Other: @@ -34030,12 +33155,12 @@ Coral Island: - 2561700 - 2626420 templates: - - '{{Game data/saves|Windows|{{p|localappdata}}\ProjectCoral\Saved\SaveGames}}' + - "{{Game data/saves|Windows|{{p|localappdata}}\\ProjectCoral\\Saved\\SaveGames}}" Core: pageId: 166578 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\My Games\Core\Saved\Config\WindowsNoEditor\}}' -'Core Awaken: The Yuka': + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\My Games\\Core\\Saved\\Config\\WindowsNoEditor\\}}" +"Core Awaken: The Yuka": pageId: 99740 steam: 878150 Core Decay: @@ -34051,10 +33176,10 @@ Core Keeper: - Core keeper steam: 1621690 templates: - - '{{Game data/config|Windows|{{P|userprofile\appdata\locallow}}\Pugstorm\Core Keeper\Steam\{{P|uid}}\prefs.json}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Pugstorm/Core\ Keeper/prefs}}' - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Pugstorm\Core Keeper\Steam\{{P|uid}}}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Pugstorm/Core\ Keeper/DedicatedServer/worlds/}}' + - "{{Game data/config|Windows|{{P|userprofile\\appdata\\locallow}}\\Pugstorm\\Core Keeper\\Steam\\{{P|uid}}\\prefs.json}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Pugstorm/Core\\ Keeper/prefs}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Pugstorm\\Core Keeper\\Steam\\{{P|uid}}}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Pugstorm/Core\\ Keeper/DedicatedServer/worlds/}}" Core Of Darkness: pageId: 135389 steam: 1072050 @@ -34067,7 +33192,7 @@ Coregrounds: Corgi Warlock: pageId: 45421 steam: 414920 -Corinne Cross's Dead & Breakfast: +"Corinne Cross's Dead & Breakfast": pageId: 36167 steam: 473920 Corma: @@ -34077,33 +33202,25 @@ Corn Kidz 64: pageId: 191251 steam: 2575900 templates: - - '{{Game data/config|Windows|{{p|appdata}}\LocalLow\BogoSoft\Corn Kidz 64\save1.cow}}' - - '{{Game data/saves|Windows|{{p|appdata}}\LocalLow\BogoSoft\Corn Kidz 64\save1.cow}}' + - "{{Game data/config|Windows|{{p|appdata}}\\LocalLow\\BogoSoft\\Corn Kidz 64\\save1.cow}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\LocalLow\\BogoSoft\\Corn Kidz 64\\save1.cow}}" Corn Maze: pageId: 97463 templates: - - >- - {{Game - data/config|Windows|{{p|localappdata}}\Osgoode_Media\CornMaze.exe_StrongName_uqksqli1fpbk15l1kgwkjlftkx1kanwl\1.0.0.0\user.config}} - - >- - {{Game data/config|Microsoft - Store|{{p|localappdata}}\Packages\16591Monstrous.4422283106342_skedv6py88bbr\Settings\settings.dat}} - - >- - {{Game - data/saves|Windows|{{p|localappdata}}\Osgoode_Media\CornMaze.exe_StrongName_uqksqli1fpbk15l1kgwkjlftkx1kanwl\1.0.0.0\user.config}} - - >- - {{Game data/saves|Microsoft - Store|{{p|localappdata}}\Packages\16591Monstrous.4422283106342_skedv6py88bbr\Settings\settings.dat}} + - "{{Game data/config|Windows|{{p|localappdata}}\\Osgoode_Media\\CornMaze.exe_StrongName_uqksqli1fpbk15l1kgwkjlftkx1kanwl\\1.0.0.0\\user.config}}" + - "{{Game data/config|Microsoft Store|{{p|localappdata}}\\Packages\\16591Monstrous.4422283106342_skedv6py88bbr\\Settings\\settings.dat}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Osgoode_Media\\CornMaze.exe_StrongName_uqksqli1fpbk15l1kgwkjlftkx1kanwl\\1.0.0.0\\user.config}}" + - "{{Game data/saves|Microsoft Store|{{p|localappdata}}\\Packages\\16591Monstrous.4422283106342_skedv6py88bbr\\Settings\\settings.dat}}" CornWars - The Farming-Shooter-Game: pageId: 100706 steam: 885480 -'Cornerstone: The Song of Tyrim': +"Cornerstone: The Song of Tyrim": gog: 1455119388 pageId: 31614 steam: 284410 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Overflow Games\Cornerstone_ The song of Tyrim\}}' - - '{{Game data/saves|Steam|{{p|Steam}}/userdata/{{p|uid}}/284410\remote/}}' + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Overflow Games\\Cornerstone_ The song of Tyrim\\}}" + - "{{Game data/saves|Steam|{{p|Steam}}/userdata/{{p|uid}}/284410\\remote/}}" Cornflake Crisis: pageId: 128749 steam: 1023560 @@ -34118,8 +33235,8 @@ Coromon: pageId: 157126 steam: 1218210 templates: - - '{{Game data/saves|Windows|{{P|localappdata}}\TRAGsoft\Coromon\.system\}}' - - '{{Game data/saves|Epic Games Store|{{P|localappdata}}\TRAGsoft_epic\Coromon\.system\}}' + - "{{Game data/saves|Windows|{{P|localappdata}}\\TRAGsoft\\Coromon\\.system\\}}" + - "{{Game data/saves|Epic Games Store|{{P|localappdata}}\\TRAGsoft_epic\\Coromon\\.system\\}}" Corona Blossom Vol.1 Gift From the Galaxy: pageId: 37533 steam: 496260 @@ -34145,20 +33262,20 @@ Corporate America: pageId: 150667 steam: 1111250 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Corporate_America\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Corporate_America\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Corporate_America\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Corporate_America\\Saved\\SaveGames\\}}" Corporate Lifestyle Simulator: pageId: 38061 steam: 261880 steamSide: - 285470 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Notzombies\}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Notzombies\}}' + - "{{Game data/config|Windows|{{p|appdata}}\\Notzombies\\}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Notzombies\\}}" Corporate Property: pageId: 6549 templates: - - '{{Game data/config|Windows|{{p|game}}\UTGame\Config}}' + - "{{Game data/config|Windows|{{p|game}}\\UTGame\\Config}}" Corpse Factory: gog: 1837039836 pageId: 188757 @@ -34168,12 +33285,8 @@ Corpse Factory: - 1971110 - 2009170 templates: - - >- - {{Game data/config|Windows|{{P|userprofile\appdata\locallow}}\RIVER CROW STUDIO\CORPSE - FACTORY\NaninovelData\Saves\*.nson}} - - >- - {{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\RIVER CROW STUDIO\CORPSE - FACTORY\NaninovelData\Saves\Settings.json}} + - "{{Game data/config|Windows|{{P|userprofile\\appdata\\locallow}}\\RIVER CROW STUDIO\\CORPSE FACTORY\\NaninovelData\\Saves\\*.nson}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\RIVER CROW STUDIO\\CORPSE FACTORY\\NaninovelData\\Saves\\Settings.json}}" Corpse Killer - 25th Anniversary Edition: pageId: 139347 steam: 1087700 @@ -34185,49 +33298,49 @@ Corpse Party (2021): pageId: 172374 renamedFrom: - Corpse Party (2021) - - 'Corpse Party: Blood Covered ...Repeated Fear' + - "Corpse Party: Blood Covered ...Repeated Fear" steam: 1273260 templates: - - '{{Game data/config|Windows|{{P|appdata}}\CorpseParty\RepeatedFear.ini}}' - - '{{Game data/config|Linux|{{p|xdgconfighome}}/unity3d/MAGES_/Corpse Party/RepeatedFear.ini}}' - - '{{Game data/saves|Windows|{{P|appdata}}\CorpseParty}}' -'Corpse Party 2: Dead Patient': + - "{{Game data/config|Windows|{{P|appdata}}\\CorpseParty\\RepeatedFear.ini}}" + - "{{Game data/config|Linux|{{p|xdgconfighome}}/unity3d/MAGES_/Corpse Party/RepeatedFear.ini}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\CorpseParty}}" +"Corpse Party 2: Dead Patient": gog: 2147483075 pageId: 148210 steam: 940310 templates: - - '{{Game data/config|Windows|{{P|game}}\CPS.ini}}' - - '{{Game data/saves|Windows|{{P|game}}\savedata}}' -'Corpse Party: Blood Covered': + - "{{Game data/config|Windows|{{P|game}}\\CPS.ini}}" + - "{{Game data/saves|Windows|{{P|game}}\\savedata}}" +"Corpse Party: Blood Covered": pageId: 163621 templates: - - '{{Game data/config|Windows|{{p|game}}\grisgris.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\save_data\*.*}}' -'Corpse Party: Blood Covered (2016)': + - "{{Game data/config|Windows|{{p|game}}\\grisgris.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\save_data\\*.*}}" +"Corpse Party: Blood Covered (2016)": gog: 1460712231 pageId: 34195 renamedFrom: - Corpse Party steam: 251270 templates: - - '{{Game data/config|Windows|{{p|game}}\corpseparty.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\save_data\}}' - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/251270/remote/}}' -'Corpse Party: Blood Drive': + - "{{Game data/config|Windows|{{p|game}}\\corpseparty.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\save_data\\}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/251270/remote/}}" +"Corpse Party: Blood Drive": gog: 1771718646 pageId: 147874 steam: 824830 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\XSEED\Corpse Party: Blood Drive}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\XSEED\Corpse Party_ Blood Drive\Saves}}' -'Corpse Party: Book of Shadows': + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\XSEED\\Corpse Party: Blood Drive}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\XSEED\\Corpse Party_ Blood Drive\\Saves}}" +"Corpse Party: Book of Shadows": gog: 1856356886 pageId: 121233 steam: 778390 templates: - - '{{Game data/config|Windows|{{P|game}}\corpsepartybos.ini}}' - - '{{Game data/saves|Windows|{{P|game}}\save}}' -'Corpse Party: Sweet Sachiko''s Hysteric Birthday Bash': + - "{{Game data/config|Windows|{{P|game}}\\corpsepartybos.ini}}" + - "{{Game data/saves|Windows|{{P|game}}\\save}}" +"Corpse Party: Sweet Sachiko's Hysteric Birthday Bash": gog: 2013291024 pageId: 131961 steam: 778400 @@ -34240,7 +33353,7 @@ Corral: Corridor 15: pageId: 76975 steam: 732040 -'Corridor 7: Alien Invasion': +"Corridor 7: Alien Invasion": gog: 2147483140 pageId: 26687 steam: 1341890 @@ -34248,8 +33361,8 @@ Corridor Z: pageId: 79658 steam: 636070 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Mass Creation\Corridor Z\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Corridor Z\GameSave.zsave}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Mass Creation\\Corridor Z\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Corridor Z\\GameSave.zsave}}" Corridor of Time: pageId: 127830 renamedFrom: @@ -34258,12 +33371,12 @@ Corridor of Time: Corroded: pageId: 59834 steam: 446030 -'Corrosion: Cold Winter Waiting': +"Corrosion: Cold Winter Waiting": pageId: 51122 steam: 349140 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Viperante\Corrosion - Cold Winter Waiting\}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\Saved Games\Corrosion - Cold Winter Waiting\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Viperante\\Corrosion - Cold Winter Waiting\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\Saved Games\\Corrosion - Cold Winter Waiting\\}}" Corrupt: pageId: 71845 steam: 711010 @@ -34285,21 +33398,21 @@ Corruption: Corruption 2029: pageId: 157870 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Corruption\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\Corruption\Saved\SavedGames\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Corruption\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Corruption\\Saved\\SavedGames\\}}" Corruption of Champions II: pageId: 190297 steam: 1292690 -'Corsairs: Battle of the Caribbean': +"Corsairs: Battle of the Caribbean": gog: 1756882332 pageId: 187532 steam: 2397510 -'Corsairs: Conquest at Sea': +"Corsairs: Conquest at Sea": gog: 1207659943 pageId: 21963 templates: - - '{{Game data/config|Windows|{{p|game}}\corsairs.ini}}' - - '{{Game data/saves|Windows|{{p|userprofile\documents}}}}' + - "{{Game data/config|Windows|{{p|game}}\\corsairs.ini}}" + - "{{Game data/saves|Windows|{{p|userprofile\\documents}}}}" Cortex: pageId: 103879 steam: 909580 @@ -34310,12 +33423,12 @@ Cortex Command: pageId: 3703 steam: 209670 templates: - - '{{Game data/config|Windows|{{p|game}}\Base.rte}}' - - '{{Game data/saves|Windows|{{p|game}}\Metagames.rte}}' + - "{{Game data/config|Windows|{{p|game}}\\Base.rte}}" + - "{{Game data/saves|Windows|{{p|game}}\\Metagames.rte}}" Cortex Protocol: pageId: 93315 steam: 843850 -'CortexGear: AngryDroids': +"CortexGear: AngryDroids": pageId: 46310 steam: 375620 Corto Maltese - Secrets of Venice: @@ -34324,8 +33437,8 @@ Corto Maltese - Secrets of Venice: Corvette: pageId: 88260 templates: - - '{{Game data/config|Windows|{{P|game}}\data\pc\config}}' - - '{{Game data/saves|Windows|{{P|game}}\data\pc\config}}' + - "{{Game data/config|Windows|{{P|game}}\\data\\pc\\config}}" + - "{{Game data/saves|Windows|{{P|game}}\\data\\pc\\config}}" Cosa Nostra: pageId: 115004 steam: 954000 @@ -34348,19 +33461,19 @@ Cosmic DJ: pageId: 38181 steam: 297110 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\GL33k\Cosmic DJ}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\GL33k\\Cosmic DJ}}" Cosmic Dust & Rust: pageId: 35320 steam: 473560 templates: - - '{{Game data/saves|Windows|{{p|localappdata}}\Ramos_TD\Save}}' + - "{{Game data/saves|Windows|{{p|localappdata}}\\Ramos_TD\\Save}}" Cosmic Express: pageId: 59472 steam: 583270 templates: - - '{{Game data/config|Windows|{{P|userprofile}}\AppData\LocalLow\Cosmic Express\Cosmic Express\config}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Cosmic Express\Cosmic Express\}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Cosmic Express/Cosmic Express/}}' + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Cosmic Express\\Cosmic Express\\config}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Cosmic Express\\Cosmic Express\\}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Cosmic Express/Cosmic Express/}}" Cosmic Kites: pageId: 62922 steam: 606720 @@ -34390,8 +33503,8 @@ Cosmic Star Heroine: pageId: 39528 steam: 256460 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Zeboyd Games\Cosmic Star Heroine\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Zeboyd Games\Cosmic Star Heroine\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Zeboyd Games\\Cosmic Star Heroine\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Zeboyd Games\\Cosmic Star Heroine\\}}" Cosmic Sugar VR: pageId: 53844 steam: 559010 @@ -34405,8 +33518,8 @@ Cosmic Trip: pageId: 33732 steam: 427240 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\SOFTWARE\Funktronic Labs\Cosmic Trip\}}' - - '{{Game data/saves|Windows|{{p|hkcu}}\SOFTWARE\Funktronic Labs\Cosmic Trip\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\Funktronic Labs\\Cosmic Trip\\}}" + - "{{Game data/saves|Windows|{{p|hkcu}}\\SOFTWARE\\Funktronic Labs\\Cosmic Trip\\}}" Cosmic collapse: pageId: 122614 steam: 860000 @@ -34416,17 +33529,17 @@ Cosmo Chaser: Cosmo story: pageId: 152732 steam: 1184710 -Cosmo's Cosmic Adventure: +"Cosmo's Cosmic Adventure": gog: 1207665563 pageId: 21952 steam: 358250 templates: - - '{{Game data/config|DOS|{{p|game}}\COSMO*.CFG}}' - - '{{Game data/saves|DOS|{{p|game}}\COSMO*.SV*|{{p|game}}\COSMO*.CFG}}' -Cosmo's Quickstop: + - "{{Game data/config|DOS|{{p|game}}\\COSMO*.CFG}}" + - "{{Game data/saves|DOS|{{p|game}}\\COSMO*.SV*|{{p|game}}\\COSMO*.CFG}}" +"Cosmo's Quickstop": pageId: 76375 steam: 724680 -'CosmoDrive: Zero': +"CosmoDrive: Zero": pageId: 122251 steam: 975800 CosmoLands: @@ -34446,8 +33559,8 @@ Cosmonautica: pageId: 25310 steam: 320340 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Cosmonautica\}}' -'Cosmonet: Space Adventure': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Cosmonautica\\}}" +"Cosmonet: Space Adventure": pageId: 124104 steam: 993470 Cosmophony: @@ -34468,12 +33581,12 @@ Cosmos Invictus: Cosmosa: pageId: 135512 steam: 1068730 -'Cosmoteer: Starship Architect & Commander': +"Cosmoteer: Starship Architect & Commander": pageId: 82936 steam: 799600 templates: - - '{{Game data/config|Windows|{{P|USERPROFILE}}\Saved Games\Cosmoteer}}' - - '{{Game data/saves|Windows|{{P|USERPROFILE}}\Saved Games\Cosmoteer}}' + - "{{Game data/config|Windows|{{P|USERPROFILE}}\\Saved Games\\Cosmoteer}}" + - "{{Game data/saves|Windows|{{P|USERPROFILE}}\\Saved Games\\Cosmoteer}}" Cosplay Convention Crisis: pageId: 94513 steam: 851590 @@ -34485,47 +33598,47 @@ Cossacks 3: pageId: 36443 steam: 333420 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\cossacks\profiles\{{P|uid}}\}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/cossacks/profiles/%profile_name%/profile.cfg}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\cossacks}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/cossacks/profiles/%profile_name%/saves/}}' -'Cossacks II: Battle for Europe': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\cossacks\\profiles\\{{P|uid}}\\}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/cossacks/profiles/%profile_name%/profile.cfg}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\cossacks}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/cossacks/profiles/%profile_name%/saves/}}" +"Cossacks II: Battle for Europe": gog: 1620402149 pageId: 40922 steam: 4890 templates: - - '{{Game data/config|Windows|{{p|game}}\settings.xml}}' - - '{{Game data/saves|Windows|{{p|game}}\Save\}}' -'Cossacks II: Napoleonic Wars': + - "{{Game data/config|Windows|{{p|game}}\\settings.xml}}" + - "{{Game data/saves|Windows|{{p|game}}\\Save\\}}" +"Cossacks II: Napoleonic Wars": gog: 1360549960 pageId: 40924 steam: 115200 templates: - - '{{Game data/config|Windows|{{p|game}}\settings.xml}}' - - '{{Game data/saves|Windows|{{p|game}}\Save\}}' -'Cossacks: Back to War': + - "{{Game data/config|Windows|{{p|game}}\\settings.xml}}" + - "{{Game data/saves|Windows|{{p|game}}\\Save\\}}" +"Cossacks: Back to War": gog: 1207662833 pageId: 7518 steam: 4850 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/saves|Windows|{{p|game}}\*.sav}}' -'Cossacks: European Wars': + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\*.sav}}" +"Cossacks: European Wars": gog: 1207662843 gogSide: - 1207659005 pageId: 1490 steam: 4880 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/saves|Windows|{{p|game}}\*.sav}}' -'Cossacks: The Art of War': + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\*.sav}}" +"Cossacks: The Art of War": gog: 1207662823 pageId: 7517 steam: 4870 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/saves|Windows|{{p|game}}\*.sav}}' + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\*.sav}}" Cossanox: pageId: 135289 steam: 1072280 @@ -34537,24 +33650,24 @@ Costume Quest: pageId: 5473 steam: 115100 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Doublefine\CostumeQuest}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/doublefine/costumequest/}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/doublefine/costumequest/}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Doublefine\CostumeQuest}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/doublefine/costumequest/}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/doublefine/costumequest/}}' - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/115100/}}' + - "{{Game data/config|Windows|{{p|appdata}}\\Doublefine\\CostumeQuest}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/doublefine/costumequest/}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/doublefine/costumequest/}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Doublefine\\CostumeQuest}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/doublefine/costumequest/}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/doublefine/costumequest/}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/115100/}}" Costume Quest 2: gog: 2057178032 pageId: 20325 steam: 275180 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Doublefine\CostumeQuest2\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Doublefine/Costume Quest 2/}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/doublefine/Costume Quest 2/}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Doublefine\CostumeQuest2\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Doublefine/Costume Quest 2/}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/doublefine/Costume Quest 2/}}' + - "{{Game data/config|Windows|{{p|appdata}}\\Doublefine\\CostumeQuest2\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Doublefine/Costume Quest 2/}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/doublefine/Costume Quest 2/}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Doublefine\\CostumeQuest2\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Doublefine/Costume Quest 2/}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/doublefine/Costume Quest 2/}}" Costumenaut: pageId: 67817 steam: 645240 @@ -34564,15 +33677,15 @@ Cotrio: Cottage Garden: pageId: 89244 steam: 716090 -'Cotton 2: Magical Night Dreams': +"Cotton 2: Magical Night Dreams": pageId: 169514 steam: 1708800 Cotton Boomerang: pageId: 169515 steam: 1708810 templates: - - '{{Game data/config|Windows|{{P|game}}\CottonBoomerang_Steam.ini}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\Saved Games\COTTOn Boomerang Saturn Tribute}}' + - "{{Game data/config|Windows|{{P|game}}\\CottonBoomerang_Steam.ini}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\Saved Games\\COTTOn Boomerang Saturn Tribute}}" Cotton Guardian Force Saturn Tribute: pageId: 168133 Cotton Reboot!: @@ -34581,11 +33694,11 @@ Cotton Reboot!: - Cotton Reboot steam: 1656820 templates: - - '{{Game data/saves|Windows|{{P|game}}\save_data.sav}}' + - "{{Game data/saves|Windows|{{P|game}}\\save_data.sav}}" Couch Party Game Night: pageId: 112032 steam: 833770 -'Couch Storm: Battle Royale': +"Couch Storm: Battle Royale": pageId: 138566 steam: 1093690 Couch Versus: @@ -34616,7 +33729,7 @@ Counter Fight: Counter Fight 3: pageId: 124135 steam: 984820 -'Counter Fight: Samurai Edition': +"Counter Fight: Samurai Edition": pageId: 63438 steam: 593210 Counter Spell: @@ -34629,8 +33742,8 @@ Counter Terrorist Agency: pageId: 122854 steam: 936490 templates: - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Preferences/pl.play2chill.cta.plist}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/pl.play2chill.cta}}' + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Preferences/pl.play2chill.cta.plist}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/pl.play2chill.cta}}" Counter-Fall: pageId: 156893 steam: 1205390 @@ -34638,21 +33751,19 @@ Counter-Strike: pageId: 111 steam: 10 templates: - - '{{Game data/config|Windows|{{P|game}}\Half-Life\cstrike\}}' - - '{{Game data/config|OS X|{{P|game}}/Half-Life/cstrike/}}' - - '{{Game data/config|Linux|{{P|game}}/Half-Life/cstrike/}}' + - "{{Game data/config|Windows|{{P|game}}\\Half-Life\\cstrike\\}}" + - "{{Game data/config|OS X|{{P|game}}/Half-Life/cstrike/}}" + - "{{Game data/config|Linux|{{P|game}}/Half-Life/cstrike/}}" Counter-Strike 2: pageId: 186284 steam: 730 templates: - - >- - {{Game - data/config|Steam|{{P|steam}}\userdata\{{P|uid}}\730\local\cfg\|{{P|steam}}\userdata\{{P|uid}}\730\remote\}} -'Counter-Strike Neo: White Memories': + - "{{Game data/config|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\730\\local\\cfg\\|{{P|steam}}\\userdata\\{{P|uid}}\\730\\remote\\}}" +"Counter-Strike Neo: White Memories": pageId: 175681 renamedFrom: - Counter-Strike NEO -White Memories- -'Counter-Strike Nexon: Studio': +"Counter-Strike Nexon: Studio": pageId: 19915 steam: 273110 Counter-Strike Online: @@ -34660,36 +33771,36 @@ Counter-Strike Online: Counter-Strike Online 2: pageId: 162639 templates: - - '{{Game data/config|Windows|{{p|game}}}}' -'Counter-Strike: Condition Zero': + - "{{Game data/config|Windows|{{p|game}}}}" +"Counter-Strike: Condition Zero": pageId: 185 steam: 80 steamSide: - 100 templates: - - '{{Game data/config|Windows|{{P|game}}\Half-Life\czero\}}' - - '{{Game data/config|OS X|{{P|game}}/Half-Life/czero/}}' - - '{{Game data/config|Linux|{{P|game}}/Half-Life/czero/}}' - - '{{Game data/saves|Windows|{{P|game}}\Half-Life\czero\Save\}}' - - '{{Game data/saves|OS X|{{P|game}}/Half-Life/czero/Save/}}' - - '{{Game data/saves|Linux|{{P|game}}/Half-Life/czero/Save/}}' -'Counter-Strike: Global Offensive': + - "{{Game data/config|Windows|{{P|game}}\\Half-Life\\czero\\}}" + - "{{Game data/config|OS X|{{P|game}}/Half-Life/czero/}}" + - "{{Game data/config|Linux|{{P|game}}/Half-Life/czero/}}" + - "{{Game data/saves|Windows|{{P|game}}\\Half-Life\\czero\\Save\\}}" + - "{{Game data/saves|OS X|{{P|game}}/Half-Life/czero/Save/}}" + - "{{Game data/saves|Linux|{{P|game}}/Half-Life/czero/Save/}}" +"Counter-Strike: Global Offensive": pageId: 196 steam: 730 templates: - - '{{Game data/config|Steam|{{p|steam}}\userdata\{{p|uid}}\730\local\cfg}}' -'Counter-Strike: Source': + - "{{Game data/config|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\730\\local\\cfg}}" +"Counter-Strike: Source": pageId: 187 steam: 240 templates: - - '{{Game data/config|Windows|{{p|game}}\cstrike\cfg}}' - - '{{Game data/config|OS X|{{p|game}}\cstrike\cfg}}' - - '{{Game data/config|Linux|{{p|game}}/cstrike/cfg/}}' + - "{{Game data/config|Windows|{{p|game}}\\cstrike\\cfg}}" + - "{{Game data/config|OS X|{{p|game}}\\cstrike\\cfg}}" + - "{{Game data/config|Linux|{{p|game}}/cstrike/cfg/}}" CounterAttack: pageId: 43452 steam: 451600 templates: - - '{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/Relative Software LTD_/CounterAttack/}}' + - "{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/Relative Software LTD_/CounterAttack/}}" Countermark Saga Frozen sword: pageId: 132762 steam: 1053940 @@ -34711,7 +33822,7 @@ Country Clubbing: Country Girl Keiko: pageId: 135973 steam: 1065940 -'Country Justice: Revenge of the Rednecks': +"Country Justice: Revenge of the Rednecks": pageId: 83086 Country Park: pageId: 103113 @@ -34728,10 +33839,10 @@ Country of One: CountryBalls Heroes: pageId: 139722 steam: 1083870 -'Countryballs: Modern Ballfare': +"Countryballs: Modern Ballfare": pageId: 157193 steam: 1147130 -'Countryballs: Over the World': +"Countryballs: Over the World": pageId: 81476 steam: 784940 Couple-quest: @@ -34787,10 +33898,10 @@ Cowboy Revenge: Cowboy Zombie: pageId: 58979 steam: 603570 -Cowboy's Adventure: +"Cowboy's Adventure": pageId: 64745 steam: 666960 -'Cowboy: Attack of Wild Animal': +"Cowboy: Attack of Wild Animal": pageId: 93641 steam: 844970 Cowboys vs Hipsters: @@ -34806,7 +33917,7 @@ Cozy Grove: pageId: 167142 steam: 1458100 templates: - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Spry Fox\Cozy Grove}}' + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Spry Fox\\Cozy Grove}}" Crab Cakes Rescue: pageId: 49321 steam: 328680 @@ -34814,8 +33925,8 @@ Crab Champions: pageId: 184222 steam: 774801 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\CrabChampions\Saved\Config}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\CrabChampions\Saved\SaveGames}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\CrabChampions\\Saved\\Config}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\CrabChampions\\Saved\\SaveGames}}" Crab Dub: pageId: 56364 steam: 539450 @@ -34823,32 +33934,24 @@ Crab Game: pageId: 172925 steam: 1782210 templates: - - '{{Game data/saves|Windows|{{p|game}}\SavesDir\*.sav}}' + - "{{Game data/saves|Windows|{{p|game}}\\SavesDir\\*.sav}}" Crack Down: pageId: 30699 templates: - - '{{Game data/saves|DOS|{{p|game}}\CRACKDWN.SAV}}' + - "{{Game data/saves|DOS|{{p|game}}\\CRACKDWN.SAV}}" Crack Down (Genesis): pageId: 30702 renamedFrom: - Crack Down (2010) steam: 34273 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\SEGA Mega Drive - Classics\setup.dat|{{p|userprofile\Documents}}\SEGA Genesis Classics\setup.dat}} - - >- - {{Game data/saves|Windows|{{p|userprofile\Documents}}\SEGA Mega Drive - Classics\0002\|{{p|userprofile\Documents}}\SEGA Genesis Classics\0002\}} + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\SEGA Mega Drive Classics\\setup.dat|{{p|userprofile\\Documents}}\\SEGA Genesis Classics\\setup.dat}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\SEGA Mega Drive Classics\\0002\\|{{p|userprofile\\Documents}}\\SEGA Genesis Classics\\0002\\}}" Crackdown 3: pageId: 64677 templates: - - >- - {{Game - data/config|Windows|{{P|localappdata}}\Packages\Microsoft.48248D2C77101_8wekyb3d8bbwe\LocalState\Nimbus\Saved\Config\UWP\}} - - >- - {{Game - data/saves|Windows|{{P|localappdata}}\Packages\Microsoft.48248D2C77101_8wekyb3d8bbwe\SystemAppData\wgs\{{p|uid}}\}} + - "{{Game data/config|Windows|{{P|localappdata}}\\Packages\\Microsoft.48248D2C77101_8wekyb3d8bbwe\\LocalState\\Nimbus\\Saved\\Config\\UWP\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Packages\\Microsoft.48248D2C77101_8wekyb3d8bbwe\\SystemAppData\\wgs\\{{p|uid}}\\}}" Crackhead: pageId: 53200 steam: 554530 @@ -34856,31 +33959,25 @@ Cracking the Cryptic: pageId: 180931 steam: 2085970 templates: - - '{{Game data/saves|Windows|{{p|AppData}}\LocalLow\Studio Goya\Cracking the Cryptic\76561198271677313\}}' - - >- - {{Game data/saves|OS X|{{p|osxhome}}/Library/Application - Support/com.StudioGoya.CrackingTheCryptic/76561198271677313/}} -'Crackpot Despot: Trump Warfare': + - "{{Game data/saves|Windows|{{p|AppData}}\\LocalLow\\Studio Goya\\Cracking the Cryptic\\76561198271677313\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/com.StudioGoya.CrackingTheCryptic/76561198271677313/}}" +"Crackpot Despot: Trump Warfare": pageId: 108096 steam: 910290 Cradle: pageId: 26711 steam: 361550 templates: - - >- - {{Game - data/config|Windows|{{P|userprofile}}\Cradle\cradle.cfg|{{P|game}}\bin\profiles\game.data|{{P|game}}\cradle.cfg}} - - >- - {{Game - data/config|Linux|{{P|linuxhome}}/.Cradle/cradle.cfg|{{P|game}}/bin/profiles/game.data|{{P|game}}/cradle.cfg}} - - '{{Game data/saves|Windows|{{P|game}}\bin\profiles\game.data}}' - - '{{Game data/saves|Linux|{{P|game}}/bin/profiles/game.data}}' - - '{{Game data/saves|Steam|{{P|steam}}\userdata\{{P|uid}}\361550\remote\data.xml}}' + - "{{Game data/config|Windows|{{P|userprofile}}\\Cradle\\cradle.cfg|{{P|game}}\\bin\\profiles\\game.data|{{P|game}}\\cradle.cfg}}" + - "{{Game data/config|Linux|{{P|linuxhome}}/.Cradle/cradle.cfg|{{P|game}}/bin/profiles/game.data|{{P|game}}/cradle.cfg}}" + - "{{Game data/saves|Windows|{{P|game}}\\bin\\profiles\\game.data}}" + - "{{Game data/saves|Linux|{{P|game}}/bin/profiles/game.data}}" + - "{{Game data/saves|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\361550\\remote\\data.xml}}" Cradle of Persia: pageId: 41168 steam: 38180 templates: - - '{{Game data/saves|Windows|{{p|appdata}}\Awem\Cradle of Persia\Config.xml}}' + - "{{Game data/saves|Windows|{{p|appdata}}\\Awem\\Cradle of Persia\\Config.xml}}" Cradle of Rome: pageId: 41166 steam: 38170 @@ -34904,9 +34001,9 @@ Craft the World: pageId: 33274 steam: 248390 templates: - - '{{Game data/config|Windows|{{p|appdata}}\dekovir\crafttheworld\config.xml}}' - - '{{Game data/saves|Windows|{{p|appdata}}\dekovir\crafttheworld\saves\}}' -'Craft: Work VR Shop': + - "{{Game data/config|Windows|{{p|appdata}}\\dekovir\\crafttheworld\\config.xml}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\dekovir\\crafttheworld\\saves\\}}" +"Craft: Work VR Shop": pageId: 54766 steam: 558740 Craftica: @@ -34925,14 +34022,10 @@ Craftopia: pageId: 163174 steam: 1307550 templates: - - '{{Game data/config|Windows|{{P|userprofile}}\AppData\LocalLow\PocketPairInc\Craftopia\Save}}' - - >- - {{Game data/config|Microsoft - Store|{{P|userprofile}}\AppData\LocalLow\PocketPairInc\Craftopia\XboxLive\{{P|uid}}\main\Save}} - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\PocketPair\Craftopia\Save}}' - - >- - {{Game data/saves|Microsoft - Store|{{P|LOCALAPPDATA}}\Packages\PocketpairInc.Craftopia_ad4psfrxyesvt\SystemAppData\wgs}} + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\PocketPairInc\\Craftopia\\Save}}" + - "{{Game data/config|Microsoft Store|{{P|userprofile}}\\AppData\\LocalLow\\PocketPairInc\\Craftopia\\XboxLive\\{{P|uid}}\\main\\Save}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\PocketPair\\Craftopia\\Save}}" + - "{{Game data/saves|Microsoft Store|{{P|LOCALAPPDATA}}\\Packages\\PocketpairInc.Craftopia_ad4psfrxyesvt\\SystemAppData\\wgs}}" Cragls: pageId: 156576 steam: 1222940 @@ -34945,25 +34038,25 @@ Cranium Conundrum: Cranked Up: pageId: 145393 steam: 1074500 -'Crankies Workshop: Bozzbot Assembly': +"Crankies Workshop: Bozzbot Assembly": pageId: 69597 steam: 705400 -'Crankies Workshop: Freebot Assembly': +"Crankies Workshop: Freebot Assembly": pageId: 72779 steam: 724280 -'Crankies Workshop: Grizzbot Assembly': +"Crankies Workshop: Grizzbot Assembly": pageId: 69480 steam: 705420 -'Crankies Workshop: Grizzbot Assembly 2': +"Crankies Workshop: Grizzbot Assembly 2": pageId: 72264 steam: 719460 -'Crankies Workshop: Lerpbot Assembly': +"Crankies Workshop: Lerpbot Assembly": pageId: 69496 steam: 705430 -'Crankies Workshop: Whirlbot Assembly': +"Crankies Workshop: Whirlbot Assembly": pageId: 69617 steam: 707370 -'Crankies Workshop: Zazzbot Assembly': +"Crankies Workshop: Zazzbot Assembly": pageId: 69619 steam: 707380 Cranks and Goggles: @@ -34990,19 +34083,19 @@ CrapsVR: Crash And Burn Racing: pageId: 49161 steam: 336630 -'Crash Bandicoot 4: It''s About Time': +"Crash Bandicoot 4: It's About Time": pageId: 166524 steam: 1378990 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\CrashBandicoot4\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\CrashBandicoot4\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\CrashBandicoot4\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\CrashBandicoot4\\Saved\\SaveGames\\}}" Crash Bandicoot N. Sane Trilogy: pageId: 89119 steam: 731490 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Crash Bandicoot(TM) N. Sane Trilogy\}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Crash Bandicoot(TM) N. Sane Trilogy\}}' -'Crash Bandicoot: Back In Time': + - "{{Game data/config|Windows|{{p|appdata}}\\Crash Bandicoot(TM) N. Sane Trilogy\\}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Crash Bandicoot(TM) N. Sane Trilogy\\}}" +"Crash Bandicoot: Back In Time": pageId: 188841 Crash Dive: pageId: 47379 @@ -35026,39 +34119,39 @@ Crash Landing: pageId: 44691 steam: 433120 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\CrashLanding\Saved\Config\WindowsNoEditor\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\CrashLanding\\Saved\\Config\\WindowsNoEditor\\}}" Crash Test Billy: pageId: 66265 steam: 676550 Crash Time: pageId: 54015 templates: - - '{{Game data/config|Windows|{{p|game}}\Config.ini
{{p|game}}\CtrlMappings.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\C11-Saves\}}' + - "{{Game data/config|Windows|{{p|game}}\\Config.ini
{{p|game}}\\CtrlMappings.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\C11-Saves\\}}" Crash Time 2: pageId: 32995 steam: 11390 templates: - - '{{Game data/config|Windows|{{p|ProgramData}}\Synetic\BurningWheels}}' - - '{{Game data/saves|Windows|{{p|ProgramData}}\Synetic\BurningWheels}}' + - "{{Game data/config|Windows|{{p|ProgramData}}\\Synetic\\BurningWheels}}" + - "{{Game data/saves|Windows|{{p|ProgramData}}\\Synetic\\BurningWheels}}" Crash Time 3: pageId: 33193 steam: 33620 templates: - - '{{Game data/config|Windows|{{p|ProgramData}}\Synetic\HighwayNights}}' - - '{{Game data/saves|Windows|{{p|ProgramData}}\Synetic\HighwayNights}}' -'Crash Time 4: The Syndicate': + - "{{Game data/config|Windows|{{p|ProgramData}}\\Synetic\\HighwayNights}}" + - "{{Game data/saves|Windows|{{p|ProgramData}}\\Synetic\\HighwayNights}}" +"Crash Time 4: The Syndicate": pageId: 73574 templates: - - '{{Game data/config|Windows|{{p|programdata}}\Synetic\CrashTime4\Config.ini}}' - - '{{Game data/saves|Windows|{{p|programdata}}\Synetic\SavedGame}}' -'Crash Time 5: Undercover': + - "{{Game data/config|Windows|{{p|programdata}}\\Synetic\\CrashTime4\\Config.ini}}" + - "{{Game data/saves|Windows|{{p|programdata}}\\Synetic\\SavedGame}}" +"Crash Time 5: Undercover": pageId: 73575 steam: 1687700 templates: - - '{{Game data/config|Windows|{{p|ProgramData}}\Synetic\CrashTime5}}' - - '{{Game data/saves|Windows|{{p|ProgramData}}\Synetic\CrashTime5}}' -'Crash Time: Undercover': + - "{{Game data/config|Windows|{{p|ProgramData}}\\Synetic\\CrashTime5}}" + - "{{Game data/saves|Windows|{{p|ProgramData}}\\Synetic\\CrashTime5}}" +"Crash Time: Undercover": pageId: 183214 steam: 1687700 Crash Wheels: @@ -35067,7 +34160,7 @@ Crash Wheels: Crash World: pageId: 154332 steam: 852890 -'CrashCourse: Concussion Education Reimagined': +"CrashCourse: Concussion Education Reimagined": pageId: 129573 steam: 1032530 Crashbot: @@ -35079,13 +34172,13 @@ Crashbots: Crashday: pageId: 57603 templates: - - '{{Game data/saves|Windows|{{P|game}}\savegame\}}' + - "{{Game data/saves|Windows|{{P|game}}\\savegame\\}}" Crashday Redline Edition: pageId: 65390 steam: 508980 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Crashday\config\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Crashday\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Crashday\\config\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Crashday\\}}" Crashdrive 3D: pageId: 169902 Crashed Lander: @@ -35102,8 +34195,8 @@ Crashlands: pageId: 34566 steam: 391730 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Crashlands\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Crashlands\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Crashlands\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Crashlands\\}}" Crashnauts: pageId: 59297 steam: 414490 @@ -35118,11 +34211,11 @@ Crawl: pageId: 19555 steam: 293780 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Powerhoof\Crawl\}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Powerhoof/Crawl/}}' - - '{{Game data/saves|Steam|{{p|game}}/Crawl.sav}}' - - '{{Game data/saves|Linux|{{p|game}}/Crawl.sav}}' -'Crawl Space: The Mansion': + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Powerhoof\\Crawl\\}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Powerhoof/Crawl/}}" + - "{{Game data/saves|Steam|{{p|game}}/Crawl.sav}}" + - "{{Game data/saves|Linux|{{p|game}}/Crawl.sav}}" +"Crawl Space: The Mansion": pageId: 74153 steam: 731760 Crawlco Block Knockers: @@ -35138,7 +34231,7 @@ Crayola Scoot: pageId: 113180 steam: 772530 templates: - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Outright Games Ltd\Crayola Scoot}}' + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Outright Games Ltd\\Crayola Scoot}}" Crayon Chronicles: pageId: 48543 steam: 341510 @@ -35146,11 +34239,11 @@ Crayon Physics Deluxe: pageId: 4725 steam: 26900 templates: - - '{{Game data/config|Windows|{{p|game}}\data\dev}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.CrayonPhysicsDeluxe/}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Crayon Physics Deluxe\}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.CrayonPhysicsDeluxe/}}' -'Crayon Shin-chan: The Storm Called! Flaming Kasukabe Runner!!': + - "{{Game data/config|Windows|{{p|game}}\\data\\dev}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.CrayonPhysicsDeluxe/}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Crayon Physics Deluxe\\}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.CrayonPhysicsDeluxe/}}" +"Crayon Shin-chan: The Storm Called! Flaming Kasukabe Runner!!": pageId: 180445 steam: 1921740 Crayta: @@ -35176,7 +34269,7 @@ Crazy Ball Adventures: Crazy Ball Racing: pageId: 157480 steam: 1088570 -Crazy Beat's Junction: +"Crazy Beat's Junction": pageId: 139217 steam: 1081540 Crazy Belts: @@ -35196,7 +34289,7 @@ Crazy Cage: renamedFrom: - CRAZY CAGE steam: 1129340 -'Crazy Cars: Hit the Road': +"Crazy Cars: Hit the Road": pageId: 59749 steam: 359290 Crazy Cat: @@ -35215,14 +34308,14 @@ Crazy Chicken Tales: pageId: 49589 steam: 318660 templates: - - '{{Game data/saves|Windows|{{P|localappdata}}\Crazy Chicken Tales\savegames.txt}}' + - "{{Game data/saves|Windows|{{P|localappdata}}\\Crazy Chicken Tales\\savegames.txt}}" Crazy Critters - Combat Cats: pageId: 144552 steam: 1141880 -'Crazy Dreamz: Best Of': +"Crazy Dreamz: Best Of": pageId: 89474 steam: 774711 -'Crazy Dreamz: MagiCats Edition': +"Crazy Dreamz: MagiCats Edition": pageId: 69396 steam: 690610 Crazy Driver: @@ -35261,46 +34354,44 @@ Crazy Machines 2: pageId: 41356 steam: 18400 steamSide: - - 202452 - - 202450 - - 18408 - 18407 + - 18408 - 18440 + - 202450 + - 202452 - 202454 - 242630 - 312090 - 323390 - 335110 templates: - - '{{Game data/saves|Windows|{{p|game}}\Crazy Machines 2\profiles\}}' + - "{{Game data/saves|Windows|{{p|game}}\\Crazy Machines 2\\profiles\\}}" Crazy Machines 3: pageId: 36944 steam: 351920 templates: - - >- - {{Game data/config|Windows|{{P|localappdata}}\Daedalic Entertainment GmbH\Crazy Machines - 3\Saves\UserSettings.cms}} - - '{{Game data/saves|Windows|{{P|localappdata}}\Daedalic Entertainment GmbH\Crazy Machines 3\Saves\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\Daedalic Entertainment GmbH\\Crazy Machines 3\\Saves\\UserSettings.cms}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Daedalic Entertainment GmbH\\Crazy Machines 3\\Saves\\}}" Crazy Machines Elements: pageId: 40835 steam: 206410 steamSide: - - 206416 - 206415 + - 206416 templates: - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Crazy Machines Elements\}}' + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Crazy Machines Elements\\}}" Crazy Machines VR: pageId: 121351 steam: 802690 -'Crazy Machines: Golden Gears': +"Crazy Machines: Golden Gears": pageId: 50526 steam: 265240 Crazy Max VR: pageId: 55201 steam: 570910 templates: - - '{{Game data/config|Windows|{{p|localappdata}}/CrazyMaxVR/Saved/Config/WindowsNoEditor}}' - - '{{Game data/saves|Windows|{{p|localappdata}}/CrazyMaxVR/Saved/SaveGames}}' + - "{{Game data/config|Windows|{{p|localappdata}}/CrazyMaxVR/Saved/Config/WindowsNoEditor}}" + - "{{Game data/saves|Windows|{{p|localappdata}}/CrazyMaxVR/Saved/SaveGames}}" Crazy Maze: pageId: 90398 steam: 820170 @@ -35310,7 +34401,7 @@ Crazy Mob: Crazy Mosquito: pageId: 126205 steam: 1008390 -'Crazy Oafish Ultra Blocks: Big Sale': +"Crazy Oafish Ultra Blocks: Big Sale": pageId: 54645 steam: 555620 Crazy Otto: @@ -35334,7 +34425,7 @@ Crazy Saloon VR: Crazy Sapper 3D: pageId: 51290 steam: 529420 -'Crazy Science: Long Run': +"Crazy Science: Long Run": pageId: 91048 steam: 825490 Crazy Scientist: @@ -35361,29 +34452,25 @@ Crazy Tank: Crazy Taxi: pageId: 57938 templates: - - '{{Game data/config|Windows|{{p|game}}\taxi.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\CRAZYTAXI_DC}}' + - "{{Game data/config|Windows|{{p|game}}\\taxi.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\CRAZYTAXI_DC}}" Crazy Taxi (2011): pageId: 166397 steam: 71230 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\SEGA\Crazy - Taxi\config.ini|{{p|userprofile\Documents}}\SEGA\Dreamcast Collection\Crazy Taxi\config.ini}} - - >- - {{Game data/saves|Windows|{{p|userprofile\Documents}}\SEGA\Crazy - Taxi\CRAZYTAXI_DC|{{p|userprofile\Documents}}\SEGA\Dreamcast Collection\Crazy Taxi\CRAZYTAXI_DC}} + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\SEGA\\Crazy Taxi\\config.ini|{{p|userprofile\\Documents}}\\SEGA\\Dreamcast Collection\\Crazy Taxi\\config.ini}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\SEGA\\Crazy Taxi\\CRAZYTAXI_DC|{{p|userprofile\\Documents}}\\SEGA\\Dreamcast Collection\\Crazy Taxi\\CRAZYTAXI_DC}}" Crazy Taxi (Steam): pageId: 22994 steam: 71230 templates: - - '{{Game data/config|Windows|{{p|game}}\input_config.xml|{{p|game}}\keycap_config.xml|{{p|game}}\system_config.xml}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\SEGA\Dreamcast Collection\Crazy Taxi\CRAZYTAXI_DC}}' -'Crazy Taxi 3: High Roller': + - "{{Game data/config|Windows|{{p|game}}\\input_config.xml|{{p|game}}\\keycap_config.xml|{{p|game}}\\system_config.xml}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\SEGA\\Dreamcast Collection\\Crazy Taxi\\CRAZYTAXI_DC}}" +"Crazy Taxi 3: High Roller": pageId: 29152 templates: - - '{{Game data/config|Windows|{{p|game}}\TAXI3.CFG}}' - - '{{Game data/saves|Windows|{{p|game}}\game}}' + - "{{Game data/config|Windows|{{p|game}}\\TAXI3.CFG}}" + - "{{Game data/saves|Windows|{{p|game}}\\game}}" Crazy Toad: pageId: 89314 steam: 716310 @@ -35424,35 +34511,35 @@ Crea: pageId: 17679 steam: 280520 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/saves|Windows|{{p|game}}\characters\|{{p|game}}\worlds\}}' + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\characters\\|{{p|game}}\\worlds\\}}" CreaVures: pageId: 41014 steam: 49810 templates: - - '{{Game data/saves|Windows|{{P|hkcu}}\Software\MuseGames\CreaVures\}}' + - "{{Game data/saves|Windows|{{P|hkcu}}\\Software\\MuseGames\\CreaVures\\}}" Creaks: gog: 1623513243 pageId: 122870 steam: 956030 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Amanita Design\Creaks\}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Amanita Design\Creaks\save\}}' - - '{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/com.amanitadesign.creaks/save/}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Amanita Design\\Creaks\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Amanita Design\\Creaks\\save\\}}" + - "{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/com.amanitadesign.creaks/save/}}" Create: pageId: 173608 templates: - - '{{Game data/saves|Windows|{{p|localappdata}}\Electronic Arts\Create}}' + - "{{Game data/saves|Windows|{{p|localappdata}}\\Electronic Arts\\Create}}" CreateTech: pageId: 154215 steam: 1178700 -'Creatio Ex Nihilo II: Deus Otiosus': +"Creatio Ex Nihilo II: Deus Otiosus": pageId: 79834 steam: 767470 -'Creatio Ex Nihilo III: Amor Dei': +"Creatio Ex Nihilo III: Amor Dei": pageId: 80671 steam: 782060 -'Creatio Ex Nihilo: Aition': +"Creatio Ex Nihilo: Aition": pageId: 78240 steam: 738080 Creation and Conquest:The Future War: @@ -35465,7 +34552,7 @@ Creativerse: pageId: 19217 steam: 280790 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\PlayfulCorp\Creativerse}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\PlayfulCorp\\Creativerse}}" CreatorCrate: pageId: 139728 steam: 1027060 @@ -35473,40 +34560,40 @@ Creatura: pageId: 80711 steam: 781130 templates: - - '{{Game data/config|Windows|{{p|USERPROFILE}}\AppData\LocalLow\Koksny\Creatura\}}' - - '{{Game data/saves|Windows|{{p|USERPROFILE}}\AppData\LocalLow\Koksny\Creatura\}}' + - "{{Game data/config|Windows|{{p|USERPROFILE}}\\AppData\\LocalLow\\Koksny\\Creatura\\}}" + - "{{Game data/saves|Windows|{{p|USERPROFILE}}\\AppData\\LocalLow\\Koksny\\Creatura\\}}" Creature Card Idle: pageId: 153901 steam: 1188260 -'Creature Clicker - Capture, Train, Ascend!': +"Creature Clicker - Capture, Train, Ascend!": pageId: 52285 steam: 529240 templates: - - '{{Game data/saves|Windows|{{p|localappdata}}\Clicker\}}' -'Creature Romances: Kokonoe Kokoro': + - "{{Game data/saves|Windows|{{p|localappdata}}\\Clicker\\}}" +"Creature Romances: Kokonoe Kokoro": pageId: 87910 steam: 356450 templates: - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Sekai Project/Creature Romances ~Kokonoe Kokoro~/}}' - - '{{Game data/saves|Windows|{{p|game}}\save\}}' + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Sekai Project/Creature Romances ~Kokonoe Kokoro~/}}" + - "{{Game data/saves|Windows|{{p|game}}\\save\\}}" Creature in the Well: gog: 1523738129 pageId: 135827 steam: 852300 templates: - - '{{Game data/saves|Windows|{{P|localappdata}}\CITW\Saved}}' + - "{{Game data/saves|Windows|{{P|localappdata}}\\CITW\\Saved}}" Creatures: gog: 1207662233 pageId: 1602 steam: 1818340 templates: - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Creatures\Creatures}}' + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Creatures\\Creatures}}" Creatures 2: gog: 1207662243 pageId: 1613 steam: 1818340 templates: - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Creatures\Creatures 2}}' + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Creatures\\Creatures 2}}" Creatures 3: gog: 1207658812 pageId: 22069 @@ -35528,7 +34615,7 @@ Creatures Village: Credence Filter: pageId: 53988 steam: 557320 -'Creed: Rise to Glory': +"Creed: Rise to Glory": pageId: 98256 steam: 804490 Creekside Creep Invasion: @@ -35540,23 +34627,23 @@ Creep Rides: Creeper World: pageId: 53089 renamedFrom: - - 'Creeper World: Anniversary Editon' + - "Creeper World: Anniversary Editon" steam: 422910 templates: - - '{{Game data/saves|Windows|{{P|appdata}}\CreeperWorld\}}' -'Creeper World 2: Redemption': + - "{{Game data/saves|Windows|{{P|appdata}}\\CreeperWorld\\}}" +"Creeper World 2: Redemption": pageId: 53091 steam: 422920 templates: - - '{{Game data/saves|Windows|{{P|appdata}}\CreeperWorld2\}}' -'Creeper World 3: Arc Eternal': + - "{{Game data/saves|Windows|{{P|appdata}}\\CreeperWorld2\\}}" +"Creeper World 3: Arc Eternal": pageId: 34547 steam: 280220 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\creeperworld3\keys.txt}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/creeperworld3}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\creeperworld3\}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/Documents/creeperworld3}}' + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\creeperworld3\\keys.txt}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/creeperworld3}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\creeperworld3\\}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/Documents/creeperworld3}}" Creeper World 4: gog: 1229872913 pageId: 128762 @@ -35564,14 +34651,14 @@ Creeper World 4: steamSide: - 1293770 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\creeperworld4\settings\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\creeperworld4\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\creeperworld4\\settings\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\creeperworld4\\}}" Creeping Terror: pageId: 74215 steam: 726430 templates: - - '{{Game data/config|Windows|{{P|game}}\data\system}}' - - '{{Game data/saves|Windows|{{P|game}}\data\game*}}' + - "{{Game data/config|Windows|{{P|game}}\\data\\system}}" + - "{{Game data/saves|Windows|{{P|game}}\\data\\game*}}" Creeps Creeps? Creeps!: pageId: 154051 steam: 1152450 @@ -35579,8 +34666,8 @@ Creepy Castle: pageId: 39349 steam: 450440 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\CREEPY_CASTLE_2\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\CREEPY_CASTLE_2\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\CREEPY_CASTLE_2\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\CREEPY_CASTLE_2\\}}" Creepy Races: pageId: 65303 steam: 665950 @@ -35592,20 +34679,20 @@ Creepy Tale: pageId: 156889 steam: 1224020 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\SOFTWARE\DeqafStudio\CreepyTale}}' - - '{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/DeqafStudio/CreepyTale/prefs}}' - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\DeqafStudio\CreepyTale\playerData.deq}}' - - '{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/DeqafStudio/CreepyTale/playerData.deq}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\DeqafStudio\\CreepyTale}}" + - "{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/DeqafStudio/CreepyTale/prefs}}" + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\DeqafStudio\\CreepyTale\\playerData.deq}}" + - "{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/DeqafStudio/CreepyTale/playerData.deq}}" Creepy Tale 2: gog: 1248296550 pageId: 173208 steam: 1550510 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\CreepyBrothers\CreepyTale2}}' - - '{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/CreepyBrothers/CreepyTale2/prefs}}' - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\CreepyBrothers\CreepyTale2\playerData.deq}}' - - '{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/CreepyBrothers/CreepyTale2/playerData.deq}}' -'Creepy Tale 3: Ingrid Penance': + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\CreepyBrothers\\CreepyTale2}}" + - "{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/CreepyBrothers/CreepyTale2/prefs}}" + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\CreepyBrothers\\CreepyTale2\\playerData.deq}}" + - "{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/CreepyBrothers/CreepyTale2/playerData.deq}}" +"Creepy Tale 3: Ingrid Penance": pageId: 173210 steam: 1761780 Creepy Vision: @@ -35623,7 +34710,7 @@ Crescent Hollow: Crest: pageId: 18301 steam: 341710 -'Crew 167: The Grand Block Odyssey': +"Crew 167: The Grand Block Odyssey": pageId: 165786 steam: 772570 Crewsaders: @@ -35637,8 +34724,8 @@ CricVRX - VR Cricket: Cricket 07: pageId: 171717 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\EA SPORTS(TM) Cricket 07\{{P|uid}}.pro }}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\EA SPORTS(TM) Cricket 07\}}' + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\EA SPORTS(TM) Cricket 07\\{{P|uid}}.pro }}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\EA SPORTS(TM) Cricket 07\\}}" Cricket 19: pageId: 136965 steam: 1028630 @@ -35673,54 +34760,50 @@ Cricket Revolution: steam: 25500 Cricket through the Ages: pageId: 147749 -'Crime Boss: Rockay City': +"Crime Boss: Rockay City": pageId: 183637 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\Saved Games\CrimeBoss\Epic\Saved\Config\WindowsNoEditor}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\Saved Games\CrimeBoss\Epic\Saved\SaveGames}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\Saved Games\\CrimeBoss\\Epic\\Saved\\Config\\WindowsNoEditor}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Saved Games\\CrimeBoss\\Epic\\Saved\\SaveGames}}" Crime Cities: gog: 1485600994 pageId: 14710 steam: 1112570 templates: - - '{{Game data/config|Windows|{{p|game}}\SETUP.SCR}}' - - '{{Game data/saves|Windows|{{p|game}}\SaveGame\}}' + - "{{Game data/config|Windows|{{p|game}}\\SETUP.SCR}}" + - "{{Game data/saves|Windows|{{p|game}}\\SaveGame\\}}" Crime Girl: pageId: 109830 steam: 916290 -'Crime Life: Gang Wars': +"Crime Life: Gang Wars": pageId: 59310 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\CrimeLife\}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\CrimeLife\Profiles\}}' -'Crime Opera II: The Floodgate Effect': + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\CrimeLife\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\CrimeLife\\Profiles\\}}" +"Crime Opera II: The Floodgate Effect": pageId: 188983 -'Crime Opera: The Butterfly Effect': +"Crime Opera: The Butterfly Effect": pageId: 143907 steam: 1142010 templates: - - >- - {{Game - data/config|Windows|{{P|appdata}}\RenPy\COTBE-1496841820\persistent|{{P|game}}\Crime_Opera_1_-_The_Butterfly_Effect-1.0-all\game\saves\persistent}} - - >- - {{Game - data/saves|Windows|{{P|appdata}}\RenPy\COTBE-1496841820\*.save|{{P|game}}\Crime_Opera_1_-_The_Butterfly_Effect-1.0-all\game\saves\*.save}} + - "{{Game data/config|Windows|{{P|appdata}}\\RenPy\\COTBE-1496841820\\persistent|{{P|game}}\\Crime_Opera_1_-_The_Butterfly_Effect-1.0-all\\game\\saves\\persistent}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\RenPy\\COTBE-1496841820\\*.save|{{P|game}}\\Crime_Opera_1_-_The_Butterfly_Effect-1.0-all\\game\\saves\\*.save}}" Crime Scene Cleaner: pageId: 130446 steam: 1040200 -'Crime Scene: Reconstruction of Crime': +"Crime Scene: Reconstruction of Crime": pageId: 97361 steam: 850030 -'Crime Secrets: Crimson Lily': +"Crime Secrets: Crimson Lily": pageId: 42349 steam: 465170 -'Crime Solitaire 2: The Smoking Gun': +"Crime Solitaire 2: The Smoking Gun": pageId: 65307 steam: 672720 -'Crime Stories: Days of Vengeance': +"Crime Stories: Days of Vengeance": pageId: 103133 steam: 896110 -'CrimeCraft: GangWars': +"CrimeCraft: GangWars": pageId: 40930 steam: 38830 Crimesight: @@ -35735,11 +34818,11 @@ Criminal Expert: gog: 1716459349 pageId: 184482 steam: 2194660 -'Criminal Girls: Invite Only': +"Criminal Girls: Invite Only": pageId: 51623 steam: 409850 templates: - - '{{Game data/saves|Windows|{{p|game}}\SaveDataFolder\*.dat}}' + - "{{Game data/saves|Windows|{{p|game}}\\SaveDataFolder\\*.dat}}" Criminal Minds: pageId: 90695 Criminal Pursuit Force: @@ -35761,9 +34844,9 @@ Crimson Gray: pageId: 64827 steam: 655770 templates: - - '{{Game data/config|Windows|{{P|appdata}}\renpy\Crimson Gray-1479003098\persistent}}' - - '{{Game data/saves|Windows|{{P|appdata}}\renpy\Crimson Gray-1479003098\*.save}}' -'Crimson Gray: Dusk and Dawn': + - "{{Game data/config|Windows|{{P|appdata}}\\renpy\\Crimson Gray-1479003098\\persistent}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\renpy\\Crimson Gray-1479003098\\*.save}}" +"Crimson Gray: Dusk and Dawn": pageId: 100510 steam: 894460 Crimson Hills: @@ -35799,32 +34882,32 @@ Crimson Shift: Crimson Skies: pageId: 8881 templates: - - '{{Game data/saves|Windows|{{p|game}}\SavedGames\}}' + - "{{Game data/saves|Windows|{{p|game}}\\SavedGames\\}}" Crimson Snow: pageId: 183607 steam: 2067790 templates: - - '{{Game data/config|Windows|\CrimsonSnow\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\CrimsonSnow\Saved\SaveGames\}}' + - "{{Game data/config|Windows|\\CrimsonSnow\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\CrimsonSnow\\Saved\\SaveGames\\}}" Crimson Souls: pageId: 113926 steam: 930470 Crimson Survival: pageId: 88683 steam: 806680 -'Crimson Sword Saga: Tactics Part I': +"Crimson Sword Saga: Tactics Part I": pageId: 70619 steam: 709670 -'Crimson Sword Saga: The Peloran Wars': +"Crimson Sword Saga: The Peloran Wars": pageId: 55584 steam: 497560 -'Crimson Tactics: The Rise of The White Banner': +"Crimson Tactics: The Rise of The White Banner": pageId: 188829 steam: 1480810 templates: - - '{{Game data/config|Windows|{{P|userprofile\appdata\locallow}}\Black March Studios\Crimson Tactics White Banner\}}' - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Black March Studios\Crimson Tactics White Banner\}}' -'Crimson Tide: Operation Online': + - "{{Game data/config|Windows|{{P|userprofile\\appdata\\locallow}}\\Black March Studios\\Crimson Tactics White Banner\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Black March Studios\\Crimson Tactics White Banner\\}}" +"Crimson Tide: Operation Online": pageId: 68589 steam: 684130 Crimson Trigger: @@ -35835,29 +34918,27 @@ Crimsonland: pageId: 22445 steam: 262830 templates: - - '{{Game data/saves|Windows|{{p|appdata}}\10tons\Crimsonland\profiles\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/10tons/Crimsonland/}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/10tons/Crimsonland/}}' + - "{{Game data/saves|Windows|{{p|appdata}}\\10tons\\Crimsonland\\profiles\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/10tons/Crimsonland/}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/10tons/Crimsonland/}}" Crimzon Clover: pageId: 174011 templates: - - '{{Game data/config|Windows|{{p|game}}\data\config.dat}}' - - '{{Game data/saves|Windows|{{p|game}}\data\playData.dat}}' + - "{{Game data/config|Windows|{{p|game}}\\data\\config.dat}}" + - "{{Game data/saves|Windows|{{p|game}}\\data\\playData.dat}}" Crimzon Clover World EXplosion: pageId: 171947 steam: 1718160 templates: - - '{{Game data/config|Windows|{{p|game}}\data\config.dat}}' - - '{{Game data/saves|Windows|{{p|game}}\data\*.dat}}' -'Crimzon Clover: World Ignition': + - "{{Game data/config|Windows|{{p|game}}\\data\\config.dat}}" + - "{{Game data/saves|Windows|{{p|game}}\\data\\*.dat}}" +"Crimzon Clover: World Ignition": gog: 1207666643 pageId: 22373 steam: 285440 templates: - - '{{Game data/config|Windows|{{p|game}}\data\config0000.dat|{{p|game}}\data\keyboardSetting.dat}}' - - >- - {{Game - data/saves|Windows|{{p|game}}\data\bkeep0000.dat|{{p|game}}\data\arcadescore000X.dat|{{p|game}}\data\novicescore000X.dat|{{p|game}}\data\lastEntryLocalName.dat}} + - "{{Game data/config|Windows|{{p|game}}\\data\\config0000.dat|{{p|game}}\\data\\keyboardSetting.dat}}" + - "{{Game data/saves|Windows|{{p|game}}\\data\\bkeep0000.dat|{{p|game}}\\data\\arcadescore000X.dat|{{p|game}}\\data\\novicescore000X.dat|{{p|game}}\\data\\lastEntryLocalName.dat}}" Cris Tales: gog: 1623867313 gogSide: @@ -35868,21 +34949,15 @@ Cris Tales: - 1087390 - 1642180 templates: - - '{{Game data/config|Windows|{{p|HKCU}}\Software\Dreams Uncorpored LLC\Cristales\}}' - - >- - {{Game data/saves|Windows|{{p|userprofile\AppData\LocalLow}}\Dreams Uncorpored - LLC\Cristales\CristalesSaveData.csd}} - - >- - {{Game data/saves|Epic Games Launcher|{{p|userprofile\AppData\LocalLow}}\Dreams Uncorpored - LLC\Cristales\CristalesSaveDataepic.csd}} -'Crisis Core: Final Fantasy VII Reunion': + - "{{Game data/config|Windows|{{p|HKCU}}\\Software\\Dreams Uncorpored LLC\\Cristales\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\AppData\\LocalLow}}\\Dreams Uncorpored LLC\\Cristales\\CristalesSaveData.csd}}" + - "{{Game data/saves|Epic Games Launcher|{{p|userprofile\\AppData\\LocalLow}}\\Dreams Uncorpored LLC\\Cristales\\CristalesSaveDataepic.csd}}" +"Crisis Core: Final Fantasy VII Reunion": pageId: 178322 steam: 1608070 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\CCFF7R\Saved\Config\WindowsNoEditor\}}' - - >- - {{Game data/saves|Windows|{{P|userprofile\Documents}}\My Games\CRISIS CORE FINAL FANTASY VII - REUNION\Steam\{{P|uid}}\}} + - "{{Game data/config|Windows|{{P|localappdata}}\\CCFF7R\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\My Games\\CRISIS CORE FINAL FANTASY VII REUNION\\Steam\\{{P|uid}}\\}}" Crisis VRigade: pageId: 112752 steam: 939000 @@ -35920,7 +34995,7 @@ Critical Mass: pageId: 5601 steam: 105300 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\SOFTWARE\Manic\CriticalMass\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\Manic\\CriticalMass\\}}" Critical Mess: pageId: 80366 steam: 780000 @@ -35931,8 +35006,8 @@ Critter Crunch: pageId: 21677 steam: 61730 templates: - - '{{Game data/config|Steam|{{P|Steam}}/userdata/{{p|uid}}/61730/local/config.txt}}' - - '{{Game data/saves|Steam|{{P|Steam}}/userdata/{{p|uid}}/61730/remote/sav/}}' + - "{{Game data/config|Steam|{{P|Steam}}/userdata/{{p|uid}}/61730/local/config.txt}}" + - "{{Game data/saves|Steam|{{P|Steam}}/userdata/{{p|uid}}/61730/remote/sav/}}" Critter Kart: pageId: 144861 steam: 937520 @@ -35954,18 +35029,18 @@ CroNix: Croc 2: pageId: 25170 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/saves|Windows|{{p|game}}\}}' -Croc's World 3: + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\}}" +"Croc's World 3": pageId: 177574 -Croc's World Construction Kit: +"Croc's World Construction Kit": pageId: 91977 steam: 831910 -'Croc: Legend of the Gobbos': +"Croc: Legend of the Gobbos": pageId: 22400 templates: - - '{{Game data/config|Windows|{{p|hklm}}\SOFTWARE\{{p|wow64}}\Argonaut Software\Croc|{{p|game}}\key.txt}}' - - '{{Game data/saves|Windows|{{P|game}}\}}' + - "{{Game data/config|Windows|{{p|hklm}}\\SOFTWARE\\{{p|wow64}}\\Argonaut Software\\Croc|{{p|game}}\\key.txt}}" + - "{{Game data/saves|Windows|{{P|game}}\\}}" CrocApoca!! Crocodile Maiden at the End of the World: pageId: 164376 steam: 1294620 @@ -35975,21 +35050,21 @@ CrocoMars: Croixleur: pageId: 155100 templates: - - '{{Game data/config|Windows|{{p|game}}\setup.dat|{{p|game}}\Croixleur.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\save.dat}}' + - "{{Game data/config|Windows|{{p|game}}\\setup.dat|{{p|game}}\\Croixleur.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\save.dat}}" Croixleur Sigma: pageId: 50344 steam: 250640 templates: - - '{{Game data/config|Windows|{{p|game}}\Setup.dat|{{p|game}}\CroixleurSE.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\Save.dat}}' + - "{{Game data/config|Windows|{{p|game}}\\Setup.dat|{{p|game}}\\CroixleurSE.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\Save.dat}}" Croixleur Sigma - Deluxe Edition: pageId: 155124 steam: 1052440 templates: - - '{{Game data/config|Windows|{{p|game}}\CroixleurConfig.bin|{{p|game}}\CroixleurPad.bin|{{p|game}}\Setting.ini }}' - - '{{Game data/saves|Windows|{{p|game}}\CroixleurSave.bin}}' -'Crome: Before Purgatory': + - "{{Game data/config|Windows|{{p|game}}\\CroixleurConfig.bin|{{p|game}}\\CroixleurPad.bin|{{p|game}}\\Setting.ini }}" + - "{{Game data/saves|Windows|{{p|game}}\\CroixleurSave.bin}}" +"Crome: Before Purgatory": pageId: 123385 steam: 980950 Croneworld RPG - Chapter 1: @@ -36006,9 +35081,9 @@ Crookz - The Big Heist: pageId: 34332 steam: 310490 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Kalypso Media\Crookz\Config\}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/Kalypso Media/Crookz/Config/}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Kalypso Media\Crookz\saves\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Kalypso Media\\Crookz\\Config\\}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/Kalypso Media/Crookz/Config/}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Kalypso Media\\Crookz\\saves\\}}" Crop Dusta: pageId: 150067 steam: 989120 @@ -36046,8 +35121,8 @@ Cross Racing Championship 2005: pageId: 22671 steam: 925550 templates: - - '{{Game data/config|Windows|{{P|game}}\save\controls\|{{P|game}}\save\game\}}' - - '{{Game data/saves|Windows|{{P|game}}\save\bestlaps\|{{P|game}}\save\career\}}' + - "{{Game data/config|Windows|{{P|game}}\\save\\controls\\|{{P|game}}\\save\\game\\}}" + - "{{Game data/saves|Windows|{{P|game}}\\save\\bestlaps\\|{{P|game}}\\save\\career\\}}" Cross Set: pageId: 38390 steam: 415400 @@ -36067,12 +35142,10 @@ Cross of the Dutchman: pageId: 46508 steam: 384000 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\appdata\locallow}}\Triangle Studios\Cross of the - Dutchman\Settings.SET}} - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Triangle Studios/Cross of the Dutchman/}}' - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\Triangle Studios\Cross of the Dutchman\}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Triangle Studios/Cross of the Dutchman/}}' + - "{{Game data/config|Windows|{{p|userprofile\\appdata\\locallow}}\\Triangle Studios\\Cross of the Dutchman\\Settings.SET}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Triangle Studios/Cross of the Dutchman/}}" + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\Triangle Studios\\Cross of the Dutchman\\}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Triangle Studios/Cross of the Dutchman/}}" Cross-Stitch Puzzle: pageId: 89373 steam: 808950 @@ -36080,77 +35153,70 @@ CrossCells: pageId: 62580 steam: 632000 templates: - - '{{Game data/config|Windows|{{P|game}}\saves\options.save|{{P|hkcu}}\Software\Matthew Brown\CrossCells\}}' - - '{{Game data/config|Linux|{{P|game}}/saves/options.save|{{P|xdgconfighome}}/unity3d/Matthew Brown/CrossCells/pref}}' - - '{{Game data/saves|Windows|{{P|game}}\saves\slot*.save}}' - - '{{Game data/saves|Linux|{{P|game}}/saves/slot*.save}}' + - "{{Game data/config|Windows|{{P|game}}\\saves\\options.save|{{P|hkcu}}\\Software\\Matthew Brown\\CrossCells\\}}" + - "{{Game data/config|Linux|{{P|game}}/saves/options.save|{{P|xdgconfighome}}/unity3d/Matthew Brown/CrossCells/pref}}" + - "{{Game data/saves|Windows|{{P|game}}\\saves\\slot*.save}}" + - "{{Game data/saves|Linux|{{P|game}}/saves/slot*.save}}" CrossCode: gog: 1252295864 gogSide: - - 1927482349 - - 1473356880 - - 2088603797 - - 2000218216 - 1294860647 + - 1473356880 + - 1927482349 + - 2000218216 + - 2088603797 pageId: 31713 steam: 368340 steamSide: + - 916190 - 960310 - 1517030 - 1517040 - - 916190 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\CrossCode\cc.save}}' - - >- - {{Game data/config|Microsoft - Store|{{p|localappdata}}\Packages\DECK13.CrossCodePC_rn1dn9jh54zft\LocalCache\Local\CrossCode\cc.save}} - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/CrossCode/Default/Local Storage}}' - - '{{Game data/config|Linux|{{P|xdgconfighome}}/CrossCode/Default/cc.save}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\CrossCode\cc.save}}' - - >- - {{Game data/saves|Microsoft - Store|{{p|localappdata}}\Packages\DECK13.CrossCodePC_rn1dn9jh54zft\LocalCache\Local\CrossCode\cc.save}} - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/CrossCode/Default/Local Storage}}' - - '{{Game data/saves|Linux|{{P|xdgconfighome}}/CrossCode/Default/cc.save}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\CrossCode\\cc.save}}" + - "{{Game data/config|Microsoft Store|{{p|localappdata}}\\Packages\\DECK13.CrossCodePC_rn1dn9jh54zft\\LocalCache\\Local\\CrossCode\\cc.save}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/CrossCode/Default/Local Storage}}" + - "{{Game data/config|Linux|{{P|xdgconfighome}}/CrossCode/Default/cc.save}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\CrossCode\\cc.save}}" + - "{{Game data/saves|Microsoft Store|{{p|localappdata}}\\Packages\\DECK13.CrossCodePC_rn1dn9jh54zft\\LocalCache\\Local\\CrossCode\\cc.save}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/CrossCode/Default/Local Storage}}" + - "{{Game data/saves|Linux|{{P|xdgconfighome}}/CrossCode/Default/cc.save}}" CrossFire: pageId: 186115 -'CrossSide: The Prison': +"CrossSide: The Prison": pageId: 94360 steam: 790140 CrossTrix: pageId: 125252 steam: 1003690 -'CrossWorlds: Escape': +"CrossWorlds: Escape": pageId: 51635 steam: 511430 Crossbow Warrior - The Legend of William Tell: pageId: 34685 steam: 412010 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\MobyDick Games\Crossbow Warrior\}}' -'Crossbow: Bloodnight': + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\MobyDick Games\\Crossbow Warrior\\}}" +"Crossbow: Bloodnight": pageId: 165616 renamedFrom: - - 'CROSSBOW: Bloodnight' + - "CROSSBOW: Bloodnight" steam: 1329540 templates: - - >- - {{Game data/config|Windows|{{P|userprofile\appdata\locallow}}\Hyperstrange\CROSSBOW_ - Bloodnight\settings.cfg|{{P|userprofile\appdata\locallow}}\Hyperstrange\CROSSBOW_ - Bloodnight\input.cfg|{{P|hkcu}}\Software\Hyperstrange\CROSSBOW: Bloodnight\}} + - "{{Game data/config|Windows|{{P|userprofile\\appdata\\locallow}}\\Hyperstrange\\CROSSBOW_ Bloodnight\\settings.cfg|{{P|userprofile\\appdata\\locallow}}\\Hyperstrange\\CROSSBOW_ Bloodnight\\input.cfg|{{P|hkcu}}\\Software\\Hyperstrange\\CROSSBOW: Bloodnight\\}}" Crossed Swords: pageId: 168891 Crosser: pageId: 143865 steam: 1124510 -'Crossfire: Dungeons': +"Crossfire: Dungeons": pageId: 47843 steam: 369370 -'Crossfire: Legion': +"Crossfire: Legion": pageId: 174435 steam: 1072190 templates: - - '{{Game data/saves|Windows|{{p|game}}\Save}}' + - "{{Game data/saves|Windows|{{p|game}}\\Save}}" CrossfireHD: pageId: 162933 CrossfireX: @@ -36163,18 +35229,18 @@ Crossing Souls: pageId: 55618 steam: 331690 templates: - - '{{Game data/config|Windows|{{P|userprofile}}\AppData\LocalLow\Fourattic\Crossing Souls\Config.cfg}}' - - '{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/Fourattic/Crossing Souls/Config.cfg}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Fourattic\Crossing Souls\GameSave.sav}}' - - '{{Game data/saves|Steam|{{P|userprofile}}\AppData\LocalLow\Fourattic\Crossing Souls\{{p|uid}}\GameSave.sav}}' - - '{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/Fourattic/Crossing Souls/{{p|uid}}/GameSave.sav}}' + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Fourattic\\Crossing Souls\\Config.cfg}}" + - "{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/Fourattic/Crossing Souls/Config.cfg}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Fourattic\\Crossing Souls\\GameSave.sav}}" + - "{{Game data/saves|Steam|{{P|userprofile}}\\AppData\\LocalLow\\Fourattic\\Crossing Souls\\{{p|uid}}\\GameSave.sav}}" + - "{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/Fourattic/Crossing Souls/{{p|uid}}/GameSave.sav}}" Crossout: pageId: 36862 steam: 386180 Crossroad: pageId: 80643 steam: 778150 -'Crossroad Mysteries: The Broken Deal': +"Crossroad Mysteries: The Broken Deal": pageId: 69569 steam: 558490 Crossroads Extreme: @@ -36185,9 +35251,9 @@ Crossroads Inn: pageId: 105647 steam: 867290 templates: - - '{{Game data/config|Windows|{{P|game}}\settings.txt}}' - - '{{Game data/saves|Windows|{{P|game}}\Save}}' -'Crossroads: Roguelike RPG Dungeon Crawler': + - "{{Game data/config|Windows|{{P|game}}\\settings.txt}}" + - "{{Game data/saves|Windows|{{P|game}}\\Save}}" +"Crossroads: Roguelike RPG Dungeon Crawler": pageId: 124407 steam: 987210 Crossy Road: @@ -36209,29 +35275,27 @@ Crowd Simulator: Crowd Smashers: pageId: 61518 steam: 606670 -'Crowe: The Drowned Armory': +"Crowe: The Drowned Armory": pageId: 62912 steam: 543410 Crowman & Wolfboy: pageId: 44982 steam: 339590 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Wither Studios\C & W\}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Wither Studios\C ___ W\}}' -'Crown Champion: Legends of the Arena': + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Wither Studios\\C & W\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Wither Studios\\C ___ W\\}}" +"Crown Champion: Legends of the Arena": pageId: 51459 steam: 527710 templates: - - '{{Game data/config|Windows|{{P|game}}\www\save\config.rpgsave}}' - - '{{Game data/saves|Windows|{{P|game}}\www\save\{{code|*}}.rpgsave}}' + - "{{Game data/config|Windows|{{P|game}}\\www\\save\\config.rpgsave}}" + - "{{Game data/saves|Windows|{{P|game}}\\www\\save\\{{code|*}}.rpgsave}}" Crown Trick: pageId: 126379 steam: 1000010 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\NExT - Studios\CrownTrick\Setting.txt|{{P|hkcu}}\Software\NExT Studios\CrownTrick\}} - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\NExT Studios\CrownTrick\save_data\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\NExT Studios\\CrownTrick\\Setting.txt|{{P|hkcu}}\\Software\\NExT Studios\\CrownTrick\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\NExT Studios\\CrownTrick\\save_data\\}}" Crown and Council: pageId: 43436 steam: 444250 @@ -36241,24 +35305,22 @@ Crown of Worlds: CrownFall: pageId: 66466 steam: 683730 -'Crowns and Pawns: Kingdom of Deceit': +"Crowns and Pawns: Kingdom of Deceit": gog: 1195726099 pageId: 145566 steam: 1125910 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Tag of Joy\Crowns and Pawns}}' - - '{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/Tag of Joy/Crowns and Pawns/prefs}}' - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Tag of Joy\Crowns and Pawns\{{P|uid}}\saves\}}' - - '{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/Tag of Joy/Crowns and Pawns/{{P|uid}}/saves/}}' - - '{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/Tag of Joy/Crowns and Pawns/{{P|uid}}/saves/}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Tag of Joy\\Crowns and Pawns}}" + - "{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/Tag of Joy/Crowns and Pawns/prefs}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Tag of Joy\\Crowns and Pawns\\{{P|uid}}\\saves\\}}" + - "{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/Tag of Joy/Crowns and Pawns/{{P|uid}}/saves/}}" + - "{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/Tag of Joy/Crowns and Pawns/{{P|uid}}/saves/}}" Crowntakers: pageId: 27745 steam: 294370 templates: - - >- - {{Game data/config|Windows|{{p|hkcu}}\SOFTWARE\Bulwark - Studios\Crowntakers\|{{p|userprofile}}\AppData\LocalLow\Bulwark Studios\Crowntakers\}} - - '{{Game data/saves|Windows|{{p|game}}\Saves\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\Bulwark Studios\\Crowntakers\\|{{p|userprofile}}\\AppData\\LocalLow\\Bulwark Studios\\Crowntakers\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\Saves\\}}" Crowtel Renovations: pageId: 55829 steam: 573520 @@ -36268,10 +35330,10 @@ Crucial Throw: Crucible: pageId: 160057 steam: 1057240 -'Crucible Falls: Together Forever': +"Crucible Falls: Together Forever": pageId: 92025 steam: 834750 -'Crucible Trails : Initial Rupture': +"Crucible Trails : Initial Rupture": pageId: 87241 steam: 707560 Crudelis: @@ -36287,8 +35349,8 @@ Cruelty Squad: pageId: 167038 steam: 1388770 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Godot\app_userdata\Cruelty Squad}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Godot\app_userdata\Cruelty Squad}}' + - "{{Game data/config|Windows|{{p|appdata}}\\Godot\\app_userdata\\Cruelty Squad}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Godot\\app_userdata\\Cruelty Squad}}" Cruentis The Murderer vol.1: pageId: 70162 steam: 674120 @@ -36300,10 +35362,10 @@ Crumble: pageId: 135771 steam: 1061180 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\Brute Force\Crumble}}' - - '{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/Brute Force/Crumble/GameInformation.xml}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Brute Force\Crumble}}' - - '{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/Brute Force/Crumble/GraphicsSettings.xml}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Brute Force\\Crumble}}" + - "{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/Brute Force/Crumble/GameInformation.xml}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Brute Force\\Crumble}}" + - "{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/Brute Force/Crumble/GraphicsSettings.xml}}" Crumbled World: pageId: 53936 steam: 542910 @@ -36314,13 +35376,13 @@ Crumple Zone: pageId: 135373 steam: 785760 templates: - - '{{Game data/config|Windows|{{p|userprofile\appdata\locallow}}\OutOfTune\CrumpleZone01\pld.dat}}' -'Crumple: Episode 1': + - "{{Game data/config|Windows|{{p|userprofile\\appdata\\locallow}}\\OutOfTune\\CrumpleZone01\\pld.dat}}" +"Crumple: Episode 1": pageId: 158800 Crunch: pageId: 138904 steam: 1091260 -'Crunch Element: VR Infiltration': +"Crunch Element: VR Infiltration": pageId: 139395 steam: 1090250 Crunch Time!: @@ -36345,32 +35407,32 @@ Crusader Kings II: pageId: 411 steam: 203770 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Paradox Interactive\Crusader Kings II\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Paradox Interactive/Crusader Kings II/}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.paradoxinteractive/Crusader Kings II/}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Paradox Interactive\Crusader Kings II\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Paradox Interactive/Crusader Kings II/}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.paradoxinteractive/Crusader Kings II/}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Paradox Interactive\\Crusader Kings II\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Paradox Interactive/Crusader Kings II/}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.paradoxinteractive/Crusader Kings II/}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Paradox Interactive\\Crusader Kings II\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Paradox Interactive/Crusader Kings II/}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.paradoxinteractive/Crusader Kings II/}}" Crusader Kings III: pageId: 148203 steam: 1158310 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\Paradox Interactive\Crusader Kings III\}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.local/share/Paradox Interactive/Crusader Kings III}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\Paradox Interactive\Crusader Kings III\save games\}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.local/share/Paradox Interactive/Crusader Kings III/save games}}' -'Crusader: No Regret': + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\Paradox Interactive\\Crusader Kings III\\}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.local/share/Paradox Interactive/Crusader Kings III}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\Paradox Interactive\\Crusader Kings III\\save games\\}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.local/share/Paradox Interactive/Crusader Kings III/save games}}" +"Crusader: No Regret": gog: 1207658982 pageId: 22515 templates: - - '{{Game data/config|DOS|{{p|game}}\Crusader.cfg}}' - - '{{Game data/saves|DOS|{{p|game}}\SAVEGAME}}' -'Crusader: No Remorse': + - "{{Game data/config|DOS|{{p|game}}\\Crusader.cfg}}" + - "{{Game data/saves|DOS|{{p|game}}\\SAVEGAME}}" +"Crusader: No Remorse": gog: 1207658933 pageId: 20626 templates: - - '{{Game data/config|DOS|{{p|game}}\Crusader.cfg}}' - - '{{Game data/saves|DOS|{{p|game}}\SAVEGAME\}}' + - "{{Game data/config|DOS|{{p|game}}\\Crusader.cfg}}" + - "{{Game data/saves|DOS|{{p|game}}\\SAVEGAME\\}}" Crusaders of Light: pageId: 89202 steam: 775220 @@ -36378,12 +35440,12 @@ Crusaders of Might and Magic: gog: 1207658956 pageId: 8554 templates: - - '{{Game data/config|Windows|{{p|game}}\Gamers\latest.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\Gamers\*.sav}}' + - "{{Game data/config|Windows|{{p|game}}\\Gamers\\latest.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\Gamers\\*.sav}}" Crusaders of the Lost Idols: pageId: 46082 steam: 402840 -'Crusaders: Thy Kingdom Come': +"Crusaders: Thy Kingdom Come": pageId: 22260 steam: 24410 Crush: @@ -36399,8 +35461,8 @@ Crush Crush: pageId: 35750 steam: 459820 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Sad Panda Studios\Crush Crush\}}' - - '{{Game data/saves|Windows|{{P|hkcu}}\Software\Sad Panda Studios\Crush Crush\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Sad Panda Studios\\Crush Crush\\}}" + - "{{Game data/saves|Windows|{{P|hkcu}}\\Software\\Sad Panda Studios\\Crush Crush\\}}" Crush Online: pageId: 39035 steam: 475630 @@ -36420,10 +35482,8 @@ Cry of Fear: pageId: 6648 steam: 223710 templates: - - '{{Game data/config|Windows|{{p|game}}\cryoffear\autoexec.cfg}}' - - |- - {{Game data/saves|Windows|{{p|game}}\SAVE\| - {{p|game}}\cryoffear\scriptsettings.dat}} + - "{{Game data/config|Windows|{{p|game}}\\cryoffear\\autoexec.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\SAVE\\|\n{{p|game}}\\cryoffear\\scriptsettings.dat}}" Cry of War: pageId: 87149 steam: 798840 @@ -36438,9 +35498,9 @@ Crying Suns: pageId: 98522 steam: 873940 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Alt Shift\Crying Suns\}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Alt Shift\Crying Suns\saves\}}' - - '{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/unity.Alt Shift.Crying Suns/saves}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Alt Shift\\Crying Suns\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Alt Shift\\Crying Suns\\saves\\}}" + - "{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/unity.Alt Shift.Crying Suns/saves}}" Cryline: pageId: 68643 steam: 693440 @@ -36448,8 +35508,8 @@ Crymachina: pageId: 190512 steam: 2258500 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\CRYMACHINA\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\CRYMACHINA\Saved\SaveGames\{{P|uid}}\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\CRYMACHINA\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\CRYMACHINA\\Saved\\SaveGames\\{{P|uid}}\\}}" CryoFall: pageId: 108938 steam: 829590 @@ -36461,8 +35521,8 @@ Cryostasis: pageId: 1454 steam: 7850 templates: - - '{{Game data/config|Windows|{{p|game}}\config.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\Data\Save\}}' + - "{{Game data/config|Windows|{{p|game}}\\config.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\Data\\Save\\}}" Crypt: pageId: 81741 steam: 789620 @@ -36477,8 +35537,8 @@ Crypt of the NecroDancer: gogSide: - 1432925124 - 1432925592 - - 1604766360 - 1439377578 + - 1604766360 - 1981284042 - 2105882438 pageId: 24538 @@ -36491,12 +35551,12 @@ Crypt of the NecroDancer: - 379400 - 2094810 templates: - - '{{Game data/config|Windows|{{P|game}}\data\save_data.xml}}' - - '{{Game data/config|Steam|{{P|steam}}/userdata/{{p|uid}}/247080/remote/save_data.xml}}' - - '{{Game data/config|Linux|{{P|game}}/data/save_data.xml}}' - - '{{Game data/saves|Windows|{{P|game}}\data\save_data.xml}}' - - '{{Game data/saves|Steam|{{P|steam}}/userdata/{{p|uid}}/247080/remote/save_data.xml}}' - - '{{Game data/saves|Linux|{{P|game}}/data/save_data.xml}}' + - "{{Game data/config|Windows|{{P|game}}\\data\\save_data.xml}}" + - "{{Game data/config|Steam|{{P|steam}}/userdata/{{p|uid}}/247080/remote/save_data.xml}}" + - "{{Game data/config|Linux|{{P|game}}/data/save_data.xml}}" + - "{{Game data/saves|Windows|{{P|game}}\\data\\save_data.xml}}" + - "{{Game data/saves|Steam|{{P|steam}}/userdata/{{p|uid}}/247080/remote/save_data.xml}}" + - "{{Game data/saves|Linux|{{P|game}}/data/save_data.xml}}" Crypt of the Serpent King: pageId: 55209 steam: 528730 @@ -36507,19 +35567,19 @@ Cryptark: pageId: 28956 steam: 344740 templates: - - '{{Game data/config|Windows|{{p|game}}\Content\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Cryptark/}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/Cryptark/}}' - - '{{Game data/saves|Windows|{{p|game}}\Content\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Cryptark/}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/Cryptark/}}' + - "{{Game data/config|Windows|{{p|game}}\\Content\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Cryptark/}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/Cryptark/}}" + - "{{Game data/saves|Windows|{{p|game}}\\Content\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Cryptark/}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/Cryptark/}}" Crypterion: pageId: 137096 steam: 1048860 Crypto Crisis: pageId: 113504 steam: 889720 -'Crypto Crisis: Education Edition': +"Crypto Crisis: Education Edition": pageId: 127815 steam: 1022320 Crypto Girl The Visual Novel: @@ -36531,17 +35591,15 @@ Crypto Girls SEXCoin: Crypto Quest: pageId: 90166 steam: 819640 -'Crypto: Against All Odds': +"Crypto: Against All Odds": gog: 1814660496 pageId: 154144 renamedFrom: - Crypto Against All Odds steam: 1200900 templates: - - >- - {{Game data/config|Windows|{{P|userprofile\appdata\locallow}}\Pictagor - Games\CAAO\PlayerPrefs.config|{{P|hkcu}}\SOFTWARE\Pictagor Games\CAAO\}} - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Pictagor Games\CAAO\CryptoAgainstAllOdds.save}}' + - "{{Game data/config|Windows|{{P|userprofile\\appdata\\locallow}}\\Pictagor Games\\CAAO\\PlayerPrefs.config|{{P|hkcu}}\\SOFTWARE\\Pictagor Games\\CAAO\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Pictagor Games\\CAAO\\CryptoAgainstAllOdds.save}}" CryptoFarm: pageId: 107788 steam: 916980 @@ -36557,7 +35615,7 @@ Cryptocracy: Cryptocurrency Clicker: pageId: 90518 steam: 820750 -'Cryptofall: Investor simulator': +"Cryptofall: Investor simulator": pageId: 150820 steam: 996180 Cryptographer: @@ -36567,8 +35625,8 @@ Cryptozookeeper: pageId: 99204 steam: 868910 templates: - - '{{Game data/config|Windows|{{p|game}}\czk.cfg|{{p|game}}\czk.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\czk.sav}}' + - "{{Game data/config|Windows|{{p|game}}\\czk.cfg|{{p|game}}\\czk.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\czk.sav}}" Cryptrunner: pageId: 135167 steam: 1030410 @@ -36580,55 +35638,55 @@ Crysis: - 306510 - 325670 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Crysis\game.cfg}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Crysis\SaveGames}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Crysis\\game.cfg}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Crysis\\SaveGames}}" Crysis 2: pageId: 1505 steam: 108800 steamSide: - 99830 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\Saved Games\Crysis2\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\Saved Games\Crysis2\SaveGames\}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\Saved Games\\Crysis2\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Saved Games\\Crysis2\\SaveGames\\}}" Crysis 2 Remastered: pageId: 172186 steam: 2096600 templates: - - '{{Game data/config|Windows|{{p|game}}\system.cfg|{{p|userprofile}}\Saved Games\Crysis2Remastered\game.cfg}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\Saved Games\Crysis2Remastered\SaveGames\}}' + - "{{Game data/config|Windows|{{p|game}}\\system.cfg|{{p|userprofile}}\\Saved Games\\Crysis2Remastered\\game.cfg}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Saved Games\\Crysis2Remastered\\SaveGames\\}}" Crysis 3: pageId: 3746 steam: 1282690 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\Saved Games\Crysis3}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\Saved Games\Crysis3\SaveGames\|{{P|game}}\Crysis 3\USER\SaveGames\}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\Saved Games\\Crysis3}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Saved Games\\Crysis3\\SaveGames\\|{{P|game}}\\Crysis 3\\USER\\SaveGames\\}}" Crysis 3 Remastered: pageId: 172190 steam: 2096610 templates: - - '{{Game data/config|Windows|{{p|game}}\system.cfg|{{p|userprofile}}\Saved Games\Crysis3Remastered\game.cfg}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\Saved Games\Crysis3Remastered\SaveGames\}}' + - "{{Game data/config|Windows|{{p|game}}\\system.cfg|{{p|userprofile}}\\Saved Games\\Crysis3Remastered\\game.cfg}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Saved Games\\Crysis3Remastered\\SaveGames\\}}" Crysis 4: pageId: 174718 Crysis Remastered: pageId: 159272 steam: 1715130 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\Saved Games\CrysisRemastered\Profiles\{{P|uid}}}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\Saved Games\CrysisRemastered\SaveGames}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\Saved Games\\CrysisRemastered\\Profiles\\{{P|uid}}}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Saved Games\\CrysisRemastered\\SaveGames}}" Crysis Warhead: gog: 1666511461 gogSide: - 1856743450 pageId: 6282 renamedFrom: - - 'Crysis: Warhead' + - "Crysis: Warhead" steam: 17330 steamSide: - 17340 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Crysis_WARHEAD\game.cfg}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Crysis_WARHEAD\SaveGames}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Crysis_WARHEAD\\game.cfg}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Crysis_WARHEAD\\SaveGames}}" Crystal Brawl: pageId: 180617 Crystal Catacombs: @@ -36639,20 +35697,18 @@ Crystal Caves: pageId: 22370 steam: 358260 templates: - - '{{Game data/config|DOS|{{p|game}}\CC*.CFG}}' - - '{{Game data/saves|DOS|{{p|game}}\CC*-*.SAV|{{p|game}}\CC*.HS}}' + - "{{Game data/config|DOS|{{p|game}}\\CC*.CFG}}" + - "{{Game data/saves|DOS|{{p|game}}\\CC*-*.SAV|{{p|game}}\\CC*.HS}}" Crystal Caves HD: gog: 2067281194 pageId: 163526 steam: 1330890 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Apogee Software\Crystal Caves HD}}' - - '{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/Apogee Software/Crystal Caves HD/prefs}}' - - '{{Game data/saves|Windows|{{p|userprofile\AppData\LocalLow}}\Apogee Software\Crystal Caves HD\Saves\}}' - - '{{Game data/saves|GOG.com|{{p|userprofile\appdata\locallow}}\Apogee Software\Crystal Caves HD\Gog\Saves\}}' - - >- - {{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/Apogee Software/Crystal Caves HD/Gog/Saves/{{Note|note=GOG - version.}}}} + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Apogee Software\\Crystal Caves HD}}" + - "{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/Apogee Software/Crystal Caves HD/prefs}}" + - "{{Game data/saves|Windows|{{p|userprofile\\AppData\\LocalLow}}\\Apogee Software\\Crystal Caves HD\\Saves\\}}" + - "{{Game data/saves|GOG.com|{{p|userprofile\\appdata\\locallow}}\\Apogee Software\\Crystal Caves HD\\Gog\\Saves\\}}" + - "{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/Apogee Software/Crystal Caves HD/Gog/Saves/{{Note|note=GOG version.}}}}" Crystal Chameleon: pageId: 125221 steam: 989110 @@ -36676,8 +35732,8 @@ Crystal Crisis: pageId: 140403 steam: 447700 templates: - - '{{Game data/config|Windows|{{P|userprofile\appdata\locallow}}\Nicalis\Crystal Crisis}}' - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Nicalis\Crystal Crisis}}' + - "{{Game data/config|Windows|{{P|userprofile\\appdata\\locallow}}\\Nicalis\\Crystal Crisis}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Nicalis\\Crystal Crisis}}" Crystal Defense: pageId: 141636 steam: 1108660 @@ -36700,12 +35756,10 @@ Crystal Project: pageId: 176787 steam: 1637730 templates: - - >- - {{Game data/config|Windows|{{p|userprofile}}\Saved Games\Crystal Project\settings.ini|{{p|userprofile}}\Saved - Games\Crystal Project\controls.ini}} - - '{{Game data/config|Linux|{{P|xdgdatahome}}/Crystal Project|}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\Saved Games\Crystal Project\Save\*.sav}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/Crystal Project/Save}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\Saved Games\\Crystal Project\\settings.ini|{{p|userprofile}}\\Saved Games\\Crystal Project\\controls.ini}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/Crystal Project|}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Saved Games\\Crystal Project\\Save\\*.sav}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/Crystal Project/Save}}" Crystal Quest Classic: pageId: 53860 steam: 497510 @@ -36716,24 +35770,24 @@ Crystal Rift: pageId: 43889 steam: 345140 templates: - - '{{Game data/saves|Windows| %userprofile%\appdata\LocalLow\Psytec Games Ltd\Crystal Rift\SaveGames\CrystalRift }}' + - "{{Game data/saves|Windows| %userprofile%\\appdata\\LocalLow\\Psytec Games Ltd\\Crystal Rift\\SaveGames\\CrystalRift }}" Crystal Shard Adventure Bundle: pageId: 55137 steam: 551840 templates: - - '{{Game data/config|Windows|{{P|game}}\acsetup.cfg|{{P|game}}\allegro.cfg}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\Saved Games\Crystal Shard\}}' + - "{{Game data/config|Windows|{{P|game}}\\acsetup.cfg|{{P|game}}\\allegro.cfg}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\Saved Games\\Crystal Shard\\}}" Crystal Story II: pageId: 37721 steam: 344860 templates: - - '{{Game data/saves|Windows|{{p|appdata}}\com.emmanuelsalvacruz.crystalstory2\Local Store\#SharedObjects\*.sol}}' + - "{{Game data/saves|Windows|{{p|appdata}}\\com.emmanuelsalvacruz.crystalstory2\\Local Store\\#SharedObjects\\*.sol}}" Crystal Towers 2 XL: pageId: 46913 steam: 340250 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Crystal Towers 2 SE\config.ini}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Crystal Towers 2 SE\save}}' + - "{{Game data/config|Windows|{{p|appdata}}\\Crystal Towers 2 SE\\config.ini}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Crystal Towers 2 SE\\save}}" Crystal Vibes feat. Ott.: pageId: 62552 steam: 623040 @@ -36753,7 +35807,7 @@ Crystals of Arborea: gog: 1207662333 pageId: 13095 templates: - - '{{Game data/saves|DOS|{{p|game}}\*.DAT}}' + - "{{Game data/saves|DOS|{{p|game}}\\*.DAT}}" Crystals of Niberium: pageId: 77968 steam: 728650 @@ -36764,9 +35818,9 @@ Crystar: pageId: 132834 steam: 981750 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Spike Chunsoft\CRYSTAR\}}' - - '{{Game data/saves|Windows|{{p|steam}}\userdata\{{p|uid}}\981750\remote\}}' -'Cryste: The Faith of Fire Vol.1': + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Spike Chunsoft\\CRYSTAR\\}}" + - "{{Game data/saves|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\981750\\remote\\}}" +"Cryste: The Faith of Fire Vol.1": pageId: 62405 steam: 616740 Cthulhu: @@ -36783,17 +35837,17 @@ Cthulhu Saves Christmas: pageId: 154862 steam: 1057540 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Zeboyd\Cthulhu Saves Christmas}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Zeboyd\Cthulhu Saves Christmas\PlayerPrefs.txt}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Zeboyd\\Cthulhu Saves Christmas}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Zeboyd\\Cthulhu Saves Christmas\\PlayerPrefs.txt}}" Cthulhu Saves the World: pageId: 2770 steam: 107310 templates: - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\SavedGames\CSTW\}}' -Cthulhu's Catharsis: + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\SavedGames\\CSTW\\}}" +"Cthulhu's Catharsis": pageId: 141642 steam: 1069140 -'Cthulhu: Books of Ancients': +"Cthulhu: Books of Ancients": pageId: 151244 steam: 1119040 Ctrl Alt Ego: @@ -36801,13 +35855,13 @@ Ctrl Alt Ego: pageId: 184572 steam: 1571940 templates: - - '{{Game data/config|Windows|{{p|appdata}}\MindThunk\CtrlAltEgo\}}' - - '{{Game data/saves|Windows|{{p|appdata}}\MindThunk\CtrlAltEgo\}}' + - "{{Game data/config|Windows|{{p|appdata}}\\MindThunk\\CtrlAltEgo\\}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\MindThunk\\CtrlAltEgo\\}}" Ctrl CV: pageId: 94259 steam: 502130 templates: - - '{{Game data/saves|Windows|{{P|localappdata}}\ctrlcv_re\ctrlcv*.sav}}' + - "{{Game data/saves|Windows|{{P|localappdata}}\\ctrlcv_re\\ctrlcv*.sav}}" CuBB: pageId: 149752 steam: 1149850 @@ -36822,7 +35876,7 @@ CuVRball: Cuban Missile Crisis: pageId: 48387 steam: 356270 -'Cuban Missile Crisis: Ice Crusade': +"Cuban Missile Crisis: Ice Crusade": pageId: 48385 steam: 356290 Cubanoids: @@ -36831,30 +35885,28 @@ Cubanoids: Cube: pageId: 20054 templates: - - '{{Game data/config|Windows|{{p|game}}\autoexec.cfg|{{p|game}}\data}}' - - '{{Game data/saves|Windows|{{p|game}}\savegames}}' -'Cube & Star: An Arbitrary Love': + - "{{Game data/config|Windows|{{p|game}}\\autoexec.cfg|{{p|game}}\\data}}" + - "{{Game data/saves|Windows|{{p|game}}\\savegames}}" +"Cube & Star: An Arbitrary Love": pageId: 50656 steam: 261960 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Doppler Interactive\Cube and Star An Arbitrary Love\}}' - - >- - {{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Doppler Interactive\Cube and Star An Arbitrary - Love\PlayerPrefs.txt}} + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Doppler Interactive\\Cube and Star An Arbitrary Love\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Doppler Interactive\\Cube and Star An Arbitrary Love\\PlayerPrefs.txt}}" Cube - The Jumper: pageId: 93712 steam: 856440 -'Cube 2: Sauerbraten': +"Cube 2: Sauerbraten": pageId: 20113 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Sauerbraten|{{p|game}}\data}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/sauerbraten/}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.sauerbraten}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Sauerbraten|{{p|game}}\\data}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/sauerbraten/}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.sauerbraten}}" Cube Attack: pageId: 149188 steam: 1156640 templates: - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\PugStudio\Cube Attack\}}' + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\PugStudio\\Cube Attack\\}}" Cube Color: pageId: 76012 steam: 748430 @@ -36884,19 +35936,19 @@ Cube Escape Collection: pageId: 159575 steam: 1292940 templates: - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\Rusty Lake\CubeEscapeCollection\saveGame.sav}}' -'Cube Escape: Paradox': + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\Rusty Lake\\CubeEscapeCollection\\saveGame.sav}}" +"Cube Escape: Paradox": pageId: 109548 steam: 909080 templates: - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Rusty Lake\Paradox\saveGame.sav}}' + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Rusty Lake\\Paradox\\saveGame.sav}}" Cube Full of Mines: pageId: 109974 steam: 919190 Cube Land Arena: pageId: 43921 steam: 450850 -'Cube Life: Island Survival': +"Cube Life: Island Survival": pageId: 91898 steam: 760800 Cube Link: @@ -36908,7 +35960,7 @@ Cube Man: Cube Master: pageId: 54661 steam: 562650 -'Cube Master: Light Adventure': +"Cube Master: Light Adventure": pageId: 57204 steam: 581690 Cube Mission: @@ -36923,7 +35975,7 @@ Cube Racer: Cube Runner: pageId: 54959 steam: 567280 -'Cube Samurai: RUN!': +"Cube Samurai: RUN!": pageId: 33772 steam: 308400 Cube Smash: @@ -36942,8 +35994,8 @@ Cube World: pageId: 8543 steam: 1128000 templates: - - '{{Game data/config|Windows|{{p|game}}\options.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\Save}}' + - "{{Game data/config|Windows|{{p|game}}\\options.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\Save}}" Cube XL: pageId: 89350 steam: 645360 @@ -36993,18 +36045,18 @@ Cubemen: pageId: 5187 steam: 207250 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\3 Sprockets\Cubemen\}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/3 Sprockets/Cubemen/}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/3 Sprockets/Cubemen/}}' - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{P|uid}}/207250/remote/}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\3 Sprockets\\Cubemen\\}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/3 Sprockets/Cubemen/}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/3 Sprockets/Cubemen/}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{P|uid}}/207250/remote/}}" Cubemen 2: pageId: 6273 steam: 228440 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\3 Sprockets\Cubemen2\}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/3 Sprockets/Cubemen2/}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/3 Sprockets/Cubemen2/}}' - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/228440/remote/}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\3 Sprockets\\Cubemen2\\}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/3 Sprockets/Cubemen2/}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/3 Sprockets/Cubemen2/}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/228440/remote/}}" Cubeology: pageId: 109144 steam: 872560 @@ -37024,17 +36076,17 @@ Cubetractor: pageId: 32197 steam: 235720 templates: - - '{{Game data/saves|Windows|{{p|game}}\save.cubt|{{p|appdata}}\CubetractorSteam\Local Store\save.cubt}}' + - "{{Game data/saves|Windows|{{p|game}}\\save.cubt|{{p|appdata}}\\CubetractorSteam\\Local Store\\save.cubt}}" Cubeverse: pageId: 114122 steam: 936560 Cubians VR: pageId: 58110 steam: 576370 -'Cubians: Combine': +"Cubians: Combine": pageId: 127577 steam: 1005470 -'Cubians: Rescue Princess': +"Cubians: Rescue Princess": pageId: 79770 steam: 712910 Cubic: @@ -37059,22 +36111,22 @@ Cubic Neon Nightclub: pageId: 178912 steam: 1888810 templates: - - '{{Game data/saves|Windows|{{p|steam}}\userdata\{{P|uid}}/1888810/}}' + - "{{Game data/saves|Windows|{{p|steam}}\\userdata\\{{P|uid}}/1888810/}}" CubicPanic: pageId: 92875 steam: 805470 Cubicity: pageId: 48731 steam: 335550 -'Cubicity: Slide puzzle': +"Cubicity: Slide puzzle": pageId: 130016 steam: 970580 Cubicle Quest: pageId: 48597 steam: 349500 templates: - - '{{Game data/config|Steam|{{p|game}}/scripts/}}' - - '{{Game data/saves|Steam|{{p|game}}/scripts/Save*.rvdata2}}' + - "{{Game data/config|Steam|{{p|game}}/scripts/}}" + - "{{Game data/saves|Steam|{{p|game}}/scripts/Save*.rvdata2}}" Cubico: pageId: 141857 steam: 1113730 @@ -37136,14 +36188,12 @@ Cubot: Cubotrox: pageId: 52930 steam: 526800 -'Cubots: The Origins': +"Cubots: The Origins": pageId: 67155 steam: 636400 templates: - - >- - {{Game data/config|Windows|{{p|HKCU}}\Software\Street Lamp Games\Cubots The - Origins|{{p|USERPROFILE}}\AppData\LocalLow\Street Lamp Games\Cubots The Origins\}} - - '{{Game data/saves|Windows|{{p|HKCU}}\Software\Street Lamp Games\Cubots The Origins}}' + - "{{Game data/config|Windows|{{p|HKCU}}\\Software\\Street Lamp Games\\Cubots The Origins|{{p|USERPROFILE}}\\AppData\\LocalLow\\Street Lamp Games\\Cubots The Origins\\}}" + - "{{Game data/saves|Windows|{{p|HKCU}}\\Software\\Street Lamp Games\\Cubots The Origins}}" Cubrick: pageId: 61108 steam: 620340 @@ -37153,14 +36203,14 @@ Cubway: Cuckold Simulator: pageId: 156077 steam: 1196460 -'Cuckold Simulator: Life as a Beta Male Cuck': +"Cuckold Simulator: Life as a Beta Male Cuck": pageId: 177232 renamedFrom: - - 'CUCKOLD SIMULATOR: Life as a Beta Male Cuck' + - "CUCKOLD SIMULATOR: Life as a Beta Male Cuck" steam: 1141550 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\LocalLow\Team SNEED\CuckoldSimulator}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\LocalLow\Team SNEED\CuckoldSimulator}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\LocalLow\\Team SNEED\\CuckoldSimulator}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\LocalLow\\Team SNEED\\CuckoldSimulator}}" Cuco: pageId: 88410 steam: 715720 @@ -37179,23 +36229,20 @@ Cuisineer: pageId: 191345 steam: 1963570 templates: - - '{{Game data/config|Windows|{{p|appdata}}\LocalLow\BattleBrew Productions\Cuisineer\settings.asset}}' - - >- - {{Game data/saves|Windows|{{p|appdata}}\LocalLow\BattleBrew - Productions\Cuisineer\save_0.sav|{{p|appdata}}\LocalLow\BattleBrew - Productions\Cuisineer\save_1.sav|{{p|appdata}}\LocalLow\BattleBrew Productions\Cuisineer\save_2.sav}} + - "{{Game data/config|Windows|{{p|appdata}}\\LocalLow\\BattleBrew Productions\\Cuisineer\\settings.asset}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\LocalLow\\BattleBrew Productions\\Cuisineer\\save_0.sav|{{p|appdata}}\\LocalLow\\BattleBrew Productions\\Cuisineer\\save_1.sav|{{p|appdata}}\\LocalLow\\BattleBrew Productions\\Cuisineer\\save_2.sav}}" Cuit: pageId: 60315 steam: 614890 -'Culina: Hands in the Kitchen': +"Culina: Hands in the Kitchen": pageId: 51883 steam: 364000 Culpa Innata: pageId: 41382 steam: 12310 templates: - - '{{Game data/config|Windows|{{p|game}}\Options.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\Data\SaveGame}}' + - "{{Game data/config|Windows|{{p|game}}\\Options.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\Data\\SaveGame}}" Cult 2112: pageId: 138594 steam: 1093240 @@ -37210,10 +36257,10 @@ Cult of the Glitch King: Cult of the Lamb: gog: 2034949552 gogSide: - - 1903774438 - - 1328365634 - 1239694449 + - 1328365634 - 1779108809 + - 1903774438 pageId: 174940 steam: 1313140 steamSide: @@ -37225,37 +36272,33 @@ Cult of the Lamb: - 2090901 - 2331540 templates: - - >- - {{Game data/config|Windows|{{p|hkcu}}\Software\Massive Monster\Cult Of The - Lamb|{{p|userprofile}}\AppData\LocalLow\Massive Monster\Cult Of The Lamb\saves\}} - - '{{Game data/config|OS X|{{P|osxhome}}/Library/Application Support/Massive Monster/Cult Of The Lamb/saves/}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Massive Monster\Cult Of The Lamb\saves\}}' - - '{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/Massive Monster/Cult Of The Lamb/saves/}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Massive Monster\\Cult Of The Lamb|{{p|userprofile}}\\AppData\\LocalLow\\Massive Monster\\Cult Of The Lamb\\saves\\}}" + - "{{Game data/config|OS X|{{P|osxhome}}/Library/Application Support/Massive Monster/Cult Of The Lamb/saves/}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Massive Monster\\Cult Of The Lamb\\saves\\}}" + - "{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/Massive Monster/Cult Of The Lamb/saves/}}" Cult of the Wind: pageId: 50029 steam: 293840 -'Cult: Fear Inside': +"Cult: Fear Inside": pageId: 72672 steam: 622610 Cultic: pageId: 181604 steam: 1684930 templates: - - '{{Game data/config|Windows|{{p|game}}\CULTIC_Data\Preferences.xml}}' - - '{{Game data/saves|Windows|{{p|game}}\CULTIC_Data\Saves|{{p|game}}\CULTIC_Data\Profiles}}' + - "{{Game data/config|Windows|{{p|game}}\\CULTIC_Data\\Preferences.xml}}" + - "{{Game data/saves|Windows|{{p|game}}\\CULTIC_Data\\Saves|{{p|game}}\\CULTIC_Data\\Profiles}}" Cultist Simulator: gog: 1456702644 pageId: 78814 steam: 718670 templates: - - >- - {{Game data/config|Windows|{{p|USERPROFILE}}\AppData\LocalLow\Weather Factory\Cultist - Simulator\config.ini|{{p|hkcu}}\Software\Weather Factory\Cultist Simulator\}} - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/biz.weatherfactory.cultistsimulator/config.ini}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Weather Factory/Cultist Simulator/}}' - - '{{Game data/saves|Windows|{{p|USERPROFILE}}\AppData\LocalLow\Weather Factory\Cultist Simulator\save.txt}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/biz.weatherfactory.cultistsimulator/save.txt}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Weather Factory/Cultist Simulator/save.txt}}' + - "{{Game data/config|Windows|{{p|USERPROFILE}}\\AppData\\LocalLow\\Weather Factory\\Cultist Simulator\\config.ini|{{p|hkcu}}\\Software\\Weather Factory\\Cultist Simulator\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/biz.weatherfactory.cultistsimulator/config.ini}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Weather Factory/Cultist Simulator/}}" + - "{{Game data/saves|Windows|{{p|USERPROFILE}}\\AppData\\LocalLow\\Weather Factory\\Cultist Simulator\\save.txt}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/biz.weatherfactory.cultistsimulator/save.txt}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Weather Factory/Cultist Simulator/save.txt}}" Cults and Daggers: pageId: 48719 steam: 333350 @@ -37263,18 +36306,18 @@ Cultures - 8th Wonder of the World: gog: 1207663853 pageId: 48363 steam: 351870 -'Cultures 2: The Gates of Asgard': +"Cultures 2: The Gates of Asgard": gog: 1207663813 pageId: 131892 templates: - - '{{Game data/config|Windows|{{p|game}}\Save\opt_game.ini & opt_glob.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\Save}}' -'Cultures: The Discovery of Vinland': + - "{{Game data/config|Windows|{{p|game}}\\Save\\opt_game.ini & opt_glob.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\Save}}" +"Cultures: The Discovery of Vinland": gog: 1207663793 pageId: 21954 templates: - - '{{Game data/config|Windows|{{p|game}}\Game.cif}}' - - '{{Game data/saves|Windows|{{p|game}}\Save}}' + - "{{Game data/config|Windows|{{p|game}}\\Game.cif}}" + - "{{Game data/saves|Windows|{{p|game}}\\Save}}" Cumming Hotel - A Gay Furry Slice of Life: pageId: 156919 steam: 1222640 @@ -37299,11 +36342,9 @@ Cuphead: steamSide: - 1117850 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Studio MDHR\Cuphead\}}' - - '{{Game data/saves|Windows|{{P|appdata}}\Cuphead\}}' - - >- - {{Game data/saves|Microsoft - Store|{{P|localappdata}}\Packages\StudioMDHR.20872A364DAA1_tm1s6a95559gt\SystemAppData\wgs\}} + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Studio MDHR\\Cuphead\\}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\Cuphead\\}}" + - "{{Game data/saves|Microsoft Store|{{P|localappdata}}\\Packages\\StudioMDHR.20872A364DAA1_tm1s6a95559gt\\SystemAppData\\wgs\\}}" Cupid: pageId: 38458 steam: 421670 @@ -37327,15 +36368,15 @@ Curious Expedition: pageId: 34262 steam: 358130 templates: - - '{{Game data/saves|Windows|{{P|appdata}}\Maschinen-Mensch\TheCuriousExpedition\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Documents/TheCuriousExpedition}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/TheCuriousExpedition}}' + - "{{Game data/saves|Windows|{{P|appdata}}\\Maschinen-Mensch\\TheCuriousExpedition\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Documents/TheCuriousExpedition}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/TheCuriousExpedition}}" Curious Expedition 2: gog: 1090287940 pageId: 130789 steam: 1040230 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Maschinen-Mensch\Curious Expedition 2\}}' + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Maschinen-Mensch\\Curious Expedition 2\\}}" Curious George: pageId: 101887 Curling World Cup: @@ -37350,12 +36391,12 @@ Current: Curse: pageId: 38657 steam: 510570 -'Curse Crackers: For Whom the Belle Toils': +"Curse Crackers: For Whom the Belle Toils": pageId: 185341 steam: 1726760 templates: - - '{{Game data/config|Windows|{{p|userprofile\appdata\locallow}}\Colorgrave\Curse Crackers Belle}}' - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\Colorgrave\Curse Crackers Belle}}' + - "{{Game data/config|Windows|{{p|userprofile\\appdata\\locallow}}\\Colorgrave\\Curse Crackers Belle}}" + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\Colorgrave\\Curse Crackers Belle}}" Curse in our heads: pageId: 99724 steam: 871300 @@ -37369,28 +36410,28 @@ Curse of the Assassin: pageId: 47925 steam: 335450 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Tin Man Games\Curse\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Tin Man Games\\Curse\\}}" Curse of the Azure Bonds: gog: 1432642138 pageId: 31064 steam: 1904520 templates: - - '{{Game data/config|DOS|{{p|game}}\CURSE.CFG}}' - - '{{Game data/saves|DOS|{{p|game}}\SAVE\}}' + - "{{Game data/config|DOS|{{p|game}}\\CURSE.CFG}}" + - "{{Game data/saves|DOS|{{p|game}}\\SAVE\\}}" Curse of the Crescent Isle DX: pageId: 46785 steam: 365120 templates: - - '{{Game data/config|Windows|{{p|game}}\CurseDXSettings.sav}}' - - '{{Game data/saves|Windows|{{p|game}}\SaveFile.sav}}' + - "{{Game data/config|Windows|{{p|game}}\\CurseDXSettings.sav}}" + - "{{Game data/saves|Windows|{{p|game}}\\SaveFile.sav}}" Curse of the Dead Gods: gog: 1152688383 pageId: 157383 steam: 1123770 templates: - - '{{Game data/config|Windows|{{P|userprofile}}\Saved Games\Curse of the Dead Gods\}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\Saved Games\Curse of the Dead Gods\}}' - - '{{Game data/saves|Steam|{{p|steam}}\steamapps\common\Curse of the Dead Gods\TempleResources\_Saves}}' + - "{{Game data/config|Windows|{{P|userprofile}}\\Saved Games\\Curse of the Dead Gods\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\Saved Games\\Curse of the Dead Gods\\}}" + - "{{Game data/saves|Steam|{{p|steam}}\\steamapps\\common\\Curse of the Dead Gods\\TempleResources\\_Saves}}" Curse of the Deadwood: pageId: 180037 steam: 362670 @@ -37407,29 +36448,25 @@ Curse of the Sea Rats: pageId: 160827 steam: 1453900 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\appdata\locallow}}\Petoons Studio\Curse Of The Sea - Rats\SaveData\Settings.settings|{{p|hkcu}}\Software\Petoons Studio\Curse Of The Sea Rats}} - - >- - {{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\Petoons Studio\Curse Of The Sea - Rats\SaveData\SaveData*.game}} + - "{{Game data/config|Windows|{{p|userprofile\\appdata\\locallow}}\\Petoons Studio\\Curse Of The Sea Rats\\SaveData\\Settings.settings|{{p|hkcu}}\\Software\\Petoons Studio\\Curse Of The Sea Rats}}" + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\Petoons Studio\\Curse Of The Sea Rats\\SaveData\\SaveData*.game}}" Curse of the dungeon: pageId: 148461 steam: 1174810 -'Curse: The Eye of Isis': +"Curse: The Eye of Isis": gog: 1684624696 pageId: 49725 steam: 302210 templates: - - '{{Game data/config|Windows|{{p|game}}\Game.cfg}}' + - "{{Game data/config|Windows|{{p|game}}\\Game.cfg}}" Cursed: pageId: 33555 steam: 431260 templates: - - '{{Game data/config|Windows|{{P|appdata}}\Jetdogs Studios\Cursed\options.cfg}}' - - '{{Game data/config|Linux|{{P|linuxhome}}/.jetdogs/cursed/options.cfg}}' - - '{{Game data/saves|Windows|{{P|appdata}}\Jetdogs Studios\Cursed\*.sav}}' - - '{{Game data/saves|Linux|{{P|linuxhome}}/.jetdogs/cursed/*.sav}}' + - "{{Game data/config|Windows|{{P|appdata}}\\Jetdogs Studios\\Cursed\\options.cfg}}" + - "{{Game data/config|Linux|{{P|linuxhome}}/.jetdogs/cursed/options.cfg}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\Jetdogs Studios\\Cursed\\*.sav}}" + - "{{Game data/saves|Linux|{{P|linuxhome}}/.jetdogs/cursed/*.sav}}" Cursed Armor: pageId: 104653 renamedFrom: @@ -37439,8 +36476,8 @@ Cursed Castilla (Maldita Castilla EX): pageId: 51947 steam: 534290 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Cursed_Castilla}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Cursed_Castilla}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Cursed_Castilla}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Cursed_Castilla}}" Cursed Caves: pageId: 88690 steam: 768790 @@ -37456,15 +36493,15 @@ Cursed Mansion: Cursed Mountain: pageId: 76808 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Deep Silver\Cursed Mountain\}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\Deep Silver\Cursed Mountain\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\Deep Silver\\Cursed Mountain\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Deep Silver\\Cursed Mountain\\}}" Cursed One: pageId: 141867 steam: 1104550 Cursed Pagoda: pageId: 153868 steam: 1181940 -'Cursed Queen: Wicked Witch': +"Cursed Queen: Wicked Witch": pageId: 100138 steam: 892480 Cursed Roots: @@ -37488,12 +36525,12 @@ Cursed to Golf: steam: 1726120 steamSide: - 1938570 -'Cursery: The Crooked Man and the Crooked Cat': +"Cursery: The Crooked Man and the Crooked Cat": pageId: 60918 renamedFrom: - - 'Cursery: The Crooked Man and the Crooked Cat Collector''s Edition' + - "Cursery: The Crooked Man and the Crooked Cat Collector's Edition" steam: 622200 -Curses 'N Chaos: +"Curses 'N Chaos": pageId: 46837 steam: 307620 Cursor - by Mr iLyn.: @@ -37522,7 +36559,7 @@ Custom Town: pageId: 36844 steam: 517700 templates: - - '{{Game data/saves|Windows|{{p|localappdata}}\HTP\data\realestate}}' + - "{{Game data/saves|Windows|{{p|localappdata}}\\HTP\\data\\realestate}}" Customer Cums First!: pageId: 155296 steam: 1198630 @@ -37539,17 +36576,13 @@ Cut the Rope: pageId: 5753 steam: 223280 templates: - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\SavedGames\CutTheRope\Preferences\Player1\}}' + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\SavedGames\\CutTheRope\\Preferences\\Player1\\}}" Cut the Rope 2: pageId: 166146 Cut the Rope Remastered: pageId: 167802 templates: - - >- - {{Game data/saves|OS X|{{p|osxhome}}/Library/Containers/Cut the Rope/Data/Library/Application - Support/com.paladinstudios.ctr/ - - }} + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Containers/Cut the Rope/Data/Library/Application Support/com.paladinstudios.ctr/\n}}" Cute (Hard) Puzzle: pageId: 122186 steam: 976170 @@ -37592,7 +36625,7 @@ Cute Puzzle SP (Naked Story Ver): Cute Things Dying Violently: pageId: 46586 steam: 305820 -'Cute War: Zero': +"Cute War: Zero": pageId: 82774 steam: 780930 CuteSnake: @@ -37627,14 +36660,14 @@ CyClones: pageId: 31874 steam: 2464690 templates: - - '{{Game data/saves|Steam|{{p|game}}\CLOUD_SAVES\CYCLONE}}' + - "{{Game data/saves|Steam|{{p|game}}\\CLOUD_SAVES\\CYCLONE}}" Cyadonia: pageId: 92997 steam: 843930 Cyanide & Happiness - Freakpocalypse: pageId: 167034 steam: 869880 -'Cybarian: The Time Travelling Warrior': +"Cybarian: The Time Travelling Warrior": pageId: 110556 steam: 928840 Cyber Agent: @@ -37649,12 +36682,12 @@ Cyber Chicken: Cyber City: pageId: 134420 steam: 1061930 -'Cyber City 2157: The Visual Novel': +"Cyber City 2157: The Visual Novel": pageId: 43189 steam: 454690 templates: - - '{{Game data/config|Windows|{{P|appdata}}\renpy\dream-1450895417\persistent}}' - - '{{Game data/saves|Windows|{{P|appdata}}\renpy\dream-1450895417\*.save}}' + - "{{Game data/config|Windows|{{P|appdata}}\\renpy\\dream-1450895417\\persistent}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\renpy\\dream-1450895417\\*.save}}" Cyber Complex: pageId: 67496 steam: 600440 @@ -37662,7 +36695,7 @@ Cyber Crush 2069: pageId: 164407 steam: 1379830 templates: - - '{{Game data/saves|Windows|{{p|game}}\CyberCrush_Data\Saves\}}' + - "{{Game data/saves|Windows|{{p|game}}\\CyberCrush_Data\\Saves\\}}" Cyber Escape: pageId: 90034 steam: 815620 @@ -37677,7 +36710,7 @@ Cyber Hook: pageId: 145345 steam: 1130410 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\BlazingStick\CyberHook\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\BlazingStick\\CyberHook\\}}" Cyber Hunter: pageId: 165873 steam: 1209040 @@ -37688,8 +36721,8 @@ Cyber Ops: pageId: 126442 steam: 863460 templates: - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Preferences/com.OctetoStudios.TacticalOperator.plist}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Preferences/com.OctetoStudios.TacticalOperator.plist}}' + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Preferences/com.OctetoStudios.TacticalOperator.plist}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Preferences/com.OctetoStudios.TacticalOperator.plist}}" Cyber OutRun: pageId: 144099 steam: 1132410 @@ -37710,8 +36743,8 @@ Cyber Shadow: pageId: 132881 steam: 861250 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Yacht Club Games\CyberShadow\settings\}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Yacht Club Games\CyberShadow\save\}}' + - "{{Game data/config|Windows|{{p|appdata}}\\Yacht Club Games\\CyberShadow\\settings\\}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Yacht Club Games\\CyberShadow\\save\\}}" Cyber Surf: pageId: 87874 steam: 735810 @@ -37721,8 +36754,8 @@ Cyber Team Manager: Cyber Troopers Virtual-On: pageId: 136221 templates: - - '{{Game data/config|Windows|{{p|windir}}\V_ON.INI | {{p|game}}\v_on.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\BkUp.bin}}' + - "{{Game data/config|Windows|{{p|windir}}\\V_ON.INI | {{p|game}}\\v_on.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\BkUp.bin}}" Cyber Utopia: pageId: 63598 steam: 654350 @@ -37751,11 +36784,11 @@ CyberGlide VR: CyberHive: pageId: 165094 steam: 1252390 -'CyberMage: Darklight Awakening': +"CyberMage: Darklight Awakening": pageId: 75922 templates: - - '{{Game data/config|DOS|{{p|game}}\SOUNDSYS.CNF|{{p|game}}\CMDATA.CNF}}' - - '{{Game data/saves|DOS|{{p|game}}\SAVE0**.DAT|{{p|game}}\GAMENAME.USR}}' + - "{{Game data/config|DOS|{{p|game}}\\SOUNDSYS.CNF|{{p|game}}\\CMDATA.CNF}}" + - "{{Game data/saves|DOS|{{p|game}}\\SAVE0**.DAT|{{p|game}}\\GAMENAME.USR}}" CyberMedic Simulator: pageId: 136037 steam: 1077300 @@ -37771,21 +36804,19 @@ CyberThreat: Cybercube: pageId: 72286 steam: 656880 -'Cyberdetective: Ertat': +"Cyberdetective: Ertat": pageId: 164939 steam: 1413550 -'Cyberdimension Neptunia: 4 Goddesses Online': +"Cyberdimension Neptunia: 4 Goddesses Online": pageId: 75202 steam: 632350 templates: - - >- - {{Game - data/config|Windows|{{P|localappdata}}\CyberdimensionNeptunia4GoddessesOnline\Saved\Config\WindowsNoEditor}} - - '{{Game data/saves|Windows|{{P|localappdata}}\CyberdimensionNeptunia4GoddessesOnline\Saved\SaveGames}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\CyberdimensionNeptunia4GoddessesOnline\\Saved\\Config\\WindowsNoEditor}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\CyberdimensionNeptunia4GoddessesOnline\\Saved\\SaveGames}}" Cyberdogs: pageId: 11316 templates: - - '{{Game data/config|DOS|{{p|game}}\dogs.ini}}' + - "{{Game data/config|DOS|{{p|game}}\\dogs.ini}}" Cyberdrome: pageId: 125300 steam: 934850 @@ -37797,14 +36828,14 @@ Cyberia: pageId: 22525 steam: 624080 templates: - - '{{Game data/config|DOS|{{P|game}}\JOY.DEF}}' - - '{{Game data/saves|DOS|{{P|game}}\*.LOG}}' -'Cyberia 2: Resurrection': + - "{{Game data/config|DOS|{{P|game}}\\JOY.DEF}}" + - "{{Game data/saves|DOS|{{P|game}}\\*.LOG}}" +"Cyberia 2: Resurrection": gog: 1430388542 pageId: 24610 steam: 717720 templates: - - '{{Game data/saves|DOS|{{P|game}}\CYBERIA2\*.LOG}}' + - "{{Game data/saves|DOS|{{P|game}}\\CYBERIA2\\*.LOG}}" Cyberline Racing: pageId: 59588 steam: 514460 @@ -37836,8 +36867,8 @@ Cyberpunk 2077: - 2138330 - 2441600 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\CD Projekt Red\Cyberpunk 2077}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\Saved Games\CD Projekt Red\Cyberpunk 2077}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\CD Projekt Red\\Cyberpunk 2077}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Saved Games\\CD Projekt Red\\Cyberpunk 2077}}" Cyberpunk 3776: pageId: 48403 steam: 343170 @@ -37853,8 +36884,8 @@ Cyberpunk Sex Simulator: Cyberswine: pageId: 128817 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Brilliant Digital Entertainment\PROJECTOR}}' - - '{{Game data/saves|Windows|{{P|hkcu}}\Software\Brilliant Digital Entertainment\PROJECTOR}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Brilliant Digital Entertainment\\PROJECTOR}}" + - "{{Game data/saves|Windows|{{P|hkcu}}\\Software\\Brilliant Digital Entertainment\\PROJECTOR}}" Cyborg Arena: pageId: 70126 steam: 706440 @@ -37864,13 +36895,13 @@ Cyborg Detonator: Cyborg Invasion Shooter: pageId: 74982 steam: 723830 -'Cyborg Invasion Shooter 2: Battle of Earth': +"Cyborg Invasion Shooter 2: Battle of Earth": pageId: 87183 steam: 779060 -'Cyborg Invasion Shooter 3: Savior of the World': +"Cyborg Invasion Shooter 3: Savior of the World": pageId: 129641 renamedFrom: - - 'Cyborg Invasion Shooter 3: Savior Of The World' + - "Cyborg Invasion Shooter 3: Savior Of The World" steam: 1023150 Cyborg Killer Moscow 2042: pageId: 148755 @@ -37919,7 +36950,7 @@ Cycling Manager 4: Cyclones Playground: pageId: 107850 steam: 916260 -'Cygni: All Guns Blazing': +"Cygni: All Guns Blazing": pageId: 161159 steam: 1248080 Cylne: @@ -37931,31 +36962,29 @@ Cymatically Muffed: Cyndy: pageId: 145970 steam: 1014730 -'Cynoclept: The Game': +"Cynoclept: The Game": pageId: 67617 steam: 688880 -'Cynthia: Hidden in the Moonshadow': +"Cynthia: Hidden in the Moonshadow": pageId: 188974 steam: 1685730 templates: - - >- - {{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\Catthia Games\Cynthia Hidden in the - Moonshadow\CynthiaSaveFile.dat}} + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\Catthia Games\\Cynthia Hidden in the Moonshadow\\CynthiaSaveFile.dat}}" Cypher: pageId: 82365 steam: 746710 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\SOFTWARE\Matthew Brown\Cypher|{{P|game}}\Saves\main.save}}' - - '{{Game data/saves|Windows|{{P|game}}\Saves\main.save}}' -'Cypress Inheritance: The Beginning': + - "{{Game data/config|Windows|{{P|hkcu}}\\SOFTWARE\\Matthew Brown\\Cypher|{{P|game}}\\Saves\\main.save}}" + - "{{Game data/saves|Windows|{{P|game}}\\Saves\\main.save}}" +"Cypress Inheritance: The Beginning": pageId: 50592 steam: 270430 Cyrano Story: pageId: 168217 steam: 1250870 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\SOFTWARE\Alice & Smith\Cyrano Story\}}' - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Alice _ Smith\Cyrano Story\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\SOFTWARE\\Alice & Smith\\Cyrano Story\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Alice _ Smith\\Cyrano Story\\}}" Cyto: pageId: 49963 steam: 302650 @@ -37963,25 +36992,25 @@ CyubeVR: pageId: 80871 steam: 619500 templates: - - '{{Game data/config|Windows|{{p|localappdata}}/cyubeVR}}' - - '{{Game data/saves|Windows|{{p|localappdata}}/cyubeVR}}' + - "{{Game data/config|Windows|{{p|localappdata}}/cyubeVR}}" + - "{{Game data/saves|Windows|{{p|localappdata}}/cyubeVR}}" D Series Off Road Racing Simulation: pageId: 47865 steam: 363430 -'D''LIRIUM: The Golden Rogue': +"D'LIRIUM: The Golden Rogue": pageId: 122580 steam: 860150 -D'Lirium: +"D'Lirium": pageId: 67930 steam: 670160 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Delirium\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Delirium\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Delirium\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Delirium\\}}" D-Day: pageId: 123222 templates: - - '{{Game data/saves|Windows|{{p|game}}\save}}' -'D.A.: Pursuit of Justice - The Sunset Boulevard Deuce': + - "{{Game data/saves|Windows|{{p|game}}\\save}}" +"D.A.: Pursuit of Justice - The Sunset Boulevard Deuce": pageId: 157902 D.A.M.A.G.E: pageId: 138910 @@ -37992,10 +37021,10 @@ D.A.T.A: D.C. S***storm: pageId: 82351 steam: 793640 -'D.F.R.: The Light': +"D.F.R.: The Light": pageId: 76559 steam: 747750 -'D.F.R.: The Light VR': +"D.F.R.: The Light VR": pageId: 93669 steam: 852760 D.H.Trouble Guy: @@ -38010,11 +37039,11 @@ D.H.Zombie Zone: D.I.P.R.I.P. Warm Up: pageId: 175095 steam: 17530 -'D.I.R.T.: Origin of the Species': +"D.I.R.T.: Origin of the Species": pageId: 68228 templates: - - '{{Game data/config|Windows|{{p|game}}\controls.bin}}' - - '{{Game data/saves|Windows|{{p|game}}\saves\}}' + - "{{Game data/config|Windows|{{p|game}}\\controls.bin}}" + - "{{Game data/saves|Windows|{{p|game}}\\saves\\}}" D.I.Y Drone Simulator: pageId: 88662 steam: 813200 @@ -38028,9 +37057,7 @@ D.R.O.N.E. The Game: pageId: 124060 steam: 987020 templates: - - >- - {{Game data/saves|Windows|{{P|steam}}\steamapps\common\D.R.O.N.E. The Game\branches\stable\D.R.O.N.E. The - Game_Data\Drones}} + - "{{Game data/saves|Windows|{{P|steam}}\\steamapps\\common\\D.R.O.N.E. The Game\\branches\\stable\\D.R.O.N.E. The Game_Data\\Drones}}" D.U.S.T.: pageId: 45994 steam: 353690 @@ -38042,8 +37069,8 @@ D.W.A.R.F.S.: D/Generation: pageId: 16933 templates: - - '{{Game data/config|DOS|{{p|game}}\DATA}}' - - '{{Game data/saves|DOS|{{p|game}}\DATA}}' + - "{{Game data/config|DOS|{{p|game}}\\DATA}}" + - "{{Game data/saves|DOS|{{p|game}}\\DATA}}" D/Generation HD: pageId: 51031 steam: 389740 @@ -38058,7 +37085,7 @@ D3D Inside: renamedFrom: - D3D INSIDE steam: 1181330 -'D4: Dark Dreams Don''t Die': +"D4: Dark Dreams Don't Die": gog: 1433153796 gogSide: - 1433254764 @@ -38068,11 +37095,11 @@ D3D Inside: steamSide: - 368060 - 368061 - - 380910 - 372510 - 372511 - 372512 - 373560 + - 380910 - 384220 - 384221 - 384222 @@ -38082,12 +37109,10 @@ D3D Inside: - 384226 - 384227 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\D4 Dark Dreams Don't - Die\Ms01Game\Config\|{{p|game}}\config.ini}} - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\my games\D4 Dark Dreams Don''t Die\Binaries\Win64\}}' - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\358090\remote\*.sav}}' -'D: The Game': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\D4 Dark Dreams Don't Die\\Ms01Game\\Config\\|{{p|game}}\\config.ini}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\my games\\D4 Dark Dreams Don't Die\\Binaries\\Win64\\}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\358090\\remote\\*.sav}}" +"D: The Game": gog: 1852354510 pageId: 35367 steam: 510590 @@ -38115,47 +37140,47 @@ DARQ: steamSide: - 1210400 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Unfold Games\DARQ\}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Unfold Games\DARQ\save.drq}}' -'DASH: Danger Action Speed Heroes': + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Unfold Games\\DARQ\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Unfold Games\\DARQ\\save.drq}}" +"DASH: Danger Action Speed Heroes": pageId: 109414 steam: 898910 -'DC League of Super-Pets: The Adventures of Krypto and Ace': +"DC League of Super-Pets: The Adventures of Krypto and Ace": pageId: 178359 renamedFrom: - DC League of Super-Pets steam: 1697760 templates: - - '{{Game data/config|Windows|{{p|userprofile\appdata\locallow}}\Outright Games Ltd\DC League of Super Pets}}' - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\Outright Games Ltd\DC League of Super Pets}}' + - "{{Game data/config|Windows|{{p|userprofile\\appdata\\locallow}}\\Outright Games Ltd\\DC League of Super Pets}}" + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\Outright Games Ltd\\DC League of Super Pets}}" DC Universe Online: pageId: 5779 steam: 24200 -'DC Wonder: Unlimited': +"DC Wonder: Unlimited": pageId: 63602 steam: 652160 -'DC''s Justice League: Cosmic Chaos': +"DC's Justice League: Cosmic Chaos": pageId: 191292 templates: - - '{{Game data/config|Windows|HKEY_CURRENT_USER\Software\PHL Collective\DCJLCC}}' - - '{{Game data/config|Windows|HKEY_CURRENT_USER\Software\PHL Collective\DCJLCC}}' + - "{{Game data/config|Windows|HKEY_CURRENT_USER\\Software\\PHL Collective\\DCJLCC}}" + - "{{Game data/config|Windows|HKEY_CURRENT_USER\\Software\\PHL Collective\\DCJLCC}}" DCL - The Game: pageId: 126452 steam: 964570 -'DCR: Drive.Crash.Repeat': +"DCR: Drive.Crash.Repeat": pageId: 108380 steam: 501850 DCS World: pageId: 22540 steam: 223750 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\Saved Games\DCS\Config}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\Saved Games\DCS}}' -'DCS: A-10C Warthog': + - "{{Game data/config|Windows|{{p|userprofile}}\\Saved Games\\DCS\\Config}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Saved Games\\DCS}}" +"DCS: A-10C Warthog": pageId: 431 steam: 61010 templates: - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Saved Games\DCS Warthog\}}' + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Saved Games\\DCS Warthog\\}}" DDS (D.I.Y Drone Simulator): pageId: 99256 steam: 876170 @@ -38163,13 +37188,13 @@ DDraceNetwork: pageId: 183574 steam: 412220 templates: - - '{{Game data/config|Windows|{{P|APPDATA}}\Teeworlds\settings_ddnet.cfg}}' - - '{{Game data/config|OS X| ~/Library/Application Support/Teeworlds}}' - - '{{Game data/config|Linux| ~/.teeworlds}}' - - '{{Game data/saves|Windows|{{P|APPDATA}}\Teeworlds\ddnet-saves.txt}}' - - '{{Game data/saves|OS X| ~/Library/Application Support/Teeworlds}}' - - '{{Game data/saves|Linux| ~/.teeworlds}}' -'DE:VOID': + - "{{Game data/config|Windows|{{P|APPDATA}}\\Teeworlds\\settings_ddnet.cfg}}" + - "{{Game data/config|OS X| ~/Library/Application Support/Teeworlds}}" + - "{{Game data/config|Linux| ~/.teeworlds}}" + - "{{Game data/saves|Windows|{{P|APPDATA}}\\Teeworlds\\ddnet-saves.txt}}" + - "{{Game data/saves|OS X| ~/Library/Application Support/Teeworlds}}" + - "{{Game data/saves|Linux| ~/.teeworlds}}" +"DE:VOID": pageId: 150715 steam: 1173250 DEAD (2019): @@ -38191,33 +37216,33 @@ DEFCON: pageId: 1357 steam: 1520 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.defcon/}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.defcon/}}' + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.defcon/}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.defcon/}}" DEFCON VR: pageId: 57950 steam: 579040 -'DEPO : Death Epileptic Pixel Origins': +"DEPO : Death Epileptic Pixel Origins": pageId: 179915 steam: 1091320 templates: - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\1091320}}' + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\1091320}}" DERU - The Art of Cooperation: pageId: 72403 steam: 632250 DEUS EX MACHINA: pageId: 149432 steam: 1119950 -'DEUS EX MACHINA: Stage Zero': +"DEUS EX MACHINA: Stage Zero": pageId: 153798 steam: 1189590 DEXED: pageId: 41497 steam: 510290 -'DGU: Death God University': +"DGU: Death God University": pageId: 47275 steam: 352850 -'DHARMA: THE SWAN': +"DHARMA: THE SWAN": pageId: 128326 steam: 1028940 DINO VR: @@ -38227,11 +37252,9 @@ DIRT 5: pageId: 160129 steam: 1038250 templates: - - '{{Game data/config|Windows|{{P|userprofile\documents}}\My Games\DIRT5\user0\profile}}' - - >- - {{Game data/saves|Microsoft - Store|{{P|localappdata}}\Packages\CodemastersSoftwareCompan.DiRT5_4cfye3zbe1gaw\SystemAppData\wgs}} - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\1038250\remote\user0\profile}}' + - "{{Game data/config|Windows|{{P|userprofile\\documents}}\\My Games\\DIRT5\\user0\\profile}}" + - "{{Game data/saves|Microsoft Store|{{P|localappdata}}\\Packages\\CodemastersSoftwareCompan.DiRT5_4cfye3zbe1gaw\\SystemAppData\\wgs}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\1038250\\remote\\user0\\profile}}" DISONANTE: pageId: 136393 steam: 1078080 @@ -38258,12 +37281,12 @@ DLC Quest: pageId: 15182 steam: 230050 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\SavedGames\DLC\DLCQuest Data\AllPlayers\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\SavedGames\DLC\DLCQuest Data\AllPlayers\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\SavedGames\\DLC\\DLCQuest Data\\AllPlayers\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\SavedGames\\DLC\\DLCQuest Data\\AllPlayers\\}}" DMD Mars Mission: pageId: 82806 steam: 758020 -'DMT: Dynamic Music Tesseract': +"DMT: Dynamic Music Tesseract": pageId: 111948 steam: 648890 DNA: @@ -38272,13 +37295,13 @@ DNA: DNF Duel: pageId: 177716 steam: 1216060 -DNO Rasa's Journey: +"DNO Rasa's Journey": pageId: 47683 steam: 376160 DO NOT OPEN: pageId: 183800 steam: 2061710 -'DOJAGI: The Korean Pottery': +"DOJAGI: The Korean Pottery": pageId: 123780 steam: 715760 DOKA 2 GUTS OUT NINJA: @@ -38299,18 +37322,18 @@ DOUBLE INVASION!!: DOWN MEANS UP: pageId: 143914 steam: 1137360 -'DOZA 2: NOVOGODNIY PEREDOZ': +"DOZA 2: NOVOGODNIY PEREDOZ": pageId: 130135 steam: 1011740 -'DPET : Desktop Pet Engine': +"DPET : Desktop Pet Engine": pageId: 178357 steam: 1980920 DRAG: pageId: 162477 steam: 773840 templates: - - '{{Game data/config|Windows|{{P|game}}\DRAG\config\settings.sav}}' - - '{{Game data/saves|Windows|{{P|game}}\DRAG\config\game.sav}}' + - "{{Game data/config|Windows|{{P|game}}\\DRAG\\config\\settings.sav}}" + - "{{Game data/saves|Windows|{{P|game}}\\DRAG\\config\\game.sav}}" DREAM GIRLS VR: pageId: 121955 steam: 974670 @@ -38329,11 +37352,10 @@ DREAMO VR: DREDGE: gog: 1744110647 gogSide: - - 1487969767 - - 1322967649 - - 1707774748 - 1154366605 + - 1322967649 - 1487969767 + - 1707774748 pageId: 186229 steam: 1562430 steamSide: @@ -38342,65 +37364,63 @@ DREDGE: - 2198610 - 2561440 templates: - - '{{Game data/config|Windows|{{p|userprofile\appdata\locallow}}\Black Salt Games\DREDGE\dredge-settings.bin}}' - - >- - {{Game data/config|GOG.com|{{p|userprofile\appdata\locallow}}\Black Salt - Games\DREDGE\gog_galaxy\dredge-settings.bin}} - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\Black Salt Games\DREDGE\saves}}' - - '{{Game data/saves|GOG.com|{{p|userprofile\appdata\locallow}}\Black Salt Games\DREDGE\gog_galaxy\saves}}' + - "{{Game data/config|Windows|{{p|userprofile\\appdata\\locallow}}\\Black Salt Games\\DREDGE\\dredge-settings.bin}}" + - "{{Game data/config|GOG.com|{{p|userprofile\\appdata\\locallow}}\\Black Salt Games\\DREDGE\\gog_galaxy\\dredge-settings.bin}}" + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\Black Salt Games\\DREDGE\\saves}}" + - "{{Game data/saves|GOG.com|{{p|userprofile\\appdata\\locallow}}\\Black Salt Games\\DREDGE\\gog_galaxy\\saves}}" DRL: pageId: 174905 DRL Simulator: pageId: 58588 -'DROD RPG: Tendry''s Tale': +"DROD RPG: Tendry's Tale": gog: 1207664983 pageId: 44651 steam: 351330 steamSide: - 419050 templates: - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\Caravel\drodrpg-1_0}}' -'DROD: Gunthro and the Epic Blunder': + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\Caravel\\drodrpg-1_0}}" +"DROD: Gunthro and the Epic Blunder": gog: 1207665653 pageId: 38945 steam: 314330 templates: - - '{{Game data/config|Windows|{{p|programdata}}/Caravel/drod-4_0}}' - - '{{Game data/saves|Windows|{{p|programdata}}/Caravel/drod-4_0}}' -'DROD: Journey to Rooted Hold': + - "{{Game data/config|Windows|{{p|programdata}}/Caravel/drod-4_0}}" + - "{{Game data/saves|Windows|{{p|programdata}}/Caravel/drod-4_0}}" +"DROD: Journey to Rooted Hold": gog: 1207660443 pageId: 131881 steam: 422181 templates: - - '{{Game data/config|Windows|{{p|game}}\data}}' - - '{{Game data/saves|Windows|{{p|game}}\data}}' -'DROD: King Dugan''s Dungeon': + - "{{Game data/config|Windows|{{p|game}}\\data}}" + - "{{Game data/saves|Windows|{{p|game}}\\data}}" +"DROD: King Dugan's Dungeon": gog: 1207660443 pageId: 131885 steam: 422180 templates: - - '{{Game data/config|Windows|{{p|game}}\Data}}' - - '{{Game data/config|Linux|{{p|game}}\Data}}' - - '{{Game data/saves|Windows|{{p|game}}\Data}}' - - '{{Game data/saves|Linux|{{p|game}}\Data}}' -'DROD: The City Beneath': + - "{{Game data/config|Windows|{{p|game}}\\Data}}" + - "{{Game data/config|Linux|{{p|game}}\\Data}}" + - "{{Game data/saves|Windows|{{p|game}}\\Data}}" + - "{{Game data/saves|Linux|{{p|game}}\\Data}}" +"DROD: The City Beneath": gog: 1207660443 pageId: 131883 steam: 422182 templates: - - '{{Game data/config|Windows|{{p|programdata}}/Caravel/drod-3_0}}' - - '{{Game data/saves|Windows|{{p|programdata}}/Caravel/drod-3_0}}' -'DROD: The Second Sky': + - "{{Game data/config|Windows|{{p|programdata}}/Caravel/drod-3_0}}" + - "{{Game data/saves|Windows|{{p|programdata}}/Caravel/drod-3_0}}" +"DROD: The Second Sky": gog: 1207665683 pageId: 52412 steam: 351320 templates: - - '{{Game data/config|Windows|{{p|programdata}}/Caravel/drod-5_0}}' - - '{{Game data/saves|Windows|{{p|programdata}}/Caravel/drod-5_0}}' + - "{{Game data/config|Windows|{{p|programdata}}/Caravel/drod-5_0}}" + - "{{Game data/saves|Windows|{{p|programdata}}/Caravel/drod-5_0}}" DSquad War: pageId: 64570 steam: 661370 -'DUCK CASINO: BULLET': +"DUCK CASINO: BULLET": pageId: 113694 steam: 916970 DUMB Infernal: @@ -38426,26 +37446,24 @@ DX-Ball: DX-Ball 2: pageId: 172429 templates: - - '{{Game data/config|Windows|{{p|game}}/config.cfg}}' -'DX-Ball 2: 20th Anniversary Edition': + - "{{Game data/config|Windows|{{p|game}}/config.cfg}}" +"DX-Ball 2: 20th Anniversary Edition": pageId: 110130 steam: 922400 templates: - - >- - {{Game data/config|Windows|{{P|hkcu}}\SOFTWARE\Longbow Digital Arts\DX-Ball 2 - 20th Anniversary - Edition||{{P|game}}\config.cfg}} - - '{{Game data/saves|Windows|{{P|userprofile}}\Saved Games\DX-Ball 2 - 20th Anniversary Edition\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\SOFTWARE\\Longbow Digital Arts\\DX-Ball 2 - 20th Anniversary Edition||{{P|game}}\\config.cfg}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\Saved Games\\DX-Ball 2 - 20th Anniversary Edition\\}}" DYO: pageId: 82653 steam: 791470 templates: - - '{{Game data/config|Windows|{{P|game}}\savegame.dsf|{{P|game}}\options.ini}}' - - '{{Game data/saves|Windows|{{P|game}}\savegame.dsf}}' + - "{{Game data/config|Windows|{{P|game}}\\savegame.dsf|{{P|game}}\\options.ini}}" + - "{{Game data/saves|Windows|{{P|game}}\\savegame.dsf}}" DYSNOMIA: pageId: 155274 templates: - - '{{Game data/config|Windows|{{p|game}}\game.cfg|{{p|game}}\server.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\dys.dat}}' + - "{{Game data/config|Windows|{{p|game}}\\game.cfg|{{p|game}}\\server.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\dys.dat}}" Da Capo III: gog: 1492731608 pageId: 55608 @@ -38456,25 +37474,25 @@ Daaang!: Daath Origins: pageId: 65732 steam: 655340 -Dab on 'em Haterz: +"Dab on 'em Haterz": pageId: 79764 steam: 769060 Dab on Darkness!: pageId: 164564 steam: 1332970 -'Dab, Dance & Twerk': +"Dab, Dance & Twerk": pageId: 78396 steam: 767440 Dabda: pageId: 64741 steam: 665600 -'Dabman: DABtastic Bundle': +"Dabman: DABtastic Bundle": pageId: 123505 steam: 985330 -'Dabman: When the Haters Dab Back': +"Dabman: When the Haters Dab Back": pageId: 98918 steam: 888260 -'Dabwoman: When The Dab Isn''t Sexist': +"Dabwoman: When The Dab Isn't Sexist": pageId: 102303 steam: 906590 Dad Beat Dads: @@ -38484,18 +37502,18 @@ Dad Quest: pageId: 39313 steam: 524250 templates: - - '{{Game data/config|Windows|{{P|game}}\DadConfig.JSON}}' - - '{{Game data/saves|Windows|{{P|game}}\DadSave.JSON}}' -Dad's Co-worker: + - "{{Game data/config|Windows|{{P|game}}\\DadConfig.JSON}}" + - "{{Game data/saves|Windows|{{P|game}}\\DadSave.JSON}}" +"Dad's Co-worker": pageId: 80376 steam: 755970 Daddy: pageId: 95481 steam: 867480 -Daddy's Girls: +"Daddy's Girls": pageId: 75618 steam: 733260 -Daddy's Gone A-Hunting: +"Daddy's Gone A-Hunting": pageId: 78016 steam: 755580 Daedalic Complex: @@ -38516,41 +37534,41 @@ Daemon Detective Gaiden: Daemon Vector: pageId: 180245 templates: - - '{{Game data/saves|Windows|{{P|game}}\Saves}}' + - "{{Game data/saves|Windows|{{P|game}}\\Saves}}" Daemon X Machina: pageId: 157796 steam: 1167450 templates: - - '{{Game data/config|Steam|{{P|localappdata}}\DXM\Saved\Config\WindowsNoEditor}}' - - '{{Game data/config|Epic Games Store|{{P|localappdata}}\DXM\Saved_EOS\Config\WindowsNoEditor}}' - - '{{Game data/saves|Steam|{{P|localappdata}}\DXM\Saved\SaveGames}}' - - '{{Game data/saves|Epic Games Store|{{P|localappdata}}\DXM\Saved_EOS\SaveGames}}' + - "{{Game data/config|Steam|{{P|localappdata}}\\DXM\\Saved\\Config\\WindowsNoEditor}}" + - "{{Game data/config|Epic Games Store|{{P|localappdata}}\\DXM\\Saved_EOS\\Config\\WindowsNoEditor}}" + - "{{Game data/saves|Steam|{{P|localappdata}}\\DXM\\Saved\\SaveGames}}" + - "{{Game data/saves|Epic Games Store|{{P|localappdata}}\\DXM\\Saved_EOS\\SaveGames}}" Daemonic Runner: pageId: 155823 steam: 1210660 Daemonica: pageId: 166187 templates: - - '{{Game data/config|Windows|{{p|game}}\Data}}' - - '{{Game data/saves|Windows|{{p|game}}\Data\savedgames}}' + - "{{Game data/config|Windows|{{p|game}}\\Data}}" + - "{{Game data/saves|Windows|{{p|game}}\\Data\\savedgames}}" Daemonical: pageId: 92285 steam: 779100 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Fearem\Daemonical}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Fearem\\Daemonical}}" Daemonsgate: gog: 1227017019 pageId: 74847 steam: 719300 -Daenerys doesn't want Hentai: +"Daenerys doesn't want Hentai": pageId: 148897 steam: 1163460 -'Dafen Oil Painting Village: An Immersive Reality': +"Dafen Oil Painting Village: An Immersive Reality": pageId: 121740 steam: 960270 -'Daffy Duck, P.I.: The Case of the Missing Letters': +"Daffy Duck, P.I.: The Case of the Missing Letters": pageId: 126701 -'Dagon: by H. P. Lovecraft': +"Dagon: by H. P. Lovecraft": gog: 1132748633 gogSide: - 1524987006 @@ -38563,20 +37581,20 @@ Daenerys doesn't want Hentai: - 1722010 - 1751590 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\SOFTWARE\BitGolem\Dagon}}' - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\BitGolem\Dagon\DagonSaveFull.es3}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\SOFTWARE\\BitGolem\\Dagon}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\BitGolem\\Dagon\\DagonSaveFull.es3}}" Daikatana: gog: 1207659168 pageId: 14168 steam: 242980 templates: - - '{{Game data/config|Windows|{{p|game}}\data}}' - - '{{Game data/saves|Windows|{{p|game}}\data\save}}' -'Daikoukai Jidai III: Costa de Sol': + - "{{Game data/config|Windows|{{p|game}}\\data}}" + - "{{Game data/saves|Windows|{{p|game}}\\data\\save}}" +"Daikoukai Jidai III: Costa de Sol": pageId: 191273 -'Daikoukai Jidai IV: Porto Estado': +"Daikoukai Jidai IV: Porto Estado": pageId: 191317 -'Daily Chthonicle: Editor''s Edition': +"Daily Chthonicle: Editor's Edition": pageId: 42382 steam: 490980 Daily Espada: @@ -38604,14 +37622,14 @@ Dakar 18: pageId: 91322 steam: 767390 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Dakar18Game\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Dakar18Game\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Dakar18Game\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Dakar18Game\\Saved\\SaveGames\\}}" Dakar Desert Rally: pageId: 181907 steam: 1839940 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Dakar2Game\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Dakar2Game\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Dakar2Game\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Dakar2Game\\Saved\\SaveGames\\}}" Dal Segno: pageId: 63191 steam: 638930 @@ -38630,9 +37648,9 @@ Damage Inc. Pacific Squadron WWII: Damage Incorporated: pageId: 160773 templates: - - '{{Game data/config|Windows|{{p|game}}}}' - - '{{Game data/saves|Windows|{{p|game}}}}' -'Damage: Sadistic Butchering of Humanity': + - "{{Game data/config|Windows|{{p|game}}}}" + - "{{Game data/saves|Windows|{{p|game}}}}" +"Damage: Sadistic Butchering of Humanity": pageId: 54784 steam: 544220 Damaged Core: @@ -38656,8 +37674,8 @@ Damnation: pageId: 41292 steam: 12790 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Damnation\Config}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Damnation}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Damnation\\Config}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Damnation}}" Damnation City of Death: pageId: 48535 steam: 346800 @@ -38668,7 +37686,7 @@ Damned: pageId: 14087 steam: 251170 templates: - - '{{Game data/config|Windows|{{p|programdata}}\Damned\}}' + - "{{Game data/config|Windows|{{p|programdata}}\\Damned\\}}" Damned Cold: pageId: 51973 steam: 543720 @@ -38713,11 +37731,11 @@ Dance With Zombies: Dance of Death: pageId: 45182 steam: 430020 -'Dance of Death: Du Lac & Fey': +"Dance of Death: Du Lac & Fey": pageId: 128499 steam: 976920 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Salix Games\Dance of Death: Du Lac & Fey}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Salix Games\\Dance of Death: Du Lac & Fey}}" DanceDanceRevolution Grand Prix: pageId: 181667 DanceGirl-Swimwear: @@ -38729,7 +37747,7 @@ Dances with Butterflies VR: Dancin Divas: pageId: 185838 steam: 1941370 -'Dancing Arrow : Beat Smash': +"Dancing Arrow : Beat Smash": pageId: 156055 steam: 1190310 Dancing Girl: @@ -38746,8 +37764,8 @@ Dandara: pageId: 73614 steam: 612390 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Long Hat House\Dandara\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Long Hat House\Dandara\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Long Hat House\\Dandara\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Long Hat House\\Dandara\\}}" Dandelion - Wishes brought to you -: pageId: 37691 steam: 321290 @@ -38758,55 +37776,53 @@ Dandy Ace: pageId: 132938 steam: 1037130 templates: - - '{{Game data/saves|Windows|{{p|game}}\SaveData\*}}' + - "{{Game data/saves|Windows|{{p|game}}\\SaveData\\*}}" Dandy Dungeon - Legend of Brave Yamada -: pageId: 152871 steam: 1138970 -'Dandy: Or a Brief Glimpse Into the Life of the Candy Alchemist': +"Dandy: Or a Brief Glimpse Into the Life of the Candy Alchemist": pageId: 46993 steam: 381610 -'Danganronpa 2: Goodbye Despair': +"Danganronpa 2: Goodbye Despair": pageId: 31783 steam: 413420 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\My Games\Danganronpa2\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Danganronpa2/}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/Danganronpa2/}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\My Games\Danganronpa2\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Danganronpa2/}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/Danganronpa2/}}' -'Danganronpa Another Episode: Ultra Despair Girls': + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\My Games\\Danganronpa2\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Danganronpa2/}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/Danganronpa2/}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\My Games\\Danganronpa2\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Danganronpa2/}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/Danganronpa2/}}" +"Danganronpa Another Episode: Ultra Despair Girls": pageId: 53714 steam: 555950 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\DanganAnother\stting.ini}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\DanganAnother\}}' -'Danganronpa S: Ultimate Summer Camp': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\DanganAnother\\stting.ini}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\DanganAnother\\}}" +"Danganronpa S: Ultimate Summer Camp": pageId: 178631 steam: 1691970 -'Danganronpa V3: Killing Harmony': +"Danganronpa V3: Killing Harmony": pageId: 66707 steam: 567640 steamSide: - 589120 templates: - - '{{Game data/config|Windows|{{p|game}}\config.txt}}' - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\567640\remote\}}' -'Danganronpa: Trigger Happy Havoc': + - "{{Game data/config|Windows|{{p|game}}\\config.txt}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\567640\\remote\\}}" +"Danganronpa: Trigger Happy Havoc": pageId: 30929 steam: 413410 steamSide: - 440400 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\My Games\Danganronpa\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Danganronpa/}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/Danganronpa/}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\My Games\Danganronpa\}}' - - >- - {{Game data/saves|Microsoft - Store|{{P|localappdata}}\Packages\44133SpikeChunsoftCo.Ltd.DanganRonpa1_f545tdr3ah1rr\SystemAppData\wgs\{{P|uid}}\}} - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Danganronpa/}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/Danganronpa/}}' + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\My Games\\Danganronpa\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Danganronpa/}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/Danganronpa/}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\My Games\\Danganronpa\\}}" + - "{{Game data/saves|Microsoft Store|{{P|localappdata}}\\Packages\\44133SpikeChunsoftCo.Ltd.DanganRonpa1_f545tdr3ah1rr\\SystemAppData\\wgs\\{{P|uid}}\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Danganronpa/}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/Danganronpa/}}" Danger City: pageId: 152763 steam: 1198240 @@ -38820,7 +37836,7 @@ Danger Crew: pageId: 134395 steam: 1064690 templates: - - '{{Game data/saves|Windows|{{p|appdata}}\dangercrew\storage}}' + - "{{Game data/saves|Windows|{{p|appdata}}\\dangercrew\\storage}}" Danger Forever: gog: 1675483515 pageId: 183119 @@ -38839,9 +37855,7 @@ Danger Scavenger: pageId: 161005 steam: 1169740 templates: - - >- - {{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Star Drifters\Danger - Scavenger\{{P|uid}}\youareawesome.scavenger}} + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Star Drifters\\Danger Scavenger\\{{P|uid}}\\youareawesome.scavenger}}" Danger Zone: pageId: 62512 steam: 604740 @@ -38849,7 +37863,7 @@ Danger Zone 2: pageId: 99934 steam: 513690 templates: - - '{{Game data/config|Windows|{{P|game}}\DANGER ZONE 2\DangerZone\Config\}}' + - "{{Game data/config|Windows|{{P|game}}\\DANGER ZONE 2\\DangerZone\\Config\\}}" Danger!Energy: pageId: 123417 steam: 862250 @@ -38865,43 +37879,43 @@ Dangerous Blaster: Dangerous Bullets: pageId: 62495 steam: 575770 -Dangerous Dave in the Deserted Pirate's Hideout!: +"Dangerous Dave in the Deserted Pirate's Hideout!": gog: 1207659130 pageId: 131852 templates: - - '{{Game data/saves|DOS|{{P|game}}\DSCORES.DAV}}' - - '{{Game data/saves|GOG.com|{{P|game}}\DD DH\DSCORES.DAV}}' + - "{{Game data/saves|DOS|{{P|game}}\\DSCORES.DAV}}" + - "{{Game data/saves|GOG.com|{{P|game}}\\DD DH\\DSCORES.DAV}}" Dangerous Dave in the Haunted Mansion: gog: 1207659130 pageId: 131848 -Dangerous Dave's Risky Rescue: +"Dangerous Dave's Risky Rescue": gog: 1207659130 pageId: 131850 templates: - - '{{Game data/config|DOS|{{P|game}}\AUDIO.DAV|{{P|game}}\CONFIG.DAV}}' - - '{{Game data/config|GOG.com|{{P|game}}\DD RR\AUDIO.DAV|{{P|game}}\DD RR\CONFIG.DAV}}' - - '{{Game data/saves|DOS|{{P|game}}\{{code|*}}.SAV}}' - - '{{Game data/saves|GOG.com|{{P|game}}\DD RR\{{code|*}}.SAV}}' + - "{{Game data/config|DOS|{{P|game}}\\AUDIO.DAV|{{P|game}}\\CONFIG.DAV}}" + - "{{Game data/config|GOG.com|{{P|game}}\\DD RR\\AUDIO.DAV|{{P|game}}\\DD RR\\CONFIG.DAV}}" + - "{{Game data/saves|DOS|{{P|game}}\\{{code|*}}.SAV}}" + - "{{Game data/saves|GOG.com|{{P|game}}\\DD RR\\{{code|*}}.SAV}}" Dangerous Driving: pageId: 131917 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\DangerousDriving\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\DangerousDriving\Saved\SaveGames\SaveGame.sav}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\DangerousDriving\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\DangerousDriving\\Saved\\SaveGames\\SaveGame.sav}}" Dangerous Duels: pageId: 52296 steam: 524650 -'Dangerous Games: Illusionist': +"Dangerous Games: Illusionist": pageId: 72728 steam: 723920 -'Dangerous Games: Prisoners of Destiny': +"Dangerous Games: Prisoners of Destiny": pageId: 58013 steam: 593720 Dangerous Golf: pageId: 33204 steam: 405500 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Orlando\Saved\Config\WindowsNoEditor}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Orlando\Saved\SaveGames}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Orlando\\Saved\\Config\\WindowsNoEditor}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Orlando\\Saved\\SaveGames}}" Dangerous Ground: pageId: 120816 steam: 962080 @@ -38920,7 +37934,7 @@ Dangerous Orbit: Dangerous Relationship: pageId: 36866 steam: 494460 -Dangerous Skies 80's edition: +"Dangerous Skies 80's edition": pageId: 103125 steam: 896220 Dangerous Truck: @@ -38931,11 +37945,11 @@ Dangerous Waters: pageId: 41401 steam: 1600 templates: - - '{{Game data/config|Windows|{{P|game}}\}}' + - "{{Game data/config|Windows|{{P|game}}\\}}" DanielX.net Paint Composer: pageId: 156509 steam: 1208550 -'Dank Prank: Dopeville': +"Dank Prank: Dopeville": pageId: 134521 steam: 1018220 Danko and Treasure Map: @@ -38945,39 +37959,39 @@ Danmaku Unlimited 2: pageId: 37373 steam: 280560 templates: - - '{{Game data/config|Windows|{{p|game}}\profile\save.esf}}' - - '{{Game data/saves|Windows|{{p|game}}\profile\save.esf}}' + - "{{Game data/config|Windows|{{p|game}}\\profile\\save.esf}}" + - "{{Game data/saves|Windows|{{p|game}}\\profile\\save.esf}}" Danmaku Unlimited 3: pageId: 57010 steam: 450950 -Danny's War: +"Danny's War": pageId: 53858 steam: 559200 -'Danse Macabre: Crimson Cabaret': +"Danse Macabre: Crimson Cabaret": pageId: 63336 renamedFrom: - - 'Danse Macabre: Crimson Cabaret Collector''s Edition' + - "Danse Macabre: Crimson Cabaret Collector's Edition" steam: 647930 -'Danse Macabre: Deadly Deception': +"Danse Macabre: Deadly Deception": pageId: 82310 renamedFrom: - - 'Danse Macabre: Deadly Deception Collector''s Edition' + - "Danse Macabre: Deadly Deception Collector's Edition" steam: 796090 -'Danse Macabre: The Last Adagio': +"Danse Macabre: The Last Adagio": pageId: 53029 renamedFrom: - - 'Danse Macabre: The Last Adagio Collector''s Edition' + - "Danse Macabre: The Last Adagio Collector's Edition" steam: 551380 -'Danse Macabre: Thin Ice': +"Danse Macabre: Thin Ice": pageId: 102967 steam: 887950 -Dante's Forest: +"Dante's Forest": pageId: 53395 steam: 538040 -'Daoker:A Banished Tiger': +"Daoker:A Banished Tiger": pageId: 93728 steam: 839500 -Daraney - Guardian's Rise: +"Daraney - Guardian's Rise": pageId: 155833 steam: 1166680 Darby the Dragon: @@ -38985,16 +37999,16 @@ Darby the Dragon: Darco - Reign of Elements: pageId: 89660 steam: 789960 -'Darconika: The Cube of Soul': +"Darconika: The Cube of Soul": pageId: 41785 steam: 490940 templates: - - '{{Game data/config|Windows|{{p|game}}\renpy\config.py}}' - - '{{Game data/saves|Windows|{{P|game}}\game\saves\|{{p|appdata}}\renpy\Darconika-1448176779\}}' + - "{{Game data/config|Windows|{{p|game}}\\renpy\\config.py}}" + - "{{Game data/saves|Windows|{{P|game}}\\game\\saves\\|{{p|appdata}}\\renpy\\Darconika-1448176779\\}}" Dare Course: pageId: 102623 steam: 896730 -'DareSora: Tears for an Unknown Sky': +"DareSora: Tears for an Unknown Sky": pageId: 109700 steam: 913450 Darius Cozmic Collection Arcade: @@ -39006,32 +38020,32 @@ Dariusburst Chronicle Saviours: pageId: 30334 steam: 377870 templates: - - '{{Game data/config|Windows|{{P|steam}}\userdata\{{P|uid}}\377870\remote}}' - - '{{Game data/saves|Windows|{{P|steam}}\userdata\{{P|uid}}\377870\remote}}' + - "{{Game data/config|Windows|{{P|steam}}\\userdata\\{{P|uid}}\\377870\\remote}}" + - "{{Game data/saves|Windows|{{P|steam}}\\userdata\\{{P|uid}}\\377870\\remote}}" Dark: pageId: 7932 steam: 225360 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Kalypso Media\Dark\}}' - - '{{Game data/saves|Windows|{{p|steam}}\userdata\{{p|uid}}\225360\remote\savegames\}}' + - "{{Game data/config|Windows|{{p|appdata}}\\Kalypso Media\\Dark\\}}" + - "{{Game data/saves|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\225360\\remote\\savegames\\}}" Dark Age of Camelot: pageId: 183728 Dark Ages: pageId: 30436 steam: 358440 templates: - - '{{Game data/config|DOS|{{p|game}}\KEYBOARD.CFG}}' - - '{{Game data/saves|DOS|{{p|game}}\SAVEGAME.DA1|{{p|game}}\HIGHSCOR.DA1}}' + - "{{Game data/config|DOS|{{p|game}}\\KEYBOARD.CFG}}" + - "{{Game data/saves|DOS|{{p|game}}\\SAVEGAME.DA1|{{p|game}}\\HIGHSCOR.DA1}}" Dark Alley Elf: pageId: 184883 steam: 988940 -'Dark Angels: Masquerade of Shadows': +"Dark Angels: Masquerade of Shadows": pageId: 56916 steam: 560720 -'Dark Arcana: The Carnival': +"Dark Arcana: The Carnival": pageId: 37957 steam: 284730 -'Dark Asylum: Mystery Adventure': +"Dark Asylum: Mystery Adventure": pageId: 112284 steam: 925070 Dark Bestiary: @@ -39045,40 +38059,40 @@ Dark Burial: renamedFrom: - Dark burial steam: 1077140 -'Dark Canvas: A Brush With Death': +"Dark Canvas: A Brush With Death": pageId: 59283 renamedFrom: - - 'Dark Canvas: A Brush With Death Collector''s Edition' + - "Dark Canvas: A Brush With Death Collector's Edition" steam: 549220 -'Dark Canvas: A Murder Exposed': +"Dark Canvas: A Murder Exposed": pageId: 90146 steam: 826380 -'Dark Canvas: Blood and Stone': +"Dark Canvas: Blood and Stone": pageId: 72708 renamedFrom: - - 'Dark Canvas: Blood and Stone Collector''s Edition' + - "Dark Canvas: Blood and Stone Collector's Edition" steam: 723910 -'Dark Cases: The Blood Ruby': +"Dark Cases: The Blood Ruby": pageId: 55291 renamedFrom: - - 'Dark Cases: The Blood Ruby Collector''s Edition' + - "Dark Cases: The Blood Ruby Collector's Edition" steam: 569150 Dark Chess: pageId: 151185 steam: 1151130 -'Dark City: Dublin': +"Dark City: Dublin": pageId: 181964 steam: 1265970 -'Dark City: Paris': +"Dark City: Paris": pageId: 181962 steam: 1805100 -'Dark City: Vienna': +"Dark City: Vienna": pageId: 149750 steam: 1157810 Dark Colony: pageId: 170409 templates: - - '{{Game data/saves|Windows|{{p|game}}\save}}' + - "{{Game data/saves|Windows|{{p|game}}\\save}}" Dark Core: pageId: 121572 steam: 773190 @@ -39086,8 +38100,8 @@ Dark Crypt: pageId: 191067 steam: 1706170 templates: - - '{{Game data/config|Linux|{{P|linuxhome}}/.local/share/godot/app_userdata/Dark Crypt/}}' - - '{{Game data/saves|Linux|{{P|linuxhome}}/.local/share/godot/app_userdata/Dark Crypt/}}' + - "{{Game data/config|Linux|{{P|linuxhome}}/.local/share/godot/app_userdata/Dark Crypt/}}" + - "{{Game data/saves|Linux|{{P|linuxhome}}/.local/share/godot/app_userdata/Dark Crypt/}}" Dark Data: pageId: 141316 steam: 996000 @@ -39101,18 +38115,18 @@ Dark Deception: pageId: 111922 steam: 332950 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\DDeception\Saved\SaveGames\*.sav}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\DDeception\Saved\SaveGames\*.sav}}' -'Dark Deception: Monsters & Mortals': + - "{{Game data/config|Windows|{{p|localappdata}}\\DDeception\\Saved\\SaveGames\\*.sav}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\DDeception\\Saved\\SaveGames\\*.sav}}" +"Dark Deception: Monsters & Mortals": pageId: 179740 steam: 1266690 Dark Deity: pageId: 169412 steam: 1374840 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Dark_Deity\Config.ini}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Dark_Deity\Save*.ini}}' -'Dark Descent: The Blue Rose': + - "{{Game data/config|Windows|{{p|localappdata}}\\Dark_Deity\\Config.ini}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Dark_Deity\\Save*.ini}}" +"Dark Descent: The Blue Rose": pageId: 66025 steam: 676800 Dark Devotion: @@ -39120,28 +38134,28 @@ Dark Devotion: pageId: 72425 steam: 718590 templates: - - '{{Game data/config|Windows|{{P|game}}\0_Options}}' - - '{{Game data/saves|Windows|{{P|game}}\0_{{code|*}}}}' -'Dark Dimensions: City of Ash': + - "{{Game data/config|Windows|{{P|game}}\\0_Options}}" + - "{{Game data/saves|Windows|{{P|game}}\\0_{{code|*}}}}" +"Dark Dimensions: City of Ash": pageId: 73817 renamedFrom: - - 'Dark Dimensions: City of Ash Collector''s Edition' + - "Dark Dimensions: City of Ash Collector's Edition" steam: 729920 -'Dark Dimensions: City of Fog': +"Dark Dimensions: City of Fog": pageId: 56762 renamedFrom: - - 'Dark Dimensions: City of Fog Collector''s Edition' + - "Dark Dimensions: City of Fog Collector's Edition" steam: 578360 -'Dark Dimensions: Homecoming': +"Dark Dimensions: Homecoming": pageId: 120751 steam: 956380 -'Dark Dimensions: Somber Song': +"Dark Dimensions: Somber Song": pageId: 91835 steam: 838710 -'Dark Dimensions: Wax Beauty': +"Dark Dimensions: Wax Beauty": pageId: 68122 renamedFrom: - - 'Dark Dimensions: Wax Beauty Collector''s Edition' + - "Dark Dimensions: Wax Beauty Collector's Edition" steam: 695440 Dark Drive: pageId: 91246 @@ -39149,13 +38163,13 @@ Dark Drive: Dark Earth: pageId: 60147 templates: - - '{{Game data/saves|Windows|{{p|game}}\save\}}' + - "{{Game data/saves|Windows|{{p|game}}\\save\\}}" Dark Echo: pageId: 37574 steam: 368650 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\RAC7\Dark Echo}}' - - '{{Game data/saves|Windows|{{P|game}}\lock_icon.png}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\RAC7\\Dark Echo}}" + - "{{Game data/saves|Windows|{{P|game}}\\lock_icon.png}}" Dark Eden: pageId: 53916 steam: 548290 @@ -39168,7 +38182,7 @@ Dark Egypt: Dark Elf: pageId: 66159 steam: 665180 -Dark Elf's Adventure: +"Dark Elf's Adventure": pageId: 149893 steam: 1138800 Dark Empire: @@ -39179,40 +38193,40 @@ Dark Envoy: pageId: 145504 steam: 945770 templates: - - '{{Game data/config|Windows|{{P|userprofile\appdata\locallow}}\Event Horizon\DarkEnvoy\settings\}}' - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Event Horizon\DarkEnvoy\save\}}' + - "{{Game data/config|Windows|{{P|userprofile\\appdata\\locallow}}\\Event Horizon\\DarkEnvoy\\settings\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Event Horizon\\DarkEnvoy\\save\\}}" Dark Fairies: pageId: 96777 steam: 873580 Dark Fairy Fantasy: pageId: 148864 steam: 1153550 -'Dark Fall 3: Lost Souls': +"Dark Fall 3: Lost Souls": gog: 1207660703 pageId: 19495 steam: 46750 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Darkling Room\Dark Fall Lost Souls\}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\Saved Games\Dark Fall - Lost Souls\}}' -'Dark Fall II: Lights Out': + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Darkling Room\\Dark Fall Lost Souls\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\Saved Games\\Dark Fall - Lost Souls\\}}" +"Dark Fall II: Lights Out": gog: 1207658830 pageId: 13958 steam: 260710 -'Dark Fall: Ghost Vigil': +"Dark Fall: Ghost Vigil": gog: 1640957675 pageId: 148537 steam: 1169020 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Darkling Room\Dark Fall - Ghost Vigil}}' - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Darkling Room\Dark Fall - Ghost Vigil\}}' -'Dark Fall: The Journal': + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Darkling Room\\Dark Fall - Ghost Vigil}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Darkling Room\\Dark Fall - Ghost Vigil\\}}" +"Dark Fall: The Journal": gog: 1207658804 pageId: 13954 steam: 260690 -'Dark Fantasy 2: Jigsaw Puzzle': +"Dark Fantasy 2: Jigsaw Puzzle": pageId: 135334 steam: 1071330 -'Dark Fantasy: Jigsaw Puzzle': +"Dark Fantasy: Jigsaw Puzzle": pageId: 121953 steam: 955320 Dark Fear: @@ -39224,13 +38238,13 @@ Dark Forest: Dark Forester: pageId: 48743 steam: 349450 -'Dark Future: Blood Red States': +"Dark Future: Blood Red States": gog: 1396468236 pageId: 40171 steam: 370870 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\DarkFuture\Saved\Config\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\DarkFuture\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\DarkFuture\\Saved\\Config\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\DarkFuture\\Saved\\SaveGames\\}}" Dark Gates: pageId: 48891 steam: 333730 @@ -39246,7 +38260,7 @@ Dark Gravity: Dark Grim Mariupolis: pageId: 88136 steam: 597730 -'Dark Heritage: Guardians of Hope': +"Dark Heritage: Guardians of Hope": pageId: 46316 steam: 394280 Dark Hero Party: @@ -39258,11 +38272,11 @@ Dark Hill Museum of Death: Dark Hope: pageId: 132898 steam: 620350 -'Dark Horizons: Mechanized Corps': +"Dark Horizons: Mechanized Corps": pageId: 18740 steam: 266470 templates: - - '{{Game data/config|Windows|{{p|game}}\art}}' + - "{{Game data/config|Windows|{{p|game}}\\art}}" Dark Inside: pageId: 112084 renamedFrom: @@ -39279,15 +38293,15 @@ Dark Legions: pageId: 187069 steam: 2414360 templates: - - '{{Game data/saves|Windows|{{p|game}}\DLEGIONS\*.GAM}}' + - "{{Game data/saves|Windows|{{p|game}}\\DLEGIONS\\*.GAM}}" Dark Light: gog: 1546650311 pageId: 154211 steam: 1134520 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Mirari&co&JinxterGames\Dark Light}}' - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Mirari_co_JinxterGames\Dark Light\}}' -'Dark Lore Mysteries: The Hunt For Truth': + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Mirari&co&JinxterGames\\Dark Light}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Mirari_co_JinxterGames\\Dark Light\\}}" +"Dark Lore Mysteries: The Hunt For Truth": pageId: 50472 steam: 288970 Dark Matter: @@ -39295,9 +38309,9 @@ Dark Matter: pageId: 19607 steam: 251410 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\InterWave Studios\Dark Matter\}}' - - '{{Game data/config|Steam|{{P|steam}}\userdata\{{P|uid}}\251410\remote\dmprefs.bin}}' - - '{{Game data/saves|Steam|{{P|steam}}\userdata\{{P|uid}}\251410\remote\*.sav}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\InterWave Studios\\Dark Matter\\}}" + - "{{Game data/config|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\251410\\remote\\dmprefs.bin}}" + - "{{Game data/saves|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\251410\\remote\\*.sav}}" Dark Matter (2015): pageId: 51104 steam: 345130 @@ -39319,8 +38333,8 @@ Dark Messiah of Might and Magic: steamSide: - 2130 templates: - - '{{Game data/config|Windows|{{p|game}}\mm\cfg\config.cfg|{{p|hkcu}}\Software\Valve\Source\mm\Settings\}}' - - '{{Game data/saves|Windows|{{p|game}}\mm\SAVE\}}' + - "{{Game data/config|Windows|{{p|game}}\\mm\\cfg\\config.cfg|{{p|hkcu}}\\Software\\Valve\\Source\\mm\\Settings\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\mm\\SAVE\\}}" Dark Miasma: pageId: 145073 steam: 1070440 @@ -39344,59 +38358,59 @@ Dark Nights with Poe and Munro: pageId: 150766 steam: 1098170 templates: - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\DAvekki\DarkNights\save.json}}' + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\DAvekki\\DarkNights\\save.json}}" Dark Noid: pageId: 79198 steam: 767870 Dark Old Sun: pageId: 79943 steam: 739290 -'Dark Parables: Ballad of Rapunzel': +"Dark Parables: Ballad of Rapunzel": pageId: 61634 steam: 629110 -'Dark Parables: Curse of Briar Rose': +"Dark Parables: Curse of Briar Rose": pageId: 38651 steam: 524600 -'Dark Parables: Goldilocks and the Fallen Star': +"Dark Parables: Goldilocks and the Fallen Star": pageId: 70357 steam: 711890 -'Dark Parables: Jack and the Sky Kingdom': +"Dark Parables: Jack and the Sky Kingdom": pageId: 56350 steam: 578320 -'Dark Parables: Portrait of the Stained Princess': +"Dark Parables: Portrait of the Stained Princess": pageId: 149622 steam: 1161570 -'Dark Parables: Queen of Sands': +"Dark Parables: Queen of Sands": pageId: 65868 steam: 678440 -'Dark Parables: Requiem for the Forgotten Shadow': +"Dark Parables: Requiem for the Forgotten Shadow": pageId: 58429 steam: 601420 -'Dark Parables: Return of the Salt Princess': +"Dark Parables: Return of the Salt Princess": pageId: 89988 steam: 815580 -'Dark Parables: Rise of the Snow Queen': +"Dark Parables: Rise of the Snow Queen": pageId: 41715 steam: 499110 -'Dark Parables: The Exiled Prince': +"Dark Parables: The Exiled Prince": pageId: 41717 steam: 499100 -'Dark Parables: The Final Cinderella': +"Dark Parables: The Final Cinderella": pageId: 33535 steam: 465890 -'Dark Parables: The Little Mermaid and the Purple Tide': +"Dark Parables: The Little Mermaid and the Purple Tide": pageId: 44052 steam: 453390 -'Dark Parables: The Match Girl''s Lost Paradise': +"Dark Parables: The Match Girl's Lost Paradise": pageId: 121018 steam: 971070 -'Dark Parables: The Red Riding Hood Sisters': +"Dark Parables: The Red Riding Hood Sisters": pageId: 41713 steam: 499120 -'Dark Parables: The Swan Princess and The Dire Tree': +"Dark Parables: The Swan Princess and The Dire Tree": pageId: 42541 steam: 496030 -'Dark Parables: The Thief and the Tinderbox': +"Dark Parables: The Thief and the Tinderbox": pageId: 41525 steam: 533040 Dark Passenger: @@ -39416,32 +38430,30 @@ Dark Quest: pageId: 48915 steam: 342860 templates: - - '{{Game data/config|Windows|{{P|userprofile}}\AppData\LocalLow\Brain Seal Entertainment\Dark Quest\settings.bin}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Brain Seal Entertainment\Dark Quest\}}' + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Brain Seal Entertainment\\Dark Quest\\settings.bin}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Brain Seal Entertainment\\Dark Quest\\}}" Dark Quest 2: gog: 1178844003 pageId: 52985 steam: 453690 templates: - - >- - {{Game data/config|Windows|{{P|userprofile}}\AppData\LocalLow\Brain Seal Ltd\Dark Quest - 2\gamesettings.bin|{{P|hkcu}}\Software\Brain Seal Ltd\Dark Quest 2\}} - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Brain Seal Ltd\Dark Quest 2\}}' + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Brain Seal Ltd\\Dark Quest 2\\gamesettings.bin|{{P|hkcu}}\\Software\\Brain Seal Ltd\\Dark Quest 2\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Brain Seal Ltd\\Dark Quest 2\\}}" Dark Raid: pageId: 50145 steam: 293720 Dark Raider: pageId: 154032 steam: 1199450 -'Dark Realm: Princess of Ice': +"Dark Realm: Princess of Ice": pageId: 70202 renamedFrom: - - 'Dark Realm: Princess of Ice Collector''s Edition' + - "Dark Realm: Princess of Ice Collector's Edition" steam: 709350 -'Dark Realm: Queen of Flames': +"Dark Realm: Queen of Flames": pageId: 57993 renamedFrom: - - 'Dark Realm: Queen of Flames Collector''s Edition' + - "Dark Realm: Queen of Flames Collector's Edition" steam: 591470 Dark Reflection: pageId: 145009 @@ -39451,12 +38463,12 @@ Dark Reflection: Dark Reign 2: gog: 1207658911 pageId: 13820 -'Dark Reign: The Future of War': +"Dark Reign: The Future of War": gog: 1207658904 pageId: 13817 templates: - - '{{Game data/config|Windows|{{P|game}}\TACTICS.CFG}}' - - '{{Game data/saves|Windows|{{P|game}}\save}}' + - "{{Game data/config|Windows|{{P|game}}\\TACTICS.CFG}}" + - "{{Game data/saves|Windows|{{P|game}}\\save}}" Dark Rift: gog: 1998138683 pageId: 184617 @@ -39467,19 +38479,19 @@ Dark Rising: Dark Roll: pageId: 124462 steam: 962810 -'Dark Romance: Heart of the Beast': +"Dark Romance: Heart of the Beast": pageId: 90226 steam: 826420 -'Dark Romance: Hunchback of Notre-Dame': +"Dark Romance: Hunchback of Notre-Dame": pageId: 129663 steam: 1046060 -'Dark Romance: The Ethereal Gardens': +"Dark Romance: The Ethereal Gardens": pageId: 149881 steam: 1152040 -'Dark Romance: The Swan Sonata': +"Dark Romance: The Swan Sonata": pageId: 114396 steam: 941040 -'Dark Romance: Vampire in Love': +"Dark Romance: Vampire in Love": pageId: 73774 steam: 723930 Dark Rose Valkyrie: @@ -39498,23 +38510,21 @@ Dark Scavenger: pageId: 38384 steam: 293880 templates: - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\DarkScavenger\SaveFile.txt}}' + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\DarkScavenger\\SaveFile.txt}}" Dark Sector: pageId: 13010 steam: 29900 templates: - - >- - {{Game data/config|Windows|{{p|game}}\Configs\|{{p|userprofile}}\Aspyr\Dark Sector\settings|{{p|appdata}}\Dark - Sector\settings{{note|Green Man Gaming version}}}} - - '{{Game data/saves|Windows|{{p|appdata}}\Dark Sector\*.SAV}}' + - "{{Game data/config|Windows|{{p|game}}\\Configs\\|{{p|userprofile}}\\Aspyr\\Dark Sector\\settings|{{p|appdata}}\\Dark Sector\\settings{{note|Green Man Gaming version}}}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Dark Sector\\*.SAV}}" Dark Seed: pageId: 59722 Dark Seed II: pageId: 59725 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/saves|Windows|{{p|game}}\}}' -'Dark Shadows: Army of Evil': + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\}}" +"Dark Shadows: Army of Evil": pageId: 50584 steam: 280640 Dark Shiny: @@ -39525,24 +38535,24 @@ Dark Shores: steam: 574710 Dark Side: pageId: 176567 -'Dark Side of the Sun - Teil II: Palast der Verdammnis': +"Dark Side of the Sun - Teil II: Palast der Verdammnis": pageId: 76503 templates: - - '{{Game data/config|DOS|{{p|game}}\RPGSOU.INF}}' - - '{{Game data/saves|DOS|{{p|game}}\*.NNG|{{p|game}}\NPARTY.DAT}}' -'Dark Side of the Sun - Teil III: Simon der Zauberer': + - "{{Game data/config|DOS|{{p|game}}\\RPGSOU.INF}}" + - "{{Game data/saves|DOS|{{p|game}}\\*.NNG|{{p|game}}\\NPARTY.DAT}}" +"Dark Side of the Sun - Teil III: Simon der Zauberer": pageId: 76505 templates: - - '{{Game data/saves|DOS|{{p|game}}\*.SNG|{{p|game}}\SPARTY.DAT}}' -'Dark Side of the Sun: Der Stab des Lichts': + - "{{Game data/saves|DOS|{{p|game}}\\*.SNG|{{p|game}}\\SPARTY.DAT}}" +"Dark Side of the Sun: Der Stab des Lichts": pageId: 76501 templates: - - '{{Game data/config|DOS|{{p|game}}\RPGSOU.INF}}' - - '{{Game data/saves|DOS|{{p|game}}\*.RGM|{{p|game}}\RPARTY.DAT}}' + - "{{Game data/config|DOS|{{p|game}}\\RPGSOU.INF}}" + - "{{Game data/saves|DOS|{{p|game}}\\*.RGM|{{p|game}}\\RPARTY.DAT}}" Dark Skeleton Survival: pageId: 136668 steam: 1084910 -'Dark Skies: The Nemansk Incident': +"Dark Skies: The Nemansk Incident": pageId: 153997 steam: 657480 Dark Snow: @@ -39557,88 +38567,88 @@ Dark Souls II: - 271944 - 284450 templates: - - '{{Game data/config|Windows|{{p|appdata}}\DarkSoulsII\GraphicsConfig.xml}}' - - '{{Game data/saves|Windows|{{p|appdata}}\DarkSoulsII\{{p|uid}}\DARKSII0000.sl2}}' -'Dark Souls II: Scholar of the First Sin': + - "{{Game data/config|Windows|{{p|appdata}}\\DarkSoulsII\\GraphicsConfig.xml}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\DarkSoulsII\\{{p|uid}}\\DARKSII0000.sl2}}" +"Dark Souls II: Scholar of the First Sin": pageId: 24344 steam: 335300 templates: - - '{{Game data/config|Windows|{{p|appdata}}\DarkSoulsII\GraphicsConfig_SOFS.xml}}' - - '{{Game data/saves|Windows|{{p|appdata}}\DarkSoulsII\{{p|uid}}\DS2SOFS0000.sl2}}' + - "{{Game data/config|Windows|{{p|appdata}}\\DarkSoulsII\\GraphicsConfig_SOFS.xml}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\DarkSoulsII\\{{p|uid}}\\DS2SOFS0000.sl2}}" Dark Souls III: pageId: 30153 steam: 374320 templates: - - '{{Game data/config|Windows|{{p|appdata}}\DarkSoulsIII\GraphicsConfig.xml}}' - - '{{Game data/saves|Windows|{{p|appdata}}\DarkSoulsIII\{{P|uid}}\DS30000.sl2}}' + - "{{Game data/config|Windows|{{p|appdata}}\\DarkSoulsIII\\GraphicsConfig.xml}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\DarkSoulsIII\\{{P|uid}}\\DS30000.sl2}}" Dark Souls Remastered: pageId: 80167 steam: 570940 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\FromSoftware\NBGI\DarkSouls\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\NBGI\DARK SOULS REMASTERED\}}' -'Dark Souls: Prepare to Die Edition': + - "{{Game data/config|Windows|{{p|localappdata}}\\FromSoftware\\NBGI\\DarkSouls\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\NBGI\\DARK SOULS REMASTERED\\}}" +"Dark Souls: Prepare to Die Edition": pageId: 3367 steam: 211420 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\NBGI\DarkSouls}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\NBGI\DarkSouls\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\NBGI\\DarkSouls}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\NBGI\\DarkSouls\\}}" Dark Space Conqueror: pageId: 136958 steam: 1079780 -'Dark Storm: VR Missions': +"Dark Storm: VR Missions": pageId: 46821 steam: 395150 -'Dark Strokes: The Legend of the Snow Kingdom': +"Dark Strokes: The Legend of the Snow Kingdom": pageId: 79064 steam: 765690 -Dark Sun Pictures' Dark Sun - The Space Shooter: +"Dark Sun Pictures' Dark Sun - The Space Shooter": pageId: 125745 steam: 1003850 -'Dark Sun: Shattered Lands': +"Dark Sun: Shattered Lands": gog: 1432723859 pageId: 61930 steam: 1904600 templates: - - '{{Game data/config|DOS|{{p|game}}\DARKRUN.GFF}}' - - '{{Game data/saves|DOS|{{p|game}}\SAVE**.SAV|{{p|game}}\CHARSAVE.GFF}}' -'Dark Sun: Wake of the Ravager': + - "{{Game data/config|DOS|{{p|game}}\\DARKRUN.GFF}}" + - "{{Game data/saves|DOS|{{p|game}}\\SAVE**.SAV|{{p|game}}\\CHARSAVE.GFF}}" +"Dark Sun: Wake of the Ravager": gog: 1432903719 pageId: 61934 steam: 1904601 templates: - - '{{Game data/config|DOS|{{p|game}}\DARKRUN.GFF}}' - - '{{Game data/saves|DOS|{{p|game}}\SAVE**.SAV|{{p|game}}\CHARSAVE.GFF}}' + - "{{Game data/config|DOS|{{p|game}}\\DARKRUN.GFF}}" + - "{{Game data/saves|DOS|{{p|game}}\\SAVE**.SAV|{{p|game}}\\CHARSAVE.GFF}}" Dark Swords: pageId: 139061 steam: 1091010 -'Dark Tales: Edgar Allan Poe''s Ligeia': +"Dark Tales: Edgar Allan Poe's Ligeia": pageId: 144380 renamedFrom: - - 'Dark Tales: Edgar Allan Poe''s Ligeia Collector''s Edition' + - "Dark Tales: Edgar Allan Poe's Ligeia Collector's Edition" steam: 1123900 -'Dark Tales: Edgar Allan Poe''s The Fall of the House of Usher': +"Dark Tales: Edgar Allan Poe's The Fall of the House of Usher": pageId: 65622 steam: 678400 -'Dark Tales: Edgar Allan Poe''s The Gold Bug': +"Dark Tales: Edgar Allan Poe's The Gold Bug": pageId: 33920 steam: 465900 -'Dark Tales: Edgar Allan Poe''s The Masque of the Red Death': +"Dark Tales: Edgar Allan Poe's The Masque of the Red Death": pageId: 41605 steam: 514720 -'Dark Tales: Edgar Allan Poe''s The Mystery of Marie Roget': +"Dark Tales: Edgar Allan Poe's The Mystery of Marie Roget": pageId: 86995 steam: 805000 -'Dark Tales: Edgar Allan Poe''s The Premature Burial': +"Dark Tales: Edgar Allan Poe's The Premature Burial": pageId: 128262 steam: 1030180 -'Dark Tales: Edgar Allan Poe''s The Tell-Tale Heart': +"Dark Tales: Edgar Allan Poe's The Tell-Tale Heart": pageId: 102379 steam: 896990 Dark Throne: pageId: 57782 steam: 587490 -'Dark Throne: The Queen Rises': +"Dark Throne: The Queen Rises": pageId: 182742 steam: 2124570 Dark Tides: @@ -39647,7 +38657,7 @@ Dark Tides: Dark Tower: pageId: 59277 steam: 606060 -'Dark Town: Invisible Danger': +"Dark Town: Invisible Danger": pageId: 74702 steam: 725010 Dark Trail: @@ -39657,8 +38667,8 @@ Dark Train: pageId: 51969 steam: 532290 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Paperash\Dark Train\}}' -'Dark Train: Coupe': + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Paperash\\Dark Train\\}}" +"Dark Train: Coupe": pageId: 65357 steam: 659150 Dark Tunnels: @@ -39674,13 +38684,13 @@ Dark Void: pageId: 27558 steam: 45710 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\My Games\Airtight\Dark Void\SkyGame\Config\}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\My Games\Airtight\Dark Void\SavedGames\}}' + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\My Games\\Airtight\\Dark Void\\SkyGame\\Config\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\My Games\\Airtight\\Dark Void\\SavedGames\\}}" Dark Void Zero: pageId: 41159 steam: 45730 templates: - - '{{Game data/saves|Windows|{{p|steam}}\userdata\{{p|uid}}\45730\remote\}}' + - "{{Game data/saves|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\45730\\remote\\}}" Dark War: pageId: 52928 steam: 547370 @@ -39703,14 +38713,14 @@ Dark and Darker: pageId: 184996 steam: 2016590 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\DungeonCrawler\Saved\Config\Windows }}' + - "{{Game data/config|Windows|{{P|localappdata}}\\DungeonCrawler\\Saved\\Config\\Windows }}" Dark and Light: pageId: 55299 steam: 529180 templates: - - '{{Game data/config|Windows|{{p|game}}\DNL\Saved\Config\WindowsNoEditor\GameUserSettings.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\DNL\Saved}}' -'Dark: Frontier': + - "{{Game data/config|Windows|{{p|game}}\\DNL\\Saved\\Config\\WindowsNoEditor\\GameUserSettings.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\DNL\\Saved}}" +"Dark: Frontier": pageId: 66497 steam: 607190 DarkBase 01: @@ -39743,20 +38753,20 @@ DarkSpace: DarkSpyre: pageId: 74761 templates: - - '{{Game data/saves|DOS|{{p|game}}\DS*.DAT|{{p|game}}\SAVE.DIR|{{p|game}}\HISCORE}}' + - "{{Game data/saves|DOS|{{p|game}}\\DS*.DAT|{{p|game}}\\SAVE.DIR|{{p|game}}\\HISCORE}}" DarkStory Online: pageId: 140484 steam: 1020780 -'Darkarta: A Broken Heart''s Quest': +"Darkarta: A Broken Heart's Quest": pageId: 69206 steam: 601530 templates: - - '{{Game data/config|Windows|{{P|appdata}}\Tuttifrutti_Games\Darkarta_ABHQ_CE\*.sav}}' - - '{{Game data/saves|Windows|{{p|APPDATA}}\Tuttifrutti_Games\Darkarta_ABHQ_CE\*.sav}}' + - "{{Game data/config|Windows|{{P|appdata}}\\Tuttifrutti_Games\\Darkarta_ABHQ_CE\\*.sav}}" + - "{{Game data/saves|Windows|{{p|APPDATA}}\\Tuttifrutti_Games\\Darkarta_ABHQ_CE\\*.sav}}" Darkblood Chronicles: pageId: 76575 steam: 604920 -'Darkcase: The Basement': +"Darkcase: The Basement": pageId: 95001 steam: 430100 Darken VR: @@ -39765,43 +38775,43 @@ Darken VR: Darkened Skye: pageId: 97137 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/saves|Windows|{{p|game}}\Save}}' + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\Save}}" Darkest Depths: pageId: 130295 steam: 1041130 Darkest Dungeon: gog: 1450711444 gogSide: + - 1128594953 - 1452238359 - 1452693347 - 1957260232 - - 1128594953 pageId: 22744 steam: 262060 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Darkest\persist.options.json}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.local/share/Red Hook Studios/Darkest/profile_*}}' - - '{{Game data/config|Steam|{{p|steam}}/userdata/{{p|uid}}/262060/remote/profile_*{{cn}}}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Darkest\profile_*\}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.local/share/Red Hook Studios/Darkest/}}' - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/262060/remote/profile_*/}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Darkest\\persist.options.json}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.local/share/Red Hook Studios/Darkest/profile_*}}" + - "{{Game data/config|Steam|{{p|steam}}/userdata/{{p|uid}}/262060/remote/profile_*{{cn}}}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Darkest\\profile_*\\}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.local/share/Red Hook Studios/Darkest/}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/262060/remote/profile_*/}}" Darkest Dungeon II: pageId: 164604 steam: 1940340 templates: - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\RedHook\Darkest Dungeon II\SaveFiles\{{p|uid}}}}' -'Darkest Hour: A Hearts of Iron Game': + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\RedHook\\Darkest Dungeon II\\SaveFiles\\{{p|uid}}}}" +"Darkest Hour: A Hearts of Iron Game": gog: 1445505773 pageId: 33261 steam: 73170 -'Darkest Hour: Europe ''44-''45': +"Darkest Hour: Europe '44-'45": pageId: 176243 steam: 1280 Darkest Hunters: pageId: 63920 steam: 654300 -'Darkest Mana: Master of the Table': +"Darkest Mana: Master of the Table": pageId: 95210 steam: 851040 Darkest Wave: @@ -39811,22 +38821,22 @@ Darkest of Days: pageId: 7653 steam: 37700 templates: - - '{{Game data/config|Windows|{{p|game}}\base\interface\controls.cfg|{{p|game}}\base\interface\user.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\base\save\}}' + - "{{Game data/config|Windows|{{p|game}}\\base\\interface\\controls.cfg|{{p|game}}\\base\\interface\\user.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\base\\save\\}}" Darkestville Castle: pageId: 70182 steam: 689900 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Epic LLama\DarkestVille Castle}}' - - '{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/Epic LLama/DarkestVille Castle/prefs}}' - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Epic LLama\DarkestVille Castle\}}' - - '{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/Epic LLama/DarkestVille Castle/}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Epic LLama\\DarkestVille Castle}}" + - "{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/Epic LLama/DarkestVille Castle/prefs}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Epic LLama\\DarkestVille Castle\\}}" + - "{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/Epic LLama/DarkestVille Castle/}}" Darkfall Unholy Wars: pageId: 20977 steam: 227400 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Darkfall\Character\.\.\.\*.cfg}}' -'Darkheart: Flight of the Harpies': + - "{{Game data/config|Windows|{{p|appdata}}\\Darkfall\\Character\\.\\.\\.\\*.cfg}}" +"Darkheart: Flight of the Harpies": pageId: 124028 steam: 985070 Darklands: @@ -39834,8 +38844,8 @@ Darklands: pageId: 4812 steam: 327930 templates: - - '{{Game data/config|DOS|{{P|game}}\DARKLAND.CFG}}' - - '{{Game data/saves|DOS|{{p|game}}\SAVES}}' + - "{{Game data/config|DOS|{{P|game}}\\DARKLAND.CFG}}" + - "{{Game data/saves|DOS|{{p|game}}\\SAVES}}" Darkness Ahead: pageId: 52584 steam: 547710 @@ -39843,39 +38853,37 @@ Darkness Assault: pageId: 48763 steam: 332790 templates: - - '{{Game data/saves|Windows|{{P|hkcu}}\Software\Black Lime Studio\Darkness Assault}}' + - "{{Game data/saves|Windows|{{P|hkcu}}\\Software\\Black Lime Studio\\Darkness Assault}}" Darkness Restricted: pageId: 81707 steam: 781890 Darkness Rollercoaster - Ultimate Shooter Edition: pageId: 149754 steam: 1142850 -'Darkness Within 2: The Dark Lineage': +"Darkness Within 2: The Dark Lineage": pageId: 49175 steam: 298950 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\Darkness Within 2\config.txt}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\Darkness Within 2\}}' -'Darkness Within: In Pursuit of Loath Nolder': + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\Darkness Within 2\\config.txt}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\Darkness Within 2\\}}" +"Darkness Within: In Pursuit of Loath Nolder": pageId: 49339 steam: 298930 steamSide: - 414680 templates: - - >- - {{Game data/config|Windows|{{P|userprofile\Documents}}\Darkness - Within\config.txt|{{P|userprofile\Documents}}\Darkness Within\cmdline.txt}} - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\Darkness Within\}}' -'Darkness and Flame: Born of Fire': + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\Darkness Within\\config.txt|{{P|userprofile\\Documents}}\\Darkness Within\\cmdline.txt}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\Darkness Within\\}}" +"Darkness and Flame: Born of Fire": pageId: 54760 steam: 528120 -'Darkness and Flame: Enemy in Reflection': +"Darkness and Flame: Enemy in Reflection": pageId: 153897 steam: 1195230 -'Darkness and Flame: Missing Memories': +"Darkness and Flame: Missing Memories": pageId: 74857 steam: 646330 -'Darkness and Flame: The Dark Side': +"Darkness and Flame: The Dark Side": pageId: 125418 steam: 990250 Darkness and a Crowd: @@ -39885,7 +38893,7 @@ Darknet: pageId: 63282 steam: 401910 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\E McNeill\Darknet\Unity\local.{{p|uid}}\Analytics}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\E McNeill\\Darknet\\Unity\\local.{{p|uid}}\\Analytics}}" Darkour: pageId: 150492 steam: 1164860 @@ -39902,8 +38910,8 @@ Darksburg: pageId: 126418 steam: 939100 templates: - - '{{Game data/config|Windows|{{P|steam}}\steamapps\common\Darksburg\options.ini}}' - - '{{Game data/saves|Windows|{{P|steam}}\steamapps\common\Darksburg\playerprofile.json}}' + - "{{Game data/config|Windows|{{P|steam}}\\steamapps\\common\\Darksburg\\options.ini}}" + - "{{Game data/saves|Windows|{{P|steam}}\\steamapps\\common\\Darksburg\\playerprofile.json}}" Darksiders: gog: 1430901154 pageId: 3437 @@ -39911,9 +38919,9 @@ Darksiders: steamSide: - 276200 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Darksiders\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Darksiders\}}' - - '{{Game data/saves|Epic Games Store|{{p|userprofile}}\Saved Games\darksiders1.exe}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Darksiders\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Darksiders\\}}" + - "{{Game data/saves|Epic Games Store|{{p|userprofile}}\\Saved Games\\darksiders1.exe}}" Darksiders Genesis: gog: 1391134754 gogSide: @@ -39923,12 +38931,9 @@ Darksiders Genesis: steamSide: - 1203440 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\THQ Nordic\Darksiders Genesis\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\THQ Nordic\Darksiders Genesis\Saved\SaveGames\}}' - - >- - {{Game data/saves|Microsoft - Store|{{P|localappdata}}\Packages\NordicGames.60987E91223DD_46xc33nm0q0f8\LocalCache\Local\THQ Nordic\Darksiders - Genesis\Saved\SaveGames\user\}} + - "{{Game data/config|Windows|{{p|localappdata}}\\THQ Nordic\\Darksiders Genesis\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\THQ Nordic\\Darksiders Genesis\\Saved\\SaveGames\\}}" + - "{{Game data/saves|Microsoft Store|{{P|localappdata}}\\Packages\\NordicGames.60987E91223DD_46xc33nm0q0f8\\LocalCache\\Local\\THQ Nordic\\Darksiders Genesis\\Saved\\SaveGames\\user\\}}" Darksiders II: gog: 1430901285 gogSide: @@ -39938,21 +38943,21 @@ Darksiders II: steamSide: - 276210 templates: - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\darksiders 2\}}' -'Darksiders II: Deathinitive Edition': + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\darksiders 2\\}}" +"Darksiders II: Deathinitive Edition": gog: 1446463013 pageId: 29583 steam: 388410 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Darksiders2\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Darksiders2\}}' - - '{{Game data/saves|Steam|{{p|Steam}}/userdata/{{p|uid}}/388410/remote/}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Darksiders2\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Darksiders2\\}}" + - "{{Game data/saves|Steam|{{p|Steam}}/userdata/{{p|uid}}/388410/remote/}}" Darksiders III: gog: 1246703238 gogSide: - - 1564921405 - - 1396514005 - 1105231560 + - 1396514005 + - 1564921405 pageId: 62110 steam: 606280 steamSide: @@ -39960,42 +38965,38 @@ Darksiders III: - 889902 - 889903 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Darksiders3\Saved\Config\WindowsNoEditor\}}' - - >- - {{Game data/config|Microsoft - Store|{{p|localappdata}}\Packages\NordicGames.DarksidersIII_46xc33nm0q0f8\LocalCache\Local\Darksiders3\Saved\Config\WindowsNoEditor\}} - - '{{Game data/saves|Windows|{{p|localappdata}}\Darksiders3\Saved\SaveGames\}}' - - >- - {{Game data/saves|Microsoft - Store|{{p|localappdata}}\Packages\NordicGames.DarksidersIII_46xc33nm0q0f8\LocalCache\Local\Darksiders3\Saved\SaveGames\}} + - "{{Game data/config|Windows|{{p|localappdata}}\\Darksiders3\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/config|Microsoft Store|{{p|localappdata}}\\Packages\\NordicGames.DarksidersIII_46xc33nm0q0f8\\LocalCache\\Local\\Darksiders3\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Darksiders3\\Saved\\SaveGames\\}}" + - "{{Game data/saves|Microsoft Store|{{p|localappdata}}\\Packages\\NordicGames.DarksidersIII_46xc33nm0q0f8\\LocalCache\\Local\\Darksiders3\\Saved\\SaveGames\\}}" Darksiders Warmastered Edition: gog: 1430901154 pageId: 53723 steam: 462780 templates: - - '{{Game data/config|Windows|{{p|APPDATA}}\kaiko\darksiders1\}}' - - '{{Game data/saves|Steam|{{p|Steam}}\userdata\{{p|uid}}\462780\remote\autocloud\save\}}' - - '{{Game data/saves|Epic Games Store|{{p|userprofile}}\Saved Games\darksiders1.exe\}}' + - "{{Game data/config|Windows|{{p|APPDATA}}\\kaiko\\darksiders1\\}}" + - "{{Game data/saves|Steam|{{p|Steam}}\\userdata\\{{p|uid}}\\462780\\remote\\autocloud\\save\\}}" + - "{{Game data/saves|Epic Games Store|{{p|userprofile}}\\Saved Games\\darksiders1.exe\\}}" Darkspore: pageId: 18543 steam: 99890 templates: - - '{{Game data/config|Windows|{{p|appdata}}\DarksporeData\Preferences\}}' + - "{{Game data/config|Windows|{{p|appdata}}\\DarksporeData\\Preferences\\}}" Darkstar One: gog: 1207658704 pageId: 276 steam: 12330 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Ascaron Entertainment\Darkstar One\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Ascaron Entertainment\Darkstar One\Save\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Ascaron Entertainment\\Darkstar One\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Ascaron Entertainment\\Darkstar One\\Save\\}}" Darkstone: gog: 1207659025 pageId: 7272 steam: 320320 templates: - - '{{Game data/config|Windows|{{p|game}}\config\*.txt}}' - - '{{Game data/saves|Windows|{{p|game}}\save}}' -'Darkwind: War on Wheels': + - "{{Game data/config|Windows|{{p|game}}\\config\\*.txt}}" + - "{{Game data/saves|Windows|{{p|game}}\\save}}" +"Darkwind: War on Wheels": pageId: 49731 steam: 295710 Darkwinds: @@ -40006,11 +39007,11 @@ Darkwood: pageId: 37563 steam: 274520 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Acid Wizard Studio\Darkwood\}}' - - '{{Game data/config|Linux|{{p|xdgconfighome}}/unity3d/Acid Wizard Studio/Darkwood/}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Acid Wizard Studio\DARKWOOD\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Acid Wizard Studio/DARKWOOD/}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Acid Wizard Studio/DARKWOOD/}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Acid Wizard Studio\\Darkwood\\}}" + - "{{Game data/config|Linux|{{p|xdgconfighome}}/unity3d/Acid Wizard Studio/Darkwood/}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Acid Wizard Studio\\DARKWOOD\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Acid Wizard Studio/DARKWOOD/}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Acid Wizard Studio/DARKWOOD/}}" Darthy: pageId: 44592 steam: 404850 @@ -40023,13 +39024,13 @@ Darts and Friends: Darwin Project: pageId: 80354 steam: 544920 -'Darwin''s Bots: Episode 1': +"Darwin's Bots: Episode 1": pageId: 59619 steam: 612120 -Darwin's Demons: +"Darwin's Demons": pageId: 57772 steam: 572020 -Darwin's Test: +"Darwin's Test": pageId: 122412 steam: 958960 Darwinia: @@ -40039,9 +39040,9 @@ Darwinia: steamSide: - 209771 templates: - - '{{Game data/config|Linux|{{p|linuxhome}}/.darwinia/}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\Saved Games\Darwinia}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.darwinia/}}' + - "{{Game data/config|Linux|{{p|linuxhome}}/.darwinia/}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Saved Games\\Darwinia}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.darwinia/}}" Das Boot: gog: 1491668475 pageId: 172789 @@ -40073,10 +39074,10 @@ Dashing Dinos: Dashing Dinosaurs & Sexy Centaurs: pageId: 132911 steam: 947070 -'Dashing Dinosaurs & Sexy Centaurs: Winter''s Tale': +"Dashing Dinosaurs & Sexy Centaurs: Winter's Tale": pageId: 150649 steam: 1152210 -'Dashing Nineties: R.M.D.': +"Dashing Nineties: R.M.D.": pageId: 64642 steam: 657650 Dashkin: @@ -40097,23 +39098,23 @@ Data Defense: Data Dream: pageId: 157195 steam: 1215540 -'Data Hacker: Corruption': +"Data Hacker: Corruption": pageId: 49470 steam: 329000 -'Data Hacker: Initiation': +"Data Hacker: Initiation": pageId: 49873 steam: 311860 -'Data Hacker: Reboot': +"Data Hacker: Reboot": pageId: 35327 steam: 331790 templates: - - '{{Game data/config|Windows|{{p|game}}\Game.ini}}' - - '{{Game data/saves|Windows|{{p|appdata}}\[ New Reality Games ] - [ Data Hacker ]\Saves\}}' -'Data Jammers: FastForward': + - "{{Game data/config|Windows|{{p|game}}\\Game.ini}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\[ New Reality Games ] - [ Data Hacker ]\\Saves\\}}" +"Data Jammers: FastForward": pageId: 21444 steam: 110500 templates: - - '{{Game data/config|Windows|{{p|game}}\config.cfg}}' + - "{{Game data/config|Windows|{{p|game}}\\config.cfg}}" Data Mining: pageId: 103895 steam: 907590 @@ -40124,7 +39125,7 @@ Data Mining 2: pageId: 121359 steam: 960820 templates: - - '{{Game data/saves|Windows|{{p|game}}\.}}' + - "{{Game data/saves|Windows|{{p|game}}\\.}}" Data Mining 3: pageId: 122119 steam: 978450 @@ -40146,45 +39147,45 @@ Data Thief: DataJack: pageId: 33119 templates: - - '{{Game data/saves|Windows|{{P|game}}\saves}}' + - "{{Game data/saves|Windows|{{P|game}}\\saves}}" Dataflow: pageId: 123429 steam: 982690 Datascape: pageId: 91598 steam: 835790 -'Date A Live: Rio Reincarnation': +"Date A Live: Rio Reincarnation": gog: 1991234548 pageId: 135669 steam: 1047440 templates: - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Idea Factory\DATE A LIVE RIO-REINCARNATION\}}' + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Idea Factory\\DATE A LIVE RIO-REINCARNATION\\}}" Date Warp: pageId: 37323 steam: 301380 templates: - - '{{Game data/config|Windows|{{p|game}}\renpy\config.py}}' - - '{{Game data/saves|Windows|{{p|APPDATA}}\RenPy\DateWarp\|{{p|game}}\game\saves\}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.renpy/DateWarp/}}' + - "{{Game data/config|Windows|{{p|game}}\\renpy\\config.py}}" + - "{{Game data/saves|Windows|{{p|APPDATA}}\\RenPy\\DateWarp\\|{{p|game}}\\game\\saves\\}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.renpy/DateWarp/}}" Date Write: pageId: 127514 steam: 1009900 Dath: pageId: 42311 steam: 495200 -'Dating Life: Miley X Emily': +"Dating Life: Miley X Emily": pageId: 141901 steam: 1086030 Datswer: pageId: 48773 steam: 348000 -'Daughter of Shadows: An SCP Breach Event': +"Daughter of Shadows: An SCP Breach Event": pageId: 43803 steam: 449820 Dauntless: pageId: 91425 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Archon\Saved\Config\WindowsClient\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Archon\\Saved\\Config\\WindowsClient\\}}" Dave: pageId: 121912 steam: 833980 @@ -40192,10 +39193,10 @@ Dave Goes Nutz!: gog: 1207659130 pageId: 131851 templates: - - '{{Game data/config|DOS|{{P|game}}\AUDIO.DAV|{{P|game}}\CONFIG.DAV}}' - - '{{Game data/config|GOG.com|{{P|game}}\DD GN\AUDIO.DAV|{{P|game}}\DD GN\CONFIG.DAV}}' - - '{{Game data/saves|DOS|{{P|game}}\{{code|*}}.SAV}}' - - '{{Game data/saves|GOG.com|{{P|game}}\DD GN\{{code|*}}.SAV}}' + - "{{Game data/config|DOS|{{P|game}}\\AUDIO.DAV|{{P|game}}\\CONFIG.DAV}}" + - "{{Game data/config|GOG.com|{{P|game}}\\DD GN\\AUDIO.DAV|{{P|game}}\\DD GN\\CONFIG.DAV}}" + - "{{Game data/saves|DOS|{{P|game}}\\{{code|*}}.SAV}}" + - "{{Game data/saves|GOG.com|{{P|game}}\\DD GN\\{{code|*}}.SAV}}" Dave Mirra Freestyle BMX: pageId: 143303 Dave the Diver: @@ -40204,14 +39205,14 @@ Dave the Diver: steamSide: - 1955460 templates: - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\nexon\DAVE THE DIVER\SteamSData}}' + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\nexon\\DAVE THE DIVER\\SteamSData}}" Dave-Man: pageId: 154273 steam: 1103790 David Lynch Teaches Typing: pageId: 145688 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Rhino Stew\David Lynch Teaches Typing\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Rhino Stew\\David Lynch Teaches Typing\\}}" David.: pageId: 48681 steam: 346180 @@ -40219,19 +39220,19 @@ Davigo: pageId: 144556 steam: 1116540 templates: - - '{{Game data/config|Windows|{{p|game}}\Davigo}}' - - '{{Game data/saves|Windows|{{P|userprofile\documents}}\Davigo}}' -'Davyria: Heroes of Eternity': + - "{{Game data/config|Windows|{{p|game}}\\Davigo}}" + - "{{Game data/saves|Windows|{{P|userprofile\\documents}}\\Davigo}}" +"Davyria: Heroes of Eternity": pageId: 58808 steam: 593850 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Ungraved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Ungraved\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Ungraved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Ungraved\\}}" Dawn: pageId: 60229 steam: 605610 templates: - - '{{Game data/saves|Windows|{{p|localappdata}}\Dawn\Saved\SaveGames\*.sav}}' + - "{{Game data/saves|Windows|{{p|localappdata}}\\Dawn\\Saved\\SaveGames\\*.sav}}" Dawn Break -Origin-: pageId: 136080 steam: 1018610 @@ -40241,36 +39242,34 @@ Dawn City: Dawn of Andromeda: pageId: 39382 steam: 427570 -'Dawn of China: Rise of Qin': +"Dawn of China: Rise of Qin": pageId: 112460 steam: 933630 Dawn of Corruption: pageId: 179018 steam: 1608730 -Dawn of H'btakh: +"Dawn of H'btakh": pageId: 65208 steam: 661730 Dawn of Magic: pageId: 183738 templates: - - '{{Game data/config|Windows|{{p|game}}\tbm.ini}}' + - "{{Game data/config|Windows|{{p|game}}\\tbm.ini}}" Dawn of Magic 2: gog: 1839978015 pageId: 41239 steam: 33540 templates: - - '{{Game data/config|Windows|{{p|game}}\tbm.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\profiles}}' + - "{{Game data/config|Windows|{{p|game}}\\tbm.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\profiles}}" Dawn of Man: gog: 1899257943 pageId: 95274 steam: 858810 templates: - - >- - {{Game data/config|Windows|{{P|hkcu}}\Software\Madruga Works\Dawn of - Man|{{P|userprofile\Documents}}\DawnOfMan\Settings\settings.sav}} - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\DawnOfMan\Saves\}}' -'Dawn of War II: Retribution - The Last Stand': + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Madruga Works\\Dawn of Man|{{P|userprofile\\Documents}}\\DawnOfMan\\Settings\\settings.sav}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\DawnOfMan\\Saves\\}}" +"Dawn of War II: Retribution - The Last Stand": pageId: 40995 steam: 56438 Dawn of Warriors: @@ -40285,7 +39284,7 @@ Dawn of the Breakers: Dawn of the Celestialpod: pageId: 94048 steam: 854500 -'Dawn of the Dragons: Ascension': +"Dawn of the Dragons: Ascension": pageId: 150253 steam: 1145240 Dawn of the Killer Zombies: @@ -40308,10 +39307,10 @@ Dawn of the Plow: Dawn of the Robot Empire: pageId: 43644 steam: 452240 -Dawn's Light: +"Dawn's Light": pageId: 36620 steam: 520820 -Dawn's Light 2: +"Dawn's Light 2": pageId: 53039 steam: 532090 Dawnfall: @@ -40319,18 +39318,18 @@ Dawnfall: steam: 1183300 Dawnstar: pageId: 168038 -'Day D: Tower Rush': +"Day D: Tower Rush": pageId: 42497 steam: 423550 templates: - - '{{Game data/config|Windows|{{P|AppData}}\8Floor\DinoRageDefense\}}' - - '{{Game data/saves|Windows|{{P|appdata}}\8Floor\DinoRageDefense\}}' -'Day One: Garry''s Incident': + - "{{Game data/config|Windows|{{P|AppData}}\\8Floor\\DinoRageDefense\\}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\8Floor\\DinoRageDefense\\}}" +"Day One: Garry's Incident": pageId: 10722 steam: 242800 templates: - - '{{Game data/config|Windows|{{p|game}}\UDKGame\Config\}}' - - '{{Game data/saves|Windows|{{p|game}}\Binaries\Win32\*.sav}}' + - "{{Game data/config|Windows|{{p|game}}\\UDKGame\\Config\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\Binaries\\Win32\\*.sav}}" Day Zero: pageId: 139033 steam: 1033330 @@ -40341,14 +39340,14 @@ Day of Defeat: pageId: 184 steam: 30 templates: - - '{{Game data/config|Windows|{{P|game}}\Half-Life\dod\}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.steam/steam/SteamApps/common/Half-Life/dod}}' -'Day of Defeat: Source': + - "{{Game data/config|Windows|{{P|game}}\\Half-Life\\dod\\}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.steam/steam/SteamApps/common/Half-Life/dod}}" +"Day of Defeat: Source": pageId: 190 steam: 300 templates: - - '{{Game data/config|Windows|{{p|game}}\dod\cfg}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.steam/Steam/SteamApps/common/Day of Defeat Source/dod/}}' + - "{{Game data/config|Windows|{{p|game}}\\dod\\cfg}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.steam/Steam/SteamApps/common/Day of Defeat Source/dod/}}" Day of Destruction: pageId: 79238 steam: 488020 @@ -40356,52 +39355,52 @@ Day of Dragons: pageId: 150661 steam: 1088090 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Dragons\Saved\Config\WindowsNoEditor}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\Dragons\\Saved\\Config\\WindowsNoEditor}}" Day of Infamy: pageId: 36075 steam: 447820 templates: - - '{{Game data/config|Steam|{{p|STEAM}}/userdata/{{p|uid}}/447820/remote/cfg}}' -'Day of the Dead: Solitaire Collection': + - "{{Game data/config|Steam|{{p|STEAM}}/userdata/{{p|uid}}/447820/remote/cfg}}" +"Day of the Dead: Solitaire Collection": pageId: 172209 steam: 1373600 Day of the Tentacle: pageId: 69522 templates: - - '{{Game data/saves|DOS|{{p|game}}\SAVEGAME.*}}' + - "{{Game data/saves|DOS|{{p|game}}\\SAVEGAME.*}}" Day of the Tentacle Remastered: gog: 1456922969 pageId: 34240 steam: 388210 templates: - - '{{Game data/config|Windows|{{P|game}}\savedata\settings.ini|{{P|appdata}}\Doublefine\DayOfTheTentacle\}}' - - '{{Game data/config|OS X|{{P|osxhome}}/Library/Preferences/com.doublefine.dottosx.plist}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/doublefine/dott/}}' - - '{{Game data/saves|Windows|{{P|game}}\savedata\|{{P|appdata}}\Doublefine\DayOfTheTentacle\}}' - - '{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/com.doublefine.dottosx/}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/doublefine/dott/savedata/}}' + - "{{Game data/config|Windows|{{P|game}}\\savedata\\settings.ini|{{P|appdata}}\\Doublefine\\DayOfTheTentacle\\}}" + - "{{Game data/config|OS X|{{P|osxhome}}/Library/Preferences/com.doublefine.dottosx.plist}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/doublefine/dott/}}" + - "{{Game data/saves|Windows|{{P|game}}\\savedata\\|{{P|appdata}}\\Doublefine\\DayOfTheTentacle\\}}" + - "{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/com.doublefine.dottosx/}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/doublefine/dott/savedata/}}" Day of the Trumplings: pageId: 37080 steam: 517060 Day of the Zombie: pageId: 183491 templates: - - '{{Game data/config|Windows|{{p|game}}\System\*.ini}}' - - '{{Game data/config|Windows|{{p|game}}\Saves\}}' -'Day: 40': + - "{{Game data/config|Windows|{{p|game}}\\System\\*.ini}}" + - "{{Game data/config|Windows|{{p|game}}\\Saves\\}}" +"Day: 40": pageId: 132658 steam: 1049030 DayBreak Online: pageId: 123735 steam: 314860 -'DayD: Through time': +"DayD: Through time": pageId: 100046 steam: 869560 DayZ: pageId: 13445 steam: 221100 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\DayZ\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\DayZ\\}}" DayZ (mod): pageId: 2903 steam: 224580 @@ -40414,7 +39413,7 @@ Daydream: Daydream Blue: pageId: 56963 steam: 413350 -'Daydream: Forgotten Sorrow': +"Daydream: Forgotten Sorrow": pageId: 185753 steam: 1542110 Daydreamer: @@ -40424,35 +39423,33 @@ Daylight: pageId: 16797 steam: 230840 templates: - - >- - {{Game - data/config|Windows|{{p|userprofile\Documents}}\Daylight\Config\WindowsNoEditor|{{p|game}}\LimaGame\Config\|{{p|game}}\Engine\Config\}} - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Daylight\Saved\SaveGames\}}' -'Daymare: 1994 Sandcastle': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Daylight\\Config\\WindowsNoEditor|{{p|game}}\\LimaGame\\Config\\|{{p|game}}\\Engine\\Config\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Daylight\\Saved\\SaveGames\\}}" +"Daymare: 1994 Sandcastle": gog: 1571727872 pageId: 177094 steam: 1530470 steamSide: - 1868320 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Ogre\Saved\Config\WindowsNoEditor}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\Ogre\Saved}}' -'Daymare: 1998': + - "{{Game data/config|Windows|{{P|localappdata}}\\Ogre\\Saved\\Config\\WindowsNoEditor}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Ogre\\Saved}}" +"Daymare: 1998": gog: 1544460195 gogSide: - 1760609325 pageId: 126302 steam: 842100 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Daymare_MASTER\Saved\Config\WindowsNoEditor}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\Daymare_MASTER\Saved}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\Daymare_MASTER\\Saved\\Config\\WindowsNoEditor}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Daymare_MASTER\\Saved}}" Days Gone: gog: 1127395101 pageId: 166851 steam: 1259420 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\BendGame\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\BendGame\Saved\{{P|uid}}\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\BendGame\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\BendGame\\Saved\\{{P|uid}}\\}}" Days Gone By: pageId: 153420 steam: 1196550 @@ -40466,7 +39463,7 @@ Days of War: pageId: 54830 steam: 454350 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\DaysOfWar\Saved\Config\WindowsNoEditor}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\DaysOfWar\\Saved\\Config\\WindowsNoEditor}}" Days of a Princess: pageId: 89200 steam: 779560 @@ -40476,34 +39473,29 @@ Daytona Racing: Daytona USA: pageId: 30253 templates: - - '{{Game data/config|Windows|{{p|windir}}\DAYTONA.INI}}' - - '{{Game data/saves|Windows|{{p|game}}\DAYTONA.DAT}}' -'Daytona USA: Deluxe': + - "{{Game data/config|Windows|{{p|windir}}\\DAYTONA.INI}}" + - "{{Game data/saves|Windows|{{p|game}}\\DAYTONA.DAT}}" +"Daytona USA: Deluxe": pageId: 30252 templates: - - >- - {{Game data/config|Windows|{{p|hkcu}}\SOFTWARE\SEGA\DAYTONA USA - Deluxe\Profile\D3DOPTIONS\|{{p|hkcu}}\SOFTWARE\SEGA\DAYTONA USA - Deluxe\Profile\JoystickSettings\|{{p|hkcu}}\SOFTWARE\SEGA\DAYTONA USA - Deluxe\Profile\KeyboardSettings\|{{p|hkcu}}\SOFTWARE\SEGA\DAYTONA USA Deluxe\Profile\System\|{{p|windir}}\DAYTONA - USA Deluxe.INI}} - - '{{Game data/saves|Windows|{{p|hkcu}}\SOFTWARE\SEGA\DAYTONA USA Deluxe\Profile\Memory\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\SEGA\\DAYTONA USA Deluxe\\Profile\\D3DOPTIONS\\|{{p|hkcu}}\\SOFTWARE\\SEGA\\DAYTONA USA Deluxe\\Profile\\JoystickSettings\\|{{p|hkcu}}\\SOFTWARE\\SEGA\\DAYTONA USA Deluxe\\Profile\\KeyboardSettings\\|{{p|hkcu}}\\SOFTWARE\\SEGA\\DAYTONA USA Deluxe\\Profile\\System\\|{{p|windir}}\\DAYTONA USA Deluxe.INI}}" + - "{{Game data/saves|Windows|{{p|hkcu}}\\SOFTWARE\\SEGA\\DAYTONA USA Deluxe\\Profile\\Memory\\}}" De Blob: gog: 1466287699 pageId: 54220 steam: 532320 templates: - - '{{Game data/config|Windows|{{P|game}}\setup.ini}}' - - '{{Game data/saves|Windows|{{P|appdata}}\deblob\}}' - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\532320\remote\}}' + - "{{Game data/config|Windows|{{P|game}}\\setup.ini}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\deblob\\}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\532320\\remote\\}}" De Blob 2: gog: 2070890632 pageId: 64156 steam: 563190 templates: - - '{{Game data/config|Windows|{{p|game}}\setup.ini}}' - - '{{Game data/saves|Windows|{{p|appdata}}\deBlob2\}}' - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\563190\remote\}}' + - "{{Game data/config|Windows|{{p|game}}\\setup.ini}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\deBlob2\\}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\563190\\remote\\}}" De Fobos y Deimos: pageId: 98538 steam: 875300 @@ -40513,10 +39505,10 @@ De Mambo: De Profundis: pageId: 125910 steam: 1003960 -'De''Vine: The Card Battles': +"De'Vine: The Card Battles": pageId: 129910 steam: 998570 -'De''Vine: World of Shadows': +"De'Vine: World of Shadows": pageId: 92925 steam: 846710 De-Void: @@ -40542,14 +39534,10 @@ Dead Age: pageId: 38510 steam: 363930 templates: - - >- - {{Game - data/config|Windows|{{P|userprofile}}\AppData\LocalLow\SilentDreams\DeadAge\Settings.xml|{{P|hkcu}}\Software\SilentDreams\DeadAge\}} - - >- - {{Game - data/config|Linux|{{p|linuxhome}}/.config/unity3d/SilentDreams/DeadAge/Settings.xml|{{p|linuxhome}}/.config/unity3d/SilentDreams/DeadAge/prefs}} - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\SilentDreams\DeadAge\Save*.xml}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/SilentDreams/DeadAge/Save*.xml}}' + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\SilentDreams\\DeadAge\\Settings.xml|{{P|hkcu}}\\Software\\SilentDreams\\DeadAge\\}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/SilentDreams/DeadAge/Settings.xml|{{p|linuxhome}}/.config/unity3d/SilentDreams/DeadAge/prefs}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\SilentDreams\\DeadAge\\Save*.xml}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/SilentDreams/DeadAge/Save*.xml}}" Dead Age 2: gog: 1979865595 gogSide: @@ -40560,13 +39548,13 @@ Dead Age 2: - 1330410 - 1443660 templates: - - '{{Game data/config|Windows|{{P|userprofile\appdata\locallow}}\SilentDreams\DeadAge2\settings.json}}' - - '{{Game data/config|OS X|{{P|osxhome}}/Library/Application Support/SilentDreams/DeadAge2/settings.json}}' - - '{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/SilentDreams/DeadAge2/settings.json}}' - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\SilentDreams\DeadAge2\}}' - - '{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/SilentDreams/DeadAge2/}}' - - '{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/SilentDreams/DeadAge2/}}' -'Dead Age: Survivors': + - "{{Game data/config|Windows|{{P|userprofile\\appdata\\locallow}}\\SilentDreams\\DeadAge2\\settings.json}}" + - "{{Game data/config|OS X|{{P|osxhome}}/Library/Application Support/SilentDreams/DeadAge2/settings.json}}" + - "{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/SilentDreams/DeadAge2/settings.json}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\SilentDreams\\DeadAge2\\}}" + - "{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/SilentDreams/DeadAge2/}}" + - "{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/SilentDreams/DeadAge2/}}" +"Dead Age: Survivors": pageId: 189631 steam: 2117160 Dead Alliance: @@ -40581,8 +39569,8 @@ Dead Bits: pageId: 31146 steam: 303390 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\SOFTWARE\Microblast Games\Dead Bits}}' - - '{{Game data/saves|Windows|{{p|hkcu}}\SOFTWARE\Microblast Games\Dead Bits}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\Microblast Games\\Dead Bits}}" + - "{{Game data/saves|Windows|{{p|hkcu}}\\SOFTWARE\\Microblast Games\\Dead Bits}}" Dead Block: pageId: 18656 Dead But Alive! Southern England: @@ -40597,17 +39585,16 @@ Dead Castle: Dead Cells: gog: 1237807960 gogSide: - - 1537569459 - - 1444893699 - 1114691340 - - 1537569459 - - 1758551289 - - 1896771475 - - 1804200569 - - 1385821524 - 1199198569 - - 1942714997 + - 1385821524 + - 1444893699 + - 1537569459 - 1753058625 + - 1758551289 + - 1804200569 + - 1896771475 + - 1942714997 - 2044679306 pageId: 58168 steam: 588650 @@ -40620,18 +39607,14 @@ Dead Cells: - 1580050 - 2101430 templates: - - '{{Game data/config|Windows|{{p|game}}\save\options.json}}' - - >- - {{Game data/config|Microsoft - Store|{{P|localappdata}}\Packages\MotionTwin.DeadCellsWin10_rtjy889c6zgtg\Settings|{{P|localappdata}}\MotionTwin\DeadCells\options.json}} - - '{{Game data/config|Steam|{{p|steam}}\userdata\{{p|uid}}\588650\remote\options.json}}' - - '{{Game data/config|Linux|{{p|game}}/save/options.json}}' - - '{{Game data/saves|Windows|{{p|game}}\save\user_*.dat}}' - - >- - {{Game data/saves|Microsoft - Store|{{P|localappdata}}\Packages\MotionTwin.DeadCellsWin10_rtjy889c6zgtg\LocalCache\Local\MotionTwin\DeadCells|{{P|localappdata}}\MotionTwin\DeadCells\user_*.dat}} - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\588650\remote\user_*.dat}}' - - '{{Game data/saves|Linux|{{p|game}}/save/user_*.dat}}' + - "{{Game data/config|Windows|{{p|game}}\\save\\options.json}}" + - "{{Game data/config|Microsoft Store|{{P|localappdata}}\\Packages\\MotionTwin.DeadCellsWin10_rtjy889c6zgtg\\Settings|{{P|localappdata}}\\MotionTwin\\DeadCells\\options.json}}" + - "{{Game data/config|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\588650\\remote\\options.json}}" + - "{{Game data/config|Linux|{{p|game}}/save/options.json}}" + - "{{Game data/saves|Windows|{{p|game}}\\save\\user_*.dat}}" + - "{{Game data/saves|Microsoft Store|{{P|localappdata}}\\Packages\\MotionTwin.DeadCellsWin10_rtjy889c6zgtg\\LocalCache\\Local\\MotionTwin\\DeadCells|{{P|localappdata}}\\MotionTwin\\DeadCells\\user_*.dat}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\588650\\remote\\user_*.dat}}" + - "{{Game data/saves|Linux|{{p|game}}/save/user_*.dat}}" Dead Climb: pageId: 89648 steam: 750080 @@ -40660,16 +39643,16 @@ Dead Effect: pageId: 17203 steam: 286040 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Lubomir Dykast\Dead Effect\}}' - - '{{Game data/saves|Windows|{{P|hkcu}}\Software\Lubomir Dykast\Dead Effect\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Lubomir Dykast\\Dead Effect\\}}" + - "{{Game data/saves|Windows|{{P|hkcu}}\\Software\\Lubomir Dykast\\Dead Effect\\}}" Dead Effect 2: pageId: 43145 steam: 394760 templates: - - '{{Game data/config|Windows|{{P|userprofile}}\AppData\LocalLow\BadFly Interactive\Dead Effect 2\}}' - - '{{Game data/config|OS X|{{P|osxhome}}/Library/Application Support/unity.BadFly Interactive.Dead Effect 2/}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\BadFly Interactive\Dead Effect 2\}}' - - '{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/unity.BadFly Interactive.Dead Effect 2/}}' + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\BadFly Interactive\\Dead Effect 2\\}}" + - "{{Game data/config|OS X|{{P|osxhome}}/Library/Application Support/unity.BadFly Interactive.Dead Effect 2/}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\BadFly Interactive\\Dead Effect 2\\}}" + - "{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/unity.BadFly Interactive.Dead Effect 2/}}" Dead Effect 2 VR: pageId: 63288 steam: 646200 @@ -40677,15 +39660,15 @@ Dead End Aegis: gog: 1676340103 pageId: 174110 steam: 1835830 -'Dead End Aegis: Gaiden': +"Dead End Aegis: Gaiden": pageId: 174113 steam: 1839960 Dead End Job: pageId: 91288 steam: 827610 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\SOFTWARE\AntWorkshop\Dead End Job\}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\AntWorkshop\Dead End Job\saveData\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\SOFTWARE\\AntWorkshop\\Dead End Job\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\AntWorkshop\\Dead End Job\\saveData\\}}" Dead End Junction: pageId: 41501 steam: 518280 @@ -40693,13 +39676,13 @@ Dead End Road: pageId: 38163 steam: 448580 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\DDD Wares\Dead End Road\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\DDD Wares\\Dead End Road\\}}" Dead Estate: pageId: 174127 steam: 1484720 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Dead_Estate}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\Dead_Estate}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\Dead_Estate}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Dead_Estate}}" Dead Exit: pageId: 63972 steam: 630050 @@ -40724,7 +39707,7 @@ Dead Ground: Dead Ground Arcade: pageId: 155867 steam: 1200350 -'Dead Ground: Arena': +"Dead Ground: Arena": pageId: 90317 steam: 825500 Dead GroundZ: @@ -40758,61 +39741,61 @@ Dead Island: pageId: 672 steam: 91310 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\DeadIsland\out\Settings\}}' - - '{{Game data/config|Linux|{{P|game}}/DI/out/Settings/}}' - - '{{Game data/saves|Steam|{{P|Steam}}\userdata\{{p|uid}}\91310\remote\out\}}' + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\DeadIsland\\out\\Settings\\}}" + - "{{Game data/config|Linux|{{P|game}}/DI/out/Settings/}}" + - "{{Game data/saves|Steam|{{P|Steam}}\\userdata\\{{p|uid}}\\91310\\remote\\out\\}}" Dead Island 2: pageId: 17727 steam: 268150 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\DeadIsland\Saved\Config\WindowsNoEditor}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\DeadIsland\Saved\SaveGames}}' -'Dead Island: Definitive Edition': + - "{{Game data/config|Windows|{{p|localappdata}}\\DeadIsland\\Saved\\Config\\WindowsNoEditor}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\DeadIsland\\Saved\\SaveGames}}" +"Dead Island: Definitive Edition": pageId: 32947 steam: 383150 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\DeadIslandDE\out\settings\}}' - - '{{Game data/config|Linux|{{p|game}}/DI/out/Settings/}}' - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\383150\remote\out\}}' -'Dead Island: Epidemic': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\DeadIslandDE\\out\\settings\\}}" + - "{{Game data/config|Linux|{{p|game}}/DI/out/Settings/}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\383150\\remote\\out\\}}" +"Dead Island: Epidemic": pageId: 82561 steam: 222900 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Deep Silver\Dead Island: Epidemic}}' - - '{{Game data/saves|Windows|{{p|steam}}\userdata\{{p|uid}}\222900\remote\}}' -'Dead Island: Retro Revenge': + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Deep Silver\\Dead Island: Epidemic}}" + - "{{Game data/saves|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\222900\\remote\\}}" +"Dead Island: Retro Revenge": pageId: 33271 steam: 337360 -'Dead Island: Riptide': +"Dead Island: Riptide": pageId: 6251 steam: 216250 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\Riptide\out\Settings\}}' - - '{{Game data/saves|Steam|{{P|Steam}}\userdata\{{p|uid}}\91310\remote\out\save}}' -'Dead Island: Riptide Definitive Edition': + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\Riptide\\out\\Settings\\}}" + - "{{Game data/saves|Steam|{{P|Steam}}\\userdata\\{{p|uid}}\\91310\\remote\\out\\save}}" +"Dead Island: Riptide Definitive Edition": pageId: 32949 steam: 383180 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\DeadIslandRiptideDE\out\settings\}}' - - '{{Game data/config|Linux|{{p|game}}/DIR/out/Settings}}' - - '{{Game data/saves|Steam|{{P|Steam}}\userdata\{{p|uid}}\383150\remote\out\save}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\DeadIslandRiptideDE\\out\\settings\\}}" + - "{{Game data/config|Linux|{{p|game}}/DIR/out/Settings}}" + - "{{Game data/saves|Steam|{{P|Steam}}\\userdata\\{{p|uid}}\\383150\\remote\\out\\save}}" Dead Line: pageId: 68160 steam: 679480 -'Dead Link: Pages Torn': +"Dead Link: Pages Torn": pageId: 76043 steam: 740070 -Dead Man's Draw: +"Dead Man's Draw": pageId: 50679 steam: 262450 templates: - - '{{Game data/saves|Windows|{{p|localappdata}}\deadmansdraw\savedata.json}}' -Dead Man's Hand: + - "{{Game data/saves|Windows|{{p|localappdata}}\\deadmansdraw\\savedata.json}}" +"Dead Man's Hand": pageId: 77516 templates: - - '{{Game data/config|Windows|{{p|game}}\System\*.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\Saves\SaveDMH\}}' -Dead Man's Trail: + - "{{Game data/config|Windows|{{p|game}}\\System\\*.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\Saves\\SaveDMH\\}}" +"Dead Man's Trail": pageId: 80705 steam: 691210 Dead Mayhem: @@ -40821,18 +39804,18 @@ Dead Mayhem: Dead Maze: pageId: 68210 steam: 667890 -'Dead Mist: Last Stand': +"Dead Mist: Last Stand": pageId: 79165 steam: 766500 Dead Monarchy: pageId: 136885 steam: 1037940 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Dead Monarchy Studios\Dead Monarchy}}' -'Dead Moon: Revenge on Phobos': + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Dead Monarchy Studios\\Dead Monarchy}}" +"Dead Moon: Revenge on Phobos": pageId: 66109 steam: 668840 -Dead Mountaineer's Hotel: +"Dead Mountaineer's Hotel": pageId: 40872 steam: 10230 Dead Noir the Heart: @@ -40842,15 +39825,15 @@ Dead Pixels: pageId: 4997 steam: 222980 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\SavedGames\Dead Pixels\Dead Pixels\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\SavedGames\Dead Pixels\Dead Pixels\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\SavedGames\\Dead Pixels\\Dead Pixels\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\SavedGames\\Dead Pixels\\Dead Pixels\\}}" Dead Pixels II: pageId: 39745 steam: 259000 Dead Prison: pageId: 110242 steam: 923820 -'Dead Purge: Outbreak': +"Dead Purge: Outbreak": pageId: 64048 steam: 660990 Dead Quest: @@ -40862,64 +39845,58 @@ Dead Rain - New Zombie Virus: Dead Realm: pageId: 47079 steam: 352460 -'Dead Reckoning: Brassfield Manor': +"Dead Reckoning: Brassfield Manor": pageId: 69456 steam: 695990 -'Dead Reckoning: Silvermoon Isle': +"Dead Reckoning: Silvermoon Isle": pageId: 57297 steam: 586690 -'Dead Reckoning: The Crescent Case': +"Dead Reckoning: The Crescent Case": pageId: 88679 steam: 815560 Dead Reefs: pageId: 13832 templates: - - '{{Game data/config|Windows|{{p|game}}\engine.ini|{{p|hkcu}}\Software\Virtools\UserConfig\Dead Reefs}}' - - '{{Game data/saves|Windows|{{p|game}}\Save\}}' + - "{{Game data/config|Windows|{{p|game}}\\engine.ini|{{p|hkcu}}\\Software\\Virtools\\UserConfig\\Dead Reefs}}" + - "{{Game data/saves|Windows|{{p|game}}\\Save\\}}" Dead Rising: pageId: 35571 steam: 427190 templates: - - >- - {{Game data/config|Windows|{{p|localappdata}}\capcom\DEAD RISING\config.ini|{{p|localappdata}}\capcom\DEAD - RISING\controller_mapping.ini}} - - '{{Game data/saves|Windows|{{P|steam}}\userdata\{{p|uid}}\427190\remote\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\capcom\\DEAD RISING\\config.ini|{{p|localappdata}}\\capcom\\DEAD RISING\\controller_mapping.ini}}" + - "{{Game data/saves|Windows|{{P|steam}}\\userdata\\{{p|uid}}\\427190\\remote\\}}" Dead Rising 2: pageId: 15642 steam: 45740 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Dead Rising 2\rendersettings.ini}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Dead Rising 2\saves\}}' - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\45740\remote\}}' -'Dead Rising 2: Off the Record': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Dead Rising 2\\rendersettings.ini}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Dead Rising 2\\saves\\}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\45740\\remote\\}}" +"Dead Rising 2: Off the Record": pageId: 3977 steam: 45770 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\My Games\Dead Rising 2 Off The Record}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Dead Rising 2 Off The Record\saves\}}' + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\My Games\\Dead Rising 2 Off The Record}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Dead Rising 2 Off The Record\\saves\\}}" Dead Rising 3: pageId: 17711 steam: 265550 steamSide: + - 274110 - 274111 - 274112 - 278140 - - 274110 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Dead Rising 3\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Dead Rising 3\saves\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Dead Rising 3\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Dead Rising 3\\saves\\}}" Dead Rising 4: pageId: 35569 steam: 543460 templates: - - >- - {{Game data/config|Microsoft - Store|{{p|localappdata}}\Packages\3F65914F.SwaggerPC_rdarpxrtkxb3r\LocalState\rendersettings.ini}} - - '{{Game data/config|Steam|{{P|userprofile\Documents}}\My Games\Dead Rising 4\rendersettings.ini}}' - - >- - {{Game data/saves|Microsoft - Store|{{p|localappdata}}\Packages\3F65914F.SwaggerPC_rdarpxrtkxb3r\SystemAppData\wgs\{{p|uid}}\}} - - '{{Game data/saves|Steam|{{P|userprofile\Documents}}\My Games\Dead Rising 4\saves\}}' + - "{{Game data/config|Microsoft Store|{{p|localappdata}}\\Packages\\3F65914F.SwaggerPC_rdarpxrtkxb3r\\LocalState\\rendersettings.ini}}" + - "{{Game data/config|Steam|{{P|userprofile\\Documents}}\\My Games\\Dead Rising 4\\rendersettings.ini}}" + - "{{Game data/saves|Microsoft Store|{{p|localappdata}}\\Packages\\3F65914F.SwaggerPC_rdarpxrtkxb3r\\SystemAppData\\wgs\\{{p|uid}}\\}}" + - "{{Game data/saves|Steam|{{P|userprofile\\Documents}}\\My Games\\Dead Rising 4\\saves\\}}" Dead Russia Co-op: pageId: 157100 steam: 1211640 @@ -40930,7 +39907,7 @@ Dead Secret: pageId: 43939 steam: 402260 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Robot Invader\Dead Secret\}}' + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Robot Invader\\Dead Secret\\}}" Dead Secret Circle: pageId: 92245 steam: 671920 @@ -40948,8 +39925,8 @@ Dead Space: pageId: 65 steam: 17470 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Electronic Arts\Dead Space\settings.txt}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Electronic Arts\Dead Space\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Electronic Arts\\Dead Space\\settings.txt}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Electronic Arts\\Dead Space\\}}" Dead Space (2023): pageId: 170236 renamedFrom: @@ -40959,20 +39936,20 @@ Dead Space (2023): steamSide: - 2164210 templates: - - '{{Game data/config|Steam|{{p|userprofile\Documents}}\Dead Space (2023)\settings\steam}}' - - '{{Game data/saves|Steam|{{p|userprofile\Documents}}\Dead Space (2023)\settings\steam}}' + - "{{Game data/config|Steam|{{p|userprofile\\Documents}}\\Dead Space (2023)\\settings\\steam}}" + - "{{Game data/saves|Steam|{{p|userprofile\\Documents}}\\Dead Space (2023)\\settings\\steam}}" Dead Space 2: pageId: 2841 steam: 47780 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\EA Games\Dead Space 2\settings.txt}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\EA Games\Dead Space 2\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\EA Games\\Dead Space 2\\settings.txt}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\EA Games\\Dead Space 2\\}}" Dead Space 3: pageId: 4510 steam: 1238060 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\EA Games\Dead Space 3\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\EA Games\Dead Space 3\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\EA Games\\Dead Space 3\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\EA Games\\Dead Space 3\\}}" Dead Spawn: pageId: 144831 steam: 721990 @@ -40984,39 +39961,35 @@ Dead State: pageId: 14828 steam: 239840 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\My Games\Dead State\}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\My Games\Dead State\}}' + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\My Games\\Dead State\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\My Games\\Dead State\\}}" Dead Static Drive: pageId: 151501 steam: 1166940 Dead Stop: pageId: 44405 steam: 408860 -'Dead Synchronicity: The Longest Night': +"Dead Synchronicity: The Longest Night": gog: 1427188253 pageId: 26568 steam: 339190 templates: - - '{{Game data/config|Windows|{{P|game}}\save}}' - - '{{Game data/config|Linux|{{P|game}}/save}}' - - '{{Game data/saves|Windows|{{P|game}}\save}}' - - '{{Game data/saves|Linux|{{P|game}}/save}}' -'Dead Synchronicity: Tomorrow Comes Today': + - "{{Game data/config|Windows|{{P|game}}\\save}}" + - "{{Game data/config|Linux|{{P|game}}/save}}" + - "{{Game data/saves|Windows|{{P|game}}\\save}}" + - "{{Game data/saves|Linux|{{P|game}}/save}}" +"Dead Synchronicity: Tomorrow Comes Today": gog: 1427188253 pageId: 24211 steam: 339190 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Daedalic Entertainment GmbH\Dead Synchronicity\}}' - - >- - {{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Daedalic Entertainment GmbH/Dead - Synchronicity/}} - - '{{Game data/config|Linux|{{p|linuxhome}}/.local/share/Daedalic Entertainment GmbH/Dead Synchronicity/}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\Daedalic Entertainment GmbH\Dead Synchronicity\Savegames\}}' - - >- - {{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Daedalic Entertainment GmbH/Dead - Synchronicity/Savegames/}} - - '{{Game data/saves|Linux|{{p|linuxhome}}/.local/share/Daedalic Entertainment GmbH/Dead Synchronicity/Savegames/}}' -'Dead Target VR: Zombie Intensified': + - "{{Game data/config|Windows|{{P|localappdata}}\\Daedalic Entertainment GmbH\\Dead Synchronicity\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Daedalic Entertainment GmbH/Dead Synchronicity/}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.local/share/Daedalic Entertainment GmbH/Dead Synchronicity/}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Daedalic Entertainment GmbH\\Dead Synchronicity\\Savegames\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Daedalic Entertainment GmbH/Dead Synchronicity/Savegames/}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.local/share/Daedalic Entertainment GmbH/Dead Synchronicity/Savegames/}}" +"Dead Target VR: Zombie Intensified": pageId: 78400 steam: 727790 Dead TrailZ: @@ -41035,39 +40008,39 @@ Dead by Daylight: steam: 381210 steamSide: - 492140 - - 1408020 - - 1324970 - - 1251000 - - 1199880 - - 1135280 - - 1089270 - - 1009821 + - 509060 + - 530710 - 530711 + - 554380 + - 554381 + - 573940 + - 577901 + - 582600 + - 627510 + - 661770 + - 700280 - 700282 - 750381 - - 700280 - - 1009820 + - 799200 - 925750 - 971790 - - 799200 - - 582600 - - 554381 - - 661770 - - 509060 - - 573940 - - 627510 - - 530710 - - 554380 - - 577901 + - 1009820 + - 1009821 + - 1089270 + - 1135280 + - 1199880 + - 1251000 + - 1324970 + - 1408020 - 2198470 templates: - - '{{Game data/config|Steam|{{p|localappdata}}\DeadByDaylight\Saved\Config\WindowsClient}}' - - '{{Game data/config|Epic Games Launcher|{{p|localappdata}}\DeadByDaylight\Saved\Config\EGS}}' - - '{{Game data/config|Microsoft Store|{{p|localappdata}}\DeadByDaylight\Saved\Config\WinGDK}}' + - "{{Game data/config|Steam|{{p|localappdata}}\\DeadByDaylight\\Saved\\Config\\WindowsClient}}" + - "{{Game data/config|Epic Games Launcher|{{p|localappdata}}\\DeadByDaylight\\Saved\\Config\\EGS}}" + - "{{Game data/config|Microsoft Store|{{p|localappdata}}\\DeadByDaylight\\Saved\\Config\\WinGDK}}" Dead by Death: pageId: 103305 steam: 663290 -'Dead by Wheel: Battle Royal': +"Dead by Wheel: Battle Royal": pageId: 114142 steam: 936770 Dead file.exe: @@ -41077,15 +40050,15 @@ Dead in Bermuda: pageId: 46689 steam: 384310 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\CCCP\Dead In Bermuda}}' + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\CCCP\\Dead In Bermuda}}" Dead in Vinland: gog: 1990781940 pageId: 67992 steam: 573120 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\CCCP\Dead In Vinland\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\CCCP\Dead In Vinland\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/unity.CCCP.Dead In Vinland/}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\CCCP\\Dead In Vinland\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\CCCP\\Dead In Vinland\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/unity.CCCP.Dead In Vinland/}}" Dead in time: pageId: 98542 steam: 875530 @@ -41096,20 +40069,20 @@ Dead or Alive 5 Last Round: pageId: 21264 steam: 311730 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\KoeiTecmo\DOA5LR\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\KoeiTecmo\DOA5LR\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\KoeiTecmo\\DOA5LR\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\KoeiTecmo\\DOA5LR\\}}" Dead or Alive 6: pageId: 97387 steam: 838380 templates: - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\KoeiTecmo\DEADORALIVE6}}' + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\KoeiTecmo\\DEADORALIVE6}}" Dead or Alive Xtreme Venus Vacation: pageId: 131566 renamedFrom: - - 'Dead or Alive Xtreme: Venus Vacation' + - "Dead or Alive Xtreme: Venus Vacation" steam: 958260 templates: - - '{{Game data/config|Windows|{{p|game}}\DX11_global_data\savedata\}}' + - "{{Game data/config|Windows|{{p|game}}\\DX11_global_data\\savedata\\}}" Dead or School: pageId: 103401 steam: 789760 @@ -41119,25 +40092,25 @@ Dead territory: Dead to Rights: pageId: 54875 templates: - - '{{Game data/config|Windows|{{p|game}}\settings.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\saves\}}' + - "{{Game data/config|Windows|{{p|game}}\\settings.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\saves\\}}" Dead to Rights II: pageId: 61241 templates: - - '{{Game data/config|Windows|{{p|game}}\pc.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\save\}}' + - "{{Game data/config|Windows|{{p|game}}\\pc.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\save\\}}" Dead6hot: pageId: 35333 steam: 438030 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Stencyl\Deadshot022916\}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Stencyl\Deadshot022916\}}' + - "{{Game data/config|Windows|{{p|appdata}}\\Stencyl\\Deadshot022916\\}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Stencyl\\Deadshot022916\\}}" DeadCore: pageId: 26970 steam: 284460 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\SOFTWARE\5 Bits Games\DeadCore|{{p|game}}\{{p|uid}}\settings.save}}' - - '{{Game data/saves|Windows|{{p|game}}\{{p|uid}}\story.save}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\5 Bits Games\\DeadCore|{{p|game}}\\{{p|uid}}\\settings.save}}" + - "{{Game data/saves|Windows|{{p|game}}\\{{p|uid}}\\story.save}}" DeadEye: pageId: 132931 steam: 1048150 @@ -41147,25 +40120,25 @@ DeadLand VR: DeadShotZ: pageId: 150615 steam: 1180110 -'DeadTruth: The Dark Path Ahead': +"DeadTruth: The Dark Path Ahead": pageId: 55604 steam: 572170 Deadbeat Heroes: pageId: 73461 steam: 614090 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Deadbeat Productions\DeadbeatHeroes\}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Deadbeat Productions\DeadbeatHeroes\{{P|uid}}\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Deadbeat Productions\\DeadbeatHeroes\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Deadbeat Productions\\DeadbeatHeroes\\{{P|uid}}\\}}" Deadbolt: gog: 1457453536 pageId: 34230 steam: 394970 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\deadbolt_game\Prefs.ini}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/deadbolt_game/prefs.ini}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\deadbolt_game\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/com.deadbolt.deadbolt}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/deadbolt_game}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\deadbolt_game\\Prefs.ini}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/deadbolt_game/prefs.ini}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\deadbolt_game\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/com.deadbolt.deadbolt}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/deadbolt_game}}" Deadbreed: pageId: 43608 steam: 277950 @@ -41176,9 +40149,9 @@ Deadfall Adventures: pageId: 11944 steam: 231330 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Deadfall Adventures\ADVGame\Config\}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/Deadfall Adventures/}}' - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/231330/}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Deadfall Adventures\\ADVGame\\Config\\}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/Deadfall Adventures/}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/231330/}}" Deadfall Tropics: pageId: 93086 steam: 842770 @@ -41194,58 +40167,56 @@ Deadhunt: Deadlands Noir - That Old Time Religion: pageId: 47387 steam: 383670 -'Deadliest Catch: The Game': +"Deadliest Catch: The Game": pageId: 124121 steam: 838630 Deadlight: pageId: 3831 steam: 211400 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\UnrealEngine3\LOTDGame\Config\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Deadlight\}}' -'Deadlight: Director''s Cut': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\UnrealEngine3\\LOTDGame\\Config\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Deadlight\\}}" +"Deadlight: Director's Cut": gog: 1230412827 pageId: 33389 steam: 423950 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\UnrealEngine3\LOTDGame\Config\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\UnrealEngine3\LOTDGame\Save\}}' - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\423950\remote\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\UnrealEngine3\\LOTDGame\\Config\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\UnrealEngine3\\LOTDGame\\Save\\}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\423950\\remote\\}}" Deadliners: pageId: 65325 steam: 671290 -'Deadlings: Rotten Edition': +"Deadlings: Rotten Edition": pageId: 49351 steam: 320150 Deadlink: pageId: 184578 steam: 1676130 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Deadlink\Saved\Config\WindowsNoEditor}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\Deadlink\Saved\SavedGames}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\Deadlink\\Saved\\Config\\WindowsNoEditor}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Deadlink\\Saved\\SavedGames}}" Deadlock: pageId: 41603 steam: 513790 -'Deadlock 2: Shrine Wars': +"Deadlock 2: Shrine Wars": gog: 1207660543 pageId: 21131 steam: 328450 templates: - - '{{Game data/config|Windows|{{p|game}}\DL2.PRF}}' - - >- - {{Game - data/saves|Windows|{{p|game}}\Saves
{{p|game}}\MSaves
{{p|game}}\Campaign
{{p|game}}\Custom
{{p|game}}\Maps}} -'Deadlock: Planetary Conquest': + - "{{Game data/config|Windows|{{p|game}}\\DL2.PRF}}" + - "{{Game data/saves|Windows|{{p|game}}\\Saves
{{p|game}}\\MSaves
{{p|game}}\\Campaign
{{p|game}}\\Custom
{{p|game}}\\Maps}}" +"Deadlock: Planetary Conquest": gog: 1207660533 pageId: 21127 steam: 328440 templates: - - '{{Game data/saves|Windows|{{p|game}}\*.sav}}' + - "{{Game data/saves|Windows|{{p|game}}\\*.sav}}" Deadly 30: pageId: 50728 steam: 264730 templates: - - '{{Game data/saves|Windows|{{p|game}}\savedata}}' + - "{{Game data/saves|Windows|{{p|game}}\\savedata}}" Deadly Animal Duel: pageId: 70301 steam: 587790 @@ -41258,7 +40229,7 @@ Deadly Burrito: Deadly Contact: pageId: 78266 renamedFrom: - - 'Population: One' + - "Population: One" steam: 751350 Deadly Cryptids: pageId: 88095 @@ -41266,7 +40237,7 @@ Deadly Cryptids: Deadly Curse: pageId: 109636 steam: 912020 -'Deadly Curse: Insane Nightmare': +"Deadly Curse: Insane Nightmare": pageId: 114854 steam: 949510 Deadly Days: @@ -41274,8 +40245,8 @@ Deadly Days: pageId: 75033 steam: 740080 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\SOFTWARE\Pixelsplit\Deadly Days\}}' - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Pixelsplit\Deadly Days\ddsave}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\SOFTWARE\\Pixelsplit\\Deadly Days\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Pixelsplit\\Deadly Days\\ddsave}}" Deadly Delivery: pageId: 94062 steam: 819740 @@ -41284,22 +40255,22 @@ Deadly Dozen: pageId: 57068 steam: 514080 templates: - - '{{Game data/config|Windows|{{p|game}}\*.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\Saves\}}' + - "{{Game data/config|Windows|{{p|game}}\\*.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\Saves\\}}" Deadly Dozen Reloaded: gog: 1389682947 pageId: 177350 steam: 1297430 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\SOFTWARE\Ziggurat Interactive\Deadly Dozen Reloaded\}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\My Games\Deadly Dozen Reloaded\}}' -'Deadly Dozen: Pacific Theater': + - "{{Game data/config|Windows|{{P|hkcu}}\\SOFTWARE\\Ziggurat Interactive\\Deadly Dozen Reloaded\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\My Games\\Deadly Dozen Reloaded\\}}" +"Deadly Dozen: Pacific Theater": gog: 1574431305 pageId: 83010 steam: 1267930 templates: - - '{{Game data/config|Windows|{{p|game}}\*.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\Saves\}}' + - "{{Game data/config|Windows|{{p|game}}\\*.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\Saves\\}}" Deadly Edge: pageId: 66587 steam: 564100 @@ -41320,23 +40291,21 @@ Deadly Metal: Deadly Path: pageId: 135149 steam: 1064480 -'Deadly Premonition 2: A Blessing in Disguise': +"Deadly Premonition 2: A Blessing in Disguise": pageId: 167699 steam: 1271100 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\SOFTWARE\ToyBox Inc.\DeadlyPremonition2}}' - - >- - {{Game data/saves|Windows|{{p|userprofile}}\AppData\Local\ToyBox - Inc\DeadlyPremonition2\Saved\SaveGames\{{p|uid}}\*.dat}} -'Deadly Premonition: The Director''s Cut': + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\ToyBox Inc.\\DeadlyPremonition2}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\Local\\ToyBox Inc\\DeadlyPremonition2\\Saved\\SaveGames\\{{p|uid}}\\*.dat}}" +"Deadly Premonition: The Director's Cut": gog: 1207660043 pageId: 10092 steam: 247660 steamSide: - 256240 templates: - - '{{Game data/config|Windows|{{p|game}}\config.cnf|{{p|game}}\configJ.cnf}}' - - '{{Game data/saves|Windows|{{p|game}}\savedata\}}' + - "{{Game data/config|Windows|{{p|game}}\\config.cnf|{{p|game}}\\configJ.cnf}}" + - "{{Game data/saves|Windows|{{p|game}}\\savedata\\}}" Deadly Profits: pageId: 34886 steam: 344750 @@ -41378,18 +40347,14 @@ Deadnaut: pageId: 23587 steam: 337040 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Screwfly Studios\Deadnaut\}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Screwfly Studios\Deadnaut\}}' -'Deadnaut: Signal Lost': + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Screwfly Studios\\Deadnaut\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Screwfly Studios\\Deadnaut\\}}" +"Deadnaut: Signal Lost": pageId: 187644 steam: 1801410 templates: - - >- - {{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\Screwfly Studios\Signal - Lost\Game.User.db|{{p|userprofile\appdata\locallow}}\Screwfly Studios\Signal Lost\Game.Session.db}} - - >- - {{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Screwfly Studios/Signal - Lost/Game.User.db|{{p|linuxhome}}/.config/unity3d/Screwfly Studios/Signal Lost/Game.Session.db}} + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\Screwfly Studios\\Signal Lost\\Game.User.db|{{p|userprofile\\appdata\\locallow}}\\Screwfly Studios\\Signal Lost\\Game.Session.db}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Screwfly Studios/Signal Lost/Game.User.db|{{p|linuxhome}}/.config/unity3d/Screwfly Studios/Signal Lost/Game.Session.db}}" Deadness: pageId: 157075 steam: 951570 @@ -41397,8 +40362,8 @@ Deadpool: pageId: 7924 steam: 224060 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Activision\DeadPool|{{P|game}}\TransGame\Config\PC\Cooked}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Deadpool\SaveData\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Activision\\DeadPool|{{P|game}}\\TransGame\\Config\\PC\\Cooked}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Deadpool\\SaveData\\}}" Deadrinds: pageId: 82219 steam: 758440 @@ -41406,7 +40371,7 @@ Deadside: pageId: 113542 steam: 895400 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Deadside\Saved\Config\WindowsNoEditor\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\Deadside\\Saved\\Config\\WindowsNoEditor\\}}" Deadsiege: pageId: 114778 steam: 948470 @@ -41414,7 +40379,7 @@ Deadstep: pageId: 77337 steam: 751470 templates: - - '{{Game data/saves|Windows|{{p|localappdata}}\Deadstep\Saved\}}' + - "{{Game data/saves|Windows|{{p|localappdata}}\\Deadstep\\Saved\\}}" Deadstick - Bush Flight Simulator: pageId: 94344 steam: 771800 @@ -41424,7 +40389,7 @@ Deadstone: Deadtime Defenders: pageId: 151234 steam: 1148700 -'Deadwar: Old Lies': +"Deadwar: Old Lies": pageId: 90457 steam: 728450 Deadwater Saloon: @@ -41435,11 +40400,11 @@ Deadweight: steam: 385350 Deal or No Deal: pageId: 90806 -'Deal or No Deal: Secret Vault Games': +"Deal or No Deal: Secret Vault Games": pageId: 89923 -'Deal or No Deal: The Official PC Game': +"Deal or No Deal: The Official PC Game": pageId: 90804 -Dealer's Life: +"Dealer's Life": pageId: 125689 steam: 982270 Dealey Plaza Paintball: @@ -41457,24 +40422,22 @@ Dear Ashely: Dear Camy: pageId: 184254 templates: - - '{{Game data/config|Windows|{{p|game}}\Options.dat}}' + - "{{Game data/config|Windows|{{p|game}}\\Options.dat}}" Dear Esther: pageId: 5181 steam: 203810 templates: - - '{{Game data/config|Windows|{{p|game}}\dearesther\cfg\}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/dearesther/}}' - - '{{Game data/saves|Windows|{{p|game}}\dearesther\SAVE\}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/dearesther/}}' -'Dear Esther: Landmark Edition': + - "{{Game data/config|Windows|{{p|game}}\\dearesther\\cfg\\}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/dearesther/}}" + - "{{Game data/saves|Windows|{{p|game}}\\dearesther\\SAVE\\}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/dearesther/}}" +"Dear Esther: Landmark Edition": gog: 1305464490 pageId: 57929 steam: 520720 templates: - - >- - {{Game data/config|Windows|{{p|HKCU}}\SOFTWARE\The Chinese Room & Robert Briscoe @ - LittleLostPoly.co.uk\DearEsther}} - - '{{Game data/saves|Steam|{{P|steam}}\userdata\{{P|uid}}\520720\remote\playerprefs.dat}}' + - "{{Game data/config|Windows|{{p|HKCU}}\\SOFTWARE\\The Chinese Room & Robert Briscoe @ LittleLostPoly.co.uk\\DearEsther}}" + - "{{Game data/saves|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\520720\\remote\\playerprefs.dat}}" Dear Leader: pageId: 90590 steam: 812940 @@ -41487,7 +40450,7 @@ Dear Red - Extended: pageId: 43636 steam: 453850 templates: - - '{{Game data/saves|Windows|{{P|game}}\Save*.rvdata2}}' + - "{{Game data/saves|Windows|{{P|game}}\\Save*.rvdata2}}" Dear diary: pageId: 135131 steam: 1073030 @@ -41507,15 +40470,15 @@ Death Coming: pageId: 69621 steam: 705120 templates: - - '{{Game data/config|Windows|{{P|game}}/Doc/Config.ini}}' - - '{{Game data/saves|Windows|{{P|localappdata}}/xDeath|{{P|localappdata}}/DeathBefall_Epic/Update}}' + - "{{Game data/config|Windows|{{P|game}}/Doc/Config.ini}}" + - "{{Game data/saves|Windows|{{P|localappdata}}/xDeath|{{P|localappdata}}/DeathBefall_Epic/Update}}" Death Crown: pageId: 89704 steam: 814530 Death Dojo: pageId: 53041 steam: 544590 -'Death Field: The Battle Royale of Disaster': +"Death Field: The Battle Royale of Disaster": pageId: 91880 steam: 779610 Death Fungeon: @@ -41534,8 +40497,8 @@ Death Gate: gog: 1869199616 pageId: 131769 templates: - - '{{Game data/config|DOS|{{p|game}}\LEGEND.INI}}' - - '{{Game data/saves|DOS|{{p|game}}\DGATE***.SAV}}' + - "{{Game data/config|DOS|{{p|game}}\\LEGEND.INI}}" + - "{{Game data/saves|DOS|{{p|game}}\\DGATE***.SAV}}" Death Goat: pageId: 33736 steam: 340770 @@ -41552,8 +40515,8 @@ Death Knights of Krynn: pageId: 62685 steam: 1904621 templates: - - '{{Game data/config|DOS|{{p|game}}\DKK.CFG}}' - - '{{Game data/saves|DOS|{{p|game}}\SAVE\}}' + - "{{Game data/config|DOS|{{p|game}}\\DKK.CFG}}" + - "{{Game data/saves|DOS|{{p|game}}\\SAVE\\}}" Death Live: pageId: 149773 steam: 1140610 @@ -41561,8 +40524,8 @@ Death Mark: pageId: 130396 steam: 980830 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Death Mark}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Death Mark\*.bin}}' + - "{{Game data/config|Windows|{{p|appdata}}\\Death Mark}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Death Mark\\*.bin}}" Death Mark Vol.1: pageId: 94018 steam: 828380 @@ -41572,7 +40535,7 @@ Death Maze: Death Park: pageId: 152983 steam: 1186030 -'Death Penalty: Beginning': +"Death Penalty: Beginning": pageId: 55928 steam: 570380 Death Pirate: @@ -41582,7 +40545,7 @@ Death Point: pageId: 69553 steam: 595920 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Andiks\Death Point\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Andiks\\Death Point\\}}" Death Race: pageId: 113634 steam: 908750 @@ -41590,12 +40553,12 @@ Death Rally: pageId: 30466 steam: 358270 templates: - - '{{Game data/config|Windows|{{p|game}}\dr.cfg}}' + - "{{Game data/config|Windows|{{p|game}}\\dr.cfg}}" Death Rally (2012): pageId: 51116 steam: 108700 templates: - - '{{Game data/saves|Windows|{{p|ProgramData}}\Remedy\Death Rally\1.0\Profiles\}}' + - "{{Game data/saves|Windows|{{p|ProgramData}}\\Remedy\\Death Rally\\1.0\\Profiles\\}}" Death Ray Manta: pageId: 46410 steam: 338760 @@ -41609,10 +40572,10 @@ Death Road to Canada: pageId: 37686 steam: 252610 templates: - - '{{Game data/config|Windows|{{p|appdata}}\.madgarden\DR2C}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.madgarden/DR2C}}' - - '{{Game data/saves|Windows|{{p|APPDATA}}\.madgarden\DR2C}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.madgarden/DR2C/}}' + - "{{Game data/config|Windows|{{p|appdata}}\\.madgarden\\DR2C}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.madgarden/DR2C}}" + - "{{Game data/saves|Windows|{{p|APPDATA}}\\.madgarden\\DR2C}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.madgarden/DR2C/}}" Death Rpg: pageId: 132069 steam: 1007080 @@ -41626,10 +40589,8 @@ Death Squared: pageId: 51762 steam: 471810 templates: - - >- - {{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\SMG Studio\Death - Squared\ds_settings.dat|{{P|hkcu}}\Software\SMG Studio\Death Squared\}} - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\SMG Studio\Death Squared\Saves}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\SMG Studio\\Death Squared\\ds_settings.dat|{{P|hkcu}}\\Software\\SMG Studio\\Death Squared\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\SMG Studio\\Death Squared\\Saves}}" Death Stair: pageId: 41581 steam: 444880 @@ -41640,29 +40601,20 @@ Death Stranding: - 1258500 - 1258510 templates: - - >- - {{Game data/config|Microsoft - Store|{{P|localappdata}}\Packages\505GAMESS.P.A.DeathStranding_tefn33qh9azfc\SystemAppData\xgs\{{P|uid}}\profile\}} - - '{{Game data/config|Windows|{{P|game}}\settings.cfg}}' - - >- - {{Game data/saves|Microsoft - Store|{{P|localappdata}}\Packages\505GAMESS.P.A.DeathStranding_tefn33qh9azfc\SystemAppData\xgs\{{P|uid}}\}} - - '{{Game data/saves|Windows|{{P|localappdata}}\KojimaProductions\DeathStranding\{{P|uid}}\}}' - - >- - {{Game data/saves|Epic Games - Store|{{P|userprofile}}\AppData\LocalLow\KojimaProductions\DeathStranding\{{P|uid}}\}} -Death Stranding Director's Cut: + - "{{Game data/config|Microsoft Store|{{P|localappdata}}\\Packages\\505GAMESS.P.A.DeathStranding_tefn33qh9azfc\\SystemAppData\\xgs\\{{P|uid}}\\profile\\}}" + - "{{Game data/config|Windows|{{P|game}}\\settings.cfg}}" + - "{{Game data/saves|Microsoft Store|{{P|localappdata}}\\Packages\\505GAMESS.P.A.DeathStranding_tefn33qh9azfc\\SystemAppData\\xgs\\{{P|uid}}\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\KojimaProductions\\DeathStranding\\{{P|uid}}\\}}" + - "{{Game data/saves|Epic Games Store|{{P|userprofile}}\\AppData\\LocalLow\\KojimaProductions\\DeathStranding\\{{P|uid}}\\}}" +"Death Stranding Director's Cut": pageId: 174019 renamedFrom: - - 'Death Stranding: Director''s Cut' + - "Death Stranding: Director's Cut" steam: 1850570 templates: - - '{{Game data/config|Windows|{{P|game}}\settings.cfg}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\KojimaProductions\DeathStrandingDC\{{P|uid}}\}}' - - >- - {{Game data/saves|Epic Games - Store|{{P|userprofile}}\AppData\LocalLow\KojimaProductions\DeathStrandingDC\{{P|uid}}\Confirmation - needed.}} + - "{{Game data/config|Windows|{{P|game}}\\settings.cfg}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\KojimaProductions\\DeathStrandingDC\\{{P|uid}}\\}}" + - "{{Game data/saves|Epic Games Store|{{P|userprofile}}\\AppData\\LocalLow\\KojimaProductions\\DeathStrandingDC\\{{P|uid}}\\Confirmation needed.}}" Death Sword: pageId: 76506 Death To The Dragon Lord: @@ -41671,20 +40623,20 @@ Death To The Dragon Lord: Death Toll: pageId: 74598 steam: 414550 -'Death Track: Resurrection': +"Death Track: Resurrection": gog: 1386697093 pageId: 21558 steam: 7840 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\skyfallen entertainment\deathtrack\Config\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\skyfallen entertaiment\deathtrack\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\skyfallen entertainment\\deathtrack\\Config\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\skyfallen entertaiment\\deathtrack\\}}" Death Tractor: pageId: 45848 steam: 375040 -'Death Trader: Cold War': +"Death Trader: Cold War": pageId: 114026 steam: 933700 -'Death Train - Warning: Unsafe VR Experience': +"Death Train - Warning: Unsafe VR Experience": pageId: 70283 steam: 680780 Death Trash: @@ -41692,12 +40644,12 @@ Death Trash: pageId: 151036 steam: 941460 templates: - - '{{Game data/config|Windows|{{P|userprofile\appdata\locallow}}\Crafting Legends\Death Trash\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Crafting Legends/Death Trash}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/Crafting Legends/Death Trash}}' - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Crafting Legends\Death Trash\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Crafting Legends/Death Trash}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/Crafting Legends/Death Trash}}' + - "{{Game data/config|Windows|{{P|userprofile\\appdata\\locallow}}\\Crafting Legends\\Death Trash\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Crafting Legends/Death Trash}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/Crafting Legends/Death Trash}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Crafting Legends\\Death Trash\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Crafting Legends/Death Trash}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/Crafting Legends/Death Trash}}" Death Voting Game: pageId: 114798 renamedFrom: @@ -41706,7 +40658,7 @@ Death Voting Game: Death Waves: pageId: 127834 steam: 1024220 -'Death and Betrayal in Romania: A Dana Knightstone Novel': +"Death and Betrayal in Romania: A Dana Knightstone Novel": pageId: 110410 steam: 926110 Death and Progress: @@ -41717,16 +40669,12 @@ Death and Taxes: pageId: 154174 steam: 1166290 templates: - - >- - {{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\Placeholder Gameworks\Death and - Taxes\Saves\Options.RIP}} - - '{{Game data/config|OS X| ~/Library/Application Support/Placeholder Gameworks/Death and Taxes/Saves/Options.RIP}}' - - '{{Game data/config|Linux|{{p|xdgconfighome}}/unity3d/Placeholder Gameworks/Death and Taxes/Saves/Options.RIP}}' - - >- - {{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Placeholder Gameworks\Death and - Taxes\Saves\Save.RIP}} - - '{{Game data/saves|OS X| ~/Library/Application Support/Placeholder Gameworks/Death and Taxes/Saves/Save.RIP}}' - - '{{Game data/saves|Linux|{{p|xdgconfighome}}/unity3d/Placeholder Gameworks/Death and Taxes/Saves/Save.RIP}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Placeholder Gameworks\\Death and Taxes\\Saves\\Options.RIP}}" + - "{{Game data/config|OS X| ~/Library/Application Support/Placeholder Gameworks/Death and Taxes/Saves/Options.RIP}}" + - "{{Game data/config|Linux|{{p|xdgconfighome}}/unity3d/Placeholder Gameworks/Death and Taxes/Saves/Options.RIP}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Placeholder Gameworks\\Death and Taxes\\Saves\\Save.RIP}}" + - "{{Game data/saves|OS X| ~/Library/Application Support/Placeholder Gameworks/Death and Taxes/Saves/Save.RIP}}" + - "{{Game data/saves|Linux|{{p|xdgconfighome}}/unity3d/Placeholder Gameworks/Death and Taxes/Saves/Save.RIP}}" Death and the Fly: pageId: 40969 steam: 41680 @@ -41734,8 +40682,8 @@ Death by Game Show: pageId: 37429 steam: 409730 templates: - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Oointah/Death by GameShow/}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Oointah/Death by GameShow/PlayerData}}' + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Oointah/Death by GameShow/}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Oointah/Death by GameShow/PlayerData}}" Death end re;Quest: gog: 1436109729 gogSide: @@ -41763,24 +40711,20 @@ Death end re;Quest: - 1012406 - 1046880 templates: - - '{{Game data/config|Windows|{{P|game}}\resource\bin\Application.ini}}' - - >- - {{Game - data/config|Steam|{{P|steam}}\userdata\{{P|uid}}\990050\remote\SYSTEMSAVE_GAME.BIN|{{P|steam}}\userdata\{{P|uid}}\990050\remote\SYSTEMSAVE_param.sfo}} - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Idea Factory\Death end reQuest}}' - - '{{Game data/saves|Steam|{{P|steam}}\userdata\{{P|uid}}\990050\remote\}}' + - "{{Game data/config|Windows|{{P|game}}\\resource\\bin\\Application.ini}}" + - "{{Game data/config|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\990050\\remote\\SYSTEMSAVE_GAME.BIN|{{P|steam}}\\userdata\\{{P|uid}}\\990050\\remote\\SYSTEMSAVE_param.sfo}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Idea Factory\\Death end reQuest}}" + - "{{Game data/saves|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\990050\\remote\\}}" Death end re;Quest 2: gog: 1725170251 pageId: 161908 steam: 1266220 templates: - - '{{Game data/config|Windows|{{P|game}}\resource\bin\DeathEndReQuest2.ini}}' - - >- - {{Game - data/config|Steam|{{P|steam}}\userdata\{{P|uid}}\1266220\remote\SYSTEMSAVE_GAME.BIN|{{P|steam}}\userdata\{{P|uid}}\1266220\remote\SYSTEMSAVE_param.sfo}} - - '{{Game data/saves|Windows|Documents\Idea Factory\Death end reQuest2\}}' - - '{{Game data/saves|Steam|{{P|steam}}\userdata\{{P|uid}}\1266220\remote\}}' -'Death from Unknown: Survival': + - "{{Game data/config|Windows|{{P|game}}\\resource\\bin\\DeathEndReQuest2.ini}}" + - "{{Game data/config|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\1266220\\remote\\SYSTEMSAVE_GAME.BIN|{{P|steam}}\\userdata\\{{P|uid}}\\1266220\\remote\\SYSTEMSAVE_param.sfo}}" + - "{{Game data/saves|Windows|Documents\\Idea Factory\\Death end reQuest2\\}}" + - "{{Game data/saves|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\1266220\\remote\\}}" +"Death from Unknown: Survival": pageId: 90324 steam: 809550 Death in the Water: @@ -41800,54 +40744,44 @@ Death to Spies: pageId: 21017 steam: 9800 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Death to Spies\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Death to Spies\}}' -'Death to Spies: Moment of Truth': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Death to Spies\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Death to Spies\\}}" +"Death to Spies: Moment of Truth": gog: 1426250716 pageId: 34311 steam: 34410 templates: - - >- - {{Game data/config|Windows|{{P|userprofile\Documents}}\My - Games\Smersh_MT\smersh.shadvs|{{P|userprofile\Documents}}\My Games\Smersh_MT\Profiles\*\settings.scg}} - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\My Games\Smersh_MT\Profiles\*\}}' -Death's Door: + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\My Games\\Smersh_MT\\smersh.shadvs|{{P|userprofile\\Documents}}\\My Games\\Smersh_MT\\Profiles\\*\\settings.scg}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\My Games\\Smersh_MT\\Profiles\\*\\}}" +"Death's Door": gog: 1948334236 gogSide: - 1950471147 pageId: 169381 steam: 894020 templates: - - '{{Game data/config|Windows|{{P|userprofile\appdata\locallow}}\Acid Nerve\DeathsDoor\}}' - - '{{Game data/config|Microsoft Store|{{P|userprofile\appdata\locallow}}\Acid Nerve\DeathsDoor\}}' - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Acid Nerve\DeathsDoor\SAVEDATA\}}' - - >- - {{Game data/saves|Microsoft - Store|{{P|localappdata}}\Packages\DevolverDigital.DeathsDoorWin10_6kzv4j18v0c96\SystemAppData\wgs}} -Death's Gambit: + - "{{Game data/config|Windows|{{P|userprofile\\appdata\\locallow}}\\Acid Nerve\\DeathsDoor\\}}" + - "{{Game data/config|Microsoft Store|{{P|userprofile\\appdata\\locallow}}\\Acid Nerve\\DeathsDoor\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Acid Nerve\\DeathsDoor\\SAVEDATA\\}}" + - "{{Game data/saves|Microsoft Store|{{P|localappdata}}\\Packages\\DevolverDigital.DeathsDoorWin10_6kzv4j18v0c96\\SystemAppData\\wgs}}" +"Death's Gambit": gog: 1486377314 pageId: 39478 steam: 356650 templates: - - >- - {{Game - data/config|Windows|{{P|localappdata}}\deathsgambit397\deaths_gambit_system_options\system_options.sav|{{P|localappdata}}\deathsgambit397\deaths_gambit*\options.sav}} - - >- - {{Game data/config|Microsoft - Store|{{P|localappdata}}\Packages\CartoonInteractiveGroupIn.DeathsGambit_6c1aaymwt3dwm\LocalCache\Local\deathsgambit397\deaths_gambit_system_options\system_options.sav|{{P|localappdata}}\Packages\CartoonInteractiveGroupIn.DeathsGambit_6c1aaymwt3dwm\LocalCache\Local\deathsgambit397\deaths_gambit*\options.sav}} - - '{{Game data/saves|Windows|{{P|localappdata}}\deathsgambit397\deaths_gambit*\}}' -Death's Hangover: + - "{{Game data/config|Windows|{{P|localappdata}}\\deathsgambit397\\deaths_gambit_system_options\\system_options.sav|{{P|localappdata}}\\deathsgambit397\\deaths_gambit*\\options.sav}}" + - "{{Game data/config|Microsoft Store|{{P|localappdata}}\\Packages\\CartoonInteractiveGroupIn.DeathsGambit_6c1aaymwt3dwm\\LocalCache\\Local\\deathsgambit397\\deaths_gambit_system_options\\system_options.sav|{{P|localappdata}}\\Packages\\CartoonInteractiveGroupIn.DeathsGambit_6c1aaymwt3dwm\\LocalCache\\Local\\deathsgambit397\\deaths_gambit*\\options.sav}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\deathsgambit397\\deaths_gambit*\\}}" +"Death's Hangover": pageId: 36638 steam: 521920 templates: - - >- - {{Game data/config|Windows|{{p|game}}\data\save\SOUL.cfg | {{p|game}}\data\save\DH_KEYS.cfg | - {{p|game}}\data\save\\DHMEM.cfg}} - - '{{Game data/saves|Windows|{{p|game}}\data\save\DH.sav}}' -Death's Life: + - "{{Game data/config|Windows|{{p|game}}\\data\\save\\SOUL.cfg | {{p|game}}\\data\\save\\DH_KEYS.cfg | {{p|game}}\\data\\save\\\\DHMEM.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\data\\save\\DH.sav}}" +"Death's Life": pageId: 52379 steam: 502100 -Death's Maze: +"Death's Maze": pageId: 72879 steam: 706400 DeathCrank: @@ -41858,8 +40792,8 @@ DeathKeep: pageId: 62250 steam: 2350540 templates: - - '{{Game data/config|Windows|{{p|game}}\Keys.sav}}' - - '{{Game data/saves|Windows|{{p|game}}\DkSave**.sav}}' + - "{{Game data/config|Windows|{{p|game}}\\Keys.sav}}" + - "{{Game data/saves|Windows|{{p|game}}\\DkSave**.sav}}" DeathMatch: pageId: 135340 steam: 1071700 @@ -41870,25 +40804,25 @@ DeathSpank: pageId: 8592 steam: 18040 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Hothead Games\DeathSpank\Prefs.ini}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/com.hotheadgames.deathspank/Prefs.ini}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Hothead Games\DeathSpank\SLOT*.SAV}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/com.hotheadgames.deathspank/SLOT*.SAV}}' - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/18040/SLOT*.SAV}}' -'DeathSpank: Thongs of Virtue': + - "{{Game data/config|Windows|{{p|appdata}}\\Hothead Games\\DeathSpank\\Prefs.ini}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/com.hotheadgames.deathspank/Prefs.ini}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Hothead Games\\DeathSpank\\SLOT*.SAV}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/com.hotheadgames.deathspank/SLOT*.SAV}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/18040/SLOT*.SAV}}" +"DeathSpank: Thongs of Virtue": pageId: 8601 steam: 18050 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Hothead Games\DeathSpankTOV\Prefs.ini}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Hothead Games\DeathSpankTOV\SLOT*.SAV}}' - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/18050/SLOT*.SAV}}' + - "{{Game data/config|Windows|{{p|appdata}}\\Hothead Games\\DeathSpankTOV\\Prefs.ini}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Hothead Games\\DeathSpankTOV\\SLOT*.SAV}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/18050/SLOT*.SAV}}" DeathTolls Experience: pageId: 92628 steam: 847900 -'Deathbloom: Chapter 1': +"Deathbloom: Chapter 1": pageId: 135229 steam: 1058560 -'Deathbloom: Chapter 2': +"Deathbloom: Chapter 2": pageId: 154229 steam: 1185470 Deathbound: @@ -41896,47 +40830,45 @@ Deathbound: steam: 1190060 Deathbringer: pageId: 74804 -'Deathbulge: Battle of the Bands': +"Deathbulge: Battle of the Bands": pageId: 142317 steam: 1083790 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\FiveHouses\Deathbulge\}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/FiveHouses/Deathbulge/}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\FiveHouses\Deathbulge\saves}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/FiveHouses/Deathbulge/saves}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\FiveHouses\\Deathbulge\\}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/FiveHouses/Deathbulge/}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\FiveHouses\\Deathbulge\\saves}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/FiveHouses/Deathbulge/saves}}" Deathdays End: pageId: 122516 steam: 964770 Deatherem: pageId: 134772 steam: 1065160 -'Deathgarden: Bloodharvest': +"Deathgarden: Bloodharvest": pageId: 94265 steam: 555440 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\TheExit\Saved\Config\WindowsNoEditor}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\TheExit\\Saved\\Config\\WindowsNoEditor}}" Deathlands: pageId: 74263 steam: 688210 Deathless Dungeon: pageId: 135724 steam: 1026610 -'Deathless: The City''s Thirst': +"Deathless: The City's Thirst": pageId: 45924 steam: 410910 -'Deathlike: Awakening': +"Deathlike: Awakening": pageId: 55285 steam: 570230 Deathloop: pageId: 158798 steam: 1252330 templates: - - '{{Game data/config|Windows|{{P|userprofile}}\Saved Games\Arkane Studios\Deathloop\base\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\Saved Games\Arkane Studios\Deathloop\base\savegame\{{p|UID}}\}}' - - >- - {{Game data/saves|Microsoft - Store|{{p|userprofile}}\AppData\Local\Packages\BethesdaSoftworks.ProjectPrism_3275kfvn8vcwc\SystemAppData\wgs\{{p|UID}}\{{p|UID}}\}} -'Deathly Storm: The Edge of Life': + - "{{Game data/config|Windows|{{P|userprofile}}\\Saved Games\\Arkane Studios\\Deathloop\\base\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Saved Games\\Arkane Studios\\Deathloop\\base\\savegame\\{{p|UID}}\\}}" + - "{{Game data/saves|Microsoft Store|{{p|userprofile}}\\AppData\\Local\\Packages\\BethesdaSoftworks.ProjectPrism_3275kfvn8vcwc\\SystemAppData\\wgs\\{{p|UID}}\\{{p|UID}}\\}}" +"Deathly Storm: The Edge of Life": pageId: 87549 steam: 795950 Deathly Survival: @@ -41946,9 +40878,9 @@ Deathmatch Classic: pageId: 180 steam: 40 templates: - - '{{Game data/config|Windows|{{p|game}}\Half-Life\dmc\}}' - - '{{Game data/config|OS X|{{p|game}}/Half-Life/dmc/}}' - - '{{Game data/config|Linux|{{p|game}}/Half-Life/dmc/}}' + - "{{Game data/config|Windows|{{p|game}}\\Half-Life\\dmc\\}}" + - "{{Game data/config|OS X|{{p|game}}/Half-Life/dmc/}}" + - "{{Game data/config|Linux|{{p|game}}/Half-Life/dmc/}}" Deathmatch Soccer: pageId: 73877 steam: 721960 @@ -41959,8 +40891,8 @@ Deathpit 3000: pageId: 74578 steam: 718720 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\Cyberlamb Studios\DEATHPIT 3000 }}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Cyberlamb Studios\DEATHPIT 3000 }}' + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Cyberlamb Studios\\DEATHPIT 3000 }}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Cyberlamb Studios\\DEATHPIT 3000 }}" Deathrun TV: pageId: 177992 steam: 1591690 @@ -41978,39 +40910,39 @@ Deathtrap: pageId: 22746 steam: 310510 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\NeoCore Games\DeathTrap\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\NeocoreGames\DeathTrap\SaveGame\{{p|uid}}\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\NeoCore Games\\DeathTrap\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\NeocoreGames\\DeathTrap\\SaveGame\\{{p|uid}}\\}}" Deathtrap Dungeon: gog: 1207659222 pageId: 7216 steam: 245010 templates: - - '{{Game data/config|Windows|{{p|game}}\ASYLUM\config.dat}}' - - '{{Game data/saves|Windows|{{p|game}}\ASYLUM\SAVEGAME\*.DDS}}' + - "{{Game data/config|Windows|{{p|game}}\\ASYLUM\\config.dat}}" + - "{{Game data/saves|Windows|{{p|game}}\\ASYLUM\\SAVEGAME\\*.DDS}}" Deathtrap Dungeon Trilogy: pageId: 96129 steam: 824760 templates: - - '{{Game data/saves|Windows|{{P|appdata}}\Nomad Games\Deathtrap Dungeon Trilogy\saved_game\}}' -'Deathtrap Dungeon: The Interactive Video Adventure': + - "{{Game data/saves|Windows|{{P|appdata}}\\Nomad Games\\Deathtrap Dungeon Trilogy\\saved_game\\}}" +"Deathtrap Dungeon: The Interactive Video Adventure": pageId: 153412 steam: 1191940 -'Deathverse: Let It Die': +"Deathverse: Let It Die": pageId: 181332 steam: 1149560 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\EAGGame\Saved}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\EAGGame\\Saved}}" Deathwave: pageId: 33926 steam: 463870 -'Debit and Credit: A Walk Through Accounting Hell': +"Debit and Credit: A Walk Through Accounting Hell": pageId: 95581 steam: 870430 Debris: pageId: 66709 steam: 669660 templates: - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\Moonray Studios\Debris\SaveDataContainers}}' + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\Moonray Studios\\Debris\\SaveDataContainers}}" Debris Field: pageId: 124274 steam: 651940 @@ -42029,19 +40961,15 @@ Debtor: Debuff: pageId: 77932 steam: 759850 -'Debugger 3.16: 100% bugged': +"Debugger 3.16: 100% bugged": pageId: 39797 steam: 339720 Decap Attack: pageId: 30877 steam: 34318 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\SEGA Mega Drive - Classics\setup.dat|{{p|userprofile\Documents}}\SEGA Genesis Classics\setup.dat}} - - >- - {{Game data/saves|Windows|{{p|userprofile\Documents}}\SEGA Mega Drive - Classics\0026\|{{p|userprofile\Documents}}\SEGA Genesis Classics\0026\}} + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\SEGA Mega Drive Classics\\setup.dat|{{p|userprofile\\Documents}}\\SEGA Genesis Classics\\setup.dat}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\SEGA Mega Drive Classics\\0026\\|{{p|userprofile\\Documents}}\\SEGA Genesis Classics\\0026\\}}" Decarnation: pageId: 187547 steam: 1672310 @@ -42050,18 +40978,16 @@ Decay of Logos: pageId: 139482 steam: 759570 templates: - - >- - {{Game data/config|Windows|{{P|userprofile}}\AppData\LocalLow\Amplify Creations\Decay of - Logos\DoLOptions.dat|{{P|hkcu}}\Software\Amplify Creations\Decay of Logos\}} - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Amplify Creations\Decay of Logos\DoLSave*.sav}}' -'Decay: The Mare': + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Amplify Creations\\Decay of Logos\\DoLOptions.dat|{{P|hkcu}}\\Software\\Amplify Creations\\Decay of Logos\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Amplify Creations\\Decay of Logos\\DoLSave*.sav}}" +"Decay: The Mare": pageId: 33470 steam: 323720 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Daedalic Entertainment GmbH\Decay - The Mare\}}' - - '{{Game data/config|Linux|{{P|linuxhome}}/.local/share/Daedalic Entertainment GmbH/Decay - The Mare/}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\Daedalic Entertainment GmbH\Decay - The Mare\}}' - - '{{Game data/saves|Linux|{{P|linuxhome}}/.local/share/Daedalic Entertainment GmbH/Decay - The Mare/}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\Daedalic Entertainment GmbH\\Decay - The Mare\\}}" + - "{{Game data/config|Linux|{{P|linuxhome}}/.local/share/Daedalic Entertainment GmbH/Decay - The Mare/}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Daedalic Entertainment GmbH\\Decay - The Mare\\}}" + - "{{Game data/saves|Linux|{{P|linuxhome}}/.local/share/Daedalic Entertainment GmbH/Decay - The Mare/}}" Decaying West: pageId: 137268 steam: 819130 @@ -42069,7 +40995,7 @@ Deceit: pageId: 40343 steam: 466240 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\Saved Games\deceit\}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\Saved Games\\deceit\\}}" Deceit 2: pageId: 185719 steam: 2064870 @@ -42079,28 +41005,28 @@ Deceive Inc.: Deceiver: pageId: 81808 steam: 728100 -'Decision: Red Daze': +"Decision: Red Daze": gog: 1819876589 pageId: 172169 steam: 1621760 steamSide: - 1765870 templates: - - '{{Game data/config|Windows|{{p|localappdata}}low\FlyAnvil\DecisionRedDaze}}' - - '{{Game data/saves|Windows|{{p|localappdata}}low\FlyAnvil\DecisionRedDaze}}' + - "{{Game data/config|Windows|{{p|localappdata}}low\\FlyAnvil\\DecisionRedDaze}}" + - "{{Game data/saves|Windows|{{p|localappdata}}low\\FlyAnvil\\DecisionRedDaze}}" Decisions: pageId: 126211 steam: 917710 -'Decisive Campaigns: Barbarossa': +"Decisive Campaigns: Barbarossa": pageId: 43296 steam: 454530 -'Decisive Campaigns: Case Blue': +"Decisive Campaigns: Case Blue": pageId: 47984 steam: 354600 -'Decisive Campaigns: The Blitzkrieg from Warsaw to Paris': +"Decisive Campaigns: The Blitzkrieg from Warsaw to Paris": pageId: 48905 steam: 337760 -Deck 'Em!: +"Deck 'Em!": pageId: 186929 steam: 2162130 Deck Box Dungeons: @@ -42148,12 +41074,12 @@ Deep 8: Deep Below: pageId: 41515 steam: 526470 -'Deep Black: Reloaded': +"Deep Black: Reloaded": pageId: 23265 steam: 204760 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\DeepBlackReloaded\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\DeepBlackReloaded\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\DeepBlackReloaded\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\DeepBlackReloaded\\}}" Deep Blue: pageId: 62306 steam: 484830 @@ -42178,15 +41104,15 @@ Deep Diving Simulator: Deep Diving VR: pageId: 144741 steam: 1104050 -'Deep Dungeon: Gym': +"Deep Dungeon: Gym": pageId: 134385 steam: 1067050 Deep Dungeons of Doom: pageId: 49512 steam: 325090 templates: - - '{{Game data/saves|Windows|{{p|appdata}}\com.bossa.ddd\Local Store\#SharedObjects\ddd-0.1-SNAPSHOT.swf}}' -'Deep Eclipse: New Space Odyssey': + - "{{Game data/saves|Windows|{{p|appdata}}\\com.bossa.ddd\\Local Store\\#SharedObjects\\ddd-0.1-SNAPSHOT.swf}}" +"Deep Eclipse: New Space Odyssey": pageId: 49432 steam: 326990 Deep End: @@ -42215,10 +41141,10 @@ Deep Ocean Rush: Deep Ones: pageId: 69326 steam: 696730 -'Deep Race: Battle': +"Deep Race: Battle": pageId: 144673 steam: 1136830 -'Deep Race: Space': +"Deep Race: Space": pageId: 134636 steam: 1059160 Deep Rest: @@ -42236,35 +41162,31 @@ Deep Rock Galactic: - 1530640 - 1797340 templates: - - '{{Game data/config|Windows|{{p|game}}\FSD\Saved\Config\WindowsNoEditor\GameUserSettings.ini}}' - - '{{Game data/config|Microsoft Store|{{p|game}}\FSD\Saved\Config\WinGDK\*.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\FSD\Saved\SaveGames\*.sav}}' - - >- - {{Game data/saves|Microsoft - Store|{{p|localappdata}}\Packages\CoffeeStainStudios.DeepRockGalactic_496a1srhmar9w\SystemAppData\wgs\[long - alphanumeric sequence folder]\[long alphanumeric sequence folder]\[long alphanumeric sequence file (this file is - actually an unnamed .sav file and can be used with steam as well)]}} + - "{{Game data/config|Windows|{{p|game}}\\FSD\\Saved\\Config\\WindowsNoEditor\\GameUserSettings.ini}}" + - "{{Game data/config|Microsoft Store|{{p|game}}\\FSD\\Saved\\Config\\WinGDK\\*.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\FSD\\Saved\\SaveGames\\*.sav}}" + - "{{Game data/saves|Microsoft Store|{{p|localappdata}}\\Packages\\CoffeeStainStudios.DeepRockGalactic_496a1srhmar9w\\SystemAppData\\wgs\\[long alphanumeric sequence folder]\\[long alphanumeric sequence folder]\\[long alphanumeric sequence file (this file is actually an unnamed .sav file and can be used with steam as well)]}}" Deep Sea Endurance: pageId: 127345 steam: 989270 -'Deep Sea Tycoon: Diver''s Paradise': +"Deep Sea Tycoon: Diver's Paradise": pageId: 141661 steam: 1113380 Deep Sixed: pageId: 58946 steam: 591000 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Deep Sixed\}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Deep Sixed\saves\}}' + - "{{Game data/config|Windows|{{p|appdata}}\\Deep Sixed\\}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Deep Sixed\\saves\\}}" Deep Sky Derelicts: gog: 1629258827 pageId: 68713 steam: 698640 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Snowhound\Deep Sky Derelicts\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Snowhound\Deep Sky Derelicts\}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Snowhound/Deep Sky Derelicts}}' - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/698640/remote/}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Snowhound\\Deep Sky Derelicts\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Snowhound\\Deep Sky Derelicts\\}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Snowhound/Deep Sky Derelicts}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/698640/remote/}}" Deep Sleep Trilogy: pageId: 148475 steam: 1146510 @@ -42290,32 +41212,32 @@ Deep Space Waifu: pageId: 62976 steam: 639790 templates: - - '{{Game data/saves|Windows|{{p|game}}\Deep Space Waifu_Data\WaifuArouse.save}}' -'Deep Space Waifu: Fantasy': + - "{{Game data/saves|Windows|{{p|game}}\\Deep Space Waifu_Data\\WaifuArouse.save}}" +"Deep Space Waifu: Fantasy": pageId: 95290 steam: 859680 templates: - - '{{Game data/saves|Windows|{{p|game}}\Deep Space Waifu Fantasy_Data\WaifuFantasy.save}}' -'Deep Space Waifu: Flat Justice Version': + - "{{Game data/saves|Windows|{{p|game}}\\Deep Space Waifu Fantasy_Data\\WaifuFantasy.save}}" +"Deep Space Waifu: Flat Justice Version": pageId: 78064 steam: 639780 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Hammerfist\Deep Space Waifu: Flat Justice\}}' - - '{{Game data/saves|Windows|{{p|game}}\Deep Space Waifu Flat Justice_Data\WaifuFlatJustice.save}}' -'Deep Space Waifu: Legends': + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Hammerfist\\Deep Space Waifu: Flat Justice\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\Deep Space Waifu Flat Justice_Data\\WaifuFlatJustice.save}}" +"Deep Space Waifu: Legends": pageId: 150629 steam: 1170620 -'Deep Space Waifu: Nekomimi': +"Deep Space Waifu: Nekomimi": pageId: 124266 steam: 868980 templates: - - '{{Game data/saves|Windows|{{p|game}}\Deep Space Waifu Nekomimi_Data\WaifuNekomimi.save}}' -'Deep Space Waifu: World': + - "{{Game data/saves|Windows|{{p|game}}\\Deep Space Waifu Nekomimi_Data\\WaifuNekomimi.save}}" +"Deep Space Waifu: World": pageId: 130376 steam: 872130 templates: - - '{{Game data/saves|Windows|{{p|game}}\Deep Space Waifu World_Data\WaifuWorld.save}}' -'Deep Space: Unknown Universe': + - "{{Game data/saves|Windows|{{p|game}}\\Deep Space Waifu World_Data\\WaifuWorld.save}}" +"Deep Space: Unknown Universe": pageId: 77014 steam: 747090 Deep The Game: @@ -42330,11 +41252,11 @@ Deep under the Sky: - Deep Under the Sky steam: 315650 templates: - - '{{Game data/config|Windows|{{p|appdata}}\com.richColin.DeepUnderTheSky\Local Store\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Preferences/com.richColin.DeepUnderTheSky/}}' - - '{{Game data/saves|Windows|{{p|appdata}}\com.richColin.DeepUnderTheSky\Local Store\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Preferences/com.richColin.DeepUnderTheSky/}}' -'Deep, In the Forest': + - "{{Game data/config|Windows|{{p|appdata}}\\com.richColin.DeepUnderTheSky\\Local Store\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Preferences/com.richColin.DeepUnderTheSky/}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\com.richColin.DeepUnderTheSky\\Local Store\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Preferences/com.richColin.DeepUnderTheSky/}}" +"Deep, In the Forest": pageId: 153071 steam: 1188430 DeepLands: @@ -42344,8 +41266,8 @@ DeepWeb: pageId: 112152 steam: 904780 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\DeepWeb\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\DeepWeb\Saved\SaveGames\*.sav}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\DeepWeb\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\DeepWeb\\Saved\\SaveGames\\*.sav}}" DeeperRed2028-WeAreEscape-: pageId: 155288 steam: 1215120 @@ -42356,7 +41278,7 @@ Deepest Sword: pageId: 169587 steam: 1647160 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\SOFTWARE\Cosmic Adventure Squad\Deepest Sword\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\Cosmic Adventure Squad\\Deepest Sword\\}}" Deepica: pageId: 168626 Deepsea Salvor: @@ -42365,7 +41287,7 @@ Deepsea Salvor: Deepworld: pageId: 48138 steam: 340810 -'Deer Avenger 4: The Rednecks Strike Back': +"Deer Avenger 4: The Rednecks Strike Back": pageId: 57941 Deer Hunt Legends: pageId: 48945 @@ -42373,7 +41295,7 @@ Deer Hunt Legends: Deer Hunter II: pageId: 155316 steam: 1212190 -'Deer Hunter: Reloaded': +"Deer Hunter: Reloaded": pageId: 72371 steam: 361370 Deer Man: @@ -42437,17 +41359,17 @@ Defend Your Life!: pageId: 32639 steam: 357780 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\SOFTWARE\Alda Games s.r.o.\Defend Your Life!}}' - - '{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/Alda Games s.r.o./Defend Your Life!}}' - - '{{Game data/saves|Windows|{{p|hkcu}}\SOFTWARE\Alda Games s.r.o.\Defend Your Life!}}' - - '{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/Alda Games s.r.o./Defend Your Life!/prefs}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\Alda Games s.r.o.\\Defend Your Life!}}" + - "{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/Alda Games s.r.o./Defend Your Life!}}" + - "{{Game data/saves|Windows|{{p|hkcu}}\\SOFTWARE\\Alda Games s.r.o.\\Defend Your Life!}}" + - "{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/Alda Games s.r.o./Defend Your Life!/prefs}}" Defend the Cake: pageId: 67647 steam: 674330 Defend the Highlands: pageId: 45713 steam: 374830 -'Defend the Highlands: World Tour': +"Defend the Highlands: World Tour": pageId: 60325 steam: 527320 Defend the Keep: @@ -42475,23 +41397,19 @@ Defender of the Crown: gog: 1207665703 pageId: 14586 steam: 326590 -'Defender''s Quest II: Mists of Ruin': +"Defender's Quest II: Mists of Ruin": pageId: 147433 -'Defender''s Quest: Valley of the Forgotten': +"Defender's Quest: Valley of the Forgotten": gog: 1207659129 pageId: 8299 steam: 218410 templates: - - '{{Game data/config|Windows|{{p|appdata}}\DefendersQuest\Local Store\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Preferences/DefendersQuest/Local Store/}}' - - >- - {{Game data/config|Linux|{{p|xdgdatahome}}/LevelUpLabs/DefendersQuest/|{{p|xdgdatahome}}/DefendersQuest/Local - Store/}} - - '{{Game data/saves|Windows|{{p|appdata}}\DefendersQuest\Local Store\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Preferences/DefendersQuest/Local Store/}}' - - >- - {{Game data/saves|Linux|{{p|xdgdatahome}}/LevelUpLabs/DefendersQuest/|{{p|xdgdatahome}}/DefendersQuest/Local - Store/}} + - "{{Game data/config|Windows|{{p|appdata}}\\DefendersQuest\\Local Store\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Preferences/DefendersQuest/Local Store/}}" + - "{{Game data/config|Linux|{{p|xdgdatahome}}/LevelUpLabs/DefendersQuest/|{{p|xdgdatahome}}/DefendersQuest/Local Store/}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\DefendersQuest\\Local Store\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Preferences/DefendersQuest/Local Store/}}" + - "{{Game data/saves|Linux|{{p|xdgdatahome}}/LevelUpLabs/DefendersQuest/|{{p|xdgdatahome}}/DefendersQuest/Local Store/}}" Defenders: pageId: 45105 steam: 431000 @@ -42550,13 +41468,13 @@ Defense Grid 2: pageId: 18207 steam: 221540 templates: - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/221540/remote/profile/}}' -'Defense Grid: The Awakening': + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/221540/remote/profile/}}" +"Defense Grid: The Awakening": pageId: 5190 steam: 18500 templates: - - '{{Game data/config|Steam|{{p|game}}\config.ini}}' - - '{{Game data/config|Epic Games Store|{{P|localappdata}}\DefenseGrid\config.ini}}' + - "{{Game data/config|Steam|{{p|game}}\\config.ini}}" + - "{{Game data/config|Epic Games Store|{{P|localappdata}}\\DefenseGrid\\config.ini}}" Defense Task Force: pageId: 81155 steam: 720270 @@ -42564,8 +41482,8 @@ Defense Technica: pageId: 10262 steam: 233110 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\DefenseTechnica\KeyData.conf}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\DefenseTechnica\TECHNICAEN.sav}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\DefenseTechnica\\KeyData.conf}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\DefenseTechnica\\TECHNICAEN.sav}}" Defense Warfare: pageId: 77232 steam: 754230 @@ -42584,7 +41502,7 @@ Defense corp - Earth: Defense of Castle Chilly: pageId: 39063 steam: 523550 -'Defense of Egypt: Cleopatra Mission': +"Defense of Egypt: Cleopatra Mission": pageId: 50823 steam: 534010 Defense of Greece TD: @@ -42594,14 +41512,14 @@ Defense of Roman Britain: pageId: 65995 steam: 657790 templates: - - '{{Game data/saves|Windows|{{P|programdata}}\RomanBritain\}}' + - "{{Game data/saves|Windows|{{P|programdata}}\\RomanBritain\\}}" Defense of the Fantasy Robots: pageId: 113168 steam: 765040 Defense the Farm: pageId: 95447 steam: 866520 -'Defense: Abominations': +"Defense: Abominations": pageId: 104147 steam: 904130 Defentron: @@ -42634,7 +41552,7 @@ Deflector: - 1825340 - 1907190 templates: - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\Arrowfist Games\Deflector\Saves}}' + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\Arrowfist Games\\Deflector\\Saves}}" Defoliation: pageId: 132654 steam: 1033670 @@ -42642,12 +41560,12 @@ Deformers: pageId: 60305 steam: 491770 templates: - - '{{Game data/config|Windows|{{p|game}}\_local\usersettings.json}}' + - "{{Game data/config|Windows|{{p|game}}\\_local\\usersettings.json}}" Defragmented: pageId: 44637 steam: 426170 templates: - - '{{Game data/saves|Windows|{{p|game}}\Defragmented_Data\Resources\datafiles\}}' + - "{{Game data/saves|Windows|{{p|game}}\\Defragmented_Data\\Resources\\datafiles\\}}" Defrain: pageId: 98228 steam: 745270 @@ -42655,7 +41573,7 @@ Defunct: pageId: 37535 steam: 359350 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\FreshlySqueezed\Defunct\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\FreshlySqueezed\\Defunct\\}}" Defuser VR: pageId: 57740 steam: 589180 @@ -42663,8 +41581,8 @@ Defy Gravity Extended: pageId: 5602 steam: 96100 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\Saved Games\Gravity\Gravity_Topher.xml}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\Saved Games\Gravity\Gravity_Topher.xml}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\Saved Games\\Gravity\\Gravity_Topher.xml}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Saved Games\\Gravity\\Gravity_Topher.xml}}" Dega Madness: pageId: 114918 steam: 950750 @@ -42674,7 +41592,7 @@ Degauss: Degeneration: pageId: 104455 steam: 881880 -'Degraman: Act I. Vincent & Cassel': +"Degraman: Act I. Vincent & Cassel": pageId: 157201 steam: 1189680 Degrees: @@ -42693,14 +41611,14 @@ Deiland: pageId: 78832 steam: 760620 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Chibig\Deiland}}' - - '{{Game data/saves|Windows|{{P|hkcu}}\Software\Chibig\Deiland}}' -'Deiland: Pocket Planet': + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Chibig\\Deiland}}" + - "{{Game data/saves|Windows|{{P|hkcu}}\\Software\\Chibig\\Deiland}}" +"Deiland: Pocket Planet": pageId: 172034 steam: 1623700 templates: - - '{{Game data/config|Windows|{{P|userprofile\appdata\locallow}}\Chibig\Deiland\Save\Main}}' - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Chibig\Deiland\Save\Main}}' + - "{{Game data/config|Windows|{{P|userprofile\\appdata\\locallow}}\\Chibig\\Deiland\\Save\\Main}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Chibig\\Deiland\\Save\\Main}}" Deios II // DEIDIA: pageId: 54754 steam: 495760 @@ -42729,34 +41647,29 @@ Deleveled: pageId: 130512 steam: 1045580 templates: - - >- - {{Game data/config|Windows|{{P|userprofile\appdata\locallow}}\The Quantum Astrophysicists - Guild\Deleveled\NotAsImportantButStillImportantInfo.dontLook|{{P|hkcu}}\SOFTWARE\The Quantum Astrophysicists - Guild\Deleveled\}} - - >- - {{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\The Quantum Astrophysicists - Guild\Deleveled\SuperImportantSaveInfo.dontLook}} -Delicious - Emily's Christmas Carol: + - "{{Game data/config|Windows|{{P|userprofile\\appdata\\locallow}}\\The Quantum Astrophysicists Guild\\Deleveled\\NotAsImportantButStillImportantInfo.dontLook|{{P|hkcu}}\\SOFTWARE\\The Quantum Astrophysicists Guild\\Deleveled\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\The Quantum Astrophysicists Guild\\Deleveled\\SuperImportantSaveInfo.dontLook}}" +"Delicious - Emily's Christmas Carol": pageId: 52770 steam: 544600 -Delicious - Emily's Home Sweet Home: +"Delicious - Emily's Home Sweet Home": pageId: 54794 steam: 561000 -Delicious - Emily's Hopes and Fears: +"Delicious - Emily's Hopes and Fears": pageId: 55207 steam: 550400 -Delicious - Emily's Message in a Bottle: +"Delicious - Emily's Message in a Bottle": pageId: 53922 steam: 540780 -Delicious - Emily's Miracle of Life: +"Delicious - Emily's Miracle of Life": pageId: 67141 renamedFrom: - - 'Delicious: Emily''s Miracle of Life' + - "Delicious: Emily's Miracle of Life" steam: 623070 -Delicious - Emily's New Beginning: +"Delicious - Emily's New Beginning": pageId: 53854 steam: 544710 -Delicious - Emily's Road Trip: +"Delicious - Emily's Road Trip": pageId: 135034 steam: 1005130 Delicious - Moms vs Dads: @@ -42765,7 +41678,7 @@ Delicious - Moms vs Dads: Delicious! Pretty Girls Mahjong Solitaire: pageId: 51425 steam: 540610 -Delila's Gift: +"Delila's Gift": pageId: 62326 steam: 538110 Delirium: @@ -42777,15 +41690,15 @@ Delirium (2023): Delirium VR: pageId: 130125 steam: 1046670 -'Delirium: Bad Trip Edition': +"Delirium: Bad Trip Edition": pageId: 82700 steam: 798570 Deliver Us Mars: pageId: 178186 steam: 1345890 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\DeliverUsMars\Saved\Config\WindowsNoEditor}}' - - '{{Game data/saves|Windows|{{P|game}}\DeliverUsMars\Saved}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\DeliverUsMars\\Saved\\Config\\WindowsNoEditor}}" + - "{{Game data/saves|Windows|{{P|game}}\\DeliverUsMars\\Saved}}" Deliver Us the Moon: gog: 1395742506 pageId: 108640 @@ -42793,14 +41706,10 @@ Deliver Us the Moon: - Deliver Us The Moon steam: 428660 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\MoonMan\Saved\Config\WindowsNoEditor}}' - - >- - {{Game data/config|Microsoft - Store|{{P|localappdata}}\Packages\WiredProductions.DeliverUsTheMoonWin10_hxzk6evwjr6sy\LocalCache\Local\MoonMan\Saved\Config\WindowsNoEditor}} - - '{{Game data/saves|Windows|{{P|game}}\MoonMan\Saved\}}' - - >- - {{Game data/saves|Microsoft - Store|{{P|localappdata}}\Packages\WiredProductions.DeliverUsTheMoonWin10_hxzk6evwjr6sy\LocalCache\Local\MoonMan\Saved}} + - "{{Game data/config|Windows|{{P|localappdata}}\\MoonMan\\Saved\\Config\\WindowsNoEditor}}" + - "{{Game data/config|Microsoft Store|{{P|localappdata}}\\Packages\\WiredProductions.DeliverUsTheMoonWin10_hxzk6evwjr6sy\\LocalCache\\Local\\MoonMan\\Saved\\Config\\WindowsNoEditor}}" + - "{{Game data/saves|Windows|{{P|game}}\\MoonMan\\Saved\\}}" + - "{{Game data/saves|Microsoft Store|{{P|localappdata}}\\Packages\\WiredProductions.DeliverUsTheMoonWin10_hxzk6evwjr6sy\\LocalCache\\Local\\MoonMan\\Saved}}" Deliverace: pageId: 91470 steam: 587540 @@ -42816,17 +41725,17 @@ Delivery: Delivery Man Simulator: pageId: 92125 steam: 840170 -'Delores: A Thimbleweed Park Mini-Adventure': +"Delores: A Thimbleweed Park Mini-Adventure": gog: 1250071528 pageId: 160219 steam: 1305720 templates: - - '{{Game data/config|Windows|{{P|appdata}}\Terrible Toybox\Delores\Prefs.json}}' - - '{{Game data/config|OS X|{{P|osxhome}}/Library/Application Support/Terrible Toybox/Delores/prefs.json}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/Terrible Toybox/Delores/Prefs.json}}' - - '{{Game data/saves|Windows|{{P|appdata}}\Terrible Toybox\Delores\Save.dat}}' - - '{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/Terrible Toybox/Delores/Save.dat}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/Terrible Toybox/Delores/Save.dat}}' + - "{{Game data/config|Windows|{{P|appdata}}\\Terrible Toybox\\Delores\\Prefs.json}}" + - "{{Game data/config|OS X|{{P|osxhome}}/Library/Application Support/Terrible Toybox/Delores/prefs.json}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/Terrible Toybox/Delores/Prefs.json}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\Terrible Toybox\\Delores\\Save.dat}}" + - "{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/Terrible Toybox/Delores/Save.dat}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/Terrible Toybox/Delores/Save.dat}}" Delphinia Chronicle: pageId: 63458 steam: 613410 @@ -42841,49 +41750,49 @@ Delta Force: pageId: 17760 steam: 32620 templates: - - '{{Game data/config|Windows|{{p|game}}\df.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\player#no.ply}}' + - "{{Game data/config|Windows|{{p|game}}\\df.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\player#no.ply}}" Delta Force 2: gog: 2014697223 pageId: 17761 steam: 32630 templates: - - '{{Game data/config|Windows|{{p|game}}\df2.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\df2plyrs.sav}}' -'Delta Force: Black Hawk Down': + - "{{Game data/config|Windows|{{p|game}}\\df2.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\df2plyrs.sav}}" +"Delta Force: Black Hawk Down": gog: 1502840468 pageId: 8395 steam: 32670 steamSide: - 32680 templates: - - '{{Game data/config|Windows|{{p|game}}\dfv.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\dfvplr.sav}}' -'Delta Force: Land Warrior': + - "{{Game data/config|Windows|{{p|game}}\\dfv.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\dfvplr.sav}}" +"Delta Force: Land Warrior": gog: 1949242282 pageId: 17765 steam: 32640 templates: - - '{{Game data/config|Windows|{{p|game}}\dflw.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\dflwplyr.sav}}' -'Delta Force: Task Force Dagger': + - "{{Game data/config|Windows|{{p|game}}\\dflw.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\dflwplyr.sav}}" +"Delta Force: Task Force Dagger": gog: 1491481233 pageId: 17766 steam: 32650 templates: - - '{{Game data/config|Windows|{{p|game}}\game.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\plyr.sav}}' -'Delta Force: Xtreme': + - "{{Game data/config|Windows|{{p|game}}\\game.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\plyr.sav}}" +"Delta Force: Xtreme": gog: 1160509725 pageId: 41284 steam: 32660 templates: - - '{{Game data/config|Windows|{{P|game}}\game.cfg\}}' -'Delta Force: Xtreme 2': + - "{{Game data/config|Windows|{{P|game}}\\game.cfg\\}}" +"Delta Force: Xtreme 2": pageId: 41283 steam: 32610 templates: - - '{{Game data/config|Windows|{{P|game}}\game.cfg}}' + - "{{Game data/config|Windows|{{P|game}}\\game.cfg}}" Delta G: pageId: 126454 steam: 872220 @@ -42903,10 +41812,10 @@ Deltarune: pageId: 120545 steam: 1671210 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\DELTARUNE\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/com.tobyfox.deltarune/}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\DELTARUNE\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/com.tobyfox.deltarune/}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\DELTARUNE\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/com.tobyfox.deltarune/}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\DELTARUNE\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/com.tobyfox.deltarune/}}" Deltazeal: pageId: 46028 steam: 379520 @@ -42916,7 +41825,7 @@ Delude - Succubus Prison: Deluded Mind: pageId: 90394 steam: 786910 -'Deluge: Threnody of Crashing Waves': +"Deluge: Threnody of Crashing Waves": pageId: 179351 steam: 1745690 Delusion: @@ -42925,11 +41834,11 @@ Delusion: Deluxe Ski Jump 2: pageId: 81326 templates: - - '{{Game data/config|DOS|{{p|game}}\DSJ2.CFG|{{p|game}}\SETLANG.CFG}}' + - "{{Game data/config|DOS|{{p|game}}\\DSJ2.CFG|{{p|game}}\\SETLANG.CFG}}" Deluxe Ski Jump 3: pageId: 157702 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Mediamond\Deluxe Ski Jump 3}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Mediamond\\Deluxe Ski Jump 3}}" Delve: pageId: 95323 steam: 861580 @@ -42940,12 +41849,12 @@ Delver: pageId: 10130 steam: 249630 templates: - - '{{Game data/config|Windows|{{p|game}}\save\}}' - - '{{Game data/config|OS X|{{p|game}}\save\}}' - - '{{Game data/config|Linux|{{p|game}}\save\}}' - - '{{Game data/saves|Windows|{{p|game}}\save\}}' - - '{{Game data/saves|OS X|{{p|game}}\save\}}' - - '{{Game data/saves|Linux|{{p|game}}\save\}}' + - "{{Game data/config|Windows|{{p|game}}\\save\\}}" + - "{{Game data/config|OS X|{{p|game}}\\save\\}}" + - "{{Game data/config|Linux|{{p|game}}\\save\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\save\\}}" + - "{{Game data/saves|OS X|{{p|game}}\\save\\}}" + - "{{Game data/saves|Linux|{{p|game}}\\save\\}}" Dement: pageId: 141086 steam: 1022990 @@ -42959,12 +41868,12 @@ Dementium II HD: pageId: 13524 steam: 217100 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Memetic Games\DII}}' -'Demeo: PC Edition': + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Memetic Games\\DII}}" +"Demeo: PC Edition": pageId: 177919 steam: 1837750 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Resolution Games\Demeo PC Edition\}}' + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Resolution Games\\Demeo PC Edition\\}}" Demesne: pageId: 44165 steam: 333100 @@ -42973,21 +41882,21 @@ Demetrios - The Big Cynical Adventure: pageId: 37895 steam: 451570 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Demetrios\saves\config.ini}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Demetrios\saves\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Demetrios\\saves\\config.ini}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Demetrios\\saves\\}}" Demigod: pageId: 40849 steam: 202710 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Gas Powered Games\Demigod\Game.prefs}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Gas Powered Games\Demigod\savegames}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Gas Powered Games\\Demigod\\Game.prefs}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Gas Powered Games\\Demigod\\savegames}}" Demigods: pageId: 46064 steam: 409130 Demise of Nations: pageId: 48150 steam: 338810 -'Demise: Rise of the Ku''tan': +"Demise: Rise of the Ku'tan": pageId: 183322 Democracy: pageId: 91740 @@ -42995,35 +41904,33 @@ Democracy 2: pageId: 10304 steam: 218040 templates: - - '{{Game data/config|Windows|{{p|game}}\data}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\democracy2\savegames\}}' + - "{{Game data/config|Windows|{{p|game}}\\data}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\democracy2\\savegames\\}}" Democracy 3: gog: 1207659953 pageId: 10283 steam: 245470 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\democracy3\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/democracy3/}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/democracy3/}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\democracy3\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/democracy3/}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/democracy3/}}' -'Democracy 3: Africa': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\democracy3\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/democracy3/}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/democracy3/}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\democracy3\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/democracy3/}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/democracy3/}}" +"Democracy 3: Africa": gog: 1459868439 pageId: 32305 steam: 427470 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\democracy3africa\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\democracy3africa\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\democracy3africa\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\democracy3africa\\}}" Democracy 4: gog: 2024596162 pageId: 163993 steam: 1410710 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\documents}}\My - Games\democracy4\prefs.ini|{{p|userprofile\documents}}\My Games\democracy4\config.txt}} - - '{{Game data/saves|Windows|{{p|userprofile\documents}}\My Games\democracy4\savegames}}' + - "{{Game data/config|Windows|{{p|userprofile\\documents}}\\My Games\\democracy4\\prefs.ini|{{p|userprofile\\documents}}\\My Games\\democracy4\\config.txt}}" + - "{{Game data/saves|Windows|{{p|userprofile\\documents}}\\My Games\\democracy4\\savegames}}" Demolish & Build 2017: pageId: 39137 steam: 470740 @@ -43040,7 +41947,7 @@ Demolition Company: pageId: 40933 steam: 65270 templates: - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\DemolitionCompany\}}' + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\DemolitionCompany\\}}" Demolition Engineer: pageId: 93029 steam: 844300 @@ -43053,8 +41960,8 @@ Demolition Master 3D: Demolition Racer: pageId: 101761 templates: - - '{{Game data/config|Windows|{{p|game}}\players\}}' - - '{{Game data/saves|Windows|{{p|game}}\players\|{{p|game}}\DR High scores|{{p|game}}\Replay.*}}' + - "{{Game data/config|Windows|{{p|game}}\\players\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\players\\|{{p|game}}\\DR High scores|{{p|game}}\\Replay.*}}" Demon Blade VR: pageId: 71849 steam: 603340 @@ -43062,8 +41969,8 @@ Demon Gaze Extra: pageId: 176965 steam: 1732340 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Clouded Leopard Entertainment Inc.\DEMON GAZE EXTRA\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\Saved Games\DEMON GAZE EXTRA\Steam\{{p|uid}}\*.SAV}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Clouded Leopard Entertainment Inc.\\DEMON GAZE EXTRA\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Saved Games\\DEMON GAZE EXTRA\\Steam\\{{p|uid}}\\*.SAV}}" Demon Grade VR: pageId: 74822 steam: 574410 @@ -43076,30 +41983,30 @@ Demon Horde Master: Demon Hunter: pageId: 50855 steam: 535530 -'Demon Hunter 2: New Chapter': +"Demon Hunter 2: New Chapter": pageId: 42195 steam: 465720 -'Demon Hunter 3: Revelation': +"Demon Hunter 3: Revelation": pageId: 53932 steam: 527420 -'Demon Hunter 4: Riddles of Light': +"Demon Hunter 4: Riddles of Light": pageId: 87003 steam: 762520 -'Demon Hunter 5: Ascendance': +"Demon Hunter 5: Ascendance": pageId: 131645 steam: 1020270 -'Demon Hunter: Chronicles from Beyond': +"Demon Hunter: Chronicles from Beyond": pageId: 49193 steam: 330990 -'Demon King Domination: Deluxe Edition': +"Demon King Domination: Deluxe Edition": pageId: 146044 steam: 921530 templates: - - '{{Game data/saves|Linux|{{p|linuxhome}}/.renpy/DKD_Save/}}' + - "{{Game data/saves|Linux|{{p|linuxhome}}/.renpy/DKD_Save/}}" Demon Lord: pageId: 58993 steam: 578920 -'Demon Mark: A Russian Saga': +"Demon Mark: A Russian Saga": pageId: 62348 steam: 635830 Demon Peak: @@ -43117,14 +42024,14 @@ Demon Robot Runner: Demon Slayer -Kimetsu no Yaiba- The Hinokami Chronicles: pageId: 166446 renamedFrom: - - 'Demon Slayer: Kimetsu no Yaiba – Hinokami Kepputan' + - "Demon Slayer: Kimetsu no Yaiba – Hinokami Kepputan" - Demon Slayer -Kimetsu no Yaiba- The Hinokami Chronicles - - 'Demon Slayer: Kimetsu no Yaiba – Hinokami Kepputan' + - "Demon Slayer: Kimetsu no Yaiba – Hinokami Kepputan" steam: 1490890 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\APK\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\APK\Saved\SaveGames\}}' -'Demon Sword: Incubus': + - "{{Game data/config|Windows|{{P|localappdata}}\\APK\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\APK\\Saved\\SaveGames\\}}" +"Demon Sword: Incubus": gog: 1659148266 pageId: 179335 steam: 1803960 @@ -43138,49 +42045,49 @@ Demon Turf: steamSide: - 1451650 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Fabraz\Demon Turf}}' - - '{{Game data/saves|Windows|{{p|steam}}\userdata\{{p|uid}}\1325900\remote\}}' -'Demon Turf: Neon Splash': + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Fabraz\\Demon Turf}}" + - "{{Game data/saves|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\1325900\\remote\\}}" +"Demon Turf: Neon Splash": gog: 1375346087 pageId: 177760 steam: 1747890 Demon and Fairy: pageId: 75843 steam: 719470 -Demon's Crystals: +"Demon's Crystals": pageId: 43454 steam: 454610 -Demon's Rise - Lords of Chaos: +"Demon's Rise - Lords of Chaos": pageId: 92195 steam: 844420 -Demon's Rise - War for the Deep: +"Demon's Rise - War for the Deep": pageId: 92755 steam: 843900 -Demon's Tilt: +"Demon's Tilt": pageId: 105085 steam: 422510 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\FLARB LLC\DEMON''S TILT\}}' - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\FLARB LLC\DEMON''S TILT\saveData.txt}}' -Demon's Winter: + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\FLARB LLC\\DEMON'S TILT\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\FLARB LLC\\DEMON'S TILT\\saveData.txt}}" +"Demon's Winter": gog: 1505505224 pageId: 173826 -'Demon: Hell Keeper': +"Demon: Hell Keeper": pageId: 144291 steam: 1117110 DemonCrawl: pageId: 150303 steam: 1141220 templates: - - '{{Game data/config|Windows|{{p|LocalAppData}}\DemonCrawl}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\DemonCrawl}}' + - "{{Game data/config|Windows|{{p|LocalAppData}}\\DemonCrawl}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\DemonCrawl}}" Demonheart: pageId: 58838 steam: 578900 -'Demonheart: Hunters': +"Demonheart: Hunters": pageId: 122566 steam: 897930 -'Demoniaca: Everlasting Night': +"Demoniaca: Everlasting Night": pageId: 144923 steam: 1107370 DemonicGuestVR: @@ -43191,19 +42098,17 @@ Demonicon: pageId: 11620 steam: 215630 templates: - - >- - {{Game data/config|Windows|{{p|appdata}}\Kalypso Media\demonicon\configs\|{{p|appdata}}\Kalypso - Media\demonicon\profile.cfg}} - - '{{Game data/saves|Windows|{{p|appdata}}\Kalypso Media\demonicon\saves\}}' - - '{{Game data/saves|Steam|{{p|Steam}}\userdata\{{p|uid}}\215630\remote}}' + - "{{Game data/config|Windows|{{p|appdata}}\\Kalypso Media\\demonicon\\configs\\|{{p|appdata}}\\Kalypso Media\\demonicon\\profile.cfg}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Kalypso Media\\demonicon\\saves\\}}" + - "{{Game data/saves|Steam|{{p|Steam}}\\userdata\\{{p|uid}}\\215630\\remote}}" Demonizer: pageId: 172214 steam: 1091390 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Demonizer}}' - - '{{Game data/config|Linux|{{p|xdgdatahome}}/Demonizer ''''or'''' {{p|linuxhome}}/.local/share/Demonizer}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Demonizer}}' - - '{{Game data/saves|Linux|{{p|xdgdatahome}}/Demonizer ''''or'''' {{p|linuxhome}}/.local/share/Demonizer}}' + - "{{Game data/config|Windows|{{p|appdata}}\\Demonizer}}" + - "{{Game data/config|Linux|{{p|xdgdatahome}}/Demonizer ''or'' {{p|linuxhome}}/.local/share/Demonizer}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Demonizer}}" + - "{{Game data/saves|Linux|{{p|xdgdatahome}}/Demonizer ''or'' {{p|linuxhome}}/.local/share/Demonizer}}" Demonlisher: pageId: 49643 steam: 321610 @@ -43232,17 +42137,14 @@ DemonsTier: Den vänstra handens stig: pageId: 56948 steam: 491370 -Denki Gaka's Bombshell: +"Denki Gaka's Bombshell": pageId: 69092 steam: 688170 Densha de Go! Final: pageId: 184145 templates: - - >- - {{Game - data/config|Windows|{{File|{{P|appdata}}\TAITO\perfect\BISLPM-65590fin\|folder}}|{{File|{{p|hkcu}}\Software\TAITO\電車でGO! - FINAL\|folder}}}} - - '{{Game data/saves|Windows|{{File|{{P|appdata}}\TAITO\perfect\BISLPM-65590fin\|folder}}}}' + - "{{Game data/config|Windows|{{File|{{P|appdata}}\\TAITO\\perfect\\BISLPM-65590fin\\|folder}}|{{File|{{p|hkcu}}\\Software\\TAITO\\電車でGO! FINAL\\|folder}}}}" + - "{{Game data/saves|Windows|{{File|{{P|appdata}}\\TAITO\\perfect\\BISLPM-65590fin\\|folder}}}}" Deorum Online: pageId: 145138 steam: 734480 @@ -43255,7 +42157,7 @@ Departure Dash: Depixtion: pageId: 138896 steam: 1092780 -'Depixtion: Halloween': +"Depixtion: Halloween": pageId: 145007 steam: 1132510 Deplau: @@ -43265,7 +42167,7 @@ Deployment: pageId: 79902 steam: 755980 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\SOFTWARE\Whale Rock Games\Deployment\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\Whale Rock Games\\Deployment\\}}" Deponia: gog: 1207659103 pageId: 7674 @@ -43274,54 +42176,44 @@ Deponia: - 557470 - 829510 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Daedalic Entertainment\Deponia\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Daedalic Entertainment/Deponia/}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/Daedalic Entertainment/Deponia/}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Daedalic Entertainment\Deponia\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Daedalic Entertainment/Deponia/}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/Daedalic Entertainment/Deponia/}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Daedalic Entertainment\\Deponia\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Daedalic Entertainment/Deponia/}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/Daedalic Entertainment/Deponia/}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Daedalic Entertainment\\Deponia\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Daedalic Entertainment/Deponia/}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/Daedalic Entertainment/Deponia/}}" Deponia Doomsday: gog: 1439969610 pageId: 31577 steam: 421050 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Daedalic Entertainment GmbH\Deponia 4\config.ini}}' - - >- - {{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Daedalic Entertainment GmbH/Deponia - 4/config.ini}} - - '{{Game data/config|Linux|{{P|xdgdatahome}}/Daedalic Entertainment GmbH/Deponia 4/config.ini}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Daedalic Entertainment GmbH\Deponia 4\Savegames\}}' - - >- - {{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Daedalic Entertainment GmbH/Deponia - 4/Savegames/}} - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/Daedalic Entertainment GmbH/Deponia 4/Savegames/}}' -'Deponia: The Complete Journey': + - "{{Game data/config|Windows|{{p|localappdata}}\\Daedalic Entertainment GmbH\\Deponia 4\\config.ini}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Daedalic Entertainment GmbH/Deponia 4/config.ini}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/Daedalic Entertainment GmbH/Deponia 4/config.ini}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Daedalic Entertainment GmbH\\Deponia 4\\Savegames\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Daedalic Entertainment GmbH/Deponia 4/Savegames/}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/Daedalic Entertainment GmbH/Deponia 4/Savegames/}}" +"Deponia: The Complete Journey": pageId: 18297 steam: 292910 steamSide: - 567110 templates: - - >- - {{Game data/config|Windows|{{p|localappdata}}\Daedalic Entertainment GmbH\Deponia The Complete - Journey\config.ini}} - - >- - {{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Daedalic Entertainment GmbH/Deponia The Complete - Journey/config.ini}} - - '{{Game data/config|Linux|{{P|xdgdatahome}}/Daedalic Entertainment GmbH/Deponia The Complete Journey/config.ini}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Daedalic Entertainment GmbH\Deponia The Complete Journey\Savegames\}}' - - >- - {{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Daedalic Entertainment GmbH/Deponia The Complete - Journey/Savegames/}} - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/Daedalic Entertainment GmbH/Deponia The Complete Journey/Savegames/}}' -'Deponia: The Puzzle': + - "{{Game data/config|Windows|{{p|localappdata}}\\Daedalic Entertainment GmbH\\Deponia The Complete Journey\\config.ini}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Daedalic Entertainment GmbH/Deponia The Complete Journey/config.ini}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/Daedalic Entertainment GmbH/Deponia The Complete Journey/config.ini}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Daedalic Entertainment GmbH\\Deponia The Complete Journey\\Savegames\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Daedalic Entertainment GmbH/Deponia The Complete Journey/Savegames/}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/Daedalic Entertainment GmbH/Deponia The Complete Journey/Savegames/}}" +"Deponia: The Puzzle": pageId: 134091 Depopulation: pageId: 75626 steam: 718210 -'Deported 2: Build That Wall': +"Deported 2: Build That Wall": pageId: 123357 steam: 968290 -'Deported: Drain the Swamp': +"Deported: Drain the Swamp": pageId: 120972 steam: 965830 DepowerBall: @@ -43330,21 +42222,19 @@ DepowerBall: Deppart Prototype: pageId: 189911 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\N4bA\DEPPART prototype}}' - - '{{Game data/saves|Windows|{{P|hkcu}}\Software\N4bA\DEPPART prototype}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\N4bA\\DEPPART prototype}}" + - "{{Game data/saves|Windows|{{P|hkcu}}\\Software\\N4bA\\DEPPART prototype}}" Depraved: pageId: 88214 steam: 762650 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Evil Bite\Depraved\SaveGames}}' + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Evil Bite\\Depraved\\SaveGames}}" Depraved Awakening: pageId: 145856 steam: 1137410 templates: - - >- - {{Game - data/config|Windows|{{p|game}}\game\saves\persistent|{{p|appdata}}\RenPy\DepravedAwakening-1501333194\persistent}} - - '{{Game data/saves|Windows|{{p|game}}\game\saves|{{p|appdata}}\RenPy\DepravedAwakening-1501333194}}' + - "{{Game data/config|Windows|{{p|game}}\\game\\saves\\persistent|{{p|appdata}}\\RenPy\\DepravedAwakening-1501333194\\persistent}}" + - "{{Game data/saves|Windows|{{p|game}}\\game\\saves|{{p|appdata}}\\RenPy\\DepravedAwakening-1501333194}}" Depression: pageId: 53441 steam: 551740 @@ -43358,12 +42248,10 @@ Depth: pageId: 24124 steam: 274940 templates: - - >- - {{Game data/config|Windows|{{P|userprofile\Documents}}\My - Games\Depth\DepthGame\Config\|{{P|userprofile\Documents}}\My Games\Depth\DepthGame\Profile\Video.settings}} + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\My Games\\Depth\\DepthGame\\Config\\|{{P|userprofile\\Documents}}\\My Games\\Depth\\DepthGame\\Profile\\Video.settings}}" Depth Dwellers: pageId: 94989 -'Depth Hunter 2: Deep Dive': +"Depth Hunter 2: Deep Dive": pageId: 49739 steam: 248530 Depth Siege Atlantis: @@ -43377,19 +42265,17 @@ Depth of Extinction: pageId: 68202 steam: 636320 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\HOF Studios\Depth of Extinction\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\HOF Studios\Depth of Extinction\LocalState\}}' - - |- - {{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/HOF Studios/Depth of Extinction/ - }} - - '{{Game data/saves|Linux|{home}/unity3d/HOF Studios/Depth of Extinction/}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\HOF Studios\\Depth of Extinction\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\HOF Studios\\Depth of Extinction\\LocalState\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/HOF Studios/Depth of Extinction/\n}}" + - "{{Game data/saves|Linux|{home}/unity3d/HOF Studios/Depth of Extinction/}}" DepthMera: pageId: 67804 steam: 660110 Depths of Dread: pageId: 42422 steam: 498550 -'Depths of Fear: Knossos': +"Depths of Fear: Knossos": pageId: 50375 steam: 252570 Depths of Limbo: @@ -43403,8 +42289,8 @@ Depths of Peril: pageId: 9143 steam: 23600 templates: - - '{{Game data/config|Windows|{{p|game}}\User\user.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\User\chars\}}' + - "{{Game data/config|Windows|{{p|game}}\\User\\user.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\User\\chars\\}}" Depths of Sanity: pageId: 109020 steam: 848080 @@ -43424,14 +42310,14 @@ Derail Valley: pageId: 57697 steam: 588030 templates: - - '{{Game data/saves|Windows|{{p|game}}\DerailValley_Data\SaveGameData}}' + - "{{Game data/saves|Windows|{{p|game}}\\DerailValley_Data\\SaveGameData}}" Derange: pageId: 156937 steam: 1221230 Deranged Rabbits: pageId: 41970 steam: 448520 -'Derby: Extreme Racing': +"Derby: Extreme Racing": pageId: 149736 steam: 1137230 Dere Evil .exe: @@ -43458,7 +42344,7 @@ Derpy Dinos: Derpy pirates!: pageId: 148463 steam: 783850 -'Derrek Quest V: Regression': +"Derrek Quest V: Regression": pageId: 87035 steam: 805450 Derrek Quest VII: @@ -43471,8 +42357,8 @@ Descenders: pageId: 66842 steam: 681280 templates: - - '{{Game data/config|Windows|HKEY_USERS\"user random mumber"\SOFTWARE\RageSquid\Descenders}}' - - '{{Game data/saves|Windows|HKEY_USERS\"user random mumber"\SOFTWARE\RageSquid\Descenders}}' + - "{{Game data/config|Windows|HKEY_USERS\\\"user random mumber\"\\SOFTWARE\\RageSquid\\Descenders}}" + - "{{Game data/saves|Windows|HKEY_USERS\\\"user random mumber\"\\SOFTWARE\\RageSquid\\Descenders}}" Descending: pageId: 94271 steam: 600670 @@ -43481,10 +42367,10 @@ Descent: pageId: 3516 steam: 273570 templates: - - '{{Game data/config|DOS|{{p|game}}\}}' - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/saves|DOS|{{p|game}}\}}' - - '{{Game data/saves|Windows|{{p|game}}\}}' + - "{{Game data/config|DOS|{{p|game}}\\}}" + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|DOS|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\}}" Descent (upcoming): gog: 1457982832 pageId: 29690 @@ -43497,37 +42383,37 @@ Descent 3: pageId: 13825 steam: 273590 templates: - - '{{Game data/config|Windows|{{p|hklm}}\SOFTWARE\{{p|wow64}}\Outrage\Descent3\}}' - - '{{Game data/saves|Windows|{{p|game}}\savegame\}}' + - "{{Game data/config|Windows|{{p|hklm}}\\SOFTWARE\\{{p|wow64}}\\Outrage\\Descent3\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\savegame\\}}" Descent II: gog: 1207663093 pageId: 13822 steam: 273580 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/saves|Windows|{{p|game}}\}}' + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\}}" Descent of Man: pageId: 142109 steam: 970450 Descent to Undermountain: pageId: 61898 templates: - - '{{Game data/config|DOS|{{p|game}}\DTU.CFG|{{p|game}}\KCONFIG.DAT}}' - - '{{Game data/saves|DOS|{{p|game}}\SG*.SG|{{p|game}}\SAVE\}}' -'Descent: FreeSpace - The Great War': + - "{{Game data/config|DOS|{{p|game}}\\DTU.CFG|{{p|game}}\\KCONFIG.DAT}}" + - "{{Game data/saves|DOS|{{p|game}}\\SG*.SG|{{p|game}}\\SAVE\\}}" +"Descent: FreeSpace - The Great War": gog: 4 pageId: 13315 steam: 273600 steamSide: - 41610 templates: - - '{{Game data/config|Windows|{{p|game}}\Data}}' - - '{{Game data/saves|Windows|{{p|game}}\Players\Single}}' -'Descent: Road to Legend': + - "{{Game data/config|Windows|{{p|game}}\\Data}}" + - "{{Game data/saves|Windows|{{p|game}}\\Players\\Single}}" +"Descent: Road to Legend": pageId: 42776 steam: 477200 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\com.fantasyflightgames\Road To Legend\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\com.fantasyflightgames\\Road To Legend\\}}" Desecration of Wings: pageId: 82145 steam: 793450 @@ -43566,7 +42452,7 @@ Desert Law: Desert Rats Vs. Afrika Korps: pageId: 123016 templates: - - '{{Game data/saves|Windows|{{p|game}}\save}}' + - "{{Game data/saves|Windows|{{p|game}}\\save}}" Desert Rescue: pageId: 109998 steam: 919850 @@ -43587,7 +42473,7 @@ Desert Thunder: pageId: 50552 steam: 283330 templates: - - '{{Game data/config|Windows|{{p|game}}/System/*.ini}}' + - "{{Game data/config|Windows|{{p|game}}/System/*.ini}}" Desert coachman: pageId: 148579 steam: 1167090 @@ -43612,7 +42498,7 @@ DesertLand 2115: DesertShootout: pageId: 87073 steam: 802180 -'Deserted: The Story of Peter': +"Deserted: The Story of Peter": pageId: 38745 steam: 503320 Deserter Simulator: @@ -43624,7 +42510,7 @@ Deserving Life: Design Hero: pageId: 108748 steam: 697880 -'Design It, Drive It: Speedboats': +"Design It, Drive It: Speedboats": pageId: 42089 steam: 501090 Desire Den: @@ -43652,10 +42538,8 @@ Desktop Dungeons Rewind: - 2393121 - 2393122 templates: - - >- - {{Game data/saves|Windows|{{p|game}}\Desktop Dungeons Rewind_Data\Saves\{{p|uid}}\*.sav|{{p|game}}\Desktop - Dungeons Rewind_Data\Saves\{{p|uid}}\*.run}} -'Desktop Dynasties: Pro Football': + - "{{Game data/saves|Windows|{{p|game}}\\Desktop Dungeons Rewind_Data\\Saves\\{{p|uid}}\\*.sav|{{p|game}}\\Desktop Dungeons Rewind_Data\\Saves\\{{p|uid}}\\*.run}}" +"Desktop Dynasties: Pro Football": pageId: 120778 steam: 909630 Desktop Girls: @@ -43674,18 +42558,18 @@ Desolate: pageId: 66275 steam: 671510 templates: - - '{{Game data/config|Steam|{{P|localappdata}}\Desolate\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Steam|{{P|localappdata}}\Desolate\}}' -'Desolate City: The Bloody Dawn Enhanced Edition': + - "{{Game data/config|Steam|{{P|localappdata}}\\Desolate\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Steam|{{P|localappdata}}\\Desolate\\}}" +"Desolate City: The Bloody Dawn Enhanced Edition": pageId: 125525 steam: 965410 Desolate Sands: pageId: 112360 steam: 930300 -'Desolate Wastes: Vendor Chronicles': +"Desolate Wastes: Vendor Chronicles": pageId: 55283 steam: 563120 -'Desolate: Clone Catastrophe': +"Desolate: Clone Catastrophe": pageId: 90134 steam: 816570 Desolation: @@ -43694,7 +42578,7 @@ Desolation: Desolatium: pageId: 148860 renamedFrom: - - 'DESOLATIUM - CHAPTER I: SANATORIUM' + - "DESOLATIUM - CHAPTER I: SANATORIUM" steam: 1130390 Desolus: pageId: 126464 @@ -43702,72 +42586,66 @@ Desolus: Desordre: pageId: 188369 renamedFrom: - - 'DESORDRE : A Puzzle Game Adventure' + - "DESORDRE : A Puzzle Game Adventure" steam: 2097490 Despair: pageId: 47923 steam: 368990 -'Desperados 2: Cooper''s Revenge': +"Desperados 2: Cooper's Revenge": gog: 1207658985 pageId: 19593 steam: 9710 templates: - - '{{Game data/config|Windows|{{P|game}}\data\configuration\game\}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\Cooper''s Revenge\Savegame\}}' + - "{{Game data/config|Windows|{{P|game}}\\data\\configuration\\game\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\Cooper's Revenge\\Savegame\\}}" Desperados III: gog: 1914500649 pageId: 107482 steam: 610370 templates: - - >- - {{Game data/config|Windows|{{P|hkcu}}\Software\Mimimi\Desperados III\|{{p|localappdata}}\Desperados - III\{{P|uid}}\}} - - '{{Game data/saves|Windows|{{p|localappdata}}\Desperados III\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Desperados III/}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/Desperados III/}}' -'Desperados: Wanted Dead or Alive': + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Mimimi\\Desperados III\\|{{p|localappdata}}\\Desperados III\\{{P|uid}}\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Desperados III\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Desperados III/}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/Desperados III/}}" +"Desperados: Wanted Dead or Alive": gog: 1207658926 pageId: 13157 steam: 260730 templates: - - '{{Game data/config|Windows|{{P|game}}\Game\Data\Configuration\}}' - - '{{Game data/saves|Windows|{{P|game}}\Game\Data\Savegame\}}' - - '{{Game data/saves|Steam|{{P|appdata}}\THQNordic\Desperados\}}' + - "{{Game data/config|Windows|{{P|game}}\\Game\\Data\\Configuration\\}}" + - "{{Game data/saves|Windows|{{P|game}}\\Game\\Data\\Savegame\\}}" + - "{{Game data/saves|Steam|{{P|appdata}}\\THQNordic\\Desperados\\}}" Desperate Game: pageId: 82649 steam: 682500 Desperate Times: pageId: 50801 steam: 513920 -'Despicable Me: Minion Rush': +"Despicable Me: Minion Rush": pageId: 171900 Despoiler: pageId: 82820 steam: 635050 -Despot's Game: +"Despot's Game": gog: 1807651773 pageId: 171966 steam: 1227280 steamSide: - 1515100 templates: - - >- - {{Game data/config|Linux|{{p|xdgconfighome}}/unity3d/Konfa Games/Despot's - Game/prefs|{{p|xdgconfighome}}/unity3d/Konfa Games/Despot's Game/{{P|uid}}/settings.json}} - - >- - {{Game data/saves|Microsoft - Store|{{P|LOCALAPPDATA}}\Packages\tinyBuildGames.DespotsGame_3sz1pp2ynv2xe\SystemAppData\wgs}} - - '{{Game data/saves|Linux|{{p|xdgconfighome}}/unity3d/Konfa Games/Despot''s Game/{{P|uid}}/profile.bin}}' + - "{{Game data/config|Linux|{{p|xdgconfighome}}/unity3d/Konfa Games/Despot's Game/prefs|{{p|xdgconfighome}}/unity3d/Konfa Games/Despot's Game/{{P|uid}}/settings.json}}" + - "{{Game data/saves|Microsoft Store|{{P|LOCALAPPDATA}}\\Packages\\tinyBuildGames.DespotsGame_3sz1pp2ynv2xe\\SystemAppData\\wgs}}" + - "{{Game data/saves|Linux|{{p|xdgconfighome}}/unity3d/Konfa Games/Despot's Game/{{P|uid}}/profile.bin}}" Despotism 3k: pageId: 75153 steam: 699920 templates: - - '{{Game data/config|Windows|{{p|userprofile\appdata\locallow}}\Konfa Games\Despotism3k\}}' - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\Konfa Games\Despotism3k\}}' + - "{{Game data/config|Windows|{{p|userprofile\\appdata\\locallow}}\\Konfa Games\\Despotism3k\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\Konfa Games\\Despotism3k\\}}" Dess M-8: pageId: 186800 templates: - - '{{Game data/saves|Windows|{{P|localappdata}}\DessM8_Final_PC}}' + - "{{Game data/saves|Windows|{{P|localappdata}}\\DessM8_Final_PC}}" Dessert Storm: pageId: 52201 steam: 542710 @@ -43777,22 +42655,22 @@ Destinata: Destination Ares: pageId: 53218 steam: 553470 -'Destination Dungeon: Crypts of Warthallow': +"Destination Dungeon: Crypts of Warthallow": pageId: 68917 steam: 702910 -'Destination Dungeon: Tomb of Repentance': +"Destination Dungeon: Tomb of Repentance": pageId: 112880 steam: 942910 -'Destination Dungeons: Catacombs of Dreams': +"Destination Dungeons: Catacombs of Dreams": pageId: 98800 steam: 884230 -'Destination Primus Vita - Episode 1: Austin': +"Destination Primus Vita - Episode 1: Austin": pageId: 66315 steam: 680750 Destination Sol: pageId: 48769 steam: 342980 -'Destination: Pluto The VR Experience': +"Destination: Pluto The VR Experience": pageId: 56745 steam: 580410 Destined: @@ -43802,7 +42680,7 @@ Destiny 2: pageId: 60175 steam: 1085660 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Bungie\DestinyPC\prefs}}' + - "{{Game data/config|Windows|{{p|appdata}}\\Bungie\\DestinyPC\\prefs}}" Destiny Girls: pageId: 149993 steam: 1177450 @@ -43813,7 +42691,7 @@ Destiny Warriors RPG: pageId: 46476 steam: 399790 templates: - - '{{Game data/saves|Windows|{{p|game}}\*.rvdata2}}' + - "{{Game data/saves|Windows|{{p|game}}\\*.rvdata2}}" Destiny of Altrais: pageId: 98494 steam: 872230 @@ -43829,21 +42707,19 @@ Destiny of Light: Destiny of a Wizard: pageId: 64874 steam: 670140 -'Destiny of a Wizard 2: Beyond the Vale': +"Destiny of a Wizard 2: Beyond the Vale": pageId: 94801 steam: 864310 Destiny or Fate: pageId: 146262 steam: 919220 templates: - - >- - {{Game - data/config|Windows|{{P|userprofile}}\AppData\LocalLow\Blasters\DOF\GameConfig.cfg|{{P|hkcu}}\SOFTWARE\Blasters\DOF\}} - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Blasters\DOF\SaveData\}}' -'Destiny''s Princess: A War Story, A Love Story': + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Blasters\\DOF\\GameConfig.cfg|{{P|hkcu}}\\SOFTWARE\\Blasters\\DOF\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Blasters\\DOF\\SaveData\\}}" +"Destiny's Princess: A War Story, A Love Story": pageId: 43722 steam: 447170 -Destiny's Sword: +"Destiny's Sword": pageId: 136035 steam: 965990 Destle Strike: @@ -43854,8 +42730,8 @@ Destroy All Humans!: pageId: 138254 steam: 803330 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\DH\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\DH\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\DH\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\DH\\Saved\\SaveGames\\}}" Destroy All Humans! - Clone Carnage: gog: 1159146122 pageId: 177973 @@ -43863,24 +42739,22 @@ Destroy All Humans! - Clone Carnage: Destroy All Humans! 2 - Reprobed: gog: 1744638356 gogSide: - - 2114006874 + - 1345099658 + - 1418041747 - 1620328558 - 1735750190 - - 1418041747 - - 1345099658 - 1794014675 + - 2114006874 pageId: 171522 steam: 1266700 steamSide: - 2080850 - - 2080852 - 2080851 + - 2080852 - 2082930 templates: - - >- - {{Game - data/config|Windows|{{P|localappdata}}\DH2\Saved\Config\WindowsNoEditor|{{P|localappdata}}\DH2\Saved\SaveGames\SaveOptions.sav}} - - '{{Game data/saves|Windows|{{P|localappdata}}\DH2\Saved\SaveGames}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\DH2\\Saved\\Config\\WindowsNoEditor|{{P|localappdata}}\\DH2\\Saved\\SaveGames\\SaveOptions.sav}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\DH2\\Saved\\SaveGames}}" Destroy Space Aliens: pageId: 76947 steam: 733180 @@ -43898,7 +42772,7 @@ Destroyer Command: renamedFrom: - Marauders steam: 1789480 -'Destroyer: Invasion': +"Destroyer: Invasion": pageId: 65570 steam: 678240 Destructamundo: @@ -43913,13 +42787,13 @@ Destruction (Rising Win Tech): Destruction Derby: pageId: 26037 templates: - - '{{Game data/config|DOS|{{p|game}}\DD.CFG}}' - - '{{Game data/saves|DOS|{{p|game}}\SAVES}}' + - "{{Game data/config|DOS|{{p|game}}\\DD.CFG}}" + - "{{Game data/saves|DOS|{{p|game}}\\SAVES}}" Destruction Derby 2: pageId: 24672 templates: - - '{{Game data/saves|DOS|{{p|game}}\SAVEGAME}}' - - '{{Game data/saves|Windows|{{p|game}}\SaveGames|{{p|game}}\pname.txt}}' + - "{{Game data/saves|DOS|{{p|game}}\\SAVEGAME}}" + - "{{Game data/saves|Windows|{{p|game}}\\SaveGames|{{p|game}}\\pname.txt}}" Destruction Paper: pageId: 113506 steam: 890200 @@ -43929,7 +42803,7 @@ Destructions: Destructivator 2: pageId: 156877 steam: 1124990 -'Destructive physics: destruction simulator': +"Destructive physics: destruction simulator": pageId: 156929 steam: 1024460 DestructoPod: @@ -43939,50 +42813,48 @@ Desync: pageId: 39117 steam: 390030 templates: - - '{{Game data/saves|Windows|{{p|game}}\DESYNC_Data\StreamingAssets\SaveData}}' -'Desynced: Autonomous Colony Simulator': + - "{{Game data/saves|Windows|{{p|game}}\\DESYNC_Data\\StreamingAssets\\SaveData}}" +"Desynced: Autonomous Colony Simulator": pageId: 191283 steam: 1450900 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Desynced\Saved\Config\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Desynced\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Desynced\\Saved\\Config\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Desynced\\Saved\\SaveGames\\}}" Detached: pageId: 36244 steam: 436230 -'Detached: Non-VR Edition': +"Detached: Non-VR Edition": pageId: 103069 steam: 848410 -'Detained: Too Good for School': +"Detained: Too Good for School": pageId: 167209 renamedFrom: - Too Good For School steam: 1394650 Detana!! TwinBee: pageId: 176928 -'Detective Barbie 2: The Vacation Mystery': +"Detective Barbie 2: The Vacation Mystery": pageId: 170614 Detective Barbie in The Mystery of the Carnival Caper: pageId: 170616 -'Detective Butler: Maiden Voyage Murder': +"Detective Butler: Maiden Voyage Murder": pageId: 62530 steam: 612620 -'Detective Case and Clown Bot in: Murder in the Hotel Lisbon': +"Detective Case and Clown Bot in: Murder in the Hotel Lisbon": pageId: 49891 steam: 297290 templates: - - '{{Game data/config|Windows|{{p|LOCALAPPDATA}}\Case_Bot\settings.ini}}' - - '{{Game data/saves|Windows|{{p|LOCALAPPDATA}}\Case_Bot\}}' -'Detective Case and Clown Bot in: The Express Killer': + - "{{Game data/config|Windows|{{p|LOCALAPPDATA}}\\Case_Bot\\settings.ini}}" + - "{{Game data/saves|Windows|{{p|LOCALAPPDATA}}\\Case_Bot\\}}" +"Detective Case and Clown Bot in: The Express Killer": pageId: 73661 steam: 711920 -'Detective Di: The Silk Rose Murders': +"Detective Di: The Silk Rose Murders": pageId: 87563 steam: 792040 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\SOFTWARE\Nupixo Games\Detective Di: The Silk Rose Murders}}' - - >- - {{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Nupixo Games\Detective Di_ The Silk Rose - Murders\*.save}} + - "{{Game data/config|Windows|{{P|hkcu}}\\SOFTWARE\\Nupixo Games\\Detective Di: The Silk Rose Murders}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Nupixo Games\\Detective Di_ The Silk Rose Murders\\*.save}}" Detective Failure: pageId: 100386 steam: 874080 @@ -43993,20 +42865,16 @@ Detective From The Crypt: - 1510020 - 1751740 templates: - - >- - {{Game - data/config|Windows|{{P|hkcu}}\Software\DefaultCompany\DetectiveFromTheCrypt|{{P|userprofile\appdata\locallow}}\DefaultCompany\DetectiveFromTheCrypt\*.json}} - - >- - {{Game - data/config|Linux|{{P|xdgconfighome}}/unity3d/DefaultCompany/DetectiveFromTheCrypt/prefs|{{P|xdgconfighome}}/unity3d/DefaultCompany/DetectiveFromTheCrypt/*.json}} - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\DefaultCompany\DetectiveFromTheCrypt\*.json}}' - - '{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/DefaultCompany/DetectiveFromTheCrypt/*.json}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\DefaultCompany\\DetectiveFromTheCrypt|{{P|userprofile\\appdata\\locallow}}\\DefaultCompany\\DetectiveFromTheCrypt\\*.json}}" + - "{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/DefaultCompany/DetectiveFromTheCrypt/prefs|{{P|xdgconfighome}}/unity3d/DefaultCompany/DetectiveFromTheCrypt/*.json}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\DefaultCompany\\DetectiveFromTheCrypt\\*.json}}" + - "{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/DefaultCompany/DetectiveFromTheCrypt/*.json}}" Detective Gallo: gog: 1745746005 pageId: 53238 steam: 556060 templates: - - '{{Game data/saves|Windows|{{p|game}}\UserSaves\}}' + - "{{Game data/saves|Windows|{{p|game}}\\UserSaves\\}}" Detective Girl of the Steam City: gog: 2018829937 pageId: 128405 @@ -44016,9 +42884,7 @@ Detective Grimoire: pageId: 37447 steam: 272600 templates: - - >- - {{Game data/saves|Windows|{{P|appdata}}\air.com.sfbgames.DetectiveGrimoire\Local - Store\#SharedObjects\DetectiveGrimoireDesktopSteam.swf\DetectiveGrimoireSave.sol}} + - "{{Game data/saves|Windows|{{P|appdata}}\\air.com.sfbgames.DetectiveGrimoire\\Local Store\\#SharedObjects\\DetectiveGrimoireDesktopSteam.swf\\DetectiveGrimoireSave.sol}}" Detective Hank and the Golden Sneeze: pageId: 41972 steam: 503980 @@ -44062,19 +42928,17 @@ Detention: pageId: 53970 steam: 555220 templates: - - >- - {{Game - data/config|Windows|{{p|userprofile}}\AppData\LocalLow\RedCandleGames\Detention\UserGameSetting.json|{{P|hkcu}}\Software\RedCandleGames\Detention\}} - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/RedCandleGames/Detention}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\RedCandleGames\Detention\}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/RedCandleGames/Detention}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\RedCandleGames\\Detention\\UserGameSetting.json|{{P|hkcu}}\\Software\\RedCandleGames\\Detention\\}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/RedCandleGames/Detention}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\RedCandleGames\\Detention\\}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/RedCandleGames/Detention}}" DethKarz: gog: 1401174839 pageId: 154788 steam: 1257910 templates: - - '{{Game data/config|Windows|{{P|hklm}}\SOFTWARE\{{P|wow64}}\Melbourne House\Dethkarz}}' - - '{{Game data/saves|Windows|{{P|game}}\Data\{{code|*}}.dks}}' + - "{{Game data/config|Windows|{{P|hklm}}\\SOFTWARE\\{{P|wow64}}\\Melbourne House\\Dethkarz}}" + - "{{Game data/saves|Windows|{{P|game}}\\Data\\{{code|*}}.dks}}" Detonation: pageId: 139279 steam: 1103430 @@ -44086,48 +42950,46 @@ Detour: Detrita Battlegrounds: pageId: 67213 steam: 672180 -'Detroit: Become Human': +"Detroit: Become Human": pageId: 131302 steam: 1222140 templates: - - >- - {{Game data/config|Windows|{{P|game}}\GraphicOptions.JSON|{{P|game}}\WindowInfo.JSON|{{p|userprofile}}\Saved - Games\Quantic Dream\Detroit Become Human\}} - - '{{Game data/saves|Windows|{{p|userprofile}}\Saved Games\Quantic Dream\Detroit Become Human\}}' + - "{{Game data/config|Windows|{{P|game}}\\GraphicOptions.JSON|{{P|game}}\\WindowInfo.JSON|{{p|userprofile}}\\Saved Games\\Quantic Dream\\Detroit Become Human\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Saved Games\\Quantic Dream\\Detroit Become Human\\}}" Deus: gog: 1207662383 pageId: 62883 templates: - - '{{Game data/config|DOS|{{p|game}}\OPTION.DAT}}' - - '{{Game data/config|Windows|{{p|game}}\option.dat}}' - - '{{Game data/saves|DOS|{{p|game}}\SAVE**|{{p|game}}\SAVE.DAT}}' - - '{{Game data/saves|Windows|{{p|game}}\SAVE**|{{p|game}}\save.dat}}' + - "{{Game data/config|DOS|{{p|game}}\\OPTION.DAT}}" + - "{{Game data/config|Windows|{{p|game}}\\option.dat}}" + - "{{Game data/saves|DOS|{{p|game}}\\SAVE**|{{p|game}}\\SAVE.DAT}}" + - "{{Game data/saves|Windows|{{p|game}}\\SAVE**|{{p|game}}\\save.dat}}" Deus Ex: gog: 1207658995 pageId: 47 steam: 6910 templates: - - '{{Game data/config|Windows|{{p|game}}\System\*.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\Save\}}' + - "{{Game data/config|Windows|{{p|game}}\\System\\*.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\Save\\}}" Deus Ex GO: pageId: 62121 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Packages\39C668CD.DeusExGO_r7bfsmp40f67j\LocalState}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Packages\39C668CD.DeusExGO_r7bfsmp40f67j\LocalState}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Packages\\39C668CD.DeusExGO_r7bfsmp40f67j\\LocalState}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Packages\\39C668CD.DeusExGO_r7bfsmp40f67j\\LocalState}}" Deus Ex Machina: pageId: 50743 steam: 508910 Deus Ex Machina 2: pageId: 48491 steam: 353610 -'Deus Ex: Breach': +"Deus Ex: Breach": pageId: 56980 steam: 555450 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Eidos Montreal\Deus Ex: Breach\}}' - - '{{Game data/config|Steam|{{p|Steam}}/userdata/{{p|uid}}/555450/remote/game_options.bin}}' - - '{{Game data/saves|Steam|{{p|Steam}}/userdata/{{p|uid}}/555450/remote/}}' -'Deus Ex: Human Revolution': + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Eidos Montreal\\Deus Ex: Breach\\}}" + - "{{Game data/config|Steam|{{p|Steam}}/userdata/{{p|uid}}/555450/remote/game_options.bin}}" + - "{{Game data/saves|Steam|{{p|Steam}}/userdata/{{p|uid}}/555450/remote/}}" +"Deus Ex: Human Revolution": pageId: 85 steam: 28050 steamSide: @@ -44135,24 +42997,24 @@ Deus Ex Machina 2: - 28061 - 201280 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Eidos\Deus Ex: HR\}}' - - '{{Game data/saves|Windows|{{p|steam}}\userdata\{{p|uid}}\28050\remote\}}' -'Deus Ex: Human Revolution - Director''s Cut': + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Eidos\\Deus Ex: HR\\}}" + - "{{Game data/saves|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\28050\\remote\\}}" +"Deus Ex: Human Revolution - Director's Cut": gog: 1370227705 pageId: 11232 steam: 238010 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Eidos\Deus Ex: HRDC\}}' - - '{{Game data/saves|GOG.com|{{p|USERPROFILE\Documents}}\My Games\Deus Ex HRDC\}}' - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/238010/remote/}}' -'Deus Ex: Invisible War': + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Eidos\\Deus Ex: HRDC\\}}" + - "{{Game data/saves|GOG.com|{{p|USERPROFILE\\Documents}}\\My Games\\Deus Ex HRDC\\}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/238010/remote/}}" +"Deus Ex: Invisible War": gog: 1207659068 pageId: 3063 steam: 6920 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Deus Ex - Invisible War\user.ini}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Deus Ex - Invisible War\SaveGames\}}' -'Deus Ex: Mankind Divided': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Deus Ex - Invisible War\\user.ini}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Deus Ex - Invisible War\\SaveGames\\}}" +"Deus Ex: Mankind Divided": gog: 1296690054 pageId: 24132 steam: 337000 @@ -44164,29 +43026,27 @@ Deus Ex Machina 2: - 470070 - 609220 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Eidos Montreal\Deus Ex: MD\}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/feral-interactive/Deus Ex Mankind Divided/}}' - - '{{Game data/config|Steam|{{p|Steam}}\userdata\{{p|uid}}\337000\remote\game_options.bin}}' - - '{{Game data/saves|Steam|{{p|Steam}}\userdata\{{p|uid}}\337000\remote\}}' - - '{{Game data/saves|GOG.com|{{p|userprofile\Documents}}\My Games\Deus Ex Mankind Divided\Saves\}}' -'Deus Ex: Mankind Divided - VR Experience': + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Eidos Montreal\\Deus Ex: MD\\}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/feral-interactive/Deus Ex Mankind Divided/}}" + - "{{Game data/config|Steam|{{p|Steam}}\\userdata\\{{p|uid}}\\337000\\remote\\game_options.bin}}" + - "{{Game data/saves|Steam|{{p|Steam}}\\userdata\\{{p|uid}}\\337000\\remote\\}}" + - "{{Game data/saves|GOG.com|{{p|userprofile\\Documents}}\\My Games\\Deus Ex Mankind Divided\\Saves\\}}" +"Deus Ex: Mankind Divided - VR Experience": pageId: 56978 steam: 526180 -'Deus Ex: Revision': +"Deus Ex: Revision": gog: 1525634891 pageId: 29086 steam: 397550 templates: - - '{{Game data/config|Windows|{{P|game}}\Revision\System\Revision.ini}}' - - '{{Game data/saves|Windows|{{P|game}}\Revision\Save\}}' -'Deus Ex: The Fall': + - "{{Game data/config|Windows|{{P|game}}\\Revision\\System\\Revision.ini}}" + - "{{Game data/saves|Windows|{{P|game}}\\Revision\\Save\\}}" +"Deus Ex: The Fall": pageId: 15919 steam: 258180 templates: - - >- - {{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\N_Fusion Interactive\Deus Ex_ The - Fall\PlayerPrefs.txt|{{P|hkcu}}\Software\N-Fusion Interactive\Deus Ex: The Fall\}} - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\N_Fusion Interactive\Deus Ex_ The Fall\}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\N_Fusion Interactive\\Deus Ex_ The Fall\\PlayerPrefs.txt|{{P|hkcu}}\\Software\\N-Fusion Interactive\\Deus Ex: The Fall\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\N_Fusion Interactive\\Deus Ex_ The Fall\\}}" Deus Vult: pageId: 62772 steam: 644670 @@ -44211,8 +43071,8 @@ Devader: Devastation: pageId: 80807 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Devastation\*.ini}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Devastation\Save\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Devastation\\*.ini}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Devastation\\Save\\}}" Devastator Arena: pageId: 102729 steam: 880600 @@ -44227,10 +43087,10 @@ Devil Daggers: pageId: 37128 steam: 422970 templates: - - '{{Game data/config|Windows|{{p|appdata}}\DevilDaggers\}}' - - '{{Game data/config|Linux|{{P|linuxhome}}/devildaggers/}}' - - '{{Game data/saves|Windows|{{p|appdata}}\DevilDaggers\}}' - - '{{Game data/saves|Linux|{{P|linuxhome}}/devildaggers/}}' + - "{{Game data/config|Windows|{{p|appdata}}\\DevilDaggers\\}}" + - "{{Game data/config|Linux|{{P|linuxhome}}/devildaggers/}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\DevilDaggers\\}}" + - "{{Game data/saves|Linux|{{P|linuxhome}}/devildaggers/}}" Devil Engine: pageId: 113510 steam: 891790 @@ -44240,21 +43100,21 @@ Devil Girl Needs Massages: Devil Guns - Demon Bullet Hell Arena: pageId: 69474 steam: 700780 -'Devil May Cry 3: Special Edition': +"Devil May Cry 3: Special Edition": pageId: 7959 renamedFrom: - - 'Devil May Cry 3: Dante''s Awakening' + - "Devil May Cry 3: Dante's Awakening" steam: 6550 templates: - - '{{Game data/config|Windows|{{p|game}}\DMC3SE.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\save0.sav}}' + - "{{Game data/config|Windows|{{p|game}}\\DMC3SE.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\save0.sav}}" Devil May Cry 4: pageId: 10174 steam: 45700 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\capcom\DEVILMAYCRY4\config.ini}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\capcom\DEVILMAYCRY4\}}' -'Devil May Cry 4: Special Edition': + - "{{Game data/config|Windows|{{p|localappdata}}\\capcom\\DEVILMAYCRY4\\config.ini}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\capcom\\DEVILMAYCRY4\\}}" +"Devil May Cry 4: Special Edition": pageId: 25665 renamedFrom: - Devil May Cry 4 Special Edition @@ -44269,8 +43129,8 @@ Devil May Cry 4: - 359496 - 359497 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\CAPCOM\DEVILMAYCRY4SPECIALEDITION\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\CAPCOM\DEVILMAYCRY4SPECIALEDITION\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\CAPCOM\\DEVILMAYCRY4SPECIALEDITION\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\CAPCOM\\DEVILMAYCRY4SPECIALEDITION\\}}" Devil May Cry 5: pageId: 97185 steam: 601150 @@ -44288,8 +43148,8 @@ Devil May Cry 5: - 941960 - 941961 templates: - - '{{Game data/config|Windows|{{p|game}}\dmc5config.ini}}' - - '{{Game data/saves|Steam|{{p|Steam}}\userdata\{{p|uid}}\601150\remote\win64_save\*.bin}}' + - "{{Game data/config|Windows|{{p|game}}\\dmc5config.ini}}" + - "{{Game data/saves|Steam|{{p|Steam}}\\userdata\\{{p|uid}}\\601150\\remote\\win64_save\\*.bin}}" Devil May Cry HD Collection: pageId: 83070 steam: 631510 @@ -44299,10 +43159,10 @@ Devil May Cry HD Collection: - 1426670 - 1426680 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\My Games\Devil May Cry HD Collection\options.sav}}' - - '{{Game data/config|Steam|{{P|steam}}\userdata\{{p|uid}}\631510\remote\options.sav}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\My Games\Devil May Cry HD Collection\}}' - - '{{Game data/saves|Steam|{{P|steam}}\userdata\{{p|uid}}\631510\remote\}}' + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\My Games\\Devil May Cry HD Collection\\options.sav}}" + - "{{Game data/config|Steam|{{P|steam}}\\userdata\\{{p|uid}}\\631510\\remote\\options.sav}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\My Games\\Devil May Cry HD Collection\\}}" + - "{{Game data/saves|Steam|{{P|steam}}\\userdata\\{{p|uid}}\\631510\\remote\\}}" Devil Sealing Stone: pageId: 43640 steam: 432540 @@ -44315,8 +43175,8 @@ Devil Under Sun: Devil Whiskey: pageId: 186097 templates: - - '{{Game data/config|Windows|{{p|game}}/data/}}' - - '{{Game data/saves|Windows|{{p|game}}/savegame/}}' + - "{{Game data/config|Windows|{{p|game}}/data/}}" + - "{{Game data/saves|Windows|{{p|game}}/savegame/}}" Devil and the Fairy: pageId: 82639 steam: 744750 @@ -44332,37 +43192,37 @@ Devil in the Details: Devil in the Pines: pageId: 71768 steam: 706280 -Devil's Bluff: +"Devil's Bluff": pageId: 45862 steam: 382350 -Devil's Dare: +"Devil's Dare": gog: 1207666703 pageId: 21948 steam: 279580 -Devil's Deck 恶魔秘境: +"Devil's Deck 恶魔秘境": pageId: 141925 steam: 1093320 -Devil's Hunt: +"Devil's Hunt": gog: 1085166184 pageId: 102189 steam: 887720 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\DevilsHuntUnreal\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\DevilsHuntUnreal\Saved\SaveGames\}}' -Devil's Kiss: + - "{{Game data/config|Windows|{{p|localappdata}}\\DevilsHuntUnreal\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\DevilsHuntUnreal\\Saved\\SaveGames\\}}" +"Devil's Kiss": gog: 1807052519 pageId: 158563 steam: 1213550 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Size Five Games\DevilsKiss\}}' - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Size Five Games\DevilsKiss\FungusSaves\}}' -Devil's Land: + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Size Five Games\\DevilsKiss\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Size Five Games\\DevilsKiss\\FungusSaves\\}}" +"Devil's Land": pageId: 79048 steam: 770510 -Devil's Toy: +"Devil's Toy": pageId: 120937 steam: 959540 -'DevilShaft: TheTower': +"DevilShaft: TheTower": pageId: 132349 steam: 1054900 Devilated: @@ -44396,25 +43256,25 @@ Devoid of Shadows: pageId: 65235 steam: 671900 templates: - - '{{Game data/saves|Windows|{{p|appdata}}\Arslogica\Devoid of Shadows 1.01\}}' + - "{{Game data/saves|Windows|{{p|appdata}}\\Arslogica\\Devoid of Shadows 1.01\\}}" Devolver Bootleg: pageId: 138525 steam: 1066260 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\DevolverBootleg}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\DevolverBootleg}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\DevolverBootleg}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\DevolverBootleg}}" Devolverland Expo: pageId: 161780 steam: 1283220 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Devolverland_Expo\Saved\Config\WindowsNoEditor\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\Devolverland_Expo\\Saved\\Config\\WindowsNoEditor\\}}" Devotion: gog: 2009368082 pageId: 127827 steam: 1006510 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\RedCandleGames\Devotion\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\RedCandleGames\Devotion\save.json}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\RedCandleGames\\Devotion\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\RedCandleGames\\Devotion\\save.json}}" Devour: pageId: 173061 renamedFrom: @@ -44434,12 +43294,12 @@ Dex: pageId: 19218 steam: 269650 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Dreadlocks Ltd\Dex}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Preferences/unity.Dreadlocks Ltd.Dex.plist}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Dreadlocks Ltd/Dex}}' - - '{{Game data/saves|Windows|{{p|hkcu}}\Software\Dreadlocks Ltd\Dex}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Preferences/unity.Dreadlocks Ltd.Dex.plist}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Dreadlocks Ltd/Dex/prefs}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Dreadlocks Ltd\\Dex}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Preferences/unity.Dreadlocks Ltd.Dex.plist}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Dreadlocks Ltd/Dex}}" + - "{{Game data/saves|Windows|{{p|hkcu}}\\Software\\Dreadlocks Ltd\\Dex}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Preferences/unity.Dreadlocks Ltd.Dex.plist}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Dreadlocks Ltd/Dex/prefs}}" Dexodonex: pageId: 54610 steam: 552780 @@ -44461,95 +43321,85 @@ DiRT 3: steamSide: - 321040 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\DiRT3\hardwaresettings\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\DiRT3\savegame\}}' - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/321040/}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\DiRT3\\hardwaresettings\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\DiRT3\\savegame\\}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/321040/}}" DiRT 4: pageId: 57034 steam: 421020 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\My Games\DiRT 4\hardwaresettings\}}' - - '{{Game data/saves|Windows|{{p|steam}}\userdata\{{p|uid}}\421020\}}' - - '{{Game data/saves|Linux|{{p|steam}}/userdata/{{p|uid}}/421020/}}' + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\My Games\\DiRT 4\\hardwaresettings\\}}" + - "{{Game data/saves|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\421020\\}}" + - "{{Game data/saves|Linux|{{p|steam}}/userdata/{{p|uid}}/421020/}}" DiRT Rally: pageId: 24503 steam: 310560 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\DiRT Rally\hardwaresettings\}}' - - >- - {{Game data/config|Linux|{{p|linuxhome}}/.local/share/feral-interactive/DiRT Rally/VFS/User/AppData/Roaming/My - Games/DiRT Rally/hardwaresettings/}} - - '{{Game data/saves|Windows|{{p|game}}\Profile\Player\Saves}}' - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\310560\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\DiRT Rally\\hardwaresettings\\}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.local/share/feral-interactive/DiRT Rally/VFS/User/AppData/Roaming/My Games/DiRT Rally/hardwaresettings/}}" + - "{{Game data/saves|Windows|{{p|game}}\\Profile\\Player\\Saves}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\310560\\}}" DiRT Rally 2.0: pageId: 111768 steam: 690790 templates: - - '{{Game data/config|Windows|{{P|userprofile\documents}}\My Games\DiRT Rally 2.0\hardwaresettings\}}' - - '{{Game data/config|Microsoft Store|{{P|userprofile\documents}}\My Games\DiRT Rally 2.0\}}' - - '{{Game data/saves|Windows|{{p|steam}}\userdata\{{p|uid}}\690790\remote}}' - - >- - {{Game data/saves|Microsoft - Store|{{P|localappdata}}\Packages\CodemastersSoftwareCompan.DiRTRally2.0Windows_4cfye3zbe1gaw\SystemAppData\wgs\{{P|uid}}\}} + - "{{Game data/config|Windows|{{P|userprofile\\documents}}\\My Games\\DiRT Rally 2.0\\hardwaresettings\\}}" + - "{{Game data/config|Microsoft Store|{{P|userprofile\\documents}}\\My Games\\DiRT Rally 2.0\\}}" + - "{{Game data/saves|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\690790\\remote}}" + - "{{Game data/saves|Microsoft Store|{{P|localappdata}}\\Packages\\CodemastersSoftwareCompan.DiRTRally2.0Windows_4cfye3zbe1gaw\\SystemAppData\\wgs\\{{P|uid}}\\}}" DiRT Showdown: pageId: 2844 steam: 201700 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Dirt Showdown\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/com.vpltd.Dirt/}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/vpltd/dirt/}}' - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/201700/}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Dirt Showdown\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/com.vpltd.Dirt/}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/vpltd/dirt/}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/201700/}}" Diablo: gog: 1412601690 pageId: 2982 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\SOFTWARE\Blizzard Entertainment\Diablo\}}' - - |- - {{Game data/saves|Windows| - {{p|game}}\*.sv| - {{P|game}}\dx\*.sv| - {{P|game}}\hellfire\*.hsv}} + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\Blizzard Entertainment\\Diablo\\}}" + - "{{Game data/saves|Windows|\n{{p|game}}\\*.sv|\n{{P|game}}\\dx\\*.sv|\n{{P|game}}\\hellfire\\*.hsv}}" Diablo II: pageId: 595 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\SOFTWARE\Blizzard Entertainment\Diablo II\}}' - - '{{Game data/saves|Windows|{{p|game}}\Save|{{p|userprofile}}\Saved Games\Diablo II}}' -'Diablo II: Resurrected': + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\Blizzard Entertainment\\Diablo II\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\Save|{{p|userprofile}}\\Saved Games\\Diablo II}}" +"Diablo II: Resurrected": pageId: 166778 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Diablo II Resurrected\save}}' - - >- - {{Game data/saves|Windows|{{p|userprofile}}\Saved Games\Diablo II Resurrected|{{p|userprofile}}\Documents\Diablo - II Resurrected\Save}} + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Diablo II Resurrected\\save}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Saved Games\\Diablo II Resurrected|{{p|userprofile}}\\Documents\\Diablo II Resurrected\\Save}}" Diablo III: pageId: 2185 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Diablo III\D3Prefs.txt}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Blizzard/Diablo III/D3Prefs.txt}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Diablo III\\D3Prefs.txt}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Blizzard/Diablo III/D3Prefs.txt}}" Diablo IV: pageId: 151763 steam: 2344520 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\Documents\Diablo IV\LocalPrefs.txt}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\Documents\\Diablo IV\\LocalPrefs.txt}}" Diablo Immortal: pageId: 178005 templates: - - '{{Game data/config|Windows|{{p|game}}\LocalData\BaseUserPresets.ini}}' + - "{{Game data/config|Windows|{{p|game}}\\LocalData\\BaseUserPresets.ini}}" Diabolic: pageId: 82898 steam: 801290 Diabolical: pageId: 45719 steam: 416640 -'Diabolik: The Original Sin': +"Diabolik: The Original Sin": pageId: 65799 templates: - - '{{Game data/config|Windows|{{p|game}}\Config}}' - - '{{Game data/saves|Windows|{{p|game}}\Save}}' + - "{{Game data/config|Windows|{{p|game}}\\Config}}" + - "{{Game data/saves|Windows|{{p|game}}\\Save}}" Diabotical: pageId: 158187 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Diabotical\CloudSave\}}' + - "{{Game data/config|Windows|{{p|appdata}}\\Diabotical\\CloudSave\\}}" Diacrisis: pageId: 134654 steam: 1037260 @@ -44559,19 +43409,19 @@ Diadra Empty: Dialing: pageId: 87219 steam: 775730 -'Dialogue: A Writer''s Story': +"Dialogue: A Writer's Story": pageId: 70323 steam: 654390 templates: - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\Tea-Powered Games\Dialogue}}' -'Dialtown: Phone Dating Sim': + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\Tea-Powered Games\\Dialogue}}" +"Dialtown: Phone Dating Sim": pageId: 135913 steam: 1035990 Diamo XL: pageId: 72887 steam: 715010 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Nickervision Studios\Diamo XL\*.diamoxl}}' + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Nickervision Studios\\Diamo XL\\*.diamoxl}}" Diamond: pageId: 50958 steam: 346390 @@ -44606,17 +43456,17 @@ Diaries of a Spaceport Janitor: pageId: 38995 steam: 436500 templates: - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}Sundae Month\Diaries of a Spaceport Janitor}}' + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}Sundae Month\\Diaries of a Spaceport Janitor}}" Diary of Defender: pageId: 99486 steam: 822870 -'Diaspora: Mass Exodus': +"Diaspora: Mass Exodus": pageId: 95043 steam: 718310 -'Diastone: Confusion': +"Diastone: Confusion": pageId: 140965 steam: 1106670 -'Diastone: Memories': +"Diastone: Memories": pageId: 124012 steam: 803130 Dice Defenders: @@ -44635,7 +43485,7 @@ Dice Tower Defense: Dice Unique Rules: pageId: 70363 steam: 708930 -'Dicetiny: The Lord of the Dice': +"Dicetiny: The Lord of the Dice": pageId: 42177 steam: 318090 Dicey Dungeons: @@ -44643,26 +43493,26 @@ Dicey Dungeons: pageId: 105291 steam: 861540 templates: - - '{{Game data/config|Windows|{{P|appdata}}\Terry Cavanagh Games\diceydungeons\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Terry Cavanagh Games/diceydungeons/}}' - - '{{Game data/config|Linux|{{p|xdgdatahome}}/Terry Cavanagh Games/diceydungeons/}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Terry Cavanagh Games\diceydungeons\}}' - - '{{Game data/saves|Linux|{{p|xdgdatahome}}/Terry Cavanagh Games/diceydungeons/}}' + - "{{Game data/config|Windows|{{P|appdata}}\\Terry Cavanagh Games\\diceydungeons\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Terry Cavanagh Games/diceydungeons/}}" + - "{{Game data/config|Linux|{{p|xdgdatahome}}/Terry Cavanagh Games/diceydungeons/}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Terry Cavanagh Games\\diceydungeons\\}}" + - "{{Game data/saves|Linux|{{p|xdgdatahome}}/Terry Cavanagh Games/diceydungeons/}}" Dick Johnson V8 Challenge: pageId: 189551 templates: - - '{{Game data/config|Windows|{{P|windir}}\controlcfg2.dat|{{P|windir}}\djc_sndprefs.dat|{{P|windir}}\TCC2.prf}}' - - '{{Game data/saves|Windows|{{P|game}}\assets\tournaments\slot*}}' + - "{{Game data/config|Windows|{{P|windir}}\\controlcfg2.dat|{{P|windir}}\\djc_sndprefs.dat|{{P|windir}}\\TCC2.prf}}" + - "{{Game data/saves|Windows|{{P|game}}\\assets\\tournaments\\slot*}}" Dick Wilde: pageId: 59240 steam: 585500 Dick Wilde 2: pageId: 127712 steam: 975430 -Dictator's Dreams: +"Dictator's Dreams": pageId: 92001 steam: 840500 -'Dictators:No Peace Countryballs': +"Dictators:No Peace Countryballs": pageId: 155920 steam: 1139890 Didgery: @@ -44680,22 +43530,22 @@ Die Bloody Nazi Die!: Die Drachen von Laas: pageId: 75230 templates: - - '{{Game data/saves|DOS|{{p|game}}\********}}' + - "{{Game data/saves|DOS|{{p|game}}\\********}}" Die Drei ??? - Geheimnis der Schattenhelden: pageId: 77986 steam: 735620 Die Hard Trilogy: pageId: 126976 -'Die Hard Trilogy 2: Viva Las Vegas': +"Die Hard Trilogy 2: Viva Las Vegas": pageId: 126979 templates: - - '{{Game data/config|Windows|{{p|hklm}}\SOFTWARE\{{P|wow64}}\n-Space\DHT2\}}' - - '{{Game data/saves|Windows|{{p|hklm}}\SOFTWARE\{{P|wow64}}\n-Space\DHT2\Save Games\}}' -'Die Hard: Nakatomi Plaza': + - "{{Game data/config|Windows|{{p|hklm}}\\SOFTWARE\\{{P|wow64}}\\n-Space\\DHT2\\}}" + - "{{Game data/saves|Windows|{{p|hklm}}\\SOFTWARE\\{{P|wow64}}\\n-Space\\DHT2\\Save Games\\}}" +"Die Hard: Nakatomi Plaza": pageId: 20118 templates: - - '{{Game data/config|Windows|{{p|game}}\autoexec.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\Save\}}' + - "{{Game data/config|Windows|{{p|game}}\\autoexec.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\Save\\}}" Die In The Dark: pageId: 103229 steam: 847860 @@ -44708,14 +43558,14 @@ Die Young: steamSide: - 1171460 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\DieYoung\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\DieYoung\Saved\SaveGames\}}' -'Die Young: Prologue': + - "{{Game data/config|Windows|{{P|localappdata}}\\DieYoung\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\DieYoung\\Saved\\SaveGames\\}}" +"Die Young: Prologue": pageId: 136783 steam: 973000 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\DieYoungPrologue\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\DieYoungPrologue\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\DieYoungPrologue\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\DieYoungPrologue\\Saved\\SaveGames\\}}" Die by the Blade: pageId: 151042 steam: 1154670 @@ -44723,8 +43573,8 @@ Die by the Sword: gog: 1207658647 pageId: 7278 templates: - - '{{Game data/config|Windows|{{p|game}}\DBTS.INI}}' - - '{{Game data/saves|Windows|{{p|game}}\saves}}' + - "{{Game data/config|Windows|{{p|game}}\\DBTS.INI}}" + - "{{Game data/saves|Windows|{{p|game}}\\saves}}" Die drei ??? - Rätsel aus der Geisterwelt: pageId: 87970 steam: 793320 @@ -44737,7 +43587,7 @@ Die for Valhalla!: Die for the Empire: pageId: 51310 steam: 537090 -'Die, zombie sausage, die!': +"Die, zombie sausage, die!": pageId: 134741 steam: 1060770 Died of Fear: @@ -44746,21 +43596,19 @@ Died of Fear: Diehard Dungeon: pageId: 50606 steam: 277870 -'Dies Irae: Amantes Amentes': +"Dies Irae: Amantes Amentes": pageId: 63135 steam: 644540 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\light\Dies irae `Amantes amentes`}}' - - >- - {{Game data/saves|Windows|{{p|appdata}}\light\Dies irae `Amantes amentes`|{{p|userprofile\Documents}}\My - Games\light\Dies irae `Amantes amentes`|{{p|hkcu}}\Software\light\Dies irae `Amantes amentes`\SaveDataCode}} + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\light\\Dies irae `Amantes amentes`}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\light\\Dies irae `Amantes amentes`|{{p|userprofile\\Documents}}\\My Games\\light\\Dies irae `Amantes amentes`|{{p|hkcu}}\\Software\\light\\Dies irae `Amantes amentes`\\SaveDataCode}}" Dies irae ~Interview with Kaziklu Bey~: pageId: 128151 steam: 1011990 Diesel Attack: pageId: 150782 steam: 1171080 -'Diesel Brothers: Truck Building Simulator': +"Diesel Brothers: Truck Building Simulator": pageId: 100618 steam: 750050 Diesel Express VR: @@ -44791,14 +43639,14 @@ Dig Deep: pageId: 129693 steam: 1029970 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\dd}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\dd}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\dd}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\dd}}" Dig Dog: pageId: 76616 steam: 655380 templates: - - '{{Game data/config|Windows|{{P|userprofile}}\AppData\Local\DigDog\UserDefault.xml}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\Local\DigDog\}}' + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\Local\\DigDog\\UserDefault.xml}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\Local\\DigDog\\}}" Dig Dug Deeper: pageId: 171123 Dig It! - A Digger Simulator: @@ -44813,7 +43661,7 @@ Dig or Die: Dig to the Stars: pageId: 125928 steam: 970650 -'Dig-Dogs: Streetbusters': +"Dig-Dogs: Streetbusters": pageId: 30478 Digby Extreme: pageId: 74103 @@ -44824,50 +43672,42 @@ Digger Online: Diggerman: pageId: 130468 steam: 1001600 -'Diggers 2: Extractors': +"Diggers 2: Extractors": pageId: 180203 Digging Dragon: pageId: 126118 steam: 983890 -'Diggles: The Myth of Fenris': +"Diggles: The Myth of Fenris": gog: 2095461205 pageId: 3193 steam: 1478650 templates: - - '{{Game data/config|Windows|{{p|HKCU}}\Software\SekOst\Diggles}}' + - "{{Game data/config|Windows|{{p|HKCU}}\\Software\\SekOst\\Diggles}}" Digimon Masters Online: pageId: 52109 steam: 537180 -'Digimon Story: Cyber Sleuth Complete Edition': +"Digimon Story: Cyber Sleuth Complete Edition": pageId: 140592 steam: 1042550 templates: - - >- - {{Game data/config|Windows|{{p|localappdata}}\BANDAI NAMCO Entertainment\Digimon Story Cyber Sleuth Complete - Edition\Saved\SaveGames\{{p|uid}}\*.bin}} - - >- - {{Game data/saves|Windows|{{p|localappdata}}\BANDAI NAMCO Entertainment\Digimon Story Cyber Sleuth Complete - Edition\Saved\SaveGames\{{p|uid}}\*.bin}} + - "{{Game data/config|Windows|{{p|localappdata}}\\BANDAI NAMCO Entertainment\\Digimon Story Cyber Sleuth Complete Edition\\Saved\\SaveGames\\{{p|uid}}\\*.bin}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\BANDAI NAMCO Entertainment\\Digimon Story Cyber Sleuth Complete Edition\\Saved\\SaveGames\\{{p|uid}}\\*.bin}}" Digimon Survive: pageId: 102077 steam: 871980 templates: - - >- - {{Game data/config|Windows|{{p|localappdata}}\©BANDAI NAMCO Entertainment Inc_\DIGIMON - SURVIVE\Savedata\{{p|uid}}\}} - - >- - {{Game data/saves|Windows|{{p|localappdata}}\©BANDAI NAMCO Entertainment Inc_\DIGIMON - SURVIVE\Savedata\{{p|uid}}\}} + - "{{Game data/config|Windows|{{p|localappdata}}\\©BANDAI NAMCO Entertainment Inc_\\DIGIMON SURVIVE\\Savedata\\{{p|uid}}\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\©BANDAI NAMCO Entertainment Inc_\\DIGIMON SURVIVE\\Savedata\\{{p|uid}}\\}}" Digimon World: pageId: 159197 templates: - - '{{Game data/saves|Windows|{{P|game}}\SAVE\*.*}}' -'Digimon World: Next Order': + - "{{Game data/saves|Windows|{{P|game}}\\SAVE\\*.*}}" +"Digimon World: Next Order": pageId: 182696 steam: 1530160 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Bandai Namco Entertainment\Digimon World Next Order\{{p|uid}}\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Bandai Namco Entertainment\Digimon World Next Order\{{p|uid}}\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Bandai Namco Entertainment\\Digimon World Next Order\\{{p|uid}}\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Bandai Namco Entertainment\\Digimon World Next Order\\{{p|uid}}\\}}" Digit Daze: pageId: 93592 steam: 854560 @@ -44877,7 +43717,7 @@ Digital Diamond Baseball: Digital Diamond Baseball V8: pageId: 132482 steam: 1051500 -Digital Domain's Monkey King: +"Digital Domain's Monkey King": pageId: 80887 steam: 686030 Digital Dungeon: @@ -44890,8 +43730,8 @@ Digital Paintball Redux: pageId: 135606 steam: 1066610 templates: - - '{{Game data/config|Windows|{{P|game}}\Half-Life\dpbredux\}}' - - '{{Game data/saves|Windows|{{P|game}}\Half-Life\dpbredux\SAVE\}}' + - "{{Game data/config|Windows|{{P|game}}\\Half-Life\\dpbredux\\}}" + - "{{Game data/saves|Windows|{{P|game}}\\Half-Life\\dpbredux\\SAVE\\}}" Digital Resistance: pageId: 103677 steam: 898740 @@ -44904,32 +43744,30 @@ Digital Runner: Digital Siege: pageId: 100366 steam: 885090 -Diib's Dilemma: +"Diib's Dilemma": pageId: 42840 steam: 473840 -Dilbert's Desktop Games: +"Dilbert's Desktop Games": pageId: 26014 templates: - - |- - {{Game data/config|Windows| - {{p|hklm}}\SOFTWARE\{{p|wow64}}\Cyclops Software\Desktop Toys Screensaver}} - - '{{Game data/saves|Windows|{{p|game}}\Dt05\ToySpr\Toys\widget.dat|{{p|game}}\Dt05\ToySpr\CEO\sim.dat}}' + - "{{Game data/config|Windows|\n{{p|hklm}}\\SOFTWARE\\{{p|wow64}}\\Cyclops Software\\Desktop Toys Screensaver}}" + - "{{Game data/saves|Windows|{{p|game}}\\Dt05\\ToySpr\\Toys\\widget.dat|{{p|game}}\\Dt05\\ToySpr\\CEO\\sim.dat}}" Diluvian Winds: gog: 1203438523 pageId: 172445 steam: 1561040 templates: - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\AlambikStudio\DiluvianWinds\SaveData}}' + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\AlambikStudio\\DiluvianWinds\\SaveData}}" Diluvion: gog: 1276899051 pageId: 39426 steam: 446790 templates: - - '{{Game data/config|Windows|{{p|programdata}}\Steam\Player\}}' + - "{{Game data/config|Windows|{{p|programdata}}\\Steam\\Player\\}}" Dima Rescues Ira: pageId: 74826 steam: 586280 -'Dimense: Chapter 1': +"Dimense: Chapter 1": pageId: 129967 steam: 1042100 Dimension Drifter: @@ -44947,13 +43785,11 @@ Dimension Jump: Dimension Of Gameth: pageId: 113518 steam: 892960 -'Dimension Tripper Neptune: Top Nep': +"Dimension Tripper Neptune: Top Nep": pageId: 174895 steam: 1798780 templates: - - >- - {{Game - data/saves|Windows|{{p|localappdata}}\topnep\savedata.ini|{{p|steam}}\userdata\{{p|uid}}\1798780\remote\savedata.json}} + - "{{Game data/saves|Windows|{{p|localappdata}}\\topnep\\savedata.ini|{{p|steam}}\\userdata\\{{p|uid}}\\1798780\\remote\\savedata.json}}" Dimension of Monster Girls: pageId: 88189 steam: 812410 @@ -44979,8 +43815,8 @@ Dimensity: pageId: 51064 steam: 46720 templates: - - '{{Game data/config|Windows|{{p|userprofile\documents}}\Dimensity\system.ini}}' - - '{{Game data/saves|Windows|{{p|userprofile\documents}}\Dimensity|Saves are located within a profile subfolder}}' + - "{{Game data/config|Windows|{{p|userprofile\\documents}}\\Dimensity\\system.ini}}" + - "{{Game data/saves|Windows|{{p|userprofile\\documents}}\\Dimensity|Saves are located within a profile subfolder}}" Dimetrosaur: pageId: 109260 steam: 887550 @@ -44990,29 +43826,29 @@ Dimhaven Enigmas: Diminutive: pageId: 141220 steam: 694400 -Din's Curse: +"Din's Curse": gog: 1207665923 pageId: 22558 steam: 217290 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\DinsCurse\User}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.local/DinsCurse/User}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\DinsCurse\User\chars}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.local/DinsCurse/User/chars}}' -Din's Legacy: + - "{{Game data/config|Windows|{{P|localappdata}}\\DinsCurse\\User}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.local/DinsCurse/User}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\DinsCurse\\User\\chars}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.local/DinsCurse/User/chars}}" +"Din's Legacy": gog: 1472462985 pageId: 109620 steam: 911550 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\DinsLegacy\chars}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\DinsLegacy\user.cfg}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.local/DinsLegacy/User/}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\DinsLegacy\\chars}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\DinsLegacy\\user.cfg}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.local/DinsLegacy/User/}}" Diner Bros: pageId: 93263 steam: 846800 templates: - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\JAYFLGAMES\Diner Bros}}' -'Diner Dash: Hometown Hero': + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\JAYFLGAMES\\Diner Bros}}" +"Diner Dash: Hometown Hero": pageId: 41252 steam: 37240 Diner Mania: @@ -45031,7 +43867,7 @@ Ding Dong XL: pageId: 94763 steam: 862570 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Nickervision Studios\Ding Dong XL\}}' + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Nickervision Studios\\Ding Dong XL\\}}" DingDingDing: pageId: 112620 steam: 936940 @@ -45039,51 +43875,48 @@ Dink Smallwood: gog: 1640863824 pageId: 6050 templates: - - '{{Game data/config|Windows|{{p|game}}\save.dat}}' - - '{{Game data/saves|Windows|{{p|game}}\dink\*.dat}}' + - "{{Game data/config|Windows|{{p|game}}\\save.dat}}" + - "{{Game data/saves|Windows|{{p|game}}\\dink\\*.dat}}" Dinkum: pageId: 141917 steam: 1062520 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\SOFTWARE\James Bendon\Dinkum\}}' - - >- - {{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\James - Bendon\Dinkum{{Refurl|url=https://dinkum.fandom.com/wiki/Saved_Games|title=dinkum.fandom.com|date=9 June - 2023}}}} + - "{{Game data/config|Windows|{{P|hkcu}}\\SOFTWARE\\James Bendon\\Dinkum\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\James Bendon\\Dinkum{{Refurl|url=https://dinkum.fandom.com/wiki/Saved_Games|title=dinkum.fandom.com|date=9 June 2023}}}}" Dinner Date: pageId: 41008 steam: 94000 templates: - - '{{Game data/config|Windows|{{p|game}}\Dinner Date\user}}' - - '{{Game data/saves|Windows|{{p|game}}\Dinner Date\user}}' + - "{{Game data/config|Windows|{{p|game}}\\Dinner Date\\user}}" + - "{{Game data/saves|Windows|{{p|game}}\\Dinner Date\\user}}" Dino Crisis: pageId: 54209 templates: - - '{{Game data/config|Windows|{{p|hklm}}\SOFTWARE\{{P|wow64}}\CAPCOM\DINOCRISIS}}' - - '{{Game data/saves|Windows|{{p|game}}}}' + - "{{Game data/config|Windows|{{p|hklm}}\\SOFTWARE\\{{P|wow64}}\\CAPCOM\\DINOCRISIS}}" + - "{{Game data/saves|Windows|{{p|game}}}}" Dino Crisis 2: pageId: 147898 templates: - - '{{Game data/config|Windows|{{p|game}}\dino2.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\SAVE*.DAT}}' + - "{{Game data/config|Windows|{{p|game}}\\dino2.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\SAVE*.DAT}}" Dino D-Day: pageId: 6967 steam: 70000 templates: - - '{{Game data/config|Windows|{{p|game}}\dinodday\cfg}}' + - "{{Game data/config|Windows|{{p|game}}\\dinodday\\cfg}}" Dino Dawn: pageId: 93651 steam: 854160 Dino Delivery: pageId: 143981 steam: 1109400 -Dino Dini's Kick Off Revival: +"Dino Dini's Kick Off Revival": pageId: 64632 steam: 537740 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\The Digital Lounge\Dino Dini''s Kick Off Revival}}' - - '{{Game data/saves|Windows|{{P|steam}}\steamapps\common\Dino Dini''s Kick Off Revival\Saves}}' -'Dino Eggs: Rebirth': + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\The Digital Lounge\\Dino Dini's Kick Off Revival}}" + - "{{Game data/saves|Windows|{{P|steam}}\\steamapps\\common\\Dino Dini's Kick Off Revival\\Saves}}" +"Dino Eggs: Rebirth": pageId: 33944 steam: 449320 Dino Game: @@ -45098,7 +43931,7 @@ Dino Run DX: pageId: 32953 steam: 248330 templates: - - '{{Game data/saves|Windows|{{p|appdata}}\com.pixeljam.dinorundx\Local Store\}}' + - "{{Game data/saves|Windows|{{p|appdata}}\\com.pixeljam.dinorundx\\Local Store\\}}" Dino Scourge: pageId: 78524 steam: 716950 @@ -45168,7 +44001,7 @@ Dinosaur Hunting Patrol 3D Multiplayer Online: Dinosaur Safari VR: pageId: 121568 steam: 953290 -'Dinosaur Shakespeare: To Date or Not To Date?': +"Dinosaur Shakespeare: To Date or Not To Date?": pageId: 142184 steam: 1082700 DinosaurIsland: @@ -45188,7 +44021,7 @@ Dinosis Survival: steam: 613270 Dinotopia: pageId: 147176 -'Dinotopia: Game Land Activity Center': +"Dinotopia: Game Land Activity Center": pageId: 128834 Diorama Battle of Ninja: pageId: 40078 @@ -45197,15 +44030,15 @@ Diorama Builder: pageId: 187459 steam: 1370170 templates: - - '{{Game data/config|Steam|{{p|userprofile\appdata\locallow}}\Virtual Arts Studio\Diorama Builder}}' - - '{{Game data/saves|Steam|{{p|userprofile\appdata\locallow}}\Virtual Arts Studio\Diorama Builder}}' + - "{{Game data/config|Steam|{{p|userprofile\\appdata\\locallow}}\\Virtual Arts Studio\\Diorama Builder}}" + - "{{Game data/saves|Steam|{{p|userprofile\\appdata\\locallow}}\\Virtual Arts Studio\\Diorama Builder}}" Diorama Dungeoncrawl: pageId: 135775 steam: 1074640 -'Diorama No.1: Blocked In': +"Diorama No.1: Blocked In": pageId: 43754 steam: 431390 -'Diorama No.3: The Marchland': +"Diorama No.3: The Marchland": pageId: 43756 steam: 431370 Diorama Worlds: @@ -45216,13 +44049,11 @@ Diplomacy Is Not an Option: pageId: 174890 steam: 1272320 templates: - - >- - {{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Door 407\Diplomacy is Not an - Option\DNOPersistentData\YUA}} + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Door 407\\Diplomacy is Not an Option\\DNOPersistentData\\YUA}}" Direct: pageId: 67227 steam: 675720 -'Direct Hit: Missile War': +"Direct Hit: Missile War": pageId: 49799 steam: 314760 Directionless: @@ -45240,7 +44071,7 @@ Dirty Bomb: pageId: 22958 steam: 333930 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\My Games\UnrealEngine3\ShooterGame\Config\}}' + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\My Games\\UnrealEngine3\\ShooterGame\\Config\\}}" Dirty Education: pageId: 145960 renamedFrom: @@ -45276,13 +44107,13 @@ Disassembly VR: Disaster Dragon x Girls from Different Worlds: pageId: 150129 steam: 1179440 -'Disaster Report 4: Summer Memories': +"Disaster Report 4: Summer Memories": gog: 1167113997 pageId: 139951 steam: 1060210 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\Saved Games\DisasterReport4\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\Saved Games\DisasterReport4}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\Saved Games\\DisasterReport4\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Saved Games\\DisasterReport4}}" Disastr Blastr: pageId: 52615 steam: 431200 @@ -45299,16 +44130,16 @@ Disc Jam: pageId: 34888 steam: 415880 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\DiscJam\Saved\Config}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\DiscJam\Saved\SaveGames}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\DiscJam\\Saved\\Config}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\DiscJam\\Saved\\SaveGames}}" Disc League: pageId: 62316 steam: 591140 Disc Room (2016): pageId: 159132 templates: - - '{{Game data/config|Windows|{{Path|game}}\options.ini}}' - - '{{Game data/saves|Windows|{{Path|localappdata}}\disc_room}}' + - "{{Game data/config|Windows|{{Path|game}}\\options.ini}}" + - "{{Game data/saves|Windows|{{Path|localappdata}}\\disc_room}}" Disc Room (2020): gog: 1887982662 pageId: 159141 @@ -45324,7 +44155,7 @@ Discharge: Dischord: pageId: 139576 steam: 1090120 -'Disciples II: Dark Prophecy': +"Disciples II: Dark Prophecy": gog: 1207658697 gogSide: - 1207663703 @@ -45333,39 +44164,39 @@ Dischord: steam: 1640 steamSide: - 1630 - - 1645 - 1635 + - 1645 templates: - - '{{Game data/config|Windows|{{p|Game}}\Disciple.ini}}' - - '{{Game data/saves|Windows|{{p|Game}}\SaveGame}}' -'Disciples III: Reincarnation': + - "{{Game data/config|Windows|{{p|Game}}\\Disciple.ini}}" + - "{{Game data/saves|Windows|{{p|Game}}\\SaveGame}}" +"Disciples III: Reincarnation": pageId: 51059 steam: 10270 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Disciples Reincarnation\user.ini}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Disciples Reincarnation\Save}}' -'Disciples III: Renaissance': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Disciples Reincarnation\\user.ini}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Disciples Reincarnation\\Save}}" +"Disciples III: Renaissance": pageId: 51068 steam: 33670 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\DisciplesIII}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\DisciplesIII\save}}' -'Disciples III: Resurrection': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\DisciplesIII}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\DisciplesIII\\save}}" +"Disciples III: Resurrection": pageId: 40891 steam: 200670 -'Disciples: Liberation': +"Disciples: Liberation": gog: 1914938584 pageId: 168250 steam: 1287840 templates: - - '{{Game data/saves|Steam|{{p|appdata}}\Kalypso Media\Disciples Liberation\Saves\{{p|uid}}}}' -'Disciples: Sacred Lands': + - "{{Game data/saves|Steam|{{p|appdata}}\\Kalypso Media\\Disciples Liberation\\Saves\\{{p|uid}}}}" +"Disciples: Sacred Lands": gog: 1207658683 pageId: 13965 steam: 281450 templates: - - '{{Game data/config|Windows|{{p|game}}\Exe\DISCIPLE.INI}}' - - '{{Game data/saves|Windows|{{p|Game}}\Savegame}}' + - "{{Game data/config|Windows|{{p|game}}\\Exe\\DISCIPLE.INI}}" + - "{{Game data/saves|Windows|{{p|Game}}\\Savegame}}" Disco Bullets: pageId: 150836 steam: 1148850 @@ -45381,12 +44212,10 @@ Disco Elysium: steamSide: - 1173140 templates: - - >- - {{Game data/config|Windows|{{P|userprofile}}\AppData\LocalLow\ZAUM Studio\Disco - Elysium\Settings\Settings.json|{{P|hkcu}}\Software\ZAUM Studio\Disco Elysium\}} - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/com.zaumstudio.discoelysium/Settings/}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\ZAUM Studio\Disco Elysium\SaveGames\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/com.zaumstudio.discoelysium/SaveGames/}}' + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\ZAUM Studio\\Disco Elysium\\Settings\\Settings.json|{{P|hkcu}}\\Software\\ZAUM Studio\\Disco Elysium\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/com.zaumstudio.discoelysium/Settings/}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\ZAUM Studio\\Disco Elysium\\SaveGames\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/com.zaumstudio.discoelysium/SaveGames/}}" Disco Time 80s VR: pageId: 63258 steam: 649880 @@ -45423,24 +44252,24 @@ Discovering Colors - Animals: Discovering Space 2: pageId: 58906 steam: 496740 -'Discovery Tour: Ancient Egypt': +"Discovery Tour: Ancient Egypt": pageId: 87656 renamedFrom: - - 'Discovery Tour by Assassin''s Creed: Ancient Egypt' + - "Discovery Tour by Assassin's Creed: Ancient Egypt" steam: 775430 -'Discovery Tour: Ancient Greece': +"Discovery Tour: Ancient Greece": pageId: 146671 renamedFrom: - - 'Discovery Tour by Assassin''s Creed: Ancient Greece' - - 'Discovery Tour: Ancient Greece by Ubisoft' + - "Discovery Tour by Assassin's Creed: Ancient Greece" + - "Discovery Tour: Ancient Greece by Ubisoft" templates: - - '{{Game data/saves|Ubisoft Connect|{{p|uplay}}\savegames\{{p|uid}}\5404\}}' -'Discovery Tour: Viking Age': + - "{{Game data/saves|Ubisoft Connect|{{p|uplay}}\\savegames\\{{p|uid}}\\5404\\}}" +"Discovery Tour: Viking Age": pageId: 172338 Discovery! A Seek and Find Adventure: pageId: 41352 steam: 16000 -'Discovr Egypt: King Tut''s Tomb': +"Discovr Egypt: King Tut's Tomb": pageId: 43642 steam: 459170 Discrepant: @@ -45451,12 +44280,12 @@ Discs of Steel Party: steam: 859660 Discworld: pageId: 131790 -'Discworld II: Missing Presumed...!?': +"Discworld II: Missing Presumed...!?": pageId: 131793 Discworld Noir: pageId: 29938 templates: - - '{{Game data/saves|Windows|{{p|game}}\save}}' + - "{{Game data/saves|Windows|{{p|game}}\\save}}" Disdoored: pageId: 95188 steam: 845630 @@ -45464,52 +44293,47 @@ Disfigure: pageId: 190813 steam: 2083160 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\ColdBrew Entertainment\Disfigure}}' - - '{{Game data/saves|Windows|{{P|hkcu}}\Software\ColdBrew Entertainment\Disfigure}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\ColdBrew Entertainment\\Disfigure}}" + - "{{Game data/saves|Windows|{{P|hkcu}}\\Software\\ColdBrew Entertainment\\Disfigure}}" Disgaea 2 PC: pageId: 36306 steam: 495280 templates: - - '{{Game data/config|Linux|{{p|game}}/game.cfg}}' - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\495280\remote\}}' + - "{{Game data/config|Linux|{{p|game}}/game.cfg}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\495280\\remote\\}}" Disgaea 4 Complete+: pageId: 163278 steam: 1233880 templates: - - >- - {{Game data/config|Windows|{{p|appdata}}\Nippon Ichi Software, Inc\Disgaea 4 - Complete+\{{p|uid}}\config.ini|{{p|appdata}}\Nippon Ichi Software, Inc\Disgaea 4 - Complete+\{{p|uid}}\keysettings.bin}} - - '{{Game data/saves|Steam|{{p|appdata}}\Nippon Ichi Software, Inc\Disgaea 4 Complete+\{{p|uid}}\SaveData\}}' + - "{{Game data/config|Windows|{{p|appdata}}\\Nippon Ichi Software, Inc\\Disgaea 4 Complete+\\{{p|uid}}\\config.ini|{{p|appdata}}\\Nippon Ichi Software, Inc\\Disgaea 4 Complete+\\{{p|uid}}\\keysettings.bin}}" + - "{{Game data/saves|Steam|{{p|appdata}}\\Nippon Ichi Software, Inc\\Disgaea 4 Complete+\\{{p|uid}}\\SaveData\\}}" Disgaea 5 Complete: pageId: 91693 steam: 803600 templates: - - '{{Game data/config|Windows|{{P|appdata}}\Nippon Ichi Software, Inc\Disgaea 5 Complete\{{p|uid}}\keysettings.bin}}' - - >- - {{Game data/saves|Windows|{{P|appdata}}\Nippon Ichi Software, Inc\Disgaea 5 Complete\{{p|uid}}\SaveData\Save_*.sav - | {{P|appdata}}\Nippon Ichi Software, Inc\Disgaea 5 Complete\{{p|uid}}\SaveData\SystemSave.sav }} + - "{{Game data/config|Windows|{{P|appdata}}\\Nippon Ichi Software, Inc\\Disgaea 5 Complete\\{{p|uid}}\\keysettings.bin}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\Nippon Ichi Software, Inc\\Disgaea 5 Complete\\{{p|uid}}\\SaveData\\Save_*.sav | {{P|appdata}}\\Nippon Ichi Software, Inc\\Disgaea 5 Complete\\{{p|uid}}\\SaveData\\SystemSave.sav }}" Disgaea 6 Complete: pageId: 175139 steam: 1749750 templates: - - '{{Game data/config|Windows|{{P|appdata}}\Nippon Ichi Software, Inc\Disgaea 6 Complete\{{P|uid}}\Setting.ini}}' - - '{{Game data/saves|Windows|{{P|appdata}}\Nippon Ichi Software, Inc\Disgaea 6 Complete\{{P|uid}}\}}' -'Disgaea 7: Vows of the Virtueless': + - "{{Game data/config|Windows|{{P|appdata}}\\Nippon Ichi Software, Inc\\Disgaea 6 Complete\\{{P|uid}}\\Setting.ini}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\Nippon Ichi Software, Inc\\Disgaea 6 Complete\\{{P|uid}}\\}}" +"Disgaea 7: Vows of the Virtueless": pageId: 184787 steam: 2250600 templates: - - '{{Game data/saves|Windows|{{P|appdata}}\Nippon Ichi Software, Inc\Disgaea 7\Setting.ini}}' - - '{{Game data/saves|Windows|{{P|appdata}}\Nippon Ichi Software, Inc\Disgaea 7\{{P|uid}}\}}' + - "{{Game data/saves|Windows|{{P|appdata}}\\Nippon Ichi Software, Inc\\Disgaea 7\\Setting.ini}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\Nippon Ichi Software, Inc\\Disgaea 7\\{{P|uid}}\\}}" Disgaea PC: pageId: 30651 steam: 405900 steamSide: - - 439541 - 439540 + - 439541 templates: - - '{{Game data/config|Windows|{{p|game}}\*.cfg}}' - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\405900\remote\}}' + - "{{Game data/config|Windows|{{p|game}}\\*.cfg}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\405900\\remote\\}}" Disgaea RPG: pageId: 173220 steam: 1791620 @@ -45522,22 +44346,19 @@ Dishonored: steam: 205100 steamSide: - 208570 - - 212894 - 208575 - 212893 + - 212894 - 217980 - - 218786 - - 218785 - 218784 + - 218785 - 218786 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\My - Games\Dishonored\DishonoredGame\Config\|{{p|hkcu}}\Software\Arkane\Dishonored\}} - - '{{Game data/config|Steam|{{p|steam}}\userdata\{{p|uid}}\205100\remote\options.sav}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Dishonored\DishonoredGame\SaveData}}' - - '{{Game data/saves|Epic Games Launcher|{{p|userprofile\Documents}}\My Games\Dishonored\DishonoredGame\SaveData}}' - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\205100\remote\|{{p|steam}}\userdata\{{p|uid}}\217980\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Dishonored\\DishonoredGame\\Config\\|{{p|hkcu}}\\Software\\Arkane\\Dishonored\\}}" + - "{{Game data/config|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\205100\\remote\\options.sav}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Dishonored\\DishonoredGame\\SaveData}}" + - "{{Game data/saves|Epic Games Launcher|{{p|userprofile\\Documents}}\\My Games\\Dishonored\\DishonoredGame\\SaveData}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\205100\\remote\\|{{p|steam}}\\userdata\\{{p|uid}}\\217980\\}}" Dishonored 2: gog: 1431426311 pageId: 25753 @@ -45545,15 +44366,15 @@ Dishonored 2: steamSide: - 596060 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\Saved Games\Arkane Studios\dishonored2\base\dishonored2Config.cfg}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\Saved Games\Arkane Studios\dishonored2\base\savegame\}}' -'Dishonored: Death of the Outsider': + - "{{Game data/config|Windows|{{p|userprofile}}\\Saved Games\\Arkane Studios\\dishonored2\\base\\dishonored2Config.cfg}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Saved Games\\Arkane Studios\\dishonored2\\base\\savegame\\}}" +"Dishonored: Death of the Outsider": gog: 1707860700 pageId: 63518 steam: 614570 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\Saved Games\Arkane Studios\Dishonored_DO\base\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\Saved Games\Arkane Studios\Dishonored_DO\base\savegame\}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\Saved Games\\Arkane Studios\\Dishonored_DO\\base\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Saved Games\\Arkane Studios\\Dishonored_DO\\base\\savegame\\}}" Dishwasher: pageId: 98608 steam: 878310 @@ -45564,8 +44385,8 @@ Disintegration: pageId: 143494 steam: 536280 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Robogore\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\Robogore\Saved\SaveGames}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\Robogore\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Robogore\\Saved\\SaveGames}}" Disjoint: pageId: 91823 steam: 788120 @@ -45574,40 +44395,40 @@ Disjunction: pageId: 122788 steam: 979310 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Disjunction_v30_2_2\-1\settings.json}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\Disjunction_v30_2_2\-1\save.json}}' -'Dismantle: Construct Carnage': + - "{{Game data/config|Windows|{{P|localappdata}}\\Disjunction_v30_2_2\\-1\\settings.json}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Disjunction_v30_2_2\\-1\\save.json}}" +"Dismantle: Construct Carnage": pageId: 127197 steam: 912390 -'Disney Classic Games: Aladdin and The Lion King': +"Disney Classic Games: Aladdin and The Lion King": gog: 1361333080 pageId: 147702 steam: 1126190 templates: - - '{{Game data/config|Windows|{{p|APPDATA}}/DisneyClassicGamesCollection}}' + - "{{Game data/config|Windows|{{p|APPDATA}}/DisneyClassicGamesCollection}}" Disney Crossy Road: pageId: 170960 Disney Dreamlight Valley: pageId: 181575 steam: 1401590 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Gameloft\Disney Dreamlight Valley}}' + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Gameloft\\Disney Dreamlight Valley}}" Disney Fairies Hidden Treasures: pageId: 167518 templates: - - '{{Game data/saves|Windows|{{p|LOCALAPPDATA}}\Packages\Microsoft.DisneyFairies_8wekyb3d8bbwe\LocalState}}' -'Disney Fairies: Tinker Bell''s Adventure': + - "{{Game data/saves|Windows|{{p|LOCALAPPDATA}}\\Packages\\Microsoft.DisneyFairies_8wekyb3d8bbwe\\LocalState}}" +"Disney Fairies: Tinker Bell's Adventure": pageId: 49552 steam: 318350 templates: - - '{{Game data/config|Windows|{{p|game}}\data\gfx\}}' + - "{{Game data/config|Windows|{{p|game}}\\data\\gfx\\}}" Disney Getaway Blast: pageId: 157737 Disney Girlfriends: pageId: 168377 Disney Hidden Worlds: pageId: 168994 -'Disney Infinity 1.0: Gold Edition': +"Disney Infinity 1.0: Gold Edition": pageId: 54731 steam: 541640 Disney Infinity 2.0: @@ -45619,9 +44440,9 @@ Disney Infinity 3.0: steamSide: - 361640 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Disney Interactive\Disney Infinity 3.0 Steam\Settings}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Disney Interactive\Disney Infinity 3.0\}}' -'Disney Infinity: Toy Box': + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Disney Interactive\\Disney Infinity 3.0 Steam\\Settings}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Disney Interactive\\Disney Infinity 3.0\\}}" +"Disney Infinity: Toy Box": pageId: 174487 Disney Magic Kingdoms: pageId: 92549 @@ -45632,18 +44453,18 @@ Disney Planes: steam: 286880 Disney Princess Majestic Quest: pageId: 166615 -'Disney Princess: Enchanted Journey': +"Disney Princess: Enchanted Journey": pageId: 49524 steam: 322130 templates: - - '{{Game data/config|Windows|{{P|programdata}}\Disney Interactive Studios\Disney Princess - Enchanted Journey}}' - - '{{Game data/saves|Windows|{{P|programdata}}\Disney Interactive Studios\Disney Princess - Enchanted Journey}}' -'Disney Princess: Magical Dress-Up': + - "{{Game data/config|Windows|{{P|programdata}}\\Disney Interactive Studios\\Disney Princess - Enchanted Journey}}" + - "{{Game data/saves|Windows|{{P|programdata}}\\Disney Interactive Studios\\Disney Princess - Enchanted Journey}}" +"Disney Princess: Magical Dress-Up": pageId: 166643 -'Disney Princess: My Fairytale Adventure': +"Disney Princess: My Fairytale Adventure": pageId: 49544 steam: 319080 -'Disney Princess: Royal Horse Show': +"Disney Princess: Royal Horse Show": pageId: 166680 Disney Solitaire: pageId: 170972 @@ -45656,62 +44477,57 @@ Disney Universe: pageId: 49554 steam: 316260 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Disney Interactive Studios\Disney Universe}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Disney Interactive Studios\Disney Universe}}' -Disney's Aladdin: + - "{{Game data/config|Windows|{{p|localappdata}}\\Disney Interactive Studios\\Disney Universe}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Disney Interactive Studios\\Disney Universe}}" +"Disney's Aladdin": gog: 1364995551 pageId: 79097 steam: 561100 templates: - - '{{Game data/config|DOS|{{p|game}}\SOUND.CFG}}' -'Disney''s Animated Storybook: 101 Dalmatians': + - "{{Game data/config|DOS|{{p|game}}\\SOUND.CFG}}" +"Disney's Animated Storybook: 101 Dalmatians": pageId: 55230 -'Disney''s Animated Storybook: Toy Story': +"Disney's Animated Storybook: Toy Story": pageId: 54857 -Disney's Chicken Little: +"Disney's Chicken Little": pageId: 48621 steam: 339040 templates: - - '{{Game data/config|Windows|{{P|appdata}}\Buena Vista Games\Chicken Little}}' - - '{{Game data/saves|Windows|{{P|appdata}}\Buena Vista Games\Chicken Little}}' -'Disney''s Chicken Little: Ace in Action': + - "{{Game data/config|Windows|{{P|appdata}}\\Buena Vista Games\\Chicken Little}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\Buena Vista Games\\Chicken Little}}" +"Disney's Chicken Little: Ace in Action": pageId: 48619 steam: 338300 templates: - - '{{Game data/config|Windows|{{P|appdata}}\Disney Interactive Studios\Chicken Little 2}}' - - '{{Game data/saves|Windows|{{P|appdata}}\Disney Interactive Studios\Chicken Little 2\SaveGames}}' -Disney's Dinosaur: + - "{{Game data/config|Windows|{{P|appdata}}\\Disney Interactive Studios\\Chicken Little 2}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\Disney Interactive Studios\\Chicken Little 2\\SaveGames}}" +"Disney's Dinosaur": pageId: 88400 templates: - - '{{Game data/config|Windows|{{p|windir}}\UbiSoft\ubi.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\Gamedata\SaveGame}}' -Disney's Hercules: + - "{{Game data/config|Windows|{{p|windir}}\\UbiSoft\\ubi.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\Gamedata\\SaveGame}}" +"Disney's Hercules": gog: 1117508714 pageId: 40470 steam: 987400 templates: - - '{{Game data/config|Windows|{{p|game}}\DISNEY.INI}}' - - '{{Game data/saves|Windows|{{p|HKLM}}\SOFTWARE\Disney Interactive\Hercules\1.00\Config}}' -Disney's Math Quest with Aladdin: + - "{{Game data/config|Windows|{{p|game}}\\DISNEY.INI}}" + - "{{Game data/saves|Windows|{{p|HKLM}}\\SOFTWARE\\Disney Interactive\\Hercules\\1.00\\Config}}" +"Disney's Math Quest with Aladdin": pageId: 106247 -Disney's Princess Fashion Boutique: +"Disney's Princess Fashion Boutique": pageId: 166685 Disneyland Adventures: pageId: 76748 steam: 630610 templates: - - >- - {{Game data/config|Microsoft - Store|{{p|localappdata}}\Packages\Microsoft.DisneylandAdventures_8wekyb3d8bbwe\Settings\settings.dat | - {{p|localappdata}}\Packages\Microsoft.DisneylandAdventures_8wekyb3d8bbwe\LocalState}} - - >- - {{Game data/saves|Microsoft - Store|{{p|localappdata}}\Packages\Microsoft.DisneylandAdventures_8wekyb3d8bbwe\SystemAppData\wgs}} - - '{{Game data/saves|Steam|{{P|steam}}\userdata\{{P|uid}}\630610\remote}}' + - "{{Game data/config|Microsoft Store|{{p|localappdata}}\\Packages\\Microsoft.DisneylandAdventures_8wekyb3d8bbwe\\Settings\\settings.dat | {{p|localappdata}}\\Packages\\Microsoft.DisneylandAdventures_8wekyb3d8bbwe\\LocalState}}" + - "{{Game data/saves|Microsoft Store|{{p|localappdata}}\\Packages\\Microsoft.DisneylandAdventures_8wekyb3d8bbwe\\SystemAppData\\wgs}}" + - "{{Game data/saves|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\630610\\remote}}" Disobedient Sheep: pageId: 130686 steam: 1035530 -'Disobey: Revolt Simulator': +"Disobey: Revolt Simulator": pageId: 39488 steam: 461190 Disorder: @@ -45721,8 +44537,8 @@ Disoriented: pageId: 53455 steam: 556240 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\BrickCream\Disoriented\}}' - - '{{Game data/saves|Windows|{{P|game}}\Disoriented_Data\. Saves}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\BrickCream\\Disoriented\\}}" + - "{{Game data/saves|Windows|{{P|game}}\\Disoriented_Data\\. Saves}}" Disparity: pageId: 89304 steam: 715460 @@ -45733,9 +44549,9 @@ Dispatcher: pageId: 45651 steam: 341980 templates: - - '{{Game data/config|Windows|{{p|LOCALAPPDATA}}\Disp1\Saved\SaveGames\GS.sav}}' - - '{{Game data/saves|Windows|{{p|LOCALAPPDATA}}\Disp1\Saved\SaveGames\}}' -'Dispatcher: Revoke': + - "{{Game data/config|Windows|{{p|LOCALAPPDATA}}\\Disp1\\Saved\\SaveGames\\GS.sav}}" + - "{{Game data/saves|Windows|{{p|LOCALAPPDATA}}\\Disp1\\Saved\\SaveGames\\}}" +"Dispatcher: Revoke": pageId: 39065 steam: 341980 Dispersio: @@ -45771,9 +44587,7 @@ Dissidia Final Fantasy NT: pageId: 129093 steam: 921590 templates: - - >- - {{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\DISSIDIA FINAL FANTASY NT Free - Edition\Steam\{{p|uid}}\}} + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\DISSIDIA FINAL FANTASY NT Free Edition\\Steam\\{{p|uid}}\\}}" Dissimilated Land: pageId: 105467 steam: 843720 @@ -45786,21 +44600,19 @@ Dissolution: Dissolving: pageId: 136655 steam: 1077230 -'Dissonance: An Interactive Novelette': +"Dissonance: An Interactive Novelette": pageId: 45455 steam: 421620 Distance: pageId: 7038 steam: 233610 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\My - Games\Distance\GameData.xml|{{p|userprofile\Documents}}\My Games\Distance\Settings\}} - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Refract/Distance/}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/refract/Distance|~/.config/unity3d/Refract/Distance}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Distance\Profiles\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Refract/Distance/Profiles/}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/refract/Distance/Profiles/}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Distance\\GameData.xml|{{p|userprofile\\Documents}}\\My Games\\Distance\\Settings\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Refract/Distance/}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/refract/Distance|~/.config/unity3d/Refract/Distance}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Distance\\Profiles\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Refract/Distance/Profiles/}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/refract/Distance/Profiles/}}" Distant Castle: pageId: 93633 steam: 843400 @@ -45817,7 +44629,7 @@ Distant Space: Distant Space 2: pageId: 74668 steam: 729460 -'Distant Star: Revenant Fleet': +"Distant Star: Revenant Fleet": pageId: 48272 steam: 335830 Distant Worlds 2: @@ -45825,14 +44637,14 @@ Distant Worlds 2: pageId: 175149 steam: 1531540 templates: - - '{{Game data/saves|Windows|{{p|game}}\data\SavedGames}}' -'Distant Worlds: Universe': + - "{{Game data/saves|Windows|{{p|game}}\\data\\SavedGames}}" +"Distant Worlds: Universe": gog: 1928154062 pageId: 50198 steam: 261470 templates: - - '{{Game data/config|Windows|{{P|userprofile\documents}}\My Games\Distant Worlds Universe|{{P|game}}\Startup.ini}}' - - '{{Game data/saves|Windows|{{P|userprofile\documents}}\My Games\Distant Worlds Universe\SavedGames}}' + - "{{Game data/config|Windows|{{P|userprofile\\documents}}\\My Games\\Distant Worlds Universe|{{P|game}}\\Startup.ini}}" + - "{{Game data/saves|Windows|{{P|userprofile\\documents}}\\My Games\\Distant Worlds Universe\\SavedGames}}" Distorted Illusions: pageId: 113446 steam: 878280 @@ -45847,19 +44659,19 @@ Distraint: pageId: 37584 steam: 395170 templates: - - '{{Game data/config|Windows|{{P|appdata}}\distraint\settings.ini}}' - - '{{Game data/saves|Windows|{{P|appdata}}\distraint\savedata.ini}}' + - "{{Game data/config|Windows|{{P|appdata}}\\distraint\\settings.ini}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\distraint\\savedata.ini}}" Distraint 2: gog: 2078420771 pageId: 79414 steam: 743390 templates: - - '{{Game data/config|Windows|{{P|appdata}}\distraint2\settings.ini}}' - - '{{Game data/saves|Windows|{{P|appdata}}\distraint2\savedata.ini}}' -'Distress: A Choice-Driven Sci-Fi Adventure': + - "{{Game data/config|Windows|{{P|appdata}}\\distraint2\\settings.ini}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\distraint2\\savedata.ini}}" +"Distress: A Choice-Driven Sci-Fi Adventure": pageId: 120913 steam: 960550 -'District 112 Incident: Bowling Alley': +"District 112 Incident: Bowling Alley": pageId: 93321 steam: 809180 District Steel: @@ -45868,23 +44680,23 @@ District Steel: District Wars: pageId: 80311 templates: - - '{{Game data/config|Windows|{{p|game}}\settings.txt}}' + - "{{Game data/config|Windows|{{p|game}}\\settings.txt}}" Distrust: gog: 1484448851 pageId: 62592 steam: 635200 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Alawar\Distrust\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Alawar\Distrust\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Alawar\\Distrust\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Alawar\\Distrust\\}}" Disturbed: pageId: 50833 steam: 529780 templates: - - '{{Game data/config|Windows|{{P|appdata}}\RenPy\Disturbed-1463875248\persistent}}' - - '{{Game data/config|Linux|{{P|linuxhome}}/.renpy/Disturbed-1463875248/persistent}}' - - '{{Game data/saves|Windows|{{P|appdata}}\RenPy\Disturbed-1463875248\*.save}}' - - '{{Game data/saves|Linux|{{P|linuxhome}}/.renpy/Disturbed-1463875248/*.save}}' -'Disturbed: Beyond Aramor': + - "{{Game data/config|Windows|{{P|appdata}}\\RenPy\\Disturbed-1463875248\\persistent}}" + - "{{Game data/config|Linux|{{P|linuxhome}}/.renpy/Disturbed-1463875248/persistent}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\RenPy\\Disturbed-1463875248\\*.save}}" + - "{{Game data/saves|Linux|{{P|linuxhome}}/.renpy/Disturbed-1463875248/*.save}}" +"Disturbed: Beyond Aramor": pageId: 61162 renamedFrom: - Disturbed 2 @@ -45913,7 +44725,7 @@ Dive to the Titanic: Dive with Sylvia VR: pageId: 138633 steam: 1080370 -'Dive: Starpath': +"Dive: Starpath": pageId: 81550 steam: 475070 DiveReal: @@ -45923,27 +44735,27 @@ Divekick: pageId: 9662 steam: 244730 templates: - - '{{Game data/config|Windows|{{p|game}}\GraphicsOptions.xml}}' - - '{{Game data/saves|Windows|{{p|steam}}\userdata\{{p|uid}}\244730\remote\divekick\profilesave.sav}}' + - "{{Game data/config|Windows|{{p|game}}\\GraphicsOptions.xml}}" + - "{{Game data/saves|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\244730\\remote\\divekick\\profilesave.sav}}" Divenia: pageId: 122820 steam: 950260 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Divenia\Saved\Config\WindowsNoEditor}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\Divenia\\Saved\\Config\\WindowsNoEditor}}" Diver - Sea Survival Simulator: pageId: 66125 steam: 681760 Diver Down: pageId: 28644 templates: - - '{{Game data/config|DOS|{{P|game}}\USER.cfg}}' - - '{{Game data/config|Windows|{{P|game}}\winv2.cfg}}' - - '{{Game data/saves|DOS|{{p|game}}\}}' - - '{{Game data/saves|Windows|{{p|game}}\}}' -'Divergence: Online': + - "{{Game data/config|DOS|{{P|game}}\\USER.cfg}}" + - "{{Game data/config|Windows|{{P|game}}\\winv2.cfg}}" + - "{{Game data/saves|DOS|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\}}" +"Divergence: Online": pageId: 45073 steam: 422940 -'Divergence: Year Zero': +"Divergence: Year Zero": pageId: 51943 steam: 527950 Divide: @@ -45956,16 +44768,16 @@ Divide By Sheep: pageId: 37477 steam: 252130 templates: - - '{{Game data/saves|Windows|{{p|appdata}}\Dividebysheep\Local Store}}' + - "{{Game data/saves|Windows|{{p|appdata}}\\Dividebysheep\\Local Store}}" Divided Reigns: pageId: 173375 steam: 1139160 templates: - - '{{Game data/saves|Windows|{{p|game}}\save\*.rpgsave|{{p|game}}\www\save\*.rpgsave}}' + - "{{Game data/saves|Windows|{{p|game}}\\save\\*.rpgsave|{{p|game}}\\www\\save\\*.rpgsave}}" Divided We Fall: pageId: 38749 steam: 495580 -'Divided: Soul Theft': +"Divided: Soul Theft": pageId: 88097 steam: 811640 Divination: @@ -45974,7 +44786,7 @@ Divination: Divine Ascent: pageId: 59510 steam: 606300 -'Divine Business: Fantasy Trading Simulator': +"Divine Business: Fantasy Trading Simulator": pageId: 126131 steam: 938350 Divine Commander: @@ -45988,9 +44800,9 @@ Divine Divinity: pageId: 3574 steam: 214170 templates: - - '{{Game data/config|Windows|{{p|game}}\config.div}}' - - '{{Game data/saves|Windows|{{p|game}}\savegames}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/GOG.com/Divine Divinity⁩/savegames⁩}}' + - "{{Game data/config|Windows|{{p|game}}\\config.div}}" + - "{{Game data/saves|Windows|{{p|game}}\\savegames}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/GOG.com/Divine Divinity⁩/savegames⁩}}" Divine Knockout: pageId: 183732 steam: 1294660 @@ -46008,20 +44820,20 @@ Divine Slice of Life: pageId: 45938 steam: 348540 templates: - - '{{Game data/config|Windows|{{p|game}}\renpy\config.py}}' - - '{{Game data/saves|Windows|{{p|game}}\game\saves|{{p|appdata}}\renpy\divineslice}}' + - "{{Game data/config|Windows|{{p|game}}\\renpy\\config.py}}" + - "{{Game data/saves|Windows|{{p|game}}\\game\\saves|{{p|appdata}}\\renpy\\divineslice}}" Divine Souls: pageId: 49757 steam: 300040 Diving Trunks: pageId: 63966 steam: 660040 -'Divinia Chronicles: Relics of Gan-Ti': +"Divinia Chronicles: Relics of Gan-Ti": pageId: 46148 steam: 302810 templates: - - '{{Game data/config|Windows|{{P|game}}\divchronicles\cfg\}}' -'Divinity II: Developer''s Cut': + - "{{Game data/config|Windows|{{P|game}}\\divchronicles\\cfg\\}}" +"Divinity II: Developer's Cut": gog: 1207659105 pageId: 5216 steam: 219780 @@ -46029,9 +44841,9 @@ Diving Trunks: - 27220 - 58540 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Divinity 2\Profile}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Divinity 2\Savegames\}}' -'Divinity: Dragon Commander': + - "{{Game data/config|Windows|{{p|localappdata}}\\Divinity 2\\Profile}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Divinity 2\\Savegames\\}}" +"Divinity: Dragon Commander": gog: 1207659263 gogSide: - 1207659202 @@ -46041,36 +44853,28 @@ Diving Trunks: steamSide: - 243959 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Larian Studios\Dragon Commander\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Larian Studios\Dragon Commander\Savegames\}}' -'Divinity: Original Sin': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Larian Studios\\Dragon Commander\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Larian Studios\\Dragon Commander\\Savegames\\}}" +"Divinity: Original Sin": gog: 1207664923 pageId: 14606 steam: 230230 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Larian Studios\Divinity Original Sin\}}' - - >- - {{Game data/saves|Windows|{{p|userprofile\Documents}}\Larian Studios\Divinity Original - Sin\PlayerProfiles\{{p|uid}}\Savegames}} - - >- - {{Game data/saves|OS X|{{p|osxhome}}/Documents/Larian Studios/Divinity Original - Sin/PlayerProfiles/{{p|uid}}/Savegames}} -'Divinity: Original Sin - Enhanced Edition': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Larian Studios\\Divinity Original Sin\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Larian Studios\\Divinity Original Sin\\PlayerProfiles\\{{p|uid}}\\Savegames}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Documents/Larian Studios/Divinity Original Sin/PlayerProfiles/{{p|uid}}/Savegames}}" +"Divinity: Original Sin - Enhanced Edition": gog: 1445516929 gogSide: - 1445524575 pageId: 29523 steam: 373420 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\Larian Studios\Divinity Original Sin Enhanced - Edition\PlayerProfiles\}} - - '{{Game data/config|Linux|{{p|linuxhome}}/Larian Studios/Divinity Original Sin Enhanced Edition/}}' - - >- - {{Game data/saves|Windows|{{p|userprofile\Documents}}\Larian Studios\Divinity Original Sin Enhanced - Edition\PlayerProfiles\}} - - '{{Game data/saves|Linux|{{p|linuxhome}}/Larian Studios/Divinity Original Sin Enhanced Edition/}}' -'Divinity: Original Sin II': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Larian Studios\\Divinity Original Sin Enhanced Edition\\PlayerProfiles\\}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/Larian Studios/Divinity Original Sin Enhanced Edition/}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Larian Studios\\Divinity Original Sin Enhanced Edition\\PlayerProfiles\\}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/Larian Studios/Divinity Original Sin Enhanced Edition/}}" +"Divinity: Original Sin II": gog: 1584823040 gogSide: - 1330235937 @@ -46079,11 +44883,9 @@ Diving Trunks: pageId: 38947 steam: 435150 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Larian Studios\Divinity Original Sin 2\}}' - - >- - {{Game data/saves|Windows|{{p|userprofile\Documents}}\Larian Studios\Divinity Original Sin - 2\PlayerProfiles\{{p|uid}}\Savegames}} -'Divinity: Original Sin II - Definitive Edition': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Larian Studios\\Divinity Original Sin 2\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Larian Studios\\Divinity Original Sin 2\\PlayerProfiles\\{{p|uid}}\\Savegames}}" +"Divinity: Original Sin II - Definitive Edition": gog: 1584823040 gogSide: - 1330235937 @@ -46092,26 +44894,16 @@ Diving Trunks: pageId: 124876 steam: 435150 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\Larian Studios\Divinity Original Sin 2 Definitive - Edition\graphicSettings.lsx|{{p|userprofile\Documents}}\Larian Studios\Divinity Original Sin 2 Definitive - Edition\PlayerProfiles\{{P|uid}}\}} - - |- - {{Game data/config|OS X| - ~/Documents/Larian Studios/Divinity Original Sin 2 Definitive Edition/graphicSettings.lsx
- ~/Documents/Larian Studios/Divinity Original Sin 2 Definitive Edition/PlayerProfiles/{{P|uid}}/ }} - - >- - {{Game data/saves|Windows|{{p|userprofile\Documents}}\Larian Studios\Divinity Original Sin 2 Definitive - Edition\PlayerProfiles\{{p|uid}}\Savegames\}} - - >- - {{Game data/saves|OS X| ~/Documents/Larian Studios/Divinity Original Sin 2 Definitive - Edition/PlayerProfiles/{{p|uid}}/Savegames}} + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Larian Studios\\Divinity Original Sin 2 Definitive Edition\\graphicSettings.lsx|{{p|userprofile\\Documents}}\\Larian Studios\\Divinity Original Sin 2 Definitive Edition\\PlayerProfiles\\{{P|uid}}\\}}" + - "{{Game data/config|OS X|\n~/Documents/Larian Studios/Divinity Original Sin 2 Definitive Edition/graphicSettings.lsx
\n~/Documents/Larian Studios/Divinity Original Sin 2 Definitive Edition/PlayerProfiles/{{P|uid}}/ }}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Larian Studios\\Divinity Original Sin 2 Definitive Edition\\PlayerProfiles\\{{p|uid}}\\Savegames\\}}" + - "{{Game data/saves|OS X| ~/Documents/Larian Studios/Divinity Original Sin 2 Definitive Edition/PlayerProfiles/{{p|uid}}/Savegames}}" Divinoids: pageId: 159902 steam: 1251670 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Weltall Zero\Divinoids}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Weltall Zero\Divinoids\saveGame.sav}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Weltall Zero\\Divinoids}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Weltall Zero\\Divinoids\\saveGame.sav}}" Divinum: pageId: 151513 steam: 1148130 @@ -46132,7 +44924,7 @@ Dizzy Prince of the Yolkfolk: Djilyaro: pageId: 76221 steam: 740320 -'DmC: Devil May Cry': +"DmC: Devil May Cry": pageId: 4412 steam: 220440 steamSide: @@ -46141,10 +44933,8 @@ Djilyaro: - 223793 - 229080 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\My - Games\UnrealEngine3\DevilGame\*.ini|{{p|userprofile\Documents}}\My Games\UnrealEngine3\DevilGame\Config\}} - - '{{Game data/saves|Windows|{{p|steam}}\userdata\{{p|uid}}\220440\remote\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\UnrealEngine3\\DevilGame\\*.ini|{{p|userprofile\\Documents}}\\My Games\\UnrealEngine3\\DevilGame\\Config\\}}" + - "{{Game data/saves|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\220440\\remote\\}}" Do Not Fall: pageId: 49083 steam: 333130 @@ -46153,14 +44943,12 @@ Do Not Feed the Monkeys: pageId: 66713 steam: 658850 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Fictiorama Studios\Do not feed the monkeys\}}' - - '{{Game data/config|OS X|{{P|osxhome}}/Library/Preferences/unity.Fictiorama Studios.Do not feed the monkeys.plist}}' - - '{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/Fictiorama Studios/Do not feed the monkeys/prefs}}' - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\Fictiorama Studios\Do not feed the monkeys}}' - - >- - {{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/unity.Fictiorama Studios.Do not feed the - monkeys}} - - '{{Game data/saves|Linux|{{p|xdgconfighome}}/unity3d/Fictiorama Studios/Do not feed the monkeys}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Fictiorama Studios\\Do not feed the monkeys\\}}" + - "{{Game data/config|OS X|{{P|osxhome}}/Library/Preferences/unity.Fictiorama Studios.Do not feed the monkeys.plist}}" + - "{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/Fictiorama Studios/Do not feed the monkeys/prefs}}" + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\Fictiorama Studios\\Do not feed the monkeys}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/unity.Fictiorama Studios.Do not feed the monkeys}}" + - "{{Game data/saves|Linux|{{p|xdgconfighome}}/unity3d/Fictiorama Studios/Do not feed the monkeys}}" Do You Know de Way: pageId: 88728 steam: 805870 @@ -46186,16 +44974,16 @@ DoVille: Doc Apocalypse: pageId: 76323 steam: 509920 -'Doc Clock: The Toasted Sandwich of Time': +"Doc Clock: The Toasted Sandwich of Time": pageId: 41064 steam: 57800 templates: - - '{{Game data/config|Windows|{{p|appdata}}\DocClockGame\Settings.txt}}' - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/57800/local/}}' + - "{{Game data/config|Windows|{{p|appdata}}\\DocClockGame\\Settings.txt}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/57800/local/}}" Doctor Flow: pageId: 96151 steam: 836700 -Doctor Kvorak's Obliteration Game: +"Doctor Kvorak's Obliteration Game": pageId: 39590 steam: 456740 Doctor Tsunami: @@ -46210,29 +44998,29 @@ Doctor Watson - Treasure Island: Doctor Who Infinity: pageId: 94312 steam: 725370 -'Doctor Who: The Adventure Games': +"Doctor Who: The Adventure Games": pageId: 50564 steam: 268830 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Doctor Who}}' -'Doctor Who: The Edge of Reality': + - "{{Game data/config|Windows|{{p|appdata}}\\Doctor Who}}" +"Doctor Who: The Edge of Reality": pageId: 164222 steam: 1444920 -'Doctor Who: The Edge of Time': +"Doctor Who: The Edge of Time": pageId: 139453 steam: 1075400 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Maze Theory\Doctor Who_ The Edge of Time\save0.dat}}' -'Doctor Who: The Eternity Clock': + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Maze Theory\\Doctor Who_ The Edge of Time\\save0.dat}}" +"Doctor Who: The Eternity Clock": pageId: 40685 steam: 217080 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\DWTEC\SMG010Game\Config\}}' -'Doctor Who: The Lonely Assassins': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\DWTEC\\SMG010Game\\Config\\}}" +"Doctor Who: The Lonely Assassins": gog: 1471517695 pageId: 169384 steam: 1508270 -'Doctor Who: The Runaway': +"Doctor Who: The Runaway": pageId: 155448 steam: 1066400 Dodge: @@ -46242,7 +45030,7 @@ Dodge (2018): pageId: 81362 steam: 776080 templates: - - '{{Game data/saves|Windows|{{p|appdata}}\Dodge}}' + - "{{Game data/saves|Windows|{{p|appdata}}\\Dodge}}" Dodge Bubble: pageId: 132078 steam: 1050230 @@ -46259,7 +45047,7 @@ Dodge It! 2: pageId: 179783 steam: 1862210 templates: - - '{{Game data/saves|Windows|{{p|game}}\SavesDir}}' + - "{{Game data/saves|Windows|{{p|game}}\\SavesDir}}" Dodge Master: pageId: 55847 steam: 567430 @@ -46286,11 +45074,9 @@ Dodgeball Academia: pageId: 170273 steam: 1422420 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\SOFTWARE\PocketTrap\DodgeballAcademia\}}' - - '{{Game data/saves|GOG.com|{{P|userprofile\appdata\locallow}}\PocketTrap\DodgeballAcademia\SaveFileGOG}}' - - >- - {{Game data/saves|Microsoft - Store|{{P|localappdata}}\Packages\HumbleBundle.DodgeballAcademia_q2mcdwmzx4qja\SystemAppData}} + - "{{Game data/config|Windows|{{P|hkcu}}\\SOFTWARE\\PocketTrap\\DodgeballAcademia\\}}" + - "{{Game data/saves|GOG.com|{{P|userprofile\\appdata\\locallow}}\\PocketTrap\\DodgeballAcademia\\SaveFileGOG}}" + - "{{Game data/saves|Microsoft Store|{{P|localappdata}}\\Packages\\HumbleBundle.DodgeballAcademia_q2mcdwmzx4qja\\SystemAppData}}" Dodgeball Rising: pageId: 76329 steam: 687580 @@ -46308,7 +45094,7 @@ Dodo GoGo: Dodo Peak: pageId: 147821 templates: - - '{{Game data/config|Windows|{{P|game}}\DodoPeak.ini}}' + - "{{Game data/config|Windows|{{P|game}}\\DodoPeak.ini}}" Dofus: pageId: 53379 steam: 254300 @@ -46328,7 +45114,7 @@ Dog Gone Golfing: pageId: 67267 steam: 665590 templates: - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Dog_Gone_Golfing\}}' + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Dog_Gone_Golfing\\}}" Dog In A Box: pageId: 124317 steam: 972480 @@ -46344,7 +45130,7 @@ Dog Theatre: Dog couple: pageId: 99688 steam: 891580 -Dog's Quest: +"Dog's Quest": pageId: 98728 steam: 882230 Dog-O: @@ -46362,7 +45148,7 @@ Dogfight 1942: Dogfight Elite: pageId: 33852 steam: 480500 -'Dogfight: 80 Years of Aerial Warfare': +"Dogfight: 80 Years of Aerial Warfare": gog: 1313679424 pageId: 177418 steam: 1704630 @@ -46390,7 +45176,7 @@ Dogs of Wall Street: Dogs of War Online: pageId: 50691 steam: 219700 -'Dogs of War: Kill to Survive': +"Dogs of War: Kill to Survive": pageId: 108168 steam: 903670 Dogstar: @@ -46402,8 +45188,8 @@ Dogurai: Dogz: pageId: 89094 templates: - - '{{Game data/config|Windows|{{p|game}}\DATA\Dogz.ini}}' -'Dogz: Your Computer Pet': + - "{{Game data/config|Windows|{{p|game}}\\DATA\\Dogz.ini}}" +"Dogz: Your Computer Pet": pageId: 93489 Dojini: pageId: 105395 @@ -46414,16 +45200,12 @@ Doka 2 Trade: Doka 3 Sto Sloev Kishkov: pageId: 124014 steam: 984140 -'Dokapon Kingdom: Connect': +"Dokapon Kingdom: Connect": pageId: 189608 steam: 2338140 templates: - - >- - {{Game data/config|Windows|{{P|userprofile\appdata\locallow}}\IDEA FACTORY Co.,Ltd\Dokapon Kingdom - Connect\{{P|uid}}\}} - - >- - {{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\IDEA FACTORY Co.,Ltd\Dokapon Kingdom - Connect\{{P|uid}}\SaveData\}} + - "{{Game data/config|Windows|{{P|userprofile\\appdata\\locallow}}\\IDEA FACTORY Co.,Ltd\\Dokapon Kingdom Connect\\{{P|uid}}\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\IDEA FACTORY Co.,Ltd\\Dokapon Kingdom Connect\\{{P|uid}}\\SaveData\\}}" DokeV: pageId: 152485 Doki Doki Gravity Dive: @@ -46433,20 +45215,18 @@ Doki Doki Literature Club Plus!: pageId: 169212 steam: 1388880 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\appdata\locallow}}\Team Salvato\Doki Doki Literature Club - Plus\save_preferences.sav}} - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\Team Salvato\Doki Doki Literature Club Plus}}' + - "{{Game data/config|Windows|{{p|userprofile\\appdata\\locallow}}\\Team Salvato\\Doki Doki Literature Club Plus\\save_preferences.sav}}" + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\Team Salvato\\Doki Doki Literature Club Plus}}" Doki Doki Literature Club!: pageId: 72197 steam: 698780 templates: - - '{{Game data/config|Windows|{{P|appdata}}\RenPy\DDLC-1454445547\persistent}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/RenPy/DDLC-1454445547/persistent}}' - - '{{Game data/config|Linux|{{p|linuxhome}}\.renpy\DDLC-1454445547\persistent}}' - - '{{Game data/saves|Windows|{{P|appdata}}\RenPy\DDLC-1454445547\*.save}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/RenPy/DDLC-1454445547/*.save}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.renpy/DDLC-1454445547/*.save}}' + - "{{Game data/config|Windows|{{P|appdata}}\\RenPy\\DDLC-1454445547\\persistent}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/RenPy/DDLC-1454445547/persistent}}" + - "{{Game data/config|Linux|{{p|linuxhome}}\\.renpy\\DDLC-1454445547\\persistent}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\RenPy\\DDLC-1454445547\\*.save}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/RenPy/DDLC-1454445547/*.save}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.renpy/DDLC-1454445547/*.save}}" Doki Doki Ragnarok: pageId: 182865 steam: 1578330 @@ -46465,7 +45245,7 @@ Dolguth: Doll: pageId: 153256 steam: 1164910 -'Doll City: Prologue': +"Doll City: Prologue": pageId: 41842 steam: 468170 Doll of Resurrection: @@ -46484,45 +45264,26 @@ Dollar Dash: pageId: 60413 steam: 214320 templates: - - '{{Game data/saves|Steam|{{P|Steam}}\userdata\{{p|uid}}\214320\remote\}}' + - "{{Game data/saves|Steam|{{P|Steam}}\\userdata\\{{p|uid}}\\214320\\remote\\}}" Dollhouse: pageId: 39534 steam: 280850 templates: - - '{{Game data/saves|Steam|{{p|Steam}}\userdata\{{p|uid}}\280850\remote\}}' + - "{{Game data/saves|Steam|{{p|Steam}}\\userdata\\{{p|uid}}\\280850\\remote\\}}" Dolmen: pageId: 93372 steam: 831050 templates: - - '{{Game data/saves|Windows|{{p|localappdata}}\DolmenWindows\Saved\SaveGames }}' + - "{{Game data/saves|Windows|{{p|localappdata}}\\DolmenWindows\\Saved\\SaveGames }}" Dolmenjord - Viking Islands: pageId: 186769 steam: 1899950 Dolphin: pageId: 169216 templates: - - >- - {{Game data/config|Windows|{{P|appdata}}\Dolphin Emulator\Config\{{Note|New default location only on brand new - Dolphin installations made with version 5.0-18242 or higher.}}|{{p|userprofile\Documents}}\Dolphin - Emulator\Config\{{Note|Legacy default location only on old Dolphin installations made with version 5.0-18242 or - older.}}}} - - >- - {{Game data/saves|Windows|{{P|appdata}}\Dolphin Emulator\Wii\{{Note|New default location only on brand new Dolphin - installations made with version 5.0-18242 or higher. Equivalent to the internal storage of a Wii console.}}| - - {{P|appdata}}\Dolphin Emulator\GC\{{Note|New default location only on brand new Dolphin installations made with - version 5.0-18242 or higher. GameCube data, separated by region.}}|{{P|appdata}}\Dolphin - Emulator\StateSaves{{Note|New default location only on brand new Dolphin installations made with version 5.0-18242 - or higher. Save states are stored here.}}}} - - >- - {{Game data/saves|Windows|{{p|userprofile\Documents}}\Dolphin Emulator\Wii\{{Note|Legacy default location only on - old Dolphin installations made with version 5.0-18242 or older. Equivalent to the internal storage of a Wii - console.}}| - - {{p|userprofile\Documents}}\Dolphin Emulator\GC\{{Note|Legacy default location only on old Dolphin installations - made with version 5.0-18242 or older. GameCube data, separated by region.}}|{{p|userprofile\Documents}}\Dolphin - Emulator\StateSaves{{Note|Legacy default location only on old Dolphin installations made with version 5.0-18242 or - older. Save states are stored here.}}}} + - "{{Game data/config|Windows|{{P|appdata}}\\Dolphin Emulator\\Config\\{{Note|New default location only on brand new Dolphin installations made with version 5.0-18242 or higher.}}|{{p|userprofile\\Documents}}\\Dolphin Emulator\\Config\\{{Note|Legacy default location only on old Dolphin installations made with version 5.0-18242 or older.}}}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\Dolphin Emulator\\Wii\\{{Note|New default location only on brand new Dolphin installations made with version 5.0-18242 or higher. Equivalent to the internal storage of a Wii console.}}|\n{{P|appdata}}\\Dolphin Emulator\\GC\\{{Note|New default location only on brand new Dolphin installations made with version 5.0-18242 or higher. GameCube data, separated by region.}}|{{P|appdata}}\\Dolphin Emulator\\StateSaves{{Note|New default location only on brand new Dolphin installations made with version 5.0-18242 or higher. Save states are stored here.}}}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Dolphin Emulator\\Wii\\{{Note|Legacy default location only on old Dolphin installations made with version 5.0-18242 or older. Equivalent to the internal storage of a Wii console.}}|\n{{p|userprofile\\Documents}}\\Dolphin Emulator\\GC\\{{Note|Legacy default location only on old Dolphin installations made with version 5.0-18242 or older. GameCube data, separated by region.}}|{{p|userprofile\\Documents}}\\Dolphin Emulator\\StateSaves{{Note|Legacy default location only on old Dolphin installations made with version 5.0-18242 or older. Save states are stored here.}}}}" Dolphin Defense: pageId: 43035 steam: 455720 @@ -46544,7 +45305,7 @@ Domain Defense VR: pageId: 60788 steam: 455190 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\Saved Games\Domain Defense VR\gamesave.dat}}' + - "{{Game data/saves|Windows|{{p|userprofile}}\\Saved Games\\Domain Defense VR\\gamesave.dat}}" Dome City: pageId: 147621 Dome Keeper: @@ -46555,7 +45316,7 @@ Dome Keeper: - 2150000 - 2152440 templates: - - '{{Game data/saves|Windows|{{P|appdata}}\Godot\app_userdata\Dome Keeper}}' + - "{{Game data/saves|Windows|{{P|appdata}}\\Godot\\app_userdata\\Dome Keeper}}" Domestic Dog: pageId: 48234 steam: 340340 @@ -46569,43 +45330,43 @@ Domina: pageId: 55780 steam: 535230 templates: - - '{{Game data/config|Windows|{{P|appdata}}\Domina\}}' - - '{{Game data/saves|Windows|{{P|appdata}}\Domina\}}' + - "{{Game data/config|Windows|{{P|appdata}}\\Domina\\}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\Domina\\}}" Dominance: pageId: 132777 steam: 841070 Dominari Tournament: pageId: 75143 steam: 662930 -'Dominatrix Simulator: Threshold': +"Dominatrix Simulator: Threshold": pageId: 146042 steam: 953270 -'Dominion: Storm Over Gift 3': +"Dominion: Storm Over Gift 3": pageId: 147583 templates: - - '{{Game data/config|Windows|{{p|windir}}/Dominion.ini}}' -'Dominions 3: The Awakening': + - "{{Game data/config|Windows|{{p|windir}}/Dominion.ini}}" +"Dominions 3: The Awakening": pageId: 36460 steam: 248510 -'Dominions 4: Thrones of Ascension': +"Dominions 4: Thrones of Ascension": pageId: 37802 steam: 259060 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Dominions4}}' - - '{{Game data/config|Linux|~/dominions4}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Dominions4\savedgames}}' - - '{{Game data/saves|Linux|~/dominions4/savedgames}}' -'Dominions 5: Warriors of the Faith': + - "{{Game data/config|Windows|{{p|appdata}}\\Dominions4}}" + - "{{Game data/config|Linux|~/dominions4}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Dominions4\\savedgames}}" + - "{{Game data/saves|Linux|~/dominions4/savedgames}}" +"Dominions 5: Warriors of the Faith": pageId: 76235 renamedFrom: - Dominions 5 - Warriors of the Faith steam: 722060 templates: - - '{{Game data/config|Linux|~/.dominions5}}' - - '{{Game data/saves|Linux|~/.dominions5/savedgames}}' -'Dominions II: The Ascension Wars': + - "{{Game data/config|Linux|~/.dominions5}}" + - "{{Game data/saves|Linux|~/.dominions5/savedgames}}" +"Dominions II: The Ascension Wars": pageId: 177304 -'Dominions: Priests, Prophets & Pretenders': +"Dominions: Priests, Prophets & Pretenders": pageId: 177299 Dominique Pamplemousse: pageId: 50586 @@ -46613,11 +45374,7 @@ Dominique Pamplemousse: steamSide: - 285550 templates: - - >- - {{Game data/saves|Windows|{{p|appdata}}\Macromedia\Flash Player\#SharedObjects\\localhost\\autosave.sol - - }} + - "{{Game data/saves|Windows|{{p|appdata}}\\Macromedia\\Flash Player\\#SharedObjects\\\\localhost\\\\autosave.sol\n}}" Domino: pageId: 73203 steam: 724580 @@ -46637,7 +45394,7 @@ Domino Sky: pageId: 34739 steam: 457480 templates: - - '{{Game data/saves|Windows|{{p|hkcu}}\SOFTWARE\Russpuppy\Domino Sky\}}' + - "{{Game data/saves|Windows|{{p|hkcu}}\\SOFTWARE\\Russpuppy\\Domino Sky\\}}" Domino VR: pageId: 41870 steam: 508680 @@ -46656,199 +45413,191 @@ Don Bradman Cricket 14: Don Bradman Cricket 17: pageId: 56451 steam: 464850 -Don'Yoku: +"Don'Yoku": pageId: 47449 steam: 380690 -Don't Be Afraid: +"Don't Be Afraid": gog: 1285563191 pageId: 79418 steam: 760410 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\SOFTWARE\Broken Arrow Games\Don''t Be Afraid}}' - - >- - {{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Broken Arrow Games\Don't Be - Afraid\savegameAUTO.save}} -Don't Bite Me Bro!: + - "{{Game data/config|Windows|{{P|hkcu}}\\SOFTWARE\\Broken Arrow Games\\Don't Be Afraid}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Broken Arrow Games\\Don't Be Afraid\\savegameAUTO.save}}" +"Don't Bite Me Bro!": pageId: 90927 steam: 786450 -Don't Bleed: +"Don't Bleed": pageId: 78625 steam: 723810 -Don't Bug Me!: +"Don't Bug Me!": pageId: 147789 -Don't Burn: +"Don't Burn": pageId: 138689 renamedFrom: - - Don't burn + - "Don't burn" steam: 1089960 -Don't Chat With Strangers: +"Don't Chat With Strangers": pageId: 54519 steam: 533170 -Don't Crawl: +"Don't Crawl": pageId: 37082 steam: 466770 -Don't Cut Your Hand: +"Don't Cut Your Hand": pageId: 60466 steam: 603350 -Don't Die: +"Don't Die": pageId: 141651 steam: 1113930 -'Don''t Die Dateless, Dummy!': +"Don't Die Dateless, Dummy!": pageId: 44048 steam: 455490 -Don't Die!: +"Don't Die!": pageId: 64331 steam: 659870 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\Templarius Studios\Don''t Die!}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Templarius Studios\Don''t Die!}}' -Don't Die! (2018): + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Templarius Studios\\Don't Die!}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Templarius Studios\\Don't Die!}}" +"Don't Die! (2018)": pageId: 94561 steam: 856220 -'Don''t Die, Minerva!': +"Don't Die, Minerva!": pageId: 156200 steam: 982040 -'Don''t Die: Survival': +"Don't Die: Survival": pageId: 59353 steam: 554710 -Don't Disturb: +"Don't Disturb": pageId: 37052 steam: 501840 -Don't Drop the Bass: +"Don't Drop the Bass": pageId: 42327 steam: 471220 -Don't Drop the Soap: +"Don't Drop the Soap": pageId: 39803 steam: 383970 -Don't Escape Trilogy: +"Don't Escape Trilogy": pageId: 141534 steam: 1070550 -'Don''t Escape: 4 Days to Survive': +"Don't Escape: 4 Days to Survive": gog: 1676641473 pageId: 69512 steam: 611760 templates: - - >- - {{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\scriptwelder studio\Don't Escape_ 4 Days in a - Wasteland}} - - >- - {{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\scriptwelder studio\Don't Escape_ 4 Days in a - Wasteland}} -Don't Explode: + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\scriptwelder studio\\Don't Escape_ 4 Days in a Wasteland}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\scriptwelder studio\\Don't Escape_ 4 Days in a Wasteland}}" +"Don't Explode": pageId: 72553 steam: 692680 -Don't Fall: +"Don't Fall": pageId: 82342 steam: 797170 -Don't Feed: +"Don't Feed": pageId: 70687 steam: 712090 -Don't Feed The Slimes!: +"Don't Feed The Slimes!": pageId: 97870 steam: 878610 -Don't Forget Me: +"Don't Forget Me": gog: 1528933602 pageId: 167391 steam: 1335800 templates: - - '{{Game data/config|Windows|{{P|userprofile\appdata\locallow}}\The Moon Pirates\Don''t Forget Me\data\settings}}' - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\The Moon Pirates\Don''t Forget Me\data\save}}' -Don't Forget Our Esports Dream: + - "{{Game data/config|Windows|{{P|userprofile\\appdata\\locallow}}\\The Moon Pirates\\Don't Forget Me\\data\\settings}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\The Moon Pirates\\Don't Forget Me\\data\\save}}" +"Don't Forget Our Esports Dream": pageId: 114694 steam: 946560 templates: - - '{{Game data/config|Windows|{{p|game}}\renpy\config.py}}' - - '{{Game data/saves|Windows|{{p|appdata}}\RenPy\EsportsDreamSaves\}}' -Don't Get Hit In The Face: + - "{{Game data/config|Windows|{{p|game}}\\renpy\\config.py}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\RenPy\\EsportsDreamSaves\\}}" +"Don't Get Hit In The Face": pageId: 60940 steam: 594200 -'Don''t Give Up: A Cynical Tale': +"Don't Give Up: A Cynical Tale": pageId: 122846 steam: 960710 -Don't Go into the Woods: +"Don't Go into the Woods": pageId: 139231 steam: 1017660 -Don't Kill Her: +"Don't Kill Her": pageId: 108548 steam: 918520 -Don't Kill the Cow: +"Don't Kill the Cow": pageId: 150406 steam: 1180800 -Don't Knock Twice: +"Don't Knock Twice": pageId: 51515 steam: 328590 templates: - - '{{Game data/config|Steam|{{P|steam}}\userdata\{{P|uid}}\328590\remote\}}' - - '{{Game data/saves|Steam|{{P|steam}}\userdata\{{P|uid}}\328590\remote\}}' -Don't Let Go!: + - "{{Game data/config|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\328590\\remote\\}}" + - "{{Game data/saves|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\328590\\remote\\}}" +"Don't Let Go!": pageId: 39944 steam: 519030 -Don't Look Back: +"Don't Look Back": pageId: 58785 steam: 601550 -Don't Look Back (2018): +"Don't Look Back (2018)": pageId: 137255 steam: 811630 -Don't Look Back - VR: +"Don't Look Back - VR": pageId: 127854 steam: 1028410 -Don't Look Down: +"Don't Look Down": pageId: 109100 steam: 869290 -Don't Make Love: +"Don't Make Love": pageId: 74159 steam: 723890 templates: - - >- - {{Game - data/config|Windows|{{P|game}}\dontmakelove\Saved\SaveGames\GameSettings.sav|{{P|game}}\dontmakelove\Saved\Config\WindowsNoEditor\}} - - '{{Game data/saves|Windows|{{P|game}}\dontmakelove\Saved\SaveGames\}}' -Don't Mess Up: + - "{{Game data/config|Windows|{{P|game}}\\dontmakelove\\Saved\\SaveGames\\GameSettings.sav|{{P|game}}\\dontmakelove\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{P|game}}\\dontmakelove\\Saved\\SaveGames\\}}" +"Don't Mess Up": pageId: 56455 steam: 575170 -Don't Move: +"Don't Move": pageId: 27246 steam: 334350 -Don't Notice Me: +"Don't Notice Me": pageId: 105177 steam: 859740 -Don't Open the Doors!: +"Don't Open the Doors!": pageId: 50895 steam: 533950 -Don't Panic!: +"Don't Panic!": pageId: 72521 steam: 720000 -Don't Pick On The Fat Kid: +"Don't Pick On The Fat Kid": pageId: 95093 steam: 793600 -Don't Play This Game: +"Don't Play This Game": pageId: 67607 steam: 679240 -Don't Play With Dolls: +"Don't Play With Dolls": pageId: 100118 steam: 845750 -Don't Pray to Satan: +"Don't Pray to Satan": pageId: 88740 steam: 813170 -Don't Save the Princess: +"Don't Save the Princess": pageId: 122686 steam: 951840 -Don't Shoot Rabbit / 不要射中兔子: +"Don't Shoot Rabbit / 不要射中兔子": pageId: 124128 steam: 981990 -Don't Shoot Yourself!: +"Don't Shoot Yourself!": pageId: 48232 steam: 332880 -Don't Sink: +"Don't Sink": pageId: 75097 steam: 710610 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Don_t_Sink\settings.ini}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\Don_t_Sink\saves\}}' -Don't Stand Out: + - "{{Game data/config|Windows|{{P|localappdata}}\\Don_t_Sink\\settings.ini}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Don_t_Sink\\saves\\}}" +"Don't Stand Out": pageId: 89460 steam: 811240 -Don't Starve: +"Don't Starve": gog: 1207659210 gogSide: - 1207664293 @@ -46857,63 +45606,57 @@ Don't Starve: pageId: 6296 steam: 219740 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Klei\DoNotStarve\settings.ini}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Documents/Klei/DoNotStarve/}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.klei/DoNotStarve/}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Klei\DoNotStarve\save\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Documents/Klei/DoNotStarve/}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.klei/DoNotStarve/}}' - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{P|uid}}/219740/remote/}}' -Don't Starve Together: + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Klei\\DoNotStarve\\settings.ini}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Documents/Klei/DoNotStarve/}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.klei/DoNotStarve/}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Klei\\DoNotStarve\\save\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Documents/Klei/DoNotStarve/}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.klei/DoNotStarve/}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{P|uid}}/219740/remote/}}" +"Don't Starve Together": pageId: 22870 steam: 322330 templates: - - >- - {{Game - data/config|Windows|{{p|userprofile\Documents}}\Klei\DoNotStarveTogether\{{p|uid}}\client.ini|{{p|userprofile\Documents}}\Klei\DoNotStarveTogether\client.ini}} - - '{{Game data/config|Linux|{{p|linuxhome}}/.klei/DoNotStarveTogether/client.ini}}' - - >- - {{Game - data/saves|Windows|{{p|userprofile\Documents}}\Klei\DoNotStarveTogether\{{p|uid}}\client_save\|{{p|userprofile\Documents}}\Klei\DoNotStarveTogether\client_save\|{{p|userprofile\Documents}}\Klei\DoNotStarveTogether\save\}} - - '{{Game data/saves|Linux|{{p|linuxhome}}/.klei/DoNotStarveTogether/{{p|uid}}/client_save/}}' -Don't Stop: + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Klei\\DoNotStarveTogether\\{{p|uid}}\\client.ini|{{p|userprofile\\Documents}}\\Klei\\DoNotStarveTogether\\client.ini}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.klei/DoNotStarveTogether/client.ini}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Klei\\DoNotStarveTogether\\{{p|uid}}\\client_save\\|{{p|userprofile\\Documents}}\\Klei\\DoNotStarveTogether\\client_save\\|{{p|userprofile\\Documents}}\\Klei\\DoNotStarveTogether\\save\\}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.klei/DoNotStarveTogether/{{p|uid}}/client_save/}}" +"Don't Stop": pageId: 102413 steam: 868760 -'Don''t Tax Me, Bro!': +"Don't Tax Me, Bro!": pageId: 63143 steam: 639450 -Don't Touch My Virgin: +"Don't Touch My Virgin": pageId: 126335 steam: 932830 -Don't Touch the Walls: +"Don't Touch the Walls": pageId: 82391 steam: 796600 -Don't Touch the Zombies: +"Don't Touch the Zombies": pageId: 61044 steam: 563370 -Don't touch me: +"Don't touch me": pageId: 110170 steam: 923050 DonDon Busters!!: pageId: 156567 steam: 1206010 -Donald Duck's Playground: +"Donald Duck's Playground": pageId: 140035 -'Donald Duck: Goin'' Quackers': +"Donald Duck: Goin' Quackers": pageId: 80156 templates: - - >- - {{Game - data/config|Windows|{{p|game}}\Data\Options\current.cfg|{{p|appdata}}\Disney\DonaldDuck\Data\Options\current.cfg|{{p|windir}}\UbiSoft\Ubi.ini}} - - '{{Game data/saves|Windows|{{p|game}}\Data\SaveGame|{{p|appdata}}\Disney\DonaldDuck\Data}}' -Donald Trump's Real Estate Tycoon: + - "{{Game data/config|Windows|{{p|game}}\\Data\\Options\\current.cfg|{{p|appdata}}\\Disney\\DonaldDuck\\Data\\Options\\current.cfg|{{p|windir}}\\UbiSoft\\Ubi.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\Data\\SaveGame|{{p|appdata}}\\Disney\\DonaldDuck\\Data}}" +"Donald Trump's Real Estate Tycoon": pageId: 90691 templates: - - '{{Game data/saves|Windows|{{p|game}}\Save\Games}}' + - "{{Game data/saves|Windows|{{p|game}}\\Save\\Games}}" Donald VS Martians: pageId: 125270 steam: 987740 -Donald's Alphabet Chase: +"Donald's Alphabet Chase": pageId: 140177 Dong-Jin Rice-hime: pageId: 61616 @@ -46934,22 +45677,12 @@ Donut County: pageId: 69421 steam: 702670 templates: - - >- - {{Game data/config|Windows|{{P|userprofile}}\AppData\LocalLow\Annapurna Interactive\Donut - County\preferences.pref}} - - >- - {{Game data/config|Steam|{{P|userprofile}}\AppData\LocalLow\Annapurna Interactive\Donut - County\{{P|uid}}\preferences.pref}} - - >- - {{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Annapurna Interactive/Donut - County/{{p|uid}}/preferences.pref}} - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Annapurna Interactive\Donut County\savegame.sav}}' - - >- - {{Game data/saves|Steam|{{P|userprofile}}\AppData\LocalLow\Annapurna Interactive\Donut - County\{{P|uid}}\savegame.sav}} - - >- - {{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Annapurna Interactive/Donut - County/{{p|uid}}/savegame.sav}} + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Annapurna Interactive\\Donut County\\preferences.pref}}" + - "{{Game data/config|Steam|{{P|userprofile}}\\AppData\\LocalLow\\Annapurna Interactive\\Donut County\\{{P|uid}}\\preferences.pref}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Annapurna Interactive/Donut County/{{p|uid}}/preferences.pref}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Annapurna Interactive\\Donut County\\savegame.sav}}" + - "{{Game data/saves|Steam|{{P|userprofile}}\\AppData\\LocalLow\\Annapurna Interactive\\Donut County\\{{P|uid}}\\savegame.sav}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Annapurna Interactive/Donut County/{{p|uid}}/savegame.sav}}" Donut Distraction: pageId: 62489 steam: 568420 @@ -46959,7 +45692,7 @@ Donut Dodo: Donut Shop: pageId: 107792 steam: 825210 -Donuts'n'Justice: +"Donuts'n'Justice": pageId: 53892 steam: 527470 DooM in the Dark: @@ -46980,8 +45713,8 @@ Doodle Derby: - Fromto steam: 916180 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\fromto\settings\|{{P|localappdata}}\fromto\graphics_settings.ini}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\fromto\savegames\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\fromto\\settings\\|{{P|localappdata}}\\fromto\\graphics_settings.ini}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\fromto\\savegames\\}}" Doodle Devil: pageId: 60335 steam: 608760 @@ -46992,29 +45725,29 @@ Doodle God: pageId: 30792 steam: 348360 templates: - - '{{Game data/config|Windows|{{p|game}}\temp\config.txt|{{p|hkcu}}\SOFTWARE\JoyBits\dg\}}' - - '{{Game data/saves|Windows|{{p|game}}\temp\*}}' - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/348360/remote/savedata.dat}}' + - "{{Game data/config|Windows|{{p|game}}\\temp\\config.txt|{{p|hkcu}}\\SOFTWARE\\JoyBits\\dg\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\temp\\*}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/348360/remote/savedata.dat}}" Doodle God Blitz: pageId: 63199 steam: 625430 Doodle God Universe: pageId: 169475 steam: 1697770 -'Doodle God: 8-bit Mania': +"Doodle God: 8-bit Mania": pageId: 51997 steam: 538060 -'Doodle God: Alchemy Jam': +"Doodle God: Alchemy Jam": pageId: 78731 steam: 759750 -'Doodle God: Crime City': +"Doodle God: Crime City": pageId: 143768 -'Doodle God: Fantasy World of Magic': +"Doodle God: Fantasy World of Magic": pageId: 167404 -'Doodle God: Genesis Secrets': +"Doodle God: Genesis Secrets": pageId: 92777 steam: 837210 -'Doodle God: Mighty Trio': +"Doodle God: Mighty Trio": pageId: 92765 steam: 771250 Doodle Jamboree: @@ -47039,13 +45772,13 @@ Doom & Destiny: pageId: 34043 steam: 318130 templates: - - '{{Game data/config|Windows|{{P|game}}\Saves\Options.rvdata}}' - - '{{Game data/saves|Windows|{{P|game}}\Saves\Save*\}}' + - "{{Game data/config|Windows|{{P|game}}\\Saves\\Options.rvdata}}" + - "{{Game data/saves|Windows|{{P|game}}\\Saves\\Save*\\}}" Doom & Destiny Advanced: pageId: 34051 steam: 361040 templates: - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Doom and Destiny Advanced\Saves\}}' + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Doom and Destiny Advanced\\Saves\\}}" Doom & Destiny Worlds: pageId: 165251 steam: 953690 @@ -47056,22 +45789,20 @@ Doom (1993): pageId: 502 steam: 2280 templates: - - '{{Game data/config|DOS|{{p|game}}\DOOMDATA\}}' - - '{{Game data/config|Windows|{{p|game}}\Ultimate Doom for Windows 95\}}' - - '{{Game data/config|Steam|{{p|game}}\base\*.conf|{{p|game}}\base\*.CFG}}' - - '{{Game data/saves|DOS|{{p|game}}\DOOMDATA\}}' - - '{{Game data/saves|Windows|{{p|game}}\Ultimate Doom for Windows 95\}}' - - '{{Game data/saves|Steam|{{p|game}}\base\*.DSG}}' + - "{{Game data/config|DOS|{{p|game}}\\DOOMDATA\\}}" + - "{{Game data/config|Windows|{{p|game}}\\Ultimate Doom for Windows 95\\}}" + - "{{Game data/config|Steam|{{p|game}}\\base\\*.conf|{{p|game}}\\base\\*.CFG}}" + - "{{Game data/saves|DOS|{{p|game}}\\DOOMDATA\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\Ultimate Doom for Windows 95\\}}" + - "{{Game data/saves|Steam|{{p|game}}\\base\\*.DSG}}" Doom (2016): pageId: 19349 steam: 379720 steamSide: - 350470 templates: - - '{{Game data/config|Windows|{{P|userprofile}}\Saved Games\id Software\DOOM\base\DOOMConfig.cfg}}' - - >- - {{Game data/saves|Windows|{{P|userprofile}}\Saved Games\id Software\DOOM\base\savegame\|{{P|userprofile}}\Saved - Games\id Software\DOOM\base\savegame.user\}} + - "{{Game data/config|Windows|{{P|userprofile}}\\Saved Games\\id Software\\DOOM\\base\\DOOMConfig.cfg}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\Saved Games\\id Software\\DOOM\\base\\savegame\\|{{P|userprofile}}\\Saved Games\\id Software\\DOOM\\base\\savegame.user\\}}" Doom 3: gog: 1733124578 gogSide: @@ -47081,58 +45812,47 @@ Doom 3: steamSide: - 9070 templates: - - '{{Game data/config|Windows|{{p|game}}\base\*.cfg|{{p|game}}\d3xp\*.cfg}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.doom3/base/*.cfg|{{p|linuxhome}}/.doom3/d3xp/*.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\base\savegames\|{{p|game}}\base\d3xp\}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.doom3/base/savegames/|{{p|linuxhome}}/.doom3/d3xp/savegames/}}' -'Doom 3: BFG Edition': + - "{{Game data/config|Windows|{{p|game}}\\base\\*.cfg|{{p|game}}\\d3xp\\*.cfg}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.doom3/base/*.cfg|{{p|linuxhome}}/.doom3/d3xp/*.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\base\\savegames\\|{{p|game}}\\base\\d3xp\\}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.doom3/base/savegames/|{{p|linuxhome}}/.doom3/d3xp/savegames/}}" +"Doom 3: BFG Edition": gog: 1733124578 gogSide: - 1135892318 pageId: 4224 steam: 208200 templates: - - >- - {{Game data/config|Windows|{{p|userprofile}}\Saved Games\id Software\DOOM 3 BFG\base\|{{p|userprofile}}\Saved - Games\id Software\DOOM 3\base\}} - - >- - {{Game data/saves|Windows|{{p|userprofile}}\Saved Games\id Software\DOOM 3 BFG\base\|{{p|userprofile}}\Saved - Games\id Software\DOOM 3\base\}} + - "{{Game data/config|Windows|{{p|userprofile}}\\Saved Games\\id Software\\DOOM 3 BFG\\base\\|{{p|userprofile}}\\Saved Games\\id Software\\DOOM 3\\base\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Saved Games\\id Software\\DOOM 3 BFG\\base\\|{{p|userprofile}}\\Saved Games\\id Software\\DOOM 3\\base\\}}" Doom 64: gog: 1456611261 pageId: 148048 steam: 1148590 templates: - - '{{Game data/config|Windows|{{p|USERPROFILE}}\Saved Games\Nightdive Studios\DOOM 64\kexengine.cfg}}' - - '{{Game data/config|Microsoft Store|{{p|USERPROFILE}}\Saved Games\Nightdive Studios\DOOM 64\}}' - - '{{Game data/saves|Windows|{{p|USERPROFILE}}\Saved Games\Nightdive Studios\DOOM 64\saves\}}' - - >- - {{Game data/saves|Microsoft - Store|{{P|localappdata}}\Packages\BethesdaSoftworks.Doom641997_3275kfvn8vcwc\SystemAppData\wgs\}} + - "{{Game data/config|Windows|{{p|USERPROFILE}}\\Saved Games\\Nightdive Studios\\DOOM 64\\kexengine.cfg}}" + - "{{Game data/config|Microsoft Store|{{p|USERPROFILE}}\\Saved Games\\Nightdive Studios\\DOOM 64\\}}" + - "{{Game data/saves|Windows|{{p|USERPROFILE}}\\Saved Games\\Nightdive Studios\\DOOM 64\\saves\\}}" + - "{{Game data/saves|Microsoft Store|{{P|localappdata}}\\Packages\\BethesdaSoftworks.Doom641997_3275kfvn8vcwc\\SystemAppData\\wgs\\}}" Doom 64 EX: pageId: 22226 templates: - - '{{Game data/config|Windows|{{P|game}}\config.cfg}}' - - '{{Game data/saves|Windows|{{P|game}}\doomsav*.dsg}}' + - "{{Game data/config|Windows|{{P|game}}\\config.cfg}}" + - "{{Game data/saves|Windows|{{P|game}}\\doomsav*.dsg}}" Doom Eternal: pageId: 97499 steam: 782330 steamSide: - 1098290 - 1098291 + - 1098292 - 1098300 - 1098301 - - 1098292 templates: - - >- - {{Game data/config|Windows|{{p|USERPROFILE}}\Saved Games\id - Software\DOOMEternal\base\DOOMEternalConfig.cfg|{{p|USERPROFILE}}\Saved Games\id - Software\DOOMEternal\base\DOOMEternalConfig.local}} - - '{{Game data/saves|Windows|{{p|userprofile}}\Saved Games\id Software\DOOMEternal\base\}}' - - >- - {{Game data/saves|Microsoft - Store|{{p|localappdata}}\Packages\BethesdaSoftworks.DOOMEternal-PC_3275kfvn8vcwc\SystemAppData\wgs\}} - - '{{Game data/saves|Steam|{{p|Steam}}\userdata\{{p|UID}}\782330\remote\}}' + - "{{Game data/config|Windows|{{p|USERPROFILE}}\\Saved Games\\id Software\\DOOMEternal\\base\\DOOMEternalConfig.cfg|{{p|USERPROFILE}}\\Saved Games\\id Software\\DOOMEternal\\base\\DOOMEternalConfig.local}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Saved Games\\id Software\\DOOMEternal\\base\\}}" + - "{{Game data/saves|Microsoft Store|{{p|localappdata}}\\Packages\\BethesdaSoftworks.DOOMEternal-PC_3275kfvn8vcwc\\SystemAppData\\wgs\\}}" + - "{{Game data/saves|Steam|{{p|Steam}}\\userdata\\{{p|UID}}\\782330\\remote\\}}" Doom I Enhanced: gog: 2015545325 pageId: 155161 @@ -47140,11 +45860,9 @@ Doom I Enhanced: - Doom Classic steam: 2280 templates: - - '{{Game data/config|Windows|{{p|HKCU}}\Software\Bethesda Softworks\DOOM}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\Saved Games\id Software\DOOM Classic\playerSave.dat}}' - - >- - {{Game data/saves|Microsoft - Store|{{P|LOCALAPPDATA}}\Packages\BethesdaSoftworks.DoomClassic_3275kfvn8vcwc\SystemAppData\wgs}} + - "{{Game data/config|Windows|{{p|HKCU}}\\Software\\Bethesda Softworks\\DOOM}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Saved Games\\id Software\\DOOM Classic\\playerSave.dat}}" + - "{{Game data/saves|Microsoft Store|{{P|LOCALAPPDATA}}\\Packages\\BethesdaSoftworks.DoomClassic_3275kfvn8vcwc\\SystemAppData\\wgs}}" Doom II Enhanced: gog: 1426071866 pageId: 155160 @@ -47152,12 +45870,10 @@ Doom II Enhanced: - Doom II Classic steam: 2300 templates: - - '{{Game data/config|Windows|{{p|HKCU}}\Software\Bethesda Softworks\DOOM 2}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\Saved Games\id Software\DOOM 2\playerSave.dat}}' - - >- - {{Game data/saves|Microsoft - Store|{{P|LOCALAPPDATA}}\Packages\BethesdaSoftworks.DoomIIClassic_3275kfvn8vcwc\SystemAppData\wgs}} -'Doom II: Hell on Earth': + - "{{Game data/config|Windows|{{p|HKCU}}\\Software\\Bethesda Softworks\\DOOM 2}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Saved Games\\id Software\\DOOM 2\\playerSave.dat}}" + - "{{Game data/saves|Microsoft Store|{{P|LOCALAPPDATA}}\\Packages\\BethesdaSoftworks.DoomIIClassic_3275kfvn8vcwc\\SystemAppData\\wgs}}" +"Doom II: Hell on Earth": gog: 1440161275 gogSide: - 1435848814 @@ -47166,14 +45882,12 @@ Doom II Enhanced: steamSide: - 9160 templates: - - '{{Game data/config|DOS|{{p|game}}\DOOM2}}' - - '{{Game data/config|Windows|{{p|game}}\Doom II for Windows 95\}}' - - '{{Game data/config|Steam|{{p|game}}\base\*.conf|{{p|game}}\base\*.CFG}}' - - '{{Game data/saves|DOS|{{p|game}}\DOOM2}}' - - >- - {{Game data/saves|Windows|{{p|game}}\Doom II for Windows 95\|{{P|userprofile}}\Saved - Games\GZDoom\doom.id.doom2.commercial\[GZDoom source port only]}} - - '{{Game data/saves|Steam|{{p|game}}\base\*.DSG}}' + - "{{Game data/config|DOS|{{p|game}}\\DOOM2}}" + - "{{Game data/config|Windows|{{p|game}}\\Doom II for Windows 95\\}}" + - "{{Game data/config|Steam|{{p|game}}\\base\\*.conf|{{p|game}}\\base\\*.CFG}}" + - "{{Game data/saves|DOS|{{p|game}}\\DOOM2}}" + - "{{Game data/saves|Windows|{{p|game}}\\Doom II for Windows 95\\|{{P|userprofile}}\\Saved Games\\GZDoom\\doom.id.doom2.commercial\\[GZDoom source port only]}}" + - "{{Game data/saves|Steam|{{p|game}}\\base\\*.DSG}}" Doom Rails: pageId: 41208 steam: 41400 @@ -47181,7 +45895,7 @@ Doom VFR: pageId: 63529 steam: 650000 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\Saved Games\id Software\DOOM_VFR\base\savegame.user\{{P|uid}}}}' + - "{{Game data/saves|Windows|{{p|userprofile}}\\Saved Games\\id Software\\DOOM_VFR\\base\\savegame.user\\{{P|uid}}}}" Doom of the Clawn: pageId: 156098 steam: 1185480 @@ -47194,28 +45908,28 @@ Doombringer: - DOOMBRINGER steam: 1156120 templates: - - '{{Game data/config|Windows|{{p|USERPROFILE}}\Saved Games\doombringer\dbdata\config.cfg}}' - - '{{Game data/saves|Windows|{{p|USERPROFILE}}\Saved Games\doombringer\dbdata\*.sav}}' -Doomdark's Revenge: + - "{{Game data/config|Windows|{{p|USERPROFILE}}\\Saved Games\\doombringer\\dbdata\\config.cfg}}" + - "{{Game data/saves|Windows|{{p|USERPROFILE}}\\Saved Games\\doombringer\\dbdata\\*.sav}}" +"Doomdark's Revenge": gog: 1207660693 pageId: 23294 templates: - - '{{Game data/config|Windows|{{p|game}}\settings.cfg}}' - - '{{Game data/saves|DOS|{{p|game}}\LOM-*.GAM}}' - - '{{Game data/saves|Windows|{{p|game}}\story\}}' + - "{{Game data/config|Windows|{{p|game}}\\settings.cfg}}" + - "{{Game data/saves|DOS|{{p|game}}\\LOM-*.GAM}}" + - "{{Game data/saves|Windows|{{p|game}}\\story\\}}" Doomed: pageId: 95057 steam: 731720 Doomed Kingdoms: pageId: 54977 steam: 558810 -Doomed'n Damned: +"Doomed'n Damned": pageId: 47289 steam: 383810 Doomsday Ark: pageId: 72314 steam: 685340 -'Doomsday Survival: Training': +"Doomsday Survival: Training": pageId: 54025 steam: 552230 Doomsday Vault: @@ -47241,32 +45955,32 @@ Door Kickers: pageId: 10025 steam: 248610 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\KillHouseGames\DoorKickers\options.xml}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/DoorKickers/options.xml}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.local/share/DoorKickers/options.xml OR ~/DoorKickers/options.xml}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\KillHouseGames\DoorKickers\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/DoorKickers/}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.local/share/DoorKickers/}}' -'Door Kickers 2: Task Force North': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\KillHouseGames\\DoorKickers\\options.xml}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/DoorKickers/options.xml}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.local/share/DoorKickers/options.xml OR ~/DoorKickers/options.xml}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\KillHouseGames\\DoorKickers\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/DoorKickers/}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.local/share/DoorKickers/}}" +"Door Kickers 2: Task Force North": pageId: 167984 steam: 1239080 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\KillHouseGames\DoorKickers2\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\KillHouseGames\DoorKickers2\}}' -'Door Kickers: Action Squad': + - "{{Game data/config|Windows|{{p|localappdata}}\\KillHouseGames\\DoorKickers2\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\KillHouseGames\\DoorKickers2\\}}" +"Door Kickers: Action Squad": gog: 1147957142 pageId: 69054 steam: 686200 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\KillHouseGames\ActionSquad\options.xml}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\KillHouseGames\ActionSquad\userdata.bin}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\KillHouseGames\\ActionSquad\\options.xml}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\KillHouseGames\\ActionSquad\\userdata.bin}}" Door To Door: pageId: 41904 steam: 416200 Door in the Woods: pageId: 152707 steam: 1189230 -'Door2:Key': +"Door2:Key": pageId: 150938 steam: 1161900 Doors: @@ -47287,28 +46001,24 @@ Doors of Silence - the prologue: Doors to the City: pageId: 100310 steam: 879300 -'Doorways: Holy Mountains of Flesh': +"Doorways: Holy Mountains of Flesh": pageId: 38333 steam: 383930 templates: - - >- - {{Game data/config|Windows|{{P|hkcu}}\Software\Saibot Studios\Doorways: Holy Mountains of - Flesh|{{P|game}}\Doorways_Data\config}} - - >- - {{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/Saibot Studios/Doorways_ Holy Mountains of - Flesh/prefs|{{P|game}}/Doorways Holy Mountains of Flesh/Doorways_Data\config}} - - '{{Game data/saves|Windows|{{P|game}}\Doorways_Data\saves}}' - - '{{Game data/saves|Linux|{{P|game}}/Doorways Holy Mountains of Flesh/Doorways_Data\saves}}' -'Doorways: Old Prototype': + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Saibot Studios\\Doorways: Holy Mountains of Flesh|{{P|game}}\\Doorways_Data\\config}}" + - "{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/Saibot Studios/Doorways_ Holy Mountains of Flesh/prefs|{{P|game}}/Doorways Holy Mountains of Flesh/Doorways_Data\\config}}" + - "{{Game data/saves|Windows|{{P|game}}\\Doorways_Data\\saves}}" + - "{{Game data/saves|Linux|{{P|game}}/Doorways Holy Mountains of Flesh/Doorways_Data\\saves}}" +"Doorways: Old Prototype": pageId: 51344 steam: 525780 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Saibot Studios\Doorways: Old Prototype}}' - - '{{Game data/config|Linux|{{P|linuxhome}}/.config/unity3d/Saibot Studios/Doorways: Old Prototype/prefs}}' -'Doorways: Prelude': + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Saibot Studios\\Doorways: Old Prototype}}" + - "{{Game data/config|Linux|{{P|linuxhome}}/.config/unity3d/Saibot Studios/Doorways: Old Prototype/prefs}}" +"Doorways: Prelude": pageId: 40590 steam: 248470 -'Doorways: The Underworld': +"Doorways: The Underworld": pageId: 49631 steam: 311250 Dopamine: @@ -47317,20 +46027,20 @@ Dopamine: DoraKone: pageId: 132136 steam: 1034880 -'Doraemon Story of Seasons: Friends of the Great Kingdom': +"Doraemon Story of Seasons: Friends of the Great Kingdom": pageId: 185337 steam: 1492730 -'Doraemon: Monopoly': +"Doraemon: Monopoly": pageId: 161636 templates: - - '{{Game data/saves|Windows|{{p|game}}}}' -'Doraemon: Story of Seasons': + - "{{Game data/saves|Windows|{{p|game}}}}" +"Doraemon: Story of Seasons": pageId: 143187 renamedFrom: - Doraemon Story of Seasons steam: 965230 templates: - - '{{Game data/saves|Windows|{{p|steam}}\userdata\{{p|uid}}\965230\local\}}' + - "{{Game data/saves|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\965230\\local\\}}" Dorfromantik: gog: 1721001406 gogSide: @@ -47340,8 +46050,8 @@ Dorfromantik: steamSide: - 1526040 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\Toukana Interactive\Dorfromantik\Saves}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Toukana Interactive\Dorfromantik\Saves}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Toukana Interactive\\Dorfromantik\\Saves}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Toukana Interactive\\Dorfromantik\\Saves}}" Dorian Morris Adventure: pageId: 121738 steam: 898490 @@ -47370,15 +46080,15 @@ Dota 2: pageId: 195 steam: 570 steamSide: - - 1241930 - 652720 + - 1241930 templates: - - '{{Game data/config|Steam|{{p|game}}/dota/cfg/}}' + - "{{Game data/config|Steam|{{p|game}}/dota/cfg/}}" Dota Underlords: pageId: 139922 steam: 1046930 templates: - - '{{Game data/config|Steam|{{p|game}}/game/dac/cfg/}}' + - "{{Game data/config|Steam|{{p|game}}/game/dac/cfg/}}" Dotori: pageId: 151446 renamedFrom: @@ -47387,38 +46097,38 @@ Dotori: Dots: pageId: 77984 steam: 760820 -'Dots Pop : Sexy Hentai Girls': +"Dots Pop : Sexy Hentai Girls": pageId: 124034 steam: 987590 Dots eXtreme: pageId: 38917 steam: 521130 -'Dots: Revamped!': +"Dots: Revamped!": pageId: 141590 steam: 1104930 Double: pageId: 98894 steam: 887820 -'Double Action: Boogaloo': +"Double Action: Boogaloo": pageId: 37654 steam: 317360 Double Bubble Blaster Madness VR: pageId: 123944 steam: 942490 -'Double Clue: Solitaire Stories': +"Double Clue: Solitaire Stories": pageId: 61976 steam: 631250 Double Cross: pageId: 92347 steam: 838010 templates: - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\13AM Games\DoubleCross}}' + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\13AM Games\\DoubleCross}}" Double Dealing Character: pageId: 63109 steam: 1043240 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/saves|Windows|{{p|game}}\}}' + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\}}" Double Death: pageId: 39179 steam: 454280 @@ -47427,14 +46137,14 @@ Double Dragon: Double Dragon Advance: pageId: 191060 steam: 2086360 -'Double Dragon Gaiden: Rise of the Dragons': +"Double Dragon Gaiden: Rise of the Dragons": pageId: 190608 steam: 1967260 templates: - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\Secret Base\DoubleDragonGaiden_ROTD\}}' -'Double Dragon II: The Revenge': + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\Secret Base\\DoubleDragonGaiden_ROTD\\}}" +"Double Dragon II: The Revenge": pageId: 176633 -'Double Dragon III: The Rosetta Stone': +"Double Dragon III: The Rosetta Stone": pageId: 176636 Double Dragon IV: pageId: 57087 @@ -47443,14 +46153,14 @@ Double Dragon Neon: pageId: 14824 steam: 252350 templates: - - '{{Game data/saves|Windows|{{p|appdata}}\Wayforward Technologies\DoubleDragon\}}' + - "{{Game data/saves|Windows|{{p|appdata}}\\Wayforward Technologies\\DoubleDragon\\}}" Double Dragon Trilogy: gog: 1420716694 pageId: 34292 steam: 314150 templates: - - '{{Game data/config|Windows|{{p|steam}}\userdata\{{p|uid}}\314150\remote\}}' - - '{{Game data/saves|Windows|{{p|steam}}\userdata\{{p|uid}}\314150\remote\}}' + - "{{Game data/config|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\314150\\remote\\}}" + - "{{Game data/saves|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\314150\\remote\\}}" Double Dribble: pageId: 176605 Double Elf Fantasy: @@ -47466,7 +46176,7 @@ Double Kick Heroes: Double Memory: pageId: 72083 steam: 676450 -'Double Play: 2-Player VR Baseball': +"Double Play: 2-Player VR Baseball": pageId: 63608 steam: 651690 Double Shot: @@ -47476,8 +46186,8 @@ Double Spoiler: pageId: 63105 steam: 1100170 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/saves|Windows|{{p|game}}\}}' + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\}}" Double Stretch: pageId: 108454 steam: 916630 @@ -47496,16 +46206,16 @@ DoubleTap: Douche Bag: pageId: 66107 steam: 681650 -Doug Flutie's Maximum Football 2020: +"Doug Flutie's Maximum Football 2020": pageId: 181613 steam: 1470790 Doug and Lily: pageId: 58533 steam: 601180 -'Doughlings: Arcade': +"Doughlings: Arcade": pageId: 90366 steam: 747470 -'Doughlings: Invasion': +"Doughlings: Invasion": pageId: 130581 steam: 957680 Doujin Jigsaw Puzzle: @@ -47515,7 +46225,7 @@ Dovetail Games Flight School: pageId: 34751 steam: 441920 templates: - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Flight School Files\}}' + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Flight School Files\\}}" Down To One: pageId: 45059 steam: 334040 @@ -47527,12 +46237,12 @@ Down in Bermuda: pageId: 147725 steam: 1107300 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\SOFTWARE\Yak & Co\Down in Bermuda\}}' - - '{{Game data/saves|Windows|{{p|hkcu}}\SOFTWARE\Yak & Co\Down in Bermuda\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\Yak & Co\\Down in Bermuda\\}}" + - "{{Game data/saves|Windows|{{p|hkcu}}\\SOFTWARE\\Yak & Co\\Down in Bermuda\\}}" Down to Hell: pageId: 122826 steam: 961040 -'DownStream: VR Whitewater Kayaking': +"DownStream: VR Whitewater Kayaking": pageId: 126199 steam: 1004510 DownWind: @@ -47546,34 +46256,34 @@ Downfall: pageId: 34402 steam: 364390 templates: - - '{{Game data/config|Windows|{{p|game}}\acsetup.cfg}}' - - '{{Game data/config|Steam|{{p|userprofile}}\Saved Games\Downfall (2016) Steam\acsetup.cfg}}' - - '{{Game data/config|Linux|{{p|game}}/acsetup.cfg}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\Saved Games\Downfall (2016)\}}' - - '{{Game data/saves|Steam|{{p|userprofile}}\Saved Games\Downfall (2016) Steam\agssave.*}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/ags/Downfall (2016) Steam/}}' + - "{{Game data/config|Windows|{{p|game}}\\acsetup.cfg}}" + - "{{Game data/config|Steam|{{p|userprofile}}\\Saved Games\\Downfall (2016) Steam\\acsetup.cfg}}" + - "{{Game data/config|Linux|{{p|game}}/acsetup.cfg}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Saved Games\\Downfall (2016)\\}}" + - "{{Game data/saves|Steam|{{p|userprofile}}\\Saved Games\\Downfall (2016) Steam\\agssave.*}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/ags/Downfall (2016) Steam/}}" Downfall (2009): gog: 1207660723 pageId: 178707 templates: - - '{{Game data/config|Windows|{{P|game}}\acsetup.cfg}}' - - '{{Game data/saves|Windows|{{P|game}}\agssave.*}}' + - "{{Game data/config|Windows|{{P|game}}\\acsetup.cfg}}" + - "{{Game data/saves|Windows|{{P|game}}\\agssave.*}}" Downhill Deceits: pageId: 90520 steam: 825350 -'Downloaded: Fragments of a Forgotten Soul': +"Downloaded: Fragments of a Forgotten Soul": pageId: 66219 steam: 682920 Downpour: pageId: 47899 steam: 371400 -Downstairs at Grandma's House: +"Downstairs at Grandma's House": pageId: 126035 steam: 749750 Downtown: pageId: 92051 steam: 833380 -'Downtown Casino: Texas Hold''em Poker': +"Downtown Casino: Texas Hold'em Poker": pageId: 90969 steam: 758980 Downtown Drift: @@ -47582,24 +46292,24 @@ Downtown Drift: Downtown Jam: pageId: 180234 steam: 2010960 -'Downtown Mafia: Gang Wars': +"Downtown Mafia: Gang Wars": pageId: 100042 steam: 889730 Downtown Run: pageId: 72154 templates: - - '{{Game data/config|Windows|{{p|game}}\data\save\Main.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\data\save\players.cfg}}' + - "{{Game data/config|Windows|{{p|game}}\\data\\save\\Main.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\data\\save\\players.cfg}}" Downward: pageId: 54820 steam: 506900 templates: - - '{{Game data/config|Windows|{{P|game}}\Downward\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{P|game}}\Downward\Saved\SaveGames\}}' -'Downward Spiral: Horus Station': + - "{{Game data/config|Windows|{{P|game}}\\Downward\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{P|game}}\\Downward\\Saved\\SaveGames\\}}" +"Downward Spiral: Horus Station": pageId: 82888 steam: 690620 -'Downward Spiral: Prologue': +"Downward Spiral: Prologue": pageId: 59828 steam: 574940 Downwell: @@ -47607,15 +46317,15 @@ Downwell: pageId: 29243 steam: 360740 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Downwell_v1_0_5\save.ini}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Downwell_v1_0_5\save.ini}}' -'Dr Dick Dong: Stripper Underworld': + - "{{Game data/config|Windows|{{p|localappdata}}\\Downwell_v1_0_5\\save.ini}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Downwell_v1_0_5\\save.ini}}" +"Dr Dick Dong: Stripper Underworld": pageId: 156969 steam: 1217950 Dr Greenstuff: pageId: 105375 steam: 892380 -'Dr Livingstone, I Presume?': +"Dr Livingstone, I Presume?": gog: 1856287289 gogSide: - 1112802446 @@ -47629,17 +46339,17 @@ Dr Greenstuff: - 1640530 - 1640620 templates: - - '{{Game data/saves|Windows|{{p|LOCALAPPDATA}}\DrLivingstone\Saved}}' -'Dr. Brain Thinking Games: IQ Adventure': + - "{{Game data/saves|Windows|{{p|LOCALAPPDATA}}\\DrLivingstone\\Saved}}" +"Dr. Brain Thinking Games: IQ Adventure": pageId: 179687 -'Dr. Brain Thinking Games: Puzzle Madness': +"Dr. Brain Thinking Games: Puzzle Madness": pageId: 179685 -'Dr. Brain: Action Reaction': +"Dr. Brain: Action Reaction": pageId: 179689 Dr. Bulbaceous: pageId: 45573 steam: 388540 -Dr. Cares - Amy's Pet Clinic: +"Dr. Cares - Amy's Pet Clinic": pageId: 91892 steam: 806960 Dr. Cares - Family Practice: @@ -47654,10 +46364,10 @@ Dr. Daisy Pet Vet: Dr. Doyle & The Mystery of the Cloche Hat: pageId: 61435 steam: 574420 -Dr. Dungeon's Madman!: +"Dr. Dungeon's Madman!": pageId: 66773 steam: 684570 -Dr. Emmerson's Nocturnes: +"Dr. Emmerson's Nocturnes": gog: 1783507957 gogSide: - 1959448998 @@ -47665,50 +46375,42 @@ Dr. Emmerson's Nocturnes: steam: 2361560 steamSide: - 2643510 -Dr. Fetus' Mean Meat Machine: +"Dr. Fetus' Mean Meat Machine": gog: 1561985671 pageId: 185949 steam: 2228030 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\appdata\locallow}}\Thunderful\Dr. Fetus' Mean Meat - Machine\AppSettings.dat}} - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\Thunderful\Dr. Fetus'' Mean Meat Machine\}}' -Dr. Fizzgigious' Fantabulous Carbon Dating Simulacrum: + - "{{Game data/config|Windows|{{p|userprofile\\appdata\\locallow}}\\Thunderful\\Dr. Fetus' Mean Meat Machine\\AppSettings.dat}}" + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\Thunderful\\Dr. Fetus' Mean Meat Machine\\}}" +"Dr. Fizzgigious' Fantabulous Carbon Dating Simulacrum": pageId: 77588 steam: 711500 -Dr. Frank's Build a Boyfriend: +"Dr. Frank's Build a Boyfriend": pageId: 89220 steam: 742170 templates: - - '{{Game data/saves|Windows|{{p|game}}\game\saves}}' + - "{{Game data/saves|Windows|{{p|game}}\\game\\saves}}" Dr. Green: pageId: 49039 steam: 340290 -'Dr. Langeskov, The Tiger, and The Terribly Cursed Emerald: A Whirlwind Heist': +"Dr. Langeskov, The Tiger, and The Terribly Cursed Emerald: A Whirlwind Heist": pageId: 30062 steam: 409160 templates: - - >- - {{Game data/config|Windows|{{p|hkcu}}\SOFTWARE\CrowsCrowsCrows\Dr. Langeskov, The Tiger, and The Terribly Cursed - Emerald\}} + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\CrowsCrowsCrows\\Dr. Langeskov, The Tiger, and The Terribly Cursed Emerald\\}}" Dr. Pills: pageId: 91863 steam: 836790 -Dr. Robotnik's Mean Bean Machine: +"Dr. Robotnik's Mean Bean Machine": pageId: 8562 steam: 34286 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\SEGA Mega Drive - Classics\setup.dat|{{p|userprofile\Documents}}\SEGA Genesis Classics\setup.dat}} - - >- - {{Game data/saves|Windows|{{p|userprofile\Documents}}\SEGA Mega Drive - Classics\0014|{{p|userprofile\Documents}}\SEGA Genesis Classics\0014}} -Dr. Schplot's Nanobots: + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\SEGA Mega Drive Classics\\setup.dat|{{p|userprofile\\Documents}}\\SEGA Genesis Classics\\setup.dat}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\SEGA Mega Drive Classics\\0014|{{p|userprofile\\Documents}}\\SEGA Genesis Classics\\0014}}" +"Dr. Schplot's Nanobots": pageId: 122227 steam: 970240 -Dr. Seuss's ABC: +"Dr. Seuss's ABC": pageId: 186899 Dr. Spacezoo: pageId: 43125 @@ -47716,16 +46418,16 @@ Dr. Spacezoo: Dr. Tacocat: pageId: 142365 steam: 1114630 -Dr. Trolley's Problem: +"Dr. Trolley's Problem": pageId: 134727 steam: 773830 -Dr. Umgebung's School of Life: +"Dr. Umgebung's School of Life": pageId: 155406 steam: 1135050 Draco Dux: pageId: 39492 steam: 460730 -Draco's Misfortune: +"Draco's Misfortune": pageId: 122910 steam: 949130 Dracologic: @@ -47734,7 +46436,7 @@ Dracologic: Draconian Wars: pageId: 49701 steam: 296590 -'Draconic Echoes: The Ardent War': +"Draconic Echoes: The Ardent War": pageId: 152687 steam: 1181880 Draconic Order VR: @@ -47743,128 +46445,120 @@ Draconic Order VR: Draconic Route: pageId: 149009 steam: 1136790 -'Dracula 2: The Last Sanctuary': +"Dracula 2: The Last Sanctuary": gog: 1207661563 pageId: 36414 steam: 289820 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\Dracula The Last Sanctuary\options.xml}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\Dracula The Last Sanctuary\save.xml}}' -'Dracula 3: The Path of the Dragon': + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\Dracula The Last Sanctuary\\options.xml}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\Dracula The Last Sanctuary\\save.xml}}" +"Dracula 3: The Path of the Dragon": gog: 1207661573 pageId: 36416 steam: 289840 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\Dracula 3\options.xml}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\Dracula 3\save.xml}}' -'Dracula 4: The Shadow of the Dragon': + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\Dracula 3\\options.xml}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\Dracula 3\\save.xml}}" +"Dracula 4: The Shadow of the Dragon": gog: 1207664273 pageId: 50186 steam: 279560 templates: - - >- - {{Game data/config|Windows|{{P|userprofile\Documents}}\My Games\Dracula 4 Special Steam - Edition\Profile*\options.xml}} - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\My Games\Dracula 4 Special Steam Edition\Profile*\save.xml}}' -'Dracula 5: The Blood Legacy': + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\My Games\\Dracula 4 Special Steam Edition\\Profile*\\options.xml}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\My Games\\Dracula 4 Special Steam Edition\\Profile*\\save.xml}}" +"Dracula 5: The Blood Legacy": gog: 1207664283 pageId: 50977 steam: 279560 templates: - - >- - {{Game data/config|Windows|{{P|userprofile\Documents}}\My Games\Dracula 5 Special Steam - Edition\Profile*\options.xml}} - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\My Games\Dracula 5 Special Steam Edition\Profile*\save.xml}}' -Dracula's Legacy: + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\My Games\\Dracula 5 Special Steam Edition\\Profile*\\options.xml}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\My Games\\Dracula 5 Special Steam Edition\\Profile*\\save.xml}}" +"Dracula's Legacy": pageId: 45942 steam: 396790 templates: - - '{{Game data/config|Windows|{{P|appdata}}\DraculaLegacy\params.conf}}' - - '{{Game data/saves|Windows|{{P|appdata}}\DraculaLegacy\}}' -Dracula's Library: + - "{{Game data/config|Windows|{{P|appdata}}\\DraculaLegacy\\params.conf}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\DraculaLegacy\\}}" +"Dracula's Library": pageId: 64542 steam: 656310 -Dracula's Library 2: +"Dracula's Library 2": pageId: 78104 steam: 765300 -'Dracula: Love Kills': +"Dracula: Love Kills": gog: 1396287570 pageId: 40556 steam: 252890 templates: - - >- - {{Game data/config|Windows|{{P|appdata}}\Frogwares\{{LocalizedPath|Dracula. Love Kills Collector's - Edition}}\setup.ini}} - - >- - {{Game data/saves|Windows|{{P|appdata}}\Frogwares\{{LocalizedPath|Dracula. Love Kills Collector's - Edition}}\save\}} -'Dracula: Origin': + - "{{Game data/config|Windows|{{P|appdata}}\\Frogwares\\{{LocalizedPath|Dracula. Love Kills Collector's Edition}}\\setup.ini}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\Frogwares\\{{LocalizedPath|Dracula. Love Kills Collector's Edition}}\\save\\}}" +"Dracula: Origin": gog: 1714446439 pageId: 41345 renamedFrom: - Dracula Origin steam: 11050 templates: - - '{{Game data/config|Windows|{{P|appdata}}\Games\{{LocalizedPath|dracula}}\setup.ini}}' - - '{{Game data/saves|Windows|{{P|appdata}}\Games\{{LocalizedPath|dracula}}\save\}}' -'Dracula: The Days of Gore': + - "{{Game data/config|Windows|{{P|appdata}}\\Games\\{{LocalizedPath|dracula}}\\setup.ini}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\Games\\{{LocalizedPath|dracula}}\\save\\}}" +"Dracula: The Days of Gore": pageId: 90709 -'Dracula: The Resurrection': +"Dracula: The Resurrection": gog: 1207661553 pageId: 36412 steam: 289800 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\Dracula Resurrection\options.xml}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\Dracula Resurrection\save.xml}}' -'Dracula: Vampires vs. Zombies': + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\Dracula Resurrection\\options.xml}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\Dracula Resurrection\\save.xml}}" +"Dracula: Vampires vs. Zombies": pageId: 64610 steam: 667010 -'Draft Day Sports: College Basketball 2017': +"Draft Day Sports: College Basketball 2017": pageId: 75490 steam: 729310 -'Draft Day Sports: College Basketball 2018': +"Draft Day Sports: College Basketball 2018": pageId: 88698 steam: 807730 -'Draft Day Sports: College Basketball 2019': +"Draft Day Sports: College Basketball 2019": pageId: 127425 steam: 1013710 -'Draft Day Sports: College Basketball 3': +"Draft Day Sports: College Basketball 3": pageId: 45525 steam: 413460 -'Draft Day Sports: College Football 2018': +"Draft Day Sports: College Football 2018": pageId: 98620 steam: 878710 -'Draft Day Sports: College Football 2019': +"Draft Day Sports: College Football 2019": pageId: 127323 steam: 1013700 -'Draft Day Sports: College Football 2020': +"Draft Day Sports: College Football 2020": pageId: 156447 steam: 1225550 -'Draft Day Sports: Pro Basketball 2017': +"Draft Day Sports: Pro Basketball 2017": pageId: 53654 steam: 544480 -'Draft Day Sports: Pro Basketball 2018': +"Draft Day Sports: Pro Basketball 2018": pageId: 76543 steam: 745530 -'Draft Day Sports: Pro Basketball 2019': +"Draft Day Sports: Pro Basketball 2019": pageId: 121720 steam: 971900 -'Draft Day Sports: Pro Basketball 2020': +"Draft Day Sports: Pro Basketball 2020": pageId: 152843 steam: 1196260 -'Draft Day Sports: Pro Basketball 4': +"Draft Day Sports: Pro Basketball 4": pageId: 49259 steam: 328870 -'Draft Day Sports: Pro Football 2018': +"Draft Day Sports: Pro Football 2018": pageId: 80879 steam: 782510 -'Draft Day Sports: Pro Football 2019': +"Draft Day Sports: Pro Football 2019": pageId: 122080 steam: 974530 -'Draft Day Sports: Pro Football 2020': +"Draft Day Sports: Pro Football 2020": pageId: 141766 steam: 1124530 -'Draft Day Sports: Pro Golf': +"Draft Day Sports: Pro Golf": pageId: 100134 steam: 891270 Drafting Tales: @@ -47888,17 +46582,17 @@ Dragon Age II: pageId: 3561 steam: 1238040 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\BioWare\Dragon Age 2\Settings\DragonAge.ini}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Documents/BioWare/Dragon Age 2/Settings/DragonAge.ini}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\BioWare\Dragon Age 2\Characters\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Documents/BioWare/Dragon Age 2/Characters/}}' -'Dragon Age: Inquisition': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\BioWare\\Dragon Age 2\\Settings\\DragonAge.ini}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Documents/BioWare/Dragon Age 2/Settings/DragonAge.ini}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\BioWare\\Dragon Age 2\\Characters\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Documents/BioWare/Dragon Age 2/Characters/}}" +"Dragon Age: Inquisition": pageId: 16793 steam: 1222690 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\BioWare\Dragon Age Inquisition\Save\}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\BioWare\Dragon Age Inquisition\Save\}}' -'Dragon Age: Origins': + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\BioWare\\Dragon Age Inquisition\\Save\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\BioWare\\Dragon Age Inquisition\\Save\\}}" +"Dragon Age: Origins": gog: 1949616134 pageId: 69 steam: 47810 @@ -47906,8 +46600,8 @@ Dragon Age II: - 17450 - 47730 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\BioWare\Dragon Age\Settings\DragonAge.ini}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\BioWare\Dragon Age\Characters\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\BioWare\\Dragon Age\\Settings\\DragonAge.ini}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\BioWare\\Dragon Age\\Characters\\}}" Dragon Audit: pageId: 98168 steam: 594380 @@ -47918,39 +46612,33 @@ Dragon Ball FighterZ: pageId: 63514 steam: 678950 templates: - - >- - {{Game - data/config|Windows|{{p|localappdata}}\DBFighterZ\Saved\SaveGames\Config.sav|{{p|localappdata}}\DBFighterZ\Saved\SaveGames\{{P|uid}}\Config.sav}} - - >- - {{Game - data/saves|Windows|{{p|localappdata}}\DBFighterZ\Saved\SaveGames\SYSTEM.sav|{{p|localappdata}}\DBFighterZ\Saved\SaveGames\{{P|uid}}\SYSTEM.sav|{{p|localappdata}}\DBFighterZ\Saved\SaveGames\{{P|uid}}\REPLAY.sav}} + - "{{Game data/config|Windows|{{p|localappdata}}\\DBFighterZ\\Saved\\SaveGames\\Config.sav|{{p|localappdata}}\\DBFighterZ\\Saved\\SaveGames\\{{P|uid}}\\Config.sav}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\DBFighterZ\\Saved\\SaveGames\\SYSTEM.sav|{{p|localappdata}}\\DBFighterZ\\Saved\\SaveGames\\{{P|uid}}\\SYSTEM.sav|{{p|localappdata}}\\DBFighterZ\\Saved\\SaveGames\\{{P|uid}}\\REPLAY.sav}}" Dragon Ball Xenoverse: pageId: 20941 steam: 323470 steamSide: - 344460 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\BANDAI NAMCO Games\DB Xenoverse\}}' - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\323470\remote\DBXV.sav}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\BANDAI NAMCO Games\\DB Xenoverse\\}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\323470\\remote\\DBXV.sav}}" Dragon Ball Xenoverse 2: pageId: 36446 steam: 454650 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\BANDAI NAMCO Entertainment\DB Xenoverse 2\}}' - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\323470\remote\DBXV21\DBXV2.sav}}' -'Dragon Ball Z: Kakarot': + - "{{Game data/config|Windows|{{p|localappdata}}\\BANDAI NAMCO Entertainment\\DB Xenoverse 2\\}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\323470\\remote\\DBXV21\\DBXV2.sav}}" +"Dragon Ball Z: Kakarot": pageId: 138408 steam: 851850 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\AT\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{p|steam}}\userdata\{{p|uid}}\851850\remote\}}' -'Dragon Ball: The Breakers': + - "{{Game data/config|Windows|{{p|localappdata}}\\AT\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\851850\\remote\\}}" +"Dragon Ball: The Breakers": pageId: 173457 steam: 1276760 templates: - - >- - {{Game data/config|Windows|{{p|localappdata}}\BANDAI NAMCO Entertainment\DRAGON BALL THE - BREAKERS\Saved\SaveGames\{{p|uid}}\settings.ini}} + - "{{Game data/config|Windows|{{p|localappdata}}\\BANDAI NAMCO Entertainment\\DRAGON BALL THE BREAKERS\\Saved\\SaveGames\\{{p|uid}}\\settings.ini}}" Dragon Battle: pageId: 95280 steam: 859310 @@ -47969,7 +46657,7 @@ Dragon Bros: Dragon Caffi: pageId: 181450 steam: 1943310 -'Dragon Castle: The Board Game': +"Dragon Castle: The Board Game": pageId: 153555 steam: 1074300 Dragon Chase: @@ -47984,8 +46672,8 @@ Dragon Cliff: pageId: 77319 steam: 758190 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\Meta Interaction\Dragon Cliff\Unity}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Meta Interaction\Dragon Cliff\}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Meta Interaction\\Dragon Cliff\\Unity}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Meta Interaction\\Dragon Cliff\\}}" Dragon Climax: pageId: 78100 steam: 593740 @@ -48001,10 +46689,10 @@ Dragon Essence - Color My World: Dragon Eye Online: pageId: 126450 steam: 992780 -'Dragon Fantasy: The Black Tome of Ice': +"Dragon Fantasy: The Black Tome of Ice": pageId: 42886 steam: 328000 -'Dragon Fantasy: The Volumes of Westeria': +"Dragon Fantasy: The Volumes of Westeria": pageId: 48250 steam: 327980 Dragon Fin Soup: @@ -48038,13 +46726,13 @@ Dragon Knight: Dragon Lord: pageId: 75362 templates: - - '{{Game data/saves|DOS|{{p|game}}\*.DBG}}' + - "{{Game data/saves|DOS|{{p|game}}\\*.DBG}}" Dragon Lords 3D: pageId: 65861 steam: 661960 -'Dragon Lore II: The Heart of the Dragon Man': +"Dragon Lore II: The Heart of the Dragon Man": pageId: 168429 -'Dragon Lore: The Legend Begins': +"Dragon Lore: The Legend Begins": gog: 1207660223 pageId: 131844 Dragon Mania Legends: @@ -48053,7 +46741,7 @@ Dragon Marked for Death: pageId: 160950 steam: 1149440 templates: - - '{{Game data/saves|Windows|{{P|steam}}\userdata\{{P|uid}}\1149440\local}}' + - "{{Game data/saves|Windows|{{P|steam}}\\userdata\\{{P|uid}}\\1149440\\local}}" Dragon Master: pageId: 113296 steam: 822230 @@ -48070,18 +46758,18 @@ Dragon Quest Builders 2: pageId: 152251 steam: 1072420 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Square Enix\DRAGON QUEST BUILDERS 2\}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\My Games\DRAGON QUEST BUILDERS II\Steam\{{P|uid}}\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Square Enix\\DRAGON QUEST BUILDERS 2\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\My Games\\DRAGON QUEST BUILDERS II\\Steam\\{{P|uid}}\\}}" Dragon Quest Heroes: pageId: 29860 steam: 410850 templates: - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\SQUARE ENIX\DRAGON QUEST HEROES\Savedata\}}' + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\SQUARE ENIX\\DRAGON QUEST HEROES\\Savedata\\}}" Dragon Quest Heroes II: pageId: 58961 steam: 574050 templates: - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\SQUARE ENIX\DRAGON QUEST HEROES II\}}' + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\SQUARE ENIX\\DRAGON QUEST HEROES II\\}}" Dragon Quest Rivals Ace: pageId: 167922 steam: 1223840 @@ -48089,43 +46777,33 @@ Dragon Quest Treasures: pageId: 188666 steam: 2021210 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\DragonQuestTreasures\Saved\SaveGames\}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\DragonQuestTreasures\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\DragonQuestTreasures\\Saved\\SaveGames\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\DragonQuestTreasures\\Saved\\SaveGames\\}}" Dragon Quest X: pageId: 59146 Dragon Quest X Offline: pageId: 172011 steam: 1358750 templates: - - >- - {{Game data/saves|Windows|{{P|userprofile\Documents}}\My Games\DRAGON QUEST X - OFFLINE\Steam\{{p|uid}}\Saved\SaveGames\}} + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\My Games\\DRAGON QUEST X OFFLINE\\Steam\\{{p|uid}}\\Saved\\SaveGames\\}}" Dragon Quest XI: pageId: 90887 steam: 742120 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\My Games\DRAGON QUEST XI\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\My Games\DRAGON QUEST XI\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\My Games\\DRAGON QUEST XI\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\My Games\\DRAGON QUEST XI\\Saved\\SaveGames\\}}" Dragon Quest XI S - Definitive Edition: pageId: 162136 renamedFrom: - - 'Dragon Quest XI S: Echoes of an Elusive Age - Definitive Edition' + - "Dragon Quest XI S: Echoes of an Elusive Age - Definitive Edition" steam: 1295510 templates: - - >- - {{Game data/config|Epic Games Launcher|{{P|userprofile}}\Saved Games\DRAGON QUEST XI S\Epic Games - Store\Saved\Config\WindowsNoEditor\}} - - >- - {{Game data/config|Microsoft Store|{{P|userprofile\Documents}}\My Games\DRAGON QUEST XI - S\Xbox\Saved\Config\WindowsNoEditor\}} - - >- - {{Game data/config|Steam|{{P|userprofile\Documents}}\My Games\DRAGON QUEST XI - S\Steam\Saved\Config\WindowsNoEditor\}} - - '{{Game data/saves|Epic Games Launcher|{{P|userprofile}}\Saved Games\DRAGON QUEST XI S\Epic Games Store\}}' - - '{{Game data/saves|Microsoft Store|{{P|localappdata}}\Packages\39EA002F.DQXISWW_n746a19ndrrjg\SystemAppData\wgs\}}' - - >- - {{Game data/saves|Steam|{{P|userprofile\Documents}}\My Games\DRAGON QUEST XI - S\Steam\{{p|uid}}\Saved\SaveGames\Book}} + - "{{Game data/config|Epic Games Launcher|{{P|userprofile}}\\Saved Games\\DRAGON QUEST XI S\\Epic Games Store\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/config|Microsoft Store|{{P|userprofile\\Documents}}\\My Games\\DRAGON QUEST XI S\\Xbox\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/config|Steam|{{P|userprofile\\Documents}}\\My Games\\DRAGON QUEST XI S\\Steam\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Epic Games Launcher|{{P|userprofile}}\\Saved Games\\DRAGON QUEST XI S\\Epic Games Store\\}}" + - "{{Game data/saves|Microsoft Store|{{P|localappdata}}\\Packages\\39EA002F.DQXISWW_n746a19ndrrjg\\SystemAppData\\wgs\\}}" + - "{{Game data/saves|Steam|{{P|userprofile\\Documents}}\\My Games\\DRAGON QUEST XI S\\Steam\\{{p|uid}}\\Saved\\SaveGames\\Book}}" Dragon Racer: pageId: 125454 steam: 987200 @@ -48137,10 +46815,10 @@ Dragon Revenge: Dragon Rider: pageId: 45809 steam: 381290 -'Dragon Riders: Chronicles of Pern': +"Dragon Riders: Chronicles of Pern": pageId: 177022 templates: - - '{{Game data/saves|Windows|{{p|game}}{{note|Save files are the ''''.psg'''' files in the game directory.}}}}' + - "{{Game data/saves|Windows|{{p|game}}{{note|Save files are the ''.psg'' files in the game directory.}}}}" Dragon Roller Coaster VR: pageId: 125914 steam: 1010410 @@ -48162,20 +46840,20 @@ Dragon Skies VR: Dragon Slayer: pageId: 149592 steam: 1151770 -'Dragon Slayer: The Legend of Heroes': +"Dragon Slayer: The Legend of Heroes": pageId: 174886 renamedFrom: - - 'Dragon Slayer:The Legend of Heroes' + - "Dragon Slayer:The Legend of Heroes" templates: - - '{{Game data/saves|DOS|{{p|game}}\SAVE}}' -'Dragon Slayer: The Legend of Heroes II': + - "{{Game data/saves|DOS|{{p|game}}\\SAVE}}" +"Dragon Slayer: The Legend of Heroes II": pageId: 174909 renamedFrom: - - 'Dragon Slayer:The Legend of HeroesII' - - 'Dragon Slayer: The Legend of Heroes II' - - 'Dragon Slayer:The Legend of HeroesII' + - "Dragon Slayer:The Legend of HeroesII" + - "Dragon Slayer: The Legend of Heroes II" + - "Dragon Slayer:The Legend of HeroesII" templates: - - '{{Game data/saves|DOS|{{p|game}}\SAVE}}' + - "{{Game data/saves|DOS|{{p|game}}\\SAVE}}" Dragon Souls: pageId: 53491 steam: 510370 @@ -48190,20 +46868,18 @@ Dragon Star Varnir: pageId: 142016 steam: 1062040 templates: - - '{{Game data/config|Windows|{{P|game}}\resource\bin\DragonStarVarnir.ini}}' - - >- - {{Game - data/config|Steam|{{P|steam}}\userdata\{{P|uid}}\1062040\remote\SYSTEMSAVE_GAME.BIN|{{P|steam}}\userdata\{{P|uid}}\1062040\remote\SYSTEMSAVE_param.sfo}} - - '{{Game data/saves|Steam|{{P|steam}}\userdata\{{P|uid}}\1062040\remote\}}' + - "{{Game data/config|Windows|{{P|game}}\\resource\\bin\\DragonStarVarnir.ini}}" + - "{{Game data/config|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\1062040\\remote\\SYSTEMSAVE_GAME.BIN|{{P|steam}}\\userdata\\{{P|uid}}\\1062040\\remote\\SYSTEMSAVE_param.sfo}}" + - "{{Game data/saves|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\1062040\\remote\\}}" Dragon Stone - Legendary Archer: pageId: 152851 steam: 1188100 -'Dragon Throne: Battle of Red Cliffs': +"Dragon Throne: Battle of Red Cliffs": pageId: 157640 steam: 1733020 templates: - - '{{Game data/config|Windows|{{p|game}}}}' - - '{{Game data/saves|Windows|{{p|game}}}}' + - "{{Game data/config|Windows|{{p|game}}}}" + - "{{Game data/saves|Windows|{{p|game}}}}" Dragon Valley: pageId: 112848 renamedFrom: @@ -48214,82 +46890,82 @@ Dragon View: pageId: 125823 steam: 784010 templates: - - '{{Game data/config|Windows|{{P|game}}\res\}}' - - '{{Game data/saves|Windows|{{P|game}}\res\}}' + - "{{Game data/config|Windows|{{P|game}}\\res\\}}" + - "{{Game data/saves|Windows|{{P|game}}\\res\\}}" Dragon Wars: gog: 1207666713 pageId: 30926 steam: 624070 templates: - - '{{Game data/config|DOS|{{p|game}}\DRAGON.COM}}' - - '{{Game data/saves|DOS|{{p|game}}\DATA1}}' + - "{{Game data/config|DOS|{{p|game}}\\DRAGON.COM}}" + - "{{Game data/saves|DOS|{{p|game}}\\DATA1}}" Dragon World: pageId: 122160 steam: 973800 -'Dragon and Weed: Origins OB - Dual Edges': +"Dragon and Weed: Origins OB - Dual Edges": pageId: 149168 renamedFrom: - - 'Dragon and Weed: Origins Season 1 Vol.1' + - "Dragon and Weed: Origins Season 1 Vol.1" steam: 1081370 Dragon of Legends: pageId: 77230 steam: 590580 -Dragon's Checkers: +"Dragon's Checkers": pageId: 104995 steam: 879110 -Dragon's Dogma II: +"Dragon's Dogma II": pageId: 187798 steam: 2054970 -Dragon's Dogma Online: +"Dragon's Dogma Online": pageId: 27639 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\CAPCOM\Dragon''s Dogma Online}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\CAPCOM\Dragon''s Dogma Online}}' -'Dragon''s Dogma: Dark Arisen': + - "{{Game data/config|Windows|{{p|localappdata}}\\CAPCOM\\Dragon's Dogma Online}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\CAPCOM\\Dragon's Dogma Online}}" +"Dragon's Dogma: Dark Arisen": gog: 1242384383 pageId: 28974 steam: 367500 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\capcom\DRAGONS DOGMA DARK ARISEN\config.ini}}' - - '{{Game data/saves|GOG.com|{{p|localappdata}}\GOG.com\Galaxy\Applications\49987265717041704\Storage\Shared\Files\}}' - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\367500\remote\}}' -'Dragon''s Dungeon: Awakening': + - "{{Game data/config|Windows|{{p|localappdata}}\\capcom\\DRAGONS DOGMA DARK ARISEN\\config.ini}}" + - "{{Game data/saves|GOG.com|{{p|localappdata}}\\GOG.com\\Galaxy\\Applications\\49987265717041704\\Storage\\Shared\\Files\\}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\367500\\remote\\}}" +"Dragon's Dungeon: Awakening": pageId: 67827 steam: 640430 -Dragon's Hope: +"Dragon's Hope": pageId: 126385 steam: 1005320 -Dragon's Lair: +"Dragon's Lair": gog: 2083200433 pageId: 7485 steam: 227380 -'Dragon''s Lair 3D: Return to the Lair': +"Dragon's Lair 3D: Return to the Lair": pageId: 59559 templates: - - '{{Game data/saves|Windows|{{p|game}}\Save}}' -'Dragon''s Lair II: Time Warp': + - "{{Game data/saves|Windows|{{p|game}}\\Save}}" +"Dragon's Lair II: Time Warp": gog: 2083200433 pageId: 40564 steam: 240360 -Dragon's Lair Trilogy: +"Dragon's Lair Trilogy": gog: 2083200433 pageId: 142455 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Digital Leisure Inc.\Dragon''s Lair Trilogy}}' - - '{{Game data/saves|Windows|{{P|hkcu}}\Software\Digital Leisure Inc.\Dragon''s Lair Trilogy}}' -Dragon's Lunch: + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Digital Leisure Inc.\\Dragon's Lair Trilogy}}" + - "{{Game data/saves|Windows|{{P|hkcu}}\\Software\\Digital Leisure Inc.\\Dragon's Lair Trilogy}}" +"Dragon's Lunch": pageId: 69238 steam: 663530 -Dragon's Prophet: +"Dragon's Prophet": pageId: 40594 steam: 1380940 -Dragon's Wake: +"Dragon's Wake": pageId: 38095 steam: 399070 -'Dragon: A Game About a Dragon': +"Dragon: A Game About a Dragon": pageId: 48096 steam: 351150 -'Dragon: The Game': +"Dragon: The Game": pageId: 49373 steam: 305960 DragonBlast VR: @@ -48307,10 +46983,10 @@ DragonFangZ - The Rose & Dungeon of Time: DragonRide VR: pageId: 156372 steam: 1197620 -'DragonScales 3: Eternal Prophecy of Darkness': +"DragonScales 3: Eternal Prophecy of Darkness": pageId: 156216 steam: 1215310 -'DragonScales 5: The Frozen Tomb': +"DragonScales 5: The Frozen Tomb": pageId: 122018 steam: 971640 DragonSnake VR: @@ -48321,13 +46997,13 @@ DragonStrike: pageId: 72169 steam: 2350520 templates: - - '{{Game data/saves|DOS|{{p|game}}\PREF.DAT}}' + - "{{Game data/saves|DOS|{{p|game}}\\PREF.DAT}}" DragonWingsVR: pageId: 54979 steam: 563680 Dragonary: pageId: 181606 -Dragonfang - Drahn's Mystery Dungeon: +"Dragonfang - Drahn's Mystery Dungeon": pageId: 156649 steam: 998340 Dragonflight: @@ -48336,14 +47012,14 @@ Dragonflight: Dragonfly Chronicles: pageId: 104197 steam: 888760 -'Dragonheir: Silent Gods': +"Dragonheir: Silent Gods": pageId: 187467 steam: 2203070 Dragonia: pageId: 62929 steam: 635730 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Bluster Light\Dragonia\SavegameData}}' + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Bluster Light\\Dragonia\\SavegameData}}" Dragonpath: pageId: 42547 steam: 425820 @@ -48361,8 +47037,8 @@ Dragons of Flame: pageId: 72448 steam: 2344020 templates: - - '{{Game data/saves|DOS|{{p|game}}\********}}' -Dragons' Twilight: + - "{{Game data/saves|DOS|{{p|game}}\\********}}" +"Dragons' Twilight": pageId: 65469 steam: 658050 Dragonsphere: @@ -48370,8 +47046,8 @@ Dragonsphere: pageId: 15715 steam: 327940 templates: - - '{{Game data/config|DOS|{{p|game}}\CONFIG.DRA}}' - - '{{Game data/saves|DOS|{{p|game}}\DRAG0**.SAV|{{p|game}}\SAVES.DIR}}' + - "{{Game data/config|DOS|{{p|game}}\\CONFIG.DRA}}" + - "{{Game data/saves|DOS|{{p|game}}\\DRAG0**.SAV|{{p|game}}\\SAVES.DIR}}" Dragonward: pageId: 90305 steam: 825080 @@ -48384,38 +47060,32 @@ Drain Mansion: steamSide: - 2352110 templates: - - >- - {{Game - data/config|Windows|{{p|game}}\DrainMansion_Data\*.save|{{p|game}}\DrainMansion_Data\*.txt|{{p|userprofile\appdata\locallow}}\Kredyn\DrainMansion\DrainMansion_Data\*.save|{{p|userprofile\appdata\locallow}}\Kredyn\DrainMansion\DrainMansion_Data\*.txt}} + - "{{Game data/config|Windows|{{p|game}}\\DrainMansion_Data\\*.save|{{p|game}}\\DrainMansion_Data\\*.txt|{{p|userprofile\\appdata\\locallow}}\\Kredyn\\DrainMansion\\DrainMansion_Data\\*.save|{{p|userprofile\\appdata\\locallow}}\\Kredyn\\DrainMansion\\DrainMansion_Data\\*.txt}}" DrainLive: pageId: 153652 steam: 1092150 Drainus: pageId: 179297 steam: 1975360 -'Drakan: Order of the Flame': +"Drakan: Order of the Flame": pageId: 1946 templates: - - '{{Game data/config|Windows|{{p|game}}\Drakan.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\Saves\}}' + - "{{Game data/config|Windows|{{p|game}}\\Drakan.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\Saves\\}}" Drake Hollow: gog: 1451301232 pageId: 160593 steam: 739650 templates: - - >- - {{Game data/config|Microsoft - Store|{{P|localappdata}}\Packages\64006TheMolassesFloodLLC.418795752BB1E_2jgfqbz9r2ze2\LocalCache\Local\DrakeHollow\Saved\Config\WinGDK\}} - - '{{Game data/config|Steam|{{P|localappdata}}\DrakeHollow\Saved\Config\WindowsNoEditor\}}' - - >- - {{Game data/saves|Microsoft - Store|{{P|localappdata}}\Packages\64006TheMolassesFloodLLC.418795752BB1E_2jgfqbz9r2ze2\SystemAppData\wgs\}} - - '{{Game data/saves|Steam|{{P|localappdata}}\DrakeHollow\Saved\SaveGames\}}' + - "{{Game data/config|Microsoft Store|{{P|localappdata}}\\Packages\\64006TheMolassesFloodLLC.418795752BB1E_2jgfqbz9r2ze2\\LocalCache\\Local\\DrakeHollow\\Saved\\Config\\WinGDK\\}}" + - "{{Game data/config|Steam|{{P|localappdata}}\\DrakeHollow\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Microsoft Store|{{P|localappdata}}\\Packages\\64006TheMolassesFloodLLC.418795752BB1E_2jgfqbz9r2ze2\\SystemAppData\\wgs\\}}" + - "{{Game data/saves|Steam|{{P|localappdata}}\\DrakeHollow\\Saved\\SaveGames\\}}" Drake of the 99 Dragons: pageId: 88652 steam: 755630 templates: - - '{{Game data/saves|Windows|{{P|game}}\version\savegames\}}' + - "{{Game data/saves|Windows|{{P|game}}\\version\\savegames\\}}" Drakeling Labs: pageId: 89198 steam: 810100 @@ -48426,21 +47096,21 @@ Drakensang Online: - 2215920 - 2215930 - 2215940 -'Drakensang: The Dark Eye': +"Drakensang: The Dark Eye": gog: 1100566473 pageId: 34759 steam: 12640 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Drakensang\profiles\default\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Drakensang\profiles\default\save}}' -'Drakensang: The River of Time': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Drakensang\\profiles\\default\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Drakensang\\profiles\\default\\save}}" +"Drakensang: The River of Time": pageId: 41018 steam: 33770 steamSide: - 33780 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Drakensang_TRoT\profiles\default\profile.xml}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Drakensang_TRoT\profiles\default\save}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Drakensang_TRoT\\profiles\\default\\profile.xml}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Drakensang_TRoT\\profiles\\default\\save}}" Drakerz - Confrontation: pageId: 50248 steam: 266030 @@ -48452,7 +47122,7 @@ Drakkhen: pageId: 72609 steam: 781220 templates: - - '{{Game data/saves|DOS|{{p|game}}\ACTIV.SAV|{{p|game}}\OBJET.SAV|{{p|game}}\PERSO.SAV}}' + - "{{Game data/saves|DOS|{{p|game}}\\ACTIV.SAV|{{p|game}}\\OBJET.SAV|{{p|game}}\\PERSO.SAV}}" Draoi: pageId: 104733 steam: 818070 @@ -48461,8 +47131,8 @@ Draugen: pageId: 124492 steam: 770390 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Draugen\Saved\Config\WindowsNoEditor}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\Draugen\Saved\SaveGames}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\Draugen\\Saved\\Config\\WindowsNoEditor}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Draugen\\Saved\\SaveGames}}" Draw Chilly: pageId: 100622 steam: 839080 @@ -48485,7 +47155,7 @@ Draw Puzzle: pageId: 65301 steam: 664180 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\VeryWenStudio\DrawPuzzle}}' + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\VeryWenStudio\\DrawPuzzle}}" Draw Rider: pageId: 43847 steam: 448610 @@ -48496,10 +47166,8 @@ Draw Slasher: pageId: 51567 steam: 418270 templates: - - >- - {{Game data/config|Windows|{{P|userprofile}}\AppData\LocalLow\Mass Creation\Draw - Slasher\AdvancedMassPlayerPrefs.txt|{{P|hkcu}}\Software\Mass Creation\Draw Slasher\}} - - '{{Game data/saves|Steam|{{P|steam}}\userdata\{{P|uid}}\418270\remote\save_icloud}}' + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Mass Creation\\Draw Slasher\\AdvancedMassPlayerPrefs.txt|{{P|hkcu}}\\Software\\Mass Creation\\Draw Slasher\\}}" + - "{{Game data/saves|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\418270\\remote\\save_icloud}}" Draw Souls: pageId: 67280 steam: 677030 @@ -48509,12 +47177,12 @@ Draw With Unknown: Draw Your Game: pageId: 66454 steam: 677880 -'Draw a Stickman: EPIC': +"Draw a Stickman: EPIC": pageId: 17550 steam: 248650 templates: - - '{{Game data/saves|Steam|{{P|steam}}/userdata/{{P|uid}}/248650/remote/}}' -'Draw a Stickman: EPIC 2': + - "{{Game data/saves|Steam|{{P|steam}}/userdata/{{P|uid}}/248650/remote/}}" +"Draw a Stickman: EPIC 2": pageId: 45715 steam: 403180 Draw the Way: @@ -48527,10 +47195,10 @@ Drawful 2: pageId: 34460 steam: 442070 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Jackbox Games\Drawful 2\UserData.sav}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/Jackbox Games/Drawful 2/Userdata.sav}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\Jackbox Games\Drawful 2\UserData.sav}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/Jackbox Games/Drawful 2/Userdata.sav}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\Jackbox Games\\Drawful 2\\UserData.sav}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/Jackbox Games/Drawful 2/Userdata.sav}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Jackbox Games\\Drawful 2\\UserData.sav}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/Jackbox Games/Drawful 2/Userdata.sav}}" Drawing Path: pageId: 138847 steam: 1098140 @@ -48538,17 +47206,13 @@ Drawkanoid: pageId: 138314 steam: 951370 templates: - - >- - {{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\QCF - Design\Drawkanoid\{{p|uid}}.bak|{{p|userprofile}}\AppData\LocalLow\QCF Design\Drawkanoid\{{p|uid}}.sav}} -'Drawkanoid: Review Breaker': + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\QCF Design\\Drawkanoid\\{{p|uid}}.bak|{{p|userprofile}}\\AppData\\LocalLow\\QCF Design\\Drawkanoid\\{{p|uid}}.sav}}" +"Drawkanoid: Review Breaker": pageId: 152372 steam: 1193570 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\QCF Design\Drawkanoid: Review Breaker\}}' - - >- - {{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\QCF Design\Drawkanoid_ Review - Breaker\ReviewBreaker.sav}} + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\QCF Design\\Drawkanoid: Review Breaker\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\QCF Design\\Drawkanoid_ Review Breaker\\ReviewBreaker.sav}}" Drawn Down: pageId: 135673 steam: 1067400 @@ -48558,19 +47222,19 @@ Drawn Down Abyss: Drawn Story: pageId: 44657 steam: 440770 -'Drawn: Dark Flight': +"Drawn: Dark Flight": pageId: 44912 steam: 433360 -'Drawn: The Painted Tower': +"Drawn: The Painted Tower": pageId: 41031 steam: 51060 templates: - - '{{Game data/config|Windows|{{P|appdata}}\Big Fish Games\Drawn\GameSettings.ini}}' - - '{{Game data/saves|Windows|{{P|appdata}}\Big Fish Games\Drawn\profile\}}' -'Drawn: Trail of Shadows': + - "{{Game data/config|Windows|{{P|appdata}}\\Big Fish Games\\Drawn\\GameSettings.ini}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\Big Fish Games\\Drawn\\profile\\}}" +"Drawn: Trail of Shadows": pageId: 56148 steam: 567240 -'Drawngeon: Dungeons of Ink and Paper': +"Drawngeon: Dungeons of Ink and Paper": pageId: 125349 steam: 1000470 Drawz: @@ -48583,7 +47247,7 @@ Dread Delusion: pageId: 181626 steam: 1574240 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Lovely Hellplace\Dread Delusion}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Lovely Hellplace\\Dread Delusion}}" Dread Nautical: gog: 1534500932 pageId: 147819 @@ -48596,8 +47260,8 @@ Dread Templar: pageId: 170750 steam: 1334730 templates: - - '{{Game data/config|Windows|{{p|userprofile\AppData\LocalLow}}\T19\DreadTemplar\}}' - - '{{Game data/saves|Windows|{{p|game}}\HellHunt_Data\Save*.Dat}}' + - "{{Game data/config|Windows|{{p|userprofile\\AppData\\LocalLow}}\\T19\\DreadTemplar\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\HellHunt_Data\\Save*.Dat}}" Dread X Collection: gog: 1578372472 pageId: 171396 @@ -48614,7 +47278,7 @@ Dread X Collection 5: gog: 1824789434 pageId: 177786 steam: 1899810 -'Dread X Collection: The Hunt': +"Dread X Collection: The Hunt": gog: 1565289890 pageId: 171400 steam: 1569550 @@ -48632,24 +47296,22 @@ DreadOut: pageId: 29012 steam: 269790 templates: - - >- - {{Game data/config|Windows|{{p|game}}\cloud\{{P|uid}}\*\profile.cfg|{{P|userprofile}}\AppData\LocalLow\Digital - Happiness\dreadout\{{P|uid}}\screen.cfg|{{P|hkcu}}\Software\Digital Happiness\dreadout\}} - - '{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/Digital Happiness/dreadout/}}' - - '{{Game data/saves|Windows|{{p|game}}\cloud\{{P|uid}}\*\}}' - - '{{Game data/saves|Linux|{{p|game}}/cloud/{{P|uid}}/*/}}' + - "{{Game data/config|Windows|{{p|game}}\\cloud\\{{P|uid}}\\*\\profile.cfg|{{P|userprofile}}\\AppData\\LocalLow\\Digital Happiness\\dreadout\\{{P|uid}}\\screen.cfg|{{P|hkcu}}\\Software\\Digital Happiness\\dreadout\\}}" + - "{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/Digital Happiness/dreadout/}}" + - "{{Game data/saves|Windows|{{p|game}}\\cloud\\{{P|uid}}\\*\\}}" + - "{{Game data/saves|Linux|{{p|game}}/cloud/{{P|uid}}/*/}}" DreadOut 2: pageId: 111854 steam: 945710 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\DreadOut2\Saved\Config\WindowsNoEditor\|}}' - - '{{Game data/saves|Windows|{{p|game}}\cloud\{{P|uid}}\}}' -'DreadOut: Keepers of The Dark': + - "{{Game data/config|Windows|{{P|localappdata}}\\DreadOut2\\Saved\\Config\\WindowsNoEditor\\|}}" + - "{{Game data/saves|Windows|{{p|game}}\\cloud\\{{P|uid}}\\}}" +"DreadOut: Keepers of The Dark": pageId: 31889 steam: 418950 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Digital Happiness\kotd\}}' -'DreadStar: The Quest for Revenge': + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Digital Happiness\\kotd\\}}" +"DreadStar: The Quest for Revenge": pageId: 153846 steam: 710220 Dreadborne Drifters: @@ -48675,8 +47337,8 @@ Dream: pageId: 9450 steam: 229580 templates: - - '{{Game data/config|Windows|{{p|game}}\UDKGame\Config\*.ini|{{p|game}}\Dream\Engine\Config\*.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\DreamSaves\*.Dream}}' + - "{{Game data/config|Windows|{{p|game}}\\UDKGame\\Config\\*.ini|{{p|game}}\\Dream\\Engine\\Config\\*.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\DreamSaves\\*.Dream}}" Dream Alone: pageId: 78776 steam: 716760 @@ -48686,7 +47348,7 @@ Dream Car Builder: Dream Catcher: pageId: 164415 steam: 1275290 -'Dream Catcher Chronicles: Manitou': +"Dream Catcher Chronicles: Manitou": pageId: 44661 steam: 432780 Dream Chamber: @@ -48695,12 +47357,12 @@ Dream Chamber: Dream Channel: pageId: 76598 steam: 744660 -'Dream Chronicles: The Chosen Child': +"Dream Chronicles: The Chosen Child": pageId: 41251 steam: 37250 templates: - - '{{Game data/config|Windows|{{P|appdata}}\PlayFirst\dream-chronicles-chosen-child\prefs.dat}}' - - '{{Game data/saves|Windows|{{P|appdata}}\PlayFirst\dream-chronicles-chosen-child\}}' + - "{{Game data/config|Windows|{{P|appdata}}\\PlayFirst\\dream-chronicles-chosen-child\\prefs.dat}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\PlayFirst\\dream-chronicles-chosen-child\\}}" Dream Coaster VR: pageId: 66798 steam: 663190 @@ -48708,18 +47370,16 @@ Dream Cycle: pageId: 171168 steam: 1105590 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\DreamCycle\Saved\SaveGames\Settings}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\DreamCycle\Saved\SaveGames}}' -'Dream Daddy: A Dad Dating Simulator': + - "{{Game data/config|Windows|{{p|localappdata}}\\DreamCycle\\Saved\\SaveGames\\Settings}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\DreamCycle\\Saved\\SaveGames}}" +"Dream Daddy: A Dad Dating Simulator": pageId: 63918 steam: 654880 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Game Grumps\Dream Daddy\}}' - - '{{Game data/saves|Windows|{{P|game}}\Saves\}}' - - >- - {{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Steam/SteamApps/common/Dream - Daddy/DDaDDs.app/Saves/}} - - '{{Game data/saves|Linux|{{p|xdgdatahome}}/Game Grumps/Dream Daddy/}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Game Grumps\\Dream Daddy\\}}" + - "{{Game data/saves|Windows|{{P|game}}\\Saves\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Steam/SteamApps/common/Dream Daddy/DDaDDs.app/Saves/}}" + - "{{Game data/saves|Linux|{{p|xdgdatahome}}/Game Grumps/Dream Daddy/}}" Dream Dealer: pageId: 50829 steam: 532030 @@ -48732,7 +47392,7 @@ Dream Enders RPG: Dream Ending: pageId: 139057 steam: 944020 -'Dream Engines: Nomad Cities': +"Dream Engines: Nomad Cities": gog: 1630833604 pageId: 136989 steam: 1076750 @@ -48745,7 +47405,7 @@ Dream Flash: Dream Golf VR: pageId: 73919 steam: 723610 -'Dream Hills: Captured Magic': +"Dream Hills: Captured Magic": pageId: 74405 steam: 657070 Dream Home: @@ -48781,7 +47441,7 @@ Dream Stone: Dream Tale: pageId: 49107 steam: 337450 -'Dream Tale: The Golden Keys': +"Dream Tale: The Golden Keys": pageId: 187186 steam: 337450 Dream UniVRse: @@ -48821,8 +47481,8 @@ DreamTank: DreamWeb: pageId: 72618 templates: - - '{{Game data/saves|DOS|{{p|game}}\DREAMWEB.D0*}}' -'DreamWorks Dragons: Dawn of New Riders': + - "{{Game data/saves|DOS|{{p|game}}\\DREAMWEB.D0*}}" +"DreamWorks Dragons: Dawn of New Riders": pageId: 124444 steam: 896960 DreamWorks Voltron VR Chronicles: @@ -48831,7 +47491,7 @@ DreamWorks Voltron VR Chronicles: Dreamals: pageId: 61610 steam: 480770 -'Dreamals: Dream Quest': +"Dreamals: Dream Quest": pageId: 64771 steam: 658770 Dreamblaster: @@ -48853,25 +47513,23 @@ Dreamfall Chapters: pageId: 20643 steam: 237850 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Red Thread Games\Dreamfall Chapters\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Preferences/unity.Red Thread Games.Dreamfall Chapters.plist}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Red Thread Games/Dreamfall Chapters/}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Red Thread Games\Dreamfall Chapters\}}' - - >- - {{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/unity.Red Thread Games.Dreamfall - Chapters/|~/.config/RedThreadGames/DreamfallChapters/}} - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Red Thread Games/Dreamfall Chapters/}}' -'Dreamfall: The Longest Journey': + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Red Thread Games\\Dreamfall Chapters\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Preferences/unity.Red Thread Games.Dreamfall Chapters.plist}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Red Thread Games/Dreamfall Chapters/}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Red Thread Games\\Dreamfall Chapters\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/unity.Red Thread Games.Dreamfall Chapters/|~/.config/RedThreadGames/DreamfallChapters/}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Red Thread Games/Dreamfall Chapters/}}" +"Dreamfall: The Longest Journey": gog: 1207659045 pageId: 12158 steam: 6300 templates: - - '{{Game data/config|Windows|{{p|game}}\prefs.dat}}' - - '{{Game data/saves|Windows|{{p|game}}\saves\}}' + - "{{Game data/config|Windows|{{p|game}}\\prefs.dat}}" + - "{{Game data/saves|Windows|{{p|game}}\\saves\\}}" Dreamflight VR: pageId: 47825 steam: 365140 -'Dreamhouse: The Game': +"Dreamhouse: The Game": pageId: 190293 steam: 1468400 Dreamily: @@ -48887,20 +47545,20 @@ Dreaming Sarah: pageId: 37670 steam: 296870 templates: - - '{{Game data/saves|Windows|{{p|game}}\save.json}}' + - "{{Game data/saves|Windows|{{p|game}}\\save.json}}" Dreamkiller: pageId: 88635 steam: 24500 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Aspyr\Dreamkiller\Config.txt}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Aspyr\Dreamkiller\Saves\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Aspyr\\Dreamkiller\\Config.txt}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Aspyr\\Dreamkiller\\Saves\\}}" Dreamland Defender: pageId: 81111 steam: 729520 Dreamland Solitaire: pageId: 149670 steam: 1149590 -'Dreamland Solitaire: Dragon''s Fury': +"Dreamland Solitaire: Dragon's Fury": pageId: 149233 steam: 1155790 Dreamlike Worlds: @@ -48918,7 +47576,7 @@ Dreams in the Witch House: Dreams of Dali: pageId: 86969 steam: 591360 -'Dreams of Desire: Definitive Edition': +"Dreams of Desire: Definitive Edition": pageId: 173744 steam: 1639990 Dreams of Greatness: @@ -48937,27 +47595,24 @@ Dreamscaper: pageId: 130771 steam: 1040420 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Dreamscaper\Saved\Config\WindowsNoEditor}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\Dreamscaper\Saved\SaveGames}}' -'Dreamscapes: Nightmare''s Heir': + - "{{Game data/config|Windows|{{P|localappdata}}\\Dreamscaper\\Saved\\Config\\WindowsNoEditor}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Dreamscaper\\Saved\\SaveGames}}" +"Dreamscapes: Nightmare's Heir": pageId: 48489 steam: 353110 -'Dreamscapes: The Sandman': +"Dreamscapes: The Sandman": pageId: 50434 steam: 289260 templates: - - >- - {{Game - data/config|Windows|{{P|appdata}}\ShamanGS\Dreamscapes_TheSandman_CE\|{{P|hkcu}}\Software\sandman\Dreamscapes: The - Sandman Premium Edition\}} - - '{{Game data/saves|Windows|{{P|appdata}}\ShamanGS\Dreamscapes_TheSandman_CE\}}' + - "{{Game data/config|Windows|{{P|appdata}}\\ShamanGS\\Dreamscapes_TheSandman_CE\\|{{P|hkcu}}\\Software\\sandman\\Dreamscapes: The Sandman Premium Edition\\}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\ShamanGS\\Dreamscapes_TheSandman_CE\\}}" Dreamstones: pageId: 74568 steam: 645920 -'Dreamwalker: Never Fall Asleep': +"Dreamwalker: Never Fall Asleep": pageId: 121501 steam: 916160 -Dreamworks Spirit Lucky's Big Adventure: +"Dreamworks Spirit Lucky's Big Adventure": pageId: 176848 steam: 1270720 Dredgers: @@ -49006,7 +47661,7 @@ Drift Horizon Online: Drift Into Eternity: pageId: 44108 steam: 431830 -'Drift King: Survival': +"Drift King: Survival": pageId: 53285 steam: 553290 Drift Legends: @@ -49040,7 +47695,7 @@ Drift21: pageId: 65500 steam: 520950 templates: - - '{{Game data/saves|Windows|{{p|localappdata}}\eccgames\Drift21}}' + - "{{Game data/saves|Windows|{{p|localappdata}}\\eccgames\\Drift21}}" Drift86: pageId: 136427 steam: 1070580 @@ -49056,38 +47711,38 @@ DriftOn: DriftWay: pageId: 144631 steam: 1146480 -Drifted Tales - Ancestor's Isle: +"Drifted Tales - Ancestor's Isle": pageId: 130773 steam: 1047730 Drifter: pageId: 15678 steam: 259450 templates: - - '{{Game data/config|Windows|{{p|game}}\Drifter.prefs}}' - - '{{Game data/config|OS X|{{p|game}}/Drifter.prefs}}' - - '{{Game data/config|Linux|{{p|game}}/Drifter.prefs}}' - - '{{Game data/saves|Windows|{{p|game}}\Save}}' - - '{{Game data/saves|OS X|{{p|game}}/Save}}' - - '{{Game data/saves|Linux|{{p|game}}/Save}}' + - "{{Game data/config|Windows|{{p|game}}\\Drifter.prefs}}" + - "{{Game data/config|OS X|{{p|game}}/Drifter.prefs}}" + - "{{Game data/config|Linux|{{p|game}}/Drifter.prefs}}" + - "{{Game data/saves|Windows|{{p|game}}\\Save}}" + - "{{Game data/saves|OS X|{{p|game}}/Save}}" + - "{{Game data/saves|Linux|{{p|game}}/Save}}" Drifting Cloud: pageId: 92179 steam: 773710 Drifting Lands: pageId: 49518 steam: 322750 -'Driftland: The Magic Revival': +"Driftland: The Magic Revival": gog: 1502340752 pageId: 73294 steam: 718650 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Driftland\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\Driftland\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\Driftland\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Driftland\\Saved\\SaveGames\\}}" Driftmoon: gog: 1207659177 pageId: 21644 steam: 263380 templates: - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\Driftmoon\mainmod\slot*\}}' + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\Driftmoon\\mainmod\\slot*\\}}" Driftpunk Racer: pageId: 104753 steam: 897400 @@ -49101,7 +47756,7 @@ Driftwood The Visual Novel: pageId: 41745 steam: 510750 templates: - - '{{Game data/saves|Windows|{{p|game}}\game\saves}}' + - "{{Game data/saves|Windows|{{p|game}}\\game\\saves}}" Drill Arena: pageId: 82694 steam: 799610 @@ -49117,7 +47772,7 @@ DrillMania: Driller: pageId: 75875 templates: - - '{{Game data/saves|DOS|{{p|game}}\********}}' + - "{{Game data/saves|DOS|{{p|game}}\\********}}" DrillsVR: pageId: 95117 steam: 813440 @@ -49139,8 +47794,8 @@ Drip Drip: Driv3r: pageId: 16665 templates: - - '{{Game data/config|Windows|{{p|game}}\Saves\D3P_{{p|uid}}\ProfileData}}' - - '{{Game data/saves|Windows|{{p|game}}\Saves\D3P_{{p|uid}}\ProfileData}}' + - "{{Game data/config|Windows|{{p|game}}\\Saves\\D3P_{{p|uid}}\\ProfileData}}" + - "{{Game data/saves|Windows|{{p|game}}\\Saves\\D3P_{{p|uid}}\\ProfileData}}" Drive: pageId: 138693 steam: 993840 @@ -49170,7 +47825,7 @@ Drive!Drive!Drive!: pageId: 54401 steam: 356460 templates: - - '{{Game data/saves|Windows|{{P|hkcu}}\Software\different cloth\Drive!Drive!Drive!\}}' + - "{{Game data/saves|Windows|{{P|hkcu}}\\Software\\different cloth\\Drive!Drive!Drive!\\}}" Drive-By Hero: pageId: 63316 steam: 640310 @@ -49186,28 +47841,26 @@ Driven Out: Driver: pageId: 23120 templates: - - '{{Game data/config|Windows|{{p|game}}\CONFIG.DAT}}' - - '{{Game data/saves|Windows|{{p|game}}\Saves\GAME*.BIN}}' -'Driver Pro: 2017': + - "{{Game data/config|Windows|{{p|game}}\\CONFIG.DAT}}" + - "{{Game data/saves|Windows|{{p|game}}\\Saves\\GAME*.BIN}}" +"Driver Pro: 2017": pageId: 72935 steam: 710540 -'Driver: Parallel Lines': +"Driver: Parallel Lines": gog: 1207658825 pageId: 15430 steam: 21780 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Driver Parallel Lines\Config.DPLUser}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Driver Parallel Lines\{{P|uid}}.DPLSave}}' -'Driver: San Francisco': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Driver Parallel Lines\\Config.DPLUser}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Driver Parallel Lines\\{{P|uid}}.DPLSave}}" +"Driver: San Francisco": pageId: 2145 steam: 33440 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Ubisoft\Driver San Francisco\graphics.ini}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Ubisoft/Driver San Francisco/graphics.ini}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Ubisoft\Driver San Francisco\{{p|uid}}\savegames\}}' - - >- - {{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Ubisoft/Driver San - Francisco/Profiles/{{p|uid}}/savegames/}} + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Ubisoft\\Driver San Francisco\\graphics.ini}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Ubisoft/Driver San Francisco/graphics.ini}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Ubisoft\\Driver San Francisco\\{{p|uid}}\\savegames\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Ubisoft/Driver San Francisco/Profiles/{{p|uid}}/savegames/}}" Driving School Simulator: pageId: 49599 steam: 273730 @@ -49215,38 +47868,38 @@ Drizzlepath: pageId: 48485 steam: 355760 templates: - - '{{Game data/config|Windows|{{P|game}}\USER\Profiles\default\}}' -'Drizzlepath: Deja Vu': + - "{{Game data/config|Windows|{{P|game}}\\USER\\Profiles\\default\\}}" +"Drizzlepath: Deja Vu": pageId: 94691 steam: 860650 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\DejaVu\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\DejaVu\Saved\SaveGames\}}' -'Drizzlepath: Genie': + - "{{Game data/config|Windows|{{P|localappdata}}\\DejaVu\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\DejaVu\\Saved\\SaveGames\\}}" +"Drizzlepath: Genie": pageId: 44491 steam: 438340 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Genie\Saved\SaveGames\SettingsSaveFile.sav}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\Genie\Saved\SaveGames\}}' -'Drizzlepath: Glass': + - "{{Game data/config|Windows|{{P|localappdata}}\\Genie\\Saved\\SaveGames\\SettingsSaveFile.sav}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Genie\\Saved\\SaveGames\\}}" +"Drizzlepath: Glass": pageId: 57954 steam: 581370 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Glass\Saved\Config\WindowsNoEditor\GameUserSettings.ini}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\Glass\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\Glass\\Saved\\Config\\WindowsNoEditor\\GameUserSettings.ini}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Glass\\Saved\\SaveGames\\}}" Droid Assault: pageId: 18312 steam: 219200 templates: - - '{{Game data/config|Steam|{{p|steam}}/userdata/{{P|uid}}/219200/remote/}}' - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{P|uid}}/219200/remote/}}' + - "{{Game data/config|Steam|{{p|steam}}/userdata/{{P|uid}}/219200/remote/}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{P|uid}}/219200/remote/}}" Droid Invaders: pageId: 94104 steam: 801790 Drome Racers: pageId: 126804 templates: - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\LEGO Interactive\Games\Drome Racers\SaveGame.sav}}' + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\LEGO Interactive\\Games\\Drome Racers\\SaveGame.sav}}" Dromenon - Academic Version: pageId: 122125 steam: 924080 @@ -49274,7 +47927,7 @@ Drone Investigations: Drone Racer: pageId: 156090 steam: 1092300 -'Drone Racer: Canyons': +"Drone Racer: Canyons": pageId: 68424 steam: 690570 Drone Spektra: @@ -49298,7 +47951,7 @@ Drone Wars: Drone Zero Gravity: pageId: 46182 steam: 360680 -'Drone: Remote Tactical Warfare': +"Drone: Remote Tactical Warfare": pageId: 64564 steam: 506980 Drones: @@ -49307,7 +47960,7 @@ Drones: Drones and Ruins: pageId: 87505 steam: 782650 -'Drones, The Human Condition': +"Drones, The Human Condition": pageId: 53934 steam: 556130 Dronihilation VR: @@ -49331,8 +47984,8 @@ Drop Kick Zombie!: Drop Mania: pageId: 18365 templates: - - '{{Game data/config|Windows|{{p|game}}\DropSetup.dat}}' - - '{{Game data/saves|Windows|{{p|game}}\Ranking.dat}}' + - "{{Game data/config|Windows|{{p|game}}\\DropSetup.dat}}" + - "{{Game data/saves|Windows|{{p|game}}\\Ranking.dat}}" Drop Out 0: pageId: 40048 steam: 517660 @@ -49345,20 +47998,20 @@ Drop VR: Drop the Bomb: pageId: 92672 steam: 528170 -'Drop: System Breach': +"Drop: System Breach": pageId: 187138 steam: 1902300 templates: - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\Etherfield\Drop\{{p|uid}}\savegame}}' + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\Etherfield\\Drop\\{{p|uid}}\\savegame}}" Dropchord: pageId: 5755 Droplitz: pageId: 157717 steam: 23120 templates: - - '{{Game data/config|Windows|{{P|appdata}}\Atlus\Droplitz\Droplitz_save0}}' - - '{{Game data/saves|Windows|{{P|appdata}}\Atlus\Droplitz\Droplitz_save0}}' -'Drops: Rhythm Garden': + - "{{Game data/config|Windows|{{P|appdata}}\\Atlus\\Droplitz\\Droplitz_save0}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\Atlus\\Droplitz\\Droplitz_save0}}" +"Drops: Rhythm Garden": pageId: 95399 steam: 864960 Dropship Down: @@ -49369,17 +48022,17 @@ Dropsy: pageId: 31464 steam: 274350 templates: - - '{{Game data/config|Windows|{{p|game}}\Save\settings.cfg}}' - - '{{Game data/config|Linux|{{p|game}}/Save/settings.cfg}}' - - '{{Game data/saves|Windows|{{P|game}}\Save\}}' - - '{{Game data/saves|Linux|{{p|game}}/Save/}}' + - "{{Game data/config|Windows|{{p|game}}\\Save\\settings.cfg}}" + - "{{Game data/config|Linux|{{p|game}}/Save/settings.cfg}}" + - "{{Game data/saves|Windows|{{P|game}}\\Save\\}}" + - "{{Game data/saves|Linux|{{p|game}}/Save/}}" Dropzone: pageId: 56808 steam: 572520 Drosoph Hotel: pageId: 89266 steam: 717020 -'Drowned God: Conspiracy of the Ages': +"Drowned God: Conspiracy of the Ages": pageId: 174447 Drowning: pageId: 120877 @@ -49402,8 +48055,8 @@ Drug Dealer Simulator: pageId: 128700 steam: 682990 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\DrugDealerSimulator\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\DrugDealerSimulator\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\DrugDealerSimulator\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\DrugDealerSimulator\\Saved\\SaveGames\\}}" Drug Lord: pageId: 156294 renamedFrom: @@ -49413,24 +48066,24 @@ Drug Wars: pageId: 41310 steam: 26300 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\MOB\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\MOB\SaveGames}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\MOB\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\MOB\\SaveGames}}" Drugs to Bee: pageId: 98006 steam: 880570 Druid: pageId: 56631 steam: 552390 -'Druid''s Tale: Crystal Cave': +"Druid's Tale: Crystal Cave": pageId: 70347 steam: 700560 -'Druidstone: The Secret of the Menhir Forest': +"Druidstone: The Secret of the Menhir Forest": gog: 1628811838 pageId: 124450 steam: 954650 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\Ctrl Alt Ninja\Druidstone\config.lua}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\Ctrl Alt Ninja\Druidstone\}}' + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\Ctrl Alt Ninja\\Druidstone\\config.lua}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\Ctrl Alt Ninja\\Druidstone\\}}" DrumBeats VR: pageId: 127504 steam: 1015480 @@ -49446,12 +48099,12 @@ Drummer Talent VR: DrummingVR: pageId: 80470 steam: 777610 -'Drumpf 2: Lost, But Not Forgotten!': +"Drumpf 2: Lost, But Not Forgotten!": pageId: 178611 steam: 1039290 templates: - - '{{Game data/saves|Windows|{{p|game}}\www\save}}' -'Drumpf: Rise up, Libertonia!': + - "{{Game data/saves|Windows|{{p|game}}\\www\\save}}" +"Drumpf: Rise up, Libertonia!": pageId: 86973 steam: 791020 Drumpfy Walls: @@ -49486,11 +48139,11 @@ Drunk or Dead: Drunk ride: pageId: 148701 steam: 1168970 -'Drunk-Fu: Wasted Masters': +"Drunk-Fu: Wasted Masters": pageId: 60295 steam: 617680 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Rusto Games\Drunk-Fu\SaveData\}}' + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Rusto Games\\Drunk-Fu\\SaveData\\}}" Drunken Fight Simulator: pageId: 56621 steam: 576480 @@ -49501,10 +48154,8 @@ Drunken Robot Pornography: pageId: 15164 steam: 209060 templates: - - >- - {{Game data/config|Windows|{{p|game}}\GameData\|{{P|HKCU}}\Software\Dejobaan Games, LLC\Drunken Robot - Pornography}} - - '{{Game data/saves|Windows|{{p|game}}\GameData\{{p|uid}}\SaveGame.dejo}}' + - "{{Game data/config|Windows|{{p|game}}\\GameData\\|{{P|HKCU}}\\Software\\Dejobaan Games, LLC\\Drunken Robot Pornography}}" + - "{{Game data/saves|Windows|{{p|game}}\\GameData\\{{p|uid}}\\SaveGame.dejo}}" Drunken Wrestlers: pageId: 155646 steam: 1188720 @@ -49512,7 +48163,7 @@ Drunken Wrestlers 2: pageId: 122760 steam: 667530 templates: - - '{{Game data/config|Windows|{{P|userprofile}}\AppData\LocalLow\Oleg Skutte\Drunken Wrestlers 2\Settings.dat}}' + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Oleg Skutte\\Drunken Wrestlers 2\\Settings.dat}}" Drunkenpants: pageId: 78508 steam: 758280 @@ -49525,18 +48176,18 @@ Drunkn Bar Fight on Halloween: Drusilla Dreams: pageId: 43408 steam: 458060 -'Druuna: Morbus Gravis': +"Druuna: Morbus Gravis": pageId: 35272 templates: - - '{{Game data/saves|Windows|{{p|game}}\SaveGame}}' + - "{{Game data/saves|Windows|{{p|game}}\\SaveGame}}" Dry Drowning: gog: 1877306633 pageId: 138482 steam: 1077970 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\DAZEL\Dry Drowning\}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\DAZEL\Dry Drowning\}}' -'Dry Erase: Infinite VR Whiteboard': + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\DAZEL\\Dry Drowning\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\DAZEL\\Dry Drowning\\}}" +"Dry Erase: Infinite VR Whiteboard": pageId: 66049 steam: 585040 Drying Paint Simulator VR: @@ -49545,13 +48196,13 @@ Drying Paint Simulator VR: Drymir Cave under Richmordnom: pageId: 108250 steam: 913570 -'Dráscula: The Vampire Strikes Back': +"Dráscula: The Vampire Strikes Back": pageId: 30836 renamedFrom: - - 'Drascula: The Vampire Strikes Back' + - "Drascula: The Vampire Strikes Back" steam: 1038430 templates: - - '{{Game data/saves|Windows|{{p|game}}\drascula.epa|{{p|game}}\drascula**}}' + - "{{Game data/saves|Windows|{{p|game}}\\drascula.epa|{{p|game}}\\drascula**}}" Dsync: pageId: 95987 steam: 743100 @@ -49574,7 +48225,7 @@ Dual Universe: pageId: 182329 steam: 2000270 templates: - - '{{Game data/saves|Windows|{{p|localappdata}}\NQ\DualUniverse\}}' + - "{{Game data/saves|Windows|{{p|localappdata}}\\NQ\\DualUniverse\\}}" Duality: pageId: 124179 steam: 959930 @@ -49582,14 +48233,14 @@ Dub Dash: pageId: 44597 steam: 406940 templates: - - '{{Game data/config|Windows|{{P|game}}\UserData\GameData\Store.xml}}' - - '{{Game data/saves|Windows|{{P|game}}\UserData\GameData\Store.xml}}' + - "{{Game data/config|Windows|{{P|game}}\\UserData\\GameData\\Store.xml}}" + - "{{Game data/saves|Windows|{{P|game}}\\UserData\\GameData\\Store.xml}}" DubWars: pageId: 42261 steam: 290000 templates: - - '{{Game data/config|Windows|{{p|USERPROFILE}}\AppData\LocalLow\MURAInteractive\DubWars\stats\save.wub}}' - - '{{Game data/saves|Windows|{{p|USERPROFILE}}\AppData\LocalLow\MURAInteractive\DubWarsGraphicsSettings.ini}}' + - "{{Game data/config|Windows|{{p|USERPROFILE}}\\AppData\\LocalLow\\MURAInteractive\\DubWars\\stats\\save.wub}}" + - "{{Game data/saves|Windows|{{p|USERPROFILE}}\\AppData\\LocalLow\\MURAInteractive\\DubWarsGraphicsSettings.ini}}" Dubstep Abasralsa: pageId: 95411 steam: 865310 @@ -49597,13 +48248,13 @@ Ducati - 90th Anniversary: pageId: 33938 steam: 456780 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Milestone\Ducati\}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Milestone\Ducati\Saves\}}' + - "{{Game data/config|Windows|{{p|appdata}}\\Milestone\\Ducati\\}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Milestone\\Ducati\\Saves\\}}" Ducati World Championship: pageId: 51095 steam: 6270 templates: - - '{{Game data/saves|Windows|{{p|game}}\Save}}' + - "{{Game data/saves|Windows|{{p|game}}\\Save}}" Duck Dynasty: pageId: 49514 steam: 319410 @@ -49614,17 +48265,17 @@ Duck Game: pageId: 27815 steam: 312530 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\DuckGame\\Options}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\DuckGame\\\\Options}}" Duck Hunt Challenge: pageId: 122340 steam: 934550 Duck Hunting: pageId: 60738 steam: 619330 -'Duck Life: Battle': +"Duck Life: Battle": pageId: 107938 steam: 914170 -'Duck Life: Space': +"Duck Life: Space": pageId: 61972 steam: 606490 Duck Marines: @@ -49636,7 +48287,7 @@ Duck Season: pageId: 69641 steam: 503580 templates: - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Stress Level Zero\Duck Season\}}' + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Stress Level Zero\\Duck Season\\}}" Duck Season PC: pageId: 138845 steam: 746510 @@ -49649,25 +48300,25 @@ Duck Souls: Duck in Town - A Rising Knight: pageId: 144985 steam: 1111310 -Duck's Inferno: +"Duck's Inferno": pageId: 120996 steam: 930290 -'DuckTales: Remastered': +"DuckTales: Remastered": pageId: 9476 steam: 237630 templates: - - '{{Game data/config|Windows|{{P|game}}\data\engine.ini}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Wayforward Technologies\DuckTales\}}' - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\237630\remote\}}' -'DuckTales: The Quest for Gold': + - "{{Game data/config|Windows|{{P|game}}\\data\\engine.ini}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Wayforward Technologies\\DuckTales\\}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\237630\\remote\\}}" +"DuckTales: The Quest for Gold": pageId: 184369 Duckie Dash: pageId: 42366 steam: 491110 -'Duckles: The Jisgaw Witch': +"Duckles: The Jisgaw Witch": pageId: 54816 steam: 512700 -'Duckman: The Graphic Adventures of a Private Dick': +"Duckman: The Graphic Adventures of a Private Dick": pageId: 146968 Duckpocalypse: pageId: 41563 @@ -49685,8 +48336,8 @@ Dude Cops: pageId: 101635 steam: 919170 templates: - - '{{Game data/config|Windows|{{p|appdata}}\DudeCops\config.rpgsave|{{p|game}}\www\save\config.rpgsave}}' - - '{{Game data/saves|Windows|{{p|appdata}}\DudeCops\file*.rpgsave|{{p|game}}\www\save\file*.rpgsave}}' + - "{{Game data/config|Windows|{{p|appdata}}\\DudeCops\\config.rpgsave|{{p|game}}\\www\\save\\config.rpgsave}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\DudeCops\\file*.rpgsave|{{p|game}}\\www\\save\\file*.rpgsave}}" Dude Simulator: pageId: 63831 steam: 654990 @@ -49696,12 +48347,12 @@ Dude Simulator 2: Dude Simulator 5: pageId: 136653 steam: 1086640 -'Dude, Stop': +"Dude, Stop": pageId: 56140 steam: 574560 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Team HalfBeard\Dude, Stop\}}' - - '{{Game data/saves|Windows|{{P|game}}\Saves\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Team HalfBeard\\Dude, Stop\\}}" + - "{{Game data/saves|Windows|{{P|game}}\\Saves\\}}" Duder: pageId: 88700 steam: 814770 @@ -49709,7 +48360,7 @@ Due Process: pageId: 93347 steam: 753650 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Giant Enemy Crab\Due Process}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Giant Enemy Crab\\Due Process}}" Duel: pageId: 73215 steam: 725640 @@ -49749,12 +48400,12 @@ Duet: pageId: 31628 steam: 292600 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Duet\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Duet/}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/Duet/}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Duet\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Duet/}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/Duet/}}' + - "{{Game data/config|Windows|{{p|appdata}}\\Duet\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Duet/}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/Duet/}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Duet\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Duet/}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/Duet/}}" Dujanah: pageId: 70082 steam: 681240 @@ -49762,8 +48413,8 @@ Duke Dashington Remastered: pageId: 105245 steam: 894420 templates: - - '{{Game data/saves|Windows|{{p|appdata}}\Stencyl\Duke Dashington Remastered\}}' -'Duke Grabowski, Mighty Swashbuckler': + - "{{Game data/saves|Windows|{{p|appdata}}\\Stencyl\\Duke Dashington Remastered\\}}" +"Duke Grabowski, Mighty Swashbuckler": pageId: 50859 steam: 472420 Duke Nukem: @@ -49773,8 +48424,8 @@ Duke Nukem: pageId: 7478 steam: 240160 templates: - - '{{Game data/config|DOS|{{p|game}}\KEYS.DN*}}' - - '{{Game data/saves|DOS|{{p|game}}\SAVED*.DN*}}' + - "{{Game data/config|DOS|{{p|game}}\\KEYS.DN*}}" + - "{{Game data/saves|DOS|{{p|game}}\\SAVED*.DN*}}" Duke Nukem 3D: gog: 1207658730 pageId: 158 @@ -49782,36 +48433,34 @@ Duke Nukem 3D: steamSide: - 225140 templates: - - '{{Game data/config|DOS|{{p|game}}\DUKE3D.CFG}}' - - '{{Game data/saves|DOS|{{p|game}}\GAME*.SAV}}' -'Duke Nukem 3D: 20th Anniversary World Tour': + - "{{Game data/config|DOS|{{p|game}}\\DUKE3D.CFG}}" + - "{{Game data/saves|DOS|{{p|game}}\\GAME*.SAV}}" +"Duke Nukem 3D: 20th Anniversary World Tour": pageId: 38607 steam: 434050 templates: - - '{{Game data/config|Windows|{{P|game}}\DUKE3D.CFG|{{P|localappdata}}\Gearbox\DukeNukem\profile.dat}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Gearbox\DukeNukem\savedata*.dat}}' -'Duke Nukem 3D: Megaton Edition': + - "{{Game data/config|Windows|{{P|game}}\\DUKE3D.CFG|{{P|localappdata}}\\Gearbox\\DukeNukem\\profile.dat}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Gearbox\\DukeNukem\\savedata*.dat}}" +"Duke Nukem 3D: Megaton Edition": pageId: 5758 steam: 225140 templates: - - '{{Game data/config|Windows|{{p|game}}\gameroot\duke3d.cfg|{{p|game}}\gameroot\duke3d-local.cfg}}' - - '{{Game data/config|Linux|{{p|game}}/gameroot/duke3d.cfg|{{p|game}}/gameroot/duke3d-local.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\gameroot\*.sav}}' - - '{{Game data/saves|Linux|{{p|game}}/gameroot/*.sav}}' - - '{{Game data/saves|Steam|{{P|steam}}\userdata\{{p|uid}}\225140\}}' + - "{{Game data/config|Windows|{{p|game}}\\gameroot\\duke3d.cfg|{{p|game}}\\gameroot\\duke3d-local.cfg}}" + - "{{Game data/config|Linux|{{p|game}}/gameroot/duke3d.cfg|{{p|game}}/gameroot/duke3d-local.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\gameroot\\*.sav}}" + - "{{Game data/saves|Linux|{{p|game}}/gameroot/*.sav}}" + - "{{Game data/saves|Steam|{{P|steam}}\\userdata\\{{p|uid}}\\225140\\}}" Duke Nukem Forever: pageId: 5750 steam: 57900 templates: - - >- - {{Game - data/config|Windows|{{P|steam}}\userdata\{{P|uid}}\57900\remote\system.ini|{{P|steam}}\userdata\{{P|uid}}\57900\remote\user.ini}} - - '{{Game data/saves|Windows|{{P|steam}}\userdata\{{P|uid}}\57900\remote\}}' + - "{{Game data/config|Windows|{{P|steam}}\\userdata\\{{P|uid}}\\57900\\remote\\system.ini|{{P|steam}}\\userdata\\{{P|uid}}\\57900\\remote\\user.ini}}" + - "{{Game data/saves|Windows|{{P|steam}}\\userdata\\{{P|uid}}\\57900\\remote\\}}" Duke Nukem Forever (2001): pageId: 177689 templates: - - '{{Game data/config|Windows|{{p|game}}\Players\[player name]\DukeForever.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\Players\[player name]\Save}}' + - "{{Game data/config|Windows|{{p|game}}\\Players\\[player name]\\DukeForever.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\Players\\[player name]\\Save}}" Duke Nukem II: gog: 1207664973 gogSide: @@ -49819,20 +48468,20 @@ Duke Nukem II: pageId: 7481 steam: 240180 templates: - - '{{Game data/config|DOS|{{p|game}}\NUKEM2.-GT}}' - - '{{Game data/saves|DOS|{{p|game}}\NUKEM2.-S*}}' -'Duke Nukem: Manhattan Project': + - "{{Game data/config|DOS|{{p|game}}\\NUKEM2.-GT}}" + - "{{Game data/saves|DOS|{{p|game}}\\NUKEM2.-S*}}" +"Duke Nukem: Manhattan Project": gog: 1207658731 pageId: 8515 steam: 240200 templates: - - '{{Game data/config|Windows|{{P|game}}\duke\base\config.cfg}}' - - '{{Game data/saves|Windows|{{P|game}}\duke\base\save\}}' + - "{{Game data/config|Windows|{{P|game}}\\duke\\base\\config.cfg}}" + - "{{Game data/saves|Windows|{{P|game}}\\duke\\base\\save\\}}" Duke of Alpha Centauri: pageId: 55696 steam: 567580 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Just1337\Duke of Alpha Centauri\*.json}}' + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Just1337\\Duke of Alpha Centauri\\*.json}}" Duke of Defense: pageId: 105367 steam: 882210 @@ -49842,7 +48491,7 @@ Dum-Dum: Dumb As Wizards: pageId: 92287 steam: 828730 -'Dumb Chicken 2: One Way Out': +"Dumb Chicken 2: One Way Out": pageId: 36978 steam: 488510 Dumb Fight: @@ -49854,7 +48503,7 @@ Dumb Little Creatures: Dumb Stone Card Game: pageId: 68084 steam: 693050 -'Dumb test: Check your teammates': +"Dumb test: Check your teammates": pageId: 127283 steam: 1021820 Dumbass Drivers!: @@ -49870,45 +48519,45 @@ Dumpy & Bumpy: pageId: 173503 steam: 1631500 templates: - - '{{Game data/saves|Windows|{{p|localappdata}}\DumpyAndBumpy}}' + - "{{Game data/saves|Windows|{{p|localappdata}}\\DumpyAndBumpy}}" Duncan and the Wisp: pageId: 136834 steam: 1087060 Dune: pageId: 36031 templates: - - '{{Game data/config|DOS|{{p|game}}\DUNE.BAT}}' - - '{{Game data/saves|DOS|{{p|game}}\DUNE37S0?.SAV}}' + - "{{Game data/config|DOS|{{p|game}}\\DUNE.BAT}}" + - "{{Game data/saves|DOS|{{p|game}}\\DUNE37S0?.SAV}}" Dune 2000: pageId: 18045 templates: - - '{{Game data/config|Windows|{{p|game}}\dune2000.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\GameSave}}' -'Dune II: The Building of a Dynasty': + - "{{Game data/config|Windows|{{p|game}}\\dune2000.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\GameSave}}" +"Dune II: The Building of a Dynasty": pageId: 36028 templates: - - '{{Game data/config|DOS|{{p|game}}\*.cfg}}' - - '{{Game data/saves|DOS|{{p|game}}\_SAVE???.DAT}}' + - "{{Game data/config|DOS|{{p|game}}\\*.cfg}}" + - "{{Game data/saves|DOS|{{p|game}}\\_SAVE???.DAT}}" Dune Sea: pageId: 142013 steam: 1103120 -'Dune: Awakening': +"Dune: Awakening": pageId: 183730 steam: 1172710 -'Dune: Spice Wars': +"Dune: Spice Wars": pageId: 173580 steam: 1605220 templates: - - '{{Game data/config|Windows|{{P|steam}}\steamapps\common\D4X\options.ini}}' - - '{{Game data/saves|Windows|{{P|steam}}\steamapps\common\D4X\save}}' + - "{{Game data/config|Windows|{{P|steam}}\\steamapps\\common\\D4X\\options.ini}}" + - "{{Game data/saves|Windows|{{P|steam}}\\steamapps\\common\\D4X\\save}}" Dungellion: pageId: 122298 steam: 935630 -'Dungelot: Shattered Lands': +"Dungelot: Shattered Lands": pageId: 31415 steam: 403940 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Red Winter Software\Dungelot _ Shattered Lands\}}' + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Red Winter Software\\Dungelot _ Shattered Lands\\}}" Dungeon Adventure: pageId: 94028 steam: 834100 @@ -49954,10 +48603,10 @@ Dungeon Defenders: pageId: 2621 steam: 65800 templates: - - '{{Game data/config|Linux|{{P|xdgdatahome}}/DungeonDefenders/}}' - - '{{Game data/config|Steam|{{p|steam}}/userdata/{{p|uid}}/65800/remote/}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/DungeonDefenders/}}' - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/65800/remote/}}' + - "{{Game data/config|Linux|{{P|xdgdatahome}}/DungeonDefenders/}}" + - "{{Game data/config|Steam|{{p|steam}}/userdata/{{p|uid}}/65800/remote/}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/DungeonDefenders/}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/65800/remote/}}" Dungeon Defenders Eternity: pageId: 49869 steam: 302270 @@ -49965,29 +48614,25 @@ Dungeon Defenders II: pageId: 27341 steam: 236110 templates: - - '{{Game data/config|Windows|{{p|game}}\DunDef2\Engine\Config\}}' -'Dungeon Defenders: Awakened': + - "{{Game data/config|Windows|{{p|game}}\\DunDef2\\Engine\\Config\\}}" +"Dungeon Defenders: Awakened": pageId: 154178 steam: 1101190 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\DDS\Saved\Config\WindowsNoEditor}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\DDS\Saved\SaveGames}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\DDS\\Saved\\Config\\WindowsNoEditor}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\DDS\\Saved\\SaveGames}}" Dungeon Drafters: gog: 1218371921 pageId: 164889 steam: 1824580 templates: - - >- - {{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\Manalith Studios\Dungeon - Drafters\Saves\*.dd|{{p|userprofile\appdata\locallow}}\Manalith Studios\Dungeon Drafters\Decks\*.pcd}} - - >- - {{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Manalith Studios/Dungeon - Drafters/Saves/*.dd|{{p|linuxhome}}/.config/unity3d/Manalith Studios/Dungeon Drafters/Decks/*.pcd}} + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\Manalith Studios\\Dungeon Drafters\\Saves\\*.dd|{{p|userprofile\\appdata\\locallow}}\\Manalith Studios\\Dungeon Drafters\\Decks\\*.pcd}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Manalith Studios/Dungeon Drafters/Saves/*.dd|{{p|linuxhome}}/.config/unity3d/Manalith Studios/Dungeon Drafters/Decks/*.pcd}}" Dungeon Dreams: pageId: 127866 steam: 1010670 templates: - - '{{Game data/saves|Windows|{{p|steam}}\steamapps\common\Dungeon Dreams\www\save}}' + - "{{Game data/saves|Windows|{{p|steam}}\\steamapps\\common\\Dungeon Dreams\\www\\save}}" Dungeon Dreams (Female Protagonist): pageId: 153878 steam: 1141360 @@ -49998,17 +48643,17 @@ Dungeon Encounters: pageId: 173016 steam: 1451080 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\SQUARE ENIX\DUNGEON ENCOUNTERS\}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\My Games\DUNGEON ENCOUNTERS\Steam\{{P|uid}}\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\SQUARE ENIX\\DUNGEON ENCOUNTERS\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\My Games\\DUNGEON ENCOUNTERS\\Steam\\{{P|uid}}\\}}" Dungeon Escape: pageId: 37509 steam: 454100 steamSide: - 497760 templates: - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Alexey Roenko/Dungeon Escape}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Alexey Roenko\Dungeon Escape\}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Alexey Roenko/Dungeon Escape}}' + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Alexey Roenko/Dungeon Escape}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Alexey Roenko\\Dungeon Escape\\}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Alexey Roenko/Dungeon Escape}}" Dungeon Escape VR: pageId: 61010 steam: 618920 @@ -50022,10 +48667,10 @@ Dungeon Fighter Online: pageId: 38578 steam: 495910 steamSide: - - 503380 - - 502790 - 495920 - 495930 + - 502790 + - 503380 Dungeon Gambit Boy: pageId: 88047 steam: 776720 @@ -50037,12 +48682,12 @@ Dungeon Hack: pageId: 61911 steam: 1904551 templates: - - '{{Game data/saves|DOS|{{p|game}}\SAVEGAME\}}' + - "{{Game data/saves|DOS|{{p|game}}\\SAVEGAME\\}}" Dungeon Hearts: pageId: 6049 steam: 229520 templates: - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/CubeRoots/DungeonHearts}}' + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/CubeRoots/DungeonHearts}}" Dungeon Hero: pageId: 47355 steam: 366810 @@ -50067,19 +48712,17 @@ Dungeon Keeper: gog: 1207658934 pageId: 7396 templates: - - '{{Game data/config|DOS|{{p|game}}\KEEPER.CFG}}' - - '{{Game data/config|Windows|{{p|game}}\KEEPER.CFG}}' - - '{{Game data/saves|DOS|{{p|game}}\SAVE}}' - - '{{Game data/saves|Windows|{{p|game}}\SAVE}}' + - "{{Game data/config|DOS|{{p|game}}\\KEEPER.CFG}}" + - "{{Game data/config|Windows|{{p|game}}\\KEEPER.CFG}}" + - "{{Game data/saves|DOS|{{p|game}}\\SAVE}}" + - "{{Game data/saves|Windows|{{p|game}}\\SAVE}}" Dungeon Keeper 2: gog: 1207658959 pageId: 1623 templates: - - '{{Game data/config|Windows|{{p|game}}\Data\Settings}}' - - >- - {{Game data/saves|Windows|{{p|game}}\Data\Save|{{p|hkcu}}\SOFTWARE\Bullfrog Productions Ltd\Dungeon Keeper - II\Configuration\Player}} -'Dungeon Kingdom: Sign of the Moon': + - "{{Game data/config|Windows|{{p|game}}\\Data\\Settings}}" + - "{{Game data/saves|Windows|{{p|game}}\\Data\\Save|{{p|hkcu}}\\SOFTWARE\\Bullfrog Productions Ltd\\Dungeon Keeper II\\Configuration\\Player}}" +"Dungeon Kingdom: Sign of the Moon": pageId: 45567 steam: 329040 Dungeon Kitty: @@ -50095,8 +48738,8 @@ Dungeon Lords: pageId: 35267 steam: 271760 templates: - - '{{Game data/saves|Windows|{{p|game}}\save}}' -'Dungeon Lurk II: Leona': + - "{{Game data/saves|Windows|{{p|game}}\\save}}" +"Dungeon Lurk II: Leona": pageId: 49438 steam: 322580 Dungeon Manager ZV: @@ -50105,7 +48748,7 @@ Dungeon Manager ZV: Dungeon Manager ZV 2: pageId: 57815 steam: 581210 -'Dungeon Manager ZV: Resurrection': +"Dungeon Manager ZV: Resurrection": pageId: 67853 steam: 677080 Dungeon Marathon: @@ -50119,14 +48762,12 @@ Dungeon Maze: Dungeon Munchies: pageId: 128509 steam: 799640 -'Dungeon Nightmares II: The Memory': +"Dungeon Nightmares II: The Memory": pageId: 34039 steam: 382090 templates: - - >- - {{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\K Monkey\Dungeon Nightmares II _ The - Memory\gameoptions.dat}} - - '{{Game data/config|Linux|{{p|xdgconfighome}}/unity3d/K Monkey/Dungeon Nightmares II/}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\K Monkey\\Dungeon Nightmares II _ The Memory\\gameoptions.dat}}" + - "{{Game data/config|Linux|{{p|xdgconfighome}}/unity3d/K Monkey/Dungeon Nightmares II/}}" Dungeon Of Dragon Knight: pageId: 125615 steam: 823610 @@ -50162,7 +48803,7 @@ Dungeon Rushers: pageId: 34787 steam: 429620 templates: - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\GoblinzStudio\Dungeon Rushers\}}' + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\GoblinzStudio\\Dungeon Rushers\\}}" Dungeon Rustlers: pageId: 75510 steam: 713450 @@ -50179,11 +48820,8 @@ Dungeon Siege: pageId: 1922 steam: 39190 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\Dungeon - Siege\Keys\current.gas|{{p|userprofile\Documents}}\Dungeon - Siege\DungeonSiege.ini|{{p|userprofile\Documents}}\Dungeon Siege\prefs.gas}} - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Dungeon Siege\Save\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Dungeon Siege\\Keys\\current.gas|{{p|userprofile\\Documents}}\\Dungeon Siege\\DungeonSiege.ini|{{p|userprofile\\Documents}}\\Dungeon Siege\\prefs.gas}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Dungeon Siege\\Save\\}}" Dungeon Siege II: gog: 1142020247 gogSide: @@ -50191,13 +48829,8 @@ Dungeon Siege II: pageId: 18871 steam: 39200 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Dungeon Siege - 2\DungeonSiege2.ini|{{p|userprofile\Documents}}\My Games\Dungeon Siege 2 Broken - World\DungeonSiege2BrokenWorld.ini}} - - >- - {{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Dungeon Siege - 2\save\|{{p|userprofile\Documents}}\My Games\Dungeon Siege 2 Broken World\save\}} + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Dungeon Siege 2\\DungeonSiege2.ini|{{p|userprofile\\Documents}}\\My Games\\Dungeon Siege 2 Broken World\\DungeonSiege2BrokenWorld.ini}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Dungeon Siege 2\\save\\|{{p|userprofile\\Documents}}\\My Games\\Dungeon Siege 2 Broken World\\save\\}}" Dungeon Siege III: gog: 1142020247 gogSide: @@ -50214,23 +48847,21 @@ Dungeon Siege III: - 39185 - 39270 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Dungeon Siege - III\user.ini|{{p|userprofile\Documents}}\My Games\Dungeon Siege III\save\*.opt}} - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Dungeon Siege III\save\}}' -'Dungeon Siege: Legends of Aranna': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Dungeon Siege III\\user.ini|{{p|userprofile\\Documents}}\\My Games\\Dungeon Siege III\\save\\*.opt}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Dungeon Siege III\\save\\}}" +"Dungeon Siege: Legends of Aranna": pageId: 30214 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Dungeon Siege LOA\DungeonSiege.ini}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Dungeon Siege LOA\Save\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Dungeon Siege LOA\\DungeonSiege.ini}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Dungeon Siege LOA\\Save\\}}" Dungeon Souls: gog: 1982030524 pageId: 35708 steam: 383230 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\DungeonSouls\configuration.ini}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\DungeonSouls\dungeonsouls.ds}}' - - '{{Game data/saves|Linux|{{p|xdgconfighome}}/DungeonSouls/dungeonsouls.ds}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\DungeonSouls\\configuration.ini}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\DungeonSouls\\dungeonsouls.ds}}" + - "{{Game data/saves|Linux|{{p|xdgconfighome}}/DungeonSouls/dungeonsouls.ds}}" Dungeon Stars: pageId: 91562 steam: 788640 @@ -50238,21 +48869,21 @@ Dungeon Town: gog: 2063343188 pageId: 122612 steam: 959880 -'Dungeon Travelers 2-2: The Fallen Maidens & the Book of Beginnings': +"Dungeon Travelers 2-2: The Fallen Maidens & the Book of Beginnings": pageId: 187654 -'Dungeon Travelers 2: The Royal Library & the Monster Seal': +"Dungeon Travelers 2: The Royal Library & the Monster Seal": pageId: 187649 Dungeon Village: pageId: 176774 steam: 1859360 templates: - - '{{Game data/saves|Windows|{{p|game}}\saves\{{p|uid}}}}' + - "{{Game data/saves|Windows|{{p|game}}\\saves\\{{p|uid}}}}" Dungeon Warfare: pageId: 37193 steam: 355980 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Valsar\Dungeon Warfare\}}' - - '{{Game data/saves|Windows|{{p|game}}\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Valsar\\Dungeon Warfare\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\}}" Dungeon Warfare 2: pageId: 94296 steam: 698540 @@ -50265,10 +48896,8 @@ Dungeon of Elements: pageId: 50079 steam: 302310 templates: - - >- - {{Game - data/config|Windows|{{P|userprofile}}\AppData\LocalLow\Frogdice\DoE\settings.doe|{{P|hkcu}}\Software\Frogdice\DoE\}} - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Frogdice\DoE\}}' + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Frogdice\\DoE\\settings.doe|{{P|hkcu}}\\Software\\Frogdice\\DoE\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Frogdice\\DoE\\}}" Dungeon of Gain: pageId: 35198 steam: 340030 @@ -50276,13 +48905,13 @@ Dungeon of Zaar: pageId: 62100 steam: 613590 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\DefaultCompany\DungeonOfZaar\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\DefaultCompany\\DungeonOfZaar\\}}" Dungeon of Zolthan: pageId: 35352 steam: 463220 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Stencyl\Dungeon of Zolthan\}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Stencyl\Dungeon of Zolthan\}}' + - "{{Game data/config|Windows|{{p|appdata}}\\Stencyl\\Dungeon of Zolthan\\}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Stencyl\\Dungeon of Zolthan\\}}" Dungeon of the Endless: gog: 1240941163 pageId: 13292 @@ -50290,16 +48919,14 @@ Dungeon of the Endless: steamSide: - 349770 - 365940 - - 410940 - 407200 - 407210 + - 410940 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\Dungeon of the - Endless\Users\{{p|uid}}\Registry.xml|{{p|hkcu}}\SOFTWARE\AMPLITUDE Studios\Dungeon of the Endless\}} - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Dungeon of the Endless\Users\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Dungeon of the Endless/Users}}' -Dungeon's Barrage: + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Dungeon of the Endless\\Users\\{{p|uid}}\\Registry.xml|{{p|hkcu}}\\SOFTWARE\\AMPLITUDE Studios\\Dungeon of the Endless\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Dungeon of the Endless\\Users\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Dungeon of the Endless/Users}}" +"Dungeon's Barrage": pageId: 77295 steam: 757700 Dungeon-Party: @@ -50320,11 +48947,11 @@ DungeonRift: DungeonTop: pageId: 155472 renamedFrom: - - 'Spellsword Cards: DungeonTop' + - "Spellsword Cards: DungeonTop" steam: 1146230 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\SOFTWARE\One Up Plus\Dungeontop\}}' - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\One Up Plus\Dungeontop\SaveData.txt}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\SOFTWARE\\One Up Plus\\Dungeontop\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\One Up Plus\\Dungeontop\\SaveData.txt}}" DungeonUp: pageId: 38498 steam: 388620 @@ -50347,10 +48974,8 @@ Dungeons: pageId: 18946 steam: 57650 templates: - - >- - {{Game data/config|Windows|{{p|appdata}}\Kalypso Media\Dungeons\config.cfg|{{p|appdata}}\Kalypso - Media\Dungeons\keybindings.csv}} - - '{{Game data/saves|Windows|{{p|appdata}}\Kalypso Media\Dungeons\savegames\}}' + - "{{Game data/config|Windows|{{p|appdata}}\\Kalypso Media\\Dungeons\\config.cfg|{{p|appdata}}\\Kalypso Media\\Dungeons\\keybindings.csv}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Kalypso Media\\Dungeons\\savegames\\}}" Dungeons & Darkness: pageId: 50791 steam: 479990 @@ -50358,35 +48983,33 @@ Dungeons & Dragons Online: pageId: 445 steam: 206480 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\Dungeons and Dragons Online}}' -'Dungeons & Dragons: Chronicles of Mystara': + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\Dungeons and Dragons Online}}" +"Dungeons & Dragons: Chronicles of Mystara": pageId: 40612 steam: 229480 steamSide: - 231890 templates: - - '{{Game data/config|Windows|{{p|game}}\Settings.igsconfig}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\Saved Games\Capcom\Dungeons & Dragons\Saved Games\}}' -'Dungeons & Dragons: Daggerdale': + - "{{Game data/config|Windows|{{p|game}}\\Settings.igsconfig}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Saved Games\\Capcom\\Dungeons & Dragons\\Saved Games\\}}" +"Dungeons & Dragons: Daggerdale": pageId: 24 steam: 99100 templates: - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Daggerdale\DnDGame\SaveData\}}' -'Dungeons & Dragons: Dark Alliance': + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Daggerdale\\DnDGame\\SaveData\\}}" +"Dungeons & Dragons: Dark Alliance": pageId: 167644 steam: 623280 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\CotH\Saved\Config\WindowsNoEditor}}' - - >- - {{Game data/config|Microsoft - Store|{{p|localappdata}}\Packages\WizardsoftheCoastLLC.DarkAlliance_egzvkhb86xsmw\LocalCache\Local\CotH\Saved\Config\WinGDK\}} - - '{{Game data/saves|Windows|{{P|localappdata}}\CotH\Saved\SaveGames\{{P|uid}}\}}' -'Dungeons & Dragons: Dragonshard': + - "{{Game data/config|Windows|{{P|localappdata}}\\CotH\\Saved\\Config\\WindowsNoEditor}}" + - "{{Game data/config|Microsoft Store|{{p|localappdata}}\\Packages\\WizardsoftheCoastLLC.DarkAlliance_egzvkhb86xsmw\\LocalCache\\Local\\CotH\\Saved\\Config\\WinGDK\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\CotH\\Saved\\SaveGames\\{{P|uid}}\\}}" +"Dungeons & Dragons: Dragonshard": gog: 1207658928 pageId: 16877 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Dragonshard\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Dragonshard\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Dragonshard\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Dragonshard\\}}" Dungeons & Geese: pageId: 66051 steam: 660290 @@ -50408,18 +49031,16 @@ Dungeons 2: pageId: 34320 steam: 262280 steamSide: - - 408600 - 382400 - - 390180 - 382410 + - 390180 + - 408600 templates: - - >- - {{Game data/config|Windows|{{p|APPDATA}}\Kalypso Media\Dungeons 2\config.cfg|{{p|APPDATA}}\Kalypso Media\Dungeons - 2\keybindings-rts.txt|{{p|hkcu}}\Software\Realmforge Studios GmbH\Dungeons 2\}} - - '{{Game data/config|OS X|{{p|osxhome}}/.config/Kalypso Media/Dungeons 2/}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/steam/steamapps/common/Dungeons2/savegames/config-cloud.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\savegames\|{{p|appdata}}\Kalypso Media\Dungeons 2\savegames\}}' - - '{{Game data/saves|Linux|{{p|game}}/savegames/}}' + - "{{Game data/config|Windows|{{p|APPDATA}}\\Kalypso Media\\Dungeons 2\\config.cfg|{{p|APPDATA}}\\Kalypso Media\\Dungeons 2\\keybindings-rts.txt|{{p|hkcu}}\\Software\\Realmforge Studios GmbH\\Dungeons 2\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/.config/Kalypso Media/Dungeons 2/}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/steam/steamapps/common/Dungeons2/savegames/config-cloud.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\savegames\\|{{p|appdata}}\\Kalypso Media\\Dungeons 2\\savegames\\}}" + - "{{Game data/saves|Linux|{{p|game}}/savegames/}}" Dungeons 3: gog: 1346232158 gogSide: @@ -50428,20 +49049,18 @@ Dungeons 3: pageId: 58396 steam: 493900 templates: - - >- - {{Game data/config|Windows|{{p|APPDATA}}\Kalypso Media\Dungeons 3\config.cfg|{{p|APPDATA}}\Kalypso Media\Dungeons - 3\keybindings-wasd.txt|{{p|hkcu}}\Software\Realmforge Studios GmbH\Dungeons 3\}} - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/Kalypso Media/Dungeons 3/config.cfg}}' - - '{{Game data/saves|Windows|{{p|APPDATA}}\Kalypso Media\Dungeons 3\savegames\}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/Kalypso Media/Dungeons 3/savegames/}}' + - "{{Game data/config|Windows|{{p|APPDATA}}\\Kalypso Media\\Dungeons 3\\config.cfg|{{p|APPDATA}}\\Kalypso Media\\Dungeons 3\\keybindings-wasd.txt|{{p|hkcu}}\\Software\\Realmforge Studios GmbH\\Dungeons 3\\}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/Kalypso Media/Dungeons 3/config.cfg}}" + - "{{Game data/saves|Windows|{{p|APPDATA}}\\Kalypso Media\\Dungeons 3\\savegames\\}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/Kalypso Media/Dungeons 3/savegames/}}" Dungeons 4: pageId: 181256 steam: 1643310 steamSide: - 2522990 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Kalypso Media\Dungeons 4\config-*.cfg}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Kalypso Media\Dungeons 4\savegames\*.d4}}' + - "{{Game data/config|Windows|{{p|appdata}}\\Kalypso Media\\Dungeons 4\\config-*.cfg}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Kalypso Media\\Dungeons 4\\savegames\\*.d4}}" Dungeons Again: pageId: 141940 steam: 1115840 @@ -50467,36 +49086,36 @@ Dungeons of Dredmor: pageId: 4665 steam: 98800 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Gaslamp Games\Dungeons of Dredmor\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Dungeons of Dredmor/}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/Dredmor/}}' - - '{{Game data/config|Steam|{{p|steam}}/userdata/{{p|uid}}/98800/}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Gaslamp Games\Dungeons of Dredmor\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Dungeons of Dredmor/}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/Dredmor/}}' - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/98800/}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Gaslamp Games\\Dungeons of Dredmor\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Dungeons of Dredmor/}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/Dredmor/}}" + - "{{Game data/config|Steam|{{p|steam}}/userdata/{{p|uid}}/98800/}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Gaslamp Games\\Dungeons of Dredmor\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Dungeons of Dredmor/}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/Dredmor/}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/98800/}}" Dungeons of Edera: gog: 1185441576 pageId: 145445 steam: 1131240 templates: - - '{{Game data/saves|Windows|{{P|localappdata}}\DoE}}' + - "{{Game data/saves|Windows|{{P|localappdata}}\\DoE}}" Dungeons of Hell: pageId: 73517 steam: 722990 Dungeons of Kragmor: pageId: 34946 steam: 407730 -'Dungeons of Kremlin: Remastered': +"Dungeons of Kremlin: Remastered": pageId: 70012 steam: 708800 -'Dungeons of Legend: Cast Within': +"Dungeons of Legend: Cast Within": pageId: 128018 steam: 1006160 Dungeons of Necromancers: pageId: 120879 steam: 967370 -Dungeons of Tal'Doria: +"Dungeons of Tal'Doria": pageId: 95015 steam: 626130 Dungeons of the Dead: @@ -50505,27 +49124,27 @@ Dungeons of the Dead: Dungeons of the Fallen: pageId: 105591 steam: 701610 -'Dungeons: The Dark Lord': +"Dungeons: The Dark Lord": pageId: 40903 renamedFrom: - Dungeons - The Dark Lord steam: 200550 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Kalypso Media\Dungeons - The Dark Lord\config.cfg}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Kalypso Media\Dungeons - The Dark Lord\savegames}}' -'Dungeons: The Eye of Draconus': + - "{{Game data/config|Windows|{{p|appdata}}\\Kalypso Media\\Dungeons - The Dark Lord\\config.cfg}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Kalypso Media\\Dungeons - The Dark Lord\\savegames}}" +"Dungeons: The Eye of Draconus": pageId: 49775 steam: 303510 templates: - - '{{Game data/config|Windows|{{P|userprofile}}\Saved Games\Dungeons The Eye of Draconus\}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\Saved Games\Dungeons The Eye of Draconus\save.xml}}' + - "{{Game data/config|Windows|{{P|userprofile}}\\Saved Games\\Dungeons The Eye of Draconus\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\Saved Games\\Dungeons The Eye of Draconus\\save.xml}}" Dungetris: pageId: 50769 steam: 462200 Dungreed: pageId: 78725 steam: 753420 -'Dunia: Masters': +"Dunia: Masters": pageId: 63721 steam: 651650 Dunk It: @@ -50562,7 +49181,7 @@ Duplexer: Dupli City: pageId: 153222 steam: 1014750 -'Duplicity: Beyond the Lies': +"Duplicity: Beyond the Lies": pageId: 49011 steam: 335690 Durak!: @@ -50579,16 +49198,16 @@ Dusk: pageId: 50963 steam: 519860 templates: - - '{{Game data/config|Windows|{{p|game}}\config\dusk.ini}}' - - '{{Game data/config|Linux|{{p|game}}/config}}' - - '{{Game data/saves|Windows|{{p|game}}\saves}}' - - '{{Game data/saves|Linux|{{p|game}}/saves}}' -Dusk '82: + - "{{Game data/config|Windows|{{p|game}}\\config\\dusk.ini}}" + - "{{Game data/config|Linux|{{p|game}}/config}}" + - "{{Game data/saves|Windows|{{p|game}}\\saves}}" + - "{{Game data/saves|Linux|{{p|game}}/saves}}" +"Dusk '82": pageId: 170022 steam: 1465510 templates: - - '{{Game data/config|Windows|{{p|game}}\settings.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\progress}}' + - "{{Game data/config|Windows|{{p|game}}\\settings.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\progress}}" Dusk 12: pageId: 49729 steam: 317970 @@ -50596,9 +49215,9 @@ Dusk Diver: pageId: 126260 steam: 911220 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\ProjectEverett\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\ProjectEverett\Saved\SaveGames\}}' -Dusk Golem's Anthology of Horror: + - "{{Game data/config|Windows|{{p|localappdata}}\\ProjectEverett\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\ProjectEverett\\Saved\\SaveGames\\}}" +"Dusk Golem's Anthology of Horror": pageId: 150039 steam: 833020 Dusk Warlocks: @@ -50612,46 +49231,41 @@ Duskers: pageId: 34180 steam: 254320 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Duskers\}}' - - '{{Game data/config|OS X|{{P|osxhome}}/Library/Application Support/unity.Misfits Attic.Duskers/}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Misfits\ Attic/Duskers/}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Duskers\}}' - - '{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/unity.Misfits Attic.Duskers/}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Misfits\ Attic/Duskers/}}' -'Duskless: The Clockwork Army': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Duskers\\}}" + - "{{Game data/config|OS X|{{P|osxhome}}/Library/Application Support/unity.Misfits Attic.Duskers/}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Misfits\\ Attic/Duskers/}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Duskers\\}}" + - "{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/unity.Misfits Attic.Duskers/}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Misfits\\ Attic/Duskers/}}" +"Duskless: The Clockwork Army": pageId: 135240 steam: 1078750 Dust On Wheels: pageId: 130020 steam: 1043020 -'Dust and Echos: Vengeance': +"Dust and Echos: Vengeance": pageId: 103975 steam: 877400 Dust and Salt: pageId: 79868 steam: 766630 -'Dust and Salt: The Battle for Murk': +"Dust and Salt: The Battle for Murk": pageId: 95156 steam: 835640 Dust n Wheels: pageId: 96143 steam: 833650 -'Dust: An Elysian Tail': +"Dust: An Elysian Tail": gog: 1207660094 pageId: 7535 steam: 236090 templates: - - >- - {{Game - data/config|Windows|{{p|userprofile\Documents}}\SavedGames\DustAET\Settings.sav|{{p|userprofile\Documents}}\SavedGames\DustAET\Save - Files\Player*\Settings.sav}} - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/DustAET/}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/DustAET/}}' - - >- - {{Game data/saves|Windows|{{p|userprofile\Documents}}\SavedGames\DustAET\Game Save - *.sav|{{p|userprofile\Documents}}\SavedGames\DustAET\Save Files\Player*\Game Save *.sav}} - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/DustAET/}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/DustAET/}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\SavedGames\\DustAET\\Settings.sav|{{p|userprofile\\Documents}}\\SavedGames\\DustAET\\Save Files\\Player*\\Settings.sav}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/DustAET/}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/DustAET/}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\SavedGames\\DustAET\\Game Save *.sav|{{p|userprofile\\Documents}}\\SavedGames\\DustAET\\Save Files\\Player*\\Game Save *.sav}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/DustAET/}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/DustAET/}}" Dustborn: pageId: 165611 steam: 721180 @@ -50663,25 +49277,25 @@ Dustforce: pageId: 4778 steam: 65300 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Dustforce\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Hitbox Team/Dustforce/}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.HitboxTeam/Dustforce/}}' - - '{{Game data/config|Steam|{{p|game}}/user/}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Dustforce\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Hitbox Team/Dustforce/}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.HitboxTeam/Dustforce/}}' - - '{{Game data/saves|Steam|{{p|game}}/user/}}' + - "{{Game data/config|Windows|{{p|appdata}}\\Dustforce\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Hitbox Team/Dustforce/}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.HitboxTeam/Dustforce/}}" + - "{{Game data/config|Steam|{{p|game}}/user/}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Dustforce\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Hitbox Team/Dustforce/}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.HitboxTeam/Dustforce/}}" + - "{{Game data/saves|Steam|{{p|game}}/user/}}" Dustoff Heli Rescue: pageId: 48503 steam: 341730 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Invictus Games\Dustoff Heli Rescue\}}' - - '{{Game data/saves|Windows|{{p|game}}\DustoffPC_Data\Saves\SaveData.sav}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Invictus Games\\Dustoff Heli Rescue\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\DustoffPC_Data\\Saves\\SaveData.sav}}" Dustoff Heli Rescue 2: pageId: 55530 steam: 553690 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Invictus Games\Dustoff II\Saves\}}' + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Invictus Games\\Dustoff II\\Saves\\}}" Dustwind: pageId: 76953 steam: 600460 @@ -50691,14 +49305,14 @@ Dustwun: Dusty Raging Fist: pageId: 132725 steam: 570820 -'Dusty Revenge: Co-Op Edition': +"Dusty Revenge: Co-Op Edition": pageId: 50650 steam: 252430 -'Duty Calls: The Calm Before the Storm': +"Duty Calls: The Calm Before the Storm": pageId: 20507 templates: - - '{{Game data/config|Windows|{{p|game}}\UDKGame\config\}}' -'DvDrum, Ultimate Drum Simulator!': + - "{{Game data/config|Windows|{{p|game}}\\UDKGame\\config\\}}" +"DvDrum, Ultimate Drum Simulator!": pageId: 46606 steam: 385130 DwarVRs: @@ -50714,13 +49328,13 @@ Dwarf Fortress: pageId: 230 steam: 975370 templates: - - '{{Game data/config|Windows|{{p|game}}\data\init\}}' - - '{{Game data/config|Steam|{{p|game}}\prefs\}}' - - '{{Game data/config|OS X|{{p|game}}/data/init/}}' - - '{{Game data/config|Linux|{{p|game}}/data/init/}}' - - '{{Game data/saves|Windows|{{p|game}}\data\save\|{{p|game}}\save\}}' - - '{{Game data/saves|OS X|{{p|game}}/data/save/|{{p|game}}/save/}}' - - '{{Game data/saves|Linux|{{p|game}}/data/save/|{{p|game}}/save/}}' + - "{{Game data/config|Windows|{{p|game}}\\data\\init\\}}" + - "{{Game data/config|Steam|{{p|game}}\\prefs\\}}" + - "{{Game data/config|OS X|{{p|game}}/data/init/}}" + - "{{Game data/config|Linux|{{p|game}}/data/init/}}" + - "{{Game data/saves|Windows|{{p|game}}\\data\\save\\|{{p|game}}\\save\\}}" + - "{{Game data/saves|OS X|{{p|game}}/data/save/|{{p|game}}/save/}}" + - "{{Game data/saves|Linux|{{p|game}}/data/save/|{{p|game}}/save/}}" Dwarf Swordsman: pageId: 114622 steam: 945300 @@ -50728,8 +49342,8 @@ Dwarf Tower: pageId: 49063 steam: 335100 templates: - - '{{Game data/config|Windows|{{p|APPDATA}}\iosoftware\DwarfTower\}}' - - '{{Game data/saves|Windows|{{p|APPDATA}}\iosoftware\DwarfTower\save\}}' + - "{{Game data/config|Windows|{{p|APPDATA}}\\iosoftware\\DwarfTower\\}}" + - "{{Game data/saves|Windows|{{p|APPDATA}}\\iosoftware\\DwarfTower\\save\\}}" DwarfCorp: pageId: 70008 steam: 252390 @@ -50737,8 +49351,8 @@ DwarfHeim: pageId: 136094 steam: 977650 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\SOFTWARE\Pineleaf Studio\DwarfHeim}}' - - '{{Game data/saves|Windows|{{P|game}}\Client\DwarfHeim_Data\saves}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\SOFTWARE\\Pineleaf Studio\\DwarfHeim}}" + - "{{Game data/saves|Windows|{{P|game}}\\Client\\DwarfHeim_Data\\saves}}" Dwarflings: pageId: 55001 steam: 562330 @@ -50746,17 +49360,17 @@ Dwarfs!?: pageId: 4762 steam: 35480 templates: - - '{{Game data/saves|Windows|{{p|game}}/Save/}}' - - '{{Game data/saves|Linux|{{p|game}}/Save/}}' + - "{{Game data/saves|Windows|{{p|game}}/Save/}}" + - "{{Game data/saves|Linux|{{p|game}}/Save/}}" Dwarrows: gog: 1248478688 pageId: 67661 steam: 532750 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Dwarrows\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/Epic/Dwarrows/Saved/Config/LinuxNoEditor}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\Dwarrows\Saved\SaveGames\}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/Epic/Dwarrows/Saved/SaveGames}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\Dwarrows\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/Epic/Dwarrows/Saved/Config/LinuxNoEditor}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Dwarrows\\Saved\\SaveGames\\}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/Epic/Dwarrows/Saved/SaveGames}}" Dwarven Brawl Bros: pageId: 47493 steam: 367260 @@ -50779,9 +49393,9 @@ Dwerve: pageId: 145542 steam: 1132760 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\SOFTWARE\Half Human Games\Dwerve\}}' - - '{{Game data/saves|Windows|{{P|hkcu}}\SOFTWARE\Half Human Games\Dwerve\}}' -'Dwingle: B.O.T': + - "{{Game data/config|Windows|{{P|hkcu}}\\SOFTWARE\\Half Human Games\\Dwerve\\}}" + - "{{Game data/saves|Windows|{{P|hkcu}}\\SOFTWARE\\Half Human Games\\Dwerve\\}}" +"Dwingle: B.O.T": pageId: 63739 steam: 535650 Dyad: @@ -50789,9 +49403,9 @@ Dyad: pageId: 6606 steam: 223450 templates: - - '{{Game data/config|Windows|{{P|game}}\}}' - - '{{Game data/saves|Windows|{{p|game}}\}}' - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{P|uid}}/223450/remote/}}' + - "{{Game data/config|Windows|{{P|game}}\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{P|uid}}/223450/remote/}}" Dyadic: pageId: 44455 steam: 442140 @@ -50807,44 +49421,44 @@ Dying 1983: Dying Light: gog: 1448452156 gogSide: - - 1460996196 - 1460996021 + - 1460996196 - 1460996282 - 1539474600 - 1841289280 pageId: 16056 steam: 239140 steamSide: - - 335810 - 325723 + - 335810 - 347090 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\DyingLight\out\settings\}}' - - '{{Game data/config|Linux|{{p|game}}\DW\out\Settings\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\DyingLight\out\save\}}' - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\239140\remote\out\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\DyingLight\\out\\settings\\}}" + - "{{Game data/config|Linux|{{p|game}}\\DW\\out\\Settings\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\DyingLight\\out\\save\\}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\239140\\remote\\out\\}}" Dying Light 2 Stay Human: pageId: 97549 renamedFrom: - Dying Light 2 - - 'Dying Light 2: Stay Human' + - "Dying Light 2: Stay Human" steam: 534380 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Dying Light 2\out\settings\}}' - - '{{Game data/saves|Windows|{{P|steam}}\userdata\{{P|uid}}\534380\remote\out\save}}' -'Dying Light: Bad Blood': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Dying Light 2\\out\\settings\\}}" + - "{{Game data/saves|Windows|{{P|steam}}\\userdata\\{{P|uid}}\\534380\\remote\\out\\save}}" +"Dying Light: Bad Blood": pageId: 108804 steam: 766370 Dying Star: pageId: 58029 steam: 556840 -'Dying: Reborn': +"Dying: Reborn": pageId: 78607 steam: 699700 Dyna Blaster: pageId: 24618 templates: - - '{{Game data/config|DOS|{{p|game}}\dyna.cfg}}' + - "{{Game data/config|DOS|{{p|game}}\\dyna.cfg}}" Dyna Bomb: pageId: 34793 steam: 467220 @@ -50861,51 +49475,41 @@ Dynamite Headdy: pageId: 30873 steam: 211201 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\SEGA Mega Drive - Classics\setup.dat|{{p|userprofile\Documents}}\SEGA Genesis Classics\setup.dat}} - - >- - {{Game data/saves|Windows|{{p|userprofile\Documents}}\SEGA Mega Drive - Classics\0049\|{{p|userprofile\Documents}}\SEGA Genesis Classics\0049\}} + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\SEGA Mega Drive Classics\\setup.dat|{{p|userprofile\\Documents}}\\SEGA Genesis Classics\\setup.dat}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\SEGA Mega Drive Classics\\0049\\|{{p|userprofile\\Documents}}\\SEGA Genesis Classics\\0049\\}}" Dynamite Jack: pageId: 5351 steam: 202730 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Dynamite Jack\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Dynamite Jack/}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.dynamitejack/}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Dynamite Jack\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Dynamite Jack/}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.dynamitejack/}}' + - "{{Game data/config|Windows|{{p|appdata}}\\Dynamite Jack\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Dynamite Jack/}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.dynamitejack/}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Dynamite Jack\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Dynamite Jack/}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.dynamitejack/}}" DynamixVR - D.R.I.L.L.: pageId: 79686 steam: 766650 Dynasty Feud: pageId: 57018 steam: 493180 -'Dynasty Warriors 4: Hyper': +"Dynasty Warriors 4: Hyper": pageId: 16672 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\KOEI\{{LocalizedPath|Dynasty Warriors 4 Hyper}}\*.*}}' - - >- - {{Game data/saves|Windows|{{p|userprofile\Documents}}\KOEI\{{LocalizedPath|Dynasty Warriors 4 - Hyper}}\Savedata\*.dat}} + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\KOEI\\{{LocalizedPath|Dynasty Warriors 4 Hyper}}\\*.*}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\KOEI\\{{LocalizedPath|Dynasty Warriors 4 Hyper}}\\Savedata\\*.dat}}" Dynasty Warriors 6: pageId: 5157 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\KOEI\{{LocalizedPath|Dynasty Warriors 6}}\inputmap*.dat}}' - - >- - {{Game data/saves|Windows|{{p|userprofile\Documents}}\KOEI\{{LocalizedPath|Dynasty Warriors - 6}}\Savedata\save.dat}} -'Dynasty Warriors 7: Xtreme Legends Definitive Edition': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\KOEI\\{{LocalizedPath|Dynasty Warriors 6}}\\inputmap*.dat}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\KOEI\\{{LocalizedPath|Dynasty Warriors 6}}\\Savedata\\save.dat}}" +"Dynasty Warriors 7: Xtreme Legends Definitive Edition": pageId: 123313 steam: 968790 templates: - - >- - {{Game data/config|Windows|{{p|hkcu}}\Software\KoeiTecmo\Dynasty Warriors 7 - DX\|{{p|userprofile\Documents}}\KoeiTecmo\Dynasty Warriors 7 DX\inputmap*.dat}} - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\KoeiTecmo\Dynasty Warriors 7 DX\Savedata\save.dat}}' -'Dynasty Warriors 8: Empires': + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\KoeiTecmo\\Dynasty Warriors 7 DX\\|{{p|userprofile\\Documents}}\\KoeiTecmo\\Dynasty Warriors 7 DX\\inputmap*.dat}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\KoeiTecmo\\Dynasty Warriors 7 DX\\Savedata\\save.dat}}" +"Dynasty Warriors 8: Empires": pageId: 22801 steam: 322520 steamSide: @@ -50933,13 +49537,9 @@ Dynasty Warriors 6: - 352830 - 363630 templates: - - >- - {{Game data/config|Windows|{{p|hkcu}}\Software\KoeiTecmo\{{LocalizedPath|Dynasty Warriors 8 - Empires}}\|{{p|userprofile\Documents}}\KoeiTecmo\{{LocalizedPath|Dynasty Warriors 8}}\inputmap*.dat}} - - >- - {{Game data/saves|Windows|{{p|userprofile\Documents}}\KoeiTecmo\{{LocalizedPath|Dynasty Warriors 8 - Empires}}\Savedata\*.dat}} -'Dynasty Warriors 8: Xtreme Legends': + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\KoeiTecmo\\{{LocalizedPath|Dynasty Warriors 8 Empires}}\\|{{p|userprofile\\Documents}}\\KoeiTecmo\\{{LocalizedPath|Dynasty Warriors 8}}\\inputmap*.dat}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\KoeiTecmo\\{{LocalizedPath|Dynasty Warriors 8 Empires}}\\Savedata\\*.dat}}" +"Dynasty Warriors 8: Xtreme Legends": pageId: 17223 steam: 278080 steamSide: @@ -50966,12 +49566,8 @@ Dynasty Warriors 6: - 316868 - 316869 templates: - - >- - {{Game data/config|Windows|{{p|hkcu}}\Software\TecmoKoei\{{LocalizedPath|Dynasty Warriors - 8}}\|{{p|userprofile\Documents}}\TecmoKoei\{{LocalizedPath|Dynasty Warriors 8}}\inputmap*.dat}} - - >- - {{Game data/saves|Windows|{{p|userprofile\Documents}}\TecmoKoei\{{LocalizedPath|Dynasty Warriors - 8}}\Savedata\save.dat}} + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\TecmoKoei\\{{LocalizedPath|Dynasty Warriors 8}}\\|{{p|userprofile\\Documents}}\\TecmoKoei\\{{LocalizedPath|Dynasty Warriors 8}}\\inputmap*.dat}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\TecmoKoei\\{{LocalizedPath|Dynasty Warriors 8}}\\Savedata\\save.dat}}" Dynasty Warriors 9: pageId: 83036 steam: 730310 @@ -51151,11 +49747,9 @@ Dynasty Warriors 9: - 1246842 - 1246843 templates: - - >- - {{Game data/config|Windows|{{p|hkcu}}\Software\KoeiTecmo\Dynasty Warriors 9 for - Steam\|{{p|userprofile\Documents}}\KoeiTecmo\Dynasty Warriors 9\SYSTEMDATA\sinpmap.dat}} - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\KoeiTecmo\Dynasty Warriors 9 for Steam\*.*}}' -'Dynasty Warriors 9: Empires': + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\KoeiTecmo\\Dynasty Warriors 9 for Steam\\|{{p|userprofile\\Documents}}\\KoeiTecmo\\Dynasty Warriors 9\\SYSTEMDATA\\sinpmap.dat}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\KoeiTecmo\\Dynasty Warriors 9 for Steam\\*.*}}" +"Dynasty Warriors 9: Empires": pageId: 163897 steam: 1341200 steamSide: @@ -51183,14 +49777,12 @@ Dynasty Warriors 9: - 1684165 - 1684166 templates: - - >- - {{Game data/config|Windows|{{p|hkcu}}\Software\KoeiTecmo\Dynasty Warriors 9 Empires for - Steam\|{{p|userprofile\Documents}}\KoeiTecmo\Dynasty Warriors 9 Empires\SYSTEMDATA\sinpmap.dat}} - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\KoeiTecmo\Dynasty Warriors 9 Empires\*.*}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\KoeiTecmo\\Dynasty Warriors 9 Empires for Steam\\|{{p|userprofile\\Documents}}\\KoeiTecmo\\Dynasty Warriors 9 Empires\\SYSTEMDATA\\sinpmap.dat}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\KoeiTecmo\\Dynasty Warriors 9 Empires\\*.*}}" Dynasty Warriors Online Z: pageId: 173708 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\KOEI\{{LocalizedPath|Dynasty Warriors Online Z}}\*.*}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\KOEI\\{{LocalizedPath|Dynasty Warriors Online Z}}\\*.*}}" Dynetzzle Extended: pageId: 44144 steam: 438350 @@ -51201,7 +49793,7 @@ Dynomite!: pageId: 12249 steam: 3380 templates: - - '{{Game data/saves|Windows|{{p|game}}\SLOT*.SAV}}' + - "{{Game data/saves|Windows|{{p|game}}\\SLOT*.SAV}}" Dynopunk: pageId: 186522 steam: 1596730 @@ -51212,27 +49804,25 @@ Dyscourse: pageId: 30329 steam: 234920 templates: - - >- - {{Game data/config|Windows|{{p|hkcu}}\SOFTWARE\Owlchemy - Labs\Dyscourse\|{{p|userprofile}}\AppData\LocalLow\Owlchemy Labs\Dyscourse\DyscourseSettings.xml}} - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Owlchemy Labs\Dyscourse\User\*.save}}' -'Dysfunctional Systems: Learning to Manage Chaos': + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\Owlchemy Labs\\Dyscourse\\|{{p|userprofile}}\\AppData\\LocalLow\\Owlchemy Labs\\Dyscourse\\DyscourseSettings.xml}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Owlchemy Labs\\Dyscourse\\User\\*.save}}" +"Dysfunctional Systems: Learning to Manage Chaos": pageId: 9972 steam: 248800 templates: - - '{{Game data/config|Windows|{{p|appdata}}\RenPy\winter_ep1_patch2\persistent}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/RenPy/winter_ep1_patch2/persistent}}' - - '{{Game data/saves|Windows|{{p|appdata}}\RenPy\winter_ep1_patch2\*.save}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/RenPy/winter_ep1_patch2/*.save}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.renpy/winter_ep1_patch2/*.save}}' -'Dysfunctional Systems: Orientation': + - "{{Game data/config|Windows|{{p|appdata}}\\RenPy\\winter_ep1_patch2\\persistent}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/RenPy/winter_ep1_patch2/persistent}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\RenPy\\winter_ep1_patch2\\*.save}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/RenPy/winter_ep1_patch2/*.save}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.renpy/winter_ep1_patch2/*.save}}" +"Dysfunctional Systems: Orientation": pageId: 66061 steam: 337890 Dysmantle: gog: 2080674103 gogSide: - - 1715984033 - 1636760249 + - 1715984033 - 1815564294 pageId: 128609 steam: 846770 @@ -51241,7 +49831,7 @@ Dysmantle: - 2147250 - 2439690 templates: - - '{{Game data/saves|Windows|{{p|appdata}}\10tons\DYSMANTLE\save}}' + - "{{Game data/saves|Windows|{{p|appdata}}\\10tons\\DYSMANTLE\\save}}" Dyson Sphere Program: pageId: 166084 steam: 1366540 @@ -51249,11 +49839,8 @@ Dyson Sphere Program: - 1523190 - 1530310 templates: - - >- - {{Game data/config|Windows|{{P|userprofile\Documents}}\Dyson Sphere Program\options.dsv (??? and - newer)|{{P|userprofile\Documents}}\Dyson Sphere Program\options.dso (??? - - 0.6.16.????)|{{P|userprofile\Documents}}\Dyson Sphere Program\options.xml (0.6.15.5651 and older)}} - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\Dyson Sphere Program\}}' + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\Dyson Sphere Program\\options.dsv (??? and newer)|{{P|userprofile\\Documents}}\\Dyson Sphere Program\\options.dso (??? - 0.6.16.????)|{{P|userprofile\\Documents}}\\Dyson Sphere Program\\options.xml (0.6.15.5651 and older)}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\Dyson Sphere Program\\}}" Dystoa: pageId: 62616 steam: 640260 @@ -51280,23 +49867,23 @@ Dystoria: Dämmerlicht: pageId: 58112 steam: 589410 -'Déjà Vu II: Lost in Las Vegas': +"Déjà Vu II: Lost in Las Vegas": pageId: 21868 steam: 343830 templates: - - '{{Game data/config|Windows|{{p|appdata}}\zojoi}}' - - '{{Game data/saves|Windows|{{p|appdata}}\zojoi}}' -'Déjà Vu: A Nightmare Comes True': + - "{{Game data/config|Windows|{{p|appdata}}\\zojoi}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\zojoi}}" +"Déjà Vu: A Nightmare Comes True": pageId: 21865 steam: 343820 templates: - - '{{Game data/config|Windows|{{p|appdata}}\zojoi}}' - - '{{Game data/saves|Windows|{{p|appdata}}\zojoi}}' + - "{{Game data/config|Windows|{{p|appdata}}\\zojoi}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\zojoi}}" Désiré: pageId: 43117 steam: 805760 templates: - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Seccia/Adventure Game Engine Application/}}' + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Seccia/Adventure Game Engine Application/}}" E-Ball: pageId: 153549 steam: 766910 @@ -51315,13 +49902,13 @@ E.B.: E.T. Armies: pageId: 44307 steam: 382420 -'E.Y.E: Divine Cybermancy': +"E.Y.E: Divine Cybermancy": gog: 1114411610 pageId: 14350 steam: 91700 templates: - - '{{Game data/config|Windows|{{p|game}}\EYE\cfg\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\streumon\eye\Save}}' + - "{{Game data/config|Windows|{{p|game}}\\EYE\\cfg\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\streumon\\eye\\Save}}" E.Z: pageId: 82113 steam: 795040 @@ -51335,8 +49922,8 @@ EA Sports FC 24: pageId: 189794 steam: 2195250 steamSide: - - 2380512 - 2195260 + - 2380512 EA Sports PGA Tour: pageId: 186345 steam: 1677350 @@ -51344,8 +49931,8 @@ EA Sports WRC: pageId: 189778 steam: 1849250 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\WRC\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{p|steam}}\userdata\{{p|uid}}\1849250\remote\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\WRC\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\1849250\\remote\\}}" EAGLETALON vs. HORDE OF THE FLIES: pageId: 156104 steam: 1150900 @@ -51373,7 +49960,7 @@ EBall: ECCHI NEKO GIRLS PUZZLE: pageId: 127801 steam: 1019630 -'ECHORIA: Ancient Echoes': +"ECHORIA: Ancient Echoes": pageId: 150022 steam: 1169160 ECON: @@ -51411,7 +49998,7 @@ EEP Train Simulator Mission: EEP eisenbahn.exe 14: pageId: 95053 steam: 722190 -'EF Universe: Reclaiming the World': +"EF Universe: Reclaiming the World": pageId: 130287 steam: 985500 EF2000: @@ -51419,8 +50006,8 @@ EF2000: EFMB: pageId: 131404 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\EFMB\config.ini}}' - - '{{Game data/saves|Windows|No save functional.}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\EFMB\\config.ini}}" + - "{{Game data/saves|Windows|No save functional.}}" EFootball 2024: pageId: 170186 renamedFrom: @@ -51429,22 +50016,22 @@ EFootball 2024: - EFootball 2023 steam: 1665460 templates: - - '{{Game data/config|Microsoft Store|{{P|userprofile\Documents}}\KONAMI\eFootball\MS}}' - - '{{Game data/config|Steam|{{P|userprofile\Documents}}\KONAMI\eFootball\ST}}' + - "{{Game data/config|Microsoft Store|{{P|userprofile\\Documents}}\\KONAMI\\eFootball\\MS}}" + - "{{Game data/config|Steam|{{P|userprofile\\Documents}}\\KONAMI\\eFootball\\ST}}" EFootball PES 2020: pageId: 138488 steam: 996470 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\KONAMI\eFootball PES 2020\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\KONAMI\eFootball PES 2020\{{p|uid}}\save\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\KONAMI\\eFootball PES 2020\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\KONAMI\\eFootball PES 2020\\{{p|uid}}\\save\\}}" EFootball PES 2021 Season Update: pageId: 161930 renamedFrom: - EFootball PES 2021 steam: 1259970 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\KONAMI\eFootball PES 2021 SEASON UPDATE\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\KONAMI\eFootball PES 2021 SEASON UPDATE\{{p|uid}}\save\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\KONAMI\\eFootball PES 2021 SEASON UPDATE\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\KONAMI\\eFootball PES 2021 SEASON UPDATE\\{{p|uid}}\\save\\}}" EGE DistantPlanet NonXXX: pageId: 73191 steam: 720950 @@ -51458,8 +50045,8 @@ ELEA: pageId: 141393 steam: 1122150 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Project_Elea\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\Project_Elea\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\Project_Elea\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Project_Elea\\Saved\\SaveGames\\}}" ELECTRONIC STOCK TRADING SYSTEM: pageId: 107656 steam: 895710 @@ -51470,25 +50057,25 @@ ELEX: pageId: 39789 steam: 411300 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\ELEX\}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\Saved Games\ELEX\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\ELEX\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\Saved Games\\ELEX\\}}" ELEX II: gog: 1937944261 pageId: 169305 steam: 900040 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\ELEX2\}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\Saved Games\ELEX2\SaveGames}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\ELEX2\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\Saved Games\\ELEX2\\SaveGames}}" ELON on MARS: pageId: 141618 steam: 1120920 ELYSION: pageId: 150142 steam: 1070110 -'EM: Shader Attack': +"EM: Shader Attack": pageId: 40132 steam: 527490 -'EMMA: Lost in Memories': +"EMMA: Lost in Memories": pageId: 144057 steam: 1124960 EMOTIONS: @@ -51524,23 +50111,23 @@ ERTX 2080TI Mining clicker: ERacer: pageId: 162449 templates: - - '{{Game data/config|Windows|{{p|game}}}}' - - '{{Game data/saves|Windows|{{p|game}}\Saves\}}' + - "{{Game data/config|Windows|{{p|game}}}}" + - "{{Game data/saves|Windows|{{p|game}}\\Saves\\}}" ES Games: pageId: 87297 steam: 802560 -'ESCAPE FROM VOYNA: Dead Forest': +"ESCAPE FROM VOYNA: Dead Forest": pageId: 125476 steam: 588140 ESCHATOS: pageId: 37525 steam: 378770 steamSide: - - 409480 - 396910 + - 409480 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Qute\Eschatos\config.ini|{{p|appdata}}\Qute\Eschatos\jss3.bin}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Qute\Eschatos\jss3.bin}}' + - "{{Game data/config|Windows|{{p|appdata}}\\Qute\\Eschatos\\config.ini|{{p|appdata}}\\Qute\\Eschatos\\jss3.bin}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Qute\\Eschatos\\jss3.bin}}" ESKO: pageId: 130201 steam: 1045140 @@ -51550,20 +50137,16 @@ ESPER: ESPORTS HERO: pageId: 138952 steam: 1046270 -'ESR: European Street Racing': +"ESR: European Street Racing": pageId: 88307 -'ESWAT: City under Siege': +"ESWAT: City under Siege": pageId: 30863 renamedFrom: - - 'ESWAT: City Under Siege' + - "ESWAT: City Under Siege" steam: 71110 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\SEGA Mega Drive - Classics\setup.dat|{{p|userprofile\Documents}}\SEGA Genesis Classics\setup.dat}} - - >- - {{Game data/saves|Windows|{{p|userprofile\Documents}}\SEGA Mega Drive - Classics\0028\|{{p|userprofile\Documents}}\SEGA Genesis Classics\0028\}} + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\SEGA Mega Drive Classics\\setup.dat|{{p|userprofile\\Documents}}\\SEGA Genesis Classics\\setup.dat}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\SEGA Mega Drive Classics\\0028\\|{{p|userprofile\\Documents}}\\SEGA Genesis Classics\\0028\\}}" ESail Sailing Simulator: pageId: 88722 steam: 794860 @@ -51571,7 +50154,7 @@ ESports Club: pageId: 64220 steam: 656200 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\CraftsmanGames\ESports Club\GameSaveData}}' + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\CraftsmanGames\\ESports Club\\GameSaveData}}" ESports Life: pageId: 70401 steam: 704830 @@ -51594,39 +50177,39 @@ EVE Online: pageId: 260 steam: 8500 templates: - - '{{Game data/config|Windows|{{P|LOCALAPPDATA}}\CCP\EVE\c_eve_sharedcache_tq_tranquility\settings_Default\}}' -'EVE: Gunjack': + - "{{Game data/config|Windows|{{P|LOCALAPPDATA}}\\CCP\\EVE\\c_eve_sharedcache_tq_tranquility\\settings_Default\\}}" +"EVE: Gunjack": pageId: 35454 steam: 410570 -'EVE: Valkyrie': +"EVE: Valkyrie": pageId: 23019 steam: 538870 -'EVE: Valkyrie - Warzone': +"EVE: Valkyrie - Warzone": pageId: 72224 steam: 688480 EW/WE: pageId: 104093 steam: 895470 -'EX0: Dark Moon': +"EX0: Dark Moon": pageId: 77172 steam: 736180 -'EXA: The Infinite Instrument': +"EXA: The Infinite Instrument": pageId: 89337 steam: 606920 EXCHANGE: pageId: 113360 steam: 854400 -'EXE: Mainframe': +"EXE: Mainframe": pageId: 121998 steam: 822450 -'EXON: The Impossible Challenge': +"EXON: The Impossible Challenge": pageId: 67831 steam: 683130 -'EXP: The Excellent Potato': +"EXP: The Excellent Potato": pageId: 25064 templates: - - '{{Game data/config|DOS|{{p|game}}\EXP.CFG}}' - - '{{Game data/saves|DOS|{{p|game}}\GAMEDATA.*}}' + - "{{Game data/config|DOS|{{p|game}}\\EXP.CFG}}" + - "{{Game data/saves|DOS|{{p|game}}\\GAMEDATA.*}}" EXPEL: pageId: 113906 steam: 929540 @@ -51643,14 +50226,14 @@ EXceed - Gun Bullet Children: - 15960 - 59925 templates: - - '{{Game data/config|Windows|{{p|game}}\doc.sv}}' - - '{{Game data/saves|Windows|{{p|game}}\doc.sv}}' + - "{{Game data/config|Windows|{{p|game}}\\doc.sv}}" + - "{{Game data/saves|Windows|{{p|game}}\\doc.sv}}" EXceed 2nd - Vampire REX: pageId: 38361 steam: 207380 templates: - - '{{Game data/config|Windows|{{p|game}}\doc.sv}}' - - '{{Game data/saves|Windows|{{p|game}}\sco.sv}}' + - "{{Game data/config|Windows|{{p|game}}\\doc.sv}}" + - "{{Game data/saves|Windows|{{p|game}}\\sco.sv}}" EXceed 3rd - Jade Penetrate Black Package: pageId: 37467 steam: 207400 @@ -51661,30 +50244,30 @@ EXperience 112: pageId: 49444 steam: 324770 templates: - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\the experiment}}' + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\the experiment}}" EZ4u: pageId: 69860 steam: 702550 -'EZRA: The Stranger': +"EZRA: The Stranger": pageId: 57289 steam: 587010 -'Eador: Genesis': +"Eador: Genesis": gog: 1207659147 pageId: 21969 steam: 235660 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/saves|Windows|{{p|game}}\save}}' -'Eador: Imperium': + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\save}}" +"Eador: Imperium": gog: 1675687984 pageId: 42734 steam: 477730 -'Eador: Masters of the Broken World': +"Eador: Masters of the Broken World": gog: 1207659194 pageId: 6288 steam: 232050 templates: - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Eador\profiles\{{p|uid}}\saves\}}' + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Eador\\profiles\\{{p|uid}}\\saves\\}}" Eagle Flight: pageId: 52003 steam: 408250 @@ -51693,8 +50276,8 @@ Eagle Island: pageId: 71712 steam: 681110 templates: - - '{{Game data/config|Windows|{{p|APPDATA}}\Eagle Island\config.ini}}' - - '{{Game data/saves|Windows|{{p|APPDATA}}\Eagle Island\Saves\}}' + - "{{Game data/config|Windows|{{p|APPDATA}}\\Eagle Island\\config.ini}}" + - "{{Game data/saves|Windows|{{p|APPDATA}}\\Eagle Island\\Saves\\}}" Eared Hero: pageId: 88965 steam: 715980 @@ -51702,23 +50285,23 @@ Earn to Die 2: pageId: 38212 steam: 431590 templates: - - '{{Game data/config|Windows|{{p|game}}\app.icf}}' - - '{{Game data/saves|Windows|{{p|game}}\profile.dat}}' + - "{{Game data/config|Windows|{{p|game}}\\app.icf}}" + - "{{Game data/saves|Windows|{{p|game}}\\profile.dat}}" Ears of the Killer: pageId: 179132 Earth & Beyond: pageId: 24007 templates: - - '{{Game data/config|Windows|{{P|hklm}}\Software\{{p|wow64}}\Westwood Studios\Earth and Beyond}}' + - "{{Game data/config|Windows|{{P|hklm}}\\Software\\{{p|wow64}}\\Westwood Studios\\Earth and Beyond}}" Earth 2140: gog: 1207658738 pageId: 13713 steam: 253860 templates: - - '{{Game data/config|DOS|{{p|game}}\game.ini}}' - - '{{Game data/config|Windows|{{p|appdata}}\Earth 2140\game.ini}}' - - '{{Game data/saves|DOS|{{p|game}}\SAVE}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Earth 2140\save\}}' + - "{{Game data/config|DOS|{{p|game}}\\game.ini}}" + - "{{Game data/config|Windows|{{p|appdata}}\\Earth 2140\\game.ini}}" + - "{{Game data/saves|DOS|{{p|game}}\\SAVE}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Earth 2140\\save\\}}" Earth 2150: gog: 1207661853 gogSide: @@ -51726,58 +50309,55 @@ Earth 2150: pageId: 13717 steam: 253880 steamSide: - - 259300 - 259280 + - 259300 templates: - - >- - {{Game data/config|Windows|{{p|game}}\Players|{{p|hklm}}\SOFTWARE\{{p|wow64}}\Topware\Earth - 2150\BaseGame|{{p|hklm}}\SOFTWARE\{{p|wow64}}\Topware\TheMoonProject\BaseGame|{{p|hklm}}\SOFTWARE\{{p|wow64}}\Reality - Pump\LostSouls\BaseGame}} - - '{{Game data/saves|Windows|{{p|game}}\Players}}' + - "{{Game data/config|Windows|{{p|game}}\\Players|{{p|hklm}}\\SOFTWARE\\{{p|wow64}}\\Topware\\Earth 2150\\BaseGame|{{p|hklm}}\\SOFTWARE\\{{p|wow64}}\\Topware\\TheMoonProject\\BaseGame|{{p|hklm}}\\SOFTWARE\\{{p|wow64}}\\Reality Pump\\LostSouls\\BaseGame}}" + - "{{Game data/saves|Windows|{{p|game}}\\Players}}" Earth 2160: gog: 1207658740 pageId: 15546 steam: 1900 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Reality Pump\Earth 2160\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Earth 2160\Players}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Reality Pump\\Earth 2160\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Earth 2160\\Players}}" Earth Analog: pageId: 157491 steam: 1203470 Earth Atlantis: pageId: 125968 steam: 997030 -'Earth Defense Force 4.1: The Shadow of New Despair': +"Earth Defense Force 4.1: The Shadow of New Despair": pageId: 35599 steam: 410320 templates: - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\EDF4.1\SAVE_DATA}}' -'Earth Defense Force 4.1: Wingdiver the Shooter': + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\EDF4.1\\SAVE_DATA}}" +"Earth Defense Force 4.1: Wingdiver the Shooter": pageId: 92609 steam: 574200 Earth Defense Force 5: pageId: 140354 steam: 1007040 templates: - - '{{Game data/config|Windows|{{P|userprofile\documents}}\My Games\EDF5\SAVE_DATA}}' - - '{{Game data/saves|Windows|{{P|userprofile\documents}}\My Games\EDF5\SAVE_DATA}}' -'Earth Defense Force: Insect Armageddon': + - "{{Game data/config|Windows|{{P|userprofile\\documents}}\\My Games\\EDF5\\SAVE_DATA}}" + - "{{Game data/saves|Windows|{{P|userprofile\\documents}}\\My Games\\EDF5\\SAVE_DATA}}" +"Earth Defense Force: Insect Armageddon": pageId: 5485 steam: 23530 templates: - - '{{Game data/saves|Windows|{{p|steam}}\userdata\{{p|uid}}\23530\}}' -'Earth Defense Force: Iron Rain': + - "{{Game data/saves|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\23530\\}}" +"Earth Defense Force: Iron Rain": pageId: 148083 steam: 1039890 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\EDFIR\Saved\Config\WindowsNoEditor}}' - - '{{Game data/saves|Windows|{{P|userprofile\documents}}\My Games\EDFIR\SAVE_DATA}}' -'Earth Defense Force: World Brothers': + - "{{Game data/config|Windows|{{P|localappdata}}\\EDFIR\\Saved\\Config\\WindowsNoEditor}}" + - "{{Game data/saves|Windows|{{P|userprofile\\documents}}\\My Games\\EDFIR\\SAVE_DATA}}" +"Earth Defense Force: World Brothers": pageId: 168651 steam: 1497950 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\EDFWB\Saved\Config\WindowsNoEditor}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\EDFWB\SaveData}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\EDFWB\\Saved\\Config\\WindowsNoEditor}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\EDFWB\\SaveData}}" Earth From Another Sun: pageId: 135856 steam: 1067360 @@ -51794,37 +50374,35 @@ Earth Overclocked: pageId: 45403 steam: 387060 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\EarthOverclocked\settings.ini}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\EarthOverclocked\eosave.sav}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\EarthOverclocked\\settings.ini}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\EarthOverclocked\\eosave.sav}}" Earth Space Colonies: pageId: 35136 steam: 437870 Earth Under Siege: pageId: 49139 steam: 324450 -'Earth: Year 2066': +"Earth: Year 2066": pageId: 81390 steam: 290750 EarthNight: pageId: 108836 steam: 777410 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Cleaversoft\EarthNight\}}' - - '{{Game data/saves|Windows|{{P|game}}\Saves\{{P|uid}}\EarthNight.sav}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Cleaversoft\\EarthNight\\}}" + - "{{Game data/saves|Windows|{{P|game}}\\Saves\\{{P|uid}}\\EarthNight.sav}}" EarthX: gog: 1307753333 gogSide: - - 2034704599 - 1838314409 + - 2034704599 pageId: 139316 steam: 1069030 steamSide: - 1260270 templates: - - >- - {{Game data/config|Windows|{{P|userprofile\Documents}}\EarthX\settings.json|{{P|hkcu}}\Software\Mesote Games - (Denis Szwarc)\EarthX\}} - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\EarthX\savedata\}}' + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\EarthX\\settings.json|{{P|hkcu}}\\Software\\Mesote Games (Denis Szwarc)\\EarthX\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\EarthX\\savedata\\}}" Earthbreakers: pageId: 155085 steam: 1188870 @@ -51842,32 +50420,19 @@ Earthlock: pageId: 79387 steam: 761030 templates: - - >- - {{Game data/config|Windows|{{P|userprofile}}\AppData\LocalLow\Snowcastle Games\Earthlock Enhanced - Edition\Earthlock_Settings.efomsettings}} - - >- - {{Game data/config|OS X|{{P|osxhome}}/Library/Application Support/unity.Snowcastle - Games.Earthlock/Earthlock_Settings.efomsettings}} - - >- - {{Game data/config|Linux|{{p|xdgconfighome}}/unity3d/Snowcastle Games/Earthlock Enhanced - Edition/Earthlock_Settings.efomsettings|{{p|xdgconfighome}}/unity3d/Snowcastle Games/Earthlock Enhanced - Edition/prefs}} - - >- - {{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Snowcastle Games\Earthlock Enhanced - Edition\Earthlock_Save_*.efom}} - - >- - {{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/unity.Snowcastle - Games.Earthlock/Earthlock_Save_*.efom}} - - >- - {{Game data/saves|Linux|{{p|xdgconfighome}}/unity3d/Snowcastle Games/Earthlock Enhanced - Edition/Earthlock_Save_*.efom}} -'Earthlock: Festival of Magic': + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Snowcastle Games\\Earthlock Enhanced Edition\\Earthlock_Settings.efomsettings}}" + - "{{Game data/config|OS X|{{P|osxhome}}/Library/Application Support/unity.Snowcastle Games.Earthlock/Earthlock_Settings.efomsettings}}" + - "{{Game data/config|Linux|{{p|xdgconfighome}}/unity3d/Snowcastle Games/Earthlock Enhanced Edition/Earthlock_Settings.efomsettings|{{p|xdgconfighome}}/unity3d/Snowcastle Games/Earthlock Enhanced Edition/prefs}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Snowcastle Games\\Earthlock Enhanced Edition\\Earthlock_Save_*.efom}}" + - "{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/unity.Snowcastle Games.Earthlock/Earthlock_Save_*.efom}}" + - "{{Game data/saves|Linux|{{p|xdgconfighome}}/unity3d/Snowcastle Games/Earthlock Enhanced Edition/Earthlock_Save_*.efom}}" +"Earthlock: Festival of Magic": gog: 1876172398 pageId: 36926 steam: 258030 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Steam\{{p|uid}}\258030\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Snowcastle Games\Earthlock}}' + - "{{Game data/config|Windows|{{p|appdata}}\\Steam\\{{p|uid}}\\258030\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Snowcastle Games\\Earthlock}}" Earthquake Simulator VR: pageId: 63460 steam: 607590 @@ -51877,8 +50442,8 @@ Earthshine: Earthsiege 2: pageId: 29480 templates: - - '{{Game data/config|Windows|{{p|game}}\DATA\*.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\SAV\}}' + - "{{Game data/config|Windows|{{p|game}}\\DATA\\*.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\SAV\\}}" Earthtongue: pageId: 37764 steam: 358070 @@ -51897,20 +50462,20 @@ Earthworm Jim 2: pageId: 13980 steam: 38490 templates: - - '{{Game data/saves|Windows|{{p|game}}\EWJ2.PWD}}' - - '{{Game data/saves|OS X|{{p|game}}/EWJ2.PWD}}' - - '{{Game data/saves|Linux|{{p|game}}/EWJ2.PWD}}' + - "{{Game data/saves|Windows|{{p|game}}\\EWJ2.PWD}}" + - "{{Game data/saves|OS X|{{p|game}}/EWJ2.PWD}}" + - "{{Game data/saves|Linux|{{p|game}}/EWJ2.PWD}}" Earthworm Jim 3D: gog: 1207658649 pageId: 19029 steam: 41600 templates: - - '{{Game data/saves|Windows|{{P|game}}\GameSave.SAV}}' -'Earthworm Jim: Special Edition': + - "{{Game data/saves|Windows|{{P|game}}\\GameSave.SAV}}" +"Earthworm Jim: Special Edition": pageId: 87670 templates: - - '{{Game data/config|Windows|{{p|hklm}}\SOFTWARE\{{p|wow64}}\Activision\Earthworm}}' - - '{{Game data/saves|Windows|{{p|hklm}}\SOFTWARE\{{p|wow64}}\Activision\Earthworm}}' + - "{{Game data/config|Windows|{{p|hklm}}\\SOFTWARE\\{{p|wow64}}\\Activision\\Earthworm}}" + - "{{Game data/saves|Windows|{{p|hklm}}\\SOFTWARE\\{{p|wow64}}\\Activision\\Earthworm}}" Earthworms: pageId: 66305 steam: 320330 @@ -51924,13 +50489,13 @@ East India Company: pageId: 3965 steam: 25930 steamSide: - - 254000 - - 42800 - 25940 + - 42800 - 42820 + - 254000 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\East India Company\Config\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\East India Company\SaveGame\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\East India Company\\Config\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\East India Company\\SaveGame\\}}" East Tower - Akio: pageId: 48080 steam: 354950 @@ -51943,44 +50508,42 @@ East Tower - Kurenai: East Tower - Takashi: pageId: 47759 steam: 356540 -'Easter Clicker: Idle Manager': +"Easter Clicker: Idle Manager": pageId: 136463 steam: 1081740 Easter Egg: pageId: 152691 steam: 1151090 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\EasterEggs\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\EasterEggs\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\EasterEggs\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\EasterEggs\\Saved\\SaveGames\\}}" Easter!: pageId: 127207 steam: 1023960 Eastern Exorcist: pageId: 145369 steam: 1120810 -'Eastern Mind: The Lost Souls of Tong Nou': +"Eastern Mind: The Lost Souls of Tong Nou": pageId: 163972 Eastshade: pageId: 87597 steam: 715560 templates: - - >- - {{Game data/config|Windows|{{P|hkcu}}\SOFTWARE\Eastshade - Studios\Eastshade|{{P|userprofile\appdata\locallow}}\Eastshade Studios\Eastshade\GraphicsSettings.txt}} - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Eastshade Studios\Eastshade\*.BIN}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\SOFTWARE\\Eastshade Studios\\Eastshade|{{P|userprofile\\appdata\\locallow}}\\Eastshade Studios\\Eastshade\\GraphicsSettings.txt}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Eastshade Studios\\Eastshade\\*.BIN}}" Eastside Hockey Manager: pageId: 38454 steam: 301120 templates: - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\Sports Interactive\EHM\}}' + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\Sports Interactive\\EHM\\}}" Eastward: gog: 1116987509 pageId: 122864 steam: 977880 templates: - - '{{Game data/config|Windows|{{P|appdata}}\Pixpil\Eastward\game_settings}}' - - '{{Game data/saves|Windows|{{P|appdata}}\Pixpil\Eastward\SaveData\}}' - - '{{Game data/saves|Steam|{{P|appdata}}\Pixpil\Eastward\steam_{{p|uid}}\SaveData\}}' + - "{{Game data/config|Windows|{{P|appdata}}\\Pixpil\\Eastward\\game_settings}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\Pixpil\\Eastward\\SaveData\\}}" + - "{{Game data/saves|Steam|{{P|appdata}}\\Pixpil\\Eastward\\steam_{{p|uid}}\\SaveData\\}}" Eastwood VR: pageId: 62402 steam: 612250 @@ -51994,7 +50557,7 @@ Easy Hentai: Easy Magic: pageId: 60069 steam: 599800 -'Easy Puzzle: Animals': +"Easy Puzzle: Animals": pageId: 132185 steam: 1054240 Easy Racing: @@ -52016,11 +50579,11 @@ Eat All the Things: pageId: 92698 steam: 730290 templates: - - '{{Game data/saves|Windows|{{P|hkcu}}\Software\ROSTAMI LTD\}}' + - "{{Game data/saves|Windows|{{P|hkcu}}\\Software\\ROSTAMI LTD\\}}" Eat My Dust: pageId: 146902 templates: - - '{{Game data/config|Windows|{{Path|game}}\SIERRA.INF}}' + - "{{Game data/config|Windows|{{Path|game}}\\SIERRA.INF}}" Eat This: pageId: 185549 Eat Your Words: @@ -52032,7 +50595,7 @@ Eat my Shuriken and Die!: Eat this!: pageId: 141143 steam: 1093220 -'Eat, Sleep, Bet, Repeat': +"Eat, Sleep, Bet, Repeat": pageId: 71928 steam: 671840 EatWell: @@ -52042,14 +50605,14 @@ Eaten Alive: pageId: 35355 steam: 403560 templates: - - '{{Game data/config|Windows|{{p|game}}\Game.ini|{{p|game}}\System\Options.dt}}' -'Ebony Spire: Heresy': + - "{{Game data/config|Windows|{{p|game}}\\Game.ini|{{p|game}}\\System\\Options.dt}}" +"Ebony Spire: Heresy": pageId: 73681 steam: 725040 Ebullition LBVR: pageId: 145003 steam: 1127010 -'Ecchi 2: compile 2D chan': +"Ecchi 2: compile 2D chan": pageId: 179110 steam: 973130 Ecchi Cards: @@ -52064,7 +50627,7 @@ Ecchi MEETING!: Ecchi Puzzle: pageId: 100082 steam: 890710 -'Ecchi Sketch: Draw Cute Girls Every Day!': +"Ecchi Sketch: Draw Cute Girls Every Day!": pageId: 59053 steam: 606690 Ecchi Sky: @@ -52074,62 +50637,48 @@ Ecco Jr.: pageId: 30884 steam: 34287 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\SEGA Mega Drive - Classics\setup.dat|{{p|userprofile\Documents}}\SEGA Genesis Classics\setup.dat}} - - >- - {{Game data/saves|Windows|{{p|userprofile\Documents}}\SEGA Mega Drive - Classics\0015\|{{p|userprofile\Documents}}\SEGA Genesis Classics\0015\}} + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\SEGA Mega Drive Classics\\setup.dat|{{p|userprofile\\Documents}}\\SEGA Genesis Classics\\setup.dat}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\SEGA Mega Drive Classics\\0015\\|{{p|userprofile\\Documents}}\\SEGA Genesis Classics\\0015\\}}" Ecco the Dolphin: pageId: 25675 templates: - - '{{Game data/config|Windows|{{p|windir}}\}}' - - '{{Game data/saves|Windows|{{p|game}}\dol32nt.stg}}' + - "{{Game data/config|Windows|{{p|windir}}\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\dol32nt.stg}}" Ecco the Dolphin (2010): pageId: 30875 steam: 34274 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\SEGA Mega Drive - Classics\setup.dat|{{p|userprofile\Documents}}\SEGA Genesis Classics\setup.dat}} - - >- - {{Game data/saves|Windows|{{p|userprofile\Documents}}\SEGA Mega Drive - Classics\0003\|{{p|userprofile\Documents}}\SEGA Genesis Classics\0003\}} -'Ecco: The Tides of Time': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\SEGA Mega Drive Classics\\setup.dat|{{p|userprofile\\Documents}}\\SEGA Genesis Classics\\setup.dat}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\SEGA Mega Drive Classics\\0003\\|{{p|userprofile\\Documents}}\\SEGA Genesis Classics\\0003\\}}" +"Ecco: The Tides of Time": pageId: 30886 steam: 34319 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\SEGA Mega Drive - Classics\setup.dat|{{p|userprofile\Documents}}\SEGA Genesis Classics\setup.dat}} - - >- - {{Game data/saves|Windows|{{p|userprofile\Documents}}\SEGA Mega Drive - Classics\0027\|{{p|userprofile\Documents}}\SEGA Genesis Classics\0027\}} + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\SEGA Mega Drive Classics\\setup.dat|{{p|userprofile\\Documents}}\\SEGA Genesis Classics\\setup.dat}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\SEGA Mega Drive Classics\\0027\\|{{p|userprofile\\Documents}}\\SEGA Genesis Classics\\0027\\}}" Echelon: gog: 1660643617 pageId: 170269 templates: - - '{{Game data/saves|DOS|A:\G*.BIN|{{p|game}}\DISK2\G*.BIN}}' + - "{{Game data/saves|DOS|A:\\G*.BIN|{{p|game}}\\DISK2\\G*.BIN}}" Echelon (2001): pageId: 18215 steam: 311080 templates: - - '{{Game data/config|Windows|{{p|game}}\Data\Configs.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\Saved Games\}}' -'Echelon: Wind Warriors': + - "{{Game data/config|Windows|{{p|game}}\\Data\\Configs.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\Saved Games\\}}" +"Echelon: Wind Warriors": pageId: 23276 steam: 311100 templates: - - '{{Game data/config|Windows|{{p|hklm}}\SOFTWARE\{{p|wow64}}\Madia\Echelon 1.5\Video}}' + - "{{Game data/config|Windows|{{p|hklm}}\\SOFTWARE\\{{p|wow64}}\\Madia\\Echelon 1.5\\Video}}" Echo: gog: 2145436309 pageId: 67960 steam: 551770 templates: - - >- - {{Game - data/config|Windows|{{p|localappdata}}\Echo\Saved\Config\WindowsNoEditor\|{{p|localappdata}}\Echo\Saved\Config\}} - - '{{Game data/saves|Windows|{{p|localappdata}}\Echo\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Echo\\Saved\\Config\\WindowsNoEditor\\|{{p|localappdata}}\\Echo\\Saved\\Config\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Echo\\Saved\\SaveGames\\}}" Echo (Nobody Studio): pageId: 81372 steam: 751320 @@ -52151,16 +50700,16 @@ Echo Prime: Echo Royale: pageId: 132018 steam: 1052370 -'Echo Tokyo: Intro': +"Echo Tokyo: Intro": pageId: 44813 steam: 345700 templates: - - '{{Game data/config|Windows|{{p|game}}\renpy\config.py}}' - - '{{Game data/saves|Windows|{{p|game}}\game\saves\|{{p|appdata}}\renpy\Echo Tokyo Intro Save1\}}' -'Echo Tokyo: Phoenix': + - "{{Game data/config|Windows|{{p|game}}\\renpy\\config.py}}" + - "{{Game data/saves|Windows|{{p|game}}\\game\\saves\\|{{p|appdata}}\\renpy\\Echo Tokyo Intro Save1\\}}" +"Echo Tokyo: Phoenix": pageId: 39743 steam: 432110 -'Echo Tokyo: Reaper': +"Echo Tokyo: Reaper": pageId: 76376 steam: 506640 Echo VR: @@ -52178,8 +50727,8 @@ Echoed World: pageId: 75652 steam: 740470 templates: - - '{{Game data/config|Windows|{{P|game}}\Saves\settings.xml}}' - - '{{Game data/saves|Windows|{{P|game}}\Saves\}}' + - "{{Game data/config|Windows|{{P|game}}\\Saves\\settings.xml}}" + - "{{Game data/saves|Windows|{{P|game}}\\Saves\\}}" Echoes III: pageId: 108980 steam: 841950 @@ -52193,34 +50742,34 @@ Echoes of Aetheria: pageId: 37225 steam: 354740 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Echoes of Aetheria}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Echoes of Aetheria}}' -'Echoes of War: The Last Heartbeat': + - "{{Game data/config|Windows|{{p|appdata}}\\Echoes of Aetheria}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Echoes of Aetheria}}" +"Echoes of War: The Last Heartbeat": pageId: 102409 steam: 786710 -'Echoes of the Fey Episode 0: The Immolation': +"Echoes of the Fey Episode 0: The Immolation": pageId: 57313 steam: 585990 -'Echoes of the Fey: The Fox''s Trail': +"Echoes of the Fey: The Fox's Trail": pageId: 41589 steam: 511320 -'Echoes of the Fey: The Last Sacrament': +"Echoes of the Fey: The Last Sacrament": pageId: 94617 steam: 858830 -'Echoes of the Past: The Citadels of Time': +"Echoes of the Past: The Citadels of Time": pageId: 125537 steam: 995890 -'Echoes of the Past: The Kingdom of Despair': +"Echoes of the Past: The Kingdom of Despair": pageId: 42167 renamedFrom: - - 'Echoes of the Past: The Kingdom of Despair Collector''s Edition' + - "Echoes of the Past: The Kingdom of Despair Collector's Edition" steam: 503080 -'Echoes of the Past: The Revenge of the Witch': +"Echoes of the Past: The Revenge of the Witch": pageId: 42800 renamedFrom: - - 'Echoes of the Past: The Revenge of the Witch Collector''s Edition' + - "Echoes of the Past: The Revenge of the Witch Collector's Edition" steam: 465920 -'Echoes of the Past: Wolf Healer': +"Echoes of the Past: Wolf Healer": pageId: 95449 steam: 866700 Echoes+: @@ -52230,10 +50779,8 @@ Echoplex: pageId: 59838 steam: 611060 templates: - - >- - {{Game data/config|Windows|{{P|userprofile\appdata\locallow}}\Output Games\Echoplex|{{p|HKCU}}\SOFTWARE\Output - Games\Echoplex}} - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Output Games\Echoplex}}' + - "{{Game data/config|Windows|{{P|userprofile\\appdata\\locallow}}\\Output Games\\Echoplex|{{p|HKCU}}\\SOFTWARE\\Output Games\\Echoplex}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Output Games\\Echoplex}}" Ecio: pageId: 138984 steam: 1094580 @@ -52241,13 +50788,13 @@ Eclipse: gog: 2115858327 pageId: 176919 steam: 1464380 -'Eclipse: Defending the Motherland': +"Eclipse: Defending the Motherland": pageId: 42878 steam: 470130 -'Eclipse: Edge of Light': +"Eclipse: Edge of Light": pageId: 148932 steam: 406710 -'Eclipse: New Dawn for the Galaxy': +"Eclipse: New Dawn for the Galaxy": pageId: 39049 steam: 522030 Eclipsed: @@ -52257,11 +50804,9 @@ Eco: pageId: 37074 steam: 382310 templates: - - >- - {{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\Strange Loop Games\Eco|{{p|hkcu}}\SOFTWARE\Strange - Loop Games\Eco}} - - '{{Game data/saves|Windows|{{P|game}}\Eco_Data\Server\Configs|{{P|game}}\Eco_Data\Server\Storage}}' -'EcoQuest: The Search for Cetus': + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Strange Loop Games\\Eco|{{p|hkcu}}\\SOFTWARE\\Strange Loop Games\\Eco}}" + - "{{Game data/saves|Windows|{{P|game}}\\Eco_Data\\Server\\Configs|{{P|game}}\\Eco_Data\\Server\\Storage}}" +"EcoQuest: The Search for Cetus": pageId: 147102 Economic Conquest: pageId: 55930 @@ -52278,17 +50823,17 @@ Ecotone: Ecstatica: pageId: 164114 templates: - - '{{Game data/config|DOS|{{p|game}}\saved\}}' - - '{{Game data/config|Windows|{{p|game}}\saved\}}' - - '{{Game data/saves|DOS|{{p|game}}\saved\}}' - - '{{Game data/saves|Windows|{{p|game}}\saved\}}' + - "{{Game data/config|DOS|{{p|game}}\\saved\\}}" + - "{{Game data/config|Windows|{{p|game}}\\saved\\}}" + - "{{Game data/saves|DOS|{{p|game}}\\saved\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\saved\\}}" Ecstatica II: pageId: 166171 templates: - - '{{Game data/config|Windows|{{p|game}}\saved\}}' - - '{{Game data/config|DOS|{{p|game}}\saved\}}' - - '{{Game data/saves|Windows|{{p|game}}\saved\}}' - - '{{Game data/saves|DOS|{{p|game}}\saved\}}' + - "{{Game data/config|Windows|{{p|game}}\\saved\\}}" + - "{{Game data/config|DOS|{{p|game}}\\saved\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\saved\\}}" + - "{{Game data/saves|DOS|{{p|game}}\\saved\\}}" Ectolibrium: pageId: 122562 steam: 904810 @@ -52297,12 +50842,12 @@ Eczema Angel Orifice: steam: 422010 Ed Hunter: pageId: 74356 -'Ed, Edd n Eddy: The Mis-Edventures': +"Ed, Edd n Eddy: The Mis-Edventures": pageId: 92547 templates: - - '{{Game data/config|Windows|{{P|game}}\engine.ini}}' - - '{{Game data/saves|Windows|{{P|game}}\eeegd}}' -'Ed-0: Zombie Uprising': + - "{{Game data/config|Windows|{{P|game}}\\engine.ini}}" + - "{{Game data/saves|Windows|{{P|game}}\\eeegd}}" +"Ed-0: Zombie Uprising": pageId: 176362 steam: 1717020 Edataconsulting VR Office: @@ -52324,8 +50869,8 @@ Eden Star: pageId: 22748 steam: 259570 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\EdenGame\Saved\Config\WindowsNoEditor\}}' -'Eden''s Ritter: Paladins of Ecstasy': + - "{{Game data/config|Windows|{{p|localappdata}}\\EdenGame\\Saved\\Config\\WindowsNoEditor\\}}" +"Eden's Ritter: Paladins of Ecstasy": pageId: 164385 steam: 1127540 Eden*: @@ -52333,12 +50878,12 @@ Eden*: pageId: 37132 steam: 315810 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\minori\eden (English edition)\sysparams.txt}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\minori\eden (English edition)\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\minori\\eden (English edition)\\sysparams.txt}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\minori\\eden (English edition)\\}}" Edengrad: pageId: 39468 steam: 381180 -'Edepth Angel: Pinocchio''s Murder': +"Edepth Angel: Pinocchio's Murder": pageId: 80847 steam: 764780 Edgar: @@ -52347,21 +50892,21 @@ Edgar: Edgar - Bokbok in Boulzac: pageId: 128688 steam: 1007830 -Edgar Torronteras' Moto-X 2000: +"Edgar Torronteras' Moto-X 2000": pageId: 190356 -Edgar Torronteras' eXtreme Biker: +"Edgar Torronteras' eXtreme Biker": pageId: 190319 Edge: pageId: 4901 steam: 38740 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Two Tribes\EDGE\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/com.twotribes.edge/}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/twotribes/edge/settings.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\edge\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/com.twotribes.edge/}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/twotribes/edge/}}' - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/38740/remote/}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Two Tribes\\EDGE\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/com.twotribes.edge/}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/twotribes/edge/settings.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\edge\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/com.twotribes.edge/}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/twotribes/edge/}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/38740/remote/}}" Edge (2018): pageId: 137356 steam: 963940 @@ -52376,11 +50921,9 @@ Edge of Eternity: pageId: 101649 steam: 269190 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\SOFTWARE\Midgar Studio\EdgeOfEternity}}' - - >- - {{Game data/saves|Windows|{{P|userprofile\Documents}}\My Games\Edge Of - Eternity\Save|{{P|userprofile\Documents}}\My Games\Edge Of Eternity\AutoSave\EOEGameAutoSave}} - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\269190\remote}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\SOFTWARE\\Midgar Studio\\EdgeOfEternity}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\My Games\\Edge Of Eternity\\Save|{{P|userprofile\\Documents}}\\My Games\\Edge Of Eternity\\AutoSave\\EOEGameAutoSave}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\269190\\remote}}" Edge of Existence: pageId: 73645 renamedFrom: @@ -52407,11 +50950,11 @@ Edge of Space: pageId: 46416 steam: 238240 templates: - - '{{Game data/config|Windows|{{p|appdata}}\EdgeOfSpace}}' -'Edge of Time: Rise of the Aeus': + - "{{Game data/config|Windows|{{p|appdata}}\\EdgeOfSpace}}" +"Edge of Time: Rise of the Aeus": pageId: 141572 steam: 1101530 -'Edge of Twilight: Return to Glory': +"Edge of Twilight: Return to Glory": pageId: 39125 steam: 489070 Edge of War: @@ -52426,38 +50969,32 @@ Edges 2: Edmonton Trolley Car: pageId: 69468 steam: 701990 -'Edna & Harvey: Harvey''s New Eyes': +"Edna & Harvey: Harvey's New Eyes": gog: 1207664343 pageId: 17987 steam: 219910 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Daedalic Entertainment\Harvey\config.ini}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/Daedalic Entertainment/Harvey/config.ini}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Daedalic Entertainment\Harvey\Savegames\}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/Daedalic Entertainment/Harvey/Savegames/}}' -'Edna & Harvey: The Breakout': + - "{{Game data/config|Windows|{{p|localappdata}}\\Daedalic Entertainment\\Harvey\\config.ini}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/Daedalic Entertainment/Harvey/config.ini}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Daedalic Entertainment\\Harvey\\Savegames\\}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/Daedalic Entertainment/Harvey/Savegames/}}" +"Edna & Harvey: The Breakout": gog: 1207664333 pageId: 21911 steam: 255320 templates: - - '{{Game data/config|Windows|{{P|game}}\ednaPreferen.ces}}' - - >- - {{Game data/saves|Windows|{{P|localappdata}}\Daedalic - Entertainment\Edna\savegame\|{{P|userprofile}}\Daedalic\EdnaSE\savegame\}} -'Edna & Harvey: The Breakout - Anniversary Edition': + - "{{Game data/config|Windows|{{P|game}}\\ednaPreferen.ces}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Daedalic Entertainment\\Edna\\savegame\\|{{P|userprofile}}\\Daedalic\\EdnaSE\\savegame\\}}" +"Edna & Harvey: The Breakout - Anniversary Edition": gog: 1706173745 pageId: 152652 steam: 959000 templates: - - >- - {{Game data/config|Windows|{{P|hkcu}}\SOFTWARE\Daedalic Entertainment GmbH\Edna and Harvey - The - Breakout|{{P|localappdata}}\Daedalic Entertainment GmbH\Edna and Harvey - The Breakout\Options.sav}} - - >- - {{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/Daedalic Entertainment GmbH/Edna and Harvey - The - Breakout/prefs|{{P|xdgdatahome}}/Daedalic Entertainment GmbH/Edna and Harvey - The Breakout/Options.sav}} - - '{{Game data/saves|Windows|{{P|localappdata}}\Daedalic Entertainment GmbH\Edna and Harvey - The Breakout\}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/Daedalic Entertainment GmbH/Edna and Harvey - The Breakout/}}' -'Edna & Harvey: The Puzzle': + - "{{Game data/config|Windows|{{P|hkcu}}\\SOFTWARE\\Daedalic Entertainment GmbH\\Edna and Harvey - The Breakout|{{P|localappdata}}\\Daedalic Entertainment GmbH\\Edna and Harvey - The Breakout\\Options.sav}}" + - "{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/Daedalic Entertainment GmbH/Edna and Harvey - The Breakout/prefs|{{P|xdgdatahome}}/Daedalic Entertainment GmbH/Edna and Harvey - The Breakout/Options.sav}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Daedalic Entertainment GmbH\\Edna and Harvey - The Breakout\\}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/Daedalic Entertainment GmbH/Edna and Harvey - The Breakout/}}" +"Edna & Harvey: The Puzzle": pageId: 134089 Edolie: pageId: 48555 @@ -52465,7 +51002,7 @@ Edolie: Education: pageId: 159019 steam: 1261880 -'Educator 2076: Basics in Education': +"Educator 2076: Basics in Education": pageId: 121926 steam: 923880 Edvog Explorer Game: @@ -52484,31 +51021,29 @@ Eets Munchies: pageId: 10259 steam: 214550 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Klei\Eets2\}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.klei/eets2/}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.klei/eets2/}}' -'Ef: The First Tale': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Klei\\Eets2\\}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.klei/eets2/}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.klei/eets2/}}" +"Ef: The First Tale": pageId: 148797 renamedFrom: - Ef - the first tale. (All Ages) steam: 1144300 templates: - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\minori\ef - the first tale.(AA)\*.*}}' -'Ef: The Latter Tale': + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\minori\\ef - the first tale.(AA)\\*.*}}" +"Ef: The Latter Tale": pageId: 148795 renamedFrom: - Ef - the latter tale. (All Ages) steam: 1145030 templates: - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\minori\ef - the latter tale.(AA)\*.*}}' + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\minori\\ef - the latter tale.(AA)\\*.*}}" Effie: pageId: 122804 steam: 975950 templates: - - >- - {{Game - data/config|Windows|{{P|localappdata}}\Effie\Saved\SaveGames\EffieSettings.sav|{{P|localappdata}}\Effie\Saved\Config\WindowsNoEditor\}} - - '{{Game data/saves|Windows|{{P|localappdata}}\Effie\Saved\SaveGames\EffieGame.sav}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\Effie\\Saved\\SaveGames\\EffieSettings.sav|{{P|localappdata}}\\Effie\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Effie\\Saved\\SaveGames\\EffieGame.sav}}" Egg Escape: pageId: 132418 steam: 1057890 @@ -52522,8 +51057,8 @@ Egg Returns Home: pageId: 48008 steam: 363790 templates: - - '{{Game data/config|Windows|{{P|appdata}}\Egg Returns Home\settings.cfg}}' - - '{{Game data/saves|Windows|{{P|appdata}}\Egg Returns Home\gamedata.bin}}' + - "{{Game data/config|Windows|{{P|appdata}}\\Egg Returns Home\\settings.cfg}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\Egg Returns Home\\gamedata.bin}}" Egg Teacher VR: pageId: 113450 steam: 879030 @@ -52551,8 +51086,8 @@ Eggggg - The platform puker: pageId: 62612 steam: 638470 templates: - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\Hyper Games\Eggggg}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Hyper Games/Eggggg}}' + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\Hyper Games\\Eggggg}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Hyper Games/Eggggg}}" Egghead Gumpty: pageId: 184398 steam: 2067570 @@ -52586,12 +51121,12 @@ Ego Protocol: Egress: pageId: 82938 steam: 750800 -'Egypt 1156 B.C.: Tomb of the Pharaoh': +"Egypt 1156 B.C.: Tomb of the Pharaoh": pageId: 190633 Egypt Solitaire. Match 2 Cards: pageId: 154075 steam: 1202220 -'Egypt: Old Kingdom': +"Egypt: Old Kingdom": gog: 1422781192 pageId: 77335 steam: 646500 @@ -52611,12 +51146,12 @@ Eidolon: pageId: 18799 steam: 286140 templates: - - '{{Game data/config|Windows|{{p|game}}\UDKGame\Config\*.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\Binaries\Win32\*.bin}}' + - "{{Game data/config|Windows|{{p|game}}\\UDKGame\\Config\\*.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\Binaries\\Win32\\*.bin}}" Eidolon adventure: pageId: 139169 steam: 1098230 -'Eidolons: Nethergate': +"Eidolons: Nethergate": pageId: 132873 steam: 1043440 Eight Dragons: @@ -52652,12 +51187,12 @@ Einn: Eisenbahn X: pageId: 47591 steam: 335310 -'Eisenhorn: Xenos': +"Eisenhorn: Xenos": pageId: 41757 steam: 373920 templates: - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Eisenhorn XENOS\XenosGame}}' -'Eisenwald: Blood of November': + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Eisenhorn XENOS\\XenosGame}}" +"Eisenwald: Blood of November": gog: 1589369222 pageId: 52676 steam: 528820 @@ -52668,30 +51203,26 @@ Eitr: Eiyu*Senki - The World Conquest: pageId: 74997 steam: 691770 -'Eiyuden Chronicle: Hundred Heroes': +"Eiyuden Chronicle: Hundred Heroes": gog: 1352770401 pageId: 166590 steam: 1658280 -'Eiyuden Chronicle: Rising': +"Eiyuden Chronicle: Rising": gog: 1307723969 pageId: 169366 steam: 1658290 templates: - - >- - {{Game data/config|Windows|{{P|userprofile}}\AppData\LocalLow\505 Games S_p_A\Eiyuden Chronicle - Rising\{{p|uid}}\EcrSaveSys.dat}} - - >- - {{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\505 Games S_p_A\Eiyuden Chronicle - Rising\{{p|uid}}\*.sav}} + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\505 Games S_p_A\\Eiyuden Chronicle Rising\\{{p|uid}}\\EcrSaveSys.dat}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\505 Games S_p_A\\Eiyuden Chronicle Rising\\{{p|uid}}\\*.sav}}" Eksperyment Delfin: pageId: 159147 templates: - - '{{Game data/config|DOS|{{p|game}}\SOUND.SET}}' - - '{{Game data/saves|DOS|{{p|game}}\DELFIN.SAV}}' + - "{{Game data/config|DOS|{{p|game}}\\SOUND.SET}}" + - "{{Game data/saves|DOS|{{p|game}}\\DELFIN.SAV}}" El Culto: pageId: 145146 steam: 1129480 -'El Culto: edición completa': +"El Culto: edición completa": pageId: 153115 steam: 1191700 El Hijo - A Wild West Tale: @@ -52701,8 +51232,8 @@ El Hijo - A Wild West Tale: - El Hijo steam: 853050 templates: - - '{{Game data/config|Windows|{{P|userprofile\appdata\locallow}}\HonigStudios\el-hijo}}' - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\HonigStudios\el-hijo\Save_01.json}}' + - "{{Game data/config|Windows|{{P|userprofile\\appdata\\locallow}}\\HonigStudios\\el-hijo}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\HonigStudios\\el-hijo\\Save_01.json}}" El Hincha Rusia 2018: pageId: 96427 steam: 865370 @@ -52711,12 +51242,12 @@ El Matador: pageId: 50488 steam: 289280 templates: - - '{{Game data/config|Windows|{{p|game}}\PROFILES\{{p|uid}}\core.ini}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\TYPHOON\USERS\DEFAULT USER\SAVES\}}' -'El Ministerio del Tiempo VR: El tiempo en tus manos': + - "{{Game data/config|Windows|{{p|game}}\\PROFILES\\{{p|uid}}\\core.ini}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\TYPHOON\\USERS\\DEFAULT USER\\SAVES\\}}" +"El Ministerio del Tiempo VR: El tiempo en tus manos": pageId: 72668 steam: 646360 -'El Ministerio del Tiempo VR: Salva el tiempo': +"El Ministerio del Tiempo VR: Salva el tiempo": pageId: 89302 steam: 716900 El Ninja: @@ -52727,14 +51258,14 @@ El Pansas: steam: 944200 El Rock de tu Vida: pageId: 142668 -'El Shaddai: Ascension of the Metatron HD Remaster': +"El Shaddai: Ascension of the Metatron HD Remaster": pageId: 165603 renamedFrom: - - 'El Shaddai: Ascension of the Metatron' + - "El Shaddai: Ascension of the Metatron" steam: 1581040 templates: - - '{{Game data/config|Windows|{{p|game}}\Win32\AppSettings.ini}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Elshaddai\}}' + - "{{Game data/config|Windows|{{p|game}}\\Win32\\AppSettings.ini}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Elshaddai\\}}" El Taco Diablo: pageId: 128373 steam: 843700 @@ -52755,8 +51286,8 @@ Elasto Mania: pageId: 151825 steam: 1290220 templates: - - '{{Game data/config|Windows|{{P|game}}\state.dat}}' - - '{{Game data/saves|Windows|{{P|game}}\state.dat}}' + - "{{Game data/config|Windows|{{P|game}}\\state.dat}}" + - "{{Game data/saves|Windows|{{P|game}}\\state.dat}}" Elasto Mania II: gog: 1308960865 pageId: 174643 @@ -52771,20 +51302,20 @@ Elden Ring: pageId: 146683 steam: 1245620 templates: - - '{{Game data/config|Windows|{{p|appdata}}\EldenRing\GraphicsConfig.xml}}' - - '{{Game data/saves|Windows|{{p|appdata}}\EldenRing\{{p|uid}}\ER0000.sl2}}' -'Elden: Path of the Forgotten': + - "{{Game data/config|Windows|{{p|appdata}}\\EldenRing\\GraphicsConfig.xml}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\EldenRing\\{{p|uid}}\\ER0000.sl2}}" +"Elden: Path of the Forgotten": pageId: 90614 steam: 715020 Elder Chaos: pageId: 74393 steam: 712000 -'Elder Sign: Omens': +"Elder Sign: Omens": pageId: 40505 steam: 257670 templates: - - '{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/Fantasy Flight Games/ElderSign}}' - - '{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/Fantasy Flight Games/ElderSign}}' + - "{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/Fantasy Flight Games/ElderSign}}" + - "{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/Fantasy Flight Games/ElderSign}}" Elder Village: pageId: 149596 steam: 1126630 @@ -52793,9 +51324,9 @@ Elderborn: pageId: 73985 steam: 727850 templates: - - '{{Game data/config|Windows|{{P|userprofile}}\AppData\LocalLow\Hyperstrange\ELDERBORN\}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Hyperstrange\ELDERBORN\}}' -'Elderine: Dreams to Destiny': + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Hyperstrange\\ELDERBORN\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Hyperstrange\\ELDERBORN\\}}" +"Elderine: Dreams to Destiny": pageId: 56888 steam: 535350 Eldervale: @@ -52812,12 +51343,12 @@ Eldritch: pageId: 17365 steam: 252630 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Eldritch Reanimated\prefs.cfg}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Eldritch/prefs.cfg}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/Eldritch Reanimated/prefs.cfg}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\Eldritch Reanimated\main.eldritchmastersave}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Eldritch/main.eldritchmastersave}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/Eldritch Reanimated/main.eldritchmastersave}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\Eldritch Reanimated\\prefs.cfg}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Eldritch/prefs.cfg}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/Eldritch Reanimated/prefs.cfg}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Eldritch Reanimated\\main.eldritchmastersave}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Eldritch/main.eldritchmastersave}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/Eldritch Reanimated/main.eldritchmastersave}}" Eldritch Academy: pageId: 128515 steam: 1032580 @@ -52837,8 +51368,8 @@ Elea - Episode 1: pageId: 92075 steam: 812020 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Project_Elea\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\Project_Elea\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\Project_Elea\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Project_Elea\\Saved\\SaveGames\\}}" ElecHead: gog: 1940525359 gogSide: @@ -52849,15 +51380,15 @@ ElecHead: steamSide: - 1817690 templates: - - '{{Game data/config|Windows|{{P|steam}}\steamapps\common\ElecHead}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\ElecHead}}' + - "{{Game data/config|Windows|{{P|steam}}\\steamapps\\common\\ElecHead}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\ElecHead}}" Election simulator: pageId: 154059 steam: 1201350 Elections Simulator 2018: pageId: 89980 steam: 654650 -'ElectriX: Electro Mechanic Simulator': +"ElectriX: Electro Mechanic Simulator": pageId: 63867 steam: 652620 Electric Circuit: @@ -52869,19 +51400,19 @@ Electric Highways: Electric Sermon: pageId: 88844 steam: 801770 -'Electric Sheep: A Cyberpunk Dystopia': +"Electric Sheep: A Cyberpunk Dystopia": pageId: 145242 steam: 1116570 Electric Sleep: pageId: 127981 steam: 1011620 templates: - - '{{Game data/config|Windows|{{p|game}}/Player/save.soul}}' - - '{{Game data/config|OS X|{{p|game}}/Player/save.soul}}' - - '{{Game data/config|Linux|{{p|game}}/Player/save.soul}}' - - '{{Game data/saves|Windows|{{p|game}}/Player/}}' - - '{{Game data/saves|OS X|{{p|game}}/Player/}}' - - '{{Game data/saves|Linux|{{p|game}}/Player/}}' + - "{{Game data/config|Windows|{{p|game}}/Player/save.soul}}" + - "{{Game data/config|OS X|{{p|game}}/Player/save.soul}}" + - "{{Game data/config|Linux|{{p|game}}/Player/save.soul}}" + - "{{Game data/saves|Windows|{{p|game}}/Player/}}" + - "{{Game data/saves|OS X|{{p|game}}/Player/}}" + - "{{Game data/saves|Linux|{{p|game}}/Player/}}" Electric Zombies!: pageId: 33932 steam: 475060 @@ -52894,15 +51425,15 @@ ElectricVLab: Electrician Simulator: gog: 1998534507 gogSide: - - 2037143961 - 1250430229 + - 2037143961 pageId: 136434 steam: 1080020 steamSide: - 2329870 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Take IT Studio!\Electrician\}}' - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\Take IT Studio!\Electrician\{{p|uid}}\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Take IT Studio!\\Electrician\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\Take IT Studio!\\Electrician\\{{p|uid}}\\}}" Electro Pong VR: pageId: 66227 steam: 679050 @@ -52912,8 +51443,8 @@ Electro Ride: Electroman: pageId: 142590 templates: - - '{{Game data/config|DOS|{{p|game}}\config.dta}}' - - '{{Game data/saves|DOS|{{p|game}}\em.sav}}' + - "{{Game data/config|DOS|{{p|game}}\\config.dta}}" + - "{{Game data/saves|DOS|{{p|game}}\\em.sav}}" Electromaze Defense: pageId: 79908 steam: 769410 @@ -52924,28 +51455,28 @@ Electronic Super Joy: pageId: 11049 steam: 244870 templates: - - '{{Game data/config|Windows|{{P|HKCU}}\Software\Michael Todd Games\Electronic Super Joy\}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Michael Todd Games/Electronic Super Joy/}}' - - '{{Game data/saves|Windows|{{P|game}}\esj.sav}}' - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/244870/remote/esj.sav}}' + - "{{Game data/config|Windows|{{P|HKCU}}\\Software\\Michael Todd Games\\Electronic Super Joy\\}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Michael Todd Games/Electronic Super Joy/}}" + - "{{Game data/saves|Windows|{{P|game}}\\esj.sav}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/244870/remote/esj.sav}}" Electronic Super Joy 2: pageId: 141835 steam: 1113940 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Two and Thirty Software\ESJ2\}}' - - '{{Game data/saves|Windows|{{P|hkcu}}\Software\Two and Thirty Software\ESJ2\}}' -'Electronic Super Joy: Groove City': + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Two and Thirty Software\\ESJ2\\}}" + - "{{Game data/saves|Windows|{{P|hkcu}}\\Software\\Two and Thirty Software\\ESJ2\\}}" +"Electronic Super Joy: Groove City": pageId: 19246 steam: 301460 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Yazar Media Group\Groove City\}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Yazar Media Group/Groove City/}}' - - '{{Game data/saves|Windows|{{p|hkcu}}\Software\Yazar Media Group\Groove City\}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Yazar Media Group/Groove City/}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Yazar Media Group\\Groove City\\}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Yazar Media Group/Groove City/}}" + - "{{Game data/saves|Windows|{{p|hkcu}}\\Software\\Yazar Media Group\\Groove City\\}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Yazar Media Group/Groove City/}}" Electronics Circuits Simulator: pageId: 64262 steam: 657410 -'Electroquest: Resistance Is Futile': +"Electroquest: Resistance Is Futile": pageId: 93072 steam: 839540 Elegy for a Dead World: @@ -52967,7 +51498,7 @@ Element TD 2: pageId: 160040 steam: 1018830 templates: - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Element Studios\Element TD 2\}}' + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Element Studios\\Element TD 2\\}}" Element Z: pageId: 140834 steam: 973720 @@ -52975,9 +51506,9 @@ Element4l: pageId: 7670 steam: 235820 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\I-Illusions\element4l1}}' - - '{{Game data/saves|Windows|{{p|hkcu}}\Software\I-Illusions\element4l1}}' -'Element: Space': + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\I-Illusions\\element4l1}}" + - "{{Game data/saves|Windows|{{p|hkcu}}\\Software\\I-Illusions\\element4l1}}" +"Element: Space": pageId: 105295 steam: 887370 Elemental Combat: @@ -52995,16 +51526,16 @@ Elemental War: Elemental War 2: pageId: 182819 steam: 1063020 -'Elemental World Part 1: Rise of the Guardians': +"Elemental World Part 1: Rise of the Guardians": pageId: 73899 steam: 340140 -'Elemental: Fallen Enchantress': +"Elemental: Fallen Enchantress": gog: 1448989420 pageId: 36410 steam: 216390 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\My Games\FallenEnchantress\Prefs.ini}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\My Games\FallenEnchantress\Saves\}}' + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\My Games\\FallenEnchantress\\Prefs.ini}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\My Games\\FallenEnchantress\\Saves\\}}" Elementals: pageId: 151339 steam: 1174230 @@ -53021,37 +51552,37 @@ Elementium: pageId: 80992 steam: 783420 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Elementium\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\Elementium\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\Elementium\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Elementium\\Saved\\SaveGames\\}}" Elements: gog: 2053196692 pageId: 171588 steam: 1468110 Elements (1994): pageId: 171590 -'Elements II: Hearts of Light': +"Elements II: Hearts of Light": pageId: 34952 steam: 448640 templates: - - '{{Game data/config|Windows|{{p|game}}\E2.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\Save{{code|XX}}.rvdata2}}' + - "{{Game data/config|Windows|{{p|game}}\\E2.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\Save{{code|XX}}.rvdata2}}" Elements of Destruction: pageId: 186602 templates: - - '{{Game data/saves|Windows|{{P|programdata}}\Frozen Codebase LLC\Elements of Destruction\save\}}' + - "{{Game data/saves|Windows|{{P|programdata}}\\Frozen Codebase LLC\\Elements of Destruction\\save\\}}" Elements of War: pageId: 164667 templates: - - '{{Game data/config|Windows|{{p|game}}\Data\}}' - - '{{Game data/saves|Windows|{{p|game}}\Save\}}' -'Elements: Epic Heroes': + - "{{Game data/config|Windows|{{p|game}}\\Data\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\Save\\}}" +"Elements: Epic Heroes": pageId: 45190 steam: 410490 -'Elements: Soul of Fire': +"Elements: Soul of Fire": pageId: 35360 steam: 340650 templates: - - '{{Game data/saves|Windows|{{p|game}}\Save1.rxdata}}' + - "{{Game data/saves|Windows|{{p|game}}\\Save1.rxdata}}" Elems: pageId: 52259 steam: 528670 @@ -53064,7 +51595,7 @@ Elendia Ceus: Elephant Express VR: pageId: 54995 steam: 566170 -Elephants Can't Jump: +"Elephants Can't Jump": pageId: 128056 steam: 1009370 Elette Fragments: @@ -53074,8 +51605,8 @@ Eleusis: pageId: 11304 steam: 251310 templates: - - '{{Game data/config|Windows|{{p|game}}\Binaries\Win32}}' - - '{{Game data/saves|Windows|{{p|game}}\Binaries\Win32\SaveSystemNew.bin}}' + - "{{Game data/config|Windows|{{p|game}}\\Binaries\\Win32}}" + - "{{Game data/saves|Windows|{{p|game}}\\Binaries\\Win32\\SaveSystemNew.bin}}" Elevator Action -Returns- S-Tribute: pageId: 182729 steam: 1913680 @@ -53098,12 +51629,12 @@ Eleven Islands: pageId: 128007 steam: 1030530 templates: - - '{{Game data/config|Windows|{{P|appdata}}\JoyfulSoftware\ElevenIslands\}}' - - '{{Game data/saves|Windows|{{P|appdata}}\JoyfulSoftware\ElevenIslands\}}' + - "{{Game data/config|Windows|{{P|appdata}}\\JoyfulSoftware\\ElevenIslands\\}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\JoyfulSoftware\\ElevenIslands\\}}" Eleven Prophecies: pageId: 135469 steam: 1011720 -'Eleven: Table Tennis VR': +"Eleven: Table Tennis VR": pageId: 33559 steam: 488310 Elevenses: @@ -53114,10 +51645,10 @@ Elf: steam: 814630 Elf Bowling: pageId: 183655 -'Elf Bowling: Hawaiian Vacation': +"Elf Bowling: Hawaiian Vacation": pageId: 90849 steam: 15990 -'Elf Enchanter: Arousing Anima': +"Elf Enchanter: Arousing Anima": pageId: 166965 steam: 1031170 Elf Epizode One: @@ -53131,38 +51662,38 @@ Elf Manor: Elf-World (Three Kingdoms): pageId: 65047 steam: 658610 -Eliosi's Hunt: +"Eliosi's Hunt": pageId: 39701 steam: 494700 -'Elisa: Seduce the Innkeeper': +"Elisa: Seduce the Innkeeper": pageId: 70505 steam: 704690 -'Elisa: The Innkeeper': +"Elisa: The Innkeeper": pageId: 57807 steam: 576400 Elise the Devil: pageId: 70679 steam: 711990 templates: - - '{{Game data/saves|Windows|{{p|game}}\www\save\*}}' + - "{{Game data/saves|Windows|{{p|game}}\\www\\save\\*}}" Elite: pageId: 20153 Elite Archery: pageId: 121961 steam: 977110 -'Elite Battle : Rio': +"Elite Battle : Rio": pageId: 149989 steam: 1154860 Elite Dangerous: pageId: 17724 renamedFrom: - - 'Elite: Dangerous' + - "Elite: Dangerous" steam: 359320 steamSide: - 419270 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Frontier Developments\Elite Dangerous\}}' -'Elite Dangerous: Arena': + - "{{Game data/config|Windows|{{p|localappdata}}\\Frontier Developments\\Elite Dangerous\\}}" +"Elite Dangerous: Arena": pageId: 44599 steam: 443080 Elite Encounter: @@ -53171,10 +51702,10 @@ Elite Encounter: Elite Escape: pageId: 145207 steam: 1141990 -'Elite Soldier: 3D Shooter': +"Elite Soldier: 3D Shooter": pageId: 144679 steam: 1137220 -'Elite Warriors: Vietnam': +"Elite Warriors: Vietnam": gog: 1663498890 pageId: 57417 steam: 514140 @@ -53184,7 +51715,7 @@ Elite vs. Freedom: Elium - Prison Escape: pageId: 81711 steam: 680330 -'Elixir of Immortality II: The League of Immortality': +"Elixir of Immortality II: The League of Immortality": pageId: 94273 steam: 621090 Eliza: @@ -53192,8 +51723,8 @@ Eliza: pageId: 142935 steam: 716500 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\My Games\Eliza\{{P|uid}}\config.cfg}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\My Games\Eliza\{{P|uid}}\}}' + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\My Games\\Eliza\\{{P|uid}}\\config.cfg}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\My Games\\Eliza\\{{P|uid}}\\}}" Elizabeth Find M.D. - Diagnosis Mystery - Season 2: pageId: 40962 steam: 33790 @@ -53209,10 +51740,10 @@ Ellen: Ellen and the Degenerates RPG: pageId: 127365 steam: 1016970 -'Elleros Origins: Season I': +"Elleros Origins: Season I": pageId: 124090 steam: 989050 -'Elleros Origins: Wytchsun': +"Elleros Origins: Wytchsun": pageId: 135561 steam: 1068530 Ellie: @@ -53222,23 +51753,23 @@ Elliot Quest: pageId: 49361 steam: 293440 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Elliot Quest}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Elliot Quest/}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/Elliot Quest/}}' - - '{{Game data/config|Steam|{{p|Steam}}\userdata\{{p|uid}}\293440\remote\eq_settings.dat}}' - - '{{Game data/saves|Steam|{{p|Steam}}\userdata\{{p|uid}}\293440\remote\eq_save_*.dat}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Elliot Quest}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Elliot Quest/}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/Elliot Quest/}}" + - "{{Game data/config|Steam|{{p|Steam}}\\userdata\\{{p|uid}}\\293440\\remote\\eq_settings.dat}}" + - "{{Game data/saves|Steam|{{p|Steam}}\\userdata\\{{p|uid}}\\293440\\remote\\eq_save_*.dat}}" Ellipsis: pageId: 50954 steam: 514620 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\appdata\LocalLow\Salmi GmbH\Ellipsis\Saves}}' + - "{{Game data/saves|Windows|{{p|userprofile}}\\appdata\\LocalLow\\Salmi GmbH\\Ellipsis\\Saves}}" EllrLand: pageId: 180052 steam: 1265390 Elly The Jelly: pageId: 66119 steam: 681670 -'Elmarion: Dragon time': +"Elmarion: Dragon time": pageId: 150756 steam: 1152090 Elmia: @@ -53249,8 +51780,8 @@ Elminage Gothic: pageId: 34372 steam: 291960 templates: - - '{{Game data/saves|Windows|{{p|userprofile\documents}}\My Games\Ghostlight Ltd\Elminage Gothic\*.sav}}' -'Elminage Original: Priestess of Darkness and the Ring of the Gods': + - "{{Game data/saves|Windows|{{p|userprofile\\documents}}\\My Games\\Ghostlight Ltd\\Elminage Gothic\\*.sav}}" +"Elminage Original: Priestess of Darkness and the Ring of the Gods": pageId: 76939 steam: 618710 Elmo Loves ABCs: @@ -53259,8 +51790,8 @@ Elo Hell: pageId: 104113 steam: 655940 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\EloHell\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Steam|{{P|steam}}\userdata\68091703\655940\remote\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\EloHell\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Steam|{{P|steam}}\\userdata\\68091703\\655940\\remote\\}}" Elon Musk Simulator: pageId: 103725 steam: 852740 @@ -53273,7 +51804,7 @@ Elon Must - Road to Respect: Elon Simulator 2019: pageId: 141614 steam: 1116550 -'Elpida: Crônicas de uma guerreira': +"Elpida: Crônicas de uma guerreira": pageId: 135387 steam: 1069290 Else Heart.Break(): @@ -53281,9 +51812,9 @@ Else Heart.Break(): pageId: 31768 steam: 400110 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\SOFTWARE\Miman\Else Heartbreak\}}' - - '{{Game data/saves|Windows|{{p|game}}\ElseHeartbreak_Data\Saves\}}' -'Elsewhere High: Chapter 1 - A Visual Novel': + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\Miman\\Else Heartbreak\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\ElseHeartbreak_Data\\Saves\\}}" +"Elsewhere High: Chapter 1 - A Visual Novel": pageId: 57823 steam: 587570 Elsinore: @@ -53309,18 +51840,18 @@ Elven Legacy: pageId: 21992 steam: 25850 steamSide: - - 42950 - 25850 - - 42940 - - 42930 - 25880 + - 42930 + - 42940 + - 42950 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\Elven Legacy Profiles\Profiles\Profile.*\}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\Elven Legacy Profiles\Profiles\Profile.*\}}' + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\Elven Legacy Profiles\\Profiles\\Profile.*\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\Elven Legacy Profiles\\Profiles\\Profile.*\\}}" Elven Legend: pageId: 58997 steam: 593410 -'Elven Legend 2: The Bewitched Tree': +"Elven Legend 2: The Bewitched Tree": pageId: 62264 steam: 593540 Elven Love: @@ -53337,16 +51868,16 @@ Elves Adventure: Elves vs Goblins Defender: pageId: 52560 steam: 516740 -'Elvira II: The Jaws of Cerberus': +"Elvira II: The Jaws of Cerberus": gog: 1270268814 pageId: 147031 -'Elvira: Mistress of the Dark': +"Elvira: Mistress of the Dark": gog: 1403214533 pageId: 147029 Elysium VR: pageId: 98272 steam: 808790 -'Elysium: Blood Games': +"Elysium: Blood Games": pageId: 45085 steam: 430080 Em-A-Li: @@ -53359,14 +51890,14 @@ Embarrassed Shina-chan~ the Naked Wandering College Girl: pageId: 188537 steam: 2326780 templates: - - '{{Game data/saves|Windows|{{p|game}}\data\savedata\}}' + - "{{Game data/saves|Windows|{{p|game}}\\data\\savedata\\}}" Ember: gog: 1359042189 pageId: 38849 steam: 339580 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\Ember\options.xml}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\Ember\}}' + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\Ember\\options.xml}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\Ember\\}}" Ember Kaboom: pageId: 42722 steam: 451000 @@ -53389,8 +51920,8 @@ Embers of Mirrim: pageId: 58252 steam: 596080 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Creative Bytes Studios\EmbersofMirrim}}' - - '{{Game data/saves|Windows|{{P|steam}}\userdata\{{P|uid}}\596080\remote\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Creative Bytes Studios\\EmbersofMirrim}}" + - "{{Game data/saves|Windows|{{P|steam}}\\userdata\\{{P|uid}}\\596080\\remote\\}}" Embers of War: pageId: 69880 steam: 659530 @@ -53403,9 +51934,9 @@ Embr: steamSide: - 1363500 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Muse Games\FireProject}}' - - '{{Game data/saves|Windows|{{P|hkcu}}\Software\Muse Games\FireProject}}' -'Embrace of Ocean: Story of Hope': + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Muse Games\\FireProject}}" + - "{{Game data/saves|Windows|{{P|hkcu}}\\Software\\Muse Games\\FireProject}}" +"Embrace of Ocean: Story of Hope": pageId: 66428 steam: 676410 Embrace the Fear: @@ -53419,14 +51950,14 @@ Embracelet: pageId: 166011 steam: 1311510 templates: - - '{{Game data/saves|Windows|{{P|hkcu}}\Software\machineboy\Embracelet\}}' + - "{{Game data/saves|Windows|{{P|hkcu}}\\Software\\machineboy\\Embracelet\\}}" Emerald City Confidential: pageId: 41247 steam: 37260 Emerald Shores: pageId: 122054 steam: 970470 -'Emerge: Cities of the Apocalypse': +"Emerge: Cities of the Apocalypse": pageId: 43358 steam: 457600 EmergeNYC: @@ -53439,14 +51970,14 @@ Emergency 2012: pageId: 93484 steam: 40370 templates: - - '{{Game data/config|Windows|{{p|LOCALAPPDATA}}\Quadriga Games\Emergency 2012\em2012.cfg}}' - - '{{Game data/saves|Windows|{{p|LOCALAPPDATA}}\Quadriga Games\Emergency 2012\}}' + - "{{Game data/config|Windows|{{p|LOCALAPPDATA}}\\Quadriga Games\\Emergency 2012\\em2012.cfg}}" + - "{{Game data/saves|Windows|{{p|LOCALAPPDATA}}\\Quadriga Games\\Emergency 2012\\}}" Emergency 2014: pageId: 89348 steam: 260930 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Quadriga Games\Emergency 2014\em2014.cfg}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\Quadriga Games\Emergency 2014\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\Quadriga Games\\Emergency 2014\\em2014.cfg}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Quadriga Games\\Emergency 2014\\}}" Emergency 2016: pageId: 46056 steam: 404920 @@ -53454,37 +51985,37 @@ Emergency 2017: pageId: 52388 steam: 524110 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' -'Emergency 2: The Ultimate Fight for Life': + - "{{Game data/config|Windows|{{p|game}}\\}}" +"Emergency 2: The Ultimate Fight for Life": pageId: 93494 steam: 977840 templates: - - '{{Game data/config|Windows|{{p|HKCU}}\Software\sixteen tons entertainment\Emergency2}}' - - '{{Game data/saves|Windows|{{p|game}}\SaveGames\}}' - - '{{Game data/saves|Steam|{{p|userprofile}}\Saved Games\Emergency 2\savegames}}' -'Emergency 3: Mission:Life': + - "{{Game data/config|Windows|{{p|HKCU}}\\Software\\sixteen tons entertainment\\Emergency2}}" + - "{{Game data/saves|Windows|{{p|game}}\\SaveGames\\}}" + - "{{Game data/saves|Steam|{{p|userprofile}}\\Saved Games\\Emergency 2\\savegames}}" +"Emergency 3: Mission:Life": pageId: 78162 steam: 757200 templates: - - '{{Game data/config|Windows|{{p|game}}\em3.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\Data\Save\}}' -'Emergency 4: Global Fighters for Life': + - "{{Game data/config|Windows|{{p|game}}\\em3.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\Data\\Save\\}}" +"Emergency 4: Global Fighters for Life": pageId: 49595 steam: 323610 templates: - - '{{Game data/config|Windows|{{p|game}}\em4.cfg|{{p|game}}\Data\Specs\keys.xml}}' - - '{{Game data/saves|Windows|{{p|game}}\Data\Save\campaignprogress.xml}}' + - "{{Game data/config|Windows|{{p|game}}\\em4.cfg|{{p|game}}\\Data\\Specs\\keys.xml}}" + - "{{Game data/saves|Windows|{{p|game}}\\Data\\Save\\campaignprogress.xml}}" Emergency Robot Simulator: pageId: 95431 steam: 866280 Emergency Water Landing: pageId: 134821 steam: 1053920 -'Emergency: Fighters for Life': +"Emergency: Fighters for Life": pageId: 32547 templates: - - '{{Game data/saves|Windows|{{p|game}}\*.sav}}' -'Emerland Solitaire: Endless Journey': + - "{{Game data/saves|Windows|{{p|game}}\\*.sav}}" +"Emerland Solitaire: Endless Journey": pageId: 42287 steam: 501050 Emily Archer and the Curse of Tutankhamun: @@ -53496,22 +52027,22 @@ Emily Is Away: - Emily is Away steam: 417860 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\SOFTWARE\Kyle Seeley\Emily Is Away\}}' - - '{{Game data/saves|Windows|{{p|hkcu}}\SOFTWARE\Kyle Seeley\Emily Is Away\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\Kyle Seeley\\Emily Is Away\\}}" + - "{{Game data/saves|Windows|{{p|hkcu}}\\SOFTWARE\\Kyle Seeley\\Emily Is Away\\}}" Emily Is Away 3: pageId: 137428 renamedFrom: - Emily is Away 3 steam: 978460 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\KyleSeeley\Facenook - Welcome to Facenook}}' + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\KyleSeeley\\Facenook - Welcome to Facenook}}" Emily Is Away Too: pageId: 58172 renamedFrom: - Emily is Away Too steam: 523780 templates: - - '{{Game data/saves|Windows|{{p|hkcu}}\SOFTWARE\KyleSeeley\Emily Is Away Too\}}' + - "{{Game data/saves|Windows|{{p|hkcu}}\\SOFTWARE\\KyleSeeley\\Emily Is Away Too\\}}" Emily Wants to Play: pageId: 45338 steam: 416590 @@ -53519,12 +52050,12 @@ Emily Wants to Play Too: pageId: 74700 steam: 652190 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\EWTP_Too}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\EWTP_Too}}' -Emily's Adventure: + - "{{Game data/config|Windows|{{p|localappdata}}\\EWTP_Too}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\EWTP_Too}}" +"Emily's Adventure": pageId: 100194 steam: 888550 -'Emily: Displaced': +"Emily: Displaced": pageId: 42077 steam: 481950 Emission VR: @@ -53533,12 +52064,12 @@ Emission VR: Emitters: pageId: 121004 steam: 920640 -'Emma: The Story': +"Emma: The Story": pageId: 94413 steam: 831720 Emmanuelle: pageId: 175952 -'Emmerholt: Prologue': +"Emmerholt: Prologue": pageId: 57968 steam: 422500 Emo Simulator: @@ -53555,12 +52086,12 @@ Emoji Charades: Emoji TD: pageId: 134523 steam: 1058220 -'Empathy: Path of Whispers': +"Empathy: Path of Whispers": pageId: 39652 steam: 291690 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Empathy\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Empathy\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Empathy\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Empathy\\Saved\\SaveGames\\}}" Emperor Kingdom: pageId: 57078 steam: 585590 @@ -53568,19 +52099,19 @@ Emperor of the Fading Suns: gog: 1886767424 pageId: 164535 templates: - - '{{Game data/config|Windows|{{p|game}}\DAT\EFS.INI}}' - - '{{Game data/saves|Windows|{{p|game}}\SAV}}' -'Emperor: Battle for Dune': + - "{{Game data/config|Windows|{{p|game}}\\DAT\\EFS.INI}}" + - "{{Game data/saves|Windows|{{p|game}}\\SAV}}" +"Emperor: Battle for Dune": pageId: 36026 templates: - - '{{Game data/config|Windows|{{p|hklm}}\SOFTWARE\{{p|wow64}}\Westwood\Emperor\Options\}}' - - '{{Game data/saves|Windows|{{p|game}}\DATA\saves\}}' -'Emperor: Rise of the Middle Kingdom': + - "{{Game data/config|Windows|{{p|hklm}}\\SOFTWARE\\{{p|wow64}}\\Westwood\\Emperor\\Options\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\DATA\\saves\\}}" +"Emperor: Rise of the Middle Kingdom": gog: 1598055675 pageId: 17691 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/saves|Windows|{{p|game}}\Save}}' + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\Save}}" Empire: pageId: 103201 steam: 889520 @@ -53601,8 +52132,8 @@ Empire Earth: - 3770 - 3780 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\SOFTWARE\SSSI\Empire Earth}}' - - '{{Game data/saves|Windows|{{p|game}}\Data\Saved Games}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\SSSI\\Empire Earth}}" + - "{{Game data/saves|Windows|{{p|game}}\\Data\\Saved Games}}" Empire Earth II: gog: 1207658844 pageId: 9412 @@ -53611,8 +52142,8 @@ Empire Earth II: - 63300 - 63310 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Sierra\Empire Earth II\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Empire Earth II\savegame_SP}}' + - "{{Game data/config|Windows|{{p|appdata}}\\Sierra\\Empire Earth II\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Empire Earth II\\savegame_SP}}" Empire Earth III: gog: 1207658859 pageId: 9413 @@ -53620,8 +52151,8 @@ Empire Earth III: steamSide: - 63370 templates: - - '{{Game data/config|Windows|{{p|userprofile\documents}}\Empire Earth III\profiles\{{p|uid}}\profile.xml}}' - - '{{Game data/saves|Windows|{{p|userprofile\documents}}\Empire Earth III\profiles\}}' + - "{{Game data/config|Windows|{{p|userprofile\\documents}}\\Empire Earth III\\profiles\\{{p|uid}}\\profile.xml}}" + - "{{Game data/saves|Windows|{{p|userprofile\\documents}}\\Empire Earth III\\profiles\\}}" Empire Live: pageId: 150990 steam: 1153470 @@ -53632,8 +52163,8 @@ Empire TV Tycoon: pageId: 45992 steam: 377900 templates: - - '{{Game data/config|Windows|{{p|userprofile\appdata\locallow}}\Dreamsite Games\Empire TV Tycoon}}' - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\Dreamsite Games\Empire TV Tycoon\savegames}}' + - "{{Game data/config|Windows|{{p|userprofile\\appdata\\locallow}}\\Dreamsite Games\\Empire TV Tycoon}}" + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\Dreamsite Games\\Empire TV Tycoon\\savegames}}" Empire of Angels IV: pageId: 55155 steam: 562470 @@ -53650,8 +52181,8 @@ Empire of the Ants: gog: 1463618755 pageId: 24719 templates: - - '{{Game data/config|Windows|{{p|game}}\ini\}}' - - '{{Game data/saves|Windows|{{p|game}}\Savegame\}}' + - "{{Game data/config|Windows|{{p|game}}\\ini\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\Savegame\\}}" Empire of the Ants (2024): gog: 2108847100 pageId: 184759 @@ -53665,7 +52196,7 @@ Empire of the Fallen Steel: Empire of the Gods: pageId: 44808 steam: 436140 -'Empire: Total War': +"Empire: Total War": pageId: 253 steam: 10500 steamSide: @@ -53679,14 +52210,12 @@ Empire of the Gods: - 10608 - 206523 templates: - - '{{Game data/config|Windows|{{p|appdata}}\The Creative Assembly\Empire\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Feral Interactive/Empire Total War/AppData/}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/feral-interactive/Empire/AppData/}}' - - '{{Game data/saves|Windows|{{p|appdata}}\The Creative Assembly\Empire\save_games\}}' - - >- - {{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Feral Interactive/Empire Total - War/AppData/save_games/}} - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/feral-interactive/Empire/AppData/save_games/}}' + - "{{Game data/config|Windows|{{p|appdata}}\\The Creative Assembly\\Empire\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Feral Interactive/Empire Total War/AppData/}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/feral-interactive/Empire/AppData/}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\The Creative Assembly\\Empire\\save_games\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Feral Interactive/Empire Total War/AppData/save_games/}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/feral-interactive/Empire/AppData/save_games/}}" Empires: pageId: 38313 steam: 17740 @@ -53707,24 +52236,24 @@ Empires of the Undergrowth: pageId: 61558 steam: 463530 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\EotU\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\EotU\Saved\SaveGames\}}' -'Empires: Dawn of the Modern World': + - "{{Game data/config|Windows|{{p|localappdata}}\\EotU\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\EotU\\Saved\\SaveGames\\}}" +"Empires: Dawn of the Modern World": gog: 1669042393 pageId: 24429 steam: 2690 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\SSSI\Empires\}}' - - '{{Game data/saves|Windows|{{p|game}}\Data\Saved Games}}' -'Empires:The Rise': + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\SSSI\\Empires\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\Data\\Saved Games}}" +"Empires:The Rise": pageId: 121988 steam: 973390 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\拇指时代\帝国:崛起\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\拇指时代\\帝国:崛起\\}}" Employee Recycling Center: pageId: 62219 steam: 629030 -'Emporea: Realms of War and Magic': +"Emporea: Realms of War and Magic": pageId: 33734 steam: 416450 Emporium: @@ -53733,10 +52262,10 @@ Emporium: Empress of Gold: pageId: 74582 steam: 705920 -'Empress of the Deep 2: Song of the Blue Whale': +"Empress of the Deep 2: Song of the Blue Whale": pageId: 50304 steam: 299160 -'Empress of the Deep: The Darkest Secret': +"Empress of the Deep: The Darkest Secret": pageId: 50306 steam: 299150 Empty Handed: @@ -53754,7 +52283,7 @@ Empty Soul: Empty Town: pageId: 94350 steam: 779620 -'Empyre: Lords of the Sea Gates': +"Empyre: Lords of the Sea Gates": pageId: 70521 steam: 696810 Empyrean: @@ -53767,8 +52296,8 @@ Empyrion - Galactic Survival: pageId: 27173 steam: 383120 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\SOFTWARE\Eleon Game Studios\Empyrion - Galactic Survival\}}' - - '{{Game data/saves|Windows|{{P|game}}\Saves\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\SOFTWARE\\Eleon Game Studios\\Empyrion - Galactic Survival\\}}" + - "{{Game data/saves|Windows|{{P|game}}\\Saves\\}}" Emu War!: pageId: 156607 steam: 1031650 @@ -53778,8 +52307,8 @@ En Garde!: steamSide: - 2244510 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\EnGarde\Saved\Config\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\EnGarde\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\EnGarde\\Saved\\Config\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\EnGarde\\Saved\\SaveGames\\}}" En Tactico: pageId: 91064 steam: 833390 @@ -53797,10 +52326,10 @@ Encased: pageId: 113750 steam: 921800 templates: - - '{{Game data/config|Windows|{{P|userprofile}}\AppData\LocalLow\Dark Crystal Games\Encased\}}' - - '{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/Dark Crystal Games/Encased/}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Dark Crystal Games\Encased\UserProfiles\}}' - - '{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/Dark Crystal Games/Encased/UserProfiles}}' + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Dark Crystal Games\\Encased\\}}" + - "{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/Dark Crystal Games/Encased/}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Dark Crystal Games\\Encased\\UserProfiles\\}}" + - "{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/Dark Crystal Games/Encased/UserProfiles}}" Enceladus: pageId: 74882 steam: 710960 @@ -53814,30 +52343,30 @@ Enclave: pageId: 9333 steam: 253980 templates: - - '{{Game data/config|Windows|{{p|game}}\environment.cfg|{{p|game}}\options.cfg|{{p|game}}\Config.mpp}}' - - '{{Game data/saves|Windows|{{p|game}}\Sbz1\Save}}' + - "{{Game data/config|Windows|{{p|game}}\\environment.cfg|{{p|game}}\\options.cfg|{{p|game}}\\Config.mpp}}" + - "{{Game data/saves|Windows|{{p|game}}\\Sbz1\\Save}}" Enclosure: pageId: 178696 templates: - - '{{Game data/config|Windows|{{P|game}}\*.ini}}' - - '{{Game data/saves|Windows|{{P|game}}\sg.*}}' + - "{{Game data/config|Windows|{{P|game}}\\*.ini}}" + - "{{Game data/saves|Windows|{{P|game}}\\sg.*}}" Enclosure 3-D: pageId: 178681 steam: 2128440 templates: - - '{{Game data/config|Windows|{{P|game}}\enclosure3d.ini}}' - - '{{Game data/config|OS X|{{P|game}}/Enclosure 3-D.app/Contents/Resources/enclosure3d.ini}}' - - '{{Game data/config|Linux|{{P|game}}/enclosure3d.ini}}' - - '{{Game data/saves|Windows|{{P|appdata}}\Enclosure 3-D\}}' - - '{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/Enclosure 3-D/}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/Enclosure 3-D/}}' + - "{{Game data/config|Windows|{{P|game}}\\enclosure3d.ini}}" + - "{{Game data/config|OS X|{{P|game}}/Enclosure 3-D.app/Contents/Resources/enclosure3d.ini}}" + - "{{Game data/config|Linux|{{P|game}}/enclosure3d.ini}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\Enclosure 3-D\\}}" + - "{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/Enclosure 3-D/}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/Enclosure 3-D/}}" Encodya: gog: 1903635931 pageId: 145520 steam: 1137450 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\SOFTWARE\chaosmonger studio\ENCODYA\}}' - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\chaosmonger studio\ENCODYA\ENCODYA_*.save}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\SOFTWARE\\chaosmonger studio\\ENCODYA\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\chaosmonger studio\\ENCODYA\\ENCODYA_*.save}}" Encompassed: pageId: 87926 steam: 807310 @@ -53889,28 +52418,28 @@ Endangered Proposition: Endciv: pageId: 43460 steam: 444650 -'Ender Lilies: Quietus of the Knights': +"Ender Lilies: Quietus of the Knights": pageId: 169181 steam: 1369630 templates: - - '{{Game data/saves|Windows|{{p|localappdata}}\EnderLilies\Saved\SaveGames}}' -'Ender Story: Chapter 1': + - "{{Game data/saves|Windows|{{p|localappdata}}\\EnderLilies\\Saved\\SaveGames}}" +"Ender Story: Chapter 1": pageId: 79127 steam: 760300 -'Enderal: Forgotten Stories': +"Enderal: Forgotten Stories": pageId: 114014 steam: 933480 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\My Games\Enderal\}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\My Games\Enderal\Saves}}' -'Enderal: Forgotten Stories (Special Edition)': + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\My Games\\Enderal\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\My Games\\Enderal\\Saves}}" +"Enderal: Forgotten Stories (Special Edition)": gog: 1708684988 gogSide: - 1226743732 pageId: 183545 steam: 976620 templates: - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Enderal Special Edition\Saves\}}' + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Enderal Special Edition\\Saves\\}}" Endersite: pageId: 93096 steam: 838220 @@ -53954,27 +52483,27 @@ Endless Dungeon: pageId: 168495 steam: 1485590 templates: - - '{{Game data/config|Windows|{{p|userprofile\AppData\LocalLow}}\AMPLITUDE Studios\ENDLESS Dungeon\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Endless Dungeon\SaveFiles\}}' -'Endless Fables 2: Frozen Path': + - "{{Game data/config|Windows|{{p|userprofile\\AppData\\LocalLow}}\\AMPLITUDE Studios\\ENDLESS Dungeon\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Endless Dungeon\\SaveFiles\\}}" +"Endless Fables 2: Frozen Path": pageId: 76010 steam: 699780 -'Endless Fables 3: Dark Moor': +"Endless Fables 3: Dark Moor": pageId: 103261 steam: 867050 templates: - - '{{Game data/config|Steam|{{p|steam}}/userdata/{{p|uid}}/867050/remote/profile|}}' - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/867050/remote/profile|}}' -'Endless Fables 4: Shadow Within': + - "{{Game data/config|Steam|{{p|steam}}/userdata/{{p|uid}}/867050/remote/profile|}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/867050/remote/profile|}}" +"Endless Fables 4: Shadow Within": pageId: 149221 steam: 1129030 -'Endless Fables: The Minotaur''s Curse': +"Endless Fables: The Minotaur's Curse": pageId: 54800 steam: 504000 Endless Fighter: pageId: 110346 steam: 925290 -'Endless Fun: The Battle for Peanuts': +"Endless Fun: The Battle for Peanuts": pageId: 90006 steam: 821810 Endless Horde: @@ -54016,10 +52545,10 @@ Endless Legend: - 988450 - 1523740 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Endless Legend\Users\{{p|uid}}\Registry.xml}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Endless Legend/Users/{{p|uid}}/Registry.xml}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Endless Legend\Save Files}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Endless Legend/Save Files}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Endless Legend\\Users\\{{p|uid}}\\Registry.xml}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Endless Legend/Users/{{p|uid}}/Registry.xml}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Endless Legend\\Save Files}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Endless Legend/Save Files}}" Endless Maneuver: pageId: 123560 steam: 979530 @@ -54053,31 +52582,25 @@ Endless Sky: pageId: 27587 steam: 404410 templates: - - '{{Game data/config|Linux|{{p|xdgdatahome}}/endless-sky/}}' - - '{{Game data/saves|Windows|{{p|appdata}}\endless-sky\saves\}}' - - '{{Game data/saves|Linux|{{p|xdgdatahome}}/endless-sky/saves/}}' + - "{{Game data/config|Linux|{{p|xdgdatahome}}/endless-sky/}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\endless-sky\\saves\\}}" + - "{{Game data/saves|Linux|{{p|xdgdatahome}}/endless-sky/saves/}}" Endless Space: gog: 1554020469 pageId: 2885 steam: 208140 templates: - - >- - {{Game data/config|Windows|{{p|hkcu}}\SOFTWARE\AMPLITUDE Studios\Endless - Space\|{{p|userprofile\Documents}}\Endless Space\Registry.xml}} - - >- - {{Game data/saves|Windows|{{p|userprofile\Documents}}\Endless Space\Users\|{{p|userprofile\Documents}}\Endless - Space\Save\}} - - >- - {{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Endless Space/Users/|~/Library/Application - Support/Endless Space/Disharmony/Save/}} - - '{{Game data/saves|Steam|{{p|userprofile\Documents}}\Endless Space\Save\Cloud\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\AMPLITUDE Studios\\Endless Space\\|{{p|userprofile\\Documents}}\\Endless Space\\Registry.xml}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Endless Space\\Users\\|{{p|userprofile\\Documents}}\\Endless Space\\Save\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Endless Space/Users/|~/Library/Application Support/Endless Space/Disharmony/Save/}}" + - "{{Game data/saves|Steam|{{p|userprofile\\Documents}}\\Endless Space\\Save\\Cloud\\}}" Endless Space 2: gog: 1861761170 pageId: 51151 steam: 392110 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Endless Space 2\Users\{{p|uid}}\Registry.xml}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Endless Space 2\Save Files}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Endless Space 2\\Users\\{{p|uid}}\\Registry.xml}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Endless Space 2\\Save Files}}" Endless Tower: pageId: 152761 steam: 1193700 @@ -54105,26 +52628,26 @@ EndlessHell: Endlessness: pageId: 80412 steam: 781650 -'Endling: Extinction Is Forever': +"Endling: Extinction Is Forever": gog: 2076457657 pageId: 105677 renamedFrom: - Endling steam: 898890 templates: - - '{{Game data/config|Windows|{{P|game}}\Endling\Config}}' + - "{{Game data/config|Windows|{{P|game}}\\Endling\\Config}}" Endoparasitic: pageId: 187223 steam: 2124780 templates: - - '{{Game data/config|Windows|{{file|{{p|appdata}}\Godot\app_userdata\Endoparasitic\settings.save}}}}' - - '{{Game data/saves|Windows|{{folder|{{p|appdata}}\Godot\app_userdata\Endoparasitic\saved_games}}}}' + - "{{Game data/config|Windows|{{file|{{p|appdata}}\\Godot\\app_userdata\\Endoparasitic\\settings.save}}}}" + - "{{Game data/saves|Windows|{{folder|{{p|appdata}}\\Godot\\app_userdata\\Endoparasitic\\saved_games}}}}" Endorlight: pageId: 31941 steam: 428430 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Endorlight\config.ini}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Endorlight\save data.ini}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Endorlight\\config.ini}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Endorlight\\save data.ini}}" Endurance: pageId: 80839 steam: 618260 @@ -54139,8 +52662,8 @@ Endzone - A World Apart: pageId: 151732 steam: 933820 templates: - - '{{Game data/config|Windows|{{P|userprofile}}\AppData\LocalLow\Gentlymad Studios\Endzone\config\Options.json}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Gentlymad Studios\Endzone\savegame}}' + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Gentlymad Studios\\Endzone\\config\\Options.json}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Gentlymad Studios\\Endzone\\savegame}}" Enemist: pageId: 120818 steam: 928790 @@ -54150,46 +52673,44 @@ Enemy: Enemy Engaged 2: pageId: 7762 steam: 1581200 -'Enemy Engaged: Apache vs Havoc': +"Enemy Engaged: Apache vs Havoc": gog: 1207658733 pageId: 7757 -'Enemy Engaged: RAH-66 Comanche versus Ka-52 Hokum': +"Enemy Engaged: RAH-66 Comanche versus Ka-52 Hokum": gog: 1207658761 pageId: 7759 Enemy Front: pageId: 17592 steam: 256190 templates: - - '{{Game data/config|Windows|{{p|game}}\system.cfg}}' - - >- - {{Game data/saves|Windows|{{p|userprofile}}\Saved Games\EnemyFront\Profiles\|{{p|userprofile}}\Saved - Games\EnemyFront\SaveGames\}} + - "{{Game data/config|Windows|{{p|game}}\\system.cfg}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Saved Games\\EnemyFront\\Profiles\\|{{p|userprofile}}\\Saved Games\\EnemyFront\\SaveGames\\}}" Enemy Mind: pageId: 16267 steam: 285840 templates: - - '{{Game data/config|Windows|{{p|appdata}}\EnemyMind\Local Store\settings.cfg}}' - - '{{Game data/saves|Windows|{{p|appdata}}\EnemyMind\Local Store\settings.cfg}}' + - "{{Game data/config|Windows|{{p|appdata}}\\EnemyMind\\Local Store\\settings.cfg}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\EnemyMind\\Local Store\\settings.cfg}}" Enemy Nations: pageId: 34651 Enemy On Board: pageId: 126472 steam: 999860 -'Enemy Territory: Quake Wars': +"Enemy Territory: Quake Wars": pageId: 14859 steam: 10000 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\id Software\Enemy Territory - QUAKE Wars\base}}' - - '{{Game data/config|OS X|{{P|osxhome}}/Library/Application Support/ETQW/base}}' - - '{{Game data/config|Linux|{{P|linuxhome}}/.etqwcl/base}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\id Software\Enemy Territory - QUAKE Wars\sdnet}}' - - '{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/ETQW/sdnet}}' - - '{{Game data/saves|Linux|{{P|linuxhome}}/.etqwcl/sdnet}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\id Software\\Enemy Territory - QUAKE Wars\\base}}" + - "{{Game data/config|OS X|{{P|osxhome}}/Library/Application Support/ETQW/base}}" + - "{{Game data/config|Linux|{{P|linuxhome}}/.etqwcl/base}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\id Software\\Enemy Territory - QUAKE Wars\\sdnet}}" + - "{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/ETQW/sdnet}}" + - "{{Game data/saves|Linux|{{P|linuxhome}}/.etqwcl/sdnet}}" Enemy Zero: pageId: 101553 templates: - - '{{Game data/config|Windows|{{p|game}}\EZERO.INI}}' - - '{{Game data/saves|Windows|{{p|game}}\VOICEREC.DAT}}' + - "{{Game data/config|Windows|{{p|game}}\\EZERO.INI}}" + - "{{Game data/saves|Windows|{{p|game}}\\VOICEREC.DAT}}" Energia: pageId: 58025 steam: 592040 @@ -54197,7 +52718,7 @@ Energy Balance: pageId: 47401 steam: 375010 templates: - - '{{Game data/saves|Linux|{{p|xdgconfighome}}/unity3d/Sometimes You/Energy Balance/}}' + - "{{Game data/saves|Linux|{{p|xdgconfighome}}/unity3d/Sometimes You/Energy Balance/}}" Energy Cycle: pageId: 38143 steam: 415960 @@ -54218,11 +52739,11 @@ Energy Nodes: Energy Shock: pageId: 122616 steam: 965120 -'Enforcer: Police Crime Action': +"Enforcer: Police Crime Action": pageId: 49448 steam: 318220 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\OdinGameStudio\Enforcer\DATA_Saves\PROFILE*.xml}}' + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\OdinGameStudio\\Enforcer\\DATA_Saves\\PROFILE*.xml}}" Engare: pageId: 56816 steam: 415170 @@ -54236,12 +52757,12 @@ English Country Tune: pageId: 7806 steam: 207570 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\increpare games\English Country Tune\}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/increpare/English Country Tune/}}' - - '{{Game data/config|Steam|{{p|steam}}/userdata/{{p|uid}}/207570/remote/save.txt}}' - - '{{Game data/saves|Windows|{{p|hkcu}}\Software\increpare games\English Country Tune\}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/increpare/English Country Tune/prefs}}' - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/207570/remote/save.txt}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\increpare games\\English Country Tune\\}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/increpare/English Country Tune/}}" + - "{{Game data/config|Steam|{{p|steam}}/userdata/{{p|uid}}/207570/remote/save.txt}}" + - "{{Game data/saves|Windows|{{p|hkcu}}\\Software\\increpare games\\English Country Tune\\}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/increpare/English Country Tune/prefs}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/207570/remote/save.txt}}" Engram: pageId: 125195 steam: 930360 @@ -54249,69 +52770,69 @@ Enigma: pageId: 39785 steam: 494100 templates: - - '{{Game data/config|Windows|{{Path|Game}}\ENIGMA.cf}}' - - '{{Game data/saves|Windows|{{Path|Game}}\savedata\}}' + - "{{Game data/config|Windows|{{Path|Game}}\\ENIGMA.cf}}" + - "{{Game data/saves|Windows|{{Path|Game}}\\savedata\\}}" Enigma Prison: pageId: 39654 steam: 500740 -'Enigma Sphere: Enhanced Edition': +"Enigma Sphere: Enhanced Edition": pageId: 59373 steam: 589080 -'Enigma: An Illusion Named Family': +"Enigma: An Illusion Named Family": pageId: 48431 steam: 355570 -'Enigmatis 2: The Mists of Ravenwood': +"Enigmatis 2: The Mists of Ravenwood": gog: 1604584366 pageId: 37112 steam: 284770 templates: - - '{{Game data/config|Steam|{{P|steam}}\userdata\{{P|uid}}\284770\remote\profile\}}' - - '{{Game data/saves|Steam|{{P|steam}}\userdata\{{P|uid}}\284770\remote\profile\}}' -'Enigmatis 3: The Shadow of Karkhala': + - "{{Game data/config|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\284770\\remote\\profile\\}}" + - "{{Game data/saves|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\284770\\remote\\profile\\}}" +"Enigmatis 3: The Shadow of Karkhala": gog: 1768228212 pageId: 35984 steam: 495110 templates: - - '{{Game data/config|Windows|{{P|appdata}}\ArtifexMundi\SparkPromo\steam.eni3.full\}}' - - '{{Game data/saves|Windows|{{p|steam}}\userdata\{{p|uid}}\495110\remote\profile\}}' -'Enigmatis: The Ghosts of Maple Creek': + - "{{Game data/config|Windows|{{P|appdata}}\\ArtifexMundi\\SparkPromo\\steam.eni3.full\\}}" + - "{{Game data/saves|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\495110\\remote\\profile\\}}" +"Enigmatis: The Ghosts of Maple Creek": gog: 1936959826 pageId: 49496 steam: 284750 templates: - - '{{Game data/config|Linux|{{p|linuxhome}}/.Artifex Mundi/Enigmatis_TheGhostOfMapleCreek/CE/profile}}' - - '{{Game data/config|Steam|{{P|steam}}\userdata\{{P|uid}}\284750\remote\profile\}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.Artifex Mundi/Enigmatis_TheGhostOfMapleCreek/CE/profile}}' - - '{{Game data/saves|Steam|{{P|steam}}\userdata\{{P|uid}}\284750\remote\profile\}}' + - "{{Game data/config|Linux|{{p|linuxhome}}/.Artifex Mundi/Enigmatis_TheGhostOfMapleCreek/CE/profile}}" + - "{{Game data/config|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\284750\\remote\\profile\\}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.Artifex Mundi/Enigmatis_TheGhostOfMapleCreek/CE/profile}}" + - "{{Game data/saves|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\284750\\remote\\profile\\}}" Enlightenment: pageId: 64626 steam: 663300 Enlisted: pageId: 167720 templates: - - '{{Game data/config|Windows|{{P|game}}\enlisted.config}}' + - "{{Game data/config|Windows|{{P|game}}\\enlisted.config}}" Enlysia: pageId: 65033 steam: 665670 -'Enoch: Underground': +"Enoch: Underground": pageId: 69743 steam: 703400 Enola: pageId: 49619 steam: 263520 -'Enshrouded World: Home Truths': +"Enshrouded World: Home Truths": pageId: 64823 steam: 658440 Ensign-1: pageId: 49333 steam: 312310 -'Enslaved: Odyssey to the West': +"Enslaved: Odyssey to the West": pageId: 11598 steam: 245280 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\UnrealEngine3\MonkeyGame\Config\}}' - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\245280\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\UnrealEngine3\MonkeyGame\SaveData\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\UnrealEngine3\\MonkeyGame\\Config\\}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\245280\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\UnrealEngine3\\MonkeyGame\\SaveData\\}}" Entangle: pageId: 57333 steam: 533580 @@ -54334,20 +52855,20 @@ Enter the Gungeon: pageId: 32112 steam: 311690 steamSide: - - 457841 - 457840 + - 457841 - 457842 templates: - - '{{Game data/config|Windows|{{P|userprofile}}\AppData\LocalLow\Dodge Roll\Enter the Gungeon\Slot*.options}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Dodge Roll/Enter the Gungeon}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Dodge Roll\Enter the Gungeon\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Dodge Roll/Enter the Gungeon}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Dodge Roll/Enter the Gungeon}}' + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Dodge Roll\\Enter the Gungeon\\Slot*.options}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Dodge Roll/Enter the Gungeon}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Dodge Roll\\Enter the Gungeon\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Dodge Roll/Enter the Gungeon}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Dodge Roll/Enter the Gungeon}}" Enter the Matrix: pageId: 14218 templates: - - '{{Game data/config|Windows|{{p|game}}\MatrixConfig.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\saved\}}' + - "{{Game data/config|Windows|{{p|game}}\\MatrixConfig.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\saved\\}}" EnterVR: pageId: 56766 steam: 574520 @@ -54360,23 +52881,23 @@ Entertainment Hero: Entity Researchers: pageId: 181137 steam: 1562230 -'Entomorph: Plague of the Darkfall': +"Entomorph: Plague of the Darkfall": gog: 1207659993 pageId: 14527 templates: - - '{{Game data/config|Windows|{{p|game}}\plague.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\*.DAT}}' + - "{{Game data/config|Windows|{{p|game}}\\plague.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\*.DAT}}" Entre-Deux: pageId: 92219 steam: 839750 -'Entre-Deux: Cursed': +"Entre-Deux: Cursed": pageId: 109934 steam: 918130 Entropia Universe: pageId: 10829 templates: - - '{{Game data/config|Windows|{{p|game}}\Entropia Universe\public_users_data\settings-ce.cfg}}' -'Entropic Float: This World Will Decay and Disappear': + - "{{Game data/config|Windows|{{p|game}}\\Entropia Universe\\public_users_data\\settings-ce.cfg}}" +"Entropic Float: This World Will Decay and Disappear": pageId: 180241 steam: 2011310 Entropic Shop VR: @@ -54391,25 +52912,25 @@ Entropy 2120: Entropy Rising: pageId: 45531 steam: 334830 -'Entropy: Zero': +"Entropy: Zero": pageId: 78940 steam: 714070 templates: - - '{{Game data/config|Windows|{{p|game}}\Entropy Zero\Entropy Zero\EntropyZero\cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\Entropy Zero\Entropy Zero\EntropyZero\save}}' -'Entropy: Zero 2': + - "{{Game data/config|Windows|{{p|game}}\\Entropy Zero\\Entropy Zero\\EntropyZero\\cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\Entropy Zero\\Entropy Zero\\EntropyZero\\save}}" +"Entropy: Zero 2": pageId: 181005 steam: 1583720 templates: - - '{{Game data/config|Steam|{{p|game}}/entropyzero2/cfg/}}' - - '{{Game data/saves|Steam|{{p|game}}/entropyzero2/save/}}' + - "{{Game data/config|Steam|{{p|game}}/entropyzero2/cfg/}}" + - "{{Game data/saves|Steam|{{p|game}}/entropyzero2/save/}}" Entschuldigung: pageId: 55242 steam: 570350 -'Entwined: Strings of Deception': +"Entwined: Strings of Deception": pageId: 64204 steam: 645420 -'Entwined: The Perfect Murder': +"Entwined: The Perfect Murder": pageId: 123762 steam: 683970 EnviroGolf: @@ -54419,10 +52940,8 @@ Environmental Station Alpha: pageId: 32931 steam: 350070 templates: - - '{{Game data/config|Windows|{{p|appdata}}\MMFApplications\ESA_Settings.txt}}' - - >- - {{Game - data/saves|Windows|{{p|appdata}}\MMFApplications\ESA_save.lar|{{p|appdata}}\MMFApplications\LMap*.arr|{{p|appdata}}\MMFApplications\Map*.arr}} + - "{{Game data/config|Windows|{{p|appdata}}\\MMFApplications\\ESA_Settings.txt}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\MMFApplications\\ESA_save.lar|{{p|appdata}}\\MMFApplications\\LMap*.arr|{{p|appdata}}\\MMFApplications\\Map*.arr}}" Envoy: pageId: 34968 steam: 447970 @@ -54445,8 +52964,8 @@ Eon Altar: pageId: 34454 steam: 382050 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Flying Helmet Games\Eon Altar\}}' - - '{{Game data/saves|Windows|{{p|USERPROFILE}}\AppData\LocalLow\Flying Helmet Games\Eon Altar\SavedGames\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Flying Helmet Games\\Eon Altar\\}}" + - "{{Game data/saves|Windows|{{p|USERPROFILE}}\\AppData\\LocalLow\\Flying Helmet Games\\Eon Altar\\SavedGames\\}}" Eon Fleet: pageId: 91949 steam: 838980 @@ -54456,38 +52975,38 @@ Eonia: Eons of War: pageId: 122790 steam: 947460 -'Eormor: Shattered Lands': +"Eormor: Shattered Lands": pageId: 142153 steam: 1098640 Epanalepsis: pageId: 25540 steam: 333690 templates: - - '{{Game data/saves|Windows|{{P|localappdata}}\Epanalepsis\IndexedDB}}' + - "{{Game data/saves|Windows|{{P|localappdata}}\\Epanalepsis\\IndexedDB}}" Ephemeral Tale: pageId: 154063 steam: 1204320 templates: - - '{{Game data/config|Windows|{{p|game}}\www\save\config.rpgsave}}' - - '{{Game data/saves|Windows|{{p|game}}\www\save\}}' + - "{{Game data/config|Windows|{{p|game}}\\www\\save\\config.rpgsave}}" + - "{{Game data/saves|Windows|{{p|game}}\\www\\save\\}}" Ephemeral Unnatural Balance: pageId: 144073 renamedFrom: - 東方逆妙乱 ~ Ephemeral Unnatural Balance steam: 834580 -'Ephemerid: A Musical Adventure': +"Ephemerid: A Musical Adventure": pageId: 37856 steam: 335920 Epic: gog: 2057791884 pageId: 16862 templates: - - '{{Game data/config|DOS|{{p|game}}\}}' - - '{{Game data/saves|DOS|{{p|game}}\}}' -'Epic Adventures: Cursed Onboard': + - "{{Game data/config|DOS|{{p|game}}\\}}" + - "{{Game data/saves|DOS|{{p|game}}\\}}" +"Epic Adventures: Cursed Onboard": pageId: 132406 steam: 1056080 -'Epic Adventures: La Jangada': +"Epic Adventures: La Jangada": pageId: 125761 steam: 1008320 Epic Arena: @@ -54497,25 +53016,19 @@ Epic Battle Fantasy 3: pageId: 37056 steam: 521200 templates: - - >- - {{Game data/config|Windows|{{p|APPDATA}}\EpicBattleFantasy3\Local - Store\#SharedObjects\Epic%20Battle%20Fantasy%203.swf\EBF3options.sol}} - - >- - {{Game data/saves|Windows|{{p|APPDATA}}\EpicBattleFantasy3\Local - Store\#SharedObjects\Epic%20Battle%20Fantasy%203.swf\}} + - "{{Game data/config|Windows|{{p|APPDATA}}\\EpicBattleFantasy3\\Local Store\\#SharedObjects\\Epic%20Battle%20Fantasy%203.swf\\EBF3options.sol}}" + - "{{Game data/saves|Windows|{{p|APPDATA}}\\EpicBattleFantasy3\\Local Store\\#SharedObjects\\Epic%20Battle%20Fantasy%203.swf\\}}" Epic Battle Fantasy 4: pageId: 37116 steam: 265610 templates: - - >- - {{Game data/saves|Windows|{{p|game}}\*.meow|{{p|appdata}}\Macromedia\Flash - Player\#SharedObjects\\localhost\Epic Battle Fantasy 4.swf\EBF4*.sol}} + - "{{Game data/saves|Windows|{{p|game}}\\*.meow|{{p|appdata}}\\Macromedia\\Flash Player\\#SharedObjects\\\\localhost\\Epic Battle Fantasy 4.swf\\EBF4*.sol}}" Epic Battle Fantasy 5: pageId: 108644 steam: 432350 templates: - - '{{Game data/config|Windows|{{p|steam}}\steamapps\common\Epic Battle Fantasy 5\options.meow}}' - - '{{Game data/saves|Windows|{{p|steam}}\steamapps\common\Epic Battle Fantasy 5}}' + - "{{Game data/config|Windows|{{p|steam}}\\steamapps\\common\\Epic Battle Fantasy 5\\options.meow}}" + - "{{Game data/saves|Windows|{{p|steam}}\\steamapps\\common\\Epic Battle Fantasy 5}}" Epic Battle Simulator 2: pageId: 74522 steam: 711570 @@ -54523,12 +53036,12 @@ Epic Car Factory: pageId: 79391 steam: 656510 templates: - - '{{Game data/config|Windows|{{P|steam}}\userdata\{{P|uid}}\656510\remote}}' - - '{{Game data/saves|Windows|{{P|steam}}\userdata\{{P|uid}}\656510\remote}}' + - "{{Game data/config|Windows|{{P|steam}}\\userdata\\{{P|uid}}\\656510\\remote}}" + - "{{Game data/saves|Windows|{{P|steam}}\\userdata\\{{P|uid}}\\656510\\remote}}" Epic Cards Battle: pageId: 47325 steam: 381560 -'Epic Cards Battle 2: Dragons Rising': +"Epic Cards Battle 2: Dragons Rising": pageId: 68402 steam: 687630 Epic Chef: @@ -54539,15 +53052,15 @@ Epic Clicker Journey: pageId: 43456 steam: 414730 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\PlayWay\Epic Clicker Journey\}}' - - '{{Game data/saves|Steam|{{P|steam}}\userdata\{{P|uid}}\414730\remote\data.dat}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\PlayWay\\Epic Clicker Journey\\}}" + - "{{Game data/saves|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\414730\\remote\\data.dat}}" Epic Conquest 2: pageId: 166453 steam: 1235360 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Epic Conquest 2\settings.save}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Epic Conquest 2\user_*}}' -'Epic Dumpster Bear: Dumpster Fire Redux': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Epic Conquest 2\\settings.save}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Epic Conquest 2\\user_*}}" +"Epic Dumpster Bear: Dumpster Fire Redux": pageId: 90540 steam: 701810 Epic Flail: @@ -54585,12 +53098,12 @@ Epic Manager: Epic Mayhem: pageId: 60299 steam: 612430 -'Epic Mickey 2: The Power of Two': +"Epic Mickey 2: The Power of Two": pageId: 31500 steam: 245300 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Disney Interactive Studios\Epic Mickey 2}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Disney Interactive Studios\Epic Mickey 2\Save}}' + - "{{Game data/config|Windows|{{p|appdata}}\\Disney Interactive Studios\\Epic Mickey 2}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Disney Interactive Studios\\Epic Mickey 2\\Save}}" Epic PVP Castles: pageId: 74544 steam: 727300 @@ -54598,8 +53111,8 @@ Epic Pinball: gog: 1965302672 pageId: 131802 templates: - - '{{Game data/config|DOS|{{Path|game}}\CONFIG.PIN}}' - - '{{Game data/saves|DOS|{{Path|game}}\HISCORE.PIN}}' + - "{{Game data/config|DOS|{{Path|game}}\\CONFIG.PIN}}" + - "{{Game data/saves|DOS|{{Path|game}}\\HISCORE.PIN}}" Epic Quest of the 4 Crystals: pageId: 37866 steam: 392940 @@ -54627,7 +53140,7 @@ Epic Snails: Epic Snowday Adventure: pageId: 88025 steam: 477190 -'Epic Space: Online': +"Epic Space: Online": pageId: 50300 steam: 293400 Epic Tavern: @@ -54640,13 +53153,13 @@ Epic World: Epic drag puZOOls: pageId: 94759 steam: 862320 -'Epic of Serinor: Dawnshadow': +"Epic of Serinor: Dawnshadow": pageId: 122514 steam: 978010 Epica: pageId: 51292 steam: 540370 -'Epics of Distant Realm: Remastered Edition': +"Epics of Distant Realm: Remastered Edition": pageId: 125225 steam: 999350 Epifrog: @@ -54656,7 +53169,7 @@ Epigenesis: pageId: 11942 steam: 244590 templates: - - '{{Game data/config|Windows|{{p|userprofile\documents}}\My Games\UnrealEngine3\LochGame\Config}}' + - "{{Game data/config|Windows|{{p|userprofile\\documents}}\\My Games\\UnrealEngine3\\LochGame\\Config}}" Epiphany!: pageId: 93936 steam: 790840 @@ -54673,14 +53186,12 @@ Epistory - Typing Chronicles: pageId: 34741 steam: 398850 templates: - - >- - {{Game data/config|Windows|{{P|hkcu}}\Software\Fishing Cactus\Epistory|{{P|userprofile\appdata\locallow}}\Fishing - Cactus\Epistory\}} - - '{{Game data/config|OS X|{{P|osxhome}}/Library/Application Support/unity.Fishing Cactus.Epistory/}}' - - '{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/Fishing Cactus/Epistory/}}' - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Fishing Cactus\Epistory\}}' - - '{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/unity.Fishing Cactus.Epistory/}}' - - '{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/Fishing Cactus/Epistory/}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Fishing Cactus\\Epistory|{{P|userprofile\\appdata\\locallow}}\\Fishing Cactus\\Epistory\\}}" + - "{{Game data/config|OS X|{{P|osxhome}}/Library/Application Support/unity.Fishing Cactus.Epistory/}}" + - "{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/Fishing Cactus/Epistory/}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Fishing Cactus\\Epistory\\}}" + - "{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/unity.Fishing Cactus.Epistory/}}" + - "{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/Fishing Cactus/Epistory/}}" Epitaph: pageId: 59677 steam: 582460 @@ -54691,7 +53202,7 @@ Epoch: pageId: 50137 steam: 270510 templates: - - '{{Game data/saves|Windows|{{P|game}}\UDKGame\EpochSave\}}' + - "{{Game data/saves|Windows|{{P|game}}\\UDKGame\\EpochSave\\}}" Epoch (2016): pageId: 43021 steam: 467910 @@ -54725,7 +53236,7 @@ Equilibrium of Divinity: Equilinox: pageId: 122164 steam: 853550 -'Equin: The Lantern': +"Equin: The Lantern": pageId: 52253 steam: 547980 Equivoque: @@ -54754,13 +53265,13 @@ Eradicator: pageId: 26857 steam: 329640 templates: - - '{{Game data/config|DOS|{{p|game}}\ERAD.CFG}}' - - '{{Game data/saves|DOS|{{p|game}}\ERAD**.SAV|{{p|game}}\PLAYER.DAT}}' + - "{{Game data/config|DOS|{{p|game}}\\ERAD.CFG}}" + - "{{Game data/saves|DOS|{{p|game}}\\ERAD**.SAV|{{p|game}}\\PLAYER.DAT}}" Eragon: pageId: 24144 templates: - - '{{Game data/config|Windows|{{p|game}}\Eragon.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\savegames\}}' + - "{{Game data/config|Windows|{{p|game}}\\Eragon.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\savegames\\}}" Erannorth Reborn: pageId: 132769 steam: 1055990 @@ -54770,21 +53281,21 @@ Eraser & Builder: EreaDrone Simulator: pageId: 96467 steam: 866260 -'Ereban: Shadow Legacy': +"Ereban: Shadow Legacy": pageId: 178397 steam: 1671360 -'Eredia: The Diary of Heroes': +"Eredia: The Diary of Heroes": pageId: 89597 steam: 713180 Erefia: pageId: 65255 steam: 673290 -Eremidia - Archivist's Curse: +"Eremidia - Archivist's Curse": pageId: 180833 steam: 2077550 templates: - - '{{Game data/saves|Windows|{{p|game}}\save\}}' -'Ergastulum: Dungeon Nightmares III': + - "{{Game data/saves|Windows|{{p|game}}\\save\\}}" +"Ergastulum: Dungeon Nightmares III": pageId: 76384 renamedFrom: - Ergastulum @@ -54806,7 +53317,7 @@ Eroico: pageId: 146034 steam: 947600 templates: - - '{{Game data/saves|Windows|{{p|game}}\cloud\}}' + - "{{Game data/saves|Windows|{{p|game}}\\cloud\\}}" Erolyn Chan Fight: pageId: 125494 steam: 990210 @@ -54841,7 +53352,7 @@ Errant Kingdom: Error143: pageId: 179904 steam: 2066550 -'Error: Human Not Found': +"Error: Human Not Found": pageId: 79330 steam: 771450 Ersatz: @@ -54856,24 +53367,24 @@ Eruption: Erusal: pageId: 41659 steam: 509230 -Erwin's Timewarp: +"Erwin's Timewarp": pageId: 46372 steam: 392690 -Eryi's Action: +"Eryi's Action": pageId: 38293 steam: 261700 Erzurum: pageId: 166296 steam: 1392060 templates: - - '{{Game data/saves|Windows|{{P|localappdata}}\MyProject\Saved\SaveGames\}}' + - "{{Game data/saves|Windows|{{P|localappdata}}\\MyProject\\Saved\\SaveGames\\}}" Esc-8-bit: pageId: 126090 steam: 1009220 -'Esc: From Planet': +"Esc: From Planet": pageId: 124159 steam: 985420 -'Escalation: Aggressors': +"Escalation: Aggressors": pageId: 156593 steam: 1184960 Escape: @@ -54889,14 +53400,14 @@ Escape Academy: pageId: 179482 steam: 1812090 templates: - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\CoinCrewGames\Escape Academy}}' + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\CoinCrewGames\\Escape Academy}}" Escape Architect VR: pageId: 144011 steam: 812610 Escape Artist: pageId: 98546 steam: 875640 -'Escape Artist: The Trial': +"Escape Artist: The Trial": pageId: 54580 steam: 553000 Escape Black Orion VR: @@ -54915,8 +53426,8 @@ Escape Dead Island: pageId: 20915 steam: 226560 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Fatshark\Escape Dead Island\}}' - - '{{Game data/saves|Windows|{{p|steam}}\userdata\{{p|uid}}\226560\remote\}}' + - "{{Game data/config|Windows|{{p|appdata}}\\Fatshark\\Escape Dead Island\\}}" + - "{{Game data/saves|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\226560\\remote\\}}" Escape Doodland: pageId: 65355 steam: 670930 @@ -54951,9 +53462,9 @@ Escape From Tethys: pageId: 96121 steam: 822540 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\EscapeFromTethys\Escape From Tethys}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\EscapeFromTethys\Escape From Tethys\}}' - - '{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/com.Whimsical.EscapeFromTethys/}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\EscapeFromTethys\\Escape From Tethys}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\EscapeFromTethys\\Escape From Tethys\\}}" + - "{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/com.Whimsical.EscapeFromTethys/}}" Escape From The Dragons: pageId: 122272 steam: 975770 @@ -54971,21 +53482,21 @@ Escape Goat: pageId: 6828 steam: 251370 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Escape Goat\}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/Escape Goat/}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Escape Goat\}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/Escape Goat/}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Escape Goat\\}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/Escape Goat/}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Escape Goat\\}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/Escape Goat/}}" Escape Goat 2: gog: 1207662523 pageId: 15709 steam: 255340 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Escape Goat 2\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Escape Goat 2/}}' - - '{{Game data/config|Linux|{{P|xdgconfighome}}/Escape Goat 2/}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Escape Goat 2\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Escape Goat 2/}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/Escape Goat 2/}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Escape Goat 2\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Escape Goat 2/}}" + - "{{Game data/config|Linux|{{P|xdgconfighome}}/Escape Goat 2/}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Escape Goat 2\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Escape Goat 2/}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/Escape Goat 2/}}" Escape Lala: pageId: 127671 steam: 909190 @@ -54995,7 +53506,7 @@ Escape Lala 2: Escape Legacy VR: pageId: 124205 steam: 995000 -'Escape Legacy: Ancient Scrolls': +"Escape Legacy: Ancient Scrolls": pageId: 121574 steam: 940300 Escape Lizards: @@ -55005,9 +53516,7 @@ Escape Machines: pageId: 26140 steam: 363490 templates: - - >- - {{Game data/saves|Windows|{{p|appdata}}\Macromedia\Flash - Player\#SharedObjects\{{p|uid}}\{{p|game}}\NEOScavenger.exe\EM.sol}} + - "{{Game data/saves|Windows|{{p|appdata}}\\Macromedia\\Flash Player\\#SharedObjects\\{{p|uid}}\\{{p|game}}\\NEOScavenger.exe\\EM.sol}}" Escape Mind: pageId: 148513 steam: 1138910 @@ -55031,37 +53540,35 @@ Escape Room VR: renamedFrom: - ESCAPE ROOM VR steam: 1210650 -'Escape Room VR: Stories': +"Escape Room VR: Stories": pageId: 87023 steam: 800380 -'Escape Room: Reality': +"Escape Room: Reality": pageId: 63960 steam: 652510 -'Escape Room: The Sick Colleague': +"Escape Room: The Sick Colleague": pageId: 171727 steam: 1301720 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\SOFTWARE\Bitbeast Games\Escape Room - The Sick Colleague}}' - - >- - {{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Bitbeast Games\Escape Room - The Sick - Colleague\*.json}} + - "{{Game data/config|Windows|{{P|hkcu}}\\SOFTWARE\\Bitbeast Games\\Escape Room - The Sick Colleague}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Bitbeast Games\\Escape Room - The Sick Colleague\\*.json}}" Escape Rosecliff Island: pageId: 41301 steam: 3600 templates: - - '{{Game data/config|Windows|{{P|appdata}}\SpinTop Games\Escape Rosecliff Island\options.mso}}' - - '{{Game data/saves|Windows|{{P|appdata}}\SpinTop Games\Escape Rosecliff Island\*.mse}}' + - "{{Game data/config|Windows|{{P|appdata}}\\SpinTop Games\\Escape Rosecliff Island\\options.mso}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\SpinTop Games\\Escape Rosecliff Island\\*.mse}}" Escape Simulator: pageId: 168266 steam: 1435790 steamSide: - 1538700 - 1942100 - - 2175260 - 2000170 + - 2175260 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Pine Studio\Escape Simulator\}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Pine Studio\Escape Simulator\EscapeSimulator-*.sav}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Pine Studio\\Escape Simulator\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Pine Studio\\Escape Simulator\\EscapeSimulator-*.sav}}" Escape Station: pageId: 40424 steam: 527360 @@ -55076,7 +53583,7 @@ Escape The Island: Escape The Labyrinth: pageId: 110014 steam: 920450 -'Escape The Lost Kingdom: The Forgotten Pharaoh': +"Escape The Lost Kingdom: The Forgotten Pharaoh": pageId: 50350 steam: 294390 Escape The Manor: @@ -55111,7 +53618,7 @@ Escape from BioStation: Escape from Chernobyl: pageId: 139270 steam: 1098700 -'Escape from Chernobyl: Jailbreak': +"Escape from Chernobyl: Jailbreak": pageId: 144518 steam: 1130430 Escape from Classroom: @@ -55139,8 +53646,8 @@ Escape from Monkey Island: pageId: 30778 steam: 730830 templates: - - '{{Game data/config|Windows|{{p|game}}\Saves\efmi.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\Saves\efmi*.gsv}}' + - "{{Game data/config|Windows|{{p|game}}\\Saves\\efmi.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\Saves\\efmi*.gsv}}" Escape from Naraka: gog: 1504984627 pageId: 173800 @@ -55168,29 +53675,27 @@ Escape from Pyramid: Escape from Ragor: pageId: 76491 templates: - - '{{Game data/saves|DOS|{{p|game}}\*.EGM}}' -'Escape from Ragor II: Megrim''s Rache': + - "{{Game data/saves|DOS|{{p|game}}\\*.EGM}}" +"Escape from Ragor II: Megrim's Rache": pageId: 76495 templates: - - '{{Game data/saves|DOS|{{p|game}}\*.EGM}}' + - "{{Game data/saves|DOS|{{p|game}}\\*.EGM}}" Escape from Space Shredder: pageId: 65991 steam: 681540 Escape from Tarkov: pageId: 75944 templates: - - >- - {{Game data/config|Windows|{{p|appdata}}\Battlestate Games\Escape from - Tarkov\Settings|{{p|hkcu}}\Software\Battlestate Games\EscapeFromTarkov}} + - "{{Game data/config|Windows|{{p|appdata}}\\Battlestate Games\\Escape from Tarkov\\Settings|{{p|hkcu}}\\Software\\Battlestate Games\\EscapeFromTarkov}}" Escape from Voyna: pageId: 91590 renamedFrom: - - 'Escape from Voyna: Tactical FPS Survival' + - "Escape from Voyna: Tactical FPS Survival" steam: 771400 -'Escape from Voyna: Aliens from Area 51': +"Escape from Voyna: Aliens from Area 51": pageId: 149716 renamedFrom: - - 'ESCAPE FROM VOYNA: ALIENS FROM AREA 51' + - "ESCAPE FROM VOYNA: ALIENS FROM AREA 51" steam: 1152280 Escape from Zellman Orbital: pageId: 40122 @@ -55260,22 +53765,22 @@ Escape until Friday: Escape!: pageId: 88081 steam: 806600 -'Escape: Close Call': +"Escape: Close Call": pageId: 43997 steam: 448380 -'Escape: Sierra Leone': +"Escape: Sierra Leone": pageId: 52954 steam: 440450 -'Escape: VR': +"Escape: VR": pageId: 61114 steam: 607440 EscapeRoute: pageId: 129669 steam: 1036030 -'EscapeVR: The Basement': +"EscapeVR: The Basement": pageId: 52916 steam: 552060 -'EscapeVR: Trapped above the Clouds': +"EscapeVR: Trapped above the Clouds": pageId: 76522 steam: 566970 EscapeeZ: @@ -55287,27 +53792,27 @@ Escargot: Escargot Kart: pageId: 35258 steam: 488070 -'Eschalon: Book I': +"Eschalon: Book I": gog: 1207659221 pageId: 16906 steam: 25600 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Eschalon Book 1 Saved Games\eschalon.cfg}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Eschalon Book 1 Saved Games\}}' -'Eschalon: Book II': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Eschalon Book 1 Saved Games\\eschalon.cfg}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Eschalon Book 1 Saved Games\\}}" +"Eschalon: Book II": gog: 1207659220 pageId: 16908 steam: 25620 templates: - - '{{Game data/config|Windows|{{P|game}}\general.cfg|{{P|appdata}}\Basilisk Games\Book 2 Saved Games\eb2.cfg}}' - - '{{Game data/saves|Windows|{{P|appdata}}\Basilisk Games\Book 2 Saved Games\slot*\}}' -'Eschalon: Book III': + - "{{Game data/config|Windows|{{P|game}}\\general.cfg|{{P|appdata}}\\Basilisk Games\\Book 2 Saved Games\\eb2.cfg}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\Basilisk Games\\Book 2 Saved Games\\slot*\\}}" +"Eschalon: Book III": gog: 1207660683 pageId: 16910 steam: 257870 templates: - - '{{Game data/config|Windows|{{P|game}}\general.cfg|{{P|appdata}}\Basilisk Games\Book 3 Saved Games\eb3.cfg}}' - - '{{Game data/saves|Windows|{{P|appdata}}\Basilisk Games\Book 3 Saved Games\slot*\}}' + - "{{Game data/config|Windows|{{P|game}}\\general.cfg|{{P|appdata}}\\Basilisk Games\\Book 3 Saved Games\\eb3.cfg}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\Basilisk Games\\Book 3 Saved Games\\slot*\\}}" Escort Commander: pageId: 78695 steam: 754110 @@ -55320,13 +53825,13 @@ Eseapner: Eselmir and the Five Magical Gifts: pageId: 66301 steam: 677850 -'Eskimo Bob: Starring Alfonzo': +"Eskimo Bob: Starring Alfonzo": pageId: 64056 steam: 651360 Eslander: pageId: 141853 steam: 1069250 -'Esoteria: Techno-Assassin of the Future': +"Esoteria: Techno-Assassin of the Future": pageId: 166543 España 1936: pageId: 172043 @@ -55338,7 +53843,7 @@ Esper - Make You Live Again: Esperia ~ Uprising of the Scarlet Witch ~: pageId: 154210 steam: 1138210 -'Espire 1: VR Operative': +"Espire 1: VR Operative": pageId: 72561 steam: 669290 Esport Test Toolkit (ETT): @@ -55356,7 +53861,7 @@ Espresso Tycoon: pageId: 182480 steam: 1543280 templates: - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\DreamWay Games\Espresso Tycoon\GameState}}' + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\DreamWay Games\\Espresso Tycoon\\GameState}}" Essays on Empathy: gog: 1580002481 pageId: 168176 @@ -55367,7 +53872,7 @@ Essence: Essence Defenders: pageId: 94324 steam: 755420 -'Essence of Illumination: The Beginning': +"Essence of Illumination: The Beginning": pageId: 88712 steam: 791880 Estellium Legends: @@ -55377,38 +53882,33 @@ Estencel: pageId: 188527 steam: 2025320 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Estencel\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Estencel\Saved\SaveGames\*.sav}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Estencel\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Estencel\\Saved\\SaveGames\\*.sav}}" Estiman: pageId: 53880 steam: 560220 -'Estranged: Act I': +"Estranged: Act I": pageId: 14390 steam: 261820 templates: - - '{{Game data/config|Windows|{{p|game}}\estrangedact1\cfg\}}' - - '{{Game data/config|OS X|{{p|game}}/estrangedact1/cfg/}}' - - '{{Game data/config|Linux|{{p|game}}/estrangedact1/cfg/}}' - - '{{Game data/saves|Windows|{{p|game}}\estrangedact1\save\}}' - - '{{Game data/saves|OS X|{{p|game}}/estrangedact1/save/}}' - - '{{Game data/saves|Linux|{{p|game}}/estrangedact1/save/}}' -'Estranged: The Departure': + - "{{Game data/config|Windows|{{p|game}}\\estrangedact1\\cfg\\}}" + - "{{Game data/config|OS X|{{p|game}}/estrangedact1/cfg/}}" + - "{{Game data/config|Linux|{{p|game}}/estrangedact1/cfg/}}" + - "{{Game data/saves|Windows|{{p|game}}\\estrangedact1\\save\\}}" + - "{{Game data/saves|OS X|{{p|game}}/estrangedact1/save/}}" + - "{{Game data/saves|Linux|{{p|game}}/estrangedact1/save/}}" +"Estranged: The Departure": pageId: 58374 renamedFrom: - - 'Estranged: Act II' + - "Estranged: Act II" steam: 582890 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Insulam\Saved\Config}}' - - >- - {{Game data/config|OS - X|{{p|osxhome}}/Library/Preferences/Insulam/MacNoEditor|~/Library/Containers/com.estranged.insulam/Data/Library/Preferences/Insulam/MacNoEditor}} - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/Epic/Insulam/Saved/Config/LinuxNoEditor}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Insulam\Saved\SaveGames\GameState}}' - - >- - {{Game data/saves|OS X|{{p|osxhome}}/Library/Application\ - Support/Epic/Insulam/Saved/SaveGames/GameState|~/Library/Containers/com.estranged.insulam/Data/Library/Application\ - Support/Epic/Insulam/Saved/SaveGames/GameState}} - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/Epic/Insulam/Saved/SaveGames/GameState}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Insulam\\Saved\\Config}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Preferences/Insulam/MacNoEditor|~/Library/Containers/com.estranged.insulam/Data/Library/Preferences/Insulam/MacNoEditor}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/Epic/Insulam/Saved/Config/LinuxNoEditor}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Insulam\\Saved\\SaveGames\\GameState}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application\\ Support/Epic/Insulam/Saved/SaveGames/GameState|~/Library/Containers/com.estranged.insulam/Data/Library/Application\\ Support/Epic/Insulam/Saved/SaveGames/GameState}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/Epic/Insulam/Saved/SaveGames/GameState}}" Eswoosh: pageId: 109080 steam: 863140 @@ -55419,10 +53919,8 @@ Eterium: pageId: 50444 steam: 280200 templates: - - >- - {{Game - data/config|Windows|{{p|userprofile\Documents}}\SavedGames\Eterium\Eterium\AllPlayers\LauncherSettings.xml}} - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\SavedGames\Eterium\Eterium\AllPlayers\EteriumSave}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\SavedGames\\Eterium\\Eterium\\AllPlayers\\LauncherSettings.xml}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\SavedGames\\Eterium\\Eterium\\AllPlayers\\EteriumSave}}" Eternal Battlefield: pageId: 153703 steam: 1193040 @@ -55433,12 +53931,8 @@ Eternal Champions: pageId: 30731 steam: 34288 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\SEGA Mega Drive - Classics\setup.dat|{{p|userprofile\Documents}}\SEGA Genesis Classics\setup.dat}} - - >- - {{Game data/saves|Windows|{{p|userprofile\Documents}}\SEGA Mega Drive - Classics\0016\|{{p|userprofile\Documents}}\SEGA Genesis Classics\0016\}} + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\SEGA Mega Drive Classics\\setup.dat|{{p|userprofile\\Documents}}\\SEGA Genesis Classics\\setup.dat}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\SEGA Mega Drive Classics\\0016\\|{{p|userprofile\\Documents}}\\SEGA Genesis Classics\\0016\\}}" Eternal Concord: pageId: 144482 steam: 1053820 @@ -55458,8 +53952,8 @@ Eternal Edge +: pageId: 130579 steam: 896440 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Righteous Weasel Games\Eternal Edge +}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\Righteous Weasel Games}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Righteous Weasel Games\\Eternal Edge +}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Righteous Weasel Games}}" Eternal Elements: pageId: 137028 steam: 1066930 @@ -55478,10 +53972,10 @@ Eternal Fantasy: Eternal Fate: pageId: 86840 steam: 317780 -'Eternal Hour: Golden Hour': +"Eternal Hour: Golden Hour": pageId: 76925 steam: 734910 -'Eternal Journey: New Atlantis': +"Eternal Journey: New Atlantis": pageId: 129729 steam: 1038630 Eternal Lands: @@ -55492,13 +53986,13 @@ Eternal Lore: Eternal Magic: pageId: 156793 steam: 1153700 -'Eternal Man: Forest': +"Eternal Man: Forest": pageId: 82027 steam: 786720 -'Eternal Man: Mountain': +"Eternal Man: Mountain": pageId: 90522 steam: 818480 -'Eternal Man: Village': +"Eternal Man: Village": pageId: 89379 steam: 808130 Eternal Maze: @@ -55510,26 +54004,24 @@ Eternal Radiance: - Destiny Chronicles steam: 923570 templates: - - >- - {{Game data/config|Windows|{{P|hkcu}}\SOFTWARE\Visualnoveler\Eternal - Radiance\|{{P|localappdata}}\Visualnoveler\Eternal Radiance\*.dat}} - - '{{Game data/saves|Windows|{{P|localappdata}}\Visualnoveler\Eternal Radiance\Saves\*.dat}}' -'Eternal Realm II: Dark Matter': + - "{{Game data/config|Windows|{{P|hkcu}}\\SOFTWARE\\Visualnoveler\\Eternal Radiance\\|{{P|localappdata}}\\Visualnoveler\\Eternal Radiance\\*.dat}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Visualnoveler\\Eternal Radiance\\Saves\\*.dat}}" +"Eternal Realm II: Dark Matter": pageId: 122086 steam: 974930 Eternal Return: pageId: 40179 steam: 528010 -'Eternal Return: Black Survival': +"Eternal Return: Black Survival": pageId: 136002 renamedFrom: - - 'Black Survival: Eternal Return' + - "Black Survival: Eternal Return" steam: 1049590 Eternal Senia: pageId: 37114 steam: 351640 templates: - - '{{Game data/saves|Windows|{{p|game}}\Save*.rvdata2}}' + - "{{Game data/saves|Windows|{{p|game}}\\Save*.rvdata2}}" Eternal Space Battles: pageId: 120921 steam: 926820 @@ -55544,11 +54036,11 @@ Eternal Threads: renamedFrom: - Second Chance steam: 1046790 -'Eternal War: Shadows of Light': +"Eternal War: Shadows of Light": pageId: 27521 templates: - - '{{Game data/config|Windows|{{p|game}}\ew\*.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\ew\*.sav}}' + - "{{Game data/config|Windows|{{p|game}}\\ew\\*.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\ew\\*.sav}}" Eternam: gog: 1341288701 pageId: 80601 @@ -55559,22 +54051,22 @@ Eternights: Eternity Warriors VR: pageId: 69687 steam: 664090 -Eternity's Child: +"Eternity's Child": pageId: 41346 steam: 19500 -'Eternity: The Last Unicorn': +"Eternity: The Last Unicorn": pageId: 92385 steam: 714250 Eternum EX: pageId: 105327 steam: 597900 -'Ethan: Meteor Hunter': +"Ethan: Meteor Hunter": gog: 1207659913 pageId: 11616 steam: 266330 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\EthanMeteorHunter\config.xml}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\EthanMeteorHunter\{{P|uid}}\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\EthanMeteorHunter\\config.xml}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\EthanMeteorHunter\\{{P|uid}}\\}}" Ethanol in dungeon: pageId: 135163 steam: 1070230 @@ -55589,43 +54081,41 @@ Ether One: pageId: 16265 steam: 265950 templates: - - '{{Game data/config|Windows|{{p|game}}\UDKGame\Config\}}' - - '{{Game data/saves|Windows|{{p|game}}\binaries\win32\*.bin}}' + - "{{Game data/config|Windows|{{p|game}}\\UDKGame\\Config\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\binaries\\win32\\*.bin}}" Ether One Redux: gog: 1207661343 pageId: 29455 steam: 391920 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\EtherOne\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\EtherOne\Saved\SaveGames\*.sav}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\EtherOne\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\EtherOne\\Saved\\SaveGames\\*.sav}}" Ether Vapor: pageId: 168974 templates: - - '{{Game data/config|Windows|{{p|game}}\Data\config.dat}}' - - '{{Game data/saves|Windows|{{p|game}}\Data\ranking.dat}}' + - "{{Game data/config|Windows|{{p|game}}\\Data\\config.dat}}" + - "{{Game data/saves|Windows|{{p|game}}\\Data\\ranking.dat}}" Ether Vapor Remaster: pageId: 40719 steam: 214570 templates: - - '{{Game data/config|Windows|{{p|appdata}}\EtherVapor\data\config.dat}}' - - '{{Game data/saves|Windows|{{p|appdata}}\EtherVapor\data\config.dat|{{p|appdata}}\EtherVapor\data\ranking.dat}}' + - "{{Game data/config|Windows|{{p|appdata}}\\EtherVapor\\data\\config.dat}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\EtherVapor\\data\\config.dat|{{p|appdata}}\\EtherVapor\\data\\ranking.dat}}" Etherborn: gog: 1413035173 pageId: 91262 steam: 812160 templates: - - >- - {{Game data/config|Windows|{{P|userprofile}}\AppData\LocalLow\Altered - Matter\Etherborn\GameOptions.txt|{{P|hkcu}}\Software\Altered Matter\Etherborn\}} - - '{{Game data/config|Steam|{{P|userprofile}}\AppData\LocalLow\Altered Matter\Etherborn\{{P|uid}}\GameOptions.txt}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Altered Matter\Etherborn\gameData*.dat}}' - - '{{Game data/saves|Steam|{{P|userprofile}}\AppData\LocalLow\Altered Matter\Etherborn\{{P|uid}}\gameData*.dat}}' + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Altered Matter\\Etherborn\\GameOptions.txt|{{P|hkcu}}\\Software\\Altered Matter\\Etherborn\\}}" + - "{{Game data/config|Steam|{{P|userprofile}}\\AppData\\LocalLow\\Altered Matter\\Etherborn\\{{P|uid}}\\GameOptions.txt}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Altered Matter\\Etherborn\\gameData*.dat}}" + - "{{Game data/saves|Steam|{{P|userprofile}}\\AppData\\LocalLow\\Altered Matter\\Etherborn\\{{P|uid}}\\gameData*.dat}}" Ethereal: pageId: 113128 steam: 751220 templates: - - '{{Game data/config|Windows|{{P|userprofile}}\AppData\LocalLow\Nonsense Arts\ETHEREAL\EtherealConfig.dat}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Nonsense Arts\ETHEREAL\EtherealSavedData.dat}}' + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Nonsense Arts\\ETHEREAL\\EtherealConfig.dat}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Nonsense Arts\\ETHEREAL\\EtherealSavedData.dat}}" Ethereal Enigma: pageId: 142323 steam: 1069760 @@ -55639,15 +54129,15 @@ Etherium: pageId: 23016 steam: 245370 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Tindalos Interactive\Etherium [v.1.0.9200] - win64 - Release}}' - - '{{Game data/saves|Windows|{{p|game}}\Etherium_Data\Saves\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Tindalos Interactive\\Etherium [v.1.0.9200] - win64 - Release}}" + - "{{Game data/saves|Windows|{{p|game}}\\Etherium_Data\\Saves\\}}" Etherlords: gog: 1207659112 pageId: 13968 steam: 270770 templates: - - '{{Game data/config|Windows|{{P|game}}\}}' - - '{{Game data/saves|Windows|{{P|game}}\Save\}}' + - "{{Game data/config|Windows|{{P|game}}\\}}" + - "{{Game data/saves|Windows|{{P|game}}\\Save\\}}" Etherlords II: gog: 1207659167 pageId: 13972 @@ -55656,20 +54146,20 @@ Etrian Odyssey HD: pageId: 185055 steam: 1868180 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\SEGA\Etrian Odyssey}}' - - '{{Game data/saves|Windows|{{p|appdata}}\SEGA\EOHD\Steam\{{P|uid}}}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\SEGA\\Etrian Odyssey}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\SEGA\\EOHD\\Steam\\{{P|uid}}}}" Etrian Odyssey II HD: pageId: 185056 steam: 1868170 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\SEGA\Etrian Odyssey 2}}' - - '{{Game data/saves|Windows|{{p|appdata}}\SEGA\EO2HD\Steam\{{P|uid}}}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\SEGA\\Etrian Odyssey 2}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\SEGA\\EO2HD\\Steam\\{{P|uid}}}}" Etrian Odyssey III HD: pageId: 185057 steam: 1810820 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\SEGA\Etrian Odyssey 3}}' - - '{{Game data/saves|Windows|{{p|appdata}}\SEGA\EO3HD\Steam\{{P|uid}}}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\SEGA\\Etrian Odyssey 3}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\SEGA\\EO3HD\\Steam\\{{P|uid}}}}" Euclidean: pageId: 46274 steam: 398180 @@ -55680,15 +54170,15 @@ Eufloria: pageId: 63 steam: 41210 templates: - - '{{Game data/config|Windows|{{p|game}}\Resources\user.settings}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/EufloriaHD/OptionsData.bin}}' - - '{{Game data/saves|Windows|{{p|game}}\Resources\user.settings}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/EufloriaHD/ProgressData.bin}}' + - "{{Game data/config|Windows|{{p|game}}\\Resources\\user.settings}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/EufloriaHD/OptionsData.bin}}" + - "{{Game data/saves|Windows|{{p|game}}\\Resources\\user.settings}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/EufloriaHD/ProgressData.bin}}" Eufloria HD: pageId: 38353 steam: 221180 templates: - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\EufloriaHD\}}' + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\EufloriaHD\\}}" Eugenics: pageId: 122682 steam: 935610 @@ -55704,10 +54194,10 @@ Euro Truck Simulator: steamSide: - 421800 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\Euro Truck Simulator\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Euro Truck Simulator/}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\Euro Truck Simulator\save\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Euro Truck Simulator/save/}}' + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\Euro Truck Simulator\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Euro Truck Simulator/}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\Euro Truck Simulator\\save\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Euro Truck Simulator/save/}}" Euro Truck Simulator 2: pageId: 4540 steam: 227300 @@ -55789,21 +54279,19 @@ Euro Truck Simulator 2: - 2004210 - 2604420 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Euro Truck Simulator 2\config.cfg}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Euro Truck Simulator 2/config.cfg}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/Euro Truck Simulator 2/config.cfg}}' - - '{{Game data/config|Steam|{{P|steam}}\userdata\{{P|uid}}\227300\remote\profiles\{{P|uid}}\config.cfg}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Euro Truck Simulator 2\profiles\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Euro Truck Simulator 2/profiles/}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/Euro Truck Simulator 2/profiles/}}' - - '{{Game data/saves|Steam|{{P|steam}}\userdata\{{P|uid}}\227300\remote\profiles\{{P|uid}}\save\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Euro Truck Simulator 2\\config.cfg}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Euro Truck Simulator 2/config.cfg}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/Euro Truck Simulator 2/config.cfg}}" + - "{{Game data/config|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\227300\\remote\\profiles\\{{P|uid}}\\config.cfg}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Euro Truck Simulator 2\\profiles\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Euro Truck Simulator 2/profiles/}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/Euro Truck Simulator 2/profiles/}}" + - "{{Game data/saves|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\227300\\remote\\profiles\\{{P|uid}}\\save\\}}" EuroCops: pageId: 186724 templates: - - |- - {{Game data/config|Windows|{{P|game}}\Scripts
- {{P|game}}\Controls}} - - '{{Game data/saves|Windows|{{P|game}}\SaveGame}}' + - "{{Game data/config|Windows|{{P|game}}\\Scripts
\n{{P|game}}\\Controls}}" + - "{{Game data/saves|Windows|{{P|game}}\\SaveGame}}" Eurobi Racing: pageId: 123958 steam: 982020 @@ -55811,21 +54299,21 @@ Eurofighter Typhoon: pageId: 29822 steam: 283350 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\SOFTWARE\digital image design\Typhoon}}' - - '{{Game data/saves|Windows|{{p|game}}\players\}}' -'Europa 1400: The Guild': + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\digital image design\\Typhoon}}" + - "{{Game data/saves|Windows|{{p|game}}\\players\\}}" +"Europa 1400: The Guild": gog: 1207658720 pageId: 13168 steam: 39520 templates: - - '{{Game data/config|Windows|{{p|game}}\game.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\resources\gamedata\Saves}}' + - "{{Game data/config|Windows|{{p|game}}\\game.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\resources\\gamedata\\Saves}}" Europa Universalis: gog: 1423228477 pageId: 23215 templates: - - '{{Game data/config|Windows|{{p|game}}\config|{{p|game}}\config.eu}}' - - '{{Game data/saves|Windows|{{p|game}}\Scenarios\Save Games}}' + - "{{Game data/config|Windows|{{p|game}}\\config|{{p|game}}\\config.eu}}" + - "{{Game data/saves|Windows|{{p|game}}\\Scenarios\\Save Games}}" Europa Universalis II: gog: 1428922775 pageId: 25667 @@ -55834,59 +54322,59 @@ Europa Universalis III: pageId: 3197 steam: 25800 templates: - - '{{Game data/saves|Windows|{{p|game}}\Save Games\}}' + - "{{Game data/saves|Windows|{{p|game}}\\Save Games\\}}" Europa Universalis IV: gog: 2057001589 pageId: 9100 steam: 236850 steamSide: - - 960920 - - 760070 - - 1259360 - - 827240 - - 721340 - - 538020 - - 486570 - - 436120 - - 373370 - - 338163 - - 338160 - - 310031 - - 279623 - - 279620 - 241369 - - 1264340 - - 827250 - - 721341 - - 538021 - - 486571 - - 436121 - - 373380 - - 373150 - - 338161 - - 768340 - - 617961 - - 617960 - - 834360 - 241373 + - 279620 + - 279623 + - 310031 + - 338160 + - 338161 + - 338163 + - 373150 + - 373370 + - 373380 - 414301 + - 436120 + - 436121 + - 486570 + - 486571 + - 538020 + - 538021 - 539260 + - 617960 + - 617961 - 625171 + - 721340 + - 721341 + - 760070 + - 768340 + - 827240 + - 827250 + - 834360 + - 960920 + - 1259360 + - 1264340 - 2223660 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Paradox Interactive\Europa Universalis IV\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Documents/Paradox Interactive/Europa Universalis IV/}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/Paradox Interactive/Europa Universalis IV/}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Paradox Interactive\Europa Universalis IV\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Documents/Paradox Interactive/Europa Universalis IV/}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/Paradox Interactive/Europa Universalis IV/}}' -'Europa Universalis: Rome': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Paradox Interactive\\Europa Universalis IV\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Documents/Paradox Interactive/Europa Universalis IV/}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/Paradox Interactive/Europa Universalis IV/}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Paradox Interactive\\Europa Universalis IV\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Documents/Paradox Interactive/Europa Universalis IV/}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/Paradox Interactive/Europa Universalis IV/}}" +"Europa Universalis: Rome": gog: 1428928921 pageId: 15539 steam: 23420 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/saves|Windows|{{p|game}}\save games\}}' + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\save games\\}}" Europe Racing: pageId: 88291 European Air War: @@ -55896,26 +54384,26 @@ European Air War: European Fishing: pageId: 49289 steam: 310640 -'European Mystery: Flowers of Death': +"European Mystery: Flowers of Death": pageId: 87920 renamedFrom: - - 'European Mystery: Flowers of Death Collector''s Edition' + - "European Mystery: Flowers of Death Collector's Edition" steam: 805040 -'European Mystery: Scent of Desire': +"European Mystery: Scent of Desire": pageId: 56906 renamedFrom: - - 'European Mystery: Scent of Desire Collector''s Edition' + - "European Mystery: Scent of Desire Collector's Edition" steam: 580480 -'European Mystery: The Face of Envy': +"European Mystery: The Face of Envy": pageId: 68875 renamedFrom: - - 'European Mystery: The Face of Envy Collector''s Edition' + - "European Mystery: The Face of Envy Collector's Edition" steam: 695950 European Ship Simulator: pageId: 48657 steam: 299250 templates: - - '{{Game data/saves|Windows|{{p|appdata}}\ESS}}' + - "{{Game data/saves|Windows|{{p|appdata}}\\ESS}}" European Super League: pageId: 155146 Eutergeläuter: @@ -55930,9 +54418,9 @@ Evacuation: steamSide: - 2236110 templates: - - '{{Game data/config|Windows|{{P|game}}\evacuation\cfg\}}' - - '{{Game data/saves|Windows|{{P|game}}\evacuation\save\}}' -Evan's Remains: + - "{{Game data/config|Windows|{{P|game}}\\evacuation\\cfg\\}}" + - "{{Game data/saves|Windows|{{P|game}}\\evacuation\\save\\}}" +"Evan's Remains": gog: 1575137789 gogSide: - 1413334634 @@ -55942,17 +54430,17 @@ Evan's Remains: steamSide: - 1340750 templates: - - '{{Game data/saves|Windows|{{P|localappdata}}\Evan_v_3_3_3}}' + - "{{Game data/saves|Windows|{{P|localappdata}}\\Evan_v_3_3_3}}" Evasion: pageId: 75159 steam: 683000 Eve of Destruction - REDUX: pageId: 50827 steam: 530160 -'Eve of Souls: Static Pod': +"Eve of Souls: Static Pod": pageId: 110246 steam: 923910 -'Eve: Burst Error': +"Eve: Burst Error": pageId: 164982 Evemnesis: pageId: 104559 @@ -55965,15 +54453,15 @@ Even the Ocean: pageId: 35034 steam: 265470 templates: - - '{{Game data/saves|Windows|{{p|appdata}}\AnalgesicProductionsLLC\EventheOcean\save}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Eventheocean/save}}' + - "{{Game data/saves|Windows|{{p|appdata}}\\AnalgesicProductionsLLC\\EventheOcean\\save}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Eventheocean/save}}" Evenicle: gog: 1522610028 pageId: 146032 steam: 955560 templates: - - '{{Game data/config|Windows|{{p|userprofile\documents}}\AliceSoft\Evenicle\SaveData}}' - - '{{Game data/saves|Windows|{{p|userprofile\documents}}\AliceSoft\Evenicle\SaveData}}' + - "{{Game data/config|Windows|{{p|userprofile\\documents}}\\AliceSoft\\Evenicle\\SaveData}}" + - "{{Game data/saves|Windows|{{p|userprofile\\documents}}\\AliceSoft\\Evenicle\\SaveData}}" Evenicle 2: gog: 1828449821 pageId: 178654 @@ -55995,9 +54483,9 @@ Event 0: pageId: 41429 steam: 470260 templates: - - '{{Game data/config|Windows|{{P|userprofile}}\AppData\LocalLow\Ocelot Society\Event[0]\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Ocelot Society\Event[0]}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Documents/cache/OcelotSociety/event0}}' + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Ocelot Society\\Event[0]\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Ocelot Society\\Event[0]}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Documents/cache/OcelotSociety/event0}}" Event Horizon: pageId: 43257 steam: 465000 @@ -56007,10 +54495,10 @@ Event Horizon - Frontier: Event-D: pageId: 124052 steam: 949670 -'Eventide 2: The Sorcerers Mirror': +"Eventide 2: The Sorcerers Mirror": pageId: 51410 steam: 510650 -'Eventide 3: Legacy of Legends': +"Eventide 3: Legacy of Legends": pageId: 72244 steam: 677020 Eventide Escape: @@ -56019,14 +54507,14 @@ Eventide Escape: Eventide Night: pageId: 61974 steam: 616030 -'Eventide: Slavic Fable': +"Eventide: Slavic Fable": pageId: 37197 steam: 406870 -'Ever 17: The Out of Infinity': +"Ever 17: The Out of Infinity": pageId: 178249 templates: - - '{{Game data/config|Windows|{{p|game}}\*.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\save}}' + - "{{Game data/config|Windows|{{p|game}}\\*.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\save}}" Ever Forward: gog: 1314559542 pageId: 162561 @@ -56048,7 +54536,7 @@ Everdream Valley: pageId: 187387 steam: 1403650 templates: - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\Untold Tales\Everdream Valley\Save}}' + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\Untold Tales\\Everdream Valley\\Save}}" Everest VR: pageId: 41894 steam: 384750 @@ -56056,20 +54544,20 @@ Evergarden: pageId: 104677 steam: 576500 templates: - - '{{Game data/config|Windows|{{P|userprofile}}\AppData\LocalLow\Flippfly\Evergarden}}' - - '{{Game data/saves|Windows|{{p|Steam}}\userdata\{{p|uid}}\576500\remote\}}' + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Flippfly\\Evergarden}}" + - "{{Game data/saves|Windows|{{p|Steam}}\\userdata\\{{p|uid}}\\576500\\remote\\}}" Evergate: pageId: 109000 steam: 845030 templates: - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\StoneLantern\Evergate}}' + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\StoneLantern\\Evergate}}" Everglow: pageId: 180099 steam: 1763150 templates: - - '{{Game data/saves|Windows|{{p|appdata}}\RenPy\everglow-1763150\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/RenPy/everglow-1763150/}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.renpy/everglow-1763150/}}' + - "{{Game data/saves|Windows|{{p|appdata}}\\RenPy\\everglow-1763150\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/RenPy/everglow-1763150/}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.renpy/everglow-1763150/}}" Evergreen Blues: pageId: 151173 steam: 1131870 @@ -56086,50 +54574,46 @@ Everhood: steamSide: - 1546510 templates: - - '{{Game data/config|Windows|{{P|userprofile\appdata\locallow}}\Foreign Gnomes\Everhood}}' - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Foreign Gnomes\Everhood\config}}' + - "{{Game data/config|Windows|{{P|userprofile\\appdata\\locallow}}\\Foreign Gnomes\\Everhood}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Foreign Gnomes\\Everhood\\config}}" Everlasting Summer: pageId: 21021 steam: 331470 templates: - - '{{Game data/saves|Windows|{{p|game}}\game\saves\}}' -'Everpath: A pixel art roguelite': + - "{{Game data/saves|Windows|{{p|game}}\\game\\saves\\}}" +"Everpath: A pixel art roguelite": pageId: 126067 steam: 1004560 -'Everreach: Project Eden': +"Everreach: Project Eden": pageId: 141620 steam: 915670 Eversion: pageId: 11419 steam: 33680 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Eversion/}}' - - '{{Game data/config|Linux|{{P|xdgconfighome}}/Eversion/}}' - - '{{Game data/saves|Windows|{{p|game}}\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Eversion/}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/Eversion/}}' + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Eversion/}}" + - "{{Game data/config|Linux|{{P|xdgconfighome}}/Eversion/}}" + - "{{Game data/saves|Windows|{{p|game}}\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Eversion/}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/Eversion/}}" Everslash: pageId: 150946 steam: 1152820 Everspace: gog: 1513949567 gogSide: - - 1706032184 - 1165094689 + - 1706032184 pageId: 36353 steam: 396750 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\RSG\Saved\Config\WindowsNoEditor}}' - - >- - {{Game data/config|Microsoft - Store|{{p|localappdata}}\Packages\ROCKFISHGames.EVERSPACE_wm11qtfe9fmzj\LocalState\RSG\Saved\Config\UWP}} - - '{{Game data/config|Linux|{{P|xdgconfighome}}/Epic/RSG/Saved/Config/LinuxNoEditor}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\RSG\Saved\SaveGames}}' - - >- - {{Game data/saves|Microsoft - Store|{{p|localappdata}}\Packages\ROCKFISHGames.EVERSPACE_wm11qtfe9fmzj\SystemAppData\wgs\}} - - '{{Game data/saves|Linux|{{P|xdgconfighome}}/Epic/RSG/Saved/SaveGames}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\RSG\\Saved\\Config\\WindowsNoEditor}}" + - "{{Game data/config|Microsoft Store|{{p|localappdata}}\\Packages\\ROCKFISHGames.EVERSPACE_wm11qtfe9fmzj\\LocalState\\RSG\\Saved\\Config\\UWP}}" + - "{{Game data/config|Linux|{{P|xdgconfighome}}/Epic/RSG/Saved/Config/LinuxNoEditor}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\RSG\\Saved\\SaveGames}}" + - "{{Game data/saves|Microsoft Store|{{p|localappdata}}\\Packages\\ROCKFISHGames.EVERSPACE_wm11qtfe9fmzj\\SystemAppData\\wgs\\}}" + - "{{Game data/saves|Linux|{{P|xdgconfighome}}/Epic/RSG/Saved/SaveGames}}" Everspace 2: gog: 1205406003 pageId: 143476 @@ -56137,12 +54621,10 @@ Everspace 2: steamSide: - 1312800 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\ES2\Saved\Config\WindowsNoEditor}}' - - '{{Game data/config|Microsoft Store|{{p|localappdata}}\ES2\Saved\Config\WinGDK}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\ES2\Saved\SaveGames}}' - - >- - {{Game data/saves|Microsoft - Store|{{P|localappdata}}\Packages\ROCKFISHGames.EVERSPACE2_wm11qtfe9fmzj\SystemAppData\wgs}} + - "{{Game data/config|Windows|{{P|localappdata}}\\ES2\\Saved\\Config\\WindowsNoEditor}}" + - "{{Game data/config|Microsoft Store|{{p|localappdata}}\\ES2\\Saved\\Config\\WinGDK}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\ES2\\Saved\\SaveGames}}" + - "{{Game data/saves|Microsoft Store|{{P|localappdata}}\\Packages\\ROCKFISHGames.EVERSPACE2_wm11qtfe9fmzj\\SystemAppData\\wgs}}" Evertown: pageId: 45031 steam: 432500 @@ -56155,30 +54637,30 @@ Evertried: steam: 1607040 Everwild: pageId: 162114 -Every Day's Different: +"Every Day's Different": pageId: 154440 steam: 1141600 Everybody Loves Skeletons: pageId: 144747 steam: 1100210 -Everybody's Gone to the Rapture: +"Everybody's Gone to the Rapture": pageId: 32010 steam: 417880 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\Saved Games\Rapture\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\Saved Games\Rapture\}}' -Everybody's sad: + - "{{Game data/config|Windows|{{p|userprofile}}\\Saved Games\\Rapture\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Saved Games\\Rapture\\}}" +"Everybody's sad": pageId: 126078 steam: 898080 Everyday Baseball VR: pageId: 109434 steam: 903620 -'Everyday Genius: SquareLogic': +"Everyday Genius: SquareLogic": pageId: 37179 steam: 32150 templates: - - '{{Game data/config|Steam|{{p|steam}}\userdata\{{P|uid}}\32150\remote\steamuser.sloptions}}' - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{P|uid}}\32150\remote\steamuser.playerProfile}}' + - "{{Game data/config|Steam|{{p|steam}}\\userdata\\{{P|uid}}\\32150\\remote\\steamuser.sloptions}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{P|uid}}\\32150\\remote\\steamuser.playerProfile}}" Everyday Golf VR: pageId: 63482 steam: 643590 @@ -56192,7 +54674,7 @@ Everyday Shooter: pageId: 15345 steam: 16300 templates: - - '{{Game data/config|Windows|{{p|game}}\data}}' + - "{{Game data/config|Windows|{{p|game}}\\data}}" Everyone Dies: pageId: 155841 steam: 1203560 @@ -56204,12 +54686,10 @@ Everything: pageId: 59665 steam: 582270 templates: - - >- - {{Game data/config|Windows|{{P|hkcu}}\Software\David OReilly\Everything\|{{p|userprofile}}\AppData\LocalLow\David - OReilly\Everything\Save Data\}} - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/unity.David OReilly.Everything/Save Data/}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\David OReilly\Everything\Save Data\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/unity.David OReilly.Everything/Save Data/}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\David OReilly\\Everything\\|{{p|userprofile}}\\AppData\\LocalLow\\David OReilly\\Everything\\Save Data\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/unity.David OReilly.Everything/Save Data/}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\David OReilly\\Everything\\Save Data\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/unity.David OReilly.Everything/Save Data/}}" Everything Must Fall: pageId: 61530 steam: 623800 @@ -56250,25 +54730,25 @@ Evil Come: Evil Dead: pageId: 91013 steam: 832030 -'Evil Dead: Hail to the King': +"Evil Dead: Hail to the King": pageId: 162103 templates: - - '{{Game data/config|Windows|{{p|game}}}}' - - '{{Game data/saves|Windows|{{p|game}}\slot*.eds}}' -'Evil Dead: Regeneration': + - "{{Game data/config|Windows|{{p|game}}}}" + - "{{Game data/saves|Windows|{{p|game}}\\slot*.eds}}" +"Evil Dead: Regeneration": pageId: 124770 -'Evil Dead: The Game': +"Evil Dead: The Game": pageId: 165645 steam: 1493750 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\EvilDead\Saved\Config\WindowsNoEditor}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\EvilDead\Saved\SaveGames}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\EvilDead\\Saved\\Config\\WindowsNoEditor}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\EvilDead\\Saved\\SaveGames}}" Evil Defenders: pageId: 45667 steam: 412520 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\Crazy Panda\Evil Defenders\profiles}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Crazy Panda\Evil Defenders\profiles}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Crazy Panda\\Evil Defenders\\profiles}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Crazy Panda\\Evil Defenders\\profiles}}" Evil Fire: pageId: 87247 steam: 783820 @@ -56277,13 +54757,13 @@ Evil Genius: pageId: 2020 steam: 3720 templates: - - '{{Game data/config|Windows|{{p|game}}\DynamicResources\Config}}' - - '{{Game data/saves|Windows|{{p|game}}\DynamicResources\Layouts\}}' -'Evil Genius 2: World Domination': + - "{{Game data/config|Windows|{{p|game}}\\DynamicResources\\Config}}" + - "{{Game data/saves|Windows|{{p|game}}\\DynamicResources\\Layouts\\}}" +"Evil Genius 2: World Domination": pageId: 138430 steam: 700600 templates: - - '{{Game data/saves|Windows|{{p|localappdata}}\Evil Genius 2\PC_ProfileSaves}}' + - "{{Game data/saves|Windows|{{p|localappdata}}\\Evil Genius 2\\PC_ProfileSaves}}" Evil Genome: pageId: 66211 steam: 635250 @@ -56293,12 +54773,12 @@ Evil Glitch: Evil Hazard: pageId: 46440 steam: 403440 -'Evil Islands: Curse of the Lost Soul': +"Evil Islands: Curse of the Lost Soul": gog: 1457950224 pageId: 35407 templates: - - '{{Game data/config|Windows|{{p|game}}\config}}' - - '{{Game data/saves|Windows|{{p|game}}\saves}}' + - "{{Game data/config|Windows|{{p|game}}\\config}}" + - "{{Game data/saves|Windows|{{p|game}}\\saves}}" Evil Labs: pageId: 67893 steam: 680860 @@ -56317,13 +54797,13 @@ Evil Park: Evil Possession: pageId: 62044 steam: 620700 -'Evil Pumpkin: The Lost Halloween': +"Evil Pumpkin: The Lost Halloween": pageId: 49955 steam: 300360 Evil Reap: pageId: 183795 steam: 894960 -'Evil Resistance: Morning of the Dead': +"Evil Resistance: Morning of the Dead": pageId: 80253 Evil Robot Traffic Jam HD: pageId: 36712 @@ -56337,7 +54817,7 @@ Evil Robots From N1M: Evil Spirits: pageId: 68112 steam: 690580 -'Evil Spring: Student Holidays': +"Evil Spring: Student Holidays": pageId: 100334 steam: 884170 Evil Star: @@ -56349,11 +54829,11 @@ Evil Tag: Evil Tonight: pageId: 178336 steam: 1480830 -'Evil Twin: Cyprien''s Chronicles': +"Evil Twin: Cyprien's Chronicles": pageId: 74038 templates: - - '{{Game data/config|Windows|{{p|game}}\save\Config.sav}}' - - '{{Game data/saves|Windows|{{p|game}}\save}}' + - "{{Game data/config|Windows|{{p|game}}\\save\\Config.sav}}" + - "{{Game data/saves|Windows|{{p|game}}\\save}}" Evil West: gog: 1636740686 gogSide: @@ -56363,8 +54843,8 @@ Evil West: steamSide: - 1997840 templates: - - '{{Game data/config|Windows|{{P|LOCALAPPDATA}}\HighMoon\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{P|LOCALAPPDATA}}\HighMoon\Saved\SaveGames\{{p|uid}}\}}' + - "{{Game data/config|Windows|{{P|LOCALAPPDATA}}\\HighMoon\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{P|LOCALAPPDATA}}\\HighMoon\\Saved\\SaveGames\\{{p|uid}}\\}}" Evil Wizard: gog: 1395418415 pageId: 175251 @@ -56376,8 +54856,8 @@ EvilQuest: pageId: 38195 steam: 263820 templates: - - '{{Game data/config|Windows|{{p|game}}\settings.dat}}' - - '{{Game data/saves|Windows|{{p|game}}\savedGame*.dat}}' + - "{{Game data/config|Windows|{{p|game}}\\settings.dat}}" + - "{{Game data/saves|Windows|{{p|game}}\\savedGame*.dat}}" Eville: pageId: 182481 steam: 1220170 @@ -56394,8 +54874,8 @@ Evochron Mercenary: pageId: 43 steam: 71000 templates: - - '{{Game data/config|Windows|C:\sw3dg\EvochronMercenary\sw.cfg}}' - - '{{Game data/saves|Windows|C:\sw3dg\EvochronMercenary}}' + - "{{Game data/config|Windows|C:\\sw3dg\\EvochronMercenary\\sw.cfg}}" + - "{{Game data/saves|Windows|C:\\sw3dg\\EvochronMercenary}}" Evoke: pageId: 121938 steam: 965730 @@ -56404,36 +54884,28 @@ Evoland: pageId: 6113 steam: 233470 templates: - - '{{Game data/config|Windows|{{p|appdata}}\com.shirogames.evoland\Local Store\#SharedObjects\game.dat\evoSave.sol}}' - - >- - {{Game data/config|OS X|{{p|osxhome}}/Library/Preferences/com.shirogames.evoland/Local - Store/#SharedObjects/game.dat}} - - >- - {{Game data/config|Linux|{{p|linuxhome}}/.config/Evoland/Pepper Data/Shockwave - Flash/WritableRoot/#SharedObjects/<...>/#localhost/game.dat/evoSave.sol}} - - '{{Game data/saves|Windows|{{p|appdata}}\com.shirogames.evoland\Local Store\#SharedObjects\game.dat\evoSave.sol}}' - - >- - {{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/com.shirogames.evoland/Local - Store/#SharedObjects/game.dat}} - - >- - {{Game data/saves|Linux|{{p|linuxhome}}/.config/Evoland/Pepper Data/Shockwave - Flash/WritableRoot/#SharedObjects/<...>/#localhost/game.dat/evoSave.sol}} + - "{{Game data/config|Windows|{{p|appdata}}\\com.shirogames.evoland\\Local Store\\#SharedObjects\\game.dat\\evoSave.sol}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Preferences/com.shirogames.evoland/Local Store/#SharedObjects/game.dat}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/Evoland/Pepper Data/Shockwave Flash/WritableRoot/#SharedObjects/<...>/#localhost/game.dat/evoSave.sol}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\com.shirogames.evoland\\Local Store\\#SharedObjects\\game.dat\\evoSave.sol}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/com.shirogames.evoland/Local Store/#SharedObjects/game.dat}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/Evoland/Pepper Data/Shockwave Flash/WritableRoot/#SharedObjects/<...>/#localhost/game.dat/evoSave.sol}}" Evoland 2: gog: 1439275574 pageId: 34328 steam: 359310 templates: - - '{{Game data/config|Windows|{{p|appdata}}\com.shirogames.evoland2\Local Store\#SharedObjects\game.dat\props.sol}}' - - '{{Game data/saves|Windows|{{p|game}}\save\}}' - - '{{Game data/saves|OS X|{{p|game}}/Contents/Resources/game/Evoland2/Contents/Resources/save/}}' - - '{{Game data/saves|Steam|{{p|game}}/save/}}' + - "{{Game data/config|Windows|{{p|appdata}}\\com.shirogames.evoland2\\Local Store\\#SharedObjects\\game.dat\\props.sol}}" + - "{{Game data/saves|Windows|{{p|game}}\\save\\}}" + - "{{Game data/saves|OS X|{{p|game}}/Contents/Resources/game/Evoland2/Contents/Resources/save/}}" + - "{{Game data/saves|Steam|{{p|game}}/save/}}" Evoland Legendary Edition: gog: 1466932507 pageId: 127369 steam: 1020470 templates: - - '{{Game data/saves|Windows|{{P|game}}\save\}}' - - '{{Game data/saves|Epic Games Launcher|{{P|game}}\slot*.sav}}' + - "{{Game data/saves|Windows|{{P|game}}\\save\\}}" + - "{{Game data/saves|Epic Games Launcher|{{P|game}}\\slot*.sav}}" Evolo.Evolution: pageId: 109922 steam: 918080 @@ -56458,15 +54930,15 @@ Evolution Battle Simulator: Evolution GT: pageId: 164626 templates: - - '{{Game data/config|Windows|{{P|game}}}}' - - '{{Game data/saves|Windows|{{p|game}}\saves}}' -'Evolution II: Fighting for Survival': + - "{{Game data/config|Windows|{{P|game}}}}" + - "{{Game data/saves|Windows|{{p|game}}\\saves}}" +"Evolution II: Fighting for Survival": pageId: 48711 steam: 347580 -'Evolution Pinball VR: The Summoning': +"Evolution Pinball VR: The Summoning": pageId: 56507 steam: 486370 -'Evolution Planet: Gold Edition': +"Evolution Planet: Gold Edition": pageId: 42517 steam: 495090 Evolution RTS: @@ -56475,46 +54947,44 @@ Evolution RTS: Evolution VR: pageId: 53198 steam: 549760 -'Evolution: The Video Game': +"Evolution: The Video Game": pageId: 137234 steam: 469800 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\North Star Games LLC\Evolution}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\North Star Games LLC\Evolution}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\North Star Games LLC\\Evolution}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\North Star Games LLC\\Evolution}}" Evolva: gog: 1207658648 pageId: 39862 steam: 771430 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Computer Artworks\Evolva\1.0\}}' - - '{{Game data/saves|Windows|{{p|game}}\SaveGames\|{{p|game}}\GenoHunters\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Computer Artworks\\Evolva\\1.0\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\SaveGames\\|{{p|game}}\\GenoHunters\\}}" Evolvation: pageId: 36908 steam: 510840 templates: - - >- - {{Game - data/config|Windows|{{P|localappdata}}\Evolvation\Saved\SaveGames\Settings.sav|{{P|localappdata}}\Evolvation\Saved\Config\WindowsNoEditor\}} + - "{{Game data/config|Windows|{{P|localappdata}}\\Evolvation\\Saved\\SaveGames\\Settings.sav|{{P|localappdata}}\\Evolvation\\Saved\\Config\\WindowsNoEditor\\}}" Evolve Stage 2: pageId: 17416 steam: 273350 steamSide: - - 341847 - - 341843 - - 341842 - - 341841 - - 341845 - - 341849 - 338470 - - 341846 - - 341850 - - 341844 - 341840 + - 341841 + - 341842 + - 341843 + - 341844 + - 341845 + - 341846 + - 341847 - 341848 + - 341849 + - 341850 templates: - - '{{Game data/config|Windows|{{p|game}}\system.cfg}}' - - '{{Game data/config|Steam|{{p|steam}}\userdata\{{p|uid}}\273350\local\USER\Profiles\default\settings.xml}}' - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\273350\local\USER\}}' + - "{{Game data/config|Windows|{{p|game}}\\system.cfg}}" + - "{{Game data/config|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\273350\\local\\USER\\Profiles\\default\\settings.xml}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\273350\\local\\USER\\}}" Evopollution: pageId: 50385 steam: 295990 @@ -56522,7 +54992,7 @@ Evospace: pageId: 127677 steam: 1013540 templates: - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\Local\Evospace\Saved\SaveGames}}' + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\Local\\Evospace\\Saved\\SaveGames}}" Evrisia Art: pageId: 149563 steam: 1154150 @@ -56530,28 +55000,26 @@ Ex-Zodiac: pageId: 189038 steam: 1249480 templates: - - '{{Game data/saves|Linux|{{p|xdgdatahome}}/godot/app_userdata/Ex-Zodiac/}}' + - "{{Game data/saves|Linux|{{p|xdgdatahome}}/godot/app_userdata/Ex-Zodiac/}}" ExZeus: pageId: 170599 templates: - - '{{Game data/config|Windows|{{p|game}}\opeX.dat}}' - - '{{Game data/saves|Windows|{{p|game}}\s.dat}}' + - "{{Game data/config|Windows|{{p|game}}\\opeX.dat}}" + - "{{Game data/saves|Windows|{{p|game}}\\s.dat}}" ExZeus 2: pageId: 63931 steam: 668520 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\HyperDevbox\ExZeus2}}' - - '{{Game data/saves|Windows|{{p|hkcu}}\Software\HyperDevbox\ExZeus2}}' -'ExZeus: The Complete Collection': + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\HyperDevbox\\ExZeus2}}" + - "{{Game data/saves|Windows|{{p|hkcu}}\\Software\\HyperDevbox\\ExZeus2}}" +"ExZeus: The Complete Collection": gog: 1496792990 pageId: 170589 steam: 1545010 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\ScreenSelectorPrefs.txt}}' - - >- - {{Game - data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\high.data||{{p|userprofile}}\AppData\LocalLow\opL.dat|{{p|userprofile}}\AppData\LocalLow\opx4.dat}} -'Exactamundo: World Trivia Tour': + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\ScreenSelectorPrefs.txt}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\high.data||{{p|userprofile}}\\AppData\\LocalLow\\opL.dat|{{p|userprofile}}\\AppData\\LocalLow\\opx4.dat}}" +"Exactamundo: World Trivia Tour": pageId: 151000 steam: 1142820 Exaella: @@ -56562,26 +55030,24 @@ Exanima: pageId: 25778 steam: 362490 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Exanima\}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Exanima\}}' + - "{{Game data/config|Windows|{{p|appdata}}\\Exanima\\}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Exanima\\}}" Exapunks: gog: 2070729622 pageId: 104813 steam: 716490 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\EXAPUNKS\{{p|uid}}\config.cfg}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/EXAPUNKS/{{p|uid}}/config.cfg}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\EXAPUNKS\{{p|uid}}\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/EXAPUNKS/{{p|uid}}/}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.local/share/EXAPUNKS/{{p|uid}}/}}' -'Exapunks: TEC Redshift Player': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\EXAPUNKS\\{{p|uid}}\\config.cfg}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/EXAPUNKS/{{p|uid}}/config.cfg}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\EXAPUNKS\\{{p|uid}}\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/EXAPUNKS/{{p|uid}}/}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.local/share/EXAPUNKS/{{p|uid}}/}}" +"Exapunks: TEC Redshift Player": pageId: 112926 steam: 948420 templates: - - >- - {{Game data/config|Windows|{{P|userprofile\Documents}}\My Games\EXAPUNKS TEC Redshift - Player\{{P|uid}}\config.cfg}} - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\My Games\EXAPUNKS TEC Redshift Player\{{P|uid}}\save.dat}}' + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\My Games\\EXAPUNKS TEC Redshift Player\\{{P|uid}}\\config.cfg}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\My Games\\EXAPUNKS TEC Redshift Player\\{{P|uid}}\\save.dat}}" Exatron Quest 2: pageId: 65277 steam: 669410 @@ -56592,8 +55058,8 @@ Exception: pageId: 140363 steam: 621000 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Exception\{{P|uid}}\settings.json}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\Exception\{{P|uid}}\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\Exception\\{{P|uid}}\\settings.json}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Exception\\{{P|uid}}\\}}" Exception (Traxmaster Software): pageId: 71950 steam: 456390 @@ -56624,16 +55090,16 @@ Exercise Book Epic: Exertus: pageId: 141078 steam: 1105620 -'Exile II: Crystal Souls': +"Exile II: Crystal Souls": pageId: 168561 templates: - - '{{Game data/config|Windows|{{p|game}}}}' - - '{{Game data/saves|Windows|{{p|game}}}}' -'Exile III: Ruined World': + - "{{Game data/config|Windows|{{p|game}}}}" + - "{{Game data/saves|Windows|{{p|game}}}}" +"Exile III: Ruined World": pageId: 168562 templates: - - '{{Game data/config|Windows|{{p|game}}}}' - - '{{Game data/saves|Windows|{{p|game}}}}' + - "{{Game data/config|Windows|{{p|game}}}}" + - "{{Game data/saves|Windows|{{p|game}}}}" Exile Squadron: pageId: 150478 steam: 1161910 @@ -56643,14 +55109,14 @@ Exile of the Gods: Exile to Death: pageId: 56382 steam: 489240 -Exile's End: +"Exile's End": pageId: 46614 steam: 382130 -'Exile: Escape From the Pit': +"Exile: Escape From the Pit": pageId: 168560 templates: - - '{{Game data/config|Windows|{{p|game}}}}' - - '{{Game data/saves|Windows|{{p|game}}}}' + - "{{Game data/config|Windows|{{p|game}}}}" + - "{{Game data/saves|Windows|{{p|game}}}}" Exiled Kingdoms: gog: 1091791464 pageId: 82792 @@ -56661,7 +55127,7 @@ Exiled to the Void: Exilium: pageId: 184682 steam: 2197240 -'Eximius: Seize the Frontline': +"Eximius: Seize the Frontline": pageId: 91254 steam: 505740 Exist: @@ -56700,7 +55166,7 @@ Exit 4 - Portal: Exit From: pageId: 139237 steam: 1092140 -'Exit Limbo: Opening': +"Exit Limbo: Opening": pageId: 142001 steam: 1051900 Exit VR: @@ -56715,12 +55181,9 @@ Exit the Gungeon: steamSide: - 1270860 templates: - - >- - {{Game data/config|Windows|{{P|userprofile}}\AppData\LocalLow\Dodge Roll\Exit the - Gungeon\LocalOptions.txt|{{P|userprofile}}\AppData\LocalLow\Dodge Roll\Exit the - Gungeon\Options.txt|{{P|hkcu}}\SOFTWARE\Dodge Roll\Exit the Gungeon\}} - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Dodge Roll\Exit the Gungeon\Slot*.save}}' -'Exit: A Biodelic Adventure': + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Dodge Roll\\Exit the Gungeon\\LocalOptions.txt|{{P|userprofile}}\\AppData\\LocalLow\\Dodge Roll\\Exit the Gungeon\\Options.txt|{{P|hkcu}}\\SOFTWARE\\Dodge Roll\\Exit the Gungeon\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Dodge Roll\\Exit the Gungeon\\Slot*.save}}" +"Exit: A Biodelic Adventure": pageId: 157478 steam: 620410 Exitium: @@ -56732,13 +55195,9 @@ Exo One: steamSide: - 1595980 templates: - - >- - {{Game data/config|Microsoft Store|{{P|hkcu}}\Software\Exbleative\EXO - ONE|{{p|localappdata}}\Packages\FutureFriendsGames.ExoOne_2whsqx9fyfsdj\SystemAppData\wgs\}} - - '{{Game data/saves|Windows|{{p|userprofile\AppData\LocalLow}}\Exbleative\EXO ONE}}' - - >- - {{Game data/saves|Microsoft - Store|{{p|localappdata}}\Packages\FutureFriendsGames.ExoOne_2whsqx9fyfsdj\SystemAppData\wgs\}} + - "{{Game data/config|Microsoft Store|{{P|hkcu}}\\Software\\Exbleative\\EXO ONE|{{p|localappdata}}\\Packages\\FutureFriendsGames.ExoOne_2whsqx9fyfsdj\\SystemAppData\\wgs\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\AppData\\LocalLow}}\\Exbleative\\EXO ONE}}" + - "{{Game data/saves|Microsoft Store|{{p|localappdata}}\\Packages\\FutureFriendsGames.ExoOne_2whsqx9fyfsdj\\SystemAppData\\wgs\\}}" Exo Racing: pageId: 123580 steam: 875320 @@ -56761,7 +55220,7 @@ Exocraft: pageId: 128383 steam: 793490 templates: - - '{{Game data/saves|Windows|{{p|appdata}}\Exocraft\}}' + - "{{Game data/saves|Windows|{{p|appdata}}\\Exocraft\\}}" Exodemon: pageId: 124466 steam: 516820 @@ -56777,19 +55236,19 @@ Exodus (2013): Exodus (2018): pageId: 137328 steam: 904950 -'Exodus Wars: Fractured Empire': +"Exodus Wars: Fractured Empire": pageId: 48829 steam: 297270 Exodus from the Earth: pageId: 28852 steam: 12390 templates: - - '{{Game data/config|Windows|C:\Users\{{p|username}}\Documents\My Games\Exodus\Default\}}' - - '{{Game data/saves|Windows|C:\Users\{{p|username}}\Documents\My Games\Exodus\Default\save\}}' -'Exodus: Proxima Centauri': + - "{{Game data/config|Windows|C:\\Users\\{{p|username}}\\Documents\\My Games\\Exodus\\Default\\}}" + - "{{Game data/saves|Windows|C:\\Users\\{{p|username}}\\Documents\\My Games\\Exodus\\Default\\save\\}}" +"Exodus: Proxima Centauri": pageId: 104705 steam: 892440 -'Exodus: Rising': +"Exodus: Rising": pageId: 122892 steam: 951770 Exogen VR: @@ -56805,11 +55264,11 @@ Exophobia: Exoplanet: pageId: 102963 steam: 894380 -'Exoplanet: First Contact': +"Exoplanet: First Contact": pageId: 54397 steam: 531660 templates: - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\Alersteam\Exoplanet First Contact\savegames}}' + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\Alersteam\\Exoplanet First Contact\\savegames}}" Exoprimal: pageId: 178453 steam: 1286320 @@ -56830,11 +55289,11 @@ Exoprimal: - 2104487 - 2104488 templates: - - '{{Game data/config|Microsoft Store|{{p|userprofile}}\Documents\EXOPRIMAL_Windows}}' + - "{{Game data/config|Microsoft Store|{{p|userprofile}}\\Documents\\EXOPRIMAL_Windows}}" Exorcise The Demons: pageId: 144913 steam: 654450 -'Exorcism: Case Zero': +"Exorcism: Case Zero": pageId: 72871 steam: 718540 Exorder: @@ -56862,10 +55321,10 @@ Expand: pageId: 38115 steam: 399780 templates: - - '{{Game data/config|Windows|{{P|game}}\data\saves\}}' - - '{{Game data/config|Linux|{{p|game}}/data/saves/}}' - - '{{Game data/saves|Windows|{{P|game}}\data\config\}}' - - '{{Game data/saves|Linux|{{p|game}}/data/config/}}' + - "{{Game data/config|Windows|{{P|game}}\\data\\saves\\}}" + - "{{Game data/config|Linux|{{p|game}}/data/saves/}}" + - "{{Game data/saves|Windows|{{P|game}}\\data\\config\\}}" + - "{{Game data/saves|Linux|{{p|game}}/data/config/}}" Expander: pageId: 45457 steam: 410470 @@ -56892,20 +55351,20 @@ Expedition Zero: pageId: 175857 steam: 1247570 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\ExpeditionZero\Saved\Config\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\ExpeditionZero\Saved\Savegames\}}' -'Expeditions: Conquistador': + - "{{Game data/config|Windows|{{p|localappdata}}\\ExpeditionZero\\Saved\\Config\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\ExpeditionZero\\Saved\\Savegames\\}}" +"Expeditions: Conquistador": gog: 1207659232 pageId: 13457 steam: 237430 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Expeditions Conquistador\config.ini}}' - - '{{Game data/config|OS X|{{p|osxhome}}/.local/share/Expeditions-Conquistador}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/Expeditions-Conquistador/}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Expeditions Conquistador\Saves\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/.local/share/Expeditions-Conquistador/Saves}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/Expeditions-Conquistador/Saves/}}' -'Expeditions: Rome': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Expeditions Conquistador\\config.ini}}" + - "{{Game data/config|OS X|{{p|osxhome}}/.local/share/Expeditions-Conquistador}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/Expeditions-Conquistador/}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Expeditions Conquistador\\Saves\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/.local/share/Expeditions-Conquistador/Saves}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/Expeditions-Conquistador/Saves/}}" +"Expeditions: Rome": gog: 1572737047 gogSide: - 1412350651 @@ -56913,20 +55372,18 @@ Expedition Zero: pageId: 169379 steam: 987840 steamSide: - - 1815770 - 1805540 + - 1815770 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\ExpeditionsRome\Saved\Config\WindowsNoEditor}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\ExpeditionsRome\Saved\SaveGames}}' -'Expeditions: Viking': + - "{{Game data/config|Windows|{{P|localappdata}}\\ExpeditionsRome\\Saved\\Config\\WindowsNoEditor}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\ExpeditionsRome\\Saved\\SaveGames}}" +"Expeditions: Viking": gog: 1450363937 pageId: 39636 steam: 445190 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Expeditions - Viking\Config\Config.ini|{{p|userprofile\Documents}}\My Games\Expeditions Viking\InputBindings\}} - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Expeditions Viking\Savegames\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Expeditions Viking\\Config\\Config.ini|{{p|userprofile\\Documents}}\\My Games\\Expeditions Viking\\InputBindings\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Expeditions Viking\\Savegames\\}}" Expelled: pageId: 74558 steam: 727530 @@ -56935,15 +55392,15 @@ Expendable: pageId: 21166 steam: 804000 templates: - - '{{Game data/config|Windows|{{P|game}}\config.txt}}' - - '{{Game data/saves|Windows|{{p|game}}\misc\savegame.dta}}' + - "{{Game data/config|Windows|{{P|game}}\\config.txt}}" + - "{{Game data/saves|Windows|{{p|game}}\\misc\\savegame.dta}}" Experience: pageId: 34964 steam: 463040 Experience (2019): pageId: 137408 steam: 1017330 -'Experience: Colorblindness': +"Experience: Colorblindness": pageId: 123677 steam: 979100 Experiment Gone Rogue: @@ -56952,16 +55409,16 @@ Experiment Gone Rogue: Expert Rifleman - Reloaded: pageId: 46863 steam: 383590 -'Exphelius: Arena': +"Exphelius: Arena": pageId: 153155 steam: 1167800 Explodemon: pageId: 12726 steam: 281820 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\EXPLODEMON!\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\EXPLODEMON!\}}' -Explodey - Sci-fi Side Scroller w/ 'splosions: + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\EXPLODEMON!\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\EXPLODEMON!\\}}" +"Explodey - Sci-fi Side Scroller w/ 'splosions": pageId: 98882 steam: 886860 Exploding Babies: @@ -56990,8 +55447,8 @@ Explosionade: pageId: 46348 steam: 373620 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Explosionade\Explosionade.mbg}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Explosionade\Explosionade.mbg}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Explosionade\\Explosionade.mbg}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Explosionade\\Explosionade.mbg}}" Explosive Dinosaurs: pageId: 100642 steam: 671150 @@ -57029,7 +55486,7 @@ Exterminator: Exterminator Simulator: pageId: 157379 steam: 1197300 -'Exterminator: Escape!': +"Exterminator: Escape!": pageId: 69649 steam: 673250 External Visions: @@ -57039,12 +55496,12 @@ Extinction: pageId: 87503 steam: 570710 templates: - - '{{Game data/config|Windows|{{P|userprofile}}\AppData\Local\Blink\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\Local\Blink\Saved\SaveGames\{{P|uid}}\AUTOSAVE.sav}}' + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\Local\\Blink\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\Local\\Blink\\Saved\\SaveGames\\{{P|uid}}\\AUTOSAVE.sav}}" Extinction Protocol: pageId: 145425 steam: 1078210 -'Extinction: Alien Invasion': +"Extinction: Alien Invasion": pageId: 130382 steam: 1046750 Extopia: @@ -57056,7 +55513,7 @@ Extra Terrestrial Perception: ExtraGalactica: pageId: 156406 steam: 1207840 -Extraction Valley Devils' Curse: +"Extraction Valley Devils' Curse": pageId: 141776 steam: 1012410 Extraneum: @@ -57068,13 +55525,13 @@ Extravaganza Rising: Extreme Assault: pageId: 160459 templates: - - '{{Game data/config|DOS|{{p|game}}\INIT.CFG|{{p|game}}\SETUP.INI}}' - - '{{Game data/saves|DOS|{{p|game}}\SAVEGAME}}' + - "{{Game data/config|DOS|{{p|game}}\\INIT.CFG|{{p|game}}\\SETUP.INI}}" + - "{{Game data/saves|DOS|{{p|game}}\\SAVEGAME}}" Extreme Burger Defense: pageId: 186802 templates: - - '{{Game data/saves|Windows|{{P|localappdata}}\ExtremeBurgerDefense}}' -'Extreme Dash: Reloaded': + - "{{Game data/saves|Windows|{{P|localappdata}}\\ExtremeBurgerDefense}}" +"Extreme Dash: Reloaded": pageId: 92317 steam: 829120 Extreme Drifters: @@ -57084,7 +55541,7 @@ Extreme Exorcism: pageId: 46344 steam: 334100 templates: - - '{{Game data/saves|Windows|{{P|hkcu}}\Software\Ripstone\Extreme Exorcism}}' + - "{{Game data/saves|Windows|{{P|hkcu}}\\Software\\Ripstone\\Extreme Exorcism}}" Extreme Forklifting 2: pageId: 38553 steam: 498570 @@ -57097,7 +55554,7 @@ Extreme Offroad Monster Simulator: Extreme Paintbrawl: pageId: 27300 templates: - - '{{Game data/config|DOS|{{p|game}}\engine\PaintB.cfg }}' + - "{{Game data/config|DOS|{{p|game}}\\engine\\PaintB.cfg }}" Extreme Paintbrawl 2: pageId: 91663 Extreme Paintbrawl 4: @@ -57108,8 +55565,8 @@ Extreme Painting Puzzles: Extreme Pinball: pageId: 17023 templates: - - '{{Game data/config|DOS|{{p|game}}\}}' - - '{{Game data/saves|DOS|{{p|game}}\}}' + - "{{Game data/config|DOS|{{p|game}}\\}}" + - "{{Game data/saves|DOS|{{p|game}}\\}}" Extreme Racing on Highway: pageId: 129745 steam: 1034160 @@ -57134,10 +55591,10 @@ Extreme Truck Simulator: Extreme Tux Racer: pageId: 59441 templates: - - '{{Game data/config|Windows|{{p|game}}\config\options.txt}}' - - '{{Game data/config|Linux|$HOME/.etr/options.txt}}' - - '{{Game data/saves|Windows|{{p|game}}\config\}}' - - '{{Game data/saves|Linux|$HOME/.etr/}}' + - "{{Game data/config|Windows|{{p|game}}\\config\\options.txt}}" + - "{{Game data/config|Linux|$HOME/.etr/options.txt}}" + - "{{Game data/saves|Windows|{{p|game}}\\config\\}}" + - "{{Game data/saves|Linux|$HOME/.etr/}}" Extreme Warfare Revenge: pageId: 181134 Extreme flight: @@ -57147,13 +55604,13 @@ Extreme-G 2: pageId: 58166 steam: 582260 templates: - - '{{Game data/config|Windows|{{P|game}}\newfile.dat}}' - - '{{Game data/saves|Windows|{{P|game}}\newfile.dat}}' + - "{{Game data/config|Windows|{{P|game}}\\newfile.dat}}" + - "{{Game data/saves|Windows|{{P|game}}\\newfile.dat}}" Extremely Goofy Skateboarding: pageId: 66366 templates: - - '{{Game data/config|Windows|{{P|game}}\data\config\config.cfg}}' - - '{{Game data/saves|Windows|{{P|game}}\data\gamesave.dat}}' + - "{{Game data/config|Windows|{{P|game}}\\data\\config\\config.cfg}}" + - "{{Game data/saves|Windows|{{P|game}}\\data\\gamesave.dat}}" Extricate: pageId: 130682 steam: 1012970 @@ -57179,22 +55636,22 @@ Eye of the Beholder: pageId: 62845 steam: 1882260 templates: - - '{{Game data/saves|DOS|{{p|game}}\EOBDATA.SAV}}' -'Eye of the Beholder II: The Legend of Darkmoon': + - "{{Game data/saves|DOS|{{p|game}}\\EOBDATA.SAV}}" +"Eye of the Beholder II: The Legend of Darkmoon": gog: 1432576039 gogSide: - 1436868249 pageId: 62859 steam: 1882261 templates: - - '{{Game data/saves|DOS|{{p|game}}\EOBDATA*.SAV}}' -'Eye of the Beholder III: Assault on Myth Drannor': + - "{{Game data/saves|DOS|{{p|game}}\\EOBDATA*.SAV}}" +"Eye of the Beholder III: Assault on Myth Drannor": gog: 1432576327 pageId: 62861 steam: 1882262 templates: - - '{{Game data/config|DOS|{{p|game}}\SAVEGAME\}}' - - '{{Game data/saves|DOS|{{p|game}}\SAVEGAME\}}' + - "{{Game data/config|DOS|{{p|game}}\\SAVEGAME\\}}" + - "{{Game data/saves|DOS|{{p|game}}\\SAVEGAME\\}}" Eye of the Owl - Bosch VR: pageId: 55726 steam: 420020 @@ -57208,7 +55665,7 @@ Eyes in the Dark: - 1966520 - 2000620 templates: - - '{{Game data/saves|Windows| C:\Users\\AppData\LocalLow\Under the Stairs\Eyes in the Dark}}' + - "{{Game data/saves|Windows| C:\\Users\\\\AppData\\LocalLow\\Under the Stairs\\Eyes in the Dark}}" Eyes of Fear: pageId: 132320 steam: 1056260 @@ -57241,8 +55698,8 @@ F-16 Multirole Fighter: pageId: 41287 steam: 32720 templates: - - '{{Game data/config|Windows|{{p|game}}\F16.cfg|{{p|game}}\F16.INP|{{p|game}}\F16.SAV }}' - - '{{Game data/saves|Windows|{{p|game}}\fslot*.cmp|{{p|game}}\fslot*.sav }}' + - "{{Game data/config|Windows|{{p|game}}\\F16.cfg|{{p|game}}\\F16.INP|{{p|game}}\\F16.SAV }}" + - "{{Game data/saves|Windows|{{p|game}}\\fslot*.cmp|{{p|game}}\\fslot*.sav }}" F-19 Stealth Fighter: gog: 1861375617 pageId: 48314 @@ -57251,13 +55708,13 @@ F-22 Lightning 3: pageId: 41288 steam: 32730 templates: - - '{{Game data/config|Windows|{{p|game}}\L3.cfg|{{p|game}}\L3.INP}}' - - '{{Game data/saves|Windows|{{p|game}}\LSLOT*.sav}}' -'F-22: Air Dominance Fighter': + - "{{Game data/config|Windows|{{p|game}}\\L3.cfg|{{p|game}}\\L3.INP}}" + - "{{Game data/saves|Windows|{{p|game}}\\LSLOT*.sav}}" +"F-22: Air Dominance Fighter": pageId: 101495 templates: - - '{{Game data/config|Windows|{{P|game}}\PROGRAM\game.cfg}}' - - '{{Game data/saves|Windows|{{P|game}}\PROGRAM\players\0\}}' + - "{{Game data/config|Windows|{{P|game}}\\PROGRAM\\game.cfg}}" + - "{{Game data/saves|Windows|{{P|game}}\\PROGRAM\\players\\0\\}}" F.E.A.R.: gog: 1423058413 pageId: 1345 @@ -57265,60 +55722,53 @@ F.E.A.R.: steamSide: - 21110 templates: - - >- - {{Game data/config|Windows|{{p|public}}\Documents\Monolith - Productions\FEAR\settings.cfg|{{p|public}}\Documents\TimeGate - Studios\FEARXP\settings.cfg|{{p|public}}\Documents\TimeGate Studios\FEARXP2\settings.cfg}} - - >- - {{Game data/saves|Windows|{{p|public}}\Documents\Monolith - Productions\FEAR\Save\Profile000\SinglePlayer|{{p|public}}\Documents\TimeGate - Studios\FEARXP\Save\Profile000\SinglePlayer|{{p|public}}\Documents\TimeGate - Studios\FEARXP2\Save\Profile000\SinglePlayer}} -'F.E.A.R. 2: Project Origin': + - "{{Game data/config|Windows|{{p|public}}\\Documents\\Monolith Productions\\FEAR\\settings.cfg|{{p|public}}\\Documents\\TimeGate Studios\\FEARXP\\settings.cfg|{{p|public}}\\Documents\\TimeGate Studios\\FEARXP2\\settings.cfg}}" + - "{{Game data/saves|Windows|{{p|public}}\\Documents\\Monolith Productions\\FEAR\\Save\\Profile000\\SinglePlayer|{{p|public}}\\Documents\\TimeGate Studios\\FEARXP\\Save\\Profile000\\SinglePlayer|{{p|public}}\\Documents\\TimeGate Studios\\FEARXP2\\Save\\Profile000\\SinglePlayer}}" +"F.E.A.R. 2: Project Origin": gog: 1425479123 pageId: 1860 steam: 16450 steamSide: - 16465 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\WBGames\FEAR2\{{p|uid}}\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\WBGames\FEAR2\{{p|uid}}\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\WBGames\\FEAR2\\{{p|uid}}\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\WBGames\\FEAR2\\{{p|uid}}\\}}" F.E.A.R. 3: gog: 1217589235 pageId: 1858 steam: 21100 templates: - - '{{Game data/config|Windows|{{p|game}}\options.cfg|{{p|appdata}}\Day 1 Studios\FEAR3\SharedData.settings}}' - - '{{Game data/saves|Windows|{{p|steam}}\userdata\{{p|uid}}\21100\local\}}' + - "{{Game data/config|Windows|{{p|game}}\\options.cfg|{{p|appdata}}\\Day 1 Studios\\FEAR3\\SharedData.settings}}" + - "{{Game data/saves|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\21100\\local\\}}" F.E.A.R. Online: pageId: 20158 steam: 223650 templates: - - '{{Game data/config|Windows|{{p|game}}\settings.cfg}}' + - "{{Game data/config|Windows|{{p|game}}\\settings.cfg}}" F.E.A.R. Perseus Mandate: gog: 1423058413 pageId: 1362 steam: 21120 templates: - - '{{Game data/config|Windows|{{p|public}}\Documents\TimeGate Studios\FEARXP2\settings.cfg}}' - - '{{Game data/saves|Windows|{{p|public}}\Documents\TimeGate Studios\FEARXP2\Save\Profile000\SinglePlayer}}' + - "{{Game data/config|Windows|{{p|public}}\\Documents\\TimeGate Studios\\FEARXP2\\settings.cfg}}" + - "{{Game data/saves|Windows|{{p|public}}\\Documents\\TimeGate Studios\\FEARXP2\\Save\\Profile000\\SinglePlayer}}" F.E.X (Forced Evolution Experiment): pageId: 68136 steam: 655700 -'F.I.S.T.: Forged in Shadow Torch': +"F.I.S.T.: Forged in Shadow Torch": pageId: 171988 renamedFrom: - - 'F.I.S.T.: Forged In Shadow Torch' + - "F.I.S.T.: Forged In Shadow Torch" steam: 1330470 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\ZingangGame\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\ZingangGame\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\ZingangGame\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\ZingangGame\\Saved\\SaveGames\\}}" F/A-18E Super Hornet: gog: 1207658660 pageId: 133040 steam: 776050 templates: - - '{{Game data/saves|Windows|{{p|game}}\LOG}}' + - "{{Game data/saves|Windows|{{p|game}}\\LOG}}" F1 2000: pageId: 23330 F1 2001: @@ -57329,16 +55779,14 @@ F1 2010: pageId: 3741 steam: 44310 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\My - Games\FormulaOne\hardwaresettings\hardware_settings_config.xml}} - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\FormulaOne\savegame\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\FormulaOne\\hardwaresettings\\hardware_settings_config.xml}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\FormulaOne\\savegame\\}}" F1 2011: pageId: 3539 steam: 44360 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\FormulaOne2011\savegame\hardwaresettings}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\FormulaOne2011\savegame\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\FormulaOne2011\\savegame\\hardwaresettings}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\FormulaOne2011\\savegame\\}}" F1 2012: pageId: 3725 steam: 208500 @@ -57346,56 +55794,50 @@ F1 2013: pageId: 9010 steam: 223670 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\FormulaOne2013\hardwaresettings}}' - - '{{Game data/saves|Windows|{{p|steam}}\userdata\{{p|uid}}\223670\local\savegame}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\FormulaOne2013\\hardwaresettings}}" + - "{{Game data/saves|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\223670\\local\\savegame}}" F1 2014: pageId: 18761 steam: 226580 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\FormulaOne2014\hardwaresettings}}' - - '{{Game data/saves|Windows|{{p|steam}}\userdata\{{p|uid}}\226580\remote\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\FormulaOne2014\\hardwaresettings}}" + - "{{Game data/saves|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\226580\\remote\\}}" F1 2015: pageId: 26029 steam: 286570 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\F1 2015\hardware_settings_config.xml}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}\feral-interactive\F1 2015\}}' - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\286570\local\savegame\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\F1 2015\\hardware_settings_config.xml}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}\\feral-interactive\\F1 2015\\}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\286570\\local\\savegame\\}}" F1 2016: pageId: 33701 steam: 391040 steamSide: - 480400 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\F1 2016\hardware_settings_config.xml}}' - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/391040/remote/savegame}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\F1 2016\\hardware_settings_config.xml}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/391040/remote/savegame}}" F1 2017: pageId: 62474 steam: 515220 steamSide: - 600620 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\F1 - 2017\hardwaresettings\hardware_settings_config.xml}} - - >- - {{Game data/config|Linux|{{p|linuxhome}}/.local/share/feral-interactive/F1 - 2017/SaveData/feral_bench/hardwaresettings/hardware_settings_config.xml}} - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/515220/remote/savegame}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\F1 2017\\hardwaresettings\\hardware_settings_config.xml}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.local/share/feral-interactive/F1 2017/SaveData/feral_bench/hardwaresettings/hardware_settings_config.xml}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/515220/remote/savegame}}" F1 2018: pageId: 100494 steam: 737800 templates: - - '{{Game data/config|Windows|{{p|userprofile\documents}}\My Games\F1 2018\}}' - - '{{Game data/saves|Windows|{{p|steam}}\userdata\{{p|uid}}\737800\}}' + - "{{Game data/config|Windows|{{p|userprofile\\documents}}\\My Games\\F1 2018\\}}" + - "{{Game data/saves|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\737800\\}}" F1 2019: pageId: 135688 steam: 928600 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\F1 - 2019\hardwaresettings\hardware_settings_config.xml}} - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/928600/remote/savegame}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\F1 2019\\hardwaresettings\\hardware_settings_config.xml}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/928600/remote/savegame}}" F1 2020: pageId: 159875 steam: 1080110 @@ -57403,10 +55845,8 @@ F1 2020: - 1209530 - 1209531 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\F1 - 2020\hardwaresettings\hardware_settings_config.xml}} - - '{{Game data/saves|Windows|{{p|steam}}/userdata/{{p|uid}}/1080110/remote/}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\F1 2020\\hardwaresettings\\hardware_settings_config.xml}}" + - "{{Game data/saves|Windows|{{p|steam}}/userdata/{{p|uid}}/1080110/remote/}}" F1 2021: pageId: 167918 steam: 1134570 @@ -57416,21 +55856,19 @@ F1 22: steamSide: - 1904900 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\F1 - 22\hardwaresettings\hardware_settings_config.xml}} - - '{{Game data/saves|Windows|{{P|steam}}\userdata\{{P|uid}}\1692250\remote\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\F1 22\\hardwaresettings\\hardware_settings_config.xml}}" + - "{{Game data/saves|Windows|{{P|steam}}\\userdata\\{{P|uid}}\\1692250\\remote\\}}" F1 23: pageId: 186148 steam: 2108330 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\F1 23\hardwaresettings\}}' - - '{{Game data/saves|Windows|{{P|steam}}\userdata\{{P|uid}}\2108330\remote\}}' -F1 Challenge '99-'02: + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\F1 23\\hardwaresettings\\}}" + - "{{Game data/saves|Windows|{{P|steam}}\\userdata\\{{P|uid}}\\2108330\\remote\\}}" +"F1 Challenge '99-'02": pageId: 162283 templates: - - '{{Game data/config|Windows|{{P|game}}\Save\[profile name]\[profile name].plr|{{P|game}}\Config.ini}}' - - '{{Game data/saves|Windows|{{P|game}}\Save\[profile name]\}}' + - "{{Game data/config|Windows|{{P|game}}\\Save\\[profile name]\\[profile name].plr|{{P|game}}\\Config.ini}}" + - "{{Game data/saves|Windows|{{P|game}}\\Save\\[profile name]\\}}" F1 Championship Season 2000: pageId: 162279 F1 Chequered Flag: @@ -57440,24 +55878,22 @@ F1 Manager 2022: pageId: 175663 steam: 1708520 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\F1Manager22\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\F1Manager22\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\F1Manager22\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\F1Manager22\\Saved\\SaveGames\\}}" F1 Manager 2023: pageId: 189441 steam: 2287220 steamSide: - 2386730 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\F1Manager23\Saved\Config\WindowsNoEditor\}}' - - >- - {{Game - data/saves|Windows|{{p|localappdata}}\F1Manager23\Saved\SaveGames\|{{p|game}}\F1Manager23\Saved\SaveGames\}} + - "{{Game data/config|Windows|{{p|localappdata}}\\F1Manager23\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\F1Manager23\\Saved\\SaveGames\\|{{p|game}}\\F1Manager23\\Saved\\SaveGames\\}}" F1 Race Stars: pageId: 30072 steam: 203680 templates: - - '{{Game data/config|Windows|{{p|steam}}\userdata\{{p|uid}}\203680\local\hardwareconfig}}' - - '{{Game data/saves|Windows|{{p|steam}}\userdata\{{p|uid}}\203680\remote\gamedata\Profile\Profile}}' + - "{{Game data/config|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\203680\\local\\hardwareconfig}}" + - "{{Game data/saves|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\203680\\remote\\gamedata\\Profile\\Profile}}" F1 Racing Championship: pageId: 24660 F1 Racing Simulation: @@ -57468,22 +55904,22 @@ F18 Carrier Landing: F29 Retaliator: pageId: 16940 templates: - - '{{Game data/saves|DOS|{{p|game}}\}}' + - "{{Game data/saves|DOS|{{p|game}}\\}}" FAITH: pageId: 146578 templates: - - '{{Game data/saves|Windows|{{p|localappdata}}\FAITH_v1_4_0_spriteOptimizationTest\SAV_FAITH_DX_itch_v1-4.dat}}' -'FAITH: Chapter II': + - "{{Game data/saves|Windows|{{p|localappdata}}\\FAITH_v1_4_0_spriteOptimizationTest\\SAV_FAITH_DX_itch_v1-4.dat}}" +"FAITH: Chapter II": pageId: 148340 templates: - - '{{Game data/saves|Windows|{{p|localappdata}}\FAITH_CHII_v1_2_2019_07_23\sav_FAITHchII_v1-2.dat}}' -'FAITH: The Unholy Trinity': + - "{{Game data/saves|Windows|{{p|localappdata}}\\FAITH_CHII_v1_2_2019_07_23\\sav_FAITHchII_v1-2.dat}}" +"FAITH: The Unholy Trinity": gog: 1360951571 pageId: 151868 steam: 1179080 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\FAITH\UTconfigs.csv}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\FAITH\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\FAITH\\UTconfigs.csv}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\FAITH\\}}" FALL: pageId: 45244 steam: 418050 @@ -57496,31 +55932,29 @@ FAN CLUB: FANTAVISION 202X: pageId: 187492 steam: 2353280 -'FAR: Changing Tides': +"FAR: Changing Tides": pageId: 169285 steam: 1570010 steamSide: - 1684390 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Okomotive\FarChangingTides\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Okomotive\FarChangingTides\}}' - - >- - {{Game data/saves|Microsoft - Store|{{P|localappdata}}\Packages\FrontierDevelopmentsPlc.FARChangingTidesWindowsEdi_ft442cafaz8hg\SystemAppData\wgs\{{P|uid}}}} -'FAR: Lone Sails': + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Okomotive\\FarChangingTides\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Okomotive\\FarChangingTides\\}}" + - "{{Game data/saves|Microsoft Store|{{P|localappdata}}\\Packages\\FrontierDevelopmentsPlc.FARChangingTidesWindowsEdi_ft442cafaz8hg\\SystemAppData\\wgs\\{{P|uid}}}}" +"FAR: Lone Sails": gog: 1736537203 pageId: 61570 steam: 609320 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Okomotive\FarLoneSails\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Okomotive/FarLoneSails}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Okomotive\FarLoneSails\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Okomotive/FarLoneSails/}}' - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/609320/remote/}}' -'FARIA: Ghosts of the Stream': + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Okomotive\\FarLoneSails\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Okomotive/FarLoneSails}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Okomotive\\FarLoneSails\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Okomotive/FarLoneSails/}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/609320/remote/}}" +"FARIA: Ghosts of the Stream": pageId: 41827 steam: 504670 -'FARIA: Starfall': +"FARIA: Starfall": pageId: 70112 steam: 696440 FATE: @@ -57528,40 +55962,40 @@ FATE: pageId: 20991 steam: 246840 templates: - - '{{Game data/config|Windows|{{p|programdata}}\WildTangent\FateSteam\Persistent\config.dat}}' - - '{{Game data/config|GOG.com|{{P|localappdata}}\WildTangent\Fate\Persistent\config.dat}}' - - '{{Game data/saves|Windows|{{p|programdata}}\WildTangent\Fatesteam\persistent\SAVE\}}' - - '{{Game data/saves|GOG.com|{{P|localappdata}}\WildTangent\Fate\Persistent\SAVE\}}' -'FATE: The Cursed King': + - "{{Game data/config|Windows|{{p|programdata}}\\WildTangent\\FateSteam\\Persistent\\config.dat}}" + - "{{Game data/config|GOG.com|{{P|localappdata}}\\WildTangent\\Fate\\Persistent\\config.dat}}" + - "{{Game data/saves|Windows|{{p|programdata}}\\WildTangent\\Fatesteam\\persistent\\SAVE\\}}" + - "{{Game data/saves|GOG.com|{{P|localappdata}}\\WildTangent\\Fate\\Persistent\\SAVE\\}}" +"FATE: The Cursed King": gog: 1971113392 pageId: 49299 steam: 303690 templates: - - '{{Game data/config|Windows|{{File|{{p|programdata}}\WildTangent\FateCursedKingSteam\Persistent\config.dat}}}}' - - '{{Game data/saves|Windows|{{p|programdata}}\WildTangent\FateCursedKingSteam\Persistent\SAVE}}' -'FATE: The Traitor Soul': + - "{{Game data/config|Windows|{{File|{{p|programdata}}\\WildTangent\\FateCursedKingSteam\\Persistent\\config.dat}}}}" + - "{{Game data/saves|Windows|{{p|programdata}}\\WildTangent\\FateCursedKingSteam\\Persistent\\SAVE}}" +"FATE: The Traitor Soul": gog: 1595490147 pageId: 49705 steam: 303680 -'FATE: Undiscovered Realms': +"FATE: Undiscovered Realms": gog: 1128601888 pageId: 50416 steam: 276890 FBI Mania: pageId: 57279 steam: 569840 -'FBI: Hostage Rescue': +"FBI: Hostage Rescue": pageId: 69934 templates: - - '{{Game data/config|Windows|{{p|HKLM}}\SOFTWARE\{{p|wow64}}\Idol FX\Hostage Rescue}}' -'FCK: Lille Leo Bruger Bolden': + - "{{Game data/config|Windows|{{p|HKLM}}\\SOFTWARE\\{{p|wow64}}\\Idol FX\\Hostage Rescue}}" +"FCK: Lille Leo Bruger Bolden": pageId: 126673 -'FEAST: Book One «Family Ties»': +"FEAST: Book One «Family Ties»": pageId: 90258 steam: 820790 templates: - - '{{Game data/config|Windows|{{P|appdata}}\renpy\FEAST-1487488210\persistent}}' - - '{{Game data/saves|Windows|{{P|appdata}}\renpy\FEAST-1487488210\*.save}}' + - "{{Game data/config|Windows|{{P|appdata}}\\renpy\\FEAST-1487488210\\persistent}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\renpy\\FEAST-1487488210\\*.save}}" FEB - Brazilian Elite Force: pageId: 155558 steam: 1213650 @@ -57573,83 +56007,75 @@ FIFA 06: FIFA 07: pageId: 91388 templates: - - >- - {{Game data/config|Windows|{{P|hklm}}\Software\{{P|wow64}}\EA Sports\FIFA 07\|{{p|userprofile\Documents}}\FIFA - 07\}} - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\FIFA 07\}}' + - "{{Game data/config|Windows|{{P|hklm}}\\Software\\{{P|wow64}}\\EA Sports\\FIFA 07\\|{{p|userprofile\\Documents}}\\FIFA 07\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\FIFA 07\\}}" FIFA 08: pageId: 91371 templates: - - >- - {{Game data/config|Windows|{{P|hklm}}\Software\{{P|wow64}}\EA Sports\FIFA 08\|{{p|userprofile\Documents}}\FIFA - 08\}} - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\FIFA 08\}}' + - "{{Game data/config|Windows|{{P|hklm}}\\Software\\{{P|wow64}}\\EA Sports\\FIFA 08\\|{{p|userprofile\\Documents}}\\FIFA 08\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\FIFA 08\\}}" FIFA 09: pageId: 91357 templates: - - >- - {{Game data/config|Windows|{{P|hklm}}\Software\{{P|wow64}}\EA Sports\FIFA 09\|{{p|userprofile\Documents}}\FIFA - 09\}} - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\FIFA 09\}}' + - "{{Game data/config|Windows|{{P|hklm}}\\Software\\{{P|wow64}}\\EA Sports\\FIFA 09\\|{{p|userprofile\\Documents}}\\FIFA 09\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\FIFA 09\\}}" FIFA 10: pageId: 91350 FIFA 11: pageId: 91344 templates: - - >- - {{Game data/config|Windows|{{P|hklm}}\Software\{{P|wow64}}\EA Sports\FIFA 11\|{{p|userprofile\Documents}}\FIFA - 11\}} - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\FIFA 11\}}' + - "{{Game data/config|Windows|{{P|hklm}}\\Software\\{{P|wow64}}\\EA Sports\\FIFA 11\\|{{p|userprofile\\Documents}}\\FIFA 11\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\FIFA 11\\}}" FIFA 12: pageId: 28695 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\FIFA 12\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\FIFA 12\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\FIFA 12\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\FIFA 12\\}}" FIFA 13: pageId: 7667 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\FIFA 13\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\FIFA 13\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\FIFA 13\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\FIFA 13\\}}" FIFA 14: pageId: 10275 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\FIFA 14\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\FIFA 14\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\FIFA 14\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\FIFA 14\\}}" FIFA 15: pageId: 19842 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\FIFA 15\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\FIFA 15\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\FIFA 15\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\FIFA 15\\}}" FIFA 16: pageId: 26304 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\FIFA 16\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\FIFA 16\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\FIFA 16\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\FIFA 16\\}}" FIFA 17: pageId: 33188 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\FIFA 17\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\FIFA 17\\}}" FIFA 18: pageId: 72007 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\FIFA 18\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\FIFA 18\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\FIFA 18\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\FIFA 18\\}}" FIFA 19: pageId: 97203 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\FIFA 19\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\FIFA 19\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\FIFA 19\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\FIFA 19\\}}" FIFA 20: pageId: 138298 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\FIFA 20\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\FIFA 20\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\FIFA 20\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\FIFA 20\\}}" FIFA 2000: pageId: 106750 FIFA 2001: pageId: 92508 templates: - - '{{Game data/saves|Windows|{{p|game}}\EA SPORTS\FIFA 2001\user}}' + - "{{Game data/saves|Windows|{{p|game}}\\EA SPORTS\\FIFA 2001\\user}}" FIFA 21: pageId: 161243 steam: 1313860 @@ -57657,8 +56083,8 @@ FIFA 22: pageId: 169981 steam: 1506830 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\FIFA 22\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\FIFA 22\settings\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\FIFA 22\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\FIFA 22\\settings\\}}" FIFA 23: pageId: 179651 steam: 1811260 @@ -57667,13 +56093,13 @@ FIFA 97: FIFA 99: pageId: 7715 templates: - - '{{Game data/config|Windows|{{p|HKLM}}\SOFTWARE\{{P|wow64}}\EA SPORTS\FIFA 99}}' - - '{{Game data/saves|Windows|{{p|game}}\USER}}' + - "{{Game data/config|Windows|{{p|HKLM}}\\SOFTWARE\\{{P|wow64}}\\EA SPORTS\\FIFA 99}}" + - "{{Game data/saves|Windows|{{p|game}}\\USER}}" FIFA Football 2002: pageId: 8563 templates: - - '{{Game data/config|Windows|{{p|HKLM}}\SOFTWARE\EA SPORTS\FIFA 2002}}' - - '{{Game data/saves|Windows|{{p|game}}\user\}}' + - "{{Game data/config|Windows|{{p|HKLM}}\\SOFTWARE\\EA SPORTS\\FIFA 2002}}" + - "{{Game data/saves|Windows|{{p|game}}\\user\\}}" FIFA Football 2003: pageId: 92492 FIFA Football 2004: @@ -57693,29 +56119,29 @@ FIFA Manager 10: pageId: 124790 steam: 24850 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\FIFA MANAGER 10\Config}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\FIFA MANAGER 10\Data\SaveGames}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\FIFA MANAGER 10\\Config}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\FIFA MANAGER 10\\Data\\SaveGames}}" FIFA Manager 11: pageId: 124787 steam: 47850 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\FIFA MANAGER 11\Config}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\FIFA MANAGER 11\Data\SaveGames}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\FIFA MANAGER 11\\Config}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\FIFA MANAGER 11\\Data\\SaveGames}}" FIFA Manager 12: pageId: 2136 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\FIFA Manager 12\Config\user.ini}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\FIFA Manager 12\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\FIFA Manager 12\\Config\\user.ini}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\FIFA Manager 12\\}}" FIFA Manager 13: pageId: 7843 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\FIFA Manager 13\Config\user.ini}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\FIFA Manager 13\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\FIFA Manager 13\\Config\\user.ini}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\FIFA Manager 13\\}}" FIFA Manager 14: pageId: 124785 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\FIFA MANAGER 14\Config}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\FIFA MANAGER 14\Data\SaveGames}}' + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\FIFA MANAGER 14\\Config}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\FIFA MANAGER 14\\Data\\SaveGames}}" FIFA Mobile Football: pageId: 174657 FIFA Online 4: @@ -57723,11 +56149,11 @@ FIFA Online 4: FIFA World Cup 98: pageId: 7971 templates: - - '{{Game data/saves|Windows|{{p|game}}\USER}}' -'FIFA: Road to World Cup 98': + - "{{Game data/saves|Windows|{{p|game}}\\USER}}" +"FIFA: Road to World Cup 98": pageId: 14547 templates: - - '{{Game data/saves|Windows|{{p|game}}\USER}}' + - "{{Game data/saves|Windows|{{p|game}}\\USER}}" FIGHTBALL - BOXING VR: pageId: 141730 steam: 1119500 @@ -57783,15 +56209,13 @@ FNaF World: pageId: 30954 steam: 427920 templates: - - >- - {{Game data/saves|Windows|{{p|appdata}}\MMFApplications\fnafw{{code|X}}|{{p|appdata}}\MMFApplications\info}} + - "{{Game data/saves|Windows|{{p|appdata}}\\MMFApplications\\fnafw{{code|X}}|{{p|appdata}}\\MMFApplications\\info}}" FOCUS on YOU: pageId: 139259 steam: 1032670 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\ProjectYUKI\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\ProjectYUKI\Saved\Steam\SaveGames\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\ProjectYUKI\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\ProjectYUKI\\Saved\\Steam\\SaveGames\\}}" FOOD FACTORY VR: pageId: 153559 steam: 1190320 @@ -57807,7 +56231,7 @@ FPS Chess: FPS Training: pageId: 123972 steam: 971460 -'FPS: Fun Puzzle Shooter': +"FPS: Fun Puzzle Shooter": pageId: 75598 steam: 697850 FPSBois: @@ -57829,32 +56253,32 @@ FPV Freerider Recharged: pageId: 88872 steam: 813530 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\SOFTWARE\Freeride\Freerider\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\SOFTWARE\\Freeride\\Freerider\\}}" FRACTER: pageId: 144691 steam: 783340 FRENZY PLANTS: pageId: 149440 steam: 1118930 -'FSR: French Street Racing': +"FSR: French Street Racing": pageId: 187085 templates: - - '{{Game data/config|Windows|{{p|game}}\City Interactive\FSR\Config.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\City Interactive\FSR\Misc\.MCS}}' + - "{{Game data/config|Windows|{{p|game}}\\City Interactive\\FSR\\Config.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\City Interactive\\FSR\\Misc\\.MCS}}" FSX SpacePort: pageId: 81153 steam: 776380 -'FTL: Faster Than Light': +"FTL: Faster Than Light": gog: 1207659102 pageId: 3559 steam: 212680 templates: - - '{{Game data/config|Windows|{{P|appdata}}\FasterThanLight\settings.ini}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/fasterthanlight/settings.ini}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/FasterThanLight/settings.ini}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\FasterThanLight\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/fasterthanlight/}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/FasterThanLight/}}' + - "{{Game data/config|Windows|{{P|appdata}}\\FasterThanLight\\settings.ini}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/fasterthanlight/settings.ini}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/FasterThanLight/settings.ini}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\FasterThanLight\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/fasterthanlight/}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/FasterThanLight/}}" FUBAR: pageId: 138817 steam: 956270 @@ -57872,8 +56296,8 @@ FX Fighter: FX Fighter Turbo: pageId: 97862 templates: - - '{{Game data/config|Windows|{{p|game}}\Fight\}}' - - '{{Game data/saves|Windows|{{p|game}}\Fight\}}' + - "{{Game data/config|Windows|{{p|game}}\\Fight\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\Fight\\}}" FX Football - The Manager for Every Football Fan: pageId: 60639 steam: 265400 @@ -57886,11 +56310,11 @@ Fable Anniversary: pageId: 19075 steam: 288470 steamSide: - - 319120 - 315150 + - 319120 templates: - - '{{Game data/config|Windows|{{p|game}}\WellingtonGame\Config\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\FableHD\saves\}}' + - "{{Game data/config|Windows|{{p|game}}\\WellingtonGame\\Config\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\FableHD\\saves\\}}" Fable Fortune: pageId: 39207 steam: 469830 @@ -57905,20 +56329,20 @@ Fable III: - 105414 - 105415 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Lionhead Studios\Fable 3\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\Saved Games\Lionhead Studios\Fable 3\}}' + - "{{Game data/config|Windows|{{p|appdata}}\\Lionhead Studios\\Fable 3\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Saved Games\\Lionhead Studios\\Fable 3\\}}" Fable Rush: pageId: 66609 steam: 654490 Fable of the Sword: pageId: 81042 steam: 787370 -'Fable: The Lost Chapters': +"Fable: The Lost Chapters": pageId: 2736 steam: 204030 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Fable\Saves\{{p|uid}}\Profile.bin}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Fable\Saves\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Fable\\Saves\\{{p|uid}}\\Profile.bin}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Fable\\Saves\\}}" Fables Interactives: pageId: 167601 Fables of Talumos: @@ -57931,26 +56355,26 @@ Fabula Mortis: pageId: 49440 steam: 320790 templates: - - '{{Game data/config|Windows|{{P|game}}\UDKGame\Config}}' -'Fabular: Once upon a Spacetime': + - "{{Game data/config|Windows|{{P|game}}\\UDKGame\\Config}}" +"Fabular: Once upon a Spacetime": gog: 1801054520 pageId: 182842 steam: 645720 -'Fabular: Prologue': +"Fabular: Prologue": pageId: 179347 steam: 2060550 templates: - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\SpiritusGames\FabularPrologue}}' -Fabulous - Angela's Fashion Fever: + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\SpiritusGames\\FabularPrologue}}" +"Fabulous - Angela's Fashion Fever": pageId: 51929 steam: 540060 -Fabulous - Angela's High School Reunion: +"Fabulous - Angela's High School Reunion": pageId: 63906 steam: 619810 -Fabulous - Angela's True Colors: +"Fabulous - Angela's True Colors": pageId: 125805 steam: 1005050 -Fabulous - Angela's Wedding Disaster: +"Fabulous - Angela's Wedding Disaster": pageId: 92803 steam: 802490 Fabulous - New York to LA: @@ -57969,36 +56393,34 @@ Face Noir: pageId: 14496 steam: 244690 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\MadOrange\FaceNoir}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\Saved Games\Face Noir\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\MadOrange\\FaceNoir}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Saved Games\\Face Noir\\}}" Face Your Demons: pageId: 144232 steam: 1091170 Faceless: pageId: 70852 steam: 243240 -'Faces of Illusion: The Twin Phantoms': +"Faces of Illusion: The Twin Phantoms": pageId: 56461 steam: 558340 templates: - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/558340/remote/profile}}' + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/558340/remote/profile}}" Faces of War: gog: 1428586504 pageId: 34370 steam: 289300 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\faces of - war\profiles\\options}} - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\faces of war\profiles\\save\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\faces of war\\profiles\\\\options}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\faces of war\\profiles\\\\save\\}}" Faceted Flight: pageId: 51147 steam: 355230 Facewound: pageId: 26499 templates: - - '{{Game data/config|Windows|{{p|game}}\settings}}' -'Factions: Origins of Malu': + - "{{Game data/config|Windows|{{p|game}}\\settings}}" +"Factions: Origins of Malu": pageId: 48413 steam: 339530 Factorio: @@ -58008,16 +56430,12 @@ Factorio: pageId: 31648 steam: 427520 templates: - - '{{Game data/config|Windows|{{P|appdata}}\Factorio\config|{{p|game}}/game/blueprint-storage.dat}}' - - >- - {{Game data/config|OS X|{{p|osxhome}}/Library/Application - Support/factorio/config|{{p|game}}/game/blueprint-storage.dat}} - - >- - {{Game - data/config|Linux|{{p|linuxhome}}/.factorio/config|{{p|game}}/game/config|{{p|game}}/game/blueprint-storage.dat}} - - '{{Game data/saves|Windows|{{P|appdata}}\Factorio\saves\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/factorio/saves/}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.factorio/saves/|{{p|game}}/game/saves/}}' + - "{{Game data/config|Windows|{{P|appdata}}\\Factorio\\config|{{p|game}}/game/blueprint-storage.dat}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/factorio/config|{{p|game}}/game/blueprint-storage.dat}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.factorio/config|{{p|game}}/game/config|{{p|game}}/game/blueprint-storage.dat}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\Factorio\\saves\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/factorio/saves/}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.factorio/saves/|{{p|game}}/game/saves/}}" Factory Balls: pageId: 132694 steam: 1054660 @@ -58038,8 +56456,8 @@ Factory Town: pageId: 100742 steam: 860890 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\82 Apps\Factory Town\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\82 Apps\Factory Town\Saved Games}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\82 Apps\\Factory Town\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\82 Apps\\Factory Town\\Saved Games}}" Factory of Monsters: pageId: 96891 steam: 875500 @@ -58061,26 +56479,26 @@ Fade Out: Fade to Black: pageId: 169300 templates: - - '{{Game data/saves|DOS|{{P|game}}}}' + - "{{Game data/saves|DOS|{{P|game}}}}" Fade to Silence: gog: 1986871555 pageId: 77681 steam: 706020 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\FadeToSilence\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\FadeToSilence\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\FadeToSilence\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\FadeToSilence\\Saved\\SaveGames\\}}" FadeZone: pageId: 144303 steam: 1123080 Fadeholm: pageId: 93726 steam: 757500 -'Fadeout: Underground': +"Fadeout: Underground": pageId: 178567 steam: 1306570 templates: - - '{{Game data/saves|Windows|{{p|localappdata}}\Grapple\Saved\SaveGames}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/Epic/Grapple/Saved/SaveGames}}' + - "{{Game data/saves|Windows|{{p|localappdata}}\\Grapple\\Saved\\SaveGames}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/Epic/Grapple/Saved/SaveGames}}" Fading: pageId: 78286 steam: 639320 @@ -58088,15 +56506,15 @@ Fading Hearts: pageId: 50686 steam: 259720 templates: - - '{{Game data/config|Windows|{{p|game}}\renpy\config.py}}' - - '{{Game data/saves|Windows|{{p|appdata}}\RenPy\Fading Hearts 1237998905\}}' + - "{{Game data/config|Windows|{{p|game}}\\renpy\\config.py}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\RenPy\\Fading Hearts 1237998905\\}}" Fading Visage: pageId: 94711 steam: 861180 Fading of Zarya 7: pageId: 65365 steam: 596580 -'Fadó: Chapter One': +"Fadó: Chapter One": pageId: 148691 steam: 1148200 Fae Tactics: @@ -58104,8 +56522,8 @@ Fae Tactics: pageId: 126183 steam: 995980 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\fae_tactics\lofconfig.ini}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\fae_tactics\lofsav.ini}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\fae_tactics\\lofconfig.ini}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\fae_tactics\\lofsav.ini}}" FaeVerse Alchemy: pageId: 16379 steam: 282880 @@ -58113,15 +56531,15 @@ Faeria: pageId: 44385 steam: 397060 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Abrakam\Faeria\}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Abrakam/Faeria/prefs }}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Abrakam\\Faeria\\}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Abrakam/Faeria/prefs }}" Faerie Solitaire: pageId: 1369 steam: 38600 templates: - - '{{Game data/saves|Windows|{{p|appdata}}\Faerie Solitaire}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Preferences/Faerie Solitaire}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/Faerie Solitaire/}}' + - "{{Game data/saves|Windows|{{p|appdata}}\\Faerie Solitaire}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Preferences/Faerie Solitaire}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/Faerie Solitaire/}}" Faerie Solitaire Dire: pageId: 135877 steam: 556530 @@ -58132,34 +56550,30 @@ Faerie Solitaire Remastered: pageId: 78322 steam: 583930 templates: - - >- - {{Game data/config|Windows|{{p|appdata}}\Faerie Solitaire Remastered|{{p|appdata}}\Faerie Solitaire Remastered - Defold}} - - >- - {{Game data/saves|Windows|{{p|appdata}}\Faerie Solitaire Remastered|{{p|appdata}}\Faerie Solitaire Remastered - Defold}} -'Faery: Legends of Avalon': + - "{{Game data/config|Windows|{{p|appdata}}\\Faerie Solitaire Remastered|{{p|appdata}}\\Faerie Solitaire Remastered Defold}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Faerie Solitaire Remastered|{{p|appdata}}\\Faerie Solitaire Remastered Defold}}" +"Faery: Legends of Avalon": pageId: 50053 steam: 303790 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Faery - Legends of Avalon\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Faery - Legends of Avalon\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Faery - Legends of Avalon\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Faery - Legends of Avalon\\}}" Fahrenheit: gog: 1207658979 pageId: 4137 steam: 9740 templates: - - '{{Game data/config|Windows|{{p|game}}\Fahrenheit.ini}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\atari\Fahrenheit Profile\}}' -'Fahrenheit: Indigo Prophecy Remastered': + - "{{Game data/config|Windows|{{p|game}}\\Fahrenheit.ini}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\atari\\Fahrenheit Profile\\}}" +"Fahrenheit: Indigo Prophecy Remastered": gog: 1103453760 pageId: 22434 steam: 312840 templates: - - '{{Game data/config|Windows|{{P|Game}}\fahrenheit.ini}}' - - '{{Game data/config|Linux|{{P|Game}}/steamassets/fahrenheit.ini}}' - - '{{Game data/saves|Amazon Games|{{P|userprofile\documents}}\Aspyr\Fahrenheit Profile\}}' - - '{{Game data/saves|Steam|{{P|Game}}\Saves\{{P|uid}}\}}' + - "{{Game data/config|Windows|{{P|Game}}\\fahrenheit.ini}}" + - "{{Game data/config|Linux|{{P|Game}}/steamassets/fahrenheit.ini}}" + - "{{Game data/saves|Amazon Games|{{P|userprofile\\documents}}\\Aspyr\\Fahrenheit Profile\\}}" + - "{{Game data/saves|Steam|{{P|Game}}\\Saves\\{{P|uid}}\\}}" Fail to Win: pageId: 154375 steam: 1147460 @@ -58167,15 +56581,15 @@ Failed Adventurer: pageId: 173524 steam: 1349850 templates: - - '{{Game data/config|Windows|{{p|userprofile\appdata\locallow}}\Srloop\FailedAdventurer\option}}' - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\Srloop\FailedAdventurer\playData}}' + - "{{Game data/config|Windows|{{p|userprofile\\appdata\\locallow}}\\Srloop\\FailedAdventurer\\option}}" + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\Srloop\\FailedAdventurer\\playData}}" Failed State: pageId: 39360 steam: 409350 Failspace: pageId: 122812 steam: 971650 -'Fair Deal: Las Vegas': +"Fair Deal: Las Vegas": pageId: 113690 steam: 916320 Fair Islands VR: @@ -58192,7 +56606,7 @@ Fairground 2 - The Ride Simulation: Fairies vs Bugs: pageId: 152841 steam: 1187850 -'Fairies vs. Darklings: Arcane Edition': +"Fairies vs. Darklings: Arcane Edition": pageId: 44403 steam: 434230 Fairly Certain Doom: @@ -58208,14 +56622,14 @@ Fairune Collection: pageId: 93748 steam: 783180 templates: - - '{{Game data/config|Windows|{{p|userprofile\appdata\locallow}}/Flyhigh Works/Fairune Collection}}' - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}/Flyhigh Works/Fairune Collection}}' + - "{{Game data/config|Windows|{{p|userprofile\\appdata\\locallow}}/Flyhigh Works/Fairune Collection}}" + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}/Flyhigh Works/Fairune Collection}}" Fairy Bloom Freesia: pageId: 23884 steam: 214590 templates: - - '{{Game data/config|Windows|{{p|appdata}}\FairyBloomRe\data\*.dat}}' - - '{{Game data/saves|Windows|{{p|appdata}}\FairyBloomRe\data\save\*.sav}}' + - "{{Game data/config|Windows|{{p|appdata}}\\FairyBloomRe\\data\\*.dat}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\FairyBloomRe\\data\\save\\*.sav}}" Fairy Escape: pageId: 92775 steam: 841030 @@ -58223,29 +56637,27 @@ Fairy Fencer F: pageId: 23023 steam: 347830 templates: - - '{{Game data/config|Windows|{{p|game}}\FairyFencer.ini}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Idea Factory International, Inc\Fairy Fencer F\}}' -'Fairy Fencer F: Advent Dark Force': + - "{{Game data/config|Windows|{{p|game}}\\FairyFencer.ini}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Idea Factory International, Inc\\Fairy Fencer F\\}}" +"Fairy Fencer F: Advent Dark Force": gog: 1858192628 pageId: 57452 renamedFrom: - Fairy Fencer F Advent Dark Force steam: 524580 templates: - - >- - {{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Idea Factory International, Inc\Fairy Fencer F - Advent Dark Force\}} + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Idea Factory International, Inc\\Fairy Fencer F Advent Dark Force\\}}" Fairy Fixer: pageId: 180516 templates: - - '{{Game data/saves|Windows|{{p|game}}\game\saves}}' -'Fairy Godmother Stories: Cinderella': + - "{{Game data/saves|Windows|{{p|game}}\\game\\saves}}" +"Fairy Godmother Stories: Cinderella": pageId: 153042 steam: 1196390 Fairy Knights: pageId: 127486 steam: 903850 -'Fairy Lands: Rinka and the Fairy Gems': +"Fairy Lands: Rinka and the Fairy Gems": pageId: 66464 steam: 680930 Fairy Light: @@ -58264,18 +56676,18 @@ Fairy Tail: pageId: 155140 steam: 1233260 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\KoeiTecmo\FAIRY TAIL\system_data.bin|{{P|game}}\game.ini}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\KoeiTecmo\FAIRY TAIL\}}' -'Fairy Tale About Father Frost, Ivan and Nastya': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\KoeiTecmo\\FAIRY TAIL\\system_data.bin|{{P|game}}\\game.ini}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\KoeiTecmo\\FAIRY TAIL\\}}" +"Fairy Tale About Father Frost, Ivan and Nastya": pageId: 21313 steam: 289320 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Centauri\Mrazik}}' - - '{{Game data/saves|Windows|{{p|game}}\}}' -'Fairy Tale Mysteries 2: The Beanstalk': + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Centauri\\Mrazik}}" + - "{{Game data/saves|Windows|{{p|game}}\\}}" +"Fairy Tale Mysteries 2: The Beanstalk": pageId: 46134 steam: 403510 -'Fairy Tale Mysteries: The Puppet Thief': +"Fairy Tale Mysteries: The Puppet Thief": pageId: 45067 steam: 429600 Fairy Tower Defense: @@ -58285,8 +56697,8 @@ Fairy Wars: pageId: 63107 steam: 1100180 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/saves|Windows|{{p|game}}\}}' + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\}}" Fairy in a Jar: pageId: 125585 renamedFrom: @@ -58295,28 +56707,28 @@ Fairy in a Jar: Fairy of the Treasures: pageId: 78542 steam: 770400 -'Fairyland: Blackberry Warrior': +"Fairyland: Blackberry Warrior": pageId: 98836 steam: 885600 -'Fairyland: Chronicle': +"Fairyland: Chronicle": pageId: 90582 steam: 827670 -'Fairyland: Fairy Power': +"Fairyland: Fairy Power": pageId: 53194 steam: 555940 -'Fairyland: Fairylines': +"Fairyland: Fairylines": pageId: 120941 steam: 968780 -'Fairyland: Incursion': +"Fairyland: Incursion": pageId: 42611 steam: 493760 -'Fairyland: Manuscript': +"Fairyland: Manuscript": pageId: 65845 steam: 666160 -'Fairyland: Power Dice': +"Fairyland: Power Dice": pageId: 99586 steam: 885310 -'Fairyland: The Guild': +"Fairyland: The Guild": pageId: 109826 steam: 916270 Fairytale Mosaics Beauty and Beast: @@ -58325,16 +56737,16 @@ Fairytale Mosaics Beauty and Beast: Fairytale Solitaire. Witch Charms: pageId: 156639 steam: 1164310 -'Fairytale Solitaire: Red Riding Hood': +"Fairytale Solitaire: Red Riding Hood": pageId: 141162 steam: 1095840 Faith of Danschant: pageId: 107368 steam: 724970 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\JoyfunRPG\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{p|steam}}\userdata\{{p|uid}}\724970\remote\}}' -'Faith of Danschant: Hereafter': + - "{{Game data/config|Windows|{{p|localappdata}}\\JoyfunRPG\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\724970\\remote\\}}" +"Faith of Danschant: Hereafter": pageId: 178700 Faith of Fate: pageId: 138578 @@ -58346,8 +56758,8 @@ Fake Colours: pageId: 49045 steam: 334300 templates: - - '{{Game data/config|Windows|{{p|HKCU}}\Software\Forthright Entertainment\Fake Colours\}}' - - '{{Game data/saves|Windows|{{p|HKCU}}\Software\Forthright Entertainment\Fake Colours\}}' + - "{{Game data/config|Windows|{{p|HKCU}}\\Software\\Forthright Entertainment\\Fake Colours\\}}" + - "{{Game data/saves|Windows|{{p|HKCU}}\\Software\\Forthright Entertainment\\Fake Colours\\}}" Fake Happy End: pageId: 56882 steam: 572640 @@ -58363,7 +56775,7 @@ Fake World: Fake/SuperSonia: pageId: 70110 steam: 705840 -'Fakespearean: Overdramatic': +"Fakespearean: Overdramatic": pageId: 134576 steam: 1070390 Falcon: @@ -58379,8 +56791,8 @@ Falcon 3.0: pageId: 45036 steam: 429520 templates: - - '{{Game data/config|DOS|{{p|game}}\falcon3.def|{{p|game}}\mig29.def|{{p|game}}\hornet.def}}' - - '{{Game data/saves|DOS|{{p|game}}\squad*.*}}' + - "{{Game data/config|DOS|{{p|game}}\\falcon3.def|{{p|game}}\\mig29.def|{{p|game}}\\hornet.def}}" + - "{{Game data/saves|DOS|{{p|game}}\\squad*.*}}" Falcon 4.0: gog: 1443160514 gogSide: @@ -58388,13 +56800,13 @@ Falcon 4.0: pageId: 1247 steam: 429530 templates: - - '{{Game data/config|Windows|{{p|game}}\config}}' - - '{{Game data/saves|Windows|{{p|game}}\campaign\SAVE}}' -'Falcon 4.0: Allied Force': + - "{{Game data/config|Windows|{{p|game}}\\config}}" + - "{{Game data/saves|Windows|{{p|game}}\\campaign\\SAVE}}" +"Falcon 4.0: Allied Force": pageId: 186994 templates: - - '{{Game data/config|Windows|{{p|game}}\global.cfg|{{p|game}}\config}}' - - '{{Game data/saves|Windows|{{p|game}}\Campaign\[campaign name]\*.tac}}' + - "{{Game data/config|Windows|{{p|game}}\\global.cfg|{{p|game}}\\config}}" + - "{{Game data/saves|Windows|{{p|game}}\\Campaign\\[campaign name]\\*.tac}}" Falcon A.T.: gog: 1443160586 gogSide: @@ -58405,10 +56817,8 @@ Falcon Age: pageId: 139834 steam: 1075080 templates: - - >- - {{Game data/config|Windows|{{P|hkcu}}\Software\Outerloop - Games\FalconAge|{{P|userprofile\appdata\locallow}}\Outerloop Games\FalconAge\OPTIONS.opt}} - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Falcon Age\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Outerloop Games\\FalconAge|{{P|userprofile\\appdata\\locallow}}\\Outerloop Games\\FalconAge\\OPTIONS.opt}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Falcon Age\\}}" Falcon City: pageId: 161263 steam: 1270590 @@ -58421,10 +56831,10 @@ Fall Fear Fly Redemption: Fall Guys: pageId: 139641 renamedFrom: - - 'Fall Guys: Ultimate Knockout' + - "Fall Guys: Ultimate Knockout" steam: 1097150 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\SOFTWARE\Mediatonic\FallGuys_client}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\SOFTWARE\\Mediatonic\\FallGuys_client}}" Fall In Love - My Billionaire Boss: pageId: 140783 steam: 985690 @@ -58441,13 +56851,13 @@ Fall of Light: pageId: 62590 steam: 633950 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\RuneHeads\FallOfLight\}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\RuneHeads\FallOfLight\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\RuneHeads\\FallOfLight\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\RuneHeads\\FallOfLight\\}}" Fall of Porcupine: gog: 1956203012 gogSide: - - 1876546888 - 1238928286 + - 1876546888 pageId: 187975 steam: 1710540 steamSide: @@ -58474,7 +56884,7 @@ Fallback: pageId: 95387 steam: 864540 templates: - - '{{Game data/saves|Windows|{{p|game}}\fallback_Data\Save\*}}' + - "{{Game data/saves|Windows|{{p|game}}\\fallback_Data\\Save\\*}}" Fallen: pageId: 55532 steam: 570890 @@ -58483,12 +56893,12 @@ Fallen Aces: pageId: 171950 steam: 1411910 templates: - - '{{Game data/config|Windows|{{P|userprofile\appdata\locallow}}\New Blood Interactive\Fallen Aces\}}' + - "{{Game data/config|Windows|{{P|userprofile\\appdata\\locallow}}\\New Blood Interactive\\Fallen Aces\\}}" Fallen Angel: pageId: 145433 steam: 1124560 templates: - - '{{Game data/saves|Windows|{{P|localappdata}}\Fallen_Angel\}}' + - "{{Game data/saves|Windows|{{P|localappdata}}\\Fallen_Angel\\}}" Fallen Beast (Project Ora) US Version: pageId: 102579 steam: 882830 @@ -58510,43 +56920,43 @@ Fallen Emiya: Fallen Empires: pageId: 128599 steam: 824900 -'Fallen Enchantress: Legendary Heroes': +"Fallen Enchantress: Legendary Heroes": gog: 1449593992 pageId: 21977 steam: 228260 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\LegendaryHeroes\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\LegendaryHeroes\Saves\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\LegendaryHeroes\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\LegendaryHeroes\\Saves\\}}" Fallen Haven: gog: 2099920872 pageId: 131805 templates: - - '{{Game data/saves|Windows|{{p|game}}\savegame.**}}' -'Fallen Haven: Liberation Day': + - "{{Game data/saves|Windows|{{p|game}}\\savegame.**}}" +"Fallen Haven: Liberation Day": gog: 1119459074 pageId: 131807 templates: - - '{{Game data/config|Windows|{{p|game}}\EXE\LIBDAY.INI}}' - - '{{Game data/saves|Windows|{{p|game}}\SAVEGAME}}' + - "{{Game data/config|Windows|{{p|game}}\\EXE\\LIBDAY.INI}}" + - "{{Game data/saves|Windows|{{p|game}}\\SAVEGAME}}" Fallen Hearts: pageId: 156400 steam: 1032450 -'Fallen Hero: Rebirth': +"Fallen Hero: Rebirth": pageId: 87173 steam: 800620 templates: - - '{{Game data/saves|Windows|Steam/userdata//800620/remote/storePSfallenherorebirthPSstate}}' + - "{{Game data/saves|Windows|Steam/userdata//800620/remote/storePSfallenherorebirthPSstate}}" Fallen Kingdom: pageId: 74932 steam: 722410 Fallen Knight: pageId: 152330 steam: 1378370 -'Fallen Legion: Revenants': +"Fallen Legion: Revenants": gog: 1117246454 pageId: 181164 steam: 1921340 -'Fallen Legion: Rise to Glory': +"Fallen Legion: Rise to Glory": gog: 1239542637 pageId: 77321 renamedFrom: @@ -58570,10 +56980,10 @@ Fallen Times: Fallen valiant-Loopy: pageId: 149899 steam: 1096120 -'Fallen: A2P Protocol': +"Fallen: A2P Protocol": pageId: 46875 steam: 325790 -'Fallen: Makina and the City of Ruins': +"Fallen: Makina and the City of Ruins": gog: 1365841075 pageId: 82141 renamedFrom: @@ -58595,13 +57005,13 @@ Falling Frontier: Falling Plus: pageId: 123600 steam: 934480 -'Falling Skies: The Game': +"Falling Skies: The Game": pageId: 49588 steam: 290410 Falling Slime: pageId: 94431 steam: 838150 -'Falling Stars: War of Empires': +"Falling Stars: War of Empires": pageId: 43352 steam: 439960 Falling Words: @@ -58618,10 +57028,10 @@ Fallout: pageId: 1892 steam: 38400 templates: - - '{{Game data/config|DOS|{{p|game}}\fallout.cfg}}' - - '{{Game data/config|Windows|{{p|game}}\fallout.cfg}}' - - '{{Game data/saves|DOS|{{p|game}}\data\SAVEGAME\}}' - - '{{Game data/saves|Windows|{{p|game}}\data\SAVEGAME\}}' + - "{{Game data/config|DOS|{{p|game}}\\fallout.cfg}}" + - "{{Game data/config|Windows|{{p|game}}\\fallout.cfg}}" + - "{{Game data/saves|DOS|{{p|game}}\\data\\SAVEGAME\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\data\\SAVEGAME\\}}" Fallout 2: gog: 1440166436 gogSide: @@ -58630,11 +57040,9 @@ Fallout 2: pageId: 1352 steam: 38410 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/saves|Windows|{{p|game}}\data\SAVEGAME}}' - - >- - {{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Fallout 2/saves/|~/Library/Application - Support/GOG.com/Fallout 2/saves/}} + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\data\\SAVEGAME}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Fallout 2/saves/|~/Library/Application Support/GOG.com/Fallout 2/saves/}}" Fallout 3: gog: 1248282609 gogSide: @@ -58642,15 +57050,15 @@ Fallout 3: pageId: 198 steam: 22300 steamSide: + - 22370 - 22400 - 22410 - 22420 - 22430 - 22440 - - 22370 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Fallout3\*.ini}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Fallout3\Saves\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Fallout3\\*.ini}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Fallout3\\Saves\\}}" Fallout 4: gog: 1998527297 gogSide: @@ -58661,14 +57069,14 @@ Fallout 4: - 404090 - 540810 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Fallout4\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Fallout4\Saves\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Fallout4\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Fallout4\\Saves\\}}" Fallout 4 VR: pageId: 63527 steam: 611660 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Fallout4VR\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Fallout4VR\Saves\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Fallout4VR\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Fallout4VR\\Saves\\}}" Fallout 76: pageId: 95739 steam: 1151340 @@ -58679,15 +57087,15 @@ Fallout 76: - 1224341 - 1224350 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\My Games\Fallout 76\}}' - - '{{Game data/config|Microsoft Store|{{P|userprofile\Documents}}\My Games\Fallout 76\}}' + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\My Games\\Fallout 76\\}}" + - "{{Game data/config|Microsoft Store|{{P|userprofile\\Documents}}\\My Games\\Fallout 76\\}}" Fallout Shelter: pageId: 33356 steam: 588430 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Bethesda\Fallout Shelter\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\FalloutShelter\}}' -'Fallout Tactics: Brotherhood of Steel': + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Bethesda\\Fallout Shelter\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\FalloutShelter\\}}" +"Fallout Tactics: Brotherhood of Steel": gog: 1440163405 gogSide: - 3 @@ -58695,33 +57103,33 @@ Fallout Shelter: pageId: 3390 steam: 38420 templates: - - '{{Game data/config|Windows|{{p|game}}\core\bos.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\core\user}}' -'Fallout: New Vegas': + - "{{Game data/config|Windows|{{p|game}}\\core\\bos.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\core\\user}}" +"Fallout: New Vegas": gog: 1312824873 gogSide: - 1454587428 pageId: 573 steam: 22380 steamSide: - - 2028016 - - 72840 - - 901778 - - 72760 - - 72750 - - 72740 - - 72730 - 22470 - 22490 - - 72774 - 72709 + - 72730 + - 72740 + - 72750 + - 72760 - 72770 - 72772 - 72773 + - 72774 + - 72840 + - 901778 + - 2028016 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\FalloutNV\*.ini}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\FalloutNV\Saves}}' - - '{{Game data/saves|Epic Games Store|{{p|userprofile\Documents}}\My Games\FalloutNV_Epic\Saves}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\FalloutNV\\*.ini}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\FalloutNV\\Saves}}" + - "{{Game data/saves|Epic Games Store|{{p|userprofile\\Documents}}\\My Games\\FalloutNV_Epic\\Saves}}" Fallstreak: pageId: 121460 steam: 935920 @@ -58743,20 +57151,20 @@ False Shelter: Falsemen: pageId: 82904 steam: 643930 -'Falsemen: Demon Rebirth': +"Falsemen: Demon Rebirth": pageId: 130119 renamedFrom: - - '拯救大魔王重生 Falsemen: Demon Rebirth' + - "拯救大魔王重生 Falsemen: Demon Rebirth" steam: 859280 -'Falsus Chronicle: Ancient Treasure': +"Falsus Chronicle: Ancient Treasure": pageId: 78532 steam: 745930 Famaze: pageId: 50318 steam: 297210 templates: - - '{{Game data/config|Windows|{{p|appdata}}\famaze\}}' - - '{{Game data/saves|Windows|{{p|appdata}}\famaze\}}' + - "{{Game data/config|Windows|{{p|appdata}}\\famaze\\}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\famaze\\}}" Familia: pageId: 154118 steam: 1197520 @@ -58764,20 +57172,20 @@ Familiar Travels: pageId: 143419 steam: 1127070 templates: - - '{{Game data/saves|Windows|{{p|localappdata}}\FT_Game\Local Storage}}' + - "{{Game data/saves|Windows|{{p|localappdata}}\\FT_Game\\Local Storage}}" Family Cobweb: pageId: 65241 steam: 670810 -'Family Feud: Dream Home': +"Family Feud: Dream Home": pageId: 180961 -'Family Guy: Back to the Multiverse': +"Family Guy: Back to the Multiverse": pageId: 21821 steam: 214230 steamSide: - 223691 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Heavy Iron Studios Inc.\Family Guy\Settings\}}' - - '{{Game data/saves|Windows|{{p|game}}\Save\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Heavy Iron Studios Inc.\\Family Guy\\Settings\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\Save\\}}" Family Hidden Secret: pageId: 132680 steam: 1056580 @@ -58788,7 +57196,7 @@ Family Man: pageId: 109446 steam: 904360 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Broken Bear\FamilyMan}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Broken Bear\\FamilyMan}}" Family Secret: pageId: 75039 steam: 733270 @@ -58807,13 +57215,13 @@ FanaticBlader: Fancy Fishing VR: pageId: 58656 steam: 601940 -'Fancy Skiing 2: Online': +"Fancy Skiing 2: Online": pageId: 100126 steam: 876930 Fancy Skiing VR: pageId: 35974 steam: 512080 -'Fancy Skiing: Speed': +"Fancy Skiing: Speed": pageId: 138709 steam: 1081910 Fancy Skulls: @@ -58840,10 +57248,8 @@ Fantasia of the Wind 2: Fantasian: pageId: 167748 templates: - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Preferences/com.mistwalkercorp.fantasian.plist}}' - - >- - {{Game data/saves|OS X|{{p|osxhome}}/Library/Containers/com.mistwalkercorp.fantasian/Data/Library/Application - Support/FANTASIAN}} + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Preferences/com.mistwalkercorp.fantasian.plist}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Containers/com.mistwalkercorp.fantasian/Data/Library/Application Support/FANTASIAN}}" Fantasization: pageId: 73058 steam: 708200 @@ -58852,10 +57258,8 @@ Fantastic 4: renamedFrom: - Fantastic Four templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\Activision\Fantastic - Four\|{{p|hkcu}}\Software\Activision\F4\}} - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Activision\Fantastic Four\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Activision\\Fantastic Four\\|{{p|hkcu}}\\Software\\Activision\\F4\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Activision\\Fantastic Four\\}}" Fantastic 4 In A Row 2: pageId: 41613 steam: 514470 @@ -58915,12 +57319,12 @@ Fantasy Empires: pageId: 160986 steam: 2350530 templates: - - '{{Game data/config|DOS|{{p|game}}}}' - - '{{Game data/saves|DOS|{{p|game}}}}' + - "{{Game data/config|DOS|{{p|game}}}}" + - "{{Game data/saves|DOS|{{p|game}}}}" Fantasy Fairways: pageId: 53120 steam: 552690 -'Fantasy Farming: Orange Season': +"Fantasy Farming: Orange Season": pageId: 61050 steam: 416000 Fantasy General: @@ -58928,20 +57332,18 @@ Fantasy General: pageId: 61383 steam: 1741120 templates: - - '{{Game data/config|DOS|{{p|game}}\DAT\PREFS.DAT}}' - - '{{Game data/saves|DOS|{{p|game}}\SAVES\}}' + - "{{Game data/config|DOS|{{p|game}}\\DAT\\PREFS.DAT}}" + - "{{Game data/saves|DOS|{{p|game}}\\SAVES\\}}" Fantasy General II: gog: 1090255211 pageId: 133346 steam: 1025440 steamSide: - - 1193871 - 1193870 + - 1193871 templates: - - >- - {{Game data/config|Windows|{{P|userprofile\Documents}}\My Games\Fantasy General - II\Custom.fg2settings|{{P|hkcu}}\Software\Owned By Gravity GmbH\Fantasy General II\}} - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\My Games\Fantasy General II\Savegames\}}' + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\My Games\\Fantasy General II\\Custom.fg2settings|{{P|hkcu}}\\Software\\Owned By Gravity GmbH\\Fantasy General II\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\My Games\\Fantasy General II\\Savegames\\}}" Fantasy Girl: pageId: 135549 steam: 1064730 @@ -59238,48 +57640,48 @@ Fantasy Little Jobs: Fantasy Monarch: pageId: 139282 steam: 949680 -'Fantasy Mosaics 14: Fourth Color': +"Fantasy Mosaics 14: Fourth Color": pageId: 42694 steam: 487020 templates: - - '{{Game data/saves|Windows|{{p|localappdata}}\fantasy_mosaics_14\}}' -'Fantasy Mosaics 15: Ancient Land': + - "{{Game data/saves|Windows|{{p|localappdata}}\\fantasy_mosaics_14\\}}" +"Fantasy Mosaics 15: Ancient Land": pageId: 63807 steam: 656660 -'Fantasy Mosaics 16: Six Colors in Wonderland': +"Fantasy Mosaics 16: Six Colors in Wonderland": pageId: 63837 steam: 658800 -'Fantasy Mosaics 17: New Palette': +"Fantasy Mosaics 17: New Palette": pageId: 64083 steam: 659890 -'Fantasy Mosaics 18: Explore New Colors': +"Fantasy Mosaics 18: Explore New Colors": pageId: 64093 steam: 660030 -'Fantasy Mosaics 19: Edge of the World': +"Fantasy Mosaics 19: Edge of the World": pageId: 82043 steam: 795940 -'Fantasy Mosaics 20: Castle of Puzzles': +"Fantasy Mosaics 20: Castle of Puzzles": pageId: 82131 steam: 796490 -'Fantasy Mosaics 21: On the Movie Set': +"Fantasy Mosaics 21: On the Movie Set": pageId: 82149 steam: 797300 -'Fantasy Mosaics 22: Summer Vacation': +"Fantasy Mosaics 22: Summer Vacation": pageId: 82159 steam: 797310 -'Fantasy Mosaics 23: Magic Forest': +"Fantasy Mosaics 23: Magic Forest": pageId: 82165 steam: 797330 -'Fantasy Mosaics 24: Deserted Island': +"Fantasy Mosaics 24: Deserted Island": pageId: 82175 steam: 797340 -'Fantasy Mosaics 25: Wedding Ceremony': +"Fantasy Mosaics 25: Wedding Ceremony": pageId: 82179 steam: 797350 -'Fantasy Mosaics 26: Fairytale Garden': +"Fantasy Mosaics 26: Fairytale Garden": pageId: 82193 steam: 797440 -'Fantasy Mosaics 27: Secret Colors': +"Fantasy Mosaics 27: Secret Colors": pageId: 88876 steam: 797450 Fantasy Quest Solitiare: @@ -59313,20 +57715,20 @@ Fantasy Versus: pageId: 93160 steam: 787400 templates: - - '{{Game data/saves|Windows|{{p|game}}\FantasyVersus_Data\SaveFile.dat}}' + - "{{Game data/saves|Windows|{{p|game}}\\FantasyVersus_Data\\SaveFile.dat}}" Fantasy Wars: gog: 1207658868 pageId: 14917 steam: 63900 templates: - - '{{Game data/config|Windows|{{p|userprofile\documents}}\Fantasy Wars\Profiles}}' - - '{{Game data/saves|Windows|{{p|userprofile\documents}}\Fantasy Wars\Profiles}}' + - "{{Game data/config|Windows|{{p|userprofile\\documents}}\\Fantasy Wars\\Profiles}}" + - "{{Game data/saves|Windows|{{p|userprofile\\documents}}\\Fantasy Wars\\Profiles}}" Fantasy World: pageId: 72179 steam: 708790 Fantasy World Dizzy: pageId: 161960 -'Fantasy World: A Land Torn Asunder': +"Fantasy World: A Land Torn Asunder": pageId: 89430 steam: 762240 Fantasy of Eden: @@ -59335,7 +57737,7 @@ Fantasy of Eden: Fantasy of Expedition: pageId: 126022 steam: 780670 -'FantasyDynasty: Le château DERETIC': +"FantasyDynasty: Le château DERETIC": pageId: 92787 steam: 842070 Fantasya Final Definitiva Remake: @@ -59344,7 +57746,7 @@ Fantasya Final Definitiva Remake: Fantasyland: pageId: 92033 steam: 833300 -'Fantasynth: Chez Nous': +"Fantasynth: Chez Nous": pageId: 89334 steam: 624460 Fantom Feast: @@ -59362,7 +57764,7 @@ Fapic: Far Away: pageId: 174063 steam: 1250760 -'Far Beyond: A Space Odyssey': +"Far Beyond: A Space Odyssey": pageId: 52247 steam: 531050 Far Cnight: @@ -59373,66 +57775,58 @@ Far Cry: pageId: 3802 steam: 13520 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/saves|Windows|{{p|game}}\Profiles\player\{{p|uid}}\savegames}}' + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\Profiles\\player\\{{p|uid}}\\savegames}}" Far Cry 2: gog: 1207659042 pageId: 1333 steam: 19900 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Far Cry 2\GamerProfile.xml|{{P|localappdata}}\My - Games\Far Cry 2\InputUserActionMap.xml}} - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Far Cry 2\Saved Games\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Far Cry 2\\GamerProfile.xml|{{P|localappdata}}\\My Games\\Far Cry 2\\InputUserActionMap.xml}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Far Cry 2\\Saved Games\\}}" Far Cry 3: pageId: 3763 steam: 220240 steamSide: - 226459 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Far Cry 3\GamerProfile.xml|{{p|localappdata}}\My - Games\Far Cry 3\InputUserActionMap.xml}} - - '{{Game data/saves|Windows|{{p|uplay}}\savegames\{{p|uid}}\46\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Far Cry 3\\GamerProfile.xml|{{p|localappdata}}\\My Games\\Far Cry 3\\InputUserActionMap.xml}}" + - "{{Game data/saves|Windows|{{p|uplay}}\\savegames\\{{p|uid}}\\46\\}}" Far Cry 3 Blood Dragon: pageId: 6362 renamedFrom: - Far Cry 3 - Blood Dragon steam: 233270 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Far Cry 3 Blood - Dragon\GamerProfile.xml|{{P|localappdata}}\My Games\Far Cry 3 Blood Dragon\InputUserActionMap.xml}} - - '{{Game data/saves|Uplay|{{p|uplay}}\savegames\{{p|uid}}\205\}}' - - '{{Game data/saves|Steam|{{p|programdata}}\Orbit\205\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Far Cry 3 Blood Dragon\\GamerProfile.xml|{{P|localappdata}}\\My Games\\Far Cry 3 Blood Dragon\\InputUserActionMap.xml}}" + - "{{Game data/saves|Uplay|{{p|uplay}}\\savegames\\{{p|uid}}\\205\\}}" + - "{{Game data/saves|Steam|{{p|programdata}}\\Orbit\\205\\}}" Far Cry 4: pageId: 17330 steam: 298110 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Far Cry 4\{{p|uid}}\*.xml}}' - - >- - {{Game - data/saves|Windows|{{p|uplay}}\savegames\{{p|uid}}\420\|{{p|uplay}}\savegames\{{p|uid}}\856\|{{p|uplay}}\savegames\{{p|uid}}\971\}} + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Far Cry 4\\{{p|uid}}\\*.xml}}" + - "{{Game data/saves|Windows|{{p|uplay}}\\savegames\\{{p|uid}}\\420\\|{{p|uplay}}\\savegames\\{{p|uid}}\\856\\|{{p|uplay}}\\savegames\\{{p|uid}}\\971\\}}" Far Cry 5: pageId: 62697 steam: 552520 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Far Cry 5\*.xml}}' - - '{{Game data/saves|Ubisoft Connect|{{p|uplay}}\savegames\{{p|uid}}\1803\}}' - - '{{Game data/saves|Steam|{{p|uplay}}\savegames\{{p|uid}}\4311\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Far Cry 5\\*.xml}}" + - "{{Game data/saves|Ubisoft Connect|{{p|uplay}}\\savegames\\{{p|uid}}\\1803\\}}" + - "{{Game data/saves|Steam|{{p|uplay}}\\savegames\\{{p|uid}}\\4311\\}}" Far Cry 6: pageId: 161767 steam: 2369390 steamSide: - - 2369472 - - 2369470 - - 2369458 - - 2369456 - - 2369454 - 2369450 + - 2369454 + - 2369456 + - 2369458 + - 2369470 + - 2369472 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Far Cry 6\}}' - - '{{Game data/saves|Windows|{{p|uplay}}\savegames\{{p|uid}}\5266\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Far Cry 6\\}}" + - "{{Game data/saves|Windows|{{p|uplay}}\\savegames\\{{p|uid}}\\5266\\}}" Far Cry New Dawn: pageId: 124446 steam: 939960 @@ -59443,15 +57837,15 @@ Far Cry New Dawn: - 1019512 - 1019513 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Far Cry New Dawn\*.xml}}' - - '{{Game data/saves|Windows|{{p|uplay}}\savegames\{{p|uid}}\5210\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Far Cry New Dawn\\*.xml}}" + - "{{Game data/saves|Windows|{{p|uplay}}\\savegames\\{{p|uid}}\\5210\\}}" Far Cry Primal: pageId: 30633 steam: 371660 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Far Cry Primal\*.xml}}' - - '{{Game data/saves|Ubisoft Connect|{{p|uplay}}\savegames\{{p|uid}}\2010\}}' - - '{{Game data/saves|Steam|{{p|uplay}}\savegames\{{p|uid}}\2029\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Far Cry Primal\\*.xml}}" + - "{{Game data/saves|Ubisoft Connect|{{p|uplay}}\\savegames\\{{p|uid}}\\2010\\}}" + - "{{Game data/saves|Steam|{{p|uplay}}\\savegames\\{{p|uid}}\\2029\\}}" Far From Orbit: pageId: 149586 steam: 1148740 @@ -59461,7 +57855,7 @@ Far Space: Far Space VR: pageId: 61956 steam: 594730 -'Far Til Fire: Gi''r Aldrig Op': +"Far Til Fire: Gi'r Aldrig Op": pageId: 126668 Far from Noise: pageId: 70377 @@ -59473,42 +57867,39 @@ FarSky: pageId: 16491 steam: 286340 templates: - - '{{Game data/config|Windows|{{p|appdata}}\FarSky\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/.FarSky/}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.FarSky/}}' - - '{{Game data/saves|Windows|{{p|appdata}}\FarSky\save\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/.FarSky/save/}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.FarSky/save/}}' + - "{{Game data/config|Windows|{{p|appdata}}\\FarSky\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/.FarSky/}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.FarSky/}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\FarSky\\save\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/.FarSky/save/}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.FarSky/save/}}" Farabel: pageId: 39284 steam: 364200 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Frogames\Farabel\}}' - - >- - {{Game - data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Frogames\Farabel\Saves\|{{p|hkcu}}\Software\Frogames\Farabel\ - (If not running Steam)}} + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Frogames\\Farabel\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Frogames\\Farabel\\Saves\\|{{p|hkcu}}\\Software\\Frogames\\Farabel\\ (If not running Steam)}}" Faraday Protocol: gog: 2077208216 pageId: 168617 steam: 1107750 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\FaradayProtocol\Saved\SaveGames\}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\FaradayProtocol\Saved\Config\WindowsNoEditor\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\FaradayProtocol\\Saved\\SaveGames\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\FaradayProtocol\\Saved\\Config\\WindowsNoEditor\\}}" Faraway: pageId: 180167 steam: 2058060 Faraway Islands: pageId: 57742 steam: 576060 -'Faraway: Director''s Cut': +"Faraway: Director's Cut": pageId: 167108 steam: 883880 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\SOFTWARE\Pine Studio\Faraway: Director''s Cut}}' - - '{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/Pine Studio/Faraway_ Director''s Cut/prefs}}' - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Pine Studio\Faraway_ Director''s Cut\*.save}}' - - '{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/Pine Studio/Faraway_ Director''s Cut/*.save}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\SOFTWARE\\Pine Studio\\Faraway: Director's Cut}}" + - "{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/Pine Studio/Faraway_ Director's Cut/prefs}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Pine Studio\\Faraway_ Director's Cut\\*.save}}" + - "{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/Pine Studio/Faraway_ Director's Cut/*.save}}" Fare Thee Well: pageId: 91032 steam: 674580 @@ -59518,10 +57909,10 @@ Fares: Farhome: pageId: 90544 steam: 787550 -'Faria: Spiritbird': +"Faria: Spiritbird": pageId: 88664 steam: 723370 -'Fariwalk: The Prelude': +"Fariwalk: The Prelude": pageId: 75103 steam: 738560 Farjob: @@ -59539,20 +57930,20 @@ Farlanders: steamSide: - 1460540 templates: - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\Andriy Bychkovskyi\Farlanders\*.json}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Andriy Bychkovskyi/Farlanders/*.json}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Andriy Bychkovskyi/Farlanders/*.json}}' + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\Andriy Bychkovskyi\\Farlanders\\*.json}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Andriy Bychkovskyi/Farlanders/*.json}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Andriy Bychkovskyi/Farlanders/*.json}}" Farlight 84: pageId: 185110 steam: 1928420 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Solarland\Saved\Config\WindowsClient}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Solarland\\Saved\\Config\\WindowsClient}}" Farlight Explorers: pageId: 28746 steam: 352430 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\FarlightExplorers\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\FarlightExplorers\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\FarlightExplorers\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\FarlightExplorers\\Saved\\SaveGames\\}}" Farm Business: pageId: 122168 steam: 973110 @@ -59569,14 +57960,14 @@ Farm Frenzy: pageId: 41174 steam: 38120 templates: - - '{{Game data/config|Windows|C:\ProgramData\Farm Frenzy}}' + - "{{Game data/config|Windows|C:\\ProgramData\\Farm Frenzy}}" Farm Frenzy 2: pageId: 41175 steam: 38130 Farm Frenzy 3: pageId: 41177 steam: 38150 -'Farm Frenzy 3: American Pie': +"Farm Frenzy 3: American Pie": pageId: 41178 steam: 38160 Farm Frenzy 4: @@ -59585,18 +57976,18 @@ Farm Frenzy 4: Farm Frenzy Collection: pageId: 46783 steam: 391000 -'Farm Frenzy: Heave Ho': +"Farm Frenzy: Heave Ho": pageId: 46703 steam: 395930 -'Farm Frenzy: Hurricane Season': +"Farm Frenzy: Hurricane Season": pageId: 47389 steam: 361930 -'Farm Frenzy: Pizza Party': +"Farm Frenzy: Pizza Party": pageId: 41176 steam: 38140 Farm It!: pageId: 167285 -'Farm Life: Natures Adventure': +"Farm Life: Natures Adventure": pageId: 36185 steam: 511330 Farm Machines Championships 2014: @@ -59606,7 +57997,7 @@ Farm Manager 2018: pageId: 69266 steam: 495560 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\PlayWay\Farm Manager 2018\saves}}' + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\PlayWay\\Farm Manager 2018\\saves}}" Farm Manager 2021: pageId: 157221 renamedFrom: @@ -59615,7 +58006,7 @@ Farm Manager 2021: Farm Mania 2: pageId: 80326 steam: 573710 -'Farm Mania: Hot Vacation': +"Farm Mania: Hot Vacation": pageId: 45934 steam: 412930 Farm Mechanic Simulator 2015: @@ -59648,17 +58039,17 @@ FarmD: Farmer Pug Dash: pageId: 156588 steam: 1221830 -Farmer's Dynasty: +"Farmer's Dynasty": gog: 1317256893 pageId: 75111 steam: 678900 templates: - - '{{Game data/config|Windows|{{p|AppData}}\FarmersDynasty\Save}}' - - '{{Game data/saves|Windows|{{p|AppData}}\FarmersDynasty\Save}}' -Farmer's Fairy Tale: + - "{{Game data/config|Windows|{{p|AppData}}\\FarmersDynasty\\Save}}" + - "{{Game data/saves|Windows|{{p|AppData}}\\FarmersDynasty\\Save}}" +"Farmer's Fairy Tale": pageId: 108920 steam: 821820 -Farmer's Life: +"Farmer's Life": gog: 1997897783 pageId: 145554 steam: 1137750 @@ -59675,76 +58066,54 @@ Farming Simulator 15: pageId: 33285 steam: 313160 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\FarmingSimulator2015\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application\ Support/FarmingSimulator2015/}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\FarmingSimulator2015\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application\ Support/FarmingSimulator2015/}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\FarmingSimulator2015\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application\\ Support/FarmingSimulator2015/}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\FarmingSimulator2015\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application\\ Support/FarmingSimulator2015/}}" Farming Simulator 16: pageId: 168192 templates: - - >- - {{Game data/saves|Microsoft - Store|{{p|programfiles}}\WindowsApps\GIANTSSoftware.FarmingSimulator16_1.1.2.8_x86__fa8jxm5fj0esw}} + - "{{Game data/saves|Microsoft Store|{{p|programfiles}}\\WindowsApps\\GIANTSSoftware.FarmingSimulator16_1.1.2.8_x86__fa8jxm5fj0esw}}" Farming Simulator 17: pageId: 39292 steam: 447020 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\FarmingSimulator2017\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\FarmingSimulator2017\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\FarmingSimulator2017\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\FarmingSimulator2017\\}}" Farming Simulator 19: pageId: 105415 steam: 787860 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\My - Games\FarmingSimulator2019\game.xml|{{p|userprofile\Documents}}\My - Games\FarmingSimulator2019\gameSettings.xml|{{p|userprofile\Documents}}\My - Games\FarmingSimulator2019\inputBinding.xml}} - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\FarmingSimulator2019\savegame*\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\FarmingSimulator2019\\game.xml|{{p|userprofile\\Documents}}\\My Games\\FarmingSimulator2019\\gameSettings.xml|{{p|userprofile\\Documents}}\\My Games\\FarmingSimulator2019\\inputBinding.xml}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\FarmingSimulator2019\\savegame*\\}}" Farming Simulator 2008: pageId: 171486 templates: - - '{{Game data/config|Windows|{{p|appdata}}\FarmingSimulator2008\game.xml\}}' - - '{{Game data/saves|Windows|{{p|appdata}}\FarmingSimulator2008\savegame*\}}' + - "{{Game data/config|Windows|{{p|appdata}}\\FarmingSimulator2008\\game.xml\\}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\FarmingSimulator2008\\savegame*\\}}" Farming Simulator 2009: pageId: 171490 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\My - Games\FarmingSimulator2009\game.xml|{{p|userprofile\Documents}}\My - Games\FarmingSimulator2009\gameSettings.xml|{{p|userprofile\Documents}}\My - Games\FarmingSimulator2009\inputBinding.xml}} - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\FarmingSimulator2009\savegame*\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\FarmingSimulator2009\\game.xml|{{p|userprofile\\Documents}}\\My Games\\FarmingSimulator2009\\gameSettings.xml|{{p|userprofile\\Documents}}\\My Games\\FarmingSimulator2009\\inputBinding.xml}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\FarmingSimulator2009\\savegame*\\}}" Farming Simulator 2011: pageId: 33464 steam: 90200 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\My - Games\FarmingSimulator2011\game.xml|{{p|userprofile\Documents}}\My - Games\FarmingSimulator2011\gameSettings.xml|{{p|userprofile\Documents}}\My - Games\FarmingSimulator2011\inputBinding.xml}} - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\FarmingSimulator2011\savegame*\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\FarmingSimulator2011\\game.xml|{{p|userprofile\\Documents}}\\My Games\\FarmingSimulator2011\\gameSettings.xml|{{p|userprofile\\Documents}}\\My Games\\FarmingSimulator2011\\inputBinding.xml}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\FarmingSimulator2011\\savegame*\\}}" Farming Simulator 2013: pageId: 13948 steam: 220260 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\My - Games\FarmingSimulator2013\game.xml|{{p|userprofile\Documents}}\My - Games\FarmingSimulator2013\gameSettings.xml|{{p|userprofile\Documents}}\My - Games\FarmingSimulator2013\inputBinding.xml}} - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\FarmingSimulator2013\savegame*\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\FarmingSimulator2013\\game.xml|{{p|userprofile\\Documents}}\\My Games\\FarmingSimulator2013\\gameSettings.xml|{{p|userprofile\\Documents}}\\My Games\\FarmingSimulator2013\\inputBinding.xml}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\FarmingSimulator2013\\savegame*\\}}" Farming Simulator 22: pageId: 171010 steam: 1248130 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\My - Games\FarmingSimulator2022\game.xml|{{p|userprofile\Documents}}\My - Games\FarmingSimulator2022\gameSettings.xml|{{p|userprofile\Documents}}\My - Games\FarmingSimulator2022\inputBinding.xml}} - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\FarmingSimulator2022\savegame*\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\FarmingSimulator2022\\game.xml|{{p|userprofile\\Documents}}\\My Games\\FarmingSimulator2022\\gameSettings.xml|{{p|userprofile\\Documents}}\\My Games\\FarmingSimulator2022\\inputBinding.xml}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\FarmingSimulator2022\\savegame*\\}}" Farming Village: pageId: 144059 steam: 994230 @@ -59760,7 +58129,7 @@ Farmington Tales: Farnham Fables: pageId: 33571 steam: 463110 -Faron's Fate: +"Faron's Fate": pageId: 46054 steam: 409360 Farplane Relic: @@ -59769,7 +58138,7 @@ Farplane Relic: Farragnarok: pageId: 127708 steam: 929640 -'Farrealm: The Prince of Winds': +"Farrealm: The Prince of Winds": pageId: 141359 steam: 1112760 Farstorm: @@ -59785,7 +58154,7 @@ Farthest Frontier: pageId: 166108 steam: 1044720 templates: - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Farthest Frontier\Save}}' + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Farthest Frontier\\Save}}" Farworld Pioneers: pageId: 187474 steam: 1363900 @@ -59804,7 +58173,7 @@ Fashion Police Squad: pageId: 168804 steam: 1319460 templates: - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Mopeful Games\Fashion Police Squad}}' + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Mopeful Games\\Fashion Police Squad}}" Fashioning Little Miss Lonesome: pageId: 67946 steam: 640990 @@ -59812,17 +58181,15 @@ Fast & Furious Crossroads: pageId: 154610 steam: 678030 templates: - - >- - {{Game data/config|Windows|{{P|localappdata}}\Slightly Mad Studios\Fast & Furious - Crossroads\GraphicsConfigDX11.xml}} - - '{{Game data/saves|Windows|{{P|localappdata}}\Slightly Mad Studios\Fast & Furious Crossroads\savegame}}' -'Fast & Furious: Showdown': + - "{{Game data/config|Windows|{{P|localappdata}}\\Slightly Mad Studios\\Fast & Furious Crossroads\\GraphicsConfigDX11.xml}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Slightly Mad Studios\\Fast & Furious Crossroads\\savegame}}" +"Fast & Furious: Showdown": pageId: 32702 steam: 224340 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Activision\Fast & Furious™ - Showdown\}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Activision\Fast & Furious™ - Showdown\save.bin}}' -'Fast & Furious: Spy Racers Rise of SH1FT3R': + - "{{Game data/config|Windows|{{p|appdata}}\\Activision\\Fast & Furious™ - Showdown\\}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Activision\\Fast & Furious™ - Showdown\\save.bin}}" +"Fast & Furious: Spy Racers Rise of SH1FT3R": pageId: 172808 steam: 1434320 Fast Action Hero: @@ -59832,7 +58199,7 @@ Fast Beat Loop Racer GT: pageId: 94866 steam: 633110 templates: - - '{{Game data/saves|Windows|{{p|game}}\WorkSpace\Save0\}}' + - "{{Game data/saves|Windows|{{p|game}}\\WorkSpace\\Save0\\}}" Fast Break: gog: 1601643636 pageId: 167281 @@ -59840,7 +58207,7 @@ Fast Break: Fast Detect: pageId: 175074 steam: 353220 -'Fast Drive: Extreme Race & Drift': +"Fast Drive: Extreme Race & Drift": pageId: 87543 steam: 766060 Fast Dust: @@ -59860,18 +58227,18 @@ Fast Food Rampage: Fast Food Tycoon: pageId: 60840 templates: - - '{{Game data/config|Windows|{{p|hklm}}\Software\{{p|wow64}}\Software2000\Pizza Syndicate\Config}}' - - '{{Game data/saves|Windows|{{p|game}}\save}}' + - "{{Game data/config|Windows|{{p|hklm}}\\Software\\{{p|wow64}}\\Software2000\\Pizza Syndicate\\Config}}" + - "{{Game data/saves|Windows|{{p|game}}\\save}}" Fast Food Tycoon 2: gog: 1175067557 pageId: 60702 steam: 599000 templates: - - '{{Game data/saves|Windows|{{P|game}}\Save}}' + - "{{Game data/saves|Windows|{{P|game}}\\Save}}" Fast Rolling: pageId: 78040 steam: 651050 -'Fast Travel: Loot Delivery Service': +"Fast Travel: Loot Delivery Service": pageId: 134819 steam: 1050190 Fast and Curious: @@ -59892,7 +58259,7 @@ Fastidious: Fastigium: pageId: 53307 steam: 552960 -'Fastigium: Dead End': +"Fastigium: Dead End": pageId: 60207 steam: 612190 Fat Chicken: @@ -59922,56 +58289,52 @@ FatEX Courier Simulator: Fatal Burst: pageId: 89626 steam: 818220 -'Fatal Evidence: Cursed Island': +"Fatal Evidence: Cursed Island": pageId: 138812 steam: 1084920 Fatal Fight: pageId: 33868 steam: 449690 -'Fatal Frame: Maiden of Black Water': +"Fatal Frame: Maiden of Black Water": pageId: 169321 steam: 1732190 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\KoeiTecmo\FATAL FRAME MOBW\SAVEDATA}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\KoeiTecmo\FATAL FRAME MOBW\SAVEDATA}}' -'Fatal Frame: Mask of the Lunar Eclipse': + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\KoeiTecmo\\FATAL FRAME MOBW\\SAVEDATA}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\KoeiTecmo\\FATAL FRAME MOBW\\SAVEDATA}}" +"Fatal Frame: Mask of the Lunar Eclipse": pageId: 181513 steam: 2130460 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\KoeiTecmo\FATAL FRAME MOL\SAVEDATA\}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\KoeiTecmo\FATAL FRAME MOL\SAVEDATA\}}' + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\KoeiTecmo\\FATAL FRAME MOL\\SAVEDATA\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\KoeiTecmo\\FATAL FRAME MOL\\SAVEDATA\\}}" Fatal Fury: pageId: 133151 Fatal Fury 2: pageId: 133155 -'Fatal Fury 3: Road to the Final Victory': +"Fatal Fury 3: Road to the Final Victory": pageId: 133153 templates: - - '{{Game data/config|Windows|{{p|hklm}}\SOFTWARE\{{p|wow64}}\GameBank\FatalFury}}' - - '{{Game data/saves|Windows|{{p|hklm}}\SOFTWARE\{{p|wow64}}\GameBank\FatalFury}}' + - "{{Game data/config|Windows|{{p|hklm}}\\SOFTWARE\\{{p|wow64}}\\GameBank\\FatalFury}}" + - "{{Game data/saves|Windows|{{p|hklm}}\\SOFTWARE\\{{p|wow64}}\\GameBank\\FatalFury}}" Fatal Fury Special: gog: 1226880572 pageId: 131734 Fatal Gem VR(The First Match-3 VR Game): pageId: 53680 steam: 546030 -'Fatal Hour: Petroleum': +"Fatal Hour: Petroleum": pageId: 108332 steam: 916540 Fatal Labyrinth: pageId: 30840 steam: 34289 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\SEGA Mega Drive - Classics\setup.dat|{{p|userprofile\Documents}}\SEGA Genesis Classics\setup.dat}} - - >- - {{Game data/saves|Windows|{{p|userprofile\Documents}}\SEGA Mega Drive - Classics\0017\|{{p|userprofile\Documents}}\SEGA Genesis Classics\0017\}} -'Fatal Passion: Art Prison': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\SEGA Mega Drive Classics\\setup.dat|{{p|userprofile\\Documents}}\\SEGA Genesis Classics\\setup.dat}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\SEGA Mega Drive Classics\\0017\\|{{p|userprofile\\Documents}}\\SEGA Genesis Classics\\0017\\}}" +"Fatal Passion: Art Prison": pageId: 58350 renamedFrom: - - 'Fatal Passion: Art Prison Collector''s Edition' + - "Fatal Passion: Art Prison Collector's Edition" steam: 595650 Fatal Racing: pageId: 29609 @@ -59983,9 +58346,9 @@ Fatal Twelve: pageId: 60966 steam: 620210 templates: - - '{{Game data/saves|Windows|{{P|game}}\game\saves}}' - - '{{Game data/saves|Linux|{{P|game}}/game/saves}}' -'Fatal Velocity: Physics Combat': + - "{{Game data/saves|Windows|{{P|game}}\\game\\saves}}" + - "{{Game data/saves|Linux|{{P|game}}/game/saves}}" +"Fatal Velocity: Physics Combat": pageId: 74317 steam: 722620 Fatale: @@ -60010,25 +58373,25 @@ Fate Tectonics: Fate of the Dragon: pageId: 157639 templates: - - '{{Game data/config|Windows|{{p|game}}}}' - - '{{Game data/saves|Windows|{{p|game}}}}' + - "{{Game data/config|Windows|{{p|game}}}}" + - "{{Game data/saves|Windows|{{p|game}}}}" Fate of the World: pageId: 40897 steam: 80200 templates: - - '{{Game data/config|Windows|{{p|appdata}}\fotw\}}' - - '{{Game data/saves|Windows|{{p|appdata}}\fotw\save}}' -'Fate/Extella: Link': + - "{{Game data/config|Windows|{{p|appdata}}\\fotw\\}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\fotw\\save}}" +"Fate/Extella: Link": pageId: 131093 steam: 622220 -'Fate/Extella: The Umbral Star': +"Fate/Extella: The Umbral Star": pageId: 65866 renamedFrom: - Fate/EXTELLA steam: 511680 templates: - - '{{Game data/config|Steam|{{p|game}}/win_config.ini}}' - - '{{Game data/saves|Windows|{{P|steam}}/userdata/"SteamUserID"/511680/remote/savedata/FESAVSYSTEM.bin}}' + - "{{Game data/config|Steam|{{p|game}}/win_config.ini}}" + - "{{Game data/saves|Windows|{{P|steam}}/userdata/\"SteamUserID\"/511680/remote/savedata/FESAVSYSTEM.bin}}" Fate/Hollow Ataraxia: pageId: 164556 renamedFrom: @@ -60037,24 +58400,22 @@ Fate/Samurai Remnant: pageId: 188353 steam: 1902690 templates: - - >- - {{Game data/config|Windows|{{p|hkcu}}\Software\KoeiTecmo\FateSamuraiRemnant\Graphic - Setting|{{P|userprofile\Documents}}\KoeiTecmo\FateSamuraiRemnant\SavesDir\}} - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\KoeiTecmo\FateSamuraiRemnant\Savedata\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\KoeiTecmo\\FateSamuraiRemnant\\Graphic Setting|{{P|userprofile\\Documents}}\\KoeiTecmo\\FateSamuraiRemnant\\SavesDir\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\KoeiTecmo\\FateSamuraiRemnant\\Savedata\\}}" Fate/Stay Night: pageId: 164551 renamedFrom: - Fate/stay night templates: - - '{{Game data/config|Windows|{{p|game}}\savedata}}' - - '{{Game data/saves|Windows|{{p|game}}\savedata}}' + - "{{Game data/config|Windows|{{p|game}}\\savedata}}" + - "{{Game data/saves|Windows|{{p|game}}\\savedata}}" Fate/Stay Night (Realta Nua): pageId: 164662 renamedFrom: - Fate/stay night (Realta Nua) templates: - - '{{Game data/config|Windows|{{p|userprofile}}\Documents\faterealtanua_savedata}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\Documents\faterealtanua_savedata}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\Documents\\faterealtanua_savedata}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Documents\\faterealtanua_savedata}}" Fated Era: pageId: 127273 steam: 998630 @@ -60070,7 +58431,7 @@ Fated Souls 2: Fated Souls 3: pageId: 58912 steam: 602790 -'Fated: The Silent Oath': +"Fated: The Silent Oath": pageId: 43326 steam: 401820 Fatehaven: @@ -60095,18 +58456,18 @@ Fates of Ort: Father Xmas: pageId: 145506 steam: 1127640 -Father's Island: +"Father's Island": pageId: 42615 steam: 460940 Fatman Simulator: pageId: 98438 steam: 866330 -Fatty Bear's Birthday Surprise: +"Fatty Bear's Birthday Surprise": pageId: 37638 steam: 317030 -Fatty Bear's Fun Pack: +"Fatty Bear's Fun Pack": pageId: 147372 -Fatty Maze's Adventures: +"Fatty Maze's Adventures": pageId: 48651 steam: 349780 Fatty Rabbit Hole: @@ -60126,19 +58487,19 @@ Fault - Milestone One: pageId: 33666 steam: 286260 templates: - - '{{Game data/config|Windows|{{p|game}}\renpy\config.py}}' - - '{{Game data/saves|Windows|{{p|appdata}}\RenPy\projectwritten_fm1\|{{p|game}}\game\saves\}}' + - "{{Game data/config|Windows|{{p|game}}\\renpy\\config.py}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\RenPy\\projectwritten_fm1\\|{{p|game}}\\game\\saves\\}}" Fault - Milestone Two: gog: 1135331377 pageId: 33640 steam: 344770 templates: - - '{{Game data/config|Windows|{{p|game}}\renpy\config.py}}' - - '{{Game data/saves|Windows|{{P|appdata}}\renpy\projectwritten_fm2_part1\|{{p|game}}\game\saves\}}' + - "{{Game data/config|Windows|{{p|game}}\\renpy\\config.py}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\renpy\\projectwritten_fm2_part1\\|{{p|game}}\\game\\saves\\}}" Fault - Silence the Pedant: pageId: 64341 steam: 487500 -'Fault: Elder Orb': +"Fault: Elder Orb": pageId: 179619 steam: 1106750 Faulty Apprentice: @@ -60146,7 +58507,7 @@ Faulty Apprentice: renamedFrom: - Faulty Apprentice - Fantasy visual novel steam: 630550 -'Faust: The Seven Games of the Soul': +"Faust: The Seven Games of the Soul": pageId: 165380 Fausts Alptraum: pageId: 56392 @@ -60172,41 +58533,39 @@ Fe: pageId: 81305 steam: 1225580 templates: - - >- - {{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\Zoink - Games\Fe\SystemSettings.sav|{{P|hkcu}}\Software\Zoink Games\Fe\}} - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Zoink Games\Fe\Save*.sav}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Zoink Games\\Fe\\SystemSettings.sav|{{P|hkcu}}\\Software\\Zoink Games\\Fe\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Zoink Games\\Fe\\Save*.sav}}" FeArea: pageId: 81181 steam: 520960 -'FeArea: Battle Royale': +"FeArea: Battle Royale": pageId: 153090 steam: 1136010 Fear & Hunger: pageId: 145984 steam: 1002300 templates: - - '{{Game data/config|Windows|{{p|Steam}}/steamapps/common/Fear & Hunger/www/save/}}' - - '{{Game data/saves|Windows|{{p|Steam}}/steamapps/common/Fear & Hunger/www/save/}}' -'Fear & Hunger 2: Termina': + - "{{Game data/config|Windows|{{p|Steam}}/steamapps/common/Fear & Hunger/www/save/}}" + - "{{Game data/saves|Windows|{{p|Steam}}/steamapps/common/Fear & Hunger/www/save/}}" +"Fear & Hunger 2: Termina": pageId: 188777 steam: 2171440 templates: - - '{{Game data/config|Windows|{{p|Steam}}/steamapps/common/Fear & Hunger 2 Termina/www/save/}}' - - '{{Game data/saves|Windows|{{p|Steam}}/steamapps/common/Fear & Hunger 2 Termina/www/save/}}' + - "{{Game data/config|Windows|{{p|Steam}}/steamapps/common/Fear & Hunger 2 Termina/www/save/}}" + - "{{Game data/saves|Windows|{{p|Steam}}/steamapps/common/Fear & Hunger 2 Termina/www/save/}}" Fear Effect Sedna: gog: 1097098068 pageId: 53497 steam: 546900 templates: - - '{{Game data/config|Windows|{{P|userprofile}}\AppData\LocalLow\sushee\FearEffect\SaveFiles\}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\sushee\FearEffect\SaveFiles\saves\}}' + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\sushee\\FearEffect\\SaveFiles\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\sushee\\FearEffect\\SaveFiles\\saves\\}}" Fear Equation: gog: 1452681468 pageId: 34280 steam: 428350 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Screwfly Studios\Fear Equation\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Screwfly Studios\\Fear Equation\\}}" Fear For Freedom: pageId: 69551 steam: 696990 @@ -60216,10 +58575,10 @@ Fear Half Factor: Fear Simulator: pageId: 127215 steam: 1008410 -'Fear for Sale: City of the Past': +"Fear for Sale: City of the Past": pageId: 110398 steam: 926070 -'Fear for Sale: Endless Voyage': +"Fear for Sale: Endless Voyage": pageId: 129924 steam: 1030170 Fear in Hospital: @@ -60231,7 +58590,7 @@ Fear of Clowns: Fear of Dark: pageId: 152720 steam: 1084350 -'Fear of Nightmares: Madness Descent': +"Fear of Nightmares: Madness Descent": pageId: 69234 steam: 692830 Fear of Traffic: @@ -60241,8 +58600,8 @@ Fear the Dark Unknown: pageId: 150109 steam: 1159540 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\DarkUnknown\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\DarkUnknown\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\DarkUnknown\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\DarkUnknown\\Saved\\SaveGames\\}}" Fear the Dead: pageId: 59007 steam: 605410 @@ -60253,7 +58612,7 @@ Fear the Wolves: pageId: 99796 steam: 819500 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\FearTheWolves\Saved\Config\WindowsNoEditor\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\FearTheWolves\\Saved\\Config\\WindowsNoEditor\\}}" Fearful Symmetry: pageId: 55552 steam: 570550 @@ -60264,7 +58623,7 @@ Fearless Fantasy: pageId: 50274 steam: 282100 templates: - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/282100/remote/}}' + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/282100/remote/}}" Fearless Tigor: pageId: 128758 steam: 624930 @@ -60272,16 +58631,16 @@ Fearmonium: pageId: 135961 steam: 1068360 templates: - - '{{Game data/saves|Windows|{{p|localappdata}}\FearMonium\User Data\Default\IndexedDB\}}' -'Feast Your Eyes: Little Marshmallow': + - "{{Game data/saves|Windows|{{p|localappdata}}\\FearMonium\\User Data\\Default\\IndexedDB\\}}" +"Feast Your Eyes: Little Marshmallow": pageId: 76584 steam: 712260 Feather: pageId: 105257 steam: 545040 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Samurai Punk\Feather}}' - - '{{Game data/saves|Windows|{{p|game}}\punkplayerprefs.dat}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Samurai Punk\\Feather}}" + - "{{Game data/saves|Windows|{{p|game}}\\punkplayerprefs.dat}}" Feather of Praying: pageId: 96587 steam: 869840 @@ -60303,7 +58662,7 @@ Feed A Titanosaur: Feed Eve: pageId: 87303 steam: 790950 -'Feed and Grow: Fish': +"Feed and Grow: Fish": pageId: 45047 steam: 429050 Feed the Animals: @@ -60315,14 +58674,14 @@ Feed the Pets: Feeding Frenzy: pageId: 178272 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\GameHouse\FeedingFrenzy}}' - - '{{Game data/saves|Windows|{{p|hkcu}}\Software\GameHouse\FeedingFrenzy\scores}}' -'Feeding Frenzy 2: Shipwreck Showdown': + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\GameHouse\\FeedingFrenzy}}" + - "{{Game data/saves|Windows|{{p|hkcu}}\\Software\\GameHouse\\FeedingFrenzy\\scores}}" +"Feeding Frenzy 2: Shipwreck Showdown": pageId: 16562 steam: 3390 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\GameHouse\Feeding Frenzy 2}}' - - '{{Game data/saves|Windows|{{p|hkcu}}\Software\GameHouse\Feeding Frenzy 2}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\GameHouse\\Feeding Frenzy 2}}" + - "{{Game data/saves|Windows|{{p|hkcu}}\\Software\\GameHouse\\Feeding Frenzy 2}}" Feeding The Monster: pageId: 72756 steam: 722250 @@ -60352,10 +58711,10 @@ Feist: pageId: 34338 steam: 327060 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\play\Feist\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Preferences/ch.play.Feist.plist}}' - - '{{Game data/saves|Windows|{{p|hkcu}}\Software\play\Feist\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Preferences/ch.play.Feist.plist}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\play\\Feist\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Preferences/ch.play.Feist.plist}}" + - "{{Game data/saves|Windows|{{p|hkcu}}\\Software\\play\\Feist\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Preferences/ch.play.Feist.plist}}" Felis: pageId: 55702 steam: 572040 @@ -60367,22 +58726,18 @@ Felix the Reaper: pageId: 113718 steam: 919410 templates: - - >- - {{Game data/config|Windows|{{P|localappdata}}\Daedalic Entertainment GmbH\Felix The - Reaper\Data\Settings.ini|{{P|hkcu}}\Software\Daedalic Entertainment GmbH\Felix The Reaper\}} - - >- - {{Game data/saves|Windows|{{P|localappdata}}\Daedalic Entertainment GmbH\Felix The - Reaper\Data\GameData.dat|{{P|localappdata}}\Daedalic Entertainment GmbH\Felix The Reaper\Data\PlayerData.dat}} -'Fell Seal: Arbiter''s Mark': + - "{{Game data/config|Windows|{{P|localappdata}}\\Daedalic Entertainment GmbH\\Felix The Reaper\\Data\\Settings.ini|{{P|hkcu}}\\Software\\Daedalic Entertainment GmbH\\Felix The Reaper\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Daedalic Entertainment GmbH\\Felix The Reaper\\Data\\GameData.dat|{{P|localappdata}}\\Daedalic Entertainment GmbH\\Felix The Reaper\\Data\\PlayerData.dat}}" +"Fell Seal: Arbiter's Mark": gog: 1588524889 pageId: 69763 steam: 699170 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Fell Seal\}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/Fell Seal/}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Fell Seal\saves\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Fell Seal/saves}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/Fell Seal/saves}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Fell Seal\\}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/Fell Seal/}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Fell Seal\\saves\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Fell Seal/saves}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/Fell Seal/saves}}" Felt Tip Circus: pageId: 43777 steam: 427890 @@ -60402,39 +58757,39 @@ Femdemic: pageId: 189131 steam: 2195390 templates: - - '{{Game data/config|Windows|{{P|userprofile\appdata\locallow}}\Rel_Pink\Femdemic}}' - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Rel_Pink\Femdemic}}' + - "{{Game data/config|Windows|{{P|userprofile\\appdata\\locallow}}\\Rel_Pink\\Femdemic}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Rel_Pink\\Femdemic}}" Femida: pageId: 153981 steam: 1167640 -'Feminazi: 3000': +"Feminazi: 3000": pageId: 70124 steam: 705070 -'Feminazi: The Triggering': +"Feminazi: The Triggering": pageId: 57685 steam: 585550 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Feminazi\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Feminazi\\}}" Fen: pageId: 80503 steam: 771170 -'Fen: Prologue': +"Fen: Prologue": pageId: 75001 steam: 736830 -'Fenimore Fillmore: 3 Skulls of the Toltecs': +"Fenimore Fillmore: 3 Skulls of the Toltecs": gog: 1290147220 pageId: 122642 steam: 977300 templates: - - '{{Game data/config|Windows|{{P|appdata}}\CasualBrothers\3Skulls\{{P|uid}}\config.txt}}' - - '{{Game data/saves|Windows|{{P|appdata}}\CasualBrothers\3Skulls\{{P|uid}}\Savegames\}}' -'Fenimore Fillmore: The Westerner': + - "{{Game data/config|Windows|{{P|appdata}}\\CasualBrothers\\3Skulls\\{{P|uid}}\\config.txt}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\CasualBrothers\\3Skulls\\{{P|uid}}\\Savegames\\}}" +"Fenimore Fillmore: The Westerner": gog: 1909434737 pageId: 58904 steam: 503650 templates: - - '{{Game data/config|Windows|{{p|appdata}}\CasualBrothers\TheWesterner\{{p|uid}}\Settings.txt}}' - - '{{Game data/saves|Windows|{{p|appdata}}\CasualBrothers\TheWesterner\{{p|uid}}\SavedGames\}}' + - "{{Game data/config|Windows|{{p|appdata}}\\CasualBrothers\\TheWesterner\\{{p|uid}}\\Settings.txt}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\CasualBrothers\\TheWesterner\\{{p|uid}}\\SavedGames\\}}" Fenix Box: pageId: 79694 steam: 774891 @@ -60445,8 +58800,8 @@ Fenix Rage: pageId: 25261 steam: 294460 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Fenix_Rage\phoenix.dat}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Fenix_Rage\phoenix.dat}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Fenix_Rage\\phoenix.dat}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Fenix_Rage\\phoenix.dat}}" Fenrisulfr Puzzle: pageId: 86971 steam: 451360 @@ -60467,10 +58822,10 @@ Feral Fury: Fergus The Fly: pageId: 57291 steam: 585790 -Feria d'Arles: +"Feria d'Arles": pageId: 150627 steam: 1181570 -Fermi's Path: +"Fermi's Path": pageId: 48176 steam: 342650 Fernageddon: @@ -60480,7 +58835,7 @@ Fernbus Simulator: pageId: 36566 steam: 427100 templates: - - '{{Game data/saves|Windows|{{p|localappdata}}\Fernbus\Saved}}' + - "{{Game data/saves|Windows|{{p|localappdata}}\\Fernbus\\Saved}}" Fernz Gate: pageId: 99914 steam: 860480 @@ -60489,18 +58844,18 @@ Ferrari Virtual Academy: Ferrari Virtual Race: pageId: 161877 templates: - - '{{Game data/config|Windows| {{p|PROGRAMDATA}}\Synetic\FerrariVR\}}' - - '{{Game data/saves|Windows|{{p|PROGRAMDATA}}\Synetic\FerrariVR\SavedGame\}}' + - "{{Game data/config|Windows| {{p|PROGRAMDATA}}\\Synetic\\FerrariVR\\}}" + - "{{Game data/saves|Windows|{{p|PROGRAMDATA}}\\Synetic\\FerrariVR\\SavedGame\\}}" Ferret Scoundrels: pageId: 135008 steam: 1064320 -'Ferrum''s Secrets: Where Is Grandpa?': +"Ferrum's Secrets: Where Is Grandpa?": pageId: 46869 steam: 391340 Fesnia: pageId: 98344 steam: 851290 -'Fester Mudd: Curse of the Gold - Episode 1': +"Fester Mudd: Curse of the Gold - Episode 1": pageId: 40550 steam: 253310 Festival Tycoon: @@ -60512,7 +58867,7 @@ Fetch: Fetch It Again: pageId: 56208 steam: 12650 -'Fetish Locator: Week One': +"Fetish Locator: Week One": gog: 1654462894 gogSide: - 1898283247 @@ -60520,7 +58875,7 @@ Fetch It Again: renamedFrom: - Fetish Locator Week One steam: 1360980 -'Fetish Locator: Week Two': +"Fetish Locator: Week Two": pageId: 172939 renamedFrom: - Fetish Locator Week Two @@ -60546,13 +58901,13 @@ Fez: pageId: 5628 steam: 224760 templates: - - '{{Game data/config|Windows|{{p|appdata}}\FEZ\Settings}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/FEZ/Settings}}' - - '{{Game data/config|Linux|{{P|xdgconfighome}}/FEZ/Settings}}' - - '{{Game data/saves|Windows|{{p|appdata}}\FEZ\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/FEZ/}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/FEZ/}}' - - '{{Game data/saves|Steam|{{P|steam}}/userdata/{{P|uid}}/224760/remote/}}' + - "{{Game data/config|Windows|{{p|appdata}}\\FEZ\\Settings}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/FEZ/Settings}}" + - "{{Game data/config|Linux|{{P|xdgconfighome}}/FEZ/Settings}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\FEZ\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/FEZ/}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/FEZ/}}" + - "{{Game data/saves|Steam|{{P|steam}}/userdata/{{P|uid}}/224760/remote/}}" FhaMAZEin: pageId: 114198 steam: 937550 @@ -60568,19 +58923,17 @@ Fibber Kit: Fiber Twig 2: pageId: 112280 steam: 925060 -'Fiber Twig: Midnight Puzzle': +"Fiber Twig: Midnight Puzzle": pageId: 52564 steam: 550180 Fibrillation HD: pageId: 60762 steam: 558450 templates: - - >- - {{Game data/config|Windows|{{P|userprofile}}\AppData\LocalLow\Egor Rezenov\Fibrillation - HD\config.txt|{{P|hkcu}}\Software\Egor Rezenov\Fibrillation HD\}} - - '{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/Egor Rezenov/Fibrillation HD/config.txt}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Egor Rezenov\Fibrillation HD\}}' - - '{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/Egor Rezenov/Fibrillation HD/}}' + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Egor Rezenov\\Fibrillation HD\\config.txt|{{P|hkcu}}\\Software\\Egor Rezenov\\Fibrillation HD\\}}" + - "{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/Egor Rezenov/Fibrillation HD/config.txt}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Egor Rezenov\\Fibrillation HD\\}}" + - "{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/Egor Rezenov/Fibrillation HD/}}" Ficterra: pageId: 122652 steam: 852880 @@ -60592,8 +58945,8 @@ Fidel Dungeon Rescue: pageId: 62743 steam: 573170 templates: - - '{{Game data/config|Windows|{{p|APPDATA}}\fidel\Local Store\config.txt}}' - - '{{Game data/saves|Windows|{{p|APPDATA}}\fidel\Local Store\}}' + - "{{Game data/config|Windows|{{p|APPDATA}}\\fidel\\Local Store\\config.txt}}" + - "{{Game data/saves|Windows|{{p|APPDATA}}\\fidel\\Local Store\\}}" Fidelity: pageId: 132345 steam: 1049070 @@ -60615,12 +58968,12 @@ Field Breaking: Field of Glory II: gog: 1468566011 gogSide: - - 2024895377 - 1299102798 - - 2031592984 - - 1720946731 - 1382487035 - 1402045615 + - 1720946731 + - 2024895377 + - 2031592984 pageId: 70681 steam: 660160 steamSide: @@ -60630,11 +58983,11 @@ Field of Glory II: - 876360 - 1004260 - 2110620 -'Field of Glory II: Medieval': +"Field of Glory II: Medieval": gog: 1274798618 pageId: 166445 steam: 1368870 -'Field of Glory: Empires': +"Field of Glory: Empires": gog: 1193470625 pageId: 130611 steam: 1011390 @@ -60642,19 +58995,19 @@ Fieldrunners: pageId: 5254 steam: 209690 templates: - - '{{Game data/config|Windows|{{P|game}}\user_defaults.plist}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.fieldrunners/}}' - - '{{Game data/config|Steam|{{P|steam}}\userdata\{{P|uid}}\209690\remote\user_defaults.plist}}' - - '{{Game data/saves|Windows|{{P|game}}\Saves\}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.fieldrunners/}}' - - '{{Game data/saves|Steam|{{P|steam}}\userdata\{{P|uid}}\209690\remote\Saves\}}' + - "{{Game data/config|Windows|{{P|game}}\\user_defaults.plist}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.fieldrunners/}}" + - "{{Game data/config|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\209690\\remote\\user_defaults.plist}}" + - "{{Game data/saves|Windows|{{P|game}}\\Saves\\}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.fieldrunners/}}" + - "{{Game data/saves|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\209690\\remote\\Saves\\}}" Fieldrunners 2: pageId: 13428 steam: 215710 templates: - - '{{Game data/config|Linux|{{P|xdgdatahome}}/com.subatomic/FieldRunners2/}}' - - '{{Game data/saves|Windows|{{P|steam}}\userdata\{{P|uid}}\215710\remote\Player.usr}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/com.subatomic/FieldRunners2/}}' + - "{{Game data/config|Linux|{{P|xdgdatahome}}/com.subatomic/FieldRunners2/}}" + - "{{Game data/saves|Windows|{{P|steam}}\\userdata\\{{P|uid}}\\215710\\remote\\Player.usr}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/com.subatomic/FieldRunners2/}}" Fields XY: pageId: 60740 steam: 552900 @@ -60668,25 +59021,25 @@ Fields of Glory: Fiend: pageId: 101851 templates: - - '{{Game data/config|Windows|{{p|game}}\config.dat}}' - - '{{Game data/saves|Windows|{{p|game}}\save\save*.sav}}' -Fiendish Freddy's Big Top o' Fun: + - "{{Game data/config|Windows|{{p|game}}\\config.dat}}" + - "{{Game data/saves|Windows|{{p|game}}\\save\\save*.sav}}" +"Fiendish Freddy's Big Top o' Fun": gog: 1680154175 pageId: 185177 steam: 2256430 Fiends of Imprisonment: pageId: 45988 steam: 410590 -'Fierce Tales: Feline Sight': +"Fierce Tales: Feline Sight": pageId: 87025 steam: 805010 -'Fierce Tales: Marcus'' Memory': +"Fierce Tales: Marcus' Memory": pageId: 65640 steam: 678420 -'Fierce Tales: The Dog''s Heart': +"Fierce Tales: The Dog's Heart": pageId: 54594 renamedFrom: - - 'Fierce Tales: The Dog''s Heart Collector''s Edition' + - "Fierce Tales: The Dog's Heart Collector's Edition" steam: 564090 FierceWind Decay: pageId: 164288 @@ -60700,7 +59053,7 @@ Fiery catacombs: Fiesta Online: pageId: 50360 steam: 280620 -Fifo's Night: +"Fifo's Night": pageId: 156839 steam: 1191550 FiftyOne: @@ -60736,8 +59089,8 @@ Fight Knight: - Fight Night steam: 792120 templates: - - '{{Game data/config|Windows|{{P|game}}\options.ini}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\FIGHTKNIGHT}}' + - "{{Game data/config|Windows|{{P|game}}\\options.ini}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\FIGHTKNIGHT}}" Fight Me Bro!: pageId: 52932 steam: 533630 @@ -60748,8 +59101,8 @@ Fight The Dragon: pageId: 16274 steam: 250560 templates: - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/3 Sprockets/FightTheDragon}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\3 Sprockets\FightTheDragon\}}' + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/3 Sprockets/FightTheDragon}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\3 Sprockets\\FightTheDragon\\}}" Fight This: pageId: 130462 steam: 1037900 @@ -60777,14 +59130,14 @@ Fight the Horror: Fight wisdom: pageId: 155608 steam: 1151500 -Fight'N Rage: +"Fight'N Rage": gog: 1608965204 pageId: 70010 steam: 674520 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\sebagamesdev\gog\fightnrage\savedata\data.sav}}' - - '{{Game data/saves|Steam|{{p|userprofile}}\AppData\LocalLow\sebagamesdev\fightnrage\savedata\data.sav}}' -'Fight,to the last': + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\sebagamesdev\\gog\\fightnrage\\savedata\\data.sav}}" + - "{{Game data/saves|Steam|{{p|userprofile}}\\AppData\\LocalLow\\sebagamesdev\\fightnrage\\savedata\\data.sav}}" +"Fight,to the last": pageId: 156240 steam: 1204330 Fighter Royale - Last Ace Flying: @@ -60793,7 +59146,7 @@ Fighter Royale - Last Ace Flying: Fighter of Evil: pageId: 61746 steam: 628840 -Fighter's History: +"Fighter's History": pageId: 169126 steam: 1649210 Fighters Legacy: @@ -60806,8 +59159,8 @@ Fighties: pageId: 47283 steam: 362810 templates: - - '{{Game data/saves|Windows|{{P|localappdata}}\Fighties\fightiessavegame.sav}}' - - '{{Game data/saves|Steam|{{P|steam}}\userdata\{{P|uid}}\362810\remote\fightiessavegame.sav}}' + - "{{Game data/saves|Windows|{{P|localappdata}}\\Fighties\\fightiessavegame.sav}}" + - "{{Game data/saves|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\362810\\remote\\fightiessavegame.sav}}" Fighting Box: pageId: 72738 steam: 721420 @@ -60815,23 +59168,23 @@ Fighting EX Layer: pageId: 111844 steam: 871200 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\EXF\Saved\Config\WindowsNoEditor\GameUserSettings.ini}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\EXF\\Saved\\Config\\WindowsNoEditor\\GameUserSettings.ini}}" Fighting Fantasy Classics: pageId: 95256 steam: 856880 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Tin Man Games\Fighting Fantasy Classics\}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Tin Man Games\Fighting Fantasy Classics\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Tin Man Games\\Fighting Fantasy Classics\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Tin Man Games\\Fighting Fantasy Classics\\}}" Fighting Fantasy Legends: pageId: 63486 steam: 496340 templates: - - '{{Game data/saves|Windows|{{p|game}}\saved_game}}' + - "{{Game data/saves|Windows|{{p|game}}\\saved_game}}" Fighting Force: pageId: 63086 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\SOFTWARE\Core Design\FightingForce}}' -'Fighting Frenzy: Swole Simulator': + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\Core Design\\FightingForce}}" +"Fighting Frenzy: Swole Simulator": pageId: 141070 steam: 1101340 Fighting Moore: @@ -60849,9 +59202,9 @@ Fighting for Food: Fights in Tight Spaces: gog: 1557142688 gogSide: - - 1287812237 - - 1177544610 - 1122933596 + - 1177544610 + - 1287812237 - 1954553930 pageId: 166554 steam: 1265820 @@ -60859,7 +59212,7 @@ Fights in Tight Spaces: - 1478070 - 1867120 templates: - - '{{Game data/saves|Windows|{{p|USERPROFILE\AppData\LocalLow}}\Mode7\Fights in Tight Spaces\Saves}}' + - "{{Game data/saves|Windows|{{p|USERPROFILE\\AppData\\LocalLow}}\\Mode7\\Fights in Tight Spaces\\Saves}}" Fightttris VR: pageId: 124155 steam: 841340 @@ -60871,18 +59224,18 @@ Figment: - 735330 - 760590 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Figment\}}' - - '{{Game data/config|Linux|{{P|linuxhome}}/My Games/Figment/}}' - - '{{Game data/config|Steam|{{p|Steam}}\userdata\{{p|uid}}\493540\remote\RoamingConfig.cfg}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Figment\Saves\}}' - - '{{Game data/saves|Steam|{{p|Steam}}\userdata\{{p|uid}}\493540\remote\*.sav}}' -'Figment 2: Creed Valley': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Figment\\}}" + - "{{Game data/config|Linux|{{P|linuxhome}}/My Games/Figment/}}" + - "{{Game data/config|Steam|{{p|Steam}}\\userdata\\{{p|uid}}\\493540\\remote\\RoamingConfig.cfg}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Figment\\Saves\\}}" + - "{{Game data/saves|Steam|{{p|Steam}}\\userdata\\{{p|uid}}\\493540\\remote\\*.sav}}" +"Figment 2: Creed Valley": gog: 1195169485 gogSide: - 1435812428 pageId: 139520 renamedFrom: - - 'Figment: Creed Valley' + - "Figment: Creed Valley" steam: 1085220 steamSide: - 1308710 @@ -60904,18 +59257,16 @@ Filament: pageId: 145381 steam: 1137350 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Filament\Saved\Config\WindowsNoEditor}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/Epic/Filament/Saved/Config/LinuxNoEditor}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\Filament\Saved\SaveGames}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/Epic/Filament/Saved/SaveGames}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\Filament\\Saved\\Config\\WindowsNoEditor}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/Epic/Filament/Saved/Config/LinuxNoEditor}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Filament\\Saved\\SaveGames}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/Epic/Filament/Saved/SaveGames}}" Filcher: pageId: 171463 steam: 1355650 templates: - - >- - {{Game data/config|Windows|{{P|userprofile\appdata\locallow}}\Johan - Hjärpe\Filcher\KeyBindings.dat|{{P|hkcu}}\SOFTWARE\Johan Hjärpe\Filcher}} - - '{{Game data/saves|Windows|{{P|hkcu}}\SOFTWARE\Johan Hjärpe\Filcher}}' + - "{{Game data/config|Windows|{{P|userprofile\\appdata\\locallow}}\\Johan Hjärpe\\Filcher\\KeyBindings.dat|{{P|hkcu}}\\SOFTWARE\\Johan Hjärpe\\Filcher}}" + - "{{Game data/saves|Windows|{{P|hkcu}}\\SOFTWARE\\Johan Hjärpe\\Filcher}}" Fill Up!: pageId: 44577 steam: 405050 @@ -60931,7 +59282,7 @@ Filthy Hands: Filthy Lucre: pageId: 54627 steam: 533010 -'Filthy, Stinking, Orcs!': +"Filthy, Stinking, Orcs!": pageId: 58824 steam: 590560 Fimbul: @@ -60940,7 +59291,7 @@ Fimbul: Final Approach: pageId: 34558 steam: 380670 -'Final Approach: Pilot Edition': +"Final Approach: Pilot Edition": pageId: 35216 steam: 481420 Final Archer VR: @@ -60958,32 +59309,32 @@ Final Bravely: Final Combat: pageId: 162807 templates: - - '{{Game data/config|Windows|{{p|game}}}}' + - "{{Game data/config|Windows|{{p|game}}}}" Final Core: pageId: 56322 steam: 556250 Final Crash Demo: pageId: 141712 steam: 1105570 -'Final Cut: Death on the Silver Screen': +"Final Cut: Death on the Silver Screen": pageId: 36230 renamedFrom: - - 'Final Cut: Death on the Silver Screen Collector''s Edition' + - "Final Cut: Death on the Silver Screen Collector's Edition" steam: 514740 -'Final Cut: Encore': +"Final Cut: Encore": pageId: 61026 renamedFrom: - - 'Final Cut: Encore Collector''s Edition' + - "Final Cut: Encore Collector's Edition" steam: 622550 -'Final Cut: Fame Fatale': +"Final Cut: Fame Fatale": pageId: 121982 steam: 956390 -'Final Cut: Homage': +"Final Cut: Homage": pageId: 76057 renamedFrom: - - 'Final Cut: Homage Collector''s Edition' + - "Final Cut: Homage Collector's Edition" steam: 749000 -'Final Cut: The True Escapade': +"Final Cut: The True Escapade": pageId: 91839 steam: 838740 Final Days: @@ -60999,183 +59350,162 @@ Final Doom: pageId: 12396 steam: 2290 templates: - - '{{Game data/config|DOS|{{p|game}}\TNT\|{{p|game}}\PLUTONIA\}}' - - '{{Game data/config|Windows|{{p|game}}\Final Doom for Windows 95\}}' - - '{{Game data/config|Steam|{{p|game}}\base\}}' - - '{{Game data/saves|DOS|{{p|game}}\TNT\|{{p|game}}\PLUTONIA\}}' - - '{{Game data/saves|Windows|{{p|game}}\Final Doom for Windows 95\}}' - - '{{Game data/saves|Steam|{{p|game}}\base\}}' + - "{{Game data/config|DOS|{{p|game}}\\TNT\\|{{p|game}}\\PLUTONIA\\}}" + - "{{Game data/config|Windows|{{p|game}}\\Final Doom for Windows 95\\}}" + - "{{Game data/config|Steam|{{p|game}}\\base\\}}" + - "{{Game data/saves|DOS|{{p|game}}\\TNT\\|{{p|game}}\\PLUTONIA\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\Final Doom for Windows 95\\}}" + - "{{Game data/saves|Steam|{{p|game}}\\base\\}}" Final Dusk: pageId: 49125 steam: 337420 templates: - - '{{Game data/config|Windows|{{p|HKCU}}\SOFTWARE\Light Echo\Final Dusk\}}' - - '{{Game data/saves|Windows|{{p|HKCU}}\SOFTWARE\Light Echo\Final Dusk\}}' + - "{{Game data/config|Windows|{{p|HKCU}}\\SOFTWARE\\Light Echo\\Final Dusk\\}}" + - "{{Game data/saves|Windows|{{p|HKCU}}\\SOFTWARE\\Light Echo\\Final Dusk\\}}" Final Exam: pageId: 11914 steam: 233190 templates: - - '{{Game data/config|Windows|{{p|game}}\video_cfg.xml}}' - - '{{Game data/saves|Windows|{{P|steam}}\userdata\{{P|uid}}\233190\remote\}}' + - "{{Game data/config|Windows|{{p|game}}\\video_cfg.xml}}" + - "{{Game data/saves|Windows|{{P|steam}}\\userdata\\{{P|uid}}\\233190\\remote\\}}" Final Fantasy: pageId: 56727 steam: 1173770 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\SQUARE ENIX, Inc.\FINAL FANTASY}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\My Games\FINAL FANTASY PR\Steam\{{P|uid}}}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\SQUARE ENIX, Inc.\\FINAL FANTASY}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\My Games\\FINAL FANTASY PR\\Steam\\{{P|uid}}}}" Final Fantasy Awakening: pageId: 26745 Final Fantasy II: pageId: 169623 steam: 1173780 templates: - - '{{Game data/saves|Windows|{{p|userprofile\documents}}\My Games\FINAL FANTASY II PR\Steam\{{p|uid}}}}' + - "{{Game data/saves|Windows|{{p|userprofile\\documents}}\\My Games\\FINAL FANTASY II PR\\Steam\\{{p|uid}}}}" Final Fantasy III: pageId: 169624 renamedFrom: - Final Fantasy III (2021) steam: 1173790 templates: - - '{{Game data/saves|Windows|{{p|userprofile\documents}}\My Games\FINAL FANTASY III PR\Steam\{{p|uid}}}}' + - "{{Game data/saves|Windows|{{p|userprofile\\documents}}\\My Games\\FINAL FANTASY III PR\\Steam\\{{p|uid}}}}" Final Fantasy III (3D Remake): pageId: 19994 renamedFrom: - Final Fantasy III steam: 239120 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\FF3_Win32\FF3.ini}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\FF3_Win32\{{p|uid}}\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\FF3_Win32\\FF3.ini}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\FF3_Win32\\{{p|uid}}\\}}" Final Fantasy IV: pageId: 169625 renamedFrom: - Final Fantasy IV (2021) steam: 1173800 templates: - - '{{Game data/saves|Windows|{{p|userprofile\documents}}\My Games\FINAL FANTASY IV PR\Steam\{{p|uid}}}}' + - "{{Game data/saves|Windows|{{p|userprofile\\documents}}\\My Games\\FINAL FANTASY IV PR\\Steam\\{{p|uid}}}}" Final Fantasy IV (3D Remake): pageId: 19996 renamedFrom: - Final Fantasy IV steam: 312750 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\FF4\FF4.ini}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\FF4\{{p|uid}}\}}' -'Final Fantasy IV: The After Years': + - "{{Game data/config|Windows|{{p|localappdata}}\\FF4\\FF4.ini}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\FF4\\{{p|uid}}\\}}" +"Final Fantasy IV: The After Years": pageId: 24938 steam: 346830 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\FF4A\FF4A.ini}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\FF4A\{{p|uid}}\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\FF4A\\FF4A.ini}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\FF4A\\{{p|uid}}\\}}" Final Fantasy IX: pageId: 30561 steam: 377840 templates: - - '{{Game data/config|Windows|{{p|game}}\Settings.ini}}' - - >- - {{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\SquareEnix\FINAL FANTASY - IX\Steam\EncryptedSavedData\}} - - >- - {{Game data/saves|Microsoft - Store|{{P|localappdata}}\Packages\\39EA002F.FINALFANTASYIX_n746a19ndrrjg\SystemAppData\wgs\}} + - "{{Game data/config|Windows|{{p|game}}\\Settings.ini}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\SquareEnix\\FINAL FANTASY IX\\Steam\\EncryptedSavedData\\}}" + - "{{Game data/saves|Microsoft Store|{{P|localappdata}}\\Packages\\\\39EA002F.FINALFANTASYIX_n746a19ndrrjg\\SystemAppData\\wgs\\}}" Final Fantasy Type-0 HD: pageId: 25687 steam: 340170 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\SquareEnix\FinalFantasyType-0HD\save\SYSTEMDATA\TYPE0SYS.BIN}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\SquareEnix\FinalFantasyType-0HD\save\SYSTEMDATA}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\SquareEnix\\FinalFantasyType-0HD\\save\\SYSTEMDATA\\TYPE0SYS.BIN}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\SquareEnix\\FinalFantasyType-0HD\\save\\SYSTEMDATA}}" Final Fantasy V: pageId: 30558 steam: 382890 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\FFV_Game\FF5.ini}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\FFV_Game\{{p|uid}}\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\FFV_Game\\FF5.ini}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\FFV_Game\\{{p|uid}}\\}}" Final Fantasy V (2021): pageId: 169626 steam: 1173810 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\SOFTWARE\SQUARE ENIX, Inc.\FINAL FANTASY V\}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\My Games\FINAL FANTASY V PR\Steam\{{P|uid}}}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\SQUARE ENIX, Inc.\\FINAL FANTASY V\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\My Games\\FINAL FANTASY V PR\\Steam\\{{P|uid}}}}" Final Fantasy VI: pageId: 30162 steam: 382900 templates: - - '{{Game data/config|Steam|{{p|steam}}\userdata\{{P|uid}}\382900\local\settings.bin}}' - - >- - {{Game - data/saves|Steam|{{p|steam}}\userdata\{{P|uid}}\382900\local\data|{{p|steam}}\userdata\{{P|uid}}\382900\remote\data}} + - "{{Game data/config|Steam|{{p|steam}}\\userdata\\{{P|uid}}\\382900\\local\\settings.bin}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{P|uid}}\\382900\\local\\data|{{p|steam}}\\userdata\\{{P|uid}}\\382900\\remote\\data}}" Final Fantasy VI (2022): pageId: 169627 renamedFrom: - Final Fantasy VI (2021) steam: 1173820 templates: - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\My Games\FINAL FANTASY VI PR\Steam\{{P|uid}}}}' + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\My Games\\FINAL FANTASY VI PR\\Steam\\{{P|uid}}}}" Final Fantasy VII: pageId: 8638 templates: - - '{{Game data/config|Windows|{{p|hklm}}\SOFTWARE\{{p|wow64}}\Square Soft, Inc.\Final Fantasy VII\1.00\}}' - - '{{Game data/saves|Windows|{{p|game}}\save\}}' + - "{{Game data/config|Windows|{{p|hklm}}\\SOFTWARE\\{{p|wow64}}\\Square Soft, Inc.\\Final Fantasy VII\\1.00\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\save\\}}" Final Fantasy VII (2012): pageId: 1938 steam: 39140 templates: - - >- - {{Game data/config|Steam|{{p|userprofile\Documents}}\Square Enix\FINAL FANTASY VII - Steam\ff7*.cfg|{{p|userprofile\Documents}}\Square Enix\FINAL FANTASY VII Steam\networkSettings.dat}} - - '{{Game data/saves|Steam|{{p|userprofile\Documents}}\Square Enix\FINAL FANTASY VII Steam\user_{{P|uid}}\}}' + - "{{Game data/config|Steam|{{p|userprofile\\Documents}}\\Square Enix\\FINAL FANTASY VII Steam\\ff7*.cfg|{{p|userprofile\\Documents}}\\Square Enix\\FINAL FANTASY VII Steam\\networkSettings.dat}}" + - "{{Game data/saves|Steam|{{p|userprofile\\Documents}}\\Square Enix\\FINAL FANTASY VII Steam\\user_{{P|uid}}\\}}" Final Fantasy VII Remake Intergrade: pageId: 173585 steam: 1462040 templates: - - >- - {{Game data/config|Windows|{{P|userprofile\Documents}}\My Games\FINAL FANTASY VII REMAKE\{{note|Appears to contain - no useful .ini files by default}}}} - - '{{Game data/saves|Epic Games Store|{{P|userprofile\Documents}}\My Games\FINAL FANTASY VII REMAKE\EOS\}}' - - '{{Game data/saves|Steam|{{P|userprofile\Documents}}\My Games\FINAL FANTASY VII REMAKE\Steam\}}' + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\My Games\\FINAL FANTASY VII REMAKE\\{{note|Appears to contain no useful .ini files by default}}}}" + - "{{Game data/saves|Epic Games Store|{{P|userprofile\\Documents}}\\My Games\\FINAL FANTASY VII REMAKE\\EOS\\}}" + - "{{Game data/saves|Steam|{{P|userprofile\\Documents}}\\My Games\\FINAL FANTASY VII REMAKE\\Steam\\}}" Final Fantasy VII Windows Edition: pageId: 178537 templates: - - '{{Game data/config|Microsoft Store|{{p|userprofile\documents}}\My Games\FINAL FANTASY VII\config.txt}}' - - >- - {{Game data/saves|Microsoft - Store|{{p|localappdata}}\Packages\39EA002F.FINALFANTASYVII_n746a19ndrrjg\SystemAppData\}} -'Final Fantasy VII: Ever Crisis': + - "{{Game data/config|Microsoft Store|{{p|userprofile\\documents}}\\My Games\\FINAL FANTASY VII\\config.txt}}" + - "{{Game data/saves|Microsoft Store|{{p|localappdata}}\\Packages\\39EA002F.FINALFANTASYVII_n746a19ndrrjg\\SystemAppData\\}}" +"Final Fantasy VII: Ever Crisis": pageId: 191339 steam: 2484110 Final Fantasy VIII: pageId: 583 templates: - - '{{Game data/config|Windows|{{p|hklm}}\SOFTWARE\{{p|wow64}}\Square Soft, Inc\FINAL FANTASY VIII\1.00}}' - - '{{Game data/saves|Windows|{{p|game}}\Save}}' + - "{{Game data/config|Windows|{{p|hklm}}\\SOFTWARE\\{{p|wow64}}\\Square Soft, Inc\\FINAL FANTASY VIII\\1.00}}" + - "{{Game data/saves|Windows|{{p|game}}\\Save}}" Final Fantasy VIII (2013): pageId: 13151 steam: 39150 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Square Enix\FINAL FANTASY VIII Steam\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Square Enix\FINAL FANTASY VIII Steam\{{p|uid}}\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Square Enix\\FINAL FANTASY VIII Steam\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Square Enix\\FINAL FANTASY VIII Steam\\{{p|uid}}\\}}" Final Fantasy VIII Remastered: pageId: 138446 steam: 1026680 templates: - - '{{Game data/config|Steam|{{P|userprofile\Documents}}\My Games\FINAL FANTASY VIII Remastered\Steam\{{P|uid}}\}}' - - >- - {{Game data/saves|Steam|{{P|userprofile\Documents}}\My Games\FINAL FANTASY VIII - Remastered\Steam\{{P|uid}}\game_data\user\saves\}} + - "{{Game data/config|Steam|{{P|userprofile\\Documents}}\\My Games\\FINAL FANTASY VIII Remastered\\Steam\\{{P|uid}}\\}}" + - "{{Game data/saves|Steam|{{P|userprofile\\Documents}}\\My Games\\FINAL FANTASY VIII Remastered\\Steam\\{{P|uid}}\\game_data\\user\\saves\\}}" Final Fantasy X/X-2 HD Remaster: pageId: 32709 steam: 359870 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\SQUARE ENIX\FINAL FANTASY X&X-2 HD - Remaster\GameSetting.ini}} - - >- - {{Game data/config|Microsoft Store|{{p|userprofile\Documents}}\SQUARE ENIX\FINAL FANTASY X&X-2 HD - Remaster\GameSetting.ini}} - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\SQUARE ENIX\FINAL FANTASY X&X-2 HD Remaster\}}' - - >- - {{Game data/saves|Microsoft - Store|{{P|localappdata}}\Packages\39EA002F.FFXX-2HDRemaster_n746a19ndrrjg\SystemAppData\wgs\0009000000B904E5_0000000000000000000000006038DDC9\{Random - Characters}\}} + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\SQUARE ENIX\\FINAL FANTASY X&X-2 HD Remaster\\GameSetting.ini}}" + - "{{Game data/config|Microsoft Store|{{p|userprofile\\Documents}}\\SQUARE ENIX\\FINAL FANTASY X&X-2 HD Remaster\\GameSetting.ini}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\SQUARE ENIX\\FINAL FANTASY X&X-2 HD Remaster\\}}" + - "{{Game data/saves|Microsoft Store|{{P|localappdata}}\\Packages\\39EA002F.FFXX-2HDRemaster_n746a19ndrrjg\\SystemAppData\\wgs\\0009000000B904E5_0000000000000000000000006038DDC9\\{Random Characters}\\}}" Final Fantasy XI: pageId: 788 steam: 230330 @@ -61184,41 +59514,35 @@ Final Fantasy XI: - 23390 - 39250 - 230350 -'Final Fantasy XII: The Zodiac Age': +"Final Fantasy XII: The Zodiac Age": pageId: 80152 steam: 595520 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\FINAL FANTASY XII THE ZODIAC AGE\}}' - - >- - {{Game data/config|Microsoft Store|{{p|userprofile\Documents}}\My Games\MS-Store FINAL FANTASY XII THE ZODIAC - AGE\}} - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\FINAL FANTASY XII THE ZODIAC AGE\}}' - - >- - {{Game data/saves|Microsoft Store|{{p|userprofile\Documents}}\My Games\MS-Store FINAL FANTASY XII THE ZODIAC - AGE\}} + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\FINAL FANTASY XII THE ZODIAC AGE\\}}" + - "{{Game data/config|Microsoft Store|{{p|userprofile\\Documents}}\\My Games\\MS-Store FINAL FANTASY XII THE ZODIAC AGE\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\FINAL FANTASY XII THE ZODIAC AGE\\}}" + - "{{Game data/saves|Microsoft Store|{{p|userprofile\\Documents}}\\My Games\\MS-Store FINAL FANTASY XII THE ZODIAC AGE\\}}" Final Fantasy XIII: pageId: 19980 steam: 292120 templates: - - '{{Game data/config|Windows|{{P|game}}\setup.xml}}' - - '{{Game data/config|Microsoft Store|{{p|userprofile\Documents}}\Square Enix\FFXIII\MS\config.json}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\SquareEnix\FinalFantasyXIII\save\}}' - - >- - {{Game data/saves|Microsoft - Store|{{P|localappdata}}\Packages\39EA002F.FFXIII_n746a19ndrrjg\SystemAppData\wgs\{{P|uid}}\}} - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/292120/remote/}}' + - "{{Game data/config|Windows|{{P|game}}\\setup.xml}}" + - "{{Game data/config|Microsoft Store|{{p|userprofile\\Documents}}\\Square Enix\\FFXIII\\MS\\config.json}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\SquareEnix\\FinalFantasyXIII\\save\\}}" + - "{{Game data/saves|Microsoft Store|{{P|localappdata}}\\Packages\\39EA002F.FFXIII_n746a19ndrrjg\\SystemAppData\\wgs\\{{P|uid}}\\}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/292120/remote/}}" Final Fantasy XIII-2: pageId: 19991 steam: 292140 templates: - - '{{Game data/config|Windows|{{P|game}}\setup.xml}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\SquareEnix\FinalFantasyXIII-2\save\}}' - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\292140\remote\}}' + - "{{Game data/config|Windows|{{P|game}}\\setup.xml}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\SquareEnix\\FinalFantasyXIII-2\\save\\}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\292140\\remote\\}}" Final Fantasy XIV Online (2010): pageId: 181519 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\FINAL FANTASY XIV\}}' -'Final Fantasy XIV: A Realm Reborn': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\FINAL FANTASY XIV\\}}" +"Final Fantasy XIV: A Realm Reborn": pageId: 1583 steam: 39210 steamSide: @@ -61228,39 +59552,23 @@ Final Fantasy XIV Online (2010): - 267512 - 1016870 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\FINAL FANTASY XIV - A Realm Reborn\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Documents/My Games/FINAL FANTASY XIV - A Realm Reborn/}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\FINAL FANTASY XIV - A Realm Reborn\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Documents/My Games/FINAL FANTASY XIV - A Realm Reborn/}}" Final Fantasy XV: pageId: 68726 steam: 637650 templates: - - >- - {{Game data/config|Microsoft - Store|{{P|localappdata}}\Packages\39EA002F.FINALFANTASYXVforPC_n746a19ndrrjg\LocalState}} - - '{{Game data/config|Origin|{{p|userprofile\Documents}}\My Games\FINAL FANTASY XV\Origin\savestorage\}}' - - '{{Game data/config|Steam|{{p|userprofile\Documents}}\My Games\FINAL FANTASY XV\Steam\{{p|uid}}\savestorage\}}' - - >- - {{Game data/saves|Microsoft - Store|{{P|localappdata}}\Packages\39EA002F.FINALFANTASYXVforPC_n746a19ndrrjg\SystemAppData\wgs}} - - '{{Game data/saves|Origin|{{p|userprofile\Documents}}\My Games\FINAL FANTASY XV\Origin\savestorage\}}' - - >- - {{Game data/saves|Steam|{{P|steam}}\userdata\{{p|uid}}\637650\remote{{note|If Steam Cloud Saves are ''enabled'' - for the game, it will always use this location for save games even in Steam "Offline Mode" and when disconnected - from the Internet. The contents of this folder can be changed while playing the game, and are reflected when - choosing 'Load' from the title screen or in-game menu. '''Save games must be copied into the same slot folder or - usually no saves will appear, though sometimes saves will only be missing.'''}}|{{p|userprofile\Documents}}\My - Games\FINAL FANTASY XV\Steam\{{p|uid}}\savestorage\{{note|If Steam Cloud Saves are ''disabled'' for the game, it - will always use this location for save games even in Steam "Offline Mode" and when disconnected from the Internet. - This location is always used for the game configuration files, even if Steam Cloud Saves are enabled.}}}} + - "{{Game data/config|Microsoft Store|{{P|localappdata}}\\Packages\\39EA002F.FINALFANTASYXVforPC_n746a19ndrrjg\\LocalState}}" + - "{{Game data/config|Origin|{{p|userprofile\\Documents}}\\My Games\\FINAL FANTASY XV\\Origin\\savestorage\\}}" + - "{{Game data/config|Steam|{{p|userprofile\\Documents}}\\My Games\\FINAL FANTASY XV\\Steam\\{{p|uid}}\\savestorage\\}}" + - "{{Game data/saves|Microsoft Store|{{P|localappdata}}\\Packages\\39EA002F.FINALFANTASYXVforPC_n746a19ndrrjg\\SystemAppData\\wgs}}" + - "{{Game data/saves|Origin|{{p|userprofile\\Documents}}\\My Games\\FINAL FANTASY XV\\Origin\\savestorage\\}}" + - "{{Game data/saves|Steam|{{P|steam}}\\userdata\\{{p|uid}}\\637650\\remote{{note|If Steam Cloud Saves are ''enabled'' for the game, it will always use this location for save games even in Steam \"Offline Mode\" and when disconnected from the Internet. The contents of this folder can be changed while playing the game, and are reflected when choosing 'Load' from the title screen or in-game menu. '''Save games must be copied into the same slot folder or usually no saves will appear, though sometimes saves will only be missing.'''}}|{{p|userprofile\\Documents}}\\My Games\\FINAL FANTASY XV\\Steam\\{{p|uid}}\\savestorage\\{{note|If Steam Cloud Saves are ''disabled'' for the game, it will always use this location for save games even in Steam \"Offline Mode\" and when disconnected from the Internet. This location is always used for the game configuration files, even if Steam Cloud Saves are enabled.}}}}" Final Fantasy XV Pocket Edition: pageId: 97041 templates: - - >- - {{Game - data/config|Windows|{{P|localappdata}}\Packages\39EA002F.FINALFANTASY15POCKETEDITION_n746a19ndrrjg\LocalState}} - - >- - {{Game - data/saves|Windows|{{P|localappdata}}\Packages\39EA002F.FINALFANTASY15POCKETEDITION_n746a19ndrrjg\SystemAppData\wgs}} + - "{{Game data/config|Windows|{{P|localappdata}}\\Packages\\39EA002F.FINALFANTASY15POCKETEDITION_n746a19ndrrjg\\LocalState}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Packages\\39EA002F.FINALFANTASY15POCKETEDITION_n746a19ndrrjg\\SystemAppData\\wgs}}" Final Fantasy XVI: pageId: 189511 Final Fleet: @@ -61276,12 +59584,12 @@ Final Hope: Final Islands: pageId: 125591 steam: 929150 -'Final Liberation: Warhammer Epic 40,000': +"Final Liberation: Warhammer Epic 40,000": gog: 1436454557 pageId: 32235 templates: - - '{{Game data/config|Windows|{{p|game}}\epic.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\SAV}}' + - "{{Game data/config|Windows|{{p|game}}\\epic.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\SAV}}" Final Match: pageId: 91890 steam: 841260 @@ -61332,7 +59640,7 @@ Final Vendetta: pageId: 178713 steam: 1891090 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\SOFTWARE\Bitmap Bureau\Final Vendetta}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\SOFTWARE\\Bitmap Bureau\\Final Vendetta}}" Final Warrior Quest: pageId: 91803 steam: 521320 @@ -61348,13 +59656,13 @@ FinalAdventure: FinalFire: pageId: 93068 steam: 816590 -'Find & Destroy: Tank Strategy': +"Find & Destroy: Tank Strategy": pageId: 96163 steam: 838510 Find Differences: pageId: 121437 steam: 936020 -'Find Me: Horror Game': +"Find Me: Horror Game": pageId: 156238 steam: 1211420 Find Out: @@ -61406,13 +59714,13 @@ Finding Light: pageId: 113530 steam: 894310 templates: - - '{{Game data/config|Windows|{{P|game}}\www\save\config.rpgsave}}' - - '{{Game data/saves|Windows|{{P|game}}\www\save\file*.rpgsave}}' + - "{{Game data/config|Windows|{{P|game}}\\www\\save\\config.rpgsave}}" + - "{{Game data/saves|Windows|{{P|game}}\\www\\save\\file*.rpgsave}}" Finding Nemo: pageId: 48625 steam: 331450 templates: - - '{{Game data/saves|Windows|{{P|game}}}}' + - "{{Game data/saves|Windows|{{P|game}}}}" Finding Paradise: gog: 1321564059 gogSide: @@ -61423,12 +59731,12 @@ Finding Paradise: - 770780 - 1028530 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Finding Paradise - Freebird Games\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/freebirdgames/findingparadise}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/freebirdgames/findingparadise/}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Finding Paradise - Freebird Games\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/freebirdgames/findingparadise}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/freebirdgames/findingparadise/}}' + - "{{Game data/config|Windows|{{p|appdata}}\\Finding Paradise - Freebird Games\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/freebirdgames/findingparadise}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/freebirdgames/findingparadise/}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Finding Paradise - Freebird Games\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/freebirdgames/findingparadise}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/freebirdgames/findingparadise/}}" Finding Teddy: pageId: 28514 steam: 259600 @@ -61439,8 +59747,8 @@ Finding the Soul Orb: pageId: 156760 steam: 1213680 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\FTSO\Saved\SaveGames\}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\FTSO\Saved\Config\WindowsNoEditor\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\FTSO\\Saved\\SaveGames\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\FTSO\\Saved\\Config\\WindowsNoEditor\\}}" Fine China: pageId: 51457 steam: 529040 @@ -61448,12 +59756,12 @@ Fine Sweeper: pageId: 47797 steam: 367000 templates: - - '{{Game data/config|Windows|{{p|APPDATA}}\Fine_Sweeper\finesweeper.ini}}' - - '{{Game data/saves|Windows|{{p|APPDATA}}\Fine_Sweeper\finesweeper_online.sav}}' + - "{{Game data/config|Windows|{{p|APPDATA}}\\Fine_Sweeper\\finesweeper.ini}}" + - "{{Game data/saves|Windows|{{p|APPDATA}}\\Fine_Sweeper\\finesweeper_online.sav}}" Finger Derpy: pageId: 135734 steam: 1074490 -'Finger Jets: Phase Challenge': +"Finger Jets: Phase Challenge": pageId: 92063 steam: 830520 Finger Ninja: @@ -61463,7 +59771,7 @@ Fingerbones: pageId: 47003 steam: 391270 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\DefaultCompany\fingerbones\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\DefaultCompany\\fingerbones\\}}" Fingered: pageId: 46841 steam: 384360 @@ -61480,8 +59788,8 @@ Fire: pageId: 38482 steam: 325520 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Daedalic Entertainment GmbH\Fire\}}' - - '{{Game data/saves|Windows|{{P|game}}\Saves\{{P|uid}}\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Daedalic Entertainment GmbH\\Fire\\}}" + - "{{Game data/saves|Windows|{{P|game}}\\Saves\\{{P|uid}}\\}}" Fire & Forget - The Final Assault: pageId: 59755 steam: 404290 @@ -61492,8 +59800,8 @@ Fire & Steel: pageId: 185857 steam: 1791790 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Kreatin Studios\Fire & Steel}}' - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\Kreatin Studios\Fire _ Steel\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Kreatin Studios\\Fire & Steel}}" + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\Kreatin Studios\\Fire _ Steel\\}}" Fire And Thunder: pageId: 142275 steam: 1106660 @@ -61507,16 +59815,16 @@ Fire Commander: Fire Department: pageId: 157571 templates: - - '{{Game data/config|Windows|{{p|game}}}}' - - '{{Game data/saves|Windows|{{p|game}}\save}}' + - "{{Game data/config|Windows|{{p|game}}}}" + - "{{Game data/saves|Windows|{{p|game}}\\save}}" Fire Department 2: pageId: 157572 templates: - - '{{Game data/saves|Windows|{{p|game}}\save}}' + - "{{Game data/saves|Windows|{{p|game}}\\save}}" Fire Department 3: pageId: 157573 templates: - - '{{Game data/saves|Windows|{{p|game}}\Save}}' + - "{{Game data/saves|Windows|{{p|game}}\\Save}}" Fire Farm VR: pageId: 42125 steam: 505670 @@ -61526,10 +59834,10 @@ Fire Fighter: Fire Flight: pageId: 77895 steam: 761770 -'Fire Hawk: Thexder - The Second Contact': +"Fire Hawk: Thexder - The Second Contact": pageId: 158543 templates: - - '{{Game data/config|DOS|{{p|game}}\RESOURCE.CFG}}' + - "{{Game data/config|DOS|{{p|game}}\\RESOURCE.CFG}}" Fire In The Hole: pageId: 95067 steam: 762250 @@ -61540,14 +59848,14 @@ Fire Pro Wrestling World: pageId: 58848 steam: 564230 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\spikechunsoft\FireProWrestlingWorld\}}' + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\spikechunsoft\\FireProWrestlingWorld\\}}" Fire Shark: pageId: 189020 steam: 2237200 Fire With Fire Tower Attack and Defense: pageId: 43897 steam: 351630 -'Fire and Fury: English Civil War': +"Fire and Fury: English Civil War": pageId: 123880 steam: 715270 Fire in the Goal: @@ -61557,7 +59865,7 @@ FireStarter: gog: 1434372124 pageId: 57497 templates: - - '{{Game data/config|Windows|{{p|game}}\BASE\*.cfg}}' + - "{{Game data/config|Windows|{{p|game}}\\BASE\\*.cfg}}" FireTry: pageId: 155707 steam: 1208840 @@ -61573,22 +59881,22 @@ Firebird - La Peri: Firebird - The Unfinished: pageId: 92187 steam: 691430 -'Fireboy & Watergirl: Elements': +"Fireboy & Watergirl: Elements": pageId: 125841 steam: 1003480 -'Fireboy & Watergirl: Fairy Tales': +"Fireboy & Watergirl: Fairy Tales": pageId: 190991 steam: 1781350 Fireburst: pageId: 40787 steam: 207190 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Fireburst\FSGame\Config\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Fireburst\\FSGame\\Config\\}}" Firefall: pageId: 8361 steam: 227700 templates: - - '{{Game data/config|Windows|{{p|localappdata}}/red 5 studios/firefall}}' + - "{{Game data/config|Windows|{{p|localappdata}}/red 5 studios/firefall}}" Firefight: pageId: 42430 steam: 500190 @@ -61596,8 +59904,8 @@ Firefight Reloaded: pageId: 28606 steam: 397680 templates: - - '{{Game data/config|Windows|{{p|game}}\firefightreloaded\cfg\}}' - - '{{Game data/saves|Windows|{{p|game}}\firefightreloaded\save\}}' + - "{{Game data/config|Windows|{{p|game}}\\firefightreloaded\\cfg\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\firefightreloaded\\save\\}}" Firefight!: pageId: 155458 steam: 1204630 @@ -61621,14 +59929,14 @@ Fireflies (2018): Firefly Online Cortex: pageId: 48863 steam: 343750 -'Firegirl: Hack ''n Splash Rescue': +"Firegirl: Hack 'n Splash Rescue": gog: 1154894688 pageId: 173399 steam: 1608550 templates: - - '{{Game data/config|Windows|{{p|userprofile\appdata\locallow}}\FireG\Saved\Config\WindowsNoEditor\*.ini}}' - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\FireG\Saved\SaveGames}}' -Fireman's Quest: + - "{{Game data/config|Windows|{{p|userprofile\\appdata\\locallow}}\\FireG\\Saved\\Config\\WindowsNoEditor\\*.ini}}" + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\FireG\\Saved\\SaveGames}}" +"Fireman's Quest": pageId: 128153 steam: 1006590 Fires at Midnight: @@ -61642,15 +59950,13 @@ Firewatch: pageId: 30671 steam: 383870 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\CampoSanto\Firewatch\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/unity.CampoSanto.Firewatch/}}' - - '{{Game data/config|Linux|{{p|xdgconfighome}}/unity3d/CampoSanto/Firewatch/}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\CampoSanto\Firewatch\saves\}}' - - >- - {{Game data/saves|Microsoft - Store|{{P|localappdata}}\Packages\CampoSanto.Firewatch_1traspxf3h47a\SystemAppData\wgs\}} - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/unity.CampoSanto.Firewatch/saves/}}' - - '{{Game data/saves|Linux|{{p|xdgconfighome}}/unity3d/CampoSanto/Firewatch/saves/}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\CampoSanto\\Firewatch\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/unity.CampoSanto.Firewatch/}}" + - "{{Game data/config|Linux|{{p|xdgconfighome}}/unity3d/CampoSanto/Firewatch/}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\CampoSanto\\Firewatch\\saves\\}}" + - "{{Game data/saves|Microsoft Store|{{P|localappdata}}\\Packages\\CampoSanto.Firewatch_1traspxf3h47a\\SystemAppData\\wgs\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/unity.CampoSanto.Firewatch/saves/}}" + - "{{Game data/saves|Linux|{{p|xdgconfighome}}/unity3d/CampoSanto/Firewatch/saves/}}" Firewood: pageId: 63829 steam: 615180 @@ -61675,7 +59981,7 @@ Fireworks Simulator: pageId: 49241 steam: 323780 templates: - - '{{Game data/saves|Windows|{{p|game}}\Save\}}' + - "{{Game data/saves|Windows|{{p|game}}\\Save\\}}" Firezone: gog: 1154728248 pageId: 183885 @@ -61685,9 +59991,9 @@ Firmament: pageId: 187029 steam: 754890 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Firmament\Saved\Config\WindowsNoEditor}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Firmament\Saved\SaveGames}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Epic/Firmament/Saved/SaveGames}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Firmament\\Saved\\Config\\WindowsNoEditor}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Firmament\\Saved\\SaveGames}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Epic/Firmament/Saved/SaveGames}}" Firmament Wars: pageId: 96251 steam: 849790 @@ -61703,7 +60009,7 @@ First Customer: First Day: pageId: 136491 steam: 1067810 -'First Day: Home Defender': +"First Day: Home Defender": pageId: 156398 steam: 1225640 First Feudal: @@ -61711,9 +60017,9 @@ First Feudal: pageId: 76269 steam: 733460 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\FirstFeudal\FFServer\}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\FirstFeudal\FFServer\save\}}' -'First Impact: Rise of a Hero': + - "{{Game data/config|Windows|{{P|localappdata}}\\FirstFeudal\\FFServer\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\FirstFeudal\\FFServer\\save\\}}" +"First Impact: Rise of a Hero": pageId: 54529 steam: 548470 First Person Lover: @@ -61721,15 +60027,15 @@ First Person Lover: First Person Tennis - The Real Tennis Simulator: pageId: 54349 steam: 454140 -'First Steam Game VHS - Color Retro Racer: Miles Challenge': +"First Steam Game VHS - Color Retro Racer: Miles Challenge": pageId: 78501 steam: 768840 -'First Strike: Final Hour': +"First Strike: Final Hour": pageId: 60331 steam: 587000 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Blindflug Studios AG\First Strike Final Hour}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Blindflug Studios AG/First Strike Final Hour}}' + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Blindflug Studios AG\\First Strike Final Hour}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Blindflug Studios AG/First Strike Final Hour}}" First Telegram War: pageId: 98120 steam: 793700 @@ -61749,17 +60055,17 @@ Fish Fillets 2: pageId: 41046 steam: 33950 templates: - - '{{Game data/saves|Windows|{{p|game}}\Profiles\}}' + - "{{Game data/saves|Windows|{{p|game}}\\Profiles\\}}" Fish Lake: pageId: 54814 steam: 529610 -'Fish Simulator: Aquarium Manager': +"Fish Simulator: Aquarium Manager": pageId: 145160 steam: 1014110 Fish Tycoon: pageId: 41376 steam: 16130 -'Fish Tycoon 2: Virtual Aquarium': +"Fish Tycoon 2: Virtual Aquarium": pageId: 93790 steam: 845250 Fish for Gold: @@ -61771,12 +60077,12 @@ Fish man avoiding fishing: Fish or Die: pageId: 46635 steam: 389230 -Fish's Trip: +"Fish's Trip": pageId: 70208 steam: 701960 Fishdom 3: pageId: 171753 -'Fishdom: Spooky Splash': +"Fishdom: Spooky Splash": pageId: 180963 Fisher Fans VR: pageId: 67133 @@ -61791,8 +60097,8 @@ Fishery: pageId: 95113 steam: 809730 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\Lilou Studio\Fishery\options\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Lilou Studio\Fishery\saved_games\}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Lilou Studio\\Fishery\\options\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Lilou Studio\\Fishery\\saved_games\\}}" Fishing Adventure: pageId: 141558 steam: 1101140 @@ -61802,7 +60108,7 @@ Fishing Maniacs 1 TD: Fishing Planet: pageId: 46917 steam: 380600 -'Fishing Sim World: Pro Tour': +"Fishing Sim World: Pro Tour": pageId: 108952 steam: 834280 Fishing Simulator: @@ -61811,12 +60117,12 @@ Fishing Simulator: Fishing on the Fly: pageId: 64892 steam: 660560 -'Fishing: Barents Sea': +"Fishing: Barents Sea": pageId: 69076 steam: 501080 templates: - - '{{Game data/saves|Windows|{{P|localappdata}}\FBS\Saved\}}' -'Fishing: North Atlantic': + - "{{Game data/saves|Windows|{{P|localappdata}}\\FBS\\Saved\\}}" +"Fishing: North Atlantic": gog: 1122501818 pageId: 167907 steam: 1264250 @@ -61839,8 +60145,8 @@ Fission Superstar X: pageId: 89702 steam: 793680 templates: - - '{{Game data/config|Windows|C:\Users\\Saved Games\FISSIONX\settings.ini}}' - - '{{Game data/saves|Windows|C:\Users\\Saved Games\FISSIONX\Jesus.sav}}' + - "{{Game data/config|Windows|C:\\Users\\\\Saved Games\\FISSIONX\\settings.ini}}" + - "{{Game data/saves|Windows|C:\\Users\\\\Saved Games\\FISSIONX\\Jesus.sav}}" Fist Of Heaven & Hell: pageId: 141182 steam: 1000650 @@ -61849,20 +60155,20 @@ Fist Puncher: pageId: 13466 steam: 238630 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\SavedGames\Fist Puncher\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/FistPuncher/}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/FistPuncher/}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\SavedGames\Fist Puncher\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/FistPuncher/}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/FistPuncher/}}' -'Fist Slash: Of Ultimate Fury': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\SavedGames\\Fist Puncher\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/FistPuncher/}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/FistPuncher/}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\SavedGames\\Fist Puncher\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/FistPuncher/}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/FistPuncher/}}" +"Fist Slash: Of Ultimate Fury": pageId: 34687 steam: 409070 Fist of Awesome: pageId: 50005 steam: 305070 templates: - - '{{Game data/saves|Windows|{{p|LOCALAPPDATA}}\fistofawesome\UserDefault.xml}}' + - "{{Game data/saves|Windows|{{p|LOCALAPPDATA}}\\fistofawesome\\UserDefault.xml}}" Fist of Brave: pageId: 82117 steam: 793400 @@ -61870,7 +60176,7 @@ Fist of Jesus: pageId: 49482 steam: 321110 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Mutant Games\Fist Of Jesus\}}' + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Mutant Games\\Fist Of Jesus\\}}" Fist of Physics: pageId: 54515 steam: 500480 @@ -61880,18 +60186,18 @@ Fist of love: Fist of the Forgotten: pageId: 157499 steam: 1105470 -'Fist of the North Star: Lost Paradise': +"Fist of the North Star: Lost Paradise": pageId: 105959 -Fist's Elimination Tower: +"Fist's Elimination Tower": pageId: 65253 steam: 630460 templates: - - '{{Game data/saves|Windows|{{P|appdata}}\Impostor Cat Games\Fist\FETFinalBuild2.sol}}' + - "{{Game data/saves|Windows|{{P|appdata}}\\Impostor Cat Games\\Fist\\FETFinalBuild2.sol}}" Fistful of Frags: pageId: 17318 steam: 265630 templates: - - '{{Game data/config|Steam|{{p|game}}/fof/cfg/}}' + - "{{Game data/config|Steam|{{p|game}}/fof/cfg/}}" Fisti-Fluffs: pageId: 171574 steam: 1407080 @@ -61939,7 +60245,7 @@ Fitzzle Regal Tigers: Fitzzle Wise Owls: pageId: 99400 steam: 884250 -'Fitzzle: Vicious Alligators': +"Fitzzle: Vicious Alligators": pageId: 104371 steam: 913870 Five Dates: @@ -61957,74 +60263,72 @@ Five Nations: steamSide: - 2471720 templates: - - '{{Game data/saves|Windows|{{p|appdata}}\SilverForge\FiveNations}}' + - "{{Game data/saves|Windows|{{p|appdata}}\\SilverForge\\FiveNations}}" Five Nights With Firearms: pageId: 182250 steam: 2131000 -Five Nights at Freddy's: +"Five Nights at Freddy's": pageId: 25327 steam: 319510 templates: - - '{{Game data/saves|Windows|{{p|appdata}}\MMFApplications\freddy\}}' -Five Nights at Freddy's 2: + - "{{Game data/saves|Windows|{{p|appdata}}\\MMFApplications\\freddy\\}}" +"Five Nights at Freddy's 2": pageId: 37652 steam: 332800 templates: - - '{{Game data/saves|Windows|{{p|appdata}}\MMFApplications\freddy2\}}' -Five Nights at Freddy's 3: + - "{{Game data/saves|Windows|{{p|appdata}}\\MMFApplications\\freddy2\\}}" +"Five Nights at Freddy's 3": pageId: 38033 steam: 354140 templates: - - '{{Game data/saves|Windows|{{p|appdata}}\MMFApplications\freddy3\}}' -Five Nights at Freddy's 4: + - "{{Game data/saves|Windows|{{p|appdata}}\\MMFApplications\\freddy3\\}}" +"Five Nights at Freddy's 4": pageId: 37545 steam: 388090 templates: - - '{{Game data/saves|Windows|{{p|appdata}}\MMFApplications\fn4\}}' -Five Nights at Freddy's Plus: + - "{{Game data/saves|Windows|{{p|appdata}}\\MMFApplications\\fn4\\}}" +"Five Nights at Freddy's Plus": pageId: 184297 steam: 2107410 -'Five Nights at Freddy''s: Help Wanted': +"Five Nights at Freddy's: Help Wanted": pageId: 135395 renamedFrom: - - 'Five Nights at Freddy''s VR: Help Wanted' + - "Five Nights at Freddy's VR: Help Wanted" steam: 732690 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\freddys\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\freddys\Saved\SaveGames\}}' -'Five Nights at Freddy''s: Security Breach': + - "{{Game data/config|Windows|{{p|localappdata}}\\freddys\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\freddys\\Saved\\SaveGames\\}}" +"Five Nights at Freddy's: Security Breach": pageId: 166451 steam: 747660 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\fnaf9\Saved\Config\WindowsNoEditor\GameUserSettings.ini}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\fnaf9\Saved\SaveGames}}' -'Five Nights at Freddy''s: Sister Location': + - "{{Game data/config|Windows|{{p|localappdata}}\\fnaf9\\Saved\\Config\\WindowsNoEditor\\GameUserSettings.ini}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\fnaf9\\Saved\\SaveGames}}" +"Five Nights at Freddy's: Sister Location": pageId: 39245 steam: 506610 templates: - - '{{Game data/saves|Windows|{{p|appdata}}\MMFApplications\sl\}}' + - "{{Game data/saves|Windows|{{p|appdata}}\\MMFApplications\\sl\\}}" Five Rooms: pageId: 95303 steam: 860940 Five Seconds of Bad Music: pageId: 112012 steam: 805800 -'Five: Champions of Canaan': +"Five: Champions of Canaan": pageId: 36876 steam: 492870 -'Five: Guardians of David': +"Five: Guardians of David": pageId: 45499 steam: 387010 templates: - - >- - {{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Kingdom Games\Five_ Guardians of - David\Saves\THEPLAYER}} + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Kingdom Games\\Five_ Guardians of David\\Saves\\THEPLAYER}}" Fix Me Fix You: pageId: 58660 steam: 601570 templates: - - '{{Game data/config|Windows|{{p|game}}\data\system\Config.tjs}}' - - '{{Game data/saves|Windows|{{p|game}}\FixMeFixYou_tyrano_data.sav}}' + - "{{Game data/config|Windows|{{p|game}}\\data\\system\\Config.tjs}}" + - "{{Game data/saves|Windows|{{p|game}}\\FixMeFixYou_tyrano_data.sav}}" Fix Race: pageId: 89563 steam: 818240 @@ -62049,7 +60353,7 @@ FlOw: Flag N Frag: pageId: 43294 steam: 456160 -"Flag couple\U0001F6A9": +Flag couple🚩: pageId: 123651 steam: 960430 Flagsplosion: @@ -62081,7 +60385,7 @@ Flame of Mirrors: Flamebreak: pageId: 37483 steam: 399640 -Flamel's Miracle: +"Flamel's Miracle": pageId: 58844 steam: 599480 Flameruby: @@ -62093,7 +60397,7 @@ Flaming Pixels: Flan: pageId: 132656 steam: 974850 -Flandre's dream. - 36000 ft deep -: +"Flandre's dream. - 36000 ft deep -": pageId: 144273 steam: 1085340 Flank That Tank!: @@ -62117,12 +60421,12 @@ Flappy Galaxy: FlappyU: pageId: 91886 steam: 822740 -'Flare: Empyrean Campaign': +"Flare: Empyrean Campaign": pageId: 171367 Flash Point: pageId: 125155 steam: 997560 -'Flash Point: Fire Rescue': +"Flash Point: Fire Rescue": pageId: 66478 steam: 654220 Flash Snooker Game: @@ -62133,29 +60437,27 @@ Flashback: pageId: 129815 steam: 961620 templates: - - >- - {{Game - data/config|Windows|{{P|userprofile}}\AppData\LocalLow\Microids\Flashback\OPTIONS|{{P|hkcu}}\Software\Microids\Flashback\}} - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Microids\Flashback\}}' + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Microids\\Flashback\\OPTIONS|{{P|hkcu}}\\Software\\Microids\\Flashback\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Microids\\Flashback\\}}" Flashback (2013): pageId: 10908 steam: 245730 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Flashback\FlashbackGame\Config\}}' - - '{{Game data/saves|Windows|{{p|uplay}}\savegames\{{p|uid}}\424\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Flashback\\FlashbackGame\\Config\\}}" + - "{{Game data/saves|Windows|{{p|uplay}}\\savegames\\{{p|uid}}\\424\\}}" Flashback 2: gog: 2035081143 pageId: 190856 steam: 2008420 templates: - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\Microids\Flashback 2\*.es3}}' -'Flashback: The Quest for Identity': + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\Microids\\Flashback 2\\*.es3}}" +"Flashback: The Quest for Identity": pageId: 157945 Flashing Lights - Police Fire EMS: pageId: 70024 steam: 605740 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\NilsJakrins\FlashingLights}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\NilsJakrins\\FlashingLights}}" Flashout 2: gog: 1997220672 pageId: 50101 @@ -62165,22 +60467,22 @@ Flashout 3: pageId: 181955 steam: 1761870 templates: - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\Jujubee S_A_\Flashout 3\SaveData\*.gx}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/pl.jujubee.flashout3/SaveData/*.gx}}' - - '{{Game data/saves|Linux|{{p|xdgconfighome}}/unity3d/Jujubee S_A_/Flashout 3/SaveData/*.gx}}' + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\Jujubee S_A_\\Flashout 3\\SaveData\\*.gx}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/pl.jujubee.flashout3/SaveData/*.gx}}" + - "{{Game data/saves|Linux|{{p|xdgconfighome}}/unity3d/Jujubee S_A_/Flashout 3/SaveData/*.gx}}" Flashout 3D: pageId: 182106 -'Flashout 3D: Enhanced Edition': +"Flashout 3D: Enhanced Edition": gog: 2121564020 pageId: 181922 steam: 2022780 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Jujubee S.A.\Flashout3D-EE\}}' - - '{{Game data/saves|Windows|{{P|hkcu}}\Software\Jujubee S.A.\Flashout3D-EE\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Jujubee S.A.\\Flashout3D-EE\\}}" + - "{{Game data/saves|Windows|{{P|hkcu}}\\Software\\Jujubee S.A.\\Flashout3D-EE\\}}" Flashover MegaSector: pageId: 153669 steam: 1197380 -'Flashpoint Campaigns: Red Storm Player''s Edition': +"Flashpoint Campaigns: Red Storm Player's Edition": pageId: 38549 steam: 330720 Flat Earths!: @@ -62194,14 +60496,14 @@ Flat Heroes: pageId: 38789 steam: 508790 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Parallel Circles\flat heroes\}}' - - '{{Game data/saves|Steam|{{P|steam}}\userdata\{{P|uid}}\508790\remote\saveGame.dat}}' -Flat Kingdom Paper's Cut Edition: + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Parallel Circles\\flat heroes\\}}" + - "{{Game data/saves|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\508790\\remote\\saveGame.dat}}" +"Flat Kingdom Paper's Cut Edition": pageId: 37419 steam: 405970 templates: - - '{{Game data/config|Windows|{{P|userprofile}}\AppData\LocalLow\Fat Panda\Flat Kingdom}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Fat Panda\Flat Kingdom}}' + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Fat Panda\\Flat Kingdom}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Fat Panda\\Flat Kingdom}}" Flat Path: pageId: 36864 steam: 512740 @@ -62219,38 +60521,38 @@ FlatOut: pageId: 7101 steam: 6220 templates: - - '{{Game data/config|Windows|{{p|game}}\Savegame\}}' - - '{{Game data/saves|Windows|{{p|game}}\Savegame\}}' + - "{{Game data/config|Windows|{{p|game}}\\Savegame\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\Savegame\\}}" FlatOut 2: gog: 1207660523 pageId: 7104 steam: 2990 templates: - - '{{Game data/config|Windows|{{p|game}}\Savegame\}}' - - '{{Game data/saves|Windows|{{p|game}}\Savegame\}}' -'FlatOut 3: Chaos & Destruction': + - "{{Game data/config|Windows|{{p|game}}\\Savegame\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\Savegame\\}}" +"FlatOut 3: Chaos & Destruction": pageId: 7114 steam: 201510 templates: - - '{{Game data/config|Windows|{{p|steam}}\userdata\{{p|uid}}\201510\localConfig.cfg}}' - - '{{Game data/saves|Windows|{{p|steam}}\userdata\{{p|uid}}\201510\}}' -'FlatOut 4: Total Insanity': + - "{{Game data/config|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\201510\\localConfig.cfg}}" + - "{{Game data/saves|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\201510\\}}" +"FlatOut 4: Total Insanity": pageId: 59730 steam: 402130 steamSide: - - 625080 - 600590 - 600591 - 600592 + - 625080 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\My Games\FlatOut 4\UserSettings.cfg}}' - - '{{Game data/saves|Windows|{{p|steam}}\userdata\{{p|uid}}\402130\remote\}}' -'FlatOut: Ultimate Carnage': + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\My Games\\FlatOut 4\\UserSettings.cfg}}" + - "{{Game data/saves|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\402130\\remote\\}}" +"FlatOut: Ultimate Carnage": pageId: 7107 steam: 12360 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\FlatOut Ultimate Carnage\Savegame\options.cfg}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\FlatOut Ultimate Carnage\Savegame\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\FlatOut Ultimate Carnage\\Savegame\\options.cfg}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\FlatOut Ultimate Carnage\\Savegame\\}}" Flatshot: pageId: 78036 steam: 517510 @@ -62258,14 +60560,14 @@ Flatspace: pageId: 156378 steam: 1210780 templates: - - '{{Game data/config|Windows|{{P|game}}\Options.txt}}' + - "{{Game data/config|Windows|{{P|game}}\\Options.txt}}" Flatspace IIk: pageId: 58696 steam: 585430 Flatwaters: pageId: 82876 steam: 779870 -'Flavortown:VR': +"Flavortown:VR": pageId: 135133 steam: 1043130 Flaws in the People We Love: @@ -62282,7 +60584,7 @@ Fledgling Heroes: Fleet: pageId: 45609 steam: 406760 -'Fleet Defender: The F-14 Tomcat Simulation': +"Fleet Defender: The F-14 Tomcat Simulation": gog: 1708998465 pageId: 49418 steam: 328930 @@ -62311,8 +60613,8 @@ Flesh Eaters: pageId: 35391 steam: 383580 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\FleshEaters\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\FleshEaters\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\FleshEaters\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\FleshEaters\\}}" Flesh Water: pageId: 184417 steam: 1740730 @@ -62328,7 +60630,7 @@ Flicker of Hope: pageId: 189656 steam: 1314460 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\FlickerOfHope\Saved\Config\WindowsNoEditor\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\FlickerOfHope\\Saved\\Config\\WindowsNoEditor\\}}" FlickerMAZE: pageId: 155904 steam: 1207260 @@ -62336,12 +60638,8 @@ Flicky: pageId: 30850 steam: 71111 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\SEGA Mega Drive - Classics\setup.dat|{{p|userprofile\Documents}}\SEGA Genesis Classics\setup.dat}} - - >- - {{Game data/saves|Windows|{{p|userprofile\Documents}}\SEGA Mega Drive - Classics\0029\|{{p|userprofile\Documents}}\SEGA Genesis Classics\0029\}} + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\SEGA Mega Drive Classics\\setup.dat|{{p|userprofile\\Documents}}\\SEGA Genesis Classics\\setup.dat}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\SEGA Mega Drive Classics\\0029\\|{{p|userprofile\\Documents}}\\SEGA Genesis Classics\\0029\\}}" Flight 732: pageId: 87555 steam: 670330 @@ -62352,33 +60650,33 @@ Flight Control HD: pageId: 37816 steam: 62000 templates: - - '{{Game data/config|Windows|{{P|game}}\startup.bin}}' - - '{{Game data/saves|Steam|{{P|steam}}\userdata\{{P|uid}}\62000\remote\}}' - - '{{Game data/saves|Windows|{{P|game}}\}}' + - "{{Game data/config|Windows|{{P|game}}\\startup.bin}}" + - "{{Game data/saves|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\62000\\remote\\}}" + - "{{Game data/saves|Windows|{{P|game}}\\}}" Flight Sim World: pageId: 62050 steam: 389280 -'Flight Simulator: VR': +"Flight Simulator: VR": pageId: 55009 steam: 569330 Flight Unlimited: pageId: 70040 templates: - - '{{Game data/config|Windows|{{p|game}}\LOGS\HANGAR.DAT}}' - - '{{Game data/saves|Windows|{{p|game}}\LOGS\*.LOG}}' + - "{{Game data/config|Windows|{{p|game}}\\LOGS\\HANGAR.DAT}}" + - "{{Game data/saves|Windows|{{p|game}}\\LOGS\\*.LOG}}" Flight Unlimited 2K18: pageId: 64787 steam: 667520 Flight Unlimited II: pageId: 5584 templates: - - '{{Game data/config|Windows|{{p|game}}\flt2.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\logs\*.log}}' + - "{{Game data/config|Windows|{{p|game}}\\flt2.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\logs\\*.log}}" Flight Unlimited III: pageId: 27716 templates: - - '{{Game data/config|Windows|{{p|game}}\flt3.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\logs\*.log}}' + - "{{Game data/config|Windows|{{p|game}}\\flt3.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\logs\\*.log}}" Flight Unlimited Las Vegas: pageId: 47343 steam: 383620 @@ -62389,14 +60687,14 @@ Flight of the Amazon Queen: gog: 1207659723 pageId: 15938 templates: - - '{{Game data/config|Windows|{{p|game}}\queen.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\queen.s**}}' -'Flight of the Amazon Queen: 25th Anniversary Edition': + - "{{Game data/config|Windows|{{p|game}}\\queen.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\queen.s**}}" +"Flight of the Amazon Queen: 25th Anniversary Edition": pageId: 169543 steam: 1105460 templates: - - '{{Game data/config|Windows|{{p|game}}\Saved games\fotaq.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\Saved games\queen.asd|{{p|game}}\Saved games\queen.s0?}}' + - "{{Game data/config|Windows|{{p|game}}\\Saved games\\fotaq.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\Saved games\\queen.asd|{{p|game}}\\Saved games\\queen.s0?}}" Flight of the Athena: pageId: 77385 steam: 751940 @@ -62412,12 +60710,10 @@ Flight to Eternity: FlightGear Flight Simulator: pageId: 181484 templates: - - >- - {{Game data/config|Windows|{{P|userprofile}}\FlightGear\|{{P|userprofile\Documents}}\FlightGear ''(FlightGear 3.0 - to FlightGear 2018.3)''|{{P|appdata}}\flightgear.org\ ''(Versions before FlightGear 3.0)''}} - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/FlightGear}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.fgfs/}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\FlightGear\aircraft-data}}' + - "{{Game data/config|Windows|{{P|userprofile}}\\FlightGear\\|{{P|userprofile\\Documents}}\\FlightGear ''(FlightGear 3.0 to FlightGear 2018.3)''|{{P|appdata}}\\flightgear.org\\ ''(Versions before FlightGear 3.0)''}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/FlightGear}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.fgfs/}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\FlightGear\\aircraft-data}}" Flightless: pageId: 73881 steam: 731770 @@ -62428,7 +60724,7 @@ Fling to the Finish: pageId: 132822 steam: 1054430 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\SplitSide Games\Fling to the Finish\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\SplitSide Games\\Fling to the Finish\\}}" Flinger Tactics: pageId: 151421 steam: 1157050 @@ -62439,12 +60735,12 @@ Flinthook: pageId: 39648 steam: 401710 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Tribute Games\Flinthook\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Tribute Games/Flinthook/}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/Tribute Games/Flinthook/}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Tribute Games\Flinthook\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Tribute Games/Flinthook/}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/Tribute Games/Flinthook/}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Tribute Games\\Flinthook\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Tribute Games/Flinthook/}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/Tribute Games/Flinthook/}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Tribute Games\\Flinthook\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Tribute Games/Flinthook/}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/Tribute Games/Flinthook/}}" Flip: pageId: 44601 steam: 365510 @@ -62508,7 +60804,7 @@ Flix The Flea: Flix and Chill: pageId: 58146 steam: 595460 -'Flix and Chill 2: Millennials': +"Flix and Chill 2: Millennials": pageId: 64844 steam: 657120 Float Gallery: @@ -62538,7 +60834,7 @@ Flockers: Flood of Light: pageId: 63723 steam: 606480 -'Flood: The Prequel': +"Flood: The Prequel": pageId: 72660 steam: 680880 Flooded: @@ -62546,13 +60842,13 @@ Flooded: pageId: 186507 steam: 1795470 templates: - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\Copper_Island\savemaster\*.save}}' + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\Copper_Island\\savemaster\\*.save}}" Floogen: pageId: 82940 steam: 800830 Floor 13: pageId: 176731 -'Floor 13: Deep State': +"Floor 13: Deep State": pageId: 176733 steam: 1263990 Floor Kids: @@ -62561,7 +60857,7 @@ Floor Kids: Floor Massacre: pageId: 109244 steam: 885630 -'Floor Plan: Hands-On Edition': +"Floor Plan: Hands-On Edition": pageId: 69653 steam: 673060 Floor by Floor: @@ -62578,11 +60874,11 @@ Floppy Knights: pageId: 162915 steam: 1057800 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\RoseCityGames\Floppy Knights\*.*}}' + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\RoseCityGames\\Floppy Knights\\*.*}}" Flora: pageId: 78342 steam: 733480 -Flora's Fruit Farm: +"Flora's Fruit Farm": pageId: 41230 steam: 35070 Floral Aroma in the Shrine: @@ -62597,30 +60893,28 @@ Florence: steamSide: - 1206330 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Mountains\Florence\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Mountains\Florence\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Mountains\\Florence\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Mountains\\Florence\\}}" Florensia: pageId: 39085 steam: 384030 -'Floresia I: Intemporel': +"Floresia I: Intemporel": pageId: 80488 steam: 761000 Floribella: pageId: 188930 templates: - - >- - {{Game - data/config|Windows|{{p|game}}/floribella/client/config.cs|{{p|game}}/floribella/client/defaults.cs|{{p|game}}/floribella/client/prefs.cs}} + - "{{Game data/config|Windows|{{p|game}}/floribella/client/config.cs|{{p|game}}/floribella/client/defaults.cs|{{p|game}}/floribella/client/prefs.cs}}" Flotilla: pageId: 6293 steam: 55000 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\SavedGames\Flotilla\Flotilla\AllPlayers}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Flotilla/Flotilla/AllPlayers}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/Flotilla/Flotilla/AllPlayers}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\SavedGames\Flotilla\Flotilla\AllPlayers}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Flotilla/Flotilla/AllPlayers}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/Flotilla/Flotilla/AllPlayers}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\SavedGames\\Flotilla\\Flotilla\\AllPlayers}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Flotilla/Flotilla/AllPlayers}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/Flotilla/Flotilla/AllPlayers}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\SavedGames\\Flotilla\\Flotilla\\AllPlayers}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Flotilla/Flotilla/AllPlayers}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/Flotilla/Flotilla/AllPlayers}}" Flotilla 2: pageId: 93297 steam: 592100 @@ -62629,17 +60923,15 @@ Flotsam: pageId: 108916 steam: 821250 templates: - - >- - {{Game data/config|Windows|{{P|userprofile}}\AppData\LocalLow\Pajama Llama - Games\Flotsam\PlayerSettings.json|{{P|hkcu}}\Software\Pajama Llama Games\Flotsam\}} - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Pajama Llama Games\Flotsam\Saves\}}' + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Pajama Llama Games\\Flotsam\\PlayerSettings.json|{{P|hkcu}}\\Software\\Pajama Llama Games\\Flotsam\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Pajama Llama Games\\Flotsam\\Saves\\}}" Flotus: pageId: 99538 steam: 884150 Flow Handcrafted: pageId: 76105 steam: 747810 -'Flow: The Sliding': +"Flow: The Sliding": pageId: 64272 steam: 661000 FlowDot: @@ -62656,11 +60948,9 @@ Flower: pageId: 128794 steam: 966330 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Flower\Flower.cfg}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\Documents\Flower\SAVEGAME.BIN}}' - - >- - {{Game - data/saves|GOG.com|{{P|localappdata}}\GOG.com\Galaxy\Applications\51964741675694916\Storage\Shared\Files\SAVEGAME.BIN}} + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Flower\\Flower.cfg}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Documents\\Flower\\SAVEGAME.BIN}}" + - "{{Game data/saves|GOG.com|{{P|localappdata}}\\GOG.com\\Galaxy\\Applications\\51964741675694916\\Storage\\Shared\\Files\\SAVEGAME.BIN}}" Flower Design: pageId: 55825 steam: 546070 @@ -62671,12 +60961,12 @@ Flower Girl: pageId: 179041 steam: 1568940 templates: - - '{{Game data/saves|Windows|{{p|appdata}}\LocalLow\JZ\Flower Girl}}' + - "{{Game data/saves|Windows|{{p|appdata}}\\LocalLow\\JZ\\Flower Girl}}" Flower Girl 2: pageId: 179799 steam: 1860860 templates: - - '{{Game data/saves|Windows|{{p|appdata}}\LocalLow\JZ\Flower Girl 2}}' + - "{{Game data/saves|Windows|{{p|appdata}}\\LocalLow\\JZ\\Flower Girl 2}}" Flowering Across the Hakugyokurou: pageId: 136926 renamedFrom: @@ -62691,31 +60981,31 @@ Flowerless Gardenia 白花未咲: Flowers in Dark: pageId: 125258 steam: 1004190 -'Flowers: Le Volume sur Automne': +"Flowers: Le Volume sur Automne": gog: 2044697588 pageId: 180715 steam: 1238730 templates: - - '{{Game data/config|Windows|{{P|game}}\save\config.dat}}' - - '{{Game data/saves|Windows|{{P|game}}\save\}}' -'Flowers: Le Volume sur Hiver': + - "{{Game data/config|Windows|{{P|game}}\\save\\config.dat}}" + - "{{Game data/saves|Windows|{{P|game}}\\save\\}}" +"Flowers: Le Volume sur Hiver": gog: 1564851593 pageId: 180717 steam: 1921560 -'Flowers: Le Volume sur Printemps': +"Flowers: Le Volume sur Printemps": gog: 1697970811 pageId: 36238 steam: 452440 templates: - - '{{Game data/config|Windows|{{P|game}}\save\config.dat}}' - - '{{Game data/saves|Windows|{{P|game}}\save\}}' -'Flowers: Le Volume sur Été': + - "{{Game data/config|Windows|{{P|game}}\\save\\config.dat}}" + - "{{Game data/saves|Windows|{{P|game}}\\save\\}}" +"Flowers: Le Volume sur Été": gog: 1685981342 pageId: 102829 steam: 858940 templates: - - '{{Game data/config|Windows|{{P|game}}\save\config.dat}}' - - '{{Game data/saves|Windows|{{P|game}}\save\}}' + - "{{Game data/config|Windows|{{P|game}}\\save\\config.dat}}" + - "{{Game data/saves|Windows|{{P|game}}\\save\\}}" Flowing Lights: pageId: 78850 steam: 757820 @@ -62744,30 +61034,28 @@ Fluffy Horde: pageId: 108840 steam: 777880 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\TurtleJuice\FluffyHorde}}' - - '{{Game data/saves|Windows|{{p|hkcu}}\Software\TurtleJuice\FluffyHorde}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\TurtleJuice\\FluffyHorde}}" + - "{{Game data/saves|Windows|{{p|hkcu}}\\Software\\TurtleJuice\\FluffyHorde}}" Fluffy Store: pageId: 141869 steam: 1038740 templates: - - >- - {{Game data/saves|Windows|{{p|game}}\FluffyStore_Data\StreamingAssets\userinfo.db | - {{p|game}}\FluffyStore_Data\StreamingAssets\*.jpg | {{p|game}}\FluffyStore_Data\StreamingAssets\ScreenShot\*.jpg}} + - "{{Game data/saves|Windows|{{p|game}}\\FluffyStore_Data\\StreamingAssets\\userinfo.db | {{p|game}}\\FluffyStore_Data\\StreamingAssets\\*.jpg | {{p|game}}\\FluffyStore_Data\\StreamingAssets\\ScreenShot\\*.jpg}}" Fluid Lander - フリュードランダー: pageId: 135057 steam: 1064950 Fluid Simulation: pageId: 150186 steam: 1131390 -'Flunkerne: Kaos og Kalypso': +"Flunkerne: Kaos og Kalypso": pageId: 89749 -'Flunkerne: Pirater': +"Flunkerne: Pirater": pageId: 87747 -'Flunkerne: På Månen': +"Flunkerne: På Månen": pageId: 88317 -'Flunkerne: Robotter': +"Flunkerne: Robotter": pageId: 82477 -'Flunkerne: Superskurke': +"Flunkerne: Superskurke": pageId: 89746 Flurius: pageId: 91935 @@ -62805,7 +61093,7 @@ Fly High: Fly Killer VR: pageId: 95533 steam: 868560 -Fly O'Clock: +"Fly O'Clock": pageId: 37992 steam: 490820 Fly Punch Boom!: @@ -62818,8 +61106,8 @@ Fly and Destroy: pageId: 37357 steam: 508180 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\SOFTWARE\Just1337\Fly And Destroy\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Just1337\Fly And Destroy\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\Just1337\\Fly And Destroy\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Just1337\\Fly And Destroy\\}}" Fly in the House: pageId: 34095 steam: 350500 @@ -62832,13 +61120,13 @@ Fly the Plane: Fly to KUMA MAKER: pageId: 39950 steam: 517860 -Fly'N: +"Fly'N": pageId: 38462 steam: 223730 templates: - - '{{Game data/config|Windows|{{p|game}}\Source\Content\Config\slot1\*.xml}}' - - '{{Game data/saves|Windows|{{p|game}}\Source\Content\Config\slot1\*.dat}}' -'Fly, Glowfly!': + - "{{Game data/config|Windows|{{p|game}}\\Source\\Content\\Config\\slot1\\*.xml}}" + - "{{Game data/saves|Windows|{{p|game}}\\Source\\Content\\Config\\slot1\\*.dat}}" +"Fly, Glowfly!": pageId: 42467 steam: 415530 FlyCatcher: @@ -62856,7 +61144,7 @@ FlyWarzz: FlyWings 2018 Flight Simulator: pageId: 125353 steam: 928880 -'Flyboys: Squadron': +"Flyboys: Squadron": pageId: 177432 Flyeeex: pageId: 134774 @@ -62869,7 +61157,7 @@ Flyhunter Origins: Flying Aces - Navy Pilot Simulator: pageId: 91589 steam: 837430 -'Flying Bacon: Ukrainian Air Force': +"Flying Bacon: Ukrainian Air Force": pageId: 79706 steam: 776670 Flying Baron 1916: @@ -62882,19 +61170,19 @@ Flying Corps: pageId: 31680 steam: 1643470 templates: - - '{{Game data/config|DOS|{{p|game}}\SAVEGAME\SETTINGS.CFG}}' - - '{{Game data/config|Windows|{{p|game}}\SAVEGAME\SETTINGS.CFG}}' - - '{{Game data/saves|DOS|{{p|game}}\SAVEGAME}}' - - '{{Game data/saves|Windows|{{p|game}}\SAVEGAME}}' + - "{{Game data/config|DOS|{{p|game}}\\SAVEGAME\\SETTINGS.CFG}}" + - "{{Game data/config|Windows|{{p|game}}\\SAVEGAME\\SETTINGS.CFG}}" + - "{{Game data/saves|DOS|{{p|game}}\\SAVEGAME}}" + - "{{Game data/saves|Windows|{{p|game}}\\SAVEGAME}}" Flying Pengy: pageId: 52382 steam: 519870 -'Flying Red Barrel: The Diary of a Little Aviator': +"Flying Red Barrel: The Diary of a Little Aviator": pageId: 160805 steam: 1036370 templates: - - '{{Game data/config|Windows| {{p|game}}\config.dat }}' - - '{{Game data/saves|Windows|{{p|game}}\system\ranking.dat | {{p|game}}\system\system.dat }}' + - "{{Game data/config|Windows| {{p|game}}\\config.dat }}" + - "{{Game data/saves|Windows|{{p|game}}\\system\\ranking.dat | {{p|game}}\\system\\system.dat }}" Flying Salvager: pageId: 77203 steam: 752310 @@ -62909,12 +61197,12 @@ Flying Soul: steam: 909270 Flying Tigers: pageId: 26179 -'Flying Tigers: Shadows Over China': +"Flying Tigers: Shadows Over China": pageId: 46835 steam: 365810 templates: - - '{{Game data/config|Windows|{{p|game}}\media\config.ini|{{p|game}}\media\controls_user.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\media\save\}}' + - "{{Game data/config|Windows|{{p|game}}\\media\\config.ini|{{p|game}}\\media\\controls_user.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\media\\save\\}}" Flying Turkey: pageId: 81629 steam: 760010 @@ -62924,7 +61212,7 @@ Flying in Labyrinth: FlyingMetalSuit: pageId: 122062 steam: 972290 -'FlyingRock: Arena': +"FlyingRock: Arena": pageId: 64196 steam: 661950 Flynguin Station: @@ -62933,18 +61221,14 @@ Flynguin Station: Flynn and Freckles: pageId: 100550 steam: 822130 -'Flynn: Son of Crimson': +"Flynn: Son of Crimson": gog: 1217831807 pageId: 89732 steam: 737520 templates: - - >- - {{Game data/config|Microsoft - Store|{{P|localappdata}}\Packages\HumbleBundle.FlynnSonofCrimson_q2mcdwmzx4qja\LocalCache\Local\Flynn_Son_of_Crimson\Data}} - - '{{Game data/saves|Windows|{{P|localappdata}}\Flynn_Son_of_Crimson\Data}}' - - >- - {{Game data/saves|Microsoft - Store|{{P|localappdata}}\Packages\HumbleBundle.FlynnSonofCrimson_q2mcdwmzx4qja\LocalCache\Local\Flynn_Son_of_Crimson\Data}} + - "{{Game data/config|Microsoft Store|{{P|localappdata}}\\Packages\\HumbleBundle.FlynnSonofCrimson_q2mcdwmzx4qja\\LocalCache\\Local\\Flynn_Son_of_Crimson\\Data}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Flynn_Son_of_Crimson\\Data}}" + - "{{Game data/saves|Microsoft Store|{{P|localappdata}}\\Packages\\HumbleBundle.FlynnSonofCrimson_q2mcdwmzx4qja\\LocalCache\\Local\\Flynn_Son_of_Crimson\\Data}}" Flyvalny 20!8: pageId: 87381 steam: 800280 @@ -62952,10 +61236,10 @@ Flywrench: pageId: 27785 steam: 337350 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\FlywrenchStudio\}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/FlywrenchStudio/}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\FlywrenchStudio\}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/FlywrenchStudio/}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\FlywrenchStudio\\}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/FlywrenchStudio/}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\FlywrenchStudio\\}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/FlywrenchStudio/}}" Fobia: pageId: 96623 steam: 870450 @@ -62968,7 +61252,7 @@ Foe Frenzy: Fog of War: pageId: 57825 steam: 574080 -'Fog of War: The Battle for Cerberus': +"Fog of War: The Battle for Cerberus": pageId: 134668 steam: 1069820 Fold: @@ -62989,7 +61273,7 @@ Follow My Footsteps: Follow the White Rabbit VR (화이트래빗): pageId: 149817 steam: 1134500 -'Follower:Sacrifice': +"Follower:Sacrifice": pageId: 92706 steam: 715660 Foobillard++: @@ -63003,14 +61287,14 @@ Food Drive: Food Girls: pageId: 123940 steam: 985080 -'Food Girls: Civil War': +"Food Girls: Civil War": pageId: 156169 renamedFrom: - 食用系少女:美食內戰 Food Girls:Civil War steam: 1192910 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\Storia\Eatery\Utage\SaveEatery}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Storia\Eatery\Utage\SaveEatery}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Storia\\Eatery\\Utage\\SaveEatery}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Storia\\Eatery\\Utage\\SaveEatery}}" Food Hunter: pageId: 74197 steam: 721970 @@ -63048,10 +61332,10 @@ Foosball - Street Edition: Foosball VR: pageId: 81623 steam: 779730 -'Foosball: World Tour': +"Foosball: World Tour": pageId: 45318 steam: 386400 -'FootLOL: Epic Fail League': +"FootLOL: Epic Fail League": pageId: 38305 steam: 263740 FootRock: @@ -63082,8 +61366,8 @@ Football Game: Football Generation: pageId: 157972 templates: - - '{{Game data/saves|Windows|{{P|game}}\Saves}}' -'Football Girls: Dream Team': + - "{{Game data/saves|Windows|{{P|game}}\\Saves}}" +"Football Girls: Dream Team": pageId: 94770 steam: 862660 Football Heroes Turbo: @@ -63106,22 +61390,22 @@ Football Manager 2009: pageId: 92583 steam: 10540 templates: - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Sports Interactive\Football Manager 2009\}}' + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Sports Interactive\\Football Manager 2009\\}}" Football Manager 2010: pageId: 92556 steam: 34009 templates: - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Sports Interactive\Football Manager 2010\}}' + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Sports Interactive\\Football Manager 2010\\}}" Football Manager 2011: pageId: 92552 steam: 34220 templates: - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Sports Interactive\Football Manager 2011\}}' + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Sports Interactive\\Football Manager 2011\\}}" Football Manager 2012: pageId: 1412 steam: 71270 templates: - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Sports Interactive\Football Manager 2012\}}' + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Sports Interactive\\Football Manager 2012\\}}" Football Manager 2013: pageId: 3874 steam: 207890 @@ -63131,16 +61415,12 @@ Football Manager 2014: pageId: 9568 steam: 231670 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Sports Interactive\Football Manager 2014\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Sports Interactive/Football Manager 2014/}}' - - >- - {{Game data/config|Linux|{{P|xdgdatahome}}/Sports Interactive/Football Manager 2014/|~/Sports Interactive/Football - Manager 2014/}} - - '{{Game data/saves|Windows|{{p|localappdata}}\Sports Interactive\Football Manager 2014\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Sports Interactive/Football Manager 2014/}}' - - >- - {{Game data/saves|Linux|{{P|xdgdatahome}}/Sports Interactive/Football Manager 2014/|~/Sports Interactive/Football - Manager 2014/}} + - "{{Game data/config|Windows|{{p|localappdata}}\\Sports Interactive\\Football Manager 2014\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Sports Interactive/Football Manager 2014/}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/Sports Interactive/Football Manager 2014/|~/Sports Interactive/Football Manager 2014/}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Sports Interactive\\Football Manager 2014\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Sports Interactive/Football Manager 2014/}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/Sports Interactive/Football Manager 2014/|~/Sports Interactive/Football Manager 2014/}}" Football Manager 2015: pageId: 67453 steam: 295270 @@ -63151,37 +61431,32 @@ Football Manager 2017: pageId: 36107 steam: 482730 templates: - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Sports Interactive\Football Manager 2017\games}}' + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Sports Interactive\\Football Manager 2017\\games}}" Football Manager 2018: pageId: 68506 steam: 624090 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Sports Interactive\Football Manager 2018\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Sports Interactive\\Football Manager 2018\\}}" Football Manager 2019: pageId: 99095 steam: 872790 -'Football Manager 2019: The Hashtag United Challenge': +"Football Manager 2019: The Hashtag United Challenge": pageId: 125468 steam: 884830 Football Manager 2020: pageId: 145614 steam: 1100600 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Sports Interactive\Football Manager 2020\Preferences\}}' - - >- - {{Game data/config|Microsoft - Store|{{p|localappdata}}\Packages\SportsInteractive.FootballManager2020_5w3tn6tb6stnm\LocalCache\Local\Sports - Interactive\Football Manager 2020\Gamepass\Preferences}} - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Sports Interactive\Football Manager 2020\games\}}' - - >- - {{Game data/saves|Microsoft Store|{{p|userprofile\Documents}}\Sports Interactive\Football Manager - 2020\Gamepass\games\}} + - "{{Game data/config|Windows|{{p|localappdata}}\\Sports Interactive\\Football Manager 2020\\Preferences\\}}" + - "{{Game data/config|Microsoft Store|{{p|localappdata}}\\Packages\\SportsInteractive.FootballManager2020_5w3tn6tb6stnm\\LocalCache\\Local\\Sports Interactive\\Football Manager 2020\\Gamepass\\Preferences}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Sports Interactive\\Football Manager 2020\\games\\}}" + - "{{Game data/saves|Microsoft Store|{{p|userprofile\\Documents}}\\Sports Interactive\\Football Manager 2020\\Gamepass\\games\\}}" Football Manager 2020 Touch: pageId: 145617 steam: 1100620 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Sports Interactive\Football Manager 2020 Touch\Preferences\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Sports Interactive\Football Manager 2020 Touch\games\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Sports Interactive\\Football Manager 2020 Touch\\Preferences\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Sports Interactive\\Football Manager 2020 Touch\\games\\}}" Football Manager 2021: pageId: 163786 steam: 1263850 @@ -63195,8 +61470,8 @@ Football Manager 2023: pageId: 184571 steam: 1904540 templates: - - '{{Game data/saves|Windows|{{p|localappdata}}\Sports Interactive\Football Manager 2023\cloud}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Sports Interactive/Football Manager 2023/cloud}}' + - "{{Game data/saves|Windows|{{p|localappdata}}\\Sports Interactive\\Football Manager 2023\\cloud}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Sports Interactive/Football Manager 2023/cloud}}" Football Manager 2023 Touch: pageId: 182720 Football Manager 3: @@ -63215,7 +61490,7 @@ Football Manager Touch 2018: Football Manager Touch 2019: pageId: 109152 steam: 872820 -'Football Manager: World Cup Edition': +"Football Manager: World Cup Edition": pageId: 177478 Football Mogul 15: pageId: 38759 @@ -63245,12 +61520,12 @@ Football Tactics: pageId: 37674 steam: 375530 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Creoteam\Football Tactics\setup.ini}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Creoteam\Football Tactics\saveGame\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Creoteam\\Football Tactics\\setup.ini}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Creoteam\\Football Tactics\\saveGame\\}}" Football VR: pageId: 42351 steam: 500930 -'Football: The Hardest Job': +"Football: The Hardest Job": pageId: 149217 steam: 1154940 Footbrawl Playground: @@ -63272,23 +61547,23 @@ For Honor: - 572600 - 768350 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\For Honor\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\For Honor\\}}" For Inco: pageId: 148593 steam: 1154360 -'For Rent: Haunted House': +"For Rent: Haunted House": pageId: 80816 steam: 772360 For a Better Country: pageId: 145320 steam: 1131420 -'For the Glory: A Europa Universalis Game': +"For the Glory: A Europa Universalis Game": gog: 1442576067 pageId: 22254 steam: 42810 templates: - - '{{Game data/config|Windows|{{P|game}}\config.tfg|{{P|game}}\settings.txt}}' - - '{{Game data/saves|Windows|{{P|game}}\Scenarios\Save Games\*.cfg|{{P|game}}\Scenarios\Save Games\*.eeg}}' + - "{{Game data/config|Windows|{{P|game}}\\config.tfg|{{P|game}}\\settings.txt}}" + - "{{Game data/saves|Windows|{{P|game}}\\Scenarios\\Save Games\\*.cfg|{{P|game}}\\Scenarios\\Save Games\\*.eeg}}" For the King: gog: 1376475724 pageId: 56288 @@ -63301,19 +61576,17 @@ For the King: - 1768601 - 1768602 templates: - - >- - {{Game data/config|Windows|{{P|hkcu}}\Software\IronOak Games\FTK\|{{P|userprofile}}\AppData\LocalLow\IronOak - Games\FTK\save\custominput.bin}} - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/IronOak Games/FTK}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/IronOak Games/FTK}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\IronOak Games\FTK\save\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/IronOak Games/FTK/save}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/IronOak Games/FTK/save}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\IronOak Games\\FTK\\|{{P|userprofile}}\\AppData\\LocalLow\\IronOak Games\\FTK\\save\\custominput.bin}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/IronOak Games/FTK}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/IronOak Games/FTK}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\IronOak Games\\FTK\\save\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/IronOak Games/FTK/save}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/IronOak Games/FTK/save}}" For the King II: pageId: 190954 steam: 1676840 templates: - - '{{Game data/saves|Windows|{{p|localappdata}}\IronOak Games\For The King II}}' + - "{{Game data/saves|Windows|{{p|localappdata}}\\IronOak Games\\For The King II}}" For the Night: pageId: 150424 steam: 1113630 @@ -63333,11 +61606,11 @@ Forager: pageId: 90221 steam: 751780 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Forager}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/Forager/}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Forager}}' - - '{{Game data/saves|Microsoft Store|{{P|localappdata}}\Packages\HumbleBundle.ForagerWin10_q2mcdwmzx4qja\LocalState}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/Forager/}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Forager}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/Forager/}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Forager}}" + - "{{Game data/saves|Microsoft Store|{{P|localappdata}}\\Packages\\HumbleBundle.ForagerWin10_q2mcdwmzx4qja\\LocalState}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/Forager/}}" Forbidden Clicker Party: pageId: 80466 steam: 783200 @@ -63375,61 +61648,57 @@ Force of Nature: pageId: 54969 steam: 568570 templates: - - '{{Game data/config|Windows|{{P|programdata}}\ForceofNature}}' - - '{{Game data/saves|Windows|C:\ProgramData\ForceOfNature\Worlds}}' -'Force of Nature 2: Ghost Keeper': + - "{{Game data/config|Windows|{{P|programdata}}\\ForceofNature}}" + - "{{Game data/saves|Windows|C:\\ProgramData\\ForceOfNature\\Worlds}}" +"Force of Nature 2: Ghost Keeper": pageId: 177683 steam: 1316230 templates: - - '{{Game data/saves|Windows|{{p|appdata}}\AY std\Force Of Nature 2\Worlds}}' + - "{{Game data/saves|Windows|{{p|appdata}}\\AY std\\Force Of Nature 2\\Worlds}}" Forced: pageId: 11414 steam: 249990 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\BetaDwarf ApS\FORCED\}}' - - '{{Game data/config|Linux|{{p|xdgconfighome}}/unity3d/BetaDwarf ApS/FORCED/prefs}}' - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/249990/remote/}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\BetaDwarf ApS\\FORCED\\}}" + - "{{Game data/config|Linux|{{p|xdgconfighome}}/unity3d/BetaDwarf ApS/FORCED/prefs}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/249990/remote/}}" Forced Showdown: gog: 1453126104 pageId: 34236 steam: 265000 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\BetaDwarf\FORCED SHOWDOWN\}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/BetaDwarf/FORCED SHOWDOWN/}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\FORCED Showdown\profile}}' - - '{{Game data/saves|Linux|{{P|game}}/game/save/profile}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\BetaDwarf\\FORCED SHOWDOWN\\}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/BetaDwarf/FORCED SHOWDOWN/}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\FORCED Showdown\\profile}}" + - "{{Game data/saves|Linux|{{P|game}}/game/save/profile}}" Ford Racing: pageId: 73337 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/saves|Windows|{{p|game}}\Save\}}' + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\Save\\}}" Ford Racing 2: pageId: 22326 templates: - - '{{Game data/config|Windows|{{p|hklm}}\SOFTWARE\{{p|wow64}}\Empire Interactive\Ford Racing 2\}}' - - '{{Game data/saves|Windows|{{p|game}}\SAVEDATA\AUTOSAVE\}}' + - "{{Game data/config|Windows|{{p|hklm}}\\SOFTWARE\\{{p|wow64}}\\Empire Interactive\\Ford Racing 2\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\SAVEDATA\\AUTOSAVE\\}}" Ford Racing 3: pageId: 30146 steam: 315600 templates: - - '{{Game data/config|Windows|{{p|HKLM}}\SOFTWARE\{{p|wow64}}\Empire Interactive\Ford Racing 3\}}' - - '{{Game data/saves|Windows|{{p|game}}\SAVEDATA\AUTOSAVE\}}' -'Ford Racing: Off Road': + - "{{Game data/config|Windows|{{p|HKLM}}\\SOFTWARE\\{{p|wow64}}\\Empire Interactive\\Ford Racing 3\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\SAVEDATA\\AUTOSAVE\\}}" +"Ford Racing: Off Road": pageId: 49671 steam: 315740 templates: - - >- - {{Game data/config|Windows|{{p|hklm}}\SOFTWARE\{{p|wow64}}\Empire Interactive\Off Road Racing\|{{P|appdata}}\Ford - Racing Off Road\ctrllers.dat|{{P|appdata}}\Off Road\ctrllers.dat}} - - '{{Game data/saves|Windows|{{P|appdata}}\Ford Racing Off Road\autosave\|{{P|appdata}}\Off Road\autosave\}}' + - "{{Game data/config|Windows|{{p|hklm}}\\SOFTWARE\\{{p|wow64}}\\Empire Interactive\\Off Road Racing\\|{{P|appdata}}\\Ford Racing Off Road\\ctrllers.dat|{{P|appdata}}\\Off Road\\ctrllers.dat}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\Ford Racing Off Road\\autosave\\|{{P|appdata}}\\Off Road\\autosave\\}}" Ford Street Racing: pageId: 49673 steam: 306520 templates: - - >- - {{Game data/config|Windows|{{p|hklm}}\SOFTWARE\{{p|wow64}}\Empire Interactive\Ford Street - Racing\|{{P|appdata}}\Ford Street Racing\ctrllers.dat}} - - '{{Game data/saves|Windows|{{P|appdata}}\Ford Street Racing\autosave\}}' + - "{{Game data/config|Windows|{{p|hklm}}\\SOFTWARE\\{{p|wow64}}\\Empire Interactive\\Ford Street Racing\\|{{P|appdata}}\\Ford Street Racing\\ctrllers.dat}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\Ford Street Racing\\autosave\\}}" Forebearers: pageId: 123804 steam: 923590 @@ -63441,33 +61710,31 @@ Foregone: pageId: 132915 steam: 1000760 templates: - - >- - {{Game data/config|Windows|{{P|hkcu}}\SOFTWARE\Big Blue Bubble Inc\Foregone|{{P|userprofile\appdata\locallow}}\Big - Blue Bubble Inc\Foregone\settings\}} - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Big Blue Bubble Inc\Foregone\game\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\SOFTWARE\\Big Blue Bubble Inc\\Foregone|{{P|userprofile\\appdata\\locallow}}\\Big Blue Bubble Inc\\Foregone\\settings\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Big Blue Bubble Inc\\Foregone\\game\\}}" Foreign: pageId: 149105 steam: 1161200 Foreign Frugglers: pageId: 135563 steam: 1071920 -'Foreign Legion: Buckets of Blood': +"Foreign Legion: Buckets of Blood": pageId: 41256 steam: 36000 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Sakari Indie\Foreign Legion\}}' - - '{{Game data/saves|Windows|{{p|steam}}\userdata\{{p|uid}}\205550\}}' -'Foreign Legion: Multi Massacre': + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Sakari Indie\\Foreign Legion\\}}" + - "{{Game data/saves|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\205550\\}}" +"Foreign Legion: Multi Massacre": pageId: 40761 steam: 205550 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Sakari Indie\Multi Massacre\}}' - - '{{Game data/saves|Windows|{{p|steam}}\userdata\{{p|uid}}\205550\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Sakari Indie\\Multi Massacre\\}}" + - "{{Game data/saves|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\205550\\}}" Forep Man: pageId: 143987 steam: 1136250 templates: - - '{{Game data/saves|Windows|{{p|appdata}}\Stencyl\Forep Man}}' + - "{{Game data/saves|Windows|{{p|appdata}}\\Stencyl\\Forep Man}}" Foresight: pageId: 49223 steam: 315080 @@ -63489,10 +61756,10 @@ Forest Harvester Tractor 3D: Forest Home: pageId: 149646 steam: 1145970 -'Forest Legends: The Call of Love': +"Forest Legends: The Call of Love": pageId: 78192 renamedFrom: - - 'Forest Legends: The Call of Love Collector''s Edition' + - "Forest Legends: The Call of Love Collector's Edition" steam: 765770 Forest Mage: pageId: 140846 @@ -63521,7 +61788,7 @@ Forest spiders: Forestation: pageId: 77954 steam: 752300 -'Forestation: Circles Of Nature': +"Forestation: Circles Of Nature": pageId: 136960 steam: 1068230 Forestry: @@ -63541,26 +61808,26 @@ Foretales: - 2012150 - 2080330 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\Alkemi\Foretales\}}' - - '{{Game data/saves|Windows|\userdata\\1170080\remote\release_game-state }}' + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Alkemi\\Foretales\\}}" + - "{{Game data/saves|Windows|\\userdata\\\\1170080\\remote\\release_game-state }}" Forever Home: pageId: 74471 steam: 718200 -'Forever Lost: Episode 1': +"Forever Lost: Episode 1": pageId: 128296 steam: 448450 -'Forever Lost: Episode 2': +"Forever Lost: Episode 2": pageId: 128298 steam: 1025320 -'Forever Lost: Episode 3': +"Forever Lost: Episode 3": pageId: 128300 steam: 1025450 Forever Skies: pageId: 177158 steam: 1641960 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\ProjectZeppelin\Saved\Config\WindowsNoEditor}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\ProjectZeppelin\Saved\SaveGames}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\ProjectZeppelin\\Saved\\Config\\WindowsNoEditor}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\ProjectZeppelin\\Saved\\SaveGames}}" Forever Space: pageId: 88146 steam: 811130 @@ -63571,12 +61838,12 @@ Forewarned: pageId: 190814 steam: 1562420 templates: - - '{{Game data/config|Windows|{{P|}}}}' - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Dreambyte Games\FOREWARNED\}}' + - "{{Game data/config|Windows|{{P|}}}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Dreambyte Games\\FOREWARNED\\}}" Forex Demo Accelerator: pageId: 144294 steam: 1129080 -'Forex Trading Master: Simulator': +"Forex Trading Master: Simulator": pageId: 121728 steam: 955070 Forge: @@ -63600,12 +61867,12 @@ Forged Battalion: Forged of Blood: pageId: 139379 steam: 617640 -'Forget Me Not: My Organic Garden': +"Forget Me Not: My Organic Garden": pageId: 38123 steam: 363980 templates: - - '{{Game data/config|Windows|{{P|game}}\mog_Data\config.txt}}' - - '{{Game data/saves|Windows|{{P|game}}\mog_Data\*.sv}}' + - "{{Game data/config|Windows|{{P|game}}\\mog_Data\\config.txt}}" + - "{{Game data/saves|Windows|{{P|game}}\\mog_Data\\*.sv}}" Forgetful Dictator: pageId: 141969 steam: 1087810 @@ -63614,8 +61881,8 @@ Forgive Me Father: pageId: 171787 steam: 1590910 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\FMF\Saved\Config\WindowsNoEditor}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\FMF\Saved\SaveGames}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\FMF\\Saved\\Config\\WindowsNoEditor}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\FMF\\Saved\\SaveGames}}" Forgive Me Father 2: gog: 1807290517 pageId: 190519 @@ -63623,8 +61890,8 @@ Forgive Me Father 2: steamSide: - 2530770 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\FMF2\Saved\Config\WindowsNoEditor}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\FMF2\Saved\SaveGames}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\FMF2\\Saved\\Config\\WindowsNoEditor}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\FMF2\\Saved\\SaveGames}}" Forgiveness: pageId: 122726 steam: 971120 @@ -63677,79 +61944,77 @@ Forgotten Myths CCG: Forgotten Passages: pageId: 154043 steam: 1120940 -'Forgotten Places: Lost Circus': +"Forgotten Places: Lost Circus": pageId: 89484 steam: 818440 -'Forgotten Places: Regained Castle': +"Forgotten Places: Regained Castle": pageId: 80492 steam: 777160 Forgotten Realm RPG: pageId: 94493 steam: 849970 -'Forgotten Realms: Demon Stone': +"Forgotten Realms: Demon Stone": gog: 1207658929 pageId: 17432 templates: - - '{{Game data/config|Windows|{{p|game}}\IC020004.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\*.sav}}' -'Forgotten Realms: Unlimited Adventures': + - "{{Game data/config|Windows|{{p|game}}\\IC020004.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\*.sav}}" +"Forgotten Realms: Unlimited Adventures": gog: 1432650732 gogSide: - 1436871302 pageId: 54903 steam: 1904526 templates: - - '{{Game data/saves|DOS|{{p|game}}\*.DSN\SAVE\}}' -'Forgotten Sound 1: Revelation': + - "{{Game data/saves|DOS|{{p|game}}\\*.DSN\\SAVE\\}}" +"Forgotten Sound 1: Revelation": pageId: 80827 steam: 779840 -'Forgotten Sound 2: Destiny': +"Forgotten Sound 2: Destiny": pageId: 80826 steam: 783960 -'Forgotten Tales: Day of the Dead': +"Forgotten Tales: Day of the Dead": pageId: 42870 steam: 453770 templates: - - '{{Game data/saves|Windows|{{p|appdata}}\Green Sauce Games\Forgotten Tales - Day of the Dead\}}' + - "{{Game data/saves|Windows|{{p|appdata}}\\Green Sauce Games\\Forgotten Tales - Day of the Dead\\}}" Forgotten World: pageId: 100174 steam: 890690 Forgotten in Hell: pageId: 134725 steam: 1065830 -'Forgotten, Not Lost - A Kinetic Novel': +"Forgotten, Not Lost - A Kinetic Novel": pageId: 37435 steam: 457490 templates: - - '{{Game data/config|Windows|{{p|game}}\renpy\config.py}}' - - '{{Game data/saves|Windows|{{p|appdata}}\RenPy\Forgotten Not Lost-1455509813\}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.renpy/Forgotten Not Lost-1455509813/}}' + - "{{Game data/config|Windows|{{p|game}}\\renpy\\config.py}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\RenPy\\Forgotten Not Lost-1455509813\\}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.renpy/Forgotten Not Lost-1455509813/}}" Forgotton Anne: gog: 2133872469 pageId: 80681 steam: 542050 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\ThroughLine Games\Forgotton Anne\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Preferences/com.throughlinegames.forgottonanne.plist}}' - - >- - {{Game - data/saves|GOG.com|{{P|userprofile}}\AppData\Local\GOG.com\Galaxy\Applications\51445449926814491\Storage\Shared\Files\ForgottonAnne-Save.json}} - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\542050\remote\forgottonanne-save.json}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\ThroughLine Games\\Forgotton Anne\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Preferences/com.throughlinegames.forgottonanne.plist}}" + - "{{Game data/saves|GOG.com|{{P|userprofile}}\\AppData\\Local\\GOG.com\\Galaxy\\Applications\\51445449926814491\\Storage\\Shared\\Files\\ForgottonAnne-Save.json}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\542050\\remote\\forgottonanne-save.json}}" Fork Knights: pageId: 139369 steam: 1097330 -Fork Parker's Holiday Profit Hike: +"Fork Parker's Holiday Profit Hike": pageId: 49089 steam: 339120 templates: - - '{{Game data/saves|Windows|{{p|hkcu}}\Software\Dodge Roll\Fork Parker''s Holiday Profit Hike}}' + - "{{Game data/saves|Windows|{{p|hkcu}}\\Software\\Dodge Roll\\Fork Parker's Holiday Profit Hike}}" Fork Truck Challenge: pageId: 51042 steam: 374120 Forklift Simulator 2019: pageId: 122052 steam: 939450 -'Forklift: Simulator': +"Forklift: Simulator": pageId: 139151 steam: 1051260 Form: @@ -63783,7 +62048,7 @@ Formula Car Racing Simulator: Formula E powered by Virtually Live: pageId: 62647 steam: 585000 -'Formula E: Grand Prix': +"Formula E: Grand Prix": pageId: 66689 steam: 683490 Formula One 97: @@ -63793,23 +62058,19 @@ Formula One 98: Formula One 99: pageId: 14704 templates: - - '{{Game data/config|Windows|{{p|game}}\config116.dsv}}' - - '{{Game data/saves|Windows|{{p|game}}\chmpsave.dat}}' + - "{{Game data/config|Windows|{{p|game}}\\config116.dsv}}" + - "{{Game data/saves|Windows|{{p|game}}\\chmpsave.dat}}" Formula One Grand Prix: pageId: 26604 templates: - - '{{Game data/config|DOS|{{p|game}}\}}' - - '{{Game data/saves|DOS|{{p|game}}\}}' + - "{{Game data/config|DOS|{{p|game}}\\}}" + - "{{Game data/saves|DOS|{{p|game}}\\}}" Formula Truck 2013: pageId: 48813 steam: 273750 templates: - - >- - {{Game - data/config|Windows|{{p|game}}\Config.ini|{{p|game}}\UserData\Controller\|{{p|game}}\UserData\bans.txt|{{p|game}}\UserData\KnownRFMs.ini}} - - >- - {{Game - data/saves|Windows|{{p|game}}\UserData\{{p|uid}}\|{{p|game}}\UserData\vehicledata.spt|{{p|game}}\ReplayFridge\REPLAYS\}} + - "{{Game data/config|Windows|{{p|game}}\\Config.ini|{{p|game}}\\UserData\\Controller\\|{{p|game}}\\UserData\\bans.txt|{{p|game}}\\UserData\\KnownRFMs.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\UserData\\{{p|uid}}\\|{{p|game}}\\UserData\\vehicledata.spt|{{p|game}}\\ReplayFridge\\REPLAYS\\}}" Formula X: pageId: 92981 steam: 842270 @@ -63841,30 +62102,30 @@ Forsaken Remastered: pageId: 101905 steam: 668980 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Nightdive Studios\Forsaken EX\}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/Nightdive Studios/Forsaken EX/}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Nightdive Studios\Forsaken EX\saves\}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/Nightdive Studios/Forsaken EX/saves/}}' + - "{{Game data/config|Windows|{{p|appdata}}\\Nightdive Studios\\Forsaken EX\\}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/Nightdive Studios/Forsaken EX/}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Nightdive Studios\\Forsaken EX\\saves\\}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/Nightdive Studios/Forsaken EX/saves/}}" Forsaken Uprising: pageId: 60625 steam: 314700 Forsaken World: pageId: 40959 steam: 36620 -'Forsekir:First Invasion': +"Forsekir:First Invasion": pageId: 144947 steam: 1122450 Forspoken: pageId: 167289 steam: 1680880 steamSide: - - 1819222 - 1818430 + - 1819222 - 1819223 - 1819224 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\FORSPOKEN\Steam\{{P|uid}}\savestorage\}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\FORSPOKEN\Steam\{{P|uid}}\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\FORSPOKEN\\Steam\\{{P|uid}}\\savestorage\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\FORSPOKEN\\Steam\\{{P|uid}}\\}}" Fort: pageId: 104977 steam: 905020 @@ -63881,17 +62142,17 @@ Fort Meow: pageId: 37790 steam: 352070 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Fort Meow\Data}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Fort Meow\Data}}' + - "{{Game data/config|Windows|{{p|appdata}}\\Fort Meow\\Data}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Fort Meow\\Data}}" Fort Solis: pageId: 188953 steam: 1931730 steamSide: - 34109 templates: - - '{{Game data/config|Windows|~\appdata\local\Sycamore\Saved\Config\Windows}}' - - '{{Game data/saves|Windows|~\appdata\local\Sycamore\Saved\SaveGames}}' -'Fort Sumter: The Secession Crisis': + - "{{Game data/config|Windows|~\\appdata\\local\\Sycamore\\Saved\\Config\\Windows}}" + - "{{Game data/saves|Windows|~\\appdata\\local\\Sycamore\\Saved\\SaveGames}}" +"Fort Sumter: The Secession Crisis": pageId: 136473 steam: 1041940 Fort Triumph: @@ -63899,8 +62160,8 @@ Fort Triumph: pageId: 61576 steam: 612570 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\SOFTWARE\Cookie Byte Entertainment\Fort Triumph}}' - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\Cookie Byte Entertainment\Fort Triumph}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\Cookie Byte Entertainment\\Fort Triumph}}" + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\Cookie Byte Entertainment\\Fort Triumph}}" Fort Zombie: pageId: 121219 steam: 415180 @@ -63911,8 +62172,8 @@ Fortified: pageId: 44706 steam: 334210 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Fortified\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Fortified\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Fortified\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Fortified\\Saved\\SaveGames\\}}" Fortified Swiss: pageId: 105431 steam: 910230 @@ -63929,28 +62190,28 @@ Fortix: pageId: 15999 steam: 45400 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Fortix\gamedata.dat}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Fortix\gamedata.dat}}' + - "{{Game data/config|Windows|{{p|appdata}}\\Fortix\\gamedata.dat}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Fortix\\gamedata.dat}}" Fortix 2: pageId: 12778 steam: 45450 templates: - - '{{Game data/config|Linux|{{p|linuxhome}}/.Fortix2/}}' - - '{{Game data/config|Steam|{{p|steam}}\userdata\{{p|uid}}\45450\remote\profiles.dat}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.Fortix2/}}' - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\45450\remote\profiles.dat}}' + - "{{Game data/config|Linux|{{p|linuxhome}}/.Fortix2/}}" + - "{{Game data/config|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\45450\\remote\\profiles.dat}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.Fortix2/}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\45450\\remote\\profiles.dat}}" Fortnite: pageId: 74054 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\FortniteGame\Saved\Config\WindowsClient}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\FortniteGame\Saved\SaveGames\}}' -'Fortress Europe: The Liberation of France': + - "{{Game data/config|Windows|{{p|localappdata}}\\FortniteGame\\Saved\\Config\\WindowsClient}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\FortniteGame\\Saved\\SaveGames\\}}" +"Fortress Europe: The Liberation of France": pageId: 189964 Fortress Forever: pageId: 29506 steam: 253530 templates: - - '{{Game data/config|Windows|{{p|game}}/FortressForever/cfg/}}' + - "{{Game data/config|Windows|{{p|game}}/FortressForever/cfg/}}" Fortress of Hell: pageId: 130478 steam: 644870 @@ -63958,46 +62219,46 @@ FortressCraft Evolved: pageId: 13322 steam: 254200 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\ProjectorGames\FortressCraft\settings.ini}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/ProjectorGames/FortressCraft/}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\ProjectorGames\FortressCraft\Worlds}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/ProjectorGames/FortressCraft/Worlds/}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\ProjectorGames\\FortressCraft\\settings.ini}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/ProjectorGames/FortressCraft/}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\ProjectorGames\\FortressCraft\\Worlds}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/ProjectorGames/FortressCraft/Worlds/}}" Forts: pageId: 58382 steam: 410900 templates: - - '{{Game data/config|Windows|{{p|game}}\users\{{p|uid}}\campaigns\}}' + - "{{Game data/config|Windows|{{p|game}}\\users\\{{p|uid}}\\campaigns\\}}" Fortune & Gloria: pageId: 100314 steam: 881060 -'Fortune Summoners: Secret of the Elemental Stone': +"Fortune Summoners: Secret of the Elemental Stone": pageId: 778 steam: 203510 templates: - - '{{Game data/config|Windows|{{p|game}}\user}}' - - '{{Game data/saves|Windows|{{p|game}}\user}}' + - "{{Game data/config|Windows|{{p|game}}\\user}}" + - "{{Game data/saves|Windows|{{p|game}}\\user}}" Fortune Telling: pageId: 141304 steam: 1114140 -Fortune's Run: +"Fortune's Run": gog: 1573480744 pageId: 189542 steam: 1692240 templates: - - '{{Game data/config|Windows|{{P|userprofile\appdata\locallow}}\TeamFortune\FortunesRun\user.prop}}' - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\TeamFortune\FortunesRun}}' -Fortune's Tavern - Remastered: + - "{{Game data/config|Windows|{{P|userprofile\\appdata\\locallow}}\\TeamFortune\\FortunesRun\\user.prop}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\TeamFortune\\FortunesRun}}" +"Fortune's Tavern - Remastered": pageId: 67597 steam: 691980 -Fortune's Tavern - The Fantasy Tavern Simulator!: +"Fortune's Tavern - The Fantasy Tavern Simulator!": pageId: 60627 steam: 346270 Fortune-499: pageId: 93100 steam: 840610 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\AP Thomson\Fortune-499\}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\AP Thomson\Fortune-499\SaveData}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\AP Thomson\\Fortune-499\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\AP Thomson\\Fortune-499\\SaveData}}" Forward: pageId: 92815 steam: 820190 @@ -64008,76 +62269,54 @@ Forward to the Sky: pageId: 38573 steam: 333250 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\AnimuGame\ForwardToTheSky}}' - - '{{Game data/config|Linux|{{p|xdgconfighome}}/unity3d/AnimuGame/ForwardToTheSky/}}' - - '{{Game data/saves|Windows|{{P|hkcu}}\Software\AnimuGame\ForwardToTheSky}}' - - '{{Game data/saves|Linux|{{p|xdgconfighome}}/unity3d/AnimuGame/ForwardToTheSky/}}' -'Forward: Escape the Fold': + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\AnimuGame\\ForwardToTheSky}}" + - "{{Game data/config|Linux|{{p|xdgconfighome}}/unity3d/AnimuGame/ForwardToTheSky/}}" + - "{{Game data/saves|Windows|{{P|hkcu}}\\Software\\AnimuGame\\ForwardToTheSky}}" + - "{{Game data/saves|Linux|{{p|xdgconfighome}}/unity3d/AnimuGame/ForwardToTheSky/}}" +"Forward: Escape the Fold": pageId: 179709 steam: 1766390 Forza Horizon 3: pageId: 39904 templates: - - >- - {{Game - data/config|Windows|{{p|localappdata}}\Packages\Microsoft.OpusPG_8wekyb3d8bbwe\TempState\scratch\User_PCLocalStorageDirectory\ConnectedStorage\ForzaUserConfigSelections\}} - - '{{Game data/saves|Windows|{{p|localappdata}}\Packages\Microsoft.OpusPG_8wekyb3d8bbwe\SystemAppData\wgs\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Packages\\Microsoft.OpusPG_8wekyb3d8bbwe\\TempState\\scratch\\User_PCLocalStorageDirectory\\ConnectedStorage\\ForzaUserConfigSelections\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Packages\\Microsoft.OpusPG_8wekyb3d8bbwe\\SystemAppData\\wgs\\}}" Forza Horizon 4: pageId: 97177 steam: 1293830 templates: - - >- - {{Game data/config|Microsoft - Store|{{p|localappdata}}\Packages\Microsoft.SunriseBaseGame_8wekyb3d8bbwe\TempState\scratch\User_PCLocalStorageDirectory\ConnectedStorage\ForzaUserConfigSelections\UserConfigSelections\}} - - >- - {{Game data/saves|Microsoft - Store|{{p|localappdata}}\Packages\Microsoft.SunriseBaseGame_8wekyb3d8bbwe\SystemAppData\wgs\}} - - '{{Game data/saves|Steam|{{p|Steam}}\userdata\{{p|uid}}\1293830\remote\}}' + - "{{Game data/config|Microsoft Store|{{p|localappdata}}\\Packages\\Microsoft.SunriseBaseGame_8wekyb3d8bbwe\\TempState\\scratch\\User_PCLocalStorageDirectory\\ConnectedStorage\\ForzaUserConfigSelections\\UserConfigSelections\\}}" + - "{{Game data/saves|Microsoft Store|{{p|localappdata}}\\Packages\\Microsoft.SunriseBaseGame_8wekyb3d8bbwe\\SystemAppData\\wgs\\}}" + - "{{Game data/saves|Steam|{{p|Steam}}\\userdata\\{{p|uid}}\\1293830\\remote\\}}" Forza Horizon 5: pageId: 169274 steam: 1551360 templates: - - >- - {{Game data/config|Microsoft - Store|{{P|localappdata}}\Packages\Microsoft.624F8B84B80_8wekyb3d8bbwe\LocalCache\Local\User_GamingLocalStorageDirectory\ConnectedStorage\ForzaUserConfigSelections\UserConfigSelections}} - - >- - {{Game - data/config|Steam|{{P|localappdata}}\ForzaHorizon5\User_SteamLocalStorageDirectory\ConnectedStorage\ForzaUserConfigSelections\UserConfigSelections}} - - >- - {{Game data/saves|Microsoft - Store|{{P|localappdata}}\Packages\Microsoft.624F8B84B80_8wekyb3d8bbwe\SystemAppData\wgs\}} - - '{{Game data/saves|Steam|{{P|steam}}\userdata\{{P|uid}}\1551360\remote\{{P|uid}}\}}' + - "{{Game data/config|Microsoft Store|{{P|localappdata}}\\Packages\\Microsoft.624F8B84B80_8wekyb3d8bbwe\\LocalCache\\Local\\User_GamingLocalStorageDirectory\\ConnectedStorage\\ForzaUserConfigSelections\\UserConfigSelections}}" + - "{{Game data/config|Steam|{{P|localappdata}}\\ForzaHorizon5\\User_SteamLocalStorageDirectory\\ConnectedStorage\\ForzaUserConfigSelections\\UserConfigSelections}}" + - "{{Game data/saves|Microsoft Store|{{P|localappdata}}\\Packages\\Microsoft.624F8B84B80_8wekyb3d8bbwe\\SystemAppData\\wgs\\}}" + - "{{Game data/saves|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\1551360\\remote\\{{P|uid}}\\}}" Forza Motorsport: pageId: 162113 steam: 2440510 templates: - - >- - {{Game data/config|Microsoft - Store|{{P|localappdata}}\Packages\Microsoft.ForzaMotorsport_8wekyb3d8bbwe\LocalCache\Local\User_GamingLocalStorageDirectory\ConnectedStorage\ForzaUserConfigSelections\UserConfigSelections}} - - >- - {{Game - data/config|Steam|{{P|localappdata}}\Microsoft.ForzaMotorsport\User_SteamLocalStorageDirectory\ConnectedStorage\ForzaUserConfigSelections\UserConfigSelections}} -'Forza Motorsport 6: Apex': + - "{{Game data/config|Microsoft Store|{{P|localappdata}}\\Packages\\Microsoft.ForzaMotorsport_8wekyb3d8bbwe\\LocalCache\\Local\\User_GamingLocalStorageDirectory\\ConnectedStorage\\ForzaUserConfigSelections\\UserConfigSelections}}" + - "{{Game data/config|Steam|{{P|localappdata}}\\Microsoft.ForzaMotorsport\\User_SteamLocalStorageDirectory\\ConnectedStorage\\ForzaUserConfigSelections\\UserConfigSelections}}" +"Forza Motorsport 6: Apex": pageId: 32625 templates: - - >- - {{Game - data/config|Windows|{{p|localappdata}}\Packages\Microsoft.ApexPG_8wekyb3d8bbwe\AC\Temp\Turn10Temp.scratch\UserConfig.xml}} - - '{{Game data/saves|Windows|{{p|localappdata}}\Packages\Microsoft.ApexPG_8wekyb3d8bbwe\SystemAppData\wgs\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Packages\\Microsoft.ApexPG_8wekyb3d8bbwe\\AC\\Temp\\Turn10Temp.scratch\\UserConfig.xml}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Packages\\Microsoft.ApexPG_8wekyb3d8bbwe\\SystemAppData\\wgs\\}}" Forza Motorsport 7: pageId: 63534 templates: - - >- - {{Game - data/config|Windows|{{P|localappdata}}\Packages\Microsoft.ApolloBaseGame_8wekyb3d8bbwe\AC\Temp\Turn10Temp.scratch\User_PCMachineConnectedStorageDirectory\ConnectedStorage\}} - - '{{Game data/saves|Windows|{{P|localappdata}}\Packages\Microsoft.ApolloBaseGame_8wekyb3d8bbwe\SystemAppData\wgs\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\Packages\\Microsoft.ApolloBaseGame_8wekyb3d8bbwe\\AC\\Temp\\Turn10Temp.scratch\\User_PCMachineConnectedStorageDirectory\\ConnectedStorage\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Packages\\Microsoft.ApolloBaseGame_8wekyb3d8bbwe\\SystemAppData\\wgs\\}}" Forza Street: pageId: 133617 templates: - - >- - {{Game - data/config|Windows|{{P|localappdata}}\Packages\Microsoft.331194F9F13CC_8wekyb3d8bbwe\LocalState\Gravity\Saved\Config\UWP\GameUserSettings.ini}} - - '{{Game data/saves|Windows|{{P|localappdata}}\Packages\Microsoft.331194F9F13CC_8wekyb3d8bbwe\SystemAppData\wgs\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\Packages\\Microsoft.331194F9F13CC_8wekyb3d8bbwe\\LocalState\\Gravity\\Saved\\Config\\UWP\\GameUserSettings.ini}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Packages\\Microsoft.331194F9F13CC_8wekyb3d8bbwe\\SystemAppData\\wgs\\}}" ForzeBreak: pageId: 110504 steam: 927970 @@ -64095,8 +62334,8 @@ Foto Flash: pageId: 80579 steam: 778610 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\FotoFlash}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\FotoFlash}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\FotoFlash}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\FotoFlash}}" Foto Flash 2: pageId: 109072 steam: 861760 @@ -64104,17 +62343,17 @@ Fotonica: pageId: 5497 steam: 253290 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\SOFTWARE\Santa Ragione\FOTONICA\}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Santa Ragione/FOTONICA/}}' - - '{{Game data/saves|Windows|{{p|hkcu}}\SOFTWARE\Santa Ragione\FOTONICA\}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Santa Ragione/FOTONICA/}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\Santa Ragione\\FOTONICA\\}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Santa Ragione/FOTONICA/}}" + - "{{Game data/saves|Windows|{{p|hkcu}}\\SOFTWARE\\Santa Ragione\\FOTONICA\\}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Santa Ragione/FOTONICA/}}" Foul Play: pageId: 10228 steam: 244810 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Foul Play\}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.FoulPlay}}' - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/244810/remote/}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Foul Play\\}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.FoulPlay}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/244810/remote/}}" Found: pageId: 39960 steam: 528580 @@ -64126,17 +62365,17 @@ Foundation: pageId: 91268 steam: 690830 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\Polymorph Games\Foundation\usersetting.config}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\Polymorph Games\Foundation\Save Game}}' + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\Polymorph Games\\Foundation\\usersetting.config}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\Polymorph Games\\Foundation\\Save Game}}" Foundation of Nightmares: pageId: 79085 steam: 705130 -Founders' Fortune: +"Founders' Fortune": gog: 1285829896 pageId: 140818 steam: 1104330 templates: - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\Oachkatzlschwoaf Interactive\Founders Fortune\saves}}' + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\Oachkatzlschwoaf Interactive\\Founders Fortune\\saves}}" Four Horsemen: pageId: 69547 steam: 668200 @@ -64147,7 +62386,7 @@ Four Last Things: pageId: 56936 steam: 503400 templates: - - '{{Game data/saves|Windows|{{p|localappdata}}\Joe Richardson\Four Last Things 1.3\Savegames}}' + - "{{Game data/saves|Windows|{{p|localappdata}}\\Joe Richardson\\Four Last Things 1.3\\Savegames}}" Four Realms: pageId: 33876 steam: 483820 @@ -64188,9 +62427,7 @@ Fox Hime Zero: pageId: 95182 steam: 844930 templates: - - >- - {{Game data/saves|Windows|{{p|game}}\FoxHimeZero_Data\StreamingAssets\userinfo.db | - {{p|game}}\FluffyStore_Data\StreamingAssets\*.jpg | {{p|game}}\FluffyStore_Data\StreamingAssets\ScreenShot\*.jpg}} + - "{{Game data/saves|Windows|{{p|game}}\\FoxHimeZero_Data\\StreamingAssets\\userinfo.db | {{p|game}}\\FluffyStore_Data\\StreamingAssets\\*.jpg | {{p|game}}\\FluffyStore_Data\\StreamingAssets\\ScreenShot\\*.jpg}}" Fox and Bunny: pageId: 135063 steam: 1075790 @@ -64198,15 +62435,15 @@ Fox n Forests: pageId: 82914 steam: 603400 templates: - - '{{Game data/config|Windows|{{p|HKCU}}\Software\Bonus Level Entertainment\FOXnFORESTS\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Bonus Level Entertainment\FOXnFORESTS\}}' + - "{{Game data/config|Windows|{{p|HKCU}}\\Software\\Bonus Level Entertainment\\FOXnFORESTS\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Bonus Level Entertainment\\FOXnFORESTS\\}}" Fox soldier: pageId: 141204 steam: 1076130 -Fox's Holiday: +"Fox's Holiday": pageId: 150137 renamedFrom: - - Fox's Holiday / 狐の假期 + - "Fox's Holiday / 狐の假期" steam: 1373020 Fox-Trot Over Run: pageId: 152661 @@ -64216,10 +62453,10 @@ FoxTail: pageId: 82155 steam: 581360 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Foxtail}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Foxtail}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Foxtail}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Foxtail}}' + - "{{Game data/config|Windows|{{p|appdata}}\\Foxtail}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Foxtail}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Foxtail}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Foxtail}}" Foxfall: pageId: 156053 steam: 1208470 @@ -64230,7 +62467,7 @@ Foxhole: pageId: 39300 steam: 505460 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Foxhole\Saved\Config\WindowsNoEditor\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Foxhole\\Saved\\Config\\WindowsNoEditor\\}}" Foxus: pageId: 62835 steam: 644130 @@ -64245,10 +62482,8 @@ Fract OSC: pageId: 16968 steam: 243220 templates: - - >- - {{Game data/config|Windows|{{P|hkcu}}\Software\Phosfiend Systems Inc.\FRACT - OSC|{{P|localappdata}}\FRACTOSC\game\world.fract}} - - '{{Game data/saves|Windows|{{P|localappdata}}\FRACTOSC}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Phosfiend Systems Inc.\\FRACT OSC|{{P|localappdata}}\\FRACTOSC\\game\\world.fract}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\FRACTOSC}}" Fractal: pageId: 72603 steam: 566180 @@ -64262,16 +62497,16 @@ Fractal Space: pageId: 39508 steam: 435410 templates: - - '{{Game data/config|Windows|LocalLow/Haze Games/Fractal Space/}}' - - '{{Game data/saves|Windows| LocalLow/Haze Games/Fractal Space/}}' -'Fractal: Make Blooms Not War': + - "{{Game data/config|Windows|LocalLow/Haze Games/Fractal Space/}}" + - "{{Game data/saves|Windows| LocalLow/Haze Games/Fractal Space/}}" +"Fractal: Make Blooms Not War": pageId: 8126 steam: 61310 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Cipher Prime Studios, Inc.\Fractal}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Cipher Prime Studios, Inc./Fractal/}}' - - '{{Game data/saves|Windows|{{p|hkcu}}\Software\Cipher Prime Studios, Inc.\Fractal}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Cipher Prime Studios, Inc./Fractal/}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Cipher Prime Studios, Inc.\\Fractal}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Cipher Prime Studios, Inc./Fractal/}}" + - "{{Game data/saves|Windows|{{p|hkcu}}\\Software\\Cipher Prime Studios, Inc.\\Fractal}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Cipher Prime Studios, Inc./Fractal/}}" Fractalis: pageId: 145184 steam: 1141160 @@ -64282,7 +62517,7 @@ Fractured Lands: pageId: 96007 steam: 751240 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\FracturedLands\Saved\Config\WindowsClient\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\FracturedLands\\Saved\\Config\\WindowsClient\\}}" Fractured Minds: pageId: 150547 steam: 688740 @@ -64291,13 +62526,13 @@ Fractured Soul: pageId: 34400 steam: 307030 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\Fractured Soul\ControllerConfiguration.xml}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\Fractured Soul\}}' + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\Fractured Soul\\ControllerConfiguration.xml}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\Fractured Soul\\}}" Fractured Space: pageId: 24301 steam: 310380 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\spacegame\Saved\Config}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\spacegame\\Saved\\Config}}" Fractured State: pageId: 60700 steam: 527960 @@ -64315,8 +62550,8 @@ Fragile Allegiance: pageId: 36408 steam: 383100 templates: - - '{{Game data/config|DOS|{{p|game}}\CONFIG.INI}}' - - '{{Game data/saves|DOS|{{p|game}}\_SAVE\}}' + - "{{Game data/config|DOS|{{p|game}}\\CONFIG.INI}}" + - "{{Game data/saves|DOS|{{p|game}}\\_SAVE\\}}" Fragile Equilibrium: pageId: 125199 steam: 999560 @@ -64330,8 +62565,8 @@ Fragmented: pageId: 43376 steam: 441790 templates: - - '{{Game data/config|Windows|{{P|game}}\Fragmented\Saved\Config}}' - - '{{Game data/saves|Windows|{{P|game}}\Fragmented\Saved\SaveGames}}' + - "{{Game data/config|Windows|{{P|game}}\\Fragmented\\Saved\\Config}}" + - "{{Game data/saves|Windows|{{P|game}}\\Fragmented\\Saved\\SaveGames}}" Fragments: pageId: 74275 steam: 733420 @@ -64346,14 +62581,12 @@ Framed Collection: pageId: 75147 steam: 322450 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\Saved Games\FRAMED Collection\game.settings}}' - - >- - {{Game data/saves|Windows|{{p|userprofile}}\Saved Games\FRAMED Collection\game.sav|{{p|userprofile}}\Saved - Games\FRAMED Collection\f2.sav}} + - "{{Game data/config|Windows|{{p|userprofile}}\\Saved Games\\FRAMED Collection\\game.settings}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Saved Games\\FRAMED Collection\\game.sav|{{p|userprofile}}\\Saved Games\\FRAMED Collection\\f2.sav}}" Framed Wings: pageId: 41779 steam: 479140 -'Framing Dawes, Episode 1: Thyme to Leave': +"Framing Dawes, Episode 1: Thyme to Leave": pageId: 151403 steam: 1130820 Fran Bow: @@ -64363,22 +62596,14 @@ Fran Bow: pageId: 32887 steam: 362680 steamSide: + - 393500 - 404840 - 1124030 - - 393500 templates: - - >- - {{Game data/config|Windows|{{P|hkcu}}\Software\Killmonday Games AB\Fran Bow{{Note|name="unityver"|note=Unity - version}}|{{p|appdata}}\Fran_Bow\savedata.ini{{Note|note=GameMaker version|name="gamemakerver"}}}} - - >- - {{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/Killmonday Games AB/Fran - Bow/prefs{{Note|name="unityver"}}|{{p|linuxhome}}/.config/Fran_Bow/savedata.ini{{Note|name="gamemakerver"}}}} - - >- - {{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Killmonday Games AB\Fran - Bow\{{Note|name="unityver"}}|{{p|appdata}}\Fran_Bow\savedata.ini{{Note|name="gamemakerver"}}}} - - >- - {{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/Killmonday Games AB/Fran - Bow/FranBow_*.*{{Note|name="unityver"}}|{{p|linuxhome}}/.config/Fran_Bow/savedata.ini{{Note|name="gamemakerver"}}}} + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Killmonday Games AB\\Fran Bow{{Note|name=\"unityver\"|note=Unity version}}|{{p|appdata}}\\Fran_Bow\\savedata.ini{{Note|note=GameMaker version|name=\"gamemakerver\"}}}}" + - "{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/Killmonday Games AB/Fran Bow/prefs{{Note|name=\"unityver\"}}|{{p|linuxhome}}/.config/Fran_Bow/savedata.ini{{Note|name=\"gamemakerver\"}}}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Killmonday Games AB\\Fran Bow\\{{Note|name=\"unityver\"}}|{{p|appdata}}\\Fran_Bow\\savedata.ini{{Note|name=\"gamemakerver\"}}}}" + - "{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/Killmonday Games AB/Fran Bow/FranBow_*.*{{Note|name=\"unityver\"}}|{{p|linuxhome}}/.config/Fran_Bow/savedata.ini{{Note|name=\"gamemakerver\"}}}}" Franchise Hockey Manager 2: pageId: 46262 steam: 333830 @@ -64398,9 +62623,7 @@ Franchise Hockey Manager 6: pageId: 148119 steam: 1087270 templates: - - >- - {{Game data/saves|Windows|{{p|userprofile\Documents}}\Out of the Park Developments\Franchise Hockey Manager - 6\saved_games}} + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Out of the Park Developments\\Franchise Hockey Manager 6\\saved_games}}" Franchise Hockey Manager 8: pageId: 172755 steam: 1739000 @@ -64410,17 +62633,17 @@ Franchise Wars: Francisca: pageId: 42049 steam: 501760 -'Frane: Dragons'' Odyssey': +"Frane: Dragons' Odyssey": pageId: 132274 steam: 265730 Frank & the TimeTwister Machine: pageId: 134460 steam: 1062470 -Frank Herbert's Dune: +"Frank Herbert's Dune": pageId: 27428 templates: - - '{{Game data/config|Windows|{{p|game}}\configpc.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\Dune_*.sav}}' + - "{{Game data/config|Windows|{{p|game}}\\configpc.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\Dune_*.sav}}" Frank Thomas Big Hurt Baseball: pageId: 91667 Frank and 10 roots: @@ -64429,18 +62652,18 @@ Frank and 10 roots: Frank the Miner: pageId: 87215 steam: 807340 -'Frankenstein: Beyond the Time': +"Frankenstein: Beyond the Time": pageId: 97353 steam: 863380 -'Frankenstein: Master of Death': +"Frankenstein: Master of Death": pageId: 38442 steam: 347430 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Fineway Studios\Frankenstein: Master of Death}}' - - '{{Game data/config|Linux|{{P|linuxhome}}/.config/unity3d/Fineway Studios/Frankenstein: Master of Death/prefs}}' - - '{{Game data/saves|Windows|{{P|appdata}}\FinewayStudios\Frankenstein\save.bin}}' - - '{{Game data/saves|Linux|{{P|xdgconfighome}}/FinewayStudios/Frankenstein/save.bin}}' -'Franklin the Turtle: Clubhouse Adventures': + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Fineway Studios\\Frankenstein: Master of Death}}" + - "{{Game data/config|Linux|{{P|linuxhome}}/.config/unity3d/Fineway Studios/Frankenstein: Master of Death/prefs}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\FinewayStudios\\Frankenstein\\save.bin}}" + - "{{Game data/saves|Linux|{{P|xdgconfighome}}/FinewayStudios/Frankenstein/save.bin}}" +"Franklin the Turtle: Clubhouse Adventures": pageId: 190244 FranknJohn: pageId: 48527 @@ -64457,34 +62680,34 @@ Frantic Dimension: Frantic Freighter: pageId: 36672 steam: 503150 -'Fray: Reloaded Edition': +"Fray: Reloaded Edition": pageId: 40769 steam: 210490 -'Frayed Knights: The Skull of S''makh-Daon': +"Frayed Knights: The Skull of S'makh-Daon": pageId: 49855 steam: 314120 templates: - - '{{Game data/config|Windows|{{p|game}}\game\prefs.cs}}' - - '{{Game data/saves|Windows|{{p|game}}\game\saves\}}' + - "{{Game data/config|Windows|{{p|game}}\\game\\prefs.cs}}" + - "{{Game data/saves|Windows|{{p|game}}\\game\\saves\\}}" Fraymakers: pageId: 184530 steam: 1420350 templates: - - '{{Game data/saves|Windows|{{p|game}}\*.save}}' - - '{{Game data/saves|OS X|{{p|game}}\*.save}}' - - '{{Game data/saves|Linux|{{p|game}}\*.save}}' -'FreakOut: Extreme Freeride': + - "{{Game data/saves|Windows|{{p|game}}\\*.save}}" + - "{{Game data/saves|OS X|{{p|game}}\\*.save}}" + - "{{Game data/saves|Linux|{{p|game}}\\*.save}}" +"FreakOut: Extreme Freeride": pageId: 48973 steam: 304540 templates: - - '{{Game data/saves|Windows|{{p|game}}\Data\User\profile.pro}}' + - "{{Game data/saves|Windows|{{p|game}}\\Data\\User\\profile.pro}}" Freaking Meatbags: pageId: 17888 steam: 297060 templates: - - '{{Game data/saves|Windows|{{p|hkcu}}\Software\Wild Factor\Freaking Meatbags\}}' - - '{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/Wild Factor/Freaking Meatbags}}' -'Freakout: Calamity TV Show': + - "{{Game data/saves|Windows|{{p|hkcu}}\\Software\\Wild Factor\\Freaking Meatbags\\}}" + - "{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/Wild Factor/Freaking Meatbags}}" +"Freakout: Calamity TV Show": pageId: 95198 steam: 848430 Freakshow 2: @@ -64499,54 +62722,54 @@ Fred The Fraud: Fred3ric: pageId: 163802 steam: 1269030 -'Freddi Fish 2: The Case of the Haunted Schoolhouse': +"Freddi Fish 2: The Case of the Haunted Schoolhouse": pageId: 37331 steam: 294530 -'Freddi Fish 3: The Case of the Stolen Conch Shell': +"Freddi Fish 3: The Case of the Stolen Conch Shell": pageId: 37624 steam: 294540 -'Freddi Fish 4: The Case of the Hogfish Rustlers of Briny Gulch': +"Freddi Fish 4: The Case of the Hogfish Rustlers of Briny Gulch": pageId: 50183 steam: 294550 -'Freddi Fish 5: The Case of the Creature of Coral Cove': +"Freddi Fish 5: The Case of the Creature of Coral Cove": pageId: 50105 steam: 294570 -Freddi Fish and Luther's Maze Madness: +"Freddi Fish and Luther's Maze Madness": pageId: 16857 steam: 284020 -Freddi Fish and Luther's Water Worries: +"Freddi Fish and Luther's Water Worries": pageId: 50332 steam: 294580 Freddi Fish and the Case of the Missing Kelp Seeds: pageId: 16855 steam: 283940 -Freddy Fazbear's Pizzeria Simulator: +"Freddy Fazbear's Pizzeria Simulator": pageId: 77600 steam: 738060 templates: - - '{{Game data/config|Windows|{{p|appdata}}\MMFApplications\FNAF6}}' - - '{{Game data/saves|Windows|{{p|appdata}}\MMFApplications\FNAF6}}' -'Freddy Pharkas: Frontier Pharmacist': + - "{{Game data/config|Windows|{{p|appdata}}\\MMFApplications\\FNAF6}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\MMFApplications\\FNAF6}}" +"Freddy Pharkas: Frontier Pharmacist": gog: 1939489874 pageId: 131646 Freddy in Space 2: pageId: 163229 templates: - - '{{Game data/saves|Windows|{{p|appdata}}\MMFApplications\FIS2}}' -Freddy's Journey: + - "{{Game data/saves|Windows|{{p|appdata}}\\MMFApplications\\FIS2}}" +"Freddy's Journey": pageId: 96895 steam: 875520 -'Frederic: Evil Strikes Back': +"Frederic: Evil Strikes Back": pageId: 50206 steam: 301200 -'Frederic: Resurrection of Music': +"Frederic: Resurrection of Music": pageId: 38580 steam: 301190 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Forever Entertainment\Frederic\}}' - - '{{Game data/config|Steam|{{P|steam}}\userdata\{{P|uid}}\301190\remote\FredericROM.prefs}}' - - '{{Game data/saves|Windows|{{P|hkcu}}\Software\Forever Entertainment\Frederic\}}' -'Frederic: Resurrection of Music Director''s Cut': + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Forever Entertainment\\Frederic\\}}" + - "{{Game data/config|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\301190\\remote\\FredericROM.prefs}}" + - "{{Game data/saves|Windows|{{P|hkcu}}\\Software\\Forever Entertainment\\Frederic\\}}" +"Frederic: Resurrection of Music Director's Cut": pageId: 43458 steam: 453100 Free Agency: @@ -64589,8 +62812,8 @@ FreeCell Quest: pageId: 37622 steam: 364640 templates: - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Legend Studio/FreeCell Quest}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Legend Studio/FreeCell Quest}}' + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Legend Studio/FreeCell Quest}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Legend Studio/FreeCell Quest}}" FreeCol: pageId: 177026 FreeFlight: @@ -64609,7 +62832,7 @@ FreeSpace 2: pageId: 997 steam: 273620 templates: - - '{{Game data/saves|Windows|{{p|game}}\data\players}}' + - "{{Game data/saves|Windows|{{p|game}}\\data\\players}}" FreeStyle Football: pageId: 58297 steam: 568810 @@ -64617,17 +62840,17 @@ Freebie: pageId: 33707 steam: 487220 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Project_Freebie\settings.ini}}' -'Freebot : Battle for FreeWeb': + - "{{Game data/config|Windows|{{p|localappdata}}\\Project_Freebie\\settings.ini}}" +"Freebot : Battle for FreeWeb": pageId: 96805 steam: 873790 Freeciv: pageId: 176345 -'Freediver: Triton Down': +"Freediver: Triton Down": pageId: 135254 steam: 995230 templates: - - '{{Game data/saves|Windows|{{P|localappdata}}\Freediver\Saved\SaveGames\}}' + - "{{Game data/saves|Windows|{{P|localappdata}}\\Freediver\\Saved\\SaveGames\\}}" Freedom Cry: pageId: 46538 steam: 395400 @@ -64645,12 +62868,8 @@ Freedom Fighters: pageId: 11918 steam: 1347780 templates: - - >- - {{Game data/config|Windows|{{p|game}}\Freedom.ini|{{P|appdata}}\IO Interactive\Freedom Fighters\Freedom.ini - (Re-Release 2020)}} - - >- - {{Game data/saves|Windows|{{p|userprofile\Documents}}\Freedom Fighters\Profiles\*.dat|{{P|appdata}}\IO - Interactive\Freedom Fighters\ (Re-Release 2020)}} + - "{{Game data/config|Windows|{{p|game}}\\Freedom.ini|{{P|appdata}}\\IO Interactive\\Freedom Fighters\\Freedom.ini (Re-Release 2020)}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Freedom Fighters\\Profiles\\*.dat|{{P|appdata}}\\IO Interactive\\Freedom Fighters\\ (Re-Release 2020)}}" Freedom Fighters (2020): pageId: 163712 steam: 1347780 @@ -64662,17 +62881,17 @@ Freedom Force: pageId: 15382 steam: 8880 templates: - - '{{Game data/saves|Windows|{{p|game}}\Data\SaveGames}}' + - "{{Game data/saves|Windows|{{p|game}}\\Data\\SaveGames}}" Freedom Force vs. The 3rd Reich: gog: 1207658870 pageId: 8310 steam: 8890 templates: - - '{{Game data/saves|Windows|{{p|localappdata}}\Irrational Games\Freedom Force vs the 3rd Reich\User\SaveGames}}' + - "{{Game data/saves|Windows|{{p|localappdata}}\\Irrational Games\\Freedom Force vs the 3rd Reich\\User\\SaveGames}}" Freedom Locomotion VR: pageId: 59035 steam: 584170 -'Freedom March: Rebel Leader': +"Freedom March: Rebel Leader": pageId: 92205 steam: 823740 Freedom Planet: @@ -64680,26 +62899,22 @@ Freedom Planet: pageId: 18561 steam: 248310 templates: - - '{{Game data/config|Windows|{{p|game}}\*.cfg}}' - - '{{Game data/config|Linux|{{p|game}}/*.cfg}}' - - '{{Game data/config|Steam|{{p|steam}}/userdata/{{p|uid}}/248310/remote/*.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\file*.sav|{{p|game}}\records.dat}}' - - '{{Game data/saves|Linux|{{p|game}}/game/file*.sav|{{p|game}}/game/records.dat}}' - - >- - {{Game - data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/248310/remote/file*.sav|{{p|steam}}/userdata/{{p|uid}}/248310/remote/records.dat}} + - "{{Game data/config|Windows|{{p|game}}\\*.cfg}}" + - "{{Game data/config|Linux|{{p|game}}/*.cfg}}" + - "{{Game data/config|Steam|{{p|steam}}/userdata/{{p|uid}}/248310/remote/*.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\file*.sav|{{p|game}}\\records.dat}}" + - "{{Game data/saves|Linux|{{p|game}}/game/file*.sav|{{p|game}}/game/records.dat}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/248310/remote/file*.sav|{{p|steam}}/userdata/{{p|uid}}/248310/remote/records.dat}}" Freedom Planet 2: pageId: 31119 steam: 595500 templates: - - >- - {{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\GalaxyTrail\Freedom Planet - 2\controls.ini|{{p|userprofile}}\AppData\LocalLow\GalaxyTrail\Freedom Planet 2\settings.ini}} - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\GalaxyTrail\Freedom Planet 2\}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\GalaxyTrail\\Freedom Planet 2\\controls.ini|{{p|userprofile}}\\AppData\\LocalLow\\GalaxyTrail\\Freedom Planet 2\\settings.ini}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\GalaxyTrail\\Freedom Planet 2\\}}" Freedom Poopie: pageId: 46040 steam: 400130 -'Freedom: A Time to Reckon': +"Freedom: A Time to Reckon": pageId: 73211 steam: 655220 Freefall: @@ -64714,31 +62929,29 @@ Freefall Tournament: Freelancer: pageId: 3292 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Freelancer\PerfOptions.ini|{{p|game}}\DATA\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Freelancer\Accts}}' -'Freeman: Guerrilla Warfare': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Freelancer\\PerfOptions.ini|{{p|game}}\\DATA\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Freelancer\\Accts}}" +"Freeman: Guerrilla Warfare": gog: 1965205886 pageId: 80591 steam: 773951 templates: - - >- - {{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\KK Game Studio\Freeman Guerrilla - Warfare\settings.txt}} - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\KK Game Studio\Freeman Guerrilla Warfare}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\KK Game Studio\\Freeman Guerrilla Warfare\\settings.txt}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\KK Game Studio\\Freeman Guerrilla Warfare}}" Freemium Way: pageId: 64117 steam: 504030 -'Freestyle2: Street Basketball': +"Freestyle2: Street Basketball": pageId: 48310 steam: 339610 templates: - - '{{Game data/config|Windows|{{P|game}}\options.ini}}' + - "{{Game data/config|Windows|{{P|game}}\\options.ini}}" Freeways: pageId: 81946 steam: 780210 templates: - - '{{Game data/saves|Windows|{{p|appdata}}\CaptainGames\Freeways}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/CaptainGames/Freeways}}' + - "{{Game data/saves|Windows|{{p|appdata}}\\CaptainGames\\Freeways}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/CaptainGames/Freeways}}" Freeze Climbing: pageId: 62237 steam: 635040 @@ -64752,8 +62965,8 @@ FreezeME: pageId: 31744 steam: 390210 templates: - - '{{Game data/saves|Windows|{{P|userprofile}}\Appdata\LocalLow\Rainy Night Creations\FreezeME}}' - - '{{Game data/saves|Linux|home/username/.config/unity3d/Rainy Night Creations/FreezeME}}' + - "{{Game data/saves|Windows|{{P|userprofile}}\\Appdata\\LocalLow\\Rainy Night Creations\\FreezeME}}" + - "{{Game data/saves|Linux|home/username/.config/unity3d/Rainy Night Creations/FreezeME}}" Freezeer: pageId: 97994 steam: 872090 @@ -64762,8 +62975,8 @@ Freight Tycoon Inc.: pageId: 50490 steam: 289340 templates: - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\nikita\tracktycoon\}}' -'Frenzic: Overtime': + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\nikita\\tracktycoon\\}}" +"Frenzic: Overtime": pageId: 167835 Frenzy Retribution: pageId: 182487 @@ -64774,7 +62987,7 @@ Frequency Garden: Frequent Flyer: pageId: 54433 steam: 554150 -'Frequent Flyer: A Long Distance Love Story': +"Frequent Flyer: A Long Distance Love Story": pageId: 87159 steam: 807770 Fresh Body: @@ -64792,38 +63005,36 @@ Freshman Year: Frets on Fire: pageId: 165743 templates: - - '{{Game data/config|Windows|{{p|appdata}}\fretsonfire\fretsonfire.ini}}' + - "{{Game data/config|Windows|{{p|appdata}}\\fretsonfire\\fretsonfire.ini}}" Freud Gate: pageId: 148581 steam: 1161270 -'Frick, Inc.': +"Frick, Inc.": pageId: 186265 steam: 1491720 templates: - - '{{Game data/config|Windows|{{P|userprofile}}\AppData\LocalLow\Kenney\Frick Inc\Frick Inc.save}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Kenney\Frick Inc\Frick Inc.save}}' + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Kenney\\Frick Inc\\Frick Inc.save}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Kenney\\Frick Inc\\Frick Inc.save}}" Friday Night Bullet Arena: pageId: 50811 steam: 513840 -Friday Night Funkin': +"Friday Night Funkin'": pageId: 166149 templates: - - '{{Game data/saves|Windows|{{Path|appdata}}\ninjamuffin99\Funkin\ninjamuffin99\funkin.sol}}' - - >- - {{Game data/saves|OS X|{{p|osxhome}}/Users/user/Library/Application - Support/ninjamuffin99/Funkin/ninjamuffin99/funkin.sol}} - - '{{Game data/saves|Linux| home/user/.local/share/ninjamuffin99/Funkin/ninjamuffin99/funkin.sol}}' -'Friday the 13th: Killer Puzzle': + - "{{Game data/saves|Windows|{{Path|appdata}}\\ninjamuffin99\\Funkin\\ninjamuffin99\\funkin.sol}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Users/user/Library/Application Support/ninjamuffin99/Funkin/ninjamuffin99/funkin.sol}}" + - "{{Game data/saves|Linux| home/user/.local/share/ninjamuffin99/Funkin/ninjamuffin99/funkin.sol}}" +"Friday the 13th: Killer Puzzle": pageId: 88195 steam: 795100 templates: - - '{{Game data/config|Windows|{{p|USERPROFILE}}\AppData\LocalLow\Blue Wizard\Friday the 13th\settings.dat}}' - - '{{Game data/saves|Windows|{{p|USERPROFILE}}\AppData\LocalLow\Blue Wizard\Friday the 13th\f13_save.sav}}' -'Friday the 13th: The Game': + - "{{Game data/config|Windows|{{p|USERPROFILE}}\\AppData\\LocalLow\\Blue Wizard\\Friday the 13th\\settings.dat}}" + - "{{Game data/saves|Windows|{{p|USERPROFILE}}\\AppData\\LocalLow\\Blue Wizard\\Friday the 13th\\f13_save.sav}}" +"Friday the 13th: The Game": pageId: 39351 steam: 438740 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\SummerCamp\Saved\Config\WindowsNoEditor\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\SummerCamp\\Saved\\Config\\WindowsNoEditor\\}}" Friday 星期五部门: pageId: 150564 steam: 1167900 @@ -64881,9 +63092,9 @@ Frisky Business: pageId: 57337 steam: 588240 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Kbros Games\Frisky Business}}' - - '{{Game data/saves|Windows|{{P|hkcu}}\Software\Kbros Games\Frisky Business}}' -'Frisky Business: Episode 2': + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Kbros Games\\Frisky Business}}" + - "{{Game data/saves|Windows|{{P|hkcu}}\\Software\\Kbros Games\\Frisky Business}}" +"Frisky Business: Episode 2": pageId: 89214 steam: 794700 Fritz 7: @@ -64913,27 +63124,25 @@ Frog Climbers: pageId: 39542 steam: 485120 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\SOFTWARE\TeamCrew\FrogClimbers\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\SOFTWARE\\TeamCrew\\FrogClimbers\\}}" Frog Demon: pageId: 123776 steam: 810770 -'Frog Detective 2: The Case of the Invisible Wizard': +"Frog Detective 2: The Case of the Invisible Wizard": pageId: 145132 steam: 1047220 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Worm Club\Frog Detective 2\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Worm Club\Frog Detective 2\frog.sav}}' -'Frog Detective 3: Corruption at Cowboy County': + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Worm Club\\Frog Detective 2\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Worm Club\\Frog Detective 2\\frog.sav}}" +"Frog Detective 3: Corruption at Cowboy County": pageId: 169691 steam: 1171320 -'Frog Fractions: Game of the Decade Edition': +"Frog Fractions: Game of the Decade Edition": pageId: 164391 steam: 1194840 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\SOFTWARE\Twinbeard\Frog Fractions Game of the Decade Edition\}}' - - >- - {{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Twinbeard\Frog Fractions Game of the Decade - Edition\saved.!!!}} + - "{{Game data/config|Windows|{{P|hkcu}}\\SOFTWARE\\Twinbeard\\Frog Fractions Game of the Decade Edition\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Twinbeard\\Frog Fractions Game of the Decade Edition\\saved.!!!}}" Frog Hop: pageId: 56503 steam: 568490 @@ -64959,41 +63168,41 @@ Frogger: Frogger (1997): pageId: 35958 templates: - - '{{Game data/config|Windows|{{P|hklm}}\SOFTWARE\{{p|wow64}}\Hasbro Interactive\Frogger\Save}}' - - '{{Game data/saves|Windows|{{P|hklm}}\SOFTWARE\{{p|wow64}}\Hasbro Interactive\Frogger\Save}}' -'Frogger 2: Swampy''s Revenge': + - "{{Game data/config|Windows|{{P|hklm}}\\SOFTWARE\\{{p|wow64}}\\Hasbro Interactive\\Frogger\\Save}}" + - "{{Game data/saves|Windows|{{P|hklm}}\\SOFTWARE\\{{p|wow64}}\\Hasbro Interactive\\Frogger\\Save}}" +"Frogger 2: Swampy's Revenge": pageId: 63061 templates: - - '{{Game data/config|Windows|{{P|hklm}}\SOFTWARE\{{p|wow64}}\Hasbro Interactive\Frogger2}}' - - '{{Game data/saves|Windows|{{P|game}}\savedata\savegame.dat}}' + - "{{Game data/config|Windows|{{P|hklm}}\\SOFTWARE\\{{p|wow64}}\\Hasbro Interactive\\Frogger2}}" + - "{{Game data/saves|Windows|{{P|game}}\\savedata\\savegame.dat}}" Frogger Beyond: pageId: 160815 templates: - - '{{Game data/config|Windows|{{P|hklm}}\SOFTWARE\{{p|wow64}}\KONAMI\Frogger Beyond}}' - - '{{Game data/saves|Windows|{{p|game}}\data\others\FNG.sbx}}' + - "{{Game data/config|Windows|{{P|hklm}}\\SOFTWARE\\{{p|wow64}}\\KONAMI\\Frogger Beyond}}" + - "{{Game data/saves|Windows|{{p|game}}\\data\\others\\FNG.sbx}}" Frogger and the Rumbling Ruins: pageId: 178061 Frogger in Toy Town: pageId: 147739 -'Frogger''s Adventures: The Rescue': +"Frogger's Adventures: The Rescue": pageId: 160822 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\KONAMI\Frogger''s Adventures}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Frogger''s Adventure}}' -Frogger's Crackout: + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\KONAMI\\Frogger's Adventures}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Frogger's Adventure}}" +"Frogger's Crackout": pageId: 160820 templates: - - '{{Game data/config|Microsoft Store|{{p|localappdata}}\Packages\49E9872B.150304977B57C_axt76zvwedqv0}}' - - '{{Game data/saves|Microsoft Store|{{p|localappdata}}\Packages\49E9872B.150304977B57C_axt76zvwedqv0}}' -'Frogger: Ancient Shadow': + - "{{Game data/config|Microsoft Store|{{p|localappdata}}\\Packages\\49E9872B.150304977B57C_axt76zvwedqv0}}" + - "{{Game data/saves|Microsoft Store|{{p|localappdata}}\\Packages\\49E9872B.150304977B57C_axt76zvwedqv0}}" +"Frogger: Ancient Shadow": pageId: 162494 templates: - - '{{Game data/saves|Windows|{{p|game}}\save*.sav}}' -'Frogger: The Great Quest': + - "{{Game data/saves|Windows|{{p|game}}\\save*.sav}}" +"Frogger: The Great Quest": pageId: 160778 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Konami of America\Frogger: The Great Quest\Options}}' - - '{{Game data/saves|Windows|{{p|game}}\LoadSave\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Konami of America\\Frogger: The Great Quest\\Options}}" + - "{{Game data/saves|Windows|{{p|game}}\\LoadSave\\}}" Froggo: pageId: 129657 steam: 1033710 @@ -65003,7 +63212,7 @@ Froggy Boi: Froggy Castle: pageId: 190317 templates: - - '{{Game data/saves|Windows|{{p|game}}\data\settings.txt}}' + - "{{Game data/saves|Windows|{{p|game}}\\data\\settings.txt}}" Frogmonster: pageId: 179278 steam: 1853760 @@ -65020,8 +63229,8 @@ Frogun: - 2071740 - 2071750 templates: - - '{{Game data/saves|Windows|{{P|hkcu}}\SOFTWARE\Molegato\Frogun\}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Molegato/Frogun/}}' + - "{{Game data/saves|Windows|{{P|hkcu}}\\SOFTWARE\\Molegato\\Frogun\\}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Molegato/Frogun/}}" Frogvale: pageId: 126391 steam: 864030 @@ -65037,22 +63246,20 @@ From Darkness: From Dusk Till Dawn: pageId: 170131 templates: - - '{{Game data/config|Windows|{{p|game}}\Config.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\Slot*.fdd}}' + - "{{Game data/config|Windows|{{p|game}}\\Config.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\Slot*.fdd}}" From Dust: pageId: 5720 steam: 33460 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Dust\profiles\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Dust\DustSave}}' - - >- - {{Game data/saves|Windows|{{p|game}}\DUST\DustSave\IngameSave data may also be stored at this location, from - an older version}} + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Dust\\profiles\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Dust\\DustSave}}" + - "{{Game data/saves|Windows|{{p|game}}\\DUST\\DustSave\\IngameSave data may also be stored at this location, from an older version}}" From Head to Toe: pageId: 140814 steam: 1104890 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Party for Introverts\From Head to Toe\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Party for Introverts\\From Head to Toe\\}}" From Orbit: pageId: 113044 steam: 668290 @@ -65072,8 +63279,8 @@ From the Depths: pageId: 38175 steam: 268650 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Brilliant Skies\From the Depths}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\From The Depths\Player Profiles}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Brilliant Skies\\From the Depths}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\From The Depths\\Player Profiles}}" From the Sky: pageId: 102299 renamedFrom: @@ -65082,32 +63289,32 @@ From the Sky: Front Defense: pageId: 65212 steam: 396560 -'Front Defense: Heroes': +"Front Defense: Heroes": pageId: 89232 steam: 763430 Front Lines: pageId: 138927 steam: 1084980 -'Front Mission 1st: Remake': +"Front Mission 1st: Remake": gog: 1111530020 pageId: 187497 steam: 2399730 steamSide: - 2428760 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Forever Entertainment SA\FRONT MISSION 1st: Remake}}' - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\Forever Entertainment SA\FRONT MISSION 1st Remake}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Forever Entertainment SA\\FRONT MISSION 1st: Remake}}" + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\Forever Entertainment SA\\FRONT MISSION 1st Remake}}" Front Mission Evolved: pageId: 41088 steam: 43000 steamSide: - - 43013 - - 43011 - - 43014 - 43005 - 43006 + - 43011 + - 43013 + - 43014 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\Front Mission Evolved\}}' + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\Front Mission Evolved\\}}" Front Mission Online: pageId: 183216 Front Office Football Eight: @@ -65128,32 +63335,32 @@ Frontier: Frontier - TRS: pageId: 155550 steam: 1217480 -'Frontier Hunter: Erza''s Wheel of Fortune': +"Frontier Hunter: Erza's Wheel of Fortune": pageId: 171191 steam: 1429500 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\IceSitruuna\Frontier_Hunter}}' - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\IceSitruuna\Frontier_Hunter\PlayerPrefs\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\IceSitruuna\\Frontier_Hunter}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\IceSitruuna\\Frontier_Hunter\\PlayerPrefs\\}}" Frontier Pilot Simulator: pageId: 65498 steam: 673210 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Razar\Frontier Pilot Simulator\Saves}}' + - "{{Game data/config|Windows|{{p|appdata}}\\Razar\\Frontier Pilot Simulator\\Saves}}" Frontier Runner: pageId: 78102 steam: 760490 Frontier VR: pageId: 59458 steam: 608190 -'Frontier: Elite II': +"Frontier: Elite II": pageId: 177294 -'Frontier: First Encounters': +"Frontier: First Encounters": pageId: 170878 Frontiers: pageId: 49115 steam: 293480 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\AADProductions\Frontiers\SaveGames\}}' + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\AADProductions\\Frontiers\\SaveGames\\}}" Frontiers.io: pageId: 72742 steam: 721670 @@ -65166,24 +63373,24 @@ Frontline Tactics: Frontline Zed: pageId: 141638 steam: 915490 -'Frontline: Longest Day': +"Frontline: Longest Day": pageId: 49157 steam: 312400 -'Frontline: Road to Moscow': +"Frontline: Road to Moscow": pageId: 49783 steam: 306620 -'Frontline: The Great Patriotic War': +"Frontline: The Great Patriotic War": pageId: 156133 steam: 1206110 -'Frontline: Western Front': +"Frontline: Western Front": pageId: 149771 steam: 1147490 -'Frontlines: Fuel of War': +"Frontlines: Fuel of War": pageId: 4497 steam: 9460 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Frontlines - Fuel of War\GCGame\Config\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Frontlines - Fuel of War\GCGame\Save\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Frontlines - Fuel of War\\GCGame\\Config\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Frontlines - Fuel of War\\GCGame\\Save\\}}" Frost: pageId: 42585 steam: 490950 @@ -65193,12 +63400,12 @@ FrostRunner: Frostage: pageId: 132032 steam: 920860 -'Frostbite: Deadly Climate': +"Frostbite: Deadly Climate": pageId: 100286 steam: 890880 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Frostbite_AlexO\Saved\Config}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Frostbite_AlexO\Saved\SaveGames}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Frostbite_AlexO\\Saved\\Config}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Frostbite_AlexO\\Saved\\SaveGames}}" Frostford: pageId: 155494 steam: 1213890 @@ -65207,15 +63414,13 @@ Frostpunk: pageId: 69062 steam: 323190 templates: - - '{{Game data/config|Windows|{{p|appdata}}\11bitstudios\Frostpunk\}}' - - '{{Game data/config|Microsoft Store|{{p|localappdata}}\Packages\11bitstudios.Frostpunk_gwy9gn5q9j1y6\LocalState\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/11bitstudios/FrostPunk/}}' - - '{{Game data/saves|Windows|{{p|appdata}}\11bitstudios\Frostpunk\Default\saves\}}' - - >- - {{Game data/saves|Microsoft - Store|{{p|localappdata}}\Packages\11bitstudios.Frostpunk_gwy9gn5q9j1y6\LocalState\saves\}} - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/11bitstudios/FrostPunk/Default/saves/}}' - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\323190\remote\saves\}}' + - "{{Game data/config|Windows|{{p|appdata}}\\11bitstudios\\Frostpunk\\}}" + - "{{Game data/config|Microsoft Store|{{p|localappdata}}\\Packages\\11bitstudios.Frostpunk_gwy9gn5q9j1y6\\LocalState\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/11bitstudios/FrostPunk/}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\11bitstudios\\Frostpunk\\Default\\saves\\}}" + - "{{Game data/saves|Microsoft Store|{{p|localappdata}}\\Packages\\11bitstudios.Frostpunk_gwy9gn5q9j1y6\\LocalState\\saves\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/11bitstudios/FrostPunk/Default/saves/}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\323190\\remote\\saves\\}}" Frostpunk 2: gog: 1728870436 pageId: 170738 @@ -65231,8 +63436,8 @@ Frozen Cortex: pageId: 15909 steam: 237350 templates: - - '{{Game data/saves|Windows|{{p|appdata}}\FrozenCortex\map\saves\LVLeagueDefault\Player}}' - - '{{Game data/saves|Linux|{{p|game}}/saves/}}' + - "{{Game data/saves|Windows|{{p|appdata}}\\FrozenCortex\\map\\saves\\LVLeagueDefault\\Player}}" + - "{{Game data/saves|Linux|{{p|game}}/saves/}}" Frozen Drift Race: pageId: 58089 steam: 752400 @@ -65241,7 +63446,7 @@ Frozen Flame: steam: 715400 Frozen Free Fall: pageId: 168996 -'Frozen Free Fall: Snowball Fight': +"Frozen Free Fall: Snowball Fight": pageId: 46466 steam: 357480 Frozen Hearth: @@ -65257,25 +63462,25 @@ Frozen State: pageId: 18480 steam: 270270 templates: - - '{{Game data/config|Windows|{{p|game}}\data\}}' - - '{{Game data/saves|Windows|{{p|game}}\data\}}' + - "{{Game data/config|Windows|{{p|game}}\\data\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\data\\}}" Frozen Synapse: gog: 1438343741 pageId: 3030 steam: 98200 templates: - - '{{Game data/config|Windows|[Installfolder]\psychoff\spSave*.enc}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/FrozenSynapse/}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/FrozenSynapse/}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/FrozenSynapse/}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/FrozenSynapse/}}' + - "{{Game data/config|Windows|[Installfolder]\\psychoff\\spSave*.enc}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/FrozenSynapse/}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/FrozenSynapse/}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/FrozenSynapse/}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/FrozenSynapse/}}" Frozen Synapse 2: gog: 1504039647 pageId: 39436 steam: 445020 templates: - - '{{Game data/saves|Windows|{{p|appdata}}\FrozenSynapse2\map\saves}}' - - '{{Game data/saves|Linux|{{p|xdgconfighome}}\FrozenSynapse2\map\saves}}' + - "{{Game data/saves|Windows|{{p|appdata}}\\FrozenSynapse2\\map\\saves}}" + - "{{Game data/saves|Linux|{{p|xdgconfighome}}\\FrozenSynapse2\\map\\saves}}" Frozen Synapse Prime: pageId: 20855 steam: 328600 @@ -65312,8 +63517,8 @@ Fruit Mess: Fruit Ninja: pageId: 80734 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Halfbrick\FruitNinja\}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\Halfbrick\FruitNinja\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\Halfbrick\\FruitNinja\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Halfbrick\\FruitNinja\\}}" Fruit Ninja VR: pageId: 37391 steam: 486780 @@ -65374,26 +63579,26 @@ Fuel: pageId: 3146 steam: 12800 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\FUEL\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\FUEL\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\FUEL\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\FUEL\\}}" Fuel Renegades: pageId: 102473 steam: 878110 -'Fuga: Melodies of Steel': +"Fuga: Melodies of Steel": pageId: 170417 steam: 1357860 steamSide: - 1611470 templates: - - '{{Game data/saves|Windows|{{p|localappdata}}\TANK\Saved\SaveGames}}' -'Fuga: Melodies of Steel 2': + - "{{Game data/saves|Windows|{{p|localappdata}}\\TANK\\Saved\\SaveGames}}" +"Fuga: Melodies of Steel 2": pageId: 187195 steam: 2001340 -'Fugitive Hunter: War on Terror': +"Fugitive Hunter: War on Terror": pageId: 90859 templates: - - '{{Game data/config|Windows|{{P|game}}\MAKE\Config.dat}}' - - '{{Game data/saves|Windows|{{P|game}}\MAKE\Save*.aww|{{P|game}}\MAKE\AutoSave*.aww|{{P|game}}\MAKE\HighScore.dat}}' + - "{{Game data/config|Windows|{{P|game}}\\MAKE\\Config.dat}}" + - "{{Game data/saves|Windows|{{P|game}}\\MAKE\\Save*.aww|{{P|game}}\\MAKE\\AutoSave*.aww|{{P|game}}\\MAKE\\HighScore.dat}}" Fugl: pageId: 66729 renamedFrom: @@ -65409,13 +63614,13 @@ Fugue in Void: pageId: 103661 steam: 883220 templates: - - '{{Game data/config|Linux|{{p|xdgconfighome}}/unity3d/Moshe Linke/Fugue in Void/prefs}}' + - "{{Game data/config|Linux|{{p|xdgconfighome}}/unity3d/Moshe Linke/Fugue in Void/prefs}}" Fujii: pageId: 135675 steam: 589040 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\Funktronic Labs\Fujii\game.config}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Funktronic Labs\Fujii\}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Funktronic Labs\\Fujii\\game.config}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Funktronic Labs\\Fujii\\}}" FukTopia: pageId: 82812 steam: 795490 @@ -65429,10 +63634,10 @@ Full Bore: pageId: 17349 steam: 264060 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Full Bore\}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.fullbore/}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Full Bore\}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.fullbore/}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Full Bore\\}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.fullbore/}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Full Bore\\}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.fullbore/}}" Full Colour Tiles: pageId: 103863 steam: 868450 @@ -65442,15 +63647,15 @@ Full Metal Daemon Muramasa: gog: 1209310984 pageId: 174286 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Nitroplus\Muramasa\1.00s\}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Nitroplus\Muramasa\1.00s\}}' + - "{{Game data/config|Windows|{{p|appdata}}\\Nitroplus\\Muramasa\\1.00s\\}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Nitroplus\\Muramasa\\1.00s\\}}" Full Metal Furies: pageId: 58256 steam: 416600 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Cellar Door Games\Full Metal Furies\GameConfig.ini}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Cellar Door Games\Full Metal Furies\Saves\*.brdat}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.local/share/Cellar Door Games/Full Metal Furies/Saves/*.brdat}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Cellar Door Games\\Full Metal Furies\\GameConfig.ini}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Cellar Door Games\\Full Metal Furies\\Saves\\*.brdat}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.local/share/Cellar Door Games/Full Metal Furies/Saves/*.brdat}}" Full Metal Renegade: pageId: 103839 steam: 897390 @@ -65458,8 +63663,8 @@ Full Mojo Rampage: pageId: 20930 steam: 225280 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Over the Top Games\Full Mojo Rampage\ConfigPC.cfg}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Over the Top Games\Full Mojo Rampage\savegame.dat}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Over the Top Games\\Full Mojo Rampage\\ConfigPC.cfg}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Over the Top Games\\Full Mojo Rampage\\savegame.dat}}" Full Of Love: pageId: 132073 steam: 990940 @@ -65467,8 +63672,8 @@ Full Pipe: pageId: 147004 steam: 4600 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\SOFTWARE\PIPE studio\{{LocalizedPath|Full Pipe}}\Settings}}' - - '{{Game data/saves|Windows|{{P|game}}\*.sav}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\SOFTWARE\\PIPE studio\\{{LocalizedPath|Full Pipe}}\\Settings}}" + - "{{Game data/saves|Windows|{{P|game}}\\*.sav}}" Full Pitch: pageId: 129899 steam: 1025330 @@ -65477,15 +63682,15 @@ Full Spectrum Warrior: pageId: 15596 steam: 4520 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/saves|Windows|{{p|game}}\}}' -'Full Spectrum Warrior: Ten Hammers': + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\}}" +"Full Spectrum Warrior: Ten Hammers": gog: 1207660643 pageId: 15617 steam: 4530 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/saves|Windows|{{p|appdata}}\FSW2}}' + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\FSW2}}" Full Strength Strongman Competition: pageId: 90739 Full Swing Hero: @@ -65496,33 +63701,33 @@ Full Swing Hero: Full Throttle: pageId: 72459 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\LucasArts\Full Throttle\}}' - - '{{Game data/saves|Windows|{{p|AppData}}\LucasArts\Full Throttle\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\LucasArts\\Full Throttle\\}}" + - "{{Game data/saves|Windows|{{p|AppData}}\\LucasArts\\Full Throttle\\}}" Full Throttle Remastered: gog: 1325415523 pageId: 59309 steam: 228360 templates: - - '{{Game data/config|Windows|{{P|appdata}}\Doublefine\fullthrottle\}}' - - '{{Game data/config|OS X|{{P|osxhome}}/Library/Preferences/com.doublefine.ftrosx.plist}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/doublefine/ft/savedata/}}' - - '{{Game data/config|Steam|{{P|game}}/savedata/}}' - - '{{Game data/saves|Windows|{{P|appdata}}\Doublefine\fullthrottle\}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/doublefine/ft/}}' - - '{{Game data/saves|Steam|{{P|game}}/savedata/}}' + - "{{Game data/config|Windows|{{P|appdata}}\\Doublefine\\fullthrottle\\}}" + - "{{Game data/config|OS X|{{P|osxhome}}/Library/Preferences/com.doublefine.ftrosx.plist}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/doublefine/ft/savedata/}}" + - "{{Game data/config|Steam|{{P|game}}/savedata/}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\Doublefine\\fullthrottle\\}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/doublefine/ft/}}" + - "{{Game data/saves|Steam|{{P|game}}/savedata/}}" Full Tilt Poker: pageId: 44822 steam: 426560 Full Tilt! 2 Pinball: pageId: 166607 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\SOFTWARE\Maxis\FullTilt2}}' - - '{{Game data/saves|Windows|{{p|hkcu}}\SOFTWARE\Maxis\FullTilt2}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\Maxis\\FullTilt2}}" + - "{{Game data/saves|Windows|{{p|hkcu}}\\SOFTWARE\\Maxis\\FullTilt2}}" Full Tilt! Pinball: pageId: 91712 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\SOFTWARE\Cinematronics\Pinball}}' - - '{{Game data/saves|Windows|{{p|hkcu}}\SOFTWARE\Cinematronics\Pinball}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\Cinematronics\\Pinball}}" + - "{{Game data/saves|Windows|{{p|hkcu}}\\SOFTWARE\\Cinematronics\\Pinball}}" Full-On Paintball: pageId: 67849 steam: 678450 @@ -65541,18 +63746,18 @@ Fun Hospital: Fun VR Farm: pageId: 125597 steam: 1007560 -'Fun with Ragdolls: The Game': +"Fun with Ragdolls: The Game": pageId: 149704 steam: 1142500 Fun with The Wiggles: pageId: 146819 templates: - - '{{Game data/config|Windows|{{P|game}}\Wiggles.ini}}' -'FunPack: Chloe''s Closet': + - "{{Game data/config|Windows|{{P|game}}\\Wiggles.ini}}" +"FunPack: Chloe's Closet": pageId: 166374 -'FunPack: Dive Olly Dive': +"FunPack: Dive Olly Dive": pageId: 167399 -'FunPack: Kids': +"FunPack: Kids": pageId: 167708 Funbag Fantasy: pageId: 145976 @@ -65560,7 +63765,7 @@ Funbag Fantasy: Funbag Fantasy 2: pageId: 150665 steam: 1102340 -'Funbag Fantasy: Sideboob Story': +"Funbag Fantasy: Sideboob Story": pageId: 145935 steam: 1035030 Funball Games VR: @@ -65598,7 +63803,7 @@ Funky Smugglers: Funny Archery: pageId: 149182 steam: 1161840 -'Funny Bunny: Adventures': +"Funny Bunny: Adventures": pageId: 134743 steam: 1057710 Funny Fingers: @@ -65613,18 +63818,18 @@ Funny Wings VR: Funny Yo: pageId: 92113 steam: 842620 -Funtoon's World: +"Funtoon's World": pageId: 67488 steam: 681090 Fur Fighters: pageId: 175453 templates: - - '{{Game data/saves|Windows|{{p|game}}\SAVE\FUR_FIGHTERS.SAV}}' + - "{{Game data/saves|Windows|{{p|game}}\\SAVE\\FUR_FIGHTERS.SAV}}" Fur Fun: pageId: 57669 steam: 589370 templates: - - '{{Game data/config|Windows|{{p|game}}\FurFun\Content\PaksWindowsNoEditor\}}' + - "{{Game data/config|Windows|{{p|game}}\\FurFun\\Content\\PaksWindowsNoEditor\\}}" Fur Fury: pageId: 98880 steam: 886840 @@ -65634,7 +63839,7 @@ Fur Up: Fur the Game: pageId: 94134 steam: 856600 -'Fureraba: Friend to Lover': +"Fureraba: Friend to Lover": pageId: 90190 steam: 822760 Furfly: @@ -65651,9 +63856,9 @@ Furi: - 497690 - 567810 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\TheGameBakers\Furi\Settings.xml}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\TheGameBakers\Furi\Game.data}}' -'Furidashi: Drift Cyber Sport': + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\TheGameBakers\\Furi\\Settings.xml}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\TheGameBakers\\Furi\\Game.data}}" +"Furidashi: Drift Cyber Sport": pageId: 74457 steam: 658570 steamSide: @@ -65681,10 +63886,10 @@ Furious Seas: Furries & Scalies & Bears OH MY!: pageId: 122474 steam: 845960 -'Furries & Scalies: Friendswood': +"Furries & Scalies: Friendswood": pageId: 156823 steam: 1106950 -'Furries & Scalies: Love''s Lizards Lost': +"Furries & Scalies: Love's Lizards Lost": pageId: 157299 steam: 1152200 Furry: @@ -65699,33 +63904,33 @@ Furry Chronicles: Furry Futanari Jigsaw: pageId: 175595 steam: 1909320 -"Furry Futanari: 3 in 1 ⚧\U0001F3F3️‍\U0001F308": +"Furry Futanari: 3 in 1 ⚧🏳️‍🌈": pageId: 174879 steam: 1871000 Furry Girl: pageId: 146585 renamedFrom: - - "Furry Girl \U0001F43A" + - Furry Girl 🐺 steam: 1045050 Furry Girls Style: pageId: 156582 steam: 1219290 -"Furry Ladies \U0001F43E": +Furry Ladies 🐾: pageId: 156402 steam: 1204310 Furry Love: pageId: 178919 steam: 1334590 -'Furry Shakespeare: To Date Or Not To Date Cat Girls?': +"Furry Shakespeare: To Date Or Not To Date Cat Girls?": pageId: 130494 steam: 947060 -'Furry Stories: Alpha-Male': +"Furry Stories: Alpha-Male": pageId: 155941 steam: 1156300 FurryFury: pageId: 130617 steam: 906870 -'Fururu Project : Ruby': +"Fururu Project : Ruby": pageId: 126144 steam: 968420 Furwind: @@ -65745,23 +63950,23 @@ Fury Unleashed: pageId: 140359 steam: 465200 templates: - - '{{Game data/config|Windows|{{P|userprofile\appdata\locallow}}\Awesome Games Studio\Fury Unleashed\}}' - - '{{Game data/config|Linux|{{p|xdgconfighome}}/unity3d/Awesome Games Studio/Fury Unleashed/}}' - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Awesome Games Studio\Fury Unleashed\}}' - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{P|uid}}/465200/}}' + - "{{Game data/config|Windows|{{P|userprofile\\appdata\\locallow}}\\Awesome Games Studio\\Fury Unleashed\\}}" + - "{{Game data/config|Linux|{{p|xdgconfighome}}/unity3d/Awesome Games Studio/Fury Unleashed/}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Awesome Games Studio\\Fury Unleashed\\}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{P|uid}}/465200/}}" Fury of the Furries: pageId: 162286 Fury of the Gods: pageId: 47619 steam: 373460 -Fury's Sky: +"Fury's Sky": pageId: 144224 steam: 1118550 Fury3: pageId: 69914 templates: - - '{{Game data/config|Windows|{{p|game}}\SYSTEM\FURY3.INI}}' - - '{{Game data/saves|Windows|{{p|game}}\data\*.fff|{{p|game}}\data\score.dat}}' + - "{{Game data/config|Windows|{{p|game}}\\SYSTEM\\FURY3.INI}}" + - "{{Game data/saves|Windows|{{p|game}}\\data\\*.fff|{{p|game}}\\data\\score.dat}}" Fuse Balls: pageId: 87952 steam: 807840 @@ -65774,10 +63979,10 @@ Fuser: - FUSER steam: 1331440 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Fuser\Saved\Config\WindowsNoEditor\}}' -'Fushigi no Dungeon: Fuurai no Shiren Gaiden - Onna Kenshi Asuka Kenzan!': + - "{{Game data/config|Windows|{{p|localappdata}}\\Fuser\\Saved\\Config\\WindowsNoEditor\\}}" +"Fushigi no Dungeon: Fuurai no Shiren Gaiden - Onna Kenshi Asuka Kenzan!": pageId: 174828 -'Fushigi no Dungeon: Fuurai no Shiren: Tsukikage Mura no Kaibutsu': +"Fushigi no Dungeon: Fuurai no Shiren: Tsukikage Mura no Kaibutsu": pageId: 174826 Futa Battle TD: pageId: 174784 @@ -65836,7 +64041,7 @@ Futanari Sex - Unexpected Roomate: Futanari Vampire Girlfriend: pageId: 172983 steam: 1690150 -"Futanari girlfriends ⚧\U0001F467\U0001F346": +Futanari girlfriends ⚧👧🍆: pageId: 190508 steam: 2579470 Futanari of the Amazon: @@ -65854,11 +64059,11 @@ Future Aero Racing S Ultra: Future City Coaster: pageId: 90030 steam: 820660 -'Future Cop: LAPD': +"Future Cop: LAPD": pageId: 17930 templates: - - '{{Game data/config|Windows|{{P|game}}\controls.txt}}' - - '{{Game data/saves|Windows|{{p|game}}\save.cfg}}' + - "{{Game data/config|Windows|{{P|game}}\\controls.txt}}" + - "{{Game data/saves|Windows|{{p|game}}\\save.cfg}}" Future Futures - Command Z: pageId: 132042 steam: 1041060 @@ -65895,8 +64100,8 @@ Future Wars (2010): pageId: 51072 steam: 46440 templates: - - '{{Game data/config|Windows|{{p|userprofile\documents}}\Future Wars\profiles\profile.xml}}' - - '{{Game data/saves|Windows|{{p|userprofile\documents}}\Future Wars\profiles\}}' + - "{{Game data/config|Windows|{{p|userprofile\\documents}}\\Future Wars\\profiles\\profile.xml}}" + - "{{Game data/saves|Windows|{{p|userprofile\\documents}}\\Future Wars\\profiles\\}}" FutureGrind: pageId: 39576 steam: 355820 @@ -65915,14 +64120,14 @@ Futurust: Fuzecat: pageId: 62574 steam: 629720 -Fuzzy's Quest: +"Fuzzy's Quest": pageId: 155918 steam: 676600 Fürst Marigor und die Tobis: pageId: 173424 templates: - - '{{Game data/config|Windows|{{P|windir}}\Tobis2.ini}}' - - '{{Game data/saves|Windows|{{P|windir}}\ProgramData\Microsoft\Windows\Anwendungsdaten\CSoft\Marigor\Spieler}}' + - "{{Game data/config|Windows|{{P|windir}}\\Tobis2.ini}}" + - "{{Game data/saves|Windows|{{P|windir}}\\ProgramData\\Microsoft\\Windows\\Anwendungsdaten\\CSoft\\Marigor\\Spieler}}" Fürst Marigors Rache an den Tobis: pageId: 173428 G Prime: @@ -65932,23 +64137,23 @@ G String: pageId: 164417 steam: 1224600 templates: - - '{{Game data/config|Steam|{{p|game}}/gstringv2/cfg/}}' - - '{{Game data/saves|Steam|{{p|game}}/gstringv2/save/}}' + - "{{Game data/config|Steam|{{p|game}}/gstringv2/cfg/}}" + - "{{Game data/saves|Steam|{{p|game}}/gstringv2/save/}}" G-Ball: pageId: 50190 steam: 296150 G-Darius: pageId: 30330 templates: - - '{{Game data/config|Windows|{{P|game}}\CONFIG.SGS}}' - - '{{Game data/saves|Windows|{{P|game}}\UVSAVE.BIN}}' + - "{{Game data/config|Windows|{{P|game}}\\CONFIG.SGS}}" + - "{{Game data/saves|Windows|{{P|game}}\\UVSAVE.BIN}}" G-Darius HD: pageId: 172900 steam: 1640160 templates: - - '{{Game data/config|Windows|{{p|steam}}\userdata\{{p|uid}}\1640160\remote\}}' - - '{{Game data/saves|Windows|{{p|steam}}\userdata\{{p|uid}}\1640160\remote\}}' -G-Dino's Jungle Adventure: + - "{{Game data/config|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\1640160\\remote\\}}" + - "{{Game data/saves|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\1640160\\remote\\}}" +"G-Dino's Jungle Adventure": pageId: 94755 steam: 862180 G-Force: @@ -65957,16 +64162,16 @@ G-Force: G-Nome: pageId: 35415 templates: - - '{{Game data/config|Windows|{{p|windir}}\7THLEVEL.INI}}' + - "{{Game data/config|Windows|{{p|windir}}\\7THLEVEL.INI}}" G-Police: pageId: 126876 templates: - - '{{Game data/config|Windows|{{p|game}}\GPolice.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\GPolice.sav}}' + - "{{Game data/config|Windows|{{p|game}}\\GPolice.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\GPolice.sav}}" G.A.M.E.S: pageId: 141554 steam: 844020 -'G.I. Joe: Operation Blackout': +"G.I. Joe: Operation Blackout": pageId: 189467 steam: 1432220 G.R.E.E.N. The Life Algorithm: @@ -65984,7 +64189,7 @@ GALAXIUM: GALAXY TOP WING: pageId: 107640 steam: 905630 -'GALER: Plague of Heroes': +"GALER: Plague of Heroes": pageId: 39452 steam: 508330 GAME QUOTES - THE GAME: @@ -66035,7 +64240,7 @@ GI Racing 2.0: GIBZ: pageId: 38165 steam: 448320 -'GIF: The Game of Inevitable Frustration': +"GIF: The Game of Inevitable Frustration": pageId: 134707 steam: 701820 GIGABUSTER: @@ -66059,11 +64264,11 @@ GLADIUM: GLADOM - the 2D moba in Pixel Art: pageId: 145427 steam: 1134320 -'GLOWCOMA: chapter 1': +"GLOWCOMA: chapter 1": pageId: 153020 steam: 1188250 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\GLOWCOMA\Saved\Config\WindowsNoEditor}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\GLOWCOMA\\Saved\\Config\\WindowsNoEditor}}" GM Forge - Virtual Tabletop: pageId: 93991 steam: 842250 @@ -66071,15 +64276,15 @@ GM Rally: pageId: 59779 steam: 3150 templates: - - '{{Game data/saves|Windows|{{p|game}}\Data\profiles}}' + - "{{Game data/saves|Windows|{{p|game}}\\Data\\profiles}}" GNOG: gog: 1901611678 pageId: 74576 steam: 290510 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\KO_OP\GNOG\}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\KO_OP\GNOG\}}' - - '{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/unity.KO_OP.GNOG/}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\KO_OP\\GNOG\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\KO_OP\\GNOG\\}}" + - "{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/unity.KO_OP.GNOG/}}" GO HEROES: pageId: 151479 steam: 1183560 @@ -66116,8 +64321,8 @@ GRAY: pageId: 145962 steam: 1034700 templates: - - '{{Game data/config|Windows|{{p|appdata}}\MMFApplications\DontReadME}}' - - '{{Game data/saves|Windows|{{p|appdata}}\MMFApplications\DontReadME}}' + - "{{Game data/config|Windows|{{p|appdata}}\\MMFApplications\\DontReadME}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\MMFApplications\\DontReadME}}" GRAY TANK: pageId: 59607 steam: 596570 @@ -66125,10 +64330,8 @@ GRID (2019): pageId: 137481 steam: 703860 templates: - - >- - {{Game data/config|Windows|{{P|userprofile\Documents}}\My Games\GRID - (2019)\hardwaresettings\hardware_settings_config.xml}} - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/703860/remote/savegame}}' + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\My Games\\GRID (2019)\\hardwaresettings\\hardware_settings_config.xml}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/703860/remote/savegame}}" GRID 2: pageId: 4589 steam: 44350 @@ -66146,39 +64349,30 @@ GRID 2: - 255691 - 255692 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\GRID - 2\hardwaresettings\hardware_settings_config.xml}} - - >- - {{Game data/saves|Windows|{{p|steam}}\userdata\{{p|uid}}\44350\remote\|{{p|PROGRAMDATA}}\Codemasters\GRID - 2\DataCache\{{p|uid}}\}} + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\GRID 2\\hardwaresettings\\hardware_settings_config.xml}}" + - "{{Game data/saves|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\44350\\remote\\|{{p|PROGRAMDATA}}\\Codemasters\\GRID 2\\DataCache\\{{p|uid}}\\}}" GRID Autosport: pageId: 17581 steam: 255220 steamSide: - 295100 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\GRID Autosport\}}' - - >- - {{Game data/config|Linux|{{p|xdgdatahome}}/feral-interactive/GRID - Autosport/preferences|{{p|xdgdatahome}}/feral-interactive/GRID Autosport/VFS/User/AppData/Roaming/My Games/GRID - Autosport/hardwaresettings/}} - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/255220/remote/}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\GRID Autosport\\}}" + - "{{Game data/config|Linux|{{p|xdgdatahome}}/feral-interactive/GRID Autosport/preferences|{{p|xdgdatahome}}/feral-interactive/GRID Autosport/VFS/User/AppData/Roaming/My Games/GRID Autosport/hardwaresettings/}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/255220/remote/}}" GRID Legends: pageId: 170246 steam: 1307710 templates: - - >- - {{Game data/config|Windows|{{P|userprofile\Documents}}\My Games\GRID - Legends\hardwaresettings\hardware_settings_config.xml}} - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\My Games\GRID Legends\savegame\profile\}}' -'GRIDD: Retroenhanced': + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\My Games\\GRID Legends\\hardwaresettings\\hardware_settings_config.xml}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\My Games\\GRID Legends\\savegame\\profile\\}}" +"GRIDD: Retroenhanced": pageId: 58936 steam: 553950 GRIMO: pageId: 113244 steam: 802600 -'GRIP: Combat Racing': +"GRIP: Combat Racing": gog: 1342466874 gogSide: - 1926778718 @@ -66187,8 +64381,8 @@ GRIMO: - Grip steam: 396900 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Grip\Saved\Config}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Grip\Saved\SaveGames}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Grip\\Saved\\Config}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Grip\\Saved\\SaveGames}}" GRITS Racing: pageId: 127914 steam: 907190 @@ -66197,11 +64391,11 @@ GRUNND: pageId: 184677 steam: 1449920 templates: - - '{{Game data/saves|Windows|{{p|game}}\SavesDir}}' + - "{{Game data/saves|Windows|{{p|game}}\\SavesDir}}" GRally: pageId: 90346 steam: 605760 -'GSR: German Street Racing': +"GSR: German Street Racing": pageId: 88308 GShift: pageId: 46715 @@ -66213,53 +64407,47 @@ GT Legends: pageId: 32100 steam: 44690 templates: - - '{{Game data/config|Windows|{{p|game}}\Config.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\UserData\{{p|uid}}\{{p|uid}}.plr}}' -'GT Racing 2: The Real Car Experience': + - "{{Game data/config|Windows|{{p|game}}\\Config.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\UserData\\{{p|uid}}\\{{p|uid}}.plr}}" +"GT Racing 2: The Real Car Experience": pageId: 176197 templates: - - >- - {{Game - data/config|Windows|{{p|localappdata}}\Packages\GAMELOFTSA.GTRacing2TheRealCarExperience_0pp20fcewvvtj\Settings}} - - >- - {{Game - data/saves|Windows|{{p|localappdata}}\Packages\GAMELOFTSA.GTRacing2TheRealCarExperience_0pp20fcewvvtj\LocalState}} + - "{{Game data/config|Windows|{{p|localappdata}}\\Packages\\GAMELOFTSA.GTRacing2TheRealCarExperience_0pp20fcewvvtj\\Settings}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Packages\\GAMELOFTSA.GTRacing2TheRealCarExperience_0pp20fcewvvtj\\LocalState}}" GT-R 400: pageId: 24179 GTFO: pageId: 78820 steam: 493520 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\10 Chambers Collective\GTFO}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\10 Chambers Collective\\GTFO}}" GTI Racing: pageId: 41399 steam: 3000 templates: - - '{{Game data/config|Windows|{{P|game}}\Data}}' - - '{{Game data/saves|Windows|{{P|game}}\Data\profiles}}' + - "{{Game data/config|Windows|{{P|game}}\\Data}}" + - "{{Game data/saves|Windows|{{P|game}}\\Data\\profiles}}" GTR - FIA GT Racing Game: pageId: 34889 steam: 44600 templates: - - '{{Game data/config|Windows|{{p|game}}\config.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\UserData\{{p|uid}}\{{p|uid}}.plr}}' + - "{{Game data/config|Windows|{{p|game}}\\config.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\UserData\\{{p|uid}}\\{{p|uid}}.plr}}" GTR 2 - FIA GT Racing Game: pageId: 34891 steam: 8790 templates: - - '{{Game data/config|Windows|{{p|game}}\Config.ini}}' - - >- - {{Game - data/saves|Windows|{{p|game}}\UserData\{{p|uid}}\|{{p|game}}\UserData\defviews.cam|{{p|game}}\UserData\vehicledata.spt|{{p|game}}\ReplayData\}} -'GTTOD: Get to the Orange Door': + - "{{Game data/config|Windows|{{p|game}}\\Config.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\UserData\\{{p|uid}}\\|{{p|game}}\\UserData\\defviews.cam|{{p|game}}\\UserData\\vehicledata.spt|{{p|game}}\\ReplayData\\}}" +"GTTOD: Get to the Orange Door": gog: 1775694272 pageId: 61679 renamedFrom: - Get to the Orange Door steam: 541200 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Layers Deep\Get To The Orange Door\}}' - - '{{Game data/saves|Windows|{{p|hkcu}}\Software\Layers Deep\Get To The Orange Door\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Layers Deep\\Get To The Orange Door\\}}" + - "{{Game data/saves|Windows|{{p|hkcu}}\\Software\\Layers Deep\\Get To The Orange Door\\}}" GUIDE: pageId: 130388 steam: 1001570 @@ -66272,7 +64460,7 @@ GUNGUNGUN: GUNNVR: pageId: 59085 steam: 576640 -GUNS 'n GUTS: +"GUNS 'n GUTS": pageId: 121693 steam: 960700 GUNSMOKE: @@ -66290,36 +64478,36 @@ Gabbuchi: Gabe Newell Simulator 2.0: pageId: 45302 steam: 407420 -'GabeN: The Final Decision': +"GabeN: The Final Decision": pageId: 46378 steam: 403740 Gaben Kingdom: pageId: 61498 steam: 593340 -'Gabriel Knight 3: Blood of the Sacred, Blood of the Damned': +"Gabriel Knight 3: Blood of the Sacred, Blood of the Damned": gog: 1207658843 pageId: 36668 steam: 497360 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Sierra On-Line\Gabriel Knight 3\Engine\}}' - - '{{Game data/saves|Windows|{{p|game}}\Save Games\}}' -'Gabriel Knight: Sins of the Fathers': + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Sierra On-Line\\Gabriel Knight 3\\Engine\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\Save Games\\}}" +"Gabriel Knight: Sins of the Fathers": gog: 1207658828 pageId: 16763 steam: 495700 templates: - - '{{Game data/config|DOS|{{p|game}}\RESOURCE.CFG}}' - - '{{Game data/config|Windows|{{p|game}}\RESOURCE.WIN}}' - - '{{Game data/saves|DOS|{{p|game}}\GKSG.*}}' - - '{{Game data/saves|Windows|{{p|game}}\GKSG.*}}' -'Gabriel Knight: Sins of the Fathers - 20th Anniversary Edition': + - "{{Game data/config|DOS|{{p|game}}\\RESOURCE.CFG}}" + - "{{Game data/config|Windows|{{p|game}}\\RESOURCE.WIN}}" + - "{{Game data/saves|DOS|{{p|game}}\\GKSG.*}}" + - "{{Game data/saves|Windows|{{p|game}}\\GKSG.*}}" +"Gabriel Knight: Sins of the Fathers - 20th Anniversary Edition": gog: 1207666433 pageId: 34386 steam: 262000 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\SOFTWARE\Phoenix Online Studios\GK1}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Phoenix Online Studios\GK1}}' - - '{{Game data/saves|Steam|{{P|steam}}\userdata\{{P|uid}}\262000\remote\gk1\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\Phoenix Online Studios\\GK1}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Phoenix Online Studios\\GK1}}" + - "{{Game data/saves|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\262000\\remote\\gk1\\}}" Gachi Finder 3000: pageId: 125117 steam: 1000830 @@ -66329,19 +64517,19 @@ Gachi Gang: Gachi Heroes: pageId: 121272 steam: 944220 -'Gachi Heroes 2: Flexboll': +"Gachi Heroes 2: Flexboll": pageId: 156147 steam: 1179560 Gachi Revenge: pageId: 164356 steam: 1202070 -'Gachi Run: Running of the Slaves': +"Gachi Run: Running of the Slaves": pageId: 164347 steam: 1436680 Gachimuchi: pageId: 75041 steam: 740600 -'Gachimuchi Arcade: Lustful Boys': +"Gachimuchi Arcade: Lustful Boys": pageId: 126524 steam: 987090 Gachimuchi Manly Puzzle: @@ -66355,14 +64543,14 @@ Gachimuchi Rebirth: Gachimuchi Reloaded: pageId: 82077 steam: 766730 -'Gachimuchi: The Card Game': +"Gachimuchi: The Card Game": pageId: 129705 renamedFrom: - GACHIMUCHI The Card Game steam: 1034120 Gadget & The Gadgetinis: pageId: 174606 -'Gadget – Invention, Travel, & Adventure': +"Gadget – Invention, Travel, & Adventure": pageId: 187319 Gahkthun of the Golden Lightning: pageId: 43568 @@ -66382,15 +64570,15 @@ Gaia Beyond: pageId: 82171 steam: 788630 templates: - - '{{Game data/config|Windows|{{p|USERPROFILE}}\Saved Games\Gaia Beyond\}}' - - '{{Game data/saves|Windows|{{p|USERPROFILE}}\Saved Games\Gaia Beyond\savegames\}}' -Gaia's Decision: + - "{{Game data/config|Windows|{{p|USERPROFILE}}\\Saved Games\\Gaia Beyond\\}}" + - "{{Game data/saves|Windows|{{p|USERPROFILE}}\\Saved Games\\Gaia Beyond\\savegames\\}}" +"Gaia's Decision": pageId: 157209 steam: 1212510 -'Gaia''s Melody: Echoed Melodies': +"Gaia's Melody: Echoed Melodies": pageId: 73521 steam: 725410 -'Gaijin Charenji 1 : Kiss or Kill': +"Gaijin Charenji 1 : Kiss or Kill": pageId: 156196 steam: 1187950 Gaijin Troubles: @@ -66400,44 +64588,40 @@ Gain Ground: pageId: 30697 steam: 34275 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\SEGA Mega Drive - Classics\setup.dat|{{p|userprofile\Documents}}\SEGA Genesis Classics\setup.dat}} - - >- - {{Game data/saves|Windows|{{p|userprofile\Documents}}\SEGA Mega Drive - Classics\0004\|{{p|userprofile\Documents}}\SEGA Genesis Classics\0004\}} + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\SEGA Mega Drive Classics\\setup.dat|{{p|userprofile\\Documents}}\\SEGA Genesis Classics\\setup.dat}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\SEGA Mega Drive Classics\\0004\\|{{p|userprofile\\Documents}}\\SEGA Genesis Classics\\0004\\}}" Gakuen Club: pageId: 59403 steam: 505080 -'Gal Guardians: Demon Purge': +"Gal Guardians: Demon Purge": pageId: 183934 renamedFrom: - - 'Grim Guardians: Demon Purge' + - "Grim Guardians: Demon Purge" steam: 2081400 templates: - - '{{Game data/config|Windows|{{P|game}}\config.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\GGDPGameData*|{{p|game}}\GGDPSystemData}}' + - "{{Game data/config|Windows|{{P|game}}\\config.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\GGDPGameData*|{{p|game}}\\GGDPSystemData}}" Gal*Gun 2: pageId: 103185 steam: 851890 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\GalGun2\Saved\Config\WindowsNoEditor}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\GalGun2\Saved\SaveGames}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\GalGun2\\Saved\\Config\\WindowsNoEditor}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\GalGun2\\Saved\\SaveGames}}" Gal*Gun Returns: pageId: 163895 steam: 1425730 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\GalGunReturns\{{P|uid}}\Config.ini}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\GalGunReturns\{{P|uid}}\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\GalGunReturns\\{{P|uid}}\\Config.ini}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\GalGunReturns\\{{P|uid}}\\}}" Gal*Gun VR: pageId: 67806 steam: 678520 -'Gal*Gun: Double Peace': +"Gal*Gun: Double Peace": pageId: 41468 steam: 511740 steamSide: - - 537770 - 537120 + - 537770 - 537780 - 537790 - 539780 @@ -66461,15 +64645,15 @@ Gal*Gun VR: - 539960 - 539970 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\UnrealEngine3\GG2Game\Config\}}' - - '{{Game data/saves|Windows|{{p|game}}\Binaries\Win64\save\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\UnrealEngine3\\GG2Game\\Config\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\Binaries\\Win64\\save\\}}" Gal-X-E: pageId: 34789 steam: 473510 Gala Collider: pageId: 155456 steam: 970370 -'Galacatraz: Eject Equip Escape': +"Galacatraz: Eject Equip Escape": pageId: 80607 steam: 700340 Galacide: @@ -66484,12 +64668,12 @@ Galactic Adventures: Galactic Arms Race: pageId: 50133 steam: 249610 -'Galactic Assault: Prisoner of Power': +"Galactic Assault: Prisoner of Power": gog: 1426253010 pageId: 131909 templates: - - '{{Game data/config|Windows|{{p|game}}\settings.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\savegame|{{p|game}}\replays}}' + - "{{Game data/config|Windows|{{p|game}}\\settings.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\savegame|{{p|game}}\\replays}}" Galactic Asteroids Patrol: pageId: 154030 steam: 1199240 @@ -66510,27 +64694,22 @@ Galactic Civilizations: pageId: 36406 steam: 214150 templates: - - '{{Game data/config|Windows|{{P|game}}\GalCiv\Data\Prefs.ini}}' - - '{{Game data/saves|Windows|{{P|game}}\GalCiv\Data\SaveGames\}}' -'Galactic Civilizations II: Dread Lords': + - "{{Game data/config|Windows|{{P|game}}\\GalCiv\\Data\\Prefs.ini}}" + - "{{Game data/saves|Windows|{{P|game}}\\GalCiv\\Data\\SaveGames\\}}" +"Galactic Civilizations II: Dread Lords": gog: 1444400746 pageId: 27333 steam: 202200 templates: - - >- - {{Game data/config|Windows|{{P|userprofile\Documents}}\My - Games\GalCiv2\Prefs.ini
{{P|userprofile\Documents}}\My - Games\GC2DarkAvatar\Prefs.ini
{{P|userprofile\Documents}}\My Games\GC2TwilightArnor\Prefs.ini}} - - >- - {{Game data/saves|Windows|{{P|userprofile\Documents}}\My Games\GalCiv2\*.sav
{{P|userprofile\Documents}}\My - Games\GC2DarkAvatar\*.sav
{{P|userprofile\Documents}}\My Games\GC2TwilightArnor\*.sav}} + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\My Games\\GalCiv2\\Prefs.ini
{{P|userprofile\\Documents}}\\My Games\\GC2DarkAvatar\\Prefs.ini
{{P|userprofile\\Documents}}\\My Games\\GC2TwilightArnor\\Prefs.ini}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\My Games\\GalCiv2\\*.sav
{{P|userprofile\\Documents}}\\My Games\\GC2DarkAvatar\\*.sav
{{P|userprofile\\Documents}}\\My Games\\GC2TwilightArnor\\*.sav}}" Galactic Civilizations III: gog: 1444400383 pageId: 16275 steam: 226860 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\GalCiv3\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\GalCiv3\Saves\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\GalCiv3\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\GalCiv3\\Saves\\}}" Galactic Civilizations IV: pageId: 169172 steam: 1357210 @@ -66541,16 +64720,14 @@ Galactic Civilizations IV: - 2671160 - 2671170 templates: - - >- - {{Game data/saves|Windows|{{p|userprofile\documents}}\My Games\GalCiv4\Saves|{{p|userprofile\documents}}\My - Games\GalCiv4\MPSaves}} + - "{{Game data/saves|Windows|{{p|userprofile\\documents}}\\My Games\\GalCiv4\\Saves|{{p|userprofile\\documents}}\\My Games\\GalCiv4\\MPSaves}}" Galactic Command Echo Squad SE: pageId: 50590 steam: 285670 Galactic Conquerors: pageId: 46767 steam: 385680 -'Galactic Core: The Lost Fleet': +"Galactic Core: The Lost Fleet": pageId: 55837 steam: 571860 Galactic Crew: @@ -66654,12 +64831,12 @@ Galactineers: Galactis: pageId: 104657 steam: 906460 -'Galador: The Prince and the Coward': +"Galador: The Prince and the Coward": gog: 2014998256 pageId: 146840 renamedFrom: - The Prince and the Coward -'Galagan''s Island: Reprymian Rising': +"Galagan's Island: Reprymian Rising": pageId: 37881 steam: 378850 Galahad 3093: @@ -66668,15 +64845,15 @@ Galahad 3093: Galak Zed: pageId: 132474 steam: 1053020 -'Galak-Z: The Dimensional': +"Galak-Z: The Dimensional": gog: 1446111517 pageId: 23025 steam: 300580 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\SOFTWARE\17-BIT\Galak-Z\}}' - - '{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/17-BIT/Galak-Z/}}' - - '{{Game data/saves|Windows|{{p|game}}\SaveData.dat}}' - - '{{Game data/saves|Linux|{{p|game}}/SaveData.dat}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\17-BIT\\Galak-Z\\}}" + - "{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/17-BIT/Galak-Z/}}" + - "{{Game data/saves|Windows|{{p|game}}\\SaveData.dat}}" + - "{{Game data/saves|Linux|{{p|game}}/SaveData.dat}}" GalaxIverse: pageId: 41575 steam: 509390 @@ -66717,32 +64894,28 @@ Galaxy Champions TV: pageId: 108988 steam: 842750 templates: - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/aQuadiun/Galaxy Champions TV/prefs}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/aQuadiun/Galaxy Champions TV/}}' + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/aQuadiun/Galaxy Champions TV/prefs}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/aQuadiun/Galaxy Champions TV/}}" Galaxy Combat Wargames: pageId: 40118 steam: 488160 Galaxy Commando: pageId: 54485 steam: 526840 -'Galaxy Control: 3D Strategy': +"Galaxy Control: 3D Strategy": pageId: 41695 steam: 435440 Galaxy Crash: pageId: 144505 steam: 658090 -'Galaxy Fight: Universal Warriors': +"Galaxy Fight: Universal Warriors": pageId: 168076 Galaxy Force II: pageId: 30861 steam: 34310 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\SEGA Mega Drive - Classics\setup.dat|{{p|userprofile\Documents}}\SEGA Genesis Classics\setup.dat}} - - >- - {{Game data/saves|Windows|{{p|userprofile\Documents}}\SEGA Mega Drive - Classics\0018\|{{p|userprofile\Documents}}\SEGA Genesis Classics\0018\}} + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\SEGA Mega Drive Classics\\setup.dat|{{p|userprofile\\Documents}}\\SEGA Genesis Classics\\setup.dat}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\SEGA Mega Drive Classics\\0018\\|{{p|userprofile\\Documents}}\\SEGA Genesis Classics\\0018\\}}" Galaxy Forces VR: pageId: 141892 steam: 1035550 @@ -66750,8 +64923,8 @@ Galaxy Girls: pageId: 59856 steam: 560250 templates: - - '{{Game data/config|Linux|{{p|linuxhome}}/.renpy/GalaxyGirlsSave}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.renpy/GalaxyGirlsSave}}' + - "{{Game data/config|Linux|{{p|linuxhome}}/.renpy/GalaxyGirlsSave}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.renpy/GalaxyGirlsSave}}" Galaxy Monster: pageId: 132206 steam: 1050910 @@ -66765,7 +64938,7 @@ Galaxy Squad: gog: 1911539873 pageId: 110082 steam: 921710 -'Galaxy Trucker: Extended Edition': +"Galaxy Trucker: Extended Edition": gog: 1633057647 pageId: 128336 steam: 870690 @@ -66798,9 +64971,9 @@ Galaxy on Fire 2 Full HD: pageId: 20349 steam: 212010 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Galaxy on Fire 2 Full HD\GoF2.ini}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Galaxy on Fire 2 Full HD\}}' -'Galcon 2: Galactic Conquest': + - "{{Game data/config|Windows|{{p|appdata}}\\Galaxy on Fire 2 Full HD\\GoF2.ini}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Galaxy on Fire 2 Full HD\\}}" +"Galcon 2: Galactic Conquest": pageId: 38448 steam: 294160 Galcon Fusion: @@ -66809,10 +64982,10 @@ Galcon Fusion: Galcon Legends: pageId: 17619 steam: 201040 -Galdregon's Domain: +"Galdregon's Domain": pageId: 74774 templates: - - '{{Game data/saves|DOS|{{p|game}}\*.GME}}' + - "{{Game data/saves|DOS|{{p|game}}\\*.GME}}" Galdur: pageId: 100726 steam: 882660 @@ -66823,7 +64996,7 @@ Galimulator: pageId: 88780 steam: 808100 templates: - - '{{Game data/config|Windows|{{P|userprofile}}\.prefs\}}' + - "{{Game data/config|Windows|{{P|userprofile}}\\.prefs\\}}" Gallery One: pageId: 104251 steam: 912260 @@ -66857,12 +65030,12 @@ Game Corp DX: pageId: 38177 steam: 399670 templates: - - '{{Game data/saves|Windows|{{P|game}}\GameCorpDX_Data\Saves}}' + - "{{Game data/saves|Windows|{{P|game}}\\GameCorpDX_Data\\Saves}}" Game Dev Story: pageId: 176775 steam: 1847240 templates: - - '{{Game data/saves|Windows|{{p|game}}\saves\{{p|uid}}}}' + - "{{Game data/saves|Windows|{{p|game}}\\saves\\{{p|uid}}}}" Game Dev Studio: pageId: 88035 steam: 773580 @@ -66870,34 +65043,30 @@ Game Dev Tycoon: pageId: 6754 steam: 239820 templates: - - >- - {{Game data/config|Windows|{{p|localappdata}}\Game Dev Tycoon\Local Storage|{{p|localappdata}}\Game Dev Tycoon - - Steam\Local Storage}} - - '{{Game data/config|Microsoft Store|{{p|localappdata}}\Packages\B3B9BB81.56264F78B4FFF_swksbykwsp6kr\RoamingState}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Game Dev Tycoon/Local Storage/}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/Game Dev Tycoon/}}' - - '{{Game data/config|Steam|{{p|steam}}/userdata/{{p|uid}}/239820/remote/}}' - - >- - {{Game data/saves|Windows|{{p|localappdata}}\Game Dev Tycoon\Local Storage|{{p|localappdata}}\Game Dev Tycoon - - Steam\Local Storage}} - - '{{Game data/saves|Microsoft Store|{{p|localappdata}}\Packages\B3B9BB81.56264F78B4FFF_swksbykwsp6kr\RoamingState}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Game Dev Tycoon/Local Storage/}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/Game Dev Tycoon/}}' - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/239820/remote/}}' -'Game Machines: Arcade Casino': + - "{{Game data/config|Windows|{{p|localappdata}}\\Game Dev Tycoon\\Local Storage|{{p|localappdata}}\\Game Dev Tycoon - Steam\\Local Storage}}" + - "{{Game data/config|Microsoft Store|{{p|localappdata}}\\Packages\\B3B9BB81.56264F78B4FFF_swksbykwsp6kr\\RoamingState}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Game Dev Tycoon/Local Storage/}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/Game Dev Tycoon/}}" + - "{{Game data/config|Steam|{{p|steam}}/userdata/{{p|uid}}/239820/remote/}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Game Dev Tycoon\\Local Storage|{{p|localappdata}}\\Game Dev Tycoon - Steam\\Local Storage}}" + - "{{Game data/saves|Microsoft Store|{{p|localappdata}}\\Packages\\B3B9BB81.56264F78B4FFF_swksbykwsp6kr\\RoamingState}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Game Dev Tycoon/Local Storage/}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/Game Dev Tycoon/}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/239820/remote/}}" +"Game Machines: Arcade Casino": pageId: 73250 steam: 726580 Game Master Plus: pageId: 125316 steam: 950890 -'Game Of Puzzles: Nature': +"Game Of Puzzles: Nature": pageId: 132404 steam: 1055890 Game Room: pageId: 12675 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Krome Studios\Game Room}}' -'Game Royale 2: The Secret of Jannis Island': + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Krome Studios\\Game Room}}" +"Game Royale 2: The Secret of Jannis Island": pageId: 55199 steam: 567010 Game Soup: @@ -66906,8 +65075,8 @@ Game Soup: Game Stock Car: pageId: 134239 templates: - - '{{Game data/config|Windows|{{p|game}}\Config.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\UserData\{{p|uid}}\{{p|uid}}.plr}}' + - "{{Game data/config|Windows|{{p|game}}\\Config.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\UserData\\{{p|uid}}\\{{p|uid}}.plr}}" Game Studio Simulator(我要做游戏): pageId: 129757 steam: 1021690 @@ -66917,7 +65086,7 @@ Game Tengoku CruisinMix Special: - Game Tengoku CruisinMix steam: 663130 templates: - - '{{Game data/saves|Windows|{{P|appdata}}\Game Tengoku CruisinMix\savedata.dat}}' + - "{{Game data/saves|Windows|{{P|appdata}}\\Game Tengoku CruisinMix\\savedata.dat}}" Game Tube: pageId: 78044 steam: 763300 @@ -66930,14 +65099,14 @@ Game Tycoon 2: Game Type: pageId: 46346 steam: 373630 -Game club "Waka-Waka": +"Game club \"Waka-Waka\"": pageId: 134855 steam: 1047240 -'Game of Death: Bloody Infidelity': +"Game of Death: Bloody Infidelity": pageId: 180097 templates: - - '{{Game data/config|Windows|{{p|HKCU}}\SOFTWARE\RSK Entertainment\CaptivityOfDeath}}' - - '{{Game data/saves|Windows|{{p|HKCU}}\SOFTWARE\RSK Entertainment\CaptivityOfDeath}}' + - "{{Game data/config|Windows|{{p|HKCU}}\\SOFTWARE\\RSK Entertainment\\CaptivityOfDeath}}" + - "{{Game data/saves|Windows|{{p|HKCU}}\\SOFTWARE\\RSK Entertainment\\CaptivityOfDeath}}" Game of Dragons: pageId: 64622 steam: 391400 @@ -66947,20 +65116,20 @@ Game of Emperors: Game of Life: pageId: 78002 steam: 760750 -'Game of Puzzles: Animals': +"Game of Puzzles: Animals": pageId: 135301 renamedFrom: - - 'Game Of Puzzles: Animals' + - "Game Of Puzzles: Animals" steam: 1077160 -'Game of Puzzles: Dragons': +"Game of Puzzles: Dragons": pageId: 135026 renamedFrom: - - 'Game Of Puzzles: Dragons' + - "Game Of Puzzles: Dragons" steam: 1072590 -'Game of Puzzles: Space': +"Game of Puzzles: Space": pageId: 156296 renamedFrom: - - 'Game Of Puzzles: Space' + - "Game Of Puzzles: Space" steam: 1218200 Game of Stones: pageId: 88852 @@ -66969,28 +65138,23 @@ Game of Thrones: pageId: 2206 steam: 208730 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Game of Thrones\UnrealEngine3\AGOTGame\Config\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Game of Thrones\UnrealEngine3\Binaries\SaveData\}}' -'Game of Thrones: A Telltale Games Series': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Game of Thrones\\UnrealEngine3\\AGOTGame\\Config\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Game of Thrones\\UnrealEngine3\\Binaries\\SaveData\\}}" +"Game of Thrones: A Telltale Games Series": gog: 1432208050 pageId: 21193 steam: 330840 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\Telltale Games\Game of Thrones A Telltale Games Series\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Telltale Games/Game of Thrones}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\Telltale Games\Game of Thrones A Telltale Games Series\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Telltale Games/Game of Thrones}}' -'Game of Thrones: Tale of Crows': + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\Telltale Games\\Game of Thrones A Telltale Games Series\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Telltale Games/Game of Thrones}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\Telltale Games\\Game of Thrones A Telltale Games Series\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Telltale Games/Game of Thrones}}" +"Game of Thrones: Tale of Crows": pageId: 162607 templates: - - >- - {{Game data/config|OS X|{{P|osxhome}}/Library/Containers/com.devolver.gotwall/Data/Library/Application - Support/com.devolver.gotwall/Local/|{{P|osxhome}}/Library/Containers/com.devolver.gotwall/Data/Library/Preferences/{{note|Contains - resolution settings, but game seems to overwrite any changes to this file}}}} - - >- - {{Game data/saves|OS X|{{P|osxhome}}/Library/Containers/com.devolver.gotwall/Data/Library/Application - Support/com.devolver.gotwall/Local/}} -'Game of Thrones: Winter Is Coming': + - "{{Game data/config|OS X|{{P|osxhome}}/Library/Containers/com.devolver.gotwall/Data/Library/Application Support/com.devolver.gotwall/Local/|{{P|osxhome}}/Library/Containers/com.devolver.gotwall/Data/Library/Preferences/{{note|Contains resolution settings, but game seems to overwrite any changes to this file}}}}" + - "{{Game data/saves|OS X|{{P|osxhome}}/Library/Containers/com.devolver.gotwall/Data/Library/Application Support/com.devolver.gotwall/Local/}}" +"Game of Thrones: Winter Is Coming": pageId: 150369 renamedFrom: - Game of Thrones Winter is Coming @@ -67013,10 +65177,10 @@ GameDevVR: GameEllen: pageId: 121014 steam: 961060 -'GameMaster: Magus': +"GameMaster: Magus": pageId: 94459 steam: 844250 -'Gamebook Edgar A. Poe: The Oval Portrait': +"Gamebook Edgar A. Poe: The Oval Portrait": pageId: 180940 steam: 1992120 Gamecraft: @@ -67027,8 +65191,8 @@ Gamedec: pageId: 145516 steam: 917720 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\GameDEC\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\GameDEC\Saved\SaveGames}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\GameDEC\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\GameDEC\\Saved\\SaveGames}}" Gamedev Beatdown: pageId: 154093 steam: 1100300 @@ -67044,10 +65208,10 @@ Gamepad Massage: Gamer Career Tycoon: pageId: 82839 steam: 567750 -'Gamer Girls: Cyberpunk 2069': +"Gamer Girls: Cyberpunk 2069": pageId: 175156 steam: 1793840 -Gamer Sensei's Range Royale: +"Gamer Sensei's Range Royale": pageId: 109084 steam: 863190 Gamer Simulator: @@ -67060,7 +65224,7 @@ GamersGoMakers: pageId: 49793 steam: 314320 templates: - - '{{Game data/saves|Windows|{{p|game}}\save}}' + - "{{Game data/saves|Windows|{{p|game}}\\save}}" Games of Glory: pageId: 47777 steam: 342150 @@ -67080,9 +65244,9 @@ Ganbare! Super Strikers: pageId: 91234 steam: 419990 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\Rese Games\Ganbare! Super Strikers\Data\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Rese Games\Ganbare! Super Strikers\Data\}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Rese Games/Ganbare! Super Strikers/Data/}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Rese Games\\Ganbare! Super Strikers\\Data\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Rese Games\\Ganbare! Super Strikers\\Data\\}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Rese Games/Ganbare! Super Strikers/Data/}}" Ganbatte: pageId: 75045 steam: 691680 @@ -67090,15 +65254,15 @@ Gang Beasts: pageId: 19643 steam: 285900 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\SOFTWARE\Boneloaf\Gang Beasts\}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Boneloaf/Gang Beasts/}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\Boneloaf\\Gang Beasts\\}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Boneloaf/Gang Beasts/}}" Gang District: pageId: 152679 steam: 1196170 Gang Garrison 2: pageId: 52436 templates: - - '{{Game data/config|Windows|{{P|game}}\gg2.ini|{{P|game}}\controls.gg2}}' + - "{{Game data/config|Windows|{{P|game}}\\gg2.ini|{{P|game}}\\controls.gg2}}" Gang of Four: pageId: 152943 steam: 350300 @@ -67106,41 +65270,41 @@ Gangland: gog: 1207658977 pageId: 25025 templates: - - '{{Game data/config|Windows|{{P|game}}\config\}}' - - '{{Game data/saves|Windows|{{P|game}}\profiles\}}' + - "{{Game data/config|Windows|{{P|game}}\\config\\}}" + - "{{Game data/saves|Windows|{{P|game}}\\profiles\\}}" Gangs of Space: pageId: 67175 steam: 504300 Gangsta Sniper: pageId: 121689 steam: 951640 -'Gangsta Sniper 2: Revenge': +"Gangsta Sniper 2: Revenge": pageId: 127457 steam: 998480 -'Gangsta Sniper 3: Final Parody': +"Gangsta Sniper 3: Final Parody": pageId: 153288 steam: 1173260 -'Gangsta Underground : The Poker': +"Gangsta Underground : The Poker": pageId: 160056 steam: 689720 Gangsta Woman: pageId: 140765 steam: 1108620 -'Gangstar: New Orleans': +"Gangstar: New Orleans": pageId: 175932 Gangsters 1920: pageId: 150387 steam: 1163490 -'Gangsters 2: Vendetta': +"Gangsters 2: Vendetta": pageId: 173910 templates: - - '{{Game data/saves|Windows|{{p|game}}\Saved Games}}' -'Gangsters: Organized Crime': + - "{{Game data/saves|Windows|{{p|game}}\\Saved Games}}" +"Gangsters: Organized Crime": gog: 1207659108 pageId: 4280 templates: - - '{{Game data/config|Windows|{{p|hklm}}\SOFTWARE\{{p|wow64}}\Hothouse\Gangsters}}' - - '{{Game data/saves|Windows|{{P|game}}\Saved Games\|{{P|game}}\Multiplayer Saved Games\}}' + - "{{Game data/config|Windows|{{p|hklm}}\\SOFTWARE\\{{p|wow64}}\\Hothouse\\Gangsters}}" + - "{{Game data/saves|Windows|{{P|game}}\\Saved Games\\|{{P|game}}\\Multiplayer Saved Games\\}}" Ganryu 2: pageId: 184473 steam: 1856910 @@ -67150,21 +65314,21 @@ Gansel and Hretel: Gaokao.Love.100Days: pageId: 37144 steam: 347620 -Gappo's Legacy VR: +"Gappo's Legacy VR": pageId: 68673 steam: 611080 Garage Master 2018: pageId: 99898 steam: 884590 -'Garage: Bad Dream Adventure': +"Garage: Bad Dream Adventure": pageId: 178448 steam: 1946430 -'Garage: Bad Trip': +"Garage: Bad Trip": pageId: 99526 steam: 878580 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\SOFTWARE\Zombie Dynamics\Garage\}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Zombie Dynamics\Garage\save.dat}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\SOFTWARE\\Zombie Dynamics\\Garage\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Zombie Dynamics\\Garage\\save.dat}}" Garbage Classification Simulator 垃圾分类模拟器: pageId: 153501 steam: 1165350 @@ -67179,17 +65343,17 @@ Garden In!: pageId: 184683 steam: 1953860 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\GardenIn\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\GardenIn\Saved\SaveGames}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\GardenIn\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\GardenIn\\Saved\\SaveGames}}" Garden Paws: pageId: 105459 steam: 840010 templates: - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\Bitten Toast Games\Garden Paws\SavesDir\}}' + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\Bitten Toast Games\\Garden Paws\\SavesDir\\}}" Garden Rescue: pageId: 48819 steam: 346210 -'Garden Rescue: Christmas Edition': +"Garden Rescue: Christmas Edition": pageId: 45700 steam: 418160 Garden Simulator: @@ -67200,8 +65364,8 @@ Garden Story: pageId: 139665 steam: 1062140 templates: - - '{{Game data/saves|Windows|{{P|localappdata}}\Garden_Story__for_Blue_Build_\}}' -'Garden Tails: Match and Grow': + - "{{Game data/saves|Windows|{{P|localappdata}}\\Garden_Story__for_Blue_Build_\\}}" +"Garden Tails: Match and Grow": pageId: 181586 Garden Tale: pageId: 61792 @@ -67233,9 +65397,9 @@ Gardens Inc. - From Rakes to Riches: pageId: 50530 steam: 279420 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Nitreal Games\Gardens Inc\}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Nitreal Games\Gardens Inc\}}' -'Gardens Inc. 2: The Road to Fame': + - "{{Game data/config|Windows|{{p|appdata}}\\Nitreal Games\\Gardens Inc\\}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Nitreal Games\\Gardens Inc\\}}" +"Gardens Inc. 2: The Road to Fame": pageId: 50216 steam: 301260 Gardenscapes (2009): @@ -67249,86 +65413,84 @@ Garenburg Woods: Garfield: pageId: 88451 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Garfield\}}' - - '{{Game data/saves|Windows|{{p|game}}\save\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Garfield\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\save\\}}" Garfield Kart: pageId: 46038 steam: 362930 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Anuman Interactive\Garfield Kart\}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Anuman Interactive\Garfield Kart\}}' -'Garfield Kart: Furious Racing': + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Anuman Interactive\\Garfield Kart\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Anuman Interactive\\Garfield Kart\\}}" +"Garfield Kart: Furious Racing": pageId: 142633 steam: 1085510 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Anuman Interactive\Garfield Kart Furious Racing\}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Microids\Garfield Kart Furious Racing\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Anuman Interactive\\Garfield Kart Furious Racing\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Microids\\Garfield Kart Furious Racing\\}}" Garfield Lasagna Party: pageId: 191225 steam: 2008410 -Garfield's It's All About Thinking Skills: +"Garfield's It's All About Thinking Skills": pageId: 90681 -Garfield's Mad About Cats: +"Garfield's Mad About Cats": pageId: 90687 -Garfield's Wild Ride: +"Garfield's Wild Ride": pageId: 92477 -'Garfield: A Tail of Two Kitties': +"Garfield: A Tail of Two Kitties": pageId: 88443 -'Garfield: Caught in the Act': +"Garfield: Caught in the Act": pageId: 88455 -'Garfield: It''s All About Phonics - Kindergarten': +"Garfield: It's All About Phonics - Kindergarten": pageId: 90683 -'Garfield: Saving Arlene': +"Garfield: Saving Arlene": pageId: 90689 templates: - - '{{Game data/saves|Windows|Game Directory/game.sav}}' + - "{{Game data/saves|Windows|Game Directory/game.sav}}" Gargoyles Remastered: gog: 1092632361 pageId: 189638 steam: 1928020 -'Garin Game: Curse of Revival Ceremony': +"Garin Game: Curse of Revival Ceremony": pageId: 96093 steam: 813370 Garlock Online: pageId: 42820 steam: 389530 -'Garou: Mark of the Wolves': +"Garou: Mark of the Wolves": gog: 1830215906 pageId: 54586 steam: 366240 Garrison Gauntlet: pageId: 104217 steam: 912360 -'Garrison: Archangel': +"Garrison: Archangel": pageId: 82422 steam: 682450 -Garry's Mod: +"Garry's Mod": pageId: 86 steam: 4000 templates: - - '{{Game data/config|Windows|{{p|game}}\garrysmod\cfg}}' - - '{{Game data/config|Linux|{{p|game}}/garrysmod/cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\garrysmod\saves}}' -'Garshasp: Temple of the Dragon': + - "{{Game data/config|Windows|{{p|game}}\\garrysmod\\cfg}}" + - "{{Game data/config|Linux|{{p|game}}/garrysmod/cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\garrysmod\\saves}}" +"Garshasp: Temple of the Dragon": pageId: 40727 steam: 99410 templates: - - >- - {{Game - data/config|Windows|{{p|appdata}}\DeadMage\Garshasp_Expansion\options_*.xml|{{p|appdata}}\DeadMage\Garshasp_Expansion\profiles\profile_Garshasp\options_user_*.xml}} - - '{{Game data/saves|Windows|{{p|appdata}}\DeadMage\Garshasp_Expansion\profiles\profile_Garshasp\saves\}}' -'Garshasp: The Monster Slayer': + - "{{Game data/config|Windows|{{p|appdata}}\\DeadMage\\Garshasp_Expansion\\options_*.xml|{{p|appdata}}\\DeadMage\\Garshasp_Expansion\\profiles\\profile_Garshasp\\options_user_*.xml}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\DeadMage\\Garshasp_Expansion\\profiles\\profile_Garshasp\\saves\\}}" +"Garshasp: The Monster Slayer": pageId: 40986 steam: 99400 templates: - - '{{Game data/config|Windows|{{p|APPDATA}}\DeadMage\Garshasp\profiles\profile_Garshasp\options_user_garshasp.xml}}' - - '{{Game data/saves|Windows|{{p|APPDATA}}\DeadMage\Garshasp\profiles\profile_Garshasp\saves\}}' + - "{{Game data/config|Windows|{{p|APPDATA}}\\DeadMage\\Garshasp\\profiles\\profile_Garshasp\\options_user_garshasp.xml}}" + - "{{Game data/saves|Windows|{{p|APPDATA}}\\DeadMage\\Garshasp\\profiles\\profile_Garshasp\\saves\\}}" Garten of Banban: pageId: 184341 steam: 2232840 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Clay\Saved\Config\Windows}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Clay\Saved\SaveGames}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Clay\\Saved\\Config\\Windows}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Clay\\Saved\\SaveGames}}" Garten of Banban 2: pageId: 184344 steam: 2262770 @@ -67344,18 +65506,18 @@ Garten of Banban 5: Garten of Banban 6: pageId: 189707 steam: 2499800 -Gary Grigsby's War in the East: +"Gary Grigsby's War in the East": gog: 1953257763 pageId: 37211 steam: 370540 -Gary Grigsby's War in the East 2: +"Gary Grigsby's War in the East 2": pageId: 172025 steam: 1775550 -Gary Grigsby's War in the West: +"Gary Grigsby's War in the West": gog: 1826669486 pageId: 66617 steam: 644710 -'Gary Grigsby''s World at War: A World Divided': +"Gary Grigsby's World at War: A World Divided": gog: 1980503427 pageId: 184974 Gary the Gull: @@ -67365,29 +65527,29 @@ Gas Guzzlers Extreme: pageId: 14152 steam: 243800 steamSide: + - 265100 - 277820 - 277821 - - 265100 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Gamepires\GasGuzzlersExtreme\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Gamepires\GasGuzzlersExtreme\}}' -'Gas Guzzlers: Combat Carnage': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Gamepires\\GasGuzzlersExtreme\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Gamepires\\GasGuzzlersExtreme\\}}" +"Gas Guzzlers: Combat Carnage": pageId: 59019 steam: 596620 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Gamepires\GasGuzzlersCombatCarnage\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Gamepires\GasGuzzlersCombatCarnage\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Gamepires\\GasGuzzlersCombatCarnage\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Gamepires\\GasGuzzlersCombatCarnage\\}}" Gas Station Simulator: gog: 1140053399 pageId: 151359 steam: 1149620 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\GSS2\Saved\Config}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\GSS2\Saved\SaveGames}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\GSS2\\Saved\\Config}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\GSS2\\Saved\\SaveGames}}" Gataela: pageId: 82221 steam: 631860 -'Gatari: Sand on Teeth': +"Gatari: Sand on Teeth": pageId: 128485 steam: 808540 Gate Zero: @@ -67410,8 +65572,8 @@ Gates of Hell: pageId: 39510 steam: 400750 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\My Games\gates of hell\profiles\"string of numbers"|}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\My Games\gates of hell\profiles\"string of numbers"|}}' + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\My Games\\gates of hell\\profiles\\\"string of numbers\"|}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\My Games\\gates of hell\\profiles\\\"string of numbers\"|}}" Gates of Horizon: pageId: 49085 steam: 334290 @@ -67429,38 +65591,38 @@ Gates to Terra II: Gatewalkers: pageId: 145315 steam: 1125710 -'Gateway II: Homeworld': +"Gateway II: Homeworld": pageId: 176070 Gateway to the Savage Frontier: gog: 1432649588 pageId: 54897 steam: 1904523 templates: - - '{{Game data/config|DOS|{{p|game}}\GAME.CFG}}' - - '{{Game data/saves|DOS|{{p|game}}\SAVE\}}' + - "{{Game data/config|DOS|{{p|game}}\\GAME.CFG}}" + - "{{Game data/saves|DOS|{{p|game}}\\SAVE\\}}" Gateways: gog: 1207659733 pageId: 4881 steam: 216290 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\SavedGames\Gateways\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Gateways/}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/Gateways/}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\SavedGames\Gateways\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Gateways/}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/Gateways/}}' - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/216290/}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\SavedGames\\Gateways\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Gateways/}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/Gateways/}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\SavedGames\\Gateways\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Gateways/}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/Gateways/}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/216290/}}" Gathering Sky: pageId: 46891 steam: 356250 -Gatlin': +"Gatlin'": pageId: 150081 steam: 783430 Gatling Gears: pageId: 40918 steam: 102810 templates: - - '{{Game data/saves|Windows|{{p|steam}}\userdata\{{p|uid}}\102810\}}' + - "{{Game data/saves|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\102810\\}}" Gato: pageId: 177376 Gato Roboto: @@ -67468,8 +65630,8 @@ Gato Roboto: pageId: 130543 steam: 916730 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\GatoRoboto_patch_1_1\userprefs.json}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\GatoRoboto_patch_1_1\default\*.ini}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\GatoRoboto_patch_1_1\\userprefs.json}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\GatoRoboto_patch_1_1\\default\\*.ini}}" Gator Parade - An Oddfellows Mini: pageId: 151089 steam: 1152840 @@ -67477,7 +65639,7 @@ Gauge: pageId: 32389 steam: 272990 templates: - - '{{Game data/saves|Windows|{{p|game}}\gauge_save.ini}}' + - "{{Game data/saves|Windows|{{p|game}}\\gauge_save.ini}}" Gauge of Rage: pageId: 109902 renamedFrom: @@ -67490,8 +65652,8 @@ Gauntlet (2014): pageId: 17743 steam: 258970 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Arrowhead\Gauntlet\user_settings.config}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Arrowhead\Gauntlet\saves\}}' + - "{{Game data/config|Windows|{{p|appdata}}\\Arrowhead\\Gauntlet\\user_settings.config}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Arrowhead\\Gauntlet\\saves\\}}" Gauntlet II: pageId: 30923 Gauntlet of IRE: @@ -67500,7 +65662,7 @@ Gauntlet of IRE: Gaurodan: pageId: 131422 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Gaurodan\config.ini}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Gaurodan\\config.ini}}" Gay Battlegrounds: pageId: 100054 steam: 890510 @@ -67513,7 +65675,7 @@ Gay Nation: Gay World: pageId: 79275 steam: 776340 -Gaygarin In deep as's'pace: +"Gaygarin In deep as's'pace": pageId: 112628 steam: 937030 Gaze At Maze: @@ -67525,7 +65687,7 @@ Gazillionaire: Gazing From Beyond: pageId: 80625 steam: 782690 -'Gazzel Quest, The Five Magic Stones': +"Gazzel Quest, The Five Magic Stones": pageId: 42297 steam: 500120 Gear: @@ -67540,7 +65702,7 @@ Gear Gauntlet: Gear Path: pageId: 78224 steam: 764470 -'Gear Puzzle: the inheritance of grandpa(齿轮迷局)': +"Gear Puzzle: the inheritance of grandpa(齿轮迷局)": pageId: 141770 steam: 1114230 Gear Up: @@ -67552,8 +65714,8 @@ Gear.Club Unlimited 2 Ultimate Edition: pageId: 173509 steam: 1557860 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Eden Games\GCU2}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Eden Games\GCU2\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Eden Games\\GCU2}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Eden Games\\GCU2\\}}" GearCity: gog: 1801948692 pageId: 50171 @@ -67568,74 +65730,66 @@ Gearcrack Arena: pageId: 21373 steam: 301480 templates: - - '{{Game data/saves|Windows|{{P|localappdata}}\GEARCRACK_Arena\}}' + - "{{Game data/saves|Windows|{{P|localappdata}}\\GEARCRACK_Arena\\}}" Geared: pageId: 47883 steam: 341770 Gearend: pageId: 58818 steam: 574500 -'Gearguns: Tank Offensive': +"Gearguns: Tank Offensive": pageId: 40440 steam: 526250 Gears 5: pageId: 129518 steam: 1097840 templates: - - '{{Game data/config|Steam|{{P|localappdata}}\Gears5\Saved\Config\PC\|}}' - - >- - {{Game data/config|Microsoft - Store|{{P|localappdata}}\Gears5\Saved\Config\PC\|{{P|localappdata}}\Packages\Microsoft.HalifaxBaseGame_8wekyb3d8bbwe\Settings\}} - - '{{Game data/saves|Steam|{{P|steam}}\userdata\{{P|uid}}\1097840\remote\}}' - - >- - {{Game data/saves|Microsoft - Store|{{P|localappdata}}\Packages\Microsoft.HalifaxBaseGame_8wekyb3d8bbwe\SystemAppData\}} + - "{{Game data/config|Steam|{{P|localappdata}}\\Gears5\\Saved\\Config\\PC\\|}}" + - "{{Game data/config|Microsoft Store|{{P|localappdata}}\\Gears5\\Saved\\Config\\PC\\|{{P|localappdata}}\\Packages\\Microsoft.HalifaxBaseGame_8wekyb3d8bbwe\\Settings\\}}" + - "{{Game data/saves|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\1097840\\remote\\}}" + - "{{Game data/saves|Microsoft Store|{{P|localappdata}}\\Packages\\Microsoft.HalifaxBaseGame_8wekyb3d8bbwe\\SystemAppData\\}}" Gears POP!: pageId: 143617 Gears Tactics: pageId: 143659 steam: 1184050 templates: - - '{{Game data/config|Microsoft Store|{{P|localappdata}}\GearsTactics\Saved\Config\PC\}}' - - '{{Game data/config|Steam|{{P|localappdata}}\GearsTactics\Saved\Config\PC\}}' - - >- - {{Game data/saves|Microsoft - Store|{{P|LOCALAPPDATA}}\Packages\Microsoft.GanderBaseGame_8wekyb3d8bbwe\SystemAppData\}} - - '{{Game data/saves|Steam|{{P|steam}}\userdata\{{P|uid}}\1184050\remote\}}' + - "{{Game data/config|Microsoft Store|{{P|localappdata}}\\GearsTactics\\Saved\\Config\\PC\\}}" + - "{{Game data/config|Steam|{{P|localappdata}}\\GearsTactics\\Saved\\Config\\PC\\}}" + - "{{Game data/saves|Microsoft Store|{{P|LOCALAPPDATA}}\\Packages\\Microsoft.GanderBaseGame_8wekyb3d8bbwe\\SystemAppData\\}}" + - "{{Game data/saves|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\1184050\\remote\\}}" Gears of Eden: pageId: 82215 steam: 791190 Gears of War: pageId: 3603 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Gears of War for Windows\WarGame\Config\}}' - - '{{Game data/config|Windows|{{p|userprofile}}\Documents\My Games\Gears of War for Windows\WarGame\SaveData\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Gears of War for Windows\\WarGame\\Config\\}}" + - "{{Game data/config|Windows|{{p|userprofile}}\\Documents\\My Games\\Gears of War for Windows\\WarGame\\SaveData\\}}" Gears of War 4: pageId: 35670 templates: - - >- - {{Game - data/config|Windows|{{P|localappdata}}\Packages\Microsoft.SpartaUWP_8wekyb3d8bbwe\LocalState\GearGame\Saved\Config\UWP\}} - - '{{Game data/saves|Windows|{{P|localappdata}}\Packages\Microsoft.SpartaUWP_8wekyb3d8bbwe}}' -'Gears of War: Ultimate Edition': + - "{{Game data/config|Windows|{{P|localappdata}}\\Packages\\Microsoft.SpartaUWP_8wekyb3d8bbwe\\LocalState\\GearGame\\Saved\\Config\\UWP\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Packages\\Microsoft.SpartaUWP_8wekyb3d8bbwe}}" +"Gears of War: Ultimate Edition": pageId: 31450 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Packages\Microsoft.DeltaPC_8wekyb3d8bbwe\LocalState\WarGame\Config}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\Packages\Microsoft.DeltaPC_8wekyb3d8bbwe\SystemAppData\wgs}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Packages\\Microsoft.DeltaPC_8wekyb3d8bbwe\\LocalState\\WarGame\\Config}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Packages\\Microsoft.DeltaPC_8wekyb3d8bbwe\\SystemAppData\\wgs}}" Gearshifters: pageId: 186931 steam: 1017160 Gearwars: pageId: 145534 steam: 1127950 -Gebub's Adventure: +"Gebub's Adventure": pageId: 41583 steam: 509160 Gedonia: pageId: 142297 steam: 1114220 templates: - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\Oleg Kazakov\Gedonia\*.es3}}' + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\Oleg Kazakov\\Gedonia\\*.es3}}" Geek Fighter: pageId: 88806 steam: 807890 @@ -67650,15 +65804,13 @@ Geeste: steam: 831790 Geisha: pageId: 147017 -'Gekido: Kintaro''s Revenge': +"Gekido: Kintaro's Revenge": gog: 1683385187 pageId: 129234 steam: 1032340 templates: - - >- - {{Game - data/config|Windows|{{p|userprofile}}\AppData\LocalLow\\NapsTeam\Gekido\Unity\d0ab1b3a-1f49-425f-9ad7-a9a9595a3dc4\Analytics}} - - '{{Game data/saves|Windows|{{p|game}}\Gekido_Data\save.dat}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\\\NapsTeam\\Gekido\\Unity\\d0ab1b3a-1f49-425f-9ad7-a9a9595a3dc4\\Analytics}}" + - "{{Game data/saves|Windows|{{p|game}}\\Gekido_Data\\save.dat}}" Gekisou! Benza Race -Toilet Shooting Star-: pageId: 143780 steam: 1136930 @@ -67686,37 +65838,37 @@ Gem Monster: Gem Rush: pageId: 103911 steam: 845860 -'Gem Wars: Attack of the Jiblets': +"Gem Wars: Attack of the Jiblets": pageId: 45288 steam: 370590 GemBreak: pageId: 33816 steam: 491160 -'GemCraft: Chasing Shadows': +"GemCraft: Chasing Shadows": pageId: 37152 steam: 296490 templates: - - '{{Game data/config|Windows|{{p|APPDATA}}\GCCS\Local Store\prefs.dat}}' - - '{{Game data/saves|Windows|{{p|APPDATA}}\GCCS\Local Store\}}' -'GemCraft: Frostborn Wrath': + - "{{Game data/config|Windows|{{p|APPDATA}}\\GCCS\\Local Store\\prefs.dat}}" + - "{{Game data/saves|Windows|{{p|APPDATA}}\\GCCS\\Local Store\\}}" +"GemCraft: Frostborn Wrath": gog: 1188933438 pageId: 142069 steam: 1106530 templates: - - '{{Game data/saves|Windows|{{p|userProfile}}\Documents\GCFW-backup1\saveslot*.dat}}' + - "{{Game data/saves|Windows|{{p|userProfile}}\\Documents\\GCFW-backup1\\saveslot*.dat}}" GemWars: pageId: 54321 steam: 556830 GemWorld: pageId: 74758 templates: - - '{{Game data/saves|DOS|{{p|game}}\SAVEGAME.DAT}}' + - "{{Game data/saves|DOS|{{p|game}}\\SAVEGAME.DAT}}" Gemini: pageId: 165461 steam: 1417720 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Gemini\Save.ini}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Gemini\Save.ini}}' + - "{{Game data/config|Windows|{{p|appdata}}\\Gemini\\Save.ini}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Gemini\\Save.ini}}" Gemini Lost: pageId: 41132 steam: 37390 @@ -67725,22 +65877,22 @@ Gemini Rue: pageId: 1795 steam: 80310 templates: - - '{{Game data/config|Windows|{{P|userprofile}}\Saved Games\Gemini Rue\acsetup.cfg}}' - - '{{Game data/config|OS X|{{P|game}}/acsetup.cfg}}' - - '{{Game data/config|Linux|{{P|game}}/acsetup.cfg}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\Saved Games\Gemini Rue\}}' - - '{{Game data/saves|Steam|{{P|game}}\Saves\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Gemini Rue/}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/Gemini Rue/}}' + - "{{Game data/config|Windows|{{P|userprofile}}\\Saved Games\\Gemini Rue\\acsetup.cfg}}" + - "{{Game data/config|OS X|{{P|game}}/acsetup.cfg}}" + - "{{Game data/config|Linux|{{P|game}}/acsetup.cfg}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Saved Games\\Gemini Rue\\}}" + - "{{Game data/saves|Steam|{{P|game}}\\Saves\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Gemini Rue/}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/Gemini Rue/}}" Gemini Wars: pageId: 40687 steam: 216130 -'Gemini: Heroes Reborn': +"Gemini: Heroes Reborn": pageId: 44932 steam: 324650 templates: - - '{{Game data/config|Windows|{{p|game}}\TravelerGame\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{p|game}}\TravelerGame\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{p|game}}\\TravelerGame\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\TravelerGame\\Saved\\SaveGames\\}}" GeminiArms: pageId: 130414 steam: 981450 @@ -67750,7 +65902,7 @@ Gems: Gems Kingdom: pageId: 121637 steam: 972620 -'Gems of Magic: Lost Family': +"Gems of Magic: Lost Family": pageId: 132262 steam: 970030 Gems of War: @@ -67777,21 +65929,21 @@ Gene: Gene Rain: pageId: 100434 steam: 781150 -'Gene Rain: Wind Tower': +"Gene Rain: Wind Tower": pageId: 149099 renamedFrom: - - 'Gene Rain:Wind Tower' + - "Gene Rain:Wind Tower" steam: 1147980 Gene Troopers: pageId: 31696 templates: - - '{{Game data/config|Windows|{{p|game}}\controls.cfg|{{p|game}}\config.def}}' - - '{{Game data/saves|Windows|{{p|game}}\saved_games}}' + - "{{Game data/config|Windows|{{p|game}}\\controls.cfg|{{p|game}}\\config.def}}" + - "{{Game data/saves|Windows|{{p|game}}\\saved_games}}" GeneRally: pageId: 183718 templates: - - '{{Game data/config|Windows|{{p|game}}\options.set}}' - - '{{Game data/saves|Windows|{{p|game}}\saves\*.gam}}' + - "{{Game data/config|Windows|{{p|game}}\\options.set}}" + - "{{Game data/saves|Windows|{{p|game}}\\saves\\*.gam}}" Geneforge: gog: 1207662923 pageId: 10284 @@ -67800,45 +65952,43 @@ Geneforge: - Geneforge 1 steam: 200960 templates: - - '{{Game data/config|Windows|{{p|USERPROFILE\Documents}}\Spiderweb Software\Geneforge Saved Games\GFPrefs.dat}}' - - '{{Game data/saves|Windows|{{p|USERPROFILE\Documents}}\Spiderweb Software\Geneforge Saved Games\Save*\}}' + - "{{Game data/config|Windows|{{p|USERPROFILE\\Documents}}\\Spiderweb Software\\Geneforge Saved Games\\GFPrefs.dat}}" + - "{{Game data/saves|Windows|{{p|USERPROFILE\\Documents}}\\Spiderweb Software\\Geneforge Saved Games\\Save*\\}}" Geneforge 1 - Mutagen: gog: 1904419041 pageId: 166803 steam: 1424710 templates: - - >- - {{Game data/config|Windows|{{P|userprofile\Documents}}\Spiderweb Software\Geneforge Mutagen Saved - Games\GeneforgeSettings.dat}} - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\Spiderweb Software\Geneforge Mutagen Saved Games\Save*\}}' + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\Spiderweb Software\\Geneforge Mutagen Saved Games\\GeneforgeSettings.dat}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\Spiderweb Software\\Geneforge Mutagen Saved Games\\Save*\\}}" Geneforge 2: gog: 1207662933 pageId: 10287 steam: 200980 templates: - - '{{Game data/config|Windows|{{p|USERPROFILE\Documents}}\Spiderweb Software\Geneforge 2 Saved Games\GF2Prefs.dat}}' - - '{{Game data/saves|Windows|{{p|USERPROFILE\Documents}}\Spiderweb Software\Geneforge 2 Saved Games\Save*\}}' + - "{{Game data/config|Windows|{{p|USERPROFILE\\Documents}}\\Spiderweb Software\\Geneforge 2 Saved Games\\GF2Prefs.dat}}" + - "{{Game data/saves|Windows|{{p|USERPROFILE\\Documents}}\\Spiderweb Software\\Geneforge 2 Saved Games\\Save*\\}}" Geneforge 3: gog: 1207662953 pageId: 10289 steam: 200990 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Spiderweb Software\Geneforge 3 Saved Games\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Spiderweb Software\Geneforge 3 Saved Games\}}' -'Geneforge 4: Rebellion': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Spiderweb Software\\Geneforge 3 Saved Games\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Spiderweb Software\\Geneforge 3 Saved Games\\}}" +"Geneforge 4: Rebellion": gog: 1207662963 pageId: 10291 steam: 201000 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\Geneforge 4 Saved Games\Geneforge4Settings.dat}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\Geneforge 4 Saved Games\Save*\}}' -'Geneforge 5: Overthrow': + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\Geneforge 4 Saved Games\\Geneforge4Settings.dat}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\Geneforge 4 Saved Games\\Save*\\}}" +"Geneforge 5: Overthrow": gog: 1207662973 pageId: 10294 steam: 201010 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Spiderweb Software\Geneforge 5 Saved Games\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Spiderweb Software\Geneforge 5 Saved Games\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Spiderweb Software\\Geneforge 5 Saved Games\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Spiderweb Software\\Geneforge 5 Saved Games\\}}" General Coco: pageId: 149368 steam: 1149480 @@ -67858,10 +66008,8 @@ Generation Zero: pageId: 97427 steam: 704270 templates: - - >- - {{Game data/config|Windows|{{P|userprofile\Documents}}\Avalanche - Studios\GenerationZero\Saves\settings\{{P|uid}}\}} - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\Avalanche Studios\GenerationZero\Saves\{{P|uid}}\}}' + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\Avalanche Studios\\GenerationZero\\Saves\\settings\\{{P|uid}}\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\Avalanche Studios\\GenerationZero\\Saves\\{{P|uid}}\\}}" Generic Jumper: pageId: 107914 steam: 853000 @@ -67872,40 +66020,36 @@ Geneshift: pageId: 56818 steam: 308600 templates: - - '{{Game data/config|Windows|{{P|game}}\data\config.ini}}' -'Genesia Legacy: Ultimate Domain': + - "{{Game data/config|Windows|{{P|game}}\\data\\config.ini}}" +"Genesia Legacy: Ultimate Domain": pageId: 61764 steam: 591930 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Thomas Zighem\}}' + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Thomas Zighem\\}}" Genesis Alpha One: gog: 1541701876 pageId: 82438 steam: 712190 templates: - - '{{Game data/config|GOG.com|{{P|localappdata}}\Genesis_GOG\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/config|Steam|{{P|localappdata}}\Genesis\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Epic Games Launcher|{{P|localappdata}}\Genesis_EGS\Saved\SaveGames\}}' - - '{{Game data/saves|GOG.com|{{P|localappdata}}\Genesis_GOG\Saved\SaveGames\}}' - - '{{Game data/saves|Steam|{{P|localappdata}}\Genesis\Saved\SaveGames\}}' + - "{{Game data/config|GOG.com|{{P|localappdata}}\\Genesis_GOG\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/config|Steam|{{P|localappdata}}\\Genesis\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Epic Games Launcher|{{P|localappdata}}\\Genesis_EGS\\Saved\\SaveGames\\}}" + - "{{Game data/saves|GOG.com|{{P|localappdata}}\\Genesis_GOG\\Saved\\SaveGames\\}}" + - "{{Game data/saves|Steam|{{P|localappdata}}\\Genesis\\Saved\\SaveGames\\}}" Genesis Noir: gog: 1465057116 pageId: 92411 steam: 735290 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\GenesisNoir\Saved\Config\WindowsNoEditor\}}' - - >- - {{Game data/config|Microsoft - Store|{{P|localappdata}}\Packages\SurpriseAttackPtyLtd.GenesisNoirforWindows_8k24hnfn3vvj0\LocalCache\Local\GenesisNoir\Saved\Config\WindowsNoEditor\}} - - '{{Game data/saves|Windows|{{P|localappdata}}\GenesisNoir\Saved\SaveGames\}}' - - >- - {{Game data/saves|Microsoft - Store|{{P|localappdata}}\Packages\SurpriseAttackPtyLtd.GenesisNoirforWindows_8k24hnfn3vvj0\LocalCache\Local\GenesisNoir\Saved\SaveGames\}} - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Epic/GenesisNoir/Saved/SaveGames/}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\GenesisNoir\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/config|Microsoft Store|{{P|localappdata}}\\Packages\\SurpriseAttackPtyLtd.GenesisNoirforWindows_8k24hnfn3vvj0\\LocalCache\\Local\\GenesisNoir\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\GenesisNoir\\Saved\\SaveGames\\}}" + - "{{Game data/saves|Microsoft Store|{{P|localappdata}}\\Packages\\SurpriseAttackPtyLtd.GenesisNoirforWindows_8k24hnfn3vvj0\\LocalCache\\Local\\GenesisNoir\\Saved\\SaveGames\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Epic/GenesisNoir/Saved/SaveGames/}}" Genesis Online: pageId: 45672 steam: 409510 -'Genesis Rising: The Universal Crusade': +"Genesis Rising: The Universal Crusade": pageId: 51097 steam: 3230 Genesis of Drones: @@ -67923,7 +66067,7 @@ Geneticognito: Genghis Khan: pageId: 56968 steam: 521650 -'Genghis Khan II: Clan of the Gray Wolf': +"Genghis Khan II: Clan of the Gray Wolf": pageId: 64458 steam: 628160 Genie: @@ -67933,8 +66077,8 @@ Genital Jousting: pageId: 53542 steam: 469820 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\Free Lives\Genital Jousting\Config.butthole}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Free Lives\Genital Jousting\Profile.penis}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Free Lives\\Genital Jousting\\Config.butthole}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Free Lives\\Genital Jousting\\Profile.penis}}" Genius Calculator: pageId: 89504 steam: 812860 @@ -67956,18 +66100,18 @@ Geno The Fallen King: Genocide: pageId: 158319 templates: - - '{{Game data/config|Windows|{{P|game}}\config.cfg}}' - - '{{Game data/saves|Windows|{{P|game}}}}' -'Genocide: Remixed Version': + - "{{Game data/config|Windows|{{P|game}}\\config.cfg}}" + - "{{Game data/saves|Windows|{{P|game}}}}" +"Genocide: Remixed Version": pageId: 158326 templates: - - '{{Game data/config|Windows|{{P|game}}\Baseq\config.cfg}}' - - '{{Game data/saves|Windows|{{P|game}}\Baseq\save\}}' + - "{{Game data/config|Windows|{{P|game}}\\Baseq\\config.cfg}}" + - "{{Game data/saves|Windows|{{P|game}}\\Baseq\\save\\}}" Genshin Impact: pageId: 163267 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\SOFTWARE\miHoYo\Genshin Impact}}' - - '{{Game data/saves|Windows|{{P|hkcu}}\SOFTWARE\miHoYo\Genshin Impact}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\SOFTWARE\\miHoYo\\Genshin Impact}}" + - "{{Game data/saves|Windows|{{P|hkcu}}\\SOFTWARE\\miHoYo\\Genshin Impact}}" Genso Suikoden: pageId: 170447 Gensokyo Defenders / 幻想郷ディフェンダーズ / 幻想鄉守護者: @@ -67977,8 +66121,8 @@ Gensokyo Night Festival: pageId: 144530 steam: 1122050 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\sKagura\Saved\Config\WindowsNoEditor}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\sKagura\Saved\SaveGames}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\sKagura\\Saved\\Config\\WindowsNoEditor}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\sKagura\\Saved\\SaveGames}}" Gensokyo Rolling Force: pageId: 100454 steam: 877590 @@ -67988,14 +66132,14 @@ GentleMoon 2: Gentlemen!: pageId: 40532 steam: 253570 -Gentlemen's Club: +"Gentlemen's Club": pageId: 178965 steam: 1717170 Geo: pageId: 55954 steam: 513480 templates: - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\GEO\}}' + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\GEO\\}}" Geo-Fall: pageId: 42111 steam: 496070 @@ -68015,9 +66159,9 @@ Geocore: pageId: 47021 steam: 355190 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\AnarchyInteractive\Geocore}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Preferences/unity.AnarchyInteractive.Geocore.plist}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/AnarchyInteractive/Geocore/PlayerPrefs}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\AnarchyInteractive\\Geocore}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Preferences/unity.AnarchyInteractive.Geocore.plist}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/AnarchyInteractive/Geocore/PlayerPrefs}}" Geograficus: pageId: 157770 Geography Quiz: @@ -68036,15 +66180,15 @@ Geometry Dash: pageId: 25652 steam: 322170 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\GeometryDash\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\GeometryDash\}}' -'Geometry Defense: Infinite': + - "{{Game data/config|Windows|{{p|localappdata}}\\GeometryDash\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\GeometryDash\\}}" +"Geometry Defense: Infinite": pageId: 98700 steam: 881520 Geometry Hero: pageId: 151281 steam: 1177080 -Geometry May. I swear it's a nice free game: +"Geometry May. I swear it's a nice free game": pageId: 132512 steam: 1057430 Geometry Runner Online: @@ -68053,25 +66197,25 @@ Geometry Runner Online: Geometry Rush: pageId: 94735 steam: 861710 -'Geometry Wars 3: Dimensions Evolved': +"Geometry Wars 3: Dimensions Evolved": pageId: 21084 steam: 310790 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\GeometryWars3Dimensions\Settings}}' - - '{{Game data/saves|Steam|{{P|Steam}}/userdata/{{P|uid}}/310790/remote/}}' -'Geometry Wars: Retro Evolved': + - "{{Game data/config|Windows|{{P|localappdata}}\\GeometryWars3Dimensions\\Settings}}" + - "{{Game data/saves|Steam|{{P|Steam}}/userdata/{{P|uid}}/310790/remote/}}" +"Geometry Wars: Retro Evolved": pageId: 12400 steam: 8400 templates: - - '{{Game data/config|Windows|{{P|userprofile}}\AppData\Local\Bizarre Creations\Geometry Wars Retro Evolved\}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\Local\Bizarre Creations\Geometry Wars Retro Evolved\}}' + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\Local\\Bizarre Creations\\Geometry Wars Retro Evolved\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\Local\\Bizarre Creations\\Geometry Wars Retro Evolved\\}}" Geometry World: pageId: 68703 steam: 685120 GeometryPuzzler: pageId: 72863 steam: 719550 -George's Memories EP.1: +"George's Memories EP.1": pageId: 103137 steam: 894050 Georifters: @@ -68081,16 +66225,14 @@ Geostorm: pageId: 74137 steam: 688400 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Sticky Studios\Geostorm\}}' - - >- - {{Game data/saves|Windows|{{P|steam}}\userdata\{{P|uid}}\688400\remote\|{{P|hkcu}}\Software\Sticky - Studios\Geostorm\}} -'Gerda: A Flame in Winter': + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Sticky Studios\\Geostorm\\}}" + - "{{Game data/saves|Windows|{{P|steam}}\\userdata\\{{P|uid}}\\688400\\remote\\|{{P|hkcu}}\\Software\\Sticky Studios\\Geostorm\\}}" +"Gerda: A Flame in Winter": pageId: 182502 steam: 1771360 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\PortaPlay\Gerda\}}' - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\PortaPlay\Gerda\Saves\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\PortaPlay\\Gerda\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\PortaPlay\\Gerda\\Saves\\}}" Gericonia 2: pageId: 156623 steam: 1140400 @@ -68103,8 +66245,8 @@ German Fortress 3D: German Truck Simulator: pageId: 26827 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\German Truck Simulator\}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\German Truck Simulator\save\}}' + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\German Truck Simulator\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\German Truck Simulator\\save\\}}" Germination: pageId: 90320 steam: 428490 @@ -68114,13 +66256,13 @@ Gerty: steamSide: - 944090 templates: - - '{{Game data/config|Linux|{{p|xdgconfighome}}/unity3d/Spawn Point OSK/Gerty/}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Spawn Point OSK\Gerty\}}' - - '{{Game data/saves|Linux|{{p|xdgconfighome}}/unity3d/Spawn Point OSK/Gerty/}}' -'Gerty: Robots in Love': + - "{{Game data/config|Linux|{{p|xdgconfighome}}/unity3d/Spawn Point OSK/Gerty/}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Spawn Point OSK\\Gerty\\}}" + - "{{Game data/saves|Linux|{{p|xdgconfighome}}/unity3d/Spawn Point OSK/Gerty/}}" +"Gerty: Robots in Love": pageId: 50942 steam: 516360 -'Gestalt: Steam & Cinder': +"Gestalt: Steam & Cinder": gog: 1187861565 pageId: 165421 steam: 1231990 @@ -68137,16 +66279,16 @@ Get Even: pageId: 23027 steam: 299950 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\My Games\GetEven\StormGame\Config\}}' - - '{{Game data/saves|Steam|{{p|Steam}}\userdata\{{p|uid}}\299950\remote\}}' + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\My Games\\GetEven\\StormGame\\Config\\}}" + - "{{Game data/saves|Steam|{{p|Steam}}\\userdata\\{{p|uid}}\\299950\\remote\\}}" Get Me Outta Here - Deluxe/Remastered Edition: pageId: 150463 steam: 1177960 Get Medieval: pageId: 100804 templates: - - '{{Game data/config|Windows|{{p|game}}\GAME\MEDIEVAL.USR}}' - - '{{Game data/saves|Windows|{{p|game}}\GAME\MEDIEVAL.SAV}}' + - "{{Game data/config|Windows|{{p|game}}\\GAME\\MEDIEVAL.USR}}" + - "{{Game data/saves|Windows|{{p|game}}\\GAME\\MEDIEVAL.SAV}}" Get Off My Lawn!: pageId: 49355 steam: 260410 @@ -68162,13 +66304,13 @@ Get Rich or Die Gaming: Get Wrecked: pageId: 88896 steam: 805850 -'Get in the Car, Loser!': +"Get in the Car, Loser!": pageId: 114284 renamedFrom: - - 'Get In The Car, Loser!' + - "Get In The Car, Loser!" steam: 938860 templates: - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Love Conquers All Games\Get in the Car Loser\saves}}' + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Love Conquers All Games\\Get in the Car Loser\\saves}}" Get the Banana: pageId: 156438 steam: 1216480 @@ -68178,19 +66320,17 @@ Get the Gems: Get to Amkonius: pageId: 73523 steam: 720160 -'Get to Work, Succubus-Chan!': +"Get to Work, Succubus-Chan!": pageId: 173507 steam: 1104340 templates: - - >- - {{Game data/saves|Windows|{{p|game}}\Get To Work, Succubus-Chan!_Data\SaveData|{{p|game}}\Get To Work, - Succubus-Chan!_Data\SaveData_S}} + - "{{Game data/saves|Windows|{{p|game}}\\Get To Work, Succubus-Chan!_Data\\SaveData|{{p|game}}\\Get To Work, Succubus-Chan!_Data\\SaveData_S}}" Get to a Gun: pageId: 112536 renamedFrom: - Get To A Gun steam: 935320 -Get'em Gary: +"Get'em Gary": pageId: 59181 steam: 604900 GetMeBro!: @@ -68199,32 +66339,32 @@ GetMeBro!: Getaway Island: pageId: 60458 steam: 605190 -'GetsuFumaDen: Undying Moon': +"GetsuFumaDen: Undying Moon": pageId: 168110 steam: 1323470 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\GetsuFumaDen\Saved\Config\WindowsNoEditor}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\GetsuFumaDen\Saved\SaveGames}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\GetsuFumaDen\\Saved\\Config\\WindowsNoEditor}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\GetsuFumaDen\\Saved\\SaveGames}}" Getsuei Gakuen -kou-: pageId: 45767 steam: 411390 templates: - - '{{Game data/config|Windows|{{p|game}}\data\saveload\}}' - - '{{Game data/saves|Windows|{{p|game}}\data\saveload\}}' + - "{{Game data/config|Windows|{{p|game}}\\data\\saveload\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\data\\saveload\\}}" Getting Over It with Bennett Foddy: pageId: 73031 steam: 240720 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\SOFTWARE\Bennett Foddy\Getting Over It\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Preferences/net.Foddy.GettingOverIt.plist}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/.config/unity3d/Bennett Foddy/Getting Over It}}' - - '{{Game data/saves|Windows|{{P|hkcu}}\SOFTWARE\Bennett Foddy\Getting Over It\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Preferences/net.Foddy.GettingOverIt.plist}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/.config/unity3d/Bennett Foddy/Getting Over It}}' -'Gettysburg: Armored Warfare': + - "{{Game data/config|Windows|{{P|hkcu}}\\SOFTWARE\\Bennett Foddy\\Getting Over It\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Preferences/net.Foddy.GettingOverIt.plist}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/.config/unity3d/Bennett Foddy/Getting Over It}}" + - "{{Game data/saves|Windows|{{P|hkcu}}\\SOFTWARE\\Bennett Foddy\\Getting Over It\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Preferences/net.Foddy.GettingOverIt.plist}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/.config/unity3d/Bennett Foddy/Getting Over It}}" +"Gettysburg: Armored Warfare": pageId: 1951 steam: 200630 -'Gettysburg: The Tide Turns': +"Gettysburg: The Tide Turns": pageId: 65419 steam: 602510 Gevaudan: @@ -68234,12 +66374,12 @@ Gex: gog: 1207666113 pageId: 18420 templates: - - '{{Game data/config|Windows|{{p|hklm}}\SOFTWARE\WOW6432Node\Microsoft\Games\GEX}}' -'Gex: Enter the Gecko': + - "{{Game data/config|Windows|{{p|hklm}}\\SOFTWARE\\WOW6432Node\\Microsoft\\Games\\GEX}}" +"Gex: Enter the Gecko": pageId: 2300 templates: - - '{{Game data/config|Windows|{{p|hklm}}\SOFTWARE\{{p|wow64}}\Crystal Dynamics\Gex2}}' -'Ghajini: The Game': + - "{{Game data/config|Windows|{{p|hklm}}\\SOFTWARE\\{{p|wow64}}\\Crystal Dynamics\\Gex2}}" +"Ghajini: The Game": pageId: 154960 Ghetto Conspiracy: pageId: 153491 @@ -68252,10 +66392,10 @@ Ghost 1.0: pageId: 34475 steam: 463270 templates: - - '{{Game data/config|Windows|{{P|game}}\config_sp.cfg}}' - - '{{Game data/config|Steam|{{p|Steam}}\userdata\{{p|uid}}\463270\remote\}}' - - '{{Game data/saves|Windows|{{P|game}}\save\}}' - - '{{Game data/saves|Steam|{{p|Steam}}\userdata\{{p|uid}}\463270\remote\save\}}' + - "{{Game data/config|Windows|{{P|game}}\\config_sp.cfg}}" + - "{{Game data/config|Steam|{{p|Steam}}\\userdata\\{{p|uid}}\\463270\\remote\\}}" + - "{{Game data/saves|Windows|{{P|game}}\\save\\}}" + - "{{Game data/saves|Steam|{{p|Steam}}\\userdata\\{{p|uid}}\\463270\\remote\\save\\}}" Ghost Blade HD: pageId: 58800 steam: 577910 @@ -68268,13 +66408,13 @@ Ghost Cleaner: Ghost Dimension: pageId: 150804 steam: 1178000 -'Ghost Encounters: Deadwood': +"Ghost Encounters: Deadwood": pageId: 48473 steam: 353070 -'Ghost Files 2: Memory of a Crime': +"Ghost Files 2: Memory of a Crime": pageId: 153264 steam: 1159500 -'Ghost Files: The Face of Guilt': +"Ghost Files: The Face of Guilt": pageId: 62314 steam: 599560 Ghost Grab 3000: @@ -68299,8 +66439,8 @@ Ghost Master: pageId: 3162 steam: 6200 templates: - - '{{Game data/config|Windows|{{p|game}}\GhostData\SpDrv.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\GhostData\SaveGames\}}' + - "{{Game data/config|Windows|{{p|game}}\\GhostData\\SpDrv.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\GhostData\\SaveGames\\}}" Ghost Mountain Roller Coaster: pageId: 93060 steam: 849690 @@ -68313,7 +66453,7 @@ Ghost Pirates of Vooju Island: pageId: 48877 steam: 344030 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Ghost Pirates}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Ghost Pirates}}" Ghost Platoon: pageId: 81669 steam: 789880 @@ -68325,14 +66465,14 @@ Ghost Song: pageId: 39765 steam: 347800 templates: - - '{{Game data/saves|Windows|{C:\Users\username\AppData\LocalLow\Old Moon\GhostSong}}' + - "{{Game data/saves|Windows|{C:\\Users\\username\\AppData\\LocalLow\\Old Moon\\GhostSong}}" Ghost Stories: pageId: 138717 steam: 1078520 Ghost Sweeper: pageId: 42151 steam: 496990 -Ghost Town Mine Ride & Shootin' Gallery: +"Ghost Town Mine Ride & Shootin' Gallery": pageId: 51673 steam: 459010 Ghost Train VR: @@ -68341,34 +66481,34 @@ Ghost Train VR: Ghost Trap: pageId: 179908 steam: 2006090 -'Ghost Trick: Phantom Detective': +"Ghost Trick: Phantom Detective": pageId: 185062 steam: 1967430 templates: - - '{{Game data/config|Windows|{{P|game}}\config.ini}}' - - '{{Game data/saves|Steam|{{P|steam}}\userdata\{{P|uid}}\1967430\remote\win64_save\}}' + - "{{Game data/config|Windows|{{P|game}}\\config.ini}}" + - "{{Game data/saves|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\1967430\\remote\\win64_save\\}}" Ghost in the Machine: pageId: 48142 steam: 363220 -'Ghost in the Shell: Stand Alone Complex - First Assault Online': +"Ghost in the Shell: Stand Alone Complex - First Assault Online": pageId: 30228 steam: 369200 templates: - - '{{Game data/config|Windows|{{P|game}}\Data\}}' + - "{{Game data/config|Windows|{{P|game}}\\Data\\}}" Ghost of a Tale: gog: 1875167847 pageId: 35704 steam: 417290 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\SeithCG\GhostofaTale}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Ghost of a Tale\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\SeithCG\\GhostofaTale}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Ghost of a Tale\\}}" Ghost on the Shore: gog: 1679108862 pageId: 157430 steam: 1211930 templates: - - '{{Game data/config|Windows|{{p|userprofile\appdata\locallow}}\like Charlie\Ghost On The Shore}}' - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\like Charlie\Ghost On The Shore}}' + - "{{Game data/config|Windows|{{p|userprofile\\appdata\\locallow}}\\like Charlie\\Ghost On The Shore}}" + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\like Charlie\\Ghost On The Shore}}" GhostControl Inc.: pageId: 50129 steam: 280540 @@ -68383,30 +66523,30 @@ Ghostbusters: Ghostbusters (2016): pageId: 51002 steam: 425310 -'Ghostbusters VR: Now Hiring': +"Ghostbusters VR: Now Hiring": pageId: 100338 steam: 595000 -'Ghostbusters VR: Showdown': +"Ghostbusters VR: Showdown": pageId: 100342 steam: 862940 -'Ghostbusters: Sanctum of Slime': +"Ghostbusters: Sanctum of Slime": pageId: 13801 steam: 9990 -'Ghostbusters: Spirits Unleashed': +"Ghostbusters: Spirits Unleashed": pageId: 190613 steam: 2383990 -'Ghostbusters: The Video Game': +"Ghostbusters: The Video Game": pageId: 13798 steam: 9870 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\GHOSTBUSTERS (tm)\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\GHOSTBUSTERS (tm)\}}' -'Ghostbusters: The Video Game Remastered': + - "{{Game data/config|Windows|{{p|localappdata}}\\GHOSTBUSTERS (tm)\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\GHOSTBUSTERS (tm)\\}}" +"Ghostbusters: The Video Game Remastered": pageId: 137763 steam: 1449280 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\GHOSTBUSTERS\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\GHOSTBUSTERS\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\GHOSTBUSTERS\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\GHOSTBUSTERS\\}}" Ghostdream: pageId: 52095 steam: 545800 @@ -68426,32 +66566,32 @@ Ghostlore: pageId: 187726 steam: 1783280 templates: - - '{{Game data/config|Windows|{{p|userprofile\appdata\locallow}}\ATATGames\Ghostlore\userConfig\*.json}}' - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\ATATGames\Ghostlore\saves}}' + - "{{Game data/config|Windows|{{p|userprofile\\appdata\\locallow}}\\ATATGames\\Ghostlore\\userConfig\\*.json}}" + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\ATATGames\\Ghostlore\\saves}}" Ghostly Horizon: pageId: 72417 steam: 700590 Ghostly Matter: pageId: 88212 steam: 800240 -'Ghostman: The Council Calamity': +"Ghostman: The Council Calamity": pageId: 102919 steam: 894120 Ghostory: pageId: 72965 steam: 568460 templates: - - '{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/RigidCore Games/Ghostory/prefs}}' - - '{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/RigidCore Games/Ghostory/{{P|uid}}/profile.sav}}' + - "{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/RigidCore Games/Ghostory/prefs}}" + - "{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/RigidCore Games/Ghostory/{{P|uid}}/profile.sav}}" Ghostrunner: gog: 1957528513 gogSide: - - 2072875151 - - 1797774287 - - 1732470242 - - 1596358146 - - 1519337965 - 1443435189 + - 1519337965 + - 1596358146 + - 1732470242 + - 1797774287 + - 2072875151 pageId: 143628 steam: 1139900 steamSide: @@ -68463,8 +66603,8 @@ Ghostrunner: - 1760130 - 1760190 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Ghostrunner\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\Ghostrunner\Saved\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Ghostrunner\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Ghostrunner\\Saved\\}}" Ghostrunner 2: gog: 1825685277 gogSide: @@ -68474,16 +66614,16 @@ Ghostrunner 2: steamSide: - 2478370 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Ghostrunner2\Saved\SaveGames\}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\Ghostrunner2\Saved\SaveGames\{{P|uid}}\}}' -Ghosts 'n Goblins: + - "{{Game data/config|Windows|{{P|localappdata}}\\Ghostrunner2\\Saved\\SaveGames\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Ghostrunner2\\Saved\\SaveGames\\{{P|uid}}\\}}" +"Ghosts 'n Goblins": pageId: 167913 -Ghosts 'n Goblins Resurrection: +"Ghosts 'n Goblins Resurrection": pageId: 167912 steam: 1375400 templates: - - '{{Game data/config|Windows|{{P|game}}\config.ini}}' - - '{{Game data/saves|Windows|{{p|Steam}}\userdata\{{p|uid}}\1375400\remote\win64_save\}}' + - "{{Game data/config|Windows|{{P|game}}\\config.ini}}" + - "{{Game data/saves|Windows|{{p|Steam}}\\userdata\\{{p|uid}}\\1375400\\remote\\win64_save\\}}" Ghosts of Miami: pageId: 65736 steam: 677300 @@ -68491,51 +66631,41 @@ Ghostship Aftermath: pageId: 49883 steam: 280890 templates: - - '{{Game data/config|Windows|{{p|game}}\UDKGame\Config\UDKSystemSettings.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\Binaries\Win32\gsstorysav0.sav}}' + - "{{Game data/config|Windows|{{p|game}}\\UDKGame\\Config\\UDKSystemSettings.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\Binaries\\Win32\\gsstorysav0.sav}}" Ghostship Chronicles: pageId: 110322 steam: 925010 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Ghosthip3\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Ghosthip3\Saved\Savegames\}}' -'Ghostware: Arena of the Dead': + - "{{Game data/config|Windows|{{p|localappdata}}\\Ghosthip3\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Ghosthip3\\Saved\\Savegames\\}}" +"Ghostware: Arena of the Dead": pageId: 181692 steam: 1893370 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\DeadGaem\Saved\Config}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\DeadGaem\Saved\SaveGames}}' -'Ghostware: Trespasser': + - "{{Game data/config|Windows|{{p|localappdata}}\\DeadGaem\\Saved\\Config}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\DeadGaem\\Saved\\SaveGames}}" +"Ghostware: Trespasser": pageId: 181695 -'Ghostwire: Tokyo': +"Ghostwire: Tokyo": pageId: 161009 renamedFrom: - - 'GhostWire: Tokyo' + - "GhostWire: Tokyo" steam: 1475810 templates: - - >- - {{Game data/config|Epic Games Store|{{p|userprofile}}\Saved Games\TangoGameworks\GhostWire Tokyo - (EGS)\Saved\Config\WindowsNoEditor\}} - - >- - {{Game data/config|Microsoft Store|{{p|userprofile}}\Saved Games\TangoGameworks\GhostWire Tokyo - (Xbox)\Saved\Config\WinGDK\}} - - >- - {{Game data/config|Steam|{{p|userprofile}}\Saved Games\TangoGameworks\GhostWire Tokyo - (STEAM)\Saved\Config\WindowsNoEditor\}} - - >- - {{Game data/saves|Epic Games Store|{{p|userprofile}}\Saved Games\TangoGameworks\GhostWire Tokyo - (EGS)\Saved\SaveGames}} - - >- - {{Game data/saves|Microsoft - Store|{{p|localappdata}}\Packages\BethesdaSoftworks.ProjectSnowfall_3275kfvn8vcwc\SystemAppData\wgs\{{P|uid}}}} - - '{{Game data/saves|Steam|{{p|userprofile}}\Saved Games\TangoGameworks\GhostWire Tokyo (STEAM)\Saved\SaveGames}}' -'Ghostwire: Tokyo - Prelude': + - "{{Game data/config|Epic Games Store|{{p|userprofile}}\\Saved Games\\TangoGameworks\\GhostWire Tokyo (EGS)\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/config|Microsoft Store|{{p|userprofile}}\\Saved Games\\TangoGameworks\\GhostWire Tokyo (Xbox)\\Saved\\Config\\WinGDK\\}}" + - "{{Game data/config|Steam|{{p|userprofile}}\\Saved Games\\TangoGameworks\\GhostWire Tokyo (STEAM)\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Epic Games Store|{{p|userprofile}}\\Saved Games\\TangoGameworks\\GhostWire Tokyo (EGS)\\Saved\\SaveGames}}" + - "{{Game data/saves|Microsoft Store|{{p|localappdata}}\\Packages\\BethesdaSoftworks.ProjectSnowfall_3275kfvn8vcwc\\SystemAppData\\wgs\\{{P|uid}}}}" + - "{{Game data/saves|Steam|{{p|userprofile}}\\Saved Games\\TangoGameworks\\GhostWire Tokyo (STEAM)\\Saved\\SaveGames}}" +"Ghostwire: Tokyo - Prelude": pageId: 175667 steam: 1817250 Ghoul: pageId: 71774 steam: 709050 -'Ghoul Britannia: Land of Hope and Gorey': +"Ghoul Britannia: Land of Hope and Gorey": pageId: 132821 steam: 1055030 Ghoul Kid: @@ -68559,25 +66689,25 @@ Giana Sisters 2D: pageId: 45916 steam: 350770 templates: - - '{{Game data/saves|Windows|{{p|hkcu}}\SOFTWARE\Kritzelkratz 3000 mbH\Giana Sisters}}' -'Giana Sisters: Dream Runners': + - "{{Game data/saves|Windows|{{p|hkcu}}\\SOFTWARE\\Kritzelkratz 3000 mbH\\Giana Sisters}}" +"Giana Sisters: Dream Runners": pageId: 36404 steam: 352900 -'Giana Sisters: Twisted Dreams': +"Giana Sisters: Twisted Dreams": gog: 1207659123 pageId: 5514 steam: 223220 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Giana Sisters - Twisted Dreams\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Giana Sisters - Twisted Dreams\}}' -'Giana Sisters: Twisted Dreams - Rise of the Owlverlord': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Giana Sisters - Twisted Dreams\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Giana Sisters - Twisted Dreams\\}}" +"Giana Sisters: Twisted Dreams - Rise of the Owlverlord": gog: 1207659843 pageId: 12697 steam: 246960 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Giana Sisters - Rise of the Owlverlord\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Giana Sisters - Rise of the Owlverlord\}}' -Gianluca Vialli's European Manager: + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Giana Sisters - Rise of the Owlverlord\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Giana Sisters - Rise of the Owlverlord\\}}" +"Gianluca Vialli's European Manager": pageId: 155174 Giant Bear Rampage! - a Kaiju Bear Simulator: pageId: 138972 @@ -68585,7 +66715,7 @@ Giant Bear Rampage! - a Kaiju Bear Simulator: Giant Celebration: pageId: 123361 steam: 982120 -'Giant Cop: Justice Above All': +"Giant Cop: Justice Above All": pageId: 39430 steam: 451080 Giant Life: @@ -68595,18 +66725,18 @@ Giant Machines 2017: pageId: 39083 steam: 402750 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\CodeHorizon\GiantMachines2017\saves}}' + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\CodeHorizon\\GiantMachines2017\\saves}}" Giants Uprising: pageId: 145286 steam: 1109160 -'Giants: Citizen Kabuto': +"Giants: Citizen Kabuto": gog: 1207658650 pageId: 7290 steam: 557750 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\PlanetMoon\Giants\IDs\{{p|uid}}}}' - - '{{Game data/saves|Windows|{{p|game}}\savegame}}' -'Gibbon: Beyond the Trees': + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\PlanetMoon\\Giants\\IDs\\{{p|uid}}}}" + - "{{Game data/saves|Windows|{{p|game}}\\savegame}}" +"Gibbon: Beyond the Trees": pageId: 174914 steam: 1837330 Gibbous - A Cthulhu Adventure: @@ -68614,19 +66744,17 @@ Gibbous - A Cthulhu Adventure: pageId: 109722 steam: 914020 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\StuckInAttic\Gibbous - A Cthulhu Adventure\}}' - - '{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/StuckInAttic/Gibbous - A Cthulhu Adventure/prefs}}' - - >- - {{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\StuckInAttic\Gibbous - A Cthulhu - Adventure\Cthulhu_*.save}} - - '{{Game data/saves|OS X|{{p|userprofile}}\Library\application support\unity.StuckInAttic.Gibbous\Cthulhu_*.save}}' - - '{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/StuckInAttic/Gibbous - A Cthulhu Adventure/Cthulhu_*.save}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\StuckInAttic\\Gibbous - A Cthulhu Adventure\\}}" + - "{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/StuckInAttic/Gibbous - A Cthulhu Adventure/prefs}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\StuckInAttic\\Gibbous - A Cthulhu Adventure\\Cthulhu_*.save}}" + - "{{Game data/saves|OS X|{{p|userprofile}}\\Library\\application support\\unity.StuckInAttic.Gibbous\\Cthulhu_*.save}}" + - "{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/StuckInAttic/Gibbous - A Cthulhu Adventure/Cthulhu_*.save}}" Gift: pageId: 35760 templates: - - '{{Game data/config|Windows|{{p|game}}\TheGift.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\gift.sav}}' -'Gift of Life: Key of Solomon': + - "{{Game data/config|Windows|{{p|game}}\\TheGift.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\gift.sav}}" +"Gift of Life: Key of Solomon": pageId: 87423 steam: 795030 Gift of Parthax: @@ -68645,8 +66773,8 @@ Giga Wrecker: pageId: 36181 steam: 454410 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\GameFreak\GigaWrecker}}' - - '{{Game data/saves|Windows|{{p|game}}\Saves\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\GameFreak\\GigaWrecker}}" + - "{{Game data/saves|Windows|{{p|game}}\\Saves\\}}" GigaBash: pageId: 180514 steam: 1546400 @@ -68660,27 +66788,25 @@ Gigantic: pageId: 64294 steam: 327690 templates: - - '{{Game data/config|Steam|{{p|userprofile\Documents}}\Gigantic\RxGame\Config\}}' + - "{{Game data/config|Steam|{{p|userprofile\\Documents}}\\Gigantic\\RxGame\\Config\\}}" Gigantic Army: pageId: 15692 steam: 278930 templates: - - '{{Game data/config|Windows|{{p|game}}\Option\}}' - - '{{Game data/saves|Windows|{{p|game}}\Option\}}' -'Gigantosaurus: Dino Kart': + - "{{Game data/config|Windows|{{p|game}}\\Option\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\Option\\}}" +"Gigantosaurus: Dino Kart": pageId: 191293 -'Gigantosaurus: The Game': +"Gigantosaurus: The Game": pageId: 158920 steam: 1177020 templates: - - >- - {{Game - data/config|Windows|{{p|userprofile\documents}}\Gigantosaurus\Saved\Config\WindowsNoEditor\GameUserSettings.ini}} + - "{{Game data/config|Windows|{{p|userprofile\\documents}}\\Gigantosaurus\\Saved\\Config\\WindowsNoEditor\\GameUserSettings.ini}}" Gigapocalypse: gog: 2037253096 pageId: 173725 steam: 1543240 -Gil's Lucid Dreams: +"Gil's Lucid Dreams": pageId: 69739 steam: 556260 Gilbert Goodmate and the Mushroom of Phungoria: @@ -68707,7 +66833,7 @@ Gimmick! Special Edition: gog: 1553602216 pageId: 182744 renamedFrom: - - 'Monster Prom 3: Monster Roadtrip' + - "Monster Prom 3: Monster Roadtrip" steam: 2131800 Gin Rummy 3D Premium: pageId: 154324 @@ -68716,16 +66842,12 @@ Ginga Force: pageId: 173171 steam: 885910 templates: - - >- - {{Game - data/config|Windows|{{p|appdata}}\Qute\GingaForce\display_setting.ini|{{p|appdata}}\Qute\GingaForce\j4w_sav.bin}} - - >- - {{Game - data/saves|Windows|{{p|appdata}}\Qute\GingaForce\j4w_sav.bin|{{p|appdata}}\Qute\GingaForce\j4w_storysav_###.bin}} + - "{{Game data/config|Windows|{{p|appdata}}\\Qute\\GingaForce\\display_setting.ini|{{p|appdata}}\\Qute\\GingaForce\\j4w_sav.bin}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Qute\\GingaForce\\j4w_sav.bin|{{p|appdata}}\\Qute\\GingaForce\\j4w_storysav_###.bin}}" Ginga Kagekidan - 放課後くるーずっ!: pageId: 144220 steam: 1128200 -'Ginger: Beyond the Crystal': +"Ginger: Beyond the Crystal": pageId: 51977 steam: 409520 Gingerbread Story: @@ -68740,24 +66862,24 @@ Giraffe and Annika: - Giraffe & Annika / ジラフとアンニカ steam: 1122100 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Giraffe_and_Annika\Saved}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Giraffe_and_Annika\Saved\Config}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Giraffe_and_Annika\\Saved}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Giraffe_and_Annika\\Saved\\Config}}" Girl Amazon Survival: pageId: 36240 steam: 372750 Girl Blonde: pageId: 73479 steam: 726320 -'Girl Genius: Adventures In Castle Heterodyne': +"Girl Genius: Adventures In Castle Heterodyne": gog: 1732087400 pageId: 189516 steam: 1789370 steamSide: - 2427890 templates: - - '{{Game data/saves|Windows|{{p|localappdata}}\Rain\Girl Genius\Saves.json}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/.config/unity3d/Saves.json}}' - - '{{Game data/saves|Linux|{{p|osxhome}}/Library/Application Support/Rain/Girl Genius/Saves.json}}' + - "{{Game data/saves|Windows|{{p|localappdata}}\\Rain\\Girl Genius\\Saves.json}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/.config/unity3d/Saves.json}}" + - "{{Game data/saves|Linux|{{p|osxhome}}/Library/Application Support/Rain/Girl Genius/Saves.json}}" Girl Kill Zombies: pageId: 149533 steam: 1156050 @@ -68788,7 +66910,7 @@ Girlfriend Experience VR: Girlfriend Rescue: pageId: 38113 steam: 332400 -Girlfriend's Sister: +"Girlfriend's Sister": pageId: 76059 steam: 749330 Girls: @@ -68813,8 +66935,8 @@ Girls Like Robots: pageId: 38514 steam: 263460 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Popcannibal\Girls Like Robots\}}' - - '{{Game data/saves|Windows|{{P|steam}}\userdata\{{P|uid}}\263460\remote\MyFile.dat}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Popcannibal\\Girls Like Robots\\}}" + - "{{Game data/saves|Windows|{{P|steam}}\\userdata\\{{P|uid}}\\263460\\remote\\MyFile.dat}}" Girls VR: pageId: 98660 steam: 879610 @@ -68830,23 +66952,23 @@ Girls and Tests: Girls on the beach: pageId: 148697 steam: 1123790 -Girls' civilization: +"Girls' civilization": pageId: 124419 steam: 960740 Gish: pageId: 1660 steam: 9500 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Gish\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Gish/}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.gish/}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Gish\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Gish/}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.gish/}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Gish\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Gish/}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.gish/}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Gish\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Gish/}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.gish/}}" Git Gud or Get Rekt: pageId: 148709 steam: 1117810 -'Giten Megami Tensei: Tokyo Mokushiroku': +"Giten Megami Tensei: Tokyo Mokushiroku": pageId: 169708 Give It Up! Plus: pageId: 125974 @@ -68864,12 +66986,12 @@ Gizmo: pageId: 123458 steam: 979260 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\GIZMO_GAME\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\GIZMO_GAME\Saved\SaveGames\}}' -'Gizmos: Steampunk Nonograms': + - "{{Game data/config|Windows|{{P|localappdata}}\\GIZMO_GAME\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\GIZMO_GAME\\Saved\\SaveGames\\}}" +"Gizmos: Steampunk Nonograms": pageId: 155430 steam: 1207310 -Gjana's World: +"Gjana's World": pageId: 155306 steam: 1218300 GlaZ: @@ -68882,7 +67004,7 @@ Glacier: pageId: 88300 Glacier 2: pageId: 179445 -'Glacier 3: The Meltdown': +"Glacier 3: The Meltdown": pageId: 50715 steam: 267940 Glacier Blast: @@ -68896,7 +67018,7 @@ Glad Valakas Tower Defence: Glad Valakas Tower Defence 2: pageId: 128344 steam: 1025240 -'Glad Valakas: Cyberban': +"Glad Valakas: Cyberban": pageId: 132641 steam: 1043860 Gladiabots: @@ -68908,25 +67030,25 @@ Gladiator School: Gladiator Trainer: pageId: 50789 steam: 527990 -'Gladiator: Blades of Fury': +"Gladiator: Blades of Fury": pageId: 129710 steam: 1007490 -'Gladiator: Road to the Colosseum': +"Gladiator: Road to the Colosseum": pageId: 140887 steam: 1097690 -'Gladiator: Sword of Vengeance': +"Gladiator: Sword of Vengeance": pageId: 57097 steam: 577580 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\GladiatorSoV\}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\GladiatorSoV\Save\}}' -'Gladiators Online: Death Before Dishonor': + - "{{Game data/config|Windows|{{P|localappdata}}\\GladiatorSoV\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\GladiatorSoV\\Save\\}}" +"Gladiators Online: Death Before Dishonor": pageId: 45761 steam: 385880 Gladiators of the Arena: pageId: 88644 steam: 791740 -'Gladiators: Ludus Manager': +"Gladiators: Ludus Manager": pageId: 130123 steam: 1016020 Gladio: @@ -68938,7 +67060,7 @@ Gladius: Glaive: pageId: 42041 steam: 505680 -'Glaive: Brick Breaker': +"Glaive: Brick Breaker": pageId: 90566 steam: 822140 GlaiveZ: @@ -68948,25 +67070,23 @@ Glare: pageId: 15200 steam: 243140 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Phobic Studios\Glare\}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Phobic Studios/Glare/}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Phobic Studios/Glare/}}' - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{P|uid}}/243140/}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Phobic Studios\\Glare\\}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Phobic Studios/Glare/}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Phobic Studios/Glare/}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{P|uid}}/243140/}}" Glare1more: pageId: 146002 steam: 834150 -'Glass City: The Dust': +"Glass City: The Dust": pageId: 77244 steam: 575040 Glass Masquerade: pageId: 53429 steam: 511470 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Onyx Lute\Glass Masquerade: Origins\|{{P|game}}\settings.txt}}' - - >- - {{Game data/saves|Windows|{{p|game}}\Saves|{{p|userprofile\appdata\locallow}}\Onyx Lute\Glass Masquerade_ - Origins\Saves}} -'Glass Masquerade 2: Illusions': + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Onyx Lute\\Glass Masquerade: Origins\\|{{P|game}}\\settings.txt}}" + - "{{Game data/saves|Windows|{{p|game}}\\Saves|{{p|userprofile\\appdata\\locallow}}\\Onyx Lute\\Glass Masquerade_ Origins\\Saves}}" +"Glass Masquerade 2: Illusions": pageId: 114098 steam: 935880 steamSide: @@ -68975,14 +67095,14 @@ Glass Masquerade: - 1544950 - 2198490 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Onyx Lute\Glass Masquerade 2: Illusions|{{P|game}}\settings.txt}}' - - '{{Game data/saves|Windows|{{P|game}}\Saves\}}' -'Glass Masquerade 3: Honeylines': + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Onyx Lute\\Glass Masquerade 2: Illusions|{{P|game}}\\settings.txt}}" + - "{{Game data/saves|Windows|{{P|game}}\\Saves\\}}" +"Glass Masquerade 3: Honeylines": pageId: 187022 steam: 1536980 templates: - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\Onyx Lute\Glass Masquerade 3\ID_number\}}' -'Glass Painting: Winter Art': + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\Onyx Lute\\Glass Masquerade 3\\ID_number\\}}" +"Glass Painting: Winter Art": pageId: 122468 steam: 968980 Glass Wing: @@ -69004,8 +67124,8 @@ Gleaner Heights: pageId: 82137 steam: 786580 templates: - - '{{Game data/saves|Windows|{{p|localappdata}}\Gleaner_Heights}}' -Glick's Cat Simulator: + - "{{Game data/saves|Windows|{{p|localappdata}}\\Gleaner_Heights}}" +"Glick's Cat Simulator": pageId: 77391 steam: 723360 Glider: @@ -69013,8 +67133,8 @@ Glider: Glider 4.0: pageId: 162586 templates: - - '{{Game data/saves|Windows|{{Path|Game}}
{{Path|Game}}\Combo.ghs}}' - - '{{Game data/saves|Mac OS|{{Path|Game}}}}' + - "{{Game data/saves|Windows|{{Path|Game}}
{{Path|Game}}\\Combo.ghs}}" + - "{{Game data/saves|Mac OS|{{Path|Game}}}}" Glider Classic: pageId: 162532 Glider Island: @@ -69043,7 +67163,7 @@ Glitch Puzzle: Glitch Simulator 2018: pageId: 69004 steam: 702090 -Glitch's Trip: +"Glitch's Trip": pageId: 74706 steam: 610250 Glitchangels: @@ -69055,9 +67175,9 @@ Glitchball: Glitchbuster: pageId: 65126 steam: 661360 -'Glitchhikers: First Drive': +"Glitchhikers: First Drive": pageId: 173256 -'Glitchhikers: The Spaces Between': +"Glitchhikers: The Spaces Between": gog: 2129197835 pageId: 173254 steam: 1449230 @@ -69072,16 +67192,16 @@ Glitchspace: pageId: 38490 steam: 290060 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Space Budgie\Glitchspace\}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Space Budgie\Glitchspace\}}' + - "{{Game data/config|Windows|{{p|appdata}}\\Space Budgie\\Glitchspace\\}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Space Budgie\\Glitchspace\\}}" Glittermitten Grove: pageId: 54939 steam: 536890 templates: - - '{{Game data/config|Windows|{{p|HKCU}}\Software\Mostly Tigerproof\Glittermitten Grove\}}' - - '{{Game data/config|Linux|{{p|xdgconfighome}}/unity3d/Mostly Tigerproof/Glittermitten Grove/prefs}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Mostly Tigerproof\Glittermitten Grove\}}' - - '{{Game data/saves|Linux|{{p|xdgconfighome}}/unity3d/Mostly Tigerproof/Glittermitten Grove/}}' + - "{{Game data/config|Windows|{{p|HKCU}}\\Software\\Mostly Tigerproof\\Glittermitten Grove\\}}" + - "{{Game data/config|Linux|{{p|xdgconfighome}}/unity3d/Mostly Tigerproof/Glittermitten Grove/prefs}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Mostly Tigerproof\\Glittermitten Grove\\}}" + - "{{Game data/saves|Linux|{{p|xdgconfighome}}/unity3d/Mostly Tigerproof/Glittermitten Grove/}}" Glo: pageId: 70531 steam: 711550 @@ -69109,11 +67229,11 @@ Global Infection: Global Operations: pageId: 163608 templates: - - '{{Game data/config|Windows|{{p|game}}\Globalops\profile}}' -'Global Ops: Commando Libya': + - "{{Game data/config|Windows|{{p|game}}\\Globalops\\profile}}" +"Global Ops: Commando Libya": pageId: 40876 steam: 200020 -'Global Outbreak: Doomsday Edition': +"Global Outbreak: Doomsday Edition": pageId: 49781 steam: 264260 Global Soccer Manager: @@ -69140,7 +67260,7 @@ Globe Rush: Globesweeper: pageId: 127239 steam: 982220 -'Globesweeper: Hex Puzzler': +"Globesweeper: Hex Puzzler": pageId: 145065 steam: 1121530 Globetrotter: @@ -69151,19 +67271,19 @@ Gloom: pageId: 61018 steam: 619280 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\gloom\}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\gloom\}}' -'Gloom: Digital Edition': + - "{{Game data/config|Windows|{{P|localappdata}}\\gloom\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\gloom\\}}" +"Gloom: Digital Edition": pageId: 121153 steam: 766040 templates: - - '{{Game data/config|Windows|{{P|userprofile}}\AppData\LocalLow\SkyShip Studios\Gloom\*Settings.json}}' + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\SkyShip Studios\\Gloom\\*Settings.json}}" Gloomgrave: pageId: 191405 steam: 1907000 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Godot\app_userdata\Gloomgrave\settings.cfg}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Godot\app_userdata\Gloomgrave\*.scn}}' + - "{{Game data/config|Windows|{{p|appdata}}\\Godot\\app_userdata\\Gloomgrave\\settings.cfg}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Godot\\app_userdata\\Gloomgrave\\*.scn}}" Gloomhaven: gog: 2102122491 gogSide: @@ -69173,10 +67293,8 @@ Gloomhaven: steamSide: - 1809490 templates: - - >- - {{Game - data/config|Windows|{{P|userprofile\appdata\locallow}}\FlamingFowlStudios\Gloomhaven\GloomSaves\GlobalData.dat|{{P|hkcu}}\SOFTWARE\FlamingFowlStudios\Gloomhaven\}} - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\FlamingFowlStudios\Gloomhaven\GloomSaves\}}' + - "{{Game data/config|Windows|{{P|userprofile\\appdata\\locallow}}\\FlamingFowlStudios\\Gloomhaven\\GloomSaves\\GlobalData.dat|{{P|hkcu}}\\SOFTWARE\\FlamingFowlStudios\\Gloomhaven\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\FlamingFowlStudios\\Gloomhaven\\GloomSaves\\}}" Gloomwood: gog: 1332747658 gogSide: @@ -69186,12 +67304,12 @@ Gloomwood: steamSide: - 1325100 templates: - - '{{Game data/config|Windows|{{p|game}}\user.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\Saves}}' -'Glorch''s Great Escape: Walking is for Chumps': + - "{{Game data/config|Windows|{{p|game}}\\user.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\Saves}}" +"Glorch's Great Escape: Walking is for Chumps": pageId: 59243 steam: 549790 -'Gloria Sinica: Han Xiongnu Wars': +"Gloria Sinica: Han Xiongnu Wars": pageId: 71930 steam: 688470 Gloria Victis: @@ -69205,18 +67323,18 @@ Glorious Companions: Glorious Noon: pageId: 75632 steam: 724870 -'Glorkian Warrior: The Trials of Glork': +"Glorkian Warrior: The Trials of Glork": pageId: 37852 steam: 341120 templates: - - '{{Game data/saves|Windows|{{P|appdata}}\com.pixeljam.trialsOfGlorkMac\Local Store\trialsOfGlork.txt}}' + - "{{Game data/saves|Windows|{{P|appdata}}\\com.pixeljam.trialsOfGlorkMac\\Local Store\\trialsOfGlork.txt}}" Glory & Honor: pageId: 100430 steam: 736480 Glory Kingdom: pageId: 44517 steam: 435050 -'Glory Warrior: Lord of Darkness': +"Glory Warrior: Lord of Darkness": pageId: 38883 steam: 463140 Glory by Example: @@ -69230,14 +67348,14 @@ Glory of the Self-Styled Diehard Girl: Glover: pageId: 30321 templates: - - '{{Game data/config|Windows|{{P|game}}\Glover.cfg}}' - - '{{Game data/saves|Windows|{{P|game}}\Data\*.001}}' + - "{{Game data/config|Windows|{{P|game}}\\Glover.cfg}}" + - "{{Game data/saves|Windows|{{P|game}}\\Data\\*.001}}" Glover (2022): gog: 1581103917 pageId: 175638 steam: 1257880 templates: - - '{{Game data/config|Windows|{{p|APPDATA}}\Piko Interactive\Glover\config.ini}}' + - "{{Game data/config|Windows|{{p|APPDATA}}\\Piko Interactive\\Glover\\config.ini}}" Glow: pageId: 51429 steam: 491830 @@ -69266,9 +67384,9 @@ Glyph: pageId: 152771 steam: 1190530 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\Bolverk Games\Glyph PC\*.bin}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Bolverk Games\Glyph PC\*.save}}' -'Glyph-Bound: Kotodama': + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Bolverk Games\\Glyph PC\\*.bin}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Bolverk Games\\Glyph PC\\*.save}}" +"Glyph-Bound: Kotodama": pageId: 180661 steam: 2021840 Glypha: @@ -69286,21 +67404,21 @@ Glö Phlox: Glück Auf: pageId: 46827 steam: 392700 -Gnarltoof's Revenge: +"Gnarltoof's Revenge": pageId: 33525 steam: 486340 Gnomancer: pageId: 136867 steam: 290180 templates: - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\ProjectorGames\Gnomancer}}' + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\ProjectorGames\\Gnomancer}}" Gnome Light: pageId: 66933 steam: 682350 Gnome Rampage: pageId: 150920 steam: 1148860 -'Gnomelings: Migration': +"Gnomelings: Migration": pageId: 63470 steam: 610090 Gnomes & Goblins: @@ -69312,7 +67430,7 @@ Gnomes Garden: Gnomes Garden 2: pageId: 43015 steam: 449170 -'Gnomes Garden 3: The Thief of Castles': +"Gnomes Garden 3: The Thief of Castles": pageId: 55474 steam: 546200 Gnomes Garden Lost King: @@ -69321,10 +67439,10 @@ Gnomes Garden Lost King: Gnomes Garden New home: pageId: 68476 steam: 686520 -'Gnomes Garden: Christmas Story': +"Gnomes Garden: Christmas Story": pageId: 122462 steam: 940800 -'Gnomes Garden: Halloween': +"Gnomes Garden: Halloween": pageId: 114384 steam: 940790 Gnomes Vs. Fairies: @@ -69335,29 +67453,25 @@ Gnomoria: pageId: 7036 steam: 224500 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Gnomoria\settings.ini}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Gnomoria/settings.ini}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/Gnomoria/settings.ini}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Gnomoria\Worlds\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Gnomoria/Worlds/}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/Gnomoria/Worlds/}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Gnomoria\\settings.ini}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Gnomoria/settings.ini}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/Gnomoria/settings.ini}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Gnomoria\\Worlds\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Gnomoria/Worlds/}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/Gnomoria/Worlds/}}" Gnosia: pageId: 168459 steam: 1608290 templates: - - >- - {{Game data/config|Windows|{{p|hkcu}}\Software\PLAYISM\Gnosia | - {{p|USERPROFILE}}\AppData\LocalLow\Playism\Gnosia\save\setting\}} - - >- - {{Game - data/saves|Windows|{{p|USERPROFILE}}\AppData\LocalLow\Playism\Gnosia\save\slot0\|{{p|USERPROFILE}}\AppData\LocalLow\Playism\Gnosia\save\slot1\|{{p|USERPROFILE}}\AppData\LocalLow\Playism\Gnosia\save\slot2\}} + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\PLAYISM\\Gnosia | {{p|USERPROFILE}}\\AppData\\LocalLow\\Playism\\Gnosia\\save\\setting\\}}" + - "{{Game data/saves|Windows|{{p|USERPROFILE}}\\AppData\\LocalLow\\Playism\\Gnosia\\save\\slot0\\|{{p|USERPROFILE}}\\AppData\\LocalLow\\Playism\\Gnosia\\save\\slot1\\|{{p|USERPROFILE}}\\AppData\\LocalLow\\Playism\\Gnosia\\save\\slot2\\}}" Gnrblex: pageId: 136961 steam: 1060560 Gnubbl: pageId: 155935 steam: 1012670 -'Gnumz: Masters of Defense': +"Gnumz: Masters of Defense": pageId: 45200 steam: 371460 Go All Out: @@ -69365,15 +67479,15 @@ Go All Out: renamedFrom: - Go All Out! steam: 759260 -'Go All Out: Free to Play': +"Go All Out: Free to Play": pageId: 153326 renamedFrom: - - 'Go All Out: Free To Play' + - "Go All Out: Free To Play" steam: 1150040 Go Away My Fat: pageId: 90124 steam: 788150 -'Go Away, There''s Kumis Over There!': +"Go Away, There's Kumis Over There!": pageId: 52528 steam: 545580 Go Cabbies!GB: @@ -69385,7 +67499,7 @@ Go Fight Fantastic!: Go For A Walk: pageId: 155614 steam: 1121820 -'Go For Launch: Mercury': +"Go For Launch: Mercury": pageId: 55628 steam: 467400 Go Go Electric Samurai: @@ -69406,7 +67520,7 @@ Go Home Dinosaurs!: Go Kart Survival: pageId: 78168 steam: 713570 -'Go Mission: Space Travel': +"Go Mission: Space Travel": pageId: 42193 steam: 487270 Go Morse Go! Arcade Edition: @@ -69415,7 +67529,7 @@ Go Morse Go! Arcade Edition: Go Outside Simulator: pageId: 121801 steam: 955640 -'Go To Bed: Survive The Night': +"Go To Bed: Survive The Night": pageId: 45876 steam: 413760 Go to IT: @@ -69425,23 +67539,23 @@ Go! Go! Nippon! 2015: pageId: 31242 steam: 397030 templates: - - '{{Game data/saves|Windows|{{p|game}}\GoGoNippon\GoGoNippon2015\UserData\}}' + - "{{Game data/saves|Windows|{{p|game}}\\GoGoNippon\\GoGoNippon2015\\UserData\\}}" Go! Go! Nippon! ~My First Trip to Japan~: pageId: 17807 steam: 251870 templates: - - '{{Game data/config|Windows|{{p|game}}\GoGoNippon\BGI.gdb}}' - - '{{Game data/saves|Windows|{{p|game}}\GoGoNippon\UserData\}}' -'Go! Go! Radio: 8-Bit Edition': + - "{{Game data/config|Windows|{{p|game}}\\GoGoNippon\\BGI.gdb}}" + - "{{Game data/saves|Windows|{{p|game}}\\GoGoNippon\\UserData\\}}" +"Go! Go! Radio: 8-Bit Edition": pageId: 76955 steam: 730760 Go-Kart Racing: pageId: 92101 steam: 844750 -GoBlock's Impossible Medley: +"GoBlock's Impossible Medley": pageId: 61028 steam: 619220 -'GoD Factory: Wingmen': +"GoD Factory: Wingmen": pageId: 19578 steam: 262750 GoFetch: @@ -69495,29 +67609,25 @@ Goat Simulator: - 425840 - 463720 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\My - Games\GoatSim\GoatGame\Config\*\|{{p|game}}\Engine\Config\*\}} - - >- - {{Game data/config|OS X|{{p|osxhome}}/Library/Application - Support/Steam/steamapps/common/GoatSimulator/GoatSimulator.app/Contents/Resources/GoatGame/Config/*/}} - - '{{Game data/config|Linux|{{p|linuxhome}}/.steam/steam/steamapps/common/GoatSimulator/GoatGame/Config/*/}}' - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/265930/remote/goatprogression}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\GoatSim\\GoatGame\\Config\\*\\|{{p|game}}\\Engine\\Config\\*\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Steam/steamapps/common/GoatSimulator/GoatSimulator.app/Contents/Resources/GoatGame/Config/*/}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.steam/steam/steamapps/common/GoatSimulator/GoatGame/Config/*/}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/265930/remote/goatprogression}}" Goat Simulator 3: pageId: 182341 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\appdata\Local\Goat2\Saved\Config\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\appdata\Local\Goat2\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\appdata\\Local\\Goat2\\Saved\\Config\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\appdata\\Local\\Goat2\\Saved\\SaveGames\\}}" Goat of Duty: pageId: 135713 steam: 555000 templates: - - '{{Game data/saves|Windows|{{p|localappdata}}\GoatOfDuty\Saved\SaveGames\*.sav}}' + - "{{Game data/saves|Windows|{{p|localappdata}}\\GoatOfDuty\\Saved\\SaveGames\\*.sav}}" GoatPunks: pageId: 39253 steam: 425450 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Studio Canvas\GoatPunks\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Studio Canvas\\GoatPunks\\}}" Goats on a Bridge: pageId: 48757 renamedFrom: @@ -69536,26 +67646,26 @@ Gobliiins: gog: 1207662273 pageId: 31182 templates: - - '{{Game data/config|Windows|{{p|game}}\Gobliiins1.ini}}' -'Gobliins 2: The Prince Buffoon': + - "{{Game data/config|Windows|{{p|game}}\\Gobliiins1.ini}}" +"Gobliins 2: The Prince Buffoon": gog: 1207662293 pageId: 32253 templates: - - '{{Game data/config|Windows|{{p|game}}\Gobliins2.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\}}' -'Goblin Defenders: Steel''n'' Wood': + - "{{Game data/config|Windows|{{p|game}}\\Gobliins2.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\}}" +"Goblin Defenders: Steel'n' Wood": pageId: 45507 steam: 416310 templates: - - '{{Game data/config|Windows|{{P|appdata}}\AlawarEntertainment\Adwizer\GoblinDefenders\cfg.dat}}' - - '{{Game data/saves|Windows|{{P|appdata}}\AlawarEntertainment\Adwizer\GoblinDefenders\}}' + - "{{Game data/config|Windows|{{P|appdata}}\\AlawarEntertainment\\Adwizer\\GoblinDefenders\\cfg.dat}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\AlawarEntertainment\\Adwizer\\GoblinDefenders\\}}" Goblin Gearshop: pageId: 79342 steam: 770500 Goblin Harvest - The Mighty Quest: pageId: 58793 steam: 604060 -'Goblin Quest: Escape!': +"Goblin Quest: Escape!": pageId: 129847 steam: 375570 Goblin Squad - Total Division: @@ -69577,17 +67687,17 @@ Goblin and Coins: pageId: 52862 steam: 551580 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Goblin_and_Coins\settings.ini}}' - - '{{Game data/config|Linux|{{p|LinuxHome}}/.config/Goblin_and_Coins/settings.ini}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Goblin_and_Coins\}}' - - '{{Game data/saves|Linux|{{p|LinuxHome}}/.config/Goblin_and_Coins/}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Goblin_and_Coins\\settings.ini}}" + - "{{Game data/config|Linux|{{p|LinuxHome}}/.config/Goblin_and_Coins/settings.ini}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Goblin_and_Coins\\}}" + - "{{Game data/saves|Linux|{{p|LinuxHome}}/.config/Goblin_and_Coins/}}" Goblin and Coins II: pageId: 136084 steam: 694990 -Goblin's Fantasy: +"Goblin's Fantasy": pageId: 91170 steam: 834060 -Goblin's Shop: +"Goblin's Shop": pageId: 121871 steam: 942900 Goblins Keep Coming - Tower Defense: @@ -69597,8 +67707,8 @@ Goblins Quest 3: gog: 1207662313 pageId: 32255 templates: - - '{{Game data/config|Windows|{{p|game}}\Goblins3.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\}}' + - "{{Game data/config|Windows|{{p|game}}\\Goblins3.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\}}" Goblins and Grottos: pageId: 42523 steam: 389190 @@ -69606,7 +67716,7 @@ Goblins of Elderstone: pageId: 68705 steam: 693580 templates: - - '{{Game data/saves|Windows|{{p|localappdata}}\GoblinsOfElderstone\Saved\SaveGames}}' + - "{{Game data/saves|Windows|{{p|localappdata}}\\GoblinsOfElderstone\\Saved\\SaveGames}}" Goblins on Alien Planet: pageId: 97982 steam: 878490 @@ -69622,21 +67732,21 @@ Gochi-Show! for Girls -How To Learn Japanese Cooking Game-: God Awe-full Clicker: pageId: 111934 steam: 625860 -'God Eater 2: Rage Burst': +"God Eater 2: Rage Burst": pageId: 36315 steam: 438490 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\BANDAI NAMCO GAMES\GOD EATER 2 RAGE BURST}}' - - '{{Game data/saves|Windows|{{P|steam}}\userdata\{{P|uid}}\438490\remote\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\BANDAI NAMCO GAMES\\GOD EATER 2 RAGE BURST}}" + - "{{Game data/saves|Windows|{{P|steam}}\\userdata\\{{P|uid}}\\438490\\remote\\}}" God Eater 3: pageId: 127349 steam: 899440 -'God Eater: Resurrection': +"God Eater: Resurrection": pageId: 36571 steam: 460870 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\BANDAI NAMCO GAMES\GOD EATER RESURRECTION\}}' - - '{{Game data/saves|Windows|{{p|Steam}}\userdata\{{p|uid}}\460870\remote\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\BANDAI NAMCO GAMES\\GOD EATER RESURRECTION\\}}" + - "{{Game data/saves|Windows|{{p|Steam}}\\userdata\\{{p|uid}}\\460870\\remote\\}}" God Hand: pageId: 127291 steam: 978970 @@ -69644,7 +67754,7 @@ God Mode: pageId: 6316 steam: 227480 templates: - - '{{Game data/config|Windows|{{p|game}}\bin\*.cfg}}' + - "{{Game data/config|Windows|{{p|game}}\\bin\\*.cfg}}" God Monster: pageId: 127379 steam: 1016740 @@ -69654,13 +67764,13 @@ God Simulator: God Vs Zombies: pageId: 93645 steam: 843500 -'God Wars: The Complete Legend': +"God Wars: The Complete Legend": pageId: 132765 steam: 1038810 -'God and Nemesis: of Ghosts from Dragons': +"God and Nemesis: of Ghosts from Dragons": pageId: 57345 steam: 509530 -'God is a Cube: Programming Robot Cubes': +"God is a Cube: Programming Robot Cubes": pageId: 113340 steam: 845590 God of Arrows VR: @@ -69672,57 +67782,57 @@ God of Failure: God of Gym: pageId: 155825 steam: 1181270 -'God of Light: Remastered': +"God of Light: Remastered": pageId: 74962 steam: 711130 God of Thunder: pageId: 75051 steam: 738470 templates: - - '{{Game data/saves|DOS|{{p|game}}\SAVEGAM*.GOT|{{p|game}}\SAVEGAM*.GT*|{{p|game}}\CONFIG.GOT}}' + - "{{Game data/saves|DOS|{{p|game}}\\SAVEGAM*.GOT|{{p|game}}\\SAVEGAM*.GT*|{{p|game}}\\CONFIG.GOT}}" God of War: gog: 1074905459 pageId: 172360 steam: 1593500 templates: - - '{{Game data/config|Windows|{{P|game}}\settings.ini}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\Saved Games\God of War\}}' + - "{{Game data/config|Windows|{{P|game}}\\settings.ini}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\Saved Games\\God of War\\}}" God of Word: pageId: 39171 steam: 467320 -God's Basement: +"God's Basement": pageId: 87611 steam: 753930 -God's Challenge: +"God's Challenge": pageId: 155598 steam: 1217640 -God's Death: +"God's Death": pageId: 43083 steam: 466580 -God's One Day World: +"God's One Day World": pageId: 35144 steam: 490390 -God's Trigger: +"God's Trigger": gog: 1150150052 pageId: 98148 steam: 488730 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\One More Level\GodsTrigger\}}' - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\One More Level\Gods_Trigger}}' - - '{{Game data/saves|Steam|{{P|steam}}\userdata\{{P|uid}}\488730\remote\save}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\One More Level\\GodsTrigger\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\One More Level\\Gods_Trigger}}" + - "{{Game data/saves|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\488730\\remote\\save}}" GodOrEvil.Beta: pageId: 144614 steam: 1140700 Goddess of Math 数学女神: pageId: 130205 steam: 1044770 -'Goddess of Victory: Nikke': +"Goddess of Victory: Nikke": pageId: 185262 Godfall: pageId: 154613 steam: 928960 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Aperion\Saved\Config\WindowsNoEditor}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\Aperion\\Saved\\Config\\WindowsNoEditor}}" Godhood: gog: 1297443605 pageId: 109878 @@ -69742,10 +67852,8 @@ Godlike Burger: - 1670580 - 1670590 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\appdata\locallow}}\Liquid Pug LLC\Godlike - Burger\*\*.es3|{{p|hkcu}}\Software\Liquid Pug LLC\Godlike Burger\}} - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\Liquid Pug LLC\Godlike Burger\*\Slot*\}}' + - "{{Game data/config|Windows|{{p|userprofile\\appdata\\locallow}}\\Liquid Pug LLC\\Godlike Burger\\*\\*.es3|{{p|hkcu}}\\Software\\Liquid Pug LLC\\Godlike Burger\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\Liquid Pug LLC\\Godlike Burger\\*\\Slot*\\}}" Godly Corp: pageId: 87539 steam: 799260 @@ -69755,23 +67863,23 @@ Gods Remastered: pageId: 122372 steam: 628720 templates: - - '{{Game data/config|Windows|{{p|HKCU}}\SOFTWARE\Robot Riot UG\GODS Remastered}}' - - '{{Game data/config|Steam|{{P|steam}}\userdata\{{p|UID}}\628720\remote\godsconf.txt}}' - - '{{Game data/saves|Steam|{{P|steam}}\userdata\{{p|UID}}\628720\remote\sf.txt}}' + - "{{Game data/config|Windows|{{p|HKCU}}\\SOFTWARE\\Robot Riot UG\\GODS Remastered}}" + - "{{Game data/config|Steam|{{P|steam}}\\userdata\\{{p|UID}}\\628720\\remote\\godsconf.txt}}" + - "{{Game data/saves|Steam|{{P|steam}}\\userdata\\{{p|UID}}\\628720\\remote\\sf.txt}}" Gods Will Be Watching: gog: 1207664883 pageId: 18582 steam: 274290 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Gods_Will_Be_Watching\}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/Gods_Will_Be_Watching/}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Gods_Will_Be_Watching\}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/Gods_Will_Be_Watching/}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Gods_Will_Be_Watching\\}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/Gods_Will_Be_Watching/}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Gods_Will_Be_Watching\\}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/Gods_Will_Be_Watching/}}" Gods Will Fall: gog: 1919321830 gogSide: - - 1614367395 - 1535985598 + - 1614367395 - 1745467638 pageId: 165404 steam: 1243690 @@ -69785,13 +67893,13 @@ Gods and Idols: Gods and Kings: pageId: 125452 steam: 982380 -'Gods of Havoc: Fall to Earth': +"Gods of Havoc: Fall to Earth": pageId: 141921 steam: 1120770 -'Gods of Havoc: Into the Void': +"Gods of Havoc: Into the Void": pageId: 141816 steam: 1117340 -'Gods of Love: An Otome Visual Novel': +"Gods of Love: An Otome Visual Novel": pageId: 154245 steam: 1166110 Gods of the Fallen Land: @@ -69801,7 +67909,7 @@ Gods vs Humans: pageId: 49522 steam: 322980 templates: - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Gods vs Humans}}' + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Gods vs Humans}}" Godsend: pageId: 123540 steam: 949740 @@ -69825,10 +67933,10 @@ Goetia: pageId: 37519 steam: 421740 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\SOFTWARE\Sushee\goetia\}}' - - '{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/Sushee/goetia/prefs}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Sushee\goetia\}}' - - '{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/Sushee/goetia/}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\SOFTWARE\\Sushee\\goetia\\}}" + - "{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/Sushee/goetia/prefs}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Sushee\\goetia\\}}" + - "{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/Sushee/goetia/}}" Goetia 2: gog: 1237168477 pageId: 177757 @@ -69850,17 +67958,17 @@ Going Medieval: pageId: 130735 steam: 1029780 templates: - - '{{Game data/config|Windows|{{p|USERPROFILE\AppData\LocalLow}}\Foxy Voxel\Going Medieval\global.config}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Foxy Voxel\Going Medieval\VillageSaves}}' -'Going Nowhere: The Dream': + - "{{Game data/config|Windows|{{p|USERPROFILE\\AppData\\LocalLow}}\\Foxy Voxel\\Going Medieval\\global.config}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Foxy Voxel\\Going Medieval\\VillageSaves}}" +"Going Nowhere: The Dream": pageId: 73951 steam: 691240 Going Under: pageId: 151567 steam: 1154810 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\Aggro Crab\Going Under}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Aggro Crab\Going Under}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Aggro Crab\\Going Under}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Aggro Crab\\Going Under}}" Going Up: pageId: 41906 steam: 506570 @@ -69874,8 +67982,8 @@ Goken: pageId: 65674 steam: 671260 templates: - - '{{Game data/config|Linux|{{p|xdgconfighome}}/unity3d/Gianty/Goken/prefs}}' - - '{{Game data/saves|Linux|{{p|xdgconfighome}}/unity3d/Gianty/Goken/*.dat}}' + - "{{Game data/config|Linux|{{p|xdgconfighome}}/unity3d/Gianty/Goken/prefs}}" + - "{{Game data/saves|Linux|{{p|xdgconfighome}}/unity3d/Gianty/Goken/*.dat}}" Golazo!: gog: 2029487364 pageId: 167586 @@ -69905,7 +68013,7 @@ Gold Rush!: pageId: 35887 steam: 308000 templates: - - '{{Game data/saves|DOS|{{p|game}}\GRSG.**}}' + - "{{Game data/saves|DOS|{{p|game}}\\GRSG.**}}" Gold Rush! 2: pageId: 59407 steam: 609100 @@ -69915,17 +68023,17 @@ Gold Rush! Anniversary: steamSide: - 328690 templates: - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Gold Rush! Anniversary\Saves}}' -'Gold Rush: The Game': + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Gold Rush! Anniversary\\Saves}}" +"Gold Rush: The Game": pageId: 64115 steam: 451340 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\CodeHorizon\GoldRushTheGame}}' -'Gold and Glory: The Road to El Dorado': + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\CodeHorizon\\GoldRushTheGame}}" +"Gold and Glory: The Road to El Dorado": pageId: 60167 templates: - - '{{Game data/config|Windows|{{p|game}}\engine\eldorado.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\engine\linc\saves\}}' + - "{{Game data/config|Windows|{{p|game}}\\engine\\eldorado.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\engine\\linc\\saves\\}}" Golden Axe: pageId: 30603 Golden Axe (Genesis): @@ -69934,33 +68042,21 @@ Golden Axe (Genesis): - Golden Axe (2010) steam: 34276 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\SEGA Mega Drive - Classics\setup.dat|{{p|userprofile\Documents}}\SEGA Genesis Classics\setup.dat}} - - >- - {{Game data/saves|Windows|{{p|userprofile\Documents}}\SEGA Mega Drive - Classics\0005\|{{p|userprofile\Documents}}\SEGA Genesis Classics\0005\}} + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\SEGA Mega Drive Classics\\setup.dat|{{p|userprofile\\Documents}}\\SEGA Genesis Classics\\setup.dat}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\SEGA Mega Drive Classics\\0005\\|{{p|userprofile\\Documents}}\\SEGA Genesis Classics\\0005\\}}" Golden Axe II: pageId: 30607 steam: 71112 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\SEGA Mega Drive - Classics\setup.dat|{{p|userprofile\Documents}}\SEGA Genesis Classics\setup.dat}} - - >- - {{Game data/saves|Windows|{{p|userprofile\Documents}}\SEGA Mega Drive - Classics\0030\|{{p|userprofile\Documents}}\SEGA Genesis Classics\0030\}} + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\SEGA Mega Drive Classics\\setup.dat|{{p|userprofile\\Documents}}\\SEGA Genesis Classics\\setup.dat}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\SEGA Mega Drive Classics\\0030\\|{{p|userprofile\\Documents}}\\SEGA Genesis Classics\\0030\\}}" Golden Axe III: pageId: 30610 steam: 211202 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\SEGA Mega Drive - Classics\setup.dat|{{p|userprofile\Documents}}\SEGA Genesis Classics\setup.dat}} - - >- - {{Game data/saves|Windows|{{p|userprofile\Documents}}\SEGA Mega Drive - Classics\0050\|{{p|userprofile\Documents}}\SEGA Genesis Classics\0050\}} -'Golden Axed: A Cancelled Prototype': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\SEGA Mega Drive Classics\\setup.dat|{{p|userprofile\\Documents}}\\SEGA Genesis Classics\\setup.dat}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\SEGA Mega Drive Classics\\0050\\|{{p|userprofile\\Documents}}\\SEGA Genesis Classics\\0050\\}}" +"Golden Axed: A Cancelled Prototype": pageId: 164275 steam: 1368460 Golden Dungeons: @@ -69985,13 +68081,13 @@ Golden Light: pageId: 168502 steam: 1245430 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\MrPink\Golden Light}}' + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\MrPink\\Golden Light}}" Golden Panic: pageId: 63476 steam: 614550 Golden Path of Plumeboom: pageId: 167598 -'Golden Rails: Tales of the Wild West': +"Golden Rails: Tales of the Wild West": pageId: 156185 steam: 1197710 Golden Rush: @@ -70000,26 +68096,22 @@ Golden Rush: Golden Swords: pageId: 51487 steam: 531490 -'Golden Treasure: The Great Green': +"Golden Treasure: The Great Green": pageId: 135634 steam: 1065100 templates: - - >- - {{Game data/config|Windows|{{P|userprofile}}\AppData\LocalLow\Dreaming Door Studios\Golden Treasure - The Great - Green\Saves}} - - >- - {{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Dreaming Door Studios\Golden Treasure - The Great - Green\Saves\savedGame.gt}} + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Dreaming Door Studios\\Golden Treasure - The Great Green\\Saves}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Dreaming Door Studios\\Golden Treasure - The Great Green\\Saves\\savedGame.gt}}" Golden War Spirit: pageId: 139085 steam: 1042860 Golden8bits: pageId: 94368 steam: 794230 -'GoldenEye: Source': +"GoldenEye: Source": pageId: 6033 templates: - - '{{Game data/config|Windows|{{p|game}}\cfg\}}' + - "{{Game data/config|Windows|{{p|game}}\\cfg\\}}" Goldmine: pageId: 90094 steam: 740790 @@ -70031,8 +68123,8 @@ Golem: pageId: 65494 steam: 646010 templates: - - '{{Game data/config|Windows|{{P|appdata}}\Longbow Digital Arts\Golem\Settings.xml|{{P|game}}\controls.xml}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\Saved Games\Golem\}}' + - "{{Game data/config|Windows|{{P|appdata}}\\Longbow Digital Arts\\Golem\\Settings.xml|{{P|game}}\\controls.xml}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\Saved Games\\Golem\\}}" Golem Creation Kit: pageId: 63484 steam: 650680 @@ -70058,7 +68150,7 @@ Golf Club Nostalgia: - Golf Club Wasteland steam: 1556870 templates: - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Untold Tales\Golf Club_ Wasteland\}}' + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Untold Tales\\Golf Club_ Wasteland\\}}" Golf Defied: pageId: 136851 steam: 1085150 @@ -70075,8 +68167,8 @@ Golf It!: pageId: 57335 steam: 571740 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\GolfIt\Saved\Config\WindowsNoEditor}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\GolfIt\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\GolfIt\\Saved\\Config\\WindowsNoEditor}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\GolfIt\\Saved\\SaveGames\\}}" Golf Masters: pageId: 39699 steam: 374970 @@ -70085,12 +68177,10 @@ Golf Peaks: pageId: 110186 steam: 923260 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\appdata\locallow}}\Afterburn\Golf - Peaks\SaveData.es3|{{p|hkcu}}\Software\Afterburn\Golf Peaks}} - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Afterburn/Golf Peaks/Settings.es3}}' - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\Afterburn\Golf Peaks\SaveData.es3}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Afterburn/Golf Peaks/SaveData.es3}}' + - "{{Game data/config|Windows|{{p|userprofile\\appdata\\locallow}}\\Afterburn\\Golf Peaks\\SaveData.es3|{{p|hkcu}}\\Software\\Afterburn\\Golf Peaks}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Afterburn/Golf Peaks/Settings.es3}}" + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\Afterburn\\Golf Peaks\\SaveData.es3}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Afterburn/Golf Peaks/SaveData.es3}}" Golf Pool VR: pageId: 130605 steam: 1008700 @@ -70102,8 +68192,8 @@ Golf Resort Tycoon: Golf Resort Tycoon II: pageId: 90672 templates: - - '{{Game data/config|Windows|{{p|game}}\settings.bin|}}' - - '{{Game data/saves|Windows|{{p|game}}\Data\saved_games}}' + - "{{Game data/config|Windows|{{p|game}}\\settings.bin|}}" + - "{{Game data/saves|Windows|{{p|game}}\\Data\\saved_games}}" Golf for Workgroups: pageId: 60882 steam: 572160 @@ -70123,19 +68213,13 @@ Golf with Your Friends: steamSide: - 1901922 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\Team17 Digital Ltd\Golf With Your Friends\gwyf.sav}}' - - >- - {{Game data/config|Microsoft - Store|{{P|localappdata}}\Packages\Team17DigitalLimited.GolfWithYourFriendsWin10_j5x4vj4y67jhc\SystemAppData\wgs}} - - >- - {{Game data/config|OS X|{{p|userprofile}}\Library\Application Support\unity.Blacklight Interactive.Golf With Your - Friends}} - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Team17 Digital Ltd/Golf With Your Friends/}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Team17 Digital Ltd\Golf With Your Friends\}}' - - >- - {{Game data/saves|Microsoft - Store|{{P|localappdata}}\Packages\Team17DigitalLimited.GolfWithYourFriendsWin10_j5x4vj4y67jhc\SystemAppData\wgs}} - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Team17 Digital Ltd/Golf With Your Friends/}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Team17 Digital Ltd\\Golf With Your Friends\\gwyf.sav}}" + - "{{Game data/config|Microsoft Store|{{P|localappdata}}\\Packages\\Team17DigitalLimited.GolfWithYourFriendsWin10_j5x4vj4y67jhc\\SystemAppData\\wgs}}" + - "{{Game data/config|OS X|{{p|userprofile}}\\Library\\Application Support\\unity.Blacklight Interactive.Golf With Your Friends}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Team17 Digital Ltd/Golf With Your Friends/}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Team17 Digital Ltd\\Golf With Your Friends\\}}" + - "{{Game data/saves|Microsoft Store|{{P|localappdata}}\\Packages\\Team17DigitalLimited.GolfWithYourFriendsWin10_j5x4vj4y67jhc\\SystemAppData\\wgs}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Team17 Digital Ltd/Golf With Your Friends/}}" Golf98: pageId: 148820 steam: 1170160 @@ -70143,15 +68227,15 @@ GolfTopia: pageId: 151119 steam: 1144020 templates: - - '{{Game data/config|Windows|{{P|userprofile}}\AppData\LocalLow\MinMax Games\Golftopia\Options}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\MinMax Games\Golftopia\Cloud\SavedData}}' + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\MinMax Games\\Golftopia\\Options}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\MinMax Games\\Golftopia\\Cloud\\SavedData}}" Golfing over It with Alva Majo: pageId: 90100 renamedFrom: - Golfing Over It with Alva Majo steam: 817510 templates: - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\817510\remote\}}' + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\817510\\remote\\}}" Golfy Golf: pageId: 92281 steam: 790970 @@ -70164,14 +68248,14 @@ Gomo: pageId: 33474 steam: 265330 templates: - - '{{Game data/config|Windows|{{P|appdata}}\Gomo\Local Store\saves.dat}}' - - '{{Game data/saves|Windows|{{P|appdata}}\Gomo\Local Store\saves.dat}}' -Gon' E-Choo!: + - "{{Game data/config|Windows|{{P|appdata}}\\Gomo\\Local Store\\saves.dat}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\Gomo\\Local Store\\saves.dat}}" +"Gon' E-Choo!": pageId: 45483 steam: 384990 templates: - - '{{Game data/config|Windows|{{p|HKCU}}\Software\Marc Ellis\Gon'' E-Choo!\}}' - - '{{Game data/saves|Windows|{{p|USERPROFILE}}\AppData\LocalLow\Marc Ellis\Gon'' E-Choo!\sync\thekitchensync.sync}}' + - "{{Game data/config|Windows|{{p|HKCU}}\\Software\\Marc Ellis\\Gon' E-Choo!\\}}" + - "{{Game data/saves|Windows|{{p|USERPROFILE}}\\AppData\\LocalLow\\Marc Ellis\\Gon' E-Choo!\\sync\\thekitchensync.sync}}" Gone Astray: pageId: 72537 steam: 718970 @@ -70183,12 +68267,12 @@ Gone Home: pageId: 9506 steam: 232430 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\The Fullbright Company\Gone Home\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Caches/unity.The Fullbright Company.Gone Home/}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/The Fullbright Company/Gone Home/}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\The Fullbright Company\Gone Home\Saves\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Caches/unity.The Fullbright Company.Gone Home/}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/The Fullbright Company/Gone Home/}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\The Fullbright Company\\Gone Home\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Caches/unity.The Fullbright Company.Gone Home/}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/The Fullbright Company/Gone Home/}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\The Fullbright Company\\Gone Home\\Saves\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Caches/unity.The Fullbright Company.Gone Home/}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/The Fullbright Company/Gone Home/}}" Gone In November: pageId: 36175 steam: 507390 @@ -70207,11 +68291,9 @@ Gonner: pageId: 39265 steam: 437570 templates: - - >- - {{Game data/config|Windows|{{P|userprofile}}\AppData\LocalLow\Art in Heart\GoNNER\|{{P|hkcu}}\Software\Art in - Heart\GoNNER\}} - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Art in Heart/GoNNER}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Art in Heart\GoNNER\}}' + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Art in Heart\\GoNNER\\|{{P|hkcu}}\\Software\\Art in Heart\\GoNNER\\}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Art in Heart/GoNNER}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Art in Heart\\GoNNER\\}}" Gonner2: gog: 1945071492 pageId: 163800 @@ -70230,19 +68312,19 @@ GooCubelets: GooCubelets 2: pageId: 45571 steam: 416270 -'GooCubelets: Color Blocking': +"GooCubelets: Color Blocking": pageId: 65071 steam: 662270 -'GooCubelets: OCD': +"GooCubelets: OCD": pageId: 43149 steam: 460660 -'GooCubelets: RGB': +"GooCubelets: RGB": pageId: 64066 steam: 659850 -'GooCubelets: The Algoorithm': +"GooCubelets: The Algoorithm": pageId: 45103 steam: 431270 -'GooCubelets: The Void': +"GooCubelets: The Void": pageId: 41910 steam: 505440 GooHuebelets: @@ -70265,9 +68347,9 @@ Good Company: pageId: 109608 steam: 911430 templates: - - '{{Game data/saves|Epic Games Launcher|{{P|localappdata}}\GoodCompany\saves}}' - - '{{Game data/saves|GOG.com|{{P|localappdata}}\GOG.com\Galaxy\Applications\52756061851437994\Storage\Shared\Files}}' - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\911430\remote}}' + - "{{Game data/saves|Epic Games Launcher|{{P|localappdata}}\\GoodCompany\\saves}}" + - "{{Game data/saves|GOG.com|{{P|localappdata}}\\GOG.com\\Galaxy\\Applications\\52756061851437994\\Storage\\Shared\\Files}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\911430\\remote}}" Good Doggo: pageId: 92813 steam: 840060 @@ -70286,28 +68368,24 @@ Good Morning World: Good Mourning: pageId: 164717 steam: 1338790 -'Good Night, Knight': +"Good Night, Knight": gog: 1791830361 pageId: 145600 steam: 1133050 steamSide: - 1403930 templates: - - '{{Game data/saves|Windows|{{p|localappdata}}\Good_Night__Knight\config.ini}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Good_Night__Knight\Data\plsnoedit1.txt}}' -'Good Pizza, Great Pizza': + - "{{Game data/saves|Windows|{{p|localappdata}}\\Good_Night__Knight\\config.ini}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Good_Night__Knight\\Data\\plsnoedit1.txt}}" +"Good Pizza, Great Pizza": pageId: 94340 steam: 770810 Good Robot: pageId: 37401 steam: 358830 templates: - - >- - {{Game data/config|Windows|{{Path|appdata}}\Pyrodactyl\Good Robot\controls.xml
{{Path|appdata}}\Pyrodactyl\Good Robot\settings.ini}} - - >- - {{Game data/saves|Windows|{{Path|appdata}}\Pyrodactyl\Good Robot\score.xml
{{Path|appdata}}\Pyrodactyl\Good - Robot\story.sav}} + - "{{Game data/config|Windows|{{Path|appdata}}\\Pyrodactyl\\Good Robot\\controls.xml
{{Path|appdata}}\\Pyrodactyl\\Good Robot\\settings.ini}}" + - "{{Game data/saves|Windows|{{Path|appdata}}\\Pyrodactyl\\Good Robot\\score.xml
{{Path|appdata}}\\Pyrodactyl\\Good Robot\\story.sav}}" Good doktor: pageId: 156063 steam: 1190120 @@ -70319,12 +68397,12 @@ Goodbye Deponia: pageId: 11308 steam: 241910 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Daedalic Entertainment\Deponia 3\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Daedalic Entertainment/Deponia 3/}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/Daedalic Entertainment/Deponia 3/}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Daedalic Entertainment\Deponia 3\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Daedalic Entertainment/Deponia 3/}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/Daedalic Entertainment/Deponia 3/}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Daedalic Entertainment\\Deponia 3\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Daedalic Entertainment/Deponia 3/}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/Daedalic Entertainment/Deponia 3/}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Daedalic Entertainment\\Deponia 3\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Daedalic Entertainment/Deponia 3/}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/Daedalic Entertainment/Deponia 3/}}" Goodbye My King: pageId: 63448 steam: 647410 @@ -70332,8 +68410,8 @@ Goodbye Volcano High: pageId: 187662 steam: 1310330 templates: - - '{{Game data/config|Windows|{{p|game}}\Goodbye Volcano High_Data\saves}}' - - '{{Game data/saves|Windows|{{p|game}}\Goodbye Volcano High_Data\saves}}' + - "{{Game data/config|Windows|{{p|game}}\\Goodbye Volcano High_Data\\saves}}" + - "{{Game data/saves|Windows|{{p|game}}\\Goodbye Volcano High_Data\\saves}}" Goodnight: pageId: 69104 steam: 631940 @@ -70346,115 +68424,113 @@ Goodnight Succubus: Google Earth VR: pageId: 77510 steam: 348250 -'Google Spotlight Stories: Age of Sail': +"Google Spotlight Stories: Age of Sail": pageId: 121718 steam: 882110 templates: - - '{{Game data/config|Windows|{{p|game}}\Google Spotlight Stories Piggy\storyplayer.cfg}}' -'Google Spotlight Stories: Back to the Moon': + - "{{Game data/config|Windows|{{p|game}}\\Google Spotlight Stories Piggy\\storyplayer.cfg}}" +"Google Spotlight Stories: Back to the Moon": pageId: 93507 steam: 832080 templates: - - '{{Game data/config|Windows|{{p|game}}\Back to the Moon\storyplayer.cfg}}' -'Google Spotlight Stories: On Ice': + - "{{Game data/config|Windows|{{p|game}}\\Back to the Moon\\storyplayer.cfg}}" +"Google Spotlight Stories: On Ice": pageId: 96003 steam: 750360 templates: - - '{{Game data/config|Windows|{{p|game}}\Google Spotlight Stories On Ice\storyplayer.cfg}}' -'Google Spotlight Stories: Pearl': + - "{{Game data/config|Windows|{{p|game}}\\Google Spotlight Stories On Ice\\storyplayer.cfg}}" +"Google Spotlight Stories: Pearl": pageId: 73807 steam: 476540 templates: - - '{{Game data/saves|Windows|{{p|game}}\Google Spotlight Stories - Pearl\saves\}}' -'Google Spotlight Stories: Piggy': + - "{{Game data/saves|Windows|{{p|game}}\\Google Spotlight Stories - Pearl\\saves\\}}" +"Google Spotlight Stories: Piggy": pageId: 97059 steam: 750350 templates: - - '{{Game data/config|Windows|{{p|game}}\Google Spotlight Stories Piggy\storyplayer.cfg}}' -'Google Spotlight Stories: Rain or Shine': + - "{{Game data/config|Windows|{{p|game}}\\Google Spotlight Stories Piggy\\storyplayer.cfg}}" +"Google Spotlight Stories: Rain or Shine": pageId: 76035 steam: 714610 templates: - - '{{Game data/config|Windows|{{p|game}}\Google Spotlight Stories - Rain or Shine\storyplayer.cfg}}' -'Google Spotlight Stories: Son of Jaguar': + - "{{Game data/config|Windows|{{p|game}}\\Google Spotlight Stories - Rain or Shine\\storyplayer.cfg}}" +"Google Spotlight Stories: Son of Jaguar": pageId: 74872 steam: 714580 templates: - - '{{Game data/config|Windows|{{p|game}}\Google Spotlight Stories - Son of Jaguar\storyplayer.cfg}}' -'Google Spotlight Stories: Sonaria': + - "{{Game data/config|Windows|{{p|game}}\\Google Spotlight Stories - Son of Jaguar\\storyplayer.cfg}}" +"Google Spotlight Stories: Sonaria": pageId: 76037 steam: 713320 templates: - - '{{Game data/config|Windows|{{p|game}}\Google Spotlight Stories - Sonaria\storyplayer.cfg}}' -'Google Spotlight Stories: Special Delivery': + - "{{Game data/config|Windows|{{p|game}}\\Google Spotlight Stories - Sonaria\\storyplayer.cfg}}" +"Google Spotlight Stories: Special Delivery": pageId: 76854 steam: 714780 templates: - - '{{Game data/config|Windows|{{p|game}}\Google Spotlight Stories - Special Delivery\storyplayer.cfg}}' + - "{{Game data/config|Windows|{{p|game}}\\Google Spotlight Stories - Special Delivery\\storyplayer.cfg}}" Goose Goose Duck: pageId: 171771 steam: 1568590 Goose Simulator: pageId: 185958 -'Goosebumps: Dead of Night': +"Goosebumps: Dead of Night": pageId: 160744 renamedFrom: - Goosebumps Dead of Night steam: 1173150 -'Goosebumps: Escape from Horrorland': +"Goosebumps: Escape from Horrorland": pageId: 190594 templates: - - '{{Game data/config|Windows|{{P|hklm}}\SOFTWARE\{{P|wow64}}\DreamWorks Interactive\Horrorland}}' - - '{{Game data/saves|Windows|{{P|hklm}}\SOFTWARE\{{P|wow64}}\DreamWorks Interactive\Horrorland}}' -'Goosebumps: The Game': + - "{{Game data/config|Windows|{{P|hklm}}\\SOFTWARE\\{{P|wow64}}\\DreamWorks Interactive\\Horrorland}}" + - "{{Game data/saves|Windows|{{P|hklm}}\\SOFTWARE\\{{P|wow64}}\\DreamWorks Interactive\\Horrorland}}" +"Goosebumps: The Game": pageId: 38270 steam: 361360 templates: - - '{{Game data/config|Windows|{{p|APPDATA}}\Wayforward\Goosebumps\wfEngine.ini}}' - - '{{Game data/saves|Windows|{{P|appdata}}\Wayforward\Goosebumps\save*.sav}}' + - "{{Game data/config|Windows|{{p|APPDATA}}\\Wayforward\\Goosebumps\\wfEngine.ini}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\Wayforward\\Goosebumps\\save*.sav}}" Gopnik Simulator: pageId: 93714 steam: 853210 -'Gorasul: The Legacy of the Dragon': +"Gorasul: The Legacy of the Dragon": pageId: 31422 templates: - - '{{Game data/saves|Windows|{{p|game}}\Save}}' + - "{{Game data/saves|Windows|{{p|game}}\\Save}}" Gordian Quest: gog: 1916547709 pageId: 150703 steam: 981430 templates: - - >- - {{Game - data/config|Windows|{{P|userprofile\appdata\locallow}}\MixedRealms\GordianQuest\Preferences.json|{{P|hkcu}}\Software\MixedRealms\GordianQuest\}} - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\MixedRealms\GordianQuest\Saves\}}' -'Gordian Rooms 2: A Curious Island': + - "{{Game data/config|Windows|{{P|userprofile\\appdata\\locallow}}\\MixedRealms\\GordianQuest\\Preferences.json|{{P|hkcu}}\\Software\\MixedRealms\\GordianQuest\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\MixedRealms\\GordianQuest\\Saves\\}}" +"Gordian Rooms 2: A Curious Island": pageId: 189280 steam: 1528220 steamSide: - - 2117290 - 1906260 + - 2117290 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\GordianRooms2\Saved\Config\Windows\}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\GordianRooms2\Saved\SaveGames\}}' -'Gordian Rooms: A Curious Heritage': + - "{{Game data/config|Windows|{{P|localappdata}}\\GordianRooms2\\Saved\\Config\\Windows\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\GordianRooms2\\Saved\\SaveGames\\}}" +"Gordian Rooms: A Curious Heritage": pageId: 163828 renamedFrom: - - 'Gordian Rooms: A curious heritage' + - "Gordian Rooms: A curious heritage" steam: 1285080 steamSide: - - 1386790 - 1367510 + - 1386790 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\GordianRoom\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\GordianRoom\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\GordianRoom\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\GordianRoom\\Saved\\SaveGames\\}}" Gordon Streaman: pageId: 144702 steam: 1131810 -'Gore: Ultimate Soldier': +"Gore: Ultimate Soldier": pageId: 86768 templates: - - '{{Game data/config|Windows|{{p|game}}\settings}}' + - "{{Game data/config|Windows|{{p|game}}\\settings}}" Gorescript: pageId: 61554 steam: 618690 @@ -70467,17 +68543,17 @@ Gorilla Tag: Gorilla Unko: pageId: 132337 steam: 1047120 -'Gorky 02: Aurora Watching': +"Gorky 02: Aurora Watching": pageId: 72441 Gorky 17: gog: 1207658744 pageId: 8446 steam: 253920 templates: - - '{{Game data/config|OS X|{{p|game}}/gorky17.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\SAVEGAME}}' - - '{{Game data/saves|OS X|{{p|game}}/SaveGame}}' -'Gorky Zero: Beyond Honor': + - "{{Game data/config|OS X|{{p|game}}/gorky17.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\SAVEGAME}}" + - "{{Game data/saves|OS X|{{p|game}}/SaveGame}}" +"Gorky Zero: Beyond Honor": pageId: 185759 Gorn: pageId: 64516 @@ -70493,9 +68569,9 @@ Gorogoa: pageId: 57238 steam: 557600 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Annapurna\Gorogoa\}}' - - '{{Game data/saves|GOG.com|{{P|localappdata}}\GOG.com\Galaxy\Applications\50686913489464392\Storage\Shared\Files\}}' - - '{{Game data/saves|Steam|{{p|USERPROFILE}}\AppData\LocalLow\Annapurna\Gorogoa\{{p|uid}}\SaveGame.sav.xml}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Annapurna\\Gorogoa\\}}" + - "{{Game data/saves|GOG.com|{{P|localappdata}}\\GOG.com\\Galaxy\\Applications\\50686913489464392\\Storage\\Shared\\Files\\}}" + - "{{Game data/saves|Steam|{{p|USERPROFILE}}\\AppData\\LocalLow\\Annapurna\\Gorogoa\\{{p|uid}}\\SaveGame.sav.xml}}" Goroons: pageId: 93716 steam: 853590 @@ -70511,7 +68587,7 @@ Gotcha Racing 2nd: Gotcha! Extreme Paintball: pageId: 89780 templates: - - '{{Game data/config|Windows|{{p|game}}\Gotcha.cfg}}' + - "{{Game data/config|Windows|{{p|game}}\\Gotcha.cfg}}" Goth Girlfriend: pageId: 151389 steam: 1084690 @@ -70525,19 +68601,17 @@ Gotham Knights: pageId: 162767 steam: 1496790 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Mercury\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/config|Steam|{{P|localappdata}}\WB Games\Gotham Knights\Steam\}}' - - >- - {{Game data/saves|Microsoft - Store|{{p|localappdata}}\Packages\WarnerBros.Interactive.ea2bab08-46b7-40e4-bdd5-590_ktmk1xygcecda\SystemAppData\wgs\{{P|uid}}}} - - '{{Game data/saves|Steam|{{P|localappdata}}\WB Games\Gotham Knights\Steam\Saved\SaveGames\{{P|uid}}\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\Mercury\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/config|Steam|{{P|localappdata}}\\WB Games\\Gotham Knights\\Steam\\}}" + - "{{Game data/saves|Microsoft Store|{{p|localappdata}}\\Packages\\WarnerBros.Interactive.ea2bab08-46b7-40e4-bdd5-590_ktmk1xygcecda\\SystemAppData\\wgs\\{{P|uid}}}}" + - "{{Game data/saves|Steam|{{P|localappdata}}\\WB Games\\Gotham Knights\\Steam\\Saved\\SaveGames\\{{P|uid}}\\}}" Gothic: gog: 1207658682 pageId: 2071 steam: 65540 templates: - - '{{Game data/config|Windows|{{p|game}}\system\GOTHIC.INI}}' - - '{{Game data/saves|Windows|{{p|game}}\Saves\}}' + - "{{Game data/config|Windows|{{p|game}}\\system\\GOTHIC.INI}}" + - "{{Game data/saves|Windows|{{p|game}}\\Saves\\}}" Gothic 1 Remake: gog: 1537831577 pageId: 167207 @@ -70547,34 +68621,34 @@ Gothic 3: pageId: 8733 steam: 39500 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\gothic3\UserOptions.ini}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\gothic3\}}' -'Gothic 3: Forsaken Gods': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\gothic3\\UserOptions.ini}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\gothic3\\}}" +"Gothic 3: Forsaken Gods": gog: 1207658993 pageId: 24753 steam: 65600 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Gothic3ForsakenGods\_UserOptions.ini}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Gothic3ForsakenGods\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Gothic3ForsakenGods\\_UserOptions.ini}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Gothic3ForsakenGods\\}}" Gothic II: gog: 1207658718 pageId: 4285 steam: 39510 templates: - - '{{Game data/config|Windows|{{p|game}}\system\GOTHIC.INI}}' - - '{{Game data/saves|Windows|{{p|game}}\Saves\}}' + - "{{Game data/config|Windows|{{p|game}}\\system\\GOTHIC.INI}}" + - "{{Game data/saves|Windows|{{p|game}}\\Saves\\}}" Gothic Playable Teaser: pageId: 154630 steam: 950670 templates: - - '{{Game data/saves|Steam|Steam\steamapps\common\THQBCNP1\GothicRemake\Saved\SaveGames}}' + - "{{Game data/saves|Steam|Steam\\steamapps\\common\\THQBCNP1\\GothicRemake\\Saved\\SaveGames}}" Gothicc Breaker: pageId: 90098 steam: 819230 Goto: pageId: 108508 steam: 906880 -'Gotta Get Going: Steam Smugglers VR': +"Gotta Get Going: Steam Smugglers VR": pageId: 88676 steam: 783320 Gotta Go: @@ -70588,8 +68662,8 @@ Gourmet Warriors: pageId: 141127 steam: 1104460 templates: - - '{{Game data/config|Windows|{{P|game}}\res\}}' - - '{{Game data/saves|Windows|{{P|game}}\res\}}' + - "{{Game data/config|Windows|{{P|game}}\\res\\}}" + - "{{Game data/saves|Windows|{{P|game}}\\res\\}}" Government Simulator: pageId: 74580 steam: 731920 @@ -70597,7 +68671,7 @@ Governor of Poker 2: pageId: 41070 steam: 70200 templates: - - '{{Game data/saves|Windows|{{p|appdata}}\YoudaGames\Governor_of_Poker2_v100_standard\save}}' + - "{{Game data/saves|Windows|{{p|appdata}}\\YoudaGames\\Governor_of_Poker2_v100_standard\\save}}" Governor of Poker 3: pageId: 44539 steam: 436150 @@ -70617,12 +68691,12 @@ GraFi Christmas: pageId: 153050 steam: 1192500 templates: - - '{{Game data/saves|Windows|{{p|game}}\.}}' + - "{{Game data/saves|Windows|{{p|game}}\\.}}" GraFi Halloween: pageId: 148725 steam: 1172660 templates: - - '{{Game data/saves|Windows|{{p|game}}\.}}' + - "{{Game data/saves|Windows|{{p|game}}\\.}}" GraFi Lunar: pageId: 155849 steam: 1214500 @@ -70639,8 +68713,8 @@ Grabity: pageId: 75141 steam: 652810 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Ninja Thumbs\Grabity\}}' - - '{{Game data/saves|Windows|{{P|hkcu}}\Software\Ninja Thumbs\Grabity\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Ninja Thumbs\\Grabity\\}}" + - "{{Game data/saves|Windows|{{P|hkcu}}\\Software\\Ninja Thumbs\\Grabity\\}}" Grace: pageId: 156047 steam: 1185340 @@ -70651,8 +68725,8 @@ Graceful Explosion Machine: pageId: 66655 steam: 575450 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\graceful_explosion_machine\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\graceful_explosion_machine\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\graceful_explosion_machine\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\graceful_explosion_machine\\}}" Gradius Deluxe Pack: pageId: 158641 Gradually Forward: @@ -70681,35 +68755,35 @@ Gran Vitreous: Granado Espada: pageId: 45071 steam: 319730 -'Granblue Fantasy Versus: Rising': +"Granblue Fantasy Versus: Rising": pageId: 189097 steam: 2157560 -'Granblue Fantasy: Relink': +"Granblue Fantasy: Relink": pageId: 173628 steam: 881020 -'Granblue Fantasy: Versus': +"Granblue Fantasy: Versus": pageId: 158179 steam: 1090630 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\GBVS\Saved\Config\WindowsNoEditor}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\GBVS\Saved\SaveGames}}' -'Grand Academy II: Attack of the Sequel': + - "{{Game data/config|Windows|{{P|localappdata}}\\GBVS\\Saved\\Config\\WindowsNoEditor}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\GBVS\\Saved\\SaveGames}}" +"Grand Academy II: Attack of the Sequel": pageId: 150377 steam: 1166800 Grand Academy for Future Villains: pageId: 71782 steam: 711240 -'Grand Ages: Medieval': +"Grand Ages: Medieval": gog: 1442498547 pageId: 34318 steam: 310470 -'Grand Ages: Rome': +"Grand Ages: Rome": pageId: 28908 steam: 23450 steamSide: - 23455 templates: - - '{{Game data/saves|Windows|{{p|appdata}}/Reign of Augustus/Saves/}}' + - "{{Game data/saves|Windows|{{p|appdata}}/Reign of Augustus/Saves/}}" Grand Battle: pageId: 130063 steam: 1044920 @@ -70720,7 +68794,7 @@ Grand Class Melee 2: pageId: 48817 steam: 340440 templates: - - '{{Game data/saves|Windows|{{p|LOCALAPPDATA}}\Ogopogoid\Grand Class Melee 2\savegame.sav}}' + - "{{Game data/saves|Windows|{{p|LOCALAPPDATA}}\\Ogopogoid\\Grand Class Melee 2\\savegame.sav}}" Grand Dude Simulator: pageId: 129589 steam: 1037960 @@ -70735,18 +68809,18 @@ Grand Hand: Grand Kokoro - Episode 1: pageId: 100218 steam: 889030 -Grand Pigeon's Duty: +"Grand Pigeon's Duty": pageId: 34583 steam: 449530 Grand Prix 2: pageId: 26486 templates: - - '{{Game data/saves|DOS|{{p|game}}\}}' + - "{{Game data/saves|DOS|{{p|game}}\\}}" Grand Prix 3: pageId: 14702 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/saves|Windows|{{p|game}}\}}' + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\}}" Grand Prix 4: pageId: 14210 Grand Prix Legends: @@ -70757,7 +68831,7 @@ Grand Pskov Story: Grand Strategy: pageId: 121391 steam: 952090 -'Grand Tactician: The Civil War (1861-1865)': +"Grand Tactician: The Civil War (1861-1865)": gog: 1229916877 pageId: 105701 steam: 654890 @@ -70765,15 +68839,15 @@ Grand Theft Auto: pageId: 3942 steam: 12170 templates: - - '{{Game data/config|Windows|{{p|hklm}}\Software\DMA Design\Grand Theft Auto\}}' - - '{{Game data/saves|DOS|{{p|game}}\GTADATA\PLAYER_A.DAT}}' - - '{{Game data/saves|Windows|{{p|game}}\GTADATA\PLAYER_A.DAT}}' + - "{{Game data/config|Windows|{{p|hklm}}\\Software\\DMA Design\\Grand Theft Auto\\}}" + - "{{Game data/saves|DOS|{{p|game}}\\GTADATA\\PLAYER_A.DAT}}" + - "{{Game data/saves|Windows|{{p|game}}\\GTADATA\\PLAYER_A.DAT}}" Grand Theft Auto 2: pageId: 3933 steam: 12180 templates: - - '{{Game data/config|Windows|{{p|hklm}}\Software\{{p|wow64}}\DMA Design Ltd\GTA2\}}' - - '{{Game data/saves|Windows|{{p|game}}\player\}}' + - "{{Game data/config|Windows|{{p|hklm}}\\Software\\{{p|wow64}}\\DMA Design Ltd\\GTA2\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\player\\}}" Grand Theft Auto III: pageId: 2853 steam: 12100 @@ -70781,36 +68855,29 @@ Grand Theft Auto III: - 12230 - 12280 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\GTA3 User Files\gta3.set}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\GTA3 User Files\GTA3sf*.b}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Documents/GTA3 User Files/}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\GTA3 User Files\\gta3.set}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\GTA3 User Files\\GTA3sf*.b}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Documents/GTA3 User Files/}}" Grand Theft Auto III – The Definitive Edition: pageId: 172280 steam: 1546970 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\Rockstar Games\GTA III Definitive - Edition\Config\WindowsNoEditor\}} - - >- - {{Game data/saves|Windows|{{p|userprofile\Documents}}\Rockstar Games\GTA III Definitive - Edition\Profiles\{{p|uid}}\}} + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Rockstar Games\\GTA III Definitive Edition\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Rockstar Games\\GTA III Definitive Edition\\Profiles\\{{p|uid}}\\}}" Grand Theft Auto IV: pageId: 299 steam: 12210 steamSide: - - 901583 - 200690 + - 901583 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Rockstar Games\GTA IV\Settings\SETTINGS.CFG}}' - - |- - {{Game data/saves|Windows| - {{P|userprofile\Documents}}\Rockstar Games\GTA IV\Profiles\{{P|uid}}\ (Complete Edition)| - {{p|localappdata}}\Rockstar Games\GTA IV\savegames\{{P|uid}}\ (Retail patches)}} -'Grand Theft Auto Re: Liberty City Stories': + - "{{Game data/config|Windows|{{p|localappdata}}\\Rockstar Games\\GTA IV\\Settings\\SETTINGS.CFG}}" + - "{{Game data/saves|Windows|\n{{P|userprofile\\Documents}}\\Rockstar Games\\GTA IV\\Profiles\\{{P|uid}}\\ (Complete Edition)|\n{{p|localappdata}}\\Rockstar Games\\GTA IV\\savegames\\{{P|uid}}\\ (Retail patches)}}" +"Grand Theft Auto Re: Liberty City Stories": pageId: 167582 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\GTA Liberty City Stories User Files\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\GTA Liberty City Stories User Files\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\GTA Liberty City Stories User Files\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\GTA Liberty City Stories User Files\\}}" Grand Theft Auto V: pageId: 17708 steam: 271590 @@ -70818,21 +68885,17 @@ Grand Theft Auto V: - 362003 - 376850 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\Rockstar Games\GTA V\}}' - - >- - {{Game data/saves|Windows|{{P|userprofile\Documents}}\Rockstar Games\GTA - V\Profiles\{{P|uid}}|{{P|programdata}}\Socialclub\Player\}} -'Grand Theft Auto: Chinatown Wars': + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\Rockstar Games\\GTA V\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\Rockstar Games\\GTA V\\Profiles\\{{P|uid}}|{{P|programdata}}\\Socialclub\\Player\\}}" +"Grand Theft Auto: Chinatown Wars": pageId: 168124 -'Grand Theft Auto: Episodes from Liberty City': +"Grand Theft Auto: Episodes from Liberty City": pageId: 1518 steam: 12220 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Rockstar Games\GTA IV\Settings\SETTINGS_EFLC.CFG}}' - - >- - {{Game data/saves|Windows|{{p|localappdata}}\Rockstar Games\GTA - IV\savegames\{{P|uid}}\|{{P|userprofile\Documents}}\Rockstar Games\GTA IV\Profiles\{{P|uid}}\ (Complete Edition)}} -'Grand Theft Auto: San Andreas': + - "{{Game data/config|Windows|{{p|localappdata}}\\Rockstar Games\\GTA IV\\Settings\\SETTINGS_EFLC.CFG}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Rockstar Games\\GTA IV\\savegames\\{{P|uid}}\\|{{P|userprofile\\Documents}}\\Rockstar Games\\GTA IV\\Profiles\\{{P|uid}}\\ (Complete Edition)}}" +"Grand Theft Auto: San Andreas": pageId: 1886 steam: 12120 steamSide: @@ -70840,75 +68903,49 @@ Grand Theft Auto V: - 110720 - 206270 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\GTA San Andreas User Files\gta_sa.set}}' - - >- - {{Game data/saves|Windows|{{p|userprofile\Documents}}\GTA San Andreas User - Files\GTASAsf*.b|{{p|userprofile\Documents}}\GTA San Andreas User Files\Gallery\}} - - >- - {{Game data/saves|Microsoft - Store|{{p|localappdata}}\Packages\RockstarGames.GrandTheftAutoSanAndreas_3t068xe29zjvp\LocalState}} - - '{{Game data/saves|OS X|{{p|osxhome}}/Documents/Rockstar Games/GTA San Andreas User Files/}}' -'Grand Theft Auto: San Andreas Next-gen+': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\GTA San Andreas User Files\\gta_sa.set}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\GTA San Andreas User Files\\GTASAsf*.b|{{p|userprofile\\Documents}}\\GTA San Andreas User Files\\Gallery\\}}" + - "{{Game data/saves|Microsoft Store|{{p|localappdata}}\\Packages\\RockstarGames.GrandTheftAutoSanAndreas_3t068xe29zjvp\\LocalState}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Documents/Rockstar Games/GTA San Andreas User Files/}}" +"Grand Theft Auto: San Andreas Next-gen+": pageId: 183712 templates: - - '{{Game data/config|Windows|{{p|game}}\userfiles\gta_sa.set}}' - - '{{Game data/saves|Windows|{{p|game}}\userfiles\GTASAsf*.b}}' -'Grand Theft Auto: San Andreas – The Definitive Edition': + - "{{Game data/config|Windows|{{p|game}}\\userfiles\\gta_sa.set}}" + - "{{Game data/saves|Windows|{{p|game}}\\userfiles\\GTASAsf*.b}}" +"Grand Theft Auto: San Andreas – The Definitive Edition": pageId: 172282 steam: 1547000 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\Rockstar Games\GTA San Andreas Definitive - Edition\Config\WindowsNoEditor\}} - - >- - {{Game data/saves|Windows|{{p|userprofile\Documents}}\Rockstar Games\GTA San Andreas Definitive - Edition\Profiles\{{p|uid}}\}} -'Grand Theft Auto: The Trilogy – The Definitive Edition': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Rockstar Games\\GTA San Andreas Definitive Edition\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Rockstar Games\\GTA San Andreas Definitive Edition\\Profiles\\{{p|uid}}\\}}" +"Grand Theft Auto: The Trilogy – The Definitive Edition": pageId: 172128 steam: 817628 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\Rockstar Games\GTA III Definitive - Edition\Config\WindowsNoEditor\
- - {{p|userprofile\Documents}}\Rockstar Games\GTA Vice City Definitive Edition\Config\WindowsNoEditor\
- - {{p|userprofile\Documents}}\Rockstar Games\GTA San Andreas Definitive Edition\Config\WindowsNoEditor\}} - - >- - {{Game data/saves|Windows|{{p|userprofile\Documents}}\Rockstar Games\GTA III Definitive - Edition\Profiles\{{p|uid}}\
- - {{p|userprofile\Documents}}\Rockstar Games\GTA Vice City Definitive Edition\Profiles\{{p|uid}}\
- - {{p|userprofile\Documents}}\Rockstar Games\GTA San Andreas Definitive Edition\Profiles\{{p|uid}}\}} -'Grand Theft Auto: Vice City': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Rockstar Games\\GTA III Definitive Edition\\Config\\WindowsNoEditor\\
\n{{p|userprofile\\Documents}}\\Rockstar Games\\GTA Vice City Definitive Edition\\Config\\WindowsNoEditor\\
\n{{p|userprofile\\Documents}}\\Rockstar Games\\GTA San Andreas Definitive Edition\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Rockstar Games\\GTA III Definitive Edition\\Profiles\\{{p|uid}}\\
\n{{p|userprofile\\Documents}}\\Rockstar Games\\GTA Vice City Definitive Edition\\Profiles\\{{p|uid}}\\
\n{{p|userprofile\\Documents}}\\Rockstar Games\\GTA San Andreas Definitive Edition\\Profiles\\{{p|uid}}\\}}" +"Grand Theft Auto: Vice City": pageId: 994 steam: 12110 steamSide: - 12240 - 110700 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\GTA Vice City User Files\gta_vc.set}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\GTA Vice City User Files\GTAVCsf*.b}}' - - >- - {{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Grand Theft Auto Vice City/p_drive/Documents/GTA - Vice City User Files/}} -'Grand Theft Auto: Vice City Stories PC Edition': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\GTA Vice City User Files\\gta_vc.set}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\GTA Vice City User Files\\GTAVCsf*.b}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Grand Theft Auto Vice City/p_drive/Documents/GTA Vice City User Files/}}" +"Grand Theft Auto: Vice City Stories PC Edition": pageId: 29067 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\Documents\GTA Vice City Stories User Files\*.set}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\Documents\GTA Vice City Stories User Files\GTAVCSsf*.b}}' -'Grand Theft Auto: Vice City – The Definitive Edition': + - "{{Game data/config|Windows|{{p|userprofile}}\\Documents\\GTA Vice City Stories User Files\\*.set}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Documents\\GTA Vice City Stories User Files\\GTAVCSsf*.b}}" +"Grand Theft Auto: Vice City – The Definitive Edition": pageId: 172281 steam: 1546990 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\Rockstar Games\GTA Vice City Definitive - Edition\Config\WindowsNoEditor\}} - - >- - {{Game data/saves|Windows|{{p|userprofile\Documents}}\Rockstar Games\GTA Vice City Definitive - Edition\Profiles\{{p|uid}}\}} -'Grand Theft Auto: iFruit': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Rockstar Games\\GTA Vice City Definitive Edition\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Rockstar Games\\GTA Vice City Definitive Edition\\Profiles\\{{p|uid}}\\}}" +"Grand Theft Auto: iFruit": pageId: 169308 GrandNarr!: pageId: 145457 @@ -70917,20 +68954,20 @@ Grandia HD Remaster: pageId: 144927 steam: 1034860 templates: - - '{{Game data/config|Windows|{{P|appdata}}\GRANDIA1\}}' - - '{{Game data/saves|Windows|{{P|appdata}}\GRANDIA1\Saves\}}' + - "{{Game data/config|Windows|{{P|appdata}}\\GRANDIA1\\}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\GRANDIA1\\Saves\\}}" Grandia II: pageId: 12983 templates: - - '{{Game data/config|Windows|{{P|game}}\Config.cfg}}' - - '{{Game data/saves|Windows|{{P|game}}\GRANDIA2_*.sav}}' + - "{{Game data/config|Windows|{{P|game}}\\Config.cfg}}" + - "{{Game data/saves|Windows|{{P|game}}\\GRANDIA2_*.sav}}" Grandia II Anniversary Edition: gog: 1435140754 pageId: 34330 steam: 330390 templates: - - '{{Game data/config|Windows|{{p|game}}\data\saves\}}' - - '{{Game data/saves|Windows|{{p|game}}\data\saves\grandia2_*.VMS}}' + - "{{Game data/config|Windows|{{p|game}}\\data\\saves\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\data\\saves\\grandia2_*.VMS}}" Grandmaster Chess: gog: 1215396564 pageId: 171214 @@ -70941,7 +68978,7 @@ Grandpa: Grandpa and the Zombies: pageId: 76145 steam: 732390 -Grandpa's Table: +"Grandpa's Table": pageId: 42932 steam: 471570 Granny: @@ -70953,10 +68990,10 @@ Granny 3: Granny Simulator: pageId: 134894 steam: 1053680 -Granny's Grantastic Granventure: +"Granny's Grantastic Granventure": pageId: 102619 steam: 878160 -'Granny: Chapter Two': +"Granny: Chapter Two": pageId: 155985 steam: 1205040 Grape Jelly: @@ -70969,7 +69006,7 @@ Grapple Force Rena: pageId: 82217 steam: 794550 templates: - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\GrappleForceRena\User Data}}' + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\GrappleForceRena\\User Data}}" Grapple Whip: pageId: 141381 steam: 1115430 @@ -70977,8 +69014,8 @@ Grapple dog: pageId: 186427 steam: 1345860 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Grapple_Dog\grappledog_data}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Grapple_Dog\grappledog_data}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Grapple_Dog\\grappledog_data}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Grapple_Dog\\grappledog_data}}" Grappledrome: pageId: 57002 steam: 242610 @@ -70995,7 +69032,7 @@ Grass Cutter: pageId: 59365 steam: 589420 templates: - - '{{Game data/saves|Windows|{{P|hkcu}}\SOFTWARE\UsachevNikolai_GrassCutterItchIO}}' + - "{{Game data/saves|Windows|{{P|hkcu}}\\SOFTWARE\\UsachevNikolai_GrassCutterItchIO}}" Grass Max: pageId: 42609 steam: 430230 @@ -71012,17 +69049,17 @@ Gratuitous Space Battles: pageId: 1360 steam: 41800 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\GratuitousSpaceBattles\}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.positech/GSB}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\GratuitousSpaceBattles\}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.positech/GSB}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\GratuitousSpaceBattles\\}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.positech/GSB}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\GratuitousSpaceBattles\\}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.positech/GSB}}" Gratuitous Space Battles 2: gog: 1429007120 pageId: 24726 steam: 344840 templates: - - '{{Game data/config|Linux|{{P|xdgdatahome}}/GratuitousSpaceBattles2/}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/GratuitousSpaceBattles2/}}' + - "{{Game data/config|Linux|{{P|xdgdatahome}}/GratuitousSpaceBattles2/}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/GratuitousSpaceBattles2/}}" Gratuitous Tank Battles: pageId: 10306 steam: 205530 @@ -71059,10 +69096,10 @@ Grave Days: Grave Keeper: pageId: 124433 steam: 979810 -'Grave Mania: Pandemic Pandemonium': +"Grave Mania: Pandemic Pandemonium": pageId: 36616 steam: 514770 -'Grave Mania: Undead Fever': +"Grave Mania: Undead Fever": pageId: 43330 steam: 465970 Grave Matters: @@ -71071,7 +69108,7 @@ Grave Matters: Grave Prosperity - Part 1: pageId: 92217 steam: 833660 -'Grave Prosperity: Redux - Part 1': +"Grave Prosperity: Redux - Part 1": pageId: 48186 steam: 363480 Grave Tower: @@ -71090,8 +69127,8 @@ Gravel: pageId: 59133 steam: 558260 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\gravel\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\gravel\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\gravel\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\gravel\\Saved\\SaveGames\\}}" Graven: gog: 1884696426 pageId: 163141 @@ -71099,9 +69136,9 @@ Graven: - GRAVEN steam: 1371690 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Praest\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\Praest\Saved\SaveGames\}}' -'Graven: The Purple Moon Prophecy': + - "{{Game data/config|Windows|{{P|localappdata}}\\Praest\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Praest\\Saved\\SaveGames\\}}" +"Graven: The Purple Moon Prophecy": pageId: 50739 steam: 467490 Gravewood High: @@ -71125,12 +69162,12 @@ Graveyard Keeper: pageId: 58471 steam: 599140 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Lazy Bear Games\Graveyard Keeper\setting}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Preferences/unity.Lazy Bear Games.Graveyard Keeper.plist}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Lazy Bear Games/Graveyard Keeper/prefs}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Lazy Bear Games\Graveyard Keeper}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Lazy Bear Games/Graveyard Keeper}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Lazy Bear Games/Graveyard Keeper}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Lazy Bear Games\\Graveyard Keeper\\setting}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Preferences/unity.Lazy Bear Games.Graveyard Keeper.plist}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Lazy Bear Games/Graveyard Keeper/prefs}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Lazy Bear Games\\Graveyard Keeper}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Lazy Bear Games/Graveyard Keeper}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Lazy Bear Games/Graveyard Keeper}}" Graveyard Shift: pageId: 51951 steam: 511190 @@ -71141,8 +69178,8 @@ Gravi: pageId: 38776 steam: 247310 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\SOFTWARE\Hashbang Games\Gravi\}}' - - '{{Game data/saves|Windows|{{p|game}}\Gravi_Steam_v1.13b_Data\StreamingAssets\PlayerPrefs.dat}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\Hashbang Games\\Gravi\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\Gravi_Steam_v1.13b_Data\\StreamingAssets\\PlayerPrefs.dat}}" GraviSound: pageId: 112416 steam: 932480 @@ -71153,9 +69190,9 @@ Gravilon: pageId: 35396 steam: 355150 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\SOFTWARE\-\gravilon v1.02r\}}' - - '{{Game data/saves|Windows|{{p|hkcu}}\SOFTWARE\-\gravilon v1.02r\}}' -'Gravitar: Recharged': + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\-\\gravilon v1.02r\\}}" + - "{{Game data/saves|Windows|{{p|hkcu}}\\SOFTWARE\\-\\gravilon v1.02r\\}}" +"Gravitar: Recharged": gog: 2076004618 pageId: 177971 steam: 1905430 @@ -71163,14 +69200,12 @@ Gravitas: pageId: 143748 steam: 1067310 templates: - - >- - {{Game - data/config|Windows|{{P|localappdata}}\SkyArk\Saved\SaveGames\GameSettings.sav|{{P|localappdata}}\SkyArk\Saved\Config\WindowsNoEditor\}} - - '{{Game data/saves|Windows|{{P|localappdata}}\SkyArk\Saved\SaveGames\}}' -'Graviteam Tactics: Mius-Front': + - "{{Game data/config|Windows|{{P|localappdata}}\\SkyArk\\Saved\\SaveGames\\GameSettings.sav|{{P|localappdata}}\\SkyArk\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\SkyArk\\Saved\\SaveGames\\}}" +"Graviteam Tactics: Mius-Front": pageId: 34841 steam: 312980 -'Graviteam Tactics: Operation Star': +"Graviteam Tactics: Operation Star": pageId: 50671 steam: 275290 Graviton: @@ -71180,8 +69215,8 @@ Gravitron 2: pageId: 18060 steam: 21300 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/saves|Windows|{{p|game}}\Data}}' + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\Data}}" Gravitura: pageId: 135303 steam: 1059300 @@ -71191,8 +69226,8 @@ Gravity Ace: Gravity Angels: pageId: 185815 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Brilliant Digital Entertainment\PROJECTOR}}' - - '{{Game data/saves|Windows|{{P|game}}}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Brilliant Digital Entertainment\\PROJECTOR}}" + - "{{Game data/saves|Windows|{{P|game}}}}" Gravity At Its Finest: pageId: 69974 steam: 703010 @@ -71212,8 +69247,8 @@ Gravity Bone: pageId: 3534 steam: 974090 templates: - - '{{Game data/config|Windows|{{P|game}}\baseq2\kmq2config.cfg}}' - - '{{Game data/saves|Windows|{{P|game}}\baseq2\save\}}' + - "{{Game data/config|Windows|{{P|game}}\\baseq2\\kmq2config.cfg}}" + - "{{Game data/saves|Windows|{{P|game}}\\baseq2\\save\\}}" Gravity Cat: pageId: 34579 steam: 491000 @@ -71227,9 +69262,9 @@ Gravity Circuit: pageId: 105709 steam: 858710 templates: - - '{{Game data/saves|Windows|{{p|appdata}}\Gravity Circuit\profile\*.sav}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Gravity Circuit/profile/*.sav}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.local/share/Gravity Circuit/profile/*.sav}}' + - "{{Game data/saves|Windows|{{p|appdata}}\\Gravity Circuit\\profile\\*.sav}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Gravity Circuit/profile/*.sav}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.local/share/Gravity Circuit/profile/*.sav}}" Gravity Compass: pageId: 43099 steam: 438650 @@ -71258,8 +69293,8 @@ Gravity Field: pageId: 179976 steam: 1425250 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\GravityField\Saved\SaveGames\*Settings.sav}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\GravityField\Saved\SaveGames\Save*.sav}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\GravityField\\Saved\\SaveGames\\*Settings.sav}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\GravityField\\Saved\\SaveGames\\Save*.sav}}" Gravity Garden: pageId: 150261 steam: 609360 @@ -71267,10 +69302,10 @@ Gravity Ghost: pageId: 10501 steam: 251490 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Ivy Games\Gravity Ghost}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Ivy Games/Gravity Ghost}}' - - '{{Game data/saves|Windows|{{P|game}}\save\}}' - - '{{Game data/saves|Linux|{{P|game}}/save/}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Ivy Games\\Gravity Ghost}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Ivy Games/Gravity Ghost}}" + - "{{Game data/saves|Windows|{{P|game}}\\save\\}}" + - "{{Game data/saves|Linux|{{P|game}}/save/}}" Gravity Heroes: pageId: 132900 steam: 1020310 @@ -71280,7 +69315,7 @@ Gravity Island: Gravity Jump: pageId: 95503 steam: 867800 -'Gravity Lab: Gravitational Testing Facility & Observations': +"Gravity Lab: Gravitational Testing Facility & Observations": pageId: 51008 steam: 408340 Gravity League: @@ -71316,7 +69351,7 @@ Gravity Vector: Gravity Wars: pageId: 121813 steam: 877150 -'Gravity Wars: Black Hole': +"Gravity Wars: Black Hole": pageId: 120992 steam: 968560 Gravity Well: @@ -71335,8 +69370,8 @@ Gray Dawn: pageId: 94039 steam: 747360 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\GrayDawn\Saved\Config\WindowsNoEditor}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\GrayDawn\Saved\SaveGames}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\GrayDawn\\Saved\\Config\\WindowsNoEditor}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\GrayDawn\\Saved\\SaveGames}}" Gray Grofa: pageId: 66303 steam: 664580 @@ -71345,12 +69380,12 @@ Gray Matter: pageId: 21624 steam: 260570 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\GrayMatter\Profile.dat}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\GrayMatter\*.sav}}' + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\GrayMatter\\Profile.dat}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\GrayMatter\\*.sav}}" Gray Memory: pageId: 132096 steam: 1049230 -'Gray Skies, Dark Waters': +"Gray Skies, Dark Waters": pageId: 63020 steam: 543070 Gray Zone: @@ -71362,26 +69397,24 @@ GrayScale: Grayland: pageId: 155500 steam: 297190 -'Graywalkers: Purgatory': +"Graywalkers: Purgatory": pageId: 128026 steam: 1003370 Graze Counter: pageId: 65319 steam: 629440 -'Greak: Memories of Azur': +"Greak: Memories of Azur": gog: 2142923325 pageId: 170607 steam: 1311070 templates: - - >- - {{Game data/config|Windows|{{P|userprofile}}\AppData\LocalLow\Navegante Entertainment\Greak_ Memories of - Azur\Data\}} - - '{{Game data/saves|GOG.com|{{P|game}}\Greak Memories of Azur_Data\Data\}}' - - '{{Game data/saves|Steam|{{P|userprofile}}\AppData\LocalLow\Navegante Entertainment\Greak_ Memories of Azur\Data\}}' + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Navegante Entertainment\\Greak_ Memories of Azur\\Data\\}}" + - "{{Game data/saves|GOG.com|{{P|game}}\\Greak Memories of Azur_Data\\Data\\}}" + - "{{Game data/saves|Steam|{{P|userprofile}}\\AppData\\LocalLow\\Navegante Entertainment\\Greak_ Memories of Azur\\Data\\}}" Great Ball of Fire: pageId: 134658 steam: 1061970 -'Great Battle IV: Navy Field IV': +"Great Battle IV: Navy Field IV": pageId: 56409 steam: 481890 Great Battles of the American Civil War: @@ -71391,15 +69424,15 @@ Great Big War Game: pageId: 21715 steam: 216670 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Great Big War Game\screenmode.txt}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Great Big War Game}}' + - "{{Game data/config|Windows|{{p|appdata}}\\Great Big War Game\\screenmode.txt}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Great Big War Game}}" Great Cause of the Three Kingdoms: pageId: 78748 steam: 717800 -Great Hero's Beard: +"Great Hero's Beard": pageId: 114062 steam: 935270 -'Great Hunt: North America': +"Great Hunt: North America": pageId: 82348 steam: 785670 Great Mountain Experience: @@ -71412,8 +69445,8 @@ Great Permutator: pageId: 38262 steam: 319270 templates: - - '{{Game data/config|Windows|{{p|APPDATA}}\great-permutator\settings}}' - - '{{Game data/saves|Windows|{{p|APPDATA}}\great-permutator\}}' + - "{{Game data/config|Windows|{{p|APPDATA}}\\great-permutator\\settings}}" + - "{{Game data/saves|Windows|{{p|APPDATA}}\\great-permutator\\}}" Great Pyramid VR: pageId: 71598 steam: 625190 @@ -71430,35 +69463,35 @@ Great eSports Manager: pageId: 67561 steam: 671170 templates: - - '{{Game data/saves|Windows|{{P|game}}\ESPORTSManager_Data\saves\Slot*.gd}}' + - "{{Game data/saves|Windows|{{P|game}}\\ESPORTSManager_Data\\saves\\Slot*.gd}}" Gred: pageId: 153306 steam: 1143320 Greece Defense TD: pageId: 89194 steam: 650600 -'Greed 3: Old Enemies Returning': +"Greed 3: Old Enemies Returning": pageId: 129643 steam: 1034280 Greed Corp: pageId: 13415 steam: 48950 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Invictus-Games Kft\Greed Corp\}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Vanguard Games/Greed Corp/}}' - - '{{Game data/config|Steam|{{P|steam}}\userdata\{{P|uid}}\48950\local\settings.dat}}' - - '{{Game data/saves|Windows|{{p|hkcu}}\Software\Invictus-Games Kft\Greed Corp\}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Vanguard Games/Greed Corp/}}' - - '{{Game data/saves|Steam|{{P|steam}}\userdata\{{P|uid}}\48950\remote\}}' -'Greed: Black Border': + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Invictus-Games Kft\\Greed Corp\\}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Vanguard Games/Greed Corp/}}" + - "{{Game data/config|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\48950\\local\\settings.dat}}" + - "{{Game data/saves|Windows|{{p|hkcu}}\\Software\\Invictus-Games Kft\\Greed Corp\\}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Vanguard Games/Greed Corp/}}" + - "{{Game data/saves|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\48950\\remote\\}}" +"Greed: Black Border": pageId: 26031 steam: 46400 templates: - - '{{Game data/config|Windows|{{P|game}}\save}}' -'Greed: Forbidden Experiments': + - "{{Game data/config|Windows|{{P|game}}\\save}}" +"Greed: Forbidden Experiments": pageId: 125757 steam: 1007730 -'Greed: The Mad Scientist': +"Greed: The Mad Scientist": pageId: 124241 steam: 991960 GreedFall: @@ -71466,12 +69499,12 @@ GreedFall: pageId: 137032 steam: 606880 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\GreedFall\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\GreedFall\{{code|*}}.fsav}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\GreedFall\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\GreedFall\\{{code|*}}.fsav}}" Greedy Crush: pageId: 123507 steam: 985840 -Greedy Developer's Cash Grab: +"Greedy Developer's Cash Grab": pageId: 89593 steam: 804540 Greedy Dungeons: @@ -71494,13 +69527,13 @@ Green Eggs and Ham: Green Elephant 2D: pageId: 61424 steam: 589770 -'Green Elephant: Epilogue': +"Green Elephant: Epilogue": pageId: 156670 steam: 1217580 Green Field Silver Tree / 绿野白银树: pageId: 135049 steam: 1069520 -'Green Game: TimeSwapper': +"Green Game: TimeSwapper": pageId: 51012 steam: 432990 Green General: @@ -71510,10 +69543,8 @@ Green Hell: pageId: 94389 steam: 815370 templates: - - >- - {{Game data/config|Windows|{{P|steam}}\userdata\{{P|uid}}\815370\remote|{{P|hkcu}}\Software\Creepy Jar\Green - Hell}} - - '{{Game data/saves|Windows|{{P|steam}}\userdata\{{P|uid}}\815370\remote}}' + - "{{Game data/config|Windows|{{P|steam}}\\userdata\\{{P|uid}}\\815370\\remote|{{P|hkcu}}\\Software\\Creepy Jar\\Green Hell}}" + - "{{Game data/saves|Windows|{{P|steam}}\\userdata\\{{P|uid}}\\815370\\remote}}" Green Mirror: pageId: 58254 steam: 553140 @@ -71527,12 +69558,12 @@ Green Ranch: pageId: 51871 steam: 493980 templates: - - '{{Game data/config|Windows|{{p|APPDATA}}\Palaplay\GreenRanch\config.dat}}' - - '{{Game data/saves|Windows|{{p|APPDATA}}\Palaplay\GreenRanch\}}' + - "{{Game data/config|Windows|{{p|APPDATA}}\\Palaplay\\GreenRanch\\config.dat}}" + - "{{Game data/saves|Windows|{{p|APPDATA}}\\Palaplay\\GreenRanch\\}}" Green Slaughter: pageId: 87259 steam: 781940 -'Green: An Orc''s Life': +"Green: An Orc's Life": pageId: 156901 steam: 1208810 GreenFlame: @@ -71548,10 +69579,10 @@ Greenspawn Restaurant: pageId: 100274 steam: 876410 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\AppleDash\Greenspawn Restaurant}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/AppleDash/Greenspawn Restaurant}}' - - '{{Game data/saves|Windows|{{p|hkcu}}\Software\AppleDash\Greenspawn Restaurant}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/AppleDash/Greenspawn Restaurant}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\AppleDash\\Greenspawn Restaurant}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/AppleDash/Greenspawn Restaurant}}" + - "{{Game data/saves|Windows|{{p|hkcu}}\\Software\\AppleDash\\Greenspawn Restaurant}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/AppleDash/Greenspawn Restaurant}}" Greenwood the Last Ritual: pageId: 56112 steam: 536410 @@ -71566,7 +69597,7 @@ Gregor Hills Haunted Hospital: steam: 1084770 Gregory and the Hot Air Balloon: pageId: 147212 -'Gremlin Invasion: Survivor': +"Gremlin Invasion: Survivor": pageId: 48028 steam: 349980 Gremlins vs Automatons: @@ -71574,18 +69605,14 @@ Gremlins vs Automatons: pageId: 133054 steam: 587670 templates: - - >- - {{Game data/config|Windows|{{P|hkcu}}\Software\CharlieOscar\Gremlins vs - Automatons\|{{P|userprofile}}\AppData\LocalLow\CharlieOscar\Gremlins vs Automatons\player_offline.cfg}} - - '{{Game data/saves|Windows|{{P|game}}\Gremlins_vs_Automatons_Data\user.dat}}' -'Gremlins, Inc.': + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\CharlieOscar\\Gremlins vs Automatons\\|{{P|userprofile}}\\AppData\\LocalLow\\CharlieOscar\\Gremlins vs Automatons\\player_offline.cfg}}" + - "{{Game data/saves|Windows|{{P|game}}\\Gremlins_vs_Automatons_Data\\user.dat}}" +"Gremlins, Inc.": gog: 1451908972 pageId: 34833 steam: 369990 templates: - - >- - {{Game data/config|Windows|{{P|hkcu}}\Software\CharlieOscar\Gremlins, - Inc.\|{{P|userprofile}}\AppData\LocalLow\CharlieOscar\Gremlins, Inc_\player.cfg}} + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\CharlieOscar\\Gremlins, Inc.\\|{{P|userprofile}}\\AppData\\LocalLow\\CharlieOscar\\Gremlins, Inc_\\player.cfg}}" Grenade Madness: pageId: 43588 steam: 432480 @@ -71596,10 +69623,10 @@ Grey Goo: pageId: 16695 steam: 290790 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Petroglyph\Goo\}}' - - '{{Game data/config|Steam|{{p|steam}}/userdata/{{p|uid}}/290790/remote/}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Petroglyph\Goo\}}' - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/290790/remote/}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Petroglyph\\Goo\\}}" + - "{{Game data/config|Steam|{{p|steam}}/userdata/{{p|uid}}/290790/remote/}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Petroglyph\\Goo\\}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/290790/remote/}}" Grey Hack: pageId: 77908 steam: 605230 @@ -71609,10 +69636,10 @@ Grey Phobia: Grey Zone: pageId: 72907 steam: 718980 -'Grey''s Anatomy: The Video Game': +"Grey's Anatomy: The Video Game": pageId: 59996 steam: 21950 -'Grey: An Alien Dream': +"Grey: An Alien Dream": pageId: 151028 steam: 1146360 Greyfox: @@ -71632,13 +69659,13 @@ Grid Creeps: Grid Defense: pageId: 120832 steam: 956210 -'Grid Games: Color Coded': +"Grid Games: Color Coded": pageId: 104159 steam: 872310 Grid Gunner: pageId: 102761 steam: 898170 -'Grid Legion, Storm': +"Grid Legion, Storm": pageId: 37016 steam: 504620 Grid Magic: @@ -71681,26 +69708,24 @@ Griftlands: pageId: 63640 steam: 601840 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Klei\Griftlands\{{P|uid}}\settings.ini}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.local/share/Klei/Griftlands/steam-{{p|uid}}/settings.ini}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Klei\Griftlands\{{P|uid}}\saves\}}' - - >- - {{Game - data/saves|Linux|{{p|linuxhome}}/.local/share/Klei/Griftlands/steam-{{p|uid}}/saves|{{p|linuxhome}}/.local/share/Klei/Griftlands/steam-{{p|uid}}/*.lua}} + - "{{Game data/config|Windows|{{p|appdata}}\\Klei\\Griftlands\\{{P|uid}}\\settings.ini}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.local/share/Klei/Griftlands/steam-{{p|uid}}/settings.ini}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Klei\\Griftlands\\{{P|uid}}\\saves\\}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.local/share/Klei/Griftlands/steam-{{p|uid}}/saves|{{p|linuxhome}}/.local/share/Klei/Griftlands/steam-{{p|uid}}/*.lua}}" Grim Clicker: pageId: 151016 steam: 1160750 templates: - - '{{Game data/config|Windows|Unknown.}}' - - '{{Game data/saves|Windows|Unknown.}}' + - "{{Game data/config|Windows|Unknown.}}" + - "{{Game data/saves|Windows|Unknown.}}" Grim Dawn: gog: 1449651388 gogSide: - - 1812959072 - - 1551979801 - 1536648751 - - 2004748256 + - 1551979801 + - 1812959072 - 1842678741 + - 2004748256 pageId: 12161 steam: 219990 steamSide: @@ -71710,120 +69735,120 @@ Grim Dawn: - 897670 - 1088290 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Grim Dawn\Settings\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Grim Dawn\save\}}' - - '{{Game data/saves|Steam|{{P|steam}}\userdata\{{P|uid}}\219990\remote\save\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Grim Dawn\\Settings\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Grim Dawn\\save\\}}" + - "{{Game data/saves|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\219990\\remote\\save\\}}" Grim Dragons: pageId: 53118 steam: 491440 Grim Earth: pageId: 105181 steam: 905220 -'Grim Facade: A Wealth of Betrayal': +"Grim Facade: A Wealth of Betrayal": pageId: 89218 steam: 786080 -'Grim Facade: Hidden Sins': +"Grim Facade: Hidden Sins": pageId: 134666 steam: 1072180 -'Grim Facade: Mystery of Venice': +"Grim Facade: Mystery of Venice": pageId: 53636 renamedFrom: - - 'Grim Facade: Mystery of Venice Collector''s Edition' + - "Grim Facade: Mystery of Venice Collector's Edition" steam: 555820 -'Grim Facade: Sinister Obsession': +"Grim Facade: Sinister Obsession": pageId: 62344 renamedFrom: - - 'Grim Facade: Sinister Obsession Collector''s Edition' + - "Grim Facade: Sinister Obsession Collector's Edition" steam: 638290 -'Grim Facade: The Artist and The Pretender': +"Grim Facade: The Artist and The Pretender": pageId: 112816 steam: 940990 Grim Fandango: pageId: 604 templates: - - '{{Game data/saves|Windows|{{p|game}}\grim**.gsv}}' + - "{{Game data/saves|Windows|{{p|game}}\\grim**.gsv}}" Grim Fandango Remastered: gog: 1207667183 pageId: 22124 steam: 316790 templates: - - '{{Game data/config|Windows|{{P|appdata}}\Doublefine\GrimFandango\}}' - - '{{Game data/config|OS X|{{P|osxhome}}/Library/Application Support/Doublefine/GrimFandango/}}' - - '{{Game data/config|Linux|{{p|game}}/bin/Saves/}}' - - '{{Game data/config|Steam|{{p|game}}/Saves/}}' - - '{{Game data/saves|Windows|{{P|appdata}}\Doublefine\GrimFandango\}}' - - '{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/Doublefine/GrimFandango/}}' - - '{{Game data/saves|Linux|{{p|game}}/bin/Saves/}}' - - '{{Game data/saves|Steam|{{p|game}}/Saves/}}' -'Grim Legends 2: Song of the Dark Swan': + - "{{Game data/config|Windows|{{P|appdata}}\\Doublefine\\GrimFandango\\}}" + - "{{Game data/config|OS X|{{P|osxhome}}/Library/Application Support/Doublefine/GrimFandango/}}" + - "{{Game data/config|Linux|{{p|game}}/bin/Saves/}}" + - "{{Game data/config|Steam|{{p|game}}/Saves/}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\Doublefine\\GrimFandango\\}}" + - "{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/Doublefine/GrimFandango/}}" + - "{{Game data/saves|Linux|{{p|game}}/bin/Saves/}}" + - "{{Game data/saves|Steam|{{p|game}}/Saves/}}" +"Grim Legends 2: Song of the Dark Swan": gog: 1412553022 pageId: 37231 steam: 279800 templates: - - '{{Game data/config|Steam|{{P|steam}}\userdata\{{P|uid}}\279800\remote\profile\}}' - - '{{Game data/saves|Steam|{{P|steam}}\userdata\{{P|uid}}\279800\remote\profile\}}' -'Grim Legends 3: The Dark City': + - "{{Game data/config|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\279800\\remote\\profile\\}}" + - "{{Game data/saves|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\279800\\remote\\profile\\}}" +"Grim Legends 3: The Dark City": gog: 1495020538 pageId: 34487 steam: 458470 templates: - - '{{Game data/config|Steam|{{P|steam}}\userdata\{{P|uid}}\458470\remote\profile\}}' - - '{{Game data/saves|Steam|{{P|steam}}\userdata\{{P|uid}}\458470\remote\profile\}}' -'Grim Legends: The Forsaken Bride': + - "{{Game data/config|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\458470\\remote\\profile\\}}" + - "{{Game data/saves|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\458470\\remote\\profile\\}}" +"Grim Legends: The Forsaken Bride": gog: 2039033392 pageId: 37136 steam: 284850 templates: - - '{{Game data/config|Steam|{{P|steam}}\userdata\{{P|uid}}\284850\remote\profile\}}' - - '{{Game data/saves|Steam|{{P|steam}}\userdata\{{P|uid}}\284850\remote\profile\}}' + - "{{Game data/config|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\284850\\remote\\profile\\}}" + - "{{Game data/saves|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\284850\\remote\\profile\\}}" Grim Nights: pageId: 114734 steam: 947300 Grim Seventh: pageId: 55606 steam: 510730 -'Grim Tales: Bloody Mary': +"Grim Tales: Bloody Mary": pageId: 122068 steam: 956400 -'Grim Tales: Guest from the Future': +"Grim Tales: Guest from the Future": pageId: 149925 renamedFrom: - - 'Grim Tales: Guest From The Future' + - "Grim Tales: Guest From The Future" steam: 1147220 -'Grim Tales: Heritage': +"Grim Tales: Heritage": pageId: 181951 -'Grim Tales: The Bride': +"Grim Tales: The Bride": pageId: 40018 steam: 527900 -'Grim Tales: The Legacy': +"Grim Tales: The Legacy": pageId: 61042 renamedFrom: - - 'Grim Tales: The Legacy Collector''s Edition' + - "Grim Tales: The Legacy Collector's Edition" steam: 623360 -'Grim Tales: The Stone Queen': +"Grim Tales: The Stone Queen": pageId: 91837 steam: 838730 -'Grim Tales: The Vengeance': +"Grim Tales: The Vengeance": pageId: 136560 steam: 1082500 -'Grim Tales: The Wishes': +"Grim Tales: The Wishes": pageId: 77604 renamedFrom: - - 'Grim Tales: The Wishes Collector''s Edition' + - "Grim Tales: The Wishes Collector's Edition" steam: 758580 Grim Wanderings: pageId: 82827 steam: 799620 -'Grim: Mystery of Wasules': +"Grim: Mystery of Wasules": pageId: 73843 steam: 714530 -'Grimalkin: Solar Defense Force': +"Grimalkin: Solar Defense Force": pageId: 155660 steam: 1076450 Grimante: pageId: 81584 steam: 734450 -'Grimcastle: Battle Tales': +"Grimcastle: Battle Tales": pageId: 89395 steam: 813240 Grime: @@ -71836,8 +69861,8 @@ Grime: - 1524090 - 1701310 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\SOFTWARE\Clover Bite\GRIME}}' - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Clover Bite\GRIME\Save Files\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\SOFTWARE\\Clover Bite\\GRIME}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Clover Bite\\GRIME\\Save Files\\}}" Grimind: pageId: 50664 steam: 265380 @@ -71847,12 +69872,12 @@ Grimm & Tonic: Grimm 1865: pageId: 156332 steam: 1217200 -Grimm's Hollow: +"Grimm's Hollow": pageId: 150061 steam: 1170880 templates: - - '{{Game data/saves|Windows|{{p|game}}\*.lsd}}' -'Grimm: Dark Legacy': + - "{{Game data/saves|Windows|{{p|game}}\\*.lsd}}" +"Grimm: Dark Legacy": pageId: 52684 steam: 536640 Grimmwood: @@ -71864,13 +69889,13 @@ Grimmwood - They Come at Night: Grimoire Chronicles: pageId: 61426 steam: 607040 -'Grimoire: Heralds of the Winged Exemplar': +"Grimoire: Heralds of the Winged Exemplar": gog: 1569130440 pageId: 63775 steam: 650670 templates: - - '{{Game data/config|Windows|{{P|game}}\game.cfg}}' -'Grimoire: Manastorm': + - "{{Game data/config|Windows|{{P|game}}\\game.cfg}}" +"Grimoire: Manastorm": pageId: 48775 steam: 335430 Grimrush: @@ -71884,8 +69909,8 @@ Grimshade: pageId: 95268 steam: 858100 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\Games\Talerock\Grimshade\Saves\profiles.gsh}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\Games\Talerock\Grimshade\Saves\}}' + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\Games\\Talerock\\Grimshade\\Saves\\profiles.gsh}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\Games\\Talerock\\Grimshade\\Saves\\}}" Grimsonland: pageId: 123627 steam: 980680 @@ -71902,8 +69927,8 @@ Grindstone: pageId: 147901 steam: 1818690 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\SOFTWARE\Capybara Games\Grindstone}}' - - '{{Game data/saves|Epic Games Store|{{p|userprofile}}\AppData\LocalLow\Capybara Games\Grindstone\EpicSaves}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\Capybara Games\\Grindstone}}" + - "{{Game data/saves|Epic Games Store|{{p|userprofile}}\\AppData\\LocalLow\\Capybara Games\\Grindstone\\EpicSaves}}" Grindzones: pageId: 134969 steam: 1074840 @@ -71911,7 +69936,7 @@ Gripper: gog: 1482604046 pageId: 177558 steam: 1336380 -Gripper's Adventure: +"Gripper's Adventure": pageId: 87473 steam: 811440 Griptape Backbone: @@ -71924,18 +69949,10 @@ Gris: - GRIS steam: 683320 templates: - - >- - {{Game data/config|Windows|{{p|hkcu}}\Software\nomada studio\GRIS|{{p|userprofile}}\AppData\LocalLow\nomada - studio\GRIS\{{p|uid}}\Save01\Config.gs}} - - >- - {{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\nomada - studio\GRIS\{{p|uid}}\Save01\Persistent.gs|{{p|userprofile}}\AppData\LocalLow\nomada - studio\GRIS\{{p|uid}}\Save01\Progress.gs}} - - '{{Game data/saves|Microsoft Store|{{p|userprofile}}\AppData\LocalLow\nomada studio\GRIS\Save01\}}' - - >- - {{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/nomada - studio/GRIS/{{p|uid}}/Save01/Persistent.gs|{{p|osxhome}}/Library/Application Support/nomada - studio/GRIS/{{p|uid}}/Save01/Progress.gs}} + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\nomada studio\\GRIS|{{p|userprofile}}\\AppData\\LocalLow\\nomada studio\\GRIS\\{{p|uid}}\\Save01\\Config.gs}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\nomada studio\\GRIS\\{{p|uid}}\\Save01\\Persistent.gs|{{p|userprofile}}\\AppData\\LocalLow\\nomada studio\\GRIS\\{{p|uid}}\\Save01\\Progress.gs}}" + - "{{Game data/saves|Microsoft Store|{{p|userprofile}}\\AppData\\LocalLow\\nomada studio\\GRIS\\Save01\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/nomada studio/GRIS/{{p|uid}}/Save01/Persistent.gs|{{p|osxhome}}/Library/Application Support/nomada studio/GRIS/{{p|uid}}/Save01/Progress.gs}}" Grisaia Phantom Trigger Vol.1: pageId: 61490 steam: 606510 @@ -71957,7 +69974,7 @@ Grisaia Phantom Trigger Vol.5.5: Grisaia Phantom Trigger Vol.6: pageId: 134711 steam: 1039970 -'Grit : Overworld Survival': +"Grit : Overworld Survival": pageId: 135061 steam: 1069840 Gritty Bit VR: @@ -71976,7 +69993,7 @@ Grobda Remix: pageId: 75113 steam: 739000 templates: - - '{{Game data/saves|Windows|{{p|game}}\kotokata_Data\save\}}' + - "{{Game data/saves|Windows|{{p|game}}\\kotokata_Data\\save\\}}" Groggers!: pageId: 53204 steam: 536920 @@ -71999,7 +70016,7 @@ Groove Coaster: pageId: 98224 steam: 744060 templates: - - '{{Game data/saves|Windows|{{P|appdata}}\gcst\}}' + - "{{Game data/saves|Windows|{{P|appdata}}\\gcst\\}}" Groove Gunner: pageId: 124542 steam: 976930 @@ -72015,11 +70032,11 @@ Grotesque Beauty - A Psychological Horror Text Adventure: Grotesque Tactics 2 - Dungeons and Donuts: pageId: 40855 steam: 46570 -'Grotesque Tactics: Evil Heroes': +"Grotesque Tactics: Evil Heroes": pageId: 41066 steam: 46450 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Grotesque-Tactics\Settings\Config.xml}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Grotesque-Tactics\\Settings\\Config.xml}}" Grotoro: pageId: 92676 steam: 825580 @@ -72027,7 +70044,7 @@ Grottesco Absurdus: pageId: 114822 steam: 948990 templates: - - '{{Game data/saves|Windows|{{P|localappdata}}\Fucking_Hare\Grottesco_Absurdus.dat}}' + - "{{Game data/saves|Windows|{{P|localappdata}}\\Fucking_Hare\\Grottesco_Absurdus.dat}}" Grotto: gog: 1330646559 pageId: 172400 @@ -72039,8 +70056,8 @@ Ground Branch: pageId: 100426 steam: 16900 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\GroundBranch\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\GroundBranch\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\GroundBranch\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\GroundBranch\\}}" Ground Breakers: pageId: 33757 steam: 376250 @@ -72049,16 +70066,16 @@ Ground Control: pageId: 8468 steam: 254820 templates: - - '{{Game data/config|Windows|{{p|game}}\data\games\settings.dat}}' - - '{{Game data/saves|Windows|{{p|game}}\data\games\game*}}' -'Ground Control II: Operation Exodus': + - "{{Game data/config|Windows|{{p|game}}\\data\\games\\settings.dat}}" + - "{{Game data/saves|Windows|{{p|game}}\\data\\games\\game*}}" +"Ground Control II: Operation Exodus": gog: 1207658782 pageId: 13187 steam: 254840 templates: - - '{{Game data/config|Windows|{{p|game}}\profiles\[profile number]\[profile number].profile}}' - - '{{Game data/saves|Windows|{{p|game}}\profiles\[profile number]\*.gciisave}}' -'Ground Runner: Trials': + - "{{Game data/config|Windows|{{p|game}}\\profiles\\[profile number]\\[profile number].profile}}" + - "{{Game data/saves|Windows|{{p|game}}\\profiles\\[profile number]\\*.gciisave}}" +"Ground Runner: Trials": pageId: 80535 steam: 759060 Ground War: @@ -72071,16 +70088,16 @@ Grounded: pageId: 152138 steam: 962130 templates: - - '{{Game data/config|Microsoft Store|{{p|localappdata}}\Maine\Saved\Config\WinGDK\}}' - - '{{Game data/config|Steam|{{p|localappdata}}\Maine\Saved\Config\}}' - - '{{Game data/saves|Microsoft Store|{{P|LOCALAPPDATA}}\Packages\Microsoft.Maine_8wekyb3d8bbwe\SystemAppData\wgs}}' - - '{{Game data/saves|Steam|{{P|USERPROFILE}}\Saved Games\Grounded}}' -'Groundhog Day: Like Father Like Son': + - "{{Game data/config|Microsoft Store|{{p|localappdata}}\\Maine\\Saved\\Config\\WinGDK\\}}" + - "{{Game data/config|Steam|{{p|localappdata}}\\Maine\\Saved\\Config\\}}" + - "{{Game data/saves|Microsoft Store|{{P|LOCALAPPDATA}}\\Packages\\Microsoft.Maine_8wekyb3d8bbwe\\SystemAppData\\wgs}}" + - "{{Game data/saves|Steam|{{P|USERPROFILE}}\\Saved Games\\Grounded}}" +"Groundhog Day: Like Father Like Son": pageId: 144899 steam: 1087500 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\GHD\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\GHD\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\GHD\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\GHD\\Saved\\SaveGames\\}}" Groundless: pageId: 109854 steam: 916780 @@ -72094,26 +70111,24 @@ Grow Home: pageId: 22676 steam: 323320 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Reflections\Grow Home\}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Reflections/Grow Home/}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\GrowHome\}}' - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/323320/remote/}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Reflections\\Grow Home\\}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Reflections/Grow Home/}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\GrowHome\\}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/323320/remote/}}" Grow Up: pageId: 36017 steam: 426790 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Reflections\Grow Up\}}' - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/426790/remote/}}' -'Grow: Song of the Evertree': + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Reflections\\Grow Up\\}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/426790/remote/}}" +"Grow: Song of the Evertree": gog: 1524366985 pageId: 172897 steam: 1380420 templates: - - >- - {{Game data/config|Windows|{{P|userprofile\appdata\locallow}}\505 Games\Grow_ Song of the - Evertree\settings.prefs}} - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\505 Games\Grow_ Song of the Evertree\}}' -'Grow: Wild West': + - "{{Game data/config|Windows|{{P|userprofile\\appdata\\locallow}}\\505 Games\\Grow_ Song of the Evertree\\settings.prefs}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\505 Games\\Grow_ Song of the Evertree\\}}" +"Grow: Wild West": pageId: 94475 steam: 848300 GrowRilla: @@ -72124,24 +70139,24 @@ Growbot: pageId: 64926 steam: 661680 templates: - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\Dumpling Media\Growbot}}' + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\Dumpling Media\\Growbot}}" Growing Pains: pageId: 50192 steam: 291610 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\SavedGames\GrowingPains\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/GrowingPains/}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/GrowingPains/}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\SavedGames\GrowingPains\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/GrowingPains/}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/GrowingPains/}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\SavedGames\\GrowingPains\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/GrowingPains/}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/GrowingPains/}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\SavedGames\\GrowingPains\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/GrowingPains/}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/GrowingPains/}}" Growing Up: gog: 2063281711 pageId: 174260 steam: 1191120 templates: - - '{{Game data/saves|Windows|C:\Users\\Documents\Growing Up}}' - - '{{Game data/saves|OS X|/Library/Application Support/Vile Monarch/Growing Up}}' + - "{{Game data/saves|Windows|C:\\Users\\\\Documents\\Growing Up}}" + - "{{Game data/saves|OS X|/Library/Application Support/Vile Monarch/Growing Up}}" Growlanser: pageId: 183995 Grudge TV: @@ -72169,14 +70184,14 @@ GuJian 3: pageId: 125506 steam: 994280 templates: - - '{{Game data/config|Windows|{{p|game}}\config\}}' + - "{{Game data/config|Windows|{{p|game}}\\config\\}}" Guacamelee! 2: gog: 1316908698 gogSide: - 1165180350 - - 1912729628 - 1263671489 - 1460368534 + - 1912729628 pageId: 91594 steam: 534550 steamSide: @@ -72184,44 +70199,42 @@ Guacamelee! 2: - 942540 - 944350 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Guacamelee2Settings\LOCALSETTINGS.DAT}}' - - '{{Game data/config|Epic Games Launcher|{{p|userprofile\Documents}}\Guacamelee2_EGS\LOCALSETTINGS.DAT}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Guacamelee2\SAVE.DAT}}' - - '{{Game data/saves|Epic Games Launcher|{{p|userprofile\Documents}}\Guacamelee2_EGS\SAVE.DAT}}' - - >- - {{Game data/saves|Microsoft - Store|{{p|localappdata}}\Packages\DrinkboxStudios.Guacamelee2_n8jvyy2pw6mya\SystemAppData\wgs}} - - '{{Game data/saves|Steam|{{p|Steam}}\userdata\{{p|uid}}\534550\remote\SAVE.DAT}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Guacamelee2Settings\\LOCALSETTINGS.DAT}}" + - "{{Game data/config|Epic Games Launcher|{{p|userprofile\\Documents}}\\Guacamelee2_EGS\\LOCALSETTINGS.DAT}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Guacamelee2\\SAVE.DAT}}" + - "{{Game data/saves|Epic Games Launcher|{{p|userprofile\\Documents}}\\Guacamelee2_EGS\\SAVE.DAT}}" + - "{{Game data/saves|Microsoft Store|{{p|localappdata}}\\Packages\\DrinkboxStudios.Guacamelee2_n8jvyy2pw6mya\\SystemAppData\\wgs}}" + - "{{Game data/saves|Steam|{{p|Steam}}\\userdata\\{{p|uid}}\\534550\\remote\\SAVE.DAT}}" Guacamelee! Gold Edition: gog: 1207659513 pageId: 9171 steam: 214770 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Guacamelee\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Documents/Drinkbox Studios/Guacamelee/}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/Drinkbox Studios/Guacamelee/}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Guacamelee\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Documents/Drinkbox Studios/Guacamelee/}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/Drinkbox Studios/Guacamelee/}}' - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{P|uid}}/214770/remote/}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Guacamelee\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Documents/Drinkbox Studios/Guacamelee/}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/Drinkbox Studios/Guacamelee/}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Guacamelee\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Documents/Drinkbox Studios/Guacamelee/}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/Drinkbox Studios/Guacamelee/}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{P|uid}}/214770/remote/}}" Guacamelee! Super Turbo Championship Edition: gog: 1207665733 pageId: 19312 steam: 275390 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\GuacameleeSTCE\LOCALSETTINGS.DAT}}' - - '{{Game data/config|Epic Games Launcher|{{p|userprofile\Documents}}\GuacameleeSTCE_EGS\LOCALSETTINGS.DAT}}' - - '{{Game data/saves|Epic Games Launcher|{{p|userprofile\Documents}}\GuacameleeSTCE_EGS\SAVE.DAT}}' - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{P|uid}}\275390\remote\SAVE.DAT}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\GuacameleeSTCE\\LOCALSETTINGS.DAT}}" + - "{{Game data/config|Epic Games Launcher|{{p|userprofile\\Documents}}\\GuacameleeSTCE_EGS\\LOCALSETTINGS.DAT}}" + - "{{Game data/saves|Epic Games Launcher|{{p|userprofile\\Documents}}\\GuacameleeSTCE_EGS\\SAVE.DAT}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{P|uid}}\\275390\\remote\\SAVE.DAT}}" Guard Duty: gog: 1455980545 pageId: 96709 steam: 872750 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\Saved Games\Guard Duty\acsetup.cfg}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/ags/Guard Duty/acsetup.cfg}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\Saved Games\Guard Duty\}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/ags/Guard Duty/}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\Saved Games\\Guard Duty\\acsetup.cfg}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/ags/Guard Duty/acsetup.cfg}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Saved Games\\Guard Duty\\}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/ags/Guard Duty/}}" Guard of Wonderland: pageId: 113786 steam: 924940 @@ -72261,7 +70274,7 @@ Guardian of the Demon Valley: Guardian of the Future: pageId: 139532 steam: 1076610 -Guardian's Oath: +"Guardian's Oath": pageId: 50771 steam: 531890 Guardians Of Rings: @@ -72282,7 +70295,7 @@ Guardians of Graxia: Guardians of Hyelore: pageId: 171841 steam: 1525330 -'Guardians of Infinity: To Save Kennedy': +"Guardians of Infinity: To Save Kennedy": pageId: 165081 steam: 1357570 Guardians of Life VR: @@ -72295,13 +70308,13 @@ Guardians of Victoria: pageId: 35399 steam: 385080 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\GuardiansofVictoria\User Data\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\GuardiansofVictoria\User Data\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\GuardiansofVictoria\\User Data\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\GuardiansofVictoria\\User Data\\}}" Guardians of the Ashes: pageId: 156684 steam: 1195020 templates: - - '{{Game data/saves|Windows|{{p|game}}\GotA_Data\Saves\}}' + - "{{Game data/saves|Windows|{{p|game}}\\GotA_Data\\Saves\\}}" Guardians of the Past: pageId: 102575 steam: 846130 @@ -72311,14 +70324,14 @@ Guards: Guards of the Gate: pageId: 89581 steam: 815290 -'Guazu: The Rescue': +"Guazu: The Rescue": pageId: 175486 steam: 1620920 Gubble 2: pageId: 31302 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Actual Entertainment\Gubble 2\}}' - - '{{Game data/saves|Windows|{{P|game}}\gubble0#.sav}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Actual Entertainment\\Gubble 2\\}}" + - "{{Game data/saves|Windows|{{P|game}}\\gubble0#.sav}}" Guess Da Meme: pageId: 96553 steam: 869110 @@ -72369,14 +70382,14 @@ Guild Wars 2: - 2450010 - 2486290 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Guild Wars 2\GFXSettings.Gw2.exe.xml}}' + - "{{Game data/config|Windows|{{p|appdata}}\\Guild Wars 2\\GFXSettings.Gw2.exe.xml}}" Guild Wars Factions: pageId: 51118 steam: 29610 Guild Wars Nightfall: pageId: 51119 steam: 29580 -'Guild Wars: Eye of the North': +"Guild Wars: Eye of the North": pageId: 41074 steam: 29700 Guild of Ascension: @@ -72392,8 +70405,8 @@ Guild of Dungeoneering: pageId: 34356 steam: 317820 templates: - - '{{Game data/config|Windows|{{P|appdata}}\dungeoneering\Local Store\settings.dat}}' - - '{{Game data/saves|Windows|{{P|appdata}}\dungeoneering\Local Store\}}' + - "{{Game data/config|Windows|{{P|appdata}}\\dungeoneering\\Local Store\\settings.dat}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\dungeoneering\\Local Store\\}}" GuildBound: pageId: 139688 steam: 1098320 @@ -72409,9 +70422,9 @@ Guilty Gear: pageId: 136395 steam: 850980 templates: - - '{{Game data/config|Windows|{{P|userprofile\appdata\locallow}}\Arc System Works\GUILTY GEAR}}' - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Arc System Works\GUILTY GEAR\savedata}}' -'Guilty Gear 2: Overture': + - "{{Game data/config|Windows|{{P|userprofile\\appdata\\locallow}}\\Arc System Works\\GUILTY GEAR}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Arc System Works\\GUILTY GEAR\\savedata}}" +"Guilty Gear 2: Overture": pageId: 43869 steam: 437000 Guilty Gear Isuka: @@ -72419,14 +70432,14 @@ Guilty Gear Isuka: pageId: 34336 steam: 267900 templates: - - '{{Game data/config|Windows|{{p|appdata}}\ZOO Digital Publishing\GuiltyGearIsuka}}' - - '{{Game data/saves|Windows|{{p|appdata}}\ZOO Digital Publishing\GuiltyGearIsuka}}' + - "{{Game data/config|Windows|{{p|appdata}}\\ZOO Digital Publishing\\GuiltyGearIsuka}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\ZOO Digital Publishing\\GuiltyGearIsuka}}" Guilty Gear Strive: pageId: 166565 steam: 1384160 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\GGST\Saved\Config\WindowsNoEditor}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\GGST\Saved\SaveGames\{{P|uid}}}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\GGST\\Saved\\Config\\WindowsNoEditor}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\GGST\\Saved\\SaveGames\\{{P|uid}}}}" Guilty Gear X: pageId: 168120 Guilty Gear X2 Reload: @@ -72434,32 +70447,32 @@ Guilty Gear X2 Reload: pageId: 8199 steam: 314030 templates: - - '{{Game data/config|Windows|{{p|appdata}}\ZOO Digital Publishing\GuiltyGearX2}}' - - '{{Game data/saves|Windows|{{p|appdata}}\ZOO Digital Publishing\GuiltyGearX2}}' + - "{{Game data/config|Windows|{{p|appdata}}\\ZOO Digital Publishing\\GuiltyGearX2}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\ZOO Digital Publishing\\GuiltyGearX2}}" Guilty Gear XX Accent Core Plus R: pageId: 37812 steam: 348550 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\ARC SYSTEM WORKS\GGXXAC\Config}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\ARC SYSTEM WORKS\GGXXAC\save}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\ARC SYSTEM WORKS\\GGXXAC\\Config}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\ARC SYSTEM WORKS\\GGXXAC\\save}}" Guilty Gear Xrd -Revelator-: pageId: 54403 steam: 520440 templates: - - '{{Game data/config|Windows|{{P|game}}\REDGame\Config}}' - - '{{Game data/saves|Windows|{{P|game}}\SAVE}}' + - "{{Game data/config|Windows|{{P|game}}\\REDGame\\Config}}" + - "{{Game data/saves|Windows|{{P|game}}\\SAVE}}" Guilty Gear Xrd -SIGN-: pageId: 30070 steam: 376300 templates: - - '{{Game data/config|Windows|{{p|game}}\REDGame\Config\}}' - - '{{Game data/saves|Windows|{{p|game}}\SAVE\}}' + - "{{Game data/config|Windows|{{p|game}}\\REDGame\\Config\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\SAVE\\}}" Guilty Gear Xrd Rev 2: pageId: 175835 steam: 520440 templates: - - '{{Game data/config|Windows|{{P|game}}\REDGame\Config}}' - - '{{Game data/saves|Windows|{{P|game}}\SAVE}}' + - "{{Game data/config|Windows|{{P|game}}\\REDGame\\Config}}" + - "{{Game data/saves|Windows|{{P|game}}\\SAVE}}" Guilty Parade: pageId: 151277 steam: 1167170 @@ -72476,26 +70489,26 @@ Guise of the Wolf: pageId: 21498 steam: 259640 templates: - - '{{Game data/config|Windows|}}' - - '{{Game data/saves|Windows|{{p|game}}\Game\INFO1.SAV}}' + - "{{Game data/config|Windows|}}" + - "{{Game data/saves|Windows|{{p|game}}\\Game\\INFO1.SAV}}" Guitar Hardness: pageId: 69571 steam: 694470 -'Guitar Hero III: Legends of Rock': +"Guitar Hero III: Legends of Rock": pageId: 70551 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Aspyr\Guitar Hero III\AspyrConfig.xml}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Aspyr\Guitar Hero III\Save\}}' -'Guitar Hero: Aerosmith': + - "{{Game data/config|Windows|{{p|localappdata}}\\Aspyr\\Guitar Hero III\\AspyrConfig.xml}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Aspyr\\Guitar Hero III\\Save\\}}" +"Guitar Hero: Aerosmith": pageId: 75374 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Aspyr\Guitar Hero Aerosmith\AspyrConfig.xml}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Aspyr\Guitar Hero Aerosmith\Save\}}' -'Guitar Hero: World Tour': + - "{{Game data/config|Windows|{{p|localappdata}}\\Aspyr\\Guitar Hero Aerosmith\\AspyrConfig.xml}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Aspyr\\Guitar Hero Aerosmith\\Save\\}}" +"Guitar Hero: World Tour": pageId: 75376 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Aspyr\Guitar Hero World Tour\AspyrConfig.xml}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Aspyr\Guitar Hero World Tour\Save\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Aspyr\\Guitar Hero World Tour\\AspyrConfig.xml}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Aspyr\\Guitar Hero World Tour\\Save\\}}" Guitar Simulator: pageId: 135443 steam: 1077010 @@ -72508,7 +70521,7 @@ Gulf of Aden - Task Force Somalia: Gull Kebap VR: pageId: 96493 steam: 867750 -'Gulman 4: Still alive': +"Gulman 4: Still alive": pageId: 55524 steam: 559900 Gulman 5: @@ -72526,11 +70539,11 @@ Gumball Drift: Gumboy Tournament: pageId: 41373 steam: 11230 -'Gumboy: Crazy Adventures': +"Gumboy: Crazy Adventures": pageId: 18334 steam: 2520 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' + - "{{Game data/config|Windows|{{p|game}}\\}}" Gummy Goo Clean Up: pageId: 89654 steam: 818720 @@ -72540,7 +70553,7 @@ Gump: Gump Runner: pageId: 59199 steam: 606050 -'Gumstein: The Awakening': +"Gumstein: The Awakening": pageId: 108458 steam: 906650 Gun: @@ -72548,8 +70561,8 @@ Gun: pageId: 15986 steam: 2610 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Activision\Gun\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Activision\Gun\saves\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Activision\\Gun\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Activision\\Gun\\saves\\}}" Gun Beat: pageId: 125548 steam: 1000990 @@ -72566,7 +70579,7 @@ Gun Club VR: pageId: 73879 steam: 691320 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\NextGen Reality\Gun Club VR}}' + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\NextGen Reality\\Gun Club VR}}" Gun Crazy: pageId: 113550 steam: 897640 @@ -72576,27 +70589,27 @@ Gun Devil: Gun Done: pageId: 33407 steam: 488280 -'Gun Done: Who Is Awesome': +"Gun Done: Who Is Awesome": pageId: 93337 steam: 836310 Gun Godz: pageId: 61209 steam: 522940 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\GUNGODZ}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\GUNGODZ}}" Gun Gun Pixies: pageId: 150176 steam: 1023970 templates: - - '{{Game data/config|Windows|{{P|userprofile\documents}}\My Games\GunGunPixies\setting.ini}}' - - '{{Game data/saves|Windows|{{P|userprofile\documents}}\My Games\GunGunPixies\}}' + - "{{Game data/config|Windows|{{P|userprofile\\documents}}\\My Games\\GunGunPixies\\setting.ini}}" + - "{{Game data/saves|Windows|{{P|userprofile\\documents}}\\My Games\\GunGunPixies\\}}" Gun Metal: gog: 1719266458 pageId: 25132 steam: 267920 templates: - - '{{Game data/config|Windows|{{p|game}}\data\persist.dat}}' - - '{{Game data/saves|Windows|{{p|game}}\data\SavedGames\}}' + - "{{Game data/config|Windows|{{p|game}}\\data\\persist.dat}}" + - "{{Game data/saves|Windows|{{p|game}}\\data\\SavedGames\\}}" Gun Miner: pageId: 157179 steam: 1213100 @@ -72604,8 +70617,8 @@ Gun Monkeys: pageId: 8270 steam: 239450 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\SOFTWARE\Size Five Games\Gun Monkeys\}}' - - '{{Game data/config|Steam|{{p|steam}}/userdata/{{P|uid}}/239450/remote/}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\Size Five Games\\Gun Monkeys\\}}" + - "{{Game data/config|Steam|{{p|steam}}/userdata/{{P|uid}}/239450/remote/}}" Gun Rage: pageId: 93285 steam: 840020 @@ -72619,7 +70632,7 @@ Gun Rocket: pageId: 35403 steam: 391420 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\SOFTWARE\Space Wedgie LLC\GunRocket\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\Space Wedgie LLC\\GunRocket\\}}" Gun Wings: pageId: 31214 steam: 348240 @@ -72647,9 +70660,9 @@ GunWorld: pageId: 48733 steam: 349950 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\GunWorld_Steam\}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\GunWorld_Steam\}}' -'GunZ 2: The Second Duel': + - "{{Game data/config|Windows|{{P|localappdata}}\\GunWorld_Steam\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\GunWorld_Steam\\}}" +"GunZ 2: The Second Duel": pageId: 50336 steam: 242720 Gunball: @@ -72662,8 +70675,8 @@ Gunbird: pageId: 161870 steam: 1261970 templates: - - '{{Game data/config|Windows|{{P|appdata}}\gunbird\setting.bin}}' - - '{{Game data/saves|Windows|{{P|appdata}}\gunbird\savedata.bin}}' + - "{{Game data/config|Windows|{{P|appdata}}\\gunbird\\setting.bin}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\gunbird\\savedata.bin}}" Gunbird 2: pageId: 169030 steam: 1279410 @@ -72675,28 +70688,28 @@ Guncraft: pageId: 9348 steam: 241720 templates: - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\GunCraft\}}' -'Gundam 0079: The War for Earth': + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\GunCraft\\}}" +"Gundam 0079: The War for Earth": pageId: 180216 Gundam Evolution: pageId: 175690 steam: 1816670 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\EvoGame\Saved}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\EvoGame\\Saved}}" GundeadliGne: pageId: 8189 steam: 92220 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/saves|Windows|{{p|game}}\}}' - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\92220\remote\}}' + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\92220\\remote\\}}" Gundemonium Recollection: pageId: 10481 steam: 92200 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/saves|Windows|{{p|game}}\}}' - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\92200\remote\}}' + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\92200\\remote\\}}" Gunducky Industries: pageId: 67265 steam: 686240 @@ -72704,18 +70717,14 @@ Gunfire Reborn: pageId: 160987 steam: 1217060 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\duoyi\Gunfire Reborn\}}' - - '{{Game data/saves|Windows|{{p|steam}}\userdata\{{p|uid}}\1217060\remote}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\duoyi\\Gunfire Reborn\\}}" + - "{{Game data/saves|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\1217060\\remote}}" Gungrave G.O.R.E: pageId: 181655 steam: 1630110 templates: - - >- - {{Game - data/config|Windows|{{P|localappdata}}\GunGraveGore\Saved\Config\WindowsNoEditor|{{P|localappdata}}\GunGraveGore\Saved\SaveGames\}} - - >- - {{Game - data/saves|Windows|{{P|localappdata}}\GunGraveGore\Saved\WindowsNoEditor|{{P|localappdata}}\GunGraveGore\Saved\SaveGames\}} + - "{{Game data/config|Windows|{{P|localappdata}}\\GunGraveGore\\Saved\\Config\\WindowsNoEditor|{{P|localappdata}}\\GunGraveGore\\Saved\\SaveGames\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\GunGraveGore\\Saved\\WindowsNoEditor|{{P|localappdata}}\\GunGraveGore\\Saved\\SaveGames\\}}" Gungrave VR: pageId: 129737 renamedFrom: @@ -72751,19 +70760,19 @@ Gunlok: pageId: 142974 steam: 254900 templates: - - '{{Game data/config|Windows|{{P|game}}\scripts\GLkeys.cfg}}' - - '{{Game data/saves|Windows|{{P|game}}}}' + - "{{Game data/config|Windows|{{P|game}}\\scripts\\GLkeys.cfg}}" + - "{{Game data/saves|Windows|{{P|game}}}}" Gunman Chronicles: pageId: 6558 templates: - - '{{Game data/config|Windows|{{p|game}}\Half-Life\rewolf}}' - - '{{Game data/saves|Windows|{{p|game}}\Half-Life\rewolf\SAVE}}' + - "{{Game data/config|Windows|{{p|game}}\\Half-Life\\rewolf}}" + - "{{Game data/saves|Windows|{{p|game}}\\Half-Life\\rewolf\\SAVE}}" Gunman Clive: pageId: 18157 steam: 262550 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Games\GunmanClive\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Games\GunmanClive\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Games\\GunmanClive\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Games\\GunmanClive\\}}" Gunman Clive 2: pageId: 37784 steam: 394550 @@ -72780,10 +70789,10 @@ Gunmetal Arcadia Zero: pageId: 53083 steam: 555610 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\My Games\Gunmetal Arcadia Zero\Config\}}' - - '{{Game data/config|Linux|{{p|xdgdatahome}}/Minor Key Games/Gunmetal Arcadia Zero/Config/}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\My Games\Gunmetal Arcadia Zero\Saves\}}' - - '{{Game data/saves|Linux|{{p|xdgdatahome}}/Minor Key Games/Gunmetal Arcadia Zero/Saves/}}' + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\My Games\\Gunmetal Arcadia Zero\\Config\\}}" + - "{{Game data/config|Linux|{{p|xdgdatahome}}/Minor Key Games/Gunmetal Arcadia Zero/Config/}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\My Games\\Gunmetal Arcadia Zero\\Saves\\}}" + - "{{Game data/saves|Linux|{{p|xdgdatahome}}/Minor Key Games/Gunmetal Arcadia Zero/Saves/}}" GunnRunner: pageId: 134426 steam: 821440 @@ -72797,19 +70806,19 @@ Gunpoint: pageId: 7779 steam: 206190 templates: - - '{{Game data/config|Windows|{{P|game}}\Settings\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Gunpoint/Settings/}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/gunpoint/Settings/}}' - - '{{Game data/saves|Windows|{{P|game}}\Savegames\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Gunpoint/Savegames/}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/gunpoint/savegames/}}' + - "{{Game data/config|Windows|{{P|game}}\\Settings\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Gunpoint/Settings/}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/gunpoint/Settings/}}" + - "{{Game data/saves|Windows|{{P|game}}\\Savegames\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Gunpoint/Savegames/}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/gunpoint/savegames/}}" Gunpowder: pageId: 47353 steam: 375170 Gunpowder on The Teeth 2: pageId: 157505 steam: 1088030 -'Gunpowder on the Teeth: Arcade': +"Gunpowder on the Teeth: Arcade": pageId: 126163 steam: 994860 Guns Battle Royale: @@ -72818,7 +70827,7 @@ Guns Battle Royale: Guns Color Pixel Art: pageId: 141453 steam: 1122210 -Guns N' Boxes: +"Guns N' Boxes": pageId: 39067 steam: 483850 Guns Undarkness: @@ -72843,47 +70852,47 @@ Guns of Icarus Online: pageId: 6140 steam: 209080 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Muse Games\GunsOfIcarusOnline\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/unity.Muse Games.GunsOfIcarusOnline }}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Muse Games/GunsOfIcarusOnline/}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Muse Games\\GunsOfIcarusOnline\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/unity.Muse Games.GunsOfIcarusOnline }}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Muse Games/GunsOfIcarusOnline/}}" Guns of Infinity: pageId: 43913 steam: 446330 Guns of Midnight: pageId: 135381 steam: 1077490 -Guns'N'Zombies: +"Guns'N'Zombies": pageId: 49424 steam: 264300 templates: - - '{{Game data/config|Windows|{{P|userprofile}}\AppData\LocalLow\Krealit\Guns_n_Zombies}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Krealit\Guns_n_Zombies}}' -'Guns''n''Stories: Bulletproof VR': + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Krealit\\Guns_n_Zombies}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Krealit\\Guns_n_Zombies}}" +"Guns'n'Stories: Bulletproof VR": pageId: 67970 steam: 685690 -'Guns''n''Stories: Preface VR': +"Guns'n'Stories: Preface VR": pageId: 89254 steam: 716260 -'Guns, Gore & Cannoli': +"Guns, Gore & Cannoli": gog: 1828861545 pageId: 37451 steam: 322210 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Crazy Monkey Studios\Guns Gore and Cannoli\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Crazy Monkey Studios\Guns Gore and Cannoli\}}' -'Guns, Gore & Cannoli 2': + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Crazy Monkey Studios\\Guns Gore and Cannoli\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Crazy Monkey Studios\\Guns Gore and Cannoli\\}}" +"Guns, Gore & Cannoli 2": gog: 1922744356 pageId: 69884 steam: 525510 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Crazy Monkey Studios\Guns Gore and Cannoli 2\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Crazy Monkey Studios\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Crazy Monkey Studios\\Guns Gore and Cannoli 2\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Crazy Monkey Studios\\}}" Gunscape: pageId: 44359 steam: 342480 Gunship: pageId: 181397 -'Gunship Battle2 VR: Steam Edition': +"Gunship Battle2 VR: Steam Edition": pageId: 75516 steam: 700990 Gunship Recon: @@ -72894,7 +70903,7 @@ Gunship!: pageId: 49953 steam: 286730 templates: - - '{{Game data/config|Windows|{{P|game}}\Data}}' + - "{{Game data/config|Windows|{{P|game}}\\Data}}" Gunsister: pageId: 164958 Gunslinger Trainer: @@ -72912,7 +70921,7 @@ Gunslugs: Gunslugs 2: pageId: 48963 steam: 340750 -'Gunslugs: Rogue Tactics': +"Gunslugs: Rogue Tactics": pageId: 132597 steam: 1012360 Gunsmith: @@ -72928,25 +70937,21 @@ Gunstar Heroes: pageId: 30738 steam: 71117 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\SEGA Mega Drive - Classics\setup.dat|{{p|userprofile\Documents}}\SEGA Genesis Classics\setup.dat}} - - >- - {{Game data/saves|Windows|{{p|userprofile\Documents}}\SEGA Mega Drive - Classics\0035\|{{p|userprofile\Documents}}\SEGA Genesis Classics\0035\}} + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\SEGA Mega Drive Classics\\setup.dat|{{p|userprofile\\Documents}}\\SEGA Genesis Classics\\setup.dat}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\SEGA Mega Drive Classics\\0035\\|{{p|userprofile\\Documents}}\\SEGA Genesis Classics\\0035\\}}" Guntastic: pageId: 124573 steam: 981630 Guntech: pageId: 155656 steam: 1195140 -'Gunvolt Chronicles: Luminous Avenger iX': +"Gunvolt Chronicles: Luminous Avenger iX": pageId: 139838 steam: 1085180 templates: - - '{{Game data/config|Windows|{{P|game}}\win\save}}' - - '{{Game data/saves|Windows|{{P|game}}\win\save}}' -'Gunvolt Chronicles: Luminous Avenger iX 2': + - "{{Game data/config|Windows|{{P|game}}\\win\\save}}" + - "{{Game data/saves|Windows|{{P|game}}\\win\\save}}" +"Gunvolt Chronicles: Luminous Avenger iX 2": pageId: 174729 steam: 1733880 Guppy: @@ -72961,30 +70966,30 @@ Guroopia!: Gurugedara: pageId: 70365 steam: 701010 -'Gurumin: A Monstrous Adventure': +"Gurumin: A Monstrous Adventure": gog: 1427103890 pageId: 27035 steam: 322290 templates: - - '{{Game data/config|Windows|{{p|appdata}}\FALCOM\GURUMIN\}}' - - '{{Game data/config|Steam|{{p|steam}}\userdata\{{p|uid}}\322290\remote\system.sav}}' - - '{{Game data/saves|Windows|{{p|appdata}}\FALCOM\GURUMIN\}}' - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\322290\remote\gdata**.sav}}' + - "{{Game data/config|Windows|{{p|appdata}}\\FALCOM\\GURUMIN\\}}" + - "{{Game data/config|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\322290\\remote\\system.sav}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\FALCOM\\GURUMIN\\}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\322290\\remote\\gdata**.sav}}" Gururin: pageId: 168860 Gus Track Adventures VR: pageId: 61430 steam: 622480 -'Gustavo: Kingdom Rebirth': +"Gustavo: Kingdom Rebirth": pageId: 103313 steam: 895980 Guts and Glory: pageId: 56142 steam: 537340 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\HakJak Productions LLC\Guts and Glory\}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\HakJak Productions LLC\Guts and Glory}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/HakJak Productions LLC/Guts and Glory}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\HakJak Productions LLC\\Guts and Glory\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\HakJak Productions LLC\\Guts and Glory}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/HakJak Productions LLC/Guts and Glory}}" Guts and Goals: pageId: 132917 renamedFrom: @@ -72995,22 +71000,20 @@ Guts and Goals: Guts and Syringes: pageId: 90201 steam: 654800 -'Gwent: Rogue Mage': +"Gwent: Rogue Mage": gog: 1302422684 pageId: 179088 steam: 1711950 -'Gwent: The Witcher Card Game': +"Gwent: The Witcher Card Game": gog: 1971477531 gogSide: - - 1286889002 - 1142753074 + - 1286889002 pageId: 52502 steam: 1284410 templates: - - >- - {{Game - data/config|Windows|{{P|userprofile}}\AppData\LocalLow\CDProjektRED\Gwent|{{p|HKCU}}\Software\CDProjektRED\Gwent\}} - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\CDProjektRED\Gwent\}}' + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\CDProjektRED\\Gwent|{{p|HKCU}}\\Software\\CDProjektRED\\Gwent\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\CDProjektRED\\Gwent\\}}" Gylt: gog: 1185763446 gogSide: @@ -73020,7 +71023,7 @@ Gylt: steamSide: - 2484210 templates: - - '{{Game data/saves|Windows|{{p|game}}\Gylt\Saved\SaveGames\*.sav}}' + - "{{Game data/saves|Windows|{{p|game}}\\Gylt\\Saved\\SaveGames\\*.sav}}" Gym Empire: pageId: 93301 steam: 756300 @@ -73030,7 +71033,7 @@ Gym Simulator: Gynophobia: pageId: 47015 steam: 365020 -'Gyre: Maelstrom': +"Gyre: Maelstrom": pageId: 35295 Gyro Boss DX: pageId: 130127 @@ -73054,17 +71057,17 @@ Gyromancer: pageId: 30826 steam: 23380 templates: - - '{{Game data/saves|Windows|{{p|game}}\Gyromancer_*.dat}}' -'Gythol Granditti: The Crypt of Darkness': + - "{{Game data/saves|Windows|{{p|game}}\\Gyromancer_*.dat}}" +"Gythol Granditti: The Crypt of Darkness": pageId: 140806 steam: 1108630 Géants disparus VR: pageId: 123629 steam: 956880 -'H Chan: Girl': +"H Chan: Girl": pageId: 136580 steam: 1081090 -'H-Hour: World''s Elite': +"H-Hour: World's Elite": pageId: 47859 steam: 293220 H-Rescue: @@ -73100,7 +71103,7 @@ HALP!: HAM-MASTER: pageId: 150418 steam: 1179460 -'HAMMER WORLD: DIMENSION TRAVELER': +"HAMMER WORLD: DIMENSION TRAVELER": pageId: 113288 steam: 819440 HAMMY: @@ -73118,7 +71121,7 @@ HANZ!: HARP Vefa: pageId: 72762 steam: 646430 -'HBDIE: The Nonce 2': +"HBDIE: The Nonce 2": pageId: 180487 steam: 2066250 HD Poker: @@ -73127,7 +71130,7 @@ HD Poker: HEAVEN AND HELL - the last war: pageId: 122424 steam: 949930 -'HEBEREKE!: March! Red Army Girls'' Brigade': +"HEBEREKE!: March! Red Army Girls' Brigade": pageId: 50797 steam: 531190 HEIST: @@ -73136,7 +71139,7 @@ HEIST: HELLO PLAYER: pageId: 153628 steam: 1200450 -'HELLSEED: Chapter 1': +"HELLSEED: Chapter 1": pageId: 157263 steam: 1168690 HENTAI - World War II: @@ -73154,7 +71157,7 @@ HENTAI CLIMBER: HENTAI HELL: pageId: 144431 steam: 1144250 -'HENTAI HORROR: The Eight Pictures': +"HENTAI HORROR: The Eight Pictures": pageId: 148621 steam: 1168170 HENTAI IDOL: @@ -73178,7 +71181,7 @@ HENTAI SHADOW: HENTAI SISTERS: pageId: 108704 steam: 664150 -'HENTAI SNIPER: Middle East': +"HENTAI SNIPER: Middle East": pageId: 153117 steam: 1190110 HEPH: @@ -73190,13 +71193,13 @@ HERO-E: HEVN: pageId: 64036 steam: 588800 -'HEX: Shards of Fate': +"HEX: Shards of Fate": pageId: 43536 steam: 410380 HEXAD: pageId: 179963 steam: 1507570 -'HEXCRAFT: Harlequin Fair': +"HEXCRAFT: Harlequin Fair": pageId: 189987 steam: 1555650 HIGHRISE: @@ -73211,10 +71214,10 @@ HIS (Heroes In the Sky): HIT: pageId: 48749 steam: 336670 -'HIVE: Altenum Wars': +"HIVE: Altenum Wars": pageId: 69964 steam: 468330 -'HJ: Sacrifice': +"HJ: Sacrifice": pageId: 77978 steam: 759870 HOLY COW! Milking Simulator: @@ -73230,7 +71233,7 @@ HOT FIT!: pageId: 123552 steam: 962380 templates: - - '{{Game data/saves|Windows|{{p|steam}}\userdata\{{p|uid}}\962380}}' + - "{{Game data/saves|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\962380}}" HOT GIRLS: pageId: 120705 steam: 961180 @@ -73244,8 +71247,8 @@ HTR+ Slot Car Simulation: pageId: 50177 steam: 288650 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\QUByte Interactive\HTR+ Slot Car Simulation\}}' -'HUMAN LIVE-HOW LONG CAN HUMAN BEINGS EXIST?Survive the end of the earth, challenge disaster save the world': + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\QUByte Interactive\\HTR+ Slot Car Simulation\\}}" +"HUMAN LIVE-HOW LONG CAN HUMAN BEINGS EXIST?Survive the end of the earth, challenge disaster save the world": pageId: 112048 steam: 843790 HUNTERS FOR YOUR BRAIN: @@ -73272,31 +71275,31 @@ HYPER DRIVE - The Insane Gravity Race: HYPERFIGHT Max Battle: pageId: 129707 steam: 1005870 -'HYPERNOVA: Escape from Hadea': +"HYPERNOVA: Escape from Hadea": pageId: 65492 steam: 650750 Habitat: pageId: 18490 steam: 299340 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\4gency\Habitat\}}' + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\4gency\\Habitat\\}}" Habitus: pageId: 44764 steam: 394990 Hack: pageId: 175008 templates: - - '{{Game data/saves|Linux|/var/games/bsdgames/hack/save}}' -Hack 'n' Slash: + - "{{Game data/saves|Linux|/var/games/bsdgames/hack/save}}" +"Hack 'n' Slash": pageId: 13602 steam: 246070 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Hack ''n'' Slash\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Documents/Hack ‘n’ Slash/}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/doublefine/hacknslash/}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Hack ''n'' Slash\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Documents/Hack ‘n’ Slash/}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/doublefine/hacknslash/}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Hack 'n' Slash\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Documents/Hack ‘n’ Slash/}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/doublefine/hacknslash/}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Hack 'n' Slash\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Documents/Hack ‘n’ Slash/}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/doublefine/hacknslash/}}" Hack Me: pageId: 51621 steam: 526740 @@ -73321,60 +71324,60 @@ Hack the Core: Hack the FBI: pageId: 62088 steam: 582450 -'Hack, Slash & Backstab': +"Hack, Slash & Backstab": pageId: 36588 steam: 438910 -'Hack, Slash, Loot': +"Hack, Slash, Loot": pageId: 40806 steam: 207430 templates: - - '{{Game data/config|Windows|{{p|APPDATA}}\HackSlashLoot\Data\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/HackSlashLoot/Data/}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.HackSlashLoot/Data/}}' - - '{{Game data/saves|Windows|{{P|APPDATA}}\HackSlashLoot\Data\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/HackSlashLoot/Data/}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.HackSlashLoot/Data/}}' + - "{{Game data/config|Windows|{{p|APPDATA}}\\HackSlashLoot\\Data\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/HackSlashLoot/Data/}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.HackSlashLoot/Data/}}" + - "{{Game data/saves|Windows|{{P|APPDATA}}\\HackSlashLoot\\Data\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/HackSlashLoot/Data/}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.HackSlashLoot/Data/}}" Hack.88: pageId: 140844 steam: 1082440 Hacked: pageId: 52802 steam: 453470 -'Hacked: Hentai prison': +"Hacked: Hentai prison": pageId: 137228 steam: 897300 Hacker Evolution: pageId: 14192 steam: 70100 templates: - - '{{Game data/config|Windows|{{p|game}}\he-data\engine.ini}}' - - '{{Game data/config|Linux|{{p|game}}/he-data/engine.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\he-savegames\}}' - - '{{Game data/saves|Linux|{{p|game}}/he-savegames/}}' + - "{{Game data/config|Windows|{{p|game}}\\he-data\\engine.ini}}" + - "{{Game data/config|Linux|{{p|game}}/he-data/engine.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\he-savegames\\}}" + - "{{Game data/saves|Linux|{{p|game}}/he-savegames/}}" Hacker Evolution - 2019 HD Remaster: pageId: 149553 renamedFrom: - Hacker Evolution - 2019 HD remaster steam: 1153990 -'Hacker Evolution: Duality': +"Hacker Evolution: Duality": pageId: 14197 steam: 70120 templates: - - '{{Game data/config|Windows|{{p|game}}\sys-hed-appdata\settings.ini}}' - - '{{Game data/config|Linux|{{p|game}}/sys-hed-appdata/settings.ini}}' -'Hacker Evolution: Immersion': + - "{{Game data/config|Windows|{{p|game}}\\sys-hed-appdata\\settings.ini}}" + - "{{Game data/config|Linux|{{p|game}}/sys-hed-appdata/settings.ini}}" +"Hacker Evolution: Immersion": pageId: 41968 steam: 229560 -'Hacker Evolution: Untold': +"Hacker Evolution: Untold": pageId: 14196 steam: 70110 templates: - - '{{Game data/config|Windows|{{p|game}}\heuntold-data\config.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\heuntold-savegames\}}' + - "{{Game data/config|Windows|{{p|game}}\\heuntold-data\\config.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\heuntold-savegames\\}}" Hacker Series: pageId: 50775 steam: 536510 -Hacker's Beat: +"Hacker's Beat": pageId: 46298 steam: 363650 Hacker.exe: @@ -73391,13 +71394,13 @@ Hacknet: pageId: 26439 steam: 365450 templates: - - '{{Game data/config|Windows|{{p|game}}\Settings.txt}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Hacknet/Settings.txt}}' - - '{{Game data/config|Linux|{{P|xdgconfighome}}/Hacknet/Settings.txt}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Hacknet\Accounts\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Hacknet/Accounts}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/Hacknet/Accounts}}' - - '{{Game data/saves|Steam|{{P|steam}}/userdata/{{p|uid}}/365450/remote/}}' + - "{{Game data/config|Windows|{{p|game}}\\Settings.txt}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Hacknet/Settings.txt}}" + - "{{Game data/config|Linux|{{P|xdgconfighome}}/Hacknet/Settings.txt}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Hacknet\\Accounts\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Hacknet/Accounts}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/Hacknet/Accounts}}" + - "{{Game data/saves|Steam|{{P|steam}}/userdata/{{p|uid}}/365450/remote/}}" Hacktag: pageId: 61664 steam: 622770 @@ -73405,8 +71408,8 @@ HackyZack: pageId: 57841 steam: 508530 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\HackyZackGame\hz_settings.ini}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\HackyZackGame\hackyzack_save.ini}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\HackyZackGame\\hz_settings.ini}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\HackyZackGame\\hackyzack_save.ini}}" Hadaka Shitsuji - Naked Butlers: pageId: 145957 steam: 1031020 @@ -73414,7 +71417,7 @@ Hade: pageId: 53918 steam: 552160 templates: - - '{{Game data/config|Windows|{{P|userprofile}}\AppData\Local\hade\config.ini}}' + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\Local\\hade\\config.ini}}" Hadean Lands: pageId: 33567 steam: 376240 @@ -73424,60 +71427,54 @@ Hades: steamSide: - 1206340 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Saved Games\Hades\}}' - - >- - {{Game data/config|Microsoft - Store|{{P|localappdata}}\Packages\SupergiantGamesLLC.Hades_q53c1yqmx7pha\SystemAppData\wgs}} - - '{{Game data/config|OS X|{{P|osxhome}}/Library/Application Support/Supergiant Games/Hades/}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Saved Games\Hades\}}' - - >- - {{Game data/saves|Microsoft - Store|{{P|localappdata}}\Packages\SupergiantGamesLLC.Hades_q53c1yqmx7pha\SystemAppData\wgs}} - - '{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/Supergiant Games/Hades/}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Saved Games\\Hades\\}}" + - "{{Game data/config|Microsoft Store|{{P|localappdata}}\\Packages\\SupergiantGamesLLC.Hades_q53c1yqmx7pha\\SystemAppData\\wgs}}" + - "{{Game data/config|OS X|{{P|osxhome}}/Library/Application Support/Supergiant Games/Hades/}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Saved Games\\Hades\\}}" + - "{{Game data/saves|Microsoft Store|{{P|localappdata}}\\Packages\\SupergiantGamesLLC.Hades_q53c1yqmx7pha\\SystemAppData\\wgs}}" + - "{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/Supergiant Games/Hades/}}" Hades Challenge: pageId: 97263 Hades II: pageId: 183626 steam: 1145350 -Hades' Star: +"Hades' Star": pageId: 124390 steam: 755800 -'Haegemonia: Legions of Iron': +"Haegemonia: Legions of Iron": gog: 1207661583 gogSide: - 1207658759 pageId: 17497 steam: 294770 templates: - - '{{Game data/config|Windows|{{p|hklm}}\SOFTWARE\{{p|wow64}}\Digital Reality\Haegemonia\}}' - - '{{Game data/saves|Windows|{{p|game}}\Save}}' -'Haegemonia: The Solon Heritage': + - "{{Game data/config|Windows|{{p|hklm}}\\SOFTWARE\\{{p|wow64}}\\Digital Reality\\Haegemonia\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\Save}}" +"Haegemonia: The Solon Heritage": gog: 1207661593 gogSide: - 1207658759 pageId: 17499 steam: 294790 templates: - - '{{Game data/config|Windows|{{p|hklm}}\SOFTWARE\{{p|wow64}}\Digital Reality\TheSolonHeritage\}}' - - '{{Game data/saves|Windows|{{p|game}}\Save}}' + - "{{Game data/config|Windows|{{p|hklm}}\\SOFTWARE\\{{p|wow64}}\\Digital Reality\\TheSolonHeritage\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\Save}}" Haeven: pageId: 41815 steam: 508540 Hags Castle: pageId: 102295 steam: 905260 -'Haiku, the Robot': +"Haiku, the Robot": pageId: 183284 steam: 1231880 templates: - - >- - {{Game - data/config|Windows|{{P|userprofile}}\AppData\LocalLow\MisterMorrisGames\Haiku\playerconfiguration.haiku|{{P|userprofile}}\AppData\LocalLow\MisterMorrisGames\Haiku\speedrunningconfig.haiku}} - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\MisterMorrisGames\Haiku\00*.haiku}}' + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\MisterMorrisGames\\Haiku\\playerconfiguration.haiku|{{P|userprofile}}\\AppData\\LocalLow\\MisterMorrisGames\\Haiku\\speedrunningconfig.haiku}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\MisterMorrisGames\\Haiku\\00*.haiku}}" Hail To The King: pageId: 125217 steam: 998730 -'Hail to the King: Deathbat': +"Hail to the King: Deathbat": pageId: 49414 steam: 327440 Hailey: @@ -73491,39 +71488,39 @@ Haimrik: pageId: 39685 steam: 492180 templates: - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Below The Game\Haimrik\Haimrik\HaimrikData.json}}' + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Below The Game\\Haimrik\\Haimrik\\HaimrikData.json}}" Hairdresser Simulator: pageId: 190153 templates: - - '{{Game data/config|Windows|{{P|userprofile\appdata\locallow}}\GameFormatic\HairDresser\Saves\}}' - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\GameFormatic\HairDresser\Saves\}}' -Hakan's War Manager: + - "{{Game data/config|Windows|{{P|userprofile\\appdata\\locallow}}\\GameFormatic\\HairDresser\\Saves\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\GameFormatic\\HairDresser\\Saves\\}}" +"Hakan's War Manager": pageId: 189235 Hakoniwa Explorer Plus: pageId: 94300 steam: 705280 -'Hakuoki: Edo Blossoms': +"Hakuoki: Edo Blossoms": gog: 1442075729 pageId: 81766 steam: 733340 -'Hakuoki: Kyoto Winds': +"Hakuoki: Kyoto Winds": gog: 1370392202 pageId: 67910 steam: 589530 -'Halcyon 6: Lightspeed Edition': +"Halcyon 6: Lightspeed Edition": gog: 1161151493 pageId: 66221 steam: 651660 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\MASSDMG\Halcyon6LSE\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\MASSDMG\Halcyon6LSE\}}' -'Halcyon 6: Starbase Commander': + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\MASSDMG\\Halcyon6LSE\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\MASSDMG\\Halcyon6LSE\\}}" +"Halcyon 6: Starbase Commander": gog: 1937342852 pageId: 37471 steam: 371200 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\MASSDMG\Halcyon6\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\MASSDMG\Halcyon6}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\MASSDMG\\Halcyon6\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\MASSDMG\\Halcyon6}}" Half Dead: pageId: 34024 steam: 434730 @@ -73531,7 +71528,7 @@ Half Dead 2: pageId: 122534 steam: 914260 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Room710Games\HalfDead2}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Room710Games\\HalfDead2}}" Half Past Disaster: pageId: 72869 steam: 683630 @@ -73539,10 +71536,8 @@ Half Past Fate: pageId: 130698 steam: 1048740 templates: - - >- - {{Game data/config|Windows|{{P|userprofile\appdata\locallow}}\Serenity Forge\Half Past - FateGameData\UserSettings.dat|{{P|hkcu}}\SOFTWARE\Serenity Forge\Half Past Fate\}} - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Serenity Forge\Half Past FateGameData\Save.dat}}' + - "{{Game data/config|Windows|{{P|userprofile\\appdata\\locallow}}\\Serenity Forge\\Half Past FateGameData\\UserSettings.dat|{{P|hkcu}}\\SOFTWARE\\Serenity Forge\\Half Past Fate\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Serenity Forge\\Half Past FateGameData\\Save.dat}}" Half Past Impossible: pageId: 77269 steam: 758700 @@ -73558,11 +71553,11 @@ Half-Life: steamSide: - 323130 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Valve\Half-Life\}}' - - '{{Game data/config|Steam|{{P|game}}/valve/*.cfg}}' - - '{{Game data/saves|Windows|{{P|game}}\valve\SAVE\}}' - - '{{Game data/saves|OS X|{{P|game}}/valve/SAVE}}' - - '{{Game data/saves|Linux|{{P|game}}/valve/SAVE/}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Valve\\Half-Life\\}}" + - "{{Game data/config|Steam|{{P|game}}/valve/*.cfg}}" + - "{{Game data/saves|Windows|{{P|game}}\\valve\\SAVE\\}}" + - "{{Game data/saves|OS X|{{P|game}}/valve/SAVE}}" + - "{{Game data/saves|Linux|{{P|game}}/valve/SAVE/}}" Half-Life (SteamPipe): pageId: 176027 steam: 70 @@ -73573,157 +71568,155 @@ Half-Life 2: steam: 220 steamSide: - 219 + - 290930 - 323140 - 466270 - - 290930 templates: - - '{{Game data/config|Steam|{{p|game}}\hl2\cfg\}}' - - '{{Game data/saves|Steam|{{p|game}}\hl2\save\}}' -'Half-Life 2: Deathmatch': + - "{{Game data/config|Steam|{{p|game}}\\hl2\\cfg\\}}" + - "{{Game data/saves|Steam|{{p|game}}\\hl2\\save\\}}" +"Half-Life 2: Deathmatch": pageId: 236 steam: 320 templates: - - '{{Game data/config|Windows|{{p|game}}\hl2mp\cfg}}' - - '{{Game data/config|Linux|{{p|game}}/}}' -'Half-Life 2: DownFall': + - "{{Game data/config|Windows|{{p|game}}\\hl2mp\\cfg}}" + - "{{Game data/config|Linux|{{p|game}}/}}" +"Half-Life 2: DownFall": pageId: 179565 steam: 587650 -'Half-Life 2: Episode One': +"Half-Life 2: Episode One": pageId: 147 steam: 380 steamSide: - 323150 templates: - - '{{Game data/config|Steam|{{p|steam}}/SteamApps/common/Half-Life 2/episodic/cfg/}}' - - '{{Game data/saves|Steam|{{p|steam}}/SteamApps/common/Half-Life 2/episodic/save/}}' -'Half-Life 2: Episode Two': + - "{{Game data/config|Steam|{{p|steam}}/SteamApps/common/Half-Life 2/episodic/cfg/}}" + - "{{Game data/saves|Steam|{{p|steam}}/SteamApps/common/Half-Life 2/episodic/save/}}" +"Half-Life 2: Episode Two": pageId: 155 steam: 420 steamSide: - 323160 templates: - - '{{Game data/config|Steam|{{p|steam}}/SteamApps/common/Half-Life 2/ep2/cfg/}}' - - '{{Game data/saves|Steam|{{p|steam}}/SteamApps/common/Half-Life 2/ep2/save/}}' -'Half-Life 2: Genry''s Great Escape from City 13': + - "{{Game data/config|Steam|{{p|steam}}/SteamApps/common/Half-Life 2/ep2/cfg/}}" + - "{{Game data/saves|Steam|{{p|steam}}/SteamApps/common/Half-Life 2/ep2/save/}}" +"Half-Life 2: Genry's Great Escape from City 13": pageId: 175041 renamedFrom: - - 'Half-Life 2: Genry''s Great Escape From City 13' + - "Half-Life 2: Genry's Great Escape From City 13" steam: 1341060 -'Half-Life 2: Lost Coast': +"Half-Life 2: Lost Coast": pageId: 191 steam: 340 templates: - - '{{Game data/config|Steam|{{p|steam}}/SteamApps/common/Half-Life 2/lostcoast/cfg/}}' - - '{{Game data/saves|Steam|{{p|steam}}/SteamApps/common/Half-Life 2/lostcoast/save/}}' -'Half-Life 2: VR Mod': + - "{{Game data/config|Steam|{{p|steam}}/SteamApps/common/Half-Life 2/lostcoast/cfg/}}" + - "{{Game data/saves|Steam|{{p|steam}}/SteamApps/common/Half-Life 2/lostcoast/save/}}" +"Half-Life 2: VR Mod": pageId: 181103 steam: 658920 templates: - - '{{Game data/config|Steam|{{p|game}}\hlvr\cfg\}}' - - '{{Game data/saves|Steam|{{p|game}}\hlvr\save\}}' -'Half-Life 2: VR Mod - Episode One': + - "{{Game data/config|Steam|{{p|game}}\\hlvr\\cfg\\}}" + - "{{Game data/saves|Steam|{{p|game}}\\hlvr\\save\\}}" +"Half-Life 2: VR Mod - Episode One": pageId: 185855 steam: 2177750 templates: - - '{{Game data/config|Windows|{{p|game}}\episodicvr\cfg\}}' - - '{{Game data/saves|Windows|{{p|game}}\episodicvr\save\}}' -'Half-Life 2: VR Mod - Episode Two': + - "{{Game data/config|Windows|{{p|game}}\\episodicvr\\cfg\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\episodicvr\\save\\}}" +"Half-Life 2: VR Mod - Episode Two": pageId: 185983 steam: 2177760 templates: - - '{{Game data/config|Windows|{{p|game}}\ep2vr\cfg\}}' - - '{{Game data/saves|Windows|{{p|game}}\ep2vr\save\}}' -'Half-Life 2: Year Long Alarm': + - "{{Game data/config|Windows|{{p|game}}\\ep2vr\\cfg\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\ep2vr\\save\\}}" +"Half-Life 2: Year Long Alarm": pageId: 160589 steam: 747250 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\SOFTWARE\Valve\Source\yearlongalarm\Settings}}' - - '{{Game data/saves|Windows|{{P|game}}\yearlongalarm\SAVE\}}' -'Half-Life Deathmatch: Source': + - "{{Game data/config|Windows|{{P|hkcu}}\\SOFTWARE\\Valve\\Source\\yearlongalarm\\Settings}}" + - "{{Game data/saves|Windows|{{P|game}}\\yearlongalarm\\SAVE\\}}" +"Half-Life Deathmatch: Source": pageId: 189 steam: 360 templates: - - '{{Game data/config|Windows|{{p|game}}\hl1mp\cfg}}' - - '{{Game data/config|Linux|{{p|game}}/hl2/cfg/}}' -'Half-Life Decay: Solo Mission': + - "{{Game data/config|Windows|{{p|game}}\\hl1mp\\cfg}}" + - "{{Game data/config|Linux|{{p|game}}/hl2/cfg/}}" +"Half-Life Decay: Solo Mission": pageId: 177034 steam: 1874090 steamSide: - 1889470 templates: - - '{{Game data/config|Windows|{{p|game}}\decaysolodemo}}' - - '{{Game data/saves|Windows|{{p|game}}\decaysolodemo\SAVE}}' -'Half-Life: Absolute Zero': + - "{{Game data/config|Windows|{{p|game}}\\decaysolodemo}}" + - "{{Game data/saves|Windows|{{p|game}}\\decaysolodemo\\SAVE}}" +"Half-Life: Absolute Zero": pageId: 160590 steam: 812440 -'Half-Life: Alyx': +"Half-Life: Alyx": pageId: 152266 steam: 546560 templates: - - >- - {{Game - data/config|Windows|{{P|game}}\game\hlvr\cfg\|{{P|game}}\game\hlvr\SAVE\S*\personal.cfg|{{P|game}}\game\hlvr\SAVE\s*\personal.cfg}} - - '{{Game data/saves|Windows|{{P|game}}\game\hlvr\SAVE\S*\|{{P|game}}\game\hlvr\SAVE\s*\}}' -'Half-Life: Before': + - "{{Game data/config|Windows|{{P|game}}\\game\\hlvr\\cfg\\|{{P|game}}\\game\\hlvr\\SAVE\\S*\\personal.cfg|{{P|game}}\\game\\hlvr\\SAVE\\s*\\personal.cfg}}" + - "{{Game data/saves|Windows|{{P|game}}\\game\\hlvr\\SAVE\\S*\\|{{P|game}}\\game\\hlvr\\SAVE\\s*\\}}" +"Half-Life: Before": pageId: 176536 steam: 261980 -'Half-Life: Blue Shift': +"Half-Life: Blue Shift": pageId: 183 steam: 130 templates: - - '{{Game data/config|Windows|{{P|game}}\Half-Life\bshift\}}' - - '{{Game data/config|OS X|{{P|game}}/Half-Life/bshift/}}' - - '{{Game data/config|Linux|{{P|game}}/Half-Life/bshift/}}' - - '{{Game data/saves|Windows|{{P|game}}\Half-Life\bshift\SAVE\}}' - - '{{Game data/saves|OS X|{{P|game}}/Half-Life/bshift/SAVE}}' - - '{{Game data/saves|Linux|{{P|game}}/Half-Life/bshift/SAVE/}}' -'Half-Life: Caged': + - "{{Game data/config|Windows|{{P|game}}\\Half-Life\\bshift\\}}" + - "{{Game data/config|OS X|{{P|game}}/Half-Life/bshift/}}" + - "{{Game data/config|Linux|{{P|game}}/Half-Life/bshift/}}" + - "{{Game data/saves|Windows|{{P|game}}\\Half-Life\\bshift\\SAVE\\}}" + - "{{Game data/saves|OS X|{{P|game}}/Half-Life/bshift/SAVE}}" + - "{{Game data/saves|Linux|{{P|game}}/Half-Life/bshift/SAVE/}}" +"Half-Life: Caged": pageId: 165385 steam: 679990 templates: - - '{{Game data/saves|Windows|{{p|game}}\caged_fgs\SAVE}}' -'Half-Life: Decay': + - "{{Game data/saves|Windows|{{p|game}}\\caged_fgs\\SAVE}}" +"Half-Life: Decay": pageId: 11495 templates: - - '{{Game data/config|Windows|{{P|game}}\Half-Life\decay\}}' - - '{{Game data/saves|Windows|{{P|game}}\Half-Life\decay\SAVE\}}' -'Half-Life: MMod': + - "{{Game data/config|Windows|{{P|game}}\\Half-Life\\decay\\}}" + - "{{Game data/saves|Windows|{{P|game}}\\Half-Life\\decay\\SAVE\\}}" +"Half-Life: MMod": pageId: 185817 steam: 1761270 -'Half-Life: Opposing Force': +"Half-Life: Opposing Force": pageId: 179 steam: 50 templates: - - '{{Game data/config|Windows|{{P|game}}\Half-Life\gearbox\}}' - - '{{Game data/config|OS X|{{P|game}}/Half-Life/gearbox/}}' - - '{{Game data/config|Linux|{{P|game}}/Half-Life/gearbox/}}' - - '{{Game data/saves|Windows|{{P|game}}\Half-Life\gearbox\SAVE\}}' - - '{{Game data/saves|OS X|{{P|game}}/Half-Life/gearbox/SAVE/}}' - - '{{Game data/saves|Linux|{{P|game}}/Half-Life/gearbox/SAVE/}}' -'Half-Life: Restored': + - "{{Game data/config|Windows|{{P|game}}\\Half-Life\\gearbox\\}}" + - "{{Game data/config|OS X|{{P|game}}/Half-Life/gearbox/}}" + - "{{Game data/config|Linux|{{P|game}}/Half-Life/gearbox/}}" + - "{{Game data/saves|Windows|{{P|game}}\\Half-Life\\gearbox\\SAVE\\}}" + - "{{Game data/saves|OS X|{{P|game}}/Half-Life/gearbox/SAVE/}}" + - "{{Game data/saves|Linux|{{P|game}}/Half-Life/gearbox/SAVE/}}" +"Half-Life: Restored": pageId: 161225 steam: 1283930 -'Half-Life: Source': +"Half-Life: Source": pageId: 186 steam: 280 templates: - - '{{Game data/config|Steam|{{p|steam}}/SteamApps/common/Half-Life 2/hl1/cfg/}}' - - '{{Game data/saves|Steam|{{p|steam}}/SteamApps/common/Half-Life 2/hl1/save/}}' -'Half-Minute Hero: Super Mega Neo Climax Ultimate Boy': + - "{{Game data/config|Steam|{{p|steam}}/SteamApps/common/Half-Life 2/hl1/cfg/}}" + - "{{Game data/saves|Steam|{{p|steam}}/SteamApps/common/Half-Life 2/hl1/save/}}" +"Half-Minute Hero: Super Mega Neo Climax Ultimate Boy": pageId: 4281 steam: 214830 templates: - - '{{Game data/saves|Windows|{{p|steam}}/userdata/{{P|uid}}/214830/remote/}}' -'Half-Minute Hero: The Second Coming': + - "{{Game data/saves|Windows|{{p|steam}}/userdata/{{P|uid}}/214830/remote/}}" +"Half-Minute Hero: The Second Coming": pageId: 16573 steam: 240970 templates: - - '{{Game data/config|Windows|{{p|game}}\HMH2.cfg}}' - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\240970\remote\}}' + - "{{Game data/config|Windows|{{p|game}}\\HMH2.cfg}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\240970\\remote\\}}" Half-Past Impossible: pageId: 144512 steam: 1142790 -'Half-Rats: Parasomnia': +"Half-Rats: Parasomnia": pageId: 176643 steam: 638360 HalfLight: @@ -73737,8 +71730,8 @@ Halfway: pageId: 34384 steam: 253150 templates: - - '{{Game data/config|Windows|{{p|game}}\config.json|{{p|game}}\settings.json}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\.halfway\halfwayProgress*.json}}' + - "{{Game data/config|Windows|{{p|game}}\\config.json|{{p|game}}\\settings.json}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\.halfway\\halfwayProgress*.json}}" Halfway Home: pageId: 121002 steam: 950250 @@ -73751,18 +71744,18 @@ Hallowed Encounter: Halloween Arkanoid 2: pageId: 123353 steam: 979450 -'Halloween Chronicles: Evil behind a Mask': +"Halloween Chronicles: Evil behind a Mask": pageId: 148467 renamedFrom: - - 'Halloween Chronicles: Evil Behind a Mask' - - 'Halloween Chronicles: Evil behind a Mask' - - 'Halloween Chronicles: Evil Behind a Mask' + - "Halloween Chronicles: Evil Behind a Mask" + - "Halloween Chronicles: Evil behind a Mask" + - "Halloween Chronicles: Evil Behind a Mask" steam: 1181910 Halloween Forever: pageId: 44928 steam: 425650 templates: - - '{{Game data/saves|Windows|{{p|LOCALAPPDATA}}\halloweenforever_GMS2_Master\savefiles}}' + - "{{Game data/saves|Windows|{{p|LOCALAPPDATA}}\\halloweenforever_GMS2_Master\\savefiles}}" Halloween Girl: pageId: 146068 steam: 981790 @@ -73773,7 +71766,7 @@ Halloween Mysteries: pageId: 52255 steam: 547090 templates: - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Ozo\HalloweenMysteries\}}' + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Ozo\\HalloweenMysteries\\}}" Halloween Pumpkin Story: pageId: 89260 steam: 717330 @@ -73783,7 +71776,7 @@ Halloween Puzzles: Halloween with Veronica: pageId: 148834 steam: 1162590 -'Halloween: Jigsaw Puzzles': +"Halloween: Jigsaw Puzzles": pageId: 72950 steam: 720600 HalloweenStory: @@ -73799,15 +71792,15 @@ Halls of Torment: pageId: 187340 steam: 2218750 templates: - - '{{Game data/config|Windows|{{P|appdata}}\HallsOfTorment\settings.json}}' - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\2218750\remote\}}' -'Halls of the Dead: Faery Tale Adventure II': + - "{{Game data/config|Windows|{{P|appdata}}\\HallsOfTorment\\settings.json}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\2218750\\remote\\}}" +"Halls of the Dead: Faery Tale Adventure II": pageId: 75240 templates: - - '{{Game data/config|DOS|{{p|game}}\FTA2.INI}}' - - '{{Game data/config|Windows|{{p|windir}}\FTA2.INI}}' - - '{{Game data/saves|DOS|{{p|game}}\0**.SAV}}' - - '{{Game data/saves|Windows|{{p|game}}\0**.SAV}}' + - "{{Game data/config|DOS|{{p|game}}\\FTA2.INI}}" + - "{{Game data/config|Windows|{{p|windir}}\\FTA2.INI}}" + - "{{Game data/saves|DOS|{{p|game}}\\0**.SAV}}" + - "{{Game data/saves|Windows|{{p|game}}\\0**.SAV}}" Hallucination - 幻觉: pageId: 151256 steam: 1167700 @@ -73817,44 +71810,44 @@ Hallway Simulator 2020: Halo 2: pageId: 3537 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Microsoft\Halo 2\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Microsoft\Halo 2\Saved Games\}}' -'Halo 2: Anniversary': + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Microsoft\\Halo 2\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Microsoft\\Halo 2\\Saved Games\\}}" +"Halo 2: Anniversary": pageId: 129526 steam: 1064270 templates: - - '{{Game data/config|Microsoft Store|{{p|userprofile}}\AppData\LocalLow\MCC\}}' - - '{{Game data/config|Steam|{{p|userprofile}}\AppData\LocalLow\MCC\}}' - - '{{Game data/saves|Microsoft Store|{{p|localappdata}}\Packages\Microsoft.Chelan_8wekyb3d8bbwe\SystemAppData\wgs\}}' - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\976730\remote\{{p|uid}}\Saves\SaveGame\halo1}}' + - "{{Game data/config|Microsoft Store|{{p|userprofile}}\\AppData\\LocalLow\\MCC\\}}" + - "{{Game data/config|Steam|{{p|userprofile}}\\AppData\\LocalLow\\MCC\\}}" + - "{{Game data/saves|Microsoft Store|{{p|localappdata}}\\Packages\\Microsoft.Chelan_8wekyb3d8bbwe\\SystemAppData\\wgs\\}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\976730\\remote\\{{p|uid}}\\Saves\\SaveGame\\halo1}}" Halo 3: pageId: 129522 steam: 1064271 templates: - - '{{Game data/config|Microsoft Store|{{p|userprofile}}\AppData\LocalLow\MCC\}}' - - '{{Game data/config|Steam|{{p|userprofile}}\AppData\LocalLow\MCC\}}' - - '{{Game data/saves|Microsoft Store|{{p|localappdata}}\Packages\Microsoft.Chelan_8wekyb3d8bbwe\SystemAppData\wgs\}}' - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\976730\remote\{{p|uid}}\Saves\SaveGame\halo2}}' -'Halo 3: ODST': + - "{{Game data/config|Microsoft Store|{{p|userprofile}}\\AppData\\LocalLow\\MCC\\}}" + - "{{Game data/config|Steam|{{p|userprofile}}\\AppData\\LocalLow\\MCC\\}}" + - "{{Game data/saves|Microsoft Store|{{p|localappdata}}\\Packages\\Microsoft.Chelan_8wekyb3d8bbwe\\SystemAppData\\wgs\\}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\976730\\remote\\{{p|uid}}\\Saves\\SaveGame\\halo2}}" +"Halo 3: ODST": pageId: 129524 steam: 1064272 templates: - - '{{Game data/config|Microsoft Store|{{p|userprofile}}\AppData\LocalLow\MCC\}}' - - '{{Game data/config|Steam|{{p|userprofile}}\AppData\LocalLow\MCC\}}' - - '{{Game data/saves|Microsoft Store|{{p|localappdata}}\Packages\Microsoft.Chelan_8wekyb3d8bbwe\SystemAppData\wgs\}}' - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\976730\remote\{{p|uid}}\Saves\SaveGame\halo5}}' + - "{{Game data/config|Microsoft Store|{{p|userprofile}}\\AppData\\LocalLow\\MCC\\}}" + - "{{Game data/config|Steam|{{p|userprofile}}\\AppData\\LocalLow\\MCC\\}}" + - "{{Game data/saves|Microsoft Store|{{p|localappdata}}\\Packages\\Microsoft.Chelan_8wekyb3d8bbwe\\SystemAppData\\wgs\\}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\976730\\remote\\{{p|uid}}\\Saves\\SaveGame\\halo5}}" Halo 4: pageId: 129523 steam: 1064273 templates: - - '{{Game data/config|Microsoft Store|{{p|userprofile}}\AppData\LocalLow\MCC\}}' - - '{{Game data/config|Steam|{{p|userprofile}}\AppData\LocalLow\MCC\}}' - - '{{Game data/saves|Microsoft Store|{{p|localappdata}}\Packages\Microsoft.Chelan_8wekyb3d8bbwe\SystemAppData\wgs\}}' - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\976730\remote\{{p|uid}}\Saves\}}' -'Halo 5: Forge': + - "{{Game data/config|Microsoft Store|{{p|userprofile}}\\AppData\\LocalLow\\MCC\\}}" + - "{{Game data/config|Steam|{{p|userprofile}}\\AppData\\LocalLow\\MCC\\}}" + - "{{Game data/saves|Microsoft Store|{{p|localappdata}}\\Packages\\Microsoft.Chelan_8wekyb3d8bbwe\\SystemAppData\\wgs\\}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\976730\\remote\\{{p|uid}}\\Saves\\}}" +"Halo 5: Forge": pageId: 32871 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Packages\Microsoft.Halo5Forge_8wekyb3d8bbwe\LocalState}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Packages\\Microsoft.Halo5Forge_8wekyb3d8bbwe\\LocalState}}" Halo Beats!: pageId: 156563 steam: 1224900 @@ -73864,121 +71857,109 @@ Halo Infinite: steamSide: - 1708091 templates: - - >- - {{Game data/config|Microsoft - Store|{{P|localappdata}}\Packages\Microsoft.254428597CFE2_8wekyb3d8bbwe\LocalCache\Local\HaloInfinite\Settings\SpecControlSettings.json}} - - '{{Game data/config|Steam|{{P|localappdata}}\HaloInfinite\Settings\SpecControlSettings.json}}' - - >- - {{Game data/saves|Microsoft - Store|{{P|localappdata}}\Packages\Microsoft.254428597CFE2_8wekyb3d8bbwe\SystemAppData\wgs\}} - - '{{Game data/saves|Steam|{{P|steam}}\userdata\{{P|uid}}\1240440\remote}}' + - "{{Game data/config|Microsoft Store|{{P|localappdata}}\\Packages\\Microsoft.254428597CFE2_8wekyb3d8bbwe\\LocalCache\\Local\\HaloInfinite\\Settings\\SpecControlSettings.json}}" + - "{{Game data/config|Steam|{{P|localappdata}}\\HaloInfinite\\Settings\\SpecControlSettings.json}}" + - "{{Game data/saves|Microsoft Store|{{P|localappdata}}\\Packages\\Microsoft.254428597CFE2_8wekyb3d8bbwe\\SystemAppData\\wgs\\}}" + - "{{Game data/saves|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\1240440\\remote}}" Halo Online: pageId: 124844 templates: - - '{{Game data/config|Windows|{{p|game}}\dewrito_prefs.cfg}}' + - "{{Game data/config|Windows|{{p|game}}\\dewrito_prefs.cfg}}" Halo Recruit: pageId: 80752 Halo Wars 2: pageId: 33290 -'Halo Wars: Definitive Edition': +"Halo Wars: Definitive Edition": pageId: 33377 steam: 459220 templates: - - '{{Game data/config|Steam|{{p|localappdata}}\Halo Wars\GameConfig.dat}}' - - >- - {{Game data/saves|Microsoft - Store|{{p|localappdata}}\Packages\Microsoft.BulldogThreshold_8wekyb3d8bbwe\SystemAppData\wgs\0009000004A4B138_6FA9010088A3442BA8B18CF53D64D3E9\0059769F9205496C9CE1349E2BD749A4\}} - - '{{Game data/saves|Steam|{{p|game}}\savegame\}}' -'Halo: Combat Evolved': + - "{{Game data/config|Steam|{{p|localappdata}}\\Halo Wars\\GameConfig.dat}}" + - "{{Game data/saves|Microsoft Store|{{p|localappdata}}\\Packages\\Microsoft.BulldogThreshold_8wekyb3d8bbwe\\SystemAppData\\wgs\\0009000004A4B138_6FA9010088A3442BA8B18CF53D64D3E9\\0059769F9205496C9CE1349E2BD749A4\\}}" + - "{{Game data/saves|Steam|{{p|game}}\\savegame\\}}" +"Halo: Combat Evolved": pageId: 1298 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Halo\}}' - - >- - {{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Halo\|{{p|userprofile\Documents}}\My Games\Halo - CE\}} - - '{{Game data/saves|OS X|{{p|userprofile\Documents}}\Halo\|{{p|userprofile\Documents}}\HLMD\}}' -'Halo: Combat Evolved Anniversary': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Halo\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Halo\\|{{p|userprofile\\Documents}}\\My Games\\Halo CE\\}}" + - "{{Game data/saves|OS X|{{p|userprofile\\Documents}}\\Halo\\|{{p|userprofile\\Documents}}\\HLMD\\}}" +"Halo: Combat Evolved Anniversary": pageId: 129525 steam: 1064221 templates: - - '{{Game data/config|Microsoft Store|{{p|userprofile}}\AppData\LocalLow\MCC\}}' - - '{{Game data/config|Steam|{{p|userprofile}}\AppData\LocalLow\MCC\}}' - - '{{Game data/saves|Microsoft Store|{{p|localappdata}}\Packages\Microsoft.Chelan_8wekyb3d8bbwe\SystemAppData\wgs\}}' - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\976730\remote\{{p|uid}}\Saves\SaveGame\halo0}}' -'Halo: Reach': + - "{{Game data/config|Microsoft Store|{{p|userprofile}}\\AppData\\LocalLow\\MCC\\}}" + - "{{Game data/config|Steam|{{p|userprofile}}\\AppData\\LocalLow\\MCC\\}}" + - "{{Game data/saves|Microsoft Store|{{p|localappdata}}\\Packages\\Microsoft.Chelan_8wekyb3d8bbwe\\SystemAppData\\wgs\\}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\976730\\remote\\{{p|uid}}\\Saves\\SaveGame\\halo0}}" +"Halo: Reach": pageId: 129520 steam: 1064220 templates: - - '{{Game data/config|Microsoft Store|{{p|userprofile}}\AppData\LocalLow\MCC\}}' - - '{{Game data/config|Steam|{{p|userprofile}}\AppData\LocalLow\MCC\}}' - - '{{Game data/saves|Microsoft Store|{{p|localappdata}}\Packages\Microsoft.Chelan_8wekyb3d8bbwe\SystemAppData\wgs\}}' - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\976730\remote\{{p|uid}}\Saves\SaveGame\halo6}}' -'Halo: Spartan Assault': + - "{{Game data/config|Microsoft Store|{{p|userprofile}}\\AppData\\LocalLow\\MCC\\}}" + - "{{Game data/config|Steam|{{p|userprofile}}\\AppData\\LocalLow\\MCC\\}}" + - "{{Game data/saves|Microsoft Store|{{p|localappdata}}\\Packages\\Microsoft.Chelan_8wekyb3d8bbwe\\SystemAppData\\wgs\\}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\976730\\remote\\{{p|uid}}\\Saves\\SaveGame\\halo6}}" +"Halo: Spartan Assault": pageId: 8119 steam: 277430 templates: - - >- - {{Game data/config|Microsoft - Store|{{p|localappdata}}\Packages\Microsoft.HaloSpartanAssault_8wekyb3d8bbwe\Settings\settings.dat}} - - '{{Game data/config|Steam|{{p|steam}}\userdata\{{p|uid}}\277430\local\settings.bin}}' - - >- - {{Game data/saves|Microsoft - Store|{{p|localappdata}}\Packages\Microsoft.HaloSpartanAssault_8wekyb3d8bbwe\RoamingState}} - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\277430\remote\savedata.bin}}' -'Halo: Spartan Strike': + - "{{Game data/config|Microsoft Store|{{p|localappdata}}\\Packages\\Microsoft.HaloSpartanAssault_8wekyb3d8bbwe\\Settings\\settings.dat}}" + - "{{Game data/config|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\277430\\local\\settings.bin}}" + - "{{Game data/saves|Microsoft Store|{{p|localappdata}}\\Packages\\Microsoft.HaloSpartanAssault_8wekyb3d8bbwe\\RoamingState}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\277430\\remote\\savedata.bin}}" +"Halo: Spartan Strike": pageId: 20493 steam: 324570 templates: - - '{{Game data/config|Steam|{{p|steam}}\userdata\{{p|uid}}\324570\local\settings.bin}}' - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\324570\remote\savedata.bin}}' -'Halo: The Master Chief Collection': + - "{{Game data/config|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\324570\\local\\settings.bin}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\324570\\remote\\savedata.bin}}" +"Halo: The Master Chief Collection": pageId: 129467 steam: 976730 templates: - - '{{Game data/config|Microsoft Store|{{p|userprofile}}\AppData\LocalLow\MCC\}}' - - '{{Game data/config|Steam|{{p|userprofile}}\AppData\LocalLow\MCC\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Microsoft Store|{{p|localappdata}}\Packages\Microsoft.Chelan_8wekyb3d8bbwe\SystemAppData\wgs\}}' - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\976730\remote\{{p|uid}}\Saves\}}' + - "{{Game data/config|Microsoft Store|{{p|userprofile}}\\AppData\\LocalLow\\MCC\\}}" + - "{{Game data/config|Steam|{{p|userprofile}}\\AppData\\LocalLow\\MCC\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Microsoft Store|{{p|localappdata}}\\Packages\\Microsoft.Chelan_8wekyb3d8bbwe\\SystemAppData\\wgs\\}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\976730\\remote\\{{p|uid}}\\Saves\\}}" Halunazi: pageId: 74403 steam: 622820 -'Halzae: Heroes of Divinity': +"Halzae: Heroes of Divinity": pageId: 124486 steam: 942320 -Hamilton's Great Adventure: +"Hamilton's Great Adventure": pageId: 10672 steam: 42140 templates: - - '{{Game data/config|Windows|{{p|appdata}}\FatShark\Hamilton}}' - - '{{Game data/saves|Windows|{{p|steam}}\userdata\{{p|uid}}\42140\remote\}}' + - "{{Game data/config|Windows|{{p|appdata}}\\FatShark\\Hamilton}}" + - "{{Game data/saves|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\42140\\remote\\}}" Hamlet: pageId: 121290 steam: 673580 -'Hamlet or the Last Game without MMORPG Features, Shaders and Product Placement': +"Hamlet or the Last Game without MMORPG Features, Shaders and Product Placement": pageId: 40709 steam: 222160 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\mif2000\Hamlet\}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\Saved Games\mif2000''s Hamlet\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\mif2000\\Hamlet\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\Saved Games\\mif2000's Hamlet\\}}" Hammer & Anvil VR: pageId: 127205 steam: 1017780 Hammer & Sickle: pageId: 97543 templates: - - '{{Game data/config|Windows|{{p|game}}\cfg\}}' - - '{{Game data/saves|Windows|{{p|game}}\save\}}' + - "{{Game data/config|Windows|{{p|game}}\\cfg\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\save\\}}" Hammer 2: pageId: 74203 steam: 730620 templates: - - '{{Game data/config|Windows|{{p|HKCU}}\Software\RewindApp\Hammer2\}}' - - '{{Game data/saves|Windows|{{p|USERPROFILE}}\AppData\LocalLow\RewindApp\Hammer2\}}' + - "{{Game data/config|Windows|{{p|HKCU}}\\Software\\RewindApp\\Hammer2\\}}" + - "{{Game data/saves|Windows|{{p|USERPROFILE}}\\AppData\\LocalLow\\RewindApp\\Hammer2\\}}" Hammer Heads: pageId: 16568 steam: 3400 templates: - - '{{Game data/saves|Windows|{{p|game}}\users}}' + - "{{Game data/saves|Windows|{{p|game}}\\users}}" Hammer of the Gods: gog: 2088011259 pageId: 174485 @@ -73989,12 +71970,12 @@ Hammerfight: pageId: 4663 steam: 41100 templates: - - '{{Game data/config|Windows|{{p|game}}\Config.ini}}' - - '{{Game data/config|OS X|{{p|game}}/Hammerfight/Config.ini}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/Hammerfight/}}' - - '{{Game data/saves|Windows|{{p|game}}\Saves\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/HammerFight/Saves/}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/Hammerfight/}}' + - "{{Game data/config|Windows|{{p|game}}\\Config.ini}}" + - "{{Game data/config|OS X|{{p|game}}/Hammerfight/Config.ini}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/Hammerfight/}}" + - "{{Game data/saves|Windows|{{p|game}}\\Saves\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/HammerFight/Saves/}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/Hammerfight/}}" Hammerting: gog: 1444308510 pageId: 139703 @@ -74004,12 +71985,12 @@ Hammerwatch: pageId: 9287 steam: 239070 templates: - - '{{Game data/config|Windows|{{P|game}}/config.xml}}' - - '{{Game data/config|OS X|{{P|game}}/}}' - - '{{Game data/config|Linux|{{P|game}}/}}' - - '{{Game data/saves|Windows|{{P|game}}/saves/}}' - - '{{Game data/saves|OS X|{{P|game}}/saves/}}' - - '{{Game data/saves|Linux|{{P|game}}/saves/}}' + - "{{Game data/config|Windows|{{P|game}}/config.xml}}" + - "{{Game data/config|OS X|{{P|game}}/}}" + - "{{Game data/config|Linux|{{P|game}}/}}" + - "{{Game data/saves|Windows|{{P|game}}/saves/}}" + - "{{Game data/saves|OS X|{{P|game}}/saves/}}" + - "{{Game data/saves|Linux|{{P|game}}/saves/}}" Hammy: pageId: 89393 steam: 817120 @@ -74027,8 +72008,8 @@ Hamster Scramble: Hamsterball: pageId: 171942 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Raptisoft\Hamsterball}}' - - '{{Game data/saves|Windows|{{P|game}}\Data\TOURNAMENT.SAV}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Raptisoft\\Hamsterball}}" + - "{{Game data/saves|Windows|{{P|game}}\\Data\\TOURNAMENT.SAV}}" Hamsterdam: pageId: 122750 steam: 922040 @@ -74038,9 +72019,9 @@ Hanaby the Witch: Hanachirasu: pageId: 190993 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Nitroplus\Hanachirasu\version1.00\}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Nitroplus\Hanachirasu\version1.00\}}' -'Hanako: Honor & Blade': + - "{{Game data/config|Windows|{{p|appdata}}\\Nitroplus\\Hanachirasu\\version1.00\\}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Nitroplus\\Hanachirasu\\version1.00\\}}" +"Hanako: Honor & Blade": pageId: 62417 steam: 349510 Hanapon Princess: @@ -74055,15 +72036,15 @@ Hand Eye Cubination: Hand Simulator: pageId: 65035 steam: 657200 -'Hand Simulator: Survival': +"Hand Simulator: Survival": pageId: 153638 steam: 924140 Hand of Doom: pageId: 187211 steam: 1924400 templates: - - '{{Game data/config|Windows|{{p|HKCU}}\SOFTWARE\Torple Dook\Hand of Doom}}' - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Torple Dook\Hand of Doom\SaveData}}' + - "{{Game data/config|Windows|{{p|HKCU}}\\SOFTWARE\\Torple Dook\\Hand of Doom}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Torple Dook\\Hand of Doom\\SaveData}}" Hand of Fate: gog: 1424100574 gogSide: @@ -74074,31 +72055,29 @@ Hand of Fate: - 350460 - 351430 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Defiant Development\Hand of Fate\}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Defiant Development/Hand of Fate/}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Defiant Development\Hand of Fate\player.profile}}' - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\266510\remote\HandOfFate\player.profile}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Defiant Development/Hand of Fate/player.profile}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Defiant Development\\Hand of Fate\\}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Defiant Development/Hand of Fate/}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Defiant Development\\Hand of Fate\\player.profile}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\266510\\remote\\HandOfFate\\player.profile}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Defiant Development/Hand of Fate/player.profile}}" Hand of Fate 2: gog: 1819469826 gogSide: - 1099831630 - - 1820622057 - 1591953992 + - 1820622057 pageId: 39616 steam: 456670 steamSide: + - 748680 - 862450 - 945450 - 969730 - - 748680 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Defiant Development\Hand of Fate 2\}}' - - >- - {{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Defiant Development\Hand of Fate - 2\player_data.profile}} - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Defiant Development/Hand of Fate 2/}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Defiant Development/Hand of Fate 2/}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Defiant Development\\Hand of Fate 2\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Defiant Development\\Hand of Fate 2\\player_data.profile}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Defiant Development/Hand of Fate 2/}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Defiant Development/Hand of Fate 2/}}" Hand of Horzasha: pageId: 127563 steam: 1002690 @@ -74129,8 +72108,8 @@ Handball Manager - TEAM: Handkerchief: pageId: 101099 templates: - - '{{Game data/config|Windows|portable{{cn}}}}' - - '{{Game data/saves|Windows|"user" subfolder{{cn}}}}' + - "{{Game data/config|Windows|portable{{cn}}}}" + - "{{Game data/saves|Windows|\"user\" subfolder{{cn}}}}" Hands of Necromancy: gog: 1388220662 pageId: 182967 @@ -74157,7 +72136,7 @@ Hangeki: pageId: 49779 steam: 316020 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Hangeki}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Hangeki}}" Hanger World: pageId: 56830 steam: 484390 @@ -74170,11 +72149,11 @@ Hangover: Hangry Bunnies From Mars: pageId: 67907 steam: 672910 -'Hannah Montana: The Movie': +"Hannah Montana: The Movie": pageId: 81327 templates: - - '{{Game data/config|Windows|{{P|appdata}}\Disney Interactive Studios\Hannah Montana The Movie\}}' - - '{{Game data/saves|Windows|{{P|appdata}}\Disney Interactive Studios\Hannah Montana The Movie\}}' + - "{{Game data/config|Windows|{{P|appdata}}\\Disney Interactive Studios\\Hannah Montana The Movie\\}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\Disney Interactive Studios\\Hannah Montana The Movie\\}}" Hanse - The Hanseatic League: pageId: 91166 steam: 599010 @@ -74192,7 +72171,7 @@ Happy Album: Happy Anime Puzzle: pageId: 125938 steam: 1013130 -'Happy Birthday, Bernard': +"Happy Birthday, Bernard": pageId: 54631 steam: 552330 Happy Block: @@ -74230,8 +72209,8 @@ Happy Game: steamSide: - 1518070 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Amanita Design\HappyGame\}}' - - '{{Game data/saves|Windows|{{P|hkcu}}\Software\Amanita Design\HappyGame\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Amanita Design\\HappyGame\\}}" + - "{{Game data/saves|Windows|{{P|hkcu}}\\Software\\Amanita Design\\HappyGame\\}}" Happy Grumps: pageId: 142313 steam: 1109170 @@ -74271,11 +72250,11 @@ Happy Singh Adventures: Happy Stealing with Kirisame Marisa: pageId: 99296 steam: 880490 -'Happy Tree Friends: False Alarm': +"Happy Tree Friends: False Alarm": pageId: 60043 steam: 10470 templates: - - '{{Game data/config|Windows|{{p|game}}\config.cfg\}}' + - "{{Game data/config|Windows|{{p|game}}\\config.cfg\\}}" Happy Vampire Girl: pageId: 122332 steam: 976840 @@ -74294,7 +72273,7 @@ Happy picture: Happy toys: pageId: 123960 steam: 977640 -Happy's Humble Burger Farm: +"Happy's Humble Burger Farm": gog: 1488706732 pageId: 173462 steam: 1433340 @@ -74311,17 +72290,17 @@ Haque: pageId: 75614 steam: 662540 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Haque1_0_0_0\gamdat\}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\Haque1_0_0_0\gamdat\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\Haque1_0_0_0\\gamdat\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Haque1_0_0_0\\gamdat\\}}" Harakatsu 2: pageId: 150144 steam: 1155930 -'Harald: A Game of Influence': +"Harald: A Game of Influence": pageId: 72682 steam: 648340 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\3dduo\Harald\}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\3dduo\Harald\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\3dduo\\Harald\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\3dduo\\Harald\\}}" Haramatia: pageId: 132104 steam: 1049840 @@ -74331,15 +72310,15 @@ Harambe Kong: Harbinger: pageId: 180566 templates: - - '{{Game data/config|Windows|{{p|game}}\HarbingerCfg.exe|{{p|game}}\Harbinger.ini|{{p|game}}\Config.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\save\}}' + - "{{Game data/config|Windows|{{p|game}}\\HarbingerCfg.exe|{{p|game}}\\Harbinger.ini|{{p|game}}\\Config.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\save\\}}" Hard Ancient Life: pageId: 90628 steam: 818520 Hard Core Puzzle: pageId: 130151 steam: 1013730 -'Hard Era: The Fantasy Defence': +"Hard Era: The Fantasy Defence": pageId: 68701 steam: 692260 Hard Helmets: @@ -74355,7 +72334,7 @@ Hard Love - Darkest Desire: pageId: 153340 steam: 1135680 templates: - - '{{Game data/saves|Windows|{{p|steam}}\userdata\{{p|uid}}\1135680}}' + - "{{Game data/saves|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\1135680}}" Hard Man: pageId: 63793 steam: 655310 @@ -74372,15 +72351,15 @@ Hard Reset: pageId: 1868 steam: 98400 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Hard Reset Extended\profiles\{{p|uid}}\config.cfg}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Hard Reset Extended\profiles\{{p|uid}}\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Hard Reset Extended\\profiles\\{{p|uid}}\\config.cfg}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Hard Reset Extended\\profiles\\{{p|uid}}\\}}" Hard Reset Redux: gog: 1459790972 pageId: 33005 steam: 407810 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Hard Reset Redux\profiles\{{p|uid}}\config.cfg}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Hard Reset Redux\profiles\{{p|uid}}\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Hard Reset Redux\\profiles\\{{p|uid}}\\config.cfg}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Hard Reset Redux\\profiles\\{{p|uid}}\\}}" Hard Rock Zombie Truck: pageId: 67211 steam: 688590 @@ -74399,37 +72378,37 @@ Hard Times: Hard Truck: pageId: 31149 templates: - - '{{Game data/config|Windows|{{p|game}}\truck.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\*.pl}}' + - "{{Game data/config|Windows|{{p|game}}\\truck.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\*.pl}}" Hard Truck 2: gog: 1731168163 pageId: 31153 templates: - - '{{Game data/config|Windows|{{p|game}}\truck.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\*.pl1}}' + - "{{Game data/config|Windows|{{p|game}}\\truck.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\*.pl1}}" Hard Truck Apocalypse: pageId: 50567 steam: 285500 templates: - - '{{Game data/config|Windows|{{p|game}}\data\config.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\data\profiles}}' -'Hard Truck Apocalypse: Arcade': + - "{{Game data/config|Windows|{{p|game}}\\data\\config.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\data\\profiles}}" +"Hard Truck Apocalypse: Arcade": pageId: 50565 steam: 286830 -'Hard Truck Apocalypse: Rise of Clans': +"Hard Truck Apocalypse: Rise of Clans": pageId: 50566 steam: 286810 Hard Truck Tycoon: pageId: 188169 templates: - - '{{Game data/saves|Windows|{{p|game}}\Saves}}' -'Hard Truck: 18 Wheels of Steel': + - "{{Game data/saves|Windows|{{p|game}}\\Saves}}" +"Hard Truck: 18 Wheels of Steel": gog: 1088641408 pageId: 29603 steam: 1318750 templates: - - '{{Game data/config|Windows|{{P|game}}\game\usr\config.cfg}}' - - '{{Game data/saves|Windows|{{P|game}}\game\usr\save\}}' + - "{{Game data/config|Windows|{{P|game}}\\game\\usr\\config.cfg}}" + - "{{Game data/saves|Windows|{{P|game}}\\game\\usr\\save\\}}" Hard Way to Heaven: pageId: 91999 steam: 836120 @@ -74438,23 +72417,17 @@ Hard West: pageId: 34310 steam: 307670 templates: - - >- - {{Game - data/config|Windows|{{P|userprofile\Documents}}\HardWest\{{P|uid}}\keys.ini|{{P|userprofile\Documents}}\HardWest\{{P|uid}}\options.ini}} - - >- - {{Game - data/config|Linux|{{P|linuxhome}}/Documents/HardWest/{{P|uid}}/keys.ini|{{P|linuxhome}}/Documents/HardWest/{{P|uid}}/options.ini}} - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\HardWest\{{P|uid}}\}}' - - '{{Game data/saves|Linux|{{P|linuxhome}}/Documents/HardWest/{{P|uid}}/}}' + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\HardWest\\{{P|uid}}\\keys.ini|{{P|userprofile\\Documents}}\\HardWest\\{{P|uid}}\\options.ini}}" + - "{{Game data/config|Linux|{{P|linuxhome}}/Documents/HardWest/{{P|uid}}/keys.ini|{{P|linuxhome}}/Documents/HardWest/{{P|uid}}/options.ini}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\HardWest\\{{P|uid}}\\}}" + - "{{Game data/saves|Linux|{{P|linuxhome}}/Documents/HardWest/{{P|uid}}/}}" Hard West 2: gog: 1345516108 pageId: 180007 steam: 1282410 templates: - - >- - {{Game data/config|Windows|{{P|userprofile\appdata\locallow}}\Ice Code - Games\HardWest2\GameSettings\|{{P|hkcu}}\Software\Ice Code Games\HardWest2\}} - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Ice Code Games\HardWest2\Saves\}}' + - "{{Game data/config|Windows|{{P|userprofile\\appdata\\locallow}}\\Ice Code Games\\HardWest2\\GameSettings\\|{{P|hkcu}}\\Software\\Ice Code Games\\HardWest2\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Ice Code Games\\HardWest2\\Saves\\}}" Hard Work: pageId: 95186 steam: 845520 @@ -74484,7 +72457,7 @@ Hardcore Mecha: pageId: 139145 steam: 746580 templates: - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\RocketPunch Games\HARDCORE MECHA\}}' + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\RocketPunch Games\\HARDCORE MECHA\\}}" Hardcore Parkour: pageId: 138875 steam: 1097600 @@ -74503,27 +72476,25 @@ Hardland: Hardnoid: pageId: 57974 steam: 574850 -'Hardspace: Shipbreaker': +"Hardspace: Shipbreaker": gog: 2057574746 gogSide: - - 1363540102 - 1289361058 + - 1363540102 - 1982750767 pageId: 160774 steam: 1161580 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/config|Microsoft Store|{{p|game}}\content\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Blackbird Interactive\Hardspace_ Shipbreaker\Saves}}' - - >- - {{Game data/saves|Microsoft - Store|{{P|localappdata}}\Packages\FocusHomeInteractiveSA.HardspaceShipbreaker-PCVers_4hny5m903y3g0\SystemAppData\wgs\}} + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/config|Microsoft Store|{{p|game}}\\content\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Blackbird Interactive\\Hardspace_ Shipbreaker\\Saves}}" + - "{{Game data/saves|Microsoft Store|{{P|localappdata}}\\Packages\\FocusHomeInteractiveSA.HardspaceShipbreaker-PCVers_4hny5m903y3g0\\SystemAppData\\wgs\\}}" Hardwar: pageId: 171573 steam: 1500540 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\SOFTWARE\Refinery\hardman}}' - - '{{Game data/saves|Windows|{{p|game}}\Savegames\*.sav}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\Refinery\\hardman}}" + - "{{Game data/saves|Windows|{{p|game}}\\Savegames\\*.sav}}" Hardware Engineering: pageId: 50761 steam: 525610 @@ -74531,7 +72502,7 @@ Hardware Engineers: pageId: 38422 steam: 485900 templates: - - '{{Game data/saves|Windows|{{p|game}}\Save\}}' + - "{{Game data/saves|Windows|{{p|game}}\\Save\\}}" Hardway Party: pageId: 95123 steam: 816150 @@ -74545,32 +72516,28 @@ Hare In The Hat: pageId: 48322 steam: 359810 templates: - - >- - {{Game data/config|Windows|{{P|userprofile}}\Documents\HIH\settings.bin (Main - game)|{{P|userprofile}}\Documents\HIH2\settings.bin (The Abyss DLC)}} - - >- - {{Game data/saves|Windows|{{P|userprofile}}\Documents\HIH\settings.bin (Main - game)|{{P|userprofile}}\Documents\HIH2\settings.bin (The Abyss DLC)}} + - "{{Game data/config|Windows|{{P|userprofile}}\\Documents\\HIH\\settings.bin (Main game)|{{P|userprofile}}\\Documents\\HIH2\\settings.bin (The Abyss DLC)}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\Documents\\HIH\\settings.bin (Main game)|{{P|userprofile}}\\Documents\\HIH2\\settings.bin (The Abyss DLC)}}" Hare Raising Havoc: pageId: 81398 -'Harem Girl: Alicia': +"Harem Girl: Alicia": pageId: 179107 steam: 1005520 templates: - - '{{Game data/saves|Windows|{{p|game}}\game\saves}}' -'Harem Girl: Nikki': + - "{{Game data/saves|Windows|{{p|game}}\\game\\saves}}" +"Harem Girl: Nikki": pageId: 179105 steam: 1008210 templates: - - '{{Game data/saves|Windows|{{p|game}}\game\saves}}' + - "{{Game data/saves|Windows|{{p|game}}\\game\\saves}}" Harem Wars: pageId: 77411 steam: 657250 -'Harley-Davidson: Race to the Rally': +"Harley-Davidson: Race to the Rally": pageId: 179634 templates: - - '{{Game data/config|Windows|{{p|game}}\Harley\Cfg\console.cfg }}' - - '{{Game data/saves|Windows|{{p|ProgramData}}\Harley-Davidson_ Race to the Rally Saves\ }}' + - "{{Game data/config|Windows|{{p|game}}\\Harley\\Cfg\\console.cfg }}" + - "{{Game data/saves|Windows|{{p|ProgramData}}\\Harley-Davidson_ Race to the Rally Saves\\ }}" Harlow: pageId: 176000 steam: 1526350 @@ -74581,18 +72548,18 @@ Harmonia: pageId: 40100 steam: 421660 templates: - - '{{Game data/saves|Windows|{{p|game}}\SAVEDATA\}}' + - "{{Game data/saves|Windows|{{p|game}}\\SAVEDATA\\}}" Harmonium: pageId: 88093 steam: 712890 Harmony of the bravest: pageId: 95415 steam: 865750 -'Harmony: The Fall of Reverie': +"Harmony: The Fall of Reverie": pageId: 185071 steam: 1966420 templates: - - '{{Game data/config|Windows|LocalAppData\HMY\Saved\Config\Windows}}' + - "{{Game data/config|Windows|LocalAppData\\HMY\\Saved\\Config\\Windows}}" HarmonyTD: pageId: 96459 steam: 866100 @@ -74614,58 +72581,54 @@ Harrier Jump Jet: Harry Potter and the Chamber of Secrets: pageId: 8846 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Harry Potter II\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Harry Potter II\Save\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Harry Potter II\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Harry Potter II\\Save\\}}" Harry Potter and the Deathly Hallows Part 1: pageId: 19544 templates: - - >- - {{Game data/config|Windows|{{p|localappdata}}\Electronic Arts\Harry Potter and the Deathly Hallows (TM) – Part - 1\config.txt}} - - '{{Game data/saves|Windows|{{p|localappdata}}\Electronic Arts\Harry Potter and the Deathly Hallows (TM) – Part 1}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Electronic Arts\\Harry Potter and the Deathly Hallows (TM) – Part 1\\config.txt}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Electronic Arts\\Harry Potter and the Deathly Hallows (TM) – Part 1}}" Harry Potter and the Deathly Hallows Part 2: pageId: 19546 templates: - - >- - {{Game data/config|Windows|{{p|localappdata}}\Electronic Arts\Harry Potter and the Deathly Hallows (TM) – Part - 2\config.txt}} - - '{{Game data/saves|Windows|{{p|localappdata}}\Electronic Arts\Harry Potter and the Deathly Hallows (TM) – Part 2}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Electronic Arts\\Harry Potter and the Deathly Hallows (TM) – Part 2\\config.txt}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Electronic Arts\\Harry Potter and the Deathly Hallows (TM) – Part 2}}" Harry Potter and the Goblet of Fire: pageId: 19538 templates: - - '{{Game data/saves|Windows|{{p|localappdata}}\Electronic Arts\Harry Potter and the Goblet of Fire\}}' + - "{{Game data/saves|Windows|{{p|localappdata}}\\Electronic Arts\\Harry Potter and the Goblet of Fire\\}}" Harry Potter and the Half-Blood Prince: pageId: 19542 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Electronic Arts\Harry Potter and the Half Blood Prince\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Electronic Arts\Harry Potter and the Half Blood Prince\HPHBP0\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Electronic Arts\\Harry Potter and the Half Blood Prince\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Electronic Arts\\Harry Potter and the Half Blood Prince\\HPHBP0\\}}" Harry Potter and the Order of the Phoenix: pageId: 19540 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Electronic Arts\Harry Potter and the Order of the Phoenix\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Electronic Arts\Harry Potter and the Order of the Phoenix\HPOOTP\}}' -Harry Potter and the Philosopher's Stone: + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Electronic Arts\\Harry Potter and the Order of the Phoenix\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Electronic Arts\\Harry Potter and the Order of the Phoenix\\HPOOTP\\}}" +"Harry Potter and the Philosopher's Stone": pageId: 8540 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Harry Potter\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Harry Potter\Save\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Harry Potter\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Harry Potter\\Save\\}}" Harry Potter and the Prisoner of Azkaban: pageId: 19536 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Harry Potter™ and the Prisoner of Azkaban\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Harry Potter™ and the Prisoner of Azkaban\Save\}}' -'Harry Potter: Puzzles & Spells': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Harry Potter™ and the Prisoner of Azkaban\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Harry Potter™ and the Prisoner of Azkaban\\Save\\}}" +"Harry Potter: Puzzles & Spells": pageId: 175296 -'Harry Potter: Quidditch Champions': +"Harry Potter: Quidditch Champions": pageId: 186592 -'Harry Potter: Quidditch World Cup': +"Harry Potter: Quidditch World Cup": pageId: 19551 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\EA Games Saves\Harry Potter - Quidditch WC}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\EA Games Saves\Harry Potter - Quidditch WC}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\EA Games Saves\\Harry Potter - Quidditch WC}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\EA Games Saves\\Harry Potter - Quidditch WC}}" Harry and the Haunted House: pageId: 186452 -Harry's Burgers: +"Harry's Burgers": pageId: 82440 steam: 753020 Harsh: @@ -74678,36 +72641,36 @@ Harts: pageId: 79306 steam: 769360 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Reglest5\Harts\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Reglest5\\Harts\\}}" Haru to Shura: pageId: 169953 steam: 1352910 templates: - - '{{Game data/config|Windows|{{P|game}}\option.ini}}' - - '{{Game data/saves|Windows|{{P|game}}\save-c\}}' + - "{{Game data/config|Windows|{{P|game}}\\option.ini}}" + - "{{Game data/saves|Windows|{{P|game}}\\save-c\\}}" Harukanaru Augusta: pageId: 188508 -'Harvest Days: My Dream Farm': +"Harvest Days: My Dream Farm": gog: 2007792915 pageId: 177508 steam: 1515320 templates: - - '{{Game data/saves|Windows|{{p|game}}\Harvest Days_Data\Resources\save}}' + - "{{Game data/saves|Windows|{{p|game}}\\Harvest Days_Data\\Resources\\save}}" Harvest Life: pageId: 74560 steam: 649790 -'Harvest Moon: Light of Hope': +"Harvest Moon: Light of Hope": pageId: 75047 steam: 585900 -'Harvest Moon: Mad Dash': +"Harvest Moon: Mad Dash": pageId: 153190 steam: 1048020 -'Harvest Moon: One World': +"Harvest Moon: One World": pageId: 171349 steam: 1246870 -'Harvest Moon: Seeds of Memories': +"Harvest Moon: Seeds of Memories": pageId: 168129 -'Harvest Moon: The Winds of Anthos': +"Harvest Moon: The Winds of Anthos": pageId: 188347 steam: 2140650 Harvest Seasons: @@ -74716,7 +72679,7 @@ Harvest Seasons: Harvest Simulator VR: pageId: 76217 steam: 612030 -'Harvest: Massive Encounter': +"Harvest: Massive Encounter": pageId: 41322 steam: 15400 Harvested: @@ -74729,26 +72692,26 @@ Harvestella: - HARVESTELLA steam: 1816300 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Harvestella\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{P|userprofile\documents}}\My Games\HARVESTELLA\Steam\{{P|uid}}\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\Harvestella\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\documents}}\\My Games\\HARVESTELLA\\Steam\\{{P|uid}}\\}}" Harvester: gog: 1207661373 pageId: 1398 steam: 287020 templates: - - '{{Game data/config|DOS|{{p|game}}\CONFIG.INI}}' - - '{{Game data/config|Windows|{{p|game}}\HARVEST\CONFIG.INI}}' - - '{{Game data/saves|DOS|{{p|game}}\}}' - - '{{Game data/saves|Windows|{{p|game}}\HARVEST\}}' -'Harvester of Dreams: Episode 1': + - "{{Game data/config|DOS|{{p|game}}\\CONFIG.INI}}" + - "{{Game data/config|Windows|{{p|game}}\\HARVEST\\CONFIG.INI}}" + - "{{Game data/saves|DOS|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\HARVEST\\}}" +"Harvester of Dreams: Episode 1": pageId: 79328 steam: 772060 Has-Been Heroes: pageId: 56517 steam: 492290 templates: - - '{{Game data/config|Windows|{{P|appdata}}\HasBeenHeroes\options.txt}}' - - '{{Game data/saves|Steam|{{P|steam}}\userdata\{{P|uid}}\492290\remote\}}' + - "{{Game data/config|Windows|{{P|appdata}}\\HasBeenHeroes\\options.txt}}" + - "{{Game data/saves|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\492290\\remote\\}}" Hasfax: pageId: 156965 steam: 1187420 @@ -74801,21 +72764,21 @@ Hate Plus: pageId: 34628 steam: 239700 templates: - - '{{Game data/config|Windows|{{p|appdata}}\RenPy\Analogue\persistent}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/RenPy/Analogue/persistent}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.renpy/Analogue/persistent}}' - - '{{Game data/saves|Windows|{{p|appdata}}\RenPy\Analogue\5-*.save}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/RenPy/Analogue/5-*.save}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.renpy/Analogue/5-*.save}}' -'Haters, Kill Them All!': + - "{{Game data/config|Windows|{{p|appdata}}\\RenPy\\Analogue\\persistent}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/RenPy/Analogue/persistent}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.renpy/Analogue/persistent}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\RenPy\\Analogue\\5-*.save}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/RenPy/Analogue/5-*.save}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.renpy/Analogue/5-*.save}}" +"Haters, Kill Them All!": pageId: 82724 steam: 801780 Hatfall: pageId: 29994 steam: 403700 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Hatfall\}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\Hatfall\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\Hatfall\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Hatfall\\}}" Hatland Adventures: pageId: 48789 steam: 347930 @@ -74824,17 +72787,17 @@ Hatoful Boyfriend: pageId: 21639 steam: 310080 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\Mediatonic\HatofulBoyfriend\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Mediatonic\HatofulBoyfriend\}}' -'Hatoful Boyfriend: Holiday Star': + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Mediatonic\\HatofulBoyfriend\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Mediatonic\\HatofulBoyfriend\\}}" +"Hatoful Boyfriend: Holiday Star": gog: 1450092067 gogSide: - 1450100911 pageId: 30182 steam: 377080 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\SOFTWARE\Mediatonic\Hatoful Boyfriend: Holiday Star\}}' - - '{{Game data/saves|Windows|{{p|game}}\Hatoful Boyfriend Holiday Star\HB2_Data\SavedGames\HB2\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\Mediatonic\\Hatoful Boyfriend: Holiday Star\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\Hatoful Boyfriend Holiday Star\\HB2_Data\\SavedGames\\HB2\\}}" Hatoful Kareshi: pageId: 30184 steam: 310080 @@ -74842,24 +72805,24 @@ Hatred: pageId: 22779 steam: 341940 templates: - - '{{Game data/config|Windows|{{p|game}}\Hatred\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{p|game}}\Hatred\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{p|game}}\\Hatred\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\Hatred\\Saved\\SaveGames\\}}" Hatsune Miku Logic Paint S: pageId: 175300 steam: 2089350 templates: - - '{{Game data/saves|Windows|{{p|game}}\Save\SaveData.bin}}' + - "{{Game data/saves|Windows|{{p|game}}\\Save\\SaveData.bin}}" Hatsune Miku VR: pageId: 87985 steam: 707300 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\SOFTWARE\Crypton Future Media\MikuVR\}}' - - '{{Game data/saves|Windows|{{p|game}}\save\savedata.dat}}' -'Hatsune Miku: Project DIVA Mega Mix+': + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\Crypton Future Media\\MikuVR\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\save\\savedata.dat}}" +"Hatsune Miku: Project DIVA Mega Mix+": pageId: 177890 steam: 1761390 templates: - - '{{Game data/saves|Windows|{{p|appdata}}\SEGA\Project DIVA MEGA39''s\Steam\{{P|uid}}\*.dat}}' + - "{{Game data/saves|Windows|{{p|appdata}}\\SEGA\\Project DIVA MEGA39's\\Steam\\{{P|uid}}\\*.dat}}" Haul Asteroid: pageId: 72861 steam: 706210 @@ -74873,21 +72836,21 @@ Hauma: pageId: 187534 steam: 1443470 steamSide: - - 2430300 - 1544870 - 1544880 -'Haunt the House: Terrortown': + - 2430300 +"Haunt the House: Terrortown": gog: 1703512640 pageId: 50117 steam: 270630 templates: - - '{{Game data/saves|Windows|{{p|APPDATA}}\air.com.sfbgames.HauntTheHouseTerrortown\Local Store}}' + - "{{Game data/saves|Windows|{{p|APPDATA}}\\air.com.sfbgames.HauntTheHouseTerrortown\\Local Store}}" Haunted: pageId: 49747 steam: 260550 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Haunted\settings-user.ini}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Haunted\save\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Haunted\\settings-user.ini}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Haunted\\save\\}}" Haunted Chocolatier: pageId: 172410 Haunted Dream House: @@ -74896,38 +72859,38 @@ Haunted Dream House: Haunted Gas Station: pageId: 148858 steam: 1164390 -'Haunted Halls: Fears from Childhood': +"Haunted Halls: Fears from Childhood": pageId: 82332 renamedFrom: - - 'Haunted Halls: Fears from Childhood Collector''s Edition' + - "Haunted Halls: Fears from Childhood Collector's Edition" steam: 796100 -'Haunted Halls: Green Hills Sanitarium': +"Haunted Halls: Green Hills Sanitarium": pageId: 63010 renamedFrom: - - 'Haunted Halls: Green Hills Sanitarium Collector''s Edition' + - "Haunted Halls: Green Hills Sanitarium Collector's Edition" steam: 647080 -'Haunted Halls: Revenge of Doctor Blackmore': +"Haunted Halls: Revenge of Doctor Blackmore": pageId: 102737 steam: 896970 Haunted Hotel: pageId: 52213 steam: 533030 -'Haunted Hotel II: Believe the Lies': +"Haunted Hotel II: Believe the Lies": pageId: 62046 steam: 631270 -'Haunted Hotel: Charles Dexter Ward': +"Haunted Hotel: Charles Dexter Ward": pageId: 95457 steam: 866740 -'Haunted Hotel: Eclipse': +"Haunted Hotel: Eclipse": pageId: 125031 steam: 995900 -'Haunted Hotel: Lonely Dream': +"Haunted Hotel: Lonely Dream": pageId: 80845 steam: 786040 -'Haunted Hotel: Room 18': +"Haunted Hotel: Room 18": pageId: 153338 steam: 1182670 -'Haunted Hotel: Stay in the Light': +"Haunted Hotel: Stay in the Light": pageId: 64733 steam: 660170 Haunted House: @@ -74937,75 +72900,75 @@ Haunted House (2023): pageId: 190400 steam: 1942330 templates: - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Atari\Haunted House\}}' + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Atari\\Haunted House\\}}" Haunted House Renovator: pageId: 176285 steam: 1917850 -'Haunted House: Cryptic Graves': +"Haunted House: Cryptic Graves": pageId: 49249 steam: 314850 -'Haunted Jail: Alcatas': +"Haunted Jail: Alcatas": pageId: 132568 steam: 1056650 -'Haunted Legends: The Bronze Horseman': +"Haunted Legends: The Bronze Horseman": pageId: 61046 steam: 623460 -'Haunted Legends: The Dark Wishes': +"Haunted Legends: The Dark Wishes": pageId: 123351 steam: 971100 -'Haunted Legends: The Queen of Spades': +"Haunted Legends: The Queen of Spades": pageId: 50851 renamedFrom: - - 'Haunted Legends: The Queen of Spades Collector''s Edition' + - "Haunted Legends: The Queen of Spades Collector's Edition" steam: 533090 -'Haunted Legends: The Scars of Lamia': +"Haunted Legends: The Scars of Lamia": pageId: 144047 steam: 1142290 -'Haunted Legends: The Stone Guest': +"Haunted Legends: The Stone Guest": pageId: 92662 steam: 838760 -'Haunted Legends: The Undertaker': +"Haunted Legends: The Undertaker": pageId: 78601 steam: 770920 -'Haunted Manor: Lord of Mirrors': +"Haunted Manor: Lord of Mirrors": pageId: 60103 renamedFrom: - - 'Haunted Manor: Lord of Mirrors Collector''s Edition' + - "Haunted Manor: Lord of Mirrors Collector's Edition" steam: 614380 -'Haunted Manor: Painted Beauties': +"Haunted Manor: Painted Beauties": pageId: 90182 steam: 826390 -'Haunted Manor: Queen of Death': +"Haunted Manor: Queen of Death": pageId: 72754 renamedFrom: - - 'Haunted Manor: Queen of Death Collector''s Edition' + - "Haunted Manor: Queen of Death Collector's Edition" steam: 723950 Haunted Memories: pageId: 106435 steam: 241640 -'Haunted Past: Realm of Ghosts': +"Haunted Past: Realm of Ghosts": pageId: 50464 steam: 288840 Haunted Showers: pageId: 107780 steam: 907630 -'Haunted Train: Frozen in Time': +"Haunted Train: Frozen in Time": pageId: 78208 renamedFrom: - - 'Haunted Train: Frozen in Time Collector''s Edition' + - "Haunted Train: Frozen in Time Collector's Edition" steam: 758650 -'Haunted Train: Spirits of Charon': +"Haunted Train: Spirits of Charon": pageId: 62018 renamedFrom: - - 'Haunted Train: Spirits of Charon Collector''s Edition' + - "Haunted Train: Spirits of Charon Collector's Edition" steam: 631240 -'Haunted: Halloween ''85': +"Haunted: Halloween '85": pageId: 52506 steam: 538220 -'Haunted: Halloween ''86 - The Curse of Possum Hollow': +"Haunted: Halloween '86 - The Curse of Possum Hollow": pageId: 60055 steam: 607490 -'Haunted: Poppy''s Nightmare': +"Haunted: Poppy's Nightmare": pageId: 150049 steam: 1163620 Haunting Hour: @@ -75021,35 +72984,31 @@ Have a Nice Death: pageId: 173577 steam: 1740720 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\MagicDesignStudio\HaveANiceDeath}}' + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\MagicDesignStudio\\HaveANiceDeath}}" Haven: gog: 1113297025 pageId: 137430 steam: 983970 templates: - - >- - {{Game - data/config|Windows|{{P|userprofile\appdata\locallow}}\TheGameBakers\Haven\Settings.json|{{P|hkcu}}\SOFTWARE\TheGameBakers\Haven\}} - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\TheGameBakers\Haven\}}' - - >- - {{Game data/saves|Microsoft - Store|{{P|localappdata}}\Packages\TheGameBakers.Haven_58gfg5kme4t12\SystemAppData\wgs}} + - "{{Game data/config|Windows|{{P|userprofile\\appdata\\locallow}}\\TheGameBakers\\Haven\\Settings.json|{{P|hkcu}}\\SOFTWARE\\TheGameBakers\\Haven\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\TheGameBakers\\Haven\\}}" + - "{{Game data/saves|Microsoft Store|{{P|localappdata}}\\Packages\\TheGameBakers.Haven_58gfg5kme4t12\\SystemAppData\\wgs}}" Haven Moon: pageId: 42481 steam: 493720 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\FrancoisRoussel\HavenMoon\}}' - - '{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/FrancoisRoussel/HavenMoon/prefs}}' - - '{{Game data/saves|Windows|{{P|hkcu}}\Software\FrancoisRoussel\HavenMoon\}}' - - '{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/FrancoisRoussel/HavenMoon/prefs}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\FrancoisRoussel\\HavenMoon\\}}" + - "{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/FrancoisRoussel/HavenMoon/prefs}}" + - "{{Game data/saves|Windows|{{P|hkcu}}\\Software\\FrancoisRoussel\\HavenMoon\\}}" + - "{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/FrancoisRoussel/HavenMoon/prefs}}" Haven Park: gog: 1906330252 pageId: 170379 steam: 1549550 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\SOFTWARE\BubbleStudio\HavenPark}}' - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\BubbleStudio\HavenPark\game.save}}' - - '{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/BubbleStudio/HavenPark/game.save}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\SOFTWARE\\BubbleStudio\\HavenPark}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\BubbleStudio\\HavenPark\\game.save}}" + - "{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/BubbleStudio/HavenPark/game.save}}" Havoc in Heaven: pageId: 91452 steam: 824400 @@ -75060,7 +73019,7 @@ Hawken: pageId: 4047 steam: 271290 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Hawken\HawkenGame\Config\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Hawken\\HawkenGame\\Config\\}}" Hawken Reborn: pageId: 187210 steam: 705040 @@ -75077,14 +73036,14 @@ Haydee: pageId: 41499 steam: 530890 templates: - - '{{Game data/config|Windows|{{p|game}}\System\*.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\Profile\{{p|uid}}\Saves\|{{P|game}}\Save\}}' + - "{{Game data/config|Windows|{{p|game}}\\System\\*.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\Profile\\{{p|uid}}\\Saves\\|{{P|game}}\\Save\\}}" Haydee 2: pageId: 165794 steam: 1444650 templates: - - '{{Game data/config|Windows|{{P|game}}\System\Settings.cfg|{{P|game}}\System\Edith.cfg}}' - - '{{Game data/saves|Windows|{{P|game}}\Saves\}}' + - "{{Game data/config|Windows|{{P|game}}\\System\\Settings.cfg|{{P|game}}\\System\\Edith.cfg}}" + - "{{Game data/saves|Windows|{{P|game}}\\Saves\\}}" Hayfever: pageId: 154186 steam: 1159450 @@ -75106,7 +73065,7 @@ Hazel Sky: Hazelnut Bastille: pageId: 122914 steam: 968710 -'Hazen: The Dark Whispers': +"Hazen: The Dark Whispers": pageId: 41134 steam: 46730 Hazmat Hijinks: @@ -75121,7 +73080,7 @@ He Will Shoot: Head Goal: pageId: 67231 steam: 687850 -'Head It!: VR Soccer Heading Game': +"Head It!: VR Soccer Heading Game": pageId: 52073 steam: 543110 Head Shot: @@ -75148,8 +73107,8 @@ Headcrab Frenzy!: pageId: 171021 steam: 354900 templates: - - '{{Game data/config|Windows|{{P|game}}\headcrab frenzy\hcfrenzy\valve\}}' -'Header Goal VR: Being Axel Rix': + - "{{Game data/config|Windows|{{P|game}}\\headcrab frenzy\\hcfrenzy\\valve\\}}" +"Header Goal VR: Being Axel Rix": pageId: 53289 steam: 532120 Headlander: @@ -75157,16 +73116,16 @@ Headlander: pageId: 37977 steam: 340000 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Doublefine\Headlander\}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Doublefine\Headlander\}}' + - "{{Game data/config|Windows|{{p|appdata}}\\Doublefine\\Headlander\\}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Doublefine\\Headlander\\}}" Headliner: pageId: 68490 steam: 680980 -'Headliner: NoviNews': +"Headliner: NoviNews": pageId: 109954 steam: 918820 templates: - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Unbound Creations\Headliner_ NoviNews\saves}}' + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Unbound Creations\\Headliner_ NoviNews\\saves}}" Headmaster: pageId: 69435 steam: 621010 @@ -75180,8 +73139,8 @@ Headsnatchers: pageId: 90602 steam: 797410 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Headsnatchers\Saved\Config\WindowsNoEditor\Engine.ini}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Headsnatchers\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Headsnatchers\\Saved\\Config\\WindowsNoEditor\\Engine.ini}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Headsnatchers\\Saved\\SaveGames\\}}" Headspun: pageId: 89674 steam: 808770 @@ -75189,8 +73148,8 @@ Heal: pageId: 142131 steam: 1056610 templates: - - '{{Game data/config|Windows|{{P|appdata}}\heal\savedatapc.ini}}' - - '{{Game data/saves|Windows|{{P|appdata}}\heal\savedatapc.ini}}' + - "{{Game data/config|Windows|{{P|appdata}}\\heal\\savedatapc.ini}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\heal\\savedatapc.ini}}" Heal & Hurt: pageId: 180134 steam: 2022360 @@ -75203,7 +73162,7 @@ Heal Them All: Healer Simulator: pageId: 90140 steam: 801340 -Healer's Quest: +"Healer's Quest": pageId: 58398 steam: 598490 HeapVR: @@ -75219,8 +73178,8 @@ Heart Star: pageId: 191218 steam: 1243790 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Stencyl\Heart Star\}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Stencyl\Heart Star\}}' + - "{{Game data/config|Windows|{{p|appdata}}\\Stencyl\\Heart Star\\}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Stencyl\\Heart Star\\}}" Heart and Axe: pageId: 127583 steam: 1014840 @@ -75228,8 +73187,8 @@ Heart and Seoul: pageId: 52578 steam: 546490 templates: - - '{{Game data/config|Windows|{{p|game}}\data\system\Config.tjs}}' - - '{{Game data/saves|Windows|{{p|game}}\Heart_and_Seoul_tyrano_data.sav}}' + - "{{Game data/config|Windows|{{p|game}}\\data\\system\\Config.tjs}}" + - "{{Game data/saves|Windows|{{p|game}}\\Heart_and_Seoul_tyrano_data.sav}}" Heart in the Dark: pageId: 150331 steam: 1142890 @@ -75242,18 +73201,18 @@ Heart of Crown: Heart of Darkness: pageId: 20134 templates: - - '{{Game data/config|Windows|{{P|game}}\SETUP.CFG}}' - - '{{Game data/saves|Windows|{{P|game}}\SETUP.CFG}}' + - "{{Game data/config|Windows|{{P|game}}\\SETUP.CFG}}" + - "{{Game data/saves|Windows|{{P|game}}\\SETUP.CFG}}" Heart of Dixie: pageId: 94531 steam: 853700 Heart of Ember CH1: pageId: 47119 steam: 382320 -'Heart of Moon : The Mask of Seasons': +"Heart of Moon : The Mask of Seasons": pageId: 123411 steam: 976960 -'Heart of the Emberstone: Coliseum': +"Heart of the Emberstone: Coliseum": pageId: 79091 steam: 767690 Heart of the House: @@ -75264,18 +73223,18 @@ Heart of the Woods: pageId: 94463 steam: 844660 templates: - - '{{Game data/config|Linux|{{p|game}}/game/game/saves/|{{p|linuxhome}}/.renpy/hotw-02152019/}}' - - '{{Game data/saves|Linux|{{p|game}}/game/game/saves/|{{p|linuxhome}}/.renpy/hotw-02152019/}}' + - "{{Game data/config|Linux|{{p|game}}/game/game/saves/|{{p|linuxhome}}/.renpy/hotw-02152019/}}" + - "{{Game data/saves|Linux|{{p|game}}/game/game/saves/|{{p|linuxhome}}/.renpy/hotw-02152019/}}" Heart&Slash: pageId: 41719 steam: 326840 -Heart'n Block: +"Heart'n Block": pageId: 100242 steam: 869630 -'Heart''s Medicine: Hospital Heat': +"Heart's Medicine: Hospital Heat": pageId: 62514 steam: 605990 -'Heart''s Medicine: Time to Heal': +"Heart's Medicine: Time to Heal": pageId: 40297 steam: 494230 Heart-Pounding Dating Prep: @@ -75284,7 +73243,7 @@ Heart-Pounding Dating Prep: Heart. Papers. Border.: pageId: 60133 steam: 604110 -'HeartZ: Co-Hope Puzzles': +"HeartZ: Co-Hope Puzzles": pageId: 42643 steam: 347330 Heartbeat: @@ -75295,7 +73254,7 @@ Heartbeat: Heartbound: pageId: 63052 steam: 567380 -'Heartbreak High: A Break-Up Simulator': +"Heartbreak High: A Break-Up Simulator": pageId: 94425 steam: 836350 Hearthlands: @@ -75303,27 +73262,27 @@ Hearthlands: pageId: 37604 steam: 336300 templates: - - '{{Game data/config|Windows|{{P|game}}\config.txt}}' - - '{{Game data/saves|Windows|{{P|game}}\saves\}}' + - "{{Game data/config|Windows|{{P|game}}\\config.txt}}" + - "{{Game data/saves|Windows|{{P|game}}\\saves\\}}" Hearthstone: pageId: 11595 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Blizzard\Hearthstone\options.txt}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Applications/Hearthstone/client.config}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Blizzard\\Hearthstone\\options.txt}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Applications/Hearthstone/client.config}}" Heartlight: pageId: 142652 templates: - - '{{Game data/config|DOS|{{p|game}}\config.dta}}' + - "{{Game data/config|DOS|{{p|game}}\\config.dta}}" Heartomics: pageId: 43987 steam: 456660 Heartomics 2: pageId: 43977 steam: 455970 -'Heartomics: Lost Count': +"Heartomics: Lost Count": pageId: 39628 steam: 502300 -'Heartomics: Valkyries': +"Heartomics: Valkyries": pageId: 146098 steam: 603210 Hearts of Chaos: @@ -75337,24 +73296,24 @@ Hearts of Iron II: pageId: 38374 steam: 22130 templates: - - '{{Game data/saves|Windows|{{p|game}}/scenarios/save games/}}' + - "{{Game data/saves|Windows|{{p|game}}/scenarios/save games/}}" Hearts of Iron III: gog: 1437401338 pageId: 1726 steam: 25890 templates: - - '{{Game data/config|Windows|{{p|game}}\settings.txt}}' - - '{{Game data/saves|Windows|{{p|game}}\save games\}}' + - "{{Game data/config|Windows|{{p|game}}\\settings.txt}}" + - "{{Game data/saves|Windows|{{p|game}}\\save games\\}}" Hearts of Iron IV: pageId: 32746 steam: 394360 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Paradox Interactive\Hearts of Iron IV\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Paradox Interactive/Hearts of Iron IV/}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/Paradox Interactive/Hearts of Iron IV/}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Paradox Interactive\Hearts of Iron IV\save games}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Paradox Interactive/Hearts of Iron IV/save games}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/Paradox Interactive/Hearts of Iron IV/save games}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Paradox Interactive\\Hearts of Iron IV\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Paradox Interactive/Hearts of Iron IV/}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/Paradox Interactive/Hearts of Iron IV/}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Paradox Interactive\\Hearts of Iron IV\\save games}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Paradox Interactive/Hearts of Iron IV/save games}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/Paradox Interactive/Hearts of Iron IV/save games}}" Heat: pageId: 123994 steam: 656240 @@ -75365,17 +73324,17 @@ Heat Signature: pageId: 39737 steam: 268130 templates: - - '{{Game data/config|Windows|{{P|appdata}}\Heat_Signature\Options.txt}}' - - '{{Game data/saves|Windows|{{P|appdata}}\Heat_Signature\Progress.dat|{{P|appdata}}\Heat_Signature\Galaxy *\}}' + - "{{Game data/config|Windows|{{P|appdata}}\\Heat_Signature\\Options.txt}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\Heat_Signature\\Progress.dat|{{P|appdata}}\\Heat_Signature\\Galaxy *\\}}" Heat Wave: pageId: 189790 Heathen - The sons of the law: pageId: 98176 steam: 611230 templates: - - '{{Game data/config|Windows|{{p|Steam}}\steamapps\common\Heathen Game\system.cfg}}' - - '{{Game data/saves|Windows|{{p|Steam}}\steamapps\common\Heathen Game\user\savegames}}' -Heathen Engineering's Terran: + - "{{Game data/config|Windows|{{p|Steam}}\\steamapps\\common\\Heathen Game\\system.cfg}}" + - "{{Game data/saves|Windows|{{p|Steam}}\\steamapps\\common\\Heathen Game\\user\\savegames}}" +"Heathen Engineering's Terran": pageId: 44060 steam: 427970 Heave Ho: @@ -75383,8 +73342,8 @@ Heave Ho: pageId: 139412 steam: 905340 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Le Cartel Studio\HeaveHo\}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Le Cartel Studio\HeaveHo\Save\HeaveHo*.save}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Le Cartel Studio\\HeaveHo\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Le Cartel Studio\\HeaveHo\\Save\\HeaveHo*.save}}" Heaven & Hell: pageId: 123790 steam: 980490 @@ -75398,7 +73357,7 @@ Heaven Burns Red: pageId: 179928 steam: 1973710 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\wfs\HeavenBurnsRed}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\wfs\\HeavenBurnsRed}}" Heaven Dust: pageId: 141647 renamedFrom: @@ -75423,25 +73382,25 @@ Heaven Will Be Mine: pageId: 93098 steam: 836450 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\PillowFightIo\HeavenWillBeMine}}' + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\PillowFightIo\\HeavenWillBeMine}}" Heaven and Hell: pageId: 92471 -Heaven's Dawn: +"Heaven's Dawn": pageId: 155243 -Heaven's Grave: +"Heaven's Grave": pageId: 143949 steam: 1132110 -Heaven's Hope - Special Edition: +"Heaven's Hope - Special Edition": pageId: 44457 steam: 404510 -Heaven's Vault: +"Heaven's Vault": gog: 1117322977 pageId: 81161 steam: 774201 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Inkle Ltd\Heaven''s Vault}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Inkle Ltd\Heaven''s Vault\}}' -Heaven's Voice Feast of Famine: + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Inkle Ltd\\Heaven's Vault}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Inkle Ltd\\Heaven's Vault\\}}" +"Heaven's Voice Feast of Famine": pageId: 136808 steam: 1060510 Heavenly Battle: @@ -75451,7 +73410,7 @@ Heavenly Bodies: pageId: 145578 steam: 1138850 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\2pt Interactive\Heavenly Bodies\savedata\*.dat}}' + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\2pt Interactive\\Heavenly Bodies\\savedata\\*.dat}}" Heavenly Duels: pageId: 100250 steam: 865170 @@ -75482,10 +73441,10 @@ Heavy Bullets: pageId: 16296 steam: 297120 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\TerriVellmann\HEAVY BULLETS}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/TerriVellmann/HEAVY BULLETS}}' - - '{{Game data/saves|Windows|{{p|hkcu}}\Software\TerriVellmann\HEAVY BULLETS}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/TerriVellmann/HEAVY BULLETS}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\TerriVellmann\\HEAVY BULLETS}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/TerriVellmann/HEAVY BULLETS}}" + - "{{Game data/saves|Windows|{{p|hkcu}}\\Software\\TerriVellmann\\HEAVY BULLETS}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/TerriVellmann/HEAVY BULLETS}}" Heavy Burger: pageId: 121045 steam: 922250 @@ -75495,13 +73454,13 @@ Heavy Destinies: Heavy Dreams: pageId: 107624 steam: 917240 -'Heavy Fire: Afghanistan': +"Heavy Fire: Afghanistan": pageId: 49763 steam: 305980 -'Heavy Fire: Red Shadow': +"Heavy Fire: Red Shadow": pageId: 121548 steam: 664840 -'Heavy Fire: Shattered Spear': +"Heavy Fire: Shattered Spear": pageId: 45906 steam: 385600 Heavy Gear: @@ -75524,22 +73483,22 @@ Heavy Metal Machines: pageId: 39667 steam: 331360 templates: - - '{{Game data/config|Windows|{{p|steam}}\steamapps\common\Heavy Metal Machines}}' -'Heavy Metal: F.A.K.K. 2': + - "{{Game data/config|Windows|{{p|steam}}\\steamapps\\common\\Heavy Metal Machines}}" +"Heavy Metal: F.A.K.K. 2": pageId: 14711 templates: - - '{{Game data/config|Windows|{{p|game}}\fakk\}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.loki/fakk2/fakk/}}' - - '{{Game data/saves|Windows|{{p|game}}\fakk\save\}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.loki/fakk2/fakk/save/}}' + - "{{Game data/config|Windows|{{p|game}}\\fakk\\}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.loki/fakk2/fakk/}}" + - "{{Game data/saves|Windows|{{p|game}}\\fakk\\save\\}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.loki/fakk2/fakk/save/}}" Heavy Rain: gog: 2055511884 pageId: 131298 steam: 960910 templates: - - '{{Game data/config|Windows|{{p|game}}\user_setting.ini}}' - - '{{Game data/saves|Epic Games Store|{{p|userprofile}}\Saved Games\HeavyRainNS\}}' - - '{{Game data/saves|Steam|{{p|userprofile}}\Saved Games\HeavyRain\}}' + - "{{Game data/config|Windows|{{p|game}}\\user_setting.ini}}" + - "{{Game data/saves|Epic Games Store|{{p|userprofile}}\\Saved Games\\HeavyRainNS\\}}" + - "{{Game data/saves|Steam|{{p|userprofile}}\\Saved Games\\HeavyRain\\}}" Heavy Recoil: pageId: 123566 steam: 933030 @@ -75547,7 +73506,7 @@ Heavy Weapon: pageId: 12284 steam: 3410 templates: - - '{{Game data/saves|Windows|{{p|game}}\userdata}}' + - "{{Game data/saves|Windows|{{p|game}}\\userdata}}" Heavy load: pageId: 156204 steam: 1184360 @@ -75569,7 +73528,7 @@ Hectic: Hectic Highways: pageId: 127490 steam: 1006430 -'Hector: Badge of Carnage!': +"Hector: Badge of Carnage!": gog: 1441711248 pageId: 4231 steam: 94600 @@ -75577,37 +73536,31 @@ Hectic Highways: - 94610 - 94620 templates: - - >- - {{Game data/config|Windows|{{P|userprofile}}\Documents\Telltale Games\Hector Episode - 1\prefs.prop|{{P|userprofile}}\Documents\Telltale Games\Hector Ep - 2\prefs.prop|{{P|userprofile}}\Documents\Telltale Games\Hector Ep 3\prefs.prop}} - - >- - {{Game data/saves|Windows|{{P|userprofile}}\Documents\Telltale Games\Hector Episode - 1\save{{code|#}}.save|{{P|userprofile}}\Documents\Telltale Games\Hector Ep - 2\save{{code|#}}.save|{{P|userprofile}}\Documents\Telltale Games\Hector Ep 3\save{{code|#}}.save}} + - "{{Game data/config|Windows|{{P|userprofile}}\\Documents\\Telltale Games\\Hector Episode 1\\prefs.prop|{{P|userprofile}}\\Documents\\Telltale Games\\Hector Ep 2\\prefs.prop|{{P|userprofile}}\\Documents\\Telltale Games\\Hector Ep 3\\prefs.prop}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\Documents\\Telltale Games\\Hector Episode 1\\save{{code|#}}.save|{{P|userprofile}}\\Documents\\Telltale Games\\Hector Ep 2\\save{{code|#}}.save|{{P|userprofile}}\\Documents\\Telltale Games\\Hector Ep 3\\save{{code|#}}.save}}" Hedgewars: pageId: 74813 steam: 2223810 templates: - - '{{Game data/config|Linux|{{p|linuxhome}}/.hedgewars}}' + - "{{Game data/config|Linux|{{p|linuxhome}}/.hedgewars}}" Hedon: gog: 2067868578 pageId: 133242 steam: 1072150 templates: - - '{{Game data/config|Windows|{{p|game}}\gzdoom-{{P|uid}}.ini|{{p|game}}\hedon-{{P|uid}}.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\save*.zds}}' -'Heebie Jeebies: The Roller Coaster': + - "{{Game data/config|Windows|{{p|game}}\\gzdoom-{{P|uid}}.ini|{{p|game}}\\hedon-{{P|uid}}.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\save*.zds}}" +"Heebie Jeebies: The Roller Coaster": pageId: 153127 steam: 1190480 Heeey! Park-Boy!: pageId: 185957 steam: 1864750 -'Hegemony Gold: Wars of Ancient Greece': +"Hegemony Gold: Wars of Ancient Greece": gog: 1955494582 pageId: 37421 steam: 202690 -'Hegemony III: Clash of the Ancients': +"Hegemony III: Clash of the Ancients": gog: 1232677182 gogSide: - 1398836298 @@ -75616,12 +73569,12 @@ Heeey! Park-Boy!: steamSide: - 502010 templates: - - '{{Game data/config|Windows|{{P|appdata}}\Longbow Digital Arts\Hegemony III\Settings.xml|{{P|game}}\controls.xml}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\Saved Games\Hegemony III\}}' -'Hegemony Rome: The Rise of Caesar': + - "{{Game data/config|Windows|{{P|appdata}}\\Longbow Digital Arts\\Hegemony III\\Settings.xml|{{P|game}}\\controls.xml}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\Saved Games\\Hegemony III\\}}" +"Hegemony Rome: The Rise of Caesar": pageId: 50280 steam: 227060 -Hegis' Grasp: +"Hegis' Grasp": pageId: 68849 steam: 644380 Hei: @@ -75633,21 +73586,21 @@ Heiankyo Alien: Heidentum: pageId: 132422 steam: 1052010 -'Heileen 2: The Hands of Fate': +"Heileen 2: The Hands of Fate": pageId: 50085 steam: 305480 templates: - - '{{Game data/config|Windows|{{P|game}}\game\saves\persistent|{{P|appdata}}\RenPy\Heileen-2.0\persistent}}' - - '{{Game data/saves|Windows|{{P|game}}\game\saves\*.save|{{P|appdata}}\RenPy\Heileen-2.0\*.save}}' -'Heileen 3: New Horizons': + - "{{Game data/config|Windows|{{P|game}}\\game\\saves\\persistent|{{P|appdata}}\\RenPy\\Heileen-2.0\\persistent}}" + - "{{Game data/saves|Windows|{{P|game}}\\game\\saves\\*.save|{{P|appdata}}\\RenPy\\Heileen-2.0\\*.save}}" +"Heileen 3: New Horizons": pageId: 49893 steam: 305490 -'Heileen: Sail Away': +"Heileen: Sail Away": pageId: 50113 steam: 302950 templates: - - '{{Game data/config|Windows|{{P|game}}\game\saves\persistent|{{P|appdata}}\RenPy\Heileen-1.0\persistent}}' - - '{{Game data/saves|Windows|{{P|game}}\game\saves\*.save|{{P|appdata}}\RenPy\Heileen-1.0\*.save}}' + - "{{Game data/config|Windows|{{P|game}}\\game\\saves\\persistent|{{P|appdata}}\\RenPy\\Heileen-1.0\\persistent}}" + - "{{Game data/saves|Windows|{{P|game}}\\game\\saves\\*.save|{{P|appdata}}\\RenPy\\Heileen-1.0\\*.save}}" Heimdall: pageId: 176645 Heir of Darkness: @@ -75662,7 +73615,7 @@ Hektor: Heldric - The legend of the shoemaker: pageId: 50420 steam: 293420 -Helen's Mysterious Castle: +"Helen's Mysterious Castle": pageId: 37501 steam: 418190 Helena The 3rd: @@ -75675,15 +73628,13 @@ Helheim: pageId: 124400 steam: 924100 templates: - - '{{Game data/saves|Windows|{{p|game}}\SaveData\Save.json}}' + - "{{Game data/saves|Windows|{{p|game}}\\SaveData\\Save.json}}" Helheim Hassle: pageId: 159426 steam: 1095120 templates: - - >- - {{Game data/config|Linux|$USER/.config/unity3d/Perfectly Paranormal/Helheim - Hassle/prefs|$USER/.config/unity3d/Perfectly Paranormal/Helheim Hassle/NUMBER_CODE/gamesettings.hassle}} - - '{{Game data/saves|Linux|$USER/.config/unity3d/Perfectly Paranormal/Helheim Hassle/NUMBER_CODE/Slot_*}}' + - "{{Game data/config|Linux|$USER/.config/unity3d/Perfectly Paranormal/Helheim Hassle/prefs|$USER/.config/unity3d/Perfectly Paranormal/Helheim Hassle/NUMBER_CODE/gamesettings.hassle}}" + - "{{Game data/saves|Linux|$USER/.config/unity3d/Perfectly Paranormal/Helheim Hassle/NUMBER_CODE/Slot_*}}" Heli: pageId: 81502 steam: 743030 @@ -75697,14 +73648,14 @@ Heliborne: pageId: 44617 steam: 433530 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\JetCat Games\Heliborne}}' -'Helicopter 2015: Natural Disasters': + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\JetCat Games\\Heliborne}}" +"Helicopter 2015: Natural Disasters": pageId: 48036 steam: 350540 Helicopter Flight Simulator: pageId: 93047 steam: 850950 -'Helicopter Simulator 2014: Search and Rescue': +"Helicopter Simulator 2014: Search and Rescue": pageId: 50612 steam: 266290 Helidefence: @@ -75724,10 +73675,10 @@ Helium Rain: pageId: 66251 steam: 681330 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\HeliumRain\Saved\Config\WindowsNoEditor}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/Epic/HeliumRain/Saved/Config/LinuxNoEditor}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\HeliumRain\Saved\SaveGames\}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/Epic/HeliumRain/Saved/SaveGames/}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\HeliumRain\\Saved\\Config\\WindowsNoEditor}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/Epic/HeliumRain/Saved/Config/LinuxNoEditor}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\HeliumRain\\Saved\\SaveGames\\}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/Epic/HeliumRain/Saved/SaveGames/}}" Helium Skies: pageId: 71776 steam: 710340 @@ -75745,8 +73696,8 @@ Hell Architect: pageId: 136014 steam: 1063980 templates: - - '{{Game data/config|Windows|{{p|userprofile\appdata\locallow}}\Woodland Games\HellArchitect}}' - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\Woodland Games\HellArchitect}}' + - "{{Game data/config|Windows|{{p|userprofile\\appdata\\locallow}}\\Woodland Games\\HellArchitect}}" + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\Woodland Games\\HellArchitect}}" Hell Dimension VR: pageId: 70080 steam: 648570 @@ -75754,15 +73705,15 @@ Hell Division: gog: 1321737474 pageId: 181396 steam: 2004360 -'Hell Empire: Sinners Flow': +"Hell Empire: Sinners Flow": pageId: 130599 steam: 1037980 Hell Girls: pageId: 56272 steam: 575550 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\DefaultCompany\HGame\Setting}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\DefaultCompany\HGame\Save}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\DefaultCompany\\HGame\\Setting}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\DefaultCompany\\HGame\\Save}}" Hell Hole: pageId: 130074 steam: 1037430 @@ -75776,7 +73727,7 @@ Hell Let Loose: pageId: 124555 steam: 686810 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\HLL\Saved\Config\WindowsNoEditor}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\HLL\\Saved\\Config\\WindowsNoEditor}}" Hell Pie: gog: 1156382433 gogSide: @@ -75784,8 +73735,8 @@ Hell Pie: pageId: 151505 steam: 889910 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\HellPie\Saved\Config}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\HellPie\Saved\SavedGames}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\HellPie\\Saved\\Config}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\HellPie\\Saved\\SavedGames}}" Hell Quest: pageId: 65041 steam: 657770 @@ -75808,8 +73759,8 @@ Hell Yeah! Wrath of the Dead Rabbit: pageId: 16051 steam: 205230 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\SavedGames\HELLYEAH\}}' - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/205230/remote/saves/}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\SavedGames\\HELLYEAH\\}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/205230/remote/saves/}}" Hell in Paradise: pageId: 93204 steam: 852060 @@ -75817,24 +73768,24 @@ Hell is Other Demons: pageId: 130436 steam: 595790 templates: - - '{{Game data/config|Windows|{{P|game}}\Saves\Options|{{P|hkcu}}\SOFTWARE\Cuddle Monster AB\Hell is Other Demons\}}' - - '{{Game data/saves|Windows|{{P|game}}\Saves\Save*}}' - - '{{Game data/saves|OS X|/Users/Shared/Epic Games/HellisOtherDemons/Saves/Save*}}' + - "{{Game data/config|Windows|{{P|game}}\\Saves\\Options|{{P|hkcu}}\\SOFTWARE\\Cuddle Monster AB\\Hell is Other Demons\\}}" + - "{{Game data/saves|Windows|{{P|game}}\\Saves\\Save*}}" + - "{{Game data/saves|OS X|/Users/Shared/Epic Games/HellisOtherDemons/Saves/Save*}}" Hell is Others: pageId: 184667 steam: 964440 -'Hell of Men : Blood Brothers': +"Hell of Men : Blood Brothers": pageId: 144949 steam: 1123500 -Hell's Little Story: +"Hell's Little Story": pageId: 57117 steam: 586530 -Hell's Little Story 2: +"Hell's Little Story 2": pageId: 112316 renamedFrom: - - Hell`s Little Story 2 + - "Hell`s Little Story 2" steam: 928620 -Hell's Pharma: +"Hell's Pharma": pageId: 155294 steam: 1216150 HellAngel: @@ -75852,7 +73803,7 @@ HellGunner: HellMaze: pageId: 98732 steam: 882260 -'HellScape: Two Brothers': +"HellScape: Two Brothers": pageId: 156349 steam: 1218090 HellSign: @@ -75867,42 +73818,38 @@ Hellbanger: Hellbender: pageId: 69544 templates: - - '{{Game data/config|Windows|{{p|game}}\system\HELLBEND.INI}}' - - '{{Game data/saves|Windows|{{p|game}}\data\*.hel}}' -'Hellblade: Senua''s Sacrifice': + - "{{Game data/config|Windows|{{p|game}}\\system\\HELLBEND.INI}}" + - "{{Game data/saves|Windows|{{p|game}}\\data\\*.hel}}" +"Hellblade: Senua's Sacrifice": gog: 1573355755 pageId: 23029 steam: 414340 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\HellbladeGame\Saved\Config\WindowsNoEditor\}}' - - >- - {{Game data/config|Microsoft - Store|{{p|localappdata}}\Packages\NinjaTheoryLtd.HellbladeSenuasSacrifice_nkbnxvch6z38g\LocalState\HellbladeGame\Saved\Config\UWP}} - - '{{Game data/saves|Windows|{{p|localappdata}}\HellbladeGame\Saved\SaveGames\}}' - - >- - {{Game data/saves|Microsoft - Store|{{p|localappdata}}\Packages\NinjaTheoryLtd.HellbladeSenuasSacrifice_nkbnxvch6z38g\SystemAppData\wgs}} -'Hellblade: Senua''s Sacrifice VR Edition': + - "{{Game data/config|Windows|{{p|localappdata}}\\HellbladeGame\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/config|Microsoft Store|{{p|localappdata}}\\Packages\\NinjaTheoryLtd.HellbladeSenuasSacrifice_nkbnxvch6z38g\\LocalState\\HellbladeGame\\Saved\\Config\\UWP}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\HellbladeGame\\Saved\\SaveGames\\}}" + - "{{Game data/saves|Microsoft Store|{{p|localappdata}}\\Packages\\NinjaTheoryLtd.HellbladeSenuasSacrifice_nkbnxvch6z38g\\SystemAppData\\wgs}}" +"Hellblade: Senua's Sacrifice VR Edition": gog: 1923443149 pageId: 102469 steam: 747350 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\HellbladeGame\Saved\Config_VR\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\HellbladeGame\Saved\SaveGames_VR\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\HellbladeGame\\Saved\\Config_VR\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\HellbladeGame\\Saved\\SaveGames_VR\\}}" Hellbound: pageId: 76625 steam: 753590 steamSide: - 1195590 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Hellbound\Saved\Config\WindowsNoEditor}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\Hellbound\Saved\SaveGames}}' -'Hellbound: Survival Mode': + - "{{Game data/config|Windows|{{P|localappdata}}\\Hellbound\\Saved\\Config\\WindowsNoEditor}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Hellbound\\Saved\\SaveGames}}" +"Hellbound: Survival Mode": pageId: 82918 steam: 802200 -'Hellboy: Dogs of the Night': +"Hellboy: Dogs of the Night": pageId: 90889 -'Hellboy: Web of Wyrd': +"Hellboy: Web of Wyrd": pageId: 183622 steam: 2160480 Hellbreaker: @@ -75912,8 +73859,8 @@ Helldivers: pageId: 30063 steam: 394510 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Arrowhead\Helldivers\}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Arrowhead\Helldivers\saves}}' + - "{{Game data/config|Windows|{{p|appdata}}\\Arrowhead\\Helldivers\\}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Arrowhead\\Helldivers\\saves}}" Helldivers 2: pageId: 187411 steam: 553850 @@ -75922,8 +73869,8 @@ Helldorado: pageId: 41298 steam: 18470 templates: - - '{{Game data/config|Windows|{{P|game}}\data\configuration\game\}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\Helldorado\Savegame\}}' + - "{{Game data/config|Windows|{{P|game}}\\data\\configuration\\game\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\Helldorado\\Savegame\\}}" Hellenica: pageId: 54673 steam: 540690 @@ -75939,17 +73886,17 @@ Hellfo: Hellforces: pageId: 65392 templates: - - '{{Game data/config|Windows|{{p|game}}\SAVES\config.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\SAVES\}}' -'Hellfront: Honeymoon': + - "{{Game data/config|Windows|{{p|game}}\\SAVES\\config.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\SAVES\\}}" +"Hellfront: Honeymoon": pageId: 108928 steam: 824460 -'Hellgate: London': +"Hellgate: London": pageId: 3180 steam: 939520 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Hellgate\Settings\}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\My Games\Hellgate\Save\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Hellgate\\Settings\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\My Games\\Hellgate\\Save\\}}" Hellink: pageId: 129697 steam: 1020520 @@ -75957,25 +73904,23 @@ Hellion: pageId: 57691 steam: 588210 templates: - - >- - {{Game - data/config|Windows|{{p|USERPROFILE}}\AppData\LocalLow\ZeroGravity\HELLION\Settings.json|{{p|HKCU}}\Software\ZeroGravity\HELLION}} - - '{{Game data/saves|Windows|{{p|game}}\HELLION_Data\HELLION_SP\}}' + - "{{Game data/config|Windows|{{p|USERPROFILE}}\\AppData\\LocalLow\\ZeroGravity\\HELLION\\Settings.json|{{p|HKCU}}\\Software\\ZeroGravity\\HELLION}}" + - "{{Game data/saves|Windows|{{p|game}}\\HELLION_Data\\HELLION_SP\\}}" Hellish Quart: gog: 1731372333 pageId: 165753 steam: 1000360 -'Hellmut: The Badass from Hell': +"Hellmut: The Badass from Hell": gog: 1991525900 pageId: 72959 steam: 705620 -'Hello Charlotte: Childhood''s End': +"Hello Charlotte: Childhood's End": pageId: 78560 steam: 760890 -'Hello Charlotte: Requiem Aeternam Deo': +"Hello Charlotte: Requiem Aeternam Deo": pageId: 53457 steam: 557630 -'Hello Emoji: Drawing to Solve Puzzles': +"Hello Emoji: Drawing to Solve Puzzles": pageId: 125609 steam: 1009030 Hello Four: @@ -75984,11 +73929,11 @@ Hello From Indiana: pageId: 54725 steam: 568650 templates: - - '{{Game data/saves|Windows|{{p|appdata}}\HellofromIndiana\}}' + - "{{Game data/saves|Windows|{{p|appdata}}\\HellofromIndiana\\}}" Hello Kitty and Sanrio Friends Racing: pageId: 47331 steam: 370600 -'Hello Kitty: Roller Rescue': +"Hello Kitty: Roller Rescue": pageId: 187502 Hello Lady!: pageId: 90392 @@ -76003,19 +73948,15 @@ Hello Neighbor: pageId: 50971 steam: 521890 templates: - - >- - {{Game - data/config|Windows|{{p|game}}\HelloNeighbor\Config\|{{p|localappdata}}\HelloNeighbor\Saved\Config\WindowsNoEditor\}} - - >- - {{Game data/config|Microsoft - Store|{{p|localappdata}}\Packages\tinyBuildGames.770145A14A21_3sz1pp2ynv2xe\LocalState\HelloNeighbor\Saved\Config\UWP}} - - '{{Game data/saves|Windows|{{p|localappdata}}\HelloNeighbor\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{p|game}}\\HelloNeighbor\\Config\\|{{p|localappdata}}\\HelloNeighbor\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/config|Microsoft Store|{{p|localappdata}}\\Packages\\tinyBuildGames.770145A14A21_3sz1pp2ynv2xe\\LocalState\\HelloNeighbor\\Saved\\Config\\UWP}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\HelloNeighbor\\Saved\\SaveGames\\}}" Hello Neighbor 2: pageId: 162221 steam: 1321680 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\HelloNeighbor2\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\HelloNeighbor2\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\HelloNeighbor2\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\HelloNeighbor2\\Saved\\SaveGames\\}}" Hello Neighbor Alpha 1: pageId: 144359 steam: 1092710 @@ -76031,22 +73972,22 @@ Hello Neighbor Alpha 4: Hello Neighbor Pre-Alpha: pageId: 144357 steam: 1092700 -'Hello Neighbor: Hide and Seek': +"Hello Neighbor: Hide and Seek": pageId: 139746 steam: 960420 templates: - - '{{Game data/config|Windows|{{P|localappdata}}/HelloNeighbor/Saved/Config}}' - - '{{Game data/saves|Windows|{{P|localappdata}}/HelloNeighbor/Saved/SaveGames}}' + - "{{Game data/config|Windows|{{P|localappdata}}/HelloNeighbor/Saved/Config}}" + - "{{Game data/saves|Windows|{{P|localappdata}}/HelloNeighbor/Saved/SaveGames}}" Hello Pollution!: pageId: 95190 steam: 846120 Hello inc VR: pageId: 61132 steam: 616050 -'Hello, Goodbye': +"Hello, Goodbye": pageId: 122520 steam: 1009460 -'Hello, World.': +"Hello, World.": pageId: 134841 steam: 1060870 Hellphobia: @@ -76057,10 +73998,10 @@ Hellpoint: pageId: 61697 steam: 628670 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\Cradle Games\Hellpoint\hellpoint.cfg}}' - - '{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/Cradle Games/Hellpoint/hellpoint.cfg}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Cradle Games\Hellpoint\}}' - - '{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/Cradle Games/Hellpoint}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Cradle Games\\Hellpoint\\hellpoint.cfg}}" + - "{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/Cradle Games/Hellpoint/hellpoint.cfg}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Cradle Games\\Hellpoint\\}}" + - "{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/Cradle Games/Hellpoint}}" Hellraid: pageId: 16053 steam: 226920 @@ -76074,15 +74015,15 @@ Hellslave: Hellslinger: pageId: 181646 steam: 2140540 -'Hellsplit: Arena': +"Hellsplit: Arena": pageId: 135757 steam: 1039880 Helltaker: pageId: 160927 steam: 1289310 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\vanripper\Helltaker}}' - - '{{Game data/saves|Windows|{{p|hkcu}}\Software\vanripper\Helltaker}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\vanripper\\Helltaker}}" + - "{{Game data/saves|Windows|{{p|hkcu}}\\Software\\vanripper\\Helltaker}}" Helltower: pageId: 130217 steam: 1046070 @@ -76090,7 +74031,7 @@ Helltown: pageId: 70513 steam: 710070 templates: - - '{{Game data/saves|Windows|{{p|appdata}}\Local\HellTown\Saved\SaveGames\}}' + - "{{Game data/saves|Windows|{{p|appdata}}\\Local\\HellTown\\Saved\\SaveGames\\}}" Hellway: pageId: 124577 steam: 988460 @@ -76111,7 +74052,7 @@ Help - The Game: Help Me Doctor: pageId: 51304 steam: 538560 -Help Me Escape! The Puzzle Maker's Office: +"Help Me Escape! The Puzzle Maker's Office": pageId: 109950 steam: 918720 Help The Minotaur: @@ -76125,11 +74066,9 @@ Help Will Come Tomorrow: pageId: 145353 steam: 1119600 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\appdata\locallow}}\Arclight Creations\Help Will Come - Tomorrow\Data\config.json}} - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\Arclight Creations\Help Will Come Tomorrow\Data\}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Arclight Creations/Help Will Come Tomorrow/Data/}}' + - "{{Game data/config|Windows|{{p|userprofile\\appdata\\locallow}}\\Arclight Creations\\Help Will Come Tomorrow\\Data\\config.json}}" + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\Arclight Creations\\Help Will Come Tomorrow\\Data\\}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Arclight Creations/Help Will Come Tomorrow/Data/}}" Help! I am REALLY horny!: pageId: 151127 steam: 1155940 @@ -76152,8 +74091,8 @@ Henchman Story: pageId: 173371 steam: 1449510 templates: - - '{{Game data/saves|Windows|{{p|game}}\game\saves\*}}' -Henri's Secret: + - "{{Game data/saves|Windows|{{p|game}}\\game\\saves\\*}}" +"Henri's Secret": pageId: 99352 steam: 753270 Henry Mosse and the Wormhole Conspiracy: @@ -76165,7 +74104,7 @@ Henry the Hamster Handler: Henshinko!: pageId: 178900 renamedFrom: - - '"LIFE" not found' + - "\"LIFE\" not found" steam: 1905420 Hentai: pageId: 69707 @@ -76185,7 +74124,7 @@ Hentai 2048: Hentai 3018: pageId: 95301 steam: 860910 -'Hentai : Shoot Them': +"Hentai : Shoot Them": pageId: 152728 steam: 1192890 Hentai Aim Trainer: @@ -76194,14 +74133,14 @@ Hentai Aim Trainer: Hentai And Your Life: pageId: 121755 steam: 973240 -'Hentai Arcade: Lustful Girls': +"Hentai Arcade: Lustful Girls": pageId: 121841 steam: 967470 Hentai Asmodeus: pageId: 144973 steam: 1147510 templates: - - '{{Game data/saves|Windows|Steam\steamapps\common\Hentai Asmodeus\Hentai Asmodeus_Data\[random number]}}' + - "{{Game data/saves|Windows|Steam\\steamapps\\common\\Hentai Asmodeus\\Hentai Asmodeus_Data\\[random number]}}" Hentai Babes - In Public: pageId: 145949 steam: 1024570 @@ -76262,7 +74201,7 @@ Hentai Dojo: Hentai Dreams: pageId: 146076 steam: 974320 -'Hentai Endless: NetWalk': +"Hentai Endless: NetWalk": pageId: 127625 steam: 1002960 Hentai Epic Puzzles: @@ -76289,7 +74228,7 @@ Hentai Girl: pageId: 108528 steam: 878750 templates: - - '{{Game data/saves|Windows|{{p|game}}\HentaiGirl_Data\Save\*}}' + - "{{Game data/saves|Windows|{{p|game}}\\HentaiGirl_Data\\Save\\*}}" Hentai Girl Betty: pageId: 120949 steam: 963690 @@ -76300,17 +74239,17 @@ Hentai Girl Fantasy: pageId: 149973 steam: 1146950 templates: - - '{{Game data/saves|Windows|{{p|game}}\HentaiGirl_Data\Save\*}}' + - "{{Game data/saves|Windows|{{p|game}}\\HentaiGirl_Data\\Save\\*}}" Hentai Girl Karen: pageId: 145931 steam: 1004240 templates: - - '{{Game data/saves|Windows|{{p|game}}\HentaiGirlKaren_Data\Save\*}}' + - "{{Game data/saves|Windows|{{p|game}}\\HentaiGirlKaren_Data\\Save\\*}}" Hentai Girl Linda: pageId: 123387 steam: 927890 templates: - - '{{Game data/saves|Windows|{{p|game}}\HentaiGirlLinda_Data\Save\*}}' + - "{{Game data/saves|Windows|{{p|game}}\\HentaiGirlLinda_Data\\Save\\*}}" Hentai Girl Puzzle SCI-FI: pageId: 150095 steam: 1117680 @@ -76377,7 +74316,7 @@ Hentai Like a Boss 2: Hentai Loli vs Pedobear: pageId: 120927 steam: 967920 -Hentai Lover's Train: +"Hentai Lover's Train": pageId: 150617 steam: 1160910 Hentai Match Fantasy Stories: @@ -76405,7 +74344,7 @@ Hentai Mosaique Fix-IT Shoppe: pageId: 141514 steam: 1109360 templates: - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\LilHentaiGames\Hentai Mosaique Fix IT Shoppe\}}' + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\LilHentaiGames\\Hentai Mosaique Fix IT Shoppe\\}}" Hentai Mosaique Neko Waifus: pageId: 156386 steam: 1192640 @@ -76475,13 +74414,13 @@ Hentai Sexy Girl: Hentai Shiri: pageId: 148575 steam: 1166320 -'Hentai Shooter 2: World Tour': +"Hentai Shooter 2: World Tour": pageId: 130360 steam: 1015660 Hentai Shooter 3D: pageId: 107616 steam: 914690 -'Hentai Shooter 3D: Christmas Party': +"Hentai Shooter 3D: Christmas Party": pageId: 122026 steam: 975240 Hentai Sisters: @@ -76541,7 +74480,7 @@ Hentai Time: Hentai University: pageId: 104471 steam: 909000 -'Hentai University 2: Biology course': +"Hentai University 2: Biology course": pageId: 123511 steam: 981800 Hentai Vs Furries: @@ -76583,7 +74522,7 @@ Hentai balls v3: Hentai beautiful girls: pageId: 125554 steam: 1002030 -'Hentai energy: Halloween': +"Hentai energy: Halloween": pageId: 148687 steam: 1170320 Hentai no Hero: @@ -76592,10 +74531,10 @@ Hentai no Hero: Hentai tentacle bicycle race: pageId: 114984 steam: 952880 -'Hentai: Memory leak': +"Hentai: Memory leak": pageId: 149448 steam: 1158320 -'Hentai: The Shell Game': +"Hentai: The Shell Game": pageId: 112696 steam: 938250 HentaiMineSweeper: @@ -76607,7 +74546,7 @@ HentaiNYA: HentaiTeachers: pageId: 155630 steam: 1197210 -'Hentami: Vendetta': +"Hentami: Vendetta": pageId: 79422 steam: 651310 Hentball: @@ -76616,16 +74555,16 @@ Hentball: Her: pageId: 100022 steam: 889680 -'Her 2: I Want to See You Again': +"Her 2: I Want to See You Again": pageId: 127763 steam: 1003750 Her Lie I Tried to Believe: pageId: 87277 steam: 806510 -Her Majesty's SPIFFING: +"Her Majesty's SPIFFING": pageId: 53477 steam: 488770 -Her Majesty's Ship: +"Her Majesty's Ship": pageId: 88894 steam: 688660 Her Story: @@ -76633,12 +74572,10 @@ Her Story: pageId: 26295 steam: 368370 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\SOFTWARE\Sam Barlow\HerStory\}}' - - >- - {{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/unity.Sam Barlow.HerStory/{{cn|Windows path was - for save only, is this legit OS X versions config path?|date=January 15, 2016}}}} - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Sam Barlow\HerStory\SaveData.cjc}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/unity.Sam Barlow.HerStory/}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\Sam Barlow\\HerStory\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/unity.Sam Barlow.HerStory/{{cn|Windows path was for save only, is this legit OS X versions config path?|date=January 15, 2016}}}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Sam Barlow\\HerStory\\SaveData.cjc}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/unity.Sam Barlow.HerStory/}}" Her War: pageId: 157083 steam: 1222150 @@ -76648,7 +74585,7 @@ Her 她: HerWam: pageId: 96631 steam: 870650 -'Hera: The Sword of Rhin': +"Hera: The Sword of Rhin": pageId: 176757 Herakles and the Princess of Troy: pageId: 139526 @@ -76656,7 +74593,7 @@ Herakles and the Princess of Troy: Herald of the Depths: pageId: 134580 steam: 1059310 -'Herald: An Interactive Period Drama': +"Herald: An Interactive Period Drama": gog: 1271998194 pageId: 52346 steam: 380810 @@ -76685,8 +74622,8 @@ Here Comes Niko!: pageId: 170574 steam: 925950 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\Frog Vibes\Here Comes Niko!\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Frog Vibes\Here Comes Niko!\}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Frog Vibes\\Here Comes Niko!\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Frog Vibes\\Here Comes Niko!\\}}" Here Nya: pageId: 108312 steam: 916150 @@ -76701,22 +74638,22 @@ Heretic: pageId: 14842 steam: 2390 templates: - - '{{Game data/config|Windows|{{p|game}}\base\*.conf|{{p|game}}\base\*.CFG}}' - - '{{Game data/saves|Windows|{{p|game}}\base\*.HSG}}' + - "{{Game data/config|Windows|{{p|game}}\\base\\*.conf|{{p|game}}\\base\\*.CFG}}" + - "{{Game data/saves|Windows|{{p|game}}\\base\\*.HSG}}" Heretic II: pageId: 14843 templates: - - '{{Game data/config|Windows|{{p|game}}\user\}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.loki\heretic2}}' - - '{{Game data/saves|Windows|{{p|game}}\user\save\}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.loki\heretic2\save\}}' -'Heretic Kingdoms: The Inquisition': + - "{{Game data/config|Windows|{{p|game}}\\user\\}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.loki\\heretic2}}" + - "{{Game data/saves|Windows|{{p|game}}\\user\\save\\}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.loki\\heretic2\\save\\}}" +"Heretic Kingdoms: The Inquisition": gog: 1207660283 pageId: 16244 steam: 277650 templates: - - '{{Game data/config|Windows|{{p|game}}\config.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\save\}}' + - "{{Game data/config|Windows|{{p|game}}\\config.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\save\\}}" Heretic Operative: pageId: 126122 steam: 958740 @@ -76726,10 +74663,10 @@ Herman 2: Hermea: pageId: 180333 steam: 2023430 -'Hermes: Rescue Mission': +"Hermes: Rescue Mission": pageId: 153103 steam: 1195340 -'Hermes: War of the Gods': +"Hermes: War of the Gods": pageId: 152689 steam: 1197700 Hermina Lumen is Only Human: @@ -76750,8 +74687,8 @@ Hero Academy: pageId: 3418 steam: 209270 templates: - - '{{Game data/config|Linux|{{P|xdgdatahome}}/RobotEntertainment/HeroAcademy/}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/RobotEntertainment/HeroAcademy/}}' + - "{{Game data/config|Linux|{{P|xdgdatahome}}/RobotEntertainment/HeroAcademy/}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/RobotEntertainment/HeroAcademy/}}" Hero Academy 2: pageId: 91872 steam: 820460 @@ -76767,14 +74704,14 @@ Hero Boy: Hero Core: pageId: 186322 templates: - - '{{Game data/config|Windows|{{p|game}}\herocore.sav}}' - - '{{Game data/saves|Windows|{{p|game}}\herocore.sav}}' + - "{{Game data/config|Windows|{{p|game}}\\herocore.sav}}" + - "{{Game data/saves|Windows|{{p|game}}\\herocore.sav}}" Hero Defense: pageId: 33295 steam: 423620 templates: - - '{{Game data/config|Windows|{{P|userprofile}}\AppData\LocalLow\Happy Tuesday\HauntedIsland}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Happy Tuesday\HauntedIsland}}' + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Happy Tuesday\\HauntedIsland}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Happy Tuesday\\HauntedIsland}}" Hero Dream of School: pageId: 126142 steam: 1003530 @@ -76784,7 +74721,7 @@ Hero Express: Hero Generations: pageId: 48238 steam: 295590 -'Hero Generations: ReGen': +"Hero Generations: ReGen": pageId: 36139 steam: 443260 Hero Go: @@ -76813,19 +74750,19 @@ Hero Of The Forest: Hero Plus: pageId: 78467 steam: 747920 -'Hero Quest: Tower Conflict': +"Hero Quest: Tower Conflict": pageId: 43622 steam: 453820 -'Hero Rush: Mad King': +"Hero Rush: Mad King": pageId: 72706 steam: 702190 Hero Siege: pageId: 22385 steam: 269210 templates: - - '{{Game data/saves|Windows|{{p|localappdata}}\Hero_Siege}}' - - '{{Game data/saves|Linux|{{p|steam}}/userdata/{{p|uid}}/269210/remote/}}' -'Hero Soul: I want to be a Hero!': + - "{{Game data/saves|Windows|{{p|localappdata}}\\Hero_Siege}}" + - "{{Game data/saves|Linux|{{p|steam}}/userdata/{{p|uid}}/269210/remote/}}" +"Hero Soul: I want to be a Hero!": pageId: 154303 steam: 1191570 Hero Staff: @@ -76847,13 +74784,13 @@ Hero by Chance: pageId: 164885 steam: 1433420 templates: - - '{{Game data/saves|Windows|{{P|game}}\HeroByChance_Data\Saves}}' + - "{{Game data/saves|Windows|{{P|game}}\\HeroByChance_Data\\Saves}}" Hero of Many: pageId: 34026 steam: 297370 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\TricksterArts\Hero of Many\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\TricksterArts\Hero of Many\lastCheckpoint.sav}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\TricksterArts\\Hero of Many\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\TricksterArts\\Hero of Many\\lastCheckpoint.sav}}" Hero of the Galactic Core: pageId: 68074 steam: 659790 @@ -76864,7 +74801,7 @@ Hero of the Kingdom: steamSide: - 304600 templates: - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\259550\remote\save_steam.dat}}' + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\259550\\remote\\save_steam.dat}}" Hero of the Kingdom II: gog: 1666688320 pageId: 37455 @@ -76872,11 +74809,11 @@ Hero of the Kingdom II: steamSide: - 353240 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Lonely Troops\Hero of the Kingdom II\}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/Lonely Troops/Hero of the Kingdom II/}}' - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\346560\}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Lonely Troops\Hero of the Kingdom II\Save.dat}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/Lonely Troops/Hero of the Kingdom II/Save.dat}}' + - "{{Game data/config|Windows|{{p|appdata}}\\Lonely Troops\\Hero of the Kingdom II\\}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/Lonely Troops/Hero of the Kingdom II/}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\346560\\}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Lonely Troops\\Hero of the Kingdom II\\Save.dat}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/Lonely Troops/Hero of the Kingdom II/Save.dat}}" Hero of the Kingdom III: gog: 1936751046 pageId: 79442 @@ -76884,66 +74821,66 @@ Hero of the Kingdom III: steamSide: - 772520 templates: - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\772430\}}' + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\772430\\}}" Hero of the Kingdom IV: pageId: 157891 -'Hero of the Kingdom: The Lost Tales 1': +"Hero of the Kingdom: The Lost Tales 1": gog: 1567269698 pageId: 189453 steam: 1249130 steamSide: - 1272910 -'Hero of the Kingdom: The Lost Tales 2': +"Hero of the Kingdom: The Lost Tales 2": gog: 1573967124 pageId: 189455 steam: 1784780 steamSide: - 1784790 -'Hero or Villain: Genesis': +"Hero or Villain: Genesis": pageId: 149656 steam: 1133420 -Hero's Descent: +"Hero's Descent": pageId: 73979 steam: 726450 -Hero's Hour: +"Hero's Hour": gog: 1547269859 pageId: 172441 steam: 1656780 templates: - - '{{Game data/saves|Windows|{{p|localappdata}}\Hero_s_Hour}}' -Hero's Song: + - "{{Game data/saves|Windows|{{p|localappdata}}\\Hero_s_Hour}}" +"Hero's Song": pageId: 51483 steam: 413110 -'Hero''s Story: Prologue': +"Hero's Story: Prologue": pageId: 89700 steam: 649970 -'Hero-U: Rogue to Redemption': +"Hero-U: Rogue to Redemption": gog: 1677919510 pageId: 99606 steam: 375440 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Transolar Games\Hero-U\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Transolar Games\Hero-U}}' - - '{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/unity.Transolar Games.Hero-U}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Transolar Games/Hero-U }}' -'Hero: Flood Rescue': + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Transolar Games\\Hero-U\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Transolar Games\\Hero-U}}" + - "{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/unity.Transolar Games.Hero-U}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Transolar Games/Hero-U }}" +"Hero: Flood Rescue": pageId: 137114 renamedFrom: - - 'HERO: Flood Rescue' + - "HERO: Flood Rescue" steam: 1026720 HeroOfMetal-Episode01: pageId: 138564 steam: 1083270 -Herod's Lost Tomb: +"Herod's Lost Tomb": pageId: 80285 templates: - - '{{Game data/config|Windows|C:\Program Files\City Interactive\National Geographic - Herod''s Lost Tomb\assets\}}' + - "{{Game data/config|Windows|C:\\Program Files\\City Interactive\\National Geographic - Herod's Lost Tomb\\assets\\}}" Heroes & Generals: pageId: 41529 steam: 227940 templates: - - '{{Game data/config|Windows|{{p|userprofile\appdata\locallow}}\Heroes and Generals\}}' -'Heroes & Legends: Conquerors of Kolhar': + - "{{Game data/config|Windows|{{p|userprofile\\appdata\\locallow}}\\Heroes and Generals\\}}" +"Heroes & Legends: Conquerors of Kolhar": pageId: 49737 steam: 306950 Heroes Arena: @@ -76962,8 +74899,8 @@ Heroes Chronicles: - 1207661813 pageId: 4892 templates: - - '{{Game data/config|Windows|{{P|hklm}}\{{P|wow64}}\New World Computing\Heroes Chronicles}}' - - '{{Game data/saves|Windows|{{p|game}}\GAMES}}' + - "{{Game data/config|Windows|{{P|hklm}}\\{{P|wow64}}\\New World Computing\\Heroes Chronicles}}" + - "{{Game data/saves|Windows|{{p|game}}\\GAMES}}" Heroes Evolved: pageId: 54671 steam: 534820 @@ -76978,22 +74915,22 @@ Heroes Must Die: Heroes Never Die: pageId: 63464 steam: 633970 -'Heroes Never Lose: Professor Puzzler''s Perplexing Ploy': +"Heroes Never Lose: Professor Puzzler's Perplexing Ploy": pageId: 38428 steam: 342530 Heroes Of Avranche: pageId: 150800 steam: 1156550 -'Heroes Of Maidan 3: Crimean Battle': +"Heroes Of Maidan 3: Crimean Battle": pageId: 155634 steam: 1179790 -'Heroes Rise: HeroFall': +"Heroes Rise: HeroFall": pageId: 37864 steam: 312300 -'Heroes Rise: The Hero Project': +"Heroes Rise: The Hero Project": pageId: 50041 steam: 304290 -'Heroes Rise: The Prodigy': +"Heroes Rise: The Prodigy": pageId: 38331 steam: 299540 Heroes Swipe Right: @@ -77005,7 +74942,7 @@ Heroes Tactics: Heroes Trials: pageId: 95240 steam: 854670 -'Heroes from the Past: Joan of Arc': +"Heroes from the Past: Joan of Arc": pageId: 42165 steam: 503050 Heroes in Battlefield: @@ -77019,8 +74956,8 @@ Heroes of Annihilated Empires: pageId: 22369 steam: 4800 templates: - - '{{Game data/config|Windows|{{P|game}}\Data\settings.xml}}' - - '{{Game data/saves|Windows|{{P|game}}\Data\Save}}' + - "{{Game data/config|Windows|{{P|game}}\\Data\\settings.xml}}" + - "{{Game data/saves|Windows|{{P|game}}\\Data\\Save}}" Heroes of Arca: pageId: 57809 steam: 588890 @@ -77050,20 +74987,20 @@ Heroes of Hammerwatch: pageId: 75139 steam: 677120 templates: - - '{{Game data/config|Windows|{{P|game}}\HWR.exe.cfg}}' - - '{{Game data/config|Linux|{{P|game}}/HWR.cfg}}' - - '{{Game data/saves|Windows|{{P|game}}\saves\}}' - - '{{Game data/saves|Linux|{{P|game}}/saves/}}' -'Heroes of Havoc: Idle Adventures': + - "{{Game data/config|Windows|{{P|game}}\\HWR.exe.cfg}}" + - "{{Game data/config|Linux|{{P|game}}/HWR.cfg}}" + - "{{Game data/saves|Windows|{{P|game}}\\saves\\}}" + - "{{Game data/saves|Linux|{{P|game}}/saves/}}" +"Heroes of Havoc: Idle Adventures": pageId: 54395 steam: 251450 -'Heroes of Hellas 3: Athens': +"Heroes of Hellas 3: Athens": pageId: 37527 steam: 347590 -'Heroes of Hellas 4: Birth of Legend': +"Heroes of Hellas 4: Birth of Legend": pageId: 82304 steam: 792160 -'Heroes of Hellas Origins: Part One': +"Heroes of Hellas Origins: Part One": pageId: 149041 steam: 1158260 Heroes of Hexaluga: @@ -77082,8 +75019,8 @@ Heroes of Loot 2: pageId: 42645 steam: 439880 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\.prefs\hol2}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\.prefs\hol2svg}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\.prefs\\hol2}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\.prefs\\hol2svg}}" Heroes of Maidan 2: pageId: 125781 steam: 1010070 @@ -77091,30 +75028,26 @@ Heroes of Might and Magic II: gog: 1207658785 pageId: 6518 templates: - - '{{Game data/saves|DOS|{{p|game}}\GAMES}}' - - '{{Game data/saves|Windows|{{p|game}}\GAMES}}' + - "{{Game data/saves|DOS|{{p|game}}\\GAMES}}" + - "{{Game data/saves|Windows|{{p|game}}\\GAMES}}" Heroes of Might and Magic III: gog: 1207658787 pageId: 4634 templates: - - >- - {{Game data/config|Windows|{{P|hklm}}\Software\{{P|wow64}}\New World Computing\Heroes of Might and Magic® - III\1.0}} - - '{{Game data/saves|Windows|{{P|game}}\Games}}' + - "{{Game data/config|Windows|{{P|hklm}}\\Software\\{{P|wow64}}\\New World Computing\\Heroes of Might and Magic® III\\1.0}}" + - "{{Game data/saves|Windows|{{P|game}}\\Games}}" Heroes of Might and Magic III - HD Edition: pageId: 21324 steam: 297000 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\Ubisoft\Heroes of Might & Magic III - HD Edition\}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\Ubisoft\Heroes of Might & Magic III - HD Edition\pref\}}' + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\Ubisoft\\Heroes of Might & Magic III - HD Edition\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\Ubisoft\\Heroes of Might & Magic III - HD Edition\\pref\\}}" Heroes of Might and Magic IV: gog: 1207658915 pageId: 13249 templates: - - >- - {{Game data/config|Windows|{{P|hkcu}}\SOFTWARE\New World Computing\Heroes of Might and Magic - IV
{{P|hklm}}\{{P|wow64}}\New World Computing\Heroes of Might and Magic IV\1.0}} - - '{{Game data/saves|Windows|{{p|game}}\games}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\SOFTWARE\\New World Computing\\Heroes of Might and Magic IV
{{P|hklm}}\\{{P|wow64}}\\New World Computing\\Heroes of Might and Magic IV\\1.0}}" + - "{{Game data/saves|Windows|{{p|game}}\\games}}" Heroes of Might and Magic V: gog: 1207661143 gogSide: @@ -77124,29 +75057,23 @@ Heroes of Might and Magic V: steamSide: - 15380 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Heroes of Might and Magic V\Profiles\{{P|uid}}}}' - - >- - {{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Heroes of Might and Magic - V\Profiles\{{P|uid}}\Saves}} -'Heroes of Might and Magic V: Tribes of the East': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Heroes of Might and Magic V\\Profiles\\{{P|uid}}}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Heroes of Might and Magic V\\Profiles\\{{P|uid}}\\Saves}}" +"Heroes of Might and Magic V: Tribes of the East": gog: 1207661193 pageId: 37687 steam: 15370 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Heroes of Might and Magic V - Tribes of the - East\Profiles\{{P|uid}}}} - - >- - {{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Heroes of Might and Magic V - Tribes of the - East\Profiles\{{P|uid}}\Saves}} -'Heroes of Might and Magic: A Strategic Quest': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Heroes of Might and Magic V - Tribes of the East\\Profiles\\{{P|uid}}}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Heroes of Might and Magic V - Tribes of the East\\Profiles\\{{P|uid}}\\Saves}}" +"Heroes of Might and Magic: A Strategic Quest": gog: 1207658748 pageId: 21457 templates: - - '{{Game data/config|DOS|{{p|game}}\HEROES.CFG}}' - - '{{Game data/config|Windows|{{p|game}}\HEROES.CFG}}' - - '{{Game data/saves|DOS|{{p|game}}\GAMES}}' - - '{{Game data/saves|Windows|{{p|game}}\GAMES}}' + - "{{Game data/config|DOS|{{p|game}}\\HEROES.CFG}}" + - "{{Game data/config|Windows|{{p|game}}\\HEROES.CFG}}" + - "{{Game data/saves|DOS|{{p|game}}\\GAMES}}" + - "{{Game data/saves|Windows|{{p|game}}\\GAMES}}" Heroes of Myth: pageId: 141391 steam: 1110030 @@ -77186,15 +75113,15 @@ Heroes of a Broken Land: pageId: 38410 steam: 314470 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Winged Pixel Inc.\Heroes of a Broken Land}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Heroes of a Broken Land\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Winged Pixel Inc.\\Heroes of a Broken Land}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Heroes of a Broken Land\\}}" Heroes of a Broken Land 2: pageId: 128658 steam: 1006140 Heroes of elements: pageId: 108262 steam: 917120 -'Heroes of the Earth: inVasion': +"Heroes of the Earth: inVasion": pageId: 134582 steam: 1015120 Heroes of the Lance: @@ -77202,17 +75129,15 @@ Heroes of the Lance: pageId: 72446 steam: 2344020 templates: - - '{{Game data/config|DOS|{{p|game}}\INSTALL.CFG}}' - - '{{Game data/saves|DOS|{{p|game}}\SAVEGAME.DAT|{{p|game}}\HISCORES.DAT}}' + - "{{Game data/config|DOS|{{p|game}}\\INSTALL.CFG}}" + - "{{Game data/saves|DOS|{{p|game}}\\SAVEGAME.DAT|{{p|game}}\\HISCORES.DAT}}" Heroes of the Monkey Tavern: gog: 1613491329 pageId: 38971 steam: 492500 templates: - - >- - {{Game data/config|Windows|{{P|userprofile}}\AppData\LocalLow\Monkey Stories\Heroes of the Monkey - Tavern\Settings|{{P|hkcu}}\Software\Monkey Stories\Heroes of the Monkey Tavern\}} - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Monkey Stories\Heroes of the Monkey Tavern\Save*}}' + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Monkey Stories\\Heroes of the Monkey Tavern\\Settings|{{P|hkcu}}\\Software\\Monkey Stories\\Heroes of the Monkey Tavern\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Monkey Stories\\Heroes of the Monkey Tavern\\Save*}}" Heroes of the Multiverse: pageId: 135957 steam: 1061670 @@ -77225,12 +75150,12 @@ Heroes of the Seven Seas: Heroes of the Storm: pageId: 24358 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\Heroes of the Storm\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Blizzard/Heroes of the Storm/}}' + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\Heroes of the Storm\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Blizzard/Heroes of the Storm/}}" Heroes of the Three Kingdoms 8: pageId: 164244 steam: 875210 -'Herogrinder: Tactical Combat Arenas': +"Herogrinder: Tactical Combat Arenas": pageId: 151631 steam: 1123590 Heroic Dungeon: @@ -77243,8 +75168,8 @@ Heroine Anthem Zero: pageId: 53305 steam: 537990 templates: - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\Winking}}' -'Heroine Anthem Zero 2: Scalescars Oath': + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\Winking}}" +"Heroine Anthem Zero 2: Scalescars Oath": pageId: 155276 renamedFrom: - Heroine Anthem Zero 2 -Scars of Memories- @@ -77252,15 +75177,15 @@ Heroine Anthem Zero: Heroine of the Sniper: pageId: 136793 steam: 851950 -'Heroine''s Quest: The Herald of Ragnarok': +"Heroine's Quest: The Herald of Ragnarok": gog: 1237516203 pageId: 19008 steam: 283880 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\Saved Games\Heroine''s Quest 1.2\acsetup.cfg}}' - - '{{Game data/config|Linux|{{P|game}}/game/data/acsetup.cfg}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\Saved Games\Heroine''s Quest 1.2\}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/ags/Heroine''s Quest 1.2/}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\Saved Games\\Heroine's Quest 1.2\\acsetup.cfg}}" + - "{{Game data/config|Linux|{{P|game}}/game/data/acsetup.cfg}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Saved Games\\Heroine's Quest 1.2\\}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/ags/Heroine's Quest 1.2/}}" Heroish: pageId: 179846 steam: 1876350 @@ -77269,18 +75194,16 @@ Heroland: pageId: 152598 steam: 1066030 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\XSEED\Heroland\}}' - - >- - {{Game - data/config|GOG.com|{{P|localappdata}}\GOG.com\Galaxy\Applications\52498012610291613\Storage\Shared\Files\}} - - '{{Game data/saves|GOG.com|{{P|localappdata}}\GOG.com\Galaxy\Applications\52498012610291613\Storage\Shared\Files\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\XSEED\\Heroland\\}}" + - "{{Game data/config|GOG.com|{{P|localappdata}}\\GOG.com\\Galaxy\\Applications\\52498012610291613\\Storage\\Shared\\Files\\}}" + - "{{Game data/saves|GOG.com|{{P|localappdata}}\\GOG.com\\Galaxy\\Applications\\52498012610291613\\Storage\\Shared\\Files\\}}" Herolike: pageId: 44523 steam: 409040 Hex: pageId: 73931 steam: 727070 -'Hex Commander: Fantasy Heroes': +"Hex Commander: Fantasy Heroes": pageId: 75636 steam: 741590 Hex Defense - VR: @@ -77309,7 +75232,7 @@ Hex! Run: Hex-Up: pageId: 78497 steam: 765610 -'Hex: Origins': +"Hex: Origins": pageId: 70499 steam: 695420 HexLab: @@ -77361,13 +75284,13 @@ Hexagun: Hexahedral Pathfinder: pageId: 109782 steam: 915360 -'Hexaluga: Dungeons and Hunting': +"Hexaluga: Dungeons and Hunting": pageId: 94693 steam: 860670 -'Hexaluga: Weapon and Shield': +"Hexaluga: Weapon and Shield": pageId: 92085 steam: 845200 -'Hexaluga: Witch Hunter''s Travelling Castle': +"Hexaluga: Witch Hunter's Travelling Castle": pageId: 87441 steam: 809450 Hexanome: @@ -77380,38 +75303,32 @@ Hexceed: pageId: 166193 steam: 1463920 templates: - - >- - {{Game - data/config|Windows|{{P|userprofile\appdata\locallow}}\ToastieLabs\hexceed\main.save|{{P|hkcu}}\SOFTWARE\ToastieLabs\hexceed\}} - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\ToastieLabs\hexceed\*.save}}' + - "{{Game data/config|Windows|{{P|userprofile\\appdata\\locallow}}\\ToastieLabs\\hexceed\\main.save|{{P|hkcu}}\\SOFTWARE\\ToastieLabs\\hexceed\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\ToastieLabs\\hexceed\\*.save}}" Hexcells: pageId: 34803 steam: 265890 templates: - - '{{Game data/config|Windows|{{p|game}}\saves\options.txt|{{P|hkcu}}\SOFTWARE\Matthew Brown\Hexcells}}' - - '{{Game data/config|Linux|{{P|game}}/saves/options.txt|{{P|xdgconfighome}}/unity3d/Matthew Brown/Hexcells/prefs}}' - - '{{Game data/saves|Windows|{{p|game}}\saves\slot*.save}}' - - '{{Game data/saves|Linux|{{P|game}}/saves/slot*.save}}' + - "{{Game data/config|Windows|{{p|game}}\\saves\\options.txt|{{P|hkcu}}\\SOFTWARE\\Matthew Brown\\Hexcells}}" + - "{{Game data/config|Linux|{{P|game}}/saves/options.txt|{{P|xdgconfighome}}/unity3d/Matthew Brown/Hexcells/prefs}}" + - "{{Game data/saves|Windows|{{p|game}}\\saves\\slot*.save}}" + - "{{Game data/saves|Linux|{{P|game}}/saves/slot*.save}}" Hexcells Infinite: pageId: 36519 steam: 304410 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\SOFTWARE\Matthew Brown\Hexcells Infinite\|{{P|game}}\saves\options.txt}}' - - >- - {{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/Matthew Brown/Hexcells - Infinite/prefs|{{P|game}}/saves/options.txt}} - - '{{Game data/saves|Windows|{{p|game}}\saves\*.save}}' - - '{{Game data/saves|Linux|{{p|game}}/saves/*.save}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\Matthew Brown\\Hexcells Infinite\\|{{P|game}}\\saves\\options.txt}}" + - "{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/Matthew Brown/Hexcells Infinite/prefs|{{P|game}}/saves/options.txt}}" + - "{{Game data/saves|Windows|{{p|game}}\\saves\\*.save}}" + - "{{Game data/saves|Linux|{{p|game}}/saves/*.save}}" Hexcells Plus: pageId: 36420 steam: 271900 templates: - - '{{Game data/config|Windows|{{p|game}}\saves\options.txt|{{P|hkcu}}\SOFTWARE\Matthew Brown\Hexcells Plus}}' - - >- - {{Game data/config|Linux|{{p|game}}/saves/options.txt|{{P|xdgconfighome}}/unity3d/Matthew Brown/Hexcells - Plus/prefs}} - - '{{Game data/saves|Windows|{{p|game}}\saves\*.save}}' - - '{{Game data/saves|Linux|{{p|game}}/saves/*.save}}' + - "{{Game data/config|Windows|{{p|game}}\\saves\\options.txt|{{P|hkcu}}\\SOFTWARE\\Matthew Brown\\Hexcells Plus}}" + - "{{Game data/config|Linux|{{p|game}}/saves/options.txt|{{P|xdgconfighome}}/unity3d/Matthew Brown/Hexcells Plus/prefs}}" + - "{{Game data/saves|Windows|{{p|game}}\\saves\\*.save}}" + - "{{Game data/saves|Linux|{{p|game}}/saves/*.save}}" Hexcross: pageId: 151117 steam: 1148230 @@ -77429,9 +75346,9 @@ Hexen II: pageId: 5996 steam: 9060 templates: - - '{{Game data/config|Windows|{{p|game}}\data1\*.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\data1\s*\*.*}}' -'Hexen: Beyond Heretic': + - "{{Game data/config|Windows|{{p|game}}\\data1\\*.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\data1\\s*\\*.*}}" +"Hexen: Beyond Heretic": gog: 1247951670 gogSide: - 1983497091 @@ -77440,8 +75357,8 @@ Hexen II: steamSide: - 2370 templates: - - '{{Game data/config|Windows|{{p|game}}\base\*.conf|{{p|game}}\base\*.CFG}}' - - '{{Game data/saves|Windows|{{p|game}}\base\HEXNDATA\}}' + - "{{Game data/config|Windows|{{p|game}}\\base\\*.conf|{{p|game}}\\base\\*.CFG}}" + - "{{Game data/saves|Windows|{{p|game}}\\base\\HEXNDATA\\}}" Hexic: pageId: 178677 Hexic Deluxe: @@ -77465,9 +75382,9 @@ Hexologic: pageId: 82223 steam: 785890 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\MythicOwl\Hexologic\}}' - - '{{Game data/config|Linux|~/.config/unity3d/MythicOwl/Hexologic/}}' - - '{{Game data/saves|Steam|{{P|steam}}\userdata\{{P|uid}}\785890\remote\game.sav}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\MythicOwl\\Hexologic\\}}" + - "{{Game data/config|Linux|~/.config/unity3d/MythicOwl/Hexologic/}}" + - "{{Game data/saves|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\785890\\remote\\game.sav}}" Hexon: pageId: 156141 steam: 1205800 @@ -77482,13 +75399,13 @@ Hexplore: pageId: 154779 steam: 1257900 templates: - - '{{Game data/saves|Windows|{{P|game}}\SAVE}}' -'Hextech Mayhem: A League of Legends Story': + - "{{Game data/saves|Windows|{{P|game}}\\SAVE}}" +"Hextech Mayhem: A League of Legends Story": gog: 1227938654 pageId: 172872 steam: 1651960 templates: - - '{{Game data/saves|Windows|{{p|game}}\Hextech Mayhem\HextechMayhem_Data\profile.jfg}}' + - "{{Game data/saves|Windows|{{p|game}}\\Hextech Mayhem\\HextechMayhem_Data\\profile.jfg}}" Hexteria: pageId: 186297 steam: 1474550 @@ -77504,18 +75421,18 @@ Hexus: Hexvade: pageId: 76618 steam: 754270 -'Hexx: Heresy of the Wizard': +"Hexx: Heresy of the Wizard": pageId: 22464 templates: - - '{{Game data/config|DOS|{{p|game}}\HEXX.CFG}}' - - '{{Game data/saves|DOS|{{p|game}}\HEXX*.SAV}}' + - "{{Game data/config|DOS|{{p|game}}\\HEXX.CFG}}" + - "{{Game data/saves|DOS|{{p|game}}\\HEXX*.SAV}}" Hexxon: pageId: 149201 steam: 779920 -'Hi-5: Create, Paint and Play': +"Hi-5: Create, Paint and Play": pageId: 147116 templates: - - '{{Game data/config|Windows|{{P|game}}\Hi5.ini}}' + - "{{Game data/config|Windows|{{P|game}}\\Hi5.ini}}" Hi-Fi Rush: pageId: 184625 renamedFrom: @@ -77527,20 +75444,12 @@ Hi-Fi Rush: - 2314700 - 2365950 templates: - - >- - {{Game data/config|Epic Games Store|{{p|userprofile}}\Saved Games\TangoGameworks\Hi-Fi RUSH - (EGS)\Saved\Condig\WindowsNoEditor}} - - >- - {{Game data/config|Microsoft Store|{{p|userprofile}}\Saved Games\TangoGameworks\Hi-Fi RUSH - (Xbox)\Saved\Config\WinGDK}} - - >- - {{Game data/config|Steam|{{p|userprofile}}\Saved Games\TangoGameworks\Hi-Fi RUSH - (STEAM)\Saved\Config\WindowsNoEditor}} - - '{{Game data/saves|Epic Games Store|{{p|userprofile}}\Saved Games\TangoGameworks\Hi-Fi RUSH (EGS)\Saved\SaveGames}}' - - >- - {{Game data/saves|Microsoft - Store|{{p|localappdata}}\Packages\BethesdaSoftworks.Hibiki_3275kfvn8vcwc\SystemAppData\wgs}} - - '{{Game data/saves|Steam|{{p|userprofile}}\Saved Games\TangoGameworks\Hi-Fi RUSH (STEAM)\Saved\SaveGames}}' + - "{{Game data/config|Epic Games Store|{{p|userprofile}}\\Saved Games\\TangoGameworks\\Hi-Fi RUSH (EGS)\\Saved\\Condig\\WindowsNoEditor}}" + - "{{Game data/config|Microsoft Store|{{p|userprofile}}\\Saved Games\\TangoGameworks\\Hi-Fi RUSH (Xbox)\\Saved\\Config\\WinGDK}}" + - "{{Game data/config|Steam|{{p|userprofile}}\\Saved Games\\TangoGameworks\\Hi-Fi RUSH (STEAM)\\Saved\\Config\\WindowsNoEditor}}" + - "{{Game data/saves|Epic Games Store|{{p|userprofile}}\\Saved Games\\TangoGameworks\\Hi-Fi RUSH (EGS)\\Saved\\SaveGames}}" + - "{{Game data/saves|Microsoft Store|{{p|localappdata}}\\Packages\\BethesdaSoftworks.Hibiki_3275kfvn8vcwc\\SystemAppData\\wgs}}" + - "{{Game data/saves|Steam|{{p|userprofile}}\\Saved Games\\TangoGameworks\\Hi-Fi RUSH (STEAM)\\Saved\\SaveGames}}" Hi-Octane: pageId: 173906 HiPanda: @@ -77561,21 +75470,19 @@ Hidden & Dangerous 2: pageId: 33082 steam: 703320 templates: - - >- - {{Game data/config|Windows|{{p|hklm}}\Software\{{P|wow64}}\Illusion Softworks\Hidden & Dangerous - 2\|{{P|game}}\PlayersProfiles\{{P|uid}}\Options.bin}} - - '{{Game data/saves|Windows|{{P|game}}\PlayersProfiles\{{P|uid}}\*.sav}}' + - "{{Game data/config|Windows|{{p|hklm}}\\Software\\{{P|wow64}}\\Illusion Softworks\\Hidden & Dangerous 2\\|{{P|game}}\\PlayersProfiles\\{{P|uid}}\\Options.bin}}" + - "{{Game data/saves|Windows|{{P|game}}\\PlayersProfiles\\{{P|uid}}\\*.sav}}" Hidden & Dangerous Deluxe: gog: 1251397362 pageId: 5943 steam: 703310 templates: - - '{{Game data/config|Windows|{{p|hklm}}\SOFTWARE\{{p|wow64}}\Lonely Cat Games\Hidden and Dangerous Deluxe\Config\}}' - - '{{Game data/saves|Windows|{{p|game}}\Savegame\}}' -'Hidden Animals : Photo Hunt. Seek and Find Game': + - "{{Game data/config|Windows|{{p|hklm}}\\SOFTWARE\\{{p|wow64}}\\Lonely Cat Games\\Hidden and Dangerous Deluxe\\Config\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\Savegame\\}}" +"Hidden Animals : Photo Hunt. Seek and Find Game": pageId: 110150 steam: 922700 -'Hidden Animals: English - Spanish': +"Hidden Animals: English - Spanish": pageId: 63706 steam: 656480 Hidden Cubes: @@ -77590,35 +75497,35 @@ Hidden Deep: Hidden Dimensions 3: pageId: 51402 steam: 531540 -'Hidden Dragon Legend: Shadow Trace': +"Hidden Dragon Legend: Shadow Trace": pageId: 73655 steam: 710130 -'Hidden Dragon: Legend': +"Hidden Dragon: Legend": pageId: 78685 steam: 680390 -'Hidden Expedition: Amazon': +"Hidden Expedition: Amazon": pageId: 41155 steam: 50920 -'Hidden Expedition: Dawn of Prosperity': +"Hidden Expedition: Dawn of Prosperity": pageId: 36782 renamedFrom: - - 'Hidden Expedition: Dawn of Prosperity Collector''s Edition' + - "Hidden Expedition: Dawn of Prosperity Collector's Edition" steam: 514730 -'Hidden Expedition: Everest': +"Hidden Expedition: Everest": pageId: 41154 steam: 50930 -'Hidden Expedition: The Crown of Solomon': +"Hidden Expedition: The Crown of Solomon": pageId: 42962 renamedFrom: - - 'Hidden Expedition: The Crown of Solomon Collector''s Edition' + - "Hidden Expedition: The Crown of Solomon Collector's Edition" steam: 465990 -'Hidden Expedition: The Fountain of Youth': +"Hidden Expedition: The Fountain of Youth": pageId: 73195 steam: 723940 -'Hidden Expedition: The Pearl of Discord': +"Hidden Expedition: The Pearl of Discord": pageId: 60870 steam: 610550 -'Hidden Expedition: Titanic': +"Hidden Expedition: Titanic": pageId: 41156 steam: 50940 Hidden Fears (Moonlight Edition): @@ -77628,22 +75535,22 @@ Hidden Folks: pageId: 39622 steam: 435400 templates: - - '{{Game data/config|Linux|{{P|linuxhome}}/.config/unity3d/Adriaan de Jongh/Hidden Folks}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Adriaan de Jongh\Hidden Folks\}}' - - '{{Game data/saves|Linux|{{P|linuxhome}}/.config/unity3d/Adriaan de Jongh/Hidden Folks}}' + - "{{Game data/config|Linux|{{P|linuxhome}}/.config/unity3d/Adriaan de Jongh/Hidden Folks}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Adriaan de Jongh\\Hidden Folks\\}}" + - "{{Game data/saves|Linux|{{P|linuxhome}}/.config/unity3d/Adriaan de Jongh/Hidden Folks}}" Hidden Life: pageId: 88681 steam: 801410 Hidden Magic: pageId: 127512 steam: 1013520 -'Hidden Mysteries: Civil War': +"Hidden Mysteries: Civil War": pageId: 46919 steam: 385390 -'Hidden Mysteries: Royal Family Secrets': +"Hidden Mysteries: Royal Family Secrets": pageId: 144149 steam: 1023720 -'Hidden Mysteries: Titanic': +"Hidden Mysteries: Titanic": gog: 2042791644 pageId: 44056 steam: 369280 @@ -77662,7 +75569,7 @@ Hidden Object - Tools: Hidden Object 6-in-1 bundle: pageId: 44120 steam: 448400 -'Hidden Object Adventure: Captain Nemo': +"Hidden Object Adventure: Captain Nemo": pageId: 81071 steam: 788970 Hidden Object Bundle 4 in 1: @@ -77671,10 +75578,10 @@ Hidden Object Bundle 4 in 1: Hidden Object Bundle 5 in 1: pageId: 48583 steam: 346140 -'Hidden Object: Around the World in 80 Days': +"Hidden Object: Around the World in 80 Days": pageId: 74692 steam: 736860 -'Hidden Object: Home Makeover': +"Hidden Object: Home Makeover": pageId: 123611 steam: 971090 Hidden Objects - The Mystery House: @@ -77691,7 +75598,7 @@ Hidden Protector: steam: 838190 Hidden Runaway: pageId: 79539 -'Hidden Saga: Xamadeon Stone': +"Hidden Saga: Xamadeon Stone": pageId: 127940 steam: 972760 Hidden Star in Four Seasons: @@ -77700,8 +75607,8 @@ Hidden Star in Four Seasons: Hidden Target: pageId: 78894 templates: - - '{{Game data/config|Windows|{{p|game}}\ar.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\save\}}' + - "{{Game data/config|Windows|{{p|game}}\\ar.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\save\\}}" Hidden World of Art 2: pageId: 152845 steam: 1182200 @@ -77709,9 +75616,9 @@ Hidden in Plain Sight: pageId: 34545 steam: 303590 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Saved Games\HiddenInPlainSight\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/HiddenInPlainSight/}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/HiddenInPlainSight/}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Saved Games\\HiddenInPlainSight\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/HiddenInPlainSight/}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/HiddenInPlainSight/}}" Hidden through Time: gog: 2139401243 gogSide: @@ -77727,17 +75634,17 @@ Hidden through Time: - 1395100 - 1536700 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Crazy Monkey Studios\Hidden Through Time\}}' -'Hidden: On the Trail of the Ancients': + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Crazy Monkey Studios\\Hidden Through Time\\}}" +"Hidden: On the Trail of the Ancients": pageId: 46967 steam: 352580 templates: - - '{{Game data/config|Windows|{{p|steam}}\steamapps\common\Hidden on the Trail of the Ancients\config.cfg}}' - - '{{Game data/saves|Windows|{{p|steam}}\steamapps\common\Hidden on the Trail of the Ancients\savegames}}' + - "{{Game data/config|Windows|{{p|steam}}\\steamapps\\common\\Hidden on the Trail of the Ancients\\config.cfg}}" + - "{{Game data/saves|Windows|{{p|steam}}\\steamapps\\common\\Hidden on the Trail of the Ancients\\savegames}}" Hide & Hold Out - H2o: pageId: 43662 steam: 377140 -'Hide & Spook: The Haunted Alchemist': +"Hide & Spook: The Haunted Alchemist": pageId: 52101 steam: 466900 Hide N Seek VR: @@ -77749,10 +75656,10 @@ Hide Your Butts: Hide and Go Boom: pageId: 82350 steam: 716040 -'Hide and Secret: The Lost World': +"Hide and Secret: The Lost World": pageId: 153068 steam: 1184640 -'Hide and Secret: Treasure of the Ages': +"Hide and Secret: Treasure of the Ages": pageId: 35256 renamedFrom: - Hide and Secret Treasure of the Ages @@ -77772,8 +75679,8 @@ Hide and Shriek: pageId: 51975 steam: 480430 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\HideandShriek\Saved\Config\WindowsNoEditor}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\HideandShriek\Saved\SaveGames}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\HideandShriek\\Saved\\Config\\WindowsNoEditor}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\HideandShriek\\Saved\\SaveGames}}" Hide or Die: pageId: 74467 steam: 731620 @@ -77802,8 +75709,8 @@ High Hell: pageId: 72963 steam: 673000 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\TerriVellmann\HIGH HELL\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\TerriVellmann\HIGH HELL\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\TerriVellmann\\HIGH HELL\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\TerriVellmann\\HIGH HELL\\}}" High Impact Paintball: pageId: 89840 High Noom VR: @@ -77816,7 +75723,7 @@ High Noon Revolver: pageId: 56778 steam: 560510 templates: - - '{{Game data/saves|Windows|{{p|localappdata}}\Highnoon_Revolver\}}' + - "{{Game data/saves|Windows|{{p|localappdata}}\\Highnoon_Revolver\\}}" High Noon VR: pageId: 75514 steam: 710760 @@ -77829,25 +75736,25 @@ High On Racing: High Profits: pageId: 56276 steam: 545650 -'High School Musical 3: Senior Year Dance': +"High School Musical 3: Senior Year Dance": pageId: 48623 steam: 346060 templates: - - '{{Game data/saves|Windows|{{p|game}}\SaveGames\}}' + - "{{Game data/saves|Windows|{{p|game}}\\SaveGames\\}}" High School Otome: pageId: 150077 steam: 1168000 High School Simulator: pageId: 79161 steam: 754620 -'High School: bisexual experience': +"High School: bisexual experience": pageId: 104263 steam: 909860 High Seas Trader: pageId: 71994 templates: - - '{{Game data/config|DOS|{{p|game}}\}}' - - '{{Game data/saves|DOS|{{p|game}}\}}' + - "{{Game data/config|DOS|{{p|game}}\\}}" + - "{{Game data/saves|DOS|{{p|game}}\\}}" High Speed Trains: pageId: 89363 steam: 816660 @@ -77855,8 +75762,8 @@ High Strangeness: pageId: 47990 steam: 268340 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Barnyard Intelligence Games\High Strangeness\}}' - - '{{Game data/saves|Windows|{{p|game}}\save\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Barnyard Intelligence Games\\High Strangeness\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\save\\}}" High Templar VR: pageId: 62649 steam: 588550 @@ -77868,23 +75775,19 @@ High on Life: - High On Life steam: 1583230 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Oregon\Saved\Config\WinGDK\}}' - - '{{Game data/config|Steam|{{P|localappdata}}\Oregon\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\Oregon\Saved\SaveGames\}}' - - >- - {{Game data/saves|Microsoft - Store|{{P|localappdata}}\Packages\2637SquanchGamesInc.HighonLife_mh7dg3tfmz2cj\SystemAppData\wgs\{{P|uid}}\}} + - "{{Game data/config|Windows|{{P|localappdata}}\\Oregon\\Saved\\Config\\WinGDK\\}}" + - "{{Game data/config|Steam|{{P|localappdata}}\\Oregon\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Oregon\\Saved\\SaveGames\\}}" + - "{{Game data/saves|Microsoft Store|{{P|localappdata}}\\Packages\\2637SquanchGamesInc.HighonLife_mh7dg3tfmz2cj\\SystemAppData\\wgs\\{{P|uid}}\\}}" HighFleet: gog: 1589167087 pageId: 173419 steam: 1434950 templates: - - '{{Game data/config|Windows|{{p|game}}\Config.ini}}' - - '{{Game data/config|Steam|{{p|Steam}}\steamapps\common\HighFleet\Config.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\Saves|{{p|game}}\SavesSkirmish|{{p|game}}\Ships}}' - - >- - {{Game - data/saves|Steam|{{p|Steam}}\steamapps\common\HighFleet\Saves|{{p|Steam}}\steamapps\common\HighFleet\Ships|{{p|Steam}}\steamapps\common\HighFleet\SavesSkirmish}} + - "{{Game data/config|Windows|{{p|game}}\\Config.ini}}" + - "{{Game data/config|Steam|{{p|Steam}}\\steamapps\\common\\HighFleet\\Config.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\Saves|{{p|game}}\\SavesSkirmish|{{p|game}}\\Ships}}" + - "{{Game data/saves|Steam|{{p|Steam}}\\steamapps\\common\\HighFleet\\Saves|{{p|Steam}}\\steamapps\\common\\HighFleet\\Ships|{{p|Steam}}\\steamapps\\common\\HighFleet\\SavesSkirmish}}" Highball: pageId: 138991 steam: 1094440 @@ -77900,7 +75803,7 @@ Highland Warriors: Highlands: pageId: 48158 steam: 359920 -'Highlands, Deep Waters': +"Highlands, Deep Waters": pageId: 72680 steam: 721760 Highlight: @@ -77918,9 +75821,9 @@ Highrise City: steamSide: - 1664640 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\CityNext\Saved\Config\WindowsNoEditor}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\CityNext\Saved\SaveGames}}' -'Highrise Heroes: Word Challenge': + - "{{Game data/config|Windows|{{p|localappdata}}\\CityNext\\Saved\\Config\\WindowsNoEditor}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\CityNext\\Saved\\SaveGames}}" +"Highrise Heroes: Word Challenge": pageId: 34435 steam: 415670 Highrisers: @@ -77934,12 +75837,12 @@ Highschool Possession: pageId: 45357 steam: 408770 templates: - - '{{Game data/config|Windows|{{p|game}}\renpy\config.py}}' - - '{{Game data/saves|Windows|{{p|game}}\game\saves|{{p|appdata}}\renpy\hspossess}}' + - "{{Game data/config|Windows|{{p|game}}\\renpy\\config.py}}" + - "{{Game data/saves|Windows|{{p|game}}\\game\\saves|{{p|appdata}}\\renpy\\hspossess}}" Highschool Romance: pageId: 45593 steam: 398100 -'Highschool Romance: Magi Trials': +"Highschool Romance: Magi Trials": pageId: 50931 steam: 446600 Highscore Hunter Hodgepodge: @@ -77953,10 +75856,10 @@ Highway Blossoms: pageId: 33545 steam: 451760 templates: - - '{{Game data/config|Windows|{{p|game}}\renpy\config.py}}' - - '{{Game data/saves|Windows|{{p|appdata}}\RenPy\Highway Blossoms-1445311445\|{{p|game}}\game\saves\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/RenPy/Highway Blossoms Remastered-15500000}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.renpy/Highway Blossoms Remastered-15500000/|{{p|game}}/game/saves/}}' + - "{{Game data/config|Windows|{{p|game}}\\renpy\\config.py}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\RenPy\\Highway Blossoms-1445311445\\|{{p|game}}\\game\\saves\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/RenPy/Highway Blossoms Remastered-15500000}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.renpy/Highway Blossoms Remastered-15500000/|{{p|game}}/game/saves/}}" Highway Game: pageId: 149969 steam: 1177070 @@ -77982,91 +75885,75 @@ Higurashi When They Cry Hou - Ch.1 Onikakushi: pageId: 26008 steam: 310360 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Mangagamer\Higurashi When They Cry - Ch.1 Onikakushi}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/MangaGamer/Higurashi When They Cry _ Ch_1 Onikakushi/}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Mangagamer\higurashi01}}' - - >- - {{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/unity.MangaGamer.Higurashi When They Cry - Ch.1 - Onikakushi}} - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/MangaGamer/Higurashi When They Cry _ Ch_1 Onikakushi/}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Mangagamer\\Higurashi When They Cry - Ch.1 Onikakushi}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/MangaGamer/Higurashi When They Cry _ Ch_1 Onikakushi/}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Mangagamer\\higurashi01}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/unity.MangaGamer.Higurashi When They Cry - Ch.1 Onikakushi}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/MangaGamer/Higurashi When They Cry _ Ch_1 Onikakushi/}}" Higurashi When They Cry Hou - Ch.2 Watanagashi: gog: 1387720706 pageId: 37183 steam: 410890 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Mangagamer\higurashi02}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/MangaGamer/Higurashi When They Cry _ Ch_2 Watanagashi/}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Mangagamer\higurashi02}}' - - >- - {{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/unity.MangaGamer.Higurashi When They Cry - Ch.2 - Watanagashi}} - - >- - {{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/MangaGamer/Higurashi When They Cry - Ch.2 - Watanagashi/|{{p|linuxhome}}/.config/unity3d/MangaGamer/Higurashi When They Cry _ Ch.2 Watanagashi/}} + - "{{Game data/config|Windows|{{p|appdata}}\\Mangagamer\\higurashi02}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/MangaGamer/Higurashi When They Cry _ Ch_2 Watanagashi/}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Mangagamer\\higurashi02}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/unity.MangaGamer.Higurashi When They Cry - Ch.2 Watanagashi}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/MangaGamer/Higurashi When They Cry - Ch.2 Watanagashi/|{{p|linuxhome}}/.config/unity3d/MangaGamer/Higurashi When They Cry _ Ch.2 Watanagashi/}}" Higurashi When They Cry Hou - Ch.3 Tatarigoroshi: gog: 1080818996 pageId: 35250 steam: 472870 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Mangagamer\higurashi03}}' - - >- - {{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/MangaGamer/Higurashi When They Cry - Ch.3 - Tatarigoroshi/}} - - '{{Game data/saves|Windows|{{p|appdata}}\Mangagamer\higurashi03}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/MangaGamer/Higurashi When They Cry - Ch.3 Tatarigoroshi/}}' + - "{{Game data/config|Windows|{{p|appdata}}\\Mangagamer\\higurashi03}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/MangaGamer/Higurashi When They Cry - Ch.3 Tatarigoroshi/}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Mangagamer\\higurashi03}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/MangaGamer/Higurashi When They Cry - Ch.3 Tatarigoroshi/}}" Higurashi When They Cry Hou - Ch.4 Himatsubushi: gog: 1881878511 pageId: 40347 steam: 526490 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Mangagamer\higurashi04}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/MangaGamer/Higurashi When They Cry - Ch.4 Himatsubushi/}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Mangagamer\higurashi04}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/MangaGamer/Higurashi When They Cry - Ch.4 Himatsubushi/}}' + - "{{Game data/config|Windows|{{p|appdata}}\\Mangagamer\\higurashi04}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/MangaGamer/Higurashi When They Cry - Ch.4 Himatsubushi/}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Mangagamer\\higurashi04}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/MangaGamer/Higurashi When They Cry - Ch.4 Himatsubushi/}}" Higurashi When They Cry Hou - Ch.5 Meakashi: gog: 1632573677 pageId: 60319 steam: 577480 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Mangagamer\higurashi05}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/MangaGamer/Higurashi When They Cry - Ch.5 Meakashi/}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Mangagamer\higurashi05}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/MangaGamer/Higurashi When They Cry - Ch.5 Meakashi/}}' + - "{{Game data/config|Windows|{{p|appdata}}\\Mangagamer\\higurashi05}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/MangaGamer/Higurashi When They Cry - Ch.5 Meakashi/}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Mangagamer\\higurashi05}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/MangaGamer/Higurashi When They Cry - Ch.5 Meakashi/}}" Higurashi When They Cry Hou - Ch.6 Tsumihoroboshi: gog: 1574973992 pageId: 94937 steam: 668350 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Mangagamer\higurashi06}}' - - >- - {{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/MangaGamer/Higurashi When They Cry - Ch.6 - Tsumihoroboshi/}} - - '{{Game data/saves|Windows|{{p|appdata}}\Mangagamer\higurashi06}}' - - >- - {{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/MangaGamer/Higurashi When They Cry - Ch.6 - Tsumihoroboshi/}} + - "{{Game data/config|Windows|{{p|appdata}}\\Mangagamer\\higurashi06}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/MangaGamer/Higurashi When They Cry - Ch.6 Tsumihoroboshi/}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Mangagamer\\higurashi06}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/MangaGamer/Higurashi When They Cry - Ch.6 Tsumihoroboshi/}}" Higurashi When They Cry Hou - Ch.7 Minagoroshi: gog: 1994114924 pageId: 139330 steam: 1034940 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Mangagamer\Higurashi When They Cry - Ch.7 Minagoroshi}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/MangaGamer/Higurashi When They Cry - Ch.7 Minagoroshi/}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Mangagamer\higurashi07}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/MangaGamer/Higurashi When They Cry - Ch.7 Minagoroshi/}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Mangagamer\\Higurashi When They Cry - Ch.7 Minagoroshi}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/MangaGamer/Higurashi When They Cry - Ch.7 Minagoroshi/}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Mangagamer\\higurashi07}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/MangaGamer/Higurashi When They Cry - Ch.7 Minagoroshi/}}" Higurashi When They Cry Hou - Ch.8 Matsuribayashi: gog: 2052551600 pageId: 160438 steam: 1243670 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Mangagamer\Higurashi When They Cry - Ch.8 Matsuribayashi}}' - - >- - {{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/MangaGamer/Higurashi When They Cry - Ch.8 - Matsuribayashi/}} - - '{{Game data/saves|Windows|{{p|appdata}}\Mangagamer\higurashi08}}' - - >- - {{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/MangaGamer/Higurashi When They Cry - Ch.8 - Matsuribayashi/}} + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Mangagamer\\Higurashi When They Cry - Ch.8 Matsuribayashi}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/MangaGamer/Higurashi When They Cry - Ch.8 Matsuribayashi/}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Mangagamer\\higurashi08}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/MangaGamer/Higurashi When They Cry - Ch.8 Matsuribayashi/}}" Higurashi When They Cry Hou - Rei: gog: 2077016765 pageId: 178079 @@ -78075,7 +75962,7 @@ Hiiro: pageId: 37255 steam: 464960 templates: - - '{{Game data/saves|Windows|{{p|localappdata}}\hiiro_steam\hiirosave.txt}}' + - "{{Game data/saves|Windows|{{p|localappdata}}\\hiiro_steam\\hiirosave.txt}}" Hijos del Invierno: pageId: 142361 steam: 1078140 @@ -78088,7 +75975,7 @@ Hikari! Love Potion: Hikariblade RPG: pageId: 87318 steam: 800410 -Hikaru's Cube: +"Hikaru's Cube": pageId: 72027 steam: 713550 HikeJam: @@ -78109,21 +75996,13 @@ Hilda Bewildered: Hill Climb Racing: pageId: 110886 templates: - - >- - {{Game data/config|Microsoft - Store|{{P|localappdata}}\Packages\Fingersoft.HillClimbRacing_r6rtpscs7gwyg\Settings\}} - - >- - {{Game data/saves|Microsoft - Store|{{P|localappdata}}\Packages\Fingersoft.HillClimbRacing_r6rtpscs7gwyg\Settings\settings.dat}} + - "{{Game data/config|Microsoft Store|{{P|localappdata}}\\Packages\\Fingersoft.HillClimbRacing_r6rtpscs7gwyg\\Settings\\}}" + - "{{Game data/saves|Microsoft Store|{{P|localappdata}}\\Packages\\Fingersoft.HillClimbRacing_r6rtpscs7gwyg\\Settings\\settings.dat}}" Hill Climb Racing 2: pageId: 110864 templates: - - >- - {{Game data/config|Microsoft - Store|{{P|localappdata}}\Packages\Fingersoft.HillClimbRacing2_r6rtpscs7gwyg\Settings\}} - - >- - {{Game data/saves|Microsoft - Store|{{P|localappdata}}\Packages\Fingersoft.HillClimbRacing2_r6rtpscs7gwyg\LocalState\}} + - "{{Game data/config|Microsoft Store|{{P|localappdata}}\\Packages\\Fingersoft.HillClimbRacing2_r6rtpscs7gwyg\\Settings\\}}" + - "{{Game data/saves|Microsoft Store|{{P|localappdata}}\\Packages\\Fingersoft.HillClimbRacing2_r6rtpscs7gwyg\\LocalState\\}}" Hill Quest: pageId: 79882 steam: 773610 @@ -78140,7 +76019,7 @@ Hillsfar: pageId: 54893 steam: 1904525 templates: - - '{{Game data/saves|DOS|{{p|game}}\*.HIL}}' + - "{{Game data/saves|DOS|{{p|game}}\\*.HIL}}" Him and I: pageId: 149152 steam: 1157010 @@ -78151,7 +76030,7 @@ Himeko Sutori: pageId: 77377 steam: 669500 templates: - - '{{Game data/config|Windows|{{p|game}}\RPGTacGame\Config\}}' + - "{{Game data/config|Windows|{{p|game}}\\RPGTacGame\\Config\\}}" Himiko: pageId: 59087 steam: 603740 @@ -78159,8 +76038,8 @@ Himno: pageId: 132438 steam: 931690 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Breakfast Studio\Himno\}}' -'Himno: The Silent Melody': + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Breakfast Studio\\Himno\\}}" +"Himno: The Silent Melody": pageId: 142087 renamedFrom: - Himno - The Silent Melody @@ -78184,8 +76063,8 @@ Hinterland: pageId: 41339 steam: 17140 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Tilted Mill\Hinterland\client}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Tilted Mill\Hinterland\saves}}' + - "{{Game data/config|Windows|{{p|appdata}}\\Tilted Mill\\Hinterland\\client}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Tilted Mill\\Hinterland\\saves}}" HipWitch: pageId: 175027 steam: 1701460 @@ -78198,7 +76077,7 @@ Hippo eating banana: Hippoboar Rancher: pageId: 153930 steam: 1195090 -'Hippocampal: The White Sofa': +"Hippocampal: The White Sofa": pageId: 50196 steam: 300900 Hippocampus: @@ -78216,25 +76095,25 @@ Hir Corruption: Hiragana Pixel Party: pageId: 44094 steam: 417310 -'Hired Guns: The Jagged Edge': +"Hired Guns: The Jagged Edge": pageId: 182198 steam: 33500 templates: - - '{{Game data/config|Windows|{{p|game}}\system.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\profiles\{{p|uid}}}}' + - "{{Game data/config|Windows|{{p|game}}\\system.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\profiles\\{{p|uid}}}}" Hired Ops: pageId: 52225 steam: 374280 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\SOFTWARE\Absolutsoft\Hired Ops}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\Absolutsoft\\Hired Ops}}" Hirilun: gog: 1703925190 pageId: 175437 steam: 1407300 -Hiro's Forest Rumble: +"Hiro's Forest Rumble": pageId: 80414 steam: 780430 -Hiro's Harvest Season: +"Hiro's Harvest Season": pageId: 78010 steam: 717440 His Chuunibyou Cannot Be Cured!: @@ -78265,7 +76144,7 @@ History Warriors: History in Letters - The Eternal Alchemist: pageId: 45365 steam: 318680 -'Historyline: 1914-1918': +"Historyline: 1914-1918": gog: 1207661063 pageId: 20637 Hit Tank PRO: @@ -78288,19 +76167,13 @@ Hitchhiker - A Mystery Game: pageId: 139600 steam: 1003120 templates: - - >- - {{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\Mad About Pandas\Hitchhiker - A Mystery - Game\SaveGames\}} - - >- - {{Game data/saves|OS X|{{p|osxhome}}/Library/Containers/Hitchhiker - A Mystery - Game/Data/Library/Preferences/com.versusevil.HitchhHiker.plist}} + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\Mad About Pandas\\Hitchhiker - A Mystery Game\\SaveGames\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Containers/Hitchhiker - A Mystery Game/Data/Library/Preferences/com.versusevil.HitchhHiker.plist}}" Hitman: gog: 1490827332 pageId: 25689 steam: 236870 steamSide: - - 649780 - - 664270 - 439870 - 439890 - 440930 @@ -78308,35 +76181,37 @@ Hitman: - 440961 - 440962 - 588660 + - 649780 + - 664270 - 725353 - 737780 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\SOFTWARE\IO Interactive\Hitman\}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/feral-interactive/HITMAN/}}' - - '{{Game data/saves|Epic Games Launcher|{{P|appdata}}\Io Interactive\Epic\{{P|uid}}\HITMAN}}' - - '{{Game data/saves|Steam|{{P|steam}}/userdata/{{P|uid}}/236870/remote/}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\SOFTWARE\\IO Interactive\\Hitman\\}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/feral-interactive/HITMAN/}}" + - "{{Game data/saves|Epic Games Launcher|{{P|appdata}}\\Io Interactive\\Epic\\{{P|uid}}\\HITMAN}}" + - "{{Game data/saves|Steam|{{P|steam}}/userdata/{{P|uid}}/236870/remote/}}" Hitman 2: pageId: 97053 steam: 863550 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\IO Interactive\HITMAN2}}' - - '{{Game data/saves|Windows|{{p|steam}}\userdata\{{p|uid}}\863550\remote\}}' -'Hitman 2: Silent Assassin': + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\IO Interactive\\HITMAN2}}" + - "{{Game data/saves|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\863550\\remote\\}}" +"Hitman 2: Silent Assassin": gog: 1207659002 pageId: 2838 steam: 6850 templates: - - '{{Game data/config|Windows|{{p|game}}\Hitman2.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\Save}}' + - "{{Game data/config|Windows|{{p|game}}\\Hitman2.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\Save}}" Hitman GO: pageId: 30357 steam: 427820 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\SOFTWARE\Square Enix Ltd.\Hitman GO\}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Square Enix Ltd./Hitman GO/}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Square Enix Ltd_\Hitman GO\}}' - - '{{Game data/saves|Microsoft Store|{{P|localappdata}}\Packages\39C668CD.HitmanGO_r7bfsmp40f67j\LocalState\}}' - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\427820\remote\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\Square Enix Ltd.\\Hitman GO\\}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Square Enix Ltd./Hitman GO/}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Square Enix Ltd_\\Hitman GO\\}}" + - "{{Game data/saves|Microsoft Store|{{P|localappdata}}\\Packages\\39C668CD.HitmanGO_r7bfsmp40f67j\\LocalState\\}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\427820\\remote\\}}" Hitman World of Assassination: pageId: 58966 renamedFrom: @@ -78345,57 +76220,53 @@ Hitman World of Assassination: - HITMAN World of Assassination steam: 1659040 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\IO Interactive\HITMAN3}}' - - '{{Game data/saves|Epic Games Store|{{P|appdata}}\IO Interactive\Epic\{{P|uid}}\HITMAN3}}' - - '{{Game data/saves|Steam|{{P|steam}}\userdata\{{P|uid}}\1659040\remote\}}' - - >- - {{Game data/saves|Microsoft - Store|{{p|localappdata}}\Packages\IOInteractiveAS.PC-HITMAN3-BaseGame_6h0y724g59e1w\SystemAppData\wgs\}} -'Hitman: Absolution': + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\IO Interactive\\HITMAN3}}" + - "{{Game data/saves|Epic Games Store|{{P|appdata}}\\IO Interactive\\Epic\\{{P|uid}}\\HITMAN3}}" + - "{{Game data/saves|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\1659040\\remote\\}}" + - "{{Game data/saves|Microsoft Store|{{p|localappdata}}\\Packages\\IOInteractiveAS.PC-HITMAN3-BaseGame_6h0y724g59e1w\\SystemAppData\\wgs\\}}" +"Hitman: Absolution": gog: 1757179626 pageId: 3599 steam: 203140 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\IO Interactive\Hitman Absolution}}' - - >- - {{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Feral Interactive/Hitman Absolution/Preferences - Data}} - - '{{Game data/saves|Steam|{{p|Steam}}\userdata\{{p|uid}}\205930\remote\}}' - - '{{Game data/saves|GOG.com|{{p|APPDATA}}\IO Interactive\HM5\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/com.feralinteractive.hitmanabsolution}}' -'Hitman: Blood Money': + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\IO Interactive\\Hitman Absolution}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Feral Interactive/Hitman Absolution/Preferences Data}}" + - "{{Game data/saves|Steam|{{p|Steam}}\\userdata\\{{p|uid}}\\205930\\remote\\}}" + - "{{Game data/saves|GOG.com|{{p|APPDATA}}\\IO Interactive\\HM5\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/com.feralinteractive.hitmanabsolution}}" +"Hitman: Blood Money": gog: 1942346586 pageId: 1794 steam: 6860 templates: - - '{{Game data/config|Windows|{{p|game}}\HitmanBloodMoney.ini}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Hitman Blood Money\Profiles}}' -'Hitman: Codename 47': + - "{{Game data/config|Windows|{{p|game}}\\HitmanBloodMoney.ini}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Hitman Blood Money\\Profiles}}" +"Hitman: Codename 47": gog: 1207658996 pageId: 3615 steam: 6900 templates: - - '{{Game data/config|Windows|{{p|game}}\Hitman.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\Hitman.sav}}' -'Hitman: Contracts': + - "{{Game data/config|Windows|{{p|game}}\\Hitman.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\Hitman.sav}}" +"Hitman: Contracts": gog: 1207660853 pageId: 491 steam: 247430 templates: - - '{{Game data/config|Windows|{{p|game}}\HitmanContracts.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\Save}}' -'Hitman: Sniper Challenge': + - "{{Game data/config|Windows|{{p|game}}\\HitmanContracts.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\Save}}" +"Hitman: Sniper Challenge": pageId: 25499 steam: 205930 templates: - - '{{Game data/saves|Windows|{{p|Steam}}\userdata\{{p|uid}}\205930\remote}}' + - "{{Game data/saves|Windows|{{p|Steam}}\\userdata\\{{p|uid}}\\205930\\remote}}" Hitogata Happa: pageId: 12384 steam: 92210 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/saves|Windows|{{p|game}}\}}' - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\92210\remote\}}' + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\92210\\remote\\}}" Hitori: pageId: 79234 steam: 763540 @@ -78411,50 +76282,48 @@ Hive Jump: pageId: 37437 steam: 295670 templates: - - '{{Game data/config|Windows|{{P|userprofile}}\AppData\LocalLow\Graphite Lab\Hive Jump}}' - - '{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/Graphite Lab/Hive Jump}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Graphite Lab\Hive Jump\Profiles}}' - - '{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/Graphite Lab/Hive Jump/Profiles}}' + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Graphite Lab\\Hive Jump}}" + - "{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/Graphite Lab/Hive Jump}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Graphite Lab\\Hive Jump\\Profiles}}" + - "{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/Graphite Lab/Hive Jump/Profiles}}" Hive Quest: pageId: 96183 steam: 843280 Hive Time: pageId: 154560 templates: - - '{{Game data/config|Windows|{{P|appdata}}\hivetime\config.cfg}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/hivetime/config.cfg}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/hivetime/config.cfg}}' - - '{{Game data/saves|Windows|{{P|appdata}}\hivetime\saves\*.save}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/hivetime/saves/*.save}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/hivetime/saves/*.save}}' + - "{{Game data/config|Windows|{{P|appdata}}\\hivetime\\config.cfg}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/hivetime/config.cfg}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/hivetime/config.cfg}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\hivetime\\saves\\*.save}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/hivetime/saves/*.save}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/hivetime/saves/*.save}}" Hiveswap Friendsim: gog: 1766046223 pageId: 91817 steam: 833040 -'Hiveswap: Act 1': +"Hiveswap: Act 1": gog: 1980612837 pageId: 70103 steam: 623940 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\What Pumpkin\Hiveswap Episode 1\config.json}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/What Pumpkin/Hiveswap Episode 1/config.json}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/What Pumpkin/Hiveswap Episode 1/config.json}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\What Pumpkin\Hiveswap Episode 1\Saves}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/What Pumpkin/Hiveswap Episode 1/Saves}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/What Pumpkin/Hiveswap Episode 1/Saves}}' -'Hiveswap: Act 2': + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\What Pumpkin\\Hiveswap Episode 1\\config.json}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/What Pumpkin/Hiveswap Episode 1/config.json}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/What Pumpkin/Hiveswap Episode 1/config.json}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\What Pumpkin\\Hiveswap Episode 1\\Saves}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/What Pumpkin/Hiveswap Episode 1/Saves}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/What Pumpkin/Hiveswap Episode 1/Saves}}" +"Hiveswap: Act 2": gog: 1988939720 pageId: 154109 steam: 1181840 templates: - - >- - {{Game data/config|Windows|{{P|userprofile\appdata\locallow}}\What Pumpkin\Hiveswap Episode - 2\Options.json|{{P|hkcu}}\SOFTWARE\What Pumpkin\Hiveswap Episode 2\}} - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\What Pumpkin\Hiveswap Episode 2\Saves\}}' -'Ho Tu Lo Shu: The Books of Dragon': + - "{{Game data/config|Windows|{{P|userprofile\\appdata\\locallow}}\\What Pumpkin\\Hiveswap Episode 2\\Options.json|{{P|hkcu}}\\SOFTWARE\\What Pumpkin\\Hiveswap Episode 2\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\What Pumpkin\\Hiveswap Episode 2\\Saves\\}}" +"Ho Tu Lo Shu: The Books of Dragon": pageId: 121371 steam: 952860 -'HoD: A pirate adventure': +"HoD: A pirate adventure": pageId: 47201 steam: 386330 HoPiKo: @@ -78468,18 +76337,16 @@ Hoa: pageId: 170893 steam: 1484900 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\PMStudioGoG\Hoa\}}' - - >- - {{Game - data/saves|Windows|{{p|userprofile\appdata\locallow}}\PMStudioGoG\Hoa\saveData.txt|{{p|userprofile\appdata\locallow}}\PMStudioGoG\Hoa\SaveData\Slot0.savegame}} + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\PMStudioGoG\\Hoa\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\PMStudioGoG\\Hoa\\saveData.txt|{{p|userprofile\\appdata\\locallow}}\\PMStudioGoG\\Hoa\\SaveData\\Slot0.savegame}}" Hoard: pageId: 12925 steam: 63000 templates: - - '{{Game data/config|Windows|{{p|game}}\OptionData.txt}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/BigSandwichGames/Hoard/}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/BigSandwichGames/Hoard/}}' - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{P|uid}}/63000/}}' + - "{{Game data/config|Windows|{{p|game}}\\OptionData.txt}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/BigSandwichGames/Hoard/}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/BigSandwichGames/Hoard/}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{P|uid}}/63000/}}" Hoarding Simulator: pageId: 153014 steam: 1190980 @@ -78488,22 +76355,22 @@ Hob: pageId: 39524 steam: 404680 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Runic Games\Hob\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Runic Games\Hob\SAVES\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Runic Games\\Hob\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Runic Games\\Hob\\SAVES\\}}" Hobo Living VR: pageId: 144484 steam: 1058490 -'Hobo: Tough Life': +"Hobo: Tough Life": pageId: 66578 steam: 632300 templates: - - '{{Game data/config|Windows|{{p|game}}\HoboRPG_Data\Config}}' - - '{{Game data/saves|Windows|{{p|game}}\HoboRPG_Data\Save}}' + - "{{Game data/config|Windows|{{p|game}}\\HoboRPG_Data\\Config}}" + - "{{Game data/saves|Windows|{{p|game}}\\HoboRPG_Data\\Save}}" Hobs: pageId: 143999 steam: 1114860 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\tenekekafalar\hobs\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\tenekekafalar\\hobs\\}}" Hockey Camp - Goaltender: pageId: 127287 steam: 1023040 @@ -78511,17 +76378,17 @@ Hockey Manager 2020: pageId: 157746 steam: 1014050 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\netmingames\EHM2020_3D}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\netmingames\\EHM2020_3D}}" Hockey Player VR: pageId: 135000 steam: 1051570 Hockey Space: pageId: 65247 steam: 655640 -'Hockey: Strategy of Success': +"Hockey: Strategy of Success": pageId: 130535 renamedFrom: - - 'Hockey: Strategy Of Success' + - "Hockey: Strategy Of Success" steam: 1036310 Hockeysplit: pageId: 155799 @@ -78533,8 +76400,8 @@ Hocus: pageId: 37832 steam: 418040 templates: - - '{{Game data/config|Windows|{{P|appdata}}\com.gamebrain.hocus\Local Store\#SharedObjects\hocus.swf\}}' - - '{{Game data/saves|Windows|{{P|appdata}}\com.gamebrain.hocus\Local Store\#SharedObjects\hocus.swf\}}' + - "{{Game data/config|Windows|{{P|appdata}}\\com.gamebrain.hocus\\Local Store\\#SharedObjects\\hocus.swf\\}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\com.gamebrain.hocus\\Local Store\\#SharedObjects\\hocus.swf\\}}" Hocus 2: pageId: 164996 steam: 1460610 @@ -78543,11 +76410,11 @@ Hocus Pocus: pageId: 30462 steam: 358290 templates: - - '{{Game data/saves|DOS|{{p|game}}\HOCUS.SAV}}' + - "{{Game data/saves|DOS|{{p|game}}\\HOCUS.SAV}}" Hocus Potions: pageId: 134593 steam: 1059320 -'Hodl: The God of Crypto': +"Hodl: The God of Crypto": pageId: 93041 steam: 771510 Hog Hunter 2021: @@ -78564,27 +76431,19 @@ Hogwarts Legacy: pageId: 163501 steam: 990080 templates: - - >- - {{Game data/config|Windows|{{p|localappdata}}\Hogwarts - Legacy\Saved\Config\WindowsNoEditor|{{p|localappdata}}\Hogwarts\Saved\Config\WindowNoEditor{{P|uid}}{{note|Only - uses {{folder|Hogwarts}} when streaming to other devices.}}}} - - >- - {{Game data/saves|Windows|{{p|localappdata}}\Hogwarts - Legacy\Saved\SaveGames\{{P|uid}}|{{p|localappdata}}\Hogwarts\Saved\SaveGames\{{P|uid}}{{note|Only uses - {{folder|Hogwarts}} when streaming to other devices.{{Refurl|url=https://www.reddit.com/r/HarryPotterGame/comments/10wvual/lost_save_on_pc/|title=Lost - save on PC - Reddit|date=2023-02-17}}}}}} + - "{{Game data/config|Windows|{{p|localappdata}}\\Hogwarts Legacy\\Saved\\Config\\WindowsNoEditor|{{p|localappdata}}\\Hogwarts\\Saved\\Config\\WindowNoEditor{{P|uid}}{{note|Only uses {{folder|Hogwarts}} when streaming to other devices.}}}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Hogwarts Legacy\\Saved\\SaveGames\\{{P|uid}}|{{p|localappdata}}\\Hogwarts\\Saved\\SaveGames\\{{P|uid}}{{note|Only uses {{folder|Hogwarts}} when streaming to other devices.{{Refurl|url=https://www.reddit.com/r/HarryPotterGame/comments/10wvual/lost_save_on_pc/|title=Lost save on PC - Reddit|date=2023-02-17}}}}}}" Hogwash: pageId: 148384 -'Hokan: Monster Slayer': +"Hokan: Monster Slayer": pageId: 94072 steam: 856770 Hokko Life: pageId: 168558 steam: 824000 templates: - - '{{Game data/config|Windows|{{P|appdata}}\Wonderscope\Hokko Life\SaveData\sys.hks}}' - - '{{Game data/saves|Windows|{{P|appdata}}\Wonderscope\Hokko Life\SaveData}}' + - "{{Game data/config|Windows|{{P|appdata}}\\Wonderscope\\Hokko Life\\SaveData\\sys.hks}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\Wonderscope\\Hokko Life\\SaveData}}" Hold My Beer: pageId: 66154 steam: 672020 @@ -78603,17 +76462,17 @@ Hold the Door!: Hold the Fort: pageId: 130727 steam: 1037760 -'Hold the Line: The American Revolution': +"Hold the Line: The American Revolution": pageId: 67599 steam: 657500 Hold your Houses: pageId: 57263 steam: 586790 -'Holdfast: Nations At War': +"Holdfast: Nations At War": pageId: 59689 steam: 589290 templates: - - '{{Game data/config|Windows|{{P|userprofile}}\AppData\LocalLow\Anvil Game Studio\Holdfast NaW\}}' + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Anvil Game Studio\\Holdfast NaW\\}}" Hole in the Clouds: pageId: 185839 steam: 1821340 @@ -78627,15 +76486,15 @@ Holiday Lemmings (1994): pageId: 176264 Holiday Racer: pageId: 171128 -'Holiday Simulator: Wacky Sleigh Ride': +"Holiday Simulator: Wacky Sleigh Ride": pageId: 55480 steam: 571180 Hollow: pageId: 58045 steam: 590970 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Hollow\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Hollow\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Hollow\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Hollow\\Saved\\SaveGames\\}}" Hollow 2: pageId: 132778 steam: 1055240 @@ -78665,19 +76524,15 @@ Hollow Knight: - 598190 - 916000 templates: - - >- - {{Game data/config|Windows|{{p|hkcu}}\Software\Team Cherry\Hollow - Knight\|{{P|game}}\hollow_knight_Data\Config.ini}} - - '{{Game data/config|Microsoft Store|{{p|programdata}}\Packages\TeamCherry.HollowKnightPC_y4jvztpgccj42\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Preferences/unity.Team Cherry.Hollow Knight.plist}}' - - '{{Game data/config|Linux|{{p|xdgconfighome}}/unity3d/Team Cherry/Hollow Knight/prefs}}' - - >- - {{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Team Cherry\Hollow Knight\*.dat | - {{p|userprofile}}\AppData\LocalLow\Team Cherry\Hollow Knight\*.bak}} - - '{{Game data/saves|Microsoft Store|{{p|userprofile}}\AppData\LocalLow\Team Cherry\Hollow Knight\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/unity.Team Cherry.Hollow Knight/}}' - - '{{Game data/saves|Linux|{{p|xdgconfighome}}/unity3d/Team Cherry/Hollow Knight/*.dat}}' -'Hollow Knight: Silksong': + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Team Cherry\\Hollow Knight\\|{{P|game}}\\hollow_knight_Data\\Config.ini}}" + - "{{Game data/config|Microsoft Store|{{p|programdata}}\\Packages\\TeamCherry.HollowKnightPC_y4jvztpgccj42\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Preferences/unity.Team Cherry.Hollow Knight.plist}}" + - "{{Game data/config|Linux|{{p|xdgconfighome}}/unity3d/Team Cherry/Hollow Knight/prefs}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Team Cherry\\Hollow Knight\\*.dat | {{p|userprofile}}\\AppData\\LocalLow\\Team Cherry\\Hollow Knight\\*.bak}}" + - "{{Game data/saves|Microsoft Store|{{p|userprofile}}\\AppData\\LocalLow\\Team Cherry\\Hollow Knight\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/unity.Team Cherry.Hollow Knight/}}" + - "{{Game data/saves|Linux|{{p|xdgconfighome}}/unity3d/Team Cherry/Hollow Knight/*.dat}}" +"Hollow Knight: Silksong": gog: 1558393671 pageId: 129541 steam: 1030300 @@ -78687,7 +76542,7 @@ Hollow Steps: Hollow Throne: pageId: 78703 steam: 750790 -Hollow's Land: +"Hollow's Land": pageId: 49067 steam: 338840 Hollowbody: @@ -78697,9 +76552,9 @@ Hollowed: pageId: 72775 steam: 669630 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\ProjectPolish\Saved\SaveGames\}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\ProjectPolish\Saved\Config\WindowsNoEditor\}}' -Hollowhead's VR Time Machine: + - "{{Game data/config|Windows|{{P|localappdata}}\\ProjectPolish\\Saved\\SaveGames\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\ProjectPolish\\Saved\\Config\\WindowsNoEditor\\}}" +"Hollowhead's VR Time Machine": pageId: 142326 steam: 1121160 Hollywood Monsters: @@ -78707,7 +76562,7 @@ Hollywood Monsters: Hollywood Visionary: pageId: 37887 steam: 365210 -'Holo Impact: Prologue': +"Holo Impact: Prologue": pageId: 53192 steam: 543530 Holo Views: @@ -78723,8 +76578,8 @@ HoloCure - Save the Fans!: pageId: 189272 steam: 2420510 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\HoloCure\}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\HoloCure\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\HoloCure\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\HoloCure\\}}" HoloFist: pageId: 136082 steam: 774471 @@ -78734,10 +76589,10 @@ HoloLAB Champions: HoloSprint: pageId: 156029 steam: 1119670 -'Holobunnies: Pause Café': +"Holobunnies: Pause Café": pageId: 39261 steam: 497710 -'Holobunnies: The Bittersweet Adventure': +"Holobunnies: The Bittersweet Adventure": pageId: 39753 steam: 369840 Holoception: @@ -78759,7 +76614,7 @@ Hololive Error: pageId: 177567 renamedFrom: - Hololive ERROR -'Hololive Error: Complete Edition': +"Hololive Error: Complete Edition": pageId: 179691 steam: 2062550 Holomento: @@ -78772,7 +76627,7 @@ Holonglide: Holopoint: pageId: 37361 steam: 457960 -'Holopoint: Chronicle': +"Holopoint: Chronicle": pageId: 124388 steam: 718380 Holstin: @@ -78794,28 +76649,24 @@ Holy Potatoes! A Spy Story?!: pageId: 92349 steam: 830590 templates: - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Daedalic Entertainment GmbH/HPSPY/Saves}}' + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Daedalic Entertainment GmbH/HPSPY/Saves}}" Holy Potatoes! A Weapon Shop?!: gog: 1566993364 pageId: 31965 steam: 363600 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\SOFTWARE\DaylightStudios\HPAWS\}}' - - '{{Game data/config|OS X|$HOME/Library/Preferences/unity.DaylightStudios.HPAWS.plist}}' - - |- - {{Game data/config|Linux|$HOME/.config/unity3d/DaylightStudios/HPAWS - }} - - >- - {{Game - data/saves|Windows|{{p|userprofile\Documents}}\SavedGames\uploadData|{{p|userprofile\Documents}}\SavedGames\WS_*.txt}} - - '{{Game data/saves|OS X|{{p|osxhome}}/Documents/SavedGames/WS_*.txt}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/Documents/SavedGames/WS_*.txt}}' -Holy Potatoes! We're in Space?!: + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\DaylightStudios\\HPAWS\\}}" + - "{{Game data/config|OS X|$HOME/Library/Preferences/unity.DaylightStudios.HPAWS.plist}}" + - "{{Game data/config|Linux|$HOME/.config/unity3d/DaylightStudios/HPAWS\n}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\SavedGames\\uploadData|{{p|userprofile\\Documents}}\\SavedGames\\WS_*.txt}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Documents/SavedGames/WS_*.txt}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/Documents/SavedGames/WS_*.txt}}" +"Holy Potatoes! We're in Space?!": gog: 1707144504 pageId: 39364 steam: 505730 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Daedalic Entertainment GmbH\HPWIS\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Daedalic Entertainment GmbH\\HPWIS\\}}" Holy Potatoes! What the Hell?!: pageId: 69038 steam: 664320 @@ -78831,14 +76682,14 @@ Holy Towers: Holy Warrior: pageId: 145572 steam: 382230 -'Holyday City: Reloaded': +"Holyday City: Reloaded": pageId: 77918 steam: 728730 Home (2012): pageId: 51114 steam: 215670 templates: - - '{{Game data/saves|Windows|{{P|localappdata}}\Home_v15x\}}' + - "{{Game data/saves|Windows|{{P|localappdata}}\\Home_v15x\\}}" Home (2019): pageId: 135129 steam: 1067900 @@ -78854,8 +76705,8 @@ Home Behind: pageId: 37798 steam: 467960 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\TPPStudio\HomeBehind\}}' - - '{{Game data/saves|Windows|{{P|game}}\HomeBehind_Data\Save.dat}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\TPPStudio\\HomeBehind\\}}" + - "{{Game data/saves|Windows|{{P|game}}\\HomeBehind_Data\\Save.dat}}" Home Darkness - Escape: pageId: 77875 steam: 761640 @@ -78865,7 +76716,7 @@ Home Deco Puzzles: Home Design 3D: pageId: 45535 steam: 420000 -'Home Improvisation: Furniture Sandbox': +"Home Improvisation: Furniture Sandbox": pageId: 42006 steam: 357670 Home Land: @@ -78887,14 +76738,14 @@ Home Sheep Home 2: pageId: 37415 steam: 259810 templates: - - '{{Game data/config|Windows|{{p|appdata}}\HomeSheepHome2\Local Store\}}' - - '{{Game data/saves|Windows|{{p|appdata}}\HomeSheepHome2\Local Store\}}' + - "{{Game data/config|Windows|{{p|appdata}}\\HomeSheepHome2\\Local Store\\}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\HomeSheepHome2\\Local Store\\}}" Home Sweet Home: pageId: 64900 steam: 617160 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\HomeSweetHome\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\HomeSweetHome\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\HomeSweetHome\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\HomeSweetHome\\Saved\\SaveGames\\}}" Home Sweet Home Episode 2: pageId: 144957 steam: 1098940 @@ -78907,7 +76758,7 @@ Home Wars: Home is Where One Starts...: pageId: 47921 steam: 355970 -'Home: A VR Spacewalk': +"Home: A VR Spacewalk": pageId: 76211 steam: 512270 HomeGrove: @@ -78925,21 +76776,21 @@ Homebrew - Patent Unknown: pageId: 49327 steam: 325420 templates: - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\CopyBugPaste\Homebrew14\userData}}' + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\CopyBugPaste\\Homebrew14\\userData}}" Homefront: pageId: 3744 steam: 55100 steamSide: - 55210 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\HOMEFRONT\GCGame\Config\}}' - - '{{Game data/saves|Windows|{{p|steam}}\userdata\{{p|uid}}\55100\remote\}}' -'Homefront: The Revolution': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\HOMEFRONT\\GCGame\\Config\\}}" + - "{{Game data/saves|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\55100\\remote\\}}" +"Homefront: The Revolution": pageId: 17578 steam: 223100 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\Saved Games\homefront2\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\Saved Games\homefront2\SaveGames\}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\Saved Games\\homefront2\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Saved Games\\homefront2\\SaveGames\\}}" Homeless Simulator: pageId: 132526 steam: 1060300 @@ -78949,7 +76800,7 @@ Homeless Simulator 2: Homelesshood: pageId: 68408 steam: 685870 -Homer's Odyssey: +"Homer's Odyssey": pageId: 151222 steam: 1165660 Homescapes: @@ -78958,7 +76809,7 @@ Homesick: pageId: 26720 steam: 244910 templates: - - '{{Game data/saves|Windows|{{p|game}}\Binaries\Win32\homesicksave}}' + - "{{Game data/saves|Windows|{{p|game}}\\Binaries\\Win32\\homesicksave}}" HomestarVR: pageId: 92855 steam: 836690 @@ -78983,8 +76834,8 @@ Homeworld: pageId: 1231 steam: 244160 templates: - - '{{Game data/config|Windows|{{p|hklm}}\SOFTWARE\{{p|wow64}}\Sierra On-Line\Homeworld}}' - - '{{Game data/saves|Windows|{{p|game}}\SavedGames\}}' + - "{{Game data/config|Windows|{{p|hklm}}\\SOFTWARE\\{{p|wow64}}\\Sierra On-Line\\Homeworld}}" + - "{{Game data/saves|Windows|{{p|game}}\\SavedGames\\}}" Homeworld 2: gog: 2114871440 gogSide: @@ -78992,7 +76843,7 @@ Homeworld 2: pageId: 777 steam: 244160 templates: - - '{{Game data/saves|Windows|{{p|game}}\Bin\Profiles\}}' + - "{{Game data/saves|Windows|{{p|game}}\\Bin\\Profiles\\}}" Homeworld 2 Remastered Edition: gog: 2114871440 gogSide: @@ -79000,7 +76851,7 @@ Homeworld 2 Remastered Edition: pageId: 22806 steam: 244160 templates: - - '{{Game data/config|Windows|{{p|game}}\HomeworldRM\Bin\Profiles\Profile1}}' + - "{{Game data/config|Windows|{{p|game}}\\HomeworldRM\\Bin\\Profiles\\Profile1}}" Homeworld 3: pageId: 173575 steam: 1840080 @@ -79014,15 +76865,15 @@ Homeworld Remastered Edition: pageId: 22805 steam: 244160 templates: - - '{{Game data/config|Windows|{{p|game}}\HomeworldRM\Bin\Profiles\Profile1}}' - - '{{Game data/saves|Windows|{{p|game}}\HomeworldRM\Bin\Profiles\Profile1\Campaign}}' -'Homeworld: Cataclysm': + - "{{Game data/config|Windows|{{p|game}}\\HomeworldRM\\Bin\\Profiles\\Profile1}}" + - "{{Game data/saves|Windows|{{p|game}}\\HomeworldRM\\Bin\\Profiles\\Profile1\\Campaign}}" +"Homeworld: Cataclysm": gog: 1766413869 pageId: 25776 templates: - - '{{Game data/config|Windows|{{p|hklm}}\SOFTWARE\{{p|wow64}}\Sierra On-Line\Cataclysm}}' - - '{{Game data/saves|Windows|{{P|game}}\SavedGames}}' -'Homeworld: Deserts of Kharak': + - "{{Game data/config|Windows|{{p|hklm}}\\SOFTWARE\\{{p|wow64}}\\Sierra On-Line\\Cataclysm}}" + - "{{Game data/saves|Windows|{{P|game}}\\SavedGames}}" +"Homeworld: Deserts of Kharak": gog: 2115713947 gogSide: - 1113697773 @@ -79037,8 +76888,8 @@ Homeworld Remastered Edition: - 433242 - 436550 templates: - - '{{Game data/config|Windows|{{p|game}}\Win32\settings.json|{{p|game}}\Win64\settings.json}}' - - '{{Game data/saves|Windows|{{p|game}}\Win32\out\cloud\|{{p|game}}\Win64\out\cloud\}}' + - "{{Game data/config|Windows|{{p|game}}\\Win32\\settings.json|{{p|game}}\\Win64\\settings.json}}" + - "{{Game data/saves|Windows|{{p|game}}\\Win32\\out\\cloud\\|{{p|game}}\\Win64\\out\\cloud\\}}" Homicidal All-Stars: gog: 1511366207 pageId: 180188 @@ -79055,17 +76906,17 @@ Homo Flimsy: Honey Comb Home: pageId: 127233 steam: 1020810 -'Honey Rose: Underdog Fighter Extraordinaire': +"Honey Rose: Underdog Fighter Extraordinaire": pageId: 40136 steam: 523680 -'Honey, I Joined a Cult': +"Honey, I Joined a Cult": pageId: 93329 steam: 841190 steamSide: - 2192040 - 2192050 templates: - - '{{Game data/saves|Windows|{{P|localappdata}}\Honey_I_Joined_A_Cult}}' + - "{{Game data/saves|Windows|{{P|localappdata}}\\Honey_I_Joined_A_Cult}}" Honeycomb Clash: pageId: 129665 steam: 1034490 @@ -79080,23 +76931,23 @@ Honkai Impact 3rd: steamSide: - 1672740 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\miHoYo\Honkai Impact 3rd\}}' -'Honkai: Star Rail': + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\miHoYo\\Honkai Impact 3rd\\}}" +"Honkai: Star Rail": pageId: 186015 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Cognosphere\Star Rail}}' - - '{{Game data/saves|Windows|{{P|hkcu}}\Software\Cognosphere\Star Rail}}' -'Honor Cry: Aftermath': + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Cognosphere\\Star Rail}}" + - "{{Game data/saves|Windows|{{P|hkcu}}\\Software\\Cognosphere\\Star Rail}}" +"Honor Cry: Aftermath": pageId: 95483 steam: 867540 Hoo-Boy: pageId: 69725 steam: 707870 -'Hood: Outlaws & Legends': +"Hood: Outlaws & Legends": pageId: 165716 steam: 927350 templates: - - '{{Game data/config|Windows|{{p|LOCALAPPDATA}}\Hood\Saved\Config\WindowsNoEditor}}' + - "{{Game data/config|Windows|{{p|LOCALAPPDATA}}\\Hood\\Saved\\Config\\WindowsNoEditor}}" Hoodo: pageId: 144759 steam: 1120900 @@ -79106,29 +76957,27 @@ Hook (2015): pageId: 27656 steam: 367580 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\SOFTWARE\RainbowTrain\Hook\}}' - - '{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/RainbowTrain/Hook/prefs}}' - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\RainbowTrain\Hook\{{P|uid}}\saveData.txt}}' - - '{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/RainbowTrain/Hook/{{P|uid}}/saveData.txt}}' - - '{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/RainbowTrain/Hook/{{P|uid}}/saveData.txt}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\RainbowTrain\\Hook\\}}" + - "{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/RainbowTrain/Hook/prefs}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\RainbowTrain\\Hook\\{{P|uid}}\\saveData.txt}}" + - "{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/RainbowTrain/Hook/{{P|uid}}/saveData.txt}}" + - "{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/RainbowTrain/Hook/{{P|uid}}/saveData.txt}}" Hook 2: pageId: 174769 steam: 1871310 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Rainbow Train\Hook 2}}' - - '{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/Rainbow Train/Hook 2/prefs}}' - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Rainbow Train\Hook 2\{{P|uid}}\}}' - - '{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/Rainbow Train/Hook 2/{{P|uid}}/}}' - - '{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/Rainbow Train/Hook 2/{{P|uid}}/}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Rainbow Train\\Hook 2}}" + - "{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/Rainbow Train/Hook 2/prefs}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Rainbow Train\\Hook 2\\{{P|uid}}\\}}" + - "{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/Rainbow Train/Hook 2/{{P|uid}}/}}" + - "{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/Rainbow Train/Hook 2/{{P|uid}}/}}" Hookbots: pageId: 132828 steam: 668650 templates: - - >- - {{Game data/config|Windows|{{P|userprofile}}\AppData\LocalLow\Tree - Interactive\Hookbots\Preferences.hkb|{{P|hkcu}}\Software\Tree Interactive\Hookbots\}} - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Tree Interactive\Hookbots\}}' -'Hooked on You: A Dead by Daylight Dating Sim': + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Tree Interactive\\Hookbots\\Preferences.hkb|{{P|hkcu}}\\Software\\Tree Interactive\\Hookbots\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Tree Interactive\\Hookbots\\}}" +"Hooked on You: A Dead by Daylight Dating Sim": pageId: 180422 steam: 1866180 Hooklings: @@ -79146,19 +76995,19 @@ Hooligan Simulator: Hooligan Vasja: pageId: 36121 steam: 515910 -'Hooligan Vasja 2: Journey Through Time': +"Hooligan Vasja 2: Journey Through Time": pageId: 91248 steam: 806800 -'Hooligan Vasja: Christmas': +"Hooligan Vasja: Christmas": pageId: 65065 steam: 667360 -'Hooligan Vasja: Halloween': +"Hooligan Vasja: Halloween": pageId: 64278 steam: 655460 -'Hooligans: Storm Over Europe': +"Hooligans: Storm Over Europe": pageId: 123171 templates: - - '{{Game data/saves|Windows|{{P|game}}\save}}' + - "{{Game data/saves|Windows|{{P|game}}\\save}}" Hoop Route: pageId: 68879 steam: 592560 @@ -79168,7 +77017,7 @@ Hoop Shot VR: Hoops VR: pageId: 35230 steam: 487770 -'Hooters: Road Trip': +"Hooters: Road Trip": pageId: 90845 Hop Step Sing! Astral Piece: pageId: 156183 @@ -79181,7 +77030,7 @@ Hop Step Sing! Kimamani☆Summer Vacation: Hop Step Sing! Kisekiteki Shining!: pageId: 53946 renamedFrom: - - VR Idol Stars Project "Hop Step Sing!" High Quality Edition + - "VR Idol Stars Project \"Hop Step Sing!\" High Quality Edition" steam: 538000 Hop Step Sing! Nozokanaide Naked Heart: pageId: 112336 @@ -79196,7 +77045,7 @@ Hop Step Sing! kiss×kiss×kiss: HopSquash!: pageId: 152829 steam: 1012450 -'Hopalong: The Badlands': +"Hopalong: The Badlands": pageId: 60277 steam: 555600 Hope: @@ -79209,8 +77058,8 @@ Hope Lake: pageId: 42702 steam: 485690 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Far Mills\Hope Lake|{{P|appdata}}\MysteryTag\HopeLake\game.conf}}' - - '{{Game data/saves|Windows|{{P|appdata}}\MysteryTag\HopeLake\*.save}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Far Mills\\Hope Lake|{{P|appdata}}\\MysteryTag\\HopeLake\\game.conf}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\MysteryTag\\HopeLake\\*.save}}" Hope for City: pageId: 149714 steam: 1142360 @@ -79226,7 +77075,7 @@ Hope is in 23: Hope of Humanity: pageId: 95537 steam: 868710 -Hope's Farm: +"Hope's Farm": pageId: 153604 steam: 1199900 Hope; or How We Survived: @@ -79238,12 +77087,12 @@ HopeLine: Hopeless Masquerade: pageId: 63111 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/saves|Windows|{{p|game}}\}}' + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\}}" Hopkins FBI: pageId: 16655 templates: - - '{{Game data/saves|Windows|{{p|game}}\SAVE}}' + - "{{Game data/saves|Windows|{{p|game}}\\SAVE}}" Hoplite: pageId: 55037 steam: 568450 @@ -79256,7 +77105,7 @@ Hopper Rabbit: Hopscotch: pageId: 72189 steam: 710310 -'HorD: High or Die': +"HorD: High or Die": pageId: 81060 steam: 777360 Horace: @@ -79264,13 +77113,11 @@ Horace: pageId: 140407 steam: 629090 templates: - - >- - {{Game data/config|Windows|{{P|userprofile}}\AppData\LocalLow\505 Games\Horace\Options|{{P|hkcu}}\Software\505 - Games\Horace\}} - - '{{Game data/config|Steam|{{P|steam}}\userdata\{{P|uid}}\629090\remote\Options}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\505 Games\Horace\}}' - - '{{Game data/saves|Steam|{{P|steam}}\userdata\{{P|uid}}\629090\remote\}}' -'Horace: First Trip': + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\505 Games\\Horace\\Options|{{P|hkcu}}\\Software\\505 Games\\Horace\\}}" + - "{{Game data/config|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\629090\\remote\\Options}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\505 Games\\Horace\\}}" + - "{{Game data/saves|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\629090\\remote\\}}" +"Horace: First Trip": pageId: 149140 steam: 1146280 Horde Attack: @@ -79279,11 +77126,11 @@ Horde Attack: Horde of Plenty: pageId: 93665 steam: 761300 -'Horde: The Citadel': +"Horde: The Citadel": pageId: 178521 -'Horde: The Northern Wind': +"Horde: The Northern Wind": pageId: 178519 -'Horde: Zombie Outbreak': +"Horde: Zombie Outbreak": pageId: 102611 steam: 887730 HordeCore: @@ -79306,32 +77153,30 @@ Horizon: pageId: 8441 steam: 236130 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Horizon Game\Horizon.ini}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Horizon Game\Saves\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Horizon Game\\Horizon.ini}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Horizon Game\\Saves\\}}" Horizon Beyond: pageId: 144451 steam: 1122960 Horizon Chase 2: pageId: 181421 templates: - - '{{Game data/config|Windows|%LOCALAPPDATA%\HorizonChase2\Saved\Config\WindowsNoEditor}}' - - '{{Game data/saves|Windows|%LOCALAPPDATA%\HorizonChase2\Saved\SaveGames}}' + - "{{Game data/config|Windows|%LOCALAPPDATA%\\HorizonChase2\\Saved\\Config\\WindowsNoEditor}}" + - "{{Game data/saves|Windows|%LOCALAPPDATA%\\HorizonChase2\\Saved\\SaveGames}}" Horizon Chase Turbo: pageId: 93152 steam: 389140 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Aquiris\HorizonChaseTurbo\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Aquiris\HorizonChaseTurbo\}}' - - >- - {{Game data/saves|Linux|{{p|linuxhome}}/.local/share/Steam/steamapps/common/Horizon - Chase/Aquiris/HorizonChaseTurbo/}} + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Aquiris\\HorizonChaseTurbo\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Aquiris\\HorizonChaseTurbo\\}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.local/share/Steam/steamapps/common/Horizon Chase/Aquiris/HorizonChaseTurbo/}}" Horizon Forbidden West: pageId: 190026 steam: 2420110 Horizon Shift: pageId: 37409 steam: 326120 -Horizon Shift '81: +"Horizon Shift '81": pageId: 138637 steam: 1071260 Horizon Source: @@ -79345,8 +77190,8 @@ Horizon Zero Dawn: pageId: 158338 steam: 1151640 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\Horizon Zero Dawn\Saved Game\profile\}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\Horizon Zero Dawn\Saved Game\}}' + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\Horizon Zero Dawn\\Saved Game\\profile\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\Horizon Zero Dawn\\Saved Game\\}}" Horizon of History: pageId: 53389 steam: 543300 @@ -79396,11 +77241,11 @@ Horror Souls: Horror Stories: pageId: 127928 steam: 1028820 -'Horror Story: Hallowseed': +"Horror Story: Hallowseed": gog: 1527686190 pageId: 171653 steam: 1151250 -'Horror Tales: The Wine': +"Horror Tales: The Wine": pageId: 170461 steam: 1340640 Horror Ville Maze Escape: @@ -79419,11 +77264,9 @@ Horse Club Adventures: pageId: 175229 steam: 1518820 templates: - - >- - {{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\Wild River Games\Horse - Club\|{{p|hkcu}}\SOFTWARE\Wild River Games\Horse Club\}} - - '{{Game data/saves|Windows|{{p|hkcu}}\SOFTWARE\Wild River Games\Horse Club\}}' -'Horse Club Adventures 2: Hazelwood Stories': + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Wild River Games\\Horse Club\\|{{p|hkcu}}\\SOFTWARE\\Wild River Games\\Horse Club\\}}" + - "{{Game data/saves|Windows|{{p|hkcu}}\\SOFTWARE\\Wild River Games\\Horse Club\\}}" +"Horse Club Adventures 2: Hazelwood Stories": pageId: 183039 steam: 1937570 Horse Farm: @@ -79441,13 +77284,13 @@ Horse Riding Deluxe: Horse Riding Tales: pageId: 132395 steam: 1048830 -'Horse Tales: Emerald Valley Ranch': +"Horse Tales: Emerald Valley Ranch": pageId: 182613 steam: 1474740 Horse World: pageId: 87481 steam: 806830 -Hoshi's Elektronauts: +"Hoshi's Elektronauts": pageId: 79738 steam: 776450 Hoshizora no Memoria -Eternal Heart-: @@ -79463,17 +77306,17 @@ Hospital Tycoon: pageId: 41318 steam: 11590 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\HospitalTycoon\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\HospitalTycoon\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\HospitalTycoon\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\HospitalTycoon\\}}" Hospitalize: pageId: 41541 steam: 503370 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Illeris AS\Hospitalize}}' + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Illeris AS\\Hospitalize}}" Host: pageId: 98308 steam: 828240 -'Hostage: Rescue Mission': +"Hostage: Rescue Mission": pageId: 80603 steam: 781290 Hostil: @@ -79485,45 +77328,39 @@ Hostile Dimension: Hostile User Interface: pageId: 124020 steam: 984540 -'Hostile Waters: Antaeus Rising': +"Hostile Waters: Antaeus Rising": gog: 1207658670 pageId: 26979 steam: 267980 templates: - - >- - {{Game - data/config|Windows|{{p|game}}\SavedGames\Opt.dat|{{p|hklm}}\SOFTWARE\{{p|wow64}}\Rage\HostileWaters\Options}} - - '{{Game data/saves|Windows|{{p|game}}\SavedGames\}}' + - "{{Game data/config|Windows|{{p|game}}\\SavedGames\\Opt.dat|{{p|hklm}}\\SOFTWARE\\{{p|wow64}}\\Rage\\HostileWaters\\Options}}" + - "{{Game data/saves|Windows|{{p|game}}\\SavedGames\\}}" Hot & Steamy Knights: pageId: 166546 steam: 1096730 templates: - - '{{Game data/saves|Linux|{{p|linuxhome}}/.renpy/HotSteamyKnights-1559852979/}}' + - "{{Game data/saves|Linux|{{p|linuxhome}}/.renpy/HotSteamyKnights-1559852979/}}" Hot Brass: gog: 1075439258 pageId: 151095 steam: 892860 -Hot Chix 'n' Gear Stix: +"Hot Chix 'n' Gear Stix": pageId: 25370 renamedFrom: - - Hot Chix 'N' Gear Stix - - Hot Chix 'n' Gear Stix - - Hot Chix 'N' Gear Stix + - "Hot Chix 'N' Gear Stix" + - "Hot Chix 'n' Gear Stix" + - "Hot Chix 'N' Gear Stix" templates: - - '{{Game data/saves|Windows|{{P|game}}\}}' + - "{{Game data/saves|Windows|{{P|game}}\\}}" Hot Dish: pageId: 41349 steam: 12570 -'Hot Dogs, Horseshoes & Hand Grenades': +"Hot Dogs, Horseshoes & Hand Grenades": pageId: 37369 steam: 450540 templates: - - >- - {{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\RUST LTD\Hot Dogs Horseshoes and Hand - Grenades\*.txt}} - - >- - {{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\RUST LTD\Hot Dogs Horseshoes and Hand - Grenades\*.txt}} + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\RUST LTD\\Hot Dogs Horseshoes and Hand Grenades\\*.txt}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\RUST LTD\\Hot Dogs Horseshoes and Hand Grenades\\*.txt}}" Hot Girls Puzzle: pageId: 121902 steam: 973160 @@ -79560,61 +77397,61 @@ Hot Shot Burn: Hot Squat: pageId: 53664 steam: 553590 -'Hot Squat 2: New Glory': +"Hot Squat 2: New Glory": pageId: 149644 steam: 1027190 Hot Takes: pageId: 149863 steam: 1148630 -'Hot Tin Roof: The Cat That Wore a Fedora': +"Hot Tin Roof: The Cat That Wore a Fedora": gog: 1424442317 pageId: 26129 steam: 253390 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Glass Bottom Games\Revolver\}}' - - '{{Game data/saves|Windows|{{p|hkcu}}\Software\Glass Bottom Games\Revolver\SaveSlot*_*}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Glass Bottom Games\\Revolver\\}}" + - "{{Game data/saves|Windows|{{p|hkcu}}\\Software\\Glass Bottom Games\\Revolver\\SaveSlot*_*}}" Hot Wheels Stunt Track Driver: pageId: 11206 Hot Wheels Unleashed: pageId: 169388 steam: 1271700 templates: - - '{{Game data/config|Windows|{{p|LOCALAPPDATA}}\hotwheels\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{p|LOCALAPPDATA}}\hotwheels\Saved\SaveGames\}}' -'Hot Wheels Unleashed 2: Turbocharged': + - "{{Game data/config|Windows|{{p|LOCALAPPDATA}}\\hotwheels\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{p|LOCALAPPDATA}}\\hotwheels\\Saved\\SaveGames\\}}" +"Hot Wheels Unleashed 2: Turbocharged": pageId: 188314 steam: 2051120 templates: - - '{{Game data/config|Windows|{{p|LOCALAPPDATA}}\hotwheels2\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{p|LOCALAPPDATA}}\hotwheels2\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{p|LOCALAPPDATA}}\\hotwheels2\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{p|LOCALAPPDATA}}\\hotwheels2\\Saved\\SaveGames\\}}" Hot Wheels Velocity X: pageId: 59704 templates: - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\VelocityX Saved Games\}}' + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\VelocityX Saved Games\\}}" Hot Wheels World Race: pageId: 166918 templates: - - '{{Game data/config|Windows|{{p|game}}\Config.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\saves\}}' -Hot Wheels World's Best Driver: + - "{{Game data/config|Windows|{{p|game}}\\Config.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\saves\\}}" +"Hot Wheels World's Best Driver": pageId: 40596 steam: 236530 -'Hot Wheels: Beat That!': +"Hot Wheels: Beat That!": pageId: 146769 templates: - - '{{Game data/config|Windows|{{p|hklm}}\SOFTWARE\Wow6432Node\Activision Value\Hot Wheels}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\Hot Wheels\}}' -'Hot Wheels: Stunt Track Challenge': + - "{{Game data/config|Windows|{{p|hklm}}\\SOFTWARE\\Wow6432Node\\Activision Value\\Hot Wheels}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\Hot Wheels\\}}" +"Hot Wheels: Stunt Track Challenge": pageId: 140260 templates: - - '{{Game data/saves|Windows|C:\Users\Public\Documents\HWSTC\PROFILES.SAV}}' -'Hot Wheels: Stunt Track Driver 2: Get''n Dirty': + - "{{Game data/saves|Windows|C:\\Users\\Public\\Documents\\HWSTC\\PROFILES.SAV}}" +"Hot Wheels: Stunt Track Driver 2: Get'n Dirty": pageId: 189506 -'Hot Wheels: Williams F1 - Team Racer': +"Hot Wheels: Williams F1 - Team Racer": pageId: 186033 templates: - - '{{Game data/config|Windows|{{p|game}}\config.ini|{{p|game}}\miscFile\CareerData\Options.sav}}' - - '{{Game data/saves|Windows|{{p|game}}\miscFile\CareerData}}' + - "{{Game data/config|Windows|{{p|game}}\\config.ini|{{p|game}}\\miscFile\\CareerData\\Options.sav}}" + - "{{Game data/saves|Windows|{{p|game}}\\miscFile\\CareerData}}" Hot Zone: pageId: 135261 steam: 799360 @@ -79632,21 +77469,21 @@ HotHead: HotLead: pageId: 45717 steam: 416170 -'HotPuzzle:Grils': +"HotPuzzle:Grils": pageId: 112748 steam: 938890 -'HotPuzzle:Video': +"HotPuzzle:Video": pageId: 125936 steam: 1013120 Hotaru: pageId: 156071 steam: 1204780 -'Hotaru no Nikki: The Firefly Diary': +"Hotaru no Nikki: The Firefly Diary": pageId: 32847 steam: 368640 templates: - - '{{Game data/config|Windows|{{p|game}}\settings.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\data\save\savedata.sav}}' + - "{{Game data/config|Windows|{{p|game}}\\settings.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\data\\save\\savedata.sav}}" Hotdog Man: pageId: 129991 steam: 1043510 @@ -79663,14 +77500,14 @@ Hotel Collectors Edition: pageId: 50368 steam: 288750 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\Saved Games\Cateia Games\Hotel\}}' + - "{{Game data/saves|Windows|{{p|userprofile}}\\Saved Games\\Cateia Games\\Hotel\\}}" Hotel Dash Suite Success: pageId: 41124 steam: 49000 Hotel Dracula: pageId: 80831 steam: 711770 -Hotel Ever After - Ella's Wish: +"Hotel Ever After - Ella's Wish": pageId: 141184 steam: 1014010 Hotel Giant: @@ -79685,10 +77522,10 @@ Hotel Magnate: gog: 1684889868 pageId: 94126 steam: 832360 -'Hotel Mogul: Las Vegas': +"Hotel Mogul: Las Vegas": pageId: 134928 steam: 1061850 -Hotel R'n'R: +"Hotel R'n'R": pageId: 126366 steam: 1011290 Hotel Remorse: @@ -79698,30 +77535,30 @@ Hotel Renovator: pageId: 157381 steam: 1214470 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Hotel_Renovator\Saved\Config\WindowsNoEditor}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Hotel_Renovator\Saved}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Hotel_Renovator\\Saved\\Config\\WindowsNoEditor}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Hotel_Renovator\\Saved}}" Hotel Sowls: pageId: 123521 steam: 968350 Hotel Spring: pageId: 89642 steam: 818990 -'Hotel Transylvania 3: Monsters Overboard': +"Hotel Transylvania 3: Monsters Overboard": pageId: 99093 steam: 757600 Hotel Transylvania Popstic: pageId: 103309 steam: 884370 -'Hotel Transylvania: Scary Tale Adventures': +"Hotel Transylvania: Scary Tale Adventures": pageId: 175445 steam: 1433500 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Drakhar Studio\Hotel Transylvania 4}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Drakhar Studio\\Hotel Transylvania 4}}" Hotel Tutwin: pageId: 132520 steam: 1049420 templates: - - '{{Game data/saves|Windows|{{P|game}}\*.sav}}' + - "{{Game data/saves|Windows|{{P|game}}\\*.sav}}" Hotlap Heroes: pageId: 130299 steam: 676960 @@ -79730,13 +77567,13 @@ Hotline Miami: pageId: 3827 steam: 219150 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\HotlineMiami\hotline.cfg}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Hotline Miami/hotline.cfg}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/HotlineMiami/hotline.cfg}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\HotlineMiami\SaveData.sav}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Hotline Miami/SaveData.sav}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/HotlineMiami/SaveData.sav}}' -'Hotline Miami 2: Wrong Number': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\HotlineMiami\\hotline.cfg}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Hotline Miami/hotline.cfg}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/HotlineMiami/hotline.cfg}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\HotlineMiami\\SaveData.sav}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Hotline Miami/SaveData.sav}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/HotlineMiami/SaveData.sav}}" +"Hotline Miami 2: Wrong Number": gog: 1424773427 gogSide: - 1424773562 @@ -79745,41 +77582,41 @@ Hotline Miami: pageId: 16711 steam: 274170 steamSide: - - 355890 - 341190 + - 355890 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\My Games\HotlineMiami2\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/HotlineMiami2/}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/HotlineMiami2/}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\My Games\HotlineMiami2\savedata.vfs}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/HotlineMiami2/savedata.vfs}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/HotlineMiami2/savedata.vfs}}' + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\My Games\\HotlineMiami2\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/HotlineMiami2/}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/HotlineMiami2/}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\My Games\\HotlineMiami2\\savedata.vfs}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/HotlineMiami2/savedata.vfs}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/HotlineMiami2/savedata.vfs}}" Hotshot Racing: pageId: 163232 steam: 609920 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Sumo Digital Ltd\{{P|uid}}\Summit\Config}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Sumo Digital Ltd\{{P|uid}}\Summit\Profiles}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Sumo Digital Ltd\\{{P|uid}}\\Summit\\Config}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Sumo Digital Ltd\\{{P|uid}}\\Summit\\Profiles}}" Houdini Redux: pageId: 136873 steam: 1086900 -Houdini's Castle: +"Houdini's Castle": pageId: 123440 steam: 972420 Hound: pageId: 54683 steam: 562800 templates: - - '{{Game data/config|Windows|{{P|steam}}\steamapps\common\HOUND\}}' - - '{{Game data/saves|Windows|{{P|steam}}\steamapps\common\HOUND\}}' -'Hounds: The Last Hope': + - "{{Game data/config|Windows|{{P|steam}}\\steamapps\\common\\HOUND\\}}" + - "{{Game data/saves|Windows|{{P|steam}}\\steamapps\\common\\HOUND\\}}" +"Hounds: The Last Hope": pageId: 44798 steam: 366160 Hour of Victory: pageId: 32489 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Hour of Victory\HOVGame\Config\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Hour of Victory\HOVGame\Config\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Hour of Victory\\HOVGame\\Config\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Hour of Victory\\HOVGame\\Config\\}}" Hour of the Snake: pageId: 134832 steam: 1052660 @@ -79788,16 +77625,16 @@ Hourglass: steam: 1212410 Hourglass of Summer: pageId: 164703 -'House Dating VR: Cute Korean Girl, Sehyun': +"House Dating VR: Cute Korean Girl, Sehyun": pageId: 73849 steam: 696470 House Flipper: gog: 1140907376 gogSide: + - 1612076301 - 1689378242 - 1833342145 - 2127424889 - - 1612076301 pageId: 59862 steam: 613100 steamSide: @@ -79809,11 +77646,9 @@ House Flipper: - 1569190 - 1832960 templates: - - '{{Game data/config|Windows|{{p|HKCU}}\Software\Empyrean\House Flipper Game}}' - - >- - {{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\Empyrean\House Flipper - Game\Profiles|{{p|userprofile\appdata\locallow}}\Empyrean\House Flipper Game\Profiles.backup}} - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Empyrean/House Flipper Game/Saves}}' + - "{{Game data/config|Windows|{{p|HKCU}}\\Software\\Empyrean\\House Flipper Game}}" + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\Empyrean\\House Flipper Game\\Profiles|{{p|userprofile\\appdata\\locallow}}\\Empyrean\\House Flipper Game\\Profiles.backup}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Empyrean/House Flipper Game/Saves}}" House Flipper 2: pageId: 191300 steam: 1190970 @@ -79824,12 +77659,12 @@ House Flipper VR: pageId: 172223 steam: 1194700 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\SOFTWARE\Frozen District\HouseFlipper VR\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Frozen District\HouseFlipper VR\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\Frozen District\\HouseFlipper VR\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Frozen District\\HouseFlipper VR\\}}" House Guest: pageId: 178934 templates: - - '{{Game data/saves|Windows|{{p|hkcu}}\Software\HFTGames\HouseGuest\}}' + - "{{Game data/saves|Windows|{{p|hkcu}}\\Software\\HFTGames\\HouseGuest\\}}" House Number 666: pageId: 148763 steam: 1162690 @@ -79844,22 +77679,22 @@ House Party: pageId: 64228 steam: 611790 templates: - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\Eek\House Party\Saves}}' -'House of 1000 Doors: Evil Inside': + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\Eek\\House Party\\Saves}}" +"House of 1000 Doors: Evil Inside": pageId: 129631 steam: 1038620 -'House of 1000 Doors: Family Secrets': +"House of 1000 Doors: Family Secrets": pageId: 37493 steam: 286500 -'House of 1000 Doors: Serpent Flame': +"House of 1000 Doors: Serpent Flame": pageId: 138814 steam: 1090390 -'House of 1000 Doors: The Palm of Zoroaster': +"House of 1000 Doors: The Palm of Zoroaster": pageId: 37612 steam: 1175160 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Roaming\AlawarEntertainment\Houseof1000Doors_ThePalmOfZoroasterCE}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Roaming\AlawarEntertainment\Houseof1000Doors_ThePalmOfZoroasterCE}}' + - "{{Game data/config|Windows|{{p|appdata}}\\Roaming\\AlawarEntertainment\\Houseof1000Doors_ThePalmOfZoroasterCE}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Roaming\\AlawarEntertainment\\Houseof1000Doors_ThePalmOfZoroasterCE}}" House of Alice: pageId: 42432 steam: 500920 @@ -79867,14 +77702,14 @@ House of Ashes: pageId: 164855 steam: 1281590 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\HouseOfAshes\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\HouseOfAshes\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\HouseOfAshes\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\HouseOfAshes\\Saved\\SaveGames\\}}" House of Caravan: pageId: 48210 steam: 353550 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\SOFTWARE\Rosebud Games\House of Caravan\}}' - - '{{Game data/saves|Windows|{{P|hkcu}}\SOFTWARE\Rosebud Games\House of Caravan\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\SOFTWARE\\Rosebud Games\\House of Caravan\\}}" + - "{{Game data/saves|Windows|{{P|hkcu}}\\SOFTWARE\\Rosebud Games\\House of Caravan\\}}" House of Detention: pageId: 164354 steam: 1293230 @@ -79900,20 +77735,20 @@ House of Velez Part 1: pageId: 72973 steam: 724010 templates: - - '{{Game data/saves|Windows|{{p|localappdata}}\HouseofVelez_Pt1\User Data\Default}}' + - "{{Game data/saves|Windows|{{p|localappdata}}\\HouseofVelez_Pt1\\User Data\\Default}}" House of the Dying Sun: pageId: 33414 steam: 283160 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\MarauderInteractiveLLC\HouseOfTheDyingSun\}}' - - '{{Game data/saves|Windows|{{p|hkcu}}\Software\MarauderInteractiveLLC\HouseOfTheDyingSun\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\MarauderInteractiveLLC\\HouseOfTheDyingSun\\}}" + - "{{Game data/saves|Windows|{{p|hkcu}}\\Software\\MarauderInteractiveLLC\\HouseOfTheDyingSun\\}}" Housekeeping VR: pageId: 57989 steam: 556520 -'Houston, We Have Spinach!': +"Houston, We Have Spinach!": pageId: 75620 steam: 734870 -'Houston, We Have a Problem': +"Houston, We Have a Problem": pageId: 60641 steam: 360610 Hoven the Sages Spinel: @@ -79925,9 +77760,9 @@ Hover (2017): pageId: 38071 steam: 280180 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\FustyGame\Hover\}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\My Games\Hover\}}' - - '{{Game data/saves|Steam|{{P|steam}}\userdata\{{P|uid}}\280180\remote\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\FustyGame\\Hover\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\My Games\\Hover\\}}" + - "{{Game data/saves|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\280180\\remote\\}}" Hover 2030: pageId: 33796 steam: 488580 @@ -79935,16 +77770,16 @@ Hover Ace: gog: 2019474143 pageId: 134624 renamedFrom: - - 'Hover Ace: Combat Racing Zone' + - "Hover Ace: Combat Racing Zone" templates: - - '{{Game data/config|Windows|{{p|game}}\base\}}' + - "{{Game data/config|Windows|{{p|game}}\\base\\}}" Hover Attack: pageId: 170825 steam: 1392150 Hover Bots VR: pageId: 65415 steam: 672670 -'Hover Cubes: Arena': +"Hover Cubes: Arena": pageId: 43243 steam: 396700 Hover Havoc: @@ -79971,7 +77806,7 @@ Hover X Souls: Hover!: pageId: 7123 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Microsoft\Hover!\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Microsoft\\Hover!\\}}" Hoverboards VR: pageId: 52243 steam: 541420 @@ -80020,10 +77855,10 @@ How We Got Here: How do you Do It?: pageId: 38563 steam: 353360 -'How do you like it, Elon Musk?': +"How do you like it, Elon Musk?": pageId: 126344 steam: 890520 -'How to Become a Ninja: Part 1': +"How to Become a Ninja: Part 1": pageId: 153234 steam: 1185390 How to Build a Magnificent Kingdom: @@ -80033,9 +77868,7 @@ How to Cope with Boredom and Loneliness: pageId: 89494 steam: 797390 templates: - - >- - {{Game data/config|Windows|{{p|USERPROFILE}}\AppData\LocalLow\PointBleepStudios\Point Bleep - TV\HTC\Settings\Settings.txt|{{p|hkcu}}\Software\PointBleepStudios\Point Bleep TV\}} + - "{{Game data/config|Windows|{{p|USERPROFILE}}\\AppData\\LocalLow\\PointBleepStudios\\Point Bleep TV\\HTC\\Settings\\Settings.txt|{{p|hkcu}}\\Software\\PointBleepStudios\\Point Bleep TV\\}}" How to Fool a Liar King: pageId: 72952 steam: 635790 @@ -80049,7 +77882,7 @@ How to Raise a Wolf Girl: pageId: 148983 steam: 1106940 templates: - - '{{Game data/config|Windows|{{P|appdata}}\SWEET&TEA\kemomusu|{{P|Steam}}\userdata\{{P|uid}}\1106940\remote}}' + - "{{Game data/config|Windows|{{P|appdata}}\\SWEET&TEA\\kemomusu|{{P|Steam}}\\userdata\\{{P|uid}}\\1106940\\remote}}" How to Shoot a Criminal: pageId: 52952 steam: 518130 @@ -80060,15 +77893,15 @@ How to Survive: pageId: 11312 steam: 250400 templates: - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/250400/remote/}}' + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/250400/remote/}}" How to Survive 2: pageId: 38807 steam: 360170 -'How to Survive: Third Person Standalone': +"How to Survive: Third Person Standalone": pageId: 47405 steam: 360150 templates: - - '{{Game data/saves|Windows|{{p|steam}}/userdata/{{p|uid}}/360150/remote/}}' + - "{{Game data/saves|Windows|{{p|steam}}/userdata/{{p|uid}}/360150/remote/}}" How to Take Off Your Mask: pageId: 47309 steam: 365350 @@ -80084,27 +77917,27 @@ Howdy! The Western Game: Howl: pageId: 39506 steam: 513640 -'Howlville: The Dark Past': +"Howlville: The Dark Past": pageId: 93110 steam: 828950 templates: - - '{{Game data/config|Windows|{{P|userprofile}}\AppData\LocalLow\N-Tri Studio\Howlville: The Dark Past\}}' - - '{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/N-Tri Studio/Howlville: The Dark Past\}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\N-Tri Studio\Howlville: The Dark Past\}}' - - '{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/N-Tri Studio/Howlville: The Dark Past\}}' + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\N-Tri Studio\\Howlville: The Dark Past\\}}" + - "{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/N-Tri Studio/Howlville: The Dark Past\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\N-Tri Studio\\Howlville: The Dark Past\\}}" + - "{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/N-Tri Studio/Howlville: The Dark Past\\}}" Hoyeonjigi: pageId: 120798 steam: 952920 Hoyle Battling Ships and War: pageId: 16400 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/saves|Windows|{{p|game}}\user*}}' + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\user*}}" Hoyle Bridge: pageId: 147361 Hoyle Casino (2000): pageId: 181521 -Hoyle Children's Collection: +"Hoyle Children's Collection": pageId: 147363 Hoyle Classic Card Games: pageId: 147349 @@ -80118,11 +77951,11 @@ Hoyle Official Casino Games: steam: 532950 Hoyle Solitaire: pageId: 147353 -'Hoyle''s Official Book of Games: Volume 1': +"Hoyle's Official Book of Games: Volume 1": pageId: 147327 -'Hoyle''s Official Book of Games: Volume 2': +"Hoyle's Official Book of Games: Volume 2": pageId: 147330 -'Hoyle''s Official Book of Games: Volume 3': +"Hoyle's Official Book of Games: Volume 3": pageId: 147334 Hrot: gog: 1809782847 @@ -80135,12 +77968,12 @@ Hrot: steamSide: - 973020 templates: - - '{{Game data/config|Windows|{{p|appdata}}\HROT}}' - - '{{Game data/saves|Windows|{{p|appdata}}\HROT}}' -'Hube: Seeker of Achievements': + - "{{Game data/config|Windows|{{p|appdata}}\\HROT}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\HROT}}" +"Hube: Seeker of Achievements": pageId: 93761 steam: 857010 -'Hubert''s Island Adventure: Mouse o'' War': +"Hubert's Island Adventure: Mouse o' War": pageId: 44700 steam: 431610 Huckleberry Falls: @@ -80152,11 +77985,11 @@ Hue: steamSide: - 517450 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Fiddlesticks\Hue}}' - - '{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/Fiddlesticks/Hue/prefs}}' - - '{{Game data/saves|Windows|{{p|hkcu}}\Software\Fiddlesticks\Hue}}' - - '{{Game data/saves|Steam|{{P|steam}}\userdata\{{P|uid}}\383270\remote\cloudsave.bin}}' - - '{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/Fiddlesticks/Hue/prefs}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Fiddlesticks\\Hue}}" + - "{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/Fiddlesticks/Hue/prefs}}" + - "{{Game data/saves|Windows|{{p|hkcu}}\\Software\\Fiddlesticks\\Hue}}" + - "{{Game data/saves|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\383270\\remote\\cloudsave.bin}}" + - "{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/Fiddlesticks/Hue/prefs}}" Hue Defense: pageId: 91230 steam: 512070 @@ -80185,22 +78018,22 @@ Hugo: pageId: 20412 Hugo Classic Collection 1-4: pageId: 20421 -'Hugo II: Whodunit?': +"Hugo II: Whodunit?": gog: 1207665313 pageId: 23244 -'Hugo III: Jungle of Doom!': +"Hugo III: Jungle of Doom!": gog: 1207665313 pageId: 23245 Hugo Retro Mania: pageId: 20417 -Hugo's House of Horrors: +"Hugo's House of Horrors": gog: 1207665313 pageId: 23242 -'Hugo: Bukkazoom!': +"Hugo: Bukkazoom!": pageId: 175989 templates: - - '{{Game data/config|Windows|{{p|game}}}}' -'Hugo: The Forces of Nature': + - "{{Game data/config|Windows|{{p|game}}}}" +"Hugo: The Forces of Nature": pageId: 20413 Hulala Baby: pageId: 127948 @@ -80216,7 +78049,7 @@ Hum Drum Experiences: Human Apocalypse - Reverse Horror Zombie Indie RPG Adventure: pageId: 184400 steam: 1661900 -'Human Apocalypse: Prologue': +"Human Apocalypse: Prologue": pageId: 184412 steam: 1825650 Human Delusion: @@ -80228,7 +78061,7 @@ Human Extinction Simulator: Human Factory: pageId: 151387 steam: 1160040 -'Human Pinball : Iceage': +"Human Pinball : Iceage": pageId: 130165 steam: 1044300 Human Resource Machine: @@ -80236,12 +78069,12 @@ Human Resource Machine: pageId: 29132 steam: 375820 templates: - - '{{Game data/config|Windows|{{P|appdata}}\Human Resource Machine\settings.txt}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library\Application Support\Human Resource Machine\settings.txt}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}\Tomorrow Corporation\Human Resource Machine\settings.txt}}' - - '{{Game data/saves|Windows|{{P|appdata}}\Human Resource Machine\profiles.bin}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library\Application Support\Human Resource Machine\profiles.bin}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}\Tomorrow Corporation\Human Resource Machine\profiles.bin}}' + - "{{Game data/config|Windows|{{P|appdata}}\\Human Resource Machine\\settings.txt}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library\\Application Support\\Human Resource Machine\\settings.txt}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}\\Tomorrow Corporation\\Human Resource Machine\\settings.txt}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\Human Resource Machine\\profiles.bin}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library\\Application Support\\Human Resource Machine\\profiles.bin}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}\\Tomorrow Corporation\\Human Resource Machine\\profiles.bin}}" Human Rights: pageId: 130402 steam: 1042570 @@ -80254,39 +78087,35 @@ Human Sacrifice: Human Simulator: pageId: 155606 steam: 1175060 -'Human, We Have a Problem': +"Human, We Have a Problem": pageId: 42577 steam: 491100 Human-powered Spacecraft: pageId: 92921 steam: 699180 -'Human: Fall Flat': +"Human: Fall Flat": gog: 1203767418 pageId: 37810 steam: 477160 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\NoBrakesGames\Human\}}' - - >- - {{Game data/config|Microsoft - Store|{{p|localappdata}}\Packages\CurveDigital.HumanFallFlat_1ezqdnbhnc70m\SystemAppData\wgs}} - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/NoBrakesGames/Human/prefs/}}' - - '{{Game data/saves|Windows|{{p|hkcu}}\Software\NoBrakesGames\Human\}}' - - >- - {{Game data/saves|Microsoft - Store|{{p|localappdata}}\Packages\CurveDigital.HumanFallFlat_1ezqdnbhnc70m\SystemAppData\wgs}} -'Human: Fall Flat 2': + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\NoBrakesGames\\Human\\}}" + - "{{Game data/config|Microsoft Store|{{p|localappdata}}\\Packages\\CurveDigital.HumanFallFlat_1ezqdnbhnc70m\\SystemAppData\\wgs}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/NoBrakesGames/Human/prefs/}}" + - "{{Game data/saves|Windows|{{p|hkcu}}\\Software\\NoBrakesGames\\Human\\}}" + - "{{Game data/saves|Microsoft Store|{{p|localappdata}}\\Packages\\CurveDigital.HumanFallFlat_1ezqdnbhnc70m\\SystemAppData\\wgs}}" +"Human: Fall Flat 2": pageId: 187812 steam: 1388550 -'HumanKind: The Awakening': +"HumanKind: The Awakening": pageId: 68913 steam: 687280 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\DarkPolygon\HumanKind\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\DarkPolygon\\HumanKind\\}}" Humanity: pageId: 185642 steam: 1581480 templates: - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\tha ltd\HUMANITY\{{p|uid}}}}' + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\tha ltd\\HUMANITY\\{{p|uid}}}}" Humanity Asset: pageId: 50642 steam: 271640 @@ -80306,22 +78135,21 @@ Humankind: - 1633651 - 1704220 - 1819400 - - 1838710 - 1819410 - 1833990 - 1838710 - 2320210 - 2320211 templates: - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\Humankind\Save Files}}' + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\Humankind\\Save Files}}" Humans 101: pageId: 144168 steam: 1080310 -'Humans 2: The Jurassic Levels': +"Humans 2: The Jurassic Levels": gog: 1391062119 pageId: 106093 steam: 719320 -'Humans III: Evolution - Lost in Time': +"Humans III: Evolution - Lost in Time": gog: 1275264927 pageId: 106101 steam: 719320 @@ -80330,10 +78158,10 @@ Humans Must Answer: pageId: 31894 steam: 261740 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\Humans Must Answer\Data\Settings.txt}}' - - '{{Game data/config|Steam|{{P|userprofile\Documents}}\Humans Must Answer Steam\Data\Settings.txt}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\Humans Must Answer\Data\Save.txt}}' - - '{{Game data/saves|Steam|{{P|userprofile\Documents}}\Humans Must Answer Steam\Data\Save.txt}}' + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\Humans Must Answer\\Data\\Settings.txt}}" + - "{{Game data/config|Steam|{{P|userprofile\\Documents}}\\Humans Must Answer Steam\\Data\\Settings.txt}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\Humans Must Answer\\Data\\Save.txt}}" + - "{{Game data/saves|Steam|{{P|userprofile\\Documents}}\\Humans Must Answer Steam\\Data\\Save.txt}}" Humans VR: pageId: 77090 steam: 731690 @@ -80352,11 +78180,11 @@ Hummingz - Retro Arcade Action Revised: Humvee Assault: pageId: 68568 templates: - - '{{Game data/config|Windows|{{P|game}}\data\options_custom.dat}}' + - "{{Game data/config|Windows|{{P|game}}\\data\\options_custom.dat}}" Hunahpu Quest. Mechanoid: pageId: 79308 steam: 773010 -'Hunahpu: Way of the Warrior': +"Hunahpu: Way of the Warrior": pageId: 60902 steam: 595480 Hundred Days - Winemaking Simulator: @@ -80366,12 +78194,8 @@ Hundred Days - Winemaking Simulator: - Hundred Days steam: 1042380 templates: - - >- - {{Game data/config|Windows|{{P|userprofile\appdata\locallow}}\Broken Arms Games Srls\Hundred Days - Winemaking - Simulator\Settings\settings.json|{{P|hkcu}}\SOFTWARE\Broken Arms Games Srls\Hundred Days - Winemaking Simulator\}} - - >- - {{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Broken Arms Games Srls\Hundred Days - Winemaking - Simulator\Saves\}} + - "{{Game data/config|Windows|{{P|userprofile\\appdata\\locallow}}\\Broken Arms Games Srls\\Hundred Days - Winemaking Simulator\\Settings\\settings.json|{{P|hkcu}}\\SOFTWARE\\Broken Arms Games Srls\\Hundred Days - Winemaking Simulator\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Broken Arms Games Srls\\Hundred Days - Winemaking Simulator\\Saves\\}}" Hunger: pageId: 63952 steam: 581740 @@ -80407,29 +78231,29 @@ HunieCam Studio: pageId: 32008 steam: 426000 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\HuniePot\HunieCam Studio\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\HuniePot\HunieCam Studio\}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/HuniePot/HunieCam Studio/}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\HuniePot\\HunieCam Studio\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\HuniePot\\HunieCam Studio\\}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/HuniePot/HunieCam Studio/}}" HuniePop: gog: 1443428641 pageId: 25715 steam: 339800 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\HuniePot\HuniePop\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Preferences/unity.HuniePot.HuniePop.plist}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/HuniePot/HuniePop/prefs}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\HuniePot\HuniePop\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Caches/unity.HuniePot.HuniePop/}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/HuniePot/HuniePop/*.game}}' -'HuniePop 2: Double Date': + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\HuniePot\\HuniePop\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Preferences/unity.HuniePot.HuniePop.plist}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/HuniePot/HuniePop/prefs}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\HuniePot\\HuniePop\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Caches/unity.HuniePot.HuniePop/}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/HuniePot/HuniePop/*.game}}" +"HuniePop 2: Double Date": gog: 1455877361 pageId: 166086 steam: 930210 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\HuniePot\HuniePop 2 - Double Date\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\HuniePot\HuniePop 2 - Double Date\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/com.HuniePot.HuniePop2-DoubleDate/}}' -Hunt 'n Sneak: + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\HuniePot\\HuniePop 2 - Double Date\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\HuniePot\\HuniePop 2 - Double Date\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/com.HuniePot.HuniePop2-DoubleDate/}}" +"Hunt 'n Sneak": pageId: 122692 steam: 689610 Hunt Down the Freeman: @@ -80438,8 +78262,8 @@ Hunt Down the Freeman: - Hunt Down The Freeman steam: 723390 templates: - - '{{Game data/config|Windows|{{p|game}}/hdtf/cfg/}}' - - '{{Game data/saves|Windows|{{p|game}}/hdtf/SAVE/}}' + - "{{Game data/config|Windows|{{p|game}}/hdtf/cfg/}}" + - "{{Game data/saves|Windows|{{p|game}}/hdtf/SAVE/}}" Hunt For Gods: pageId: 69417 steam: 576940 @@ -80450,63 +78274,63 @@ Hunt and Snare: pageId: 146054 steam: 944330 templates: - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\Ruffleneck\Hunt and Snare\}}' + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\Ruffleneck\\Hunt and Snare\\}}" Hunt for Junk: pageId: 180373 steam: 1973040 Hunt the Thailand Hidden: pageId: 138764 steam: 1092270 -'Hunt: Showdown': +"Hunt: Showdown": pageId: 73965 steam: 594650 steamSide: - - 1180491 - - 1180490 - - 1255001 - - 1397381 - - 1397380 - - 1166472 - - 1166470 - - 1304601 - - 1225140 + - 770720 - 1143840 + - 1166470 - 1166471 + - 1166472 + - 1180490 + - 1180491 - 1191490 + - 1225140 - 1228530 - 1234950 - 1255000 + - 1255001 - 1304600 + - 1304601 - 1374340 - - 770720 + - 1397380 + - 1397381 templates: - - '{{Game data/config|Windows|{{p|game}}\user\profiles\default>}}' -'Hunt: The Unknown Quarry': + - "{{Game data/config|Windows|{{p|game}}\\user\\profiles\\default>}}" +"Hunt: The Unknown Quarry": pageId: 57085 steam: 528450 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Quicksilver\Hunt\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Quicksilver\\Hunt\\}}" Huntdown: gog: 2094700167 pageId: 63510 steam: 598550 templates: - - '{{Game data/config|Windows|{{P|userprofile}}\AppData\LocalLow\Coffee Stain Publishing\Huntdown\}}' - - '{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/Coffee Stain Publishing/Huntdown/}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Coffee Stain Publishing\Huntdown}}' - - '{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/Coffee Stain Publishing/Huntdown/}}' + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Coffee Stain Publishing\\Huntdown\\}}" + - "{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/Coffee Stain Publishing/Huntdown/}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Coffee Stain Publishing\\Huntdown}}" + - "{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/Coffee Stain Publishing/Huntdown/}}" Hunted Gods: pageId: 126065 steam: 663970 -'Hunted: One Step Too Far': +"Hunted: One Step Too Far": pageId: 37004 steam: 521450 -'Hunted: The Demon''s Forge': +"Hunted: The Demon's Forge": pageId: 26319 steam: 22450 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\My Games\Hunted\DFGame\Config\}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\My Games\Hunted\DFgame\SaveData\}}' + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\My Games\\Hunted\\DFGame\\Config\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\My Games\\Hunted\\DFgame\\SaveData\\}}" Hunter: pageId: 123347 steam: 985530 @@ -80522,16 +78346,16 @@ Hunter Story: Hunter of Antiques: pageId: 76281 steam: 745060 -'Hunter''s Arena: Legends': +"Hunter's Arena: Legends": pageId: 145191 steam: 1061100 -Hunter's Legacy: +"Hunter's Legacy": pageId: 42255 steam: 479110 -Hunter's Soul: +"Hunter's Soul": pageId: 150884 steam: 1158230 -'Hunter''s Trial: The fight never ends': +"Hunter's Trial: The fight never ends": pageId: 123766 steam: 945850 Hunters Life: @@ -80562,8 +78386,8 @@ Hunting Unlimited 2010: pageId: 28621 steam: 12690 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\Hunting Unlimited 2010\config.cfg}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\Hunting Unlimited 2010\saves\}}' + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\Hunting Unlimited 2010\\config.cfg}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\Hunting Unlimited 2010\\saves\\}}" Hunting Unlimited 2011: pageId: 52167 steam: 545930 @@ -80582,7 +78406,7 @@ Hunting in Ancient Asia: Hunting on Myths: pageId: 95101 steam: 801080 -'Huntsman: The Orphanage': +"Huntsman: The Orphanage": pageId: 10225 steam: 246740 Hurl VR: @@ -80601,14 +78425,14 @@ Hurtworld: pageId: 30055 steam: 393420 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Bankroll Studios\Hurtworld}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Bankroll Studios\\Hurtworld}}" Hush: pageId: 47085 steam: 379990 Hush Hush - Unlimited Survival Horror: pageId: 43975 steam: 449500 -'Hush: In Search Of Dominic Ward': +"Hush: In Search Of Dominic Ward": pageId: 132871 steam: 947560 Husk: @@ -80618,7 +78442,7 @@ Hustle Cat: pageId: 37191 steam: 453340 templates: - - '{{Game data/saves|Windows|{{p|APPDATA}}\com.datenighto.game.hustlecat\}}' + - "{{Game data/saves|Windows|{{p|APPDATA}}\\com.datenighto.game.hustlecat\\}}" Huts: pageId: 155388 steam: 1135140 @@ -80641,21 +78465,21 @@ Hybrid Wars: gog: 1452686225 gogSide: - 1255274701 + - 1497274354 - 1518019165 - 1875040144 - - 1497274354 - 1898713863 pageId: 36355 steam: 411540 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\Extreme Developers\Hybrid Wars\Saves\}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Extreme Developers\\Hybrid Wars\\Saves\\}}" Hydlide 1•2•3: pageId: 171269 Hydorah: pageId: 126962 templates: - - '{{Game data/config|Windows|{{P|game}}\Hydorah\key_config.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\Hydorah\savegame}}' + - "{{Game data/config|Windows|{{P|game}}\\Hydorah\\key_config.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\Hydorah\\savegame}}" Hydra Slayer: pageId: 43995 steam: 432380 @@ -80667,12 +78491,8 @@ Hydro Thunder: Hydro Thunder Hurricane: pageId: 138413 templates: - - >- - {{Game data/config|Microsoft - Store|{{P|localappdata}}\Packages\Microsoft.Studios.HydroThunderHurricane_8wekyb3d8bbwe\LocalState}} - - >- - {{Game data/saves|Microsoft - Store|{{P|localappdata}}\Packages\Microsoft.Studios.HydroThunderHurricane_8wekyb3d8bbwe\LocalState}} + - "{{Game data/config|Microsoft Store|{{P|localappdata}}\\Packages\\Microsoft.Studios.HydroThunderHurricane_8wekyb3d8bbwe\\LocalState}}" + - "{{Game data/saves|Microsoft Store|{{P|localappdata}}\\Packages\\Microsoft.Studios.HydroThunderHurricane_8wekyb3d8bbwe\\LocalState}}" Hydroactive: pageId: 76937 steam: 741930 @@ -80680,20 +78500,18 @@ Hydroneer: pageId: 150988 steam: 1106840 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Mining\Saved\Config\WindowsNoEditor}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\Mining\Saved\SaveGames}}' -'Hydrophobia: Prophecy': + - "{{Game data/config|Windows|{{P|localappdata}}\\Mining\\Saved\\Config\\WindowsNoEditor}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Mining\\Saved\\SaveGames}}" +"Hydrophobia: Prophecy": pageId: 11926 steam: 92000 templates: - - >- - {{Game - data/config|Windows|{{p|steam}}\userdata\{{p|uid}}\92000\remote\|{{p|hkcu}}\Software\DarkEnergy\Hydrophobia|{{P|game}}\ded.ini}} - - '{{Game data/saves|Windows|{{p|steam}}\userdata\{{p|uid}}\92000\remote\}}' -'Hyena: Dogs of War': + - "{{Game data/config|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\92000\\remote\\|{{p|hkcu}}\\Software\\DarkEnergy\\Hydrophobia|{{P|game}}\\ded.ini}}" + - "{{Game data/saves|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\92000\\remote\\}}" +"Hyena: Dogs of War": pageId: 155604 steam: 1068830 -'Hykee - Episode 1: Underwater': +"Hykee - Episode 1: Underwater": pageId: 90314 steam: 823670 Hylics: @@ -80705,11 +78523,11 @@ Hylics 2: Hypatia: pageId: 63173 steam: 401970 -'Hype: The Time Quest': +"Hype: The Time Quest": pageId: 1680 templates: - - '{{Game data/config|Windows|{{p|windir}}\UbiSoft\ubi.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\Gamedata\SaveGame}}' + - "{{Game data/config|Windows|{{p|windir}}\\UbiSoft\\ubi.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\Gamedata\\SaveGame}}" Hyper Arena VR: pageId: 81735 steam: 780400 @@ -80736,8 +78554,8 @@ Hyper Fighters: pageId: 25758 steam: 267960 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\HyperFighters\Config.cfg}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\HyperFighters\Luadata.lua}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\HyperFighters\\Config.cfg}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\HyperFighters\\Luadata.lua}}" Hyper Flight: pageId: 134681 steam: 1039430 @@ -80753,7 +78571,7 @@ Hyper Jam: Hyper Knights: pageId: 58236 steam: 597150 -'Hyper Knights: Battles': +"Hyper Knights: Battles": pageId: 76586 steam: 747310 Hyper Light Drifter: @@ -80761,25 +78579,25 @@ Hyper Light Drifter: pageId: 23034 steam: 257850 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\HyperLightDrifter\GamePrefs.dat}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/com.HeartMachine.HyperLightDrifter}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/HyperLightDrifter}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\HyperLightDrifter\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/com.HeartMachine.HyperLightDrifter}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/HyperLightDrifter}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\HyperLightDrifter\\GamePrefs.dat}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/com.HeartMachine.HyperLightDrifter}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/HyperLightDrifter}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\HyperLightDrifter\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/com.HeartMachine.HyperLightDrifter}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/HyperLightDrifter}}" Hyper Mum Ft Adult Gaming: pageId: 145943 steam: 1033910 Hyper Princess Pitch: pageId: 164719 templates: - - '{{Game data/config|Windows|{{p|game}}\pitchsave.sav}}' + - "{{Game data/config|Windows|{{p|game}}\\pitchsave.sav}}" Hyper Rails: pageId: 14799 Hyper Scape: pageId: 161541 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\My Games\Hyperscape\{{p|uid}}\GameSettings.ini}}' + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\My Games\\Hyperscape\\{{p|uid}}\\GameSettings.ini}}" Hyper Scuffle: pageId: 125137 steam: 997260 @@ -80822,9 +78640,7 @@ HyperDot: pageId: 139468 steam: 876500 templates: - - >- - {{Game data/saves|Microsoft - Store|{{P|localappdata}}\Packages\GLITCHCREATIVE.97111304EFEB_x0vgmsp546ak2\SystemAppData\wgs\{{P|uid}}}} + - "{{Game data/saves|Microsoft Store|{{P|localappdata}}\\Packages\\GLITCHCREATIVE.97111304EFEB_x0vgmsp546ak2\\SystemAppData\\wgs\\{{P|uid}}}}" HyperFighter Boost Mode ON: pageId: 93233 steam: 835740 @@ -80832,15 +78648,15 @@ HyperParasite: gog: 1599156643 pageId: 94429 steam: 838110 -'HyperQ: The 4Dimensional Roguelike': +"HyperQ: The 4Dimensional Roguelike": pageId: 135259 steam: 1045730 HyperRogue: pageId: 37858 steam: 342610 templates: - - '{{Game data/config|Linux|{{p|linuxhome}}/hyperrogue.ini}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/hyperrogue.log}}' + - "{{Game data/config|Linux|{{p|linuxhome}}/hyperrogue.ini}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/hyperrogue.log}}" HyperZen Training: pageId: 99784 steam: 884160 @@ -80854,49 +78670,45 @@ Hyperbolica: pageId: 175976 steam: 1256230 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\CodeParade\Hyperbolica\}}' - - '{{Game data/config|Linux|{{p|xdgconfighome}}/unity3d/CodeParade/Hyperbolica/perfs}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\CodeParade\Hyperbolica}}' - - '{{Game data/saves|Linux|{{p|xdgconfighome}}/unity3d/CodeParade/Hyperbolica/}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\CodeParade\\Hyperbolica\\}}" + - "{{Game data/config|Linux|{{p|xdgconfighome}}/unity3d/CodeParade/Hyperbolica/perfs}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\CodeParade\\Hyperbolica}}" + - "{{Game data/saves|Linux|{{p|xdgconfighome}}/unity3d/CodeParade/Hyperbolica/}}" Hyperborea: pageId: 136416 steam: 983070 Hyperborean Charter: pageId: 123820 steam: 987990 -'Hypercharge: Unboxed': +"Hypercharge: Unboxed": pageId: 63950 steam: 523660 templates: - - '{{Game data/config|Windows|{{P|game}}\Unboxed\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{P|game}}\Unboxed\Saved\}}' -'Hyperdevotion Noire: Goddess Black Heart': + - "{{Game data/config|Windows|{{P|game}}\\Unboxed\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{P|game}}\\Unboxed\\Saved\\}}" +"Hyperdevotion Noire: Goddess Black Heart": pageId: 32092 steam: 415480 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Idea Factory\Hyperdevotion Noire GBH\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Idea Factory\Hyperdevotion Noire GBH\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Idea Factory\\Hyperdevotion Noire GBH\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Idea Factory\\Hyperdevotion Noire GBH\\}}" Hyperdimension Neptunia Re;Birth 1: gog: 1445338941 pageId: 22448 steam: 282900 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Idea Factory International, Inc\Hyperdimension - Neptunia Re;Birth1\Neptune.ini}} - - >- - {{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Idea Factory International, Inc\Hyperdimension - Neptunia Re;Birth1\}} -'Hyperdimension Neptunia Re;Birth 2: Sisters Generation': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Idea Factory International, Inc\\Hyperdimension Neptunia Re;Birth1\\Neptune.ini}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Idea Factory International, Inc\\Hyperdimension Neptunia Re;Birth1\\}}" +"Hyperdimension Neptunia Re;Birth 2: Sisters Generation": gog: 1863533702 pageId: 23033 steam: 351710 templates: - - '{{Game data/config|Windows|{{p|game}}\Neptune2.ini}}' - - '{{Game data/config|Steam|{{p|steam}}\userdata\{{p|uid}}\351710\}}' - - '{{Game data/saves|Windows|{{p|game}}\}}' - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\351710\remote\}}' -'Hyperdimension Neptunia Re;Birth 3: V Generation': + - "{{Game data/config|Windows|{{p|game}}\\Neptune2.ini}}" + - "{{Game data/config|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\351710\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\351710\\remote\\}}" +"Hyperdimension Neptunia Re;Birth 3: V Generation": gog: 1908407113 gogSide: - 1816350713 @@ -80905,14 +78717,14 @@ Hyperdimension Neptunia Re;Birth 1: steamSide: - 389150 templates: - - '{{Game data/config|Steam|{{p|steam}}\userdata\{{p|uid}}\353270\remote\neptune3.ini}}' - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\353270\remote\}}' -'Hyperdimension Neptunia U: Action Unleashed': + - "{{Game data/config|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\353270\\remote\\neptune3.ini}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\353270\\remote\\}}" +"Hyperdimension Neptunia U: Action Unleashed": gog: 1524416998 pageId: 31829 steam: 387340 templates: - - '{{Game data/saves|Windows|{{p|game}}\savedata\}}' + - "{{Game data/saves|Windows|{{p|game}}\\savedata\\}}" Hyperdrive Massacre: pageId: 46102 steam: 402390 @@ -80949,7 +78761,7 @@ Hyperspace Delivery Service: Hyperspace Dogfights: pageId: 93134 steam: 842170 -'Hyperspace Invaders II: Pixel Edition': +"Hyperspace Invaders II: Pixel Edition": pageId: 46544 steam: 397690 Hyperspace Pinball: @@ -80971,7 +78783,7 @@ Hypertrain: Hyperun: pageId: 56689 steam: 565390 -'Hyperventila: The Game': +"Hyperventila: The Game": pageId: 150639 steam: 1153570 Hyperviolent: @@ -80981,8 +78793,8 @@ Hyperviolent: steamSide: - 1767510 templates: - - '{{Game data/config|Windows|{{P|appdata}}\HV_0_00_012\Settings.ini}}' - - '{{Game data/saves|Windows|{{P|appdata}}\HV_0_00_012}}' + - "{{Game data/config|Windows|{{P|appdata}}\\HV_0_00_012\\Settings.ini}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\HV_0_00_012}}" Hyphen: pageId: 48715 steam: 346510 @@ -81002,10 +78814,10 @@ Hypnospace Outlaw: pageId: 93333 steam: 844590 templates: - - '{{Game data/config|Windows|{{P|userprofile}}\Tendershoot\HypnOS\GlobalSettings.sav}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/Tendershoot/HypnOS/GlobalSettings.sav}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\Tendershoot\HypnOS\}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/Tendershoot/HypnOS}}' + - "{{Game data/config|Windows|{{P|userprofile}}\\Tendershoot\\HypnOS\\GlobalSettings.sav}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/Tendershoot/HypnOS/GlobalSettings.sav}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\Tendershoot\\HypnOS\\}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/Tendershoot/HypnOS}}" Hyposphere: pageId: 43171 steam: 461880 @@ -81025,10 +78837,10 @@ Hytale: pageId: 164963 Här kommer Pippi Långstrump: pageId: 122971 -I (Don't) Hate Hentai Puzzles: +"I (Don't) Hate Hentai Puzzles": pageId: 148525 renamedFrom: - - I (DON'T) HATE HENTAI PUZZLES + - "I (DON'T) HATE HENTAI PUZZLES" steam: 1158660 I AM.exe: pageId: 69751 @@ -81037,18 +78849,16 @@ I Am Alive: pageId: 3573 steam: 214250 templates: - - >- - {{Game - data/config|Windows|{{p|userprofile\Documents}}\IAmAlive\Save\IAA_Profile\profile.sav|{{P|game}}\src\System\UserSettings.ini}} - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\IAmAlive\Save\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\IAmAlive\\Save\\IAA_Profile\\profile.sav|{{P|game}}\\src\\System\\UserSettings.ini}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\IAmAlive\\Save\\}}" I Am Bread: pageId: 48252 renamedFrom: - I am Bread steam: 327890 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Bossa Studios\I am Bread\}}' - - '{{Game data/saves|Steam|{{P|steam}}\userdata\{{P|uid}}\327890\remote\save.dat}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Bossa Studios\\I am Bread\\}}" + - "{{Game data/saves|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\327890\\remote\\save.dat}}" I Am Caligula: pageId: 43959 steam: 454570 @@ -81059,31 +78869,31 @@ I Am Dead: pageId: 164166 steam: 951750 templates: - - '{{Game data/config|Windows|{{p|game}}/IAD/Saved/Config/WindowsNoEditor/}}' - - '{{Game data/saves|Windows|{{p|game}}/IAD/Saved/SaveGames/}}' + - "{{Game data/config|Windows|{{p|game}}/IAD/Saved/Config/WindowsNoEditor/}}" + - "{{Game data/saves|Windows|{{p|game}}/IAD/Saved/SaveGames/}}" I Am Fish: pageId: 171602 steam: 1472560 templates: - - '{{Game data/saves|Windows|{{P|localappdata}}Low\Bossa Studios\IAmFish\SaveData}}' + - "{{Game data/saves|Windows|{{P|localappdata}}Low\\Bossa Studios\\IAmFish\\SaveData}}" I Am Gooey: pageId: 144411 steam: 1137900 I Am Jesus Christ: pageId: 157424 steam: 1198970 -'I Am Jesus Christ: Prologue': +"I Am Jesus Christ: Prologue": pageId: 174006 steam: 1509650 templates: - - '{{Game data/config|Windows|{{P|game}}\Level1\Saved\Config\Windows\}}' - - '{{Game data/saves|Windows|{{P|game}}\Level1\Saved\SaveGames\}}' -'I Am Not a Monster: First Contact': + - "{{Game data/config|Windows|{{P|game}}\\Level1\\Saved\\Config\\Windows\\}}" + - "{{Game data/saves|Windows|{{P|game}}\\Level1\\Saved\\SaveGames\\}}" +"I Am Not a Monster: First Contact": gog: 1546940267 pageId: 105055 steam: 826600 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Alawar\ImNotAMonster\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Alawar\\ImNotAMonster\\}}" I Am Overburdened: pageId: 73546 steam: 690560 @@ -81091,8 +78901,8 @@ I Am Setsuna: pageId: 35858 steam: 441830 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\My Games\Setsuna\}}' - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\441830\}}' + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\My Games\\Setsuna\\}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\441830\\}}" I Am Vegend - Zombiegeddon: pageId: 50212 steam: 302460 @@ -81108,16 +78918,16 @@ I Can Gun: I Can See the Future: pageId: 72248 steam: 708920 -I Can't Believe It's Not Gambling: +"I Can't Believe It's Not Gambling": pageId: 74934 steam: 733990 templates: - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/MutantEntertainmentStudios/5.6ICBING/prefs}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/MutantEntertainmentStudios/5.6ICBING/gameSave}}' -I Can't Believe It's Not Gambling 2(K): + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/MutantEntertainmentStudios/5.6ICBING/prefs}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/MutantEntertainmentStudios/5.6ICBING/gameSave}}" +"I Can't Believe It's Not Gambling 2(K)": pageId: 150301 steam: 1157790 -'I Can''t Escape: Darkness': +"I Can't Escape: Darkness": pageId: 46412 steam: 346090 I Expect You to Die: @@ -81126,53 +78936,53 @@ I Expect You to Die: - I Expect You To Die steam: 587430 templates: - - '{{Game data/config|Windows|{{p|HKCU}}\SOFTWARE\Schell Games\IEYTD\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Schell Games\IEYTD\}}' + - "{{Game data/config|Windows|{{p|HKCU}}\\SOFTWARE\\Schell Games\\IEYTD\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Schell Games\\IEYTD\\}}" I Expect You to Die 2: pageId: 166266 renamedFrom: - I Expect You To Die 2 steam: 1499120 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\appdata\locallow\Schell Games\I Expect You To Die 2}}' + - "{{Game data/saves|Windows|{{p|userprofile}}\\appdata\\locallow\\Schell Games\\I Expect You To Die 2}}" I Fell from Grace: pageId: 66299 renamedFrom: - I fell from Grace steam: 672230 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Deep Taiga\IFFG\}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Deep Taiga\IFFG\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Deep Taiga\\IFFG\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Deep Taiga\\IFFG\\}}" I Get This Call Every Day: pageId: 33924 steam: 291090 -'I Hate Heroes: Rocket Man': +"I Hate Heroes: Rocket Man": pageId: 92817 steam: 791050 I Hate Running Backwards: pageId: 72413 steam: 575820 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Binx Interactive\I Hate Running Backwards\}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Binx Interactive\I Hate Running Backwards\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Binx Interactive\\I Hate Running Backwards\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Binx Interactive\\I Hate Running Backwards\\}}" I Hate Santa: pageId: 54343 steam: 557730 I Have Lived: pageId: 157108 steam: 1200700 -'I Have Low Stats But My Class Is ''Leader'', So I Recruited Everyone I Know To Fight The Dark Lord': +"I Have Low Stats But My Class Is 'Leader', So I Recruited Everyone I Know To Fight The Dark Lord": pageId: 149987 renamedFrom: - - 'I Have Low Stats But My Class Is "Leader", So I Recruited Everyone I Know To Fight The Dark Lord' + - "I Have Low Stats But My Class Is \"Leader\", So I Recruited Everyone I Know To Fight The Dark Lord" steam: 1176040 -'I Have No Mouth, and I Must Scream': +"I Have No Mouth, and I Must Scream": gog: 1207659593 pageId: 11366 steam: 245390 templates: - - '{{Game data/config|Windows|{{p|game}}\SCREAM\}}' - - '{{Game data/saves|Windows|{{p|game}}\SCREAM\Scream.sav}}' + - "{{Game data/config|Windows|{{p|game}}\\SCREAM\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\SCREAM\\Scream.sav}}" I Know Everything: pageId: 136828 steam: 1040310 @@ -81185,11 +78995,11 @@ I LIKE THE FLOWERS: I Love My Brother: pageId: 79230 steam: 769210 -'I Love You, Colonel Sanders!': +"I Love You, Colonel Sanders!": pageId: 146629 steam: 1121910 templates: - - '{{Game data/saves|Windows|{{p|game}}\ILYCS_Data\StreamingAssets\saves}}' + - "{{Game data/saves|Windows|{{p|game}}\\ILYCS_Data\\StreamingAssets\\saves}}" I May Die!: pageId: 59657 steam: 560080 @@ -81236,8 +79046,8 @@ I Wanna Maker: pageId: 189701 steam: 1114940 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\IWM\config.ini}}' - - '{{Game data/config|Windows|{{P|localappdata}}\IWM\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\IWM\\config.ini}}" + - "{{Game data/config|Windows|{{P|localappdata}}\\IWM\\}}" I Want Cookies: pageId: 77887 steam: 760870 @@ -81255,7 +79065,7 @@ I Was a Teenage Exocolonist: - 1326480 - 2120490 templates: - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\Exocolonist\*}}' + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\Exocolonist\\*}}" I Was an Atomic Mutant!: pageId: 179584 renamedFrom: @@ -81266,12 +79076,12 @@ I Will Be Your Eyes: I Will Escape: pageId: 49073 steam: 324240 -'I am Weapon: Revival': +"I am Weapon: Revival": pageId: 45910 steam: 335700 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\AppData\Krealit\IAmWeaponRevival}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\Krealit\IAmWeaponRevival}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\Krealit\\IAmWeaponRevival}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\Krealit\\IAmWeaponRevival}}" I am Your Principal: pageId: 151601 steam: 1176330 @@ -81279,7 +79089,7 @@ I am an Air Traffic Controller 4: pageId: 171738 steam: 1348390 templates: - - '{{Game data/saves|Windows|{{p|localappdata}}\TechnoBrain\ATC4}}' + - "{{Game data/saves|Windows|{{p|localappdata}}\\TechnoBrain\\ATC4}}" I and Me: pageId: 37195 steam: 399600 @@ -81287,52 +79097,52 @@ I commissioned some bees: pageId: 187106 steam: 1996420 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\ICommissionedSomeBees}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\ICommissionedSomeBees\Progress}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\ICommissionedSomeBees}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\ICommissionedSomeBees\\Progress}}" I commissioned some bees 0: pageId: 187101 renamedFrom: - I Commissioned Some Bees 0 steam: 2250060 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\ICommissionedSomeBees0}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\ICommissionedSomeBees0\Progress}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\ICommissionedSomeBees0}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\ICommissionedSomeBees0\\Progress}}" I commissioned some bees 2: pageId: 187111 steam: 2027000 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\ICommissionedSomeBees2}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\ICommissionedSomeBees2\Progress}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\ICommissionedSomeBees2}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\ICommissionedSomeBees2\\Progress}}" I commissioned some bees 3: pageId: 187115 steam: 2069110 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\ICommissionedSomeBees3}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\ICommissionedSomeBees3\Progress}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\ICommissionedSomeBees3}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\ICommissionedSomeBees3\\Progress}}" I commissioned some bees 4: pageId: 187193 steam: 2086180 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\ICommissionedSomeBees4}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\ICommissionedSomeBees4\Progress}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\ICommissionedSomeBees4}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\ICommissionedSomeBees4\\Progress}}" I commissioned some bees 5: pageId: 187287 steam: 2087470 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\ICommissionedSomeBees5}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\ICommissionedSomeBees5\Progress}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\ICommissionedSomeBees5}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\ICommissionedSomeBees5\\Progress}}" I commissioned some bees 6: pageId: 187346 steam: 2087480 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\ICommissionedSomeBees6}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\ICommissionedSomeBees6\Progress}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\ICommissionedSomeBees6}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\ICommissionedSomeBees6\\Progress}}" I commissioned some bees 7: pageId: 187506 steam: 2146600 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\ICommissionedSomeBees7}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\ICommissionedSomeBees7\Progress}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\ICommissionedSomeBees7}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\ICommissionedSomeBees7\\Progress}}" I face the darkness: pageId: 124036 steam: 993880 @@ -81345,7 +79155,7 @@ I hate this game: I love the money: pageId: 114730 steam: 947270 -'I must kill...: Fresh Meat': +"I must kill...: Fresh Meat": pageId: 45465 steam: 420880 I ride a Scooter: @@ -81361,77 +79171,77 @@ I will eat you: pageId: 150045 steam: 1146940 templates: - - '{{Game data/config|Windows|{{P|game}}\ServerProject\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{P|game}}\ServerProject\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{P|game}}\\ServerProject\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{P|game}}\\ServerProject\\Saved\\SaveGames\\}}" I ♥ You!: pageId: 110038 steam: 920810 -I'm Awesome: +"I'm Awesome": pageId: 63256 steam: 615490 -I'm Calling The Cops!: +"I'm Calling The Cops!": pageId: 156535 steam: 1225940 -I'm Hungry: +"I'm Hungry": pageId: 148431 steam: 1037970 -I'm Lost: +"I'm Lost": pageId: 74890 steam: 737530 -I'm Not Alone: +"I'm Not Alone": pageId: 142752 steam: 50800 templates: - - '{{Game data/config|Windows|{{p|game}}\*.txt|{{p|game}}\*.cfg}}' -I'm Still Here (Cozy Pitch): + - "{{Game data/config|Windows|{{p|game}}\\*.txt|{{p|game}}\\*.cfg}}" +"I'm Still Here (Cozy Pitch)": pageId: 128589 steam: 1017760 -I'm Titanium: +"I'm Titanium": pageId: 65857 steam: 597990 -I'm Turkey: +"I'm Turkey": pageId: 124125 renamedFrom: - - I`m Turkey + - "I`m Turkey" steam: 995740 -I'm an adventurer: +"I'm an adventurer": pageId: 121419 steam: 953700 -I'm from area 51: +"I'm from area 51": pageId: 144309 steam: 1126550 -I'm looking for 3024 people: +"I'm looking for 3024 people": pageId: 190416 steam: 1946010 -I'm on Observation Duty: +"I'm on Observation Duty": pageId: 132173 steam: 1046820 -'I''m on Observation Duty 2: Timothy''s Revenge': +"I'm on Observation Duty 2: Timothy's Revenge": pageId: 164956 steam: 1257810 -I'm on Observation Duty 3: +"I'm on Observation Duty 3": pageId: 164954 steam: 1458560 -I'm the Koala: +"I'm the Koala": pageId: 120951 steam: 966450 -I've got some BALLS!: +"I've got some BALLS!": pageId: 30407 -'I, Cyborg': +"I, Cyborg": pageId: 96529 steam: 868780 -'I, Dracula: Genesis': +"I, Dracula: Genesis": pageId: 157015 steam: 1175360 templates: - - '{{Game data/config|Windows|{{p|APPDATA}}\IDraculaGenesis}}' -'I, Gladiator': + - "{{Game data/config|Windows|{{p|APPDATA}}\\IDraculaGenesis}}" +"I, Gladiator": pageId: 48274 steam: 339700 -'I, Hope': +"I, Hope": pageId: 86953 steam: 448960 -'I, Zombie': +"I, Zombie": pageId: 49163 steam: 307230 I-Fluid: @@ -81440,20 +79250,20 @@ I-Fluid: I-Ninja: pageId: 33055 templates: - - '{{Game data/config|Windows|{{p|game}}\Configuration\options.dat}}' - - '{{Game data/saves|Windows|{{p|game}}\Saved Games}}' -'I.Cartel: Life of a Criminal': + - "{{Game data/config|Windows|{{p|game}}\\Configuration\\options.dat}}" + - "{{Game data/saves|Windows|{{p|game}}\\Saved Games}}" +"I.Cartel: Life of a Criminal": pageId: 130704 steam: 1041250 I.F.O: pageId: 67177 steam: 661820 -'I.G.I.-2: Covert Strike': +"I.G.I.-2: Covert Strike": gog: 1207658666 pageId: 12346 templates: - - '{{Game data/config|Windows|{{p|game}}\config.qvm}}' - - '{{Game data/saves|Windows|{{p|game}}\pc\savegames\}}' + - "{{Game data/config|Windows|{{p|game}}\\config.qvm}}" + - "{{Game data/saves|Windows|{{p|game}}\\pc\\savegames\\}}" IACTURA: pageId: 36808 steam: 512770 @@ -81464,8 +79274,8 @@ IBomber Defense: pageId: 40966 steam: 104000 templates: - - '{{Game data/config|Steam|{{P|steam}}\userdata\{{P|uid}}\104000\remote\gamesave.dat}}' - - '{{Game data/saves|Steam|{{P|steam}}\userdata\{{P|uid}}\104000\remote\gamesave.dat}}' + - "{{Game data/config|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\104000\\remote\\gamesave.dat}}" + - "{{Game data/saves|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\104000\\remote\\gamesave.dat}}" IBomber Defense Pacific: pageId: 40826 steam: 206690 @@ -81473,8 +79283,8 @@ ICARUS.1: pageId: 39315 steam: 395470 templates: - - '{{Game data/config|Windows|{{p|game}}\ICARUS.1_Data\*.txt}}' - - '{{Game data/saves|Windows|{{p|game}}\ICARUS.1_Data\*.txt}}' + - "{{Game data/config|Windows|{{p|game}}\\ICARUS.1_Data\\*.txt}}" + - "{{Game data/saves|Windows|{{p|game}}\\ICARUS.1_Data\\*.txt}}" ICBM: gog: 1502248609 pageId: 163236 @@ -81482,43 +79292,39 @@ ICBM: ICE AGENT: pageId: 113670 steam: 914130 -'ICEBOX: Speedgunner': +"ICEBOX: Speedgunner": pageId: 72933 steam: 577150 ICEY: pageId: 53411 steam: 553640 templates: - - >- - {{Game data/config|Windows|{{p|hkcu}}\SOFTWARE\Shanghai FantaBlade Network Technology Co., - Ltd.\ICEY\GameSettings_h970242990}} - - >- - {{Game data/config|OS X|{{p|osxhome}}/Library/Preferences/unity.Shanghai FantaBlade Network Technology Co., - Ltd..ICEY.plist}} - - '{{Game data/saves|Windows|{{p|Steam}}\userdata\{{p|uid}}\553640\remote\save_data.bin}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\Shanghai FantaBlade Network Technology Co., Ltd.\\ICEY\\GameSettings_h970242990}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Preferences/unity.Shanghai FantaBlade Network Technology Co., Ltd..ICEY.plist}}" + - "{{Game data/saves|Windows|{{p|Steam}}\\userdata\\{{p|uid}}\\553640\\remote\\save_data.bin}}" ICY: pageId: 47125 steam: 375400 -'ICY: Frostbite Edition': +"ICY: Frostbite Edition": pageId: 66456 steam: 680480 templates: - - '{{Game data/saves|Windows|{{p|localappdata}}\Inner Void Interactive\ICY_ Frostbite Edition}}' + - "{{Game data/saves|Windows|{{p|localappdata}}\\Inner Void Interactive\\ICY_ Frostbite Edition}}" ICan: pageId: 132414 steam: 925810 -'ICarly: iDream in Toons': +"ICarly: iDream in Toons": pageId: 107086 ID-EGO: pageId: 150691 steam: 1181390 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\ID-EGO\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\ID-EGO\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\ID-EGO\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\ID-EGO\\Saved\\SaveGames\\}}" IFactor: pageId: 54802 steam: 553570 -'IGI: Origins': +"IGI: Origins": pageId: 151930 steam: 1186430 IGOR MAKS The Meme Lord: @@ -81554,28 +79360,28 @@ IKEA VR Pancake Kitchen: IKO 39: pageId: 151139 steam: 1174270 -'IL DIVINO: Michelangelo''s Sistine Ceiling in VR': +"IL DIVINO: Michelangelo's Sistine Ceiling in VR": pageId: 153182 steam: 1165850 IL-2 Sturmovik: pageId: 174853 templates: - - '{{Game data/config|Windows|{{P|game}}\conf.ini}}' - - '{{Game data/saves|Windows|{{P|game}}\Users}}' -'IL-2 Sturmovik: 1946': + - "{{Game data/config|Windows|{{P|game}}\\conf.ini}}" + - "{{Game data/saves|Windows|{{P|game}}\\Users}}" +"IL-2 Sturmovik: 1946": gog: 1207658749 pageId: 3563 steam: 15320 templates: - - '{{Game data/config|Windows|{{p|game}}\conf.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\USER\{{p|uid}}}}' -'IL-2 Sturmovik: Battle of Stalingrad': + - "{{Game data/config|Windows|{{p|game}}\\conf.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\USER\\{{p|uid}}}}" +"IL-2 Sturmovik: Battle of Stalingrad": pageId: 19363 steam: 307960 -'IL-2 Sturmovik: Cliffs of Dover': +"IL-2 Sturmovik: Cliffs of Dover": pageId: 40948 steam: 63950 -'IL-2 Sturmovik: Cliffs of Dover Blitz Edition': +"IL-2 Sturmovik: Cliffs of Dover Blitz Edition": pageId: 77930 steam: 754530 steamSide: @@ -81624,8 +79430,8 @@ INFRA: pageId: 38345 steam: 251110 templates: - - '{{Game data/config|Windows|{{p|game}}\infra\cfg\}}' - - '{{Game data/saves|Windows|{{p|game}}\infra\SAVE\}}' + - "{{Game data/config|Windows|{{p|game}}\\infra\\cfg\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\infra\\SAVE\\}}" INIT.: pageId: 46815 steam: 348980 @@ -81633,9 +79439,9 @@ INK: pageId: 31418 steam: 385710 templates: - - '{{Game data/saves|Windows|{{p|localappdata}}\INK\DontModifyThis.ini}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/com.yoyogames.macyoyorunner/DontModifyThis.ini}}' - - '{{Game data/saves|Linux|{{p|xdgconfighome}}/INK/DontModifyThis.ini}}' + - "{{Game data/saves|Windows|{{p|localappdata}}\\INK\\DontModifyThis.ini}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/com.yoyogames.macyoyorunner/DontModifyThis.ini}}" + - "{{Game data/saves|Linux|{{p|xdgconfighome}}/INK/DontModifyThis.ini}}" INSECT HAZARD: pageId: 113324 steam: 840190 @@ -81689,8 +79495,8 @@ IRacing: pageId: 28801 steam: 266410 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\iRacing\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\iRacing\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\iRacing\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\iRacing\\}}" IS -Infinite Stratos- Versus Colors: pageId: 144339 steam: 1124710 @@ -81700,8 +79506,8 @@ IS Defense: steamSide: - 451330 templates: - - '{{Game data/config|Windows|{{p|game}}\IS Defense\Saved\Config\WindowsNoEditor}}' - - '{{Game data/saves|Windows|{{p|game}}\IS Defense\Saved\SaveGames}}' + - "{{Game data/config|Windows|{{p|game}}\\IS Defense\\Saved\\Config\\WindowsNoEditor}}" + - "{{Game data/saves|Windows|{{p|game}}\\IS Defense\\Saved\\SaveGames}}" ISEE: pageId: 65849 steam: 672360 @@ -81717,39 +79523,39 @@ IScream: IStorm: pageId: 60281 steam: 610940 -'IWO: Bloodbath in the Bonins': +"IWO: Bloodbath in the Bonins": pageId: 42980 steam: 462070 IXION: pageId: 175435 steam: 1113120 templates: - - '{{Game data/config|Windows|{{P|userprofile\appdata\locallow}}\BulwarkStudios\Ixion\Settings\Settings.save}}' - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\BulwarkStudios\Ixion\Saves}}' + - "{{Game data/config|Windows|{{P|userprofile\\appdata\\locallow}}\\BulwarkStudios\\Ixion\\Settings\\Settings.save}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\BulwarkStudios\\Ixion\\Saves}}" IZBOT: pageId: 46598 steam: 388970 -Ian's Eyes: +"Ian's Eyes": pageId: 37036 steam: 452340 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Sindie Games\Ians Eyes\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Sindie Games\\Ians Eyes\\}}" Ib (2012): pageId: 177715 Ib (2022): pageId: 177713 steam: 1901370 templates: - - '{{Game data/config|Windows|{{p|game}}/www/save/config.rpgsave}}' - - '{{Game data/saves|Windows|{{p|game}}/www/save/*.rpgsave}}' + - "{{Game data/config|Windows|{{p|game}}/www/save/config.rpgsave}}" + - "{{Game data/saves|Windows|{{p|game}}/www/save/*.rpgsave}}" Ibb & obb: pageId: 17400 steam: 95400 templates: - - '{{Game data/config|Windows|{{P|game}}\usersettings.cfg}}' - - '{{Game data/config|OS X|{{P|game}}/usersettings.cfg}}' - - '{{Game data/config|Linux|{{P|game}}/usersettings.cfg}}' - - '{{Game data/saves|Steam|{{P|steam}}/userdata/{{P|uid}}/95400/remote/}}' + - "{{Game data/config|Windows|{{P|game}}\\usersettings.cfg}}" + - "{{Game data/config|OS X|{{P|game}}/usersettings.cfg}}" + - "{{Game data/config|Linux|{{P|game}}/usersettings.cfg}}" + - "{{Game data/saves|Steam|{{P|steam}}/userdata/{{P|uid}}/95400/remote/}}" Icarus: pageId: 173388 steam: 1149460 @@ -81757,8 +79563,8 @@ Icarus: - 1648531 - 1671080 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Icarus\Saved\Config\WindowsNoEditor}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\Icarus\Saved\PlayerData}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\Icarus\\Saved\\Config\\WindowsNoEditor}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Icarus\\Saved\\PlayerData}}" Icarus Online: pageId: 130321 steam: 921940 @@ -81768,31 +79574,31 @@ Icarus Six Sixty Six: Icarus Starship Command Simulator: pageId: 61786 steam: 620170 -'Icarus-X: Tides of Fire': +"Icarus-X: Tides of Fire": pageId: 47503 steam: 375000 -'Ice Age 2: The Meltdown': +"Ice Age 2: The Meltdown": pageId: 89758 templates: - - '{{Game data/config|Windows | {{P|appdata}}\Ice Age 2\Ice Age 2.Ini }}' - - '{{Game data/saves|Windows|{{P|appdata}}\Ice Age 2\}}' + - "{{Game data/config|Windows | {{P|appdata}}\\Ice Age 2\\Ice Age 2.Ini }}" + - "{{Game data/saves|Windows|{{P|appdata}}\\Ice Age 2\\}}" Ice Age Adventures: pageId: 169714 -'Ice Age: Continental Drift - Arctic Games': +"Ice Age: Continental Drift - Arctic Games": pageId: 89762 steam: 224360 templates: - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Activision\IceAge4\}}' -'Ice Age: Dawn of the Dinosaurs': + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Activision\\IceAge4\\}}" +"Ice Age: Dawn of the Dinosaurs": pageId: 89760 templates: - - '{{Game data/saves|Windows|{{p|appdata}}\Activision\IceAge3}}' -'Ice Age: Scrat''s Nutty Adventure': + - "{{Game data/saves|Windows|{{p|appdata}}\\Activision\\IceAge3}}" +"Ice Age: Scrat's Nutty Adventure": pageId: 148167 steam: 751060 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Outright Games Ltd\Ice Age Scrat''s Nutty Adventure}}' - - '{{Game data/saves|Windows| HKEY_USERS\S-1-5-21-....\Software\Outright Games Ltd\Ice Age Scrat''s Nutty Adventure}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Outright Games Ltd\\Ice Age Scrat's Nutty Adventure}}" + - "{{Game data/saves|Windows| HKEY_USERS\\S-1-5-21-....\\Software\\Outright Games Ltd\\Ice Age Scrat's Nutty Adventure}}" Ice Caves of Europa: pageId: 91218 steam: 503780 @@ -81808,7 +79614,7 @@ Ice Cream Surfer: Ice Cream Tycoon: pageId: 91362 templates: - - '{{Game data/config|Windows|{{p|game}}\ICTDATA\config.ini}}' + - "{{Game data/config|Windows|{{p|game}}\\ICTDATA\\config.ini}}" Ice Demon: pageId: 121174 steam: 854210 @@ -81844,36 +79650,34 @@ Icewind Dale: - 1207666683 pageId: 161 templates: - - '{{Game data/config|Windows|{{p|game}}\icewind.ini|{{p|game}}\Keymap.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\mpsave\}}' + - "{{Game data/config|Windows|{{p|game}}\\icewind.ini|{{p|game}}\\Keymap.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\mpsave\\}}" Icewind Dale II: gog: 1207658891 pageId: 200 templates: - - '{{Game data/config|Windows|{{p|game}}\icewind2.ini|{{p|game}}\Keymap.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\mpsave\}}' -'Icewind Dale: Enhanced Edition': + - "{{Game data/config|Windows|{{p|game}}\\icewind2.ini|{{p|game}}\\Keymap.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\mpsave\\}}" +"Icewind Dale: Enhanced Edition": gog: 1207666683 gogSide: - 1501505794 pageId: 34380 steam: 321800 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\Icewind Dale - Enhanced - Edition\Baldur.ini|{{p|userprofile\Documents}}\Icewind Dale - Enhanced Edition\Baldur.lua}} - - '{{Game data/config|OS X|{{p|osxhome}}/Documents/Icewind Dale - Enhanced Edition/Baldur.ini}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/Icewind Dale - Enhanced Edition/Baldur.ini}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Icewind Dale - Enhanced Edition\save\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Documents/Icewind Dale - Enhanced Edition/save/}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/Icewind Dale - Enhanced Edition/save/}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Icewind Dale - Enhanced Edition\\Baldur.ini|{{p|userprofile\\Documents}}\\Icewind Dale - Enhanced Edition\\Baldur.lua}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Documents/Icewind Dale - Enhanced Edition/Baldur.ini}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/Icewind Dale - Enhanced Edition/Baldur.ini}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Icewind Dale - Enhanced Edition\\save\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Documents/Icewind Dale - Enhanced Edition/save/}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/Icewind Dale - Enhanced Edition/save/}}" Ichi: pageId: 25820 steam: 300300 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Stolen Couch Games\Ichi\}}' - - '{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/Stolen Couch Games/Ichi/}}' - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/300300/remote/IchiSteam.txt}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Stolen Couch Games\\Ichi\\}}" + - "{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/Stolen Couch Games/Ichi/}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/300300/remote/IchiSteam.txt}}" Ichor: pageId: 149364 steam: 1143390 @@ -81888,20 +79692,20 @@ Iconoclasts: pageId: 59251 steam: 393520 templates: - - '{{Game data/config|Windows|{{p|game}}\data\settings}}' - - '{{Game data/config|OS X|{{p|game}}/Contents/Resources/Data/}}' - - '{{Game data/config|Linux|{{p|game}}/data/settings}}' - - '{{Game data/saves|Windows|{{p|game}}\data\save* | {{p|game}}\data\point}}' - - '{{Game data/saves|OS X|{{p|game}}/Contents/Resources/Data/}}' - - '{{Game data/saves|Linux|{{p|game}}/data/save* | {{p|game}}/data/point}}' -'Icons: Combat Arena': + - "{{Game data/config|Windows|{{p|game}}\\data\\settings}}" + - "{{Game data/config|OS X|{{p|game}}/Contents/Resources/Data/}}" + - "{{Game data/config|Linux|{{p|game}}/data/settings}}" + - "{{Game data/saves|Windows|{{p|game}}\\data\\save* | {{p|game}}\\data\\point}}" + - "{{Game data/saves|OS X|{{p|game}}/Contents/Resources/Data/}}" + - "{{Game data/saves|Linux|{{p|game}}/data/save* | {{p|game}}/data/point}}" +"Icons: Combat Arena": pageId: 95029 steam: 684200 -'Icycle: On Thin Ice': +"Icycle: On Thin Ice": pageId: 73632 steam: 658990 templates: - - '{{Game data/saves|Windows|{{P|localappdata}}\Icycle On Thin Ice\User Data\Default\Local Storage\}}' + - "{{Game data/saves|Windows|{{P|localappdata}}\\Icycle On Thin Ice\\User Data\\Default\\Local Storage\\}}" Identity: pageId: 122314 steam: 792990 @@ -81933,10 +79737,8 @@ Idle Champions of the Forgotten Realms: pageId: 64654 steam: 627690 templates: - - >- - {{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\Codename Entertainment\Idle - Champions\localSettings.json}} - - '{{Game data/saves|Windows|Games saved on remote server.}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Codename Entertainment\\Idle Champions\\localSettings.json}}" + - "{{Game data/saves|Windows|Games saved on remote server.}}" Idle Chess Story: pageId: 135093 steam: 1067110 @@ -81973,16 +79775,16 @@ Idle Kingdom Builder: Idle Portal Guardian: pageId: 136593 steam: 1061650 -'Idle Racing GO: Clicker Tycoon': +"Idle Racing GO: Clicker Tycoon": pageId: 125044 steam: 851110 Idle Research: pageId: 180078 steam: 1482860 templates: - - '{{Game data/saves|Windows|{{p|appdata}}\LocalLow\CryptoGrounds\Idle Research\saves\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/CryptoGrounds/Idle Research/saves/}}' - - '{{Game data/saves|Linux|{{p|xdgconfighome}}//unity3d/CryptoGrounds/Idle Research/saves/}}' + - "{{Game data/saves|Windows|{{p|appdata}}\\LocalLow\\CryptoGrounds\\Idle Research\\saves\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/CryptoGrounds/Idle Research/saves/}}" + - "{{Game data/saves|Linux|{{p|xdgconfighome}}//unity3d/CryptoGrounds/Idle Research/saves/}}" Idle Space: pageId: 156801 steam: 1208330 @@ -81993,8 +79795,8 @@ Idle Wizard: pageId: 127609 steam: 992070 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\TwoWizards\IdleWizard\}}' - - '{{Game data/saves|Windows|{{P|steam}}\userdata\{{P|uid}}\992070\remote\save}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\TwoWizards\\IdleWizard\\}}" + - "{{Game data/saves|Windows|{{P|steam}}\\userdata\\{{P|uid}}\\992070\\remote\\save}}" IdleBeer: pageId: 69557 steam: 580910 @@ -82005,11 +79807,8 @@ Idling to Rule the Gods: pageId: 42846 steam: 466170 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Shugasu\Idling to Rule the Gods\}}' - - >- - {{Game data/saves|Windows|{{p|game}}\Idling to Rule the Gods_Data\Saves\ManualSave.txt | {{p|game}}\Idling to Rule - the Gods_Data\Saves\ManualSave_*.txt | {{p|userprofile}}\AppData\LocalLow\Shugasu\Idling to Rule the - Gods\ItRtG_Steam_\AutoSave.txt}} + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Shugasu\\Idling to Rule the Gods\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\Idling to Rule the Gods_Data\\Saves\\ManualSave.txt | {{p|game}}\\Idling to Rule the Gods_Data\\Saves\\ManualSave_*.txt | {{p|userprofile}}\\AppData\\LocalLow\\Shugasu\\Idling to Rule the Gods\\ItRtG_Steam_\\AutoSave.txt}}" Idol Hands: pageId: 48669 steam: 345750 @@ -82019,32 +79818,24 @@ Idol Magical Girl Chiru Chiru Michiru Part 1: steamSide: - 1115480 templates: - - >- - {{Game data/config|Windows|{{p|appdata}}\{{LocalizedPath|Frontwing}}\{{LocalizedPath|Idol Magical Girl Chiru Chiru - Michiru (Part 1)}}\setup.xml}} - - >- - {{Game data/saves|Windows|{{p|appdata}}\{{LocalizedPath|Frontwing}}\{{LocalizedPath|Idol Magical Girl Chiru Chiru - Michiru (Part 1)}}\*.dat}} + - "{{Game data/config|Windows|{{p|appdata}}\\{{LocalizedPath|Frontwing}}\\{{LocalizedPath|Idol Magical Girl Chiru Chiru Michiru (Part 1)}}\\setup.xml}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\{{LocalizedPath|Frontwing}}\\{{LocalizedPath|Idol Magical Girl Chiru Chiru Michiru (Part 1)}}\\*.dat}}" Idol Magical Girl Chiru Chiru Michiru Part 2: pageId: 33644 steam: 377720 templates: - - >- - {{Game data/config|Windows|{{p|appdata}}\{{LocalizedPath|Frontwing}}\{{LocalizedPath|Idol Magical Girl Chiru Chiru - Michiru (Part 2)}}\setup.xml}} - - >- - {{Game data/saves|Windows|{{p|appdata}}\{{LocalizedPath|Frontwing}}\{{LocalizedPath|Idol Magical Girl Chiru Chiru - Michiru (Part 2)}}\*.dat}} + - "{{Game data/config|Windows|{{p|appdata}}\\{{LocalizedPath|Frontwing}}\\{{LocalizedPath|Idol Magical Girl Chiru Chiru Michiru (Part 2)}}\\setup.xml}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\{{LocalizedPath|Frontwing}}\\{{LocalizedPath|Idol Magical Girl Chiru Chiru Michiru (Part 2)}}\\*.dat}}" Idol Manager: pageId: 90630 steam: 821880 templates: - - '{{Game data/config|Windows|{{P|userprofile\appdata\locallow}}\Glitch Pitch\Idol Manager\data}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Glitch Pitch/Idol Manager/data}}' - - '{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/Glitch Pitch/Idol Manager/data}}' - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Glitch Pitch\Idol Manager\data}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Glitch Pitch/Idol Manager/data}}' - - '{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/Glitch Pitch/Idol Manager/data}}' + - "{{Game data/config|Windows|{{P|userprofile\\appdata\\locallow}}\\Glitch Pitch\\Idol Manager\\data}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Glitch Pitch/Idol Manager/data}}" + - "{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/Glitch Pitch/Idol Manager/data}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Glitch Pitch\\Idol Manager\\data}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Glitch Pitch/Idol Manager/data}}" + - "{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/Glitch Pitch/Idol Manager/data}}" Idol Quest VR: pageId: 79814 steam: 776140 @@ -82052,8 +79843,8 @@ Idol Showdown: pageId: 186965 steam: 1742020 templates: - - '{{Game data/config|Windows|{{P|userprofile\appdata\locallow}}\BestoGameStudios\Idol Showdown\Saves}}' - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\BestoGameStudios\Idol Showdown\Saves}}' + - "{{Game data/config|Windows|{{P|userprofile\\appdata\\locallow}}\\BestoGameStudios\\Idol Showdown\\Saves}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\BestoGameStudios\\Idol Showdown\\Saves}}" Idolzzz: pageId: 75612 steam: 743410 @@ -82064,13 +79855,13 @@ Iesabel: pageId: 35339 steam: 248710 templates: - - '{{Game data/saves|Steam|{{p|game}}\Iesabel_Data\Save\}}' + - "{{Game data/saves|Steam|{{p|game}}\\Iesabel_Data\\Save\\}}" If Found...: pageId: 150950 steam: 1041920 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\SOFTWARE\dreamfeel\iffound}}' - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\dreamfeel\iffound\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\SOFTWARE\\dreamfeel\\iffound}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\dreamfeel\\iffound\\}}" If I am AI假如我是人工智能: pageId: 125952 steam: 933940 @@ -82078,8 +79869,8 @@ If My Heart Had Wings: pageId: 21090 steam: 326480 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\SOFTWARE\MoeNovel\IF MY HEART HAD WINGS\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\Saved Games\MoeNovel\IF MY HEART HAD WINGS\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\MoeNovel\\IF MY HEART HAD WINGS\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Saved Games\\MoeNovel\\IF MY HEART HAD WINGS\\}}" If My Heart Had Wings -Flight Diary-: pageId: 122558 steam: 923810 @@ -82089,14 +79880,12 @@ If Only...: If You Know What I Mean: pageId: 87005 steam: 767610 -'If on a Winter''s Night, Four Travelers': +"If on a Winter's Night, Four Travelers": pageId: 174093 steam: 1603980 templates: - - >- - {{Game data/config|Windows|{{P|userprofile}}\Saved Games\If On A Winter's Night Four - Travelers\acsetup.cfg|{{P|userprofile}}\Saved Games\If On A Winter's Night Four Travelers\playersettings.dat}} - - '{{Game data/saves|Windows|{{P|userprofile}}\Saved Games\If On A Winter''s Night Four Travelers\agssave.*}}' + - "{{Game data/config|Windows|{{P|userprofile}}\\Saved Games\\If On A Winter's Night Four Travelers\\acsetup.cfg|{{P|userprofile}}\\Saved Games\\If On A Winter's Night Four Travelers\\playersettings.dat}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\Saved Games\\If On A Winter's Night Four Travelers\\agssave.*}}" Iffy Institute: pageId: 92173 steam: 781630 @@ -82109,10 +79898,10 @@ IgKnight Golf Defender: Iggle Pop!: pageId: 16597 steam: 3420 -Iggy's Egg Adventure: +"Iggy's Egg Adventure": pageId: 46681 steam: 366040 -Iggy's Zombie A-Pug-Alypse: +"Iggy's Zombie A-Pug-Alypse": pageId: 66985 steam: 671560 Ignis: @@ -82124,10 +79913,10 @@ Ignis Avis Venatio: Ignite: pageId: 40874 steam: 45410 -'Ignited Steel: Mech Tactics': +"Ignited Steel: Mech Tactics": pageId: 179658 steam: 1550740 -'Ignited Steel: Prologue': +"Ignited Steel: Prologue": pageId: 179661 steam: 2015040 Ignition: @@ -82137,16 +79926,16 @@ Ignition: Igo Meijin: pageId: 77074 steam: 741390 -'Igor: Objective Uikokahonia': +"Igor: Objective Uikokahonia": pageId: 147484 Ikao The Lost Souls: pageId: 127405 steam: 1017130 -'Ikari III: The Rescue': +"Ikari III: The Rescue": pageId: 177590 Ikari Warriors: pageId: 177586 -'Ikari Warriors II: Victory Road': +"Ikari Warriors II: Victory Road": pageId: 177588 Ikaros: pageId: 66243 @@ -82155,9 +79944,9 @@ Ikaruga: pageId: 14749 steam: 253750 templates: - - '{{Game data/config|Windows|{{p|game}}\boot.txt}}' - - '{{Game data/saves|Windows|{{p|game}}\save\}}' -'Ikeda : The Scrap Hunter E.P.': + - "{{Game data/config|Windows|{{p|game}}\\boot.txt}}" + - "{{Game data/saves|Windows|{{p|game}}\\save\\}}" +"Ikeda : The Scrap Hunter E.P.": pageId: 144071 steam: 1052380 Ikenfell: @@ -82165,18 +79954,12 @@ Ikenfell: pageId: 94140 steam: 854940 templates: - - '{{Game data/config|Windows|{{P|appdata}}\ikenfell\settings}}' - - >- - {{Game data/config|Microsoft - Store|{{p|localappdata}}\Packages\HumbleBundle.IkenfellWin10_q2mcdwmzx4qja\LocalCache\Roaming\ikenfell\settings}} - - '{{Game data/config|OS X|{{P|osxhome}}/Library/Application Support/ikenfell/settings}}' - - '{{Game data/saves|Windows|{{p|appdata}}\ikenfell\save*|{{p|appdata}}\ikenfell\autosave}}' - - >- - {{Game data/saves|Microsoft - Store|{{p|localappdata}}\Packages\HumbleBundle.IkenfellWin10_q2mcdwmzx4qja\LocalCache\Roaming\ikenfell\autosave}} - - >- - {{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/ikenfell/save*|{{P|osxhome}}/Library/Application - Support/ikenfell/autosave}} + - "{{Game data/config|Windows|{{P|appdata}}\\ikenfell\\settings}}" + - "{{Game data/config|Microsoft Store|{{p|localappdata}}\\Packages\\HumbleBundle.IkenfellWin10_q2mcdwmzx4qja\\LocalCache\\Roaming\\ikenfell\\settings}}" + - "{{Game data/config|OS X|{{P|osxhome}}/Library/Application Support/ikenfell/settings}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\ikenfell\\save*|{{p|appdata}}\\ikenfell\\autosave}}" + - "{{Game data/saves|Microsoft Store|{{p|localappdata}}\\Packages\\HumbleBundle.IkenfellWin10_q2mcdwmzx4qja\\LocalCache\\Roaming\\ikenfell\\autosave}}" + - "{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/ikenfell/save*|{{P|osxhome}}/Library/Application Support/ikenfell/autosave}}" Ikenie: pageId: 41721 steam: 511120 @@ -82204,21 +79987,21 @@ Illumine: Illusion: pageId: 93192 steam: 843170 -Illusion of L'Phalcia: +"Illusion of L'Phalcia": pageId: 141148 steam: 1076100 -'Illusion: A Tale of the Mind': +"Illusion: A Tale of the Mind": pageId: 95999 steam: 749980 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\frimastudio\Illusion\}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\frimastudio\Illusion\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\frimastudio\\Illusion\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\frimastudio\\Illusion\\}}" Illusoria: pageId: 62197 steam: 614140 Illustrated: pageId: 184840 -'Illville: Return instructions': +"Illville: Return instructions": pageId: 74978 steam: 727550 Illyriad - 4x Grand Strategy MMO: @@ -82227,8 +80010,8 @@ Illyriad - 4x Grand Strategy MMO: Ilomilo: pageId: 167120 templates: - - '{{Game data/config|Microsoft Store|{{P|localappdata}}\Packages\Microsoft.Ilomilo_8wekyb3d8bbwe\Settings}}' - - '{{Game data/saves|Microsoft Store|{{P|localappdata}}\Packages\Microsoft.Ilomilo_8wekyb3d8bbwe\LocalState}}' + - "{{Game data/config|Microsoft Store|{{P|localappdata}}\\Packages\\Microsoft.Ilomilo_8wekyb3d8bbwe\\Settings}}" + - "{{Game data/saves|Microsoft Store|{{P|localappdata}}\\Packages\\Microsoft.Ilomilo_8wekyb3d8bbwe\\LocalState}}" Ilysia: pageId: 150928 steam: 1154120 @@ -82252,8 +80035,8 @@ Imagine Earth: pageId: 50244 steam: 280720 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\ImagineEarth}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\ImagineEarth}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\ImagineEarth}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\ImagineEarth}}" Imagine Me: pageId: 49153 steam: 265670 @@ -82261,9 +80044,9 @@ Imbroglio: pageId: 150385 steam: 1175420 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Rostislav Pogosian\Imbroglio\settings.ini}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\Rostislav Pogosian\Imbroglio\save}}' -'Imhotep, Pyramid Builder': + - "{{Game data/config|Windows|{{P|localappdata}}\\Rostislav Pogosian\\Imbroglio\\settings.ini}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Rostislav Pogosian\\Imbroglio\\save}}" +"Imhotep, Pyramid Builder": pageId: 43137 steam: 448730 Immanence: @@ -82272,8 +80055,8 @@ Immanence: Immaterial and Missing Power: pageId: 30989 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/saves|Windows|{{p|game}}\}}' + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\}}" Immerse Creator: pageId: 61448 steam: 412640 @@ -82291,7 +80074,7 @@ Immortal: renamedFrom: - 不死/IMMORTAL steam: 1105970 -'Immortal Darkness: Curse of The Pale King': +"Immortal Darkness: Curse of The Pale King": pageId: 98458 steam: 868060 Immortal Defense: @@ -82314,49 +80097,43 @@ Immortal Planet: pageId: 62223 steam: 631980 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Immortal_Planet\settings.ini}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Immortal_Planet\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Immortal_Planet\\settings.ini}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Immortal_Planet\\}}" Immortal Quest: pageId: 103843 steam: 885890 -'Immortal Realms: Vampire Wars': +"Immortal Realms: Vampire Wars": gog: 2063726286 pageId: 139516 steam: 1024480 templates: - - >- - {{Game data/config|Windows|{{P|userprofile}}\AppData\LocalLow\Palindrome Interactive\Immortal - Realms\GameSettings.dat|{{P|hkcu}}\SOFTWARE\Palindrome Interactive\Immortal Realms\}} - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Palindrome Interactive\Immortal Realms\}}' + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Palindrome Interactive\\Immortal Realms\\GameSettings.dat|{{P|hkcu}}\\SOFTWARE\\Palindrome Interactive\\Immortal Realms\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Palindrome Interactive\\Immortal Realms\\}}" Immortal Redneck: gog: 2089001920 pageId: 59531 steam: 595140 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\CremaGames\Immortal Redneck}}' - - '{{Game data/config|Linux|{{p|xdgconfighome}}/unity3d/CremaGames/Immortal Redneck/prefs}}' - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\CremaGames\Immortal Redneck\}}' - - '{{Game data/saves|Linux|{{p|xdgconfighome}}/unity3d/CremaGames/Immortal Redneck/}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\CremaGames\\Immortal Redneck}}" + - "{{Game data/config|Linux|{{p|xdgconfighome}}/unity3d/CremaGames/Immortal Redneck/prefs}}" + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\CremaGames\\Immortal Redneck\\}}" + - "{{Game data/saves|Linux|{{p|xdgconfighome}}/unity3d/CremaGames/Immortal Redneck/}}" Immortal Truth: pageId: 58908 steam: 459200 -'Immortal: Unchained': +"Immortal: Unchained": pageId: 87617 steam: 369440 templates: - - '{{Game data/config|Windows|{{P|appdata}}\Toadman Interactive\Immortal Unchained\}}' - - '{{Game data/saves|Steam|{{P|Steam}}\userdata\{{p|uid}}\369440\remote\}}' + - "{{Game data/config|Windows|{{P|appdata}}\\Toadman Interactive\\Immortal Unchained\\}}" + - "{{Game data/saves|Steam|{{P|Steam}}\\userdata\\{{p|uid}}\\369440\\remote\\}}" Immortality: gog: 2070887279 pageId: 179933 steam: 1350200 templates: - - >- - {{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Half Mermaid - Productions\Immortality\{{p|uid}}\*.abr}} - - >- - {{Game data/saves|Microsoft - Store|{{P|localappdata}}\Packages\HalfMermaid.Immortality_f2qdgtd4xgea8\SystemAppData\wgs}} + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Half Mermaid Productions\\Immortality\\{{p|uid}}\\*.abr}}" + - "{{Game data/saves|Microsoft Store|{{P|localappdata}}\\Packages\\HalfMermaid.Immortality_f2qdgtd4xgea8\\SystemAppData\\wgs}}" Immortals: pageId: 98776 steam: 883270 @@ -82366,15 +80143,15 @@ Immortals Fenyx Rising: - Gods & Monsters steam: 2221920 templates: - - '{{Game data/config|Windows|{{P|USERPROFILE\Documents}}\Immortals Fenyx Rising\}}' - - '{{Game data/saves|Windows|{{p|ubisoftconnect}}\savegames\{{p|uid}}\5405\}}' - - '{{Game data/saves|Steam|{{p|ubisoftconnect}}\savegames\{{p|uid}}\62326\}}' + - "{{Game data/config|Windows|{{P|USERPROFILE\\Documents}}\\Immortals Fenyx Rising\\}}" + - "{{Game data/saves|Windows|{{p|ubisoftconnect}}\\savegames\\{{p|uid}}\\5405\\}}" + - "{{Game data/saves|Steam|{{p|ubisoftconnect}}\\savegames\\{{p|uid}}\\62326\\}}" Immortals of Aveum: pageId: 186392 steam: 2009100 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\P3\Saved\Config\Windows\|{{P|localappdata}}\P3\Saved\SaveGames\}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\P3\Saved\SaveGames\{{P|uid}}\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\P3\\Saved\\Config\\Windows\\|{{P|localappdata}}\\P3\\Saved\\SaveGames\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\P3\\Saved\\SaveGames\\{{P|uid}}\\}}" Immune - True Survival: pageId: 48391 steam: 348670 @@ -82389,16 +80166,14 @@ Impact Point: pageId: 180123 steam: 1680550 templates: - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\1680550\}}' + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\1680550\\}}" Impact Winter: pageId: 55067 steam: 468000 templates: - - >- - {{Game data/config|Windows|{{p|hkcu}}\Software\Mojo Bones - Ltd\ImpactWinter\|{{p|userprofile}}\AppData\LocalLow\Mojo Bones Ltd\ImpactWinter\iw_settings.dat}} - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Mojo Bones Ltd\ImpactWinter\}}' - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\468000\remote\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Mojo Bones Ltd\\ImpactWinter\\|{{p|userprofile}}\\AppData\\LocalLow\\Mojo Bones Ltd\\ImpactWinter\\iw_settings.dat}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Mojo Bones Ltd\\ImpactWinter\\}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\468000\\remote\\}}" Impale: pageId: 77271 steam: 755250 @@ -82412,14 +80187,14 @@ Impaler: - 1660981530 pageId: 186533 steam: 1573090 -'Imperator: Rome': +"Imperator: Rome": gog: 1198397489 pageId: 95286 steam: 859580 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Paradox Interactive\Imperator\pdx_settings.txt}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Paradox Interactive\Imperator\save games}}' - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\859580\remote\save games}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Paradox Interactive\\Imperator\\pdx_settings.txt}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Paradox Interactive\\Imperator\\save games}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\859580\\remote\\save games}}" Imperatum: pageId: 69202 steam: 650810 @@ -82437,17 +80212,17 @@ Imperial Glory: pageId: 16767 steam: 277450 templates: - - '{{Game data/config|Windows|{{P|game}}\config.sb}}' + - "{{Game data/config|Windows|{{P|game}}\\config.sb}}" Imperialism: gog: 1207659139 pageId: 131785 -'Imperialism II: The Age of Exploration': +"Imperialism II: The Age of Exploration": gog: 1207659153 pageId: 131787 -'Imperialism: Fate of India': +"Imperialism: Fate of India": pageId: 100374 steam: 885110 -'Imperialism: The Dark Continent': +"Imperialism: The Dark Continent": pageId: 93170 steam: 845530 Imperil: @@ -82456,32 +80231,32 @@ Imperil: Imperishable Night: pageId: 30997 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/saves|Windows|{{p|game}}\}}' + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\}}" Imperium Galactica (1997): gog: 1860790509 pageId: 56751 steam: 573790 -'Imperium Galactica II: Alliances': +"Imperium Galactica II: Alliances": gog: 1254614904 pageId: 13013 steam: 490370 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/saves|Windows|{{p|game}}\Saves}}' + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\Saves}}" Imperium Romanum (2008): gog: 1992658104 pageId: 41329 steam: 23400 steamSide: - 23410 -'Imperiums: Greek Wars': +"Imperiums: Greek Wars": pageId: 154241 steam: 1183470 templates: - - '{{Game data/config|Windows|{{p|game}}\Data\Game\user.config}}' - - '{{Game data/saves|Windows|{{p|game}}\Data\Saves}}' -'Imperivm: Great Battles of Rome HD Edition': + - "{{Game data/config|Windows|{{p|game}}\\Data\\Game\\user.config}}" + - "{{Game data/saves|Windows|{{p|game}}\\Data\\Saves}}" +"Imperivm: Great Battles of Rome HD Edition": pageId: 170819 renamedFrom: - Imperivm HD edition @@ -82510,8 +80285,8 @@ Impossible Creatures: pageId: 23741 steam: 324680 templates: - - '{{Game data/config|Windows|{{p|game}}\Profiles}}' - - '{{Game data/saves|Windows|{{p|game}}\Profiles}}' + - "{{Game data/config|Windows|{{p|game}}\\Profiles}}" + - "{{Game data/saves|Windows|{{p|game}}\\Profiles}}" Impossible Fighter Frog: pageId: 82661 steam: 799920 @@ -82534,8 +80309,8 @@ Impossible Spell Card: pageId: 63113 steam: 937570 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/saves|Windows|{{p|game}}\}}' + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\}}" Impossible VR Ninja: pageId: 110318 steam: 925000 @@ -82547,12 +80322,12 @@ Impostor Factory: pageId: 157293 steam: 1182620 templates: - - '{{Game data/config|Windows|{{P|appdata}}\freebirdgames\impostorfactory\}}' - - '{{Game data/config|OS X|{{P|osxhome}}/Library/Application Support/freebirdgames/impostorfactory/}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/freebirdgames/impostorfactory/}}' - - '{{Game data/saves|Windows|{{P|appdata}}\freebirdgames\impostorfactory\}}' - - '{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/freebirdgames/impostorfactory/}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/freebirdgames/impostorfactory/}}' + - "{{Game data/config|Windows|{{P|appdata}}\\freebirdgames\\impostorfactory\\}}" + - "{{Game data/config|OS X|{{P|osxhome}}/Library/Application Support/freebirdgames/impostorfactory/}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/freebirdgames/impostorfactory/}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\freebirdgames\\impostorfactory\\}}" + - "{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/freebirdgames/impostorfactory/}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/freebirdgames/impostorfactory/}}" Impostor syndrome: pageId: 114810 steam: 948920 @@ -82580,15 +80355,15 @@ Impulse of War: Impulse!: pageId: 43712 steam: 436300 -'Impulse: Space Combat': +"Impulse: Space Combat": pageId: 63149 steam: 622230 Impulsion: pageId: 94383 steam: 811270 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Impulsion\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\Impulsion\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\Impulsion\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Impulsion\\Saved\\SaveGames\\}}" Impulsow: pageId: 125460 steam: 995160 @@ -82599,30 +80374,30 @@ In Between: pageId: 37846 steam: 388420 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Gentlymad\In Between\}}' - - '{{Game data/saves|Steam|{{P|steam}}\userdata\{{P|uid}}\388420\remote\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Gentlymad\\In Between\\}}" + - "{{Game data/saves|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\388420\\remote\\}}" In Between Games: pageId: 79906 steam: 779700 templates: - - '{{Game data/saves|Windows|{{p|appdata}}\MMFApplications\InBetweenGamesSave}}' + - "{{Game data/saves|Windows|{{p|appdata}}\\MMFApplications\\InBetweenGamesSave}}" In Blood: pageId: 142343 steam: 1116750 -'In Case of Emergency, Release Raptor': +"In Case of Emergency, Release Raptor": pageId: 33549 steam: 471770 In Celebration of Violence: pageId: 41645 steam: 509570 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Julian Edison\In Celebration of Violence}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/unity.Julian Edison.In Celebration of Violence}}' + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Julian Edison\\In Celebration of Violence}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/unity.Julian Edison.In Celebration of Violence}}" In Cold Blood: gog: 1207658714 pageId: 131935 templates: - - '{{Game data/saves|GOG.com|{{p|game}}\GOG Games\In Cold Blood\engine\linc\saves}}' + - "{{Game data/saves|GOG.com|{{p|game}}\\GOG Games\\In Cold Blood\\engine\\linc\\saves}}" In Darkness: pageId: 81077 steam: 781680 @@ -82646,7 +80421,7 @@ In Extremis (2016): In Fear I Trust: pageId: 39041 steam: 522690 -'In Game Adventure: Legend of Monsters': +"In Game Adventure: Legend of Monsters": pageId: 64747 steam: 640970 In League: @@ -82655,7 +80430,7 @@ In League: In Memoriam: pageId: 115197 templates: - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\In_Memoriam_Save_Files\}}' + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\In_Memoriam_Save_Files\\}}" In Memory: pageId: 114022 steam: 933660 @@ -82673,8 +80448,8 @@ In Other Waters: pageId: 105725 steam: 890720 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Jump Over the Age\In Other Waters\}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Jump Over the Age\In Other Waters\save*.data}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Jump Over the Age\\In Other Waters\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Jump Over the Age\\In Other Waters\\save*.data}}" In Passing: pageId: 148569 steam: 1172090 @@ -82690,16 +80465,14 @@ In Silence: pageId: 165487 steam: 1361000 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\SOFTWARE\Ravenhood Games\In Silence\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\SOFTWARE\\Ravenhood Games\\In Silence\\}}" In Sound Mind: gog: 1989561048 pageId: 142270 steam: 1119980 templates: - - >- - {{Game data/config|Windows|{{P|hkcu}}\Software\We Create Stuff\In Sound Mind|{{P|userprofile\appdata\locallow}}\We - Create Stuff\In Sound Mind\Settings.ism}} - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\We Create Stuff\In Sound Mind\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\We Create Stuff\\In Sound Mind|{{P|userprofile\\appdata\\locallow}}\\We Create Stuff\\In Sound Mind\\Settings.ism}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\We Create Stuff\\In Sound Mind\\}}" In Space: pageId: 48084 steam: 361830 @@ -82734,7 +80507,7 @@ In Verbis Virtus: steamSide: - 385930 templates: - - '{{Game data/saves|Windows|{{P|game}}\Binaries\Win32\UserCode\Saves\}}' + - "{{Game data/saves|Windows|{{P|game}}\\Binaries\\Win32\\UserCode\\Saves\\}}" In Vitra: pageId: 57845 steam: 563270 @@ -82750,13 +80523,13 @@ In my Dream: In the Darkness of the Sea: pageId: 57293 steam: 587840 -In the Dead of Night - Urszula's Revenge: +"In the Dead of Night - Urszula's Revenge": pageId: 45220 steam: 416430 In the Hunt: pageId: 158070 templates: - - '{{Game data/config|Windows|{{P|hklm}}\Software\Gamebank\海底大戦争\}}' + - "{{Game data/config|Windows|{{P|hklm}}\\Software\\Gamebank\\海底大戦争\\}}" In the Name of Sin: pageId: 74205 steam: 682510 @@ -82777,18 +80550,18 @@ In the Shadows: pageId: 52630 steam: 470580 templates: - - '{{Game data/config|Windows|{{P|appdata}}\InTheShadows\|{{P|hkcu}}\Software\Colorspace Studio\InTheShadows}}' - - '{{Game data/saves|Windows|{{P|appdata}}\InTheShadows\savefiles\}}' -'In the Thrall of Darkness: The Gift of Dreams': + - "{{Game data/config|Windows|{{P|appdata}}\\InTheShadows\\|{{P|hkcu}}\\Software\\Colorspace Studio\\InTheShadows}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\InTheShadows\\savefiles\\}}" +"In the Thrall of Darkness: The Gift of Dreams": pageId: 77622 steam: 760900 In the Valley of Gods: pageId: 78872 steam: 687440 -'In the Village of Grandfather: Summer,Sun,Heat.': +"In the Village of Grandfather: Summer,Sun,Heat.": pageId: 103999 steam: 690500 -'In the World End, You and Me the Forget''s Legend': +"In the World End, You and Me the Forget's Legend": pageId: 90122 steam: 813400 In the beginning: @@ -82808,8 +80581,8 @@ InFlux: pageId: 10532 steam: 246980 templates: - - '{{Game data/config|Windows|{{p|game}}\Binaries\UDKGame\Config}}' - - '{{Game data/saves|Windows|{{p|game}}\Binaries\Win32\SaveInfo.bin}}' + - "{{Game data/config|Windows|{{p|game}}\\Binaries\\UDKGame\\Config}}" + - "{{Game data/saves|Windows|{{p|game}}\\Binaries\\Win32\\SaveInfo.bin}}" InFlux Redux: pageId: 156529 steam: 867150 @@ -82823,17 +80596,17 @@ InMind VR: pageId: 48925 steam: 343740 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Nival VR\InMind}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Nival VR\\InMind}}" InMomentum: pageId: 40865 steam: 110400 templates: - - '{{Game data/config|Windows|{{p|game}}\inMomentum\Engine\Config}}' + - "{{Game data/config|Windows|{{p|game}}\\inMomentum\\Engine\\Config}}" InSynch: pageId: 30324 steam: 343410 templates: - - '{{Game data/saves|Windows|{{p|game}}\profile.zob}}' + - "{{Game data/saves|Windows|{{p|game}}\\profile.zob}}" InVokeR: pageId: 62817 steam: 627070 @@ -82844,7 +80617,7 @@ Inago Rage: pageId: 19202 steam: 209060 templates: - - '{{Game data/config|Windows|{{p|game}}\prefs.dat}}' + - "{{Game data/config|Windows|{{p|game}}\\prefs.dat}}" Inbento: gog: 1781092177 pageId: 179726 @@ -82853,8 +80626,8 @@ Inbetween Land: pageId: 48653 steam: 345540 templates: - - '{{Game data/config|Windows|{{P|appdata}}\Inbetween Land\users.xml}}' - - '{{Game data/saves|Windows|{{P|appdata}}\Inbetween Land\}}' + - "{{Game data/config|Windows|{{P|appdata}}\\Inbetween Land\\users.xml}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\Inbetween Land\\}}" Inbound: pageId: 42575 steam: 480690 @@ -82869,7 +80642,7 @@ Inca: Inca Blocks: pageId: 87229 steam: 792640 -'Inca II: Nations of Immortality': +"Inca II: Nations of Immortality": pageId: 147369 Inca Marbles: pageId: 96357 @@ -82880,7 +80653,7 @@ Incandescent: Incandescent 2: pageId: 125685 steam: 889790 -'Incarna: Broken': +"Incarna: Broken": pageId: 135215 steam: 747480 Incel Clicker: @@ -82899,8 +80672,8 @@ Incitement 3: pageId: 32890 steam: 391660 templates: - - '{{Game data/config|Windows|{{p|game}}\Game.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\Game.ini}}' + - "{{Game data/config|Windows|{{p|game}}\\Game.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\Game.ini}}" Inclement: pageId: 124199 steam: 988650 @@ -82917,8 +80690,8 @@ Incoming: pageId: 13974 steam: 283390 templates: - - '{{Game data/config|Windows|{{p|game}}\save\incoming.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\save}}' + - "{{Game data/config|Windows|{{p|game}}\\save\\incoming.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\save}}" Incoming Evil: pageId: 144813 steam: 926210 @@ -82929,8 +80702,8 @@ Incoming Forces: pageId: 13977 steam: 283390 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Rage\Incoming Forces}}' - - '{{Game data/saves|Windows|{{p|hkcu}}\Software\Rage\Incoming Forces}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Rage\\Incoming Forces}}" + - "{{Game data/saves|Windows|{{p|hkcu}}\\Software\\Rage\\Incoming Forces}}" Incompetent Alchemist: pageId: 141164 renamedFrom: @@ -82942,29 +80715,29 @@ Incorp Inc: IncrediBubble: pageId: 190147 templates: - - '{{Game data/config|Windows|{{p|game}}\bubbles0.bub and curprog.dat}}' + - "{{Game data/config|Windows|{{p|game}}\\bubbles0.bub and curprog.dat}}" IncrediMarble: pageId: 188786 steam: 1488100 -'Incredible Dracula 3: Family Secret': +"Incredible Dracula 3: Family Secret": pageId: 136461 steam: 1087940 -'Incredible Dracula 4: Games of Gods': +"Incredible Dracula 4: Games of Gods": pageId: 138795 steam: 1092510 -'Incredible Dracula II: The Last Call': +"Incredible Dracula II: The Last Call": pageId: 57072 steam: 572580 -'Incredible Dracula: Chasing Love': +"Incredible Dracula: Chasing Love": pageId: 44796 steam: 435040 -'Incredible Dracula: The Ice Kingdom': +"Incredible Dracula: The Ice Kingdom": pageId: 150053 steam: 1175170 -'Incredible Dracula: Vargosi Returns': +"Incredible Dracula: Vargosi Returns": pageId: 148836 steam: 1175150 -'Incredible Dracula: Witches'' Curse': +"Incredible Dracula: Witches' Curse": pageId: 153270 steam: 1187830 Incredible Mandy: @@ -82975,11 +80748,8 @@ Incredipede: pageId: 13412 steam: 230150 templates: - - >- - {{Game data/config|Windows|{{p|appdata}}\com.northwayGames.Incredipede\Local - Store\#SharedObjects\Incredipede_user.sol|{{p|appdata}}\com.northwayGames.Incredipede\Local - Store\#SharedObjects\Incredipede_graphics.sol}} - - '{{Game data/saves|Windows|{{p|appdata}}\com.northwayGames.Incredipede\Local Store\#SharedObjects\*.sol}}' + - "{{Game data/config|Windows|{{p|appdata}}\\com.northwayGames.Incredipede\\Local Store\\#SharedObjects\\Incredipede_user.sol|{{p|appdata}}\\com.northwayGames.Incredipede\\Local Store\\#SharedObjects\\Incredipede_graphics.sol}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\com.northwayGames.Incredipede\\Local Store\\#SharedObjects\\*.sol}}" Incremental Epic Hero: pageId: 180461 steam: 1530340 @@ -82987,14 +80757,14 @@ Incremental Epic Hero 2: pageId: 179971 steam: 1690710 templates: - - '{{Game data/saves|Windows|{{p|appdata}}\LocalLow\HapiwakuProject\Incremental Epic Hero 2}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/HapiwakuProject/Incremental Epic Hero 2}}' -'Incubation: Time Is Running Out': + - "{{Game data/saves|Windows|{{p|appdata}}\\LocalLow\\HapiwakuProject\\Incremental Epic Hero 2}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/HapiwakuProject/Incremental Epic Hero 2}}" +"Incubation: Time Is Running Out": gog: 1207661123 pageId: 13661 templates: - - '{{Game data/config|Windows|{{p|game}}\DATA}}' - - '{{Game data/saves|Windows|{{p|game}}\Work\Saves|{{p|game}}\Work\Saves2}}' + - "{{Game data/config|Windows|{{p|game}}\\DATA}}" + - "{{Game data/saves|Windows|{{p|game}}\\Work\\Saves|{{p|game}}\\Work\\Saves2}}" Incubo: pageId: 125575 steam: 992330 @@ -83014,20 +80784,20 @@ Independence War: gog: 1207658865 pageId: 21771 steam: 330590 -'Independence War 2: Edge of Chaos': +"Independence War 2: Edge of Chaos": gog: 1207658873 pageId: 23180 steam: 359630 templates: - - '{{Game data/config|Windows|{{p|game}}\flux.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\saves\}}' + - "{{Game data/config|Windows|{{p|game}}\\flux.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\saves\\}}" India Garden: pageId: 62737 steam: 636020 Indian Legends Solitaire: pageId: 144268 steam: 1119560 -'Indian Mutiny: Little Sepoy': +"Indian Mutiny: Little Sepoy": pageId: 93243 steam: 854650 Indian Summer: @@ -83039,39 +80809,37 @@ Indiana Boy Steam Edition: Indiana Jack: pageId: 168190 templates: - - '{{Game data/config|Windows|{{p|game}}\data\}}' - - '{{Game data/saves|Windows|{{p|game}}\data\save\}}' + - "{{Game data/config|Windows|{{p|game}}\\data\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\data\\save\\}}" Indiana Jones and His Desktop Adventures: pageId: 6121 -Indiana Jones and the Emperor's Tomb: +"Indiana Jones and the Emperor's Tomb": gog: 1425034773 pageId: 24790 steam: 560430 templates: - - '{{Game data/config|Windows|{{p|game}}\GameData\indy\}}' - - '{{Game data/saves|Windows|{{p|game}}\GameData\indy\saves\}}' + - "{{Game data/config|Windows|{{p|game}}\\GameData\\indy\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\GameData\\indy\\saves\\}}" Indiana Jones and the Fate of Atlantis: gog: 1207666293 pageId: 28781 steam: 6010 templates: - - '{{Game data/saves|Windows|{{P|appdata}}\LucasArts\Indiana Jones and the Fate of Atlantis\}}' + - "{{Game data/saves|Windows|{{P|appdata}}\\LucasArts\\Indiana Jones and the Fate of Atlantis\\}}" Indiana Jones and the Infernal Machine: gog: 1106707958 pageId: 24862 steam: 904540 templates: - - >- - {{Game data/config|Windows|{{p|hkcu}}\Software\LucasArts Entertainment Company LLC\Indiana Jones and the Infernal - Machine\}} - - '{{Game data/saves|Windows|{{p|game}}\SaveGames\}}' -'Indiana Jones and the Last Crusade: The Graphic Adventure': + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\LucasArts Entertainment Company LLC\\Indiana Jones and the Infernal Machine\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\SaveGames\\}}" +"Indiana Jones and the Last Crusade: The Graphic Adventure": gog: 1440410803 pageId: 41280 steam: 32310 templates: - - '{{Game data/saves|DOS|{{p|game}}}}' - - '{{Game data/saves|Windows|{{p|game}}}}' + - "{{Game data/saves|DOS|{{p|game}}}}" + - "{{Game data/saves|Windows|{{p|game}}}}" Indie Assault: pageId: 47361 steam: 354910 @@ -83098,10 +80866,10 @@ Indivisible: pageId: 29735 steam: 421170 templates: - - '{{Game data/config|Microsoft Store|{{p|userprofile\Documents}}\Indivisible\Save Data\}}' - - '{{Game data/config|Steam|{{p|steam}}\userdata\{{p|uid}}\421170\remote\}}' - - '{{Game data/saves|Microsoft Store|{{p|userprofile\Documents}}\Indivisible\Save Data\}}' - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\421170\remote\}}' + - "{{Game data/config|Microsoft Store|{{p|userprofile\\Documents}}\\Indivisible\\Save Data\\}}" + - "{{Game data/config|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\421170\\remote\\}}" + - "{{Game data/saves|Microsoft Store|{{p|userprofile\\Documents}}\\Indivisible\\Save Data\\}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\421170\\remote\\}}" Indoor Rock Climbing VR: pageId: 78479 steam: 767330 @@ -83113,8 +80881,8 @@ Induction: pageId: 39612 steam: 381890 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Bryan Gale\Induction}}' - - '{{Game data/saves|Windows|{{P|hkcu}}\Software\Bryan Gale\Induction}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Bryan Gale\\Induction}}" + - "{{Game data/saves|Windows|{{P|hkcu}}\\Software\\Bryan Gale\\Induction}}" Industria: gog: 1804122723 pageId: 169566 @@ -83122,10 +80890,8 @@ Industria: - INDUSTRIA steam: 1172650 templates: - - >- - {{Game - data/config|Windows|{{P|localappdata}}\Industria\Saved\Config\WindowsNoEditor\|{{P|localappdata}}\Industria\Saved\SaveGames\Save_UserSettings*.sav}} - - '{{Game data/saves|Windows|{{P|localappdata}}\Industria\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\Industria\\Saved\\Config\\WindowsNoEditor\\|{{P|localappdata}}\\Industria\\Saved\\SaveGames\\Save_UserSettings*.sav}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Industria\\Saved\\SaveGames\\}}" Industrial Infection!: pageId: 110238 steam: 923750 @@ -83139,7 +80905,7 @@ Industries of Titan: pageId: 69090 steam: 427940 templates: - - '{{Game data/saves|Windows|{{p|localappdata}}\*.sav|{{p|localappdata}}\*.met}}' + - "{{Game data/saves|Windows|{{p|localappdata}}\\*.sav|{{p|localappdata}}\\*.met}}" Industriworks: pageId: 149561 steam: 1143340 @@ -83157,9 +80923,9 @@ Industry Giant 2: pageId: 32067 steam: 271360 templates: - - '{{Game data/config|Windows|{{p|game}}\ig2_player.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\save\}}' -'Industry Manager: Future Technologies': + - "{{Game data/config|Windows|{{p|game}}\\ig2_player.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\save\\}}" +"Industry Manager: Future Technologies": pageId: 39235 steam: 384080 Industry Transporters: @@ -83186,7 +80952,7 @@ Inertial Drift: Inescapable: pageId: 50228 steam: 295610 -'Inescapable VR: Underground': +"Inescapable VR: Underground": pageId: 66138 steam: 666340 Inevitability: @@ -83201,7 +80967,7 @@ Inevitable VR: Inexistence: pageId: 43554 steam: 444720 -'Inexplicable Geeks: Dawn of Just Us': +"Inexplicable Geeks: Dawn of Just Us": pageId: 92295 steam: 704670 Infantry: @@ -83217,12 +80983,12 @@ Infected Shelter: pageId: 110438 steam: 926390 templates: - - '{{Game data/saves|Windows|{{p|localappdata}}\DarkBlueGames\InfectedShelter\*.dbg}}' -'Infected: The Twin Vaccine': + - "{{Game data/saves|Windows|{{p|localappdata}}\\DarkBlueGames\\InfectedShelter\\*.dbg}}" +"Infected: The Twin Vaccine": pageId: 18530 steam: 221340 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Gogii\Infected - The Twin Vaccine - Collector''s Edition}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Gogii\\Infected - The Twin Vaccine - Collector's Edition}}" Infection: pageId: 155721 steam: 1203850 @@ -83232,20 +80998,20 @@ Infection Free Zone: Infection Rate: pageId: 68968 steam: 689030 -'Infection: Humanity''s Last Gasp': +"Infection: Humanity's Last Gasp": pageId: 34753 steam: 385950 Infecto: pageId: 88860 steam: 815800 -'Infectonator 3: Apocalypse': +"Infectonator 3: Apocalypse": gog: 1560654450 pageId: 77381 steam: 666570 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\Toge Productions\Infectonator Apocalypse\Data}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Toge Productions\Infectonator Apocalypse\Data}}' -'Infectonator: Survivors': + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Toge Productions\\Infectonator Apocalypse\\Data}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Toge Productions\\Infectonator Apocalypse\\Data}}" +"Infectonator: Survivors": pageId: 16575 steam: 269310 Infektor: @@ -83258,23 +81024,23 @@ Infernal: pageId: 3058 steam: 7060 templates: - - '{{Game data/config|Windows|{{p|game}}\game\standard_game.feel}}' - - '{{Game data/saves|Windows|{{p|game}}\game\}}' + - "{{Game data/config|Windows|{{p|game}}\\game\\standard_game.feel}}" + - "{{Game data/saves|Windows|{{p|game}}\\game\\}}" Infernal Racket: pageId: 72877 steam: 664510 Infernales: pageId: 70164 steam: 705060 -'Infernales: Circles of Hell': +"Infernales: Circles of Hell": pageId: 87449 steam: 809490 Infernax: pageId: 151163 steam: 374190 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\Berzerk Studio\Infernax\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Berzerk Studio\Infernax\}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Berzerk Studio\\Infernax\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Berzerk Studio\\Infernax\\}}" Infernium: pageId: 82185 steam: 789950 @@ -83294,7 +81060,7 @@ Inferno Climber: Inferno Puzzle: pageId: 63785 steam: 654980 -'Inferno: Deathfield': +"Inferno: Deathfield": pageId: 80527 steam: 683150 Infernum: @@ -83303,21 +81069,21 @@ Infernum: Infestation (2000): pageId: 40389 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Frontier Developments Ltd\Infestation\}}' - - '{{Game data/saves|Windows|{{p|game}}\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Frontier Developments Ltd\\Infestation\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\}}" Infestation World: pageId: 152301 -'Infestation: Germany': +"Infestation: Germany": pageId: 125247 steam: 918860 -'Infestation: Survivor Stories Classic': +"Infestation: Survivor Stories Classic": pageId: 3969 steam: 226700 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Arktos\WarZ\}}' -'Infestation: Survivor Stories Revival': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Arktos\\WarZ\\}}" +"Infestation: Survivor Stories Revival": pageId: 152326 -'Infestation: The New Z': +"Infestation: The New Z": pageId: 53896 steam: 555570 Infested Inside Multiplayer Online: @@ -83331,9 +81097,9 @@ Infested Planet: pageId: 15679 steam: 204530 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Rocket Bear Games\Infested Planet\pref.xml}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Rocket Bear Games\Infested Planet\profile*.xml}}' - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\204530\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Rocket Bear Games\\Infested Planet\\pref.xml}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Rocket Bear Games\\Infested Planet\\profile*.xml}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\204530\\}}" Infferno: pageId: 155877 steam: 1211730 @@ -83373,10 +81139,10 @@ Infinifactory: pageId: 34346 steam: 300570 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Zachtronics\Infinifactory\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Infinifactory\{{p|uid}}\}}' - - '{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/Infinifactory/save.dat}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.local/share/Infinifactory/{{p|uid}}/save.dat}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Zachtronics\\Infinifactory\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Infinifactory\\{{p|uid}}\\}}" + - "{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/Infinifactory/save.dat}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.local/share/Infinifactory/{{p|uid}}/save.dat}}" InfinitasDM: pageId: 54066 steam: 555180 @@ -83384,14 +81150,12 @@ Infinite Adventures: pageId: 90388 steam: 607820 templates: - - '{{Game data/saves|Windows|{{p|USERPROFILE}}\LocalLow\Stormseeker Games LLC\Infinite Adventures\savedata.dat}}' + - "{{Game data/saves|Windows|{{p|USERPROFILE}}\\LocalLow\\Stormseeker Games LLC\\Infinite Adventures\\savedata.dat}}" Infinite Air with Mark McMorris: pageId: 50909 steam: 488300 templates: - - >- - {{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\HB Studios Multimedia Ltd_\Mark McMorris Infinite - Air\Common\Profile*.data}} + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\HB Studios Multimedia Ltd_\\Mark McMorris Infinite Air\\Common\\Profile*.data}}" Infinite Art Museum: pageId: 128505 steam: 1011000 @@ -83442,10 +81206,10 @@ Infinite Shooter: Infinite Skyline: pageId: 127353 steam: 673140 -'Infinite Skyline: Superflight': +"Infinite Skyline: Superflight": pageId: 144655 steam: 1111420 -'Infinite Space III: Sea of Stars': +"Infinite Space III: Sea of Stars": pageId: 45850 steam: 269990 Infinite Sparkles: @@ -83484,7 +81248,7 @@ Infinitely up 4: Infinitely up 5: pageId: 136609 steam: 1084170 -'Infinitely up: Turn the Figure': +"Infinitely up: Turn the Figure": pageId: 139108 steam: 1101690 Infinitesimal Point: @@ -83496,13 +81260,13 @@ Infinitesimals: Infiniti VR: pageId: 60065 steam: 612790 -'Infinitrap : Rehamstered': +"Infinitrap : Rehamstered": pageId: 122696 steam: 908390 Infinitum: pageId: 55215 steam: 555670 -Infinity: +"Infinity": pageId: 112744 steam: 938850 Infinity Assassin: @@ -83517,10 +81281,8 @@ Infinity Challenge: Infinity Danger: pageId: 168240 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\IsolatedStorage\*\*\Url.*\Url.*\Files\config.xml }}' - - >- - {{Game - data/saves|Windows|{{p|localappdata}}\IsolatedStorage\*\*\Url.*\Url.*\Files\Awards\{{p|uid}}.xml|{{p|localappdata}}\IsolatedStorage\*\*\Url.*\Url.*\Files\Stats\{{p|uid}}.xml}} + - "{{Game data/config|Windows|{{p|localappdata}}\\IsolatedStorage\\*\\*\\Url.*\\Url.*\\Files\\config.xml }}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\IsolatedStorage\\*\\*\\Url.*\\Url.*\\Files\\Awards\\{{p|uid}}.xml|{{p|localappdata}}\\IsolatedStorage\\*\\*\\Url.*\\Url.*\\Files\\Stats\\{{p|uid}}.xml}}" Infinity Disk: pageId: 114380 steam: 940700 @@ -83542,21 +81304,19 @@ Infinity Runner: pageId: 23302 steam: 279920 templates: - - >- - {{Game data/config|Windows|{{p|hkcu}}\Software\Wales Interactive\Infinity - Runner\|{{p|userprofile}}\AppData\LocalLow\Wales Interactive\Infinity Runner\}} + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Wales Interactive\\Infinity Runner\\|{{p|userprofile}}\\AppData\\LocalLow\\Wales Interactive\\Infinity Runner\\}}" Infinity Saga: pageId: 44393 steam: 448750 -'Infinity Strash: Dragon Quest The Adventure of Dai': +"Infinity Strash: Dragon Quest The Adventure of Dai": pageId: 187401 renamedFrom: - - 'Infinity Strash: Dragon Quest The Adventure of Dai' - - 'Infinity Strash: DRAGON QUEST The Adventure of Dai' + - "Infinity Strash: Dragon Quest The Adventure of Dai" + - "Infinity Strash: DRAGON QUEST The Adventure of Dai" steam: 1895810 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\strash\Saved\Config\WindowsClient\}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\My Games\IS-DQDai\Steam\{{p|uid}}\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\strash\\Saved\\Config\\WindowsClient\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\My Games\\IS-DQDai\\Steam\\{{p|uid}}\\}}" Infinity Trip: pageId: 77020 steam: 752710 @@ -83566,17 +81326,17 @@ Infinity Wars: Infinity Wars 2: pageId: 157468 steam: 1206440 -'Infinity Wars: Animated Trading Card Game': +"Infinity Wars: Animated Trading Card Game": pageId: 49675 steam: 257730 Infinity Wings - Scout & Grunt: pageId: 44183 steam: 448790 -'Infinity: Battlescape': +"Infinity: Battlescape": pageId: 137018 steam: 1079620 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\I-Novae Studios\Infinity Battlescape\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\I-Novae Studios\\Infinity Battlescape\\}}" InfinityVR: pageId: 134552 steam: 1055020 @@ -83595,8 +81355,8 @@ Infliction: pageId: 67998 steam: 692100 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Infliction\Saved\Config\WindowsNoEditor}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\Infliction\Saved\SaveGames}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\Infliction\\Saved\\Config\\WindowsNoEditor}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Infliction\\Saved\\SaveGames}}" Influence: pageId: 79236 steam: 731430 @@ -83604,8 +81364,8 @@ Influent: pageId: 50548 steam: 274980 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\SOFTWARE\Three Flip Studios\Influent\}}' - - '{{Game data/saves|Windows|{{p|hkcu}}\SOFTWARE\Three Flip Studios\Influent\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\Three Flip Studios\\Influent\\}}" + - "{{Game data/saves|Windows|{{p|hkcu}}\\SOFTWARE\\Three Flip Studios\\Influent\\}}" Infommi: pageId: 108192 steam: 916910 @@ -83621,10 +81381,8 @@ InfraSpace: pageId: 172112 steam: 1511460 templates: - - >- - {{Game data/config|Windows|{{P|hkcu}}\Software\Dionic - Software\InfraSpace|{{P|userprofile\appdata\locallow}}\Dionic Software\InfraSpace\gameSettings.json}} - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\Dionic Software\InfraSpace\saves\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Dionic Software\\InfraSpace|{{P|userprofile\\appdata\\locallow}}\\Dionic Software\\InfraSpace\\gameSettings.json}}" + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\Dionic Software\\InfraSpace\\saves\\}}" Inglorious Pirate: pageId: 156306 steam: 1219450 @@ -83632,44 +81390,44 @@ Ingnomia: pageId: 70254 steam: 709240 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\Documents\My Games\Ingnomia\save}}' -'Inherit the Earth: Quest for the Orb': + - "{{Game data/saves|Windows|{{p|userprofile}}\\Documents\\My Games\\Ingnomia\\save}}" +"Inherit the Earth: Quest for the Orb": gog: 1207659231 pageId: 36402 steam: 257260 templates: - - '{{Game data/config|Windows|{{P|appdata}}\Wyrmkeep\Inherit the Earth Data\ite.prf}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.itelinux/ite.prf}}' - - '{{Game data/saves|Windows|{{P|appdata}}\Wyrmkeep\Inherit the Earth Data\ITE.SAV}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.itelinux/ITE.SAV}}' + - "{{Game data/config|Windows|{{P|appdata}}\\Wyrmkeep\\Inherit the Earth Data\\ite.prf}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.itelinux/ite.prf}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\Wyrmkeep\\Inherit the Earth Data\\ITE.SAV}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.itelinux/ITE.SAV}}" Inhuman: pageId: 182573 steam: 1692290 Inhumanus: pageId: 91504 steam: 767970 -'Initia: Elemental Arena': +"Initia: Elemental Arena": pageId: 43290 steam: 463920 -'Initial 2 : New Stage': +"Initial 2 : New Stage": pageId: 109442 steam: 904310 -'Initial D Second Stage: Taipingu Kantō Saisoku Purojekuto': +"Initial D Second Stage: Taipingu Kantō Saisoku Purojekuto": pageId: 101235 -'Initial D: Mountain Vengeance': +"Initial D: Mountain Vengeance": pageId: 101223 templates: - - '{{Game data/config|Windows|{{p|game}}\cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\Saves\}}' -'Initial D: Takahashi Ryosuke no Typing Saisoku Riron': + - "{{Game data/config|Windows|{{p|game}}\\cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\Saves\\}}" +"Initial D: Takahashi Ryosuke no Typing Saisoku Riron": pageId: 101225 Initiation: pageId: 80340 steam: 748050 -'Initiative: Red Dawn': +"Initiative: Red Dawn": pageId: 69888 steam: 668000 -'Injection π23 ''No Name, No Number''': +"Injection π23 'No Name, No Number'": pageId: 145101 steam: 1131790 Injured by Space: @@ -83679,14 +81437,14 @@ Injustice 2: pageId: 75869 steam: 627270 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Injustice2\UserSettings.ini}}' - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\627270\remote\}}' -'Injustice: Gods Among Us': + - "{{Game data/config|Windows|{{p|localappdata}}\\Injustice2\\UserSettings.ini}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\627270\\remote\\}}" +"Injustice: Gods Among Us": pageId: 11108 steam: 242700 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Injustice\}}' - - '{{Game data/saves|Windows|{{p|steam}}\userdata\{{p|uid}}\242700\remote\user\}}' + - "{{Game data/config|Windows|{{p|appdata}}\\Injustice\\}}" + - "{{Game data/saves|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\242700\\remote\\user\\}}" Ink Cipher: pageId: 95587 steam: 870670 @@ -83706,8 +81464,8 @@ Inked: pageId: 92145 steam: 690120 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Somnium Games\Inked\}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Somnium Games\Inked\savedGames.gd}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Somnium Games\\Inked\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Somnium Games\\Inked\\savedGames.gd}}" Inklings: pageId: 50863 steam: 498720 @@ -83729,9 +81487,9 @@ Inmost: pageId: 128724 steam: 938560 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\SOFTWARE\HiddenLayerGames\INMOST\}}' - - '{{Game data/saves|Windows|{{p|USERPROFILE}}\AppData\LocalLow\HiddenLayerGames\INMOST\}}' -'Inn: the Countryside': + - "{{Game data/config|Windows|{{P|hkcu}}\\SOFTWARE\\HiddenLayerGames\\INMOST\\}}" + - "{{Game data/saves|Windows|{{p|USERPROFILE}}\\AppData\\LocalLow\\HiddenLayerGames\\INMOST\\}}" +"Inn: the Countryside": pageId: 104355 steam: 905870 Inner: @@ -83742,8 +81500,8 @@ Inner Chains: pageId: 51511 steam: 537430 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\InnerChains\Saved\Config\WindowsNoEditor}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\InnerChains\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\InnerChains\\Saved\\Config\\WindowsNoEditor}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\InnerChains\\Saved\\SaveGames\\}}" Inner Mazes - Souls Guides: pageId: 74532 steam: 726820 @@ -83754,13 +81512,13 @@ Inner Voices: pageId: 54439 steam: 559130 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Purgatory_4_14\Saved}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Purgatory_4_14\Saved}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Purgatory_4_14\\Saved}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Purgatory_4_14\\Saved}}" Inner Worlds: pageId: 18523 templates: - - '{{Game data/config|DOS|{{p|game}}\IW.CFG}}' - - '{{Game data/saves|DOS|{{p|game}}\*.SAV}}' + - "{{Game data/config|DOS|{{p|game}}\\IW.CFG}}" + - "{{Game data/saves|DOS|{{p|game}}\\*.SAV}}" Inner silence: pageId: 57411 steam: 575780 @@ -83771,10 +81529,10 @@ InnerSpace: pageId: 39793 steam: 347000 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\PolyKnight Games\InnerSpace\}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\PolyKnight Games\InnerSpace\{{P|uid}}\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/unity.PolyKnight Games.InnerSpace}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/PolyKnight Games/InnerSpace}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\PolyKnight Games\\InnerSpace\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\PolyKnight Games\\InnerSpace\\{{P|uid}}\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/unity.PolyKnight Games.InnerSpace}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/PolyKnight Games/InnerSpace}}" Innocence Or Money - Prelude: pageId: 178961 steam: 1722270 @@ -83784,10 +81542,10 @@ Innocence Or Money - V 0.0.3: Innocent: pageId: 81705 steam: 790570 -'Innocent Forest 2: The Bed in the Sky': +"Innocent Forest 2: The Bed in the Sky": pageId: 121601 steam: 929180 -'Innocent Forest: The Bird of Light': +"Innocent Forest: The Bird of Light": pageId: 121603 steam: 929170 Innocent Until Caught: @@ -83798,7 +81556,7 @@ Innoquous 5: Ino: pageId: 58527 steam: 398140 -Inori's House: +"Inori's House": pageId: 136767 steam: 1073370 Inquisitor: @@ -83806,9 +81564,9 @@ Inquisitor: pageId: 23786 steam: 241620 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Inquisitor_SaveGames\d3dparams.ini}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Inquisitor_SaveGames\}}' -'Inquisitor: The Hammer of Witches': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Inquisitor_SaveGames\\d3dparams.ini}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Inquisitor_SaveGames\\}}" +"Inquisitor: The Hammer of Witches": pageId: 135135 steam: 1066740 InsanZ - Retro Survival Horror: @@ -83818,8 +81576,8 @@ Insane: gog: 1207658658 pageId: 7225 templates: - - '{{Game data/config|Windows|{{p|hklm}}\SOFTWARE\{{p|wow64}}\Codemasters\Insane\|{{p|game}}\Data\*.ctl}}' - - '{{Game data/saves|Windows|{{p|game}}\Player*.chp|{{p|game}}\Data\Replays\}}' + - "{{Game data/config|Windows|{{p|hklm}}\\SOFTWARE\\{{p|wow64}}\\Codemasters\\Insane\\|{{p|game}}\\Data\\*.ctl}}" + - "{{Game data/saves|Windows|{{p|game}}\\Player*.chp|{{p|game}}\\Data\\Replays\\}}" Insane (2016): pageId: 51016 steam: 452930 @@ -83827,15 +81585,15 @@ Insane 2: pageId: 40842 steam: 35320 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\insane2\}}' - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\35320\remote\}}' -'Insane Cold: Back to the Ice Age': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\insane2\\}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\35320\\remote\\}}" +"Insane Cold: Back to the Ice Age": pageId: 77837 steam: 764010 -'Insane Decay of Mind: The Labyrinth': +"Insane Decay of Mind: The Labyrinth": pageId: 43151 steam: 450060 -'Insane Insects: The Inception': +"Insane Insects: The Inception": pageId: 43241 steam: 443070 Insane Road: @@ -83853,21 +81611,21 @@ Insanely Twisted Shadow Planet: pageId: 2235 steam: 205730 templates: - - '{{Game data/config|Linux|{{P|xdgdatahome}}/Fuelcell/Insanely Twisted Shadow Planet/}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Insanely Twisted Shadow Planet\}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/Fuelcell/Insanely Twisted Shadow Planet/}}' + - "{{Game data/config|Linux|{{P|xdgdatahome}}/Fuelcell/Insanely Twisted Shadow Planet/}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Insanely Twisted Shadow Planet\\}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/Fuelcell/Insanely Twisted Shadow Planet/}}" Insaniquarium: pageId: 12331 steam: 3320 templates: - - '{{Game data/saves|Windows|{{p|programdata}}\Steam\Insaniquarium\userdata}}' + - "{{Game data/saves|Windows|{{p|programdata}}\\Steam\\Insaniquarium\\userdata}}" Insanity Clicker: pageId: 33738 steam: 393530 -'Insanity VR: Last Score': +"Insanity VR: Last Score": pageId: 66963 steam: 686340 -Insanity's Blade: +"Insanity's Blade": pageId: 49179 steam: 334190 Insanus Express: @@ -83884,7 +81642,7 @@ Inscryption: - 1469850 - 1753260 templates: - - '{{Game data/saves|Windows|{{p|game}}\SaveFile.gwsave}}' + - "{{Game data/saves|Windows|{{p|game}}\\SaveFile.gwsave}}" Insect Revolution VR: pageId: 134735 steam: 1009510 @@ -83898,12 +81656,12 @@ Insecticide: pageId: 16538 steam: 16710 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/saves|Windows|{{p|game}}\profiles}}' + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\profiles}}" Insectipede: pageId: 139069 steam: 1097650 -'Insectophobia: Episode 1': +"Insectophobia: Episode 1": pageId: 64054 steam: 655250 Insects: @@ -83920,10 +81678,10 @@ Inside: pageId: 34153 steam: 304430 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Playdead\INSIDE\}}' - - '{{Game data/saves|Windows|{{p|game}}\INSIDE_Data\Game2.sav}}' - - '{{Game data/saves|Epic Games Store|{{p|appdata}}\Playdead\Inside\Game2.sav}}' - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\304430\remote\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Playdead\\INSIDE\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\INSIDE_Data\\Game2.sav}}" + - "{{Game data/saves|Epic Games Store|{{p|appdata}}\\Playdead\\Inside\\Game2.sav}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\304430\\remote\\}}" Inside (2018): pageId: 137358 steam: 959940 @@ -83935,7 +81693,7 @@ Inside Jennifer: pageId: 184944 steam: 1754860 templates: - - '{{Game data/saves|Windows|{{p|appdata}}\RenPy\InsideJennifer-1614086089\}}' + - "{{Game data/saves|Windows|{{p|appdata}}\\RenPy\\InsideJennifer-1614086089\\}}" Inside Me: pageId: 46242 steam: 404860 @@ -83943,8 +81701,8 @@ Inside My Radio: pageId: 38220 steam: 357720 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\SeavenStudio\InsideMyRadio\}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\SeavenStudio\InsideMyRadio\Default\}}' + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\SeavenStudio\\InsideMyRadio\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\SeavenStudio\\InsideMyRadio\\Default\\}}" Inside The Code: pageId: 45049 steam: 431470 @@ -83966,7 +81724,7 @@ Inside path: Inside the Backrooms: pageId: 181480 steam: 1987080 -'Inside: Before Birth': +"Inside: Before Birth": pageId: 44656 steam: 437740 Insidia: @@ -83979,15 +81737,15 @@ Insincere: pageId: 34982 steam: 467000 templates: - - '{{Game data/config|Windows|{{p|game}}\setup.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\Files\Gamesaves}}' -'Insomnia: The Ark': + - "{{Game data/config|Windows|{{p|game}}\\setup.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\Files\\Gamesaves}}" +"Insomnia: The Ark": gog: 2089824097 pageId: 91596 steam: 783170 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Insomnia_v2\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Insomnia_v2\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Insomnia_v2\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Insomnia_v2\\Saved\\SaveGames\\}}" Insomnis: gog: 1150159287 pageId: 126466 @@ -83995,7 +81753,7 @@ Insomnis: Inspector - 生化战警: pageId: 149242 steam: 1153710 -'Inspector Gadget: Mad Time Party': +"Inspector Gadget: Mad Time Party": pageId: 189745 steam: 2409500 Inspector Waffles: @@ -84003,7 +81761,7 @@ Inspector Waffles: pageId: 132885 steam: 1055850 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Goloso Games\Inspector Waffles}}' + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Goloso Games\\Inspector Waffles}}" InstaCondo Limited: pageId: 93247 steam: 848420 @@ -84017,20 +81775,20 @@ Instant Dungeon!: pageId: 25549 steam: 326720 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Instant Dungeon\video.conf}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Instant Dungeon\save.dat}}' + - "{{Game data/config|Windows|{{p|appdata}}\\Instant Dungeon\\video.conf}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Instant Dungeon\\save.dat}}" Instinct: pageId: 94894 templates: - - '{{Game data/config|Windows|{{p|game}}\user_data\config_engine\}}' - - '{{Game data/saves|Windows|{{p|game}}\user_data\savegames\}}' + - "{{Game data/config|Windows|{{p|game}}\\user_data\\config_engine\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\user_data\\savegames\\}}" Instinct (2018): pageId: 137292 steam: 845380 Instinct Rush: pageId: 135117 steam: 1056070 -'Instinct: Survival': +"Instinct: Survival": pageId: 135271 steam: 1064790 Instinction: @@ -84049,37 +81807,37 @@ Insurgency: pageId: 14412 steam: 222880 templates: - - '{{Game data/config|Windows|{{P|game}}\insurgency\cfg\}}' -'Insurgency: Modern Infantry Combat': + - "{{Game data/config|Windows|{{P|game}}\\insurgency\\cfg\\}}" +"Insurgency: Modern Infantry Combat": pageId: 179766 steam: 17700 -'Insurgency: Sandstorm': +"Insurgency: Sandstorm": pageId: 97339 steam: 581320 steamSide: - - 1409142 - - 1409141 - - 1409143 - - 1409140 - 1308180 - 1308181 - 1308182 - 1308183 + - 1409140 + - 1409141 + - 1409142 + - 1409143 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Insurgency\Saved\Config\WindowsClient\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Insurgency\Saved\SaveGames\Profile\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Insurgency\\Saved\\Config\\WindowsClient\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Insurgency\\Saved\\SaveGames\\Profile\\}}" Insurmountable: gog: 1410163695 pageId: 175695 steam: 1385100 templates: - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\Daedalic Entertainment GmbH\Insurmountable\}}' + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\Daedalic Entertainment GmbH\\Insurmountable\\}}" Intake: pageId: 12108 steam: 237760 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Cipher Prime Studios, Inc.\Intake\}}' - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{P|uid}}/237760/}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Cipher Prime Studios, Inc.\\Intake\\}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{P|uid}}/237760/}}" Integrity: pageId: 75616 steam: 744760 @@ -84089,22 +81847,22 @@ Intelligence: Intelligence Trader: pageId: 100370 steam: 885100 -'Intelligence: Anime Girls': +"Intelligence: Anime Girls": pageId: 94776 steam: 862880 -'Intelligence: Cats': +"Intelligence: Cats": pageId: 104135 steam: 911270 -'Intelligence: Dinosaurs': +"Intelligence: Dinosaurs": pageId: 99652 steam: 835680 -'Intelligence: Dogs': +"Intelligence: Dogs": pageId: 110748 steam: 932350 -'Intelligence: Underwater Kingdom': +"Intelligence: Underwater Kingdom": pageId: 121393 steam: 957930 -'Intelligent Design: An Evolutionary Sandbox': +"Intelligent Design: An Evolutionary Sandbox": pageId: 62034 steam: 627620 Intensive Exposure: @@ -84119,7 +81877,7 @@ InterSection: Interactive Horror Stories: pageId: 148465 steam: 1169490 -'Interactivity: The Interactive Experience': +"Interactivity: The Interactive Experience": pageId: 148617 steam: 1166780 Interfectorem: @@ -84134,7 +81892,7 @@ Intergalactic Fishing: Intergalactic Road Warriors: pageId: 44191 steam: 435210 -'Intergalactic Traveler: The Omega Sector': +"Intergalactic Traveler: The Omega Sector": pageId: 77665 steam: 752080 Interkosmos: @@ -84163,13 +81921,13 @@ International Karate: International Rally Championship: pageId: 22653 templates: - - '{{Game data/config|Windows|{{P|game}}\var\}}' - - '{{Game data/saves|Windows|{{p|game}}\savedata\}}' + - "{{Game data/config|Windows|{{P|game}}\\var\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\savedata\\}}" International Snooker: pageId: 50149 steam: 299500 templates: - - '{{Game data/saves|Windows|{{P|appdata}}\IS2012\}}' + - "{{Game data/saves|Windows|{{P|appdata}}\\IS2012\\}}" International Space Station Tour VR: pageId: 90008 steam: 797200 @@ -84177,7 +81935,7 @@ Internet Cafe Simulator: pageId: 145158 steam: 1136160 templates: - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Cheesecake Dev\Internet Cafe Simulator\}}' + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Cheesecake Dev\\Internet Cafe Simulator\\}}" Internet Simulator: pageId: 82814 steam: 758050 @@ -84185,14 +81943,14 @@ Interplanetary: pageId: 16966 steam: 278910 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\TJR\Interplanetary\settings\gamesetting.cfg}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.TJR/Interplanetary/settings/gamesetting.cfg}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\TJR\Interplanetary\save}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.TJR/Interplanetary/save}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\TJR\\Interplanetary\\settings\\gamesetting.cfg}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.TJR/Interplanetary/settings/gamesetting.cfg}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\TJR\\Interplanetary\\save}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.TJR/Interplanetary/save}}" Interplanetary Hunter: pageId: 66613 steam: 677780 -'Interplanetary: Enhanced Edition': +"Interplanetary: Enhanced Edition": pageId: 67113 steam: 650220 Interplay Solitaire: @@ -84201,30 +81959,30 @@ Interplay Solitaire: Interregnum-Alpha: pageId: 141197 steam: 1103690 -'Interrogation: You Will Be Deceived': +"Interrogation: You Will Be Deceived": gog: 1500286266 pageId: 128619 steam: 1016770 templates: - - '{{Game data/config|Windows|{{P|appdata}}\Interrogation\config}}' - - '{{Game data/saves|Windows|{{P|appdata}}\Interrogation\save|{{P|appdata}}\Interrogation\save_globals}}' + - "{{Game data/config|Windows|{{P|appdata}}\\Interrogation\\config}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\Interrogation\\save|{{P|appdata}}\\Interrogation\\save_globals}}" Intershelter: pageId: 53445 steam: 520530 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\Skies Technologies}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Skies Technologies}}" Intersolar Overdrive: pageId: 122097 steam: 963510 -Interstate '76: +"Interstate '76": gog: 1207661003 gogSide: - 1207658836 pageId: 14567 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/saves|Windows|{{p|game}}\*.cmp|{{p|game}}\savegame.dir}}' -Interstate '82: + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\*.cmp|{{p|game}}\\savegame.dir}}" +"Interstate '82": gog: 1207659076 pageId: 14568 Interstellar Invaders: @@ -84237,9 +81995,9 @@ Interstellar Marines: pageId: 8423 steam: 236370 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Zero Point Software\Interstellar Marines}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Zero Point Software/Interstellar Marines}}' - - '{{Game data/saves|Steam|{{p|game}}\SavedStats.sav}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Zero Point Software\\Interstellar Marines}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Zero Point Software/Interstellar Marines}}" + - "{{Game data/saves|Steam|{{p|game}}\\SavedStats.sav}}" Interstellar Prime: pageId: 73624 steam: 644000 @@ -84249,13 +82007,13 @@ Interstellar Rift: Interstellar Rogue: pageId: 138613 steam: 1094050 -'Interstellar Space: Genesis': +"Interstellar Space: Genesis": gog: 1168260588 pageId: 124551 steam: 984680 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Praxis Games\ISG\}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Praxis Games\ISG}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Praxis Games\\ISG\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Praxis Games\\ISG}}" Interstellar Transport Company: pageId: 65337 steam: 573490 @@ -84289,18 +82047,18 @@ Into the Breach: pageId: 57866 steam: 590380 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\My Games\Into The Breach\}}' - - '{{Game data/config|OS X|{{P|osxhome}}/Library/Application Support/IntoTheBreach/}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/IntoTheBreach/settings.lua}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\My Games\Into The Breach\}}' - - '{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/IntoTheBreach/}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/IntoTheBreach/}}' + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\My Games\\Into The Breach\\}}" + - "{{Game data/config|OS X|{{P|osxhome}}/Library/Application Support/IntoTheBreach/}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/IntoTheBreach/settings.lua}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\My Games\\Into The Breach\\}}" + - "{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/IntoTheBreach/}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/IntoTheBreach/}}" Into the Core: pageId: 136558 renamedFrom: - Into The Core steam: 1081160 -'Into the Dark: Ultimate Trash Edition': +"Into the Dark: Ultimate Trash Edition": pageId: 50338 steam: 266050 Into the Dead: @@ -84316,7 +82074,7 @@ Into the Fray: Into the Gloom: pageId: 48264 steam: 342350 -'Into the Ice: Nazis of Neuschwabenland': +"Into the Ice: Nazis of Neuschwabenland": pageId: 62841 steam: 608610 Into the Maze: @@ -84332,10 +82090,8 @@ Into the Radius VR: pageId: 128621 steam: 1012790 templates: - - >- - {{Game data/config|Windows|\IntoTheRadius\Config and - \IntoTheRadius\Content\ITR\INISettings}} - - '{{Game data/saves|Windows|My Documents\My Games\Into The Radius\vX.X\Saves}}' + - "{{Game data/config|Windows|\\IntoTheRadius\\Config and \\IntoTheRadius\\Content\\ITR\\INISettings}}" + - "{{Game data/saves|Windows|My Documents\\My Games\\Into The Radius\\vX.X\\Saves}}" Into the Rhythm VR: pageId: 69695 steam: 677060 @@ -84356,21 +82112,21 @@ Intralism: pageId: 51455 steam: 513510 templates: - - '{{Game data/saves|Windows|{{p|game}}\Editor\*.* | {{p|game}}\Save\*.save}}' + - "{{Game data/saves|Windows|{{p|game}}\\Editor\\*.* | {{p|game}}\\Save\\*.save}}" Intravenous: gog: 1355225376 pageId: 167771 steam: 1486630 templates: - - '{{Game data/config|Windows|{{P|appdata}}\intravenous\}}' - - '{{Game data/saves|Windows|{{P|appdata}}\intravenous\savegames}}' + - "{{Game data/config|Windows|{{P|appdata}}\\intravenous\\}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\intravenous\\savegames}}" Intro Maker: pageId: 88116 steam: 812180 Introvert Quest: pageId: 56110 steam: 562640 -'Introvert: A Teenager Simulator': +"Introvert: A Teenager Simulator": pageId: 184396 steam: 1522660 Intrude: @@ -84380,38 +82136,36 @@ Intruder: pageId: 129793 steam: 518150 templates: - - '{{Game data/config|Windows|{{p|userprofile\appdata\locallow}}\SuperbossGames_com\Intruder\}}' + - "{{Game data/config|Windows|{{p|userprofile\\appdata\\locallow}}\\SuperbossGames_com\\Intruder\\}}" Intruder - War Areas: pageId: 54027 steam: 556680 -'Intruder Alert: Ixian Operations': +"Intruder Alert: Ixian Operations": pageId: 42163 steam: 458970 -'Intruders: Hide and Seek': +"Intruders: Hide and Seek": pageId: 147270 steam: 1045840 templates: - - >- - {{Game data/config|Windows|{{P|localappdata}}\Daedalic Entertainment - GmbH\Intruders\Saved\Config\WindowsNoEditor\}} - - '{{Game data/saves|Windows|{{P|localappdata}}\Daedalic Entertainment GmbH\Intruders\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\Daedalic Entertainment GmbH\\Intruders\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Daedalic Entertainment GmbH\\Intruders\\Saved\\SaveGames\\}}" Intrusion 2: pageId: 4757 steam: 214970 templates: - - '{{Game data/saves|Linux|{{p|linuxhome}}/intrusion2/}}' - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/214970/remote/}}' + - "{{Game data/saves|Linux|{{p|linuxhome}}/intrusion2/}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/214970/remote/}}" Intrusion Protocol: pageId: 65271 steam: 659040 -'Inua: A Story in Ice and Time': +"Inua: A Story in Ice and Time": gog: 1890740105 pageId: 172773 steam: 1479890 templates: - - '{{Game data/config|Windows|{{p|userprofile\appdata\locallow}}\ARTE France Apps\Inua\Settings.json}}' - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\ARTE France Apps\Inua\SaveFile.json}}' -'Inugami: Doggy Dojo!': + - "{{Game data/config|Windows|{{p|userprofile\\appdata\\locallow}}\\ARTE France Apps\\Inua\\Settings.json}}" + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\ARTE France Apps\\Inua\\SaveFile.json}}" +"Inugami: Doggy Dojo!": pageId: 161089 steam: 1044520 Invaded: @@ -84453,7 +82207,7 @@ Invasion of Barbarians: Invasion of the Box People: pageId: 102531 steam: 867760 -'Invasion: Brain Craving': +"Invasion: Brain Craving": pageId: 34958 steam: 423710 Invention: @@ -84469,21 +82223,21 @@ Inversion: pageId: 15950 steam: 212410 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Inversion Saves\game_local.cfg}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Inversion Saves\user.dat}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Inversion Saves\\game_local.cfg}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Inversion Saves\\user.dat}}" Inversus: pageId: 41587 steam: 432980 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\RJ\Inversus\ApplicationPrefs_Game.txt}}' - - '{{Game data/saves|Windows|{{P|steam}}\userdata\{{P|uid}}\432980\remote\Save.rj_save}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\RJ\\Inversus\\ApplicationPrefs_Game.txt}}" + - "{{Game data/saves|Windows|{{P|steam}}\\userdata\\{{P|uid}}\\432980\\remote\\Save.rj_save}}" Inverted: pageId: 42139 steam: 496870 -'Investi-Gator: The Case of the Big Crime': +"Investi-Gator: The Case of the Big Crime": pageId: 130624 steam: 1043690 -'Investigation Forces: Operation Zero': +"Investigation Forces: Operation Zero": pageId: 153973 steam: 1172040 Investigator: @@ -84492,11 +82246,11 @@ Investigator: Invicta Beam: pageId: 59651 steam: 611690 -'Invictus: In the Shadow of Olympus': +"Invictus: In the Shadow of Olympus": gog: 1207658655 pageId: 78132 steam: 692660 -'Invincible Presents: Atom Eve': +"Invincible Presents: Atom Eve": pageId: 191102 steam: 2060870 Invisible: @@ -84517,20 +82271,20 @@ Invisible Fist: Invisible Mind: pageId: 41691 steam: 502090 -'Invisible Wings: Chapter One': +"Invisible Wings: Chapter One": pageId: 184471 steam: 1419380 -'Invisible, Inc.': +"Invisible, Inc.": gog: 1430744353 pageId: 10255 steam: 243970 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Klei\InvisibleInc\settings\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Documents/Klei/InvisibleInc/settings/}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.local/share/Klei/InvisibleInc/settings/}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Klei\InvisibleInc\saves\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Documents/Klei/InvisibleInc/saves/}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.local/share/Klei/InvisibleInc/saves/}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Klei\\InvisibleInc\\settings\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Documents/Klei/InvisibleInc/settings/}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.local/share/Klei/InvisibleInc/settings/}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Klei\\InvisibleInc\\saves\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Documents/Klei/InvisibleInc/saves/}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.local/share/Klei/InvisibleInc/saves/}}" Invisibox: pageId: 73616 steam: 620940 @@ -84541,8 +82295,8 @@ Invitation: pageId: 130428 steam: 1023750 templates: - - '{{Game data/config|Windows|{{p|game}}\INVITATION_Data\Data\GameConfig.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\INVITATION_Data\Data\SavedGame\}}' + - "{{Game data/config|Windows|{{p|game}}\\INVITATION_Data\\Data\\GameConfig.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\INVITATION_Data\\Data\\SavedGame\\}}" Inway: pageId: 72814 steam: 713950 @@ -84555,28 +82309,28 @@ Ion Assault: Ion Fury: gog: 2130382962 gogSide: + - 1496956756 - 1740836875 - 1752977759 - - 1496956756 pageId: 88381 steam: 562860 steamSide: - 1588720 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Ion Fury\fury.cfg|{{p|appdata}}\Ion Fury\settings.cfg}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/fury}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Ion Fury\}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/fury}}' + - "{{Game data/config|Windows|{{p|appdata}}\\Ion Fury\\fury.cfg|{{p|appdata}}\\Ion Fury\\settings.cfg}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/fury}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Ion Fury\\}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/fury}}" IonAXXIA: pageId: 70311 steam: 681900 -'Ionball 2: Ionstorm': +"Ionball 2: Ionstorm": pageId: 50103 steam: 287120 Ionball 3: pageId: 61796 steam: 726300 -'Ira Act 1: Pilgrimage': +"Ira Act 1: Pilgrimage": pageId: 39608 renamedFrom: - Ira @@ -84584,21 +82338,19 @@ Ionball 3: Iragon 18: pageId: 179043 renamedFrom: - - 'Iragon: Prologue 18' + - "Iragon: Prologue 18" steam: 1097480 templates: - - '{{Game data/saves|Windows|{{p|localappdata}}\IragonProject\Saved\SaveGames\*.sav}}' -'Iratus: Lord of the Dead': + - "{{Game data/saves|Windows|{{p|localappdata}}\\IragonProject\\Saved\\SaveGames\\*.sav}}" +"Iratus: Lord of the Dead": gog: 1447412730 pageId: 90423 steam: 807120 templates: - - >- - {{Game - data/config|Windows|{{P|userprofile}}\AppData\LocalLow\Unfrozen\Iratus\settings|{{P|hkcu}}\Software\Unfrozen\Iratus\}} - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Unfrozen/Iratus}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Unfrozen\Iratus\}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Unfrozen/Iratus}}' + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Unfrozen\\Iratus\\settings|{{P|hkcu}}\\Software\\Unfrozen\\Iratus\\}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Unfrozen/Iratus}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Unfrozen\\Iratus\\}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Unfrozen/Iratus}}" Iridescence: pageId: 121869 steam: 792190 @@ -84613,7 +82365,7 @@ Iris and the Giant: pageId: 144963 steam: 1127610 templates: - - '{{Game data/saves|Windows|{{p|userprofile\AppData\LocalLow}}\GoblinzStudio\Iris and the Giant\Saves}}' + - "{{Game data/saves|Windows|{{p|userprofile\\AppData\\LocalLow}}\\GoblinzStudio\\Iris and the Giant\\Saves}}" Iris in Fantasy: pageId: 142037 steam: 1114280 @@ -84621,10 +82373,8 @@ Iris.Fall: pageId: 113606 steam: 907470 templates: - - >- - {{Game - data/config|Windows|{{P|hkcu}}\Software\NEXT\IrisFall|{{P|userprofile\appdata\locallow}}\NEXT\IrisFall\gameoption.esd}} - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\NEXT\IrisFall\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\NEXT\\IrisFall|{{P|userprofile\\appdata\\locallow}}\\NEXT\\IrisFall\\gameoption.esd}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\NEXT\\IrisFall\\}}" IrisPlus: pageId: 112756 steam: 939110 @@ -84640,8 +82390,8 @@ Iron Ascension: Iron Assault: pageId: 61888 templates: - - '{{Game data/config|DOS|{{p|game}}\IRON.CFG|{{p|game}}\MODEM.CFG}}' - - '{{Game data/saves|DOS|{{p|game}}\SAVED_*\}}' + - "{{Game data/config|DOS|{{p|game}}\\IRON.CFG|{{p|game}}\\MODEM.CFG}}" + - "{{Game data/saves|DOS|{{p|game}}\\SAVED_*\\}}" Iron Blade: pageId: 138617 steam: 1087730 @@ -84652,9 +82402,9 @@ Iron Brigade: pageId: 5475 steam: 115120 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Doublefine\IronBrigade\}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Doublefine\IronBrigade\}}' -'Iron Commando: Koutetsu no Senshi': + - "{{Game data/config|Windows|{{p|appdata}}\\Doublefine\\IronBrigade\\}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Doublefine\\IronBrigade\\}}" +"Iron Commando: Koutetsu no Senshi": gog: 1207185483 pageId: 42390 renamedFrom: @@ -84668,10 +82418,8 @@ Iron Danger: pageId: 105547 steam: 899310 templates: - - >- - {{Game - data/config|Windows|{{p|userprofile}}\AppData\LocalLow\ActionSquad\IronDanger\IronDangerSettings.json|{{p|hkcu}}\Software\ActionSquad\IronDanger}} - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\ActionSquad\IronDanger\Saves}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\ActionSquad\\IronDanger\\IronDangerSettings.json|{{p|hkcu}}\\Software\\ActionSquad\\IronDanger}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\ActionSquad\\IronDanger\\Saves}}" Iron Defense VR: pageId: 63361 steam: 642710 @@ -84681,38 +82429,38 @@ Iron Fish: Iron Fisticle: pageId: 37971 steam: 306700 -'Iron Front: Digital War Edition': +"Iron Front: Digital War Edition": pageId: 40775 steam: 91330 -'Iron Grip: Warlord': +"Iron Grip: Warlord": pageId: 3348 steam: 31700 templates: - - '{{Game data/config|Windows|{{p|game}}\base\config.cfg}}' + - "{{Game data/config|Windows|{{p|game}}\\base\\config.cfg}}" Iron Ground: pageId: 96279 steam: 853120 Iron Harvest: gog: 2085637343 gogSide: - - 1259846265 - 1249219203 - - 1447934868 + - 1259846265 - 1340696977 + - 1447934868 - 1755099353 pageId: 133035 steam: 826630 steamSide: - - 1628070 - - 1341703 - 1341701 - 1341702 + - 1341703 + - 1628070 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\KingArt\Iron Harvest\}}' - - '{{Game data/config|Steam|{{p|steam}}\userdata\{{p|uid}}\826630\remote\}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\KingArt\Iron Harvest\*.sav}}' - - '{{Game data/saves|GOG.com|{{P|localappdata}}\GOG.com\Galaxy\Applications\49637353028337449\Storage\Shared\Files\}}' - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\826630\remote\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\KingArt\\Iron Harvest\\}}" + - "{{Game data/config|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\826630\\remote\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\KingArt\\Iron Harvest\\*.sav}}" + - "{{Game data/saves|GOG.com|{{P|localappdata}}\\GOG.com\\Galaxy\\Applications\\49637353028337449\\Storage\\Shared\\Files\\}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\826630\\remote\\}}" Iron Heart: pageId: 135565 steam: 1034370 @@ -84738,16 +82486,14 @@ Iron Man: pageId: 22728 steam: 10490 templates: - - '{{Game data/config|Windows|{{p|game}}\engine.ini}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\Sega\Iron Man\}}' + - "{{Game data/config|Windows|{{p|game}}\\engine.ini}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\Sega\\Iron Man\\}}" Iron Marines: gog: 2047907642 pageId: 126272 steam: 931280 templates: - - >- - {{Game data/saves|Windows| C:\Users\[Your Username]\AppData\LocalLow\Ironhide Game Studio\Iron Marines\[A string - of numbers]}} + - "{{Game data/saves|Windows| C:\\Users\\[Your Username]\\AppData\\LocalLow\\Ironhide Game Studio\\Iron Marines\\[A string of numbers]}}" Iron Meat: pageId: 157154 steam: 1157740 @@ -84757,7 +82503,7 @@ Iron Roses: Iron Sea Defenders: pageId: 38827 steam: 431750 -'Iron Sky: Invasion': +"Iron Sky: Invasion": pageId: 40669 steam: 224900 Iron Snout: @@ -84771,8 +82517,8 @@ Iron Storm: pageId: 13181 steam: 296180 templates: - - '{{Game data/config|Windows|{{p|game}}\settings\user.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\save\}}' + - "{{Game data/config|Windows|{{p|game}}\\settings\\user.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\save\\}}" Iron Sun: pageId: 153109 steam: 1164020 @@ -84780,12 +82526,12 @@ Iron Tides: pageId: 66055 steam: 609410 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\Crash Wave Games\Iron Tides\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Crash Wave Games\Iron Tides\*.txt}}' -'Iron Warriors: T-72 Tank Command': + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Crash Wave Games\\Iron Tides\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Crash Wave Games\\Iron Tides\\*.txt}}" +"Iron Warriors: T-72 Tank Command": pageId: 41400 renamedFrom: - - 'Iron Warriors: T - 72 Tank Command' + - "Iron Warriors: T - 72 Tank Command" steam: 1670 Iron Wings: pageId: 61794 @@ -84810,51 +82556,51 @@ Ironcast: - 407450 - 407451 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Dreadbit\Ironcast\}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Dreadbit/Ironcast/}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\Ironcast\{{P|uid}}\}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/Documents/.config/unity3d/Ironcast/{{P|uid}}/}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Dreadbit\\Ironcast\\}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Dreadbit/Ironcast/}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Ironcast\\{{P|uid}}\\}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/Documents/.config/unity3d/Ironcast/{{P|uid}}/}}" Ironclad: gog: 1295076499 pageId: 131860 templates: - - '{{Game data/config|Windows|{{p|appdata}}\SNK\ironclad}}' + - "{{Game data/config|Windows|{{p|appdata}}\\SNK\\ironclad}}" Ironclad Tactics: gog: 1434445160 pageId: 10229 steam: 226960 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Ironclad Tactics\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Ironclad Tactics/}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.ironcladtactics/}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Ironclad Tactics\profile\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Ironclad Tactics/profile/}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.ironcladtactics/profile/}}' -'Ironclads 2: American Civil War': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Ironclad Tactics\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Ironclad Tactics/}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.ironcladtactics/}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Ironclad Tactics\\profile\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Ironclad Tactics/profile/}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.ironcladtactics/profile/}}" +"Ironclads 2: American Civil War": pageId: 45751 steam: 414260 -'Ironclads 2: Boshin War': +"Ironclads 2: Boshin War": pageId: 61441 steam: 602860 -'Ironclads 2: Caroline Islands War 1885': +"Ironclads 2: Caroline Islands War 1885": pageId: 66029 steam: 647840 -'Ironclads 2: War of the Pacific': +"Ironclads 2: War of the Pacific": pageId: 53401 steam: 549400 -'Ironclads: American Civil War': +"Ironclads: American Civil War": pageId: 41138 steam: 46700 -'Ironclads: Anglo Russian War 1866': +"Ironclads: Anglo Russian War 1866": pageId: 40955 steam: 46830 -'Ironclads: Chincha Islands War 1866': +"Ironclads: Chincha Islands War 1866": pageId: 40957 steam: 46840 -'Ironclads: High Seas': +"Ironclads: High Seas": pageId: 41136 steam: 46710 -'Ironclads: Schleswig War 1864': +"Ironclads: Schleswig War 1864": pageId: 40956 steam: 46760 Ironguard: @@ -84872,27 +82618,27 @@ Ironsight: steamSide: - 715220 templates: - - '{{Game data/config|Windows|{{p|game}}\ini\ironsight_local.ini}}' + - "{{Game data/config|Windows|{{p|game}}\\ini\\ironsight_local.ini}}" Ironsight (Pre-OBT ver.): pageId: 138960 steam: 783770 Ironsmith Medieval Simulator: pageId: 122806 steam: 978700 -'Irony Curtain: From Matryoshka with Love': +"Irony Curtain: From Matryoshka with Love": gog: 1388656427 pageId: 105583 steam: 866190 templates: - - '{{Game data/saves|Windows|{{p|appdata}}\Artifex Mundi\Irony Curtain\save\game\}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.steam/steam/userdata/93126581/866190/remote/profile/save/game/ }}' + - "{{Game data/saves|Windows|{{p|appdata}}\\Artifex Mundi\\Irony Curtain\\save\\game\\}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.steam/steam/userdata/93126581/866190/remote/profile/save/game/ }}" Irony of Nightmare: pageId: 78012 steam: 740290 Irrational Exuberance: pageId: 39450 steam: 443790 -'Irrational Exuberance: Prologue': +"Irrational Exuberance: Prologue": pageId: 37285 steam: 343730 IrreVRsible: @@ -84916,41 +82662,39 @@ Isekai Frontline: pageId: 185836 steam: 1924140 templates: - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\Studio Ginkgo\ISEKAI FRONTLINE\}}' + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\Studio Ginkgo\\ISEKAI FRONTLINE\\}}" Isekai Quest: pageId: 166460 steam: 1268110 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\appdata\locallow}}\Studio Ginkgo\ISEKAI - QUEST\config|{{p|hkcu}}\Software\Studio Ginkgo\ISEKAI QUEST\}} - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\Studio Ginkgo\ISEKAI QUEST\*.sav}}' -'Ishar 2: Messengers of Doom': + - "{{Game data/config|Windows|{{p|userprofile\\appdata\\locallow}}\\Studio Ginkgo\\ISEKAI QUEST\\config|{{p|hkcu}}\\Software\\Studio Ginkgo\\ISEKAI QUEST\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\Studio Ginkgo\\ISEKAI QUEST\\*.sav}}" +"Ishar 2: Messengers of Doom": gog: 1207662353 gogSide: - 1207658685 pageId: 13113 templates: - - '{{Game data/config|DOS|{{p|game}}\START.STP}}' - - '{{Game data/saves|DOS|{{p|game}}\*.SAV}}' -'Ishar 3: The Seven Gates of Infinity': + - "{{Game data/config|DOS|{{p|game}}\\START.STP}}" + - "{{Game data/saves|DOS|{{p|game}}\\*.SAV}}" +"Ishar 3: The Seven Gates of Infinity": gog: 1207662363 pageId: 13116 templates: - - '{{Game data/config|DOS|{{p|game}}\START.STP}}' - - '{{Game data/saves|DOS|{{p|game}}\*.SAV}}' -'Ishar: Legend of the Fortress': + - "{{Game data/config|DOS|{{p|game}}\\START.STP}}" + - "{{Game data/saves|DOS|{{p|game}}\\*.SAV}}" +"Ishar: Legend of the Fortress": gog: 1207662343 gogSide: - 1207658685 pageId: 13112 templates: - - '{{Game data/config|DOS|{{p|game}}\START.STP}}' - - '{{Game data/saves|DOS|{{p|game}}\*.SAV}}' + - "{{Game data/config|DOS|{{p|game}}\\START.STP}}" + - "{{Game data/saves|DOS|{{p|game}}\\*.SAV}}" Ishin no Arashi: pageId: 59589 steam: 545010 -'Ishin no Arashi: Bakumatsu Shishiden': +"Ishin no Arashi: Bakumatsu Shishiden": pageId: 191267 Ishmael: pageId: 123826 @@ -85003,7 +82747,7 @@ Island Saver: pageId: 186842 steam: 1210250 templates: - - '{{Game data/saves|Windows|{{P|localappdata}}\NatWest\Island Saver by NatWest\Game}}' + - "{{Game data/saves|Windows|{{P|localappdata}}\\NatWest\\Island Saver by NatWest\\Game}}" Island Simulator 2016: pageId: 54074 steam: 507440 @@ -85031,8 +82775,8 @@ Island Tribe 5: Island Xtreme Stunts: pageId: 21629 templates: - - '{{Game data/config|Windows|{{p|appdata}}\LEGO Interactive\Island Xtreme Stunts\LIXS.cfg}}' - - '{{Game data/saves|Windows|{{p|appdata}}\LEGO Interactive\Island Xtreme Stunts}}' + - "{{Game data/config|Windows|{{p|appdata}}\\LEGO Interactive\\Island Xtreme Stunts\\LIXS.cfg}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\LEGO Interactive\\Island Xtreme Stunts}}" Island of Penance: pageId: 164497 steam: 1287130 @@ -85044,18 +82788,18 @@ Islanders: pageId: 130398 steam: 1046030 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\Grizzly Games\ISLANDERS}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Grizzly Games/ISLANDERS}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Grizzly Games/ISLANDERS/}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Grizzly Games\ISLANDERS}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Grizzly Games/ISLANDERS}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Grizzly Games/ISLANDERS/}}' -'Islands of Nyne: Battle Royale': + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Grizzly Games\\ISLANDERS}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Grizzly Games/ISLANDERS}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Grizzly Games/ISLANDERS/}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Grizzly Games\\ISLANDERS}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Grizzly Games/ISLANDERS}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Grizzly Games/ISLANDERS/}}" +"Islands of Nyne: Battle Royale": pageId: 94314 steam: 728540 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\IONBranch\Saved\Config\WindowsClient\}}' -'Islands: Non-Places': + - "{{Game data/config|Windows|{{p|localappdata}}\\IONBranch\\Saved\\Config\\WindowsClient\\}}" +"Islands: Non-Places": pageId: 52322 steam: 540510 Isle TD: @@ -85076,7 +82820,7 @@ Isles of Adalar: pageId: 151393 steam: 1112620 templates: - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\PeakwaySoftware\IslesOfAdalar\save\}}' + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\PeakwaySoftware\\IslesOfAdalar\\save\\}}" Islet Online: pageId: 44732 steam: 428180 @@ -85085,7 +82829,7 @@ Islets: pageId: 180557 steam: 1669420 templates: - - '{{Game data/saves|Windows|{{p|localappdata}}/Islets}}' + - "{{Game data/saves|Windows|{{p|localappdata}}/Islets}}" Iso-Sphere: pageId: 45643 steam: 414060 @@ -85095,7 +82839,7 @@ IsoBoom: Isoland: pageId: 92859 steam: 831570 -'Isoland 2: Ashes of Time': +"Isoland 2: Ashes of Time": pageId: 92861 steam: 823580 Isolated: @@ -85125,7 +82869,7 @@ Isotiles 2: Isotower: pageId: 126242 steam: 801370 -'Istanbul: Digital Edition': +"Istanbul: Digital Edition": pageId: 121507 steam: 943410 Istrolid: @@ -85137,17 +82881,13 @@ Isyium: It Came from Space and Ate Our Brains: pageId: 38329 renamedFrom: - - 'It Came from Space, and Ate Our Brains' + - "It Came from Space, and Ate Our Brains" - It Came from Space and Ate Our Brains - - 'It Came from Space, and Ate Our Brains' + - "It Came from Space, and Ate Our Brains" steam: 342620 templates: - - >- - {{Game data/config|Windows|{{P|userprofile\appdata\locallow}}\Triangle Studios\It Came From Space And Ate Our - Brains\settings.std|{{P|hkcu}}\SOFTWARE\Triangle Studios\It came from space and ate our brains\}} - - >- - {{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Triangle Studios\It Came From Space And Ate Our - Brains}} + - "{{Game data/config|Windows|{{P|userprofile\\appdata\\locallow}}\\Triangle Studios\\It Came From Space And Ate Our Brains\\settings.std|{{P|hkcu}}\\SOFTWARE\\Triangle Studios\\It came from space and ate our brains\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Triangle Studios\\It Came From Space And Ate Our Brains}}" It Comes Around - A Kinetic Novel: pageId: 50737 steam: 520520 @@ -85162,12 +82902,9 @@ It Lurks Below: pageId: 82416 steam: 697550 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Graybeard Games\It Lurks Below\ilb_config}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Graybeard Games\It Lurks Below}}' - - >- - {{Game data/saves|Microsoft - Store|{{p|localappdata}}\Packages\GraybeardGames.ItLurksBelow_k6kpj6y7fp0ht\LocalState\Graybeard Games\It Lurks - Below}} + - "{{Game data/config|Windows|{{p|localappdata}}\\Graybeard Games\\It Lurks Below\\ilb_config}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Graybeard Games\\It Lurks Below}}" + - "{{Game data/saves|Microsoft Store|{{p|localappdata}}\\Packages\\GraybeardGames.ItLurksBelow_k6kpj6y7fp0ht\\LocalState\\Graybeard Games\\It Lurks Below}}" It Lurks in the Woods: pageId: 57657 steam: 589620 @@ -85187,80 +82924,78 @@ It Takes Two: pageId: 165653 steam: 1426210 templates: - - >- - {{Game - data/config|Windows|{{P|localappdata}}\ItTakesTwo\*.Nuts|{{P|localappdata}}\ItTakesTwo\Saved\Config\WindowsNoEditor\}} - - '{{Game data/saves|Windows|{{P|localappdata}}\ItTakesTwo\SaveData.Nuts}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\ItTakesTwo\\*.Nuts|{{P|localappdata}}\\ItTakesTwo\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\ItTakesTwo\\SaveData.Nuts}}" It Will Find You: pageId: 148481 steam: 1165590 It comes from hell: pageId: 132678 steam: 1032420 -It's A Racing Game: +"It's A Racing Game": pageId: 121597 steam: 811690 -It's About The Journey: +"It's About The Journey": pageId: 145274 steam: 1043590 -It's Chicken!: +"It's Chicken!": pageId: 82073 steam: 796890 -It's Dark: +"It's Dark": pageId: 180157 steam: 1994220 -It's Fun To Break Things: +"It's Fun To Break Things": pageId: 129689 steam: 1027660 -It's Killing Time: +"It's Killing Time": pageId: 43420 steam: 461650 -It's Not A Moon: +"It's Not A Moon": pageId: 124396 steam: 968920 -It's Possible: +"It's Possible": pageId: 137362 steam: 968170 -It's Quiz Time: +"It's Quiz Time": pageId: 76239 steam: 648780 -It's Raining Fists and Metal: +"It's Raining Fists and Metal": pageId: 150918 steam: 1080240 -It's Spring Again: +"It's Spring Again": pageId: 34018 steam: 434210 -It's Too Rainy Day: +"It's Too Rainy Day": pageId: 130100 steam: 1042470 -It's Village: +"It's Village": pageId: 65847 steam: 656270 -'It''s You: A Breakup Story': +"It's You: A Breakup Story": pageId: 102383 steam: 878020 -It's a Long Way To the Top (If You Wanna Be a CEO): +"It's a Long Way To the Top (If You Wanna Be a CEO)": pageId: 130344 steam: 1017650 -It's a Trap: +"It's a Trap": pageId: 120883 steam: 912420 -It's a Wipe!: +"It's a Wipe!": pageId: 49129 renamedFrom: - - It's A Wipe! + - "It's A Wipe!" steam: 330620 -It's a Wrap!: +"It's a Wrap!": gog: 1304241745 pageId: 183121 steam: 1684270 -It's always monday: +"It's always monday": pageId: 53882 renamedFrom: - - It's always monday - - It's Always Monday + - "It's always monday" + - "It's Always Monday" steam: 558660 -It's time to get out from the solar system: +"It's time to get out from the solar system": pageId: 46608 steam: 399090 ItazuraVR: @@ -85284,9 +83019,9 @@ Itorah: - ITORAH steam: 1132910 templates: - - '{{Game data/config|Windows|{{P|userprofile}}\AppData\LocalLow\Grimbart Tales\Itorah\Itorah\options.sav}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Grimbart Tales\Itorah\Itorah\gamestates\}}' -'Its Simple, SHOOT': + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Grimbart Tales\\Itorah\\Itorah\\options.sav}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Grimbart Tales\\Itorah\\Itorah\\gamestates\\}}" +"Its Simple, SHOOT": pageId: 129863 steam: 1034200 Its Your Last Chance in New School: @@ -85300,28 +83035,28 @@ Itta: pageId: 88253 steam: 775580 templates: - - '{{Game data/saves|Windows|{{p|localappdata}}\ITTA_WORKBUILD_FINAL\}}' + - "{{Game data/saves|Windows|{{p|localappdata}}\\ITTA_WORKBUILD_FINAL\\}}" Ittle Dew: gog: 1207659258 pageId: 9056 steam: 241320 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Ludosity\IttleDew\}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Ludosity/IttleDew/}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Ludosity\IttleDew\IttleDew}}' - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{P|uid}}/241320/remote/}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Ludosity\\IttleDew\\}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Ludosity/IttleDew/}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Ludosity\\IttleDew\\IttleDew}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{P|uid}}/241320/remote/}}" Ittle Dew 2: pageId: 39522 steam: 395620 templates: - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Ludosity/Ittle Dew 2/}}' + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Ludosity/Ittle Dew 2/}}" ItzaBitza: pageId: 41220 steam: 40200 ItzaZoo: pageId: 41195 steam: 40210 -'Iubes:2': +"Iubes:2": pageId: 77962 steam: 682610 Ivan vs Nazi Zombies: @@ -85334,12 +83069,12 @@ Iwaihime: pageId: 164379 steam: 1372300 templates: - - '{{Game data/config|Windows|{{p|appdata}}\DMM_GAMES\Iwaihime\VER_100\savedata.bin}}' - - '{{Game data/saves|Windows|{{p|appdata}}\DMM_GAMES\Iwaihime\VER_100\savedata.bin}}' + - "{{Game data/config|Windows|{{p|appdata}}\\DMM_GAMES\\Iwaihime\\VER_100\\savedata.bin}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\DMM_GAMES\\Iwaihime\\VER_100\\savedata.bin}}" IxSHE Tell: pageId: 164367 steam: 1340120 -Izanami's Dream Battle: +"Izanami's Dream Battle": pageId: 52566 steam: 547730 Izeriya: @@ -85359,29 +83094,29 @@ J-Girl: J.A.W.S: pageId: 87954 steam: 753610 -J.R.R. Tolkien's Riders of Rohan: +"J.R.R. Tolkien's Riders of Rohan": pageId: 22956 -'J.R.R. Tolkien''s The Lord of the Rings, Vol. I': +"J.R.R. Tolkien's The Lord of the Rings, Vol. I": pageId: 19720 templates: - - '{{Game data/config|DOS|{{p|game}}\}}' - - '{{Game data/saves|DOS|{{p|game}}\}}' -'J.R.R. Tolkien''s The Lord of the Rings, Vol. II: The Two Towers': + - "{{Game data/config|DOS|{{p|game}}\\}}" + - "{{Game data/saves|DOS|{{p|game}}\\}}" +"J.R.R. Tolkien's The Lord of the Rings, Vol. II: The Two Towers": pageId: 22960 -J.R.R. Tolkien's War in Middle Earth: +"J.R.R. Tolkien's War in Middle Earth": pageId: 22949 J.U.L.I.A. Among the Stars: gog: 1457085654 pageId: 34220 steam: 257690 templates: - - '{{Game data/config|Windows|{{P|appdata}}\JULIAAtS*R*\settings.xml}}' - - '{{Game data/config|OS X|{{P|osxhome}}/Library/Application Support/JULIAAtS*R*/settings.xml}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/JULIAAtS*R*/settings.xml}}' - - '{{Game data/saves|Windows|{{P|appdata}}\JULIAAtS*R*\}}' - - '{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/JULIAAtS*R*/}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/JULIAAtS*R*/}}' -'J.U.R: Japan Underground Racing': + - "{{Game data/config|Windows|{{P|appdata}}\\JULIAAtS*R*\\settings.xml}}" + - "{{Game data/config|OS X|{{P|osxhome}}/Library/Application Support/JULIAAtS*R*/settings.xml}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/JULIAAtS*R*/settings.xml}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\JULIAAtS*R*\\}}" + - "{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/JULIAAtS*R*/}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/JULIAAtS*R*/}}" +"J.U.R: Japan Underground Racing": pageId: 36220 steam: 513930 J15 Fighter Jet VR: @@ -85390,7 +83125,7 @@ J15 Fighter Jet VR: JAGD LANZER: pageId: 150055 steam: 1175590 -'JASEM: Just Another Shooter with Electronic Music': +"JASEM: Just Another Shooter with Electronic Music": pageId: 61744 steam: 610840 JBMod: @@ -85398,7 +83133,7 @@ JBMod: renamedFrom: - UNDECEMBER steam: 2158860 -'JCB Pioneer: Mars': +"JCB Pioneer: Mars": pageId: 69549 steam: 536660 JDM Tuner Racing: @@ -85424,7 +83159,7 @@ JJBoom: JOBU-KI: pageId: 124066 steam: 993290 -'JOLT: Super Robot Racer': +"JOLT: Super Robot Racer": pageId: 52774 steam: 485790 JORRY: @@ -85436,21 +83171,21 @@ JOY You-I-He 蘭花園: JOYDOOR: pageId: 108152 steam: 917800 -'JQ: Beautiful Japan': +"JQ: Beautiful Japan": pageId: 108266 steam: 918070 -'JQ: Chemistry': +"JQ: Chemistry": pageId: 91044 steam: 826010 -'JQ: Cosmos': +"JQ: Cosmos": pageId: 134871 renamedFrom: - - 'JQ: cosmos' + - "JQ: cosmos" steam: 1054650 -'JQ: Countries': +"JQ: Countries": pageId: 82340 steam: 796360 -'JQ: Dogs & Cats': +"JQ: Dogs & Cats": pageId: 89413 steam: 816250 JU: @@ -85459,11 +83194,11 @@ JU: JUDA: pageId: 142357 steam: 1119910 -JUMP AND RUN - DON'T FALL: +"JUMP AND RUN - DON'T FALL": pageId: 109410 renamedFrom: - - JUMP AND RUN - DON'T FALL - - 'Jump and Run: Don''t Fall' + - "JUMP AND RUN - DON'T FALL" + - "Jump and Run: Don't Fall" steam: 898680 JUMP UP: pageId: 114932 @@ -85479,11 +83214,11 @@ JUST a Game: steam: 891090 JX3 Online: pageId: 167715 -'Jabroni Brawl: Episode 3': +"Jabroni Brawl: Episode 3": pageId: 151694 steam: 869480 templates: - - '{{Game data/config|Windows|{{P|steam}}\steamapps\common\Jabroni Brawl Episode 3\jbep3\cfg}}' + - "{{Game data/config|Windows|{{P|steam}}\\steamapps\\common\\Jabroni Brawl Episode 3\\jbep3\\cfg}}" Jack: pageId: 136078 steam: 1076720 @@ -85507,25 +83242,25 @@ Jack Keane: pageId: 13507 steam: 12340 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Jack Keane\settings.ini}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Jack Keane\save\}}' -'Jack Keane 2: The Fire Within': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Jack Keane\\settings.ini}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Jack Keane\\save\\}}" +"Jack Keane 2: The Fire Within": gog: 1207659241 pageId: 13510 steam: 236970 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Jack Keane and the Fire Within\settings.ini}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Jack Keane and the Fire Within\save\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Jack Keane and the Fire Within\\settings.ini}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Jack Keane and the Fire Within\\save\\}}" Jack Lumber: pageId: 6842 steam: 220900 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Owlchemy Labs\Jack Lumber\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Preferences/unity.Owlchemy Labs.Jack Lumber.plist}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Owlchemy Labs/Jack Lumber/}}' - - '{{Game data/saves|Windows|{{p|hkcu}}\Software\Owlchemy Labs\Jack Lumber\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Preferences/unity.Owlchemy Labs.Jack Lumber.plist}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Owlchemy Labs/Jack Lumber/}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Owlchemy Labs\\Jack Lumber\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Preferences/unity.Owlchemy Labs.Jack Lumber.plist}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Owlchemy Labs/Jack Lumber/}}" + - "{{Game data/saves|Windows|{{p|hkcu}}\\Software\\Owlchemy Labs\\Jack Lumber\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Preferences/unity.Owlchemy Labs.Jack Lumber.plist}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Owlchemy Labs/Jack Lumber/}}" Jack Move: gog: 2075493778 gogSide: @@ -85536,13 +83271,9 @@ Jack Move: - 1813150 - 1961320 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\appdata\locallow}}\SoRomantic\Jack - Move\SaveFiles\options.jams||{{p|hkcu}}\Software\\SoRomantic\Jack Move}} - - >- - {{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\SoRomantic\Jack - Move\SaveFiles\savefile_*.jams|{{p|userprofile\appdata\locallow}}\SoRomantic\Jack Move\SaveFiles\autosave.jams}} -Jack N' Jill DX: + - "{{Game data/config|Windows|{{p|userprofile\\appdata\\locallow}}\\SoRomantic\\Jack Move\\SaveFiles\\options.jams||{{p|hkcu}}\\Software\\\\SoRomantic\\Jack Move}}" + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\SoRomantic\\Jack Move\\SaveFiles\\savefile_*.jams|{{p|userprofile\\appdata\\locallow}}\\SoRomantic\\Jack Move\\SaveFiles\\autosave.jams}}" +"Jack N' Jill DX": pageId: 112092 steam: 873560 Jack Nicklaus Perfect Golf: @@ -85553,13 +83284,13 @@ Jack Orlando: pageId: 22924 steam: 253960 templates: - - '{{Game data/config|Windows|{{p|HKLM}}\TopWare Poland\Jack Orlando}}' - - '{{Game data/saves|DOS|{{p|game}}\Savegame}}' - - '{{Game data/saves|Windows|{{p|game}}\Savegame}}' + - "{{Game data/config|Windows|{{p|HKLM}}\\TopWare Poland\\Jack Orlando}}" + - "{{Game data/saves|DOS|{{p|game}}\\Savegame}}" + - "{{Game data/saves|Windows|{{p|game}}\\Savegame}}" Jack Spriggan: pageId: 63408 steam: 620660 -'Jack and Sara: Educational Game': +"Jack and Sara: Educational Game": pageId: 92879 steam: 841010 Jack in the Dark: @@ -85567,17 +83298,17 @@ Jack in the Dark: Jack the Barbarian: pageId: 93898 steam: 852160 -'Jack the Ripper: New-York 1901': +"Jack the Ripper: New-York 1901": pageId: 184822 Jack troubles: pageId: 156001 steam: 1205020 -Jack's Attic: +"Jack's Attic": pageId: 23337 -Jack's Game: +"Jack's Game": pageId: 71680 steam: 670790 -Jack's Gang: +"Jack's Gang": pageId: 61016 steam: 607270 Jack-In-A-Castle: @@ -85589,7 +83320,7 @@ Jack-O-Lantern Covers of Darkness: JackHammer: pageId: 66283 steam: 630040 -'JackQuest: The Tale of The Sword': +"JackQuest: The Tale of The Sword": pageId: 122596 steam: 937050 Jackal: @@ -85602,39 +83333,39 @@ Jackal (2016): Jacked: pageId: 185897 templates: - - '{{Game data/saves|Windows|{{P|game}}\data\pc\savegame.txt}}' + - "{{Game data/saves|Windows|{{P|game}}\\data\\pc\\savegame.txt}}" Jackpot Poker by PokerStars: pageId: 37042 steam: 455020 -'Jacktus Green: The Fluffy, the Spiky and the Spicy': +"Jacktus Green: The Fluffy, the Spiky and the Spicy": pageId: 180116 steam: 1986770 Jacob: pageId: 42283 steam: 449780 -'Jacob Jones and the Bigfoot Mystery: Episode 1': +"Jacob Jones and the Bigfoot Mystery: Episode 1": pageId: 35001 steam: 264400 -'Jacob Jones and the Bigfoot Mystery: Episode 2': +"Jacob Jones and the Bigfoot Mystery: Episode 2": pageId: 49605 steam: 308180 -'Jade Empire: Special Edition': +"Jade Empire: Special Edition": gog: 1207659237 pageId: 3230 steam: 7110 templates: - - '{{Game data/config|Windows|{{p|game}}\JadeEmpire.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\Save\}}' -Jade's Ascension: + - "{{Game data/config|Windows|{{p|game}}\\JadeEmpire.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\Save\\}}" +"Jade's Ascension": pageId: 142307 steam: 1119680 -Jade's Dungeon Descent: +"Jade's Dungeon Descent": pageId: 98422 steam: 864600 -Jade's Journey: +"Jade's Journey": pageId: 54620 steam: 552580 -Jade's Journey 2: +"Jade's Journey 2": pageId: 62188 steam: 607030 Jagged Alliance: @@ -85642,9 +83373,9 @@ Jagged Alliance: pageId: 12500 steam: 283270 templates: - - '{{Game data/config|DOS|{{p|game}}\SOUND.CFG}}' - - '{{Game data/saves|DOS|{{p|game}}\*.SAV}}' - - '{{Game data/saves|Steam|{{p|game}}\Jagged Alliance Gold\Jagged Alliance\Installed\JAGGED\*.SAV}}' + - "{{Game data/config|DOS|{{p|game}}\\SOUND.CFG}}" + - "{{Game data/saves|DOS|{{p|game}}\\*.SAV}}" + - "{{Game data/saves|Steam|{{p|game}}\\Jagged Alliance Gold\\Jagged Alliance\\Installed\\JAGGED\\*.SAV}}" Jagged Alliance 2: gog: 1207658696 pageId: 12619 @@ -85655,33 +83386,33 @@ Jagged Alliance 2: - 12380 - 545210 templates: - - '{{Game data/config|Windows|{{p|game}}\Ja2.set}}' - - '{{Game data/saves|Windows|{{p|game}}\SavedGames}}' -'Jagged Alliance 2: Unfinished Business': + - "{{Game data/config|Windows|{{p|game}}\\Ja2.set}}" + - "{{Game data/saves|Windows|{{p|game}}\\SavedGames}}" +"Jagged Alliance 2: Unfinished Business": gog: 1207658653 pageId: 12944 steam: 12380 steamSide: - 1620 templates: - - '{{Game data/config|Windows|{{p|game}}\Ja2.set}}' - - '{{Game data/saves|Windows|{{p|game}}\SavedGames}}' -'Jagged Alliance 2: Wildfire': + - "{{Game data/config|Windows|{{p|game}}\\Ja2.set}}" + - "{{Game data/saves|Windows|{{p|game}}\\SavedGames}}" +"Jagged Alliance 2: Wildfire": gog: 1207658743 gogSide: - - 1972971639 - - 1744970334 - 1452824319 + - 1744970334 + - 1972971639 - 2041310597 pageId: 12947 steam: 215930 steamSide: + - 2482680 - 2482740 - 2513910 - - 2482680 templates: - - '{{Game data/config|Windows|{{p|game}}\WF6.set}}' - - '{{Game data/saves|Windows|{{p|game}}\SavedGames}}' + - "{{Game data/config|Windows|{{p|game}}\\WF6.set}}" + - "{{Game data/saves|Windows|{{p|game}}\\SavedGames}}" Jagged Alliance 3: gog: 1556263729 gogSide: @@ -85691,17 +83422,17 @@ Jagged Alliance 3: steamSide: - 2469350 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Roaming\Jagged Alliance 3\LocalStorage.lua}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\Saved Games\Jagged Alliance 3\{{p|uid}}\*.sav}}' + - "{{Game data/config|Windows|{{p|appdata}}\\Roaming\\Jagged Alliance 3\\LocalStorage.lua}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Saved Games\\Jagged Alliance 3\\{{p|uid}}\\*.sav}}" Jagged Alliance Flashback: pageId: 17586 steam: 256010 templates: - - '{{Game data/saves|Windows|{{p|localappdata}}\Full Control\Jagged Alliance Flashback\}}' + - "{{Game data/saves|Windows|{{p|localappdata}}\\Full Control\\Jagged Alliance Flashback\\}}" Jagged Alliance Online: pageId: 46320 renamedFrom: - - 'Jagged Alliance Online: Reloaded' + - "Jagged Alliance Online: Reloaded" steam: 339640 steamSide: - 218450 @@ -85709,30 +83440,28 @@ Jagged Alliance Online: - 416711 - 416712 - 416713 -'Jagged Alliance: Back in Action': +"Jagged Alliance: Back in Action": pageId: 12571 steam: 57740 templates: - - '{{Game data/saves|Windows|C:\Users\Public\Documents\Jagged Alliance - Back in Action}}' -'Jagged Alliance: Crossfire': + - "{{Game data/saves|Windows|C:\\Users\\Public\\Documents\\Jagged Alliance - Back in Action}}" +"Jagged Alliance: Crossfire": pageId: 40747 steam: 205810 -'Jagged Alliance: Deadly Games': +"Jagged Alliance: Deadly Games": gog: 1207658690 pageId: 12617 steam: 283270 templates: - - '{{Game data/config|DOS|{{p|game}}\DG.CFG|{{p|game}}\SOUND.CFG}}' - - '{{Game data/saves|DOS|{{p|game}}\*.SAV}}' -'Jagged Alliance: Rage!': + - "{{Game data/config|DOS|{{p|game}}\\DG.CFG|{{p|game}}\\SOUND.CFG}}" + - "{{Game data/saves|DOS|{{p|game}}\\*.SAV}}" +"Jagged Alliance: Rage!": gog: 1861477436 pageId: 108652 steam: 463170 templates: - - >- - {{Game data/config|Windows|{{P|userprofile\Documents}}\Jagged Alliance Rage\Settings.json|{{P|hkcu}}\Software\THQ - Nordic\Jagged Alliance Rage\}} - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\Jagged Alliance Rage\}}' + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\Jagged Alliance Rage\\Settings.json|{{P|hkcu}}\\Software\\THQ Nordic\\Jagged Alliance Rage\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\Jagged Alliance Rage\\}}" Jailbreak: pageId: 79894 steam: 778420 @@ -85748,24 +83477,24 @@ Jailbreak Simulator: Jak II: pageId: 190611 templates: - - '{{Game data/config|Windows|{{p|appdata}}\OpenGOAL\jak2\settings\}}' - - '{{Game data/config|Linux|{{p|xdgconfighome}}/OpenGOAL/jak2/settings/}}' - - '{{Game data/saves|Windows|{{p|appdata}}\OpenGOAL\jak2\saves\{{p|uid}}\}}' - - '{{Game data/saves|Linux|{{p|xdgconfighome}}/OpenGOAL/jak2/saves/{{p|uid}}/}}' -'Jak and Daxter: The Precursor Legacy': + - "{{Game data/config|Windows|{{p|appdata}}\\OpenGOAL\\jak2\\settings\\}}" + - "{{Game data/config|Linux|{{p|xdgconfighome}}/OpenGOAL/jak2/settings/}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\OpenGOAL\\jak2\\saves\\{{p|uid}}\\}}" + - "{{Game data/saves|Linux|{{p|xdgconfighome}}/OpenGOAL/jak2/saves/{{p|uid}}/}}" +"Jak and Daxter: The Precursor Legacy": pageId: 178321 renamedFrom: - - 'Jak and Daxter: The Precursor Legacy' + - "Jak and Daxter: The Precursor Legacy" - Jak Project templates: - - '{{Game data/config|Windows|{{p|appdata}}\OpenGOAL\jak1\settings\}}' - - '{{Game data/config|Linux|{{p|xdgconfighome}}/OpenGOAL/jak1/settings/}}' - - '{{Game data/saves|Windows|{{p|appdata}}\OpenGOAL\jak1\saves\{{p|uid}}\}}' - - '{{Game data/saves|Linux|{{p|xdgconfighome}}/OpenGOAL/jak1/saves/{{p|uid}}/}}' + - "{{Game data/config|Windows|{{p|appdata}}\\OpenGOAL\\jak1\\settings\\}}" + - "{{Game data/config|Linux|{{p|xdgconfighome}}/OpenGOAL/jak1/settings/}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\OpenGOAL\\jak1\\saves\\{{p|uid}}\\}}" + - "{{Game data/saves|Linux|{{p|xdgconfighome}}/OpenGOAL/jak1/saves/{{p|uid}}/}}" Jake and the Giant: pageId: 122058 steam: 940240 -Jake's Love Story: +"Jake's Love Story": pageId: 72102 steam: 699080 Jalopy: @@ -85773,8 +83502,8 @@ Jalopy: pageId: 43432 steam: 446020 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\MinskWorks\Jalopy\}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\MinskWorks\Jalopy\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\MinskWorks\\Jalopy\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\MinskWorks\\Jalopy\\}}" Jam Session VR: pageId: 76213 steam: 732480 @@ -85792,32 +83521,32 @@ JamParty: Jambo: pageId: 79854 steam: 777860 -Jambo's Adventure: +"Jambo's Adventure": pageId: 127679 steam: 1026190 -'James Bond 007: A View to a Kill': +"James Bond 007: A View to a Kill": pageId: 183865 -'James Bond 007: Blood Stone': +"James Bond 007: Blood Stone": pageId: 13472 steam: 42730 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\bizarre creations\blood stone\settings.xml}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\bizarre creations\blood stone\profiles\}}' -'James Bond 007: Goldfinger': + - "{{Game data/config|Windows|{{p|localappdata}}\\bizarre creations\\blood stone\\settings.xml}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\bizarre creations\\blood stone\\profiles\\}}" +"James Bond 007: Goldfinger": pageId: 183868 -'James Bond 007: Nightfire': +"James Bond 007: Nightfire": pageId: 13057 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Gearbox Software\Nightfire\bond\config.cfg}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Gearbox Software\Nightfire\bond\SAVE\}}' -'James Bond 007: The Stealth Affair': + - "{{Game data/config|Windows|{{p|localappdata}}\\Gearbox Software\\Nightfire\\bond\\config.cfg}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Gearbox Software\\Nightfire\\bond\\SAVE\\}}" +"James Bond 007: The Stealth Affair": pageId: 147397 -'James Cameron''s Avatar: The Game': +"James Cameron's Avatar: The Game": pageId: 4228 steam: 33280 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\AVATAR\GamerProfile.xml}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\AVATAR\Saved Games\*.sav}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\AVATAR\\GamerProfile.xml}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\AVATAR\\Saved Games\\*.sav}}" James Town Courier Frog MD: pageId: 156065 steam: 1204760 @@ -85825,17 +83554,15 @@ Jamestown+: pageId: 150860 steam: 377950 templates: - - |- - {{Game data/saves|Windows|{{p|USERPROFILE}}\Saved Games\JamestownPlus - }} -'Jamestown: Legend of the Lost Colony': + - "{{Game data/saves|Windows|{{p|USERPROFILE}}\\Saved Games\\JamestownPlus\n}}" +"Jamestown: Legend of the Lost Colony": pageId: 4719 steam: 94200 templates: - - '{{Game data/config|Linux|{{p|linuxhome}}/.jamestown/}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Saved Games\Jamestown\}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.jamestown/}}' -Jamie's Dream: + - "{{Game data/config|Linux|{{p|linuxhome}}/.jamestown/}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Saved Games\\Jamestown\\}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.jamestown/}}" +"Jamie's Dream": pageId: 70536 steam: 708020 Jammerball: @@ -85847,58 +83574,58 @@ Jamping: Jamsouls: pageId: 49735 steam: 314460 -'Jane Angel: Templar Mystery': +"Jane Angel: Templar Mystery": pageId: 49637 steam: 323270 -Jane Austen's 8-bit Adventure: +"Jane Austen's 8-bit Adventure": pageId: 190197 steam: 2377660 Jane Westlake Adventures - The Mystery Train: pageId: 155654 steam: 1158430 -Jane's Advanced Strike Fighters: +"Jane's Advanced Strike Fighters": pageId: 1711 steam: 207790 -Jane's Attack Squadron: +"Jane's Attack Squadron": pageId: 187393 -Jane's F-15: +"Jane's F-15": pageId: 705 templates: - - '{{Game data/config|Windows|{{p|hklm}}\SOFTWARE\{{p|wow64}}\Jane''s Combat Simulations\F15\Config}}' -Jane's F/A-18: + - "{{Game data/config|Windows|{{p|hklm}}\\SOFTWARE\\{{p|wow64}}\\Jane's Combat Simulations\\F15\\Config}}" +"Jane's F/A-18": pageId: 707 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' -Jane's Fighters Anthology: + - "{{Game data/config|Windows|{{p|game}}\\}}" +"Jane's Fighters Anthology": pageId: 696 templates: - - '{{Game data/saves|Windows|{{p|game}}\PltXXX.p}}' -Jane's Fleet Command: + - "{{Game data/saves|Windows|{{p|game}}\\PltXXX.p}}" +"Jane's Fleet Command": pageId: 708 steam: 2910 templates: - - '{{Game data/config|Windows|{{p|game}}/Fleet Command.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\scenario\*.svc|{{p|game}}\scenario\*.svs|{{p|game}}\*.log}}' -Jane's Israeli Air Force: + - "{{Game data/config|Windows|{{p|game}}/Fleet Command.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\scenario\\*.svc|{{p|game}}\\scenario\\*.svs|{{p|game}}\\*.log}}" +"Jane's Israeli Air Force": pageId: 698 -Jane's Longbow 2: +"Jane's Longbow 2": pageId: 701 -Jane's Longbow Gold: +"Jane's Longbow Gold": pageId: 703 templates: - - '{{Game data/config|DOS|{{p|game}}\}}' - - '{{Game data/config|Windows|{{p|game}}\}}' -Jane's Realty: + - "{{Game data/config|DOS|{{p|game}}\\}}" + - "{{Game data/config|Windows|{{p|game}}\\}}" +"Jane's Realty": pageId: 45980 steam: 412440 -Jane's US Navy Fighters '97: +"Jane's US Navy Fighters '97": pageId: 8831 -Jane's USAF: +"Jane's USAF": pageId: 711 templates: - - '{{Game data/config|Windows|{{p|game}}\Pilots\*.ini|{{p|game}}\Pilots\Master\Player.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\Pilots}}' -Jane's WWII Fighters: + - "{{Game data/config|Windows|{{p|game}}\\Pilots\\*.ini|{{p|game}}\\Pilots\\Master\\Player.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\Pilots}}" +"Jane's WWII Fighters": pageId: 178367 Janga: pageId: 145292 @@ -85918,10 +83645,8 @@ Janosik: pageId: 168759 steam: 1412170 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Janosik1ver1.6\User Data\Default}}' - - >- - {{Game data/saves|Windows|{{p|localappdata}}\Janosik1ver1.6\User - Data\Default\IndexedDB|{{p|localappdata}}\Janosik1ver1.6\User Data\Default\Session Storage}} + - "{{Game data/config|Windows|{{p|localappdata}}\\Janosik1ver1.6\\User Data\\Default}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Janosik1ver1.6\\User Data\\Default\\IndexedDB|{{p|localappdata}}\\Janosik1ver1.6\\User Data\\Default\\Session Storage}}" Janosik (1994): pageId: 168762 Janosik 2: @@ -85934,26 +83659,20 @@ Janus VR: Japan Girls: pageId: 180999 steam: 1303110 -'Japanese Rail Sim: Journey to Kyoto': +"Japanese Rail Sim: Journey to Kyoto": pageId: 178164 steam: 1761290 Japanese School Life: pageId: 53295 steam: 555640 templates: - - '{{Game data/saves|Windows|{{P|appdata}}\CODEJP\SEKAIPROJECT\JAPANESE SCHOOL LIFE}}' + - "{{Game data/saves|Windows|{{P|appdata}}\\CODEJP\\SEKAIPROJECT\\JAPANESE SCHOOL LIFE}}" Japanese Women - Animated Jigsaws: pageId: 60750 steam: 617610 templates: - - >- - {{Game data/config|Windows|{{p|hkcu}}\Software\jp.co.bottlecube\Japanese Women - Animated Jigsaws\ | - {{p|userprofile}}\AppData\LocalLow\jp_co_bottlecube\Japanese Women - Animated Jigsaws\Settings.json}} - - >- - {{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\jp_co_bottlecube\Japanese Women - Animated - Jigsaws\Achievements.json | {{p|userprofile}}\AppData\LocalLow\jp_co_bottlecube\Japanese Women - Animated - Jigsaws\OpenStatus.json | {{p|userprofile}}\AppData\LocalLow\jp_co_bottlecube\Japanese Women - Animated - Jigsaws\PuzzleRecords.json}} + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\jp.co.bottlecube\\Japanese Women - Animated Jigsaws\\ | {{p|userprofile}}\\AppData\\LocalLow\\jp_co_bottlecube\\Japanese Women - Animated Jigsaws\\Settings.json}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\jp_co_bottlecube\\Japanese Women - Animated Jigsaws\\Achievements.json | {{p|userprofile}}\\AppData\\LocalLow\\jp_co_bottlecube\\Japanese Women - Animated Jigsaws\\OpenStatus.json | {{p|userprofile}}\\AppData\\LocalLow\\jp_co_bottlecube\\Japanese Women - Animated Jigsaws\\PuzzleRecords.json}}" Japocaliptyca/ Япокалиптика: pageId: 141396 steam: 1112950 @@ -85969,13 +83688,13 @@ Jar Sam: Jardinains!: pageId: 172528 templates: - - '{{Game data/config|Windows|{{p|game}}/DATA}}' - - '{{Game data/saves|Windows|{{p|game}}/DATA/SAVE}}' + - "{{Game data/config|Windows|{{p|game}}/DATA}}" + - "{{Game data/saves|Windows|{{p|game}}/DATA/SAVE}}" Jardinains! 2: pageId: 172530 templates: - - '{{Game data/config|Windows|{{p|game}}/data}}' - - '{{Game data/saves|Windows|{{p|game}}/data/players}}' + - "{{Game data/config|Windows|{{p|game}}/data}}" + - "{{Game data/saves|Windows|{{p|game}}/data/players}}" Jarheads: pageId: 68222 steam: 661250 @@ -85983,38 +83702,38 @@ Jars: gog: 1159645322 pageId: 170950 steam: 1590750 -Jasper's Journeys: +"Jasper's Journeys": pageId: 5154 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Jasper''s Journeys\config.txt}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.lexaloffle/Jasper''s Journeys/}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Jasper''s Journeys}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.lexaloffle/Jasper''s Journeys/}}' + - "{{Game data/config|Windows|{{p|appdata}}\\Jasper's Journeys\\config.txt}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.lexaloffle/Jasper's Journeys/}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Jasper's Journeys}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.lexaloffle/Jasper's Journeys/}}" Javva Juice: pageId: 55758 steam: 524940 Jawns: pageId: 151716 templates: - - '{{Game data/config|Windows|{{Path|appdata}}\Jawns}}' + - "{{Game data/config|Windows|{{Path|appdata}}\\Jawns}}" Jaws Unleashed: pageId: 97702 templates: - - '{{Game data/config|Windows|{{p|game}}\pcrt.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\}}' + - "{{Game data/config|Windows|{{p|game}}\\pcrt.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\}}" Jaws of Extinction: pageId: 63634 steam: 617850 Jaxon The Thief: pageId: 141829 steam: 1113650 -'Jay Fighter: Remastered': +"Jay Fighter: Remastered": pageId: 75640 steam: 665890 Jay Walker: pageId: 112648 steam: 937320 -'Jay and Silent Bob: Mall Brawl': +"Jay and Silent Bob: Mall Brawl": gog: 2032359334 pageId: 163997 steam: 1087440 @@ -86025,15 +83744,15 @@ Jazz Jackrabbit: gog: 1808582759 pageId: 16780 templates: - - '{{Game data/config|DOS|{{p|game}}\CONFIG.000|{{p|game}}\SOUNDCRD.INF}}' - - '{{Game data/saves|DOS|{{p|game}}\SAVE.*}}' + - "{{Game data/config|DOS|{{p|game}}\\CONFIG.000|{{p|game}}\\SOUNDCRD.INF}}" + - "{{Game data/saves|DOS|{{p|game}}\\SAVE.*}}" Jazz Jackrabbit 2: gog: 1917711239 pageId: 20241 templates: - - '{{Game data/config|Windows|{{p|game}}\JAZZ2.CFG}}' - - '{{Game data/saves|Windows|{{p|game}}\SAVEGAME.***}}' -'Jazz Lightning : Castle Dungeons': + - "{{Game data/config|Windows|{{p|game}}\\JAZZ2.CFG}}" + - "{{Game data/saves|Windows|{{p|game}}\\SAVEGAME.***}}" +"Jazz Lightning : Castle Dungeons": pageId: 151397 steam: 1179570 Jazzpunk: @@ -86041,16 +83760,16 @@ Jazzpunk: pageId: 14826 steam: 250260 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Necrophone Games\Jazzpunk\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Preferences/unity.Necrophone Games.Jazzpunk.plist}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Necrophone Games/Jazzpunk/prefs}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Necrophone Games\Jazzpunk\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Caches/unity.Necrophone Games.Jazzpunk/}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Necrophone Games/Jazzpunk/}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Necrophone Games\\Jazzpunk\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Preferences/unity.Necrophone Games.Jazzpunk.plist}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Necrophone Games/Jazzpunk/prefs}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Necrophone Games\\Jazzpunk\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Caches/unity.Necrophone Games.Jazzpunk/}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Necrophone Games/Jazzpunk/}}" Jected - Rivals: pageId: 178636 renamedFrom: - - 'Stuntfest: World Tour' + - "Stuntfest: World Tour" steam: 1366850 steamSide: - 2347970 @@ -86061,11 +83780,11 @@ Jeeboman: steam: 392680 Jeff Gordon XS Racing: pageId: 22280 -Jeff Wayne's The War of the Worlds: +"Jeff Wayne's The War of the Worlds": pageId: 13840 templates: - - '{{Game data/config|Windows|{{p|hklm}}\SOFTWARE\Rage\Jeff Wayne''s ''The War Of The Worlds''\1.00.000}}' - - '{{Game data/saves|Windows|{{p|game}}\SaveGame}}' + - "{{Game data/config|Windows|{{p|hklm}}\\SOFTWARE\\Rage\\Jeff Wayne's 'The War Of The Worlds'\\1.00.000}}" + - "{{Game data/saves|Windows|{{p|game}}\\SaveGame}}" Jeklynn Heights: pageId: 42922 steam: 246820 @@ -86096,8 +83815,8 @@ JellyCar Worlds: pageId: 183343 steam: 1740930 templates: - - '{{Game data/config|Windows|{{P|userprofile\appdata\locallow}}\Walaber\Jellycar Worlds}}' - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Walaber\Jellycar Worlds}}' + - "{{Game data/config|Windows|{{P|userprofile\\appdata\\locallow}}\\Walaber\\Jellycar Worlds}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Walaber\\Jellycar Worlds}}" JellyNoid: pageId: 74151 steam: 733190 @@ -86123,14 +83842,11 @@ Jenny LeClue - Detectivu: pageId: 39558 steam: 319870 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Mografi\Jenny LeClue}}' - - '{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/Mografi/Jenny LeClue/prefs}}' - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Mografi\Jenny LeClue\*.jlc}}' - - >- - {{Game data/saves|OS X|{{P|osxhome}}/Library/Containers/Jenny LeClue/Data/Library/Application - Support/com.mografi.jlcdmac/|{{P|osxhome}}/Library/Application Support/Mografi/Jenny LeClue/*.jlc{{note|Steam - Cloud location according to SteamDB}}}} - - '{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/Mografi/Jenny LeClue/*.jlc}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Mografi\\Jenny LeClue}}" + - "{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/Mografi/Jenny LeClue/prefs}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Mografi\\Jenny LeClue\\*.jlc}}" + - "{{Game data/saves|OS X|{{P|osxhome}}/Library/Containers/Jenny LeClue/Data/Library/Application Support/com.mografi.jlcdmac/|{{P|osxhome}}/Library/Application Support/Mografi/Jenny LeClue/*.jlc{{note|Steam Cloud location according to SteamDB}}}}" + - "{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/Mografi/Jenny LeClue/*.jlc}}" Jeopardy! (1987): pageId: 90734 Jeopardy! (1998): @@ -86138,8 +83854,8 @@ Jeopardy! (1998): Jeopardy! 2003: pageId: 101645 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/saves|Windows|{{p|game}}\}}' + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\}}" Jeopardy! 2nd Edition: pageId: 89944 Jeopardy! Deluxe: @@ -86152,7 +83868,7 @@ Jera: JermaSlots: pageId: 130450 steam: 1032520 -Jerry Rice & Nitus' Dog Football: +"Jerry Rice & Nitus' Dog Football": pageId: 44663 steam: 438660 Jerry and the Mystery Loot Box: @@ -86161,8 +83877,8 @@ Jerry and the Mystery Loot Box: Jersey Devil: pageId: 124966 templates: - - '{{Game data/config|Windows|{{p|game}}\bin\config.pc}}' - - '{{Game data/saves|Windows|{{p|game}}\bin\SAVEGAME.DAT}}' + - "{{Game data/config|Windows|{{p|game}}\\bin\\config.pc}}" + - "{{Game data/saves|Windows|{{p|game}}\\bin\\SAVEGAME.DAT}}" Jesters Poker: pageId: 87293 steam: 800840 @@ -86195,7 +83911,7 @@ Jet Kave Adventure: pageId: 165852 steam: 1383700 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\7Levels\Jet Kave Adventure\}}' + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\7Levels\\Jet Kave Adventure\\}}" Jet Lancer: gog: 1489231569 pageId: 126383 @@ -86206,7 +83922,7 @@ Jet Racing Extreme: pageId: 47279 steam: 385270 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\SOFTWARE\SRJ Studio\JReX}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\SRJ Studio\\JReX}}" Jet Set Knights: pageId: 34721 steam: 405550 @@ -86214,15 +83930,15 @@ Jet Set Radio: pageId: 13442 steam: 205950 templates: - - '{{Game data/config|Windows|{{p|steam}}\userdata\{{p|uid}}\205950\local\}}' - - '{{Game data/saves|Windows|{{p|steam}}\userdata\{{p|uid}}\205950\remote\}}' + - "{{Game data/config|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\205950\\local\\}}" + - "{{Game data/saves|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\205950\\remote\\}}" Jet-Story 2018: pageId: 98502 steam: 872700 JetBall Arena: pageId: 125755 steam: 1008890 -'JetFighter: The Adventure': +"JetFighter: The Adventure": pageId: 186520 JetFly: pageId: 68430 @@ -86239,7 +83955,7 @@ Jetball: Jetboard Joust: pageId: 154231 renamedFrom: - - 'Jetboard Joust : Next-Generation Retro' + - "Jetboard Joust : Next-Generation Retro" steam: 1181600 Jetlad: pageId: 135492 @@ -86250,8 +83966,8 @@ JetmanGo: Jetpack: pageId: 8092 templates: - - '{{Game data/config|DOS|{{p|game}}\JETPACK.CFG}}' - - '{{Game data/saves|DOS|{{p|game}}\SAVEGAME.DAT}}' + - "{{Game data/config|DOS|{{p|game}}\\JETPACK.CFG}}" + - "{{Game data/saves|DOS|{{p|game}}\\SAVEGAME.DAT}}" Jetpack Dog: pageId: 98002 steam: 880370 @@ -86262,49 +83978,49 @@ Jetpack Joyride 2: Jetpack Porter: pageId: 53950 steam: 558020 -Jets'n'Guns: +"Jets'n'Guns": pageId: 36455 steam: 262260 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\JnGGold\Game.ini}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\JnGGold\saves\}}' -Jets'n'Guns 2: + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\JnGGold\\Game.ini}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\JnGGold\\saves\\}}" +"Jets'n'Guns 2": pageId: 123812 steam: 830820 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\jng2\game.ini}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\jng2}}' + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\jng2\\game.ini}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\jng2}}" Jetstream: pageId: 108776 steam: 738860 -'Jett: The Far Shore': +"Jett: The Far Shore": pageId: 161055 steam: 1761600 templates: - - '{{Game data/config|Windows|{{p|userprofile\appdata\locallow}}\Superbrothers and Pine Scented\JETT_ The Far Shore}}' - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\Superbrothers and Pine Scented\JETT_ The Far Shore}}' -'Jettomero: Hero of the Universe': + - "{{Game data/config|Windows|{{p|userprofile\\appdata\\locallow}}\\Superbrothers and Pine Scented\\JETT_ The Far Shore}}" + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\Superbrothers and Pine Scented\\JETT_ The Far Shore}}" +"Jettomero: Hero of the Universe": pageId: 68685 steam: 676480 steamSide: - 682240 templates: - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/676480/remote}}' + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/676480/remote}}" Jewel Bits: pageId: 55502 steam: 414140 -Jewel Match Atlantis Solitaire - Collector's Edition: +"Jewel Match Atlantis Solitaire - Collector's Edition": pageId: 150373 steam: 1126470 Jewel Match Solitaire: pageId: 102849 steam: 886070 templates: - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\JewelMatchSolitaireWinterSteam}}' + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\JewelMatchSolitaireWinterSteam}}" Jewel Match Solitaire 2: pageId: 132546 steam: 1035770 -Jewel Match Solitaire L'Amour: +"Jewel Match Solitaire L'Amour": pageId: 127641 steam: 1009700 Jewel Match Solitaire Winterscapes: @@ -86325,7 +84041,7 @@ Jewel Quest II: Jewel Quest III: pageId: 51263 steam: 37980 -'Jewel Quest Mysteries: Curse of the Emerald Tear': +"Jewel Quest Mysteries: Curse of the Emerald Tear": pageId: 51264 steam: 37990 Jewel Quest Seven Seas: @@ -86349,22 +84065,22 @@ Jewel of WonderLand: Jewels of the Mysterious Woodland: pageId: 66782 steam: 685370 -Jey's Empire: +"Jey's Empire": pageId: 137044 steam: 1051420 JiPS: pageId: 43540 steam: 454460 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Trazzy Entertainment\JIPS\}}' - - '{{Game data/saves|Windows|{{P|hkcu}}\Software\Trazzy Entertainment\JIPS\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Trazzy Entertainment\\JIPS\\}}" + - "{{Game data/saves|Windows|{{P|hkcu}}\\Software\\Trazzy Entertainment\\JIPS\\}}" Jida Chronicle Chaos Frontier: pageId: 77303 steam: 753960 Jidousha Shakai: pageId: 59848 steam: 611800 -'Jigoku Kisetsukan: Sense of the Seasons': +"Jigoku Kisetsukan: Sense of the Seasons": pageId: 37555 steam: 368950 Jigsaw 360: @@ -86403,28 +84119,28 @@ Jigsaw puzzle - Evolution: JigsawMania: pageId: 76524 steam: 729740 -Jikkyou Powerful Pro Yakyuu '96: +"Jikkyou Powerful Pro Yakyuu '96": pageId: 171511 Jill of the Jungle: gog: 1129701343 pageId: 131694 -'Jill of the Jungle: Jill Goes Underground': +"Jill of the Jungle: Jill Goes Underground": gog: 1129701343 pageId: 131698 -'Jill of the Jungle: Jill Saves the Prince': +"Jill of the Jungle: Jill Saves the Prince": gog: 1129701343 pageId: 131700 Jim Bourke Airshow Trainer: pageId: 137238 steam: 1024740 -'Jim Henson''s Muppet Babies: Air, Land, & Sea': +"Jim Henson's Muppet Babies: Air, Land, & Sea": pageId: 164314 Jim Is Moving Out!: pageId: 140842 renamedFrom: - Jim is Moving Out! steam: 643940 -'Jim Power: The Lost Dimension': +"Jim Power: The Lost Dimension": gog: 1480170019 pageId: 46214 steam: 370270 @@ -86433,16 +84149,16 @@ Jimmy Kamikaze: steam: 918370 Jimmy Neutron vs. Jimmy Negatron: pageId: 148182 -'Jimmy Neutron: Boy Genius': +"Jimmy Neutron: Boy Genius": pageId: 166294 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/saves|Windows|{{p|game}}\JimmyGameX.tsk}}' + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\JimmyGameX.tsk}}" Jimmy and the Pulsating Mass: pageId: 70257 steam: 706560 templates: - - '{{Game data/saves|Windows|{{P|game}}\*.rvdata2}}' + - "{{Game data/saves|Windows|{{P|game}}\\*.rvdata2}}" Jin Lin Love Story: pageId: 104639 steam: 896190 @@ -86459,29 +84175,29 @@ Jisei: pageId: 108784 steam: 754460 templates: - - '{{Game data/config|Windows|{{P|appdata}}\renpy\jiseinew-1459530778\persistent}}' - - '{{Game data/saves|Windows|{{P|appdata}}\renpy\jiseinew-1459530778\*.save | {{P|appdata}}\RenPy\jisei\*.save}}' -'JoJo''s Bizarre Adventure: All Star Battle R': + - "{{Game data/config|Windows|{{P|appdata}}\\renpy\\jiseinew-1459530778\\persistent}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\renpy\\jiseinew-1459530778\\*.save | {{P|appdata}}\\RenPy\\jisei\\*.save}}" +"JoJo's Bizarre Adventure: All Star Battle R": pageId: 175682 steam: 1372110 templates: - - '{{Game data/config|Windows|{{P|game}}/config.ini}}' - - '{{Game data/saves|Windows|{{P|steam}}/userdata/{{P|uid}}/1372110/remote}}' + - "{{Game data/config|Windows|{{P|game}}/config.ini}}" + - "{{Game data/saves|Windows|{{P|steam}}/userdata/{{P|uid}}/1372110/remote}}" Joan Jade and the Gates of Xibalba: pageId: 129727 steam: 1038640 Joan of Arc:The Beginning: pageId: 157079 steam: 1212580 -Joana's Life: +"Joana's Life": pageId: 36636 steam: 513740 Job Simulator: pageId: 38311 steam: 448280 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Owlchemy Labs\Job Simulator\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Owlchemy Labs\Job Simulator\User\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Owlchemy Labs\\Job Simulator\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Owlchemy Labs\\Job Simulator\\User\\}}" Job the Leprechaun: pageId: 47031 steam: 386420 @@ -86495,13 +84211,13 @@ Joe & Mac Returns: gog: 1274608754 pageId: 169129 steam: 1627150 -'Joe & Mac: Caveman Ninja': +"Joe & Mac: Caveman Ninja": pageId: 182337 -'Joe & Mac: Caveman Ninja (Retro Classix)': +"Joe & Mac: Caveman Ninja (Retro Classix)": gog: 1715681064 pageId: 166904 renamedFrom: - - 'Joe & Mac: Caveman Ninja (2021)' + - "Joe & Mac: Caveman Ninja (2021)" steam: 1540410 Joe Blunt - Up In Smoke: pageId: 149285 @@ -86510,17 +84226,17 @@ Joe Danger: pageId: 8274 steam: 229890 templates: - - '{{Game data/saves|Windows|{{p|game}}\GameData\SaveGamesJD1\{{p|uid}}\}}' -'Joe Danger 2: The Movie': + - "{{Game data/saves|Windows|{{p|game}}\\GameData\\SaveGamesJD1\\{{p|uid}}\\}}" +"Joe Danger 2: The Movie": pageId: 8273 steam: 242110 templates: - - '{{Game data/config|Windows|{{p|game}}\GAMEDATA\SETTINGS.BIN}}' - - '{{Game data/config|Linux|{{p|game}}/GAMEDATA/SETTINGS.BIN}}' - - '{{Game data/saves|Windows|{{p|game}}\GAMEDATA\SAVEGAMESJD2\{{p|uid}}}}' - - '{{Game data/saves|Linux|{{p|game}}/GAMEDATA/SAVEGAMESJD2/{{p|uid}}}}' - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/242110/remote/}}' -Joe Dever's Lone Wolf HD Remastered: + - "{{Game data/config|Windows|{{p|game}}\\GAMEDATA\\SETTINGS.BIN}}" + - "{{Game data/config|Linux|{{p|game}}/GAMEDATA/SETTINGS.BIN}}" + - "{{Game data/saves|Windows|{{p|game}}\\GAMEDATA\\SAVEGAMESJD2\\{{p|uid}}}}" + - "{{Game data/saves|Linux|{{p|game}}/GAMEDATA/SAVEGAMESJD2/{{p|uid}}}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/242110/remote/}}" +"Joe Dever's Lone Wolf HD Remastered": pageId: 49231 steam: 279440 Joe Jump Impossible Quest: @@ -86530,49 +84246,49 @@ Joe Wander and the Enigmatic Adventures: pageId: 184920 steam: 2063310 templates: - - '{{Game data/saves|Windows|{{p|game}}\Joe Wander_Data\Save}}' -Joe's Diner: + - "{{Game data/saves|Windows|{{p|game}}\\Joe Wander_Data\\Save}}" +"Joe's Diner": pageId: 48334 steam: 346040 -Joe's Wrath: +"Joe's Wrath": pageId: 121237 steam: 956280 -Joel Mayer's Purgatory: +"Joel Mayer's Purgatory": pageId: 151495 steam: 1137480 Joggernauts: pageId: 79450 steam: 747620 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Space Mace\Joggernauts\}}' - - '{{Game data/saves|Windows|{{p|USERPROFILE}}\AppData\LocalLow\Space Mace\Joggernauts}}' -'John Black: Memories': + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Space Mace\\Joggernauts\\}}" + - "{{Game data/saves|Windows|{{p|USERPROFILE}}\\AppData\\LocalLow\\Space Mace\\Joggernauts}}" +"John Black: Memories": pageId: 108296 steam: 915380 -'John Deere: American Builder Deluxe': +"John Deere: American Builder Deluxe": pageId: 151657 templates: - - '{{Game data/config|Windows|{{p|game}}\Game.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\Data\Games\*.xml}}' -'John Deere: American Farmer': + - "{{Game data/config|Windows|{{p|game}}\\Game.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\Data\\Games\\*.xml}}" +"John Deere: American Farmer": pageId: 183569 -'John Deere: American Farmer Deluxe': +"John Deere: American Farmer Deluxe": pageId: 151652 templates: - - '{{Game data/config|Windows|{{p|game}}\JohnDeere.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\Data\Games\*.xml}}' -'John Deere: Drive Green': + - "{{Game data/config|Windows|{{p|game}}\\JohnDeere.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\Data\\Games\\*.xml}}" +"John Deere: Drive Green": pageId: 60045 steam: 33740 templates: - - '{{Game data/config|Windows|{{p|game}}\Drive Green\config.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\Drive Green\Profile01\Profile01.sav}}' -'John Deere: North American Farmer': + - "{{Game data/config|Windows|{{p|game}}\\Drive Green\\config.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\Drive Green\\Profile01\\Profile01.sav}}" +"John Deere: North American Farmer": pageId: 183571 John Dungeon: pageId: 78382 steam: 766970 -'John Lazarus - Episode 1: Dead Man''s Origin': +"John Lazarus - Episode 1: Dead Man's Origin": pageId: 79279 steam: 776040 John Mambo: @@ -86582,34 +84298,32 @@ John Wick Chronicles: pageId: 51509 steam: 382360 templates: - - '{{Game data/saves|Windows|{{p|localappdata}}\wick\Saved}}' + - "{{Game data/saves|Windows|{{p|localappdata}}\\wick\\Saved}}" John Wick Hex: pageId: 136340 steam: 1405790 templates: - - >- - {{Game data/config|Windows|{{p|hkcu}}\Software\Bithell Games\John Wick - Hex\|{{P|userprofile}}\AppData\LocalLow\Bithell Games\John Wick Hex\settings.sav}} - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Bithell Games\John Wick Hex\}}' -John's Wizard Dungeon: + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Bithell Games\\John Wick Hex\\|{{P|userprofile}}\\AppData\\LocalLow\\Bithell Games\\John Wick Hex\\settings.sav}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Bithell Games\\John Wick Hex\\}}" +"John's Wizard Dungeon": pageId: 138731 steam: 1093750 -'John, The Zombie': +"John, The Zombie": pageId: 75574 steam: 741500 -'John:Condemned': +"John:Condemned": pageId: 121161 steam: 959170 Johnny Bung: pageId: 94541 steam: 854340 -'Johnny Graves: The Unchosen One': +"Johnny Graves: The Unchosen One": pageId: 33494 steam: 476030 Johns.game: pageId: 58892 steam: 597240 -'Joint Operations: Typhoon Rising': +"Joint Operations: Typhoon Rising": pageId: 41232 steam: 32770 Joint Strike Fighter: @@ -86618,8 +84332,8 @@ Joint Task Force: pageId: 38271 steam: 6400 templates: - - '{{Game data/config|Windows|{{p|game}}\settings.ini
{{p|game}}\Profiles\{{p|uid}}}}' - - '{{Game data/saves|Windows|{{p|game}}\Profiles\{{p|uid}}}}' + - "{{Game data/config|Windows|{{p|game}}\\settings.ini
{{p|game}}\\Profiles\\{{p|uid}}}}" + - "{{Game data/saves|Windows|{{p|game}}\\Profiles\\{{p|uid}}}}" Jolly Battle: pageId: 102777 steam: 824620 @@ -86630,26 +84344,26 @@ Jolly Rover: pageId: 38351 steam: 58200 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Brawsome\rover\}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Brawsome\rover\}}' + - "{{Game data/config|Windows|{{p|appdata}}\\Brawsome\\rover\\}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Brawsome\\rover\\}}" Jomp the Jumper: pageId: 140987 renamedFrom: - Jomp The Jumper steam: 1113210 -Jon Shafer's At the Gates: +"Jon Shafer's At the Gates": pageId: 125859 steam: 241000 templates: - - '{{Game data/config|Windows|{{P|game}}\Settings\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/AtTheGates/Settings/}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/AtTheGates/Settings/}}' - - '{{Game data/saves|Windows|{{P|game}}\Saved Games\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/AtTheGates/Saved Games/}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/AtTheGates/Saved Games/}}' + - "{{Game data/config|Windows|{{P|game}}\\Settings\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/AtTheGates/Settings/}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/AtTheGates/Settings/}}" + - "{{Game data/saves|Windows|{{P|game}}\\Saved Games\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/AtTheGates/Saved Games/}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/AtTheGates/Saved Games/}}" Jonah Lomu Rugby: pageId: 91336 -Jonah's Path: +"Jonah's Path": pageId: 42513 steam: 493810 Jones in the Fast Lane: @@ -86658,8 +84372,8 @@ Jones on Fire: pageId: 38141 steam: 270810 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Glass Bottom Games\Jones On Fire}}' - - '{{Game data/saves|Windows|{{p|hkcu}}\Software\Glass Bottom Games\Jones On Fire}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Glass Bottom Games\\Jones On Fire}}" + - "{{Game data/saves|Windows|{{p|hkcu}}\\Software\\Glass Bottom Games\\Jones On Fire}}" Jorji and Impossible Forest: pageId: 99656 steam: 883190 @@ -86669,7 +84383,7 @@ Jormungandr: Joshua and the Battle of Jericho: pageId: 74374 steam: 624550 -Josie's Tank: +"Josie's Tank": pageId: 149594 steam: 1149830 Jotun: @@ -86679,10 +84393,10 @@ Jotun: steamSide: - 406470 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Thunder Lotus Games\Jotun\}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Thunder Lotus Games/Jotun/}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Thunder Lotus Games\Jotun\}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Thunder Lotus Games/Jotun/}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Thunder Lotus Games\\Jotun\\}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Thunder Lotus Games/Jotun/}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Thunder Lotus Games\\Jotun\\}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Thunder Lotus Games/Jotun/}}" Joumee the Hedgehog: pageId: 76382 steam: 673220 @@ -86692,15 +84406,15 @@ Journal: Journalism class: pageId: 104801 steam: 915740 -'Journalism class: PART 2': +"Journalism class: PART 2": pageId: 110528 steam: 928250 Journey: pageId: 123314 steam: 638230 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Annapurna Interactive\Journey\Steam\Journey.cfg}}' - - '{{Game data/saves|Steam|{{p|localappdata}}\Annapurna Interactive\Journey\Steam\SAVE.BIN}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Annapurna Interactive\\Journey\\Steam\\Journey.cfg}}" + - "{{Game data/saves|Steam|{{p|localappdata}}\\Annapurna Interactive\\Journey\\Steam\\SAVE.BIN}}" Journey For Elysium: pageId: 142121 steam: 1036260 @@ -86724,13 +84438,11 @@ Journey of a Roach: pageId: 12060 steam: 255300 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Koboldgames\Journey of a Roach\}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Koboldgames/Journey of a Roach/}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Daedalic Entertainment\Journey of a Roach\Savegames\}}' - - >- - {{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Daedalic Entertainment/Journey of a - Roach/Savegames/}} - - '{{Game data/saves|Linux|{{P|xdgconfighome}}/Daedalic Entertainment/Journey of a Roach/Savegames/}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Koboldgames\\Journey of a Roach\\}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Koboldgames/Journey of a Roach/}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Daedalic Entertainment\\Journey of a Roach\\Savegames\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Daedalic Entertainment/Journey of a Roach/Savegames/}}" + - "{{Game data/saves|Linux|{{P|xdgconfighome}}/Daedalic Entertainment/Journey of a Roach/Savegames/}}" Journey of the Fox: pageId: 94491 steam: 849880 @@ -86758,10 +84470,8 @@ Journey to Valhalla: Journey to the Center of Hawkthorne: pageId: 167178 templates: - - >- - {{Game - data/config|Windows|{{P|appdata}}\hawkthorne_release\options-2.json|{{P|appdata}}\hawkthorne_release\controls-1.json}} - - '{{Game data/saves|Windows|{{P|appdata}}\hawkthorne_release\gamesaves-*.json}}' + - "{{Game data/config|Windows|{{P|appdata}}\\hawkthorne_release\\options-2.json|{{P|appdata}}\\hawkthorne_release\\controls-1.json}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\hawkthorne_release\\gamesaves-*.json}}" Journey to the Center of the Earth: gog: 1207658863 pageId: 21631 @@ -86774,9 +84484,9 @@ Journey to the Savage Planet: pageId: 137563 steam: 973810 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Towers\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Towers\Saved\SaveGames\{{P|uid}}}}' -'Journey: Benjamin''s Adventures': + - "{{Game data/config|Windows|{{p|localappdata}}\\Towers\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Towers\\Saved\\SaveGames\\{{P|uid}}}}" +"Journey: Benjamin's Adventures": pageId: 58301 steam: 584040 Joust: @@ -86790,7 +84500,7 @@ Joy Climb: Joy Pony: pageId: 67169 steam: 685950 -'Joyfess: Martin''s Secret Recipe': +"Joyfess: Martin's Secret Recipe": pageId: 154283 steam: 1095700 Joyo Kanji Quiz: @@ -86827,40 +84537,36 @@ Judge Dredd: pageId: 54705 steam: 690250 templates: - - '{{Game data/saves|DOS|{{p|game}}\DAT2\SLOT*.DAT|{{p|game}}\DAT2\HISCORE.DAT}}' -'Judge Dredd: Countdown Sector 106': + - "{{Game data/saves|DOS|{{p|game}}\\DAT2\\SLOT*.DAT|{{p|game}}\\DAT2\\HISCORE.DAT}}" +"Judge Dredd: Countdown Sector 106": pageId: 48148 steam: 352080 -'Judge Dredd: Dredd vs. Death': +"Judge Dredd: Dredd vs. Death": gog: 1207658779 pageId: 18684 steam: 3710 templates: - - '{{Game data/config|Windows|{{p|game}}\save\save.dsg}}' - - '{{Game data/saves|Windows|{{p|game}}\save\save.dsg}}' -'Judged: A Court Simulator': + - "{{Game data/config|Windows|{{p|game}}\\save\\save.dsg}}" + - "{{Game data/saves|Windows|{{p|game}}\\save\\save.dsg}}" +"Judged: A Court Simulator": pageId: 123748 steam: 384880 Judgement: pageId: 46450 steam: 383780 -'Judgement Silversword: Resurrection': +"Judgement Silversword: Resurrection": pageId: 46390 steam: 278510 templates: - - >- - {{Game - data/config|Windows|{{p|appdata}}\Qute\JudgementSilversword\display_setting.ini|{{p|appdata}}\Qute\JudgementSilversword\preference.dat}} - - >- - {{Game - data/saves|Windows|{{p|appdata}}\Qute\JudgementSilversword\JSS2.SAV|{{p|appdata}}\Qute\JudgementSilversword\cardinal.sav}} + - "{{Game data/config|Windows|{{p|appdata}}\\Qute\\JudgementSilversword\\display_setting.ini|{{p|appdata}}\\Qute\\JudgementSilversword\\preference.dat}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Qute\\JudgementSilversword\\JSS2.SAV|{{p|appdata}}\\Qute\\JudgementSilversword\\cardinal.sav}}" Judgment: pageId: 181525 steam: 2058180 templates: - - '{{Game data/config|Windows|{{P|appdata}}\Sega\Judgment\Steam\}}' - - '{{Game data/saves|Windows|{{P|appdata}}\Sega\Judgment\Steam\{{P|uid}}\}}' -'Judgment: Apocalypse Survival Simulation': + - "{{Game data/config|Windows|{{P|appdata}}\\Sega\\Judgment\\Steam\\}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\Sega\\Judgment\\Steam\\{{P|uid}}\\}}" +"Judgment: Apocalypse Survival Simulation": gog: 1341338919 pageId: 43656 renamedFrom: @@ -86881,12 +84587,12 @@ Juice Girl: Juiced: pageId: 21290 templates: - - '{{Game data/saves|Windows|{{p|appdata}}\THQ\Juiced\SAVE\}}' -'Juiced 2: Hot Import Nights': + - "{{Game data/saves|Windows|{{p|appdata}}\\THQ\\Juiced\\SAVE\\}}" +"Juiced 2: Hot Import Nights": pageId: 21286 steam: 9400 templates: - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Juiced2_HIN\|{{p|appdata}}\THQ\Juiced2\Save}}' + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Juiced2_HIN\\|{{p|appdata}}\\THQ\\Juiced2\\Save}}" Juicy Army: pageId: 157174 steam: 1153060 @@ -86900,9 +84606,9 @@ Juju: pageId: 30566 steam: 300840 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\JUJU\B1Game\Config}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\JUJU\B1Game\SaveData}}' -'Jujutsu Kaisen: Cursed Clash': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\JUJU\\B1Game\\Config}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\JUJU\\B1Game\\SaveData}}" +"Jujutsu Kaisen: Cursed Clash": pageId: 190076 steam: 1877020 Juke: @@ -86911,24 +84617,24 @@ Juke: Julai: pageId: 43652 steam: 458900 -'Julia: Innocent Eyes': +"Julia: Innocent Eyes": pageId: 35281 Juliantli: pageId: 104961 steam: 898260 -Julie's Sweets: +"Julie's Sweets": pageId: 122016 steam: 970810 July the Lost Child: pageId: 112400 steam: 932270 -'Jumanji: The VR Adventure': +"Jumanji: The VR Adventure": pageId: 80833 steam: 780590 -'Jumanji: The Video Game': +"Jumanji: The Video Game": pageId: 139544 steam: 896950 -'Jumanji: Wild Adventures': +"Jumanji: Wild Adventures": pageId: 191299 steam: 1823200 Jump: @@ -86943,7 +84649,7 @@ Jump Boxer: pageId: 32150 steam: 365330 templates: - - '{{Game data/saves|Windows|{{p|localappdata}}\JumpBoxer\saves\}}' + - "{{Game data/saves|Windows|{{p|localappdata}}\\JumpBoxer\\saves\\}}" Jump Boy: pageId: 156449 steam: 1227150 @@ -86954,16 +84660,16 @@ Jump Force: pageId: 102069 steam: 816020 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\JUMP_FORCE\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{p|steam}}\userdata\{{p|uid}}\816020\remote\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\JUMP_FORCE\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\816020\\remote\\}}" Jump Gunners: pageId: 75540 steam: 697660 templates: - - '{{Game data/config|Windows|{{P|userprofile}}\AppData\LocalLow\NerdRage Studios\Jump Gunners}}' - - '{{Game data/config|Linux|{{p|xdgconfighome}}/NerdRage Studios/Jump Gunners/}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\NerdRage Studios\Jump Gunners}}' - - '{{Game data/saves|Linux|{{p|xdgconfighome}}/NerdRage Studios/Jump Gunners/}}' + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\NerdRage Studios\\Jump Gunners}}" + - "{{Game data/config|Linux|{{p|xdgconfighome}}/NerdRage Studios/Jump Gunners/}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\NerdRage Studios\\Jump Gunners}}" + - "{{Game data/saves|Linux|{{p|xdgconfighome}}/NerdRage Studios/Jump Gunners/}}" Jump Jumpz: pageId: 122158 steam: 968200 @@ -86998,7 +84704,7 @@ Jump with Friends: Jump! Jump! Jump!: pageId: 78455 steam: 761100 -'Jump, Step, Step': +"Jump, Step, Step": pageId: 58159 steam: 575710 JumpBall: @@ -87010,15 +84716,15 @@ JumpBall 2: JumpFist: pageId: 70128 steam: 707470 -'JumpHead: Battle4Fun!': +"JumpHead: Battle4Fun!": pageId: 108624 steam: 402080 JumpJet Rex: pageId: 35025 steam: 329460 templates: - - '{{Game data/config|Windows|{{p|HKCU}}\Software\TreeFortress Games\JumpJetRex\}}' - - '{{Game data/saves|Windows|{{p|USERPROFILE}}\AppData\LocalLow\TreeFortress Games\JumpJetRex\saves.dat}}' + - "{{Game data/config|Windows|{{p|HKCU}}\\Software\\TreeFortress Games\\JumpJetRex\\}}" + - "{{Game data/saves|Windows|{{p|USERPROFILE}}\\AppData\\LocalLow\\TreeFortress Games\\JumpJetRex\\saves.dat}}" JumpJumpMania: pageId: 121645 steam: 973470 @@ -87037,7 +84743,7 @@ JumpStart 5th Grade: pageId: 189526 JumpStart 6th Grade: pageId: 189528 -'JumpStart Advanced: Toddlers': +"JumpStart Advanced: Toddlers": pageId: 190533 JumpStart Animal Adventures: pageId: 190270 @@ -87061,13 +84767,13 @@ JumpStart Reading with Karaoke: pageId: 190530 JumpStart Spelling: pageId: 190281 -'JumpStart Spy Masters: Max Strikes Back': +"JumpStart Spy Masters: Max Strikes Back": pageId: 190220 -'JumpStart Spy Masters: Unmask the Prankster': +"JumpStart Spy Masters: Unmask the Prankster": pageId: 190218 -'JumpStart Study Helpers: Math Booster': +"JumpStart Study Helpers: Math Booster": pageId: 190535 -'JumpStart Study Helpers: Spelling Bee': +"JumpStart Study Helpers: Spelling Bee": pageId: 190537 JumpStart Toddlers: pageId: 190528 @@ -87094,7 +84800,7 @@ Jumper Magic: Jumper Tree: pageId: 123415 steam: 983650 -'Jumper: Speedrun': +"Jumper: Speedrun": pageId: 69320 steam: 688150 Jumphobia Classic: @@ -87102,10 +84808,10 @@ Jumphobia Classic: renamedFrom: - Jumphobia XL steam: 703200 -'Jumphobia: Homeward Bound': +"Jumphobia: Homeward Bound": pageId: 182871 steam: 1781380 -'Jumping Man: Forest': +"Jumping Man: Forest": pageId: 92753 steam: 822680 Jumping Over It With Kang KiYun: @@ -87131,7 +84837,7 @@ Jumpman: Jumpman Lives!: pageId: 147147 templates: - - '{{Game data/saves|DOS|{{Path|Game}}\JMLIVES!.HIS}}' + - "{{Game data/saves|DOS|{{Path|Game}}\\JMLIVES!.HIS}}" Jumpo Joe: pageId: 98426 steam: 865240 @@ -87180,12 +84886,12 @@ Junglex: Juniper Theory: pageId: 55538 steam: 564140 -Juniper's Knot: +"Juniper's Knot": pageId: 69442 steam: 687590 templates: - - '{{Game data/config|Windows|{{p|game}}\renpy\config.py}}' - - '{{Game data/saves|Windows|{{P|appdata}}\renpy\dischan_JunipersKnot\}}' + - "{{Game data/config|Windows|{{p|game}}\\renpy\\config.py}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\renpy\\dischan_JunipersKnot\\}}" Junk: pageId: 151547 steam: 1150420 @@ -87204,59 +84910,52 @@ Junkyard Simulator: Junkyard Wizard: pageId: 129567 steam: 931940 -Juno's Darkest Hour: +"Juno's Darkest Hour": pageId: 53566 steam: 516120 -'Juno: New Origins': +"Juno: New Origins": pageId: 96611 renamedFrom: - SimpleRockets 2 steam: 870200 templates: - - >- - {{Game data/config|Windows|{{P|userprofile\appdata\locallow}}\Jundroo\SimpleRockets - 2\Settings.xml|{{P|userprofile\appdata\locallow}}\Jundroo\SimpleRockets - 2\ControlInputData.xml|{{P|hkcu}}\SOFTWARE\Jundroo\SimpleRockets 2\}} - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Jundroo\SimpleRockets 2\}}' + - "{{Game data/config|Windows|{{P|userprofile\\appdata\\locallow}}\\Jundroo\\SimpleRockets 2\\Settings.xml|{{P|userprofile\\appdata\\locallow}}\\Jundroo\\SimpleRockets 2\\ControlInputData.xml|{{P|hkcu}}\\SOFTWARE\\Jundroo\\SimpleRockets 2\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Jundroo\\SimpleRockets 2\\}}" Jupiter Hell: gog: 1603513052 pageId: 122800 steam: 811320 templates: - - '{{Game data/config|Windows|{{P|game}}\configuration.lua}}' - - '{{Game data/config|Linux|{{P|game}}/configuration.lua}}' - - '{{Game data/saves|Windows|{{P|game}}\save*}}' - - '{{Game data/saves|Linux|{{P|game}}/save}}' + - "{{Game data/config|Windows|{{P|game}}\\configuration.lua}}" + - "{{Game data/config|Linux|{{P|game}}/configuration.lua}}" + - "{{Game data/saves|Windows|{{P|game}}\\save*}}" + - "{{Game data/saves|Linux|{{P|game}}/save}}" Jupiteration: pageId: 59023 steam: 592240 Jurassic City Walk: pageId: 92623 steam: 831520 -'Jurassic Island: The Dinosaur Zoo': +"Jurassic Island: The Dinosaur Zoo": pageId: 45513 steam: 378420 Jurassic Park Classic Games Collection: pageId: 191392 -'Jurassic Park: Operation Genesis': +"Jurassic Park: Operation Genesis": pageId: 131686 -'Jurassic Park: The Game': +"Jurassic Park: The Game": pageId: 1155 steam: 201830 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\Telltale Games\Jurassic Park The - Game\|{{p|userprofile\Documents}}\telltale games\JurassicPark}} - - '{{Game data/config|OS X|{{P|osxhome}}/Library/Application Support/Telltale Games/}}' - - >- - {{Game data/saves|Windows|{{p|userprofile\Documents}}\Telltale Games\Jurassic Park The - Game\|{{p|userprofile\Documents}}\telltale games\JurassicPark\prefs.prop}} - - '{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/Telltale Games/JurassicPark100/}}' -'Jurassic Park: Trespasser': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Telltale Games\\Jurassic Park The Game\\|{{p|userprofile\\Documents}}\\telltale games\\JurassicPark}}" + - "{{Game data/config|OS X|{{P|osxhome}}/Library/Application Support/Telltale Games/}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Telltale Games\\Jurassic Park The Game\\|{{p|userprofile\\Documents}}\\telltale games\\JurassicPark\\prefs.prop}}" + - "{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/Telltale Games/JurassicPark100/}}" +"Jurassic Park: Trespasser": pageId: 19823 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\DreamWorks Interactive\Trespasser}}' - - '{{Game data/saves|Windows|{{p|game}}\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\DreamWorks Interactive\\Trespasser}}" + - "{{Game data/saves|Windows|{{p|game}}\\}}" Jurassic Safari Hunt: pageId: 94503 steam: 850960 @@ -87267,8 +84966,8 @@ Jurassic World Evolution: pageId: 91582 steam: 648350 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Frontier Developments\Jurassic World Evolution\Config_Local}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\Saved Games\Frontier Developments\Jurassic World Evolution}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Frontier Developments\\Jurassic World Evolution\\Config_Local}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Saved Games\\Frontier Developments\\Jurassic World Evolution}}" Jurassic World Evolution 2: pageId: 169177 steam: 1244460 @@ -87279,8 +84978,8 @@ Jurassic World Evolution 2: - 1966010 - 2492640 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Frontier Developments\Jurassic World Evolution 2\Config_Local}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\Saved Games\Frontier Developments\Jurassic World Evolution 2}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Frontier Developments\\Jurassic World Evolution 2\\Config_Local}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Saved Games\\Frontier Developments\\Jurassic World Evolution 2}}" Juro Janosik: pageId: 128743 steam: 978630 @@ -87288,8 +84987,8 @@ Jusant: pageId: 190333 steam: 1977170 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\ASC\Saved\Config\Windows\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\ASC\Saved\SaveGames\FullGame\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\ASC\\Saved\\Config\\Windows\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\ASC\\Saved\\SaveGames\\FullGame\\}}" Just A Dream: pageId: 70691 steam: 712770 @@ -87302,7 +85001,7 @@ Just Another Memory: Just Bat: pageId: 38871 steam: 525950 -'Just Beat Em Up : World of Fury': +"Just Beat Em Up : World of Fury": pageId: 107922 steam: 857420 Just Beneath The Skin 2D: @@ -87316,8 +85015,8 @@ Just Cause: pageId: 691 steam: 6880 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\JustCause\Saves\JCSaves\}}' + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\JustCause\\Saves\\JCSaves\\}}" Just Cause 2: gog: 1833855510 pageId: 2045 @@ -87325,26 +85024,22 @@ Just Cause 2: steamSide: - 259080 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Square Enix\Just Cause 2\Saves\JC2Settings}}' - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\8190\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Square Enix\\Just Cause 2\\Saves\\JC2Settings}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\8190\\}}" Just Cause 3: pageId: 20905 steam: 225540 steamSide: - 619910 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Square Enix\Just Cause 3\Saves\0\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Square Enix\Just Cause 3\Saves\{{p|uid}}\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Square Enix\\Just Cause 3\\Saves\\0\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Square Enix\\Just Cause 3\\Saves\\{{p|uid}}\\}}" Just Cause 4: pageId: 97063 steam: 517630 templates: - - >- - {{Game data/config|Windows|{{P|userprofile\Documents}}\Square Enix\Just Cause - 4\LocalData\startup_settings.json|{{P|steam}}\userdata\{{P|uid}}\517630\remote\local_settings.json}} - - >- - {{Game data/saves|Windows|{{P|steam}}\userdata\{{P|uid}}\517630\remote\|{{P|userprofile\documents}}\Epic - Games\Square Enix\Just Cause 4\}} + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\Square Enix\\Just Cause 4\\LocalData\\startup_settings.json|{{P|steam}}\\userdata\\{{P|uid}}\\517630\\remote\\local_settings.json}}" + - "{{Game data/saves|Windows|{{P|steam}}\\userdata\\{{P|uid}}\\517630\\remote\\|{{P|userprofile\\documents}}\\Epic Games\\Square Enix\\Just Cause 4\\}}" Just Chatting: pageId: 156746 steam: 1221560 @@ -87361,14 +85056,14 @@ Just Deserts: pageId: 38398 steam: 488660 templates: - - '{{Game data/config|Windows|{{P|appdata}}\renpy\JustDeserts\persistent}}' - - '{{Game data/saves|Windows|{{P|appdata}}\renpy\JustDeserts\*.save}}' + - "{{Game data/config|Windows|{{P|appdata}}\\renpy\\JustDeserts\\persistent}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\renpy\\JustDeserts\\*.save}}" Just Die Already: pageId: 168060 steam: 979070 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\JDGame\Saved\Config\WindowsNoEditor}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\JDGame\Saved\SaveGames}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\JDGame\\Saved\\Config\\WindowsNoEditor}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\JDGame\\Saved\\SaveGames}}" Just Die Neon: pageId: 68808 steam: 668570 @@ -87402,7 +85097,7 @@ Just King: pageId: 181381 steam: 1059980 templates: - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Vish Game Studio\King\Saves}}' + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Vish Game Studio\\King\\Saves}}" Just N: pageId: 141239 steam: 1095610 @@ -87425,12 +85120,12 @@ Just Shapes & Beats: pageId: 59125 steam: 531510 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\SOFTWARE\Berzerk Studio\JSB\}}' - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\531510\remote\JSBSave_SaveData}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\Berzerk Studio\\JSB\\}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\531510\\remote\\JSBSave_SaveData}}" Just Ski: pageId: 76363 steam: 740230 -'Just Sleep - Meditate, Focus, Relax': +"Just Sleep - Meditate, Focus, Relax": pageId: 138702 steam: 1093150 Just Spin: @@ -87440,7 +85135,7 @@ Just Survive: pageId: 22067 steam: 295110 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' + - "{{Game data/config|Windows|{{p|game}}\\}}" Just Us: pageId: 69514 steam: 612660 @@ -87458,7 +85153,7 @@ Just a Humble Swordsmith: Just a Jumping Square: pageId: 87285 steam: 800520 -'Just, Bearly': +"Just, Bearly": pageId: 82119 steam: 792030 Justice: @@ -87475,21 +85170,18 @@ Justice Online: Justice Strikes: pageId: 157464 steam: 1206020 -'Justice Sucks: Tactical Vacuum Action': +"Justice Sucks: Tactical Vacuum Action": gog: 1152440995 pageId: 181832 steam: 856890 templates: - - >- - {{Game - data/saves|Steam|{{P|steam}}\userdata\{{P|uid}}\856890\remote\SaveGame.dat|{{P|userprofile\appdata\locallow}}\Samurai - Punk\JUSTICE SUCKS\Steam\{{P|uid}}\SaveGame.dat}} + - "{{Game data/saves|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\856890\\remote\\SaveGame.dat|{{P|userprofile\\appdata\\locallow}}\\Samurai Punk\\JUSTICE SUCKS\\Steam\\{{P|uid}}\\SaveGame.dat}}" Justin Wack and the Big Time Hack: gog: 1240343320 pageId: 145510 steam: 1131670 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Warm Kitten\Justin Wack and the Big Time Hack}}' + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Warm Kitten\\Justin Wack and the Big Time Hack}}" Jut: pageId: 155410 steam: 1135030 @@ -87504,12 +85196,12 @@ Jydge: pageId: 63859 steam: 654050 templates: - - '{{Game data/saves|Windows|{{p|appdata}}\10tons\JYDGE\profiles}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/10tons/JYDGE/profiles}}' + - "{{Game data/saves|Windows|{{p|appdata}}\\10tons\\JYDGE\\profiles}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/10tons/JYDGE/profiles}}" K Station: pageId: 33765 steam: 471720 -K'Nossos: +"K'Nossos": pageId: 76394 steam: 696770 K-Point Ski Jumping: @@ -87521,11 +85213,11 @@ K-Rolik: K-pop VR: pageId: 77594 steam: 744020 -'K. Hawk: Survival Instinct': +"K. Hawk: Survival Instinct": pageId: 157705 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/saves|Windows|{{p|game}}\savegame\}}' + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\savegame\\}}" K.O.M.A: pageId: 129879 steam: 999040 @@ -87539,9 +85231,9 @@ KAKUDO: pageId: 186298 steam: 2063510 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\KAKUDO\Saved\Config\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\KAKUDO\Saved\}}' -KAMASUTRA \ 爱经: + - "{{Game data/config|Windows|{{p|localappdata}}\\KAKUDO\\Saved\\Config\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\KAKUDO\\Saved\\}}" +"KAMASUTRA \\ 爱经": pageId: 120739 steam: 965160 KANNA: @@ -87590,12 +85282,12 @@ KO Mech: pageId: 95339 steam: 862770 templates: - - '{{Game data/config|Windows|{{P|userprofile}}\AppData\LocalLow\DefaultCompany\KO MECH\}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\DefaultCompany\KO MECH\}}' -'KOBOLD: Chapter I': + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\DefaultCompany\\KO MECH\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\DefaultCompany\\KO MECH\\}}" +"KOBOLD: Chapter I": pageId: 121722 steam: 972740 -KONOSUBA - God's Blessing on this Wonderful World! Love For These Clothes Of Desire!: +"KONOSUBA - God's Blessing on this Wonderful World! Love For These Clothes Of Desire!": pageId: 187929 steam: 2349140 KRUM - Edge of Darkness: @@ -87616,14 +85308,14 @@ KWAAN: Ka Mate: pageId: 67944 steam: 636490 -'Kaan: Barbarian''s Blade': +"Kaan: Barbarian's Blade": pageId: 169071 templates: - - '{{Game data/config|Windows|{{P|game}}\general.cfg}}' + - "{{Game data/config|Windows|{{P|game}}\\general.cfg}}" Kabitis: pageId: 42750 steam: 475220 -'Kabitis 2: Fire Sword': +"Kabitis 2: Fire Sword": pageId: 144693 steam: 1018700 Kaboom Monsters: @@ -87633,13 +85325,13 @@ Kabounce: pageId: 39518 steam: 431930 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\KABOUNCE\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\KABOUNCE\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\KABOUNCE\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\KABOUNCE\\Saved\\SaveGames\\}}" Kabus 22: pageId: 168197 templates: - - '{{Game data/config|Windows|{{p|game}}\options.k22}}' - - '{{Game data/saves|Windows|{{p|game}}\kayitxx.sav}}' + - "{{Game data/config|Windows|{{p|game}}\\options.k22}}" + - "{{Game data/saves|Windows|{{p|game}}\\kayitxx.sav}}" Kach: pageId: 180874 steam: 2091220 @@ -87650,36 +85342,36 @@ Kaede the Eliminator: pageId: 147495 steam: 1122040 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Moyashi Tec lab\}}' + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Moyashi Tec lab\\}}" Kaet Must Die!: pageId: 69016 steam: 691650 -'Kageroh: Shadow Corridor': +"Kageroh: Shadow Corridor": pageId: 128232 steam: 1025250 templates: - - '{{Game data/config|Windows|{{p|LocalAppData}}\Kageroh\Saved\Config\WindowsNoEditor}}' - - '{{Game data/saves|Windows|{{p|LocalAppData}}\Kageroh\Saved\SaveGames}}' + - "{{Game data/config|Windows|{{p|LocalAppData}}\\Kageroh\\Saved\\Config\\WindowsNoEditor}}" + - "{{Game data/saves|Windows|{{p|LocalAppData}}\\Kageroh\\Saved\\SaveGames}}" Kagetsu Tohya: pageId: 177641 templates: - - '{{Game data/saves|Windows|{{p|game}}}}' + - "{{Game data/saves|Windows|{{p|game}}}}" Kagura Douchuuki: pageId: 45936 steam: 378790 -'Kaguya-sama: Love Is War': +"Kaguya-sama: Love Is War": pageId: 168484 steam: 1640660 Kai Entity: pageId: 110704 steam: 931620 -Kai Yuen's Overlapped Universe: +"Kai Yuen's Overlapped Universe": pageId: 121129 steam: 796980 -'Kaidi, armed with a cat': +"Kaidi, armed with a cat": pageId: 125544 steam: 996550 -'Kaiju Big Battel: Fighto Fantasy': +"Kaiju Big Battel: Fighto Fantasy": pageId: 60337 steam: 611710 Kaiju Kite Attack: @@ -87692,21 +85384,21 @@ Kaiju Wars: pageId: 177377 steam: 1508400 templates: - - '{{Game data/config|Windows|{{p|HKCU}}\SteamLibrary\steamapps\common\Kaiju Wars}}' - - '{{Game data/saves|Steam|{{p|appdata}}\LocalLow\Foolish Mortals\Kaiju Wars\Campaigns}}' + - "{{Game data/config|Windows|{{p|HKCU}}\\SteamLibrary\\steamapps\\common\\Kaiju Wars}}" + - "{{Game data/saves|Steam|{{p|appdata}}\\LocalLow\\Foolish Mortals\\Kaiju Wars\\Campaigns}}" Kaiju-A-GoGo: pageId: 48114 steam: 333210 templates: - - '{{Game data/saves|Windows|{{p|localappdata}}\Kaiju-A-GoGo}}' + - "{{Game data/saves|Windows|{{p|localappdata}}\\Kaiju-A-GoGo}}" Kairo: pageId: 6542 steam: 233230 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\SOFTWARE\Locked Door Puzzle\Kairo}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Locked Door Puzzle/Kairo/}}' - - '{{Game data/saves|Steam|{{P|steam}}\userdata\{{P|uid}}\233230\remote\kairo.sav}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Locked Door Puzzle/Kairo/}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\SOFTWARE\\Locked Door Puzzle\\Kairo}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Locked Door Puzzle/Kairo/}}" + - "{{Game data/saves|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\233230\\remote\\kairo.sav}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Locked Door Puzzle/Kairo/}}" Kaisuo: pageId: 132611 steam: 1045590 @@ -87714,22 +85406,22 @@ Kajko i Kokosz: gog: 1720224179 pageId: 140641 templates: - - '{{Game data/saves|DOS|{{p|game}}\*.sav}}' -'Kajko i Kokosz: Cudowny Lek': + - "{{Game data/saves|DOS|{{p|game}}\\*.sav}}" +"Kajko i Kokosz: Cudowny Lek": pageId: 140685 templates: - - '{{Game data/config|Windows|{{p|game}}\ar.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\save\}}' -'Kajko i Kokosz: Szkoła Latania': + - "{{Game data/config|Windows|{{p|game}}\\ar.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\save\\}}" +"Kajko i Kokosz: Szkoła Latania": pageId: 140648 templates: - - '{{Game data/config|Windows|{{p|game}}\ar.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\save\}}' -'Kajko i Kokosz: Twierdza Czarnoksiężnika': + - "{{Game data/config|Windows|{{p|game}}\\ar.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\save\\}}" +"Kajko i Kokosz: Twierdza Czarnoksiężnika": pageId: 140691 templates: - - '{{Game data/saves|Windows|{{p|game}}\saves\}}' -'Kajko i Kokosz: W Krainie Borostworów': + - "{{Game data/saves|Windows|{{p|game}}\\saves\\}}" +"Kajko i Kokosz: W Krainie Borostworów": pageId: 140644 Kakatte Koi Yo!: pageId: 155414 @@ -87761,7 +85453,7 @@ Kalimba: Kalonline: pageId: 42370 steam: 475100 -'Kalzor: 2000': +"Kalzor: 2000": pageId: 64058 steam: 656640 Kama Bullet Heritage: @@ -87770,7 +85462,7 @@ Kama Bullet Heritage: Kama Bullet Heritage 2: pageId: 91918 steam: 839890 -'Kamasutra Connect : Sexy Hentai Girls': +"Kamasutra Connect : Sexy Hentai Girls": pageId: 121687 steam: 929310 Kamboja: @@ -87783,8 +85475,8 @@ Kami: pageId: 18586 steam: 272040 templates: - - '{{Game data/config|Windows|{{p|appdata}}\com.stateofplaygames.steam.kami\Local Store\}}' - - '{{Game data/saves|Windows|{{p|appdata}}\com.stateofplaygames.steam.kami\Local Store\}}' + - "{{Game data/config|Windows|{{p|appdata}}\\com.stateofplaygames.steam.kami\\Local Store\\}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\com.stateofplaygames.steam.kami\\Local Store\\}}" Kami no Rhapsody: pageId: 164998 Kamikaze Cube: @@ -87812,23 +85504,21 @@ Kamile - Episode 1: Kamio Recoil: pageId: 55271 steam: 557420 -'Kamiwaza: Way of the Thief': +"Kamiwaza: Way of the Thief": pageId: 178317 steam: 1924810 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Kamiwaza\Saved\Config\WindowsNoEditor\}}' - - >- - {{Game data/saves|Windows|{{p|userprofile}}\Saved Games\Kamiwaza\KAMIWAZA_SYSTEM_DATA.sav | - {{p|userprofile}}\Saved Games\Kamiwaza\KAMIWAZA_GAME_DATA_##.sav}} -'Kamodo Steve: Janitor on Fire!': + - "{{Game data/config|Windows|{{p|localappdata}}\\Kamiwaza\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Saved Games\\Kamiwaza\\KAMIWAZA_SYSTEM_DATA.sav | {{p|userprofile}}\\Saved Games\\Kamiwaza\\KAMIWAZA_GAME_DATA_##.sav}}" +"Kamodo Steve: Janitor on Fire!": pageId: 154346 steam: 1181970 Kamui: pageId: 37265 steam: 283820 templates: - - '{{Game data/config|Windows|{{p|game}}\setupkamui.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\savedata.sav}}' + - "{{Game data/config|Windows|{{p|game}}\\setupkamui.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\savedata.sav}}" Kana Quest: pageId: 151283 steam: 725850 @@ -87836,24 +85526,22 @@ Kandagawa Jet Girls: pageId: 162833 steam: 1233800 templates: - - '{{Game data/config|Windows|{{P|game}}\SavesDir\setting.ini}}' - - '{{Game data/saves|Windows|{{P|game}}\SavesDir\{{P|uid}}\save_filexx.kjg}}' -'Kane & Lynch 2: Dog Days': + - "{{Game data/config|Windows|{{P|game}}\\SavesDir\\setting.ini}}" + - "{{Game data/saves|Windows|{{P|game}}\\SavesDir\\{{P|uid}}\\save_filexx.kjg}}" +"Kane & Lynch 2: Dog Days": gog: 2057392130 pageId: 10993 steam: 28000 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\IO Interactive\Kane & Lynch 2: Dog Days\}}' - - >- - {{Game data/saves|Windows|{{p|localappdata}}\{{p|uid}}\28000\|{{p|userprofile\Documents}}\Square Enix\Kane & Lynch - 2 - Dog Days\}} -'Kane & Lynch: Dead Men': + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\IO Interactive\\Kane & Lynch 2: Dog Days\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\{{p|uid}}\\28000\\|{{p|userprofile\\Documents}}\\Square Enix\\Kane & Lynch 2 - Dog Days\\}}" +"Kane & Lynch: Dead Men": gog: 1721096025 pageId: 10983 steam: 8080 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\kaneandlynch\main.ini}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\kaneandlynch\0.kls}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\kaneandlynch\\main.ini}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\kaneandlynch\\0.kls}}" Kanji Training Game: pageId: 46332 steam: 397210 @@ -87867,26 +85555,26 @@ Kansei: pageId: 108812 steam: 771340 templates: - - '{{Game data/config|Windows|{{P|appdata}}\renpy\kannew-1482468000\persistent}}' - - '{{Game data/saves|Windows|{{P|appdata}}\renpy\kannew-1482468000\*.save}}' + - "{{Game data/config|Windows|{{P|appdata}}\\renpy\\kannew-1482468000\\persistent}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\renpy\\kannew-1482468000\\*.save}}" Kao the Kangaroo: gog: 1748253806 pageId: 20358 steam: 2360020 templates: - - '{{Game data/config|Windows|{{p|game}}\kao.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\kao*.sav}}' + - "{{Game data/config|Windows|{{p|game}}\\kao.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\kao*.sav}}" Kao the Kangaroo (2022): gog: 1074396890 gogSide: - 1104519912 + - 1153242124 + - 1458958727 - 1560571383 - 1631904812 - 1669230617 - - 2074692331 - 2000108514 - - 1153242124 - - 1458958727 + - 2074692331 pageId: 163039 renamedFrom: - Kao the Kangaroo (2021) @@ -87894,34 +85582,32 @@ Kao the Kangaroo (2022): steamSide: - 2052960 - 2052961 + - 2052962 - 2052963 - 2155050 - - 2052962 - 2249670 templates: - - '{{Game data/config|Epic Games Launcher|{{p|localappdata}}\KaoDRMFree\Saved\Config\WindowsNoEditor}}' - - '{{Game data/config|GOG.com|{{p|localappdata}}\KaoGOG\Saved\Config\WindowsNoEditor}}' - - '{{Game data/config|Steam|{{p|localappdata}}\Kao\Saved\Config\WindowsNoEditor}}' - - '{{Game data/saves|Epic Games Launcher|{{p|localappdata}}\KaoDRMFree\Saved\SaveGames}}' - - '{{Game data/saves|GOG.com|{{p|localappdata}}\KaoGOG\Saved\SaveGames}}' - - '{{Game data/saves|Steam|{{p|localappdata}}\Kao\Saved\SaveGames}}' -'Kao the Kangaroo: Round 2': + - "{{Game data/config|Epic Games Launcher|{{p|localappdata}}\\KaoDRMFree\\Saved\\Config\\WindowsNoEditor}}" + - "{{Game data/config|GOG.com|{{p|localappdata}}\\KaoGOG\\Saved\\Config\\WindowsNoEditor}}" + - "{{Game data/config|Steam|{{p|localappdata}}\\Kao\\Saved\\Config\\WindowsNoEditor}}" + - "{{Game data/saves|Epic Games Launcher|{{p|localappdata}}\\KaoDRMFree\\Saved\\SaveGames}}" + - "{{Game data/saves|GOG.com|{{p|localappdata}}\\KaoGOG\\Saved\\SaveGames}}" + - "{{Game data/saves|Steam|{{p|localappdata}}\\Kao\\Saved\\SaveGames}}" +"Kao the Kangaroo: Round 2": gog: 1748253806 pageId: 60616 steam: 1048540 templates: - - '{{Game data/config|Windows|{{p|game}}\media\*.ini|{{p|localappdata}}\Kao - Round 2\*.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\media\Kao2.SG|{{p|localappdata}}\Kao - Round 2\}}' - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\1048540\remote\}}' -'Kao: Mystery of Volcano': + - "{{Game data/config|Windows|{{p|game}}\\media\\*.ini|{{p|localappdata}}\\Kao - Round 2\\*.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\media\\Kao2.SG|{{p|localappdata}}\\Kao - Round 2\\}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\1048540\\remote\\}}" +"Kao: Mystery of Volcano": gog: 1748253806 pageId: 77762 steam: 2360030 templates: - - >- - {{Game data/config|Windows|{{p|game}}\media\key.ini
{{p|game}}\media\lang.ini
{{p|game}}\media\user.ini}} - - '{{Game data/saves|Windows|{{p|game}}\media\KAO2SGa_bb_ccc_dddd_eee_fff_ggggg}}' + - "{{Game data/config|Windows|{{p|game}}\\media\\key.ini
{{p|game}}\\media\\lang.ini
{{p|game}}\\media\\user.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\media\\KAO2SGa_bb_ccc_dddd_eee_fff_ggggg}}" Kaori After Story: pageId: 123517 steam: 979600 @@ -87932,7 +85618,7 @@ Kapia: gog: 1986491452 pageId: 174289 steam: 1351140 -'Kapital: Sparks of Revolution': +"Kapital: Sparks of Revolution": gog: 1260865506 pageId: 172021 steam: 1399700 @@ -87941,21 +85627,17 @@ Kapia: Kapsul Infinite: pageId: 36776 steam: 518680 -'Kaptain Brawe: A Brawe New World': +"Kaptain Brawe: A Brawe New World": pageId: 41027 steam: 65080 steamSide: - 65090 templates: - - >- - {{Game data/config|Windows|{{P|programdata}}\Cateia Games\Kaptain - Brawe\{{P|uid}}\|{{P|game}}\userData\*.cfg{{note|Since July 2023 update.|name=July2023update}}}} - - '{{Game data/config|Linux|{{P|game}}/userData/*.cfg}}' - - >- - {{Game data/saves|Windows|{{P|programdata}}\Cateia Games\Kaptain - Brawe\{{P|uid}}\|{{P|game}}\userData\{{note|name=July2023update}}}} - - '{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/Kaptain Brawe/}}' - - '{{Game data/saves|Linux|{{P|game}}/userData/}}' + - "{{Game data/config|Windows|{{P|programdata}}\\Cateia Games\\Kaptain Brawe\\{{P|uid}}\\|{{P|game}}\\userData\\*.cfg{{note|Since July 2023 update.|name=July2023update}}}}" + - "{{Game data/config|Linux|{{P|game}}/userData/*.cfg}}" + - "{{Game data/saves|Windows|{{P|programdata}}\\Cateia Games\\Kaptain Brawe\\{{P|uid}}\\|{{P|game}}\\userData\\{{note|name=July2023update}}}}" + - "{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/Kaptain Brawe/}}" + - "{{Game data/saves|Linux|{{P|game}}/userData/}}" Kaptein Sabeltann: pageId: 187220 steam: 1383970 @@ -87963,8 +85645,8 @@ Kara no Shojo: pageId: 121429 steam: 965810 templates: - - '{{Game data/saves|Windows|{{p|game}}\savedata\*.*}}' -Kara's Darkness Chapter One: + - "{{Game data/saves|Windows|{{p|game}}\\savedata\\*.*}}" +"Kara's Darkness Chapter One": pageId: 95208 steam: 850810 Karagon: @@ -87974,24 +85656,22 @@ Karakara: pageId: 34551 steam: 487430 templates: - - '{{Game data/config|Windows|{{p|APPDATA}}\calme\sekaiproject\KARAKARA}}' - - '{{Game data/saves|Windows|{{p|APPDATA}}\calme\sekaiproject\KARAKARA}}' + - "{{Game data/config|Windows|{{p|APPDATA}}\\calme\\sekaiproject\\KARAKARA}}" + - "{{Game data/saves|Windows|{{p|APPDATA}}\\calme\\sekaiproject\\KARAKARA}}" Karakara 2: pageId: 75970 steam: 745850 templates: - - '{{Game data/config|Windows|{{P|game}}\savedata}}' - - '{{Game data/saves|Windows|{{P|game}}\savedata}}' + - "{{Game data/config|Windows|{{P|game}}\\savedata}}" + - "{{Game data/saves|Windows|{{P|game}}\\savedata}}" Karar X: pageId: 149166 steam: 1146220 -'Karaski: What Goes Up...': +"Karaski: What Goes Up...": pageId: 44353 steam: 424640 templates: - - >- - {{Game data/config|Windows|{{P|game}}\config.cfg|{{P|hkcu}}\Software\Unbound Creations LLC\Karaski: What Goes - Up...\}} + - "{{Game data/config|Windows|{{P|game}}\\config.cfg|{{P|hkcu}}\\Software\\Unbound Creations LLC\\Karaski: What Goes Up...\\}}" Karate Cat: pageId: 149007 steam: 1152410 @@ -88005,8 +85685,8 @@ Karateka (2012): pageId: 40677 steam: 217270 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Karateka\LiquidGame\Config\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Karateka\LiquidGame\GameSaves\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Karateka\\LiquidGame\\Config\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Karateka\\LiquidGame\\GameSaves\\}}" Kardboard Kings: gog: 1590022488 pageId: 175104 @@ -88017,11 +85697,11 @@ Kards: Kare wa Kanojo: pageId: 130219 steam: 1024790 -Karkoth's Keep: +"Karkoth's Keep": pageId: 160225 templates: - - '{{Game data/config|DOS|{{p|game}}\KEEPFIG.DAT}}' - - '{{Game data/saves|DOS|{{p|game}}\*.DAT}}' + - "{{Game data/config|DOS|{{p|game}}\\KEEPFIG.DAT}}" + - "{{Game data/saves|DOS|{{p|game}}\\*.DAT}}" Karl BOOM: pageId: 150168 steam: 1099470 @@ -88043,23 +85723,23 @@ Karma Miwa: Karma. Incarnation 1: pageId: 39538 steam: 394700 -'Karmaflow: The Rock Opera Videogame - Act I & Act II': +"Karmaflow: The Rock Opera Videogame - Act I & Act II": pageId: 47994 steam: 317940 Karmasutra: pageId: 66277 steam: 677730 templates: - - '{{Game data/saves|Linux|{{p|linuxhome}}/.renpy/Karmasutra-##########}}' + - "{{Game data/saves|Linux|{{p|linuxhome}}/.renpy/Karmasutra-##########}}" Karnage Chronicles: pageId: 60313 steam: 611160 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\KarnageVR\Saved\Config\WindowsNoEditor}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\KarnageVR\Saved\SaveGames}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\KarnageVR\\Saved\\Config\\WindowsNoEditor}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\KarnageVR\\Saved\\SaveGames}}" Karnov: pageId: 176858 -Karnov's Revenge: +"Karnov's Revenge": pageId: 168094 Karos: pageId: 49059 @@ -88070,10 +85750,10 @@ Karos Returns: Karradash - The Lost Dungeons: pageId: 68184 steam: 682020 -Karryn's Prison: +"Karryn's Prison": pageId: 173746 steam: 1619750 -'Kart Chaser: The Boost VR': +"Kart Chaser: The Boost VR": pageId: 56982 steam: 583150 Kart Racing Pro: @@ -88085,7 +85765,7 @@ Kart kids: KartKraft: pageId: 41999 steam: 406350 -'KartRider: Drift': +"KartRider: Drift": pageId: 154287 steam: 1184140 Kartofank VR: @@ -88104,14 +85784,10 @@ Katamari Damacy Reroll: pageId: 111570 steam: 848350 templates: - - >- - {{Game data/config|Windows|{{P|hkcu}}\Software\BANDAI NAMCO Entertainment\katamaridamacy|{{P|localappdata}}\BANDAI - NAMCO Entertainment\kataramidamacy\Saved\SaveTemporary\{{P|uid}}\Setting}} - - '{{Game data/saves|Windows|{{P|localappdata}}\BANDAI NAMCO Entertainment\kataramidamacy\Saved\SaveGames\{{P|uid}}}}' - - >- - {{Game data/saves|Microsoft - Store|{{P|localappdata}}\Packages\NAMCOBANDAIGamesInc.KatamariDamacyRerollWindows_gdy2aq6ez762w\SystemAppData}} -'Katana Kami: A Way of the Samurai Story': + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\BANDAI NAMCO Entertainment\\katamaridamacy|{{P|localappdata}}\\BANDAI NAMCO Entertainment\\kataramidamacy\\Saved\\SaveTemporary\\{{P|uid}}\\Setting}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\BANDAI NAMCO Entertainment\\kataramidamacy\\Saved\\SaveGames\\{{P|uid}}}}" + - "{{Game data/saves|Microsoft Store|{{P|localappdata}}\\Packages\\NAMCOBANDAIGamesInc.KatamariDamacyRerollWindows_gdy2aq6ez762w\\SystemAppData}}" +"Katana Kami: A Way of the Samurai Story": pageId: 158007 steam: 1062340 Katana Kata: @@ -88128,24 +85804,20 @@ Katana Zero: pageId: 39735 steam: 460950 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Katana_ZERO\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Katana_ZERO\}}' - - >- - {{Game data/saves|Microsoft - Store|{{p|localappdata}}\Packages\DevolverDigital.KatanaZero_6kzv4j18v0c96\LocalCache\Local\Katana_ZERO\}} + - "{{Game data/config|Windows|{{p|localappdata}}\\Katana_ZERO\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Katana_ZERO\\}}" + - "{{Game data/saves|Microsoft Store|{{p|localappdata}}\\Packages\\DevolverDigital.KatanaZero_6kzv4j18v0c96\\LocalCache\\Local\\Katana_ZERO\\}}" Katawa Shoujo: pageId: 1390 templates: - - >- - {{Game - data/config|Windows|{{p|appdata}}\Renpy\katawashoujo_actual\persistent|{{p|appdata}}\Renpy\katawashoujo_actual_*\persistent}} - - '{{Game data/saves|Windows|{{p|appdata}}\Renpy\katawashoujo_actual\*.save}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/RenPy/katawashoujo_actual}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.renpy/katawashoujo_actual}}' -Kate's Test: + - "{{Game data/config|Windows|{{p|appdata}}\\Renpy\\katawashoujo_actual\\persistent|{{p|appdata}}\\Renpy\\katawashoujo_actual_*\\persistent}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Renpy\\katawashoujo_actual\\*.save}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/RenPy/katawashoujo_actual}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.renpy/katawashoujo_actual}}" +"Kate's Test": pageId: 82355 steam: 790260 -'Kate: Collateral Damage': +"Kate: Collateral Damage": pageId: 171778 steam: 1623000 Katharsis: @@ -88156,32 +85828,32 @@ Kathy Rain: pageId: 34206 steam: 370910 templates: - - '{{Game data/config|Windows|{{P|game}}\acsetup.cfg}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Applications/Kathy Rain/KathyRain.app/Contents/Resources/acsetup.cfg}}' - - '{{Game data/saves|Windows|{{P|game}}\agssave.*}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Applications/Kathy Rain/KathyRain.app/Contents/Resources/}}' -'Kathy Rain: Director''s Cut': + - "{{Game data/config|Windows|{{P|game}}\\acsetup.cfg}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Applications/Kathy Rain/KathyRain.app/Contents/Resources/acsetup.cfg}}" + - "{{Game data/saves|Windows|{{P|game}}\\agssave.*}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Applications/Kathy Rain/KathyRain.app/Contents/Resources/}}" +"Kathy Rain: Director's Cut": gog: 2036622572 pageId: 166170 steam: 1395030 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Clifftop Games\Kathy Rain: Director''s Cut}}' - - '{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/Clifftop Games/Kathy Rain_ Director''s Cut/prefs}}' - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Clifftop Games\Kathy Rain_ Director''s Cut\}}' - - '{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/Clifftop Games/Kathy Rain_ Director''s Cut/}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Clifftop Games\\Kathy Rain: Director's Cut}}" + - "{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/Clifftop Games/Kathy Rain_ Director's Cut/prefs}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Clifftop Games\\Kathy Rain_ Director's Cut\\}}" + - "{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/Clifftop Games/Kathy Rain_ Director's Cut/}}" Katie: pageId: 92993 steam: 829560 Katto: pageId: 95547 steam: 869010 -'Katy & Bob: Cake Café': +"Katy & Bob: Cake Café": pageId: 123359 steam: 869620 Katy and Bob Way Back Home: pageId: 69990 steam: 575890 -'Katy and Bob: Safari Cafe': +"Katy and Bob: Safari Cafe": pageId: 98080 steam: 567160 Katyusha: @@ -88222,16 +85894,16 @@ Kaze and the Wild Masks: Ke-Tsu-No-Ana: pageId: 34771 steam: 472830 -'Keatz: The Lonely Bird': +"Keatz: The Lonely Bird": pageId: 70018 steam: 707320 Kebab It Up!: pageId: 78550 steam: 745400 -Kedemara - The Orphan's Ballad (Ch.1 & 2): +"Kedemara - The Orphan's Ballad (Ch.1 & 2)": pageId: 150018 renamedFrom: - - Kedemara - The Orphan's Ballad (Ch.1) + - "Kedemara - The Orphan's Ballad (Ch.1)" steam: 1171110 Keebles: pageId: 48350 @@ -88245,12 +85917,12 @@ Keep Balance VR: Keep Defending: pageId: 54383 steam: 527720 -'Keep It Cool, Man': +"Keep It Cool, Man": pageId: 180365 steam: 2000320 templates: - - '{{Game data/saves|Windows|{{p|LocalAppData}}\KICM\}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.local/share/KICM}}' + - "{{Game data/saves|Windows|{{p|LocalAppData}}\\KICM\\}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.local/share/KICM}}" Keep It Safe 2: pageId: 64008 steam: 660280 @@ -88264,19 +85936,19 @@ Keep Talking and Nobody Explodes: pageId: 34669 steam: 341800 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\Steel Crate Games\Keep Talking and Nobody Explodes}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Steel Crate Games\Keep Talking and Nobody Explodes}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/com.keeptalkinggame}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Steel Crate Games/Keep Talking and Nobody Explodes}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Steel Crate Games\\Keep Talking and Nobody Explodes}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Steel Crate Games\\Keep Talking and Nobody Explodes}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/com.keeptalkinggame}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Steel Crate Games/Keep Talking and Nobody Explodes}}" Keep Watching VR: pageId: 53405 steam: 552630 -'Keep in Mind: Remastered': +"Keep in Mind: Remastered": gog: 2027101020 pageId: 87347 steam: 643200 templates: - - '{{Game data/config|Windows|{{P|userprofile}}\AppData\LocalLow\Akupara Games\Keep In Mind\Settings.json}}' + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Akupara Games\\Keep In Mind\\Settings.json}}" Keep in Touch: pageId: 76143 steam: 748860 @@ -88292,7 +85964,7 @@ Keeper 2119: Keeper of the Sun and Moon: pageId: 140889 steam: 1097670 -'Keeper: The Hunter of Insect': +"Keeper: The Hunter of Insect": pageId: 89322 steam: 717200 KeeperRL: @@ -88308,37 +85980,37 @@ Keepsake: pageId: 90322 steam: 704860 templates: - - '{{Game data/config|Windows|{{p|game}}\res\config\}}' - - '{{Game data/saves|Windows|{{p|game}}\res\save\}}' + - "{{Game data/config|Windows|{{p|game}}\\res\\config\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\res\\save\\}}" Keiko Everlasting: pageId: 96271 steam: 852630 Kek Story: pageId: 58894 steam: 575730 -'Kekistan: This is War': +"Kekistan: This is War": pageId: 74936 steam: 734140 Kelipot / 形骸骑士: pageId: 145214 steam: 1090440 -Kelly Slater's Pro Surfer: +"Kelly Slater's Pro Surfer": pageId: 646 templates: - - '{{Game data/config|Windows|{{p|game}}\Game\config.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\Game\savegame\}}' + - "{{Game data/config|Windows|{{p|game}}\\Game\\config.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\Game\\savegame\\}}" Kelvin and the Infamous Machine: pageId: 42205 steam: 376520 templates: - - '{{Game data/config|Windows|{{P|userprofile}}\.prefs\iMachine}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.prefs/iMachine}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\.prefs\iMachine}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.prefs/iMachine}}' + - "{{Game data/config|Windows|{{P|userprofile}}\\.prefs\\iMachine}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.prefs/iMachine}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\.prefs\\iMachine}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.prefs/iMachine}}" Kemonomichi-White Moment-: pageId: 92853 steam: 843760 -Ken Follett's The Pillars of the Earth: +"Ken Follett's The Pillars of the Earth": gog: 1081614865 gogSide: - 1571151543 @@ -88347,34 +86019,30 @@ Ken Follett's The Pillars of the Earth: steamSide: - 643650 templates: - - '{{Game data/config|Windows|{{p|LOCALAPPDATA}}\Daedalic Entertainment GmbH\The Pillars of the Earth\}}' - - >- - {{Game data/config|OS X|{{P|osxhome}}/Library/Application Support/Daedalic Entertainment GmbH/The Pillars of the - Earth/}} - - '{{Game data/config|Linux|{{P|xdgdatahome}}/Daedalic Entertainment GmbH/The Pillars of the Earth/}}' - - '{{Game data/saves|Windows|{{p|LOCALAPPDATA}}\Daedalic Entertainment GmbH\The Pillars of the Earth\Savegames\}}' - - >- - {{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/Daedalic Entertainment GmbH/The Pillars of the - Earth/Savegames/}} - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/Daedalic Entertainment GmbH/The Pillars of the Earth/Savegames/}}' + - "{{Game data/config|Windows|{{p|LOCALAPPDATA}}\\Daedalic Entertainment GmbH\\The Pillars of the Earth\\}}" + - "{{Game data/config|OS X|{{P|osxhome}}/Library/Application Support/Daedalic Entertainment GmbH/The Pillars of the Earth/}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/Daedalic Entertainment GmbH/The Pillars of the Earth/}}" + - "{{Game data/saves|Windows|{{p|LOCALAPPDATA}}\\Daedalic Entertainment GmbH\\The Pillars of the Earth\\Savegames\\}}" + - "{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/Daedalic Entertainment GmbH/The Pillars of the Earth/Savegames/}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/Daedalic Entertainment GmbH/The Pillars of the Earth/Savegames/}}" Ken ga Kimi: pageId: 154265 steam: 1162650 -Ken's Labyrinth: +"Ken's Labyrinth": pageId: 178219 -'Kena: Bridge of Spirits': +"Kena: Bridge of Spirits": pageId: 161024 steam: 1954200 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Kena\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\Kena\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\Kena\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Kena\\Saved\\SaveGames\\}}" Kenshi: gog: 1193046833 pageId: 36276 steam: 233860 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Kenshi\save}}' + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Kenshi\\save}}" Kenshō: pageId: 79858 steam: 766000 @@ -88386,16 +86054,14 @@ Kentucky Route Zero: pageId: 16912 steam: 231200 templates: - - >- - {{Game - data/config|Windows|{{p|userprofile}}\AppData\LocalLow\CardboardComputer\KentuckyRouteZero\|{{p|hkcu}}\Software\CardboardComputer\KentuckyRouteZero}} - - '{{Game data/config|GOG.com|{{p|game}}\KentuckyRouteZero\}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/Documents/KentuckyRouteZero/}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\CardboardComputer\KentuckyRouteZero\|}}' - - '{{Game data/saves|GOG.com|{{p|game}}\KentuckyRouteZero\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Documents/KentuckyRouteZero/}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/Documents/KentuckyRouteZero/}}' -'Keplerth: Another World': + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\CardboardComputer\\KentuckyRouteZero\\|{{p|hkcu}}\\Software\\CardboardComputer\\KentuckyRouteZero}}" + - "{{Game data/config|GOG.com|{{p|game}}\\KentuckyRouteZero\\}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/Documents/KentuckyRouteZero/}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\CardboardComputer\\KentuckyRouteZero\\|}}" + - "{{Game data/saves|GOG.com|{{p|game}}\\KentuckyRouteZero\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Documents/KentuckyRouteZero/}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/Documents/KentuckyRouteZero/}}" +"Keplerth: Another World": pageId: 91162 steam: 747200 Kerbal Space Program: @@ -88407,17 +86073,17 @@ Kerbal Space Program: steamSide: - 283740 templates: - - '{{Game data/config|Windows|{{p|game}}\settings.cfg}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Squad/Kerbal Space Program}}' - - '{{Game data/saves|Windows|{{p|game}}\saves}}' - - '{{Game data/saves|OS X|{{p|game}}/saves/}}' - - '{{Game data/saves|Linux|{{p|game}}/saves/}}' + - "{{Game data/config|Windows|{{p|game}}\\settings.cfg}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Squad/Kerbal Space Program}}" + - "{{Game data/saves|Windows|{{p|game}}\\saves}}" + - "{{Game data/saves|OS X|{{p|game}}/saves/}}" + - "{{Game data/saves|Linux|{{p|game}}/saves/}}" Kerbal Space Program 2: pageId: 143503 steam: 954850 templates: - - '{{Game data/config|Windows|{{P|userprofile\appdata\locallow}}\Intercept Games\Kerbal Space Program 2\Global}}' - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Intercept Games\Kerbal Space Program 2\Saves}}' + - "{{Game data/config|Windows|{{P|userprofile\\appdata\\locallow}}\\Intercept Games\\Kerbal Space Program 2\\Global}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Intercept Games\\Kerbal Space Program 2\\Saves}}" Kerfuffight: pageId: 144476 steam: 1084090 @@ -88428,8 +86094,8 @@ Kero Blaster: steamSide: - 407070 templates: - - '{{Game data/config|Windows|{{p|game}}\rsc_k\profile\}}' - - '{{Game data/saves|Windows|{{p|game}}\rsc_k\profile\}}' + - "{{Game data/config|Windows|{{p|game}}\\rsc_k\\profile\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\rsc_k\\profile\\}}" Key Of Impasse: pageId: 109742 steam: 914400 @@ -88444,8 +86110,8 @@ KeyWe: - 1728650 - 1873760 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\Stonewheat _ Sons\KeyWe}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Stonewheat _ Sons\KeyWe}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Stonewheat _ Sons\\KeyWe}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Stonewheat _ Sons\\KeyWe}}" Keyboard Killer: pageId: 59796 steam: 613250 @@ -88453,8 +86119,8 @@ Keyboard Killers: pageId: 70335 steam: 699240 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Keyboard_Killers\Saved\SaveGames\*.sav}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Keyboard_Killers\Saved\SaveGames\*.sav}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Keyboard_Killers\\Saved\\SaveGames\\*.sav}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Keyboard_Killers\\Saved\\SaveGames\\*.sav}}" Keyboard Sports - Saving QWERTY: pageId: 69074 steam: 700720 @@ -88464,25 +86130,25 @@ Keyboard Warrior: Keyg: pageId: 110138 steam: 922550 -'Keyhole Spy: Fantasy Passion': +"Keyhole Spy: Fantasy Passion": pageId: 114790 steam: 948720 -'Keyhole Spy: Frozen Hotties': +"Keyhole Spy: Frozen Hotties": pageId: 125480 steam: 965060 -'Keyhole Spy: Hot Nurses': +"Keyhole Spy: Hot Nurses": pageId: 114078 steam: 935500 -'Keyhole Spy: Lots of Girls': +"Keyhole Spy: Lots of Girls": pageId: 114794 steam: 948730 -'Keyhole Spy: Naughty Witches': +"Keyhole Spy: Naughty Witches": pageId: 114786 steam: 948710 -'Keyhole Spy: Student Girls': +"Keyhole Spy: Student Girls": pageId: 105019 steam: 906000 -'Keyhole Spy: Teachers': +"Keyhole Spy: Teachers": pageId: 105023 steam: 907440 Keys: @@ -88500,38 +86166,38 @@ Khaba: Khan VS Kahn: pageId: 141849 steam: 1020330 -'Khan: Absolute Power': +"Khan: Absolute Power": pageId: 44070 steam: 451130 Khaos Wind: pageId: 122822 steam: 970760 -Kharon's Crypt - Even Death May Die: +"Kharon's Crypt - Even Death May Die": pageId: 154277 steam: 793830 Khet 2.0: pageId: 37746 steam: 312720 -'Khimera: Destroy All Monster Girls': +"Khimera: Destroy All Monster Girls": pageId: 37489 steam: 467380 templates: - - '{{Game data/config|Windows|{{p|localappdata}}/khimera/chimControls.cfg}}' - - '{{Game data/saves|Windows|{{p|localappdata}}/khimera/chimera.dat}}' + - "{{Game data/config|Windows|{{p|localappdata}}/khimera/chimControls.cfg}}" + - "{{Game data/saves|Windows|{{p|localappdata}}/khimera/chimera.dat}}" Kholat: gog: 1433331863 pageId: 25669 steam: 343710 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Kholat\Saved\Config\WindowsNoEditor}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Kholat\Saved\SaveGames}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Kholat\\Saved\\Config\\WindowsNoEditor}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Kholat\\Saved\\SaveGames}}" Khospis: pageId: 112236 steam: 922220 -Khufu's Delivery Service: +"Khufu's Delivery Service": pageId: 79836 steam: 652310 -KiKi's adventure: +"KiKi's adventure": pageId: 148663 steam: 1167540 KiKiMiMi: @@ -88560,7 +86226,7 @@ Kick Off 2002: pageId: 161573 Kick Off 98: pageId: 161581 -'Kick Speed: Global Operations': +"Kick Speed: Global Operations": pageId: 61844 steam: 628340 Kick The Anime Simulator: @@ -88576,20 +86242,20 @@ Kick-Ass 2: pageId: 49759 steam: 304170 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Kick-Ass 2\config}}' - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Kick-Ass 2\SavedGame}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Kick-Ass 2\\config}}" + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Kick-Ass 2\\SavedGame}}" KickBeat: pageId: 14413 steam: 255370 templates: - - '{{Game data/saves|Windows|{{p|steam}}\userdata\{{p|uid}}\255370\}}' + - "{{Game data/saves|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\255370\\}}" KickHim: pageId: 38963 steam: 526460 Kicker VR: pageId: 95427 steam: 866040 -'Kicking Kittens: Putin Saves the World': +"Kicking Kittens: Putin Saves the World": pageId: 80505 steam: 783600 Kickochet: @@ -88604,29 +86270,25 @@ Kickshot: Kid A Mnesia Exhibition: pageId: 172906 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\KidAMnesia\Saved\Config\WindowsNoEditor}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\KidAMnesia\Saved\SaveGames}}' -'Kid Baby: Starchild': + - "{{Game data/config|Windows|{{P|localappdata}}\\KidAMnesia\\Saved\\Config\\WindowsNoEditor}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\KidAMnesia\\Saved\\SaveGames}}" +"Kid Baby: Starchild": pageId: 124335 steam: 559630 Kid Chameleon: pageId: 30720 steam: 34311 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\SEGA Mega Drive - Classics\setup.dat|{{p|userprofile\Documents}}\SEGA Genesis Classics\setup.dat}} - - >- - {{Game data/saves|Windows|{{p|userprofile\Documents}}\SEGA Mega Drive - Classics\0019\|{{p|userprofile\Documents}}\SEGA Genesis Classics\0019\}} + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\SEGA Mega Drive Classics\\setup.dat|{{p|userprofile\\Documents}}\\SEGA Genesis Classics\\setup.dat}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\SEGA Mega Drive Classics\\0019\\|{{p|userprofile\\Documents}}\\SEGA Genesis Classics\\0019\\}}" Kid Phonics 1: pageId: 190285 Kid Phonics 2: pageId: 190284 -Kid's Safety With George Blessure: +"Kid's Safety With George Blessure": pageId: 141548 steam: 1117770 -'Kid''s Zoo: A Baby Animal Adventure': +"Kid's Zoo: A Baby Animal Adventure": pageId: 185286 Kidnapped: pageId: 46983 @@ -88639,7 +86301,7 @@ Kids Learn: steam: 890210 Kids and Family Movie Trivia: pageId: 185786 -'Kids of Hellas: Back to Olympus': +"Kids of Hellas: Back to Olympus": pageId: 128003 steam: 928670 Kidz: @@ -88650,16 +86312,16 @@ Kidz Sports Basketball: Kiitsu: pageId: 92654 steam: 686270 -'Kika & Daigo: A Curious Tale': +"Kika & Daigo: A Curious Tale": pageId: 156633 steam: 1205140 Kilcount: pageId: 95589 steam: 870800 -Kili's treasure: +"Kili's treasure": pageId: 156252 steam: 1219020 -Kill 'Em All: +"Kill 'Em All": pageId: 92273 steam: 816870 Kill All Zombies: @@ -88677,18 +86339,14 @@ Kill It with Fire: steamSide: - 1291500 templates: - - >- - {{Game - data/config|Windows|{{P|localappdata}}\Kani\Saved\SaveGames\*Settings_KIWF_*.sav|{{P|localappdata}}\Kani\Saved\Config\WindowsNoEditor\}} - - '{{Game data/saves|Windows|{{P|localappdata}}\Kani\Saved\SaveGames\DefaultSlot_KIWF_*.sav}}' - - >- - {{Game data/saves|Microsoft - Store|{{P|LOCALAPPDATA}}\Packages\tinyBuildGames.KillItWithFire_3sz1pp2ynv2xe\SystemAppData\wgs}} + - "{{Game data/config|Windows|{{P|localappdata}}\\Kani\\Saved\\SaveGames\\*Settings_KIWF_*.sav|{{P|localappdata}}\\Kani\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Kani\\Saved\\SaveGames\\DefaultSlot_KIWF_*.sav}}" + - "{{Game data/saves|Microsoft Store|{{P|LOCALAPPDATA}}\\Packages\\tinyBuildGames.KillItWithFire_3sz1pp2ynv2xe\\SystemAppData\\wgs}}" Kill Switch: pageId: 87762 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/saves|Windows|{{p|game}}\Saves\}}' + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\Saves\\}}" Kill The Monster: pageId: 99902 steam: 890910 @@ -88711,13 +86369,13 @@ Kill la Kill -IF: pageId: 106047 steam: 922500 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\KILLlaKILL_IF}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\KILLlaKILL_IF}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\KILLlaKILL_IF}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\KILLlaKILL_IF}}" Kill or Love: pageId: 162528 steam: 1174940 templates: - - '{{Game data/saves|Windows|{{p|game}}\game\saves\*.save}}' + - "{{Game data/saves|Windows|{{p|game}}\\game\\saves\\*.save}}" Kill the Bad Guy: pageId: 50194 steam: 293940 @@ -88727,7 +86385,7 @@ Kill the Dictator: Kill the Emoji: pageId: 68472 steam: 698720 -'Kill the Emoji: The Remake': +"Kill the Emoji: The Remake": pageId: 153742 renamedFrom: - KILL THE EMOJI - THE REMAKE @@ -88745,7 +86403,7 @@ KillStreak.tv: pageId: 132430 steam: 1053060 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\SideQuest\KillStreak.tv\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\SideQuest\\KillStreak.tv\\}}" Killbot: pageId: 42457 steam: 473810 @@ -88777,21 +86435,17 @@ Killer Instinct: pageId: 31602 steam: 577940 templates: - - >- - {{Game data/config|Microsoft - Store|{{p|localappdata}}\Packages\Microsoft.KillerInstinct-Win10_8wekyb3d8bbwe\Settings}} - - >- - {{Game data/saves|Microsoft - Store|{{p|localappdata}}\Packages\Microsoft.KillerInstinct-Win10_8wekyb3d8bbwe\SystemAppData\wgs}} + - "{{Game data/config|Microsoft Store|{{p|localappdata}}\\Packages\\Microsoft.KillerInstinct-Win10_8wekyb3d8bbwe\\Settings}}" + - "{{Game data/saves|Microsoft Store|{{p|localappdata}}\\Packages\\Microsoft.KillerInstinct-Win10_8wekyb3d8bbwe\\SystemAppData\\wgs}}" Killer Is Dead: gog: 1408399958 pageId: 16298 steam: 261110 templates: - - '{{Game data/config|Windows|{{p|game}}\KidGame\Config\}}' - - '{{Game data/saves|Windows|{{p|game}}\KidGame\SaveData\KID.sav}}' - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\261110\remote\profile.bin}}' -'Killer Klowns from Outer Space: The Game': + - "{{Game data/config|Windows|{{p|game}}\\KidGame\\Config\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\KidGame\\SaveData\\KID.sav}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\261110\\remote\\profile.bin}}" +"Killer Klowns from Outer Space: The Game": pageId: 182121 steam: 1556100 Killer Klownz: @@ -88804,8 +86458,8 @@ Killer7: pageId: 94983 steam: 868520 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\Saved Games\killer7\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\Saved Games\killer7\}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\Saved Games\\killer7\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Saved Games\\killer7\\}}" Killers and Thieves: pageId: 62708 steam: 382330 @@ -88816,9 +86470,9 @@ Killing Floor: pageId: 141 steam: 1250 templates: - - '{{Game data/config|Windows|{{p|game}}\System\*.ini}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Killing Floor/}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.killingfloor/}}' + - "{{Game data/config|Windows|{{p|game}}\\System\\*.ini}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Killing Floor/}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.killingfloor/}}" Killing Floor - Toy Master: pageId: 49500 steam: 326960 @@ -88826,13 +86480,13 @@ Killing Floor 2: pageId: 17184 steam: 232090 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\KillingFloor2\KFGame\Config\}}' -'Killing Floor: Incursion': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\KillingFloor2\\KFGame\\Config\\}}" +"Killing Floor: Incursion": pageId: 68296 steam: 690810 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Incursion\Saved\Config\WindowsNoEditor\{{code|*}}.ini}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Incursion\Saved\SaveGames\{{code|*}}.sav}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Incursion\\Saved\\Config\\WindowsNoEditor\\{{code|*}}.ini}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Incursion\\Saved\\SaveGames\\{{code|*}}.sav}}" Killing Random Dudes Online: pageId: 114834 steam: 949170 @@ -88844,12 +86498,12 @@ Killing Time: pageId: 22309 steam: 493320 templates: - - '{{Game data/config|Windows|{{P|game}}/KillTime.cfg}}' - - '{{Game data/saves|Windows|{{P|game}}/Savegame.*}}' + - "{{Game data/config|Windows|{{P|game}}/KillTime.cfg}}" + - "{{Game data/saves|Windows|{{P|game}}/Savegame.*}}" Killing Time (2017): pageId: 66995 steam: 686190 -'Killing Time at Lightspeed: Enhanced Edition': +"Killing Time at Lightspeed: Enhanced Edition": pageId: 42571 steam: 380660 Killing Trials: @@ -88874,10 +86528,10 @@ Kim: Kim Jong-Boom: pageId: 72073 steam: 711070 -'Kim Possible: Legend of the Monkey''s Eye': +"Kim Possible: Legend of the Monkey's Eye": pageId: 81384 templates: - - '{{Game data/config|Windows|{{p|game}}\Config.ini}}' + - "{{Game data/config|Windows|{{p|game}}\\Config.ini}}" Kim Shooter: pageId: 132718 steam: 1040750 @@ -88894,10 +86548,10 @@ Kimmie Jong On Nukes the World: Kimmy: pageId: 61036 steam: 600660 -'Kimulator 2: Brother of Time': +"Kimulator 2: Brother of Time": pageId: 63815 steam: 657900 -'Kimulator: Fight for Your Destiny': +"Kimulator: Fight for Your Destiny": pageId: 34461 steam: 475430 Kinacoustic: @@ -88910,24 +86564,22 @@ Kind Words: pageId: 140310 steam: 1070710 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Popcannibal\Kind Words\}}' - - '{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/Popcannibal/Kind Words/}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Popcannibal\Kind Words\kindwords.json}}' - - '{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/Popcannibal/Kind Words/kindwords.json}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Popcannibal\\Kind Words\\}}" + - "{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/Popcannibal/Kind Words/}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Popcannibal\\Kind Words\\kindwords.json}}" + - "{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/Popcannibal/Kind Words/kindwords.json}}" Kindergarten: pageId: 60099 steam: 589590 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\SmashGames\Kindergarten\}}' - - '{{Game data/config|Linux|{{P|linuxhome}}/.config/unity3d/SmashGames/Kindergarten/}}' - - >- - {{Game - data/saves|Windows|{{P|userprofile\appdata\locallow}}\SmashGames\Kindergarten\*.sav|{{p|hkcu}}\Software\SmashGames\Kindergarten\}} + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\SmashGames\\Kindergarten\\}}" + - "{{Game data/config|Linux|{{P|linuxhome}}/.config/unity3d/SmashGames/Kindergarten/}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\SmashGames\\Kindergarten\\*.sav|{{p|hkcu}}\\Software\\SmashGames\\Kindergarten\\}}" Kindergarten 2: pageId: 136905 steam: 1067850 templates: - - '{{Game data/saves|Windows|{{p|hkcu}}\Software\Con Man Games\Kindergarten2}}' + - "{{Game data/saves|Windows|{{p|hkcu}}\\Software\\Con Man Games\\Kindergarten2}}" Kindled Cavern: pageId: 56430 steam: 578660 @@ -88936,7 +86588,7 @@ Kindred Spirits on the Roof: pageId: 34659 steam: 402620 templates: - - '{{Game data/saves|Linux|{{p|linuxhome}}/.mangagamer/Kindred Spirits Full Chorus/}}' + - "{{Game data/saves|Linux|{{p|linuxhome}}/.mangagamer/Kindred Spirits Full Chorus/}}" Kine: pageId: 90612 steam: 824570 @@ -88948,26 +86600,26 @@ Kinese: Kinetic Void: pageId: 49271 steam: 227160 -'King Arthur II: The Role-Playing Wargame': +"King Arthur II: The Role-Playing Wargame": gog: 1442577441 pageId: 40837 steam: 24480 -King Arthur's Gold: +"King Arthur's Gold": gog: 1420648480 pageId: 14976 steam: 219830 templates: - - '{{Game data/config|Windows|{{P|game}}\*.cfg}}' -'King Arthur: Fallen Champions': + - "{{Game data/config|Windows|{{P|game}}\\*.cfg}}" +"King Arthur: Fallen Champions": gog: 1444731945 pageId: 40911 steam: 24460 -'King Arthur: Knight''s Tale': +"King Arthur: Knight's Tale": pageId: 164254 steam: 1157390 templates: - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\NeocoreGames\KA_KT\Users\{{P|uid}}\Save}}' -'King Arthur: The Role-Playing Wargame': + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\NeocoreGames\\KA_KT\\Users\\{{P|uid}}\\Save}}" +"King Arthur: The Role-Playing Wargame": gog: 1444731636 pageId: 41199 steam: 24400 @@ -88980,7 +86632,7 @@ King Erik: King Exit: pageId: 70527 steam: 712840 -King Graham's Board Game Challenge: +"King Graham's Board Game Challenge": pageId: 147337 King Kaiju: pageId: 53894 @@ -88997,13 +86649,13 @@ King Oddball: King Of Firearms: pageId: 148832 steam: 1171290 -'King Of Gods: Angel The Awakening Of A Demon': +"King Of Gods: Angel The Awakening Of A Demon": pageId: 121157 steam: 944420 King Rabbit: pageId: 122786 steam: 852340 -King Randall's Party: +"King Randall's Party": pageId: 110066 steam: 921450 King Under The Mountain: @@ -89015,7 +86667,7 @@ King and Assassins: King of Bali: pageId: 65618 steam: 678190 -'King of Booze: Drinking Game': +"King of Booze: Drinking Game": pageId: 38851 steam: 517470 King of Crabs: @@ -89034,8 +86686,8 @@ King of Dragon Pass: gog: 1207659096 pageId: 14731 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\A Sharp\King of Dragon Pass}}' - - '{{Game data/saves|Windows|{{p|game}}\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\A Sharp\\King of Dragon Pass}}" + - "{{Game data/saves|Windows|{{p|game}}\\}}" King of Dragon Pass (2015): gog: 1207659096 pageId: 51100 @@ -89066,8 +86718,8 @@ King of Retail: pageId: 124589 steam: 968250 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\KingOfRetail\Saved\Config\WindowsNoEditor}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\KingOfRetail\Saved\SaveGame}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\KingOfRetail\\Saved\\Config\\WindowsNoEditor}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\KingOfRetail\\Saved\\SaveGame}}" King of Seas: gog: 1105915912 pageId: 168248 @@ -89075,8 +86727,8 @@ King of Seas: steamSide: - 1582670 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\3DClouds\KOS\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\3DClouds\KOS\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\3DClouds\\KOS\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\3DClouds\\KOS\\Saved\\SaveGames\\}}" King of Spin VR: pageId: 38694 steam: 505220 @@ -89086,7 +86738,7 @@ King of Texas: King of my Castle VR: pageId: 108176 steam: 911210 -'King of the Couch: Zoovival': +"King of the Couch: Zoovival": pageId: 76095 steam: 724350 King of the Cul-De-Sac: @@ -89095,7 +86747,7 @@ King of the Cul-De-Sac: King of the Dead: pageId: 104023 steam: 897950 -'King of the Dwarves: Underground City Builder': +"King of the Dwarves: Underground City Builder": pageId: 126456 renamedFrom: - King under the Mountain @@ -89107,12 +86759,12 @@ King of the Hat: pageId: 136222 steam: 837350 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Business Corp Incorporated\King of the Hat\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Business Corp Incorporated\\King of the Hat\\}}" King of the Monsters: gog: 1652749096 pageId: 131739 templates: - - '{{Game data/saves|Windows|{{p|localappdata}}\SNK\kotm}}' + - "{{Game data/saves|Windows|{{p|localappdata}}\\SNK\\kotm}}" King of the Monsters 2: pageId: 168783 King of the Road: @@ -89129,7 +86781,7 @@ King or Pawn: King rocket: pageId: 152959 steam: 1183600 -King's Bounty II: +"King's Bounty II": gog: 1735160317 gogSide: - 1322036102 @@ -89140,22 +86792,22 @@ King's Bounty II: pageId: 143334 steam: 1135300 templates: - - '{{Game data/saves|Windows|{{p|localappdata}}\KingsBounty2\Saved\SaveGames}}' -'King''s Bounty: Armored Princess': + - "{{Game data/saves|Windows|{{p|localappdata}}\\KingsBounty2\\Saved\\SaveGames}}" +"King's Bounty: Armored Princess": gog: 1207659154 pageId: 10409 steam: 3170 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Kings Bounty Princess\game.ini}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Kings Bounty Princess\}}' -'King''s Bounty: Crossworlds': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Kings Bounty Princess\\game.ini}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Kings Bounty Princess\\}}" +"King's Bounty: Crossworlds": gog: 1207659154 pageId: 10414 steam: 63910 templates: - - '{{Game data/config|Windows|{{p|userprofile\documents}}\My Games\Kings Bounty Crossworlds\game.ini}}' - - '{{Game data/saves|Windows|{{p|userprofile\documents}}\My Games\Kings Bounty Crossworlds\$save}}' -'King''s Bounty: Dark Side': + - "{{Game data/config|Windows|{{p|userprofile\\documents}}\\My Games\\Kings Bounty Crossworlds\\game.ini}}" + - "{{Game data/saves|Windows|{{p|userprofile\\documents}}\\My Games\\Kings Bounty Crossworlds\\$save}}" +"King's Bounty: Dark Side": gog: 1420812121 gogSide: - 1420813264 @@ -89163,11 +86815,9 @@ King's Bounty II: pageId: 19365 steam: 289520 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Kings Bounty The Dark Side\config.ini}}' - - >- - {{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Kings Bounty The Dark - Side\$save\base\darkside\{{p|uid}}\}} -'King''s Bounty: Legions': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Kings Bounty The Dark Side\\config.ini}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Kings Bounty The Dark Side\\$save\\base\\darkside\\{{p|uid}}\\}}" +"King's Bounty: Legions": pageId: 40488 steam: 235400 steamSide: @@ -89176,110 +86826,110 @@ King's Bounty II: - 264681 - 264682 - 264683 -'King''s Bounty: The Legend': +"King's Bounty: The Legend": gog: 1207658867 pageId: 10412 steam: 25900 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Kings Bounty\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/King'' s Bounty - The Legend/}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Kings Bounty\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/King'' s Bounty - The Legend/}}' -'King''s Bounty: Warriors of the North': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Kings Bounty\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/King' s Bounty - The Legend/}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Kings Bounty\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/King' s Bounty - The Legend/}}" +"King's Bounty: Warriors of the North": gog: 1207667083 gogSide: - 1207667093 - 1207667153 pageId: 17506 steam: 203350 -King's Guard TD: +"King's Guard TD": pageId: 33946 steam: 466730 templates: - - '{{Game data/saves|Windows|{{p|hkcu}}\Software\FreezeNova\Kings Guard TD}}' -'King''s Heir: Rise to the Throne': + - "{{Game data/saves|Windows|{{p|hkcu}}\\Software\\FreezeNova\\Kings Guard TD}}" +"King's Heir: Rise to the Throne": pageId: 95154 steam: 834390 templates: - - '{{Game data/config|Windows|{{p|steam}}/userdata/{{p|uid}}/834390/remote/profile}}' - - '{{Game data/saves|Windows|{{p|steam}}/userdata/{{p|uid}}/834390/remote/profile}}' -King's Lair: + - "{{Game data/config|Windows|{{p|steam}}/userdata/{{p|uid}}/834390/remote/profile}}" + - "{{Game data/saves|Windows|{{p|steam}}/userdata/{{p|uid}}/834390/remote/profile}}" +"King's Lair": pageId: 128527 steam: 1019090 -King's League II: +"King's League II": pageId: 126313 steam: 996080 -King's Quest (2015): +"King's Quest (2015)": pageId: 23038 steam: 345390 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\UnrealEngine3\GrahamsGame\Config\}}' - - '{{Game data/saves|Windows|{{p|game}}\Binaries\Win\KQSave}}' -'King''s Quest II: Romancing the Throne': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\UnrealEngine3\\GrahamsGame\\Config\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\Binaries\\Win\\KQSave}}" +"King's Quest II: Romancing the Throne": gog: 1207661113 pageId: 10857 steam: 10100 templates: - - '{{Game data/saves|DOS|{{p|game}}\KQ2SG.*}}' - - '{{Game data/saves|Windows|{{p|game}}\KQ2SG.*}}' -'King''s Quest III: To Heir Is Human': + - "{{Game data/saves|DOS|{{p|game}}\\KQ2SG.*}}" + - "{{Game data/saves|Windows|{{p|game}}\\KQ2SG.*}}" +"King's Quest III: To Heir Is Human": gog: 1207661133 pageId: 10864 steam: 10100 templates: - - '{{Game data/config|DOS|{{p|game}}\RESOURCE.CFG}}' - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/saves|Windows|{{p|game}}\KQ3SG.*}}' -'King''s Quest IV: The Perils of Rosella': + - "{{Game data/config|DOS|{{p|game}}\\RESOURCE.CFG}}" + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\KQ3SG.*}}" +"King's Quest IV: The Perils of Rosella": gog: 1207661153 pageId: 10875 steam: 10100 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/saves|Windows|{{p|game}}\KQ4SG.***}}' -'King''s Quest V: Absence Makes the Heart Go Yonder!': + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\KQ4SG.***}}" +"King's Quest V: Absence Makes the Heart Go Yonder!": gog: 1207661163 pageId: 10881 steam: 10100 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/saves|Windows|{{p|game}}\KQ5SG.***}}' -'King''s Quest VI: Heir Today, Gone Tomorrow': + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\KQ5SG.***}}" +"King's Quest VI: Heir Today, Gone Tomorrow": gog: 1207661173 pageId: 10884 steam: 10100 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/saves|Windows|{{p|game}}\KQ6SG.***}}' -'King''s Quest VII: The Princeless Bride': + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\KQ6SG.***}}" +"King's Quest VII: The Princeless Bride": gog: 1207661043 pageId: 10958 steam: 10100 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/saves|Windows|{{p|game}}\KQ7CDSG.***}}' -'King''s Quest: Mask of Eternity': + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\KQ7CDSG.***}}" +"King's Quest: Mask of Eternity": gog: 1207661053 pageId: 10994 templates: - - '{{Game data/config|Windows|{{P|game}}\Options.cs}}' - - '{{Game data/saves|Windows|{{P|game}}\save}}' -'King''s Quest: Quest for the Crown': + - "{{Game data/config|Windows|{{P|game}}\\Options.cs}}" + - "{{Game data/saves|Windows|{{P|game}}\\save}}" +"King's Quest: Quest for the Crown": gog: 1207661083 pageId: 7977 steam: 10100 templates: - - '{{Game data/config|DOS|{{p|game}}\RESOURCE.CFG}}' - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/saves|DOS|{{p|game}}\KQ1SG.*}}' - - '{{Game data/saves|Windows|{{p|game}}\KQ1SG.*}}' -'King''s Table: The Legend of Ragnarok': + - "{{Game data/config|DOS|{{p|game}}\\RESOURCE.CFG}}" + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|DOS|{{p|game}}\\KQ1SG.*}}" + - "{{Game data/saves|Windows|{{p|game}}\\KQ1SG.*}}" +"King's Table: The Legend of Ragnarok": gog: 1420731114 pageId: 17074 steam: 719310 templates: - - '{{Game data/config|DOS|{{p|game}}\RAGNAROK.CFG}}' - - '{{Game data/saves|DOS|{{p|game}}\*.RAG}}' + - "{{Game data/config|DOS|{{p|game}}\\RAGNAROK.CFG}}" + - "{{Game data/saves|DOS|{{p|game}}\\*.RAG}}" King-Dom: pageId: 102607 steam: 900330 @@ -89295,13 +86945,13 @@ Kingdom City Drowning Episode 1 - The Champion: Kingdom Clicker: pageId: 89589 steam: 816060 -'Kingdom Come: Deliverance': +"Kingdom Come: Deliverance": gog: 1719198803 pageId: 20535 steam: 379430 templates: - - '{{Game data/config|Windows|{{p|game}}\user.cfg|{{p|userprofile}}\Saved Games\kingdomcome\profiles\default\*.xml|}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\Saved Games\kingdomcome\saves\}}' + - "{{Game data/config|Windows|{{p|game}}\\user.cfg|{{p|userprofile}}\\Saved Games\\kingdomcome\\profiles\\default\\*.xml|}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Saved Games\\kingdomcome\\saves\\}}" Kingdom Defense: pageId: 77028 steam: 756260 @@ -89311,41 +86961,29 @@ Kingdom Elemental: Kingdom Hearts HD 1.5 + 2.5 ReMIX: pageId: 166570 templates: - - >- - {{Game data/config|Epic Games Store|{{P|userprofile\Documents}}\KINGDOM HEARTS HD 1.5+2.5 ReMIX\Epic Games - Store\{{P|uid}}\}} - - >- - {{Game data/saves|Epic Games Store|{{P|userprofile\Documents}}\KINGDOM HEARTS HD 1.5+2.5 ReMIX\Epic Games - Store\{{P|uid}}\}} + - "{{Game data/config|Epic Games Store|{{P|userprofile\\Documents}}\\KINGDOM HEARTS HD 1.5+2.5 ReMIX\\Epic Games Store\\{{P|uid}}\\}}" + - "{{Game data/saves|Epic Games Store|{{P|userprofile\\Documents}}\\KINGDOM HEARTS HD 1.5+2.5 ReMIX\\Epic Games Store\\{{P|uid}}\\}}" Kingdom Hearts HD 2.8 Final Chapter Prologue: pageId: 166573 templates: - - >- - {{Game data/config|Epic Games Store|{{P|userprofile}}\Documents\KINGDOM HEARTS HD 2.8 Final Chapter Prologue\Epic - Games Store\{{P|uid}}\}} - - >- - {{Game data/saves|Epic Games Store|{{P|userprofile}}\Documents\KINGDOM HEARTS HD 2.8 Final Chapter Prologue\Epic - Games Store\{{P|uid}}\}} + - "{{Game data/config|Epic Games Store|{{P|userprofile}}\\Documents\\KINGDOM HEARTS HD 2.8 Final Chapter Prologue\\Epic Games Store\\{{P|uid}}\\}}" + - "{{Game data/saves|Epic Games Store|{{P|userprofile}}\\Documents\\KINGDOM HEARTS HD 2.8 Final Chapter Prologue\\Epic Games Store\\{{P|uid}}\\}}" Kingdom Hearts III: pageId: 166575 templates: - - '{{Game data/config|Windows|{{P|userprofile}}\Documents\KINGDOM HEARTS III\Epic Games Store\{{P|uid}}\Config}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\Documents\KINGDOM HEARTS III\Epic Games Store\{{P|uid}}\SaveGames}}' + - "{{Game data/config|Windows|{{P|userprofile}}\\Documents\\KINGDOM HEARTS III\\Epic Games Store\\{{P|uid}}\\Config}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\Documents\\KINGDOM HEARTS III\\Epic Games Store\\{{P|uid}}\\SaveGames}}" Kingdom Hearts IV: pageId: 176997 Kingdom Hearts Melody of Memory: pageId: 166577 templates: - - >- - {{Game data/config|Epic Games Store|{{P|userprofile}}\Documents\KINGDOM HEARTS Melody of Memory\Epic Games - Store\{{P|uid}}\}} - - >- - {{Game data/saves|Epic Games Store|{{P|userprofile}}\Documents\KINGDOM HEARTS Melody of Memory\Epic Games - Store\{{P|uid}}\}} + - "{{Game data/config|Epic Games Store|{{P|userprofile}}\\Documents\\KINGDOM HEARTS Melody of Memory\\Epic Games Store\\{{P|uid}}\\}}" + - "{{Game data/saves|Epic Games Store|{{P|userprofile}}\\Documents\\KINGDOM HEARTS Melody of Memory\\Epic Games Store\\{{P|uid}}\\}}" Kingdom Heroes 2: pageId: 141954 steam: 1079150 -'Kingdom II: Shadoan': +"Kingdom II: Shadoan": pageId: 77442 Kingdom Of Rhea: pageId: 139373 @@ -89355,37 +86993,34 @@ Kingdom Rush: pageId: 16468 steam: 246420 templates: - - '{{Game data/config|Windows|{{P|appdata}}\kingdom_rush\settings.lua}}' - - '{{Game data/config|Linux|{{p|xdgdatahome}}/kingdom_rush/settings.lua}}' - - '{{Game data/saves|Windows|{{P|appdata}}\kingdom_rush\slot_*.lua}}' - - '{{Game data/saves|OS X|{{p|game}}/slot*.data}}' - - '{{Game data/saves|Linux|{{p|game}}/slot*.data|{{p|xdgdatahome}}/kingdom_rush/slot_*.lua}}' -'Kingdom Rush: Frontiers': + - "{{Game data/config|Windows|{{P|appdata}}\\kingdom_rush\\settings.lua}}" + - "{{Game data/config|Linux|{{p|xdgdatahome}}/kingdom_rush/settings.lua}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\kingdom_rush\\slot_*.lua}}" + - "{{Game data/saves|OS X|{{p|game}}/slot*.data}}" + - "{{Game data/saves|Linux|{{p|game}}/slot*.data|{{p|xdgdatahome}}/kingdom_rush/slot_*.lua}}" +"Kingdom Rush: Frontiers": gog: 1195536024 pageId: 35714 steam: 458710 templates: - - '{{Game data/config|Windows|{{p|appdata}}\kingdom_rush_frontiers\}}' - - '{{Game data/config|Linux|{{p|xdgdatahome}}/kingdom_rush_frontiers/settings.lua}}' - - '{{Game data/saves|Windows|{{p|appdata}}\kingdom_rush_frontiers\}}' - - >- - {{Game data/saves|OS - X|{{p|osxhome}}/Library/Containers/com.ironhidegames.kingdomrushfrontiers-mac/Data/Library/Application - Support/kingdom_rush_frontiers/}} - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/kingdom_rush_frontiers/slot_*.lua}}' -'Kingdom Rush: Origins': + - "{{Game data/config|Windows|{{p|appdata}}\\kingdom_rush_frontiers\\}}" + - "{{Game data/config|Linux|{{p|xdgdatahome}}/kingdom_rush_frontiers/settings.lua}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\kingdom_rush_frontiers\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Containers/com.ironhidegames.kingdomrushfrontiers-mac/Data/Library/Application Support/kingdom_rush_frontiers/}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/kingdom_rush_frontiers/slot_*.lua}}" +"Kingdom Rush: Origins": gog: 1519221611 pageId: 98284 steam: 816340 templates: - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/kingdom_rush_origins/slot_*.lua}}' -'Kingdom Rush: Vengeance': + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/kingdom_rush_origins/slot_*.lua}}" +"Kingdom Rush: Vengeance": gog: 1292614021 pageId: 167811 steam: 1367550 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Kingdom Rush Vengeance}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\Kingdom Rush Vengeance}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\Kingdom Rush Vengeance}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Kingdom Rush Vengeance}}" Kingdom Shell: pageId: 150870 steam: 1154090 @@ -89398,10 +87033,10 @@ Kingdom Tales 2: Kingdom Under Fire 2: pageId: 153175 steam: 1132210 -'Kingdom Under Fire: A War of Heroes': +"Kingdom Under Fire: A War of Heroes": pageId: 183205 steam: 2183600 -'Kingdom Under Fire: Heroes': +"Kingdom Under Fire: Heroes": gog: 1664426576 gogSide: - 1356269670 @@ -89410,28 +87045,28 @@ Kingdom Under Fire 2: steamSide: - 1367150 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\KUF2 Heroes\}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\KUF2 Heroes\}}' -'Kingdom Under Fire: The Crusaders': + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\KUF2 Heroes\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\KUF2 Heroes\\}}" +"Kingdom Under Fire: The Crusaders": gog: 1819647818 pageId: 158114 steam: 1121420 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\KUF2 Crusader}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\KUF2 Crusader}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\KUF2 Crusader}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\KUF2 Crusader}}" Kingdom Warrior: pageId: 156073 steam: 1208510 Kingdom Wars: pageId: 40636 steam: 227180 -'Kingdom Wars 2: Battles': +"Kingdom Wars 2: Battles": pageId: 44281 steam: 253190 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\kt\}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\kt\}}' -'Kingdom Wars 2: Definitive Edition': + - "{{Game data/config|Windows|{{P|localappdata}}\\kt\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\kt\\}}" +"Kingdom Wars 2: Definitive Edition": pageId: 132332 steam: 1036440 Kingdom Wars 4: @@ -89443,13 +87078,13 @@ Kingdom Wars 4: Kingdom Watcher: pageId: 79676 steam: 680970 -'Kingdom of Aurelia: Mystery of the Poisoned Dagger': +"Kingdom of Aurelia: Mystery of the Poisoned Dagger": pageId: 53546 steam: 550390 Kingdom of Blades: pageId: 81085 steam: 769580 -'Kingdom of Keogth: the Arena': +"Kingdom of Keogth: the Arena": pageId: 156881 steam: 1171540 Kingdom of Lies: @@ -89470,44 +87105,44 @@ Kingdom of the Dragon: Kingdom-Heroes: pageId: 128483 steam: 1013000 -'Kingdom: Classic': +"Kingdom: Classic": gog: 1444654650 pageId: 29418 steam: 368230 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\noio\Kingdom}}' - - '{{Game data/config|Linux|{{p|xdgconfighome}}/unity3d/noio/Kingdom/prefs}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\noio\Kingdom\storage_v26_AUTO.dat}}' - - '{{Game data/saves|Linux|{{p|xdgconfighome}}/unity3d/noio/Kingdom/storage_v26_AUTO.dat}}' -'Kingdom: Eighties': + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\noio\\Kingdom}}" + - "{{Game data/config|Linux|{{p|xdgconfighome}}/unity3d/noio/Kingdom/prefs}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\noio\\Kingdom\\storage_v26_AUTO.dat}}" + - "{{Game data/saves|Linux|{{p|xdgconfighome}}/unity3d/noio/Kingdom/storage_v26_AUTO.dat}}" +"Kingdom: Eighties": pageId: 188297 steam: 1956040 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\RawFury\Kingdom Eighties}}' - - '{{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\RawFury\Kingdom Eighties}}' -'Kingdom: New Lands': + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\RawFury\\Kingdom Eighties}}" + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\RawFury\\Kingdom Eighties}}" +"Kingdom: New Lands": gog: 1473737130 pageId: 35853 steam: 496300 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\noio\Kingdom\preferences}}' - - '{{Game data/config|Linux|{{p|xdgconfighome}}/unity3d/noio/Kingdom/preferences}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\noio\Kingdom\storage_v34_AUTO.dat}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/nl.noio.kingdom-new-lands/storage_v34_AUTO.dat}}' - - '{{Game data/saves|Linux|{{p|xdgconfighome}}/unity3d/noio/Kingdom/storage_v34_AUTO.dat}}' -'Kingdom: The Far Reaches': + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\noio\\Kingdom\\preferences}}" + - "{{Game data/config|Linux|{{p|xdgconfighome}}/unity3d/noio/Kingdom/preferences}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\noio\\Kingdom\\storage_v34_AUTO.dat}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/nl.noio.kingdom-new-lands/storage_v34_AUTO.dat}}" + - "{{Game data/saves|Linux|{{p|xdgconfighome}}/unity3d/noio/Kingdom/storage_v34_AUTO.dat}}" +"Kingdom: The Far Reaches": gog: 1207658675 pageId: 23232 steam: 700880 -'Kingdom: Two Crowns': +"Kingdom: Two Crowns": gog: 1943177518 pageId: 97323 steam: 701160 templates: - - '{{Game data/config|Windows|{{P|userprofile}}\AppData\LocalLow\noio\KingdomTwoCrowns\Release}}' - - '{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/noio/KingdomTwoCrowns/Release}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\noio\KingdomTwoCrowns\Release}}' - - '{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/noio/KingdomTwoCrowns/Release}}' + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\noio\\KingdomTwoCrowns\\Release}}" + - "{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/noio/KingdomTwoCrowns/Release}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\noio\\KingdomTwoCrowns\\Release}}" + - "{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/noio/KingdomTwoCrowns/Release}}" Kingdoms: pageId: 45912 steam: 409590 @@ -89530,42 +87165,38 @@ Kingdoms and Castles: steamSide: - 1764300 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\LionShield\Kingdoms and Castles\settings}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/unity.LionShield.Kingdoms and Castles/settings}}' - - >- - {{Game data/config|Linux|{{p|xdgconfighome}}/unity3d/LionShield/Kingdoms and - Castles/settings|{{p|xdgconfighome}}/unity3d/LionShield/Kingdoms and Castles/prefs}} - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\LionShield\Kingdoms and Castles\Saves\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/unity.LionShield.Kingdoms and Castles/Saves/}}' - - '{{Game data/saves|Linux|{{p|xdgconfighome}}/unity3d/LionShield/Kingdoms and Castles/Saves/}}' -'Kingdoms of Amalur: Re-Reckoning': + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\LionShield\\Kingdoms and Castles\\settings}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/unity.LionShield.Kingdoms and Castles/settings}}" + - "{{Game data/config|Linux|{{p|xdgconfighome}}/unity3d/LionShield/Kingdoms and Castles/settings|{{p|xdgconfighome}}/unity3d/LionShield/Kingdoms and Castles/prefs}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\LionShield\\Kingdoms and Castles\\Saves\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/unity.LionShield.Kingdoms and Castles/Saves/}}" + - "{{Game data/saves|Linux|{{p|xdgconfighome}}/unity3d/LionShield/Kingdoms and Castles/Saves/}}" +"Kingdoms of Amalur: Re-Reckoning": gog: 1077045575 pageId: 160891 steam: 1041720 templates: - - '{{Game data/config|Windows|{{P|appdata}}\kaiko\koa}}' - - '{{Game data/saves|Steam|{{P|steam}}\userdata\{{P|uid}}\1041720\remote\}}' - - >- - {{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\THQNOnline\Kingdoms of Amalur - Re-Reckoning\autocloud\save\}} -'Kingdoms of Amalur: Reckoning': + - "{{Game data/config|Windows|{{P|appdata}}\\kaiko\\koa}}" + - "{{Game data/saves|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\1041720\\remote\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\THQNOnline\\Kingdoms of Amalur Re-Reckoning\\autocloud\\save\\}}" +"Kingdoms of Amalur: Reckoning": pageId: 15 steam: 102500 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Reckoning\personal.ini}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Reckoning\}}' - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\102500\remote\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Reckoning\\personal.ini}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Reckoning\\}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\102500\\remote\\}}" Kingpin Royale: pageId: 110058 steam: 921420 -'Kingpin: Life of Crime': +"Kingpin: Life of Crime": gog: 9 pageId: 235 steam: 38430 templates: - - '{{Game data/config|Windows|{{p|game}}\main\config.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\main\save\}}' -'Kingpin: Reloaded': + - "{{Game data/config|Windows|{{p|game}}\\main\\config.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\main\\save\\}}" +"Kingpin: Reloaded": gog: 1645376357 pageId: 155279 steam: 1224700 @@ -89591,13 +87222,13 @@ Kings of Kung Fu: pageId: 26231 steam: 316930 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Jae Lee productions\Kings of Kung Fu}}' -'Kings of Lorn: The Fall of Ebris': + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Jae Lee productions\\Kings of Kung Fu}}" +"Kings of Lorn: The Fall of Ebris": pageId: 73060 steam: 605140 Kings of the Castle: pageId: 159539 -Kings' Cross: +"Kings' Cross": pageId: 123685 steam: 981900 Kingshunt: @@ -89614,21 +87245,21 @@ Kingsway: pageId: 59127 steam: 588950 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Kingsway\settings.dat}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\Kingsway\profile.pr}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\Kingsway\\settings.dat}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Kingsway\\profile.pr}}" Kink: pageId: 74433 steam: 736050 -'Kinkoi: Golden Loveriche': +"Kinkoi: Golden Loveriche": pageId: 173819 steam: 1277940 templates: - - '{{Game data/saves|Windows|{{p|game}}\SaveData\*.dat}}' -'Kinkoi: Golden Time': + - "{{Game data/saves|Windows|{{p|game}}\\SaveData\\*.dat}}" +"Kinkoi: Golden Time": pageId: 185586 steam: 1985260 templates: - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\1985260\remote}}' + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\1985260\\remote}}" Kinkshamed: pageId: 103827 steam: 898240 @@ -89637,24 +87268,24 @@ Kinky Fight Club: steam: 1237530 Kinnikuman Muscle Fight: pageId: 179306 -Kio's Adventure: +"Kio's Adventure": pageId: 60890 steam: 612070 Kira: pageId: 59586 steam: 607860 -Kira's Contract: +"Kira's Contract": pageId: 149935 steam: 1173500 -'Kirakira Stars Idol Project: Ai': +"Kirakira Stars Idol Project: Ai": gog: 1738947233 pageId: 185604 steam: 1202770 -Kirchhoff's Revenge: +"Kirchhoff's Revenge": pageId: 87914 steam: 801120 templates: - - '{{Game data/saves|Windows|{{p|hkcu}}\Software\DefaultCompany\Kirchhoff}}' + - "{{Game data/saves|Windows|{{p|hkcu}}\\Software\\DefaultCompany\\Kirchhoff}}" Kirikou: pageId: 172466 Kisaragi no Hougyoku: @@ -89670,11 +87301,11 @@ Kiss Pinball: Kiss or Kill VR: pageId: 78810 steam: 670830 -'Kiss: Psycho Circus: The Nightmare Child': +"Kiss: Psycho Circus: The Nightmare Child": pageId: 161392 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/saves|Windows|{{p|game}}\Save\}}' + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\Save\\}}" Kissing Simulator: pageId: 138588 steam: 1091210 @@ -89683,7 +87314,7 @@ Kitaria Fables: pageId: 170240 steam: 1356280 templates: - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Twin Hearts Games\Kitaria Fables}}' + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Twin Hearts Games\\Kitaria Fables}}" Kitchen Simulator 2: pageId: 67579 steam: 688020 @@ -89696,12 +87327,12 @@ Kite: Kith - Tales from the Fractured Plateaus: pageId: 60874 steam: 596710 -'Kitrinos: Inside the Cube': +"Kitrinos: Inside the Cube": pageId: 100090 steam: 890300 templates: - - '{{Game data/config|Windows|{{P|game}}\YAZ3.txt}}' - - '{{Game data/saves|Windows|{{P|game}}\YAZ3.txt}}' + - "{{Game data/config|Windows|{{P|game}}\\YAZ3.txt}}" + - "{{Game data/saves|Windows|{{P|game}}\\YAZ3.txt}}" Kitsune Kitchen: pageId: 95343 steam: 862920 @@ -89732,28 +87363,28 @@ Kitten Squad: Kitten Super Adventure: pageId: 62108 steam: 347530 -'Kitten and food: adventure park': +"Kitten and food: adventure park": pageId: 108516 steam: 913150 -Kitten'd: +"Kitten'd": pageId: 99628 steam: 842140 -Kitty Cat's Drag Race: +"Kitty Cat's Drag Race": pageId: 126399 steam: 944620 -'Kitty Cat: Jigsaw Puzzles': +"Kitty Cat: Jigsaw Puzzles": pageId: 42285 steam: 500580 templates: - - '{{Game data/config|Windows|{{P|hkcu}}/SOFTWARE/EnsenaSoft, S.A. de C.V./Kitty Cat Jigsaw Puzzles}}' - - '{{Game data/saves|Windows|{{P|hkcu}}/SOFTWARE/EnsenaSoft, S.A. de C.V./Kitty Cat Jigsaw Puzzles}}' + - "{{Game data/config|Windows|{{P|hkcu}}/SOFTWARE/EnsenaSoft, S.A. de C.V./Kitty Cat Jigsaw Puzzles}}" + - "{{Game data/saves|Windows|{{P|hkcu}}/SOFTWARE/EnsenaSoft, S.A. de C.V./Kitty Cat Jigsaw Puzzles}}" Kitty Catsanova: pageId: 100662 steam: 770770 Kitty Hawk: pageId: 79167 steam: 640250 -'Kitty Kitty Boing Boing: The Happy Adventure in Puzzle Garden!': +"Kitty Kitty Boing Boing: The Happy Adventure in Puzzle Garden!": pageId: 38817 steam: 519200 Kitty Nigiri: @@ -89763,13 +87394,13 @@ Kitty Play: pageId: 102457 steam: 823800 templates: - - '{{Game data/config|Windows|{{p|programdata}}\kitty_play\profiles\3015416002}}' - - '{{Game data/saves|Windows|{{p|programdata}}\kitty_play\profiles\3015416002}}' -Kitty Powers' Love Life: + - "{{Game data/config|Windows|{{p|programdata}}\\kitty_play\\profiles\\3015416002}}" + - "{{Game data/saves|Windows|{{p|programdata}}\\kitty_play\\profiles\\3015416002}}" +"Kitty Powers' Love Life": gog: 1219491421 pageId: 81966 steam: 416870 -Kitty Powers' Matchmaker: +"Kitty Powers' Matchmaker": gog: 1367716005 pageId: 37363 steam: 285740 @@ -89785,7 +87416,7 @@ Kittypocalypse: Kittypocalypse - Ungoggled: pageId: 52776 steam: 529410 -'Kivi, Toilet and Shotgun': +"Kivi, Toilet and Shotgun": pageId: 44978 steam: 428950 Kiya: @@ -89800,12 +87431,12 @@ Klang: pageId: 39073 steam: 412660 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Klang}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\Klang\Save\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Klang}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\Klang\\Save\\}}" Klaus: pageId: 113092 renamedFrom: - - '-KLAUS-' + - "-KLAUS-" steam: 729370 Klax: pageId: 175290 @@ -89816,8 +87447,8 @@ Klocki: pageId: 37108 steam: 499440 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Rainbow Train\klocki\}}' - - '{{Game data/saves|Windows|{{p|hkcu}}\Software\Rainbow Train\klocki\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Rainbow Train\\klocki\\}}" + - "{{Game data/saves|Windows|{{p|hkcu}}\\Software\\Rainbow Train\\klocki\\}}" Klondike & Girls: pageId: 123705 steam: 969870 @@ -89828,11 +87459,8 @@ Klonoa Phantasy Reverie Series: pageId: 175102 steam: 1730680 templates: - - >- - {{Game data/config|Windows|{{p|localappdata}}\Bandai Namco - Entertainment\KLONOAencore\Saved\SaveGames\{{p|uid}}\|{{p|localappdata}}\Bandai Namco - Entertainment\KLONOAArtbook\Saved\SaveGames\{{p|uid}}\}} - - '{{Game data/saves|Windows|{{p|localappdata}}\Bandai Namco Entertainment\KLONOAencore\Saved\SaveGames\{{p|uid}}\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Bandai Namco Entertainment\\KLONOAencore\\Saved\\SaveGames\\{{p|uid}}\\|{{p|localappdata}}\\Bandai Namco Entertainment\\KLONOAArtbook\\Saved\\SaveGames\\{{p|uid}}\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Bandai Namco Entertainment\\KLONOAencore\\Saved\\SaveGames\\{{p|uid}}\\}}" Klotzen! Panzer Battles: pageId: 87579 steam: 804860 @@ -89849,8 +87477,8 @@ Knee Deep: pageId: 37872 steam: 371300 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Prologue Games\Knee Deep\}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Prologue Games\Knee Deep\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Prologue Games\\Knee Deep\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Prologue Games\\Knee Deep\\}}" Knife Battles: pageId: 75063 steam: 731640 @@ -89885,8 +87513,8 @@ Knight Bewitched: pageId: 91884 steam: 815150 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\My Games\Knight Bewitched ED - save\config.rmmzsave}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\My Games\Knight Bewitched ED - save}}' + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\My Games\\Knight Bewitched ED - save\\config.rmmzsave}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\My Games\\Knight Bewitched ED - save}}" Knight Dice: pageId: 155977 steam: 1212960 @@ -89904,15 +87532,15 @@ Knight King Assassin: Knight Online: pageId: 44830 steam: 389430 -'Knight Rider: The Game': +"Knight Rider: The Game": pageId: 19143 templates: - - '{{Game data/config|Windows|{{p|game}}\Data\Common\savegame.usr}}' - - '{{Game data/saves|Windows|{{p|game}}\Data\Common\savegame.usr}}' -'Knight Rider: The Game 2': + - "{{Game data/config|Windows|{{p|game}}\\Data\\Common\\savegame.usr}}" + - "{{Game data/saves|Windows|{{p|game}}\\Data\\Common\\savegame.usr}}" +"Knight Rider: The Game 2": pageId: 22416 templates: - - '{{Game data/saves|Windows|{{p|game}}\data\common\savegame.usr}}' + - "{{Game data/saves|Windows|{{p|game}}\\data\\common\\savegame.usr}}" Knight Simulator: pageId: 142291 steam: 1122230 @@ -89945,27 +87573,23 @@ KnightShift: pageId: 20516 steam: 254060 templates: - - >- - {{Game data/config|Windows|{{p|hklm}}\SOFTWARE\Reality Pump\KnightShift\BaseGame|{{p|hkcu}}\Software\Reality - Pump\KnightShift\BaseGame}} - - '{{Game data/saves|Windows|{{p|game}}\Players\}}' + - "{{Game data/config|Windows|{{p|hklm}}\\SOFTWARE\\Reality Pump\\KnightShift\\BaseGame|{{p|hkcu}}\\Software\\Reality Pump\\KnightShift\\BaseGame}}" + - "{{Game data/saves|Windows|{{p|game}}\\Players\\}}" Knightfall: pageId: 69834 steam: 625000 -'Knightfall: A Daring Journey': +"Knightfall: A Daring Journey": pageId: 185954 steam: 1911390 -'Knightfall: Rivals': +"Knightfall: Rivals": pageId: 61752 steam: 587460 -Knightin'+: +"Knightin'+": gog: 1841559796 pageId: 141489 steam: 922710 templates: - - >- - {{Game data/saves|Windows|{{p|localappdata}}\Knightin\User - Data\Default\IndexedDB\chrome-extension_hjnbfbfljdniledkaamgmdnjfdijmofi_0.indexeddb.leveldb\000003.log}} + - "{{Game data/saves|Windows|{{p|localappdata}}\\Knightin\\User Data\\Default\\IndexedDB\\chrome-extension_hjnbfbfljdniledkaamgmdnjfdijmofi_0.indexeddb.leveldb\\000003.log}}" Knightmare Lands: pageId: 142200 steam: 798300 @@ -89973,14 +87597,12 @@ Knightmare Tower: pageId: 37693 steam: 298400 templates: - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/298400/remote/}}' + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/298400/remote/}}" Knights: pageId: 37203 steam: 476240 templates: - - >- - {{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Arzola's\KNIGHTS\*.dat | - {{p|userprofile}}\AppData\LocalLow\Arzola's\KNIGHTS\*.xml}} + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Arzola's\\KNIGHTS\\*.dat | {{p|userprofile}}\\AppData\\LocalLow\\Arzola's\\KNIGHTS\\*.xml}}" Knights Hunt: pageId: 72995 steam: 724430 @@ -89995,7 +87617,7 @@ Knights and Bikes: pageId: 75711 steam: 592480 templates: - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\Foam Sword\Knights and Bikes}}' + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\Foam Sword\\Knights and Bikes}}" Knights and Merchants: gog: 1207658772 gogSide: @@ -90005,21 +87627,17 @@ Knights and Merchants: steamSide: - 986240 templates: - - '{{Game data/config|Windows|{{p|game}}\setup.cfg}}' - - '{{Game data/config|Linux|{{P|game}}/Game/KAM/setup.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\data\save}}' - - >- - {{Game data/saves|Mac OS|~/Library/Containers/com.rune-soft.knightsandmerchants/Data/Library/Application - Support/com.rune-soft.knightsandmerchants/}} - - >- - {{Game data/saves|OS X|{{p|osxhome}}/Library/Containers/com.rune-soft.knightsandmerchants/Data/Library/Application - Support/com.rune-soft.knightsandmerchants/}} - - '{{Game data/saves|Linux|{{P|game}}/Game/KAM/data/save/}}' + - "{{Game data/config|Windows|{{p|game}}\\setup.cfg}}" + - "{{Game data/config|Linux|{{P|game}}/Game/KAM/setup.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\data\\save}}" + - "{{Game data/saves|Mac OS|~/Library/Containers/com.rune-soft.knightsandmerchants/Data/Library/Application Support/com.rune-soft.knightsandmerchants/}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Containers/com.rune-soft.knightsandmerchants/Data/Library/Application Support/com.rune-soft.knightsandmerchants/}}" + - "{{Game data/saves|Linux|{{P|game}}/Game/KAM/data/save/}}" Knights of Galiveth: pageId: 61054 steam: 562290 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Knights_of_Galiveth___Final_Cut\settings.ini}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\Knights_of_Galiveth___Final_Cut\\settings.ini}}" Knights of Hearts: pageId: 82051 steam: 778830 @@ -90028,22 +87646,22 @@ Knights of Honor: pageId: 10616 steam: 25830 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Black Sea Studios\Knights of Honor}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Black Sea Studios\Knights of Honor\save}}' -'Knights of Honor II: Sovereign': + - "{{Game data/config|Windows|{{p|appdata}}\\Black Sea Studios\\Knights of Honor}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Black Sea Studios\\Knights of Honor\\save}}" +"Knights of Honor II: Sovereign": gog: 1265763708 pageId: 143549 renamedFrom: - Knights of Honor II – Sovereign steam: 736820 templates: - - '{{Game data/config|Windows|{{p|userprofile\appdata\locallow}}\BlackSeaGames\Sovereign}}' - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\BlackSeaGames\Sovereign\Saves}}' + - "{{Game data/config|Windows|{{p|userprofile\\appdata\\locallow}}\\BlackSeaGames\\Sovereign}}" + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\BlackSeaGames\\Sovereign\\Saves}}" Knights of Legend: pageId: 75194 templates: - - '{{Game data/saves|DOS|{{p|game}}\CHARDATA|{{p|game}}\CHARPICS|{{p|game}}\SHLDPICS}}' -'Knights of Light: The Prologue': + - "{{Game data/saves|DOS|{{p|game}}\\CHARDATA|{{p|game}}\\CHARPICS|{{p|game}}\\SHLDPICS}}" +"Knights of Light: The Prologue": pageId: 154134 steam: 1159700 Knights of Messiah: @@ -90055,23 +87673,23 @@ Knights of Pen and Paper +1 Edition: pageId: 14822 steam: 231740 templates: - - '{{Game data/saves|Windows|{{p|game}}\knightspp_Data\data.kopp}}' - - '{{Game data/saves|Linux|{{p|game}}/knightspp_Data/data.kopp}}' + - "{{Game data/saves|Windows|{{p|game}}\\knightspp_Data\\data.kopp}}" + - "{{Game data/saves|Linux|{{p|game}}/knightspp_Data/data.kopp}}" Knights of Pen and Paper 2: pageId: 36544 steam: 310060 steamSide: - 420640 templates: - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Kyy Games/Knights of Pen and Paper 2/}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Kyy Games\Knights of Pen and Paper 2\*.sav}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Kyy Games/Knights of Pen and Paper 2/}}' -'Knights of Pen and Paper 2: Free Edition': + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Kyy Games/Knights of Pen and Paper 2/}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Kyy Games\\Knights of Pen and Paper 2\\*.sav}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Kyy Games/Knights of Pen and Paper 2/}}" +"Knights of Pen and Paper 2: Free Edition": pageId: 86955 steam: 794820 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Kyy Games\Knights of Pen and Paper 2 F2P\}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Kyy Games\Knights of Pen and Paper 2 F2P\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Kyy Games\\Knights of Pen and Paper 2 F2P\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Kyy Games\\Knights of Pen and Paper 2 F2P\\}}" Knights of Tartarus: pageId: 110166 steam: 922920 @@ -90099,14 +87717,14 @@ Knights of the Sky: Knights of the Temple II: pageId: 126719 templates: - - '{{Game data/config|Windows|{{p|game}}\KOTT2.set}}' - - '{{Game data/saves|Windows|{{p|game}}\Saves\}}' -'Knights of the Temple: Infernal Crusade': + - "{{Game data/config|Windows|{{p|game}}\\KOTT2.set}}" + - "{{Game data/saves|Windows|{{p|game}}\\Saves\\}}" +"Knights of the Temple: Infernal Crusade": pageId: 126725 steam: 1194610 templates: - - '{{Game data/config|Windows|{{p|game}}\Environment.cfg|{{p|game}}\Options.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\Sbz1\Save\(Name of User)\*.xrg}}' + - "{{Game data/config|Windows|{{p|game}}\\Environment.cfg|{{p|game}}\\Options.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\Sbz1\\Save\\(Name of User)\\*.xrg}}" Knighty Night: pageId: 138785 steam: 1087480 @@ -90116,15 +87734,15 @@ Knock Harder: pageId: 142048 steam: 1216490 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Knock_Harder}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\Knock_Harder}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\Knock_Harder}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Knock_Harder}}" Knock-Knock: gog: 1207659923 pageId: 34404 steam: 250380 templates: - - '{{Game data/config|Windows| {{p|game}}\knock.cfg}}' - - '{{Game data/saves|Windows|{{p|hkcu}}\Software\Ice-Pick Lodge\Knock-knock}}' + - "{{Game data/config|Windows| {{p|game}}\\knock.cfg}}" + - "{{Game data/saves|Windows|{{p|hkcu}}\\Software\\Ice-Pick Lodge\\Knock-knock}}" Knockdown the Ball: pageId: 92077 steam: 841020 @@ -90138,8 +87756,8 @@ Knockout City: pageId: 166797 steam: 1301210 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\KnockoutCity\window-layout.json}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\KnockoutCity\save\local.save}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\KnockoutCity\\window-layout.json}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\KnockoutCity\\save\\local.save}}" Knockout League: pageId: 56832 steam: 488920 @@ -90149,18 +87767,10 @@ Knockout Party: Knocky Balls: pageId: 97455 templates: - - >- - {{Game - data/config|Windows|{{p|localappdata}}\Osgoode_Media\KnockyBalls.exe_Url_dpk4tstvsye4bbmo33tfkpcacsfwicu2\1.0.0.0\user.config}} - - >- - {{Game data/config|Microsoft - Store|{{p|localappdata}}\Packages\16591Monstrous.KnockyBalls_skedv6py88bbr\Settings\settings.dat}} - - >- - {{Game - data/saves|Windows|{{p|localappdata}}\Osgoode_Media\KnockyBalls.exe_Url_dpk4tstvsye4bbmo33tfkpcacsfwicu2\1.0.0.0\user.config}} - - >- - {{Game data/saves|Microsoft - Store|{{p|localappdata}}\Packages\16591Monstrous.KnockyBalls_skedv6py88bbr\Settings\settings.dat}} + - "{{Game data/config|Windows|{{p|localappdata}}\\Osgoode_Media\\KnockyBalls.exe_Url_dpk4tstvsye4bbmo33tfkpcacsfwicu2\\1.0.0.0\\user.config}}" + - "{{Game data/config|Microsoft Store|{{p|localappdata}}\\Packages\\16591Monstrous.KnockyBalls_skedv6py88bbr\\Settings\\settings.dat}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Osgoode_Media\\KnockyBalls.exe_Url_dpk4tstvsye4bbmo33tfkpcacsfwicu2\\1.0.0.0\\user.config}}" + - "{{Game data/saves|Microsoft Store|{{p|localappdata}}\\Packages\\16591Monstrous.KnockyBalls_skedv6py88bbr\\Settings\\settings.dat}}" Knossos: pageId: 68188 steam: 666790 @@ -90177,16 +87787,16 @@ Knuckle Sandwich: Knytt Stories: pageId: 158131 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/saves|Windows|{{p|game}}\\Saves\}}' + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\\\Saves\\}}" Knytt Underground: pageId: 13410 steam: 248190 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.Nifflas/Knytt Underground/}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Nifflas\}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.Nifflas/Knytt Underground/}}' + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.Nifflas/Knytt Underground/}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Nifflas\\}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.Nifflas/Knytt Underground/}}" KoGaMa: pageId: 158486 Koa and the Five Pirates of Mara: @@ -90195,8 +87805,8 @@ Koa and the Five Pirates of Mara: steamSide: - 1967720 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\KoaProject\Saved\Config\WindowsNoEditor}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\KoaProject\Saved\SaveGames}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\KoaProject\\Saved\\Config\\WindowsNoEditor}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\KoaProject\\Saved\\SaveGames}}" Koala Kids: pageId: 38273 steam: 381870 @@ -90207,15 +87817,15 @@ KoboldKare: pageId: 154019 steam: 1102930 templates: - - '{{Game data/config|Windows|{{P|userprofile\appdata\locallow}}\Naelstrof\KoboldKare\}}' - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Naelstrof\KoboldKare\saves\}}' + - "{{Game data/config|Windows|{{P|userprofile\\appdata\\locallow}}\\Naelstrof\\KoboldKare\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Naelstrof\\KoboldKare\\saves\\}}" Koboomballs: pageId: 123558 steam: 983040 Kodu Game Lab: pageId: 158442 templates: - - '{{Game data/saves|Windows|{{p|USERPROFILE}}\Documents\SavedGames\Boku\Player1}}' + - "{{Game data/saves|Windows|{{p|USERPROFILE}}\\Documents\\SavedGames\\Boku\\Player1}}" Koe: pageId: 65768 steam: 672430 @@ -90225,7 +87835,7 @@ Koewotayorinia: Koewotayorinia SP: pageId: 81034 steam: 777200 -'Kofi Quest: Alpha MOD': +"Kofi Quest: Alpha MOD": pageId: 77339 steam: 705340 Kogarashi: @@ -90234,13 +87844,13 @@ Kogarashi: Kogent Defender: pageId: 96323 steam: 860360 -'Kohan II: Kings of War': +"Kohan II: Kings of War": pageId: 37774 steam: 97130 -'Kohan: Ahriman''s Gift': +"Kohan: Ahriman's Gift": pageId: 40928 steam: 97120 -'Kohan: Immortal Sovereigns': +"Kohan: Immortal Sovereigns": pageId: 40926 steam: 97110 Koi: @@ -90270,8 +87880,8 @@ Koikatsu Party: - コイカツ! / Koikatsu Party steam: 1073440 templates: - - '{{Game data/config|Windows|{{p|game}}\UserData\config}}' - - '{{Game data/saves|Windows|{{p|game}}\Koikatsu Party\UserData\save}}' + - "{{Game data/config|Windows|{{p|game}}\\UserData\\config}}" + - "{{Game data/saves|Windows|{{p|game}}\\Koikatsu Party\\UserData\\save}}" Koikoi: pageId: 100190 steam: 763380 @@ -90289,7 +87899,7 @@ Kokoda VR: Kokomando: pageId: 155040 templates: - - '{{Game data/saves|Windows|{{p|game}}\data\save}}' + - "{{Game data/saves|Windows|{{p|game}}\\data\\save}}" Kokorogawari: pageId: 107826 steam: 895820 @@ -90305,7 +87915,7 @@ Kolbeinn: Koliseum Soccer VR: pageId: 121639 steam: 921960 -'Kolkhoz: The Red Wedge': +"Kolkhoz: The Red Wedge": pageId: 113806 steam: 926470 Kollidoskop!: @@ -90318,8 +87928,8 @@ Koloro: pageId: 57766 steam: 574590 templates: - - '{{Game data/config|Windows|{{P|game}}\Saves\{{P|uid}}\Options.dat|{{P|hkcu}}\Software\Sköll Studio\Koloro\}}' - - '{{Game data/saves|Windows|{{P|game}}\Saves\{{P|uid}}\GameProgress.dat}}' + - "{{Game data/config|Windows|{{P|game}}\\Saves\\{{P|uid}}\\Options.dat|{{P|hkcu}}\\Software\\Sköll Studio\\Koloro\\}}" + - "{{Game data/saves|Windows|{{P|game}}\\Saves\\{{P|uid}}\\GameProgress.dat}}" Kolumno: pageId: 121799 steam: 970710 @@ -90340,29 +87950,29 @@ Kona: pageId: 36398 steam: 365160 templates: - - '{{Game data/config|Windows|{{p|HKCU}}\Software\Parabole\Kona}}' - - '{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/Parabole/Kona/prefs}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Parabole\Kona\Save\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/unity.Parabole.Kona/Save/}}' - - '{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/Parabole/Kona/Save/}}' -'Kona II: Brume': + - "{{Game data/config|Windows|{{p|HKCU}}\\Software\\Parabole\\Kona}}" + - "{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/Parabole/Kona/prefs}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Parabole\\Kona\\Save\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/unity.Parabole.Kona/Save/}}" + - "{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/Parabole/Kona/Save/}}" +"Kona II: Brume": pageId: 179561 steam: 1229020 templates: - - '{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/Parabole/Kona 2/}}' - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Parabole\Kona 2\{{P|uid}}\}}' - - '{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/Parabole/Kona 2/{{P|uid}}/}}' -'Konami Collector''s Series: Castlevania & Contra': + - "{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/Parabole/Kona 2/}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Parabole\\Kona 2\\{{P|uid}}\\}}" + - "{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/Parabole/Kona 2/{{P|uid}}/}}" +"Konami Collector's Series: Castlevania & Contra": gog: 1862798366 pageId: 163820 templates: - - '{{Game data/saves|Windows|{{p|game}}\*.qxf}}' -'KonoSuba: Fukkatsu no Beldia': + - "{{Game data/saves|Windows|{{p|game}}\\*.qxf}}" +"KonoSuba: Fukkatsu no Beldia": pageId: 137164 templates: - - '{{Game data/config|Windows|{{p|game}}\data\config\}}' - - '{{Game data/saves|Windows|{{p|game}}\data\config\}}' -'KonoSuba: In the Life': + - "{{Game data/config|Windows|{{p|game}}\\data\\config\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\data\\config\\}}" +"KonoSuba: In the Life": pageId: 145620 Konrad the Kitten: pageId: 41809 @@ -90373,25 +87983,25 @@ Konrad the Rocket: Kontrakt: pageId: 110274 steam: 924370 -'Konung 2: Blood of Titans': +"Konung 2: Blood of Titans": gog: 1455290259 pageId: 50391 steam: 289360 templates: - - '{{Game data/config|Windows|{{p|game}}\KONUNG2.CFG}}' - - '{{Game data/saves|Windows|{{p|game}}\KONUNG2.SA*}}' -'Konung III: Ties of the Dynasty': + - "{{Game data/config|Windows|{{p|game}}\\KONUNG2.CFG}}" + - "{{Game data/saves|Windows|{{p|game}}\\KONUNG2.SA*}}" +"Konung III: Ties of the Dynasty": gog: 1362483431 pageId: 51055 steam: 289380 templates: - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Konung3\}}' -'Konung: Legends of the North': + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Konung3\\}}" +"Konung: Legends of the North": gog: 1455290088 pageId: 60997 templates: - - '{{Game data/config|Windows|{{p|game}}\KONUNG.CFG|{{p|game}}\CLANS.CFG|{{p|game}}\LAN.CFG}}' - - '{{Game data/saves|Windows|{{p|game}}\KONUNG.SA*|{{p|game}}\HISCORES.DAT|{{p|game}}\SAVITEMS.DAT}}' + - "{{Game data/config|Windows|{{p|game}}\\KONUNG.CFG|{{p|game}}\\CLANS.CFG|{{p|game}}\\LAN.CFG}}" + - "{{Game data/saves|Windows|{{p|game}}\\KONUNG.SA*|{{p|game}}\\HISCORES.DAT|{{p|game}}\\SAVITEMS.DAT}}" Koo & Yuu: pageId: 156037 steam: 1203460 @@ -90405,14 +88015,14 @@ Koral: pageId: 105217 steam: 896750 templates: - - '{{Game data/saves|Windows|{{P|localappdata}}\Koral\Saved\SaveGames\}}' -'Korean Scary Folk Tales VR: The Forbidden Book': + - "{{Game data/saves|Windows|{{P|localappdata}}\\Koral\\Saved\\SaveGames\\}}" +"Korean Scary Folk Tales VR: The Forbidden Book": pageId: 96693 steam: 872530 -'Korona:Nemesis': +"Korona:Nemesis": pageId: 144015 steam: 1019740 -Koropokkur in Love ~A Little Fairy's Tale~: +"Koropokkur in Love ~A Little Fairy's Tale~": pageId: 109794 steam: 915560 Korvae in space: @@ -90429,38 +88039,38 @@ Kosmokrats: pageId: 165103 steam: 1204410 templates: - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Pixel Delusion\Kosmokrats}}' + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Pixel Delusion\\Kosmokrats}}" Kosmonaut: pageId: 140271 templates: - - '{{Game data/saves|DOS|{{p|game}}\HISCORES.SKY}}' + - "{{Game data/saves|DOS|{{p|game}}\\HISCORES.SKY}}" Kosta Projekt: pageId: 171068 steam: 1344430 templates: - - '{{Game data/saves|Windows|{{p|game}}\ZapisGry.KostaProjekt}}' + - "{{Game data/saves|Windows|{{p|game}}\\ZapisGry.KostaProjekt}}" Koth: pageId: 37030 steam: 493110 -'Kotodama: The 7 Mysteries of Fujisawa': +"Kotodama: The 7 Mysteries of Fujisawa": pageId: 132741 steam: 997060 -'Koumajou Remilia: Scarlet Symphony': +"Koumajou Remilia: Scarlet Symphony": pageId: 179778 steam: 1229880 -KovaaK's FPS Aim Trainer: +"KovaaK's FPS Aim Trainer": pageId: 90933 steam: 824270 Kowloon High-School Chronicle: pageId: 183147 steam: 1053390 templates: - - '{{Game data/config|Windows|{{p|game}}\UserConfigFile.ini | {{p|hkcu}}\Software\ARC\Kowloon_Game}}' - - '{{Game data/saves|Windows|{{p|game}}\KowloonSaveData}}' + - "{{Game data/config|Windows|{{p|game}}\\UserConfigFile.ini | {{p|hkcu}}\\Software\\ARC\\Kowloon_Game}}" + - "{{Game data/saves|Windows|{{p|game}}\\KowloonSaveData}}" Koya Rift: pageId: 49436 steam: 328990 -Kozue's Strange Journey: +"Kozue's Strange Journey": pageId: 164465 steam: 1269820 KrAsAvA Shot: @@ -90482,10 +88092,10 @@ Kraken Academy!!: steamSide: - 1387550 templates: - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\Happy Broccoli Games\Kraken Academy}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/unity.Happy Broccoli Games.Kraken Academy}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Happy Broccoli Games/Kraken Academy}}' -Kraken's curse: + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\Happy Broccoli Games\\Kraken Academy}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/unity.Happy Broccoli Games.Kraken Academy}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Happy Broccoli Games/Kraken Academy}}" +"Kraken's curse": pageId: 155361 steam: 1206720 Krampus: @@ -90501,33 +88111,33 @@ Krater: pageId: 2975 steam: 42170 templates: - - '{{Game data/config|Windows|{{p|appdata}}\FatShark\Krater\user_settings.config}}' - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/42170/}}' + - "{{Game data/config|Windows|{{p|appdata}}\\FatShark\\Krater\\user_settings.config}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/42170/}}" Krautscape: pageId: 44465 steam: 268360 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Playables\Krautscape\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Playables\\Krautscape\\}}" Kraven Manor: pageId: 49593 steam: 296630 -'Kreed: Battle for Savitar': +"Kreed: Battle for Savitar": pageId: 133836 templates: - - '{{Game data/config|Windows|{{p|game}}\config.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\saves\}}' + - "{{Game data/config|Windows|{{p|game}}\\config.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\saves\\}}" Kreedz Climbing: pageId: 63719 steam: 626680 templates: - - '{{Game data/config|Steam|{{p|game}}/kz/cfg/}}' + - "{{Game data/config|Steam|{{p|game}}/kz/cfg/}}" KreisReise: pageId: 135336 steam: 1079810 Krieg: pageId: 71658 steam: 655620 -'Krim: The Music Bot': +"Krim: The Music Bot": pageId: 95357 steam: 863750 Krinkle Krusher: @@ -90544,8 +88154,8 @@ Kromaia: pageId: 27903 steam: 285980 templates: - - '{{Game data/config|Windows|{{p|game}}\Configuration\Options\*.xml}}' - - '{{Game data/saves|Windows|{{p|game}}\XML\Backups\*.xml}}' + - "{{Game data/config|Windows|{{p|game}}\\Configuration\\Options\\*.xml}}" + - "{{Game data/saves|Windows|{{p|game}}\\XML\\Backups\\*.xml}}" Kronos: pageId: 56493 steam: 562090 @@ -90562,27 +88172,27 @@ Krunch: pageId: 17033 steam: 280500 templates: - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{P|uid}}/280500/remote/}}' + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{P|uid}}/280500/remote/}}" Krunker: pageId: 167067 renamedFrom: - Krunker.io steam: 1408720 -Krush Kill 'N Destroy: +"Krush Kill 'N Destroy": pageId: 190124 -'Krush Kill ''N Destroy 2: Krossfire': +"Krush Kill 'N Destroy 2: Krossfire": gog: 1207659196 pageId: 131933 steam: 1292180 templates: - - '{{Game data/config|Windows|{{p|game}}\Options.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\Savegame}}' -Krush Kill 'N Destroy Xtreme: + - "{{Game data/config|Windows|{{p|game}}\\Options.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\Savegame}}" +"Krush Kill 'N Destroy Xtreme": gog: 1207659107 pageId: 131931 steam: 1292170 templates: - - '{{Game data/saves|Windows|{{p|game}}\game*.sav}}' + - "{{Game data/saves|Windows|{{p|game}}\\game*.sav}}" KryptCrawler: pageId: 95949 steam: 691590 @@ -90591,10 +88201,10 @@ Krypton Egg: Krystal the Adventurer: pageId: 95200 steam: 848770 -'Krystopia: A Puzzle Journey': +"Krystopia: A Puzzle Journey": pageId: 148874 steam: 1172170 -'Ku: Shroud of the Morrigan': +"Ku: Shroud of the Morrigan": pageId: 50560 steam: 270330 Kubblammo: @@ -90610,8 +88220,8 @@ Kubifaktorium: pageId: 113558 steam: 898720 templates: - - '{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/MirkoStudio/Kubifaktorium/}}' - - '{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/MirkoStudio/Kubifaktorium/}}' + - "{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/MirkoStudio/Kubifaktorium/}}" + - "{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/MirkoStudio/Kubifaktorium/}}" Kubix: pageId: 74666 steam: 738820 @@ -90631,16 +88241,16 @@ Kudos 2: Kukoo Kitchen: pageId: 123604 steam: 976870 -'Kukoos: Lost Pets': +"Kukoos: Lost Pets": pageId: 185943 steam: 1468250 Kukui: pageId: 67549 steam: 680040 -'Kult of Ktulu: Olympic': +"Kult of Ktulu: Olympic": pageId: 57438 steam: 586230 -'Kult: The Temple of Flying Saucers': +"Kult: The Temple of Flying Saucers": pageId: 79354 steam: 768480 Kulzas Tomb: @@ -90649,7 +88259,7 @@ Kulzas Tomb: Kumo: pageId: 142240 steam: 1121880 -'Kumoon: Ballistic Physics Puzzle': +"Kumoon: Ballistic Physics Puzzle": pageId: 45682 steam: 386290 Kumpels: @@ -90672,28 +88282,26 @@ Kung Fu Jesus: Kung Fu Panda: pageId: 88483 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\Activision\Kung Fu Panda\Saved - Games\GLOBAL.DAT|{{p|hkcu}}\SOFTWARE\Activision\Kung Fu Panda\Settings}} - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Activision\Kung Fu Panda\Saved Games\SLOT0}}' -'Kung Fu Panda: Showdown of Legendary Legends': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Activision\\Kung Fu Panda\\Saved Games\\GLOBAL.DAT|{{p|hkcu}}\\SOFTWARE\\Activision\\Kung Fu Panda\\Settings}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Activision\\Kung Fu Panda\\Saved Games\\SLOT0}}" +"Kung Fu Panda: Showdown of Legendary Legends": pageId: 45077 steam: 369230 Kung Fu Ping Pong: pageId: 56898 steam: 568240 -'Kung Fu Strike: The Warrior''s Rise': +"Kung Fu Strike: The Warrior's Rise": pageId: 16005 steam: 212030 templates: - - '{{Game data/config|Windows|{{p|game}}\Config.exe|{{p|game}}\Content\data\Config.XNA.xml}}' -'Kung Fury: Street Rage': + - "{{Game data/config|Windows|{{p|game}}\\Config.exe|{{p|game}}\\Content\\data\\Config.XNA.xml}}" +"Kung Fury: Street Rage": pageId: 25390 steam: 373180 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Hello There\Kung Fury\}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Hello There\Kung Fury\UserData}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Hello There/Kung Fury}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Hello There\\Kung Fury\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Hello There\\Kung Fury\\UserData}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Hello There/Kung Fury}}" KungFu Kickball: pageId: 126378 steam: 1004620 @@ -90709,7 +88317,7 @@ Kungfucious - VR Wuxia Kung Fu Simulator: KuniTure: pageId: 153145 steam: 1185400 -'Kunitsu-Gami: Path of the Goddess': +"Kunitsu-Gami: Path of the Goddess": pageId: 188011 Kunlun Fight: pageId: 55129 @@ -90732,7 +88340,7 @@ Kuraburo Kai: Kuro Survival: pageId: 63912 steam: 632200 -Kurokami-sama's Feast: +"Kurokami-sama's Feast": gog: 1268238535 pageId: 174571 steam: 1814930 @@ -90752,30 +88360,30 @@ KurtzPel: pageId: 128471 steam: 844870 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\TheChase\Saved}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\TheChase\\Saved}}" Kuso: pageId: 56523 steam: 578930 templates: - - '{{Game data/config|Windows|{{P|appdata}}\kuso\config.cfg|{{p|game}}\keyConfig.cfg, {{p|game}}\2pkeyConfig.cfg}}' - - '{{Game data/saves|Windows|{{P|appdata}}\kuso\kuso.sav}}' -'Kuukiyomi: Consider It': + - "{{Game data/config|Windows|{{P|appdata}}\\kuso\\config.cfg|{{p|game}}\\keyConfig.cfg, {{p|game}}\\2pkeyConfig.cfg}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\kuso\\kuso.sav}}" +"Kuukiyomi: Consider It": pageId: 173738 steam: 1221540 Kwaidan ~Azuma manor story~: pageId: 150834 steam: 1066430 templates: - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\gudouan\Kwaidan_Steam}}' + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\gudouan\\Kwaidan_Steam}}" Kwik Snax: pageId: 161975 Kyber Knights: pageId: 151627 steam: 1137390 -Kygo 'Carry Me' VR Experience: +"Kygo 'Carry Me' VR Experience": pageId: 71456 steam: 577440 -'Kyiv: From Dusk till Dawn': +"Kyiv: From Dusk till Dawn": pageId: 110462 steam: 926720 Kyklos Code: @@ -90792,23 +88400,23 @@ Kyn: pageId: 34354 steam: 314560 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Tangrin Entertainment\Kyn\Saves}}' + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Tangrin Entertainment\\Kyn\\Saves}}" Kynseed: gog: 1899284966 pageId: 87884 steam: 758870 templates: - - '{{Game data/config|Windows|{{p|game}}\Config.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\Saves\}}' + - "{{Game data/config|Windows|{{p|game}}\\Config.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\Saves\\}}" Kyoto Colorful Days: pageId: 33789 steam: 464080 templates: - - '{{Game data/saves|Windows|{{p|game}}\SaveData.pac}}' + - "{{Game data/saves|Windows|{{p|game}}\\SaveData.pac}}" Kyoto Tanoji Quest: pageId: 55718 steam: 558680 -Kyurinaga's Revenge: +"Kyurinaga's Revenge": pageId: 50911 steam: 529580 KóterGame: @@ -90820,12 +88428,12 @@ Kōmori Fruit Rush: L U N E: pageId: 33579 steam: 485880 -L'Abbaye des Morts: +"L'Abbaye des Morts": pageId: 131312 templates: - - '{{Game data/config|Windows|No configuration files.}}' - - '{{Game data/saves|Windows|No save function.}}' -L'Cestrue Seyuntres: + - "{{Game data/config|Windows|No configuration files.}}" + - "{{Game data/saves|Windows|No save function.}}" +"L'Cestrue Seyuntres": pageId: 156779 steam: 1218110 L-Way: @@ -90837,20 +88445,20 @@ L.A. Noire: pageId: 113 steam: 110800 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Rockstar Games\L.A. Noire\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Rockstar Games\L.A. Noire\Profiles\{{p|uid}}\L.A.Noire\}}' -'L.A. Noire: The VR Case Files': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Rockstar Games\\L.A. Noire\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Rockstar Games\\L.A. Noire\\Profiles\\{{p|uid}}\\L.A.Noire\\}}" +"L.A. Noire: The VR Case Files": pageId: 77505 steam: 722230 L.A. Rush: pageId: 26671 templates: - - '{{Game data/config|Windows|{{P|game}}\global.dat}}' - - '{{Game data/saves|Windows|{{P|game}}\save.dat}}' + - "{{Game data/config|Windows|{{P|game}}\\global.dat}}" + - "{{Game data/saves|Windows|{{P|game}}\\save.dat}}" L.A. Street Racing: pageId: 89928 templates: - - '{{Game data/saves|Windows|{{P|game}}\Save}}' + - "{{Game data/saves|Windows|{{P|game}}\\Save}}" L.S.S: pageId: 69689 steam: 701760 @@ -90884,37 +88492,33 @@ LASTFIGHT: LAZR - A Clothformer: pageId: 151511 steam: 1181040 -'LCD Sports: American Football': +"LCD Sports: American Football": pageId: 125924 steam: 996620 LEAP: pageId: 185638 steam: 906930 -'LETHE: Broken memories': +"LETHE: Broken memories": pageId: 145558 steam: 1139190 LEWDAPOCALYPSE: pageId: 166746 steam: 1271710 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\KG/AM\Lewdapocalypse\}}' - - '{{Game data/config|Linux|{{p|xdgconfighome}}/unity3d/KG_AM/Lewdapocalypse/prefs}}' - - >- - {{Game - data/saves|Windows|{{p|steam}}/userdata/{{p|uid}}/1271710/remote/saveFile|{{p|hkcu}}\Software\KG/AM\Lewdapocalypse\}} - - >- - {{Game - data/saves|Linux|{{p|steam}}/userdata/{{p|uid}}/1271710/remote/saveFile|{{p|xdgconfighome}}/unity3d/KG_AM/Lewdapocalypse/prefs}} + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\KG/AM\\Lewdapocalypse\\}}" + - "{{Game data/config|Linux|{{p|xdgconfighome}}/unity3d/KG_AM/Lewdapocalypse/prefs}}" + - "{{Game data/saves|Windows|{{p|steam}}/userdata/{{p|uid}}/1271710/remote/saveFile|{{p|hkcu}}\\Software\\KG/AM\\Lewdapocalypse\\}}" + - "{{Game data/saves|Linux|{{p|steam}}/userdata/{{p|uid}}/1271710/remote/saveFile|{{p|xdgconfighome}}/unity3d/KG_AM/Lewdapocalypse/prefs}}" LGBT Battlegrounds: pageId: 96825 steam: 874100 LGBTQ+ TEST: pageId: 141640 steam: 1121110 -'LIT: Lux in Tenebris': +"LIT: Lux in Tenebris": pageId: 154330 steam: 1190160 -'LIZ: Before the Plague': +"LIZ: Before the Plague": pageId: 90429 steam: 628940 LLK: @@ -90927,13 +88531,13 @@ LMA Professional Manager 2005: LO-OP: pageId: 97962 steam: 878640 -'LOA: Me and Angel': +"LOA: Me and Angel": pageId: 80460 steam: 779220 LOCO Railroad: pageId: 149618 steam: 1091240 -'LOGA: Unexpected Adventure': +"LOGA: Unexpected Adventure": pageId: 154158 steam: 1189020 LOGistICAL: @@ -90942,67 +88546,67 @@ LOGistICAL: LOGistICAL 2: pageId: 121490 steam: 954270 -'LOGistICAL 2: Belgium': +"LOGistICAL 2: Belgium": pageId: 112688 steam: 938070 -'LOGistICAL 2: France': +"LOGistICAL 2: France": pageId: 134610 steam: 1065890 -'LOGistICAL 2: Indonesia': +"LOGistICAL 2: Indonesia": pageId: 139157 steam: 1101380 -'LOGistICAL 2: USA - Nevada': +"LOGistICAL 2: USA - Nevada": pageId: 127959 steam: 1026560 -'LOGistICAL 2: Vampires': +"LOGistICAL 2: Vampires": pageId: 132426 steam: 1057190 -'LOGistICAL: ABC Islands': +"LOGistICAL: ABC Islands": pageId: 92915 steam: 851650 -'LOGistICAL: Brazil': +"LOGistICAL: Brazil": pageId: 73927 steam: 733540 -'LOGistICAL: British Isles': +"LOGistICAL: British Isles": pageId: 66629 steam: 684940 -'LOGistICAL: Caribbean': +"LOGistICAL: Caribbean": pageId: 93835 steam: 853850 -'LOGistICAL: Chile': +"LOGistICAL: Chile": pageId: 70144 steam: 706390 -'LOGistICAL: Earth': +"LOGistICAL: Earth": pageId: 66263 steam: 672150 -'LOGistICAL: Italy': +"LOGistICAL: Italy": pageId: 67867 steam: 693650 -'LOGistICAL: Japan': +"LOGistICAL: Japan": pageId: 72318 steam: 718490 -'LOGistICAL: Norway': +"LOGistICAL: Norway": pageId: 70146 steam: 706380 -'LOGistICAL: Russia': +"LOGistICAL: Russia": pageId: 73929 steam: 733500 -'LOGistICAL: South Africa': +"LOGistICAL: South Africa": pageId: 73925 steam: 733530 -'LOGistICAL: Switzerland': +"LOGistICAL: Switzerland": pageId: 73923 steam: 733520 -'LOGistICAL: USA - Florida': +"LOGistICAL: USA - Florida": pageId: 68162 steam: 689340 -'LOGistICAL: USA - New York': +"LOGistICAL: USA - New York": pageId: 73851 steam: 721380 -'LOGistICAL: USA - Oregon': +"LOGistICAL: USA - Oregon": pageId: 70132 steam: 706370 -'LOGistICAL: USA - Wisconsin': +"LOGistICAL: USA - Wisconsin": pageId: 73921 steam: 733510 LOKA - League of Keepers Allysium: @@ -91012,25 +88616,25 @@ LOLLIPOP!: pageId: 170785 steam: 1515230 templates: - - '{{Game data/saves|Windows|{{p|hkcu}}\Software\TheBoys\LOLLIPOP!\}}' -'LOOP: A Tranquil Puzzle Game': + - "{{Game data/saves|Windows|{{p|hkcu}}\\Software\\TheBoys\\LOLLIPOP!\\}}" +"LOOP: A Tranquil Puzzle Game": pageId: 37345 steam: 370150 templates: - - '{{Game data/saves|Windows|{{p|hkcu}}\Software\John Cullen\LOOP}}' + - "{{Game data/saves|Windows|{{p|hkcu}}\\Software\\John Cullen\\LOOP}}" LOR - League of Runners: pageId: 57774 steam: 587390 LOST CAVE: pageId: 123564 steam: 946340 -'LOST:SMILE memories + promises': +"LOST:SMILE memories + promises": pageId: 141357 steam: 1102410 -'LOTUS Minigames: Berlin Traffic': +"LOTUS Minigames: Berlin Traffic": pageId: 141092 steam: 1056140 -'LOTUS Minigames: United Nations': +"LOTUS Minigames: United Nations": pageId: 125775 steam: 1008820 LOTUS-Simulator: @@ -91042,7 +88646,7 @@ LOVE³ -Love Cube-: LOW-FI: pageId: 157336 steam: 395830 -'LQVE: Lion Quest Versus Expanded': +"LQVE: Lion Quest Versus Expanded": pageId: 77249 steam: 659570 LSD: @@ -91054,7 +88658,7 @@ LSDriver: LSDriver 2: pageId: 63781 steam: 655130 -'LURE: FREE': +"LURE: FREE": pageId: 175353 steam: 1514910 LUXAR: @@ -91069,10 +88673,10 @@ LYSER: La Aventura De Axel: pageId: 73525 steam: 720640 -'La Forêt de Pago: La Vengeance du Dragon': +"La Forêt de Pago: La Vengeance du Dragon": pageId: 142026 renamedFrom: - - 'La Forêt de Pago : La vengeance du dragon' + - "La Forêt de Pago : La vengeance du dragon" steam: 1413590 La Fuga: pageId: 130285 @@ -91086,7 +88690,7 @@ La Introducción: La Memoire: pageId: 154412 steam: 1136760 -'La Pucelle: Ragnarok': +"La Pucelle: Ragnarok": pageId: 176749 steam: 1866420 La Rana: @@ -91103,19 +88707,19 @@ La-Mulana: pageId: 6290 steam: 230700 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\NIGORO\La-Mulana\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/nigoro/la-mulana/}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/nigoro/la-mulana/config.ini}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\NIGORO\La-Mulana\saves\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/nigoro/la-mulana/}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/nigoro/la-mulana/save/}}' + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\NIGORO\\La-Mulana\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/nigoro/la-mulana/}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/nigoro/la-mulana/config.ini}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\NIGORO\\La-Mulana\\saves\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/nigoro/la-mulana/}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/nigoro/la-mulana/save/}}" La-Mulana (2006): pageId: 160143 renamedFrom: - La-Mulana (2005) templates: - - '{{Game data/config|Windows|{{p|game}}\lamulana.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\lamulana.sa#}}' + - "{{Game data/config|Windows|{{p|game}}\\lamulana.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\lamulana.sa#}}" La-Mulana 2: gog: 1618411515 pageId: 94423 @@ -91124,15 +88728,15 @@ La-Mulana 2: - 916280 - 1591620 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\NIGORO\LaMulana2\Config\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\NIGORO\LaMulana2\Save\}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\NIGORO\\LaMulana2\\Config\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\NIGORO\\LaMulana2\\Save\\}}" Lab 03 Yrinth: pageId: 75582 steam: 742010 -'Lab 7: Cold Nights': +"Lab 7: Cold Nights": pageId: 151004 steam: 1173310 -'Lab Runner: X': +"Lab Runner: X": pageId: 152887 steam: 931480 Lab.Gen.: @@ -91156,12 +88760,12 @@ Labor: Labyrinth: pageId: 37994 steam: 412310 -'Labyrinth City: Pierre the Maze Detective': +"Labyrinth City: Pierre the Maze Detective": pageId: 177227 steam: 1421790 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Darjeeling\Labyrinth City\}}' - - '{{Game data/saves|Windows|{{P|hkcu}}\Software\Darjeeling\Labyrinth City\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Darjeeling\\Labyrinth City\\}}" + - "{{Game data/saves|Windows|{{P|hkcu}}\\Software\\Darjeeling\\Labyrinth City\\}}" Labyrinth Escape: pageId: 64250 steam: 654950 @@ -91171,20 +88775,18 @@ Labyrinth Simulator: Labyrinth of AO: pageId: 81484 steam: 789270 -'Labyrinth of Galleria: The Moon Society': +"Labyrinth of Galleria: The Moon Society": pageId: 178325 steam: 1998340 templates: - - >- - {{Game data/config|Windows|{{p|appdata}}\Nippon Ichi Software, Inc\Labyrinth of Galleria\{{p|uid}}\config | - {{p|appdata}}\Nippon Ichi Software, Inc\Labyrinth of Galleria\{{p|uid}}\Setting.ini}} - - '{{Game data/saves|Windows|{{p|appdata}}\Nippon Ichi Software, Inc\Labyrinth of Galleria\{{p|uid}}\data.*}}' -'Labyrinth of Refrain: Coven of Dusk': + - "{{Game data/config|Windows|{{p|appdata}}\\Nippon Ichi Software, Inc\\Labyrinth of Galleria\\{{p|uid}}\\config | {{p|appdata}}\\Nippon Ichi Software, Inc\\Labyrinth of Galleria\\{{p|uid}}\\Setting.ini}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Nippon Ichi Software, Inc\\Labyrinth of Galleria\\{{p|uid}}\\data.*}}" +"Labyrinth of Refrain: Coven of Dusk": pageId: 82928 steam: 566540 templates: - - '{{Game data/config|Windows|{{p|game}}\savedata}}' - - '{{Game data/saves|Windows|{{p|game}}\savedata}}' + - "{{Game data/config|Windows|{{p|game}}\\savedata}}" + - "{{Game data/saves|Windows|{{p|game}}\\savedata}}" Labyrinth of the Witch: pageId: 156503 steam: 1170400 @@ -91195,23 +88797,23 @@ Labyrinthine Dreams: pageId: 47771 steam: 278570 templates: - - '{{Game data/config|Windows|{{p|game}}\Game.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\AutoSave.rvdata2}}' + - "{{Game data/config|Windows|{{p|game}}\\Game.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\AutoSave.rvdata2}}" Labyrinths of Atlantis: pageId: 90068 steam: 823770 -'Labyrinths of the World: Fool''s Gold': +"Labyrinths of the World: Fool's Gold": pageId: 144246 steam: 1134040 -'Labyrinths of the World: Forbidden Muse': +"Labyrinths of the World: Forbidden Muse": pageId: 68915 steam: 695980 -'Labyrinths of the World: Secrets of Easter Island': +"Labyrinths of the World: Secrets of Easter Island": pageId: 178694 -'Labyrinths of the World: Shattered Soul': +"Labyrinths of the World: Shattered Soul": pageId: 56902 steam: 551150 -'Labyrinths of the World: The Wild Side': +"Labyrinths of the World: The Wild Side": pageId: 155817 steam: 1192260 Labyronia: @@ -91232,10 +88834,8 @@ Lacuna: steamSide: - 1588570 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\appdata\locallow}}\DigiTales - Interactive\Lacuna\saves\*\settings.xml|{{P|hkcu}}\SOFTWARE\DigiTales Interactive\Lacuna\}} - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\DigiTales Interactive\Lacuna\saves\}}' + - "{{Game data/config|Windows|{{p|userprofile\\appdata\\locallow}}\\DigiTales Interactive\\Lacuna\\saves\\*\\settings.xml|{{P|hkcu}}\\SOFTWARE\\DigiTales Interactive\\Lacuna\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\DigiTales Interactive\\Lacuna\\saves\\}}" Lacuna Passage: pageId: 23041 steam: 252090 @@ -91256,7 +88856,7 @@ Ladra: Lady and Blade: pageId: 144645 steam: 1131330 -Lady's Hentai Mosaic: +"Lady's Hentai Mosaic": pageId: 146014 steam: 937730 Ladybird Reflect: @@ -91268,10 +88868,10 @@ Ladybug Quest: Ladykiller in a Bind: pageId: 56084 steam: 560000 -'Lagaf'': Les Aventures de Moktar - Vol 1: La Zoubida': +"Lagaf': Les Aventures de Moktar - Vol 1: La Zoubida": gog: 1828289583 pageId: 131890 -'Lagoon Lounge : The Poisonous Fountain': +"Lagoon Lounge : The Poisonous Fountain": pageId: 95264 steam: 857690 Laid-Back Camp - Virtual - Fumoto Campsite: @@ -91291,12 +88891,10 @@ Lair of the Clockwork God: pageId: 137004 steam: 1060600 templates: - - >- - {{Game data/config|Windows|{{P|userprofile\appdata\locallow}}\Size Five - Games\LotCG\OptionsData.txt|{{P|hkcu}}\Software\Size Five Games\LotCG\}} - - '{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/Size Five Games\LotCG\OptionsData.txt}}' - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Size Five Games\LotCG\SizeFive_Framework_*.txt}}' - - '{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/Size Five Games\LotCG\SizeFive_Framework_*.txt}}' + - "{{Game data/config|Windows|{{P|userprofile\\appdata\\locallow}}\\Size Five Games\\LotCG\\OptionsData.txt|{{P|hkcu}}\\Software\\Size Five Games\\LotCG\\}}" + - "{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/Size Five Games\\LotCG\\OptionsData.txt}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Size Five Games\\LotCG\\SizeFive_Framework_*.txt}}" + - "{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/Size Five Games\\LotCG\\SizeFive_Framework_*.txt}}" Lair of the Titans: pageId: 87363 steam: 796800 @@ -91304,30 +88902,28 @@ Lake: pageId: 157257 steam: 1118240 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Gamious\Lake\lake\saves\}}' + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Gamious\\Lake\\lake\\saves\\}}" Lake Ridden: gog: 1426001985 pageId: 70395 steam: 696530 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Midnight Hub\Lake Ridden}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Midnight Hub\Lake Ridden\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Midnight Hub\\Lake Ridden}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Midnight Hub\\Lake Ridden\\}}" Lake of Voices: pageId: 81796 steam: 782340 templates: - - >- - {{Game data/config|Windows|{{P|appdata}}\renpy\LakeOfVoices-1510419112\persistent |{{p|game}}\game\saves\persistent}} - - '{{Game data/saves|Windows|{{P|appdata}}\renpy\LakeOfVoices-1510419112\*.save|{{p|game}}\game\saves\*.save}}' + - "{{Game data/config|Windows|{{P|appdata}}\\renpy\\LakeOfVoices-1510419112\\persistent |{{p|game}}\\game\\saves\\persistent}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\renpy\\LakeOfVoices-1510419112\\*.save|{{p|game}}\\game\\saves\\*.save}}" Lakers versus Celtics and the NBA Playoffs: pageId: 179770 Lakeview Cabin Collection: pageId: 37572 steam: 361990 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\SOFTWARE\DefaultCompany\LvC Collection}}' - - '{{Game data/saves|Windows|{{p|hkcu}}\SOFTWARE\DefaultCompany\LvC Collection}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\DefaultCompany\\LvC Collection}}" + - "{{Game data/saves|Windows|{{p|hkcu}}\\SOFTWARE\\DefaultCompany\\LvC Collection}}" Lakeview Valley: pageId: 135189 steam: 783840 @@ -91337,7 +88933,7 @@ Lama Drama FPS: Lambda Wars: pageId: 175081 steam: 270370 -'Lamborghini: American Challenge': +"Lamborghini: American Challenge": pageId: 88465 Lambs on the Road: pageId: 122900 @@ -91354,7 +88950,7 @@ Lamentum: Lamia Must Die: pageId: 46699 steam: 385260 -Lamia's Game Room: +"Lamia's Game Room": pageId: 44583 steam: 434680 Lamm: @@ -91371,10 +88967,10 @@ Lamplight City: pageId: 79410 steam: 761460 templates: - - '{{Game data/config|Windows|{{P|userprofile}}\Saved Games\Lamplight City\}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/ags/Lamplight City/acsetup.cfg|{{P|game}}/acsetup.cfg}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\Saved Games\Lamplight City\}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/ags/Lamplight City/}}' + - "{{Game data/config|Windows|{{P|userprofile}}\\Saved Games\\Lamplight City\\}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/ags/Lamplight City/acsetup.cfg|{{P|game}}/acsetup.cfg}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\Saved Games\\Lamplight City\\}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/ags/Lamplight City/}}" Lamplight Station: pageId: 78780 steam: 753490 @@ -91384,10 +88980,10 @@ Lanadgel: Lance A Lot: pageId: 39135 steam: 495900 -'Lance A Lot: Enhanced Edition': +"Lance A Lot: Enhanced Edition": pageId: 70194 steam: 684530 -'Lancelot''s Hangover : The Quest for the Holy Booze': +"Lancelot's Hangover : The Quest for the Holy Booze": pageId: 109886 steam: 917380 Land Doctrine: @@ -91408,7 +89004,7 @@ Land it Rocket: Land of Arxox: pageId: 126195 steam: 683370 -'Land of Chaos Online II: Revolution': +"Land of Chaos Online II: Revolution": pageId: 139377 steam: 981870 Land of Dread: @@ -91417,16 +89013,16 @@ Land of Dread: Land of Ngoto: pageId: 153093 steam: 1186510 -'Land of Puzzles: Battles': +"Land of Puzzles: Battles": pageId: 110692 steam: 931360 -'Land of Puzzles: Castles': +"Land of Puzzles: Castles": pageId: 104921 steam: 914220 -'Land of Puzzles: Elven Princess': +"Land of Puzzles: Elven Princess": pageId: 112684 steam: 938000 -'Land of Puzzles: Knights': +"Land of Puzzles: Knights": pageId: 108136 steam: 922130 Land of War - The Beginning: @@ -91435,11 +89031,11 @@ Land of War - The Beginning: Land of an Endless Journey: pageId: 110696 steam: 931430 -'Land of the Dead: Road to Fiddler''s Green': +"Land of the Dead: Road to Fiddler's Green": pageId: 54225 templates: - - '{{Game data/config|Windows|{{p|game}}\System\}}' - - '{{Game data/saves|Windows|{{p|game}}\Saves\}}' + - "{{Game data/config|Windows|{{p|game}}\\System\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\Saves\\}}" Land of the Vikings: gog: 1959273870 pageId: 184897 @@ -91448,8 +89044,8 @@ LandTraveller: pageId: 63167 steam: 522130 templates: - - '{{Game data/saves|Windows|{{p|appdata}}\rpg20xx}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.local/share/landt/linux}}' + - "{{Game data/saves|Windows|{{p|appdata}}\\rpg20xx}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.local/share/landt/linux}}" Lander: pageId: 53730 Lander 8009 VR: @@ -91461,7 +89057,7 @@ Landfill: Landflix Odyssey: pageId: 82444 steam: 794850 -'Landinar: Into the Void': +"Landinar: Into the Void": pageId: 94100 steam: 794270 Landless: @@ -91473,7 +89069,7 @@ Landlord Girls: Landlord Simulator: pageId: 88051 steam: 803310 -Landlord's Super: +"Landlord's Super": pageId: 145232 steam: 1127840 Landmark: @@ -91488,7 +89084,7 @@ Landnama: Landon: pageId: 69024 steam: 699470 -'Lands Of Peace: Legends - Chapter 1': +"Lands Of Peace: Legends - Chapter 1": pageId: 179045 steam: 1482060 Lands of Devastation: @@ -91501,40 +89097,36 @@ Lands of Lore III: gog: 1207659094 pageId: 13512 templates: - - '{{Game data/config|Windows|{{p|game}}\options.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\SAVEGAME\}}' -'Lands of Lore: Guardians of Destiny': + - "{{Game data/config|Windows|{{p|game}}\\options.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\SAVEGAME\\}}" +"Lands of Lore: Guardians of Destiny": gog: 1207662563 gogSide: - 1207658980 pageId: 15729 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/saves|Windows|{{p|game}}\SAVEGAME}}' -'Lands of Lore: The Throne of Chaos': + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\SAVEGAME}}" +"Lands of Lore: The Throne of Chaos": gog: 1207662513 gogSide: - 1207658980 pageId: 15722 templates: - - '{{Game data/config|DOS|{{p|game}}\}}' - - '{{Game data/saves|DOS|{{p|game}}\_SAVE***.DAT}}' -'Lands of Pharaoh: Episode 1': + - "{{Game data/config|DOS|{{p|game}}\\}}" + - "{{Game data/saves|DOS|{{p|game}}\\_SAVE***.DAT}}" +"Lands of Pharaoh: Episode 1": pageId: 152789 steam: 1174200 Lands of the Lost: pageId: 95535 steam: 868600 -'Landstalker: The Treasures of King Nole': +"Landstalker: The Treasures of King Nole": pageId: 30865 steam: 71118 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\SEGA Mega Drive - Classics\setup.dat|{{p|userprofile\Documents}}\SEGA Genesis Classics\setup.dat}} - - >- - {{Game data/saves|Windows|{{p|userprofile\Documents}}\SEGA Mega Drive - Classics\0036\|{{p|userprofile\Documents}}\SEGA Genesis Classics\0036\}} + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\SEGA Mega Drive Classics\\setup.dat|{{p|userprofile\\Documents}}\\SEGA Genesis Classics\\setup.dat}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\SEGA Mega Drive Classics\\0036\\|{{p|userprofile\\Documents}}\\SEGA Genesis Classics\\0036\\}}" Landwars: pageId: 89682 steam: 819680 @@ -91545,7 +89137,7 @@ Langrisser I & II: pageId: 142273 steam: 1060220 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\Saved Games\Langrisser I & II\}}' + - "{{Game data/saves|Windows|{{p|userprofile}}\\Saved Games\\Langrisser I & II\\}}" Langrisser II: pageId: 176977 Language Worm: @@ -91566,7 +89158,7 @@ Lantern of Worlds: Lantern of Worlds - The First Quest: pageId: 121525 steam: 952910 -'Lantern of Worlds: The Story of Layla': +"Lantern of Worlds: The Story of Layla": pageId: 132494 steam: 1047190 Lanternium: @@ -91599,19 +89191,19 @@ Lara Croft GO: pageId: 30341 steam: 540840 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Square Enix Ltd.\Lara Croft GO\}}' - - '{{Game data/config|Microsoft Store|{{P|localappdata}}\Packages\39C668CD.LaraCroftGO_r7bfsmp40f67j\LocalState\}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Square Enix Ltd_/Lara Croft GO/}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Square Enix Ltd_\Lara Croft GO\}}' - - '{{Game data/saves|Microsoft Store|{{P|localappdata}}\Packages\39C668CD.LaraCroftGO_r7bfsmp40f67j\LocalState\}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Square Enix Ltd_/Lara Croft GO/}}' - - '{{Game data/saves|Steam|{{P|Steam}}/userdata/{{P|uid}}/540840/}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Square Enix Ltd.\\Lara Croft GO\\}}" + - "{{Game data/config|Microsoft Store|{{P|localappdata}}\\Packages\\39C668CD.LaraCroftGO_r7bfsmp40f67j\\LocalState\\}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Square Enix Ltd_/Lara Croft GO/}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Square Enix Ltd_\\Lara Croft GO\\}}" + - "{{Game data/saves|Microsoft Store|{{P|localappdata}}\\Packages\\39C668CD.LaraCroftGO_r7bfsmp40f67j\\LocalState\\}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Square Enix Ltd_/Lara Croft GO/}}" + - "{{Game data/saves|Steam|{{P|Steam}}/userdata/{{P|uid}}/540840/}}" Lara Croft and the Guardian of Light: pageId: 3957 steam: 35130 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Crystal Dynamics\Lara Croft: GoL\}}' - - '{{Game data/saves|Windows|{{p|steam}}\userdata\{{p|uid}}\35150\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Crystal Dynamics\\Lara Croft: GoL\\}}" + - "{{Game data/saves|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\35150\\}}" Lara Croft and the Temple of Osiris: pageId: 21404 steam: 289690 @@ -91622,15 +89214,15 @@ Lara Croft and the Temple of Osiris: - 318874 - 318875 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Crystal Dynamics\Lara Croft and the Temple of Osiris\}}' - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\289690\remote\*.dat}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Crystal Dynamics\\Lara Croft and the Temple of Osiris\\}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\289690\\remote\\*.dat}}" Laraan: pageId: 56316 steam: 493710 Laranga: pageId: 144633 steam: 1124520 -'Largo Winch: Empire Under Threat': +"Largo Winch: Empire Under Threat": pageId: 172560 Larkin Building by Frank Lloyd Wright: pageId: 94387 @@ -91647,7 +89239,7 @@ Larva Mortus: Laser Arena: pageId: 176626 templates: - - '{{Game data/config|Windows|{{p|game}}\main\config.cfg}}' + - "{{Game data/config|Windows|{{p|game}}\\main\\config.cfg}}" Laser Arena Online: pageId: 148643 steam: 1147080 @@ -91680,12 +89272,12 @@ Laser Puzzle in VR: steam: 813680 Laser Squad: pageId: 167544 -'Laser Squad: Nemesis': +"Laser Squad: Nemesis": pageId: 167545 templates: - - '{{Game data/config|Windows|{{p|game}}/Configs}}' - - '{{Game data/saves|Windows|{{p|game}}}}' -'Laser Stallion Disco Junkie: One Hit': + - "{{Game data/config|Windows|{{p|game}}/Configs}}" + - "{{Game data/saves|Windows|{{p|game}}}}" +"Laser Stallion Disco Junkie: One Hit": pageId: 130472 steam: 1002550 Laser Strikers: @@ -91698,9 +89290,7 @@ LaserCat: pageId: 54375 steam: 496120 templates: - - >- - {{Game - data/saves|Windows|{{p|userprofile\Documents}}\SavedGames\LaserCat\LaserCatSave\AllPlayers\LaserCatSave.txt}} + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\SavedGames\\LaserCat\\LaserCatSave\\AllPlayers\\LaserCatSave.txt}}" LaserChain: pageId: 108274 steam: 907860 @@ -91716,16 +89306,16 @@ Laseronium: Laseronium 2: pageId: 68623 steam: 697200 -'Laseronium: Over The Line': +"Laseronium: Over The Line": pageId: 65082 steam: 670520 -'Laseronium: The Beam Focus': +"Laseronium: The Beam Focus": pageId: 69310 steam: 697230 -'Laseronium: The Line': +"Laseronium: The Line": pageId: 65021 steam: 670380 -'Laseronium: The Reflexion': +"Laseronium: The Reflexion": pageId: 68629 steam: 697220 Laservasion: @@ -91734,13 +89324,13 @@ Laservasion: Last Alive: pageId: 96881 steam: 875360 -'Last Anime Boy 2: Hentai Zombie Hell': +"Last Anime Boy 2: Hentai Zombie Hell": pageId: 91526 steam: 821780 -'Last Anime Boy: Saving Loli': +"Last Anime Boy: Saving Loli": pageId: 76075 steam: 750210 -'Last Berserker: Endless War': +"Last Berserker: Endless War": pageId: 79184 steam: 722890 Last Bronx: @@ -91753,15 +89343,13 @@ Last Call BBS: pageId: 178310 steam: 1511780 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\My Games\Last Call BBS\{{P|uid}}\config.cfg}}' - - '{{Game data/config|Microsoft Store|{{P|userprofile\Documents}}\My Games\Last Call BBS\XboxLiveUser\config.cfg}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.local/share/Last Call BBS/{{p|uid}}/config.cfg}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\My Games\Last Call BBS\{{P|uid}}\}}' - - >- - {{Game data/saves|Microsoft - Store|{{P|localappdata}}\Packages\58020AllianceMetaversalSt.LastCallBBS_j78hpz8e66gfw\SystemAppData\xgs\{{P|uid}}\all\save.dat}} - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Last Call BBS/{{P|uid}}/*}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.local/share/Last Call BBS/{{p|uid}}/}}' + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\My Games\\Last Call BBS\\{{P|uid}}\\config.cfg}}" + - "{{Game data/config|Microsoft Store|{{P|userprofile\\Documents}}\\My Games\\Last Call BBS\\XboxLiveUser\\config.cfg}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.local/share/Last Call BBS/{{p|uid}}/config.cfg}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\My Games\\Last Call BBS\\{{P|uid}}\\}}" + - "{{Game data/saves|Microsoft Store|{{P|localappdata}}\\Packages\\58020AllianceMetaversalSt.LastCallBBS_j78hpz8e66gfw\\SystemAppData\\xgs\\{{P|uid}}\\all\\save.dat}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Last Call BBS/{{P|uid}}/*}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.local/share/Last Call BBS/{{p|uid}}/}}" Last Chance VR: pageId: 149584 steam: 1151860 @@ -91773,8 +89361,8 @@ Last Day of June: pageId: 63036 steam: 635320 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Ovosonico\Last Day of June\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Ovosonico\Last Day of June\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Ovosonico\\Last Day of June\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Ovosonico\\Last Day of June\\}}" Last Day of Rome: pageId: 139077 steam: 1015090 @@ -91788,8 +89376,8 @@ Last Days of Lazarus: pageId: 178522 steam: 1359920 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\SingurInCeasulMortii\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\SingurInCeasulMortii\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\SingurInCeasulMortii\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\SingurInCeasulMortii\\Saved\\SaveGames\\}}" Last Days of Old Earth: pageId: 42661 steam: 376450 @@ -91797,13 +89385,13 @@ Last Days of Spring: pageId: 46142 steam: 407680 templates: - - '{{Game data/config|Windows|{{p|game}}\data\system\Config.tjs}}' + - "{{Game data/config|Windows|{{p|game}}\\data\\system\\Config.tjs}}" Last Days of Spring 2: pageId: 53224 steam: 551520 templates: - - '{{Game data/config|Windows|{{p|game}}\data\system\Config.tjs}}' - - '{{Game data/saves|Windows|{{p|game}}\LastDaysofSpring2_tyrano_data.sav}}' + - "{{Game data/config|Windows|{{p|game}}\\data\\system\\Config.tjs}}" + - "{{Game data/saves|Windows|{{p|game}}\\LastDaysofSpring2_tyrano_data.sav}}" Last Days of Tascaria: pageId: 92171 steam: 577470 @@ -91814,9 +89402,9 @@ Last Dream: pageId: 28743 steam: 266230 templates: - - '{{Game data/config|Windows|{{p|game}}\Game.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\Save*.rvdata}}' -'Last Dream: World Unknown': + - "{{Game data/config|Windows|{{p|game}}\\Game.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\Save*.rvdata}}" +"Last Dream: World Unknown": pageId: 62072 steam: 448170 Last Encounter: @@ -91826,14 +89414,14 @@ Last Epoch: pageId: 134252 steam: 899770 templates: - - '{{Game data/saves|Windows|C:\Users\USER_NAME\AppData\LocalLow\Eleventh Hour Games\Last Epoch\Saves}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Eleventh Hour Games/Last Epoch/Saves}}' + - "{{Game data/saves|Windows|C:\\Users\\USER_NAME\\AppData\\LocalLow\\Eleventh Hour Games\\Last Epoch\\Saves}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Eleventh Hour Games/Last Epoch/Saves}}" Last Evil: pageId: 161398 steam: 823910 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Flametorch\LastEvil}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Flametorch\LastEvil}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Flametorch\\LastEvil}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Flametorch\\LastEvil}}" Last Fort: pageId: 88152 steam: 812350 @@ -91842,12 +89430,12 @@ Last Half of Darkness: Last Half of Darkness - Society of the Serpent Moon: pageId: 134061 renamedFrom: - - William R. Fisher's Beyond the Spirit's Eye + - "William R. Fisher's Beyond the Spirit's Eye" steam: 384910 -'Last Half of Darkness: Shadows of the Servants': +"Last Half of Darkness: Shadows of the Servants": pageId: 134060 steam: 384910 -'Last Half of Darkness: Society of the Serpent Moon': +"Last Half of Darkness: Society of the Serpent Moon": pageId: 47005 steam: 384910 Last Heroes: @@ -91869,8 +89457,8 @@ Last Hope - Tower Defense: pageId: 43626 steam: 434020 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\JESoftware\Last Hope TD\}}' - - '{{Game data/saves|Windows|{{p|hkcu}}\Software\JESoftware\Last Hope TD\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\JESoftware\\Last Hope TD\\}}" + - "{{Game data/saves|Windows|{{p|hkcu}}\\Software\\JESoftware\\Last Hope TD\\}}" Last Hope Z - VR: pageId: 135099 steam: 1053850 @@ -91889,16 +89477,16 @@ Last Joy: Last Kings: pageId: 150900 steam: 1155780 -'Last Knight: Rogue Rider Edition': +"Last Knight: Rogue Rider Edition": pageId: 49576 steam: 262210 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\My Games\Last Knight\Save\System\*.bin}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\My Games\Last Knight\Save\*.bin}}' + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\My Games\\Last Knight\\Save\\System\\*.bin}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\My Games\\Last Knight\\Save\\*.bin}}" Last Labyrinth: pageId: 150523 steam: 979400 -'Last Line VR: A Zombie Defense Game': +"Last Line VR: A Zombie Defense Game": pageId: 139053 steam: 1006900 Last Mage Standing: @@ -91911,7 +89499,7 @@ Last Man Standing: pageId: 55456 steam: 506540 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\FreeReign\LMS\gameSettings.ini}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\FreeReign\\LMS\\gameSettings.ini}}" Last Moon: pageId: 142333 steam: 1108600 @@ -91922,7 +89510,7 @@ Last Oasis: pageId: 127383 steam: 903950 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Mist\Saved\Config\WindowsClient\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Mist\\Saved\\Config\\WindowsClient\\}}" Last Protection: pageId: 148412 steam: 1150780 @@ -91939,8 +89527,8 @@ Last Rites: pageId: 88158 steam: 814610 templates: - - '{{Game data/config|DOS|{{p|game}}\LASTRITE.CFG}}' - - '{{Game data/saves|DOS|{{p|game}}\}}' + - "{{Game data/config|DOS|{{p|game}}\\LASTRITE.CFG}}" + - "{{Game data/saves|DOS|{{p|game}}\\}}" Last Salvo: pageId: 78298 steam: 727330 @@ -91953,7 +89541,7 @@ Last Soldier: Last Stand: pageId: 55712 steam: 566830 -'Last Stand: Reborn': +"Last Stand: Reborn": pageId: 126393 steam: 899230 Last Stanza: @@ -91969,7 +89557,7 @@ Last Stop: pageId: 157387 steam: 1122690 templates: - - '{{Game data/config|Windows|{{p|HKCU}}\Software\Annapurna Interactive\Last Stop}}' + - "{{Game data/config|Windows|{{p|HKCU}}\\Software\\Annapurna Interactive\\Last Stop}}" Last Summer: pageId: 144757 steam: 1145120 @@ -91983,7 +89571,7 @@ Last Tide: pageId: 102089 steam: 858590 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\DR\Saved\Config\WindowsNoEditor\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\DR\\Saved\\Config\\WindowsNoEditor\\}}" Last Toon Standing: pageId: 72977 steam: 721950 @@ -92015,12 +89603,12 @@ Last Word: Last Year: pageId: 164738 steam: 1195460 -'Last Year: The Nightmare': +"Last Year: The Nightmare": pageId: 120570 steam: 511440 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\LastYear\Saved\Config\WindowsNoEditor}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\LastYear\Saved\SaveGames}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\LastYear\\Saved\\Config\\WindowsNoEditor}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\LastYear\\Saved\\SaveGames}}" Last in Orbit: pageId: 156262 steam: 1211780 @@ -92044,14 +89632,14 @@ Late Shift: pageId: 59103 steam: 584980 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Wales Interactive\Late Shift\}}' - - '{{Game data/config|Steam|{{P|steam}}\userdata\{{P|uid}}\584980\remote\OptionsData}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Wales Interactive\Late Shift\Unity}}' - - '{{Game data/saves|Steam|{{P|steam}}\userdata\{{P|uid}}\584980\remote\GameData}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Wales Interactive\\Late Shift\\}}" + - "{{Game data/config|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\584980\\remote\\OptionsData}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Wales Interactive\\Late Shift\\Unity}}" + - "{{Game data/saves|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\584980\\remote\\GameData}}" Late at night: pageId: 112396 steam: 932160 -Late'O'Clock: +"Late'O'Clock": pageId: 120792 steam: 964180 Later: @@ -92061,14 +89649,10 @@ Later Alligator: pageId: 124496 steam: 966320 templates: - - >- - {{Game - data/config|Windows|{{P|userprofile}}\AppData\LocalLow\PillowFightIo\LaterAlligator\Unity\local.897ca0d97e1d54df898dd45a8b6084f0\Analytics\}} - - >- - {{Game - data/config|Linux|{{p|linuxhome}}/.config/unity3d/PillowFightIo/LaterAlligator/Unity/local.897ca0d97e1d54df898dd45a8b6084f0/Analytics/}} - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\PillowFightIo\LaterAlligator\{{P|uid}}\}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/PillowFightIo/LaterAlligator/{{P|uid}}/}}' + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\PillowFightIo\\LaterAlligator\\Unity\\local.897ca0d97e1d54df898dd45a8b6084f0\\Analytics\\}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/PillowFightIo/LaterAlligator/Unity/local.897ca0d97e1d54df898dd45a8b6084f0/Analytics/}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\PillowFightIo\\LaterAlligator\\{{P|uid}}\\}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/PillowFightIo/LaterAlligator/{{P|uid}}/}}" Later Daters: gog: 1173362611 pageId: 130741 @@ -92094,12 +89678,12 @@ Launch Party: Launch Squad: pageId: 39741 steam: 523860 -Laura's Happy Adventures: +"Laura's Happy Adventures": pageId: 88450 templates: - - '{{Game data/config|Windows|{{p|windir}}\UbiSoft\ubi.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\Gamedata\SaveGame}}' -Lauren's visit: + - "{{Game data/config|Windows|{{p|windir}}\\UbiSoft\\ubi.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\Gamedata\\SaveGame}}" +"Lauren's visit": pageId: 108290 steam: 918040 Lava Pool: @@ -92114,17 +89698,17 @@ Lavapools: Lavender: pageId: 149985 steam: 886710 -'Law & Order: Criminal Intent': +"Law & Order: Criminal Intent": pageId: 146686 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\ ??? \lawandorder}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\ ??? \lawandorder}}' -'Law & Order: Legacies': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\ ??? \\lawandorder}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\ ??? \\lawandorder}}" +"Law & Order: Legacies": pageId: 60047 steam: 205330 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\telltale games\lawandorder}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\telltale games\lawandorder}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\telltale games\\lawandorder}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\telltale games\\lawandorder}}" Law Law Land: pageId: 157303 steam: 1200460 @@ -92138,7 +89722,7 @@ LawBreakers: pageId: 33968 steam: 350280 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Lawbreakers\Saved\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Lawbreakers\\Saved\\}}" Lawless Lands: pageId: 107874 steam: 880130 @@ -92149,17 +89733,17 @@ Lawn Mowing Simulator: pageId: 170690 steam: 1480560 templates: - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Curve Digital\Lawn Mowing Simulator}}' + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Curve Digital\\Lawn Mowing Simulator}}" Lawnmower Game: pageId: 65265 steam: 658600 -'Lawnmower Game 2: Drifter': +"Lawnmower Game 2: Drifter": pageId: 77182 steam: 749550 -'Lawnmower Game 3: Horror': +"Lawnmower Game 3: Horror": pageId: 113614 steam: 907620 -'Lawnmower Game 4: The Final Cut': +"Lawnmower Game 4: The Final Cut": pageId: 135269 steam: 1064090 Laws of Civilization: @@ -92189,17 +89773,13 @@ Layers of Fear: - 493530 - 550210 templates: - - >- - {{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\Bloober Team\Layers of - Fear\0\cfg\|{{P|hkcu}}\Software\Bloober Team\Layers of Fear}} - - '{{Game data/config|Steam|{{p|userprofile}}\AppData\LocalLow\Bloober Team\Layers of Fear\{{p|uid}}\cfg\}}' - - '{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/Bloober Team/Layers of Fear/}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Bloober Team\Layers of Fear\0\save*.dat}}' - - '{{Game data/saves|Steam|{{p|userprofile}}\AppData\LocalLow\Bloober Team\Layers of Fear\{{p|uid}}\save*.dat}}' - - >- - {{Game data/saves|OS X|{{p|osxhome}}/Library/Containers/unity.Bloober-Team.Layers-of-Fear/Data/Library/Application - Support/unity.Bloober Team.Layers of Fear/0}} - - '{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/Bloober Team/Layers of Fear/}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Bloober Team\\Layers of Fear\\0\\cfg\\|{{P|hkcu}}\\Software\\Bloober Team\\Layers of Fear}}" + - "{{Game data/config|Steam|{{p|userprofile}}\\AppData\\LocalLow\\Bloober Team\\Layers of Fear\\{{p|uid}}\\cfg\\}}" + - "{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/Bloober Team/Layers of Fear/}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Bloober Team\\Layers of Fear\\0\\save*.dat}}" + - "{{Game data/saves|Steam|{{p|userprofile}}\\AppData\\LocalLow\\Bloober Team\\Layers of Fear\\{{p|uid}}\\save*.dat}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Containers/unity.Bloober-Team.Layers-of-Fear/Data/Library/Application Support/unity.Bloober Team.Layers of Fear/0}}" + - "{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/Bloober Team/Layers of Fear/}}" Layers of Fear (2023): gog: 1255378890 pageId: 178202 @@ -92209,17 +89789,15 @@ Layers of Fear (2023): steamSide: - 2237040 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Local\Cron\Saved\Config\Windows\}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\Local\Cron\Saved\SaveGames\{{P|uid}}\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\Local\\Cron\\Saved\\Config\\Windows\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Local\\Cron\\Saved\\SaveGames\\{{P|uid}}\\}}" Layers of Fear 2: gog: 2032950534 pageId: 126686 steam: 1029890 templates: - - |- - {{Game data/config|Windows|{{P|localappdata}}\LOF2\Saved\Config\WindowsNoEditor\| - {{P|localappdata}}\LOF2\Saved\SaveGames\{{P|uid}}\PlayerProfile.sav}} - - '{{Game data/saves|Windows|{{P|localappdata}}\LOF2\Saved\SaveGames\{{P|uid}}\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\LOF2\\Saved\\Config\\WindowsNoEditor\\|\n{{P|localappdata}}\\LOF2\\Saved\\SaveGames\\{{P|uid}}\\PlayerProfile.sav}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\LOF2\\Saved\\SaveGames\\{{P|uid}}\\}}" Layers of Fear VR: pageId: 152498 steam: 1183030 @@ -92235,44 +89813,44 @@ Lazer Cops: Lazerbait: pageId: 51431 steam: 529150 -'Lazergoat: Invasion': +"Lazergoat: Invasion": pageId: 93126 steam: 848740 Lazors: pageId: 40108 steam: 341290 -Lazy Devil's Game Life: +"Lazy Devil's Game Life": pageId: 90207 steam: 825410 Lazy Galaxy: pageId: 75127 steam: 724470 -'Lazy Galaxy: Rebel Story': +"Lazy Galaxy: Rebel Story": pageId: 95007 steam: 533050 Le Fetiche Maya: pageId: 30735 templates: - - '{{Game data/saves|DOS|{{p|game}}\P.DAT}}' -'Le Havre: The Inland Port': + - "{{Game data/saves|DOS|{{p|game}}\\P.DAT}}" +"Le Havre: The Inland Port": pageId: 36686 steam: 511820 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\DIGIDICED\Inland Port\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\DIGIDICED\\Inland Port\\}}" Le Mans 24 Hours: pageId: 25241 templates: - - '{{Game data/config|Windows|{{p|game}}\save|{{p|game}}\data\controls.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\save}}' + - "{{Game data/config|Windows|{{p|game}}\\save|{{p|game}}\\data\\controls.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\save}}" Le Maître des Âmes: pageId: 75277 templates: - - '{{Game data/saves|DOS|A:\*.JEU}}' -'Lead and Gold: Gangs of the Wild West': + - "{{Game data/saves|DOS|A:\\*.JEU}}" +"Lead and Gold: Gangs of the Wild West": pageId: 2436 steam: 42120 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\LAG\data\settings}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\LAG\\data\\settings}}" Leaf: pageId: 132428 steam: 1048960 @@ -92294,17 +89872,17 @@ League of Legends: pageId: 131 steam: 20590 templates: - - '{{Game data/config|Windows|{{p|game}}\Config}}' - - '{{Game data/config|OS X|{{p|game}}\Config}}' -'League of Light: Dark Omens': + - "{{Game data/config|Windows|{{p|game}}\\Config}}" + - "{{Game data/config|OS X|{{p|game}}\\Config}}" +"League of Light: Dark Omens": pageId: 50893 steam: 533070 -'League of Light: Silent Mountain': +"League of Light: Silent Mountain": pageId: 77575 steam: 758590 -'League of Light: The Gatherer': +"League of Light: The Gatherer": pageId: 154698 -'League of Light: Wicked Harvest': +"League of Light: Wicked Harvest": pageId: 61048 steam: 623470 League of Maidens: @@ -92322,7 +89900,7 @@ League of Pixels: League of Survivors: pageId: 87593 steam: 802410 -Leanna's Slice of Life: +"Leanna's Slice of Life": gog: 1850227359 pageId: 128350 steam: 1013870 @@ -92336,8 +89914,8 @@ Leap of Fate: pageId: 34055 steam: 363420 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\SOFTWARE\Clever-Plays\Leap of Fate}}' - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Clever-Plays\Leap of Fate}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\SOFTWARE\\Clever-Plays\\Leap of Fate}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Clever-Plays\\Leap of Fate}}" Leapoid: pageId: 150743 steam: 1138070 @@ -92348,13 +89926,13 @@ Learn Japanese To Survive! Hiragana Battle: pageId: 34535 steam: 438270 templates: - - '{{Game data/config|Windows|{{p|game}}\save\config.rpgsave}}' - - '{{Game data/saves|Windows|{{p|game}}\save\}}' + - "{{Game data/config|Windows|{{p|game}}\\save\\config.rpgsave}}" + - "{{Game data/saves|Windows|{{p|game}}\\save\\}}" Learn Japanese To Survive! Katakana War: pageId: 56284 steam: 554600 templates: - - '{{Game data/saves|Windows|{{p|game}}\www\save\}}' + - "{{Game data/saves|Windows|{{p|game}}\\www\\save\\}}" Learn Japanese to Survive! Kanji Combat: pageId: 92371 steam: 759440 @@ -92368,8 +89946,8 @@ Learn to Fly 3: pageId: 62026 steam: 589870 templates: - - '{{Game data/config|Windows|{{p|steam}}\userdata\{{p|uid}}\589870\remote}}' - - '{{Game data/saves|Windows|{{p|steam}}\userdata\{{p|uid}}\589870\remote}}' + - "{{Game data/config|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\589870\\remote}}" + - "{{Game data/saves|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\589870\\remote}}" Learning Factory: gog: 1731507098 gogSide: @@ -92385,10 +89963,10 @@ Learning Factory: - 1545760 - 1545770 templates: - - '{{Game data/config|Windows|{{P|game}}\Saves\GLOBAL_DATA|{{P|hkcu}}\Software\Luden.io\LearningFactory\}}' - - '{{Game data/config|Linux|{{P|game}}\Saves\GLOBAL_DATA}}' - - '{{Game data/saves|Windows|{{P|game}}\Saves\}}' - - '{{Game data/saves|Linux|{{P|game}}\Saves\}}' + - "{{Game data/config|Windows|{{P|game}}\\Saves\\GLOBAL_DATA|{{P|hkcu}}\\Software\\Luden.io\\LearningFactory\\}}" + - "{{Game data/config|Linux|{{P|game}}\\Saves\\GLOBAL_DATA}}" + - "{{Game data/saves|Windows|{{P|game}}\\Saves\\}}" + - "{{Game data/saves|Linux|{{P|game}}\\Saves\\}}" Leashed Soul: pageId: 63910 steam: 589850 @@ -92397,9 +89975,9 @@ Leather Goddesses of Phobos: Leather Goddesses of Phobos 2: pageId: 147092 templates: - - '{{Game data/config|DOS|{{p|game}}\LGOP2.BAT}}' - - '{{Game data/saves|DOS|{{p|game}}\*.SAV}}' -'Leave Me Alone: A Trip To Hell': + - "{{Game data/config|DOS|{{p|game}}\\LGOP2.BAT}}" + - "{{Game data/saves|DOS|{{p|game}}\\*.SAV}}" +"Leave Me Alone: A Trip To Hell": pageId: 37891 steam: 444520 Leave the Nest: @@ -92418,10 +89996,10 @@ Leaving Lyndow: pageId: 57218 steam: 585840 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\SOFTWARE\Eastshade Studios\Leaving Lyndow}}' - - '{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/Eastshade Studios/Leaving Lyndow/prefs}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Eastshade Studios\Leaving Lyndow\*.JSON}}' - - '{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/Eastshade Studios/Leaving Lyndow/*.JSON}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\SOFTWARE\\Eastshade Studios\\Leaving Lyndow}}" + - "{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/Eastshade Studios/Leaving Lyndow/prefs}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Eastshade Studios\\Leaving Lyndow\\*.JSON}}" + - "{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/Eastshade Studios/Leaving Lyndow/*.JSON}}" Lectrovolt II: pageId: 36890 steam: 518140 @@ -92434,10 +90012,10 @@ Led It Rain VR: Leder Panzer: pageId: 105067 steam: 837500 -Lee Carvallo's Putting Challenge: +"Lee Carvallo's Putting Challenge": pageId: 161151 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Aaron Demeter\Lee Carvallo''s Putting Challenge\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Aaron Demeter\\Lee Carvallo's Putting Challenge\\}}" Lee inside TV: pageId: 150079 steam: 1170110 @@ -92445,36 +90023,36 @@ Left 4 Dead: pageId: 7 steam: 500 templates: - - '{{Game data/config|Windows|{{p|game}}\left4dead\cfg\config.cfg|{{p|game}}\left4dead\cfg\video.txt}}' + - "{{Game data/config|Windows|{{p|game}}\\left4dead\\cfg\\config.cfg|{{p|game}}\\left4dead\\cfg\\video.txt}}" Left 4 Dead 2: pageId: 144 steam: 550 steamSide: - 322070 templates: - - '{{Game data/config|Windows|{{P|game}}\left4dead2\cfg\}}' - - '{{Game data/saves|Windows|{{p|steam}}\userdata\{{P|uid}}\550\remote\}}' - - '{{Game data/saves|Linux|{{p|steam}}\userdata\{{P|uid}}\550\remote\}}' + - "{{Game data/config|Windows|{{P|game}}\\left4dead2\\cfg\\}}" + - "{{Game data/saves|Windows|{{p|steam}}\\userdata\\{{P|uid}}\\550\\remote\\}}" + - "{{Game data/saves|Linux|{{p|steam}}\\userdata\\{{P|uid}}\\550\\remote\\}}" Left Alive: pageId: 72117 steam: 714370 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\LEFT ALIVE\Steam\}}' - - '{{Game data/saves|Windows|{{p|Steam}}\userdata\{{p|UID}}\714370}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\LEFT ALIVE\\Steam\\}}" + - "{{Game data/saves|Windows|{{p|Steam}}\\userdata\\{{p|UID}}\\714370}}" Left Alone: pageId: 43336 steam: 417750 -'Left Behind 3: Rise of the Antichrist': +"Left Behind 3: Rise of the Antichrist": pageId: 106679 -'Left Behind 4: World at War': +"Left Behind 4: World at War": pageId: 106677 -'Left Behind: Eternal Forces': +"Left Behind: Eternal Forces": pageId: 81424 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Left Behind Games\Eternal Forces\}}' -'Left Behind: Tribulation Forces': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Left Behind Games\\Eternal Forces\\}}" +"Left Behind: Tribulation Forces": pageId: 106673 -'Left in the Dark: No One on Board': +"Left in the Dark: No One on Board": pageId: 49580 steam: 284890 Left&Right: @@ -92486,41 +90064,39 @@ Left-Hand Path: LeftWay: pageId: 66717 steam: 417400 -'Legacy of Dorn: Herald of Oblivion': +"Legacy of Dorn: Herald of Oblivion": pageId: 45429 steam: 389850 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Tin Man Games\gw.heraldofoblivion\}}' -'Legacy of Kain: Blood Omen 2': + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Tin Man Games\\gw.heraldofoblivion\\}}" +"Legacy of Kain: Blood Omen 2": gog: 1207659101 pageId: 36394 steam: 242960 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Crystal Dynamics\Blood Omen 2\}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\Blood Omen 2\Save *\}}' -'Legacy of Kain: Defiance': + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Crystal Dynamics\\Blood Omen 2\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\Blood Omen 2\\Save *\\}}" +"Legacy of Kain: Defiance": gog: 1207659088 pageId: 36392 steam: 224300 templates: - - >- - {{Game data/config|Windows|{{P|userprofile\Documents}}\Legacy of Kain - Defiance\|{{p|hkcu}}\Software\Crystal - Dynamics\Legacy of Kain: Defiance\1.00.000}} - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\Legacy of Kain - Defiance\}}' -'Legacy of Kain: Soul Reaver': + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\Legacy of Kain - Defiance\\|{{p|hkcu}}\\Software\\Crystal Dynamics\\Legacy of Kain: Defiance\\1.00.000}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\Legacy of Kain - Defiance\\}}" +"Legacy of Kain: Soul Reaver": gog: 1207659030 pageId: 10198 steam: 224920 templates: - - '{{Game data/config|Windows|{{p|hklm}}\Software\Crystal Dynamics\Legacy of Kain: Soul Reaver\1.00.000}}' - - '{{Game data/saves|Windows|{{P|game}}\savegame.her}}' -'Legacy of Kain: Soul Reaver 2': + - "{{Game data/config|Windows|{{p|hklm}}\\Software\\Crystal Dynamics\\Legacy of Kain: Soul Reaver\\1.00.000}}" + - "{{Game data/saves|Windows|{{P|game}}\\savegame.her}}" +"Legacy of Kain: Soul Reaver 2": gog: 1207659063 pageId: 23452 steam: 224940 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Crystal Dynamics\Soul Reaver 2\1.00.000}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\Soul Reaver 2\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Crystal Dynamics\\Soul Reaver 2\\1.00.000}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\Soul Reaver 2\\}}" Legacy of Lina: pageId: 114388 steam: 940830 @@ -92528,30 +90104,30 @@ Legacy of Lunatic Kingdom: pageId: 33023 steam: 937580 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/saves|Windows|{{p|game}}\}}' + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\}}" Legacy of Medieval: pageId: 72292 steam: 718050 Legacy of the Elder Star: pageId: 42649 steam: 443250 -'Legacy: Witch Island 2': +"Legacy: Witch Island 2": pageId: 167525 steam: 1423200 -'Legacy: Witch Island Origin': +"Legacy: Witch Island Origin": pageId: 169079 Legal Dungeon: pageId: 128417 steam: 1013750 -'Legena: Union Tides': +"Legena: Union Tides": pageId: 46128 steam: 401550 Legend: pageId: 72473 templates: - - '{{Game data/config|DOS|{{p|game}}\legend.cfg}}' - - '{{Game data/saves|DOS|{{p|game}}\LEGEND0*.SAV}}' + - "{{Game data/config|DOS|{{p|game}}\\legend.cfg}}" + - "{{Game data/saves|DOS|{{p|game}}\\LEGEND0*.SAV}}" Legend (1994): gog: 1104688728 pageId: 45676 @@ -92569,13 +90145,13 @@ Legend Knight: Legend of Ares: pageId: 59490 steam: 536950 -'Legend of Assassin: Egypt': +"Legend of Assassin: Egypt": pageId: 109958 steam: 918870 -'Legend of Assassin: Jungle': +"Legend of Assassin: Jungle": pageId: 110600 steam: 929690 -'Legend of Assassin: Siberia': +"Legend of Assassin: Siberia": pageId: 110378 steam: 925610 Legend of Cenama: @@ -92591,11 +90167,11 @@ Legend of Dungeon: pageId: 10226 steam: 238280 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\RobotLovesKitty\Legend of Dungeon}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/RobotLovesKitty/Legend of Dungeon/prefs}}' - - '{{Game data/saves|Windows|{{p|game}}\LegendofDungeon_Data\save.txt}}' - - '{{Game data/saves|Linux|{{p|game}}\LegendofDungeon_Data\save.txt}}' -'Legend of Dungeon: Masters': + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\RobotLovesKitty\\Legend of Dungeon}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/RobotLovesKitty/Legend of Dungeon/prefs}}" + - "{{Game data/saves|Windows|{{p|game}}\\LegendofDungeon_Data\\save.txt}}" + - "{{Game data/saves|Linux|{{p|game}}\\LegendofDungeon_Data\\save.txt}}" +"Legend of Dungeon: Masters": pageId: 45469 steam: 405980 Legend of Egypt - Pharaohs Garden: @@ -92610,8 +90186,8 @@ Legend of Fae: Legend of Faerghail: pageId: 74743 templates: - - '{{Game data/saves|DOS|{{p|game}}\GAMES\|{{p|game}}\ROST\ROST}}' -'Legend of Fainn Dynasty: Battles of Beautiful Warlords': + - "{{Game data/saves|DOS|{{p|game}}\\GAMES\\|{{p|game}}\\ROST\\ROST}}" +"Legend of Fainn Dynasty: Battles of Beautiful Warlords": pageId: 72979 steam: 720240 Legend of Girl Friend And GDC: @@ -92622,20 +90198,20 @@ Legend of Grimrock: pageId: 2106 steam: 207170 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Almost Human\Legend of Grimrock\grimrock.cfg}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Almost Human/Legend of Grimrock/}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/Almost Human/Legend of Grimrock/}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Almost Human\Legend of Grimrock\*.sav}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Almost Human/Legend of Grimrock/}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/Almost Human/Legend of Grimrock/}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Almost Human\\Legend of Grimrock\\grimrock.cfg}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Almost Human/Legend of Grimrock/}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/Almost Human/Legend of Grimrock/}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Almost Human\\Legend of Grimrock\\*.sav}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Almost Human/Legend of Grimrock/}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/Almost Human/Legend of Grimrock/}}" Legend of Grimrock 2: gog: 1207666193 pageId: 21186 steam: 251730 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Almost Human\Legend of Grimrock 2\grimrock.cfg}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Almost Human\Legend of Grimrock 2\*.sav}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Almost Human/Legend of Grimrock 2/}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Almost Human\\Legend of Grimrock 2\\grimrock.cfg}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Almost Human\\Legend of Grimrock 2\\*.sav}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Almost Human/Legend of Grimrock 2/}}" Legend of Hand: pageId: 72513 steam: 595560 @@ -92643,7 +90219,7 @@ Legend of Himari: pageId: 89385 steam: 634340 templates: - - '{{Game data/saves|Windows|{{p|localappdata}}\Legend_of_Himari\*}}' + - "{{Game data/saves|Windows|{{p|localappdata}}\\Legend_of_Himari\\*}}" Legend of Homebody: pageId: 105319 steam: 744260 @@ -92652,20 +90228,20 @@ Legend of Kay Anniversary: pageId: 25113 steam: 313810 templates: - - '{{Game data/config|Windows|{{p|appdata}}\kaiko\legendofkay\config.ini}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\Saved Games\legendofkay.exe\}}' - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\313810\remote\autocloud\save\}}' + - "{{Game data/config|Windows|{{p|appdata}}\\kaiko\\legendofkay\\config.ini}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Saved Games\\legendofkay.exe\\}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\313810\\remote\\autocloud\\save\\}}" Legend of Keepers: gog: 1208434383 pageId: 122898 renamedFrom: - - 'Legend of Keepers: Career of a Dungeon Master' + - "Legend of Keepers: Career of a Dungeon Master" steam: 978520 templates: - - '{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/GoblinzStudio/LegendOfKeepers/legendofkeepers/settings.json}}' - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\GoblinzStudio\LegendOfKeepers\legendofkeepers}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/GoblinzStudio/LegendOfKeepers/legendofkeepers}}' - - '{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/GoblinzStudio/LegendOfKeepers/legendofkeepers}}' + - "{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/GoblinzStudio/LegendOfKeepers/legendofkeepers/settings.json}}" + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\GoblinzStudio\\LegendOfKeepers\\legendofkeepers}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/GoblinzStudio/LegendOfKeepers/legendofkeepers}}" + - "{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/GoblinzStudio/LegendOfKeepers/legendofkeepers}}" Legend of Long Night: pageId: 91876 steam: 765790 @@ -92676,8 +90252,8 @@ Legend of Mana: pageId: 166729 steam: 1175830 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\My Games\Legend of Mana\Steam\{{p|UID}}\}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\My Games\Legend of Mana\Steam\{{p|UID}}\}}' + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\My Games\\Legend of Mana\\Steam\\{{p|UID}}\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\My Games\\Legend of Mana\\Steam\\{{p|UID}}\\}}" Legend of Merchant: pageId: 52538 steam: 543140 @@ -92694,7 +90270,7 @@ Legend of Mysteria: pageId: 46108 steam: 407230 templates: - - '{{Game data/saves|Windows|{{p|game}}\*.rvdata2}}' + - "{{Game data/saves|Windows|{{p|game}}\\*.rvdata2}}" Legend of Numbers: pageId: 42742 steam: 485760 @@ -92721,29 +90297,29 @@ Legend of the Sword: Legend of the Tetrarchs: pageId: 135602 steam: 1040740 -'Legend: Hand of God': +"Legend: Hand of God": pageId: 41295 steam: 12630 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Legend - Hand of God\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Legend - Hand of God\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Legend - Hand of God\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Legend - Hand of God\\}}" Legendary: pageId: 12941 steam: 16730 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Legendary\PandoraGame\Config\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Legendary\PandoraGame\Checkpoints\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Legendary\\PandoraGame\\Config\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Legendary\\PandoraGame\\Checkpoints\\}}" Legendary Arcane: pageId: 75417 steam: 673550 Legendary DXP: pageId: 80348 steam: 734020 -'Legendary Eleven: Epic Football': +"Legendary Eleven: Epic Football": pageId: 94435 steam: 839300 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Eclipse Games\LegendaryEleven}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Eclipse Games\\LegendaryEleven}}" Legendary Gary: pageId: 78558 steam: 688070 @@ -92766,31 +90342,31 @@ Legends of Aethereus: pageId: 40583 steam: 248410 templates: - - '{{Game data/config|Windows|{{p|game}}\Settings.ini}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Threegates\Legends of Aethereus\}}' -'Legends of Amberland: The Forgotten Crown': + - "{{Game data/config|Windows|{{p|game}}\\Settings.ini}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Threegates\\Legends of Aethereus\\}}" +"Legends of Amberland: The Forgotten Crown": gog: 1539401055 pageId: 126253 steam: 873890 templates: - - '{{Game data/config|Windows|{{P|appdata}}\Legends of Amberland\config.ini}}' - - '{{Game data/saves|Windows|{{P|appdata}}\Legends of Amberland\save\}}' + - "{{Game data/config|Windows|{{P|appdata}}\\Legends of Amberland\\config.ini}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\Legends of Amberland\\save\\}}" Legends of Aria: pageId: 122386 steam: 594770 -'Legends of Atlantis: Exodus': +"Legends of Atlantis: Exodus": pageId: 46568 steam: 347520 templates: - - '{{Game data/config|Windows|{{P|appdata}}\LegacyGames\Atlantis\config.vsc}}' - - '{{Game data/saves|Windows|{{P|appdata}}\LegacyGames\Atlantis\profile*.vsc}}' + - "{{Game data/config|Windows|{{P|appdata}}\\LegacyGames\\Atlantis\\config.vsc}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\LegacyGames\\Atlantis\\profile*.vsc}}" Legends of Azulgar: pageId: 36163 steam: 503010 Legends of Callasia: pageId: 33724 steam: 438920 -'Legends of Catalonia: The Land of Barcelona': +"Legends of Catalonia: The Land of Barcelona": pageId: 136651 steam: 1084050 Legends of Dawn Reborn: @@ -92801,7 +90377,7 @@ Legends of Eisenwald: pageId: 33426 steam: 246760 templates: - - '{{Game data/saves|Windows|{{p|localappdata}}\Eisenwald\*.sav}}' + - "{{Game data/saves|Windows|{{p|localappdata}}\\Eisenwald\\*.sav}}" Legends of Ellaria: pageId: 65317 steam: 621070 @@ -92811,7 +90387,7 @@ Legends of Ethernal: Legends of Iona RPG: pageId: 68831 steam: 668730 -'Legends of Iskaria: Days of Thieves': +"Legends of Iskaria: Days of Thieves": pageId: 65223 steam: 664530 Legends of Kingdom Rush: @@ -92823,14 +90399,12 @@ Legends of Koyannis: Legends of Might and Magic: pageId: 61171 templates: - - >- - {{Game data/config|Windows|{{p|game}}\autoexec.cfg|{{p|hklm}}\SOFTWARE\{{p|wow64}}\New World Computing\Legends of - Might and Magic\1.0}} -'Legends of Murder II: Grey Haven': + - "{{Game data/config|Windows|{{p|game}}\\autoexec.cfg|{{p|hklm}}\\SOFTWARE\\{{p|wow64}}\\New World Computing\\Legends of Might and Magic\\1.0}}" +"Legends of Murder II: Grey Haven": gog: 1757409730 pageId: 171913 steam: 1749710 -'Legends of Murder: Volume 1 - Stonedale Castle': +"Legends of Murder: Volume 1 - Stonedale Castle": gog: 1757409730 pageId: 171911 steam: 1749710 @@ -92846,14 +90420,14 @@ Legends of Pixelia: Legends of Runeterra: pageId: 151813 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Riot Games\Legends of Runeterra}}' -'Legends of Solitaire: Curse of the Dragons': + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Riot Games\\Legends of Runeterra}}" +"Legends of Solitaire: Curse of the Dragons": pageId: 46272 steam: 399040 templates: - - '{{Game data/config|Windows|{{p|PROGRAMDATA}}\The Revills Games\Legends of Solitaire 2 SE\LoSCotD.ini}}' - - '{{Game data/saves|Windows|{{p|PROGRAMDATA}}\The Revills Games\Legends of Solitaire 2 SE\}}' -'Legends of Talia: Arcadia': + - "{{Game data/config|Windows|{{p|PROGRAMDATA}}\\The Revills Games\\Legends of Solitaire 2 SE\\LoSCotD.ini}}" + - "{{Game data/saves|Windows|{{p|PROGRAMDATA}}\\The Revills Games\\Legends of Solitaire 2 SE\\}}" +"Legends of Talia: Arcadia": pageId: 74145 steam: 729530 Legends of Time: @@ -92862,12 +90436,12 @@ Legends of Time: Legends of Valour: pageId: 75243 templates: - - '{{Game data/config|DOS|{{p|game}}\SNDDVR}}' - - '{{Game data/saves|DOS|{{p|game}}\LOV1_*.SAV|{{p|game}}\CHAR**.DAT|{{p|game}}\_SAVE_0.LBM}}' + - "{{Game data/config|DOS|{{p|game}}\\SNDDVR}}" + - "{{Game data/saves|DOS|{{p|game}}\\LOV1_*.SAV|{{p|game}}\\CHAR**.DAT|{{p|game}}\\_SAVE_0.LBM}}" Legends of the Universe - Cosmic Bounty: pageId: 77331 steam: 698040 -'Legends of the Universe: StarCore': +"Legends of the Universe: StarCore": pageId: 42093 steam: 482330 Legie: @@ -92879,8 +90453,8 @@ Legion: pageId: 157531 steam: 1284080 templates: - - '{{Game data/config|Windows|{{p|game}}\data\}}' - - '{{Game data/saves|Windows|{{p|game}}\Save Games\}}' + - "{{Game data/config|Windows|{{p|game}}\\data\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\Save Games\\}}" Legion 51: pageId: 149333 steam: 1158280 @@ -92893,7 +90467,7 @@ Legion Tale: Legion of Scorn: pageId: 135439 steam: 1073710 -Legion's Crawl: +"Legion's Crawl": pageId: 102429 steam: 885780 Legioncraft: @@ -92911,38 +90485,38 @@ Legions of Steel: Legions of Tyrandel: pageId: 53958 steam: 537020 -'Legions: Overdrive': +"Legions: Overdrive": pageId: 12989 templates: - - '{{Game data/config|Windows|{{p|game}}\legions\preferences}}' -'Legionwood 1: Tale of the Two Swords': + - "{{Game data/config|Windows|{{p|game}}\\legions\\preferences}}" +"Legionwood 1: Tale of the Two Swords": pageId: 38545 steam: 461820 -'Legionwood 2: Rise of the Eternal''s Realm - Director''s Cut': +"Legionwood 2: Rise of the Eternal's Realm - Director's Cut": pageId: 50252 steam: 290460 templates: - - '{{Game data/saves|Windows|{{P|game}}\Save{{code|##}}.rvdata2}}' + - "{{Game data/saves|Windows|{{P|game}}\\Save{{code|##}}.rvdata2}}" Lego 2K Drive: pageId: 185998 steam: 1451810 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\My Games\Artemis\Saved\Config\WindowsClient}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\My Games\Artemis\Saved\SaveGames}}' + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\My Games\\Artemis\\Saved\\Config\\WindowsClient}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\My Games\\Artemis\\Saved\\SaveGames}}" Lego Alpha Team: pageId: 64378 templates: - - '{{Game data/config|Windows|{{P|game}}\Game.txt}}' -'Lego Batman 2: DC Super Heroes': + - "{{Game data/config|Windows|{{P|game}}\\Game.txt}}" +"Lego Batman 2: DC Super Heroes": gog: 1193585573 pageId: 3075 steam: 213330 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Warner Bros. Interactive Entertainment\LEGO Batman 2\}}' - - '{{Game data/config|OS X|{{P|osxhome}}/Library/Application Support/Feral Interactive/LEGO Batman 2/}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Warner Bros. Interactive Entertainment\LEGO Batman 2\SavedGames\}}' - - '{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/Feral Interactive/LEGO Batman 2/SavedGames/}}' -'Lego Batman 3: Beyond Gotham': + - "{{Game data/config|Windows|{{p|appdata}}\\Warner Bros. Interactive Entertainment\\LEGO Batman 2\\}}" + - "{{Game data/config|OS X|{{P|osxhome}}/Library/Application Support/Feral Interactive/LEGO Batman 2/}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Warner Bros. Interactive Entertainment\\LEGO Batman 2\\SavedGames\\}}" + - "{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/Feral Interactive/LEGO Batman 2/SavedGames/}}" +"Lego Batman 3: Beyond Gotham": gog: 1597568554 gogSide: - 1657813519 @@ -92950,22 +90524,20 @@ Lego Alpha Team: pageId: 20834 steam: 313690 templates: - - '{{Game data/config|Windows|{{P|appdata}}\Warner Bros. Interactive Entertainment\LEGO Batman 3 Beyond Gotham\}}' - - '{{Game data/config|OS X|{{P|osxhome}}/Library/Application Support/Feral Interactive/LEGO Batman 3/}}' - - >- - {{Game data/saves|Windows|{{P|appdata}}\Warner Bros. Interactive Entertainment\LEGO Batman 3 Beyond - Gotham\SavedGames\}} - - '{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/Feral Interactive/LEGO Batman 3/SaveData/}}' - - '{{Game data/saves|Steam|{{P|steam}}\userdata\{{p|uid}}\313690\remote\savedgames\}}' -'Lego Batman: The Videogame': + - "{{Game data/config|Windows|{{P|appdata}}\\Warner Bros. Interactive Entertainment\\LEGO Batman 3 Beyond Gotham\\}}" + - "{{Game data/config|OS X|{{P|osxhome}}/Library/Application Support/Feral Interactive/LEGO Batman 3/}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\Warner Bros. Interactive Entertainment\\LEGO Batman 3 Beyond Gotham\\SavedGames\\}}" + - "{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/Feral Interactive/LEGO Batman 3/SaveData/}}" + - "{{Game data/saves|Steam|{{P|steam}}\\userdata\\{{p|uid}}\\313690\\remote\\savedgames\\}}" +"Lego Batman: The Videogame": gog: 1423058542 pageId: 3098 steam: 21000 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Warner Bros. Interactive Entertainment\LEGO Batman}}' - - '{{Game data/config|OS X|{{P|osxhome}}/Library/Preferences/Feral Interactive/Lego Batman/}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Warner Bros. Interactive Entertainment\LEGO Batman\Saved Games}}' - - '{{Game data/saves|OS X|{{P|osxhome}}/Library/Preferences/Feral Interactive/Lego Batman/Saved Games/}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Warner Bros. Interactive Entertainment\\LEGO Batman}}" + - "{{Game data/config|OS X|{{P|osxhome}}/Library/Preferences/Feral Interactive/Lego Batman/}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Warner Bros. Interactive Entertainment\\LEGO Batman\\Saved Games}}" + - "{{Game data/saves|OS X|{{P|osxhome}}/Library/Preferences/Feral Interactive/Lego Batman/Saved Games/}}" Lego Brawls: pageId: 148381 steam: 1731460 @@ -92974,34 +90546,34 @@ Lego Bricktales: pageId: 181561 steam: 1898290 templates: - - '{{Game data/config|Windows|{{P|userprofile\appdata\locallow}}\ClockStone Software GmbH\LEGO Bricktales}}' - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\ClockStone Software GmbH\LEGO Bricktales}}' -Lego Builder's Journey: + - "{{Game data/config|Windows|{{P|userprofile\\appdata\\locallow}}\\ClockStone Software GmbH\\LEGO Bricktales}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\ClockStone Software GmbH\\LEGO Bricktales}}" +"Lego Builder's Journey": pageId: 154806 steam: 1544360 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\LEGO System A/S\Builder''s Journey\}}' - - '{{Game data/saves|Windows|{{p|hkcu}}\Software\LEGO System A/S\Builder''s Journey\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\LEGO System A/S\\Builder's Journey\\}}" + - "{{Game data/saves|Windows|{{p|hkcu}}\\Software\\LEGO System A/S\\Builder's Journey\\}}" Lego Chess: pageId: 8343 templates: - - '{{Game data/config|Windows|{{p|game}}\profiles\prof1.lcp}}' - - '{{Game data/saves|Windows|{{p|game}}\profiles}}' + - "{{Game data/config|Windows|{{p|game}}\\profiles\\prof1.lcp}}" + - "{{Game data/saves|Windows|{{p|game}}\\profiles}}" Lego City Undercover: pageId: 53786 steam: 578330 templates: - - '{{Game data/config|Windows|{{P|appdata}}\Warner Bros. Interactive Entertainment\LEGO City Undercover\}}' - - '{{Game data/saves|Steam|{{P|steam}}\userdata\{{P|uid}}\578330\remote\savedgames\}}' + - "{{Game data/config|Windows|{{P|appdata}}\\Warner Bros. Interactive Entertainment\\LEGO City Undercover\\}}" + - "{{Game data/saves|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\578330\\remote\\savedgames\\}}" Lego Creator: pageId: 7797 templates: - - '{{Game data/saves|Windows|{{p|game}}\Content\mymodels
{{p|game}}\Content\myworlds}}' -'Lego Creator: Knights'' Kingdom': + - "{{Game data/saves|Windows|{{p|game}}\\Content\\mymodels
{{p|game}}\\Content\\myworlds}}" +"Lego Creator: Knights' Kingdom": pageId: 148264 templates: - - '{{Game data/config|Windows|{{p|game}}\options.ocf}}' - - '{{Game data/saves|Windows|{{p|game}}\Players\}}' + - "{{Game data/config|Windows|{{p|game}}\\options.ocf}}" + - "{{Game data/saves|Windows|{{p|game}}\\Players\\}}" Lego DC Super-Villains: gog: 1700723103 gogSide: @@ -93017,271 +90589,225 @@ Lego DC Super-Villains: pageId: 96133 steam: 829110 templates: - - >- - {{Game data/config|Windows|{{p|AppData}}\Warner Bros. Interactive Entertainment\LEGO DC - Super-villains\PCCONFIG.TXT}} - - '{{Game data/config|OS X|{{P|osxhome}}/Library/Application Support/Feral Interactive/LEGO DC Super-Villains/}}' - - >- - {{Game data/saves|Windows|{{p|AppData}}\Warner Bros. Interactive Entertainment\LEGO DC - Super-villains\SAVEDGAMES\}} - - >- - {{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/Feral Interactive/LEGO DC - Super-Villains/SaveData/SAVEDGAMES/}} + - "{{Game data/config|Windows|{{p|AppData}}\\Warner Bros. Interactive Entertainment\\LEGO DC Super-villains\\PCCONFIG.TXT}}" + - "{{Game data/config|OS X|{{P|osxhome}}/Library/Application Support/Feral Interactive/LEGO DC Super-Villains/}}" + - "{{Game data/saves|Windows|{{p|AppData}}\\Warner Bros. Interactive Entertainment\\LEGO DC Super-villains\\SAVEDGAMES\\}}" + - "{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/Feral Interactive/LEGO DC Super-Villains/SaveData/SAVEDGAMES/}}" Lego Friends: pageId: 106754 templates: - - '{{Game data/saves|Windows|{{p|game}}\}}' -'Lego Harry Potter: Years 1-4': + - "{{Game data/saves|Windows|{{p|game}}\\}}" +"Lego Harry Potter: Years 1-4": gog: 1423058817 pageId: 11791 steam: 21130 templates: - - '{{Game data/config|Windows|{{P|appdata}}\WB Games\LEGO® Harry Potter™\pcconfig.txt}}' - - '{{Game data/config|OS X|{{P|osxhome}}/Library/Preferences/Feral Interactive/LEGO Harry Potter/}}' - - '{{Game data/saves|Windows|{{P|appdata}}\WB Games\LEGO® Harry Potter™\SavedGames\}}' - - '{{Game data/saves|OS X|{{P|osxhome}}/Library/Preferences/Feral Interactive/LEGO Harry Potter/SavedGames/}}' -'Lego Harry Potter: Years 5-7': + - "{{Game data/config|Windows|{{P|appdata}}\\WB Games\\LEGO® Harry Potter™\\pcconfig.txt}}" + - "{{Game data/config|OS X|{{P|osxhome}}/Library/Preferences/Feral Interactive/LEGO Harry Potter/}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\WB Games\\LEGO® Harry Potter™\\SavedGames\\}}" + - "{{Game data/saves|OS X|{{P|osxhome}}/Library/Preferences/Feral Interactive/LEGO Harry Potter/SavedGames/}}" +"Lego Harry Potter: Years 5-7": gog: 1423058931 pageId: 4071 steam: 204120 templates: - - '{{Game data/config|Windows|{{P|appdata}}\WB Games\LEGO Harry Potter 2\}}' - - '{{Game data/config|OS X|{{P|osxhome}}/Library/Application Support/Feral Interactive/LEGO Harry Potter Years 5-7/}}' - - '{{Game data/saves|Windows|{{P|appdata}}\WB Games\LEGO Harry Potter 2\SavedGames\}}' - - >- - {{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/Feral Interactive/LEGO Harry Potter Years - 5-7/SavedGames/}} -'Lego Indiana Jones 2: The Adventure Continues': + - "{{Game data/config|Windows|{{P|appdata}}\\WB Games\\LEGO Harry Potter 2\\}}" + - "{{Game data/config|OS X|{{P|osxhome}}/Library/Application Support/Feral Interactive/LEGO Harry Potter Years 5-7/}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\WB Games\\LEGO Harry Potter 2\\SavedGames\\}}" + - "{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/Feral Interactive/LEGO Harry Potter Years 5-7/SavedGames/}}" +"Lego Indiana Jones 2: The Adventure Continues": gog: 1432943043 pageId: 12542 steam: 32450 templates: - - '{{Game data/config|Windows|{{P|appdata}}\LucasArts\LEGO® Indiana Jones™ 2\pcconfig.txt}}' - - '{{Game data/config|OS X|{{P|osxhome}}/Library/Application Support/Feral Interactive/LEGO Indiana Jones 2/}}' - - '{{Game data/saves|Windows|{{P|appdata}}\LucasArts\LEGO® Indiana Jones™ 2\SavedGames\}}' - - >- - {{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/Feral Interactive/LEGO Indiana Jones - 2/SavedGames/}} -'Lego Indiana Jones: The Original Adventures': + - "{{Game data/config|Windows|{{P|appdata}}\\LucasArts\\LEGO® Indiana Jones™ 2\\pcconfig.txt}}" + - "{{Game data/config|OS X|{{P|osxhome}}/Library/Application Support/Feral Interactive/LEGO Indiana Jones 2/}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\LucasArts\\LEGO® Indiana Jones™ 2\\SavedGames\\}}" + - "{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/Feral Interactive/LEGO Indiana Jones 2/SavedGames/}}" +"Lego Indiana Jones: The Original Adventures": gog: 1194227151 pageId: 12539 steam: 32330 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\LucasArts\LEGOIndianaJones\}}' - - '{{Game data/config|OS X|{{P|osxhome}}/Library/Preferences/Lucasarts/LEGOIndianaJones/}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\LucasArts\LEGOIndianaJones\SavedGames\}}' - - '{{Game data/saves|OS X|{{P|osxhome}}/Library/Preferences/Lucasarts/LEGOIndianaJones/SavedGames/}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\LucasArts\\LEGOIndianaJones\\}}" + - "{{Game data/config|OS X|{{P|osxhome}}/Library/Preferences/Lucasarts/LEGOIndianaJones/}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\LucasArts\\LEGOIndianaJones\\SavedGames\\}}" + - "{{Game data/saves|OS X|{{P|osxhome}}/Library/Preferences/Lucasarts/LEGOIndianaJones/SavedGames/}}" Lego Island: pageId: 6644 templates: - - '{{Game data/config|Windows|{{p|hklm}}\SOFTWARE\{{p|wow64}}\Mindscape\LEGO Island}}' - - '{{Game data/saves|Windows|{{p|game}}\}}' -'Lego Island 2: The Brickster''s Revenge': + - "{{Game data/config|Windows|{{p|hklm}}\\SOFTWARE\\{{p|wow64}}\\Mindscape\\LEGO Island}}" + - "{{Game data/saves|Windows|{{p|game}}\\}}" +"Lego Island 2: The Brickster's Revenge": pageId: 34930 templates: - - '{{Game data/config|Windows|{{p|game}}\_data\Settings.set}}' - - '{{Game data/saves|Windows|{{p|game}}\_data\Save00.lgo}}' + - "{{Game data/config|Windows|{{p|game}}\\_data\\Settings.set}}" + - "{{Game data/saves|Windows|{{p|game}}\\_data\\Save00.lgo}}" Lego Jurassic World: pageId: 23043 steam: 352400 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Warner Bros. Interactive Entertainment\LEGO Jurassic World\pcconfig.txt}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application\ Support/Feral\ Interactive/LEGO\ Jurassic\ World/}}' - - >- - {{Game data/saves|OS X|{{p|osxhome}}/Library/Application\ Support/Feral\ Interactive/LEGO\ Jurassic\ - World/SaveData/}} - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/352400/}}' -'Lego Legacy: Heroes Unboxed': + - "{{Game data/config|Windows|{{p|appdata}}\\Warner Bros. Interactive Entertainment\\LEGO Jurassic World\\pcconfig.txt}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application\\ Support/Feral\\ Interactive/LEGO\\ Jurassic\\ World/}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application\\ Support/Feral\\ Interactive/LEGO\\ Jurassic\\ World/SaveData/}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/352400/}}" +"Lego Legacy: Heroes Unboxed": pageId: 166617 Lego Loco: pageId: 7943 templates: - - '{{Game data/config|Windows|{{p|game}}\Exe\LEGO.INI|{{p|game}}\art-res\EE.INI}}' - - '{{Game data/saves|Windows|{{p|game}}\art-res\}}' + - "{{Game data/config|Windows|{{p|game}}\\Exe\\LEGO.INI|{{p|game}}\\art-res\\EE.INI}}" + - "{{Game data/saves|Windows|{{p|game}}\\art-res\\}}" Lego Marvel Super Heroes: pageId: 11769 steam: 249130 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Warner Bros. Interactive Entertainment\LEGO MARVEL Super Heroes\}}' - - '{{Game data/config|OS X|{{P|osxhome}}/Library/Application Support/Feral Interactive/LEGO Marvel Super Heroes/}}' - - '{{Game data/saves|Windows|{{p|steam}}\userdata\{{p|uid}}\249130\remote\savedgames\}}' - - >- - {{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/Feral Interactive/LEGO Marvel Super - Heroes/SaveData/}} + - "{{Game data/config|Windows|{{p|appdata}}\\Warner Bros. Interactive Entertainment\\LEGO MARVEL Super Heroes\\}}" + - "{{Game data/config|OS X|{{P|osxhome}}/Library/Application Support/Feral Interactive/LEGO Marvel Super Heroes/}}" + - "{{Game data/saves|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\249130\\remote\\savedgames\\}}" + - "{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/Feral Interactive/LEGO Marvel Super Heroes/SaveData/}}" Lego Marvel Super Heroes 2: pageId: 63367 steam: 647830 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Warner Bros. Interactive Entertainment\LEGO Marvel Super Heroes 2\}}' - - '{{Game data/config|OS X|{{P|osxhome}}/Library/Application Support/Feral Interactive/LEGO Marvel Super Heroes 2/}}' - - >- - {{Game data/saves|Windows|{{p|appdata}}\Warner Bros. Interactive Entertainment\LEGO Marvel Super Heroes - 2\SAVEDGAMES\}} - - >- - {{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/Feral Interactive/LEGO Marvel Super Heroes - 2/SaveData/}} -Lego Marvel's Avengers: + - "{{Game data/config|Windows|{{p|appdata}}\\Warner Bros. Interactive Entertainment\\LEGO Marvel Super Heroes 2\\}}" + - "{{Game data/config|OS X|{{P|osxhome}}/Library/Application Support/Feral Interactive/LEGO Marvel Super Heroes 2/}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Warner Bros. Interactive Entertainment\\LEGO Marvel Super Heroes 2\\SAVEDGAMES\\}}" + - "{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/Feral Interactive/LEGO Marvel Super Heroes 2/SaveData/}}" +"Lego Marvel's Avengers": pageId: 23045 steam: 405310 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Warner Bros. Interactive Entertainment\LEGO MARVEL''s Avengers\}}' - - '{{Game data/config|OS X|{{P|osxhome}}/Library/Application Support/Feral Interactive/LEGO Marvel''s Avengers/}}' - - '{{Game data/saves|Windows|{{p|steam}}\userdata\{{p|uid}}\405310\remote\savedgames\}}' - - >- - {{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/Feral Interactive/LEGO Marvel's - Avengers/SaveData/}} -'Lego My Style: Kindergarten': + - "{{Game data/config|Windows|{{p|appdata}}\\Warner Bros. Interactive Entertainment\\LEGO MARVEL's Avengers\\}}" + - "{{Game data/config|OS X|{{P|osxhome}}/Library/Application Support/Feral Interactive/LEGO Marvel's Avengers/}}" + - "{{Game data/saves|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\405310\\remote\\savedgames\\}}" + - "{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/Feral Interactive/LEGO Marvel's Avengers/SaveData/}}" +"Lego My Style: Kindergarten": pageId: 107076 -'Lego My Style: Preschool': +"Lego My Style: Preschool": pageId: 106760 -'Lego Pirates of the Caribbean: The Video Game': +"Lego Pirates of the Caribbean: The Video Game": gog: 1976029387 pageId: 20882 steam: 311770 templates: - - '{{Game data/config|Windows|{{p|appdata}}\DisneyInteractiveStudios\LEGOPirates\}}' - - '{{Game data/config|OS X|{{P|osxhome}}/Library/Application Support/DisneyInteractiveStudios/LEGOPirates/}}' - - '{{Game data/saves|Windows|{{p|appdata}}\DisneyInteractiveStudios\LEGOPirates\SavedGames\}}' - - >- - {{Game data/saves|OS X|{{P|osxhome}}/Library/Application - Support/DisneyInteractiveStudios/LEGOPirates/SavedGames/}} - - '{{Game data/saves|Steam|{{P|Steam}}/userdata/{{P|uid}}/311770/}}' + - "{{Game data/config|Windows|{{p|appdata}}\\DisneyInteractiveStudios\\LEGOPirates\\}}" + - "{{Game data/config|OS X|{{P|osxhome}}/Library/Application Support/DisneyInteractiveStudios/LEGOPirates/}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\DisneyInteractiveStudios\\LEGOPirates\\SavedGames\\}}" + - "{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/DisneyInteractiveStudios/LEGOPirates/SavedGames/}}" + - "{{Game data/saves|Steam|{{P|Steam}}/userdata/{{P|uid}}/311770/}}" Lego Portal Racers: pageId: 169789 Lego Racers: pageId: 4937 templates: - - '{{Game data/config|Windows|{{p|game}}\Save\}}' - - '{{Game data/saves|Windows|{{p|game}}\Save\}}' + - "{{Game data/config|Windows|{{p|game}}\\Save\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\Save\\}}" Lego Racers 2: pageId: 7941 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\games\LEGO Racers 2\Saved Games\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\games\LEGO Racers 2\Saved Games\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\games\\LEGO Racers 2\\Saved Games\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\games\\LEGO Racers 2\\Saved Games\\}}" Lego Rock Raiders: pageId: 4218 templates: - - '{{Game data/config|Windows|{{p|game}}|{{p|hklm}}\SOFTWARE\Lego Media\Games\Rock Raiders}}' - - '{{Game data/saves|Windows|{{p|game}}\Data\Save}}' + - "{{Game data/config|Windows|{{p|game}}|{{p|hklm}}\\SOFTWARE\\Lego Media\\Games\\Rock Raiders}}" + - "{{Game data/saves|Windows|{{p|game}}\\Data\\Save}}" Lego Star Wars Battles: pageId: 171134 -'Lego Star Wars II: The Original Trilogy': +"Lego Star Wars II: The Original Trilogy": pageId: 26739 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\LucasArts\LEGO Star Wars II\}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\LucasArts\LEGO Star Wars II\}}' -'Lego Star Wars III: The Clone Wars': + - "{{Game data/config|Windows|{{P|localappdata}}\\LucasArts\\LEGO Star Wars II\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\LucasArts\\LEGO Star Wars II\\}}" +"Lego Star Wars III: The Clone Wars": gog: 2119193622 pageId: 21425 steam: 32510 templates: - - '{{Game data/config|Windows|{{P|appdata}}\Lucasarts\LEGOStarWarsIII\}}' - - >- - {{Game data/config|OS X|{{P|osxhome}}/Library/Application Support/Feral Interactive/LEGO Star Wars III - The Clone - Wars/}} - - '{{Game data/saves|Windows|{{P|appdata}}\Lucasarts\LEGOStarWarsIII\SavedGames\}}' - - >- - {{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/Feral Interactive/LEGO Star Wars III - The Clone - Wars/SavedGames/}} -'Lego Star Wars: Castaways': + - "{{Game data/config|Windows|{{P|appdata}}\\Lucasarts\\LEGOStarWarsIII\\}}" + - "{{Game data/config|OS X|{{P|osxhome}}/Library/Application Support/Feral Interactive/LEGO Star Wars III - The Clone Wars/}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\Lucasarts\\LEGOStarWarsIII\\SavedGames\\}}" + - "{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/Feral Interactive/LEGO Star Wars III - The Clone Wars/SavedGames/}}" +"Lego Star Wars: Castaways": pageId: 172346 -'Lego Star Wars: The Complete Saga': +"Lego Star Wars: The Complete Saga": gog: 1731318270 pageId: 21618 steam: 32440 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\LucasArts\LEGO Star Wars - The Complete Saga\}}' - - >- - {{Game data/config|OS X|{{p|osxhome}}/Library/Preferences/com.feralinteractive.saga.plist/|~/Library/Application - Support/Feral Interactive/LEGO Star Wars Saga/}} - - '{{Game data/saves|Windows|{{P|localappdata}}\LucasArts\LEGO Star Wars - The Complete Saga\SavedGames\}}' - - >- - {{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Feral Interactive/LEGO Star Wars - Saga/SaveData/|~/Library/Application Support/Feral Interactive/LEGO Star Wars - Saga/VFS/User/AppData/Roaming/LucasArts/LEGO Star Wars - The Complete Saga/SavedGames/}} -'Lego Star Wars: The Force Awakens': + - "{{Game data/config|Windows|{{P|localappdata}}\\LucasArts\\LEGO Star Wars - The Complete Saga\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Preferences/com.feralinteractive.saga.plist/|~/Library/Application Support/Feral Interactive/LEGO Star Wars Saga/}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\LucasArts\\LEGO Star Wars - The Complete Saga\\SavedGames\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Feral Interactive/LEGO Star Wars Saga/SaveData/|~/Library/Application Support/Feral Interactive/LEGO Star Wars Saga/VFS/User/AppData/Roaming/LucasArts/LEGO Star Wars - The Complete Saga/SavedGames/}}" +"Lego Star Wars: The Force Awakens": pageId: 31616 steam: 438640 templates: - - >- - {{Game data/config|Windows|{{P|appdata}}\Warner Bros. Interactive Entertainment\LEGO STAR WARS The Force - Awakens\Mappings.dat|{{P|appdata}}\Warner Bros. Interactive Entertainment\LEGO STAR WARS The Force - Awakens\PCCONFIG.TXT}} - - '{{Game data/config|OS X|{{P|osxhome}}/Library/Application Support/Feral Interactive/LEGO STAR WARS - TFA/}}' - - >- - {{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/Feral Interactive/LEGO STAR WARS - - TFA/SaveData/}} - - '{{Game data/saves|Steam|{{P|steam}}/userdata/{{P|uid}}/438640/remote/savedgames/}}' -'Lego Star Wars: The Skywalker Saga': + - "{{Game data/config|Windows|{{P|appdata}}\\Warner Bros. Interactive Entertainment\\LEGO STAR WARS The Force Awakens\\Mappings.dat|{{P|appdata}}\\Warner Bros. Interactive Entertainment\\LEGO STAR WARS The Force Awakens\\PCCONFIG.TXT}}" + - "{{Game data/config|OS X|{{P|osxhome}}/Library/Application Support/Feral Interactive/LEGO STAR WARS - TFA/}}" + - "{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/Feral Interactive/LEGO STAR WARS - TFA/SaveData/}}" + - "{{Game data/saves|Steam|{{P|steam}}/userdata/{{P|uid}}/438640/remote/savedgames/}}" +"Lego Star Wars: The Skywalker Saga": pageId: 138380 steam: 920210 templates: - - >- - {{Game data/config|Windows|{{p|appdata}}\Warner Bros. Interactive Entertainment\LEGO Star Wars - The Skywalker - Saga\PCCONFIG.txt}} - - >- - {{Game data/saves|Windows|{{p|appdata}}\Warner Bros. Interactive Entertainment\LEGO Star Wars - The Skywalker - Saga\SAVEDGAMES\}} - - >- - {{Game data/saves|Microsoft - Store|{{p|localappdata}}\Packages\WarnerBros.Interactive.LEGOStarWarsTheSkywalkerSag_ktmk1xygcecda\SystemAppData\wgs\}} -'Lego Star Wars: The Video Game': + - "{{Game data/config|Windows|{{p|appdata}}\\Warner Bros. Interactive Entertainment\\LEGO Star Wars - The Skywalker Saga\\PCCONFIG.txt}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Warner Bros. Interactive Entertainment\\LEGO Star Wars - The Skywalker Saga\\SAVEDGAMES\\}}" + - "{{Game data/saves|Microsoft Store|{{p|localappdata}}\\Packages\\WarnerBros.Interactive.LEGOStarWarsTheSkywalkerSag_ktmk1xygcecda\\SystemAppData\\wgs\\}}" +"Lego Star Wars: The Video Game": pageId: 3974 templates: - - '{{Game data/config|Windows|{{p|game}}\SWLEGO.BIN}}' - - '{{Game data/saves|Windows|{{p|game}}\lsw_*}}' + - "{{Game data/config|Windows|{{p|game}}\\SWLEGO.BIN}}" + - "{{Game data/saves|Windows|{{p|game}}\\lsw_*}}" Lego Stunt Rally: pageId: 25672 Lego The Hobbit: pageId: 20852 steam: 285160 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Warner Bros. Interactive Entertainment\LEGO The Hobbit\pcconfig.txt}}' - - '{{Game data/config|OS X|{{P|osxhome}}/Library/Application Support/Feral Interactive/LEGO The Hobbit/}}' - - '{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/Feral Interactive/LEGO The Hobbit/SaveData/}}' - - '{{Game data/saves|Steam|{{P|steam}}/userdata/{{P|uid}}/285160/remote/savedgames/}}' + - "{{Game data/config|Windows|{{p|appdata}}\\Warner Bros. Interactive Entertainment\\LEGO The Hobbit\\pcconfig.txt}}" + - "{{Game data/config|OS X|{{P|osxhome}}/Library/Application Support/Feral Interactive/LEGO The Hobbit/}}" + - "{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/Feral Interactive/LEGO The Hobbit/SaveData/}}" + - "{{Game data/saves|Steam|{{P|steam}}/userdata/{{P|uid}}/285160/remote/savedgames/}}" Lego The Incredibles: pageId: 91238 steam: 818320 templates: - - '{{Game data/config|Windows|{{P|appdata}}\Warner Bros. Interactive Entertainment\LEGO The Incredibles\}}' - - '{{Game data/config|OS X|{{P|osxhome}}/Library/Application Support/Feral Interactive/LEGO The Incredibles/}}' - - '{{Game data/saves|Windows|{{P|appdata}}\Warner Bros. Interactive Entertainment\LEGO The Incredibles\SAVEDGAMES\}}' - - >- - {{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/Feral Interactive/LEGO The - Incredibles/SaveData/SAVEDGAMES/}} + - "{{Game data/config|Windows|{{P|appdata}}\\Warner Bros. Interactive Entertainment\\LEGO The Incredibles\\}}" + - "{{Game data/config|OS X|{{P|osxhome}}/Library/Application Support/Feral Interactive/LEGO The Incredibles/}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\Warner Bros. Interactive Entertainment\\LEGO The Incredibles\\SAVEDGAMES\\}}" + - "{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/Feral Interactive/LEGO The Incredibles/SaveData/SAVEDGAMES/}}" Lego The Lord of the Rings: pageId: 4033 steam: 214510 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Warner Bros. Interactive Entertainment\LEGO The Lord of the Rings\}}' - - '{{Game data/config|OS X|{{P|osxhome}}/Library/Application Support/Feral Interactive/LEGO The Lord of the Rings/}}' - - '{{Game data/saves|Windows|{{P|steam}}\userdata\{{P|uid}}\214510\remote\savedgames\}}' - - >- - {{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/Feral Interactive/LEGO The Lord of the - Rings/SavedGames/}} + - "{{Game data/config|Windows|{{p|appdata}}\\Warner Bros. Interactive Entertainment\\LEGO The Lord of the Rings\\}}" + - "{{Game data/config|OS X|{{P|osxhome}}/Library/Application Support/Feral Interactive/LEGO The Lord of the Rings/}}" + - "{{Game data/saves|Windows|{{P|steam}}\\userdata\\{{P|uid}}\\214510\\remote\\savedgames\\}}" + - "{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/Feral Interactive/LEGO The Lord of the Rings/SavedGames/}}" Lego Universe: pageId: 75909 steam: 21140 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\LEGO Software\LEGO Universe\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\LEGO Software\LEGO Universe\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\LEGO Software\\LEGO Universe\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\LEGO Software\\LEGO Universe\\}}" Lego Worlds: pageId: 25466 steam: 332310 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Warner Bros. Interactive Entertainment\LEGOWorlds\}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Warner Bros. Interactive Entertainment\LEGOWorlds\SavedGames\}}' + - "{{Game data/config|Windows|{{p|appdata}}\\Warner Bros. Interactive Entertainment\\LEGOWorlds\\}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Warner Bros. Interactive Entertainment\\LEGOWorlds\\SavedGames\\}}" Legoland: pageId: 3841 templates: - - '{{Game data/config|Windows|{{p|game}}\profiles}}' - - '{{Game data/saves|Windows|{{p|game}}\profiles}}' -'Legrand Legacy: Tale of the Fatebounds': + - "{{Game data/config|Windows|{{p|game}}\\profiles}}" + - "{{Game data/saves|Windows|{{p|game}}\\profiles}}" +"Legrand Legacy: Tale of the Fatebounds": gog: 1335936125 pageId: 53311 steam: 556740 -Leilani's Island: +"Leilani's Island": pageId: 66486 steam: 664640 Leisure Suit Larry - Wet Dreams Dry Twice: @@ -93289,102 +90815,96 @@ Leisure Suit Larry - Wet Dreams Dry Twice: pageId: 162416 steam: 1373430 templates: - - '{{Game data/config|Windows|{{p|HKCU}}\Software\Assemble Entertainment\Leisure Suit Larry - Wet Dreams Dry Twice}}' - - >- - {{Game data/saves|Windows|{{p|HKCU}}\Software\Assemble Entertainment\Leisure Suit Larry - Wet Dreams Dry - Twice\savegames}} -'Leisure Suit Larry 5: Passionate Patti Does a Little Undercover Work': + - "{{Game data/config|Windows|{{p|HKCU}}\\Software\\Assemble Entertainment\\Leisure Suit Larry - Wet Dreams Dry Twice}}" + - "{{Game data/saves|Windows|{{p|HKCU}}\\Software\\Assemble Entertainment\\Leisure Suit Larry - Wet Dreams Dry Twice\\savegames}}" +"Leisure Suit Larry 5: Passionate Patti Does a Little Undercover Work": gog: 1207662073 pageId: 68017 steam: 765860 templates: - - '{{Game data/config|DOS|{{p|game}}\RESOURCE.CFG}}' - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/saves|DOS|{{p|game}}\LSL5SG.*}}' - - '{{Game data/saves|Windows|{{p|game}}\LSL5SG.*}}' -'Leisure Suit Larry 6: Shape Up or Slip Out!': + - "{{Game data/config|DOS|{{p|game}}\\RESOURCE.CFG}}" + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|DOS|{{p|game}}\\LSL5SG.*}}" + - "{{Game data/saves|Windows|{{p|game}}\\LSL5SG.*}}" +"Leisure Suit Larry 6: Shape Up or Slip Out!": gog: 1207659158 pageId: 68060 steam: 765910 templates: - - '{{Game data/config|DOS|{{p|game}}\RESOURCE.CFG}}' - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/saves|DOS|{{p|game}}\LSL6SG.*}}' - - '{{Game data/saves|Windows|{{p|game}}\LSL6SG.*}}' + - "{{Game data/config|DOS|{{p|game}}\\RESOURCE.CFG}}" + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|DOS|{{p|game}}\\LSL6SG.*}}" + - "{{Game data/saves|Windows|{{p|game}}\\LSL6SG.*}}" Leisure Suit Larry Goes Looking for Love (in Several Wrong Places): gog: 1207662053 pageId: 67767 steam: 765840 templates: - - '{{Game data/config|DOS|{{p|game}}\RESOURCE.CFG}}' - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/saves|DOS|{{p|game}}\LSL2SG.*}}' - - '{{Game data/saves|Windows|{{p|game}}\LSL2SG.*}}' -'Leisure Suit Larry III: Passionate Patti in Pursuit of the Pulsating Pectorals': + - "{{Game data/config|DOS|{{p|game}}\\RESOURCE.CFG}}" + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|DOS|{{p|game}}\\LSL2SG.*}}" + - "{{Game data/saves|Windows|{{p|game}}\\LSL2SG.*}}" +"Leisure Suit Larry III: Passionate Patti in Pursuit of the Pulsating Pectorals": gog: 1207662063 pageId: 67814 steam: 765850 templates: - - '{{Game data/config|DOS|{{p|game}}\RESOURCE.CFG}}' - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/saves|DOS|{{p|game}}\LSL3SG.*}}' - - '{{Game data/saves|Windows|{{p|game}}\LSL3SG.*}}' + - "{{Game data/config|DOS|{{p|game}}\\RESOURCE.CFG}}" + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|DOS|{{p|game}}\\LSL3SG.*}}" + - "{{Game data/saves|Windows|{{p|game}}\\LSL3SG.*}}" Leisure Suit Larry in the Land of the Lounge Lizards: gog: 1207659158 pageId: 67478 steam: 763970 templates: - - '{{Game data/config|DOS|{{p|game}}\RESOURCE.CFG}}' - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/saves|DOS|{{p|game}}\}}' - - '{{Game data/saves|Windows|{{p|game}}\}}' -'Leisure Suit Larry in the Land of the Lounge Lizards: Reloaded': + - "{{Game data/config|DOS|{{p|game}}\\RESOURCE.CFG}}" + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|DOS|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\}}" +"Leisure Suit Larry in the Land of the Lounge Lizards: Reloaded": gog: 1207659243 pageId: 8333 steam: 231910 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\N_Fusion Interactive\LSLR}}' - - >- - {{Game data/config|OS - X|{{p|osxhome}}/Library/Containers/com.replay.LeisureSuitLarry/Data/Library/com.replay.LeisureSuitLarry}} - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/N_Fusion Interactive/LSLR/}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\N_Fusion Interactive\LSLR}}' - - >- - {{Game data/saves|OS - X|{{p|osxhome}}/Library/Containers/com.replay.LeisureSuitLarry/Data/Library/com.replay.LeisureSuitLarry}} - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/N_Fusion Interactive/LSLR/}}' -Leisure Suit Larry's Casino: + - "{{Game data/config|Windows|{{p|localappdata}}\\N_Fusion Interactive\\LSLR}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Containers/com.replay.LeisureSuitLarry/Data/Library/com.replay.LeisureSuitLarry}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/N_Fusion Interactive/LSLR/}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\N_Fusion Interactive\\LSLR}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Containers/com.replay.LeisureSuitLarry/Data/Library/com.replay.LeisureSuitLarry}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/N_Fusion Interactive/LSLR/}}" +"Leisure Suit Larry's Casino": pageId: 68295 templates: - - '{{Game data/config|DOS|{{p|game}}\RESOURCE.CFG}}' -Leisure Suit Larry's Casino (1998): + - "{{Game data/config|DOS|{{p|game}}\\RESOURCE.CFG}}" +"Leisure Suit Larry's Casino (1998)": pageId: 68304 templates: - - '{{Game data/config|Windows|{{p|game}}\LCASINO.INI}}' - - '{{Game data/saves|Windows|{{p|game}}\LCASINO.INI}}' -'Leisure Suit Larry: Box Office Bust': + - "{{Game data/config|Windows|{{p|game}}\\LCASINO.INI}}" + - "{{Game data/saves|Windows|{{p|game}}\\LCASINO.INI}}" +"Leisure Suit Larry: Box Office Bust": pageId: 68312 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\LeisureSuitLarry\LUGame\Config\LUengine.ini}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\LeisureSuitLarry\}}' -'Leisure Suit Larry: Love for Sail!': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\LeisureSuitLarry\\LUGame\\Config\\LUengine.ini}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\LeisureSuitLarry\\}}" +"Leisure Suit Larry: Love for Sail!": gog: 1207659174 pageId: 24623 steam: 765890 templates: - - '{{Game data/config|DOS|{{p|game}}\RESOURCE.CFG}}' - - '{{Game data/config|Windows|{{p|game}}\RESOURCE.WIN}}' - - '{{Game data/saves|DOS|{{p|game}}\}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Sierra\Leisure Suit Larry 7\}}' - - '{{Game data/saves|GOG.com|{{p|game}}/data/lsl7., lsl7-larry7.prf}}' -'Leisure Suit Larry: Magna Cum Laude': + - "{{Game data/config|DOS|{{p|game}}\\RESOURCE.CFG}}" + - "{{Game data/config|Windows|{{p|game}}\\RESOURCE.WIN}}" + - "{{Game data/saves|DOS|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Sierra\\Leisure Suit Larry 7\\}}" + - "{{Game data/saves|GOG.com|{{p|game}}/data/lsl7., lsl7-larry7.prf}}" +"Leisure Suit Larry: Magna Cum Laude": gog: 1207659225 pageId: 32933 steam: 765900 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/saves|Windows|{{p|game}}\SaveGames\}}' -'Leisure Suit Larry: Wet Dreams Don''t Dry': + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\SaveGames\\}}" +"Leisure Suit Larry: Wet Dreams Don't Dry": gog: 1859396546 gogSide: - 1515017516 @@ -93394,10 +90914,8 @@ Leisure Suit Larry's Casino (1998): - 938590 - 975530 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Assemble Entertainment\Leisure Suit Larry - Wet Dreams Don''t Dry\}}' - - >- - {{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Assemble Entertainment\Leisure Suit Larry - Wet - Dreams Don't Dry\savegames\}} + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Assemble Entertainment\\Leisure Suit Larry - Wet Dreams Don't Dry\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Assemble Entertainment\\Leisure Suit Larry - Wet Dreams Don't Dry\\savegames\\}}" Leisure Town: pageId: 108372 steam: 920510 @@ -93412,96 +90930,94 @@ Leman: pageId: 190142 steam: 1661360 templates: - - '{{Game data/saves|Windows|%ProgramFiles(x86)%\Steam\userdata\48766336\1661360\remote\}}' + - "{{Game data/saves|Windows|%ProgramFiles(x86)%\\Steam\\userdata\\48766336\\1661360\\remote\\}}" Lemma: pageId: 38103 steam: 300340 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Lemma}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Lemma\saves}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Lemma}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Lemma\\saves}}" Lemmings: pageId: 57590 templates: - - '{{Game data/config|Windows|{{p|game}}}}' - - '{{Game data/saves|Windows|{{p|game}}}}' + - "{{Game data/config|Windows|{{p|game}}}}" + - "{{Game data/saves|Windows|{{p|game}}}}" Lemmings 3D: pageId: 189125 templates: - - '{{Game data/config|Windows|{{p|game}}}}' + - "{{Game data/config|Windows|{{p|game}}}}" Lemmings Paintball: pageId: 56403 Lemmings Revolution: pageId: 56013 templates: - - '{{Game data/saves|Windows|{{p|game}}\SavedGame.dat}}' + - "{{Game data/saves|Windows|{{p|game}}\\SavedGame.dat}}" Lemnis Gate: pageId: 139486 steam: 950180 templates: - - '{{Game data/config|Microsoft Store|{{P|localappdata}}\LemnisGate\Saved\Config\WinGDK}}' - - >- - {{Game - data/config|Steam|{{P|localappdata}}\LemnisGate\Saved\SaveGames\|{{P|localappdata}}\LemnisGate\Saved\Config\WindowsNoEditor\}} + - "{{Game data/config|Microsoft Store|{{P|localappdata}}\\LemnisGate\\Saved\\Config\\WinGDK}}" + - "{{Game data/config|Steam|{{P|localappdata}}\\LemnisGate\\Saved\\SaveGames\\|{{P|localappdata}}\\LemnisGate\\Saved\\Config\\WindowsNoEditor\\}}" Lemon Cake: pageId: 166951 steam: 1338330 templates: - - '{{Game data/saves|Windows|{{p|localappdata}}\LemonCake\Saved\SaveGames}}' + - "{{Game data/saves|Windows|{{p|localappdata}}\\LemonCake\\Saved\\SaveGames}}" Lemons Must Die: pageId: 73023 steam: 563740 -Lemony Snicket's A Series of Unfortunate Events: +"Lemony Snicket's A Series of Unfortunate Events": pageId: 166672 templates: - - '{{Game data/config|Windows|{{code|{{P|game}}\System\*.ini}}|}}' + - "{{Game data/config|Windows|{{code|{{P|game}}\\System\\*.ini}}|}}" Lems: pageId: 96599 steam: 870090 Lemuria: pageId: 122610 steam: 815090 -'Lemuria: Lost in Space': +"Lemuria: Lost in Space": pageId: 54035 steam: 563250 -'Lemuria: Lost in Space - VR Edition': +"Lemuria: Lost in Space - VR Edition": pageId: 66157 steam: 679780 Lemurzin: pageId: 45805 steam: 415490 -Len's Island: +"Len's Island": pageId: 173206 steam: 1335830 Lenin - The Lion: pageId: 93349 steam: 839850 -Lenna's Inception: +"Lenna's Inception": pageId: 151054 steam: 1114870 templates: - - '{{Game data/config|Windows|{{p|appdata}}\LennasInception\}}' - - '{{Game data/config|Linux|~/.local/share/lennasinception/}}' - - '{{Game data/saves|Windows|{{p|appdata}}\LennasInception\}}' - - '{{Game data/saves|Linux|~/.local/share/lennasinception/saves/}}' + - "{{Game data/config|Windows|{{p|appdata}}\\LennasInception\\}}" + - "{{Game data/config|Linux|~/.local/share/lennasinception/}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\LennasInception\\}}" + - "{{Game data/saves|Linux|~/.local/share/lennasinception/saves/}}" Leo the Lion: gog: 1762800738 pageId: 140350 -Leo the Lion's Puzzles: +"Leo the Lion's Puzzles": gog: 1723618362 pageId: 52468 templates: - - '{{Game data/config|Windows|{{p|game}}\dxcfg.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\LEO_AI.DLL}}' -Leo's Fortune: + - "{{Game data/config|Windows|{{p|game}}\\dxcfg.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\LEO_AI.DLL}}" +"Leo's Fortune": pageId: 37723 steam: 355630 -Leon's Crusade: +"Leon's Crusade": pageId: 67541 steam: 689480 LeonWaan MineSweeper: pageId: 127311 steam: 1022650 -Leona's Tricky Adventures: +"Leona's Tricky Adventures": pageId: 49357 steam: 305880 Leons Identität: @@ -93522,38 +91038,38 @@ Leprechaun Shadow: Lepur: pageId: 78302 steam: 767600 -'Les 4 Alice: Lorange Journey': +"Les 4 Alice: Lorange Journey": pageId: 104427 steam: 904940 Les Fleursword: pageId: 67274 steam: 689650 templates: - - '{{Game data/saves|Windows|{{P|game}}\www\save\}}' -'Les Manley in: Lost in L.A.': + - "{{Game data/saves|Windows|{{P|game}}\\www\\save\\}}" +"Les Manley in: Lost in L.A.": gog: 1898140719 pageId: 163327 steam: 1299730 templates: - - '{{Game data/config|DOS|{{p|game}}\LES2.BAT}}' - - '{{Game data/saves|DOS|{{p|game}}\*.SAV}}' -'Les Manley in: Search for the King': + - "{{Game data/config|DOS|{{p|game}}\\LES2.BAT}}" + - "{{Game data/saves|DOS|{{p|game}}\\*.SAV}}" +"Les Manley in: Search for the King": gog: 1334336941 pageId: 163325 steam: 1299720 templates: - - '{{Game data/config|DOS|{{p|game}}\KING.BAT}}' - - '{{Game data/saves|DOS|{{p|game}}\*.SAV}}' -'Les Misérables: Cosette''s Fate': + - "{{Game data/config|DOS|{{p|game}}\\KING.BAT}}" + - "{{Game data/saves|DOS|{{p|game}}\\*.SAV}}" +"Les Misérables: Cosette's Fate": pageId: 90917 steam: 827120 -'Les Misérables: Jean Valjean': +"Les Misérables: Jean Valjean": pageId: 90919 steam: 827130 Les Quatre Alices: pageId: 67609 steam: 669280 -'LesLove.Club: Jessica and Ashley': +"LesLove.Club: Jessica and Ashley": pageId: 138789 steam: 1027970 Lesbian Breakout: @@ -93578,100 +91094,100 @@ Let Them Come: pageId: 40177 steam: 505630 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\LetThemCome\}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\LetThemCome\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\LetThemCome\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\LetThemCome\\}}" Let There Be Life: pageId: 48705 steam: 340950 Let the Cat in: pageId: 46679 steam: 369400 -Let's Be Architects: +"Let's Be Architects": pageId: 80641 steam: 784000 -Let's Bowl VR: +"Let's Bowl VR": pageId: 67825 steam: 680950 -Let's Build a Zoo: +"Let's Build a Zoo": pageId: 172801 steam: 1547890 templates: - - '{{Game data/config|Windows|{{p|game}}\Config}}' - - '{{Game data/saves|Windows|{{p|game}}\Save}}' -Let's Create! Pottery VR: + - "{{Game data/config|Windows|{{p|game}}\\Config}}" + - "{{Game data/saves|Windows|{{p|game}}\\Save}}" +"Let's Create! Pottery VR": pageId: 126201 steam: 992610 -Let's Draw: +"Let's Draw": pageId: 55746 steam: 575490 -Let's Eat! Seaside Cafe: +"Let's Eat! Seaside Cafe": pageId: 44409 steam: 444950 -Let's Explore the Airport (Junior Field Trips): +"Let's Explore the Airport (Junior Field Trips)": pageId: 48100 steam: 363050 -Let's Explore the Farm (Junior Field Trips): +"Let's Explore the Farm (Junior Field Trips)": pageId: 48102 steam: 363060 -Let's Explore the Jungle (Junior Field Trips): +"Let's Explore the Jungle (Junior Field Trips)": pageId: 48104 steam: 363070 -Let's Find a Way: +"Let's Find a Way": pageId: 66079 steam: 585800 -Let's Go Nuts!: +"Let's Go Nuts!": pageId: 93015 steam: 848230 -Let's Go There And Wander Nowhere: +"Let's Go There And Wander Nowhere": pageId: 99468 steam: 879410 -Let's Go! Skiing VR: +"Let's Go! Skiing VR": pageId: 149414 steam: 1150310 -Let's Kill Zombies VR: +"Let's Kill Zombies VR": pageId: 82742 steam: 789970 -Let's Learn Japanese! Hiragana: +"Let's Learn Japanese! Hiragana": pageId: 125266 steam: 997720 -Let's Learn Japanese! Katakana: +"Let's Learn Japanese! Katakana": pageId: 129569 steam: 1018900 -Let's Learn Japanese! Vocabulary: +"Let's Learn Japanese! Vocabulary": pageId: 156083 steam: 1208030 -Let's Not Stay Friends: +"Let's Not Stay Friends": pageId: 77653 steam: 739980 -Let's Play with Nanai!: +"Let's Play with Nanai!": pageId: 146110 steam: 851350 -Let's Ride! Silver Buckle Stables: +"Let's Ride! Silver Buckle Stables": gog: 2067932503 pageId: 174762 steam: 1587860 -Let's See What You Got: +"Let's See What You Got": pageId: 150637 steam: 1126070 -Let's Sing: +"Let's Sing": pageId: 50662 steam: 268260 -Let's Sing 2016: +"Let's Sing 2016": pageId: 44890 steam: 397820 -Let's Sing 2019: +"Let's Sing 2019": pageId: 140545 steam: 994310 -Let's Split Up: +"Let's Split Up": pageId: 96931 steam: 876290 -Let's Worm: +"Let's Worm": pageId: 129881 steam: 1032140 -Let's Zig Zag: +"Let's Zig Zag": pageId: 80617 steam: 783900 -Let's make... sports: +"Let's make... sports": pageId: 150315 steam: 1118600 Lethal Brutal Racing: @@ -93681,47 +91197,45 @@ Lethal Company: pageId: 191262 steam: 1966720 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\ZeekerssRBLX\Lethal Company}}' - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\ZeekerssRBLX\Lethal Company}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\ZeekerssRBLX\\Lethal Company}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\ZeekerssRBLX\\Lethal Company}}" Lethal Crisis: pageId: 188584 steam: 2438190 templates: - - '{{Game data/config|Windows|{{p|game}}\user.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\save\save#|{{p|game}}\save\savesys|}}' + - "{{Game data/config|Windows|{{p|game}}\\user.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\save\\save#|{{p|game}}\\save\\savesys|}}" Lethal Crisis ProtoSphere: pageId: 188606 steam: 2438200 templates: - - '{{Game data/config|Windows|{{p|game}}\user.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\save\save#|{{p|game}}\save\savesys|}}' + - "{{Game data/config|Windows|{{p|game}}\\user.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\save\\save#|{{p|game}}\\save\\savesys|}}" Lethal Laser: pageId: 68334 steam: 669390 -'Lethal Lawns: Competitive Mowing Bloodsport': +"Lethal Lawns: Competitive Mowing Bloodsport": pageId: 90164 steam: 821570 Lethal League: pageId: 19576 steam: 261180 templates: - - '{{Game data/config|Windows|{{p|game}}\resources\config\lethal_settings.cfg}}' + - "{{Game data/config|Windows|{{p|game}}\\resources\\config\\lethal_settings.cfg}}" Lethal League Blaze: pageId: 98160 steam: 553310 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\SOFTWARE\Team Reptile\LLBlaze\}}' - - >- - {{Game data/saves|Microsoft - Store|{{P|localappdata}}\Packages\TeamReptile.2582A0C5DCAB_e5dfpr1e2tmgw\SystemAppData\wgs\}} - - '{{Game data/saves|Steam|{{P|steam}}\userdata\{{p|uid}}\553310\remote\progress.sav}}' -'Lethal RPG: War': + - "{{Game data/config|Windows|{{P|hkcu}}\\SOFTWARE\\Team Reptile\\LLBlaze\\}}" + - "{{Game data/saves|Microsoft Store|{{P|localappdata}}\\Packages\\TeamReptile.2582A0C5DCAB_e5dfpr1e2tmgw\\SystemAppData\\wgs\\}}" + - "{{Game data/saves|Steam|{{P|steam}}\\userdata\\{{p|uid}}\\553310\\remote\\progress.sav}}" +"Lethal RPG: War": pageId: 47219 steam: 385590 Lethal Running: pageId: 94283 steam: 645200 -'Lethal Running: Prologue': +"Lethal Running: Prologue": pageId: 114936 steam: 951170 Lethal Strike: @@ -93734,48 +91248,40 @@ Lethe - Episode One: pageId: 37786 steam: 407780 templates: - - '{{Game data/config|Windows|{{p|game}}\UDKGame\Config\}}' - - '{{Game data/saves|Windows|{{p|game}}\Saves\Lethe ep1\}}' -'Lethis: Daring Discoverers': + - "{{Game data/config|Windows|{{p|game}}\\UDKGame\\Config\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\Saves\\Lethe ep1\\}}" +"Lethis: Daring Discoverers": pageId: 63284 steam: 580570 -'Lethis: Path of Progress': +"Lethis: Path of Progress": gog: 1456754427 pageId: 30914 steam: 359230 -Letina's Odyssey: +"Letina's Odyssey": gog: 1685075974 pageId: 181641 steam: 1551620 Lets Beats: pageId: 100186 steam: 880610 -'Letter Quest: Grimm''s Journey': +"Letter Quest: Grimm's Journey": pageId: 37481 steam: 328730 templates: - - >- - {{Game data/config|Windows|{{p|APPDATA}}\com.baconbanditgames.spellquest\Local - Store\#SharedObjects\grimmwords_steam.swf\letter_quest_desktop_settings.sol}} - - '{{Game data/saves|Windows|{{p|APPDATA}}\com.baconbanditgames.spellquest\Local Store\letter_quest_gamesave}}' -'Letter Quest: Grimm''s Journey Remastered': + - "{{Game data/config|Windows|{{p|APPDATA}}\\com.baconbanditgames.spellquest\\Local Store\\#SharedObjects\\grimmwords_steam.swf\\letter_quest_desktop_settings.sol}}" + - "{{Game data/saves|Windows|{{p|APPDATA}}\\com.baconbanditgames.spellquest\\Local Store\\letter_quest_gamesave}}" +"Letter Quest: Grimm's Journey Remastered": pageId: 37592 steam: 373970 templates: - - '{{Game data/config|Windows|{{p|HKCU}}\Software\Bacon Bandit Games\Letter Quest Remastered\}}' - - >- - {{Game data/saves|Windows|{{p|USERPROFILE}}\AppData\LocalLow\Bacon Bandit Games\Letter Quest - Remastered\letter_quest_remastered.lqr}} - - >- - {{Game data/saves|OS X|"~/Library/Application Support/unity.Bacon Bandit Games.Letter Quest - Remastered/letter_quest_remastered.lqr"}} - - >- - {{Game data/saves|Linux|"~/.config/unity3d/Bacon Bandit Games/Letter Quest - Remastered/letter_quest_remastered.lqr"}} + - "{{Game data/config|Windows|{{p|HKCU}}\\Software\\Bacon Bandit Games\\Letter Quest Remastered\\}}" + - "{{Game data/saves|Windows|{{p|USERPROFILE}}\\AppData\\LocalLow\\Bacon Bandit Games\\Letter Quest Remastered\\letter_quest_remastered.lqr}}" + - "{{Game data/saves|OS X|\"~/Library/Application Support/unity.Bacon Bandit Games.Letter Quest Remastered/letter_quest_remastered.lqr\"}}" + - "{{Game data/saves|Linux|\"~/.config/unity3d/Bacon Bandit Games/Letter Quest Remastered/letter_quest_remastered.lqr\"}}" Letter-Setter: pageId: 68328 steam: 676320 -'Letters: A Written Adventure': +"Letters: A Written Adventure": gog: 1315552098 pageId: 130779 renamedFrom: @@ -93784,22 +91290,22 @@ Letter-Setter: Letzte Worte VR: pageId: 122648 steam: 932800 -'Levantera: Tale of The Winds': +"Levantera: Tale of The Winds": pageId: 73054 steam: 506700 Level 22: pageId: 60419 steam: 293300 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Noego\LEVEL 22\}}' - - '{{Game data/saves|Windows|{{P|game}}\SaveData.ngo}}' -'Level 22: Gary''s Misadventures': + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Noego\\LEVEL 22\\}}" + - "{{Game data/saves|Windows|{{P|game}}\\SaveData.ngo}}" +"Level 22: Gary's Misadventures": gog: 1454602861 pageId: 36390 steam: 431290 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Moving Player\LEVEL 22\}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\Moving Player\LEVEL 22\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Moving Player\\LEVEL 22\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Moving Player\\LEVEL 22\\}}" Level 99 Axe Rage: pageId: 80917 steam: 739780 @@ -93827,18 +91333,18 @@ Leviathan Starblade: Leviathan ~A Survival RPG~: pageId: 105111 steam: 897440 -'Leviathan: The Cargo': +"Leviathan: The Cargo": pageId: 42455 steam: 411130 -'Leviathan: The Last Day of the Decade': +"Leviathan: The Last Day of the Decade": pageId: 49303 steam: 328270 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Lostwood llc\The Last Day of the Decade}}' -'Leviathan: Warships': + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Lostwood llc\\The Last Day of the Decade}}" +"Leviathan: Warships": pageId: 9930 steam: 202270 -Lew Pulsipher's Doomstar: +"Lew Pulsipher's Doomstar": pageId: 38999 steam: 504750 Lex Mortis: @@ -93848,20 +91354,20 @@ Lexica: pageId: 32143 steam: 306680 templates: - - '{{Game data/saves|Windows|{{p|game}}\lexica.sav}}' + - "{{Game data/saves|Windows|{{p|game}}\\lexica.sav}}" Lexie the Takeover: pageId: 80699 steam: 783400 Lexus ISF Track Time: pageId: 134373 templates: - - '{{Game data/config|Windows|{{p|game}}\Config.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\UserData\{{p|uid}}\{{p|uid}}.plr}}' + - "{{Game data/config|Windows|{{p|game}}\\Config.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\UserData\\{{p|uid}}\\{{p|uid}}.plr}}" Ley Lines: pageId: 54353 steam: 529770 templates: - - '{{Game data/saves|Windows|{{p|localappdata}}\LeyLinesOfLegend\Saved\SaveGames}}' + - "{{Game data/saves|Windows|{{p|localappdata}}\\LeyLinesOfLegend\\Saved\\SaveGames}}" Leylines: pageId: 57856 steam: 585820 @@ -93872,14 +91378,10 @@ LiEat: pageId: 35782 steam: 373770 templates: - - '{{Game data/config|Windows|{{p|game}}\Game.ini}}' - - >- - {{Game data/config|Steam|{{p|game}}\{{code|#}}\LiEat1\Game.ini | {{p|game}}\{{code|#}}\LiEat2\Game.ini | - {{p|game}}\{{code|#}}\LiEat3\Game.ini | {{p|hkcu}}\Software\Playism\LiEat_Launcher\}} - - '{{Game data/saves|Windows|{{p|game}}\Save\{{code|*}}.sav}}' - - >- - {{Game data/saves|Steam|{{p|game}}\{{code|#}}\LiEat1\Save\ | {{p|game}}\{{code|#}}\LiEat2\Save\ | - {{p|game}}\{{code|#}}\LiEat3\Save\}} + - "{{Game data/config|Windows|{{p|game}}\\Game.ini}}" + - "{{Game data/config|Steam|{{p|game}}\\{{code|#}}\\LiEat1\\Game.ini | {{p|game}}\\{{code|#}}\\LiEat2\\Game.ini | {{p|game}}\\{{code|#}}\\LiEat3\\Game.ini | {{p|hkcu}}\\Software\\Playism\\LiEat_Launcher\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\Save\\{{code|*}}.sav}}" + - "{{Game data/saves|Steam|{{p|game}}\\{{code|#}}\\LiEat1\\Save\\ | {{p|game}}\\{{code|#}}\\LiEat2\\Save\\ | {{p|game}}\\{{code|#}}\\LiEat3\\Save\\}}" Liam Finds a Story: pageId: 147472 Liberated: @@ -93887,10 +91389,8 @@ Liberated: pageId: 132750 steam: 875310 templates: - - >- - {{Game data/config|Windows|{{P|userprofile\appdata\locallow}}\Atomic - Wolf\Liberated\settings_v3.ppg|{{P|hkcu}}\Software\Atomic Wolf\Liberated\}} - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Atomic Wolf\Liberated\savedGame.ppg}}' + - "{{Game data/config|Windows|{{P|userprofile\\appdata\\locallow}}\\Atomic Wolf\\Liberated\\settings_v3.ppg|{{P|hkcu}}\\Software\\Atomic Wolf\\Liberated\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Atomic Wolf\\Liberated\\savedGame.ppg}}" Liberator TD: pageId: 73021 steam: 681740 @@ -93907,7 +91407,7 @@ Liberté: Libra of the Vampire Princess: pageId: 63747 steam: 604170 -'Libra of the Vampire Princess: Lycoris & Aoi in "The Promise" PLUS Iris in "Homeworld"': +"Libra of the Vampire Princess: Lycoris & Aoi in \"The Promise\" PLUS Iris in \"Homeworld\"": pageId: 64781 steam: 644680 Library: @@ -93919,16 +91419,14 @@ Library of Ruina: - Library Of Ruina steam: 1256670 templates: - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Project Moon\LibraryOfRuina\}}' -'Lichdom: Battlemage': + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Project Moon\\LibraryOfRuina\\}}" +"Lichdom: Battlemage": gog: 1426765313 pageId: 19658 steam: 261760 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\Saved Games\Lichdom Battlemage\game.cfg}}' - - >- - {{Game data/saves|Windows|{{p|userprofile}}\Saved Games\Lichdom Battlemage\Profiles\|{{p|userprofile}}\Saved - Games\Lichdom Battlemage\SaveGames\}} + - "{{Game data/config|Windows|{{p|userprofile}}\\Saved Games\\Lichdom Battlemage\\game.cfg}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Saved Games\\Lichdom Battlemage\\Profiles\\|{{p|userprofile}}\\Saved Games\\Lichdom Battlemage\\SaveGames\\}}" Lichtspeer: gog: 2000734359 pageId: 38925 @@ -93940,12 +91438,10 @@ Lies of P: pageId: 181215 steam: 1627720 templates: - - '{{Game data/config|Microsoft Store|{{p|localappdata}}\LiesofP\Saved\Config\WinGDK\}}' - - '{{Game data/config|Steam|{{P|game}}\LiesofP\Saved\Config\WindowsNoEditor\}}' - - >- - {{Game data/saves|Microsoft - Store|{{p|localappdata}}\Packages\Neowiz.3616725F496B_r4z3116tdh636\SystemAppData\wgs\{{P|uid}}}} - - '{{Game data/saves|Steam|{{P|game}}\LiesofP\Saved\SaveGames\{{P|uid}}\}}' + - "{{Game data/config|Microsoft Store|{{p|localappdata}}\\LiesofP\\Saved\\Config\\WinGDK\\}}" + - "{{Game data/config|Steam|{{P|game}}\\LiesofP\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Microsoft Store|{{p|localappdata}}\\Packages\\Neowiz.3616725F496B_r4z3116tdh636\\SystemAppData\\wgs\\{{P|uid}}}}" + - "{{Game data/saves|Steam|{{P|game}}\\LiesofP\\Saved\\SaveGames\\{{P|uid}}\\}}" Lif: pageId: 44896 steam: 346220 @@ -93970,7 +91466,7 @@ Life Game: Life Goals: pageId: 95166 steam: 838360 -'Life Goes On: Done to Death': +"Life Goes On: Done to Death": pageId: 37283 steam: 250050 Life In Helsinki: @@ -93989,79 +91485,54 @@ Life Is Strange: - 425570 - 432670 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\My Games\Life Is Strange\LifeIsStrangeGame\Config\}}' - - >- - {{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Feral Interactive/Life Is Strange/VFS/Local/my - games/Life Is Strange/Config/}} - - >- - {{Game data/config|Linux|{{P|xdgdatahome}}/feral-interactive/Life Is Strange/VFS/Local/My Games/Life Is - Strange/Saves/}} - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\My Games\Life Is Strange\Saves\}}' - - >- - {{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Feral Interactive/Life Is Strange/VFS/Local/my - games/Life Is Strange/Saves/}} - - >- - {{Game data/saves|Linux|{{P|xdgdatahome}}/feral-interactive/Life Is Strange/VFS/Local/My Games/Life Is - Strange/Saves/}} + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\My Games\\Life Is Strange\\LifeIsStrangeGame\\Config\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Feral Interactive/Life Is Strange/VFS/Local/my games/Life Is Strange/Config/}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/feral-interactive/Life Is Strange/VFS/Local/My Games/Life Is Strange/Saves/}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\My Games\\Life Is Strange\\Saves\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Feral Interactive/Life Is Strange/VFS/Local/my games/Life Is Strange/Saves/}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/feral-interactive/Life Is Strange/VFS/Local/My Games/Life Is Strange/Saves/}}" Life Is Strange 2: pageId: 69523 steam: 532210 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Dontnod\{{p|uid}}\LIS2\Saved\Config\WindowsNoEditor\}}' - - >- - {{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Feral Interactive/Life is Strange - 2/SaveData/Dotnod/{{p|uid}}/LIS2/Saved/Config/WindowsNoEditor}} - - '{{Game data/saves|Windows|{{p|localappdata}}\Dontnod\{{p|uid}}\LIS2\Saved\SaveGames\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Feral Interactive/Life is Strange 2/SaveData/}}' - - >- - {{Game data/saves|Linux|{{P|xdgdatahome}}/feral-interactive/Life is Strange - 2/SaveData/Dontnod/{{p|uid}}/LIS2/Saved/SaveGames/}} + - "{{Game data/config|Windows|{{p|localappdata}}\\Dontnod\\{{p|uid}}\\LIS2\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Feral Interactive/Life is Strange 2/SaveData/Dotnod/{{p|uid}}/LIS2/Saved/Config/WindowsNoEditor}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Dontnod\\{{p|uid}}\\LIS2\\Saved\\SaveGames\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Feral Interactive/Life is Strange 2/SaveData/}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/feral-interactive/Life is Strange 2/SaveData/Dontnod/{{p|uid}}/LIS2/Saved/SaveGames/}}" Life Is Strange Remastered: pageId: 167268 steam: 1265920 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\LiS\Saved\Config\WindowsNoEditor}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\LiS\Saved\SaveGames}}' -'Life Is Strange: Before the Storm': + - "{{Game data/config|Windows|{{p|localappdata}}\\LiS\\Saved\\Config\\WindowsNoEditor}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\LiS\\Saved\\SaveGames}}" +"Life Is Strange: Before the Storm": gog: 2131041921 pageId: 63562 steam: 554620 templates: - - >- - {{Game data/config|Windows|{{P|hkcu}}\SOFTWARE\Square Enix\Life is Strange: Before the - Storm\|{{P|userprofile}}\AppData\LocalLow\Square Enix\Life is Strange_ Before the - Storm\Saves\{{P|uid}}\Preferences\PrefData.Save}} - - >- - {{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Square Enix\Life is Strange_ Before the - Storm\Saves\{{P|uid}}\SLOT_{{code|##}}\*.Save}} - - >- - {{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Feral Interactive/Life is Strange Before the - Storm/Saves/{{P|uid}}/SLOT_{{code|##}}/*.Save}} -'Life Is Strange: Before the Storm Remastered': + - "{{Game data/config|Windows|{{P|hkcu}}\\SOFTWARE\\Square Enix\\Life is Strange: Before the Storm\\|{{P|userprofile}}\\AppData\\LocalLow\\Square Enix\\Life is Strange_ Before the Storm\\Saves\\{{P|uid}}\\Preferences\\PrefData.Save}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Square Enix\\Life is Strange_ Before the Storm\\Saves\\{{P|uid}}\\SLOT_{{code|##}}\\*.Save}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Feral Interactive/Life is Strange Before the Storm/Saves/{{P|uid}}/SLOT_{{code|##}}/*.Save}}" +"Life Is Strange: Before the Storm Remastered": pageId: 167270 renamedFrom: - - 'Life is Strange: Before the Storm Remastered' + - "Life is Strange: Before the Storm Remastered" steam: 1265930 templates: - - >- - {{Game data/config|Windows|{{P|userprofile}}\AppData\LocalLow\Square Enix\Life is Strange_ Before the - Storm\RemasteredSaves\{{P|uid}}\Preferences\PrefData.Save}} - - >- - {{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Square Enix\Life is Strange_ Before the - Storm\RemasteredSaves\{{P|uid}}\{{P|uid}}\SLOT_{{code|##}}\*.Save}} -'Life Is Strange: True Colors': + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Square Enix\\Life is Strange_ Before the Storm\\RemasteredSaves\\{{P|uid}}\\Preferences\\PrefData.Save}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Square Enix\\Life is Strange_ Before the Storm\\RemasteredSaves\\{{P|uid}}\\{{P|uid}}\\SLOT_{{code|##}}\\*.Save}}" +"Life Is Strange: True Colors": pageId: 167258 steam: 936790 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Siren\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\LifeIsStrange3\Steam\{{P|uid}}}}' - - >- - {{Game data/saves|Microsoft - Store|{{P|LOCALAPPDATA}}\Packages\39C668CD.ProjectSiren_r7bfsmp40f67j\SystemAppData\wgs}} + - "{{Game data/config|Windows|{{p|localappdata}}\\Siren\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\LifeIsStrange3\\Steam\\{{P|uid}}}}" + - "{{Game data/saves|Microsoft Store|{{P|LOCALAPPDATA}}\\Packages\\39C668CD.ProjectSiren_r7bfsmp40f67j\\SystemAppData\\wgs}}" Life Lessons: pageId: 93084 steam: 799590 -'Life Quest 2: Metropoville': +"Life Quest 2: Metropoville": pageId: 179848 Life Redemption: pageId: 149378 @@ -94072,7 +91543,7 @@ Life Simulator: Life Tastes Like Cardboard: pageId: 149580 steam: 1114090 -'Life and Debt: A Real Life Simulator': +"Life and Debt: A Real Life Simulator": pageId: 87892 steam: 799840 Life by You: @@ -94087,13 +91558,13 @@ Life in Bunker: Life in the Dorms: pageId: 102339 steam: 385850 -'Life is Feudal: Forest Village': +"Life is Feudal: Forest Village": pageId: 36734 steam: 496460 -'Life is Feudal: MMO': +"Life is Feudal: MMO": pageId: 66746 steam: 700030 -'Life is Feudal: Your Own': +"Life is Feudal: Your Own": pageId: 45595 steam: 290080 Life is Hard: @@ -94110,9 +91581,9 @@ Life of Delta: pageId: 180764 steam: 1376760 templates: - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\Daedalic Entertainment GmbH\LifeOfDelta\*.dat}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Daedalic Entertainment GmbH/LifeOfDelta}}' -'Life of Lon: Chapter 1': + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\Daedalic Entertainment GmbH\\LifeOfDelta\\*.dat}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Daedalic Entertainment GmbH/LifeOfDelta}}" +"Life of Lon: Chapter 1": pageId: 62910 steam: 526730 Life of Rome: @@ -94136,10 +91607,10 @@ Life on Mars Remake: Life on the hook: pageId: 151147 steam: 1148100 -'Life source: episode one': +"Life source: episode one": pageId: 134494 steam: 1050180 -Life's Playground: +"Life's Playground": pageId: 96765 steam: 873320 LifeBase: @@ -94157,8 +91628,8 @@ Lifeblood: Lifeforce Tenka: pageId: 123043 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Psygnosis\Tenka\}}' - - '{{Game data/saves|Windows|{{p|game}}\save\tenka.sav}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Psygnosis\\Tenka\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\save\\tenka.sav}}" Lifeless: pageId: 33512 steam: 419520 @@ -94166,17 +91637,17 @@ Lifeless Moon: pageId: 145403 steam: 1147330 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\Lifeless Worlds\Lifeless Moon\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Lifeless Worlds\Lifeless Moon\}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Lifeless Worlds\\Lifeless Moon\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Lifeless Worlds\\Lifeless Moon\\}}" Lifeless Planet: gog: 1207664723 pageId: 15914 steam: 261530 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\Stage 2 Studios\Lifeless Planet\}}' - - '{{Game data/config|Linux|{{p|xdgconfighome}}/unity3d/Stage 2 Studios/Lifeless Planet/}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Stage 2 Studios\Lifeless Planet\}}' - - '{{Game data/saves|Linux|{{p|xdgconfighome}}/unity3d/Stage 2 Studios/Lifeless Planet/}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Stage 2 Studios\\Lifeless Planet\\}}" + - "{{Game data/config|Linux|{{p|xdgconfighome}}/unity3d/Stage 2 Studios/Lifeless Planet/}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Stage 2 Studios\\Lifeless Planet\\}}" + - "{{Game data/saves|Linux|{{p|xdgconfighome}}/unity3d/Stage 2 Studios/Lifeless Planet/}}" Lifeless Vanguard: pageId: 132202 steam: 1039860 @@ -94232,12 +91703,8 @@ Light Crusader: pageId: 30856 steam: 71119 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\SEGA Mega Drive - Classics\setup.dat|{{p|userprofile\Documents}}\SEGA Genesis Classics\setup.dat}} - - >- - {{Game data/saves|Windows|{{p|userprofile\Documents}}\SEGA Mega Drive - Classics\0037\|{{p|userprofile\Documents}}\SEGA Genesis Classics\0037\}} + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\SEGA Mega Drive Classics\\setup.dat|{{p|userprofile\\Documents}}\\SEGA Genesis Classics\\setup.dat}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\SEGA Mega Drive Classics\\0037\\|{{p|userprofile\\Documents}}\\SEGA Genesis Classics\\0037\\}}" Light Cube: pageId: 93682 steam: 857160 @@ -94251,10 +91718,8 @@ Light Fall: pageId: 62470 steam: 416830 templates: - - >- - {{Game data/config|Windows|{{P|steam}}\userdata\{{P|uid}}\416830\remote\|{{P|hkcu}}\Software\Bishop - Games\LightFall\}} - - '{{Game data/saves|Windows|{{P|steam}}\userdata\{{P|uid}}\416830\remote\}}' + - "{{Game data/config|Windows|{{P|steam}}\\userdata\\{{P|uid}}\\416830\\remote\\|{{P|hkcu}}\\Software\\Bishop Games\\LightFall\\}}" + - "{{Game data/saves|Windows|{{P|steam}}\\userdata\\{{P|uid}}\\416830\\remote\\}}" Light Fantastik: pageId: 87407 steam: 690630 @@ -94267,7 +91732,7 @@ Light Gravity Cube (2019): Light House Puzzle: pageId: 121325 steam: 960380 -'Light Hunters: Battalion of Darkness': +"Light Hunters: Battalion of Darkness": pageId: 149929 steam: 1105530 Light It: @@ -94309,7 +91774,7 @@ Light of Altair: pageId: 41290 steam: 34500 templates: - - '{{Game data/config|Windows|{{p|appdata}}\SaintXi\LightOfAltair}}' + - "{{Game data/config|Windows|{{p|appdata}}\\SaintXi\\LightOfAltair}}" Light of Mine: pageId: 74191 steam: 722350 @@ -94358,7 +91823,7 @@ Lighthockey: Lighthouse of guiding flames: pageId: 141528 steam: 1107060 -'Lighthouse: The Dark Being': +"Lighthouse: The Dark Being": gog: 1322165223 pageId: 82500 Lighting End VR: @@ -94374,23 +91839,21 @@ Lightmatter: pageId: 124559 steam: 994140 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\Tunnel Vision Games\Lightmatter\Lightmatter_Data}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Tunnel Vision Games\Lightmatter\Lightmatter_Data}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Tunnel Vision Games\\Lightmatter\\Lightmatter_Data}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Tunnel Vision Games\\Lightmatter\\Lightmatter_Data}}" Lightning Angel Litona Liliche 섬광천사 리토나 리리셰: pageId: 113774 steam: 923900 -'Lightning Returns: Final Fantasy XIII': +"Lightning Returns: Final Fantasy XIII": pageId: 19992 steam: 345350 templates: - - >- - {{Game - data/config|Steam|{{p|steam}}\userdata\{{p|uid}}\345350\remote\SquareEnix\LightningReturnsFinalFantasyXIII}} - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\345350\remote\}}' + - "{{Game data/config|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\345350\\remote\\SquareEnix\\LightningReturnsFinalFantasyXIII}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\345350\\remote\\}}" Lightning War: pageId: 81725 steam: 788820 -'Lightning: D-Day': +"Lightning: D-Day": pageId: 65417 steam: 620640 Lightrise: @@ -94399,15 +91862,15 @@ Lightrise: Lights: pageId: 167189 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\SOFTWARE\Pyva.net\Lights\settings}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\SOFTWARE\\Pyva.net\\Lights\\settings}}" Lights 3D: pageId: 167192 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\SOFTWARE\Pyva.net\Lights 3D\settings}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\SOFTWARE\\Pyva.net\\Lights 3D\\settings}}" Lights Out: pageId: 137392 steam: 948080 -'Lights, Camera, Reaction!': +"Lights, Camera, Reaction!": pageId: 156266 steam: 1222000 Lightseekers: @@ -94420,37 +91883,33 @@ Lightstep Chronicles: pageId: 124448 steam: 983290 templates: - - '{{Game data/config|Windows|{{p|HKCU}}\Software\Eipix Entertainment\Lightstep Chronicles\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Eipix Entertainment\Lightstep Chronicles\}}' + - "{{Game data/config|Windows|{{p|HKCU}}\\Software\\Eipix Entertainment\\Lightstep Chronicles\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Eipix Entertainment\\Lightstep Chronicles\\}}" Lightwire: pageId: 67615 steam: 686000 Like Clay: pageId: 59051 steam: 604000 -'Like a Dragon Gaiden: The Man Who Erased His Name': +"Like a Dragon Gaiden: The Man Who Erased His Name": pageId: 181531 steam: 2375550 templates: - - '{{Game data/config|Windows|{{P|appdata}}\Sega\LikeADragonGaiden\Steam\}}' - - '{{Game data/config|Microsoft Store|{{P|appdata}}\Sega\LikeADragonGaiden\WindowsStore}}' - - '{{Game data/saves|Windows|{{P|appdata}}\Sega\LikeADragonGaiden\Steam\{{P|uid}}\}}' - - >- - {{Game data/saves|Microsoft - Store|{{P|localappdata}}\Packages\SEGAofAmericaInc.l1b05f489e_s751p9cej88mt\SystemAppData\wgs\{{P|uid}}\}} -'Like a Dragon: Infinite Wealth': + - "{{Game data/config|Windows|{{P|appdata}}\\Sega\\LikeADragonGaiden\\Steam\\}}" + - "{{Game data/config|Microsoft Store|{{P|appdata}}\\Sega\\LikeADragonGaiden\\WindowsStore}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\Sega\\LikeADragonGaiden\\Steam\\{{P|uid}}\\}}" + - "{{Game data/saves|Microsoft Store|{{P|localappdata}}\\Packages\\SEGAofAmericaInc.l1b05f489e_s751p9cej88mt\\SystemAppData\\wgs\\{{P|uid}}\\}}" +"Like a Dragon: Infinite Wealth": pageId: 181534 renamedFrom: - Like a Dragon 8 steam: 2072450 -'Like a Dragon: Ishin!': +"Like a Dragon: Ishin!": pageId: 181522 steam: 1805480 templates: - - >- - {{Game - data/config|Windows|{{P|appdata}}\SEGA\LikeADragonIshin\{{P|uid}}\system\|{{P|localappdata}}\LikeaDragonIshin\Saved\Config\WindowsNoEditor\}} - - '{{Game data/saves|Windows|{{P|appdata}}\SEGA\LikeADragonIshin\{{P|uid}}\}}' + - "{{Game data/config|Windows|{{P|appdata}}\\SEGA\\LikeADragonIshin\\{{P|uid}}\\system\\|{{P|localappdata}}\\LikeaDragonIshin\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\SEGA\\LikeADragonIshin\\{{P|uid}}\\}}" Lil Big Invasion: pageId: 41831 steam: 491240 @@ -94458,43 +91917,43 @@ Lil Gator Game: pageId: 183907 steam: 1586800 templates: - - '{{Game data/config|Windows|{{folder|{{p|userprofile}}\AppData\LocalLow\MegaWobble\Lil Gator Game\Settings}}}}' + - "{{Game data/config|Windows|{{folder|{{p|userprofile}}\\AppData\\LocalLow\\MegaWobble\\Lil Gator Game\\Settings}}}}" Lil Kingdom: pageId: 123890 steam: 991050 Lil Tanks: pageId: 60273 steam: 495820 -Lil' Arena: +"Lil' Arena": pageId: 122266 steam: 945610 -Lil' Blue Buddy: +"Lil' Blue Buddy": pageId: 64466 steam: 658450 -Lil' Sherman: +"Lil' Sherman": pageId: 156791 steam: 1210620 templates: - - '{{Game data/config|Windows|{{p|HKCU}}\Software\Dabster Entertainment\lil'' Sherman - Dabster Entertainment}}' + - "{{Game data/config|Windows|{{p|HKCU}}\\Software\\Dabster Entertainment\\lil' Sherman - Dabster Entertainment}}" LilGunBois: pageId: 94653 steam: 860080 LilPizzaBois: pageId: 99846 steam: 878220 -Lila's Sky Ark: +"Lila's Sky Ark": gog: 1206627106 pageId: 177268 steam: 1573390 -Lila's Tale and the Hidden Forest: +"Lila's Tale and the Hidden Forest": pageId: 184454 steam: 1622040 -'Lili: Child of Geos': +"Lili: Child of Geos": pageId: 34543 steam: 266490 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\UnrealEngine3-MazeGame\MazeGame\Config\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\UnrealEngine3-MazeGame\MazeGame\Cloud}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\UnrealEngine3-MazeGame\\MazeGame\\Config\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\UnrealEngine3-MazeGame\\MazeGame\\Cloud}}" Lilipalace: pageId: 95473 steam: 867120 @@ -94508,40 +91967,34 @@ Lilly Knight and the Three Cities of Lust: pageId: 166454 steam: 1197770 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\HFTGames\Lilly Knight\}}' - - '{{Game data/saves|Windows|{{p|hkcu}}\Software\HFTGames\Lilly Knight\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\HFTGames\\Lilly Knight\\}}" + - "{{Game data/saves|Windows|{{p|hkcu}}\\Software\\HFTGames\\Lilly Knight\\}}" Lilly Looking Through: gog: 1207659903 pageId: 11912 steam: 250030 templates: - - '{{Game data/saves|Windows|{{P|appdata}}\com.GeetaGames.LillyLookingThrough\Local Store\thesave}}' - - >- - {{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/com.GeetaGames.LillyLookingThrough/Local - Store/thesave}} -'Lilly and Sasha: Curse of the Immortals': + - "{{Game data/saves|Windows|{{P|appdata}}\\com.GeetaGames.LillyLookingThrough\\Local Store\\thesave}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/com.GeetaGames.LillyLookingThrough/Local Store/thesave}}" +"Lilly and Sasha: Curse of the Immortals": pageId: 29513 steam: 364270 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Lilly and Sasha\Curse of the Immortals\Options.ini}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Lilly and Sasha\Curse of the Immortals\*.save}}' -'Lilly and Sasha: Guardian Angels': + - "{{Game data/config|Windows|{{p|appdata}}\\Lilly and Sasha\\Curse of the Immortals\\Options.ini}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Lilly and Sasha\\Curse of the Immortals\\*.save}}" +"Lilly and Sasha: Guardian Angels": pageId: 47369 steam: 383520 -'Lilly and Sasha: Nexus of Souls': +"Lilly and Sasha: Nexus of Souls": pageId: 47787 steam: 370040 -'Lilo & Stitch: Hawaiian Adventure': +"Lilo & Stitch: Hawaiian Adventure": pageId: 184709 -'Lilo & Stitch: Trouble in Paradise': +"Lilo & Stitch: Trouble in Paradise": pageId: 81407 templates: - - >- - {{Game data/config|Windows|{{p|allusersprofile}}\Application Data\Disney Interactive\Lilo & Stitch Trouble In - Paradise\LSConfig.ini}} - - >- - {{Game data/saves|Windows|{{p|allusersprofile}}\Application Data\Disney Interactive\Lilo & Stitch Trouble In - Paradise\savegame.sav}} + - "{{Game data/config|Windows|{{p|allusersprofile}}\\Application Data\\Disney Interactive\\Lilo & Stitch Trouble In Paradise\\LSConfig.ini}}" + - "{{Game data/saves|Windows|{{p|allusersprofile}}\\Application Data\\Disney Interactive\\Lilo & Stitch Trouble In Paradise\\savegame.sav}}" Lilt: pageId: 44790 steam: 438160 @@ -94557,13 +92010,13 @@ Lily of the Valley: Lily 白き百合の乙女たち Lisblanc: pageId: 78575 steam: 771960 -Lily's Day Off: +"Lily's Day Off": pageId: 56078 steam: 575650 -Lily's Handmaid: +"Lily's Handmaid": pageId: 156939 steam: 1136910 -Lily's Night Off: +"Lily's Night Off": pageId: 100474 steam: 890750 Lilycle Rainbow Stage!!!: @@ -94581,17 +92034,17 @@ Limbo: pageId: 2711 steam: 48000 templates: - - '{{Game data/config|Windows|{{p|game}}\settings.txt}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Limbo/}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/PlayDead/Limbo/}}' - - '{{Game data/saves|Windows|{{p|game}}|{{p|game}}\save_game\savegame.txt}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Limbo/}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/PlayDead/Limbo/}}' - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/48000/remote/}}' + - "{{Game data/config|Windows|{{p|game}}\\settings.txt}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Limbo/}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/PlayDead/Limbo/}}" + - "{{Game data/saves|Windows|{{p|game}}|{{p|game}}\\save_game\\savegame.txt}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Limbo/}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/PlayDead/Limbo/}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/48000/remote/}}" Limbo of the Lost: pageId: 90882 templates: - - '{{Game data/saves|Windows|Documents\LIMBO of the LOST}}' + - "{{Game data/saves|Windows|Documents\\LIMBO of the LOST}}" Liminal: pageId: 103097 steam: 885690 @@ -94628,15 +92081,15 @@ Line of Sight: pageId: 38809 steam: 436520 templates: - - '{{Game data/config|Windows|{{p|game}}\LSGame\Config}}' -'Line of Sight: Vietnam': + - "{{Game data/config|Windows|{{p|game}}\\LSGame\\Config}}" +"Line of Sight: Vietnam": gog: 1939711261 pageId: 54277 steam: 514150 Linea VR: pageId: 144869 steam: 1144100 -'Linea, the Game': +"Linea, the Game": pageId: 38063 steam: 428900 Lineage: @@ -94645,11 +92098,11 @@ Lineage: Lineage II: pageId: 60052 renamedFrom: - - 'Lineage II: The Chaotic Throne' + - "Lineage II: The Chaotic Throne" steam: 373700 steamSide: - - 29590 - 29530 + - 29590 Linear Chicken: pageId: 93031 steam: 852660 @@ -94657,13 +92110,13 @@ Linelight: pageId: 56116 steam: 469790 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\SOFTWARE\My Dog Zorro\Linelight\}}' - - '{{Game data/saves|Windows|{{p|hkcu}}\SOFTWARE\My Dog Zorro\Linelight\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\My Dog Zorro\\Linelight\\}}" + - "{{Game data/saves|Windows|{{p|hkcu}}\\SOFTWARE\\My Dog Zorro\\Linelight\\}}" Linelith: pageId: 177871 steam: 1923790 templates: - - '{{Game data/saves|Windows|{{P|appdata}}\Godot\app_userdata\Linelith\}}' + - "{{Game data/saves|Windows|{{P|appdata}}\\Godot\\app_userdata\\Linelith\\}}" Linench: pageId: 72242 steam: 719090 @@ -94677,32 +92130,32 @@ Lines Free by Nestor Yavorskyy: pageId: 74175 steam: 725340 templates: - - '{{Game data/config|Windows| {{p|hkcu}}\Software\Konstructors Entertainment\Lines X Free\ }}' - - '{{Game data/saves|Windows| {{p|hkcu}}\Software\Konstructors Entertainment\Lines X Free\Data_h2088730869 }}' - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\725340\remote\}}' + - "{{Game data/config|Windows| {{p|hkcu}}\\Software\\Konstructors Entertainment\\Lines X Free\\ }}" + - "{{Game data/saves|Windows| {{p|hkcu}}\\Software\\Konstructors Entertainment\\Lines X Free\\Data_h2088730869 }}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\725340\\remote\\}}" Lines Infinite: pageId: 75015 renamedFrom: - Lines Infinite by Nestor Yavorskyy steam: 733050 templates: - - '{{Game data/config|Windows| {{p|hkcu}}\Software\Konstructors Entertainment\Lines Infinite\ }}' - - '{{Game data/saves|Windows|{{p|hkcu}}\Software\Konstructors Entertainment\Lines Infinite\Data_h2088730869 }}' + - "{{Game data/config|Windows| {{p|hkcu}}\\Software\\Konstructors Entertainment\\Lines Infinite\\ }}" + - "{{Game data/saves|Windows|{{p|hkcu}}\\Software\\Konstructors Entertainment\\Lines Infinite\\Data_h2088730869 }}" Lines X: pageId: 74177 renamedFrom: - Lines by Nestor Yavorskyy steam: 724740 templates: - - '{{Game data/config|Windows| {{p|hkcu}}\Software\Konstructors Entertainment\Lines X\ }}' - - '{{Game data/saves|Windows|{{p|hkcu}}\Software\Konstructors Entertainment\Lines X\Data_h2088730869 }}' + - "{{Game data/config|Windows| {{p|hkcu}}\\Software\\Konstructors Entertainment\\Lines X\\ }}" + - "{{Game data/saves|Windows|{{p|hkcu}}\\Software\\Konstructors Entertainment\\Lines X\\Data_h2088730869 }}" Lines X Free: pageId: 131856 steam: 725340 Ling: pageId: 80621 steam: 775800 -'Ling: A Road Alone': +"Ling: A Road Alone": pageId: 149708 steam: 1007390 LingeriesOffice: @@ -94714,7 +92167,7 @@ Lingering Fragrance: Lingotopia: pageId: 94689 steam: 860640 -'Lingua Fleur: Lily': +"Lingua Fleur: Lily": pageId: 124384 steam: 986280 Lingua Magicka: @@ -94732,7 +92185,7 @@ Link the Dot: Link the animals: pageId: 136755 steam: 1082650 -'Link: The Unleashed Nexus': +"Link: The Unleashed Nexus": pageId: 46773 steam: 388720 Linkage: @@ -94751,17 +92204,17 @@ Links 386 Pro: gog: 1937439756 pageId: 158824 templates: - - '{{Game data/config|DOS|{{p|game}}\}}' - - '{{Game data/saves|DOS|{{p|game}}\}}' -'Links LS: 1998 Edition': + - "{{Game data/config|DOS|{{p|game}}\\}}" + - "{{Game data/saves|DOS|{{p|game}}\\}}" +"Links LS: 1998 Edition": gog: 1151948886 pageId: 169419 -'Links: The Challenge of Golf': +"Links: The Challenge of Golf": gog: 1664962437 pageId: 27749 templates: - - '{{Game data/config|DOS|{{p|game}}\}}' - - '{{Game data/saves|DOS|{{p|game}}\}}' + - "{{Game data/config|DOS|{{p|game}}\\}}" + - "{{Game data/saves|DOS|{{p|game}}\\}}" Linx Battle Arena: pageId: 72088 steam: 697370 @@ -94772,17 +92225,17 @@ Lionessy Story: pageId: 63127 steam: 448690 templates: - - '{{Game data/config|Windows|{{p|game}}\renpy\config.py}}' - - '{{Game data/saves|Windows|{{p|game}}\lionessy_story\game\saves\}}' + - "{{Game data/config|Windows|{{p|game}}\\renpy\\config.py}}" + - "{{Game data/saves|Windows|{{p|game}}\\lionessy_story\\game\\saves\\}}" Lionheart: pageId: 39781 steam: 494160 -'Lionheart: Legacy of the Crusader': +"Lionheart: Legacy of the Crusader": gog: 8 pageId: 59281 steam: 595060 templates: - - '{{Game data/config|Windows|{{P|game}}\Lionheart.CFG}}' + - "{{Game data/config|Windows|{{P|game}}\\Lionheart.CFG}}" Liquid Pinball: pageId: 53848 steam: 562050 @@ -94797,51 +92250,47 @@ Liquidator: steam: 716890 Liquidator (1998): pageId: 166583 -'Liquidator 2: Welcome to Hell': +"Liquidator 2: Welcome to Hell": pageId: 83078 templates: - - '{{Game data/config|Windows|{{p|userprofile\documents}}\My Games\Liquidator2\Default\}}' - - '{{Game data/saves|Windows|{{p|userprofile\documents}}\My Games\Liquidator2\Default\save\}}' + - "{{Game data/config|Windows|{{p|userprofile\\documents}}\\My Games\\Liquidator2\\Default\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\documents}}\\My Games\\Liquidator2\\Default\\save\\}}" Liquidators: pageId: 164103 steam: 1382200 templates: - - '{{Game data/config|Windows|{{p|LOCALAPPDATA}}\Liquidatortest\Saved\Config\WindowsNoEditor}}' - - '{{Game data/saves|Windows|{{p|LOCALAPPDATA}}\Liquidatortest\Saved\SaveGames}}' + - "{{Game data/config|Windows|{{p|LOCALAPPDATA}}\\Liquidatortest\\Saved\\Config\\WindowsNoEditor}}" + - "{{Game data/saves|Windows|{{p|LOCALAPPDATA}}\\Liquidatortest\\Saved\\SaveGames}}" Lisa and the Grimoire: pageId: 164489 steam: 1342050 -Lisa's Memory - 丽莎的记忆: +"Lisa's Memory - 丽莎的记忆": pageId: 125290 steam: 679490 -'Lisa: Definitive Edition': +"Lisa: Definitive Edition": pageId: 188733 steam: 335670 steamSide: - - 379310 - 336370 + - 379310 templates: - - >- - {{Game data/config|Windows|{{P|userprofile\appdata\locallow}}\Serenity Forge\LISA The Painful Definitive - Edition\UserSettings.dat|{{P|hkcu}}\Software\Serenity Forge\LISA The Painful Definitive Edition\}} - - >- - {{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Serenity Forge\LISA The Painful Definitive - Edition\Savegame*.dat}} -'Lisa: The First': + - "{{Game data/config|Windows|{{P|userprofile\\appdata\\locallow}}\\Serenity Forge\\LISA The Painful Definitive Edition\\UserSettings.dat|{{P|hkcu}}\\Software\\Serenity Forge\\LISA The Painful Definitive Edition\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Serenity Forge\\LISA The Painful Definitive Edition\\Savegame*.dat}}" +"Lisa: The First": pageId: 186807 templates: - - '{{Game data/saves|Windows|{{P|game}}\*.lsd}}' -'Lisa: The Painful': + - "{{Game data/saves|Windows|{{P|game}}\\*.lsd}}" +"Lisa: The Painful": pageId: 32558 renamedFrom: - Lisa steam: 335670 steamSide: - - 379310 - 336370 + - 379310 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/saves|Windows|{{p|game}}\}}' + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\}}" Lisssn: pageId: 80893 steam: 768270 @@ -94866,7 +92315,7 @@ Lit the Torch: Lithium Inmate 39 Relapsed Edition: pageId: 149977 steam: 1161510 -'Lithium: Inmate 39': +"Lithium: Inmate 39": pageId: 40159 steam: 463470 Litil Divil: @@ -94890,37 +92339,35 @@ Little Big Adventure: pageId: 11335 steam: 397330 templates: - - '{{Game data/config|DOS|{{p|game}}\LBA.cfg}}' - - '{{Game data/saves|DOS|{{p|game}}\S****.LBA}}' + - "{{Game data/config|DOS|{{p|game}}\\LBA.cfg}}" + - "{{Game data/saves|DOS|{{p|game}}\\S****.LBA}}" Little Big Adventure 2: gog: 1207658974 pageId: 11341 steam: 398000 templates: - - '{{Game data/config|DOS|{{p|game}}\LBA2.cfg}}' - - '{{Game data/saves|DOS|{{p|game}}\SAVE\}}' -'Little Big Adventure: Enhanced Edition': + - "{{Game data/config|DOS|{{p|game}}\\LBA2.cfg}}" + - "{{Game data/saves|DOS|{{p|game}}\\SAVE\\}}" +"Little Big Adventure: Enhanced Edition": gog: 1207658971 pageId: 135329 steam: 397330 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\LBA\UserDefault.xml}}' - - '{{Game data/saves|Windows|{{p|game}}\saves\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\LBA\\UserDefault.xml}}" + - "{{Game data/saves|Windows|{{p|game}}\\saves\\}}" Little Big Workshop: gog: 1190911087 pageId: 148148 steam: 574720 templates: - - >- - {{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\Mirage Game Studios\Little Big - Workshop\lbw.settings|{{P|hkcu}}\Software\Mirage Game Studios\Little Big Workshop\}} - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Mirage Game Studios\Little Big Workshop\saves\}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Mirage Game Studios\\Little Big Workshop\\lbw.settings|{{P|hkcu}}\\Software\\Mirage Game Studios\\Little Big Workshop\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Mirage Game Studios\\Little Big Workshop\\saves\\}}" Little Briar Rose: pageId: 54335 steam: 555290 templates: - - '{{Game data/saves|Windows|C:\Program Files (x86)\Steam\userdata\steamid\555290\remote}}' -'Little Britain: The Video Game': + - "{{Game data/saves|Windows|C:\\Program Files (x86)\\Steam\\userdata\\steamid\\555290\\remote}}" +"Little Britain: The Video Game": pageId: 90856 Little Brother Jim: pageId: 141833 @@ -94930,14 +92377,14 @@ Little Bug: pageId: 97317 steam: 822190 templates: - - '{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/bubbles/Little Bug/prefs}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\bubbles\Little Bug\SaveData.es3|}}' + - "{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/bubbles/Little Bug/prefs}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\bubbles\\Little Bug\\SaveData.es3|}}" Little Busters!: pageId: 74231 steam: 635940 templates: - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\635940\remote\config.dat}}' - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\635940\remote\data*.*}}' + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\635940\\remote\\config.dat}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\635940\\remote\\data*.*}}" Little Cells: pageId: 47617 steam: 352210 @@ -94966,8 +92413,8 @@ Little Farm: pageId: 41363 steam: 15960 templates: - - '{{Game data/saves|Steam|{{p|programdata}}\Hot Lava Games\Little Farm\1.41\Data\profile0000.xml}}' - - '{{Game data/saves|Steam|{{p|programdata}}\Hot Lava Games\Little Farm\1.41\Data\profile0000.xml}}' + - "{{Game data/saves|Steam|{{p|programdata}}\\Hot Lava Games\\Little Farm\\1.41\\Data\\profile0000.xml}}" + - "{{Game data/saves|Steam|{{p|programdata}}\\Hot Lava Games\\Little Farm\\1.41\\Data\\profile0000.xml}}" Little Fight: pageId: 82020 steam: 777620 @@ -94987,9 +92434,9 @@ Little Hope: pageId: 145722 steam: 1194630 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\LittleHope\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\LittleHope\Saved\SaveGames\}}' -'Little Imps: A Dungeon Builder': + - "{{Game data/config|Windows|{{p|localappdata}}\\LittleHope\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\LittleHope\\Saved\\SaveGames\\}}" +"Little Imps: A Dungeon Builder": pageId: 124346 steam: 883970 Little Inferno: @@ -94997,24 +92444,22 @@ Little Inferno: pageId: 5576 steam: 221260 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Little Inferno\settings.txt}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Little Inferno/settings.txt}}' - - >- - {{Game data/config|Linux|{{P|xdgdatahome}}/littleinferno/settings.txt|{{P|xdgdatahome}}/Tomorrow - Corporation/Little Inferno/settings.txt}} - - '{{Game data/saves|Windows|{{p|appdata}}\Little Inferno\profiles.bin}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Little Inferno/profiles.bin}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/littleinferno/profiles.bin}}' -Little Jack's Adventures: + - "{{Game data/config|Windows|{{p|appdata}}\\Little Inferno\\settings.txt}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Little Inferno/settings.txt}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/littleinferno/settings.txt|{{P|xdgdatahome}}/Tomorrow Corporation/Little Inferno/settings.txt}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Little Inferno\\profiles.bin}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Little Inferno/profiles.bin}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/littleinferno/profiles.bin}}" +"Little Jack's Adventures": pageId: 55706 steam: 571870 -Little King's Story: +"Little King's Story": gog: 1460733072 pageId: 35884 steam: 390310 templates: - - '{{Game data/config|Windows|{{P|game}}\save}}' - - '{{Game data/saves|Windows|{{P|game}}\save}}' + - "{{Game data/config|Windows|{{P|game}}\\save}}" + - "{{Game data/saves|Windows|{{P|game}}\\save}}" Little Kingdom 2: pageId: 55131 steam: 554590 @@ -95022,7 +92467,7 @@ Little Kite: pageId: 70305 steam: 610120 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Anate Studio\Little Kite}}' + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Anate Studio\\Little Kite}}" Little Legend: pageId: 128755 steam: 987310 @@ -95032,7 +92477,7 @@ Little Lords of Twilight: Little Lost Robots: pageId: 130392 steam: 1009590 -Little Marisa's Disaster Journey: +"Little Marisa's Disaster Journey": pageId: 92231 steam: 838940 Little Medusa: @@ -95046,28 +92491,26 @@ Little Misfortune: pageId: 124435 steam: 714120 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Killmonday Games\Little Misfortune\}}' - - >- - {{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Killmonday Games\Little - Misfortune\Little_Misfortune_*.save}} + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Killmonday Games\\Little Misfortune\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Killmonday Games\\Little Misfortune\\Little_Misfortune_*.save}}" Little Miss Lonely: pageId: 63582 steam: 651820 Little Monster at School: pageId: 186458 -Little Mouse's Encyclopedia: +"Little Mouse's Encyclopedia": pageId: 128064 steam: 424200 Little Nightmares: gog: 1433377508 gogSide: + - 1185734803 + - 1352220891 + - 1433377508 + - 1675156362 + - 1863057712 - 1866912153 - 1927525613 - - 1863057712 - - 1675156362 - - 1185734803 - - 1433377508 - - 1352220891 pageId: 39689 steam: 424840 steamSide: @@ -95082,8 +92525,8 @@ Little Nightmares: - 601710 - 640920 templates: - - '{{Game data/config|Windows|{{p|game}}\Atlas\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{p|game}}\Atlas\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{p|game}}\\Atlas\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\Atlas\\Saved\\SaveGames\\}}" Little Nightmares II: gog: 1871006055 gogSide: @@ -95095,17 +92538,17 @@ Little Nightmares II: steamSide: - 1443440 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Helios\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Helios\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Helios\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Helios\\Saved\\SaveGames\\}}" Little Nightmares III: pageId: 189359 steam: 1392860 -'Little Noah: Scion of Paradise': +"Little Noah: Scion of Paradise": pageId: 183961 steam: 1883260 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Cygames, Inc.\Little Noah: Scion of Paradise}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Cygames, Inc_\Little Noah_ Scion of Paradise\*.sav}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Cygames, Inc.\\Little Noah: Scion of Paradise}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Cygames, Inc_\\Little Noah_ Scion of Paradise\\*.sav}}" Little One: pageId: 136995 steam: 1071350 @@ -95115,8 +92558,8 @@ Little Orpheus: steamSide: - 1875930 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\The Chinese Room\Little Orpheus}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\The Chinese Room\Little Orpheus\profiles}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\The Chinese Room\\Little Orpheus}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\The Chinese Room\\Little Orpheus\\profiles}}" Little People: pageId: 70004 steam: 708480 @@ -95124,8 +92567,8 @@ Little Racers Street: pageId: 16769 steam: 262690 templates: - - '{{Game data/config|Steam|{{p|steam}}\userdata\{{p|uid}}\262690\remote\config.xml}}' - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\262690\remote\}}' + - "{{Game data/config|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\262690\\remote\\config.xml}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\262690\\remote\\}}" Little Races: pageId: 128159 steam: 1027000 @@ -95165,13 +92608,13 @@ Little Triangle: Little Walker: pageId: 43714 steam: 448500 -'Little Witch Academia: Chamber of Time': +"Little Witch Academia: Chamber of Time": pageId: 65927 steam: 710470 templates: - - '{{Game data/config|Windows|{{p|game}}\LWA.cfg}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\BANDAI NAMCO Entertainment\Little Witch Academia\14608\Save\}}' -'Little Witch Academia: VR Broom Racing': + - "{{Game data/config|Windows|{{p|game}}\\LWA.cfg}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\BANDAI NAMCO Entertainment\\Little Witch Academia\\14608\\Save\\}}" +"Little Witch Academia: VR Broom Racing": pageId: 170519 steam: 1294450 Little Witch Luana: @@ -95181,7 +92624,7 @@ Little Witch Nobeta: pageId: 132951 steam: 1049890 templates: - - '{{Game data/saves|Windows|{{P|game}}/LittleWitchNobeta_Data/Save}}' + - "{{Game data/saves|Windows|{{P|game}}/LittleWitchNobeta_Data/Save}}" Little Witch in the Woods: pageId: 178002 steam: 1594940 @@ -95196,7 +92639,7 @@ LittleBigSoko: steam: 861480 Littlest Pet Shop: pageId: 178149 -'Littlewitch Romanesque: Editio Regia': +"Littlewitch Romanesque: Editio Regia": pageId: 38424 steam: 349300 Littlewood: @@ -95204,8 +92647,8 @@ Littlewood: pageId: 130545 steam: 894940 templates: - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/SmashGames/Littlewood}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\SmashGames\Littlewood}}' + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/SmashGames/Littlewood}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\SmashGames\\Littlewood}}" Live: pageId: 74716 steam: 696060 @@ -95213,8 +92656,8 @@ Live A Live: pageId: 186232 steam: 2014380 templates: - - '{{Game data/config|Windows|{{p|userprofile\documents}}\My Games\LIVEALIVE\Steam\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{p|userprofile\documents}}\My Games\LIVEALIVE\Steam\{{p|uid}}\SaveGames\}}' + - "{{Game data/config|Windows|{{p|userprofile\\documents}}\\My Games\\LIVEALIVE\\Steam\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\documents}}\\My Games\\LIVEALIVE\\Steam\\{{p|uid}}\\SaveGames\\}}" Live Armor: pageId: 110552 steam: 928630 @@ -95230,7 +92673,7 @@ Live Mince: Live Wire!: pageId: 175912 templates: - - '{{Game data/saves|Windows|{{p|game}}\LIVEWIRE.SAV}}' + - "{{Game data/saves|Windows|{{p|game}}\\LIVEWIRE.SAV}}" Live and Learn: pageId: 77883 steam: 757900 @@ -95240,7 +92683,7 @@ Live checkpoint: Live for Speed: pageId: 87817 templates: - - '{{Game data/config|Windows|{{P|game}}\cfg.txt|{{P|game}}\interface_cfg.txt}}' + - "{{Game data/config|Windows|{{P|game}}\\cfg.txt|{{P|game}}\\interface_cfg.txt}}" Live the Guitar: pageId: 88005 steam: 761220 @@ -95248,21 +92691,21 @@ Livelock: pageId: 36634 steam: 251230 templates: - - '{{Game data/config|Windows|{{P|game}}\VideoSettings.xml}}' - - '{{Game data/saves|Windows|{{P|game}}\SaveGame\}}' + - "{{Game data/config|Windows|{{P|game}}\\VideoSettings.xml}}" + - "{{Game data/saves|Windows|{{P|game}}\\SaveGame\\}}" Lives so Sweet: pageId: 150729 steam: 1165920 -'Liveza: Death of the Earth': +"Liveza: Death of the Earth": pageId: 43209 steam: 463100 Living Dark: pageId: 89728 steam: 565150 -'Living Legends: The Frozen Fear Collection': +"Living Legends: The Frozen Fear Collection": pageId: 46084 steam: 398620 -'Living Legends: Wrath of the Beast': +"Living Legends: Wrath of the Beast": pageId: 110418 steam: 926130 Living The Deal: @@ -95283,12 +92726,12 @@ Lizard: pageId: 87269 steam: 400280 templates: - - '{{Game data/config|Windows|{{P|AppData}}\lizardnes\lizard}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/lizardnes/lizard/}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.local/share/lizardnes/lizard/}}' - - '{{Game data/saves|Windows|{{P|AppData}}\lizardnes\lizard}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/lizardnes/lizard/}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.local/share/lizardnes/lizard/}}' + - "{{Game data/config|Windows|{{P|AppData}}\\lizardnes\\lizard}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/lizardnes/lizard/}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.local/share/lizardnes/lizard/}}" + - "{{Game data/saves|Windows|{{P|AppData}}\\lizardnes\\lizard}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/lizardnes/lizard/}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.local/share/lizardnes/lizard/}}" Lizardquest-Alien waters: pageId: 127838 steam: 1018770 @@ -95301,11 +92744,11 @@ Loader: Loading: pageId: 68132 steam: 694970 -'Loading Human: Chapter 1': +"Loading Human: Chapter 1": pageId: 51406 steam: 522200 templates: - - '{{Game data/saves|Windows|{{p|localappdata}}\LHChapterOne\Saved}}' + - "{{Game data/saves|Windows|{{p|localappdata}}\\LHChapterOne\\Saved}}" Loading Screen Simulator: pageId: 64829 steam: 652980 @@ -95313,7 +92756,7 @@ Loadout: pageId: 14416 steam: 208090 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\EdgeOfReality\Loadout}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\EdgeOfReality\\Loadout}}" Loathe the game: pageId: 156841 steam: 1209300 @@ -95324,7 +92767,7 @@ Lobotomy Corporation: pageId: 152354 steam: 568220 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Project_Moon\Lobotomy}}' + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Project_Moon\\Lobotomy}}" Lobster Empire: pageId: 66808 steam: 665960 @@ -95334,10 +92777,10 @@ Loca-Love My Commuting Crush: Loca-Love My Cute Roommate: pageId: 113682 steam: 916060 -'Lock Her Up: The Trump Supremacy': +"Lock Her Up: The Trump Supremacy": pageId: 79385 steam: 769980 -'Lock On: Modern Air Combat': +"Lock On: Modern Air Combat": pageId: 20236 Lock Parsing: pageId: 79226 @@ -95345,14 +92788,14 @@ Lock Parsing: Lock Parsing 2: pageId: 82344 steam: 797100 -Lock's Quest: +"Lock's Quest": gog: 1799540958 pageId: 58170 steam: 490080 templates: - - '{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/DigitalContinue/LocksQuest_Unity/}}' - - '{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/DigitalContinue/LocksQuest_Unity/}}' -'Lockdown: Stand Alone': + - "{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/DigitalContinue/LocksQuest_Unity/}}" + - "{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/DigitalContinue/LocksQuest_Unity/}}" +"Lockdown: Stand Alone": pageId: 39472 steam: 513270 Locked & Loaded: @@ -95368,10 +92811,8 @@ Locked Up: pageId: 173144 steam: 1258590 templates: - - >- - {{Game - data/config|Windows|{{P|localappdata}}\Locked_Up\Saved\Config\WindowsNoEditor\|{{P|localappdata}}\Locked_Up\Saved\SaveGames\}} - - '{{Game data/saves|Windows|{{P|localappdata}}\Locked_Up\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\Locked_Up\\Saved\\Config\\WindowsNoEditor\\|{{P|localappdata}}\\Locked_Up\\Saved\\SaveGames\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Locked_Up\\Saved\\SaveGames\\}}" Locked-in Syndrome: pageId: 45057 renamedFrom: @@ -95407,8 +92848,8 @@ Locus Solus: Lode Runner: pageId: 76485 templates: - - '{{Game data/saves|PC booter|A:\}}' - - '{{Game data/saves|DOS|{{p|game}}\LR.USR}}' + - "{{Game data/saves|PC booter|A:\\}}" + - "{{Game data/saves|DOS|{{p|game}}\\LR.USR}}" Lode Runner 2: pageId: 140090 Lode Runner Legacy: @@ -95421,7 +92862,7 @@ Lofi Ping Pong: pageId: 128308 steam: 1028570 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\Local\PingPong2\ef1100.cal}}' + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\Local\\PingPong2\\ef1100.cal}}" Log 141: pageId: 156595 steam: 1217160 @@ -95456,8 +92897,8 @@ LogicBots: pageId: 49609 steam: 290020 templates: - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\My Games\Incandescent Games\LogicBots\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/unity.Incandescent Games.LogicBots/Saves/}}' + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\My Games\\Incandescent Games\\LogicBots\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/unity.Incandescent Games.LogicBots/Saves/}}" Logical Now!: pageId: 130482 steam: 1023310 @@ -95492,8 +92933,8 @@ Lolly Joe: pageId: 41787 steam: 436060 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\LollyJoe\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\LollyJoe\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\LollyJoe\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\LollyJoe\\Saved\\SaveGames\\}}" Lolly Pang VR: pageId: 114488 steam: 942870 @@ -95515,34 +92956,32 @@ London Racer: pageId: 88272 London Racer II: pageId: 88276 -'London Racer: Destruction Madness': +"London Racer: Destruction Madness": pageId: 88280 templates: - - '{{Game data/saves|Windows|{{p|game}}}}' -'London Racer: Police Madness': + - "{{Game data/saves|Windows|{{p|game}}}}" +"London Racer: Police Madness": pageId: 88282 templates: - - '{{Game data/config|Windows|{{p|game}}\ABP.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\SaveGame.dat}}' -'London Racer: World Challenge': + - "{{Game data/config|Windows|{{p|game}}\\ABP.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\SaveGame.dat}}" +"London Racer: World Challenge": pageId: 88278 -'London Taxi: Rush Hour': +"London Taxi: Rush Hour": pageId: 88324 Lone Echo: pageId: 128780 Lone Echo II: pageId: 172541 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\rad\loneecho2}}' - - '{{Game data/saves|Windows|{{p|game}}\_local\saves}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\rad\\loneecho2}}" + - "{{Game data/saves|Windows|{{p|game}}\\_local\\saves}}" Lone Fungus: pageId: 189142 steam: 1674780 templates: - - '{{Game data/config|Windows|{{p|steam}}\steamapps\common\Lone Fungus\settings.ini}}' - - >- - {{Game data/saves|Windows|{{p|steam}}\steamapps\common\Lone Fungus\counter*|{{p|steam}}\steamapps\common\Lone - Fungus\pins*|{{p|steam}}\steamapps\common\Lone Fungus\s_data|{{p|steam}}\steamapps\common\Lone Fungus\save*}} + - "{{Game data/config|Windows|{{p|steam}}\\steamapps\\common\\Lone Fungus\\settings.ini}}" + - "{{Game data/saves|Windows|{{p|steam}}\\steamapps\\common\\Lone Fungus\\counter*|{{p|steam}}\\steamapps\\common\\Lone Fungus\\pins*|{{p|steam}}\\steamapps\\common\\Lone Fungus\\s_data|{{p|steam}}\\steamapps\\common\\Lone Fungus\\save*}}" Lone Leader: pageId: 52107 steam: 518800 @@ -95554,21 +92993,19 @@ Lone Survivor: pageId: 3011 steam: 209830 templates: - - '{{Game data/config|Windows|{{p|game}}\LoneSurvivor\META-INF\AIR}}' - - '{{Game data/saves|Windows|{{p|appdata}}\LoneSurvivor\Local Store\Lone Survivor Saved Game}}' - - >- - {{Game - data/saves|Linux|{{p|linuxhome}}/.macromedia/Flash_Player/#SharedObjects/{{p|uid}}/{{p|game}}/LoneSurvivor/}} + - "{{Game data/config|Windows|{{p|game}}\\LoneSurvivor\\META-INF\\AIR}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\LoneSurvivor\\Local Store\\Lone Survivor Saved Game}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.macromedia/Flash_Player/#SharedObjects/{{p|uid}}/{{p|game}}/LoneSurvivor/}}" Lone Vessel: pageId: 71723 steam: 687420 Lone Warrior: pageId: 71621 steam: 633880 -'Lone Wolf: Horizon': +"Lone Wolf: Horizon": pageId: 44653 steam: 429020 -'Loneliness After: Chapter 1': +"Loneliness After: Chapter 1": pageId: 87187 steam: 798480 Lonely: @@ -95584,21 +93021,15 @@ Lonely Knight: pageId: 190134 steam: 1940370 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\NRStudio\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\NRStudio\Saved\SaveGames\}}' -'Lonely Mountains: Downhill': + - "{{Game data/config|Windows|{{P|localappdata}}\\NRStudio\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\NRStudio\\Saved\\SaveGames\\}}" +"Lonely Mountains: Downhill": pageId: 70397 steam: 711540 templates: - - >- - {{Game data/config|Windows|{{P|userprofile}}\AppData\LocalLow\Megagon Industries\Lonely Mountains_ - Downhill\steamuser\data_settings.sav|{{P|hkcu}}\Software\Megagon Industries\Lonely Mountains: Downhill\}} - - >- - {{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Megagon Industries\Lonely Mountains_ - Downhill\steamuser\data_{{P|uid}}.sav}} - - >- - {{Game data/saves|Microsoft - Store|{{P|localappdata}}\Packages\Thunderful.LonelyMontainsDownhill_8j53pwgd019sy\SystemAppData}} + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Megagon Industries\\Lonely Mountains_ Downhill\\steamuser\\data_settings.sav|{{P|hkcu}}\\Software\\Megagon Industries\\Lonely Mountains: Downhill\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Megagon Industries\\Lonely Mountains_ Downhill\\steamuser\\data_{{P|uid}}.sav}}" + - "{{Game data/saves|Microsoft Store|{{P|localappdata}}\\Packages\\Thunderful.LonelyMontainsDownhill_8j53pwgd019sy\\SystemAppData}}" Lonely Skies: pageId: 135069 steam: 1073060 @@ -95609,7 +93040,7 @@ Lonely Yuri: pageId: 87324 steam: 800120 templates: - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\NightTimeSheep\LonelyYuri\savedata\}}' + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\NightTimeSheep\\LonelyYuri\\savedata\\}}" Lonely in the Winter: pageId: 82085 steam: 790290 @@ -95636,7 +93067,7 @@ Long Gone Days: pageId: 39799 steam: 510540 templates: - - '{{Game data/config|Windows| \Users\Username\AppData\LocalLow\BURA\Long Gone Days }}' + - "{{Game data/config|Windows| \\Users\\Username\\AppData\\LocalLow\\BURA\\Long Gone Days }}" Long Live Santa!: pageId: 78156 steam: 763410 @@ -95645,10 +93076,10 @@ Long Live the Queen: pageId: 20280 steam: 251990 templates: - - '{{Game data/config|Windows|{{P|appdata}}\RenPy\LongLiveTheQueen\persistent}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/RenPy/LongLiveTheQueen/persistent}}' - - '{{Game data/saves|Windows|{{P|appdata}}\RenPy\LongLiveTheQueen\*.save}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/RenPy/LongLiveTheQueen/*.save}}' + - "{{Game data/config|Windows|{{P|appdata}}\\RenPy\\LongLiveTheQueen\\persistent}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/RenPy/LongLiveTheQueen/persistent}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\RenPy\\LongLiveTheQueen\\*.save}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/RenPy/LongLiveTheQueen/*.save}}" Long Night: pageId: 49993 steam: 270590 @@ -95668,7 +93099,7 @@ LongStory: Longboard Stunts and Tricks: pageId: 92801 steam: 838420 -'Longest Monday: Unveiling': +"Longest Monday: Unveiling": pageId: 93976 steam: 856410 Longest Night: @@ -95676,13 +93107,13 @@ Longest Night: Longshot Universe: pageId: 60127 steam: 459770 -'Longsword: Tabletop Tactics': +"Longsword: Tabletop Tactics": pageId: 64646 steam: 428610 Lonia Saga 2: pageId: 97882 steam: 861080 -'LooK INside: Chapter 1': +"LooK INside: Chapter 1": pageId: 150908 renamedFrom: - LooK INside @@ -95698,7 +93129,7 @@ Looking for Aliens: pageId: 173163 steam: 1733500 templates: - - '{{Game data/saves|Windows|{{p|appdata}}\AlawarEntertainment\Yustas Game Studio\Looking For Aliens\}}' + - "{{Game data/saves|Windows|{{p|appdata}}\\AlawarEntertainment\\Yustas Game Studio\\Looking For Aliens\\}}" Looking for Heals: pageId: 130518 steam: 1037750 @@ -95710,8 +93141,8 @@ Loom: pageId: 34375 steam: 32340 templates: - - '{{Game data/saves|Windows|{{P|appdata}}\LucasArts\Loom\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Documents/}}' + - "{{Game data/saves|Windows|{{P|appdata}}\\LucasArts\\Loom\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Documents/}}" Looney Rally: pageId: 82428 steam: 799270 @@ -95720,14 +93151,10 @@ Loop Hero: pageId: 165672 steam: 1282730 templates: - - >- - {{Game - data/config|Windows|{{p|localappdata}}\Loop_hero\{{p|uid}}\loop_config|{{P|localappdata}}\Loop_Hero\loop_config}} - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/Loop_hero}}' - - >- - {{Game - data/saves|Windows|{{p|localappdata}}\Loop_hero\{{p|uid}}\loop_save*|{{P|localappdata}}\Loop_Hero\loop_save*}} - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/Loop_hero}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Loop_hero\\{{p|uid}}\\loop_config|{{P|localappdata}}\\Loop_Hero\\loop_config}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/Loop_hero}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Loop_hero\\{{p|uid}}\\loop_save*|{{P|localappdata}}\\Loop_Hero\\loop_save*}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/Loop_hero}}" LoopCraft: pageId: 130791 steam: 871160 @@ -95749,15 +93176,15 @@ Loot Box Quest: pageId: 77972 steam: 758500 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\Going Loud Studios\Loot Box Quest\settings.json}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Going Loud Studios\Loot Box Quest\save.json}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Going Loud Studios\\Loot Box Quest\\settings.json}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Going Loud Studios\\Loot Box Quest\\save.json}}" Loot Box Simulator: pageId: 102805 steam: 889240 Loot Box Simulator 20!8: pageId: 80962 steam: 786670 -'Loot Collection: Mahjong': +"Loot Collection: Mahjong": pageId: 72260 steam: 718350 Loot Hero DX: @@ -95773,20 +93200,20 @@ Loot Rascals: pageId: 58031 steam: 443880 templates: - - '{{Game data/config|Windows|{{P|appdata}}\LootRascals\*.json}}' - - '{{Game data/saves|Windows|{{P|appdata}}\LootRascals\}}' + - "{{Game data/config|Windows|{{P|appdata}}\\LootRascals\\*.json}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\LootRascals\\}}" Loot River: pageId: 177531 steam: 1494260 templates: - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\straka_studio\Loot River\Saves}}' + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\straka_studio\\Loot River\\Saves}}" Loot Run: pageId: 76927 steam: 733570 Loot or Die: pageId: 39009 steam: 523760 -Loot'N Shoot: +"Loot'N Shoot": pageId: 68901 steam: 698740 Lootbox Lyfe: @@ -95849,7 +93276,7 @@ Lord of the Seal: Lord of the click: pageId: 129963 steam: 1044170 -'Lordian: Karma': +"Lordian: Karma": pageId: 94336 steam: 769640 Lords Mobile: @@ -95860,26 +93287,26 @@ Lords and Villeins: pageId: 171881 steam: 1287530 templates: - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\Honestly Games\Lords and Villeins\{{p|uid}}}}' + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\Honestly Games\\Lords and Villeins\\{{p|uid}}}}" Lords of Doom: pageId: 75269 templates: - - '{{Game data/saves|DOS|A:\|B:\}}' -'Lords of Doom: The Black God': + - "{{Game data/saves|DOS|A:\\|B:\\}}" +"Lords of Doom: The Black God": pageId: 75272 templates: - - '{{Game data/config|DOS|{{p|game}}\CMDDAT.LD1}}' - - '{{Game data/saves|DOS|{{p|game}}\SAVE_*.LD1}}' + - "{{Game data/config|DOS|{{p|game}}\\CMDDAT.LD1}}" + - "{{Game data/saves|DOS|{{p|game}}\\SAVE_*.LD1}}" Lords of EverQuest: pageId: 155253 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/saves|Windows|{{p|game}}\SavedGames\}}' + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\SavedGames\\}}" Lords of Football: pageId: 40634 steam: 230650 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Geniaware\LoF\Settings\AudioVideo.xml}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\Geniaware\\LoF\\Settings\\AudioVideo.xml}}" Lords of Kingdoms: pageId: 91088 steam: 815260 @@ -95888,8 +93315,8 @@ Lords of Magic: pageId: 36388 steam: 404040 templates: - - '{{Game data/config|Windows|{{p|game}}\settings.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\savegame}}' + - "{{Game data/config|Windows|{{p|game}}\\settings.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\savegame}}" Lords of New York: pageId: 52956 steam: 404070 @@ -95905,25 +93332,25 @@ Lords of Waterdeep: - D&D Lords of Waterdeep steam: 644390 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\SOFTWARE\Playdek\Waterdeep\}}' - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Playdek\Waterdeep\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\SOFTWARE\\Playdek\\Waterdeep\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Playdek\\Waterdeep\\}}" Lords of Xulima: gog: 1420648167 pageId: 34378 steam: 296570 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Lords of Xulima\Configuration.txt}}' - - '{{Game data/config|OS X|{{p|osxhome}}/My Games/Lords of Xulima}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/My Games/Lords of Xulima}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Lords of Xulima\Saves}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/My Games/Lords of Xulima/Saves}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/My Games/Lords of Xulima/Saves}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Lords of Xulima\\Configuration.txt}}" + - "{{Game data/config|OS X|{{p|osxhome}}/My Games/Lords of Xulima}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/My Games/Lords of Xulima}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Lords of Xulima\\Saves}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/My Games/Lords of Xulima/Saves}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/My Games/Lords of Xulima/Saves}}" Lords of the Black Sun: pageId: 13357 steam: 246940 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Arkavi Studios\Lords of the Black Sun\}}' - - '{{Game data/saves|Windows|{{p|game}}\basegame\savegames\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Arkavi Studios\\Lords of the Black Sun\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\basegame\\savegames\\}}" Lords of the Fallen: gog: 1778055342 pageId: 20673 @@ -95935,18 +93362,18 @@ Lords of the Fallen: - 317203 - 317208 templates: - - '{{Game data/config|Windows|{{p|game}}\|{{p|userprofile\Documents}}\Lords of the Fallen\}}' - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\265300\remote\}}' - - '{{Game data/saves|GOG.com|{{p|localappdata}}\GOG.com\Galaxy\Applications\51225745408380260\Storage\Shared\Files\}}' - - '{{Game data/saves|Epic Games Launcher|{{p|localappdata}}\LOTF2\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{p|game}}\\|{{p|userprofile\\Documents}}\\Lords of the Fallen\\}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\265300\\remote\\}}" + - "{{Game data/saves|GOG.com|{{p|localappdata}}\\GOG.com\\Galaxy\\Applications\\51225745408380260\\Storage\\Shared\\Files\\}}" + - "{{Game data/saves|Epic Games Launcher|{{p|localappdata}}\\LOTF2\\Saved\\SaveGames\\}}" Lords of the Fallen (2023): pageId: 181129 renamedFrom: - The Lords of the Fallen steam: 1501750 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\LOTF2\Saved\Config\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\LOTF2\Saved\SaveGames}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\LOTF2\\Saved\\Config\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\LOTF2\\Saved\\SaveGames}}" Lords of the Lockerroom: pageId: 164351 steam: 1068070 @@ -95957,10 +93384,10 @@ Lords of the Realm: pageId: 13795 steam: 254920 templates: - - '{{Game data/config|DOS|{{p|game}}\LORDS.INF}}' - - '{{Game data/config|Windows|{{p|game}}\LORDS.INF}}' - - '{{Game data/saves|DOS|{{p|game}}\*.SAV}}' - - '{{Game data/saves|Windows|{{p|game}}\*.SAV}}' + - "{{Game data/config|DOS|{{p|game}}\\LORDS.INF}}" + - "{{Game data/config|Windows|{{p|game}}\\LORDS.INF}}" + - "{{Game data/saves|DOS|{{p|game}}\\*.SAV}}" + - "{{Game data/saves|Windows|{{p|game}}\\*.SAV}}" Lords of the Realm II: gog: 1207663263 gogSide: @@ -95968,15 +93395,15 @@ Lords of the Realm II: pageId: 8611 steam: 397350 templates: - - '{{Game data/config|Windows|{{p|game}}\LORDS2.INF}}' - - '{{Game data/saves|Windows|{{p|game}}\*.SAV}}' + - "{{Game data/config|Windows|{{p|game}}\\LORDS2.INF}}" + - "{{Game data/saves|Windows|{{p|game}}\\*.SAV}}" Lords of the Realm III: gog: 1207658784 pageId: 14247 steam: 254860 templates: - - '{{Game data/config|Windows|{{p|game}}\*.dat}}' - - '{{Game data/saves|Windows|{{p|game}}\Nobles}}' + - "{{Game data/config|Windows|{{p|game}}\\*.dat}}" + - "{{Game data/saves|Windows|{{p|game}}\\Nobles}}" Lore Finder: pageId: 124613 steam: 981720 @@ -95985,14 +93412,14 @@ Lorelai: pageId: 122768 steam: 593960 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Harvester Games\Lorelai\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Harvester Games\Lorelai\Lorelai_*.save}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Harvester Games\\Lorelai\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Harvester Games\\Lorelai\\Lorelai_*.save}}" Loren The Amazon Princess: pageId: 50721 steam: 257970 templates: - - '{{Game data/config|Windows|{{p|game}}\renpy\config.py}}' - - '{{Game data/saves|Windows|{{p|appdata}}\renpy\Loren_Amazon_Princess\|{{p|game}}\game\saves\}}' + - "{{Game data/config|Windows|{{p|game}}\\renpy\\config.py}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\renpy\\Loren_Amazon_Princess\\|{{p|game}}\\game\\saves\\}}" Lorenzo il Magnifico: pageId: 132824 steam: 1034540 @@ -96001,16 +93428,14 @@ Loria: pageId: 122213 steam: 946660 templates: - - >- - {{Game - data/config|Windows|{{P|userprofile\appdata\locallow}}\Loria\Loria\GameSettings.json|{{P|hkcu}}\SOFTWARE\Loria\Loria\}} - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Loria\Loria\}}' -Lorn's Lure: + - "{{Game data/config|Windows|{{P|userprofile\\appdata\\locallow}}\\Loria\\Loria\\GameSettings.json|{{P|hkcu}}\\SOFTWARE\\Loria\\Loria\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Loria\\Loria\\}}" +"Lorn's Lure": pageId: 168868 steam: 1417930 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Rubeki Games\LornsLure}}' - - '{{Game data/saves|Windows|Rubeki Games\LornsLure}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Rubeki Games\\LornsLure}}" + - "{{Game data/saves|Windows|Rubeki Games\\LornsLure}}" Lornsword Winter Chronicle: pageId: 135471 steam: 960900 @@ -96026,7 +93451,7 @@ Lost (2019): pageId: 166721 steam: 1126290 templates: - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\DSGame\Lost\*.sav}}' + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\DSGame\\Lost\\*.sav}}" Lost Action Hero: pageId: 149903 steam: 1102730 @@ -96034,20 +93459,20 @@ Lost Ark: pageId: 172778 steam: 1599340 templates: - - '{{Game data/config|Windows|{{p|game}}\EFGame\Config\}}' + - "{{Game data/config|Windows|{{p|game}}\\EFGame\\Config\\}}" Lost Artifacts: pageId: 73949 steam: 708150 -'Lost Artifacts: Frozen Queen': +"Lost Artifacts: Frozen Queen": pageId: 149664 steam: 1113750 -'Lost Artifacts: Golden Island': +"Lost Artifacts: Golden Island": pageId: 125229 steam: 873900 -'Lost Artifacts: Soulstone': +"Lost Artifacts: Soulstone": pageId: 123854 steam: 874020 -'Lost Artifacts: Time Machine': +"Lost Artifacts: Time Machine": pageId: 121039 steam: 940810 Lost Base Escape: @@ -96066,16 +93491,16 @@ Lost Castle: pageId: 34847 steam: 434650 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Hunter Studio\Lost Castle\}}' - - '{{Game data/config|OS X|{{P|osxhome}}/Library/Preferences/unity.Hunter Studio.Lost Castle.plist}}' - - '{{Game data/saves|Windows|{{p|hkcu}}\Software\Hunter Studio\Lost Castle\}}' - - '{{Game data/saves|Steam|{{P|steam}}\userdata\{{P|uid}}\434650\remote\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Hunter Studio\\Lost Castle\\}}" + - "{{Game data/config|OS X|{{P|osxhome}}/Library/Preferences/unity.Hunter Studio.Lost Castle.plist}}" + - "{{Game data/saves|Windows|{{p|hkcu}}\\Software\\Hunter Studio\\Lost Castle\\}}" + - "{{Game data/saves|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\434650\\remote\\}}" Lost Chronicles of Zerzura: pageId: 49967 steam: 308330 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\LostChroniclesOfZerzura\}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\LostChroniclesOfZerzura\Savegames\}}' + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\LostChroniclesOfZerzura\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\LostChroniclesOfZerzura\\Savegames\\}}" Lost Cities: pageId: 60794 steam: 520680 @@ -96091,8 +93516,8 @@ Lost Connection: Lost Constellation: pageId: 128972 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Infinite Fall\Lost Constellation\}}' - - '{{Game data/saves|Windows|{{P|hkcu}}\Software\Infinite Fall\Lost Constellation\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Infinite Fall\\Lost Constellation\\}}" + - "{{Game data/saves|Windows|{{P|hkcu}}\\Software\\Infinite Fall\\Lost Constellation\\}}" Lost Cosmonaut: pageId: 43973 steam: 447540 @@ -96109,13 +93534,13 @@ Lost Dimension: pageId: 74870 steam: 626600 templates: - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Ghostlight Ltd\Lost Dimension\}}' + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Ghostlight Ltd\\Lost Dimension\\}}" Lost Eden: gog: 2065676798 pageId: 57770 steam: 579980 templates: - - '{{Game data/saves|DOS|{{p|game}}\EDV2_***.SAV}}' + - "{{Game data/saves|DOS|{{p|game}}\\EDV2_***.SAV}}" Lost Egg: pageId: 139155 steam: 1098510 @@ -96124,15 +93549,15 @@ Lost Eidolons: pageId: 185533 steam: 1580520 templates: - - '{{Game data/config|Windows|{{P|userprofile\appdata\locallow}}\Ocean Drive Studio\Lost Eidolons}}' - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Ocean Drive Studio\Lost Eidolons\Saves}}' + - "{{Game data/config|Windows|{{P|userprofile\\appdata\\locallow}}\\Ocean Drive Studio\\Lost Eidolons}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Ocean Drive Studio\\Lost Eidolons\\Saves}}" Lost Ember: gog: 1505930119 pageId: 58180 steam: 563840 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\LostEmber\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\LostEmber\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\LostEmber\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\LostEmber\\Saved\\SaveGames\\}}" Lost Empire 2977: pageId: 150770 steam: 1166830 @@ -96145,27 +93570,27 @@ Lost Flame: Lost Frontier: pageId: 121472 steam: 928970 -Lost Girl's Diary: +"Lost Girl's Diary": pageId: 51018 steam: 445230 Lost God: pageId: 81958 steam: 694930 -'Lost Grimoires 2: Shard of Mystery': +"Lost Grimoires 2: Shard of Mystery": pageId: 58664 steam: 574270 templates: - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/574270/remote/profile}}' -'Lost Grimoires 3: The Forgotten Well': + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/574270/remote/profile}}" +"Lost Grimoires 3: The Forgotten Well": pageId: 77924 steam: 740090 -'Lost Grimoires: Stolen Kingdom': +"Lost Grimoires: Stolen Kingdom": pageId: 52832 steam: 536780 Lost Home: pageId: 74534 steam: 728020 -'Lost Home : Battle Of Island': +"Lost Home : Battle Of Island": pageId: 148477 steam: 1165010 Lost Horizon: @@ -96173,17 +93598,15 @@ Lost Horizon: pageId: 37598 steam: 40350 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\Lost Horizon\*.ini}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\Lost Horizon\*.sav}}' + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\Lost Horizon\\*.ini}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\Lost Horizon\\*.sav}}" Lost Horizon 2: gog: 1632524832 pageId: 46186 steam: 395560 templates: - - >- - {{Game data/config|Windows|{{P|userprofile\Documents}}\Lost_Horizon_2\Options.txt|{{P|hkcu}}\SOFTWARE\Animation - Arts\Lost Horizon 2\}} - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\Lost_Horizon_2\SaveGames\*.txt}}' + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\Lost_Horizon_2\\Options.txt|{{P|hkcu}}\\SOFTWARE\\Animation Arts\\Lost Horizon 2\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\Lost_Horizon_2\\SaveGames\\*.txt}}" Lost In Dungeon: pageId: 149340 steam: 1159590 @@ -96200,52 +93623,52 @@ Lost Judgment: pageId: 181528 steam: 2058190 templates: - - '{{Game data/config|Windows|{{P|appdata}}\Sega\LostJudgment\Steam\}}' - - '{{Game data/saves|Windows|{{P|appdata}}\Sega\LostJudgment\Steam\{{P|uid}}\}}' + - "{{Game data/config|Windows|{{P|appdata}}\\Sega\\LostJudgment\\Steam\\}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\Sega\\LostJudgment\\Steam\\{{P|uid}}\\}}" Lost Jumping Frog: pageId: 74207 steam: 733980 -Lost King's Lullaby: +"Lost King's Lullaby": pageId: 130490 steam: 737670 Lost Labyrinth Extended Version: pageId: 45491 steam: 420920 -'Lost Lands: A Hidden Object Adventure': +"Lost Lands: A Hidden Object Adventure": pageId: 38037 steam: 392950 -'Lost Lands: Dark Overlord': +"Lost Lands: Dark Overlord": pageId: 47467 steam: 377450 templates: - - '{{Game data/saves|Windows|{{P|steam}}\userdata\{{P|uid}}\377450\remote\}}' -'Lost Lands: Ice Spell': + - "{{Game data/saves|Windows|{{P|steam}}\\userdata\\{{P|uid}}\\377450\\remote\\}}" +"Lost Lands: Ice Spell": pageId: 103337 steam: 846690 -'Lost Lands: Mahjong': +"Lost Lands: Mahjong": pageId: 37549 steam: 435030 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Five-BN Games\Mahjong\}}' -'Lost Lands: Mistakes of the Past': + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Five-BN Games\\Mahjong\\}}" +"Lost Lands: Mistakes of the Past": pageId: 123928 steam: 986820 -'Lost Lands: The Four Horsemen': +"Lost Lands: The Four Horsemen": pageId: 37217 steam: 372940 -'Lost Lands: The Golden Curse': +"Lost Lands: The Golden Curse": pageId: 37317 steam: 433000 -'Lost Lands: The Wanderer': +"Lost Lands: The Wanderer": pageId: 61986 steam: 626640 Lost Legend: pageId: 99246 steam: 864020 -'Lost Legends: The Pharaoh''s Tomb': +"Lost Legends: The Pharaoh's Tomb": pageId: 64737 steam: 652830 -'Lost Legends: The Weeping Woman': +"Lost Legends: The Weeping Woman": pageId: 45960 steam: 397440 Lost Letters (of Seraphina): @@ -96263,37 +93686,35 @@ Lost On The Island: Lost Orbit: pageId: 47933 steam: 282640 -'Lost Orbit: Terminal Velocity': +"Lost Orbit: Terminal Velocity": pageId: 140918 renamedFrom: - - 'LOST ORBIT: Terminal Velocity' + - "LOST ORBIT: Terminal Velocity" steam: 372320 Lost Planet 2: pageId: 10497 steam: 45750 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\capcom\LOST PLANET 2\config.ini}}' - - >- - {{Game data/saves|Windows|{{p|userprofile\Documents}}\capcom\LOST PLANET - 2\{{p|uid}}\Lostplanet2.Lostplanet2Save-capcom}} + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\capcom\\LOST PLANET 2\\config.ini}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\capcom\\LOST PLANET 2\\{{p|uid}}\\Lostplanet2.Lostplanet2Save-capcom}}" Lost Planet 3: pageId: 9068 steam: 226720 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\LostPlanetGame\LostPlanetGame\Config\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\LostPlanetGame\LostPlanetGame\SaveData\}}' -'Lost Planet: Extreme Condition': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\LostPlanetGame\\LostPlanetGame\\Config\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\LostPlanetGame\\LostPlanetGame\\SaveData\\}}" +"Lost Planet: Extreme Condition": pageId: 19815 steam: 6510 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\capcom\lostplanet\config.ini}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\capcom\lostplanet\*.LostplanetSave-capcom}}' -'Lost Planet: Extreme Condition Colonies Edition': + - "{{Game data/config|Windows|{{p|localappdata}}\\capcom\\lostplanet\\config.ini}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\capcom\\lostplanet\\*.LostplanetSave-capcom}}" +"Lost Planet: Extreme Condition Colonies Edition": pageId: 20036 steam: 45720 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\capcom\lostplanetcolonies\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\capcom\lostplanetcolonies\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\capcom\\lostplanetcolonies\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\capcom\\lostplanetcolonies\\}}" Lost Region: pageId: 105527 steam: 331810 @@ -96308,8 +93729,8 @@ Lost Ruins: pageId: 167902 steam: 1306630 templates: - - '{{Game data/config|Windows|{{P|game}}\Settings\settings.xml|{{P|hkcu}}\SOFTWARE\Altari Games\LostRuins\}}' - - '{{Game data/saves|Windows|{{P|game}}\Saves\}}' + - "{{Game data/config|Windows|{{P|game}}\\Settings\\settings.xml|{{P|hkcu}}\\SOFTWARE\\Altari Games\\LostRuins\\}}" + - "{{Game data/saves|Windows|{{P|game}}\\Saves\\}}" Lost Saga: pageId: 152325 Lost Satellite: @@ -96320,8 +93741,8 @@ Lost Sea: pageId: 35038 steam: 334280 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\eastasiasoft\lostsea\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\eastasiasoft\lostsea\}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\eastasiasoft\\lostsea\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\eastasiasoft\\lostsea\\}}" Lost Secret of the Rainforest: pageId: 147104 Lost Sector Online: @@ -96330,7 +93751,7 @@ Lost Sector Online: Lost Shipwreck: pageId: 72664 steam: 696250 -'Lost Socks: Naughty Brothers': +"Lost Socks: Naughty Brothers": pageId: 51561 steam: 501480 Lost Soul Aside: @@ -96339,8 +93760,8 @@ Lost Sphear: pageId: 63050 steam: 525240 templates: - - '{{Game data/config|Windows|{{P|userprofile\documents}}\My Games\LOST SPHEAR\CONFIG.dat}}' - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{P|uid}}/525240/remote/}}' + - "{{Game data/config|Windows|{{P|userprofile\\documents}}\\My Games\\LOST SPHEAR\\CONFIG.dat}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{P|uid}}/525240/remote/}}" Lost Squad: pageId: 39777 steam: 284080 @@ -96353,19 +93774,19 @@ Lost Tales - The Castle Escape: Lost Technology: pageId: 66621 steam: 420520 -'Lost Viking: Kingdom of Women': +"Lost Viking: Kingdom of Women": pageId: 151551 steam: 1155850 Lost Wing: pageId: 75522 steam: 556960 -'Lost Words: Beyond the Page': +"Lost Words: Beyond the Page": gog: 1868051744 pageId: 122798 steam: 599610 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\SOFTWARE\Fourth State\Lost Words}}' - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Fourth State\Lost Words\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\SOFTWARE\\Fourth State\\Lost Words}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Fourth State\\Lost Words\\}}" Lost and Found RPG: pageId: 121343 steam: 955770 @@ -96386,8 +93807,8 @@ Lost in Harmony: pageId: 76388 steam: 509400 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\SOFTWARE\Digixart Entertainment\LostinHarmony\}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\My Games\AutoSave\PlayerPrefs\save.dat}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\SOFTWARE\\Digixart Entertainment\\LostinHarmony\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\My Games\\AutoSave\\PlayerPrefs\\save.dat}}" Lost in Nature: pageId: 59049 steam: 601500 @@ -96401,11 +93822,11 @@ Lost in Play: steamSide: - 1897210 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\HappyJuice\LostInPlay\}}' - - '{{Game data/config|OS X|{{P|osxhome}}/Library/Preferences/com.happyjuice.lostinplay.plist}}' - - '{{Game data/saves|GOG.com|{{P|hkcu}}\Software\HappyJuice\LostInPlay\}}' - - '{{Game data/saves|Steam|{{P|userprofile\appdata\locallow}}\Happyjuice\LostInPlay\}}' - - '{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/com.happyjuice.lostinplay/}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\HappyJuice\\LostInPlay\\}}" + - "{{Game data/config|OS X|{{P|osxhome}}/Library/Preferences/com.happyjuice.lostinplay.plist}}" + - "{{Game data/saves|GOG.com|{{P|hkcu}}\\Software\\HappyJuice\\LostInPlay\\}}" + - "{{Game data/saves|Steam|{{P|userprofile\\appdata\\locallow}}\\Happyjuice\\LostInPlay\\}}" + - "{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/com.happyjuice.lostinplay/}}" Lost in Purple: pageId: 67217 steam: 688600 @@ -96413,17 +93834,15 @@ Lost in Random: pageId: 169422 steam: 1462570 templates: - - >- - {{Game data/config|Windows|{{P|userprofile\appdata\locallow}}\Zoink Games\Lost In - Random\|{{p|hkcu}}\SOFTWARE\Zoink Games\Lost In Random\}} - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Zoink Games\Lost In Random\}}' -'Lost in Reefs: Antarctic': + - "{{Game data/config|Windows|{{P|userprofile\\appdata\\locallow}}\\Zoink Games\\Lost In Random\\|{{p|hkcu}}\\SOFTWARE\\Zoink Games\\Lost In Random\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Zoink Games\\Lost In Random\\}}" +"Lost in Reefs: Antarctic": pageId: 51710 steam: 541970 Lost in Secular Love: pageId: 52390 steam: 520850 -'Lost in Sky: Violent Seed': +"Lost in Sky: Violent Seed": pageId: 124522 steam: 763180 Lost in Space: @@ -96444,8 +93863,8 @@ Lost in Vivo: pageId: 120986 steam: 963710 templates: - - '{{Game data/config|Windows|{{p|HKCU}}\Software\Lag Studios\Lost in Vivo}}' - - '{{Game data/saves|Windows|{{p|HKCU}}\Software\Lag Studios\Lost in Vivo}}' + - "{{Game data/config|Windows|{{p|HKCU}}\\Software\\Lag Studios\\Lost in Vivo}}" + - "{{Game data/saves|Windows|{{p|HKCU}}\\Software\\Lag Studios\\Lost in Vivo}}" Lost in Woods 2: pageId: 40134 steam: 528090 @@ -96461,7 +93880,7 @@ Lost in the Forest: Lost in the Ocean VR: pageId: 58328 steam: 596640 -'Lost in the Rift: Reborn': +"Lost in the Rift: Reborn": pageId: 53397 steam: 542520 Lost in the Tomb: @@ -96470,21 +93889,21 @@ Lost in the Tomb: Lost with Dinosaurs: pageId: 68925 steam: 702200 -'Lost: Via Domus': +"Lost: Via Domus": pageId: 52971 steam: 15290 LostWinds: pageId: 35374 steam: 447780 templates: - - '{{Game data/config|Windows|{{P|game}}\config.xml}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\Saved Games\Frontier Developments\LostWinds1\LW1}}' -'LostWinds 2: Winter of the Melodias': + - "{{Game data/config|Windows|{{P|game}}\\config.xml}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Saved Games\\Frontier Developments\\LostWinds1\\LW1}}" +"LostWinds 2: Winter of the Melodias": pageId: 44003 steam: 447800 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\Saved Games\Frontier Developments\LostWinds2\LW2}}' -Lot'zAmonsters: + - "{{Game data/saves|Windows|{{p|userprofile}}\\Saved Games\\Frontier Developments\\LostWinds2\\LW2}}" +"Lot'zAmonsters": pageId: 110342 steam: 925280 Lotia: @@ -96496,9 +93915,9 @@ Lots of Balls: Lotus Challenge: pageId: 24182 templates: - - '{{Game data/config|Windows|{{p|game}}\data\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Lotus Challenge\SaveGame\}}' -'Loud House: Outta Control': + - "{{Game data/config|Windows|{{p|game}}\\data\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Lotus Challenge\\SaveGame\\}}" +"Loud House: Outta Control": pageId: 157979 Loud on Planet X: pageId: 43528 @@ -96509,20 +93928,20 @@ Loud or Quiet: Louie Cooks: pageId: 45678 steam: 398480 -'Louvre: The Messenger': +"Louvre: The Messenger": pageId: 179829 Love: pageId: 31244 steam: 269270 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\LOVE_Console\config.cfg}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\LOVE_Console\\config.cfg}}" Love & Enchants: pageId: 190598 steam: 1603900 Love 3: pageId: 173496 steam: 1604300 -'Love Alchemy: A Heart In Winter': +"Love Alchemy: A Heart In Winter": pageId: 129601 steam: 1038650 Love And Order: @@ -96531,26 +93950,26 @@ Love And Order: Love Bites: pageId: 76367 steam: 617970 -'Love Casino: Smoking Aces': +"Love Casino: Smoking Aces": pageId: 122178 steam: 963110 Love Chan: pageId: 149420 steam: 1148010 -'Love Chronicles: A Winter''s Spell': +"Love Chronicles: A Winter's Spell": pageId: 102555 steam: 897000 -'Love Chronicles: Salvation': +"Love Chronicles: Salvation": pageId: 87906 renamedFrom: - - 'Love Chronicles: Salvation Collector''s Edition' + - "Love Chronicles: Salvation Collector's Edition" steam: 805030 -'Love Chronicles: The Spell': +"Love Chronicles: The Spell": pageId: 56965 renamedFrom: - - 'Love Chronicles: The Spell Collector''s Edition' + - "Love Chronicles: The Spell Collector's Edition" steam: 557720 -'Love Chronicles: The Sword and the Rose': +"Love Chronicles: The Sword and the Rose": pageId: 68384 steam: 695940 Love Engine: @@ -96560,26 +93979,26 @@ Love Esquire: pageId: 105259 steam: 849740 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Yangyang Mobile\Love Esquire\State\*}}' + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Yangyang Mobile\\Love Esquire\\State\\*}}" Love Fantasy: pageId: 164951 steam: 1460040 Love Games: pageId: 109612 steam: 911470 -'Love Hentai: Endgame': +"Love Hentai: Endgame": pageId: 127892 steam: 1000550 -'Love Hentai: Sexy Body': +"Love Hentai: Sexy Body": pageId: 112560 steam: 935700 Love In Drawing: pageId: 123613 steam: 981260 -'Love Is Blind: Mutants': +"Love Is Blind: Mutants": pageId: 44142 renamedFrom: - - 'Love is Blind: Mutants' + - "Love is Blind: Mutants" steam: 444460 Love Is In The Space: pageId: 138779 @@ -96591,11 +94010,11 @@ Love Letter: pageId: 113814 steam: 926520 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Nomad Games\Love Letter\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Nomad Games\\Love Letter\\}}" Love Me Forever: pageId: 156758 steam: 1192540 -'Love Mythos: Sanctuary Island': +"Love Mythos: Sanctuary Island": pageId: 132942 steam: 1048610 Love Obsession: @@ -96604,7 +94023,7 @@ Love Obsession: Love Rhythm: pageId: 153119 renamedFrom: - - 'Hentai Crush: Love Rhythm' + - "Hentai Crush: Love Rhythm" steam: 1185520 Love Ribbon: pageId: 53972 @@ -96618,48 +94037,48 @@ Love Shoot: Love Simulation: pageId: 92744 steam: 836480 -'Love Stories: Furry Shades of Gay': +"Love Stories: Furry Shades of Gay": pageId: 169604 steam: 1399930 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\SOFTWARE\Furlough Games\Love Stories\}}' - - '{{Game data/saves|Windows|{{p|game}}\Love Stories\Love Stories_Data\NaninovelData\Saves\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\Furlough Games\\Love Stories\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\Love Stories\\Love Stories_Data\\NaninovelData\\Saves\\}}" Love Story of Sparrow: pageId: 127518 renamedFrom: - 咕啾!文鸟恋爱物语 Love Story of Sparrow steam: 926310 -'Love Story: Letters from the Past': +"Love Story: Letters from the Past": pageId: 59500 steam: 610110 -'Love Story: The Beach Cottage': +"Love Story: The Beach Cottage": pageId: 79318 steam: 770880 -'Love Story: The Way Home': +"Love Story: The Way Home": pageId: 95455 steam: 866730 -'Love Sucks: Night One': +"Love Sucks: Night One": pageId: 179039 steam: 1577420 Love Thyself - A Horatio Story: pageId: 131996 steam: 949060 templates: - - '{{Game data/config|Windows|{{P|appdata}}\renpy\LoveThyself\persistent|{{P|game}}\game\saves\persistent}}' - - '{{Game data/saves|Windows|{{P|appdata}}\renpy\LoveThyself\*.save|{{P|game}}\game\saves\*.save}}' -'Love Vibe: Aria': + - "{{Game data/config|Windows|{{P|appdata}}\\renpy\\LoveThyself\\persistent|{{P|game}}\\game\\saves\\persistent}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\renpy\\LoveThyself\\*.save|{{P|game}}\\game\\saves\\*.save}}" +"Love Vibe: Aria": pageId: 100206 steam: 884320 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Red Vibe Studio\Love Vibe: Aria\}}' - - '{{Game data/saves|Windows|{{p|hkcu}}\Software\Red Vibe Studio\Love Vibe: Aria\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Red Vibe Studio\\Love Vibe: Aria\\}}" + - "{{Game data/saves|Windows|{{p|hkcu}}\\Software\\Red Vibe Studio\\Love Vibe: Aria\\}}" Love Wish: pageId: 155586 renamedFrom: - Love wish steam: 1153430 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\wangyibo\lovewishs\data\*}}' + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\wangyibo\\lovewishs\\data\\*}}" Love all you have left: pageId: 74431 steam: 727140 @@ -96673,8 +94092,8 @@ Love in the Glen: pageId: 33942 steam: 459130 templates: - - '{{Game data/config|Windows|{{p|game}}\data\system\Config.tjs}}' - - '{{Game data/saves|Windows|{{p|game}}\LoveInTheGlen2_tyrano_data.sav}}' + - "{{Game data/config|Windows|{{p|game}}\\data\\system\\Config.tjs}}" + - "{{Game data/saves|Windows|{{p|game}}\\LoveInTheGlen2_tyrano_data.sav}}" Love in the Limelight: pageId: 145912 steam: 1006250 @@ -96682,8 +94101,8 @@ Love is Dead: pageId: 140296 steam: 453910 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Curiobot\Love is Dead\}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Curiobot\Love is Dead\ModifyMeDestroyYourGame.ctx}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Curiobot\\Love is Dead\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Curiobot\\Love is Dead\\ModifyMeDestroyYourGame.ctx}}" Love love demon ji-恋恋妖姬: pageId: 152975 steam: 1193110 @@ -96699,21 +94118,21 @@ Love ritual: Love the game: pageId: 154097 steam: 1200990 -Love's Sweet Garnish: +"Love's Sweet Garnish": pageId: 109304 steam: 891510 templates: - - '{{Game data/config|Windows|{{p|appdata}}\CANVAS+GARDEN\koiama_ml}}' - - '{{Game data/saves|Windows|{{P|appdata}}\CANVAS+GARDEN\koiama_ml}}' -'Love, Guitars, and the Nashville Skyline': + - "{{Game data/config|Windows|{{p|appdata}}\\CANVAS+GARDEN\\koiama_ml}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\CANVAS+GARDEN\\koiama_ml}}" +"Love, Guitars, and the Nashville Skyline": pageId: 53433 steam: 555650 -'Love, Money, Rock''n''Roll': +"Love, Money, Rock'n'Roll": pageId: 60345 steam: 615530 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Soviet Games\Love, Money, Rock''n''Roll}}' -'Love, Sam': + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Soviet Games\\Love, Money, Rock'n'Roll}}" +"Love, Sam": pageId: 138762 steam: 1073820 LoveBeat: @@ -96735,7 +94154,7 @@ LoveKami -Useless Goddess-: pageId: 61788 steam: 626510 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\Saved Games\MoeNovel\LoveKami -Useless Goddess-\}}' + - "{{Game data/saves|Windows|{{p|userprofile}}\\Saved Games\\MoeNovel\\LoveKami -Useless Goddess-\\}}" LoveSick Darlings: pageId: 154384 steam: 1151410 @@ -96745,20 +94164,18 @@ Lovecraft Quest - A Comix Game: Lovecraft Tales: pageId: 100654 steam: 806750 -Lovecraft's Untold Stories: +"Lovecraft's Untold Stories": gog: 1674669448 pageId: 96647 steam: 871420 templates: - - >- - {{Game - data/config|Windows|{{P|game}}\Lus_Data\Save\UserSetting.conf|{{P|hkcu}}\SOFTWARE\BliniGames\LovecraftsUntoldStories\}} - - '{{Game data/saves|Windows|{{P|game}}\Lus_Data\Save\*.lus}}' -Lovecraft's Untold Stories 2: + - "{{Game data/config|Windows|{{P|game}}\\Lus_Data\\Save\\UserSetting.conf|{{P|hkcu}}\\SOFTWARE\\BliniGames\\LovecraftsUntoldStories\\}}" + - "{{Game data/saves|Windows|{{P|game}}\\Lus_Data\\Save\\*.lus}}" +"Lovecraft's Untold Stories 2": gog: 1907953247 pageId: 171785 steam: 1401400 -'Lovefield General: Back to Work': +"Lovefield General: Back to Work": pageId: 100490 steam: 890340 Loveless cat: @@ -96781,33 +94198,33 @@ Lovely Planet: pageId: 20688 steam: 298600 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\QUICKTEQUILA\Lovely Planet\}}' - - '{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/QUICKTEQUILA/Lovely Planet/}}' - - '{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/QUICKTEQUILA/Lovely Planet/}}' - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/298600/remote/savefile.dat}}' -'Lovely Planet 2: April Skies': + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\QUICKTEQUILA\\Lovely Planet\\}}" + - "{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/QUICKTEQUILA/Lovely Planet/}}" + - "{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/QUICKTEQUILA/Lovely Planet/}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/298600/remote/savefile.dat}}" +"Lovely Planet 2: April Skies": pageId: 138946 steam: 1019590 Lovely Planet Arcade: pageId: 42137 steam: 436000 templates: - - '{{Game data/saves|Windows|{{p|game}}\save}}' + - "{{Game data/saves|Windows|{{p|game}}\\save}}" Lovely Planet Remix: pageId: 173395 steam: 1604780 -Lovely Weather We're Having: +"Lovely Weather We're Having": pageId: 45684 steam: 404150 Loverowind: pageId: 177086 steam: 1625960 templates: - - '{{Game data/saves|Windows|{{P|localappdata}}\Loverowind\Saved\SaveGames\}}' -Lovers ' Smiles: + - "{{Game data/saves|Windows|{{P|localappdata}}\\Loverowind\\Saved\\SaveGames\\}}" +"Lovers ' Smiles": pageId: 121073 steam: 956100 -Lovers ' Smiles 2: +"Lovers ' Smiles 2": pageId: 129763 steam: 1031550 Lovers in a Dangerous Spacetime: @@ -96815,19 +94232,17 @@ Lovers in a Dangerous Spacetime: pageId: 28509 steam: 252110 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\LoversInADangerousSpacetime\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/LoversInADangerousSpacetime/}}' - - >- - {{Game - data/config|Linux|{{P|xdgconfighome}}/unity3d/AsteroidBase/LoversInADangerousSpacetime/prefs|{{P|xdgdatahome}}/LoversInADangerousSpacetime/settings.dat}} - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\LoversInADangerousSpacetime\save.dat}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/LoversInADangerousSpacetime/save.dat}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/LoversInADangerousSpacetime/save.dat}}' + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\LoversInADangerousSpacetime\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/LoversInADangerousSpacetime/}}" + - "{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/AsteroidBase/LoversInADangerousSpacetime/prefs|{{P|xdgdatahome}}/LoversInADangerousSpacetime/settings.dat}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\LoversInADangerousSpacetime\\save.dat}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/LoversInADangerousSpacetime/save.dat}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/LoversInADangerousSpacetime/save.dat}}" Lovers of Aether: pageId: 132006 steam: 1043180 templates: - - '{{Game data/saves|Windows|{{P|localappdata}}\LoversOfAether\}}' + - "{{Game data/saves|Windows|{{P|localappdata}}\\LoversOfAether\\}}" Lovestory: pageId: 104937 steam: 888640 @@ -96837,14 +94252,14 @@ Low Desert Punk: Low Light Combat: pageId: 5159 templates: - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Wolfire Games/Low Light Combat/}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Wolfire Games/Low Light Combat/}}' + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Wolfire Games/Low Light Combat/}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Wolfire Games/Low Light Combat/}}" Low Magic Age: gog: 2047524778 pageId: 56092 steam: 576770 templates: - - '{{Game data/saves|Windows|{{p|game}}\saves\}}' + - "{{Game data/saves|Windows|{{p|game}}\\saves\\}}" LowPoly 3D Art Paint by Number: pageId: 148968 steam: 1159490 @@ -96854,7 +94269,7 @@ Lowglow: Lowpoly Hero: pageId: 79852 steam: 770360 -'Loyalty and Blood: Viktor Origins': +"Loyalty and Blood: Viktor Origins": pageId: 88120 steam: 624320 Lozenge: @@ -96863,26 +94278,24 @@ Lozenge: Lu Bu Maker: pageId: 100158 steam: 882900 -'LuGame: Lunchtime Games Club!': +"LuGame: Lunchtime Games Club!": pageId: 132737 steam: 812840 Lucadian Chronicles: pageId: 46058 steam: 392620 -'Lucah: Born of a Dream': +"Lucah: Born of a Dream": pageId: 104809 steam: 896460 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\melessthanthree\Lucah: Born of a Dream}}' - - '{{Game data/config|Steam|{{P|game}}\Lucah Born of a Dream_Data\boot.cfg}}' - - >- - {{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\melessthanthree\Lucah_ Born of a - Dream\savedGames.gd}} - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/melessthanthree/Lucah_ Born of a Dream/}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\melessthanthree\\Lucah: Born of a Dream}}" + - "{{Game data/config|Steam|{{P|game}}\\Lucah Born of a Dream_Data\\boot.cfg}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\melessthanthree\\Lucah_ Born of a Dream\\savedGames.gd}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/melessthanthree/Lucah_ Born of a Dream/}}" Lucent Heart: pageId: 44665 steam: 283060 -'Luci: Horror Story': +"Luci: Horror Story": pageId: 56886 steam: 581860 Lucid: @@ -96898,7 +94311,7 @@ Lucid Cycle: pageId: 177084 steam: 1514480 templates: - - '{{Game data/saves|Windows|{{P|localappdata}}\LucidCycle\Saved\SaveGames\}}' + - "{{Game data/saves|Windows|{{P|localappdata}}\\LucidCycle\\Saved\\SaveGames\\}}" Lucid Dream: pageId: 88063 steam: 773090 @@ -96911,28 +94324,28 @@ Lucid Path: Lucid Trips: pageId: 39721 steam: 389260 -'Lucid9: Inciting Incident': +"Lucid9: Inciting Incident": pageId: 33610 steam: 439940 templates: - - '{{Game data/config|Windows|{{p|game}}\renpy\config.py}}' - - '{{Game data/saves|Windows|{{p|appdata}}\RenPy\Lucid9-1440647848\}}' + - "{{Game data/config|Windows|{{p|game}}\\renpy\\config.py}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\RenPy\\Lucid9-1440647848\\}}" Lucidity: pageId: 41229 steam: 32410 templates: - - '{{Game data/config|Windows|{{P|programdata}}\LucasArts\Lucidity\{{P|uid}}\config.xml}}' - - '{{Game data/saves|Windows|{{P|programdata}}\LucasArts\Lucidity\{{P|uid}}\}}' + - "{{Game data/config|Windows|{{P|programdata}}\\LucasArts\\Lucidity\\{{P|uid}}\\config.xml}}" + - "{{Game data/saves|Windows|{{P|programdata}}\\LucasArts\\Lucidity\\{{P|uid}}\\}}" Lucie: pageId: 89403 steam: 815660 Lucifer Within Us: pageId: 139705 steam: 717560 -Lucifer's Forest: +"Lucifer's Forest": pageId: 110564 steam: 929000 -Lucifer's Nine Trophies: +"Lucifer's Nine Trophies": pageId: 90403 steam: 817810 Lucius: @@ -96940,39 +94353,37 @@ Lucius: pageId: 9940 steam: 218640 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Lucius\saves\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Lucius\saves\{{p|uid}}}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Lucius\\saves\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Lucius\\saves\\{{p|uid}}}}" Lucius Demake: pageId: 41733 steam: 364230 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\Shiver Games\Lucius Demake}}' - - '{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/Shiver Games/Lucius Demake/prefs}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Shiver Games\Lucius Demake\saves}}' - - '{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/Shiver Games/Lucius Demake/saves/}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Shiver Games\\Lucius Demake}}" + - "{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/Shiver Games/Lucius Demake/prefs}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Shiver Games\\Lucius Demake\\saves}}" + - "{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/Shiver Games/Lucius Demake/saves/}}" Lucius II: pageId: 23818 steam: 296830 templates: - - '{{Game data/config|Windows|{{P|userprofile}}\AppData\LocalLow\Shiver Games\Lucius II\ProfileData.pro}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Shiver Games/Lucius II/ProfileData.pro}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Shiver Games\Lucius II\}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Shiver Games/Lucius II/}}' + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Shiver Games\\Lucius II\\ProfileData.pro}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Shiver Games/Lucius II/ProfileData.pro}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Shiver Games\\Lucius II\\}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Shiver Games/Lucius II/}}" Lucius III: pageId: 108664 steam: 513290 templates: - - >- - {{Game data/config|Windows|{{P|userprofile}}\AppData\LocalLow\Shiver Games\Lucius III\|{{P|hkcu}}\Software\Shiver - Games\Lucius III}} - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Shiver Games\Lucius III\}}' + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Shiver Games\\Lucius III\\|{{P|hkcu}}\\Software\\Shiver Games\\Lucius III}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Shiver Games\\Lucius III\\}}" Luck Be a Landlord: pageId: 170505 steam: 1404850 templates: - - '{{Game data/config|Windows|{{P|appdata}}\Godot\app_userdata\Luck be a Landlord\LBAL-Settings.save}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/godot/app_userdata/Luck be a Landlord/LBAL-Settings.save}}' - - '{{Game data/saves|Windows|{{P|appdata}}\Godot\app_userdata\Luck be a Landlord\}}' + - "{{Game data/config|Windows|{{P|appdata}}\\Godot\\app_userdata\\Luck be a Landlord\\LBAL-Settings.save}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/godot/app_userdata/Luck be a Landlord/LBAL-Settings.save}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\Godot\\app_userdata\\Luck be a Landlord\\}}" LuckCatchers: pageId: 33715 steam: 454540 @@ -96982,19 +94393,19 @@ Luckless Seven: Luckslinger: pageId: 38012 steam: 358810 -'Lucky Luke: Transcontinental Railroad': +"Lucky Luke: Transcontinental Railroad": pageId: 185383 -'Lucky Luke: Western Fever': +"Lucky Luke: Western Fever": pageId: 177334 templates: - - '{{Game data/saves|Windows|{{p|game}}\SAVE}}' + - "{{Game data/saves|Windows|{{p|game}}\\SAVE}}" Lucky Night VR: pageId: 77076 steam: 753060 -'Lucky Night: Poker Games': +"Lucky Night: Poker Games": pageId: 99558 steam: 862520 -'Lucky Night: Texas Hold''em VR': +"Lucky Night: Texas Hold'em VR": pageId: 66011 steam: 657010 Lucky Of Love: @@ -97015,29 +94426,29 @@ Lucky Skiing: Lucky VS Aliens: pageId: 91023 steam: 823370 -Lucky's Tale: +"Lucky's Tale": pageId: 75933 -Lucky's Tale VR: +"Lucky's Tale VR": pageId: 173613 steam: 1803840 Lucy -The Eternity She Wished For-: pageId: 37233 steam: 430960 templates: - - '{{Game data/config|Windows|{{p|game}}\Config.nkenv}}' - - '{{Game data/saves|Windows|{{p|game}}\Saves\}}' + - "{{Game data/config|Windows|{{p|game}}\\Config.nkenv}}" + - "{{Game data/saves|Windows|{{p|game}}\\Saves\\}}" Lucy Got Problems: pageId: 104777 steam: 879510 templates: - - '{{Game data/config|Windows|{{p|appdata}}\RenPy\LGP-1505403882\persistent}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.renpy/LGP-1505403882/persistent}}' - - '{{Game data/saves|Windows|{{p|appdata}}\RenPy\LGP-1505403882\*.save}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.renpy/LGP-1505403882/*.save}}' + - "{{Game data/config|Windows|{{p|appdata}}\\RenPy\\LGP-1505403882\\persistent}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.renpy/LGP-1505403882/persistent}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\RenPy\\LGP-1505403882\\*.save}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.renpy/LGP-1505403882/*.save}}" Ludicrous Speed: pageId: 95266 steam: 857740 -'Ludo Online: Classic Multiplayer Dice Board Game': +"Ludo Online: Classic Multiplayer Dice Board Game": pageId: 150035 steam: 883080 Ludo Supremo: @@ -97066,25 +94477,25 @@ Luftrausers: pageId: 15883 steam: 233150 templates: - - '{{Game data/config|Windows|{{p|appdata}}\.LUFTRAUSERS\}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.LUFTRAUSERS/}}' - - '{{Game data/saves|Windows|{{p|appdata}}\.LUFTRAUSERS\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/.LUFTRAUSERS/}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.LUFTRAUSERS/}}' - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{P|uid}}/233150/remote/}}' + - "{{Game data/config|Windows|{{p|appdata}}\\.LUFTRAUSERS\\}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.LUFTRAUSERS/}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\.LUFTRAUSERS\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/.LUFTRAUSERS/}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.LUFTRAUSERS/}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{P|uid}}/233150/remote/}}" Luftwaffe Commander: pageId: 189753 -Lufulus' Creatures: +"Lufulus' Creatures": pageId: 156885 steam: 960220 Lugaru: pageId: 201 steam: 25010 templates: - - '{{Game data/config|Windows|{{P|game}}\Data\}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.lugaru/}}' - - '{{Game data/saves|Windows|{{P|game}}\Data\}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.lugaru/}}' + - "{{Game data/config|Windows|{{P|game}}\\Data\\}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.lugaru/}}" + - "{{Game data/saves|Windows|{{P|game}}\\Data\\}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.lugaru/}}" Luke Sidewalker: pageId: 53928 steam: 545860 @@ -97094,25 +94505,23 @@ Lukewarm Ironclad: Lula 3D: pageId: 90839 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\CDV Software Entertainment AG\Lula 3D\}}' - - '{{Game data/saves|Windows|{{p|game}}\Save\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\CDV Software Entertainment AG\\Lula 3D\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\Save\\}}" Lula Flipper: pageId: 92460 Lula Virtual Babe: pageId: 92467 -'Lula: The Sexy Empire': +"Lula: The Sexy Empire": gog: 1443433575 pageId: 131862 templates: - - '{{Game data/saves|Windows|{{p|game}}\DATA\SAVE}}' + - "{{Game data/saves|Windows|{{p|game}}\\DATA\\SAVE}}" Lulu & Ennoi - Sacred Suit Girls: pageId: 148789 steam: 1051590 templates: - - >- - {{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\SmallSqurriel Co_, Ltd\Lulu & Ennoi - Sacred Suit - Girls\}} -Lumak's Wraptiles: + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\SmallSqurriel Co_, Ltd\\Lulu & Ennoi - Sacred Suit Girls\\}}" +"Lumak's Wraptiles": pageId: 68360 steam: 694610 LumbearJack: @@ -97134,13 +94543,13 @@ Lumberjack Simulator: Lumberjack VR: pageId: 73199 steam: 704310 -Lumberjack's Dynasty: +"Lumberjack's Dynasty": gog: 1646868485 pageId: 145213 steam: 968970 templates: - - '{{Game data/config|Windows|{{P|appdata}}\LumberjacksDynasty\Save}}' - - '{{Game data/saves|Windows|{{P|appdata}}\LumberjacksDynasty\Save}}' + - "{{Game data/config|Windows|{{P|appdata}}\\LumberjacksDynasty\\Save}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\LumberjacksDynasty\\Save}}" Lumbermancer: pageId: 35172 steam: 491210 @@ -97160,9 +94569,9 @@ Lumencraft: pageId: 172866 steam: 1713810 templates: - - '{{Game data/config|Windows|{{p|appdata}}\2Dynamic\Lumencraft\}}' - - '{{Game data/saves|Windows|{{p|appdata}}\2Dynamic\Lumencraft\Saves}}' -Lumin's Path: + - "{{Game data/config|Windows|{{p|appdata}}\\2Dynamic\\Lumencraft\\}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\2Dynamic\\Lumencraft\\Saves}}" +"Lumin's Path": pageId: 156224 steam: 1210740 Lumina: @@ -97175,11 +94584,9 @@ Lumines Remastered: pageId: 98348 steam: 851670 templates: - - '{{Game data/config|Steam|{{P|hkcu}}\Software\Enhance Incorporated\LUMINES REMASTERED\}}' - - >- - {{Game data/saves|Microsoft - Store|{{p|localappdata}}\Packages\EnhanceIncorporated.SHAKECoreGame_63vy8jfbpt4dt\SystemAppData\wgs\}} - - '{{Game data/saves|Steam|{{p|game}}\SAV\{{p|uid}}\lumines-remastered.dat}}' + - "{{Game data/config|Steam|{{P|hkcu}}\\Software\\Enhance Incorporated\\LUMINES REMASTERED\\}}" + - "{{Game data/saves|Microsoft Store|{{p|localappdata}}\\Packages\\EnhanceIncorporated.SHAKECoreGame_63vy8jfbpt4dt\\SystemAppData\\wgs\\}}" + - "{{Game data/saves|Steam|{{p|game}}\\SAV\\{{p|uid}}\\lumines-remastered.dat}}" Luminescence: pageId: 90210 steam: 785640 @@ -97191,7 +94598,7 @@ Lumino City: pageId: 21564 steam: 205020 templates: - - '{{Game data/saves|Windows|{{p|appdata}}\com.stateofplaygames.LuminoCity}}' + - "{{Game data/saves|Windows|{{p|appdata}}\\com.stateofplaygames.LuminoCity}}" Luminos: pageId: 130048 steam: 1022870 @@ -97209,8 +94616,8 @@ Lumo: pageId: 34174 steam: 345480 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Triple Eh Ltd\Lumo\}}' - - '{{Game data/saves|Windows|{{P|game}}\tdi\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Triple Eh Ltd\\Lumo\\}}" + - "{{Game data/saves|Windows|{{P|game}}\\tdi\\}}" Lumote: gog: 1453670941 pageId: 108852 @@ -97224,7 +94631,7 @@ Luna (Funomena): Luna Abyss: pageId: 188177 steam: 1933000 -'Luna Online: Reborn': +"Luna Online: Reborn": pageId: 68474 steam: 457590 Luna Sanctus: @@ -97242,34 +94649,32 @@ Luna and Cynthia: Luna and the Moonling: pageId: 69440 steam: 577360 -Luna's Fishing Garden: +"Luna's Fishing Garden": pageId: 169358 steam: 1477790 steamSide: - 1643810 templates: - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\ColdwildGames\FishingGarden\session.*}}' -Luna's Wandering Stars: + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\ColdwildGames\\FishingGarden\\session.*}}" +"Luna's Wandering Stars": pageId: 47893 steam: 330660 -'Luna: Shattered Hearts: Episode 1': +"Luna: Shattered Hearts: Episode 1": pageId: 49261 steam: 331400 -'Luna: The Shadow Dust': +"Luna: The Shadow Dust": gog: 1799999374 pageId: 94142 steam: 465100 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\LanternStudio\LunaTheShadowDust\}}' + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\LanternStudio\\LunaTheShadowDust\\}}" Lunacid: pageId: 177239 steam: 1745510 templates: - - >- - {{Game data/config|Windows|{{P|hkcu}}\SOFTWARE\KIRA - LLC\LUNACID|{{P|game}}\LUNACID_Data\SETTINGS.MIDNIGHT|{{P|game}}\LUNACID_Data\Resources\BINDINGS.txt}} - - '{{Game data/saves|Windows|{{P|game}}\LUNACID_Data\SAVE_*.MIDNIGHT}}' -'Lunacy: Saint Rhodes': + - "{{Game data/config|Windows|{{P|hkcu}}\\SOFTWARE\\KIRA LLC\\LUNACID|{{P|game}}\\LUNACID_Data\\SETTINGS.MIDNIGHT|{{P|game}}\\LUNACID_Data\\Resources\\BINDINGS.txt}}" + - "{{Game data/saves|Windows|{{P|game}}\\LUNACID_Data\\SAVE_*.MIDNIGHT}}" +"Lunacy: Saint Rhodes": pageId: 109172 steam: 874450 Lunaform: @@ -97281,24 +94686,24 @@ Lunapark VR: Lunar Flight: pageId: 40799 steam: 208600 -'Lunar Manor: Episode 1': +"Lunar Manor: Episode 1": pageId: 125861 steam: 979410 Lunar Soil: pageId: 90446 steam: 823210 -'Lunar Stone: Origin of Blood': +"Lunar Stone: Origin of Blood": pageId: 53439 steam: 553800 -'Lunar Timepiece: Shadow of Twelve': +"Lunar Timepiece: Shadow of Twelve": pageId: 144271 renamedFrom: - - '十二刻度的月计时 / Lunar Timepiece : Shadow Of Twelve' + - "十二刻度的月计时 / Lunar Timepiece : Shadow Of Twelve" steam: 1117650 -Lunar's Chosen: +"Lunar's Chosen": pageId: 178981 steam: 1695680 -'Lunar: Silver Star Story': +"Lunar: Silver Star Story": pageId: 170393 LunarLux: pageId: 190038 @@ -97312,7 +94717,7 @@ Lunarsea: Lunatic Dawn Legend Pack: pageId: 49005 steam: 338070 -'Lunatic Dawn: Passage of the Book': +"Lunatic Dawn: Passage of the Book": pageId: 49007 steam: 335420 Lunch A Palooza: @@ -97329,7 +94734,7 @@ Lunistice: pageId: 168616 steam: 1701800 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\AGrumpyFox\Lunistice\lunistice.owo}}' + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\AGrumpyFox\\Lunistice\\lunistice.owo}}" Lunnye Devitsy: pageId: 52037 steam: 233510 @@ -97346,14 +94751,14 @@ Lure of the Temptress: gog: 1207658694 pageId: 12652 templates: - - '{{Game data/config|DOS|{{p|game}}\lure.ini}}' - - '{{Game data/config|Windows|{{p|game}}\lure.ini}}' - - '{{Game data/saves|DOS|{{p|game}}\lure.001}}' - - '{{Game data/saves|Windows|{{p|game}}\lure.001}}' + - "{{Game data/config|DOS|{{p|game}}\\lure.ini}}" + - "{{Game data/config|Windows|{{p|game}}\\lure.ini}}" + - "{{Game data/saves|DOS|{{p|game}}\\lure.001}}" + - "{{Game data/saves|Windows|{{p|game}}\\lure.001}}" Lurk: pageId: 87934 steam: 527260 -'Lurk in the Dark : Prologue': +"Lurk in the Dark : Prologue": pageId: 150452 steam: 1094030 Lust Academy - Season 1: @@ -97364,7 +94769,7 @@ Lust Academy - Season 1: - 1909130 - 1909140 templates: - - '{{Game data/saves|Windows|{{p|game}}\game\saves}}' + - "{{Game data/saves|Windows|{{p|game}}\\game\\saves}}" Lust Academy - Season 2: gog: 1136631133 pageId: 187868 @@ -97372,18 +94777,18 @@ Lust Academy - Season 2: steamSide: - 2361800 templates: - - '{{Game data/saves|Windows|{{p|game}}\game\saves}}' + - "{{Game data/saves|Windows|{{p|game}}\\game\\saves}}" Lust Epidemic: pageId: 155709 steam: 1008020 templates: - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/KADOKAWA}}' + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/KADOKAWA}}" Lust Theory - Season 1: gog: 1582333296 pageId: 172942 steam: 1607130 templates: - - '{{Game data/saves|Windows|{{p|appdata}}\Renpy\LustTheoryS1-1536575576}}' + - "{{Game data/saves|Windows|{{p|appdata}}\\Renpy\\LustTheoryS1-1536575576}}" Lust Theory - Season 2: gog: 1320515406 pageId: 185494 @@ -97392,18 +94797,16 @@ Lust for Darkness: pageId: 66840 steam: 523650 templates: - - '{{Game data/config|Windows|{{p|USERPROFILE}}\AppData\LocalLow\Movie Games Lunarium\Lust For Darkness\*.xml}}' - - >- - {{Game data/saves|Windows|{{p|USERPROFILE}}\AppData\LocalLow\Movie Games Lunarium\Lust For - Darkness\game_data.sav}} + - "{{Game data/config|Windows|{{p|USERPROFILE}}\\AppData\\LocalLow\\Movie Games Lunarium\\Lust For Darkness\\*.xml}}" + - "{{Game data/saves|Windows|{{p|USERPROFILE}}\\AppData\\LocalLow\\Movie Games Lunarium\\Lust For Darkness\\game_data.sav}}" Lust from Beyond: gog: 1991806534 pageId: 130731 steam: 1035120 templates: - - '{{Game data/config|Windows|{{p|userprofile\appdata\locallow}}\Movie Games Lunarium\Lust From Beyond\cfg}}' - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\Movie Games Lunarium\Lust From Beyond\profile}}' -'Lust from Beyond: Prologue': + - "{{Game data/config|Windows|{{p|userprofile\\appdata\\locallow}}\\Movie Games Lunarium\\Lust From Beyond\\cfg}}" + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\Movie Games Lunarium\\Lust From Beyond\\profile}}" +"Lust from Beyond: Prologue": pageId: 153344 steam: 1170820 Lustful Survival: @@ -97440,18 +94843,18 @@ Luxor 2 HD: pageId: 40626 steam: 234350 templates: - - '{{Game data/saves|Windows|{{p|localappdata}}\MumboJumbo\Luxor 2 HD}}' + - "{{Game data/saves|Windows|{{p|localappdata}}\\MumboJumbo\\Luxor 2 HD}}" Luxor 3: pageId: 41365 steam: 15930 templates: - - '{{Game data/saves|Windows|{{p|programdata}}\MumboJumbo\Luxor 3\Profiles\}}' + - "{{Game data/saves|Windows|{{p|programdata}}\\MumboJumbo\\Luxor 3\\Profiles\\}}" Luxor 5th Passage: pageId: 41023 steam: 60340 templates: - - '{{Game data/config|Windows|{{p|appdata}}\MumboJumbo\Luxor - Fifth Passage\prefsdb.dat}}' - - '{{Game data/saves|Windows|{{p|appdata}}\MumboJumbo\Luxor - Fifth Passage\prefsdb.dat}}' + - "{{Game data/config|Windows|{{p|appdata}}\\MumboJumbo\\Luxor - Fifth Passage\\prefsdb.dat}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\MumboJumbo\\Luxor - Fifth Passage\\prefsdb.dat}}" Luxor Amun Rising: pageId: 41364 steam: 15910 @@ -97467,18 +94870,18 @@ Luxor Mahjong: Luxor Solitaire: pageId: 129751 steam: 1034270 -'Luxor: Amun Rising HD': +"Luxor: Amun Rising HD": pageId: 40739 steam: 216930 -'Luxor: Quest for the Afterlife': +"Luxor: Quest for the Afterlife": pageId: 41326 steam: 16040 Luxuria Superbia: pageId: 15240 steam: 269150 templates: - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Tale of Tales/Luxuria Superbia/}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Tale of Tales/Luxuria Superbia/}}' + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Tale of Tales/Luxuria Superbia/}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Tale of Tales/Luxuria Superbia/}}" Luxury Hotel Emporium: pageId: 46949 steam: 389680 @@ -97494,40 +94897,40 @@ Lycah: Lydia: pageId: 62074 steam: 629000 -'Lydia: Sweet Dreams': +"Lydia: Sweet Dreams": pageId: 51137 steam: 447930 Lyne: pageId: 37124 steam: 266010 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Thomas Bowker\LYNE\}}' - - '{{Game data/config|Linux|{{p|xdgconfighome}}/unity3d/Thomas Bowker/LYNE/}}' - - '{{Game data/saves|Windows|{{P|game}}\saves\lyne.sav}}' - - '{{Game data/saves|Linux|{{p|xdgconfighome}}/unity3d/Thomas Bowker/LYNE/lyne.sav}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Thomas Bowker\\LYNE\\}}" + - "{{Game data/config|Linux|{{p|xdgconfighome}}/unity3d/Thomas Bowker/LYNE/}}" + - "{{Game data/saves|Windows|{{P|game}}\\saves\\lyne.sav}}" + - "{{Game data/saves|Linux|{{p|xdgconfighome}}/unity3d/Thomas Bowker/LYNE/lyne.sav}}" Lynne: pageId: 103345 steam: 885640 templates: - - '{{Game data/config|Windows|{{p|game}}\renpy\config.py}}' - - '{{Game data/saves|Windows|{{P|appdata}}\renpy\Lynne-1495120738\|{{p|game}}\game\saves\}}' + - "{{Game data/config|Windows|{{p|game}}\\renpy\\config.py}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\renpy\\Lynne-1495120738\\|{{p|game}}\\game\\saves\\}}" LyraVR: pageId: 59287 steam: 572630 -'Lyratha: Labyrinth - Survival - Escape': +"Lyratha: Labyrinth - Survival - Escape": pageId: 129613 steam: 1031330 -'Lá Camila: A VR Experience': +"Lá Camila: A VR Experience": pageId: 80322 steam: 770090 M Mania: pageId: 82399 steam: 798340 -'M&M''s: The Lost Formulas': +"M&M's: The Lost Formulas": pageId: 186420 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/saves|Windows|{{p|game}}\M&Ms The Lost Formulas\}}' + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\M&Ms The Lost Formulas\\}}" M-Plan: pageId: 112548 steam: 935540 @@ -97546,24 +94949,24 @@ M.A.S.S. Builder: pageId: 132841 steam: 956680 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\MASS_Builder\Saved\Config\WindowsNoEditor}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\MASS_Builder\Saved\SaveGames}}' -'M.A.X. 2: Mechanized Assault & Exploration': + - "{{Game data/config|Windows|{{p|localappdata}}\\MASS_Builder\\Saved\\Config\\WindowsNoEditor}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\MASS_Builder\\Saved\\SaveGames}}" +"M.A.X. 2: Mechanized Assault & Exploration": pageId: 78134 steam: 756810 -'M.A.X.: Mechanized Assault and Exploration': +"M.A.X.: Mechanized Assault and Exploration": gog: 1207663773 gogSide: - 10 pageId: 10696 steam: 615250 -'M.A.X.: Mechanized Assault and Exploration 2': +"M.A.X.: Mechanized Assault and Exploration 2": gog: 1207663783 gogSide: - 10 pageId: 10706 renamedFrom: - - 'M.A.X. 2: Mechanized Assault & Exploration' + - "M.A.X. 2: Mechanized Assault & Exploration" steam: 756810 M.C.I. Escapes: pageId: 127874 @@ -97586,7 +94989,7 @@ M.I.N.D.: M.U.D. TV: pageId: 41157 steam: 43500 -'M.U.D.S.: Mean Ugly Dirty Sport': +"M.U.D.S.: Mean Ugly Dirty Sport": gog: 1082621048 pageId: 184915 steam: 2109710 @@ -97594,7 +94997,7 @@ M.U.L.E.: gog: 1296025128 pageId: 167000 templates: - - '{{Game data/saves|PC booter|A:\}}' + - "{{Game data/saves|PC booter|A:\\}}" M.U.L.E. Returns: pageId: 88864 renamedFrom: @@ -97608,23 +95011,20 @@ M1 Tank Platoon II: gog: 1658549380 pageId: 177811 steam: 1406700 -'M1: A Death in the Desert': +"M1: A Death in the Desert": pageId: 66657 steam: 675530 templates: - - '{{Game data/config|Windows|{{p|game}}\renpy\config.py}}' - - '{{Game data/saves|Windows|{{P|appdata}}\renpy\None\|{{p|game}}\game\saves\}}' + - "{{Game data/config|Windows|{{p|game}}\\renpy\\config.py}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\renpy\\None\\|{{p|game}}\\game\\saves\\}}" M4 Tank Brigade: pageId: 46853 steam: 348810 -'M: Alien Paranoia': +"M: Alien Paranoia": pageId: 79500 templates: - - >- - {{Game - data/config|Windows|{{p|game}}\m.ini|{{p|game}}\M3d.ini|{{p|game}}\teclas.ini|{{p|hklm}}\SOFTWARE\{{p|wow64}}\Eclipse - Software\Alien Paranoia}} - - '{{Game data/saves|Windows|{{p|game}}\partidas}}' + - "{{Game data/config|Windows|{{p|game}}\\m.ini|{{p|game}}\\M3d.ini|{{p|game}}\\teclas.ini|{{p|hklm}}\\SOFTWARE\\{{p|wow64}}\\Eclipse Software\\Alien Paranoia}}" + - "{{Game data/saves|Windows|{{p|game}}\\partidas}}" MAAA: pageId: 137153 steam: 955950 @@ -97639,8 +95039,8 @@ MADiSON: pageId: 173351 steam: 1670870 templates: - - '{{Game data/config|Windows|{{p|userprofile\appdata\locallow}}\BLOODIOUS GAMES LLC\MADiSON\Data\*.dat}}' - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\BLOODIOUS GAMES LLC\MADiSON\Data\}}' + - "{{Game data/config|Windows|{{p|userprofile\\appdata\\locallow}}\\BLOODIOUS GAMES LLC\\MADiSON\\Data\\*.dat}}" + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\BLOODIOUS GAMES LLC\\MADiSON\\Data\\}}" MAGICAL×SPIRAL: pageId: 53964 steam: 521510 @@ -97671,10 +95071,10 @@ MAX MOZART: MAZ!: pageId: 72967 steam: 724570 -'MC Lars 2: Brotherhood': +"MC Lars 2: Brotherhood": pageId: 74986 steam: 737470 -'MC Lars: The Video Game': +"MC Lars: The Video Game": pageId: 51845 steam: 541160 MCAS Simulation: @@ -97685,40 +95085,40 @@ MDK: pageId: 13471 steam: 38450 templates: - - '{{Game data/config|DOS|{{p|game}}\MDK.CFG}}' - - '{{Game data/config|Windows|{{p|game}}\MDK.CFG}}' - - '{{Game data/config|OS X|{{p|game}}/MDK.CFG}}' - - '{{Game data/saves|DOS|{{p|game}}\SAVES}}' - - '{{Game data/saves|Windows|{{p|game}}\SAVES}}' - - '{{Game data/saves|OS X|{{p|game}}/SAVES}}' + - "{{Game data/config|DOS|{{p|game}}\\MDK.CFG}}" + - "{{Game data/config|Windows|{{p|game}}\\MDK.CFG}}" + - "{{Game data/config|OS X|{{p|game}}/MDK.CFG}}" + - "{{Game data/saves|DOS|{{p|game}}\\SAVES}}" + - "{{Game data/saves|Windows|{{p|game}}\\SAVES}}" + - "{{Game data/saves|OS X|{{p|game}}/SAVES}}" MDK 2: gog: 1207658645 pageId: 13197 steam: 38460 templates: - - '{{Game data/config|Windows|{{p|game}}\save\keys.lua}}' - - '{{Game data/saves|Windows|{{p|game}}\save}}' + - "{{Game data/config|Windows|{{p|game}}\\save\\keys.lua}}" + - "{{Game data/saves|Windows|{{p|game}}\\save}}" MDK 2 HD: pageId: 40759 steam: 213350 templates: - - '{{Game data/saves|Windows|{{P|localappdata}}\MDK2HD\}}' + - "{{Game data/saves|Windows|{{P|localappdata}}\\MDK2HD\\}}" MECCHA ZOMBIES: pageId: 132124 steam: 603910 MECHBLAZE: pageId: 168227 steam: 1398500 -'MEG 9: Lost Echoes': +"MEG 9: Lost Echoes": pageId: 72029 steam: 405190 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\LostEchoes\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\LostEchoes\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\LostEchoes\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\LostEchoes\\Saved\\SaveGames\\}}" MEGAMiX: pageId: 121599 steam: 777140 -'MEMORISE : CREATION': +"MEMORISE : CREATION": pageId: 124280 steam: 974220 METAL SLUG XX: @@ -97734,13 +95134,13 @@ MHRD: pageId: 56062 steam: 576030 templates: - - '{{Game data/saves|Windows|{{p|game}}\userdata}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/MHRD/}}' + - "{{Game data/saves|Windows|{{p|game}}\\userdata}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/MHRD/}}" MIA (Mission in Asia): pageId: 140228 templates: - - '{{Game data/config|Windows|{{p|USERPROFILE}}\Documents\SO\config.ini}}' - - '{{Game data/saves|Windows|{{p|USERPROFILE}}\Documents\SO\saves\}}' + - "{{Game data/config|Windows|{{p|USERPROFILE}}\\Documents\\SO\\config.ini}}" + - "{{Game data/saves|Windows|{{p|USERPROFILE}}\\Documents\\SO\\saves\\}}" MIDNIGHT Remastered: pageId: 134998 steam: 1053620 @@ -97753,21 +95153,15 @@ MILITARY: MIND SWITCH: pageId: 141669 steam: 1115820 -'MIND: Path to Thalamus': +"MIND: Path to Thalamus": gog: 1207665583 pageId: 21610 steam: 296070 templates: - - >- - {{Game data/config|Windows|{{P|localappdata}}\Mind_Pathtothalamus\Saved\SaveGames\ (Enhanced - Edition)|{{p|game}}\UDKGame\Config\ (Original Version)}} - - >- - {{Game - data/config|Linux|{{P|linuxhome}}/.config/Epic/Mind_Pathtothalamus/Saved/SaveGames/|{{P|game}}/Mind_Pathtothalamus/Config/}} - - >- - {{Game data/saves|Windows|{{P|localappdata}}\Mind_Pathtothalamus\Saved\SaveGames\ (Enhanced - Edition)|{{p|game}}\SavedKismetVariables\ (Original Version)}} - - '{{Game data/saves|Linux|{{P|linuxhome}}/.config/Epic/Mind_Pathtothalamus/Saved/SaveGames/}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\Mind_Pathtothalamus\\Saved\\SaveGames\\ (Enhanced Edition)|{{p|game}}\\UDKGame\\Config\\ (Original Version)}}" + - "{{Game data/config|Linux|{{P|linuxhome}}/.config/Epic/Mind_Pathtothalamus/Saved/SaveGames/|{{P|game}}/Mind_Pathtothalamus/Config/}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Mind_Pathtothalamus\\Saved\\SaveGames\\ (Enhanced Edition)|{{p|game}}\\SavedKismetVariables\\ (Original Version)}}" + - "{{Game data/saves|Linux|{{P|linuxhome}}/.config/Epic/Mind_Pathtothalamus/Saved/SaveGames/}}" MINDCUBES - Inside the Twisted Gravity Puzzle: pageId: 60760 steam: 618170 @@ -97810,7 +95204,7 @@ MMA Team Manager: MMD Girls VR: pageId: 136410 steam: 1068060 -'MMM: Murder Most Misfortunate': +"MMM: Murder Most Misfortunate": pageId: 61052 steam: 525690 MMMmmm... Cake!: @@ -97820,30 +95214,27 @@ MMORPG Tycoon 2: pageId: 150848 steam: 486860 templates: - - '{{Game data/config|Windows|{{P|appdata}}\VectorStorm\MMORPG Tycoon 2}}' - - '{{Game data/saves|Windows|{{P|appdata}}\VectorStorm\MMORPG Tycoon 2}}' + - "{{Game data/config|Windows|{{P|appdata}}\\VectorStorm\\MMORPG Tycoon 2}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\VectorStorm\\MMORPG Tycoon 2}}" MMX: pageId: 149598 steam: 1146890 -'MMY: Otherworld Mystery': +"MMY: Otherworld Mystery": pageId: 148787 steam: 1162760 -'MO: Astray': +"MO: Astray": pageId: 148410 steam: 1104660 templates: - - >- - {{Game - data/config|Windows|{{p|game}}\MOAstray_Data\StreamingAssets\OptionSetting.Archpray|{{p|HKCU}}\SOFTWARE\Archpray - Inc.\Mo:Astray}} - - '{{Game data/saves|Windows|{{p|game}}\MOAstray_Data\StreamingAssets\}}' + - "{{Game data/config|Windows|{{p|game}}\\MOAstray_Data\\StreamingAssets\\OptionSetting.Archpray|{{p|HKCU}}\\SOFTWARE\\Archpray Inc.\\Mo:Astray}}" + - "{{Game data/saves|Windows|{{p|game}}\\MOAstray_Data\\StreamingAssets\\}}" MOBA GM: pageId: 92871 steam: 791990 MOE: pageId: 125683 steam: 959770 -'MOK: Super Space Taxi': +"MOK: Super Space Taxi": pageId: 138580 steam: 1090660 MOLOCH (Zero): @@ -97861,7 +95252,7 @@ MONEY LOVES SILENCE: MONOBOT: pageId: 157269 steam: 1212850 -'MOONPONG: Tales of Epic Lunacy': +"MOONPONG: Tales of Epic Lunacy": pageId: 183952 steam: 2127230 MOP Operation Cleanup: @@ -97882,7 +95273,7 @@ MRAK: MSI Electric City: pageId: 41699 steam: 498600 -'MSI Electric City: Core Assault': +"MSI Electric City: Core Assault": pageId: 70285 steam: 691930 MTB Downhill Simulator: @@ -97891,7 +95282,7 @@ MTB Downhill Simulator: MTV Celebrity Deathmatch: pageId: 91337 templates: - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\CelebrityDeathmatch\SaveGames\}}' + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\CelebrityDeathmatch\\SaveGames\\}}" MU Legend: pageId: 103963 steam: 874240 @@ -97908,21 +95299,19 @@ MUSYNX: pageId: 122322 steam: 952040 templates: - - >- - {{Game data/saves|Windows|{{p|game}}\SavesDir\*.sav | - {{p|steam}}\userdata\{{p|uid}}\952040\remote\SavesDir\*.sav}} + - "{{Game data/saves|Windows|{{p|game}}\\SavesDir\\*.sav | {{p|steam}}\\userdata\\{{p|uid}}\\952040\\remote\\SavesDir\\*.sav}}" MVP Baseball 2004: pageId: 176980 MVP Baseball 2005: pageId: 176982 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\MVP Baseball 2005\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\MVP Baseball 2005\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\MVP Baseball 2005\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\MVP Baseball 2005\\}}" MX Bikes: pageId: 63863 steam: 655500 templates: - - '{{Game data/config|Windows|(whatever drive letter you put it on):\Steam\steamapps\common\MX Bikes|}}' + - "{{Game data/config|Windows|(whatever drive letter you put it on):\\Steam\\steamapps\\common\\MX Bikes|}}" MX Nitro: pageId: 56388 steam: 488690 @@ -97930,7 +95319,7 @@ MX vs. ATV All Out: pageId: 71952 steam: 520940 templates: - - '{{Game data/saves|Windows|{{P|localappdata}}\MXvsATVAllOut\Saved\SaveGames\}}' + - "{{Game data/saves|Windows|{{P|localappdata}}\\MXvsATVAllOut\\Saved\\SaveGames\\}}" MX vs. ATV Legends: pageId: 180991 steam: 1205970 @@ -97938,8 +95327,8 @@ MX vs. ATV Reflex: pageId: 11931 steam: 55140 templates: - - '{{Game data/config|Windows|{{p|game}}\graphics.cfg}}' - - '{{Game data/saves|Windows|{{p|steam}}\userdata\{{p|uid}}\55140\remote\}}' + - "{{Game data/config|Windows|{{p|game}}\\graphics.cfg}}" + - "{{Game data/saves|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\55140\\remote\\}}" MX vs. ATV Supercross Encore: pageId: 45880 steam: 282050 @@ -97948,20 +95337,20 @@ MX vs. ATV Unleashed: pageId: 11929 steam: 359220 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\THQ\MXvsATV\Settings}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\THQ\MXvsATV Unleashed\Save}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\THQ\\MXvsATV\\Settings}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\THQ\\MXvsATV Unleashed\\Save}}" MXGP: pageId: 20246 steam: 256370 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Milestone\MX2013\Config.ini}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Milestone\MX2013\Saves\}}' + - "{{Game data/config|Windows|{{p|appdata}}\\Milestone\\MX2013\\Config.ini}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Milestone\\MX2013\\Saves\\}}" MXGP 2019: pageId: 137795 steam: 1018160 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\mxgp5\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\mxgp5\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\mxgp5\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\mxgp5\\Saved\\SaveGames\\}}" MXGP 2020: pageId: 163509 steam: 1259800 @@ -97972,8 +95361,8 @@ MXGP Pro: pageId: 95099 steam: 798290 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\mxgp4\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\mxgp4\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\mxgp4\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\mxgp4\\Saved\\SaveGames\\}}" MXGP2: pageId: 43706 steam: 400800 @@ -97990,28 +95379,28 @@ MaSzyna: pageId: 141683 steam: 1033030 templates: - - '{{Game data/config|Windows|{{p|game}}\eu7.ini}}' + - "{{Game data/config|Windows|{{p|game}}\\eu7.ini}}" Mabinogi: pageId: 30937 steam: 212200 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Nexon\Mabinogi}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Nexon\\Mabinogi}}" Mable and the Wood: gog: 1331379816 pageId: 88912 steam: 568070 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Mable_PC\options.sav}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/Mable_PC/options.sav}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\Mable_PC\save*.sav}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/Mable_PC/save*.sav}}' -Mac El Oliver's Dating Trainer: + - "{{Game data/config|Windows|{{P|localappdata}}\\Mable_PC\\options.sav}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/Mable_PC/options.sav}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Mable_PC\\save*.sav}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/Mable_PC/save*.sav}}" +"Mac El Oliver's Dating Trainer": pageId: 129839 steam: 1019600 MacGuffin: pageId: 44541 steam: 398930 -MacGuffin's Curse: +"MacGuffin's Curse": pageId: 40793 steam: 58230 Macabre: @@ -98021,21 +95410,19 @@ Macbat 64: pageId: 59071 steam: 568040 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Siactro\Macbat64\}}' - - '{{Game data/saves|Windows|{{p|hkcu}}\Software\Siactro\Macbat64\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Siactro\\Macbat64\\}}" + - "{{Game data/saves|Windows|{{p|hkcu}}\\Software\\Siactro\\Macbat64\\}}" Macdows 95: pageId: 114806 steam: 948900 templates: - - >- - {{Game data/config|Windows|{{P|appdata}}\com.gamebrain.macdows95\Local - Store\#SharedObjects\macdows95.swf\macdows95Settings.sol}} - - '{{Game data/saves|Windows|{{P|appdata}}\com.gamebrain.macdows95\Local Store\#SharedObjects\macdows95.swf\}}' -'Mace Griffin: Bounty Hunter': + - "{{Game data/config|Windows|{{P|appdata}}\\com.gamebrain.macdows95\\Local Store\\#SharedObjects\\macdows95.swf\\macdows95Settings.sol}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\com.gamebrain.macdows95\\Local Store\\#SharedObjects\\macdows95.swf\\}}" +"Mace Griffin: Bounty Hunter": pageId: 57867 templates: - - '{{Game data/config|Windows|{{p|game}}\Bountyhunter.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\Saves\}}' + - "{{Game data/config|Windows|{{p|game}}\\Bountyhunter.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\Saves\\}}" Mace and Grace: pageId: 134941 steam: 1041690 @@ -98047,7 +95434,7 @@ MachiaVillain: pageId: 58710 steam: 555510 templates: - - '{{Game data/saves|Windows|{{p|game}}\MachiaVillain_Data\Saves\}}' + - "{{Game data/saves|Windows|{{p|game}}\\MachiaVillain_Data\\Saves\\}}" Machiavelli the Prince: gog: 2077138522 pageId: 163330 @@ -98062,13 +95449,9 @@ Machinarium: steamSide: - 40703 templates: - - >- - {{Game data/saves|Windows|{{p|appdata}}\Amanita-Design.Machinarium\|{{p|appdata}}\Macromedia\Flash - Player\#SharedObjects\{{p|uid}}\localhost\|{{p|game}}\machinarium.sol}} - - >- - {{Game - data/saves|Linux|{{p|linuxhome}}/.macromedia/Flash_Player/#SharedObjects/{{p|uid}}/#localWithNet/|{{p|game}}/machinarium.sol}} -'Machinations: Fog of War': + - "{{Game data/saves|Windows|{{p|appdata}}\\Amanita-Design.Machinarium\\|{{p|appdata}}\\Macromedia\\Flash Player\\#SharedObjects\\{{p|uid}}\\localhost\\|{{p|game}}\\machinarium.sol}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.macromedia/Flash_Player/#SharedObjects/{{p|uid}}/#localWithNet/|{{p|game}}/machinarium.sol}}" +"Machinations: Fog of War": pageId: 36127 steam: 517240 Machine Crisis: @@ -98080,10 +95463,10 @@ Machine Gun Train Run: Machine Hunt: pageId: 52344 steam: 546930 -'Machine Learning: Episode I': +"Machine Learning: Episode I": pageId: 39866 steam: 524030 -'Machine Made: Rebirth': +"Machine Made: Rebirth": pageId: 37162 steam: 485390 Machine World 2: @@ -98093,24 +95476,24 @@ MachineCraft: pageId: 43981 steam: 397100 templates: - - '{{Game data/saves|Windows|{{p|steam}}\steamapps\common\MachineCraft\Userdata}}' -'Machineers - Episode 1: Tivoli Town': + - "{{Game data/saves|Windows|{{p|steam}}\\steamapps\\common\\MachineCraft\\Userdata}}" +"Machineers - Episode 1: Tivoli Town": pageId: 47875 steam: 356090 Machines: pageId: 91676 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Acclaim Entertainment\Machines}}' - - '{{Game data/saves|Windows|{{P|game}}\savegame\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Acclaim Entertainment\\Machines}}" + - "{{Game data/saves|Windows|{{P|game}}\\savegame\\}}" Machines at War 3: pageId: 49859 steam: 303860 Macroboy Y: pageId: 103241 steam: 392290 -'Macross: Shooting Insight': +"Macross: Shooting Insight": pageId: 189361 -'Macrotis: A Mother''s Journey': +"Macrotis: A Mother's Journey": pageId: 94112 steam: 823840 Mactabilis: @@ -98131,7 +95514,7 @@ Mad Bullets: Mad Carnage: pageId: 102275 steam: 837950 -Mad Cat's World: +"Mad Cat's World": pageId: 142129 steam: 954860 Mad Combat Marines: @@ -98150,9 +95533,9 @@ Mad Digger: pageId: 77990 steam: 584100 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Berezka Games\Mad Digger}}' - - '{{Game data/saves|Windows|{{p|hkcu}}\Software\Berezka Games\Mad Digger}}' -'Mad Dog II: The Lost Gold': + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Berezka Games\\Mad Digger}}" + - "{{Game data/saves|Windows|{{p|hkcu}}\\Software\\Berezka Games\\Mad Digger}}" +"Mad Dog II: The Lost Gold": pageId: 68753 Mad Dog McCree: pageId: 68750 @@ -98162,7 +95545,7 @@ Mad Dojo: Mad Driver: pageId: 69192 steam: 619730 -'Mad Experiments: Escape Room': +"Mad Experiments: Escape Room": pageId: 154146 steam: 1201550 Mad Factory: @@ -98175,8 +95558,8 @@ Mad Father: pageId: 40098 steam: 483980 templates: - - '{{Game data/config|Windows|{{P|game}}\Game.ini}}' - - '{{Game data/saves|Windows|{{P|game}}\Save\}}' + - "{{Game data/config|Windows|{{P|game}}\\Game.ini}}" + - "{{Game data/saves|Windows|{{P|game}}\\Save\\}}" Mad Fish: pageId: 185085 Mad Frost: @@ -98187,15 +95570,15 @@ Mad Games Tycoon: pageId: 37796 steam: 341000 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Eggcode\Mad Games Tycoon\}}' - - '{{Game data/saves|Windows|{{p|USERPROFILE}}\AppData\LocalLow\Eggcode\Mad Games Tycoon\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Eggcode\\Mad Games Tycoon\\}}" + - "{{Game data/saves|Windows|{{p|USERPROFILE}}\\AppData\\LocalLow\\Eggcode\\Mad Games Tycoon\\}}" Mad Games Tycoon 2: pageId: 179273 steam: 1342330 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Eggcode\Mad Games Tycoon 2\}}' - - '{{Game data/saves|Windows|{{p|USERPROFILE}}\AppData\LocalLow\Eggcode\Mad Games Tycoon 2\}}' -'Mad Gardener: Zombie Massacre': + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Eggcode\\Mad Games Tycoon 2\\}}" + - "{{Game data/saves|Windows|{{p|USERPROFILE}}\\AppData\\LocalLow\\Eggcode\\Mad Games Tycoon 2\\}}" +"Mad Gardener: Zombie Massacre": pageId: 77948 steam: 719840 Mad Gun Range VR Simulator: @@ -98211,9 +95594,7 @@ Mad Machines: pageId: 88239 steam: 611260 templates: - - >- - {{Game data/config|Windows|{{p|hkcu}}\Software\Hero Blocks\Mad Machines\|{{P|userprofile}}\AppData\LocalLow\Hero - Blocks\Mad Machines\Unity\{{p|uid}}\Analytics\}} + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Hero Blocks\\Mad Machines\\|{{P|userprofile}}\\AppData\\LocalLow\\Hero Blocks\\Mad Machines\\Unity\\{{p|uid}}\\Analytics\\}}" Mad Manuel: pageId: 98220 steam: 739930 @@ -98222,32 +95603,22 @@ Mad Max: pageId: 16709 steam: 234140 templates: - - '{{Game data/config|Windows|{{P|game}}\settings.ini}}' - - >- - {{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Steam/userdata/{{p|uid}}/234140/local/Backup - Saves}} - - >- - {{Game data/config|Linux|{{P|xdgdatahome}}/feral-interactive/Mad - Max/preferences|{{P|xdgdatahome}}/feral-interactive/Mad Max/VFS/User/AppData/Roaming/WB Games/Mad - Max/settings.ini|{{P|xdgdatahome}}/feral-interactive/Mad Max/VFS/User/AppData/Roaming/WB Games/Mad Max/Backup - Saves/Settings.sav}} - - '{{Game data/config|Origin|{{p|userprofile\Documents}}\WB Games\Mad Max\Saves\Settings.sav}}' - - '{{Game data/config|Steam|{{p|userprofile\Documents}}\WB Games\Mad Max\Backup Saves\Settings.sav}}' - - >- - {{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Steam/userdata/{{p|uid}}/234140/local/Backup - Saves}} - - >- - {{Game data/saves|Linux|{{P|xdgdatahome}}/feral-interactive/Mad Max/VFS/User/AppData/Roaming/WB Games/Mad - Max/Backup Saves/GameSave*.sav}} - - '{{Game data/saves|Origin|{{p|userprofile\Documents}}\WB Games\Mad Max\Saves\GameSave*.sav}}' - - '{{Game data/saves|Steam|{{p|userprofile\Documents}}\WB Games\Mad Max\Backup Saves\GameSave*.sav}}' + - "{{Game data/config|Windows|{{P|game}}\\settings.ini}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Steam/userdata/{{p|uid}}/234140/local/Backup Saves}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/feral-interactive/Mad Max/preferences|{{P|xdgdatahome}}/feral-interactive/Mad Max/VFS/User/AppData/Roaming/WB Games/Mad Max/settings.ini|{{P|xdgdatahome}}/feral-interactive/Mad Max/VFS/User/AppData/Roaming/WB Games/Mad Max/Backup Saves/Settings.sav}}" + - "{{Game data/config|Origin|{{p|userprofile\\Documents}}\\WB Games\\Mad Max\\Saves\\Settings.sav}}" + - "{{Game data/config|Steam|{{p|userprofile\\Documents}}\\WB Games\\Mad Max\\Backup Saves\\Settings.sav}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Steam/userdata/{{p|uid}}/234140/local/Backup Saves}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/feral-interactive/Mad Max/VFS/User/AppData/Roaming/WB Games/Mad Max/Backup Saves/GameSave*.sav}}" + - "{{Game data/saves|Origin|{{p|userprofile\\Documents}}\\WB Games\\Mad Max\\Saves\\GameSave*.sav}}" + - "{{Game data/saves|Steam|{{p|userprofile\\Documents}}\\WB Games\\Mad Max\\Backup Saves\\GameSave*.sav}}" Mad Muzzles: pageId: 64286 steam: 661800 -'Mad Nords: Probably an Epic Quest': +"Mad Nords: Probably an Epic Quest": pageId: 36906 steam: 407880 -'Mad Princess: The Great Gladiators': +"Mad Princess: The Great Gladiators": pageId: 129895 steam: 1034950 Mad Quad: @@ -98263,8 +95634,8 @@ Mad Riders: pageId: 5821 steam: 208860 templates: - - '{{Game data/config|Windows|{{p|game}}\MadRiders\Out\Settings\}}' - - '{{Game data/saves|Windows|{{p|game}}\MadRiders\Out\profiles\}}' + - "{{Game data/config|Windows|{{p|game}}\\MadRiders\\Out\\Settings\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\MadRiders\\Out\\profiles\\}}" Mad Snowboarding: pageId: 46516 steam: 399900 @@ -98295,30 +95666,30 @@ MadOut Ice Storm: MadOut Open City: pageId: 43925 steam: 428190 -'MadSpace: To Hell and Beyond': +"MadSpace: To Hell and Beyond": pageId: 30005 steam: 351810 templates: - - '{{Game data/config|DOS|{{p|game}}\MADSPACE.CFG|{{p|game}}\SYS.CFG}}' - - '{{Game data/saves|DOS|{{p|game}}\SAVE\}}' + - "{{Game data/config|DOS|{{p|game}}\\MADSPACE.CFG|{{p|game}}\\SYS.CFG}}" + - "{{Game data/saves|DOS|{{p|game}}\\SAVE\\}}" Madagascar: pageId: 88481 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Activision\Madagascar\Settings}}' - - '{{Game data/saves|Windows|{{p|userprofile\documents}}\Activision\Madagascar\Save\SaveGames.mem}}' -'Madagascar: Escape 2 Africa': + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Activision\\Madagascar\\Settings}}" + - "{{Game data/saves|Windows|{{p|userprofile\\documents}}\\Activision\\Madagascar\\Save\\SaveGames.mem}}" +"Madagascar: Escape 2 Africa": pageId: 89077 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Activision\Madagascar 2\}}' - - '{{Game data/saves|Windows|{{p|userprofile\documents}}\Activision\Madagascar 2\}}' -'Madagascar: Move It!': + - "{{Game data/config|Windows|{{p|localappdata}}\\Activision\\Madagascar 2\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\documents}}\\Activision\\Madagascar 2\\}}" +"Madagascar: Move It!": pageId: 169791 -'Madballs in Babo: Invasion': +"Madballs in Babo: Invasion": pageId: 41238 steam: 25700 templates: - - '{{Game data/config|Windows|{{P|game}}\config.hdb}}' - - '{{Game data/saves|Windows|{{P|steam}}\userdata\{{P|uid}}\25700\remote\udata.dat}}' + - "{{Game data/config|Windows|{{P|game}}\\config.hdb}}" + - "{{Game data/saves|Windows|{{P|steam}}\\userdata\\{{P|uid}}\\25700\\remote\\udata.dat}}" Madcap Castle: pageId: 73638 steam: 684230 @@ -98327,21 +95698,21 @@ Madden NFL 08: Madden NFL 19: pageId: 94971 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\Madden NFL 19\UserSettings.dat}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\Madden NFL 19\Saves\}}' + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\Madden NFL 19\\UserSettings.dat}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\Madden NFL 19\\Saves\\}}" Madden NFL 20: pageId: 134122 Madden NFL 21: pageId: 161210 steam: 1239520 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\Madden NFL 21}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\Madden NFL 21\saves}}' + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\Madden NFL 21}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\Madden NFL 21\\saves}}" Madden NFL 22: pageId: 169424 steam: 1519350 templates: - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\Madden NFL 22\saves}}' + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\Madden NFL 22\\saves}}" Madden NFL 23: pageId: 178046 steam: 1760250 @@ -98354,13 +95725,13 @@ Maddening Euphoria: Made Man: pageId: 158322 templates: - - '{{Game data/saves|Windows|{{p|game}}\SaveGame\}}' -'Made in Abyss: Binary Star Falling into Darkness': + - "{{Game data/saves|Windows|{{p|game}}\\SaveGame\\}}" +"Made in Abyss: Binary Star Falling into Darkness": pageId: 177147 steam: 1324340 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\MadeInAbyss-BSFD\Saved\Config}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\MadeInAbyss-BSFD\Saved\SaveGames}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\MadeInAbyss-BSFD\\Saved\\Config}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\MadeInAbyss-BSFD\\Saved\\SaveGames}}" Made to Order: pageId: 96331 steam: 860770 @@ -98382,11 +95753,11 @@ Madness Cubed: Madness of the Architect: pageId: 81000 steam: 785920 -'Madness: Project Nexus': +"Madness: Project Nexus": pageId: 145144 steam: 488860 templates: - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Gibbing Tree\Madness Project Nexus\}}' + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Gibbing Tree\\Madness Project Nexus\\}}" Madorica Real Estate: pageId: 128122 steam: 1004150 @@ -98400,39 +95771,37 @@ Maelstrom: pageId: 89630 steam: 764050 templates: - - >- - {{Game - data/config|Windows|{{P|localappdata}}\MaelstromV2\Saved\SaveGames\Settings.sav|{{P|localappdata}}\MaelstromV2\Saved\Config\WindowsNoEditor\}} - - '{{Game data/saves|Windows|{{P|localappdata}}\MaelstromV2\Saved\SaveGames\}}' -'Maelstrom: The Battle for Earth Begins': + - "{{Game data/config|Windows|{{P|localappdata}}\\MaelstromV2\\Saved\\SaveGames\\Settings.sav|{{P|localappdata}}\\MaelstromV2\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\MaelstromV2\\Saved\\SaveGames\\}}" +"Maelstrom: The Battle for Earth Begins": pageId: 41317 steam: 11560 templates: - - '{{Game data/config|Windows|{{P|game}}/Game.ini}}' - - '{{Game data/saves|Windows|{{P|game}}/Resource/Saves}}' -'Maestro: Dark Talent': + - "{{Game data/config|Windows|{{P|game}}/Game.ini}}" + - "{{Game data/saves|Windows|{{P|game}}/Resource/Saves}}" +"Maestro: Dark Talent": pageId: 127599 steam: 995930 -'Maestro: Music from the Void': +"Maestro: Music from the Void": pageId: 98902 steam: 887920 -'Maestro: Music of Death': +"Maestro: Music of Death": pageId: 63018 renamedFrom: - - 'Maestro: Music of Death Collector''s Edition' + - "Maestro: Music of Death Collector's Edition" steam: 647090 -'Maestro: Notes of Life': +"Maestro: Notes of Life": pageId: 81518 renamedFrom: - - 'Maestro: Notes of Life Collector''s Edition' + - "Maestro: Notes of Life Collector's Edition" steam: 786100 Mafia: gog: 1595659240 pageId: 2311 steam: 40990 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Illusion Softworks\Mafia}}' - - '{{Game data/saves|Windows|{{p|game}}\Mafia\savegame\|{{p|game}}\savegame\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Illusion Softworks\\Mafia}}" + - "{{Game data/saves|Windows|{{p|game}}\\Mafia\\savegame\\|{{p|game}}\\savegame\\}}" Mafia Alive: pageId: 72320 steam: 702180 @@ -98444,72 +95813,64 @@ Mafia II: pageId: 11207 steam: 50130 steamSide: - - 50400 - - 50460 - - 67340 - - 67350 - - 67330 - - 67360 - 50145 - 50146 - 50147 + - 50400 - 50411 - 50412 - 50413 - 50414 - 50415 - 50416 + - 50460 + - 67330 + - 67340 + - 67350 + - 67360 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\2K Games\Mafia II\Saves\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\2K Games\Mafia II\Saves\}}' - - >- - {{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Feral Interactive/Mafia - II/VFS/User/AppData/Roaming/2K Games/Mafia II/Saves}} -'Mafia II: Definitive Edition': + - "{{Game data/config|Windows|{{p|localappdata}}\\2K Games\\Mafia II\\Saves\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\2K Games\\Mafia II\\Saves\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Feral Interactive/Mafia II/VFS/User/AppData/Roaming/2K Games/Mafia II/Saves}}" +"Mafia II: Definitive Edition": gog: 1943447848 pageId: 160506 steam: 1030830 templates: - - >- - {{Game data/config|Windows|{{P|userprofile\Documents}}\My Games\Mafia II Definitive - Edition\Data\profiles\{{P|uid}}\settings.xml}} - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\My Games\Mafia II Definitive Edition\Saves\{{P|uid}}\}}' + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\My Games\\Mafia II Definitive Edition\\Data\\profiles\\{{P|uid}}\\settings.xml}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\My Games\\Mafia II Definitive Edition\\Saves\\{{P|uid}}\\}}" Mafia III: gog: 1578751750 gogSide: - 1269276463 - 1354640203 - - 1379906542 - 1379171513 + - 1379906542 - 1444235797 - 1908345062 - 2145525299 pageId: 30025 steam: 360430 steamSide: - - 600160 - - 511891 - - 598022 - - 598021 - - 598020 - 511890 + - 511891 - 511892 + - 598020 + - 598021 + - 598022 + - 600160 templates: - - >- - {{Game data/config|Windows|{{p|localappdata}}\2K Games\Mafia - III\Data\{{p|UID}}\profiles\temporaryprofile\|{{p|localappdata}}\2K Games\Mafia III\Saves\videoconfig.cfg}} - - '{{Game data/saves|Windows|{{p|localappdata}}\2K Games\Mafia III\Data\{{p|UID}}\gamesaves\default\aslot\*.sav}}' -'Mafia: Definitive Edition': + - "{{Game data/config|Windows|{{p|localappdata}}\\2K Games\\Mafia III\\Data\\{{p|UID}}\\profiles\\temporaryprofile\\|{{p|localappdata}}\\2K Games\\Mafia III\\Saves\\videoconfig.cfg}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\2K Games\\Mafia III\\Data\\{{p|UID}}\\gamesaves\\default\\aslot\\*.sav}}" +"Mafia: Definitive Edition": gog: 1993581340 pageId: 160512 steam: 1030840 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\My Games\Mafia Definitive Edition\}}' - - '{{Game data/config|GOG.com|{{P|game}}\My Games\Mafia Definitive Edition\Saves\profiles\}}' - - >- - {{Game data/saves|Windows|{{P|userprofile\Documents}}\My Games\Mafia Definitive - Edition\Data\{{P|uid}}\gamesaves\}} - - '{{Game data/saves|GOG.com|{{P|game}}\user\Data\Saves\gamesaves\}}' + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\My Games\\Mafia Definitive Edition\\}}" + - "{{Game data/config|GOG.com|{{P|game}}\\My Games\\Mafia Definitive Edition\\Saves\\profiles\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\My Games\\Mafia Definitive Edition\\Data\\{{P|uid}}\\gamesaves\\}}" + - "{{Game data/saves|GOG.com|{{P|game}}\\user\\Data\\Saves\\gamesaves\\}}" Mag Racer: pageId: 95651 MagNets: @@ -98530,10 +95891,10 @@ Mage: Mage Fort: pageId: 93245 steam: 836470 -'Mage Guard: The Last Grimoire': +"Mage Guard: The Last Grimoire": pageId: 66939 steam: 577570 -Mage Kanade's Futanari Dungeon Quest: +"Mage Kanade's Futanari Dungeon Quest": pageId: 190506 steam: 2258940 Mage Mania: @@ -98548,31 +95909,29 @@ Mage Noir - Infinity: Mage VR -Mini Version-: pageId: 125074 steam: 996170 -'Mage VR: The Lost Memories': +"Mage VR: The Lost Memories": pageId: 129695 steam: 1036400 -'Mage''s Initiation: Reign of the Elements': +"Mage's Initiation: Reign of the Elements": gog: 1469845437 pageId: 112930 steam: 270610 templates: - - >- - {{Game data/config|Windows|{{P|userprofile}}\Saved Games\Mage's Initiation\*.cfg|{{P|userprofile}}\Saved - Games\Mage's Initiation\options.dat}} - - '{{Game data/saves|Windows|{{P|userprofile}}\Saved Games\Mage''s Initiation\}}' - - '{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/Mage''s Initiation/}}' - - '{{Game data/saves|Linux|{{P|linuxhome}}/.local/share/ags/Mage''s Initiation/}}' + - "{{Game data/config|Windows|{{P|userprofile}}\\Saved Games\\Mage's Initiation\\*.cfg|{{P|userprofile}}\\Saved Games\\Mage's Initiation\\options.dat}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\Saved Games\\Mage's Initiation\\}}" + - "{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/Mage's Initiation/}}" + - "{{Game data/saves|Linux|{{P|linuxhome}}/.local/share/ags/Mage's Initiation/}}" MageQuit: pageId: 56270 steam: 572220 MageSlayer: pageId: 14473 templates: - - '{{Game data/config|Windows|{{p|game}}\Mage\}}' + - "{{Game data/config|Windows|{{p|game}}\\Mage\\}}" MageWorks: pageId: 42149 steam: 494780 -'Magebuster: Amorous Augury': +"Magebuster: Amorous Augury": pageId: 145992 steam: 956600 Mages of Mystralia: @@ -98580,28 +95939,28 @@ Mages of Mystralia: pageId: 54453 steam: 529660 templates: - - '{{Game data/config|Windows|{{P|userprofile}}\AppData\LocalLow\Borealys Games Inc_\Mages of Mystralia\}}' - - '{{Game data/saves|Windows|{{P|hkcu}}\Software\Borealys Games Inc.\Mages of Mystralia\}}' -Maggie's Apartment: + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Borealys Games Inc_\\Mages of Mystralia\\}}" + - "{{Game data/saves|Windows|{{P|hkcu}}\\Software\\Borealys Games Inc.\\Mages of Mystralia\\}}" +"Maggie's Apartment": pageId: 65708 steam: 652950 -Maggie's Farmyard Adventure: +"Maggie's Farmyard Adventure": pageId: 186454 -'Maggie''s Movies - Camera, Action!': +"Maggie's Movies - Camera, Action!": pageId: 70303 steam: 691580 Magi: pageId: 56362 steam: 364740 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Magi\Magconfig.cfg}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Magi\MagiSave.sav}}' + - "{{Game data/config|Windows|{{p|appdata}}\\Magi\\Magconfig.cfg}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Magi\\MagiSave.sav}}" MagiCat: pageId: 68372 steam: 656970 templates: - - '{{Game data/config|Windows|{{p|appdata}}\KucingRembes\MagiCat\}}' - - '{{Game data/saves|Windows|{{p|appdata}}\KucingRembes\MagiCat\}}' + - "{{Game data/config|Windows|{{p|appdata}}\\KucingRembes\\MagiCat\\}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\KucingRembes\\MagiCat\\}}" MagiCats Worlds: pageId: 122115 steam: 945630 @@ -98614,10 +95973,8 @@ Magic 2015 - Duels of the Planeswalkers: pageId: 18496 steam: 255420 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - >- - {{Game data/saves|Windows|{{p|userprofile\Documents}}\Wizards of the Coast\Magic the Gathering\Magic - 2015\profiles\{{p|uid}}\}} + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Wizards of the Coast\\Magic the Gathering\\Magic 2015\\profiles\\{{p|uid}}\\}}" Magic Axolotl: gog: 1232383819 pageId: 183041 @@ -98637,14 +95994,14 @@ Magic Carpet: gog: 1207658935 pageId: 13805 templates: - - '{{Game data/config|DOS|{{p|game}}\}}' - - '{{Game data/saves|DOS|{{p|game}}\SAVE}}' -'Magic Carpet 2: The Netherworlds': + - "{{Game data/config|DOS|{{p|game}}\\}}" + - "{{Game data/saves|DOS|{{p|game}}\\SAVE}}" +"Magic Carpet 2: The Netherworlds": gog: 1207659187 pageId: 13809 templates: - - '{{Game data/config|Windows|{{p|game}}\GAME\NETHERW}}' - - '{{Game data/saves|Windows|{{p|game}}\GAME\NETHERW\SAVE}}' + - "{{Game data/config|Windows|{{p|game}}\\GAME\\NETHERW}}" + - "{{Game data/saves|Windows|{{p|game}}\\GAME\\NETHERW\\SAVE}}" Magic Clouds: pageId: 134834 steam: 1060440 @@ -98655,16 +96012,16 @@ Magic Duels: pageId: 47083 steam: 316010 templates: - - '{{Game data/config|Windows|{{p|steam}}\steamapps\common\Magic Duels\}}' -'Magic Encyclopedia: Moon Light': + - "{{Game data/config|Windows|{{p|steam}}\\steamapps\\common\\Magic Duels\\}}" +"Magic Encyclopedia: Moon Light": pageId: 135157 steam: 1059830 -'Magic Farm 2: Fairy Lands': +"Magic Farm 2: Fairy Lands": pageId: 132310 renamedFrom: - - 'Magic Farm 2: Fairy Lands (Premium Edition)' + - "Magic Farm 2: Fairy Lands (Premium Edition)" steam: 1054750 -'Magic Farm 3: The Ice Danger': +"Magic Farm 3: The Ice Danger": pageId: 142024 steam: 1113060 Magic Flight Academy: @@ -98674,7 +96031,7 @@ Magic Flute: pageId: 44579 steam: 437710 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\LabLike\Magic Flute\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\LabLike\\Magic Flute\\}}" Magic Forest: pageId: 69639 steam: 672290 @@ -98695,7 +96052,7 @@ Magic Gun: Magic Heart: pageId: 128138 steam: 1026390 -'Magic Heroes: Save Our Park': +"Magic Heroes: Save Our Park": pageId: 61225 steam: 616860 Magic Hour: @@ -98733,10 +96090,10 @@ Magic Potion Explorer: Magic Quest: pageId: 43135 steam: 454870 -'Magic Quest: TCG': +"Magic Quest: TCG": pageId: 144683 steam: 1128910 -'Magic Realm: Online': +"Magic Realm: Online": pageId: 95389 steam: 864610 Magic Scroll Tactics: @@ -98746,8 +96103,8 @@ Magic Siege - Defender: pageId: 76251 steam: 749270 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Oriplay\Magic Siege}}' - - '{{Game data/saves|Windows|{{p|hkcu}}\Software\Oriplay\Magic Siege}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Oriplay\\Magic Siege}}" + - "{{Game data/saves|Windows|{{p|hkcu}}\\Software\\Oriplay\\Magic Siege}}" Magic Spellslingers: pageId: 180667 steam: 720090 @@ -98781,41 +96138,37 @@ Magic matchstick: Magic of Autumn: pageId: 153302 steam: 1184450 -'Magic: Legends': +"Magic: Legends": pageId: 166563 -'Magic: The Gathering': +"Magic: The Gathering": pageId: 191009 -'Magic: The Gathering - Battlegrounds': +"Magic: The Gathering - Battlegrounds": pageId: 188726 -'Magic: The Gathering - Duels of the Planeswalkers': +"Magic: The Gathering - Duels of the Planeswalkers": pageId: 40973 steam: 49400 -'Magic: The Gathering - Duels of the Planeswalkers 2012': +"Magic: The Gathering - Duels of the Planeswalkers 2012": pageId: 37921 steam: 49470 templates: - - >- - {{Game data/saves|Windows|{{p|userprofile\Documents}}\Wizards of the Coast\Magic the - Gathering\profiles\{{p|uid}}\}} -'Magic: The Gathering - Duels of the Planeswalkers 2013': + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Wizards of the Coast\\Magic the Gathering\\profiles\\{{p|uid}}\\}}" +"Magic: The Gathering - Duels of the Planeswalkers 2013": pageId: 8042 steam: 97330 templates: - - '{{Game data/config|Windows|\SteamApps\common\Magic 2013\config.cfg}}' -'Magic: The Gathering - Duels of the Planeswalkers 2014': + - "{{Game data/config|Windows|\\SteamApps\\common\\Magic 2013\\config.cfg}}" +"Magic: The Gathering - Duels of the Planeswalkers 2014": pageId: 8150 steam: 213850 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - >- - {{Game data/saves|Windows|{{p|userprofile\Documents}}\Wizards of the Coast\Magic the Gathering\Magic - 2014\profiles\{{p|uid}}\}} -'Magic: The Gathering Arena': + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Wizards of the Coast\\Magic the Gathering\\Magic 2014\\profiles\\{{p|uid}}\\}}" +"Magic: The Gathering Arena": pageId: 143369 steam: 2141910 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Wizards Of The Coast\MTGA}}' -'Magic: The Gathering Online': + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Wizards Of The Coast\\MTGA}}" +"Magic: The Gathering Online": pageId: 191005 MagicCat: pageId: 88073 @@ -98830,19 +96183,19 @@ Magical Battle Festa: pageId: 23257 steam: 292480 templates: - - '{{Game data/config|Steam|{{p|steam}}\userdata\{{p|uid}}\292480\remote\GameConfig.dat}}' - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\292480\remote\Game*.dat}}' + - "{{Game data/config|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\292480\\remote\\GameConfig.dat}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\292480\\remote\\Game*.dat}}" Magical Brickout: pageId: 46669 steam: 384940 Magical Chase: pageId: 143588 templates: - - '{{Game data/config|Windows|{{p|hklm}}\SOFTWARE\{{p|wow64}}\QUEST\Magical Chase for Windows95\1.00.000}}' + - "{{Game data/config|Windows|{{p|hklm}}\\SOFTWARE\\{{p|wow64}}\\QUEST\\Magical Chase for Windows95\\1.00.000}}" Magical Diary: pageId: 18809 steam: 211340 -'Magical Diary: Wolf Hall': +"Magical Diary: Wolf Hall": pageId: 126342 steam: 974910 Magical Drop DX: @@ -98856,18 +96209,18 @@ Magical Drop V: pageId: 40683 steam: 204960 templates: - - '{{Game data/config|Windows|{{P|game}}\config.xml}}' - - '{{Game data/saves|Windows|{{P|game}}\saves\*_mdv.sav}}' + - "{{Game data/config|Windows|{{P|game}}\\config.xml}}" + - "{{Game data/saves|Windows|{{P|game}}\\saves\\*_mdv.sav}}" Magical Drop VI: gog: 1152841325 pageId: 183054 steam: 2176320 templates: - - '{{Game data/saves|Windows|{{p|userprofile\AppData\LocalLow}}\Forever Entertainment S_ A_\MagicalDropVI\data.sav}}' + - "{{Game data/saves|Windows|{{p|userprofile\\AppData\\LocalLow}}\\Forever Entertainment S_ A_\\MagicalDropVI\\data.sav}}" Magical Eyes - Red is for Anguish: pageId: 43883 steam: 366780 -'Magical Fable: The Princess of Light': +"Magical Fable: The Princess of Light": pageId: 93946 steam: 855940 Magical Girl Celesphonia: @@ -98883,15 +96236,15 @@ Magical MILFs: Magical Monster Land: pageId: 114894 steam: 949990 -'Magical Mysteries: Path of the Sorceress': +"Magical Mysteries: Path of the Sorceress": pageId: 52936 steam: 548320 Magical Otoge Ciel: pageId: 36702 steam: 521470 templates: - - '{{Game data/config|Windows|{{p|game}}\renpy\config.py}}' - - '{{Game data/saves|Windows|{{p|appdata}}\RenPy\Ciel-1433022430\}}' + - "{{Game data/config|Windows|{{p|game}}\\renpy\\config.py}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\RenPy\\Ciel-1433022430\\}}" Magical Squash: pageId: 74554 steam: 719410 @@ -98902,7 +96255,7 @@ Magical Swordmaiden: gog: 1378922940 pageId: 164483 steam: 1271740 -Magical girl's labyrinth: +"Magical girl's labyrinth": pageId: 100414 steam: 886540 Magician Lord: @@ -98910,13 +96263,13 @@ Magician Lord: Magician of Fire: pageId: 135332 steam: 984830 -Magician's Apprentice: +"Magician's Apprentice": pageId: 45692 steam: 397360 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Magician''s Apprentice\Config.xml}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\Saved Games\Magician''s Apprentice\}}' -Magician's Gambit: + - "{{Game data/config|Windows|{{P|localappdata}}\\Magician's Apprentice\\Config.xml}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\Saved Games\\Magician's Apprentice\\}}" +"Magician's Gambit": pageId: 68190 steam: 649120 Magicians & Looters: @@ -98929,28 +96282,28 @@ Magicite: pageId: 21269 steam: 268750 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\SmashGames\Magicite}}' - - '{{Game data/saves|Windows|{{p|hkcu}}\Software\SmashGames\Magicite}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\SmashGames\\Magicite}}" + - "{{Game data/saves|Windows|{{p|hkcu}}\\Software\\SmashGames\\Magicite}}" Magicka: pageId: 2081 steam: 42910 templates: - - '{{Game data/config|Windows|{{p|game}}\SaveData}}' - - '{{Game data/saves|Windows|{{p|game}}\SaveData}}' + - "{{Game data/config|Windows|{{p|game}}\\SaveData}}" + - "{{Game data/saves|Windows|{{p|game}}\\SaveData}}" Magicka 2: pageId: 17754 steam: 238370 templates: - - '{{Game data/config|Windows|{{p|appdata}}\ParadoxInteractive\Magicka2\}}' - - '{{Game data/config|Linux|{{P|linuxhome}}/.bitsquid/Magicka2/user_settings.config}}' - - '{{Game data/saves|Windows|{{p|appdata}}\ParadoxInteractive\Magicka2\}}' - - '{{Game data/saves|Linux|{{P|linuxhome}}/.bitsquid/Magicka2/*.sav|{{P|linuxhome}}/.bitsquid/Magicka2/*.old}}' -'Magicka: Wizard Wars': + - "{{Game data/config|Windows|{{p|appdata}}\\ParadoxInteractive\\Magicka2\\}}" + - "{{Game data/config|Linux|{{P|linuxhome}}/.bitsquid/Magicka2/user_settings.config}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\ParadoxInteractive\\Magicka2\\}}" + - "{{Game data/saves|Linux|{{P|linuxhome}}/.bitsquid/Magicka2/*.sav|{{P|linuxhome}}/.bitsquid/Magicka2/*.old}}" +"Magicka: Wizard Wars": pageId: 14974 steam: 202090 templates: - - '{{Game data/config|Windows|{{p|appdata}}\WizardWars\}}' -'Magicka: Wizards of the Square Tablet': + - "{{Game data/config|Windows|{{p|appdata}}\\WizardWars\\}}" +"Magicka: Wizards of the Square Tablet": pageId: 40554 steam: 247580 Magicland Dizzy: @@ -98960,8 +96313,8 @@ Magicmaker: pageId: 21235 steam: 319250 templates: - - '{{Game data/config|Windows|\steamapps\common\Magicmaker\saves\SETTINGS}}' - - '{{Game data/saves|Windows|\steamapps\common\Magicmaker\saves}}' + - "{{Game data/config|Windows|\\steamapps\\common\\Magicmaker\\saves\\SETTINGS}}" + - "{{Game data/saves|Windows|\\steamapps\\common\\Magicmaker\\saves}}" Magicolors: pageId: 144151 steam: 1090790 @@ -98989,7 +96342,7 @@ Magma Chamber: Magma Tsunami: pageId: 34501 steam: 477290 -'Magna Carta: The Phantom of Avalanche': +"Magna Carta: The Phantom of Avalanche": pageId: 182396 Magna Fortuna: gog: 1646415448 @@ -99005,7 +96358,7 @@ Magnetic By Nature: pageId: 49363 steam: 296510 templates: - - '{{Game data/config|Windows|{{p|HKCU}}\Software\Tripleslash\Magnetic By Nature\}}' + - "{{Game data/config|Windows|{{p|HKCU}}\\Software\\Tripleslash\\Magnetic By Nature\\}}" Magnetic Daydream: pageId: 141409 steam: 1115630 @@ -99015,14 +96368,12 @@ Magnetic Pairs: Magnetic Pull: pageId: 135599 steam: 1068990 -'Magnetic: Cage Closed': +"Magnetic: Cage Closed": pageId: 47781 steam: 344410 templates: - - >- - {{Game - data/config|Windows|{{P|steam}}\userdata\{{P|uid}}\344410\remote\|{{P|hkcu}}\Software\GuruGames\Magnetic_CageClosed}} - - '{{Game data/saves|Windows|{{P|steam}}\userdata\{{P|uid}}\344410\remote\save\}}' + - "{{Game data/config|Windows|{{P|steam}}\\userdata\\{{P|uid}}\\344410\\remote\\|{{P|hkcu}}\\Software\\GuruGames\\Magnetic_CageClosed}}" + - "{{Game data/saves|Windows|{{P|steam}}\\userdata\\{{P|uid}}\\344410\\remote\\save\\}}" Magnetis: pageId: 41205 steam: 37500 @@ -99042,7 +96393,7 @@ Magnia: pageId: 148683 steam: 1151430 templates: - - '{{Game data/config|Windows|HKEY_CURRENT_USER\SOFTWARE\NoDeadLineGames\Magnia}}' + - "{{Game data/config|Windows|HKEY_CURRENT_USER\\SOFTWARE\\NoDeadLineGames\\Magnia}}" Magnibox: pageId: 130215 steam: 999410 @@ -99052,10 +96403,10 @@ Magnificent 5: Magnificent Monsters: pageId: 94092 steam: 852090 -'Magnificent Ships: Volume 1': +"Magnificent Ships: Volume 1": pageId: 54068 steam: 557850 -'Magnificent Ships: Volume 2': +"Magnificent Ships: Volume 2": pageId: 62570 steam: 628450 Magnifico: @@ -99073,14 +96424,14 @@ Magnus & Myggen i Sydamerika: Mago: pageId: 142196 steam: 1098280 -'Magrunner: Dark Pulse': +"Magrunner: Dark Pulse": gog: 1207659236 pageId: 8278 steam: 209630 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Magrunner\YoshiGame\Config\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Magrunner\YoshiGame\Magrunner_auto_save.sav\}}' -'MaguSphere: Magical Cannon Girls': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Magrunner\\YoshiGame\\Config\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Magrunner\\YoshiGame\\Magrunner_auto_save.sav\\}}" +"MaguSphere: Magical Cannon Girls": pageId: 177595 steam: 1689130 Magus Over Fool: @@ -99103,7 +96454,7 @@ Mahjong Classic: Mahjong Club: pageId: 107930 steam: 912370 -'Mahjong Deluxe 2: Astral Planes': +"Mahjong Deluxe 2: Astral Planes": pageId: 42229 steam: 500570 Mahjong Deluxe 3: @@ -99115,7 +96466,7 @@ Mahjong Destiny: Mahjong Dimensions 3D - Fantasy Anime: pageId: 149686 steam: 1153220 -'Mahjong Fest: Winterland': +"Mahjong Fest: Winterland": pageId: 124098 steam: 975980 Mahjong Gold: @@ -99136,7 +96487,7 @@ Mahjong Magic Journey 2: Mahjong Magic Journey 3: pageId: 113878 steam: 929400 -'Mahjong Masters: Temple of the Ten Gods': +"Mahjong Masters: Temple of the Ten Gods": pageId: 63737 steam: 655650 Mahjong Match: @@ -99145,7 +96496,7 @@ Mahjong Match: Mahjong Pretty Girls Battle: pageId: 48909 steam: 338060 -'Mahjong Pretty Girls Battle: School Girls Edition': +"Mahjong Pretty Girls Battle: School Girls Edition": pageId: 47533 steam: 379960 Mahjong Pretty Manga Girls: @@ -99172,43 +96523,43 @@ Mahjong Solitaire: Mahjong Solitaire Refresh: pageId: 149807 steam: 1044210 -'Mahjong Strip Solitaire: Harem Guild': +"Mahjong Strip Solitaire: Harem Guild": pageId: 125896 steam: 1008520 -'Mahjong Tales: Ancient Wisdom': +"Mahjong Tales: Ancient Wisdom": pageId: 89158 templates: - - '{{Game data/saves|Windows|{{P|programdata}}\TikGames\Mahjong Wisdom\saves}}' + - "{{Game data/saves|Windows|{{P|programdata}}\\TikGames\\Mahjong Wisdom\\saves}}" Mahjong Towers Eternity: pageId: 41139 steam: 50950 Mahjong VR: pageId: 70351 steam: 709480 -Mahjong Valentine's Day: +"Mahjong Valentine's Day": pageId: 113898 steam: 929470 Mahjong World Contest: pageId: 51306 steam: 523150 -'Mahjong: Magic Chips': +"Mahjong: Magic Chips": pageId: 139149 steam: 1051320 -'Mahjongg Investigations: Under Suspicion': +"Mahjongg Investigations: Under Suspicion": pageId: 41347 steam: 12540 Mahjongg The Ultimate Collection 2: pageId: 104419 steam: 913440 -'Mahluk: Dark Demon': +"Mahluk: Dark Demon": pageId: 42263 steam: 503480 Mahou Arms: pageId: 181773 steam: 1165870 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\MagicalGirlDF\Saved\Config\WindowsNoEditor}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\MagicalGirlDF\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\MagicalGirlDF\\Saved\\Config\\WindowsNoEditor}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\MagicalGirlDF\\Saved\\SaveGames\\}}" Mahou Mating: pageId: 151349 steam: 1126240 @@ -99220,15 +96571,15 @@ Mahōkenshi: pageId: 184612 steam: 1717640 templates: - - '{{Game data/saves|Windows|{{p|game}}\Mahokenshi_Data\Saves}}' + - "{{Game data/saves|Windows|{{p|game}}\\Mahokenshi_Data\\Saves}}" Maia: pageId: 10037 steam: 252250 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Maia\config.xml}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/Machine_Studios/Maia/config.xml}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Maia\}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/Machine_Studios/Maia/}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Maia\\config.xml}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/Machine_Studios/Maia/config.xml}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Maia\\}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/Machine_Studios/Maia/}}" Maid Cafe: pageId: 100762 steam: 467750 @@ -99237,14 +96588,14 @@ Maid of Sker: pageId: 122842 steam: 826940 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\Wales Interactive\Maid of Sker}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Wales Interactive\Maid of Sker}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Wales Interactive\\Maid of Sker}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Wales Interactive\\Maid of Sker}}" Maiden & Spell: pageId: 126404 steam: 1004770 templates: - - '{{Game data/saves|Windows|{{p|localappdata}}\MaidenSpell}}' -'Maiden City: The Last Collateral Damage': + - "{{Game data/saves|Windows|{{p|localappdata}}\\MaidenSpell}}" +"Maiden City: The Last Collateral Damage": pageId: 88884 steam: 805380 Maidens of a Hollow Dream: @@ -99258,8 +96609,8 @@ Mail Time: pageId: 179503 steam: 1607240 templates: - - '{{Game data/saves|Windows|{{p|localappdata}}\MailTime\Saved\SaveGames}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/ Epic/MailTime/Saved/SaveGames}}' + - "{{Game data/saves|Windows|{{p|localappdata}}\\MailTime\\Saved\\SaveGames}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/ Epic/MailTime/Saved/SaveGames}}" Mailbox: pageId: 153216 steam: 1186310 @@ -99267,42 +96618,40 @@ Main Assembly: pageId: 145035 steam: 1078920 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\RoboBuild\Config\WindowsNoEditor}}' - - '{{Game data/saves|Windows|{{p|LOCALAPPDATA}}\RoboBuild\Saved}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\RoboBuild\\Config\\WindowsNoEditor}}" + - "{{Game data/saves|Windows|{{p|LOCALAPPDATA}}\\RoboBuild\\Saved}}" Main Character Simulator: pageId: 110656 steam: 930710 templates: - - '{{Game data/config|Windows|{{p|game}}\renpy\config.py}}' - - '{{Game data/saves|Windows|{{P|appdata}}\renpy\Main_Character_Simulator-1466283085\|{{p|game}}\game\saves\}}' + - "{{Game data/config|Windows|{{p|game}}\\renpy\\config.py}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\renpy\\Main_Character_Simulator-1466283085\\|{{p|game}}\\game\\saves\\}}" Mainframe Defenders: gog: 1805307632 pageId: 154213 steam: 1184810 templates: - - >- - {{Game - data/config|Windows|{{p|userprofile\appdata\locallow}}\ZeroTheCat\Mainframe\*.ini|{{P|hkcu}}\Software\ZeroTheCat\Mainframe\}} - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\ZeroTheCat\Mainframe\current.sav}}' + - "{{Game data/config|Windows|{{p|userprofile\\appdata\\locallow}}\\ZeroTheCat\\Mainframe\\*.ini|{{P|hkcu}}\\Software\\ZeroTheCat\\Mainframe\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\ZeroTheCat\\Mainframe\\current.sav}}" Mainland: pageId: 47962 steam: 366800 templates: - - '{{Game data/saves|Windows|{{p|game}}\appdata\saves\mainland\}}' + - "{{Game data/saves|Windows|{{p|game}}\\appdata\\saves\\mainland\\}}" Mainlining: gog: 1467789790 pageId: 39280 steam: 454950 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\MainliningGame\System.sav}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\MainliningGame\Profile_*.sav}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\MainliningGame\\System.sav}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\MainliningGame\\Profile_*.sav}}" Maitetsu: pageId: 97404 steam: 714800 -'Maitetsu: Last Run!!': +"Maitetsu: Last Run!!": pageId: 164268 steam: 1434480 -'Maitetsu: Pure Station': +"Maitetsu: Pure Station": pageId: 105157 renamedFrom: - Pure Station @@ -99312,38 +96661,38 @@ Maize: pageId: 39271 steam: 284240 templates: - - '{{Game data/config|Windows|{{p|LOCALAPPDATA}}\Maize\Saved\Config\WindowsNoEditor}}' - - '{{Game data/saves|Windows|{{p|LOCALAPPDATA}}\Maize\Saved\SaveGames}}' + - "{{Game data/config|Windows|{{p|LOCALAPPDATA}}\\Maize\\Saved\\Config\\WindowsNoEditor}}" + - "{{Game data/saves|Windows|{{p|LOCALAPPDATA}}\\Maize\\Saved\\SaveGames}}" Majestic Nights: pageId: 49420 steam: 284140 Majestic Trials: pageId: 70148 steam: 638060 -'Majesty 2: The Fantasy Kingdom Sim': +"Majesty 2: The Fantasy Kingdom Sim": gog: 1423826709 pageId: 22824 steam: 25980 steamSide: - 73020 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\majesty2\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\majesty2\}}' -'Majesty: The Fantasy Kingdom Sim': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\majesty2\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\majesty2\\}}" +"Majesty: The Fantasy Kingdom Sim": gog: 1423481910 pageId: 3012 steam: 25990 steamSide: - 73230 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\MajestyHD\MajXPrefs}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.lgp/majx/majxprefs}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\MajestyHD\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\MajestyHD\\MajXPrefs}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.lgp/majx/majxprefs}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\MajestyHD\\}}" Majikoi! Love Me Seriously!: pageId: 169918 steam: 1460490 templates: - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Minato Soft\Majikoi\Save\*.dat}}' + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Minato Soft\\Majikoi\\Save\\*.dat}}" Majin Woman: pageId: 102321 steam: 895180 @@ -99363,23 +96712,23 @@ Major Stryker: pageId: 13464 steam: 358300 templates: - - '{{Game data/config|DOS|{{p|game}}\CONFIG.MS}}' - - '{{Game data/saves|DOS|{{p|game}}\SR*.MS}}' -Major\Minor: + - "{{Game data/config|DOS|{{p|game}}\\CONFIG.MS}}" + - "{{Game data/saves|DOS|{{p|game}}\\SR*.MS}}" +"Major\\Minor": pageId: 31730 steam: 475490 Majotori: pageId: 58378 steam: 588730 templates: - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\588730\remote\*.xml}}' + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\588730\\remote\\*.xml}}" Majula Frontier: pageId: 108900 steam: 815630 -'Majula Frontier: The Offense': +"Majula Frontier: The Offense": pageId: 150808 steam: 1182070 -'Makai Kingdom: Reclaimed and Rebound': +"Makai Kingdom: Reclaimed and Rebound": pageId: 171327 steam: 1732060 Make A Jigsaw Puzzle: @@ -99388,19 +96737,19 @@ Make A Jigsaw Puzzle: Make America Great Again: pageId: 40279 steam: 512430 -'Make America Great Again: The Trump Presidency': +"Make America Great Again: The Trump Presidency": pageId: 40110 steam: 515040 Make Border Great Again!: pageId: 73861 steam: 731870 -'Make It Rain: The Love of Money': +"Make It Rain: The Love of Money": pageId: 95013 steam: 615400 Make Route: pageId: 113336 steam: 845460 -'Make Route: Escape the police': +"Make Route: Escape the police": pageId: 134713 steam: 1059690 Make Sail: @@ -99437,20 +96786,18 @@ MakeVR Pro: Makeover Desire - HENSHIN GANBO: pageId: 153240 steam: 1053270 -'Making History II: The War of the World': +"Making History II: The War of the World": pageId: 41098 steam: 46770 -'Making History: The Calm & the Storm': +"Making History: The Calm & the Storm": pageId: 41394 steam: 6250 templates: - - >- - {{Game data/saves|Windows|{{P|game}}{{cn|reason=Ambiguous, what files?}}|{{P|programdata}}\Muzzy Lane - Software\Making History Gold\}} -'Making History: The Great War': + - "{{Game data/saves|Windows|{{P|game}}{{cn|reason=Ambiguous, what files?}}|{{P|programdata}}\\Muzzy Lane Software\\Making History Gold\\}}" +"Making History: The Great War": pageId: 48853 steam: 279140 -'Making History: The Second World War': +"Making History: The Second World War": pageId: 68500 steam: 462940 Making it Home: @@ -99460,23 +96807,23 @@ Making*Lovers: pageId: 164369 steam: 1200720 templates: - - '{{Game data/saves|Windows|{{p|game}}\UserData\*|{{p|game}}\*.gdb}}' + - "{{Game data/saves|Windows|{{p|game}}\\UserData\\*|{{p|game}}\\*.gdb}}" Malatzshia: pageId: 69854 steam: 670400 -'Malavision: The Origin': +"Malavision: The Origin": pageId: 51565 steam: 511490 -'Malazard: The Master of Magic': +"Malazard: The Master of Magic": pageId: 41769 steam: 504420 -Malcom's Day: +"Malcom's Day": pageId: 135661 steam: 1065560 Maldita Castilla: pageId: 131407 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Maldita_Castilla\config.ini}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Maldita_Castilla\\config.ini}}" Maldrin Journey: pageId: 135592 steam: 1070400 @@ -99484,14 +96831,14 @@ Malebolgia: pageId: 47988 steam: 318860 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Jochen Mistiaen\Malebolgia\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Jochen Mistiaen\\Malebolgia\\}}" Malediction: pageId: 155939 steam: 1206930 Malevolence: pageId: 127920 steam: 1031320 -'Malevolence: The Sword of Ahkranox': +"Malevolence: The Sword of Ahkranox": pageId: 50292 steam: 268930 Malfortune: @@ -99506,7 +96853,7 @@ Malicious Payload: Malkia: pageId: 42079 steam: 492560 -'Malkyrs: Arenas of Eternity': +"Malkyrs: Arenas of Eternity": pageId: 73804 steam: 719630 Mall Craze: @@ -99518,7 +96865,7 @@ Mall Empire: Mall Maniacs: pageId: 167851 templates: - - '{{Game data/config|Windows|{{p|game}}}}' + - "{{Game data/config|Windows|{{p|game}}}}" Mall Mayhem: pageId: 73446 steam: 629400 @@ -99528,8 +96875,8 @@ Mall Town: Mall Tycoon: pageId: 89865 templates: - - '{{Game data/config|Windows|{{p|game}}\options.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\}}' + - "{{Game data/config|Windows|{{p|game}}\\options.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\}}" Mall Tycoon 2: pageId: 32966 Mall Tycoon 3: @@ -99541,8 +96888,8 @@ Malus Code: pageId: 34785 steam: 443330 templates: - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\M2\MC\savedata\}}' -Malzbie's Pinball Collection: + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\M2\\MC\\savedata\\}}" +"Malzbie's Pinball Collection": pageId: 73895 steam: 729580 Mama Farm: @@ -99554,17 +96901,17 @@ Mama Russia Needs You: Man Alive: pageId: 47789 steam: 339560 -Man In Women's Clothes: +"Man In Women's Clothes": pageId: 130149 steam: 1041760 -'Man O'' War: Corsair': +"Man O' War: Corsair": gog: 1448355943 pageId: 34210 steam: 344240 Man Wreck: pageId: 148577 steam: 1171640 -'Man in a Maze: Deathmatch': +"Man in a Maze: Deathmatch": pageId: 49492 steam: 310990 Man of Honor: @@ -99576,14 +96923,10 @@ Man of Medan: steamSide: - 1016240 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\ManOfMedan\Saved\Config\WindowsNoEditor\}}' - - >- - {{Game data/config|Microsoft - Store|{{p|localappdata}}\Packages\NAMCOBANDAIGamesInc.ManofMedanGamePass_gdy2aq6ez762w\LocalCache\Local\ManOfMedan\Saved\Config\WinGDK\}} - - '{{Game data/saves|Windows|{{p|localappdata}}\ManOfMedan\Saved\SaveGames\}}' - - >- - {{Game data/saves|Microsoft - Store|{{p|localappdata}}\Packages\NAMCOBANDAIGamesInc.ManofMedanGamePass_gdy2aq6ez762w\SystemAppData\wgs\}} + - "{{Game data/config|Windows|{{p|localappdata}}\\ManOfMedan\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/config|Microsoft Store|{{p|localappdata}}\\Packages\\NAMCOBANDAIGamesInc.ManofMedanGamePass_gdy2aq6ez762w\\LocalCache\\Local\\ManOfMedan\\Saved\\Config\\WinGDK\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\ManOfMedan\\Saved\\SaveGames\\}}" + - "{{Game data/saves|Microsoft Store|{{p|localappdata}}\\Packages\\NAMCOBANDAIGamesInc.ManofMedanGamePass_gdy2aq6ez762w\\SystemAppData\\wgs\\}}" Man of the House: pageId: 149273 steam: 1148150 @@ -99598,12 +96941,12 @@ ManaCollect: pageId: 48192 steam: 335200 templates: - - '{{Game data/config|Windows|{{p|game}}\save\}}' - - '{{Game data/saves|Windows|{{p|game}}\save\}}' + - "{{Game data/config|Windows|{{p|game}}\\save\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\save\\}}" ManaRocks: pageId: 78836 steam: 762560 -'Manastorm: Champions of G''nar': +"Manastorm: Champions of G'nar": pageId: 53473 steam: 548560 Manaya: @@ -99613,30 +96956,28 @@ Mandagon: pageId: 37146 steam: 461560 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Blind Sky Studios LTD\Mandagon}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Blind Sky Studios LTD\Mandagon\}}' -Mandy's Room: + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Blind Sky Studios LTD\\Mandagon}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Blind Sky Studios LTD\\Mandagon\\}}" +"Mandy's Room": pageId: 146108 steam: 917740 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\HFTGames\MandysRoom\}}' - - '{{Game data/saves|Windows|{{p|hkcu}}\Software\HFTGames\MandysRoom\}}' -'Mandy''s Room 2: Naughty By Nature': + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\HFTGames\\MandysRoom\\}}" + - "{{Game data/saves|Windows|{{p|hkcu}}\\Software\\HFTGames\\MandysRoom\\}}" +"Mandy's Room 2: Naughty By Nature": pageId: 166816 steam: 1122240 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\HFTGames\MandysRoom2\}}' - - '{{Game data/saves|Windows|{{p|hkcu}}\Software\HFTGames\MandysRoom2\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\HFTGames\\MandysRoom2\\}}" + - "{{Game data/saves|Windows|{{p|hkcu}}\\Software\\HFTGames\\MandysRoom2\\}}" Maneater: pageId: 66991 steam: 629820 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Maneater\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\Maneater\Saved\SaveGames\}}' - - >- - {{Game data/saves|Microsoft - Store|{{P|localappdata}}\Packages\TripwireInteractiveLLC.Maneater_237dqjpew1r3m\SystemAppData}} -Maneki's Curse: + - "{{Game data/config|Windows|{{P|localappdata}}\\Maneater\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Maneater\\Saved\\SaveGames\\}}" + - "{{Game data/saves|Microsoft Store|{{P|localappdata}}\\Packages\\TripwireInteractiveLLC.Maneater_237dqjpew1r3m\\SystemAppData}}" +"Maneki's Curse": pageId: 52239 steam: 448390 Mango Cart: @@ -99646,26 +96987,26 @@ Manhunt: pageId: 3923 steam: 12130 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Manhunt User Files\SaveGames\Settings.dat}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Manhunt User Files\SaveGames\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Manhunt User Files\\SaveGames\\Settings.dat}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Manhunt User Files\\SaveGames\\}}" Manhunt 2: pageId: 16010 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Rockstar Games\Manhunt 2\settings}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Rockstar Games\Manhunt 2\savegames}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Rockstar Games\\Manhunt 2\\settings}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Rockstar Games\\Manhunt 2\\savegames}}" Manhunter: pageId: 50163 steam: 302250 templates: - - '{{Game data/saves|Windows|{{P|game}}/save/}}' -'Manhunter 2: San Francisco': + - "{{Game data/saves|Windows|{{P|game}}/save/}}" +"Manhunter 2: San Francisco": pageId: 17079 templates: - - '{{Game data/saves|DOS|{{p|game}}\MH2SG.*}}' -'Manhunter: New York': + - "{{Game data/saves|DOS|{{p|game}}\\MH2SG.*}}" +"Manhunter: New York": pageId: 147113 templates: - - '{{Game data/saves|DOS|{{p|game}}\sg.*}}' + - "{{Game data/saves|DOS|{{p|game}}\\sg.*}}" Maniac GO: pageId: 64749 steam: 654620 @@ -99674,18 +97015,18 @@ Maniac Mansion: pageId: 62856 steam: 529890 templates: - - '{{Game data/config|DOS|{{p|game}}\PREFS}}' - - '{{Game data/saves|DOS|{{p|game}}\SAVEGAME.*}}' + - "{{Game data/config|DOS|{{p|game}}\\PREFS}}" + - "{{Game data/saves|DOS|{{p|game}}\\SAVEGAME.*}}" Maniac Mansion Deluxe: pageId: 69294 templates: - - '{{Game data/config|Windows|{{p|game}}\acsetup.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\agssave.*}}' + - "{{Game data/config|Windows|{{p|game}}\\acsetup.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\agssave.*}}" Maniac Mansion Mania: pageId: 69426 templates: - - '{{Game data/config|Windows|{{p|game}}\acsetup.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\agssave.*}}' + - "{{Game data/config|Windows|{{p|game}}\\acsetup.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\agssave.*}}" Manic Miners: pageId: 41739 steam: 511070 @@ -99696,8 +97037,8 @@ Manifold Garden: pageId: 61207 steam: 473950 templates: - - '{{Game data/config|Windows|{{P|userprofile}}\AppData\LocalLow\William Chyr Studio\Manifold Garden\Settings.txt}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\William Chyr Studio\Manifold Garden\Saves}}' + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\William Chyr Studio\\Manifold Garden\\Settings.txt}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\William Chyr Studio\\Manifold Garden\\Saves}}" Manipulated: pageId: 59293 steam: 530510 @@ -99726,7 +97067,7 @@ Manor Lords: Manor of the Damned!: pageId: 52542 steam: 532670 -'Manos: The Hands of Fate': +"Manos: The Hands of Fate": pageId: 47053 steam: 350780 Mansion of Horrors: @@ -99736,26 +97077,22 @@ Mansions of Madness: pageId: 41928 steam: 478980 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Fantasy Flight Games\Mansions of Madness Second Edition\}}' - - >- - {{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Fantasy Flight Games\Mansions of Madness Second - Edition\SavedGame\}} + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Fantasy Flight Games\\Mansions of Madness Second Edition\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Fantasy Flight Games\\Mansions of Madness Second Edition\\SavedGame\\}}" Mantis Burn Racing: pageId: 42591 steam: 446100 templates: - - '{{Game data/saves|Windows|{{p|localappdata}}\VFRacer\}}' + - "{{Game data/saves|Windows|{{p|localappdata}}\\VFRacer\\}}" Manual Samuel: pageId: 40353 steam: 504130 templates: - - >- - {{Game data/config|Windows|{{p|hkcu}}\Software\Perfectly Paranormal\Manual - Samuel\|{{p|programdata}}\Steam\{{p|uid}}\504130\}} - - '{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/Perfectly Paranormal/Manual Samuel/prefs}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Perfectly Paranormal\Manual Samuel\{{P|uid}}\*.save}}' - - '{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/unity.Perfectly Paranormal.Manual Samuel/*.save}}' - - '{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/Perfectly Paranormal/Manual Samuel/{{P|uid}}/*.save}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Perfectly Paranormal\\Manual Samuel\\|{{p|programdata}}\\Steam\\{{p|uid}}\\504130\\}}" + - "{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/Perfectly Paranormal/Manual Samuel/prefs}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Perfectly Paranormal\\Manual Samuel\\{{P|uid}}\\*.save}}" + - "{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/unity.Perfectly Paranormal.Manual Samuel/*.save}}" + - "{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/Perfectly Paranormal/Manual Samuel/{{P|uid}}/*.save}}" Manx TT Super Bike: pageId: 187433 Many Faces: @@ -99777,7 +97114,7 @@ MapleStory: pageId: 29787 steam: 216150 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' + - "{{Game data/config|Windows|{{p|game}}\\}}" MapleStory 2: pageId: 121609 steam: 560380 @@ -99785,81 +97122,71 @@ Maquette: pageId: 167032 steam: 762840 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Graceful Decay\Maquette}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Graceful Decay\Maquette}}' -'Mar War: The Evil Awakens': + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Graceful Decay\\Maquette}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Graceful Decay\\Maquette}}" +"Mar War: The Evil Awakens": pageId: 80974 steam: 788960 -'MarZ: Tactical Base Defense': +"MarZ: Tactical Base Defense": gog: 1116345066 pageId: 68478 steam: 682530 templates: - - >- - {{Game - data/config|Windows|{{P|userprofile}}\AppData\LocalLow\doorfortyfour\MarZRising\settings.json|{{P|hkcu}}\Software\doorfortyfour\MarZRising\}} - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\doorfortyfour\MarZRising\Save\}}' -'Maraiyum: Rise of the Setting Sun': + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\doorfortyfour\\MarZRising\\settings.json|{{P|hkcu}}\\Software\\doorfortyfour\\MarZRising\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\doorfortyfour\\MarZRising\\Save\\}}" +"Maraiyum: Rise of the Setting Sun": pageId: 36778 steam: 503290 Marathon: pageId: 6941 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Aleph One\Marathon Preferences}}' - - >- - {{Game data/saves|Windows|{{p|userprofile}}\Documents\Aleph One\Quick Saves|{{p|userprofile}}\Documents\Aleph - One\Recordings|{{p|userprofile}}\Documents\Aleph One\Saved Games}} -'Marathon 2: Durandal': + - "{{Game data/config|Windows|{{p|localappdata}}\\Aleph One\\Marathon Preferences}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Documents\\Aleph One\\Quick Saves|{{p|userprofile}}\\Documents\\Aleph One\\Recordings|{{p|userprofile}}\\Documents\\Aleph One\\Saved Games}}" +"Marathon 2: Durandal": pageId: 6955 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Aleph One\Marathon 2 Preferences}}' - - >- - {{Game data/saves|Windows|{{p|userprofile}}\Documents\Aleph One\Quick Saves|{{p|userprofile}}\Documents\Aleph - One\Recordings|{{p|userprofile}}\Documents\Aleph One\Saved Games}} + - "{{Game data/config|Windows|{{p|localappdata}}\\Aleph One\\Marathon 2 Preferences}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Documents\\Aleph One\\Quick Saves|{{p|userprofile}}\\Documents\\Aleph One\\Recordings|{{p|userprofile}}\\Documents\\Aleph One\\Saved Games}}" Marathon Infinity: pageId: 6963 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Aleph One\Marathon Infinity Preferences}}' - - >- - {{Game data/saves|Windows|{{p|userprofile}}\Documents\Aleph One\Quick Saves|{{p|userprofile}}\Documents\Aleph - One\Recordings|{{p|userprofile}}\Documents\Aleph One\Saved Games}} + - "{{Game data/config|Windows|{{p|localappdata}}\\Aleph One\\Marathon Infinity Preferences}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Documents\\Aleph One\\Quick Saves|{{p|userprofile}}\\Documents\\Aleph One\\Recordings|{{p|userprofile}}\\Documents\\Aleph One\\Saved Games}}" Marauder: pageId: 50480 steam: 289600 Marble Age: pageId: 38319 steam: 346810 -'Marble Age: Remastered': +"Marble Age: Remastered": gog: 1245228001 pageId: 166995 steam: 383740 Marble Blast Gold: pageId: 171945 templates: - - '{{Game data/config|Windows|{{p|game}}\marble\client}}' - - '{{Game data/saves|Windows|{{p|game}}\marble\client\prefs.cs}}' + - "{{Game data/config|Windows|{{p|game}}\\marble\\client}}" + - "{{Game data/saves|Windows|{{p|game}}\\marble\\client\\prefs.cs}}" Marble Combat: pageId: 125791 steam: 949000 Marble Drop: pageId: 25876 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Maxis\Marble Drop}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Maxis\\Marble Drop}}" Marble Duel: pageId: 45663 steam: 338120 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\HeroCraft\Marble Duel}}' - - '{{Game data/saves|Windows|{{p|hkcu}}\Software\HeroCraft\Marble Duel}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\HeroCraft\\Marble Duel}}" + - "{{Game data/saves|Windows|{{p|hkcu}}\\Software\\HeroCraft\\Marble Duel}}" Marble It Up!: pageId: 121928 steam: 864060 templates: - - >- - {{Game data/config|Windows|{{P|hkcu}}\SOFTWARE\Bad Habit\MarbleItUp\|{{P|userprofile}}\AppData\LocalLow\Bad - Habit\MarbleItUp\Parse.settings}} - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Bad Habit\MarbleItUp\**}}' -'Marble It Up: Mayhem!': + - "{{Game data/config|Windows|{{P|hkcu}}\\SOFTWARE\\Bad Habit\\MarbleItUp\\|{{P|userprofile}}\\AppData\\LocalLow\\Bad Habit\\MarbleItUp\\Parse.settings}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Bad Habit\\MarbleItUp\\**}}" +"Marble It Up: Mayhem!": pageId: 152179 Marble Knights: pageId: 163550 @@ -99873,11 +97200,11 @@ Marble Maid: pageId: 186130 steam: 1429780 templates: - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\ShadyCorner\savedata\}}' -'Marble Masters: The Pit': + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\ShadyCorner\\savedata\\}}" +"Marble Masters: The Pit": pageId: 65059 steam: 665630 -'Marble Mayhem: Fragile Ball': +"Marble Mayhem: Fragile Ball": pageId: 47357 steam: 370510 Marble Mountain: @@ -99896,8 +97223,8 @@ Marble Race: pageId: 109040 steam: 851640 templates: - - '{{Game data/config|Windows|{{p|userprofile\appdata\locallow}}\Elastic Sea\Marble Race\Settings\}}' - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\Elastic Sea\Marble Race\}}' + - "{{Game data/config|Windows|{{p|userprofile\\appdata\\locallow}}\\Elastic Sea\\Marble Race\\Settings\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\Elastic Sea\\Marble Race\\}}" Marble Run: pageId: 73893 steam: 726720 @@ -99908,15 +97235,15 @@ Marble Skies: pageId: 76327 steam: 742460 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\MarbleSkies\Saved\Config\}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\MarbleSkies\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\MarbleSkies\\Saved\\Config\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\MarbleSkies\\Saved\\SaveGames\\}}" Marble Trap: pageId: 144885 steam: 1145560 Marble Void: pageId: 43638 steam: 453650 -'Marbledrome: Crazy Stunt Balls': +"Marbledrome: Crazy Stunt Balls": pageId: 104247 steam: 904340 Marbles on Stream: @@ -99931,25 +97258,25 @@ Marblize: Marburgh: pageId: 154079 steam: 1139660 -'Marc Eckō''s Getting Up: Contents Under Pressure': +"Marc Eckō's Getting Up: Contents Under Pressure": pageId: 15815 steam: 260190 templates: - - '{{Game data/config|Windows|{{p|game}}\engine\*.cfg}}' - - '{{Game data/saves|Windows|{{P|public}}\Documents\getting up - contents under pressure\}}' + - "{{Game data/config|Windows|{{p|game}}\\engine\\*.cfg}}" + - "{{Game data/saves|Windows|{{P|public}}\\Documents\\getting up - contents under pressure\\}}" March Forward: pageId: 148929 steam: 1159340 March of Empires: pageId: 77184 steam: 702320 -'March of Industry: Very Capitalist Factory Simulator Entertainments': +"March of Industry: Very Capitalist Factory Simulator Entertainments": pageId: 46140 steam: 374640 -'March of War: FaceOff - M': +"March of War: FaceOff - M": pageId: 47255 steam: 323900 -'March of War: FaceOff - XL': +"March of War: FaceOff - XL": pageId: 45585 steam: 418110 March of the Eagles: @@ -99964,7 +97291,7 @@ March to Glory: March! Offworld Recon: pageId: 168022 templates: - - '{{Game data/saves|Windows|{{p|game}}\Save}}' + - "{{Game data/saves|Windows|{{p|game}}\\Save}}" Marching Simulator: pageId: 93293 steam: 817370 @@ -99972,8 +97299,8 @@ Marco & The Galaxy Dragon: pageId: 156833 steam: 1202540 templates: - - '{{Game data/config|Steam|{{P|game}}\savedata\|{{P|steam}}\userdata\{{P|uid}}\1202540\remote\}}' - - '{{Game data/saves|Steam|{{P|game}}\savedata\savecheck|{{P|steam}}\userdata\{{P|uid}}\1202540\remote\}}' + - "{{Game data/config|Steam|{{P|game}}\\savedata\\|{{P|steam}}\\userdata\\{{P|uid}}\\1202540\\remote\\}}" + - "{{Game data/saves|Steam|{{P|game}}\\savedata\\savecheck|{{P|steam}}\\userdata\\{{P|uid}}\\1202540\\remote\\}}" Marco Polo: pageId: 81590 steam: 781260 @@ -99983,7 +97310,7 @@ Marcus Level: Mare Nostrvm: pageId: 75413 steam: 726630 -'Marenian Tavern Story: Patty and the Hungry God': +"Marenian Tavern Story: Patty and the Hungry God": pageId: 136500 steam: 1024400 Marginal Act: @@ -99995,12 +97322,12 @@ Marginalia: Margonem: pageId: 127864 steam: 898590 -Margot's Word Brain: +"Margot's Word Brain": pageId: 91003 steam: 827780 templates: - - '{{Game data/saves|Windows|{{P|localappdata}}\Margot''s Word Brain\Gamedata.dat}}' -'Mari and Bayu: The Road Home': + - "{{Game data/saves|Windows|{{P|localappdata}}\\Margot's Word Brain\\Gamedata.dat}}" +"Mari and Bayu: The Road Home": gog: 1862308430 pageId: 179643 steam: 1725350 @@ -100010,16 +97337,16 @@ Mari and the Black Tower: Mari0: pageId: 126559 templates: - - '{{Game data/config|Windows|{{P|appdata}}\LOVE\mari0\options.txt}}' + - "{{Game data/config|Windows|{{P|appdata}}\\LOVE\\mari0\\options.txt}}" Maria the Witch: pageId: 44363 steam: 447860 -Marie's Room: +"Marie's Room": pageId: 78758 steam: 648390 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\MariesRoom\Saved\SaveGames\Settings.sav}}' -'Mariko: Hot Nightlife': + - "{{Game data/config|Windows|{{P|localappdata}}\\MariesRoom\\Saved\\SaveGames\\Settings.sav}}" +"Mariko: Hot Nightlife": pageId: 87089 steam: 802760 Marimba VR: @@ -100028,23 +97355,23 @@ Marimba VR: Marinatide: pageId: 55460 steam: 566420 -'Marine Heavy Gunner: Vietnam': +"Marine Heavy Gunner: Vietnam": pageId: 188681 templates: - - '{{Game data/config|Windows|{{p|game}}\System\*ini}}' - - '{{Game data/config|Windows|{{p|game}}\Saves}}' + - "{{Game data/config|Windows|{{p|game}}\\System\\*ini}}" + - "{{Game data/config|Windows|{{p|game}}\\Saves}}" Marine Park Empire: pageId: 46572 steam: 294730 templates: - - '{{Game data/config|Windows|{{p|game}}\CONFIG.DAT}}' - - '{{Game data/saves|Windows|{{p|game}}\SAVE}}' + - "{{Game data/config|Windows|{{p|game}}\\CONFIG.DAT}}" + - "{{Game data/saves|Windows|{{p|game}}\\SAVE}}" Marine Sharpshooter 3: pageId: 82265 templates: - - '{{Game data/config|Windows|{{p|game}}\System\*ini}}' - - '{{Game data/config|Windows|{{p|game}}\Saves}}' -'Marine Sharpshooter II: Jungle Warfare': + - "{{Game data/config|Windows|{{p|game}}\\System\\*ini}}" + - "{{Game data/config|Windows|{{p|game}}\\Saves}}" +"Marine Sharpshooter II: Jungle Warfare": pageId: 50492 steam: 283370 MarineVerse Cup: @@ -100056,39 +97383,39 @@ Mariner Accident: Mario Is Missing!: pageId: 140028 templates: - - '{{Game data/saves|DOS|{{p|game}}\MARIOSTA.*}}' + - "{{Game data/saves|DOS|{{p|game}}\\MARIOSTA.*}}" Mario Teaches Typing: pageId: 140104 templates: - - '{{Game data/config|DOS|{{p|game}}\INTRPLAY.CFG}}' - - '{{Game data/saves|DOS|{{p|game}}\*.STU}}' + - "{{Game data/config|DOS|{{p|game}}\\INTRPLAY.CFG}}" + - "{{Game data/saves|DOS|{{p|game}}\\*.STU}}" Mario Teaches Typing 2: pageId: 151767 templates: - - '{{Game data/config|Windows|{{p|game}}\MARIO.INI}}' - - '{{Game data/saves|Windows|{{p|game}}\*.STU}}' -Mario's Early Years! Fun with Letters: + - "{{Game data/config|Windows|{{p|game}}\\MARIO.INI}}" + - "{{Game data/saves|Windows|{{p|game}}\\*.STU}}" +"Mario's Early Years! Fun with Letters": pageId: 151873 templates: - - '{{Game data/config|DOS|{{p|game}}\MARIO.CFG}}' -Mario's Early Years! Fun with Numbers: + - "{{Game data/config|DOS|{{p|game}}\\MARIO.CFG}}" +"Mario's Early Years! Fun with Numbers": pageId: 151913 templates: - - '{{Game data/config|DOS|{{p|game}}\MARIO.CFG}}' -Mario's Early Years! Preschool Fun: + - "{{Game data/config|DOS|{{p|game}}\\MARIO.CFG}}" +"Mario's Early Years! Preschool Fun": pageId: 151883 templates: - - '{{Game data/config|DOS|{{p|game}}\MARIO.CFG}}' -Mario's Game Gallery: + - "{{Game data/config|DOS|{{p|game}}\\MARIO.CFG}}" +"Mario's Game Gallery": pageId: 140730 templates: - - '{{Game data/config|DOS|{{p|game}}\INTRPLAY.CFG}}' -Mario's Time Machine: + - "{{Game data/config|DOS|{{p|game}}\\INTRPLAY.CFG}}" +"Mario's Time Machine": pageId: 151857 templates: - - '{{Game data/config|Windows|{{p|game}}\WMTM.INI}}' - - '{{Game data/saves|DOS|{{p|game}}\MARIOSTA.*}}' - - '{{Game data/saves|Windows|{{p|game}}\SAVEGAME\}}' + - "{{Game data/config|Windows|{{p|game}}\\WMTM.INI}}" + - "{{Game data/saves|DOS|{{p|game}}\\MARIOSTA.*}}" + - "{{Game data/saves|Windows|{{p|game}}\\SAVEGAME\\}}" MarionetteAI: pageId: 64018 steam: 652520 @@ -100108,34 +97435,34 @@ Mark After Dark: Mark of the Ninja: gog: 1207665123 gogSide: - - 1207665143 - 1207665133 + - 1207665143 pageId: 3799 steam: 214560 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Klei\Ninja\users\|{{p|game}}\users\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Documents/Klei/Ninja/users/}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.klei/ninja/users/}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Klei\Ninja\users\|{{p|game}}\users\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Documents/Klei/Ninja/users/}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.klei/ninja/users/}}' - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/214560/remote/}}' -'Mark of the Ninja: Remastered': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Klei\\Ninja\\users\\|{{p|game}}\\users\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Documents/Klei/Ninja/users/}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.klei/ninja/users/}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Klei\\Ninja\\users\\|{{p|game}}\\users\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Documents/Klei/Ninja/users/}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.klei/ninja/users/}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/214560/remote/}}" +"Mark of the Ninja: Remastered": gog: 2048070308 pageId: 113388 steam: 860950 templates: - - '{{Game data/config|Windows|{{P|appdata}}\Klei Entertainment\Mark of the Ninja Remastered\users\graphics.ini}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/Klei Entertainment/Mark of the Ninja Remastered/users/graphics.ini}}' - - '{{Game data/config|Steam|{{P|steam}}\userdata\{{P|uid}}\860950\remote\users\settings.sav}}' - - '{{Game data/saves|Steam|{{P|steam}}\userdata\{{P|uid}}\860950\remote\users\savegame.sav}}' + - "{{Game data/config|Windows|{{P|appdata}}\\Klei Entertainment\\Mark of the Ninja Remastered\\users\\graphics.ini}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/Klei Entertainment/Mark of the Ninja Remastered/users/graphics.ini}}" + - "{{Game data/config|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\860950\\remote\\users\\settings.sav}}" + - "{{Game data/saves|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\860950\\remote\\users\\savegame.sav}}" Market Dominion: pageId: 126222 steam: 981500 Market Tycoon: pageId: 62164 steam: 563360 -'Marko: Beyond Brave': +"Marko: Beyond Brave": pageId: 185630 steam: 1186470 Markov Alg: @@ -100144,7 +97471,7 @@ Markov Alg: MarksmanVR: pageId: 62606 steam: 636950 -'Marle: The Labyrinth of the Black Sea': +"Marle: The Labyrinth of the Black Sea": pageId: 124478 steam: 985400 Marlene: @@ -100154,14 +97481,14 @@ Marlow Briggs and the Mask of Death: pageId: 11706 steam: 249680 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\ZootFly\settings.xcom}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\ZootFly\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\ZootFly\\settings.xcom}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\ZootFly\\}}" Marooners: pageId: 40012 steam: 423810 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\M2H\Marooners\}}' - - '{{Game data/saves|Windows|{{p|steam}}\userdata\{{p|uid}}\423810\remote\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\M2H\\Marooners\\}}" + - "{{Game data/saves|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\423810\\remote\\}}" Marrow: pageId: 54019 steam: 556710 @@ -100172,24 +97499,24 @@ Mars 2030 (2017): pageId: 65148 steam: 510850 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Mars2030\Saved\Config\WindowsNoEditor}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Mars2030\Saved\SaveGames}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Mars2030\\Saved\\Config\\WindowsNoEditor}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Mars2030\\Saved\\SaveGames}}" Mars 2120: pageId: 190858 steam: 1424290 templates: - - '{{Game data/saves|Windows|{{p|localappdata}}\ProjectMars_DEMO\Saved\SaveGames}}' -'Mars Colony: Frontier': + - "{{Game data/saves|Windows|{{p|localappdata}}\\ProjectMars_DEMO\\Saved\\SaveGames}}" +"Mars Colony: Frontier": pageId: 46278 steam: 394840 -'Mars Colony:Challenger': +"Mars Colony:Challenger": pageId: 50608 steam: 277910 Mars First Logistics: pageId: 188372 steam: 1532200 templates: - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Shape Shop\Mars First Logistics}}' + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Shape Shop\\Mars First Logistics}}" Mars Flight VR: pageId: 126213 steam: 1001690 @@ -100198,11 +97525,9 @@ Mars Horizon: pageId: 94330 steam: 765810 templates: - - '{{Game data/config|GOG.com|{{p|localappdata}}\GOG.com\Galaxy\Applications\54034822417133077\Storage\Shared\Files}}' - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\765810\remote\saves}}' - - >- - {{Game - data/saves|GOG.com|{{p|localappdata}}\GOG.com\Galaxy\Applications\54034822417133077\Storage\Shared\Files\saves}} + - "{{Game data/config|GOG.com|{{p|localappdata}}\\GOG.com\\Galaxy\\Applications\\54034822417133077\\Storage\\Shared\\Files}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\765810\\remote\\saves}}" + - "{{Game data/saves|GOG.com|{{p|localappdata}}\\GOG.com\\Galaxy\\Applications\\54034822417133077\\Storage\\Shared\\Files\\saves}}" Mars Industries: pageId: 51995 steam: 543790 @@ -100210,11 +97535,11 @@ Mars Odyssey: pageId: 38873 steam: 465150 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\SteelWoolGames\mars_VR\}}' + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\SteelWoolGames\\mars_VR\\}}" Mars Power Industries Deluxe: pageId: 150251 steam: 977230 -'Mars Simulator: Red Planet': +"Mars Simulator: Red Planet": pageId: 57295 steam: 587330 Mars Taken: @@ -100235,19 +97560,19 @@ Mars Wars: Mars or Die!: pageId: 96311 steam: 859440 -'Mars: Chaos Menace': +"Mars: Chaos Menace": pageId: 121894 steam: 956150 -'Mars: Total Warfare': +"Mars: Total Warfare": pageId: 137371 steam: 671690 -'Mars: War Logs': +"Mars: War Logs": gog: 1129934535 pageId: 7025 steam: 232750 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\Mars - War Logs\}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\Mars - War Logs\}}' + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\Mars - War Logs\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\Mars - War Logs\\}}" Marshin: pageId: 145560 steam: 1062180 @@ -100257,49 +97582,49 @@ Marshmallow Madness: Marshmallow Melee: pageId: 71762 steam: 705100 -'Marsupilami: Hoobadventure': +"Marsupilami: Hoobadventure": pageId: 170651 renamedFrom: - MARSUPILAMI - HOOBADVENTURE steam: 1586700 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\Ocellus\Marsupilami Hoobadventure\SerializedData\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Ocellus\Marsupilami Hoobadventure\SerializedData\}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Ocellus\\Marsupilami Hoobadventure\\SerializedData\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Ocellus\\Marsupilami Hoobadventure\\SerializedData\\}}" Martha Is Dead: gog: 2005859194 pageId: 89730 steam: 515960 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\MID\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\MID\Saved\SaveGames\*.sav}}' -'Martha Madison: Electricity': + - "{{Game data/config|Windows|{{p|localappdata}}\\MID\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\MID\\Saved\\SaveGames\\*.sav}}" +"Martha Madison: Electricity": pageId: 81576 steam: 693150 -'Martha Madison: Energy': +"Martha Madison: Energy": pageId: 81578 steam: 694230 -'Martha Madison: Forces': +"Martha Madison: Forces": pageId: 81566 steam: 685970 -'Martha Madison: Magnetism': +"Martha Madison: Magnetism": pageId: 81570 steam: 693080 -'Martha Madison: Optics': +"Martha Madison: Optics": pageId: 81586 steam: 596050 -'Martha Madison: Simple Machines Volume 1': +"Martha Madison: Simple Machines Volume 1": pageId: 81568 steam: 690840 -'Martha Madison: Simple Machines Volume 2': +"Martha Madison: Simple Machines Volume 2": pageId: 81574 steam: 693070 -'Martha Madison: Waves': +"Martha Madison: Waves": pageId: 81572 steam: 694240 Martial Arts Brutality: pageId: 72975 steam: 618080 -'Martial Arts: Capoeira': +"Martial Arts: Capoeira": pageId: 50081 steam: 307410 Martial Law: @@ -100307,18 +97632,18 @@ Martial Law: pageId: 177538 steam: 1712390 templates: - - '{{Game data/config|Windows|{{P|appdata}}\Godot\app_userdata\Martial Law\settings.cfg}}' - - '{{Game data/saves|Windows|{{P|appdata}}\Godot\app_userdata\Martial Law\}}' + - "{{Game data/config|Windows|{{P|appdata}}\\Godot\\app_userdata\\Martial Law\\settings.cfg}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\Godot\\app_userdata\\Martial Law\\}}" Martial Law (DropDGames): pageId: 47767 renamedFrom: - Martial Law steam: 346150 -'Martian Gothic: Unification': +"Martian Gothic: Unification": pageId: 35446 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\SOFTWARE\Martian Gothic}}' - - '{{Game data/saves|Windows|{{p|game}}\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\Martian Gothic}}" + - "{{Game data/saves|Windows|{{p|game}}\\}}" Martian Invaders: pageId: 185788 steam: 2182960 @@ -100326,7 +97651,7 @@ Martian Law: pageId: 145089 steam: 1135570 templates: - - '{{Game data/saves|Windows|{{p|localappdata}}\mlgame}}' + - "{{Game data/saves|Windows|{{p|localappdata}}\\mlgame}}" Martians Vs Robots: pageId: 135179 steam: 1078780 @@ -100343,106 +97668,86 @@ Marvel Heroes: pageId: 7842 steam: 226320 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Marvel Heroes\MarvelGame\Config\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Marvel Heroes\\MarvelGame\\Config\\}}" Marvel Powers United VR: pageId: 165488 Marvel Puzzle Quest: pageId: 31691 steam: 234330 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Demiurge Studios\Marvel Puzzle Quest}}' - - '{{Game data/saves|Windows|{{p|steam}}\userdata\{{p|uid}}\234330\remote\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Demiurge Studios\\Marvel Puzzle Quest}}" + - "{{Game data/saves|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\234330\\remote\\}}" Marvel Snap: pageId: 189156 steam: 1997040 templates: - - '{{Game data/saves|Windows|{{p|localappdata}}\Second Dinner\SNAP\}}' -'Marvel vs. Capcom: Infinite': + - "{{Game data/saves|Windows|{{p|localappdata}}\\Second Dinner\\SNAP\\}}" +"Marvel vs. Capcom: Infinite": pageId: 55336 steam: 493840 templates: - - '{{Game data/config|Windows|{{p|steam}}\MARVEL VS. CAPCOM INFINITE\MVCI\Saved\Config\WindowsNoEditor\}}' - - >- - {{Game data/config|Microsoft - Store|{{P|localappdata}}\Packages\F024294D.407397AB99398_8fty0by30jkny\LocalState\Duck\Saved\Config\UWP}} - - '{{Game data/saves|Windows|{{p|steam}}\MARVEL VS. CAPCOM INFINITE\MVCI\Saved\SaveGames\}}' -Marvel's Avengers: + - "{{Game data/config|Windows|{{p|steam}}\\MARVEL VS. CAPCOM INFINITE\\MVCI\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/config|Microsoft Store|{{P|localappdata}}\\Packages\\F024294D.407397AB99398_8fty0by30jkny\\LocalState\\Duck\\Saved\\Config\\UWP}}" + - "{{Game data/saves|Windows|{{p|steam}}\\MARVEL VS. CAPCOM INFINITE\\MVCI\\Saved\\SaveGames\\}}" +"Marvel's Avengers": pageId: 138441 steam: 997070 steamSide: - 1159060 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Crystal Dynamics\Marvel''s Avengers\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Marvel''s Avengers\{{p|uid}}\}}' - - >- - {{Game data/saves|Microsoft - Store|{{p|localappdata}}\Packages\39C668CD.ProjectScotchBaseGame_r7bfsmp40f67j\SystemAppData\wgs}} -Marvel's Guardians of the Galaxy: + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Crystal Dynamics\\Marvel's Avengers\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Marvel's Avengers\\{{p|uid}}\\}}" + - "{{Game data/saves|Microsoft Store|{{p|localappdata}}\\Packages\\39C668CD.ProjectScotchBaseGame_r7bfsmp40f67j\\SystemAppData\\wgs}}" +"Marvel's Guardians of the Galaxy": pageId: 169278 steam: 1088850 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Eidos Montreal\Guardians of the Galaxy\}}' - - '{{Game data/config|Steam|{{P|steam}}\userdata\{{P|uid}}\1088850\remote\}}' - - >- - {{Game data/saves|Microsoft - Store|{{P|localappdata}}\Packages\39C668CD.DXM-EidosMontreal_r7bfsmp40f67j\SystemAppData\wgs}} - - '{{Game data/saves|Steam|{{P|steam}}\userdata\{{P|uid}}\1088850\remote\}}' -'Marvel''s Guardians of the Galaxy: The Telltale Series': + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Eidos Montreal\\Guardians of the Galaxy\\}}" + - "{{Game data/config|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\1088850\\remote\\}}" + - "{{Game data/saves|Microsoft Store|{{P|localappdata}}\\Packages\\39C668CD.DXM-EidosMontreal_r7bfsmp40f67j\\SystemAppData\\wgs}}" + - "{{Game data/saves|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\1088850\\remote\\}}" +"Marvel's Guardians of the Galaxy: The Telltale Series": gog: 1253505782 pageId: 60123 steam: 579950 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Telltale Games\Guardians of the Galaxy\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Telltale Games\Guardians of the Galaxy\}}' -Marvel's Midnight Suns: + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Telltale Games\\Guardians of the Galaxy\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Telltale Games\\Guardians of the Galaxy\\}}" +"Marvel's Midnight Suns": pageId: 171007 steam: 368260 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Marvel's Midnight - Suns\Saved_Steam_{{p|uid}}\Config\WindowsNoEditor\ - - }} - - >- - {{Game data/saves|Windows|{{p|userprofile\documents}}\My Games\Marvel's Midnight - Suns\Saved_Steam_{{p|uid}}\SaveGames - - }} -Marvel's Spider-Man Remastered: + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Marvel's Midnight Suns\\Saved_Steam_{{p|uid}}\\Config\\WindowsNoEditor\\\n}}" + - "{{Game data/saves|Windows|{{p|userprofile\\documents}}\\My Games\\Marvel's Midnight Suns\\Saved_Steam_{{p|uid}}\\SaveGames\n}}" +"Marvel's Spider-Man Remastered": pageId: 178023 steam: 1817070 templates: - - >- - {{Game data/config|Windows|{{P|appdata}}\Insomniac Games\Marvel's Spider-Man - Remastered\crs|{{P|userprofile\Documents}}\Marvel's Spider-Man - Remastered\{{P|uid}}\-userprefs.save|{{p|hkcu}}\Software\Insomniac Games\Marvel's Spider-Man Remastered}} - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\Marvel''s Spider-Man Remastered\{{P|uid}}}}' -'Marvel''s Spider-Man: Miles Morales': + - "{{Game data/config|Windows|{{P|appdata}}\\Insomniac Games\\Marvel's Spider-Man Remastered\\crs|{{P|userprofile\\Documents}}\\Marvel's Spider-Man Remastered\\{{P|uid}}\\-userprefs.save|{{p|hkcu}}\\Software\\Insomniac Games\\Marvel's Spider-Man Remastered}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\Marvel's Spider-Man Remastered\\{{P|uid}}}}" +"Marvel's Spider-Man: Miles Morales": pageId: 178032 steam: 1817190 templates: - - >- - {{Game data/config|Windows|{{P|appdata}}\Insomniac Games\Marvel's Spider-Man Miles - Morales\crs|{{P|userprofile\Documents}}\Marvel's Spider-Man Miles - Morales\{{P|uid}}\-userprefs.save|{{p|hkcu}}\Software\Insomniac Games\Marvel's Spider-Man Miles Morales}} - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\Marvel''s Spider-Man Miles Morales\{{P|uid}}}}' -'Marvel: Ultimate Alliance': + - "{{Game data/config|Windows|{{P|appdata}}\\Insomniac Games\\Marvel's Spider-Man Miles Morales\\crs|{{P|userprofile\\Documents}}\\Marvel's Spider-Man Miles Morales\\{{P|uid}}\\-userprefs.save|{{p|hkcu}}\\Software\\Insomniac Games\\Marvel's Spider-Man Miles Morales}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\Marvel's Spider-Man Miles Morales\\{{P|uid}}}}" +"Marvel: Ultimate Alliance": pageId: 35730 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Activision\Marvel Ultimate Alliance\Settings\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Activision\Marvel Ultimate Alliance\Save\}}' -'Marvel: Ultimate Alliance (2016)': + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Activision\\Marvel Ultimate Alliance\\Settings\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Activision\\Marvel Ultimate Alliance\\Save\\}}" +"Marvel: Ultimate Alliance (2016)": pageId: 73744 steam: 433300 templates: - - '{{Game data/config|Windows|{{p|game}}\Settings\}}' - - '{{Game data/saves|Windows|{{p|game}}\SavesDir\}}' -'Marvel: Ultimate Alliance 2': + - "{{Game data/config|Windows|{{p|game}}\\Settings\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\SavesDir\\}}" +"Marvel: Ultimate Alliance 2": pageId: 35727 steam: 433320 templates: - - '{{Game data/config|Windows|{{p|game}}\Settings\}}' - - '{{Game data/saves|Windows|{{p|game}}\SavesDir\}}' + - "{{Game data/config|Windows|{{p|game}}\\Settings\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\SavesDir\\}}" Marvellous Inc.: pageId: 91572 steam: 827940 @@ -100451,7 +97756,7 @@ Marvel’s Spider-Man: Marvin the Hatter: pageId: 132619 steam: 1036820 -Marvin's Mittens: +"Marvin's Mittens": pageId: 37164 steam: 333260 Marwin and The Evolution Stone: @@ -100465,16 +97770,16 @@ Mary Skelter 2: pageId: 173788 steam: 1496250 templates: - - '{{Game data/config|Windows|{{P|game}}\MarySkelter2.ini}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\My Games\Ghostlight Ltd\Mary Skelter 2}}' -'Mary Skelter: Nightmares': + - "{{Game data/config|Windows|{{P|game}}\\MarySkelter2.ini}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\My Games\\Ghostlight Ltd\\Mary Skelter 2}}" +"Mary Skelter: Nightmares": gog: 1533798723 pageId: 103273 steam: 837610 templates: - - '{{Game data/config|Windows|{{p|game}}\MarySkelter.ini}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Ghostlight Ltd\Mary Skelter Nightmares}}' -'Mary-Kate and Ashley: Crush Course': + - "{{Game data/config|Windows|{{p|game}}\\MarySkelter.ini}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Ghostlight Ltd\\Mary Skelter Nightmares}}" +"Mary-Kate and Ashley: Crush Course": pageId: 92589 Masamune: pageId: 135955 @@ -100487,13 +97792,13 @@ Mashed: pageId: 17965 steam: 281280 templates: - - '{{Game data/config|Windows|{{p|game}}\contcfg*.bin}}' - - '{{Game data/saves|Windows|{{p|game}}\gamesave.bin}}' + - "{{Game data/config|Windows|{{p|game}}\\contcfg*.bin}}" + - "{{Game data/saves|Windows|{{p|game}}\\gamesave.bin}}" Mashinky: pageId: 69030 steam: 598960 templates: - - '{{Game data/config|Windows|{{p|steam}}/Mashinky/saves{{cn}}}}' + - "{{Game data/config|Windows|{{p|steam}}/Mashinky/saves{{cn}}}}" Mask of Mists: pageId: 156961 steam: 1215280 @@ -100505,23 +97810,23 @@ Mask of the Rose: pageId: 178459 steam: 1769980 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Failbetter Games\Mask of the Rose}}' - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Failbetter Games\Mask of the Rose\saves}}' - - '{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/Failbetter Games/Mask of the Rose/saves}}' - - '{{Game data/saves|Linux|{{P|linuxhome}}/.config/unity3d/Failbetter Games/Mask of the Rose/saves}}' -Maska's Masks: + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Failbetter Games\\Mask of the Rose}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Failbetter Games\\Mask of the Rose\\saves}}" + - "{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/Failbetter Games/Mask of the Rose/saves}}" + - "{{Game data/saves|Linux|{{P|linuxhome}}/.config/unity3d/Failbetter Games/Mask of the Rose/saves}}" +"Maska's Masks": pageId: 150792 steam: 1144380 Masked Forces: pageId: 53874 steam: 555750 -'Masked Forces 2: Mystic Demons': +"Masked Forces 2: Mystic Demons": pageId: 68186 steam: 655000 Masked Forces 3: pageId: 98304 steam: 826000 -'Masked Forces: Zombie Survival': +"Masked Forces: Zombie Survival": pageId: 64252 steam: 654850 Masked Shooters: @@ -100537,8 +97842,8 @@ Maskmaker: pageId: 187302 steam: 1337530 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\AppData\Local\Maskmaker\Saved\SaveGames\UserSettings.sav}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\Local\Maskmaker\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\Local\\Maskmaker\\Saved\\SaveGames\\UserSettings.sav}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\Local\\Maskmaker\\Saved\\SaveGames\\}}" Masky: pageId: 55019 steam: 554800 @@ -100549,15 +97854,15 @@ Masochisia: pageId: 38367 steam: 396310 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Oldblood\MASOCHISIA\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Oldblood\\MASOCHISIA\\}}" Masplado: pageId: 82637 steam: 791620 -'Masquerada: Songs and Shadows': +"Masquerada: Songs and Shadows": gog: 1561716235 pageId: 38686 steam: 459090 -'Masquerade: The Baubles of Doom': +"Masquerade: The Baubles of Doom": pageId: 43480 steam: 299380 MasqueradeAI: @@ -100566,8 +97871,8 @@ MasqueradeAI: Mass Destruction: pageId: 188655 templates: - - '{{Game data/config|DOS|{{p|game}}\TANK.INI}}' - - '{{Game data/saves|DOS|{{p|game}}\TANK.SAV}}' + - "{{Game data/config|DOS|{{p|game}}\\TANK.INI}}" + - "{{Game data/saves|DOS|{{p|game}}\\TANK.SAV}}" Mass Destruction (2015): pageId: 46738 steam: 396820 @@ -100575,8 +97880,8 @@ Mass Effect: pageId: 38 steam: 17460 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Bioware\Mass Effect\Config\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Bioware\Mass Effect\Save\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Bioware\\Mass Effect\\Config\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Bioware\\Mass Effect\\Save\\}}" Mass Effect 2: pageId: 177 steam: 2362420 @@ -100585,41 +97890,32 @@ Mass Effect 2: - 47760 - 901242 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\BioWare\Mass Effect - 2\BIOGame\Config\|{{p|userprofile\Documents}}\BioWare\Mass Effect 2\Profile\Player1.prf{{note|Stores achievements, - bonus unlocks and cross-campaign stats, as well as gameplay, sound and online account - settings.{{Refcheck|user=Mirh|date=2023-02-18|comment=See the entire '''SFXProfileSettings''' class in - {{file|SFXGame.pcc}}.}}|name=profile1}}}} - - >- - {{Game data/saves|Windows|{{p|userprofile\Documents}}\BioWare\Mass Effect - 2\Save\|{{p|userprofile\Documents}}\BioWare\Mass Effect 2\Profile\Player1.prf{{note|name=profile1}}}} + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\BioWare\\Mass Effect 2\\BIOGame\\Config\\|{{p|userprofile\\Documents}}\\BioWare\\Mass Effect 2\\Profile\\Player1.prf{{note|Stores achievements, bonus unlocks and cross-campaign stats, as well as gameplay, sound and online account settings.{{Refcheck|user=Mirh|date=2023-02-18|comment=See the entire '''SFXProfileSettings''' class in {{file|SFXGame.pcc}}.}}|name=profile1}}}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\BioWare\\Mass Effect 2\\Save\\|{{p|userprofile\\Documents}}\\BioWare\\Mass Effect 2\\Profile\\Player1.prf{{note|name=profile1}}}}" Mass Effect 3: pageId: 1300 steam: 1238020 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\BioWare\Mass Effect 3\BIOGame\Config\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\BioWare\Mass Effect 3\Save\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\BioWare\\Mass Effect 3\\BIOGame\\Config\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\BioWare\\Mass Effect 3\\Save\\}}" Mass Effect Legendary Edition: pageId: 165160 steam: 1328670 steamSide: - 1393160 templates: - - >- - {{Game - data/config|Windows|{{P|game}}\Game\ME1\BioGame\Config\|{{P|game}}\Game\ME2\BioGame\Config\|{{P|game}}\Game\ME3\BioGame\Config\}} - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\BioWare\Mass Effect Legendary Edition\Save\}}' -'Mass Effect: Andromeda': + - "{{Game data/config|Windows|{{P|game}}\\Game\\ME1\\BioGame\\Config\\|{{P|game}}\\Game\\ME2\\BioGame\\Config\\|{{P|game}}\\Game\\ME3\\BioGame\\Config\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\BioWare\\Mass Effect Legendary Edition\\Save\\}}" +"Mass Effect: Andromeda": pageId: 33397 steam: 1238000 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\BioWare\Mass Effect Andromeda\Save\}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\BioWare\Mass Effect Andromeda\Save\}}' + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\BioWare\\Mass Effect Andromeda\\Save\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\BioWare\\Mass Effect Andromeda\\Save\\}}" Mass Exodus: pageId: 54818 steam: 566530 -Mass O' Kyzt: +"Mass O' Kyzt": pageId: 70701 steam: 713220 Mass Plus: @@ -100639,12 +97935,12 @@ Massive Assault: pageId: 24654 steam: 34630 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/saves|Windows|{{p|game}}\savegame}}' + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\savegame}}" Massive Assault Network 2: pageId: 41209 steam: 34650 -'Massive Assault: Phantom Renaissance': +"Massive Assault: Phantom Renaissance": gog: 1422452702 pageId: 36386 steam: 34640 @@ -100653,13 +97949,13 @@ Massive Chalice: pageId: 21549 steam: 246110 templates: - - '{{Game data/config|Windows|{{P|appdata}}\Doublefine\MassiveChalice\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Doublefine/MassiveChalice/}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.local/share/doublefine/massivechalice/}}' - - '{{Game data/saves|Windows|{{P|appdata}}\Doublefine\MassiveChalice\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Doublefine/MassiveChalice/}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.local/share/doublefine/massivechalice/}}' -'Massive Cleavage vs Zombies: Awesome Edition': + - "{{Game data/config|Windows|{{P|appdata}}\\Doublefine\\MassiveChalice\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Doublefine/MassiveChalice/}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.local/share/doublefine/massivechalice/}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\Doublefine\\MassiveChalice\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Doublefine/MassiveChalice/}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.local/share/doublefine/massivechalice/}}" +"Massive Cleavage vs Zombies: Awesome Edition": pageId: 42473 steam: 399130 Massive Effect: @@ -100671,7 +97967,7 @@ Massive Galaxy: Massive multiplayer war shooter: pageId: 121896 steam: 964030 -'Mastema: Out of Hell': +"Mastema: Out of Hell": pageId: 58148 steam: 595550 Master Arena: @@ -100687,7 +97983,7 @@ Master Magistrate: pageId: 149710 steam: 1066630 templates: - - '{{Game data/saves|Windows|{{p|game}}\savedata\*}}' + - "{{Game data/saves|Windows|{{p|game}}\\savedata\\*}}" Master Of Pottery: pageId: 153304 steam: 1160490 @@ -100703,10 +97999,10 @@ Master Reboot: pageId: 11623 steam: 251850 templates: - - '{{Game data/config|Windows|{{p|game}}\UDKGame\Config\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/MasterReboot/UDKGame/Config/}}' - - '{{Game data/saves|Windows|{{p|game}}\Binaries\Win32\SaveData.bin}}' - - '{{Game data/saves|OS X|{{p|game}}/MasterReboot.app/Contents/Resources/Engine/Config/SaveData.bin}}' + - "{{Game data/config|Windows|{{p|game}}\\UDKGame\\Config\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/MasterReboot/UDKGame/Config/}}" + - "{{Game data/saves|Windows|{{p|game}}\\Binaries\\Win32\\SaveData.bin}}" + - "{{Game data/saves|OS X|{{p|game}}/MasterReboot.app/Contents/Resources/Engine/Config/SaveData.bin}}" Master Shot VR: pageId: 60780 steam: 600980 @@ -100726,8 +98022,8 @@ Master of Magic: pageId: 8096 steam: 1146370 templates: - - '{{Game data/config|DOS|{{p|game}}\MAGIC.SET}}' - - '{{Game data/saves|DOS|{{p|game}}\SAVE*.GAM}}' + - "{{Game data/config|DOS|{{p|game}}\\MAGIC.SET}}" + - "{{Game data/saves|DOS|{{p|game}}\\SAVE*.GAM}}" Master of Magic (2022): gog: 1074533562 gogSide: @@ -100735,10 +98031,10 @@ Master of Magic (2022): pageId: 168357 steam: 1623070 steamSide: - - 2482370 - 2239310 + - 2482370 templates: - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\MuHa Games\MoM}}' + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\MuHa Games\\MoM}}" Master of Magic Chess: pageId: 61650 steam: 598680 @@ -100773,9 +98069,9 @@ Master of Orion (2016): - 558301 - 558302 templates: - - '{{Game data/config|Windows|{{p|game}}\config.cfg}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Master of Orion\Saves\}}' -'Master of Orion II: Battle at Antares': + - "{{Game data/config|Windows|{{p|game}}\\config.cfg}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Master of Orion\\Saves\\}}" +"Master of Orion II: Battle at Antares": gog: 1207661633 gogSide: - 1207658854 @@ -100788,7 +98084,7 @@ Master of Orion III: Master of Rogues - The Seven Artifacts: pageId: 110516 steam: 928130 -'Master of Secrets: Dark Europe': +"Master of Secrets: Dark Europe": pageId: 126160 steam: 1001170 Master of the Forbidden Sea: @@ -100797,12 +98093,12 @@ Master of the Forbidden Sea: Master of the Harem Guild: pageId: 146104 steam: 803040 -'Master of the Skies: The Red Ace': +"Master of the Skies: The Red Ace": pageId: 67685 templates: - - '{{Game data/config|Windows|{{p|game}}\redace.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\characters.ini}}' -'MasterChef: Let''s Cook': + - "{{Game data/config|Windows|{{p|game}}\\redace.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\characters.ini}}" +"MasterChef: Let's Cook": pageId: 170591 Masteroid: pageId: 150882 @@ -100812,8 +98108,8 @@ Masters of Anima: pageId: 91058 steam: 606890 templates: - - '{{Game data/config|Windows|{{P|game}}\WarlordResources\_Saves\Local Settings.ob}}' - - '{{Game data/saves|Windows|{{P|game}}\WarlordResources\_Saves\}}' + - "{{Game data/config|Windows|{{P|game}}\\WarlordResources\\_Saves\\Local Settings.ob}}" + - "{{Game data/saves|Windows|{{P|game}}\\WarlordResources\\_Saves\\}}" Masters of Chess: pageId: 59328 steam: 606270 @@ -100827,19 +98123,19 @@ Masterspace: pageId: 16840 steam: 282860 templates: - - '{{Game data/config|Windows|{{P|game}}/}}' - - '{{Game data/saves|Windows|{{P|game}}/Save/}}' -Mat Hoffman's Pro BMX: + - "{{Game data/config|Windows|{{P|game}}/}}" + - "{{Game data/saves|Windows|{{P|game}}/Save/}}" +"Mat Hoffman's Pro BMX": pageId: 5670 templates: - - '{{Game data/config|Windows|{{p|game}}\bmx.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\save}}' + - "{{Game data/config|Windows|{{p|game}}\\bmx.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\save}}" Mata Hari: pageId: 41258 steam: 18480 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\MataHari\config.xml}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\MataHari\Savegames\slot*.sav}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\MataHari\\config.xml}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\MataHari\\Savegames\\slot*.sav}}" Matanga: pageId: 128230 steam: 1023510 @@ -100867,13 +98163,11 @@ Match Three Pirates! Heir to Davy Jones: Match and Crash: pageId: 71698 steam: 677200 -'Matchpoint: Tennis Championships': +"Matchpoint: Tennis Championships": pageId: 179138 steam: 1345760 templates: - - >- - {{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\Torus - Games\Matchpoint\Matchpoint*.save|{{p|userprofile\appdata\locallow}}\Torus Games\Matchpoint\Career*.sav}} + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\Torus Games\\Matchpoint\\Matchpoint*.save|{{p|userprofile\\appdata\\locallow}}\\Torus Games\\Matchpoint\\Career*.sav}}" Matchville: pageId: 108744 steam: 695720 @@ -100884,8 +98178,8 @@ MatchyGotchy: pageId: 80360 steam: 772700 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Silverware Games, Inc.\MatchyGotchy\}}' - - '{{Game data/saves|Windows|{{P|steam}}\userdata\{{P|uid}}\772700\remote\save.dat}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Silverware Games, Inc.\\MatchyGotchy\\}}" + - "{{Game data/saves|Windows|{{P|steam}}\\userdata\\{{P|uid}}\\772700\\remote\\save.dat}}" MatchyGotchy Z: pageId: 113488 steam: 888220 @@ -100893,20 +98187,20 @@ Material Girl: pageId: 63735 steam: 644570 templates: - - '{{Game data/saves|Windows|{{p|game}}\www\save\*}}' -'Math Blaster Mystery: Pre-Algebra': + - "{{Game data/saves|Windows|{{p|game}}\\www\\save\\*}}" +"Math Blaster Mystery: Pre-Algebra": pageId: 190572 -'Math Blaster: Ages 6-8': +"Math Blaster: Ages 6-8": pageId: 190562 -'Math Blaster: Ages 8-9': +"Math Blaster: Ages 8-9": pageId: 190564 -'Math Blaster: Ages 9-12': +"Math Blaster: Ages 9-12": pageId: 190560 -'Math Blaster: Cross Terrain Challenge': +"Math Blaster: Cross Terrain Challenge": pageId: 190558 -'Math Blaster: Episode 1 - In Search of Spot': +"Math Blaster: Episode 1 - In Search of Spot": pageId: 190567 -'Math Blaster: Episode 2 - Secret of the Lost City': +"Math Blaster: Episode 2 - Secret of the Lost City": pageId: 190570 Math Classroom Challenge: pageId: 95294 @@ -100933,11 +98227,11 @@ Math Rescue: pageId: 30442 steam: 358200 templates: - - '{{Game data/saves|DOS|{{p|game}}\*.MR1}}' + - "{{Game data/saves|DOS|{{p|game}}\\*.MR1}}" Math Rescue Plus: pageId: 35875 templates: - - '{{Game data/saves|DOS|C:\REDWOOD\*.MR}}' + - "{{Game data/saves|DOS|C:\\REDWOOD\\*.MR}}" Math Speed Challenge: pageId: 94671 steam: 860390 @@ -100953,9 +98247,9 @@ Mathel Idle: Mathica: pageId: 157655 templates: - - '{{Game data/config|Windows|{{P|game}}\Mathica.ini}}' - - '{{Game data/saves|Windows|{{P|game}}\mathica.rup}}' -'Mathoria: It All Adds Up': + - "{{Game data/config|Windows|{{P|game}}\\Mathica.ini}}" + - "{{Game data/saves|Windows|{{P|game}}\\mathica.rup}}" +"Mathoria: It All Adds Up": pageId: 43877 steam: 434480 Maths Challenge: @@ -100979,34 +98273,30 @@ Maui: pageId: 43384 steam: 464700 templates: - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\Kokua Games\Maui}}' + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\Kokua Games\\Maui}}" Maui Mallard in Cold Shadow: gog: 1956067111 pageId: 136382 steam: 987410 templates: - - '{{Game data/config|Windows|{{p|windir}}\win.ini}}' + - "{{Game data/config|Windows|{{p|windir}}\\win.ini}}" Mausoleum of the Medusa: pageId: 52392 steam: 547260 -Mavi's Journey: +"Mavi's Journey": pageId: 82696 steam: 797010 Max Gentlemen: pageId: 19417 steam: 257710 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\The Men Who Wear Many Hats LLC\Max Gentlemen\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\The Men Who Wear Many Hats LLC\\Max Gentlemen\\}}" Max Gentlemen Sexy Business!: pageId: 156726 steam: 817840 templates: - - >- - {{Game data/config|Windows|{{P|userprofile\appdata\locallow}}\TheMenWhoWearManyHats\Max Gentlemen Sexy - Business\{{P|uid}}\options.dat|{{P|hkcu}}\Software\TheMenWhoWearManyHats\Max Gentlemen Sexy Business\}} - - >- - {{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\TheMenWhoWearManyHats\Max Gentlemen Sexy - Business{{P|uid}}\}} + - "{{Game data/config|Windows|{{P|userprofile\\appdata\\locallow}}\\TheMenWhoWearManyHats\\Max Gentlemen Sexy Business\\{{P|uid}}\\options.dat|{{P|hkcu}}\\Software\\TheMenWhoWearManyHats\\Max Gentlemen Sexy Business\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\TheMenWhoWearManyHats\\Max Gentlemen Sexy Business{{P|uid}}\\}}" Max Payne: pageId: 768 steam: 12140 @@ -101015,53 +98305,53 @@ Max Payne: - 202570 - 210350 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Remedy Entertainment\Max Payne\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Max Payne Savegames\}}' - - '{{Game data/saves|Mac OS|{Boot}:Documents:Max Payne Saved Games or user''s Documents folder}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Documents/Max Payne Saved Games/}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Remedy Entertainment\\Max Payne\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Max Payne Savegames\\}}" + - "{{Game data/saves|Mac OS|{Boot}:Documents:Max Payne Saved Games or user's Documents folder}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Documents/Max Payne Saved Games/}}" Max Payne 1&2 Remake: pageId: 182886 -'Max Payne 2: The Fall of Max Payne': +"Max Payne 2: The Fall of Max Payne": pageId: 3397 steam: 12150 steamSide: - 12260 + - 202900 - 210410 - 210430 - - 202900 templates: - - '{{Game data/config|Windows|{{p|game}}\MP2_Init.ras|{{p|hkcu}}\Software\Remedy Entertainment\Max Payne 2\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Max Payne 2 Savegames\}}' + - "{{Game data/config|Windows|{{p|game}}\\MP2_Init.ras|{{p|hkcu}}\\Software\\Remedy Entertainment\\Max Payne 2\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Max Payne 2 Savegames\\}}" Max Payne 3: pageId: 2846 steam: 204100 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Rockstar Games\Max Payne 3\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Rockstar Games\Max Payne 3\Profiles\{{P|uid}}\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Rockstar Games\\Max Payne 3\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Rockstar Games\\Max Payne 3\\Profiles\\{{P|uid}}\\}}" Max Stern: pageId: 51873 steam: 531240 -'Max and Maya: Cat Simulator': +"Max and Maya: Cat Simulator": pageId: 79408 steam: 772410 Max and the Magic Marker: pageId: 41112 steam: 50820 -Max's Big Bust - A Captain Nekorai Tale: +"Max's Big Bust - A Captain Nekorai Tale": pageId: 45686 steam: 416360 -Max's Big Bust 2 - Max's Bigger Bust: +"Max's Big Bust 2 - Max's Bigger Bust": pageId: 164358 steam: 1432650 -'Max, an Autistic Journey': +"Max, an Autistic Journey": pageId: 36143 steam: 511630 -'Max: The Curse of Brotherhood': +"Max: The Curse of Brotherhood": pageId: 16576 steam: 255390 templates: - - '{{Game data/config|Windows|{{p|steam}}\userdata\{{p|uid}}\255390\remote\settings.dat}}' - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\255390\remote\userdata.dat}}' + - "{{Game data/config|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\255390\\remote\\settings.dat}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\255390\\remote\\userdata.dat}}" MaxControl: pageId: 55805 steam: 508460 @@ -101073,8 +98363,8 @@ Maximum Action: pageId: 105063 steam: 853770 templates: - - '{{Game data/config|Windows|{{p|USERPROFILE}}\AppData\LocalLow\BalloonMoose\Maximum Action\Saves\}}' - - '{{Game data/saves|Windows|{{p|USERPROFILE}}\AppData\LocalLow\BalloonMoose\Maximum Action\Saves\}}' + - "{{Game data/config|Windows|{{p|USERPROFILE}}\\AppData\\LocalLow\\BalloonMoose\\Maximum Action\\Saves\\}}" + - "{{Game data/saves|Windows|{{p|USERPROFILE}}\\AppData\\LocalLow\\BalloonMoose\\Maximum Action\\Saves\\}}" Maximum Archery The Game: pageId: 40140 steam: 513680 @@ -101089,31 +98379,31 @@ Maxx Trucks: May: pageId: 92275 steam: 838340 -'May''s Mysteries: The Secret of Dragonville': +"May's Mysteries: The Secret of Dragonville": pageId: 33476 steam: 327650 Mayan Death Robots: pageId: 45543 steam: 347470 -'Mayan Prophecies: Blood Moon': +"Mayan Prophecies: Blood Moon": pageId: 87051 renamedFrom: - - 'Mayan Prophecies: Blood Moon Collector''s Edition' + - "Mayan Prophecies: Blood Moon Collector's Edition" steam: 805020 -'Mayan Prophecies: Cursed Island': +"Mayan Prophecies: Cursed Island": pageId: 65650 renamedFrom: - - 'Mayan Prophecies: Cursed Island Collector''s Edition' + - "Mayan Prophecies: Cursed Island Collector's Edition" steam: 678430 -'Mayan Prophecies: Ship of Spirits': +"Mayan Prophecies: Ship of Spirits": pageId: 55287 renamedFrom: - - 'Mayan Prophecies: Ship of Spirits Collector''s Edition' + - "Mayan Prophecies: Ship of Spirits Collector's Edition" steam: 568160 -Mayas' Virtual Brush: +"Mayas' Virtual Brush": pageId: 70473 steam: 682250 -'Maybe Drinking: Russian Style': +"Maybe Drinking: Russian Style": pageId: 94364 steam: 791540 Maybot Run: @@ -101180,10 +98470,10 @@ Maze Ninja: Maze Of Time VR: pageId: 128041 steam: 1028990 -'Maze Quest 1: The Forest': +"Maze Quest 1: The Forest": pageId: 107736 steam: 895930 -'Maze Quest 2: The Desert': +"Maze Quest 2: The Desert": pageId: 139190 steam: 1008450 Maze Roller: @@ -101222,10 +98512,10 @@ Maze of Memories: Maze of Pain: pageId: 81438 steam: 661390 -'Maze: Subject 360': +"Maze: Subject 360": pageId: 43332 renamedFrom: - - 'Maze: Subject 360 Collector''s Edition' + - "Maze: Subject 360 Collector's Edition" steam: 466000 MazeBot: pageId: 92903 @@ -101255,28 +98545,24 @@ McOsu: pageId: 59599 steam: 607260 templates: - - '{{Game data/config|Windows|{{p|game}}\cfg\}}' - - '{{Game data/config|Linux|{{p|game}}/cfg/}}' - - '{{Game data/config|OS X|{{p|game}}/cfg/}}' - - '{{Game data/saves|Windows|{{p|game}}\scores.db|{{p|game}}\scoresvr.db}}' - - '{{Game data/saves|Linux|{{p|game}}/scores.db|{{p|game}}/scoresvr.db}}' - - '{{Game data/saves|OS X|{{p|game}}/scores.db|{{p|game}}/scoresvr.db}}' + - "{{Game data/config|Windows|{{p|game}}\\cfg\\}}" + - "{{Game data/config|Linux|{{p|game}}/cfg/}}" + - "{{Game data/config|OS X|{{p|game}}/cfg/}}" + - "{{Game data/saves|Windows|{{p|game}}\\scores.db|{{p|game}}\\scoresvr.db}}" + - "{{Game data/saves|Linux|{{p|game}}/scores.db|{{p|game}}/scoresvr.db}}" + - "{{Game data/saves|OS X|{{p|game}}/scores.db|{{p|game}}/scoresvr.db}}" McPixel: pageId: 8303 steam: 220860 templates: - - '{{Game data/config|Windows|{{p|appdata}}\gd.sos.McPixel}}' + - "{{Game data/config|Windows|{{p|appdata}}\\gd.sos.McPixel}}" McPixel 3: gog: 1669555675 pageId: 176679 steam: 1338580 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\McPixel3\progress.json|{{p|game}}\progress.json ''(itch.io - Windows 95 and Windows NT versions)''}} - - >- - {{Game data/saves|Windows|{{p|userprofile\Documents}}\McPixel3\settings.json|{{p|game}}\settings.json ''(itch.io - Windows 95 and Windows NT versions)''}} + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\McPixel3\\progress.json|{{p|game}}\\progress.json ''(itch.io Windows 95 and Windows NT versions)''}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\McPixel3\\settings.json|{{p|game}}\\settings.json ''(itch.io Windows 95 and Windows NT versions)''}}" McRogue: pageId: 78324 steam: 758150 @@ -101296,8 +98582,8 @@ Meadow: pageId: 40161 steam: 486310 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\SOFTWARE\Might and Delight\Meadow}}' - - '{{Game data/saves|Windows|{{p|game}}\Meadow_Data\Saves}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\Might and Delight\\Meadow}}" + - "{{Game data/saves|Windows|{{p|game}}\\Meadow_Data\\Saves}}" Meadow Fun!!: pageId: 125141 steam: 992520 @@ -101305,9 +98591,7 @@ Meadowland: pageId: 49466 steam: 320120 templates: - - |- - {{Game data/saves|Windows|{{p|APPDATA}}\MMFApplications - }} + - "{{Game data/saves|Windows|{{p|APPDATA}}\\MMFApplications\n}}" Mean Routine: pageId: 122316 steam: 968990 @@ -101318,9 +98602,9 @@ Meanders: pageId: 78735 steam: 734920 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\ISLE\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\ISLE\Saved\SaveGames\}}' -'Meanwhile: An Interactive Comic Book': + - "{{Game data/config|Windows|{{P|localappdata}}\\ISLE\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\ISLE\\Saved\\SaveGames\\}}" +"Meanwhile: An Interactive Comic Book": pageId: 78671 steam: 714980 Measurement Problem: @@ -101330,7 +98614,7 @@ Meat Puppet: gog: 1571977582 pageId: 182287 steam: 2218770 -'MeatPossible: Chapter 1.5': +"MeatPossible: Chapter 1.5": pageId: 110154 steam: 922810 Meaty McSkinBones: @@ -101352,8 +98636,8 @@ Mech Engineer: pageId: 187147 steam: 1428520 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Mech_Engineer\data\settings.ini}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Mech_Engineer\data}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Mech_Engineer\\data\\settings.ini}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Mech_Engineer\\data}}" Mech Hunter: pageId: 142186 steam: 1122170 @@ -101366,7 +98650,7 @@ Mech League Hunting: Mech League Smash: pageId: 109474 steam: 905360 -'Mech Marines: Steel March': +"Mech Marines: Steel March": pageId: 48985 steam: 335940 Mech Mechanic Simulator: @@ -101376,8 +98660,8 @@ Mech Merc Company: pageId: 145351 steam: 984610 templates: - - '{{Game data/config|Windows|{{p|userprofile\appdata\locallow}}\MichaelShoots\MechMercCompany\Configs\}}' - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\MichaelShoots\MechMercCompany\Careers\}}' + - "{{Game data/config|Windows|{{p|userprofile\\appdata\\locallow}}\\MichaelShoots\\MechMercCompany\\Configs\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\MichaelShoots\\MechMercCompany\\Careers\\}}" Mech Rage: pageId: 114046 steam: 934600 @@ -101387,17 +98671,17 @@ Mech Skeleton: MechCommander: pageId: 8129 templates: - - '{{Game data/config|Windows|{{p|game}}\PREFS.CFG}}' - - '{{Game data/saves|Windows|{{p|game}}\data\savegame}}' + - "{{Game data/config|Windows|{{p|game}}\\PREFS.CFG}}" + - "{{Game data/saves|Windows|{{p|game}}\\data\\savegame}}" MechCommander 2: pageId: 148 templates: - - '{{Game data/config|Windows|{{p|game}}\options.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\data\savegame}}' + - "{{Game data/config|Windows|{{p|game}}\\options.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\data\\savegame}}" MechCorp: pageId: 95164 steam: 838180 -'MechCube: Escape': +"MechCube: Escape": pageId: 145220 steam: 1127330 MechDefender: @@ -101412,56 +98696,52 @@ MechTroid: MechWarrior: pageId: 8225 templates: - - '{{Game data/saves|DOS|{{p|game}}\*.GAM}}' -'MechWarrior 2: 31st Century Combat': + - "{{Game data/saves|DOS|{{p|game}}\\*.GAM}}" +"MechWarrior 2: 31st Century Combat": pageId: 18935 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/saves|DOS|{{p|game}}\mw2reg.cfg}}' -'MechWarrior 2: Mercenaries': + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|DOS|{{p|game}}\\mw2reg.cfg}}" +"MechWarrior 2: Mercenaries": pageId: 18939 MechWarrior 3: pageId: 8000 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\SOFTWARE\MicroProse\MechWarrior 3\1.0\}}' - - '{{Game data/saves|Windows|{{p|game}}\pilots}}' -'MechWarrior 4: Mercenaries': + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\MicroProse\\MechWarrior 3\\1.0\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\pilots}}" +"MechWarrior 4: Mercenaries": pageId: 4350 templates: - - '{{Game data/config|Windows|{{p|game}}\options.ini|{{p|game}}\RESOURCE\Pilots\{{p|uid}}\options.mw4}}' - - '{{Game data/saves|Windows|{{p|game}}\RESOURCE\Pilots\}}' -'MechWarrior 4: Vengeance': + - "{{Game data/config|Windows|{{p|game}}\\options.ini|{{p|game}}\\RESOURCE\\Pilots\\{{p|uid}}\\options.mw4}}" + - "{{Game data/saves|Windows|{{p|game}}\\RESOURCE\\Pilots\\}}" +"MechWarrior 4: Vengeance": pageId: 3082 templates: - - '{{Game data/config|Windows|{{p|game}}\options.ini|{{p|game}}\resource\pilots\{{p|uid}}\options.mw4}}' - - '{{Game data/saves|Windows|{{p|game}}\resource\pilots\{{p|uid}}}}' -'MechWarrior 5: Mercenaries': + - "{{Game data/config|Windows|{{p|game}}\\options.ini|{{p|game}}\\resource\\pilots\\{{p|uid}}\\options.mw4}}" + - "{{Game data/saves|Windows|{{p|game}}\\resource\\pilots\\{{p|uid}}}}" +"MechWarrior 5: Mercenaries": gog: 2147483045 gogSide: - - 2142732028 - - 1444478826 - - 2038424921 - 1254147353 + - 1444478826 + - 1459558952 - 1687807209 - 1984078926 - - 1459558952 + - 2038424921 + - 2142732028 pageId: 137805 steam: 784080 steamSide: - - 1456210 - 1456180 + - 1456210 - 1705820 - 1969380 - 2179800 - 2489020 templates: - - >- - {{Game - data/config|Windows|{{P|localappdata}}\MW5Mercs\Saved\Config\WindowsNoEditor\|{{P|localappdata}}\MW5Mercs\Saved\SavedHOTAS\HOTASMappings.Remap}} - - '{{Game data/saves|Windows|{{P|localappdata}}\MW5Mercs\Saved\SaveGames\}}' - - >- - {{Game data/saves|Microsoft - Store|{{P|localappdata}}\Packages\PiranhaGamesInc.MechWarrior5Mercenaries_\\LocalCache\Local\MW5Mercs\Saved\}} + - "{{Game data/config|Windows|{{P|localappdata}}\\MW5Mercs\\Saved\\Config\\WindowsNoEditor\\|{{P|localappdata}}\\MW5Mercs\\Saved\\SavedHOTAS\\HOTASMappings.Remap}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\MW5Mercs\\Saved\\SaveGames\\}}" + - "{{Game data/saves|Microsoft Store|{{P|localappdata}}\\Packages\\PiranhaGamesInc.MechWarrior5Mercenaries_\\\\LocalCache\\Local\\MW5Mercs\\Saved\\}}" MechWarrior Online: pageId: 22449 steam: 342200 @@ -101471,24 +98751,24 @@ MechWarrior Online: - 412242 - 412243 templates: - - '{{Game data/config|Windows|{{p|game}}\user.cfg}}' -'MechWarrior: Living Legends': + - "{{Game data/config|Windows|{{p|game}}\\user.cfg}}" +"MechWarrior: Living Legends": pageId: 26276 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Crysis_WARHEAD\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Crysis_WARHEAD\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Crysis_WARHEAD\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Crysis_WARHEAD\\}}" Mecha Ace: pageId: 37998 steam: 318330 -'Mecha Knights: Nightmare': +"Mecha Knights: Nightmare": pageId: 151448 steam: 1163870 -'Mecha Ritz: Steel Rondo': +"Mecha Ritz: Steel Rondo": pageId: 33900 steam: 463070 templates: - - '{{Game data/config|Windows|{{p|game}}/score.bin}}' - - '{{Game data/saves|Windows|{{p|game}}/score.bin}}' + - "{{Game data/config|Windows|{{p|game}}/score.bin}}" + - "{{Game data/saves|Windows|{{p|game}}/score.bin}}" Mecha-Tokyo Rush: pageId: 97331 steam: 882220 @@ -101499,7 +98779,7 @@ MechaNika: pageId: 37719 steam: 384680 templates: - - '{{Game data/saves|Windows|{{P|game}}\save\*.data}}' + - "{{Game data/saves|Windows|{{P|game}}\\save\\*.data}}" Mechabellum: pageId: 187173 steam: 669330 @@ -101508,14 +98788,12 @@ Mechajammer: pageId: 173149 steam: 485400 templates: - - >- - {{Game data/config|Windows|{{P|hkcu}}\SOFTWARE\Whalenought\Mechajammer
- {{P|userprofile\appdata\locallow}}\Whalenought\Mechajammer}} + - "{{Game data/config|Windows|{{P|hkcu}}\\SOFTWARE\\Whalenought\\Mechajammer
{{P|userprofile\\appdata\\locallow}}\\Whalenought\\Mechajammer}}" Mechanic Escape: pageId: 38303 steam: 268240 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Slak Games\MechanicEscape\}}' + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Slak Games\\MechanicEscape\\}}" Mechanic Miner: pageId: 78824 steam: 745010 @@ -101537,19 +98815,19 @@ MechoEcho: gog: 2023071927 pageId: 34182 steam: 433890 -'Mechs & Mercs: Black Talons': +"Mechs & Mercs: Black Talons": pageId: 22331 steam: 273960 templates: - - '{{Game data/config|Windows|{{P|hkcu}}/Software/Camel101/BlackTalons}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Camel101\BlackTalons\MySaves}}' + - "{{Game data/config|Windows|{{P|hkcu}}/Software/Camel101/BlackTalons}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Camel101\\BlackTalons\\MySaves}}" Mechs V Kaijus: pageId: 88091 steam: 809540 templates: - - '{{Game data/config|Windows|{{p|userprofile\appdata\locallow}}\\Doble Punch Games\Mechs V Kaijus\UserData}}' - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\\Doble Punch Games\Mechs V Kaijus\UserData}}' -'Mechsprofit: Mech Tycoon Simulator': + - "{{Game data/config|Windows|{{p|userprofile\\appdata\\locallow}}\\\\Doble Punch Games\\Mechs V Kaijus\\UserData}}" + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\\\Doble Punch Games\\Mechs V Kaijus\\UserData}}" +"Mechsprofit: Mech Tycoon Simulator": pageId: 91566 steam: 674890 Mechstermination Force: @@ -101561,39 +98839,37 @@ Medal of Honor (2010): steamSide: - 47830 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\EA Games\Medal of - Honor\Config\|{{p|userprofile\Documents}}\EA Games\Medal of Honor\Multiplayer\}} - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\EA Games\Medal of Honor\}}' -'Medal of Honor: Above and Beyond': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\EA Games\\Medal of Honor\\Config\\|{{p|userprofile\\Documents}}\\EA Games\\Medal of Honor\\Multiplayer\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\EA Games\\Medal of Honor\\}}" +"Medal of Honor: Above and Beyond": pageId: 147268 steam: 1402320 templates: - - '{{Game data/saves|Windows|{{P|localappdata}}\Mohab\Saved\Saves\{{P|uid}}\}}' -'Medal of Honor: Airborne': + - "{{Game data/saves|Windows|{{P|localappdata}}\\Mohab\\Saved\\Saves\\{{P|uid}}\\}}" +"Medal of Honor: Airborne": pageId: 3605 steam: 24840 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\EA Games\Medal of Honor Airborne(tm)\Config\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\EA Games\Medal of Honor Airborne(tm)\Saved\}}' -'Medal of Honor: Allied Assault': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\EA Games\\Medal of Honor Airborne(tm)\\Config\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\EA Games\\Medal of Honor Airborne(tm)\\Saved\\}}" +"Medal of Honor: Allied Assault": gog: 1207659126 pageId: 2754 templates: - - '{{Game data/config|Windows|{{p|game}}\main*\*.cfg | {{p|game}}\main*\configs\*.cfg }}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.mohaa/main/}}' - - '{{Game data/saves|Windows|{{p|game}}\main\save | {{p|game}}\maintt\save | {{p|game}}\mainta\save }}' -'Medal of Honor: Pacific Assault': + - "{{Game data/config|Windows|{{p|game}}\\main*\\*.cfg | {{p|game}}\\main*\\configs\\*.cfg }}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.mohaa/main/}}" + - "{{Game data/saves|Windows|{{p|game}}\\main\\save | {{p|game}}\\maintt\\save | {{p|game}}\\mainta\\save }}" +"Medal of Honor: Pacific Assault": gog: 1176929400 pageId: 3973 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\EA Games\Medal of Honor Pacific Assault(tm)\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\EA Games\Medal of Honor Pacific Assault(tm)\}}' -'Medal of Honor: Warfighter': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\EA Games\\Medal of Honor Pacific Assault(tm)\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\EA Games\\Medal of Honor Pacific Assault(tm)\\}}" +"Medal of Honor: Warfighter": pageId: 3453 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\MOHW\settings\PROF_SAVE_profile}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\MOHW\settings\meta.xml}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\MOHW\\settings\\PROF_SAVE_profile}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\MOHW\\settings\\meta.xml}}" Medical verdict: pageId: 109300 steam: 891310 @@ -101605,7 +98881,7 @@ Medieval Apocalypse: Medieval Battle Simulator: pageId: 121349 steam: 951020 -'Medieval Battle: Europe': +"Medieval Battle: Europe": pageId: 121763 steam: 699850 Medieval Battlefields - Black Edition: @@ -101624,33 +98900,31 @@ Medieval Dynasty: steamSide: - 1418980 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Medieval_Dynasty\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\Medieval_Dynasty\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\Medieval_Dynasty\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Medieval_Dynasty\\Saved\\SaveGames\\}}" Medieval Engineers: pageId: 23414 steam: 333950 templates: - - >- - {{Game - data/config|Windows|{{P|appdata}}\MedievalEngineers\MedievalEngineers.cfg|{{P|appdata}}\MedievalEngineers\Controls.cfg}} - - '{{Game data/saves|Windows|{{P|appdata}}\MedievalEngineers\Saves}}' + - "{{Game data/config|Windows|{{P|appdata}}\\MedievalEngineers\\MedievalEngineers.cfg|{{P|appdata}}\\MedievalEngineers\\Controls.cfg}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\MedievalEngineers\\Saves}}" Medieval Farmer Simulator: pageId: 157338 steam: 1207360 -'Medieval II: Total War': +"Medieval II: Total War": pageId: 6216 steam: 4700 templates: - - '{{Game data/config|Windows|{{p|game}}\medieval2.preference.cfg}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/feral-interactive/Medieval II Total War/}}' - - '{{Game data/saves|Windows|{{p|game}}\saves}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/feral-interactive/Medieval II Total War/VFS/Local/saves}}' + - "{{Game data/config|Windows|{{p|game}}\\medieval2.preference.cfg}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/feral-interactive/Medieval II Total War/}}" + - "{{Game data/saves|Windows|{{p|game}}\\saves}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/feral-interactive/Medieval II Total War/VFS/Local/saves}}" Medieval Kingdom Wars: pageId: 62472 steam: 499660 templates: - - '{{Game data/saves|Windows|{{p|localappdata}}\mkw\}}' -'Medieval Lords: Build, Defend, Expand': + - "{{Game data/saves|Windows|{{p|localappdata}}\\mkw\\}}" +"Medieval Lords: Build, Defend, Expand": pageId: 1325 Medieval Mayhem: pageId: 74664 @@ -101687,19 +98961,19 @@ Medieval Story: Medieval Survival: pageId: 114444 steam: 941870 -'Medieval: Total War': +"Medieval: Total War": pageId: 7624 steam: 345260 Medium Rare: pageId: 156987 steam: 1137190 -Medusa's Labyrinth: +"Medusa's Labyrinth": pageId: 44605 steam: 436110 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Medusa\Saved\SaveGames\*_settings.sav}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\Medusa\Saved\SaveGames\CheckpointSave.sav}}' -Medusa's Labyrinth VR: + - "{{Game data/config|Windows|{{P|localappdata}}\\Medusa\\Saved\\SaveGames\\*_settings.sav}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Medusa\\Saved\\SaveGames\\CheckpointSave.sav}}" +"Medusa's Labyrinth VR": pageId: 62064 steam: 624560 Meegah Mem 2: @@ -101728,109 +99002,109 @@ Mega Hasan: Mega Man: pageId: 73404 templates: - - '{{Game data/saves|DOS|{{p|game}}\}}' + - "{{Game data/saves|DOS|{{p|game}}\\}}" Mega Man 11: pageId: 95983 steam: 742300 templates: - - '{{Game data/config|Windows|{{p|game}}\config.ini}}' - - '{{Game data/saves|Windows|{{p|steam}}\userdata\{{p|uid}}\742300\remote\}}' + - "{{Game data/config|Windows|{{p|game}}\\config.ini}}" + - "{{Game data/saves|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\742300\\remote\\}}" Mega Man 3: pageId: 73406 templates: - - '{{Game data/saves|DOS|{{p|game}}\}}' + - "{{Game data/saves|DOS|{{p|game}}\\}}" Mega Man Battle Network Legacy Collection Vol. 1: pageId: 183288 steam: 1798010 templates: - - '{{Game data/config|Windows|{{P|game}}\exe\launcher_config.ini}}' - - '{{Game data/saves|Windows|{{p|Steam}}\userdata\{{p|uid}}\1798010\remote}}' + - "{{Game data/config|Windows|{{P|game}}\\exe\\launcher_config.ini}}" + - "{{Game data/saves|Windows|{{p|Steam}}\\userdata\\{{p|uid}}\\1798010\\remote}}" Mega Man Battle Network Legacy Collection Vol. 2: pageId: 183292 steam: 1798020 templates: - - '{{Game data/config|Windows|{{P|game}}\exe\launcher_config.ini}}' - - '{{Game data/saves|Windows|{{p|Steam}}\userdata\{{p|uid}}\1798020\remote}}' + - "{{Game data/config|Windows|{{P|game}}\\exe\\launcher_config.ini}}" + - "{{Game data/saves|Windows|{{p|Steam}}\\userdata\\{{p|uid}}\\1798020\\remote}}" Mega Man Legacy Collection: pageId: 27304 steam: 363440 templates: - - '{{Game data/config|Windows|{{p|appdata}}\MegaMan\}}' - - '{{Game data/saves|Windows|{{p|appdata}}\MegaMan\}}' + - "{{Game data/config|Windows|{{p|appdata}}\\MegaMan\\}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\MegaMan\\}}" Mega Man Legacy Collection 2: pageId: 65480 steam: 495050 templates: - - '{{Game data/config|Windows|{{p|appdata}}\MegaMan2\}}' - - '{{Game data/saves|Windows|{{p|appdata}}\MegaMan2\}}' + - "{{Game data/config|Windows|{{p|appdata}}\\MegaMan2\\}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\MegaMan2\\}}" Mega Man Legends: pageId: 73408 templates: - - '{{Game data/config|Windows|{{p|game}}\MEGAMAN.CFG}}' - - '{{Game data/saves|Windows|{{p|game}}\DASH_**.MCD}}' + - "{{Game data/config|Windows|{{p|game}}\\MEGAMAN.CFG}}" + - "{{Game data/saves|Windows|{{p|game}}\\DASH_**.MCD}}" Mega Man Maker: pageId: 111674 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\MegaMaker\Settings\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\MegaMaker\Levels\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\MegaMaker\\Settings\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\MegaMaker\\Levels\\}}" Mega Man X: pageId: 73402 templates: - - '{{Game data/config|DOS|{{p|game}}\}}' - - '{{Game data/config|Windows|{{p|game}}\MMX.OPT}}' - - '{{Game data/saves|DOS|{{p|game}}\}}' - - '{{Game data/saves|Windows|{{p|game}}\MMX.GMS}}' + - "{{Game data/config|DOS|{{p|game}}\\}}" + - "{{Game data/config|Windows|{{p|game}}\\MMX.OPT}}" + - "{{Game data/saves|DOS|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\MMX.GMS}}" Mega Man X Dive Offline: pageId: 189285 steam: 2183650 templates: - - '{{Game data/config|Windows|{{p|USERPROFILE}}\AppData\LocalLow\Capcom\ROCKMAN X DiVE Offline\}}' - - '{{Game data/saves|Windows|{{p|USERPROFILE}}\AppData\LocalLow\Capcom\ROCKMAN X DiVE Offline\}}' + - "{{Game data/config|Windows|{{p|USERPROFILE}}\\AppData\\LocalLow\\Capcom\\ROCKMAN X DiVE Offline\\}}" + - "{{Game data/saves|Windows|{{p|USERPROFILE}}\\AppData\\LocalLow\\Capcom\\ROCKMAN X DiVE Offline\\}}" Mega Man X Legacy Collection: pageId: 100302 steam: 743890 steamSide: - 6634 templates: - - '{{Game data/config|Windows|{{P|game}}\config.ini}}' - - '{{Game data/saves|Windows|{{p|Steam}}\userdata\{{p|uid}}\743890\remote\RXC1\savedata.dat}}' + - "{{Game data/config|Windows|{{P|game}}\\config.ini}}" + - "{{Game data/saves|Windows|{{p|Steam}}\\userdata\\{{p|uid}}\\743890\\remote\\RXC1\\savedata.dat}}" Mega Man X Legacy Collection 2: pageId: 100300 steam: 743900 templates: - - '{{Game data/config|Windows|{{P|game}}\config.ini}}' - - '{{Game data/saves|Windows|{{p|Steam}}\userdata\{{p|uid}}\743900\remote\RXC2\savedata.dat}}' + - "{{Game data/config|Windows|{{P|game}}\\config.ini}}" + - "{{Game data/saves|Windows|{{p|Steam}}\\userdata\\{{p|uid}}\\743900\\remote\\RXC2\\savedata.dat}}" Mega Man X3: pageId: 32054 templates: - - '{{Game data/saves|Windows|{{p|game}}\}}' + - "{{Game data/saves|Windows|{{p|game}}\\}}" Mega Man X4: pageId: 31938 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\CAPCOM\MEGA MAN X4}}' - - '{{Game data/saves|Windows|{{p|game}}\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\CAPCOM\\MEGA MAN X4}}" + - "{{Game data/saves|Windows|{{p|game}}\\}}" Mega Man X5: pageId: 73400 templates: - - '{{Game data/saves|Windows|{{p|game}}\}}' + - "{{Game data/saves|Windows|{{p|game}}\\}}" Mega Man X6: pageId: 155227 renamedFrom: - Rockman X6 templates: - - '{{Game data/config|Windows|{{p|game}}\bu00BESLES-03778}}' - - '{{Game data/saves|Windows|{{p|game}}\bu00BESLES-03778}}' + - "{{Game data/config|Windows|{{p|game}}\\bu00BESLES-03778}}" + - "{{Game data/saves|Windows|{{p|game}}\\bu00BESLES-03778}}" Mega Man X8: pageId: 63933 templates: - - '{{Game data/config|Windows|{{p|game}}\systemdata.wss}}' - - '{{Game data/saves|Windows|{{p|game}}\gamedata.wss}}' + - "{{Game data/config|Windows|{{p|game}}\\systemdata.wss}}" + - "{{Game data/saves|Windows|{{p|game}}\\gamedata.wss}}" Mega Man Zero/ZX Legacy Collection: pageId: 145636 steam: 999020 templates: - - '{{Game data/config|Windows|{{p|Steam}}\steamapps\common\MZZXLC\config.ini}}' - - '{{Game data/saves|Windows|{{p|Steam}}\userdata\{{p|uid}}\999020\remote\RZZC\savedata.dat}}' + - "{{Game data/config|Windows|{{p|Steam}}\\steamapps\\common\\MZZXLC\\config.ini}}" + - "{{Game data/saves|Windows|{{p|Steam}}\\userdata\\{{p|uid}}\\999020\\remote\\RZZC\\savedata.dat}}" Mega Maze: pageId: 64000 steam: 658210 @@ -101863,7 +99137,7 @@ MegaRace: pageId: 14445 steam: 730580 templates: - - '{{Game data/saves|DOS|{{p|game}}}}' + - "{{Game data/saves|DOS|{{p|game}}}}" MegaRace 2: gog: 1207661613 gogSide: @@ -101875,8 +99149,8 @@ MegaRace 3: pageId: 14450 steam: 733770 templates: - - '{{Game data/config|Windows|{{p|game}}\config.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\Save}}' + - "{{Game data/config|Windows|{{p|game}}\\config.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\Save}}" MegaRats: pageId: 51754 steam: 534210 @@ -101887,18 +99161,18 @@ MegaTagmension Blanc + Neptune VS Zombies: pageId: 51363 steam: 496810 templates: - - '{{Game data/saves|Windows|{{p|game}}\savedata}}' + - "{{Game data/saves|Windows|{{p|game}}\\savedata}}" Megabyte Punch: gog: 1207659583 pageId: 10772 steam: 248550 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Reptile\Megabyte Punch\|{{p|game}}\save}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Reptile/Megabyte Punch/}}' - - '{{Game data/config|Steam|{{p|steam}}/userdata/{{p|uid}}/248550/remote/megabytepunch/}}' - - '{{Game data/saves|Windows|{{p|hkcu}}\Software\Reptile\Megabyte Punch\|{{p|game}}\save}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Reptile/Megabyte Punch/}}' - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/248550/remote/megabytepunch/}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Reptile\\Megabyte Punch\\|{{p|game}}\\save}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Reptile/Megabyte Punch/}}" + - "{{Game data/config|Steam|{{p|steam}}/userdata/{{p|uid}}/248550/remote/megabytepunch/}}" + - "{{Game data/saves|Windows|{{p|hkcu}}\\Software\\Reptile\\Megabyte Punch\\|{{p|game}}\\save}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Reptile/Megabyte Punch/}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/248550/remote/megabytepunch/}}" Megacity Builder: pageId: 65259 steam: 630360 @@ -101906,19 +99180,15 @@ Megadimension Neptunia VII: pageId: 35336 steam: 460120 templates: - - '{{Game data/config|Steam|{{p|steam}}\userdata\{{p|uid}}\460120\remote\NeptuneVII.ini}}' - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\460120\remote\}}' + - "{{Game data/config|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\460120\\remote\\NeptuneVII.ini}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\460120\\remote\\}}" Megadimension Neptunia VIIR: gog: 1794229357 pageId: 129077 steam: 774511 templates: - - >- - {{Game - data/config|Windows|{{P|game}}\resource\bin\v2r.ini|{{P|steam}}\userdata\{{P|uid}}\774511\remote\SYSTEMSAVE_GAME.BIN|{{P|steam}}\userdata\{{P|uid}}\774511\remote\SYSTEMSAVE_param.sfo}} - - >- - {{Game - data/saves|Windows|{{P|steam}}\userdata\{{P|uid}}\774511\remote\SAVELIST000*_GAME.BIN|{{P|steam}}\userdata\{{P|uid}}\774511\remote\SAVELIST000*_param.sfo}} + - "{{Game data/config|Windows|{{P|game}}\\resource\\bin\\v2r.ini|{{P|steam}}\\userdata\\{{P|uid}}\\774511\\remote\\SYSTEMSAVE_GAME.BIN|{{P|steam}}\\userdata\\{{P|uid}}\\774511\\remote\\SYSTEMSAVE_param.sfo}}" + - "{{Game data/saves|Windows|{{P|steam}}\\userdata\\{{P|uid}}\\774511\\remote\\SAVELIST000*_GAME.BIN|{{P|steam}}\\userdata\\{{P|uid}}\\774511\\remote\\SAVELIST000*_param.sfo}}" Megafortress: gog: 1684433142 pageId: 186367 @@ -101932,13 +99202,13 @@ Megalomaniac: Megalonia: pageId: 87984 steam: 813710 -'Megamagic: Wizards of the Neon Age': +"Megamagic: Wizards of the Neon Age": gog: 1098700594 pageId: 34190 steam: 422650 Megami Ibunroku Persona: pageId: 147203 -'Megami Ibunroku Persona: Ikuu no Tou Hen': +"Megami Ibunroku Persona: Ikuu no Tou Hen": pageId: 190323 steam: 2541170 Meganoid: @@ -101957,16 +99227,16 @@ Megatect: Megaton: pageId: 100222 steam: 868720 -'Megaton Musashi: Wired': +"Megaton Musashi: Wired": pageId: 187524 Megaton Rainfall: gog: 1822672814 pageId: 67978 steam: 430210 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\MegatonRainfall\config.txt}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\MegatonRainfall\}}' -'Megaton: Total Destruction': + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\MegatonRainfall\\config.txt}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\MegatonRainfall\\}}" +"Megaton: Total Destruction": pageId: 72881 steam: 699100 Megatronic Void: @@ -101991,8 +99261,8 @@ Mekazoo: pageId: 38909 steam: 390330 templates: - - '{{Game data/config|Linux|{{p|linuxhome}}/GoodMoodCreators/Mekazoo/}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/GoodMoodCreators/Mekazoo/}}' + - "{{Game data/config|Linux|{{p|linuxhome}}/GoodMoodCreators/Mekazoo/}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/GoodMoodCreators/Mekazoo/}}" Mekside VR: pageId: 60067 steam: 567700 @@ -102003,8 +99273,8 @@ Melatonin: pageId: 183902 steam: 1585220 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/saves|Windows|{{p|game}}\}}' + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\}}" Melbits World: pageId: 154721 steam: 1202820 @@ -102017,10 +99287,10 @@ Melee: Meleng: pageId: 74297 steam: 735260 -Meliora's Detective Simulator: +"Meliora's Detective Simulator": pageId: 151331 steam: 1165620 -Melissa K. and the Heart of Gold Collector's Edition: +"Melissa K. and the Heart of Gold Collector's Edition": pageId: 51047 steam: 321150 Melodic Riddle: @@ -102035,13 +99305,13 @@ Melody Flight: Melody of Iris: pageId: 81737 steam: 737710 -Melody's Escape: +"Melody's Escape": pageId: 21282 steam: 270210 templates: - - '{{Game data/config|Windows|{{p|appdata}}\MelodyEscape\settings.xml}}' - - '{{Game data/saves|Windows|{{p|appdata}}\MelodyEscape\*.mel}}' -Melody's Escape 2: + - "{{Game data/config|Windows|{{p|appdata}}\\MelodyEscape\\settings.xml}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\MelodyEscape\\*.mel}}" +"Melody's Escape 2": pageId: 178243 steam: 1829470 Melon Journey 2: @@ -102054,11 +99324,11 @@ Meltdown: pageId: 38576 steam: 268220 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Phenomenon Games\Meltdown}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Phenomenon Games\\Meltdown}}" Melter Man: pageId: 46364 steam: 404460 -'Melting Hearts: Our Love Will Grow 2': +"Melting Hearts: Our Love Will Grow 2": pageId: 43261 steam: 459020 Melting World Online: @@ -102070,32 +99340,32 @@ Melting pot.: Melty Blood: pageId: 177873 templates: - - '{{Game data/config|Windows|{{p|game}}}}' - - '{{Game data/saves|Windows|{{p|game}}}}' + - "{{Game data/config|Windows|{{p|game}}}}" + - "{{Game data/saves|Windows|{{p|game}}}}" Melty Blood Act Cadenza Ver. B2: pageId: 177878 templates: - - '{{Game data/config|Windows|{{p|game}}}}' - - '{{Game data/saves|Windows|{{p|game}}}}' + - "{{Game data/config|Windows|{{p|game}}}}" + - "{{Game data/saves|Windows|{{p|game}}}}" Melty Blood Actress Again Current Code: pageId: 38187 steam: 411370 templates: - - '{{Game data/config|Windows|{{p|game}}\System\}}' - - '{{Game data/saves|Windows|{{p|game}}\System\}}' -'Melty Blood: Type Lumina': + - "{{Game data/config|Windows|{{p|game}}\\System\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\System\\}}" +"Melty Blood: Type Lumina": pageId: 169467 steam: 1372280 templates: - - '{{Game data/saves|Windows|{{p|game}}\winsave\}}' + - "{{Game data/saves|Windows|{{p|game}}\\winsave\\}}" Meltys Quest: pageId: 73835 steam: 723090 templates: - - '{{Game data/config|Windows|{{p|game}}\www\save\}}' - - '{{Game data/config|Linux|{{p|game}}/www/save/}}' - - '{{Game data/saves|Windows|{{p|game}}\www\save\}}' - - '{{Game data/saves|Linux|{{p|game}}/www/save/}}' + - "{{Game data/config|Windows|{{p|game}}\\www\\save\\}}" + - "{{Game data/config|Linux|{{p|game}}/www/save/}}" + - "{{Game data/saves|Windows|{{p|game}}\\www\\save\\}}" + - "{{Game data/saves|Linux|{{p|game}}/www/save/}}" Melvor Idle: pageId: 189677 Meme Dragons: @@ -102123,7 +99393,7 @@ Memento Mori 2: pageId: 26349 steam: 237970 templates: - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\MEMENTO2\}}' + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\MEMENTO2\\}}" Memento of Spring: pageId: 79242 steam: 770600 @@ -102136,14 +99406,14 @@ Memetyper: Memoir: pageId: 92139 steam: 811040 -Memoir '44 Online: +"Memoir '44 Online": pageId: 40889 steam: 108210 -'Memoir En Code: Reissue': +"Memoir En Code: Reissue": pageId: 39039 steam: 467940 templates: - - '{{Game data/saves|Windows|{{p|LOCALAPPDATA}}\MemoirEnCodeReissue\savedata.ini}}' + - "{{Game data/saves|Windows|{{p|LOCALAPPDATA}}\\MemoirEnCodeReissue\\savedata.ini}}" Memoirs of a Battle Brothel: pageId: 157305 steam: 1177380 @@ -102158,8 +99428,8 @@ Memoria: steamSide: - 558210 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Daedalic Entertainment\Memoria\config.ini}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Daedalic Entertainment\Memoria\Savegames}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Daedalic Entertainment\\Memoria\\config.ini}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Daedalic Entertainment\\Memoria\\Savegames}}" Memories: pageId: 75847 steam: 689680 @@ -102178,23 +99448,21 @@ Memories of a Vagabond: pageId: 49989 steam: 307070 templates: - - '{{Game data/config|Windows|{{P|game}}\config.rxdata}}' - - '{{Game data/saves|Windows|{{P|game}}\Save1.rxdata}}' + - "{{Game data/config|Windows|{{P|game}}\\config.rxdata}}" + - "{{Game data/saves|Windows|{{P|game}}\\Save1.rxdata}}" Memories on the Shoreline: pageId: 144989 steam: 1145460 -Memorise'n'run: +"Memorise'n'run": pageId: 127825 steam: 1026910 Memorrha: pageId: 122796 steam: 954080 templates: - - >- - {{Game - data/config|Windows|{{P|hkcu}}\Software\StickyStoneStudio\Memorrha|{{P|userprofile}}\AppData\LocalLow\StickyStoneStudio\Memorrha\Memorrha_Settings.config}} - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\StickyStoneStudio\Memorrha\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/StickyStoneStudio/Memorrha/}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\StickyStoneStudio\\Memorrha|{{P|userprofile}}\\AppData\\LocalLow\\StickyStoneStudio\\Memorrha\\Memorrha_Settings.config}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\StickyStoneStudio\\Memorrha\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/StickyStoneStudio/Memorrha/}}" Memory Eater: pageId: 149869 steam: 603990 @@ -102216,7 +99484,7 @@ Memory Puzzle - Futanari Mistress: Memory Trainer: pageId: 103253 steam: 893740 -'Memory Trees: Forget Me Not': +"Memory Trees: Forget Me Not": pageId: 132959 steam: 1044470 Memory of Torenia 思念的夏堇花: @@ -102225,45 +99493,45 @@ Memory of Torenia 思念的夏堇花: Memory of a Broken Dimension: pageId: 54457 steam: 544300 -'Memory''s Dogma CODE:01': +"Memory's Dogma CODE:01": gog: 1611106985 pageId: 51756 steam: 386970 templates: - - '{{Game data/config|Windows|{{P|game}}\Config.lua|{{P|game}}\system.ini}}' - - '{{Game data/saves|Windows|{{P|game}}\savedata\}}' -Memory's Reach: + - "{{Game data/config|Windows|{{P|game}}\\Config.lua|{{P|game}}\\system.ini}}" + - "{{Game data/saves|Windows|{{P|game}}\\savedata\\}}" +"Memory's Reach": pageId: 184452 steam: 2126810 Men Bang: pageId: 179812 steam: 1315680 -'Men in Black: The Game': +"Men in Black: The Game": pageId: 157906 templates: - - '{{Game data/config|Windows|{{p|game}}}}' - - '{{Game data/saves|Windows|{{p|game}}/Saves/}}' + - "{{Game data/config|Windows|{{p|game}}}}" + - "{{Game data/saves|Windows|{{p|game}}/Saves/}}" Men of Valor: gog: 1454576218 pageId: 34260 steam: 411330 templates: - - '{{Game data/config|Windows|{{p|game}}\System\}}' - - '{{Game data/saves|Windows|{{p|game}}\Save\}}' + - "{{Game data/config|Windows|{{p|game}}\\System\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\Save\\}}" Men of War: gog: 1426246476 pageId: 10402 steam: 7830 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\men of war\profiles\player}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\men of war\profiles\player\save}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\men of war\\profiles\\player}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\men of war\\profiles\\player\\save}}" Men of War II: pageId: 181659 steam: 1128860 -'Men of War II: Arena': +"Men of War II: Arena": pageId: 39043 steam: 421010 -'Men of War: Assault Squad': +"Men of War: Assault Squad": gog: 1428580803 gogSide: - 1428579671 @@ -102277,11 +99545,9 @@ Men of War II: - 64016 - 64017 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\My Games\men of war - assault squad\profiles\{{P|uid}}}}' - - >- - {{Game data/saves|Windows|{{P|userprofile\Documents}}\My Games\men of war - assault - squad\profiles\{{P|uid}}\save}} -'Men of War: Assault Squad 2': + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\My Games\\men of war - assault squad\\profiles\\{{P|uid}}}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\My Games\\men of war - assault squad\\profiles\\{{P|uid}}\\save}}" +"Men of War: Assault Squad 2": pageId: 23860 steam: 244450 steamSide: @@ -102291,42 +99557,40 @@ Men of War II: - 562040 - 920840 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\My Games\men of war - assault squad 2\profiles\{{P|uid}}}}' - - >- - {{Game data/saves|Windows|{{P|userprofile\Documents}}\My Games\men of war - assault squad - 2\profiles\{{P|uid}}\save}} -'Men of War: Assault Squad 2 - Cold War': + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\My Games\\men of war - assault squad 2\\profiles\\{{P|uid}}}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\My Games\\men of war - assault squad 2\\profiles\\{{P|uid}}\\save}}" +"Men of War: Assault Squad 2 - Cold War": pageId: 143530 steam: 1135240 -'Men of War: Condemned Heroes': +"Men of War: Condemned Heroes": pageId: 32279 steam: 204860 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\My Games\mow condemned heroes\profiles\{{P|uid}}}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\My Games\mow condemned heroes\profiles\{{P|uid}}\save}}' -'Men of War: Red Tide': + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\My Games\\mow condemned heroes\\profiles\\{{P|uid}}}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\My Games\\mow condemned heroes\\profiles\\{{P|uid}}\\save}}" +"Men of War: Red Tide": gog: 1428589210 pageId: 10405 steam: 3130 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\mow red tide\profiles\player}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\mow red tide\profiles\player\save}}' -'Men of War: Vietnam': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\mow red tide\\profiles\\player}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\mow red tide\\profiles\\player\\save}}" +"Men of War: Vietnam": gog: 1428587439 gogSide: - - 1428588959 - 1428588163 + - 1428588959 pageId: 32274 steam: 63940 steamSide: - 63942 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\My Games\mow vietnam\profiles\{{P|uid}}}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\My Games\mow vietnam\profiles\{{P|uid}}\save}}' + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\My Games\\mow vietnam\\profiles\\{{P|uid}}}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\My Games\\mow vietnam\\profiles\\{{P|uid}}\\save}}" Mendel: pageId: 109418 steam: 899340 -Mendel's Garden: +"Mendel's Garden": pageId: 144883 steam: 1132160 Mentai Uncensored: @@ -102343,21 +99607,21 @@ Menzoberranzan: pageId: 23864 steam: 1904550 templates: - - '{{Game data/config|DOS|{{p|game}}\GAME.OPT}}' - - '{{Game data/saves|DOS|{{p|game}}\SAVE**\}}' + - "{{Game data/config|DOS|{{p|game}}\\GAME.OPT}}" + - "{{Game data/saves|DOS|{{p|game}}\\SAVE**\\}}" Meow Go: pageId: 77899 steam: 759460 Meow Motors: pageId: 95075 steam: 773430 -'Meow Wars: Card Battle': +"Meow Wars: Card Battle": pageId: 107822 steam: 762110 Meow-Jong: pageId: 51479 steam: 535910 -'Meower''s Quest: Jasper''s Tale': +"Meower's Quest: Jasper's Tale": pageId: 98074 steam: 879090 Meowk and Frocco: @@ -102366,19 +99630,19 @@ Meowk and Frocco: Mercedes-Benz Truck Racing: pageId: 25061 templates: - - '{{Game data/config|Windows|{{p|game}}\Config''''''X''''''.dsv}}' - - '{{Game data/saves|Windows|{{p|game}}\SpStand|{{p|game}}\Replays}}' + - "{{Game data/config|Windows|{{p|game}}\\Config'''X'''.dsv}}" + - "{{Game data/saves|Windows|{{p|game}}\\SpStand|{{p|game}}\\Replays}}" Mercedes-Benz World Racing: pageId: 30452 templates: - - '{{Game data/config|Windows|{{p|game}}\Config.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\WR-SavesSinglePM\}}' -'Mercenaries 2: World in Flames': + - "{{Game data/config|Windows|{{p|game}}\\Config.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\WR-SavesSinglePM\\}}" +"Mercenaries 2: World in Flames": pageId: 17946 templates: - - '{{Game data/config|Windows|{{p|game}}\Mercs2.ini}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Mercenaries 2\SaveGames\}}' -'Mercenary DungeonS: Hell Warriors': + - "{{Game data/config|Windows|{{p|game}}\\Mercs2.ini}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Mercenaries 2\\SaveGames\\}}" +"Mercenary DungeonS: Hell Warriors": pageId: 153883 renamedFrom: - 佣兵地下城/Hell Warriors @@ -102387,21 +99651,21 @@ Mercenary Kings: pageId: 9168 steam: 218820 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Tribute Games\MercenaryKings\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Tribute Games/MercenaryKings/}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/Tribute Games/MercenaryKings/}}' - - '{{Game data/config|Steam|{{p|steam}}/userdata/{{p|uid}}/218820/}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Tribute Games\MercenaryKings\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Tribute Games/MercenaryKings/}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/Tribute Games/MercenaryKings/}}' - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/218820/}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Tribute Games\\MercenaryKings\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Tribute Games/MercenaryKings/}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/Tribute Games/MercenaryKings/}}" + - "{{Game data/config|Steam|{{p|steam}}/userdata/{{p|uid}}/218820/}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Tribute Games\\MercenaryKings\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Tribute Games/MercenaryKings/}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/Tribute Games/MercenaryKings/}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/218820/}}" Mercenary Leto: pageId: 104933 steam: 893710 Mercfighter: pageId: 66631 steam: 676540 -'Mercforce: 30X1': +"Mercforce: 30X1": pageId: 142206 steam: 1099100 Merchant: @@ -102417,26 +99681,26 @@ Merchants of Kaidan: pageId: 30424 steam: 294020 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\SOFTWARE\ForeverEntertainment\Kaidan}}' - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/294020/remote/}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\ForeverEntertainment\\Kaidan}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/294020/remote/}}" Mercs: pageId: 100198 steam: 883930 Mercs Fully Loaded: pageId: 181812 steam: 1756390 -'Mercury Blue: Mini Episode': +"Mercury Blue: Mini Episode": pageId: 79949 steam: 732360 Mercury Fallen: pageId: 72909 steam: 704510 templates: - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Mercury Fallen\Saves\}}' + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Mercury Fallen\\Saves\\}}" Mercury Race: pageId: 90417 steam: 817530 -'Mercury: Cascade into Madness': +"Mercury: Cascade into Madness": pageId: 66814 steam: 661120 Merge: @@ -102454,21 +99718,21 @@ Merger 3D: Meridian 59: pageId: 107594 steam: 893390 -'Meridian: Age of Invention': +"Meridian: Age of Invention": pageId: 46210 steam: 397770 -'Meridian: New World': +"Meridian: New World": gog: 1207666003 pageId: 16279 steam: 265120 -'Meridian: Squad 22': +"Meridian: Squad 22": gog: 1583197130 pageId: 36005 steam: 451400 Meritocracy of the Oni & Blade: pageId: 103789 steam: 885940 -'Meriwether: An American Epic': +"Meriwether: An American Epic": pageId: 77598 steam: 566690 Merlin Adventurer Store: @@ -102480,7 +99744,7 @@ Merlin Soccer: Merlin vs Zombies: pageId: 90188 steam: 793240 -'Mermaid Adventures: The Frozen Time': +"Mermaid Adventures: The Frozen Time": pageId: 82338 steam: 798610 Mermaid Colony: @@ -102492,7 +99756,7 @@ Mermaid Coralie ~ Love and Madness: Mermaid Land: pageId: 87435 steam: 807880 -'Mermaid Mission: Titanic': +"Mermaid Mission: Titanic": pageId: 94489 steam: 849800 Merper VR: @@ -102516,7 +99780,7 @@ Merv Liberation: Merv Reborn: pageId: 74237 steam: 731410 -'Mervils: A VR Adventure': +"Mervils: A VR Adventure": pageId: 41835 steam: 497460 Mervin and the Wicked Station: @@ -102540,15 +99804,15 @@ Messiah: pageId: 240 steam: 577980 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/saves|Windows|{{p|game}}\SAVE}}' + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\SAVE}}" Meta Revelations - Ring Spirits: pageId: 135028 steam: 1067030 Meta Star: pageId: 67891 steam: 659000 -'Meta: Assembled': +"Meta: Assembled": pageId: 144969 steam: 1118640 MetaHuman Inc.: @@ -102558,8 +99822,8 @@ MetaMorph: pageId: 60349 steam: 606870 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\fireflystudios\metamorph\}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\fireflystudios\metamorph\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\fireflystudios\\metamorph\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\fireflystudios\\metamorph\\}}" MetaSpace: pageId: 151145 steam: 1173960 @@ -102600,8 +99864,8 @@ Metal Dead: pageId: 38468 steam: 302690 templates: - - '{{Game data/config|Windows|{{P|game}}\acsetup.cfg}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\Saved Games\Metal Dead\}}' + - "{{Game data/config|Windows|{{P|game}}\\acsetup.cfg}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\Saved Games\\Metal Dead\\}}" Metal Division: pageId: 124321 steam: 805900 @@ -102616,8 +99880,8 @@ Metal Fatigue: pageId: 102477 steam: 888040 templates: - - '{{Game data/saves|Windows|{{P|game}}\Save\}}' -'Metal Force: Tank Games Online': + - "{{Game data/saves|Windows|{{P|game}}\\Save\\}}" +"Metal Force: Tank Games Online": pageId: 180415 steam: 1358810 Metal Fury 3000: @@ -102625,91 +99889,85 @@ Metal Fury 3000: steam: 991630 Metal Gear: pageId: 27727 -'Metal Gear & Metal Gear 2: Solid Snake - Master Collection Version': +"Metal Gear & Metal Gear 2: Solid Snake - Master Collection Version": pageId: 190604 steam: 2131680 templates: - - '{{Game data/config|Windows|{{p|game}}\mg12_savedata_win\{{p|uid}}\launcher\}}' - - '{{Game data/saves|Windows|{{p|game}}\mg12_savedata_win\{{p|uid}}\}}' + - "{{Game data/config|Windows|{{p|game}}\\mg12_savedata_win\\{{p|uid}}\\launcher\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\mg12_savedata_win\\{{p|uid}}\\}}" Metal Gear (MSX2): gog: 2022393863 pageId: 163842 renamedFrom: - Metal Gear (2020) templates: - - '{{Game data/config|Windows|{{P|game}}\settings.ini}}' - - '{{Game data/saves|Windows|{{P|game}}\SaveData\data.bin}}' -'Metal Gear (NES) & Metal Gear 2: Snake''s Revenge (NES) - Master Collection Version': + - "{{Game data/config|Windows|{{P|game}}\\settings.ini}}" + - "{{Game data/saves|Windows|{{P|game}}\\SaveData\\data.bin}}" +"Metal Gear (NES) & Metal Gear 2: Snake's Revenge (NES) - Master Collection Version": pageId: 190731 steam: 2306740 templates: - - '{{Game data/saves|Windows|{{p|steam}}\userdata\{{p|uid}}\2306740\remote\}}' -'Metal Gear Rising: Revengeance': + - "{{Game data/saves|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\2306740\\remote\\}}" +"Metal Gear Rising: Revengeance": pageId: 13522 steam: 235460 templates: - - >- - {{Game data/config|Windows|C:\Users\{{p|username}}\Documents\MGR\SaveData\}} - - >- - {{Game data/saves|Windows|C:\Users\{{p|username}}\Documents\MGR\SaveData\MGR.sav}} - - >- - {{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Metal Gear Rising - Revengeance - Steam/p_drive/User/Application Data/MGR/SaveData/MGR.sav}} + - "{{Game data/config|Windows|C:\\Users\\{{p|username}}\\Documents\\MGR\\SaveData\\}}" + - "{{Game data/saves|Windows|C:\\Users\\{{p|username}}\\Documents\\MGR\\SaveData\\MGR.sav}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Metal Gear Rising - Revengeance Steam/p_drive/User/Application Data/MGR/SaveData/MGR.sav}}" Metal Gear Solid - Master Collection Version: pageId: 188382 steam: 2131630 templates: - - '{{Game data/saves|Windows|{{p|steam}}\userdata\{{p|uid}}\2131630\remote\}}' -'Metal Gear Solid 2: Sons of Liberty - Master Collection Version': + - "{{Game data/saves|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\2131630\\remote\\}}" +"Metal Gear Solid 2: Sons of Liberty - Master Collection Version": pageId: 188384 steam: 2131640 templates: - - '{{Game data/config|Windows|{{P|game}}\mgs2_savedata_win\{{P|uid}}\launcher\}}' - - '{{Game data/saves|Windows|{{P|game}}\mgs2_savedata_win\{{P|uid}}\}}' -'Metal Gear Solid 2: Substance': + - "{{Game data/config|Windows|{{P|game}}\\mgs2_savedata_win\\{{P|uid}}\\launcher\\}}" + - "{{Game data/saves|Windows|{{P|game}}\\mgs2_savedata_win\\{{P|uid}}\\}}" +"Metal Gear Solid 2: Substance": gog: 2069117974 pageId: 1508 templates: - - '{{Game data/config|Windows|{{p|game}}\bin\*.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\savedata}}' -'Metal Gear Solid 3: Snake Eater - Master Collection Version': + - "{{Game data/config|Windows|{{p|game}}\\bin\\*.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\savedata}}" +"Metal Gear Solid 3: Snake Eater - Master Collection Version": pageId: 188386 steam: 2131650 templates: - - '{{Game data/config|Windows|{{P|game}}\mgs3_savedata_win\{{P|uid}}\launcher\}}' - - '{{Game data/saves|Windows|{{P|game}}\mgs3_savedata_win\{{P|uid}}\}}' -'Metal Gear Solid V: Ground Zeroes': + - "{{Game data/config|Windows|{{P|game}}\\mgs3_savedata_win\\{{P|uid}}\\launcher\\}}" + - "{{Game data/saves|Windows|{{P|game}}\\mgs3_savedata_win\\{{P|uid}}\\}}" +"Metal Gear Solid V: Ground Zeroes": pageId: 19092 steam: 311340 templates: - - '{{Game data/config|Windows|{{p|steam}}\userdata\{{p|uid}}\311340\local\}}' - - '{{Game data/saves|Windows|{{p|steam}}\userdata\{{p|uid}}\311340\remote\}}' -'Metal Gear Solid V: The Phantom Pain': + - "{{Game data/config|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\311340\\local\\}}" + - "{{Game data/saves|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\311340\\remote\\}}" +"Metal Gear Solid V: The Phantom Pain": pageId: 19094 steam: 287700 templates: - - '{{Game data/config|Windows|{{p|steam}}\userdata\{{p|uid}}\287700\local\}}' - - '{{Game data/saves|Windows|{{p|steam}}\userdata\{{p|uid}}\311340\remote\}}' - - '{{Game data/saves|Steam|{{p|linuxhome}}/.steam/steam/userdata/{{p|uid}}/311340/remote/}}' -'Metal Gear Solid Δ: Snake Eater': + - "{{Game data/config|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\287700\\local\\}}" + - "{{Game data/saves|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\311340\\remote\\}}" + - "{{Game data/saves|Steam|{{p|linuxhome}}/.steam/steam/userdata/{{p|uid}}/311340/remote/}}" +"Metal Gear Solid Δ: Snake Eater": pageId: 187350 renamedFrom: - - 'Metal Gear Solid Delta: Snake Eater' + - "Metal Gear Solid Delta: Snake Eater" steam: 2417610 -'Metal Gear Solid: Integral': +"Metal Gear Solid: Integral": gog: 1771973390 pageId: 637 templates: - - '{{Game data/config|Windows|{{p|game}}\*.cfg|{{p|game}}\dxcfg.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\SavedGames\|{{p|game}}\records.vr}}' + - "{{Game data/config|Windows|{{p|game}}\\*.cfg|{{p|game}}\\dxcfg.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\SavedGames\\|{{p|game}}\\records.vr}}" Metal Gear Survive: pageId: 54715 steam: 543900 templates: - - '{{Game data/config|Windows|{{p|steam}}\userdata\{{p|uid}}\543900\local\}}' - - '{{Game data/saves|Windows|{{p|steam}}\userdata\{{p|uid}}\543900\remote\}}' + - "{{Game data/config|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\543900\\local\\}}" + - "{{Game data/saves|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\543900\\remote\\}}" Metal Heads: pageId: 145397 steam: 1132670 @@ -102719,17 +99977,15 @@ Metal Max Xeno Reborn: pageId: 168607 steam: 1637230 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\SOFTWARE\KADOKAWA GAMES\METAL MAX Xeno Reborn}}' - - >- - {{Game data/saves|Windows|{{p|steam}}\userdata\{{p|uid}}\1637230\ | {{p|userprofile}}\AppData\LocalLow\KADOKAWA - GAMES\METAL MAX Xeno Reborn\}} + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\KADOKAWA GAMES\\METAL MAX Xeno Reborn}}" + - "{{Game data/saves|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\1637230\\ | {{p|userprofile}}\\AppData\\LocalLow\\KADOKAWA GAMES\\METAL MAX Xeno Reborn\\}}" Metal Mind: pageId: 151395 steam: 1167100 Metal Mutant: pageId: 30710 templates: - - '{{Game data/saves|DOS|{{p|game}}\SOS.FIC}}' + - "{{Game data/saves|DOS|{{p|game}}\\SOS.FIC}}" Metal Noise: pageId: 52798 steam: 520810 @@ -102745,7 +100001,7 @@ Metal Reaper Online: Metal Revolution: pageId: 128549 steam: 994560 -'Metal Shell: Neon Pulse': +"Metal Shell: Neon Pulse": pageId: 94148 steam: 819460 Metal Slug: @@ -102753,24 +100009,24 @@ Metal Slug: pageId: 31236 steam: 366250 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\mslug1\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\mslug1\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\mslug1\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\mslug1\\}}" Metal Slug 2: gog: 1241813850 pageId: 43594 steam: 366260 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\mslug2\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\mslug2\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\mslug2\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\mslug2\\}}" Metal Slug 3: gog: 1370911530 pageId: 14895 steam: 250180 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\mslug3\}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/SNK/mslug3/OPTIONS}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\mslug3\}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/SNK/mslug3/}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\mslug3\\}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/SNK/mslug3/OPTIONS}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\mslug3\\}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/SNK/mslug3/}}" Metal Slug 4: pageId: 138072 Metal Slug 5 (2019): @@ -102781,7 +100037,7 @@ Metal Slug Defense: pageId: 24704 steam: 356310 templates: - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\356310\remote\user.dat}}' + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\356310\\remote\\user.dat}}" Metal Slug Tactics: pageId: 169164 steam: 1590760 @@ -102790,23 +100046,23 @@ Metal Slug X: pageId: 37664 steam: 312610 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\mslugx\}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/SNK/mslugx/OPTIONS}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\mslugx\}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/SNK/mslugx/}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\mslugx\\}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/SNK/mslugx/OPTIONS}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\mslugx\\}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/SNK/mslugx/}}" Metal Slug XX: pageId: 131725 steam: 975680 templates: - - '{{Game data/config|Windows|{{p|game}}\saves\ULES01429METALSLUGXX\PARAMS.SFO}}' - - '{{Game data/saves|Windows|{{p|game}}\saves\ULES01429METALSLUGXX\SAVEDATA.BIN}}' + - "{{Game data/config|Windows|{{p|game}}\\saves\\ULES01429METALSLUGXX\\PARAMS.SFO}}" + - "{{Game data/saves|Windows|{{p|game}}\\saves\\ULES01429METALSLUGXX\\SAVEDATA.BIN}}" Metal Soldiers 2: pageId: 77102 steam: 753380 Metal Suit Warrior VR: pageId: 132040 steam: 1043800 -'Metal Tales: Fury of the Guitar Gods': +"Metal Tales: Fury of the Guitar Gods": pageId: 52724 steam: 418210 Metal Unit: @@ -102815,12 +100071,12 @@ Metal Unit: steamSide: - 1268950 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\JellySnow\MetalUnit\}}' - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\JellySnow\MetalUnit\{{P|uid}}\data.jly}}' -'Metal Waltz: Anime Tank Girls': + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\JellySnow\\MetalUnit\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\JellySnow\\MetalUnit\\{{P|uid}}\\data.jly}}" +"Metal Waltz: Anime Tank Girls": pageId: 61327 steam: 581130 -'Metal War Online: Retribution': +"Metal War Online: Retribution": pageId: 45322 steam: 412470 Metal Wolf Chaos XD: @@ -102828,45 +100084,43 @@ Metal Wolf Chaos XD: pageId: 97197 steam: 820630 templates: - - '{{Game data/config|Windows|{{P|game}}\save\}}' - - '{{Game data/config|Steam|{{P|game}}\save\{{P|uid}}\}}' - - '{{Game data/saves|Windows|{{P|game}}\save\}}' - - '{{Game data/saves|Steam|{{P|game}}\save\{{P|uid}}\}}' + - "{{Game data/config|Windows|{{P|game}}\\save\\}}" + - "{{Game data/config|Steam|{{P|game}}\\save\\{{P|uid}}\\}}" + - "{{Game data/saves|Windows|{{P|game}}\\save\\}}" + - "{{Game data/saves|Steam|{{P|game}}\\save\\{{P|uid}}\\}}" Metal as Phuk: pageId: 64244 steam: 662210 templates: - - '{{Game data/saves|Windows|{{p|game}}\}}' -'Metal: Hellsinger': + - "{{Game data/saves|Windows|{{p|game}}\\}}" +"Metal: Hellsinger": pageId: 165418 steam: 1061910 steamSide: - 2252490 - 2392613 templates: - - '{{Game data/config|Windows|{{P|userprofile\appdata\locallow}}\TheOutsiders\Metal\Save}}' - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\TheOutsiders\Metal\Save}}' - - >- - {{Game data/saves|Microsoft - Store|{{P|localappdata}}\Packages\FuncomOsloAS.ProjectHammerhead_pkaskhy6cdq4g\SystemAppData\wgs}} -'Metal: Iron Age': + - "{{Game data/config|Windows|{{P|userprofile\\appdata\\locallow}}\\TheOutsiders\\Metal\\Save}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\TheOutsiders\\Metal\\Save}}" + - "{{Game data/saves|Microsoft Store|{{P|localappdata}}\\Packages\\FuncomOsloAS.ProjectHammerhead_pkaskhy6cdq4g\\SystemAppData\\wgs}}" +"Metal: Iron Age": pageId: 90252 steam: 822840 MetalArms: pageId: 149503 steam: 1155860 -'Metalheart: Replicants Rampage': +"Metalheart: Replicants Rampage": pageId: 35279 templates: - - '{{Game data/saves|Windows|{{p|ProgramFiles}}\NumLock\Metalheart\data\save}}' -'Metaloid : Origin': + - "{{Game data/saves|Windows|{{p|ProgramFiles}}\\NumLock\\Metalheart\\data\\save}}" +"Metaloid : Origin": pageId: 126010 steam: 974390 -'Metaltech: Earthsiege': +"Metaltech: Earthsiege": pageId: 29476 templates: - - '{{Game data/config|DOS|{{p|game}}\DATA\PREFS.CFG|{{p|game}}\RESOURCE.CFG}}' - - '{{Game data/saves|DOS|{{p|game}}\CAR|{{p|game}}\BAR}}' + - "{{Game data/config|DOS|{{p|game}}\\DATA\\PREFS.CFG|{{p|game}}\\RESOURCE.CFG}}" + - "{{Game data/saves|DOS|{{p|game}}\\CAR|{{p|game}}\\BAR}}" Metamorph (Chumoran): pageId: 121083 renamedFrom: @@ -102883,8 +100137,8 @@ Metamorphosis: pageId: 130714 steam: 1025410 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Meta1\Saved\Config}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\Meta1\Saved\SaveGames}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\Meta1\\Saved\\Config}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Meta1\\Saved\\SaveGames}}" Metanet Hunter CD: pageId: 57285 steam: 586570 @@ -102897,7 +100151,7 @@ Metanormal: Metaphobia: pageId: 156710 steam: 1220930 -'Metaphor: ReFantazio': +"Metaphor: ReFantazio": pageId: 187916 Metaverse: pageId: 43763 @@ -102914,16 +100168,16 @@ Metempsychosis: Meteor: pageId: 35544 templates: - - '{{Game data/config|Windows|{{P|game}}\jgui3.ini|{{P|game}}\meteor.ini}}' - - '{{Game data/saves|Windows|{{P|game}}\base\saves\}}' + - "{{Game data/config|Windows|{{P|game}}\\jgui3.ini|{{P|game}}\\meteor.ini}}" + - "{{Game data/saves|Windows|{{P|game}}\\base\\saves\\}}" Meteor (2018): pageId: 137335 steam: 912790 Meteor 2: pageId: 35552 templates: - - '{{Game data/config|Windows|{{P|game}}\meteor2.ini}}' - - '{{Game data/saves|Windows|{{P|game}}\base\savegame\}}' + - "{{Game data/config|Windows|{{P|game}}\\meteor2.ini}}" + - "{{Game data/saves|Windows|{{P|game}}\\base\\savegame\\}}" Meteor 60 Seconds!: pageId: 82780 steam: 788770 @@ -102933,14 +100187,12 @@ Meteor Crush VR: Meteor Shower: pageId: 98112 steam: 845650 -'Meteorfall: Krumit''s Tale': +"Meteorfall: Krumit's Tale": pageId: 142117 steam: 1073320 templates: - - >- - {{Game data/config|Windows|{{P|userprofile\appdata\locallow}}\Slothwerks\Krumit's - Tale\save*.json|{{P|hkcu}}\SOFTWARE\Slothwerks\Krumit's Tale\}} - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Slothwerks\Krumit''s Tale\*.json}}' + - "{{Game data/config|Windows|{{P|userprofile\\appdata\\locallow}}\\Slothwerks\\Krumit's Tale\\save*.json|{{P|hkcu}}\\SOFTWARE\\Slothwerks\\Krumit's Tale\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Slothwerks\\Krumit's Tale\\*.json}}" Meteorite Defense Command: pageId: 94332 steam: 767840 @@ -102982,39 +100234,35 @@ Metro 2033: - 43130 - 43140 templates: - - '{{Game data/config|Windows|{{p|steam}}\userdata\{{p|uid}}\43110\remote\user.cfg}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\4A Games\Metro 2033\}}' + - "{{Game data/config|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\43110\\remote\\user.cfg}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\4A Games\\Metro 2033\\}}" Metro 2033 Redux: gog: 1436434037 pageId: 17417 steam: 286690 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\4A Games\Metro 2033\{{p|uid}}\user.cfg}}' - - >- - {{Game data/config|Microsoft - Store|{{p|localappdata}}\Packages\DeepSilver.Metro2033Redux_hmv7qcest37me\SystemAppData\wgs\}} - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Metro_Redux_2033/}}' - - '{{Game data/config|Linux|{{P|Game}}/{{p|uid}}/user.cfg}}' - - '{{Game data/config|GOG.com|{{p|localappdata}}\4A Games\Metro 2033\user.cfg}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\Documents\4A Games\Metro 2033\{{p|uid}}\}}' - - >- - {{Game data/saves|Microsoft - Store|{{p|localappdata}}\Packages\DeepSilver.Metro2033Redux_hmv7qcest37me\SystemAppData\wgs\}} - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Metro_Redux_2033/}}' - - '{{Game data/saves|Linux|{{P|Game}}/{{p|uid}}/}}' - - '{{Game data/saves|GOG.com|{{p|userprofile}}\Documents\4A Games\Metro 2033\}}' - - '{{Game data/saves|Epic Games Launcher|{{p|userprofile}}\Documents\4A Games\Metro Redux\}}' -'Metro Conflict: The Origin': + - "{{Game data/config|Windows|{{p|localappdata}}\\4A Games\\Metro 2033\\{{p|uid}}\\user.cfg}}" + - "{{Game data/config|Microsoft Store|{{p|localappdata}}\\Packages\\DeepSilver.Metro2033Redux_hmv7qcest37me\\SystemAppData\\wgs\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Metro_Redux_2033/}}" + - "{{Game data/config|Linux|{{P|Game}}/{{p|uid}}/user.cfg}}" + - "{{Game data/config|GOG.com|{{p|localappdata}}\\4A Games\\Metro 2033\\user.cfg}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Documents\\4A Games\\Metro 2033\\{{p|uid}}\\}}" + - "{{Game data/saves|Microsoft Store|{{p|localappdata}}\\Packages\\DeepSilver.Metro2033Redux_hmv7qcest37me\\SystemAppData\\wgs\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Metro_Redux_2033/}}" + - "{{Game data/saves|Linux|{{P|Game}}/{{p|uid}}/}}" + - "{{Game data/saves|GOG.com|{{p|userprofile}}\\Documents\\4A Games\\Metro 2033\\}}" + - "{{Game data/saves|Epic Games Launcher|{{p|userprofile}}\\Documents\\4A Games\\Metro Redux\\}}" +"Metro Conflict: The Origin": pageId: 74550 steam: 662320 Metro Exodus: gog: 1407287452 gogSide: - - 1414471894 - 1307899199 - - 2063590233 + - 1414471894 - 1435294665 - 1641336403 + - 2063590233 pageId: 63660 steam: 412020 steamSide: @@ -103022,38 +100270,33 @@ Metro Exodus: - 889921 - 924220 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\Saved Games\metro exodus\}}' - - '{{Game data/config|GOG.com|{{p|game}}\}}' - - >- - {{Game data/config|Microsoft - Store|{{P|localappdata}}\Packages\DeepSilver.ProjectWindfall_hmv7qcest37me\SystemAppData\wgs\{{p|uid}}\}} - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/MetroExodus/110000113093892}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/metro_3/}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\Saved Games\metro exodus\}}' - - '{{Game data/saves|GOG.com|{{p|game}}\saved_games\}}' - - >- - {{Game data/saves|Microsoft - Store|{{p|localappdata}}\Packages\DeepSilver.ProjectWindfall_hmv7qcest37me\SystemAppData\wgs\*\*\{{Refurl|url=https://www.reddit.com/r/metro_exodus/comments/c0zb4d/my_crappy_guide_for_transferring_nonwindowsstore/|title=Reddit|date=May - 2023}}}} - - '{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/MetroExodus/*/}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/metro_3/}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\Saved Games\\metro exodus\\}}" + - "{{Game data/config|GOG.com|{{p|game}}\\}}" + - "{{Game data/config|Microsoft Store|{{P|localappdata}}\\Packages\\DeepSilver.ProjectWindfall_hmv7qcest37me\\SystemAppData\\wgs\\{{p|uid}}\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/MetroExodus/110000113093892}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/metro_3/}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Saved Games\\metro exodus\\}}" + - "{{Game data/saves|GOG.com|{{p|game}}\\saved_games\\}}" + - "{{Game data/saves|Microsoft Store|{{p|localappdata}}\\Packages\\DeepSilver.ProjectWindfall_hmv7qcest37me\\SystemAppData\\wgs\\*\\*\\{{Refurl|url=https://www.reddit.com/r/metro_exodus/comments/c0zb4d/my_crappy_guide_for_transferring_nonwindowsstore/|title=Reddit|date=May 2023}}}}" + - "{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/MetroExodus/*/}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/metro_3/}}" Metro Exodus Enhanced Edition: gog: 1407287452 gogSide: - 1307899199 - - 1435294665 - 1414471894 + - 1435294665 - 2063590233 pageId: 168317 steam: 1449560 steamSide: - - 1557621 - 1557620 + - 1557621 templates: - - '{{Game data/config|GOG.com|{{p|game}}\user.cfg}}' - - '{{Game data/config|Windows|{{p|userprofile}}\Saved Games\metro exodus\}}' - - '{{Game data/saves|GOG.com|{{p|game}}\saved_games\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\Saved Games\metro exodus\}}' + - "{{Game data/config|GOG.com|{{p|game}}\\user.cfg}}" + - "{{Game data/config|Windows|{{p|userprofile}}\\Saved Games\\metro exodus\\}}" + - "{{Game data/saves|GOG.com|{{p|game}}\\saved_games\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Saved Games\\metro exodus\\}}" Metro Explosion Simulator: pageId: 140875 steam: 1098870 @@ -103069,44 +100312,42 @@ Metro Trip Simulator: Metro Warp: pageId: 46969 steam: 383540 -'Metro: Last Light': +"Metro: Last Light": pageId: 4547 steam: 43160 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\4A Games\Metro LL\{{p|uid}}\user.cfg}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/MetroLL/{{p|uid}}/user.cfg}}' - - '{{Game data/config|Linux|{{p|game}}/{{p|uid}}/user.cfg}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\4A Games\Metro LL\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/MetroLL/{{p|uid}}/}}' - - '{{Game data/saves|Linux|{{p|game}}/{{p|uid}}/}}' - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/43160/}}' -'Metro: Last Light Redux': + - "{{Game data/config|Windows|{{p|localappdata}}\\4A Games\\Metro LL\\{{p|uid}}\\user.cfg}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/MetroLL/{{p|uid}}/user.cfg}}" + - "{{Game data/config|Linux|{{p|game}}/{{p|uid}}/user.cfg}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\4A Games\\Metro LL\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/MetroLL/{{p|uid}}/}}" + - "{{Game data/saves|Linux|{{p|game}}/{{p|uid}}/}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/43160/}}" +"Metro: Last Light Redux": gog: 1430740172 pageId: 17420 steam: 287390 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\4A Games\Metro Last Light\{{p|uid}}\user.cfg}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Metro_Redux_2034/}}' - - '{{Game data/config|Linux|{{P|Game}}/{{p|uid}}/user.cfg}}' - - '{{Game data/config|Steam|{{p|localappdata}}\4A Games\Metro Last Light\{{p|uid}}\user.cfg}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\4A Games\Metro Last Light\}}' - - >- - {{Game data/saves|Microsoft - Store|{{P|localappdata}}\Packages\DeepSilver.MetroLastLightRedux_hmv7qcest37me\SystemAppData\wgs\}} - - '{{Game data/saves|Linux|{{p|game}}/{{p|uid}}/}}' - - '{{Game data/saves|Steam|{{p|userprofile\Documents}}\4A Games\Metro Last Light\{{p|uid}}\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\4A Games\\Metro Last Light\\{{p|uid}}\\user.cfg}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Metro_Redux_2034/}}" + - "{{Game data/config|Linux|{{P|Game}}/{{p|uid}}/user.cfg}}" + - "{{Game data/config|Steam|{{p|localappdata}}\\4A Games\\Metro Last Light\\{{p|uid}}\\user.cfg}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\4A Games\\Metro Last Light\\}}" + - "{{Game data/saves|Microsoft Store|{{P|localappdata}}\\Packages\\DeepSilver.MetroLastLightRedux_hmv7qcest37me\\SystemAppData\\wgs\\}}" + - "{{Game data/saves|Linux|{{p|game}}/{{p|uid}}/}}" + - "{{Game data/saves|Steam|{{p|userprofile\\Documents}}\\4A Games\\Metro Last Light\\{{p|uid}}\\}}" Metrocide: gog: 1207667203 pageId: 21957 steam: 313130 templates: - - '{{Game data/config|Windows|{{P|game}}\saves\settings.cfg}}' - - '{{Game data/saves|Windows|{{P|game}}\saves\}}' -'Metroid: Confrontation': + - "{{Game data/config|Windows|{{P|game}}\\saves\\settings.cfg}}" + - "{{Game data/saves|Windows|{{P|game}}\\saves\\}}" +"Metroid: Confrontation": pageId: 97153 templates: - - '{{Game data/config|Windows|{{P|game}}\config.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\}}' + - "{{Game data/config|Windows|{{P|game}}\\config.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\}}" Metronium: pageId: 142005 steam: 1115470 @@ -103116,11 +100357,11 @@ Metronix Lab: Metropolis: pageId: 82181 steam: 782410 -'Metropolis: Lux Obscura': +"Metropolis: Lux Obscura": pageId: 72348 steam: 671390 templates: - - '{{Game data/saves|Windows|{{P|hkcu}}\Software\Ktulhu Solutions\Lux Obscura\}}' + - "{{Game data/saves|Windows|{{P|hkcu}}\\Software\\Ktulhu Solutions\\Lux Obscura\\}}" Metropolisim: pageId: 114186 steam: 937450 @@ -103143,17 +100384,17 @@ MewnBase: pageId: 123393 steam: 743130 templates: - - '{{Game data/config|Windows|{{p|game}}\settings.json}}' - - '{{Game data/config|Linux|{{p|game}}/settings.json}}' - - '{{Game data/saves|Windows|{{p|game}}\saves\*}}' - - '{{Game data/saves|Linux|{{p|game}}/saves}}' + - "{{Game data/config|Windows|{{p|game}}\\settings.json}}" + - "{{Game data/config|Linux|{{p|game}}/settings.json}}" + - "{{Game data/saves|Windows|{{p|game}}\\saves\\*}}" + - "{{Game data/saves|Linux|{{p|game}}/saves}}" Mhakna Gramura and Fairy Bell: gog: 1983374080 pageId: 79688 steam: 753220 templates: - - '{{Game data/config|Windows|{{P|appdata}}\RenPy\Fairy Bell\persistent}}' - - '{{Game data/saves|Windows|{{P|appdata}}\RenPy\Fairy Bell\*.save}}' + - "{{Game data/config|Windows|{{P|appdata}}\\RenPy\\Fairy Bell\\persistent}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\RenPy\\Fairy Bell\\*.save}}" MiDZone: pageId: 42434 steam: 494290 @@ -103161,7 +100402,7 @@ MiG-29 Fulcrum (1998): pageId: 20341 steam: 32740 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' + - "{{Game data/config|Windows|{{p|game}}\\}}" MiMiMiShKa: pageId: 150037 steam: 1174900 @@ -103181,42 +100422,42 @@ Miasma Chronicles: pageId: 187331 steam: 1649010 templates: - - '{{Game data/saves|Windows|{{p|localappdata}}\Miasma\Saved\SaveGames}}' + - "{{Game data/saves|Windows|{{p|localappdata}}\\Miasma\\Saved\\SaveGames}}" Miasmata: gog: 1207659146 pageId: 4178 steam: 223510 templates: - - '{{Game data/saves|Windows|{{p|appdata}}\IonFx\Miasmata\}}' -Miazma or the Devil's Stone: + - "{{Game data/saves|Windows|{{p|appdata}}\\IonFx\\Miasmata\\}}" +"Miazma or the Devil's Stone": pageId: 92795 steam: 774141 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Private Moon Studios\Miazma}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Private Moon Studios\Miazma}}' -Mibibli's Quest: + - "{{Game data/config|Windows|{{p|appdata}}\\Private Moon Studios\\Miazma}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Private Moon Studios\\Miazma}}" +"Mibibli's Quest": pageId: 41837 steam: 453990 steamSide: - 509050 -Michael Owen's World League Soccer 99: +"Michael Owen's World League Soccer 99": pageId: 158688 templates: - - '{{Game data/saves|Windows|{{P|game}}\Saves}}' -'Michael Schumacher: Racing World Kart 2002': + - "{{Game data/saves|Windows|{{P|game}}\\Saves}}" +"Michael Schumacher: Racing World Kart 2002": pageId: 88361 -'Michael Schumacher: World Tour Kart 2004': +"Michael Schumacher: World Tour Kart 2004": pageId: 88388 -'Michelin Rally Masters: Race of Champions': +"Michelin Rally Masters: Race of Champions": pageId: 14465 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\SOFTWARE\Digital Illusions\Rally Masters\Configurations\Default\}}' - - '{{Game data/saves|Windows|{{p|game}}\SavedGames}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\Digital Illusions\\Rally Masters\\Configurations\\Default\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\SavedGames}}" Michelle Kwan Figure Skating: pageId: 91332 -Mickey's Space Adventure: +"Mickey's Space Adventure": pageId: 147121 -Mickey's Typing Adventure: +"Mickey's Typing Adventure": pageId: 48627 steam: 348850 Micro Car Crash Online Le Go!: @@ -103228,18 +100469,16 @@ Micro Cosmic Worlds: Micro Machines V4: pageId: 87806 templates: - - '{{Game data/config|Windows|{{P|game}}\}}' - - '{{Game data/saves|Windows|{{P|game}}\}}' + - "{{Game data/config|Windows|{{P|game}}\\}}" + - "{{Game data/saves|Windows|{{P|game}}\\}}" Micro Machines World Series: pageId: 56710 steam: 535850 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\Saved Games\Codemasters\MicroMachines\}}' - - '{{Game data/config|Linux|{{p|xdgdatahome}}/vpltd/micromachines/}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\Saved Games\Codemasters\MicroMachines\{{P|uid}}\{{P|uid}}.dat}}' - - >- - {{Game data/saves|Linux|{{p|xdgdatahome}}/vpltd/micromachines/GameDocuments/Saved - Games/Codemasters/MicroMachines/{{P|uid}}/{{P|uid}}.dat}} + - "{{Game data/config|Windows|{{p|userprofile}}\\Saved Games\\Codemasters\\MicroMachines\\}}" + - "{{Game data/config|Linux|{{p|xdgdatahome}}/vpltd/micromachines/}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Saved Games\\Codemasters\\MicroMachines\\{{P|uid}}\\{{P|uid}}.dat}}" + - "{{Game data/saves|Linux|{{p|xdgdatahome}}/vpltd/micromachines/GameDocuments/Saved Games/Codemasters/MicroMachines/{{P|uid}}/{{P|uid}}.dat}}" Micro Mages: pageId: 134540 steam: 1065020 @@ -103271,19 +100510,19 @@ MicroTown: pageId: 141964 steam: 931270 templates: - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Snowy Ash Games/MicroTown/}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Snowy Ash Games/MicroTown/}}' + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Snowy Ash Games/MicroTown/}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Snowy Ash Games/MicroTown/}}" MicroVolts Surge: pageId: 40763 steam: 109400 Microcosm: pageId: 61544 steam: 626570 -'Microcosmum: Survival of Cells': +"Microcosmum: Survival of Cells": pageId: 47152 steam: 386260 templates: - - '{{Game data/saves|Windows|{{p|steam}}\steamapps\common\Microcosmum Survival of cells\data.sav}}' + - "{{Game data/saves|Windows|{{p|steam}}\\steamapps\\common\\Microcosmum Survival of cells\\data.sav}}" Microgons: pageId: 59496 steam: 529870 @@ -103291,8 +100530,8 @@ Micron: pageId: 37397 steam: 290380 templates: - - '{{Game data/saves|Windows|{{P|hkcu}}\SOFTWARE\Apparition Games\Micron}}' -'Micronomicon: Heroes': + - "{{Game data/saves|Windows|{{P|hkcu}}\\SOFTWARE\\Apparition Games\\Micron}}" +"Micronomicon: Heroes": pageId: 132022 steam: 601250 Microscope Madness: @@ -103302,96 +100541,87 @@ Microsoft Bingo: pageId: 166507 Microsoft Classic Board Games: pageId: 174825 -'Microsoft Combat Flight Simulator 2: WW II Pacific Theater': +"Microsoft Combat Flight Simulator 2: WW II Pacific Theater": pageId: 81346 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' -'Microsoft Combat Flight Simulator 3: Battle for Europe': + - "{{Game data/config|Windows|{{p|game}}\\}}" +"Microsoft Combat Flight Simulator 3: Battle for Europe": pageId: 81348 templates: - - '{{Game data/config|Windows|{{p|game}}\Microsoft Games\CFS3\game.xml}}' -'Microsoft Combat Flight Simulator: WWII Europe Series': + - "{{Game data/config|Windows|{{p|game}}\\Microsoft Games\\CFS3\\game.xml}}" +"Microsoft Combat Flight Simulator: WWII Europe Series": pageId: 16847 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/saves|Windows|{{p|game}}\PilotLog}}' + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\PilotLog}}" Microsoft Flight: pageId: 2415 steam: 203850 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Microsoft\Flight}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Microsoft\Flight\Players}}' + - "{{Game data/config|Windows|{{p|appdata}}\\Microsoft\\Flight}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Microsoft\\Flight\\Players}}" Microsoft Flight Simulator: pageId: 172712 Microsoft Flight Simulator (2020): pageId: 138499 steam: 1250410 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Microsoft Flight Simulator\}}' - - >- - {{Game data/config|Microsoft Store| - - {{p|localappdata}}\Packages\Microsoft.FlightSimulator_8wekyb3d8bbwe\LocalCache\| - - {{p|localappdata}}\Packages\Microsoft.FlightSimulator_8wekyb3d8bbwe\SystemAppData\wgs\{{P|uid}}\{{note|Settings - are serialized via Xbox SDK, but e.g. input profiles will be plain xml, so can just try opening each file in - notepad until the desired file is found.}}}} + - "{{Game data/config|Windows|{{p|appdata}}\\Microsoft Flight Simulator\\}}" + - "{{Game data/config|Microsoft Store|\n{{p|localappdata}}\\Packages\\Microsoft.FlightSimulator_8wekyb3d8bbwe\\LocalCache\\|\n{{p|localappdata}}\\Packages\\Microsoft.FlightSimulator_8wekyb3d8bbwe\\SystemAppData\\wgs\\{{P|uid}}\\{{note|Settings are serialized via Xbox SDK, but e.g. input profiles will be plain xml, so can just try opening each file in notepad until the desired file is found.}}}}" Microsoft Flight Simulator 2000: pageId: 173447 Microsoft Flight Simulator 2002: pageId: 167355 -'Microsoft Flight Simulator 2004: A Century of Flight': +"Microsoft Flight Simulator 2004: A Century of Flight": pageId: 2927 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Microsoft\FS9\FS9.cfg}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Flight Simulator Files\}}' + - "{{Game data/config|Windows|{{p|appdata}}\\Microsoft\\FS9\\FS9.cfg}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Flight Simulator Files\\}}" Microsoft Flight Simulator 98: pageId: 183021 Microsoft Flight Simulator X: pageId: 1375 steam: 314160 templates: - - >- - {{Game data/config|Windows|{{p|appdata}}\Microsoft\Flight Simulator - X\FSX.cfg|{{p|appdata}}\Microsoft\FSX\FSX.cfg}} - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Flight Simulator X Files\}}' + - "{{Game data/config|Windows|{{p|appdata}}\\Microsoft\\Flight Simulator X\\FSX.cfg|{{p|appdata}}\\Microsoft\\FSX\\FSX.cfg}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Flight Simulator X Files\\}}" Microsoft Flight Simulator for Windows 95: pageId: 152533 templates: - - '{{Game data/config|Windows|{{Path|game}}\FltSim95.CFG}}' - - '{{Game data/saves|Windows|{{Path|game}}\Pilots}}' + - "{{Game data/config|Windows|{{Path|game}}\\FltSim95.CFG}}" + - "{{Game data/saves|Windows|{{Path|game}}\\Pilots}}" Microsoft Golf: pageId: 7343 templates: - - '{{Game data/config|Windows|{{p|game}}\MSGOLF.INI}}' - - '{{Game data/saves|Windows|{{p|game}}\*.PIN}}' + - "{{Game data/config|Windows|{{p|game}}\\MSGOLF.INI}}" + - "{{Game data/saves|Windows|{{p|game}}\\*.PIN}}" Microsoft Golf 3.0: pageId: 5706 templates: - - '{{Game data/config|Windows|{{p|game}}\MSGOLF.INI|{{p|game}}\multplyr\}}' - - '{{Game data/saves|Windows|{{p|game}}\*.GAM}}' + - "{{Game data/config|Windows|{{p|game}}\\MSGOLF.INI|{{p|game}}\\multplyr\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\*.GAM}}" Microsoft International Soccer 2000: pageId: 120641 templates: - - '{{Game data/saves|Windows|{{P|game}}\SAVE}}' + - "{{Game data/saves|Windows|{{P|game}}\\SAVE}}" Microsoft Jigsaw: pageId: 166491 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Packages\Microsoft.MicrosoftJigsaw_8wekyb3d8bbwe\Settings\}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\Packages\Microsoft.MicrosoftJigsaw_8wekyb3d8bbwe\LocalState\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\Packages\\Microsoft.MicrosoftJigsaw_8wekyb3d8bbwe\\Settings\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Packages\\Microsoft.MicrosoftJigsaw_8wekyb3d8bbwe\\LocalState\\}}" Microsoft Mahjong: pageId: 30658 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Packages\Microsoft.MicrosoftMahjong_8wekyb3d8bbwe\Settings\}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\Packages\Microsoft.MicrosoftMahjong_8wekyb3d8bbwe\LocalState\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\Packages\\Microsoft.MicrosoftMahjong_8wekyb3d8bbwe\\Settings\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Packages\\Microsoft.MicrosoftMahjong_8wekyb3d8bbwe\\LocalState\\}}" Microsoft Maquette: pageId: 127631 steam: 967490 Microsoft Minesweeper: pageId: 30680 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Packages\Microsoft.MicrosoftMinesweeper_8wekyb3d8bbwe\Settings\}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\Packages\Microsoft.MicrosoftMinesweeper_8wekyb3d8bbwe\LocalState\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\Packages\\Microsoft.MicrosoftMinesweeper_8wekyb3d8bbwe\\Settings\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Packages\\Microsoft.MicrosoftMinesweeper_8wekyb3d8bbwe\\LocalState\\}}" Microsoft Pinball Arcade: pageId: 11227 Microsoft Revenge of Arcade: @@ -103401,35 +100631,31 @@ Microsoft Soccer: Microsoft Solitaire Collection: pageId: 26915 templates: - - >- - {{Game - data/config|Windows|{{P|localappdata}}\Packages\Microsoft.MicrosoftSolitaireCollection_8wekyb3d8bbwe\Settings\}} - - >- - {{Game - data/saves|Windows|{{P|localappdata}}\Packages\Microsoft.MicrosoftSolitaireCollection_8wekyb3d8bbwe\LocalState\savegame\}} + - "{{Game data/config|Windows|{{P|localappdata}}\\Packages\\Microsoft.MicrosoftSolitaireCollection_8wekyb3d8bbwe\\Settings\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Packages\\Microsoft.MicrosoftSolitaireCollection_8wekyb3d8bbwe\\LocalState\\savegame\\}}" Microsoft Sudoku: pageId: 161998 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Packages\Microsoft.MicrosoftSudoku_8wekyb3d8bbwe\Settings\}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\Packages\Microsoft.MicrosoftSudoku_8wekyb3d8bbwe\LocalState\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\Packages\\Microsoft.MicrosoftSudoku_8wekyb3d8bbwe\\Settings\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Packages\\Microsoft.MicrosoftSudoku_8wekyb3d8bbwe\\LocalState\\}}" Microsoft Train Simulator: pageId: 169591 templates: - - '{{Game data/saves|Windows|{{p|game}}\[Route]\*.sav}}' + - "{{Game data/saves|Windows|{{p|game}}\\[Route]\\*.sav}}" Microsoft Treasure Hunt: pageId: 166471 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Packages\Microsoft.MicrosoftTreasureHunt_8wekyb3d8bbwe\Settings\}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\Packages\Microsoft.MicrosoftTreasureHunt_8wekyb3d8bbwe\LocalState\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\Packages\\Microsoft.MicrosoftTreasureHunt_8wekyb3d8bbwe\\Settings\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Packages\\Microsoft.MicrosoftTreasureHunt_8wekyb3d8bbwe\\LocalState\\}}" Microsoft Ultimate Word Games: pageId: 162071 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Packages\Microsoft.Studios.Wordament_8wekyb3d8bbwe\Settings\}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\Packages\Microsoft.Studios.Wordament_8wekyb3d8bbwe\LocalState\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\Packages\\Microsoft.Studios.Wordament_8wekyb3d8bbwe\\Settings\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Packages\\Microsoft.Studios.Wordament_8wekyb3d8bbwe\\LocalState\\}}" Microtransaction Simulator: pageId: 69631 steam: 689090 -'Microtransaction Simulator Game of the Decade: Deluxe Edition': +"Microtransaction Simulator Game of the Decade: Deluxe Edition": pageId: 88181 steam: 801450 Mid or Feed: @@ -103439,12 +100665,12 @@ MidBoss: pageId: 55778 steam: 561740 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\MidBoss\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/MidBoss/}}' - - '{{Game data/config|Linux|{{p|xdgdatahome}}/MidBoss/}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\MidBoss\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/MidBoss/}}' - - '{{Game data/saves|Linux|{{p|xdgdatahome}}/MidBoss/}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\MidBoss\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/MidBoss/}}" + - "{{Game data/config|Linux|{{p|xdgdatahome}}/MidBoss/}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\MidBoss\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/MidBoss/}}" + - "{{Game data/saves|Linux|{{p|xdgdatahome}}/MidBoss/}}" MidKnight Story: pageId: 137145 steam: 1084830 @@ -103460,20 +100686,20 @@ Middle Ages Hero: Middle Ages Hero (2019): pageId: 137416 steam: 1027050 -'Middle-earth: Shadow of Mordor': +"Middle-earth: Shadow of Mordor": gog: 1213504814 pageId: 17719 steam: 241930 steamSide: - - 318550 - 311670 + - 318550 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\WB Games\Shadow of Mordor\}}' - - '{{Game data/config|OS X|{{P|userprofile}}/Library/Application Support/Steam/SteamApps/common/ShadowOfMordor/}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/feral-interactive/ShadowOfMordor/AppData/WB Games/Shadow of Mordor/}}' - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/241930/remote/gamedata.sav}}' - - '{{Game data/saves|GOG.com|{{P|userprofile\Documents}}\WB Games\Shadow of Mordor\Saves\GameData.sav}}' -'Middle-earth: Shadow of War': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\WB Games\\Shadow of Mordor\\}}" + - "{{Game data/config|OS X|{{P|userprofile}}/Library/Application Support/Steam/SteamApps/common/ShadowOfMordor/}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/feral-interactive/ShadowOfMordor/AppData/WB Games/Shadow of Mordor/}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/241930/remote/gamedata.sav}}" + - "{{Game data/saves|GOG.com|{{P|userprofile\\Documents}}\\WB Games\\Shadow of Mordor\\Saves\\GameData.sav}}" +"Middle-earth: Shadow of War": gog: 1324471032 gogSide: - 1268601065 @@ -103483,21 +100709,19 @@ Middle Ages Hero (2019): pageId: 58575 steam: 356190 templates: - - '{{Game data/config|Steam|{{p|LocalAppData}}\WB Games\Shadow of War\}}' - - '{{Game data/config|GOG.com|{{p|LocalAppData}}\WB Games\Shadow of War\}}' - - '{{Game data/saves|Windows|{{p|LocalAppData}}\WB Games\Shadow of War\{{p|uid}}_ShadowOfWar.sav}}' - - >- - {{Game data/saves|Microsoft - Store|{{p|localappdata}}\Packages\6DA520A3.1673586F56C6C_ykvmsk3s73586\SystemAppData\wgs\{{p|uid}}}} - - '{{Game data/saves|Steam|{{P|steam}}\userdata\{{P|uid}}\356190\remote\}}' - - '{{Game data/saves|GOG.com|{{p|LocalAppData}}\WB Games\Shadow of War\_ShadowOfWar.sav}}' + - "{{Game data/config|Steam|{{p|LocalAppData}}\\WB Games\\Shadow of War\\}}" + - "{{Game data/config|GOG.com|{{p|LocalAppData}}\\WB Games\\Shadow of War\\}}" + - "{{Game data/saves|Windows|{{p|LocalAppData}}\\WB Games\\Shadow of War\\{{p|uid}}_ShadowOfWar.sav}}" + - "{{Game data/saves|Microsoft Store|{{p|localappdata}}\\Packages\\6DA520A3.1673586F56C6C_ykvmsk3s73586\\SystemAppData\\wgs\\{{p|uid}}}}" + - "{{Game data/saves|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\356190\\remote\\}}" + - "{{Game data/saves|GOG.com|{{p|LocalAppData}}\\WB Games\\Shadow of War\\_ShadowOfWar.sav}}" Midnight: pageId: 44782 steam: 431460 -'Midnight Calling: Anabel': +"Midnight Calling: Anabel": pageId: 60109 renamedFrom: - - 'Midnight Calling: Anabel Collector''s Edition' + - "Midnight Calling: Anabel Collector's Edition" steam: 614650 Midnight Caravan: pageId: 100602 @@ -103509,14 +100733,14 @@ Midnight Castle Succubus DX: pageId: 164438 steam: 1299320 templates: - - '{{Game data/config|Windows|{{p|game}}\savedata\global.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\savedata}}' + - "{{Game data/config|Windows|{{p|game}}\\savedata\\global.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\savedata}}" Midnight Club II: pageId: 2731 steam: 12160 templates: - - '{{Game data/config|Windows|{{p|game}}\userdata\*.cfg|{{p|game}}\userdata\*.map}}' - - '{{Game data/saves|Windows|{{p|game}}\userdata\*.sav}}' + - "{{Game data/config|Windows|{{p|game}}\\userdata\\*.cfg|{{p|game}}\\userdata\\*.map}}" + - "{{Game data/saves|Windows|{{p|game}}\\userdata\\*.sav}}" Midnight Evil: pageId: 128332 steam: 1030360 @@ -103528,17 +100752,15 @@ Midnight Fight Express: pageId: 178191 steam: 1390410 templates: - - >- - {{Game data/saves|Microsoft - Store|{{P|localappdata}}\Packages\HumbleBundle.MidnightFightExpress_q2mcdwmzx4qja\SystemAppData\wgs}} -'Midnight GT: Primary Racer': + - "{{Game data/saves|Microsoft Store|{{P|localappdata}}\\Packages\\HumbleBundle.MidnightFightExpress_q2mcdwmzx4qja\\SystemAppData\\wgs}}" +"Midnight GT: Primary Racer": pageId: 167593 Midnight Ghost Hunt: pageId: 109814 steam: 915810 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\MidnightGhostHunt\Saved\Config\WindowsNoEditor}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\MidnightGhostHunt\Saved\SaveGames}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\MidnightGhostHunt\\Saved\\Config\\WindowsNoEditor}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\MidnightGhostHunt\\Saved\\SaveGames}}" Midnight Grub Session: pageId: 141015 steam: 1104910 @@ -103549,22 +100771,22 @@ Midnight Legends: Midnight Mysteries: pageId: 41234 steam: 32140 -'Midnight Mysteries 3: Devil on the Mississippi': +"Midnight Mysteries 3: Devil on the Mississippi": pageId: 40810 steam: 208630 -'Midnight Mysteries 4: Haunted Houdini': +"Midnight Mysteries 4: Haunted Houdini": pageId: 40808 steam: 208640 -'Midnight Mysteries: Salem Witch Trials': +"Midnight Mysteries: Salem Witch Trials": pageId: 40812 steam: 208620 -'Midnight Mysteries: Witches of Abraham': +"Midnight Mysteries: Witches of Abraham": pageId: 49253 steam: 332810 -'Midnight Outlaw: 6 Hours to SunUp': +"Midnight Outlaw: 6 Hours to SunUp": pageId: 41353 steam: 12600 -'Midnight Outlaw: Illegal Street Drag': +"Midnight Outlaw: Illegal Street Drag": pageId: 88369 Midnight Protocol: gog: 1691217616 @@ -103573,10 +100795,8 @@ Midnight Protocol: steamSide: - 1315590 templates: - - >- - {{Game data/config|Windows|{{P|userprofile\appdata\locallow}}\LuGus Studios\Midnight - Protocol\system.sav|{{P|hkcu}}\SOFTWARE\LuGus Studios\Midnight Protocol\}} - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\LuGus Studios\Midnight Protocol}}' + - "{{Game data/config|Windows|{{P|userprofile\\appdata\\locallow}}\\LuGus Studios\\Midnight Protocol\\system.sav|{{P|hkcu}}\\SOFTWARE\\LuGus Studios\\Midnight Protocol\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\LuGus Studios\\Midnight Protocol}}" Midnight Pulse: pageId: 105515 steam: 905980 @@ -103591,16 +100811,16 @@ Midnight Ultra: Midnight Wave: pageId: 113586 steam: 904840 -'Midnight at the Celestial Palace: Chapter I': +"Midnight at the Celestial Palace: Chapter I": pageId: 57693 steam: 460140 Midnight at the Red Light: pageId: 64299 steam: 665140 -Midnight's Blessing: +"Midnight's Blessing": pageId: 47795 steam: 370640 -Midnight's Blessing 2: +"Midnight's Blessing 2": pageId: 56655 steam: 461370 Midnightland: @@ -103612,8 +100832,8 @@ Midsummer Night: Midtown Madness: pageId: 30269 templates: - - '{{Game data/config|Windows|{{p|game}}\video.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\players}}' + - "{{Game data/config|Windows|{{p|game}}\\video.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\players}}" Midtown Madness 2: pageId: 30293 Midvinter: @@ -103622,8 +100842,8 @@ Midvinter: Midway Arcade Treasures Deluxe Edition: pageId: 128892 templates: - - '{{Game data/config|Windows|{{p|game}}\config\*.cfg|{{p|game}}\config\settings.dat}}' - - '{{Game data/saves|Windows|{{p|game}}\config\scores.dat|{{p|game}}\HydroData\hydro.sav}}' + - "{{Game data/config|Windows|{{p|game}}\\config\\*.cfg|{{p|game}}\\config\\settings.dat}}" + - "{{Game data/saves|Windows|{{p|game}}\\config\\scores.dat|{{p|game}}\\HydroData\\hydro.sav}}" Miegakure: pageId: 151641 steam: 355750 @@ -103637,21 +100857,19 @@ Might & Magic Heroes VI: pageId: 8709 steam: 48220 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Might & Magic Heroes VI\{{p|uid}}\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Might & Magic Heroes VI\{{p|uid}}\Save\}}' -'Might & Magic Heroes VI: Shades of Darkness': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Might & Magic Heroes VI\\{{p|uid}}\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Might & Magic Heroes VI\\{{p|uid}}\\Save\\}}" +"Might & Magic Heroes VI: Shades of Darkness": pageId: 40628 steam: 229790 Might & Magic Heroes VII: pageId: 33688 steam: 321960 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Might & Magic Heroes VII\MMH7Game\Config}}' - - >- - {{Game data/saves|Windows|{{p|uplay}}\savegames\{{p|uid}}\1176\|{{p|userprofile\Documents}}\My Games\Might & Magic - Heroes VII\MMH7Game\Savegames}} - - '{{Game data/saves|Steam|{{p|uplay}}\savegames\{{p|uid}}\1177\}}' -'Might & Magic Heroes VII: Trial by Fire': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Might & Magic Heroes VII\\MMH7Game\\Config}}" + - "{{Game data/saves|Windows|{{p|uplay}}\\savegames\\{{p|uid}}\\1176\\|{{p|userprofile\\Documents}}\\My Games\\Might & Magic Heroes VII\\MMH7Game\\Savegames}}" + - "{{Game data/saves|Steam|{{p|uplay}}\\savegames\\{{p|uid}}\\1177\\}}" +"Might & Magic Heroes VII: Trial by Fire": pageId: 34079 steam: 445310 Might & Magic Showdown: @@ -103661,105 +100879,103 @@ Might & Magic X - Legacy: pageId: 14621 steam: 238750 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\MightAndMagicXLegacy\options64.txt}}' - - '{{Game data/saves|Windows|{{P|uplay}}\savegames\{{P|uid}}\401\|{{P|uplay}}\savegames\{{p|uid}}\403\}}' - - '{{Game data/saves|OS X|{{P|osxhome}}/MightAndMagicXLegacy/}}' -'Might & Magic: Chess Royale': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\MightAndMagicXLegacy\\options64.txt}}" + - "{{Game data/saves|Windows|{{P|uplay}}\\savegames\\{{P|uid}}\\401\\|{{P|uplay}}\\savegames\\{{p|uid}}\\403\\}}" + - "{{Game data/saves|OS X|{{P|osxhome}}/MightAndMagicXLegacy/}}" +"Might & Magic: Chess Royale": pageId: 155228 -'Might & Magic: Clash of Heroes': +"Might & Magic: Clash of Heroes": pageId: 21678 renamedFrom: - - 'Might and Magic: Clash of Heroes' + - "Might and Magic: Clash of Heroes" steam: 61700 steamSide: - 61710 - 61720 templates: - - '{{Game data/config|Windows|{{p|game}}\userconfig.cfg}}' - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\61700\remote\}}' -'Might & Magic: Clash of Heroes - Definitive Edition': + - "{{Game data/config|Windows|{{p|game}}\\userconfig.cfg}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\61700\\remote\\}}" +"Might & Magic: Clash of Heroes - Definitive Edition": pageId: 186797 steam: 2213300 -'Might & Magic: Duel of Champions': +"Might & Magic: Duel of Champions": pageId: 40522 steam: 256410 Might & Mayhem: pageId: 63274 steam: 646820 -'Might and Magic Book One: The Secret of the Inner Sanctum': +"Might and Magic Book One: The Secret of the Inner Sanctum": gog: 1207661203 gogSide: - 1207658788 pageId: 5847 templates: - - '{{Game data/saves|DOS|{{p|game}}\ROSTER.DTA}}' -'Might and Magic II: Gates to Another World': + - "{{Game data/saves|DOS|{{p|game}}\\ROSTER.DTA}}" +"Might and Magic II: Gates to Another World": gog: 1207661213 gogSide: - 1207658788 pageId: 9898 templates: - - '{{Game data/saves|DOS|{{p|game}}\ROSTER.DAT}}' -'Might and Magic III: Isles of Terra': + - "{{Game data/saves|DOS|{{p|game}}\\ROSTER.DAT}}" +"Might and Magic III: Isles of Terra": gog: 1207661223 gogSide: - 1207658788 pageId: 9901 templates: - - '{{Game data/saves|DOS|{{p|game}}\SAVE**.MM3}}' + - "{{Game data/saves|DOS|{{p|game}}\\SAVE**.MM3}}" Might and Magic IX: gog: 1207658978 pageId: 5002 templates: - - '{{Game data/config|Windows|{{p|game}}\autoexec.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\SaveGames}}' -'Might and Magic VI: The Mandate of Heaven': + - "{{Game data/config|Windows|{{p|game}}\\autoexec.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\SaveGames}}" +"Might and Magic VI: The Mandate of Heaven": gog: 1207661253 gogSide: - 1207658788 pageId: 4782 steam: 243380 templates: - - '{{Game data/config|Windows|{{p|hklm}}\SOFTWARE\{{p|wow64}}\New World Computing\Might and Magic® VI\1.0\}}' - - '{{Game data/saves|Windows|{{p|game}}\Saves\}}' -'Might and Magic VII: For Blood and Honor': + - "{{Game data/config|Windows|{{p|hklm}}\\SOFTWARE\\{{p|wow64}}\\New World Computing\\Might and Magic® VI\\1.0\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\Saves\\}}" +"Might and Magic VII: For Blood and Honor": gog: 1207658916 pageId: 7223 templates: - - '{{Game data/config|Windows|{{p|hklm}}\SOFTWARE\{{p|wow64}}\New World Computing\Might and Magic VII\1.0\}}' - - '{{Game data/saves|Windows|{{p|game}}\Saves\}}' -'Might and Magic VIII: Day of the Destroyer': + - "{{Game data/config|Windows|{{p|hklm}}\\SOFTWARE\\{{p|wow64}}\\New World Computing\\Might and Magic VII\\1.0\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\Saves\\}}" +"Might and Magic VIII: Day of the Destroyer": gog: 1207658918 pageId: 9198 templates: - - >- - {{Game data/config|Windows|{{p|hklm}}\SOFTWARE\{{p|wow64}}\New World Computing\Might and Magic Day of the - Destroyer\1.0\}} - - '{{Game data/saves|Windows|{{p|game}}\Saves\}}' -'Might and Magic: Clouds of Xeen': + - "{{Game data/config|Windows|{{p|hklm}}\\SOFTWARE\\{{p|wow64}}\\New World Computing\\Might and Magic Day of the Destroyer\\1.0\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\Saves\\}}" +"Might and Magic: Clouds of Xeen": gog: 1207661233 gogSide: - 1207658788 pageId: 9887 templates: - - '{{Game data/config|DOS|{{p|game}}\XEEN.CFG}}' - - '{{Game data/saves|DOS|{{p|game}}\XEEN**.SAV}}' -'Might and Magic: Darkside of Xeen': + - "{{Game data/config|DOS|{{p|game}}\\XEEN.CFG}}" + - "{{Game data/saves|DOS|{{p|game}}\\XEEN**.SAV}}" +"Might and Magic: Darkside of Xeen": gog: 1207661233 gogSide: - 1207658788 pageId: 9889 templates: - - '{{Game data/config|DOS|{{p|game}}\XEEN.CFG}}' - - '{{Game data/saves|DOS|{{p|game}}\DARK**.SAV}}' -'Might and Magic: World of Xeen': + - "{{Game data/config|DOS|{{p|game}}\\XEEN.CFG}}" + - "{{Game data/saves|DOS|{{p|game}}\\DARK**.SAV}}" +"Might and Magic: World of Xeen": gog: 1207661233 gogSide: - 1207658788 pageId: 9891 templates: - - '{{Game data/config|DOS|{{p|game}}\XEEN.CFG}}' - - '{{Game data/saves|DOS|{{p|game}}\XEEN**.SAV|{{p|game}}\XEEN**.WOX}}' + - "{{Game data/config|DOS|{{p|game}}\\XEEN.CFG}}" + - "{{Game data/saves|DOS|{{p|game}}\\XEEN**.SAV|{{p|game}}\\XEEN**.WOX}}" Might is Right: pageId: 153662 steam: 1152160 @@ -103770,8 +100986,8 @@ Mighty Dungeons: pageId: 48533 steam: 349550 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\MightyDungeons\settings.json}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\MightyDungeons\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\MightyDungeons\\settings.json}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\MightyDungeons\\}}" Mighty Fight Federation: pageId: 145113 steam: 1096690 @@ -103785,14 +101001,14 @@ Mighty Gunvolt: pageId: 28582 steam: 394600 templates: - - '{{Game data/config|Windows|{{p|game}}\save\mgv_config.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\save\*.bin}}' + - "{{Game data/config|Windows|{{p|game}}\\save\\mgv_config.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\save\\*.bin}}" Mighty Gunvolt Burst: pageId: 140452 steam: 774651 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Inti\MGVB|{{p|game}}\exe\SystemData.bin}}' - - '{{Game data/saves|Windows|{{p|game}}\exe\GameData*.bin|{{p|game}}\exe\SystemData.bin}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Inti\\MGVB|{{p|game}}\\exe\\SystemData.bin}}" + - "{{Game data/saves|Windows|{{p|game}}\\exe\\GameData*.bin|{{p|game}}\\exe\\SystemData.bin}}" Mighty Jill Off: pageId: 60981 Mighty Monster Mayhem: @@ -103802,8 +101018,8 @@ Mighty No. 9: pageId: 11101 steam: 314710 templates: - - '{{Game data/config|Windows|{{p|game}}\MN9Game\Config\}}' - - '{{Game data/saves|Windows|{{p|game}}\MN9Game\SaveData\}}' + - "{{Game data/config|Windows|{{p|game}}\\MN9Game\\Config\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\MN9Game\\SaveData\\}}" Mighty Party: pageId: 60249 steam: 575720 @@ -103811,33 +101027,33 @@ Mighty Switch Force! Academy: pageId: 30547 steam: 350210 templates: - - '{{Game data/config|Windows|{{p|game}}\options.ini|{{p|localappdata}}\MSF_Academy\save.ini}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\MSF_Academy\save.ini}}' + - "{{Game data/config|Windows|{{p|game}}\\options.ini|{{p|localappdata}}\\MSF_Academy\\save.ini}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\MSF_Academy\\save.ini}}" Mighty Switch Force! Collection: gog: 1948030341 pageId: 144386 steam: 832320 templates: - - '{{Game data/config|Windows| {{p|game}}\options.txt }}' + - "{{Game data/config|Windows| {{p|game}}\\options.txt }}" Mighty Switch Force! Hose It Down!: pageId: 25949 steam: 375310 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\SOFTWARE\WayForward\Mighty Switch Force! Hose It Down!\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\WayForward\Mighty Switch Force_ Hose It Down_\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\WayForward\\Mighty Switch Force! Hose It Down!\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\WayForward\\Mighty Switch Force_ Hose It Down_\\}}" Mighty Switch Force! Hyper Drive Edition: pageId: 25939 steam: 366970 templates: - - '{{Game data/config|Windows|{{p|game}}\options.txt}}' - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\366970\remote\save}}' + - "{{Game data/config|Windows|{{p|game}}\\options.txt}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\366970\\remote\\save}}" MightyIronBall: pageId: 78332 steam: 767410 Migrate: pageId: 145530 steam: 1126900 -Mika and Sadie's Adventure: +"Mika and Sadie's Adventure": pageId: 190040 steam: 1764960 Mikapyon: @@ -103852,20 +101068,20 @@ Mike Goes on Hike: Mike Was Сursed: pageId: 76345 steam: 332700 -'Miko Gakkou Monogatari: Kaede Episode': +"Miko Gakkou Monogatari: Kaede Episode": pageId: 45477 steam: 332370 -'Miko Gakkou: Second Year': +"Miko Gakkou: Second Year": pageId: 49331 steam: 331290 Miko Mole: pageId: 42926 steam: 473480 -Miku'n POP: +"Miku'n POP": pageId: 173359 templates: - - '{{Game data/config|Windows|{{P|game}}\Config.sav}}' - - '{{Game data/saves|Windows|{{P|game}}\SaveData.sav}}' + - "{{Game data/config|Windows|{{P|game}}\\Config.sav}}" + - "{{Game data/saves|Windows|{{P|game}}\\SaveData.sav}}" MilMo: pageId: 102261 steam: 896590 @@ -103879,7 +101095,7 @@ Mile High Taxi: Miles & Kilo: pageId: 76987 steam: 669910 -Milford Heaven - Luken's Chronicles: +"Milford Heaven - Luken's Chronicles": pageId: 33864 steam: 485570 MilitAnt: @@ -103887,10 +101103,10 @@ MilitAnt: steam: 454520 Militarism: pageId: 14800 -'Military Conflict: Vietnam': +"Military Conflict: Vietnam": pageId: 184425 steam: 1012110 -'Military Life: Tank Simulator': +"Military Life: Tank Simulator": pageId: 42780 steam: 452000 Militia: @@ -103905,9 +101121,9 @@ Milk inside a Bag of Milk inside a Bag of Milk: steamSide: - 1593020 templates: - - '{{Game data/config|Windows|{{P|appdata}}\renpy\PMKM-1593795761\persistent}}' - - '{{Game data/saves|Windows|{{P|game}}\game\saves|{{P|appdata}}\renpy\PMKM-1593795761\*.save}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.renpy/PMKM-1593795761/}}' + - "{{Game data/config|Windows|{{P|appdata}}\\renpy\\PMKM-1593795761\\persistent}}" + - "{{Game data/saves|Windows|{{P|game}}\\game\\saves|{{P|appdata}}\\renpy\\PMKM-1593795761\\*.save}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.renpy/PMKM-1593795761/}}" Milk outside a Bag of Milk outside a Bag of Milk: pageId: 174604 steam: 1604000 @@ -103919,8 +101135,8 @@ Milkmaid of the Milky Way: pageId: 53576 steam: 544970 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\SOFTWARE\machineboy\Milkmaid\}}' - - '{{Game data/saves|Windows|{{P|hkcu}}\SOFTWARE\machineboy\Milkmaid\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\SOFTWARE\\machineboy\\Milkmaid\\}}" + - "{{Game data/saves|Windows|{{P|hkcu}}\\SOFTWARE\\machineboy\\Milkmaid\\}}" Milky Boobs: pageId: 76943 steam: 747100 @@ -103932,38 +101148,38 @@ Milky Way Prince – The Vampire Star: pageId: 161095 steam: 1302050 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\SOFTWARE\Santa Ragione\MILKY WAY PRINCE\}}' - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Santa Ragione\MILKY WAY PRINCE\Saves\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\SOFTWARE\\Santa Ragione\\MILKY WAY PRINCE\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Santa Ragione\\MILKY WAY PRINCE\\Saves\\}}" Mille Bornes: pageId: 76887 steam: 702510 -'Millennium 2: Take Me Higher': +"Millennium 2: Take Me Higher": pageId: 49969 renamedFrom: - Millennium 2 - Take Me Higher steam: 298820 -'Millennium 3: Cry Wolf': +"Millennium 3: Cry Wolf": pageId: 49697 renamedFrom: - Millennium 3 - Cry Wolf steam: 298830 -'Millennium 4: Beyond Sunset': +"Millennium 4: Beyond Sunset": pageId: 49615 renamedFrom: - Millennium 4 - Beyond Sunset steam: 298840 -'Millennium 5: The Battle of the Millennium': +"Millennium 5: The Battle of the Millennium": pageId: 49371 renamedFrom: - Millennium 5 - The Battle of the Millennium steam: 298850 -'Millennium: A New Hope': +"Millennium: A New Hope": pageId: 50364 renamedFrom: - Millennium - A New Hope steam: 280140 templates: - - '{{Game data/saves|Windows|{{p|appdata}}\Millennium_Saves\*.rxdata | {{p|appdata}}\Millennium_Saves\*.ini}}' + - "{{Game data/saves|Windows|{{p|appdata}}\\Millennium_Saves\\*.rxdata | {{p|appdata}}\\Millennium_Saves\\*.ini}}" Millia -The ending-: pageId: 45051 steam: 428060 @@ -103976,12 +101192,12 @@ Millie: Million Arthur VR: pageId: 77541 steam: 660570 -'Million Arthur: Arcana Blood': +"Million Arthur: Arcana Blood": pageId: 130716 steam: 989550 templates: - - '{{Game data/config|Steam|{{p|userprofile\Documents}}\My Games\Million Arthur Arcana Blood\{{p|uid}}\SaveData\}}' - - '{{Game data/saves|Steam|{{p|userprofile\Documents}}\My Games\Million Arthur Arcana Blood\{{p|uid}}\SaveData\}}' + - "{{Game data/config|Steam|{{p|userprofile\\Documents}}\\My Games\\Million Arthur Arcana Blood\\{{p|uid}}\\SaveData\\}}" + - "{{Game data/saves|Steam|{{p|userprofile\\Documents}}\\My Games\\Million Arthur Arcana Blood\\{{p|uid}}\\SaveData\\}}" Million Dungeon: pageId: 151109 steam: 1021800 @@ -104066,14 +101282,12 @@ Mind Scanners: pageId: 167405 steam: 1389550 templates: - - >- - {{Game data/config|Windows|{{P|userprofile\appdata\locallow}}\The Outer Zone\Mind - Scanners\demo_saves_v30\master.save|{{P|hkcu}}\Software\The Outer Zone\Mind Scanners}} - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\The Outer Zone\Mind Scanners\demo_saves_v30\}}' + - "{{Game data/config|Windows|{{P|userprofile\\appdata\\locallow}}\\The Outer Zone\\Mind Scanners\\demo_saves_v30\\master.save|{{P|hkcu}}\\Software\\The Outer Zone\\Mind Scanners}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\The Outer Zone\\Mind Scanners\\demo_saves_v30\\}}" Mind Shift: pageId: 66152 steam: 682070 -'Mind Snares: Alice''s Journey': +"Mind Snares: Alice's Journey": pageId: 38478 steam: 363330 Mind Spheres: @@ -104100,12 +101314,12 @@ Mind Zero: pageId: 31662 steam: 322630 templates: - - '{{Game data/config|Windows|{{P|game}}\setting.bin}}' - - '{{Game data/saves|Windows|{{P|game}}\win32data0000.bin}}' + - "{{Game data/config|Windows|{{P|game}}\\setting.bin}}" + - "{{Game data/saves|Windows|{{P|game}}\\win32data0000.bin}}" Mind the Vikings: pageId: 79216 steam: 765250 -'Mind''s Eye: Secrets of the Forgotten': +"Mind's Eye: Secrets of the Forgotten": pageId: 129725 steam: 1038670 MindLess: @@ -104127,8 +101341,8 @@ Mindnight: pageId: 66623 steam: 667870 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Nomoon\Mindnight}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Nomoon\Mindnight}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Nomoon\\Mindnight}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Nomoon\\Mindnight}}" Minds Eyes: pageId: 36610 steam: 519140 @@ -104145,12 +101359,12 @@ Mindustry: pageId: 147365 steam: 1127400 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Mindustry\settings.bin|{{p|appdata}}\Mindustry\settings_backup.bin}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.local/share/Mindustry/}}' - - '{{Game data/config|Steam|{{p|game}}\Mindustry\saves\settings.bin}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Mindustry\}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.local/share/Mindustry/saves/}}' - - '{{Game data/saves|Steam|{{p|game}}\Mindustry\saves\}}' + - "{{Game data/config|Windows|{{p|appdata}}\\Mindustry\\settings.bin|{{p|appdata}}\\Mindustry\\settings_backup.bin}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.local/share/Mindustry/}}" + - "{{Game data/config|Steam|{{p|game}}\\Mindustry\\saves\\settings.bin}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Mindustry\\}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.local/share/Mindustry/saves/}}" + - "{{Game data/saves|Steam|{{p|game}}\\Mindustry\\saves\\}}" Mine Royale - Battle Royale: pageId: 121829 steam: 968460 @@ -104191,56 +101405,41 @@ Minecraft Dungeons: pageId: 158917 steam: 1672970 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Dungeons\Saved\Config\WindowsNoEditor}}' - - >- - {{Game data/config|Microsoft - Store|{{P|localappdata}}\Packages\Microsoft.Lovika_8wekyb3d8bbwe\LocalCache\Local\Dungeons\Saved\Config\WindowsNoEditor\|{{P|localappdata}}\Dungeons\Saved\Config\WindowsNoEditor}} - - '{{Game data/saves|Windows|{{P|userprofile}}\Saved Games\Mojang Studios\Dungeons\{{P|uid}}}}' - - >- - {{Game data/saves|Microsoft - Store|{{P|localappdata}}\Packages\Microsoft.Lovika_8wekyb3d8bbwe\LocalCache\Local\Dungeons\{{P|uid}}|{{P|localappdata}}\Dungeons\{{P|uid}}|{{P|userprofile}}\Saved - Games\Mojang Studios\Dungeons\{{P|uid}}}} + - "{{Game data/config|Windows|{{P|localappdata}}\\Dungeons\\Saved\\Config\\WindowsNoEditor}}" + - "{{Game data/config|Microsoft Store|{{P|localappdata}}\\Packages\\Microsoft.Lovika_8wekyb3d8bbwe\\LocalCache\\Local\\Dungeons\\Saved\\Config\\WindowsNoEditor\\|{{P|localappdata}}\\Dungeons\\Saved\\Config\\WindowsNoEditor}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\Saved Games\\Mojang Studios\\Dungeons\\{{P|uid}}}}" + - "{{Game data/saves|Microsoft Store|{{P|localappdata}}\\Packages\\Microsoft.Lovika_8wekyb3d8bbwe\\LocalCache\\Local\\Dungeons\\{{P|uid}}|{{P|localappdata}}\\Dungeons\\{{P|uid}}|{{P|userprofile}}\\Saved Games\\Mojang Studios\\Dungeons\\{{P|uid}}}}" Minecraft Legends: pageId: 184879 steam: 1928870 templates: - - '{{Game data/config|Windows|{{P|appdata}}\Minecraft Legends\{{P|uid}}\minecraftpe\local}}' -'Minecraft: Bedrock Edition': + - "{{Game data/config|Windows|{{P|appdata}}\\Minecraft Legends\\{{P|uid}}\\minecraftpe\\local}}" +"Minecraft: Bedrock Edition": pageId: 26177 renamedFrom: - - 'Minecraft: Windows 10 Edition' + - "Minecraft: Windows 10 Edition" templates: - - >- - {{Game data/config|Microsoft Store| - {{p|localappdata}}\Packages\Microsoft.MinecraftUWP_8wekyb3d8bbwe\LocalState\games\com.mojang\minecraftpe\options.txt - | - {{p|localappdata}}\Packages\Microsoft.MinecraftWindowsBeta_8wekyb3d8bbwe\LocalState\games\com.mojang\minecraftpe\options.txt - '''(Preview)''' }} - - >- - {{Game data/saves|Microsoft - Store|{{p|localappdata}}\Packages\Microsoft.MinecraftUWP_8wekyb3d8bbwe\LocalState\games\com.mojang\minecraftWorlds\ - | - {{p|localappdata}}\Packages\Microsoft.MinecraftWindowsBeta_8wekyb3d8bbwe\LocalState\games\com.mojang\minecraftWorlds\ - '''(Preview)''' }} -'Minecraft: Education Edition': + - "{{Game data/config|Microsoft Store| {{p|localappdata}}\\Packages\\Microsoft.MinecraftUWP_8wekyb3d8bbwe\\LocalState\\games\\com.mojang\\minecraftpe\\options.txt | {{p|localappdata}}\\Packages\\Microsoft.MinecraftWindowsBeta_8wekyb3d8bbwe\\LocalState\\games\\com.mojang\\minecraftpe\\options.txt '''(Preview)''' }}" + - "{{Game data/saves|Microsoft Store|{{p|localappdata}}\\Packages\\Microsoft.MinecraftUWP_8wekyb3d8bbwe\\LocalState\\games\\com.mojang\\minecraftWorlds\\ | {{p|localappdata}}\\Packages\\Microsoft.MinecraftWindowsBeta_8wekyb3d8bbwe\\LocalState\\games\\com.mojang\\minecraftWorlds\\ '''(Preview)''' }}" +"Minecraft: Education Edition": pageId: 168195 templates: - - '{{Game data/config|Windows|{{P|appdata}}\Minecraft Education Edition\games\com.mojang\minecraftpe\options.txt}}' - - '{{Game data/saves|Windows|{{P|appdata}}\Minecraft Education Edition\games\com.mojang\minecraftWorlds}}' -'Minecraft: Java Edition': + - "{{Game data/config|Windows|{{P|appdata}}\\Minecraft Education Edition\\games\\com.mojang\\minecraftpe\\options.txt}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\Minecraft Education Edition\\games\\com.mojang\\minecraftWorlds}}" +"Minecraft: Java Edition": pageId: 41 renamedFrom: - Minecraft templates: - - '{{Game data/config|Windows|{{p|appdata}}\.minecraft\options.txt}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/minecraft/options.txt}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.minecraft/options.txt}}' - - '{{Game data/saves|Windows|{{p|appdata}}\.minecraft\saves}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/minecraft/saves}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.minecraft/saves}}' -'Minecraft: Pi Edition': + - "{{Game data/config|Windows|{{p|appdata}}\\.minecraft\\options.txt}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/minecraft/options.txt}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.minecraft/options.txt}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\.minecraft\\saves}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/minecraft/saves}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.minecraft/saves}}" +"Minecraft: Pi Edition": pageId: 165512 -'Minecraft: Story Mode - A Telltale Games Series': +"Minecraft: Story Mode - A Telltale Games Series": gog: 1444400283 gogSide: - 1458753687 @@ -104249,17 +101448,17 @@ Minecraft Legends: steamSide: - 456630 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Telltale Games\Minecraft Story Mode\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Telltale Games\Minecraft Story Mode\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Telltale Games/}}' -'Minecraft: Story Mode - Season Two': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Telltale Games\\Minecraft Story Mode\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Telltale Games\\Minecraft Story Mode\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Telltale Games/}}" +"Minecraft: Story Mode - Season Two": gog: 1614341910 pageId: 63347 steam: 639170 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Telltale Games\Minecraft Story Mode - Season Two\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Telltale Games\Minecraft Story Mode - Season Two\}}' -Mineirinho Director's Cut: + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Telltale Games\\Minecraft Story Mode - Season Two\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Telltale Games\\Minecraft Story Mode - Season Two\\}}" +"Mineirinho Director's Cut": pageId: 153762 steam: 1201630 Mineirinho Shooter DC: @@ -104283,7 +101482,7 @@ Mineirinho Ultra Wild Tides: Mineirinho Wildtides DC: pageId: 156664 steam: 1222240 -Mineko's Night Market: +"Mineko's Night Market": pageId: 78842 steam: 762940 Miner Lou: @@ -104308,8 +101507,8 @@ Miner Wars 2081: pageId: 6108 steam: 223430 templates: - - '{{Game data/config|Windows|{{p|appdata}}\MinerWars\MinerWars.cfg}}' - - '{{Game data/saves|Windows|{{p|appdata}}\MinerWars\Saves}}' + - "{{Game data/config|Windows|{{p|appdata}}\\MinerWars\\MinerWars.cfg}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\MinerWars\\Saves}}" Miner Wars Arena: pageId: 40745 steam: 219070 @@ -104333,11 +101532,11 @@ Minesweeper Peak VR: Minetest: pageId: 26233 templates: - - '{{Game data/config|Windows|{{p|game}}\minetest.conf}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.minetest/minetest.conf}}' - - '{{Game data/saves|Windows|{{p|game}}\worlds}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.minetest/worlds}}' -'Miney Company: A Data Racket': + - "{{Game data/config|Windows|{{p|game}}\\minetest.conf}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.minetest/minetest.conf}}" + - "{{Game data/saves|Windows|{{p|game}}\\worlds}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.minetest/worlds}}" +"Miney Company: A Data Racket": pageId: 82744 steam: 763680 Mini Attack Submarine: @@ -104354,8 +101553,8 @@ Mini Ghost: pageId: 59399 steam: 586880 templates: - - '{{Game data/config|Steam|{{P|steam}}\userdata\{{P|uid}}\586880\remote\config_minighost.bin}}' - - '{{Game data/saves|Steam|{{P|steam}}\userdata\{{P|uid}}\586880\remote\minighost.sav}}' + - "{{Game data/config|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\586880\\remote\\config_minighost.bin}}" + - "{{Game data/saves|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\586880\\remote\\minighost.sav}}" Mini Gold Coop: pageId: 79924 steam: 780410 @@ -104371,7 +101570,7 @@ Mini Golf Club: Mini Golf Dream Courses: pageId: 152309 templates: - - '{{Game data/config|Windows|{{Path|localappdata}}\Virtual Store\Program Files (x86)\Mini Golf Dream Courses\data}}' + - "{{Game data/config|Windows|{{Path|localappdata}}\\Virtual Store\\Program Files (x86)\\Mini Golf Dream Courses\\data}}" Mini Golf Mundo: pageId: 43101 steam: 468320 @@ -104387,7 +101586,7 @@ Mini Hockey VR: Mini Island: pageId: 153236 steam: 1188310 -'Mini Island: Night': +"Mini Island: Night": pageId: 155912 steam: 1200780 Mini Knight: @@ -104401,11 +101600,9 @@ Mini Metro: pageId: 25528 steam: 287980 templates: - - >- - {{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\Dinosaur Polo Club\Mini - Metro\|{{p|hkcu}}\SOFTWARE\Dinosaur Polo Club\Mini Metro\}} - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Dinosaur Polo Club/Mini Metro/}}' - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\287980\remote\}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Dinosaur Polo Club\\Mini Metro\\|{{p|hkcu}}\\SOFTWARE\\Dinosaur Polo Club\\Mini Metro\\}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Dinosaur Polo Club/Mini Metro/}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\287980\\remote\\}}" Mini Motor Racing EVO: pageId: 40632 steam: 209520 @@ -104413,15 +101610,15 @@ Mini Motorways: pageId: 147751 steam: 1127500 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\SOFTWARE\Dinosaur Polo Club\Mini Motorways\}}' - - '{{Game data/config|Steam|{{P|steam}}\userdata\{{p|uid}}\1127500\remote\}}' - - '{{Game data/saves|Steam|{{P|steam}}\userdata\{{p|uid}}\1127500\remote\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\Dinosaur Polo Club\\Mini Motorways\\}}" + - "{{Game data/config|Steam|{{P|steam}}\\userdata\\{{p|uid}}\\1127500\\remote\\}}" + - "{{Game data/saves|Steam|{{P|steam}}\\userdata\\{{p|uid}}\\1127500\\remote\\}}" Mini Ninjas: pageId: 2137 steam: 35000 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\Saved Games\Eidos\Mini Ninjas\main.ini}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\Saved Games\Eidos\Mini Ninjas\playerprofiles.bin}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\Saved Games\\Eidos\\Mini Ninjas\\main.ini}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Saved Games\\Eidos\\Mini Ninjas\\playerprofiles.bin}}" Mini PVP: pageId: 135214 steam: 1012990 @@ -104446,13 +101643,13 @@ Mini Wheels: Mini Words - minimalist puzzle: pageId: 148545 steam: 1158290 -'Mini World: Block Art': +"Mini World: Block Art": pageId: 91807 steam: 814480 Mini Z Racers Turbo: pageId: 38761 steam: 508930 -Mini's Magic World: +"Mini's Magic World": pageId: 43069 steam: 449420 Mini-Dead: @@ -104479,16 +101676,12 @@ MiniGolf Maker: MiniGolf Mania: pageId: 43969 steam: 453680 -'MiniLAW: Ministry of Law': +"MiniLAW: Ministry of Law": pageId: 36754 steam: 503180 templates: - - |- - {{Game data/config|Windows| - {{P|localappdata}}\minilaw}} - - |- - {{Game data/saves|Windows| - {{P|localappdata}}\minilaw}} + - "{{Game data/config|Windows|\n{{P|localappdata}}\\minilaw}}" + - "{{Game data/saves|Windows|\n{{P|localappdata}}\\minilaw}}" MiniOne Racing: pageId: 47413 steam: 380000 @@ -104502,8 +101695,8 @@ Miniature Garden: pageId: 39791 steam: 494170 templates: - - '{{Game data/config|Windows|{{Path|Game}}\Miniature Garden.cf}}' - - '{{Game data/saves|Windows|{{Path|Game}}\savedata\}}' + - "{{Game data/config|Windows|{{Path|Game}}\\Miniature Garden.cf}}" + - "{{Game data/saves|Windows|{{Path|Game}}\\savedata\\}}" Miniature TD - VR: pageId: 67555 steam: 679670 @@ -104532,9 +101725,7 @@ Minimal Move: pageId: 130769 steam: 976680 templates: - - |- - {{Game data/saves|Windows|{{p|userprofile}}\AppData\Local\MinimalMove\Saved\SaveGames} - }} + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\Local\\MinimalMove\\Saved\\SaveGames}\n}}" Minimalism: pageId: 57655 steam: 585690 @@ -104559,7 +101750,7 @@ Mining & Tunneling Simulator: Mining Cats: pageId: 181364 steam: 1837920 -'Mining Empire: Earth Resources': +"Mining Empire: Earth Resources": pageId: 148497 steam: 985920 Mining Industry Simulator: @@ -104575,13 +101766,13 @@ Minion Masters: pageId: 51527 steam: 489520 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\BetaDwarf ApS\Minion Masters\}}' - - '{{Game data/config|Steam|{{P|steam}}\userdata\{{P|uid}}\489520\remote\usersetup_v1}}' - - '{{Game data/saves|Steam|{{P|steam}}\userdata\{{P|uid}}\489520\remote\profile_v1}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\BetaDwarf ApS\\Minion Masters\\}}" + - "{{Game data/config|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\489520\\remote\\usersetup_v1}}" + - "{{Game data/saves|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\489520\\remote\\profile_v1}}" Minions Battle: pageId: 132252 steam: 1055620 -'Minions, Monsters, and Madness': +"Minions, Monsters, and Madness": pageId: 54667 steam: 566200 Ministry of Broadcast: @@ -104589,28 +101780,24 @@ Ministry of Broadcast: pageId: 113438 steam: 874040 templates: - - '{{Game data/saves|Windows|{{P|localappdata}}\MinistryOfBroadcast\default\}}' + - "{{Game data/saves|Windows|{{P|localappdata}}\\MinistryOfBroadcast\\default\\}}" Minit: gog: 1861202745 pageId: 63861 steam: 609490 templates: - - >- - {{Game - data/config|Windows|{{P|localappdata}}\minit\minitSaves\minit_v1.sav|{{P|localappdata}}\minitGMS2\minitSaves\minit_v1.sav}} - - '{{Game data/config|Linux|{{P|linuxhome}}/.config/minit/minitsaves/minit_v1.sav}}' - - '{{Game data/config|Steam|{{p|steam}}\userdata\{{p|uid}}\609490\remote\minit_v1.sav}}' - - >- - {{Game - data/saves|Windows|{{P|localappdata}}\minit\minitSaves\minit_v1.sav|{{P|localappdata}}\minitGMS2\minitSaves\minit_v1.sav}} - - '{{Game data/saves|Linux|{{P|linuxhome}}/.config/minit/minitsaves/minit_v1.sav}}' - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\609490\remote\minit_v1.sav}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\minit\\minitSaves\\minit_v1.sav|{{P|localappdata}}\\minitGMS2\\minitSaves\\minit_v1.sav}}" + - "{{Game data/config|Linux|{{P|linuxhome}}/.config/minit/minitsaves/minit_v1.sav}}" + - "{{Game data/config|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\609490\\remote\\minit_v1.sav}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\minit\\minitSaves\\minit_v1.sav|{{P|localappdata}}\\minitGMS2\\minitSaves\\minit_v1.sav}}" + - "{{Game data/saves|Linux|{{P|linuxhome}}/.config/minit/minitsaves/minit_v1.sav}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\609490\\remote\\minit_v1.sav}}" Minit Fun Racer: pageId: 166782 steam: 1503530 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\minit_racer\funracer.sav}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\minit_racer\funracer.sav}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\minit_racer\\funracer.sav}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\minit_racer\\funracer.sav}}" Minitime: pageId: 93021 steam: 821190 @@ -104625,12 +101812,12 @@ Minoria: pageId: 114392 steam: 940910 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\BOMBSERVICE\Minoria}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\BOMBSERVICE\Minoria\saves}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\BOMBSERVICE\\Minoria}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\BOMBSERVICE\\Minoria\\saves}}" Minos Strategos: pageId: 56282 steam: 577490 -MinosMaze - The Minotaur's Labyrinth: +"MinosMaze - The Minotaur's Labyrinth": pageId: 38753 steam: 521100 Minotaur: @@ -104643,10 +101830,10 @@ Minotaur (2018): Minotaur Arcade Volume 1: pageId: 124181 steam: 906110 -Minotaur's Maze: +"Minotaur's Maze": pageId: 61102 steam: 531080 -'Minskies: The Abduction': +"Minskies: The Abduction": pageId: 129659 steam: 1028480 Mint: @@ -104660,8 +101847,8 @@ Minute of Islands: pageId: 145385 steam: 1049710 templates: - - '{{Game data/config|Windows|{{p|USERPROFILE\AppData\LocalLow}}\Studio Fizbin\Minute of Islands\}}' - - '{{Game data/saves|Windows|{{p|USERPROFILE\AppData\LocalLow}}\Studio Fizbin\Minute of Islands\}}' + - "{{Game data/config|Windows|{{p|USERPROFILE\\AppData\\LocalLow}}\\Studio Fizbin\\Minute of Islands\\}}" + - "{{Game data/saves|Windows|{{p|USERPROFILE\\AppData\\LocalLow}}\\Studio Fizbin\\Minute of Islands\\}}" Mio Garden: pageId: 109580 steam: 910400 @@ -104671,7 +101858,7 @@ Mira: Mira and the Mysteries of Alchemy: pageId: 164459 steam: 1328920 -Mira's Tale: +"Mira's Tale": pageId: 157150 steam: 1224070 Miracle Calamity Homeostasis: @@ -104692,7 +101879,7 @@ Miracle snack shop 기적의 분식집: Miraclr - Divine Dating Sim: pageId: 81651 steam: 787970 -'Miraculous: Rise of the Sphinx': +"Miraculous: Rise of the Sphinx": gog: 1334130696 pageId: 182512 renamedFrom: @@ -104710,11 +101897,11 @@ Mirage Online Classic: Mirage of Dragon: pageId: 81436 steam: 782380 -'Mirage: Arcane Warfare': +"Mirage: Arcane Warfare": pageId: 37040 steam: 368420 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\TBL\Saved\Config\WindowsNoEditor\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\TBL\\Saved\\Config\\WindowsNoEditor\\}}" Mircron Wars XR: pageId: 66199 steam: 676680 @@ -104725,22 +101912,22 @@ Mirror: pageId: 67964 steam: 644560 templates: - - '{{Game data/saves|Windows|{{P|game}}\save}}' -'Mirror 2: Project X': + - "{{Game data/saves|Windows|{{P|game}}\\save}}" +"Mirror 2: Project X": pageId: 174371 steam: 1832640 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Mirror2\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Mirror2\Saved\SaveGames}}' -Mirror Angel's Paradise: + - "{{Game data/config|Windows|{{p|localappdata}}\\Mirror2\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Mirror2\\Saved\\SaveGames}}" +"Mirror Angel's Paradise": pageId: 110430 steam: 926250 Mirror Drop: pageId: 93871 steam: 845270 templates: - - '{{Game data/config|Windows|{{P|appdata}}\Mirror Drop\}}' - - '{{Game data/saves|Windows|{{P|appdata}}\Mirror Drop\}}' + - "{{Game data/config|Windows|{{P|appdata}}\\Mirror Drop\\}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\Mirror Drop\\}}" Mirror Maker: pageId: 125892 steam: 1007350 @@ -104753,41 +101940,37 @@ Mirror Mysteries 2: Mirror Party: pageId: 174373 steam: 1787820 -Mirror's Edge: +"Mirror's Edge": gog: 1893001152 pageId: 45 steam: 17410 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\EA Games\Mirror''s Edge\TdGame\Config\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\EA Games\Mirror''s Edge\TdGame\Savefiles\}}' -Mirror's Edge Catalyst: + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\EA Games\\Mirror's Edge\\TdGame\\Config\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\EA Games\\Mirror's Edge\\TdGame\\Savefiles\\}}" +"Mirror's Edge Catalyst": pageId: 25629 steam: 1233570 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\Mirrors Edge Catalyst\settings\PROF_SAVE_profile}} - - >- - {{Game data/saves|Windows|{{p|userprofile\Documents}}\Mirrors Edge Catalyst\settings\PROF_SAVE}} + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Mirrors Edge Catalyst\\settings\\PROF_SAVE_profile}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Mirrors Edge Catalyst\\settings\\PROF_SAVE}}" MirrorMoon EP: pageId: 10054 steam: 231310 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Santa Ragione\MirrorMoonEP\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Preferences/unity.Santa Ragione.MirrorMoonEP.plist}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Santa Ragione/MirrorMoonEP/}}' - - '{{Game data/saves|Windows|{{P|hkcu}}\Software\Santa Ragione\MirrorMoonEP\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Preferences/unity.Santa Ragione.MirrorMoonEP.plist}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Santa Ragione/MirrorMoonEP/}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Santa Ragione\\MirrorMoonEP\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Preferences/unity.Santa Ragione.MirrorMoonEP.plist}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Santa Ragione/MirrorMoonEP/}}" + - "{{Game data/saves|Windows|{{P|hkcu}}\\Software\\Santa Ragione\\MirrorMoonEP\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Preferences/unity.Santa Ragione.MirrorMoonEP.plist}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Santa Ragione/MirrorMoonEP/}}" Mirrored - Chapter 1: pageId: 45826 steam: 365880 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Kelkafa\Mirrored}}' - - '{{Game data/config|Linux|{{P|linuxhome}}/.config/unity3d/Kelkafa/Mirrored/prefs}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Kelkafa\Mirrored\save.dat}}' - - '{{Game data/saves|Linux|{{P|linuxhome}}/.config/unity3d/Kelkafa/Mirrored/save.dat}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Kelkafa\\Mirrored}}" + - "{{Game data/config|Linux|{{P|linuxhome}}/.config/unity3d/Kelkafa/Mirrored/prefs}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Kelkafa\\Mirrored\\save.dat}}" + - "{{Game data/saves|Linux|{{P|linuxhome}}/.config/unity3d/Kelkafa/Mirrored/save.dat}}" Mirrors: pageId: 72834 steam: 709470 @@ -104795,27 +101978,27 @@ Mirt. Tales of the Cold Land: pageId: 62657 steam: 620530 templates: - - '{{Game data/config|Windows|{{P|appdata}}\renpy\MIRT-1464622904\persistent|{{P|game}}\game\saves\persistent}}' - - '{{Game data/saves|Windows|{{P|appdata}}\renpy\MIRT-1464622904\*.save|{{P|game}}\game\saves\*.save}}' + - "{{Game data/config|Windows|{{P|appdata}}\\renpy\\MIRT-1464622904\\persistent|{{P|game}}\\game\\saves\\persistent}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\renpy\\MIRT-1464622904\\*.save|{{P|game}}\\game\\saves\\*.save}}" MisBits: pageId: 154196 steam: 825190 Misadventures of Laura Silver: pageId: 132798 renamedFrom: - - 'Misadventures of Laura Silver: Chapter I' + - "Misadventures of Laura Silver: Chapter I" steam: 1026160 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Miss_Silver_Terminal___Part_I\SilverOptionsI.ini}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\Miss_Silver_Terminal___Part_I\Slot*.silver}}' -'Misadventures of Laura Silver: Chapter II': + - "{{Game data/config|Windows|{{P|localappdata}}\\Miss_Silver_Terminal___Part_I\\SilverOptionsI.ini}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Miss_Silver_Terminal___Part_I\\Slot*.silver}}" +"Misadventures of Laura Silver: Chapter II": pageId: 145518 steam: 1138270 -'Misao: Definitive Edition': +"Misao: Definitive Edition": pageId: 74409 steam: 691450 templates: - - '{{Game data/saves|Windows|{{p|game}}\Save\*.sav}}' + - "{{Game data/saves|Windows|{{p|game}}\\Save\\*.sav}}" Mischief on Main Street: pageId: 102453 renamedFrom: @@ -104825,8 +102008,8 @@ Miscreated: pageId: 20657 steam: 299740 templates: - - '{{Game data/config|Windows|{{p|game}}\user.cfg}}' -'Miscreation: Evolve Your Creature!': + - "{{Game data/config|Windows|{{p|game}}\\user.cfg}}" +"Miscreation: Evolve Your Creature!": pageId: 150494 steam: 1160360 Misfire: @@ -104835,12 +102018,12 @@ Misfire: Misfit: pageId: 109906 steam: 917880 -'Mishap 2: An Intentional Haunting': +"Mishap 2: An Intentional Haunting": pageId: 41019 renamedFrom: - - 'Mishap 2: An Intentional Haunting - Collector''s Edition' + - "Mishap 2: An Intentional Haunting - Collector's Edition" steam: 47570 -'Mishap: An Accidental Haunting': +"Mishap: An Accidental Haunting": pageId: 41181 steam: 47500 Miss Cat: @@ -104853,21 +102036,19 @@ Miss Furry: pageId: 169536 steam: 1566060 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\SOFTWARE\ Red Six Publishing\Miss Furry\}}' - - >- - {{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\ Red Six Publishing\Miss - Furry\}} -Miss Kobayashi's Dragon Maid Burst Forth!! Choro-gon☆Breath DIRECTOR'S CUT: + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\ Red Six Publishing\\Miss Furry\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\ Red Six Publishing\\Miss Furry\\}}" +"Miss Kobayashi's Dragon Maid Burst Forth!! Choro-gon☆Breath DIRECTOR'S CUT": pageId: 181427 steam: 2086380 -Miss Lisette's Assassin Maid: +"Miss Lisette's Assassin Maid": pageId: 135982 steam: 1071490 Miss Neko: pageId: 144166 steam: 1101450 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Double W\Miss Neko\*.pz }}' + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Double W\\Miss Neko\\*.pz }}" Miss Popularity: pageId: 56209 steam: 12660 @@ -104875,21 +102056,21 @@ Missed messages.: pageId: 136445 steam: 812810 templates: - - '{{Game data/config|Windows|{{p|appdata}}/LocalLow/Angela He/missed messages_}}' - - '{{Game data/saves|Windows|{{p|appdata}}/LocalLow/Angela He/missed messages_}}' + - "{{Game data/config|Windows|{{p|appdata}}/LocalLow/Angela He/missed messages_}}" + - "{{Game data/saves|Windows|{{p|appdata}}/LocalLow/Angela He/missed messages_}}" Misshapen: pageId: 157412 steam: 1223140 Missile Cards: pageId: 58463 steam: 586390 -'Missile Command: Recharged': +"Missile Command: Recharged": gog: 1563582501 pageId: 160690 steam: 2114990 templates: - - '{{Game data/config|Windows|{{P|game}}\MonoBleedingEdge\etc\mono\mconfig}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Atari Inc\Missile Command Recharged}}' + - "{{Game data/config|Windows|{{P|game}}\\MonoBleedingEdge\\etc\\mono\\mconfig}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Atari Inc\\Missile Command Recharged}}" MissileDancer: pageId: 94685 steam: 860590 @@ -104903,20 +102084,20 @@ Missing Translation: pageId: 38039 steam: 395520 templates: - - '{{Game data/saves|Windows|{{p|localappdata}}\MissingTranslation}}' -'Missing: An Interactive Thriller - Episode One': + - "{{Game data/saves|Windows|{{p|localappdata}}\\MissingTranslation}}" +"Missing: An Interactive Thriller - Episode One": pageId: 38452 steam: 354650 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Zandel Media\Missing\}}' - - '{{Game data/saves|Steam|{{P|steam}}\userdata\{{P|uid}}\354650\remote\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Zandel Media\\Missing\\}}" + - "{{Game data/saves|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\354650\\remote\\}}" Mission 1545: pageId: 77626 steam: 691600 Mission B: pageId: 141212 steam: 637980 -'Mission Control: NanoMech': +"Mission Control: NanoMech": pageId: 49097 steam: 338030 Mission Critical: @@ -104937,29 +102118,29 @@ Mission XAM: Mission of Hero: pageId: 87375 steam: 810610 -'Mission: Demolition': +"Mission: Demolition": pageId: 73867 steam: 726020 -'Mission: Escape from Island': +"Mission: Escape from Island": pageId: 64978 steam: 617170 -'Mission: Escape from Island 2': +"Mission: Escape from Island 2": pageId: 89226 steam: 761420 -'Mission: Escape from Island 3': +"Mission: Escape from Island 3": pageId: 89228 steam: 761430 -'Mission: Humanity': +"Mission: Humanity": pageId: 66546 templates: - - '{{Game data/saves|Windows|{{p|game}}\Save}}' -'Mission: Wolf': + - "{{Game data/saves|Windows|{{p|game}}\\Save}}" +"Mission: Wolf": pageId: 72363 steam: 718360 -'Mission:Amazing': +"Mission:Amazing": pageId: 155873 steam: 1211060 -'MissionForce: CyberStorm': +"MissionForce: CyberStorm": gog: 2099484877 pageId: 142379 Mist Hunter: @@ -104969,8 +102150,8 @@ Mist Survival: pageId: 108576 steam: 914620 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\MistSurv\Saved\Config\WindowsNoEditor}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\MistSurv\Saved\SaveGames}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\MistSurv\\Saved\\Config\\WindowsNoEditor}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\MistSurv\\Saved\\SaveGames}}" Mist of the Dark: pageId: 99720 steam: 884550 @@ -104994,36 +102175,34 @@ Mistover: pageId: 130644 steam: 909510 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\KRAFTON\MISTOVER\Save\{{p|uid}}\SystemData}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\KRAFTON\MISTOVER\Save\{{p|uid}}\GameData00}}' - - >- - {{Game data/saves|Microsoft - Store|{{p|userprofile}}\AppData\Local\Packages\Bluehole.6272899549C28_9wnthkhmg1142\SystemAppData\wgs}} + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\KRAFTON\\MISTOVER\\Save\\{{p|uid}}\\SystemData}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\KRAFTON\\MISTOVER\\Save\\{{p|uid}}\\GameData00}}" + - "{{Game data/saves|Microsoft Store|{{p|userprofile}}\\AppData\\Local\\Packages\\Bluehole.6272899549C28_9wnthkhmg1142\\SystemAppData\\wgs}}" Mistress of Maids: pageId: 82426 steam: 769190 -'Mistress of Maids: First Castle': +"Mistress of Maids: First Castle": pageId: 130145 steam: 1035800 Mistward: pageId: 190463 steam: 2618090 templates: - - '{{Game data/config|Windows|{{p|game}}\options.ini}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\cursorland}}' + - "{{Game data/config|Windows|{{p|game}}\\options.ini}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\cursorland}}" Mistwood Heroes: pageId: 55801 steam: 573210 -'Mitch: Berry Challenge': +"Mitch: Berry Challenge": pageId: 36768 steam: 480410 -'Mithral Gun:Biomechanical': +"Mithral Gun:Biomechanical": pageId: 145017 steam: 1123520 Mitos y Leyendas Online: pageId: 126350 steam: 1005340 -'Mitos.is: The Game': +"Mitos.is: The Game": pageId: 47091 steam: 389570 Mitosis: @@ -105034,12 +102213,12 @@ Mitsurugi Kamui Hikae: pageId: 18999 steam: 263620 templates: - - '{{Game data/config|Windows|{{p|APPDATA}}\mitsurugi01\config.ini}}' - - '{{Game data/saves|Windows|{{p|APPDATA}}\mitsurugi01\}}' -'Mittelborg: the City of Mages': + - "{{Game data/config|Windows|{{p|APPDATA}}\\mitsurugi01\\config.ini}}" + - "{{Game data/saves|Windows|{{p|APPDATA}}\\mitsurugi01\\}}" +"Mittelborg: the City of Mages": pageId: 122249 steam: 956060 -'Mix-Sign: Girl with 3 Signs': +"Mix-Sign: Girl with 3 Signs": pageId: 155761 steam: 1207800 Mixed Estate: @@ -105058,19 +102237,19 @@ Mizuchi 白蛇心傳: Mmmmm donuts arhhh......: pageId: 149572 steam: 1151750 -'Moai II: Path to Another World': +"Moai II: Path to Another World": pageId: 47243 steam: 361950 -'Moai III: Trade Mission': +"Moai III: Trade Mission": pageId: 44772 steam: 437060 -'Moai IV: Terra Incognita': +"Moai IV: Terra Incognita": pageId: 42657 steam: 475620 -'Moai V: New Generation': +"Moai V: New Generation": pageId: 91454 steam: 793940 -'Moai: Build Your Dream': +"Moai: Build Your Dream": pageId: 48585 steam: 338980 Mob Rule: @@ -105086,8 +102265,8 @@ Mob War: Mobil 1 Rally Championship: pageId: 22679 templates: - - '{{Game data/config|Windows|{{P|game}}\var\}}' - - '{{Game data/saves|Windows|{{P|game}}\savedata\savegame\}}' + - "{{Game data/config|Windows|{{P|game}}\\var\\}}" + - "{{Game data/saves|Windows|{{P|game}}\\savedata\\savegame\\}}" Mobile Astro: pageId: 54810 steam: 565110 @@ -105099,8 +102278,8 @@ Mobile Forces: pageId: 27285 steam: 837940 templates: - - '{{Game data/config|Windows|{{p|game}}\System\}}' - - '{{Game data/saves|Windows|{{p|game}}\System\Profile00.ini}}' + - "{{Game data/config|Windows|{{p|game}}\\System\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\System\\Profile00.ini}}" Mobile Light Force: pageId: 47205 steam: 379370 @@ -105119,7 +102298,7 @@ Mobius Final Fantasy: pageId: 53274 steam: 536930 templates: - - '{{Game data/config|Windows|{{p|Steam}}\userdata\{{p|uid}}\536930\remote\account.dat}}' + - "{{Game data/config|Windows|{{p|Steam}}\\userdata\\{{p|uid}}\\536930\\remote\\account.dat}}" Mobler: pageId: 136820 steam: 1033100 @@ -105139,7 +102318,7 @@ Model Builder: pageId: 151579 steam: 1164250 templates: - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Model Builder\Saves}}' + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Model Builder\\Saves}}" Model DE Fight: pageId: 99456 steam: 873370 @@ -105164,19 +102343,19 @@ Modern Combat Versus: Modern Road-Like: pageId: 96267 steam: 850930 -'Modern Tales: Age of Invention': +"Modern Tales: Age of Invention": pageId: 73507 steam: 678970 templates: - - '{{Game data/saves|Windows|*\Steam\userdata\[id]\678970\remote\profile}}' + - "{{Game data/saves|Windows|*\\Steam\\userdata\\[id]\\678970\\remote\\profile}}" Modest Kind: pageId: 73015 steam: 701740 Modi & Nanna: pageId: 120496 templates: - - '{{Game data/config|Windows|{{p|game}}\MaN.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\Data\Save\}}' + - "{{Game data/config|Windows|{{p|game}}\\MaN.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\Data\\Save\\}}" Modsork: pageId: 94267 steam: 588200 @@ -105193,8 +102372,8 @@ Moe Jigsaw: pageId: 89523 steam: 785840 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\Ares inc_\JigsawPuzzle}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Ares inc_\JigsawPuzzle}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Ares inc_\\JigsawPuzzle}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Ares inc_\\JigsawPuzzle}}" Moe Kanojo / 萌えるカノジョ: pageId: 153656 steam: 1104160 @@ -105210,15 +102389,15 @@ Moe Reversi: Moe! Ninja Girls: pageId: 124113 steam: 793150 -'Moebius: Empire Rising': +"Moebius: Empire Rising": gog: 1207662703 pageId: 34398 steam: 264520 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Phoenix Online Studios\Moebius}}' - - '{{Game data/config|Linux|{{P|linuxhome}}/.config/unity3d/Phoenix Online Studios/Moebius/}}' - - '{{Game data/saves|Steam|{{P|steam}}\userdata\{{P|uid}}\264520\remote\moebius\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Phoenix Online Studios\Moebius\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Phoenix Online Studios\\Moebius}}" + - "{{Game data/config|Linux|{{P|linuxhome}}/.config/unity3d/Phoenix Online Studios/Moebius/}}" + - "{{Game data/saves|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\264520\\remote\\moebius\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Phoenix Online Studios\\Moebius\\}}" Moeras: pageId: 155400 steam: 1135070 @@ -105227,10 +102406,10 @@ Moero Chronicle: pageId: 68733 steam: 638160 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Idea Factory\Moero Chronicle\}}' - - '{{Game data/config|Steam|{{p|steam}}\userdata\{{p|uid}}\638160\remote\MoeroChronicle.ini}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Idea Factory\Moero Chronicle\}}' - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\638160\remote\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Idea Factory\\Moero Chronicle\\}}" + - "{{Game data/config|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\638160\\remote\\MoeroChronicle.ini}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Idea Factory\\Moero Chronicle\\}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\638160\\remote\\}}" Mogh: pageId: 153031 steam: 1102940 @@ -105246,13 +102425,13 @@ Moi Mei: Moira: pageId: 39767 steam: 502250 -'Moira: Fated Twins': +"Moira: Fated Twins": pageId: 144041 steam: 1118970 Moirai: pageId: 37122 steam: 496920 -'Mojack - Quest of Jackal : Puzzle game': +"Mojack - Quest of Jackal : Puzzle game": pageId: 125430 steam: 983900 Mojo: @@ -105261,23 +102440,23 @@ Mojo: Mojo 2: pageId: 146084 steam: 948020 -'Mojo 2: Mia': +"Mojo 2: Mia": pageId: 120504 steam: 950530 Mojo XXX: pageId: 145982 steam: 975350 templates: - - '{{Game data/saves|Windows|{{p|steam}}\userdata\{{p|uid}}\975350}}' -'Mojo: Hanako': + - "{{Game data/saves|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\975350}}" +"Mojo: Hanako": pageId: 102679 steam: 892630 templates: - - '{{Game data/saves|Windows|{{p|steam}}\userdata\{{p|uid}}\892630}}' + - "{{Game data/saves|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\892630}}" MokMok: pageId: 67125 steam: 671480 -Moko's Advice: +"Moko's Advice": pageId: 153466 steam: 897120 Mokoko: @@ -105286,10 +102465,10 @@ Mokoko: Mola mola: pageId: 125020 steam: 984750 -'Mola mola: Megan': +"Mola mola: Megan": pageId: 138743 steam: 1084740 -'Mola mola: Vivienne': +"Mola mola: Vivienne": pageId: 128278 steam: 1014440 Mold on Pizza: @@ -105309,23 +102488,23 @@ Molek-Syntez: pageId: 151853 steam: 1168880 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\My Games\MOLEK-SYNTEZ\{{P|uid}}\config.cfg}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.local/share/MOLEK-SYNTEZ/{{P|uid}}/config.cfg}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\My Games\MOLEK-SYNTEZ\{{P|uid}}\}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.local/share/MOLEK-SYNTEZ/{{P|uid}}/}}' + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\My Games\\MOLEK-SYNTEZ\\{{P|uid}}\\config.cfg}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.local/share/MOLEK-SYNTEZ/{{P|uid}}/config.cfg}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\My Games\\MOLEK-SYNTEZ\\{{P|uid}}\\}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.local/share/MOLEK-SYNTEZ/{{P|uid}}/}}" Molemen Must Die!: pageId: 59077 steam: 602120 Molly - Can you survive 100 nights?: pageId: 134752 steam: 1014030 -'Molly: fear of clowns': +"Molly: fear of clowns": pageId: 150003 steam: 1177350 Molten Armor: pageId: 68484 steam: 693670 -'Momento Temporis: Light from the Deep': +"Momento Temporis: Light from the Deep": pageId: 42509 steam: 496310 Momentum: @@ -105337,49 +102516,45 @@ Momentum Mod: Mommy: pageId: 156471 steam: 1204220 -'Momo Mother Bird: Final Story': +"Momo Mother Bird: Final Story": pageId: 180273 steam: 2067000 Momodora I: pageId: 77746 templates: - - '{{Game data/config|Windows|{{p|game}}\momo.config.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\data\saves\}}' + - "{{Game data/config|Windows|{{p|game}}\\momo.config.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\data\\saves\\}}" Momodora II: pageId: 77744 templates: - - '{{Game data/config|Windows|{{p|game}}\momo.config.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\data\saves\}}' + - "{{Game data/config|Windows|{{p|game}}\\momo.config.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\data\\saves\\}}" Momodora III: pageId: 37682 steam: 302790 templates: - - '{{Game data/config|Windows|{{P|game}}\momo.config.ini}}' - - '{{Game data/saves|Windows|{{P|game}}\data\saves\}}' -'Momodora: Reverie under the Moonlight': + - "{{Game data/config|Windows|{{P|game}}\\momo.config.ini}}" + - "{{Game data/saves|Windows|{{P|game}}\\data\\saves\\}}" +"Momodora: Reverie under the Moonlight": gog: 1079762750 pageId: 34172 renamedFrom: - - 'Momodora: Reverie Under the Moonlight' + - "Momodora: Reverie Under the Moonlight" steam: 428550 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\MomodoraRUtM\config.ini}}' - - >- - {{Game data/config|Microsoft - Store|{{P|localappdata}}\Packages\53E4EFE6.Momodora_153j13zhvfy8w\LocalState\config.ini}} - - '{{Game data/config|Linux|{{P|xdgconfighome}}/MomodoraRUtM/config.ini}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\MomodoraRUtM\slot*.sav}}' - - >- - {{Game data/saves|Microsoft - Store|{{P|localappdata}}\Packages\53E4EFE6.Momodora_153j13zhvfy8w\LocalState\slot*.sav}} - - '{{Game data/saves|Linux|{{P|xdgconfighome}}/MomodoraRUtM/}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\MomodoraRUtM\\config.ini}}" + - "{{Game data/config|Microsoft Store|{{P|localappdata}}\\Packages\\53E4EFE6.Momodora_153j13zhvfy8w\\LocalState\\config.ini}}" + - "{{Game data/config|Linux|{{P|xdgconfighome}}/MomodoraRUtM/config.ini}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\MomodoraRUtM\\slot*.sav}}" + - "{{Game data/saves|Microsoft Store|{{P|localappdata}}\\Packages\\53E4EFE6.Momodora_153j13zhvfy8w\\LocalState\\slot*.sav}}" + - "{{Game data/saves|Linux|{{P|xdgconfighome}}/MomodoraRUtM/}}" Momoiro Closet: pageId: 90594 steam: 800180 Momonga Pinball Adventures: pageId: 39003 steam: 491560 -'Mompreneur: Pizza Cooking Life Sim': +"Mompreneur: Pizza Cooking Life Sim": pageId: 155821 steam: 1209200 MonGirlTile: @@ -105387,18 +102562,18 @@ MonGirlTile: steam: 964110 Monaco Grand Prix Racing Simulation 2: pageId: 26191 -'Monaco: What''s Yours Is Mine': +"Monaco: What's Yours Is Mine": pageId: 4574 steam: 113020 templates: - - '{{Game data/config|Windows|{{P|game}}\SAVEDATA\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Pocketwatch Games/Monaco/SAVEDATA/}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/Pocketwatch Games/Monaco/SAVEDATA/}}' - - '{{Game data/config|Steam|{{p|steam}}/userdata/{{P|uid}}/113020/remote/}}' - - '{{Game data/saves|Windows|{{P|game}}\SAVEDATA\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Pocketwatch Games/Monaco/SAVEDATA/}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/Pocketwatch Games/Monaco/SAVEDATA/}}' - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{P|uid}}/113020/remote/}}' + - "{{Game data/config|Windows|{{P|game}}\\SAVEDATA\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Pocketwatch Games/Monaco/SAVEDATA/}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/Pocketwatch Games/Monaco/SAVEDATA/}}" + - "{{Game data/config|Steam|{{p|steam}}/userdata/{{P|uid}}/113020/remote/}}" + - "{{Game data/saves|Windows|{{P|game}}\\SAVEDATA\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Pocketwatch Games/Monaco/SAVEDATA/}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/Pocketwatch Games/Monaco/SAVEDATA/}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{P|uid}}/113020/remote/}}" Monads: pageId: 113272 steam: 814870 @@ -105413,23 +102588,21 @@ Monark: - 1851861 - 1888710 templates: - - '{{Game data/config|Windows|{{P|userprofile}}\Saved Games\MONARK\SAVELOAD}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\Saved Games\MONARK\SAVELOAD}}' + - "{{Game data/config|Windows|{{P|userprofile}}\\Saved Games\\MONARK\\SAVELOAD}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\Saved Games\\MONARK\\SAVELOAD}}" Moncage: pageId: 157175 renamedFrom: - Moncage / 笼中窥梦 steam: 1195290 templates: - - >- - {{Game - data/config|Windows|{{p|userprofile\appdata\locallow}}\Optillusion\Moncage\MoncageConfig.es3|{{p|hkcu}}\Software\Optillusion\Moncage\}} - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\Optillusion\Moncage\Moncage*Data.es3}}' + - "{{Game data/config|Windows|{{p|userprofile\\appdata\\locallow}}\\Optillusion\\Moncage\\MoncageConfig.es3|{{p|hkcu}}\\Software\\Optillusion\\Moncage\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\Optillusion\\Moncage\\Moncage*Data.es3}}" Monday Night Combat: pageId: 11927 steam: 63200 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\UnrealEngine3\HostileGame\Config\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\UnrealEngine3\\HostileGame\\Config\\}}" Mondealy: gog: 1225756822 pageId: 174835 @@ -105437,7 +102610,7 @@ Mondealy: steamSide: - 1591570 - 1655530 -'Mondly: Learn Languages in VR': +"Mondly: Learn Languages in VR": pageId: 149511 steam: 1141930 Mondo Museum: @@ -105447,7 +102620,7 @@ Mondrian - Abstraction in Beauty: pageId: 46384 steam: 392780 templates: - - '{{Game data/config|Windows|{{P|game}}\mondriansettings}}' + - "{{Game data/config|Windows|{{P|game}}\\mondriansettings}}" Mondrian - Plastic Reality: pageId: 142139 steam: 1087050 @@ -105471,7 +102644,7 @@ Mongrel: Monica e a Guarda dos Coelhos: pageId: 123479 steam: 925900 -'Monitor: The Game': +"Monitor: The Game": pageId: 69856 steam: 672650 Monjarmageddon: @@ -105483,35 +102656,35 @@ Monkey Barrels: Monkey GO Happy: pageId: 156005 steam: 1192940 -'Monkey Island 2 Special Edition: LeChuck''s Revenge': +"Monkey Island 2 Special Edition: LeChuck's Revenge": gog: 1425039730 pageId: 20763 steam: 32460 templates: - - '{{Game data/config|Windows|{{p|appdata}}\LucasArts\Monkey Island 2 Special Edition\}}' - - '{{Game data/saves|Windows|{{p|game}}\monkey2.bin}}' - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\32460\}}' -'Monkey Island 2: LeChuck''s Revenge': + - "{{Game data/config|Windows|{{p|appdata}}\\LucasArts\\Monkey Island 2 Special Edition\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\monkey2.bin}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\32460\\}}" +"Monkey Island 2: LeChuck's Revenge": pageId: 17090 templates: - - '{{Game data/saves|DOS|{{p|game}}\SAVEGAME.***}}' + - "{{Game data/saves|DOS|{{p|game}}\\SAVEGAME.***}}" Monkey King Saga: pageId: 45463 steam: 417350 -'Monkey King: Hero Is Back': +"Monkey King: Hero Is Back": pageId: 145077 steam: 967240 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Nirvana\Saved\SaveGames\NirvanaConfig.sav}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\Nirvana\Saved\SaveGames\SaveGameSlotName.sav}}' -'Monkey King: Master of the Clouds': + - "{{Game data/config|Windows|{{P|localappdata}}\\Nirvana\\Saved\\SaveGames\\NirvanaConfig.sav}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Nirvana\\Saved\\SaveGames\\SaveGameSlotName.sav}}" +"Monkey King: Master of the Clouds": gog: 1770462332 pageId: 131864 steam: 816630 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\DefaultCompany\chuka\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\DefaultCompany\chuka}}' -'Monkey Land 3D: Reaper Rush': + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\DefaultCompany\\chuka\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\DefaultCompany\\chuka}}" +"Monkey Land 3D: Reaper Rush": pageId: 56932 steam: 569500 Monkey Rush: @@ -105523,10 +102696,10 @@ Monkey Slap: Monkey Tales: pageId: 49703 steam: 320020 -Monkey's Adventures: +"Monkey's Adventures": pageId: 140571 templates: - - '{{Game data/saves|Windows|{{p|game}}\*.sav}}' + - "{{Game data/saves|Windows|{{p|game}}\\*.sav}}" MonkeyKing VR: pageId: 56876 steam: 580540 @@ -105543,8 +102716,8 @@ Monmusu: pageId: 76571 steam: 533540 templates: - - '{{Game data/config|Windows|{{p|appdata}}\LocalLow\Tentacle Games\Monmusu/}}' - - '{{Game data/saves|Windows|{{p|appdata}}\LocalLow\Tentacle Games\Monmusu\{{p|uid}}/}}' + - "{{Game data/config|Windows|{{p|appdata}}\\LocalLow\\Tentacle Games\\Monmusu/}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\LocalLow\\Tentacle Games\\Monmusu\\{{p|uid}}/}}" Monmusu * Fight!: pageId: 92805 steam: 804610 @@ -105560,10 +102733,10 @@ Monoa City Parking: Monobeno: pageId: 78707 steam: 758090 -'Monobeno: Happy End': +"Monobeno: Happy End": pageId: 165011 steam: 782090 -'Monobeno: Happy End Deluxe': +"Monobeno: Happy End Deluxe": pageId: 92293 renamedFrom: - Happy End @@ -105572,11 +102745,11 @@ Monochroma: pageId: 50188 steam: 265830 templates: - - '{{Game data/saves|Windows|{{P|hkcu}}/Software/Nowhere Studios/Monochroma}}' + - "{{Game data/saves|Windows|{{P|hkcu}}/Software/Nowhere Studios/Monochroma}}" Monochromaniacs: pageId: 150568 steam: 826300 -'Monochrome Mobius: Rights and Wrongs Forgotten': +"Monochrome Mobius: Rights and Wrongs Forgotten": pageId: 177504 steam: 1962430 Monochrome Order: @@ -105591,14 +102764,12 @@ Monomyth: pageId: 122890 steam: 908360 templates: - - >- - {{Game - data/config|Windows|{{p|LocalAppData}}\Monomyth\Saved\Config\WindowsNoEditor\GameUserSettings.ini||{{P|game}}\ProjectAriath\Saved\Config\WindowsNoEditor\GameUserSettings.ini}} - - '{{Game data/saves|Windows|{{p|LocalAppData}}\Monomyth\Saved\SaveGames|{{P|game}}\ProjectAriath\Saved\SaveGames}}' + - "{{Game data/config|Windows|{{p|LocalAppData}}\\Monomyth\\Saved\\Config\\WindowsNoEditor\\GameUserSettings.ini||{{P|game}}\\ProjectAriath\\Saved\\Config\\WindowsNoEditor\\GameUserSettings.ini}}" + - "{{Game data/saves|Windows|{{p|LocalAppData}}\\Monomyth\\Saved\\SaveGames|{{P|game}}\\ProjectAriath\\Saved\\SaveGames}}" Monophobia: pageId: 150816 steam: 1169030 -'Monopolist: Technological Revolution': +"Monopolist: Technological Revolution": pageId: 102821 steam: 893590 Monopolka: @@ -105607,16 +102778,16 @@ Monopolka: Monopoly (1995): pageId: 24347 templates: - - '{{Game data/config|Windows|{{p|game}}\MONOPOLY.INI}}' - - '{{Game data/saves|Windows|{{p|game}}\*.MNO}}' + - "{{Game data/config|Windows|{{p|game}}\\MONOPOLY.INI}}" + - "{{Game data/saves|Windows|{{p|game}}\\*.MNO}}" Monopoly (2012): pageId: 40679 steam: 221300 Monopoly Deluxe: pageId: 136210 templates: - - '{{Game data/config|Windows|N/A}}' - - '{{Game data/saves|Windows|{{p|game}}}}' + - "{{Game data/config|Windows|N/A}}" + - "{{Game data/saves|Windows|{{p|game}}}}" Monopoly Junior: pageId: 158730 Monopoly Madness: @@ -105625,20 +102796,20 @@ Monopoly Plus: pageId: 70289 steam: 562810 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Monopoly Plus\|{{p|game}}\setup.cfg}}' - - '{{Game data/saves|Windows|{{p|uplay}}\savegames\{{p|uid}}\3774\}}' - - '{{Game data/saves|Steam|{{p|uplay}}\savegames\{{p|uid}}\3775\}}' + - "{{Game data/config|Windows|{{p|appdata}}\\Monopoly Plus\\|{{p|game}}\\setup.cfg}}" + - "{{Game data/saves|Windows|{{p|uplay}}\\savegames\\{{p|uid}}\\3774\\}}" + - "{{Game data/saves|Steam|{{p|uplay}}\\savegames\\{{p|uid}}\\3775\\}}" Monopoly Tycoon: pageId: 16337 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/saves|Windows|{{p|game}}\profiles}}' -'Monopoly: SpongeBob SquarePants Edition': + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\profiles}}" +"Monopoly: SpongeBob SquarePants Edition": pageId: 189870 Monovert DX: pageId: 130070 steam: 1033130 -'Monowars: Red Zone': +"Monowars: Red Zone": pageId: 104499 steam: 905890 Monster Adventurer: @@ -105649,8 +102820,8 @@ Monster Bash: pageId: 30464 steam: 358210 templates: - - '{{Game data/config|DOS|{{p|game}}\CONFIG.MB1}}' - - '{{Game data/saves|DOS|{{p|game}}\SAVE*.MB1|{{p|game}}\SCORE.MB1}}' + - "{{Game data/config|DOS|{{p|game}}\\CONFIG.MB1}}" + - "{{Game data/saves|DOS|{{p|game}}\\SAVE*.MB1|{{p|game}}\\SCORE.MB1}}" Monster Bash HD: gog: 1272652876 pageId: 172726 @@ -105663,8 +102834,8 @@ Monster Boy and the Cursed Kingdom: pageId: 91683 steam: 449610 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Monsterboy\sys.dat}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\Monsterboy\monsterboy*.dat}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\Monsterboy\\sys.dat}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Monsterboy\\monsterboy*.dat}}" Monster Capture King: pageId: 156069 steam: 1206660 @@ -105677,15 +102848,15 @@ Monster Catch: Monster Challenge Circus: pageId: 50266 steam: 300910 -'Monster Clicker : Idle Halloween Strategy': +"Monster Clicker : Idle Halloween Strategy": pageId: 122002 steam: 948510 Monster Crown: pageId: 91280 steam: 830370 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\SOFTWARE\Studio Aurum\Monster Crown}}' - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\Studio Aurum\Monster Crown\Resources\Saves}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\SOFTWARE\\Studio Aurum\\Monster Crown}}" + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\Studio Aurum\\Monster Crown\\Resources\\Saves}}" Monster Crush - C4 Demolition Edition: pageId: 134435 steam: 1044070 @@ -105693,21 +102864,19 @@ Monster Energy Supercross: pageId: 74319 steam: 711750 templates: - - '{{Game data/config|Windows|{{p|appdata}}\supercross\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{p|appdata}}\supercross\Saved\}}' + - "{{Game data/config|Windows|{{p|appdata}}\\supercross\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\supercross\\Saved\\}}" Monster Energy Supercross 2: pageId: 120490 steam: 882020 templates: - - >- - {{Game - data/config|Windows|{{p|userprofile\documents}}\supercross2\Saved\Config\WindowsNoEditor\GameUserSettings.ini}} + - "{{Game data/config|Windows|{{p|userprofile\\documents}}\\supercross2\\Saved\\Config\\WindowsNoEditor\\GameUserSettings.ini}}" Monster Energy Supercross 3: pageId: 148202 steam: 1089830 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\supercross3\Saved\Config\WindowsNoEditor}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\supercross3\Saved\SaveGames}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\supercross3\\Saved\\Config\\WindowsNoEditor}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\supercross3\\Saved\\SaveGames}}" Monster Energy Supercross 4: pageId: 166160 steam: 1304340 @@ -105726,7 +102895,7 @@ Monster Girl Club Bifrost: Monster Girl Fantasy: pageId: 132644 steam: 1048000 -'Monster Girl Fantasy 2: Exposed': +"Monster Girl Fantasy 2: Exposed": pageId: 142277 steam: 1108680 Monster Girl Garden: @@ -105735,22 +102904,20 @@ Monster Girl Garden: Monster Girl Incursion: pageId: 179058 steam: 1434650 -'Monster Girl Island: Prologue': +"Monster Girl Island: Prologue": pageId: 143365 steam: 943700 templates: - - >- - {{Game data/config|Windows|{{P|userprofile}}\AppData\LocalLow\by redamz\Monster Girl - IslandsettingsPr.dat|{{P|hkcu}}\Software\by redamz\Monster Girl Island\}} - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\by redamz\}}' + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\by redamz\\Monster Girl IslandsettingsPr.dat|{{P|hkcu}}\\Software\\by redamz\\Monster Girl Island\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\by redamz\\}}" Monster Hentai: pageId: 124163 steam: 992820 -'Monster High: New Ghoul in School': +"Monster High: New Ghoul in School": pageId: 45196 steam: 396400 templates: - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Monster High NGIS}}' + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Monster High NGIS}}" Monster Hunter Frontier Online: pageId: 100880 Monster Hunter Online: @@ -105759,25 +102926,25 @@ Monster Hunter Rise: pageId: 166929 steam: 1446780 steamSide: - - 1748411 - 1641480 + - 1748411 templates: - - '{{Game data/config|Windows|{{p|game}}\config.ini}}' - - '{{Game data/saves|Windows|{{p|steam}}\userdata\{{p|uid}}\1446780\remote\}}' -'Monster Hunter Stories 2: Wings of Ruin': + - "{{Game data/config|Windows|{{p|game}}\\config.ini}}" + - "{{Game data/saves|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\1446780\\remote\\}}" +"Monster Hunter Stories 2: Wings of Ruin": pageId: 167106 steam: 1277400 templates: - - '{{Game data/config|Windows|{{p|game}}\config.ini}}' - - '{{Game data/saves|Windows|{{p|steam}}\userdata\{{p|uid}}\1277400\remote\}}' -'Monster Hunter: Frontier G': + - "{{Game data/config|Windows|{{p|game}}\\config.ini}}" + - "{{Game data/saves|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\1277400\\remote\\}}" +"Monster Hunter: Frontier G": pageId: 100886 -'Monster Hunter: World': +"Monster Hunter: World": pageId: 100868 steam: 582010 templates: - - '{{Game data/config|Windows|{{p|game}}\graphics_option.ini}}' - - '{{Game data/saves|Windows|{{p|steam}}\userdata\{{p|uid}}\582010\remote\}}' + - "{{Game data/config|Windows|{{p|game}}\\graphics_option.ini}}" + - "{{Game data/saves|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\582010\\remote\\}}" Monster Hunting... For Love!: pageId: 129859 steam: 1029380 @@ -105785,8 +102952,8 @@ Monster Jam: pageId: 129009 steam: 7990 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Activision Value\Monster Jam}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Monster Jam}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Activision Value\\Monster Jam}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Monster Jam}}" Monster Jam Battlegrounds: pageId: 47567 steam: 336250 @@ -105795,16 +102962,16 @@ Monster Jam Steel Titans: pageId: 130632 steam: 824280 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\MJST\Saved\Config\WindowsNoEditor}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\MJST\Saved\SaveGames}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\MJST\\Saved\\Config\\WindowsNoEditor}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\MJST\\Saved\\SaveGames}}" Monster Jam Steel Titans 2: gog: 1671189852 pageId: 167016 steam: 1205480 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\MJST2\Saved\Config\WindowsNoEditor}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\MJST2\Saved\SaveGames}}' -'Monster Jam: Maximum Destruction': + - "{{Game data/config|Windows|{{P|localappdata}}\\MJST2\\Saved\\Config\\WindowsNoEditor}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\MJST2\\Saved\\SaveGames}}" +"Monster Jam: Maximum Destruction": pageId: 160750 Monster Jaunt: pageId: 132927 @@ -105816,13 +102983,13 @@ Monster Logic: pageId: 130751 steam: 917900 templates: - - '{{Game data/saves|Windows|{{P|game}}\mnlog.sav}}' + - "{{Game data/saves|Windows|{{P|game}}\\mnlog.sav}}" Monster Loves You!: pageId: 9657 steam: 226740 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Radial Games Corp.\Monster Loves You!\}}' - - '{{Game data/saves|Windows|{{p|hkcu}}\Software\Radial Games Corp.\Monster Loves You!\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Radial Games Corp.\\Monster Loves You!\\}}" + - "{{Game data/saves|Windows|{{p|hkcu}}\\Software\\Radial Games Corp.\\Monster Loves You!\\}}" Monster MIX: pageId: 110234 steam: 923730 @@ -105842,20 +103009,20 @@ Monster Monpiece: pageId: 58372 steam: 415300 templates: - - '{{Game data/config|Steam|{{p|steam}}\userdata\{{p|uid}}\415300\remote\MonsterMonpiece.ini}}' - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\415300\remote\}}' + - "{{Game data/config|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\415300\\remote\\MonsterMonpiece.ini}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\415300\\remote\\}}" Monster Prom: gog: 1507139900 pageId: 87519 steam: 743450 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Beautiful Glitch\Monster Prom\}}' - - '{{Game data/saves|Windows|{{P|game}}\UserData\}}' -'Monster Prom 2: Monster Camp': + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Beautiful Glitch\\Monster Prom\\}}" + - "{{Game data/saves|Windows|{{P|game}}\\UserData\\}}" +"Monster Prom 2: Monster Camp": gog: 1607286183 pageId: 144423 steam: 1140270 -'Monster Prom 3: Monster Roadtrip': +"Monster Prom 3: Monster Roadtrip": gog: 1553602216 pageId: 182514 steam: 1665190 @@ -105887,26 +103054,24 @@ Monster Sanctuary: pageId: 88257 steam: 814370 templates: - - '{{Game data/config|Linux|{{p|linuxhome}}/.local/share/Monster Sanctuary/}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\My Games\Monster Sanctuary\}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.local/share/Monster Sanctuary/}}' + - "{{Game data/config|Linux|{{p|linuxhome}}/.local/share/Monster Sanctuary/}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\My Games\\Monster Sanctuary\\}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.local/share/Monster Sanctuary/}}" Monster Slayers: pageId: 38981 steam: 496620 templates: - - '{{Game data/config|Windows|{{p|LOCALAPPDATA}}\Monster_Slayers_DB\game_settings.ini}}' - - '{{Game data/config|OS X|/Users//Library/Application Support/com.yoyogames.macyoyorunner/settings.ini}}' - - '{{Game data/saves|Windows|{{p|LOCALAPPDATA}}\Monster_Slayers_DB\}}' - - '{{Game data/saves|OS X|/Users//Library/Application Support/com.yoyogames.macyoyorunner}}' + - "{{Game data/config|Windows|{{p|LOCALAPPDATA}}\\Monster_Slayers_DB\\game_settings.ini}}" + - "{{Game data/config|OS X|/Users//Library/Application Support/com.yoyogames.macyoyorunner/settings.ini}}" + - "{{Game data/saves|Windows|{{p|LOCALAPPDATA}}\\Monster_Slayers_DB\\}}" + - "{{Game data/saves|OS X|/Users//Library/Application Support/com.yoyogames.macyoyorunner}}" Monster Train: gog: 1304291300 pageId: 160675 steam: 1102190 templates: - - >- - {{Game data/config|Windows|{{P|userprofile}}\AppData\LocalLow\Shiny - Shoe\MonsterTrain\preferences-local.json|{{P|hkcu}}\SOFTWARE\Shiny Shoe\MonsterTrain\}} - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Shiny Shoe\MonsterTrain\saves\}}' + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Shiny Shoe\\MonsterTrain\\preferences-local.json|{{P|hkcu}}\\SOFTWARE\\Shiny Shoe\\MonsterTrain\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Shiny Shoe\\MonsterTrain\\saves\\}}" Monster Trampoline: pageId: 125717 steam: 939560 @@ -105925,17 +103090,17 @@ Monster Truck Drive: Monster Truck Fury: pageId: 66325 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Iridon\Monster Truck Fury\|{{P|game}}\*.gi}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Iridon\\Monster Truck Fury\\|{{P|game}}\\*.gi}}" Monster Truck Madness: pageId: 13874 templates: - - '{{Game data/config|Windows|{{p|game}}\System}}' - - '{{Game data/saves|Windows|{{p|game}}\tourney}}' + - "{{Game data/config|Windows|{{p|game}}\\System}}" + - "{{Game data/saves|Windows|{{p|game}}\\tourney}}" Monster Truck Madness 2: pageId: 13992 templates: - - '{{Game data/config|Windows|{{p|game}}\System}}' - - '{{Game data/saves|Windows|{{p|game}}\}}' + - "{{Game data/config|Windows|{{p|game}}\\System}}" + - "{{Game data/saves|Windows|{{p|game}}\\}}" Monster Trucks Nitro: pageId: 41320 steam: 16620 @@ -105970,7 +103135,7 @@ Monsteria: pageId: 67518 steam: 689300 templates: - - '{{Game data/saves|Windows|{{P|appdata}}\.Monsteria}}' + - "{{Game data/saves|Windows|{{P|appdata}}\\.Monsteria}}" Monsterland: pageId: 45300 steam: 406920 @@ -106015,35 +103180,33 @@ Monsters sandbox: Monsters vs. Aliens: pageId: 88425 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Activision\Monsters vs. Aliens (TM)\Settings\Display}}' - - >- - {{Game data/saves|Windows|{{p|userprofile\Documents}}\Activision\Activision\Monsters vs. Aliens - (TM)\Save\MVA_Save.fpop}} + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Activision\\Monsters vs. Aliens (TM)\\Settings\\Display}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Activision\\Activision\\Monsters vs. Aliens (TM)\\Save\\MVA_Save.fpop}}" Monsters!: pageId: 46600 steam: 336160 -Monsters' Den Chronicles: +"Monsters' Den Chronicles": pageId: 144285 steam: 1121720 -'Monsters'' Den: Book of Dread': +"Monsters' Den: Book of Dread": pageId: 42243 steam: 502230 -'Monsters'' Den: Godfall': +"Monsters' Den: Godfall": pageId: 61205 steam: 469720 -'Monsters, Inc. Scream Team (Scare Island)': +"Monsters, Inc. Scream Team (Scare Island)": pageId: 165710 renamedFrom: - - 'Monsters, Inc. Scream Team' + - "Monsters, Inc. Scream Team" templates: - - '{{Game data/config|Windows|{{p|game}}\BIN\config.pc}}' - - '{{Game data/saves|Windows|{{p|game}}\BIN\Savegame#.dat}}' -'Monsters: Survival': + - "{{Game data/config|Windows|{{p|game}}\\BIN\\config.pc}}" + - "{{Game data/saves|Windows|{{p|game}}\\BIN\\Savegame#.dat}}" +"Monsters: Survival": pageId: 128627 renamedFrom: - - 'MONSTERS:SURVIVAL' + - "MONSTERS:SURVIVAL" steam: 1025870 -'MonsterxMan: Inheritence To Lust': +"MonsterxMan: Inheritence To Lust": pageId: 92067 steam: 836440 Monsti: @@ -106052,7 +103215,7 @@ Monsti: Monstress Academy: pageId: 81639 steam: 788780 -'Monstro: Battle Tactics': +"Monstro: Battle Tactics": pageId: 45413 steam: 369310 Monstrous: @@ -106067,8 +103230,8 @@ Monstrum: steamSide: - 385870 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Team Junkfish\Monstrum\}}' - - '{{Game data/saves|Windows|{{p|hkcu}}\Software\Team Junkfish\Monstrum\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Team Junkfish\\Monstrum\\}}" + - "{{Game data/saves|Windows|{{p|hkcu}}\\Software\\Team Junkfish\\Monstrum\\}}" Monstrum 2: pageId: 139711 steam: 1093170 @@ -106078,29 +103241,29 @@ Monstrüous: MontaSayer: pageId: 57192 steam: 586400 -Montague's Mount: +"Montague's Mount": gog: 1207659853 pageId: 12680 steam: 258950 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\PolyPusherStudios\MontaguesMount\}}' - - '{{Game data/config|Linux|{{P|linuxhome}}/.config/unity3d/PolyPusherStudios/MontaguesMount/}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\PolyPusherStudios\MontaguesMount\}}' - - '{{Game data/saves|Linux|{{P|linuxhome}}/.config/unity3d/PolyPusherStudios/MontaguesMount/}}' - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/258950/}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\PolyPusherStudios\\MontaguesMount\\}}" + - "{{Game data/config|Linux|{{P|linuxhome}}/.config/unity3d/PolyPusherStudios/MontaguesMount/}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\PolyPusherStudios\\MontaguesMount\\}}" + - "{{Game data/saves|Linux|{{P|linuxhome}}/.config/unity3d/PolyPusherStudios/MontaguesMount/}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/258950/}}" Montaro: pageId: 35765 steam: 495890 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Montaro\User Data\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Montaro\User Data\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Montaro\\User Data\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Montaro\\User Data\\}}" Montaro RE: pageId: 121932 steam: 971680 Montas: pageId: 50536 steam: 269350 -'MonteCrypto: The Bitcoin Enigma': +"MonteCrypto: The Bitcoin Enigma": pageId: 81643 steam: 768750 MonteCube Dodge: @@ -106110,25 +103273,25 @@ Montero: pageId: 93865 steam: 795910 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Montaro\User Data\Default\Local Storage}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Montaro\User Data\Default\Local Storage}}' -Montezuma's Return!: + - "{{Game data/config|Windows|{{p|localappdata}}\\Montaro\\User Data\\Default\\Local Storage}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Montaro\\User Data\\Default\\Local Storage}}" +"Montezuma's Return!": pageId: 106748 templates: - - '{{Game data/config|Windows|{{p|game}}\Monte.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\player.lst|{{p|game}}\{{p|uid}}.plr}}' -Montezuma's Revenge: + - "{{Game data/config|Windows|{{p|game}}\\Monte.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\player.lst|{{p|game}}\\{{p|uid}}.plr}}" +"Montezuma's Revenge": pageId: 106792 steam: 1421120 Monty Python & the Quest for the Holy Grail: pageId: 90771 templates: - - '{{Game data/saves|Windows|{{p|windir}}\7THLEVEL.INI}}' -Monty Python's Complete Waste of Time: + - "{{Game data/saves|Windows|{{p|windir}}\\7THLEVEL.INI}}" +"Monty Python's Complete Waste of Time": pageId: 90790 templates: - - '{{Game data/saves|Windows|{{p|windir}}\7THLEVEL.INI|{{p|windir}}\7THLEVEL.***}}' -Monty Python's The Meaning of Life: + - "{{Game data/saves|Windows|{{p|windir}}\\7THLEVEL.INI|{{p|windir}}\\7THLEVEL.***}}" +"Monty Python's The Meaning of Life": pageId: 90741 Monument: pageId: 47605 @@ -106136,19 +103299,17 @@ Monument: Monument Builders - Alcatraz: pageId: 49442 steam: 326130 -'Monument Valley 2: Panoramic Edition': +"Monument Valley 2: Panoramic Edition": pageId: 179261 steam: 1927740 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\ustwo games\Monument Valley 2}}' - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\ustwo games\Monument Valley 2\UserData_{{p|uid}}\}}' -'Monument Valley: Panoramic Edition': + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\ustwo games\\Monument Valley 2}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\ustwo games\\Monument Valley 2\\UserData_{{p|uid}}\\}}" +"Monument Valley: Panoramic Edition": pageId: 179258 steam: 1927720 templates: - - >- - {{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\ustwo games\Monument - Valley\UserData_{{P|uid}}\user_data.sav}} + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\ustwo games\\Monument Valley\\UserData_{{P|uid}}\\user_data.sav}}" Monumental: pageId: 44862 steam: 432610 @@ -106159,8 +103320,8 @@ Monuments of Mars: pageId: 30450 steam: 358240 templates: - - '{{Game data/config|DOS|{{p|game}}\MARS*.KBD}}' - - '{{Game data/saves|DOS|{{p|game}}\MARS1.SV*|{{p|game}}\MARS1.HS}}' + - "{{Game data/config|DOS|{{p|game}}\\MARS*.KBD}}" + - "{{Game data/saves|DOS|{{p|game}}\\MARS1.SV*|{{p|game}}\\MARS1.HS}}" Moo Lander: pageId: 137090 steam: 1080040 @@ -106193,10 +103354,10 @@ Moon Hunters: pageId: 32635 steam: 320040 templates: - - '{{Game data/config|Windows|{{p|appdata}}\MoonHunters\SaveData\}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Kitfox/Moon Hunters/}}' - - '{{Game data/saves|Windows|{{p|appdata}}\MoonHunters\SaveData\}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.local/share/MoonHunters/SaveData/}}' + - "{{Game data/config|Windows|{{p|appdata}}\\MoonHunters\\SaveData\\}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Kitfox/Moon Hunters/}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\MoonHunters\\SaveData\\}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.local/share/MoonHunters/SaveData/}}" Moon Landing VR: pageId: 95017 steam: 651080 @@ -106210,17 +103371,17 @@ Moon Tycoon: pageId: 91368 steam: 982800 templates: - - '{{Game data/config|Windows|{{p|game}}}}' - - '{{Game data/saves|Windows|{{p|game}}}}' + - "{{Game data/config|Windows|{{p|game}}}}" + - "{{Game data/saves|Windows|{{p|game}}}}" Moon Village: pageId: 139622 steam: 1096270 -'Moon: Remix RPG Adventure': +"Moon: Remix RPG Adventure": pageId: 173030 steam: 1714580 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\SOFTWARE\oniongames\moon\}}' - - '{{Game data/saves|Windows|{{p|appdata}}\LocalLow\oniongames\moon\Database\GameData+SaveData.json}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\oniongames\\moon\\}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\LocalLow\\oniongames\\moon\\Database\\GameData+SaveData.json}}" MoonDigger: pageId: 81458 steam: 644090 @@ -106240,13 +103401,13 @@ Moonbase Alpha: pageId: 10665 steam: 39000 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Moonbase Alpha\MoonBaseAlphaGame\Config\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Moonbase Alpha\\MoonBaseAlphaGame\\Config\\}}" Moonbase Commander: gog: 1207659114 pageId: 8339 steam: 254880 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' + - "{{Game data/config|Windows|{{p|game}}\\}}" Moonbase Down: pageId: 95583 steam: 870590 @@ -106292,17 +103453,13 @@ Moonlighter: - 1121580 - 1159580 templates: - - >- - {{Game - data/config|Windows|{{p|userprofile}}\AppData\LocalLow\11BitStudios\Moonlighter\|{{p|hkcu}}\11BitStudios\Moonlighter\}} - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/11BitStudios/Moonlighter/}}' - - '{{Game data/config|Steam|{{p|steam}}/userdata/{{p|uid}}/606150/remote}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\11BitStudios\Moonlighter\}}' - - >- - {{Game data/saves|Microsoft - Store|{{P|localappdata}}\Packages\11bitstudios.20925BA3921E0_gwy9gn5q9j1y6\SystemAppData\wgs\}} - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/11BitStudios/Moonlighter/}}' - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/606150/remote}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\11BitStudios\\Moonlighter\\|{{p|hkcu}}\\11BitStudios\\Moonlighter\\}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/11BitStudios/Moonlighter/}}" + - "{{Game data/config|Steam|{{p|steam}}/userdata/{{p|uid}}/606150/remote}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\11BitStudios\\Moonlighter\\}}" + - "{{Game data/saves|Microsoft Store|{{P|localappdata}}\\Packages\\11bitstudios.20925BA3921E0_gwy9gn5q9j1y6\\SystemAppData\\wgs\\}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/11BitStudios/Moonlighter/}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/606150/remote}}" Moonlit Mayhem: pageId: 51342 steam: 525660 @@ -106310,14 +103467,14 @@ Moonrise Fall: pageId: 130591 steam: 1035110 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Moonrise_Fall_1v02}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Moonrise_Fall_1v02}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Moonrise_Fall_1v02}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Moonrise_Fall_1v02}}" Moons of Madness: pageId: 139534 steam: 1012840 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\MoonsOfMadness\Saved\Config\WindowsNoEditor}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\MoonsOfMadness\Saved\SaveGames}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\MoonsOfMadness\\Saved\\Config\\WindowsNoEditor}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\MoonsOfMadness\\Saved\\SaveGames}}" Moons of Ventocia: pageId: 149637 steam: 936590 @@ -106326,13 +103483,9 @@ Moonscars: pageId: 187352 steam: 1374970 templates: - - >- - {{Game data/config|Windows|{{P|userprofile}}\AppData\LocalLow\Black - Mermaid\Moonscars\CustomInputs.json|{{P|userprofile}}\AppData\LocalLow\Black Mermaid\Moonscars\GameOptions.json}} - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Black Mermaid\Moonscars\Slot*_Rel.json}}' - - >- - {{Game data/saves|Microsoft - Store|{{P|localappdata}}\Packages\HumbleBundle.Moonscars_q2mcdwmzx4qja\SystemAppData\wgs}} + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Black Mermaid\\Moonscars\\CustomInputs.json|{{P|userprofile}}\\AppData\\LocalLow\\Black Mermaid\\Moonscars\\GameOptions.json}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Black Mermaid\\Moonscars\\Slot*_Rel.json}}" + - "{{Game data/saves|Microsoft Store|{{P|localappdata}}\\Packages\\HumbleBundle.Moonscars_q2mcdwmzx4qja\\SystemAppData\\wgs}}" Moonshiners Simulator: pageId: 139568 steam: 1057600 @@ -106345,7 +103498,7 @@ Moonshot: Moonshot Galaxy: pageId: 36828 steam: 471160 -'Moonshot: A Journey Home': +"Moonshot: A Journey Home": pageId: 177222 Moonstone Crossroads: pageId: 130406 @@ -106354,17 +103507,17 @@ Moonstone Island: pageId: 189464 steam: 1658150 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\Saved Games\Moonstone Island}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\Saved Games\Moonstone Island}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/Moonstone Island}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\Saved Games\\Moonstone Island}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Saved Games\\Moonstone Island}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/Moonstone Island}}" Moonstone Tavern - A Fantasy Tavern Sim!: pageId: 43053 steam: 461780 -'Moonstone: A Hard Days Knight': +"Moonstone: A Hard Days Knight": gog: 1854348302 pageId: 73089 templates: - - '{{Game data/config|DOS|{{p|game}}\MOON.CFG}}' + - "{{Game data/config|DOS|{{p|game}}\\MOON.CFG}}" Moonstrider: pageId: 46226 steam: 398250 @@ -106376,12 +103529,12 @@ Moor: Moorhuhn schlägt zurück: pageId: 54333 steam: 535680 -'Moorhuhn: Tiger and Chicken': +"Moorhuhn: Tiger and Chicken": pageId: 56214 steam: 321940 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Tiger & Chicken\settings.ini}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Tiger & Chicken\save\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Tiger & Chicken\\settings.ini}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Tiger & Chicken\\save\\}}" Moose Antipoo Adventure: pageId: 149488 renamedFrom: @@ -106394,8 +103547,8 @@ Moose Life: pageId: 162627 steam: 1342740 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\MinotaurArcade_Savedata\MooseLife_UserPrefs.dat}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\MinotaurArcade_Savedata\MooseLife_SaveData.dat}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\MinotaurArcade_Savedata\\MooseLife_UserPrefs.dat}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\MinotaurArcade_Savedata\\MooseLife_SaveData.dat}}" Moot District: pageId: 127325 steam: 992040 @@ -106405,36 +103558,34 @@ Mop Boy: Moral King: pageId: 137226 steam: 875830 -'Morbid: The Seven Acolytes': +"Morbid: The Seven Acolytes": pageId: 187354 steam: 1140890 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Morbid\savegame\settings.msav}}' - - >- - {{Game - data/saves|Windows|{{p|localappdata}}\Morbid\savegame\profile*.msav|{{p|localappdata}}\Morbid\backup\|{{p|localappdata}}\Morbid\Screenshots\}} -'Morbolbo: Enter the Maze': + - "{{Game data/config|Windows|{{p|localappdata}}\\Morbid\\savegame\\settings.msav}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Morbid\\savegame\\profile*.msav|{{p|localappdata}}\\Morbid\\backup\\|{{p|localappdata}}\\Morbid\\Screenshots\\}}" +"Morbolbo: Enter the Maze": pageId: 156586 steam: 1138310 Mordhau: pageId: 72140 steam: 629760 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Mordhau\Saved\Config\WindowsClient}}' -'Mordheim: City of the Damned': + - "{{Game data/config|Windows|{{p|localappdata}}\\Mordhau\\Saved\\Config\\WindowsClient}}" +"Mordheim: City of the Damned": gog: 1848744423 pageId: 17756 steam: 276810 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\My Games\Mordheim\options.sg}}' - - '{{Game data/config|GOG.com|{{P|userprofile\Documents}}\My Games\Mordheim\options.sg}}' - - '{{Game data/saves|Windows|{{p|game}}\remote\}}' - - '{{Game data/saves|GOG.com|{{P|userprofile\Documents}}\My Games\Mordheim\}}' -'Mordor: The Depths of Dejenol': + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\My Games\\Mordheim\\options.sg}}" + - "{{Game data/config|GOG.com|{{P|userprofile\\Documents}}\\My Games\\Mordheim\\options.sg}}" + - "{{Game data/saves|Windows|{{p|game}}\\remote\\}}" + - "{{Game data/saves|GOG.com|{{P|userprofile\\Documents}}\\My Games\\Mordheim\\}}" +"Mordor: The Depths of Dejenol": pageId: 186590 templates: - - '{{Game data/config|Windows|{{p|game}}}}' - - '{{Game data/saves|Windows|{{p|game}}\Backup}}' + - "{{Game data/config|Windows|{{p|game}}}}" + - "{{Game data/saves|Windows|{{p|game}}\\Backup}}" More Sweater? OK!: pageId: 77863 steam: 746050 @@ -106450,10 +103601,10 @@ More dark: Moreau: pageId: 122430 steam: 965910 -'Morels: The Hunt': +"Morels: The Hunt": pageId: 148923 steam: 1156590 -'Morendar: Goblin Slayer': +"Morendar: Goblin Slayer": pageId: 65692 steam: 679460 Morgan lives in a Rocket House in VR: @@ -106462,7 +103613,7 @@ Morgan lives in a Rocket House in VR: Mori and the Whisper: pageId: 137110 steam: 772940 -'Moriarty: Endgame VR': +"Moriarty: Endgame VR": pageId: 60239 steam: 611050 Moribund: @@ -106472,29 +103623,29 @@ Morkredd: pageId: 165666 steam: 1331910 templates: - - '{{Game data/config|Microsoft Store|{{P|userprofile\appdata\locallow}}\Aspyr Media Inc_\Morkredd\SettingsSaves\}}' - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Aspyr\Morkredd\SaveData\}}' - - '{{Game data/saves|Microsoft Store|{{p|localappdata}}\Packages\Aspyr.Morkredd_76qfnh0a0z6g6\SystemAppData\wgs}}' + - "{{Game data/config|Microsoft Store|{{P|userprofile\\appdata\\locallow}}\\Aspyr Media Inc_\\Morkredd\\SettingsSaves\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Aspyr\\Morkredd\\SaveData\\}}" + - "{{Game data/saves|Microsoft Store|{{p|localappdata}}\\Packages\\Aspyr.Morkredd_76qfnh0a0z6g6\\SystemAppData\\wgs}}" Morning Never Comes: pageId: 91017 steam: 829260 Morning Star: pageId: 97297 steam: 878690 -Morning's Wrath: +"Morning's Wrath": pageId: 31643 templates: - - '{{Game data/config|Windows|{{p|game}}\Morning''s Wrath.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\saved\}}' -'Morningdew Farms: A Gay Farming Game': + - "{{Game data/config|Windows|{{p|game}}\\Morning's Wrath.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\saved\\}}" +"Morningdew Farms: A Gay Farming Game": pageId: 149694 steam: 1069390 -'Morningstar: Descent to Deadrock': +"Morningstar: Descent to Deadrock": pageId: 37487 steam: 339130 templates: - - '{{Game data/config|Windows|{{P|appdata}}\com.redherringlabs.morningstar\Local Store}}' - - '{{Game data/saves|Windows|{{P|appdata}}\com.redherringlabs.morningstar\Local Store}}' + - "{{Game data/config|Windows|{{P|appdata}}\\com.redherringlabs.morningstar\\Local Store}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\com.redherringlabs.morningstar\\Local Store}}" Morok: pageId: 148938 steam: 1165170 @@ -106507,10 +103658,8 @@ Morph Pong: MorphX: pageId: 147974 templates: - - >- - {{Game data/config|Windows|{{p|game}}\data\config.cfg|{{p|userprofile\Documents}}\My Games\The - Swarm\user_config.cfg}} - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\The Swarm\Saves}}' + - "{{Game data/config|Windows|{{p|game}}\\data\\config.cfg|{{p|userprofile\\Documents}}\\My Games\\The Swarm\\user_config.cfg}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\The Swarm\\Saves}}" Morphblade: pageId: 58636 steam: 494720 @@ -106524,7 +103673,7 @@ Morphine: pageId: 45872 steam: 410430 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\KerimKumbasar\Morphine\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\KerimKumbasar\\Morphine\\}}" Morphite: pageId: 69252 steam: 661740 @@ -106533,24 +103682,22 @@ Morphopolis: pageId: 19220 steam: 314020 templates: - - '{{Game data/saves|Windows|{{p|appdata}}/Morphopolis/data.xml}}' + - "{{Game data/saves|Windows|{{p|appdata}}/Morphopolis/data.xml}}" Morps: pageId: 76089 steam: 725540 -'Mortadelo y Filemón: El sulfato atómico': +"Mortadelo y Filemón: El sulfato atómico": pageId: 135425 steam: 1038440 -'Mortadelo y Filemón: La banda de Corvino': +"Mortadelo y Filemón: La banda de Corvino": pageId: 130107 steam: 1017490 -'Mortadelo y Filemón: Operación Moscú': +"Mortadelo y Filemón: Operación Moscú": pageId: 144719 steam: 1114340 templates: - - >- - {{Game data/config|Windows|/steamapps/common/Mortadelo y Filemón Operación - Moscú/*Language*/MYF****.sv1}} -'Mortadelo y Filemón: Una aventura de cine - Edición especial': + - "{{Game data/config|Windows|/steamapps/common/Mortadelo y Filemón Operación Moscú/*Language*/MYF****.sv1}}" +"Mortadelo y Filemón: Una aventura de cine - Edición especial": pageId: 132132 steam: 1019580 Mortal Blitz: @@ -106575,29 +103722,29 @@ Mortal Kombat 11: pageId: 124549 steam: 976310 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\MK11\UserSettings.ini}}' - - '{{Game data/config|Windows|{{p|localappdata}}\MK11\UserSettingsDX12.ini}}' - - '{{Game data/saves|Windows|{{p|steam}}\userdata\{{p|uid}}\976310\remote\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\MK11\\UserSettings.ini}}" + - "{{Game data/config|Windows|{{p|localappdata}}\\MK11\\UserSettingsDX12.ini}}" + - "{{Game data/saves|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\976310\\remote\\}}" Mortal Kombat 3: gog: 1207667063 gogSide: - 1423059062 pageId: 22792 templates: - - '{{Game data/config|DOS|{{P|game}}}}' - - '{{Game data/config|Windows|{{P|game}}\mk3}}' - - '{{Game data/saves|DOS|{{P|game}}}}' - - '{{Game data/saves|Windows|{{P|game}}\mk3}}' + - "{{Game data/config|DOS|{{P|game}}}}" + - "{{Game data/config|Windows|{{P|game}}\\mk3}}" + - "{{Game data/saves|DOS|{{P|game}}}}" + - "{{Game data/saves|Windows|{{P|game}}\\mk3}}" Mortal Kombat 4: gog: 1752794474 pageId: 24681 templates: - - '{{Game data/config|Windows|{{P|hklm}}\SOFTWARE\GT Interactive\Mortal Kombat 4\1.00}}' + - "{{Game data/config|Windows|{{P|hklm}}\\SOFTWARE\\GT Interactive\\Mortal Kombat 4\\1.00}}" Mortal Kombat Arcade Kollection: pageId: 16071 steam: 205350 templates: - - '{{Game data/config|Windows|{{p|game}}\MKHDGame\Config}}' + - "{{Game data/config|Windows|{{p|game}}\\MKHDGame\\Config}}" Mortal Kombat II: gog: 1207667053 gogSide: @@ -106607,8 +103754,8 @@ Mortal Kombat Komplete Edition: pageId: 7892 steam: 237110 templates: - - '{{Game data/config|Windows|{{p|appdata}}\MKKE\}}' - - '{{Game data/saves|Windows|{{p|steam}}\userdata\{{p|uid}}\237110\remote\user\}}' + - "{{Game data/config|Windows|{{p|appdata}}\\MKKE\\}}" + - "{{Game data/saves|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\237110\\remote\\user\\}}" Mortal Kombat Trilogy: gog: 1403485498 pageId: 8460 @@ -106616,8 +103763,8 @@ Mortal Kombat X: pageId: 22625 steam: 307780 templates: - - '{{Game data/config|Windows|{{p|appdata}}\MK10\options.ini}}' - - '{{Game data/saves|Windows|{{p|steam}}\userdata\{{p|uid}}\307780\remote\user\}}' + - "{{Game data/config|Windows|{{p|appdata}}\\MK10\\options.ini}}" + - "{{Game data/saves|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\307780\\remote\\user\\}}" Mortal Manor: pageId: 79290 steam: 772200 @@ -106635,11 +103782,9 @@ Mortal Shell: pageId: 158981 steam: 1110910 templates: - - >- - {{Game data/config|Windows|{{P|userprofile\Documents}}\My - Games\MortalShell\Dungeonhaven\Saved\Config\WindowsNoEditor\}} - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\My Games\MortalShell\Dungeonhaven\Saved\SaveGames\}}' -'Mortal Squad: Portal to Hell': + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\My Games\\MortalShell\\Dungeonhaven\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\My Games\\MortalShell\\Dungeonhaven\\Saved\\SaveGames\\}}" +"Mortal Squad: Portal to Hell": pageId: 91874 steam: 822910 Mortar Howl: @@ -106673,12 +103818,12 @@ Mortville Manor: Mortyr 2093 - 1944: pageId: 39930 templates: - - '{{Game data/saves|Windows|{{p|game}}\game{{p|uid}}.sav}}' -'Mortyr 2: For Ever': + - "{{Game data/saves|Windows|{{p|game}}\\game{{p|uid}}.sav}}" +"Mortyr 2: For Ever": pageId: 39990 templates: - - '{{Game data/config|Windows|{{p|game}}\ar.cfg|{{p|game}}\save\keys.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\save\}}' + - "{{Game data/config|Windows|{{p|game}}\\ar.cfg|{{p|game}}\\save\\keys.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\save\\}}" Mos Speedrun 2: pageId: 46580 steam: 333290 @@ -106686,21 +103831,21 @@ Mosa Lina: pageId: 191269 steam: 2477090 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Local\MosaLina\User Data}}' + - "{{Game data/config|Windows|{{p|appdata}}\\Local\\MosaLina\\User Data}}" Mosaic: gog: 1247072376 pageId: 60353 steam: 349270 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Krillbite\Mosaic}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Krillbite\Mosaiac\profile.json}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Krillbite\\Mosaic}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Krillbite\\Mosaiac\\profile.json}}" Mosaic Maze: pageId: 44649 steam: 436950 -'Mosaic: Game of Gods': +"Mosaic: Game of Gods": pageId: 52396 steam: 547390 -'Mosaic: Game of Gods II': +"Mosaic: Game of Gods II": pageId: 92181 steam: 840240 Mosaics Galore: @@ -106709,10 +103854,10 @@ Mosaics Galore: Mosaics Galore 2: pageId: 105077 steam: 575900 -'Mosaics Galore: Challenging Journey': +"Mosaics Galore: Challenging Journey": pageId: 105427 steam: 891700 -Mosby's Confederacy: +"Mosby's Confederacy": pageId: 41330 steam: 17180 Moscow Rush: @@ -106733,12 +103878,12 @@ Moss: steamSide: - 925970 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\MossGame\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\MossGame\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\MossGame\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\MossGame\\Saved\\SaveGames\\}}" Moss Destruction: pageId: 100578 steam: 876220 -'Moss: Book II': +"Moss: Book II": pageId: 190299 steam: 2059670 Most Correct Football Simulator: @@ -106761,9 +103906,9 @@ Mother Russia Bleeds: pageId: 36345 steam: 361300 templates: - - '{{Game data/config|Linux|{{p|xdgconfighome}}/unity3d/Le Cartel Studio/Mother Russia Bleeds/}}' - - '{{Game data/saves|Windows|{{p|game}}\Savegame.nekro}}' - - '{{Game data/saves|Linux|{{p|game}}/Savegame.nekro}}' + - "{{Game data/config|Linux|{{p|xdgconfighome}}/unity3d/Le Cartel Studio/Mother Russia Bleeds/}}" + - "{{Game data/saves|Windows|{{p|game}}\\Savegame.nekro}}" + - "{{Game data/saves|Linux|{{p|game}}/Savegame.nekro}}" Mother Simulator: pageId: 88758 steam: 802730 @@ -106772,15 +103917,13 @@ Mothergunship: pageId: 58055 steam: 574090 templates: - - >- - {{Game - data/config|Windows|{{p|localappdata}}\TowerOfGuns2\Saved\SaveGames\SETTINGS.sav|{{p|localappdata}}\TowerOfGuns2\Saved\Config\WindowsNoEditor\}} - - '{{Game data/saves|Windows|{{p|localappdata}}\TowerOfGuns2\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\TowerOfGuns2\\Saved\\SaveGames\\SETTINGS.sav|{{p|localappdata}}\\TowerOfGuns2\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\TowerOfGuns2\\Saved\\SaveGames\\}}" Motherload: pageId: 31282 steam: 269110 templates: - - '{{Game data/saves|Windows|{{p|appdata}}\Macromedia\Flash Player\localhost\xgenml.sol}}' + - "{{Game data/saves|Windows|{{p|appdata}}\\Macromedia\\Flash Player\\localhost\\xgenml.sol}}" Mothlight: pageId: 67255 steam: 687980 @@ -106788,8 +103931,8 @@ Mothmen 1966: pageId: 180555 steam: 1755030 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\LCB\Mothmen1966\NaninovelData\Saves}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\LCB\Mothmen1966\NaninovelData\Saves}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\LCB\\Mothmen1966\\NaninovelData\\Saves}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\LCB\\Mothmen1966\\NaninovelData\\Saves}}" Moto RKD dash: pageId: 42724 steam: 470590 @@ -106798,32 +103941,32 @@ Moto Racer: pageId: 8836 steam: 324110 templates: - - '{{Game data/config|Windows|{{p|game}}\data\CONFIG.BPT}}' - - '{{Game data/saves|Windows|{{p|game}}\Champ*.sav}}' + - "{{Game data/config|Windows|{{p|game}}\\data\\CONFIG.BPT}}" + - "{{Game data/saves|Windows|{{p|game}}\\Champ*.sav}}" Moto Racer 15th Anniversary: pageId: 21604 steam: 324110 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Little Worlds Studio\MotoRacer\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Little Worlds Studio\\MotoRacer\\}}" Moto Racer 2: gog: 1207658896 pageId: 8866 steam: 324110 templates: - - '{{Game data/saves|Windows|{{p|game}}\data\config.bin}}' + - "{{Game data/saves|Windows|{{p|game}}\\data\\config.bin}}" Moto Racer 3: gog: 1207658897 pageId: 13530 steam: 324110 templates: - - '{{Game data/config|Windows|{{p|game}}\*.ini|{{p|game}}\Data_Gen\Config.bin}}' - - '{{Game data/saves|Windows|{{p|game}}\Data\Players\}}' + - "{{Game data/config|Windows|{{p|game}}\\*.ini|{{p|game}}\\Data_Gen\\Config.bin}}" + - "{{Game data/saves|Windows|{{p|game}}\\Data\\Players\\}}" Moto Racer 4: pageId: 36444 steam: 417430 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\MR4\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\MR4\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\MR4\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\MR4\\Saved\\SaveGames\\}}" Moto Racing 3D: pageId: 90144 steam: 819080 @@ -106837,14 +103980,14 @@ MotoGP 13: pageId: 23105 steam: 240600 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Milestone\MotoGP13}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Milestone\MotoGP13\Saves}}' + - "{{Game data/config|Windows|{{p|appdata}}\\Milestone\\MotoGP13}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Milestone\\MotoGP13\\Saves}}" MotoGP 14: pageId: 17594 steam: 256390 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Milestone\MotoGP14}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Milestone\MotoGP14\Saves}}' + - "{{Game data/config|Windows|{{p|appdata}}\\Milestone\\MotoGP14}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Milestone\\MotoGP14\\Saves}}" MotoGP 14 Compact: pageId: 49275 steam: 321490 @@ -106852,8 +103995,8 @@ MotoGP 15: pageId: 29869 steam: 355130 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Milestone\MotoGP15\Config.ini}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Milestone\MotoGP15\Saves}}' + - "{{Game data/config|Windows|{{p|appdata}}\\Milestone\\MotoGP15\\Config.ini}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Milestone\\MotoGP15\\Saves}}" MotoGP 15 Compact: pageId: 45344 steam: 403880 @@ -106861,30 +104004,30 @@ MotoGP 17: pageId: 59174 steam: 561610 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Milestone\MotoGP17\Config.ini}}' + - "{{Game data/config|Windows|{{p|appdata}}\\Milestone\\MotoGP17\\Config.ini}}" MotoGP 18: pageId: 91748 steam: 775900 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\motogp18\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\motogp18\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\motogp18\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\motogp18\\Saved\\SaveGames\\}}" MotoGP 19: pageId: 130923 steam: 984780 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\motogp19\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\motogp19\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\motogp19\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\motogp19\\Saved\\SaveGames\\}}" MotoGP 2: pageId: 8947 templates: - - '{{Game data/config|Windows|{{p|game}}\save\|{{p|game}}\motogp.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\save\Player *}}' + - "{{Game data/config|Windows|{{p|game}}\\save\\|{{p|game}}\\motogp.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\save\\Player *}}" MotoGP 20: pageId: 158061 steam: 1161490 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\motogp20\Saved\Config\WindowsNoEditor}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\motogp20\Saved\SaveGames}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\motogp20\\Saved\\Config\\WindowsNoEditor}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\motogp20\\Saved\\SaveGames}}" MotoGP 21: pageId: 168014 steam: 1447000 @@ -106895,36 +104038,36 @@ MotoGP 23: pageId: 186316 steam: 2100160 templates: - - '{{Game data/saves|Windows|{{p|localappdata}}\MotoGP23\Saved\SaveGames}}' -'MotoGP 3: Ultimate Racing Technology': + - "{{Game data/saves|Windows|{{p|localappdata}}\\MotoGP23\\Saved\\SaveGames}}" +"MotoGP 3: Ultimate Racing Technology": pageId: 87804 templates: - - '{{Game data/config|Windows|{{p|game}}\THQ\MotoGP URT 3}}' - - '{{Game data/saves|Windows|{{p|game}}\THQ\MotoGP URT 3}}' -'MotoGP: Ultimate Racing Technology': + - "{{Game data/config|Windows|{{p|game}}\\THQ\\MotoGP URT 3}}" + - "{{Game data/saves|Windows|{{p|game}}\\THQ\\MotoGP URT 3}}" +"MotoGP: Ultimate Racing Technology": pageId: 30302 templates: - - '{{Game data/config|Windows|{{p|game}}\save\}}' - - '{{Game data/saves|Windows|{{p|game}}\save\Saved games\}}' + - "{{Game data/config|Windows|{{p|game}}\\save\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\save\\Saved games\\}}" Motocross Madness: pageId: 19127 templates: - - '{{Game data/config|Windows|{{P|game}}\UI\Profile\ }}' - - '{{Game data/saves|Windows|{{P|game}}\UI\Profile\ }}' + - "{{Game data/config|Windows|{{P|game}}\\UI\\Profile\\ }}" + - "{{Game data/saves|Windows|{{P|game}}\\UI\\Profile\\ }}" Motocross Madness 2: pageId: 19128 templates: - - '{{Game data/config|Windows|{{P|game}}\UI\Profile\ }}' - - '{{Game data/saves|Windows|{{P|game}}\UI\Profile\}}' + - "{{Game data/config|Windows|{{P|game}}\\UI\\Profile\\ }}" + - "{{Game data/saves|Windows|{{P|game}}\\UI\\Profile\\}}" Motocross Mania: pageId: 190268 -'Motocross: Chasing the Dream': +"Motocross: Chasing the Dream": pageId: 154255 steam: 830540 Motor City Online: pageId: 24283 templates: - - '{{Game data/config|Windows|{{p|game}}\SaveData\options.ini}}' + - "{{Game data/config|Windows|{{p|game}}\\SaveData\\options.ini}}" Motor Gladiators: pageId: 102425 steam: 897150 @@ -106938,11 +104081,11 @@ Motor Mechanic: Motor Rock: pageId: 13550 steam: 263260 -'MotorM4X: Offroad Extreme': +"MotorM4X: Offroad Extreme": pageId: 63940 steam: 34860 templates: - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Motorm4x\}}' + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Motorm4x\\}}" MotorSport Revolution: pageId: 48953 steam: 317080 @@ -106959,19 +104102,19 @@ Motorcycle Club: pageId: 49229 steam: 303830 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\MotorcycleClub\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\MotorcycleClub\\}}" Motorcycle Mechanic Simulator 2021: pageId: 176360 steam: 1078760 -'Motorcycle, tricycle, ATV hill racing': +"Motorcycle, tricycle, ATV hill racing": pageId: 95228 steam: 853960 Motorhead: pageId: 2440 steam: 837040 templates: - - '{{Game data/config|Windows|{{P|game}}\Game\Motorhead.cfg | {{P|game}}\Game\*.clo}}' - - '{{Game data/saves|Windows|{{P|game}}\HiScores\|{{P|game}}\League\}}' + - "{{Game data/config|Windows|{{P|game}}\\Game\\Motorhead.cfg | {{P|game}}\\Game\\*.clo}}" + - "{{Game data/saves|Windows|{{P|game}}\\HiScores\\|{{P|game}}\\League\\}}" Motorhead (2015): pageId: 51037 steam: 393290 @@ -106979,10 +104122,10 @@ Motorsport Manager: pageId: 39392 steam: 415200 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\SOFTWARE\Playsport Games\Motorsport Manager}}' - - '{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/Playsport Games/Motorsport Manager/prefs}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Playsport Games\Motorsport Manager\Cloud\Saves}}' - - '{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/Playsport Games/Motorsport Manager/Cloud/Saves}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\Playsport Games\\Motorsport Manager}}" + - "{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/Playsport Games/Motorsport Manager/prefs}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Playsport Games\\Motorsport Manager\\Cloud\\Saves}}" + - "{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/Playsport Games/Motorsport Manager/Cloud/Saves}}" Motte Island: pageId: 50476 steam: 291290 @@ -106991,33 +104134,33 @@ Mount & Blade: pageId: 9324 steam: 22100 templates: - - '{{Game data/config|Windows|{{P|appdata}}\Mount&Blade}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Mount&Blade Savegames\}}' -'Mount & Blade II: Bannerlord': + - "{{Game data/config|Windows|{{P|appdata}}\\Mount&Blade}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Mount&Blade Savegames\\}}" +"Mount & Blade II: Bannerlord": gog: 1802539526 pageId: 52013 steam: 261550 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Mount and Blade II Bannerlord\Configs\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Mount and Blade II Bannerlord\Game Saves\}}' -'Mount & Blade: Warband': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Mount and Blade II Bannerlord\\Configs\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Mount and Blade II Bannerlord\\Game Saves\\}}" +"Mount & Blade: Warband": gog: 1207666913 pageId: 547 steam: 48700 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Mount&Blade Warband\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/MBWarband/}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.mbwarband/}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Mount&Blade Warband Savegames\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/MBWarband/Savegames/}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.mbwarband/Savegames/}}' -'Mount & Blade: With Fire & Sword': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Mount&Blade Warband\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/MBWarband/}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.mbwarband/}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Mount&Blade Warband Savegames\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/MBWarband/Savegames/}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.mbwarband/Savegames/}}" +"Mount & Blade: With Fire & Sword": gog: 1207666903 pageId: 20886 steam: 48720 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Mount&Blade With Fire and Sword\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Mount&Blade With Fire and Sword\Savegames\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Mount&Blade With Fire and Sword\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Mount&Blade With Fire and Sword\\Savegames\\}}" Mount Hill: pageId: 75570 steam: 744010 @@ -107028,21 +104171,21 @@ Mount Your Friends: pageId: 22147 steam: 296470 templates: - - '{{Game data/config|Windows|{{p|game}}\MountSave.sav}}' - - '{{Game data/saves|Windows|{{p|game}}\MountSave.sav}}' -'Mount Your Friends 3D: A Hard Man Is Good to Climb': + - "{{Game data/config|Windows|{{p|game}}\\MountSave.sav}}" + - "{{Game data/saves|Windows|{{p|game}}\\MountSave.sav}}" +"Mount Your Friends 3D: A Hard Man Is Good to Climb": pageId: 78746 steam: 441010 Mountain: pageId: 21322 steam: 313340 templates: - - '{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/David\ OReilly/Mountain/prefs}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\David OReilly\Mountain\*.sav}}' - - '{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/David\ OReilly/Mountain/*.sav}}' + - "{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/David\\ OReilly/Mountain/prefs}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\David OReilly\\Mountain\\*.sav}}" + - "{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/David\\ OReilly/Mountain/*.sav}}" Mountain Bike Adrenaline: pageId: 87828 -'Mountain Crime: Requital': +"Mountain Crime: Requital": pageId: 38236 steam: 394680 Mountain Mind: @@ -107057,10 +104200,10 @@ Mountain Rescue Simulator: Mountain Taxi Driver: pageId: 138997 steam: 1092980 -'Mountain Trap 2: Under the Cloak of Fear': +"Mountain Trap 2: Under the Cloak of Fear": pageId: 54405 steam: 563330 -'Mountain Trap: The Manor of Memories': +"Mountain Trap: The Manor of Memories": pageId: 54399 steam: 563320 Mountain Troll: @@ -107070,8 +104213,8 @@ Mountain of Faith: pageId: 63099 steam: 1100140 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/saves|Windows|{{p|game}}\}}' + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\}}" Mountaineer: pageId: 68994 steam: 596730 @@ -107095,12 +104238,12 @@ MouseCraft: pageId: 11248 steam: 252750 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Crunching Koalas\MouseCraft\settings.xml}}' - - '{{Game data/config|Steam|{{p|game}}\User Data\settings.xml}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Crunching Koalas\MouseCraft\save.xml}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Crunching Koalas/MouseCraft/}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Crunching Koalas/MouseCraft/}}' - - '{{Game data/saves|Steam|{{p|game}}\User Data\save.xml}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Crunching Koalas\\MouseCraft\\settings.xml}}" + - "{{Game data/config|Steam|{{p|game}}\\User Data\\settings.xml}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Crunching Koalas\\MouseCraft\\save.xml}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Crunching Koalas/MouseCraft/}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Crunching Koalas/MouseCraft/}}" + - "{{Game data/saves|Steam|{{p|game}}\\User Data\\save.xml}}" MouseRun: pageId: 156124 steam: 1191400 @@ -107117,8 +104260,8 @@ Move or Die: pageId: 34713 steam: 323850 templates: - - '{{Game data/config|Windows|{{p|game}}\startup.ini}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/love/Move Or Die/startup.ini}}' + - "{{Game data/config|Windows|{{p|game}}\\startup.ini}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/love/Move Or Die/startup.ini}}" Mover: pageId: 74469 steam: 733250 @@ -107128,10 +104271,10 @@ Moves: Movie Actor Trivia: pageId: 185792 steam: 1598130 -'Movie Maven: A Tycoon Game': +"Movie Maven: A Tycoon Game": pageId: 156869 steam: 1107520 -'Movie Studio Boss: The Sequel': +"Movie Studio Boss: The Sequel": pageId: 49099 steam: 331610 Movie Studio Tycoon: @@ -107150,33 +104293,33 @@ Moving Out: - 1207270 - 1249280 templates: - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Team17 Digital Limited\Moving Out\datastorage\}}' + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Team17 Digital Limited\\Moving Out\\datastorage\\}}" Movit: pageId: 88726 steam: 801380 Mow Problem: pageId: 130438 steam: 1037140 -Mowin' & Throwin': +"Mowin' & Throwin'": pageId: 92345 steam: 762030 Mowteor: pageId: 35560 templates: - - '{{Game data/config|Windows|{{P|game}}\jgui3.ini}}' - - '{{Game data/saves|Windows|{{P|game}}\base\savegames\}}' + - "{{Game data/config|Windows|{{P|game}}\\jgui3.ini}}" + - "{{Game data/saves|Windows|{{P|game}}\\base\\savegames\\}}" Moysenland: pageId: 149138 steam: 1148110 -'Mozart: The Conspirators of Prague': +"Mozart: The Conspirators of Prague": pageId: 91330 -'Moékuri: Adorable + Tactical SRPG': +"Moékuri: Adorable + Tactical SRPG": pageId: 54647 steam: 529160 Mr Blaster: pageId: 64034 steam: 618490 -Mr Boom's Firework Factory: +"Mr Boom's Firework Factory": pageId: 128631 steam: 1013670 Mr Dirt Poor: @@ -107194,13 +104337,13 @@ Mr Makeshifter: Mr Nibbles Forever: pageId: 43271 steam: 448050 -Mr Rabbit's Alphabet Forest Adventure: +"Mr Rabbit's Alphabet Forest Adventure": pageId: 65198 steam: 652390 -Mr Rabbit's Jigsaw Puzzle: +"Mr Rabbit's Jigsaw Puzzle": pageId: 69208 steam: 685040 -Mr Rabbit's Memory Game: +"Mr Rabbit's Memory Game": pageId: 94437 steam: 839970 Mr Zig: @@ -107216,8 +104359,8 @@ Mr. Bree+: pageId: 21267 steam: 264220 templates: - - '{{Game data/config|Windows|{{P|appdata}}\MrBree\Local Store\#SharedObjects\MrBree.swf\MrBreePreferences.sol}}' - - '{{Game data/saves|Windows|{{P|appdata}}\MrBree\Local Store\#SharedObjects\MrBree.swf\Mr.Bree.sol}}' + - "{{Game data/config|Windows|{{P|appdata}}\\MrBree\\Local Store\\#SharedObjects\\MrBree.swf\\MrBreePreferences.sol}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\MrBree\\Local Store\\#SharedObjects\\MrBree.swf\\Mr.Bree.sol}}" Mr. Donovan: pageId: 57230 steam: 580510 @@ -107229,8 +104372,8 @@ Mr. Driller Drill Land: pageId: 161610 steam: 1126750 templates: - - '{{Game data/config|Windows|{{P|appdata}}\DrillLand\DrillLand.ini}}' - - '{{Game data/saves|Windows|{{P|game}}\drillland.bin}}' + - "{{Game data/config|Windows|{{P|appdata}}\\DrillLand\\DrillLand.ini}}" + - "{{Game data/saves|Windows|{{P|game}}\\drillland.bin}}" Mr. Dubstep: pageId: 72015 steam: 654610 @@ -107240,7 +104383,7 @@ Mr. Fast: Mr. Grayscale: pageId: 113312 steam: 833960 -Mr. Hopp's Playhouse: +"Mr. Hopp's Playhouse": pageId: 150580 steam: 1182370 Mr. Jezko: @@ -107276,7 +104419,7 @@ Mr. Parkour 3: Mr. Prepper: pageId: 79448 steam: 761830 -'Mr. Pumpkin 2: Kowloon walled city': +"Mr. Pumpkin 2: Kowloon walled city": pageId: 153282 steam: 1182090 Mr. Pumpkin Adventure: @@ -107288,8 +104431,8 @@ Mr. Robot: pageId: 15409 steam: 20710 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Moonpod\MrRobot}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\MrRobot\data\saves}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Moonpod\\MrRobot}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\MrRobot\\data\\saves}}" Mr. Shadow: pageId: 53099 steam: 543270 @@ -107297,27 +104440,27 @@ Mr. Shifty: pageId: 39757 steam: 489140 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Team Shifty\Mr Shifty\}}' - - '{{Game data/saves|Windows|{{p|hkcu}}\Software\Team Shifty\Mr Shifty\}}' - - '{{Game data/saves|OS X|./Library/Preferences/unity.Team Shifty.Mr Shifty.plist}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Team Shifty/Mr Shifty/}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Team Shifty\\Mr Shifty\\}}" + - "{{Game data/saves|Windows|{{p|hkcu}}\\Software\\Team Shifty\\Mr Shifty\\}}" + - "{{Game data/saves|OS X|./Library/Preferences/unity.Team Shifty.Mr Shifty.plist}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Team Shifty/Mr Shifty/}}" Mr. Sweet: pageId: 92213 steam: 839230 Mr. Travel: pageId: 177430 -Mr. Triangle's Adventure: +"Mr. Triangle's Adventure": pageId: 57265 steam: 574690 Mr. Vegan: pageId: 96785 steam: 873610 templates: - - '{{Game data/saves|Windows|{{p|localappdata}}\Mr_Vegan}}' -'Mr.Hack Jack: Robot Detective': + - "{{Game data/saves|Windows|{{p|localappdata}}\\Mr_Vegan}}" +"Mr.Hack Jack: Robot Detective": pageId: 129916 steam: 1019230 -Mr.King Luo!Don't be kidding: +"Mr.King Luo!Don't be kidding": pageId: 153352 steam: 1198310 Mr.President Prologue Episode: @@ -107327,41 +104470,41 @@ Mr.President!: pageId: 51376 steam: 507010 templates: - - '{{Game data/config|Windows|{{p|HKCU}}\Software\GameDeveloperX\MrPresident\}}' - - '{{Game data/saves|Windows|{{p|USERPROFILE}}\AppData\LocalLow\GameDeveloperX\MrPresident\}}' + - "{{Game data/config|Windows|{{p|HKCU}}\\Software\\GameDeveloperX\\MrPresident\\}}" + - "{{Game data/saves|Windows|{{p|USERPROFILE}}\\AppData\\LocalLow\\GameDeveloperX\\MrPresident\\}}" Mrs Snake: pageId: 88126 steam: 811910 -'Ms. Holmes: The Monster of the Baskervilles': +"Ms. Holmes: The Monster of the Baskervilles": pageId: 138793 steam: 1093130 Ms. Pac-Man: pageId: 162058 -'Ms. Pac-Man: Quest for the Golden Maze': +"Ms. Pac-Man: Quest for the Golden Maze": pageId: 146519 templates: - - '{{Game data/config|Windows|{{p|game}}\SetupInfo.txt}}' - - '{{Game data/saves|Windows|{{p|game}}\SaveState.bin}}' + - "{{Game data/config|Windows|{{p|game}}\\SetupInfo.txt}}" + - "{{Game data/saves|Windows|{{p|game}}\\SaveState.bin}}" Ms. Splosion Man: pageId: 20897 steam: 105420 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Ms. Splosion Man}}' - - '{{Game data/saves|Windows|{{p|steam}}\userdata\{{p|uid}}\105420\remote\saves}}' -Ms. Squeaker's Home for the Sick: + - "{{Game data/config|Windows|{{p|localappdata}}\\Ms. Splosion Man}}" + - "{{Game data/saves|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\105420\\remote\\saves}}" +"Ms. Squeaker's Home for the Sick": pageId: 112604 steam: 936700 Mu Cartographer: pageId: 36842 steam: 513360 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Titouan Millet\Mu Cartographer\}}' - - '{{Game data/saves|Windows|{{P|hkcu}}\Software\Titouan Millet\Mu Cartographer\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Titouan Millet\\Mu Cartographer\\}}" + - "{{Game data/saves|Windows|{{P|hkcu}}\\Software\\Titouan Millet\\Mu Cartographer\\}}" Mu Complex: pageId: 45904 steam: 383690 templates: - - '{{Game data/saves|Linux|{{P|game}}/mc_complex.save}}' + - "{{Game data/saves|Linux|{{P|game}}/mc_complex.save}}" MuMu Player: pageId: 180853 MuX: @@ -107379,30 +104522,26 @@ MudRunner: - 891810 - 1024110 templates: - - '{{Game data/config|Epic Games Store|{{p|appdata}}\MudRunner\}}' - - '{{Game data/config|Windows|{{p|appdata}}\SpinTires MudRunner\}}' - - >- - {{Game data/config|Microsoft - Store|{{p|localappdata}}\Packages\FocusHomeInteractiveSA.29415A83FE0AA_4hny5m903y3g0\LocalCache\Roaming\MudRunnerWinStore}} - - '{{Game data/saves|Epic Games Store|{{p|appdata}}\MudRunner\}}' - - '{{Game data/saves|Windows|{{p|appdata}}\SpinTires MudRunner\}}' - - >- - {{Game data/saves|Microsoft - Store|{{p|localappdata}}\Packages\FocusHomeInteractiveSA.29415A83FE0AA_4hny5m903y3g0\LocalCache\Roaming\MudRunnerWinStore}} + - "{{Game data/config|Epic Games Store|{{p|appdata}}\\MudRunner\\}}" + - "{{Game data/config|Windows|{{p|appdata}}\\SpinTires MudRunner\\}}" + - "{{Game data/config|Microsoft Store|{{p|localappdata}}\\Packages\\FocusHomeInteractiveSA.29415A83FE0AA_4hny5m903y3g0\\LocalCache\\Roaming\\MudRunnerWinStore}}" + - "{{Game data/saves|Epic Games Store|{{p|appdata}}\\MudRunner\\}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\SpinTires MudRunner\\}}" + - "{{Game data/saves|Microsoft Store|{{p|localappdata}}\\Packages\\FocusHomeInteractiveSA.29415A83FE0AA_4hny5m903y3g0\\LocalCache\\Roaming\\MudRunnerWinStore}}" Muddledash: pageId: 99704 steam: 769840 Muddy Heights 2: pageId: 43526 steam: 463850 -Muerte's Arena: +"Muerte's Arena": pageId: 113400 steam: 863170 Muffin Knight: pageId: 50236 steam: 263700 templates: - - '{{Game data/saves|Windows|{{p|hkcu}}\Software\Angry Mob Games\Muffin Knight}}' + - "{{Game data/saves|Windows|{{p|hkcu}}\\Software\\Angry Mob Games\\Muffin Knight}}" Muffled Warfare: pageId: 92722 steam: 545180 @@ -107416,12 +104555,12 @@ Mugsters: pageId: 72421 steam: 712180 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Reinkout Games\Mugsters\}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Reinkout Games\Mugsters\Saves\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Reinkout Games\\Mugsters\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Reinkout Games\\Mugsters\\Saves\\}}" Mukti: pageId: 105579 steam: 760250 -'Mula: The Cycle of Shadow': +"Mula: The Cycle of Shadow": pageId: 74305 steam: 710160 Mulaka: @@ -107443,7 +104582,7 @@ Multi-dimension Conflict 冲突次元: MultiBall: pageId: 96967 steam: 877060 -'MultiCraft: Build and Mine': +"MultiCraft: Build and Mine": pageId: 168665 MultiTaskMaster: pageId: 103983 @@ -107456,8 +104595,8 @@ MultiVersus: - 2015371 - 2015372 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\MultiVersus\Saved\Config\WindowsClient}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\MultiVersus\Saved\SaveGames}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\MultiVersus\\Saved\\Config\\WindowsClient}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\MultiVersus\\Saved\\SaveGames}}" Multibombers: pageId: 110688 steam: 931260 @@ -107498,9 +104637,9 @@ Multiwinia: pageId: 5148 steam: 1530 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.multiwinia/}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.multiwinia/}}' + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.multiwinia/}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.multiwinia/}}" Mummy Contact: pageId: 143799 renamedFrom: @@ -107521,7 +104660,7 @@ Munchie Match: Munchies: pageId: 102367 steam: 884080 -'Munchkin: Quacked Quest': +"Munchkin: Quacked Quest": pageId: 150623 steam: 926730 Mundaun: @@ -107529,8 +104668,8 @@ Mundaun: pageId: 95047 steam: 720350 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\SOFTWARE\Hidden Fields\Mundaun\}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Hidden Fields\Mundaun}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\SOFTWARE\\Hidden Fields\\Mundaun\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Hidden Fields\\Mundaun}}" Mundus - Impossible Universe: pageId: 130080 steam: 1044640 @@ -107544,12 +104683,12 @@ Munin: pageId: 18054 steam: 281750 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\SOFTWARE\GOJIRA\Munin}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/GOJIRA/Munin}}' - - '{{Game data/saves|Windows|{{p|hkcu}}\SOFTWARE\GOJIRA\Munin}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\GOJIRA\\Munin}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/GOJIRA/Munin}}" + - "{{Game data/saves|Windows|{{p|hkcu}}\\SOFTWARE\\GOJIRA\\Munin}}" Muppet Treasure Island: pageId: 164308 -'Muppy The Bunny : The Danger of Wishes': +"Muppy The Bunny : The Danger of Wishes": pageId: 134590 steam: 1068520 Mural: @@ -107559,9 +104698,7 @@ Murasaki: pageId: 43061 steam: 392030 templates: - - >- - {{Game - data/saves|Windows|{{p|game}}\save.dat|{{p|game}}\Murasaki\data\replay\*.dat|{{p|game}}\Murasaki\data\ss\*.png}} + - "{{Game data/saves|Windows|{{p|game}}\\save.dat|{{p|game}}\\Murasaki\\data\\replay\\*.dat|{{p|game}}\\Murasaki\\data\\ss\\*.png}}" Murasaki Tsurugi: pageId: 125488 steam: 865060 @@ -107573,7 +104710,7 @@ Murder: steam: 404080 Murder Club: pageId: 175141 -'Murder Diaries: Ankara': +"Murder Diaries: Ankara": pageId: 87511 steam: 795960 Murder House: @@ -107581,12 +104718,12 @@ Murder House: pageId: 165962 steam: 1064460 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\Vague Scenario LLC_\Murder House\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Vague Scenario LLC_\Murder House\}}' -Murder In Tehran's Alleys 1933: + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Vague Scenario LLC_\\Murder House\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Vague Scenario LLC_\\Murder House\\}}" +"Murder In Tehran's Alleys 1933": pageId: 63426 steam: 630170 -Murder In Tehran's Alleys 2016: +"Murder In Tehran's Alleys 2016": pageId: 63424 steam: 639730 Murder Is Game Over: @@ -107600,12 +104737,12 @@ Murder Miners: pageId: 29560 steam: 274900 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/MurderMiners/}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/MurderMiners/}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\Saved Games\Murder Miners\MurderMinersSaveData\{{p|uid}}\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/MurderMiners/}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.local/share/MurderMiners/}}' + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/MurderMiners/}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/MurderMiners/}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Saved Games\\Murder Miners\\MurderMinersSaveData\\{{p|uid}}\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/MurderMiners/}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.local/share/MurderMiners/}}" Murder Miners X: pageId: 189601 steam: 668900 @@ -107626,12 +104763,8 @@ Murder by Numbers: steamSide: - 1232780 templates: - - >- - {{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\Mediatonic\Murder By - Numbers\settings.txt|{{P|hkcu}}\Software\Mediatonic\Murder by Numbers\}} - - >- - {{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Mediatonic\Murder By - Numbers\save*.txt|{{p|userprofile}}\AppData\LocalLow\Mediatonic\Murder By Numbers\MemoryProgress.txt}} + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Mediatonic\\Murder By Numbers\\settings.txt|{{P|hkcu}}\\Software\\Mediatonic\\Murder by Numbers\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Mediatonic\\Murder By Numbers\\save*.txt|{{p|userprofile}}\\AppData\\LocalLow\\Mediatonic\\Murder By Numbers\\MemoryProgress.txt}}" Murder on the Island: pageId: 131994 renamedFrom: @@ -107640,19 +104773,19 @@ Murder on the Island: Murder...: pageId: 66185 steam: 663540 -'Murdered: Soul Suspect': +"Murdered: Soul Suspect": pageId: 16060 steam: 233290 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\My Games\Murdered Soul Suspect\FateGame\Config\}}' - - '{{Game data/saves|Windows|{{p|steam}}/userdata/{{p|uid}}/233290/remote/}}' + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\My Games\\Murdered Soul Suspect\\FateGame\\Config\\}}" + - "{{Game data/saves|Windows|{{p|steam}}/userdata/{{p|uid}}/233290/remote/}}" Murderous Pursuits: pageId: 82169 steam: 638070 Murders in Space: pageId: 165146 steam: 1255420 -'Murderwave: Digital Slaughter': +"Murderwave: Digital Slaughter": pageId: 141827 steam: 817980 Murgles: @@ -107662,7 +104795,7 @@ Muri: pageId: 15192 steam: 267360 templates: - - '{{Game data/saves|Windows|{{p|game}}\murisave.sav}}' + - "{{Game data/saves|Windows|{{p|game}}\\murisave.sav}}" Murnatan: pageId: 88648 steam: 634070 @@ -107675,9 +104808,9 @@ Musasabi: Musashi vs Cthulhu: pageId: 155538 steam: 956310 -'Muscle Car 2: American Spirit': +"Muscle Car 2: American Spirit": pageId: 88989 -'Muscle Car 3: Illegal Street': +"Muscle Car 3: Illegal Street": pageId: 88974 Muscle Car Robot: pageId: 132586 @@ -107698,10 +104831,10 @@ Muse Dash: pageId: 82203 steam: 774171 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Steam\MuseDash\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Steam/MuseDash}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Steam\MuseDash\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Steam/MuseDash}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Steam\\MuseDash\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Steam/MuseDash}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Steam\\MuseDash\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Steam/MuseDash}}" Museum of Other Realities: pageId: 135773 steam: 613900 @@ -107716,12 +104849,10 @@ Mushroom 11: pageId: 29286 steam: 243160 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Untame\Mushroom 11\}}' - - '{{Game data/saves|Windows|{{p|hkcu}}\Software\Untame\Mushroom 11\default.*}}' - - >- - {{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/Untame/Mushroom 11/prefs (base-64 encoded in {{p|uid}}.sg - pref)}} - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\243160\remote\{{p|uid}}.*}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Untame\\Mushroom 11\\}}" + - "{{Game data/saves|Windows|{{p|hkcu}}\\Software\\Untame\\Mushroom 11\\default.*}}" + - "{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/Untame/Mushroom 11/prefs (base-64 encoded in {{p|uid}}.sg pref)}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\243160\\remote\\{{p|uid}}.*}}" Mushroom Cats: pageId: 135323 steam: 1071120 @@ -107731,11 +104862,11 @@ Mushroom Crusher Extreme: Mushroom Heroes: pageId: 91870 steam: 840410 -'Mushroom Men: Truffle Trouble': +"Mushroom Men: Truffle Trouble": pageId: 48495 steam: 222180 templates: - - '{{Game data/saves|Windows|{{p|game}}\Binaries\Win32\savegame.mmsv}}' + - "{{Game data/saves|Windows|{{p|game}}\\Binaries\\Win32\\savegame.mmsv}}" Mushroom Rain: pageId: 110636 steam: 930480 @@ -107743,15 +104874,15 @@ Mushroom Wars: pageId: 38516 steam: 431250 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Mushroom Wars\config.crs}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Mushroom Wars\SlotData*.dat}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Mushroom Wars\\config.crs}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Mushroom Wars\\SlotData*.dat}}" Mushroom Wars 2: pageId: 39418 steam: 457730 -'Mushroom: The Ruckus': +"Mushroom: The Ruckus": pageId: 92827 steam: 845700 -'Mushrooms: Forest Walker': +"Mushrooms: Forest Walker": pageId: 78856 steam: 769100 Music Band Manager: @@ -107800,15 +104931,13 @@ Musicus!: pageId: 173659 steam: 1418180 templates: - - >- - {{Game data/saves|Windows|{{p|userprofile\Documents}}\My - Games\MUSICUS\savedata\*.sav|{{p|userprofile\Documents}}\My Games\MUSICUS_EN\savedata\*.sav}} + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\MUSICUS\\savedata\\*.sav|{{p|userprofile\\Documents}}\\My Games\\MUSICUS_EN\\savedata\\*.sav}}" Musou Orochi Z: pageId: 95713 Muspell: pageId: 135996 steam: 1067700 -'Mussoumano: Ataque dos Haters': +"Mussoumano: Ataque dos Haters": pageId: 91777 steam: 407050 Must Dash Amigos: @@ -107847,8 +104976,8 @@ Mutant Mudds: pageId: 7507 steam: 247370 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Renegade Kid\Mutant Mudds}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Renegade Kid\Mutant Mudds}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Renegade Kid\\Mutant Mudds}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Renegade Kid\\Mutant Mudds}}" Mutant Mudds Super Challenge: pageId: 42051 steam: 473720 @@ -107858,21 +104987,19 @@ Mutant Ops: - Mutant ops steam: 1427800 templates: - - '{{Game data/config|Windows|{{P|localappdata|}}\VGDFinal\Saved\Config\WindowsNoEditor\*.ini}}' - - '{{Game data/saves|Windows|{{P|localappdata|}}\VGDFinal\Saved\SaveGames\Graphic.sav}}' -'Mutant Storm: Reloaded': + - "{{Game data/config|Windows|{{P|localappdata|}}\\VGDFinal\\Saved\\Config\\WindowsNoEditor\\*.ini}}" + - "{{Game data/saves|Windows|{{P|localappdata|}}\\VGDFinal\\Saved\\SaveGames\\Graphic.sav}}" +"Mutant Storm: Reloaded": pageId: 40816 steam: 110630 -'Mutant Year Zero: Road to Eden': +"Mutant Year Zero: Road to Eden": gog: 1226193907 pageId: 88920 steam: 760060 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\ZoneUE4\Saved\Config\WindowsNoEditor\}}' - - >- - {{Game data/config|Microsoft - Store|{{p|localappdata}}\Packages\FuncomOsloAS.MutantYearZeroRoadtoEden_pkaskhy6cdq4g\LocalCache\Local\ZoneUE4\Saved\Config\WindowsNoEditor}} - - '{{Game data/saves|Windows|{{p|localappdata}}\ZoneUE4\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\ZoneUE4\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/config|Microsoft Store|{{p|localappdata}}\\Packages\\FuncomOsloAS.MutantYearZeroRoadtoEden_pkaskhy6cdq4g\\LocalCache\\Local\\ZoneUE4\\Saved\\Config\\WindowsNoEditor}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\ZoneUE4\\Saved\\SaveGames\\}}" Mutants Must Die!: pageId: 93810 steam: 855370 @@ -107895,9 +105022,9 @@ Mutazione: pageId: 135872 steam: 1080750 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Die Gute Fabrik\Mutazione\}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Die Gute Fabrik\Mutazione\UserDataV0.dat}}' - - '{{Game data/saves|Steam|{{P|steam}}\userdata\{{P|uid}}\1080750\remote\UserDataV0.dat}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Die Gute Fabrik\\Mutazione\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Die Gute Fabrik\\Mutazione\\UserDataV0.dat}}" + - "{{Game data/saves|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\1080750\\remote\\UserDataV0.dat}}" Mute Crimson+: pageId: 37632 steam: 384280 @@ -107918,8 +105045,8 @@ Mutropolis: pageId: 130692 steam: 1037120 templates: - - '{{Game data/config|Linux|{{p|linuxhome}}/.local/share/Pirita Studio/Mutropolis/}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.local/share/Pirita Studio/Mutropolis/}}' + - "{{Game data/config|Linux|{{p|linuxhome}}/.local/share/Pirita Studio/Mutropolis/}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.local/share/Pirita Studio/Mutropolis/}}" Mutual Secret: pageId: 108884 steam: 805530 @@ -107927,23 +105054,23 @@ Muv-Luv: pageId: 37237 steam: 802880 templates: - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\802880\remote\}}' + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\802880\\remote\\}}" Muv-Luv Alternative: pageId: 69000 steam: 802890 Muv-Luv Alternative Total Eclipse Remastered: pageId: 181187 steam: 787510 -'Muv-Luv Unlimited: THE DAY AFTER - Episode 00 REMASTERED': +"Muv-Luv Unlimited: THE DAY AFTER - Episode 00 REMASTERED": pageId: 173972 steam: 1407100 -'Muv-Luv Unlimited: THE DAY AFTER - Episode 01 REMASTERED': +"Muv-Luv Unlimited: THE DAY AFTER - Episode 01 REMASTERED": pageId: 173973 steam: 1407090 -'Muv-Luv Unlimited: THE DAY AFTER - Episode 02 REMASTERED': +"Muv-Luv Unlimited: THE DAY AFTER - Episode 02 REMASTERED": pageId: 173974 steam: 1342410 -'Muv-Luv Unlimited: THE DAY AFTER - Episode 03 REMASTERED': +"Muv-Luv Unlimited: THE DAY AFTER - Episode 03 REMASTERED": pageId: 173975 steam: 789830 Muv-Luv VR: @@ -107961,7 +105088,7 @@ Muzzleloaded: My 1/6 Lover: pageId: 122136 steam: 962970 -My 1980's Dashboard: +"My 1980's Dashboard": pageId: 82016 steam: 786630 My Agent is a Futanari: @@ -107999,22 +105126,22 @@ My Boss is a Futanari: steam: 1854130 My Bowling 3D: pageId: 178638 -'My Boyfriend - He loves me, he loves me not': +"My Boyfriend - He loves me, he loves me not": pageId: 58557 steam: 595160 My Breast Friend Sally: pageId: 173520 steam: 1173410 templates: - - '{{Game data/saves|Windows|{{p|localappdata}}\My_Breast_Friend_Sally\}}' + - "{{Game data/saves|Windows|{{p|localappdata}}\\My_Breast_Friend_Sally\\}}" My Brother Rabbit: gog: 1531168671 pageId: 100562 steam: 855640 templates: - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/855640/remote/profile/save}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Artifex Mundi\My Brother Rabbit\save}}' - - '{{Game data/saves|Linux|$HOME/.local/share/Artifex Mundi/My Brother Rabbit/save}}' + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/855640/remote/profile/save}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Artifex Mundi\\My Brother Rabbit\\save}}" + - "{{Game data/saves|Linux|$HOME/.local/share/Artifex Mundi/My Brother Rabbit/save}}" My Burning Heart: pageId: 146030 steam: 921900 @@ -108028,26 +105155,26 @@ My Catgirl Maid Thinks She Runs the Place: pageId: 179025 steam: 1582890 templates: - - '{{Game data/saves|Windows|{{P|game}}\MyCatgirlMaidComplete-1.0-pc\game\saves}}' + - "{{Game data/saves|Windows|{{P|game}}\\MyCatgirlMaidComplete-1.0-pc\\game\\saves}}" My Child Lebensborn: pageId: 151569 steam: 1114070 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\east2west\My Child Lebensborn}}' - - '{{Game data/saves|Windows|{{p|USERPROFILE\AppData\LocalLow}}\east2west\My Child Lebensborn\SaveData\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\east2west\\My Child Lebensborn}}" + - "{{Game data/saves|Windows|{{p|USERPROFILE\\AppData\\LocalLow}}\\east2west\\My Child Lebensborn\\SaveData\\}}" My Colony: pageId: 121117 steam: 964130 -'My Coloring Book: Animals': +"My Coloring Book: Animals": pageId: 72752 steam: 721430 -'My Coloring Book: Food and Beverage': +"My Coloring Book: Food and Beverage": pageId: 78250 steam: 763760 -'My Coloring Book: Professions': +"My Coloring Book: Professions": pageId: 79206 steam: 774781 -'My Coloring Book: Transport': +"My Coloring Book: Transport": pageId: 75011 steam: 739210 My Creampie Heaven: @@ -108095,7 +105222,7 @@ My Free Farm 2: pageId: 90237 steam: 799240 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\upjers GmbH\My Free Farm 2\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\upjers GmbH\\My Free Farm 2\\}}" My Free Zoo: pageId: 76241 steam: 694130 @@ -108104,13 +105231,9 @@ My Friend Pedro: pageId: 53716 steam: 557340 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\DeadToast Entertainment\My Friend Pedro: Blood Bullets Bananas\}}' - - >- - {{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\DeadToast Entertainment\My Friend Pedro_ Blood - Bullets Bananas\Save data}} - - >- - {{Game data/saves|Microsoft - Store|{{P|localappdata}}\Packages\DevolverDigital.MyFriendPedroWin10_6kzv4j18v0c96\SystemAppData\wgs}} + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\DeadToast Entertainment\\My Friend Pedro: Blood Bullets Bananas\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\DeadToast Entertainment\\My Friend Pedro_ Blood Bullets Bananas\\Save data}}" + - "{{Game data/saves|Microsoft Store|{{P|localappdata}}\\Packages\\DevolverDigital.MyFriendPedroWin10_6kzv4j18v0c96\\SystemAppData\\wgs}}" My Friend Peppa Pig: pageId: 172536 steam: 1635590 @@ -108121,8 +105244,8 @@ My Friendly Neighborhood: pageId: 188968 steam: 1574260 templates: - - '{{Game data/config|Windows|{{p|userprofile\appdata\locallow}}\John Szymanski\My Friendly Neighborhood\}}' - - '{{Game data/config|Windows|{{p|userprofile\appdata\locallow}}\John Szymanski\My Friendly Neighborhood\}}' + - "{{Game data/config|Windows|{{p|userprofile\\appdata\\locallow}}\\John Szymanski\\My Friendly Neighborhood\\}}" + - "{{Game data/config|Windows|{{p|userprofile\\appdata\\locallow}}\\John Szymanski\\My Friendly Neighborhood\\}}" My Futanari Stepmom Impregnated Me: pageId: 184357 steam: 2152090 @@ -108144,7 +105267,7 @@ My Goddess of Love: My Golf: pageId: 91220 steam: 828890 -My Grandfather's Farm: +"My Grandfather's Farm": pageId: 92369 steam: 807000 My Haunted Doll: @@ -108153,20 +105276,18 @@ My Haunted Doll: My Heart Grows Fonder: pageId: 135897 steam: 892980 -'My Hero: One''s Justice': +"My Hero: One's Justice": pageId: 106053 steam: 748360 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\HeroGame\Saved\Config\WindowsNoEditor\}}' - - >- - {{Game data/saves|Windows|{{p|localappdata}}\BANDAI NAMCO Entertainment\My Hero Ones - Justice\Saved\SaveGames\{{p|uid}}\}} -'My Hero: One''s Justice 2': + - "{{Game data/config|Windows|{{p|localappdata}}\\HeroGame\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\BANDAI NAMCO Entertainment\\My Hero Ones Justice\\Saved\\SaveGames\\{{p|uid}}\\}}" +"My Hero: One's Justice 2": pageId: 152096 steam: 1058450 templates: - - '{{Game data/saves|Windows|{{p|localappdata}}\BANDAI NAMCO Entertainment\My Hero Ones Justice 2\Saved\SaveGames\}}' -'My Hero: Ultra Rumble': + - "{{Game data/saves|Windows|{{p|localappdata}}\\BANDAI NAMCO Entertainment\\My Hero Ones Justice 2\\Saved\\SaveGames\\}}" +"My Hero: Ultra Rumble": pageId: 183090 steam: 1607250 My Holiday: @@ -108185,17 +105306,17 @@ My Lady: pageId: 38029 steam: 457530 templates: - - '{{Game data/config|Windows|{{p|game}}\renpy\config.py}}' - - '{{Game data/saves|Windows|{{P|appdata}}\renpy\My Lady Remake-1416302694\|{{p|game}}\game\saves\}}' + - "{{Game data/config|Windows|{{p|game}}\\renpy\\config.py}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\renpy\\My Lady Remake-1416302694\\|{{p|game}}\\game\\saves\\}}" My Land: pageId: 166321 -'My Lands: Black Gem Hunting': +"My Lands: Black Gem Hunting": pageId: 20021 steam: 290730 My Life as a Maiden: pageId: 78701 steam: 754840 -'My Life: Riding Stables 3': +"My Life: Riding Stables 3": pageId: 183740 steam: 1962150 My Light in the Dark: @@ -108203,7 +105324,7 @@ My Light in the Dark: renamedFrom: - Light In The Dark steam: 1131540 -My Lil' Donut: +"My Lil' Donut": pageId: 36598 steam: 506280 My Little Army: @@ -108221,23 +105342,23 @@ My Little Farmies: My Little Kitties: pageId: 33537 steam: 407320 -'My Little Pony: A Maretime Bay Adventure': +"My Little Pony: A Maretime Bay Adventure": pageId: 174955 steam: 1600780 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\Melbot Studios\MLP}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Melbot Studios\MLP}}' -'My Little Pony: Best Friends Ball': + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Melbot Studios\\MLP}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Melbot Studios\\MLP}}" +"My Little Pony: Best Friends Ball": pageId: 166205 -'My Little Pony: Crystal Princess - The Runaway Rainbow': +"My Little Pony: Crystal Princess - The Runaway Rainbow": pageId: 138315 -'My Little Pony: Friendship Gardens': +"My Little Pony: Friendship Gardens": pageId: 138065 -'My Little Pony: Magic Princess': +"My Little Pony: Magic Princess": pageId: 185767 -'My Little Pony: Mane Merge': +"My Little Pony: Mane Merge": pageId: 183341 -'My Little Pony: Pinkie Pie''s Party Parade': +"My Little Pony: Pinkie Pie's Party Parade": pageId: 138320 My Little Riding Champion: pageId: 113212 @@ -108252,7 +105373,7 @@ My Lovely Daughter: pageId: 81119 steam: 580170 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\GameChanger Studio\My Lovely Daughter}}' + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\GameChanger Studio\\My Lovely Daughter}}" My Lovely Wife: pageId: 178056 steam: 1251930 @@ -108275,8 +105396,8 @@ My Memory of Us: pageId: 73628 steam: 651500 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Juggler Games\My Memory of Us\}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Juggler Games\My Memory of Us\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Juggler Games\\My Memory of Us\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Juggler Games\\My Memory of Us\\}}" My Name Is Mayo: pageId: 44613 renamedFrom: @@ -108327,10 +105448,10 @@ My Racing Career: My Riding Stables: pageId: 51057 steam: 276300 -'My Riding Stables: Life with Horses': +"My Riding Stables: Life with Horses": pageId: 38555 steam: 276340 -'My Riding Stables: Your Horse breeding': +"My Riding Stables: Your Horse breeding": pageId: 114260 steam: 938390 My Russian Trip: @@ -108351,7 +105472,7 @@ My Singing Monsters: - 1896460 - 1896470 - 1896480 -My Sister's Discipline Log: +"My Sister's Discipline Log": pageId: 70525 steam: 711410 My So-Called Future Girlfriend: @@ -108387,17 +105508,15 @@ My Summer Car: pageId: 51613 steam: 516750 templates: - - >- - {{Game data/config|Windows|{{P|userprofile}}\AppData\LocalLow\Amistech\My Summer - Car\options.txt|{{P|hkcu}}\Software\Amistech\My Summer Car\}} - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Amistech\My Summer Car\}}' + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Amistech\\My Summer Car\\options.txt|{{P|hkcu}}\\Software\\Amistech\\My Summer Car\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Amistech\\My Summer Car\\}}" My Sunny Resort: pageId: 92887 steam: 821610 My Super Defender - Battle Santa Edition: pageId: 123984 steam: 985440 -'My Super Defender: Battle Santa Edition': +"My Super Defender: Battle Santa Edition": pageId: 153563 steam: 1188200 My Super Tower 2: @@ -108420,19 +105539,17 @@ My Time at Portia: pageId: 64638 steam: 666140 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Pathea Games\My Time at Portia\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Pathea Games\My Time at Portia\}}' - - '{{Game data/saves|Microsoft Store|{{p|userprofile}}\AppData\LocalLow\Pathea Games\My Time at Portia\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Pathea Games\\My Time at Portia\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Pathea Games\\My Time at Portia\\}}" + - "{{Game data/saves|Microsoft Store|{{p|userprofile}}\\AppData\\LocalLow\\Pathea Games\\My Time at Portia\\}}" My Time at Sandrock: gog: 1602125846 pageId: 167123 steam: 1084600 templates: - - >- - {{Game data/config|Steam|{{p|steam}}\userdata\{{P|uid}}\1084600\remote\KeyBind.cfg|{{P|hkcu}}\Software\Pathea - Games\My Time at Sandrock}} - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{P|uid}}\1084600\remote\*.save}}' -'My Tower, My Home': + - "{{Game data/config|Steam|{{p|steam}}\\userdata\\{{P|uid}}\\1084600\\remote\\KeyBind.cfg|{{P|hkcu}}\\Software\\Pathea Games\\My Time at Sandrock}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{P|uid}}\\1084600\\remote\\*.save}}" +"My Tower, My Home": pageId: 44134 steam: 435600 My Train Arrives: @@ -108447,10 +105564,10 @@ My Tribe: My Typing Skill: pageId: 138975 steam: 1101130 -'My Universe: Interior Designer': +"My Universe: Interior Designer": pageId: 179834 steam: 1591900 -'My Universe: My Baby Dragon': +"My Universe: My Baby Dragon": pageId: 187157 steam: 2172600 My University Story/我的大学物语: @@ -108465,7 +105582,7 @@ My Vet Practice: My Vet Practice - Marine Patrol: pageId: 58543 steam: 595150 -'My Vet Practice: In the Country': +"My Vet Practice: In the Country": pageId: 50514 steam: 276240 My Vow to My Liege: @@ -108492,7 +105609,7 @@ My dream: My hot beach vacation: pageId: 155969 steam: 1188060 -My name is You. And it's the only unusual thing in my life: +"My name is You. And it's the only unusual thing in my life": pageId: 156049 steam: 1118840 My servant and the stranger Astensia: @@ -108507,8 +105624,8 @@ MyDream: MySims: pageId: 19390 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Electronic Arts\MySims\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Electronic Arts\MySims\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Electronic Arts\\MySims\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Electronic Arts\\MySims\\}}" MyStar: pageId: 153292 steam: 1175690 @@ -108518,23 +105635,21 @@ MyTD 我的塔防: MyWorld: pageId: 58672 steam: 492150 -'Myastere: Ruins of Deazniff': +"Myastere: Ruins of Deazniff": pageId: 167933 steam: 1557510 -'Myha: Return to the Lost Island': +"Myha: Return to the Lost Island": pageId: 132377 steam: 890280 Myriad Tower Defense: pageId: 153084 steam: 1186170 -'Myriads: Renaissance': +"Myriads: Renaissance": pageId: 187788 steam: 1737220 templates: - - >- - {{Game - data/saves|Windows|{{p|userprofile\appdata\locallow}}\SleepingEightStudio\MyriadsRenaissance\SaveFolder_{{p|uid}}\*.dat}} -'Myrne: The Quest': + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\SleepingEightStudio\\MyriadsRenaissance\\SaveFolder_{{p|uid}}\\*.dat}}" +"Myrne: The Quest": pageId: 61460 steam: 589470 Myst: @@ -108542,7 +105657,7 @@ Myst: pageId: 5043 steam: 63660 templates: - - '{{Game data/saves|Windows|{{p|game}}\SAVEGAME}}' + - "{{Game data/saves|Windows|{{p|game}}\\SAVEGAME}}" Myst (2021): gog: 1251226620 pageId: 163476 @@ -108551,45 +105666,39 @@ Myst (2021): - Myst (2020) steam: 1255560 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Myst\Saved\Config\WindowsNoEditor\}}' - - >- - {{Game data/config|Microsoft - Store|{{p|localappdata}}\Packages\CyanWorldsInc.Myst_9msjs5e8t6mxt\LocalCache\Local\Myst\Saved\Config\WinGDK\}} - - '{{Game data/saves|Windows|{{P|localappdata}}\Myst\Saved\SaveGames\}}' -'Myst III: Exile': + - "{{Game data/config|Windows|{{p|localappdata}}\\Myst\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/config|Microsoft Store|{{p|localappdata}}\\Packages\\CyanWorldsInc.Myst_9msjs5e8t6mxt\\LocalCache\\Local\\Myst\\Saved\\Config\\WinGDK\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Myst\\Saved\\SaveGames\\}}" +"Myst III: Exile": gog: 1766899243 pageId: 16885 steam: 925930 templates: - - '{{Game data/saves|Windows|{{p|game}}\Saved Games\}}' - - '{{Game data/saves|Steam|{{p|appdata}}\ResidualVM\Saved games}}' -'Myst IV: Revelation': + - "{{Game data/saves|Windows|{{p|game}}\\Saved Games\\}}" + - "{{Game data/saves|Steam|{{p|appdata}}\\ResidualVM\\Saved games}}" +"Myst IV: Revelation": gog: 1956555724 pageId: 47705 steam: 925940 templates: - - '{{Game data/config|Windows|{{p|game}}\save\options.m4o}}' - - '{{Game data/saves|Windows|{{p|game}}\save\*.m4s}}' -'Myst Online: Uru Live': + - "{{Game data/config|Windows|{{p|game}}\\save\\options.m4o}}" + - "{{Game data/saves|Windows|{{p|game}}\\save\\*.m4s}}" +"Myst Online: Uru Live": pageId: 176739 -'Myst V: End of Ages': +"Myst V: End of Ages": gog: 1207659029 pageId: 16889 steam: 208110 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Myst V End of Ages\init|{{p|localappdata}}\Myst V - End of Ages\init}} - - >- - {{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Myst V End of - Ages\sav\Store1|{{p|localappdata}}\Myst V End of Ages\sav\Store1}} -'Mysteria: Occult Shadows': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Myst V End of Ages\\init|{{p|localappdata}}\\Myst V End of Ages\\init}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Myst V End of Ages\\sav\\Store1|{{p|localappdata}}\\Myst V End of Ages\\sav\\Store1}}" +"Mysteria: Occult Shadows": pageId: 107356 steam: 662960 templates: - - '{{Game data/config|Windows| {{p|localappdata}}\Mystria\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Mystria\Saved\*.mss}}' -'Mysteries & Nightmares: Morgiana': + - "{{Game data/config|Windows| {{p|localappdata}}\\Mystria\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Mystria\\Saved\\*.mss}}" +"Mysteries & Nightmares: Morgiana": pageId: 48230 steam: 362030 Mysteries Dragon Chess: @@ -108598,17 +105707,17 @@ Mysteries Dragon Chess: Mysteries of Fence: pageId: 66414 steam: 644550 -'Mysteries of Neverville: The Runestone of Light': +"Mysteries of Neverville: The Runestone of Light": pageId: 124278 steam: 994870 -'Mysteries of the Past: Shadow of the Daemon': +"Mysteries of the Past: Shadow of the Daemon": pageId: 44537 renamedFrom: - - 'Mysteries of the Past: Shadow of the Daemon Collector''s Edition' + - "Mysteries of the Past: Shadow of the Daemon Collector's Edition" steam: 440870 templates: - - '{{Game data/config|Windows|{{P|appdata}}\Blue Brain Games\Mysteries of the Past SoD CE\plist}}' - - '{{Game data/saves|Windows|{{P|appdata}}\Blue Brain Games\Mysteries of the Past SoD CE\}}' + - "{{Game data/config|Windows|{{P|appdata}}\\Blue Brain Games\\Mysteries of the Past SoD CE\\plist}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\Blue Brain Games\\Mysteries of the Past SoD CE\\}}" Mysteries of the Undead: pageId: 132094 steam: 1036980 @@ -108621,11 +105730,11 @@ Mysterious Castle: Mysterious Insects: pageId: 80633 steam: 760240 -'Mysterious Journey II: Chameleon': +"Mysterious Journey II: Chameleon": pageId: 75390 templates: - - '{{Game data/config|Windows|{{P|game}}\display.cfg}}' - - '{{Game data/saves|Windows|{{P|game}}\Save\Player}}' + - "{{Game data/config|Windows|{{P|game}}\\display.cfg}}" + - "{{Game data/saves|Windows|{{P|game}}\\Save\\Player}}" Mysterious Realms RPG: pageId: 76627 steam: 752800 @@ -108635,69 +105744,69 @@ Mysterious Space: Mysterium: pageId: 56446 steam: 556180 -'Mystery Case Files: 13th Skull': +"Mystery Case Files: 13th Skull": pageId: 36177 steam: 514700 -'Mystery Case Files: Black Crown': +"Mystery Case Files: Black Crown": pageId: 152917 steam: 1196400 -'Mystery Case Files: Escape from Ravenhearst': +"Mystery Case Files: Escape from Ravenhearst": pageId: 44696 steam: 438560 -'Mystery Case Files: Huntsville': +"Mystery Case Files: Huntsville": pageId: 41148 steam: 50960 -'Mystery Case Files: Key to Ravenhearst': +"Mystery Case Files: Key to Ravenhearst": pageId: 136378 steam: 1082470 -'Mystery Case Files: Madame Fate': +"Mystery Case Files: Madame Fate": pageId: 41383 steam: 50970 -'Mystery Case Files: Moths to a Flame': +"Mystery Case Files: Moths to a Flame": pageId: 143835 steam: 1145450 -'Mystery Case Files: Prime Suspects': +"Mystery Case Files: Prime Suspects": pageId: 41151 steam: 50980 -'Mystery Case Files: Ravenhearst': +"Mystery Case Files: Ravenhearst": pageId: 41149 steam: 50990 -'Mystery Case Files: Ravenhearst Unlocked': +"Mystery Case Files: Ravenhearst Unlocked": pageId: 148747 steam: 1168830 -'Mystery Case Files: Return to Ravenhearst': +"Mystery Case Files: Return to Ravenhearst": pageId: 41150 steam: 51000 -'Mystery Case Files: Rewind': +"Mystery Case Files: Rewind": pageId: 99506 steam: 887960 -'Mystery Case Files: Shadow Lake': +"Mystery Case Files: Shadow Lake": pageId: 178689 -'Mystery Case Files: The Black Veil': +"Mystery Case Files: The Black Veil": pageId: 59802 steam: 580010 -'Mystery Case Files: The Countess': +"Mystery Case Files: The Countess": pageId: 122066 steam: 971060 -'Mystery Case Files: The Revenant''s Hunt': +"Mystery Case Files: The Revenant's Hunt": pageId: 76099 steam: 749080 Mystery Castle: pageId: 43139 steam: 394950 -'Mystery Castle: The Mirror''s Secret': +"Mystery Castle: The Mirror's Secret": pageId: 45234 steam: 428250 -'Mystery Chronicle: One Way Heroics': +"Mystery Chronicle: One Way Heroics": pageId: 36934 steam: 409000 -'Mystery Expedition: Prisoners of Ice': +"Mystery Expedition: Prisoners of Ice": pageId: 45708 steam: 397960 Mystery House -fivestones-: pageId: 109894 steam: 917770 -'Mystery House: Secret Stealth': +"Mystery House: Secret Stealth": pageId: 103265 steam: 893170 Mystery Island - Hidden Object Games: @@ -108712,10 +105821,10 @@ Mystery Loss: Mystery Lover Nonexistent Summer: pageId: 164942 steam: 1345740 -'Mystery Masterpiece: The Moonstone': +"Mystery Masterpiece: The Moonstone": pageId: 141176 steam: 1104830 -'Mystery Masters: Psycho Train Deluxe Edition': +"Mystery Masters: Psycho Train Deluxe Edition": pageId: 48795 steam: 344790 Mystery Maze of Balthasar Castle: @@ -108745,22 +105854,22 @@ Mystery P.I. - The Vegas Heist: Mystery Riddles: pageId: 59218 steam: 598620 -'Mystery Solitaire: Grimm''s Tales': +"Mystery Solitaire: Grimm's Tales": pageId: 135636 renamedFrom: - Mystery Solitaire Grimm Tales steam: 1037010 -'Mystery Solitaire: Grimm''s Tales 2': +"Mystery Solitaire: Grimm's Tales 2": pageId: 149535 renamedFrom: - - 'Mystery Solitaire: Grimm''s tales 2' + - "Mystery Solitaire: Grimm's tales 2" steam: 1095860 -'Mystery Solitaire: The Arkham Spirits': +"Mystery Solitaire: The Arkham Spirits": pageId: 153428 renamedFrom: - Mystery Solitaire The Arkham Spirits steam: 1168070 -'Mystery Solitaire: The Black Raven': +"Mystery Solitaire: The Black Raven": pageId: 134387 renamedFrom: - Mystery Solitaire The Black Raven @@ -108768,27 +105877,27 @@ Mystery Riddles: Mystery Stone from Heaven: pageId: 75486 steam: 744630 -'Mystery Tales: Alaskan Wild': +"Mystery Tales: Alaskan Wild": pageId: 91813 steam: 838720 -'Mystery Tales: The Lost Hope': +"Mystery Tales: The Lost Hope": pageId: 57999 steam: 591580 -'Mystery Tales: The Twilight World': +"Mystery Tales: The Twilight World": pageId: 75061 steam: 740520 -'Mystery Trackers: Black Isle': +"Mystery Trackers: Black Isle": pageId: 110414 steam: 926120 -'Mystery Trackers: The Void': +"Mystery Trackers: The Void": pageId: 50883 renamedFrom: - - 'Mystery Trackers: The Void Collector''s Edition' + - "Mystery Trackers: The Void Collector's Edition" steam: 527940 -'Mystery Trackers: Winterpoint Tragedy': +"Mystery Trackers: Winterpoint Tragedy": pageId: 132444 steam: 1059620 -'Mystery Village: Shards of the Past': +"Mystery Village: Shards of the Past": pageId: 88103 steam: 807820 Mystery at Stonyford Bridge: @@ -108798,8 +105907,8 @@ Mystery of Camp Enigma: pageId: 172053 steam: 1616210 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\SOFTWARE\M9 Games\Mystery of Camp Enigma}}' - - '{{Game data/saves|Windows|{{P|hkcu}}\SOFTWARE\M9 Games\Mystery of Camp Enigma}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\SOFTWARE\\M9 Games\\Mystery of Camp Enigma}}" + - "{{Game data/saves|Windows|{{P|hkcu}}\\SOFTWARE\\M9 Games\\Mystery of Camp Enigma}}" Mystery of Melody Memorial: pageId: 87613 steam: 804230 @@ -108809,25 +105918,25 @@ Mystery of Neuschwanstein: Mystery of Rivenhallows: pageId: 42031 steam: 498050 -'Mystery of Unicorn Castle: The Beastmaster': +"Mystery of Unicorn Castle: The Beastmaster": pageId: 45240 steam: 428280 -'Mystery of the Ancients: Curse of the Black Water': +"Mystery of the Ancients: Curse of the Black Water": pageId: 110406 steam: 926100 -'Mystery of the Ancients: Deadly Cold': +"Mystery of the Ancients: Deadly Cold": pageId: 135842 steam: 1068700 -'Mystery of the Ancients: Three Guardians': +"Mystery of the Ancients: Three Guardians": pageId: 134828 steam: 1061540 Mystic Defense: pageId: 53864 steam: 553910 -'Mystic Destinies: Echoes': +"Mystic Destinies: Echoes": pageId: 77311 steam: 721550 -'Mystic Destinies: Serendipity of Aeons': +"Mystic Destinies: Serendipity of Aeons": pageId: 44669 steam: 431510 Mystic Diary - Quest for Lost Brother: @@ -108836,7 +105945,7 @@ Mystic Diary - Quest for Lost Brother: Mystic Hammer: pageId: 157071 steam: 1201650 -'Mystic Journey: Tri Peaks Solitaire': +"Mystic Journey: Tri Peaks Solitaire": pageId: 62276 steam: 615340 Mystic Mayhem Unleashed: @@ -108848,7 +105957,7 @@ Mystic Melee: Mystic Miracles: pageId: 69852 steam: 704060 -'Mystic Pillars: A Story-Based Puzzle Game': +"Mystic Pillars: A Story-Based Puzzle Game": pageId: 156493 steam: 1197030 Mystic RUS-files: @@ -108864,15 +105973,15 @@ Mystic Towers: pageId: 23230 steam: 358220 templates: - - '{{Game data/config|DOS|{{p|game}}\TOWERS.CFG}}' - - '{{Game data/saves|DOS|{{p|game}}\TOWERS.SG*}}' + - "{{Game data/config|DOS|{{p|game}}\\TOWERS.CFG}}" + - "{{Game data/saves|DOS|{{p|game}}\\TOWERS.SG*}}" Mystic VR: pageId: 65993 steam: 645280 Mystic Vale: pageId: 123679 steam: 908070 -'Mystica: The Ninth Society': +"Mystica: The Ninth Society": pageId: 44253 steam: 448150 Mystical: @@ -108885,37 +105994,37 @@ Mystik Belle: pageId: 38528 steam: 332610 templates: - - '{{Game data/saves|Windows|{{p|localappdata}}\Mystik_Belle}}' -'Mystika 3: Awakening of the Dragons': + - "{{Game data/saves|Windows|{{p|localappdata}}\\Mystik_Belle}}" +"Mystika 3: Awakening of the Dragons": pageId: 64194 steam: 652570 -'Myth II: Soulblighter': +"Myth II: Soulblighter": pageId: 7657 -'Myth III: The Wolf Age': +"Myth III: The Wolf Age": pageId: 30760 -'Myth Makers: Orbs of Doom': +"Myth Makers: Orbs of Doom": pageId: 88419 -'Myth Makers: Super Kart GP': +"Myth Makers: Super Kart GP": pageId: 88485 -'Myth Makers: Trixie in Toyland': +"Myth Makers: Trixie in Toyland": pageId: 88422 Myth of Empires: pageId: 181813 steam: 1371580 -'Myth: The Fallen Lords': +"Myth: The Fallen Lords": pageId: 24594 -'MythBusters: The Game': +"MythBusters: The Game": gog: 2125142200 pageId: 137108 steam: 811550 templates: - - '{{Game data/saves|Windows|{{p|game}}\MythBusters\SavesDir}}' + - "{{Game data/saves|Windows|{{p|game}}\\MythBusters\\SavesDir}}" MythForce: pageId: 177171 steam: 363860 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\MythForce\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\MythForce\Saved\SaveGames}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\MythForce\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\MythForce\\Saved\\SaveGames}}" Mytheon: pageId: 45361 steam: 413030 @@ -108930,21 +106039,21 @@ Mythic Ocean: steamSide: - 1155470 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\OceanGods\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\OceanGods\Saved\SaveGames\}}' -'Mythic Ocean: Prologue': + - "{{Game data/config|Windows|{{P|localappdata}}\\OceanGods\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\OceanGods\\Saved\\SaveGames\\}}" +"Mythic Ocean: Prologue": pageId: 149107 steam: 1155470 Mythic Origins: pageId: 180175 steam: 2018990 -'Mythic Pearls: The Legend of Tirnanog': +"Mythic Pearls: The Legend of Tirnanog": pageId: 144107 steam: 1133530 Mythic Victory Arena: pageId: 39217 steam: 514200 -'Mythic Wonders: The Philosopher''s Stone': +"Mythic Wonders: The Philosopher's Stone": pageId: 38268 steam: 458480 Mythical: @@ -108956,70 +106065,70 @@ Mythical BOOM Party: Mythlink: pageId: 62588 steam: 633150 -'Mythos: The Beginning - Director''s Cut': +"Mythos: The Beginning - Director's Cut": pageId: 34701 steam: 325320 -'Myths of Orion: Light from the North': +"Myths of Orion: Light from the North": pageId: 49207 steam: 288670 templates: - - '{{Game data/config|Windows|{{p|programdata}}\Cateia Games\Myths of Orion}}' - - '{{Game data/saves|Windows|{{p|programdata}}\Cateia Games\Myths of Orion}}' -'Myths of the World: Black Rose': + - "{{Game data/config|Windows|{{p|programdata}}\\Cateia Games\\Myths of Orion}}" + - "{{Game data/saves|Windows|{{p|programdata}}\\Cateia Games\\Myths of Orion}}" +"Myths of the World: Black Rose": pageId: 127321 steam: 995920 -'Myths of the World: Chinese Healer': +"Myths of the World: Chinese Healer": pageId: 52704 renamedFrom: - - 'Myths of the World: Chinese Healer Collector''s Edition' + - "Myths of the World: Chinese Healer Collector's Edition" steam: 551360 -'Myths of the World: Of Fiends and Fairies': +"Myths of the World: Of Fiends and Fairies": pageId: 95463 steam: 866790 -'Myths of the World: Spirit Wolf': +"Myths of the World: Spirit Wolf": pageId: 80883 steam: 786070 -'Myths of the World: Stolen Spring': +"Myths of the World: Stolen Spring": pageId: 62338 steam: 638260 -'Myths of the World: The Heart of Desolation': +"Myths of the World: The Heart of Desolation": pageId: 149150 steam: 1168820 MÅRD: pageId: 110512 steam: 928070 -'Märchen Forest: Mylne and the Forest Gift': +"Märchen Forest: Mylne and the Forest Gift": pageId: 92203 steam: 842810 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\PrimaryOrbit\merufore_steam}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\PrimaryOrbit\\merufore_steam}}" Mò The Frog: pageId: 121900 steam: 967290 -Möbius Front '83: +"Möbius Front '83": gog: 1718413058 pageId: 165090 steam: 971160 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\My Games\Möbius Front ''83\{{P|uid}}\config.cfg}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\My Games\Möbius Front ''83\{{P|uid}}\save.dat}}' -'N': + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\My Games\\Möbius Front '83\\{{P|uid}}\\config.cfg}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\My Games\\Möbius Front '83\\{{P|uid}}\\save.dat}}" +N: pageId: 20151 N++: pageId: 36248 steam: 230270 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Metanet\N++\levels\}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/Metanet/N++}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Metanet\N++\}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/Metanet/N++}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Metanet\\N++\\levels\\}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/Metanet/N++}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Metanet\\N++\\}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/Metanet/N++}}" N-body: pageId: 72096 steam: 714910 N.E.O: pageId: 150335 steam: 1120820 -'N.E.R.O.: Nothing Ever Remains Obscure': +"N.E.R.O.: Nothing Ever Remains Obscure": pageId: 43275 steam: 377480 N.E.U.F.O: @@ -109037,13 +106146,13 @@ N.a.N Industry VR: N0-EXIT: pageId: 39193 steam: 503430 -'N0d3: Machina Omega': +"N0d3: Machina Omega": pageId: 80919 steam: 761020 -'N1RV Ann-A: Cyberpunk Bartender Action': +"N1RV Ann-A: Cyberpunk Bartender Action": pageId: 113674 steam: 914210 -'N2O: Nitrous Oxide': +"N2O: Nitrous Oxide": pageId: 47451 steam: 364840 NAL is Alive: @@ -109053,14 +106162,14 @@ NALOGI: pageId: 87944 steam: 810670 templates: - - '{{Game data/saves|Windows|{{p|game}}\www\save\*}}' + - "{{Game data/saves|Windows|{{p|game}}\\www\\save\\*}}" NAM: gog: 1575726518 pageId: 25285 steam: 329650 templates: - - '{{Game data/config|DOS|{{p|game}}\NAM.CFG}}' - - '{{Game data/saves|DOS|{{p|game}}\GAME*.SAV}}' + - "{{Game data/config|DOS|{{p|game}}\\NAM.CFG}}" + - "{{Game data/saves|DOS|{{p|game}}\\GAME*.SAV}}" NAM-1975: pageId: 168744 NAMELESS: @@ -109072,62 +106181,62 @@ NAR - Not Another Royale: NARWHAR Project Hornwhale: pageId: 153370 steam: 1187900 -NASCAR '14: +"NASCAR '14": pageId: 15176 steam: 254130 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Eutechnyx\NASCAR 14}}' -NASCAR '15: + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Eutechnyx\\NASCAR 14}}" +"NASCAR '15": pageId: 47821 steam: 345890 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Eutechnyx\NASCAR 15\}}' - - '{{Game data/saves|Windows|{{p|Steam}}\userdata\{{p|uid}}\345890\remote\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Eutechnyx\\NASCAR 15\\}}" + - "{{Game data/saves|Windows|{{p|Steam}}\\userdata\\{{p|uid}}\\345890\\remote\\}}" NASCAR 2000: pageId: 22374 -'NASCAR 21: Ignition': +"NASCAR 21: Ignition": pageId: 170800 steam: 1439300 NASCAR Arcade Rush: pageId: 188417 templates: - - '{{Game data/config|Windows|{{P|localappdata}}Nascar\Saved\Config\Windows}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\Nascar\Saved\SaveGames}}' + - "{{Game data/config|Windows|{{P|localappdata}}Nascar\\Saved\\Config\\Windows}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Nascar\\Saved\\SaveGames}}" NASCAR Heat: pageId: 24626 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/saves|Windows|{{p|game}}\}}' + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\}}" NASCAR Heat 2: pageId: 68974 steam: 670900 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\704Games\NASCAR Heat 2}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\NASCAR Heat 2\SaveData\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\704Games\\NASCAR Heat 2}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\NASCAR Heat 2\\SaveData\\}}" NASCAR Heat 3: pageId: 109478 steam: 905450 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\704Games\NASCAR Heat 3}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\NASCAR Heat 3\SaveData\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\704Games\\NASCAR Heat 3}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\NASCAR Heat 3\\SaveData\\}}" NASCAR Heat 4: pageId: 144859 steam: 1127980 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\704Games\NASCAR Heat 4}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\NASCAR Heat 4\SaveData\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\704Games\\NASCAR Heat 4}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\NASCAR Heat 4\\SaveData\\}}" NASCAR Heat 5: pageId: 160097 steam: 1265860 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\704Games\NASCAR Heat 5}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\NASCAR Heat 5\SaveData\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\704Games\\NASCAR Heat 5}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\NASCAR Heat 5\\SaveData\\}}" NASCAR Heat Evolution: pageId: 39956 steam: 508450 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Dusenberry Martin Racing\NASCAR Heat Evolution}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\NASCAR Heat Evolution\SaveData\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Dusenberry Martin Racing\\NASCAR Heat Evolution}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\NASCAR Heat Evolution\\SaveData\\}}" NASCAR Legends: pageId: 189587 NASCAR Racers: @@ -109135,14 +106244,8 @@ NASCAR Racers: NASCAR Racing: pageId: 180903 templates: - - |- - {{Game data/config|DOS|{{p|game}} - {{Game data/config|Mac OS|}} - }} - - |- - {{Game data/saves|DOS|{{p|game}} - {{Game data/saves|Mac OS|}} - }} + - "{{Game data/config|DOS|{{p|game}}\n{{Game data/config|Mac OS|}}\n}}" + - "{{Game data/saves|DOS|{{p|game}}\n{{Game data/saves|Mac OS|}}\n}}" NASCAR Racing 2: pageId: 189554 NASCAR Racing 2002 Season: @@ -109150,8 +106253,8 @@ NASCAR Racing 2002 Season: NASCAR Racing 2003 Season: pageId: 107142 templates: - - '{{Game data/config|Windows|{{p|game}}\players\[player name]\player.ini|{{p|game}}\core.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\players\[player name]\}}' + - "{{Game data/config|Windows|{{p|game}}\\players\\[player name]\\player.ini|{{p|game}}\\core.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\players\\[player name]\\}}" NASCAR Racing 3: pageId: 189556 NASCAR Racing 4: @@ -109160,22 +106263,22 @@ NASCAR Revolution: pageId: 107126 NASCAR SimRacing: pageId: 107138 -'NASCAR The Game: 2013': +"NASCAR The Game: 2013": pageId: 8952 steam: 225220 NASCAR Thunder 2003: pageId: 107130 NASCAR Thunder 2004: pageId: 107134 -'NAVALNY: A Nightmare of Corrupt': +"NAVALNY: A Nightmare of Corrupt": pageId: 149424 steam: 1154570 NBA 2K Playgrounds 2: pageId: 93212 steam: 726590 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\NBAPlaygrounds2\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\NBAPlaygrounds2\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\NBAPlaygrounds2\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\NBAPlaygrounds2\\Saved\\SaveGames\\}}" NBA 2K10: pageId: 20722 steam: 40920 @@ -109189,69 +106292,67 @@ NBA 2K13: pageId: 20726 steam: 219600 templates: - - '{{Game data/saves|Windows|{{p|appdata}}\2K Sports\NBA 2K13\Saves}}' + - "{{Game data/saves|Windows|{{p|appdata}}\\2K Sports\\NBA 2K13\\Saves}}" NBA 2K14: pageId: 20718 steam: 255480 templates: - - '{{Game data/saves|Windows|{{p|appdata}}\2K Sports\NBA 2K14\Saves}}' + - "{{Game data/saves|Windows|{{p|appdata}}\\2K Sports\\NBA 2K14\\Saves}}" NBA 2K15: pageId: 20717 steam: 282350 templates: - - '{{Game data/config|Windows|{{p|appdata}}\2K Sports\NBA 2K15\VideoSettings.cfg}}' - - '{{Game data/saves|Windows|{{p|steam}}\userdata\{{p|uid}}\282350\}}' + - "{{Game data/config|Windows|{{p|appdata}}\\2K Sports\\NBA 2K15\\VideoSettings.cfg}}" + - "{{Game data/saves|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\282350\\}}" NBA 2K16: pageId: 31328 steam: 370240 templates: - - '{{Game data/config|Windows|{{p|appdata}}\2K Sports\NBA 2K16\VideoSettings.cfg}}' - - '{{Game data/saves|Windows|{{p|steam}}\userdata\{{p|uid}}\370240\remote\}}' + - "{{Game data/config|Windows|{{p|appdata}}\\2K Sports\\NBA 2K16\\VideoSettings.cfg}}" + - "{{Game data/saves|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\370240\\remote\\}}" NBA 2K17: pageId: 39033 steam: 385760 templates: - - '{{Game data/config|Windows|{{p|appdata}}\2K Sports\NBA 2K17\VideoSettings.cfg}}' - - '{{Game data/saves|Windows|{{p|steam}}\userdata\{{p|uid}}\385760\remote\}}' + - "{{Game data/config|Windows|{{p|appdata}}\\2K Sports\\NBA 2K17\\VideoSettings.cfg}}" + - "{{Game data/saves|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\385760\\remote\\}}" NBA 2K18: pageId: 62170 steam: 577800 templates: - - '{{Game data/saves|Windows|{{p|steam}}\userdata\{{p|uid}}\577800\remote\}}' + - "{{Game data/saves|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\577800\\remote\\}}" NBA 2K19: pageId: 96171 steam: 841370 templates: - - '{{Game data/config|Windows|{{p|steam}}\userdata\{{p|uid}}\841370\remote\}}' - - '{{Game data/saves|Windows|{{p|steam}}\userdata\{{p|uid}}\841370\remote\}}' + - "{{Game data/config|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\841370\\remote\\}}" + - "{{Game data/saves|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\841370\\remote\\}}" NBA 2K20: pageId: 140199 steam: 1089350 templates: - - >- - {{Game data/config|Windows|{{p|steam}}\userdata\{{p|uid}}\1089350\remote\ Or {{p|appdata}}\2K Sports\NBA - 2K20\VideoSettings.cfg}} - - '{{Game data/saves|Windows|{{p|steam}}\userdata\{{p|uid}}\1089350\remote\}}' + - "{{Game data/config|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\1089350\\remote\\ Or {{p|appdata}}\\2K Sports\\NBA 2K20\\VideoSettings.cfg}}" + - "{{Game data/saves|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\1089350\\remote\\}}" NBA 2K21: pageId: 161564 steam: 1225330 templates: - - '{{Game data/config|Windows|{{P|appdata}}\2K Sports\NBA 2K21\}}' - - '{{Game data/saves|Windows|{{P|programdata}}\2K Sports\NBA 2K21\}}' + - "{{Game data/config|Windows|{{P|appdata}}\\2K Sports\\NBA 2K21\\}}" + - "{{Game data/saves|Windows|{{P|programdata}}\\2K Sports\\NBA 2K21\\}}" NBA 2K21 Arcade Edition: pageId: 167747 NBA 2K22: pageId: 170046 steam: 1644960 templates: - - '{{Game data/config|Windows|{{p|appdata}}\2K Sports\NBA 2K22\VideoSettings.cfg}}' + - "{{Game data/config|Windows|{{p|appdata}}\\2K Sports\\NBA 2K22\\VideoSettings.cfg}}" NBA 2K22 Arcade Edition: pageId: 171701 NBA 2K23: pageId: 179287 steam: 1919590 templates: - - '{{Game data/config|Windows|{{p|appdata}}\2K Sports\NBA 2K23\VideoSettings.cfg}}' + - "{{Game data/config|Windows|{{p|appdata}}\\2K Sports\\NBA 2K23\\VideoSettings.cfg}}" NBA 2K23 Arcade Edition: pageId: 182612 NBA 2K24: @@ -109270,26 +106371,26 @@ NBA Jam Tournament Edition: NBA Live 07: pageId: 190660 templates: - - '{{Game data/config|Windows|{{p|userprofile\documents}}\NBA LIVE 07\settings}}' - - '{{Game data/saves|Windows|{{p|userprofile\documents}}\NBA LIVE 07}}' + - "{{Game data/config|Windows|{{p|userprofile\\documents}}\\NBA LIVE 07\\settings}}" + - "{{Game data/saves|Windows|{{p|userprofile\\documents}}\\NBA LIVE 07}}" NBA Live 08: pageId: 175925 templates: - - '{{Game data/config|Windows|{{p|userprofile\documents}}\NBA LIVE 08\settings}}' - - '{{Game data/saves|Windows|{{p|userprofile\documents}}\NBA LIVE 08}}' + - "{{Game data/config|Windows|{{p|userprofile\\documents}}\\NBA LIVE 08\\settings}}" + - "{{Game data/saves|Windows|{{p|userprofile\\documents}}\\NBA LIVE 08}}" NBA Live 2000: pageId: 175923 NBA Live 2005: pageId: 190663 templates: - - '{{Game data/config|Windows|{{p|userprofile\documents}}\NBA LIVE 2005\settings}}' - - '{{Game data/saves|Windows|{{p|userprofile\documents}}\NBA LIVE 2005}}' + - "{{Game data/config|Windows|{{p|userprofile\\documents}}\\NBA LIVE 2005\\settings}}" + - "{{Game data/saves|Windows|{{p|userprofile\\documents}}\\NBA LIVE 2005}}" NBA Playgrounds: pageId: 62010 steam: 545270 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\NBAPlaygrounds\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\NBAPlaygrounds\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\NBAPlaygrounds\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\NBAPlaygrounds\\Saved\\SaveGames\\}}" NC Tower Defense 2: pageId: 62900 steam: 427610 @@ -109297,7 +106398,7 @@ NCAA Football 99: pageId: 187275 NCIS: pageId: 172702 -'NCradle: An 80s Synth Adventure': +"NCradle: An 80s Synth Adventure": pageId: 81068 steam: 789210 NDE Rescue: @@ -109316,32 +106417,24 @@ NEKOPALIVE: pageId: 33602 steam: 469990 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Nekopara\Saved\Config\WindowsNoEditor\*.*}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\Nekopara\Saved\Saved\SaveGames\Nekopara.sav}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\Nekopara\\Saved\\Config\\WindowsNoEditor\\*.*}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Nekopara\\Saved\\Saved\\SaveGames\\Nekopara.sav}}" NEKOPARA Extra: pageId: 102813 steam: 899970 steamSide: - 1088310 templates: - - >- - {{Game data/config|Windows|{{P|game}}\Profile\{{P|uid}}\Saves|{{P|appdata}}\NEKO - WORKs\nekopara_extra|{{P|userprofile}}\Documents\NEKO WORKs\nekopara_extra}} - - >- - {{Game data/saves|Windows|{{P|game}}\Profile\{{P|uid}}\Saves|{{P|appdata}}\NEKO - WORKs\nekopara_extra|{{P|userprofile}}\Documents\NEKO WORKs\nekopara_extra}} + - "{{Game data/config|Windows|{{P|game}}\\Profile\\{{P|uid}}\\Saves|{{P|appdata}}\\NEKO WORKs\\nekopara_extra|{{P|userprofile}}\\Documents\\NEKO WORKs\\nekopara_extra}}" + - "{{Game data/saves|Windows|{{P|game}}\\Profile\\{{P|uid}}\\Saves|{{P|appdata}}\\NEKO WORKs\\nekopara_extra|{{P|userprofile}}\\Documents\\NEKO WORKs\\nekopara_extra}}" NEKOPARA Vol. 0: pageId: 27348 steam: 385800 templates: - - >- - {{Game - data/config|Windows|{{P|game}}\savedata|{{P|appdata}}\NekoWorks\nekopara_vo0|{{P|userprofile}}Documents\NekoWorks\nekopara_vol0}} - - '{{Game data/config|Steam|{{p|steam}}/userdata/{{p|uid}}/385800/}}' - - >- - {{Game - data/saves|Windows|{{P|game}}\savedata|{{P|appdata}}\NekoWorks\nekopara_vo0|{{P|userprofile}}Documents\NekoWorks\nekopara_vol0}} - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/385800/}}' + - "{{Game data/config|Windows|{{P|game}}\\savedata|{{P|appdata}}\\NekoWorks\\nekopara_vo0|{{P|userprofile}}Documents\\NekoWorks\\nekopara_vol0}}" + - "{{Game data/config|Steam|{{p|steam}}/userdata/{{p|uid}}/385800/}}" + - "{{Game data/saves|Windows|{{P|game}}\\savedata|{{P|appdata}}\\NekoWorks\\nekopara_vo0|{{P|userprofile}}Documents\\NekoWorks\\nekopara_vol0}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/385800/}}" NEKOPARA Vol. 1: pageId: 21934 steam: 333600 @@ -109351,34 +106444,20 @@ NEKOPARA Vol. 1: - 774081 - 947650 templates: - - >- - {{Game data/config|Windows|{{P|game}}\savedata|{{P|appdata}}\NEKO - WORKs\nekopara_vol|{{P|userprofile}}Documents\NEKO WORKs\nekopara_vol1}} - - >- - {{Game data/saves|Windows|{{P|game}}\savedata|{{P|appdata}}\NEKO - WORKs\nekopara_vol|{{P|userprofile}}Documents\NEKO WORKs\nekopara_vol1}} + - "{{Game data/config|Windows|{{P|game}}\\savedata|{{P|appdata}}\\NEKO WORKs\\nekopara_vol|{{P|userprofile}}Documents\\NEKO WORKs\\nekopara_vol1}}" + - "{{Game data/saves|Windows|{{P|game}}\\savedata|{{P|appdata}}\\NEKO WORKs\\nekopara_vol|{{P|userprofile}}Documents\\NEKO WORKs\\nekopara_vol1}}" NEKOPARA Vol. 2: pageId: 31374 steam: 420110 templates: - - >- - {{Game - data/config|Windows|{{P|game}}\savedata|{{P|appdata}}\NekoWorks\nekopara_vol2|{{P|userprofile}}Documents\NEKO - WORKs\nekopara_vol2}} - - >- - {{Game - data/saves|Windows|{{P|game}}\savedata|{{P|appdata}}\NekoWorks\nekopara_vol2|{{P|userprofile}}Documents\NEKO - WORKs\nekopara_vol2}} + - "{{Game data/config|Windows|{{P|game}}\\savedata|{{P|appdata}}\\NekoWorks\\nekopara_vol2|{{P|userprofile}}Documents\\NEKO WORKs\\nekopara_vol2}}" + - "{{Game data/saves|Windows|{{P|game}}\\savedata|{{P|appdata}}\\NekoWorks\\nekopara_vol2|{{P|userprofile}}Documents\\NEKO WORKs\\nekopara_vol2}}" NEKOPARA Vol. 3: pageId: 60784 steam: 602520 templates: - - >- - {{Game data/config|Windows|{{P|game}}\config|{{P|appdata}}\NEKO WORKs\nekopara3|{{P|userprofile}}\Documents\NEKO - WORKs\nekopara_vol3}} - - >- - {{Game data/saves|Windows|{{P|game}}\savedata|{{P|appdata}}\NEKO WORKs\nekopara3|{{P|userprofile}}\Documents\NEKO - WORKs\nekopara_vol3}} + - "{{Game data/config|Windows|{{P|game}}\\config|{{P|appdata}}\\NEKO WORKs\\nekopara3|{{P|userprofile}}\\Documents\\NEKO WORKs\\nekopara_vol3}}" + - "{{Game data/saves|Windows|{{P|game}}\\savedata|{{P|appdata}}\\NEKO WORKs\\nekopara3|{{P|userprofile}}\\Documents\\NEKO WORKs\\nekopara_vol3}}" NEKOPARA Vol. 4: pageId: 164873 steam: 1406990 @@ -109388,12 +106467,12 @@ NEKOPUGI: NEKROTRONIC VR: pageId: 144447 steam: 1137170 -'NEO AQUARIUM: The King of Crustaceans': +"NEO AQUARIUM: The King of Crustaceans": pageId: 26880 steam: 355240 templates: - - '{{Game data/config|Windows|{{p|game}}\custom.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\sav\tmp.*|{{p|game}}\replay\}}' + - "{{Game data/config|Windows|{{p|game}}\\custom.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\sav\\tmp.*|{{p|game}}\\replay\\}}" NEO Impossible Bosses: pageId: 70020 steam: 676580 @@ -109402,37 +106481,30 @@ NEO Scavenger: pageId: 13272 steam: 248860 templates: - - >- - {{Game data/saves|Windows|{{p|appdata}}\Macromedia\Flash - Player\#SharedObjects\{{p|uid}}\{{p|game}}\NEOScavenger.exe\nsSGv1.sol|{{p|appdata}}\Macromedia\Flash - Player\#SharedObjects\{{p|uid}}\localhost\}} - - >- - {{Game data/saves|OS X|{{p|osxhome}}/Library/Preferences/Macromedia/Flash - Player/#SharedObjects/{{p|uid}}/localhost/nsSGv1.sol}} - - >- - {{Game - data/saves|Linux|{{p|linuxhome}}/.macromedia/Flash_Player/#SharedObjects/{{p|uid}}/{{p|game}}/NEOScavenger/nsSGv1.sol}} + - "{{Game data/saves|Windows|{{p|appdata}}\\Macromedia\\Flash Player\\#SharedObjects\\{{p|uid}}\\{{p|game}}\\NEOScavenger.exe\\nsSGv1.sol|{{p|appdata}}\\Macromedia\\Flash Player\\#SharedObjects\\{{p|uid}}\\localhost\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Preferences/Macromedia/Flash Player/#SharedObjects/{{p|uid}}/localhost/nsSGv1.sol}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.macromedia/Flash_Player/#SharedObjects/{{p|uid}}/{{p|game}}/NEOScavenger/nsSGv1.sol}}" NEO-NOW!: pageId: 41888 steam: 503420 -'NEO: The World Ends with You': +"NEO: The World Ends with You": pageId: 167753 steam: 1647550 templates: - - '{{Game data/saves|Epic Games Store|{{p|userprofile\Documents}}\NEO The World Ends with You\}}' - - '{{Game data/saves|Steam|{{p|userprofile\Documents}}\My Games\NEO The World Ends with You\}}' + - "{{Game data/saves|Epic Games Store|{{p|userprofile\\Documents}}\\NEO The World Ends with You\\}}" + - "{{Game data/saves|Steam|{{p|userprofile\\Documents}}\\My Games\\NEO The World Ends with You\\}}" NEOMORPH: pageId: 155510 steam: 1211360 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\BambuseaeGames\Neomorph\*.es3}}' + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\BambuseaeGames\\Neomorph\\*.es3}}" NEON SPACE WAR: pageId: 149756 steam: 1150270 NEON Ultra: pageId: 50795 steam: 528270 -'NEONARCADE: adventure puzzle muse': +"NEONARCADE: adventure puzzle muse": pageId: 120984 steam: 963960 NEONomicon: @@ -109450,7 +106522,7 @@ NEVERMORE VIII-XIII: NEVRDEAD: pageId: 67839 steam: 681000 -'NEXT JUMP: Shmup Tactics': +"NEXT JUMP: Shmup Tactics": pageId: 61500 steam: 624690 NFL Head Coach: @@ -109465,31 +106537,31 @@ NGU Idle: pageId: 147493 steam: 1147690 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\NGU Industries\NGU Idle\}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\NGU Industries\NGU Idle\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\NGU Industries\\NGU Idle\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\NGU Industries\\NGU Idle\\}}" NHL 06: pageId: 186791 NHL 09: pageId: 178151 templates: - - '{{Game data/config|Windows|{{p|game}}\*.cfg}}' - - '{{Game data/saves|Windows|{{p|userprofile|documents}}\NHL09}}' + - "{{Game data/config|Windows|{{p|game}}\\*.cfg}}" + - "{{Game data/saves|Windows|{{p|userprofile|documents}}\\NHL09}}" NHL 2001: pageId: 181439 NHL 2004: pageId: 157520 templates: - - '{{Game data/config|Windows|{{p|userprofile\documents}}\NHL 2004}}' - - '{{Game data/saves|Windows|{{p|userprofile\documents}}\NHL 2004}}' + - "{{Game data/config|Windows|{{p|userprofile\\documents}}\\NHL 2004}}" + - "{{Game data/saves|Windows|{{p|userprofile\\documents}}\\NHL 2004}}" NHL 97: pageId: 24276 templates: - - '{{Game data/saves|Windows|{{p|game}}\User}}' + - "{{Game data/saves|Windows|{{p|game}}\\User}}" NHL 98: pageId: 190658 NHL 99: pageId: 24808 -'NHRA: Speed for All': +"NHRA: Speed for All": pageId: 178428 steam: 1681880 NIGHT FALLEN: @@ -109504,7 +106576,7 @@ NO LOVE: NO THING: pageId: 37399 steam: 444800 -'NO, THANK YOU!!!': +"NO, THANK YOU!!!": pageId: 123745 steam: 975000 NO-GO: @@ -109525,10 +106597,10 @@ NOISZ: NOLA Is Burning: pageId: 76893 steam: 752810 -'NORR part I: Ace Shot': +"NORR part I: Ace Shot": pageId: 141505 steam: 1112330 -'NOTE : a Composer and a Note': +"NOTE : a Composer and a Note": pageId: 129599 steam: 1039330 NOTES: @@ -109543,18 +106615,18 @@ NOYO-!: NPCs: pageId: 123954 steam: 985040 -'NS2: Combat': +"NS2: Combat": pageId: 49410 steam: 310110 NSFW Solitaire: pageId: 189720 steam: 2274120 templates: - - '{{Game data/saves|Windows|/steamapps/common/NSFW Solitaire/SteamCloudSave}}' + - "{{Game data/saves|Windows|/steamapps/common/NSFW Solitaire/SteamCloudSave}}" NSFW Studio: pageId: 178950 steam: 1760080 -'NSFW: Not a Simulator for Working': +"NSFW: Not a Simulator for Working": pageId: 52263 steam: 545030 NSFWare: @@ -109575,12 +106647,12 @@ NUVAVULT: NVL: pageId: 77871 steam: 756880 -'NYR: New York Race': +"NYR: New York Race": pageId: 89142 templates: - - '{{Game data/config|Windows|{{p|game}}\NYR.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\Save}}' -'Naau: The Lost Eye': + - "{{Game data/config|Windows|{{p|game}}\\NYR.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\Save}}" +"Naau: The Lost Eye": pageId: 145413 steam: 1124600 Naboki: @@ -109589,7 +106661,7 @@ Naboki: Nadia Was Here: pageId: 61784 steam: 436070 -'Nadir: A Grimdark Deckbuilder': +"Nadir: A Grimdark Deckbuilder": gog: 1847019949 gogSide: - 1209981590 @@ -109604,36 +106676,34 @@ Naev: pageId: 66053 steam: 598530 templates: - - '{{Game data/config|Windows|{{p|appdata}}\naev\}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.local/share/naev/}}' - - '{{Game data/saves|Windows|{{p|appdata}}\naev\saves}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.local/share/naev/saves}}' -Nail'd: + - "{{Game data/config|Windows|{{p|appdata}}\\naev\\}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.local/share/naev/}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\naev\\saves}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.local/share/naev/saves}}" +"Nail'd": pageId: 26407 steam: 40380 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\naild\Out\Settings\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\naild\Out\profiles\}}' -'Nairi: Tower of Shirin': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\naild\\Out\\Settings\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\naild\\Out\\profiles\\}}" +"Nairi: Tower of Shirin": pageId: 96081 steam: 802450 templates: - - >- - {{Game data/config|Windows|{{P|userprofile}}\AppData\LocalLow\HomeBearStudio\NAIRI_ Tower of - Shirin\globalData.dat|{{P|hkcu}}\Software\HomeBearStudio\NAIRI: Tower of Shirin\}} - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\HomeBearStudio\NAIRI_ Tower of Shirin\savefile*}}' + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\HomeBearStudio\\NAIRI_ Tower of Shirin\\globalData.dat|{{P|hkcu}}\\Software\\HomeBearStudio\\NAIRI: Tower of Shirin\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\HomeBearStudio\\NAIRI_ Tower of Shirin\\savefile*}}" NaissanceE: pageId: 50658 steam: 265690 templates: - - '{{Game data/config|Windows|{{p|game}}\UDKGame\Config}}' + - "{{Game data/config|Windows|{{p|game}}\\UDKGame\\Config}}" Nakawak: pageId: 89294 steam: 716150 Naked Sun: pageId: 90380 steam: 762490 -'Naked and Afraid: The Game': +"Naked and Afraid: The Game": pageId: 145246 steam: 1082410 NakedMan VS The Clothes: @@ -109647,10 +106717,10 @@ Naklua VR: steam: 650980 Naldiied School and Learning and Math and 7 Keys: pageId: 140258 -'Namariel Legends: Iron Lord': +"Namariel Legends: Iron Lord": pageId: 49979 renamedFrom: - - 'Namariel Legends: Iron Lord Premium Edition' + - "Namariel Legends: Iron Lord Premium Edition" steam: 302730 Namaste Virtual Yoga Retreat: pageId: 79716 @@ -109658,27 +106728,27 @@ Namaste Virtual Yoga Retreat: Namco Museum 50th Anniversary: pageId: 145672 templates: - - '{{Game data/config|Windows|{{p|game}}\config\settings.dat}}' - - '{{Game data/saves|Windows|{{p|game}}\config\scores.dat}}' + - "{{Game data/config|Windows|{{p|game}}\\config\\settings.dat}}" + - "{{Game data/saves|Windows|{{p|game}}\\config\\scores.dat}}" Namco Museum Archives Vol. 1: pageId: 161372 steam: 1250250 templates: - - '{{Game data/config|Windows|{{P|appdata}}\NAMCO MUSEUM ARCHIVES Vol 1\savedata\savecfg.txt}}' - - '{{Game data/saves|Windows|{{P|steam}}\userdata\{{P|uid}}\1250250\remote\}}' + - "{{Game data/config|Windows|{{P|appdata}}\\NAMCO MUSEUM ARCHIVES Vol 1\\savedata\\savecfg.txt}}" + - "{{Game data/saves|Windows|{{P|steam}}\\userdata\\{{P|uid}}\\1250250\\remote\\}}" Namco Museum Archives Vol. 2: pageId: 161480 steam: 1254620 templates: - - '{{Game data/config|Windows|{{P|appdata}}\NAMCO MUSEUM ARCHIVES Vol 2\savedata\savecfg.txt}}' - - '{{Game data/saves|Windows|{{P|steam}}\userdata\{{P|uid}}\1254620\remote\}}' + - "{{Game data/config|Windows|{{P|appdata}}\\NAMCO MUSEUM ARCHIVES Vol 2\\savedata\\savecfg.txt}}" + - "{{Game data/saves|Windows|{{P|steam}}\\userdata\\{{P|uid}}\\1254620\\remote\\}}" Name the Song Quiz: pageId: 81689 steam: 792480 Nameless Worlds: pageId: 135437 steam: 1066440 -'Nameless: The One Thing You Must Recall': +"Nameless: The One Thing You Must Recall": pageId: 37281 steam: 337930 Nana in the Dark: @@ -109688,137 +106758,137 @@ Nanairo Reincarnation: pageId: 126051 steam: 751450 templates: - - '{{Game data/config|Windows|{{p|game}}\save\nanairo.xml}}' - - '{{Game data/saves|Windows|{{p|game}}\save\}}' -'Nancy Drew Dossier: Lights, Camera, Curses!': + - "{{Game data/config|Windows|{{p|game}}\\save\\nanairo.xml}}" + - "{{Game data/saves|Windows|{{p|game}}\\save\\}}" +"Nancy Drew Dossier: Lights, Camera, Curses!": pageId: 41274 steam: 31870 -'Nancy Drew Dossier: Resorting to Danger!': +"Nancy Drew Dossier: Resorting to Danger!": pageId: 41200 steam: 42200 -'Nancy Drew: Alibi in Ashes': +"Nancy Drew: Alibi in Ashes": pageId: 40863 steam: 202670 -'Nancy Drew: Curse of Blackmoor Manor': +"Nancy Drew: Curse of Blackmoor Manor": gog: 1207659205 pageId: 36384 steam: 31830 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\The Curse of Blackmoor Manor\Game.INI}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\The Curse of Blackmoor Manor\*.SAV}}' -'Nancy Drew: Danger by Design': + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\The Curse of Blackmoor Manor\\Game.INI}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\The Curse of Blackmoor Manor\\*.SAV}}" +"Nancy Drew: Danger by Design": pageId: 41225 steam: 31800 -'Nancy Drew: Danger on Deception Island': +"Nancy Drew: Danger on Deception Island": pageId: 41222 steam: 31840 -'Nancy Drew: Ghost Dogs of Moon Lake': +"Nancy Drew: Ghost Dogs of Moon Lake": pageId: 41227 steam: 31850 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\Ghost Dogs of Moon Lake\Game.INI}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\Ghost Dogs of Moon Lake\*.SAV}}' -'Nancy Drew: Ghost of Thornton Hall': + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\Ghost Dogs of Moon Lake\\Game.INI}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\Ghost Dogs of Moon Lake\\*.SAV}}" +"Nancy Drew: Ghost of Thornton Hall": pageId: 40624 steam: 226820 -'Nancy Drew: Labyrinth of Lies': +"Nancy Drew: Labyrinth of Lies": pageId: 57894 steam: 572710 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\Labyrinth of Lies\Labyrinth.INI }}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\Labyrinth of Lies\*.HiLieSave }}' -'Nancy Drew: Last Train to Blue Moon Canyon': + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\Labyrinth of Lies\\Labyrinth.INI }}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\Labyrinth of Lies\\*.HiLieSave }}" +"Nancy Drew: Last Train to Blue Moon Canyon": pageId: 41224 steam: 31810 -'Nancy Drew: Legend of the Crystal Skull': +"Nancy Drew: Legend of the Crystal Skull": pageId: 41272 steam: 31860 -'Nancy Drew: Message in a Haunted Mansion': +"Nancy Drew: Message in a Haunted Mansion": pageId: 61836 steam: 615770 -'Nancy Drew: Midnight in Salem': +"Nancy Drew: Midnight in Salem": pageId: 150798 steam: 1038450 templates: - - '{{Game data/config|Windows|{{p|appdata}}\LocalLow\HeR Interactive\MidnightInSalem\Settings.ini}}' - - '{{Game data/saves|Windows|{{p|appdata}}\LocalLow\HeR Interactive\MidnightInSalem\Saves\*.ndsav}}' -'Nancy Drew: Ransom of the Seven Ships': + - "{{Game data/config|Windows|{{p|appdata}}\\LocalLow\\HeR Interactive\\MidnightInSalem\\Settings.ini}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\LocalLow\\HeR Interactive\\MidnightInSalem\\Saves\\*.ndsav}}" +"Nancy Drew: Ransom of the Seven Ships": pageId: 41262 steam: 31980 -'Nancy Drew: Sea of Darkness': +"Nancy Drew: Sea of Darkness": pageId: 57415 steam: 572700 templates: - - '{{Game data/config|Windows| {{P|userprofile\Documents}}\SeaOfDarkness\SeaOfDarkness.INI }}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\SeaOfDarkness\*.HiSeaSave }}' -'Nancy Drew: Secret of the Old Clock': + - "{{Game data/config|Windows| {{P|userprofile\\Documents}}\\SeaOfDarkness\\SeaOfDarkness.INI }}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\SeaOfDarkness\\*.HiSeaSave }}" +"Nancy Drew: Secret of the Old Clock": pageId: 41223 steam: 31880 -'Nancy Drew: Secret of the Scarlet Hand': +"Nancy Drew: Secret of the Scarlet Hand": pageId: 41228 steam: 31890 -'Nancy Drew: Secrets Can Kill': +"Nancy Drew: Secrets Can Kill": pageId: 182317 -'Nancy Drew: Secrets Can Kill Remastered': +"Nancy Drew: Secrets Can Kill Remastered": pageId: 40940 steam: 42210 -'Nancy Drew: Shadow at the Water''s Edge': +"Nancy Drew: Shadow at the Water's Edge": pageId: 40912 steam: 200080 -'Nancy Drew: Stay Tuned for Danger': +"Nancy Drew: Stay Tuned for Danger": pageId: 171416 templates: - - '{{Game data/config|Windows|{{p|game}}\game.ini }}' - - '{{Game data/saves|Windows|{{p|game}}\*.SAV }}' -'Nancy Drew: The Captive Curse': + - "{{Game data/config|Windows|{{p|game}}\\game.ini }}" + - "{{Game data/saves|Windows|{{p|game}}\\*.SAV }}" +"Nancy Drew: The Captive Curse": pageId: 40942 steam: 42220 -'Nancy Drew: The Creature of Kapu Cave': +"Nancy Drew: The Creature of Kapu Cave": pageId: 41277 steam: 31900 -'Nancy Drew: The Deadly Device': +"Nancy Drew: The Deadly Device": pageId: 40701 steam: 220420 -'Nancy Drew: The Final Scene': +"Nancy Drew: The Final Scene": pageId: 61446 steam: 615730 -'Nancy Drew: The Haunted Carousel': +"Nancy Drew: The Haunted Carousel": pageId: 41226 steam: 31820 -'Nancy Drew: The Haunting of Castle Malloy': +"Nancy Drew: The Haunting of Castle Malloy": pageId: 41273 steam: 31910 -'Nancy Drew: The Phantom of Venice': +"Nancy Drew: The Phantom of Venice": pageId: 41275 steam: 31920 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\The Phantom of Venice\PhantomOfVenice.INI}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\The Phantom of Venice\*.HiVenSave}}' -'Nancy Drew: The Secret of Shadow Ranch': + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\The Phantom of Venice\\PhantomOfVenice.INI}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\The Phantom of Venice\\*.HiVenSave}}" +"Nancy Drew: The Secret of Shadow Ranch": pageId: 56330 steam: 572740 -'Nancy Drew: The Shattered Medallion': +"Nancy Drew: The Shattered Medallion": pageId: 59013 steam: 572720 -'Nancy Drew: The Silent Spy': +"Nancy Drew: The Silent Spy": pageId: 60440 steam: 572730 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\The Silent Spy\Spy.INI }}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\The Silent Spy\*.HiSpySave }}' -'Nancy Drew: The White Wolf of Icicle Creek': + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\The Silent Spy\\Spy.INI }}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\The Silent Spy\\*.HiSpySave }}" +"Nancy Drew: The White Wolf of Icicle Creek": pageId: 41276 steam: 31930 -'Nancy Drew: Tomb of the Lost Queen': +"Nancy Drew: Tomb of the Lost Queen": pageId: 40781 steam: 210230 -'Nancy Drew: Trail of the Twister': +"Nancy Drew: Trail of the Twister": pageId: 40944 steam: 42230 -'Nancy Drew: Treasure in the Royal Tower': +"Nancy Drew: Treasure in the Royal Tower": pageId: 62712 steam: 615780 -'Nancy Drew: Warnings at Waverly Academy': +"Nancy Drew: Warnings at Waverly Academy": pageId: 41186 steam: 43600 Nandeyanen!? - The 1st Sûtra: @@ -109868,12 +106938,12 @@ Nanos: Nanosaur: pageId: 32121 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Ideas From the Deep\Nanosaur\Prefs}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Ideas From the Deep\Nanosaur\HighScores}}' -'Nanosaur 2: Hatchling': + - "{{Game data/config|Windows|{{p|appdata}}\\Ideas From the Deep\\Nanosaur\\Prefs}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Ideas From the Deep\\Nanosaur\\HighScores}}" +"Nanosaur 2: Hatchling": pageId: 32126 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Ideas From the Deep\Nanosaur 2\Preferences}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Ideas From the Deep\\Nanosaur 2\\Preferences}}" Nanoswarm: pageId: 121000 steam: 960600 @@ -109882,10 +106952,8 @@ Nanotale - Typing Chronicles: pageId: 124599 steam: 944920 templates: - - >- - {{Game data/config|Windows|{{P|hkcu}}\SOFTWARE\Fishing Cactus\Nanotale|{{P|userprofile\appdata\locallow}}\Fishing - Cactus\Nanotale\Save.sav}} - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Fishing Cactus\Nanotale\Save.sav}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\SOFTWARE\\Fishing Cactus\\Nanotale|{{P|userprofile\\appdata\\locallow}}\\Fishing Cactus\\Nanotale\\Save.sav}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Fishing Cactus\\Nanotale\\Save.sav}}" Nanotris: pageId: 41934 steam: 460590 @@ -109903,22 +106971,20 @@ Nanuleu: pageId: 53097 steam: 511500 templates: - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\Selva Interactive\Nanuleu}}' + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\Selva Interactive\\Nanuleu}}" Napoleon: pageId: 189679 -'Napoleon: Total War': +"Napoleon: Total War": pageId: 4456 steam: 34030 templates: - - '{{Game data/config|Windows|{{p|appdata}}\The Creative Assembly\Napoleon\}}' - - '{{Game data/saves|Windows|{{p|appdata}}\The Creative Assembly\Napoleon\save_games\}}' -'Naraka: Bladepoint': + - "{{Game data/config|Windows|{{p|appdata}}\\The Creative Assembly\\Napoleon\\}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\The Creative Assembly\\Napoleon\\save_games\\}}" +"Naraka: Bladepoint": pageId: 154617 steam: 1203220 templates: - - >- - {{Game - data/config|Windows|{{p|game}}\NarakaBladepoint_Data\QualitySettingsData.txt|{{p|userprofile\appdata\locallow}}\24Entertainment\Naraka\}} + - "{{Game data/config|Windows|{{p|game}}\\NarakaBladepoint_Data\\QualitySettingsData.txt|{{p|userprofile\\appdata\\locallow}}\\24Entertainment\\Naraka\\}}" Narazumono: pageId: 135014 steam: 1063210 @@ -109930,42 +106996,36 @@ Narc: renamedFrom: - NARC templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\ZOO Digital\NARC\Global}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\NARC\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\ZOO Digital\\NARC\\Global}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\NARC\\}}" Narcissu: pageId: 29927 steam: 264380 templates: - - '{{Game data/config|Windows|{{p|game}}\saves\}}' - - '{{Game data/saves|Windows|{{p|game}}\saves\}}' + - "{{Game data/config|Windows|{{p|game}}\\saves\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\saves\\}}" Narcissu 10th Anniversary Anthology Project: pageId: 33622 steam: 426690 templates: - - >- - {{Game - data/config|Windows|{{p|hkcu}}\Software\STAGE-NANA\Narcissu_1_2\|{{p|hkcu}}\Software\STAGE-NANA\Narcissu_A_Little_Iris\|{{p|hkcu}}\Software\STAGE-NANA\Narcissu_Himeko_Epilogue\|{{p|hkcu}}\Software\STAGE-NANA\Narcissu_Sumire\|{{p|hkcu}}\Software\STAGE-NANA\Narcissu_Zero\}} - - >- - {{Game - data/saves|Windows|{{p|game}}\narci_himeko\savedata\*|{{p|game}}\narci_iris\savedata\*|{{p|game}}\narci_onetwo\savedata\*|{{p|game}}\narci_sumire\savedata\*|{{p|game}}\narci_zero\savedata\*}} + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\STAGE-NANA\\Narcissu_1_2\\|{{p|hkcu}}\\Software\\STAGE-NANA\\Narcissu_A_Little_Iris\\|{{p|hkcu}}\\Software\\STAGE-NANA\\Narcissu_Himeko_Epilogue\\|{{p|hkcu}}\\Software\\STAGE-NANA\\Narcissu_Sumire\\|{{p|hkcu}}\\Software\\STAGE-NANA\\Narcissu_Zero\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\narci_himeko\\savedata\\*|{{p|game}}\\narci_iris\\savedata\\*|{{p|game}}\\narci_onetwo\\savedata\\*|{{p|game}}\\narci_sumire\\savedata\\*|{{p|game}}\\narci_zero\\savedata\\*}}" Narco Strike: pageId: 129951 steam: 1020410 -'Narcos: Rise of the Cartels': +"Narcos: Rise of the Cartels": pageId: 146802 steam: 914110 templates: - - >- - {{Game - data/config|Windows|{{P|localappdata}}\Narcos\Saved\SaveGames\NarcosRotC_*.sav|{{P|localappdata}}\Narcos\Saved\Config\WindowsNoEditor\}} - - '{{Game data/saves|Windows|{{P|localappdata}}\Narcos\Saved\SaveGames\NarcosSave_*.sav}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\Narcos\\Saved\\SaveGames\\NarcosRotC_*.sav|{{P|localappdata}}\\Narcos\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Narcos\\Saved\\SaveGames\\NarcosSave_*.sav}}" Narcosis: pageId: 33492 steam: 366870 templates: - - '{{Game data/config|Windows|{{P|userprofile}}\AppData\LocalLow\Honor Code\Narcosis\Resources\Data\Datas\}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Honor Code\Narcosis\Resources\Data\Datas\}}' -'Narcotics Police: Black and White': + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Honor Code\\Narcosis\\Resources\\Data\\Datas\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Honor Code\\Narcosis\\Resources\\Data\\Datas\\}}" +"Narcotics Police: Black and White": pageId: 62933 steam: 637860 Narita Boy: @@ -109973,65 +107033,60 @@ Narita Boy: pageId: 167216 steam: 1069530 templates: - - |- - {{Game data/config|Windows|{{P|userprofile\appdata\locallow}}\StudioKoba\Narita Boy\Steam\{{P|uid}} -
{{p|hkcu}}\Software\StudioKoba\Narita Boy}} - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\StudioKoba\Narita Boy\Steam\{{P|uid}}}}' - - >- - {{Game data/saves|Microsoft - Store|{{P|localappdata}}\Packages\Team17DigitalLimited.NartiaBoyWin10_j5x4vj4y67jhc\SystemAppData\wgs\ REALLY LONG - #\ADDITIONAL LONG #}} + - "{{Game data/config|Windows|{{P|userprofile\\appdata\\locallow}}\\StudioKoba\\Narita Boy\\Steam\\{{P|uid}}\n
{{p|hkcu}}\\Software\\StudioKoba\\Narita Boy}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\StudioKoba\\Narita Boy\\Steam\\{{P|uid}}}}" + - "{{Game data/saves|Microsoft Store|{{P|localappdata}}\\Packages\\Team17DigitalLimited.NartiaBoyWin10_j5x4vj4y67jhc\\SystemAppData\\wgs\\ REALLY LONG #\\ADDITIONAL LONG #}}" Nark the Dragon: pageId: 79155 steam: 763740 Naruto Online: pageId: 175632 -'Naruto Shippuden: Ultimate Ninja Storm 2': +"Naruto Shippuden: Ultimate Ninja Storm 2": pageId: 68798 steam: 543870 templates: - - '{{Game data/config|Windows|{{p|game}}\config.ini}}' - - '{{Game data/saves|Windows|{{p|steam}}\userdata\{{p|uid}}\543870\remote\}}' -'Naruto Shippuden: Ultimate Ninja Storm 3 Full Burst': + - "{{Game data/config|Windows|{{p|game}}\\config.ini}}" + - "{{Game data/saves|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\543870\\remote\\}}" +"Naruto Shippuden: Ultimate Ninja Storm 3 Full Burst": pageId: 11596 steam: 234670 templates: - - '{{Game data/config|Windows|{{p|game}}\NS3FB.ini}}' - - '{{Game data/saves|Windows|{{p|steam}}\userdata\{{p|uid}}\234670\remote\storm3.s}}' -'Naruto Shippuden: Ultimate Ninja Storm 3 Full Burst HD': + - "{{Game data/config|Windows|{{p|game}}\\NS3FB.ini}}" + - "{{Game data/saves|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\234670\\remote\\storm3.s}}" +"Naruto Shippuden: Ultimate Ninja Storm 3 Full Burst HD": pageId: 70721 steam: 234670 templates: - - '{{Game data/config|Windows|{{p|game}}\dlc\config.ini}}' - - '{{Game data/saves|Windows|{{p|steam}}\userdata\{{p|uid}}\234670\remote\}}' -'Naruto Shippuden: Ultimate Ninja Storm 4': + - "{{Game data/config|Windows|{{p|game}}\\dlc\\config.ini}}" + - "{{Game data/saves|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\234670\\remote\\}}" +"Naruto Shippuden: Ultimate Ninja Storm 4": pageId: 23068 steam: 349040 templates: - - '{{Game data/config|Windows|{{p|game}}\config.ini}}' -'Naruto Shippuden: Ultimate Ninja Storm Revolution': + - "{{Game data/config|Windows|{{p|game}}\\config.ini}}" +"Naruto Shippuden: Ultimate Ninja Storm Revolution": pageId: 19901 steam: 272510 templates: - - '{{Game data/config|Windows|{{p|game}}\NSUNSR.ini}}' - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\272510\remote\STORMR.S}}' -'Naruto X Boruto: Ultimate Ninja Storm Connections': + - "{{Game data/config|Windows|{{p|game}}\\NSUNSR.ini}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\272510\\remote\\STORMR.S}}" +"Naruto X Boruto: Ultimate Ninja Storm Connections": pageId: 185574 steam: 1020790 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/saves|Windows|{{p|steam}}\userdata\{{p|uid}}\1020790\remote\}}' -'Naruto to Boruto: Shinobi Striker': + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\1020790\\remote\\}}" +"Naruto to Boruto: Shinobi Striker": pageId: 80061 steam: 633230 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\Saved Games\NARUTO TO BORUTO SHINOBI STRIKER\}}' -'Naruto: Ultimate Ninja Storm': + - "{{Game data/saves|Windows|{{p|userprofile}}\\Saved Games\\NARUTO TO BORUTO SHINOBI STRIKER\\}}" +"Naruto: Ultimate Ninja Storm": pageId: 68800 steam: 495140 templates: - - '{{Game data/config|Windows|{{p|game}}\config.ini}}' - - '{{Game data/saves|Windows|{{p|steam}}\userdata\{{p|uid}}\495140\remote\}}' + - "{{Game data/config|Windows|{{p|game}}\\config.ini}}" + - "{{Game data/saves|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\495140\\remote\\}}" Narwhal Heist: pageId: 130623 steam: 1047850 @@ -110046,7 +107101,7 @@ Nascence: Nash Racing: pageId: 56990 steam: 581200 -'Nash Racing 2: Muscle Cars': +"Nash Racing 2: Muscle Cars": pageId: 72985 steam: 713580 NashBored: @@ -110064,15 +107119,15 @@ Nasway: Natari at the Bubble Planet: pageId: 75986 steam: 573800 -'Nation Breakers: Steam Arena': +"Nation Breakers: Steam Arena": pageId: 145538 steam: 1118320 Nation Red: pageId: 2653 steam: 39800 templates: - - '{{Game data/config|Windows|{{p|appdata}}\NationRed\pcini.txt}}' -'Nation War: Chronicles': + - "{{Game data/config|Windows|{{p|appdata}}\\NationRed\\pcini.txt}}" +"Nation War: Chronicles": pageId: 65754 steam: 669320 National Girls: @@ -110085,7 +107140,7 @@ National Park Girls: pageId: 129891 steam: 1036580 templates: - - '{{Game data/saves|Windows|{{P|appdata}}\RenPy\NationalParkGirls-1531944291}}' + - "{{Game data/saves|Windows|{{P|appdata}}\\RenPy\\NationalParkGirls-1531944291}}" National Rugby Manager: pageId: 80645 steam: 752640 @@ -110099,13 +107154,9 @@ Natsuki Chronicles: pageId: 173183 steam: 1175190 templates: - - >- - {{Game - data/config|Windows|{{p|appdata}}\Qute\NatsukiChronicles\Natsuki_Desktop_Steam.display.ini|{{p|appdata}}\Qute\NatsukiChronicles\SystemData.sav}} - - >- - {{Game - data/saves|Windows|{{p|appdata}}\Qute\NatsukiChronicles\SystemData.sav|{{p|appdata}}\Qute\NatsukiChronicles\StorySaveData##.sav}} -Natsuki's Life In Prison: + - "{{Game data/config|Windows|{{p|appdata}}\\Qute\\NatsukiChronicles\\Natsuki_Desktop_Steam.display.ini|{{p|appdata}}\\Qute\\NatsukiChronicles\\SystemData.sav}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Qute\\NatsukiChronicles\\SystemData.sav|{{p|appdata}}\\Qute\\NatsukiChronicles\\StorySaveData##.sav}}" +"Natsuki's Life In Prison": pageId: 173742 steam: 1528000 Natural - Beyond Nature: @@ -110118,15 +107169,13 @@ Natural Selection: pageId: 19056 steam: 120 templates: - - '{{Game data/config|Windows|{{P|game}}\Half-Life\ns\}}' + - "{{Game data/config|Windows|{{P|game}}\\Half-Life\\ns\\}}" Natural Selection 2: pageId: 434 steam: 4920 templates: - - >- - {{Game data/config|Windows|{{p|appdata}}\Natural Selection 2\system_options.xml|{{p|appdata}}\Natural Selection - 2\*.json}} - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/4920/}}' + - "{{Game data/config|Windows|{{p|appdata}}\\Natural Selection 2\\system_options.xml|{{p|appdata}}\\Natural Selection 2\\*.json}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/4920/}}" Natural Soccer: pageId: 48815 steam: 347690 @@ -110154,10 +107203,10 @@ Nature Treks VR: Nature Zen: pageId: 141121 steam: 1080960 -Nature's Wrath VR: +"Nature's Wrath VR": pageId: 52083 steam: 540050 -Nature's Zombie Apocalypse: +"Nature's Zombie Apocalypse": pageId: 47172 steam: 378530 NatureFly: @@ -110188,19 +107237,16 @@ Nauticrawl: pageId: 132757 steam: 922100 templates: - - '{{Game data/config|Windows|{{p|userprofile\appdata\locallow}}\Nauticrawl|{{p|game}}\nauticrawlGameSettings}}' - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\Nauticrawl|{{p|game}}\nauticrawlGameData}}' - - >- - {{Game data/saves|OS X|~Library/Application - Support/Steam/UserData/{{P|uid}}/922100{{Refurl|url=https://steamcommunity.com/app/922100/discussions/0/1635292137560376521/#c2692512878724001695|title=Save - game storage? :: Nauticrawl General Discussions|date=May 2023}}}} + - "{{Game data/config|Windows|{{p|userprofile\\appdata\\locallow}}\\Nauticrawl|{{p|game}}\\nauticrawlGameSettings}}" + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\Nauticrawl|{{p|game}}\\nauticrawlGameData}}" + - "{{Game data/saves|OS X|~Library/Application Support/Steam/UserData/{{P|uid}}/922100{{Refurl|url=https://steamcommunity.com/app/922100/discussions/0/1635292137560376521/#c2692512878724001695|title=Save game storage? :: Nauticrawl General Discussions|date=May 2023}}}}" Naval Action: pageId: 44894 steam: 311310 Naval Armada: pageId: 155508 steam: 618620 -'Naval War: Arctic Circle': +"Naval War: Arctic Circle": pageId: 2161 steam: 200050 Naval Warfare: @@ -110212,10 +107258,10 @@ NavalArt: Navalia: pageId: 62334 steam: 551630 -'Navalny 20!8: The Rise of Evil': +"Navalny 20!8: The Rise of Evil": pageId: 78772 steam: 761330 -'Navalny: Posledniy miting': +"Navalny: Posledniy miting": pageId: 121904 steam: 959830 Navigator: @@ -110224,7 +107270,7 @@ Navigator: Navpoint: pageId: 46340 steam: 297080 -'Navy Field 2: Conqueror of the Ocean': +"Navy Field 2: Conqueror of the Ocean": pageId: 48523 steam: 338540 Navy Strike: @@ -110238,7 +107284,7 @@ Navyfield: Naxia: pageId: 135861 steam: 1049220 -Nayla's Castle: +"Nayla's Castle": gog: 1686449631 pageId: 190593 steam: 2097880 @@ -110265,16 +107311,16 @@ Ne no Kami - The Two Princess Knights of Kyoto: pageId: 39195 steam: 490890 templates: - - '{{Game data/config|Windows|{{P|game}}\savedata}}' - - '{{Game data/saves|Windows|{{P|game}}\savedata}}' + - "{{Game data/config|Windows|{{P|game}}\\savedata}}" + - "{{Game data/saves|Windows|{{P|game}}\\savedata}}" Ne no Kami - The Two Princess Knights of Kyoto Part 2: gog: 1923907932 pageId: 70078 steam: 701420 templates: - - '{{Game data/config|Windows|{{P|appdata}}\kuroirodoruyomiji\nenokami2}}' - - '{{Game data/saves|Windows|{{P|appdata}}\kuroirodoruyomiji\nenokami2}}' -'NeXus: One Core': + - "{{Game data/config|Windows|{{P|appdata}}\\kuroirodoruyomiji\\nenokami2}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\kuroirodoruyomiji\\nenokami2}}" +"NeXus: One Core": pageId: 48587 steam: 341080 Near Bird: @@ -110284,7 +107330,7 @@ Near Death: pageId: 35876 steam: 327560 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Orthogonal Games\Near Death\}}' + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Orthogonal Games\\Near Death\\}}" Near Death Experience: pageId: 63406 steam: 647500 @@ -110305,7 +107351,7 @@ NearPrime VR - Net Burn: renamedFrom: - NearPrime - Net Burn steam: 1135850 -Nearwood - Collector's Edition: +"Nearwood - Collector's Edition": pageId: 37973 steam: 286540 Nebuchadnezzar: @@ -110332,16 +107378,16 @@ Necesse: pageId: 153553 steam: 1169040 templates: - - '{{Game data/config|Linux|{{p|xdgconfighome}}/Necesse/cfg}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Necesse\saves\*}}' - - '{{Game data/saves|Linux|{{p|xdgconfighome}}/Necesse/saves}}' + - "{{Game data/config|Linux|{{p|xdgconfighome}}/Necesse/cfg}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Necesse\\saves\\*}}" + - "{{Game data/saves|Linux|{{p|xdgconfighome}}/Necesse/saves}}" Neckbeardia: pageId: 144139 steam: 1102390 -'Neckbeards: Basement Arena': +"Neckbeards: Basement Arena": pageId: 68168 steam: 693380 -'Neckbeards: Cuck Invaders': +"Neckbeards: Cuck Invaders": pageId: 79244 steam: 766420 Necken: @@ -110362,26 +107408,26 @@ Necro Story: Necro Wars: pageId: 153858 steam: 787150 -'NecroLand: Undead Corps': +"NecroLand: Undead Corps": gog: 1697928525 pageId: 153874 renamedFrom: - - 'NecroLand : Battle Royale' + - "NecroLand : Battle Royale" steam: 1185620 NecroVisioN: gog: 1624457803 pageId: 3614 steam: 7860 templates: - - '{{Game data/config|Windows|{{p|game}}\Bin\config.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\Profiles\{{p|uid}}\SaveGame\}}' -'NecroVisioN: Lost Company': + - "{{Game data/config|Windows|{{p|game}}\\Bin\\config.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\Profiles\\{{p|uid}}\\SaveGame\\}}" +"NecroVisioN: Lost Company": gog: 1489253805 pageId: 24295 steam: 46250 templates: - - '{{Game data/config|Windows|{{p|game}}\Bin\config.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\Profiles\{{p|uid}}\SaveGame}}' + - "{{Game data/config|Windows|{{p|game}}\\Bin\\config.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\Profiles\\{{p|uid}}\\SaveGame}}" Necroarmy: pageId: 87135 steam: 794910 @@ -110393,14 +107439,14 @@ Necrobarista: pageId: 94086 steam: 725270 templates: - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Route59\Necrobarista\GameSaves\Necrobarista.save}}' + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Route59\\Necrobarista\\GameSaves\\Necrobarista.save}}" Necrodome: gog: 1204965015 pageId: 146800 steam: 2464680 templates: - - '{{Game data/config|Windows|{{p|game}}\NECRO.CFG}}' - - '{{Game data/saves|Windows|{{p|game}}\*.SAV}}' + - "{{Game data/config|Windows|{{p|game}}\\NECRO.CFG}}" + - "{{Game data/saves|Windows|{{p|game}}\\*.SAV}}" Necrofugitive: pageId: 151617 steam: 1166890 @@ -110411,38 +107457,38 @@ Necrolepsy: pageId: 128465 steam: 985590 templates: - - '{{Game data/config|Windows|{{P|userprofile}}\AppData\LocalLow\Stolken\Necrolepsy\NecrolepsySettings.dat}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Stolken\Necrolepsy}}' + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Stolken\\Necrolepsy\\NecrolepsySettings.dat}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Stolken\\Necrolepsy}}" Necromancer Accountant: pageId: 75425 steam: 696160 Necromonads: pageId: 45884 steam: 391630 -'Necromunda: Hired Gun': +"Necromunda: Hired Gun": gog: 1618128477 pageId: 167246 steam: 1222370 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Streumon\Necromunda\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Streumon\Necromunda\Saved\SaveGames\}}' -'Necromunda: Underhive Wars': + - "{{Game data/config|Windows|{{p|localappdata}}\\Streumon\\Necromunda\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Streumon\\Necromunda\\Saved\\SaveGames\\}}" +"Necromunda: Underhive Wars": pageId: 162171 steam: 566440 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Necromunda\Saved\Config\WindowsNoEditor}}' -'Necronator: Dead Wrong': + - "{{Game data/config|Windows|{{p|localappdata}}\\Necromunda\\Saved\\Config\\WindowsNoEditor}}" +"Necronator: Dead Wrong": pageId: 145123 steam: 1144970 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\SOFTWARE\Toge Productions\Necronator Dead Wrong\}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Toge Productions\Necronator Dead Wrong\Data\}}' -'Necronomicon: The Dawning of Darkness': + - "{{Game data/config|Windows|{{P|hkcu}}\\SOFTWARE\\Toge Productions\\Necronator Dead Wrong\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Toge Productions\\Necronator Dead Wrong\\Data\\}}" +"Necronomicon: The Dawning of Darkness": gog: 1606010486 pageId: 49947 steam: 302390 templates: - - '{{Game data/saves|Windows|{{p|game}}\}}' + - "{{Game data/saves|Windows|{{p|game}}\\}}" Necronomistore: pageId: 134745 steam: 1063360 @@ -110451,9 +107497,9 @@ Necropolis: pageId: 35581 steam: 384490 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Harebrained Schemes\Necropolis}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Harebrained Schemes\Necropolis\}}' - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/384490/remote/}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Harebrained Schemes\\Necropolis}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Harebrained Schemes\\Necropolis\\}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/384490/remote/}}" Necrosmith: gog: 1112943757 pageId: 178471 @@ -110473,44 +107519,42 @@ Need for Gowna: Need for Madness: pageId: 86891 steam: 343330 -'Need for Seed: Bird Simulator': +"Need for Seed: Bird Simulator": pageId: 77832 steam: 724960 Need for Speed (2016): pageId: 25620 steam: 1262540 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Need for Speed\settings\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Need for Speed\\settings\\}}" Need for Speed Heat: pageId: 143195 steam: 1222680 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Need for Speed Heat\settings}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Need for Speed Heat\SaveGame\savegame}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Need for Speed Heat\\settings}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Need for Speed Heat\\SaveGame\\savegame}}" Need for Speed II: pageId: 6750 templates: - - '{{Game data/config|Windows|{{p|game}}\FEDATA\PC\CONFIG\config.dat}}' - - '{{Game data/saves|Windows|{{p|game}}\FEDATA\PC\CONFIG\config.dat}}' -'Need for Speed III: Hot Pursuit': + - "{{Game data/config|Windows|{{p|game}}\\FEDATA\\PC\\CONFIG\\config.dat}}" + - "{{Game data/saves|Windows|{{p|game}}\\FEDATA\\PC\\CONFIG\\config.dat}}" +"Need for Speed III: Hot Pursuit": pageId: 6761 templates: - - '{{Game data/config|Windows|{{p|game}}\fedata\config\config.dat}}' - - '{{Game data/saves|Windows|{{p|game}}\fedata\save\}}' + - "{{Game data/config|Windows|{{p|game}}\\fedata\\config\\config.dat}}" + - "{{Game data/saves|Windows|{{p|game}}\\fedata\\save\\}}" Need for Speed Payback: pageId: 63244 steam: 1262580 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\Need For Speed(TM) Payback\settings\}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\Need For Speed(TM) Payback\}}' + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\Need For Speed(TM) Payback\\settings\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\Need For Speed(TM) Payback\\}}" Need for Speed Rivals: pageId: 12341 steam: 1262600 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Ghost Games\Need for Speed(TM) Rivals\settings\}}' - - >- - {{Game data/saves|Windows|{{p|userprofile\Documents}}\Ghost Games\Need for Speed(TM) - Rivals\settings\{{p|uid}}.sav}} + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Ghost Games\\Need for Speed(TM) Rivals\\settings\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Ghost Games\\Need for Speed(TM) Rivals\\settings\\{{p|uid}}.sav}}" Need for Speed Unbound: pageId: 182372 steam: 1846380 @@ -110522,105 +107566,93 @@ Need for Speed Unbound: - 2075010 - 2298540 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\Need For Speed(TM) Unbound\settings}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\Need For Speed(TM) Unbound\SaveGame}}' -'Need for Speed: Carbon': + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\Need For Speed(TM) Unbound\\settings}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\Need For Speed(TM) Unbound\\SaveGame}}" +"Need for Speed: Carbon": pageId: 6895 templates: - - '{{Game data/config|Windows|{{P|hklm}}\Software\{{P|wow64}}\Electronic Arts\Need for Speed Carbon\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\NFS Carbon\{{p|uid}}\}}' -'Need for Speed: Edge': + - "{{Game data/config|Windows|{{P|hklm}}\\Software\\{{P|wow64}}\\Electronic Arts\\Need for Speed Carbon\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\NFS Carbon\\{{p|uid}}\\}}" +"Need for Speed: Edge": pageId: 91406 -'Need for Speed: High Stakes': +"Need for Speed: High Stakes": pageId: 4489 templates: - - '{{Game data/config|Windows|{{p|game}}\SaveData}}' - - '{{Game data/saves|Windows|{{p|game}}\SaveData}}' -'Need for Speed: Hot Pursuit': + - "{{Game data/config|Windows|{{p|game}}\\SaveData}}" + - "{{Game data/saves|Windows|{{p|game}}\\SaveData}}" +"Need for Speed: Hot Pursuit": pageId: 6930 steam: 47870 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\Criterion Games\Need for Speed(TM) Hot - Pursuit\config.NFS11Save|{{p|userprofile\Documents}}\Criterion Games\Need for Speed(TM) Hot - Pursuit\Save\Default\controls.NFS11Save}} - - >- - {{Game data/saves|Windows|{{p|userprofile\Documents}}\Criterion Games\Need for Speed(TM) Hot - Pursuit\Save\Default\}} -'Need for Speed: Hot Pursuit 2': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Criterion Games\\Need for Speed(TM) Hot Pursuit\\config.NFS11Save|{{p|userprofile\\Documents}}\\Criterion Games\\Need for Speed(TM) Hot Pursuit\\Save\\Default\\controls.NFS11Save}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Criterion Games\\Need for Speed(TM) Hot Pursuit\\Save\\Default\\}}" +"Need for Speed: Hot Pursuit 2": pageId: 6870 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\EA Games\Need For Speed Hot Pursuit 2\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\EA Games\Need For Speed Hot Pursuit 2\}}' -'Need for Speed: Hot Pursuit Remastered': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\EA Games\\Need For Speed Hot Pursuit 2\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\EA Games\\Need For Speed Hot Pursuit 2\\}}" +"Need for Speed: Hot Pursuit Remastered": pageId: 164112 steam: 1328660 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\Criterion Games\Need for Speed(TM) Hot Pursuit - Remastered\config.NFS11Save|{{p|userprofile\Documents}}\Criterion Games\Need for Speed(TM) Hot Pursuit - Remastered\Save\Default\MUD64.8.NFS11Save}} - - >- - {{Game data/saves|Windows|{{p|userprofile\Documents}}\Criterion Games\Need for Speed(TM) Hot Pursuit - Remastered\Save\Default\}} -'Need for Speed: Most Wanted': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Criterion Games\\Need for Speed(TM) Hot Pursuit Remastered\\config.NFS11Save|{{p|userprofile\\Documents}}\\Criterion Games\\Need for Speed(TM) Hot Pursuit Remastered\\Save\\Default\\MUD64.8.NFS11Save}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Criterion Games\\Need for Speed(TM) Hot Pursuit Remastered\\Save\\Default\\}}" +"Need for Speed: Most Wanted": pageId: 2119 templates: - - '{{Game data/config|Windows|{{P|hklm}}\SOFTWARE\{{P|wow64}}\EA Games\Need for Speed Most Wanted\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\NFS Most Wanted\{{P|uid}}\}}' -'Need for Speed: Most Wanted (2012)': + - "{{Game data/config|Windows|{{P|hklm}}\\SOFTWARE\\{{P|wow64}}\\EA Games\\Need for Speed Most Wanted\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\NFS Most Wanted\\{{P|uid}}\\}}" +"Need for Speed: Most Wanted (2012)": pageId: 3863 steam: 1262560 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Criterion Games\Need For Speed(TM) Most Wanted\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Criterion Games\Need For Speed(TM) Most Wanted\Save\}}' -'Need for Speed: Porsche Unleashed': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Criterion Games\\Need For Speed(TM) Most Wanted\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Criterion Games\\Need For Speed(TM) Most Wanted\\Save\\}}" +"Need for Speed: Porsche Unleashed": pageId: 6866 templates: - - '{{Game data/config|Windows|{{P|game}}\SaveData\}}' - - '{{Game data/saves|Windows|{{P|game}}\SaveData\}}' -'Need for Speed: ProStreet': + - "{{Game data/config|Windows|{{P|game}}\\SaveData\\}}" + - "{{Game data/saves|Windows|{{P|game}}\\SaveData\\}}" +"Need for Speed: ProStreet": pageId: 6901 templates: - - '{{Game data/config|Windows|{{P|hklm}}\Software\{{P|Wow64}}\Electronic Arts\Need for Speed ProStreet\}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\NFS ProStreet\}}' -'Need for Speed: Shift': + - "{{Game data/config|Windows|{{P|hklm}}\\Software\\{{P|Wow64}}\\Electronic Arts\\Need for Speed ProStreet\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\NFS ProStreet\\}}" +"Need for Speed: Shift": pageId: 6910 steam: 24870 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\NFS SHIFT\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\NFS SHIFT\{{P|uid}}}}' -'Need for Speed: The Run': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\NFS SHIFT\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\NFS SHIFT\\{{P|uid}}}}" +"Need for Speed: The Run": pageId: 6890 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\NFSTR\settings\*.*}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\NFSTR\settings\*.*}}' -'Need for Speed: Undercover': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\NFSTR\\settings\\*.*}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\NFSTR\\settings\\*.*}}" +"Need for Speed: Undercover": pageId: 6905 steam: 17430 templates: - - '{{Game data/config|Windows|{{P|hklm}}\SOFTWARE\{{p|wow64}}\EA Games\Need For Speed Undercover\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\NFS Undercover\{{p|uid}}\}}' -'Need for Speed: Underground': + - "{{Game data/config|Windows|{{P|hklm}}\\SOFTWARE\\{{p|wow64}}\\EA Games\\Need For Speed Undercover\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\NFS Undercover\\{{p|uid}}\\}}" +"Need for Speed: Underground": pageId: 6886 templates: - - >- - {{Game data/config|Windows|{{p|hklm}}\SOFTWARE\EA GAMES\Need For Speed Underground\|{{p|programdata}}\NFS - Underground\*.cfg|{{p|programdata}}\NFS Underground\*.opt}} - - '{{Game data/saves|Windows|{{p|programdata}}\NFS Underground\*.ugd}}' -'Need for Speed: Underground 2': + - "{{Game data/config|Windows|{{p|hklm}}\\SOFTWARE\\EA GAMES\\Need For Speed Underground\\|{{p|programdata}}\\NFS Underground\\*.cfg|{{p|programdata}}\\NFS Underground\\*.opt}}" + - "{{Game data/saves|Windows|{{p|programdata}}\\NFS Underground\\*.ugd}}" +"Need for Speed: Underground 2": pageId: 5577 templates: - - '{{Game data/config|Windows|{{p|hklm}}\SOFTWARE\{{p|wow64}}\EA Games\Need for Speed Underground 2\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\NFS Underground 2\}}' -'Need for Speed: World': + - "{{Game data/config|Windows|{{p|hklm}}\\SOFTWARE\\{{p|wow64}}\\EA Games\\Need for Speed Underground 2\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\NFS Underground 2\\}}" +"Need for Speed: World": pageId: 6921 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Need for Speed World\Settings\UserSettings.xml}}' -'Need for Spirit: Drink & Drive Simulator': + - "{{Game data/config|Windows|{{p|appdata}}\\Need for Speed World\\Settings\\UserSettings.xml}}" +"Need for Spirit: Drink & Drive Simulator": pageId: 110306 steam: 924670 -'Need for Spirit: Off-Road Edition': +"Need for Spirit: Off-Road Edition": pageId: 128105 steam: 1015470 Need for Synthol: @@ -110631,17 +107663,17 @@ Need to Know: pageId: 104929 steam: 490930 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Monomyth Games\Need to Know}}' + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Monomyth Games\\Need to Know}}" Needy Streamer Overload: pageId: 188049 steam: 1451940 templates: - - '{{Game data/config|Windows|{{p|game}}\Windose_Data\Settings.es3}}' - - '{{Game data/saves|Windows|{{p|game}}\Windose_Data\Data*_Day*.es3}}' + - "{{Game data/config|Windows|{{p|game}}\\Windose_Data\\Settings.es3}}" + - "{{Game data/saves|Windows|{{p|game}}\\Windose_Data\\Data*_Day*.es3}}" Nefarious: pageId: 39588 steam: 448290 -'Nefertari: Journey to Eternity': +"Nefertari: Journey to Eternity": pageId: 99404 steam: 861400 Negative Space: @@ -110657,29 +107689,29 @@ Negligee: pageId: 39309 steam: 432100 templates: - - '{{Game data/saves|Windows|{{P|game}}\game\saves\*.save|{{P|appdata}}\RenPy\Negligee\*.save}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.renpy/Negligee/}}' -'Negligee: DoubleD': + - "{{Game data/saves|Windows|{{P|game}}\\game\\saves\\*.save|{{P|appdata}}\\RenPy\\Negligee\\*.save}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.renpy/Negligee/}}" +"Negligee: DoubleD": pageId: 112944 renamedFrom: - - 'Negligee: Animated Edition' + - "Negligee: Animated Edition" steam: 423640 -'Negligee: Love Stories': +"Negligee: Love Stories": pageId: 66502 steam: 467680 -'Negligee: Spring Clean Prelude': +"Negligee: Spring Clean Prelude": pageId: 112972 renamedFrom: - School Coven steam: 565080 -'Nehrim: At Fate''s Edge': +"Nehrim: At Fate's Edge": pageId: 128737 steam: 1014940 Neighbor: pageId: 112656 steam: 937490 templates: - - '{{Game data/saves|Windows|{{P|game}}\savedata\}}' + - "{{Game data/saves|Windows|{{P|game}}\\savedata\\}}" Neighborhood: pageId: 144951 steam: 1144820 @@ -110704,8 +107736,8 @@ Neighbours Back from Hell: - Neighbours back From Hell steam: 1283190 templates: - - '{{Game data/config|Windows|{{p|APPDATA}}\Neighbours back From Hell\NFHSettings.json}}' - - '{{Game data/saves|Windows|{{p|APPDATA}}\Neighbours back From Hell\savegame.sav}}' + - "{{Game data/config|Windows|{{p|APPDATA}}\\Neighbours back From Hell\\NFHSettings.json}}" + - "{{Game data/saves|Windows|{{p|APPDATA}}\\Neighbours back From Hell\\savegame.sav}}" Neighbours from Hell: gog: 1207663903 gogSide: @@ -110715,23 +107747,17 @@ Neighbours from Hell: steamSide: - 1283190 templates: - - >- - {{Game - data/config|Windows|{{p|userprofile\Documents}}\JoWooD\NFH1\gameoptions.xml|{{p|userprofile\Documents}}\JoWooD\Neighbours - From Hell 1\gameoptions.xml}} - - >- - {{Game - data/saves|Windows|{{p|userprofile\Documents}}\JoWooD\NFH1\userdata.ngh|{{p|userprofile\Documents}}\JoWooD\Neighbours - From Hell 1\userdata.ngh}} -'Neighbours from Hell 2: On Vacation': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\JoWooD\\NFH1\\gameoptions.xml|{{p|userprofile\\Documents}}\\JoWooD\\Neighbours From Hell 1\\gameoptions.xml}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\JoWooD\\NFH1\\userdata.ngh|{{p|userprofile\\Documents}}\\JoWooD\\Neighbours From Hell 1\\userdata.ngh}}" +"Neighbours from Hell 2: On Vacation": gog: 1207663923 gogSide: - 1207658765 pageId: 12535 steam: 260770 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\JoWooD\NFH2\gameoptions.xml}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\JoWooD\NFH2\userdata.ngh}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\JoWooD\\NFH2\\gameoptions.xml}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\JoWooD\\NFH2\\userdata.ngh}}" Neither Day nor Night: pageId: 151289 steam: 1167380 @@ -110743,32 +107769,32 @@ Neko Arena: Neko Dungeon: pageId: 104769 steam: 799870 -'Neko Ghost, Jump!': +"Neko Ghost, Jump!": pageId: 154334 steam: 1194750 Neko Navy: pageId: 60141 steam: 592270 templates: - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Fruitbat Factory\NekoNavy\}}' + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Fruitbat Factory\\NekoNavy\\}}" Neko-nin exHeart: pageId: 60774 steam: 407310 templates: - - '{{Game data/config|Windows|{{P|game}}\save}}' - - '{{Game data/saves|Windows|{{P|game}}\save}}' + - "{{Game data/config|Windows|{{P|game}}\\save}}" + - "{{Game data/saves|Windows|{{P|game}}\\save}}" Neko-nin exHeart +Plus Nachi: pageId: 75409 steam: 744520 templates: - - '{{Game data/config|Windows|{{P|game}}\save}}' - - '{{Game data/saves|Windows|{{P|game}}\save}}' + - "{{Game data/config|Windows|{{P|game}}\\save}}" + - "{{Game data/saves|Windows|{{P|game}}\\save}}" Neko-nin exHeart +Plus Saiha: pageId: 76899 steam: 750990 templates: - - '{{Game data/config|Windows|{{P|game}}\save}}' - - '{{Game data/saves|Windows|{{P|game}}\save}}' + - "{{Game data/config|Windows|{{P|game}}\\save}}" + - "{{Game data/saves|Windows|{{P|game}}\\save}}" Neko-nin exHeart 2: pageId: 92734 steam: 828580 @@ -110797,11 +107823,11 @@ Nekojishi: pageId: 75988 steam: 570840 templates: - - '{{Game data/config|Windows|{{p|game}}\renpy\config.py}}' - - '{{Game data/saves|Windows|{{p|appdata}}\RenPy\Neko-171107s\|{{p|game}}\game\saves\}}' -'Nekojishi: Lin & Partners': + - "{{Game data/config|Windows|{{p|game}}\\renpy\\config.py}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\RenPy\\Neko-171107s\\|{{p|game}}\\game\\saves\\}}" +"Nekojishi: Lin & Partners": pageId: 169799 -Nekomew's Potty Trouble: +"Nekomew's Potty Trouble": pageId: 79281 steam: 774221 Nekour: @@ -110810,36 +107836,32 @@ Nekour: Nekuia: pageId: 51378 steam: 528950 -'Nelke & the Legendary Alchemists: Ateliers of the New World': +"Nelke & the Legendary Alchemists: Ateliers of the New World": pageId: 131593 steam: 886820 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\Documents\KoeiTecmo\Nelke and the Legendary Alchemists\Setting.ini}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\Documents\KoeiTecmo\Nelke and the Legendary Alchemists\SAVEDATA\}}' -'Nelly Cootalot: Spoonbeaks Ahoy! HD': + - "{{Game data/config|Windows|{{p|userprofile}}\\Documents\\KoeiTecmo\\Nelke and the Legendary Alchemists\\Setting.ini}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Documents\\KoeiTecmo\\Nelke and the Legendary Alchemists\\SAVEDATA\\}}" +"Nelly Cootalot: Spoonbeaks Ahoy! HD": pageId: 88898 steam: 763030 -'Nelly Cootalot: The Fowl Fleet': +"Nelly Cootalot: The Fowl Fleet": pageId: 37267 steam: 317320 templates: - - >- - {{Game data/config|Microsoft - Store|{{p|localappdata}}\Packages\ApplicationSystemsHeidelb.NellyCootalotTheFowlFlee_bkezc6wzz2jsp\LocalState\playerprefs.dat}} - - >- - {{Game data/saves|Microsoft - Store|{{p|localappdata}}\Packages\ApplicationSystemsHeidelb.NellyCootalotTheFowlFlee_bkezc6wzz2jsp\LocalState\sav}} - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Application Systems Heidelberg/Nelly Cootalot/sav/}}' + - "{{Game data/config|Microsoft Store|{{p|localappdata}}\\Packages\\ApplicationSystemsHeidelb.NellyCootalotTheFowlFlee_bkezc6wzz2jsp\\LocalState\\playerprefs.dat}}" + - "{{Game data/saves|Microsoft Store|{{p|localappdata}}\\Packages\\ApplicationSystemsHeidelb.NellyCootalotTheFowlFlee_bkezc6wzz2jsp\\LocalState\\sav}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Application Systems Heidelberg/Nelly Cootalot/sav/}}" Nelo: pageId: 76061 steam: 537000 -'Nelson Tethers: Puzzle Agent': +"Nelson Tethers: Puzzle Agent": gog: 1441715179 pageId: 7786 steam: 31270 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Telltale Games\The Mystery of Scoggins\prefs.prop}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Telltale Games\The Mystery of Scoggins\*.save}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Telltale Games\\The Mystery of Scoggins\\prefs.prop}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Telltale Games\\The Mystery of Scoggins\\*.save}}" Nelson and the Magic Cauldron: pageId: 122111 steam: 964750 @@ -110854,26 +107876,24 @@ Nemesis Realms: steam: 716750 Nemesis of the Roman Empire: pageId: 191107 -'Nemesis: The Wizardry Adventure': +"Nemesis: The Wizardry Adventure": pageId: 115137 -'Nemezis: Mysterious Journey III': +"Nemezis: Mysterious Journey III": gog: 1257382466 pageId: 124437 renamedFrom: - - 'Schizm 3: Nemezis' + - "Schizm 3: Nemezis" steam: 986350 templates: - - >- - {{Game - data/config|Windows|{{P|localappdata}}\NemezisIIIMysteriousJourney\Saved\Config\WindowsNoEditor\|{{P|localappdata}}\NemezisIIIMysteriousJourney\Saved\SaveGames\UserSettings.sav}} - - '{{Game data/saves|Windows|{{P|localappdata}}\NemezisIIIMysteriousJourney\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\NemezisIIIMysteriousJourney\\Saved\\Config\\WindowsNoEditor\\|{{P|localappdata}}\\NemezisIIIMysteriousJourney\\Saved\\SaveGames\\UserSettings.sav}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\NemezisIIIMysteriousJourney\\Saved\\SaveGames\\}}" Nemo DO: pageId: 69260 steam: 575060 Nemo Dungeon: pageId: 139219 steam: 356820 -Nemo's Reef: +"Nemo's Reef": pageId: 174489 Neo: pageId: 79452 @@ -110888,9 +107908,9 @@ Neo Cab: pageId: 97285 steam: 794540 templates: - - '{{Game data/saves|Windows|{{P|USERPROFILE}}\AppData\LocalLow\Chance Agency\Neo Cab}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/com.ChanceAgency.Neo.Cab/}}' -'Neo Geo Cup ''98: The Road to the Victory': + - "{{Game data/saves|Windows|{{P|USERPROFILE}}\\AppData\\LocalLow\\Chance Agency\\Neo Cab}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/com.ChanceAgency.Neo.Cab/}}" +"Neo Geo Cup '98: The Road to the Victory": pageId: 168836 Neo Neo: pageId: 96725 @@ -110899,8 +107919,8 @@ Neo Turf Masters: gog: 1221699317 pageId: 131748 templates: - - '{{Game data/config|Windows|{{p|appdata}}\SNK\turfmast}}' - - '{{Game data/saves|Windows|{{p|appdata}}\SNK\turfmast}}' + - "{{Game data/config|Windows|{{p|appdata}}\\SNK\\turfmast}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\SNK\\turfmast}}" NeoBalls: pageId: 79159 steam: 771610 @@ -110938,8 +107958,8 @@ Neocolonialism: pageId: 49217 steam: 333540 templates: - - '{{Game data/config|Windows|{{P|game}}\Config\settings.ini}}' - - '{{Game data/saves|Windows|{{P|game}}\Save\}}' + - "{{Game data/config|Windows|{{P|game}}\\Config\\settings.ini}}" + - "{{Game data/saves|Windows|{{P|game}}\\Save\\}}" Neofeud: pageId: 69002 steam: 673850 @@ -110951,7 +107971,7 @@ Neon Abyss: pageId: 132700 steam: 788100 templates: - - '{{Game data/saves|Windows|{{p|game}}\SavesDir\}}' + - "{{Game data/saves|Windows|{{p|game}}\\SavesDir\\}}" Neon Aileron: pageId: 122564 steam: 745430 @@ -110962,8 +107982,8 @@ Neon Beats: pageId: 134355 steam: 1064610 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\OKYO Games\Neon Beats\}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\OKYO Games\Neon Beats\saveFile.json}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\OKYO Games\\Neon Beats\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\OKYO Games\\Neon Beats\\saveFile.json}}" Neon Blast: pageId: 126245 steam: 975670 @@ -110993,25 +108013,25 @@ Neon Chrome: steamSide: - 453250 templates: - - '{{Game data/saves|Windows|{{p|APPDATA}}\10tons\Neon_Chrome\profiles\}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/10tons/Neon_Chrome/profiles/}}' + - "{{Game data/saves|Windows|{{p|APPDATA}}\\10tons\\Neon_Chrome\\profiles\\}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/10tons/Neon_Chrome/profiles/}}" Neon City Riders: pageId: 154132 steam: 1102650 -'Neon Defense 1: Pink Power': +"Neon Defense 1: Pink Power": pageId: 74293 steam: 734840 -'Neon District: Season One': +"Neon District: Season One": pageId: 150896 steam: 1171610 Neon Drive: pageId: 37967 steam: 433910 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Fraoula\Neon Drive\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Fraoula\Neon Drive\NeonDrive.sav}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/unity.Fraoula.Neon Drive}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/unity3d/Fraoula/Neon Drive/prefs}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Fraoula\\Neon Drive\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Fraoula\\Neon Drive\\NeonDrive.sav}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/unity.Fraoula.Neon Drive}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/unity3d/Fraoula/Neon Drive/prefs}}" Neon Exile: pageId: 141701 steam: 505020 @@ -111021,18 +108041,18 @@ Neon Force Pushers: Neon Galaxy: pageId: 64976 steam: 651970 -'Neon Genesis Evangelion: Girlfriend of Steel': +"Neon Genesis Evangelion: Girlfriend of Steel": pageId: 175652 templates: - - '{{Game data/config|Windows|{{p|game}}\exec\EVANGELIONforWIN95.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\exec\Past0~3.txt}}' -'Neon Genesis Evangelion: Girlfriend of Steel 2nd': + - "{{Game data/config|Windows|{{p|game}}\\exec\\EVANGELIONforWIN95.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\exec\\Past0~3.txt}}" +"Neon Genesis Evangelion: Girlfriend of Steel 2nd": pageId: 175656 -'Neon Genesis Evangelion: Girlfriend of Steel Special Edition': +"Neon Genesis Evangelion: Girlfriend of Steel Special Edition": pageId: 175659 templates: - - '{{Game data/config|Windows|{{p|game}}\exec\ktxp01.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\exec\zzzsj201~99.txt}}' + - "{{Game data/config|Windows|{{p|game}}\\exec\\ktxp01.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\exec\\zzzsj201~99.txt}}" Neon Hardcore: pageId: 65999 steam: 673660 @@ -111048,7 +108068,7 @@ Neon Junctions: Neon Kicks: pageId: 134697 steam: 1066530 -'Neon Knight: Vengeance From the Grave': +"Neon Knight: Vengeance From the Grave": pageId: 87497 steam: 790210 Neon Krieger Yamato: @@ -111063,7 +108083,7 @@ Neon Pong: Neon Prism: pageId: 53642 steam: 556280 -'Neon Seoul: Outrun': +"Neon Seoul: Outrun": pageId: 78204 steam: 756700 Neon Shadow: @@ -111076,13 +108096,13 @@ Neon Space: pageId: 34137 steam: 468490 templates: - - '{{Game data/saves|Windows|{{P|appdata}}\NeonSpace\{{P|uid}}\NSData.bin}}' + - "{{Game data/saves|Windows|{{P|appdata}}\\NeonSpace\\{{P|uid}}\\NSData.bin}}" Neon Space 2: pageId: 38157 steam: 505210 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\SOFTWARE\DefaultCompany\NeonSpace2\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\DefaultCompany\NeonSpace2\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\DefaultCompany\\NeonSpace2\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\DefaultCompany\\NeonSpace2\\}}" Neon Space ULTRA: pageId: 34497 steam: 463550 @@ -111093,12 +108113,12 @@ Neon Struct: pageId: 31720 steam: 310740 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\NEON STRUCT}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/NEON STRUCT}}' - - '{{Game data/config|Linux|{{p|game}}/}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\NEON STRUCT\Saves}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/NEON STRUCT}}' - - '{{Game data/saves|Linux|{{p|game}}/}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\NEON STRUCT}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/NEON STRUCT}}" + - "{{Game data/config|Linux|{{p|game}}/}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\NEON STRUCT\\Saves}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/NEON STRUCT}}" + - "{{Game data/saves|Linux|{{p|game}}/}}" Neon Sun: pageId: 82079 steam: 797090 @@ -111106,7 +108126,7 @@ Neon Sundown: pageId: 186867 steam: 1721870 templates: - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Neon Sundown}}' + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Neon Sundown}}" Neon Sword: pageId: 110458 steam: 926600 @@ -111125,7 +108145,7 @@ Neon Universe: Neon VR: pageId: 73675 steam: 723050 -'Neon Valley: Revenge': +"Neon Valley: Revenge": pageId: 81721 steam: 793280 Neon Void Runner: @@ -111138,8 +108158,8 @@ Neon White: pageId: 166728 steam: 1533420 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\Little Flag Software, LLC\Neon White\{{p|uid}}}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Little Flag Software, LLC\Neon White\{{p|uid}}}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Little Flag Software, LLC\\Neon White\\{{p|uid}}}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Little Flag Software, LLC\\Neon White\\{{p|uid}}}}" Neon the Ninja: pageId: 69745 steam: 698650 @@ -111153,8 +108173,8 @@ NeonBall: pageId: 66705 steam: 548280 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Nelium Games\Neonball}}' - - '{{Game data/saves|Windows|{{p|game}}/Save/}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Nelium Games\\Neonball}}" + - "{{Game data/saves|Windows|{{p|game}}/Save/}}" NeonCode: pageId: 122113 steam: 976780 @@ -111165,8 +108185,8 @@ NeonXSZ: pageId: 37877 steam: 296010 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\IntravenousSoftware\NeonXSZ\GameConfig.ini}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\IntravenousSoftware\NeonXS}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\IntravenousSoftware\\NeonXSZ\\GameConfig.ini}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\IntravenousSoftware\\NeonXS}}" Neoncers: pageId: 82802 steam: 794810 @@ -111174,7 +108194,7 @@ Neoncube: pageId: 29230 steam: 382070 templates: - - '{{Game data/saves|Windows|{{p|localappdata}}\Neoncube\}}' + - "{{Game data/saves|Windows|{{p|localappdata}}\\Neoncube\\}}" Neonicum: pageId: 78140 steam: 756450 @@ -111187,7 +108207,7 @@ Neonoen: Neonwall: pageId: 81137 steam: 787650 -'Neopets: Puzzle Adventure': +"Neopets: Puzzle Adventure": pageId: 165246 steam: 21620 NeosVR: @@ -111199,35 +108219,35 @@ Neoverse: pageId: 125097 steam: 994220 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\SOFTWARE\Tinogamez\NEOVERSE\}}' - - '{{Game data/saves|Windows|{{P|game}}\NEOVERSE_Data\StreamingAssets\sql.s3db}}' - - '{{Game data/saves|Steam|{{P|steam}}\userdata\{{P|uid}}\994220\remote\neoverse_data}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\SOFTWARE\\Tinogamez\\NEOVERSE\\}}" + - "{{Game data/saves|Windows|{{P|game}}\\NEOVERSE_Data\\StreamingAssets\\sql.s3db}}" + - "{{Game data/saves|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\994220\\remote\\neoverse_data}}" Nepenthe: pageId: 93820 steam: 789570 templates: - - '{{Game data/config|OS X|/Users/Library/Application Support/LITTSTUDIOS/nepenthe}}' - - '{{Game data/saves|OS X|/Users/Library/Application Support/LITTSTUDIOS}}' + - "{{Game data/config|OS X|/Users/Library/Application Support/LITTSTUDIOS/nepenthe}}" + - "{{Game data/saves|OS X|/Users/Library/Application Support/LITTSTUDIOS}}" Nephise: pageId: 59330 steam: 606860 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Nephise\Saved\SaveGames\Settings.sav}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\Nephise\\Saved\\SaveGames\\Settings.sav}}" Nephise Begins: pageId: 61462 steam: 628950 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\NephiseBegins\Saved\SaveGames\Settings.sav}}' -'Nephise: Ascension': + - "{{Game data/config|Windows|{{P|localappdata}}\\NephiseBegins\\Saved\\SaveGames\\Settings.sav}}" +"Nephise: Ascension": pageId: 87027 steam: 803150 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\NephiseAscension\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\NephiseAscension\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\NephiseAscension\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\NephiseAscension\\Saved\\SaveGames\\}}" Neptune Flux: pageId: 39396 steam: 378700 -'Neptune: Arena FPS': +"Neptune: Arena FPS": pageId: 55540 steam: 556780 NeptuneGL: @@ -111237,32 +108257,28 @@ Neptunia Shooter: pageId: 136350 steam: 1037590 templates: - - '{{Game data/config|Steam|{{p|steam}}\userdata\{{p|uid}}\1037590\remote\NeptuniaShooter.ini}}' - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\1037590\remote\hiscore.dat}}' + - "{{Game data/config|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\1037590\\remote\\NeptuniaShooter.ini}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\1037590\\remote\\hiscore.dat}}" Neptunia Virtual Stars: gog: 1341421504 pageId: 167342 steam: 1399840 templates: - - >- - {{Game data/config|Windows|{{P|userprofile\Documents}}\My Games\Idea Factory International, Inc\Neptunia Virtual - Stars\SYSTEMSAVE_GAME.BIN|{{P|game}}\resource\bin\NeptuniaVirtualStars.ini}} - - >- - {{Game data/saves|Windows|{{P|userprofile\Documents}}\My Games\Idea Factory International, Inc\Neptunia Virtual - Stars}} -'Neptunia x Senran Kagura: Ninja Wars': + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\My Games\\Idea Factory International, Inc\\Neptunia Virtual Stars\\SYSTEMSAVE_GAME.BIN|{{P|game}}\\resource\\bin\\NeptuniaVirtualStars.ini}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\My Games\\Idea Factory International, Inc\\Neptunia Virtual Stars}}" +"Neptunia x Senran Kagura: Ninja Wars": gog: 1698512971 pageId: 173951 steam: 1836860 templates: - - '{{Game data/config|Windows|{{P|appdata}}\Neptunia x SENRAN KAGURA Ninja Wars\Savedata\{{p|uid}}\sys_savedata.dat}}' - - '{{Game data/saves|Windows|{{P|appdata}}\Neptunia x SENRAN KAGURA Ninja Wars\Savedata\{{p|uid}}\*.dat}}' -'Neptunia: Sisters VS Sisters': + - "{{Game data/config|Windows|{{P|appdata}}\\Neptunia x SENRAN KAGURA Ninja Wars\\Savedata\\{{p|uid}}\\sys_savedata.dat}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\Neptunia x SENRAN KAGURA Ninja Wars\\Savedata\\{{p|uid}}\\*.dat}}" +"Neptunia: Sisters VS Sisters": pageId: 180799 steam: 1932160 templates: - - '{{Game data/saves|Steam|{{p|userprofile\appdata\locallow}}\Compile Heart\Neptunia Sisters VS Sisters\}}' - - '{{Game data/saves|GOG.com|{{p|localappdata}}\GOG.com\Galaxy\Applications\55275391706332067\Storage\Shared\Files\}}' + - "{{Game data/saves|Steam|{{p|userprofile\\appdata\\locallow}}\\Compile Heart\\Neptunia Sisters VS Sisters\\}}" + - "{{Game data/saves|GOG.com|{{p|localappdata}}\\GOG.com\\Galaxy\\Applications\\55275391706332067\\Storage\\Shared\\Files\\}}" Neptunian Donut: pageId: 72853 steam: 713540 @@ -111272,8 +108288,8 @@ Nerepis: Nerf ArenaBlast: pageId: 69956 templates: - - '{{Game data/config|Windows|{{p|game}}\Nerf.ini|{{p|game}}\User.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\User.ini}}' + - "{{Game data/config|Windows|{{p|game}}\\Nerf.ini|{{p|game}}\\User.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\User.ini}}" Nerf Legends: pageId: 173876 steam: 1279910 @@ -111281,8 +108297,8 @@ Nerts! Online: pageId: 165983 steam: 1131190 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\My Games\NERTS! Online\{{P|uid}}\config.cfg}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\My Games\NERTS! Online\{{P|uid}}\save.dat}}' + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\My Games\\NERTS! Online\\{{P|uid}}\\config.cfg}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\My Games\\NERTS! Online\\{{P|uid}}\\save.dat}}" Nerved: pageId: 105115 steam: 889330 @@ -111291,15 +108307,12 @@ Nerves of Steel: NetHack: pageId: 146599 templates: - - >- - {{Game - data/config|Windows|{{P|userprofile}}\NetHack\.nethackrc|{{P|programdata}}\NetHack\3.6\|{{P|hkcu}}\Software\NetHack\NetHack - 3.6.6\Settings\}} - - '{{Game data/config|OS X|{{p|osxhome}}/.nethackrc}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.nethackrc}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\NetHack\3.6\}}' - - '{{Game data/saves|Linux|/var/games/nethack/save/}}' -'NetHack: Legacy': + - "{{Game data/config|Windows|{{P|userprofile}}\\NetHack\\.nethackrc|{{P|programdata}}\\NetHack\\3.6\\|{{P|hkcu}}\\Software\\NetHack\\NetHack 3.6.6\\Settings\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/.nethackrc}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.nethackrc}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\NetHack\\3.6\\}}" + - "{{Game data/saves|Linux|/var/games/nethack/save/}}" +"NetHack: Legacy": pageId: 104229 steam: 837200 NetKar Pro: @@ -111312,33 +108325,33 @@ NetStars - VR Goalie Trainer: NetStorm - Islands At War: pageId: 146292 templates: - - '{{Game data/saves|Windows|{{p|game}}\d\options.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\d\options.cfg}}' + - "{{Game data/saves|Windows|{{p|game}}\\d\\options.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\d\\options.cfg}}" Nether: pageId: 11625 steam: 247730 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Nether\NetherGame\Config}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Nether\\NetherGame\\Config}}" Nether Gallery: pageId: 129947 steam: 1039830 -'Nether: The Untold Chapter': +"Nether: The Untold Chapter": pageId: 135235 steam: 1010270 NetherWorld: pageId: 126462 steam: 672420 -'Nethergate: Resurrection': +"Nethergate: Resurrection": gog: 1243419675 pageId: 10301 steam: 218020 -'Netherworld: Beyond Time I Stand': +"Netherworld: Beyond Time I Stand": pageId: 80738 renamedFrom: - - 'Agni: Queen of Darkness' + - "Agni: Queen of Darkness" templates: - - '{{Game data/config|Windows|{{p|game}}\System\UW.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\System\AutoSave\|{{p|game}}\System\User-{{p|uid}}\}}' + - "{{Game data/config|Windows|{{p|game}}\\System\\UW.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\System\\AutoSave\\|{{p|game}}\\System\\User-{{p|uid}}\\}}" Netsoccer: pageId: 148420 steam: 1151320 @@ -111348,37 +108361,37 @@ Network E.L.E.: Network Q RAC Rally Championship: pageId: 22683 templates: - - '{{Game data/config|DOS|C:\RALLYC\VAR}}' - - '{{Game data/config|Windows|C:\Windows\Rallyc.ini}}' - - '{{Game data/saves|DOS|C:\RALLYC\VAR}}' - - '{{Game data/saves|Windows|C:\RALLYC\VAR}}' + - "{{Game data/config|DOS|C:\\RALLYC\\VAR}}" + - "{{Game data/config|Windows|C:\\Windows\\Rallyc.ini}}" + - "{{Game data/saves|DOS|C:\\RALLYC\\VAR}}" + - "{{Game data/saves|Windows|C:\\RALLYC\\VAR}}" Networm: pageId: 45888 steam: 408170 Neuro: pageId: 27431 templates: - - '{{Game data/config|Windows|{{p|game}}\profile\default\Neuro.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\save\}}' + - "{{Game data/config|Windows|{{p|game}}\\profile\\default\\Neuro.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\save\\}}" Neuro (2018): pageId: 137276 steam: 845080 Neuro Hunter: pageId: 36964 templates: - - '{{Game data/config|Windows|{{p|game}}\data\console.ini|{{p|game}}\data\mappings.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\saves\player\}}' + - "{{Game data/config|Windows|{{p|game}}\\data\\console.ini|{{p|game}}\\data\\mappings.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\saves\\player\\}}" NeuroVoider: gog: 1578859173 pageId: 36602 steam: 400450 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\Flying Oak Games\NeuroVoider\}}' - - '{{Game data/config|OS X|{{P|osxhome}}/Library/Application Support/Flying Oak Games/NeuroVoider/}}' - - '{{Game data/config|Linux|{{P|linuxhome}}/.neurovoider/}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Flying Oak Games\NeuroVoider\}}' - - '{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/Flying Oak Games/NeuroVoider/}}' - - '{{Game data/saves|Linux|{{P|linuxhome}}/.neurovoider/}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Flying Oak Games\\NeuroVoider\\}}" + - "{{Game data/config|OS X|{{P|osxhome}}/Library/Application Support/Flying Oak Games/NeuroVoider/}}" + - "{{Game data/config|Linux|{{P|linuxhome}}/.neurovoider/}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Flying Oak Games\\NeuroVoider\\}}" + - "{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/Flying Oak Games/NeuroVoider/}}" + - "{{Game data/saves|Linux|{{P|linuxhome}}/.neurovoider/}}" Neurodeck: gog: 1739122581 pageId: 166379 @@ -111400,14 +108413,14 @@ Never Alone: pageId: 21147 steam: 295790 steamSide: - - 355740 - 351740 + - 355740 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\E-Line Media\Never Alone\}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/E-Line Media/Never Alone/prefs}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\E_Line Media\Never Alone\}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/E_Line Media/Never Alone/scprofile.dat}}' - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/295790/}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\E-Line Media\\Never Alone\\}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/E-Line Media/Never Alone/prefs}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\E_Line Media\\Never Alone\\}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/E_Line Media/Never Alone/scprofile.dat}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/295790/}}" Never Breakup: pageId: 104383 steam: 904170 @@ -111433,11 +108446,11 @@ Never Not Shooting: Never Split the Party: pageId: 93229 steam: 711810 -Never Stop Sneakin': +"Never Stop Sneakin'": pageId: 82810 steam: 792880 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Humble Hearts LLC\Never Stop Sneakin''\}}' + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Humble Hearts LLC\\Never Stop Sneakin'\\}}" NeverBound: pageId: 89381 steam: 758660 @@ -111450,10 +108463,10 @@ NeverMine: Neverball: pageId: 168632 templates: - - '{{Game data/config|Windows|{{P|userprofile\documents}}\My Games\Neverball}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.neverball/}}' - - '{{Game data/saves|Windows|{{P|userprofile\documents}}\My Games\Neverball\neverballrc}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.neverball/}}' + - "{{Game data/config|Windows|{{P|userprofile\\documents}}\\My Games\\Neverball}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.neverball/}}" + - "{{Game data/saves|Windows|{{P|userprofile\\documents}}\\My Games\\Neverball\\neverballrc}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.neverball/}}" Neverdark: pageId: 130718 steam: 1036430 @@ -111462,14 +108475,14 @@ Neverending Nightmares: pageId: 27761 steam: 253330 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Infinitap Games\Neverending Nightmares\settings.config}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\Saved Games\Neverending Nightmares\savegame.sav}}' - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/253330/remote/savegame}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Infinitap Games\\Neverending Nightmares\\settings.config}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Saved Games\\Neverending Nightmares\\savegame.sav}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/253330/remote/savegame}}" Neverinth: pageId: 126276 steam: 966430 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\CreAct\Neverinth\{{p|uid}}\}}' + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\CreAct\\Neverinth\\{{p|uid}}\\}}" Neverland Treasure: pageId: 140848 steam: 1077570 @@ -111480,56 +108493,54 @@ Nevermind: pageId: 46254 steam: 342260 templates: - - >- - {{Game - data/config|Steam|{{P|steam}}\userdata\{{P|uid}}\342260\remote\coreData.nvme|{{P|steam}}\userdata\{{P|uid}}\342260\remote\options.nvme}} - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Flying Mollusk\Nevermind}}' - - '{{Game data/saves|Steam|{{P|steam}}\userdata\{{P|uid}}\342260\remote\}}' + - "{{Game data/config|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\342260\\remote\\coreData.nvme|{{P|steam}}\\userdata\\{{P|uid}}\\342260\\remote\\options.nvme}}" + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Flying Mollusk\\Nevermind}}" + - "{{Game data/saves|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\342260\\remote\\}}" Neverout: pageId: 62172 steam: 579720 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\SOFTWARE\Gamedust\Neverout}}' - - '{{Game data/saves|Windows|{{P|hkcu}}\SOFTWARE\Gamedust\Neverout}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\SOFTWARE\\Gamedust\\Neverout}}" + - "{{Game data/saves|Windows|{{P|hkcu}}\\SOFTWARE\\Gamedust\\Neverout}}" Neversong: gog: 1328246867 pageId: 74712 steam: 733210 templates: - - '{{Game data/config|Linux|{{P|linuxhome}}/.config/unity3d/Serenity Forge/Neversong/prefs}}' - - '{{Game data/saves|Windows|{{P|Steam}}/steamapps/common/Neversong/Neversong_Data/data.sav}}' - - '{{Game data/saves|Steam|{{P|Steam}}/steamapps/common/Neversong/Neversong_Data/data.sav}}' -'Nevertales: Legends': + - "{{Game data/config|Linux|{{P|linuxhome}}/.config/unity3d/Serenity Forge/Neversong/prefs}}" + - "{{Game data/saves|Windows|{{P|Steam}}/steamapps/common/Neversong/Neversong_Data/data.sav}}" + - "{{Game data/saves|Steam|{{P|Steam}}/steamapps/common/Neversong/Neversong_Data/data.sav}}" +"Nevertales: Legends": pageId: 78120 renamedFrom: - - 'Nevertales: Legends Collector''s Edition' + - "Nevertales: Legends Collector's Edition" steam: 758640 -'Nevertales: Shattered Image': +"Nevertales: Shattered Image": pageId: 40263 renamedFrom: - - 'Nevertales: Shattered Image Collector''s Edition' + - "Nevertales: Shattered Image Collector's Edition" steam: 527910 -'Nevertales: Smoke and Mirrors': +"Nevertales: Smoke and Mirrors": pageId: 61760 renamedFrom: - - 'Nevertales: Smoke and Mirrors Collector''s Edition' + - "Nevertales: Smoke and Mirrors Collector's Edition" steam: 630240 -'Nevertales: The Beauty Within': +"Nevertales: The Beauty Within": pageId: 43023 renamedFrom: - - 'Nevertales: The Beauty Within Collector''s Edition' + - "Nevertales: The Beauty Within Collector's Edition" steam: 466010 Neverwinter: pageId: 12229 steam: 109600 templates: - - '{{Game data/config|Windows|{{P|steam}}/Cryptic Studios/Neverwinter/Live/localdata}}' + - "{{Game data/config|Windows|{{P|steam}}/Cryptic Studios/Neverwinter/Live/localdata}}" Neverwinter Nights: gog: 1207658890 pageId: 1729 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/saves|Windows|{{p|game}}\saves}}' + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\saves}}" Neverwinter Nights (1991): pageId: 160959 Neverwinter Nights 2: @@ -111537,34 +108548,34 @@ Neverwinter Nights 2: pageId: 765 steam: 2760 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\Neverwinter Nights 2\}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\Neverwinter Nights 2\saves\}}' -'Neverwinter Nights: Enhanced Edition': + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\Neverwinter Nights 2\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\Neverwinter Nights 2\\saves\\}}" +"Neverwinter Nights: Enhanced Edition": gog: 1746700646 gogSide: - 1097893768 - - 1543524453 - - 1368135960 - - 1172160536 - - 1237168464 - - 1182523016 - - 1723086432 - - 1924878359 - 1127121287 - - 1705125855 - - 1596101289 - - 2013583144 - - 1974070286 - - 1812281398 - - 1482605946 + - 1172160536 + - 1182523016 + - 1237168464 - 1359133802 - - 1979581616 + - 1368135960 + - 1482605946 + - 1543524453 + - 1596101289 + - 1705125855 + - 1723086432 + - 1812281398 + - 1924878359 + - 1974070286 - 1975339519 + - 1979581616 + - 2013583144 pageId: 77253 steam: 704450 steamSide: - - 737001 - 737000 + - 737001 - 737002 - 738710 - 738711 @@ -111573,28 +108584,28 @@ Neverwinter Nights 2: - 1143400 - 1247750 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\Neverwinter Nights\*.ini}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.local/share/Neverwinter Nights/}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\Neverwinter Nights\saves\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Documents/Neverwinter Nights/saves/}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.local/share/Neverwinter Nights/saves/}}' -'Nevrosa: Escape': + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\Neverwinter Nights\\*.ini}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.local/share/Neverwinter Nights/}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\Neverwinter Nights\\saves\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Documents/Neverwinter Nights/saves/}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.local/share/Neverwinter Nights/saves/}}" +"Nevrosa: Escape": pageId: 71926 steam: 563550 -'Nevrosa: Prelude': +"Nevrosa: Prelude": pageId: 58431 steam: 598070 -'Nevrosa: Primal Ritual': +"Nevrosa: Primal Ritual": pageId: 136930 steam: 1070410 -'Nevrosa: Spider Song': +"Nevrosa: Spider Song": pageId: 136685 steam: 1087970 Nevski Titbit: pageId: 161271 templates: - - '{{Game data/config|Windows|{{p|game}}\config.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\saves}}' + - "{{Game data/config|Windows|{{p|game}}\\config.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\saves}}" Nevsky Run: pageId: 114666 steam: 946210 @@ -111613,13 +108624,13 @@ New Colony: New Dawn: pageId: 105011 steam: 768370 -'New Day: Cataclysm': +"New Day: Cataclysm": pageId: 138748 steam: 1078770 New Frontier: pageId: 141367 steam: 1104640 -'New Frontier Days: Founding Pioneers': +"New Frontier Days: Founding Pioneers": pageId: 63151 steam: 570790 New Glass: @@ -111629,15 +108640,15 @@ New Gundam Breaker: pageId: 111692 steam: 738530 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\NewGundamBreaker\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\NewGundamBreaker\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\NewGundamBreaker\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\NewGundamBreaker\\Saved\\SaveGames\\}}" New Horizons: pageId: 74387 steam: 628170 New Ice York: pageId: 99190 steam: 855530 -'New Joe & Mac: Caveman Ninja': +"New Joe & Mac: Caveman Ninja": gog: 1385029155 pageId: 182334 steam: 1492320 @@ -111656,18 +108667,18 @@ New Outbreak: New Planets: pageId: 156230 steam: 1214990 -'New Retro Arcade: Neon': +"New Retro Arcade: Neon": pageId: 41912 steam: 465780 templates: - - '{{Game data/config|Windows|{{P|game}}\NewRetroArcade\Saved\Config}}' + - "{{Game data/config|Windows|{{P|game}}\\NewRetroArcade\\Saved\\Config}}" New Star Manager: pageId: 112104 steam: 883130 New Star Soccer 5: pageId: 40721 steam: 212780 -New Super Lucky's Tale: +"New Super Lucky's Tale": gog: 1316293882 gogSide: - 1495957441 @@ -111676,35 +108687,29 @@ New Super Lucky's Tale: steamSide: - 1491620 templates: - - >- - {{Game data/config|Windows|{{P|hkcu}}\SOFTWARE\Playful Studios\New Super Lucky's - Tale|{{P|userprofile\appdata\locallow}}\Playful Studios\New Super Lucky's Tale\}} - - >- - {{Game data/config|Microsoft - Store|{{P|localappdata}}\Packages\PlayfulCorp.49013BFBD8849_7n7np5b8s1z70\LocalState\}} - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Playful Studios\New Super Lucky''s Tale\Save\}}' - - '{{Game data/saves|Steam|{{P|game}}\nslt_Data\SavesDir\{{P|uid}}\}}' - - >- - {{Game data/saves|Microsoft - Store|{{P|localappdata}}\Packages\PlayfulCorp.49013BFBD8849_7n7np5b8s1z70\SystemAppData\wgs\}} + - "{{Game data/config|Windows|{{P|hkcu}}\\SOFTWARE\\Playful Studios\\New Super Lucky's Tale|{{P|userprofile\\appdata\\locallow}}\\Playful Studios\\New Super Lucky's Tale\\}}" + - "{{Game data/config|Microsoft Store|{{P|localappdata}}\\Packages\\PlayfulCorp.49013BFBD8849_7n7np5b8s1z70\\LocalState\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Playful Studios\\New Super Lucky's Tale\\Save\\}}" + - "{{Game data/saves|Steam|{{P|game}}\\nslt_Data\\SavesDir\\{{P|uid}}\\}}" + - "{{Game data/saves|Microsoft Store|{{P|localappdata}}\\Packages\\PlayfulCorp.49013BFBD8849_7n7np5b8s1z70\\SystemAppData\\wgs\\}}" New Tales from the Borderlands: pageId: 181107 steam: 1454970 templates: - - '{{Game data/saves|Windows|{{p|localappdata}}/Cypress2Game/Saved/SaveGames/Steam}}' + - "{{Game data/saves|Windows|{{p|localappdata}}/Cypress2Game/Saved/SaveGames/Steam}}" New The Legend of Heroes: pageId: 174935 templates: - - '{{Game data/saves|Windows|{{p|game}}\SAVE}}' -'New The Legend of Heroes III: Shiroki Majo': + - "{{Game data/saves|Windows|{{p|game}}\\SAVE}}" +"New The Legend of Heroes III: Shiroki Majo": pageId: 175264 templates: - - '{{Game data/saves|Windows|{{p|game}}\SAVEDATA}}' -'New The Legend of Heroes IV: Akai Shizuku': + - "{{Game data/saves|Windows|{{p|game}}\\SAVEDATA}}" +"New The Legend of Heroes IV: Akai Shizuku": pageId: 175266 templates: - - '{{Game data/config|Windows|{{p|game}}\ED4_ENV.exe}}' - - '{{Game data/saves|Windows|{{p|game}}\SAVEDATA}}' + - "{{Game data/config|Windows|{{p|game}}\\ED4_ENV.exe}}" + - "{{Game data/saves|Windows|{{p|game}}\\SAVEDATA}}" New Tricks for Old Gods: pageId: 148667 steam: 1165490 @@ -111712,38 +108717,38 @@ New World: pageId: 152350 steam: 1063730 templates: - - '{{Game data/config|Windows|{{p|appdata}}\AGS\New World}}' + - "{{Game data/config|Windows|{{p|appdata}}\\AGS\\New World}}" New World Horizon: pageId: 127647 steam: 1017670 -'New World: The Tupis': +"New World: The Tupis": pageId: 76135 steam: 723880 -'New Yankee 6: In Pharaoh''s Court': +"New Yankee 6: In Pharaoh's Court": pageId: 132189 steam: 1059710 -'New Yankee 7: Deer Hunters': +"New Yankee 7: Deer Hunters": pageId: 134890 steam: 1066700 -New Yankee in King Arthur's Court: +"New Yankee in King Arthur's Court": pageId: 43338 steam: 462570 -New Yankee in King Arthur's Court 2: +"New Yankee in King Arthur's Court 2": pageId: 36748 steam: 510110 -New Yankee in King Arthur's Court 4: +"New Yankee in King Arthur's Court 4": pageId: 134692 steam: 1071880 -New Yankee in King Arthur's Court 5: +"New Yankee in King Arthur's Court 5": pageId: 135006 steam: 1071890 -New Yankee in Santa's Service: +"New Yankee in Santa's Service": pageId: 43073 steam: 462580 New Year Simulator: pageId: 124251 steam: 980470 -New Year's Eve 2020: +"New Year's Eve 2020": pageId: 153854 steam: 1204270 New York Bus Simulator: @@ -111752,16 +108757,16 @@ New York Bus Simulator: New York Bus Simulator (2016): pageId: 44293 steam: 446480 -'New York Mysteries: High Voltage': +"New York Mysteries: High Voltage": pageId: 45016 steam: 392970 -'New York Mysteries: Secrets of the Mafia': +"New York Mysteries: Secrets of the Mafia": pageId: 37772 steam: 372930 -'New York Mysteries: The Lantern of Souls': +"New York Mysteries: The Lantern of Souls": pageId: 36846 steam: 511140 -'New York Mysteries: The Outbreak': +"New York Mysteries: The Outbreak": pageId: 152793 steam: 1186580 New York Taxi Simulator: @@ -111785,7 +108790,7 @@ News Tycoon: Newt One: pageId: 95174 steam: 842850 -Newt's Voyage: +"Newt's Voyage": pageId: 129861 steam: 1042460 Newton Adventure: @@ -111794,28 +108799,28 @@ Newton and the Apple Tree: pageId: 95049 steam: 721010 templates: - - '{{Game data/config|Windows|{{P|appdata}}\Sol Press\Newton and the Apple Tree\*.xml}}' - - '{{Game data/saves|Windows|{{P|appdata}}\Sol Press\Newton and the Apple Tree\*.dat}}' + - "{{Game data/config|Windows|{{P|appdata}}\\Sol Press\\Newton and the Apple Tree\\*.xml}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\Sol Press\\Newton and the Apple Tree\\*.dat}}" Nex Machina: gog: 1124718952 pageId: 59299 steam: 404540 templates: - - '{{Game data/config|Windows|{{P|appdata}}\Nex Machina\}}' - - '{{Game data/saves|Windows|{{P|appdata}}\Nex Machina\}}' + - "{{Game data/config|Windows|{{P|appdata}}\\Nex Machina\\}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\Nex Machina\\}}" Nexomon: pageId: 152849 steam: 1191580 templates: - - '{{Game data/saves|Windows|{{p|steam}}\userdata\{{p|uid}}\1191580\remote\}}' + - "{{Game data/saves|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\1191580\\remote\\}}" Nexomon 3: pageId: 190392 steam: 2444760 -'Nexomon: Extinction': +"Nexomon: Extinction": pageId: 162965 steam: 1196630 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\VEWO INTERACTIVE INC_\Nexomon_ Extinction}}' + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\VEWO INTERACTIVE INC_\\Nexomon_ Extinction}}" Nexoria: pageId: 113978 steam: 932210 @@ -111831,11 +108836,11 @@ Next 3: Next 4: pageId: 95250 steam: 856120 -'Next Day: Survival': +"Next Day: Survival": pageId: 66037 steam: 519190 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\SOFF Games\Next Day Survival\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\SOFF Games\\Next Day Survival\\}}" Next Hand Master: pageId: 155470 steam: 1138360 @@ -111854,51 +108859,45 @@ Next Stop 3: steam: 1001430 Next Stop Nowhere: pageId: 162609 -'Next Stop: Zombie': +"Next Stop: Zombie": pageId: 73768 steam: 689050 Next Up Hero: pageId: 65351 steam: 667810 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\DigitalContinue\NextUpHero\}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\DigitalContinue\NextUpHero\HeroUpSave.gs}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\DigitalContinue\\NextUpHero\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\DigitalContinue\\NextUpHero\\HeroUpSave.gs}}" Nexuiz (2012): pageId: 2169 steam: 96800 templates: - - '{{Game data/config|Windows|{{p|game}}\USER\Profiles\default\|{{p|game}}\}}' + - "{{Game data/config|Windows|{{p|game}}\\USER\\Profiles\\default\\|{{p|game}}\\}}" Nexuiz Classic: pageId: 2214 Nexus: pageId: 130565 steam: 1042620 -'Nexus: The Jupiter Incident': +"Nexus: The Jupiter Incident": gog: 1207659080 pageId: 6975 steam: 6420 templates: - - >- - {{Game data/config|Windows|{{p|hklm}}\SOFTWARE\{{p|wow64}}\Mithis\Nexus - The Jupiter Incident|{{p|appdata}}\Nexus - - The Jupiter Incident\}} - - '{{Game data/saves|Windows|{{p|game}}\save|{{p|appdata}}\Nexus - The Jupiter Incident\save}}' -'Ni no Kuni II: Revenant Kingdom': + - "{{Game data/config|Windows|{{p|hklm}}\\SOFTWARE\\{{p|wow64}}\\Mithis\\Nexus - The Jupiter Incident|{{p|appdata}}\\Nexus - The Jupiter Incident\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\save|{{p|appdata}}\\Nexus - The Jupiter Incident\\save}}" +"Ni no Kuni II: Revenant Kingdom": pageId: 57039 steam: 589360 templates: - - '{{Game data/config|Windows|{{p|steam}}\userdata\{{p|uid}}\589360\remote\SYSTEM\data.bin}}' - - '{{Game data/saves|Windows|{{p|steam}}\userdata\{{p|uid}}\589360\remote\}}' -'Ni no Kuni: Wrath of the White Witch Remastered': + - "{{Game data/config|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\589360\\remote\\SYSTEM\\data.bin}}" + - "{{Game data/saves|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\589360\\remote\\}}" +"Ni no Kuni: Wrath of the White Witch Remastered": pageId: 138479 steam: 798460 templates: - - >- - {{Game data/config|Windows|{{P|localappdata}}\BANDAI NAMCO Entertainment\Ni no Kuni Wrath of the White Witch - Remastered}} - - '{{Game data/saves|Windows|{{P|steam}}\userdata\{{P|uid}}\798460\remote}}' - - >- - {{Game data/saves|Microsoft - Store|{{P|localappdata}}\Packages\LEVEL-5Inc.NinoKuniWrathoftheWhiteWitchRemastered_dwd6sh9x0mt8j\SystemAppData\wgs\}} + - "{{Game data/config|Windows|{{P|localappdata}}\\BANDAI NAMCO Entertainment\\Ni no Kuni Wrath of the White Witch Remastered}}" + - "{{Game data/saves|Windows|{{P|steam}}\\userdata\\{{P|uid}}\\798460\\remote}}" + - "{{Game data/saves|Microsoft Store|{{P|localappdata}}\\Packages\\LEVEL-5Inc.NinoKuniWrathoftheWhiteWitchRemastered_dwd6sh9x0mt8j\\SystemAppData\\wgs\\}}" NiBiRu Age of Secrets: pageId: 184410 NiGHT SIGNAL: @@ -111907,7 +108906,7 @@ NiGHT SIGNAL: NiHonGoToKi: pageId: 130239 steam: 1044030 -'Niara: Rebellion of the King': +"Niara: Rebellion of the King": pageId: 136745 steam: 1082730 Nibiru: @@ -111933,14 +108932,14 @@ Niche: pageId: 38977 steam: 440650 templates: - - '{{Game data/config|Windows|{{P|userprofile}}\AppData\LocalLow\Team Niche\Niche - a genetics survival game\}}' - - '{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/Team Niche/Niche - a genetics survival game/}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Team Niche\Niche - a genetics survival game\saves}}' - - '{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/Team Niche/Niche - a genetics survival game/Saves}}' + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Team Niche\\Niche - a genetics survival game\\}}" + - "{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/Team Niche/Niche - a genetics survival game/}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Team Niche\\Niche - a genetics survival game\\saves}}" + - "{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/Team Niche/Niche - a genetics survival game/Saves}}" Nick: pageId: 55554 steam: 572660 -'Nick Beard: The Fedora of Destiny': +"Nick Beard: The Fedora of Destiny": pageId: 103417 steam: 872240 Nick Bounty and the Dame with the Blue Chewed Shoe: @@ -111959,8 +108958,8 @@ Nickelodeon All-Star Brawl: pageId: 171039 steam: 1414850 templates: - - '{{Game data/config|Windows|{{P|userprofile}}\AppData\LocalLow\GameMill Entertainment\Nickelodeon All-Star Brawl}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\GameMill Entertainment\Nickelodeon All-Star Brawl}}' + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\GameMill Entertainment\\Nickelodeon All-Star Brawl}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\GameMill Entertainment\\Nickelodeon All-Star Brawl}}" Nickelodeon All-Star Brawl 2: pageId: 191184 steam: 2017080 @@ -111969,24 +108968,22 @@ Nickelodeon All-Star Brawl 2: - 2587100 - 2587120 templates: - - >- - {{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\GameMill Entertainment\Nickelodeon All-Star Brawl - 2\}} -Nickelodeon Director's Lab: + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\GameMill Entertainment\\Nickelodeon All-Star Brawl 2\\}}" +"Nickelodeon Director's Lab": pageId: 183495 Nickelodeon Extreme Tennis: pageId: 173696 -'Nickelodeon Kart Racers 2: Grand Prix': +"Nickelodeon Kart Racers 2: Grand Prix": pageId: 170602 steam: 1383960 templates: - - '{{Game data/saves|Windows|{{P|steam}}\userdata\{{P|uid}}\1383960\}}' -'Nickelodeon Kart Racers 3: Slime Speedway': + - "{{Game data/saves|Windows|{{P|steam}}\\userdata\\{{P|uid}}\\1383960\\}}" +"Nickelodeon Kart Racers 3: Slime Speedway": pageId: 182363 steam: 1620040 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Nor\Saved\Config\WindowsNoEditor}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\Nor\Saved\SaveGames}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\Nor\\Saved\\Config\\WindowsNoEditor}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Nor\\Saved\\SaveGames}}" Nickelodeon Party Blast: pageId: 88322 Nicktoons Basketball: @@ -111998,7 +108995,7 @@ Nicktoons Nick Tunes: Nicktoons Racing: pageId: 64957 templates: - - '{{Game data/config|Windows|{{p|game}}\NickToonsRacing.cfg}}' + - "{{Game data/config|Windows|{{p|game}}\\NickToonsRacing.cfg}}" Nicktoons Winners Cup Racing: pageId: 167663 Nicky - The Home Alone Golf Ball: @@ -112007,15 +109004,15 @@ Nicky - The Home Alone Golf Ball: Nicky Boom: pageId: 30832 templates: - - '{{Game data/config|Windows|{{p|game}}\SETTINGS.DAT}}' - - '{{Game data/saves|Windows|{{p|game}}\SAVE*.SAV|{{p|game}}\SAVE*.INF}}' -'Nicolas Eymerich The Inquisitor - Book I: The Plague': + - "{{Game data/config|Windows|{{p|game}}\\SETTINGS.DAT}}" + - "{{Game data/saves|Windows|{{p|game}}\\SAVE*.SAV|{{p|game}}\\SAVE*.INF}}" +"Nicolas Eymerich The Inquisitor - Book I: The Plague": pageId: 50346 steam: 279500 -'Nicolas Eymerich The Inquisitor - Book II: The Village': +"Nicolas Eymerich The Inquisitor - Book II: The Village": pageId: 48903 steam: 297070 -Nicolay's Adventure: +"Nicolay's Adventure": pageId: 56562 steam: 581350 Nicole: @@ -112025,22 +109022,20 @@ Nidhogg: pageId: 24487 steam: 94400 templates: - - '{{Game data/config|Windows|{{P|appdata}}\Nidhogg}}' - - '{{Game data/saves|Windows|{{P|appdata}}\Nidhogg}}' + - "{{Game data/config|Windows|{{P|appdata}}\\Nidhogg}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\Nidhogg}}" Nidhogg 2: pageId: 50967 steam: 535520 NieR Replicant: pageId: 158829 renamedFrom: - - 'NieR: Replicant' + - "NieR: Replicant" steam: 1113560 templates: - - >- - {{Game data/config|Windows|{{P|userprofile\Documents}}\My Games\NieR Replicant - ver.1.22474487139\Steam\{{P|uid}}\}} - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\My Games\NieR Replicant ver.1.22474487139\Steam\{{P|uid}}\}}' -'NieR: Automata': + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\My Games\\NieR Replicant ver.1.22474487139\\Steam\\{{P|uid}}\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\My Games\\NieR Replicant ver.1.22474487139\\Steam\\{{P|uid}}\\}}" +"NieR: Automata": pageId: 53017 steam: 524220 steamSide: @@ -112053,20 +109048,18 @@ NieR Replicant: - 583994 - 1017430 templates: - - '{{Game data/config|Microsoft Store|{{p|userprofile\Documents}}\My Games\NieR_Automata_PC\}}' - - '{{Game data/config|Steam|{{p|userprofile\Documents}}\My Games\NieR_Automata\}}' - - >- - {{Game data/saves|Microsoft - Store|{{p|localappdata}}\Packages\39EA002F.NieRAutomataPC_n746a19ndrrjg\SystemAppData\wgs\}} - - '{{Game data/saves|Steam|{{p|userprofile\Documents}}\My Games\NieR_Automata\}}' + - "{{Game data/config|Microsoft Store|{{p|userprofile\\Documents}}\\My Games\\NieR_Automata_PC\\}}" + - "{{Game data/config|Steam|{{p|userprofile\\Documents}}\\My Games\\NieR_Automata\\}}" + - "{{Game data/saves|Microsoft Store|{{p|localappdata}}\\Packages\\39EA002F.NieRAutomataPC_n746a19ndrrjg\\SystemAppData\\wgs\\}}" + - "{{Game data/saves|Steam|{{p|userprofile\\Documents}}\\My Games\\NieR_Automata\\}}" Niffelheim: gog: 1446645451 pageId: 43334 steam: 351100 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\ElladaGames\Niffelheim\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\ElladaGames\Niffelheim\Profiles\}}' -'Nigel: The Minuscule Adventure': + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\ElladaGames\\Niffelheim\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\ElladaGames\\Niffelheim\\Profiles\\}}" +"Nigel: The Minuscule Adventure": pageId: 143989 steam: 1089520 Night & Day: @@ -112078,17 +109071,15 @@ Night Blights: Night Call: gog: 1119875193 gogSide: - - 2011152326 - 1423381799 + - 2011152326 pageId: 97369 steam: 680380 steamSide: - 1116970 templates: - - >- - {{Game data/config|Windows|{{P|userprofile}}\AppData\LocalLow\Raw Fury\Night - Call\nightcall_config.sav|{{P|hkcu}}\Software\Raw Fury\Night Call\}} - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Raw Fury\Night Call\}}' + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Raw Fury\\Night Call\\nightcall_config.sav|{{P|hkcu}}\\Software\\Raw Fury\\Night Call\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Raw Fury\\Night Call\\}}" Night Catcher: pageId: 130139 steam: 1036870 @@ -112120,12 +109111,12 @@ Night Lights: Night Magic: pageId: 112864 steam: 941860 -'Night Mysteries: The Amphora Prisoner': +"Night Mysteries: The Amphora Prisoner": pageId: 48591 steam: 348870 templates: - - '{{Game data/config|Windows|{{P|appdata}}\Anvate Games\Night Mysteries - The Amphora Prisoner\}}' - - '{{Game data/saves|Windows|{{P|appdata}}\Anvate Games\Night Mysteries - The Amphora Prisoner\Profiles.cfg}}' + - "{{Game data/config|Windows|{{P|appdata}}\\Anvate Games\\Night Mysteries - The Amphora Prisoner\\}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\Anvate Games\\Night Mysteries - The Amphora Prisoner\\Profiles.cfg}}" Night Of The Living Dead VR: pageId: 156045 steam: 1210910 @@ -112153,37 +109144,33 @@ Night Trap - 25th Anniversary Edition: pageId: 66818 steam: 643620 templates: - - >- - {{Game data/config|Windows|{{P|userprofile}}\AppData\LocalLow\Screaming Villains\Night Trap - 25th Anniversary - Edition\PlayerPrefs.txt}} - - >- - {{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Screaming Villains\Night Trap - 25th Anniversary - Edition\PlayerPrefs.txt}} + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Screaming Villains\\Night Trap - 25th Anniversary Edition\\PlayerPrefs.txt}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Screaming Villains\\Night Trap - 25th Anniversary Edition\\PlayerPrefs.txt}}" Night Vigil: pageId: 41701 steam: 509910 Night Watch: pageId: 97577 -'Night Witch: 588': +"Night Witch: 588": pageId: 154045 steam: 1204030 Night and Day The curse of the red witch: pageId: 96583 steam: 869790 -'Night at the Museum: Battle of the Smithsonian': +"Night at the Museum: Battle of the Smithsonian": pageId: 89010 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\Roaming\Night at the Museum}}' + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\Roaming\\Night at the Museum}}" Night in the Woods: gog: 1330400591 pageId: 52626 steam: 481510 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Infinite Fall\Night in The Woods\}}' - - '{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/Infinite Fall/Night in the Woods/}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Infinite Fall\Night in the Woods\}}' - - '{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/Infinite Fall/Night in the Woods/}}' - - '{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/Infinite Fall/Night in the Woods/}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Infinite Fall\\Night in The Woods\\}}" + - "{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/Infinite Fall/Night in the Woods/}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Infinite Fall\\Night in the Woods\\}}" + - "{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/Infinite Fall/Night in the Woods/}}" + - "{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/Infinite Fall/Night in the Woods/}}" Night is Coming: pageId: 130066 steam: 1011590 @@ -112199,7 +109186,7 @@ Night of the Blood Moon: Night of the Consumers: pageId: 164221 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\SOFTWARE\germfood\NIGHT OF THE CONSUMERS}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\germfood\\NIGHT OF THE CONSUMERS}}" Night of the Full Moon: pageId: 132106 steam: 769560 @@ -112222,8 +109209,8 @@ NightCry: pageId: 31987 steam: 427660 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\nudemaker\NightCry}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\nudemaker\NightCry\storage\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\nudemaker\\NightCry}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\nudemaker\\NightCry\\storage\\}}" NightKnight: pageId: 104515 steam: 908710 @@ -112231,10 +109218,10 @@ NightSky: pageId: 4895 steam: 99700 templates: - - '{{Game data/config|Windows|{{P|appdata}}\nightsky\enginesettings.ini}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/nightsky/EngineSettings.ini}}' - - '{{Game data/saves|Windows|{{P|appdata}}\nightsky\default.ini}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/nightsky/Default.ini}}' + - "{{Game data/config|Windows|{{P|appdata}}\\nightsky\\enginesettings.ini}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/nightsky/EngineSettings.ini}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\nightsky\\default.ini}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/nightsky/Default.ini}}" NightZ: pageId: 57788 steam: 548480 @@ -112250,7 +109237,7 @@ Nightcrawler VR Bowling: Nightfall Hacker: pageId: 157172 steam: 1204080 -'Nightfall: Escape': +"Nightfall: Escape": pageId: 35180 steam: 360880 Nighthaw-X3000: @@ -112266,7 +109253,7 @@ Nightingale: Nightingale Downs: pageId: 73270 steam: 727220 -'Nightlong: Union City Conspiracy': +"Nightlong: Union City Conspiracy": pageId: 169271 Nightmare: pageId: 55514 @@ -112274,10 +109261,10 @@ Nightmare: Nightmare (2019): pageId: 137464 steam: 1052460 -'Nightmare Adventures: The Turning Thorn': +"Nightmare Adventures: The Turning Thorn": pageId: 61032 steam: 622620 -'Nightmare Adventures: The Witch''s Prison': +"Nightmare Adventures: The Witch's Prison": pageId: 36664 steam: 514750 Nightmare Boy: @@ -112289,8 +109276,8 @@ Nightmare Cave: Nightmare Creatures: pageId: 97744 templates: - - '{{Game data/config|Windows|{{p|game}}\NCSETUP.EXE}}' - - '{{Game data/saves|Windows|{{p|game}}\NIGHTMARE.*}}' + - "{{Game data/config|Windows|{{p|game}}\\NCSETUP.EXE}}" + - "{{Game data/saves|Windows|{{p|game}}\\NIGHTMARE.*}}" Nightmare Farm: pageId: 148159 Nightmare Game (噩梦游戏): @@ -112311,9 +109298,9 @@ Nightmare Reaper: pageId: 136944 steam: 1051690 templates: - - '{{Game data/config|Windows|{{P|LOCALAPPDATA}}\MyProject\Saved\Config\WindowsNoEditor}}' - - '{{Game data/saves|Windows|{{P|game}}\MyProject\Content\Settings}}' - - '{{Game data/saves|GOG.com|{{P|game}}\MyProject\Content\Settings}}' + - "{{Game data/config|Windows|{{P|LOCALAPPDATA}}\\MyProject\\Saved\\Config\\WindowsNoEditor}}" + - "{{Game data/saves|Windows|{{P|game}}\\MyProject\\Content\\Settings}}" + - "{{Game data/saves|GOG.com|{{P|game}}\\MyProject\\Content\\Settings}}" Nightmare Simulator: pageId: 88061 steam: 809790 @@ -112330,7 +109317,7 @@ Nightmare of Decay: pageId: 178315 steam: 1848450 templates: - - '{{Game data/saves|Windows|{{P|game}}\NightmareOfDecay_Data\Saves}}' + - "{{Game data/saves|Windows|{{P|game}}\\NightmareOfDecay_Data\\Saves}}" Nightmare of Melanie: pageId: 105027 steam: 913910 @@ -112343,61 +109330,39 @@ NightmareBullet: NightmareZ: pageId: 38805 steam: 509930 -'Nightmares from the Deep 2: The Siren''s Call': +"Nightmares from the Deep 2: The Siren's Call": gog: 1398417576 pageId: 37271 steam: 284790 templates: - - >- - {{Game data/config|Windows|{{P|appdata}}\Artifex - Mundi\NightmaresFromTheDeep_TheSirensCall\CE\profile\{{P|uid}}\*.prf}} - - >- - {{Game data/config|Linux|{{P|linuxhome}}/.Artifex - Mundi/NightmaresFromTheDeep_TheSirensCall/CE/profile/{{P|uid}}/*.prf}} - - '{{Game data/config|Steam|{{P|steam}}\userdata\{{P|uid}}\284790\remote\profile\*.prf}}' - - >- - {{Game data/saves|Windows|{{P|appdata}}\Artifex - Mundi\NightmaresFromTheDeep_TheSirensCall\CE\profile\{{P|uid}}\*.cub}} - - >- - {{Game data/saves|Linux|{{P|linuxhome}}/.Artifex - Mundi/NightmaresFromTheDeep_TheSirensCall/CE/profile/{{P|uid}}/*.cub}} - - '{{Game data/saves|Steam|{{P|steam}}\userdata\{{P|uid}}\284790\remote\profile\*.cub}}' -'Nightmares from the Deep 3: Davy Jones': + - "{{Game data/config|Windows|{{P|appdata}}\\Artifex Mundi\\NightmaresFromTheDeep_TheSirensCall\\CE\\profile\\{{P|uid}}\\*.prf}}" + - "{{Game data/config|Linux|{{P|linuxhome}}/.Artifex Mundi/NightmaresFromTheDeep_TheSirensCall/CE/profile/{{P|uid}}/*.prf}}" + - "{{Game data/config|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\284790\\remote\\profile\\*.prf}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\Artifex Mundi\\NightmaresFromTheDeep_TheSirensCall\\CE\\profile\\{{P|uid}}\\*.cub}}" + - "{{Game data/saves|Linux|{{P|linuxhome}}/.Artifex Mundi/NightmaresFromTheDeep_TheSirensCall/CE/profile/{{P|uid}}/*.cub}}" + - "{{Game data/saves|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\284790\\remote\\profile\\*.cub}}" +"Nightmares from the Deep 3: Davy Jones": gog: 1074372977 pageId: 37279 steam: 284810 templates: - - >- - {{Game data/config|Windows|{{P|appdata}}\Artifex - Mundi\NightmaresfromTheDeep_DavyJones\CE\profile\{{P|uid}}\*.prf}} - - >- - {{Game data/config|Linux|{{P|linuxhome}}/.Artifex - Mundi/NightmaresfromTheDeep_DavyJones/CE/profile/{{P|uid}}/*.prf}} - - '{{Game data/config|Steam|{{P|steam}}\userdata\{{P|uid}}\284810\remote\profile\*.prf}}' - - '{{Game data/saves|Windows|{{P|appdata}}\Artifex Mundi\NightmaresfromTheDeep_DavyJones\CE\profile\{{P|uid}}\*.cub}}' - - >- - {{Game data/saves|Linux|{{P|linuxhome}}/.Artifex - Mundi/NightmaresfromTheDeep_DavyJones/CE/profile/{{P|uid}}/*.cub}} - - '{{Game data/saves|Steam|{{P|steam}}\userdata\{{P|uid}}\284810\remote\profile\*.cub}}' -'Nightmares from the Deep: The Cursed Heart': + - "{{Game data/config|Windows|{{P|appdata}}\\Artifex Mundi\\NightmaresfromTheDeep_DavyJones\\CE\\profile\\{{P|uid}}\\*.prf}}" + - "{{Game data/config|Linux|{{P|linuxhome}}/.Artifex Mundi/NightmaresfromTheDeep_DavyJones/CE/profile/{{P|uid}}/*.prf}}" + - "{{Game data/config|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\284810\\remote\\profile\\*.prf}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\Artifex Mundi\\NightmaresfromTheDeep_DavyJones\\CE\\profile\\{{P|uid}}\\*.cub}}" + - "{{Game data/saves|Linux|{{P|linuxhome}}/.Artifex Mundi/NightmaresfromTheDeep_DavyJones/CE/profile/{{P|uid}}/*.cub}}" + - "{{Game data/saves|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\284810\\remote\\profile\\*.cub}}" +"Nightmares from the Deep: The Cursed Heart": gog: 1148539461 pageId: 34036 steam: 259740 templates: - - >- - {{Game data/config|Windows|{{P|appdata}}\Artifex - Mundi\NightmaresFromTheDeep_TheCursedHeart\CE\profile\{{P|uid}}\*.prf}} - - >- - {{Game data/config|Linux|{{P|linuxhome}}/.Artifex - Mundi/NightmaresFromTheDeep_TheCursedHeart/CE/profile/{{P|uid}}/*.prf}} - - '{{Game data/config|Steam|{{P|steam}}\userdata\{{P|uid}}\259740\remote\profile\*.prf}}' - - >- - {{Game data/saves|Windows|{{P|appdata}}\Artifex - Mundi\NightmaresFromTheDeep_TheCursedHeart\CE\profile\{{P|uid}}\*.cub}} - - >- - {{Game data/saves|Linux|{{P|linuxhome}}/.Artifex - Mundi/NightmaresFromTheDeep_TheCursedHeart/CE/profile/{{P|uid}}/*.cub}} - - '{{Game data/saves|Steam|{{P|steam}}\userdata\{{P|uid}}\259740\remote\profile\*.cub}}' + - "{{Game data/config|Windows|{{P|appdata}}\\Artifex Mundi\\NightmaresFromTheDeep_TheCursedHeart\\CE\\profile\\{{P|uid}}\\*.prf}}" + - "{{Game data/config|Linux|{{P|linuxhome}}/.Artifex Mundi/NightmaresFromTheDeep_TheCursedHeart/CE/profile/{{P|uid}}/*.prf}}" + - "{{Game data/config|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\259740\\remote\\profile\\*.prf}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\Artifex Mundi\\NightmaresFromTheDeep_TheCursedHeart\\CE\\profile\\{{P|uid}}\\*.cub}}" + - "{{Game data/saves|Linux|{{P|linuxhome}}/.Artifex Mundi/NightmaresFromTheDeep_TheCursedHeart/CE/profile/{{P|uid}}/*.cub}}" + - "{{Game data/saves|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\259740\\remote\\profile\\*.cub}}" Nightork Adventures - Beyond the Moons of Shadalee: pageId: 36874 steam: 493780 @@ -112413,19 +109378,19 @@ Nights into Dreams: - NiGHTS into Dreams... steam: 219950 templates: - - '{{Game data/config|Windows|{{p|game}}\Config\UserConfig.cfg|{{p|game}}\Config\Keyboard.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\Nights.sav}}' + - "{{Game data/config|Windows|{{p|game}}\\Config\\UserConfig.cfg|{{p|game}}\\Config\\Keyboard.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\Nights.sav}}" Nights of Azure: pageId: 56713 steam: 527280 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\KoeiTecmo\Nights of Azure\Settings\*}}' - - '{{Game data/saves|Windows|{{P|steam}}\userdata\{{P|uid}}\527280\remote\GAMEDATA*.*}}' -'Nights of Azure 2: Bride of the New Moon': + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\KoeiTecmo\\Nights of Azure\\Settings\\*}}" + - "{{Game data/saves|Windows|{{P|steam}}\\userdata\\{{P|uid}}\\527280\\remote\\GAMEDATA*.*}}" +"Nights of Azure 2: Bride of the New Moon": pageId: 74858 steam: 636570 templates: - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\636570\remote\}}' + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\636570\\remote\\}}" Nightshade: pageId: 53952 steam: 512180 @@ -112433,7 +109398,7 @@ Nightshade (2019): gog: 1676730918 pageId: 137422 steam: 1028500 -'Nightshift Legacy: The Jaguar''s Eye': +"Nightshift Legacy: The Jaguar's Eye": pageId: 41122 steam: 37330 Nightside: @@ -112442,19 +109407,19 @@ Nightside: Nightstar: pageId: 36165 steam: 511570 -'Nightstar: Alliance': +"Nightstar: Alliance": pageId: 96419 steam: 864970 -'Nightstar: Rogue Wings': +"Nightstar: Rogue Wings": pageId: 59808 steam: 595360 -'Nighttime Terror VR: Dessert Defender': +"Nighttime Terror VR: Dessert Defender": pageId: 43807 steam: 451870 Nightwalk: pageId: 135610 steam: 1056850 -'Nightwolf: Survive the Megadome': +"Nightwolf: Survive the Megadome": pageId: 81516 steam: 760050 Nihilist Simulator: @@ -112464,42 +109429,40 @@ Nihilumbra: pageId: 13431 steam: 252670 templates: - - '{{Game data/config|Steam|{{P|game}}\*.xml}}' - - '{{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\Beautifun Games\Nihilumbra}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Beautifun Games/Nihilumbra/}}' - - '{{Game data/saves|Steam|{{P|game}}\*.xml}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Beautifun Games\Nihilumbra}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Beautifun Games/Nihilumbra/}}' -'Nijowari: Where Angels Fall': + - "{{Game data/config|Steam|{{P|game}}\\*.xml}}" + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Beautifun Games\\Nihilumbra}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Beautifun Games/Nihilumbra/}}" + - "{{Game data/saves|Steam|{{P|game}}\\*.xml}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Beautifun Games\\Nihilumbra}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Beautifun Games/Nihilumbra/}}" +"Nijowari: Where Angels Fall": pageId: 150197 steam: 1156980 -'Nikita: The Mystery of the Hidden Treasure': +"Nikita: The Mystery of the Hidden Treasure": pageId: 165236 templates: - - '{{Game data/config|Windows|{{p|game}}\Data\*.scr}}' - - '{{Game data/saves|Windows|{{p|game}}\Data\Profiles\}}' -'Niko: Through the Dream': + - "{{Game data/config|Windows|{{p|game}}\\Data\\*.scr}}" + - "{{Game data/saves|Windows|{{p|game}}\\Data\\Profiles\\}}" +"Niko: Through the Dream": gog: 1434446017 pageId: 34348 steam: 296550 -'Nikopol: Secrets of the Immortals': +"Nikopol: Secrets of the Immortals": gog: 1421047985 pageId: 41257 steam: 11370 templates: - - '{{Game data/config|Windows|{{P|game}}\config.ini|{{P|userprofile}}\Documents\Nikopol\Profil*\config.lua}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\Documents\Nikopol\Profil*\save*.lua}}' -'Nil-Ninjahtic: Ronin': + - "{{Game data/config|Windows|{{P|game}}\\config.ini|{{P|userprofile}}\\Documents\\Nikopol\\Profil*\\config.lua}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\Documents\\Nikopol\\Profil*\\save*.lua}}" +"Nil-Ninjahtic: Ronin": pageId: 44126 steam: 454130 Nimbatus: pageId: 58053 steam: 383840 templates: - - >- - {{Game - data/config|Windows|{{P|userprofile\appdata\locallow}}\Nimbatus\Nimbatus\Settings.ini|{{P|hkcu}}\SOFTWARE\Nimbatus\Nimbatus\}} - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Nimbatus\Nimbatus\Saves\}}' + - "{{Game data/config|Windows|{{P|userprofile\\appdata\\locallow}}\\Nimbatus\\Nimbatus\\Settings.ini|{{P|hkcu}}\\SOFTWARE\\Nimbatus\\Nimbatus\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Nimbatus\\Nimbatus\\Saves\\}}" Nimble Bunn: pageId: 89308 steam: 717450 @@ -112510,8 +109473,8 @@ Nimble Quest: pageId: 37917 steam: 259780 templates: - - '{{Game data/saves|Windows|{{p|hkcu}}\Software\NimbleBit\Nimble Quest}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/NimbleBit/Nimble Quest/}}' + - "{{Game data/saves|Windows|{{p|hkcu}}\\Software\\NimbleBit\\Nimble Quest}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/NimbleBit/Nimble Quest/}}" Nimbus: pageId: 37297 steam: 50000 @@ -112522,11 +109485,11 @@ NinNinDays: gog: 1801437059 pageId: 141841 steam: 1075980 -'Nina: Agent Chronicles': +"Nina: Agent Chronicles": pageId: 25027 templates: - - '{{Game data/config|Windows|{{p|game}}\autoexec.cfg}}' - - '{{Game data/config|Windows|{{p|game}}\Save\}}' + - "{{Game data/config|Windows|{{p|game}}\\autoexec.cfg}}" + - "{{Game data/config|Windows|{{p|game}}\\Save\\}}" Nine: pageId: 56764 steam: 582440 @@ -112534,8 +109497,8 @@ Nine Chronicles: pageId: 165930 steam: 1279500 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\SOFTWARE\Planetarium\9c}}' - - '{{Game data/saves|Windows|{{P|appdata}}\planetarium\keystore\|{{P|localappdata}}\planetarium\9c-main\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\SOFTWARE\\Planetarium\\9c}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\planetarium\\keystore\\|{{P|localappdata}}\\planetarium\\9c-main\\}}" Nine Circles of Hell: pageId: 155881 steam: 1200600 @@ -112551,25 +109514,25 @@ Nine Parchments: pageId: 39715 steam: 471550 templates: - - '{{Game data/config|Windows|{{p|appdata}}\NineParchments\options.txt}}' - - '{{Game data/saves|Windows|{{p|appdata}}\NineParchments\}}' - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\471550\remote\}}' -'Nine Provinces: Caravan': + - "{{Game data/config|Windows|{{p|appdata}}\\NineParchments\\options.txt}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\NineParchments\\}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\471550\\remote\\}}" +"Nine Provinces: Caravan": pageId: 153936 renamedFrom: - - '九州:商旅(Nine Provinces: Caravan)' + - "九州:商旅(Nine Provinces: Caravan)" steam: 908100 Nine Sols: pageId: 176148 steam: 1809540 -'Nine Witches: Family Disruption': +"Nine Witches: Family Disruption": gog: 1205379739 pageId: 164897 steam: 1272580 templates: - - '{{Game data/config|Windows|{{P|userprofile}}\Saved Games\Nine Witches Family Disruption\UserSettings.xml}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\Saved Games\Nine Witches Family Disruption}}' -'Nine Worlds: A Viking Saga': + - "{{Game data/config|Windows|{{P|userprofile}}\\Saved Games\\Nine Witches Family Disruption\\UserSettings.xml}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\Saved Games\\Nine Witches Family Disruption}}" +"Nine Worlds: A Viking Saga": pageId: 69850 steam: 700460 Ninja Avenger Dragon Blade: @@ -112579,8 +109542,8 @@ Ninja Blade: pageId: 9088 steam: 37010 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\NinjaBlade\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\NinjaBlade\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\NinjaBlade\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\NinjaBlade\\}}" Ninja Cats vs Samurai Dogs: pageId: 50636 steam: 260380 @@ -112593,51 +109556,31 @@ Ninja Commando: pageId: 168745 Ninja Gaiden: pageId: 176109 -'Ninja Gaiden 3: Razor''s Edge': +"Ninja Gaiden 3: Razor's Edge": pageId: 168000 steam: 1369760 templates: - - >- - {{Game - data/config|Windows|{{P|userprofile\Documents}}\KoeiTecmo\NINJAGAIDEN3RE\{{P|uid}}\SYSTEMSAVE\SYSTEMSAVE.DAT|{{P|userprofile\Documents}}\KoeiTecmo\NINJAGAIDEN3RE\{{P|uid}}\USER_SETTING\WINSTATE.INI}} - - >- - {{Game - data/saves|Windows|{{P|userprofile\Documents}}\KoeiTecmo\NINJAGAIDEN3RE\{{P|uid}}\CHAPSSAVE\|{{P|userprofile\Documents}}\KoeiTecmo\NINJAGAIDEN3RE\{{P|uid}}\REPLYSAVE\|{{P|userprofile\Documents}}\KoeiTecmo\NINJAGAIDEN3RE\{{P|uid}}\REPLYTRIALSSAVE\|{{P|userprofile\Documents}}\KoeiTecmo\NINJAGAIDEN3RE\{{P|uid}}\STORYSAV\}} - - >- - {{Game data/saves|Microsoft - Store|{{P|localappdata}}\Packages\946B6A6E.NINJAGAIDEN3RazorsEdge_dkffhzhmh6pmy\SystemAppData\wgs}} -'Ninja Gaiden II: The Dark Sword of Chaos': + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\KoeiTecmo\\NINJAGAIDEN3RE\\{{P|uid}}\\SYSTEMSAVE\\SYSTEMSAVE.DAT|{{P|userprofile\\Documents}}\\KoeiTecmo\\NINJAGAIDEN3RE\\{{P|uid}}\\USER_SETTING\\WINSTATE.INI}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\KoeiTecmo\\NINJAGAIDEN3RE\\{{P|uid}}\\CHAPSSAVE\\|{{P|userprofile\\Documents}}\\KoeiTecmo\\NINJAGAIDEN3RE\\{{P|uid}}\\REPLYSAVE\\|{{P|userprofile\\Documents}}\\KoeiTecmo\\NINJAGAIDEN3RE\\{{P|uid}}\\REPLYTRIALSSAVE\\|{{P|userprofile\\Documents}}\\KoeiTecmo\\NINJAGAIDEN3RE\\{{P|uid}}\\STORYSAV\\}}" + - "{{Game data/saves|Microsoft Store|{{P|localappdata}}\\Packages\\946B6A6E.NINJAGAIDEN3RazorsEdge_dkffhzhmh6pmy\\SystemAppData\\wgs}}" +"Ninja Gaiden II: The Dark Sword of Chaos": pageId: 176111 Ninja Gaiden Σ: pageId: 167999 steam: 1580780 templates: - - >- - {{Game - data/config|Windows|{{P|userprofile\Documents}}\KoeiTecmo\NINJAGAIDENSIGMA\{{P|uid}}\SYSTEM\*_SAVE.DAT|{{P|userprofile\Documents}}\KoeiTecmo\NINJAGAIDENSIGMA\{{P|uid}}\USER_SETTING\WINSTATE.DAT}} - - >- - {{Game - data/saves|Windows|{{P|userprofile\Documents}}\KoeiTecmo\NINJAGAIDENSIGMA\{{P|uid}}\SAVEPOINT\*_SAVEDATA.DAT}} - - >- - {{Game data/saves|Microsoft - Store|{{P|localappdata}}\Packages\946B6A6E.NINJAGAIDENSIGMA_dkffhzhmh6pmy\SystemAppData\wgs}} + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\KoeiTecmo\\NINJAGAIDENSIGMA\\{{P|uid}}\\SYSTEM\\*_SAVE.DAT|{{P|userprofile\\Documents}}\\KoeiTecmo\\NINJAGAIDENSIGMA\\{{P|uid}}\\USER_SETTING\\WINSTATE.DAT}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\KoeiTecmo\\NINJAGAIDENSIGMA\\{{P|uid}}\\SAVEPOINT\\*_SAVEDATA.DAT}}" + - "{{Game data/saves|Microsoft Store|{{P|localappdata}}\\Packages\\946B6A6E.NINJAGAIDENSIGMA_dkffhzhmh6pmy\\SystemAppData\\wgs}}" Ninja Gaiden Σ2: pageId: 168001 steam: 1580790 templates: - - >- - {{Game - data/config|Windows|{{P|userprofile\Documents}}\KoeiTecmo\NINJAGAIDENSIGMA2\{{P|uid}}\SYSTEMSAVE\SYSTEMSAVE.DAT|{{P|userprofile\Documents}}\KoeiTecmo\NINJAGAIDENSIGMA2\{{P|uid}}\USER_SETTING\WINSTATE.DAT}} - - >- - {{Game data/config|Microsoft - Store|{{P|localappdata}}\Packages\946B6A6E.NINJAGAIDENSIGMA2_dkffhzhmh6pmy\SystemAppData\wgs}} - - >- - {{Game - data/saves|Windows|{{P|userprofile\Documents}}\KoeiTecmo\NINJAGAIDENSIGMA2\{{P|uid}}\CHAPSSAVE\|{{P|userprofile\Documents}}\KoeiTecmo\NINJAGAIDENSIGMA2\{{P|uid}}\STORYSAV\}} - - >- - {{Game data/saves|Microsoft - Store|{{P|localappdata}}\Packages\946B6A6E.NINJAGAIDENSIGMA2_dkffhzhmh6pmy\SystemAppData\wgs}} -'Ninja Gaiden: Master Collection': + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\KoeiTecmo\\NINJAGAIDENSIGMA2\\{{P|uid}}\\SYSTEMSAVE\\SYSTEMSAVE.DAT|{{P|userprofile\\Documents}}\\KoeiTecmo\\NINJAGAIDENSIGMA2\\{{P|uid}}\\USER_SETTING\\WINSTATE.DAT}}" + - "{{Game data/config|Microsoft Store|{{P|localappdata}}\\Packages\\946B6A6E.NINJAGAIDENSIGMA2_dkffhzhmh6pmy\\SystemAppData\\wgs}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\KoeiTecmo\\NINJAGAIDENSIGMA2\\{{P|uid}}\\CHAPSSAVE\\|{{P|userprofile\\Documents}}\\KoeiTecmo\\NINJAGAIDENSIGMA2\\{{P|uid}}\\STORYSAV\\}}" + - "{{Game data/saves|Microsoft Store|{{P|localappdata}}\\Packages\\946B6A6E.NINJAGAIDENSIGMA2_dkffhzhmh6pmy\\SystemAppData\\wgs}}" +"Ninja Gaiden: Master Collection": pageId: 166724 Ninja Gainyk: pageId: 65015 @@ -112654,13 +109597,13 @@ Ninja Goemon and Immortal Jewels: Ninja Guy: pageId: 49033 steam: 340630 -'Ninja JaJaMaru: The Great Yokai Battle + Hell': +"Ninja JaJaMaru: The Great Yokai Battle + Hell": pageId: 175569 renamedFrom: - - 'Ninja JaJaMaru: The Great Yokai Battle Hell' + - "Ninja JaJaMaru: The Great Yokai Battle Hell" steam: 1195070 templates: - - '{{Game data/saves|Windows|{{p|appdata}}\City Connection\JajaHell\JAJACOLESYSTEM.bin}}' + - "{{Game data/saves|Windows|{{p|appdata}}\\City Connection\\JajaHell\\JAJACOLESYSTEM.bin}}" Ninja Jajamaru-kun: pageId: 175915 Ninja Jump: @@ -112672,7 +109615,7 @@ Ninja Kiwi Archive: Ninja Legends: pageId: 132754 steam: 1053830 -Ninja Master's: +"Ninja Master's": pageId: 168089 Ninja Midori: pageId: 95270 @@ -112684,10 +109627,8 @@ Ninja Pizza Girl: pageId: 37333 steam: 319470 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Disparity Games\Ninja Pizza Girl\}}' - - >- - {{Game data/saves|Windows|{{p|USERPROFILE}}\AppData\LocalLow\Disparity Games\Ninja Pizza - Girl\{{p|uid}}\NPGSaveData.dat}} + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Disparity Games\\Ninja Pizza Girl\\}}" + - "{{Game data/saves|Windows|{{p|USERPROFILE}}\\AppData\\LocalLow\\Disparity Games\\Ninja Pizza Girl\\{{p|uid}}\\NPGSaveData.dat}}" Ninja Power Slasher: pageId: 125207 steam: 997670 @@ -112695,8 +109636,8 @@ Ninja Reflex: pageId: 19109 steam: 13000 templates: - - '{{Game data/config|Windows|{{P|hklm}}\SOFTWARE\{{P|wow64}}\Nunchuck Games\Ninja Reflex\1.00.0000\Configuration}}' - - '{{Game data/saves|Windows|{{p|game}}\save.dat}}' + - "{{Game data/config|Windows|{{P|hklm}}\\SOFTWARE\\{{P|wow64}}\\Nunchuck Games\\Ninja Reflex\\1.00.0000\\Configuration}}" + - "{{Game data/saves|Windows|{{p|game}}\\save.dat}}" Ninja Roquinexu: pageId: 136690 steam: 1081190 @@ -112704,17 +109645,17 @@ Ninja Run: pageId: 153768 steam: 1201250 templates: - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\Local\Side_Scrolling_Runner\ninja_run_save.ini}}' + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\Local\\Side_Scrolling_Runner\\ninja_run_save.ini}}" Ninja Senki: pageId: 177408 templates: - - '{{Game data/config|Windows|{{P|game}}\gamepad.cfg}}' + - "{{Game data/config|Windows|{{P|game}}\\gamepad.cfg}}" Ninja Senki DX: pageId: 44477 steam: 405540 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\NinjaSenkiDX\keyboard.cfg}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\NinjaSenkiDX\SaveGame\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\NinjaSenkiDX\\keyboard.cfg}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\NinjaSenkiDX\\SaveGame\\}}" Ninja Shodown: pageId: 72220 steam: 598840 @@ -112728,7 +109669,7 @@ Ninja Stealth: pageId: 42688 steam: 485450 templates: - - '{{Game data/saves|Windows|{{p|game}}\Ninja Stealth\Save}}' + - "{{Game data/saves|Windows|{{p|game}}\\Ninja Stealth\\Save}}" Ninja Stealth 2: pageId: 57082 steam: 585830 @@ -112745,8 +109686,8 @@ Ninja Tycoon: pageId: 81633 steam: 779330 templates: - - '{{Game data/config|Linux|/home//.config/unity3d/Endless Loop Studios/Ninja Tycoon}}' - - '{{Game data/saves|Linux|/home//.steam/steamapps/common/Ninja Tycoon/NinjaTycoon_Data/Saves}}' + - "{{Game data/config|Linux|/home//.config/unity3d/Endless Loop Studios/Ninja Tycoon}}" + - "{{Game data/saves|Linux|/home//.steam/steamapps/common/Ninja Tycoon/NinjaTycoon_Data/Saves}}" Ninja Village War 2: pageId: 78260 steam: 754350 @@ -112770,25 +109711,25 @@ Ninjahtic: Ninjahtic Mind Tricks: pageId: 47253 steam: 387880 -'Ninjin: Clash of Carrots': +"Ninjin: Clash of Carrots": pageId: 105097 steam: 809870 -Nino's Isekai: +"Nino's Isekai": pageId: 140910 steam: 1078960 -'Nioh 2: The Complete Edition': +"Nioh 2: The Complete Edition": pageId: 165272 steam: 1325200 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\KoeiTecmo\NIOH2\}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\KoeiTecmo\NIOH2\Savedata\{{P|uid}}\}}' -'Nioh: Complete Edition': + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\KoeiTecmo\\NIOH2\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\KoeiTecmo\\NIOH2\\Savedata\\{{P|uid}}\\}}" +"Nioh: Complete Edition": pageId: 73165 steam: 485510 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\KoeiTecmo\NIOH\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\KoeiTecmo\NIOH\Savedata\}}' -Niplheim's Hunter - Branded Azel: + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\KoeiTecmo\\NIOH\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\KoeiTecmo\\NIOH\\Savedata\\}}" +"Niplheim's Hunter - Branded Azel": gog: 1436570317 pageId: 124639 steam: 965670 @@ -112799,32 +109740,32 @@ Nippon Marathon: pageId: 86977 steam: 746940 templates: - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\OnionSoupInteractive\Nippon Marathon\SmoothSave####}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/OnionSoupInteractive/Nippon Marathon/SmoothSave####}}' -'Nippon Safes, Inc.': + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\OnionSoupInteractive\\Nippon Marathon\\SmoothSave####}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/OnionSoupInteractive/Nippon Marathon/SmoothSave####}}" +"Nippon Safes, Inc.": pageId: 147012 templates: - - '{{Game data/saves|DOS|{{p|game}}\GAME.*|{{p|game}}\SAVEGAME}}' + - "{{Game data/saves|DOS|{{p|game}}\\GAME.*|{{p|game}}\\SAVEGAME}}" Nira: pageId: 151091 steam: 1171120 templates: - - '{{Game data/config|Windows|{{P|appdata|}}\Nira\settings.ini}}' - - '{{Game data/saves|Windows|{{P|appdata|}}\Nira\save.ini}}' + - "{{Game data/config|Windows|{{P|appdata|}}\\Nira\\settings.ini}}" + - "{{Game data/saves|Windows|{{P|appdata|}}\\Nira\\save.ini}}" Nirvana Pilot Yume: pageId: 77950 steam: 716680 -'Nirvana: The First Travel': +"Nirvana: The First Travel": pageId: 47027 steam: 386630 -'NitorInc.: Touhou Microgames!': +"NitorInc.: Touhou Microgames!": pageId: 79446 steam: 772260 Nitro Family: pageId: 161714 templates: - - '{{Game data/config|Windows|{{p|game}}\Scripts\}}' - - '{{Game data/saves|Windows|{{p|game}}\SaveGame\}}' + - "{{Game data/config|Windows|{{p|game}}\\Scripts\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\SaveGame\\}}" Nitro Nation Drag & Drift: pageId: 172211 Nitro Racers: @@ -112832,7 +109773,7 @@ Nitro Racers: pageId: 182385 steam: 2067150 templates: - - '{{Game data/config|DOS|{{p|game}}\NITRO-X.CFG}}' + - "{{Game data/config|DOS|{{p|game}}\\NITRO-X.CFG}}" Nitro Stunt Racing: pageId: 161868 NitroRage: @@ -112844,14 +109785,14 @@ Nitroneers: Nitronic Rush: pageId: 5800 templates: - - '{{Game data/config|Windows|{{p|game}}\config\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\digipen\nitronic_rush\}}' -'Nitroplus Blasterz: Heroines Infinite Duel': + - "{{Game data/config|Windows|{{p|game}}\\config\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\digipen\\nitronic_rush\\}}" +"Nitroplus Blasterz: Heroines Infinite Duel": pageId: 54604 steam: 482450 templates: - - '{{Game data/config|Windows|{{P|game}}\SaveData}}' - - '{{Game data/saves|Windows|{{P|game}}\SaveData}}' + - "{{Game data/config|Windows|{{P|game}}\\SaveData}}" + - "{{Game data/saves|Windows|{{P|game}}\\SaveData}}" No Body Home: pageId: 122784 steam: 794420 @@ -112892,26 +109833,22 @@ No Longer Home: gog: 1139263045 pageId: 68508 renamedFrom: - - '29' + - "29" steam: 651490 -No Man's Land: +"No Man's Land": pageId: 28578 templates: - - '{{Game data/config|Windows|{{p|game}}\Run\engine.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\Run\savegame}}' -No Man's Sky: + - "{{Game data/config|Windows|{{p|game}}\\Run\\engine.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\Run\\savegame}}" +"No Man's Sky": gog: 1446213994 pageId: 25679 steam: 275850 templates: - - '{{Game data/config|Windows|{{P|game}}\Binaries\SETTINGS\}}' - - >- - {{Game data/config|Microsoft - Store|{{P|localappdata}}\Packages\HelloGames.NoMansSky_bs190hzg1sesy\LocalCache\Local\Microsoft\WritablePackageRoot\Binaries\SETTINGS}} - - '{{Game data/saves|Windows|{{p|appdata}}\HelloGames\NMS\}}' - - >- - {{Game data/saves|Microsoft - Store|{{P|localappdata}}\Packages\HelloGames.NoMansSky_bs190hzg1sesy\SystemAppData\wgs}} + - "{{Game data/config|Windows|{{P|game}}\\Binaries\\SETTINGS\\}}" + - "{{Game data/config|Microsoft Store|{{P|localappdata}}\\Packages\\HelloGames.NoMansSky_bs190hzg1sesy\\LocalCache\\Local\\Microsoft\\WritablePackageRoot\\Binaries\\SETTINGS}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\HelloGames\\NMS\\}}" + - "{{Game data/saves|Microsoft Store|{{P|localappdata}}\\Packages\\HelloGames.NoMansSky_bs190hzg1sesy\\SystemAppData\\wgs}}" No Mans Land: pageId: 69663 steam: 666560 @@ -112919,20 +109856,20 @@ No More Heroes: pageId: 168922 steam: 1420290 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\Saved Games\NMH\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\Saved Games\NMH\saves\}}' -'No More Heroes 2: Desperate Struggle': + - "{{Game data/config|Windows|{{p|userprofile}}\\Saved Games\\NMH\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Saved Games\\NMH\\saves\\}}" +"No More Heroes 2: Desperate Struggle": pageId: 168925 steam: 1420300 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\Saved Games\NMH2\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\Saved Games\NMH2\saves\}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\Saved Games\\NMH2\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Saved Games\\NMH2\\saves\\}}" No More Heroes 3: pageId: 177067 steam: 1744330 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\No More Heroes 3\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\No More Heroes 3\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\No More Heroes 3\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\No More Heroes 3\\Saved\\SaveGames\\}}" No More Heroes III: pageId: 177066 renamedFrom: @@ -112949,7 +109886,7 @@ No More Room in Hell: pageId: 11957 steam: 224260 templates: - - '{{Game data/config|Windows|{{p|game}}/nmrih/cfg}}' + - "{{Game data/config|Windows|{{p|game}}/nmrih/cfg}}" No More Room in Hell 2: pageId: 89831 steam: 292000 @@ -112959,18 +109896,18 @@ No One: No One But You: pageId: 33624 steam: 367020 -'No One Lives Forever 2: A Spy in H.A.R.M.''s Way': +"No One Lives Forever 2: A Spy in H.A.R.M.'s Way": pageId: 4528 templates: - - '{{Game data/config|Windows|{{p|game}}\*.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\Save\Player\SinglePlayer}}' + - "{{Game data/config|Windows|{{p|game}}\\*.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\Save\\Player\\SinglePlayer}}" No One Lives in Heaven: gog: 1730497515 pageId: 170755 steam: 1321030 templates: - - '{{Game data/saves|Windows|{{p|game}}\save\*.rpgsave|{{p|game}}\MEISTERVERSION\save\*.rpgsave}}' - - '{{Game data/saves|OS X|{{p|game}}/Game.app/Contents/Resources/app.nw/*.json}}' + - "{{Game data/saves|Windows|{{p|game}}\\save\\*.rpgsave|{{p|game}}\\MEISTERVERSION\\save\\*.rpgsave}}" + - "{{Game data/saves|OS X|{{p|game}}/Game.app/Contents/Resources/app.nw/*.json}}" No Ordinary Elevator: pageId: 77857 steam: 763880 @@ -112979,10 +109916,8 @@ No Pineapple Left Behind: pageId: 34254 steam: 350090 templates: - - >- - {{Game data/config|Windows|{{P|game}}\nplb_Data\Data\config.txt|{{P|hkcu}}\Software\Subaltern Games\No Pineapple - Left Behind\}} - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\NPLB_Save_File\save.nplb}}' + - "{{Game data/config|Windows|{{P|game}}\\nplb_Data\\Data\\config.txt|{{P|hkcu}}\\Software\\Subaltern Games\\No Pineapple Left Behind\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\NPLB_Save_File\\save.nplb}}" No Place for Bravery: gog: 1612879901 pageId: 171973 @@ -113006,8 +109941,8 @@ No Straight Roads: pageId: 145705 steam: 1726190 templates: - - '{{Game data/config|Windows|{{p|LocalAppData}}\NoStraightRoads\Saved\Config\WindowsNoEditor}}' - - '{{Game data/saves|Windows|{{p|LocalAppData}}\NoStraightRoads\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{p|LocalAppData}}\\NoStraightRoads\\Saved\\Config\\WindowsNoEditor}}" + - "{{Game data/saves|Windows|{{p|LocalAppData}}\\NoStraightRoads\\Saved\\SaveGames\\}}" No Time: pageId: 132496 steam: 1043340 @@ -113018,19 +109953,19 @@ No Time to Explain: pageId: 4613 steam: 227280 templates: - - '{{Game data/config|Steam|{{p|steam}}/userdata/{{P|uid}}/227280/remote/}}' - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{P|uid}}/227280/remote/}}' + - "{{Game data/config|Steam|{{p|steam}}/userdata/{{P|uid}}/227280/remote/}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{P|uid}}/227280/remote/}}" No Time to Explain Remastered: pageId: 26513 steam: 368730 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\tinyBuild GAMES\No Time To Explain\}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/tinyBuild GAMES/No Time To Explain/}}' - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/368730/remote/}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\tinyBuild GAMES\\No Time To Explain\\}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/tinyBuild GAMES/No Time To Explain/}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/368730/remote/}}" No Time to Relax: pageId: 122656 steam: 829660 -'No Turning Back: The Pixel Art Action-Adventure Roguelike': +"No Turning Back: The Pixel Art Action-Adventure Roguelike": pageId: 44952 steam: 358080 No Way Home: @@ -113044,7 +109979,7 @@ No Way Out - A Dead Realm Tale: No1Left: pageId: 44535 steam: 409580 -'No70: Eye of Basir': +"No70: Eye of Basir": pageId: 58694 steam: 370440 NoGame: @@ -113054,15 +109989,15 @@ NoLimits 2 Roller Coaster Simulation: pageId: 37830 steam: 301320 templates: - - '{{Game data/config|Windows|{{p|appdata}}\com.nolimitscoaster.nolimits2}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\com.nolimitscoaster.nolimits2\}}' + - "{{Game data/config|Windows|{{p|appdata}}\\com.nolimitscoaster.nolimits2}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\com.nolimitscoaster.nolimits2\\}}" NoReload Heroes: pageId: 90596 steam: 806770 Noahmund: pageId: 99854 steam: 752560 -'Noble Armada: Lost Worlds': +"Noble Armada: Lost Worlds": pageId: 105137 steam: 886230 Noble Crusade: @@ -113071,17 +110006,17 @@ Noble Crusade: Noble In Exile: pageId: 125081 steam: 955600 -Noble Woman's Pastries: +"Noble Woman's Pastries": pageId: 152724 steam: 1195980 Nobodies: pageId: 135795 steam: 1038280 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\SOFTWARE\Blyts\Nobodies}}' - - '{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/Blyts/Nobodies/prefs}}' - - '{{Game data/saves|Windows|{{P|hkcu}}\SOFTWARE\Blyts\Nobodies}}' - - '{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/Blyts/Nobodies/prefs}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\SOFTWARE\\Blyts\\Nobodies}}" + - "{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/Blyts/Nobodies/prefs}}" + - "{{Game data/saves|Windows|{{P|hkcu}}\\SOFTWARE\\Blyts\\Nobodies}}" + - "{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/Blyts/Nobodies/prefs}}" Nobody Knows: pageId: 90246 steam: 824520 @@ -113090,15 +110025,13 @@ Nobody Saves the World: pageId: 174258 steam: 1432050 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\NStW\}}' - - '{{Game data/config|GOG.com|{{P|userprofile\Documents}}\NStW_GOG\}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\NStW\}}' - - '{{Game data/saves|GOG.com|{{P|userprofile\Documents}}\NStW_GOG\}}' - - >- - {{Game data/saves|Microsoft - Store|{{P|localappdata}}\Packages\DrinkboxStudios.NobodySavestheWorld_n8jvyy2pw6mya\SystemAppData\}} - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\1432050\}}' -'Nobody: The Turnaround': + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\NStW\\}}" + - "{{Game data/config|GOG.com|{{P|userprofile\\Documents}}\\NStW_GOG\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\NStW\\}}" + - "{{Game data/saves|GOG.com|{{P|userprofile\\Documents}}\\NStW_GOG\\}}" + - "{{Game data/saves|Microsoft Store|{{P|localappdata}}\\Packages\\DrinkboxStudios.NobodySavestheWorld_n8jvyy2pw6mya\\SystemAppData\\}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\1432050\\}}" +"Nobody: The Turnaround": pageId: 179122 renamedFrom: - Nobody - The Turnaround @@ -113106,68 +110039,68 @@ Nobody Saves the World: Nobophobia: pageId: 114590 steam: 944560 -Nobunaga's Ambition: +"Nobunaga's Ambition": pageId: 54931 steam: 544990 -Nobunaga's Ambition Returns: +"Nobunaga's Ambition Returns": pageId: 180220 -'Nobunaga''s Ambition: Awakening': +"Nobunaga's Ambition: Awakening": pageId: 186967 steam: 1336980 -'Nobunaga''s Ambition: Bushou Fuunroku': +"Nobunaga's Ambition: Bushou Fuunroku": pageId: 59591 steam: 521740 -'Nobunaga''s Ambition: Haouden': +"Nobunaga's Ambition: Haouden": pageId: 64457 steam: 628090 -'Nobunaga''s Ambition: Kakushin': +"Nobunaga's Ambition: Kakushin": pageId: 47489 steam: 363090 -'Nobunaga''s Ambition: Ranseiki': +"Nobunaga's Ambition: Ranseiki": pageId: 74386 steam: 628120 -'Nobunaga''s Ambition: Reppuden': +"Nobunaga's Ambition: Reppuden": pageId: 69436 steam: 628110 -'Nobunaga''s Ambition: Sengoku Gunyuuden': +"Nobunaga's Ambition: Sengoku Gunyuuden": pageId: 58304 steam: 521700 -'Nobunaga''s Ambition: Shouseiroku': +"Nobunaga's Ambition: Shouseiroku": pageId: 66576 steam: 628100 -'Nobunaga''s Ambition: Soutenroku': +"Nobunaga's Ambition: Soutenroku": pageId: 77583 steam: 628130 -'Nobunaga''s Ambition: Souzou': +"Nobunaga's Ambition: Souzou": pageId: 49707 steam: 292990 -'Nobunaga''s Ambition: Sphere of Influence': +"Nobunaga's Ambition: Sphere of Influence": pageId: 34661 steam: 392470 -'Nobunaga''s Ambition: Sphere of Influence - Ascension': +"Nobunaga's Ambition: Sphere of Influence - Ascension": pageId: 44010 renamedFrom: - - 'Nobunaga''s Ambition: Souzou SengokuRisshiden' + - "Nobunaga's Ambition: Souzou SengokuRisshiden" steam: 375450 -'Nobunaga''s Ambition: Taishi': +"Nobunaga's Ambition: Taishi": pageId: 77649 steam: 628890 -'Nobunaga''s Ambition: Tendou': +"Nobunaga's Ambition: Tendou": pageId: 47488 steam: 363110 -'Nobunaga''s Ambition: Tenkasousei': +"Nobunaga's Ambition: Tenkasousei": pageId: 80837 steam: 628140 -'Nobunaga''s Ambition: Tenshouki WPK HD Version': +"Nobunaga's Ambition: Tenshouki WPK HD Version": pageId: 45670 steam: 370730 -'Nobunaga''s Ambition: Zenkokuban': +"Nobunaga's Ambition: Zenkokuban": pageId: 56970 steam: 521660 -Nobunaga's Shadow: +"Nobunaga's Shadow": pageId: 96537 steam: 868930 -'Nock: Hidden Arrow': +"Nock: Hidden Arrow": pageId: 53834 steam: 525210 Nocked! True Tales of Robin Hood: @@ -113177,28 +110110,28 @@ Noct: pageId: 45958 steam: 330570 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\C3SK_NOCT_BETA\Noct\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\C3SK_NOCT_BETA\\Noct\\}}" Noctropolis: gog: 1444206831 pageId: 34272 steam: 377070 templates: - - '{{Game data/config|Windows|{{p|game}}\noctropolis.cfg}}' - - '{{Game data/saves|Windows|{{P|game}}\saves\}}' + - "{{Game data/config|Windows|{{p|game}}\\noctropolis.cfg}}" + - "{{Game data/saves|Windows|{{P|game}}\\saves\\}}" Nocturnal: gog: 1851444356 pageId: 187756 steam: 1634080 templates: - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\Sunnyside Games\Nocturnal\{{p|uid}}\*.sav}}' + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\Sunnyside Games\\Nocturnal\\{{p|uid}}\\*.sav}}" Nocturnal Hunt: pageId: 76209 steam: 635550 Nocturne: pageId: 75817 templates: - - '{{Game data/config|Windows|{{P|game}}\SYSTEM\}}' - - '{{Game data/saves|Windows|{{P|game}}\save\}}' + - "{{Game data/config|Windows|{{P|game}}\\SYSTEM\\}}" + - "{{Game data/saves|Windows|{{P|game}}\\save\\}}" Nocturne in Yellow: pageId: 166737 Nocturne of Steel: @@ -113223,10 +110156,8 @@ Noel The Mortal Fate S1-7: pageId: 94495 steam: 850000 templates: - - >- - {{Game - data/saves|Windows|{{p|game}}\gamedata\noel1-7\noel_s*\www\save\|{{p|game}}\gamedata\noel8\noel_s8\www\save\|{{p|game}}\gamedata\noel9\noel_s9\www\save\}} -Noel's Hope: + - "{{Game data/saves|Windows|{{p|game}}\\gamedata\\noel1-7\\noel_s*\\www\\save\\|{{p|game}}\\gamedata\\noel8\\noel_s8\\www\\save\\|{{p|game}}\\gamedata\\noel9\\noel_s9\\www\\save\\}}" +"Noel's Hope": pageId: 125948 steam: 1004780 Noelle Does Her Best!: @@ -113242,10 +110173,10 @@ Nogalious MSX: Nogard: pageId: 90138 steam: 725140 -'Nogibator: Way of Legs': +"Nogibator: Way of Legs": pageId: 78206 steam: 754330 -'Noir Chronicles: City of Crime': +"Noir Chronicles: City of Crime": pageId: 80859 steam: 756500 Noir Syndrome: @@ -113266,14 +110197,14 @@ Noita: steamSide: - 1161410 templates: - - '{{Game data/config|Windows|{{P|userprofile}}\AppData\LocalLow\Nolla_Games_Noita\save_shared\config.xml}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Nolla_Games_Noita\}}' -'Noitu Love 2: Devolution': + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Nolla_Games_Noita\\save_shared\\config.xml}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Nolla_Games_Noita\\}}" +"Noitu Love 2: Devolution": pageId: 14021 steam: 207530 templates: - - '{{Game data/config|Windows|{{p|game}}\config*.sav}}' - - '{{Game data/saves|Windows|{{p|game}}\save* }}' + - "{{Game data/config|Windows|{{p|game}}\\config*.sav}}" + - "{{Game data/saves|Windows|{{p|game}}\\save* }}" Nokbak: pageId: 69312 steam: 655550 @@ -113281,7 +110212,7 @@ Nom Nom Apocalypse: pageId: 98760 steam: 882760 templates: - - '{{Game data/saves|Windows|{{p|USERPROFILE}}\AppData\LocalLow\DeadleafGames\Nom Nom Apocalypse\}}' + - "{{Game data/saves|Windows|{{p|USERPROFILE}}\\AppData\\LocalLow\\DeadleafGames\\Nom Nom Apocalypse\\}}" Nomad: pageId: 47473 steam: 378370 @@ -113292,14 +110223,14 @@ Nomad Survivor: pageId: 186873 steam: 1929870 templates: - - '{{Game data/saves|Windows|{{P|localappdata}}\Nomad_Survival}}' + - "{{Game data/saves|Windows|{{P|localappdata}}\\Nomad_Survival}}" Nomads of Driftland: gog: 1433027987 pageId: 166247 steam: 1400520 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Nomads\Saved\Config\WindowsNoEditor\*.ini}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Nomads\Saved\Nomads}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Nomads\\Saved\\Config\\WindowsNoEditor\\*.ini}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Nomads\\Saved\\Nomads}}" Nomads of the Fallen Star: pageId: 125988 steam: 1011070 @@ -113319,7 +110250,7 @@ Non-Linear Text Quests: pageId: 95895 steam: 531630 templates: - - '{{Game data/saves|Windows|{{p|game}}\appdata\saves\}}' + - "{{Game data/saves|Windows|{{p|game}}\\appdata\\saves\\}}" Non-binary: pageId: 180139 steam: 2027530 @@ -113330,27 +110261,27 @@ Nongünz: pageId: 62231 steam: 633130 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\nongunz\}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\Nongunz\Slot.save}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/\Nongunz\Slot.save}}' -'Nongünz: Doppelganger Edition': + - "{{Game data/config|Windows|{{P|localappdata}}\\nongunz\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\Nongunz\\Slot.save}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/\\Nongunz\\Slot.save}}" +"Nongünz: Doppelganger Edition": gog: 1955433774 pageId: 165718 steam: 1304780 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\SOFTWARE\Brainwash Gang\Nongünz\}}' - - '{{Game data/saves|Windows|{{P|game}}\saves\Nongunz.save}}' -Nono's Magic General Shop: + - "{{Game data/config|Windows|{{P|hkcu}}\\SOFTWARE\\Brainwash Gang\\Nongünz\\}}" + - "{{Game data/saves|Windows|{{P|game}}\\saves\\Nongunz.save}}" +"Nono's Magic General Shop": pageId: 102317 steam: 882670 Nonogram: pageId: 123733 steam: 982890 -Nonogram - Master's Legacy: +"Nonogram - Master's Legacy": pageId: 120858 steam: 742500 templates: - - '{{Game data/saves|Windows|{{p|steam}}\userdata\{{p|uid}}\742500\remote\saves.dat}}' + - "{{Game data/saves|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\742500\\remote\\saves.dat}}" Nonogram - The Greatest Painter: pageId: 87447 steam: 742490 @@ -113369,14 +110300,14 @@ Noonie: Noosphere: pageId: 151361 steam: 1161430 -Nor'Easter: +"Nor'Easter": pageId: 139716 steam: 1091140 Norco: gog: 1802479463 pageId: 157168 renamedFrom: - - 'Norco: Faraway Lights' + - "Norco: Faraway Lights" steam: 1221250 Nordenfelt: pageId: 44988 @@ -113398,19 +110329,19 @@ Normality: pageId: 36381 steam: 400370 templates: - - '{{Game data/config|DOS|{{p|game}}\Config.ini}}' - - '{{Game data/saves|DOS|{{p|game}}\Savegame\Normsave.*}}' -Norman's Night In: + - "{{Game data/config|DOS|{{p|game}}\\Config.ini}}" + - "{{Game data/saves|DOS|{{p|game}}\\Savegame\\Normsave.*}}" +"Norman's Night In": pageId: 130613 steam: 1034870 Norpon: pageId: 126181 steam: 896510 -'Norse by Norse West: The Return of the Lost Vikings': +"Norse by Norse West: The Return of the Lost Vikings": pageId: 145606 templates: - - '{{Game data/config|DOS|{{p|game}}\*.cfg}}' - - '{{Game data/config|Windows|{{p|game}}\*.cfg}}' + - "{{Game data/config|DOS|{{p|game}}\\*.cfg}}" + - "{{Game data/config|Windows|{{p|game}}\\*.cfg}}" North: pageId: 43356 steam: 461890 @@ -113430,7 +110361,7 @@ Northern Journey: pageId: 178970 steam: 1639790 templates: - - '{{Game data/saves|Windows|{{p|localappdata}}\Skog\Saved\SaveGames}}' + - "{{Game data/saves|Windows|{{p|localappdata}}\\Skog\\Saved\\SaveGames}}" Northern Lights: pageId: 127813 steam: 1023870 @@ -113455,19 +110386,19 @@ Northern Tales: Northgard: gog: 1076977034 gogSide: - - 1484313063 - - 1688886623 - - 1644574132 - - 1685507965 - - 2020568404 - - 1214277077 - - 1651136771 - - 1779620840 - - 1488496350 - - 1676895312 - - 1605208249 - 1090140888 - 1194847733 + - 1214277077 + - 1484313063 + - 1488496350 + - 1605208249 + - 1644574132 + - 1651136771 + - 1676895312 + - 1685507965 + - 1688886623 + - 1779620840 + - 2020568404 pageId: 38953 steam: 466560 steamSide: @@ -113485,15 +110416,15 @@ Northgard: - 2228200 - 2515460 templates: - - '{{Game data/config|Windows|{{p|game}}\prefs.sav}}' - - '{{Game data/config|Linux|{{p|game}}/game/prefs.sav}}' - - '{{Game data/saves|Windows|{{P|game}}\save}}' - - '{{Game data/saves|Linux|{{P|game}}/game/save}}' + - "{{Game data/config|Windows|{{p|game}}\\prefs.sav}}" + - "{{Game data/config|Linux|{{p|game}}/game/prefs.sav}}" + - "{{Game data/saves|Windows|{{P|game}}\\save}}" + - "{{Game data/saves|Linux|{{P|game}}/game/save}}" Northland: gog: 1207663833 pageId: 21892 steam: 351860 -'Northmark: Hour of the Wolf': +"Northmark: Hour of the Wolf": pageId: 49817 steam: 307010 Nortinium: @@ -113511,13 +110442,13 @@ NoserLand: Nosferatu Lilinor: pageId: 152967 steam: 1186270 -'Nosferatu: The Wrath of Malachi': +"Nosferatu: The Wrath of Malachi": gog: 1207666093 pageId: 21751 steam: 283290 templates: - - '{{Game data/config|Windows|{{p|hklm}}\SOFTWARE\{{p|wow64}}\Idol FX\Nosferatu}}' - - '{{Game data/saves|Windows|{{p|game}}\Version\Data}}' + - "{{Game data/config|Windows|{{p|hklm}}\\SOFTWARE\\{{p|wow64}}\\Idol FX\\Nosferatu}}" + - "{{Game data/saves|Windows|{{p|game}}\\Version\\Data}}" Nosgoth: pageId: 169222 steam: 200110 @@ -113540,23 +110471,23 @@ Nostos: Nostradamus - The Four Horsemen of the Apocalypse: pageId: 80418 steam: 774131 -'Nostradamus: The Last Prophecy': +"Nostradamus: The Last Prophecy": gog: 1407755702 pageId: 50372 steam: 287720 templates: - - '{{Game data/config|Windows|{{P|game}}\config.ini|{{P|game}}\Users\Profile1\config.ini}}' - - '{{Game data/saves|Windows|{{P|game}}\Users\Profile1\Save.*}}' -'Not An Angels: Erotic Puzzle': + - "{{Game data/config|Windows|{{P|game}}\\config.ini|{{P|game}}\\Users\\Profile1\\config.ini}}" + - "{{Game data/saves|Windows|{{P|game}}\\Users\\Profile1\\Save.*}}" +"Not An Angels: Erotic Puzzle": pageId: 179092 steam: 1148770 templates: - - '{{Game data/saves|Windows|{{p|localappdata}}\LocalLo\z13FacesGames\NotAnAngels}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/com.13FacesGames.NotAnAngels}}' + - "{{Game data/saves|Windows|{{p|localappdata}}\\LocalLo\\z13FacesGames\\NotAnAngels}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/com.13FacesGames.NotAnAngels}}" Not Dying Today: pageId: 55764 steam: 568440 -'Not For Broadcast: Prologue': +"Not For Broadcast: Prologue": pageId: 153489 steam: 1201400 Not Heaven: @@ -113572,20 +110503,18 @@ Not The Robots: pageId: 13332 steam: 257120 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\2DArray\Not the Robots\}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/2DArray/Not the Robots/}}' - - '{{Game data/saves|Windows|{{P|game}}\Not the Robots_Data\}}' - - '{{Game data/saves|OS X|{{P|game}}/Not the Robots.app/Contents/}}' - - '{{Game data/saves|Linux|{{P|game}}/Not the Robots_Data/}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\2DArray\\Not the Robots\\}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/2DArray/Not the Robots/}}" + - "{{Game data/saves|Windows|{{P|game}}\\Not the Robots_Data\\}}" + - "{{Game data/saves|OS X|{{P|game}}/Not the Robots.app/Contents/}}" + - "{{Game data/saves|Linux|{{P|game}}/Not the Robots_Data/}}" Not Tonight: gog: 1592291898 pageId: 91587 steam: 733790 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\PanicBarn\Not Tonight\}}' - - >- - {{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\PanicBarn\Not - Tonight\*.es3|{{p|userprofile}}\AppData\LocalLow\PanicBarn\Not Tonight\Slots\0\*.es3|}} + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\PanicBarn\\Not Tonight\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\PanicBarn\\Not Tonight\\*.es3|{{p|userprofile}}\\AppData\\LocalLow\\PanicBarn\\Not Tonight\\Slots\\0\\*.es3|}}" Not Tonight 2: pageId: 170759 steam: 1600370 @@ -113605,16 +110534,16 @@ Not a Hero: - Not A Hero steam: 274270 templates: - - '{{Game data/config|Windows|{{p|game}}\Bin\*.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\Bin\*.ini}}' + - "{{Game data/config|Windows|{{p|game}}\\Bin\\*.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\Bin\\*.ini}}" Not a Prank: pageId: 139203 steam: 1086420 Not for Broadcast: gog: 1542088686 gogSide: - - 1337348821 - 1094031420 + - 1337348821 - 1629671360 pageId: 150852 renamedFrom: @@ -113641,8 +110570,8 @@ Not for Broadcast: - 2303601 - 2303602 templates: - - '{{Game data/config|Windows|{{p|HKCU}}\Software\NotGames\NotForBroadcast}}' - - '{{Game data/saves|Windows|{{p|USERPROFILE}}\AppData\LocalLow\NotGames\NotForBroadcast}}' + - "{{Game data/config|Windows|{{p|HKCU}}\\Software\\NotGames\\NotForBroadcast}}" + - "{{Game data/saves|Windows|{{p|USERPROFILE}}\\AppData\\LocalLow\\NotGames\\NotForBroadcast}}" Not in Heaven: pageId: 121041 steam: 937950 @@ -113657,7 +110586,7 @@ NotTheNameWeWanted: renamedFrom: - NotGTAV steam: 369580 -'Notch - The Innocent LunA: Eclipsed SinnerS': +"Notch - The Innocent LunA: Eclipsed SinnerS": pageId: 38199 steam: 325120 Notemon: @@ -113669,7 +110598,7 @@ Notes from Province: Nother: pageId: 54029 steam: 545720 -Nothin' But Net: +"Nothin' But Net": pageId: 39357 steam: 496790 Nothing: @@ -113687,21 +110616,21 @@ Notified: Notmycar: pageId: 124360 steam: 694720 -'Notre-Dame de Paris: Journey Back in Time': +"Notre-Dame de Paris: Journey Back in Time": pageId: 163377 steam: 1341280 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\SOFTWARE\ubisoft\Notre-Dame}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\SOFTWARE\\ubisoft\\Notre-Dame}}" Notrium: pageId: 34693 steam: 349100 templates: - - '{{Game data/config|Windows|{{p|game}}\save\s*.sav}}' - - '{{Game data/saves|Windows|{{p|game}}\cfg.cfg}}' + - "{{Game data/config|Windows|{{p|game}}\\save\\s*.sav}}" + - "{{Game data/saves|Windows|{{p|game}}\\cfg.cfg}}" Notruf 112 - Die Feuerwehr Simulation: pageId: 53055 steam: 491530 -'Nour: Play with Your Food': +"Nour: Play with Your Food": pageId: 174584 steam: 1141050 Nous: @@ -113710,11 +110639,11 @@ Nous: Nova 1492: pageId: 153917 steam: 756410 -'Nova 9: Return of Gir Draxon': +"Nova 9: Return of Gir Draxon": pageId: 17128 templates: - - '{{Game data/config|DOS|{{p|game}}\}}' - - '{{Game data/saves|DOS|{{p|game}}\}}' + - "{{Game data/config|DOS|{{p|game}}\\}}" + - "{{Game data/saves|DOS|{{p|game}}\\}}" Nova Blitz: pageId: 52175 steam: 388370 @@ -113723,8 +110652,8 @@ Nova Drift: pageId: 105343 steam: 858210 templates: - - '{{Game data/saves|Windows|{{p|localappdata}}\NovaDrift\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/com.pixeljam.stardriftmac/}}' + - "{{Game data/saves|Windows|{{p|localappdata}}\\NovaDrift\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/com.pixeljam.stardriftmac/}}" Nova Nukers!: pageId: 68216 steam: 445000 @@ -113743,7 +110672,7 @@ Nova-111: Nova-Life: pageId: 100410 steam: 885570 -'Novas Las Aventurietas del Robercleiton: o Renascimento do TURBO': +"Novas Las Aventurietas del Robercleiton: o Renascimento do TURBO": pageId: 87964 steam: 810580 Novus Campis: @@ -113772,10 +110701,10 @@ Nowhere Prophet: pageId: 66319 steam: 681730 templates: - - '{{Game data/config|Windows|{{P|userprofile}}\AppData\LocalLow\Sharkbomb Studios\Nowhere Prophet\}}' - - '{{Game data/config|OS X|{{P|osxhome}}/Library/Application Support/unity.Sharkbomb Studios.Nowhere Prophet/}}' - - '{{Game data/config|Linux|{{P|linuxhome}}/.config/unity3d/Sharkbomb Studios/Nowhere Prophet}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Sharkbomb Studios\Nowhere Prophet\}}' + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Sharkbomb Studios\\Nowhere Prophet\\}}" + - "{{Game data/config|OS X|{{P|osxhome}}/Library/Application Support/unity.Sharkbomb Studios.Nowhere Prophet/}}" + - "{{Game data/config|Linux|{{P|linuxhome}}/.config/unity3d/Sharkbomb Studios/Nowhere Prophet}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Sharkbomb Studios\\Nowhere Prophet\\}}" Nowhere Station: pageId: 130012 steam: 1029080 @@ -113783,8 +110712,8 @@ Nox: gog: 1207658964 pageId: 7607 templates: - - '{{Game data/config|Windows|{{p|game}}\nox.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\Save}}' + - "{{Game data/config|Windows|{{p|game}}\\nox.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\Save}}" Nox Archaist: gog: 1630887854 pageId: 166279 @@ -113792,20 +110721,20 @@ Nox Archaist: Nox Dei: pageId: 77628 steam: 678940 -'Npc Problems: Vertex Coloring': +"Npc Problems: Vertex Coloring": pageId: 153157 steam: 1180610 -'Nubarron: The Adventure of an Unlucky Gnome': +"Nubarron: The Adventure of an Unlucky Gnome": pageId: 150944 renamedFrom: - - 'Nubarron: The adventure of an unlucky gnome' + - "Nubarron: The adventure of an unlucky gnome" steam: 414160 templates: - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Nastycloud LLC\Nubarron}}' + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Nastycloud LLC\\Nubarron}}" Nubla: pageId: 144749 steam: 1101000 -Nubs' Adventure: +"Nubs' Adventure": pageId: 46098 steam: 401280 Nuclear 2050: @@ -113821,10 +110750,8 @@ Nuclear Dawn: pageId: 5512 steam: 17710 templates: - - '{{Game data/config|Windows|{{p|game}}\nucleardawn\cfg}}' - - >- - {{Game - data/config|Linux|{{p|steam}}/userdata/{{p|uid}}/17710/remote/cfg/config.cfg|{{p|game}}/cfg/config.cfg|{{p|game}}/cfg/video.txt}} + - "{{Game data/config|Windows|{{p|game}}\\nucleardawn\\cfg}}" + - "{{Game data/config|Linux|{{p|steam}}/userdata/{{p|uid}}/17710/remote/cfg/config.cfg|{{p|game}}/cfg/config.cfg|{{p|game}}/cfg/video.txt}}" Nuclear Power Station Creator: pageId: 122470 steam: 970660 @@ -113837,18 +110764,18 @@ Nuclear Shot: Nuclear Strike: pageId: 21879 templates: - - '{{Game data/saves|Windows|{{p|game}}\data}}' + - "{{Game data/saves|Windows|{{p|game}}\\data}}" Nuclear Throne: gog: 1448617555 pageId: 17217 steam: 242680 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\nuclearthrone\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/com.vlambeer.nuclearthrone/}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/nuclearthrone/}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\nuclearthrone\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/com.vlambeer.nuclearthrone/}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/nuclearthrone/}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\nuclearthrone\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/com.vlambeer.nuclearthrone/}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/nuclearthrone/}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\nuclearthrone\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/com.vlambeer.nuclearthrone/}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/nuclearthrone/}}" Nucvivor: pageId: 125962 steam: 648060 @@ -113861,7 +110788,7 @@ Nukalypse Zombie Survival: Nuked Knight: pageId: 44181 steam: 448250 -'Nukklerma: Robot Warfare': +"Nukklerma: Robot Warfare": pageId: 55942 steam: 575100 Null & Peta: @@ -113886,7 +110813,7 @@ Numba Deluxe: pageId: 50208 steam: 301700 templates: - - '{{Game data/saves|Windows|{{p|appdata}}\CobiMobi\Numba}}' + - "{{Game data/saves|Windows|{{p|appdata}}\\CobiMobi\\Numba}}" Number Guesser: pageId: 93049 steam: 850110 @@ -113905,11 +110832,11 @@ Numberline 2: Numberline 3: pageId: 103713 steam: 907390 -'Numen: Contest of Heroes': +"Numen: Contest of Heroes": pageId: 41108 steam: 60800 templates: - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\numen\SAVES}}' + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\numen\\SAVES}}" Numeric: pageId: 95395 steam: 864810 @@ -113931,7 +110858,7 @@ Nurse Love Syndrome: Nusakana: pageId: 45553 steam: 401290 -'Nusantara: Legend of The Winged Ones': +"Nusantara: Legend of The Winged Ones": pageId: 123375 steam: 986710 Nutrients for Life: @@ -113940,7 +110867,7 @@ Nutrients for Life: Nuts: pageId: 166017 steam: 768450 -'Nuts!: The Battle of the Bulge': +"Nuts!: The Battle of the Bulge": pageId: 44633 steam: 431680 Nux: @@ -113955,14 +110882,14 @@ Nya Nya Nya Girls (ʻʻʻ) (=^・ω・^=) (ʻʻʻ): Nya Nya Nya Girls 2 (ʻʻʻ) (=^・ω・^=) (ʻʻʻ): pageId: 146000 steam: 1003320 -'Nyan Cat: Lost In Space': +"Nyan Cat: Lost In Space": pageId: 35742 steam: 415420 templates: - - '{{Game data/config|Windows|{{p|appdata}}\isTomGames\NyanCatLostInSpace/game.cfg}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.local/share/isTomGames/NyanCatLostInSpace/game.cfg}}' - - '{{Game data/saves|Windows|{{p|appdata}}\isTomGames\NyanCatLostInSpace}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.local/share/isTomGames/NyanCatLostInSpace}}' + - "{{Game data/config|Windows|{{p|appdata}}\\isTomGames\\NyanCatLostInSpace/game.cfg}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.local/share/isTomGames/NyanCatLostInSpace/game.cfg}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\isTomGames\\NyanCatLostInSpace}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.local/share/isTomGames/NyanCatLostInSpace}}" Nyan Destroyer: pageId: 89599 steam: 773130 @@ -114011,18 +110938,18 @@ Nympho Monster Domination: Nystagmus: pageId: 132343 steam: 1033240 -'Nyx: The Awakening': +"Nyx: The Awakening": pageId: 145479 renamedFrom: - - 'NYX: The Awakening' + - "NYX: The Awakening" steam: 1139910 -'NyxQuest: Kindred Spirits': +"NyxQuest: Kindred Spirits": gog: 1862408481 pageId: 38014 steam: 57000 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Over the Top Games\NyxQuest\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Over the Top Games\NyxQuest\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Over the Top Games\\NyxQuest\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Over the Top Games\\NyxQuest\\}}" O Rei: pageId: 143792 steam: 1134260 @@ -114032,13 +110959,13 @@ O! Nalchik is my favourite place: O! Strelalka!!!: pageId: 68098 steam: 693680 -O'Fox Life: +"O'Fox Life": pageId: 74463 steam: 719120 O.C.D. - On Completeness & Dissonance: pageId: 99640 steam: 887880 -'O.D.T.: Escape... Or Die Trying': +"O.D.T.: Escape... Or Die Trying": gog: 1608537972 pageId: 35384 renamedFrom: @@ -114047,13 +110974,13 @@ O.C.D. - On Completeness & Dissonance: O.M.S: pageId: 157367 steam: 1213110 -'O.R.B: Off-World Resource Base': +"O.R.B: Off-World Resource Base": gog: 1207659155 pageId: 16288 steam: 281390 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/saves|Windows|{{p|game}}\orbdata\players}}' + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\orbdata\\players}}" O2Jam x DancingParty: pageId: 107838 steam: 921690 @@ -114081,11 +111008,11 @@ ODA: OESE: pageId: 33820 steam: 485600 -'OFF': +"OFF": pageId: 154869 templates: - - '{{Game data/config|Windows|{{p|game}}\RPG_RT.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\Save*.lsd}}' + - "{{Game data/config|Windows|{{p|game}}\\RPG_RT.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\Save*.lsd}}" OFFSIDE: pageId: 149682 steam: 1066310 @@ -114101,25 +111028,25 @@ OK Bob: OK Boomer: pageId: 153810 steam: 1190840 -OK K.O.! Let's Play Heroes: +"OK K.O.! Let's Play Heroes": pageId: 80430 steam: 680700 OK/Normal: pageId: 94764 steam: 862580 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\SOFTWARE\98DEMAKE\OK/NORMAL}}' - - '{{Game data/saves|Windows|{{P|hkcu}}\SOFTWARE\98DEMAKE\OK/NORMAL}}' -'OMEGA: The Beginning - Episode 1': + - "{{Game data/config|Windows|{{P|hkcu}}\\SOFTWARE\\98DEMAKE\\OK/NORMAL}}" + - "{{Game data/saves|Windows|{{P|hkcu}}\\SOFTWARE\\98DEMAKE\\OK/NORMAL}}" +"OMEGA: The Beginning - Episode 1": pageId: 135746 steam: 1042010 OMG Zombies!: pageId: 14893 steam: 259870 templates: - - '{{Game data/config|Windows|{{p|game}}\OMGZ.ini}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Ghostlight Ltd\OMG HD Zombies\}}' -'OMON Girl: Bottle Royal': + - "{{Game data/config|Windows|{{p|game}}\\OMGZ.ini}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Ghostlight Ltd\\OMG HD Zombies\\}}" +"OMON Girl: Bottle Royal": pageId: 153838 steam: 1198730 OMON Simulator: @@ -114129,38 +111056,36 @@ OMORI: pageId: 150872 steam: 1150690 templates: - - '{{Game data/config|Windows|{{p|Steam}}/steamapps/common/OMORI/www/save/}}' - - '{{Game data/saves|Windows|{{p|Steam}}/steamapps/common/OMORI/www/save/}}' - - >- - {{Game data/saves|Microsoft - Store|{{P|userprofile}}/AppData/Local/Packages/ActiveGamingMediaInc.OMORI_4tj796bhrrsp0/SystemAppData/wgs/}} -'OMSI 2: The Bus Simulator': + - "{{Game data/config|Windows|{{p|Steam}}/steamapps/common/OMORI/www/save/}}" + - "{{Game data/saves|Windows|{{p|Steam}}/steamapps/common/OMORI/www/save/}}" + - "{{Game data/saves|Microsoft Store|{{P|userprofile}}/AppData/Local/Packages/ActiveGamingMediaInc.OMORI_4tj796bhrrsp0/SystemAppData/wgs/}}" +"OMSI 2: The Bus Simulator": pageId: 40486 steam: 252530 steamSide: - - 434064 - - 434061 - - 434062 - - 434060 - - 405360 + - 271390 + - 299350 + - 311020 + - 313420 + - 313430 - 345680 - 345681 - - 405430 - 361290 - - 299350 - - 271390 - - 313430 - - 313420 - - 311020 - - 434066 - - 434068 - - 434067 + - 405360 + - 405430 + - 434060 + - 434061 + - 434062 + - 434064 - 434065 + - 434066 + - 434067 + - 434068 - 434069 templates: - - '{{Game data/config|Windows|{{p|steam}}/steamapps/common/OMSI 2}}' - - '{{Game data/saves|Windows|{{p|steam}}/steamapps/common/OMSI 2}}' -'OMSI: The Bus Simulator': + - "{{Game data/config|Windows|{{p|steam}}/steamapps/common/OMSI 2}}" + - "{{Game data/saves|Windows|{{p|steam}}/steamapps/common/OMSI 2}}" +"OMSI: The Bus Simulator": pageId: 13025 ONE: pageId: 132782 @@ -114172,9 +111097,9 @@ OO: pageId: 37453 steam: 367570 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Rainbow Train\oO\}}' - - '{{Game data/saves|Windows|{{p|hkcu}}\Software\Rainbow Train\oO\}}' -'OOo: Ascension': + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Rainbow Train\\oO\\}}" + - "{{Game data/saves|Windows|{{p|hkcu}}\\Software\\Rainbow Train\\oO\\}}" +"OOo: Ascension": pageId: 109470 steam: 905330 OR: @@ -114195,7 +111120,7 @@ ORTHOISO: ORX: pageId: 137008 steam: 1071140 -'OS:Path': +"OS:Path": pageId: 91951 steam: 831090 OSES: @@ -114207,19 +111132,19 @@ OSIRIS: OSK: pageId: 149620 steam: 1084870 -'OTHER: Her Loving Embrace': +"OTHER: Her Loving Embrace": pageId: 151643 steam: 1161780 OTTTD: pageId: 19745 steam: 312630 templates: - - '{{Game data/config|Windows|{{P|game}}\ExtraSettings.dat}}' + - "{{Game data/config|Windows|{{P|game}}\\ExtraSettings.dat}}" OTXO: pageId: 189792 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\OTXO_Release\Settings.ini}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\OTXO_Release\Save*}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\OTXO_Release\\Settings.ini}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\OTXO_Release\\Save*}}" OUTTA GAS: pageId: 154172 steam: 1170120 @@ -114244,8 +111169,8 @@ OZMAFIA!!: OZone: pageId: 61381 templates: - - '{{Game data/config|Windows|{{p|game}}\KQ.INI}}' - - '{{Game data/saves|Windows|{{p|game}}\KQ.INI}}' + - "{{Game data/config|Windows|{{p|game}}\\KQ.INI}}" + - "{{Game data/saves|Windows|{{p|game}}\\KQ.INI}}" Oafmatch: pageId: 61778 steam: 554220 @@ -114261,7 +111186,7 @@ Oakwood: pageId: 123483 steam: 890970 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Breaking Dimensions\Oakwood\saveGame.dat}}' + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Breaking Dimensions\\Oakwood\\saveGame.dat}}" Oakwood Academy of Spells and Sorcery: pageId: 89468 steam: 818940 @@ -114277,7 +111202,7 @@ Obama Maze: pageId: 180131 steam: 1808060 templates: - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\1808060\}}' + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\1808060\\}}" Obcidian Legacy: pageId: 56487 steam: 568190 @@ -114291,20 +111216,16 @@ Obduction: - 520871 - 520873 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Obduction\Saved\Config\WindowsNoEditor}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\Obduction\Saved\SaveGames\}}' - - >- - {{Game data/saves|OS X|{{p|osxhome}}\Library\Containers\com.cyan.obduction\Data\Library\Application - Support\Epic\Obduction\Saved\SaveGames - - }} + - "{{Game data/config|Windows|{{P|localappdata}}\\Obduction\\Saved\\Config\\WindowsNoEditor}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Obduction\\Saved\\SaveGames\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}\\Library\\Containers\\com.cyan.obduction\\Data\\Library\\Application Support\\Epic\\Obduction\\Saved\\SaveGames\n}}" Obesity Simulator: pageId: 190664 steam: 2571540 Obey Me: pageId: 135832 steam: 1034890 -Object "Cleaning": +"Object \"Cleaning\"": pageId: 80960 steam: 781880 Objects in Space: @@ -114326,10 +111247,10 @@ Oblitus: Oblivion Tesseract VR: pageId: 57568 steam: 582030 -Oblivion's Edge: +"Oblivion's Edge": pageId: 53202 steam: 551100 -'Oblivious Garden: Carmina Burana': +"Oblivious Garden: Carmina Burana": pageId: 37473 steam: 323490 Obludia: @@ -114343,20 +111264,16 @@ ObsCure: pageId: 15887 steam: 254460 templates: - - >- - {{Game - data/config|Windows|{{p|game}}\tm_input.ipt|{{p|game}}\Save\options.sav|{{p|hklm}}\Software\{{p|wow64}}\MC2\Obscure\}} - - '{{Game data/config|Steam|{{p|steam}}\userdata\{{p|uid}}\254460\remote}}' - - '{{Game data/saves|Windows|{{p|game}}\Save\}}' - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\254460\remote}}' + - "{{Game data/config|Windows|{{p|game}}\\tm_input.ipt|{{p|game}}\\Save\\options.sav|{{p|hklm}}\\Software\\{{p|wow64}}\\MC2\\Obscure\\}}" + - "{{Game data/config|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\254460\\remote}}" + - "{{Game data/saves|Windows|{{p|game}}\\Save\\}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\254460\\remote}}" ObsCure II: pageId: 15890 steam: 254480 templates: - - >- - {{Game - data/config|Windows|{{p|game}}\o2.ipt|{{p|hkcu}}\Software\MRS\Obscure2|{{p|hkcu}}\Software\PLAYLOGIC\Obscure2\Release}} - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Playlogic\Obscure2\}}' + - "{{Game data/config|Windows|{{p|game}}\\o2.ipt|{{p|hkcu}}\\Software\\MRS\\Obscure2|{{p|hkcu}}\\Software\\PLAYLOGIC\\Obscure2\\Release}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Playlogic\\Obscure2\\}}" Obscura: pageId: 65333 steam: 563420 @@ -114374,8 +111291,8 @@ Obscuritas: pageId: 34232 steam: 441680 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\VIS_Games\Obscuritas}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\VIS_Games\Obscuritas\Savegames}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\VIS_Games\\Obscuritas}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\VIS_Games\\Obscuritas\\Savegames}}" Obscurity: pageId: 92682 steam: 844350 @@ -114387,15 +111304,11 @@ Observation: pageId: 122734 steam: 906100 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\No Code Studio\Observation\}}' - - >- - {{Game data/config|Microsoft - Store|{{P|localappdata}}\Packages\DevolverDigital.ObservationXB1_6kzv4j18v0c96\SystemAppData\wgs\}} - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\No Code Studio\Observation\SaveGames\}}' - - >- - {{Game data/saves|Microsoft - Store|{{P|localappdata}}\Packages\DevolverDigital.ObservationXB1_6kzv4j18v0c96\SystemAppData\wgs\}} -'Observatory: A VR Variety Pack': + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\No Code Studio\\Observation\\}}" + - "{{Game data/config|Microsoft Store|{{P|localappdata}}\\Packages\\DevolverDigital.ObservationXB1_6kzv4j18v0c96\\SystemAppData\\wgs\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\No Code Studio\\Observation\\SaveGames\\}}" + - "{{Game data/saves|Microsoft Store|{{P|localappdata}}\\Packages\\DevolverDigital.ObservationXB1_6kzv4j18v0c96\\SystemAppData\\wgs\\}}" +"Observatory: A VR Variety Pack": pageId: 43075 steam: 414810 Observer: @@ -114403,21 +111316,19 @@ Observer: pageId: 63218 steam: 514900 templates: - - >- - {{Game - data/config|Windows|{{p|localappdata}}\TheObserver\Saved\Config\WindowsNoEditor\|{{p|localappdata}}\TheObserver\Saved\SaveGames\PlayerPreferences.sav}} - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/Epic/TheObserver/Saved/Config/LinuxNoEditor/}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\TheObserver\Saved\SaveGames\}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/Epic/TheObserver/Saved/SaveGames/}}' -'Observer: System Redux': + - "{{Game data/config|Windows|{{p|localappdata}}\\TheObserver\\Saved\\Config\\WindowsNoEditor\\|{{p|localappdata}}\\TheObserver\\Saved\\SaveGames\\PlayerPreferences.sav}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/Epic/TheObserver/Saved/Config/LinuxNoEditor/}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\TheObserver\\Saved\\SaveGames\\}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/Epic/TheObserver/Saved/SaveGames/}}" +"Observer: System Redux": gog: 1585377690 gogSide: - 1198883685 pageId: 162917 steam: 1386900 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\ObserverSystemRedux\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\ObserverSystemRedux\Saved\SaveGames}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\ObserverSystemRedux\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\ObserverSystemRedux\\Saved\\SaveGames}}" Observers: pageId: 132198 steam: 1041160 @@ -114425,14 +111336,14 @@ Obsidian: pageId: 3227 steam: 2471130 templates: - - '{{Game data/saves|Windows|{{p|game}}\Saved Games\}}' + - "{{Game data/saves|Windows|{{p|game}}\\Saved Games\\}}" Obsidian Conflict: pageId: 191056 steam: 17750 Obsidian Crown: pageId: 148655 steam: 1062530 -'Obstruction : VR': +"Obstruction : VR": pageId: 109918 steam: 918060 Obsurity: @@ -114442,7 +111353,7 @@ Obulis: pageId: 18560 steam: 11330 templates: - - '{{Game data/saves|Windows|{{p|game}}/config.dat}}' + - "{{Game data/saves|Windows|{{p|game}}/config.dat}}" Obversion: pageId: 142347 steam: 1102040 @@ -114461,12 +111372,12 @@ Occultus - Mediterranean Cabal: Occultus Command: pageId: 149943 steam: 1159240 -'Occupy Mars: The Game': +"Occupy Mars: The Game": gog: 1857547443 pageId: 78864 steam: 758690 templates: - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\PyramidGames\OccupyMars}}' + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\PyramidGames\\OccupyMars}}" Occupy White Walls: pageId: 102745 steam: 876160 @@ -114477,11 +111388,11 @@ Ocean City Racing: pageId: 29857 steam: 311400 templates: - - '{{Game data/config|Windows|{{p|game}}\UDKGame\Config\}}' + - "{{Game data/config|Windows|{{p|game}}\\UDKGame\\Config\\}}" Ocean Drive Challenge Remastered: pageId: 153919 steam: 1195620 -'Ocean Nomad: Survival on Raft': +"Ocean Nomad: Survival on Raft": pageId: 112224 steam: 918590 Ocean Rift: @@ -114490,35 +111401,33 @@ Ocean Rift: Ocean Wonder VR: pageId: 93598 steam: 844820 -Ocean's Crabellum: +"Ocean's Crabellum": pageId: 73845 steam: 726330 -Ocean's Heart: +"Ocean's Heart": gog: 1819561805 pageId: 166151 steam: 1393750 templates: - - '{{Game data/config|Windows|{{P|appdata}}\OceansHeart\oceans_heart_saves\settings.dat}}' - - '{{Game data/saves|Windows|{{P|appdata}}\OceansHeart\oceans_heart_saves\save1.dat}}' -Ocean's Treasures: + - "{{Game data/config|Windows|{{P|appdata}}\\OceansHeart\\oceans_heart_saves\\settings.dat}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\OceansHeart\\oceans_heart_saves\\save1.dat}}" +"Ocean's Treasures": pageId: 120780 steam: 966240 -'Oceanhorn 2: Knights of the Lost Realm': +"Oceanhorn 2: Knights of the Lost Realm": pageId: 147785 steam: 1622710 -'Oceanhorn: Chronos Dungeon': +"Oceanhorn: Chronos Dungeon": pageId: 165686 templates: - - >- - {{Game data/saves|OS X|{{P|osxhome}}/Library/Containers/Oceanhorn CD/Data/Library/Application - Support/com.cornfox.oceanhorncd}} -'Oceanhorn: Monster of Uncharted Seas': + - "{{Game data/saves|OS X|{{P|osxhome}}/Library/Containers/Oceanhorn CD/Data/Library/Application Support/com.cornfox.oceanhorncd}}" +"Oceanhorn: Monster of Uncharted Seas": gog: 1426499435 pageId: 22972 steam: 339200 templates: - - '{{Game data/config|Windows|{{p|game}}\SaveFiles\metadata-local.sav}}' - - '{{Game data/saves|Windows|{{p|game}}\SaveFiles\}}' + - "{{Game data/config|Windows|{{p|game}}\\SaveFiles\\metadata-local.sav}}" + - "{{Game data/saves|Windows|{{p|game}}\\SaveFiles\\}}" Oceans We Make: pageId: 152864 steam: 1102200 @@ -114535,8 +111444,8 @@ Octahedron: pageId: 88140 steam: 434660 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\octahedron\octasettings\settings.sav}}' - - '{{Game data/saves|Windows|{{P|steam}}\userdata\{{P|uid}}\434660\remote\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\octahedron\\octasettings\\settings.sav}}" + - "{{Game data/saves|Windows|{{P|steam}}\\userdata\\{{P|uid}}\\434660\\remote\\}}" Octamari Rescue: pageId: 42083 steam: 490430 @@ -114550,32 +111459,32 @@ OctoFurry: pageId: 156549 steam: 1186880 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\SOFTWARE\arenadev\com.octofurry.arena\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\arenadev\\com.octofurry.arena\\}}" Octodad: pageId: 176931 steam: 2383860 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Octodad\config.xml}}' -'Octodad: Dadliest Catch': + - "{{Game data/config|Windows|{{P|localappdata}}\\Octodad\\config.xml}}" +"Octodad: Dadliest Catch": gog: 1207660553 pageId: 14415 steam: 224480 steamSide: - 296170 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Octodad Dadliest Catch\OctodadConfig.xml}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Octodad Dadliest Catch/OctodadConfig.xml}}' - - '{{Game data/config|Linux|{{p|game}}\OctodadConfig.xml}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\Saved Games\Octodad Dadliest Catch\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Octodad Dadliest Catch/}}' - - '{{Game data/saves|Linux|{{p|game}}{{cn|date=August 17, 2016}}}}' - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/224480/remote/}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Octodad Dadliest Catch\\OctodadConfig.xml}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Octodad Dadliest Catch/OctodadConfig.xml}}" + - "{{Game data/config|Linux|{{p|game}}\\OctodadConfig.xml}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Saved Games\\Octodad Dadliest Catch\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Octodad Dadliest Catch/}}" + - "{{Game data/saves|Linux|{{p|game}}{{cn|date=August 17, 2016}}}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/224480/remote/}}" Octogeddon: pageId: 78741 steam: 525620 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Octogeddon\settings.txt}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Octogeddon\|{{p|steam}}\userdata\{{p|uid}}\525620\remote\}}' + - "{{Game data/config|Windows|{{p|appdata}}\\Octogeddon\\settings.txt}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Octogeddon\\|{{p|steam}}\\userdata\\{{p|uid}}\\525620\\remote\\}}" Octonaut - 星のタコ: pageId: 130486 steam: 1035470 @@ -114583,15 +111492,15 @@ Octopath Traveler: pageId: 133649 steam: 921570 templates: - - '{{Game data/config|Windows|{{p|userprofile\documents}}\My Games\Octopath_Traveler\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{p|userprofile\documents}}\My Games\Octopath_Traveler\{{p|uid}}\SaveGames\}}' + - "{{Game data/config|Windows|{{p|userprofile\\documents}}\\My Games\\Octopath_Traveler\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\documents}}\\My Games\\Octopath_Traveler\\{{p|uid}}\\SaveGames\\}}" Octopath Traveler II: pageId: 181572 steam: 1971650 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\My Games\Octopath_Traveler2\Steam\{{P|uid}}\SaveGames\}}' - - '{{Game data/config|Windows|{{P|userprofile}}\Appdata\Local\Octopath_Traveler2\Saved\config}}' - - '{{Game data/saves|Windows|{{p|userprofile\documents}}\My Games\Octopath_Traveler2\Steam\{{p|uid}}\SaveGames\}}' + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\My Games\\Octopath_Traveler2\\Steam\\{{P|uid}}\\SaveGames\\}}" + - "{{Game data/config|Windows|{{P|userprofile}}\\Appdata\\Local\\Octopath_Traveler2\\Saved\\config}}" + - "{{Game data/saves|Windows|{{p|userprofile\\documents}}\\My Games\\Octopath_Traveler2\\Steam\\{{p|uid}}\\SaveGames\\}}" Octopticom: pageId: 114504 steam: 943190 @@ -114604,7 +111513,7 @@ OctorSpace: Octoshield VR: pageId: 33787 steam: 488150 -'Odallus: The Dark Call': +"Odallus: The Dark Call": gog: 1435937720 pageId: 34057 steam: 319480 @@ -114613,8 +111522,8 @@ Octoshield VR: - 366121 - 366122 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Joymasher\Odallus\config.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\DATA\SLOT*}}' + - "{{Game data/config|Windows|{{p|appdata}}\\Joymasher\\Odallus\\config.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\DATA\\SLOT*}}" Odd - Even: pageId: 51010 steam: 455940 @@ -114626,19 +111535,19 @@ Odd Realm: pageId: 124307 steam: 688060 templates: - - '{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/Unknown Origin Games/OddRealm}}' - - '{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/Unknown Origin Games/OddRealm}}' + - "{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/Unknown Origin Games/OddRealm}}" + - "{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/Unknown Origin Games/OddRealm}}" OddBallers: pageId: 139752 steam: 1064070 OddPlanet: pageId: 34448 steam: 465930 -'Oddballz: Your Wacky Computer Petz': +"Oddballz: Your Wacky Computer Petz": pageId: 93479 templates: - - '{{Game data/config|Windows|C:\ODDBALLZ\ODDBALLZ.INI}}' - - '{{Game data/saves|Windows|C:\ODDBALLZ\EGGZ\name of your pet\Name of your pet.INI}}' + - "{{Game data/config|Windows|C:\\ODDBALLZ\\ODDBALLZ.INI}}" + - "{{Game data/saves|Windows|C:\\ODDBALLZ\\EGGZ\\name of your pet\\Name of your pet.INI}}" Oddity: pageId: 159218 Oddmar: @@ -114647,34 +111556,34 @@ Oddventure: gog: 1350013044 pageId: 168818 steam: 1235710 -'Oddworld: Abe''s Exoddus': +"Oddworld: Abe's Exoddus": gog: 1207658709 pageId: 2150 steam: 15710 templates: - - '{{Game data/config|Windows|{{p|game}}\abe2.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\*.sav}}' -'Oddworld: Abe''s Oddysee': + - "{{Game data/config|Windows|{{p|game}}\\abe2.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\*.sav}}" +"Oddworld: Abe's Oddysee": gog: 1207658705 pageId: 2148 steam: 15700 templates: - - '{{Game data/config|Windows|{{p|game}}\abe.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\*.sav}}' -'Oddworld: Munch''s Oddysee': + - "{{Game data/config|Windows|{{p|game}}\\abe.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\*.sav}}" +"Oddworld: Munch's Oddysee": pageId: 4715 steam: 15740 templates: - - '{{Game data/config|Windows|{{p|game}}\bin\launcher.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\saves\}}' -'Oddworld: Munch''s Oddysee (2016)': + - "{{Game data/config|Windows|{{p|game}}\\bin\\launcher.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\saves\\}}" +"Oddworld: Munch's Oddysee (2016)": gog: 1254027184 pageId: 35721 steam: 15740 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/saves|Windows|{{p|game}}\savedata\}}' -'Oddworld: New ''n'' Tasty!': + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\savedata\\}}" +"Oddworld: New 'n' Tasty!": gog: 1424782569 gogSide: - 1424782268 @@ -114682,41 +111591,37 @@ Oddventure: pageId: 22809 steam: 314660 templates: - - '{{Game data/config|Linux|{{P|game}}/Settings}}' - - '{{Game data/config|Steam|{{p|game}}/Settings/{{p|uid}}/}}' - - '{{Game data/saves|Windows|{{P|game}}\SaveGame}}' - - '{{Game data/saves|Linux|{{P|game}}/SaveGame}}' -'Oddworld: Soulstorm': + - "{{Game data/config|Linux|{{P|game}}/Settings}}" + - "{{Game data/config|Steam|{{p|game}}/Settings/{{p|uid}}/}}" + - "{{Game data/saves|Windows|{{P|game}}\\SaveGame}}" + - "{{Game data/saves|Linux|{{P|game}}/SaveGame}}" +"Oddworld: Soulstorm": pageId: 131251 -'Oddworld: Soulstorm Enhanced Edition': +"Oddworld: Soulstorm Enhanced Edition": gog: 1138525184 pageId: 178042 steam: 619390 templates: - - >- - {{Game data/config|Windows|{{P|game}}\Settings\|{{p|hkcu}}\Software\Oddworld Inhabitants Inc\Oddworld: - Soulstorm\}} - - >- - {{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Oddworld Inhabitants Inc\Oddworld_ - Soulstorm|{{P|userprofile}}\AppData\LocalLow\Oddworld Inhabitants Inc\Oddworld_ Soulstorm Enhanced Edition}} -'Oddworld: Stranger''s Wrath': + - "{{Game data/config|Windows|{{P|game}}\\Settings\\|{{p|hkcu}}\\Software\\Oddworld Inhabitants Inc\\Oddworld: Soulstorm\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Oddworld Inhabitants Inc\\Oddworld_ Soulstorm|{{P|userprofile}}\\AppData\\LocalLow\\Oddworld Inhabitants Inc\\Oddworld_ Soulstorm Enhanced Edition}}" +"Oddworld: Stranger's Wrath": gog: 1207658950 pageId: 4960 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Oddworld\Stranger''s Wrath\config.txt}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Oddworld\Stranger''s Wrath\Save\}}' -'Oddworld: Stranger''s Wrath HD': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Oddworld\\Stranger's Wrath\\config.txt}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Oddworld\\Stranger's Wrath\\Save\\}}" +"Oddworld: Stranger's Wrath HD": gog: 1207658950 pageId: 4958 steam: 15750 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Oddworld\Stranger''s Wrath HD\config.txt}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Oddworld\Stranger''s Wrath HD\Save\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Oddworld\\Stranger's Wrath HD\\config.txt}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Oddworld\\Stranger's Wrath HD\\Save\\}}" Ode: pageId: 140569 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Reflections, A Ubisoft Studio\Ode\}}' - - '{{Game data/saves|Uplay|{{p|uplay}}\savegames\{{p|uid}}\9797\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Reflections, A Ubisoft Studio\\Ode\\}}" + - "{{Game data/saves|Uplay|{{p|uplay}}\\savegames\\{{p|uid}}\\9797\\}}" Ode to a Moon: pageId: 142093 steam: 1056680 @@ -114726,23 +111631,21 @@ Odium to the Core: Odyssee: pageId: 93353 steam: 844620 -'Odysseus Kosmos and his Robot Quest: Adventure Game': +"Odysseus Kosmos and his Robot Quest: Adventure Game": pageId: 70697 steam: 645820 -'Odysseus Kosmos and his Robot Quest: Episode 1': +"Odysseus Kosmos and his Robot Quest: Episode 1": pageId: 79302 steam: 769920 templates: - - >- - {{Game data/config|Windows|{{p|USERPROFILE}}\AppData\LocalLow\PavelKostin\Odysseus - KosmosE1\options.gd|{{p|hkcu}}\Software\PavelKostin\Odysseus KosmosE1\}} - - '{{Game data/saves|Windows|{{p|USERPROFILE}}\AppData\LocalLow\PavelKostin\Odysseus KosmosE1\}}' -'Odysseus: Long Way Home': + - "{{Game data/config|Windows|{{p|USERPROFILE}}\\AppData\\LocalLow\\PavelKostin\\Odysseus KosmosE1\\options.gd|{{p|hkcu}}\\Software\\PavelKostin\\Odysseus KosmosE1\\}}" + - "{{Game data/saves|Windows|{{p|USERPROFILE}}\\AppData\\LocalLow\\PavelKostin\\Odysseus KosmosE1\\}}" +"Odysseus: Long Way Home": pageId: 48635 steam: 348960 templates: - - '{{Game data/config|Windows|{{P|appdata}}\Rainbow\Odysseus\settings.xml}}' - - '{{Game data/saves|Windows|{{P|appdata}}\Rainbow\Odysseus\profiles.xml}}' + - "{{Game data/config|Windows|{{P|appdata}}\\Rainbow\\Odysseus\\settings.xml}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\Rainbow\\Odysseus\\profiles.xml}}" Odyssey - The Story of Science: pageId: 58316 renamedFrom: @@ -114753,7 +111656,7 @@ Odyssey - The Story of Science (duplicate): Odyssey Reborn: pageId: 86825 steam: 351840 -'Odyssey VR: The Deep Space Expedition': +"Odyssey VR: The Deep Space Expedition": pageId: 76002 steam: 738600 Oedipus Dating Sim: @@ -114763,8 +111666,8 @@ Of Bird and Cage: pageId: 136008 steam: 523770 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\TheBirdcageGame\Saved\Config}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\TheBirdcageGame\Saved\SaveGames}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\TheBirdcageGame\\Saved\\Config}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\TheBirdcageGame\\Saved\\SaveGames}}" Of Blades & Tails: gog: 1186608065 pageId: 182687 @@ -114773,8 +111676,8 @@ Of Carrots and Blood: pageId: 43961 steam: 439440 templates: - - '{{Game data/saves|Windows|{{p|hkcu}}\Software\TriteGames\OfCarrotsAndBlood}}' -'Of Gods and Men: The Daybreak Empire': + - "{{Game data/saves|Windows|{{p|hkcu}}\\Software\\TriteGames\\OfCarrotsAndBlood}}" +"Of Gods and Men: The Daybreak Empire": pageId: 114126 steam: 936610 Of Guards and Thieves: @@ -114790,56 +111693,56 @@ Of Light and Darkness: Of Love And Sorrow: pageId: 41755 steam: 498300 -'Of Mice and Sand: Revised': +"Of Mice and Sand: Revised": pageId: 90896 steam: 785780 templates: - - '{{Game data/saves|Windows|{{p|game}}\SaveWin\}}' + - "{{Game data/saves|Windows|{{p|game}}\\SaveWin\\}}" Of Orcs and Men: gog: 1177610018 pageId: 15992 steam: 216910 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Of Orcs and Men\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Of Orcs and Men\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Of Orcs and Men\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Of Orcs and Men\\}}" Of Ships & Scoundrels: pageId: 126285 steam: 933830 Off Grid: pageId: 92395 steam: 526720 -'Off The Record: The Art of Deception': +"Off The Record: The Art of Deception": pageId: 58553 renamedFrom: - - 'Off The Record: The Art of Deception Collector''s Edition' + - "Off The Record: The Art of Deception Collector's Edition" steam: 600170 -'Off the Record: Liberty Stone': +"Off the Record: Liberty Stone": pageId: 79300 renamedFrom: - - 'Off the Record: Liberty Stone Collector''s Edition' + - "Off the Record: Liberty Stone Collector's Edition" steam: 770900 -'Off the Record: The Final Interview': +"Off the Record: The Final Interview": pageId: 95453 steam: 866720 -'Off the Record: The Italian Affair': +"Off the Record: The Italian Affair": pageId: 41819 renamedFrom: - - 'Off the Record: The Italian Affair Collector''s Edition' + - "Off the Record: The Italian Affair Collector's Edition" steam: 503070 -'Off the Record: The Linden Shades': +"Off the Record: The Linden Shades": pageId: 42930 renamedFrom: - - 'Off the Record: The Linden Shades Collector''s Edition' + - "Off the Record: The Linden Shades Collector's Edition" steam: 466020 Off-Peak: pageId: 52085 steam: 467360 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Cosmo D\Off-Peak\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Cosmo D\\Off-Peak\\}}" Off-Road Drive: pageId: 40899 steam: 200230 -'Off-Road Paradise: Trial 4x4': +"Off-Road Paradise: Trial 4x4": pageId: 54389 steam: 556230 Off-Road Super Racing: @@ -114850,7 +111753,7 @@ OffRoad: Offendron Warrior: pageId: 125377 steam: 999200 -'Offensive Combat: Redux!': +"Offensive Combat: Redux!": pageId: 66249 steam: 622170 Offensive Dimensions: @@ -114878,14 +111781,14 @@ Office Run: pageId: 180336 steam: 2000180 templates: - - '{{Game data/saves|Windows|{{p|LocalAppData}}\OfficeRun\Saved\SaveGames\}}' -'Office Space: Idle Profits': + - "{{Game data/saves|Windows|{{p|LocalAppData}}\\OfficeRun\\Saved\\SaveGames\\}}" +"Office Space: Idle Profits": pageId: 72927 steam: 626010 Office lovers: pageId: 41773 steam: 494450 -'OfficeBots: Reality Bytes VR': +"OfficeBots: Reality Bytes VR": pageId: 66997 steam: 649730 Official Formula 1 Racing: @@ -114896,7 +111799,7 @@ Offroad Mania: Offroad Racing - Buggy X ATV X Moto: pageId: 156122 steam: 1085520 -'Offroad: VR': +"Offroad: VR": pageId: 50763 steam: 533910 Offside (2022): @@ -114908,20 +111811,20 @@ Offspring Fling!: pageId: 2748 steam: 211360 templates: - - '{{Game data/config|Windows|{{p|appdata}}\offspringfling\Local Store\config\}}' - - '{{Game data/saves|Windows|{{p|appdata}}\offspringfling\Local Store\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Preferences/offspringfling/Local Store/}}' + - "{{Game data/config|Windows|{{p|appdata}}\\offspringfling\\Local Store\\config\\}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\offspringfling\\Local Store\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Preferences/offspringfling/Local Store/}}" Offworld Trading Company: gog: 1574464714 pageId: 22740 steam: 271240 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Offworld\*.xml}}' - - '{{Game data/config|Epic Games Store|{{p|userprofile\Documents}}\My Games\Offworld\EpicCloud\GameOptionsSave.xml}}' - - '{{Game data/config|Steam|{{p|userprofile\Documents}}\My Games\Offworld\SteamCloud\GameOptionsSave.xml}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Offworld\Saves\}}' - - '{{Game data/saves|Epic Games Store|{{p|userprofile\Documents}}\My Games\Offworld\EpicCloud\}}' - - '{{Game data/saves|Steam|{{p|userprofile\Documents}}\My Games\Offworld\SteamCloud\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Offworld\\*.xml}}" + - "{{Game data/config|Epic Games Store|{{p|userprofile\\Documents}}\\My Games\\Offworld\\EpicCloud\\GameOptionsSave.xml}}" + - "{{Game data/config|Steam|{{p|userprofile\\Documents}}\\My Games\\Offworld\\SteamCloud\\GameOptionsSave.xml}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Offworld\\Saves\\}}" + - "{{Game data/saves|Epic Games Store|{{p|userprofile\\Documents}}\\My Games\\Offworld\\EpicCloud\\}}" + - "{{Game data/saves|Steam|{{p|userprofile\\Documents}}\\My Games\\Offworld\\SteamCloud\\}}" Ogre: pageId: 68494 steam: 517780 @@ -114937,7 +111840,7 @@ Oh Boy Cheese: Oh Crab!: pageId: 155374 steam: 1135210 -'Oh Jeez, Oh No, My Rabbits Are Gone!': +"Oh Jeez, Oh No, My Rabbits Are Gone!": pageId: 153814 steam: 1199140 Oh My Ballz: @@ -114946,12 +111849,12 @@ Oh My Ballz: Oh My Cooking Gun: pageId: 76913 steam: 743240 -'Oh My God, Look at This Knight': +"Oh My God, Look at This Knight": pageId: 82716 steam: 781440 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\OH_MY_GOD__LOOK_AT_THIS_KNIGHT\settings.ini}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\OH_MY_GOD__LOOK_AT_THIS_KNIGHT\save.sav}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\OH_MY_GOD__LOOK_AT_THIS_KNIGHT\\settings.ini}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\OH_MY_GOD__LOOK_AT_THIS_KNIGHT\\save.sav}}" Oh My Godheads: pageId: 60283 steam: 522740 @@ -114970,34 +111873,34 @@ Oh Ship Arena: Oh So Hero!: pageId: 142930 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Full Frontal Frog\Oh So Hero\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Full Frontal Frog\Oh So Hero\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Full Frontal Frog\\Oh So Hero\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Full Frontal Frog\\Oh So Hero\\}}" Oh Trap!: pageId: 125406 steam: 994520 -'Oh, Deer!': +"Oh, Deer!": pageId: 57501 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Necrosoft Games\Oh Deer\config.txt}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Necrosoft Games\Oh Deer\leaderboards_*.txt}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Necrosoft Games\\Oh Deer\\config.txt}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Necrosoft Games\\Oh Deer\\leaderboards_*.txt}}" Oh...Sir! Prototype: pageId: 37909 steam: 416690 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Vile Monarch\Oh... Sir!\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Vile Monarch\\Oh... Sir!\\}}" Oh...Sir! The Hollywood Roast: pageId: 59119 steam: 575330 templates: - - '{{Game data/config|Windows|{{p|HKCU}}\Software\Vile Monarch\Oh...Sir! The Hollywood Roast\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\OhSirTheHollywoodRoast\progress.oss}}' + - "{{Game data/config|Windows|{{p|HKCU}}\\Software\\Vile Monarch\\Oh...Sir! The Hollywood Roast\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\OhSirTheHollywoodRoast\\progress.oss}}" Oh...Sir! The Insult Simulator: gog: 1748335600 pageId: 38933 steam: 512250 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Vile Monarch\Oh...Sir! The Insult Simulator\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\OhSir\progress.json}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Vile Monarch\\Oh...Sir! The Insult Simulator\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\OhSir\\progress.json}}" Ohio Jack and The Cup of Eternity: pageId: 45162 steam: 412230 @@ -115007,10 +111910,10 @@ Ohota Krepkoe: Ohr: pageId: 52948 steam: 376480 -'Oi, Innkeep!': +"Oi, Innkeep!": pageId: 91592 steam: 824840 -'Oi, Innkeep! - Chronicles!': +"Oi, Innkeep! - Chronicles!": pageId: 130502 steam: 1025620 Oik: @@ -115037,7 +111940,7 @@ Oik Memory 2: Oik Memory 3: pageId: 127681 steam: 1025130 -'Oik Memory: Endgame': +"Oik Memory: Endgame": pageId: 136629 steam: 1086450 Oik Reloaded: @@ -115059,10 +111962,10 @@ Oil Rush: pageId: 1101 steam: 200390 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\OilRush\oilrush.cfg}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.OilRush/oilrush.cfg}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\OilRush\profiles\{{p|uid}}\save}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.OilRush/profiles/}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\OilRush\\oilrush.cfg}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.OilRush/oilrush.cfg}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\OilRush\\profiles\\{{p|uid}}\\save}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.OilRush/profiles/}}" Oil Wars: pageId: 156545 steam: 1208830 @@ -115080,9 +111983,9 @@ Okami HD: - Ōkami HD steam: 587620 templates: - - '{{Game data/config|Windows|{{p|appdata}}\OKAMI HD\}}' - - '{{Game data/saves|Windows|{{p|steam}}\userdata\{{p|uid}}\587620\remote\}}' -'Okay, Panic!': + - "{{Game data/config|Windows|{{p|appdata}}\\OKAMI HD\\}}" + - "{{Game data/saves|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\587620\\remote\\}}" +"Okay, Panic!": pageId: 141041 steam: 1098790 Okhlos: @@ -115090,8 +111993,8 @@ Okhlos: pageId: 36024 steam: 400180 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\Coffee Powered Machine\Okhlos}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Coffee Powered Machine\Okhlos}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Coffee Powered Machine\\Okhlos}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Coffee Powered Machine\\Okhlos}}" Okinawa Rush: gog: 1660379132 pageId: 58884 @@ -115100,12 +112003,12 @@ Oknytt: pageId: 37377 steam: 286320 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Nemoria Entertainment\Oknytt\}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\Saved Games\Oknytt\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Nemoria Entertainment\\Oknytt\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\Saved Games\\Oknytt\\}}" Olaguna Chronicles: pageId: 156396 steam: 985650 -'Olav: The Story of One Boy': +"Olav: The Story of One Boy": pageId: 61734 steam: 564990 Old Adventure: @@ -115129,21 +112032,19 @@ Old Friend: Old Gods Rising: pageId: 137040 steam: 1084990 -Old Man's Journey: +"Old Man's Journey": pageId: 61056 steam: 581270 templates: - - >- - {{Game data/config|Windows|{{P|hkcu}}\Software\Broken Rules\Old Man\|{{P|userprofile}}\AppData\LocalLow\Broken - Rules\Old Man\GameState.omj}} - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Broken Rules\Old Man\GameState.omj}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Broken Rules\\Old Man\\|{{P|userprofile}}\\AppData\\LocalLow\\Broken Rules\\Old Man\\GameState.omj}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Broken Rules\\Old Man\\GameState.omj}}" Old School 8-in-1 bundle: pageId: 42744 steam: 478020 Old School FOTD: pageId: 73786 steam: 727170 -'Old School Horror Game : Bright Day': +"Old School Horror Game : Bright Day": pageId: 148591 steam: 1168740 Old School Maze: @@ -115153,8 +112054,8 @@ Old School Musical: pageId: 77401 steam: 398030 templates: - - '{{Game data/config|Windows|{{p|userprofile\AppData\LocalLow}}\LaMoutarde\Old School Musical}}' - - '{{Game data/saves|Windows|{{p|userprofile\AppData\LocalLow}}\LaMoutarde\Old School Musical}}' + - "{{Game data/config|Windows|{{p|userprofile\\AppData\\LocalLow}}\\LaMoutarde\\Old School Musical}}" + - "{{Game data/saves|Windows|{{p|userprofile\\AppData\\LocalLow}}\\LaMoutarde\\Old School Musical}}" Old School RuneScape: pageId: 126871 steam: 1343370 @@ -115165,8 +112066,8 @@ Old Skies: steamSide: - 2001820 templates: - - '{{Game data/config|Windows|{{P|userprofile}}\Saved Games\Old Skies\acsetup.cfg}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\Saved Games\Old Skies\}}' + - "{{Game data/config|Windows|{{P|userprofile}}\\Saved Games\\Old Skies\\acsetup.cfg}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\Saved Games\\Old Skies\\}}" Old Time Hockey: pageId: 59369 steam: 543010 @@ -115182,10 +112083,10 @@ Old Watch: Old World: gog: 2010300617 gogSide: - - 1721325518 - - 1631326988 - - 1302016290 - 1257525875 + - 1302016290 + - 1631326988 + - 1721325518 pageId: 159225 steam: 597180 steamSide: @@ -115193,12 +112094,8 @@ Old World: - 2261870 - 2587410 templates: - - |- - {{Game data/config|Windows| - {{p|userprofile\documents}}\My Games\OldWorld\}} - - |- - {{Game data/saves|Windows| - {{p|userprofile\documents}}\My Games\OldWorld\Saves\}} + - "{{Game data/config|Windows|\n{{p|userprofile\\documents}}\\My Games\\OldWorld\\}}" + - "{{Game data/saves|Windows|\n{{p|userprofile\\documents}}\\My Games\\OldWorld\\Saves\\}}" OldGrad: pageId: 87015 steam: 803820 @@ -115223,10 +112120,10 @@ OldbI tyt ?: Oldschool Tennis: pageId: 57107 steam: 582480 -Olea's Descent: +"Olea's Descent": pageId: 124193 steam: 986100 -Olea's Messenger: +"Olea's Messenger": pageId: 113232 steam: 798640 Oligopoly: @@ -115237,18 +112134,14 @@ Olija: pageId: 166273 steam: 1297330 templates: - - >- - {{Game data/config|Windows|{{P|userprofile\appdata\locallow}}\Skeleton Crew - Studio\Olija\Olija_binary_SystemStatus|{{P|hkcu}}\SOFTWARE\Skeleton Crew Studio\Olija\}} - - >- - {{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Skeleton Crew - Studio\Olija\Olija_binary_Olija_GameStatus}} + - "{{Game data/config|Windows|{{P|userprofile\\appdata\\locallow}}\\Skeleton Crew Studio\\Olija\\Olija_binary_SystemStatus|{{P|hkcu}}\\SOFTWARE\\Skeleton Crew Studio\\Olija\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Skeleton Crew Studio\\Olija\\Olija_binary_Olija_GameStatus}}" Olimdal: pageId: 125603 steam: 990280 Oliver & Company: pageId: 147183 -Oliver's Adventures in the Fairyland: +"Oliver's Adventures in the Fairyland": pageId: 127797 steam: 1022010 OlliOlli: @@ -115256,49 +112149,49 @@ OlliOlli: pageId: 17745 steam: 274250 templates: - - '{{Game data/config|Windows|{{p|appdata}}\olliolli\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/.olliolli/}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.olliolli/}}' - - '{{Game data/saves|Windows|{{p|appdata}}\olliolli\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/.olliolli/}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.olliolli/}}' + - "{{Game data/config|Windows|{{p|appdata}}\\olliolli\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/.olliolli/}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.olliolli/}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\olliolli\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/.olliolli/}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.olliolli/}}" OlliOlli World: pageId: 167886 steam: 1190170 templates: - - '{{Game data/config|Windows|{{p|userprofile\appdata\locallow}}\Roll7\OlliOlli World\OlliOlli World.dat}}' - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\Roll7\OlliOlli World\Save.Mount}}' -'OlliOlli2: Welcome to Olliwood': + - "{{Game data/config|Windows|{{p|userprofile\\appdata\\locallow}}\\Roll7\\OlliOlli World\\OlliOlli World.dat}}" + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\Roll7\\OlliOlli World\\Save.Mount}}" +"OlliOlli2: Welcome to Olliwood": gog: 1438603531 pageId: 27192 steam: 365660 templates: - - '{{Game data/config|Windows|{{p|appdata}}\olliolli2\config.dat}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.olliolli2/config.dat}}' - - '{{Game data/saves|Windows|{{p|appdata}}\olliolli2\SaveData.dat}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.olliolli2/SaveData.dat}}' -'Ollie & Bollie: Outdoor Estate': + - "{{Game data/config|Windows|{{p|appdata}}\\olliolli2\\config.dat}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.olliolli2/config.dat}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\olliolli2\\SaveData.dat}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.olliolli2/SaveData.dat}}" +"Ollie & Bollie: Outdoor Estate": pageId: 155328 steam: 1218890 Ollie-Oop: pageId: 145522 steam: 895760 -'Olorun: Theocracy': +"Olorun: Theocracy": pageId: 108446 steam: 692780 -Olson's Boxing Challenge: +"Olson's Boxing Challenge": pageId: 76047 steam: 747790 Olympia Rising: pageId: 47174 steam: 295910 templates: - - '{{Game data/saves|Windows|{{p|localappdata}}\OlympiaRising\Local Storage\}}' + - "{{Game data/saves|Windows|{{p|localappdata}}\\OlympiaRising\\Local Storage\\}}" Olympic Games Tokyo 2020 – The Official Video Game: pageId: 170245 steam: 981890 templates: - - '{{Game data/saves|Windows|{{p|steam}}\userdata\{{p|uid}}\981890\remote\saved}}' + - "{{Game data/saves|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\981890\\remote\\saved}}" Olympic Team: pageId: 80931 steam: 666760 @@ -115321,8 +112214,8 @@ Omega Labyrinth Life: pageId: 153458 steam: 1163600 templates: - - '{{Game data/config|Windows|HKEY_CURRENT_USER\SOFTWARE\D3Publisher\OmegaLabyrinth Life}}' - - '{{Game data/saves|Windows|{{p|game}}\Documents}}' + - "{{Game data/config|Windows|HKEY_CURRENT_USER\\SOFTWARE\\D3Publisher\\OmegaLabyrinth Life}}" + - "{{Game data/saves|Windows|{{p|game}}\\Documents}}" Omega One: pageId: 56130 steam: 575740 @@ -115350,22 +112243,22 @@ Omegaland: Omegalodon: pageId: 10583 steam: 248350 -'Omen Exitio: Plague': +"Omen Exitio: Plague": pageId: 87283 steam: 668590 Omen of Sorrow: pageId: 138247 steam: 457260 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\UMonster\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\UMonster\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\UMonster\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\UMonster\\Saved\\SaveGames\\}}" Omensight: gog: 2044567729 pageId: 79951 steam: 455820 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Omensight\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Omensight\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Omensight\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Omensight\\Saved\\SaveGames\\}}" Omerta - City of Gangsters: gog: 1207659157 gogSide: @@ -115380,35 +112273,35 @@ Omerta - City of Gangsters: - 215373 - 215374 templates: - - '{{Game data/saves|Windows|{{p|appdata}}\omerta\}}' + - "{{Game data/saves|Windows|{{p|appdata}}\\omerta\\}}" Omicroid: pageId: 109394 steam: 897210 -'Omikron: The Nomad Soul': +"Omikron: The Nomad Soul": gog: 1207659190 pageId: 654 steam: 243000 templates: - - '{{Game data/saves|Windows|{{p|game}}\IAM\GAMES}}' + - "{{Game data/saves|Windows|{{p|game}}\\IAM\\GAMES}}" Omina Mortis: pageId: 63028 steam: 644340 -'Ominous Horizons: A Paladin''s Calling': +"Ominous Horizons: A Paladin's Calling": pageId: 91644 templates: - - '{{Game data/config|Windows|{{p|game}}\ominous.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\save\}}' -'Ominous Objects: Family Portrait': + - "{{Game data/config|Windows|{{p|game}}\\ominous.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\save\\}}" +"Ominous Objects: Family Portrait": pageId: 58451 renamedFrom: - - 'Ominous Objects: Family Portrait Collector''s Edition' + - "Ominous Objects: Family Portrait Collector's Edition" steam: 598050 -'Ominous Objects: Phantom Reflection': +"Ominous Objects: Phantom Reflection": pageId: 73701 renamedFrom: - - 'Ominous Objects: Phantom Reflection Collector''s Edition' + - "Ominous Objects: Phantom Reflection Collector's Edition" steam: 729960 -'Ominous Tales: The Forsaken Isle': +"Ominous Tales: The Forsaken Isle": pageId: 63982 steam: 645410 Omni: @@ -115425,8 +112318,8 @@ OmniBus: pageId: 34176 steam: 415740 templates: - - '{{Game data/config|Windows|{{p|game}}\Save}}' - - '{{Game data/saves|Windows|{{p|game}}\Save}}' + - "{{Game data/config|Windows|{{p|game}}\\Save}}" + - "{{Game data/saves|Windows|{{p|game}}\\Save}}" OmniFootman: pageId: 136570 steam: 1076230 @@ -115448,11 +112341,9 @@ Omno: pageId: 122840 steam: 969760 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Omno\Saved\Config\WindowsNoEditor\}}' - - >- - {{Game data/config|Microsoft - Store|{{p|localappdata}}\Packages\StudioInkyfoxUG.Omno_cpye1581ey306\LocalCache\Local\Omno\Saved\Config\WinGDK\}} - - '{{Game data/saves|Windows|{{P|localappdata}}\Omno\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\Omno\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/config|Microsoft Store|{{p|localappdata}}\\Packages\\StudioInkyfoxUG.Omno_cpye1581ey306\\LocalCache\\Local\\Omno\\Saved\\Config\\WinGDK\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Omno\\Saved\\SaveGames\\}}" Omnom Necropolis: pageId: 62060 steam: 622890 @@ -115475,8 +112366,8 @@ On Earth as It Is in Heaven: pageId: 75558 steam: 662260 templates: - - '{{Game data/config|Windows|{{P|appdata}}\renpy\On Earth as it is in Heaven-1489938386\persistent}}' - - '{{Game data/saves|Windows|{{P|appdata}}\renpy\On Earth as it is in Heaven-1489938386\*.save}}' + - "{{Game data/config|Windows|{{P|appdata}}\\renpy\\On Earth as it is in Heaven-1489938386\\persistent}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\renpy\\On Earth as it is in Heaven-1489938386\\*.save}}" On My Own: pageId: 44431 steam: 351730 @@ -115485,8 +112376,8 @@ On Rusty Trails: pageId: 33838 steam: 277700 templates: - - '{{Game data/config|Windows|{{p|game}}\settings.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\default.save}}' + - "{{Game data/config|Windows|{{p|game}}\\settings.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\default.save}}" On Target VR Darts: pageId: 129675 steam: 1000870 @@ -115529,7 +112420,7 @@ Ona-Ken! International: Onager!: pageId: 70116 steam: 705440 -'Once Bitten, Twice Dead!': +"Once Bitten, Twice Dead!": pageId: 47365 steam: 360590 Once Ever After: @@ -115544,9 +112435,9 @@ Once Upon A Death: Once Upon a Time in Roswell: pageId: 145789 steam: 907500 -'Once Upon a Time: Little Red Riding Hood': +"Once Upon a Time: Little Red Riding Hood": pageId: 147181 -Once Upon an All Hallow's Eve: +"Once Upon an All Hallow's Eve": pageId: 56756 steam: 581650 Once in Yaissor: @@ -115559,8 +112450,8 @@ Once on a Windswept Night: pageId: 57303 steam: 585880 templates: - - '{{Game data/config|Windows|{{p|game}}\renpy\config.py}}' - - '{{Game data/saves|Windows|{{p|appdata}}\renpy\Once on a windswept night-1475875736\|{{p|game}}\game\saves\}}' + - "{{Game data/config|Windows|{{p|game}}\\renpy\\config.py}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\renpy\\Once on a windswept night-1475875736\\|{{p|game}}\\game\\saves\\}}" Once upon a Dungeon: pageId: 79824 steam: 772090 @@ -115580,7 +112471,7 @@ Once upon a Jester: Once upon a time: pageId: 72509 steam: 566410 -Once': +"Once'": pageId: 125725 steam: 411880 Once10: @@ -115617,7 +112508,7 @@ One Day For Ched: One Day for Revenge: pageId: 96995 steam: 878100 -'One Day: The Sun Disappeared': +"One Day: The Sun Disappeared": pageId: 36764 steam: 492610 One Deck Dungeon: @@ -115634,13 +112525,13 @@ One Drop Bot: pageId: 134731 steam: 1060320 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\SOFTWARE\Playing with Color\One Drop Bot\}}' - - '{{Game data/saves|Windows|{{p|hkcu}}\SOFTWARE\Playing with Color\One Drop Bot\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\Playing with Color\\One Drop Bot\\}}" + - "{{Game data/saves|Windows|{{p|hkcu}}\\SOFTWARE\\Playing with Color\\One Drop Bot\\}}" One Eyed Kutkh: pageId: 60083 steam: 612170 templates: - - '{{Game data/config|Windows|{{P|userprofile\appdata\locallow}}\BabaYagaGames\One Eyed Kutkh}}' + - "{{Game data/config|Windows|{{P|userprofile\\appdata\\locallow}}\\BabaYagaGames\\One Eyed Kutkh}}" One Fantasy Shooter: pageId: 144474 steam: 1141510 @@ -115654,21 +112545,21 @@ One Finger Death Punch: pageId: 15990 steam: 264200 templates: - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\SavedGames\One Finger Death Punch\Game_Save\}}' + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\SavedGames\\One Finger Death Punch\\Game_Save\\}}" One Finger Death Punch 2: gog: 1275833822 pageId: 128517 steam: 980300 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Silver Dollar Games\One Finger Death Punch 2\}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Silver Dollar Games\One Finger Death Punch 2}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Silver Dollar Games\\One Finger Death Punch 2\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Silver Dollar Games\\One Finger Death Punch 2}}" One Giant Leap: pageId: 41553 steam: 512750 -'One Gun 2: Stickman': +"One Gun 2: Stickman": pageId: 153286 steam: 1124380 -'One Gun: Cat': +"One Gun: Cat": pageId: 121466 steam: 924900 One Hand Clapping: @@ -115708,15 +112599,15 @@ One Last Chance: pageId: 43696 steam: 460150 templates: - - '{{Game data/config|Windows|{{p|game}}\data\system\Config.tjs}}' - - '{{Game data/saves|Windows|{{p|game}}\One_Last_Chance_tyrano_data.sav}}' + - "{{Game data/config|Windows|{{p|game}}\\data\\system\\Config.tjs}}" + - "{{Game data/saves|Windows|{{p|game}}\\One_Last_Chance_tyrano_data.sav}}" One Last Crane - Prologue: pageId: 89998 steam: 446530 One Last Day: pageId: 48076 steam: 328710 -'One Late Night: Deadline': +"One Late Night: Deadline": pageId: 49069 steam: 337880 One Leaves: @@ -115728,13 +112619,11 @@ One Lonely Outpost: pageId: 188293 steam: 1465550 steamSide: - - 2475630 - 2240770 + - 2475630 templates: - - |- - {{Game data/config|Windows|{{P|userprofile\appdata\locallow}}\Freedom Games\One Lonely Outpost\globals
- {{P|hkcu}}\Software\Freedom Games\One Lonely Outpost}} - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Freedom Games\One Lonely Outpost\save_slots}}' + - "{{Game data/config|Windows|{{P|userprofile\\appdata\\locallow}}\\Freedom Games\\One Lonely Outpost\\globals
\n{{P|hkcu}}\\Software\\Freedom Games\\One Lonely Outpost}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Freedom Games\\One Lonely Outpost\\save_slots}}" One Man Army VR: pageId: 87872 steam: 800980 @@ -115751,9 +112640,9 @@ One More Dungeon: pageId: 34727 steam: 415030 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\StatelySnail\OneMoreDungeon\}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/StatelySnail/OneMoreDungeon/prefs}}' - - '{{Game data/saves|Windows|{{p|hkcu}}\Software\StatelySnail\OneMoreDungeon\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\StatelySnail\\OneMoreDungeon\\}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/StatelySnail/OneMoreDungeon/prefs}}" + - "{{Game data/saves|Windows|{{p|hkcu}}\\Software\\StatelySnail\\OneMoreDungeon\\}}" One More Island: pageId: 177672 steam: 1454160 @@ -115761,11 +112650,11 @@ One More Line: pageId: 46675 steam: 356890 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\SMGStudio\OneMoreLine\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\SMGStudio\\OneMoreLine\\}}" One More Night: pageId: 52609 steam: 535630 -'One More Night: BiO Clinic': +"One More Night: BiO Clinic": pageId: 77816 steam: 735650 One More Roll: @@ -115774,19 +112663,19 @@ One More Roll: One Must Fall 2097: pageId: 2292 templates: - - '{{Game data/saves|DOS|{{p|game}}\PLAYERNAME.CHR}}' -'One Must Fall: Battlegrounds': + - "{{Game data/saves|DOS|{{p|game}}\\PLAYERNAME.CHR}}" +"One Must Fall: Battlegrounds": pageId: 140559 templates: - - '{{Game data/config|Windows|{{p|game}}\Data\PhoenixRegistry.DEObjects}}' - - '{{Game data/saves|Windows|{{p|game}}\Data\PhoenixRegistry.DEObjects}}' + - "{{Game data/config|Windows|{{p|game}}\\Data\\PhoenixRegistry.DEObjects}}" + - "{{Game data/saves|Windows|{{p|game}}\\Data\\PhoenixRegistry.DEObjects}}" One Night: pageId: 60425 steam: 339900 One Night (2018): pageId: 137244 steam: 752180 -'One Night 2: The Beyond': +"One Night 2: The Beyond": pageId: 122326 steam: 960200 One Night In The House: @@ -115798,7 +112687,7 @@ One Night Stand: One Night Two Crazies: pageId: 41677 steam: 509290 -One Night You're Crazy: +"One Night You're Crazy": pageId: 70321 steam: 697800 One Night on the Road: @@ -115817,17 +112706,15 @@ One Piece Odyssey: pageId: 176668 steam: 814000 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\odyssey\Saved\Config\WindowsNoEditor\}}' - - >- - {{Game data/saves|Windows|{{P|localappdata}}\BANDAI NAMCO Entertainment\ONE PIECE - ODYSSEY\Saved\SaveGames\{{P|uid}}}} -'One Piece: Burning Blood': + - "{{Game data/config|Windows|{{P|localappdata}}\\odyssey\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\BANDAI NAMCO Entertainment\\ONE PIECE ODYSSEY\\Saved\\SaveGames\\{{P|uid}}}}" +"One Piece: Burning Blood": pageId: 31279 steam: 425220 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\425220\remote\SYSTEM-DATA\}}' -'One Piece: Pirate Warriors 3': + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\425220\\remote\\SYSTEM-DATA\\}}" +"One Piece: Pirate Warriors 3": pageId: 23070 steam: 331600 steamSide: @@ -115835,37 +112722,27 @@ One Piece Odyssey: - 378504 - 378505 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\BNE\One Piece Pirate Warriors 3\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\BNE\One Piece Pirate Warriors 3\SAVEDATA\}}' -'One Piece: Pirate Warriors 4': + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\BNE\\One Piece Pirate Warriors 3\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\BNE\\One Piece Pirate Warriors 3\\SAVEDATA\\}}" +"One Piece: Pirate Warriors 4": pageId: 143733 steam: 1089090 templates: - - >- - {{Game data/config|Windows|{{p|localappdata}}\BANDAI NAMCO Entertainment\One Piece Pirate Warriors - 4\Saved\SaveGames\|{{p|hkcu}}\Software\BNE\OPPW4\}} - - >- - {{Game data/saves|Windows|{{p|localappdata}}\BANDAI NAMCO Entertainment\One Piece Pirate Warriors - 4\Saved\SaveGames\}} - - >- - {{Game data/saves|Microsoft - Store|{{P|localappdata}}\Packages\NAMCOBANDAIGamesInc.ONEPIECEPIRATEWARRIORS4Windows_gdy2aq6ez762w\SystemAppData\wgs}} -'One Piece: Unlimited World Red Deluxe Edition': + - "{{Game data/config|Windows|{{p|localappdata}}\\BANDAI NAMCO Entertainment\\One Piece Pirate Warriors 4\\Saved\\SaveGames\\|{{p|hkcu}}\\Software\\BNE\\OPPW4\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\BANDAI NAMCO Entertainment\\One Piece Pirate Warriors 4\\Saved\\SaveGames\\}}" + - "{{Game data/saves|Microsoft Store|{{P|localappdata}}\\Packages\\NAMCOBANDAIGamesInc.ONEPIECEPIRATEWARRIORS4Windows_gdy2aq6ez762w\\SystemAppData\\wgs}}" +"One Piece: Unlimited World Red Deluxe Edition": pageId: 62458 steam: 571720 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\BANDAI NAMCO Entertainment\OP Unlimited World Red\{{p|uid}}\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\BANDAI NAMCO Entertainment\OP Unlimited World Red\{{p|uid}}\}}' -'One Piece: World Seeker': + - "{{Game data/config|Windows|{{p|localappdata}}\\BANDAI NAMCO Entertainment\\OP Unlimited World Red\\{{p|uid}}\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\BANDAI NAMCO Entertainment\\OP Unlimited World Red\\{{p|uid}}\\}}" +"One Piece: World Seeker": pageId: 80063 steam: 755500 templates: - - >- - {{Game data/config|Windows|{{p|localappdata}}\BANDAI NAMCO Entertainment\ONE PIECE WORLD - SEEKER\Saved\SaveGames\0\}} - - >- - {{Game data/saves|Windows|{{p|localappdata}}\BANDAI NAMCO Entertainment\ONE PIECE WORLD - SEEKER\Saved\SaveGames\0\}} + - "{{Game data/config|Windows|{{p|localappdata}}\\BANDAI NAMCO Entertainment\\ONE PIECE WORLD SEEKER\\Saved\\SaveGames\\0\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\BANDAI NAMCO Entertainment\\ONE PIECE WORLD SEEKER\\Saved\\SaveGames\\0\\}}" One Ping Only: pageId: 91104 steam: 828030 @@ -115887,7 +112764,7 @@ One Star: One Step Beyond: pageId: 143887 templates: - - '{{Game data/config|DOS|{{p|game}}\onestep.cfg}}' + - "{{Game data/config|DOS|{{p|game}}\\onestep.cfg}}" One Step from Eden: gog: 1112715616 pageId: 122848 @@ -115898,12 +112775,12 @@ One Step from Eden: - One Step From Eden steam: 960690 templates: - - '{{Game data/config|Windows|{{p|HKCU}}\SOFTWARE\Ristaccia LLC\One Step From Eden\}}' - - '{{Game data/config|Linux|{{p|xdgconfighome}}/unity3d/Ristaccia LLC/One Step From Eden/prefs}}' - - '{{Game data/config|Steam|{{p|steam}}\userdata\{{p|uid}}\960690\remote\SaveData}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Ristacia LLC\One Step From Eden}}' - - '{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/Ristaccia LLC/One Step From Eden/SaveData}}' - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\960690\remote\SaveData}}' + - "{{Game data/config|Windows|{{p|HKCU}}\\SOFTWARE\\Ristaccia LLC\\One Step From Eden\\}}" + - "{{Game data/config|Linux|{{p|xdgconfighome}}/unity3d/Ristaccia LLC/One Step From Eden/prefs}}" + - "{{Game data/config|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\960690\\remote\\SaveData}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Ristacia LLC\\One Step From Eden}}" + - "{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/Ristaccia LLC/One Step From Eden/SaveData}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\960690\\remote\\SaveData}}" One Strike: pageId: 74195 steam: 718730 @@ -115921,8 +112798,8 @@ One Thousand Lies: steamSide: - 464810 templates: - - '{{Game data/config|Windows|{{p|game}}\renpy\config.py}}' - - '{{Game data/saves|Windows|{{p|appdata}}\RenPy\One Thousand Lies-1389803005\}}' + - "{{Game data/config|Windows|{{p|game}}\\renpy\\config.py}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\RenPy\\One Thousand Lies-1389803005\\}}" One Touch: pageId: 82093 steam: 795070 @@ -115933,12 +112810,12 @@ One Troll Army: pageId: 42978 steam: 438680 templates: - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\FlyAnvil\OneTrollArmy}}' + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\FlyAnvil\\OneTrollArmy}}" One Upon Light: pageId: 44485 steam: 394830 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Ice Cream Truck Games\One Upon Light\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Ice Cream Truck Games\\One Upon Light\\}}" One Watcher: pageId: 92143 steam: 727150 @@ -115949,13 +112826,13 @@ One Way Heroics: pageId: 18284 steam: 266210 templates: - - '{{Game data/config|Windows|{{p|game}}\Game.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\Save_EN\System.dat}}' -'One Way To Die: Steam Edition': + - "{{Game data/config|Windows|{{p|game}}\\Game.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\Save_EN\\System.dat}}" +"One Way To Die: Steam Edition": pageId: 46610 steam: 388490 templates: - - '{{Game data/saves|Linux|{{p|linuxhome}}/.coaguco/owtd/}}' + - "{{Game data/saves|Linux|{{p|linuxhome}}/.coaguco/owtd/}}" One Way to Exit: pageId: 44163 steam: 451830 @@ -115971,12 +112848,12 @@ One day in London: One minute of death: pageId: 124096 steam: 988330 -'One night, hot springs': +"One night, hot springs": pageId: 107584 steam: 917680 templates: - - '{{Game data/config|Windows|{{p|game}}\renpy\config.py}}' - - '{{Game data/saves|Windows|{{P|appdata}}\renpy\onsengame-1517489131\|{{p|game}}\game\saves\}}' + - "{{Game data/config|Windows|{{p|game}}\\renpy\\config.py}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\renpy\\onsengame-1517489131\\|{{p|game}}\\game\\saves\\}}" One of the Last: pageId: 52782 steam: 550360 @@ -115985,10 +112862,10 @@ One on One: One-Eyed Lee and the Dinner Party: pageId: 153812 steam: 1194160 -'One-Punch Man: A Hero Nobody Knows': +"One-Punch Man: A Hero Nobody Knows": pageId: 146753 renamedFrom: - - 'One Punch Man: A Hero Nobody Knows' + - "One Punch Man: A Hero Nobody Knows" steam: 991560 One-Way Ticket: pageId: 94035 @@ -116018,22 +112895,22 @@ OneShot: - 571210 - 620370 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Oneshot\}}' - - '{{Game data/config|Linux|{{p|xdgdatahome}}/Oneshot/}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Oneshot\}}' - - '{{Game data/saves|Linux|{{p|xdgdatahome}}/Oneshot/}}' -'Onechanbara Z2: Chaos': + - "{{Game data/config|Windows|{{p|appdata}}\\Oneshot\\}}" + - "{{Game data/config|Linux|{{p|xdgdatahome}}/Oneshot/}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Oneshot\\}}" + - "{{Game data/saves|Linux|{{p|xdgdatahome}}/Oneshot/}}" +"Onechanbara Z2: Chaos": pageId: 33087 steam: 446390 templates: - - '{{Game data/config|Windows|{{p|game}}\savedata\}}' - - '{{Game data/saves|Windows|{{p|game}}\savedata\}}' + - "{{Game data/config|Windows|{{p|game}}\\savedata\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\savedata\\}}" Onee Chanbara Origin: pageId: 164260 steam: 1232460 templates: - - '{{Game data/config|Windows|{{p|game}}\GameData\Config.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\savedata\}}' + - "{{Game data/config|Windows|{{p|game}}\\GameData\\Config.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\savedata\\}}" Oneirogen: pageId: 93223 steam: 735030 @@ -116055,14 +112932,12 @@ Ongaku: Oni: pageId: 4830 templates: - - >- - {{Game - data/config|Windows|{{P|game}}\persist.dat|{{P|game}}\key_config.txt|{{P|game}}\AE\persist.dat|{{P|game}}\AE\key_config.txt}} - - '{{Game data/config|Mac OS|persist.dat, key_config.txt}}' - - '{{Game data/config|OS X|./persist.dat, ./key_config.txt, ~/Library/Preferences/com.godgames.oni.plist}}' - - '{{Game data/saves|Windows|.\persist.dat}}' - - '{{Game data/saves|Mac OS|persist.dat}}' - - '{{Game data/saves|OS X|./persist.dat}}' + - "{{Game data/config|Windows|{{P|game}}\\persist.dat|{{P|game}}\\key_config.txt|{{P|game}}\\AE\\persist.dat|{{P|game}}\\AE\\key_config.txt}}" + - "{{Game data/config|Mac OS|persist.dat, key_config.txt}}" + - "{{Game data/config|OS X|./persist.dat, ./key_config.txt, ~/Library/Preferences/com.godgames.oni.plist}}" + - "{{Game data/saves|Windows|.\\persist.dat}}" + - "{{Game data/saves|Mac OS|persist.dat}}" + - "{{Game data/saves|OS X|./persist.dat}}" OniBushi VR: pageId: 91478 steam: 828410 @@ -116080,41 +112955,39 @@ Oniken: pageId: 34034 steam: 252010 templates: - - '{{Game data/config|Windows|{{P|appdata}}\Joymasher\Oniken\config.dat}}' - - '{{Game data/saves|Windows|{{P|appdata}}\Joymasher\Oniken\save.dat}}' + - "{{Game data/config|Windows|{{P|appdata}}\\Joymasher\\Oniken\\config.dat}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\Joymasher\\Oniken\\save.dat}}" Onikira - Demon Killer: pageId: 46695 steam: 310850 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\Duality\AppData\Onikira\userdata.dat}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\Duality\AppData\Onikira\savedata.dat}}' + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\Duality\\AppData\\Onikira\\userdata.dat}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\Duality\\AppData\\Onikira\\savedata.dat}}" Onimod Land: pageId: 75025 steam: 633660 -'Onimusha 3: Demon Siege': +"Onimusha 3: Demon Siege": pageId: 14550 steam: 6570 templates: - - '{{Game data/saves|Windows|{{p|game}}\save\}}' -'Onimusha: Warlords': + - "{{Game data/saves|Windows|{{p|game}}\\save\\}}" +"Onimusha: Warlords": pageId: 60150 templates: - - '{{Game data/config|Windows|{{P|game}}\setup.ini}}' - - '{{Game data/saves|Windows|{{P|game}}\SaveGames\save.dat}}' -'Onimusha: Warlords HD': + - "{{Game data/config|Windows|{{P|game}}\\setup.ini}}" + - "{{Game data/saves|Windows|{{P|game}}\\SaveGames\\save.dat}}" +"Onimusha: Warlords HD": pageId: 107414 steam: 761600 templates: - - '{{Game data/config|Steam|{{P|steam}}\userdata\{{p|uid}}\761600\remote\PCConfig.dat}}' - - '{{Game data/saves|Steam|{{P|steam}}\userdata\{{p|uid}}\761600\remote\Save.dat}}' + - "{{Game data/config|Steam|{{P|steam}}\\userdata\\{{p|uid}}\\761600\\remote\\PCConfig.dat}}" + - "{{Game data/saves|Steam|{{P|steam}}\\userdata\\{{p|uid}}\\761600\\remote\\Save.dat}}" Oninaki: pageId: 130690 steam: 987720 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\ONINAKI\Steam\{{p|uid}}\|{{p|hkcu}}\Software\Tokyo - RPG Factory\ONINAKI}} - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\ONINAKI\Steam\{{p|uid}}\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\ONINAKI\\Steam\\{{p|uid}}\\|{{p|hkcu}}\\Software\\Tokyo RPG Factory\\ONINAKI}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\ONINAKI\\Steam\\{{p|uid}}\\}}" Onion Force: pageId: 44351 steam: 434980 @@ -116125,8 +112998,8 @@ Onirim: pageId: 66571 steam: 651470 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Asmodee Digital\Onirim\}}' - - '{{Game data/saves|Windows|{{P|hkcu}}\Software\Asmodee Digital\Onirim\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Asmodee Digital\\Onirim\\}}" + - "{{Game data/saves|Windows|{{P|hkcu}}\\Software\\Asmodee Digital\\Onirim\\}}" Oniris Basket VR: pageId: 40257 steam: 516900 @@ -116149,13 +113022,13 @@ Only After: pageId: 135881 steam: 1060000 templates: - - '{{Game data/saves|Windows|{{P|localappdata}}\OnlyAfter\Saved\SaveGames}}' + - "{{Game data/saves|Windows|{{P|localappdata}}\\OnlyAfter\\Saved\\SaveGames}}" Only If: pageId: 49851 steam: 298260 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Creability\Only If}}' - - '{{Game data/config|Linux|{{P|linuxhome}}/.config/unity3d/Creability/Only If/prefs}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Creability\\Only If}}" + - "{{Game data/config|Linux|{{P|linuxhome}}/.config/unity3d/Creability/Only If/prefs}}" Only One Burn: pageId: 144564 steam: 1140880 @@ -116168,7 +113041,7 @@ Only Shadows Left Behind: Only You: pageId: 82361 steam: 801510 -'OnlyCans: Thirst Date': +"OnlyCans: Thirst Date": pageId: 179166 steam: 417360 Onmyoji: @@ -116183,7 +113056,7 @@ Onset: Onslaught VR: pageId: 89644 steam: 801390 -'Onslaught: Armoured Assault': +"Onslaught: Armoured Assault": pageId: 132466 steam: 1049910 Onward: @@ -116193,7 +113066,7 @@ Onyx: pageId: 61412 steam: 370620 templates: - - '{{Game data/saves|Windows|{{p|appdata}}\Onyx\*.*}}' + - "{{Game data/saves|Windows|{{p|appdata}}\\Onyx\\*.*}}" Onyx Clad: pageId: 158336 Oo-Topos: @@ -116202,8 +113075,8 @@ Ooblets: pageId: 63371 steam: 593150 templates: - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Glumberland\Ooblets\SaveData}}' -'Oodlescape: The Apocalypse': + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Glumberland\\Ooblets\\SaveData}}" +"Oodlescape: The Apocalypse": pageId: 58348 steam: 587560 Oogie: @@ -116214,19 +113087,19 @@ Ookibloks: Oolite: pageId: 168635 templates: - - '{{Game data/config|Windows|{{p|game}}\oolite.app\GNUstep\Defaults\.GNUstepDefaults}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Preferences/org.aegidian.oolite.plist}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/GNUstep/Defaults/.GNUstepDefaults}}' - - '{{Game data/saves|Windows|{{p|game}}\Oolite\oolite.app\oolite-saves\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Oolite/oolite-saves/}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/GNUstep/Applications/Oolite/oolite-saves/}}' + - "{{Game data/config|Windows|{{p|game}}\\oolite.app\\GNUstep\\Defaults\\.GNUstepDefaults}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Preferences/org.aegidian.oolite.plist}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/GNUstep/Defaults/.GNUstepDefaults}}" + - "{{Game data/saves|Windows|{{p|game}}\\Oolite\\oolite.app\\oolite-saves\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Oolite/oolite-saves/}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/GNUstep/Applications/Oolite/oolite-saves/}}" Oops!!! I Slept With Your Mom: pageId: 112368 steam: 930320 Oops!!! Puzzles!!!: pageId: 132055 steam: 978580 -'Oozi: Earth Adventure': +"Oozi: Earth Adventure": pageId: 40496 steam: 257990 Opai Puzzle: @@ -116247,16 +113120,16 @@ Open Day: - יום פתוח (Open Day) steam: 1029650 templates: - - '{{Game data/config|Windows|{{P|game}}\www\save}}' - - '{{Game data/saves|Windows|{{P|game}}\www\save}}' + - "{{Game data/config|Windows|{{P|game}}\\www\\save}}" + - "{{Game data/saves|Windows|{{P|game}}\\www\\save}}" Open Hexagon: pageId: 127104 steam: 1358090 templates: - - '{{Game data/config|Windows|{{p|game}}\config.json}}' - - '{{Game data/config|Linux|{{p|game}}/config.json}}' - - '{{Game data/saves|Windows|{{p|game}}\Profiles\}}' - - '{{Game data/saves|Linux|{{p|game}}/Profiles/}}' + - "{{Game data/config|Windows|{{p|game}}\\config.json}}" + - "{{Game data/config|Linux|{{p|game}}/config.json}}" + - "{{Game data/saves|Windows|{{p|game}}\\Profiles\\}}" + - "{{Game data/saves|Linux|{{p|game}}/Profiles/}}" Open Kart: pageId: 167596 Open Ocean: @@ -116268,15 +113141,15 @@ Open Roads: Open Season: pageId: 88503 templates: - - '{{Game data/config|Windows|{{p|game}}\System\OpenSeason.ini|{{p|game}}\System\User.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\System\*.sav}}' + - "{{Game data/config|Windows|{{p|game}}\\System\\OpenSeason.ini|{{p|game}}\\System\\User.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\System\\*.sav}}" Open Sewer: pageId: 122396 steam: 951240 Open Sorcery: pageId: 58003 steam: 585180 -'Open Sorcery: Sea++': +"Open Sorcery: Sea++": pageId: 76392 steam: 737050 Open Space 2D: @@ -116291,59 +113164,59 @@ Open Wheel Manager: pageId: 135279 steam: 1013960 templates: - - '{{Game data/saves|Windows|{{p|game}}\saves\*.ows}}' + - "{{Game data/saves|Windows|{{p|game}}\\saves\\*.ows}}" Open Wheel Manager 2: pageId: 187143 steam: 1757580 -'Open World Game: the Open World Game': +"Open World Game: the Open World Game": pageId: 153137 steam: 1144110 templates: - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Morning Person Games\OWGTOWG\*.dat}}' + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Morning Person Games\\OWGTOWG\\*.dat}}" Open the Door: pageId: 93158 steam: 849000 OpenArena: pageId: 19961 templates: - - '{{Game data/config|Windows|{{p|appdata}}\OpenArena\baseoa}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.openarena/baseoa}}' + - "{{Game data/config|Windows|{{p|appdata}}\\OpenArena\\baseoa}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.openarena/baseoa}}" OpenClonk: pageId: 175516 OpenLoco: pageId: 180459 templates: - - '{{Game data/config|Windows|{{p|game}}\*.cfg|{{p|game}}\openloco.yml}}' - - '{{Game data/saves|Windows|{{p|game}}\save}}' + - "{{Game data/config|Windows|{{p|game}}\\*.cfg|{{p|game}}\\openloco.yml}}" + - "{{Game data/saves|Windows|{{p|game}}\\save}}" OpenRA: pageId: 28776 templates: - - '{{Game data/config|Windows|{{p|APPDATA}}\OpenRA\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/OpenRA/}}' - - '{{Game data/config|Linux|{{p|xdgconfighome}}/openra}}' - - '{{Game data/saves|Windows|{{p|APPDATA}}\OpenRA\Saves}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/OpenRA/Saves}}' - - '{{Game data/saves|Linux|{{p|xdgconfighome}}/openra/Saves}}' + - "{{Game data/config|Windows|{{p|APPDATA}}\\OpenRA\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/OpenRA/}}" + - "{{Game data/config|Linux|{{p|xdgconfighome}}/openra}}" + - "{{Game data/saves|Windows|{{p|APPDATA}}\\OpenRA\\Saves}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/OpenRA/Saves}}" + - "{{Game data/saves|Linux|{{p|xdgconfighome}}/openra/Saves}}" OpenRCT2: pageId: 35535 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\OpenRCT2\config.ini}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/OpenRCT2/}}' - - '{{Game data/config|Linux|{{P|xdgconfighome}}/OpenRCT2/}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\OpenRCT2\save\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/OpenRCT2/}}' - - '{{Game data/saves|Linux|{{P|xdgconfighome}}/OpenRCT2/}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\OpenRCT2\\config.ini}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/OpenRCT2/}}" + - "{{Game data/config|Linux|{{P|xdgconfighome}}/OpenRCT2/}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\OpenRCT2\\save\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/OpenRCT2/}}" + - "{{Game data/saves|Linux|{{P|xdgconfighome}}/OpenRCT2/}}" OpenTTD: gog: 1293297882 pageId: 1377 steam: 1536610 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\OpenTTD\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Documents/OpenTTD/}}' - - '{{Game data/config|Linux|{{p|xdgconfighome}}/openttd}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\OpenTTD\save\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Documents/OpenTTD/}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/openttd}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\OpenTTD\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Documents/OpenTTD/}}" + - "{{Game data/config|Linux|{{p|xdgconfighome}}/openttd}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\OpenTTD\\save\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Documents/OpenTTD/}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/openttd}}" Opencast Mining: pageId: 126389 steam: 987630 @@ -116354,12 +113227,12 @@ Opera Fatal: pageId: 157753 Operation: pageId: 16830 -'Operation Abyss: New Tokyo Legacy': +"Operation Abyss: New Tokyo Legacy": pageId: 53586 steam: 541450 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/saves|Windows|{{p|game}}\SAVEDATA\}}' + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\SAVEDATA\\}}" Operation Antiterror: pageId: 77199 steam: 760210 @@ -116369,7 +113242,7 @@ Operation Apex: Operation Armstrong: pageId: 151113 steam: 1145490 -'Operation Babel: New Tokyo Legacy': +"Operation Babel: New Tokyo Legacy": pageId: 53588 steam: 548810 Operation Biotech: @@ -116378,7 +113251,7 @@ Operation Biotech: Operation Blockade: pageId: 128903 templates: - - '{{Game data/config|Windows|{{p|HKCU}}\Software\Infogrames\Operation Blockade}}' + - "{{Game data/config|Windows|{{p|HKCU}}\\Software\\Infogrames\\Operation Blockade}}" Operation Body Count: gog: 1718217391 pageId: 26683 @@ -116392,24 +113265,24 @@ Operation Caucasus: Operation Chromite 1950 VR: pageId: 82278 steam: 695490 -'Operation Deep Magic: Cryptanalysis': +"Operation Deep Magic: Cryptanalysis": pageId: 156254 steam: 1218030 Operation Desert Road: pageId: 73477 steam: 727320 -'Operation Flashpoint: Dragon Rising': +"Operation Flashpoint: Dragon Rising": pageId: 11845 steam: 12830 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\OFDR\hardwaresettings\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\OFDR\Profiles\}}' -'Operation Flashpoint: Red River': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\OFDR\\hardwaresettings\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\OFDR\\Profiles\\}}" +"Operation Flashpoint: Red River": pageId: 11846 steam: 44340 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\OFRR\hardwaresettings\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\OFRR\Profiles\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\OFRR\\hardwaresettings\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\OFRR\\Profiles\\}}" Operation Hardcore: pageId: 44341 steam: 395550 @@ -116438,89 +113311,81 @@ Operation Thunderstorm: pageId: 90476 steam: 837590 templates: - - >- - {{Game data/config|Windows|{{p|public}}\Documents\City Interactive\Operation - Thunderstorm\settings.cfg|{{p|public}}\Documents\City Interactive\Operation Thunderstorm\Profiles\Profile000.gdb}} - - >- - {{Game data/saves|Windows|{{p|public}}\Documents\City Interactive\Operation - Thunderstorm\Save\Profile000\SinglePlayer}} + - "{{Game data/config|Windows|{{p|public}}\\Documents\\City Interactive\\Operation Thunderstorm\\settings.cfg|{{p|public}}\\Documents\\City Interactive\\Operation Thunderstorm\\Profiles\\Profile000.gdb}}" + - "{{Game data/saves|Windows|{{p|public}}\\Documents\\City Interactive\\Operation Thunderstorm\\Save\\Profile000\\SinglePlayer}}" Operation Valderon: pageId: 144919 steam: 1028900 Operation Warcade VR: pageId: 62803 steam: 639270 -'Operation: Black Mesa': +"Operation: Black Mesa": pageId: 175079 steam: 311810 -'Operation: Cheek Clapper': +"Operation: Cheek Clapper": pageId: 149642 steam: 1152670 -'Operation: Global Shield': +"Operation: Global Shield": pageId: 38655 steam: 407740 -'Operation: Harsh Doorstop': +"Operation: Harsh Doorstop": pageId: 168992 steam: 736590 templates: - - '{{Game data/config|Windows|C:\Users\Eddy\AppData\Local\HarshDoorstop\Saved\Config\WindowsNoEditor}}' -'Operation: Inner Space': + - "{{Game data/config|Windows|C:\\Users\\Eddy\\AppData\\Local\\HarshDoorstop\\Saved\\Config\\WindowsNoEditor}}" +"Operation: Inner Space": pageId: 183828 -'Operation: Matriarchy': +"Operation: Matriarchy": pageId: 44770 steam: 435420 templates: - - '{{Game data/config|Windows|{{p|game}}\Data\cfg\config.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\Saves\}}' -'Operation: New Earth': + - "{{Game data/config|Windows|{{p|game}}\\Data\\cfg\\config.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\Saves\\}}" +"Operation: New Earth": pageId: 53481 steam: 528740 -'Operation: Pinkeye': +"Operation: Pinkeye": pageId: 184443 steam: 1619820 templates: - - '{{Game data/saves|Windows|{{p|appdata}}\Operation- Pinkeye\*.bin}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Operation- Pinkeye/*.bin}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.local/share/Operation- Pinkeye/*.bin}}' -'Operation: Polarity Hook': + - "{{Game data/saves|Windows|{{p|appdata}}\\Operation- Pinkeye\\*.bin}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Operation- Pinkeye/*.bin}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.local/share/Operation- Pinkeye/*.bin}}" +"Operation: Polarity Hook": pageId: 76020 steam: 689130 -'Operation: Tango': +"Operation: Tango": pageId: 167450 steam: 1335790 templates: - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Clever-Plays\Operation Tango}}' -'Operation: Valor': + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Clever-Plays\\Operation Tango}}" +"Operation: Valor": pageId: 145431 steam: 1095480 Operator: pageId: 151830 templates: - - >- - {{Game data/config|Windows|{{Path|userprofile}}\AppData\LocalLow\Greenfly - Studios\Operator|{{P|hkcu}}\SOFTWARE\Greenfly Studios\Operator}} + - "{{Game data/config|Windows|{{Path|userprofile}}\\AppData\\LocalLow\\Greenfly Studios\\Operator|{{P|hkcu}}\\SOFTWARE\\Greenfly Studios\\Operator}}" Operator 41: pageId: 147807 Operator Overload: pageId: 39259 steam: 499140 -'Operencia: The Stolen Sun': +"Operencia: The Stolen Sun": gog: 1938714864 pageId: 126267 steam: 985950 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Operencia\Saved\Config\WindowsNoEditor\}}' - - >- - {{Game data/config|Microsoft - Store|{{P|localappdata}}\Packages\ZenStudios.OperenciaTheStolenSun_sqz2yzgfp6bz4\LocalState\Operencia\Saved\Config\UWP}} - - '{{Game data/saves|Windows|{{P|localappdata}}\Operencia\Saved\SaveGames}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\Operencia\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/config|Microsoft Store|{{P|localappdata}}\\Packages\\ZenStudios.OperenciaTheStolenSun_sqz2yzgfp6bz4\\LocalState\\Operencia\\Saved\\Config\\UWP}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Operencia\\Saved\\SaveGames}}" Ophidia: pageId: 62560 steam: 625040 Ophidian: pageId: 68689 steam: 697710 -'Opie: The Defender': +"Opie: The Defender": pageId: 130549 steam: 808960 Oppai Puzzle: @@ -116549,20 +113414,16 @@ Opus Magnum: pageId: 74119 steam: 558990 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Opus - Magnum\config.cfg|{{p|userprofile\Documents}}\My Games\Opus Magnum\{{p|uid}}\config.cfg}} - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Opus Magnum/{{p|uid}}/config.cfg}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.local/share/Opus Magnum/config.cfg}}' - - >- - {{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Opus Magnum\|{{p|userprofile\Documents}}\My - Games\Opus Magnum\{{p|uid}}\}} - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Opus Magnum/{{p|uid}}/}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.local/share/Opus Magnum}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Opus Magnum\\config.cfg|{{p|userprofile\\Documents}}\\My Games\\Opus Magnum\\{{p|uid}}\\config.cfg}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Opus Magnum/{{p|uid}}/config.cfg}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.local/share/Opus Magnum/config.cfg}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Opus Magnum\\|{{p|userprofile\\Documents}}\\My Games\\Opus Magnum\\{{p|uid}}\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Opus Magnum/{{p|uid}}/}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.local/share/Opus Magnum}}" Opus Mortem: pageId: 98890 steam: 887750 -'Opus: Echo of Starsong': +"Opus: Echo of Starsong": gog: 1893734117 gogSide: - 1154381157 @@ -116575,29 +113436,29 @@ Opus Mortem: - 1727830 - 1792980 templates: - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\SIGONO\OPUS_ Echo of Starsong\Save}}' -'Opus: Rocket of Whispers': + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\SIGONO\\OPUS_ Echo of Starsong\\Save}}" +"Opus: Rocket of Whispers": gog: 1833507160 pageId: 80623 renamedFrom: - - 'OPUS: Rocket of Whispers' + - "OPUS: Rocket of Whispers" steam: 742250 -'Opus: The Day We Found Earth': +"Opus: The Day We Found Earth": gog: 1578056130 pageId: 38339 renamedFrom: - - 'OPUS: The Day We Found Earth' + - "OPUS: The Day We Found Earth" steam: 457680 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\SIGONO\OPUS}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\SIGONO\OPUS}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\SIGONO\\OPUS}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\SIGONO\\OPUS}}" Oracle: pageId: 58344 steam: 576310 Oracle of Forgotten Testament: pageId: 82864 steam: 786510 -'Oracle: Threads of Fate': +"Oracle: Threads of Fate": pageId: 87320 steam: 802960 Orake: @@ -116618,7 +113479,7 @@ Orangeblood: Orb Flo: pageId: 72069 steam: 674360 -'Orb Labs, Inc.': +"Orb Labs, Inc.": pageId: 94455 steam: 843010 Orb Rivals: @@ -116646,7 +113507,7 @@ Orbit.industries: gog: 1160683515 pageId: 176851 steam: 1668130 -'Orbit: Satellite Defense': +"Orbit: Satellite Defense": pageId: 81468 steam: 486320 Orbital: @@ -116657,7 +113518,7 @@ Orbital Bullet: pageId: 151519 steam: 1167680 templates: - - '{{Game data/saves|Windows|{{P|appdata}}\LocalLow\SmokeStab\OrbitalBullet}}' + - "{{Game data/saves|Windows|{{P|appdata}}\\LocalLow\\SmokeStab\\OrbitalBullet}}" Orbital Gear: pageId: 38565 steam: 298520 @@ -116670,7 +113531,7 @@ Orbital Racer: Orbital Shipyards: pageId: 150904 steam: 1152660 -'Orbital Strike: Arena': +"Orbital Strike: Arena": pageId: 42408 steam: 494370 Orbital X: @@ -116698,8 +113559,8 @@ Orborun: pageId: 26983 steam: 308580 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\SOFTWARE\Tiny Lab Productions\Orborun}}' - - '{{Game data/saves|Windows|{{p|hkcu}}\SOFTWARE\Tiny Lab Productions\Orborun}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\Tiny Lab Productions\\Orborun}}" + - "{{Game data/saves|Windows|{{p|hkcu}}\\SOFTWARE\\Tiny Lab Productions\\Orborun}}" Orbos: pageId: 89216 steam: 801910 @@ -116713,14 +113574,14 @@ Orbt XL: pageId: 61146 steam: 615610 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Nickervision Studios\orbt xl\*.orbtxl}}' + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Nickervision Studios\\orbt xl\\*.orbtxl}}" OrbusVR: pageId: 77277 steam: 746930 Orc Assault: pageId: 43115 steam: 371360 -'Orc Attack: Flatulent Rebellion': +"Orc Attack: Flatulent Rebellion": pageId: 50272 steam: 268520 Orc Colony: @@ -116760,16 +113621,14 @@ Orcs Must Die!: pageId: 1717 steam: 102600 templates: - - >- - {{Game data/config|Windows|{{p|game}}\Data\startup\user.cfg|{{p|userprofile\Documents}}\Orcs Must - Die\VideoSettings.xml}} - - '{{Game data/saves|Windows|{{p|game}}\Data\startup}}' + - "{{Game data/config|Windows|{{p|game}}\\Data\\startup\\user.cfg|{{p|userprofile\\Documents}}\\Orcs Must Die\\VideoSettings.xml}}" + - "{{Game data/saves|Windows|{{p|game}}\\Data\\startup}}" Orcs Must Die! 2: pageId: 3339 steam: 201790 templates: - - '{{Game data/config|Windows|{{p|game}}\data\startup\user.cfg}}' - - '{{Game data/saves|Windows|{{p|steam}}\userdata\{{p|uid}}\201790\remote}}' + - "{{Game data/config|Windows|{{p|game}}\\data\\startup\\user.cfg}}" + - "{{Game data/saves|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\201790\\remote}}" Orcs Must Die! 3: pageId: 169390 steam: 1522820 @@ -116778,17 +113637,13 @@ Orcs Must Die! 3: - 1781510 - 1936590 templates: - - >- - {{Game data/config|Windows|{{Path|localappdata}}\Robot Entertainment\Orcs Must Die! - 3\Saved\Config\WindowsNoEditor}} - - '{{Game data/saves|Windows|{{Path|localappdata}}\Robot Entertainment\Orcs Must Die! 3\Saved\SaveGames}}' + - "{{Game data/config|Windows|{{Path|localappdata}}\\Robot Entertainment\\Orcs Must Die! 3\\Saved\\Config\\WindowsNoEditor}}" + - "{{Game data/saves|Windows|{{Path|localappdata}}\\Robot Entertainment\\Orcs Must Die! 3\\Saved\\SaveGames}}" Orcs Must Die! Unchained: pageId: 43907 steam: 427270 templates: - - >- - {{Game data/config|Windows|{{P|userprofile\Documents}}\My Games\Orcs Must Die - Unchained\Dashboard\PlayerConfig.xml}} + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\My Games\\Orcs Must Die Unchained\\Dashboard\\PlayerConfig.xml}}" Orcz Evolve VR: pageId: 78420 steam: 765570 @@ -116803,7 +113658,7 @@ Ordeal of Princess Eris: steam: 1015800 Order & Chaos Online: pageId: 171876 -'Order No. 227: Not one step back!': +"Order No. 227: Not one step back!": pageId: 63355 steam: 647820 Order Of The Gatekeepers: @@ -116812,39 +113667,39 @@ Order Of The Gatekeepers: Order Up VR (2019): pageId: 137438 steam: 1072170 -'Order of Ataxia: Initial Effects': +"Order of Ataxia: Initial Effects": pageId: 68094 steam: 386960 -'Order of Battle: World War II': +"Order of Battle: World War II": gog: 1744082009 pageId: 48054 steam: 312450 templates: - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\My Games\Order of Battle - WW2\SaveGames\}}' + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\My Games\\Order of Battle - WW2\\SaveGames\\}}" Order of War: pageId: 23117 steam: 34600 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\order of war\settings}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\order of war\save}}' -'Order of War: Challenge': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\order of war\\settings}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\order of war\\save}}" +"Order of War: Challenge": pageId: 160883 steam: 34670 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\ORDER OF WAR - CHALLENGE\settings\}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\ORDER OF WAR - CHALLENGE\save\}}' + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\ORDER OF WAR - CHALLENGE\\settings\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\ORDER OF WAR - CHALLENGE\\save\\}}" Order of the Assassin: pageId: 94515 steam: 851690 -'Order of the Thorne: The King''s Challenge': +"Order of the Thorne: The King's Challenge": gog: 1444830704 pageId: 34274 steam: 425600 templates: - - '{{Game data/config|Windows|{{p|game}}\acsetup.cfg}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\Saved Games\Order of the Thorne - The King''s Challenge\}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/Order of the Thorne - The King''s Challenge/}}' -'Order: VR': + - "{{Game data/config|Windows|{{p|game}}\\acsetup.cfg}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Saved Games\\Order of the Thorne - The King's Challenge\\}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/Order of the Thorne - The King's Challenge/}}" +"Order: VR": pageId: 66953 steam: 681690 Orders of the Ruler: @@ -116858,7 +113713,7 @@ OrdinaryFamily: Ordinem: pageId: 126092 steam: 997900 -'Ordo Et Chao: New World': +"Ordo Et Chao: New World": pageId: 126027 steam: 1002750 Ore: @@ -116873,14 +113728,14 @@ Organ Biker: Organ Quarter: pageId: 59123 steam: 605830 -'Organ Trail: Director''s Cut': +"Organ Trail: Director's Cut": pageId: 5708 steam: 233740 templates: - - '{{Game data/config|Windows|{{p|steam}}\userdata\{{p|uid}}\233740\remote\organtrailcloud.txt}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/TheMenWhoWearManyHats/Organ Trail/}}' - - '{{Game data/saves|Windows|{{p|steam}}\userdata\{{p|uid}}\233740\remote\organtrailcloud.txt}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/TheMenWhoWearManyHats/Organ Trail/}}' + - "{{Game data/config|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\233740\\remote\\organtrailcloud.txt}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/TheMenWhoWearManyHats/Organ Trail/}}" + - "{{Game data/saves|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\233740\\remote\\organtrailcloud.txt}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/TheMenWhoWearManyHats/Organ Trail/}}" Organic Panic: pageId: 50282 steam: 282740 @@ -116894,42 +113749,31 @@ Ori and the Blind Forest: pageId: 22815 steam: 261570 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Ori and the Blind Forest\}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\Ori and the Blind Forest\}}' -'Ori and the Blind Forest: Definitive Edition': + - "{{Game data/config|Windows|{{P|localappdata}}\\Ori and the Blind Forest\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Ori and the Blind Forest\\}}" +"Ori and the Blind Forest: Definitive Edition": gog: 1384944984 pageId: 32520 steam: 387290 templates: - - >- - {{Game data/config|Windows|{{p|localappdata}}\Ori and the Blind Forest DE\|{{p|hkcu}}\Software\Microsoft - Studios\Ori And The Blind Forest: Definitive Edition\}} - - >- - {{Game data/config|Microsoft - Store|{{p|localappdata}}\Packages\Microsoft.OriandtheBlindForestDefinitiveEdition_8wekyb3d8bbwe\Settings}} - - '{{Game data/saves|Windows|{{p|localappdata}}\Ori and the Blind Forest DE\}}' - - >- - {{Game data/saves|Microsoft - Store|{{p|localappdata}}\Packages\Microsoft.OriandtheBlindForestDefinitiveEdition_8wekyb3d8bbwe\SystemAppData\wgs\}} + - "{{Game data/config|Windows|{{p|localappdata}}\\Ori and the Blind Forest DE\\|{{p|hkcu}}\\Software\\Microsoft Studios\\Ori And The Blind Forest: Definitive Edition\\}}" + - "{{Game data/config|Microsoft Store|{{p|localappdata}}\\Packages\\Microsoft.OriandtheBlindForestDefinitiveEdition_8wekyb3d8bbwe\\Settings}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Ori and the Blind Forest DE\\}}" + - "{{Game data/saves|Microsoft Store|{{p|localappdata}}\\Packages\\Microsoft.OriandtheBlindForestDefinitiveEdition_8wekyb3d8bbwe\\SystemAppData\\wgs\\}}" Ori and the Will of the Wisps: pageId: 137485 steam: 1057090 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Ori and the Will of The Wisps\}}' - - >- - {{Game data/config|Microsoft - Store|{{P|localappdata}}\Packages\Microsoft.Patagonia_8wekyb3d8bbwe\LocalCache\Local\Ori and the Will of The - Wisps}} - - '{{Game data/saves|Windows|{{P|localappdata}}\Ori and the Will of The Wisps\}}' - - >- - {{Game data/saves|Microsoft - Store|{{P|localappdata}}\Packages\Microsoft.Patagonia_8wekyb3d8bbwe\SystemAppData\wgs\{{p|uid}}\}} + - "{{Game data/config|Windows|{{P|localappdata}}\\Ori and the Will of The Wisps\\}}" + - "{{Game data/config|Microsoft Store|{{P|localappdata}}\\Packages\\Microsoft.Patagonia_8wekyb3d8bbwe\\LocalCache\\Local\\Ori and the Will of The Wisps}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Ori and the Will of The Wisps\\}}" + - "{{Game data/saves|Microsoft Store|{{P|localappdata}}\\Packages\\Microsoft.Patagonia_8wekyb3d8bbwe\\SystemAppData\\wgs\\{{p|uid}}\\}}" Oriental Empires: gog: 1225157693 pageId: 39037 steam: 357310 templates: - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\My Games\Oriental Empires\Saved Games\}}' + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\My Games\\Oriental Empires\\Saved Games\\}}" Origami Flight: pageId: 124490 steam: 911950 @@ -116948,7 +113792,7 @@ Origin of Destiny: Original Journey: pageId: 64620 steam: 639470 -'Original Walker: Prologue': +"Original Walker: Prologue": pageId: 150383 steam: 1167130 Original War: @@ -116956,21 +113800,21 @@ Original War: pageId: 15733 steam: 235320 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/saves|Windows|{{p|game}}\UserProfiles}}' + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\UserProfiles}}" Orion: pageId: 34591 steam: 407840 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Orion\Saved\Config\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Orion\\Saved\\Config\\}}" Orion (2018): pageId: 137265 steam: 811190 Orion Burger: pageId: 133957 templates: - - '{{Game data/config|DOS|{{p|game}}\BURGER.CFG}}' - - '{{Game data/saves|DOS|{{p|game}}\BURG0**.SAV|{{p|game}}\SAVES.DIR}}' + - "{{Game data/config|DOS|{{p|game}}\\BURGER.CFG}}" + - "{{Game data/saves|DOS|{{p|game}}\\BURG0**.SAV|{{p|game}}\\SAVES.DIR}}" Orion Sandbox Enhanced: pageId: 112344 steam: 929670 @@ -116980,16 +113824,14 @@ Orion Trail: Orion13: pageId: 150099 steam: 1128210 -'Orion: A Sci-Fi Visual Novel': +"Orion: A Sci-Fi Visual Novel": pageId: 46260 steam: 381010 -'Orion: Prelude': +"Orion: Prelude": pageId: 6149 steam: 104900 templates: - - |- - {{Game data/config|Windows|{{p|game}}\Engine\Config
- {{p|game}}\UDKGame\Config}} + - "{{Game data/config|Windows|{{p|game}}\\Engine\\Config
\n{{p|game}}\\UDKGame\\Config}}" Orix!: pageId: 94790 steam: 863980 @@ -117012,13 +113854,13 @@ Orphan Age: Orphan of the Petal: pageId: 126140 steam: 975050 -Orphan's Treasure: +"Orphan's Treasure": pageId: 69204 steam: 691060 Orpheus: pageId: 121231 steam: 959960 -Orpheus's Dream: +"Orpheus's Dream": pageId: 139019 steam: 1097000 Ortharion project: @@ -117034,44 +113876,44 @@ Orwell: gog: 2076059543 gogSide: - 1150654907 - - 1973571824 - 1467585086 + - 1973571824 pageId: 39241 steam: 491950 steamSide: - 543080 - 548850 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\OsmoticStudios\Orwell\}}' - - '{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/OsmoticStudios/Orwell/prefs}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Orwell\profile*.osg}}' - - '{{Game data/saves|Steam|{{P|steam}}\userdata\{{P|uid}}\491950\remote\profile*.osg}}' - - '{{Game data/saves|Linux|{{P|linuxhome}}/My Games/Orwell/profile*.osg}}' -Orwell's Animal Farm: + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\OsmoticStudios\\Orwell\\}}" + - "{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/OsmoticStudios/Orwell/prefs}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Orwell\\profile*.osg}}" + - "{{Game data/saves|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\491950\\remote\\profile*.osg}}" + - "{{Game data/saves|Linux|{{P|linuxhome}}/My Games/Orwell/profile*.osg}}" +"Orwell's Animal Farm": gog: 2133998459 pageId: 165640 steam: 1398100 -'Orwell: Ignorance is Strength': +"Orwell: Ignorance is Strength": gog: 1089914798 pageId: 67986 steam: 633060 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\SOFTWARE\OsmoticStudios\Orwell Ignorance\}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\My Games\Orwell\profile*.isg}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\SOFTWARE\\OsmoticStudios\\Orwell Ignorance\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\My Games\\Orwell\\profile*.isg}}" Oscar Mike VR: pageId: 54289 steam: 547250 -'Oscillatron: Alien Frequency': +"Oscillatron: Alien Frequency": pageId: 91851 steam: 823730 -'Oscura: Lost Light': +"Oscura: Lost Light": pageId: 48609 steam: 320520 -'Osiris: New Dawn': +"Osiris: New Dawn": pageId: 40114 steam: 402710 templates: - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Fenix Fire Entertainment\OsirisNewDawn\SaveData\}}' + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Fenix Fire Entertainment\\OsirisNewDawn\\SaveData\\}}" Osmorrow: pageId: 78416 steam: 758220 @@ -117079,11 +113921,11 @@ Osmos: pageId: 257 steam: 29180 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Osmos\Config.cfg}}' - - '{{Game data/config|Linux|{{P|linuxhome}}/.Osmos/Config.cfg}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Osmos\}}' - - '{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/Osmos/}}' - - '{{Game data/saves|Linux|{{P|linuxhome}}/.Osmos/}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Osmos\\Config.cfg}}" + - "{{Game data/config|Linux|{{P|linuxhome}}/.Osmos/Config.cfg}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Osmos\\}}" + - "{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/Osmos/}}" + - "{{Game data/saves|Linux|{{P|linuxhome}}/.Osmos/}}" Osozaki 遅咲き Late Blooming - First: pageId: 33573 steam: 471260 @@ -117091,8 +113933,8 @@ Ossuary: pageId: 47757 steam: 363500 templates: - - '{{Game data/saves|Windows|{{p|appdata}}\Ossuary}}' -'Ostalgie: The Berlin Wall': + - "{{Game data/saves|Windows|{{p|appdata}}\\Ossuary}}" +"Ostalgie: The Berlin Wall": pageId: 89537 steam: 774091 Osternfield: @@ -117105,8 +113947,8 @@ Ostranauts: pageId: 128692 steam: 1022980 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\Blue Bottle Games\Ostranauts\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Blue Bottle Games\Ostranauts\}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Blue Bottle Games\\Ostranauts\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Blue Bottle Games\\Ostranauts\\}}" Ostrich Island: pageId: 48995 steam: 337270 @@ -117114,7 +113956,7 @@ Ostrich Runner: pageId: 184904 steam: 1481810 templates: - - '{{Game data/saves|Windows|{{p|game}}\Data\Saves}}' + - "{{Game data/saves|Windows|{{p|game}}\\Data\\Saves}}" Ostriv: gog: 1686311938 pageId: 145019 @@ -117125,9 +113967,9 @@ Ostrofa: Osu!: pageId: 18640 templates: - - '{{Game data/config|Windows|{{p|game}}\osu!.{{p|uid}}.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\scores.db}}' -Oswald's Adventure: + - "{{Game data/config|Windows|{{p|game}}\\osu!.{{p|uid}}.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\scores.db}}" +"Oswald's Adventure": pageId: 67625 steam: 688680 Osy Osmosis: @@ -117136,24 +113978,24 @@ Osy Osmosis: Otaku Puzzle: pageId: 140850 steam: 1102990 -Otaku's Adventure: +"Otaku's Adventure": pageId: 136453 steam: 937170 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Spacelight Studio\Otaku''s Adventure\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Spacelight\Otaku''s Adventure\}}' -Otaku's Challenge: + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Spacelight Studio\\Otaku's Adventure\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Spacelight\\Otaku's Adventure\\}}" +"Otaku's Challenge": pageId: 149602 steam: 1148900 -Otaku's Fantasy: +"Otaku's Fantasy": pageId: 70523 steam: 712050 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\DefaultCompany\Otaku''s Fantasy\Utage\SaveMyProject}}' -Otaku's Fantasy 2: + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\DefaultCompany\\Otaku's Fantasy\\Utage\\SaveMyProject}}" +"Otaku's Fantasy 2": pageId: 81667 steam: 788130 -Otem's Defiance: +"Otem's Defiance": pageId: 43392 steam: 434490 Othello: @@ -117176,27 +114018,27 @@ Othercide: pageId: 113228 steam: 798490 templates: - - '{{Game data/config|Windows|{{p|HKCU}}\SOFTWARE\LightbulbCrew\Othercide}}' - - '{{Game data/saves|Windows|{{p|game}}\_saves_}}' + - "{{Game data/config|Windows|{{p|HKCU}}\\SOFTWARE\\LightbulbCrew\\Othercide}}" + - "{{Game data/saves|Windows|{{p|game}}\\_saves_}}" Otherland: pageId: 39962 steam: 376310 -'Otherworld: Omens of Summer': +"Otherworld: Omens of Summer": pageId: 57307 renamedFrom: - - 'Otherworld: Omens of Summer Collector''s Edition' + - "Otherworld: Omens of Summer Collector's Edition" steam: 586700 -'Otherworld: Shades of Fall': +"Otherworld: Shades of Fall": pageId: 68839 renamedFrom: - - 'Otherworld: Shades of Fall Collector''s Edition' + - "Otherworld: Shades of Fall Collector's Edition" steam: 696010 -'Otherworld: Spring of Shadows': +"Otherworld: Spring of Shadows": pageId: 42698 renamedFrom: - - 'Otherworld: Spring of Shadows Collector''s Edition' + - "Otherworld: Spring of Shadows Collector's Edition" steam: 466030 -Otiiz's adventure 2: +"Otiiz's adventure 2": pageId: 136666 steam: 1079870 Otokomizu~漢水~: @@ -117223,7 +114065,7 @@ Otto and the Ancient Worlds: Otto the Odd Ostrich: pageId: 71859 steam: 670210 -'Ottoman Empire: Spectacular Millennium': +"Ottoman Empire: Spectacular Millennium": pageId: 87581 steam: 794480 Ouction: @@ -117239,7 +114081,7 @@ Our Darker Purpose: pageId: 50707 steam: 262790 templates: - - '{{Game data/saves|Windows|{{p|localappdata}}\OurDarkerPurpose}}' + - "{{Game data/saves|Windows|{{p|localappdata}}\\OurDarkerPurpose}}" Our Darkest Night: pageId: 55035 steam: 547920 @@ -117257,19 +114099,19 @@ Our Feelings: Our Hero! Hyper Sword: pageId: 94138 steam: 847560 -'Our Life: Beginnings & Always': +"Our Life: Beginnings & Always": gog: 1337063899 pageId: 145471 steam: 1129190 templates: - - '{{Game data/saves|Windows|{{P|appdata}}\RenPy\OurLife-1506526796}}' + - "{{Game data/saves|Windows|{{P|appdata}}\\RenPy\\OurLife-1506526796}}" Our Love Will Grow: pageId: 34723 steam: 423770 Our Lovely Escape: pageId: 122666 steam: 970400 -Our Nation's Miner: +"Our Nation's Miner": pageId: 45166 steam: 360040 Our Secret Below: @@ -117281,7 +114123,7 @@ Our Wonderful World: Our Wonderland: pageId: 181169 templates: - - '{{Game data/saves|Windows|{{P|appdata}}\RenPy\OurWonderland-1546686177|{{P|game}}\game\saves}}' + - "{{Game data/saves|Windows|{{P|appdata}}\\RenPy\\OurWonderland-1546686177|{{P|game}}\\game\\saves}}" Our World Is Ended: pageId: 122888 steam: 940650 @@ -117295,15 +114137,15 @@ Oure: pageId: 75530 steam: 694950 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Oure\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Oure\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Oure\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Oure\\Saved\\SaveGames\\}}" Ouroboros: pageId: 90348 steam: 822830 templates: - - '{{Game data/config|Windows|{{p|game}}\save\config.rpgsave}}' - - '{{Game data/saves|Windows|{{p|game}}\save\file*.rpgsave | {{p|game}}\save\global.rpgsave}}' -'Ouroboros: Prelude': + - "{{Game data/config|Windows|{{p|game}}\\save\\config.rpgsave}}" + - "{{Game data/saves|Windows|{{p|game}}\\save\\file*.rpgsave | {{p|game}}\\save\\global.rpgsave}}" +"Ouroboros: Prelude": pageId: 72670 steam: 593730 Out Run: @@ -117312,19 +114154,19 @@ Out There Somewhere: pageId: 25863 steam: 263980 templates: - - '{{Game data/config|Windows|{{p|appdata}}\ots\Local Store\}}' - - '{{Game data/config|Steam|{{p|steam}}\userdata\{{p|uid}}\263980\remote\}}' - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\263980\remote\}}' -'Out There: Oceans of Time': + - "{{Game data/config|Windows|{{p|appdata}}\\ots\\Local Store\\}}" + - "{{Game data/config|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\263980\\remote\\}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\263980\\remote\\}}" +"Out There: Oceans of Time": gog: 2031646835 pageId: 145497 steam: 1145290 -'Out There: Ω Edition': +"Out There: Ω Edition": gog: 1958474562 pageId: 48294 steam: 334420 templates: - - '{{Game data/saves|Windows|{{p|localappdata}}\MiClos Studio\OutThereOmegaEdition\outthereomega.sav}}' + - "{{Game data/saves|Windows|{{p|localappdata}}\\MiClos Studio\\OutThereOmegaEdition\\outthereomega.sav}}" Out Zone: gog: 1865494483 pageId: 182752 @@ -117335,7 +114177,7 @@ Out for Blood: Out of Ammo: pageId: 37469 steam: 451840 -'Out of Ammo: Death Drive': +"Out of Ammo: Death Drive": pageId: 68080 steam: 569630 Out of Coverage: @@ -117346,11 +114188,11 @@ Out of Line: pageId: 169063 steam: 1419290 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Nerd Monkeys\Out of Line\}}' + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Nerd Monkeys\\Out of Line\\}}" Out of Reach: pageId: 51044 steam: 327090 -'Out of Reach: Treasure Royale': +"Out of Reach: Treasure Royale": pageId: 124629 steam: 867400 Out of Smoke: @@ -117366,8 +114208,8 @@ Out of the Box: pageId: 57135 steam: 576960 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Nuclear Tales\Out of the box\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Nuclear Tales\Out of the box\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Nuclear Tales\\Out of the box\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Nuclear Tales\\Out of the box\\}}" Out of the Park Baseball 14: pageId: 60429 steam: 263840 @@ -117390,7 +114232,7 @@ Out of the Park Baseball 20: pageId: 130131 steam: 831980 templates: - - '{{Game data/config|Windows|{{P|appdata}}\Out of the Park Developments\OOTP Baseball 20\config\}}' + - "{{Game data/config|Windows|{{P|appdata}}\\Out of the Park Developments\\OOTP Baseball 20\\config\\}}" Out of the Park Baseball 21: pageId: 158740 steam: 1087280 @@ -117406,23 +114248,23 @@ Out of the Park Baseball 9: OutBreak Zombie: pageId: 81713 steam: 792900 -'OutBreak: The Escape': +"OutBreak: The Escape": pageId: 78441 steam: 756350 OutDrive: pageId: 44493 steam: 441870 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\OutDrive\OutDrive\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\OutDrive\\OutDrive\\}}" OutOfColors: pageId: 91821 steam: 786840 -'OutRun 2006: Coast 2 Coast': +"OutRun 2006: Coast 2 Coast": pageId: 19799 steam: 4730 templates: - - '{{Game data/config|Windows|{{p|game}}\outrun2006.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\SaveGame\}}' + - "{{Game data/config|Windows|{{p|game}}\\outrun2006.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\SaveGame\\}}" OutSplit: pageId: 66830 steam: 686230 @@ -117435,34 +114277,32 @@ Outbreak: Outbreak in Space VR: pageId: 80382 steam: 776390 -'Outbreak: Epidemic': +"Outbreak: Epidemic": pageId: 139112 steam: 1082220 steamSide: - 1104420 -'Outbreak: Lost Hope': +"Outbreak: Lost Hope": pageId: 130595 steam: 1035310 -'Outbreak: Pandemic Evolution': +"Outbreak: Pandemic Evolution": pageId: 38867 steam: 444690 -'Outbreak: The New Nightmare': +"Outbreak: The New Nightmare": pageId: 62825 steam: 644480 -'Outbreak: The Nightmare Chronicles': +"Outbreak: The Nightmare Chronicles": pageId: 89716 steam: 811720 templates: - - >- - {{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Drop Dead Studios LLC\Outbreak the Nightmare - Chronicles\}} + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Drop Dead Studios LLC\\Outbreak the Nightmare Chronicles\\}}" Outbuddies: gog: 1485699348 pageId: 142045 steam: 1083310 templates: - - '{{Game data/config|Windows|{{P|appdata}}\outbuddies\settings|{{P|appdata}}\outbuddies\inputs}}' - - '{{Game data/saves|Windows|{{P|appdata}}\outbuddies\}}' + - "{{Game data/config|Windows|{{P|appdata}}\\outbuddies\\settings|{{P|appdata}}\\outbuddies\\inputs}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\outbuddies\\}}" Outburst: pageId: 65496 steam: 669710 @@ -117470,38 +114310,35 @@ Outcast: gog: 1207658853 pageId: 15303 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/saves|Windows|{{p|game}}\savegames}}' + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\savegames}}" Outcast 1.1: gog: 1207658853 pageId: 23433 steam: 336610 templates: - - '{{Game data/config|Windows|{{p|game}}\userdata\config.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\userdata\savegames}}' + - "{{Game data/config|Windows|{{p|game}}\\userdata\\config.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\userdata\\savegames}}" Outcast 2 - A New Beginning: gog: 1299791510 pageId: 171519 steam: 1013140 -'Outcast: Second Contact': +"Outcast: Second Contact": gog: 2109390794 pageId: 61798 steam: 618970 templates: - - '{{Game data/config|Windows|{{P|game}}\outcast_Data\StreamingAssets\userdata\config.ini}}' - - '{{Game data/saves|Windows|{{P|game}}\\outcast_Data\StreamingAssets\userdata\savegames\}}' + - "{{Game data/config|Windows|{{P|game}}\\outcast_Data\\StreamingAssets\\userdata\\config.ini}}" + - "{{Game data/saves|Windows|{{P|game}}\\\\outcast_Data\\StreamingAssets\\userdata\\savegames\\}}" Outcome: pageId: 126402 steam: 997650 -'Outcore: Desktop Adventure': +"Outcore: Desktop Adventure": pageId: 184055 steam: 1275670 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\DoctorShinobi\Outcore|{{P|hkcu}}\Software\DoctorShinobi\Idle Game}}' - - >- - {{Game - data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\DoctorShinobi\Outcore|{{p|userprofile}}\AppData\LocalLow\DoctorShinobi\Idle - Game}} + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\DoctorShinobi\\Outcore|{{P|hkcu}}\\Software\\DoctorShinobi\\Idle Game}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\DoctorShinobi\\Outcore|{{p|userprofile}}\\AppData\\LocalLow\\DoctorShinobi\\Idle Game}}" Outer Rim: pageId: 60243 steam: 604640 @@ -117514,17 +114351,11 @@ Outer Wilds: steamSide: - 1622100 templates: - - >- - {{Game data/config|Windows|{{p|hkcu}}\Software\Mobius Digital\Outer - Wilds\|{{p|userprofile}}\AppData\LocalLow\Mobius Digital\Outer Wilds\Saves\}} - - >- - {{Game data/config|Steam|{{p|hkcu}}\Software\Mobius Digital\Outer Wilds\|{{p|userprofile}}\AppData\LocalLow\Mobius - Digital\Outer Wilds\SteamSaves\}} - - >- - {{Game data/saves|Microsoft - Store|{{P|localappdata}}\Packages\AnnapurnaInteractive.OuterWilds_c96c51jf6wkvm\SystemAppData\wgs\}} - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Mobius Digital\Outer Wilds\Saves\}}' - - '{{Game data/saves|Steam|{{p|userprofile}}\AppData\LocalLow\Mobius Digital\Outer Wilds\SteamSaves\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Mobius Digital\\Outer Wilds\\|{{p|userprofile}}\\AppData\\LocalLow\\Mobius Digital\\Outer Wilds\\Saves\\}}" + - "{{Game data/config|Steam|{{p|hkcu}}\\Software\\Mobius Digital\\Outer Wilds\\|{{p|userprofile}}\\AppData\\LocalLow\\Mobius Digital\\Outer Wilds\\SteamSaves\\}}" + - "{{Game data/saves|Microsoft Store|{{P|localappdata}}\\Packages\\AnnapurnaInteractive.OuterWilds_c96c51jf6wkvm\\SystemAppData\\wgs\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Mobius Digital\\Outer Wilds\\Saves\\}}" + - "{{Game data/saves|Steam|{{p|userprofile}}\\AppData\\LocalLow\\Mobius Digital\\Outer Wilds\\SteamSaves\\}}" Outerverse: pageId: 174061 steam: 1293540 @@ -117532,11 +114363,11 @@ Outland: pageId: 19998 steam: 305050 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Housemarque\Outland\window_pos.cfg}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/Housemarque/Outland/}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Housemarque\Outland\}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/Housemarque/Outland/}}' - - '{{Game data/saves|Steam|{{P|Steam}}/userdata/{{P|uid}}/305050/remote/}}' + - "{{Game data/config|Windows|{{p|appdata}}\\Housemarque\\Outland\\window_pos.cfg}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/Housemarque/Outland/}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Housemarque\\Outland\\}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/Housemarque/Outland/}}" + - "{{Game data/saves|Steam|{{P|Steam}}/userdata/{{P|uid}}/305050/remote/}}" Outlanders: pageId: 147859 steam: 1766720 @@ -117550,33 +114381,33 @@ Outlast: pageId: 10060 steam: 238320 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Outlast\OLGame\Config\}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/Outlast/OLGame/Config/}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Outlast\OLGame\SaveData\}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/Outlast/OLGame/Cloud/}}' - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/238320/remote/}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Outlast\\OLGame\\Config\\}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/Outlast/OLGame/Config/}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Outlast\\OLGame\\SaveData\\}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/Outlast/OLGame/Cloud/}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/238320/remote/}}" Outlast 2: gog: 1453301453 pageId: 39339 steam: 414700 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Outlast2\OLGame\Config\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Outlast2\OLGame\SaveData\}}' - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\414700\remote\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Outlast2\\OLGame\\Config\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Outlast2\\OLGame\\SaveData\\}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\414700\\remote\\}}" Outlaws: gog: 1425302464 pageId: 14487 steam: 559620 templates: - - '{{Game data/config|Windows|{{p|hklm}}\SOFTWARE\{{p|wow64}}\LucasArts Entertainment Company\Outlaws\}}' - - '{{Game data/saves|Windows|{{P|game}}\Save\}}' + - "{{Game data/config|Windows|{{p|hklm}}\\SOFTWARE\\{{p|wow64}}\\LucasArts Entertainment Company\\Outlaws\\}}" + - "{{Game data/saves|Windows|{{P|game}}\\Save\\}}" Outlaws of the Old West: pageId: 129593 steam: 840800 Outline: pageId: 89506 steam: 812850 -'Outliver: Redemption': +"Outliver: Redemption": pageId: 125966 steam: 1011370 Outpost: @@ -117584,11 +114415,11 @@ Outpost: Outpost 13: pageId: 45894 steam: 351060 -'Outpost 2: Divided Destiny': +"Outpost 2: Divided Destiny": gog: 1494370738 pageId: 146547 templates: - - '{{Game data/config|Windows|{{P|game}}\outpost2.ini}}' + - "{{Game data/config|Windows|{{P|game}}\\outpost2.ini}}" Outpost Delta: pageId: 150631 steam: 1099090 @@ -117612,7 +114443,7 @@ Outracer: Outrage: pageId: 34956 steam: 457820 -'Outrageous Grounds: The Maze': +"Outrageous Grounds: The Maze": pageId: 39494 steam: 513050 Outreach: @@ -117628,10 +114459,8 @@ Outriders: pageId: 138437 steam: 680420 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Madness\Saved\Config\WindowsNoEditor}}' - - >- - {{Game data/config|Microsoft - Store|{{p|localappdata}}\Packages\39C668CD.Madness-BaseGame_r7bfsmp40f67j\LocalCache\Local\Madness\Saved\Config\WinGDK}} + - "{{Game data/config|Windows|{{p|localappdata}}\\Madness\\Saved\\Config\\WindowsNoEditor}}" + - "{{Game data/config|Microsoft Store|{{p|localappdata}}\\Packages\\39C668CD.Madness-BaseGame_r7bfsmp40f67j\\LocalCache\\Local\\Madness\\Saved\\Config\\WinGDK}}" Outrunner: pageId: 60908 steam: 620240 @@ -117639,7 +114468,7 @@ Outrunner 2: pageId: 91576 steam: 833290 templates: - - '{{Game data/saves|Windows|{{p|localappdata}}\Outrunner_2}}' + - "{{Game data/saves|Windows|{{p|localappdata}}\\Outrunner_2}}" Outrunner 3: pageId: 124380 steam: 994570 @@ -117653,7 +114482,7 @@ Outshine: pageId: 182726 steam: 1288410 templates: - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Fishing Cactus\Outshine\}}' + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Fishing Cactus\\Outshine\\}}" Outside: pageId: 76291 steam: 746760 @@ -117676,22 +114505,22 @@ Outward: steamSide: - 983420 templates: - - '{{Game data/config|Windows|{{p|game}}\OptionSettings.oos}}' - - '{{Game data/saves|Windows|{{p|game}}\SaveGames\}}' + - "{{Game data/config|Windows|{{p|game}}\\OptionSettings.oos}}" + - "{{Game data/saves|Windows|{{p|game}}\\SaveGames\\}}" Outwars: gog: 1308814788 pageId: 162356 steam: 1431940 templates: - - '{{Game data/config|Windows|{{P|hklm}}\SOFTWARE\WOW6432Node\Microsoft\Games\Outwars\1.0.0}}' - - '{{Game data/saves|Windows|{{P|game}}\outwars.sav}}' + - "{{Game data/config|Windows|{{P|hklm}}\\SOFTWARE\\WOW6432Node\\Microsoft\\Games\\Outwars\\1.0.0}}" + - "{{Game data/saves|Windows|{{P|game}}\\outwars.sav}}" Outworld Battlegrounds: pageId: 120895 steam: 779410 Oval: pageId: 94487 steam: 849670 -'Oval Office: Commander in Chief': +"Oval Office: Commander in Chief": pageId: 91433 Ovens of Hell: pageId: 110074 @@ -117699,7 +114528,7 @@ Ovens of Hell: Over 9000 Zombies!: pageId: 33468 steam: 273500 -'Over Devil: Legend of the Sacred Stone': +"Over Devil: Legend of the Sacred Stone": pageId: 190504 steam: 2102760 Over My Dead Body (For You): @@ -117711,7 +114540,7 @@ Over My Dead Pixel: Over Sky: pageId: 140978 steam: 1105490 -'Over The Cloud : Lost Planet': +"Over The Cloud : Lost Planet": pageId: 134462 steam: 1037340 Over The Hills And Far Away: @@ -117731,8 +114560,8 @@ Over the Alps: Over the Hedge: pageId: 88459 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Activision\Over the Hedge\Save\savegame\settings##}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Activision\Over the Hedge\Save\savegame\slot##}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Activision\\Over the Hedge\\Save\\savegame\\settings##}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Activision\\Over the Hedge\\Save\\savegame\\slot##}}" OverKill: pageId: 74860 steam: 740950 @@ -117742,16 +114571,14 @@ Overboard: Overboard!: pageId: 26626 templates: - - '{{Game data/config|Windows|{{P|game}}\ob.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\}}' + - "{{Game data/config|Windows|{{P|game}}\\ob.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\}}" Overboard! (2021): gog: 1338968778 pageId: 168810 steam: 1546920 templates: - - >- - {{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Inkle - Ltd\Overboard!\*.json|{{p|userprofile}}\AppData\LocalLow\Inkle Ltd\Overboard!\Auto Dev Saves\*.json}} + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Inkle Ltd\\Overboard!\\*.json|{{p|userprofile}}\\AppData\\LocalLow\\Inkle Ltd\\Overboard!\\Auto Dev Saves\\*.json}}" Overcast - Walden and the Werewolf: pageId: 50405 steam: 293180 @@ -117762,15 +114589,15 @@ Overclocked: pageId: 77363 steam: 745560 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Overclocked\oc_options.sav}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\Overclocked\oc_save_*.sav}}' -'Overclocked: A History of Violence': + - "{{Game data/config|Windows|{{P|localappdata}}\\Overclocked\\oc_options.sav}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Overclocked\\oc_save_*.sav}}" +"Overclocked: A History of Violence": gog: 1438770870 pageId: 30194 steam: 339850 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Overclocked savegames\}}' -'Overclocked: The Aclockalypse': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Overclocked savegames\\}}" +"Overclocked: The Aclockalypse": pageId: 92183 steam: 827220 Overcome: @@ -117784,47 +114611,47 @@ Overcooked!: pageId: 36022 steam: 448510 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\SOFTWARE\Ghost Town Games\Overcooked\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Ghost Town Games\Overcooked\*.save}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\SOFTWARE\\Ghost Town Games\\Overcooked\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Ghost Town Games\\Overcooked\\*.save}}" Overcooked! 2: gog: 1297999995 gogSide: - - 1274483052 - 1161181715 - - 1481436848 - - 1436984092 - 1233324287 + - 1274483052 + - 1436984092 + - 1481436848 - 1918219016 pageId: 98212 steam: 728880 steamSide: - - 909720 - 858240 - - 1067770 + - 909720 - 1013300 - - 1138400 - 1017510 + - 1067770 + - 1138400 templates: - - '{{Game data/config|Windows|{{p|HKCU}}\Software\Team17\Overcooked2\}}' - - '{{Game data/saves|Windows|{{p|USERPROFILE}}\AppData\LocalLow\Team17\Overcooked2\{{p|uid}}\}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Team17/Overcooked2/{{p|uid}}}}' + - "{{Game data/config|Windows|{{p|HKCU}}\\Software\\Team17\\Overcooked2\\}}" + - "{{Game data/saves|Windows|{{p|USERPROFILE}}\\AppData\\LocalLow\\Team17\\Overcooked2\\{{p|uid}}\\}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Team17/Overcooked2/{{p|uid}}}}" Overcooked! All You Can Eat: pageId: 166671 steam: 1243830 steamSide: - 1528250 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\SOFTWARE\Team17\Overcooked All You Can Eat}}' - - '{{Game data/saves|Windows|{{P|appdata}}\LocalLow\Team17\Overcooked All You Can Eat{{P|uid}}}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\SOFTWARE\\Team17\\Overcooked All You Can Eat}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\LocalLow\\Team17\\Overcooked All You Can Eat{{P|uid}}}}" Overcraft: pageId: 145978 steam: 980560 -'Overcrowd: A Commute ''Em Up': +"Overcrowd: A Commute 'Em Up": pageId: 92319 steam: 726110 templates: - - '{{Game data/config|Windows|{{P|userprofile\documents}}\My Games\Overcrowd\Saves\start.dat}}' - - '{{Game data/saves|Windows|{{P|userprofile\documents}}\My Games\Overcrowd\Saves}}' + - "{{Game data/config|Windows|{{P|userprofile\\documents}}\\My Games\\Overcrowd\\Saves\\start.dat}}" + - "{{Game data/saves|Windows|{{P|userprofile\\documents}}\\My Games\\Overcrowd\\Saves}}" Overdosed - A Trip To Hell: pageId: 42942 steam: 413830 @@ -117834,7 +114661,7 @@ Overdriven Reloaded: Overdungeon: pageId: 122036 steam: 919370 -'Overduty VR: Battle Royale': +"Overduty VR: Battle Royale": pageId: 80368 steam: 775990 Overfall: @@ -117842,7 +114669,7 @@ Overfall: pageId: 34184 steam: 402310 templates: - - '{{Game data/saves|Windows|{{p|game}}\Overfall_Data\Saves}}' + - "{{Game data/saves|Windows|{{p|game}}\\Overfall_Data\\Saves}}" Overflo Game: pageId: 157311 steam: 1112650 @@ -117850,10 +114677,10 @@ Overgrowth: pageId: 3017 steam: 25000 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\Wolfire\}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/Overgrowth/}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\Wolfire\}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/Overgrowth/}}' + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\Wolfire\\}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/Overgrowth/}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\Wolfire\\}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/Overgrowth/}}" Overhead: pageId: 82906 steam: 765260 @@ -117865,24 +114692,22 @@ Overkill 3: Overkill VR: pageId: 52722 steam: 518720 -Overkill's The Walking Dead: +"Overkill's The Walking Dead": pageId: 78862 steam: 717690 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\OTWD\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\OTWD\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\OTWD\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\OTWD\\Saved\\SaveGames\\}}" Overland: gog: 1429928925 pageId: 39805 steam: 355680 templates: - - >- - {{Game - data/config|Windows|{{P|userprofile}}\AppData\LocalLow\Finji\Overland\Config.json|{{P|hkcu}}\Software\Finji\Overland\}} - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/unity.Finji.Overland/Config.json}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Finji\Overland\gameSaves\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/unity.Finji.Overland/gameSaves}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Finji/Overland/gameSaves/}}' + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Finji\\Overland\\Config.json|{{P|hkcu}}\\Software\\Finji\\Overland\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/unity.Finji.Overland/Config.json}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Finji\\Overland\\gameSaves\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/unity.Finji.Overland/gameSaves}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Finji/Overland/gameSaves/}}" Overlanders: pageId: 81147 steam: 779450 @@ -117891,16 +114716,14 @@ Overload: pageId: 37273 steam: 448850 templates: - - >- - {{Game - data/config|Windows|{{p|HKCU}}\Software\Revival\Overload\|{{p|USERPROFILE}}\AppData\LocalLow\Revival\Overload\}} - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Revival/Overload}}' - - '{{Game data/saves|Windows|{{p|USERPROFILE}}\AppData\LocalLow\Revival\Overload\}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Revival/Overload}}' + - "{{Game data/config|Windows|{{p|HKCU}}\\Software\\Revival\\Overload\\|{{p|USERPROFILE}}\\AppData\\LocalLow\\Revival\\Overload\\}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Revival/Overload}}" + - "{{Game data/saves|Windows|{{p|USERPROFILE}}\\AppData\\LocalLow\\Revival\\Overload\\}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Revival/Overload}}" Overlook Trail: pageId: 90421 steam: 817800 -'Overlook: Local Multiplayer Game - up to 16 Players': +"Overlook: Local Multiplayer Game - up to 16 Players": pageId: 78778 steam: 770560 Overloop: @@ -117908,8 +114731,8 @@ Overloop: pageId: 75155 steam: 720660 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Charge Games\Overloop\}}' - - '{{Game data/saves|Windows|{{P|hkcu}}\Software\Charge Games\Overloop\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Charge Games\\Overloop\\}}" + - "{{Game data/saves|Windows|{{P|hkcu}}\\Software\\Charge Games\\Overloop\\}}" Overlord (2007): gog: 1207659207 pageId: 4565 @@ -117917,29 +114740,25 @@ Overlord (2007): steamSide: - 12710 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Overlord\settings.dat}}' - - >- - {{Game data/config|OS X|{{p|osxhome}}/Library/Application - Support/com.vpltd.overlord/GameDocuments/Overlord/Settings.dat}} - - '{{Game data/config|Linux|{{P|xdgdatahome}}/vpltd/Overlord/}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Overlord\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/com.vpltd.overlord/GameDocuments/Overlord/}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/vpltd/Overlord/GameDocuments/Overlord/}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Overlord\\settings.dat}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/com.vpltd.overlord/GameDocuments/Overlord/Settings.dat}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/vpltd/Overlord/}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Overlord\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/com.vpltd.overlord/GameDocuments/Overlord/}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/vpltd/Overlord/GameDocuments/Overlord/}}" Overlord II: gog: 1580446481 pageId: 14880 steam: 12810 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Overlord II\}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/vpltd/Overlord2/}}' - - >- - {{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Overlord - II\Profiles\|{{p|userprofile\Documents}}\My Games\Overlord II\Save - *\}} - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/vpltd/Overlord2/}}' -'Overlord: Escape from Nazarick': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Overlord II\\}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/vpltd/Overlord2/}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Overlord II\\Profiles\\|{{p|userprofile\\Documents}}\\My Games\\Overlord II\\Save - *\\}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/vpltd/Overlord2/}}" +"Overlord: Escape from Nazarick": pageId: 178282 steam: 1782150 -'Overlord: Fellowship of Evil': +"Overlord: Fellowship of Evil": pageId: 35314 steam: 306670 Overpass: @@ -117955,25 +114774,25 @@ Overprime: pageId: 178071 renamedFrom: - Overprime - - 'Paragon: The Overprime' + - "Paragon: The Overprime" steam: 1531430 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Overprime\Saved\Config\WindowsClient\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Overprime\Saved\SaveGames\}}' -'Override 2: Super Mech League': + - "{{Game data/config|Windows|{{p|localappdata}}\\Overprime\\Saved\\Config\\WindowsClient\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Overprime\\Saved\\SaveGames\\}}" +"Override 2: Super Mech League": pageId: 167064 steam: 1329790 -'Override: Mech City Brawl': +"Override: Mech City Brawl": pageId: 95039 steam: 709440 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Override\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\Override\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\Override\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Override\\Saved\\SaveGames\\}}" Overruled!: pageId: 46464 steam: 297740 templates: - - '{{Game data/saves|Steam|{{P|steam}}\userdata\{{P|uid}}\297740\remote\PlayerProfile.sav}}' + - "{{Game data/saves|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\297740\\remote\\PlayerProfile.sav}}" Overseas: pageId: 141815 steam: 1106200 @@ -117984,15 +114803,15 @@ Overture: pageId: 38450 steam: 343100 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Overture\Data\mainsave.ini}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Overture\Data\mainsave.ini}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Overture\\Data\\mainsave.ini}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Overture\\Data\\mainsave.ini}}" Overture Music Visualization: pageId: 128238 steam: 1026380 Overturn: pageId: 72547 steam: 650070 -'Overturn: Final Operation': +"Overturn: Final Operation": pageId: 93219 steam: 830560 Overview: @@ -118001,23 +114820,23 @@ Overview: Overwatch: pageId: 32138 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Overwatch\Settings\Settings_v0.ini}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Overwatch\\Settings\\Settings_v0.ini}}" Overwatch 2: pageId: 151795 steam: 2357570 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Overwatch\Settings\Settings_v0.ini}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Overwatch\\Settings\\Settings_v0.ini}}" Overwhelm: pageId: 97293 steam: 785880 templates: - - '{{Game data/saves|Windows|{{p|appdata}}\randomnine\OVERWHELM\}}' + - "{{Game data/saves|Windows|{{p|appdata}}\\randomnine\\OVERWHELM\\}}" Ovivo: pageId: 61772 steam: 597700 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\Saved Games\OVIVO\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/OVIVO}}' + - "{{Game data/saves|Windows|{{p|userprofile}}\\Saved Games\\OVIVO\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/OVIVO}}" Owari: pageId: 63698 steam: 547140 @@ -118033,7 +114852,7 @@ Owl Simulator: Owl Watch: pageId: 123760 steam: 887340 -Owl's Midnight Journey: +"Owl's Midnight Journey": pageId: 72191 steam: 710940 Owlboy: @@ -118044,16 +114863,16 @@ Owlboy: pageId: 39288 steam: 115800 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\Saved Games\Owlboy\Config\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Owlboy/Config/}}' - - '{{Game data/config|Linux|{{P|xdgconfighome}}/Owlboy/}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\Saved Games\Owlboy\Saves\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Owlboy/Saves/}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/Owlboy/Saves/}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\Saved Games\\Owlboy\\Config\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Owlboy/Config/}}" + - "{{Game data/config|Linux|{{P|xdgconfighome}}/Owlboy/}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Saved Games\\Owlboy\\Saves\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Owlboy/Saves/}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/Owlboy/Saves/}}" Owling. Crowling. Bowling!: pageId: 130571 steam: 1035210 -Owyn's Adventure: +"Owyn's Adventure": pageId: 132200 steam: 1020940 Owys: @@ -118066,26 +114885,18 @@ Oxenfree: steamSide: - 433430 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Night School Studio\Oxenfree\}}' - - >- - {{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/Night School Studio/OXENFREE/{{note|name=linux_config_new|The - basename of the configuration folder is {{folder|OXENFREE}} in the current Steam release of the game's Linux - version.}}
{{P|xdgconfighome}}/unity3d/Night School Studio/Oxenfree/{{note|name=linux_config_old|The basename - of the configuration folder is {{folder|Oxenfree}} in older Linux versions, e.g. as distributed by GOG and in the - pre-x86-deprecation branch{{note|name=steam_beta_linux_pre64}} available on Steam.}}}} - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Night School Studio\Oxenfree\save\}}' - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\388880\remote\}}' - - '{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/unity.Night School Studio.Oxenfree/save/}}' - - >- - {{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/Night School - Studio/OXENFREE/save/{{note|name=linux_config_new}}
{{P|xdgconfighome}}/unity3d/Night School - Studio/Oxenfree/save/{{note|name=linux_config_old}}}} -'Oxenfree II: Lost Signals': + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Night School Studio\\Oxenfree\\}}" + - "{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/Night School Studio/OXENFREE/{{note|name=linux_config_new|The basename of the configuration folder is {{folder|OXENFREE}} in the current Steam release of the game's Linux version.}}
{{P|xdgconfighome}}/unity3d/Night School Studio/Oxenfree/{{note|name=linux_config_old|The basename of the configuration folder is {{folder|Oxenfree}} in older Linux versions, e.g. as distributed by GOG and in the pre-x86-deprecation branch{{note|name=steam_beta_linux_pre64}} available on Steam.}}}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Night School Studio\\Oxenfree\\save\\}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\388880\\remote\\}}" + - "{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/unity.Night School Studio.Oxenfree/save/}}" + - "{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/Night School Studio/OXENFREE/save/{{note|name=linux_config_new}}
{{P|xdgconfighome}}/unity3d/Night School Studio/Oxenfree/save/{{note|name=linux_config_old}}}}" +"Oxenfree II: Lost Signals": pageId: 167888 steam: 1574310 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Night School Studio\OXENFREE II: Lost Signals}}' - - '{{Game data/saves|Steam|{{P|steam}}\userdata\{{P|uid}}\1574310\remote\*.nts}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Night School Studio\\OXENFREE II: Lost Signals}}" + - "{{Game data/saves|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\1574310\\remote\\*.nts}}" Oxyd: pageId: 154206 steam: 1086170 @@ -118096,14 +114907,12 @@ Oxygen Not Included: - 593590 - 1452490 templates: - - '{{Game data/config|Windows|{{P|USERPROFILE\Documents}}\Klei\OxygenNotIncluded\kplayerprefs.yaml}}' - - >- - {{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/unity.Klei.Oxygen Not - Included/kplayerprefs.yaml}} - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Klei/Oxygen Not Included/kplayerprefs.yaml}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Klei\OxygenNotIncluded\save_files}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/unity.Klei.Oxygen Not Included/save_files}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Klei/Oxygen Not Included/save_files}}' + - "{{Game data/config|Windows|{{P|USERPROFILE\\Documents}}\\Klei\\OxygenNotIncluded\\kplayerprefs.yaml}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/unity.Klei.Oxygen Not Included/kplayerprefs.yaml}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Klei/Oxygen Not Included/kplayerprefs.yaml}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Klei\\OxygenNotIncluded\\save_files}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/unity.Klei.Oxygen Not Included/save_files}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Klei/Oxygen Not Included/save_files}}" Ozapell Mystery Text Adventure: pageId: 110282 steam: 924390 @@ -118122,15 +114931,15 @@ Ozymandias: - 2057785 - 2226120 templates: - - '{{Game data/saves|Windows|{{p|localappdata}}\Ozymandias\Saved}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Epic/Ozymandias/Saved}}' + - "{{Game data/saves|Windows|{{p|localappdata}}\\Ozymandias\\Saved}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Epic/Ozymandias/Saved}}" P-3 Biotic: pageId: 43113 steam: 311940 P-BOT: pageId: 155590 steam: 1215960 -P-Walker's Simulation: +"P-Walker's Simulation": pageId: 62706 steam: 622920 P.3: @@ -118141,10 +114950,8 @@ P.A.M.E.L.A.: pageId: 39001 steam: 427880 templates: - - >- - {{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\NVYVE - Studios\PAM_GameLauncher\PAMELA_Save_gameSettingsSave0.txt|{{p|HKCU}}\SOFTWARE\NVYVE Studios\PAM_GameLauncher}} - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\NVYVE Studios\PAM_GameLauncher\}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\NVYVE Studios\\PAM_GameLauncher\\PAMELA_Save_gameSettingsSave0.txt|{{p|HKCU}}\\SOFTWARE\\NVYVE Studios\\PAM_GameLauncher}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\NVYVE Studios\\PAM_GameLauncher\\}}" P.A.S.: pageId: 103855 steam: 805110 @@ -118160,7 +114967,7 @@ P9 The GateAway: PAGAN PEAK VR: pageId: 150041 steam: 1059430 -'PAGAN: Autogeny': +"PAGAN: Autogeny": pageId: 148271 steam: 1165750 PAGUI打鬼: @@ -118170,8 +114977,8 @@ PAKO - Car Chase Simulator: pageId: 54429 steam: 559870 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Tree Men Games\PAKO - Car Chase Simulator}}' - - '{{Game data/saves|Windows|{{p|hkcu}}\Software\Tree Men Games\PAKO - Car Chase Simulator}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Tree Men Games\\PAKO - Car Chase Simulator}}" + - "{{Game data/saves|Windows|{{p|hkcu}}\\Software\\Tree Men Games\\PAKO - Car Chase Simulator}}" PAKO 2: pageId: 60115 steam: 612370 @@ -118190,12 +114997,12 @@ PAPER TANKS: PARANOIHELL: pageId: 150723 steam: 1160440 -'PARANORMASIGHT: The Seven Mysteries of Honjo': +"PARANORMASIGHT: The Seven Mysteries of Honjo": pageId: 185840 steam: 2106840 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\SQUARE ENIX\PARANORMASIGHT}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\PARANORMASIGHT\Steam\{{p|uid}}\save.bytes}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\SQUARE ENIX\\PARANORMASIGHT}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\PARANORMASIGHT\\Steam\\{{p|uid}}\\save.bytes}}" PARSE ALLY: pageId: 127455 steam: 1011310 @@ -118230,28 +115037,28 @@ PC Building Simulator: pageId: 66293 steam: 621060 steamSide: - - 973910 - 823720 - - 1252990 - - 1642950 - - 1591920 - - 1416670 - - 1295800 - - 1198960 - - 1067590 + - 973910 - 982590 + - 1067590 + - 1198960 + - 1252990 - 1263560 + - 1295800 + - 1416670 + - 1591920 + - 1642950 templates: - - '{{Game data/config|Windows|{{p|HKCU}}\Software\The Irregular Corp\PC Building Simulator\}}' - - '{{Game data/saves|Windows|{{p|game}}\Saves\}}' + - "{{Game data/config|Windows|{{p|HKCU}}\\Software\\The Irregular Corp\\PC Building Simulator\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\Saves\\}}" PC Building Simulator 2: pageId: 179144 templates: - - '{{Game data/saves|Windows|{{p|game}}\Saves\}}' + - "{{Game data/saves|Windows|{{p|game}}\\Saves\\}}" PC Fútbol 2005: pageId: 166945 templates: - - '{{Game data/saves|Windows|{{Path|Game}}\Save}}' + - "{{Game data/saves|Windows|{{Path|Game}}\\Save}}" PC Fútbol Stars: pageId: 150107 steam: 1036930 @@ -118259,21 +115066,17 @@ PC Gamer Digital: pageId: 16364 steam: 92500 templates: - - '{{Game data/config|Windows|{{p|steam}}\userdata\{{p|uid}}\92500\local\save.cur}}' - - '{{Game data/saves|Windows|-}}' + - "{{Game data/config|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\92500\\local\\save.cur}}" + - "{{Game data/saves|Windows|-}}" PC-Man: pageId: 163335 PCSX2: pageId: 88518 templates: - - '{{Game data/config|Windows|{{p|game}}\inis\}}' - - '{{Game data/config|Linux|{{p|xdgconfighome}}/inis}}' - - >- - {{Game data/saves|Windows|{{p|game}}\memcards\{{Note|For Memory Cards}}|{{p|game}}\sstates\{{Note|for Save - States}}}} - - >- - {{Game data/saves|Linux|{{p|xdgconfighome}}/memcards/{{Note|For Memory - Cards}}|{{p|xdgconfighome}}/sstates/{{Note|for Save States}}}} + - "{{Game data/config|Windows|{{p|game}}\\inis\\}}" + - "{{Game data/config|Linux|{{p|xdgconfighome}}/inis}}" + - "{{Game data/saves|Windows|{{p|game}}\\memcards\\{{Note|For Memory Cards}}|{{p|game}}\\sstates\\{{Note|for Save States}}}}" + - "{{Game data/saves|Linux|{{p|xdgconfighome}}/memcards/{{Note|For Memory Cards}}|{{p|xdgconfighome}}/sstates/{{Note|for Save States}}}}" PEG: pageId: 72039 steam: 699600 @@ -118281,7 +115084,7 @@ PGA Tour 2K21: pageId: 160478 steam: 1016120 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\2K\PGA TOUR 2K21\}}' + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\2K\\PGA TOUR 2K21\\}}" PGA Tour 2K23: pageId: 181319 steam: 1588010 @@ -118292,7 +115095,7 @@ PHOGS!: pageId: 145347 steam: 850320 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\SOFTWARE\Bit Loom\PHOGS!}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\SOFTWARE\\Bit Loom\\PHOGS!}}" PICO PARK: pageId: 43360 steam: 461040 @@ -118305,7 +115108,7 @@ PING 1.5+: PINPIN BALLBALL: pageId: 121079 steam: 891180 -'PJ Masks: Heroes of the Night': +"PJ Masks: Heroes of the Night": pageId: 177730 steam: 1635600 PLAN 8: @@ -118319,14 +115122,14 @@ PLAYNE VR: PM-1 Inverse Universe: pageId: 153913 steam: 1183650 -'POCKET CAR : VRGROUND': +"POCKET CAR : VRGROUND": pageId: 125105 steam: 1004710 -'POD: Planet of Death': +"POD: Planet of Death": gog: 1207658970 pageId: 21591 templates: - - '{{Game data/saves|Windows|{{p|game}}\DATA\ChShip\}}' + - "{{Game data/saves|Windows|{{p|game}}\\DATA\\ChShip\\}}" POK: pageId: 108760 steam: 711610 @@ -118334,14 +115137,14 @@ POLYBIUS: pageId: 122518 steam: 906120 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Llamasoft_GameSavedata}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Llamasoft_GameSavedata}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Llamasoft_GameSavedata}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Llamasoft_GameSavedata}}" POLYGON: pageId: 188945 steam: 1241100 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\POLYGON\Saved\Config\Windows\}}' -'POP: Methodology Experiment One': + - "{{Game data/config|Windows|{{p|localappdata}}\\POLYGON\\Saved\\Config\\Windows\\}}" +"POP: Methodology Experiment One": pageId: 49145 steam: 305800 POPUCOM: @@ -118356,13 +115159,13 @@ PORN Handyman VR: PORN Pizza Delivery Boy: pageId: 175593 steam: 1263130 -'POWERCUT, Inc.': +"POWERCUT, Inc.": pageId: 114580 steam: 944440 PPDD: pageId: 144160 steam: 1131680 -'PRE:ONE': +"PRE:ONE": pageId: 92127 steam: 820840 PRESim: @@ -118372,14 +115175,14 @@ PRICE: pageId: 40042 steam: 465520 templates: - - '{{Game data/saves|Windows|{{p|game}}\savedata\}}' + - "{{Game data/saves|Windows|{{p|game}}\\savedata\\}}" PRISON OF SON: pageId: 156517 steam: 1201730 PROELIUM: pageId: 121494 steam: 941160 -'PROJECT D : Human Risen': +"PROJECT D : Human Risen": pageId: 151385 steam: 1179280 PROJECT RUN: @@ -118395,12 +115198,12 @@ PROTOCORE: pageId: 113602 steam: 906820 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\YUM\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\YUM\Saved\SaveGames\}}' -'PROZE: Enlightenment': + - "{{Game data/config|Windows|{{p|localappdata}}\\YUM\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\YUM\\Saved\\SaveGames\\}}" +"PROZE: Enlightenment": pageId: 110266 steam: 924250 -'PROZE: Prologue': +"PROZE: Prologue": pageId: 107878 steam: 912560 PRiCERPG: @@ -118412,67 +115215,67 @@ PRiO: PSI Magic: pageId: 104335 steam: 888200 -'PT Boats: Knights of the Sea': +"PT Boats: Knights of the Sea": pageId: 40869 steam: 10250 -'PT Boats: South Gambit': +"PT Boats: South Gambit": pageId: 40867 steam: 10260 PUBG Lite: pageId: 147904 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\ShadowTrackerExtra\Saved\Config\WindowsNoEditor}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\ShadowTrackerExtra\Saved\SaveGames}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\ShadowTrackerExtra\\Saved\\Config\\WindowsNoEditor}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\ShadowTrackerExtra\\Saved\\SaveGames}}" PUBG Training Camp: pageId: 80843 renamedFrom: - Pubg Training Camp steam: 777320 -'PUBG: Battlegrounds': +"PUBG: Battlegrounds": pageId: 58561 renamedFrom: - - Playerunknown's Battlegrounds + - "Playerunknown's Battlegrounds" steam: 578080 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\TslGame\Saved\Config\WindowsNoEditor\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\TslGame\\Saved\\Config\\WindowsNoEditor\\}}" PUBGNite: pageId: 100506 steam: 884200 -'PULSAR: Lost Colony': +"PULSAR: Lost Colony": pageId: 15684 steam: 252870 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/saves|Windows|{{p|game}}\Saves\}}' - - '{{Game data/saves|Linux|{{p|game}}\Saves\}}' + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\Saves\\}}" + - "{{Game data/saves|Linux|{{p|game}}\\Saves\\}}" PULSOR: pageId: 135051 steam: 1066670 templates: - - '{{Game data/saves|Windows|{{p|hkcu}}\Software\RRProductions\PULSOR\}}' + - "{{Game data/saves|Windows|{{p|hkcu}}\\Software\\RRProductions\\PULSOR\\}}" PUNK-EX: pageId: 109914 steam: 917990 PUT IN BAD: pageId: 150462 steam: 1181010 -'PUTIN VS HITLER: POLITICAL KOMBAT': +"PUTIN VS HITLER: POLITICAL KOMBAT": pageId: 156883 steam: 1209960 -'PUZZLE: ANIMALS': +"PUZZLE: ANIMALS": pageId: 127253 steam: 1023570 -'PUZZLE: BIRDS': +"PUZZLE: BIRDS": pageId: 125076 steam: 1006720 -'PUZZLE: ULTIMATE': +"PUZZLE: ULTIMATE": pageId: 135267 steam: 1079720 PWND: pageId: 64848 steam: 553660 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\PWND\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\PWND\\}}" PaPaPub: pageId: 120994 steam: 962470 @@ -118485,43 +115288,39 @@ Pac-Man 256: pageId: 34618 steam: 455400 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Hipster Sprockets\PAC-MAN256\}}' - - '{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/Hipster Sprockets/PAC-MAN256/}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Hipster Sprockets}}' - - '{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/Hipster Sprockets/PAC-MAN256/}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Hipster Sprockets\\PAC-MAN256\\}}" + - "{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/Hipster Sprockets/PAC-MAN256/}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Hipster Sprockets}}" + - "{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/Hipster Sprockets/PAC-MAN256/}}" Pac-Man All-Stars: pageId: 146517 templates: - - '{{Game data/config|Windows|{{p|game}}\Config\SetupInfo.txt}}' - - '{{Game data/saves|Windows|{{p|game}}\assets\save\gamedata.dat}}' + - "{{Game data/config|Windows|{{p|game}}\\Config\\SetupInfo.txt}}" + - "{{Game data/saves|Windows|{{p|game}}\\assets\\save\\gamedata.dat}}" Pac-Man Championship Edition 2: pageId: 36936 steam: 441380 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Pac-man CE2\{{p|uid}}\AutoSave}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Pac-man CE2\{{p|uid}}\AutoSave}}' + - "{{Game data/config|Windows|{{p|appdata}}\\Pac-man CE2\\{{p|uid}}\\AutoSave}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Pac-man CE2\\{{p|uid}}\\AutoSave}}" Pac-Man Championship Edition DX+: pageId: 10008 steam: 236450 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Namco Bandai Games\PAC-MAN Championship Edition DX+\}}' - - '{{Game data/saves|Windows|{{p|steam}}/userdata/{{p|uid}}/236450/}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Namco Bandai Games\\PAC-MAN Championship Edition DX+\\}}" + - "{{Game data/saves|Windows|{{p|steam}}/userdata/{{p|uid}}/236450/}}" Pac-Man Museum: pageId: 50624 steam: 236470 templates: - - '{{Game data/saves|Windows|{{p|steam}}\userdata\{{p|uid}}\236470\remote\pacmuseum.sav}}' + - "{{Game data/saves|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\236470\\remote\\pacmuseum.sav}}" Pac-Man Museum Plus: pageId: 177895 steam: 1665130 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\SOFTWARE\BANDAI NAMCO Entertainment Inc.\PAC-MAN MUSEUM+}}' - - >- - {{Game data/saves|Steam|{{p|localappdata}}\BANDAI NAMCO Entertainment\PAC-MAN MUSEUM - Plus\Saved\SaveGames\{{p|uid}}\}} - - >- - {{Game data/saves|Microsoft - Store|{{p|localappdata}}\Packages\NAMCOBANDAIGamesInc.PACMANMUSEUMPLUS_gdy2aq6ez762w\SystemAppData\wgs\}} + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\BANDAI NAMCO Entertainment Inc.\\PAC-MAN MUSEUM+}}" + - "{{Game data/saves|Steam|{{p|localappdata}}\\BANDAI NAMCO Entertainment\\PAC-MAN MUSEUM Plus\\Saved\\SaveGames\\{{p|uid}}\\}}" + - "{{Game data/saves|Microsoft Store|{{p|localappdata}}\\Packages\\NAMCOBANDAIGamesInc.PACMANMUSEUMPLUS_gdy2aq6ez762w\\SystemAppData\\wgs\\}}" Pac-Man Party Royale: pageId: 148169 Pac-Man Pizza Parlor: @@ -118529,22 +115328,18 @@ Pac-Man Pizza Parlor: Pac-Man World 2: pageId: 52030 templates: - - '{{Game data/config|Windows|{{p|game}}\settings.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\saves\PacSave}}' + - "{{Game data/config|Windows|{{p|game}}\\settings.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\saves\\PacSave}}" Pac-Man World 3: pageId: 101755 templates: - - >- - {{Game data/config|Windows|{{p|userprofile}}\Namco\Pac-Man World 3\config.ini|{{p|appdata}}\Electronic - Arts\Pac-Man World 3\config.ini}} - - >- - {{Game data/saves|Windows|{{p|userprofile}}\Namco\Pac-Man World 3\PMW3*|{{p|appdata}}\Electronic Arts\Pac-Man - World 3\PMW3*}} + - "{{Game data/config|Windows|{{p|userprofile}}\\Namco\\Pac-Man World 3\\config.ini|{{p|appdata}}\\Electronic Arts\\Pac-Man World 3\\config.ini}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Namco\\Pac-Man World 3\\PMW3*|{{p|appdata}}\\Electronic Arts\\Pac-Man World 3\\PMW3*}}" Pac-Man World Rally: pageId: 101717 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Pac-Man World Rally\Settings.ini}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Pac-Man World Rally\PMR\PMR.sav}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Pac-Man World Rally\\Settings.ini}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Pac-Man World Rally\\PMR\\PMR.sav}}" Pac-Man World Re-Pac: pageId: 178581 renamedFrom: @@ -118553,18 +115348,18 @@ Pac-Man World Re-Pac: - Pac-Man World Re-PAC steam: 1859470 templates: - - '{{Game data/saves|Windows|{{p|localappdata}}\BANDAI NAMCO Entertainment\PAC-MAN WORLD Re-Pac}}' + - "{{Game data/saves|Windows|{{p|localappdata}}\\BANDAI NAMCO Entertainment\\PAC-MAN WORLD Re-Pac}}" Pac-Man and the Ghostly Adventures: pageId: 24149 steam: 239720 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Monkey Bar Games\PacMan\Settings\}}' - - '{{Game data/saves|Windows|{{p|steam}}\userdata\{{p|uid}}\239720\remote\}}' -'Pac-Man: Adventures in Time': + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Monkey Bar Games\\PacMan\\Settings\\}}" + - "{{Game data/saves|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\239720\\remote\\}}" +"Pac-Man: Adventures in Time": pageId: 65179 templates: - - '{{Game data/config|Windows|{{P|game}}\options.dat}}' - - '{{Game data/saves|Windows|{{P|game}}\slot#.dat}}' + - "{{Game data/config|Windows|{{P|game}}\\options.dat}}" + - "{{Game data/saves|Windows|{{P|game}}\\slot#.dat}}" Pac-in-Time: pageId: 162097 PacaPlus: @@ -118576,8 +115371,8 @@ Pacer: - Formula Fusion steam: 389670 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\FormulaFusion\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\FormulaFusion\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\FormulaFusion\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\FormulaFusion\\Saved\\SaveGames\\}}" Pachansky Mathematics 2+2=8: pageId: 108408 steam: 918260 @@ -118586,8 +115381,8 @@ Pacific General: pageId: 131866 steam: 1741130 templates: - - '{{Game data/config|Windows|{{p|game}}\data\PREFS.DAT}}' - - '{{Game data/saves|Windows|{{p|game}}\Save\}}' + - "{{Game data/config|Windows|{{p|game}}\\data\\PREFS.DAT}}" + - "{{Game data/saves|Windows|{{p|game}}\\Save\\}}" Pacific Liberation Force: pageId: 49645 steam: 313190 @@ -118595,27 +115390,25 @@ Pacific Storm: pageId: 23733 steam: 11250 templates: - - '{{Game data/config|Windows|{{p|game}}\config}}' - - '{{Game data/saves|Windows|{{p|game}}\save\{{p|uid}}\}}' + - "{{Game data/config|Windows|{{p|game}}\\config}}" + - "{{Game data/saves|Windows|{{p|game}}\\save\\{{p|uid}}\\}}" Pacific Storm 6 - Battle for Normandy: pageId: 121311 steam: 870520 -'Pacific Storm: Allies': +"Pacific Storm: Allies": pageId: 41343 steam: 11260 Pacific Strike: pageId: 64433 templates: - - '{{Game data/config|DOS|{{p|game}}\PS.CFG}}' - - '{{Game data/saves|DOS|{{p|game}}\*.SAV}}' + - "{{Game data/config|DOS|{{p|game}}\\PS.CFG}}" + - "{{Game data/saves|DOS|{{p|game}}\\*.SAV}}" Pacify: pageId: 128012 steam: 967050 templates: - - >- - {{Game - data/config|Windows|{{P|localappdata}}\Pacify\Saved\Config\WindowsNoEditor\|{{P|localappdata}}\Pacify\Saved\SaveGames\videosettings.sav}} - - '{{Game data/saves|Windows|{{P|localappdata}}\Pacify\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\Pacify\\Saved\\Config\\WindowsNoEditor\\|{{P|localappdata}}\\Pacify\\Saved\\SaveGames\\videosettings.sav}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Pacify\\Saved\\SaveGames\\}}" Package Rush: pageId: 182857 steam: 1972400 @@ -118652,17 +115445,17 @@ Paganitzu: pageId: 30437 steam: 358230 templates: - - '{{Game data/saves|DOS|{{p|game}}\P1_GAME*.SAV|{{p|game}}\P1_HIGH.SCO}}' + - "{{Game data/saves|DOS|{{p|game}}\\P1_GAME*.SAV|{{p|game}}\\P1_HIGH.SCO}}" Pagans Must Die: pageId: 132318 steam: 1024720 -'Pahelika: Revelations HD': +"Pahelika: Revelations HD": pageId: 48553 steam: 333650 templates: - - '{{Game data/config|Windows|{{P|appdata}}\IronCode\PahelikaRv\cfg.xml}}' - - '{{Game data/saves|Windows|{{P|appdata}}\IronCode\PahelikaRv\*\}}' -'Pahelika: Secret Legends': + - "{{Game data/config|Windows|{{P|appdata}}\\IronCode\\PahelikaRv\\cfg.xml}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\IronCode\\PahelikaRv\\*\\}}" +"Pahelika: Secret Legends": pageId: 48895 steam: 336020 Pain Train: @@ -118687,39 +115480,39 @@ Painkiller: steamSide: - 3200 templates: - - '{{Game data/config|Windows|{{p|game}}\Bin\config.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\SaveGames}}' -'Painkiller: Hell & Damnation': + - "{{Game data/config|Windows|{{p|game}}\\Bin\\config.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\SaveGames}}" +"Painkiller: Hell & Damnation": pageId: 12565 steam: 214870 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Painkiller Hell and Damnation\PKHDGame\Config\}}' - - '{{Game data/config|OS X|Painkiller Hell & Damnation.app/Contents/Resources/PKHDGame/}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/Painkiller Hell and Damnation/PKHDGame/Config/}}' - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{P|uid}}/214870/remote/}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Steam/ACTiVATED/214870/remote/}}' -'Painkiller: Overdose': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Painkiller Hell and Damnation\\PKHDGame\\Config\\}}" + - "{{Game data/config|OS X|Painkiller Hell & Damnation.app/Contents/Resources/PKHDGame/}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/Painkiller Hell and Damnation/PKHDGame/Config/}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{P|uid}}/214870/remote/}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Steam/ACTiVATED/214870/remote/}}" +"Painkiller: Overdose": gog: 1879874988 pageId: 19121 steam: 3270 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Painkiller Overdose}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Painkiller Overdose\Saves}}' -'Painkiller: Recurring Evil': + - "{{Game data/config|Windows|{{p|localappdata}}\\Painkiller Overdose}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Painkiller Overdose\\Saves}}" +"Painkiller: Recurring Evil": pageId: 40828 steam: 206760 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Painkiller Recurring Evil\RE.ini}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Painkiller Recurring Evil\Saves\}}' -'Painkiller: Redemption': + - "{{Game data/config|Windows|{{p|localappdata}}\\Painkiller Recurring Evil\\RE.ini}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Painkiller Recurring Evil\\Saves\\}}" +"Painkiller: Redemption": pageId: 41012 steam: 65560 -'Painkiller: Resurrection': +"Painkiller: Resurrection": pageId: 41215 steam: 39560 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Painkiller Resurrection\Resurrection.ini}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\Painkiller Resurrection\Saves}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\Painkiller Resurrection\\Resurrection.ini}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Painkiller Resurrection\\Saves}}" Paint It Back: pageId: 37181 renamedFrom: @@ -118741,14 +115534,10 @@ Paint the Town Red: pageId: 37551 steam: 337320 templates: - - >- - {{Game data/config|Windows|{{P|userprofile\appdata\locallow}}\South East Games\Paint The Town - Red\Settings\settings.dat|{{P|hkcu}}\Software\South East Games\Paint The Town Red\}} - - '{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/South East Games/Paint The Town Red}}' - - >- - {{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\South East Games\Paint The Town - Red\SaveData\savedata.dat}} - - '{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/South East Games/Paint The Town Red/SaveData}}' + - "{{Game data/config|Windows|{{P|userprofile\\appdata\\locallow}}\\South East Games\\Paint The Town Red\\Settings\\settings.dat|{{P|hkcu}}\\Software\\South East Games\\Paint The Town Red\\}}" + - "{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/South East Games/Paint The Town Red}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\South East Games\\Paint The Town Red\\SaveData\\savedata.dat}}" + - "{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/South East Games/Paint The Town Red/SaveData}}" PaintPool: pageId: 66099 steam: 675710 @@ -118789,60 +115578,60 @@ Painty Mob: Pairs: pageId: 75596 steam: 732950 -'Pajama Sam 2: Thunder and Lightning Aren''t So Frightening': +"Pajama Sam 2: Thunder and Lightning Aren't So Frightening": gog: 1434535097 gogSide: - 1434542135 pageId: 36371 steam: 292780 templates: - - '{{Game data/saves|Windows|{{p|game}}\Saves\pajama2-pajama2.*}}' -'Pajama Sam 3: You Are What You Eat from Your Head to Your Feet': + - "{{Game data/saves|Windows|{{p|game}}\\Saves\\pajama2-pajama2.*}}" +"Pajama Sam 3: You Are What You Eat from Your Head to Your Feet": gog: 1434536205 gogSide: - 1435136567 pageId: 36373 steam: 292800 -'Pajama Sam 4: Life Is Rough When You Lose Your Stuff!': +"Pajama Sam 4: Life Is Rough When You Lose Your Stuff!": gog: 1434538201 gogSide: - 1435136567 pageId: 36375 steam: 292820 templates: - - '{{Game data/config|Windows|{{P|game}}\SaveGames\game_options.dat}}' - - '{{Game data/saves|Windows|{{P|game}}\SaveGames\PJ_LifeTough_save_*.*}}' -Pajama Sam's Lost & Found: + - "{{Game data/config|Windows|{{P|game}}\\SaveGames\\game_options.dat}}" + - "{{Game data/saves|Windows|{{P|game}}\\SaveGames\\PJ_LifeTough_save_*.*}}" +"Pajama Sam's Lost & Found": gog: 1434535284 gogSide: - 1434542135 pageId: 36369 steam: 292860 -Pajama Sam's Sock Works: +"Pajama Sam's Sock Works": gog: 1434538373 gogSide: - 1435136567 pageId: 36377 steam: 292840 templates: - - '{{Game data/config|Windows|{{P|game}}\ScummVM_Windows\scummvm-pajamasamssockworks.ini}}' - - '{{Game data/saves|Windows|{{P|game}}\Saves\}}' -'Pajama Sam: Games to Play on Any Day': + - "{{Game data/config|Windows|{{P|game}}\\ScummVM_Windows\\scummvm-pajamasamssockworks.ini}}" + - "{{Game data/saves|Windows|{{P|game}}\\Saves\\}}" +"Pajama Sam: Games to Play on Any Day": pageId: 36379 steam: 317020 -'Pajama Sam: No Need to Hide When It''s Dark Outside': +"Pajama Sam: No Need to Hide When It's Dark Outside": gog: 1435735429 gogSide: - 1434542135 pageId: 16849 renamedFrom: - - 'Pajama Sam: No Need To Hide When It''s Dark Outside' + - "Pajama Sam: No Need To Hide When It's Dark Outside" steam: 283960 templates: - - '{{Game data/config|Linux|{{p|game}}/ScummVM_Linux/scummvm-pajamasam1.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\Saves\}}' - - '{{Game data/saves|OS X|{{p|game}}/Saves/}}' - - '{{Game data/saves|Linux|{{p|game}}/Saves/}}' + - "{{Game data/config|Linux|{{p|game}}/ScummVM_Linux/scummvm-pajamasam1.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\Saves\\}}" + - "{{Game data/saves|OS X|{{p|game}}/Saves/}}" + - "{{Game data/saves|Linux|{{p|game}}/Saves/}}" Pakicetus: pageId: 152915 steam: 1105240 @@ -118868,11 +115657,11 @@ Paladin Duty - Knights and Blades: Paladin Slayer: pageId: 144739 steam: 1142070 -'Paladins: Champions of the Realm': +"Paladins: Champions of the Realm": pageId: 40285 steam: 444090 templates: - - '{{Game data/config|Windows|{{p|game}}\ChaosGame\|{{P|userprofile\Documents}}\My Games\Paladins\ChaosGame\Config}}' + - "{{Game data/config|Windows|{{p|game}}\\ChaosGame\\|{{P|userprofile\\Documents}}\\My Games\\Paladins\\ChaosGame\\Config}}" Pale Echoes: pageId: 45330 steam: 377190 @@ -118892,10 +115681,10 @@ Paleo Pines: pageId: 190228 steam: 1202200 templates: - - '{{Game data/config|Windows|C:\Users\Public\Documents\Steam\RUNE\1202200}}' - - '{{Game data/config|Linux|{{P|linuxhome}}/.config/unity3d/Italic Pig/Paleo Pines/prefs}}' - - '{{Game data/saves|Windows|C:\Users\Public\Documents\Steam\RUNE\1202200}}' - - '{{Game data/saves|Linux|{{P|steam}}/userdata/{{P|uid}}/1202200/remote/PaleoPinesData}}' + - "{{Game data/config|Windows|C:\\Users\\Public\\Documents\\Steam\\RUNE\\1202200}}" + - "{{Game data/config|Linux|{{P|linuxhome}}/.config/unity3d/Italic Pig/Paleo Pines/prefs}}" + - "{{Game data/saves|Windows|C:\\Users\\Public\\Documents\\Steam\\RUNE\\1202200}}" + - "{{Game data/saves|Linux|{{P|steam}}/userdata/{{P|uid}}/1202200/remote/PaleoPinesData}}" Paleocalypse: pageId: 88794 steam: 817890 @@ -118903,21 +115692,21 @@ Palinurus: pageId: 54618 steam: 458760 templates: - - '{{Game data/config|Windows|{{p|game}}\renpy\config.py}}' - - '{{Game data/saves|Windows|{{p|appdata}}\RenPy\Turnip-1450744908\}}' + - "{{Game data/config|Windows|{{p|game}}\\renpy\\config.py}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\RenPy\\Turnip-1450744908\\}}" Palmyra Orphanage: pageId: 141340 steam: 1085160 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\PalmyraOrphanage\Saved}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\PalmyraOrphanage\Saved}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\PalmyraOrphanage\\Saved}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\PalmyraOrphanage\\Saved}}" Palworld: pageId: 187795 steam: 1623730 PamPam Kana Students: pageId: 144029 steam: 1127100 -'Pamali: Indonesian Folklore Horror': +"Pamali: Indonesian Folklore Horror": pageId: 95238 steam: 854570 Pamp Quest: @@ -118934,16 +115723,16 @@ Pan-Pan: pageId: 36437 steam: 471920 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\Spelkraft Sthlm AB\PAN-PAN}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Spelkraft Sthlm AB/PAN-PAN}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Spelkraft Sthlm AB/PAN-PAN}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Spelkraft Sthlm AB\\PAN-PAN}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Spelkraft Sthlm AB/PAN-PAN}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Spelkraft Sthlm AB/PAN-PAN}}" PanGEMic: pageId: 55692 steam: 547540 -'Panacea: Last Will': +"Panacea: Last Will": pageId: 80384 steam: 773420 -Panco's Journey: +"Panco's Journey": pageId: 109834 steam: 916380 Panda Hero: @@ -118961,7 +115750,7 @@ Panda man: Pandamonia: pageId: 125131 steam: 1004210 -'Pandarama: The Lost Toys': +"Pandarama: The Lost Toys": pageId: 54409 steam: 562660 Pandas Die: @@ -118970,35 +115759,35 @@ Pandas Die: Pandemic Express: pageId: 128224 steam: 939510 -'Pandemic: The Board Game': +"Pandemic: The Board Game": pageId: 62336 steam: 622440 Pandemonium 2: gog: 1207659238 pageId: 131776 templates: - - '{{Game data/saves|Windows|\HKEY_CURRENT_USER\Software\Crystal Dynamics\Pandemonium 2\Game number}}' + - "{{Game data/saves|Windows|\\HKEY_CURRENT_USER\\Software\\Crystal Dynamics\\Pandemonium 2\\Game number}}" Pandemonium!: gog: 1207659054 pageId: 40579 steam: 243020 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\SOFTWARE\Crystal Dynamics\Pandemonium}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\Crystal Dynamics\\Pandemonium}}" Pandora: pageId: 89695 steam: 791260 -Pandora's Room: +"Pandora's Room": pageId: 43895 steam: 440720 -'Pandora: First Contact': +"Pandora: First Contact": gog: 1330135151 pageId: 34769 steam: 287580 steamSide: - 312380 templates: - - '{{Game data/config|Linux|{{P|xdgconfighome}}/Proxy Studios/Pandora/Config/}}' - - '{{Game data/saves|Linux|{{P|xdgconfighome}}/Proxy Studios/Pandora/SavedGames/}}' + - "{{Game data/config|Linux|{{P|xdgconfighome}}/Proxy Studios/Pandora/Config/}}" + - "{{Game data/saves|Linux|{{P|xdgconfighome}}/Proxy Studios/Pandora/SavedGames/}}" Pandum online: pageId: 40050 steam: 469930 @@ -119009,7 +115798,7 @@ Pang Adventures: pageId: 43544 steam: 415150 templates: - - '{{Game data/saves|Windows|{{p|game}}/SaveData/{{p|uid}}}}' + - "{{Game data/saves|Windows|{{p|game}}/SaveData/{{p|uid}}}}" Pang and Bang: pageId: 146050 steam: 958980 @@ -119026,7 +115815,7 @@ Panic Diet!!: Panic Pump - Can You Save Them All?: pageId: 77098 steam: 463410 -'Panic Room 2: Hide and Seek': +"Panic Room 2: Hide and Seek": pageId: 99594 steam: 873960 Panic at Multiverse High!: @@ -119039,8 +115828,8 @@ Pankapu: pageId: 39053 steam: 418670 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Too Kind Studio\Pankapu\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Too Kind Studio\Pankapu\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Too Kind Studio\\Pankapu\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Too Kind Studio\\Pankapu\\}}" Panoptes: pageId: 37213 steam: 421910 @@ -119059,19 +115848,19 @@ Panther VR: Pantropy: pageId: 65762 steam: 677180 -'Pantsu Hunter: Back to the 90s': +"Pantsu Hunter: Back to the 90s": pageId: 125667 steam: 953900 templates: - - '{{Game data/saves|Windows|{{p|hkcu}}\Software\Ascension Dream\Pantsu Hunter\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Preferences/unity.Ascension Dream.Pantsu Hunter.plist}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Ascension Dream/Pantsu Hunter}}' + - "{{Game data/saves|Windows|{{p|hkcu}}\\Software\\Ascension Dream\\Pantsu Hunter\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Preferences/unity.Ascension Dream.Pantsu Hunter.plist}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Ascension Dream/Pantsu Hunter}}" Panty Party: pageId: 54525 steam: 562410 templates: - - '{{Game data/config|Windows|{{p|game}}\PantyParty_Data\Config.dat}}' - - '{{Game data/saves|Windows|{{p|game}}\PantyParty_Data\SaveFile.dat}}' + - "{{Game data/config|Windows|{{p|game}}\\PantyParty_Data\\Config.dat}}" + - "{{Game data/saves|Windows|{{p|game}}\\PantyParty_Data\\SaveFile.dat}}" Panzar: pageId: 40509 steam: 240320 @@ -119087,9 +115876,9 @@ Panzer Corps: pageId: 34805 steam: 268400 steamSide: + - 276550 - 276551 - 276552 - - 276550 - 279960 - 279961 - 279962 @@ -119105,10 +115894,8 @@ Panzer Corps: - 452981 - 452982 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Panzer - Corps\|{{P|hkcu}}\Software\Slitherine\Panzer Corps\}} - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Panzer Corps\Save\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Panzer Corps\\|{{P|hkcu}}\\Software\\Slitherine\\Panzer Corps\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Panzer Corps\\Save\\}}" Panzer Corps 2: gog: 1698452155 gogSide: @@ -119117,48 +115904,46 @@ Panzer Corps 2: pageId: 135812 steam: 1072040 templates: - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\My Games\Panzer Corps 2\Saves}}' + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\My Games\\Panzer Corps 2\\Saves}}" Panzer Doctrine: pageId: 73035 steam: 709880 Panzer Dragoon: pageId: 12143 templates: - - '{{Game data/config|Windows|{{p|windir}}\PANZERDG.INI}}' -'Panzer Dragoon: Remake': + - "{{Game data/config|Windows|{{p|windir}}\\PANZERDG.INI}}" +"Panzer Dragoon: Remake": gog: 1248489555 pageId: 148404 renamedFrom: - Panzer Dragoon (2020) steam: 1178880 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\SOFTWARE\MegaPixel Studio SA\Panzer Dragoon: Remake}}' - - '{{Game data/saves|GOG.com|{{p|userprofile\Documents}}\PanzerDragoonRemake\savedGames.gd}}' - - >- - {{Game data/saves|Steam|{{p|userprofile\appdata\locallow}}\MegaPixel Studio SA\Panzer Dragoon_ - Remake\savedGames.gd}} + - "{{Game data/config|Windows|{{P|hkcu}}\\SOFTWARE\\MegaPixel Studio SA\\Panzer Dragoon: Remake}}" + - "{{Game data/saves|GOG.com|{{p|userprofile\\Documents}}\\PanzerDragoonRemake\\savedGames.gd}}" + - "{{Game data/saves|Steam|{{p|userprofile\\appdata\\locallow}}\\MegaPixel Studio SA\\Panzer Dragoon_ Remake\\savedGames.gd}}" Panzer Elite: gog: 1207658716 pageId: 131942 -'Panzer Elite Action: Fields of Glory': +"Panzer Elite Action: Fields of Glory": pageId: 50254 steam: 292420 templates: - - '{{Game data/config|Windows|{{p|game}}\settings.db}}' - - '{{Game data/saves|Windows|{{p|game}}\data\save\}}' + - "{{Game data/config|Windows|{{p|game}}\\settings.db}}" + - "{{Game data/saves|Windows|{{p|game}}\\data\\save\\}}" Panzer General: pageId: 176747 Panzer General 3D Assault: gog: 1207658866 pageId: 131869 templates: - - '{{Game data/saves|Windows|{{p|game}}\Saves}}' + - "{{Game data/saves|Windows|{{p|game}}\\Saves}}" Panzer General II: gog: 1207658871 pageId: 3198 templates: - - '{{Game data/saves|Windows|{{p|game}}\SAVE}}' -'Panzer General III: Scorched Earth': + - "{{Game data/saves|Windows|{{p|game}}\\SAVE}}" +"Panzer General III: Scorched Earth": pageId: 177931 Panzer Hearts: pageId: 92115 @@ -119174,9 +115959,9 @@ Panzer Paladin: pageId: 162158 steam: 975510 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\Tribute Games\PanzerPaladin\Settings.cfg}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/Tribute Games/PanzerPaladin/Settings.cfg}}' - - '{{Game data/saves|Steam|{{P|steam}}\userdata\{{P|uid}}\975510\remote\GameSave*.sav}}' + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\Tribute Games\\PanzerPaladin\\Settings.cfg}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/Tribute Games/PanzerPaladin/Settings.cfg}}" + - "{{Game data/saves|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\975510\\remote\\GameSave*.sav}}" Panzer Panic VR: pageId: 59279 steam: 589170 @@ -119187,20 +115972,20 @@ Panzer Tactics HD: pageId: 50222 steam: 277630 templates: - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\panzertacticshd\}}' + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\panzertacticshd\\}}" Panzer Waltz: pageId: 80593 steam: 771040 Panzer Warfare: pageId: 36762 steam: 513880 -'Panzermadels: Tank Dating Simulator': +"Panzermadels: Tank Dating Simulator": pageId: 37925 steam: 379980 -Papa's Freezeria Deluxe: +"Papa's Freezeria Deluxe": pageId: 186557 steam: 2291760 -Papa's Time Machine: +"Papa's Time Machine": pageId: 91448 steam: 670320 Paparazzi: @@ -119209,7 +115994,7 @@ Paparazzi: Paparazzi Simulator: pageId: 154404 steam: 1202340 -'Paparazzi!: Tales of Tinseltown': +"Paparazzi!: Tales of Tinseltown": pageId: 177406 Paper - A Game of Folding: pageId: 149093 @@ -119218,8 +116003,8 @@ Paper Beast: pageId: 165279 steam: 1232570 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\SOFTWARE\Pixel Reef\Paper Beast\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Pixel Reef\Paper Beast\PaperBeast.save}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\Pixel Reef\\Paper Beast\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Pixel Reef\\Paper Beast\\PaperBeast.save}}" Paper Beast - Folded Edition: gog: 1148746505 pageId: 163967 @@ -119227,8 +116012,8 @@ Paper Beast - Folded Edition: - Paper Beast steam: 1403830 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\SOFTWARE\Pixel Reef\Paper Beast\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Pixel Reef\Paper Beast\PaperBeast.save}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\Pixel Reef\\Paper Beast\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Pixel Reef\\Paper Beast\\PaperBeast.save}}" Paper Cut Mansion: gog: 1702566435 pageId: 182965 @@ -119255,35 +116040,35 @@ Paper Monsters Recut: pageId: 31563 steam: 314540 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\SOFTWARE\Mobot Studios\PaperMonstersRecut_Win\}}' - - '{{Game data/saves|Windows|{{p|hkcu}}\SOFTWARE\Mobot Studios\PaperMonstersRecut_Win\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\Mobot Studios\\PaperMonstersRecut_Win\\}}" + - "{{Game data/saves|Windows|{{p|hkcu}}\\SOFTWARE\\Mobot Studios\\PaperMonstersRecut_Win\\}}" Paper Planets: pageId: 104503 steam: 887040 Paper Quest: pageId: 59488 steam: 590570 -'Paper Shakespeare RPG: Saga of the Five Kingdoms': +"Paper Shakespeare RPG: Saga of the Five Kingdoms": pageId: 136070 steam: 828760 -'Paper Shakespeare: Loves Labor(s) Lost': +"Paper Shakespeare: Loves Labor(s) Lost": pageId: 95234 steam: 854540 -'Paper Shakespeare: Modern Warfare': +"Paper Shakespeare: Modern Warfare": pageId: 142105 steam: 1082760 -'Paper Shakespeare: Stick Julius Caesar (with a dagger)': +"Paper Shakespeare: Stick Julius Caesar (with a dagger)": pageId: 105213 steam: 854530 -'Paper Shakespeare: Stick Merchant of Venice': +"Paper Shakespeare: Stick Merchant of Venice": pageId: 93987 steam: 852750 -'Paper Shakespeare: To Date or Not To Date? 2': +"Paper Shakespeare: To Date or Not To Date? 2": pageId: 154353 renamedFrom: - - 'Dragongate: The Fantasy Election/Dating Sim' + - "Dragongate: The Fantasy Election/Dating Sim" steam: 1177650 -'Paper Shakespeare: To Date or Not to Date?': +"Paper Shakespeare: To Date or Not to Date?": pageId: 89616 steam: 702940 Paper Sorcerer: @@ -119291,8 +116076,8 @@ Paper Sorcerer: pageId: 34392 steam: 263560 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\UltraRunaway\Paper Sorcerer\}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\UltraRunaway\Paper Sorcerer\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\UltraRunaway\\Paper Sorcerer\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\UltraRunaway\\Paper Sorcerer\\}}" Paper Toss VR: pageId: 58983 steam: 605860 @@ -119303,8 +116088,8 @@ Paper Train Traffic: pageId: 44257 steam: 447310 templates: - - '{{Game data/config|Windows|{{p|appdata}}\isTomGames\pt_traffic\game.cfg}}' - - '{{Game data/saves|Windows|{{p|appdata}}\isTomGames\pt_traffic\mapinfo.dat}}' + - "{{Game data/config|Windows|{{p|appdata}}\\isTomGames\\pt_traffic\\game.cfg}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\isTomGames\\pt_traffic\\mapinfo.dat}}" Paper Valley: pageId: 95317 steam: 861240 @@ -119314,15 +116099,15 @@ PaperCat: PaperDolls: pageId: 93210 steam: 851050 -'Paperback: The Game': +"Paperback: The Game": pageId: 76189 steam: 710700 Paperball: pageId: 156803 steam: 1198510 templates: - - '{{Game data/config|Windows|{{p|game}}\GameSettings.dat}}' - - '{{Game data/saves|Windows|{{p|game}}\GameData.dat}}' + - "{{Game data/config|Windows|{{p|game}}\\GameSettings.dat}}" + - "{{Game data/saves|Windows|{{p|game}}\\GameData.dat}}" Paperbark: pageId: 122308 steam: 916900 @@ -119330,34 +116115,32 @@ Paperbound: pageId: 48330 steam: 339690 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\Paperbound\Settings\}}' + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\Paperbound\\Settings\\}}" Paperboy 2: pageId: 16945 templates: - - '{{Game data/config|DOS|{{p|game}}\}}' + - "{{Game data/config|DOS|{{p|game}}\\}}" Papercraft: pageId: 137169 steam: 905660 -'Papers, Please': +"Papers, Please": gog: 1207659209 pageId: 9207 steam: 239030 templates: - - '{{Game data/config|Windows|{{p|appdata}}\3909\PapersPlease\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/PapersPlease/}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/3909/PapersPlease/}}' - - '{{Game data/saves|Windows|{{p|appdata}}\3909\PapersPlease\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/PapersPlease/}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/3909/PapersPlease/}}' + - "{{Game data/config|Windows|{{p|appdata}}\\3909\\PapersPlease\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/PapersPlease/}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/3909/PapersPlease/}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\3909\\PapersPlease\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/PapersPlease/}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/3909/PapersPlease/}}" Papetura: gog: 1139971699 pageId: 145199 steam: 593640 templates: - - >- - {{Game - data/config|Windows|{{P|userprofile\appdata\locallow}}\Petums\Papetura\settings.dat|{{P|hkcu}}\SOFTWARE\Petums\Papetura\}} - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Petums\Papetura\pape.tura}}' + - "{{Game data/config|Windows|{{P|userprofile\\appdata\\locallow}}\\Petums\\Papetura\\settings.dat|{{P|hkcu}}\\SOFTWARE\\Petums\\Papetura\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Petums\\Papetura\\pape.tura}}" Papich - The Game Ep.1: pageId: 80390 steam: 766920 @@ -119365,11 +116148,11 @@ Papo & Yo: pageId: 6077 steam: 227080 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\PapoYo\PYGame\Config\}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/Minority/PapoYo/PYGame/Config/}}' - - '{{Game data/saves|Windows|{{P|game}}\Binaries\Win32\}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/Minority/PapoYo/PYGame/}}' - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{P|uid}}/227080/remote/}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\PapoYo\\PYGame\\Config\\}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/Minority/PapoYo/PYGame/Config/}}" + - "{{Game data/saves|Windows|{{P|game}}\\Binaries\\Win32\\}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/Minority/PapoYo/PYGame/}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{P|uid}}/227080/remote/}}" Papper Balls: pageId: 114662 steam: 946170 @@ -119379,12 +116162,12 @@ ParaLily: ParaWorld: pageId: 183192 templates: - - '{{Game data/config|Windows|{{P|appdata}}\SpieleEntwicklungsKombinat\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\SpieleEntwicklungsKombinat\Paraworld\SaveGames\}}' + - "{{Game data/config|Windows|{{P|appdata}}\\SpieleEntwicklungsKombinat\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\SpieleEntwicklungsKombinat\\Paraworld\\SaveGames\\}}" Parabolus: pageId: 80689 steam: 703100 -'Parachronism: Order of Chaos': +"Parachronism: Order of Chaos": pageId: 143817 steam: 1131430 Paradiddle: @@ -119395,10 +116178,10 @@ Paradigm: pageId: 58680 steam: 600370 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Jacob_Janerka\Paradigm\config.ini}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/Jacob_Janerka/Paradigm/config.ini}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Jacob_Janerka\Paradigm\Savegames\}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/Jacob_Janerka/Paradigm/Savegames/}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Jacob_Janerka\\Paradigm\\config.ini}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/Jacob_Janerka/Paradigm/config.ini}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Jacob_Janerka\\Paradigm\\Savegames\\}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/Jacob_Janerka/Paradigm/Savegames/}}" Paradigm Blast: pageId: 125438 steam: 978980 @@ -119411,8 +116194,8 @@ Paradigm Shift: Paradise: pageId: 129137 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Paradise}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Paradise}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Paradise}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Paradise}}" Paradise (2018): pageId: 89462 steam: 789050 @@ -119435,22 +116218,20 @@ Paradise Killer: pageId: 157164 steam: 1160220 templates: - - >- - {{Game - data/config|Windows|{{P|localappdata}}\ParadiseKiller\Saved\SaveGames\PK_PlayerSettings.sav|{{p|localappdata}}\ParadiseKiller\Saved\Config\WindowsNoEditor\}} - - '{{Game data/saves|Windows|{{p|localappdata}}\ParadiseKiller\Saved\SaveGames\PKSlot_*.sav}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\ParadiseKiller\\Saved\\SaveGames\\PK_PlayerSettings.sav|{{p|localappdata}}\\ParadiseKiller\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\ParadiseKiller\\Saved\\SaveGames\\PKSlot_*.sav}}" Paradise Lost: gog: 1386025601 pageId: 161803 renamedFrom: - - 'Paradise Lost: The Last Story on Earth' + - "Paradise Lost: The Last Story on Earth" steam: 982720 templates: - - '{{Game data/config|Windows|{{p|LOCALAPPDATA}}\ParadiseLost\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{p|LOCALAPPDATA}}\ParadiseLost\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{p|LOCALAPPDATA}}\\ParadiseLost\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{p|LOCALAPPDATA}}\\ParadiseLost\\Saved\\SaveGames\\}}" Paradise Lost (PolyAmorous): pageId: 137402 -'Paradise Lost: FPS Cosmic Horror Game': +"Paradise Lost: FPS Cosmic Horror Game": pageId: 76601 renamedFrom: - Paradise Lost @@ -119459,7 +116240,7 @@ Paradise Trails: pageId: 178931 steam: 1746650 templates: - - '{{Game data/saves|Windows|{{p|hkcu}}\Software\HFTGames\ParadiseTrails\}}' + - "{{Game data/saves|Windows|{{p|hkcu}}\\Software\\HFTGames\\ParadiseTrails\\}}" Paradox Escape Route: pageId: 148613 steam: 1106730 @@ -119470,8 +116251,8 @@ Paradox Soul: pageId: 81627 steam: 610570 templates: - - '{{Game data/config|Windows|{{P|game}}\options.ini}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\Paradox_Soul\}}' + - "{{Game data/config|Windows|{{P|game}}\\options.ini}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Paradox_Soul\\}}" Paradox Vector: pageId: 132432 steam: 1051840 @@ -119484,14 +116265,14 @@ Paradox of the Cryptomancers: Paragon: pageId: 70456 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\OrionGame\Saved\Config\WindowsClient\GameUserSettings.ini}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\OrionGame\Saved\Cloud\}}' -'Paragon: The Overprime': + - "{{Game data/config|Windows|{{p|localappdata}}\\OrionGame\\Saved\\Config\\WindowsClient\\GameUserSettings.ini}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\OrionGame\\Saved\\Cloud\\}}" +"Paragon: The Overprime": pageId: 182539 steam: 1531430 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Overprime\Saved\Config\WindowsClient\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Overprime\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Overprime\\Saved\\Config\\WindowsClient\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Overprime\\Saved\\SaveGames\\}}" Paralives: pageId: 157497 steam: 1118520 @@ -119524,30 +116305,30 @@ Paranautical Activity: pageId: 10098 steam: 250580 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Code Avarice\Paranautical Activity}}' - - '{{Game data/saves|Steam|{{p|game}}/}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Code Avarice\\Paranautical Activity}}" + - "{{Game data/saves|Steam|{{p|game}}/}}" Paranoia: pageId: 76433 templates: - - '{{Game data/config|Windows|{{P|game}}\paranoia\config.cfg}}' - - '{{Game data/saves|Windows|{{P|game}}\paranoia\save}}' -'Paranoia 2: Savior': + - "{{Game data/config|Windows|{{P|game}}\\paranoia\\config.cfg}}" + - "{{Game data/saves|Windows|{{P|game}}\\paranoia\\save}}" +"Paranoia 2: Savior": pageId: 152433 templates: - - '{{Game data/config|Windows|{{P|game}}\paranoia\config.cfg}}' - - '{{Game data/saves|Windows|{{P|game}}\paranoia\save}}' -'Paranoia: Deliver Me': + - "{{Game data/config|Windows|{{P|game}}\\paranoia\\config.cfg}}" + - "{{Game data/saves|Windows|{{P|game}}\\paranoia\\save}}" +"Paranoia: Deliver Me": pageId: 137365 steam: 970600 -'Paranoia: Deliver Me (Chinese)': +"Paranoia: Deliver Me (Chinese)": pageId: 87493 steam: 779640 -'Paranoia: Happiness is Mandatory': +"Paranoia: Happiness is Mandatory": pageId: 135822 steam: 858030 templates: - - '{{Game data/config|Windows|{{P|userprofile}}\AppData\LocalLow\Black Shamrock\Paranoia_ Happiness Is Mandatory}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Black Shamrock\Paranoia_ Happiness Is Mandatory}}' + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Black Shamrock\\Paranoia_ Happiness Is Mandatory}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Black Shamrock\\Paranoia_ Happiness Is Mandatory}}" Paranoid: pageId: 121957 renamedFrom: @@ -119557,16 +116338,16 @@ Paranormal: pageId: 9960 steam: 246300 templates: - - '{{Game data/config|Windows|{{p|game}}\UDKGame\Config}}' -'Paranormal Activity: The Lost Soul': + - "{{Game data/config|Windows|{{p|game}}\\UDKGame\\Config}}" +"Paranormal Activity: The Lost Soul": pageId: 59215 steam: 467660 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\Saved Games\Paranormal Activity The Lost Soul\}}' -'Paranormal Detective: Escape from the 80''s': + - "{{Game data/saves|Windows|{{p|userprofile}}\\Saved Games\\Paranormal Activity The Lost Soul\\}}" +"Paranormal Detective: Escape from the 80's": pageId: 142066 steam: 1114460 -'Paranormal Files: Hook Man''s Legend': +"Paranormal Files: Hook Man's Legend": pageId: 149382 steam: 1163960 Paranormal HK: @@ -119577,27 +116358,23 @@ Paranormal HK: - 港詭實錄ParanormalHK steam: 1178490 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\PuzzleGame\Saved\Config\WindowsNoEditor\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\PuzzleGame\\Saved\\Config\\WindowsNoEditor\\}}" Paranormal Psychosis: pageId: 34527 steam: 407750 -'Paranormal Pursuit: The Gifted One': +"Paranormal Pursuit: The Gifted One": pageId: 55289 renamedFrom: - - 'Paranormal Pursuit: The Gifted One Collector''s Edition' + - "Paranormal Pursuit: The Gifted One Collector's Edition" steam: 569140 -'Paranormal State: Poison Spring': +"Paranormal State: Poison Spring": pageId: 50466 steam: 268810 templates: - - >- - {{Game data/config|Windows|{{P|appdata}}\Legacy Games\Paranormal State Poison Spring - Saves\Steam{{P|uid}}\profile.xml}} - - >- - {{Game data/config|Linux|{{P|xdgdatahome}}/Legacy Games/Paranormal State Poison Spring - Saves/Steam{{P|uid}}/profile.xml}} - - '{{Game data/saves|Windows|{{P|appdata}}\Legacy Games\Paranormal State Poison Spring Saves\Steam{{P|uid}}\}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/Legacy Games/Paranormal State Poison Spring Saves/Steam{{P|uid}}/}}' + - "{{Game data/config|Windows|{{P|appdata}}\\Legacy Games\\Paranormal State Poison Spring Saves\\Steam{{P|uid}}\\profile.xml}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/Legacy Games/Paranormal State Poison Spring Saves/Steam{{P|uid}}/profile.xml}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\Legacy Games\\Paranormal State Poison Spring Saves\\Steam{{P|uid}}\\}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/Legacy Games/Paranormal State Poison Spring Saves/Steam{{P|uid}}/}}" Paranormal Teens: pageId: 55690 steam: 549770 @@ -119624,8 +116401,8 @@ Parcheesi Boardgame Simulator: Pariah: pageId: 12969 templates: - - '{{Game data/config|Windows|{{p|game}}\System\Pariah.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\Saves\SavedGame}}' + - "{{Game data/config|Windows|{{p|game}}\\System\\Pariah.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\Saves\\SavedGame}}" Paris Chase: pageId: 172401 Paris-Dakar Rally: @@ -119633,8 +116410,8 @@ Paris-Dakar Rally: Paris-Marseille Racing: pageId: 178296 templates: - - '{{Game data/saves|Windows |{{p|game}}\data\Current.rcr}}' -'Paris: Jigsaw Puzzles': + - "{{Game data/saves|Windows |{{p|game}}\\data\\Current.rcr}}" +"Paris: Jigsaw Puzzles": pageId: 96797 steam: 873710 Parity: @@ -119644,7 +116421,7 @@ Park Beyond: pageId: 186076 steam: 1368130 templates: - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\ParkBeyond\Saved\SaveGames\Steam_{{p|uid}}}}' + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\ParkBeyond\\Saved\\SaveGames\\Steam_{{p|uid}}}}" Park Bound: pageId: 63351 steam: 611830 @@ -119661,34 +116438,34 @@ Parkan II: pageId: 31380 steam: 289400 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\SOFTWARE\Nikita\ParkanII|{{p|game}}\parkan2.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\save\}}' -'Parkan: Iron Strategy': + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\Nikita\\ParkanII|{{p|game}}\\parkan2.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\save\\}}" +"Parkan: Iron Strategy": gog: 1333602811 pageId: 120935 steam: 953820 -'Parkan: The Imperial Chronicles': +"Parkan: The Imperial Chronicles": gog: 1198456673 pageId: 56878 steam: 575690 templates: - - '{{Game data/config|Windows|{{p|game}}\CTRL_E.SET}}' - - '{{Game data/saves|Windows|{{p|game}}\GAME*.SAV\}}' + - "{{Game data/config|Windows|{{p|game}}\\CTRL_E.SET}}" + - "{{Game data/saves|Windows|{{p|game}}\\GAME*.SAV\\}}" Parkasaurus: pageId: 78752 steam: 591460 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Washbear\Parkasaurus}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Washbear\Parkasaurus\CloudSaves\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Washbear\\Parkasaurus}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Washbear\\Parkasaurus\\CloudSaves\\}}" Parked In The Dark: pageId: 156963 steam: 1185370 -'Parker & Lane: Criminal Justice': +"Parker & Lane: Criminal Justice": pageId: 87017 steam: 761790 templates: - - '{{Game data/saves|Windows|{{p|AppData}}/GameHouse/Parker&Lane}}' -'Parker & Lane: Twisted Minds': + - "{{Game data/saves|Windows|{{p|AppData}}/GameHouse/Parker&Lane}}" +"Parker & Lane: Twisted Minds": pageId: 125464 steam: 739170 Parking 3D: @@ -119708,9 +116485,9 @@ Parkitect: - 1129050 - 1353170 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Parkitect\settings.txt}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Parkitect\Saves\Savegames\}}' - - '{{Game data/saves|Linux|{{P|linuxhome}}/.local/share/Steam/steamapps/common/Parkitect/Saves}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Parkitect\\settings.txt}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Parkitect\\Saves\\Savegames\\}}" + - "{{Game data/saves|Linux|{{P|linuxhome}}/.local/share/Steam/steamapps/common/Parkitect/Saves}}" Parkland: pageId: 93706 steam: 812170 @@ -119744,15 +116521,15 @@ Partial Control: Partical City Guardians: pageId: 41848 steam: 496600 -'Particle Fleet: Emergence': +"Particle Fleet: Emergence": pageId: 39155 steam: 422900 Particle Mace: pageId: 29221 steam: 295690 templates: - - '{{Game data/config|Windows|{{p|game}}\data\playerData.xml|{{p|game}}\data\controllerMappings.xml}}' - - '{{Game data/saves|Windows|{{p|game}}\data\missions.xml}}' + - "{{Game data/config|Windows|{{p|game}}\\data\\playerData.xml|{{p|game}}\\data\\controllerMappings.xml}}" + - "{{Game data/saves|Windows|{{p|game}}\\data\\missions.xml}}" Particle Wars: pageId: 149271 steam: 1160700 @@ -119763,10 +116540,10 @@ Particulars: pageId: 49293 steam: 259470 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\See Through Studios\Particulars\}}' - - '{{Game data/config|Linux|{{P|linuxhome}}/.config/unity3d/See Through Studios/Particulars/prefs}}' - - '{{Game data/saves|Windows|{{P|hkcu}}\Software\See Through Studios\Particulars\}}' - - '{{Game data/saves|Steam|{{P|linuxhome}}/.config/unity3d/See Through Studios/Particulars/prefs}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\See Through Studios\\Particulars\\}}" + - "{{Game data/config|Linux|{{P|linuxhome}}/.config/unity3d/See Through Studios/Particulars/prefs}}" + - "{{Game data/saves|Windows|{{P|hkcu}}\\Software\\See Through Studios\\Particulars\\}}" + - "{{Game data/saves|Steam|{{P|linuxhome}}/.config/unity3d/See Through Studios/Particulars/prefs}}" Particulate: pageId: 153675 steam: 1196940 @@ -119779,13 +116556,13 @@ Partisans 1941: steamSide: - 1315500 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Partisans\Saved\Config\WindowsNoEditor}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\Partisans\Saved\SaveGames}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\Partisans\\Saved\\Config\\WindowsNoEditor}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Partisans\\Saved\\SaveGames}}" Party Animals: pageId: 164205 steam: 1260320 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\SOFTWARE\RecreateGames\PartyAnimals}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\SOFTWARE\\RecreateGames\\PartyAnimals}}" Party Crashers: pageId: 74954 steam: 657300 @@ -119799,16 +116576,16 @@ Party Hard: pageId: 27826 steam: 356570 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\SOFTWARE\PinoklGames\PartyHardGame\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\PinoklGames\PartyHardGame\}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/PinoklGames/PartyHardGame/}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\PinoklGames\\PartyHardGame\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\PinoklGames\\PartyHardGame\\}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/PinoklGames/PartyHardGame/}}" Party Hard 2: gog: 2028010515 pageId: 61808 steam: 572430 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\PinoklGames\PartyHard2\config}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\PinoklGames\PartyHard2\savegame}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\PinoklGames\\PartyHard2\\config}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\PinoklGames\\PartyHard2\\savegame}}" Party Hard Tycoon: pageId: 39572 steam: 513330 @@ -119836,14 +116613,14 @@ Party of Sin: PartyLine VR: pageId: 149762 steam: 846830 -'Parvaneh: Legacy of the Light''s Guardians': +"Parvaneh: Legacy of the Light's Guardians": pageId: 36714 steam: 353990 -'Pascal''s Wager: Definitive Edition': +"Pascal's Wager: Definitive Edition": pageId: 166860 steam: 1456650 templates: - - '{{Game data/saves|Windows|{{p|userprofile\AppData\LocalLow}}\TIPSWORKS\PascalsWager\Save }}' + - "{{Game data/saves|Windows|{{p|userprofile\\AppData\\LocalLow}}\\TIPSWORKS\\PascalsWager\\Save }}" Pass The Time: pageId: 72232 steam: 715160 @@ -119858,14 +116635,14 @@ Pass the Wall: Passage: pageId: 90744 templates: - - '{{Game data/config|Windows|{{p|game}}\settings\Config.ini}}' + - "{{Game data/config|Windows|{{p|game}}\\settings\\Config.ini}}" Passage (2018): pageId: 96809 steam: 873850 Passage 4: pageId: 54790 steam: 567860 -'Passcode Breaker: The Day Before': +"Passcode Breaker: The Day Before": pageId: 148735 steam: 334360 Passenger Seat: @@ -119873,29 +116650,27 @@ Passenger Seat: renamedFrom: - Passenger seat steam: 1168420 -'Passengers: Awakening VR Experience': +"Passengers: Awakening VR Experience": pageId: 58822 steam: 601490 Passing Pineview Forest: pageId: 49277 steam: 331120 templates: - - >- - {{Game - data/config|Windows|{{P|hkcu}}\Software\VIS-Games\PassingPineviewForest|{{P|userprofile}}\AppData\LocalLow\VIS_Games\PassingPineviewForest\}} -'Passpartout: The Starving Artist': + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\VIS-Games\\PassingPineviewForest|{{P|userprofile}}\\AppData\\LocalLow\\VIS_Games\\PassingPineviewForest\\}}" +"Passpartout: The Starving Artist": gog: 1427891789 pageId: 61158 steam: 582550 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Flamebait Games\Passpartout\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Flamebait Games\Passpartout\save\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Flamebait Games\\Passpartout\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Flamebait Games\\Passpartout\\save\\}}" Past Cure: pageId: 81083 steam: 646050 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\AMAHDD_2\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\AMAHDD_2\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\AMAHDD_2\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\AMAHDD_2\\Saved\\SaveGames\\}}" Past Fate: pageId: 154371 steam: 1028510 @@ -119909,8 +116684,8 @@ Pat & Mat: pageId: 41048 steam: 65710 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Centauri\PATAMAT\}}' - - '{{Game data/saves|Windows|{{P|hkcu}}\Software\Centauri\PATAMAT\script\users\{{P|uid}}\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Centauri\\PATAMAT\\}}" + - "{{Game data/saves|Windows|{{P|hkcu}}\\Software\\Centauri\\PATAMAT\\script\\users\\{{P|uid}}\\}}" PataNoir: pageId: 42766 steam: 449150 @@ -119918,10 +116693,8 @@ Patch Quest: pageId: 185661 steam: 1347970 templates: - - >- - {{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\Lychee Game Labs\Patch - Quest\SaveData\Users\Settings.json}} - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Lychee Game Labs\Patch Quest\SaveData\Users}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Lychee Game Labs\\Patch Quest\\SaveData\\Users\\Settings.json}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Lychee Game Labs\\Patch Quest\\SaveData\\Users}}" Patchman vs. Blue Squares: pageId: 89662 steam: 798630 @@ -119932,7 +116705,7 @@ Patchwork: pageId: 54359 steam: 528250 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\DIGIDICED\Patchwork\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\DIGIDICED\\Patchwork\\}}" Patent9: pageId: 89190 steam: 794740 @@ -119949,31 +116722,25 @@ Path of Exile: pageId: 4602 steam: 238960 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Path of Exile\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Path of Exile\\}}" Path of Giants: pageId: 156461 steam: 1181400 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\Journey Bound Games\Path of Giants\*.dat}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Journey Bound Games\Path of Giants\*.dat}}' - - >- - {{Game data/saves|OS X|{{p|osxhome}}/Library/Application - Support/com.JourneyBoundGames.PathofGiants/SavedProgress.dat}} + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Journey Bound Games\\Path of Giants\\*.dat}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Journey Bound Games\\Path of Giants\\*.dat}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/com.JourneyBoundGames.PathofGiants/SavedProgress.dat}}" Path of Redemption: pageId: 156394 steam: 1221440 -'Path of Sin: Greed': +"Path of Sin: Greed": pageId: 107858 steam: 895420 templates: - - '{{Game data/config|Steam|{{p|steam}}/userdata/{{p|uid}}/895420/remote/profile}}' - - >- - {{Game data/config|Microsoft - Store|{{P|localappdata}}\Packages\ArtifexMundi.PathofSinGreed_xmkq9zz36w32m\LocalState\data\profile\}} - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/895420/remote/profile}}' - - >- - {{Game data/saves|Microsoft - Store|{{P|localappdata}}\Packages\ArtifexMundi.PathofSinGreed_xmkq9zz36w32m\LocalState\data\profile\}} + - "{{Game data/config|Steam|{{p|steam}}/userdata/{{p|uid}}/895420/remote/profile}}" + - "{{Game data/config|Microsoft Store|{{P|localappdata}}\\Packages\\ArtifexMundi.PathofSinGreed_xmkq9zz36w32m\\LocalState\\data\\profile\\}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/895420/remote/profile}}" + - "{{Game data/saves|Microsoft Store|{{P|localappdata}}\\Packages\\ArtifexMundi.PathofSinGreed_xmkq9zz36w32m\\LocalState\\data\\profile\\}}" Path of Thalanos: pageId: 151199 steam: 1155540 @@ -120001,56 +116768,55 @@ Pathfinder Adventures: pageId: 63450 steam: 480640 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\Saved Games\Pathfinder Adventures}}' -'Pathfinder: Kingmaker': + - "{{Game data/saves|Windows|{{p|userprofile}}\\Saved Games\\Pathfinder Adventures}}" +"Pathfinder: Kingmaker": gog: 1127581981 gogSide: - 1229613329 - - 2113123723 - 1432782902 + - 2113123723 pageId: 100482 steam: 640820 steamSide: - - 1041820 - - 965950 - - 951520 - - 947090 - - 945272 - - 945271 - - 945270 - - 937800 - - 900448 - - 900447 - - 900446 - - 900445 - - 900444 - - 900443 - - 900442 - - 900441 - 900440 + - 900441 + - 900442 + - 900443 + - 900444 + - 900445 + - 900446 + - 900447 + - 900448 + - 937800 + - 945270 + - 945271 + - 945272 + - 947090 + - 951520 + - 965950 + - 1041820 templates: - - '{{Game data/config|Windows|{{p|HKCU}}\SOFTWARE\Owlcat Games\Pathfinder Kingmaker}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/unity.Owlcat Games.Pathfinder Kingmaker}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Owlcat Games/Pathfinder Kingmaker/prefs}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Owlcat Games\Pathfinder Kingmaker\Saved Games}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Owlcat Games/Pathfinder Kingmaker/Saved Games}}' -'Pathfinder: Wrath of the Righteous': + - "{{Game data/config|Windows|{{p|HKCU}}\\SOFTWARE\\Owlcat Games\\Pathfinder Kingmaker}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/unity.Owlcat Games.Pathfinder Kingmaker}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Owlcat Games/Pathfinder Kingmaker/prefs}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Owlcat Games\\Pathfinder Kingmaker\\Saved Games}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Owlcat Games/Pathfinder Kingmaker/Saved Games}}" +"Pathfinder: Wrath of the Righteous": gog: 1770130134 gogSide: - - 1207187357 - - 2090543924 - - 2012118725 - 1126478335 - - 2010537001 - - 1913607829 - - 1916250442 - - 1913607829 - - 2124635480 - - 2059476258 - - 1784183575 - - 2063089768 + - 1207187357 - 1416761250 - 1639177686 + - 1784183575 + - 1913607829 + - 1916250442 + - 2010537001 + - 2012118725 + - 2059476258 + - 2063089768 + - 2090543924 + - 2124635480 pageId: 167275 steam: 1184370 steamSide: @@ -120067,37 +116833,29 @@ Pathfinder Adventures: - 2266770 - 2564570 templates: - - >- - {{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\Owlcat Games\Pathfinder Wrath Of The - Righteous\general_settings.json}} - - >- - {{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/unity.Owlcat Games.Pathfinder Wrath Of The - Righteous/general_settings.json}} - - >- - {{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Owlcat Games\Pathfinder Wrath Of The Righteous\Saved - Games}} - - >- - {{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/unity.Owlcat Games.Pathfinder Wrath Of The - Righteous/Saved Games}} + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Owlcat Games\\Pathfinder Wrath Of The Righteous\\general_settings.json}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/unity.Owlcat Games.Pathfinder Wrath Of The Righteous/general_settings.json}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Owlcat Games\\Pathfinder Wrath Of The Righteous\\Saved Games}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/unity.Owlcat Games.Pathfinder Wrath Of The Righteous/Saved Games}}" Pathogen-病原体: pageId: 128205 steam: 794780 -'Pathogenesis: Overcome': +"Pathogenesis: Overcome": pageId: 151503 steam: 1067320 Pathologic: gog: 1207659197 pageId: 21791 templates: - - '{{Game data/config|Windows|{{P|game}}\data}}' - - '{{Game data/saves|Windows|{{P|game}}\Saves}}' + - "{{Game data/config|Windows|{{P|game}}\\data}}" + - "{{Game data/saves|Windows|{{P|game}}\\Saves}}" Pathologic 2: gog: 1076642617 pageId: 61228 steam: 505230 templates: - - '{{Game data/config|Windows|{{P|userprofile\appdata\locallow}}\Ice-Pick Lodge\Pathologic 2\Settings}}' - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Ice-Pick Lodge\Pathologic 2\Saves}}' + - "{{Game data/config|Windows|{{P|userprofile\\appdata\\locallow}}\\Ice-Pick Lodge\\Pathologic 2\\Settings}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Ice-Pick Lodge\\Pathologic 2\\Saves}}" Pathologic Classic HD: gog: 1444818876 gogSide: @@ -120105,18 +116863,18 @@ Pathologic Classic HD: pageId: 34306 steam: 384110 templates: - - '{{Game data/config|Windows|{{P|game}}\Saves\confiding}}' - - '{{Game data/saves|Windows|{{P|game}}\Saves\}}' -'Pathologic: The Marble Nest': + - "{{Game data/config|Windows|{{P|game}}\\Saves\\confiding}}" + - "{{Game data/saves|Windows|{{P|game}}\\Saves\\}}" +"Pathologic: The Marble Nest": pageId: 136302 steam: 607730 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Ice-pick Lodge\Pathologic\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Ice-pick Lodge\\Pathologic\\}}" Pathos: pageId: 76303 steam: 679300 templates: - - '{{Game data/saves|Windows|{{p|appdata}}\LocalLow\Broguelike\PATHOS}}' + - "{{Game data/saves|Windows|{{p|appdata}}\\LocalLow\\Broguelike\\PATHOS}}" Pathos (2019): pageId: 137448 steam: 1064670 @@ -120137,40 +116895,33 @@ Pathway: pageId: 90407 steam: 546430 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Robotality\Pathway\settings.json}}' - - >- - {{Game data/config|Microsoft - Store|{{P|localappdata}}\Packages\Chucklefish.Pathway_ywkyrypjzhpx8\LocalCache\Local\Robotality\Pathway}} - - '{{Game data/saves|Windows|{{P|localappdata}}\Robotality\Pathway\save*.bin}}' - - >- - {{Game data/saves|Microsoft - Store|{{P|localappdata}}\Packages\Chucklefish.Pathway_ywkyrypjzhpx8\LocalCache\Local\Robotality\Pathway\save*.bin}} + - "{{Game data/config|Windows|{{P|localappdata}}\\Robotality\\Pathway\\settings.json}}" + - "{{Game data/config|Microsoft Store|{{P|localappdata}}\\Packages\\Chucklefish.Pathway_ywkyrypjzhpx8\\LocalCache\\Local\\Robotality\\Pathway}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Robotality\\Pathway\\save*.bin}}" + - "{{Game data/saves|Microsoft Store|{{P|localappdata}}\\Packages\\Chucklefish.Pathway_ywkyrypjzhpx8\\LocalCache\\Local\\Robotality\\Pathway\\save*.bin}}" Pathways into Darkness: pageId: 6973 templates: - - >- - {{Game data/saves|OS - X|{{p|osxhome}}/Library/Containers/com.manuptimestudios.pathwaysintodarkness/Data/Library/Application - Support/Pathways into Darkness/Saved Games.pathways}} + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Containers/com.manuptimestudios.pathwaysintodarkness/Data/Library/Application Support/Pathways into Darkness/Saved Games.pathways}}" Pato Box: pageId: 81105 steam: 682080 -'Patrician II: Quest for Power': +"Patrician II: Quest for Power": gog: 1207663933 gogSide: - 1207658802 pageId: 131939 templates: - - '{{Game data/config|Windows|{{p|game}}\P2.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\Save}}' -'Patrician III: Rise of the Hanse': + - "{{Game data/config|Windows|{{p|game}}\\P2.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\Save}}" +"Patrician III: Rise of the Hanse": gog: 1207658706 pageId: 16375 steam: 33570 templates: - - '{{Game data/config|Windows|{{p|game}}\P2.cfg|{{p|game}}\gl.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\save}}' -'Patrician IV: Conquest by Trade': + - "{{Game data/config|Windows|{{p|game}}\\P2.cfg|{{p|game}}\\gl.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\save}}" +"Patrician IV: Conquest by Trade": gog: 1982180359 pageId: 41094 steam: 57620 @@ -120179,15 +116930,15 @@ Pato Box: Patriot: pageId: 21798 templates: - - '{{Game data/saves|DOS|{{p|game}}\SCENARIO\*.SCN}}' -'Patriots: A Nation Under Fire': + - "{{Game data/saves|DOS|{{p|game}}\\SCENARIO\\*.SCN}}" +"Patriots: A Nation Under Fire": pageId: 83159 Patron: gog: 1627604679 pageId: 170226 steam: 1538570 templates: - - '{{Game data/saves|Windows|{{p|game}}\Saves}}' + - "{{Game data/saves|Windows|{{p|game}}\\Saves}}" Pattern: pageId: 124427 steam: 969540 @@ -120202,16 +116953,16 @@ Patternis: Patterns: pageId: 61193 steam: 218980 -'Paul Pixel: The Awakening': +"Paul Pixel: The Awakening": pageId: 55592 steam: 569050 -Paul's World: +"Paul's World": pageId: 153186 steam: 1160880 PaulPaul - Act 1: pageId: 103019 steam: 892560 -Paulo's Wing: +"Paulo's Wing": pageId: 58005 steam: 592720 Paunch: @@ -120227,35 +116978,30 @@ Pavlov: pageId: 54441 steam: 555160 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Pavlov\Saved\Config\WindowsNoEditor}}' -'Paw Patrol The Movie: Adventure City Calls': + - "{{Game data/config|Windows|{{P|localappdata}}\\Pavlov\\Saved\\Config\\WindowsNoEditor}}" +"Paw Patrol The Movie: Adventure City Calls": pageId: 174952 steam: 1434310 -'Paw Patrol: Grand Prix': +"Paw Patrol: Grand Prix": pageId: 182124 renamedFrom: - - 'Paw Patrol: Grand Prix' - - 'PAW Patrol: Grand Prix' + - "Paw Patrol: Grand Prix" + - "PAW Patrol: Grand Prix" steam: 1770490 -'Paw Patrol: Mighty Pups Save Adventure Bay': +"Paw Patrol: Mighty Pups Save Adventure Bay": pageId: 174857 steam: 1374990 -'Paw Patrol: On A Roll!': +"Paw Patrol: On A Roll!": pageId: 113148 steam: 758730 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Outright Games Ltd\Paw Patrol\*.save}}' + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Outright Games Ltd\\Paw Patrol\\*.save}}" Paw Paw Paw: pageId: 137012 steam: 1037910 templates: - - >- - {{Game data/config|Windows|{{P|userprofile\appdata\locallow}}\Simpleton\Paw Paw - Paw\paw.stg|{{P|userprofile\appdata\locallow}}\Simpleton\Paw Paw Paw\controller - settings\|{{P|hkcu}}\SOFTWARE\Simpleton\Paw Paw Paw\}} - - >- - {{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Simpleton\Paw Paw - Paw\*.sav|{{P|hkcu}}\SOFTWARE\Simpleton\Paw Paw Paw\}} + - "{{Game data/config|Windows|{{P|userprofile\\appdata\\locallow}}\\Simpleton\\Paw Paw Paw\\paw.stg|{{P|userprofile\\appdata\\locallow}}\\Simpleton\\Paw Paw Paw\\controller settings\\|{{P|hkcu}}\\SOFTWARE\\Simpleton\\Paw Paw Paw\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Simpleton\\Paw Paw Paw\\*.sav|{{P|hkcu}}\\SOFTWARE\\Simpleton\\Paw Paw Paw\\}}" Pawarumi: pageId: 63494 steam: 610410 @@ -120269,50 +117015,48 @@ Pawnbarian: pageId: 151273 steam: 1142080 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\j4nw\Pawnbarian\}}' - - >- - {{Game - data/saves|Windows|{{P|userprofile\appdata\locallow}}\j4nw\Pawnbarian\progress.json|{{P|userprofile\appdata\locallow}}\j4nw\Pawnbarian\run.json}} + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\j4nw\\Pawnbarian\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\j4nw\\Pawnbarian\\progress.json|{{P|userprofile\\appdata\\locallow}}\\j4nw\\Pawnbarian\\run.json}}" Pawnshop Tycoon: pageId: 157087 steam: 1216990 -'Paws & Claws: Pampered Pets': +"Paws & Claws: Pampered Pets": pageId: 56207 steam: 33700 -'Paws & Claws: Pet School': +"Paws & Claws: Pet School": pageId: 56206 steam: 33710 -'Paws & Claws: Pet Vet': +"Paws & Claws: Pet Vet": pageId: 56205 steam: 33720 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\THQ\Pet Vet}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\THQ\save\savegame.save}}' -'Paws & Effect: My Dogs Are Human!': + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\THQ\\Pet Vet}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\THQ\\save\\savegame.save}}" +"Paws & Effect: My Dogs Are Human!": pageId: 156750 steam: 1212040 -Paws 'n Claws VR: +"Paws 'n Claws VR": pageId: 93200 steam: 826450 Paws and Soul: pageId: 109616 steam: 911510 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Paws_and_soul\Saved\SaveGames\GameSettingsSave.sav}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\Paws_and_soul\Saved\SaveGames\WolfSave\}}' -'Paws: A Shelter 2 Game': + - "{{Game data/config|Windows|{{P|localappdata}}\\Paws_and_soul\\Saved\\SaveGames\\GameSettingsSave.sav}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Paws_and_soul\\Saved\\SaveGames\\WolfSave\\}}" +"Paws: A Shelter 2 Game": gog: 1455701771 pageId: 34248 steam: 434000 templates: - - '{{Game data/saves|Windows|{{p|HKCU}}\Software\Might and Delight\Paws}}' -'Pax Imperia: Eminent Domain': + - "{{Game data/saves|Windows|{{p|HKCU}}\\Software\\Might and Delight\\Paws}}" +"Pax Imperia: Eminent Domain": gog: 1434378430 pageId: 131779 Pax Nova: pageId: 122402 steam: 804850 -'Pax Romana: Romulus': +"Pax Romana: Romulus": pageId: 130539 steam: 1034810 Pax Ruthenia: @@ -120324,10 +117068,10 @@ Pay for picture Vol.01: Pay for picture Vol.02: pageId: 141477 steam: 1086360 -'Pay2Win: The Tricks Exposed': +"Pay2Win: The Tricks Exposed": pageId: 45272 steam: 416760 -'Paycheck: City RPG': +"Paycheck: City RPG": pageId: 151044 steam: 1073360 Payday 2: @@ -120399,27 +117143,27 @@ Payday 2: - 450660 - 468410 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\PAYDAY 2\renderer_settings.xml}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/.local/share/Starbreeze/Payday2/renderer_settings.xml}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\PAYDAY 2\saves\{{P|uid}}\}}' - - '{{Game data/saves|Linux|{{p|steam}}/userdata/{{p|uid}}/218620/remote/}}' - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/218620/remote/}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\PAYDAY 2\\renderer_settings.xml}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/.local/share/Starbreeze/Payday2/renderer_settings.xml}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\PAYDAY 2\\saves\\{{P|uid}}\\}}" + - "{{Game data/saves|Linux|{{p|steam}}/userdata/{{p|uid}}/218620/remote/}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/218620/remote/}}" Payday 3: pageId: 167361 steam: 1272080 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\PAYDAY3\Saved\Config\WindowsClient\GameUserSettings.ini}}' -'Payday: The Heist': + - "{{Game data/config|Windows|{{P|localappdata}}\\PAYDAY3\\Saved\\Config\\WindowsClient\\GameUserSettings.ini}}" +"Payday: The Heist": pageId: 42 steam: 24240 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\PAYDAY\renderer_settings.xml}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\PAYDAY\saves\{{p|uid}}\}}' - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\24240\remote\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\PAYDAY\\renderer_settings.xml}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\PAYDAY\\saves\\{{p|uid}}\\}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\24240\\remote\\}}" Payroll: pageId: 60722 steam: 548500 -'Pe-2: Dive Bomber': +"Pe-2: Dive Bomber": pageId: 49807 steam: 314770 Peace Data: @@ -120437,15 +117181,15 @@ Peace Restored: Peace of Evil: pageId: 136422 steam: 1070240 -'Peace, Death!': +"Peace, Death!": pageId: 59484 steam: 588690 templates: - - '{{Game data/saves|Windows|{{P|localappdata}}\PeaceDeath\stageselectroom100.ini}}' + - "{{Game data/saves|Windows|{{P|localappdata}}\\PeaceDeath\\stageselectroom100.ini}}" Peaceful Days: pageId: 151343 steam: 1156360 -'Peak Angle: Drift Online': +"Peak Angle: Drift Online": pageId: 52926 steam: 547410 Peakvox Escape Virus HD: @@ -120457,10 +117201,10 @@ Peakvox Mew Mew Chamber for Steam: Peakvox Route Candle for Steam: pageId: 55003 steam: 552210 -'Peaky Blinders: Mastermind': +"Peaky Blinders: Mastermind": pageId: 159374 steam: 1013310 -'Peaky Blinders: The King''s Ransom': +"Peaky Blinders: The King's Ransom": pageId: 186140 steam: 1903670 Peanut: @@ -120471,7 +117215,7 @@ Pear Quest: steam: 1134630 Pearl Diversion: pageId: 167397 -'Pearls of Atlantis: The Cove': +"Pearls of Atlantis: The Cove": pageId: 183048 PearsAndGrayWitch: pageId: 78530 @@ -120492,7 +117236,7 @@ Peekaboo: pageId: 132057 steam: 1048100 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Peekaboo\Saved\Config\WindowsNoEditor\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Peekaboo\\Saved\\Config\\WindowsNoEditor\\}}" Peepo Island: pageId: 180270 steam: 2069990 @@ -120504,37 +117248,37 @@ Peewee Dodgeball Championships: Pegasus Door: pageId: 68889 steam: 699790 -'Pegasus-5: Gone Astray': +"Pegasus-5: Gone Astray": pageId: 99808 steam: 794030 Peggle: pageId: 15440 steam: 3480 templates: - - '{{Game data/saves|Windows|{{p|programdata}}\Steam\Peggle\userdata}}' + - "{{Game data/saves|Windows|{{p|programdata}}\\Steam\\Peggle\\userdata}}" Peggle Extreme: pageId: 18193 steam: 3483 templates: - - '{{Game data/saves|Windows|{{p|programdata}}\Steam\PeggleExtreme\userdata}}' + - "{{Game data/saves|Windows|{{p|programdata}}\\Steam\\PeggleExtreme\\userdata}}" Peggle Nights: pageId: 15446 steam: 3540 templates: - - '{{Game data/saves|Windows|{{p|programdata}}\Steam\PeggleNights\userdata\}}' -'Peggle: World of Warcraft Edition': + - "{{Game data/saves|Windows|{{p|programdata}}\\Steam\\PeggleNights\\userdata\\}}" +"Peggle: World of Warcraft Edition": pageId: 31421 templates: - - '{{Game data/saves|Windows|{{p|programdata}}\PopCap Games\PeggleWoW}}' + - "{{Game data/saves|Windows|{{p|programdata}}\\PopCap Games\\PeggleWoW}}" Peglin: gog: 1155924803 pageId: 174392 steam: 1296610 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Red Nexus Games Inc\Peglin\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Red Nexus Games Inc/Peglin}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Red Nexus Games Inc\Peglin\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Red Nexus Games Inc/Peglin}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Red Nexus Games Inc\\Peglin\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Red Nexus Games Inc/Peglin}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Red Nexus Games Inc\\Peglin\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Red Nexus Games Inc/Peglin}}" Pekka Kana 2: pageId: 18866 Peku - Space Dragon: @@ -120553,7 +117297,7 @@ Penarium: pageId: 31406 steam: 307590 templates: - - '{{Game data/saves|Steam|{{p|Steam}}\userdata\{{p|uid}}\307590\remote\}}' + - "{{Game data/saves|Steam|{{p|Steam}}\\userdata\\{{p|uid}}\\307590\\remote\\}}" Pencil vs. Eraser: pageId: 141806 steam: 1092070 @@ -120573,12 +117317,12 @@ Pengame: Penguin Kelvin: pageId: 164381 templates: - - '{{Game data/config|Windows|{{p|game}}\kelvin.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\current.sav}}' + - "{{Game data/config|Windows|{{p|game}}\\kelvin.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\current.sav}}" Penguin Park 3D: pageId: 155352 steam: 1167850 -'Penguins Arena: Sedna''s World': +"Penguins Arena: Sedna's World": pageId: 38444 steam: 11280 Penguins of The North: @@ -120594,39 +117338,39 @@ Penko Park: pageId: 174226 steam: 852090 templates: - - '{{Game data/config|Windows|{{p|localappdata}}Low\Ghostbutter\Penko Park\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}Low\Ghostbutter\Penko Park\}}' + - "{{Game data/config|Windows|{{p|localappdata}}Low\\Ghostbutter\\Penko Park\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}Low\\Ghostbutter\\Penko Park\\}}" Penkura: pageId: 121657 steam: 739720 -'Penn & Teller VR: Frankly Unfair, Unkind, Unnecessary, & Underhanded': +"Penn & Teller VR: Frankly Unfair, Unkind, Unnecessary, & Underhanded": pageId: 141208 steam: 677610 -Penny Arcade's On the Rain-Slick Precipice of Darkness 3: +"Penny Arcade's On the Rain-Slick Precipice of Darkness 3": pageId: 6672 steam: 213030 templates: - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\SavedGames\Rainslick3\}}' - - '{{Game data/saves|OS X| /home/$USERNAME/Library/Preferences/unity.TinkerHouse Games.PAA 3.plist }}' -Penny Arcade's On the Rain-Slick Precipice of Darkness 4: + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\SavedGames\\Rainslick3\\}}" + - "{{Game data/saves|OS X| /home/$USERNAME/Library/Preferences/unity.TinkerHouse Games.PAA 3.plist }}" +"Penny Arcade's On the Rain-Slick Precipice of Darkness 4": pageId: 11905 steam: 237570 templates: - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\SavedGames\rainslick4\rainslick 4\allplayers}}' -'Penny Arcade''s On the Rain-Slick Precipice of Darkness: Episode One': + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\SavedGames\\rainslick4\\rainslick 4\\allplayers}}" +"Penny Arcade's On the Rain-Slick Precipice of Darkness: Episode One": pageId: 6722 steam: 18000 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\HotheadGames\RainSlickEp1}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.HotheadGames/RainSlickEp1/}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\HotheadGames\RainSlickEp1}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.HotheadGames/RainSlickEp1/}}' -'Penny Arcade''s On the Rain-Slick Precipice of Darkness: Episode Two': + - "{{Game data/config|Windows|{{p|localappdata}}\\HotheadGames\\RainSlickEp1}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.HotheadGames/RainSlickEp1/}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\HotheadGames\\RainSlickEp1}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.HotheadGames/RainSlickEp1/}}" +"Penny Arcade's On the Rain-Slick Precipice of Darkness: Episode Two": pageId: 6724 steam: 18020 templates: - - '{{Game data/saves|Windows|{{p|localappdata}}\HotheadGames\RainSlickEp2}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.HotheadGames/RainSlickEp2/}}' + - "{{Game data/saves|Windows|{{p|localappdata}}\\HotheadGames\\RainSlickEp2}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.HotheadGames/RainSlickEp2/}}" Penny Black: pageId: 93576 steam: 839240 @@ -120635,7 +117379,7 @@ Penny Blood: Penny for Your Thoughts: pageId: 179801 steam: 1908790 -Penny's Big Breakaway: +"Penny's Big Breakaway": pageId: 191173 steam: 1955230 Pension Day: @@ -120659,14 +117403,10 @@ Pentiment: steamSide: - 2207830 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Obsidian Entertainment\Pentiment}}' - - >- - {{Game data/saves|Microsoft - Store|{{p|localappdata}}\Packages\Microsoft.OE-Missouri_8wekyb3d8bbwe\SystemAppData\wgs}} - - >- - {{Game data/saves|Steam|{{p|userprofile}}\Saved Games\Pentiment | {{p|userprofile}}\AppData\LocalLow\Obsidian - Entertainment\Pentiment\CloudSync}} -'Penumbra: Black Plague': + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Obsidian Entertainment\\Pentiment}}" + - "{{Game data/saves|Microsoft Store|{{p|localappdata}}\\Packages\\Microsoft.OE-Missouri_8wekyb3d8bbwe\\SystemAppData\\wgs}}" + - "{{Game data/saves|Steam|{{p|userprofile}}\\Saved Games\\Pentiment | {{p|userprofile}}\\AppData\\LocalLow\\Obsidian Entertainment\\Pentiment\\CloudSync}}" +"Penumbra: Black Plague": gog: 1207662743 gogSide: - 1207659255 @@ -120675,35 +117415,23 @@ Pentiment: steamSide: - 22140 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\Penumbra\Black - Plague\|{{p|userprofile\Documents}}\Penumbra\Requiem\}} - - >- - {{Game data/config|OS X|{{p|osxhome}}/Library/Preferences/Frictional Games/Penumbra/Black - Plague/|~/Library/Preferences/Frictional Games/Penumbra/Requiem/}} - - >- - {{Game data/config|Linux|{{p|linuxhome}}/.frictionalgames/Penumbra/Black - Plague/|~/.frictionalgames/Penumbra/Requiem/}} - - >- - {{Game data/saves|Windows|{{p|userprofile\Documents}}\Penumbra\Black - Plague\|{{p|userprofile\Documents}}\Penumbra\Requiem\}} - - >- - {{Game data/saves|OS X|{{p|osxhome}}/Library/Preferences/Frictional Games/Penumbra/Black - Plague/|~/Library/Preferences/Frictional Games/Penumbra/Requiem/}} - - >- - {{Game data/saves|Linux|{{p|linuxhome}}/.frictionalgames/Penumbra/Black - Plague/|~/.frictionalgames/Penumbra/Requiem/}} -'Penumbra: Overture': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Penumbra\\Black Plague\\|{{p|userprofile\\Documents}}\\Penumbra\\Requiem\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Preferences/Frictional Games/Penumbra/Black Plague/|~/Library/Preferences/Frictional Games/Penumbra/Requiem/}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.frictionalgames/Penumbra/Black Plague/|~/.frictionalgames/Penumbra/Requiem/}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Penumbra\\Black Plague\\|{{p|userprofile\\Documents}}\\Penumbra\\Requiem\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Preferences/Frictional Games/Penumbra/Black Plague/|~/Library/Preferences/Frictional Games/Penumbra/Requiem/}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.frictionalgames/Penumbra/Black Plague/|~/.frictionalgames/Penumbra/Requiem/}}" +"Penumbra: Overture": gog: 1207662733 gogSide: - 1207659255 pageId: 1327 steam: 22180 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Penumbra Overture\Episode1\settings.cfg}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.frictionalgames/Penumbra/Overture/}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Penumbra Overture\Episode1\}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.frictionalgames/Penumbra/Overture/save}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Penumbra Overture\\Episode1\\settings.cfg}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.frictionalgames/Penumbra/Overture/}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Penumbra Overture\\Episode1\\}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.frictionalgames/Penumbra/Overture/save}}" People: pageId: 135929 steam: 1023390 @@ -120716,26 +117444,26 @@ People Eater: People Playground: pageId: 141276 steam: 1118200 -People's General: +"People's General": gog: 1356099797 pageId: 177401 templates: - - '{{Game data/config|Windows|{{p|game}}\PEOPLES.INT}}' - - '{{Game data/saves|Windows|{{p|game}}\Save}}' + - "{{Game data/config|Windows|{{p|game}}\\PEOPLES.INT}}" + - "{{Game data/saves|Windows|{{p|game}}\\Save}}" PeoplePackages: pageId: 74914 steam: 740220 Pepe Porcupine: pageId: 42678 steam: 487590 -Pepeizq's Cities: +"Pepeizq's Cities": pageId: 130418 steam: 1039060 -'Peppa Pig: World Adventures': +"Peppa Pig: World Adventures": pageId: 191291 -Pepper's Adventures in Time: +"Pepper's Adventures in Time": pageId: 147178 -Pepper's Puzzles: +"Pepper's Puzzles": pageId: 66446 steam: 642650 Peppered: @@ -120746,20 +117474,20 @@ Per Aspera: pageId: 139695 steam: 803050 templates: - - '{{Game data/saves|Windows|{{p|game}}\SaveData\{{p|uid}}\}}' + - "{{Game data/saves|Windows|{{p|game}}\\SaveData\\{{p|uid}}\\}}" Perception: gog: 1234975363 pageId: 39598 steam: 426310 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Perception\Saved}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Perception\Saved}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Perception\\Saved}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Perception\\Saved}}" Perceptions of the Dead: pageId: 75423 steam: 745760 templates: - - '{{Game data/config|Windows|{{P|appdata}}\RenPy\Perceptions of the Dead-1425779921\persistent}}' - - '{{Game data/saves|Windows|{{P|appdata}}\RenPy\Perceptions of the Dead-1425779921\*.save}}' + - "{{Game data/config|Windows|{{P|appdata}}\\RenPy\\Perceptions of the Dead-1425779921\\persistent}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\RenPy\\Perceptions of the Dead-1425779921\\*.save}}" Perceptions of the Dead 2: pageId: 93269 steam: 817860 @@ -120775,7 +117503,7 @@ Percussive VR: Percy Lancaster: pageId: 145357 steam: 1125670 -Percy's Last Stand: +"Percy's Last Stand": pageId: 136924 steam: 1084460 Perdition: @@ -120785,9 +117513,9 @@ Peregrin: pageId: 57705 steam: 573080 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Peregrin\graphics_config.xml}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Peregrin\save.xml}}' -'Pereulok: The Series': + - "{{Game data/config|Windows|{{p|appdata}}\\Peregrin\\graphics_config.xml}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Peregrin\\save.xml}}" +"Pereulok: The Series": pageId: 73003 steam: 725500 Perfect: @@ -120802,8 +117530,8 @@ Perfect Angle VR: Perfect Cherry Blossom: pageId: 30999 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/saves|Windows|{{p|game}}\}}' + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\}}" Perfect Crime: pageId: 132794 steam: 666870 @@ -120812,8 +117540,8 @@ Perfect Dark: Perfect Dark (2000): pageId: 189208 templates: - - '{{Game data/config|Windows|PATH_TO_THE_GAME/pd.ini}}' - - '{{Game data/saves|Windows|PATH_TO_THE_GAME/eeprom.bin}}' + - "{{Game data/config|Windows|PATH_TO_THE_GAME/pd.ini}}" + - "{{Game data/saves|Windows|PATH_TO_THE_GAME/eeprom.bin}}" Perfect Dead: pageId: 74604 steam: 703990 @@ -120845,8 +117573,8 @@ Perfect Universe: pageId: 44425 steam: 405720 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\willsykes\perfectuniverse\PlayerPrefs.txt}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\willsykes\perfectuniverse\PlayerPrefs.txt}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\willsykes\\perfectuniverse\\PlayerPrefs.txt}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\willsykes\\perfectuniverse\\PlayerPrefs.txt}}" Perfect Weapon: gog: 2114931848 pageId: 187015 @@ -120863,8 +117591,8 @@ Perfection.: pageId: 10264 steam: 246360 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Project0}}' - - '{{Game data/config|Linux|{{P|xdgconfighome}}/Project0}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Project0}}" + - "{{Game data/config|Linux|{{P|xdgconfighome}}/Project0}}" Perhaps When We Dream: pageId: 127251 steam: 1021650 @@ -120881,18 +117609,18 @@ Perils of Man: pageId: 48070 steam: 347710 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Boutiq\Perils of Man}}' + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Boutiq\\Perils of Man}}" Perimeter: gog: 1207658667 pageId: 25934 steam: 289440 templates: - - '{{Game data/config|Windows|{{P|game}}\perimeter.ini}}' - - '{{Game data/saves|Windows|{{P|game}}\Resource\Saves}}' -'Perimeter 2: New Earth': + - "{{Game data/config|Windows|{{P|game}}\\perimeter.ini}}" + - "{{Game data/saves|Windows|{{P|game}}\\Resource\\Saves}}" +"Perimeter 2: New Earth": pageId: 41319 steam: 12420 -'Perimeter: Emperor''s Testament': +"Perimeter: Emperor's Testament": gog: 1454498998 pageId: 34258 steam: 289240 @@ -120910,12 +117638,12 @@ Perish: pageId: 184894 steam: 1016360 templates: - - '{{Game data/saves|Windows|{{p|localappdata}}\PERISH\Saved\SaveGames}}' + - "{{Game data/saves|Windows|{{p|localappdata}}\\PERISH\\Saved\\SaveGames}}" Perky Little Things: pageId: 89722 steam: 811890 templates: - - '{{Game data/saves|Windows|%APPDATA%\perky_little_things}}' + - "{{Game data/saves|Windows|%APPDATA%\\perky_little_things}}" Permission VR: pageId: 108218 steam: 864850 @@ -120926,11 +117654,11 @@ Perpetuum: pageId: 17302 steam: 223410 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' + - "{{Game data/config|Windows|{{p|game}}\\}}" Perplexigon: pageId: 62782 steam: 641590 -'Perplexity: Suburban Home': +"Perplexity: Suburban Home": pageId: 132402 steam: 1052850 Perraw - FPS Clone War Alpha: @@ -120939,13 +117667,13 @@ Perraw - FPS Clone War Alpha: Persephone: pageId: 151266 steam: 1132180 -'Perseverance: Part 1': +"Perseverance: Part 1": pageId: 98356 steam: 854870 -'Persian Nights: Sands of Wonders': +"Persian Nights: Sands of Wonders": pageId: 63916 steam: 621080 -'Persian: The Great Lamp Heist': +"Persian: The Great Lamp Heist": pageId: 65843 steam: 660970 Perso: @@ -120955,14 +117683,10 @@ Persona 3 Portable: pageId: 178254 steam: 1809700 templates: - - >- - {{Game data/config|Microsoft - Store|{{P|localappdata}}\Packages\SEGAofAmericaInc.M0cb6b3aet_s751p9cej88mt\SystemAppData\wgs\{{P|uid}}\}} - - '{{Game data/config|Steam|{{P|localappdata}}\Sega\P3P\steam\{{P|uid}}\P3P.ini}}' - - >- - {{Game data/saves|Microsoft - Store|{{P|localappdata}}\Packages\SEGAofAmericaInc.M0cb6b3aet_s751p9cej88mt\SystemAppData\wgs\{{P|uid}}\}} - - '{{Game data/saves|Steam|{{P|steam}}\userdata\{{P|uid}}\1809700\remote\}}' + - "{{Game data/config|Microsoft Store|{{P|localappdata}}\\Packages\\SEGAofAmericaInc.M0cb6b3aet_s751p9cej88mt\\SystemAppData\\wgs\\{{P|uid}}\\}}" + - "{{Game data/config|Steam|{{P|localappdata}}\\Sega\\P3P\\steam\\{{P|uid}}\\P3P.ini}}" + - "{{Game data/saves|Microsoft Store|{{P|localappdata}}\\Packages\\SEGAofAmericaInc.M0cb6b3aet_s751p9cej88mt\\SystemAppData\\wgs\\{{P|uid}}\\}}" + - "{{Game data/saves|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\1809700\\remote\\}}" Persona 3 Reload: pageId: 187792 steam: 2161700 @@ -120970,46 +117694,38 @@ Persona 4 Arena Ultimax: pageId: 173584 steam: 1602010 templates: - - '{{Game data/config|Windows|{{p|appdata}}\P4U2\Save\p4u2configs.ini}}' - - '{{Game data/saves|Windows|{{p|appdata}}\P4U2\Save\*.dat}}' + - "{{Game data/config|Windows|{{p|appdata}}\\P4U2\\Save\\p4u2configs.ini}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\P4U2\\Save\\*.dat}}" Persona 4 Golden: pageId: 160971 steam: 1113000 templates: - - >- - {{Game data/config|Microsoft - Store|{{P|localappdata}}\Packages\SEGAofAmericaInc.D0cb6b3aet_s751p9cej88mt\SystemAppData\wgs\{{P|uid}}\}} - - '{{Game data/config|Steam|{{p|localappdata}}\Sega\P4G\P4G.ini}}' - - >- - {{Game data/saves|Microsoft - Store|{{P|localappdata}}\Packages\SEGAofAmericaInc.D0cb6b3aet_s751p9cej88mt\SystemAppData\wgs\{{P|uid}}\}} - - '{{Game data/saves|Steam|{{P|steam}}\userdata\{{P|uid}}\1113000\remote\}}' + - "{{Game data/config|Microsoft Store|{{P|localappdata}}\\Packages\\SEGAofAmericaInc.D0cb6b3aet_s751p9cej88mt\\SystemAppData\\wgs\\{{P|uid}}\\}}" + - "{{Game data/config|Steam|{{p|localappdata}}\\Sega\\P4G\\P4G.ini}}" + - "{{Game data/saves|Microsoft Store|{{P|localappdata}}\\Packages\\SEGAofAmericaInc.D0cb6b3aet_s751p9cej88mt\\SystemAppData\\wgs\\{{P|uid}}\\}}" + - "{{Game data/saves|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\1113000\\remote\\}}" Persona 5 Royal: pageId: 178253 steam: 1687950 templates: - - '{{Game data/config|Microsoft Store|{{P|appdata}}\SEGA\P5R\Microsoft\}}' - - '{{Game data/config|Steam|{{P|appdata}}\SEGA\P5R\Steam\{{P|uid}}\}}' - - >- - {{Game data/saves|Microsoft - Store|{{P|localappdata}}\Packages\SEGAofAmericaInc.F0cb6b3aer_s751p9cej88mt\SystemAppData\wgs\{{P|uid}}\}} - - '{{Game data/saves|Steam|{{P|appdata}}\SEGA\P5R\Steam\{{P|uid}}\savedata\}}' + - "{{Game data/config|Microsoft Store|{{P|appdata}}\\SEGA\\P5R\\Microsoft\\}}" + - "{{Game data/config|Steam|{{P|appdata}}\\SEGA\\P5R\\Steam\\{{P|uid}}\\}}" + - "{{Game data/saves|Microsoft Store|{{P|localappdata}}\\Packages\\SEGAofAmericaInc.F0cb6b3aer_s751p9cej88mt\\SystemAppData\\wgs\\{{P|uid}}\\}}" + - "{{Game data/saves|Steam|{{P|appdata}}\\SEGA\\P5R\\Steam\\{{P|uid}}\\savedata\\}}" Persona 5 Strikers: pageId: 165527 steam: 1382330 steamSide: - - 1482081 - 1482080 + - 1482081 templates: - - '{{Game data/config|Windows|{{P|appdata}}\SEGA\Steam\P5S\}}' - - '{{Game data/saves|Windows|{{P|appdata}}\SEGA\Steam\P5S\{{P|uid}}\}}' + - "{{Game data/config|Windows|{{P|appdata}}\\SEGA\\Steam\\P5S\\}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\SEGA\\Steam\\P5S\\{{P|uid}}\\}}" Persona 5 Tactica: pageId: 187794 steam: 2254740 templates: - - >- - {{Game data/saves|Microsoft - Store|{{P|localappdata}}\Packages\SEGAofAmericaInc.s0cb6b3ael_s751p9cej88mt\SystemAppData\wgs\{{P|uid}}\}} + - "{{Game data/saves|Microsoft Store|{{P|localappdata}}\\Packages\\SEGAofAmericaInc.s0cb6b3ael_s751p9cej88mt\\SystemAppData\\wgs\\{{P|uid}}\\}}" Personal Disco VR: pageId: 60734 steam: 618350 @@ -121020,18 +117736,16 @@ Perspective: pageId: 143856 steam: 1109410 templates: - - '{{Game data/config|Windows|{{P|programdata}}\Digipen\Perspective\Settings.trr}}' - - '{{Game data/saves|Windows|{{P|programdata}}\Digipen\Perspective\Save.trr}}' -'Perspectives: Aleppo-Helsinki': + - "{{Game data/config|Windows|{{P|programdata}}\\Digipen\\Perspective\\Settings.trr}}" + - "{{Game data/saves|Windows|{{P|programdata}}\\Digipen\\Perspective\\Save.trr}}" +"Perspectives: Aleppo-Helsinki": pageId: 75562 steam: 601990 -'Perspectives: Paradise': +"Perspectives: Paradise": pageId: 128451 steam: 1016390 templates: - - >- - {{Game data/config|Windows|{{P|hkcu}}\Software\Teatime Research Ltd.\Perspectives: Paradise 190909 - Teatime - Research Ltd.}} + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Teatime Research Ltd.\\Perspectives: Paradise 190909 - Teatime Research Ltd.}}" Perspecto: pageId: 94393 steam: 816890 @@ -121061,8 +117775,8 @@ Pesterquest: pageId: 144663 steam: 1144030 templates: - - '{{Game data/config|Windows|{{P|appdata}}\renpy\Pesterquest\persistent|{{P|game}}\game\saves\persistent}}' - - '{{Game data/saves|Windows|{{P|game}}\game\saves}}' + - "{{Game data/config|Windows|{{P|appdata}}\\renpy\\Pesterquest\\persistent|{{P|game}}\\game\\saves\\persistent}}" + - "{{Game data/saves|Windows|{{P|game}}\\game\\saves}}" Pestis: pageId: 93039 steam: 853480 @@ -121072,15 +117786,15 @@ Pet Chan: Pet Hotel Tycoon: pageId: 91395 templates: - - '{{Game data/config|Windows|{{p|game}}\data\game\save.txt}}' - - '{{Game data/saves|Windows|{{p|game}}\Profiles\}}' + - "{{Game data/config|Windows|{{p|game}}\\data\\game\\save.txt}}" + - "{{Game data/saves|Windows|{{p|game}}\\Profiles\\}}" Pet Puzzle: pageId: 138685 steam: 1092080 Pet Racer: pageId: 180546 templates: - - '{{Game data/config|Windows|{{p|game}}\Data\}}' + - "{{Game data/config|Windows|{{p|game}}\\Data\\}}" Pet Squad Racing: pageId: 72736 steam: 710250 @@ -121090,21 +117804,21 @@ Pet Store Panic: Petal Crash: pageId: 174466 steam: 1211110 -Peter Jackson's King Kong: +"Peter Jackson's King Kong": pageId: 52658 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Ubisoft\KingKong\}}' - - '{{Game data/saves|Windows|{{p|game}}\KingKong.sav}}' -Peter Jackson's King Kong Gamer's Edition: + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Ubisoft\\KingKong\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\KingKong.sav}}" +"Peter Jackson's King Kong Gamer's Edition": pageId: 139823 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Ubisoft\KingKong\}}' - - '{{Game data/saves|Windows|{{p|game}}\KingKong.sav}}' -'Peter Pan: Adventures in Never Land': + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Ubisoft\\KingKong\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\KingKong.sav}}" +"Peter Pan: Adventures in Never Land": pageId: 168655 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/saves|Windows|{{p|game}}\DPTWP.sav}}' + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\DPTWP.sav}}" Peter World: pageId: 104225 steam: 730460 @@ -121129,11 +117843,11 @@ Petz Dogz 2: Petz Horse Club: pageId: 172684 templates: - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Horsez08\Horsez08.sav}}' + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Horsez08\\Horsez08.sav}}" Petz Horsez 2 (2007): pageId: 172685 templates: - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Horsez\Horsez.sav}}' + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Horsez\\Horsez.sav}}" Petz Horsez 2 (2008): pageId: 41360 renamedFrom: @@ -121156,11 +117870,11 @@ Pew Pew Rocket: Pew-Pew Rocket: pageId: 144735 steam: 1145680 -'PewDiePie: Legend of the Brofist': +"PewDiePie: Legend of the Brofist": pageId: 30102 steam: 390520 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Outerminds Inc_\PewDiePie\}}' + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Outerminds Inc_\\PewDiePie\\}}" Phageborn Online Card Game PUBLIC BETA: pageId: 156507 steam: 1221580 @@ -121168,8 +117882,8 @@ Phantaruk: pageId: 41573 steam: 468930 templates: - - '{{Game data/config|Windows|{{p|game}}\Options.txt|{{p|hkcu}}\Software\Polyslash\Phantaruk\}}' - - '{{Game data/saves|Windows|{{p|game}}\PlayerData.phn}}' + - "{{Game data/config|Windows|{{p|game}}\\Options.txt|{{p|hkcu}}\\Software\\Polyslash\\Phantaruk\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\PlayerData.phn}}" Phantasma VR: pageId: 63446 steam: 608870 @@ -121178,33 +117892,33 @@ Phantasmagoria: pageId: 36557 steam: 501990 templates: - - '{{Game data/config|DOS|{{p|game}}\RESOURCE.CFG}}' - - '{{Game data/saves|Windows|{{p|game}}\Phant\PHANTSG.*}}' -'Phantasmagoria 2: A Puzzle of Flesh': + - "{{Game data/config|DOS|{{p|game}}\\RESOURCE.CFG}}" + - "{{Game data/saves|Windows|{{p|game}}\\Phant\\PHANTSG.*}}" +"Phantasmagoria 2: A Puzzle of Flesh": gog: 1207658841 pageId: 36560 steam: 501970 templates: - - '{{Game data/config|DOS|{{p|game}}\RESOURCE.CFG}}' - - '{{Game data/saves|DOS|{{p|game}}\P2SG.*}}' + - "{{Game data/config|DOS|{{p|game}}\\RESOURCE.CFG}}" + - "{{Game data/saves|DOS|{{p|game}}\\P2SG.*}}" Phantasmagoria of Flower View: pageId: 30995 steam: 1420810 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/saves|Windows|{{p|game}}\}}' -'Phantasmal: Survival Horror Roguelike': + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\}}" +"Phantasmal: Survival Horror Roguelike": pageId: 43604 steam: 342550 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\DefaultCompany\Main\}}' -'Phantasmat: Crucible Peak': + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\DefaultCompany\\Main\\}}" +"Phantasmat: Crucible Peak": pageId: 51608 steam: 533080 -'Phantasmat: The Dread of Oakville': +"Phantasmat: The Dread of Oakville": pageId: 112812 steam: 940980 -'Phantasmat: The Endless Night': +"Phantasmat: The Endless Night": pageId: 62239 steam: 635520 Phantasmata: @@ -121214,49 +117928,35 @@ Phantasy Star II: pageId: 30888 steam: 211203 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\SEGA Mega Drive - Classics\setup.dat|{{p|userprofile\Documents}}\SEGA Genesis Classics\setup.dat}} - - >- - {{Game data/saves|Windows|{{p|userprofile\Documents}}\SEGA Mega Drive - Classics\0051\|{{p|userprofile\Documents}}\SEGA Genesis Classics\0051\}} -'Phantasy Star III: Generations of Doom': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\SEGA Mega Drive Classics\\setup.dat|{{p|userprofile\\Documents}}\\SEGA Genesis Classics\\setup.dat}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\SEGA Mega Drive Classics\\0051\\|{{p|userprofile\\Documents}}\\SEGA Genesis Classics\\0051\\}}" +"Phantasy Star III: Generations of Doom": pageId: 30890 steam: 211204 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\SEGA Mega Drive - Classics\setup.dat|{{p|userprofile\Documents}}\SEGA Genesis Classics\setup.dat}} - - >- - {{Game data/saves|Windows|{{p|userprofile\Documents}}\SEGA Mega Drive - Classics\0052\|{{p|userprofile\Documents}}\SEGA Genesis Classics\0052\}} -'Phantasy Star IV: The End of the Millennium': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\SEGA Mega Drive Classics\\setup.dat|{{p|userprofile\\Documents}}\\SEGA Genesis Classics\\setup.dat}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\SEGA Mega Drive Classics\\0052\\|{{p|userprofile\\Documents}}\\SEGA Genesis Classics\\0052\\}}" +"Phantasy Star IV: The End of the Millennium": pageId: 30892 steam: 211205 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\SEGA Mega Drive - Classics\setup.dat|{{p|userprofile\Documents}}\SEGA Genesis Classics\setup.dat}} - - >- - {{Game data/saves|Windows|{{p|userprofile\Documents}}\SEGA Mega Drive - Classics\0053\|{{p|userprofile\Documents}}\SEGA Genesis Classics\0053\}} + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\SEGA Mega Drive Classics\\setup.dat|{{p|userprofile\\Documents}}\\SEGA Genesis Classics\\setup.dat}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\SEGA Mega Drive Classics\\0053\\|{{p|userprofile\\Documents}}\\SEGA Genesis Classics\\0053\\}}" Phantasy Star Online 2 New Genesis: pageId: 17793 renamedFrom: - Phantasy Star Online 2 steam: 1056640 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\SEGA\PHANTASYSTARONLINE2\user.pso2}}' - - >- - {{Game data/config|Epic Games - Launcher|{{P|userprofile\Documents}}\SEGA\PHANTASYSTARONLINE2_NA_EPICGAMES\user.pso2}} - - '{{Game data/config|Microsoft Store|{{P|userprofile\Documents}}\SEGA\PHANTASYSTARONLINE2_NA\user.pso2|}}' - - '{{Game data/config|Steam|{{P|userprofile\Documents}}\SEGA\PHANTASYSTARONLINE2_NA_STEAM\user.pso2|}}' + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\SEGA\\PHANTASYSTARONLINE2\\user.pso2}}" + - "{{Game data/config|Epic Games Launcher|{{P|userprofile\\Documents}}\\SEGA\\PHANTASYSTARONLINE2_NA_EPICGAMES\\user.pso2}}" + - "{{Game data/config|Microsoft Store|{{P|userprofile\\Documents}}\\SEGA\\PHANTASYSTARONLINE2_NA\\user.pso2|}}" + - "{{Game data/config|Steam|{{P|userprofile\\Documents}}\\SEGA\\PHANTASYSTARONLINE2_NA_STEAM\\user.pso2|}}" Phantasy Star Universe: pageId: 17795 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\SEGA\PHANTASY STAR UNIVERSE\Psu.ini}}' -'Phantasy Star Universe: Ambition of the Illuminus': + - "{{Game data/config|Windows|{{P|localappdata}}\\SEGA\\PHANTASY STAR UNIVERSE\\Psu.ini}}" +"Phantasy Star Universe: Ambition of the Illuminus": pageId: 169291 Phantom: pageId: 59661 @@ -121265,7 +117965,7 @@ Phantom Abyss: pageId: 169437 steam: 989440 templates: - - '{{Game data/config|Windows| {{P|localappdata}}\PhantomAbyss\Saved\Config\WindowsNoEditor\GameUserSettings.ini }}' + - "{{Game data/config|Windows| {{P|localappdata}}\\PhantomAbyss\\Saved\\Config\\WindowsNoEditor\\GameUserSettings.ini }}" Phantom Astronaut Lucid VR: pageId: 149344 steam: 1146810 @@ -121273,45 +117973,43 @@ Phantom Brave PC: pageId: 37427 steam: 409870 templates: - - '{{Game data/config|Windows|{{P|steam}}\userdata\{{P|uid}}\409870\remote\game.cfg}}' - - '{{Game data/saves|Windows|{{P|steam}}\userdata\{{P|uid}}\409870\remote\SAVEDATA\SAVE*.dat}}' -'Phantom Breaker: Battle Grounds': + - "{{Game data/config|Windows|{{P|steam}}\\userdata\\{{P|uid}}\\409870\\remote\\game.cfg}}" + - "{{Game data/saves|Windows|{{P|steam}}\\userdata\\{{P|uid}}\\409870\\remote\\SAVEDATA\\SAVE*.dat}}" +"Phantom Breaker: Battle Grounds": pageId: 28702 steam: 329490 steamSide: - 333110 - 348940 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\Saved Games\Phantom - Breaker\Config\config.dat|{{p|game}}\bin\keyboard.ini}} - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Saved Games\Phantom Breaker\Config\}}' -'Phantom Breaker: Omnia': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Saved Games\\Phantom Breaker\\Config\\config.dat|{{p|game}}\\bin\\keyboard.ini}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Saved Games\\Phantom Breaker\\Config\\}}" +"Phantom Breaker: Omnia": pageId: 164292 steam: 1184560 templates: - - '{{Game data/config|Windows|{{p|game}}\omniaConf.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\SAVEDATA\Config\*.dat}}' + - "{{Game data/config|Windows|{{p|game}}\\omniaConf.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\SAVEDATA\\Config\\*.dat}}" Phantom Brigade: pageId: 105733 steam: 553540 templates: - - '{{Game data/config|Windows| {{P|localappdata}}\PhantomBrigade\Settings\ }}' - - '{{Game data/saves|Windows|{{P|localappdata}}\PhantomBrigade\Saves\ }}' + - "{{Game data/config|Windows| {{P|localappdata}}\\PhantomBrigade\\Settings\\ }}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\PhantomBrigade\\Saves\\ }}" Phantom Doctrine: gog: 1944341561 pageId: 69088 steam: 559100 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\PhantomDoctrine\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\PhantomDoctrine\Saved\{{p|uid}}\SaveGames\}}' -'Phantom Doctrine 2: The Cabal': + - "{{Game data/config|Windows|{{p|localappdata}}\\PhantomDoctrine\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\PhantomDoctrine\\Saved\\{{p|uid}}\\SaveGames\\}}" +"Phantom Doctrine 2: The Cabal": pageId: 162225 steam: 1345450 Phantom Dust: pageId: 62431 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Packages\Microsoft.MSEsper_8wekyb3d8bbwe\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Packages\\Microsoft.MSEsper_8wekyb3d8bbwe\\}}" Phantom Fury: gog: 1723278812 pageId: 181591 @@ -121326,8 +118024,8 @@ Phantom Jump: pageId: 76319 steam: 701440 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\PhantomJump\config.ini}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\PhantomJump\Data}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\PhantomJump\\config.ini}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\PhantomJump\\Data}}" Phantom Path: pageId: 151143 steam: 1180970 @@ -121357,27 +118055,27 @@ Pharaoh: pageId: 2485 steam: 564530 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/saves|Windows|{{p|game}}\Save}}' + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\Save}}" Pharaoh Rebirth+: pageId: 37339 steam: 441280 templates: - - '{{Game data/config|Windows|{{p|game}}\data\config\}}' - - '{{Game data/saves|Windows|{{p|game}}\data\config\}}' -Pharaoh's Tomb: + - "{{Game data/config|Windows|{{p|game}}\\data\\config\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\data\\config\\}}" +"Pharaoh's Tomb": pageId: 30447 steam: 358330 templates: - - '{{Game data/config|DOS|{{p|game}}\PTOMB.CFG}}' - - '{{Game data/saves|DOS|{{p|game}}\PTOMB*.SAV}}' -'Pharaoh: A New Era': + - "{{Game data/config|DOS|{{p|game}}\\PTOMB.CFG}}" + - "{{Game data/saves|DOS|{{p|game}}\\PTOMB*.SAV}}" +"Pharaoh: A New Era": gog: 1130873336 pageId: 162903 steam: 1351080 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\Triskell Interactive\Pharaoh\{{p|uid}}}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Triskell Interactive\Pharaoh\{{p|uid}}}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Triskell Interactive\\Pharaoh\\{{p|uid}}}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Triskell Interactive\\Pharaoh\\{{p|uid}}}}" Pharaonic: gog: 1331575837 pageId: 34087 @@ -121390,8 +118088,8 @@ Phase Edge: Phase Shift: pageId: 32290 templates: - - '{{Game data/config|Windows|{{p|game}}\settings}}' - - '{{Game data/saves|Windows|{{p|game}}\profiles}}' + - "{{Game data/config|Windows|{{p|game}}\\settings}}" + - "{{Game data/saves|Windows|{{p|game}}\\profiles}}" Phase Shift (2019): pageId: 137314 steam: 865250 @@ -121399,8 +118097,8 @@ Phasmophobia: pageId: 164135 steam: 739630 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\SOFTWARE\Kinetic Games\Phasmophobia\}}' - - '{{Game data/saves|Windows|{{p|USERPROFILE}}\AppData\LocalLow\Kinetic Games\Phasmophobia\saveData.txt}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\SOFTWARE\\Kinetic Games\\Phasmophobia\\}}" + - "{{Game data/saves|Windows|{{p|USERPROFILE}}\\AppData\\LocalLow\\Kinetic Games\\Phasmophobia\\saveData.txt}}" Phat Phrog: pageId: 52287 steam: 545570 @@ -121413,7 +118111,7 @@ Phat Stacks 2: Pheer: pageId: 89454 steam: 817580 -'Phenomenal Car Park Simulator: Digital Deluxe Edition': +"Phenomenal Car Park Simulator: Digital Deluxe Edition": pageId: 151097 steam: 1158860 Phil Alone: @@ -121422,20 +118120,20 @@ Phil Alone: PhilGood: pageId: 141756 steam: 1082620 -'Philia: The Sequel to Elansar': +"Philia: The Sequel to Elansar": pageId: 45018 steam: 435080 -'Philophobia: The Fear of Love': +"Philophobia: The Fear of Love": pageId: 154142 steam: 1035950 Philosophic Love: pageId: 104697 steam: 528060 -'Phineas and Ferb: New Inventions': +"Phineas and Ferb: New Inventions": pageId: 48629 steam: 318300 templates: - - '{{Game data/saves|Windows|Documents\PIPE Studio\Phineas and Ferb\SAVES}}' + - "{{Game data/saves|Windows|Documents\\PIPE Studio\\Phineas and Ferb\\SAVES}}" Phlyndir: pageId: 144369 steam: 448990 @@ -121449,59 +118147,45 @@ Phoenix Force: pageId: 49337 steam: 332480 templates: - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\SavedGames\PhoenixForceXNA\PFStorage\Player1\mysave.sav}}' + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\SavedGames\\PhoenixForceXNA\\PFStorage\\Player1\\mysave.sav}}" Phoenix Point: gog: 1795581746 pageId: 91441 steam: 839770 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Snapshot Games Inc\Phoenix Point\}}' - - >- - {{Game data/config|Epic Games Launcher|{{P|userprofile}}\AppData\LocalLow\Snapshot Games Inc\Phoenix - Point\EGS\{{P|uid}}\Options.jopt|{{P|userprofile}}\AppData\LocalLow\Snapshot Games Inc\Phoenix - Point\EGS\LocalData\Options.jopt|}} - - >- - {{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Snapshot Games Inc\Phoenix - Point\Steam\76561197977564809}} - - >- - {{Game data/saves|Epic Games Launcher|{{P|userprofile}}\AppData\LocalLow\Snapshot Games Inc\Phoenix - Point\EGS\{{P|uid}}\*.zsav|{{P|userprofile}}\AppData\LocalLow\Snapshot Games Inc\Phoenix - Point\EGS\LocalData\*.zsav}} - - '{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/com.snapshotgames.phoenixpoint}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Snapshot Games Inc\\Phoenix Point\\}}" + - "{{Game data/config|Epic Games Launcher|{{P|userprofile}}\\AppData\\LocalLow\\Snapshot Games Inc\\Phoenix Point\\EGS\\{{P|uid}}\\Options.jopt|{{P|userprofile}}\\AppData\\LocalLow\\Snapshot Games Inc\\Phoenix Point\\EGS\\LocalData\\Options.jopt|}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Snapshot Games Inc\\Phoenix Point\\Steam\\76561197977564809}}" + - "{{Game data/saves|Epic Games Launcher|{{P|userprofile}}\\AppData\\LocalLow\\Snapshot Games Inc\\Phoenix Point\\EGS\\{{P|uid}}\\*.zsav|{{P|userprofile}}\\AppData\\LocalLow\\Snapshot Games Inc\\Phoenix Point\\EGS\\LocalData\\*.zsav}}" + - "{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/com.snapshotgames.phoenixpoint}}" Phoenix Tales: pageId: 153334 steam: 1187490 -'Phoenix Wright: Ace Attorney': +"Phoenix Wright: Ace Attorney": pageId: 176123 -'Phoenix Wright: Ace Attorney Trilogy': +"Phoenix Wright: Ace Attorney Trilogy": pageId: 111586 steam: 787480 templates: - - '{{Game data/saves|Windows|{{p|hkcu}}\Software\CAPCOM\Phoenix Wright: Ace Attorney Trilogy / 逆転裁判123 成歩堂セレクション\}}' - - >- - {{Game data/saves|Microsoft - Store|{{p|localappdata}}\Packages\F024294D.PhoenixWrightAceAttorneyTrilogy_8fty0by30jkny\SystemAppData\wgs\{{p|uid}}\}} - - '{{Game data/config|Steam|{{p|steam}}\userdata\{{p|uid}}\787480\remote\systemdata}}' - - >- - {{Game data/saves|Microsoft - Store|{{p|localappdata}}\Packages\F024294D.PhoenixWrightAceAttorneyTrilogy_8fty0by30jkny\SystemAppData\wgs\{{p|uid}}\}} - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\787480\remote\systemdata}}' -'Phoenotopia: Awakening': + - "{{Game data/saves|Windows|{{p|hkcu}}\\Software\\CAPCOM\\Phoenix Wright: Ace Attorney Trilogy / 逆転裁判123 成歩堂セレクション\\}}" + - "{{Game data/saves|Microsoft Store|{{p|localappdata}}\\Packages\\F024294D.PhoenixWrightAceAttorneyTrilogy_8fty0by30jkny\\SystemAppData\\wgs\\{{p|uid}}\\}}" + - "{{Game data/config|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\787480\\remote\\systemdata}}" + - "{{Game data/saves|Microsoft Store|{{p|localappdata}}\\Packages\\F024294D.PhoenixWrightAceAttorneyTrilogy_8fty0by30jkny\\SystemAppData\\wgs\\{{p|uid}}\\}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\787480\\remote\\systemdata}}" +"Phoenotopia: Awakening": gog: 1758100348 pageId: 170134 steam: 1436590 templates: - - >- - {{Game - data/config|Windows|{{P|userprofile\appdata\locallow}}\CapeCosmic\PhoenotopiaAwakening\settings_save.dat|{{P|hkcu}}\SOFTWARE\CapeCosmic\PhoenotopiaAwakening\}} - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\CapeCosmic\PhoenotopiaAwakening\file_*_save.dat}}' + - "{{Game data/config|Windows|{{P|userprofile\\appdata\\locallow}}\\CapeCosmic\\PhoenotopiaAwakening\\settings_save.dat|{{P|hkcu}}\\SOFTWARE\\CapeCosmic\\PhoenotopiaAwakening\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\CapeCosmic\\PhoenotopiaAwakening\\file_*_save.dat}}" Phoning Home: gog: 1167911806 pageId: 56384 steam: 431650 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Ion Lands\Phoning Home\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Ion Lands\Phoning Home\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Ion Lands\\Phoning Home\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Ion Lands\\Phoning Home\\}}" Phonopolis: gog: 1093540480 pageId: 178546 @@ -121516,8 +118200,8 @@ Photographs: pageId: 127922 steam: 1008920 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\EightyEightGames\Photographs\settings\settings.dat}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\EightyEightGames\Photographs\save\*.sav}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\EightyEightGames\\Photographs\\settings\\settings.dat}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\EightyEightGames\\Photographs\\save\\*.sav}}" Photon Cube: pageId: 96481 steam: 867510 @@ -121551,10 +118235,10 @@ Physic Monster: Physica-E: pageId: 69769 steam: 706360 -'Physical Exorcism: Case 01': +"Physical Exorcism: Case 01": pageId: 121172 renamedFrom: - - 'Physical Exorcism: Case 01 / 除靈(物理)案件01' + - "Physical Exorcism: Case 01 / 除靈(物理)案件01" steam: 949890 Physical Glitch: pageId: 156112 @@ -121582,7 +118266,7 @@ Pianistic: pageId: 168114 steam: 1325470 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Bytecat Games\Pianistic\*.json}}' + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Bytecat Games\\Pianistic\\*.json}}" Piano Bar: pageId: 108048 steam: 920700 @@ -121608,23 +118292,23 @@ Pichon: pageId: 87439 steam: 497190 templates: - - '{{Game data/saves|Windows|{{p|game}}\saves\Default\Local Storage\|{{p|game}}\saves2\Default\Local Storage\}}' - - '{{Game data/saves|OS X|{{p|game}}\saves\Default\Local Storage\|{{p|game}}\saves2\Default\Local Storage\}}' - - '{{Game data/saves|Linux|{{p|game}}\saves\Default\Local Storage\|{{p|game}}\saves2\Default\Local Storage\}}' + - "{{Game data/saves|Windows|{{p|game}}\\saves\\Default\\Local Storage\\|{{p|game}}\\saves2\\Default\\Local Storage\\}}" + - "{{Game data/saves|OS X|{{p|game}}\\saves\\Default\\Local Storage\\|{{p|game}}\\saves2\\Default\\Local Storage\\}}" + - "{{Game data/saves|Linux|{{p|game}}\\saves\\Default\\Local Storage\\|{{p|game}}\\saves2\\Default\\Local Storage\\}}" Pick Your Poison: pageId: 154217 steam: 1191000 Pick a Hero: pageId: 33904 steam: 485620 -'Pick, shoot, repeat!': +"Pick, shoot, repeat!": pageId: 156274 steam: 1220440 PickCrafter: pageId: 77944 steam: 734750 templates: - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\fiveamp\PickCrafter}}' + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\fiveamp\\PickCrafter}}" Pickers: pageId: 40834 steam: 204440 @@ -121643,7 +118327,7 @@ Picross Bonbon - Nonogram: Picross Fairytale: pageId: 95137 steam: 820030 -'Picross Fairytale: Legend of the Mermaid': +"Picross Fairytale: Legend of the Mermaid": pageId: 102363 steam: 820040 Picross Floof: @@ -121656,7 +118340,7 @@ Picross Touch: pageId: 36854 steam: 476460 templates: - - '{{Game data/saves|Windows|{{p|hkcu}}\Software\jgallant\Picross Touch}}' + - "{{Game data/saves|Windows|{{p|hkcu}}\\Software\\jgallant\\Picross Touch}}" Picross.io: pageId: 150490 steam: 1178310 @@ -121667,16 +118351,16 @@ PictoQuest: pageId: 157803 steam: 1014040 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\NanoPiko\PictoQuest\}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\NanoPiko\PictoQuest\save.json}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\NanoPiko\\PictoQuest\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\NanoPiko\\PictoQuest\\save.json}}" Pictopix: pageId: 55580 steam: 568320 templates: - - '{{Game data/config|Windows|{{p|HKCU}}\Software\Tomlab Games\Pictopix\}}' - - '{{Game data/config|Linux|{{p|xdgconfighome}}/unity3d/Tomlab Games/Pictopix/prefs}}' - - '{{Game data/saves|Windows|{{p|USERPROFILE}}\AppData\LocalLow\Tomlab Games\Pictopix\{{p|uid}}\game.sav}}' - - '{{Game data/saves|Linux|{{p|xdgconfighome}}/unity3d/Tomlab Games/Pictopix/{{p|uid}}/}}' + - "{{Game data/config|Windows|{{p|HKCU}}\\Software\\Tomlab Games\\Pictopix\\}}" + - "{{Game data/config|Linux|{{p|xdgconfighome}}/unity3d/Tomlab Games/Pictopix/prefs}}" + - "{{Game data/saves|Windows|{{p|USERPROFILE}}\\AppData\\LocalLow\\Tomlab Games\\Pictopix\\{{p|uid}}\\game.sav}}" + - "{{Game data/saves|Linux|{{p|xdgconfighome}}/unity3d/Tomlab Games/Pictopix/{{p|uid}}/}}" Picture toys: pageId: 153254 steam: 1181120 @@ -121694,26 +118378,26 @@ Pid: pageId: 14814 steam: 218740 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Might and Delight\Pid\}}' - - '{{Game data/saves|Windows|{{P|game}}\Saves\}}' - - '{{Game data/saves|Steam|{{P|steam}}\userdata\{{P|uid}}\218740\remote\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Might and Delight\\Pid\\}}" + - "{{Game data/saves|Windows|{{P|game}}\\Saves\\}}" + - "{{Game data/saves|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\218740\\remote\\}}" Piece of Memory: pageId: 65457 steam: 674420 -'Piece of Memory 2: Prologue': +"Piece of Memory 2: Prologue": pageId: 65479 steam: 676520 Pieces of Eight: pageId: 91600 steam: 803500 -'Pieces of Me: Northbound': +"Pieces of Me: Northbound": pageId: 155717 steam: 1202090 Pieces of my Heart: pageId: 164443 steam: 1226640 templates: - - '{{Game data/saves|Steam|{{p|userprofile\appdata\locallow}}\Kinky Fridays\Pieces of my Heart\}}' + - "{{Game data/saves|Steam|{{p|userprofile\\appdata\\locallow}}\\Kinky Fridays\\Pieces of my Heart\\}}" Pier Solar and the Great Architects: gog: 1207666563 pageId: 34382 @@ -121721,8 +118405,8 @@ Pier Solar and the Great Architects: steamSide: - 328200 templates: - - '{{Game data/config|Steam|{{p|steam}}/userdata/{{p|uid}}/286220/}}' - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/286220/}}' + - "{{Game data/config|Steam|{{p|steam}}/userdata/{{p|uid}}/286220/}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/286220/}}" Piercing Blow: pageId: 45674 steam: 382850 @@ -121739,9 +118423,9 @@ Pig Eat Ball: pageId: 52868 steam: 339090 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Mommys Best Games\PigEatBall\}}' - - '{{Game data/config|Steam|{{P|steam}}\userdata\{{P|uid}}\339090\remote\PigOptionsData.xml}}' - - '{{Game data/saves|Steam|{{P|steam}}\userdata\{{P|uid}}\339090\remote\PigGameData*.xml}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Mommys Best Games\\PigEatBall\\}}" + - "{{Game data/config|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\339090\\remote\\PigOptionsData.xml}}" + - "{{Game data/saves|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\339090\\remote\\PigGameData*.xml}}" Pigeon Fight: pageId: 72793 steam: 520370 @@ -121757,7 +118441,7 @@ Piggy Poggy Pog: Piggy Princess: pageId: 44068 steam: 454670 -Piglet's Big Game: +"Piglet's Big Game": pageId: 187688 Pigmentone: pageId: 42469 @@ -121774,7 +118458,7 @@ Pigsaw: PiiSim: pageId: 130340 steam: 1002270 -'Pike and Shot: Campaigns': +"Pike and Shot: Campaigns": pageId: 46893 steam: 377520 Pikmin: @@ -121787,11 +118471,11 @@ Pikuniku: pageId: 124341 steam: 572890 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Sectordub\Pikuniku}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Sectordub/Pikuniku/}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Sectordub\Pikuniku\saves\}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Sectordub/Pikuniku/}}' - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{P|uid}}/572890/remote/}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Sectordub\\Pikuniku}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Sectordub/Pikuniku/}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Sectordub\\Pikuniku\\saves\\}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Sectordub/Pikuniku/}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{P|uid}}/572890/remote/}}" Pilam Sky: pageId: 63171 steam: 611960 @@ -121802,23 +118486,15 @@ Pile Up! Box by Box: - Pile Up steam: 1109820 templates: - - '{{Game data/config|Windows|{{P|userprofile\appdata\locallow}}\Seed By Seed\PileUp}}' - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Seed By Seed\PileUp}}' + - "{{Game data/config|Windows|{{P|userprofile\\appdata\\locallow}}\\Seed By Seed\\PileUp}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Seed By Seed\\PileUp}}" Pile of Cards: pageId: 97439 templates: - - >- - {{Game - data/config|Windows|{{p|localappdata}}\Osgoode_Media\PileOfCards.exe_StrongName_1ea1dwmr5kqp31skbdibflqi5mjg51gl\1.0.0.0\user.config}} - - >- - {{Game data/config|Microsoft - Store|{{p|localappdata}}\Packages\16591Monstrous.PileofCards_skedv6py88bbr\Settings\settings.dat}} - - >- - {{Game - data/saves|Windows|{{p|localappdata}}\Osgoode_Media\PileOfCards.exe_StrongName_1ea1dwmr5kqp31skbdibflqi5mjg51gl\1.0.0.0\user.config}} - - >- - {{Game data/saves|Microsoft - Store|{{p|localappdata}}\Packages\16591Monstrous.PileofCards_skedv6py88bbr\Settings\settings.dat}} + - "{{Game data/config|Windows|{{p|localappdata}}\\Osgoode_Media\\PileOfCards.exe_StrongName_1ea1dwmr5kqp31skbdibflqi5mjg51gl\\1.0.0.0\\user.config}}" + - "{{Game data/config|Microsoft Store|{{p|localappdata}}\\Packages\\16591Monstrous.PileofCards_skedv6py88bbr\\Settings\\settings.dat}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Osgoode_Media\\PileOfCards.exe_StrongName_1ea1dwmr5kqp31skbdibflqi5mjg51gl\\1.0.0.0\\user.config}}" + - "{{Game data/saves|Microsoft Store|{{p|localappdata}}\\Packages\\16591Monstrous.PileofCards_skedv6py88bbr\\Settings\\settings.dat}}" Pilfer: pageId: 155330 steam: 1206260 @@ -121833,9 +118509,9 @@ Pilgrims: pageId: 147691 steam: 1049280 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Amanita Design\Pilgrims\}}' - - '{{Game data/saves|Windows|{{P|hkcu}}\Software\Amanita Design\Pilgrims\}}' - - '{{Game data/saves|Steam|{{p|steam}}/steamapps/common/Pilgrims/Saves/}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Amanita Design\\Pilgrims\\}}" + - "{{Game data/saves|Windows|{{P|hkcu}}\\Software\\Amanita Design\\Pilgrims\\}}" + - "{{Game data/saves|Steam|{{p|steam}}/steamapps/common/Pilgrims/Saves/}}" Pill Cosbi: pageId: 73831 steam: 727410 @@ -121852,44 +118528,38 @@ Pillars of Eternity: gog: 1207666813 gogSide: - 1207666853 + - 1344895033 - 1420803723 - - 1439805257 - 1439805122 + - 1439805257 - 1439894629 - 1577585691 - - 1344895033 pageId: 23003 steam: 291650 templates: - - '{{Game data/config|Windows|{{p|HKCU}}\Software\Obsidian Entertainment\Pillars of Eternity\}}' - - >- - {{Game data/config|Microsoft - Store|{{p|LOCALAPPDATA}}\Packages\ParadoxInteractive.PillarsofEternity-MicrosoftStor_zfnrdv2de78ny\SystemAppData\Helium}} - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Preferences/unity.Obsidian Entertainment.Pillars of Eternity.plist}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Obsidian Entertainment/Pillars of Eternity/}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\Saved Games\Pillars of Eternity\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Pillars of Eternity/Saved Games/}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/PillarsOfEternity/SavedGames/}}' -'Pillars of Eternity II: Deadfire': + - "{{Game data/config|Windows|{{p|HKCU}}\\Software\\Obsidian Entertainment\\Pillars of Eternity\\}}" + - "{{Game data/config|Microsoft Store|{{p|LOCALAPPDATA}}\\Packages\\ParadoxInteractive.PillarsofEternity-MicrosoftStor_zfnrdv2de78ny\\SystemAppData\\Helium}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Preferences/unity.Obsidian Entertainment.Pillars of Eternity.plist}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Obsidian Entertainment/Pillars of Eternity/}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Saved Games\\Pillars of Eternity\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Pillars of Eternity/Saved Games/}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/PillarsOfEternity/SavedGames/}}" +"Pillars of Eternity II: Deadfire": gog: 1788509829 gogSide: - 1354196345 - - 2125256630 - 1581770611 + - 2125256630 pageId: 57045 steam: 560130 templates: - - '{{Game data/config|Windows|{{p|HKCU}}\Software\Obsidian Entertainment\Pillars of Eternity II\}}' - - >- - {{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Preferences/unity.Obsidian Entertainment.Pillars - Of Eternity II.plist}} - - '{{Game data/config|Linux|{{p|xdgconfighome}}/unity3d/Obsidian Entertainment/Pillars of Eternity II/prefs}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\Saved Games\Pillars of Eternity II\}}' - - >- - {{Game data/saves|Microsoft - Store|{{P|localappdata}}\Packages\VersusEvil.PillarsofEternity2-PC_xa16sj1v690xg\SystemAppData\wgs\}} - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Pillars of Eternity II/Saved Games/}}' - - '{{Game data/saves|Linux|{{p|xdgdatahome}}/PillarsOfEternityII/SavedGames/}}' + - "{{Game data/config|Windows|{{p|HKCU}}\\Software\\Obsidian Entertainment\\Pillars of Eternity II\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Preferences/unity.Obsidian Entertainment.Pillars Of Eternity II.plist}}" + - "{{Game data/config|Linux|{{p|xdgconfighome}}/unity3d/Obsidian Entertainment/Pillars of Eternity II/prefs}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Saved Games\\Pillars of Eternity II\\}}" + - "{{Game data/saves|Microsoft Store|{{P|localappdata}}\\Packages\\VersusEvil.PillarsofEternity2-PC_xa16sj1v690xg\\SystemAppData\\wgs\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Pillars of Eternity II/Saved Games/}}" + - "{{Game data/saves|Linux|{{p|xdgdatahome}}/PillarsOfEternityII/SavedGames/}}" Pilli Adventure: pageId: 77567 steam: 720020 @@ -121907,7 +118577,7 @@ Pilot Brothers 2: gog: 1426251362 pageId: 36347 steam: 336770 -'Pilot Brothers 3: Back Side of the Earth': +"Pilot Brothers 3: Back Side of the Earth": gog: 1426251500 pageId: 36349 steam: 336780 @@ -121933,7 +118603,7 @@ Pimiko Plus: pageId: 76131 steam: 732030 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Pimiko Plus\}}' + - "{{Game data/config|Windows|{{p|appdata}}\\Pimiko Plus\\}}" Pimp Tight: pageId: 58505 steam: 555100 @@ -121947,7 +118617,7 @@ Pinball 2018: steam: 856430 Pinball 3: pageId: 94986 -'Pinball Deluxe: Reloaded': +"Pinball Deluxe: Reloaded": pageId: 69384 steam: 678310 Pinball Dreams: @@ -121956,38 +118626,38 @@ Pinball Dreams: - 1207658910 pageId: 131950 templates: - - '{{Game data/saves|DOS|{{Path|game}}\HISCORES}}' + - "{{Game data/saves|DOS|{{Path|game}}\\HISCORES}}" Pinball Dreams 2: gog: 1207664093 gogSide: - 1207658910 pageId: 131955 templates: - - '{{Game data/config|DOS|{{Path|Game}}\SOUND.CFG}}' - - '{{Game data/saves|DOS|{{Path|Game}}\HISCORES}}' + - "{{Game data/config|DOS|{{Path|Game}}\\SOUND.CFG}}" + - "{{Game data/saves|DOS|{{Path|Game}}\\HISCORES}}" Pinball Dreams Deluxe: gog: 1207664093 gogSide: - 1207658910 pageId: 154686 templates: - - '{{Game data/config|DOS|{{Path|Game}}\DDPCOPTN.BIN}}' - - '{{Game data/saves|DOS|{{Path|Game}}\HISCORES.PD1|{{Path|Game}}\HISCORES.PD2}}' + - "{{Game data/config|DOS|{{Path|Game}}\\DDPCOPTN.BIN}}" + - "{{Game data/saves|DOS|{{Path|Game}}\\HISCORES.PD1|{{Path|Game}}\\HISCORES.PD2}}" Pinball Dreams HD: pageId: 147647 Pinball FX: pageId: 176721 steam: 2328760 templates: - - '{{Game data/saves|Steam|{{p|localappdata}}\PinballFX_STEAM\Saved\SaveGames\{{p|uid}}\*.sav}}' + - "{{Game data/saves|Steam|{{p|localappdata}}\\PinballFX_STEAM\\Saved\\SaveGames\\{{p|uid}}\\*.sav}}" Pinball FX2: pageId: 22193 steam: 226980 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\Zen Studios\Profile backup\226980\}}' - - '{{Game data/config|Steam|{{p|steam}}\userdata\{{p|uid}}\226980\}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\Zen Studios\Profile backup\226980\}}' - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\226980\}}' + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\Zen Studios\\Profile backup\\226980\\}}" + - "{{Game data/config|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\226980\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\Zen Studios\\Profile backup\\226980\\}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\226980\\}}" Pinball FX2 VR: pageId: 53920 steam: 547590 @@ -121995,18 +118665,18 @@ Pinball FX3: pageId: 64624 steam: 442120 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\Zen Studios\Profile backup\442120\}}' - - '{{Game data/config|Steam|{{p|steam}}/userdata/{{p|uid}}/442120/}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\Zen Studios\Profile backup\442120\}}' - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/442120/}}' + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\Zen Studios\\Profile backup\\442120\\}}" + - "{{Game data/config|Steam|{{p|steam}}/userdata/{{p|uid}}/442120/}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\Zen Studios\\Profile backup\\442120\\}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/442120/}}" Pinball Fantasies: gog: 1207664103 gogSide: - 1207658910 pageId: 26166 templates: - - '{{Game data/config|DOS|{{Path|Game}}\SOUND.CFG|{{Path|Game}}\PINBALL.CFG}}' - - '{{Game data/saves|DOS|{{Path|Game}}\TABLE*.HI}}' + - "{{Game data/config|DOS|{{Path|Game}}\\SOUND.CFG|{{Path|Game}}\\PINBALL.CFG}}" + - "{{Game data/saves|DOS|{{Path|Game}}\\TABLE*.HI}}" Pinball HD Collection: pageId: 41876 steam: 448670 @@ -122015,7 +118685,7 @@ Pinball Illusions: gogSide: - 1207658910 pageId: 131957 -'Pinball Inside: A VR Arcade Game': +"Pinball Inside: A VR Arcade Game": pageId: 58991 steam: 605850 Pinball Mania: @@ -122024,8 +118694,8 @@ Pinball Mania: - 1207658910 pageId: 131959 templates: - - '{{Game data/config|DOS|{{Path|Game}}\SOUND.CFG}}' - - '{{Game data/saves|DOS|{{Path|Game}}\HISCORES}}' + - "{{Game data/config|DOS|{{Path|Game}}\\SOUND.CFG}}" + - "{{Game data/saves|DOS|{{Path|Game}}\\HISCORES}}" Pinball Parlor: pageId: 55720 steam: 514570 @@ -122048,13 +118718,11 @@ Pine: steamSide: - 1205230 templates: - - >- - {{Game - data/config|Windows|{{P|userprofile}}\AppData\LocalLow\Twirlbound\Pine\settings.xml|{{P|hkcu}}\Software\Twirlbound\Pine\}} - - '{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/Twirlbound/Pine/settings.xml}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Twirlbound\Pine\saves\}}' - - '{{Game data/saves|Steam|{{P|steam}}/userdata/{{P|uid}}/1042780/remote/saves/}}' - - '{{Game data/saves|Linux|{{Code|$HOME}}/.config/unity3d/Twirlbound/Pine/saves/}}' + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Twirlbound\\Pine\\settings.xml|{{P|hkcu}}\\Software\\Twirlbound\\Pine\\}}" + - "{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/Twirlbound/Pine/settings.xml}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Twirlbound\\Pine\\saves\\}}" + - "{{Game data/saves|Steam|{{P|steam}}/userdata/{{P|uid}}/1042780/remote/saves/}}" + - "{{Game data/saves|Linux|{{Code|$HOME}}/.config/unity3d/Twirlbound/Pine/saves/}}" Pine Seekers: pageId: 64323 steam: 658710 @@ -122064,7 +118732,7 @@ Pineapple Smash Crew: Pineview Drive: pageId: 49835 steam: 288880 -'Pineview Drive: Homeless': +"Pineview Drive: Homeless": pageId: 132264 steam: 905090 Pinewood Island: @@ -122112,19 +118780,19 @@ Pink Heaven: pageId: 31097 steam: 409690 templates: - - '{{Game data/config|Windows|{{p|game}}\rsc_p\profile\}}' - - '{{Game data/saves|Windows|{{p|game}}\rsc_p\profile\}}' + - "{{Game data/config|Windows|{{p|game}}\\rsc_p\\profile\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\rsc_p\\profile\\}}" Pink Hour: pageId: 31090 steam: 409670 templates: - - '{{Game data/config|Windows|{{p|game}}\rsc_p\profile\}}' - - '{{Game data/saves|Windows|{{p|game}}\rsc_p\profile\}}' -'Pink Panther: Pinkadelic Pursuit': + - "{{Game data/config|Windows|{{p|game}}\\rsc_p\\profile\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\rsc_p\\profile\\}}" +"Pink Panther: Pinkadelic Pursuit": pageId: 36301 templates: - - '{{Game data/config|Windows|{{p|game}}\data\Save\Pinky.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\data\Save\Pinky.pnk}}' + - "{{Game data/config|Windows|{{p|game}}\\data\\Save\\Pinky.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\data\\Save\\Pinky.pnk}}" Pink Rage Otome: pageId: 66065 steam: 664620 @@ -122148,8 +118816,8 @@ Pinstripe: pageId: 39304 steam: 331480 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Atmos Games, LLC\Pinstripe\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Atmos Games, LLC\Pinstripe\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Atmos Games, LLC\\Pinstripe\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Atmos Games, LLC\\Pinstripe\\}}" Pinup Ball - Sexy Strip Pinball: pageId: 146112 steam: 904900 @@ -122211,8 +118879,8 @@ Pirate Hell: Pirate Hunter: pageId: 90751 templates: - - '{{Game data/config|Windows|{{p|game}}\data\animbase\console\cvars.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\savegames\}}' + - "{{Game data/config|Windows|{{p|game}}\\data\\animbase\\console\\cvars.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\savegames\\}}" Pirate Island Rescue: pageId: 110560 steam: 928940 @@ -122220,8 +118888,8 @@ Pirate Jam: pageId: 175928 steam: 1878210 templates: - - '{{Game data/config|Windows|Unknown.}}' - - '{{Game data/saves|Windows|Unknown.}}' + - "{{Game data/config|Windows|Unknown.}}" + - "{{Game data/saves|Windows|Unknown.}}" Pirate Jump 2: pageId: 67613 steam: 690860 @@ -122232,15 +118900,15 @@ Pirate Pop Plus: pageId: 51481 steam: 487350 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\13AM Games\Pirate Pop Plus}}' - - '{{Game data/saves|Windows|{{p|hkcu}}\Software\13AM Games\Pirate Pop Plus}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\13AM Games\\Pirate Pop Plus}}" + - "{{Game data/saves|Windows|{{p|hkcu}}\\Software\\13AM Games\\Pirate Pop Plus}}" Pirate Survival Fantasy Shooter: pageId: 121190 steam: 963150 -Pirate's Life: +"Pirate's Life": pageId: 48194 steam: 359370 -Pirate's Path: +"Pirate's Path": pageId: 179310 Pirates Are BLANKing Awesome: pageId: 135582 @@ -122258,11 +118926,8 @@ Pirates of Black Cove: pageId: 34900 steam: 49330 templates: - - >- - {{Game - data/config|Windows|{{p|game}}\data\settings.xml|{{p|game}}\data\keyboard.xml|{{p|userprofile\documents}}\Nitro - Games\PiratesOfBlackCove}} - - '{{Game data/saves|Windows|{{p|userprofile\documents}}\Nitro Games\PiratesOfBlackCove\SavedGames}}' + - "{{Game data/config|Windows|{{p|game}}\\data\\settings.xml|{{p|game}}\\data\\keyboard.xml|{{p|userprofile\\documents}}\\Nitro Games\\PiratesOfBlackCove}}" + - "{{Game data/saves|Windows|{{p|userprofile\\documents}}\\Nitro Games\\PiratesOfBlackCove\\SavedGames}}" Pirates of Everseas: pageId: 144212 steam: 577710 @@ -122278,30 +118943,26 @@ Pirates of the Asteroid Belt VR: Pirates of the Caribbean: pageId: 169581 templates: - - '{{Game data/config|Windows|{{p|game}}\engine.ini|{{p|game}}\options}}' - - '{{Game data/saves|Windows|{{p|game}}\SAVE\}}' -'Pirates of the Caribbean: At World''s End': + - "{{Game data/config|Windows|{{p|game}}\\engine.ini|{{p|game}}\\options}}" + - "{{Game data/saves|Windows|{{p|game}}\\SAVE\\}}" +"Pirates of the Caribbean: At World's End": pageId: 49560 steam: 301980 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Disney Interactive Studios\Pirates of the Caribbean - At Worlds End\}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Disney Interactive Studios\Pirates of the Caribbean - At Worlds End\}}' -'Pirates of the Caribbean: The Legend of Jack Sparrow': + - "{{Game data/config|Windows|{{p|appdata}}\\Disney Interactive Studios\\Pirates of the Caribbean - At Worlds End\\}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Disney Interactive Studios\\Pirates of the Caribbean - At Worlds End\\}}" +"Pirates of the Caribbean: The Legend of Jack Sparrow": pageId: 123058 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\Bethesda Softworks\Pirates of the Caribbean - - LoJS\Options}} - - >- - {{Game data/saves|Windows|{{p|userprofile\Documents}}\Bethesda Softworks\Pirates of the Caribbean - - LoJS\SaveSlot#}} + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Bethesda Softworks\\Pirates of the Caribbean - LoJS\\Options}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Bethesda Softworks\\Pirates of the Caribbean - LoJS\\SaveSlot#}}" Pirates of the Polygon Sea: pageId: 42410 steam: 479020 Pirates on Deck VR: pageId: 152722 steam: 1198250 -'Pirates vs Corsairs: Davy Jones''s Gold': +"Pirates vs Corsairs: Davy Jones's Gold": pageId: 48455 steam: 355650 Pirates! Gold: @@ -122311,17 +118972,17 @@ Pirates! Gold: pageId: 4461 steam: 327380 templates: - - '{{Game data/saves|Windows|{{p|game}}\PIRATES*.SAV|{{p|game}}\pirates.hof}}' -'Pirates, Vikings, and Knights II': + - "{{Game data/saves|Windows|{{p|game}}\\PIRATES*.SAV|{{p|game}}\\pirates.hof}}" +"Pirates, Vikings, and Knights II": pageId: 38173 steam: 17570 Piratopia: pageId: 173283 steam: 1681160 templates: - - '{{Game data/config|Windows|{{p|HKCU}}\Software\Adi Zhavo\Piratopia\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Preferences/com.Adi_Zhavo.Piratopia.plist\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Adi Zhavo\Piratopia\SteamCloud_Save.sav}}' + - "{{Game data/config|Windows|{{p|HKCU}}\\Software\\Adi Zhavo\\Piratopia\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Preferences/com.Adi_Zhavo.Piratopia.plist\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Adi Zhavo\\Piratopia\\SteamCloud_Save.sav}}" Pirouette: pageId: 141544 steam: 1028660 @@ -122329,7 +118990,7 @@ Pistol Whip: pageId: 150391 steam: 1079800 templates: - - '{{Game data/config|Windows|/Software/cloudhead-games-ltd-pistol-whip/Pistol Whip_Data}}' + - "{{Game data/config|Windows|/Software/cloudhead-games-ltd-pistol-whip/Pistol Whip_Data}}" Pit Blocks 3D: pageId: 108856 steam: 792000 @@ -122337,37 +118998,37 @@ Pit People: pageId: 39809 steam: 291860 templates: - - '{{Game data/config|Steam|{{p|steam}}\userdata\{{p|uid}}\291860\remote\save\}}' - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\291860\local\save\preferences.xml}}' + - "{{Game data/config|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\291860\\remote\\save\\}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\291860\\local\\save\\preferences.xml}}" Pit of Evil: pageId: 93847 steam: 746020 Pitch Perfect Ear Training: pageId: 99660 steam: 888710 -'Pitch-Hit: Baseball': +"Pitch-Hit: Baseball": pageId: 40102 steam: 527580 Pitchfork: pageId: 50807 steam: 526550 -'Pitfall II: Lost Caverns': +"Pitfall II: Lost Caverns": pageId: 171141 Pitfall Planet: pageId: 43237 steam: 464900 -'Pitfall: The Lost Expedition': +"Pitfall: The Lost Expedition": pageId: 136257 -'Pitfall: The Mayan Adventure': +"Pitfall: The Mayan Adventure": pageId: 19898 templates: - - '{{Game data/config|Windows|{{p|hklm}}\SOFTWARE\{{p|wow64}}\Activision\Pitfall}}' - - '{{Game data/saves|Windows|{{p|hklm}}\SOFTWARE\{{p|wow64}}\Activision\Pitfall}}' + - "{{Game data/config|Windows|{{p|hklm}}\\SOFTWARE\\{{p|wow64}}\\Activision\\Pitfall}}" + - "{{Game data/saves|Windows|{{p|hklm}}\\SOFTWARE\\{{p|wow64}}\\Activision\\Pitfall}}" Pitiri 1977: pageId: 51045 steam: 305740 templates: - - '{{Game data/saves|Windows|{{p|game}}\save_pitiri.sav}}' + - "{{Game data/saves|Windows|{{p|game}}\\save_pitiri.sav}}" Pitstop Challenge: pageId: 44750 steam: 427040 @@ -122402,15 +119063,15 @@ Pix the Cat: pageId: 22750 steam: 330180 templates: - - '{{Game data/config|Windows|{{p|game}}\config\}}' - - '{{Game data/saves|Windows|{{p|game}}\SaveData\{{p|uid}}\}}' - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/330180/remote/}}' + - "{{Game data/config|Windows|{{p|game}}\\config\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\SaveData\\{{p|uid}}\\}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/330180/remote/}}" PixARK: pageId: 81761 steam: 593600 templates: - - '{{Game data/config|Windows|{{p|game}}\ShooterGame\Saved\Config\}}' - - '{{Game data/saves|Windows|{{p|game}}\ShooterGame\Saved\SavedArks\|{{p|game}}\ShooterGame\Saved\CubeSingles\}}' + - "{{Game data/config|Windows|{{p|game}}\\ShooterGame\\Saved\\Config\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\ShooterGame\\Saved\\SavedArks\\|{{p|game}}\\ShooterGame\\Saved\\CubeSingles\\}}" PixBit: pageId: 34703 steam: 466790 @@ -122459,7 +119120,7 @@ Pixel Caveman: Pixel Cup Soccer 17: pageId: 41840 steam: 492340 -'Pixel Cup Soccer: Ultimate Edition': +"Pixel Cup Soccer: Ultimate Edition": pageId: 169393 steam: 1620540 Pixel Day - Gun Z: @@ -122478,12 +119139,12 @@ Pixel Dungeon: pageId: 37983 steam: 365900 templates: - - '{{Game data/config|Windows|{{P|userprofile}}\Saved Games\pd-prefs}}' - - '{{Game data/config|OS X|{{P|osxhome}}/Library/Application Support/Pixel Dungeon/pd-prefs}}' - - '{{Game data/config|Linux|{{P|linuxhome}}/.watabou/pixel-dungeon/pd-prefs}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\Saved Games\}}' - - '{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/Pixel Dungeon/}}' - - '{{Game data/saves|Linux|{{P|linuxhome}}/.watabou/pixel-dungeon/}}' + - "{{Game data/config|Windows|{{P|userprofile}}\\Saved Games\\pd-prefs}}" + - "{{Game data/config|OS X|{{P|osxhome}}/Library/Application Support/Pixel Dungeon/pd-prefs}}" + - "{{Game data/config|Linux|{{P|linuxhome}}/.watabou/pixel-dungeon/pd-prefs}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\Saved Games\\}}" + - "{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/Pixel Dungeon/}}" + - "{{Game data/saves|Linux|{{P|linuxhome}}/.watabou/pixel-dungeon/}}" Pixel Express: pageId: 110390 steam: 925980 @@ -122518,13 +119179,13 @@ Pixel Hentai Mosaic: pageId: 99396 steam: 877840 templates: - - '{{Game data/saves|Windows|{{p|AppData}}\Local\PixelHentaiMosaic\User Data\Default\IndexedDB}}' -'Pixel Heroes: Byte & Magic': + - "{{Game data/saves|Windows|{{p|AppData}}\\Local\\PixelHentaiMosaic\\User Data\\Default\\IndexedDB}}" +"Pixel Heroes: Byte & Magic": pageId: 48755 steam: 338320 templates: - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/The Bitfather/Pixel Heroes}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/The Bitfather/Pixel Heroes}}' + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/The Bitfather/Pixel Heroes}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/The Bitfather/Pixel Heroes}}" Pixel Hunter: pageId: 49897 steam: 313040 @@ -122532,7 +119193,7 @@ Pixel Killers - The Showdown: pageId: 69671 steam: 703820 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\AGKApps\PixelKillers-TheShowdown\Media\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\AGKApps\\PixelKillers-TheShowdown\\Media\\}}" Pixel Life: pageId: 139505 steam: 997640 @@ -122553,10 +119214,10 @@ Pixel Piracy: pageId: 13327 steam: 264140 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\VITALI KIRPU & QUADRO DELTA\Pixel Piracy\}}' - - '{{Game data/saves|Windows|{{p|appdata}}\PixelPiracy\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/.config/PixelPiracy/}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/PixelPiracy/}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\VITALI KIRPU & QUADRO DELTA\\Pixel Piracy\\}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\PixelPiracy\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/.config/PixelPiracy/}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/PixelPiracy/}}" Pixel Privateers: pageId: 39181 steam: 342640 @@ -122567,43 +119228,41 @@ Pixel Puzzle Makeout League: pageId: 145576 steam: 1131800 templates: - - >- - {{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Rude Ghost, LLC\Pixel Puzzle Makeout - League\{{P|uid}}\SaveData.sav}} + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Rude Ghost, LLC\\Pixel Puzzle Makeout League\\{{P|uid}}\\SaveData.sav}}" Pixel Puzzle Picross: pageId: 69210 steam: 692190 -'Pixel Puzzles 2: Anime': +"Pixel Puzzles 2: Anime": pageId: 48353 steam: 350810 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Pixel_Puzzles_2___Anime\pixelpuzzlessave.ini}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\Pixel_Puzzles_2___Anime\pixelpuzzlessave.ini}}' -'Pixel Puzzles 2: Birds': + - "{{Game data/config|Windows|{{P|localappdata}}\\Pixel_Puzzles_2___Anime\\pixelpuzzlessave.ini}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Pixel_Puzzles_2___Anime\\pixelpuzzlessave.ini}}" +"Pixel Puzzles 2: Birds": pageId: 48645 steam: 344230 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Pixel_Puzzles_2___Birds\pixelpuzzlessave.ini}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\Pixel_Puzzles_2___Birds\pixelpuzzlessave.ini}}' -'Pixel Puzzles 2: Christmas': + - "{{Game data/config|Windows|{{P|localappdata}}\\Pixel_Puzzles_2___Birds\\pixelpuzzlessave.ini}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Pixel_Puzzles_2___Birds\\pixelpuzzlessave.ini}}" +"Pixel Puzzles 2: Christmas": pageId: 123671 steam: 490510 -'Pixel Puzzles 2: Halloween': +"Pixel Puzzles 2: Halloween": pageId: 148703 steam: 1058210 -'Pixel Puzzles 2: Paintings': +"Pixel Puzzles 2: Paintings": pageId: 132375 steam: 1052870 -'Pixel Puzzles 2: RADical ROACH': +"Pixel Puzzles 2: RADical ROACH": pageId: 41649 steam: 504880 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Pixel_Puzzles_2___RADical_ROACH\pixelpuzzlessave.ini}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\Pixel_Puzzles_2___RADical_ROACH\pixelpuzzlessave.ini}}' -'Pixel Puzzles 2: Space': + - "{{Game data/config|Windows|{{P|localappdata}}\\Pixel_Puzzles_2___RADical_ROACH\\pixelpuzzlessave.ini}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Pixel_Puzzles_2___RADical_ROACH\\pixelpuzzlessave.ini}}" +"Pixel Puzzles 2: Space": pageId: 44519 steam: 355920 -'Pixel Puzzles 4k: Japan': +"Pixel Puzzles 4k: Japan": pageId: 173887 steam: 1126880 Pixel Puzzles Illustrations & Anime: @@ -122618,39 +119277,39 @@ Pixel Puzzles Mosaics: pageId: 62354 steam: 359340 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Pixel_Puzzles_Mosaics\ppm.ini}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\Pixel_Puzzles_Mosaics\ppm.ini}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\Pixel_Puzzles_Mosaics\\ppm.ini}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Pixel_Puzzles_Mosaics\\ppm.ini}}" Pixel Puzzles Traditional Jigsaws: pageId: 150422 steam: 1058200 templates: - - '{{Game data/config|Windows|Unknown.}}' - - '{{Game data/saves|Windows|Unknown.}}' + - "{{Game data/config|Windows|Unknown.}}" + - "{{Game data/saves|Windows|Unknown.}}" Pixel Puzzles Ultimate Jigsaw: pageId: 38869 renamedFrom: - Pixel Puzzles Ultimate steam: 351030 -'Pixel Puzzles: Japan': +"Pixel Puzzles: Japan": pageId: 50424 steam: 284950 templates: - - '{{Game data/saves|Windows|{{P|localappdata}}\Pixel_Puzzles___Japan\savegame}}' -'Pixel Puzzles: UndeadZ': + - "{{Game data/saves|Windows|{{P|localappdata}}\\Pixel_Puzzles___Japan\\savegame}}" +"Pixel Puzzles: UndeadZ": pageId: 50127 steam: 285010 templates: - - '{{Game data/saves|Windows|{{P|localappdata}}\Pixel_Puzzles___UndeadZ\*.ini}}' + - "{{Game data/saves|Windows|{{P|localappdata}}\\Pixel_Puzzles___UndeadZ\\*.ini}}" Pixel Ripped 1978: pageId: 187706 steam: 2360690 templates: - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\ARVORE\PixelRipped1978}}' + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\ARVORE\\PixelRipped1978}}" Pixel Ripped 1989: pageId: 56400 steam: 577530 templates: - - '{{Game data/saves|Windows|{{p|appdata}}\Pixel Ripped Inc\Pixel Ripped 1989}}' + - "{{Game data/saves|Windows|{{p|appdata}}\\Pixel Ripped Inc\\Pixel Ripped 1989}}" Pixel Ripped 1995: pageId: 156941 steam: 1178140 @@ -122710,13 +119369,13 @@ Pixel Survival - Craft Game: Pixel Survivors: pageId: 43173 steam: 342970 -'Pixel Traffic: Circle Rush': +"Pixel Traffic: Circle Rush": pageId: 68422 steam: 696460 -'Pixel Traffic: Highway Racing': +"Pixel Traffic: Highway Racing": pageId: 95501 steam: 867730 -'Pixel Traffic: Risky Bridge': +"Pixel Traffic: Risky Bridge": pageId: 68990 steam: 699750 Pixel War: @@ -122740,14 +119399,14 @@ Pixel Zumbi: Pixel to the West: pageId: 81606 steam: 697160 -'Pixel-Warfare: Pro': +"Pixel-Warfare: Pro": pageId: 40293 steam: 530240 -'Pixel: ru²': +"Pixel: ru²": pageId: 48501 steam: 351170 templates: - - '{{Game data/config|Windows|{{p|APPDATA}}\C63 Industries\Pixel\Settings.xml}}' + - "{{Game data/config|Windows|{{p|APPDATA}}\\C63 Industries\\Pixel\\Settings.xml}}" PixelBOT EXTREME!: pageId: 92646 steam: 765060 @@ -122758,50 +119417,50 @@ PixelJunk Eden: pageId: 12475 steam: 105800 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/105800/}}' + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/105800/}}" PixelJunk Monsters 2: pageId: 91204 steam: 749800 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Q Games Ltd\PixelJunk™ Monsters 2\monsters.sav}}' + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Q Games Ltd\\PixelJunk™ Monsters 2\\monsters.sav}}" PixelJunk Monsters Ultimate: gog: 1207659883 pageId: 9475 steam: 243780 templates: - - '{{Game data/config|Windows|{{P|game}}\Config.xml}}' - - '{{Game data/config|OS X|{{P|game}}/Config.xml}}' - - '{{Game data/config|Linux|{{P|game}}/Config.xml}}' - - '{{Game data/saves|Windows|{{P|game}}\savegame\}}' - - '{{Game data/saves|OS X|{{P|game}}/savegame/}}' - - '{{Game data/saves|Linux|{{P|game}}/savegame/}}' - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{P|uid}}/243780/}}' + - "{{Game data/config|Windows|{{P|game}}\\Config.xml}}" + - "{{Game data/config|OS X|{{P|game}}/Config.xml}}" + - "{{Game data/config|Linux|{{P|game}}/Config.xml}}" + - "{{Game data/saves|Windows|{{P|game}}\\savegame\\}}" + - "{{Game data/saves|OS X|{{P|game}}/savegame/}}" + - "{{Game data/saves|Linux|{{P|game}}/savegame/}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{P|uid}}/243780/}}" PixelJunk Nom Nom Galaxy: pageId: 15917 steam: 226100 templates: - - '{{Game data/config|Windows|{{p|game}}\settings.dat}}' - - '{{Game data/saves|Windows|{{P|appdata}}\NomNomGalaxy\}}' + - "{{Game data/config|Windows|{{p|game}}\\settings.dat}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\NomNomGalaxy\\}}" PixelJunk Shooter: gog: 1207660104 pageId: 10964 steam: 255870 templates: - - '{{Game data/config|Windows|{{p|appdata}}\PJShooter\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Documents/PJShooter/}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/PJShooter/}}' - - '{{Game data/saves|Windows|{{p|appdata}}\PJShooter\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Documents/PJShooter/}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/PJShooter/}}' - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{P|uid}}/255870/}}' + - "{{Game data/config|Windows|{{p|appdata}}\\PJShooter\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Documents/PJShooter/}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/PJShooter/}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\PJShooter\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Documents/PJShooter/}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/PJShooter/}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{P|uid}}/255870/}}" PixelJunk Shooter Ultimate: pageId: 29267 steam: 332330 templates: - - '{{Game data/config|Windows|{{P|appdata}}/PJShooterUltimate/}}' - - '{{Game data/saves|Windows|{{P|appdata}}/PJShooterUltimate/}}' - - '{{Game data/saves|Steam|{{P|steam}}/userdata/{{P|uid}}/332330/remote/}}' + - "{{Game data/config|Windows|{{P|appdata}}/PJShooterUltimate/}}" + - "{{Game data/saves|Windows|{{P|appdata}}/PJShooterUltimate/}}" + - "{{Game data/saves|Steam|{{P|steam}}/userdata/{{P|uid}}/332330/remote/}}" PixelRPG: pageId: 121431 steam: 933290 @@ -122824,21 +119483,21 @@ Pixeline og Huset i Eventyrskoven: pageId: 123281 Pixeline på Bedstemors loft: pageId: 131390 -'Pixeline: Drager over Pixieland': +"Pixeline: Drager over Pixieland": pageId: 122974 -'Pixeline: Fuld af fis og ballade': +"Pixeline: Fuld af fis og ballade": pageId: 123085 -'Pixeline: Hotel Skrottenborg': +"Pixeline: Hotel Skrottenborg": pageId: 120655 -'Pixeline: I det Vilde Westen': +"Pixeline: I det Vilde Westen": pageId: 123112 -'Pixeline: Jungleskatten': +"Pixeline: Jungleskatten": pageId: 122976 -'Pixeline: Kong Gulerod': +"Pixeline: Kong Gulerod": pageId: 120668 -'Pixeline: Magi i Pixieland': +"Pixeline: Magi i Pixieland": pageId: 122957 -'Pixeline: Stjernestøv': +"Pixeline: Stjernestøv": pageId: 120653 Pixelman: pageId: 44479 @@ -122858,7 +119517,7 @@ Pixels Guide to Staying Dead: Pixels can fight: pageId: 153133 steam: 1153100 -'Pixelscape: Oceans': +"Pixelscape: Oceans": pageId: 38829 steam: 497420 Pixelum: @@ -122880,33 +119539,33 @@ Pixplode: pageId: 61862 steam: 631770 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Empyrean\Pixplode\}}' - - '{{Game data/saves|Windows|{{P|game}}\Saves\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Empyrean\\Pixplode\\}}" + - "{{Game data/saves|Windows|{{P|game}}\\Saves\\}}" Pixross: pageId: 186250 steam: 1489680 templates: - - '{{Game data/config|Windows|{{P|userprofile}}\AppData\LocalLow\Kenney\Pixross\Pixross.save}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Kenney\Pixross\Pixross.save}}' + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Kenney\\Pixross\\Pixross.save}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Kenney\\Pixross\\Pixross.save}}" Pixvault: pageId: 130098 steam: 1043730 Pizza Connection 3: gog: 1421993477 gogSide: - - 1838508915 - 1377044054 + - 1838508915 pageId: 62759 steam: 588160 steamSide: - 682710 templates: - - '{{Game data/config|Windows|{{p|userprofile\AppData\LocalLow}}\gentlymad\Pizza Connection 3\UserData}}' - - '{{Game data/config|OS X|{{p|osxhome}}/com.gentlymad.pizzaconnection3/UserData}}' - - '{{Game data/config|Linux|{{p|xdgconfighome}}/unity3d/gentlymad/Pizza Connection 3/UserData}}' - - '{{Game data/saves|Windows|{{p|userprofile\AppData\LocalLow}}\gentlymad\Pizza Connection 3\UserData\Savegames}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/com.gentlymad.pizzaconnection3/UserData/Savegames}}' - - '{{Game data/saves|Linux|{{p|xdgconfighome}}/unity3d/gentlymad/Pizza Connection 3/UserData/Savegames}}' + - "{{Game data/config|Windows|{{p|userprofile\\AppData\\LocalLow}}\\gentlymad\\Pizza Connection 3\\UserData}}" + - "{{Game data/config|OS X|{{p|osxhome}}/com.gentlymad.pizzaconnection3/UserData}}" + - "{{Game data/config|Linux|{{p|xdgconfighome}}/unity3d/gentlymad/Pizza Connection 3/UserData}}" + - "{{Game data/saves|Windows|{{p|userprofile\\AppData\\LocalLow}}\\gentlymad\\Pizza Connection 3\\UserData\\Savegames}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/com.gentlymad.pizzaconnection3/UserData/Savegames}}" + - "{{Game data/saves|Linux|{{p|xdgconfighome}}/unity3d/gentlymad/Pizza Connection 3/UserData/Savegames}}" Pizza Connection 3 - Pizza Creator: pageId: 93564 steam: 851330 @@ -122914,24 +119573,24 @@ Pizza Express: pageId: 25850 steam: 375250 templates: - - '{{Game data/config|Windows|{{p|game}}\Profiles\{{p|uid}}\Settings\settings.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\Profiles\{{p|uid}}\}}' + - "{{Game data/config|Windows|{{p|game}}\\Profiles\\{{p|uid}}\\Settings\\settings.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\Profiles\\{{p|uid}}\\}}" Pizza Frenzy: pageId: 25580 steam: 3430 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\GameHouse\Pizza Frenzy\}}' - - '{{Game data/saves|Windows|{{P|hkcu}}\Software\GameHouse\Pizza Frenzy\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\GameHouse\\Pizza Frenzy\\}}" + - "{{Game data/saves|Windows|{{P|hkcu}}\\Software\\GameHouse\\Pizza Frenzy\\}}" Pizza Game: pageId: 144763 steam: 710710 templates: - - '{{Game data/config|Windows|{{P|game}}\renpy\config.py}}' - - '{{Game data/config|OS X|{{P|game}}/renpy/config.py}}' - - '{{Game data/config|Linux|{{P|game}}/renpy/config.py}}' - - '{{Game data/saves|Windows|{{P|game}}\game\saves}}' - - '{{Game data/saves|OS X|{{P|game}}/game/saves}}' - - '{{Game data/saves|Linux|{{P|game}}/game/saves}}' + - "{{Game data/config|Windows|{{P|game}}\\renpy\\config.py}}" + - "{{Game data/config|OS X|{{P|game}}/renpy/config.py}}" + - "{{Game data/config|Linux|{{P|game}}/renpy/config.py}}" + - "{{Game data/saves|Windows|{{P|game}}\\game\\saves}}" + - "{{Game data/saves|OS X|{{P|game}}/game/saves}}" + - "{{Game data/saves|Linux|{{P|game}}/game/saves}}" Pizza Hunt! How to hunt pizza (And Not Die Doing It): pageId: 70369 steam: 671540 @@ -122945,22 +119604,22 @@ Pizza Titan Ultra: pageId: 90592 steam: 819480 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Breakfall\Pizza Titan Ultra\GameSaves\}}' + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Breakfall\\Pizza Titan Ultra\\GameSaves\\}}" Pizza Tower: pageId: 184650 renamedFrom: - Pizza tower steam: 2231450 templates: - - '{{Game data/config|Windows|{{P|appdata}}\PizzaTower_GM2\}}' - - '{{Game data/saves|Windows|{{P|appdata}}\PizzaTower_GM2\}}' + - "{{Game data/config|Windows|{{P|appdata}}\\PizzaTower_GM2\\}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\PizzaTower_GM2\\}}" Pizza Tycoon: gog: 1191986305 pageId: 60704 steam: 598990 templates: - - '{{Game data/config|DOS|{{p|game}}\sound.cfg}}' - - '{{Game data/saves|DOS|{{p|game}}\game}}' + - "{{Game data/config|DOS|{{p|game}}\\sound.cfg}}" + - "{{Game data/saves|DOS|{{p|game}}\\game}}" Pizzarian: pageId: 48791 steam: 340380 @@ -122984,17 +119643,17 @@ Plague Hunter: steam: 746530 Plague Inc.: pageId: 167752 -'Plague Inc: Evolved': +"Plague Inc: Evolved": pageId: 15279 steam: 246620 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Ndemic Creations\Plague Inc: Evolved}}' - - '{{Game data/config|OS X|Unknown. Please fill in this info.}}' - - '{{Game data/config|Linux|Unknown. Please fill in this info.}}' - - '{{Game data/saves|Windows|{{p|game}}\Profile\Games-Gen\Saves}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/.local/share/Ndemic Creations/Plague Inc. Evolved/Saves}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.local/share/Ndemic Creations/Plague Inc. Evolved/Saves}}' - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{P|uid}}/246620/remote/}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Ndemic Creations\\Plague Inc: Evolved}}" + - "{{Game data/config|OS X|Unknown. Please fill in this info.}}" + - "{{Game data/config|Linux|Unknown. Please fill in this info.}}" + - "{{Game data/saves|Windows|{{p|game}}\\Profile\\Games-Gen\\Saves}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/.local/share/Ndemic Creations/Plague Inc. Evolved/Saves}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.local/share/Ndemic Creations/Plague Inc. Evolved/Saves}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{P|uid}}/246620/remote/}}" Plague Road: pageId: 62548 steam: 622080 @@ -123011,12 +119670,12 @@ Plain Sight: pageId: 7426 steam: 49900 templates: - - '{{Game data/config|Windows|{{p|game}}\Content\UserSettings.bin}}' -'Plan B: Terraform': + - "{{Game data/config|Windows|{{p|game}}\\Content\\UserSettings.bin}}" +"Plan B: Terraform": pageId: 187690 steam: 1894430 templates: - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\Gaddy Games\Plan B Terraform\{{p|uid}}\Saves}}' + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\Gaddy Games\\Plan B Terraform\\{{p|uid}}\\Saves}}" Plan Z Chapter 1: pageId: 42686 steam: 486300 @@ -123034,7 +119693,7 @@ Planar Conquest: Planaris 2+: pageId: 141056 steam: 1102080 -'Plancon: Space Conflict': +"Plancon: Space Conflict": pageId: 41741 steam: 461940 Plandzz: @@ -123050,10 +119709,8 @@ Plane Mechanic Simulator: pageId: 96085 steam: 803980 templates: - - >- - {{Game data/config|Windows|{{p|HKCU}}\Software\Movie Games\Plane Mechanic - Simulator|{{p|USERPROFILE}}\AppData\LocalLow\Movie Games\Plane Mechanic Simulator}} - - '{{Game data/saves|Windows|{{p|USERPROFILE}}\AppData\LocalLow\Movie Games\Plane Mechanic Simulator}}' + - "{{Game data/config|Windows|{{p|HKCU}}\\Software\\Movie Games\\Plane Mechanic Simulator|{{p|USERPROFILE}}\\AppData\\LocalLow\\Movie Games\\Plane Mechanic Simulator}}" + - "{{Game data/saves|Windows|{{p|USERPROFILE}}\\AppData\\LocalLow\\Movie Games\\Plane Mechanic Simulator}}" Plane War: pageId: 93559 steam: 846150 @@ -123063,31 +119720,31 @@ Plane in Hole: Planes Attack: pageId: 132440 steam: 1053000 -'Planes, Bullets and Vodka': +"Planes, Bullets and Vodka": pageId: 54947 steam: 562360 -'Planescape: Torment': +"Planescape: Torment": gog: 1207658887 pageId: 143 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/saves|Windows|{{P|Game}}\save}}' -'Planescape: Torment Enhanced Edition': + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{P|Game}}\\save}}" +"Planescape: Torment Enhanced Edition": gog: 1203613131 gogSide: - - 2139878448 - 1132393016 + - 2139878448 pageId: 60117 steam: 466300 steamSide: - 613230 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\Planescape Torment - Enhanced Edition\Baldur.lua}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.local/share/Planescape Torment - Enhanced Edition/Baldur.lua}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\Planescape Torment - Enhanced Edition\save\}}' - - '{{Game data/saves|Steam|{{P|steam}}\userdata\{{P|uid}}\466300\remote\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Documents/Planescape Torment - Enhanced Edition/save/}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.local/share/Planescape Torment - Enhanced Edition/save/}}' + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\Planescape Torment - Enhanced Edition\\Baldur.lua}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.local/share/Planescape Torment - Enhanced Edition/Baldur.lua}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\Planescape Torment - Enhanced Edition\\save\\}}" + - "{{Game data/saves|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\466300\\remote\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Documents/Planescape Torment - Enhanced Edition/save/}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.local/share/Planescape Torment - Enhanced Edition/save/}}" Planet 1138: pageId: 44557 steam: 434790 @@ -123098,10 +119755,8 @@ Planet Alcatraz: pageId: 50436 steam: 289420 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\1C\Planet Alcatraz}}' - - >- - {{Game data/saves|Windows|{{p|userprofile\Documents}}\Planet Alcatraz\Save

{{p|userprofile\Documents}}\Planet - Alcatraz\Autosave}} + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\1C\\Planet Alcatraz}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Planet Alcatraz\\Save

{{p|userprofile\\Documents}}\\Planet Alcatraz\\Autosave}}" Planet Alcatraz 2: pageId: 46907 steam: 389250 @@ -123110,10 +119765,8 @@ Planet Alpha: pageId: 90400 steam: 485030 templates: - - >- - {{Game - data/config|Windows|{{P|localappdata}}\PlanetAlpha\Saved\Config\WindowsNoEditor\|{{P|localappdata}}\PlanetAlpha\Saved\SaveGames\SavedSettings.sav}} - - '{{Game data/saves|Windows|{{P|localappdata}}\PlanetAlpha\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\PlanetAlpha\\Saved\\Config\\WindowsNoEditor\\|{{P|localappdata}}\\PlanetAlpha\\Saved\\SaveGames\\SavedSettings.sav}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\PlanetAlpha\\Saved\\SaveGames\\}}" Planet Ancyra Chronicles: pageId: 62833 steam: 324060 @@ -123136,15 +119789,13 @@ Planet Centauri: pageId: 33421 steam: 385380 templates: - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Planet Centauri\}}' + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Planet Centauri\\}}" Planet Coaster: pageId: 36569 steam: 493340 templates: - - >- - {{Game data/config|Windows|{{p|userprofile}}\Saved Games\Frontier Developments\Planet - Coaster\{{p|uid}}\Config|{{p|localappdata}}\Frontier Developments\Planet Coaster}} - - '{{Game data/saves|Windows|{{p|userprofile}}\Saved Games\Frontier Developments\Planet Coaster\{{p|uid}}\Saves}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\Saved Games\\Frontier Developments\\Planet Coaster\\{{p|uid}}\\Config|{{p|localappdata}}\\Frontier Developments\\Planet Coaster}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Saved Games\\Frontier Developments\\Planet Coaster\\{{p|uid}}\\Saves}}" Planet Colonization: pageId: 157283 steam: 1203490 @@ -123160,8 +119811,8 @@ Planet Diver: pageId: 45461 steam: 417980 templates: - - '{{Game data/config|Windows|{{p|HKCU}}\Software\Fabraz\Planet Diver\}}' - - '{{Game data/saves|Windows|{{p|HKCU}}\Software\Fabraz\Planet Diver\}}' + - "{{Game data/config|Windows|{{p|HKCU}}\\Software\\Fabraz\\Planet Diver\\}}" + - "{{Game data/saves|Windows|{{p|HKCU}}\\Software\\Fabraz\\Planet Diver\\}}" Planet Driller: pageId: 42599 steam: 492170 @@ -123169,12 +119820,10 @@ Planet Explorers: pageId: 10021 steam: 237870 templates: - - '{{Game data/config|Windows|{{p|game}}\OptionConfig.xml}}' - - >- - {{Game data/config|Linux|{{p|linuxhome}}/PlanetExplorers/Config/|{{P|xdgconfighome}}/unity3d/Pathea Games/Planet - Explorers}} - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\PlanetExplorers\SaveData\}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/PlanetExplorers/SaveData/}}' + - "{{Game data/config|Windows|{{p|game}}\\OptionConfig.xml}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/PlanetExplorers/Config/|{{P|xdgconfighome}}/unity3d/Pathea Games/Planet Explorers}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\PlanetExplorers\\SaveData\\}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/PlanetExplorers/SaveData/}}" Planet Guardian VR: pageId: 78114 steam: 759040 @@ -123198,12 +119847,12 @@ Planet Nomads: pageId: 39681 steam: 504050 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\Craneballs\PlanetNomads}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/unity.Craneballs.PlanetNomads/}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Craneballs/PlanetNomads/}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Craneballs\PlanetNomads}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/unity.Craneballs.PlanetNomads/Saves/}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Craneballs/PlanetNomads/}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Craneballs\\PlanetNomads}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/unity.Craneballs.PlanetNomads/}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Craneballs/PlanetNomads/}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Craneballs\\PlanetNomads}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/unity.Craneballs.PlanetNomads/Saves/}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Craneballs/PlanetNomads/}}" Planet Protector VR: pageId: 71924 steam: 656320 @@ -123220,7 +119869,7 @@ Planet S: pageId: 179355 steam: 1948430 templates: - - '{{Game data/saves|Windows|{{p|game}}\saves}}' + - "{{Game data/saves|Windows|{{p|game}}\\saves}}" Planet Smasher: pageId: 40275 steam: 523060 @@ -123228,14 +119877,14 @@ Planet Stronghold: pageId: 28911 steam: 291050 templates: - - '{{Game data/config|Windows|{{p|game}}\game\saves\persistent|{{p|appdata}}\RenPy\Planet_Stronghold_1.5\persistent}}' - - '{{Game data/config|OS X|{{p|game}}/game/saves/persistent|~/Library/RenPy/Planet_Stronghold_1.5/persistent}}' - - '{{Game data/saves|Windows|{{p|game}}\game\saves\*.save|{{p|appdata}}\RenPy\Planet_Stronghold_1.5\*.save}}' - - '{{Game data/saves|OS X|{{p|game}}/game/saves/*.save|~/Library/RenPy/Planet_Stronghold_1.5/*.save}}' + - "{{Game data/config|Windows|{{p|game}}\\game\\saves\\persistent|{{p|appdata}}\\RenPy\\Planet_Stronghold_1.5\\persistent}}" + - "{{Game data/config|OS X|{{p|game}}/game/saves/persistent|~/Library/RenPy/Planet_Stronghold_1.5/persistent}}" + - "{{Game data/saves|Windows|{{p|game}}\\game\\saves\\*.save|{{p|appdata}}\\RenPy\\Planet_Stronghold_1.5\\*.save}}" + - "{{Game data/saves|OS X|{{p|game}}/game/saves/*.save|~/Library/RenPy/Planet_Stronghold_1.5/*.save}}" Planet Stronghold 2: pageId: 100738 steam: 857200 -'Planet Stronghold: Colonial Defense': +"Planet Stronghold: Colonial Defense": pageId: 44226 steam: 435260 Planet TD: @@ -123248,7 +119897,7 @@ Planet X3: pageId: 105981 steam: 2479230 templates: - - '{{Game data/saves|DOS|SAVEGAME.DAT}}' + - "{{Game data/saves|DOS|SAVEGAME.DAT}}" Planet Zoo: pageId: 135909 steam: 703080 @@ -123269,10 +119918,8 @@ Planet Zoo: - 2199210 - 2346830 templates: - - >- - {{Game data/config|Windows|{{p|userprofile}}\Saved Games\Frontier Developments\Planet - Zoo\{{p|uid}}\Config|{{p|localappdata}}\Frontier Developments\Planet Zoo}} - - '{{Game data/saves|Windows|{{p|userprofile}}\Saved Games\Frontier Developments\Planet Zoo\{{p|uid}}\Saves}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\Saved Games\\Frontier Developments\\Planet Zoo\\{{p|uid}}\\Config|{{p|localappdata}}\\Frontier Developments\\Planet Zoo}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Saved Games\\Frontier Developments\\Planet Zoo\\{{p|uid}}\\Saves}}" Planet in the Shadows: pageId: 43578 steam: 448820 @@ -123283,27 +119930,25 @@ Planet of Lana: pageId: 187322 steam: 1608230 templates: - - >- - {{Game data/saves|Microsoft - Store|{{P|localappdata}}\Packages\Thunderful.PlanetofLana_8j53pwgd019sy\SystemAppData\wgs\{{P|uid}}\}} - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Wishfully\Planet of Lana}}' + - "{{Game data/saves|Microsoft Store|{{P|localappdata}}\\Packages\\Thunderful.PlanetofLana_8j53pwgd019sy\\SystemAppData\\wgs\\{{P|uid}}\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Wishfully\\Planet of Lana}}" Planet of Mubu: pageId: 60097 steam: 602170 Planet of the Apes: pageId: 87863 -'Planet of the Apes: Last Frontier': +"Planet of the Apes: Last Frontier": pageId: 100486 steam: 789910 templates: - - '{{Game data/config|Windows|{{p|game}}\Engine\Config}}' + - "{{Game data/config|Windows|{{p|game}}\\Engine\\Config}}" Planet of the Eyes: pageId: 38488 steam: 350970 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Cococucumber\Planet of the Eyes\}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Cococucumber\Planet of the Eyes\}}' -'Planet''s Edge: The Point of No Return': + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Cococucumber\\Planet of the Eyes\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Cococucumber\\Planet of the Eyes\\}}" +"Planet's Edge: The Point of No Return": gog: 1499658106 pageId: 165754 steam: 1367170 @@ -123316,7 +119961,7 @@ PlanetSide 2: pageId: 4002 steam: 218230 templates: - - '{{Game data/config|Windows|{{p|game}}\InputProfile_User.xml|{{p|game}}\UserOptions.ini}}' + - "{{Game data/config|Windows|{{p|game}}\\InputProfile_User.xml|{{p|game}}\\UserOptions.ini}}" PlanetSide Arena: pageId: 125970 steam: 987350 @@ -123324,14 +119969,14 @@ Planetarian HD: pageId: 62000 steam: 623080 templates: - - '{{Game data/config|Windows|{{p|game}}\savedata_{{LocalizedPath|en}}\}}' - - '{{Game data/saves|Windows|{{p|game}}\savedata_{{LocalizedPath|en}}\}}' -'Planetarian: The Reverie of a Little Planet': + - "{{Game data/config|Windows|{{p|game}}\\savedata_{{LocalizedPath|en}}\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\savedata_{{LocalizedPath|en}}\\}}" +"Planetarian: The Reverie of a Little Planet": pageId: 33670 steam: 316720 templates: - - '{{Game data/config|Windows|{{p|game}}\Gameexe.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\SAVEDATA\}}' + - "{{Game data/config|Windows|{{p|game}}\\Gameexe.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\SAVEDATA\\}}" Planetarium 2 - Zen Odyssey: pageId: 78540 steam: 765320 @@ -123339,28 +119984,26 @@ Planetary Annihilation: pageId: 5625 steam: 233250 templates: - - >- - {{Game data/config|Windows|{{p|localappdata}}\Uber Entertainment\Planetary Annihilation\localstore\Local - Storage\coui_ui_0.localstorage}} - - '{{Game data/config|Linux|{{p|linuxhome}}/.local/Uber Entertainment/}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Uber Entertainment\Planetary Annihilation\}}' -'Planetary Annihilation: Titans': + - "{{Game data/config|Windows|{{p|localappdata}}\\Uber Entertainment\\Planetary Annihilation\\localstore\\Local Storage\\coui_ui_0.localstorage}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.local/Uber Entertainment/}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Uber Entertainment\\Planetary Annihilation\\}}" +"Planetary Annihilation: Titans": pageId: 28830 steam: 386070 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Uber Entertainment\Planetary Annihilation}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Uber Entertainment/Planetary Annihilation}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.local/Uber Entertainment/Planetary Annihilation/}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Uber Entertainment\Planetary Annihilation}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Uber Entertainment/Planetary Annihilation}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.local/Uber Entertainment/Planetary Annihilation/}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Uber Entertainment\\Planetary Annihilation}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Uber Entertainment/Planetary Annihilation}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.local/Uber Entertainment/Planetary Annihilation/}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Uber Entertainment\\Planetary Annihilation}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Uber Entertainment/Planetary Annihilation}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.local/Uber Entertainment/Planetary Annihilation/}}" Planetary Dustoff: gog: 1838869055 pageId: 105463 steam: 840430 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\Planetary Dustoff}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\Planetary Dustoff\Save}}' + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\Planetary Dustoff}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\Planetary Dustoff\\Save}}" Planetary Settlers: pageId: 94599 steam: 857860 @@ -123369,12 +120012,10 @@ Planetbase: pageId: 33338 steam: 403190 templates: - - >- - {{Game - data/config|Windows|{{p|userprofile\Documents}}\Planetbase\Profile|{{p|userprofile\Documents}}\Planetbase\Settings}} - - '{{Game data/config|OS X|{{p|osxhome}}/Documents/Planetbase/Profile|~/Documents/Planetbase/Settings}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Planetbase\Saves}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Documents/Planetbase/Saves}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Planetbase\\Profile|{{p|userprofile\\Documents}}\\Planetbase\\Settings}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Documents/Planetbase/Profile|~/Documents/Planetbase/Settings}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Planetbase\\Saves}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Documents/Planetbase/Saves}}" Planetbound: pageId: 64212 steam: 661900 @@ -123386,7 +120027,7 @@ Planetfall: pageId: 7884 steam: 570580 templates: - - '{{Game data/saves|DOS|{{p|game}}\SAVE}}' + - "{{Game data/saves|DOS|{{p|game}}\\SAVE}}" Planetoid: pageId: 58414 steam: 590870 @@ -123432,14 +120073,14 @@ Plant Tycoon: pageId: 41375 steam: 16120 templates: - - '{{Game data/config|Windows|{{p|game}}\Idw.ini}}' + - "{{Game data/config|Windows|{{p|game}}\\Idw.ini}}" Plantera: pageId: 38043 steam: 421040 templates: - - '{{Game data/config|Windows|{{p|appdata}}\xsrs\xsrs.ini}}' - - '{{Game data/saves|Windows|{{p|appdata}}\xsrs\xsrs.ini}}' -'Plantera 2: Golden Acorn': + - "{{Game data/config|Windows|{{p|appdata}}\\xsrs\\xsrs.ini}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\xsrs\\xsrs.ini}}" +"Plantera 2: Golden Acorn": pageId: 157043 steam: 1091920 Plants: @@ -123449,28 +120090,28 @@ Plants vs. Zombies: pageId: 348 steam: 3590 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\PopCap\PlantsVsZombies\}}' - - '{{Game data/saves|Windows|{{p|programdata}}/PopCap Games/PlantsVsZombies/userdata/}}' - - '{{Game data/saves|Origin|{{p|programdata}}/PopCap Games/PlantsVsZombies/userdata/}}' - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/3590/remote/}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/PopCap/PlantsVsZombiesMac/userdata/}}' -'Plants vs. Zombies: Battle for Neighborville': + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\PopCap\\PlantsVsZombies\\}}" + - "{{Game data/saves|Windows|{{p|programdata}}/PopCap Games/PlantsVsZombies/userdata/}}" + - "{{Game data/saves|Origin|{{p|programdata}}/PopCap Games/PlantsVsZombies/userdata/}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/3590/remote/}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/PopCap/PlantsVsZombiesMac/userdata/}}" +"Plants vs. Zombies: Battle for Neighborville": pageId: 146323 steam: 1262240 templates: - - '{{Game data/config|Windows|{{p|USERPROFILE\Documents}}\PVZ Battle for Neighborville\settings}}' - - '{{Game data/saves|Windows|{{p|USERPROFILE\Documents}}\PVZ Battle for Neighborville\settings}}' -'Plants vs. Zombies: Garden Warfare': + - "{{Game data/config|Windows|{{p|USERPROFILE\\Documents}}\\PVZ Battle for Neighborville\\settings}}" + - "{{Game data/saves|Windows|{{p|USERPROFILE\\Documents}}\\PVZ Battle for Neighborville\\settings}}" +"Plants vs. Zombies: Garden Warfare": pageId: 15988 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\PVZ Garden Warfare\settings\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\PVZ Garden Warfare\settings\}}' -'Plants vs. Zombies: Garden Warfare 2': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\PVZ Garden Warfare\\settings\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\PVZ Garden Warfare\\settings\\}}" +"Plants vs. Zombies: Garden Warfare 2": pageId: 31314 steam: 1922560 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Plants vs Zombies GW2\settings}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Plants vs Zombies GW2}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Plants vs Zombies GW2\\settings}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Plants vs Zombies GW2}}" Planum: pageId: 91914 steam: 839730 @@ -123478,7 +120119,7 @@ Plasma Puncher: pageId: 60129 steam: 602070 templates: - - '{{Game data/saves|Windows|{{P|hkcu}}\Software\Tomatotrap\PlasmaPuncher\}}' + - "{{Game data/saves|Windows|{{P|hkcu}}\\Software\\Tomatotrap\\PlasmaPuncher\\}}" Plasmoid: pageId: 152809 steam: 1191450 @@ -123516,7 +120157,7 @@ PlateUp!: pageId: 184186 steam: 1599600 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\It''s Happening\PlateUp\}}' + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\It's Happening\\PlateUp\\}}" Plates: pageId: 36131 steam: 497680 @@ -123539,16 +120180,12 @@ Platformines: pageId: 27497 steam: 264540 templates: - - >- - {{Game - data/config|Windows|{{p|localappdata}}\IsolatedStorage\XXXXXXXX.XXX\XXXXXXXX.XXX\Url.wklul0wzovqx0euncwnlz03ugfwbcxvh\Url.kdd3jubftr5cqmx5s3zymnltky5xtn2f\Files\T\THProgression.dat}} - - >- - {{Game - data/saves|Windows|{{p|localappdata}}\IsolatedStorage\XXXXXXXX.XXX\XXXXXXXX.XXX\Url.wklul0wzovqx0euncwnlz03ugfwbcxvh\Url.kdd3jubftr5cqmx5s3zymnltky5xtn2f\Files\T\T*\}} + - "{{Game data/config|Windows|{{p|localappdata}}\\IsolatedStorage\\XXXXXXXX.XXX\\XXXXXXXX.XXX\\Url.wklul0wzovqx0euncwnlz03ugfwbcxvh\\Url.kdd3jubftr5cqmx5s3zymnltky5xtn2f\\Files\\T\\THProgression.dat}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\IsolatedStorage\\XXXXXXXX.XXX\\XXXXXXXX.XXX\\Url.wklul0wzovqx0euncwnlz03ugfwbcxvh\\Url.kdd3jubftr5cqmx5s3zymnltky5xtn2f\\Files\\T\\T*\\}}" Platforms: pageId: 144532 steam: 1132640 -'Plati Nalog: Favorite Russian Game': +"Plati Nalog: Favorite Russian Game": pageId: 87193 steam: 806100 Platinum Kill: @@ -123566,12 +120203,12 @@ Platypus: pageId: 34041 steam: 307340 templates: - - '{{Game data/config|Windows|{{p|game}}\config.dat}}' + - "{{Game data/config|Windows|{{p|game}}\\config.dat}}" Platypus II: pageId: 30394 steam: 319180 templates: - - '{{Game data/config|Windows|{{p|game}}\config.dat}}' + - "{{Game data/config|Windows|{{p|game}}\\config.dat}}" Play Cubes with Uncle Billy: pageId: 81986 steam: 769590 @@ -123602,7 +120239,7 @@ Play337 Catch Chicken: PlayBound: pageId: 151639 steam: 1181800 -'PlayForm: Human Dynamics': +"PlayForm: Human Dynamics": pageId: 183108 steam: 1729300 PlayFortress: @@ -123611,11 +120248,11 @@ PlayFortress: PlayUSA: pageId: 76225 steam: 724110 -'Playboy: The Mansion': +"Playboy: The Mansion": pageId: 75395 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/saves|Windows|{{p|game}}\data\PC\Saved Games}}' + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\data\\PC\\Saved Games}}" Playcraft: pageId: 100686 steam: 805270 @@ -123625,13 +120262,13 @@ Player Goes Jump: Player One: pageId: 149013 steam: 1160190 -'Playerunkn1wn: Friendly Fire': +"Playerunkn1wn: Friendly Fire": pageId: 78306 steam: 759700 -'Playerunkn4wn: Zombie': +"Playerunkn4wn: Zombie": pageId: 74950 steam: 737750 -Playerunknown's Battleboxes: +"Playerunknown's Battleboxes": pageId: 90126 steam: 819180 Playground Battle World: @@ -123643,24 +120280,24 @@ Playground Heroes: Playing Both Sides: pageId: 149521 steam: 1142090 -'Playing History: Slave Trade': +"Playing History: Slave Trade": pageId: 46691 steam: 386870 -'Playing History: The Plague': +"Playing History: The Plague": pageId: 45976 steam: 395920 -'Playing History: Vikings': +"Playing History: Vikings": pageId: 47425 steam: 368760 -'Playmobil: The Movie VR Adventures': +"Playmobil: The Movie VR Adventures": pageId: 176185 steam: 1162360 Playne: pageId: 96439 steam: 865540 templates: - - '{{Game data/saves|Windows|{{p|localappdata}}\PLAYNE\Saved\}}' -'Playthings: VR Music Vacation': + - "{{Game data/saves|Windows|{{p|localappdata}}\\PLAYNE\\Saved\\}}" +"Playthings: VR Music Vacation": pageId: 36836 steam: 489740 Plazma Being: @@ -123680,7 +120317,7 @@ Please Fix the Road: pageId: 177499 steam: 1383250 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Ariel Jurkowski\Please Fix The Road}}' + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Ariel Jurkowski\\Please Fix The Road}}" Please Knock on My Door: pageId: 61685 steam: 613450 @@ -123693,52 +120330,52 @@ Please State Your Name: Please The Gods: pageId: 139241 steam: 1040080 -'Please, Don''t Touch Anything': +"Please, Don't Touch Anything": pageId: 48361 steam: 354240 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\DontTouchAnything}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\DontTouchAnything}}' -'Please, Don''t Touch Anything 3D': + - "{{Game data/config|Windows|{{p|localappdata}}\\DontTouchAnything}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\DontTouchAnything}}" +"Please, Don't Touch Anything 3D": pageId: 54600 steam: 529590 Pleasure Airlines: pageId: 164503 steam: 1085110 -'Pleasure Goal: 5 on 5 Mini Soccer': +"Pleasure Goal: 5 on 5 Mini Soccer": pageId: 168839 Pleasure Party: pageId: 178932 steam: 1830620 -'Pleasure Puzzle: Portrait': +"Pleasure Puzzle: Portrait": pageId: 112792 steam: 939620 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Once Zone\Pleasure Puzzle Portrait\}}' -'Pleasure Puzzle: Sexy Girls': + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Once Zone\\Pleasure Puzzle Portrait\\}}" +"Pleasure Puzzle: Sexy Girls": pageId: 114042 steam: 934540 -'Pleasure Puzzle: Workshop': +"Pleasure Puzzle: Workshop": pageId: 113116 steam: 740810 Pleasure in Dream: pageId: 56442 steam: 575080 -'Plebby Quest: The Crusades': +"Plebby Quest: The Crusades": pageId: 142119 steam: 334310 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\PQTC\{{P|uid}}\SaveData\OPTIONMAN.sav}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\PQTC\{{P|uid}}\SaveData\}}' -'Plenty: Skyhearth': + - "{{Game data/config|Windows|{{P|localappdata}}\\PQTC\\{{P|uid}}\\SaveData\\OPTIONMAN.sav}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\PQTC\\{{P|uid}}\\SaveData\\}}" +"Plenty: Skyhearth": pageId: 52063 steam: 538950 -'Pleurghburg: Dark Ages': +"Pleurghburg: Dark Ages": pageId: 147240 templates: - - '{{Game data/config|Windows|{{p|game}}\agssave.*}}' - - '{{Game data/saves|Windows|{{p|game}}\acsetup.cfg}}' -'Plexarium: Mega Maze Crawler': + - "{{Game data/config|Windows|{{p|game}}\\agssave.*}}" + - "{{Game data/saves|Windows|{{p|game}}\\acsetup.cfg}}" +"Plexarium: Mega Maze Crawler": pageId: 68984 steam: 678530 Plexus: @@ -123769,19 +120406,19 @@ Plug & Play: pageId: 28962 steam: 353560 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\SOFTWARE\Etter Studio\Plug & Play\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\Etter Studio\\Plug & Play\\}}" Plug Me: pageId: 90983 steam: 759640 Plumber 3D: pageId: 68140 steam: 650690 -'Plumber: the Pipe Rush': +"Plumber: the Pipe Rush": pageId: 97408 steam: 881620 -Plumbers Don't Wear Ties: +"Plumbers Don't Wear Ties": pageId: 143598 -'Plumeboom: The First Chapter': +"Plumeboom: The First Chapter": pageId: 167591 Plunder: pageId: 125167 @@ -123790,7 +120427,7 @@ Plunder Panic: pageId: 175499 steam: 1455900 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Will Winn Games\Plunder Panic\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Will Winn Games\\Plunder Panic\\}}" Plunder Squad: pageId: 110178 steam: 923130 @@ -123798,8 +120435,8 @@ Plunge: pageId: 143854 steam: 1128690 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Spooky Buns LLC\Plunge\}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Spooky Buns LLC\Plunge\SteamCloud_Plunge.sav}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Spooky Buns LLC\\Plunge\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Spooky Buns LLC\\Plunge\\SteamCloud_Plunge.sav}}" Plunger Knight - Washers of Truth: pageId: 132456 steam: 1055780 @@ -123813,7 +120450,7 @@ Plutocracy: pageId: 79399 steam: 754500 templates: - - '{{Game data/saves|Windows|{{p|appdata}}\Redwood Games\Plutocracy\SavedGames}}' + - "{{Game data/saves|Windows|{{p|appdata}}\\Redwood Games\\Plutocracy\\SavedGames}}" Plutonium: pageId: 62235 steam: 634700 @@ -123824,9 +120461,9 @@ Pluviophile: pageId: 164541 steam: 1322170 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Pluviophile\Saved\Config\WindowsNoEditor\*.ini}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\Pluviophile\Saved\SaveGames\*.sav}}' -'Pneuma: Breath of Life': + - "{{Game data/config|Windows|{{P|localappdata}}\\Pluviophile\\Saved\\Config\\WindowsNoEditor\\*.ini}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Pluviophile\\Saved\\SaveGames\\*.sav}}" +"Pneuma: Breath of Life": pageId: 48581 steam: 347440 Pobeda: @@ -123851,7 +120488,7 @@ Pocket Rumble: steam: 389050 Pocket Tanks: pageId: 181911 -'Pocket Universe: Create Your Community': +"Pocket Universe: Create Your Community": pageId: 69026 steam: 663160 Pocket Waifu: @@ -123861,14 +120498,14 @@ PocketCars: pageId: 154007 steam: 1170720 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\Gen90Software\PocketCars\saves\Settings.pcs}}' - - '{{Game data/saves|Windows|{{p|steam}}\userdata\{{p|uid}}\1170720\remote\Player.pcs}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Gen90Software\\PocketCars\\saves\\Settings.pcs}}" + - "{{Game data/saves|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\1170720\\remote\\Player.pcs}}" Pocky & Rocky Reshrined: pageId: 185034 steam: 2200580 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\NatsumeAtari\KikiKaikai}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\NatsumeAtari\KikiKaikai\{{p|uid}}\SaveData.dat}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\NatsumeAtari\\KikiKaikai}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\NatsumeAtari\\KikiKaikai\\{{p|uid}}\\SaveData.dat}}" Pocoman: pageId: 128236 steam: 984360 @@ -123878,15 +120515,15 @@ Podium Bash: Poggers: pageId: 129557 steam: 1039200 -'Pogostuck: Rage With Your Friends': +"Pogostuck: Rage With Your Friends": pageId: 124323 steam: 688130 Poi: pageId: 37588 steam: 401810 templates: - - '{{Game data/config|Windows|{{P|userprofile}}\AppData\LocalLow\PolyKid\Poi\poi-common.dat}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\PolyKid\Poi\}}' + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\PolyKid\\Poi\\poi-common.dat}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\PolyKid\\Poi\\}}" Point: pageId: 92095 steam: 838100 @@ -123909,8 +120546,8 @@ Point Perfect: pageId: 39837 steam: 303840 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\point_perfect_steam\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\point_perfect_steam\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\point_perfect_steam\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\point_perfect_steam\\}}" Point Snake: pageId: 72288 steam: 718640 @@ -123923,7 +120560,7 @@ Pointless: Poisoner: pageId: 114560 steam: 944100 -Poisoner's Teacup: +"Poisoner's Teacup": pageId: 141400 steam: 1118440 PokeMMO: @@ -123938,20 +120575,20 @@ Poker Night 2: pageId: 6310 steam: 234710 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Telltale Games\Poker Night 2\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Telltale Games\Poker Night 2/}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Telltale Games/PokerNight2/}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Telltale Games\\Poker Night 2\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Telltale Games\\Poker Night 2/}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Telltale Games/PokerNight2/}}" Poker Night at the Inventory: pageId: 440 steam: 31280 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Telltale Games\Poker Night at the Inventory\prefs.prop}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Telltale Games\Poker Night at the Inventory\*.save}}' -'Poker Pretty Girls Battle: Texas Hold''em': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Telltale Games\\Poker Night at the Inventory\\prefs.prop}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Telltale Games\\Poker Night at the Inventory\\*.save}}" +"Poker Pretty Girls Battle: Texas Hold'em": pageId: 45956 steam: 407720 templates: - - '{{Game data/saves|Windows|{{p|game}}\Save\}}' + - "{{Game data/saves|Windows|{{p|game}}\\Save\\}}" Poker Quest: pageId: 157291 steam: 1184820 @@ -123993,9 +120630,9 @@ Pokémon Trading Card Game Live: pageId: 183824 Pokémon Trading Card Game Online: pageId: 174612 -'Pokémon: Magikarp Jump': +"Pokémon: Magikarp Jump": pageId: 168131 -'Polandball: Can into Space!': +"Polandball: Can into Space!": pageId: 33436 steam: 441050 Polanie: @@ -124014,8 +120651,8 @@ Polarity: pageId: 24730 steam: 315430 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Bluebutton Games\Polarity\}}' - - '{{Game data/saves|Windows|{{p|hkcu}}\Software\Bluebutton Games\Polarity\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Bluebutton Games\\Polarity\\}}" + - "{{Game data/saves|Windows|{{p|hkcu}}\\Software\\Bluebutton Games\\Polarity\\}}" Polda 3: pageId: 183972 steam: 2175650 @@ -124038,7 +120675,7 @@ Police Air Transporter: Police Car Chase: pageId: 110724 steam: 932130 -'Police Enforcement VR : 1-King-27': +"Police Enforcement VR : 1-King-27": pageId: 92191 steam: 796860 Police Helicopter Simulator: @@ -124050,48 +120687,48 @@ Police Infinity: Police Patrol: pageId: 92041 steam: 842530 -'Police Quest II: The Vengeance': +"Police Quest II: The Vengeance": gog: 1207661283 gogSide: - 1207658902 pageId: 40236 steam: 494740 templates: - - '{{Game data/config|Windows|{{p|game}}\PQ2}}' - - '{{Game data/saves|Windows|{{p|game}}\PQ2\PQSG.***}}' - - '{{Game data/saves|GOG.com|{{p|game}}\cloud_saves\PQSG.***}}' -'Police Quest III: The Kindred': + - "{{Game data/config|Windows|{{p|game}}\\PQ2}}" + - "{{Game data/saves|Windows|{{p|game}}\\PQ2\\PQSG.***}}" + - "{{Game data/saves|GOG.com|{{p|game}}\\cloud_saves\\PQSG.***}}" +"Police Quest III: The Kindred": gog: 1207661293 gogSide: - 1207658902 pageId: 56871 steam: 494740 -'Police Quest: In Pursuit of the Death Angel': +"Police Quest: In Pursuit of the Death Angel": gog: 1207661263 gogSide: - 1207658902 pageId: 21589 steam: 494740 templates: - - '{{Game data/config|DOS|{{p|game}}\}}' - - '{{Game data/config|Windows|{{p|game}}\PQ1|{{p|game}}\PQ1\EGA}}' - - '{{Game data/saves|DOS|{{p|game}}\PQ1SG.***}}' - - '{{Game data/saves|Windows|{{p|game}}\PQ1\PQ1SG.*|{{p|game}}\PQ1\EGA\PQSG.*|{{p|game}}\cloud_saves\PQ1SG.*}}' -'Police Quest: Open Season': + - "{{Game data/config|DOS|{{p|game}}\\}}" + - "{{Game data/config|Windows|{{p|game}}\\PQ1|{{p|game}}\\PQ1\\EGA}}" + - "{{Game data/saves|DOS|{{p|game}}\\PQ1SG.***}}" + - "{{Game data/saves|Windows|{{p|game}}\\PQ1\\PQ1SG.*|{{p|game}}\\PQ1\\EGA\\PQSG.*|{{p|game}}\\cloud_saves\\PQ1SG.*}}" +"Police Quest: Open Season": gog: 1207661303 gogSide: - 1207658902 pageId: 56872 steam: 494740 -'Police Quest: SWAT': +"Police Quest: SWAT": gog: 1207661473 gogSide: - 1207658909 pageId: 55139 steam: 560350 templates: - - '{{Game data/saves|DOS|{{P|game}}\SWATDATA.00*\}}' -'Police Quest: SWAT 2': + - "{{Game data/saves|DOS|{{P|game}}\\SWATDATA.00*\\}}" +"Police Quest: SWAT 2": gog: 1207661483 gogSide: - 1207658909 @@ -124101,9 +120738,9 @@ Police Simulator Patrol Officers: pageId: 170657 steam: 997010 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Boston\Saved\Config\WindowsNoEditor}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\Boston\Saved\Save Games}}' -'Police Simulator: Patrol Duty': + - "{{Game data/config|Windows|{{P|localappdata}}\\Boston\\Saved\\Config\\WindowsNoEditor}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Boston\\Saved\\Save Games}}" +"Police Simulator: Patrol Duty": pageId: 69070 steam: 461870 Police Stories: @@ -124111,18 +120748,18 @@ Police Stories: pageId: 55960 steam: 539470 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\PoliceStoriesRelease\settings.ini}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\PoliceStoriesRelease\}}' -'Police Stories: The Academy': + - "{{Game data/config|Windows|{{p|localappdata}}\\PoliceStoriesRelease\\settings.ini}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\PoliceStoriesRelease\\}}" +"Police Stories: The Academy": pageId: 180210 steam: 1986760 Police Stunt Cars: pageId: 141831 steam: 1124190 -'Police Tactics: Imperio': +"Police Tactics: Imperio": pageId: 38751 steam: 378800 -'Police: Destruction Street': +"Police: Destruction Street": pageId: 60221 steam: 546830 Political Animals: @@ -124139,12 +120776,12 @@ Pollen: pageId: 34204 steam: 393750 templates: - - '{{Game data/config|Windows|{{p|game}}\Data\Pollen.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\Save\}}' + - "{{Game data/config|Windows|{{p|game}}\\Data\\Pollen.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\Save\\}}" Poltergeist Treasure: pageId: 109648 steam: 912500 -'Poltergeist: A Pixelated Horror': +"Poltergeist: A Pixelated Horror": pageId: 49478 steam: 323700 Polterheist: @@ -124154,19 +120791,19 @@ Poly Bridge: pageId: 27334 steam: 367450 templates: - - '{{Game data/config|Windows|{{p|HKCU}}\Software\Dry Cactus\Poly Bridge}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Dry Cactus/Poly Bridge}}' - - '{{Game data/saves|Steam|{{p|Steam}}/userdata/{{p|uid}}/367450/remote/}}' + - "{{Game data/config|Windows|{{p|HKCU}}\\Software\\Dry Cactus\\Poly Bridge}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Dry Cactus/Poly Bridge}}" + - "{{Game data/saves|Steam|{{p|Steam}}/userdata/{{p|uid}}/367450/remote/}}" Poly Bridge 2: pageId: 159156 steam: 1062160 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\Dry Cactus\Poly Bridge 2\Profiles}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/com.drycactus/PolyBridge2/Profiles}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Dry Cactus/Poly Bridge 2/Profiles}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\Dry Cactus\Poly Bridge 2\SaveSlots}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Com.drycactus/polybridge2/saveslots}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Dry Cactus/Poly Bridge 2/SaveSlots}}' + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\Dry Cactus\\Poly Bridge 2\\Profiles}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/com.drycactus/PolyBridge2/Profiles}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Dry Cactus/Poly Bridge 2/Profiles}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\Dry Cactus\\Poly Bridge 2\\SaveSlots}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Com.drycactus/polybridge2/saveslots}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Dry Cactus/Poly Bridge 2/SaveSlots}}" Poly Defense: pageId: 128177 steam: 1031160 @@ -124195,7 +120832,7 @@ Poly Universe: pageId: 103193 steam: 801040 templates: - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\Pouchmouse\Poly Universe\Saves}}' + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\Pouchmouse\\Poly Universe\\Saves}}" Poly World: pageId: 89535 steam: 807960 @@ -124218,9 +120855,9 @@ Polyball: pageId: 47621 steam: 368180 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\SOFTWARE\Studio Monolith\Polyball\}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Studio Monolith\Polyball\MyLevels\}}' - - '{{Game data/saves|Steam|{{P|steam}}\userdata\{{P|uid}}\368180\remote\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\SOFTWARE\\Studio Monolith\\Polyball\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Studio Monolith\\Polyball\\MyLevels\\}}" + - "{{Game data/saves|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\368180\\remote\\}}" Polychromatic: pageId: 46174 steam: 384590 @@ -124252,7 +120889,7 @@ Polygon Attack: Polygon Hero: pageId: 64779 steam: 652750 -'Polygon''s Royale : Season 1': +"Polygon's Royale : Season 1": pageId: 129673 steam: 1031310 Polygone: @@ -124262,12 +120899,12 @@ Polygoneer: pageId: 68118 steam: 684680 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Polygoneer\Polygoneer_conf.sav}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\Polygoneer\Polygoneer.sav}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\Polygoneer\\Polygoneer_conf.sav}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Polygoneer\\Polygoneer.sav}}" Polymatic: pageId: 98014 steam: 870030 -'Polynomial 2: Universe of the Music': +"Polynomial 2: Universe of the Music": pageId: 42802 steam: 379420 Polyology: @@ -124304,9 +120941,9 @@ Poncho: pageId: 45777 steam: 332620 templates: - - '{{Game data/config|Linux|{{p|xdgconfighome}}/unity3d/Delve Interactive/Poncho/prefs}}' - - '{{Game data/saves|Windows|{{p|hkcu}}\Software\Delve Interactive\Poncho}}' - - '{{Game data/saves|Linux|{{p|xdgconfighome}}/unity3d/Delve Interactive/Poncho/prefs}}' + - "{{Game data/config|Linux|{{p|xdgconfighome}}/unity3d/Delve Interactive/Poncho/prefs}}" + - "{{Game data/saves|Windows|{{p|hkcu}}\\Software\\Delve Interactive\\Poncho}}" + - "{{Game data/saves|Linux|{{p|xdgconfighome}}/unity3d/Delve Interactive/Poncho/prefs}}" Pond Wars: pageId: 141235 steam: 652250 @@ -124322,13 +120959,13 @@ Pong Like: Pong Quest: pageId: 174586 steam: 1177030 -'Pong: The Next Level': +"Pong: The Next Level": pageId: 171143 Pongo: pageId: 47943 steam: 369000 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Drixy Games\Pongo}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Drixy Games\\Pongo}}" Ponkle: pageId: 120802 steam: 963020 @@ -124337,10 +120974,10 @@ Pony Island: pageId: 30636 steam: 405640 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\SOFTWARE\Daniel Mullins Games\Pony Island\}}' - - '{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/Daniel Mullins Games/Pony Island/}}' - - '{{Game data/saves|Windows|{{p|hkcu}}\SOFTWARE\Daniel Mullins Games\Pony Island\}}' - - '{{Game data/saves|Linux|{{p|xdgconfighome}}/unity3d/Daniel Mullins Games/Pony Island/}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\Daniel Mullins Games\\Pony Island\\}}" + - "{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/Daniel Mullins Games/Pony Island/}}" + - "{{Game data/saves|Windows|{{p|hkcu}}\\SOFTWARE\\Daniel Mullins Games\\Pony Island\\}}" + - "{{Game data/saves|Linux|{{p|xdgconfighome}}/unity3d/Daniel Mullins Games/Pony Island/}}" Pony Luv: pageId: 89743 Pony World 2: @@ -124354,7 +120991,7 @@ Pony World Deluxe: PooPee Wars: pageId: 68966 steam: 663830 -'PooShooter: Toilet Invaders': +"PooShooter: Toilet Invaders": pageId: 51356 steam: 514390 PooSky: @@ -124373,18 +121010,18 @@ Pool Panic: pageId: 91216 steam: 522240 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Rekim Ltd\PoolPanic\}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Rekim Ltd\PoolPanic\localSave.sav}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Rekim Ltd\\PoolPanic\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Rekim Ltd\\PoolPanic\\localSave.sav}}" Pool Shark: pageId: 110832 templates: - - '{{Game data/config|Windows|{{P|game}}\LiveBilliards.ini}}' - - '{{Game data/saves|Windows|{{P|game}}\Saved\}}' + - "{{Game data/config|Windows|{{P|game}}\\LiveBilliards.ini}}" + - "{{Game data/saves|Windows|{{P|game}}\\Saved\\}}" Pool Shark 2: pageId: 173930 templates: - - '{{Game data/config|Windows|{{p|hklm}}\Software\{{p|wow64}}\ZooDigital\Poolshark 2\startup}}' - - '{{Game data/saves|Windows|{{p|game}}Saves}}' + - "{{Game data/config|Windows|{{p|hklm}}\\Software\\{{p|wow64}}\\ZooDigital\\Poolshark 2\\startup}}" + - "{{Game data/saves|Windows|{{p|game}}Saves}}" Pool of Death: pageId: 39570 steam: 497240 @@ -124393,20 +121030,20 @@ Pool of Radiance: pageId: 19758 steam: 1882370 templates: - - '{{Game data/config|DOS|{{p|game}}\POOL.CFG}}' - - '{{Game data/saves|DOS|{{p|game}}\SAVE\}}' -'Pool of Radiance: Ruins of Myth Drannor': + - "{{Game data/config|DOS|{{p|game}}\\POOL.CFG}}" + - "{{Game data/saves|DOS|{{p|game}}\\SAVE\\}}" +"Pool of Radiance: Ruins of Myth Drannor": pageId: 157681 templates: - - '{{Game data/config|Windows|{{p|game}}}}' - - '{{Game data/saves|Windows|{{p|game}}/savegames/}}' + - "{{Game data/config|Windows|{{p|game}}}}" + - "{{Game data/saves|Windows|{{p|game}}/savegames/}}" Pools of Darkness: gog: 1432643408 pageId: 54895 steam: 1904522 templates: - - '{{Game data/config|DOS|{{p|game}}\POOL4.CFG}}' - - '{{Game data/saves|DOS|{{p|game}}\SAVE\}}' + - "{{Game data/config|DOS|{{p|game}}\\POOL4.CFG}}" + - "{{Game data/saves|DOS|{{p|game}}\\SAVE\\}}" Poop Slinger: pageId: 93273 steam: 849410 @@ -124434,14 +121071,14 @@ Poostall Royale: Pop Pop Boom Boom VR: pageId: 77010 steam: 701370 -Pop'n Music Lively: +"Pop'n Music Lively": pageId: 181713 -Pop'n Pop: +"Pop'n Pop": pageId: 111486 templates: - - '{{Game data/config|Windows|{{p|game}}\keymap.dat}}' - - '{{Game data/saves|Windows|{{p|game}}\ppsavdat.sav}}' -Pop'n'splat: + - "{{Game data/config|Windows|{{p|game}}\\keymap.dat}}" + - "{{Game data/saves|Windows|{{p|game}}\\ppsavdat.sav}}" +"Pop'n'splat": pageId: 136800 steam: 1082940 Popap: @@ -124456,46 +121093,40 @@ Poppy Playtime: pageId: 173242 steam: 1721470 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Poppy_Playtime\Saved\Config\WindowsNoEditor\}}' - - >- - {{Game data/saves|Windows|{{P|localappdata}}\Poppy_Playtime\Saved\SaveGames\ | - {{p|localappdata}}\Playtime_Prototype4\Saved\SaveGames{{note|The Playtime_Prototype4 folder holds the Chapter 2 - saves.}}}} -Poppy's Nightmare: + - "{{Game data/config|Windows|{{P|localappdata}}\\Poppy_Playtime\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Poppy_Playtime\\Saved\\SaveGames\\ | {{p|localappdata}}\\Playtime_Prototype4\\Saved\\SaveGames{{note|The Playtime_Prototype4 folder holds the Chapter 2 saves.}}}}" +"Poppy's Nightmare": pageId: 143918 steam: 1132830 Poptropica: pageId: 190677 steam: 1813270 -'Population: One': +"Population: One": pageId: 165978 steam: 691260 Populous: gog: 1207658963 pageId: 8257 templates: - - '{{Game data/config|Windows|{{p|game}}\Game\Game\DATA}}' - - '{{Game data/saves|Windows|{{p|game}}\Game\Game\*.GAM}}' -'Populous II: Trials of the Olympian Gods': + - "{{Game data/config|Windows|{{p|game}}\\Game\\Game\\DATA}}" + - "{{Game data/saves|Windows|{{p|game}}\\Game\\Game\\*.GAM}}" +"Populous II: Trials of the Olympian Gods": gog: 1207658981 pageId: 8234 templates: - - '{{Game data/saves|DOS|{{p|game}}\POPSAVE}}' -'Populous: The Beginning': + - "{{Game data/saves|DOS|{{p|game}}\\POPSAVE}}" +"Populous: The Beginning": gog: 1207659027 pageId: 1452 templates: - - '{{Game data/saves|Windows|{{p|game}}\Save}}' + - "{{Game data/saves|Windows|{{p|game}}\\Save}}" Populus Run: pageId: 166282 Popup Dungeon: pageId: 81175 steam: 349730 templates: - - >- - {{Game data/config|Windows|{{P|userprofile\Documents}}\My Games\Popup - Dungeon\Release\Profiles\*\Options.bytes|{{P|userprofile\Documents}}\My Games\Popup - Dungeon\Release\Profiles\*\Preferences.bytes|{{P|hkcu}}\SOFTWARE\Triple B Titles\Popup Dungeon\}} + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\My Games\\Popup Dungeon\\Release\\Profiles\\*\\Options.bytes|{{P|userprofile\\Documents}}\\My Games\\Popup Dungeon\\Release\\Profiles\\*\\Preferences.bytes|{{P|hkcu}}\\SOFTWARE\\Triple B Titles\\Popup Dungeon\\}}" Porcelain Panic: pageId: 82353 steam: 790050 @@ -124505,13 +121136,13 @@ Porcuball: Porcunipine: pageId: 37889 steam: 352620 -Porcupine's Fate: +"Porcupine's Fate": pageId: 180309 steam: 1954300 Porno Studio Tycoon: pageId: 52211 steam: 535490 -'Porradaria 2: Pagode of the Night': +"Porradaria 2: Pagode of the Night": pageId: 44231 steam: 431220 Porradaria Upgrade: @@ -124522,27 +121153,27 @@ Port Royale 2: pageId: 8688 steam: 12470 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Ascaron Entertainment\Port Royale 2\Save}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Ascaron Entertainment\Port Royale 2\}}' -'Port Royale 3: Pirates & Merchants': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Ascaron Entertainment\\Port Royale 2\\Save}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Ascaron Entertainment\\Port Royale 2\\}}" +"Port Royale 3: Pirates & Merchants": gog: 1683316495 pageId: 2241 steam: 205610 templates: - - '{{Game data/config|Windows|{{P|appdata}}\Kalypso Media\Port Royale 3\options.cfg}}' - - '{{Game data/saves|Windows|{{P|appdata}}\Kalypso Media\Port Royale 3\savegames}}' + - "{{Game data/config|Windows|{{P|appdata}}\\Kalypso Media\\Port Royale 3\\options.cfg}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\Kalypso Media\\Port Royale 3\\savegames}}" Port Royale 4: gog: 1782765325 gogSide: - 2106346549 pageId: 145481 steam: 1024650 -'Port Royale: Gold, Power and Pirates': +"Port Royale: Gold, Power and Pirates": gog: 1207658791 pageId: 21541 templates: - - '{{Game data/config|Windows|{{p|game}}\Save\options.sav}}' - - '{{Game data/saves|Windows|{{p|game}}\Save\*.mrk}}' + - "{{Game data/config|Windows|{{p|game}}\\Save\\options.sav}}" + - "{{Game data/saves|Windows|{{p|game}}\\Save\\*.mrk}}" Port Valley: pageId: 109450 steam: 904450 @@ -124555,9 +121186,9 @@ Portal: steamSide: - 323170 templates: - - '{{Game data/config|Steam|{{p|game}}\portal\cfg\}}' - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Valve\Source\portal\Settings}}' - - '{{Game data/saves|Steam|{{p|game}}\portal\save\}}' + - "{{Game data/config|Steam|{{p|game}}\\portal\\cfg\\}}" + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Valve\\Source\\portal\\Settings}}" + - "{{Game data/saves|Steam|{{p|game}}\\portal\\save\\}}" Portal (1986): pageId: 155035 Portal 2: @@ -124566,19 +121197,17 @@ Portal 2: steamSide: - 659 - 660 - - 323180 - 104600 + - 323180 templates: - - '{{Game data/config|Windows|{{p|game}}\portal2\cfg\|{{p|game}}\portal2_dlc2\cfg\|{{p|game}}\update\cfg\}}' - - '{{Game data/saves|Steam|{{p|game}}\portal2\SAVE\}}' + - "{{Game data/config|Windows|{{p|game}}\\portal2\\cfg\\|{{p|game}}\\portal2_dlc2\\cfg\\|{{p|game}}\\update\\cfg\\}}" + - "{{Game data/saves|Steam|{{p|game}}\\portal2\\SAVE\\}}" Portal 2 Sixense Perceptual Pack: pageId: 40588 steam: 247120 templates: - - >- - {{Game - data/config|Windows|{{p|game}}/portal2/cfg/|{{p|game}}/portal2_dlc2/cfg/|{{p|game}}/portal2_sixense/cfg/|{{p|game}}/update/cfg/}} -'Portal Dungeon: Goblin Escape': + - "{{Game data/config|Windows|{{p|game}}/portal2/cfg/|{{p|game}}/portal2_dlc2/cfg/|{{p|game}}/portal2_sixense/cfg/|{{p|game}}/update/cfg/}}" +"Portal Dungeon: Goblin Escape": pageId: 154414 steam: 1202140 Portal Key: @@ -124588,26 +121217,26 @@ Portal Knights: pageId: 34735 steam: 374040 templates: - - '{{Game data/config|Windows|{{P|game}}\portal_knights.cfg}}' - - '{{Game data/saves|Steam|{{P|steam}}\userdata\{{P|uid}}\374040\remote\}}' + - "{{Game data/config|Windows|{{P|game}}\\portal_knights.cfg}}" + - "{{Game data/saves|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\374040\\remote\\}}" Portal Reloaded: pageId: 179567 steam: 1255980 templates: - - '{{Game data/saves|Windows|{{p|game}}\portalreloaded\SAVE\{{p|uid}}}}' -'Portal Stories: Mel': + - "{{Game data/saves|Windows|{{p|game}}\\portalreloaded\\SAVE\\{{p|uid}}}}" +"Portal Stories: Mel": pageId: 25893 steam: 317400 templates: - - '{{Game data/config|Steam|{{p|game}}\portal_stories\cfg}}' - - '{{Game data/saves|Steam|{{p|game}}\portal_stories\SAVE}}' -'Portal Stories: VR': + - "{{Game data/config|Steam|{{p|game}}\\portal_stories\\cfg}}" + - "{{Game data/saves|Steam|{{p|game}}\\portal_stories\\SAVE}}" +"Portal Stories: VR": pageId: 89137 steam: 446750 -'Portal of Evil: Stolen Runes': +"Portal of Evil: Stolen Runes": pageId: 37766 steam: 361850 -'Portal: Revolution': +"Portal: Revolution": pageId: 181105 steam: 601360 Portarius: @@ -124617,14 +121246,14 @@ Ports of Call: pageId: 136726 steam: 1085260 templates: - - '{{Game data/config|DOS|{{p|game}}\REGISTER.LIC}}' - - '{{Game data/config|Windows|{{p|game}}\register.lic}}' - - '{{Game data/saves|DOS|{{p|game}}\GAMES\}}' - - '{{Game data/saves|Windows|{{p|game}}\games\}}' -'Portugal 1111: A Conquista de Soure': + - "{{Game data/config|DOS|{{p|game}}\\REGISTER.LIC}}" + - "{{Game data/config|Windows|{{p|game}}\\register.lic}}" + - "{{Game data/saves|DOS|{{p|game}}\\GAMES\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\games\\}}" +"Portugal 1111: A Conquista de Soure": pageId: 188918 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\SOFTWARE\Ciberbit\Portugal1111}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\Ciberbit\\Portugal1111}}" Posable Heroes: pageId: 73975 steam: 726880 @@ -124662,19 +121291,19 @@ Post Master: pageId: 50594 steam: 275080 templates: - - '{{Game data/saves|Windows|{{P|appdata}}\Post Master\}}' + - "{{Game data/saves|Windows|{{P|appdata}}\\Post Master\\}}" Post Mortem: gog: 1207659113 pageId: 13578 steam: 46550 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Post_Mortem Saves\|{{p|game}}\Post_Mortem Saves\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Post_Mortem Saves\|{{p|game}}\Post_Mortem Saves\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Post_Mortem Saves\\|{{p|game}}\\Post_Mortem Saves\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Post_Mortem Saves\\|{{p|game}}\\Post_Mortem Saves\\}}" Post Scriptum: pageId: 79403 steam: 736220 templates: - - '{{Game data/config|Windows|{{P|localappdata}}/PostScriptum/}}' + - "{{Game data/config|Windows|{{P|localappdata}}/PostScriptum/}}" Post Soviet Zombies: pageId: 141459 steam: 1113310 @@ -124685,8 +121314,8 @@ Post Void: pageId: 176344 steam: 1285670 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Post_Void\config.ini}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\Post_Void\savedata.ini}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\Post_Void\\config.ini}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Post_Void\\savedata.ini}}" Post War Dreams: pageId: 62090 steam: 616490 @@ -124701,12 +121330,10 @@ Postal: pageId: 6136 steam: 232770 templates: - - >- - {{Game data/config|Windows|{{p|game}}\Postal.ini|{{p|game}}\Postal - Plus.ini|{{p|appdata}}\RunningWithScissors\Postal Plus\POSTAL.INI}} - - '{{Game data/config|Linux|{{P|xdgdatahome}}/PostalPlus/}}' - - '{{Game data/saves|Windows|{{p|game}}\savegame\|{{p|appdata}}\RunningWithScissors\Postal Plus\savegame}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/PostalPlus/}}' + - "{{Game data/config|Windows|{{p|game}}\\Postal.ini|{{p|game}}\\Postal Plus.ini|{{p|appdata}}\\RunningWithScissors\\Postal Plus\\POSTAL.INI}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/PostalPlus/}}" + - "{{Game data/saves|Windows|{{p|game}}\\savegame\\|{{p|appdata}}\\RunningWithScissors\\Postal Plus\\savegame}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/PostalPlus/}}" Postal 2: gog: 1207658755 gogSide: @@ -124718,64 +121345,64 @@ Postal 2: - 360960 - 1986830 templates: - - '{{Game data/config|Windows|{{p|game}}\System\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Postal 2/System}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.lgp/postal2/System}}' - - '{{Game data/saves|Windows|{{p|game}}\Save\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Postal 2/Save}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.lgp/postal2/Save}}' -'Postal 4: No Regerts': + - "{{Game data/config|Windows|{{p|game}}\\System\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Postal 2/System}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.lgp/postal2/System}}" + - "{{Game data/saves|Windows|{{p|game}}\\Save\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Postal 2/Save}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.lgp/postal2/Save}}" +"Postal 4: No Regerts": gog: 1521846175 pageId: 148063 steam: 707030 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Postal4\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\Postal4\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\Postal4\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Postal4\\Saved\\SaveGames\\}}" Postal III: pageId: 20768 steam: 10220 templates: - - '{{Game data/config|Windows|{{p|game}}\p3\cfg\}}' - - '{{Game data/saves|Windows|{{p|game}}\p3\SAVE\}}' + - "{{Game data/config|Windows|{{p|game}}\\p3\\cfg\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\p3\\SAVE\\}}" Postal Redux: pageId: 32725 steam: 401680 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\PostalREDUX\Saved\Config\WindowsNoEditor}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/Epic/PostalREDUX/Saved/Config/}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\PostalREDUX\}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/Epic/PostalREDUX/Saved/SaveGames/}}' -'Postal: Brain Damaged': + - "{{Game data/config|Windows|{{p|localappdata}}\\PostalREDUX\\Saved\\Config\\WindowsNoEditor}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/Epic/PostalREDUX/Saved/Config/}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\PostalREDUX\\}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/Epic/PostalREDUX/Saved/SaveGames/}}" +"Postal: Brain Damaged": gog: 1747379624 pageId: 163149 renamedFrom: - - 'Postal: Brain Damaged' - - 'POSTAL: Brain Damaged' + - "Postal: Brain Damaged" + - "POSTAL: Brain Damaged" steam: 1359980 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Hyperstrange\POSTAL Brain Damaged}}' -'Posthuman: Sanctuary': + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Hyperstrange\\POSTAL Brain Damaged}}" +"Posthuman: Sanctuary": pageId: 99534 steam: 806910 -'Postman Pat 3: To the Rescue': +"Postman Pat 3: To the Rescue": pageId: 126696 Postman Pat Activity Centre: pageId: 126634 -'Postman Pat: Package of Fun': +"Postman Pat: Package of Fun": pageId: 126676 -'Postman Pat: Special Delivery Service': +"Postman Pat: Special Delivery Service": pageId: 126603 Postmen of Horizon: pageId: 66675 steam: 662980 templates: - - '{{Game data/config|Windows|{{P|appdata}}\renpy\Postmen_of_Horizon\persistent}}' - - '{{Game data/saves|Windows|{{P|appdata}}\renpy\Postmen_of_Horizon\*.save}}' -'Postmortem: One Must Die': + - "{{Game data/config|Windows|{{P|appdata}}\\renpy\\Postmen_of_Horizon\\persistent}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\renpy\\Postmen_of_Horizon\\*.save}}" +"Postmortem: One Must Die": pageId: 40501 steam: 263140 templates: - - '{{Game data/config|Windows|{{p|game}}\config.cfg}}' + - "{{Game data/config|Windows|{{p|game}}\\config.cfg}}" Postworld: pageId: 88237 steam: 812980 @@ -124804,13 +121431,13 @@ Potion Craft: pageId: 166589 steam: 1210320 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\SOFTWARE\niceplay games\Potion Craft\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\niceplay games\Potion Craft\SavesSteam}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\SOFTWARE\\niceplay games\\Potion Craft\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\niceplay games\\Potion Craft\\SavesSteam}}" Potion Explosion: pageId: 94356 steam: 788420 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\StudioClangore\Potion\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\StudioClangore\\Potion\\}}" Potion Party: pageId: 156756 steam: 1196440 @@ -124828,16 +121455,16 @@ Potion Tycoon: Potion island: pageId: 112808 steam: 940600 -'Potioneer: The VR Gardening Simulator': +"Potioneer: The VR Gardening Simulator": pageId: 52057 steam: 544410 Potionomics: pageId: 177202 steam: 1874490 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Potionomics\Saved\Config\WindowsNoEditor}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Potionomics\Saved\SaveGames}}' -'Potions: A Curious Tale': + - "{{Game data/config|Windows|{{p|localappdata}}\\Potionomics\\Saved\\Config\\WindowsNoEditor}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Potionomics\\Saved\\SaveGames}}" +"Potions: A Curious Tale": pageId: 39697 steam: 378690 Pottery Maker: @@ -124865,12 +121492,12 @@ Powargrid: pageId: 39231 steam: 453130 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Wee Free Studio\Powargrid\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Preferences/unity.Wee Free Studio.Powargrid.plist}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Wee Free Studio/Powargrid}}' - - '{{Game data/saves|Windows|{{P|hkcu}}\Software\Wee Free Studio\Powargrid\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Preferences/unity.Wee Free Studio.Powargrid.plist}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Wee Free Studio/Powargrid}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Wee Free Studio\\Powargrid\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Preferences/unity.Wee Free Studio.Powargrid.plist}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Wee Free Studio/Powargrid}}" + - "{{Game data/saves|Windows|{{P|hkcu}}\\Software\\Wee Free Studio\\Powargrid\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Preferences/unity.Wee Free Studio.Powargrid.plist}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Wee Free Studio/Powargrid}}" Powder VR: pageId: 132666 steam: 1048580 @@ -124881,20 +121508,20 @@ Power & Revolution: pageId: 42892 steam: 467520 templates: - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Power & Revolution\profiles\}}' + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Power & Revolution\\profiles\\}}" Power & Revolution 2019 Edition: pageId: 129591 steam: 1029630 templates: - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Power & Revolution 2019 Edition\profiles\}}' + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Power & Revolution 2019 Edition\\profiles\\}}" Power Block: pageId: 150199 steam: 1089100 Power Bomberman: pageId: 168716 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\pb\config.ini}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\pb\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\pb\\config.ini}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\pb\\}}" Power Brain Trainer: pageId: 136948 steam: 1070300 @@ -124902,7 +121529,7 @@ Power Chord: pageId: 184675 steam: 1724390 templates: - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Big Blue Bubble Inc\Power Chord\save}}' + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Big Blue Bubble Inc\\Power Chord\\save}}" Power Dolls: pageId: 175152 Power F1: @@ -124928,20 +121555,14 @@ Power Punch II: steam: 1137670 Power Rangers Zeo Versus the Machine Empire: pageId: 180218 -'Power Rangers: Battle for the Grid': +"Power Rangers: Battle for the Grid": pageId: 131412 steam: 1110100 templates: - - >- - {{Game data/config|Microsoft - Store|{{p|localappdata}}\Packages\nWay.PowerRangersBattlefortheGrid_p9e4qmq568j3m\LocalState\}} - - >- - {{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\nWay Inc\Power Rangers - Battle for The - Grid\SaveData\}} - - >- - {{Game data/saves|Microsoft - Store|{{P|localappdata}}\Packages\nWay.PowerRangersBattlefortheGrid_p9e4qmq568j3m\SystemAppData\wgs\}} -'Power Rangers: Super Legends': + - "{{Game data/config|Microsoft Store|{{p|localappdata}}\\Packages\\nWay.PowerRangersBattlefortheGrid_p9e4qmq568j3m\\LocalState\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\nWay Inc\\Power Rangers - Battle for The Grid\\SaveData\\}}" + - "{{Game data/saves|Microsoft Store|{{P|localappdata}}\\Packages\\nWay.PowerRangersBattlefortheGrid_p9e4qmq568j3m\\SystemAppData\\wgs\\}}" +"Power Rangers: Super Legends": pageId: 171058 Power Solitaire VR: pageId: 57208 @@ -124961,7 +121582,7 @@ Power Supplied: Power Tools VR: pageId: 74413 steam: 591920 -'Power War: The First Men': +"Power War: The First Men": pageId: 68695 steam: 684400 Power of Defense: @@ -124971,9 +121592,9 @@ Power of Love: pageId: 34429 steam: 368710 templates: - - '{{Game data/config|Windows|{{p|game}}\option\option.sdf}}' - - '{{Game data/saves|Windows|{{p|game}}\data\|{{p|game}}\map\my_map.sdf}}' - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\368710\remote\}}' + - "{{Game data/config|Windows|{{p|game}}\\option\\option.sdf}}" + - "{{Game data/saves|Windows|{{p|game}}\\data\\|{{p|game}}\\map\\my_map.sdf}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\368710\\remote\\}}" Power of the Void: pageId: 89256 steam: 717400 @@ -124991,20 +121612,20 @@ PowerSlave: pageId: 25279 steam: 1260020 templates: - - '{{Game data/config|DOS|{{P|game}}\SETUP.CFG}}' - - '{{Game data/saves|DOS|{{P|game}}\SAVGAME*.SAV}}' + - "{{Game data/config|DOS|{{P|game}}\\SETUP.CFG}}" + - "{{Game data/saves|DOS|{{P|game}}\\SAVGAME*.SAV}}" PowerSlave EX: pageId: 25274 templates: - - '{{Game data/config|Windows|{{P|game}}\config.cfg}}' - - '{{Game data/saves|Windows|{{P|game}}\saves\}}' + - "{{Game data/config|Windows|{{P|game}}\\config.cfg}}" + - "{{Game data/saves|Windows|{{P|game}}\\saves\\}}" PowerSlave Exhumed: gog: 1432253578 pageId: 170748 steam: 1678430 templates: - - '{{Game data/config|Windows|{{p|USERPROFILE}}\Saved Games\Nightdive Studios\Powerslave EX\}}' - - '{{Game data/saves|Windows|{{p|USERPROFILE}}\Saved Games\Nightdive Studios\Powerslave EX\saves\}}' + - "{{Game data/config|Windows|{{p|USERPROFILE}}\\Saved Games\\Nightdive Studios\\Powerslave EX\\}}" + - "{{Game data/saves|Windows|{{p|USERPROFILE}}\\Saved Games\\Nightdive Studios\\Powerslave EX\\saves\\}}" PowerUp Elevation: pageId: 104865 steam: 879390 @@ -125014,15 +121635,12 @@ PowerWash Simulator: steamSide: - 2088510 - 2088511 - - 2088511 - 2236950 - 2464650 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\FuturLab\PowerWash Simulator\SaveData\Preferences}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\FuturLab\PowerWash Simulator\SaveData}}' - - >- - {{Game data/saves|Microsoft - Store|{{P|localappdata}}\Packages\39C668CD.PowerWashSimulator_r7bfsmp40f67j\SystemAppData\wgs}} + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\FuturLab\\PowerWash Simulator\\SaveData\\Preferences}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\FuturLab\\PowerWash Simulator\\SaveData}}" + - "{{Game data/saves|Microsoft Store|{{P|localappdata}}\\Packages\\39C668CD.PowerWashSimulator_r7bfsmp40f67j\\SystemAppData\\wgs}}" Powerless: pageId: 79822 steam: 775200 @@ -125054,8 +121672,8 @@ Poöf: pageId: 12511 steam: 243280 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\SavedGames\POOF\{{p|uid}}\Config.ini}}' - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/243280/}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\SavedGames\\POOF\\{{p|uid}}\\Config.ini}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/243280/}}" Practisim VR: pageId: 62522 steam: 611720 @@ -125067,8 +121685,8 @@ Praetorians: pageId: 36367 steam: 277460 templates: - - '{{Game data/config|Windows|{{p|userprofile\documents}}\Praetorians\Profiles\*.usr}}' - - '{{Game data/saves|Windows|{{p|userprofile\documents}}\Praetorians\Savegame}}' + - "{{Game data/config|Windows|{{p|userprofile\\documents}}\\Praetorians\\Profiles\\*.usr}}" + - "{{Game data/saves|Windows|{{p|userprofile\\documents}}\\Praetorians\\Savegame}}" Praetorians HD Remaster: gog: 1999861490 pageId: 138540 @@ -125077,7 +121695,7 @@ Praey for the Gods: pageId: 36500 steam: 494430 templates: - - '{{Game data/saves|Windows|{{p|UserProfile}}\AppData\LocalLow\No Matter Studios\Praey For the Gods\}}' + - "{{Game data/saves|Windows|{{p|UserProfile}}\\AppData\\LocalLow\\No Matter Studios\\Praey For the Gods\\}}" Pragmata: pageId: 161023 Prana: @@ -125103,12 +121721,12 @@ Precipice: pageId: 122678 steam: 951670 templates: - - '{{Game data/config|Windows|{{P|appdata}}\Precipice\}}' - - '{{Game data/saves|Windows|{{P|appdata}}\Precipice\}}' -'Precision Archery: Competitive': + - "{{Game data/config|Windows|{{P|appdata}}\\Precipice\\}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\Precipice\\}}" +"Precision Archery: Competitive": pageId: 82631 steam: 763490 -'Precision Sniping: Competitive': +"Precision Sniping: Competitive": pageId: 90024 steam: 823510 Precursors: @@ -125122,23 +121740,23 @@ Predator Simulator: Predator VR: pageId: 151583 steam: 755640 -'Predator: Hunting Grounds': +"Predator: Hunting Grounds": pageId: 154510 steam: 1556200 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\SpaceFish\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\SpaceFish\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\SpaceFish\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\SpaceFish\\Saved\\SaveGames\\}}" Predecessor: pageId: 128457 steam: 961200 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Predecessor\Saved\Config\WindowsClient}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\Predecessor\\Saved\\Config\\WindowsClient}}" Predestination: pageId: 48777 steam: 340210 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Predestination}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Predestination\Saves}}' + - "{{Game data/config|Windows|{{p|appdata}}\\Predestination}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Predestination\\Saves}}" Predicate: pageId: 121949 steam: 968210 @@ -125150,8 +121768,8 @@ Predynastic Egypt: pageId: 51553 steam: 461620 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Clarus Victoria\Predynastic Egypt}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Clarus Victoria\Predynastic Egypt\saves\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Clarus Victoria\\Predynastic Egypt}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Clarus Victoria\\Predynastic Egypt\\saves\\}}" Pregnancy: pageId: 48549 steam: 351900 @@ -125164,8 +121782,8 @@ Prehistoric Kingdom: pageId: 67313 steam: 666150 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\Blue Meridian\Prehistoric Kingdom\}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\Saved Games\Prehistoric Kingdom\Saves}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Blue Meridian\\Prehistoric Kingdom\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\Saved Games\\Prehistoric Kingdom\\Saves}}" Prehistoric Tales: pageId: 42906 steam: 466780 @@ -125174,7 +121792,7 @@ Prehistorik: pageId: 76033 steam: 745870 templates: - - '{{Game data/config|DOS|{{p|game}}\GRAWAGA.CFG}}' + - "{{Game data/config|DOS|{{p|game}}\\GRAWAGA.CFG}}" Prehistorik (2014): pageId: 34364 steam: 331660 @@ -125186,7 +121804,7 @@ Prelogate: pageId: 37636 steam: 332830 templates: - - '{{Game data/saves|Windows|{{p|game}}\Prelogate_Data\UserData}}' + - "{{Game data/saves|Windows|{{p|game}}\\Prelogate_Data\\UserData}}" Prelude: pageId: 75638 steam: 746990 @@ -125235,7 +121853,7 @@ Premier Manager 98: Premier Manager Ninety Nine: pageId: 154882 templates: - - '{{Game data/saves|Windows|{{P|game}}\Save}}' + - "{{Game data/saves|Windows|{{P|game}}\\Save}}" Premium Bowling: pageId: 112140 steam: 898580 @@ -125277,7 +121895,7 @@ Press Any Button: pageId: 184539 steam: 1448030 templates: - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\Local\PAB\}}' + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\Local\\PAB\\}}" Press F to pay respects: pageId: 129821 steam: 1033880 @@ -125288,12 +121906,12 @@ Press X to Not Die: pageId: 37567 steam: 402330 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\SavedGames\Press X to Not Die\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Press X to Not Die/}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/Press X to Not Die/}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\SavedGames\Press X to Not Die\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Press X to Not Die/}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/Press X to Not Die/}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\SavedGames\\Press X to Not Die\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Press X to Not Die/}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/Press X to Not Die/}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\SavedGames\\Press X to Not Die\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Press X to Not Die/}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/Press X to Not Die/}}" Press and Jump: pageId: 68931 steam: 697940 @@ -125301,7 +121919,7 @@ Pressure: pageId: 16801 steam: 224220 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Pressure\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Pressure\\}}" Pressure Overdrive: pageId: 62066 steam: 425240 @@ -125311,27 +121929,25 @@ Pressured: Preston Sterling: pageId: 36149 steam: 516650 -'Preta: Vendetta Rising': +"Preta: Vendetta Rising": pageId: 64026 steam: 624870 Pretentious Game: pageId: 50240 steam: 279540 templates: - - >- - {{Game data/saves|Windows|{{p|APPDATA}}\Pretentious-Game---Steam\Local - Store\#SharedObjects\Pretentious_Game%20-%20Steam.swf\pretentiousgame007.sol}} + - "{{Game data/saves|Windows|{{p|APPDATA}}\\Pretentious-Game---Steam\\Local Store\\#SharedObjects\\Pretentious_Game%20-%20Steam.swf\\pretentiousgame007.sol}}" Pretty Angel: pageId: 153654 steam: 1148510 templates: - - '{{Game data/saves|Windows|{{p|game}}\PrettyAngel_Data\Save\*}}' + - "{{Game data/saves|Windows|{{p|game}}\\PrettyAngel_Data\\Save\\*}}" Pretty Girls Mahjong Solitaire: pageId: 29633 steam: 393980 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\SOFTWARE\ZooCorporation\PrettyGirlsMahjongSolitaire\}}' - - '{{Game data/saves|Windows|{{p|game}}\SaveData\PrettyGirlsMahjongSolitaire.dat}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\SOFTWARE\\ZooCorporation\\PrettyGirlsMahjongSolitaire\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\SaveData\\PrettyGirlsMahjongSolitaire.dat}}" Pretty Girls Panic!: pageId: 55261 steam: 565720 @@ -125345,36 +121961,32 @@ Prey: pageId: 10517 steam: 3970 templates: - - '{{Game data/config|Windows|{{p|game}}\base\}}' - - '{{Game data/config|OS X|{{P|osxhome}}/Library/Application Support/Prey/base/}}' - - '{{Game data/config|Linux|{{P|linuxhome}}/.prey/base/}}' - - >- - {{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\PREY\base\|{{p|userprofile}}\Saved - Games\HumanHeadStudios\Prey\}} - - '{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/Prey/base/savegames/}}' - - '{{Game data/saves|Linux|{{P|linuxhome}}/.prey/base/savegames/}}' + - "{{Game data/config|Windows|{{p|game}}\\base\\}}" + - "{{Game data/config|OS X|{{P|osxhome}}/Library/Application Support/Prey/base/}}" + - "{{Game data/config|Linux|{{P|linuxhome}}/.prey/base/}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\PREY\\base\\|{{p|userprofile}}\\Saved Games\\HumanHeadStudios\\Prey\\}}" + - "{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/Prey/base/savegames/}}" + - "{{Game data/saves|Linux|{{P|linuxhome}}/.prey/base/savegames/}}" Prey (2017): gog: 1158493447 pageId: 33371 steam: 480490 templates: - - '{{Game data/config|Epic Games Launcher|{{p|userprofile}}\Saved Games\Arkane Studios\Prey_Epic\}}' - - '{{Game data/config|Microsoft Store|{{p|userprofile}}\Saved Games\Arkane Studios\Prey_MS\}}' - - '{{Game data/config|Windows|{{p|userprofile}}\Saved Games\Arkane Studios\Prey\}}' - - >- - {{Game data/saves|Epic Games Launcher|{{p|userprofile}}\Saved Games\Arkane - Studios\Prey_Epic\{{P|uid}}\SaveGames\}} - - '{{Game data/saves|Microsoft Store|{{p|userprofile}}\Saved Games\Arkane Studios\Prey_MS\SaveGames\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\Saved Games\Arkane Studios\Prey\SaveGames\}}' + - "{{Game data/config|Epic Games Launcher|{{p|userprofile}}\\Saved Games\\Arkane Studios\\Prey_Epic\\}}" + - "{{Game data/config|Microsoft Store|{{p|userprofile}}\\Saved Games\\Arkane Studios\\Prey_MS\\}}" + - "{{Game data/config|Windows|{{p|userprofile}}\\Saved Games\\Arkane Studios\\Prey\\}}" + - "{{Game data/saves|Epic Games Launcher|{{p|userprofile}}\\Saved Games\\Arkane Studios\\Prey_Epic\\{{P|uid}}\\SaveGames\\}}" + - "{{Game data/saves|Microsoft Store|{{p|userprofile}}\\Saved Games\\Arkane Studios\\Prey_MS\\SaveGames\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Saved Games\\Arkane Studios\\Prey\\SaveGames\\}}" Prey with Gun: pageId: 73532 steam: 718940 -'Prey: Typhon Hunter': +"Prey: Typhon Hunter": pageId: 124903 steam: 741820 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\Saved Games\Arkane Studios\Typhon Hunter\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\Saved Games\Arkane Studios\Typhon Hunter\SaveGames\}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\Saved Games\\Arkane Studios\\Typhon Hunter\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Saved Games\\Arkane Studios\\Typhon Hunter\\SaveGames\\}}" Pride Run: pageId: 96243 steam: 848330 @@ -125388,8 +122000,8 @@ Priest Simulator: pageId: 122882 steam: 950620 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Priest_Simulator\Saved\Config\WindowsNoEditors}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\Priest_Simulator\Saved\SaveGames}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\Priest_Simulator\\Saved\\Config\\WindowsNoEditors}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Priest_Simulator\\Saved\\SaveGames}}" Prim: gog: 2062710536 pageId: 174149 @@ -125403,13 +122015,13 @@ Primal Carnage: pageId: 40695 steam: 215470 templates: - - '{{Game data/config|Windows|{{p|game}}\PrimalCarnageGame\Config\}}' -'Primal Carnage: Extinction': + - "{{Game data/config|Windows|{{p|game}}\\PrimalCarnageGame\\Config\\}}" +"Primal Carnage: Extinction": pageId: 23057 steam: 321360 templates: - - '{{Game data/config|Windows|{{p|game}}\PrimalCarnageGame\Config\}}' -'Primal Carnage: Onslaught': + - "{{Game data/config|Windows|{{p|game}}\\PrimalCarnageGame\\Config\\}}" +"Primal Carnage: Onslaught": pageId: 55807 steam: 538790 Primal Fears: @@ -125427,16 +122039,16 @@ Primal Light: Primal Prey: pageId: 57169 templates: - - '{{Game data/config|Windows|{{p|game}}\config.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\trophies.txt}}' + - "{{Game data/config|Windows|{{p|game}}\\config.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\trophies.txt}}" Primal Pursuit: pageId: 108824 steam: 773440 Primal Rage: pageId: 26241 templates: - - '{{Game data/config|DOS|{{p|game}}\CMOS}}' - - '{{Game data/saves|DOS|{{p|game}}\CMOS}}' + - "{{Game data/config|DOS|{{p|game}}\\CMOS}}" + - "{{Game data/saves|DOS|{{p|game}}\\CMOS}}" Primal Reign: pageId: 62789 steam: 636580 @@ -125447,20 +122059,20 @@ Prime Mover: pageId: 93893 steam: 693700 templates: - - '{{Game data/config|Windows|{{p|LOCALAPPDATA}}\PrimeMover\{{p|uid}}\settings.ini}}' + - "{{Game data/config|Windows|{{p|LOCALAPPDATA}}\\PrimeMover\\{{p|uid}}\\settings.ini}}" Prime Shift: pageId: 66193 steam: 663170 Prime World: pageId: 50500 steam: 235340 -'Prime World: Defenders': +"Prime World: Defenders": pageId: 7146 steam: 235360 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Nival Red\Prime World: Defenders\}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Prime World Defenders\}}' -'Prime World: Defenders 2': + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Nival Red\\Prime World: Defenders\\}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Prime World Defenders\\}}" +"Prime World: Defenders 2": pageId: 123623 steam: 429540 PrimeOrbial: @@ -125489,15 +122101,15 @@ Primordia: pageId: 36365 steam: 227000 templates: - - '{{Game data/config|Windows|{{P|userprofile}}\Saved Games\Primordia\acsetup.cfg}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/ags/Primordia/acsetup.cfg}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\Saved Games\Primordia\}}' - - '{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/Primordia/}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/ags/Primordia/agssave.*}}' + - "{{Game data/config|Windows|{{P|userprofile}}\\Saved Games\\Primordia\\acsetup.cfg}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/ags/Primordia/acsetup.cfg}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\Saved Games\\Primordia\\}}" + - "{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/Primordia/}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/ags/Primordia/agssave.*}}" Primordial Darkness: pageId: 75665 steam: 743680 -'Primordials: Battle of Gods': +"Primordials: Battle of Gods": pageId: 160779 renamedFrom: - Primordials of Amyrion @@ -125512,71 +122124,71 @@ Prince Maker美少年梦工厂3:重生: pageId: 132684 steam: 1055760 templates: - - '{{Game data/config|Windows|{{p|game}}\savedata\}}' - - '{{Game data/saves|Windows|{{p|game}}\savedata\}}' + - "{{Game data/config|Windows|{{p|game}}\\savedata\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\savedata\\}}" Prince of Cats: pageId: 135548 steam: 1063110 Prince of Persia: pageId: 54554 templates: - - '{{Game data/config|DOS|{{p|game}}\CONFIG.DAT|{{p|game}}\SETUP.DAT}}' - - '{{Game data/saves|DOS|{{p|game}}\PRINCE.SAV}}' + - "{{Game data/config|DOS|{{p|game}}\\CONFIG.DAT|{{p|game}}\\SETUP.DAT}}" + - "{{Game data/saves|DOS|{{p|game}}\\PRINCE.SAV}}" Prince of Persia (2008): gog: 1207659109 pageId: 4307 steam: 19980 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Ubisoft\Prince of Persia\1.0\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Prince of Persia\Save\}}' -'Prince of Persia 2: The Shadow and the Flame': + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Ubisoft\\Prince of Persia\\1.0\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Prince of Persia\\Save\\}}" +"Prince of Persia 2: The Shadow and the Flame": pageId: 54556 templates: - - '{{Game data/config|DOS|{{p|game}}\CONFIG.DAT|{{p|game}}\SETUP.DAT}}' - - '{{Game data/saves|DOS|{{p|game}}\PRINCE.SAV}}' + - "{{Game data/config|DOS|{{p|game}}\\CONFIG.DAT|{{p|game}}\\SETUP.DAT}}" + - "{{Game data/saves|DOS|{{p|game}}\\PRINCE.SAV}}" Prince of Persia 3D: pageId: 165995 templates: - - '{{Game data/config|Windows|{{p|game}}\input.ini, fight.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\Level ** Start, Level ** Start.bmp}}' -'Prince of Persia: The Forgotten Sands': + - "{{Game data/config|Windows|{{p|game}}\\input.ini, fight.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\Level ** Start, Level ** Start.bmp}}" +"Prince of Persia: The Forgotten Sands": pageId: 4310 steam: 33320 steamSide: - 901478 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Ubisoft\Prince of Persia - The Forgotten Sands\1.0\Engine\}}' - - '{{Game data/saves|Windows|{{p|uplay}}\savegames\{{p|uid}}\11\}}' -'Prince of Persia: The Sands of Time': + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Ubisoft\\Prince of Persia - The Forgotten Sands\\1.0\\Engine\\}}" + - "{{Game data/saves|Windows|{{p|uplay}}\\savegames\\{{p|uid}}\\11\\}}" +"Prince of Persia: The Sands of Time": gog: 1207658747 pageId: 4312 steam: 13600 templates: - - '{{Game data/config|Windows|{{p|game}}\Hardware.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\Profiles\}}' -'Prince of Persia: The Sands of Time Remake': + - "{{Game data/config|Windows|{{p|game}}\\Hardware.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\Profiles\\}}" +"Prince of Persia: The Sands of Time Remake": pageId: 163291 -'Prince of Persia: The Two Thrones': +"Prince of Persia: The Two Thrones": gog: 1207659091 pageId: 4316 steam: 13530 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/saves|Windows|{{p|game}}\POP3Profiles\}}' -'Prince of Persia: Warrior Within': + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\POP3Profiles\\}}" +"Prince of Persia: Warrior Within": gog: 1207659082 pageId: 4314 steam: 13500 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/saves|Windows|{{p|game}}\GameProfiles\POPWWPROFILES|{{p|programdata}}\POPWWPROFILES\}}' + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\GameProfiles\\POPWWPROFILES|{{p|programdata}}\\POPWWPROFILES\\}}" Prince of Qin: gog: 1273860392 pageId: 157559 steam: 1717410 templates: - - '{{Game data/config|Windows|{{p|game}}}}' - - '{{Game data/saves|Windows|{{p|game}}}}' + - "{{Game data/config|Windows|{{p|game}}}}" + - "{{Game data/saves|Windows|{{p|game}}}}" Prince of Suburbia - Part 1: pageId: 178908 steam: 1896170 @@ -125612,10 +122224,10 @@ Princess Isabella: Princess Isabella - Return of the Curse: pageId: 50440 steam: 292670 -'Princess Isabella: The Rise of an Heir': +"Princess Isabella: The Rise of an Heir": pageId: 43071 steam: 466490 -'Princess Kaguya: Legend of the Moon Warrior': +"Princess Kaguya: Legend of the Moon Warrior": pageId: 46975 steam: 383710 Princess Kidnapper 2 - VR: @@ -125632,18 +122244,18 @@ Princess Maker: Princess Maker 2: pageId: 175171 templates: - - '{{Game data/config|Mac OS|Any folder|}}' + - "{{Game data/config|Mac OS|Any folder|}}" Princess Maker 2 Refine: pageId: 50781 steam: 523000 -'Princess Maker 3: Fairy Tales Come True': +"Princess Maker 3: Fairy Tales Come True": pageId: 64464 steam: 650110 Princess Maker 4: pageId: 174948 templates: - - '{{Game data/config|Windows|{{p|game}}\game.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\SAVE}}' + - "{{Game data/config|Windows|{{p|game}}\\game.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\SAVE}}" Princess Maker 5: pageId: 92971 steam: 724250 @@ -125655,19 +122267,19 @@ Princess Maker Go!Go! Princess: Princess Maker Q: pageId: 175198 templates: - - '{{Game data/saves|Windows|Anywhere, for TXT file}}' + - "{{Game data/saves|Windows|Anywhere, for TXT file}}" Princess Maker Refine: pageId: 58122 steam: 583040 templates: - - '{{Game data/saves|Windows|{{p|game}}\Save}}' + - "{{Game data/saves|Windows|{{p|game}}\\Save}}" Princess Maker ~Faery Tales Come True~ (HD Remake): pageId: 156108 steam: 1155980 -'Princess Maker: GO!GO!Princess': +"Princess Maker: GO!GO!Princess": pageId: 175947 steam: 724260 -'Princess Maker: Pocket Wars': +"Princess Maker: Pocket Wars": pageId: 175944 Princess Project: pageId: 141971 @@ -125676,18 +122288,18 @@ Princess Remedy In A Heap of Trouble: pageId: 38825 steam: 522040 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Ludosity\Remedy\}}' - - '{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/Ludosity/Remedy/}}' + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Ludosity\\Remedy\\}}" + - "{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/Ludosity/Remedy/}}" Princess Remedy in a World of Hurt: pageId: 37110 steam: 407900 templates: - - '{{Game data/config|Windows|{{p|game}}\options.sav}}' - - '{{Game data/saves|Windows|{{p|game}}\remedy*.sav}}' + - "{{Game data/config|Windows|{{p|game}}\\options.sav}}" + - "{{Game data/saves|Windows|{{p|game}}\\remedy*.sav}}" Princess Sahirah is a Spoiled Brat!: pageId: 65441 steam: 671490 -'Princess Serena: Raid of Demon Legion': +"Princess Serena: Raid of Demon Legion": pageId: 69492 steam: 702210 Princess and Knight: @@ -125696,12 +122308,12 @@ Princess and Knight: Princess of Tavern: pageId: 74141 renamedFrom: - - Princess of Tavern Collector's Edition + - "Princess of Tavern Collector's Edition" steam: 545830 Princess of Zeven: pageId: 130652 steam: 1040510 -Princess's Peak: +"Princess's Peak": pageId: 138598 steam: 1071770 Princess.Loot.Pixel.Again: @@ -125720,10 +122332,10 @@ Princesses Never Lose!: gog: 1217450320 pageId: 135971 steam: 1058060 -'Princesses vs Dragons: Royal Rumble': +"Princesses vs Dragons: Royal Rumble": pageId: 144305 steam: 1124010 -'Principia: Master of Science': +"Principia: Master of Science": pageId: 38839 steam: 491470 Prism: @@ -125738,11 +122350,11 @@ Prism Break: Prism Collider: pageId: 57273 steam: 585770 -'Prism: Guard Shield': +"Prism: Guard Shield": pageId: 89100 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Rebellion\PRISM\PRISM_SaveFile.dat}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Rebellion\PRISM\PLS{{p|UID}}\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Rebellion\\PRISM\\PRISM_SaveFile.dat}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Rebellion\\PRISM\\PLS{{p|UID}}\\}}" Prisma & the Masquerade Menace: pageId: 59303 steam: 544470 @@ -125761,19 +122373,19 @@ Prismatix: Prison Architect: gog: 1441974651 gogSide: - - 1442910108 - - 1442909513 - - 1619024184 - - 1513895746 - - 1896980482 + - 1126027458 + - 1372581920 - 1386909466 - - 1991603866 - - 2063674355 - - 1814953452 + - 1442909513 + - 1442910108 + - 1513895746 - 1580943759 - 1618927321 - - 1372581920 - - 1126027458 + - 1619024184 + - 1814953452 + - 1896980482 + - 1991603866 + - 2063674355 pageId: 4544 steam: 233450 steamSide: @@ -125794,13 +122406,13 @@ Prison Architect: - 2184800 - 2237250 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Introversion\Prison Architect\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Prison Architect/}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.Prison Architect/}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Introversion\Prison Architect\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Prison Architect/}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.Prison Architect/}}' -'Prison Ball: Full Blown': + - "{{Game data/config|Windows|{{p|localappdata}}\\Introversion\\Prison Architect\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Prison Architect/}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.Prison Architect/}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Introversion\\Prison Architect\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Prison Architect/}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.Prison Architect/}}" +"Prison Ball: Full Blown": pageId: 140964 steam: 1109080 Prison Bomber: @@ -125812,7 +122424,7 @@ Prison Boss VR: Prison Break RPG: pageId: 121345 steam: 952530 -'Prison Break: The Conspiracy': +"Prison Break: The Conspiracy": pageId: 188662 Prison Chainball Massacre: pageId: 74894 @@ -125836,24 +122448,24 @@ Prison Simulator: pageId: 108984 steam: 842180 templates: - - '{{Game data/config|Windows|{{p|userprofile\appdata\locallow}}\Baked Games\Prison Simulator}}' - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\Baked Games\Prison Simulator\Data}}' + - "{{Game data/config|Windows|{{p|userprofile\\appdata\\locallow}}\\Baked Games\\Prison Simulator}}" + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\Baked Games\\Prison Simulator\\Data}}" Prison Simulator VR: pageId: 137098 steam: 1088190 Prison Test: pageId: 94753 steam: 862150 -'Prison Tycoon 3: Lockdown': +"Prison Tycoon 3: Lockdown": pageId: 41381 steam: 12510 -'Prison Tycoon 4: SuperMax': +"Prison Tycoon 4: SuperMax": pageId: 59766 steam: 33750 Prison Tycoon Alcatraz: pageId: 47951 steam: 354820 -'Prison Tycoon: Under New Management': +"Prison Tycoon: Under New Management": gog: 1511578434 pageId: 171003 steam: 1515460 @@ -125866,11 +122478,11 @@ Prisoner (High Five Studios): Prisoner 518: pageId: 142050 steam: 1121550 -'Prisoner of War: World War II': +"Prisoner of War: World War II": pageId: 177553 templates: - - '{{Game data/config|Windows|{{p|game}}\options.wiv }}' - - '{{Game data/saves|Windows|{{p|game}}\Saves }}' + - "{{Game data/config|Windows|{{p|game}}\\options.wiv }}" + - "{{Game data/saves|Windows|{{p|game}}\\Saves }}" Pristine World: pageId: 42461 steam: 463520 @@ -125884,14 +122496,14 @@ Private Detective Punch Drunk: steam: 743990 Private Eye: pageId: 168026 -'Privateer 2: The Darkening': +"Privateer 2: The Darkening": gog: 1207659613 pageId: 12825 templates: - - '{{Game data/config|DOS|{{p|game}}\DARK.CFG}}' - - '{{Game data/config|Windows|{{p|game}}\DARK.CFG}}' - - '{{Game data/saves|DOS|{{p|game}}\GAME0*.IFF}}' - - '{{Game data/saves|Windows|{{p|game}}\GAME0*.IFF}}' + - "{{Game data/config|DOS|{{p|game}}\\DARK.CFG}}" + - "{{Game data/config|Windows|{{p|game}}\\DARK.CFG}}" + - "{{Game data/saves|DOS|{{p|game}}\\GAME0*.IFF}}" + - "{{Game data/saves|Windows|{{p|game}}\\GAME0*.IFF}}" Privateers: pageId: 109430 steam: 903180 @@ -125943,8 +122555,8 @@ Pro Drift Reloaded: Pro Evolution Soccer 2008: pageId: 57637 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\KONAMI\Pro Evolution Soccer 2008\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\KONAMI\Pro Evolution Soccer 2008\save\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\KONAMI\\Pro Evolution Soccer 2008\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\KONAMI\\Pro Evolution Soccer 2008\\save\\}}" Pro Evolution Soccer 2009: pageId: 154950 Pro Evolution Soccer 2010: @@ -125960,62 +122572,62 @@ Pro Evolution Soccer 2014: pageId: 154956 steam: 250870 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\KONAMI\Pro Evolution Soccer 2014\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\KONAMI\Pro Evolution Soccer 2014\save\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\KONAMI\\Pro Evolution Soccer 2014\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\KONAMI\\Pro Evolution Soccer 2014\\save\\}}" Pro Evolution Soccer 2015: pageId: 20934 steam: 287680 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\KONAMI\Pro Evolution Soccer 2015\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\KONAMI\Pro Evolution Soccer 2015\save\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\KONAMI\\Pro Evolution Soccer 2015\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\KONAMI\\Pro Evolution Soccer 2015\\save\\}}" Pro Evolution Soccer 2016: pageId: 28614 steam: 375960 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\KONAMI\Pro Evolution Soccer 2016\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\KONAMI\Pro Evolution Soccer 2016\save\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\KONAMI\\Pro Evolution Soccer 2016\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\KONAMI\\Pro Evolution Soccer 2016\\save\\}}" Pro Evolution Soccer 2016 myClub: pageId: 31290 steam: 407250 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\KONAMI\Pro Evolution Soccer 2016 myClub\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\KONAMI\Pro Evolution Soccer 2016 myClub\save\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\KONAMI\\Pro Evolution Soccer 2016 myClub\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\KONAMI\\Pro Evolution Soccer 2016 myClub\\save\\}}" Pro Evolution Soccer 2017: pageId: 33189 steam: 456610 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\KONAMI\Pro Evolution Soccer 2017\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\KONAMI\Pro Evolution Soccer 2017\save\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\KONAMI\\Pro Evolution Soccer 2017\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\KONAMI\\Pro Evolution Soccer 2017\\save\\}}" Pro Evolution Soccer 2017 Trial: pageId: 76734 steam: 541180 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\KONAMI\PRO EVOLUTION SOCCER 2017 TRIAL EDITION\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\KONAMI\PRO EVOLUTION SOCCER 2017 TRIAL EDITION\save\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\KONAMI\\PRO EVOLUTION SOCCER 2017 TRIAL EDITION\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\KONAMI\\PRO EVOLUTION SOCCER 2017 TRIAL EDITION\\save\\}}" Pro Evolution Soccer 2018: pageId: 61826 steam: 592580 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\KONAMI\PRO EVOLUTION SOCCER 2018\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\KONAMI\PRO EVOLUTION SOCCER 2018\save\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\KONAMI\\PRO EVOLUTION SOCCER 2018\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\KONAMI\\PRO EVOLUTION SOCCER 2018\\save\\}}" Pro Evolution Soccer 2018 Lite: pageId: 76679 steam: 592600 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\KONAMI\PRO EVOLUTION SOCCER 2018 LITE\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\KONAMI\PRO EVOLUTION SOCCER 2018 LITE\save\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\KONAMI\\PRO EVOLUTION SOCCER 2018 LITE\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\KONAMI\\PRO EVOLUTION SOCCER 2018 LITE\\save\\}}" Pro Evolution Soccer 2019: pageId: 94172 steam: 770240 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\KONAMI\PRO EVOLUTION SOCCER 2019\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\KONAMI\PRO EVOLUTION SOCCER 2019\{{p|uid}}\save\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\KONAMI\\PRO EVOLUTION SOCCER 2019\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\KONAMI\\PRO EVOLUTION SOCCER 2019\\{{p|uid}}\\save\\}}" Pro Evolution Soccer 2019 Lite: pageId: 124696 steam: 950100 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\KONAMI\PRO EVOLUTION SOCCER 2019 LITE\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\KONAMI\PRO EVOLUTION SOCCER 2019 LITE\{{p|uid}}\save\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\KONAMI\\PRO EVOLUTION SOCCER 2019 LITE\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\KONAMI\\PRO EVOLUTION SOCCER 2019 LITE\\{{p|uid}}\\save\\}}" Pro Evolution Soccer 3: pageId: 154929 Pro Evolution Soccer 4: @@ -126025,8 +122637,8 @@ Pro Evolution Soccer 5: Pro Evolution Soccer 6: pageId: 30945 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\KONAMI\Pro Evolution Soccer 6\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\KONAMI\Pro Evolution Soccer 6\save\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\KONAMI\\Pro Evolution Soccer 6\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\KONAMI\\Pro Evolution Soccer 6\\save\\}}" Pro Farm Manager: pageId: 74880 steam: 517270 @@ -126043,8 +122655,8 @@ Pro Gamer Manager 2: pageId: 68693 steam: 656530 templates: - - '{{Game data/config|Windows|{{P|userprofile}}\AppData\LocalLow\501 Industries\PGM 2\Settings\}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\501 Industries\PGM 2\Saves\}}' + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\501 Industries\\PGM 2\\Settings\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\501 Industries\\PGM 2\\Saves\\}}" Pro Gamer Tycoon: pageId: 98820 steam: 884530 @@ -126057,20 +122669,20 @@ Pro Office Calculator: Pro Pinball Ultra: pageId: 38426 steam: 287900 -'Pro Pinball: Big Race USA': +"Pro Pinball: Big Race USA": gog: 1207658735 pageId: 131761 -'Pro Pinball: Fantastic Journey': +"Pro Pinball: Fantastic Journey": gog: 1207658736 pageId: 131763 -'Pro Pinball: Timeshock!': +"Pro Pinball: Timeshock!": gog: 1207658737 pageId: 131759 Pro Rally 2001: pageId: 173624 templates: - - '{{Game data/config|Windows|{{p|game}}\Data\Save\proRally.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\Data\Save\}}' + - "{{Game data/config|Windows|{{p|game}}\\Data\\Save\\proRally.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\Data\\Save\\}}" Pro Rugby Manager 2015: pageId: 49621 steam: 273030 @@ -126101,12 +122713,8 @@ Probability 0: pageId: 19275 steam: 258070 templates: - - >- - {{Game data/config|Windows|{{p|appdata}}\Macromedia\Flash - Player\#SharedObjects\{{p|uid}}\localhost\{{p|game}}\p0v1.sol}} - - >- - {{Game data/saves|Windows|{{p|appdata}}\Macromedia\Flash - Player\#SharedObjects\{{p|uid}}\localhost\{{p|game}}\p0v1.sol}} + - "{{Game data/config|Windows|{{p|appdata}}\\Macromedia\\Flash Player\\#SharedObjects\\{{p|uid}}\\localhost\\{{p|game}}\\p0v1.sol}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Macromedia\\Flash Player\\#SharedObjects\\{{p|uid}}\\localhost\\{{p|game}}\\p0v1.sol}}" Probably Archery: pageId: 50681 steam: 263420 @@ -126118,21 +122726,17 @@ Prodeus: pageId: 124601 steam: 964800 templates: - - >- - {{Game - data/config|Windows|{{P|userprofile\appdata\locallow}}\BoundingBoxSoftware\Prodeus\Settings\|{{p|hkcu}}\Software\BoundingBoxSoftware\Prodeus\}} - - >- - {{Game data/config|Microsoft Store|{{P|userprofile\appdata\locallow}}\Humble - Bundle\Prodeus\Settings\|{{p|hkcu}}\Software\Humble Bundle\Prodeus\}} - - '{{Game data/config|OS X|{{P|osxhome}}/Library/Application Support/com.BoundingBoxSoftware.Prodeus/Settings/}}' - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\BoundingBoxSoftware\Prodeus\SaveGames\}}' - - '{{Game data/saves|Microsoft Store|{{P|userprofile\appdata\locallow}}\Humble Bundle\Prodeus\CloudSaveGames\}}' - - '{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/com.BoundingBoxSoftware.Prodeus/SaveGames/}}' + - "{{Game data/config|Windows|{{P|userprofile\\appdata\\locallow}}\\BoundingBoxSoftware\\Prodeus\\Settings\\|{{p|hkcu}}\\Software\\BoundingBoxSoftware\\Prodeus\\}}" + - "{{Game data/config|Microsoft Store|{{P|userprofile\\appdata\\locallow}}\\Humble Bundle\\Prodeus\\Settings\\|{{p|hkcu}}\\Software\\Humble Bundle\\Prodeus\\}}" + - "{{Game data/config|OS X|{{P|osxhome}}/Library/Application Support/com.BoundingBoxSoftware.Prodeus/Settings/}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\BoundingBoxSoftware\\Prodeus\\SaveGames\\}}" + - "{{Game data/saves|Microsoft Store|{{P|userprofile\\appdata\\locallow}}\\Humble Bundle\\Prodeus\\CloudSaveGames\\}}" + - "{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/com.BoundingBoxSoftware.Prodeus/SaveGames/}}" Prodigal: pageId: 173901 steam: 1393820 templates: - - '{{Game data/saves|Windows|{{p|USERPROFILE}}\AppData\LocalLow\Colorgrave\Prodigal\*.syr}}' + - "{{Game data/saves|Windows|{{p|USERPROFILE}}\\AppData\\LocalLow\\Colorgrave\\Prodigal\\*.syr}}" Prodigy Tactics: gog: 1811787702 pageId: 61804 @@ -126148,8 +122752,8 @@ Production Line: pageId: 62048 steam: 591370 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\productionline\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\productionline\savegames\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\productionline\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\productionline\\savegames\\}}" Production Sound: pageId: 89424 steam: 816930 @@ -126163,11 +122767,11 @@ Professional Farmer 2014: pageId: 13351 steam: 258880 templates: - - '{{Game data/saves|Windows|{{p|appdata}}\Landwirt2014\Save}}' + - "{{Game data/saves|Windows|{{p|appdata}}\\Landwirt2014\\Save}}" Professional Farmer 2017: pageId: 44022 steam: 433670 -'Professional Farmer: American Dream': +"Professional Farmer: American Dream": pageId: 74113 steam: 663250 Professional Lumberjack 2015: @@ -126191,48 +122795,48 @@ Professor Lupo and His Horrible Pets: Professor Madhouse: pageId: 93146 steam: 849420 -'Professor Nasty Time: The Stupidly Unfair Test Simulator 2016': +"Professor Nasty Time: The Stupidly Unfair Test Simulator 2016": pageId: 52165 steam: 545230 -'Professor Watts Memory Match: Cats': +"Professor Watts Memory Match: Cats": pageId: 112608 steam: 936800 -'Professor Watts Memory Match: Cute Animals': +"Professor Watts Memory Match: Cute Animals": pageId: 104729 steam: 910200 -'Professor Watts Memory Match: Expressions': +"Professor Watts Memory Match: Expressions": pageId: 110756 steam: 932670 -'Professor Watts Memory Match: Fresh Fruit': +"Professor Watts Memory Match: Fresh Fruit": pageId: 104825 steam: 910250 -'Professor Watts Memory Match: Puppies': +"Professor Watts Memory Match: Puppies": pageId: 112612 steam: 936810 -'Professor Watts Memory Match: Shapes and Colors': +"Professor Watts Memory Match: Shapes and Colors": pageId: 65680 steam: 679530 -'Professor Watts Memory Match: Yummy Cupcakes': +"Professor Watts Memory Match: Yummy Cupcakes": pageId: 104879 steam: 910220 -'Professor Watts Word Search: Into the Ocean': +"Professor Watts Word Search: Into the Ocean": pageId: 64904 renamedFrom: - - 'Professor Watts Word Search: Into The Ocean' + - "Professor Watts Word Search: Into The Ocean" steam: 658430 -'Professor Watts Word Search: Pirates Life': +"Professor Watts Word Search: Pirates Life": pageId: 99380 steam: 884390 -'Professor Watts Word Search: Space Voyage': +"Professor Watts Word Search: Space Voyage": pageId: 98708 steam: 881610 -'Professor Watts Word Search: Yummy Foods': +"Professor Watts Word Search: Yummy Foods": pageId: 99236 steam: 884440 Professor Why Chemistry 1: pageId: 46074 steam: 372950 -'Professor Why: The Quantum Eye': +"Professor Why: The Quantum Eye": pageId: 45451 steam: 369460 Proficient Paddles: @@ -126267,10 +122871,10 @@ Project 0: Project 59: pageId: 103277 steam: 888540 -'Project 5: Sightseer': +"Project 5: Sightseer": pageId: 77063 steam: 655780 -'Project AETHER: First Contact': +"Project AETHER: First Contact": pageId: 122836 steam: 940140 Project Absentia: @@ -126288,7 +122892,7 @@ Project Almighty: Project Alpha 002: pageId: 52275 steam: 542270 -'Project Amalthea: Battlegrounds': +"Project Amalthea: Battlegrounds": pageId: 79440 renamedFrom: - Project Amalthea @@ -126315,8 +122919,8 @@ Project CARS: pageId: 14317 steam: 234630 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\Project CARS\*.xml}}' - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\234630\local\}}' + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\Project CARS\\*.xml}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\234630\\local\\}}" Project CARS - Pagani Edition: pageId: 52536 steam: 429180 @@ -126326,13 +122930,13 @@ Project CARS 2: steamSide: - 737770 templates: - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\Project Cars 2\savegame\{{P|uid}}\project cars 2\profiles\}}' + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\Project Cars 2\\savegame\\{{P|uid}}\\project cars 2\\profiles\\}}" Project CARS 3: pageId: 160830 steam: 958400 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Slightly Mad Studios\Project CARS 3\GraphicsConfigDX11.xml}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\Slightly Mad Studios\Project CARS 3\savegame}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\Slightly Mad Studios\\Project CARS 3\\GraphicsConfigDX11.xml}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Slightly Mad Studios\\Project CARS 3\\savegame}}" Project Cabin: pageId: 76582 steam: 747990 @@ -126340,8 +122944,8 @@ Project Cappuccino: pageId: 150596 steam: 1117380 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\Tentakero\Project Cappuccino}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Tentakero\Project Cappuccino}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Tentakero\\Project Cappuccino}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Tentakero\\Project Cappuccino}}" Project Centauri: pageId: 130040 steam: 1019030 @@ -126362,11 +122966,11 @@ Project Downfall: pageId: 126116 steam: 992730 templates: - - '{{Game data/saves|Windows|{{P|steam}}\userdata\{{P|uid}}\992730\remote\data\save}}' + - "{{Game data/saves|Windows|{{P|steam}}\\userdata\\{{P|uid}}\\992730\\remote\\data\\save}}" Project Druid - 2D Labyrinth Explorer-: pageId: 47081 steam: 388160 -'Project Eagle: A 3D Interactive Mars Base': +"Project Eagle: A 3D Interactive Mars Base": pageId: 123683 steam: 224000 Project Earth: @@ -126376,8 +122980,8 @@ Project Eden: gog: 1207659235 pageId: 7894 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Core Design\Project Eden\1.0}}' - - '{{Game data/saves|Windows|{{p|game}}\SAVED GAMES\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Core Design\\Project Eden\\1.0}}" + - "{{Game data/saves|Windows|{{p|game}}\\SAVED GAMES\\}}" Project Explore: pageId: 48423 steam: 357650 @@ -126400,12 +123004,12 @@ Project Freedom: pageId: 21245 steam: 34810 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\City Interactive\Project Freedom}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Project Freedom savegames\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\City Interactive\\Project Freedom}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Project Freedom savegames\\}}" Project G: pageId: 43055 steam: 465670 -'Project GR-5LYR: Galactic Relocation': +"Project GR-5LYR: Galactic Relocation": pageId: 108148 steam: 918480 Project Gemini: @@ -126446,21 +123050,19 @@ Project Highrise: pageId: 36439 steam: 423580 templates: - - >- - {{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\SomaSim\Project - Highrise\prefs\|{{p|hkcu}}\Software\SomaSim\Project Highrise}} - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Preferences/unity.SomaSim.Project Highrise.plist}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/SomaSim/Project Highrise/prefs/}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\SomaSim\Project Highrise\saves\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/unity.SomaSim.Project Highrise/saves/}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/SomaSim/Project Highrise/saves/}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\SomaSim\\Project Highrise\\prefs\\|{{p|hkcu}}\\Software\\SomaSim\\Project Highrise}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Preferences/unity.SomaSim.Project Highrise.plist}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/SomaSim/Project Highrise/prefs/}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\SomaSim\\Project Highrise\\saves\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/unity.SomaSim.Project Highrise/saves/}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/SomaSim/Project Highrise/saves/}}" Project Hospital: gog: 1660194629 gogSide: - - 2078914180 + - 1269519984 - 1553503979 - 1617011795 - - 1269519984 + - 2078914180 pageId: 96509 steam: 868360 steamSide: @@ -126469,16 +123071,16 @@ Project Hospital: - 1368210 - 1423900 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Oxymoron Games\Project Hospital\}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Oxymoron Games\Project Hospital\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Oxymoron Games\\Project Hospital\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Oxymoron Games\\Project Hospital\\}}" Project Hovercraft: pageId: 36858 steam: 497490 -'Project I.G.I.: I''m Going In': +"Project I.G.I.: I'm Going In": pageId: 131247 templates: - - '{{Game data/config|Windows|{{p|game}}\pc\config.qvm}}' - - '{{Game data/saves|Windows|{{p|game}}\pc\config.qvm}}' + - "{{Game data/config|Windows|{{p|game}}\\pc\\config.qvm}}" + - "{{Game data/saves|Windows|{{p|game}}\\pc\\config.qvm}}" Project IO: pageId: 157185 steam: 1132630 @@ -126503,7 +123105,7 @@ Project Lucie: Project MALLOW: pageId: 63833 steam: 654010 -'Project MIKHAIL: A Muv-Luv War Story': +"Project MIKHAIL: A Muv-Luv War Story": pageId: 173976 steam: 1557480 Project Maze: @@ -126518,7 +123120,7 @@ Project Myriad: Project Night: pageId: 60433 steam: 333860 -'Project Nightmares Case 36: Henrietta Kedward': +"Project Nightmares Case 36: Henrietta Kedward": pageId: 96089 steam: 812070 Project Nimbus: @@ -126527,7 +123129,7 @@ Project Nimbus: Project Nomads: pageId: 160544 templates: - - '{{Game data/saves|Windows|{{p|game}}\Run\save\}}' + - "{{Game data/saves|Windows|{{p|game}}\\Run\\save\\}}" Project ONe プロジェクト・ワン ~ハロルドはつらいよ~: pageId: 136537 steam: 1080090 @@ -126543,8 +123145,8 @@ Project OutFox: steamSide: - 2205440 templates: - - '{{Game data/config|Windows|\Save (in portable mode)}}' - - '{{Game data/saves|Windows|\Save (in portable mode)}}' + - "{{Game data/config|Windows|\\Save (in portable mode)}}" + - "{{Game data/saves|Windows|\\Save (in portable mode)}}" Project Pastorate: gog: 1386077591 pageId: 93176 @@ -126573,7 +123175,7 @@ Project RIP: Project RPG: pageId: 43225 steam: 455710 -'Project RTD : Random Tower Defense': +"Project RTD : Random Tower Defense": pageId: 156772 steam: 1207850 Project Rampage VR: @@ -126583,8 +123185,8 @@ Project Remedium: pageId: 39219 steam: 475090 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\NanoPlus\Saved\Config\WindowsNoEditor}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\NanoPlus\Saved\SaveGames}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\NanoPlus\\Saved\\Config\\WindowsNoEditor}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\NanoPlus\\Saved\\SaveGames}}" Project Reset: pageId: 109758 steam: 914510 @@ -126592,8 +123194,8 @@ Project Rhombus: pageId: 74185 steam: 735570 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Project_Rhombus\settings.sav}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Project_Rhombus\save.sav}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Project_Rhombus\\settings.sav}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Project_Rhombus\\save.sav}}" Project Root: pageId: 50328 steam: 284970 @@ -126609,23 +123211,23 @@ Project Skylab: Project Skylab 2: pageId: 113834 steam: 927860 -'Project Skylab 3: A New Frontier': +"Project Skylab 3: A New Frontier": pageId: 132353 steam: 1050080 Project Snowblind: pageId: 970 steam: 7010 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Crystal Dynamics\Project: SnowBlind\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Project Snowblind\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Crystal Dynamics\\Project: SnowBlind\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Project Snowblind\\}}" Project SolarBot: pageId: 144721 steam: 1144690 Project Spark: pageId: 181612 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Packages\Microsoft.Dakota_8wekyb3d8bbwe}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Packages\Microsoft.Dakota_8wekyb3d8bbwe}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Packages\\Microsoft.Dakota_8wekyb3d8bbwe}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Packages\\Microsoft.Dakota_8wekyb3d8bbwe}}" Project Starship: pageId: 34719 steam: 454890 @@ -126654,18 +123256,18 @@ Project Torque: pageId: 142219 steam: 1112400 templates: - - '{{Game data/config|Windows|{{P|game}}\save\controls\|{{P|game}}\save\game\}}' + - "{{Game data/config|Windows|{{P|game}}\\save\\controls\\|{{P|game}}\\save\\game\\}}" Project VR Wild Hunt: pageId: 140838 steam: 872630 Project Velocity: pageId: 82667 steam: 776440 -'Project Vostok: Episode 1': +"Project Vostok: Episode 1": pageId: 179712 steam: 1783050 templates: - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\1783050}}' + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\1783050}}" Project W.A.K.E.: pageId: 58523 steam: 534300 @@ -126676,11 +123278,9 @@ Project Warlock: steamSide: - 989960 templates: - - >- - {{Game data/config|Windows|{{p|hkcu}}\Software\Buckshot Software\Project - Warlock\|{{p|userprofile}}\AppData\LocalLow\Buckshot Software\Project Warlock\KeyBindings.xml}} - - '{{Game data/saves|GOG.com|{{p|userprofile}}\AppData\LocalLow\Buckshot Software\Project Warlock\GOG\}}' - - '{{Game data/saves|Steam|{{p|userprofile}}\AppData\LocalLow\Buckshot Software\Project Warlock\Steam\{{P|uid}}\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Buckshot Software\\Project Warlock\\|{{p|userprofile}}\\AppData\\LocalLow\\Buckshot Software\\Project Warlock\\KeyBindings.xml}}" + - "{{Game data/saves|GOG.com|{{p|userprofile}}\\AppData\\LocalLow\\Buckshot Software\\Project Warlock\\GOG\\}}" + - "{{Game data/saves|Steam|{{p|userprofile}}\\AppData\\LocalLow\\Buckshot Software\\Project Warlock\\Steam\\{{P|uid}}\\}}" Project Warlock II: gog: 1714193985 pageId: 169290 @@ -126693,8 +123293,8 @@ Project Wingman: pageId: 137151 steam: 895870 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\ProjectWingman\Saved\Config\WindowsNoEditor}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\ProjectWingman\Saved\SaveGames}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\ProjectWingman\\Saved\\Config\\WindowsNoEditor}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\ProjectWingman\\Saved\\SaveGames}}" Project Winter: pageId: 122592 steam: 774861 @@ -126704,10 +123304,10 @@ Project Witchstone: Project Wunderwaffe: pageId: 180344 renamedFrom: - - 'Project Wunderwaffe: Prologue' + - "Project Wunderwaffe: Prologue" steam: 1477700 templates: - - '{{Game data/saves|Windows|{{p|game}}\SaveGame\}}' + - "{{Game data/saves|Windows|{{p|game}}\\SaveGame\\}}" Project X: pageId: 72507 steam: 662380 @@ -126728,22 +123328,22 @@ Project Zomboid: pageId: 2543 steam: 108600 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\Zomboid\}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/Zomboid/}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\Zomboid\Saves}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/Zomboid/Saves/}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\Zomboid\\}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/Zomboid/}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Zomboid\\Saves}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/Zomboid/Saves/}}" Project of the Developer: pageId: 61840 steam: 601340 -'ProjectM: Daydream': +"ProjectM: Daydream": pageId: 69575 steam: 646310 -'ProjectM: Dream': +"ProjectM: Dream": pageId: 69577 steam: 637960 Projectile Guardian: pageId: 188288 -'Projection: First Light': +"Projection: First Light": pageId: 73310 steam: 726490 Projector Face: @@ -126768,7 +123368,7 @@ Prominence Poker: pageId: 43001 steam: 384180 templates: - - '{{Game data/saves|Windows|{{p|localappdata}}\Prominence\Saved\SaveGames\progress.sav}}' + - "{{Game data/saves|Windows|{{p|localappdata}}\\Prominence\\Saved\\SaveGames\\progress.sav}}" Prompt: pageId: 47383 steam: 366590 @@ -126782,18 +123382,18 @@ Propaganda Llama: Property: pageId: 80927 steam: 778930 -'Prophecy I: The Fall of Trinadon': +"Prophecy I: The Fall of Trinadon": pageId: 75895 templates: - - '{{Game data/saves|DOS|{{p|game}}\SAVEGAME.DTA}}' -'Prophecy I: The Viking Child': + - "{{Game data/saves|DOS|{{p|game}}\\SAVEGAME.DTA}}" +"Prophecy I: The Viking Child": pageId: 74845 steam: 719290 Prophecy of the Shadow: pageId: 75905 templates: - - '{{Game data/config|DOS|{{p|game}}\CAT.CFG}}' - - '{{Game data/saves|DOS|{{p|game}}\SAVE\}}' + - "{{Game data/config|DOS|{{p|game}}\\CAT.CFG}}" + - "{{Game data/saves|DOS|{{p|game}}\\SAVE\\}}" Prophour23: pageId: 49472 steam: 317610 @@ -126840,11 +123440,11 @@ Proteus: pageId: 4696 steam: 219680 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\Proteus\settings.txt}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Proteus/}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/Proteus/}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Proteus/}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/Proteus/}}' + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\Proteus\\settings.txt}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Proteus/}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/Proteus/}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Proteus/}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/Proteus/}}" Proto Raider: pageId: 46671 steam: 386050 @@ -126903,20 +123503,20 @@ Prototype: pageId: 3861 steam: 10150 templates: - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Prototype\}}' + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Prototype\\}}" Prototype 2: pageId: 3245 steam: 115320 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Activision\Prototype 2\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Activision\Prototype 2\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Activision\\Prototype 2\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Activision\\Prototype 2\\}}" Prototype Mansion - Used No Cover: pageId: 99942 steam: 868570 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Jupiter Lighthouse Studio\Devil''s Bargain Bin\}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/.config/unity3d/Jupiter Lighthouse Studio}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/.config/unity3d/Jupiter Lighthouse Studio}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Jupiter Lighthouse Studio\\Devil's Bargain Bin\\}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/.config/unity3d/Jupiter Lighthouse Studio}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/.config/unity3d/Jupiter Lighthouse Studio}}" Prototype TD: pageId: 112312 steam: 928160 @@ -126927,7 +123527,7 @@ Prototypers: pageId: 180283 steam: 2058980 templates: - - '{{Game data/saves|Windows|{{p|appdata}}\MOB_OPS\}}' + - "{{Game data/saves|Windows|{{p|appdata}}\\MOB_OPS\\}}" Proun: pageId: 183055 Proviant: @@ -126948,8 +123548,8 @@ Psebay: pageId: 64775 steam: 608660 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Psebay\}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\Psebay\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\Psebay\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Psebay\\}}" Pseudo Commando Heroic Revenge Fantasy: pageId: 127683 steam: 1001770 @@ -126957,8 +123557,8 @@ Pseudoregalia: pageId: 188979 steam: 2365810 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\pseudoregalia\Saved\Config\Windows}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\pseudoregalia\Saved\SaveGames}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\pseudoregalia\\Saved\\Config\\Windows}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\pseudoregalia\\Saved\\SaveGames}}" Psi 5 Trading Company: gog: 1719422658 pageId: 165114 @@ -126972,15 +123572,15 @@ Psi Project: Psi Project 2: pageId: 75479 steam: 725290 -'Psi Project: Legacy': +"Psi Project: Legacy": pageId: 76541 steam: 753990 -'Psi-Ops: The Mindgate Conspiracy': +"Psi-Ops: The Mindgate Conspiracy": pageId: 32686 templates: - - '{{Game data/config|Windows|{{p|game}}\GameConfig.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\save\}}' -'PsiSyn: The Game': + - "{{Game data/config|Windows|{{p|game}}\\GameConfig.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\save\\}}" +"PsiSyn: The Game": pageId: 125402 steam: 941150 Psichodelya: @@ -126995,7 +123595,7 @@ Psikodelya: Psy High: pageId: 49071 steam: 339510 -'Psy High 2: High Summer': +"Psy High 2: High Summer": pageId: 144097 steam: 1135450 PsyBurst: @@ -127041,7 +123641,7 @@ Psycho Starship Rampage: pageId: 38137 steam: 386560 templates: - - '{{Game data/config|Windows| \SteamLib\steamapps\common\PsychoStarshipRampage\saves}}' + - "{{Game data/config|Windows| \\SteamLib\\steamapps\\common\\PsychoStarshipRampage\\saves}}" Psycho Train: pageId: 138727 steam: 1096950 @@ -127051,39 +123651,39 @@ Psycho Wolf: Psycho on the loose: pageId: 55496 steam: 568860 -'Psycho-Pass: Mandatory Happiness': +"Psycho-Pass: Mandatory Happiness": pageId: 40183 steam: 522880 steamSide: - - 630790 - 587510 + - 630790 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\SOFTWARE\DefaultCompany\PSYCHO-PASS: Mandatory Happiness\}}' - - '{{Game data/saves|Windows|{{p|game}}\PSY_Data\savedata\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\DefaultCompany\\PSYCHO-PASS: Mandatory Happiness\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\PSY_Data\\savedata\\}}" Psychoballs: pageId: 87898 steam: 801840 -'Psychocat: The Answer': +"Psychocat: The Answer": pageId: 38382 steam: 431910 Psycholonials: pageId: 169363 steam: 1529810 templates: - - '{{Game data/saves|Windows|{{P|game}}\Psycholonials_Data\NaninovelData\Saves}}' + - "{{Game data/saves|Windows|{{P|game}}\\Psycholonials_Data\\NaninovelData\\Saves}}" Psychonauts: gog: 1207658807 pageId: 138 steam: 3830 templates: - - '{{Game data/config|Windows|{{P|game}}\}}' - - '{{Game data/config|Microsoft Store|{{P|localappdata}}\Psychonauts\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Psychonauts/}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/Psychonauts/}}' - - '{{Game data/saves|Windows|{{p|game}}\Profiles\}}' - - '{{Game data/saves|Microsoft Store|{{P|localappdata}}\Psychonauts\Profiles\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Psychonauts/Profiles/}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/Psychonauts/Profiles/}}' + - "{{Game data/config|Windows|{{P|game}}\\}}" + - "{{Game data/config|Microsoft Store|{{P|localappdata}}\\Psychonauts\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Psychonauts/}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/Psychonauts/}}" + - "{{Game data/saves|Windows|{{p|game}}\\Profiles\\}}" + - "{{Game data/saves|Microsoft Store|{{P|localappdata}}\\Psychonauts\\Profiles\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Psychonauts/Profiles/}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/Psychonauts/Profiles/}}" Psychonauts 2: gog: 1508046796 gogSide: @@ -127091,28 +123691,18 @@ Psychonauts 2: pageId: 57588 steam: 607080 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Psychonauts2\Saved\Config\WindowsNoEditor\}}' - - >- - {{Game data/config|Microsoft - Store|{{P|localappdata}}\Packages\Microsoft.Psychonauts2_8wekyb3d8bbwe\LocalCache\Local\Psychonauts2\Saved\Config\WinGDK\}} - - '{{Game data/saves|Windows|{{P|localappdata}}\Psychonauts2\Saved\SaveGames\}}' - - >- - {{Game data/saves|Microsoft - Store|{{P|localappdata}}\Packages\Microsoft.Psychonauts2_8wekyb3d8bbwe\SystemAppData\wgs\}} - - >- - {{Game data/saves|OS X|{{P|osxhome}}/Library/Containers/com.doublefine.psychonauts2/Data/Library/Application - Support/Epic/Psychonauts2/Saved/}} - - '{{Game data/saves|Linux|{{P|linuxhome}}/.config/Epic/Psychonauts2/}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\Psychonauts2\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/config|Microsoft Store|{{P|localappdata}}\\Packages\\Microsoft.Psychonauts2_8wekyb3d8bbwe\\LocalCache\\Local\\Psychonauts2\\Saved\\Config\\WinGDK\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Psychonauts2\\Saved\\SaveGames\\}}" + - "{{Game data/saves|Microsoft Store|{{P|localappdata}}\\Packages\\Microsoft.Psychonauts2_8wekyb3d8bbwe\\SystemAppData\\wgs\\}}" + - "{{Game data/saves|OS X|{{P|osxhome}}/Library/Containers/com.doublefine.psychonauts2/Data/Library/Application Support/Epic/Psychonauts2/Saved/}}" + - "{{Game data/saves|Linux|{{P|linuxhome}}/.config/Epic/Psychonauts2/}}" Psychonauts in the Rhombus of Ruin: pageId: 92518 steam: 788690 templates: - - >- - {{Game - data/config|Windows|{{p|appdata}}\PsychonautsInTheRhombusOfRuin\Saved\SaveGames\PsychonautsInTheRhombusOfRuinSettings0.sav}} - - >- - {{Game - data/saves|Windows|{{p|appdata}}\PsychonautsInTheRhombusOfRuin\Saved\SaveGames\PsychonautsInTheRhombusOfRuinSave0.sav}} + - "{{Game data/config|Windows|{{p|appdata}}\\PsychonautsInTheRhombusOfRuin\\Saved\\SaveGames\\PsychonautsInTheRhombusOfRuinSettings0.sav}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\PsychonautsInTheRhombusOfRuin\\Saved\\SaveGames\\PsychonautsInTheRhombusOfRuinSave0.sav}}" Psychopathics: pageId: 82686 steam: 799530 @@ -127122,8 +123712,8 @@ Psychose: Psychotoxic: pageId: 80741 templates: - - '{{Game data/config|Windows|{{p|game}}\bin\*.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\bin\SaveGame\}}' + - "{{Game data/config|Windows|{{p|game}}\\bin\\*.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\bin\\SaveGame\\}}" PsycoCat: pageId: 136728 steam: 1088960 @@ -127148,7 +123738,7 @@ Pub Simulator: Public Defense Corp: pageId: 137086 steam: 1078320 -'Public Enemy: Revolution Simulator': +"Public Enemy: Revolution Simulator": pageId: 143969 steam: 1125870 Publisher Tycoon: @@ -127159,10 +123749,10 @@ Puddle: pageId: 4840 steam: 222140 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Puddle\}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/Puddle/}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Puddle\}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/Puddle/}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Puddle\\}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/Puddle/}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Puddle\\}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/Puddle/}}" Puddle Knights: pageId: 154192 steam: 1180540 @@ -127178,7 +123768,7 @@ Puke Simulator: PukePuke Demon: pageId: 96651 steam: 871480 -'Pulang: Insanity': +"Pulang: Insanity": pageId: 142041 steam: 1069210 Pull Ball: @@ -127202,7 +123792,7 @@ PulseCharge: Pulsen: pageId: 47127 steam: 340960 -'Pulses: Crystal Journeys': +"Pulses: Crystal Journeys": pageId: 68855 steam: 675830 Pulstar: @@ -127212,7 +123802,7 @@ Pulstar (2015): gog: 1281575146 pageId: 131800 templates: - - '{{Game data/config|Windows|{{P|appdata}}\SNK\pulstar\OPTIONS}}' + - "{{Game data/config|Windows|{{P|appdata}}\\SNK\\pulstar\\OPTIONS}}" Pulstario: pageId: 153872 steam: 1188000 @@ -127223,7 +123813,7 @@ Pummel Party: pageId: 100570 steam: 880940 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Rebuilt Games\Pummel Party}}' + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Rebuilt Games\\Pummel Party}}" Pump-Action Captain: pageId: 46793 steam: 378280 @@ -127231,7 +123821,7 @@ Pumped BMX +: pageId: 38534 steam: 392070 templates: - - '{{Game data/config|Windows|{{P|userprofile}}\AppData\LocalLow\Yeah Us_\Pumped BMX _\PlayerPrefs.txt}}' + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Yeah Us_\\Pumped BMX _\\PlayerPrefs.txt}}" Pumped BMX Pro: pageId: 127363 steam: 966720 @@ -127252,8 +123842,8 @@ Pumpkin Jack: pageId: 157267 steam: 1186640 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\PumpkinJack\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\PumpkinJack\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\PumpkinJack\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\PumpkinJack\\Saved\\SaveGames\\}}" Pumpkin Run: pageId: 122135 steam: 979770 @@ -127276,18 +123866,14 @@ Punch Club: steamSide: - 431490 templates: - - >- - {{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\Lazy Bear Games\Punch - Club\settings.txt|{{P|hkcu}}\Software\Lazy Bear Games\Punch Club\}} - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Lazy Bear Games\Punch Club\}}' -'Punch Club 2: Fast Forward': + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Lazy Bear Games\\Punch Club\\settings.txt|{{P|hkcu}}\\Software\\Lazy Bear Games\\Punch Club\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Lazy Bear Games\\Punch Club\\}}" +"Punch Club 2: Fast Forward": gog: 1168325242 pageId: 185380 steam: 1161590 templates: - - >- - {{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\Lazy Bear Games/Punch Club 2_ Fast - Forward\*.dat|{{p|userprofile\appdata\locallow}}\Lazy Bear Games/Punch Club 2_ Fast Forward\*.info}} + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\Lazy Bear Games/Punch Club 2_ Fast Forward\\*.dat|{{p|userprofile\\appdata\\locallow}}\\Lazy Bear Games/Punch Club 2_ Fast Forward\\*.info}}" Punch Line: pageId: 127720 steam: 766680 @@ -127300,10 +123886,10 @@ Punch Planet: Punchline!!: pageId: 150878 steam: 1147390 -'Punished Talents: Seven Muses': +"Punished Talents: Seven Muses": pageId: 59832 renamedFrom: - - 'Punished Talents: Seven Muses Collector''s Edition' + - "Punished Talents: Seven Muses Collector's Edition" steam: 613350 Punishment Darkness Online: pageId: 156676 @@ -127327,7 +123913,7 @@ Puppet Fever: Puppet Kings: pageId: 77086 steam: 756020 -'Puppet Master: The Game': +"Puppet Master: The Game": pageId: 185596 steam: 1757610 Puppet Story: @@ -127335,22 +123921,22 @@ Puppet Story: renamedFrom: - Beat Diablo ( 节奏破坏神 ) steam: 1155260 -'PuppetShow: Destiny Undone': +"PuppetShow: Destiny Undone": pageId: 98906 steam: 887930 -'PuppetShow: Lightning Strikes': +"PuppetShow: Lightning Strikes": pageId: 127728 steam: 1030160 -'PuppetShow: Mystery of Joyville': +"PuppetShow: Mystery of Joyville": pageId: 51594 steam: 533060 -'PuppetShow: Porcelain Smile': +"PuppetShow: Porcelain Smile": pageId: 129841 steam: 1038380 -'PuppetShow: Return to Joyville': +"PuppetShow: Return to Joyville": pageId: 81948 steam: 796070 -'PuppetShow: Souls of the Innocent': +"PuppetShow: Souls of the Innocent": pageId: 62040 steam: 631260 PuppetsVR: @@ -127362,13 +123948,13 @@ Puppies vs Undead: Puppy Chef Academy: pageId: 110070 steam: 921520 -'Puppy Dog: Jigsaw Puzzles': +"Puppy Dog: Jigsaw Puzzles": pageId: 42267 steam: 500590 Puppy Doge VR: pageId: 62282 steam: 635190 -'Puppy Luv: A New Breed': +"Puppy Luv: A New Breed": pageId: 89181 PuppyStory: pageId: 59804 @@ -127376,14 +123962,14 @@ PuppyStory: Purble Place: pageId: 13130 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Microsoft Games\Purble Place}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\Saved Games\Microsoft Games\Purble Place}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Microsoft Games\\Purble Place}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Saved Games\\Microsoft Games\\Purble Place}}" Pure: pageId: 30638 steam: 322600 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Disney Interactive Studios\Pure\}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Disney Interactive Studios\Pure\}}' + - "{{Game data/config|Windows|{{p|appdata}}\\Disney Interactive Studios\\Pure\\}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Disney Interactive Studios\\Pure\\}}" Pure Chess Grandmaster Edition: pageId: 38847 steam: 300630 @@ -127391,17 +123977,15 @@ Pure Farming 2018: pageId: 65363 steam: 534370 templates: - - >- - {{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\Techland\Pure Farming 2018\Game - Save\49037793\AdditionalInfoPF.psav}} - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Techland\Pure Farming 2018\Game Save\49037793}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Techland\\Pure Farming 2018\\Game Save\\49037793\\AdditionalInfoPF.psav}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Techland\\Pure Farming 2018\\Game Save\\49037793}}" Pure Football 2018: pageId: 79776 steam: 774901 Pure Heart: pageId: 53214 steam: 552190 -Pure Hold'em: +"Pure Hold'em": pageId: 46803 steam: 322950 Pure Mind: @@ -127413,7 +123997,7 @@ Pure Pinball 2.0 Redux: gog: 1207658710 pageId: 131617 templates: - - '{{Game data/config|Windows|{{p|game}}\Config\settings.cfg}}' + - "{{Game data/config|Windows|{{p|game}}\\Config\\settings.cfg}}" Pure Pool: pageId: 49827 steam: 300610 @@ -127430,14 +124014,14 @@ Purgatory: pageId: 34980 steam: 473470 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\SOFTWARE\DefaultCompany\Purgatory\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\DefaultCompany\\Purgatory\\}}" Purgatory Fell: pageId: 89478 steam: 786390 Purgatory II: pageId: 62739 steam: 576120 -'Purgatory: War of the Damned': +"Purgatory: War of the Damned": pageId: 48735 steam: 284910 Purino Party: @@ -127469,16 +124053,16 @@ Purrfect Date: pageId: 67958 steam: 520600 templates: - - '{{Game data/config|Windows|{{P|userprofile}}\AppData\LocalLow\The Bae Team\Purrfect Date\Purrfect Settings.cat}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\The Bae Team\Purrfect Date\}}' + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\The Bae Team\\Purrfect Date\\Purrfect Settings.cat}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\The Bae Team\\Purrfect Date\\}}" Purrfect Spirits: pageId: 181195 Purrgatory: pageId: 172030 steam: 1713610 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Godot\app_userdata\purrgatory\options.save}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Godot\app_userdata\purrgatory\}}' + - "{{Game data/config|Windows|{{p|appdata}}\\Godot\\app_userdata\\purrgatory\\options.save}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Godot\\app_userdata\\purrgatory\\}}" Pursuer: pageId: 129621 steam: 1013660 @@ -127492,8 +124076,8 @@ Push: pageId: 69508 steam: 676430 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Rainbow Train\PUSH\}}' - - '{{Game data/saves|Windows|{{p|hkcu}}\Software\Rainbow Train\PUSH\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Rainbow Train\\PUSH\\}}" + - "{{Game data/saves|Windows|{{p|hkcu}}\\Software\\Rainbow Train\\PUSH\\}}" Push Me Pull You: pageId: 42345 steam: 362380 @@ -127513,8 +124097,8 @@ Pushcat: pageId: 37425 steam: 308440 templates: - - '{{Game data/config|Windows|{{p|Steam}}\userdata\{{p|uid}}\308440\remote\prefs.txt}}' - - '{{Game data/saves|Windows|{{p|Steam}}\userdata\{{p|uid}}\308440\remote\}}' + - "{{Game data/config|Windows|{{p|Steam}}\\userdata\\{{p|uid}}\\308440\\remote\\prefs.txt}}" + - "{{Game data/saves|Windows|{{p|Steam}}\\userdata\\{{p|uid}}\\308440\\remote\\}}" Pushing Through...: pageId: 110740 steam: 932240 @@ -127523,7 +124107,7 @@ Pushover: pageId: 16936 steam: 814650 templates: - - '{{Game data/config|DOS|{{p|game}}\}}' + - "{{Game data/config|DOS|{{p|game}}\\}}" Pushtastic: pageId: 136582 steam: 1086300 @@ -127531,16 +124115,16 @@ Pushy and Pully in Blockland: pageId: 142244 steam: 1107820 templates: - - '{{Game data/saves|Steam|{{p|userprofile}}\AppData\LocalLow\Resistance Studio\Pushy and Pully in Blockland\data\}}' -'Puss in Boots: Fear Not Hooman': + - "{{Game data/saves|Steam|{{p|userprofile}}\\AppData\\LocalLow\\Resistance Studio\\Pushy and Pully in Blockland\\data\\}}" +"Puss in Boots: Fear Not Hooman": pageId: 135103 steam: 1034820 Puss!: pageId: 79953 steam: 719750 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\teamCOIL\PUSS!\}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\teamCOIL\PUSS!\LocalSaves.json}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\teamCOIL\\PUSS!\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\teamCOIL\\PUSS!\\LocalSaves.json}}" Pussy 2: pageId: 145953 renamedFrom: @@ -127579,10 +124163,10 @@ Putin Takes Taxes: Putin VS ISIS: pageId: 90528 steam: 805820 -'Putin, Boobs and Trump': +"Putin, Boobs and Trump": pageId: 91985 steam: 839880 -'Putin, Trump and Xin Jinping': +"Putin, Trump and Xin Jinping": pageId: 108000 steam: 921400 Putinization: @@ -127594,10 +124178,10 @@ Putinoids VS Navalnyats: Putrefaction: pageId: 46941 steam: 378270 -'Putrefaction 2: Rumble in the Hometown': +"Putrefaction 2: Rumble in the Hometown": pageId: 89290 steam: 715690 -'Putrefaction 2: Void Walker': +"Putrefaction 2: Void Walker": pageId: 55065 steam: 567060 Putt-Putt Enters the Race: @@ -127613,7 +124197,7 @@ Putt-Putt Joins the Parade: pageId: 16894 steam: 283920 templates: - - '{{Game data/saves|Steam|{{p|game}}\Putt-Putt 1\Saves}}' + - "{{Game data/saves|Steam|{{p|game}}\\Putt-Putt 1\\Saves}}" Putt-Putt Saves the Zoo: pageId: 37291 steam: 294660 @@ -127622,26 +124206,26 @@ Putt-Putt Travels through Time: renamedFrom: - Putt-Putt Travels Through Time steam: 294670 -Putt-Putt and Fatty Bear's Activity Pack: +"Putt-Putt and Fatty Bear's Activity Pack": pageId: 50264 steam: 294720 -Putt-Putt and Pep's Balloon-o-Rama: +"Putt-Putt and Pep's Balloon-o-Rama": pageId: 50426 steam: 284000 -Putt-Putt and Pep's Dog on a Stick: +"Putt-Putt and Pep's Dog on a Stick": pageId: 50334 steam: 294710 -Putt-Putt's Fun Pack: +"Putt-Putt's Fun Pack": pageId: 147393 -Putt-Putt's One-Stop Fun Shop: +"Putt-Putt's One-Stop Fun Shop": pageId: 147395 -'Putt-Putt: Pep''s Birthday Surprise': +"Putt-Putt: Pep's Birthday Surprise": pageId: 50109 steam: 294700 templates: - - '{{Game data/config|Windows|{{P|game}}\SaveGames\game_options.dat}}' - - '{{Game data/saves|Windows|{{P|game}}\SaveGames\PuttPuttPBS_save_*.*}}' -Puttin' Around: + - "{{Game data/config|Windows|{{P|game}}\\SaveGames\\game_options.dat}}" + - "{{Game data/saves|Windows|{{P|game}}\\SaveGames\\PuttPuttPBS_save_*.*}}" +"Puttin' Around": pageId: 125869 steam: 1002650 Putty Pals: @@ -127658,36 +124242,36 @@ Puyo Puyo Champions: pageId: 134021 steam: 971620 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\PuyoPuyoChampions\config.ini}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\PuyoPuyoChampions}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\PuyoPuyoChampions\\config.ini}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\PuyoPuyoChampions}}" Puyo Puyo Fever: pageId: 152253 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Sega\PuyoF\}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Sega\PuyoF\}}' + - "{{Game data/config|Windows|{{p|appdata}}\\Sega\\PuyoF\\}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Sega\\PuyoF\\}}" Puyo Puyo Sun: pageId: 129088 templates: - - '{{Game data/saves|Windows|{{p|game}}/savedata/puyo3.dat}}' + - "{{Game data/saves|Windows|{{p|game}}/savedata/puyo3.dat}}" Puyo Puyo Tetris: pageId: 82456 steam: 546050 templates: - - '{{Game data/config|Windows|{{p|game}}\config.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\data_steam\data.bin}}' + - "{{Game data/config|Windows|{{p|game}}\\config.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\data_steam\\data.bin}}" Puyo Puyo Tetris 2: pageId: 163062 steam: 1259790 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\PuyoPuyoTetris2\{{p|uid}}\config.ini}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\PuyoPuyoTetris2\{{p|uid}}}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\PuyoPuyoTetris2\\{{p|uid}}\\config.ini}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\PuyoPuyoTetris2\\{{p|uid}}}}" Puzlogic: pageId: 103181 steam: 865220 PuzzGun: pageId: 93606 steam: 850040 -'Puzzle 101: Edge of Galaxy 宇宙边际': +"Puzzle 101: Edge of Galaxy 宇宙边际": pageId: 129883 steam: 1025000 Puzzle 3D: @@ -127698,8 +124282,8 @@ Puzzle Agent 2: pageId: 8027 steam: 94590 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Telltale Games\Puzzle Agent 2\prefs.prop}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Telltale Games\Puzzle Agent 2\*.save}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Telltale Games\\Puzzle Agent 2\\prefs.prop}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Telltale Games\\Puzzle Agent 2\\*.save}}" Puzzle Ball: pageId: 46190 steam: 402170 @@ -127718,8 +124302,8 @@ Puzzle Blocks (Lemon Jam Studios): Puzzle Bobble: pageId: 123268 templates: - - '{{Game data/config|Windows|{{p|hklm}}\SOFTWARE\{{p|wow64}}\Gamebank\Puzzle Bobble}}' - - '{{Game data/saves|Windows|{{p|hklm}}\SOFTWARE\{{p|wow64}}\Gamebank\Puzzle Bobble}}' + - "{{Game data/config|Windows|{{p|hklm}}\\SOFTWARE\\{{p|wow64}}\\Gamebank\\Puzzle Bobble}}" + - "{{Game data/saves|Windows|{{p|hklm}}\\SOFTWARE\\{{p|wow64}}\\Gamebank\\Puzzle Bobble}}" Puzzle Bobble (2019): pageId: 168862 Puzzle Bobble 2: @@ -127732,12 +124316,12 @@ Puzzle Bobble 2X / Bust-A-Move 2 Arcade Edition & Puzzle Bobble 3 / Bust-A-Move Puzzle Bobble 3DX: pageId: 123105 templates: - - '{{Game data/config|Windows|{{p|game}}\CONFIG.SGS}}' - - '{{Game data/saves|Windows|{{p|game}}\UVSAVE.BIN}}' + - "{{Game data/config|Windows|{{p|game}}\\CONFIG.SGS}}" + - "{{Game data/saves|Windows|{{p|game}}\\UVSAVE.BIN}}" Puzzle Bobble 4: pageId: 123108 templates: - - '{{Game data/saves|Windows|{{p|game}}\save.dat}}' + - "{{Game data/saves|Windows|{{p|game}}\\save.dat}}" Puzzle Bots: pageId: 22360 steam: 80300 @@ -127748,8 +124332,8 @@ Puzzle Chambers: pageId: 76279 steam: 740410 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Entertainment Forge\Puzzle Chambers\}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Entertainment Forge\Puzzle Chambers\PlayerInfo.dat}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Entertainment Forge\\Puzzle Chambers\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Entertainment Forge\\Puzzle Chambers\\PlayerInfo.dat}}" Puzzle Chronicles: pageId: 41153 steam: 19020 @@ -127757,8 +124341,8 @@ Puzzle Cube: pageId: 51641 steam: 539460 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\SOFTWARE\DahlGames\Puzzle Cube}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\DahlGames\Puzzle Cube}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\SOFTWARE\\DahlGames\\Puzzle Cube}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\DahlGames\\Puzzle Cube}}" Puzzle Dating: pageId: 69246 steam: 698830 @@ -127766,15 +124350,15 @@ Puzzle Dimension: pageId: 13189 steam: 57200 templates: - - '{{Game data/config|Windows|{{p|game}}\PuzzleDimension.{{p|uid}}.config}}' - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/57200/remote/PuzzleDimension}}' + - "{{Game data/config|Windows|{{p|game}}\\PuzzleDimension.{{p|uid}}.config}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/57200/remote/PuzzleDimension}}" Puzzle Expedition: pageId: 47457 steam: 355670 Puzzle Galaxies: pageId: 38031 steam: 463710 -'Puzzle Girls: Alexa': +"Puzzle Girls: Alexa": pageId: 179175 steam: 1255830 Puzzle Guardians: @@ -127787,7 +124371,7 @@ Puzzle Kingdoms: pageId: 22833 steam: 23700 templates: - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Puzzle Kingdoms\}}' + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Puzzle Kingdoms\\}}" Puzzle Lab: pageId: 87357 steam: 795430 @@ -127797,25 +124381,25 @@ Puzzle Mania: Puzzle Master: pageId: 108160 steam: 920550 -'Puzzle Monarch: Egypt': +"Puzzle Monarch: Egypt": pageId: 112736 steam: 938820 -'Puzzle Monarch: Forests': +"Puzzle Monarch: Forests": pageId: 110816 steam: 935240 -'Puzzle Monarch: Mummy': +"Puzzle Monarch: Mummy": pageId: 110812 steam: 935180 -'Puzzle Monarch: Nile River': +"Puzzle Monarch: Nile River": pageId: 112740 steam: 938840 -'Puzzle Monarch: Super Natural': +"Puzzle Monarch: Super Natural": pageId: 108376 steam: 916860 -'Puzzle Monarch: Vampires': +"Puzzle Monarch: Vampires": pageId: 104069 steam: 911130 -'Puzzle Monarch: Zombie': +"Puzzle Monarch: Zombie": pageId: 108242 steam: 916880 Puzzle Nebula: @@ -127839,7 +124423,7 @@ Puzzle Pelago - A Drag & Drop Economy: Puzzle Pirates: pageId: 40916 steam: 99910 -'Puzzle Pirates: Dark Seas': +"Puzzle Pirates: Dark Seas": pageId: 70252 steam: 552110 Puzzle Plunder: @@ -127852,38 +124436,38 @@ Puzzle Puppers: pageId: 56560 steam: 578430 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Cardboard Keep\Puzzle Puppers\}}' + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Cardboard Keep\\Puzzle Puppers\\}}" Puzzle Quest 2: pageId: 30568 steam: 47540 templates: - - '{{Game data/saves|Windows|{{p|localappdata}}\namco\puzzle quest 2}}' -'Puzzle Quest: Challenge of the Warlords': + - "{{Game data/saves|Windows|{{p|localappdata}}\\namco\\puzzle quest 2}}" +"Puzzle Quest: Challenge of the Warlords": pageId: 5508 steam: 12500 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Infinite Interactive\Puzzle Quest\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Puzzle Quest\Saves}}' -'Puzzle Quest: Galactrix': + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Infinite Interactive\\Puzzle Quest\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Puzzle Quest\\Saves}}" +"Puzzle Quest: Galactrix": pageId: 31041 steam: 23500 templates: - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\puzzle quest galactrix\}}' + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\puzzle quest galactrix\\}}" Puzzle Sages: pageId: 44950 steam: 401210 Puzzle Showdown 4K: pageId: 62576 steam: 631220 -'Puzzle Sisters: Foer': +"Puzzle Sisters: Foer": pageId: 74295 steam: 710190 Puzzle Station: pageId: 18514 steam: 366990 templates: - - '{{Game data/config|Windows|{{p|game}}\Save\options.dat}}' - - '{{Game data/saves|Windows|{{p|game}}\Save\player.dat}}' + - "{{Game data/config|Windows|{{p|game}}\\Save\\options.dat}}" + - "{{Game data/saves|Windows|{{p|game}}\\Save\\player.dat}}" Puzzle Strike: pageId: 45186 steam: 386740 @@ -127908,19 +124492,19 @@ Puzzle for Kids: Puzzle of Santa Girl VR: pageId: 80462 steam: 751430 -'Puzzle: Cats & Dogs': +"Puzzle: Cats & Dogs": pageId: 103145 steam: 896570 -'Puzzle: Landscapes': +"Puzzle: Landscapes": pageId: 104121 steam: 909480 -'Puzzle: Ocean': +"Puzzle: Ocean": pageId: 132412 steam: 1059500 -'Puzzle: Underwater World': +"Puzzle: Underwater World": pageId: 66105 steam: 680070 -'Puzzle:Traditional Chinese Paintings': +"Puzzle:Traditional Chinese Paintings": pageId: 107676 steam: 923800 Puzzled: @@ -127937,8 +124521,8 @@ Puzzler World: pageId: 38197 steam: 33650 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Puzzler\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Puzzler\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Puzzler\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Puzzler\\}}" Puzzler World 2: pageId: 40881 steam: 200130 @@ -127957,35 +124541,35 @@ Puzzles and Board Games Mega Collection: Puzzles by Axis: pageId: 82326 steam: 786800 -'Puzzles for Smart: Cats': +"Puzzles for Smart: Cats": pageId: 96987 steam: 877780 -'Puzzles for smart: Birds': +"Puzzles for smart: Birds": pageId: 121258 steam: 962050 -'Puzzles for smart: Dogs': +"Puzzles for smart: Dogs": pageId: 110520 steam: 928140 -'Puzzles for smart: Horses': +"Puzzles for smart: Horses": pageId: 121695 steam: 970000 -'Puzzles for smart: Underwater Kingdom': +"Puzzles for smart: Underwater Kingdom": pageId: 123548 steam: 982750 PuzzlesCave: pageId: 150329 steam: 1171860 -'Puzzletime: Castle Party': +"Puzzletime: Castle Party": pageId: 150436 renamedFrom: - - 'PUZZLETIME: Castle Party' + - "PUZZLETIME: Castle Party" steam: 1143740 -'Puzzletime: Lovely Girls': +"Puzzletime: Lovely Girls": pageId: 135783 renamedFrom: - - 'PUZZLETIME: Lovely Girls' + - "PUZZLETIME: Lovely Girls" steam: 1062540 -'Puzzling Languages: German/English': +"Puzzling Languages: German/English": pageId: 129700 steam: 1036210 Puzzling Rooms VR: @@ -127994,7 +124578,7 @@ Puzzling Rooms VR: Pylon Racer: pageId: 128399 steam: 856650 -'Pylon: Rogue': +"Pylon: Rogue": pageId: 41621 steam: 386100 Pylorus - Footsteps of Greed: @@ -128003,7 +124587,7 @@ Pylorus - Footsteps of Greed: Pylow: pageId: 102535 steam: 868920 -'Pyramaze: The Game': +"Pyramaze: The Game": pageId: 69334 steam: 697970 Pyramid Defense: @@ -128023,24 +124607,24 @@ Pyre: pageId: 32589 steam: 462770 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Saved Games\Pyre\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Pyre/}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/Pyre/}}' - - '{{Game data/config|Steam|{{p|steam}}/userdata/{{P|uid}}/462770/}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Saved Games\Pyre\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Pyre/}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/Pyre/}}' - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{P|uid}}/462770/}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Saved Games\\Pyre\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Pyre/}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/Pyre/}}" + - "{{Game data/config|Steam|{{p|steam}}/userdata/{{P|uid}}/462770/}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Saved Games\\Pyre\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Pyre/}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/Pyre/}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{P|uid}}/462770/}}" Pyrite Heart: pageId: 32338 steam: 324170 templates: - - '{{Game data/config|Windows|{{P|game}}\game\saves\persistent}}' - - '{{Game data/config|OS X|{{P|game}}/game/saves/persistent}}' - - '{{Game data/config|Linux|{{P|game}}/game/saves/persistent}}' - - '{{Game data/saves|Windows|{{P|game}}\game\saves\}}' - - '{{Game data/saves|OS X|{{P|game}}/game/saves/}}' - - '{{Game data/saves|Linux|{{P|game}}/game/saves/}}' + - "{{Game data/config|Windows|{{P|game}}\\game\\saves\\persistent}}" + - "{{Game data/config|OS X|{{P|game}}/game/saves/persistent}}" + - "{{Game data/config|Linux|{{P|game}}/game/saves/persistent}}" + - "{{Game data/saves|Windows|{{P|game}}\\game\\saves\\}}" + - "{{Game data/saves|OS X|{{P|game}}/game/saves/}}" + - "{{Game data/saves|Linux|{{P|game}}/game/saves/}}" Pyro Jump: pageId: 173621 Pyro VR: @@ -128049,19 +124633,19 @@ Pyro VR: PyroMind: pageId: 124169 steam: 695570 -'PyroNinja: Fire Dodge': +"PyroNinja: Fire Dodge": pageId: 153842 steam: 1200800 Pyroblazer: pageId: 41332 steam: 21500 -'Pyrrhic Tales: Prelude to Darkness': +"Pyrrhic Tales: Prelude to Darkness": pageId: 166542 -'Pyrus: Alletiders Jul': +"Pyrus: Alletiders Jul": pageId: 126675 Pyst: pageId: 147671 -Pythagoras' Perpetual Motion Machine: +"Pythagoras' Perpetual Motion Machine": pageId: 121697 steam: 889100 Pythagoria: @@ -128070,10 +124654,10 @@ Pythagoria: Pył: pageId: 162513 templates: - - '{{Game data/config|DOS|{{p|game}}\pyl.ini}}' - - '{{Game data/config|Windows|{{p|game}}\pyl.ini}}' - - '{{Game data/saves|DOS|{{p|game}}\PLAYER\}}' - - '{{Game data/saves|Windows|{{p|game}}\PLAYER\}}' + - "{{Game data/config|DOS|{{p|game}}\\pyl.ini}}" + - "{{Game data/config|Windows|{{p|game}}\\pyl.ini}}" + - "{{Game data/saves|DOS|{{p|game}}\\PLAYER\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\PLAYER\\}}" På ekspedition i Bibelen: pageId: 80037 Q: @@ -128082,12 +124666,12 @@ Q: Q Remastered: pageId: 187761 steam: 2246110 -'Q&A: A Light-Roasted Romance': +"Q&A: A Light-Roasted Romance": pageId: 134518 steam: 1044750 Q*bert (1999): pageId: 171233 -'Q*bert: Rebooted': +"Q*bert: Rebooted": pageId: 49985 steam: 285960 Q-YO Blaster: @@ -128097,16 +124681,14 @@ Q.U.B.E.: pageId: 5022 steam: 203730 templates: - - '{{Game data/config|Windows|{{p|game}}\UDKGame\Config\}}' - - >- - {{Game - data/saves|Windows|{{P|game}}\Binaries\Win32\SaveGame.bin|{{P|game}}\Binaries\Win32\SaveGameATQ.bin|{{P|game}}\Binaries\Win32\SaveGameALTATQ.bin|{{P|game}}\Binaries\Win64\*.bin}} + - "{{Game data/config|Windows|{{p|game}}\\UDKGame\\Config\\}}" + - "{{Game data/saves|Windows|{{P|game}}\\Binaries\\Win32\\SaveGame.bin|{{P|game}}\\Binaries\\Win32\\SaveGameATQ.bin|{{P|game}}\\Binaries\\Win32\\SaveGameALTATQ.bin|{{P|game}}\\Binaries\\Win64\\*.bin}}" Q.U.B.E. 10th Anniversary: pageId: 180377 steam: 1564220 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\QUBE_Remastered\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\QUBE_Remastered\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\QUBE_Remastered\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\QUBE_Remastered\\Saved\\SaveGames\\}}" Q.U.B.E. 2: gog: 1199381642 gogSide: @@ -128115,24 +124697,22 @@ Q.U.B.E. 2: pageId: 79383 steam: 359100 steamSide: - - 822093 - - 822094 - 822090 - 822091 + - 822093 + - 822094 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\QUBE\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\QUBE\Saved\SaveGames\}}' -'Q.U.B.E.: Director''s Cut': + - "{{Game data/config|Windows|{{p|localappdata}}\\QUBE\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\QUBE\\Saved\\SaveGames\\}}" +"Q.U.B.E.: Director's Cut": gog: 1207665513 pageId: 24232 steam: 239430 templates: - - '{{Game data/config|Windows|{{p|game}}\QUBEGame\Config\}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/ToxicGames/QUBE/QUBEGame/}}' - - >- - {{Game - data/saves|Windows|{{P|game}}\Binaries\Win32\SaveGame.bin|{{P|game}}\Binaries\Win32\SaveGameATQ.bin|{{P|game}}\Binaries\Win32\SaveGameALTATQ.bin}} - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/ToxicGames/QUBE/QUBEGame/}}' + - "{{Game data/config|Windows|{{p|game}}\\QUBEGame\\Config\\}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/ToxicGames/QUBE/QUBEGame/}}" + - "{{Game data/saves|Windows|{{P|game}}\\Binaries\\Win32\\SaveGame.bin|{{P|game}}\\Binaries\\Win32\\SaveGameATQ.bin|{{P|game}}\\Binaries\\Win32\\SaveGameALTATQ.bin}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/ToxicGames/QUBE/QUBEGame/}}" Q.U.I.R.K.: pageId: 58706 steam: 577210 @@ -128149,15 +124729,15 @@ QP Shooting - Dangerous!!: pageId: 37828 steam: 316600 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Fruitbat Factory\QP Shooting - Dangerous\game.cfg}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Fruitbat Factory\QP Shooting - Dangerous\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Fruitbat Factory\\QP Shooting - Dangerous\\game.cfg}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Fruitbat Factory\\QP Shooting - Dangerous\\}}" QR Code Killer: pageId: 150818 steam: 1150290 QT: pageId: 153969 steam: 1182830 -'QUALIA 3: Multi Agent': +"QUALIA 3: Multi Agent": pageId: 50412 steam: 290440 QUICAL: @@ -128169,7 +124749,7 @@ Qajary Cat: Qanga: pageId: 152352 steam: 1648190 -'Qasir al-Wasat: International Edition': +"Qasir al-Wasat: International Edition": pageId: 44924 steam: 296030 Qb: @@ -128179,22 +124759,22 @@ QbQbQb: pageId: 38145 steam: 329320 templates: - - '{{Game data/saves|Windows|{{p|localappdata}}\qbqbqb}}' -'Qbeh-1: The Atlas Cube': + - "{{Game data/saves|Windows|{{p|localappdata}}\\qbqbqb}}" +"Qbeh-1: The Atlas Cube": pageId: 37935 steam: 252550 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\Liquid Flower\Qbeh_1\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Liquid Flower\Qbeh_1\}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Liquid Flower\\Qbeh_1\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Liquid Flower\\Qbeh_1\\}}" Qbik: pageId: 76039 steam: 618470 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\NPalacz\Qbik\*.*}}' -'Qbike: Crypto Motorcycles': + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\NPalacz\\Qbik\\*.*}}" +"Qbike: Crypto Motorcycles": pageId: 72187 steam: 713610 -'Qbike: Cyberpunk Motorcycles': +"Qbike: Cyberpunk Motorcycles": pageId: 62538 steam: 614970 Qbio: @@ -128234,15 +124814,15 @@ Qora: pageId: 49578 steam: 304460 templates: - - '{{Game data/config|Windows|{{p|game}}\Settings.xml}}' - - '{{Game data/saves|Windows|{{p|game}}\Qora_SaveData.xml}}' + - "{{Game data/config|Windows|{{p|game}}\\Settings.xml}}" + - "{{Game data/saves|Windows|{{p|game}}\\Qora_SaveData.xml}}" Qrth-phyl: pageId: 98144 steam: 451930 Qu-tros: pageId: 123693 steam: 965940 -'Quack Attack 1985: Turbo DX Edition': +"Quack Attack 1985: Turbo DX Edition": pageId: 53696 steam: 500340 Quad Hopping: @@ -128276,18 +124856,12 @@ Quadrilateral Cowboy: pageId: 23067 steam: 240440 templates: - - >- - {{Game data/config|Windows|{{P|game}}\base\DoomConfig.cfg|{{P|appdata}}\BlendoGames\Quadrilateral - Cowboy\base\DoomConfig.cfg}} - - >- - {{Game data/config|OS X|{{p|osxhome}}/Library/Application - Support/BlendoGames/QuadrilateralCowboy/base/DoomConfig.cfg}} - - '{{Game data/config|Linux|{{p|xdgdatahome}}/BlendoGames/QuadrilateralCowboy/base/DoomConfig.cfg}}' - - >- - {{Game data/saves|Windows|{{P|game}}\base\savegames\|{{P|appdata}}\BlendoGames\Quadrilateral - Cowboy\base\savegames\}} - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/BlendoGames/QuadrilateralCowboy/base/savegames/}}' - - '{{Game data/saves|Linux|{{p|xdgdatahome}}/BlendoGames/QuadrilateralCowboy/base/savegames/}}' + - "{{Game data/config|Windows|{{P|game}}\\base\\DoomConfig.cfg|{{P|appdata}}\\BlendoGames\\Quadrilateral Cowboy\\base\\DoomConfig.cfg}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/BlendoGames/QuadrilateralCowboy/base/DoomConfig.cfg}}" + - "{{Game data/config|Linux|{{p|xdgdatahome}}/BlendoGames/QuadrilateralCowboy/base/DoomConfig.cfg}}" + - "{{Game data/saves|Windows|{{P|game}}\\base\\savegames\\|{{P|appdata}}\\BlendoGames\\Quadrilateral Cowboy\\base\\savegames\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/BlendoGames/QuadrilateralCowboy/base/savegames/}}" + - "{{Game data/saves|Linux|{{p|xdgdatahome}}/BlendoGames/QuadrilateralCowboy/base/savegames/}}" Quake: gog: 1440166133 gogSide: @@ -128298,10 +124872,10 @@ Quake: - 9030 - 9040 templates: - - '{{Game data/config|DOS|{{p|game}}\ID1\CONFIG.CFG|{{p|game}}\HIPNOTIC\CONFIG.CFG|{{p|game}}\ROGUE\CONFIG.CFG}}' - - '{{Game data/config|Windows|{{p|game}}\id1\config.cfg|{{p|game}}\hipnotic\config.cfg|{{p|game}}\rogue\config.cfg}}' - - '{{Game data/saves|DOS|{{p|game}}\ID1\S#.SAV|{{p|game}}\HIPNOTIC\S#.SAV|{{p|game}}\ROGUE\S#.SAV}}' - - '{{Game data/saves|Windows|{{p|game}}\id1\s#.sav|{{p|game}}\hipnotic\s#.sav|{{p|game}}\rogue\s#.sav}}' + - "{{Game data/config|DOS|{{p|game}}\\ID1\\CONFIG.CFG|{{p|game}}\\HIPNOTIC\\CONFIG.CFG|{{p|game}}\\ROGUE\\CONFIG.CFG}}" + - "{{Game data/config|Windows|{{p|game}}\\id1\\config.cfg|{{p|game}}\\hipnotic\\config.cfg|{{p|game}}\\rogue\\config.cfg}}" + - "{{Game data/saves|DOS|{{p|game}}\\ID1\\S#.SAV|{{p|game}}\\HIPNOTIC\\S#.SAV|{{p|game}}\\ROGUE\\S#.SAV}}" + - "{{Game data/saves|Windows|{{p|game}}\\id1\\s#.sav|{{p|game}}\\hipnotic\\s#.sav|{{p|game}}\\rogue\\s#.sav}}" Quake 4: gog: 1108791957 gogSide: @@ -128309,16 +124883,12 @@ Quake 4: pageId: 6551 steam: 2210 templates: - - '{{Game data/config|Windows|{{p|game}}\q4base\Quake4Config.cfg}}' - - >- - {{Game data/config|OS X|{{p|osxhome}}/Library/Containers/com.aspyr.quake4appstore/Data/Library/Application - Support/Quake 4/q4base}} - - '{{Game data/config|Linux|{{p|linuxhome}}/.quake4/q4base}}' - - '{{Game data/saves|Windows|{{p|game}}\q4base\savegames\}}' - - >- - {{Game data/saves|OS X|{{p|osxhome}}/Library/Containers/com.aspyr.quake4appstore/Data/Library/Application - Support/Quake 4/q4base/savegames}} - - '{{Game data/saves|Linux|{{p|linuxhome}}/.quake4/q4base/savegames}}' + - "{{Game data/config|Windows|{{p|game}}\\q4base\\Quake4Config.cfg}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Containers/com.aspyr.quake4appstore/Data/Library/Application Support/Quake 4/q4base}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.quake4/q4base}}" + - "{{Game data/saves|Windows|{{p|game}}\\q4base\\savegames\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Containers/com.aspyr.quake4appstore/Data/Library/Application Support/Quake 4/q4base/savegames}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.quake4/q4base/savegames}}" Quake Champions: pageId: 61723 steam: 611500 @@ -128334,7 +124904,7 @@ Quake Champions: - 922312 - 922313 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\id Software\Quake Champions\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\id Software\\Quake Champions\\}}" Quake Enhanced: gog: 1739637082 pageId: 170821 @@ -128342,8 +124912,8 @@ Quake Enhanced: - Quake (2021) steam: 2310 templates: - - '{{Game data/config|Windows|{{P|userprofile}}\Saved Games\Nightdive Studios\Quake\kexengine.cfg}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\Saved Games\Nightdive Studios\Quake\*.sav}}' + - "{{Game data/config|Windows|{{P|userprofile}}\\Saved Games\\Nightdive Studios\\Quake\\kexengine.cfg}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\Saved Games\\Nightdive Studios\\Quake\\*.sav}}" Quake II: gog: 1443696817 gogSide: @@ -128354,24 +124924,24 @@ Quake II: - 2330 - 2340 templates: - - '{{Game data/config|Windows|{{p|game}}\baseq2\*.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\baseq2\save\}}' + - "{{Game data/config|Windows|{{p|game}}\\baseq2\\*.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\baseq2\\save\\}}" Quake II Enhanced: gog: 1443696817 pageId: 189143 steam: 2320 templates: - - '{{Game data/config|Windows|{{P|userprofile}}\Saved Games\Nightdive Studios\Quake II\baseq2\*.cfg}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\Saved Games\Nightdive Studios\Quake II\baseq2\save\}}' + - "{{Game data/config|Windows|{{P|userprofile}}\\Saved Games\\Nightdive Studios\\Quake II\\baseq2\\*.cfg}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\Saved Games\\Nightdive Studios\\Quake II\\baseq2\\save\\}}" Quake II RTX: gog: 1825786806 pageId: 137997 steam: 1089130 templates: - - '{{Game data/config|Windows|{{P|game}}\baseq2\q2config.cfg}}' - - '{{Game data/config|Linux|{{P|linuxhome}}/.quake2rtx/baseq2/q2config.cfg}}' - - '{{Game data/saves|Windows|{{P|game}}\baseq2\save\}}' - - '{{Game data/saves|Linux|{{P|linuxhome}}/.quake2rtx/baseq2/save/}}' + - "{{Game data/config|Windows|{{P|game}}\\baseq2\\q2config.cfg}}" + - "{{Game data/config|Linux|{{P|linuxhome}}/.quake2rtx/baseq2/q2config.cfg}}" + - "{{Game data/saves|Windows|{{P|game}}\\baseq2\\save\\}}" + - "{{Game data/saves|Linux|{{P|linuxhome}}/.quake2rtx/baseq2/save/}}" Quake III Arena: gog: 1443696086 gogSide: @@ -128381,18 +124951,18 @@ Quake III Arena: steamSide: - 2350 templates: - - '{{Game data/config|Windows|{{p|game}}\baseq3\q3config.cfg}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.q3a/baseq3/q3config.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\baseq3\q3config.cfg}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.q3a/baseq3/q3config.cfg}}' + - "{{Game data/config|Windows|{{p|game}}\\baseq3\\q3config.cfg}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.q3a/baseq3/q3config.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\baseq3\\q3config.cfg}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.q3a/baseq3/q3config.cfg}}" Quake Live: pageId: 6470 steam: 282440 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\id Software\quakelive\home\baseq3\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/QuakeLive/quakelive/home/baseq3/}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.quakelive/quakelive/home/baseq3/}}' - - '{{Game data/config|Steam|{{p|game}}/{{p|uid}}/}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\id Software\\quakelive\\home\\baseq3\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/QuakeLive/quakelive/home/baseq3/}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.quakelive/quakelive/home/baseq3/}}" + - "{{Game data/config|Steam|{{p|game}}/{{p|uid}}/}}" Quanect: pageId: 78619 steam: 745940 @@ -128412,14 +124982,10 @@ Quantum Break: pageId: 31276 steam: 474960 templates: - - >- - {{Game data/config|Microsoft - Store|{{p|localappdata}}\Packages\Microsoft.QuantumBreak_8wekyb3d8bbwe\LocalState\renderer.ini}} - - '{{Game data/config|Steam|{{p|localappdata}}\QuantumBreak\renderer.ini}}' - - >- - {{Game data/saves|Microsoft - Store|{{p|localappdata}}\Packages\Microsoft.QuantumBreak_8wekyb3d8bbwe\LocalState\LSAO\}} - - '{{Game data/saves|Steam|{{P|localappdata}}\QuantumBreak\}}' + - "{{Game data/config|Microsoft Store|{{p|localappdata}}\\Packages\\Microsoft.QuantumBreak_8wekyb3d8bbwe\\LocalState\\renderer.ini}}" + - "{{Game data/config|Steam|{{p|localappdata}}\\QuantumBreak\\renderer.ini}}" + - "{{Game data/saves|Microsoft Store|{{p|localappdata}}\\Packages\\Microsoft.QuantumBreak_8wekyb3d8bbwe\\LocalState\\LSAO\\}}" + - "{{Game data/saves|Steam|{{P|localappdata}}\\QuantumBreak\\}}" Quantum Chess: pageId: 54505 steam: 453870 @@ -128430,10 +124996,8 @@ Quantum Conundrum: pageId: 3117 steam: 200010 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\My - Games\UnrealEngine3\TryGame\Config\|{{p|game}}\TryGame\Config\|{{p|game}}\Engine\Config\}} - - '{{Game data/saves|Windows|{{p|steam}}\userdata\{{p|uid}}\200010\remote\profile.bin}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\UnrealEngine3\\TryGame\\Config\\|{{p|game}}\\TryGame\\Config\\|{{p|game}}\\Engine\\Config\\}}" + - "{{Game data/saves|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\200010\\remote\\profile.bin}}" Quantum Covenant: pageId: 125613 steam: 927120 @@ -128474,8 +125038,8 @@ Quantum Tripper: pageId: 180303 steam: 1965970 templates: - - '{{Game data/saves|Windows|{{p|AppData}}\LocalLow\Saturation Records LLC\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}//Library/Application Support/Saturation Records LLC/QuantumTripper/}}' + - "{{Game data/saves|Windows|{{p|AppData}}\\LocalLow\\Saturation Records LLC\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}//Library/Application Support/Saturation Records LLC/QuantumTripper/}}" Quantum Wizard: pageId: 65206 steam: 660980 @@ -128485,7 +125049,7 @@ Quantumleaper: Quantz: pageId: 41241 steam: 37800 -'Quar: Battle for Gate 18': +"Quar: Battle for Gate 18": pageId: 43801 steam: 436940 Quarantine: @@ -128497,10 +125061,10 @@ Quarantine Circular: pageId: 95224 steam: 853500 templates: - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Bithell Games\Quarantine Circular\}}' -'Quarantine II: Road Warrior': + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Bithell Games\\Quarantine Circular\\}}" +"Quarantine II: Road Warrior": pageId: 180896 -Quarky & Quaysoo's Turbo Science: +"Quarky & Quaysoo's Turbo Science": pageId: 147198 Quarries of Scred: pageId: 37780 @@ -128532,8 +125096,8 @@ Qubburo 2: - Voxelized steam: 344040 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\LordKres\Voxelized\}}' - - '{{Game data/saves|Windows|{{p|game}}\Worlds\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\LordKres\\Voxelized\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\Worlds\\}}" Qubes: pageId: 128407 steam: 1029790 @@ -128564,47 +125128,47 @@ Queen of Spades: Queen of Thieves: pageId: 56372 steam: 524200 -'Queen''s Garden: Halloween': +"Queen's Garden: Halloween": pageId: 75449 steam: 726100 -'Queen''s Quest 2: Stories of Forgotten Past': +"Queen's Quest 2: Stories of Forgotten Past": pageId: 57440 steam: 558790 -'Queen''s Quest 3: The End of Dawn': +"Queen's Quest 3: The End of Dawn": pageId: 61221 steam: 589690 -'Queen''s Quest 4: Sacred Truce': +"Queen's Quest 4: Sacred Truce": pageId: 92688 steam: 814030 -'Queen''s Quest 5: Symphony of Death': +"Queen's Quest 5: Symphony of Death": pageId: 140877 steam: 1089660 -'Queen''s Quest: Tower of Darkness': +"Queen's Quest: Tower of Darkness": pageId: 46502 steam: 390200 -'Queen''s Tales: Sins of the Past': +"Queen's Tales: Sins of the Past": pageId: 79336 renamedFrom: - - 'Queen''s Tales: Sins of the Past Collector''s Edition' + - "Queen's Tales: Sins of the Past Collector's Edition" steam: 770870 -'Queen''s Tales: The Beast and the Nightingale': +"Queen's Tales: The Beast and the Nightingale": pageId: 59055 renamedFrom: - - 'Queen''s Tales: The Beast and the Nightingale Collector''s Edition' + - "Queen's Tales: The Beast and the Nightingale Collector's Edition" steam: 605790 -'Queen''s Wish 2: The Tormentor': +"Queen's Wish 2: The Tormentor": gog: 2109381952 pageId: 180615 steam: 1947750 templates: - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Spiderweb Software\Queen''s Wish 2 Saved Games}}' -'Queen''s Wish: The Conqueror': + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Spiderweb Software\\Queen's Wish 2 Saved Games}}" +"Queen's Wish: The Conqueror": gog: 1265286149 pageId: 135839 steam: 1058130 templates: - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Spiderweb Software\Queen''s Wish Saved Games}}' -'Queen: The eYe': + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Spiderweb Software\\Queen's Wish Saved Games}}" +"Queen: The eYe": pageId: 172458 Queendoom: pageId: 53059 @@ -128616,8 +125180,8 @@ Quell: pageId: 37160 steam: 344480 templates: - - '{{Game data/config|Windows|{{P|game}}\Quell\config.txt}}' - - '{{Game data/saves|Windows|{{P|game}}\Quell\savegame\}}' + - "{{Game data/config|Windows|{{P|game}}\\Quell\\config.txt}}" + - "{{Game data/saves|Windows|{{P|game}}\\Quell\\savegame\\}}" Quell 4D: pageId: 51423 steam: 534230 @@ -128634,7 +125198,7 @@ Quench: pageId: 105631 steam: 877440 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Axon Interactive\Quench\}}' + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Axon Interactive\\Quench\\}}" Quern - Undying Thoughts: gog: 1133536995 gogSide: @@ -128642,10 +125206,10 @@ Quern - Undying Thoughts: pageId: 52860 steam: 512790 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Zadbox Entertainment\Quern\}}' - - '{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/Zadbox Entertainment/Quern/prefs}}' - - '{{Game data/saves|Windows|{{P|USERPROFILE}}\AppData\LocalLow\Zadbox Entertainment\Quern\Saved Games\}}' - - '{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/Zadbox Entertainment/Quern/Saved Games/}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Zadbox Entertainment\\Quern\\}}" + - "{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/Zadbox Entertainment/Quern/prefs}}" + - "{{Game data/saves|Windows|{{P|USERPROFILE}}\\AppData\\LocalLow\\Zadbox Entertainment\\Quern\\Saved Games\\}}" + - "{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/Zadbox Entertainment/Quern/Saved Games/}}" Quest For Wartorn Brotherhood: pageId: 136735 steam: 1076830 @@ -128653,66 +125217,66 @@ Quest Hunter: pageId: 60137 steam: 487000 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\SOFTWARE\2 Zombie Games\Quest Hunter\}}' - - '{{Game data/config|Linux|{{p|xdgconfighome}}/unity3d/2 Zombie Games/Quest Hunter/}}' - - '{{Game data/saves|Steam|{{P|steam}}\userdata\{{P|uid}}\487000\remote\quest_hunter_save}}' - - '{{Game data/saves|Linux|{{p|xdgdatahome}}/Steam/userdata/{{p|uid}}/487000/remote/}}' -'Quest Room: Hanon': + - "{{Game data/config|Windows|{{P|hkcu}}\\SOFTWARE\\2 Zombie Games\\Quest Hunter\\}}" + - "{{Game data/config|Linux|{{p|xdgconfighome}}/unity3d/2 Zombie Games/Quest Hunter/}}" + - "{{Game data/saves|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\487000\\remote\\quest_hunter_save}}" + - "{{Game data/saves|Linux|{{p|xdgdatahome}}/Steam/userdata/{{p|uid}}/487000/remote/}}" +"Quest Room: Hanon": pageId: 114910 steam: 950360 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Burrik\Hanon}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Burrik\\Hanon}}" Quest for Conquest: pageId: 149991 steam: 1147020 -'Quest for Glory II: Trial by Fire': +"Quest for Glory II: Trial by Fire": gog: 1207661323 pageId: 19909 steam: 502750 templates: - - '{{Game data/config|DOS|{{p|game}}\}}' - - '{{Game data/saves|DOS|{{p|game}}\TRIALSG.***}}' -'Quest for Glory III: Wages of War': + - "{{Game data/config|DOS|{{p|game}}\\}}" + - "{{Game data/saves|DOS|{{p|game}}\\TRIALSG.***}}" +"Quest for Glory III: Wages of War": gog: 1207661383 pageId: 32464 steam: 502750 templates: - - '{{Game data/config|DOS|{{p|game}}\}}' - - '{{Game data/saves|DOS|{{p|game}}\GLORYSG.***}}' -'Quest for Glory V: Dragon Fire': + - "{{Game data/config|DOS|{{p|game}}\\}}" + - "{{Game data/saves|DOS|{{p|game}}\\GLORYSG.***}}" +"Quest for Glory V: Dragon Fire": gog: 1207661403 gogSide: - 1207659040 pageId: 32471 steam: 502750 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/saves|Windows|{{p|game}}\Saved Games}}' -'Quest for Glory: Shadows of Darkness': + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\Saved Games}}" +"Quest for Glory: Shadows of Darkness": gog: 1207661393 gogSide: - 1207659040 pageId: 24434 steam: 502750 templates: - - '{{Game data/config|DOS|{{p|game}}\}}' - - '{{Game data/saves|DOS|{{p|game}}\GLORYSG.***}}' -'Quest for Glory: So You Want to Be a Hero': + - "{{Game data/config|DOS|{{p|game}}\\}}" + - "{{Game data/saves|DOS|{{p|game}}\\GLORYSG.***}}" +"Quest for Glory: So You Want to Be a Hero": gog: 1207661313 gogSide: - 1207659040 pageId: 32461 steam: 502750 templates: - - '{{Game data/config|DOS|{{p|game}}\}}' - - '{{Game data/saves|DOS|{{p|game}}\GLORYSG.***}}' + - "{{Game data/config|DOS|{{p|game}}\\}}" + - "{{Game data/saves|DOS|{{p|game}}\\GLORYSG.***}}" Quest for Infamy: gog: 1207664993 pageId: 23200 steam: 264560 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\Saved Games\Quest for Infamy v1.1}}' + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Saved Games\\Quest for Infamy v1.1}}" Quest for the Golden Duck: pageId: 125873 steam: 996160 @@ -128720,8 +125284,8 @@ Quest of Dungeons: pageId: 20220 steam: 270050 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\QuestofDungeons\config.ini}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\QuestofDungeons\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\QuestofDungeons\\config.ini}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\QuestofDungeons\\}}" Quest of Souls: pageId: 39327 steam: 441560 @@ -128738,11 +125302,11 @@ QuestRun: pageId: 25002 steam: 286120 templates: - - '{{Game data/saves|Windows|{{p|appdata}}\QuestRun\Local Store\}}' -'Questerium: Sinister Trinity': + - "{{Game data/saves|Windows|{{p|appdata}}\\QuestRun\\Local Store\\}}" +"Questerium: Sinister Trinity": pageId: 48955 renamedFrom: - - 'Questerium: Sinister Trinity HD Collector''s Edition' + - "Questerium: Sinister Trinity HD Collector's Edition" steam: 320610 Questery: pageId: 92017 @@ -128753,7 +125317,7 @@ Questlike: Questr: pageId: 67569 steam: 675990 -'Questria: Rise of the Robot Skullfaces': +"Questria: Rise of the Robot Skullfaces": pageId: 45704 steam: 374420 Questron II: @@ -128765,8 +125329,8 @@ Quests Unlimited: Quetoo: pageId: 68277 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Quetoo\default\quetoo.cfg}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.quetoo/default/quetoo.cfg}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Quetoo\\default\\quetoo.cfg}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.quetoo/default/quetoo.cfg}}" QuiVr: pageId: 39496 steam: 489380 @@ -128779,7 +125343,7 @@ Quible Sphere: Quick Draw: pageId: 40070 steam: 522250 -'Quick Maths: addition and subtraction': +"Quick Maths: addition and subtraction": pageId: 107898 steam: 899370 Quick Slick Deadly: @@ -128810,10 +125374,10 @@ Quiplash: pageId: 47439 steam: 351510 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Jackbox Games\Quiplash\UserData.sav}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/Jackbox Games/Quiplash/Userdata.sav}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\Jackbox Games\Quiplash\UserData.sav}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/Jackbox Games/Quiplash/Userdata.sav}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\Jackbox Games\\Quiplash\\UserData.sav}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/Jackbox Games/Quiplash/Userdata.sav}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Jackbox Games\\Quiplash\\UserData.sav}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/Jackbox Games/Quiplash/Userdata.sav}}" Quiplash 2 InterLASHional: pageId: 159290 steam: 1111940 @@ -128823,10 +125387,10 @@ Quirky Crook: Quirky Crystal RPG: pageId: 110078 steam: 921660 -Quiver Dick's Epic Book of Fairy Fails: +"Quiver Dick's Epic Book of Fairy Fails": pageId: 139337 steam: 1091370 -Quiver Dick's Terrible Tale for Terrible Parents to Read to Their Equally Terrible Children: +"Quiver Dick's Terrible Tale for Terrible Parents to Read to Their Equally Terrible Children": pageId: 121278 steam: 953230 Quixzel Rush Halloween Party: @@ -128835,10 +125399,10 @@ Quixzel Rush Halloween Party: Quixzel Rush Pumpkin Bash: pageId: 112664 steam: 937610 -'Quixzel Rush: Christmas Helper': +"Quixzel Rush: Christmas Helper": pageId: 114480 steam: 942550 -'Quixzel Rush: Tooth Protector': +"Quixzel Rush: Tooth Protector": pageId: 112876 steam: 942560 Quiz Night Tonight!: @@ -128869,8 +125433,8 @@ Qvadriga: pageId: 50065 steam: 297760 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Turnopia\Qvadriga\}}' -Qwerty's Prison: + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Turnopia\\Qvadriga\\}}" +"Qwerty's Prison": pageId: 141024 steam: 1103000 Qybe: @@ -128893,8 +125457,8 @@ R-Type Final 2: pageId: 164620 steam: 1442820 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\Saved Games\RTypeFinal2\Saved\Config\WindowsNoEditor}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\Saved Games\RTypeFinal2\Saved\SaveGames}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\Saved Games\\RTypeFinal2\\Saved\\Config\\WindowsNoEditor}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Saved Games\\RTypeFinal2\\Saved\\SaveGames}}" R.A.F.A.: pageId: 87936 steam: 772650 @@ -128905,7 +125469,7 @@ R.A.W. Realms of Ancient War: pageId: 10524 steam: 209730 templates: - - '{{Game data/config|Windows|{{P|game}}\config.xml}}' + - "{{Game data/config|Windows|{{P|game}}\\config.xml}}" R.B.I. Baseball 15: pageId: 48044 steam: 329610 @@ -128924,10 +125488,10 @@ R.C. Bot Inc.: R.I.C.A: pageId: 127748 steam: 1020640 -'R.I.P.D.: The Game': +"R.I.P.D.: The Game": pageId: 40606 steam: 237590 -'R.O.M. Gold: Rings of Medusa': +"R.O.M. Gold: Rings of Medusa": pageId: 186729 R.O.O.T.S: pageId: 48306 @@ -128945,8 +125509,8 @@ R.U.S.E.: pageId: 18786 steam: 21970 templates: - - '{{Game data/config|Windows|{{p|steam}}\userData\{{p|uid}}\21970\Local\}}' - - '{{Game data/saves|Windows|{{p|steam}}\userData\{{p|uid}}\21970\Local\}}' + - "{{Game data/config|Windows|{{p|steam}}\\userData\\{{p|uid}}\\21970\\Local\\}}" + - "{{Game data/saves|Windows|{{p|steam}}\\userData\\{{p|uid}}\\21970\\Local\\}}" R42: pageId: 144574 steam: 1127120 @@ -128968,15 +125532,8 @@ RACE 07 - Official WTCC Game: - 44660 - 44670 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\SimBin\RACE - 07\Config.ini|{{p|userprofile\Documents}}\SimBin\RACE 07\UserData\ControlSet\}} - - >- - {{Game data/saves|Windows|{{p|userprofile\Documents}}\SimBin\RACE - 07\UserData\{{p|uid}}\|{{p|userprofile\Documents}}\SimBin\RACE - 07\UserData\CarSetups\|{{p|userprofile\Documents}}\SimBin\RACE - 07\UserData\ScreenShots\|{{p|userprofile\Documents}}\SimBin\RACE - 07\UserData\vehicledata.spt|{{p|userprofile\Documents}}\SimBin\RACE 07\REPLAYDATA\}} + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\SimBin\\RACE 07\\Config.ini|{{p|userprofile\\Documents}}\\SimBin\\RACE 07\\UserData\\ControlSet\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\SimBin\\RACE 07\\UserData\\{{p|uid}}\\|{{p|userprofile\\Documents}}\\SimBin\\RACE 07\\UserData\\CarSetups\\|{{p|userprofile\\Documents}}\\SimBin\\RACE 07\\UserData\\ScreenShots\\|{{p|userprofile\\Documents}}\\SimBin\\RACE 07\\UserData\\vehicledata.spt|{{p|userprofile\\Documents}}\\SimBin\\RACE 07\\REPLAYDATA\\}}" RACE Injection: pageId: 40857 steam: 44680 @@ -128996,29 +125553,29 @@ RAGE: pageId: 58 steam: 9200 templates: - - '{{Game data/config|Windows|{{p|game}}\SAVES\base\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\Saved Games\id Software\Rage\base\savegame\}}' + - "{{Game data/config|Windows|{{p|game}}\\SAVES\\base\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Saved Games\\id Software\\Rage\\base\\savegame\\}}" RAGE 2: pageId: 94227 steam: 548570 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\Saved Games\id Software\Rage 2\settings.ini}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\Saved Games\id Software\Rage 2\Saves\}}' -'RAID: World War II': + - "{{Game data/config|Windows|{{p|userprofile}}\\Saved Games\\id Software\\Rage 2\\settings.ini}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Saved Games\\id Software\\Rage 2\\Saves\\}}" +"RAID: World War II": pageId: 69709 steam: 414740 steamSide: - 704580 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\RAID WW2\renderer_settings.xml}}' - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\414740\remote\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\RAID WW2\\renderer_settings.xml}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\414740\\remote\\}}" RAM Pressure: pageId: 113902 steam: 929490 RAMS: pageId: 108892 steam: 809580 -'RAN: Lost Islands': +"RAN: Lost Islands": pageId: 150972 steam: 986220 RANCID: @@ -129040,16 +125597,14 @@ RAYZE: pageId: 172413 steam: 1689190 templates: - - >- - {{Game - data/config|Windows|{{p|hkcu}}\Software\Hyperstrange\RAYZE\|{{p|userprofile}}\AppData\LocalLow\Hyperstrange\RAYZE\}} + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Hyperstrange\\RAYZE\\|{{p|userprofile}}\\AppData\\LocalLow\\Hyperstrange\\RAYZE\\}}" RAZ: pageId: 109660 steam: 912580 RAZE 2070: pageId: 185863 steam: 1564230 -'RB: Axolotl': +"RB: Axolotl": pageId: 130749 steam: 1014580 RC Cars: @@ -129057,8 +125612,8 @@ RC Cars: pageId: 50387 steam: 289460 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/saves|Windows|{{p|game}}\Players\}}' + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\Players\\}}" RC Fun City: pageId: 78573 steam: 758120 @@ -129086,16 +125641,16 @@ RC-AirSim - RC Model Airplane Flight Simulator: RCRacer VR: pageId: 123586 steam: 977270 -RD's Adventure Mini Golf: +"RD's Adventure Mini Golf": pageId: 125739 steam: 656300 RDS - The Official Drift Videogame: pageId: 127912 steam: 934930 -'RE:OZMA': +"RE:OZMA": pageId: 135911 steam: 932690 -'REBORN: Survival': +"REBORN: Survival": pageId: 154357 steam: 1198690 RECOG The First Wave: @@ -129104,7 +125659,7 @@ RECOG The First Wave: RED EVIL: pageId: 153210 steam: 1169070 -'RED: Lucid Nightmare': +"RED: Lucid Nightmare": pageId: 112184 steam: 913100 REDO!: @@ -129113,8 +125668,8 @@ REDO!: REDRIVER 2: pageId: 165442 templates: - - '{{Game data/config|Windows|{{p|game}}\config.ini}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\.driver2}}' + - "{{Game data/config|Windows|{{p|game}}\\config.ini}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\.driver2}}" REDVIIL: pageId: 128346 steam: 1013410 @@ -129127,13 +125682,13 @@ REFUGE: REGOLA: pageId: 139119 steam: 1039310 -'REKKR: Sunken Land': +"REKKR: Sunken Land": gog: 1394392564 pageId: 184555 steam: 1715690 templates: - - '{{Game data/config|Windows|{{p|game}}\*.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\*.zds}}' + - "{{Game data/config|Windows|{{p|game}}\\*.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\*.zds}}" REKT!: pageId: 141334 steam: 1065320 @@ -129146,10 +125701,10 @@ RESEQUENCED: RETNE: pageId: 67111 steam: 622380 -'RETRO-PIXEL COLOR PALETTE: Color by Number': +"RETRO-PIXEL COLOR PALETTE: Color by Number": pageId: 155486 steam: 1219120 -RETRO\war! 8bit party battle: +"RETRO\\war! 8bit party battle": pageId: 108708 steam: 664240 RETSNOM: @@ -129158,7 +125713,7 @@ RETSNOM: REZPLZ: pageId: 128643 steam: 911680 -'REalM: Walk of Soul': +"REalM: Walk of Soul": pageId: 39337 steam: 417020 RF Online: @@ -129170,14 +125725,14 @@ RFactor: pageId: 35629 steam: 339790 templates: - - '{{Game data/config|Windows|{{p|game}}\Config.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\UserData\{{p|uid}}\{{p|uid}}.plr}}' + - "{{Game data/config|Windows|{{p|game}}\\Config.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\UserData\\{{p|uid}}\\{{p|uid}}.plr}}" RFactor 2: pageId: 45655 steam: 365960 templates: - - '{{Game data/config|Windows|{{p|game}}\UserData\Config.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\UserData\player\player.json}}' + - "{{Game data/config|Windows|{{p|game}}\\UserData\\Config.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\UserData\\player\\player.json}}" RGB RUN: pageId: 122199 steam: 978340 @@ -129190,28 +125745,28 @@ RGBverse: RHCs StretchingVr: pageId: 92666 steam: 782420 -'RHEM 2: The Cave': +"RHEM 2: The Cave": pageId: 131268 -'RHEM 3: The Secret Library': +"RHEM 3: The Secret Library": pageId: 131270 -'RHEM 4: The Golden Fragments': +"RHEM 4: The Golden Fragments": pageId: 131272 -'RHEM I SE: The Mysterious Land': +"RHEM I SE: The Mysterious Land": pageId: 65652 steam: 656900 -'RHEM II SE: The Cave': +"RHEM II SE: The Cave": pageId: 113874 steam: 929320 templates: - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Adobe\Director 12\RhemIISE}}' -'RHEM IV: The Golden Fragments SE': + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Adobe\\Director 12\\RhemIISE}}" +"RHEM IV: The Golden Fragments SE": pageId: 44714 steam: 391510 RICO: pageId: 64097 steam: 656700 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Groundshatter\RICO\Saves\}}' + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Groundshatter\\RICO\\Saves\\}}" RIFF VR for Arcades: pageId: 120845 steam: 932920 @@ -129221,27 +125776,27 @@ RIP: RIP (2019): pageId: 137337 steam: 923530 -'RIP 2: Strike Back': +"RIP 2: Strike Back": pageId: 36463 steam: 2545 -'RIP 3: The Last Hero': +"RIP 3: The Last Hero": pageId: 36464 steam: 2550 RITE: pageId: 163669 steam: 1322650 templates: - - '{{Game data/saves|Windows|{{P|localappdata}}\Cave\}}' + - "{{Game data/saves|Windows|{{P|localappdata}}\\Cave\\}}" RKN - Roskomnadzor Banned Internet: pageId: 93772 steam: 857340 -'RKN Block Me: Telegram': +"RKN Block Me: Telegram": pageId: 145968 steam: 886110 RKN Simulator: pageId: 93680 steam: 857100 -'ROBOTIX: The Escape': +"ROBOTIX: The Escape": pageId: 156561 steam: 1226100 ROCKETRON: @@ -129251,21 +125806,21 @@ ROCKETSROCKETSROCKETS: pageId: 48026 steam: 289760 templates: - - '{{Game data/config|Linux|{{p|xdgconfighome}}/ROCKETSROCKETSROCKETS}}' + - "{{Game data/config|Linux|{{p|xdgconfighome}}/ROCKETSROCKETSROCKETS}}" ROD (2019): pageId: 144697 renamedFrom: - ROD steam: 1123730 -'ROD: Revolt of Defense': +"ROD: Revolt of Defense": pageId: 35976 steam: 508600 ROG CITADEL XV: pageId: 172659 steam: 1472250 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\SOFTWARE\Moonshine\ROG CITADEL XV\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Moonshine\ROG CITADEL XV\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\Moonshine\\ROG CITADEL XV\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Moonshine\\ROG CITADEL XV\\}}" ROGO: pageId: 124058 steam: 965470 @@ -129278,7 +125833,7 @@ ROKH: ROLL!: pageId: 114256 steam: 938280 -'ROM: Extraction': +"ROM: Extraction": pageId: 54369 steam: 530960 ROS: @@ -129299,7 +125854,7 @@ ROt 3D: RPCS3: pageId: 88520 templates: - - '{{Game data/saves|Windows|{{p|game}}\dev_hdd0\home\}}' + - "{{Game data/saves|Windows|{{p|game}}\\dev_hdd0\\home\\}}" RPG Adventures: pageId: 92865 steam: 850310 @@ -129336,7 +125891,7 @@ RRRR2: RRRR3: pageId: 148805 steam: 1146880 -'RS3: Racing Simulation Three': +"RS3: Racing Simulation Three": pageId: 163086 RTAG rise: pageId: 87011 @@ -129347,13 +125902,13 @@ RTL Biathlon 2009: RTL Ski Jumping 2007: pageId: 79492 steam: 374090 -'RTS Commander: Smash the Rebels': +"RTS Commander: Smash the Rebels": pageId: 81604 steam: 765370 RUINS Survival: pageId: 127890 steam: 985720 -RUMP! - It's a Jump and Rump!: +"RUMP! - It's a Jump and Rump!": pageId: 44421 steam: 348160 RUN: @@ -129362,11 +125917,11 @@ RUN: RUN HARE RUN: pageId: 155502 steam: 1212870 -'RUNNER HEROES: The curse of night and day': +"RUNNER HEROES: The curse of night and day": pageId: 153634 renamedFrom: - - 'RUNNER HEROES: The curse of night and day' - - 'Runner Heroes: The Curse of Night and Day' + - "RUNNER HEROES: The curse of night and day" + - "Runner Heroes: The Curse of Night and Day" steam: 1157820 RUNRUNRUN: pageId: 72092 @@ -129374,19 +125929,17 @@ RUNRUNRUN: RWBY Deckbuilding Game: pageId: 129851 steam: 1017080 -'RWBY: Arrowfell': +"RWBY: Arrowfell": pageId: 183601 steam: 1982150 templates: - - >- - {{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\WayForward Technologies\RWBY_ - Arrowfell\_savedata\savefile}} -'RWBY: Grimm Eclipse': + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\WayForward Technologies\\RWBY_ Arrowfell\\_savedata\\savefile}}" +"RWBY: Grimm Eclipse": pageId: 30047 steam: 418340 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Rooster Teeth Productions LLC\RWBY: Grimm Eclipse\}}' - - '{{Game data/saves|Steam|{{P|steam}}/userdata/{{P|uid}}/418340/remote/RWBY.SteamCloud/Profile.json}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Rooster Teeth Productions LLC\\RWBY: Grimm Eclipse\\}}" + - "{{Game data/saves|Steam|{{P|steam}}/userdata/{{P|uid}}/418340/remote/RWBY.SteamCloud/Profile.json}}" RX Squad: pageId: 41942 steam: 494120 @@ -129397,8 +125950,8 @@ RYB: pageId: 52934 steam: 547050 templates: - - '{{Game data/saves|Windows|{{p|appdata}}\RYB}}' -'RaKoval~Nya: Escape Edition': + - "{{Game data/saves|Windows|{{p|appdata}}\\RYB}}" +"RaKoval~Nya: Escape Edition": pageId: 93818 steam: 859070 Raatihuone: @@ -129407,18 +125960,18 @@ Raatihuone: Rabbids Big Bang: pageId: 74003 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Packages\UbisoftEntertainment.RabbidsBigBang_dbgk1hhpxymar}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Packages\UbisoftEntertainment.RabbidsBigBang_dbgk1hhpxymar}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Packages\\UbisoftEntertainment.RabbidsBigBang_dbgk1hhpxymar}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Packages\\UbisoftEntertainment.RabbidsBigBang_dbgk1hhpxymar}}" Rabbids Coding!: pageId: 148093 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Ubisoft\Rabbids Coding\}}' - - '{{Game data/saves|Windows|{{P|uplay}}\savegames\{{P|uid}}\5408\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Ubisoft\\Rabbids Coding\\}}" + - "{{Game data/saves|Windows|{{P|uplay}}\\savegames\\{{P|uid}}\\5408\\}}" Rabbids Go Home: pageId: 139914 templates: - - '{{Game data/config|Windows|{{p|programdata}}\Ubisoft\RGH Launcher\1.0.0.0\Launcher_#.exe.config}}' -'Rabbids: Party of Legends': + - "{{Game data/config|Windows|{{p|programdata}}\\Ubisoft\\RGH Launcher\\1.0.0.0\\Launcher_#.exe.config}}" +"Rabbids: Party of Legends": pageId: 184167 RabbiruN: pageId: 90192 @@ -129433,14 +125986,14 @@ Rabbit Burn: Rabbit Foot!: pageId: 171403 templates: - - '{{Game data/config|Windows|{{p|game}}\Rabbit Foot!.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\_memory1.actsave}}' + - "{{Game data/config|Windows|{{p|game}}\\Rabbit Foot!.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\_memory1.actsave}}" Rabbit Hole 3D: pageId: 24942 steam: 283660 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\JKSoft\RabbitHole3D\}}' - - '{{Game data/saves|Windows|{{p|game}}\mainResources.dat}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\JKSoft\\RabbitHole3D\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\mainResources.dat}}" Rabbit Island: pageId: 42368 steam: 490300 @@ -129456,21 +126009,21 @@ Rabbit and the moon: Rabbit of Destiny: pageId: 110442 steam: 926410 -'Rabbit: Jigsaw Puzzles': +"Rabbit: Jigsaw Puzzles": pageId: 91464 steam: 833470 Rabi-Ribi: pageId: 33620 steam: 400910 templates: - - '{{Game data/config|Windows|{{p|game}}\save\}}' - - '{{Game data/saves|Windows|{{p|game}}\save\}}' -'Rabiez: Epidemic': + - "{{Game data/config|Windows|{{p|game}}\\save\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\save\\}}" +"Rabiez: Epidemic": pageId: 44267 steam: 448630 templates: - - '{{Game data/config|Windows|{{p|game}}\config.ini}}' - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\448630\remote\safe_update_levels_status.txt}}' + - "{{Game data/config|Windows|{{p|game}}\\config.ini}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\448630\\remote\\safe_update_levels_status.txt}}" Rabisco: pageId: 144795 steam: 1125860 @@ -129480,28 +126033,28 @@ Raccoo Venture: Raccoon Hero: pageId: 68346 steam: 678810 -'Raccoon Hero: Among The Cacti': +"Raccoon Hero: Among The Cacti": pageId: 69976 steam: 680060 -'Raccoon Hero: Monkey Business': +"Raccoon Hero: Monkey Business": pageId: 70160 steam: 680080 -'Raccoon Hero: Starlight': +"Raccoon Hero: Starlight": pageId: 67139 steam: 680050 -'Raccoon Hero: The Frost': +"Raccoon Hero: The Frost": pageId: 71708 steam: 680000 -'Raccoon Hero: The Marsh': +"Raccoon Hero: The Marsh": pageId: 68593 steam: 679360 -'Raccoon Hero: The Sunrise': +"Raccoon Hero: The Sunrise": pageId: 66095 steam: 679170 -'Raccoon Hero: Under The Sea': +"Raccoon Hero: Under The Sea": pageId: 68581 steam: 679330 -'Raccoon: The Orc Invasion': +"Raccoon: The Orc Invasion": pageId: 154081 steam: 1199150 Race: @@ -129513,13 +126066,13 @@ Race & Destroy: Race Arcade: pageId: 45611 steam: 355010 -'Race Driver: Grid': +"Race Driver: Grid": gog: 1207659233 pageId: 657 steam: 12750 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Codemasters\GRID\hardwaresettings\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Codemasters\GRID\savegame\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Codemasters\\GRID\\hardwaresettings\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Codemasters\\GRID\\savegame\\}}" Race Race Racer: pageId: 152751 steam: 1190380 @@ -129534,10 +126087,10 @@ Race the Sun: pageId: 10529 steam: 253030 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Flippfly\RaceTheSun\}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Flippfly/RaceTheSun/}}' - - '{{Game data/saves|Windows|{{p|hkcu}}\Software\Flippfly\RaceTheSun\}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Flippfly/RaceTheSun/}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Flippfly\\RaceTheSun\\}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Flippfly/RaceTheSun/}}" + - "{{Game data/saves|Windows|{{p|hkcu}}\\Software\\Flippfly\\RaceTheSun\\}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Flippfly/RaceTheSun/}}" Race to Mars: pageId: 15682 renamedFrom: @@ -129546,10 +126099,10 @@ Race to Mars: - Race To Mars steam: 257930 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\Intermarum\RaceToMars\}}' - - '{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/Intermarum/RaceToMars/}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Intermarum\RaceToMars\}}' - - '{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/Intermarum/RaceToMars/}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Intermarum\\RaceToMars\\}}" + - "{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/Intermarum/RaceToMars/}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Intermarum\\RaceToMars\\}}" + - "{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/Intermarum/RaceToMars/}}" Race with Ryan: pageId: 145134 renamedFrom: @@ -129557,7 +126110,7 @@ Race with Ryan: - Race with Ryan - Race With Ryan steam: 1054990 -Race! Make 'm finish...: +"Race! Make 'm finish...": pageId: 155914 steam: 1184460 Race.a.bit: @@ -129567,17 +126120,17 @@ RaceRoom Racing Experience: pageId: 40660 steam: 211500 steamSide: + - 272770 + - 331800 + - 332120 + - 336270 + - 376360 + - 408220 + - 422670 - 455270 - 455280 - - 422670 - - 408220 - - 332120 - - 376360 - - 336270 - - 331800 - - 272770 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\SimBin\RaceRoom Racing Experience\UserData}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\SimBin\\RaceRoom Racing Experience\\UserData}}" RaceXXL Space: pageId: 149174 steam: 1159770 @@ -129594,8 +126147,8 @@ Racer 8: pageId: 21766 steam: 292380 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Thirty06\Racer 8\}}' - - '{{Game data/saves|Windows|{{p|hkcu}}\Software\Thirty06\Racer 8\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Thirty06\\Racer 8\\}}" + - "{{Game data/saves|Windows|{{p|hkcu}}\\Software\\Thirty06\\Racer 8\\}}" Racer Simulator: pageId: 153921 steam: 1201940 @@ -129605,7 +126158,7 @@ RacetronicVR: Racing Bike Fight: pageId: 155446 steam: 1220080 -'Racing Classics: Drag Race Simulator': +"Racing Classics: Drag Race Simulator": pageId: 135701 steam: 1026110 Racing Days: @@ -129627,40 +126180,40 @@ Racing angle: Rack N Ruin: pageId: 38430 steam: 378080 -'Racket Fury: Table Tennis VR': +"Racket Fury: Table Tennis VR": pageId: 59397 steam: 555050 -'Racket: Nx': +"Racket: Nx": pageId: 39424 steam: 428080 -Rackham's Shambala Adventure: +"Rackham's Shambala Adventure": pageId: 157486 steam: 1066580 Rad: pageId: 132838 steam: 722560 templates: - - '{{Game data/config | Windows | {{p|game}}\Engine\Config}}' - - '{{Game data/saves | Windows | {{p|localappdata}}\RAD\Saved\SaveGames}}' -'Rad Rodgers: Radical Edition': + - "{{Game data/config | Windows | {{p|game}}\\Engine\\Config}}" + - "{{Game data/saves | Windows | {{p|localappdata}}\\RAD\\Saved\\SaveGames}}" +"Rad Rodgers: Radical Edition": gog: 1123684973 pageId: 53243 steam: 805660 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Rad\Saved\Config\WindowsNoEditor}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\Rad\Saved\SaveGames}}' -'Rad Rodgers: World One': + - "{{Game data/config|Windows|{{P|localappdata}}\\Rad\\Saved\\Config\\WindowsNoEditor}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Rad\\Saved\\SaveGames}}" +"Rad Rodgers: World One": gog: 1123684973 pageId: 39644 steam: 353580 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Rad\Saved\Config\WindowsNoEditor}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\Rad\Saved\SaveGames}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\Rad\\Saved\\Config\\WindowsNoEditor}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Rad\\Saved\\SaveGames}}" Radar Chaos: pageId: 168435 -'Radar Chaos: Hawaii Edition': +"Radar Chaos: Hawaii Edition": pageId: 177434 -'Radar Chaos: World Edition': +"Radar Chaos: World Edition": pageId: 177436 Radar Defense: pageId: 79044 @@ -129671,7 +126224,7 @@ Radar Warfare: Radial Impact: pageId: 46995 steam: 387890 -'Radial-G: Racing Revolved': +"Radial-G: Racing Revolved": pageId: 43947 steam: 330770 RadianVR: @@ -129696,8 +126249,8 @@ Radiant Silvergun: pageId: 188991 steam: 2450820 templates: - - '{{Game data/config|Windows|{{p|game}}\RS.ini}}' - - '{{Game data/saves|Windows|{{P|steam}}\userdata\{{P|uid}}\2450820\remote\rs_system.bin}}' + - "{{Game data/config|Windows|{{p|game}}\\RS.ini}}" + - "{{Game data/saves|Windows|{{P|steam}}\\userdata\\{{P|uid}}\\2450820\\remote\\rs_system.bin}}" Radiation Island: pageId: 54331 steam: 307940 @@ -129714,8 +126267,8 @@ Radical Heights: pageId: 91775 steam: 809960 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\RadicalHeights\Saved\Config\WindowsClient}}' -'Radical Heroes: Crimson City Crisis': + - "{{Game data/config|Windows|{{p|localappdata}}\\RadicalHeights\\Saved\\Config\\WindowsClient}}" +"Radical Heroes: Crimson City Crisis": pageId: 39548 steam: 515740 Radical Relocation: @@ -129726,10 +126279,10 @@ Radical Rex: gog: 1935877702 pageId: 129716 steam: 1028490 -'Radical Spectrum: Volume 1': +"Radical Spectrum: Volume 1": pageId: 42475 steam: 486150 -'Radical Spectrum: Volume 2': +"Radical Spectrum: Volume 2": pageId: 67567 steam: 661300 Radiis: @@ -129740,13 +126293,13 @@ Radio Commander: pageId: 109124 steam: 871530 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Serious Sim\Radio Commander\}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Serious Sim\Radio Commander\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Serious Sim\\Radio Commander\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Serious Sim\\Radio Commander\\}}" Radio General: pageId: 135447 steam: 1011610 templates: - - '{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/Foolish Mortals/Radio General/Campaigns}}' + - "{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/Foolish Mortals/Radio General/Campaigns}}" Radio Violence: pageId: 121223 steam: 947880 @@ -129756,7 +126309,7 @@ Radio the Universe: Radioactive: pageId: 56572 steam: 581090 -'Radioactive Dwarfs: Evil from the Sewers': +"Radioactive Dwarfs: Evil from the Sewers": gog: 1794445268 pageId: 184783 steam: 1403080 @@ -129774,17 +126327,15 @@ Radish: Radium: pageId: 48463 steam: 355410 -'Radline: Quarantine': +"Radline: Quarantine": pageId: 58091 steam: 592390 Raft: pageId: 70250 steam: 648800 templates: - - >- - {{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\Redbeet - Interactive\Raft\User\{{p|uid}}\Player\Settings.rgd}} - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Redbeet Interactive\Raft\User\{{p|uid}}\World}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Redbeet Interactive\\Raft\\User\\{{p|uid}}\\Player\\Settings.rgd}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Redbeet Interactive\\Raft\\User\\{{p|uid}}\\World}}" Rag Doll Joe: pageId: 130325 steam: 802050 @@ -129792,7 +126343,7 @@ Rag Doll Kung Fu: pageId: 13021 steam: 1002 templates: - - '{{Game data/config|Windows|{{p|game}}\data}}' + - "{{Game data/config|Windows|{{p|game}}\\data}}" RagTag: pageId: 128385 steam: 1013280 @@ -129815,8 +126366,8 @@ Rage Parking Simulator 2016: pageId: 44321 steam: 449630 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Crimson Duck Studios\Rage Parking Simulator 2016}}' - - '{{Game data/saves|Windows|{{p|hkcu}}\Software\Crimson Duck Studios\Rage Parking Simulator 2016}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Crimson Duck Studios\\Rage Parking Simulator 2016}}" + - "{{Game data/saves|Windows|{{p|hkcu}}\\Software\\Crimson Duck Studios\\Rage Parking Simulator 2016}}" Rage Parking Simulator 2017: pageId: 63811 steam: 656960 @@ -129826,7 +126377,7 @@ Rage Pig: Rage Quest: pageId: 74956 steam: 709290 -'Rage Quest: The Worst Game': +"Rage Quest: The Worst Game": pageId: 79912 steam: 570810 Rage Room: @@ -129849,12 +126400,12 @@ Rage of Mages: gog: 1459856053 pageId: 60157 templates: - - '{{Game data/saves|Windows|{{p|game}}\}}' -'Rage of Mages 2: Necromancer': + - "{{Game data/saves|Windows|{{p|game}}\\}}" +"Rage of Mages 2: Necromancer": gog: 1459856152 pageId: 60164 templates: - - '{{Game data/saves|Windows|{{p|game}}\}}' + - "{{Game data/saves|Windows|{{p|game}}\\}}" Rage of the Battlemage: pageId: 42157 steam: 504360 @@ -129873,8 +126424,8 @@ Raging Loop: - レイジングループ steam: 648100 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\kemco\レイジングループ\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\kemco\レイジングループ\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\kemco\\レイジングループ\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\kemco\\レイジングループ\\}}" Raging Titan: pageId: 51441 steam: 538170 @@ -129893,11 +126444,11 @@ Ragnarok Online: pageId: 15668 steam: 250740 templates: - - '{{Game data/config|Windows|{{p|game}}\savedata}}' + - "{{Game data/config|Windows|{{p|game}}\\savedata}}" Ragnarok Online 2: pageId: 40630 steam: 231060 -'Ragnarok RE:START': +"Ragnarok RE:START": pageId: 65614 steam: 660330 Ragtag Adventurers: @@ -129906,7 +126457,7 @@ Ragtag Adventurers: Ragtag Crew: pageId: 105689 steam: 882590 -'RaiOhGar: Asuka and the King of Steel': +"RaiOhGar: Asuka and the King of Steel": pageId: 154271 steam: 1163070 Raid On Coasts: @@ -129921,45 +126472,45 @@ Raid on Area 51: Raid on the Ruhr: pageId: 130263 steam: 986340 -'Raid: Shadow Legends': +"Raid: Shadow Legends": pageId: 157614 templates: - - '{{Game data/config|Windows|{{p|HKCU}}\Software\Plarium\Raid: Shadow Legends}}' + - "{{Game data/config|Windows|{{p|HKCU}}\\Software\\Plarium\\Raid: Shadow Legends}}" Raiden: pageId: 176745 Raiden II: pageId: 126678 templates: - - '{{Game data/config|Windows|{{p|hklm}}\SOFTWARE\{{p|wow64}}\Gamebank\RaidenII}}' - - '{{Game data/saves|Windows|{{p|hklm}}\SOFTWARE\{{p|wow64}}\Gamebank\RaidenII}}' + - "{{Game data/config|Windows|{{p|hklm}}\\SOFTWARE\\{{p|wow64}}\\Gamebank\\RaidenII}}" + - "{{Game data/saves|Windows|{{p|hklm}}\\SOFTWARE\\{{p|wow64}}\\Gamebank\\RaidenII}}" Raiden III Digital Edition: gog: 1207666023 pageId: 23114 steam: 315670 templates: - - '{{Game data/config|Windows|{{p|game}}\settings.dat}}' - - '{{Game data/saves|Windows|{{p|game}}\hiscore.dat}}' + - "{{Game data/config|Windows|{{p|game}}\\settings.dat}}" + - "{{Game data/saves|Windows|{{p|game}}\\hiscore.dat}}" Raiden III x MIKADO MANIAX: pageId: 184513 steam: 2002860 Raiden IV x MIKADO remix: pageId: 179898 steam: 2002850 -'Raiden IV: OverKill': +"Raiden IV: OverKill": gog: 1445524380 pageId: 31515 steam: 323460 templates: - - '{{Game data/config|Windows|{{p|game}}\Raiden IV - OverKill\Save\setting.dat}}' - - '{{Game data/saves|Windows|{{p|game}}\Raiden IV - OverKill\Save\raiden_setting.bin}}' + - "{{Game data/config|Windows|{{p|game}}\\Raiden IV - OverKill\\Save\\setting.dat}}" + - "{{Game data/saves|Windows|{{p|game}}\\Raiden IV - OverKill\\Save\\raiden_setting.bin}}" Raiden Legacy: gog: 1207659226 pageId: 13343 steam: 407600 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\raidenlegacy\UserDefault.xml}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\raidenlegacy}}' -'Raiden V: Director''s Cut': + - "{{Game data/config|Windows|{{p|localappdata}}\\raidenlegacy\\UserDefault.xml}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\raidenlegacy}}" +"Raiden V: Director's Cut": gog: 1462576795 pageId: 72588 steam: 570050 @@ -129982,8 +126533,8 @@ RaidersSphere4th: pageId: 33654 steam: 340860 templates: - - '{{Game data/config|Windows|{{p|game}}\savedata\}}' - - '{{Game data/saves|Windows|{{p|game}}\savedata\}}' + - "{{Game data/config|Windows|{{p|game}}\\savedata\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\savedata\\}}" Raiding Area 51 - Break out Waifu: pageId: 145914 steam: 1132360 @@ -130003,16 +126554,16 @@ Rail Route: pageId: 169407 steam: 1124180 templates: - - '{{Game data/config|Windows|{{P|userprofile\appdata\locallow}}\bitrich\Rail Route\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Logs/bitrich/Rail Route}}' - - '{{Game data/config|Linux|/.config/unity3d/bitrich/Rail Route}}' - - '{{Game data/saves|Windows|{{p|USERPROFILE\AppData\LocalLow}}\bitrich\Rail Route\saves\game.gd.gz}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/RailRoute/saves/game.gd.gz}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/bitrich/Rail Route/saves/game.gd.gz}}' + - "{{Game data/config|Windows|{{P|userprofile\\appdata\\locallow}}\\bitrich\\Rail Route\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Logs/bitrich/Rail Route}}" + - "{{Game data/config|Linux|/.config/unity3d/bitrich/Rail Route}}" + - "{{Game data/saves|Windows|{{p|USERPROFILE\\AppData\\LocalLow}}\\bitrich\\Rail Route\\saves\\game.gd.gz}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/RailRoute/saves/game.gd.gz}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/bitrich/Rail Route/saves/game.gd.gz}}" Rail Simulator: pageId: 147651 templates: - - '{{Game data/config|Windows|{{p|game}}\config.xml}}' + - "{{Game data/config|Windows|{{p|game}}\\config.xml}}" Rail World: pageId: 122105 steam: 873910 @@ -130024,9 +126575,9 @@ Railbound: pageId: 184289 steam: 1967510 templates: - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Afterburn/Railbound/*.es3}}' - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\Afterburn\Railbound\*.es3}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Afterburn/Railbound/*.es3}}' + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Afterburn/Railbound/*.es3}}" + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\Afterburn\\Railbound\\*.es3}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Afterburn/Railbound/*.es3}}" Railed: pageId: 124348 steam: 724690 @@ -130034,7 +126585,7 @@ Railgrade: pageId: 172531 steam: 1355090 templates: - - '{{Game data/saves|Windows|C:\Users\NAME\AppData\Local\Railgrade\Saved\SaveGames}}' + - "{{Game data/saves|Windows|C:\\Users\\NAME\\AppData\\Local\\Railgrade\\Saved\\SaveGames}}" Railgunners: pageId: 73981 steam: 723130 @@ -130042,7 +126593,7 @@ Railroad Corporation: pageId: 124520 steam: 797400 templates: - - '{{Game data/saves|Windows|{{p|localappdata}}\Corbie Games\Railroad Corporation\*.sav}}' + - "{{Game data/saves|Windows|{{p|localappdata}}\\Corbie Games\\Railroad Corporation\\*.sav}}" Railroad Corporation 2: pageId: 187615 steam: 1677970 @@ -130056,8 +126607,8 @@ Railroad Pioneer: pageId: 50021 steam: 306490 templates: - - '{{Game data/config|Windows|{{p|game}}\Bin\Railroad.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\Data\Save}}' + - "{{Game data/config|Windows|{{p|game}}\\Bin\\Railroad.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\Data\\Save}}" Railroad Tracks: pageId: 98910 steam: 888070 @@ -130066,14 +126617,14 @@ Railroad Tycoon 3: pageId: 3865 steam: 7610 templates: - - '{{Game data/config|Windows|{{p|game}}\Data\Configuration}}' - - '{{Game data/saves|Windows|{{p|game}}\Saved Games}}' + - "{{Game data/config|Windows|{{p|game}}\\Data\\Configuration}}" + - "{{Game data/saves|Windows|{{p|game}}\\Saved Games}}" Railroad Tycoon II: gog: 1445250876 pageId: 8887 steam: 7620 templates: - - '{{Game data/saves|Windows|{{p|game}}\games}}' + - "{{Game data/saves|Windows|{{p|game}}\\games}}" Railroad X: pageId: 50097 steam: 251020 @@ -130087,31 +126638,27 @@ Railway Empire: pageId: 58475 steam: 503940 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Railway Empire\settings\settings.dat}}' - - >- - {{Game data/config|Epic Games - Store|{{P|localappdata}}\Temp\EpicRailwayEmpire\datastorage\93b333eb973b45b582f3bdf68dfc1dc9\*\settings\settings.dat}} - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Railway Empire\savegames\}}' - - >- - {{Game data/saves|Epic Games - Store|{{P|localappdata}}\Temp\EpicRailwayEmpire\datastorage\93b333eb973b45b582f3bdf68dfc1dc9\*\savegames\}} - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\503940\remote\savegames\}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/Kalypso Media/Railway Empire/docs/savegames/}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Railway Empire\\settings\\settings.dat}}" + - "{{Game data/config|Epic Games Store|{{P|localappdata}}\\Temp\\EpicRailwayEmpire\\datastorage\\93b333eb973b45b582f3bdf68dfc1dc9\\*\\settings\\settings.dat}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Railway Empire\\savegames\\}}" + - "{{Game data/saves|Epic Games Store|{{P|localappdata}}\\Temp\\EpicRailwayEmpire\\datastorage\\93b333eb973b45b582f3bdf68dfc1dc9\\*\\savegames\\}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\503940\\remote\\savegames\\}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/Kalypso Media/Railway Empire/docs/savegames/}}" Railway Empire 2: pageId: 187389 steam: 1644320 Railway Islands - Puzzle: pageId: 183229 steam: 1807930 -'Railway Saga: Land King': +"Railway Saga: Land King": pageId: 136391 steam: 955170 -'Rain Blood Chronicles: Mirage': +"Rain Blood Chronicles: Mirage": pageId: 12343 steam: 240660 templates: - - '{{Game data/config|Windows|{{p|game}}\GlobalSave}}' - - '{{Game data/saves|Windows|{{p|game}}\GameSave}}' + - "{{Game data/config|Windows|{{p|game}}\\GlobalSave}}" + - "{{Game data/saves|Windows|{{p|game}}\\GameSave}}" Rain Project: pageId: 89684 steam: 810780 @@ -130124,35 +126671,33 @@ Rain World: steamSide: - 1933390 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\Videocult\Rain World\options}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Videocult\Rain World\}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Videocult\\Rain World\\options}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Videocult\\Rain World\\}}" Rain of Fire: pageId: 149947 steam: 1170870 Rain of Pumpkins: pageId: 74862 steam: 659160 -'Rain of Reflections: Set Free': +"Rain of Reflections: Set Free": pageId: 122231 steam: 695050 Rain on Your Parade: pageId: 157110 steam: 1213230 templates: - - '{{Game data/config|Windows|{{P|userprofile\appdata\locallow}}\Unbound Creations\Rain on Your Parade\}}' - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Unbound Creations\Rain on Your Parade\saves}}' - - >- - {{Game data/saves|Microsoft - Store|{{P|localappdata}}\Packages\UnboundCreations.RainonYourParade_8hzbqm23g39hj\SystemAppData\wgs\}} -Rain's love memory-雨的恋记: + - "{{Game data/config|Windows|{{P|userprofile\\appdata\\locallow}}\\Unbound Creations\\Rain on Your Parade\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Unbound Creations\\Rain on Your Parade\\saves}}" + - "{{Game data/saves|Microsoft Store|{{P|localappdata}}\\Packages\\UnboundCreations.RainonYourParade_8hzbqm23g39hj\\SystemAppData\\wgs\\}}" +"Rain's love memory-雨的恋记": pageId: 134825 steam: 1058000 -'Rainbow Billy: The Curse of the Leviathan': +"Rainbow Billy: The Curse of the Leviathan": gog: 2045714816 pageId: 157444 steam: 1106830 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Manavoid\RainbowBilly\SaveFiles\*}}' + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Manavoid\\RainbowBilly\\SaveFiles\\*}}" Rainbow Cotton: pageId: 190057 Rainbow Cult: @@ -130167,7 +126712,7 @@ Rainbow Duck: Rainbow Hero: pageId: 48435 steam: 343570 -'Rainbow High: Runway Rush': +"Rainbow High: Runway Rush": pageId: 191295 Rainbow Hunter: pageId: 135141 @@ -130175,7 +126720,7 @@ Rainbow Hunter: Rainbow Islands (2002): pageId: 131264 templates: - - '{{Game data/config|Windows|{{p|game}}/rainbow.cfg}}' + - "{{Game data/config|Windows|{{p|game}}/rainbow.cfg}}" Rainbow Jigsaw: pageId: 141475 steam: 1119760 @@ -130220,7 +126765,7 @@ Rainswept: pageId: 79962 steam: 772290 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\FrostwoodInteractive\Rainswept}}' + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\FrostwoodInteractive\\Rainswept}}" Rainy Day Racer: pageId: 96345 steam: 862130 @@ -130238,18 +126783,14 @@ Raise Your Own Clone: Raise the Dead: pageId: 63048 steam: 645530 -'Raji: An Ancient Epic': +"Raji: An Ancient Epic": gog: 1302151555 pageId: 74331 steam: 730390 templates: - - >- - {{Game data/config|Microsoft - Store|{{P|localappdata}}\Packages\SUPER.COM.499901B22ECB3_khac1bdnsjzc4\LocalCache\Local\Raji\Saved\Config\WinGDK\}} - - '{{Game data/saves|Windows|{{P|localappdata}}\Raji\Saved\SaveGames}}' - - >- - {{Game data/saves|Microsoft - Store|{{P|localappdata}}\Packages\SUPER.COM.499901B22ECB3_khac1bdnsjzc4\SystemAppData\wgs\}} + - "{{Game data/config|Microsoft Store|{{P|localappdata}}\\Packages\\SUPER.COM.499901B22ECB3_khac1bdnsjzc4\\LocalCache\\Local\\Raji\\Saved\\Config\\WinGDK\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Raji\\Saved\\SaveGames}}" + - "{{Game data/saves|Microsoft Store|{{P|localappdata}}\\Packages\\SUPER.COM.499901B22ECB3_khac1bdnsjzc4\\SystemAppData\\wgs\\}}" Rake: pageId: 47285 steam: 386880 @@ -130257,24 +126798,24 @@ Rakuen: pageId: 54844 steam: 559210 templates: - - '{{Game data/config|Windows|{{p|game}}\Engine.ini | {{p|game}}\Launcher.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\Save*.rxdata}}' - - '{{Game data/saves|OS X|{{p|game}}/Save*.rxdata}}' + - "{{Game data/config|Windows|{{p|game}}\\Engine.ini | {{p|game}}\\Launcher.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\Save*.rxdata}}" + - "{{Game data/saves|OS X|{{p|game}}/Save*.rxdata}}" Ralf: pageId: 122010 steam: 958200 RalliSport Challenge: pageId: 59436 templates: - - '{{Game data/config|Windows|{{P|programdata}}\Microsoft\RalliSport Challenge\}}' - - '{{Game data/saves|Windows|{{P|programdata}}\Microsoft\RalliSport Challenge\}}' + - "{{Game data/config|Windows|{{P|programdata}}\\Microsoft\\RalliSport Challenge\\}}" + - "{{Game data/saves|Windows|{{P|programdata}}\\Microsoft\\RalliSport Challenge\\}}" Rally Challenge: pageId: 22469 Rally Championship Xtreme: pageId: 22702 templates: - - '{{Game data/config|Windows|{{p|game}}\Data\xtreme.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\Data\SavedGames\}}' + - "{{Game data/config|Windows|{{p|game}}\\Data\\xtreme.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\Data\\SavedGames\\}}" Rally Copters: pageId: 41679 steam: 454390 @@ -130284,42 +126825,42 @@ Rally Drift Cars: Rally Point: pageId: 167053 templates: - - '{{Game data/config|Windows|{{P|userprofile\appdata\locallow}}\XformGames\RallyPoint}}' - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\XformGames\RallyPoint}}' + - "{{Game data/config|Windows|{{P|userprofile\\appdata\\locallow}}\\XformGames\\RallyPoint}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\XformGames\\RallyPoint}}" Rally Point 2: pageId: 167055 templates: - - '{{Game data/config|Windows|{{P|userprofile\appdata\locallow}}\XformGames\RallyPoint2}}' - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\XformGames\RallyPoint2}}' + - "{{Game data/config|Windows|{{P|userprofile\\appdata\\locallow}}\\XformGames\\RallyPoint2}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\XformGames\\RallyPoint2}}" Rally Point 3: pageId: 167062 templates: - - '{{Game data/config|Windows|{{P|userprofile\appdata\locallow}}\XformGames\RallyPoint3}}' - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\XformGames\RallyPoint3}}' + - "{{Game data/config|Windows|{{P|userprofile\\appdata\\locallow}}\\XformGames\\RallyPoint3}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\XformGames\\RallyPoint3}}" Rally Point 4: pageId: 167066 templates: - - '{{Game data/config|Windows|{{P|userprofile\appdata\locallow}}\XformGames\RallyPoint4}}' - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\XformGames\RallyPoint4}}' - - '{{Game data/saves|Microsoft Store|{{p|localappdata}}\Packages\Xform.RallyPoint4_ma8nfcxkc08f0\LocalState}}' + - "{{Game data/config|Windows|{{P|userprofile\\appdata\\locallow}}\\XformGames\\RallyPoint4}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\XformGames\\RallyPoint4}}" + - "{{Game data/saves|Microsoft Store|{{p|localappdata}}\\Packages\\Xform.RallyPoint4_ma8nfcxkc08f0\\LocalState}}" Rally Point 5: pageId: 167069 templates: - - '{{Game data/config|Windows|{{P|userprofile\appdata\locallow}}\XformGames\RallyPoint5}}' - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\XformGames\RallyPoint5}}' + - "{{Game data/config|Windows|{{P|userprofile\\appdata\\locallow}}\\XformGames\\RallyPoint5}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\XformGames\\RallyPoint5}}" Rally Point 6: pageId: 167073 templates: - - '{{Game data/config|Windows|{{P|userprofile\appdata\locallow}}\XformGames\RallyPoint6}}' - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\XformGames\RallyPoint6}}' + - "{{Game data/config|Windows|{{P|userprofile\\appdata\\locallow}}\\XformGames\\RallyPoint6}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\XformGames\\RallyPoint6}}" Rally Racers: pageId: 77634 steam: 514530 Rally Trophy: pageId: 21708 templates: - - '{{Game data/config|Windows|{{p|game}}\Data\device.cfg|{{p|game}}\Data\options.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\SaveGame\}}' + - "{{Game data/config|Windows|{{p|game}}\\Data\\device.cfg|{{p|game}}\\Data\\options.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\SaveGame\\}}" Ram Boe: pageId: 43811 steam: 454720 @@ -130328,12 +126869,12 @@ Rama: Ramayana: pageId: 47807 steam: 371790 -'Rambo: The Video Game': +"Rambo: The Video Game": pageId: 50632 steam: 274130 templates: - - '{{Game data/config|Windows|{{P|userprofile}}\Saved Games\Reef Entertainment\Rambo The Video Game\}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\Saved Games\Reef Entertainment\Rambo The Video Game\}}' + - "{{Game data/config|Windows|{{P|userprofile}}\\Saved Games\\Reef Entertainment\\Rambo The Video Game\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\Saved Games\\Reef Entertainment\\Rambo The Video Game\\}}" Ramen: pageId: 90156 steam: 801870 @@ -130364,48 +126905,48 @@ Rampage of the Dead: Rampart: pageId: 75360 templates: - - '{{Game data/config|DOS|{{p|game}}\RAMPART.CFG}}' - - '{{Game data/saves|DOS|{{p|game}}\RAMPART.HIS}}' + - "{{Game data/config|DOS|{{p|game}}\\RAMPART.CFG}}" + - "{{Game data/saves|DOS|{{p|game}}\\RAMPART.HIS}}" Rampart Tactics: pageId: 136641 steam: 1080360 -'Ramses: Rise of Empire': +"Ramses: Rise of Empire": pageId: 179486 steam: 1480400 -'Rance 01: Quest for Hikari': +"Rance 01: Quest for Hikari": gog: 1282391412 gogSide: - 1272604591 pageId: 181140 templates: - - '{{Game data/saves|Windows|{{P|userprofile}}\Documents\AliceSoft\Rance01\SaveData\}}' + - "{{Game data/saves|Windows|{{P|userprofile}}\\Documents\\AliceSoft\\Rance01\\SaveData\\}}" Rance IX: pageId: 185575 templates: - - '{{Game data/saves|Windows|{{p|userprofile\documents}}\AliceSoft\Rance 9 - The Helmanian Revolution\SaveData}}' + - "{{Game data/saves|Windows|{{p|userprofile\\documents}}\\AliceSoft\\Rance 9 - The Helmanian Revolution\\SaveData}}" Rance Quest: pageId: 185755 templates: - - '{{Game data/saves|Windows|{{p|userprofile\documents}}\AliceSoft\Rance Quest\SaveData}}' + - "{{Game data/saves|Windows|{{p|userprofile\\documents}}\\AliceSoft\\Rance Quest\\SaveData}}" Ranch Rush 2: pageId: 180901 Ranch Simulator: pageId: 142081 steam: 1119730 templates: - - '{{Game data/saves|Windows|{{P|localappdata}}\Ranch_Simulator\Saved\SaveGames}}' + - "{{Game data/saves|Windows|{{P|localappdata}}\\Ranch_Simulator\\Saved\\SaveGames}}" Rand-O-mazE: pageId: 114862 steam: 949570 -Randal's Monday: +"Randal's Monday": gog: 1207666553 pageId: 20831 steam: 314810 templates: - - '{{Game data/config|Windows|{{P|localappdata}}/Daedalic Entertainment GmbH/Randal''s Monday/}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Daedalic Entertainment GmbH/Randal''s Monday/}}' - - '{{Game data/saves|Windows|{{P|localappdata}}/Daedalic Entertainment GmbH/Randal''s Monday/}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Daedalic Entertainment GmbH/Randal''s Monday/}}' + - "{{Game data/config|Windows|{{P|localappdata}}/Daedalic Entertainment GmbH/Randal's Monday/}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Daedalic Entertainment GmbH/Randal's Monday/}}" + - "{{Game data/saves|Windows|{{P|localappdata}}/Daedalic Entertainment GmbH/Randal's Monday/}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Daedalic Entertainment GmbH/Randal's Monday/}}" Randall: pageId: 62510 steam: 603840 @@ -130430,7 +126971,7 @@ Range Ball: Range Day VR: pageId: 59109 steam: 601750 -Ranger in Spider's den: +"Ranger in Spider's den": pageId: 108352 steam: 914920 Ranger of the Jungle: @@ -130476,22 +127017,22 @@ Raptainment: Raptor Valley: pageId: 38843 steam: 524120 -'Raptor: Call of the Shadows': +"Raptor: Call of the Shadows": pageId: 20530 steam: 358360 templates: - - '{{Game data/config|DOS|{{p|game}}\SETUP.INI}}' - - '{{Game data/saves|DOS|{{p|game}}\CHAR****.FIL}}' -'Raptor: Call of the Shadows 2010 Edition': + - "{{Game data/config|DOS|{{p|game}}\\SETUP.INI}}" + - "{{Game data/saves|DOS|{{p|game}}\\CHAR****.FIL}}" +"Raptor: Call of the Shadows 2010 Edition": gog: 1207658879 pageId: 13092 steam: 336060 templates: - - '{{Game data/config|Windows|{{p|game}}\saveoptions.dat}}' - - '{{Game data/config|Steam|{{p|steam}}\userdata\{{p|uid}}\336060\remote\}}' - - '{{Game data/saves|Windows|{{p|game}}\CHAR****.FIL}}' - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\336060\remote\}}' -'Raptor: Cretaceous Island': + - "{{Game data/config|Windows|{{p|game}}\\saveoptions.dat}}" + - "{{Game data/config|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\336060\\remote\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\CHAR****.FIL}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\336060\\remote\\}}" +"Raptor: Cretaceous Island": pageId: 122150 steam: 929230 Rapture - World Conquest: @@ -130513,16 +127054,16 @@ Rasetsu Fumaden: pageId: 189238 steam: 1844400 templates: - - '{{Game data/config|Windows|{{p|game}}\Rasetsu Fumaden_Data\Save\OptionData.data}}' - - '{{Game data/saves|Windows|{{p|game}}\Rasetsu Fumaden_Data\Save\Save*.data}}' + - "{{Game data/config|Windows|{{p|game}}\\Rasetsu Fumaden_Data\\Save\\OptionData.data}}" + - "{{Game data/saves|Windows|{{p|game}}\\Rasetsu Fumaden_Data\\Save\\Save*.data}}" Rashlander: pageId: 132807 steam: 1054270 Rastan: pageId: 73416 templates: - - '{{Game data/config|DOS|{{p|game}}\RASTAN.CFG}}' - - '{{Game data/saves|DOS|{{p|game}}\RASTAN.SCR}}' + - "{{Game data/config|DOS|{{p|game}}\\RASTAN.CFG}}" + - "{{Game data/saves|DOS|{{p|game}}\\RASTAN.SCR}}" Rasty Pelican: pageId: 75492 steam: 746300 @@ -130532,8 +127073,8 @@ Rat Arena: Rat Hunter: pageId: 68015 templates: - - '{{Game data/config|Windows|{{p|game}}\bin\config.xml|{{p|game}}\bin\controls.xml}}' - - '{{Game data/saves|Windows|{{p|game}}\Data\SavedGames\}}' + - "{{Game data/config|Windows|{{p|game}}\\bin\\config.xml|{{p|game}}\\bin\\controls.xml}}" + - "{{Game data/saves|Windows|{{p|game}}\\Data\\SavedGames\\}}" Rat Racer: pageId: 156907 steam: 1199360 @@ -130543,16 +127084,14 @@ Rat Simulator: Ratatouille: pageId: 87821 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Asobo Studio\Ratatouile}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Asobo Studio\Ratatouille}}' -'Ratchet & Clank: Rift Apart': + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Asobo Studio\\Ratatouile}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Asobo Studio\\Ratatouille}}" +"Ratchet & Clank: Rift Apart": pageId: 187437 steam: 1895880 templates: - - >- - {{Game data/config|Windows|{{P|userprofile\Documents}}\Ratchet & Clank - Rift - Apart\{{P|uid}}\-userprefs.save
{{P|hkcu}}\Software\Insomniac Games\Ratchet & Clank - Rift Apart}} - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\Ratchet & Clank - Rift Apart\{{P|uid}}\}}' + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\Ratchet & Clank - Rift Apart\\{{P|uid}}\\-userprefs.save
{{P|hkcu}}\\Software\\Insomniac Games\\Ratchet & Clank - Rift Apart}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\Ratchet & Clank - Rift Apart\\{{P|uid}}\\}}" Ratergy: pageId: 90176 steam: 815480 @@ -130563,16 +127102,16 @@ Ratropolis: pageId: 145172 steam: 1108370 templates: - - '{{Game data/saves|Windows|{{P|game}}\Ratropolis_Data\SaveFile}}' + - "{{Game data/saves|Windows|{{P|game}}\\Ratropolis_Data\\SaveFile}}" Rats: pageId: 34022 steam: 347510 templates: - - '{{Game data/saves|Windows|{{p|localappdata}}\Rats}}' + - "{{Game data/saves|Windows|{{p|localappdata}}\\Rats}}" Rats for Breakfast: pageId: 157237 steam: 1199390 -'Rats, Bats, and Bones': +"Rats, Bats, and Bones": pageId: 124056 steam: 845690 Ratten Reich: @@ -130581,7 +127120,7 @@ Ratten Reich: Rattler Race: pageId: 7935 templates: - - '{{Game data/config|Windows|{{p|windir}}\entpack.ini}}' + - "{{Game data/config|Windows|{{p|windir}}\\entpack.ini}}" Ratty Catty: pageId: 66009 steam: 610380 @@ -130601,41 +127140,41 @@ Raven Squad: pageId: 157524 steam: 38200 templates: - - '{{Game data/config|Windows|{{p|userprofile\documents}}\Raven Squad\Profiles\profile001\profile.inf}}' - - '{{Game data/saves|Windows|{{p|userprofile\documents}}\Raven Squad\Profiles\profile001\saves}}' -Raven's Hike: + - "{{Game data/config|Windows|{{p|userprofile\\documents}}\\Raven Squad\\Profiles\\profile001\\profile.inf}}" + - "{{Game data/saves|Windows|{{p|userprofile\\documents}}\\Raven Squad\\Profiles\\profile001\\saves}}" +"Raven's Hike": pageId: 177337 steam: 1689270 -'Raven: The Last Neko Slayer': +"Raven: The Last Neko Slayer": pageId: 125831 steam: 1007470 Ravenfield: pageId: 62312 steam: 636480 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\SteelRaven7\Ravenfield}}' - - '{{Game data/config|Linux|{{p|xdgconfighome}}/unity3d/SteelRaven7/RavenfieldSteam}}' - - '{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/SteelRaven7/RavenfieldSteam/Saves}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\SteelRaven7\\Ravenfield}}" + - "{{Game data/config|Linux|{{p|xdgconfighome}}/unity3d/SteelRaven7/RavenfieldSteam}}" + - "{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/SteelRaven7/RavenfieldSteam/Saves}}" Ravenland: pageId: 126478 steam: 997710 -'Ravenloft: Stone Prophet': +"Ravenloft: Stone Prophet": gog: 1432906190 pageId: 61923 steam: 1904560 templates: - - '{{Game data/config|DOS|{{p|game}}\GAME.OPT}}' - - '{{Game data/saves|DOS|{{p|game}}\SAVE**\}}' -'Ravenloft: Strahd''s Possession': + - "{{Game data/config|DOS|{{p|game}}\\GAME.OPT}}" + - "{{Game data/saves|DOS|{{p|game}}\\SAVE**\\}}" +"Ravenloft: Strahd's Possession": gog: 1432905053 pageId: 61920 steam: 1904570 templates: - - '{{Game data/config|DOS|{{p|game}}\GAME.OPT}}' - - '{{Game data/saves|DOS|{{p|game}}\SAVE**\}}' + - "{{Game data/config|DOS|{{p|game}}\\GAME.OPT}}" + - "{{Game data/saves|DOS|{{p|game}}\\SAVE**\\}}" Ravenlok: pageId: 186893 -'Ravenmark: Scourge of Estellion': +"Ravenmark: Scourge of Estellion": pageId: 46506 steam: 365480 Ravenous Devils: @@ -130643,17 +127182,17 @@ Ravenous Devils: pageId: 177365 steam: 1615290 templates: - - '{{Game data/saves|Windows|{{p|localappdata}}\Ravenous_Devils\Saved\SaveGames}}' + - "{{Game data/saves|Windows|{{p|localappdata}}\\Ravenous_Devils\\Saved\\SaveGames}}" Ravensgard Arena: pageId: 113594 steam: 906260 -'Ravensword: Shadowlands': +"Ravensword: Shadowlands": pageId: 24318 steam: 253410 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Crescent Moon Games LLC\Ravensword2}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Crescent Moon Games LLC\Ravensword2\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Caches/com.crescentmoongames.ravensword2mac}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Crescent Moon Games LLC\\Ravensword2}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Crescent Moon Games LLC\\Ravensword2\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Caches/com.crescentmoongames.ravensword2mac}}" Ravesta Racing: pageId: 157261 steam: 1212180 @@ -130664,11 +127203,11 @@ Raw Data: pageId: 38053 steam: 436320 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\RawData\Saved\Config\WindowsNoEditor\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\RawData\\Saved\\Config\\WindowsNoEditor\\}}" Raw Footage: pageId: 88233 steam: 812090 -'Raxx: The Painted Dog': +"Raxx: The Painted Dog": pageId: 185335 Ray Eager: pageId: 153300 @@ -130682,22 +127221,22 @@ Ray Versus: Ray of Light: pageId: 99874 steam: 891100 -Ray's The Dead: +"Ray's The Dead": pageId: 39602 steam: 251650 -Ray'z Arcade Chronology: +"Ray'z Arcade Chronology": pageId: 189003 steam: 2478020 RayCrisis: pageId: 143165 templates: - - '{{Game data/config|Windows|{{p|game}}\CONFIG.SGS}}' - - '{{Game data/saves|Windows|{{p|game}}\UVSAVE.BIN}}' + - "{{Game data/config|Windows|{{p|game}}\\CONFIG.SGS}}" + - "{{Game data/saves|Windows|{{p|game}}\\UVSAVE.BIN}}" RayStorm: pageId: 35809 templates: - - '{{Game data/config|Windows|{{p|game}}\CONFIG.SGS}}' - - '{{Game data/saves|Windows|{{p|game}}\bu00_BISLPS_00678}}' + - "{{Game data/config|Windows|{{p|game}}\\CONFIG.SGS}}" + - "{{Game data/saves|Windows|{{p|game}}\\bu00_BISLPS_00678}}" Rayball: pageId: 138556 steam: 1071970 @@ -130720,103 +127259,97 @@ Rayman: gog: 1207658919 pageId: 10783 templates: - - '{{Game data/config|DOS|{{p|game}}\RAYMAN.CFG}}' - - '{{Game data/saves|DOS|{{p|game}}\RAYMAN#.SAV}}' -'Rayman 2: The Great Escape': + - "{{Game data/config|DOS|{{p|game}}\\RAYMAN.CFG}}" + - "{{Game data/saves|DOS|{{p|game}}\\RAYMAN#.SAV}}" +"Rayman 2: The Great Escape": gog: 1207658940 pageId: 7330 steam: 15060 templates: - - '{{Game data/config|Windows|{{p|game}}\Data\Options\|{{p|game}}\ubi.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\Data\SaveGame\}}' -'Rayman 3: Hoodlum Havoc': + - "{{Game data/config|Windows|{{p|game}}\\Data\\Options\\|{{p|game}}\\ubi.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\Data\\SaveGame\\}}" +"Rayman 3: Hoodlum Havoc": gog: 1207658947 pageId: 9397 templates: - - '{{Game data/config|Windows|{{p|windir}}\UbiSoft\ubi.ini}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Preferences/Ubisoft/Rayman 3/Preferences Data}}' - - '{{Game data/saves|Windows|{{p|game}}\GAMEDATA\SaveGame\*.sav}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Preferences/Ubisoft/Rayman 3/Saved/*.sav}}' + - "{{Game data/config|Windows|{{p|windir}}\\UbiSoft\\ubi.ini}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Preferences/Ubisoft/Rayman 3/Preferences Data}}" + - "{{Game data/saves|Windows|{{p|game}}\\GAMEDATA\\SaveGame\\*.sav}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Preferences/Ubisoft/Rayman 3/Saved/*.sav}}" Rayman 60 Levels: pageId: 142593 templates: - - '{{Game data/config|DOS|{{p|game}}\RAYFAN.CFG}}' - - '{{Game data/saves|DOS|{{p|game}}\PCMAP\*.SCT}}' + - "{{Game data/config|DOS|{{p|game}}\\RAYFAN.CFG}}" + - "{{Game data/saves|DOS|{{p|game}}\\PCMAP\\*.SCT}}" Rayman By His Fans: gog: 1207658919 pageId: 142583 templates: - - '{{Game data/config|DOS|{{p|game}}\RAYFAN.CFG}}' - - '{{Game data/saves|DOS|{{p|game}}\PCMAP\*.SCT}}' + - "{{Game data/config|DOS|{{p|game}}\\RAYFAN.CFG}}" + - "{{Game data/saves|DOS|{{p|game}}\\PCMAP\\*.SCT}}" Rayman Designer: gog: 1207658919 pageId: 75959 templates: - - '{{Game data/config|DOS|{{p|game}}\RAYKIT.CFG}}' - - '{{Game data/saves|DOS|{{p|game}}\PCMAP\*.SCT}}' + - "{{Game data/config|DOS|{{p|game}}\\RAYKIT.CFG}}" + - "{{Game data/saves|DOS|{{p|game}}\\PCMAP\\*.SCT}}" Rayman Fiesta Run: pageId: 74002 templates: - - >- - {{Game data/config | Microsoft Store | - {{p|localappdata}}\Packages\Ubisoft.RaymanFiestaRun_ngz4m417e0mpw|{{p|localappdata}}\Packages\Ubisoft.RaymanFiestaRunWindows10Edition_ngz4m417e0mpw|{{p|localappdata}}\Packages\UbisoftEntertainment.RaymanFiestaRunPreloadEdition_dbgk1hhpxymar - }} - - '{{Game data/saves|Ubisoft Connect|{{p|uplay}}\savegames\{{p|uid}}\5860\}}' - - >- - {{Game data/saves | Microsoft Store | - {{p|localappdata}}\Packages\Ubisoft.RaymanFiestaRun_ngz4m417e0mpw|{{p|localappdata}}\Packages\Ubisoft.RaymanFiestaRunWindows10Edition_ngz4m417e0mpw|{{p|localappdata}}\Packages\UbisoftEntertainment.RaymanFiestaRunPreloadEdition_dbgk1hhpxymar - }} + - "{{Game data/config | Microsoft Store | {{p|localappdata}}\\Packages\\Ubisoft.RaymanFiestaRun_ngz4m417e0mpw|{{p|localappdata}}\\Packages\\Ubisoft.RaymanFiestaRunWindows10Edition_ngz4m417e0mpw|{{p|localappdata}}\\Packages\\UbisoftEntertainment.RaymanFiestaRunPreloadEdition_dbgk1hhpxymar }}" + - "{{Game data/saves|Ubisoft Connect|{{p|uplay}}\\savegames\\{{p|uid}}\\5860\\}}" + - "{{Game data/saves | Microsoft Store | {{p|localappdata}}\\Packages\\Ubisoft.RaymanFiestaRun_ngz4m417e0mpw|{{p|localappdata}}\\Packages\\Ubisoft.RaymanFiestaRunWindows10Edition_ngz4m417e0mpw|{{p|localappdata}}\\Packages\\UbisoftEntertainment.RaymanFiestaRunPreloadEdition_dbgk1hhpxymar }}" Rayman Jungle Run: pageId: 19499 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Packages\UbisoftEntertainment.RaymanJungleRun_dbgk1hhpxymar}}' - - '{{Game data/saves|Ubisoft Connect|{{p|uplay}}\savegames\{{p|uid}}\5850\}}' - - '{{Game data/saves|Microsoft Store|{{p|localappdata}}\Packages\UbisoftEntertainment.RaymanJungleRun_dbgk1hhpxymar}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Packages\\UbisoftEntertainment.RaymanJungleRun_dbgk1hhpxymar}}" + - "{{Game data/saves|Ubisoft Connect|{{p|uplay}}\\savegames\\{{p|uid}}\\5850\\}}" + - "{{Game data/saves|Microsoft Store|{{p|localappdata}}\\Packages\\UbisoftEntertainment.RaymanJungleRun_dbgk1hhpxymar}}" Rayman Legends: pageId: 9414 steam: 242550 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Ubisoft\Rayman Legends\Settings\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Rayman Legends\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Ubisoft\\Rayman Legends\\Settings\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Rayman Legends\\}}" Rayman M: pageId: 17882 templates: - - '{{Game data/config|Windows|{{p|windir}}\Ubisoft\ubi.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\MENU\SaveGame\raymanm.sav}}' + - "{{Game data/config|Windows|{{p|windir}}\\Ubisoft\\ubi.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\MENU\\SaveGame\\raymanm.sav}}" Rayman Mini: pageId: 148165 templates: - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Containers/com.ubisoft.raymanarcade/Library/}}' + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Containers/com.ubisoft.raymanarcade/Library/}}" Rayman Origins: gog: 1207659234 pageId: 1958 steam: 207490 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Ubisoft\RaymanOrigins\Settings\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Application Support/Feral Interactive/Rayman Origins/}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Rayman Origins\Savegame\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Application Support/Feral Interactive/Rayman Origins/Savegame}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Ubisoft\\RaymanOrigins\\Settings\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Application Support/Feral Interactive/Rayman Origins/}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Rayman Origins\\Savegame\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Application Support/Feral Interactive/Rayman Origins/Savegame}}" Rayman Raving Rabbids: gog: 1453737805 pageId: 17912 steam: 15080 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Ubisoft\Rayman4}}' - - '{{Game data/saves|Windows|{{p|game}}\Rayman4.sav}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Ubisoft\\Rayman4}}" + - "{{Game data/saves|Windows|{{p|game}}\\Rayman4.sav}}" Rayman Raving Rabbids 2: pageId: 139888 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Ubisoft\Rayman Raving Rabbids 2}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\RRR2\RRR2*.sav}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Ubisoft\\Rayman Raving Rabbids 2}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\RRR2\\RRR2*.sav}}" Rayman Redemption: pageId: 162771 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\RaymanRedemption\options.ini}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\RaymanRedemption}}' -Raymond's Obstacle Course: + - "{{Game data/config|Windows|{{p|localappdata}}\\RaymanRedemption\\options.ini}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\RaymanRedemption}}" +"Raymond's Obstacle Course": pageId: 80561 steam: 756980 -'Rayon Riddles: Rise of the Goblin King': +"Rayon Riddles: Rise of the Goblin King": pageId: 38803 steam: 433480 Raywin: @@ -130829,12 +127362,12 @@ Razenroth: pageId: 46655 steam: 340830 templates: - - '{{Game data/config|Linux|{{p|xdgconfighome}}/unity3d/Enitvare/Razenroth/prefs}}' - - '{{Game data/saves|Linux|{{p|xdgdatahome}}/Enitvare/Razenroth/Saves/*.drv}}' -'Razerwire:Nanowars': + - "{{Game data/config|Linux|{{p|xdgconfighome}}/unity3d/Enitvare/Razenroth/prefs}}" + - "{{Game data/saves|Linux|{{p|xdgdatahome}}/Enitvare/Razenroth/Saves/*.drv}}" +"Razerwire:Nanowars": pageId: 82373 steam: 788930 -'Razor2: Hidden Skies': +"Razor2: Hidden Skies": pageId: 51066 steam: 34920 Razortron 2000: @@ -130857,9 +127390,7 @@ Re-Legion: pageId: 92327 steam: 782140 templates: - - >- - {{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Ice Code Games\Re-Legion\Elion - Saves\*|{{p|userprofile}}\AppData\LocalLow\Ice Code Games\Re-Legion\save screens\*}} + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Ice Code Games\\Re-Legion\\Elion Saves\\*|{{p|userprofile}}\\AppData\\LocalLow\\Ice Code Games\\Re-Legion\\save screens\\*}}" Re-Loaded: pageId: 47121 renamedFrom: @@ -130875,39 +127406,39 @@ Re-Volt: pageId: 2262 steam: 287310 templates: - - '{{Game data/config|Windows|{{p|hklm}}\SOFTWARE\{{p|wow64}}\Acclaim\Re-Volt\1.0\}}' - - '{{Game data/saves|Windows|{{p|hklm}}\SOFTWARE\{{p|wow64}}\Acclaim\Re-Volt\1.0\}}' + - "{{Game data/config|Windows|{{p|hklm}}\\SOFTWARE\\{{p|wow64}}\\Acclaim\\Re-Volt\\1.0\\}}" + - "{{Game data/saves|Windows|{{p|hklm}}\\SOFTWARE\\{{p|wow64}}\\Acclaim\\Re-Volt\\1.0\\}}" Re-bot VR: pageId: 76592 steam: 754000 Re.poly: pageId: 142147 steam: 970300 -'Re: Award': +"Re: Award": pageId: 181011 steam: 1390860 -'Re: LieF ~Shin''ainaru Anata e~': +"Re: LieF ~Shin'ainaru Anata e~": pageId: 165053 -'Re:Gals Panic': +"Re:Gals Panic": pageId: 148416 steam: 1154720 -'Re:Legend': +"Re:Legend": pageId: 128646 steam: 823950 templates: - - '{{Game data/saves|Windows|{{p|userprofile\AppData\LocalLow}}\Magnus Games Studio\ReLegend\}}' -'Re:ZERO -Starting Life in Another World- The Prophecy of the Throne': + - "{{Game data/saves|Windows|{{p|userprofile\\AppData\\LocalLow}}\\Magnus Games Studio\\ReLegend\\}}" +"Re:ZERO -Starting Life in Another World- The Prophecy of the Throne": pageId: 166164 steam: 1277510 templates: - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\My Games\ReZERO-TPT\Saves\}}' -'Re;Lord 1: The Witch of Herfort and Stuffed Animals': + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\My Games\\ReZERO-TPT\\Saves\\}}" +"Re;Lord 1: The Witch of Herfort and Stuffed Animals": gog: 2143232690 pageId: 89192 renamedFrom: - Re;Lord 1 ~The Witch of Herfort and Stuffed Animals~ steam: 788050 -'Re;Lord 2: The Witch of Cologne and Black Cat': +"Re;Lord 2: The Witch of Cologne and Black Cat": gog: 2047978668 pageId: 174427 steam: 1502770 @@ -130920,16 +127451,14 @@ ReCore: pageId: 33351 steam: 537450 templates: - - >- - {{Game data/config|Microsoft - Store|{{P|localappdata}}\Packages\Microsoft.ReCore_8wekyb3d8bbwe\LocalState\renderer.ini}} - - '{{Game data/config|Steam|{{p|userprofile}}\AppData\LocalLow\Microsoft Studios\ReCore\{{p|uid}}\}}' - - '{{Game data/saves|Microsoft Store|{{P|localappdata}}\Packages\Microsoft.ReCore_8wekyb3d8bbwe\SystemAppData\wgs}}' - - '{{Game data/saves|Steam|{{p|userprofile}}\AppData\LocalLow\Microsoft Studios\ReCore\{{p|uid}}\}}' -'ReD:起始的旋转之音(The beginning of the Melody)': + - "{{Game data/config|Microsoft Store|{{P|localappdata}}\\Packages\\Microsoft.ReCore_8wekyb3d8bbwe\\LocalState\\renderer.ini}}" + - "{{Game data/config|Steam|{{p|userprofile}}\\AppData\\LocalLow\\Microsoft Studios\\ReCore\\{{p|uid}}\\}}" + - "{{Game data/saves|Microsoft Store|{{P|localappdata}}\\Packages\\Microsoft.ReCore_8wekyb3d8bbwe\\SystemAppData\\wgs}}" + - "{{Game data/saves|Steam|{{p|userprofile}}\\AppData\\LocalLow\\Microsoft Studios\\ReCore\\{{p|uid}}\\}}" +"ReD:起始的旋转之音(The beginning of the Melody)": pageId: 140986 steam: 1101850 -'ReDrawn: The Painted Tower': +"ReDrawn: The Painted Tower": pageId: 172965 steam: 1789560 ReFrame: @@ -130954,44 +127483,39 @@ ReThink: pageId: 58830 steam: 603800 templates: - - >- - {{Game data/config|Windows|{{P|localappdata}}\RethinkReworked\Saved\Config\WindowsNoEditor\GameUserSettings.ini - (Reworked)|{{P|localappdata}}\RethinkReworked\Saved\SaveGames\SETTINGS_*.sav - (Reworked)|{{P|localappdata}}\RT_RW\Saved\SaveGames\SETTINGS.sav (Original)}} - - >- - {{Game data/saves|Windows|{{P|localappdata}}\RethinkReworked\Saved\SaveGames\*SAVE.sav - (Reworked)|{{P|localappdata}}\RT_RW\Saved\SaveGames\*_RW.sav (Original)}} + - "{{Game data/config|Windows|{{P|localappdata}}\\RethinkReworked\\Saved\\Config\\WindowsNoEditor\\GameUserSettings.ini (Reworked)|{{P|localappdata}}\\RethinkReworked\\Saved\\SaveGames\\SETTINGS_*.sav (Reworked)|{{P|localappdata}}\\RT_RW\\Saved\\SaveGames\\SETTINGS.sav (Original)}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\RethinkReworked\\Saved\\SaveGames\\*SAVE.sav (Reworked)|{{P|localappdata}}\\RT_RW\\Saved\\SaveGames\\*_RW.sav (Original)}}" ReThink 2: pageId: 114038 steam: 934410 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\RT4\Saved\SaveGames\SETTINGS_*.sav}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\RT4\Saved\SaveGames\*SAVE.sav}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\RT4\\Saved\\SaveGames\\SETTINGS_*.sav}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\RT4\\Saved\\SaveGames\\*SAVE.sav}}" ReThink 3: pageId: 143750 steam: 1136040 ReThink 4: pageId: 165297 steam: 1436410 -'ReThink: Evolved': +"ReThink: Evolved": pageId: 69771 steam: 703500 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\ReThink2\Saved\SaveGames\SETTINGS.sav}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\ReThink2\Saved\SaveGames\*.sav}}' -'ReThink: Evolved 2': + - "{{Game data/config|Windows|{{P|localappdata}}\\ReThink2\\Saved\\SaveGames\\SETTINGS.sav}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\ReThink2\\Saved\\SaveGames\\*.sav}}" +"ReThink: Evolved 2": pageId: 136367 steam: 820600 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\ReThink3\Saved\SaveGames\SETTINGS_RT3.sav}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\ReThink3\Saved\SaveGames\*.sav}}' -'ReThink: Evolved 3': + - "{{Game data/config|Windows|{{P|localappdata}}\\ReThink3\\Saved\\SaveGames\\SETTINGS_RT3.sav}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\ReThink3\\Saved\\SaveGames\\*.sav}}" +"ReThink: Evolved 3": pageId: 136369 steam: 1065460 -'ReThink: Evolved 4': +"ReThink: Evolved 4": pageId: 165295 steam: 1260580 -'ReVeN: XBridge': +"ReVeN: XBridge": pageId: 45425 steam: 422030 ReX: @@ -131000,7 +127524,7 @@ ReX: ReYal: pageId: 136694 steam: 1080780 -'Reach 50 : Sexy Hentai Girls': +"Reach 50 : Sexy Hentai Girls": pageId: 123858 steam: 987580 Reach Coin: @@ -131016,15 +127540,15 @@ Reaching for Petals: pageId: 64099 steam: 636170 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\ReachingForPetals\Saved\Config\WindowsNoEditor}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\ReachingForPetals\Saved\SaveGames}}' -'Reaching for Petals: VR Edition': + - "{{Game data/config|Windows|{{P|localappdata}}\\ReachingForPetals\\Saved\\Config\\WindowsNoEditor}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\ReachingForPetals\\Saved\\SaveGames}}" +"Reaching for Petals: VR Edition": pageId: 72915 steam: 720290 Reactivated: pageId: 134784 steam: 1053600 -'Read Only Memories: Neurodiver': +"Read Only Memories: Neurodiver": pageId: 163345 steam: 1293910 Reader Rabbit Kindergarten: @@ -131032,39 +127556,39 @@ Reader Rabbit Kindergarten: Reader Rabbit Math Ages 6-9: pageId: 174772 templates: - - '{{Game data/config|Windows|{{p|game}}/MATH6-9.INI}}' - - '{{Game data/saves|Windows|{{p|game}}/Users/}}' + - "{{Game data/config|Windows|{{p|game}}/MATH6-9.INI}}" + - "{{Game data/saves|Windows|{{p|game}}/Users/}}" Reader Rabbit Playtime For Baby: pageId: 182231 Reader Rabbit Thinking Adventures Ages 4-6: pageId: 177053 templates: - - '{{Game data/config|Windows|{{p|game}}/trabbit.ini}}' - - '{{Game data/saves|Windows|{{p|game}}/trabbit.DAT}}' + - "{{Game data/config|Windows|{{p|game}}/trabbit.ini}}" + - "{{Game data/saves|Windows|{{p|game}}/trabbit.DAT}}" Reader Rabbit Toddler: pageId: 177102 -'Reader Rabbit''s Learn to Read with Phonics: Preschool & Kindergarten': +"Reader Rabbit's Learn to Read with Phonics: Preschool & Kindergarten": pageId: 185997 -'Reader Rabbit: 1st Grade': +"Reader Rabbit: 1st Grade": pageId: 174782 templates: - - '{{Game data/config|Windows|{{p|game}}/RRF.INI}}' - - '{{Game data/saves|Windows|{{p|game}}/USERS.DAT}}' -'Reader Rabbit: 2nd Grade': + - "{{Game data/config|Windows|{{p|game}}/RRF.INI}}" + - "{{Game data/saves|Windows|{{p|game}}/USERS.DAT}}" +"Reader Rabbit: 2nd Grade": pageId: 175011 templates: - - '{{Game data/config|Windows|{{p|game}}/rr2g.ini}}' - - '{{Game data/saves|Windows|{{p|game}}/RR2GDATA}}' -'Reading Blaster: Ages 4-6': + - "{{Game data/config|Windows|{{p|game}}/rr2g.ini}}" + - "{{Game data/saves|Windows|{{p|game}}/RR2GDATA}}" +"Reading Blaster: Ages 4-6": pageId: 190552 -'Reading Blaster: Ages 6-8': +"Reading Blaster: Ages 6-8": pageId: 190556 -'Reading Blaster: Ages 9-12': +"Reading Blaster: Ages 9-12": pageId: 190554 Reading Simulator: pageId: 78483 steam: 769690 -'Ready Player One: OASIS Beta': +"Ready Player One: OASIS Beta": pageId: 92658 steam: 779650 Ready for Take off - A320 Simulator: @@ -131079,20 +127603,20 @@ Ready or Not: - 840820 - 888330 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\ReadyOrNot\Saved\}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\ReadyOrNot\Saved\}}' -'Ready, Aim, Splat!': + - "{{Game data/config|Windows|{{P|localappdata}}\\ReadyOrNot\\Saved\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\ReadyOrNot\\Saved\\}}" +"Ready, Aim, Splat!": pageId: 55948 steam: 559170 ReadySet Heroes: pageId: 143526 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\CNB\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\CNB\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\CNB\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\CNB\\Saved\\SaveGames\\}}" Reagan Gorbachev: pageId: 44473 steam: 364720 -'Reah: Face the Unknown': +"Reah: Face the Unknown": gog: 1911151506 pageId: 83155 Reaktron: @@ -131101,7 +127625,7 @@ Reaktron: Real 1942: pageId: 70591 steam: 710390 -Real Al's Humanity Academy: +"Real Al's Humanity Academy": pageId: 128242 steam: 1025710 Real Arcade Bike: @@ -131109,7 +127633,7 @@ Real Arcade Bike: steam: 1062430 Real Bout Fatal Fury: pageId: 133157 -'Real Bout Fatal Fury 2: The Newcomers': +"Real Bout Fatal Fury 2: The Newcomers": gog: 1490050478 pageId: 131736 Real Bout Fatal Fury Special: @@ -131118,7 +127642,7 @@ Real Boxing: pageId: 18279 steam: 296770 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Real Boxing\Config\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Real Boxing\\Config\\}}" Real Drift: pageId: 88746 steam: 817680 @@ -131130,15 +127654,15 @@ Real Farm: Real Fishing VR: pageId: 129755 steam: 1030380 -'Real Heroes: Firefighter': +"Real Heroes: Firefighter": pageId: 57837 steam: 1333700 templates: - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Firefighter\save}}' + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Firefighter\\save}}" Real Horror Stories Ultimate Edition: pageId: 50498 steam: 281370 -'Real Life Battle Royal: It''s gonna be an... EPIC game': +"Real Life Battle Royal: It's gonna be an... EPIC game": pageId: 130175 steam: 1047670 Real Pool 3D - Poolians: @@ -131155,18 +127679,18 @@ Real War: Real Warfare 1242: pageId: 40853 steam: 46350 -'Real Warfare 2: Northern Crusades': +"Real Warfare 2: Northern Crusades": pageId: 40859 steam: 202860 -'Real Winners: Victoryball': +"Real Winners: Victoryball": pageId: 113320 steam: 839010 Real World Racing: pageId: 13459 steam: 253470 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Real World Racing\config.ini}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Real World Racing\profile.dat}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Real World Racing\\config.ini}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Real World Racing\\profile.dat}}" RealBX VR: pageId: 59478 steam: 592310 @@ -131181,16 +127705,14 @@ RealMyst: pageId: 2504 steam: 63600 templates: - - '{{Game data/saves|Windows|{{p|game}}\SAV}}' -'RealMyst: Masterpiece Edition': + - "{{Game data/saves|Windows|{{p|game}}\\SAV}}" +"RealMyst: Masterpiece Edition": gog: 1207664443 pageId: 15454 steam: 244430 templates: - - >- - {{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\Cyan Worlds\realMyst\*.ini|{{p|hkcu}}\Software\Cyan - Worlds\realMyst\}} - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Cyan Worlds\realMyst\*.sav}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Cyan Worlds\\realMyst\\*.ini|{{p|hkcu}}\\Software\\Cyan Worlds\\realMyst\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Cyan Worlds\\realMyst\\*.sav}}" RealRTCW: pageId: 179560 steam: 1379630 @@ -131219,8 +127741,8 @@ Really Big Sky: pageId: 8319 steam: 201570 templates: - - '{{Game data/config|Windows|{{p|game}}\record.dat}}' - - '{{Game data/saves|Windows|{{p|game}}\record.dat}}' + - "{{Game data/config|Windows|{{p|game}}\\record.dat}}" + - "{{Game data/saves|Windows|{{p|game}}\\record.dat}}" ReallyGoodBattle: pageId: 80948 steam: 686040 @@ -131245,7 +127767,7 @@ Realm Royale Reforged: - Realm Royale steam: 813820 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\My Games\paladinsroyale\RealmGame\Config}}' + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\My Games\\paladinsroyale\\RealmGame\\Config}}" Realm of Perpetual Guilds: pageId: 47867 steam: 372670 @@ -131261,65 +127783,61 @@ Realm of the Mad God: RealmCraft: pageId: 82284 steam: 764580 -'Realms Beyond: Ashes of the Fallen': +"Realms Beyond: Ashes of the Fallen": gog: 1132213316 pageId: 122902 steam: 762550 -'Realms of Arkania III: Shadows over Riva': +"Realms of Arkania III: Shadows over Riva": gog: 1207658797 pageId: 16028 steam: 270760 templates: - - '{{Game data/config|DOS|{{p|game}}\RIVA.CFG}}' - - '{{Game data/saves|DOS|{{p|game}}\GAMES\}}' -'Realms of Arkania: Blade of Destiny': + - "{{Game data/config|DOS|{{p|game}}\\RIVA.CFG}}" + - "{{Game data/saves|DOS|{{p|game}}\\GAMES\\}}" +"Realms of Arkania: Blade of Destiny": gog: 1207661973 gogSide: - 1207658796 pageId: 7926 steam: 267670 templates: - - '{{Game data/config|DOS|{{p|game}}\SOUND.CFG}}' - - '{{Game data/saves|DOS|{{p|game}}\*.GAM}}' - - >- - {{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Boxer/Gamebox - States/com.game.realms-of-arkania-1/Current.boxerstate/C Realms of Arkania 1.harddisk}} -'Realms of Arkania: Blade of Destiny (2013)': + - "{{Game data/config|DOS|{{p|game}}\\SOUND.CFG}}" + - "{{Game data/saves|DOS|{{p|game}}\\*.GAM}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Boxer/Gamebox States/com.game.realms-of-arkania-1/Current.boxerstate/C Realms of Arkania 1.harddisk}}" +"Realms of Arkania: Blade of Destiny (2013)": pageId: 8662 steam: 237550 steamSide: - 264840 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Crafty Studios GmbH\Nordlandtrilogie HD Schicksalsklinge Gold\}}' - - >- - {{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Crafty Studios GmbH/Nordlandtrilogie HD Schicksalsklinge - Gold/}} - - '{{Game data/saves|Windows|{{P|game}}\schick_Data\saves\|{{P|userprofile\Documents}}\BladeofDestiny\save\}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/Documents/BladeofDestiny/}}' -'Realms of Arkania: Star Trail': + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Crafty Studios GmbH\\Nordlandtrilogie HD Schicksalsklinge Gold\\}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Crafty Studios GmbH/Nordlandtrilogie HD Schicksalsklinge Gold/}}" + - "{{Game data/saves|Windows|{{P|game}}\\schick_Data\\saves\\|{{P|userprofile\\Documents}}\\BladeofDestiny\\save\\}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/Documents/BladeofDestiny/}}" +"Realms of Arkania: Star Trail": gog: 1207661983 gogSide: - 1207658796 pageId: 7929 steam: 270750 templates: - - '{{Game data/saves|DOS|{{p|game}}\GAMES\*.GAM}}' -'Realms of Arkania: Star Trail (2017)': + - "{{Game data/saves|DOS|{{p|game}}\\GAMES\\*.GAM}}" +"Realms of Arkania: Star Trail (2017)": pageId: 72591 steam: 288860 steamSide: - 654140 templates: - - '{{Game data/saves|Windows|{{p|game}}\saves}}' - - '{{Game data/saves|OS X|{{p|game}}/saves}}' - - '{{Game data/saves|Linux|{{p|game}}/saves}}' + - "{{Game data/saves|Windows|{{p|game}}\\saves}}" + - "{{Game data/saves|OS X|{{p|game}}/saves}}" + - "{{Game data/saves|Linux|{{p|game}}/saves}}" Realms of Chaos: gog: 1207659182 pageId: 23108 steam: 358320 templates: - - '{{Game data/config|DOS|{{p|game}}\ROC.CFG}}' - - '{{Game data/saves|DOS|{{p|game}}\ROC.SG*|{{p|game}}\ROC.SCO}}' + - "{{Game data/config|DOS|{{p|game}}\\ROC.CFG}}" + - "{{Game data/saves|DOS|{{p|game}}\\ROC.SG*|{{p|game}}\\ROC.SCO}}" Realms of Conquest: pageId: 67976 steam: 607650 @@ -131337,8 +127855,8 @@ Realms of the Haunting: pageId: 22365 steam: 292390 templates: - - '{{Game data/config|DOS|{{p|game}}\ROTH.INI}}' - - '{{Game data/saves|DOS|{{p|game}}\SAVEGAME\}}' + - "{{Game data/config|DOS|{{p|game}}\\ROTH.INI}}" + - "{{Game data/saves|DOS|{{p|game}}\\SAVEGAME\\}}" Realmstone: pageId: 139339 steam: 841580 @@ -131351,16 +127869,16 @@ Realpolitiks: steamSide: - 588740 templates: - - '{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/Jujubee S_A_/Realpolitiks}}' - - '{{Game data/saves|Windows|{{P|game}}\Saves}}' - - '{{Game data/saves|Linux|{{P|game}}/Saves}}' + - "{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/Jujubee S_A_/Realpolitiks}}" + - "{{Game data/saves|Windows|{{P|game}}\\Saves}}" + - "{{Game data/saves|Linux|{{P|game}}/Saves}}" Realpolitiks II: gog: 1557243801 pageId: 158277 steam: 1248060 templates: - - '{{Game data/config|Windows|{{p|game}}\Save}}' - - '{{Game data/saves|Windows|{{p|game}}\Save}}' + - "{{Game data/config|Windows|{{p|game}}\\Save}}" + - "{{Game data/saves|Windows|{{p|game}}\\Save}}" Realshot: pageId: 80436 steam: 779160 @@ -131378,7 +127896,7 @@ Reassembly: pageId: 27820 steam: 329130 templates: - - '{{Game data/config|Windows|{{P|game}}\data}}' + - "{{Game data/config|Windows|{{P|game}}\\data}}" Reaxxion: pageId: 41367 steam: 15950 @@ -131387,10 +127905,8 @@ Rebel Cops: pageId: 146334 steam: 970960 templates: - - >- - {{Game data/config|Windows|{{P|userprofile}}\AppData\LocalLow\Weappy\Rebel - Cops\Settings.xml|{{P|hkcu}}\Software\Weappy\Rebel Cops\}} - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Weappy\Rebel Cops\Save.sav}}' + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Weappy\\Rebel Cops\\Settings.xml|{{P|hkcu}}\\Software\\Weappy\\Rebel Cops\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Weappy\\Rebel Cops\\Save.sav}}" Rebel Forces: pageId: 124201 steam: 979080 @@ -131399,21 +127915,21 @@ Rebel Galaxy: pageId: 29340 steam: 290300 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\My Games\Double Damage Games\RebelGalaxy\}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\My Games\Double Damage Games\RebelGalaxy\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/RebelGalaxy}}' + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\My Games\\Double Damage Games\\RebelGalaxy\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\My Games\\Double Damage Games\\RebelGalaxy\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/RebelGalaxy}}" Rebel Galaxy Outlaw: gog: 1339695996 pageId: 137537 steam: 910830 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\My Games\Double Damage Games\RebelGalaxyOutlaw\}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\My Games\Double Damage Games\RebelGalaxyOutlaw\}}' -'Rebel Inc: Escalation': + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\My Games\\Double Damage Games\\RebelGalaxyOutlaw\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\My Games\\Double Damage Games\\RebelGalaxyOutlaw\\}}" +"Rebel Inc: Escalation": pageId: 148907 steam: 1088790 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Ndemic Creations\Rebel Inc: Escalation}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Ndemic Creations\\Rebel Inc: Escalation}}" Rebel Moon Rising: pageId: 131317 Rebel Wings: @@ -131468,20 +127984,18 @@ Rebound Dodgeball Evolved: pageId: 132811 steam: 1057560 templates: - - >- - {{Game - data/config|Windows|{{P|localappdata}}\Rebound_4_12\Saved\Config\WindowsNoEditor\|{{P|localappdata}}\Rebound_4_12\Saved\SaveGames\GraphicsSettings.sav}} - - '{{Game data/saves|Windows|{{P|localappdata}}\Rebound_4_12\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\Rebound_4_12\\Saved\\Config\\WindowsNoEditor\\|{{P|localappdata}}\\Rebound_4_12\\Saved\\SaveGames\\GraphicsSettings.sav}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Rebound_4_12\\Saved\\SaveGames\\}}" Rebound VR: pageId: 110676 steam: 931200 -'Rebuild 3: Gangs of Deadsville': +"Rebuild 3: Gangs of Deadsville": gog: 1432285342 pageId: 32028 steam: 257170 templates: - - '{{Game data/config|Windows|{{p|appdata}}\com.sarahnorthway.rebuild3\Local Store\config}}' - - '{{Game data/saves|Windows|{{p|appdata}}\com.sarahnorthway.rebuild3\Local Store\#SharedObjects}}' + - "{{Game data/config|Windows|{{p|appdata}}\\com.sarahnorthway.rebuild3\\Local Store\\config}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\com.sarahnorthway.rebuild3\\Local Store\\#SharedObjects}}" Rec Center Tycoon: pageId: 62084 steam: 623700 @@ -131489,30 +128003,30 @@ Rec Room: pageId: 35178 steam: 471710 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Against Gravity\Rec Room\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Against Gravity\\Rec Room\\}}" Receiver: pageId: 5303 steam: 234190 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Wolfire Games\Receiver}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Wolfire Games/Receiver/}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Wolfire Games\\Receiver}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Wolfire Games/Receiver/}}" Receiver 2: pageId: 156647 steam: 1129310 templates: - - '{{Game data/config|Windows|{{p|USERPROFILE}}\AppData\LocalLow\Wolfire Games\Receiver2}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/.config/unity32/Wolfire Games/Receiver2}}' - - '{{Game data/saves|Windows|{{p|USERPROFILE}}\AppData\LocalLow\Wolfire Games\Receiver2}}' + - "{{Game data/config|Windows|{{p|USERPROFILE}}\\AppData\\LocalLow\\Wolfire Games\\Receiver2}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/.config/unity32/Wolfire Games/Receiver2}}" + - "{{Game data/saves|Windows|{{p|USERPROFILE}}\\AppData\\LocalLow\\Wolfire Games\\Receiver2}}" Recession: pageId: 62831 steam: 510360 -'Recettear: An Item Shop''s Tale': +"Recettear: An Item Shop's Tale": gog: 1441875624 pageId: 224 steam: 70400 templates: - - '{{Game data/config|Windows|{{p|game}}\recet.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\save.dat}}' + - "{{Game data/config|Windows|{{p|game}}\\recet.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\save.dat}}" Recharge Complete: pageId: 75069 steam: 708070 @@ -131533,8 +128047,8 @@ Recluses: Recoil: pageId: 14707 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Zipper\RECOIL\}}' - - '{{Game data/saves|Windows|{{p|game}}\savedgames\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Zipper\\RECOIL\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\savedgames\\}}" Recoil (2018): pageId: 93828 steam: 844520 @@ -131543,13 +128057,9 @@ Recompile: pageId: 130785 steam: 986310 templates: - - >- - {{Game - data/config|Windows|{{P|userprofile\appdata\locallow}}\Phigames\Recompile\Recompile.sav|{{P|hkcu}}\Software\Phigames\Recompile\}} - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Phigames\Recompile\Recompile.sav}}' - - >- - {{Game data/saves|Microsoft - Store|{{P|localappdata}}\Packages\PlugInDigital.Recompile_9e3ank8rmgj0t\SystemAppData\wgs\{{P|uid}}\}} + - "{{Game data/config|Windows|{{P|userprofile\\appdata\\locallow}}\\Phigames\\Recompile\\Recompile.sav|{{P|hkcu}}\\Software\\Phigames\\Recompile\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Phigames\\Recompile\\Recompile.sav}}" + - "{{Game data/saves|Microsoft Store|{{P|localappdata}}\\Packages\\PlugInDigital.Recompile_9e3ank8rmgj0t\\SystemAppData\\wgs\\{{P|uid}}\\}}" Reconquest: pageId: 51889 steam: 530040 @@ -131562,23 +128072,21 @@ Record Store Nightmare: Record of Lodoss War Online: pageId: 125665 steam: 949690 -'Record of Lodoss War: Deedlit in Wonder Labyrinth': +"Record of Lodoss War: Deedlit in Wonder Labyrinth": pageId: 165353 renamedFrom: - Record of Lodoss War-Deedlit in Wonder Labyrinth- steam: 1203630 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Deedlit_in_Wonder_Labyrinth\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Deedlit_in_Wonder_Labyrinth\}}' - - >- - {{Game data/saves|Microsoft - Store|{{p|localappdata}}\Packages\ActiveGamingMediaInc.RecordofLodossWar-DeedlitinWo_4tj796bhrrsp0\SystemAppData\wgs\}} -'Record of Rozen War: ALiBAT': + - "{{Game data/config|Windows|{{p|localappdata}}\\Deedlit_in_Wonder_Labyrinth\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Deedlit_in_Wonder_Labyrinth\\}}" + - "{{Game data/saves|Microsoft Store|{{p|localappdata}}\\Packages\\ActiveGamingMediaInc.RecordofLodossWar-DeedlitinWo_4tj796bhrrsp0\\SystemAppData\\wgs\\}}" +"Record of Rozen War: ALiBAT": pageId: 170684 renamedFrom: - - 'Rozen Maiden ALiBAT: Record of Rozen War' + - "Rozen Maiden ALiBAT: Record of Rozen War" templates: - - '{{Game data/saves|Windows|{{P|game}}\ALiBAT.sav}}' + - "{{Game data/saves|Windows|{{P|game}}\\ALiBAT.sav}}" Recourse: pageId: 44387 steam: 413540 @@ -131598,8 +128106,8 @@ Recursed: pageId: 50813 steam: 497780 templates: - - '{{Game data/config|Windows|{{P|appdata}}\recursed.ini}}' - - '{{Game data/saves|Steam|{{P|steam}}\userdata\{{P|uid}}\497780\remote\}}' + - "{{Game data/config|Windows|{{P|appdata}}\\recursed.ini}}" + - "{{Game data/saves|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\497780\\remote\\}}" Recursion Deluxe: pageId: 37174 steam: 425160 @@ -131616,7 +128124,7 @@ Recursive Ruin: Recycle: pageId: 49689 steam: 294830 -Recycler's Terminal: +"Recycler's Terminal": pageId: 132088 steam: 1035960 Recyclomania: @@ -131629,7 +128137,7 @@ Red Alliance: pageId: 112984 steam: 594050 templates: - - '{{Game data/saves|Windows|{{P|game}}\Assets\SaveData\}}' + - "{{Game data/saves|Windows|{{P|game}}\\Assets\\SaveData\\}}" Red Baron: gog: 1207658801 gogSide: @@ -131637,8 +128145,8 @@ Red Baron: pageId: 22119 steam: 263940 templates: - - '{{Game data/config|DOS|{{p|game}}\}}' - - '{{Game data/saves|DOS|{{p|game}}\}}' + - "{{Game data/config|DOS|{{p|game}}\\}}" + - "{{Game data/saves|DOS|{{p|game}}\\}}" Red Baron 3D: gog: 1207658801 gogSide: @@ -131646,8 +128154,8 @@ Red Baron 3D: pageId: 22127 steam: 263940 templates: - - '{{Game data/config|Windows|{{P|game}}\rbprefs.dat}}' - - '{{Game data/saves|Windows|{{P|game}}\}}' + - "{{Game data/config|Windows|{{P|game}}\\rbprefs.dat}}" + - "{{Game data/saves|Windows|{{P|game}}\\}}" Red Barton and The Sky Pirates: pageId: 57448 steam: 540590 @@ -131672,30 +128180,26 @@ Red Bull Doodle Art - Global VR Gallery: Red Bull X-Fighters: pageId: 59783 steam: 61230 -'Red Comrades 2: For the Great Justice': +"Red Comrades 2: For the Great Justice": pageId: 172197 -'Red Comrades 2: For the Great Justice - Reloaded': +"Red Comrades 2: For the Great Justice - Reloaded": pageId: 39075 renamedFrom: - - 'Red Comrades 2: For the Great Justice' + - "Red Comrades 2: For the Great Justice" steam: 443360 templates: - - >- - {{Game data/config|Windows|{{P|hkcu}}\SOFTWARE\BUKA Development\Red Comrades - 2|{{P|userprofile\appdata\locallow}}\BUKA Development\Red Comrades 2\settings.xml}} - - >- - {{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/BUKA Development/Red Comrades - 2/prefs|{{P|xdgconfighome}}/unity3d/BUKA Development/Red Comrades 2/settings.xml}} - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\BUKA Development\Red Comrades 2\}}' - - '{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/BUKA Development/Red Comrades 2/}}' -'Red Comrades 3: Return of Alaska - Reloaded': + - "{{Game data/config|Windows|{{P|hkcu}}\\SOFTWARE\\BUKA Development\\Red Comrades 2|{{P|userprofile\\appdata\\locallow}}\\BUKA Development\\Red Comrades 2\\settings.xml}}" + - "{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/BUKA Development/Red Comrades 2/prefs|{{P|xdgconfighome}}/unity3d/BUKA Development/Red Comrades 2/settings.xml}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\BUKA Development\\Red Comrades 2\\}}" + - "{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/BUKA Development/Red Comrades 2/}}" +"Red Comrades 3: Return of Alaska - Reloaded": pageId: 53124 renamedFrom: - - 'Red Comrades 3: Return of Alaska' + - "Red Comrades 3: Return of Alaska" steam: 546220 Red Comrades Save the Galaxy: pageId: 172173 -'Red Comrades Save the Galaxy: Reloaded': +"Red Comrades Save the Galaxy: Reloaded": pageId: 37247 renamedFrom: - Red Comrades Save the Galaxy @@ -131703,24 +128207,20 @@ Red Comrades Save the Galaxy: steamSide: - 440370 templates: - - >- - {{Game data/config|Windows|{{P|hkcu}}\SOFTWARE\BUKA Development\Red - Comrades|{{P|userprofile\appdata\locallow}}\BUKA Development\Red Comrades\settings.xml}} - - >- - {{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/BUKA Development/Red - Comrades/prefs|{{P|xdgconfighome}}/unity3d/BUKA Development/Red Comrades/settings.xml}} - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\BUKA Development\Red Comrades\}}' - - '{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/BUKA Development/Red Comrades/}}' -'Red Crow Mysteries: Legion': + - "{{Game data/config|Windows|{{P|hkcu}}\\SOFTWARE\\BUKA Development\\Red Comrades|{{P|userprofile\\appdata\\locallow}}\\BUKA Development\\Red Comrades\\settings.xml}}" + - "{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/BUKA Development/Red Comrades/prefs|{{P|xdgconfighome}}/unity3d/BUKA Development/Red Comrades/settings.xml}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\BUKA Development\\Red Comrades\\}}" + - "{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/BUKA Development/Red Comrades/}}" +"Red Crow Mysteries: Legion": pageId: 47747 steam: 372890 -'Red Crucible 2: Reborn': +"Red Crucible 2: Reborn": pageId: 109858 steam: 916930 -'Red Crucible: Firestorm': +"Red Crucible: Firestorm": pageId: 45160 steam: 298240 -'Red Crucible: Reloaded': +"Red Crucible: Reloaded": pageId: 76085 steam: 732730 Red Cube VR: @@ -131738,28 +128238,28 @@ Red Dead Redemption 2: steamSide: - 1404210 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\Rockstar Games\Red Dead Redemption 2\Settings\}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\Rockstar Games\Red Dead Redemption 2\Profiles\{{P|uid}}\}}' + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\Rockstar Games\\Red Dead Redemption 2\\Settings\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\Rockstar Games\\Red Dead Redemption 2\\Profiles\\{{P|uid}}\\}}" Red Death: pageId: 59363 steam: 591560 -'Red Death: 8Feet': +"Red Death: 8Feet": pageId: 144349 steam: 1087610 Red Eclipse: pageId: 5974 steam: 967460 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Red Eclipse\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/redeclipse/}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.redeclipse/}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Red Eclipse\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/redeclipse/}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.redeclipse/}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Red Eclipse\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/redeclipse/}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.redeclipse/}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Red Eclipse\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/redeclipse/}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.redeclipse/}}" Red Embrace: pageId: 82306 steam: 796940 -'Red Embrace: Hollywood': +"Red Embrace: Hollywood": pageId: 146146 steam: 904520 Red Faction: @@ -131767,12 +128267,12 @@ Red Faction: pageId: 3280 steam: 20530 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Volition\Red Faction|{{p|game}}\players.cfg}}' - - '{{Game data/config|Mac OS|{{p|game}}/players.cfg}}' - - '{{Game data/config|OS X|{{p|game}}/players_osx.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\savegame\}}' - - '{{Game data/saves|Mac OS|{{p|game}}/savegame/}}' - - '{{Game data/saves|OS X|{{p|game}}/savegame/}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Volition\\Red Faction|{{p|game}}\\players.cfg}}" + - "{{Game data/config|Mac OS|{{p|game}}/players.cfg}}" + - "{{Game data/config|OS X|{{p|game}}/players_osx.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\savegame\\}}" + - "{{Game data/saves|Mac OS|{{p|game}}/savegame/}}" + - "{{Game data/saves|OS X|{{p|game}}/savegame/}}" Red Faction Guerrilla Re-Mars-tered: gog: 2029222893 gogSide: @@ -131782,19 +128282,17 @@ Red Faction Guerrilla Re-Mars-tered: steamSide: - 888820 templates: - - '{{Game data/config|Windows|{{p|appdata}}\kaiko\rfg\config.ini}}' - - >- - {{Game - data/saves|GOG.com|{{p|localappdata}}\GOG.com\Galaxy\Applications\51153410217180642\Storage\Shared\Files\autocloud\save\}} - - '{{Game data/saves|Steam|{{p|Steam}}\userdata\{{p|uid}}\667720\remote\}}' + - "{{Game data/config|Windows|{{p|appdata}}\\kaiko\\rfg\\config.ini}}" + - "{{Game data/saves|GOG.com|{{p|localappdata}}\\GOG.com\\Galaxy\\Applications\\51153410217180642\\Storage\\Shared\\Files\\autocloud\\save\\}}" + - "{{Game data/saves|Steam|{{p|Steam}}\\userdata\\{{p|uid}}\\667720\\remote\\}}" Red Faction II: gog: 1207660613 pageId: 9623 steam: 20550 templates: - - '{{Game data/config|Windows|{{p|game}}\rf2_config.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\profiles\}}' -'Red Faction: Armageddon': + - "{{Game data/config|Windows|{{p|game}}\\rf2_config.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\profiles\\}}" +"Red Faction: Armageddon": gog: 1577877141 gogSide: - 1189065674 @@ -131809,24 +128307,19 @@ Red Faction II: - 55115 - 276190 templates: - - >- - {{Game - data/config|Windows|{{p|steam}}\userdata\{{p|uid}}\55110\remote\player_options.rfao_pc
{{p|hklm}}\SOFTWARE\{{p|wow64}}\Volition\Red - Faction: Armageddon\Video Settings}} - - '{{Game data/saves|Windows|{{p|steam}}\userdata\{{p|uid}}\55110\remote\}}' - - '{{Game data/saves|GOG.com|{{P|localappdata}}\GOG.com\Galaxy\Applications\51153456908161049\Storage\}}' -'Red Faction: Guerrilla': + - "{{Game data/config|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\55110\\remote\\player_options.rfao_pc
{{p|hklm}}\\SOFTWARE\\{{p|wow64}}\\Volition\\Red Faction: Armageddon\\Video Settings}}" + - "{{Game data/saves|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\55110\\remote\\}}" + - "{{Game data/saves|GOG.com|{{P|localappdata}}\\GOG.com\\Galaxy\\Applications\\51153456908161049\\Storage\\}}" +"Red Faction: Guerrilla": pageId: 3426 steam: 20500 steamSide: - - 343010 - 336170 + - 343010 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Red Faction - Guerrilla\Options\rfg_display_options.rfgs_pc}} - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Red Faction Guerrilla\Saves\}}' - - '{{Game data/saves|Steam|{{p|Steam}}\userdata\{{p|uid}}\20500\remote\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Red Faction Guerrilla\\Options\\rfg_display_options.rfgs_pc}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Red Faction Guerrilla\\Saves\\}}" + - "{{Game data/saves|Steam|{{p|Steam}}\\userdata\\{{p|uid}}\\20500\\remote\\}}" Red Flu: pageId: 78727 steam: 625090 @@ -131838,7 +128331,7 @@ Red Frost: renamedFrom: - FrostFall steam: 1179020 -'Red Fuse: Rolling Explosive Device': +"Red Fuse: Rolling Explosive Device": pageId: 46434 steam: 384660 Red Game Without A Great Name: @@ -131847,10 +128340,10 @@ Red Game Without A Great Name: Red Gate: pageId: 135451 steam: 1076600 -'Red Goblin: Cursed Forest': +"Red Goblin: Cursed Forest": pageId: 47877 steam: 364480 -'Red Goddess: Inner World': +"Red Goddess: Inner World": pageId: 46619 steam: 322440 Red Haze: @@ -131866,24 +128359,24 @@ Red Hot Vengeance: pageId: 135488 steam: 1058640 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\RedHotVengeance\settings.ini}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\RedHotVengeance\save}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\RedHotVengeance\\settings.ini}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\RedHotVengeance\\save}}" Red Island: pageId: 141417 steam: 1114740 -Red Johnson's Chronicles - 1+2 - Steam Special Edition: +"Red Johnson's Chronicles - 1+2 - Steam Special Edition": pageId: 49681 steam: 312050 templates: - - '{{Game data/config|Windows|{{P|appdata}}\Anuman\RedJohnson\OPTIONS}}' - - '{{Game data/saves|Windows|{{P|appdata}}\Anuman\RedJohnson\GAME\}}' + - "{{Game data/config|Windows|{{P|appdata}}\\Anuman\\RedJohnson\\OPTIONS}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\Anuman\\RedJohnson\\GAME\\}}" Red Lake: pageId: 48375 steam: 357290 Red Matter: pageId: 120701 steam: 966680 -'Red Number: Prologue': +"Red Number: Prologue": pageId: 67837 steam: 681260 Red Obsidian Remnant: @@ -131892,24 +128385,22 @@ Red Obsidian Remnant: Red Ocean: pageId: 19346 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Red Ocean\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Red Ocean\SavedGames\}}' -'Red Orchestra 2: Heroes of Stalingrad': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Red Ocean\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Red Ocean\\SavedGames\\}}" +"Red Orchestra 2: Heroes of Stalingrad": pageId: 1089 steam: 35450 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\My - Games\RedOrchestra2SP\ROGame\Config\|{{p|userprofile\Documents}}\My Games\RedOrchestra2\ROGame\Config\}} - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\RedOrchestra2SP\ROGame\Saves\}}' -'Red Orchestra: Ostfront 41-45': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\RedOrchestra2SP\\ROGame\\Config\\|{{p|userprofile\\Documents}}\\My Games\\RedOrchestra2\\ROGame\\Config\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\RedOrchestra2SP\\ROGame\\Saves\\}}" +"Red Orchestra: Ostfront 41-45": pageId: 1380 steam: 1200 templates: - - '{{Game data/config|Windows|{{p|game}}\System\*.ini}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.redorchestra/}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.redorchestra/}}' -'Red Planet: Survive': + - "{{Game data/config|Windows|{{p|game}}\\System\\*.ini}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.redorchestra/}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.redorchestra/}}" +"Red Planet: Survive": pageId: 68436 renamedFrom: - Survive On Mars @@ -131928,7 +128419,7 @@ Red Ronin: Red Room: pageId: 143809 steam: 1033510 -'Red Rope: Don''t Fall Behind': +"Red Rope: Don't Fall Behind": pageId: 42187 steam: 381880 Red Rose Rising: @@ -131942,21 +128433,21 @@ Red Ruin: steam: 1111730 Red Shark: pageId: 170182 -'Red Solstice 2: Survivors': +"Red Solstice 2: Survivors": pageId: 82199 renamedFrom: - - 'Solstice Chronicles: Survivors' + - "Solstice Chronicles: Survivors" steam: 768520 -'Red Spider Anecdote: Triangle': +"Red Spider Anecdote: Triangle": pageId: 93913 steam: 769630 -'Red Spider2: Exiled': +"Red Spider2: Exiled": pageId: 54391 steam: 560790 -'Red Spider3: A Heroine Never Dies': +"Red Spider3: A Heroine Never Dies": pageId: 93915 steam: 857410 -'Red Spider: Vengeance': +"Red Spider: Vengeance": pageId: 53836 steam: 537130 Red Star Raider: @@ -131969,8 +128460,8 @@ Red String of Fate: pageId: 58326 steam: 588010 templates: - - '{{Game data/config|Windows|{{p|game}}\renpy\config.py}}' - - '{{Game data/saves|Windows|{{p|appdata}}\renpy\Red String of Fate-1466417547\|{{p|game}}\game\saves\}}' + - "{{Game data/config|Windows|{{p|game}}\\renpy\\config.py}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\renpy\\Red String of Fate-1466417547\\|{{p|game}}\\game\\saves\\}}" Red Tractor Tycoon: pageId: 127821 steam: 984250 @@ -131978,18 +128469,16 @@ Red Trigger: pageId: 38049 steam: 491130 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\RedTrigger\Saved\Config}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\RedTrigger\Saved\SaveGames}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\RedTrigger\\Saved\\Config}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\RedTrigger\\Saved\\SaveGames}}" Red Wake Carnage: pageId: 65886 steam: 656610 -'Red Wings: Aces of the Sky': +"Red Wings: Aces of the Sky": pageId: 145429 steam: 1140630 templates: - - >- - {{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\All in! Games\Red Wings Aces of the - Sky\MySaveData.save}} + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\All in! Games\\Red Wings Aces of the Sky\\MySaveData.save}}" Red Wizard Island: pageId: 124331 steam: 792390 @@ -132002,7 +128491,7 @@ Red is Dead: Red points: pageId: 121783 steam: 975200 -Red's Kingdom: +"Red's Kingdom": pageId: 56366 steam: 541240 RedEyes: @@ -132018,47 +128507,47 @@ Redcon: pageId: 43406 steam: 449710 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\Local\Hexage\Redcon\}}' + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\Local\\Hexage\\Redcon\\}}" Redeemer: pageId: 58174 steam: 447290 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\ExampleGame\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\ExampleGame\Saved\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\ExampleGame\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\ExampleGame\\Saved\\}}" Redemption: pageId: 41661 steam: 330880 -'Redemption Cemetery: Bitter Frost': +"Redemption Cemetery: Bitter Frost": pageId: 52369 steam: 545910 -'Redemption Cemetery: Children''s Plight': +"Redemption Cemetery: Children's Plight": pageId: 127496 steam: 995910 -'Redemption Cemetery: Clock of Fate': +"Redemption Cemetery: Clock of Fate": pageId: 80853 steam: 786050 -'Redemption Cemetery: Grave Testimony': +"Redemption Cemetery: Grave Testimony": pageId: 95459 steam: 866750 -'Redemption Cemetery: Salvation of the Lost': +"Redemption Cemetery: Salvation of the Lost": pageId: 42406 steam: 466050 -'Redemption Cemetery: The Island of the Lost': +"Redemption Cemetery: The Island of the Lost": pageId: 62054 steam: 631280 Redemption Reapers: pageId: 186549 steam: 2139300 -Redemption's Guild: +"Redemption's Guild": pageId: 145250 steam: 1117200 -'Redemption: Eternal Quest': +"Redemption: Eternal Quest": pageId: 46665 steam: 390880 -'Redemption: Saints And Sinners': +"Redemption: Saints And Sinners": pageId: 53423 steam: 364910 -'Redemption: Tyranny of Daetorem': +"Redemption: Tyranny of Daetorem": pageId: 82000 steam: 773620 Redfall: @@ -132069,15 +128558,15 @@ Redfall: - 2253141 - 2409760 templates: - - '{{Game data/saves|Windows|{{p|USERPROFILE}}\Saved Games\Arkane Studios\Redfall\}}' + - "{{Game data/saves|Windows|{{p|USERPROFILE}}\\Saved Games\\Arkane Studios\\Redfall\\}}" Redfoot Bluefoot Dancing: pageId: 63970 steam: 646440 -Redhook's Revenge!: +"Redhook's Revenge!": pageId: 12959 templates: - - '{{Game data/config|DOS|{{p|game}}\REDHOOK.FIL}}' - - '{{Game data/saves|DOS|{{p|game}}\*.SAV}}' + - "{{Game data/config|DOS|{{p|game}}\\REDHOOK.FIL}}" + - "{{Game data/saves|DOS|{{p|game}}\\*.SAV}}" Redie: pageId: 51493 steam: 536990 @@ -132085,8 +128574,8 @@ Redirection: pageId: 51669 steam: 305760 templates: - - '{{Game data/config|Steam|{{p|steam}}\userdata\{{p|uid}}\305760\local\settings.txt}}' - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\305760\remote\progress.txt}}' + - "{{Game data/config|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\305760\\local\\settings.txt}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\305760\\remote\\progress.txt}}" Redium: pageId: 66961 steam: 667420 @@ -132095,25 +128584,25 @@ Redline: pageId: 22133 steam: 328460 templates: - - '{{Game data/config|Windows|{{p|game}}\redline.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\saved games\}}' + - "{{Game data/config|Windows|{{p|game}}\\redline.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\saved games\\}}" Redline Racer: pageId: 14438 templates: - - '{{Game data/config|Windows|{{p|game}}\menudata.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\misc\datebase.ddb}}' + - "{{Game data/config|Windows|{{p|game}}\\menudata.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\misc\\datebase.ddb}}" Redline Ultimate Racing: pageId: 81504 steam: 791570 -Redneck Deer Huntin': +"Redneck Deer Huntin'": pageId: 63943 steam: 580930 Redneck Kentucky and the Next Generation Chickens: pageId: 129629 steam: 837040 templates: - - '{{Game data/config|Windows|{{p|game}}/System/*.ini}}' - - '{{Game data/saves|Windows|{{p|game}}/Saves/}}' + - "{{Game data/config|Windows|{{p|game}}/System/*.ini}}" + - "{{Game data/saves|Windows|{{p|game}}/Saves/}}" Redneck Racers: pageId: 50362 steam: 288730 @@ -132124,22 +128613,22 @@ Redneck Rampage: steamSide: - 646030 templates: - - '{{Game data/config|DOS|{{p|game}}\REDNECK.CFG}}' - - '{{Game data/saves|DOS|{{p|game}}\GAME*.SAV}}' + - "{{Game data/config|DOS|{{p|game}}\\REDNECK.CFG}}" + - "{{Game data/saves|DOS|{{p|game}}\\GAME*.SAV}}" Redneck Rampage Rides Again: gog: 1207658674 pageId: 15530 steam: 580940 templates: - - '{{Game data/config|DOS|{{p|game}}\REDNECK.CFG}}' - - '{{Game data/saves|DOS|{{p|game}}\GAME*.SAV}}' + - "{{Game data/config|DOS|{{p|game}}\\REDNECK.CFG}}" + - "{{Game data/saves|DOS|{{p|game}}\\GAME*.SAV}}" Redout: gog: 1844570543 pageId: 36548 steam: 517710 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\redout\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{p|game}}\redout\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\redout\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\redout\\Saved\\SaveGames\\}}" Redout 2: pageId: 177464 steam: 1799930 @@ -132149,15 +128638,15 @@ Redout 2: - 2156680 - 2260140 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Redout2\Saved\Config\WindowsNoEditor\}}' -'Redout: Space Assault': + - "{{Game data/config|Windows|{{p|localappdata}}\\Redout2\\Saved\\Config\\WindowsNoEditor\\}}" +"Redout: Space Assault": gog: 1431127790 pageId: 100670 steam: 886060 -'Redrum: Dead Diary': +"Redrum: Dead Diary": pageId: 51577 steam: 541720 -'Redrum: Time Lies': +"Redrum: Time Lies": pageId: 120875 steam: 353080 Redshift VR: @@ -132168,15 +128657,15 @@ Redshirt: pageId: 12401 steam: 247870 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Positech Games\Redshirt\}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Positech Games/Redshirt/}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Saved Games\Redshirt\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Documents/Saved Games/Redshirt/}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/Documents/Saved Games/Redshirt/}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Positech Games\\Redshirt\\}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Positech Games/Redshirt/}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Saved Games\\Redshirt\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Documents/Saved Games/Redshirt/}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/Documents/Saved Games/Redshirt/}}" Redswood VR: pageId: 36183 steam: 499760 -'Redux: Dark Matters': +"Redux: Dark Matters": pageId: 49127 steam: 336930 Reed: @@ -132188,7 +128677,7 @@ Reef Shot: Reek: pageId: 156609 steam: 1212300 -'Reel Fishing: Road Trip Adventure': +"Reel Fishing: Road Trip Adventure": pageId: 149696 steam: 1051190 Reentry - An Orbital Simulator: @@ -132198,15 +128687,15 @@ RefRain - Prism Memories: pageId: 34791 steam: 435970 templates: - - '{{Game data/config|Windows| {{p|game}}\config.txt }}' - - '{{Game data/saves|Windows|{{p|game}}\global.dat }}' + - "{{Game data/config|Windows| {{p|game}}\\config.txt }}" + - "{{Game data/saves|Windows|{{p|game}}\\global.dat }}" Refactor: pageId: 39723 steam: 342730 Reficul: pageId: 74221 steam: 698110 -'Refight:Burning Engine': +"Refight:Burning Engine": pageId: 113184 steam: 773520 Refill your Roguelike: @@ -132218,8 +128707,8 @@ RefleX: steamSide: - 331240 templates: - - '{{Game data/config|Windows|{{p|appdata}}\SITER SKAIN\RefleX\RefleX.ini}}' - - '{{Game data/saves|Windows|{{p|appdata}}\SITER SKAIN\RefleX\RefleX.sav}}' + - "{{Game data/config|Windows|{{p|appdata}}\\SITER SKAIN\\RefleX\\RefleX.ini}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\SITER SKAIN\\RefleX\\RefleX.sav}}" Reflected Ray: pageId: 93162 steam: 845450 @@ -132238,21 +128727,19 @@ Reflection of a Fallen Feather: Reflections: pageId: 47481 steam: 352360 -'Reflections of Life: Equilibrium': +"Reflections of Life: Equilibrium": pageId: 135085 steam: 1075750 -'Reflections of Life: Tree of Dreams': +"Reflections of Life: Tree of Dreams": pageId: 110402 steam: 926090 Reflections ~Dreams and Reality~: pageId: 129855 steam: 1035700 templates: - - >- - {{Game data/config|Windows|{{P|appdata}}\renpy\Reflections D&R-1463789239\persistent |{{p|game}}\game\saves\persistent }} - - '{{Game data/saves|Windows|{{P|appdata}}\renpy\Reflections D&R-1463789239\*.save|{{p|game}}\game\saves\*.save}}' -'Reflector: Bug Hunt': + - "{{Game data/config|Windows|{{P|appdata}}\\renpy\\Reflections D&R-1463789239\\persistent |{{p|game}}\\game\\saves\\persistent }}" + - "{{Game data/saves|Windows|{{P|appdata}}\\renpy\\Reflections D&R-1463789239\\*.save|{{p|game}}\\game\\saves\\*.save}}" +"Reflector: Bug Hunt": pageId: 68374 steam: 638780 Reflex (2017): @@ -132267,7 +128754,7 @@ Reflex Arena: pageId: 23065 steam: 328070 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' + - "{{Game data/config|Windows|{{p|game}}\\}}" ReflexShot: pageId: 135121 steam: 1067280 @@ -132293,28 +128780,26 @@ Refunct: pageId: 37148 steam: 406150 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Refunct\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/config|OS X|{{P|osxhome}}/Library/Preferences/Refunct/Mac/}}' - - '{{Game data/config|Linux|{{P|linuxhome}}/.config/Epic/Refunct/Saved/Config/LinuxNoEditor/}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\Refunct\Saved\SaveGames\}}' - - '{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/Epic/Refunct/Saved/SaveGames/}}' - - '{{Game data/saves|Linux|{{P|linuxhome}}/.config/Epic/Refunct/Saved/SaveGames/}}' -'Regalia: Of Men and Monarchs': + - "{{Game data/config|Windows|{{P|localappdata}}\\Refunct\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/config|OS X|{{P|osxhome}}/Library/Preferences/Refunct/Mac/}}" + - "{{Game data/config|Linux|{{P|linuxhome}}/.config/Epic/Refunct/Saved/Config/LinuxNoEditor/}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Refunct\\Saved\\SaveGames\\}}" + - "{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/Epic/Refunct/Saved/SaveGames/}}" + - "{{Game data/saves|Linux|{{P|linuxhome}}/.config/Epic/Refunct/Saved/SaveGames/}}" +"Regalia: Of Men and Monarchs": gog: 1306536711 pageId: 54685 steam: 464150 templates: - - '{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/Pixelated Milk/Regalia - Of Men and Monarchs/}}' - - >- - {{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Pixelated Milk\Regalia - Of Men and - Monarchs\Default\}} - - '{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/Pixelated Milk/Regalia - Of Men and Monarchs/Default/}}' + - "{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/Pixelated Milk/Regalia - Of Men and Monarchs/}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Pixelated Milk\\Regalia - Of Men and Monarchs\\Default\\}}" + - "{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/Pixelated Milk/Regalia - Of Men and Monarchs/Default/}}" Regency Solitaire: pageId: 36330 steam: 351090 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Grey Alien Games\Regency Solitaire\RegencySolitaire.ini}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Grey Alien Games\Regency Solitaire\profiles\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Grey Alien Games\\Regency Solitaire\\RegencySolitaire.ini}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Grey Alien Games\\Regency Solitaire\\profiles\\}}" Regenesis Arcade: pageId: 67645 steam: 642000 @@ -132325,8 +128810,8 @@ Regeria Hope Episode 1: pageId: 37850 steam: 447570 templates: - - '{{Game data/config|Windows|{{P|appdata}}\RenPy\RegeriaHope-1351130176\persistent|{{P|game}}\saves\persistent}}' - - '{{Game data/saves|Windows|{{P|appdata}}\RenPy\RegeriaHope-1351130176\*.save|{{P|game}}\saves\*.save}}' + - "{{Game data/config|Windows|{{P|appdata}}\\RenPy\\RegeriaHope-1351130176\\persistent|{{P|game}}\\saves\\persistent}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\RenPy\\RegeriaHope-1351130176\\*.save|{{P|game}}\\saves\\*.save}}" Regimental Chess: pageId: 48058 steam: 362400 @@ -132344,8 +128829,8 @@ Regions of Ruin: pageId: 70367 steam: 680360 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\voxGames\Regions of Ruin\}}' - - '{{Game data/saves|Windows|{{P|game}}\Regions of Ruin_Data\gameData.json}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\voxGames\\Regions of Ruin\\}}" + - "{{Game data/saves|Windows|{{P|game}}\\Regions of Ruin_Data\\gameData.json}}" Regular Human Basketball: pageId: 100418 steam: 661940 @@ -132364,17 +128849,17 @@ Reign of Kings: Reign of the Succubus: pageId: 105307 steam: 893500 -'Reign: Conflict of Nations': +"Reign: Conflict of Nations": pageId: 51076 steam: 46380 templates: - - '{{Game data/saves|Windows|{{p|userprofile\documents}}\My Games\1C\reign conflict of nations}}' + - "{{Game data/saves|Windows|{{p|userprofile\\documents}}\\My Games\\1C\\reign conflict of nations}}" ReignMaker: pageId: 50432 steam: 286200 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Frogdice\ReignMaker}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Frogdice/ReignMaker}}' + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Frogdice\\ReignMaker}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Frogdice/ReignMaker}}" Reignfall: pageId: 112580 steam: 935930 @@ -132386,20 +128871,20 @@ Reigns: pageId: 35986 steam: 474750 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Nerial\Reigns\}}' -'Reigns: Beyond': + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Nerial\\Reigns\\}}" +"Reigns: Beyond": pageId: 164333 -'Reigns: Game of Thrones': +"Reigns: Game of Thrones": gog: 2060365190 pageId: 109398 steam: 897820 -'Reigns: Her Majesty': +"Reigns: Her Majesty": gog: 1183536009 pageId: 78072 steam: 717640 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Nerial\Reigns_ Her Majesty\}}' -Reiko's Fragments: + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Nerial\\Reigns_ Her Majesty\\}}" +"Reiko's Fragments": pageId: 149933 steam: 1171240 Reincarnated As A Monster: @@ -132408,7 +128893,7 @@ Reincarnated As A Monster: Reiner Knizia Yellow & Yangtze: pageId: 149321 steam: 965610 -Reiner Knizia's The Confrontation: +"Reiner Knizia's The Confrontation": pageId: 46374 steam: 395190 Rekindling: @@ -132418,15 +128903,15 @@ Rekoil: pageId: 12689 steam: 243320 templates: - - '{{Game data/config|Steam|{{p|steam}}\userdata\{{p|uid}}\243320\}}' -Reksarych's Sudoku: + - "{{Game data/config|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\243320\\}}" +"Reksarych's Sudoku": pageId: 123578 steam: 981280 Reky: pageId: 154039 steam: 1182470 templates: - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\beyondthosehills\reky\gs.json}}' + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\beyondthosehills\\reky\\gs.json}}" Relativity: pageId: 36830 steam: 516550 @@ -132442,7 +128927,7 @@ Relaxation Balls: Relaxicon: pageId: 89407 steam: 815010 -'Relaxing VR Games: Mahjong': +"Relaxing VR Games: Mahjong": pageId: 58614 steam: 534920 RelayCars: @@ -132461,8 +128946,8 @@ Relic Hunters Zero: pageId: 37441 steam: 382490 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\RelicHuntersZero}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\RelicHuntersZero}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\RelicHuntersZero}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\RelicHuntersZero}}" Relic Keepers: pageId: 68980 steam: 675660 @@ -132477,7 +128962,7 @@ Relicta: pageId: 114424 steam: 941570 templates: - - '{{Game data/saves|Windows|{{P|localappdata}}\PAway\Saved\SaveGames}}' + - "{{Game data/saves|Windows|{{P|localappdata}}\\PAway\\Saved\\SaveGames}}" Reliefs: pageId: 90620 steam: 821180 @@ -132488,9 +128973,7 @@ Relive: pageId: 46062 steam: 404580 templates: - - >- - {{Game - data/config|Windows|{{P|userprofile}}\AppData\LocalLow\StudioEvil\Relive\StudioEvil_Default|{{P|hkcu}}\Software\StudioEvil\Relive\}} + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\StudioEvil\\Relive\\StudioEvil_Default|{{P|hkcu}}\\Software\\StudioEvil\\Relive\\}}" Relivium: pageId: 157474 steam: 1183350 @@ -132518,7 +129001,7 @@ Remaining in a Dream: Remains: pageId: 181558 steam: 1309820 -'Remake Evil 3: Resident Penesis': +"Remake Evil 3: Resident Penesis": pageId: 189808 steam: 1253430 Remaya Idle: @@ -132533,12 +129016,12 @@ Remember Me: steamSide: - 237800 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\UnrealEngine3\RememberMeGame\Config\}}' - - '{{Game data/saves|Windows|{{p|steam}}/userdata/{{p|uid}}/228300/remote/}}' -'Remember, Lights Out': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\UnrealEngine3\\RememberMeGame\\Config\\}}" + - "{{Game data/saves|Windows|{{p|steam}}/userdata/{{p|uid}}/228300/remote/}}" +"Remember, Lights Out": pageId: 148878 steam: 1171620 -'Remember, Remember': +"Remember, Remember": pageId: 62225 steam: 631990 Remember11 -The Age of Infinity-: @@ -132546,11 +129029,11 @@ Remember11 -The Age of Infinity-: renamedFrom: - Remember11 -the age of infinity- templates: - - '{{Game data/saves|Windows|{{p|appdata}}\REMEMBER11\}}' + - "{{Game data/saves|Windows|{{p|appdata}}\\REMEMBER11\\}}" Rememoried: pageId: 46651 steam: 368450 -'RemiLore: Lost Girl in the Lands of Lore': +"RemiLore: Lost Girl in the Lands of Lore": gog: 1906241218 pageId: 130269 steam: 995240 @@ -132569,17 +129052,15 @@ Remnant II: - 2384073 - 2384076 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Remnant2\Saved\Config\Windows\}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\Saved Games\Remnant2\Steam\{{P|uid}}\}}' -'Remnant: From the Ashes': + - "{{Game data/config|Windows|{{P|localappdata}}\\Remnant2\\Saved\\Config\\Windows\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\Saved Games\\Remnant2\\Steam\\{{P|uid}}\\}}" +"Remnant: From the Ashes": pageId: 135810 steam: 617290 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Remnant\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\Remnant\Saved\SaveGames}}' - - >- - {{Game data/saves|Microsoft - Store|{{P|localappdata}}\Packages\PerfectWorldEntertainment.RemnantFromtheAshes_jrajkyc4tsa6w\SystemAppData\wgs}} + - "{{Game data/config|Windows|{{P|localappdata}}\\Remnant\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Remnant\\Saved\\SaveGames}}" + - "{{Game data/saves|Microsoft Store|{{P|localappdata}}\\Packages\\PerfectWorldEntertainment.RemnantFromtheAshes_jrajkyc4tsa6w\\SystemAppData\\wgs}}" Remnants: pageId: 95011 steam: 574180 @@ -132590,10 +129071,10 @@ Remnants of Naezith: pageId: 57711 steam: 590590 templates: - - '{{Game data/config|Windows|{{p|game}}\data\user\settings.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\data\user\}}' - - '{{Game data/saves|OS X|{{p|game}}/data/user/}}' - - '{{Game data/saves|Linux|{{p|game}}/data/user/}}' + - "{{Game data/config|Windows|{{p|game}}\\data\\user\\settings.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\data\\user\\}}" + - "{{Game data/saves|OS X|{{p|game}}/data/user/}}" + - "{{Game data/saves|Linux|{{p|game}}/data/user/}}" Remnants of The Arcane: pageId: 59814 steam: 498390 @@ -132606,23 +129087,23 @@ Remnants of a Beautiful Day (2012): Remnith: pageId: 66669 steam: 578390 -'Remorse: The List': +"Remorse: The List": gog: 1452095777 pageId: 128753 steam: 867960 -'Remothered: Broken Porcelain': +"Remothered: Broken Porcelain": gog: 1272977612 pageId: 143499 steam: 1142390 templates: - - '{{Game data/saves|Windows|{{p|localappdata}}\Remothered2\Saved\SaveGames\}}' -'Remothered: Tormented Fathers': + - "{{Game data/saves|Windows|{{p|localappdata}}\\Remothered2\\Saved\\SaveGames\\}}" +"Remothered: Tormented Fathers": gog: 1408897127 pageId: 63620 steam: 633360 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Remothered\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Remothered\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Remothered\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Remothered\\Saved\\SaveGames\\}}" Remuage - MeltySensation: pageId: 152699 steam: 1198890 @@ -132645,7 +129126,7 @@ Rend: pageId: 59405 steam: 547860 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Otherlands\Saved\Config\WindowsClient\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Otherlands\\Saved\\Config\\WindowsClient\\}}" Rending Sky: pageId: 127551 steam: 960150 @@ -132654,48 +129135,44 @@ Renditions of the Awakening: steam: 1152260 Renegade: pageId: 176006 -'Renegade Grounds: Episode 1': +"Renegade Grounds: Episode 1": pageId: 68410 steam: 661670 -'Renegade Grounds: Episode 2': +"Renegade Grounds: Episode 2": pageId: 155945 steam: 1204280 Renegade Ops: pageId: 3685 steam: 99300 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\SEGA\Renegade Ops\Saves\Settings}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\SEGA\Renegade Ops\}}' - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\99300\remote\}}' + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\SEGA\\Renegade Ops\\Saves\\Settings}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\SEGA\\Renegade Ops\\}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\99300\\remote\\}}" Renegade Paintball: pageId: 89844 templates: - - '{{Game data/config|Windows|{{P|game}}\Data\game.ini
{{P|game}}\settings.dat}}' - - '{{Game data/saves|Windows|{{P|game}}\data\profiles\}}' + - "{{Game data/config|Windows|{{P|game}}\\Data\\game.ini
{{P|game}}\\settings.dat}}" + - "{{Game data/saves|Windows|{{P|game}}\\data\\profiles\\}}" Renegade X: pageId: 14862 templates: - - '{{Game data/config|Windows|{{p|game}}\Engine\Config\*.ini}}' -'Renfield: Bring Your Own Blood': + - "{{Game data/config|Windows|{{p|game}}\\Engine\\Config\\*.ini}}" +"Renfield: Bring Your Own Blood": pageId: 186580 steam: 2354600 Renoir: pageId: 39414 steam: 496400 -'Renowned Explorers: International Society': +"Renowned Explorers: International Society": gog: 1435329098 pageId: 34324 steam: 296970 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Renowned Explorers International Society\userdata\}}' - - >- - {{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Renowned Explorers International - Society/userdata}} - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Renowned Explorers International Society\savedata\}}' - - >- - {{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Renowned Explorers International - Society/savedata}} - - '{{Game data/saves|Linux|{{p|game}}/game/userdata/Renowned Explorers International Society/savedata}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Renowned Explorers International Society\\userdata\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Renowned Explorers International Society/userdata}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Renowned Explorers International Society\\savedata\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Renowned Explorers International Society/savedata}}" + - "{{Game data/saves|Linux|{{p|game}}/game/userdata/Renowned Explorers International Society/savedata}}" Rent-a-Vice: pageId: 93938 steam: 858780 @@ -132714,7 +129191,7 @@ Renzo Racer: RepairBot: pageId: 125191 steam: 991620 -'Repeat the Image: Animals': +"Repeat the Image: Animals": pageId: 103927 steam: 906160 Repel Aliens 3D: @@ -132727,7 +129204,7 @@ Repetendium: pageId: 186865 steam: 2055500 templates: - - '{{Game data/saves|Windows|{{P|localappdata}}\Repetendium}}' + - "{{Game data/saves|Windows|{{P|localappdata}}\\Repetendium}}" Replaced: pageId: 169280 steam: 1663850 @@ -132738,8 +129215,8 @@ Replica: pageId: 38047 steam: 496890 templates: - - '{{Game data/config|Windows|{{p|HKCU}}\Software\SOMI\Replica\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\SOMI\Replica\|{{p|HKCU}}\Software\SOMI\Replica\}}' + - "{{Game data/config|Windows|{{p|HKCU}}\\Software\\SOMI\\Replica\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\SOMI\\Replica\\|{{p|HKCU}}\\Software\\SOMI\\Replica\\}}" Repo Man: pageId: 135921 steam: 1065740 @@ -132754,15 +129231,15 @@ Reprisal Universe: pageId: 21971 steam: 319560 templates: - - '{{Game data/saves|Windows|{{p|appdata}}\reprisal}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Preferences/reprisal}}' + - "{{Game data/saves|Windows|{{p|appdata}}\\reprisal}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Preferences/reprisal}}" Reproduction Man: pageId: 56094 steam: 511920 Reprogram: pageId: 75467 steam: 710670 -'Reptiles: In Hunt': +"Reptiles: In Hunt": pageId: 105189 steam: 897380 Reptilian Rebellion: @@ -132772,33 +129249,33 @@ Reptilians Must Die!: pageId: 53674 steam: 556120 templates: - - '{{Game data/config|Windows|{{p|LOCALAPPDATA}}\ReptiliansMustDie2.0.4EN\}}' - - '{{Game data/saves|Windows|{{p|LOCALAPPDATA}}\ReptiliansMustDie2.0.4EN\}}' + - "{{Game data/config|Windows|{{p|LOCALAPPDATA}}\\ReptiliansMustDie2.0.4EN\\}}" + - "{{Game data/saves|Windows|{{p|LOCALAPPDATA}}\\ReptiliansMustDie2.0.4EN\\}}" Reptiloids: pageId: 81631 steam: 640330 Reptomom: pageId: 126189 steam: 1000880 -'Republic: The Revolution': +"Republic: The Revolution": gog: 1207658781 pageId: 29631 templates: - - '{{Game data/config|Windows|{{p|game}}\Main\SaveGame\RepublicOptions.ini}}' + - "{{Game data/config|Windows|{{p|game}}\\Main\\SaveGame\\RepublicOptions.ini}}" Republique Remastered: gog: 1423080728 pageId: 22812 steam: 317100 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Camouflaj\République}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Camouflaj\R__publique\{{P|uid}}\Save\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Camouflaj\\République}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Camouflaj\\R__publique\\{{P|uid}}\\Save\\}}" Republique VR: pageId: 161077 steam: 915200 Repulsanoid: pageId: 52696 steam: 550890 -'Repulse: Galactic Rivals': +"Repulse: Galactic Rivals": pageId: 75043 steam: 692310 Requiem: @@ -132807,14 +129284,14 @@ Requiem: Requiem of Science: pageId: 175072 steam: 1828210 -'Requiem: Avenging Angel': +"Requiem: Avenging Angel": gog: 1449581489 pageId: 3796 steam: 493310 templates: - - '{{Game data/config|Windows|{{p|game}}\Gamers}}' - - '{{Game data/saves|Windows|{{p|game}}\Gamers}}' -'Requiem: Rise of the Reaver': + - "{{Game data/config|Windows|{{p|game}}\\Gamers}}" + - "{{Game data/saves|Windows|{{p|game}}\\Gamers}}" +"Requiem: Rise of the Reaver": pageId: 48525 steam: 289780 Requiescence: @@ -132828,16 +129305,16 @@ Requital: Reroll: pageId: 96559 steam: 869270 -'Reroll: Back to the Throne': +"Reroll: Back to the Throne": pageId: 77190 steam: 741630 -'Res Judicata: Vale of Myth': +"Res Judicata: Vale of Myth": pageId: 66229 steam: 670970 Rescale: pageId: 110222 steam: 923550 -'Rescue 2: Everyday Heroes': +"Rescue 2: Everyday Heroes": pageId: 47653 steam: 339210 Rescue Bear Operation: @@ -132865,7 +129342,7 @@ Rescue Lucy 2: Rescue Medic: pageId: 114460 steam: 942220 -'Rescue Party: Live!': +"Rescue Party: Live!": pageId: 174283 steam: 1662570 Rescue Quest Gold: @@ -132900,10 +129377,10 @@ Rescue Team 6: Rescue Team 7: pageId: 65257 steam: 666050 -'Rescue Team: Evil Genius': +"Rescue Team: Evil Genius": pageId: 149805 steam: 1155340 -'Rescue Team: Heist of the Century': +"Rescue Team: Heist of the Century": pageId: 183761 steam: 1901560 Rescue bomber: @@ -132915,7 +129392,7 @@ Rescue the Great Demon 2: Rescue your chickens: pageId: 52818 steam: 551080 -'Rescue: Everyday Heroes': +"Rescue: Everyday Heroes": pageId: 40484 steam: 253130 Rescuers2019: @@ -132932,9 +129409,9 @@ Research and Destroy: Reservoir Dogs: pageId: 80263 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Eidos\Reservoir Dogs\config.ini}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Eidos\Reservoir Dogs\}}' -'Reservoir Dogs: Bloody Days': + - "{{Game data/config|Windows|{{p|appdata}}\\Eidos\\Reservoir Dogs\\config.ini}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Eidos\\Reservoir Dogs\\}}" +"Reservoir Dogs: Bloody Days": gog: 1405976071 pageId: 61339 steam: 585010 @@ -132943,7 +129420,7 @@ Reset: Reset 1-1: pageId: 36640 steam: 491650 -'Resette''s Prescription: Book of Memory, Swaying Scale': +"Resette's Prescription: Book of Memory, Swaying Scale": pageId: 33604 steam: 463460 Resfort: @@ -132952,13 +129429,13 @@ Resfort: Resident Evil: pageId: 218 templates: - - '{{Game data/config|Windows|{{p|hklm}}\Software\capcom\RESIDENT EVIL}}' - - '{{Game data/saves|Windows|{{p|game}}\savedat*.dat}}' + - "{{Game data/config|Windows|{{p|hklm}}\\Software\\capcom\\RESIDENT EVIL}}" + - "{{Game data/saves|Windows|{{p|game}}\\savedat*.dat}}" Resident Evil 2: pageId: 21579 templates: - - '{{Game data/config|Windows|{{p|hklm}}\Software\CAPCOM\RESIDENT EVIL2}}' - - '{{Game data/saves|Windows|{{p|game}}\}}' + - "{{Game data/config|Windows|{{p|hklm}}\\Software\\CAPCOM\\RESIDENT EVIL2}}" + - "{{Game data/saves|Windows|{{p|game}}\\}}" Resident Evil 2 (2019): pageId: 97738 steam: 883710 @@ -132966,36 +129443,36 @@ Resident Evil 2 (2019): - 961440 - 1168280 templates: - - '{{Game data/config|Windows|{{p|game}}\re2_config.ini}}' - - '{{Game data/saves|Windows|{{p|Steam}}\userdata\{{p|uid}}\883710\remote\}}' + - "{{Game data/config|Windows|{{p|game}}\\re2_config.ini}}" + - "{{Game data/saves|Windows|{{p|Steam}}\\userdata\\{{p|uid}}\\883710\\remote\\}}" Resident Evil 3 (2020): pageId: 154505 steam: 952060 templates: - - '{{Game data/config|Windows|{{P|steam}}\steamapps\common\RE3\re3_config.ini}}' - - '{{Game data/saves|Windows|{{P|steam}}\userdata\{{P|uid}}\952060\remote}}' -'Resident Evil 3: Nemesis': + - "{{Game data/config|Windows|{{P|steam}}\\steamapps\\common\\RE3\\re3_config.ini}}" + - "{{Game data/saves|Windows|{{P|steam}}\\userdata\\{{P|uid}}\\952060\\remote}}" +"Resident Evil 3: Nemesis": pageId: 21578 templates: - - '{{Game data/config|Windows|{{p|game}}\bio3.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\}}' + - "{{Game data/config|Windows|{{p|game}}\\bio3.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\}}" Resident Evil 4: pageId: 690 templates: - - '{{Game data/config|Windows|{{p|game}}/SetupTool.ini}}' - - '{{Game data/saves|Windows|{{p|game}}/SaveData.dat}}' + - "{{Game data/config|Windows|{{p|game}}/SetupTool.ini}}" + - "{{Game data/saves|Windows|{{p|game}}/SaveData.dat}}" Resident Evil 4 (2023): pageId: 178020 steam: 2050650 steamSide: - - 2231770 - - 777727 - - 777729 - - 777728 - 732620 + - 777727 + - 777728 + - 777729 + - 2231770 templates: - - '{{Game data/config|Windows|{{P|game}}\local_config.ini}}' - - '{{Game data/saves|Windows|{{p|steam}}\userdata\{{p|uid}}\2050650\remote\win64_save\}}' + - "{{Game data/config|Windows|{{P|game}}\\local_config.ini}}" + - "{{Game data/saves|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\2050650\\remote\\win64_save\\}}" Resident Evil 4 Ultimate HD Edition: pageId: 14546 steam: 254700 @@ -133003,8 +129480,8 @@ Resident Evil 4 Ultimate HD Edition: - 272260 - 272261 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Capcom\RE4\|{{p|game}}\BIO4\input.ini}}' - - '{{Game data/saves|Windows|{{p|steam}}\userdata\{{p|uid}}\254700\remote\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Capcom\\RE4\\|{{p|game}}\\BIO4\\input.ini}}" + - "{{Game data/saves|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\254700\\remote\\}}" Resident Evil 4 VR: pageId: 171783 Resident Evil 5: @@ -133013,111 +129490,107 @@ Resident Evil 5: steamSide: - 352000 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\capcom\RESIDENT EVIL 5\config.ini}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\capcom\RESIDENT EVIL 5\}}' - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\21690\remote\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\capcom\\RESIDENT EVIL 5\\config.ini}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\capcom\\RESIDENT EVIL 5\\}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\21690\\remote\\}}" Resident Evil 6: pageId: 3451 steam: 221040 steamSide: - 229950 - - 236080 + - 231390 - 232530 - - 232590 - 232550 - 232570 - - 231390 + - 232590 + - 236080 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\capcom\RESIDENT EVIL - 6\config.ini|{{p|userprofile\Documents}}\capcom\RESIDENT EVIL 6\mapping.ini}} - - '{{Game data/saves|Windows|{{p|steam}}\userdata\{{p|uid}}\221040\remote\}}' -'Resident Evil 7 Teaser: Beginning Hour': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\capcom\\RESIDENT EVIL 6\\config.ini|{{p|userprofile\\Documents}}\\capcom\\RESIDENT EVIL 6\\mapping.ini}}" + - "{{Game data/saves|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\221040\\remote\\}}" +"Resident Evil 7 Teaser: Beginning Hour": pageId: 55249 steam: 418370 steamSide: - 530620 templates: - - '{{Game data/config|Windows|{{p|game}}/re7_config.ini}}' - - '{{Game data/saves|Steam|{{p|Steam}}/userdata/{{p|uid}}/530620/|{{p|Steam}}/userdata/{{p|uid}}/418370/remote}}' -'Resident Evil 7: Biohazard': + - "{{Game data/config|Windows|{{p|game}}/re7_config.ini}}" + - "{{Game data/saves|Steam|{{p|Steam}}/userdata/{{p|uid}}/530620/|{{p|Steam}}/userdata/{{p|uid}}/418370/remote}}" +"Resident Evil 7: Biohazard": pageId: 35030 steam: 418370 steamSide: - 530940 templates: - - '{{Game data/config|Steam|{{p|game}}\re7_config.ini}}' - - >- - {{Game data/saves|Microsoft - Store|{{p|localappdata}}\Packages\F024294D.RESIDENTEVIL7biohazard_8fty0by30jkny\SystemAppData\wgs\}} - - '{{Game data/saves|Steam|{{p|Steam}}\userdata\{{p|uid}}\418370\remote\}}' + - "{{Game data/config|Steam|{{p|game}}\\re7_config.ini}}" + - "{{Game data/saves|Microsoft Store|{{p|localappdata}}\\Packages\\F024294D.RESIDENTEVIL7biohazard_8fty0by30jkny\\SystemAppData\\wgs\\}}" + - "{{Game data/saves|Steam|{{p|Steam}}\\userdata\\{{p|uid}}\\418370\\remote\\}}" Resident Evil HD Remaster: pageId: 20009 steam: 304240 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\CAPCOM\Resident Evil - biohazard@HD REMASTER\}}' - - '{{Game data/saves|Windows|{{p|steam}}\userdata\{{p|uid}}\304240\remote\}}' -'Resident Evil Re:Verse': + - "{{Game data/config|Windows|{{p|localappdata}}\\CAPCOM\\Resident Evil - biohazard@HD REMASTER\\}}" + - "{{Game data/saves|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\304240\\remote\\}}" +"Resident Evil Re:Verse": pageId: 166166 steam: 1236300 Resident Evil Resistance: pageId: 146587 steam: 952070 templates: - - '{{Game data/config|Steam|{{P|steam}}\userdata\{{P|uid}}\952070\remote}}' - - '{{Game data/saves|Windows|{{P|steam}}\userdata\{{P|uid}}\952070\remote}}' + - "{{Game data/config|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\952070\\remote}}" + - "{{Game data/saves|Windows|{{P|steam}}\\userdata\\{{P|uid}}\\952070\\remote}}" Resident Evil Survivor: pageId: 55324 templates: - - '{{Game data/saves|Windows|{{p|game}}\Save}}' + - "{{Game data/saves|Windows|{{p|game}}\\Save}}" Resident Evil Village: pageId: 161027 steam: 1196590 steamSide: - - 1731080 - - 1731081 + - 1456360 - 1456361 - 1456362 - 1456363 - - 1456360 + - 1731080 + - 1731081 templates: - - '{{Game data/config|Windows|{{P|game}}\config.ini}}' - - '{{Game data/saves|Windows|{{P|steam}}\userdata\{{P|uid}}\1196590\remote\win64_save}}' + - "{{Game data/config|Windows|{{P|game}}\\config.ini}}" + - "{{Game data/saves|Windows|{{P|steam}}\\userdata\\{{P|uid}}\\1196590\\remote\\win64_save}}" Resident Evil Zero HD Remaster: pageId: 30085 steam: 339340 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\CAPCOM\RESIDENT EVIL 0 HD REMASTER\config.ini}}' - - '{{Game data/saves|Windows|{{p|steam}}\userdata\{{p|uid}}\339340\remote\}}' -'Resident Evil: Operation Raccoon City': + - "{{Game data/config|Windows|{{p|localappdata}}\\CAPCOM\\RESIDENT EVIL 0 HD REMASTER\\config.ini}}" + - "{{Game data/saves|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\339340\\remote\\}}" +"Resident Evil: Operation Raccoon City": pageId: 2208 steam: 209100 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\CAPCOM\RERC\settings.dat}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\CAPCOM\RERC\}}' -'Resident Evil: Revelations': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\CAPCOM\\RERC\\settings.dat}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\CAPCOM\\RERC\\}}" +"Resident Evil: Revelations": pageId: 5683 steam: 222480 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\CAPCOM\RESIDENT EVIL REVELATIONS\config.ini}}' - - '{{Game data/saves|Windows|{{p|steam}}\userdata\{{p|uid}}\222480\remote\}}' -'Resident Evil: Revelations 2': + - "{{Game data/config|Windows|{{p|localappdata}}\\CAPCOM\\RESIDENT EVIL REVELATIONS\\config.ini}}" + - "{{Game data/saves|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\222480\\remote\\}}" +"Resident Evil: Revelations 2": pageId: 20010 steam: 287290 steamSide: - 319810 - 320350 - 320351 - - 320353 - 320352 - - 320372 - - 320371 - - 320370 - - 320361 + - 320353 - 320360 + - 320361 - 320362 - 320363 - 320364 + - 320370 + - 320371 + - 320372 - 320380 - 320381 - 320382 @@ -133128,16 +129601,16 @@ Resident Evil Zero HD Remaster: - 320387 - 320388 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\capcom\RESIDENT EVIL REVELATIONS2\config.ini}}' - - '{{Game data/saves|Windows|{{p|steam}}\userdata\{{p|uid}}\287290\remote\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\capcom\\RESIDENT EVIL REVELATIONS2\\config.ini}}" + - "{{Game data/saves|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\287290\\remote\\}}" Residual: gog: 1688702977 pageId: 171338 steam: 1290780 -'Residue: Final Cut': +"Residue: Final Cut": pageId: 49825 steam: 265790 -'Resilience: Wave Survival': +"Resilience: Wave Survival": pageId: 45152 steam: 429490 Resin: @@ -133157,26 +129630,26 @@ Resolutiion: pageId: 145197 steam: 975150 templates: - - '{{Game data/config|Windows|{{P|appdata}}\Godot\app_userdata\Resolutiion\config.cfg}}' - - '{{Game data/saves|Windows|{{P|appdata}}\Godot\app_userdata\Resolutiion\dreams\}}' + - "{{Game data/config|Windows|{{P|appdata}}\\Godot\\app_userdata\\Resolutiion\\config.cfg}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\Godot\\app_userdata\\Resolutiion\\dreams\\}}" Resonance: gog: 1207659043 pageId: 3159 steam: 212050 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\Saved Games\Resonance\acsetup.cfg}}' - - '{{Game data/config|Linux|{{P|game}}/acsetup.cfg}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\Saved Games\Resonance\}}' - - '{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/Resonance/}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/ags/Resonance/}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\Saved Games\\Resonance\\acsetup.cfg}}" + - "{{Game data/config|Linux|{{P|game}}/acsetup.cfg}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Saved Games\\Resonance\\}}" + - "{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/Resonance/}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/ags/Resonance/}}" Resonance of Fate 4K/HD Edition: pageId: 111442 renamedFrom: - Resonance of Fate steam: 645730 templates: - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Resonance of Fate\SaveData}}' -'Resort Boss: Golf': + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Resonance of Fate\\SaveData}}" +"Resort Boss: Golf": pageId: 95549 steam: 869060 Respawn Man: @@ -133207,8 +129680,8 @@ Restaurant Empire II: pageId: 41291 steam: 32900 templates: - - '{{Game data/config|Windows|{{P|userprofile}}\My Games\Restaurant Emprie 2\}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\My Games\Restaurant Emprie 2\SAVE}}' + - "{{Game data/config|Windows|{{P|userprofile}}\\My Games\\Restaurant Emprie 2\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\My Games\\Restaurant Emprie 2\\SAVE}}" Restaurant Flipper: pageId: 157454 steam: 1166660 @@ -133218,7 +129691,7 @@ Restaurant Manager: Restaurant Renovation: pageId: 135944 steam: 1057630 -'Restaurant Solitaire: Pleasant Dinner': +"Restaurant Solitaire: Pleasant Dinner": pageId: 154013 steam: 1165090 Restaurant Tycoon: @@ -133239,16 +129712,16 @@ Restricted Area: Restricted-RPS - All Aboard The Icarus: pageId: 35190 steam: 364960 -'Resuffer: Down the Rabbit Hole': +"Resuffer: Down the Rabbit Hole": pageId: 135627 steam: 927760 -'Resume: The Video Game': +"Resume: The Video Game": pageId: 87211 steam: 787990 Resurgence: pageId: 69579 steam: 529920 -'Resurgence: Earth United': +"Resurgence: Earth United": pageId: 70538 steam: 674250 Resurrector: @@ -133263,7 +129736,7 @@ Retaliation: Retaliation Path of Rome: pageId: 51513 steam: 529070 -'Retaliation: Enemy Mine': +"Retaliation: Enemy Mine": pageId: 44866 steam: 385810 Retention: @@ -133285,8 +129758,8 @@ Retreat to Enen: Retribution: pageId: 17076 templates: - - '{{Game data/config|DOS|{{p|game}}\}}' - - '{{Game data/saves|DOS|{{p|game}}\}}' + - "{{Game data/config|DOS|{{p|game}}\\}}" + - "{{Game data/saves|DOS|{{p|game}}\\}}" Retro Block VR: pageId: 64073 steam: 660820 @@ -133295,9 +129768,9 @@ Retro City Rampage: pageId: 15977 steam: 204630 templates: - - '{{Game data/config|Windows|{{p|appdata}}\RetroCityRampage\rcr.cfg}}' - - '{{Game data/saves|Windows|{{p|appdata}}\RetroCityRampage\*.rsv}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Vblank/Retro City Rampage}}' + - "{{Game data/config|Windows|{{p|appdata}}\\RetroCityRampage\\rcr.cfg}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\RetroCityRampage\\*.rsv}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Vblank/Retro City Rampage}}" Retro Drift: pageId: 156597 steam: 1222180 @@ -133311,7 +129784,7 @@ Retro Game Crunch: pageId: 50246 steam: 290040 templates: - - '{{Game data/saves|Windows|{{p|appdata}}\com.retrogamecrunch.*}}' + - "{{Game data/saves|Windows|{{p|appdata}}\\com.retrogamecrunch.*}}" Retro Hacker: pageId: 89595 steam: 818150 @@ -133379,21 +129852,17 @@ Retro/Grade: pageId: 17044 steam: 222660 templates: - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{P|uid}}/222660/remote/}}' + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{P|uid}}/222660/remote/}}" RetroArch: pageId: 141560 steam: 1118310 templates: - - >- - {{Game data/config|Windows|{{p|game}}\retroarch.cfg|{{p|game}}\config\\*.opt|{{p|game}}\config\\*.cfg}} - - >- - {{Game data/config|OS X|{{p|game}}\retroarch.cfg|{{p|game}}\config\\*.opt|{{p|game}}\config\\*.cfg}} - - '{{Game data/config|Linux|{{p|game}}\retroarch.cfg|{{p|game}}\retroarch-core-options.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\saves\|{{p|game}}\states\}}' - - '{{Game data/saves|OS X|{{p|game}}\saves\|{{p|game}}\states\}}' - - '{{Game data/saves|Linux|{{p|game}}\saves\|{{p|game}}\states\}}' + - "{{Game data/config|Windows|{{p|game}}\\retroarch.cfg|{{p|game}}\\config\\\\*.opt|{{p|game}}\\config\\\\*.cfg}}" + - "{{Game data/config|OS X|{{p|game}}\\retroarch.cfg|{{p|game}}\\config\\\\*.opt|{{p|game}}\\config\\\\*.cfg}}" + - "{{Game data/config|Linux|{{p|game}}\\retroarch.cfg|{{p|game}}\\retroarch-core-options.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\saves\\|{{p|game}}\\states\\}}" + - "{{Game data/saves|OS X|{{p|game}}\\saves\\|{{p|game}}\\states\\}}" + - "{{Game data/saves|Linux|{{p|game}}\\saves\\|{{p|game}}\\states\\}}" RetroFighter VR: pageId: 61948 steam: 616650 @@ -133418,7 +129887,7 @@ Retrocycles: - Armagetron Advanced steam: 1306180 templates: - - '{{Game data/config|Windows|{{P|Steam}}\steamapps\common\Retrocycles\config}}' + - "{{Game data/config|Windows|{{P|Steam}}\\steamapps\\common\\Retrocycles\\config}}" Retrograde Arena: pageId: 135873 steam: 1055210 @@ -133432,8 +129901,8 @@ Retrovirus: pageId: 40665 steam: 227800 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Retrovirus}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Retrovirus\Save}}' + - "{{Game data/config|Windows|{{p|appdata}}\\Retrovirus}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Retrovirus\\Save}}" Retrowave: pageId: 170512 steam: 1239690 @@ -133452,19 +129921,19 @@ Return Zero VR: Return of Red Riding Hood Enhanced Edition: pageId: 79338 steam: 594320 -'Return of the Incredible Machine: Contraptions': +"Return of the Incredible Machine: Contraptions": gog: 1207663943 pageId: 12184 templates: - - '{{Game data/config|Windows|{{p|game}}\CONTRAPTIONS.INI}}' - - '{{Game data/saves|Windows|{{p|game}}\Saved Games\|{{p|game}}\Homemade\}}' + - "{{Game data/config|Windows|{{p|game}}\\CONTRAPTIONS.INI}}" + - "{{Game data/saves|Windows|{{p|game}}\\Saved Games\\|{{p|game}}\\Homemade\\}}" Return of the Obra Dinn: gog: 1108393852 pageId: 113024 steam: 653530 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\3909\ObraDinn\}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\3909\ObraDinn\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\3909\\ObraDinn\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\3909\\ObraDinn\\}}" Return of the Phantom: gog: 1559996859 pageId: 147589 @@ -133472,8 +129941,8 @@ Return of the Phantom: Return of the Triad: pageId: 72613 templates: - - '{{Game data/config|Windows|{{p|game}}\zdoom-*-ROTT.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\*.zds}}' + - "{{Game data/config|Windows|{{p|game}}\\zdoom-*-ROTT.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\*.zds}}" Return to Castle Wolfenstein: gog: 1443699418 gogSide: @@ -133483,10 +129952,8 @@ Return to Castle Wolfenstein: steamSide: - 1379630 templates: - - >- - {{Game - data/config|Windows|{{p|game}}\Main\wolfconfig.cfg|{{p|game}}\Main\wolfconfig_mp.cfg|{{p|userprofile\Documents}}\RTCW\main\}} - - '{{Game data/saves|Windows|{{p|game}}\Main\save\|{{p|userprofile\Documents}}\RTCW\main\save\}}' + - "{{Game data/config|Windows|{{p|game}}\\Main\\wolfconfig.cfg|{{p|game}}\\Main\\wolfconfig_mp.cfg|{{p|userprofile\\Documents}}\\RTCW\\main\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\Main\\save\\|{{p|userprofile\\Documents}}\\RTCW\\main\\save\\}}" Return to Cube Planet: pageId: 136562 steam: 1083330 @@ -133498,38 +129965,34 @@ Return to Krondor: pageId: 21937 steam: 564960 templates: - - '{{Game data/config|Windows|{{P|game}}\RTKRONDOR.INI}}' - - '{{Game data/saves|Windows|{{P|game}}\Books}}' + - "{{Game data/config|Windows|{{P|game}}\\RTKRONDOR.INI}}" + - "{{Game data/saves|Windows|{{P|game}}\\Books}}" Return to Monkey Island: gog: 1436760537 pageId: 178584 steam: 2060130 templates: - - '{{Game data/config|Windows|{{P|appdata}}\Terrible Toybox\Return to Monkey Island\Prefs.json}}' - - >- - {{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Terrible Toybox/Return to Monkey - Island/Prefs.json}} - - '{{Game data/config|Linux|{{p|linuxhome}}/.local/share/Terrible Toybox/Return to Monkey Island/Prefs.json}}' - - '{{Game data/saves|Windows|{{P|appdata}}\Terrible Toybox\Return to Monkey Island\}}' - - >- - {{Game data/saves|Microsoft - Store|{{P|localappdata}}\Packages\DevolverDigital.ReturntoMonkeyIslandXBSeriesXS_6kzv4j18v0c96\SystemAppData\wgs}} - - '{{Game data/saves|OS X|Library/Application Support/Terrible Toybox/Return to Monkey Island/}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.local/share/Terrible Toybox/Return to Monkey Island/}}' + - "{{Game data/config|Windows|{{P|appdata}}\\Terrible Toybox\\Return to Monkey Island\\Prefs.json}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Terrible Toybox/Return to Monkey Island/Prefs.json}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.local/share/Terrible Toybox/Return to Monkey Island/Prefs.json}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\Terrible Toybox\\Return to Monkey Island\\}}" + - "{{Game data/saves|Microsoft Store|{{P|localappdata}}\\Packages\\DevolverDigital.ReturntoMonkeyIslandXBSeriesXS_6kzv4j18v0c96\\SystemAppData\\wgs}}" + - "{{Game data/saves|OS X|Library/Application Support/Terrible Toybox/Return to Monkey Island/}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.local/share/Terrible Toybox/Return to Monkey Island/}}" Return to Mysterious Island: gog: 1207659084 pageId: 14532 steam: 277110 templates: - - '{{Game data/config|Windows|{{P|game}}\config.ini}}' - - '{{Game data/saves|Windows|{{P|game}}\Users}}' + - "{{Game data/config|Windows|{{P|game}}\\config.ini}}" + - "{{Game data/saves|Windows|{{P|game}}\\Users}}" Return to Mysterious Island 2: gog: 1646077970 pageId: 50598 steam: 277270 templates: - - '{{Game data/config|Windows|{{P|programdata}}\RTMI2\Saves\config.ini|{{P|game}}\config.ini}}' - - '{{Game data/saves|Windows|{{p|programdata}}\RTMI2\Saves\}}' + - "{{Game data/config|Windows|{{P|programdata}}\\RTMI2\\Saves\\config.ini|{{P|game}}\\config.ini}}" + - "{{Game data/saves|Windows|{{p|programdata}}\\RTMI2\\Saves\\}}" Return to Nangrim: pageId: 132955 steam: 860210 @@ -133542,10 +130005,7 @@ Return to Shironagasu Island: pageId: 156819 steam: 1156990 templates: - - >- - {{Game data/saves|Windows|{{p|appdata}}\return to shironagasu island\*.ksd|{{p|appdata}}\return to shironagasu - island\*.bmp|{{p|appdata}}\return to shironagasu island ver2\*.ksd|{{p|appdata}}\return to shironagasu island - ver2\*.bmp}} + - "{{Game data/saves|Windows|{{p|appdata}}\\return to shironagasu island\\*.ksd|{{p|appdata}}\\return to shironagasu island\\*.bmp|{{p|appdata}}\\return to shironagasu island ver2\\*.ksd|{{p|appdata}}\\return to shironagasu island ver2\\*.bmp}}" Return to Zork: gog: 1207658907 pageId: 8473 @@ -133560,10 +130020,10 @@ Returnal: pageId: 181925 steam: 1649240 templates: - - '{{Game data/config|Steam|{{P|localappdata}}\Returnal\Steam\Saved\Config}}' - - '{{Game data/config|Epic Games Launcher|{{P|localappdata}}\Returnal\Epic\Saved\Config}}' - - '{{Game data/saves|Steam|{{P|localappdata}}\Returnal\Steam\Saved\SaveGames}}' - - '{{Game data/saves|Epic Games Launcher|{{P|localappdata}}\Returnal\Epic\Saved\SaveGames}}' + - "{{Game data/config|Steam|{{P|localappdata}}\\Returnal\\Steam\\Saved\\Config}}" + - "{{Game data/config|Epic Games Launcher|{{P|localappdata}}\\Returnal\\Epic\\Saved\\Config}}" + - "{{Game data/saves|Steam|{{P|localappdata}}\\Returnal\\Steam\\Saved\\SaveGames}}" + - "{{Game data/saves|Epic Games Launcher|{{P|localappdata}}\\Returnal\\Epic\\Saved\\SaveGames}}" Returner 77: pageId: 87083 steam: 799810 @@ -133572,12 +130032,12 @@ Reus: pageId: 6970 steam: 222730 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Reus\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Reus/}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/Reus/}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Reus\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Reus/}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/Reus/}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Reus\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Reus/}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/Reus/}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Reus\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Reus/}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/Reus/}}" Reveal: pageId: 98724 steam: 882200 @@ -133585,7 +130045,7 @@ Reveal The Deep: pageId: 38185 steam: 411560 templates: - - '{{Game data/saves|Windows|{{P|game}}\userData}}' + - "{{Game data/saves|Windows|{{P|game}}\\userData}}" Revelation: gog: 1834116710 pageId: 169666 @@ -133600,14 +130060,14 @@ Revelations 2012: pageId: 12992 steam: 201070 templates: - - '{{Game data/config|Windows|{{p|game}}\cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\save}}' + - "{{Game data/config|Windows|{{p|game}}\\cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\save}}" Revenant: gog: 1207665803 pageId: 23380 templates: - - '{{Game data/config|Windows|{{p|game}}\revenant.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\Save\}}' + - "{{Game data/config|Windows|{{p|game}}\\revenant.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\Save\\}}" Revenant Dogma: pageId: 109060 steam: 860490 @@ -133631,31 +130091,27 @@ Revenge of Roger Rouge: Revenge of the Headless: pageId: 90951 steam: 778050 -'Revenge of the Spirit: Rite of Resurrection': +"Revenge of the Spirit: Rite of Resurrection": pageId: 55185 steam: 491020 Revenge of the Titans: pageId: 4380 steam: 93200 templates: - - >- - {{Game - data/config|Windows|{{p|appdata}}\.revenge_of_the_titans_1.80\|{{p|userprofile}}\.revenge_of_the_titans_1.80\}} - - '{{Game data/config|Linux|{{p|linuxhome}}/.revenge_of_the_titans_1.80/}}' - - >- - {{Game - data/saves|Windows|{{p|appdata}}\.revenge_of_the_titans_1.80\|{{p|userprofile}}\.revenge_of_the_titans_1.80\}} - - '{{Game data/saves|Linux|{{p|linuxhome}}/.revenge_of_the_titans_1.80/}}' + - "{{Game data/config|Windows|{{p|appdata}}\\.revenge_of_the_titans_1.80\\|{{p|userprofile}}\\.revenge_of_the_titans_1.80\\}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.revenge_of_the_titans_1.80/}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\.revenge_of_the_titans_1.80\\|{{p|userprofile}}\\.revenge_of_the_titans_1.80\\}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.revenge_of_the_titans_1.80/}}" Revenge on the Streets: pageId: 139090 steam: 1095320 -'Revenge: First Blood': +"Revenge: First Blood": pageId: 58324 steam: 596690 -'Revenge: Rhobar''s myth': +"Revenge: Rhobar's myth": pageId: 46520 steam: 324270 -'Revenger: Age of Morons': +"Revenger: Age of Morons": pageId: 88826 steam: 799890 Revenis Prologue 01: @@ -133669,9 +130125,9 @@ Reventure: pageId: 142678 steam: 900270 templates: - - '{{Game data/config|Windows|{{P|game}}\options.sav|{{P|hkcu}}\Software\Pixelatto\Reventure\}}' - - '{{Game data/saves|Windows|{{P|game}}\data.sav}}' -'Reverence: The Ultimate Combat Experience': + - "{{Game data/config|Windows|{{P|game}}\\options.sav|{{P|hkcu}}\\Software\\Pixelatto\\Reventure\\}}" + - "{{Game data/saves|Windows|{{P|game}}\\data.sav}}" +"Reverence: The Ultimate Combat Experience": pageId: 38907 steam: 482460 Reverie: @@ -133685,16 +130141,16 @@ Reverie Knights Tactics: pageId: 172023 steam: 1399690 templates: - - '{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/40 Giants Entertainment/Reverie Knights Tactics/prefs}}' - - '{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/40 Giants Entertainment/Reverie Knights Tactics}}' -'Reverse Collapse: Code Name Bakery': + - "{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/40 Giants Entertainment/Reverie Knights Tactics/prefs}}" + - "{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/40 Giants Entertainment/Reverie Knights Tactics}}" +"Reverse Collapse: Code Name Bakery": pageId: 145526 steam: 1127700 Reverse Crawl: pageId: 37844 steam: 400660 templates: - - '{{Game data/saves|Windows|{{p|localappdata}}\Reverse_Crawl\}}' + - "{{Game data/saves|Windows|{{p|localappdata}}\\Reverse_Crawl\\}}" Reverse Fantasy Legend 2: pageId: 153535 steam: 1193280 @@ -133726,7 +130182,7 @@ Revhead: pageId: 58804 steam: 589760 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Creative Pudding Hungary Llc_\Revhead}}' + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Creative Pudding Hungary Llc_\\Revhead}}" Reviser: pageId: 150213 steam: 1171330 @@ -133735,8 +130191,8 @@ Revita: pageId: 174574 steam: 1175460 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Revita}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\Revita}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\Revita}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Revita}}" Revival Reset: pageId: 54659 steam: 558010 @@ -133758,8 +130214,8 @@ Revolt 1917: Revolution: pageId: 80159 templates: - - '{{Game data/config|Windows|{{p|game}}\Revolution\Cfg\}}' - - '{{Game data/saves|Windows|{{p|game}}\Revolution\Save\}}' + - "{{Game data/config|Windows|{{p|game}}\\Revolution\\Cfg\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\Revolution\\Save\\}}" Revolution 60: pageId: 38765 steam: 350200 @@ -133769,19 +130225,19 @@ Revolution Ace: Revolution Under Siege: pageId: 47403 steam: 374380 -'Revolution: Virtual Playspace': +"Revolution: Virtual Playspace": pageId: 47263 steam: 387090 Revolve: pageId: 54838 steam: 412760 -'Revolver360 Re:Actor': +"Revolver360 Re:Actor": gog: 1427964976 pageId: 20540 steam: 313400 templates: - - '{{Game data/config|Windows|{{P|game}}\savedata\configdata.xml}}' - - '{{Game data/saves|Windows|{{p|game}}\savedata\savedata.rvv}}' + - "{{Game data/config|Windows|{{P|game}}\\savedata\\configdata.xml}}" + - "{{Game data/saves|Windows|{{p|game}}\\savedata\\savedata.rvv}}" Revulsion: pageId: 78212 steam: 719180 @@ -133796,20 +130252,20 @@ Rex Rocket: pageId: 23185 steam: 288020 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Rex Rocket}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/Rex Rocket/}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Rex Rocket}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/Rex Rocket/}}' -'Rex: Another Island': + - "{{Game data/config|Windows|{{p|localappdata}}\\Rex Rocket}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/Rex Rocket/}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Rex Rocket}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/Rex Rocket/}}" +"Rex: Another Island": pageId: 69403 steam: 699150 Rexaura: pageId: 179569 steam: 317790 templates: - - '{{Game data/config|Windows|{{p|game}}\rexaura\cfg\}}' - - '{{Game data/saves|Windows|{{p|game}}\rexaura\save\}}' -'Rexodus: A VR Story Experience': + - "{{Game data/config|Windows|{{p|game}}\\rexaura\\cfg\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\rexaura\\save\\}}" +"Rexodus: A VR Story Experience": pageId: 42635 steam: 471630 Reynard: @@ -133819,46 +130275,44 @@ Rez Infinite: pageId: 67775 steam: 636450 templates: - - '{{Game data/config|Windows|{{P|game}}\CFG}}' - - '{{Game data/saves|Windows|{{P|game}}\SAV\{{p|uid}}}}' + - "{{Game data/config|Windows|{{P|game}}\\CFG}}" + - "{{Game data/saves|Windows|{{P|game}}\\SAV\\{{p|uid}}}}" Rez Plz: pageId: 161853 steam: 911680 -'Rezist: Tower Defense': +"Rezist: Tower Defense": pageId: 149452 steam: 1128520 Rezrog: gog: 1679459761 pageId: 57016 steam: 548370 -'Rhapsody II: Ballad of the Little Princess': +"Rhapsody II: Ballad of the Little Princess": pageId: 184790 steam: 2002870 -'Rhapsody III: Memories of Marl Kingdom': +"Rhapsody III: Memories of Marl Kingdom": pageId: 184791 steam: 2002880 -'Rhapsody: A Musical Adventure': +"Rhapsody: A Musical Adventure": pageId: 176751 steam: 1866430 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\Saved Games\Rhapsody}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\Saved Games\Rhapsody}}' -'Rheksetor: Waves of Fury': + - "{{Game data/config|Windows|{{p|userprofile}}\\Saved Games\\Rhapsody}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Saved Games\\Rhapsody}}" +"Rheksetor: Waves of Fury": pageId: 79129 steam: 769600 Rheum: pageId: 94483 steam: 849520 -'Rhiannon: Curse of the Four Branches': +"Rhiannon: Curse of the Four Branches": gog: 2063538594 pageId: 50276 steam: 298140 templates: - - '{{Game data/config|Windows|HKEY_CURRENT_USER\Software\ArberthStudios\RhiannonMeridian4}}' - - |- - {{Game data/saves|Windows|{{p|userprofile}}\Saved Games\Rhiannon_ Curse of the Four Branches\
- {{p|userprofile}}\Saved Games\Rhiannon - Meridian4 Premium Edition\}} -Rhino's Rage: + - "{{Game data/config|Windows|HKEY_CURRENT_USER\\Software\\ArberthStudios\\RhiannonMeridian4}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Saved Games\\Rhiannon_ Curse of the Four Branches\\
\n{{p|userprofile}}\\Saved Games\\Rhiannon - Meridian4 Premium Edition\\}}" +"Rhino's Rage": pageId: 44287 steam: 433210 Rhombus Legends: @@ -133868,8 +130322,8 @@ Rhome: pageId: 160359 steam: 1062060 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Rhome\Saved\Config\WindowsNoEditor\GameUserSettings.ini}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\Rhome\Saved\SaveGames\SaveGame.sav}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\Rhome\\Saved\\Config\\WindowsNoEditor\\GameUserSettings.ini}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Rhome\\Saved\\SaveGames\\SaveGame.sav}}" Rhythm Defender: pageId: 135053 steam: 1064080 @@ -133902,7 +130356,7 @@ Rhythm Sprout: pageId: 172110 steam: 1475840 templates: - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\SURT\RHYTHM SPROUT\*SAVE}}' + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\SURT\\RHYTHM SPROUT\\*SAVE}}" Rhythm World - Master Project: pageId: 77305 steam: 705150 @@ -133927,9 +130381,9 @@ RiMS Racing: pageId: 169656 steam: 1346010 templates: - - '{{Game data/config|Windows|{{P|appdata}}\RiMS Racing}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\My Games\RiMS Racing\SAVEDATA}}' -Ria's Hook: + - "{{Game data/config|Windows|{{P|appdata}}\\RiMS Racing}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\My Games\\RiMS Racing\\SAVEDATA}}" +"Ria's Hook": pageId: 90953 steam: 821500 Riaaf The Spider: @@ -133969,46 +130423,46 @@ Richard & Alice: pageId: 6468 steam: 279260 templates: - - '{{Game data/config|Windows|{{p|game}}\acsetup.cfg}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\Saved Games\Richard & Alice\}}' + - "{{Game data/config|Windows|{{p|game}}\\acsetup.cfg}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Saved Games\\Richard & Alice\\}}" Richard Burns Rally: pageId: 57520 templates: - - '{{Game data/config|Windows|{{P|game}}\RichardBurnsRally.ini}}' - - '{{Game data/saves|Windows|{{P|game}}\SavedGames\}}' -Richard Scarry's Busytown (1993): + - "{{Game data/config|Windows|{{P|game}}\\RichardBurnsRally.ini}}" + - "{{Game data/saves|Windows|{{P|game}}\\SavedGames\\}}" +"Richard Scarry's Busytown (1993)": pageId: 159070 -Richard Scarry's Busytown (1999): +"Richard Scarry's Busytown (1999)": pageId: 159187 templates: - - '{{Game data/config|Windows|{{p|game}}}}' - - '{{Game data/saves|Windows|{{p|game}}}}' -Richie's Plank Experience: + - "{{Game data/config|Windows|{{p|game}}}}" + - "{{Game data/saves|Windows|{{p|game}}}}" +"Richie's Plank Experience": pageId: 37022 steam: 517160 Richman: pageId: 171089 templates: - - '{{Game data/saves|DOS|{{p|game}}\}}' + - "{{Game data/saves|DOS|{{p|game}}\\}}" Richman 10: pageId: 148345 steam: 1162520 Richman 2: pageId: 137568 templates: - - '{{Game data/config|DOS|{{p|game}}\}}' - - '{{Game data/saves|DOS|{{p|game}}\save_*.dsk}}' + - "{{Game data/config|DOS|{{p|game}}\\}}" + - "{{Game data/saves|DOS|{{p|game}}\\save_*.dsk}}" Richman 3: pageId: 171091 templates: - - '{{Game data/saves|DOS|{{p|game}}\}}' + - "{{Game data/saves|DOS|{{p|game}}\\}}" Richman 4: pageId: 170835 steam: 2059810 templates: - - '{{Game data/config|Windows|{{p|game}}\RICH4.CFG}}' - - '{{Game data/saves|Windows|{{p|game}}\SAVE*.DAT}}' -Richy's Nightmares: + - "{{Game data/config|Windows|{{p|game}}\\RICH4.CFG}}" + - "{{Game data/saves|Windows|{{p|game}}\\SAVE*.DAT}}" +"Richy's Nightmares": pageId: 99700 steam: 885390 Rick Dangerous: @@ -134019,14 +130473,12 @@ Rick Henderson: Rick Rack: pageId: 135787 steam: 1064050 -'Rick and Morty: Virtual Rick-ality': +"Rick and Morty: Virtual Rick-ality": pageId: 39331 steam: 469610 templates: - - >- - {{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\Adult Swim Games\Rick and Morty_ Virtual - Rick-ality\User}} -Ricko's Island: + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\Adult Swim Games\\Rick and Morty_ Virtual Rick-ality\\User}}" +"Ricko's Island": pageId: 81776 steam: 787820 Ricks Hunter: @@ -134041,48 +130493,48 @@ Ricky Raccoon 2 - Adventures in Egypt: Ricky Recharge: pageId: 145355 steam: 958930 -'Ricky Runner: SUPERBOOT CUP': +"Ricky Runner: SUPERBOOT CUP": pageId: 114456 steam: 942200 Ricochet: pageId: 181 steam: 60 templates: - - '{{Game data/config|Windows|{{P|game}}\Half-Life\ricochet}}' + - "{{Game data/config|Windows|{{P|game}}\\Half-Life\\ricochet}}" Ricochet Infinity: pageId: 29499 steam: 7450 templates: - - '{{Game data/config|Windows|{{P|game}}/Ricochet Infinity.cfg}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/RicochetInfinity/Ricochet Lost Worlds.CFG}}' - - '{{Game data/saves|Windows|{{P|game}}/Stats.dat}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/RicochetInfinity/Stats.dat}}' -'Ricochet Kills: Noir': + - "{{Game data/config|Windows|{{P|game}}/Ricochet Infinity.cfg}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/RicochetInfinity/Ricochet Lost Worlds.CFG}}" + - "{{Game data/saves|Windows|{{P|game}}/Stats.dat}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/RicochetInfinity/Stats.dat}}" +"Ricochet Kills: Noir": pageId: 58648 steam: 596630 -'Ricochet Lost Worlds: Recharged': +"Ricochet Lost Worlds: Recharged": pageId: 175334 templates: - - '{{Game data/config|Windows|{{P|game}}/Ricochet Lost Worlds.cfg}}' - - '{{Game data/saves|Windows|{{P|game}}/Stats.dat}}' + - "{{Game data/config|Windows|{{P|game}}/Ricochet Lost Worlds.cfg}}" + - "{{Game data/saves|Windows|{{P|game}}/Stats.dat}}" Ricochet Xtreme: pageId: 175333 templates: - - '{{Game data/config|Windows|{{P|game}}/Ricochet.cfg}}' - - '{{Game data/saves|Windows|{{P|game}}/Stats.dat}}' -'Ricochet: Lost Worlds': + - "{{Game data/config|Windows|{{P|game}}/Ricochet.cfg}}" + - "{{Game data/saves|Windows|{{P|game}}/Stats.dat}}" +"Ricochet: Lost Worlds": pageId: 154851 steam: 7400 templates: - - '{{Game data/config|Windows|{{P|game}}/Ricochet Lost Worlds.cfg}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Ricochet/INI/Ricochet Lost Worlds.CFG/Options/}}' - - '{{Game data/saves|Windows|{{P|game}}/Stats.dat}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Ricochet/Stats.dat}}' + - "{{Game data/config|Windows|{{P|game}}/Ricochet Lost Worlds.cfg}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Ricochet/INI/Ricochet Lost Worlds.CFG/Options/}}" + - "{{Game data/saves|Windows|{{P|game}}/Stats.dat}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Ricochet/Stats.dat}}" Riddle Joker: gog: 1606830592 pageId: 164860 steam: 1277930 -'Riddle of the Sphinx: The Awakening (Enhanced Edition)': +"Riddle of the Sphinx: The Awakening (Enhanced Edition)": gog: 2113207249 pageId: 170547 steam: 1521870 @@ -134092,65 +130544,63 @@ RiddleBridge: Riddled Corpses: pageId: 47671 steam: 369890 -'Riddles of Fate: Into Oblivion': +"Riddles of Fate: Into Oblivion": pageId: 63175 steam: 647900 -'Riddles of Fate: Memento Mori': +"Riddles of Fate: Memento Mori": pageId: 81972 steam: 796060 -'Riddles of Fate: Wild Hunt': +"Riddles of Fate: Wild Hunt": pageId: 53087 renamedFrom: - - 'Riddles of Fate: Wild Hunt Collector''s Edition' + - "Riddles of Fate: Wild Hunt Collector's Edition" steam: 555520 Riddles of the Owls Kingdom: pageId: 100458 steam: 891860 templates: - - '{{Game data/config|Windows|{{P|appdata}}\DigiMight\Riddles Of The Owls Kingdom Steam\Players.xml}}' - - '{{Game data/saves|Windows|{{P|appdata}}\DigiMight\Riddles Of The Owls Kingdom Steam\Players.xml}}' -Riddles of the Owls' Kingdom. Magic Wings: + - "{{Game data/config|Windows|{{P|appdata}}\\DigiMight\\Riddles Of The Owls Kingdom Steam\\Players.xml}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\DigiMight\\Riddles Of The Owls Kingdom Steam\\Players.xml}}" +"Riddles of the Owls' Kingdom. Magic Wings": pageId: 123988 steam: 990390 templates: - - '{{Game data/config|Windows|{{P|appdata}}\DigiMight\Riddles Of The Owls Kingdom 2\Players.xml}}' - - '{{Game data/saves|Windows|{{P|appdata}}\DigiMight\Riddles Of The Owls Kingdom 2\Players.xml}}' + - "{{Game data/config|Windows|{{P|appdata}}\\DigiMight\\Riddles Of The Owls Kingdom 2\\Players.xml}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\DigiMight\\Riddles Of The Owls Kingdom 2\\Players.xml}}" Riddles of the Past: pageId: 42127 steam: 500870 templates: - - >- - {{Game - data/config|Windows|{{P|hkcu}}\Software\FarMills\RiddlesOfThePast|{{P|appdata}}\MysteryTag\RiddlesOfThePast\game.conf}} - - '{{Game data/saves|Windows|{{P|appdata}}\MysteryTag\RiddlesOfThePast\*.save}}' -'Riddlord: The Consequence': + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\FarMills\\RiddlesOfThePast|{{P|appdata}}\\MysteryTag\\RiddlesOfThePast\\game.conf}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\MysteryTag\\RiddlesOfThePast\\*.save}}" +"Riddlord: The Consequence": pageId: 78485 steam: 763290 Ride: pageId: 23001 steam: 345660 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Milestone\Ride\}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Milestone\Ride\Saves\}}' -Ride 'em Low: + - "{{Game data/config|Windows|{{p|appdata}}\\Milestone\\Ride\\}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Milestone\\Ride\\Saves\\}}" +"Ride 'em Low": pageId: 40552 steam: 65070 Ride 2: pageId: 39249 steam: 477770 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Milestone\Ride2\}}' + - "{{Game data/config|Windows|{{p|appdata}}\\Milestone\\Ride2\\}}" Ride 3: pageId: 94809 steam: 759740 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\ride3\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\ride3\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\ride3\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\ride3\\Saved\\SaveGames\\}}" Ride 4: pageId: 160405 steam: 1259980 templates: - - '{{Game data/saves|Windows|{{P|localappdata}}\ride4}}' + - "{{Game data/saves|Windows|{{P|localappdata}}\\ride4}}" Ride 5: pageId: 186548 steam: 1650010 @@ -134160,7 +130610,7 @@ Ride the Bullet: Ride to Canada: pageId: 93116 steam: 845390 -'Ride to Hell: Retribution': +"Ride to Hell: Retribution": pageId: 59785 steam: 209340 Ride with Son: @@ -134188,8 +130638,8 @@ Riders of Icarus: pageId: 34589 steam: 442080 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\ICARUS\USER\UserConfig}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\ICARUS\USER\SaveGames}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\ICARUS\\USER\\UserConfig}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\ICARUS\\USER\\SaveGames}}" Ridge: pageId: 42529 steam: 492600 @@ -134200,8 +130650,8 @@ Ridge Racer Unbounded: pageId: 2075 steam: 202310 templates: - - '{{Game data/config|Windows|{{p|steam}}\userdata\{{p|uid}}\202310\local\ridge racer unbounded\device.cfg}}' - - '{{Game data/saves|Windows|{{p|steam}}\userdata\{{p|uid}}\202310\local\ridge racer unbounded\autosave.bin\}}' + - "{{Game data/config|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\202310\\local\\ridge racer unbounded\\device.cfg}}" + - "{{Game data/saves|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\202310\\local\\ridge racer unbounded\\autosave.bin\\}}" Ridiculous Bombing Game: pageId: 154369 steam: 1145600 @@ -134226,7 +130676,7 @@ Riff Racer: pageId: 38193 steam: 351990 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Octane\DAT\}}' + - "{{Game data/config|Windows|{{p|appdata}}\\Octane\\DAT\\}}" Riff VR: pageId: 77110 steam: 737880 @@ -134243,7 +130693,7 @@ Rift: pageId: 11254 steam: 39120 templates: - - '{{Game data/config|Windows|{{p|appdata}}\RIFT}}' + - "{{Game data/config|Windows|{{p|appdata}}\\RIFT}}" Rift Coaster HD Remastered VR: pageId: 66665 steam: 663200 @@ -134259,24 +130709,24 @@ Rift Wizard: Rift of the NecroDancer: pageId: 181499 steam: 2073250 -Rift's Cave: +"Rift's Cave": pageId: 49221 steam: 335210 RiftSpace: pageId: 9384 templates: - - '{{Game data/config|Windows|{{p|game}}\sw.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\pilot.sw}}' + - "{{Game data/config|Windows|{{p|game}}\\sw.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\pilot.sw}}" RiftStar Raiders: pageId: 82833 steam: 462630 Rifter: pageId: 63636 steam: 625740 -Rig 'n' Roll: +"Rig 'n' Roll": pageId: 51084 steam: 46370 -'Rig or Skill: PC Brawl': +"Rig or Skill: PC Brawl": pageId: 88011 steam: 746010 Righty Tighty XL: @@ -134288,7 +130738,7 @@ Rigid Chess: Rigid Force Alpha: pageId: 93277 steam: 724390 -'Rigo: The Movie': +"Rigo: The Movie": pageId: 136050 steam: 1056370 Rigonauts: @@ -134299,7 +130749,7 @@ Rigs of rods: Rikki & Vikki: pageId: 125412 steam: 893690 -'Riley Short: Analog Boy - Episode 1': +"Riley Short: Analog Boy - Episode 1": pageId: 63137 steam: 619000 RimWorld: @@ -134318,38 +130768,34 @@ RimWorld: - 1392840 - 1826140 templates: - - >- - {{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\Ludeon - Studios\RimWorld\|{{p|userprofile}}\AppData\LocalLow\Ludeon Studios\RimWorld by Ludeon Studios\Config\}} - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/RimWorld/}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Ludeon Studios/RimWorld by Ludeon Studios/}}' - - >- - {{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Ludeon - Studios\RimWorld\|{{p|userprofile}}\AppData\LocalLow\Ludeon Studios\RimWorld by Ludeon Studios\Saves\}} - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Ludeon Studios/RimWorld/Saves}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Ludeon Studios\\RimWorld\\|{{p|userprofile}}\\AppData\\LocalLow\\Ludeon Studios\\RimWorld by Ludeon Studios\\Config\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/RimWorld/}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Ludeon Studios/RimWorld by Ludeon Studios/}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Ludeon Studios\\RimWorld\\|{{p|userprofile}}\\AppData\\LocalLow\\Ludeon Studios\\RimWorld by Ludeon Studios\\Saves\\}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Ludeon Studios/RimWorld/Saves}}" Rime: gog: 1553712069 pageId: 56039 steam: 493200 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\SirenGame\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\SirenGame\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\SirenGame\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\SirenGame\\Saved\\SaveGames\\}}" Rime Berta: pageId: 23758 steam: 312600 templates: - - '{{Game data/config|Windows|{{p|appdata}}\NEXT-SOFT+\RimeBerta\config.dat}}' - - '{{Game data/saves|Windows|{{p|appdata}}\NEXT-SOFT+\RimeBerta\}}' + - "{{Game data/config|Windows|{{p|appdata}}\\NEXT-SOFT+\\RimeBerta\\config.dat}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\NEXT-SOFT+\\RimeBerta\\}}" Rimi Action RPG: pageId: 110640 steam: 930580 -'Ring Runner: Flight of the Sages': +"Ring Runner: Flight of the Sages": gog: 1207659249 pageId: 12727 steam: 258010 templates: - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\SavedGames\RingRunner\{{p|uid}}\}}' - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\258010\}}' + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\SavedGames\\RingRunner\\{{p|uid}}\\}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\258010\\}}" Ring of Elysium: pageId: 77343 steam: 755790 @@ -134357,8 +130803,8 @@ Ring of Elysium: - 938460 - 952320 templates: - - '{{Game data/config|Windows|{{P|game}}\UserData\}}' - - '{{Game data/saves|Windows|{{P|game}}\UserData\}}' + - "{{Game data/config|Windows|{{P|game}}\\UserData\\}}" + - "{{Game data/saves|Windows|{{P|game}}\\UserData\\}}" Ring of Fire: pageId: 156971 steam: 1156490 @@ -134367,8 +130813,8 @@ Ring of Pain: pageId: 128569 steam: 998740 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\SOFTWARE\Twice Different\Ring Of Pain\}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Twice Different\Ring Of Pain\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\SOFTWARE\\Twice Different\\Ring Of Pain\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Twice Different\\Ring Of Pain\\}}" Ring the City: pageId: 135692 steam: 1070320 @@ -134389,13 +130835,13 @@ Rings of Medusa: Rings of Zilfin: pageId: 74338 templates: - - '{{Game data/saves|DOS|{{p|game}}\*.SAV}}' -'Ringworld: Revenge of the Patriarch': + - "{{Game data/saves|DOS|{{p|game}}\\*.SAV}}" +"Ringworld: Revenge of the Patriarch": pageId: 147082 Rio Rex: pageId: 95541 steam: 868830 -'Rio: Beach Race': +"Rio: Beach Race": pageId: 88398 Riot Street: pageId: 87167 @@ -134403,17 +130849,17 @@ Riot Street: Riot of the Numbers: pageId: 56754 steam: 579150 -'Riot: Civil Unrest': +"Riot: Civil Unrest": gog: 1989052770 pageId: 37024 steam: 342310 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\DefaultCompany\Riot}}' - - '{{Game data/saves|Windows|{{p|hkcu}}\Software\DefaultCompany\Riot}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\DefaultCompany\\Riot}}" + - "{{Game data/saves|Windows|{{p|hkcu}}\\Software\\DefaultCompany\\Riot}}" RiotZ: pageId: 64315 steam: 659460 -'Ripley''s Believe It or Not!: The Riddle of Master Lu': +"Ripley's Believe It or Not!: The Riddle of Master Lu": pageId: 147598 Ripout: gog: 1115883693 @@ -134425,8 +130871,8 @@ Ripped Pants at Work: Ripper: pageId: 81861 templates: - - '{{Game data/config|DOS|{{p|game}}\SETTINGS.DEF}}' - - '{{Game data/saves|DOS|{{p|game}}\*.SAV}}' + - "{{Game data/config|DOS|{{p|game}}\\SETTINGS.DEF}}" + - "{{Game data/saves|DOS|{{p|game}}\\*.SAV}}" Ripple: pageId: 59635 steam: 601240 @@ -134442,13 +130888,13 @@ Riptide GP2: pageId: 38079 steam: 257790 templates: - - '{{Game data/config|Windows|{{p|appdata}}/Vector Unit/Red/}}' - - '{{Game data/saves|Windows|{{p|appdata}}/Vector Unit/Red/}}' -'Riptide GP: Renegade': + - "{{Game data/config|Windows|{{p|appdata}}/Vector Unit/Red/}}" + - "{{Game data/saves|Windows|{{p|appdata}}/Vector Unit/Red/}}" +"Riptide GP: Renegade": pageId: 42087 steam: 443860 templates: - - '{{Game data/saves|Steam|{{P|steam}}\userdata\{{P|uid}}\443860\remote\user.dat}}' + - "{{Game data/saves|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\443860\\remote\\user.dat}}" Riscord: pageId: 128726 steam: 912010 @@ -134456,17 +130902,17 @@ Rise & Shine: pageId: 39566 steam: 347290 templates: - - '{{Game data/config|Steam|{{p|steam}}/userdata/{{p|uid}}/347290/remote/RiseAndShine/}}' - - '{{Game data/config|Linux|{{p|xdgconfighome}}/unity3d/Adult Swim Games/RiseAndShine/prefs}}' - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/347290/remote/RiseAndShine/}}' - - '{{Game data/saves|Linux|{{p|xdgconfighome}}/unity3d/Adult Swim Games/RiseAndShine/prefs}}' + - "{{Game data/config|Steam|{{p|steam}}/userdata/{{p|uid}}/347290/remote/RiseAndShine/}}" + - "{{Game data/config|Linux|{{p|xdgconfighome}}/unity3d/Adult Swim Games/RiseAndShine/prefs}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/347290/remote/RiseAndShine/}}" + - "{{Game data/saves|Linux|{{p|xdgconfighome}}/unity3d/Adult Swim Games/RiseAndShine/prefs}}" Rise (Creative Assembly): pageId: 42075 steam: 497380 Rise (New State): pageId: 51006 steam: 497060 -'Rise 2: Resurrection': +"Rise 2: Resurrection": pageId: 185092 Rise Eterna: gog: 1079804638 @@ -134480,11 +130926,11 @@ Rise Up: renamedFrom: - Rise up steam: 933040 -'Rise and Fall: Civilizations at War': +"Rise and Fall: Civilizations at War": pageId: 58592 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Midway Home Entertainment\Rise and Fall}}' - - '{{Game data/saves|Windows|{{p|game}}\Data\Saved Games}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Midway Home Entertainment\\Rise and Fall}}" + - "{{Game data/saves|Windows|{{p|game}}\\Data\\Saved Games}}" Rise of Ages: pageId: 122484 steam: 744270 @@ -134496,7 +130942,7 @@ Rise of Balloons: Rise of Crustaceans: pageId: 94539 steam: 854310 -'Rise of Flight: The First Great Air War': +"Rise of Flight: The First Great Air War": pageId: 20488 steam: 244050 Rise of Humanity: @@ -134510,21 +130956,17 @@ Rise of Industry: pageId: 66311 steam: 671440 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Dapper Penguin Studios\Rise of Industry\}}' - - '{{Game data/saves|Windows|{{p|appdata}}\RiseOfIndustry\}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/RiseOfIndustry/}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Dapper Penguin Studios\\Rise of Industry\\}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\RiseOfIndustry\\}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/RiseOfIndustry/}}" Rise of Insanity: pageId: 62572 steam: 629220 templates: - - >- - {{Game data/config|Windows|{{P|userprofile\appdata\locallow}}\Red Limb Studio\Rise of - Insanity\playerInfo.dat|{{P|hkcu}}\Software\Red Limb Studio\Rise of Insanity}} - - >- - {{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/Red Limb Studio/Rise of - Insanity/playerInfo.dat|{{P|xdgconfighome}}/unity3d/Red Limb Studio/Rise of Insanity/prefs}} - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Red Limb Studio\Rise of Insanity\playerInfo.dat}}' - - '{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/Red Limb Studio/Rise of Insanity/playerInfo.dat}}' + - "{{Game data/config|Windows|{{P|userprofile\\appdata\\locallow}}\\Red Limb Studio\\Rise of Insanity\\playerInfo.dat|{{P|hkcu}}\\Software\\Red Limb Studio\\Rise of Insanity}}" + - "{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/Red Limb Studio/Rise of Insanity/playerInfo.dat|{{P|xdgconfighome}}/unity3d/Red Limb Studio/Rise of Insanity/prefs}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Red Limb Studio\\Rise of Insanity\\playerInfo.dat}}" + - "{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/Red Limb Studio/Rise of Insanity/playerInfo.dat}}" Rise of Keepers: pageId: 45391 steam: 422210 @@ -134540,19 +130982,19 @@ Rise of Man: Rise of Nations: pageId: 4495 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Microsoft Games\Rise of Nations\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Rise of Nations\}}' -'Rise of Nations: Extended Edition': + - "{{Game data/config|Windows|{{p|appdata}}\\Microsoft Games\\Rise of Nations\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Rise of Nations\\}}" +"Rise of Nations: Extended Edition": pageId: 17559 steam: 287450 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Microsoft Games\Rise of Nations\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Rise of Nations\}}' -'Rise of Nations: Rise of Legends': + - "{{Game data/config|Windows|{{p|appdata}}\\Microsoft Games\\Rise of Nations\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Rise of Nations\\}}" +"Rise of Nations: Rise of Legends": pageId: 54889 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Rise Of Legends\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Rise Of Legends\{{P|uid}}\Saves}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Rise Of Legends\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Rise Of Legends\\{{P|uid}}\\Saves}}" Rise of One: pageId: 67619 steam: 688500 @@ -134568,8 +131010,8 @@ Rise of Venice: pageId: 10721 steam: 227020 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\My Games\Rise of Venice}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\My Games\Rise of Venice\savegames}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\My Games\\Rise of Venice}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\My Games\\Rise of Venice\\savegames}}" Rise of the Ancients: pageId: 42816 steam: 485950 @@ -134577,14 +131019,14 @@ Rise of the Argonauts: pageId: 28642 steam: 12770 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Rise of the Argonauts\LiquidGame\Config\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Rise of the Argonauts\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Rise of the Argonauts\\LiquidGame\\Config\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Rise of the Argonauts\\}}" Rise of the Dragon: gog: 1443550104 pageId: 17083 templates: - - '{{Game data/config|DOS|{{p|game}}\RESOURCE.CFG}}' - - '{{Game data/saves|DOS|{{p|game}}\SCORES.*}}' + - "{{Game data/config|DOS|{{p|game}}\\RESOURCE.CFG}}" + - "{{Game data/saves|DOS|{{p|game}}\\SCORES.*}}" Rise of the Gunters: pageId: 89361 steam: 762150 @@ -134601,67 +131043,47 @@ Rise of the Third Power: pageId: 78860 steam: 698700 templates: - - >- - {{Game data/config|Windows|{{P|hkcu}}\SOFTWARE\Stegosoft Games\Rise of the Third - Power|{{P|userprofile\appdata\locallow}}\Stegosoft Games\Rise of the Third Power\Custom Input Config.json}} - - >- - {{Game data/config|Linux|{{p|xdgconfighome}}/unity3d/Stegosoft Games/Rise of the Third - Power/prefs|{{p|xdgconfighome}}/unity3d/Stegosoft Games/Rise of the Third Power/Custom Input Config.json}} - - >- - {{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\Stegosoft Games\Rise of the Third - Power\*.json|{{p|userprofile\appdata\locallow}}\Stegosoft Games\Rise of the Third Power\*.json.meta}} - - >- - {{Game data/saves|Linux|{{p|xdgconfighome}}/unity3d/Stegosoft Games/Rise of the Third - Power/*.json|{{p|xdgconfighome}}/unity3d/Stegosoft Games/Rise of the Third Power/*.json.meta}} + - "{{Game data/config|Windows|{{P|hkcu}}\\SOFTWARE\\Stegosoft Games\\Rise of the Third Power|{{P|userprofile\\appdata\\locallow}}\\Stegosoft Games\\Rise of the Third Power\\Custom Input Config.json}}" + - "{{Game data/config|Linux|{{p|xdgconfighome}}/unity3d/Stegosoft Games/Rise of the Third Power/prefs|{{p|xdgconfighome}}/unity3d/Stegosoft Games/Rise of the Third Power/Custom Input Config.json}}" + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\Stegosoft Games\\Rise of the Third Power\\*.json|{{p|userprofile\\appdata\\locallow}}\\Stegosoft Games\\Rise of the Third Power\\*.json.meta}}" + - "{{Game data/saves|Linux|{{p|xdgconfighome}}/unity3d/Stegosoft Games/Rise of the Third Power/*.json|{{p|xdgconfighome}}/unity3d/Stegosoft Games/Rise of the Third Power/*.json.meta}}" Rise of the Tomb Raider: pageId: 30440 steam: 391220 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Crystal Dynamics\Rise of the Tomb Raider\}}' - - >- - {{Game data/config|Microsoft Store|Inaccessible due to being stored in isolated UWP - registry.{{Refcheck|user=Aemony|date=2022-08-29|comment=Verified through Process Monitor. The location within - the isolated UWP registry is the same as for the other Windows versions, but since its stored in a separate - inaccessible container, there's no way of reaching the registry data from outside of the game.}}}} - - '{{Game data/config|OS X|{{P|osxhome}}/Library/Application Support/Feral Interactive/Rise of the Tomb Raider/}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/feral-interactive/Rise of the Tomb Raider/preferences}}' - - '{{Game data/saves|Epic Games Launcher|{{p|userprofile\Documents}}\Rise of the Tomb Raider\{{p|uid}}}}' - - >- - {{Game data/saves|Microsoft - Store|{{P|localappdata}}\Packages\39C668CD.RiseoftheTombRaider_r7bfsmp40f67j\SystemAppData\wgs\}} - - '{{Game data/saves|Steam|{{p|Steam}}\userdata\{{p|uid}}\391220\remote\}}' - - >- - {{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/Feral Interactive/Shadow of the Tomb - Raider/SaveData/}} + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Crystal Dynamics\\Rise of the Tomb Raider\\}}" + - "{{Game data/config|Microsoft Store|Inaccessible due to being stored in isolated UWP registry.{{Refcheck|user=Aemony|date=2022-08-29|comment=Verified through Process Monitor. The location within the isolated UWP registry is the same as for the other Windows versions, but since its stored in a separate inaccessible container, there's no way of reaching the registry data from outside of the game.}}}}" + - "{{Game data/config|OS X|{{P|osxhome}}/Library/Application Support/Feral Interactive/Rise of the Tomb Raider/}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/feral-interactive/Rise of the Tomb Raider/preferences}}" + - "{{Game data/saves|Epic Games Launcher|{{p|userprofile\\Documents}}\\Rise of the Tomb Raider\\{{p|uid}}}}" + - "{{Game data/saves|Microsoft Store|{{P|localappdata}}\\Packages\\39C668CD.RiseoftheTombRaider_r7bfsmp40f67j\\SystemAppData\\wgs\\}}" + - "{{Game data/saves|Steam|{{p|Steam}}\\userdata\\{{p|uid}}\\391220\\remote\\}}" + - "{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/Feral Interactive/Shadow of the Tomb Raider/SaveData/}}" Rise of the Triad: gog: 1207659244 pageId: 7852 steam: 217140 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Rise Of The Triad\ROTTGame\Config\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Rise Of The Triad\ROTTGame\SaveData\}}' -'Rise of the Triad: Dark War': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Rise Of The Triad\\ROTTGame\\Config\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Rise Of The Triad\\ROTTGame\\SaveData\\}}" +"Rise of the Triad: Dark War": gog: 1207658732 pageId: 9179 steam: 358410 steamSide: - 238050 templates: - - '{{Game data/config|DOS|{{p|game}}\CONFIG.ROT|{{p|game}}\SOUND.ROT|{{p|game}}\BATTLE.ROT}}' - - '{{Game data/saves|DOS|{{p|game}}\ROTTGAM*.ROT|{{p|game}}\SCORES.ROT}}' -'Rise of the Triad: Ludicrous Edition': + - "{{Game data/config|DOS|{{p|game}}\\CONFIG.ROT|{{p|game}}\\SOUND.ROT|{{p|game}}\\BATTLE.ROT}}" + - "{{Game data/saves|DOS|{{p|game}}\\ROTTGAM*.ROT|{{p|game}}\\SCORES.ROT}}" +"Rise of the Triad: Ludicrous Edition": gog: 1722125943 pageId: 163192 renamedFrom: - Rise of the Triad Remastered steam: 1421490 templates: - - >- - {{Game data/config|Windows|{{P|userprofile}}\Saved Games\Nightdive Studios\Rise of the Triad - Ludicrous - Edition\kexengine.cfg}} - - >- - {{Game data/saves|Windows|{{P|userprofile}}\Saved Games\Nightdive Studios\Rise of the Triad - Ludicrous - Edition\rottSave*.rot}} + - "{{Game data/config|Windows|{{P|userprofile}}\\Saved Games\\Nightdive Studios\\Rise of the Triad - Ludicrous Edition\\kexengine.cfg}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\Saved Games\\Nightdive Studios\\Rise of the Triad - Ludicrous Edition\\rottSave*.rot}}" Rise to Ruins: gog: 1454559219 gogSide: @@ -134671,31 +131093,29 @@ Rise to Ruins: steamSide: - 328210 templates: - - '{{Game data/config|Windows|{{p|game}}\profiles\settings.properties}}' - - '{{Game data/config|Linux|{{p|game}}/profiles/}}' - - '{{Game data/saves|Windows|{{p|game}}\profiles\profileX\saves\}}' - - '{{Game data/saves|Linux|{{p|game}}/profiles/}}' -'Rise: Battle Lines': + - "{{Game data/config|Windows|{{p|game}}\\profiles\\settings.properties}}" + - "{{Game data/config|Linux|{{p|game}}/profiles/}}" + - "{{Game data/saves|Windows|{{p|game}}\\profiles\\profileX\\saves\\}}" + - "{{Game data/saves|Linux|{{p|game}}/profiles/}}" +"Rise: Battle Lines": pageId: 45599 steam: 386350 -'Rise: Race the Future': +"Rise: Race the Future": pageId: 95659 steam: 955580 -'Rise: The Vieneo Province': +"Rise: The Vieneo Province": pageId: 141318 steam: 795990 templates: - - '{{Game data/config|Windows|{{P|game}}\Save}}' + - "{{Game data/config|Windows|{{P|game}}\\Save}}" Risen: gog: 1207663153 pageId: 8101 steam: 40300 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Risen\ConfigUser.xml|{{p|game}}\data\ini\ConfigDefault.xml}}' - - >- - {{Game data/saves|Windows|{{p|userprofile}}\Saved - Games\Risen\SaveGames\|{{p|localappdata}}\Risen\SaveGames\|{{p|localappdata}}\Risen\achievements.bin}} -'Risen 2: Dark Waters': + - "{{Game data/config|Windows|{{p|localappdata}}\\Risen\\ConfigUser.xml|{{p|game}}\\data\\ini\\ConfigDefault.xml}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Saved Games\\Risen\\SaveGames\\|{{p|localappdata}}\\Risen\\SaveGames\\|{{p|localappdata}}\\Risen\\achievements.bin}}" +"Risen 2: Dark Waters": gog: 1207663193 gogSide: - 1207663173 @@ -134703,15 +131123,15 @@ Risen: pageId: 1963 steam: 40390 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Risen2\Config\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\Saved Games\Risen2\SaveGames\}}' -'Risen 3: Titan Lords': + - "{{Game data/config|Windows|{{p|localappdata}}\\Risen2\\Config\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Saved Games\\Risen2\\SaveGames\\}}" +"Risen 3: Titan Lords": gog: 1454068042 pageId: 17750 steam: 249230 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Risen3\Config\ConfigUser.xml}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\Saved Games\Risen3\SaveGames\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Risen3\\Config\\ConfigUser.xml}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Saved Games\\Risen3\\SaveGames\\}}" Risen Kingdom: pageId: 156698 steam: 1216880 @@ -134721,12 +131141,12 @@ Rising: Rising Angels: pageId: 33614 steam: 368150 -'Rising Angels: Reborn': +"Rising Angels: Reborn": pageId: 33668 steam: 321840 templates: - - '{{Game data/config|Windows|{{P|appdata}}\RenPy\Rising Angels Reborn-1345458075\persistent}}' - - '{{Game data/saves|Windows|{{P|appdata}}\RenPy\Rising Angels Reborn-1345458075\*.save}}' + - "{{Game data/config|Windows|{{P|appdata}}\\RenPy\\Rising Angels Reborn-1345458075\\persistent}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\RenPy\\Rising Angels Reborn-1345458075\\*.save}}" Rising Dusk: pageId: 94079 steam: 848930 @@ -134738,14 +131158,12 @@ Rising Hell: pageId: 148816 steam: 657000 templates: - - >- - {{Game data/config|Windows|{{P|userprofile\appdata\locallow}}\Tahoe Games\Rising - Hell\OptionData|{{P|hkcu}}\Software\Tahoe Games\Rising Hell\}} + - "{{Game data/config|Windows|{{P|userprofile\\appdata\\locallow}}\\Tahoe Games\\Rising Hell\\OptionData|{{P|hkcu}}\\Software\\Tahoe Games\\Rising Hell\\}}" Rising Islands: pageId: 41900 steam: 452450 templates: - - '{{Game data/saves|Windows|{{P|hkcu}}\Software\Lone Hero Studios\Rising Islands}}' + - "{{Game data/saves|Windows|{{P|hkcu}}\\Software\\Lone Hero Studios\\Rising Islands}}" Rising Kingdoms: pageId: 141292 steam: 827050 @@ -134759,17 +131177,17 @@ Rising Storm: pageId: 7832 steam: 234510 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\RedOrchestra2\ROGame\Config\}}' -'Rising Storm 2: Vietnam': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\RedOrchestra2\\ROGame\\Config\\}}" +"Rising Storm 2: Vietnam": pageId: 61790 steam: 418460 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\My Games\Rising Storm 2\ROGame\Config\}}' + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\My Games\\Rising Storm 2\\ROGame\\Config\\}}" Rising Thunder: pageId: 164964 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\RisingThunder\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\RisingThunder\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\RisingThunder\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\RisingThunder\\Saved\\SaveGames\\}}" Rising UpUp: pageId: 155636 steam: 1218100 @@ -134777,12 +131195,12 @@ Rising World: pageId: 34571 steam: 324080 templates: - - '{{Game data/config|Windows|{{P|game}}\config.properties}}' - - '{{Game data/config|OS X|{{P|game}}/config.properties}}' - - '{{Game data/config|Linux|{{P|game}}/config.properties}}' - - '{{Game data/saves|Windows|{{P|game}}\Worlds\}}' - - '{{Game data/saves|OS X|{{P|game}}/Worlds/}}' - - '{{Game data/saves|Linux|{{P|game}}/Worlds/}}' + - "{{Game data/config|Windows|{{P|game}}\\config.properties}}" + - "{{Game data/config|OS X|{{P|game}}/config.properties}}" + - "{{Game data/config|Linux|{{P|game}}/config.properties}}" + - "{{Game data/saves|Windows|{{P|game}}\\Worlds\\}}" + - "{{Game data/saves|OS X|{{P|game}}/Worlds/}}" + - "{{Game data/saves|Linux|{{P|game}}/Worlds/}}" Risk: pageId: 6776 Risk (2012): @@ -134795,8 +131213,8 @@ Risk II: pageId: 429 steam: 38060 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/saves|Windows|{{p|game}}\GameSave}}' + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\GameSave}}" Risk System: pageId: 135171 steam: 833950 @@ -134805,12 +131223,12 @@ Risk of Rain: pageId: 12335 steam: 248820 templates: - - '{{Game data/config|Windows|{{p|game}}\Prefs.ini}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/com.riskofrain.riskofrain/prefs.ini}}' - - '{{Game data/config|Linux|{{P|xdgconfighome}}/Risk_of_Rain/prefs.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\Save.ini | {{p|game}}\Save_backup.ini}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/com.riskofrain.riskofrain/save.ini}}' - - '{{Game data/saves|Linux|{{P|xdgconfighome}}/Risk_of_Rain/save.ini}}' + - "{{Game data/config|Windows|{{p|game}}\\Prefs.ini}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/com.riskofrain.riskofrain/prefs.ini}}" + - "{{Game data/config|Linux|{{P|xdgconfighome}}/Risk_of_Rain/prefs.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\Save.ini | {{p|game}}\\Save_backup.ini}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/com.riskofrain.riskofrain/save.ini}}" + - "{{Game data/saves|Linux|{{P|xdgconfighome}}/Risk_of_Rain/save.ini}}" Risk of Rain 2: pageId: 122886 steam: 632360 @@ -134819,29 +131237,25 @@ Risk of Rain 2: - 1607890 - 1905390 templates: - - >- - {{Game data/config|Windows|{{P|game}}\Risk of Rain 2_Data\Config\|{{P|hkcu}}\Software\Hopoo Games, LLC\Risk of - Rain 2\}} - - '{{Game data/saves|Steam|{{P|steam}}\userdata\{{P|uid}}\632360\remote\UserProfiles\}}' + - "{{Game data/config|Windows|{{P|game}}\\Risk of Rain 2_Data\\Config\\|{{P|hkcu}}\\Software\\Hopoo Games, LLC\\Risk of Rain 2\\}}" + - "{{Game data/saves|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\632360\\remote\\UserProfiles\\}}" Risk of Rain Returns: pageId: 184286 steam: 1337520 steamSide: - 2673200 templates: - - >- - {{Game data/config|Windows|{{p|appdata}}\Risk_of_Rain_Returns\user_{{p|uid}}{{note|note=This is the user's Steam - ID}}}} - - '{{Game data/saves|Windows|{{P|appdata}}\Risk_of_Rain_Returns\*_localsave.json}}' - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\1337520\remote}}' -'Risk: Factions': + - "{{Game data/config|Windows|{{p|appdata}}\\Risk_of_Rain_Returns\\user_{{p|uid}}{{note|note=This is the user's Steam ID}}}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\Risk_of_Rain_Returns\\*_localsave.json}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\1337520\\remote}}" +"Risk: Factions": pageId: 41006 steam: 47800 -'Risk: Global Domination': +"Risk: Global Domination": pageId: 145023 steam: 1128810 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\SOFTWARE\Hasbro, Inc.\RISK}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\Hasbro, Inc.\\RISK}}" Riskers: pageId: 59687 steam: 581310 @@ -134859,31 +131273,27 @@ Ristar: pageId: 30844 steam: 34312 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\SEGA Mega Drive - Classics\setup.dat|{{p|userprofile\Documents}}\SEGA Genesis Classics\setup.dat}} - - >- - {{Game data/saves|Windows|{{p|userprofile\Documents}}\SEGA Mega Drive - Classics\0020\|{{p|userprofile\Documents}}\SEGA Genesis Classics\0020\}} + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\SEGA Mega Drive Classics\\setup.dat|{{p|userprofile\\Documents}}\\SEGA Genesis Classics\\setup.dat}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\SEGA Mega Drive Classics\\0020\\|{{p|userprofile\\Documents}}\\SEGA Genesis Classics\\0020\\}}" Ritbone: pageId: 136865 steam: 1084880 Rite of Life: pageId: 59858 steam: 415620 -'Rite of Passage: Child of the Forest': +"Rite of Passage: Child of the Forest": pageId: 62340 steam: 638270 -'Rite of Passage: Hide and Seek': +"Rite of Passage: Hide and Seek": pageId: 81488 steam: 786090 -'Rite of Passage: The Lost Tides': +"Rite of Passage: The Lost Tides": pageId: 99590 steam: 887910 -'Rite of Passage: The Perfect Show': +"Rite of Passage: The Perfect Show": pageId: 52836 renamedFrom: - - 'Rite of Passage: The Perfect Show Collector''s Edition' + - "Rite of Passage: The Perfect Show Collector's Edition" steam: 552670 Ritter: pageId: 104375 @@ -134894,27 +131304,27 @@ Ritual of the Moon: Ritual on the Eve: pageId: 104643 steam: 896670 -'Ritual: Crown of Horns': +"Ritual: Crown of Horns": pageId: 135309 steam: 1059150 -'Ritual: Sorcerer Angel': +"Ritual: Sorcerer Angel": pageId: 138872 steam: 1063960 RitualSummon: pageId: 184954 steam: 1962450 templates: - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\WhitePeach\RitualSummon\STData\}}' + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\WhitePeach\\RitualSummon\\STData\\}}" Rituals: pageId: 26197 steam: 359190 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\rituals\Local Storage\file__0.localstorage}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/rituals/Local Storage/file__0.localstorage}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/rituals/Local Storage/file__0.localstorage}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\rituals\Local Storage\file__0.localstorage}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/rituals/Local Storage/file__0.localstorage}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/rituals/Local Storage/file__0.localstorage}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\rituals\\Local Storage\\file__0.localstorage}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/rituals/Local Storage/file__0.localstorage}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/rituals/Local Storage/file__0.localstorage}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\rituals\\Local Storage\\file__0.localstorage}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/rituals/Local Storage/file__0.localstorage}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/rituals/Local Storage/file__0.localstorage}}" Rituals in the Dark: pageId: 149358 steam: 1118880 @@ -134929,7 +131339,7 @@ Rival Books of Aster: pageId: 63157 steam: 639230 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Stitch Media\Rival Books\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Stitch Media\\Rival Books\\}}" Rival Megagun: pageId: 89698 steam: 654100 @@ -134948,32 +131358,30 @@ Rivals of Aether: pageId: 28872 steam: 383980 templates: - - '{{Game data/config|Windows|{{p|LOCALAPPDATA}}\RivalsofAether\saves\}}' - - '{{Game data/saves|Windows|{{p|LOCALAPPDATA}}\RivalsofAether\saves\}}' + - "{{Game data/config|Windows|{{p|LOCALAPPDATA}}\\RivalsofAether\\saves\\}}" + - "{{Game data/saves|Windows|{{p|LOCALAPPDATA}}\\RivalsofAether\\saves\\}}" Rive: pageId: 36938 steam: 278100 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Two Tribes\RIVE\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Two Tribes\RIVE\}}' - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/278100/remote/}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Two Tribes\\RIVE\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Two Tribes\\RIVE\\}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/278100/remote/}}" Riven: gog: 1207658819 pageId: 2098 steam: 63610 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/saves|Windows|{{p|game}}\*.rvn}}' + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\*.rvn}}" River City Girls: gog: 1439166945 pageId: 140283 steam: 1049320 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\WayForward Technologies\River City Girls\}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\WayForward Technologies\River City Girls\_savedata\}}' - - >- - {{Game data/saves|Microsoft - Store|{{p|LocalAppData|}}\Packages\6151WayForward.RiverCityGirlsPC_38xd6w9je1dae\LocalState\_savedata}} + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\WayForward Technologies\\River City Girls\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\WayForward Technologies\\River City Girls\\_savedata\\}}" + - "{{Game data/saves|Microsoft Store|{{p|LocalAppData|}}\\Packages\\6151WayForward.RiverCityGirlsPC_38xd6w9je1dae\\LocalState\\_savedata}}" River City Girls 2: pageId: 183006 steam: 1920480 @@ -134983,39 +131391,39 @@ River City Girls Zero: River City Melee Mach!!: pageId: 149043 steam: 763710 -'River City Melee: Battle Royal Special': +"River City Melee: Battle Royal Special": pageId: 70579 steam: 544630 -'River City Ransom: Underground': +"River City Ransom: Underground": gog: 2030715678 pageId: 57462 steam: 422810 templates: - - '{{Game data/config|Windows|{{p|game}}\settings.dat}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/RiverCityRansomUnderground/}}' - - '{{Game data/config|Linux|{{P|xdgconfighome}}/RiverCityRansomUnderground/}}' - - '{{Game data/saves|Windows|{{p|game}}\Saves\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/RiverCityRansomUnderground/}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/RiverCityRansomUnderground/}}' -'River City Saga: Three Kingdoms': + - "{{Game data/config|Windows|{{p|game}}\\settings.dat}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/RiverCityRansomUnderground/}}" + - "{{Game data/config|Linux|{{P|xdgconfighome}}/RiverCityRansomUnderground/}}" + - "{{Game data/saves|Windows|{{p|game}}\\Saves\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/RiverCityRansomUnderground/}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/RiverCityRansomUnderground/}}" +"River City Saga: Three Kingdoms": pageId: 177341 steam: 1013220 templates: - - '{{Game data/saves|Windows|{{P|userprofile}}\{{P|localappdata}}\LocalLow\ARC SYSTEM WORKS}}' -'River City Super Sports Challenge: All Stars Special': + - "{{Game data/saves|Windows|{{P|userprofile}}\\{{P|localappdata}}\\LocalLow\\ARC SYSTEM WORKS}}" +"River City Super Sports Challenge: All Stars Special": pageId: 45252 steam: 326340 -'River City: Rival Showdown': +"River City: Rival Showdown": pageId: 188523 steam: 2090370 -'River Legends: A Fly Fishing Adventure': +"River Legends: A Fly Fishing Adventure": pageId: 141911 steam: 1113490 Riverbond: pageId: 75863 steam: 459370 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Cococucumber\Riverbond\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Cococucumber\\Riverbond\\}}" Riverhill Trials: pageId: 88193 steam: 810460 @@ -135048,17 +131456,12 @@ Road 96: pageId: 165676 steam: 1466640 templates: - - '{{Game data/config|Windows|{{P|userprofile}}\AppData\LocalLow\DigixArt\Road 96\Saves\settings.sav}}' - - '{{Game data/config|Steam|{{P|steam}}\compatdata\1466640\remote\pfx\}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\DigixArt\Road 96\Saves\content.sav}}' - - >- - {{Game data/saves|Microsoft - Store|{{P|localappdata}}\Packages\DeepSilver.31214024AC209_hmv7qcest37me\SystemAppData\wgs{{Refcheck|user=Erictbar|date=2023-02-12|comment=Despite - the fact that web searches for this folder bring up Metro Exodus, I have tested that deleting this folder and - opening Road 96 while the PC is offline will load an empty save file, and reconnecting before opening will load - back from Xbox cloud save}}}} - - '{{Game data/saves|Steam|{{P|steam}}\compatdata\1466640\remote\pfx\}}' -'Road 96: Mile 0': + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\DigixArt\\Road 96\\Saves\\settings.sav}}" + - "{{Game data/config|Steam|{{P|steam}}\\compatdata\\1466640\\remote\\pfx\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\DigixArt\\Road 96\\Saves\\content.sav}}" + - "{{Game data/saves|Microsoft Store|{{P|localappdata}}\\Packages\\DeepSilver.31214024AC209_hmv7qcest37me\\SystemAppData\\wgs{{Refcheck|user=Erictbar|date=2023-02-12|comment=Despite the fact that web searches for this folder bring up Metro Exodus, I have tested that deleting this folder and opening Road 96 while the PC is offline will load an empty save file, and reconnecting before opening will load back from Xbox cloud save}}}}" + - "{{Game data/saves|Steam|{{P|steam}}\\compatdata\\1466640\\remote\\pfx\\}}" +"Road 96: Mile 0": gog: 1118289534 pageId: 184873 steam: 2095340 @@ -135076,23 +131479,23 @@ Road Fist: Road Homeward: pageId: 96935 steam: 876300 -'Road Homeward 2: River Trip': +"Road Homeward 2: River Trip": pageId: 134625 steam: 1059080 -'Road Homeward 3: Underwater World': +"Road Homeward 3: Underwater World": pageId: 141526 renamedFrom: - ROAD HOMEWARD 3 underwater world steam: 1106030 -'Road Homeward 4: Last Step': +"Road Homeward 4: Last Step": pageId: 149509 renamedFrom: - - 'ROAD HOMEWARD 4: last step' + - "ROAD HOMEWARD 4: last step" steam: 1153120 -'Road Homeward: Open World': +"Road Homeward: Open World": pageId: 153734 renamedFrom: - - 'ROAD HOMEWARD: Open world' + - "ROAD HOMEWARD: Open world" steam: 1202810 Road Legends: pageId: 89585 @@ -135104,7 +131507,7 @@ Road Not Taken: pageId: 19211 steam: 293740 templates: - - '{{Game data/saves|Windows|{{p|game}}\saves\}}' + - "{{Game data/saves|Windows|{{p|game}}\\saves\\}}" Road Patrol Truck: pageId: 96947 steam: 876870 @@ -135117,23 +131520,21 @@ Road Rage Royale: Road Rash: pageId: 6462 templates: - - '{{Game data/config|Windows|{{p|hklm}}\SOFTWARE\{{p|wow64}}\Electronic Arts\RoadRash 95\}}' - - '{{Game data/saves|Windows|{{p|hklm}}\SOFTWARE\{{p|wow64}}\Electronic Arts\RoadRash 95\}}' + - "{{Game data/config|Windows|{{p|hklm}}\\SOFTWARE\\{{p|wow64}}\\Electronic Arts\\RoadRash 95\\}}" + - "{{Game data/saves|Windows|{{p|hklm}}\\SOFTWARE\\{{p|wow64}}\\Electronic Arts\\RoadRash 95\\}}" Road Redemption: pageId: 20759 steam: 300380 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Road Redemption\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/documents/roadredemption}}' - - >- - {{Game data/config|Linux|{{p|linuxhome}}/Documents/Road Redemption|{{p|linuxhome}}/.config/unity3d/DarkSeas/Road - Redemption - Early Access}} - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Road Redemption\Saves\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/documents/roadredemption/saves}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/Documents/Road Redemption/Saves}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Road Redemption\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/documents/roadredemption}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/Documents/Road Redemption|{{p|linuxhome}}/.config/unity3d/DarkSeas/Road Redemption - Early Access}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Road Redemption\\Saves\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/documents/roadredemption/saves}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/Documents/Road Redemption/Saves}}" Road Runner: pageId: 90813 -'Road Scars: Origins': +"Road Scars: Origins": pageId: 90004 steam: 346500 Road To Nowhere: @@ -135145,12 +131546,12 @@ Road Trip USA - Jigsaw Puzzles: Road Wars: pageId: 25500 templates: - - '{{Game data/config|Windows|{{p|game}}\Road Wars\Ini}}' - - '{{Game data/saves|Windows|{{p|game}}\}}' + - "{{Game data/config|Windows|{{p|game}}\\Road Wars\\Ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\}}" Road Works: pageId: 46915 steam: 352750 -'Road Z Survival: The Last Winter': +"Road Z Survival: The Last Winter": pageId: 102749 steam: 868210 Road of Danger: @@ -135166,7 +131567,7 @@ Road to Ballhalla: pageId: 41805 steam: 425410 templates: - - '{{Game data/saves|Windows|{{p|localappdata}}\RoadToBallhallaUE4\Saved\SaveGames}}' + - "{{Game data/saves|Windows|{{p|localappdata}}\\RoadToBallhallaUE4\\Saved\\SaveGames}}" Road to Eden: pageId: 112332 steam: 929060 @@ -135174,8 +131575,8 @@ Road to Guangdong: pageId: 128571 steam: 995840 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Excalibur\RoadToGuangdong}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\Documents\Excalibur\RoadToGuangdong}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Excalibur\\RoadToGuangdong}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\Documents\\Excalibur\\RoadToGuangdong}}" Road to your City: pageId: 126356 steam: 494050 @@ -135185,7 +131586,7 @@ RoadRunner: RoadRunner VR: pageId: 71922 steam: 691640 -'Roadclub: League Racing': +"Roadclub: League Racing": pageId: 55588 steam: 437730 RoadkillerZ: @@ -135200,10 +131601,10 @@ Roads of Rome 2: Roads of Rome 3: pageId: 46012 steam: 411530 -'Roads of Rome: New Generation': +"Roads of Rome: New Generation": pageId: 77592 steam: 573760 -'Roads of Rome: New Generation 2': +"Roads of Rome: New Generation 2": pageId: 121063 steam: 947970 Roadside Assistance Simulator: @@ -135218,9 +131619,9 @@ Roadwarden: steamSide: - 1205280 templates: - - '{{Game data/saves|Windows|{{p|appdata}}\RenPy\Roadwarden-Saves}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/RenPy/roadwarden}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.renpy/roadwarden}}' + - "{{Game data/saves|Windows|{{p|appdata}}\\RenPy\\Roadwarden-Saves}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/RenPy/roadwarden}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.renpy/roadwarden}}" Roadworks - The Simulation: pageId: 54315 steam: 502430 @@ -135234,7 +131635,7 @@ Roaming Fortress: pageId: 49291 steam: 323000 templates: - - '{{Game data/saves|Windows|{{p|appdata}}\com.yeticgi.rf\Local Store\#SharedObjects\rf_desktop.swf}}' + - "{{Game data/saves|Windows|{{p|appdata}}\\com.yeticgi.rf\\Local Store\\#SharedObjects\\rf_desktop.swf}}" Roanoke: pageId: 81990 steam: 795140 @@ -135244,10 +131645,10 @@ Roarr! The Adventures of Rampage Rex: Roast Party: pageId: 153539 steam: 1193560 -Robber's Horror: +"Robber's Horror": pageId: 152985 steam: 1190230 -'Robbery Bob: Man of Steal': +"Robbery Bob: Man of Steal": pageId: 45964 steam: 372960 Robbie Swifthand and the Orb of Mysteries: @@ -135256,24 +131657,24 @@ Robbie Swifthand and the Orb of Mysteries: Robbo: pageId: 142639 templates: - - '{{Game data/config|DOS|{{p|game}}\config.dta}}' + - "{{Game data/config|DOS|{{p|game}}\\config.dta}}" Robbo Millennium: pageId: 142648 templates: - - '{{Game data/config|Windows|{{p|game}}\data\|{{P|HKLM}}\Software\L.K. Avalon\Robbo millennium}}' - - '{{Game data/saves|Windows|{{p|game}}\data\}}' + - "{{Game data/config|Windows|{{p|game}}\\data\\|{{P|HKLM}}\\Software\\L.K. Avalon\\Robbo millennium}}" + - "{{Game data/saves|Windows|{{p|game}}\\data\\}}" Robbotto: pageId: 104673 steam: 881190 -Robby's Adventure: +"Robby's Adventure": pageId: 69444 steam: 663140 -'Robert E. Lee: Civil War General': +"Robert E. Lee: Civil War General": pageId: 188344 -Robert Mensah's Sins of the Father: +"Robert Mensah's Sins of the Father": pageId: 44219 steam: 450840 -Robert Rodriguez's The Limit: +"Robert Rodriguez's The Limit": pageId: 123727 steam: 971350 Robikon: @@ -135282,34 +131683,34 @@ Robikon: Robin: pageId: 82625 steam: 671720 -Robin Hood's Games of Skill and Chance: +"Robin Hood's Games of Skill and Chance": pageId: 147345 -'Robin Hood: Country Heroes': +"Robin Hood: Country Heroes": pageId: 152905 steam: 1197670 -'Robin Hood: The Legend of Sherwood': +"Robin Hood: The Legend of Sherwood": gog: 1207659008 pageId: 21608 steam: 46560 templates: - - '{{Game data/config|Windows|{{p|game}}\DATA\Configuration\}}' - - '{{Game data/saves|Windows|{{p|game}}\DATA\Savegame\}}' + - "{{Game data/config|Windows|{{p|game}}\\DATA\\Configuration\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\DATA\\Savegame\\}}" Robin of Loxley the Legend of Sherwood: pageId: 74193 steam: 692090 -Robin's Island Adventure: +"Robin's Island Adventure": pageId: 49635 steam: 323260 -Robin's Quest: +"Robin's Quest": pageId: 50422 steam: 292880 Robinson Crusoe and the Cursed Pirates: pageId: 48739 steam: 334480 -Robinson's Requiem: +"Robinson's Requiem": gog: 1207662373 pageId: 21784 -'Robinson: The Journey': +"Robinson: The Journey": pageId: 57760 steam: 579820 Roblox: @@ -135332,8 +131733,8 @@ Robo Instructus: pageId: 130656 steam: 1032170 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\robo-instructus\profiles.json}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\robo-instructus\*.save}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\robo-instructus\\profiles.json}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\robo-instructus\\*.save}}" Robo Miner: pageId: 47565 steam: 378570 @@ -135346,15 +131747,15 @@ Robo Puzzle Smash: Robo Recall: pageId: 68057 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\RoboRecall\Saved\Config}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\RoboRecall\Saved\SaveGames}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\RoboRecall\\Saved\\Config}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\RoboRecall\\Saved\\SaveGames}}" Robo Run: pageId: 136429 steam: 1081720 Robo Runners: pageId: 109016 steam: 847670 -'Robo''s World: The Zarnok Fortress': +"Robo's World: The Zarnok Fortress": pageId: 44247 steam: 436360 Robo-orders: @@ -135367,8 +131768,8 @@ RoboBlitz: pageId: 41396 steam: 4300 templates: - - '{{Game data/config|Windows|{{p|game}}\RoboGame\Config\}}' - - '{{Game data/saves|Windows|{{p|game}}\SavedGames\}}' + - "{{Game data/config|Windows|{{p|game}}\\RoboGame\\Config\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\SavedGames\\}}" RoboBunnies In Space!: pageId: 122590 steam: 941600 @@ -135381,15 +131782,15 @@ RoboCock: RoboCop (2003): pageId: 28936 templates: - - '{{Game data/config|Windows|{{p|game}}\Robocop.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\save\}}' + - "{{Game data/config|Windows|{{p|game}}\\Robocop.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\save\\}}" RoboCop 3: pageId: 16948 renamedFrom: - RoboCop 3D templates: - - '{{Game data/config|DOS|{{p|game}}\}}' -'RoboCop: Rogue City': + - "{{Game data/config|DOS|{{p|game}}\\}}" +"RoboCop: Rogue City": pageId: 169781 steam: 1681430 steamSide: @@ -135397,8 +131798,8 @@ RoboCop 3: - 2436841 - 2436842 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\RoboCop\Saved\Config\Windows\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\RoboCop\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\RoboCop\\Saved\\Config\\Windows\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\RoboCop\\Saved\\SaveGames\\}}" RoboCritters: pageId: 64028 steam: 569350 @@ -135411,7 +131812,7 @@ RoboHeist VR: RoboMatch: pageId: 60225 steam: 600210 -'RoboSnakes: Core Wars Legacy': +"RoboSnakes: Core Wars Legacy": pageId: 124119 steam: 990750 RoboSports VR: @@ -135436,9 +131837,9 @@ Robocraft: pageId: 16153 steam: 301520 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\FreeJam\Robocraft\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Preferences/unity.FreeJam.Robocraft.plist}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/FreeJam/Robocraft/}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\FreeJam\\Robocraft\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Preferences/unity.FreeJam.Robocraft.plist}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/FreeJam/Robocraft/}}" Robocraft Royale: pageId: 88848 steam: 804810 @@ -135450,16 +131851,16 @@ Roboquest: pageId: 163665 steam: 692890 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\RoboQuest}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\RoboQuest}}' -'Robosoul: From the Depths of Pax-Animi': + - "{{Game data/config|Windows|{{p|localappdata}}\\RoboQuest}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\RoboQuest}}" +"Robosoul: From the Depths of Pax-Animi": pageId: 135077 steam: 707040 Robot Arena: pageId: 26010 templates: - - '{{Game data/config|Windows|{{p|game}}\Robot Arena.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\Save}}' + - "{{Game data/config|Windows|{{p|game}}\\Robot Arena.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\Save}}" Robot Arena III: pageId: 35234 steam: 363530 @@ -135499,10 +131900,10 @@ Robot Incursion: Robot Island: pageId: 156967 steam: 1197390 -'Robot King Part 2: Boss Battles': +"Robot King Part 2: Boss Battles": pageId: 130173 steam: 1017630 -'Robot King Part I: Rebooted and Ready': +"Robot King Part I: Rebooted and Ready": pageId: 73286 steam: 660340 Robot Legions Reborn: @@ -135518,8 +131919,8 @@ Robot Roller-Derby Disco Dodgeball: pageId: 23123 steam: 270450 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\82 Apps\Dodge\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\82 Apps\Disco Dodgeball\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\82 Apps\\Dodge\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\82 Apps\\Disco Dodgeball\\}}" Robot Rumble 2: pageId: 126420 steam: 884180 @@ -135533,7 +131934,7 @@ Robot Squad Simulator 2017: pageId: 40147 steam: 405760 templates: - - '{{Game data/saves|Windows|{{p|hkcu}}\Software\Robot Squad Simulator 2017\}}' + - "{{Game data/saves|Windows|{{p|hkcu}}\\Software\\Robot Squad Simulator 2017\\}}" Robot Tsunami: pageId: 45063 steam: 378450 @@ -135552,7 +131953,7 @@ Robot terminator: Robot vs Birds Zombies: pageId: 47158 steam: 389460 -Robot's Mystery: +"Robot's Mystery": pageId: 77651 steam: 724750 Robotek: @@ -135570,21 +131971,21 @@ Robotics;Notes DaSH: pageId: 159380 steam: 1111390 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\mages_steam\Robotics Notes DASH\eng}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\mages_steam\Robotics Notes DASH\eng}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\mages_steam\\Robotics Notes DASH\\eng}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\mages_steam\\Robotics Notes DASH\\eng}}" Robotics;Notes Elite: pageId: 140275 steam: 1111380 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\mages_steam\Robotics Notes ELITE\eng}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\mages_steam\Robotics Notes ELITE\eng}}' -'Robotron: 2084': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\mages_steam\\Robotics Notes ELITE\\eng}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\mages_steam\\Robotics Notes ELITE\\eng}}" +"Robotron: 2084": pageId: 176054 Robots: pageId: 158633 templates: - - '{{Game data/config|Windows|{{P|appdata}}\Robots\}}' - - '{{Game data/saves|Windows|{{P|appdata}}\Robots\}}' + - "{{Game data/config|Windows|{{P|appdata}}\\Robots\\}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\Robots\\}}" Robots 2 Unknown World: pageId: 99882 steam: 892020 @@ -135597,7 +131998,7 @@ Robots In The Wild: Robots.io: pageId: 69462 steam: 704070 -'Robots: create AI': +"Robots: create AI": pageId: 70575 steam: 676620 Robowars: @@ -135609,40 +132010,40 @@ Robozarro: Robust Road Roller: pageId: 54419 steam: 558030 -'Rocco''s Island: Ring to End the Pain': +"Rocco's Island: Ring to End the Pain": pageId: 175458 steam: 1394480 Rochard: pageId: 4877 steam: 107800 templates: - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Recoil Games/Rochard/profile.dat}}' - - '{{Game data/config|Steam|{{p|steam}}/userdata/{{p|uid}}/107800/profile.dat}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Recoil Games/Rochard/game.dat}}' - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/107800/game.dat}}' + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Recoil Games/Rochard/profile.dat}}" + - "{{Game data/config|Steam|{{p|steam}}/userdata/{{p|uid}}/107800/profile.dat}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Recoil Games/Rochard/game.dat}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/107800/game.dat}}" Roche Fusion: pageId: 37221 steam: 334140 -Rock 'N Roll: +"Rock 'N Roll": pageId: 64817 steam: 665930 -Rock 'N' Roll Defense: +"Rock 'N' Roll Defense": pageId: 41683 steam: 438480 templates: - - '{{Game data/config|Windows|{{p|LOCALAPPDATA}}\Rock__N__Roll_Defense\Rnrdconfig.sav}}' -Rock 'n' Roll Adventures: + - "{{Game data/config|Windows|{{p|LOCALAPPDATA}}\\Rock__N__Roll_Defense\\Rnrdconfig.sav}}" +"Rock 'n' Roll Adventures": pageId: 88329 Rock Band VR: pageId: 56546 -'Rock Boshers DX: Directors Cut': +"Rock Boshers DX: Directors Cut": pageId: 49147 steam: 298790 Rock God Tycoon: pageId: 50933 steam: 410840 templates: - - '{{Game data/saves|Windows|{{p|localappdata}}\RockGodTycoon\save_data\}}' + - "{{Game data/saves|Windows|{{p|localappdata}}\\RockGodTycoon\\save_data\\}}" Rock Painting Story: pageId: 120830 steam: 795060 @@ -135655,9 +132056,9 @@ Rock Simulator: Rock Zombie: pageId: 49283 steam: 328640 -Rock n' Roll Racing: +"Rock n' Roll Racing": pageId: 107372 -'Rock n'' Rush: Battle Racing': +"Rock n' Rush: Battle Racing": pageId: 95597 renamedFrom: - Rock Road Battlefield @@ -135666,27 +132067,27 @@ Rock of Ages: pageId: 13380 steam: 22230 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\UnrealEngine3\BoulderGame\Config\}}' -'Rock of Ages 3: Make & Break': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\UnrealEngine3\\BoulderGame\\Config\\}}" +"Rock of Ages 3: Make & Break": pageId: 143373 steam: 1101360 -'Rock of Ages II: Bigger & Boulder': +"Rock of Ages II: Bigger & Boulder": pageId: 39302 steam: 434460 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\ROA2\Saved\Config}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\ROA2\Saved\SaveGames}}' -'Rock''n Shaolin: Legend of the Seven Paladins 3D': + - "{{Game data/config|Windows|{{P|localappdata}}\\ROA2\\Saved\\Config}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\ROA2\\Saved\\SaveGames}}" +"Rock'n Shaolin: Legend of the Seven Paladins 3D": pageId: 166608 renamedFrom: - - 'Rock''n''Shaolin: Legend of the Seven Paladins 3D' -'Rock, Ken, Bo': + - "Rock'n'Shaolin: Legend of the Seven Paladins 3D" +"Rock, Ken, Bo": pageId: 61150 steam: 619480 -'Rock, Paper, Scissors Simulator': +"Rock, Paper, Scissors Simulator": pageId: 154003 steam: 1205060 -'Rock, the Tree Hugger': +"Rock, the Tree Hugger": pageId: 47063 steam: 391410 Rock-n-Rogue A Boo Bunny Plague Adventure: @@ -135708,7 +132109,7 @@ Rocket Arena: pageId: 136373 steam: 1233550 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Mariner\Saved\Config\WindowsNoEditor\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\Mariner\\Saved\\Config\\WindowsNoEditor\\}}" Rocket Armor: pageId: 77226 steam: 734350 @@ -135746,8 +132147,8 @@ Rocket Knight: pageId: 24245 steam: 19030 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Climax\RocketKnight\GameFrameWork\GameSettings}}' - - '{{Game data/saves|Windows|{{p|steam}}\userdata\{{p|uid}}\19030\remote\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Climax\\RocketKnight\\GameFrameWork\\GameSettings}}" + - "{{Game data/saves|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\19030\\remote\\}}" Rocket League: pageId: 26300 steam: 252950 @@ -135790,12 +132191,12 @@ Rocket League: - 1351430 - 1351431 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\My Games\Rocket League\TAGame\Config\}}' - - '{{Game data/config|OS X|{{P|osxhome}}/Library/Application Support/Rocket League/TAGame/}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/Rocket League/TAGame/}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\My Games\Rocket League\TAGame\SaveData\}}' - - '{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/Rocket League/TAGame/SaveData/}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/Rocket League/TAGame/SaveData/}}' + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\My Games\\Rocket League\\TAGame\\Config\\}}" + - "{{Game data/config|OS X|{{P|osxhome}}/Library/Application Support/Rocket League/TAGame/}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/Rocket League/TAGame/}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\My Games\\Rocket League\\TAGame\\SaveData\\}}" + - "{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/Rocket League/TAGame/SaveData/}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/Rocket League/TAGame/SaveData/}}" Rocket Mania: pageId: 183905 steam: 1949810 @@ -135803,7 +132204,7 @@ Rocket Mania!: pageId: 12905 steam: 3440 templates: - - '{{Game data/saves|Windows|{{p|game}}\Players}}' + - "{{Game data/saves|Windows|{{p|game}}\\Players}}" Rocket Ranger: gog: 1207666773 pageId: 21635 @@ -135829,7 +132230,7 @@ Rocket Valley Tycoon: Rocket Wars: pageId: 62566 steam: 627670 -'Rocket of Whispers: Prologue': +"Rocket of Whispers: Prologue": pageId: 109584 steam: 910460 RocketGO: @@ -135842,16 +132243,16 @@ Rocketbirds 2 Evolution: pageId: 56481 steam: 470210 templates: - - '{{Game data/config|Windows|{{p|game}}\Save\}}' - - '{{Game data/saves|Windows|{{p|game}}\Save\}}' -'Rocketbirds: Hardboiled Chicken': + - "{{Game data/config|Windows|{{p|game}}\\Save\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\Save\\}}" +"Rocketbirds: Hardboiled Chicken": pageId: 6594 steam: 215510 templates: - - '{{Game data/config|Windows|{{P|game}}\Save\}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/rocketbirds/}}' - - '{{Game data/saves|Windows|{{P|game}}\Save\}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/rocketbirds/}}' + - "{{Game data/config|Windows|{{P|game}}\\Save\\}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/rocketbirds/}}" + - "{{Game data/saves|Windows|{{P|game}}\\Save\\}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/rocketbirds/}}" Rocketboarder: pageId: 136802 steam: 730170 @@ -135872,12 +132273,12 @@ Rockland VR: steam: 718470 Rockman 1~6 Collection: pageId: 175926 -'Rockman DASH: Adventure to Save the Planet': +"Rockman DASH: Adventure to Save the Planet": pageId: 171456 Rockman Dash 2: pageId: 140017 templates: - - '{{Game data/config|Windows|{{p|game}}\dash2.cfg}}' + - "{{Game data/config|Windows|{{p|game}}\\dash2.cfg}}" Rockman IQ Whirlwind: pageId: 175246 Rockman Strategy: @@ -135888,19 +132289,19 @@ Rockman X Dive: Rockman X Math Whirlwind: pageId: 175248 templates: - - '{{Game data/saves|Windows|{{p|game}}\Han.txt}}' + - "{{Game data/saves|Windows|{{p|game}}\\Han.txt}}" Rockman X7: pageId: 73411 templates: - - '{{Game data/saves|Windows|{{p|game}}\savedata\}}' -Rockman's Gold Empire: + - "{{Game data/saves|Windows|{{p|game}}\\savedata\\}}" +"Rockman's Gold Empire": pageId: 171444 -Rocko's Quest: +"Rocko's Quest": pageId: 25408 steam: 297620 templates: - - '{{Game data/config|Windows|{{p|game}}\Options.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\RData\Save\}}' + - "{{Game data/config|Windows|{{p|game}}\\Options.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\RData\\Save\\}}" Rockochet: pageId: 90152 steam: 761990 @@ -135911,15 +132312,15 @@ Rocksmith: pageId: 3757 steam: 205190 templates: - - '{{Game data/config|Windows| {{P|game}}\Rocksmith.ini }}' - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{P|uid}}\205190\remote\ }}' + - "{{Game data/config|Windows| {{P|game}}\\Rocksmith.ini }}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{P|uid}}\\205190\\remote\\ }}" Rocksmith 2014: pageId: 13752 steam: 221680 templates: - - '{{Game data/config|Windows|{{p|game}}\Rocksmith.ini}}' - - '{{Game data/config|OS X|{{p|game}}\Rocksmith.ini}}' - - '{{Game data/saves|Windows|{{p|steam}}\userdata\{{P|uid}}\221680\remote\}}' + - "{{Game data/config|Windows|{{p|game}}\\Rocksmith.ini}}" + - "{{Game data/config|OS X|{{p|game}}\\Rocksmith.ini}}" + - "{{Game data/saves|Windows|{{p|steam}}\\userdata\\{{P|uid}}\\221680\\remote\\}}" Rocksmith+: pageId: 169311 Rocwood Academy: @@ -135930,10 +132331,10 @@ Rod: Rodent Warriors: pageId: 127313 steam: 1013600 -Rodent's Revenge: +"Rodent's Revenge": pageId: 7933 templates: - - '{{Game data/config|Windows|{{p|windir}}\entpack.ini}}' + - "{{Game data/config|Windows|{{p|windir}}\\entpack.ini}}" Rodentwars!: pageId: 92289 steam: 804330 @@ -135941,9 +132342,9 @@ Rodina: pageId: 13444 steam: 314230 templates: - - '{{Game data/config|Windows|{{p|game}}\UserData\Profile-*.lua}}' - - '{{Game data/saves|Windows|{{p|game}}\UserData\*.egs}}' -Rodney's Funscreen: + - "{{Game data/config|Windows|{{p|game}}\\UserData\\Profile-*.lua}}" + - "{{Game data/saves|Windows|{{p|game}}\\UserData\\*.egs}}" +"Rodney's Funscreen": pageId: 147186 Rogalia: pageId: 54423 @@ -135951,10 +132352,10 @@ Rogalia: Rogalik: pageId: 92700 steam: 843570 -'Rogan: The Thief in the Castle': +"Rogan: The Thief in the Castle": pageId: 139261 steam: 966560 -Roger Wilco's Spaced Out Game Pack: +"Roger Wilco's Spaced Out Game Pack": pageId: 147341 Rogue: pageId: 155024 @@ -135972,8 +132373,8 @@ Rogue Bit: pageId: 114878 steam: 949790 templates: - - '{{Game data/config|Windows|{{P|appdata}}\Bigosaur\RogueBit\settings.storage}}' - - '{{Game data/saves|Windows|{{P|appdata}}\Bigosaur\RogueBit\savegame.storage}}' + - "{{Game data/config|Windows|{{P|appdata}}\\Bigosaur\\RogueBit\\settings.storage}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\Bigosaur\\RogueBit\\savegame.storage}}" Rogue Buddies - Aztek Gold: pageId: 92015 steam: 753570 @@ -135981,11 +132382,11 @@ Rogue Company: pageId: 146271 steam: 872200 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\RogueCompany\Saved\Config\WindowsNoEditor\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\RogueCompany\\Saved\\Config\\WindowsNoEditor\\}}" Rogue Continuum: pageId: 46452 steam: 357700 -'Rogue Contracts: Syndicate': +"Rogue Contracts: Syndicate": pageId: 36708 steam: 453660 Rogue Empire: @@ -136009,19 +132410,17 @@ Rogue Heist: pageId: 103037 steam: 891430 templates: - - >- - {{Game - data/config|Windows|{{P|localappdata}}\RogueHeist\Saved\Config\WindowsNoEditor\|{{P|localappdata}}\RogueHeist\Saved\SaveGames\GameSettingsVr02.sav}} - - '{{Game data/saves|Windows|{{P|localappdata}}\RogueHeist\Saved\SaveGames\SaveGame.sav}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\RogueHeist\\Saved\\Config\\WindowsNoEditor\\|{{P|localappdata}}\\RogueHeist\\Saved\\SaveGames\\GameSettingsVr02.sav}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\RogueHeist\\Saved\\SaveGames\\SaveGame.sav}}" Rogue Hero: pageId: 81794 steam: 787810 -'Rogue Heroes: Ruins of Tasos': +"Rogue Heroes: Ruins of Tasos": pageId: 163668 steam: 787810 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\My Games\Rogue Heroes - Ruins of Tasos\Saves\Settings.xml}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\My Games\Rogue Heroes - Ruins of Tasos\Saves\Save*.xml}}' + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\My Games\\Rogue Heroes - Ruins of Tasos\\Saves\\Settings.xml}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\My Games\\Rogue Heroes - Ruins of Tasos\\Saves\\Save*.xml}}" Rogue Invader: pageId: 176292 steam: 342080 @@ -136033,24 +132432,20 @@ Rogue Legacy: pageId: 8332 steam: 241600 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Rogue Legacy\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/RogueLegacy/}}' - - '{{Game data/config|Linux|{{P|xdgconfighome}}/RogueLegacy/}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\SavedGames\RogueLegacy\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/RogueLegacy/}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/RogueLegacy/}}' + - "{{Game data/config|Windows|{{p|appdata}}\\Rogue Legacy\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/RogueLegacy/}}" + - "{{Game data/config|Linux|{{P|xdgconfighome}}/RogueLegacy/}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\SavedGames\\RogueLegacy\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/RogueLegacy/}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/RogueLegacy/}}" Rogue Legacy 2: pageId: 161358 steam: 1253920 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Cellar Door Games\Rogue Legacy 2|}}' - - >- - {{Game data/config|Steam|{{p|userprofile}}\AppData\LocalLow\Cellar Door Games\Rogue Legacy - 2\Saves\Steam\GameConfig.ini}} - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Cellar Door Games\Rogue Legacy 2}}' - - >- - {{Game data/saves|Steam|{{p|userprofile}}\AppData\LocalLow\Cellar Door Games\Rogue Legacy - 2\Saves\Steam\{{p|uid}}\*}} + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Cellar Door Games\\Rogue Legacy 2|}}" + - "{{Game data/config|Steam|{{p|userprofile}}\\AppData\\LocalLow\\Cellar Door Games\\Rogue Legacy 2\\Saves\\Steam\\GameConfig.ini}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Cellar Door Games\\Rogue Legacy 2}}" + - "{{Game data/saves|Steam|{{p|userprofile}}\\AppData\\LocalLow\\Cellar Door Games\\Rogue Legacy 2\\Saves\\Steam\\{{p|uid}}\\*}}" Rogue Lords: gog: 1538637664 pageId: 161693 @@ -136067,7 +132462,7 @@ Rogue Port - Blue Nightmare: Rogue Port - Red Nightmare: pageId: 43127 steam: 467310 -'Rogue Quest: The Vault of the Lost Tyrant': +"Rogue Quest: The Vault of the Lost Tyrant": pageId: 73857 steam: 728420 Rogue Rails: @@ -136083,7 +132478,7 @@ Rogue Shift: gog: 1179561550 pageId: 167502 steam: 611190 -'Rogue Shooter: The FPS Roguelike': +"Rogue Shooter: The FPS Roguelike": pageId: 50370 steam: 295770 Rogue Singularity: @@ -136102,8 +132497,8 @@ Rogue State: pageId: 46024 steam: 396090 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\Saved Games\Rogue State\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\Saved Games\Rogue State\}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\Saved Games\\Rogue State\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Saved Games\\Rogue State\\}}" Rogue State Revolution: pageId: 145532 steam: 1145340 @@ -136118,29 +132513,29 @@ Rogue Trooper: pageId: 21600 steam: 7020 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Rogue Trooper\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Rogue Trooper\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Rogue Trooper\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Rogue Trooper\\}}" Rogue Trooper Redux: gog: 2076502816 gogSide: - - 1639809483 - 1360356045 + - 1639809483 - 2076502816 pageId: 58581 steam: 529490 steamSide: - 710410 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Rogue Trooper Redux GOG\}}' - - '{{Game data/config|Steam|{{p|appdata}}\Rogue Trooper Redux\}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Rogue Trooper Redux GOG\}}' - - '{{Game data/saves|Steam|{{p|appdata}}\Rogue Trooper Redux\}}' + - "{{Game data/config|Windows|{{p|appdata}}\\Rogue Trooper Redux GOG\\}}" + - "{{Game data/config|Steam|{{p|appdata}}\\Rogue Trooper Redux\\}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Rogue Trooper Redux GOG\\}}" + - "{{Game data/saves|Steam|{{p|appdata}}\\Rogue Trooper Redux\\}}" Rogue Warrior: pageId: 41198 steam: 22310 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Bethesda\Rogue Warrior\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Bethesda\Rogue Warrior\Saves\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Bethesda\\Rogue Warrior\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Bethesda\\Rogue Warrior\\Saves\\}}" Rogue Waves: pageId: 145150 steam: 1147240 @@ -136149,8 +132544,8 @@ Rogue Wizards: pageId: 39109 steam: 392260 templates: - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\Spellbind Studios\Rogue Wizards\Save}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Spellbind Studios/Rogue Wizards/Save}}' + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\Spellbind Studios\\Rogue Wizards\\Save}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Spellbind Studios/Rogue Wizards/Save}}" Rogue Zillion: pageId: 76261 steam: 752010 @@ -136159,17 +132554,17 @@ Rogue in the Void: renamedFrom: - Rogue In The Void steam: 1029960 -Rogue'n Roll: +"Rogue'n Roll": pageId: 58437 steam: 600310 -Rogue's Tale: +"Rogue's Tale": pageId: 50508 steam: 265990 -'Rogue: Genesia': +"Rogue: Genesia": pageId: 186818 steam: 2067920 templates: - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\HuardOuadi\Rogue Genesia\Profile}}' + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\HuardOuadi\\Rogue Genesia\\Profile}}" RogueCraft Squadron: pageId: 127649 steam: 1000810 @@ -136191,7 +132586,7 @@ Roguebook: pageId: 142263 steam: 1076200 templates: - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Abrakam Entertainment SA\Roguebook\Saves\}}' + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Abrakam Entertainment SA\\Roguebook\\Saves\\}}" Roguebreaker: pageId: 99644 steam: 731420 @@ -136199,9 +132594,9 @@ Roguelands: pageId: 33719 steam: 364420 templates: - - '{{Game data/config|Linux|{{p|xdgconfighome}}/unity3d/DefaultCompany/Roguelands/prefs.txt}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\DefaultCompany\Roguelands\PlayerPrefs.txt}}' - - '{{Game data/saves|Linux|{{p|xdgconfighome}}/unity3d/DefaultCompany/Roguelands/PlayerPrefs.txt}}' + - "{{Game data/config|Linux|{{p|xdgconfighome}}/unity3d/DefaultCompany/Roguelands/prefs.txt}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\DefaultCompany\\Roguelands\\PlayerPrefs.txt}}" + - "{{Game data/saves|Linux|{{p|xdgconfighome}}/unity3d/DefaultCompany/Roguelands/PlayerPrefs.txt}}" Roguelike Hero: pageId: 109264 steam: 887680 @@ -136227,7 +132622,7 @@ Roll Control: Roll Out: pageId: 64608 steam: 661650 -Roll'd: +"Roll'd": pageId: 37862 steam: 461010 Roll+Heart: @@ -136239,8 +132634,8 @@ RollTheEarth: Rollcage: pageId: 89092 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/saves|Windows|{{p|hklm}}\Software\Psygnosis\Rollcage\BootSys}}' + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{p|hklm}}\\Software\\Psygnosis\\Rollcage\\BootSys}}" Rollcage Stage II: pageId: 133997 Rolled Out!: @@ -136253,7 +132648,7 @@ Roller Champions: pageId: 138448 steam: 2211280 templates: - - '{{Game data/config|Windows|{{p|HKCU}}\Software\Ubisoft\Roller\}}' + - "{{Game data/config|Windows|{{p|HKCU}}\\Software\\Ubisoft\\Roller\\}}" Roller Coaster Apocalypse VR: pageId: 91855 steam: 837260 @@ -136266,7 +132661,7 @@ Roller Coaster Rampage: RollerCoaster Legends: pageId: 78236 steam: 756040 -'RollerCoaster Legends II: Thor''s Hammer': +"RollerCoaster Legends II: Thor's Hammer": pageId: 95242 steam: 854690 RollerCoaster Tycoon: @@ -136274,35 +132669,29 @@ RollerCoaster Tycoon: pageId: 1038 steam: 285310 templates: - - '{{Game data/saves|Windows|{{p|game}}\Saved Games}}' + - "{{Game data/saves|Windows|{{p|game}}\\Saved Games}}" RollerCoaster Tycoon 2: gog: 1207658957 pageId: 7688 steam: 285330 templates: - - '{{Game data/config|Windows|{{p|game}}\Data}}' - - '{{Game data/saves|Windows|{{p|game}}\Saved Games}}' + - "{{Game data/config|Windows|{{p|game}}\\Data}}" + - "{{Game data/saves|Windows|{{p|game}}\\Saved Games}}" RollerCoaster Tycoon 3: gog: 1207659032 pageId: 327 steam: 1368820 templates: - - >- - {{Game data/config|Windows|{{p|appdata}}\Atari\RCT3\{{note|Original - release.}}|{{P|appdata}}\Frontier\RCT3{{note|Complete Edition.}}}} - - >- - {{Game data/config|OS X|{{p|osxhome}}/Library/Containers/com.aspyr.rct3.appstore/Data/Library/Application - Support/RollerCoaster Tycoon 3 Platinum/AppData/{{note|Original release.}}}} - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\RCT3\{{note|Original and Complete Edition release.}}}}' - - >- - {{Game data/saves|OS X|{{p|osxhome}}/Library/Containers/com.aspyr.rct3.appstore/Data/Library/Application - Support/RollerCoaster Tycoon 3 Platinum/{{note|Original release.}}}} -'RollerCoaster Tycoon 3: Complete Edition': + - "{{Game data/config|Windows|{{p|appdata}}\\Atari\\RCT3\\{{note|Original release.}}|{{P|appdata}}\\Frontier\\RCT3{{note|Complete Edition.}}}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Containers/com.aspyr.rct3.appstore/Data/Library/Application Support/RollerCoaster Tycoon 3 Platinum/AppData/{{note|Original release.}}}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\RCT3\\{{note|Original and Complete Edition release.}}}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Containers/com.aspyr.rct3.appstore/Data/Library/Application Support/RollerCoaster Tycoon 3 Platinum/{{note|Original release.}}}}" +"RollerCoaster Tycoon 3: Complete Edition": pageId: 163256 steam: 1368820 templates: - - '{{Game data/config|Windows|{{P|appdata}}\Frontier\RCT3}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\RCT3\}}' + - "{{Game data/config|Windows|{{P|appdata}}\\Frontier\\RCT3}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\RCT3\\}}" RollerCoaster Tycoon Adventures: pageId: 131671 RollerCoaster Tycoon Classic: @@ -136310,15 +132699,15 @@ RollerCoaster Tycoon Classic: pageId: 72515 steam: 683900 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\Atari\Rollercoaster Tycoon Classic\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/com.Atari.RCT-Classic}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\Atari\Rollercoaster Tycoon Classic\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/com.Atari.RCT-Classic}}' + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\Atari\\Rollercoaster Tycoon Classic\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/com.Atari.RCT-Classic}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\Atari\\Rollercoaster Tycoon Classic\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/com.Atari.RCT-Classic}}" RollerCoaster Tycoon World: pageId: 23063 steam: 282560 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Nvizzio Creations}}' + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Nvizzio Creations}}" RollerForce: pageId: 40020 steam: 506550 @@ -136335,7 +132724,7 @@ Rollerdrome: pageId: 180843 steam: 1294420 templates: - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\Roll7\ROLLERDROME }}' + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\Roll7\\ROLLERDROME }}" Rollers: pageId: 154285 steam: 1179010 @@ -136343,16 +132732,16 @@ Rollers of the Realm: pageId: 38089 steam: 262470 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Phantom Compass\Rollers of the Realm\}}' - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\262470\remote\}}' -'Rollers of the Realm: Reunion': + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Phantom Compass\\Rollers of the Realm\\}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\262470\\remote\\}}" +"Rollers of the Realm: Reunion": pageId: 172323 steam: 1628120 Rolling Bird: pageId: 125383 steam: 978800 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\thunder_projet\optiondata.sav}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\thunder_projet\\optiondata.sav}}" Rolling Gauntlet: pageId: 44920 steam: 434960 @@ -136369,15 +132758,15 @@ Rolling Sun: pageId: 34940 steam: 371670 templates: - - '{{Game data/config|Windows|{{p|game}}\system.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\USER\SaveGames\}}' + - "{{Game data/config|Windows|{{p|game}}\\system.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\USER\\SaveGames\\}}" Rolling in the Reef: pageId: 99954 steam: 884960 RollingBall: pageId: 87946 steam: 806240 -'RollingBall: Unlimited World': +"RollingBall: Unlimited World": pageId: 91130 steam: 834420 RollingSky: @@ -136395,15 +132784,15 @@ Rollossus: Rollout: pageId: 40016 steam: 509190 -Rolly's Adventure: +"Rolly's Adventure": pageId: 139363 steam: 997310 Roly-Polys no Nanakorobi Yaoki: pageId: 163979 -'Roman Adventures: Britons. Season 1': +"Roman Adventures: Britons. Season 1": pageId: 111944 steam: 646680 -'Roman Adventures: Britons. Season 2': +"Roman Adventures: Britons. Season 2": pageId: 152893 steam: 1130990 Roman Legionary: @@ -136415,12 +132804,12 @@ Roman Sacrifice in Córdoba: Roman Sands: pageId: 152453 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\SOFTWARE\DefaultCompany\AM002\}}' - - '{{Game data/saves|Windows|{{P|hkcu}}\SOFTWARE\DefaultCompany\AM002\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\SOFTWARE\\DefaultCompany\\AM002\\}}" + - "{{Game data/saves|Windows|{{P|hkcu}}\\SOFTWARE\\DefaultCompany\\AM002\\}}" Roman The Worm: pageId: 100146 steam: 886950 -Roman's Christmas: +"Roman's Christmas": pageId: 110434 steam: 926340 Romance of Rome: @@ -136436,15 +132825,15 @@ Romance of the Three Kingdoms 13: pageId: 34085 steam: 363150 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\koeitecmo\san13\System Config}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\KoeiTecmo\San13\EN_SAVEDATA}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\koeitecmo\\san13\\System Config}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\KoeiTecmo\\San13\\EN_SAVEDATA}}" Romance of the Three Kingdoms II: pageId: 56969 steam: 521690 -'Romance of the Three Kingdoms III: Dragon of Destiny': +"Romance of the Three Kingdoms III: Dragon of Destiny": pageId: 58303 steam: 521710 -'Romance of the Three Kingdoms IV: Wall of Fire': +"Romance of the Three Kingdoms IV: Wall of Fire": pageId: 59590 steam: 521730 Romance of the Three Kingdoms IX: @@ -136474,10 +132863,10 @@ Romance of the Three Kingdoms XI: Romance of the Three Kingdoms XIV: pageId: 145264 steam: 872410 -'Romance of the Three Kingdoms: The Legend of CaoCao - Tactics': +"Romance of the Three Kingdoms: The Legend of CaoCao - Tactics": pageId: 141355 renamedFrom: - - 'Romance of the Three Kingdoms: Legend of CaoCao(Tactics)' + - "Romance of the Three Kingdoms: Legend of CaoCao(Tactics)" steam: 927130 Romance with Chocolate - Hidden Object in Paris: pageId: 69723 @@ -136491,17 +132880,12 @@ Romancing SaGa 2: Romancing SaGa 3: pageId: 150482 steam: 952540 -'Romancing SaGa: Minstrel Song Remastered': +"Romancing SaGa: Minstrel Song Remastered": pageId: 178003 steam: 1793030 templates: - - >- - {{Game data/config|Windows|{{p|hkcu}}\Software\SquareEnix\Romancing SaGa -Minstrel Song- Remastered | - {{p|userprofile}}\Documents\My Games\Romancing SaGa -Minstrel Song- - Remastered\Steam\{{p|uid}}\SaveData\AppSetting.bin}} - - >- - {{Game data/saves|Windows|{{p|userprofile}}\Documents\My Games\Romancing SaGa -Minstrel Song- - Remastered\Steam\{{p|uid}}\SaveData\SaveData.bin}} + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\SquareEnix\\Romancing SaGa -Minstrel Song- Remastered | {{p|userprofile}}\\Documents\\My Games\\Romancing SaGa -Minstrel Song- Remastered\\Steam\\{{p|uid}}\\SaveData\\AppSetting.bin}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Documents\\My Games\\Romancing SaGa -Minstrel Song- Remastered\\Steam\\{{p|uid}}\\SaveData\\SaveData.bin}}" Romans from Mars: pageId: 75976 steam: 719220 @@ -136510,7 +132894,7 @@ Romans from Mars 360: renamedFrom: - Romans From Mars 360 steam: 719240 -'Romans: Age of Caesar': +"Romans: Age of Caesar": pageId: 176890 steam: 872570 Romantic Journey: @@ -136522,16 +132906,16 @@ Rombie: Romby: pageId: 65702 steam: 656210 -'Rome Circus Maximus: Chariot Race VR': +"Rome Circus Maximus: Chariot Race VR": pageId: 72696 steam: 657780 -'Rome: Total War': +"Rome: Total War": pageId: 792 steam: 4760 templates: - - '{{Game data/config|Windows|{{p|game}}\preferences\preferences.txt}}' - - '{{Game data/saves|Windows|{{p|game}}\saves}}' -Romero's Aftermath: + - "{{Game data/config|Windows|{{p|game}}\\preferences\\preferences.txt}}" + - "{{Game data/saves|Windows|{{p|game}}\\saves}}" +"Romero's Aftermath": pageId: 46308 steam: 349700 Romguns: @@ -136545,10 +132929,10 @@ Ronin: pageId: 26656 steam: 274230 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Ronin\}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/Ronin/}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Ronin\}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/Ronin/}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Ronin\\}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/Ronin/}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Ronin\\}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/Ronin/}}" Ronin 2072: pageId: 160070 steam: 1163160 @@ -136568,14 +132952,14 @@ Roogoo: pageId: 41188 steam: 38210 templates: - - '{{Game data/saves|Windows|{{p|appdata}}/RooGoo}}' + - "{{Game data/saves|Windows|{{p|appdata}}/RooGoo}}" Roojack: pageId: 76353 steam: 728720 Rook: pageId: 155310 steam: 1218420 -'Rookie: Math Pro': +"Rookie: Math Pro": pageId: 95073 steam: 771820 Rooks Keep: @@ -136596,7 +132980,7 @@ Room 42: Room 54: pageId: 113048 steam: 673240 -Room Escape '1053': +"Room Escape '1053'": pageId: 153658 steam: 1192410 Room Service: @@ -136608,28 +132992,28 @@ Room of Pandora: Room13: pageId: 47879 steam: 314590 -'RoomESC- Secret of the Hidden Room: the Collaborator': +"RoomESC- Secret of the Hidden Room: the Collaborator": pageId: 104143 steam: 909370 -'Roombo: First Blood': +"Roombo: First Blood": pageId: 126290 steam: 1004610 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Samurai Punk\Roombo: First Blood\}}' - - '{{Game data/config|Steam|{{P|steam}}\userdata\{{P|uid}}\1004610\remote\punkplayerprefs.dat}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Samurai Punk\\Roombo: First Blood\\}}" + - "{{Game data/config|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\1004610\\remote\\punkplayerprefs.dat}}" Roomie Romance: pageId: 146826 steam: 467720 Roommates: pageId: 49504 steam: 317300 -'Rooms: The Main Building': +"Rooms: The Main Building": pageId: 24946 steam: 304500 templates: - - '{{Game data/config|Windows|{{p|game}}\User\option.xml}}' - - '{{Game data/saves|Windows|{{p|game}}\User\Profile\*.sav}}' -'Rooms: The Unsolvable Puzzle': + - "{{Game data/config|Windows|{{p|game}}\\User\\option.xml}}" + - "{{Game data/saves|Windows|{{p|game}}\\User\\Profile\\*.sav}}" +"Rooms: The Unsolvable Puzzle": pageId: 38019 steam: 331460 Roomscale Coaster: @@ -136654,23 +133038,23 @@ Root Double -Before Crime * After Days-: pageId: 33608 steam: 438130 templates: - - '{{Game data/saves|Windows|{{p|appdata}}\Yeti\RootDoubleXe\VER_100\savedata.bin}}' + - "{{Game data/saves|Windows|{{p|appdata}}\\Yeti\\RootDoubleXe\\VER_100\\savedata.bin}}" Root Letter: pageId: 64032 steam: 543240 templates: - - '{{Game data/saves|Windows|{{p|game}}\Savedata\*.dat}}' -'Root Letter: Last Answer': + - "{{Game data/saves|Windows|{{p|game}}\\Savedata\\*.dat}}" +"Root Letter: Last Answer": pageId: 141989 steam: 1056510 templates: - - '{{Game data/saves|Windows|{{p|game}}\Savedata\*.dat}}' -'Root of Evil: The Tailor': + - "{{Game data/saves|Windows|{{p|game}}\\Savedata\\*.dat}}" +"Root of Evil: The Tailor": pageId: 54756 steam: 550310 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\EastFog\Root Of Evil :The Tailor}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\EastFog\Root Of Evil _The Tailor\The_Tailor.txt}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\EastFog\\Root Of Evil :The Tailor}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\EastFog\\Root Of Evil _The Tailor\\The_Tailor.txt}}" Roots of Insanity: pageId: 58846 steam: 598440 @@ -136678,21 +133062,21 @@ Roots of Pacha: pageId: 174670 steam: 1245560 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Soda Den\Roots of Pacha}}' - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\Soda Den\Roots of Pacha\saves\{{P|uid}}}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Soda Den/Roots of Pacha/saves/{{P|uid}}}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Soda Den\\Roots of Pacha}}" + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\Soda Den\\Roots of Pacha\\saves\\{{P|uid}}}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Soda Den/Roots of Pacha/saves/{{P|uid}}}}" Roots of the Woods: pageId: 144669 renamedFrom: - Roots Of The Woods steam: 1128660 -Rope Racer O'Neon: +"Rope Racer O'Neon": pageId: 122344 steam: 961750 Ropelike: pageId: 77659 steam: 655140 -'Ropes And Dragons: VR': +"Ropes And Dragons: VR": pageId: 56374 steam: 576750 Ropeway Simulator 2014: @@ -136702,29 +133086,29 @@ Rose Online: pageId: 40703 steam: 215120 templates: - - '{{Game data/config|Windows|{{p|game}}\SevenHearts.ini}}' -'Rose Riddle 2: Werewolf Shadow': + - "{{Game data/config|Windows|{{p|game}}\\SevenHearts.ini}}" +"Rose Riddle 2: Werewolf Shadow": pageId: 156149 steam: 1096130 -'Rose Riddle: Fairy Tale Detective': +"Rose Riddle: Fairy Tale Detective": pageId: 143895 steam: 1144450 Rose of Winter: pageId: 51839 steam: 540880 -Rosebaker's Icy Treats: +"Rosebaker's Icy Treats": pageId: 67543 steam: 667780 Rosenkreuzstilette: pageId: 56996 steam: 564150 templates: - - '{{Game data/config|Windows|{{p|game}}\Config.dat}}' + - "{{Game data/config|Windows|{{p|game}}\\Config.dat}}" Rosenkreuzstilette Freudenstachel: pageId: 73788 steam: 564160 templates: - - '{{Game data/config|Windows|{{p|game}}\Config.dat}}' + - "{{Game data/config|Windows|{{p|game}}\\Config.dat}}" Roses and Gems: pageId: 44086 steam: 406690 @@ -136735,7 +133119,7 @@ Rosewater: gog: 1657623040 pageId: 160100 steam: 1226670 -Rosie's Reality: +"Rosie's Reality": pageId: 152163 Rosso Rabbit In Trouble: pageId: 165924 @@ -136760,7 +133144,7 @@ Rotatex: Rotation: pageId: 135663 steam: 814080 -'Rotation Phonology: Break': +"Rotation Phonology: Break": pageId: 56344 steam: 554690 Rotator: @@ -136769,7 +133153,7 @@ Rotator: Rotatorix: pageId: 89298 steam: 716130 -'Rothschild: The Sheep Will Wake': +"Rothschild: The Sheep Will Wake": pageId: 45517 steam: 413490 Rotieer: @@ -136787,7 +133171,7 @@ Rotten Utopia: Rotund Rebound: pageId: 136024 steam: 1000750 -'Rough Justice: ''84': +"Rough Justice: '84": pageId: 178197 steam: 1291860 Roulette Simulator: @@ -136812,8 +133196,8 @@ Roundabout: pageId: 30817 steam: 303430 templates: - - '{{Game data/config|Windows|{{p|game}}\resolution.settings|{{p|hkcu}}\SOFTWARE\No Goblin\Roundabout\}}' - - '{{Game data/saves|Windows|{{p|game}}\Savedata\}}' + - "{{Game data/config|Windows|{{p|game}}\\resolution.settings|{{p|hkcu}}\\SOFTWARE\\No Goblin\\Roundabout\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\Savedata\\}}" Rounders (Arena): pageId: 93331 steam: 819730 @@ -136824,8 +133208,8 @@ Rounds: pageId: 179791 steam: 1557740 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Landfall Games\Rounds\}}' - - '{{Game data/saves|Windows|{{P|hkcu}}\Software\Landfall Games\Rounds\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Landfall Games\\Rounds\\}}" + - "{{Game data/saves|Windows|{{P|hkcu}}\\Software\\Landfall Games\\Rounds\\}}" Routine: pageId: 23061 steam: 606160 @@ -136836,7 +133220,7 @@ Rover Mechanic Simulator: pageId: 135697 steam: 864680 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\PyramidGames\RoverMechanicSimulator\*.sav}}' + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\PyramidGames\\RoverMechanicSimulator\\*.sav}}" Rover Rescue: pageId: 50296 steam: 286440 @@ -136849,13 +133233,13 @@ Roving in the Dark: RowRow: pageId: 126014 steam: 1001200 -'Roy Cluse: Itsy-Bitsy Edition': +"Roy Cluse: Itsy-Bitsy Edition": pageId: 149551 steam: 1153320 Royal Adventure: pageId: 91458 steam: 832650 -'Royal Agents: Sweet Zombie': +"Royal Agents: Sweet Zombie": pageId: 68982 steam: 700910 Royal Alchemist: @@ -136870,7 +133254,7 @@ Royal Booty Quest: Royal Bounty HD: pageId: 46927 steam: 337210 -'Royal Casino: Video Poker': +"Royal Casino: Video Poker": pageId: 78489 steam: 771840 Royal Crown: @@ -136880,19 +133264,19 @@ Royal Defense: pageId: 49359 steam: 291170 templates: - - '{{Game data/saves|Windows|{{p|appdata}}\8Floor\RD\}}' -'Royal Detective: Queen of Shadows': + - "{{Game data/saves|Windows|{{p|appdata}}\\8Floor\\RD\\}}" +"Royal Detective: Queen of Shadows": pageId: 63314 renamedFrom: - - 'Royal Detective: Queen of Shadows Collector''s Edition' + - "Royal Detective: Queen of Shadows Collector's Edition" steam: 647850 -'Royal Detective: The Last Charm': +"Royal Detective: The Last Charm": pageId: 153228 steam: 1192270 -'Royal Detective: The Lord of Statues': +"Royal Detective: The Lord of Statues": pageId: 53868 renamedFrom: - - 'Royal Detective: The Lord of Statues Collector''s Edition' + - "Royal Detective: The Lord of Statues Collector's Edition" steam: 559150 Royal Envoy 2: pageId: 178787 @@ -136902,7 +133286,7 @@ Royal Gems: Royal Heroes: pageId: 44124 steam: 439920 -'Royal Life: Hard to be a Queen': +"Royal Life: Hard to be a Queen": pageId: 140970 steam: 1110280 Royal Merchant: @@ -136916,7 +133300,7 @@ Royal Quest: steam: 295550 Royal Revolt: pageId: 181070 -'Royal Revolt 2: Tower Defense': +"Royal Revolt 2: Tower Defense": pageId: 176803 Royal Roads: pageId: 122166 @@ -136956,40 +133340,40 @@ Rubber and Lead: Rubble Rush: pageId: 135369 steam: 1018750 -'Rube Works: The Official Rube Goldberg Invention Game': +"Rube Works: The Official Rube Goldberg Invention Game": pageId: 50399 steam: 292090 templates: - - '{{Game data/config|Windows|{{p|HKCU}}\Software\Electric Eggplant\Rube Works\}}' - - '{{Game data/saves|Windows|{{p|HKCU}}\Software\Electric Eggplant\Rube Works\}}' + - "{{Game data/config|Windows|{{p|HKCU}}\\Software\\Electric Eggplant\\Rube Works\\}}" + - "{{Game data/saves|Windows|{{p|HKCU}}\\Software\\Electric Eggplant\\Rube Works\\}}" Rubek: pageId: 50887 steam: 531740 Ruberg: pageId: 100722 steam: 746560 -'Rubi: The Wayward Mira': +"Rubi: The Wayward Mira": pageId: 157371 steam: 1167110 Rubico: pageId: 135816 steam: 1046700 -Rubik's Cube VR: +"Rubik's Cube VR": pageId: 114814 steam: 948940 -'Ruby & Majesty: Treasure Team': +"Ruby & Majesty: Treasure Team": pageId: 105039 steam: 879520 Ruckus Ridge VR Party: pageId: 34745 steam: 443800 -'Ruction: The Golden Tablet': +"Ruction: The Golden Tablet": pageId: 57093 steam: 496820 Rude Racers: pageId: 142054 steam: 1099440 -Ruff's Bone: +"Ruff's Bone": pageId: 186456 Rugby: pageId: 106253 @@ -137022,15 +133406,15 @@ Rugby Challenge 3: pageId: 35176 steam: 370840 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\WickedWitch\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\WickedWitch\\}}" Rugby Champions: pageId: 144707 steam: 939350 Rugby League Live: pageId: 89164 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\My Games\Rugby League Live}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\My Games\Rugby League Live}}' + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\My Games\\Rugby League Live}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\My Games\\Rugby League Live}}" Rugby League Live 3: pageId: 46240 steam: 312920 @@ -137067,11 +133451,11 @@ Rugosi: Rugrats Adventure Game: pageId: 55431 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/saves|Windows|{{p|game}}\}}' -'Rugrats in Paris: The Movie': + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\}}" +"Rugrats in Paris: The Movie": pageId: 177651 -'Rugrats: Totally Angelica Boredom Buster': +"Rugrats: Totally Angelica Boredom Buster": pageId: 180533 Ruin City Gasolina: pageId: 67565 @@ -137086,7 +133470,7 @@ Ruin of the Reckless: Ruinarch: pageId: 130440 renamedFrom: - - World's Bane + - "World's Bane" steam: 909320 Ruination: pageId: 128226 @@ -137094,25 +133478,23 @@ Ruination: Ruine: pageId: 135265 steam: 1071660 -'Ruined King: A League of Legends Story': +"Ruined King: A League of Legends Story": gog: 1118306226 pageId: 154620 steam: 1276790 templates: - - '{{Game data/config|Windows|{{P|userprofile\appdata\locallow}}\Airship Syndicate\Ruined King\{{P|uid}}}}' - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Airship Syndicate\Ruined King\{{P|uid}}\Profile01}}' + - "{{Game data/config|Windows|{{P|userprofile\\appdata\\locallow}}\\Airship Syndicate\\Ruined King\\{{P|uid}}}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Airship Syndicate\\Ruined King\\{{P|uid}}\\Profile01}}" Ruiner: gog: 1637928515 pageId: 39584 steam: 464060 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Ruiner\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/config|Linux|{{P|xdgconfighome}}/Epic/Ruiner/Saved/Config/}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Ruiner\Saved\SaveGames\}}' - - >- - {{Game data/saves|Microsoft - Store|{{p|localappdata}}\Packages\DevolverDigital.Ruiner_6kzv4j18v0c96\SystemAppData\wgs\000900000254A507_ECED0100ED114094AF25077B0598D10C\8FC1BBA561974E9EAAD4526E5963654A\}} - - '{{Game data/saves|Linux|{{P|xdgconfighome}}/Epic/Ruiner/Saved/SaveGames/}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Ruiner\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/config|Linux|{{P|xdgconfighome}}/Epic/Ruiner/Saved/Config/}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Ruiner\\Saved\\SaveGames\\}}" + - "{{Game data/saves|Microsoft Store|{{p|localappdata}}\\Packages\\DevolverDigital.Ruiner_6kzv4j18v0c96\\SystemAppData\\wgs\\000900000254A507_ECED0100ED114094AF25077B0598D10C\\8FC1BBA561974E9EAAD4526E5963654A\\}}" + - "{{Game data/saves|Linux|{{P|xdgconfighome}}/Epic/Ruiner/Saved/SaveGames/}}" Ruinic: pageId: 157400 renamedFrom: @@ -137123,7 +133505,7 @@ Ruins Seeker: pageId: 139608 steam: 1078280 templates: - - '{{Game data/saves|Windows|{{p|game}}\www\save\}}' + - "{{Game data/saves|Windows|{{p|game}}\\www\\save\\}}" Ruins War: pageId: 112896 steam: 943330 @@ -137151,7 +133533,7 @@ Rules of Destruction: Rules of Survival: pageId: 83151 steam: 788260 -'Rules of The Mafia: Trade & Blood': +"Rules of The Mafia: Trade & Blood": pageId: 126053 steam: 996830 Rum & Gun: @@ -137166,14 +133548,14 @@ Rumble: Rumble Arena: pageId: 136781 steam: 1040820 -'Rumble Fighter: Unleashed': +"Rumble Fighter: Unleashed": pageId: 55121 steam: 357500 Rumbleverse: pageId: 173632 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Rumbleverse\Saved\Config\WindowsClient}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\Rumbleverse\Saved\SaveGames}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\Rumbleverse\\Saved\\Config\\WindowsClient}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Rumbleverse\\Saved\\SaveGames}}" Rumia in the darkness: pageId: 141689 steam: 1060240 @@ -137190,7 +133572,7 @@ Rumu: pageId: 74285 steam: 723270 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Robot House\Rumu\Save}}' + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Robot House\\Rumu\\Save}}" Run (2020): pageId: 156947 renamedFrom: @@ -137200,7 +133582,7 @@ Run Away: pageId: 61996 steam: 629280 templates: - - '{{Game data/config|Linux|{{p|xdgconfighome}}/unity3d/BCHwaves/Run Away/}}' + - "{{Game data/config|Linux|{{p|xdgconfighome}}/unity3d/BCHwaves/Run Away/}}" Run Away (2018): pageId: 137404 steam: 998690 @@ -137299,34 +133681,34 @@ Run! Bunny~绿绿小先生: Run!ZombieFoods!: pageId: 65851 steam: 671800 -Run'N'Get: +"Run'N'Get": pageId: 114238 steam: 937970 -'Run, Goo, Run': +"Run, Goo, Run": pageId: 63825 steam: 658950 -'Run, My Little Pixel': +"Run, My Little Pixel": pageId: 73528 steam: 703270 -'Run, Run, Monsters!': +"Run, Run, Monsters!": pageId: 104347 steam: 913300 -'Run, chicken, run!': +"Run, chicken, run!": pageId: 125046 steam: 1000300 -'Run: The World In-Between': +"Run: The World In-Between": gog: 2043581420 pageId: 177090 steam: 1548940 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Godot\app_userdata\Run}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Godot\app_userdata\Run}}' + - "{{Game data/config|Windows|{{p|appdata}}\\Godot\\app_userdata\\Run}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Godot\\app_userdata\\Run}}" RunGunJumpGun: pageId: 37096 steam: 440550 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\ThirtyThree Games\RunGunJumpGun\}}' - - '{{Game data/saves|Windows|{{P|steam}}\userdata\{{P|uid}}\440550\remote\savegame.json}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\ThirtyThree Games\\RunGunJumpGun\\}}" + - "{{Game data/saves|Windows|{{P|steam}}\\userdata\\{{P|uid}}\\440550\\remote\\savegame.json}}" RunVR: pageId: 52638 steam: 542570 @@ -137336,18 +133718,18 @@ RunZ: RunZ 2: pageId: 69567 steam: 699900 -Runa's Date: +"Runa's Date": pageId: 135221 steam: 1060540 -Runa's School Story: +"Runa's School Story": pageId: 127502 steam: 981270 -'Runaway 2: The Dream of the Turtle': +"Runaway 2: The Dream of the Turtle": gog: 1207659057 pageId: 14387 steam: 7220 templates: - - '{{Game data/saves|Windows|{{P|game}}\SAVEGAME}}' + - "{{Game data/saves|Windows|{{P|game}}\\SAVEGAME}}" Runaway Express Mystery: pageId: 49601 steam: 299020 @@ -137357,19 +133739,19 @@ Runaway Train: Runaway VR: pageId: 67151 steam: 687890 -'Runaway: A Road Adventure': +"Runaway: A Road Adventure": gog: 1207658727 pageId: 13567 steam: 7210 templates: - - '{{Game data/saves|Windows|{{p|game}}\SAVEGAME\}}' -'Runaway: A Twist of Fate': + - "{{Game data/saves|Windows|{{p|game}}\\SAVEGAME\\}}" +"Runaway: A Twist of Fate": gog: 1207659083 pageId: 21598 steam: 58560 templates: - - '{{Game data/config|Windows|{{p|game}}\ratof.config}}' - - '{{Game data/saves|Windows|{{P|programdata}}\Pendulo Studios\RATOF\SAVEGAME\}}' + - "{{Game data/config|Windows|{{p|game}}\\ratof.config}}" + - "{{Game data/saves|Windows|{{P|programdata}}\\Pendulo Studios\\RATOF\\SAVEGAME\\}}" Runbow: pageId: 53109 steam: 464650 @@ -137378,27 +133760,27 @@ Rune: pageId: 16412 steam: 210950 templates: - - '{{Game data/config|Windows|{{p|game}}\System}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.loki/rune}}' - - '{{Game data/saves|Windows|{{p|game}}\Save}}' + - "{{Game data/config|Windows|{{p|game}}\\System}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.loki/rune}}" + - "{{Game data/saves|Windows|{{p|game}}\\Save}}" Rune Factory 3 Special: pageId: 185731 steam: 2243710 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Roaming\Rune Factory 3 Special\{{P|uid}}}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Roaming\Rune Factory 3 Special\{{P|uid}}}}' + - "{{Game data/config|Windows|{{p|appdata}}\\Roaming\\Rune Factory 3 Special\\{{P|uid}}}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Roaming\\Rune Factory 3 Special\\{{P|uid}}}}" Rune Factory 4 Special: pageId: 169403 steam: 1580240 templates: - - '{{Game data/config|Windows|{{P|appdata}}\Rune Factory 4 Special}}' - - '{{Game data/saves|Windows|{{P|appdata}}\Rune Factory 4 Special}}' + - "{{Game data/config|Windows|{{P|appdata}}\\Rune Factory 4 Special}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\Rune Factory 4 Special}}" Rune Factory 5: pageId: 178135 steam: 1702330 templates: - - '{{Game data/config|Windows|{{P|appdata}}\RF5\{{P|uid}}\}}' - - '{{Game data/saves|Windows|{{P|appdata}}\RF5\{{P|uid}}\}}' + - "{{Game data/config|Windows|{{P|appdata}}\\RF5\\{{P|uid}}\\}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\RF5\\{{P|uid}}\\}}" Rune Fencer Illyia: pageId: 145461 steam: 1104600 @@ -137406,8 +133788,8 @@ Rune II: pageId: 115117 steam: 821290 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Rune\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\Rune\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\Rune\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Rune\\Saved\\SaveGames\\}}" Rune Lord: pageId: 134754 steam: 1069460 @@ -137418,10 +133800,8 @@ RuneScape: pageId: 17858 steam: 1343400 templates: - - >- - {{Game - data/config|Windows|{{p|programdata}}\jagex\runescape\globalsettings.jcache|{{p|localappdata}}\jagex\runescape\settings.jcache}} -'RuneScape: Idle Adventures': + - "{{Game data/config|Windows|{{p|programdata}}\\jagex\\runescape\\globalsettings.jcache|{{p|localappdata}}\\jagex\\runescape\\settings.jcache}}" +"RuneScape: Idle Adventures": pageId: 37050 steam: 452780 RuneTech: @@ -137431,16 +133811,12 @@ Runefall: pageId: 95119 steam: 813650 templates: - - >- - {{Game data/config|Windows|{{p|localappdata}}\Runefall{{Refurl|url=https://steamcommunity.com/app/813650/discussions/0/1738841319825659775/#c2747650363467330200|title=Steam - community - save game location|date=2023-01-17|snippet=The save game file is found in - \Users\[USERNAME]\AppData\Local\Runefall.}}}} - - '{{Game data/saves|Windows|{{p|localappdata}}\Runefall}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Runefall{{Refurl|url=https://steamcommunity.com/app/813650/discussions/0/1738841319825659775/#c2747650363467330200|title=Steam community - save game location|date=2023-01-17|snippet=The save game file is found in \\Users\\[USERNAME]\\AppData\\Local\\Runefall.}}}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Runefall}}" Runefall 2: pageId: 149035 steam: 1129660 -'Runeous: Part One': +"Runeous: Part One": pageId: 42804 steam: 485800 Runers: @@ -137461,25 +133837,23 @@ Runes of Magic: Runes of Pandemonium: pageId: 178915 steam: 1865730 -'Runes: The Forgotten Path': +"Runes: The Forgotten Path": pageId: 62096 steam: 457130 -'Runespell: Overture': +"Runespell: Overture": pageId: 40946 steam: 102200 templates: - - |- - {{Game data/config|Windows|/userdata/30848538/102200/remote - }} - - '{{Game data/saves|Windows|/userdata/30848538/102200/remote}}' + - "{{Game data/config|Windows|/userdata/30848538/102200/remote\n}}" + - "{{Game data/saves|Windows|/userdata/30848538/102200/remote}}" Runestone Keeper: gog: 1445608249 pageId: 34302 steam: 339400 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\cimu\RuneStoneKeeper\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\cimu\RuneStoneKeeper\}}' -'Runewards: Strategy Card Game': + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\cimu\\RuneStoneKeeper\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\cimu\\RuneStoneKeeper\\}}" +"Runewards: Strategy Card Game": pageId: 82316 steam: 636560 Runeyana: @@ -137489,12 +133863,12 @@ Runic Rampage: pageId: 62201 steam: 615010 templates: - - '{{Game data/config|Linux|{{p|xdgconfighome}}/unity3d/Electrocosmos/Runic Rampage/prefs}}' - - '{{Game data/saves|Linux|{{p|xdgconfighome}}/unity3d/Electrocosmos/Runic Rampage/savegame.xml}}' + - "{{Game data/config|Linux|{{p|xdgconfighome}}/unity3d/Electrocosmos/Runic Rampage/prefs}}" + - "{{Game data/saves|Linux|{{p|xdgconfighome}}/unity3d/Electrocosmos/Runic Rampage/savegame.xml}}" Runner: pageId: 82018 steam: 781560 -'Runner Heroes: The Curse of Night and Day': +"Runner Heroes: The Curse of Night and Day": pageId: 182572 steam: 1157820 Runner3: @@ -137502,9 +133876,9 @@ Runner3: pageId: 93923 steam: 516130 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Choice Provisions\Runner3\}}' - - '{{Game data/saves|Windows|{{P|game}}\Runner3.sav}}' - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{P|uid}}\516130\remote\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Choice Provisions\\Runner3\\}}" + - "{{Game data/saves|Windows|{{P|game}}\\Runner3.sav}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{P|uid}}\\516130\\remote\\}}" Running Black: pageId: 144323 steam: 1115030 @@ -137532,7 +133906,7 @@ Running Sausage: Running Shadow: pageId: 48647 steam: 330760 -'Running Sheep: Tiny Worlds': +"Running Sheep: Tiny Worlds": pageId: 169734 Running Tadpoles: pageId: 124130 @@ -137550,10 +133924,10 @@ Running with Rifles: pageId: 10032 steam: 270150 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Running with rifles\}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.running_with_rifles/}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Running with rifles\savegames\}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/-running_with_rifles/savegames/}}' + - "{{Game data/config|Windows|{{p|appdata}}\\Running with rifles\\}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.running_with_rifles/}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Running with rifles\\savegames\\}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/-running_with_rifles/savegames/}}" RunningDead: pageId: 58634 steam: 584220 @@ -137573,10 +133947,10 @@ Rush: pageId: 5594 steam: 38720 templates: - - '{{Game data/config|Linux|{{p|xdgdatahome}}/twotribes/rush/}}' - - '{{Game data/config|Steam|{{p|steam}}/userdata/{{p|uid}}/38720/remote/}}' - - '{{Game data/saves|Linux|{{p|xdgdatahome}}/twotribes/rush/}}' - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/38720/remote/}}' + - "{{Game data/config|Linux|{{p|xdgdatahome}}/twotribes/rush/}}" + - "{{Game data/config|Steam|{{p|steam}}/userdata/{{p|uid}}/38720/remote/}}" + - "{{Game data/saves|Linux|{{p|xdgdatahome}}/twotribes/rush/}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/38720/remote/}}" Rush (2018): pageId: 94457 steam: 844040 @@ -137584,9 +133958,9 @@ Rush Bros.: pageId: 17344 steam: 234490 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\SOFTWARE\mark@trilightstudios.com\Rush Bros\}}' - - '{{Game data/saves|Windows|{{P|hkcu}}\SOFTWARE\mark@trilightstudios.com\Rush Bros\}}' - - '{{Game data/saves|Steam|{{P|steam}}/userdata/{{P|uid}}/234490/remote/Ghosts/*.bin}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\SOFTWARE\\mark@trilightstudios.com\\Rush Bros\\}}" + - "{{Game data/saves|Windows|{{P|hkcu}}\\SOFTWARE\\mark@trilightstudios.com\\Rush Bros\\}}" + - "{{Game data/saves|Steam|{{P|steam}}/userdata/{{P|uid}}/234490/remote/Ghosts/*.bin}}" Rush Rover: pageId: 54955 steam: 438320 @@ -137594,18 +133968,18 @@ Rush for Berlin: pageId: 41211 steam: 40320 templates: - - '{{Game data/config|Windows|{{P|game}}\options.ini|{{P|game}}\state.ini}}' - - '{{Game data/saves|Windows|{{P|game}}\Profiles\}}' + - "{{Game data/config|Windows|{{P|game}}\\options.ini|{{P|game}}\\state.ini}}" + - "{{Game data/saves|Windows|{{P|game}}\\Profiles\\}}" Rush for Glory: pageId: 50043 steam: 303470 templates: - - '{{Game data/config|Windows|{{P|game}}\game.config|{{P|userprofile\Documents}}\RushForGlory\game.config}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\RushForGlory\profiles.dat}}' -'Rush for Gold: Alaska': + - "{{Game data/config|Windows|{{P|game}}\\game.config|{{P|userprofile\\Documents}}\\RushForGlory\\game.config}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\RushForGlory\\profiles.dat}}" +"Rush for Gold: Alaska": pageId: 44992 steam: 435140 -'Rush for Gold: California': +"Rush for Gold: California": pageId: 44217 steam: 449520 Rush on Rome: @@ -137614,14 +133988,14 @@ Rush on Rome: Rush to Adventure: pageId: 69344 steam: 674210 -Rush'n Attack: +"Rush'n Attack": pageId: 171733 -'Rush: A Disney Pixar Adventure': +"Rush: A Disney Pixar Adventure": pageId: 108676 steam: 579490 templates: - - '{{Game data/config|Steam|{{p|appdata}}\Rush\UserCfg}}' - - '{{Game data/saves|Steam|{{p|userprofile}}\Saved Games\Rush\}}' + - "{{Game data/config|Steam|{{p|appdata}}\\Rush\\UserCfg}}" + - "{{Game data/saves|Steam|{{p|userprofile}}\\Saved Games\\Rush\\}}" Russia Battlegrounds: pageId: 99970 steam: 805940 @@ -137643,7 +134017,7 @@ Russian AYE Race: Russian Car Driver: pageId: 56260 steam: 566990 -'Russian Car Driver 2: ZIL 130': +"Russian Car Driver 2: ZIL 130": pageId: 144853 steam: 1138390 Russian Fishing 4: @@ -137659,18 +134033,18 @@ Russian Horror Story: pageId: 45811 steam: 390970 templates: - - '{{Game data/config|Windows|{{p|game}}\renpy\config.py}}' - - '{{Game data/saves|Windows|{{p|appdata}}\renpy\RHS-1437322581\}}' + - "{{Game data/config|Windows|{{p|game}}\\renpy\\config.py}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\renpy\\RHS-1437322581\\}}" Russian Life Simulator: pageId: 135317 steam: 1070330 Russian Love Story: pageId: 95915 steam: 603470 -'Russian Peace Duck: Take my Nalogi': +"Russian Peace Duck: Take my Nalogi": pageId: 91034 steam: 833410 -'Russian Prison Sport: OCHKO': +"Russian Prison Sport: OCHKO": pageId: 92789 steam: 845730 Russian Prisoner VS Nazi Zombies: @@ -137683,7 +134057,7 @@ Russian Roulette: pageId: 122312 steam: 951180 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\DefaultCompany\Russian 3D\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\DefaultCompany\\Russian 3D\\}}" Russian Subway Dogs: pageId: 96031 steam: 762610 @@ -137695,7 +134069,7 @@ Russian Test: renamedFrom: - Пацанский цитатник / Russian Test steam: 1088880 -'Russian Underground: VR': +"Russian Underground: VR": pageId: 54084 steam: 563510 Russian VR Coasters: @@ -137717,9 +134091,9 @@ Rust: pageId: 11999 steam: 252490 templates: - - '{{Game data/config|Windows|{{p|game}}\cfg\client.cfg}}' - - '{{Game data/config|OS X|{{P|game}}/cfg/client.cfg}}' - - '{{Game data/config|Linux|{{P|game}}/cfg/client.cfg}}' + - "{{Game data/config|Windows|{{p|game}}\\cfg\\client.cfg}}" + - "{{Game data/config|OS X|{{P|game}}/cfg/client.cfg}}" + - "{{Game data/config|Linux|{{P|game}}/cfg/client.cfg}}" Rustbucket Rumble: pageId: 48018 steam: 351140 @@ -137727,10 +134101,8 @@ Rusted Moss: pageId: 185017 steam: 1772830 templates: - - >- - {{Game - data/config|Windows|{{P|game}}\options.ini|{{P|localappdata}}\Rusted_Moss\f_settings_|{{P|localappdata}}\Rusted_Moss\hook_mode|{{P|localappdata}}\Rusted_Moss\language_set__}} - - '{{Game data/saves|Windows|{{P|localappdata}}\Rusted_Moss\*.save}}' + - "{{Game data/config|Windows|{{P|game}}\\options.ini|{{P|localappdata}}\\Rusted_Moss\\f_settings_|{{P|localappdata}}\\Rusted_Moss\\hook_mode|{{P|localappdata}}\\Rusted_Moss\\language_set__}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Rusted_Moss\\*.save}}" Rusted Warfare: pageId: 63813 renamedFrom: @@ -137740,7 +134112,7 @@ Rustler: pageId: 94152 steam: 844260 templates: - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\JutsuGames\Rustler\}}' + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\JutsuGames\\Rustler\\}}" Rusty: pageId: 175137 Rusty Hearts: @@ -137751,25 +134123,19 @@ Rusty Lake Hotel: pageId: 37277 steam: 435120 templates: - - >- - {{Game data/saves|Windows|{{P|userprofile\Documents}}\Rusty - Lake\Hotel\saveGame.sav|{{p|APPDATA}}\com.RustyLake.RustyLakeHotel\Local - Store\#SharedObjects\RustyLakeHotel.swf\RustySave4.sol}} + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\Rusty Lake\\Hotel\\saveGame.sav|{{p|APPDATA}}\\com.RustyLake.RustyLakeHotel\\Local Store\\#SharedObjects\\RustyLakeHotel.swf\\RustySave4.sol}}" Rusty Lake Paradise: gog: 1935427813 pageId: 78615 steam: 744190 templates: - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Rusty Lake\Paradise\saveGame.sav}}' -'Rusty Lake: Roots': + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Rusty Lake\\Paradise\\saveGame.sav}}" +"Rusty Lake: Roots": gog: 1857125331 pageId: 51861 steam: 532110 templates: - - >- - {{Game data/saves|Windows|{{p|APPDATA}}\com.RustyLake.RustyLakeRoots\Local - Store\#SharedObjects\RustyLakeRoots.swf\Tree11.sol|{{P|userprofile\Documents}}\Rusty - Lake\Roots\saveGame.sav}} + - "{{Game data/saves|Windows|{{p|APPDATA}}\\com.RustyLake.RustyLakeRoots\\Local Store\\#SharedObjects\\RustyLakeRoots.swf\\Tree11.sol|{{P|userprofile\\Documents}}\\Rusty Lake\\Roots\\saveGame.sav}}" Rusty Runner: pageId: 132578 steam: 891990 @@ -137792,8 +134158,8 @@ Ruzh Delta Z: pageId: 47954 steam: 370190 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\SOFTWARE\Pribumi\RUZH DELTA Z\}}' - - '{{Game data/saves|Windows|{{P|hkcu}}\SOFTWARE\Pribumi\RUZH DELTA Z\HighScore{{code|*}}}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\SOFTWARE\\Pribumi\\RUZH DELTA Z\\}}" + - "{{Game data/saves|Windows|{{P|hkcu}}\\SOFTWARE\\Pribumi\\RUZH DELTA Z\\HighScore{{code|*}}}}" Ryan Black: pageId: 56556 steam: 567600 @@ -137804,23 +134170,23 @@ RymdResa: pageId: 46801 steam: 269690 templates: - - '{{Game data/saves|Windows|{{P|userprofile}}\save.rymdresa}}' + - "{{Game data/saves|Windows|{{P|userprofile}}\\save.rymdresa}}" Rymdkapsel: pageId: 14693 steam: 253790 templates: - - '{{Game data/saves|Windows|{{p|appdata}}\grapefrukt games\rymdkapsel\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/rymdkapsel/}}' - - '{{Game data/saves|Linux|{{P|xdgconfighome}}/com.grapefrukt.games.rymdkapsel1/}}' -'Rynn''s Adventure: Trouble in the Enchanted Forest': + - "{{Game data/saves|Windows|{{p|appdata}}\\grapefrukt games\\rymdkapsel\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/rymdkapsel/}}" + - "{{Game data/saves|Linux|{{P|xdgconfighome}}/com.grapefrukt.games.rymdkapsel1/}}" +"Rynn's Adventure: Trouble in the Enchanted Forest": pageId: 34843 steam: 420500 -'Ryse: Son of Rome': +"Ryse: Son of Rome": pageId: 19353 steam: 302510 templates: - - '{{Game data/config|Windows|{{p|game}}\system.cfg}}' - - '{{Game data/saves|Windows|{{p|steam}}\userdata\{{p|uid}}\302510\remote\}}' + - "{{Game data/config|Windows|{{p|game}}\\system.cfg}}" + - "{{Game data/saves|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\302510\\remote\\}}" Rysen: pageId: 81691 steam: 789280 @@ -137829,7 +134195,7 @@ Ryu ga Gotoku Online: Ryzom: pageId: 43161 steam: 373720 -'Réussir : Code de la Route': +"Réussir : Code de la Route": pageId: 152847 steam: 1109840 Röki: @@ -137840,20 +134206,20 @@ Röki: - 1342580 - 1402620 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\SOFTWARE\Polygon Treehouse\Röki}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Polygon Treehouse\Röki\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\SOFTWARE\\Polygon Treehouse\\Röki}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Polygon Treehouse\\Röki\\}}" RŌA: pageId: 93694 steam: 851880 -'S-COPTER: Trials of Quick Fingers and Logic': +"S-COPTER: Trials of Quick Fingers and Logic": pageId: 78136 steam: 596260 -'S.A.I.A.''s Awakening: A Robothorium Visual Novel': +"S.A.I.A.'s Awakening: A Robothorium Visual Novel": pageId: 122598 steam: 962390 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\GoblinzStudio\RobothoriumVisualNovel\}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\GoblinzStudio\RobothoriumVisualNovel\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\GoblinzStudio\\RobothoriumVisualNovel\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\GoblinzStudio\\RobothoriumVisualNovel\\}}" S.F.77: pageId: 100534 steam: 888800 @@ -137866,7 +134232,7 @@ S.O.R.S: S.P.I.C.E Arena: pageId: 91524 steam: 789200 -'S.T.A.L.K.E.R. 2: Heart of Chornobyl': +"S.T.A.L.K.E.R. 2: Heart of Chornobyl": gog: 1848734189 gogSide: - 1630445267 @@ -137874,45 +134240,45 @@ S.P.I.C.E Arena: pageId: 155045 renamedFrom: - S.T.A.L.K.E.R. 2 - - 'S.T.A.L.K.E.R. 2: Heart of Chernobyl' + - "S.T.A.L.K.E.R. 2: Heart of Chernobyl" steam: 1643320 -'S.T.A.L.K.E.R.: Call of Pripyat': +"S.T.A.L.K.E.R.: Call of Pripyat": gog: 1207660583 pageId: 3499 steam: 41700 templates: - - '{{Game data/config|Windows|{{p|public}}\Public Documents\S.T.A.L.K.E.R. - Call of Pripyat\}}' - - '{{Game data/config|GOG.com|{{p|userprofile\Documents}}\Stalker-COP\}}' - - '{{Game data/config|Steam|{{P|game}}\_appdata_\}}' - - '{{Game data/saves|Windows|{{p|public}}\Public Documents\S.T.A.L.K.E.R. - Call of Pripyat\savedgames\}}' - - '{{Game data/saves|GOG.com|{{p|userprofile\Documents}}\Stalker-COP\savedgames\}}' - - '{{Game data/saves|Steam|{{P|game}}\_appdata_\savedgames\}}' -'S.T.A.L.K.E.R.: Clear Sky': + - "{{Game data/config|Windows|{{p|public}}\\Public Documents\\S.T.A.L.K.E.R. - Call of Pripyat\\}}" + - "{{Game data/config|GOG.com|{{p|userprofile\\Documents}}\\Stalker-COP\\}}" + - "{{Game data/config|Steam|{{P|game}}\\_appdata_\\}}" + - "{{Game data/saves|Windows|{{p|public}}\\Public Documents\\S.T.A.L.K.E.R. - Call of Pripyat\\savedgames\\}}" + - "{{Game data/saves|GOG.com|{{p|userprofile\\Documents}}\\Stalker-COP\\savedgames\\}}" + - "{{Game data/saves|Steam|{{P|game}}\\_appdata_\\savedgames\\}}" +"S.T.A.L.K.E.R.: Clear Sky": gog: 1207660603 pageId: 5510 steam: 20510 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Stalker-STCS\}}' - - '{{Game data/config|Steam|{{p|game}}\_appdata_\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Stalker-STCS\savedgames\}}' - - '{{Game data/saves|Steam|{{p|game}}\_appdata_\savedgames\}}' -'S.T.A.L.K.E.R.: Lost Alpha': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Stalker-STCS\\}}" + - "{{Game data/config|Steam|{{p|game}}\\_appdata_\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Stalker-STCS\\savedgames\\}}" + - "{{Game data/saves|Steam|{{p|game}}\\_appdata_\\savedgames\\}}" +"S.T.A.L.K.E.R.: Lost Alpha": pageId: 16928 templates: - - '{{Game data/config|Windows|{{p|game}}\appdata\user.ltx}}' - - '{{Game data/saves|Windows|{{p|game}}\appdata\savedgames}}' -'S.T.A.L.K.E.R.: Shadow of Chernobyl': + - "{{Game data/config|Windows|{{p|game}}\\appdata\\user.ltx}}" + - "{{Game data/saves|Windows|{{p|game}}\\appdata\\savedgames}}" +"S.T.A.L.K.E.R.: Shadow of Chernobyl": gog: 1207660573 pageId: 72 steam: 4500 steamSide: - 4830 templates: - - '{{Game data/config|Windows|{{p|public}}\Documents\stalker-shoc\}}' - - '{{Game data/config|GOG.com|{{P|userprofile\Documents}}\Stalker-SHOC\}}' - - '{{Game data/saves|Windows|{{p|public}}\Documents\stalker-shoc\savedgames\}}' - - '{{Game data/saves|GOG.com|{{P|userprofile\Documents}}\Stalker-SHOC\savedgames\}}' - - '{{Game data/saves|Steam|{{P|game}}\_appdata_\savedgames\}}' + - "{{Game data/config|Windows|{{p|public}}\\Documents\\stalker-shoc\\}}" + - "{{Game data/config|GOG.com|{{P|userprofile\\Documents}}\\Stalker-SHOC\\}}" + - "{{Game data/saves|Windows|{{p|public}}\\Documents\\stalker-shoc\\savedgames\\}}" + - "{{Game data/saves|GOG.com|{{P|userprofile\\Documents}}\\Stalker-SHOC\\savedgames\\}}" + - "{{Game data/saves|Steam|{{P|game}}\\_appdata_\\savedgames\\}}" S.T.R.E.T.C.H.: pageId: 93867 steam: 859610 @@ -137922,28 +134288,28 @@ S.U.B.: S.W.I.N.E.: pageId: 75200 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/saves|Windows|{{P|game}}\savegames}}' + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{P|game}}\\savegames}}" S.W.I.N.E. HD Remaster: gog: 1642851094 pageId: 128316 steam: 944010 templates: - - '{{Game data/config|Windows|{{p|LOCALAPPDATA}}\Kite Games\Swine\options.ini}}' - - '{{Game data/saves|Windows|{{p|LOCALAPPDATA}}\Kite Games\Swine\savegames}}' + - "{{Game data/config|Windows|{{p|LOCALAPPDATA}}\\Kite Games\\Swine\\options.ini}}" + - "{{Game data/saves|Windows|{{p|LOCALAPPDATA}}\\Kite Games\\Swine\\savegames}}" S4 League: pageId: 29705 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' + - "{{Game data/config|Windows|{{p|game}}\\}}" S40 Racing: pageId: 152551 -'S: Lost Chapters': +"S: Lost Chapters": pageId: 188878 steam: 2506890 SABAT Fight Arena: pageId: 130626 steam: 1043370 -'SAD RPG: A Social Anxiety Role Playing Game': +"SAD RPG: A Social Anxiety Role Playing Game": pageId: 151341 steam: 857760 SAKeRETSU: @@ -137963,14 +134329,12 @@ SAS Anti-Terror Force: SAS Secure Tomorrow: pageId: 25007 templates: - - '{{Game data/config|Windows|{{p|public}}\Documents\City Interactive\SAS Secure Tomorrow\settings.cfg}}' - - >- - {{Game data/saves|Windows|{{p|public}}\Documents\City Interactive\SAS Secure - Tomorrow\Save\Profile000\SinglePlayer}} + - "{{Game data/config|Windows|{{p|public}}\\Documents\\City Interactive\\SAS Secure Tomorrow\\settings.cfg}}" + - "{{Game data/saves|Windows|{{p|public}}\\Documents\\City Interactive\\SAS Secure Tomorrow\\Save\\Profile000\\SinglePlayer}}" SAS VS Zombies: pageId: 89510 steam: 822070 -'SAS: Zombie Assault 4': +"SAS: Zombie Assault 4": pageId: 74107 steam: 678800 SAWars: @@ -137979,55 +134343,55 @@ SAWars: SAWkoban: pageId: 77092 steam: 757350 -'SBK 2011: Superbike World Championship': +"SBK 2011: Superbike World Championship": pageId: 76806 SBK 22: pageId: 181568 steam: 1785910 SBK Generations: pageId: 76804 -'SBK X: Superbike World Championship': +"SBK X: Superbike World Championship": pageId: 76820 -'SBK-08: Superbike World Championship': +"SBK-08: Superbike World Championship": pageId: 76824 -'SBK-09: Superbike World Championship': +"SBK-09: Superbike World Championship": pageId: 76822 templates: - - '{{Game data/saves|Windows|{{p|appdata}}\BlackBean\SBK09\}}' + - "{{Game data/saves|Windows|{{p|appdata}}\\BlackBean\\SBK09\\}}" SBK16 Official Mobile Game: pageId: 169680 -'SBX: Invasion': +"SBX: Invasion": pageId: 47699 steam: 371620 SC2VN - The eSports Visual Novel: pageId: 37565 steam: 404480 templates: - - '{{Game data/config|Windows|{{p|game}}\renpy\config.py}}' - - '{{Game data/saves|Windows|{{p|appdata}}\RenPy\SC2VN-1424038548\}}' + - "{{Game data/config|Windows|{{p|game}}\\renpy\\config.py}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\RenPy\\SC2VN-1424038548\\}}" SCAR Squadra Corse Alfa Romeo: pageId: 4212 templates: - - '{{Game data/config|Windows|{{P|game}}}}' - - '{{Game data/saves|Windows|{{p|game}}\saves}}' + - "{{Game data/config|Windows|{{P|game}}}}" + - "{{Game data/saves|Windows|{{p|game}}\\saves}}" SCARF (Isaac James): pageId: 137332 steam: 844740 SCATter: pageId: 127357 steam: 1014710 -'SCHAR: Blue Shield Alliance': +"SCHAR: Blue Shield Alliance": pageId: 48537 steam: 342240 -'SCIENCE SHOW VR : THE ABYSS': +"SCIENCE SHOW VR : THE ABYSS": pageId: 155580 steam: 1214050 SCP - Containment Breach: pageId: 14064 templates: - - '{{Game data/config|Windows|{{P|game}}\options.ini}}' - - '{{Game data/saves|Windows|{{P|game}}\Saves}}' -'SCP - Wandering Around: The Will of a Single Tale, Part 1': + - "{{Game data/config|Windows|{{P|game}}\\options.ini}}" + - "{{Game data/saves|Windows|{{P|game}}\\Saves}}" +"SCP - Wandering Around: The Will of a Single Tale, Part 1": pageId: 127750 renamedFrom: - 【SCP】器関ノ彷徨 -The will of a single Tale- 第1部 @@ -138038,94 +134402,94 @@ SCP 087. Re: SCP Area 8: pageId: 80707 steam: 648220 -'SCP-069-J: The sisters of Cheyenne Point': +"SCP-069-J: The sisters of Cheyenne Point": pageId: 142879 SCP-087: pageId: 162837 templates: - - '{{Game data/config|Windows|{{p|game}}\SCP087_Data}}' - - '{{Game data/config|OS X|{{p|game}}}}' + - "{{Game data/config|Windows|{{p|game}}\\SCP087_Data}}" + - "{{Game data/config|OS X|{{p|game}}}}" SCP-087 VR Survivor: pageId: 127589 steam: 808220 SCP-087-B: pageId: 92494 templates: - - '{{Game data/config|Windows|{{p|game}}\options.ini}}' -'SCP-087: Recovered Document': + - "{{Game data/config|Windows|{{p|game}}\\options.ini}}" +"SCP-087: Recovered Document": pageId: 78534 steam: 765180 SCP022: pageId: 127085 steam: 1009990 -'SCP: Blackout': +"SCP: Blackout": pageId: 122450 steam: 963400 -'SCP: Containment Breach Multiplayer': +"SCP: Containment Breach Multiplayer": pageId: 172781 steam: 1782380 -'SCP: Containment Breach Remastered': +"SCP: Containment Breach Remastered": pageId: 180477 steam: 2090230 templates: - - '{{Game data/saves|Windows|{{p|game}}\Saves\}}' -'SCP: Containment Breach Unity Edition': + - "{{Game data/saves|Windows|{{p|game}}\\Saves\\}}" +"SCP: Containment Breach Unity Edition": pageId: 90861 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\Aerie Gaming Studios\SCP Unity\Config\settings.ini}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Aerie Gaming Studios\SCP Unity\Saves\}}' -'SCP: Daybreak': + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Aerie Gaming Studios\\SCP Unity\\Config\\settings.ini}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Aerie Gaming Studios\\SCP Unity\\Saves\\}}" +"SCP: Daybreak": pageId: 179919 steam: 2077180 templates: - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\2077180}}' -'SCP: Derelict - SciFi First Person Shooter': + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\2077180}}" +"SCP: Derelict - SciFi First Person Shooter": pageId: 122217 steam: 951030 -'SCP: Escape Together': +"SCP: Escape Together": pageId: 163679 steam: 1394270 -'SCP: Facility Manager': +"SCP: Facility Manager": pageId: 163681 steam: 1222490 -'SCP: Fragmented Minds': +"SCP: Fragmented Minds": pageId: 163683 steam: 1184790 -'SCP: Labrat': +"SCP: Labrat": pageId: 163688 steam: 1402020 -'SCP: Nine-Tailed Fox': +"SCP: Nine-Tailed Fox": pageId: 178939 steam: 1304510 templates: - - '{{Game data/config|Windows|{{p|appdata}}\scpntf\options.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\Saves}}' -'SCP: Nukalypse': + - "{{Game data/config|Windows|{{p|appdata}}\\scpntf\\options.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\Saves}}" +"SCP: Nukalypse": pageId: 163690 steam: 947940 -'SCP: One More Life': +"SCP: One More Life": pageId: 163677 steam: 1221890 -'SCP: Pandemic': +"SCP: Pandemic": pageId: 127081 steam: 872670 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Pandemic\Saved\}}' -'SCP: Recontainment': + - "{{Game data/config|Windows|{{p|localappdata}}\\Pandemic\\Saved\\}}" +"SCP: Recontainment": pageId: 163692 steam: 1249520 -'SCP: Resonance': +"SCP: Resonance": pageId: 148629 renamedFrom: - - 'Scp: Resonance' + - "Scp: Resonance" steam: 1151720 -'SCP: Secret Laboratory': +"SCP: Secret Laboratory": pageId: 78451 steam: 700330 templates: - - '{{Game data/config|Windows|{{p|appdata}}\SCP Secret Laboratory}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Hubert Moszka\SCP_ Secret Laboratory}}' -'SCP: The Foundation': + - "{{Game data/config|Windows|{{p|appdata}}\\SCP Secret Laboratory}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Hubert Moszka\\SCP_ Secret Laboratory}}" +"SCP: The Foundation": pageId: 163694 steam: 1353100 SCRAP RUSH!!: @@ -138141,10 +134505,8 @@ SD Gundam Battle Alliance: pageId: 175575 steam: 824550 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\SDGundamBA\Saved\Config\WindowsNoEditor\}}' - - >- - {{Game data/saves|Windows|{{p|localappdata}}\Bandai Namco Entertainment\SD GUNDAM BATTLE - ALLIANCE\Saved\SaveGames\{{p|uid}}\}} + - "{{Game data/config|Windows|{{p|localappdata}}\\SDGundamBA\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Bandai Namco Entertainment\\SD GUNDAM BATTLE ALLIANCE\\Saved\\SaveGames\\{{p|uid}}\\}}" SD Gundam G Generation Cross Rays: pageId: 148377 steam: 728530 @@ -138152,12 +134514,8 @@ SD Shin Kamen Rider Rumble: pageId: 187171 steam: 1953070 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\appdata\locallow}}\BANDAI NAMCO Entertainment Inc_\SD Shin Kamen Rider - Rumble\}} - - >- - {{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\BANDAI NAMCO Entertainment Inc_\SD Shin Kamen Rider - Rumble\(64BitSteamID)}} + - "{{Game data/config|Windows|{{p|userprofile\\appdata\\locallow}}\\BANDAI NAMCO Entertainment Inc_\\SD Shin Kamen Rider Rumble\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\BANDAI NAMCO Entertainment Inc_\\SD Shin Kamen Rider Rumble\\(64BitSteamID)}}" SE VR World Demo: pageId: 144769 steam: 1142180 @@ -138167,10 +134525,10 @@ SEAL Team 12: SELF: pageId: 136921 steam: 1074170 -'SEN: Seven Eight Nine': +"SEN: Seven Eight Nine": pageId: 154136 steam: 1170910 -'SENSEs: Midnight': +"SENSEs: Midnight": pageId: 179120 steam: 1664430 SEPTEMBER 1999: @@ -138209,7 +134567,7 @@ SHINRAI - Broken Beyond Despair: pageId: 36722 steam: 499910 templates: - - '{{Game data/config|Windows|{{P|appdata}}\renpy\SHINRAI - Broken Beyond Despair-1413934444\persistent}}' + - "{{Game data/config|Windows|{{P|appdata}}\\renpy\\SHINRAI - Broken Beyond Despair-1413934444\\persistent}}" SHNIPERS: pageId: 145039 steam: 975520 @@ -138234,7 +134592,7 @@ SK8: SLEIGHT - Nerve Wracking Espionage Party Game: pageId: 122530 steam: 953110 -'SLI-FI: 2D Planet Platformer': +"SLI-FI: 2D Planet Platformer": pageId: 68895 steam: 668230 SLICE BACK: @@ -138256,15 +134614,15 @@ SNK 40th Anniversary Collection: pageId: 138695 steam: 865940 templates: - - '{{Game data/config|Windows|{{p|appdata}}\SNK40thAnniversaryCollection\Settings.plist}}' - - '{{Game data/saves|Windows|{{p|appdata}}\SNK40thAnniversaryCollection\}}' -'SNK Heroines: Tag Team Frenzy': + - "{{Game data/config|Windows|{{p|appdata}}\\SNK40thAnniversaryCollection\\Settings.plist}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\SNK40thAnniversaryCollection\\}}" +"SNK Heroines: Tag Team Frenzy": pageId: 128902 steam: 794580 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\SNK HEROINES\graphics_option.json}}' - - '{{Game data/saves|Windows|{{p|steam}}\userdata\{{p|uid}}\794580\remote\game\}}' -'SNK vs. Capcom: The Match of the Millennium': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\SNK HEROINES\\graphics_option.json}}" + - "{{Game data/saves|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\794580\\remote\\game\\}}" +"SNK vs. Capcom: The Match of the Millennium": pageId: 171865 steam: 1575670 SNUSE 221: @@ -138273,7 +134631,7 @@ SNUSE 221: SOF - RAIDERS: pageId: 125519 steam: 1002670 -'SOL: Exodus': +"SOL: Exodus": pageId: 40839 steam: 200410 SOMA: @@ -138281,12 +134639,12 @@ SOMA: pageId: 27531 steam: 282140 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Soma\Main\}}' - - '{{Game data/config|OS X|{{P|osxhome}}/Library/Application Support/Frictional Games/Soma/}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/frictionalgames/Soma/Main/}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Soma\Main\{{P|uid}}\}}' - - '{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/Frictional Games/Soma/{{P|uid}}/}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/frictionalgames/Soma/Main/{{P|uid}}/}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Soma\\Main\\}}" + - "{{Game data/config|OS X|{{P|osxhome}}/Library/Application Support/Frictional Games/Soma/}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/frictionalgames/Soma/Main/}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Soma\\Main\\{{P|uid}}\\}}" + - "{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/Frictional Games/Soma/{{P|uid}}/}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/frictionalgames/Soma/Main/{{P|uid}}/}}" SOMOS: pageId: 113064 steam: 706510 @@ -138296,19 +134654,19 @@ SOS: SOS Atlas: pageId: 99756 steam: 781380 -'SOS: Special Operative Stories': +"SOS: Special Operative Stories": pageId: 53698 steam: 501410 SOUNDART: pageId: 154107 steam: 1144460 -'SOYF: Shit On Your Friends': +"SOYF: Shit On Your Friends": pageId: 63343 steam: 648880 SP!TE: pageId: 107632 steam: 918850 -'SPACERIFT: Arcanum System': +"SPACERIFT: Arcanum System": pageId: 150802 steam: 1148480 SQR: @@ -138323,14 +134681,14 @@ SQR 3: SQR 4: pageId: 134678 steam: 1073010 -'SRC: Sprint Robot Championship': +"SRC: Sprint Robot Championship": pageId: 108942 steam: 831530 -'SRD: Super Real Darwin': +"SRD: Super Real Darwin": gog: 1812062516 pageId: 166912 steam: 1499400 -'SRX: The Game': +"SRX: The Game": pageId: 180864 steam: 1542790 SShield Reborn: @@ -138352,9 +134710,9 @@ STATIONflow: pageId: 156129 steam: 1122120 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\SOFTWARE\DMM GAMES\STATIONflow}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\DMM GAMES\STATIONflow\}}' -'STE: Save the Earth': + - "{{Game data/config|Windows|{{P|hkcu}}\\SOFTWARE\\DMM GAMES\\STATIONflow}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\DMM GAMES\\STATIONflow\\}}" +"STE: Save the Earth": pageId: 90526 steam: 823280 STEELPAW: @@ -138366,7 +134724,7 @@ STONE: STORM AREA 51 ❤️ CUTE ALIEN GIRL EDITION: pageId: 141886 steam: 1125490 -'STORM AREA 51: AYY LMAO EDITION': +"STORM AREA 51: AYY LMAO EDITION": pageId: 144345 steam: 1124660 STRASHILKA: @@ -138397,8 +134755,8 @@ SUGURI: pageId: 31239 steam: 262240 templates: - - '{{Game data/config|Windows|{{p|game}}\config.dat}}' - - '{{Game data/saves|Windows|{{p|game}}\system.dat|{{p|game}}\record.dat}}' + - "{{Game data/config|Windows|{{p|game}}\\config.dat}}" + - "{{Game data/saves|Windows|{{p|game}}\\system.dat|{{p|game}}\\record.dat}}" SUM: pageId: 102675 steam: 899100 @@ -138418,30 +134776,30 @@ SURV1V3: pageId: 75673 steam: 722180 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Survive\Saved\Config}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Survive\Saved\SaveGames}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Survive\\Saved\\Config}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Survive\\Saved\\SaveGames}}" SUSPENSE: pageId: 120769 steam: 370330 -'SVRVIVE: The Deus Helix': +"SVRVIVE: The Deus Helix": pageId: 39372 steam: 509540 SWAM: pageId: 54665 steam: 565650 -'SWAT 3: Close Quarters Battle': +"SWAT 3: Close Quarters Battle": gog: 1207658946 pageId: 13256 steam: 560370 templates: - - '{{Game data/config|Windows|{{p|game}}\Swat.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\game\careers}}' + - "{{Game data/config|Windows|{{p|game}}\\Swat.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\game\\careers}}" SWAT 4: gog: 1409964317 pageId: 685 templates: - - '{{Game data/config|Windows|{{p|game}}\Content\System\Swat4.ini|{{p|game}}\ContentExpansion\System\Swat4X.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\Content\System\Campaign.ini|{{p|game}}\ContentExpansion\System\Campaign.ini}}' + - "{{Game data/config|Windows|{{p|game}}\\Content\\System\\Swat4.ini|{{p|game}}\\ContentExpansion\\System\\Swat4X.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\Content\\System\\Campaign.ini|{{p|game}}\\ContentExpansion\\System\\Campaign.ini}}" SWEATER? OK! - The Dilogy: pageId: 153758 steam: 1188240 @@ -138466,18 +134824,18 @@ SZone-Online: SaGa Frontier Remastered: pageId: 165469 steam: 1295270 -'SaGa Scarlet Grace: Ambitions': +"SaGa Scarlet Grace: Ambitions": pageId: 152025 steam: 686720 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\_Company\SaGa SCARLET GRACE: AMBITIONS}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\SaGaScarletGraceEn\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\_Company\\SaGa SCARLET GRACE: AMBITIONS}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\SaGaScarletGraceEn\\}}" Sabbat of the Witch: gog: 1814107259 pageId: 100610 steam: 888790 templates: - - '{{Game data/saves|Windows|{{p|game}}\SavesDir\*.sav}}' + - "{{Game data/saves|Windows|{{p|game}}\\SavesDir\\*.sav}}" Saber Fight VR: pageId: 155827 steam: 1208770 @@ -138489,42 +134847,42 @@ Sable: pageId: 97373 steam: 757310 templates: - - '{{Game data/config|Windows|{{p|USERPROFILE\AppData\LocalLow}}\Shedworks\Sable}}' - - '{{Game data/saves|Windows|{{p|USERPROFILE\AppData\LocalLow}}\Shedworks\Sable}}' - - '{{Game data/saves|Microsoft Store|{{P|localappdata}}\Packages\RawFury.SableXbox_9s0pnehqffj7t\SystemAppData}}' -'Sable Maze: Forbidden Garden': + - "{{Game data/config|Windows|{{p|USERPROFILE\\AppData\\LocalLow}}\\Shedworks\\Sable}}" + - "{{Game data/saves|Windows|{{p|USERPROFILE\\AppData\\LocalLow}}\\Shedworks\\Sable}}" + - "{{Game data/saves|Microsoft Store|{{P|localappdata}}\\Packages\\RawFury.SableXbox_9s0pnehqffj7t\\SystemAppData}}" +"Sable Maze: Forbidden Garden": pageId: 90255 steam: 826440 -'Sable Maze: Norwich Caves': +"Sable Maze: Norwich Caves": pageId: 73800 renamedFrom: - - 'Sable Maze: Norwich Caves Collector''s Edition' + - "Sable Maze: Norwich Caves Collector's Edition" steam: 729910 -'Sable Maze: Sullivan River': +"Sable Maze: Sullivan River": pageId: 55297 renamedFrom: - - 'Sable Maze: Sullivan River Collector''s Edition' + - "Sable Maze: Sullivan River Collector's Edition" steam: 569270 -'Sable Maze: Twelve Fears': +"Sable Maze: Twelve Fears": pageId: 114400 steam: 941050 -Sable's Grimoire: +"Sable's Grimoire": pageId: 87585 steam: 717850 templates: - - '{{Game data/config|Windows|{{P|appdata}}\renpy\SablesGrimoire-1507418173\persistent}}' - - '{{Game data/saves|Windows|{{P|appdata}}\renpy\SablesGrimoire-1507418173\*.save}}' -'Sabotain: Break The Rules': + - "{{Game data/config|Windows|{{P|appdata}}\\renpy\\SablesGrimoire-1507418173\\persistent}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\renpy\\SablesGrimoire-1507418173\\*.save}}" +"Sabotain: Break The Rules": pageId: 166780 templates: - - '{{Game data/config|Windows|{{p|game}}\settings}}' - - '{{Game data/saves|Windows|{{p|game}}\save}}' + - "{{Game data/config|Windows|{{p|game}}\\settings}}" + - "{{Game data/saves|Windows|{{p|game}}\\save}}" Sabotaj: pageId: 166931 steam: 1436900 Saboteur II: pageId: 169530 -'Saboteur II: Avenging Angel': +"Saboteur II: Avenging Angel": gog: 1415531161 pageId: 141718 steam: 1119030 @@ -138546,41 +134904,38 @@ Sabres of Infinity: Sabreurs - A Noble Duel: pageId: 110102 steam: 921840 -'Sabrina the Teenage Witch: Brat Attack': +"Sabrina the Teenage Witch: Brat Attack": pageId: 126584 -'Sabrina the Teenage Witch: Spellbound': +"Sabrina the Teenage Witch: Spellbound": pageId: 126581 Sack of Bots: pageId: 138721 steam: 1084930 -'Sackboy: A Big Adventure': +"Sackboy: A Big Adventure": pageId: 181947 steam: 1599660 steamSide: - - 2228240 - - 2216230 - - 2206302 - - 2206301 - - 2206300 - 2193240 - 2193241 + - 2206300 + - 2206301 + - 2206302 + - 2216230 + - 2228240 - 2232501 templates: - - >- - {{Game data/config|Steam|{{P|userprofile}}\Saved Games\Sackboy\Steam\Settings{{note|Only - GameUserSettings.ini can be edited, the other files are - encrypted.}}|{{p|localappdata}}\GingerBread\Saved\Config\WindowsNoEditor\}} - - '{{Game data/saves|Steam|{{P|userprofile}}\Saved Games\Sackboy\Steam\SaveGames}}' -'Sacra Terra: Angelic Night': + - "{{Game data/config|Steam|{{P|userprofile}}\\Saved Games\\Sackboy\\Steam\\Settings{{note|Only GameUserSettings.ini can be edited, the other files are encrypted.}}|{{p|localappdata}}\\GingerBread\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Steam|{{P|userprofile}}\\Saved Games\\Sackboy\\Steam\\SaveGames}}" +"Sacra Terra: Angelic Night": pageId: 47407 steam: 344440 -'Sacra Terra: Kiss of Death': +"Sacra Terra: Kiss of Death": pageId: 56922 steam: 560760 Sacraboar: pageId: 41203 steam: 40500 -'Sacralith: The Archer''s Tale': +"Sacralith: The Archer's Tale": pageId: 70385 steam: 704360 Sacrament: @@ -138591,9 +134946,9 @@ Sacred: pageId: 2066 steam: 12320 templates: - - '{{Game data/config|Windows|{{p|game}}\SETTINGS.CFG}}' - - '{{Game data/saves|Windows|{{p|game}}\save}}' -'Sacred 2: Fallen Angel': + - "{{Game data/config|Windows|{{p|game}}\\SETTINGS.CFG}}" + - "{{Game data/saves|Windows|{{p|game}}\\save}}" +"Sacred 2: Fallen Angel": gog: 1207665233 pageId: 2079 steam: 225640 @@ -138601,8 +134956,8 @@ Sacred: - 22700 - 200060 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Ascaron Entertainment\Sacred 2}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\Saved Games\Ascaron Entertainment\Sacred 2}}' + - "{{Game data/config|Windows|{{p|appdata}}\\Ascaron Entertainment\\Sacred 2}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Saved Games\\Ascaron Entertainment\\Sacred 2}}" Sacred 3: pageId: 16062 steam: 247950 @@ -138616,8 +134971,8 @@ Sacred 3: - 279114 - 313070 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\Saved Games\sacred3.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\autocloud\save\}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\Saved Games\\sacred3.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\autocloud\\save\\}}" Sacred Almanac Traces of Greed: pageId: 54365 steam: 544650 @@ -138630,8 +134985,8 @@ Sacred Citadel: - 222382 - 222383 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Sacred Citadel\renderconfig.txt}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Sacred Citadel\{{p|uid}}\user.sav}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Sacred Citadel\\renderconfig.txt}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Sacred Citadel\\{{p|uid}}\\user.sav}}" Sacred Earth - Promise: pageId: 114242 steam: 938100 @@ -138669,15 +135024,15 @@ Sacrifice: pageId: 4180 steam: 38440 templates: - - '{{Game data/config|Windows|{{p|hklm}}\SOFTWARE\{{p|wow64}}\Shiny Entertainment\Sacrifice\Options}}' - - '{{Game data/saves|Windows|{{p|game}}\Saves}}' + - "{{Game data/config|Windows|{{p|hklm}}\\SOFTWARE\\{{p|wow64}}\\Shiny Entertainment\\Sacrifice\\Options}}" + - "{{Game data/saves|Windows|{{p|game}}\\Saves}}" Sacrifice Dungeon: pageId: 80891 steam: 785950 Sacrifice Your Friends: pageId: 145375 steam: 1050160 -'Sad :'')': +"Sad :')": pageId: 144162 steam: 1126510 Sad City 42: @@ -138686,7 +135041,7 @@ Sad City 42: Sadboy: pageId: 125865 steam: 1008910 -'Saddies: Attack!!': +"Saddies: Attack!!": pageId: 188284 Safari Grounds - The Wilpattu Leopard: pageId: 149248 @@ -138708,31 +135063,31 @@ Safe Not Safe: steam: 728770 Safecracker: pageId: 151679 -'Safecracker: The Ultimate Puzzle Adventure': +"Safecracker: The Ultimate Puzzle Adventure": pageId: 51096 steam: 3260 templates: - - '{{Game data/config|Windows|{{P|game}}\config.ini|{{P|game}}\Users\Profile1\config.ini}}' - - '{{Game data/saves|Windows|{{P|game}}\Users\Profile1\Save.*}}' -'Safety Driving Simulator: Car': + - "{{Game data/config|Windows|{{P|game}}\\config.ini|{{P|game}}\\Users\\Profile1\\config.ini}}" + - "{{Game data/saves|Windows|{{P|game}}\\Users\\Profile1\\Save.*}}" +"Safety Driving Simulator: Car": pageId: 43195 steam: 450590 -'Safety Driving Simulator: Motorbike': +"Safety Driving Simulator: Motorbike": pageId: 43193 steam: 450600 Safety First!: pageId: 38799 steam: 497700 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\SOFTWARE\jco\Safety first!\}}' - - '{{Game data/saves|Windows|{{P|hkcu}}\SOFTWARE\jco\Safety first!\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\SOFTWARE\\jco\\Safety first!\\}}" + - "{{Game data/saves|Windows|{{P|hkcu}}\\SOFTWARE\\jco\\Safety first!\\}}" Saga: pageId: 46985 steam: 376140 Saga of the North Wind: pageId: 53409 steam: 552720 -'Saga of the Void: Admirals': +"Saga of the Void: Admirals": pageId: 51433 steam: 535410 Sage 3D: @@ -138745,15 +135100,15 @@ Sagebrush: pageId: 95365 steam: 864100 templates: - - '{{Game data/saves|Windows|none}}' + - "{{Game data/saves|Windows|none}}" Sago Mini Fairy Tales: pageId: 182747 Sail Forth: pageId: 130729 steam: 1031460 templates: - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Festive Vector/Sail Forth/}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Festive Vector/Sail Forth/}}' + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Festive Vector/Sail Forth/}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Festive Vector/Sail Forth/}}" Sail Ships: pageId: 94729 steam: 861510 @@ -138773,7 +135128,7 @@ Saint Emiliana: Saint George: pageId: 73312 steam: 701630 -Saint Hazel's Horsepital: +"Saint Hazel's Horsepital": pageId: 132627 steam: 1053560 Saint Kotar: @@ -138781,23 +135136,23 @@ Saint Kotar: pageId: 162655 steam: 1358530 templates: - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Red Martyr/Saint Kotar/Saves}}' -'Saint Kotar: The Crawling Man': + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Red Martyr/Saint Kotar/Saves}}" +"Saint Kotar: The Crawling Man": gog: 1514441260 pageId: 183430 steam: 2186240 -'Saint Kotar: The Yellow Mask': +"Saint Kotar: The Yellow Mask": pageId: 102485 steam: 868770 Saint Paul Pre-Alpha: pageId: 127463 steam: 1013680 -'Saint Seiya: Soldiers'' Soul': +"Saint Seiya: Soldiers' Soul": pageId: 29887 steam: 348710 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\BANDAI NAMCO Entertainment\Saint Seiya Soldiers'' Soul\}}' - - '{{Game data/saves|Windows|{{p|steam}}\userdata\{{p|uid}}\348710\remote\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\BANDAI NAMCO Entertainment\\Saint Seiya Soldiers' Soul\\}}" + - "{{Game data/saves|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\348710\\remote\\}}" Saint Slaughter X Days: pageId: 98332 steam: 846670 @@ -138805,116 +135160,105 @@ Saints Row: pageId: 170993 steam: 742420 templates: - - >- - {{Game - data/config|Windows|{{P|game}}/SaintsRow/sr5/display.ini|{{P|userprofile}}/AppData/LocalLow/THQNordic/SaintsRow/PlayerConfig.json}} - - >- - {{Game - data/saves|Windows|{{P|game}}/sr5/_cloudfolder/saves/SR/|{{P|game}}/sr5/_cloudfolder/saves/SR/*.met_pc|{{P|game}}/sr5/_cloudfolder/saves/SR/*.sf_pc|{{P|game}}/sr5/_cloudfolder/saves/SR/*.vdf}} + - "{{Game data/config|Windows|{{P|game}}/SaintsRow/sr5/display.ini|{{P|userprofile}}/AppData/LocalLow/THQNordic/SaintsRow/PlayerConfig.json}}" + - "{{Game data/saves|Windows|{{P|game}}/sr5/_cloudfolder/saves/SR/|{{P|game}}/sr5/_cloudfolder/saves/SR/*.met_pc|{{P|game}}/sr5/_cloudfolder/saves/SR/*.sf_pc|{{P|game}}/sr5/_cloudfolder/saves/SR/*.vdf}}" Saints Row 2: gog: 1430740458 pageId: 3315 steam: 9480 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\THQ\Saints Row 2\}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/volition/saintsrow2/AppData/Saints Row 2/}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\THQ\Saints Row 2\}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/volition/saintsrow2/AppData/Saints Row 2/}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\THQ\\Saints Row 2\\}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/volition/saintsrow2/AppData/Saints Row 2/}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\THQ\\Saints Row 2\\}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/volition/saintsrow2/AppData/Saints Row 2/}}" Saints Row IV: gog: 2037689757 pageId: 7985 steam: 206420 steamSide: - - 314580 - - 247307 - 238302 + - 247307 + - 314580 templates: - - '{{Game data/config|Windows|{{P|game}}/display.ini}}' - - '{{Game data/config|Microsoft Store|{{P|game}}/display.ini}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/vpltd/SaintsRow4/}}' - - '{{Game data/config|Steam|{{p|game}}/display.ini}}' - - '{{Game data/saves|Windows|{{P|game}}\_saves\}}' - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/206420/}}' -'Saints Row: Gat out of Hell': + - "{{Game data/config|Windows|{{P|game}}/display.ini}}" + - "{{Game data/config|Microsoft Store|{{P|game}}/display.ini}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/vpltd/SaintsRow4/}}" + - "{{Game data/config|Steam|{{p|game}}/display.ini}}" + - "{{Game data/saves|Windows|{{P|game}}\\_saves\\}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/206420/}}" +"Saints Row: Gat out of Hell": gog: 1978178686 gogSide: - 1945515431 pageId: 21941 steam: 301910 templates: - - '{{Game data/config|Windows|{{p|game}}/display.ini}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/vpltd/SaintsRow4GooH/}}' - - '{{Game data/config|Steam|{{p|game}}/display.ini}}' - - '{{Game data/saves|Windows|{{P|game}}/_saves/}}' - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/206420/}}' -'Saints Row: The Third': + - "{{Game data/config|Windows|{{p|game}}/display.ini}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/vpltd/SaintsRow4GooH/}}" + - "{{Game data/config|Steam|{{p|game}}/display.ini}}" + - "{{Game data/saves|Windows|{{P|game}}/_saves/}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/206420/}}" +"Saints Row: The Third": gog: 1430740694 pageId: 746 steam: 55230 steamSide: - - 901805 - - 55394 - - 55399 - - 55400 - - 55392 - - 55391 - - 55397 - - 55398 - - 55396 - - 55382 - - 55381 - 55380 - - 55389 - - 55388 - - 55390 + - 55381 + - 55382 + - 55385 - 55386 - 55387 - - 55395 - - 55385 + - 55388 + - 55389 + - 55390 + - 55391 + - 55392 - 55393 + - 55394 + - 55395 + - 55396 + - 55397 + - 55398 + - 55399 + - 55400 + - 901805 templates: - - '{{Game data/config|Windows|{{p|game}}\display.ini}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/vpltd/SaintsRow3/}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Saints Row The Third\}}' - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/55230/remote/}}' -'Saints Row: The Third Remastered': + - "{{Game data/config|Windows|{{p|game}}\\display.ini}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/vpltd/SaintsRow3/}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Saints Row The Third\\}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/55230/remote/}}" +"Saints Row: The Third Remastered": gog: 1435738629 pageId: 159014 steam: 978300 templates: - - >- - {{Game data/config|Epic Games Launcher| {{p|localappdata}}\Saints Row The Third\Remastered\sr3DEF_PROFILE | - {{p|game}}\display.ini }} - - >- - {{Game data/config|GOG.com| - {{P|localappdata}}\GOG.com\Galaxy\Applications\53610945248137475\Storage\Shared\Files\sr3DEF_PROFILE | - {{p|game}}\display.ini }} - - '{{Game data/config|Steam| {{P|steam}}\userdata\{{P|uid}}\978300\remote\sr3DEF_PROFILE | {{p|game}}\display.ini }}' - - '{{Game data/saves|Epic Games Launcher| {{p|localappdata}}\Saints Row The Third\Remastered\*.sr3s_pc }}' - - >- - {{Game data/saves|GOG.com| - {{p|localappdata}}\GOG.com\Galaxy\Applications\53610945248137475\Storage\Shared\Files\*.sr3s_pc }} - - '{{Game data/saves|Steam| {{P|steam}}\userdata\{{P|uid}}\978300\remote\*.sr3s_pc }}' + - "{{Game data/config|Epic Games Launcher| {{p|localappdata}}\\Saints Row The Third\\Remastered\\sr3DEF_PROFILE | {{p|game}}\\display.ini }}" + - "{{Game data/config|GOG.com| {{P|localappdata}}\\GOG.com\\Galaxy\\Applications\\53610945248137475\\Storage\\Shared\\Files\\sr3DEF_PROFILE | {{p|game}}\\display.ini }}" + - "{{Game data/config|Steam| {{P|steam}}\\userdata\\{{P|uid}}\\978300\\remote\\sr3DEF_PROFILE | {{p|game}}\\display.ini }}" + - "{{Game data/saves|Epic Games Launcher| {{p|localappdata}}\\Saints Row The Third\\Remastered\\*.sr3s_pc }}" + - "{{Game data/saves|GOG.com| {{p|localappdata}}\\GOG.com\\Galaxy\\Applications\\53610945248137475\\Storage\\Shared\\Files\\*.sr3s_pc }}" + - "{{Game data/saves|Steam| {{P|steam}}\\userdata\\{{P|uid}}\\978300\\remote\\*.sr3s_pc }}" Saints of Virtue: pageId: 91639 Saira: pageId: 51922 steam: 48900 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Nifflas\Saira\Settings.ini}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Nifflas\Saira\Savegames\}}' + - "{{Game data/config|Windows|{{p|appdata}}\\Nifflas\\Saira\\Settings.ini}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Nifflas\\Saira\\Savegames\\}}" Sairento VR: pageId: 55498 steam: 555880 -'Saku Saku: Love Blooms with the Cherry Blossoms': +"Saku Saku: Love Blooms with the Cherry Blossoms": pageId: 72710 steam: 691150 -'Sakuna: Of Rice and Ruin': +"Sakuna: Of Rice and Ruin": pageId: 165213 steam: 1356670 templates: - - '{{Game data/config|Windows|{{p|game}}\TaueConfig.json}}' - - '{{Game data/saves|Windows|{{p|game}}\dataWin\Savedata\*}}' + - "{{Game data/config|Windows|{{p|game}}\\TaueConfig.json}}" + - "{{Game data/saves|Windows|{{p|game}}\\dataWin\\Savedata\\*}}" Sakura Agent: pageId: 56790 steam: 575510 @@ -138922,18 +135266,16 @@ Sakura Angels: pageId: 33423 steam: 342380 templates: - - >- - {{Game data/config|Windows|{{P|game}}\game\saves\persistent|{{P|appdata}}\RenPy\Sakura - Angels-1413891429\persistent}} - - '{{Game data/config|OS X|{{p|osxhome}}/Library/RenPy/Sakura Angels-1413891429/persistent}}' - - '{{Game data/saves|Windows|{{P|game}}\game\saves\*.save|{{P|appdata}}\RenPy\Sakura Angels-1413891429\*.save}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/RenPy/Sakura Angels-1413891429/*.save}}' + - "{{Game data/config|Windows|{{P|game}}\\game\\saves\\persistent|{{P|appdata}}\\RenPy\\Sakura Angels-1413891429\\persistent}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/RenPy/Sakura Angels-1413891429/persistent}}" + - "{{Game data/saves|Windows|{{P|game}}\\game\\saves\\*.save|{{P|appdata}}\\RenPy\\Sakura Angels-1413891429\\*.save}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/RenPy/Sakura Angels-1413891429/*.save}}" Sakura Beach: pageId: 33442 steam: 377680 templates: - - '{{Game data/config|Windows|{{p|game}}\renpy\config.py}}' - - '{{Game data/saves|Windows|{{P|game}}\game\saves\|{{P|appdata}}\RenPy\Sakura_beach1499\}}' + - "{{Game data/config|Windows|{{p|game}}\\renpy\\config.py}}" + - "{{Game data/saves|Windows|{{P|game}}\\game\\saves\\|{{P|appdata}}\\RenPy\\Sakura_beach1499\\}}" Sakura Beach 2: pageId: 33446 steam: 407980 @@ -138943,7 +135285,7 @@ Sakura Clicker: pageId: 33440 steam: 383080 templates: - - '{{Game data/saves|Windows|{{p|appdata}}\Tap_Dungeon}}' + - "{{Game data/saves|Windows|{{p|appdata}}\\Tap_Dungeon}}" Sakura Cupid: pageId: 81635 steam: 733740 @@ -138957,17 +135299,17 @@ Sakura Dungeon: pageId: 33419 steam: 407330 templates: - - '{{Game data/config|Linux|{{P|linuxhome}}/.renpy/sakura_dungeon|{{P|game}}/game/saves}}' - - '{{Game data/saves|Windows|{{P|game}}\game\saves}}' + - "{{Game data/config|Linux|{{P|linuxhome}}/.renpy/sakura_dungeon|{{P|game}}/game/saves}}" + - "{{Game data/saves|Windows|{{P|game}}\\game\\saves}}" Sakura Fantasy Chapter 1: pageId: 33438 steam: 375200 templates: - - '{{Game data/config|Windows|{{P|game}}\game\saves\persistent|{{P|appdata}}\RenPy\Sakura_Fantasy1499\persistent}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/RenPy/Sakura_Fantasy1499/prersistent}}' - - '{{Game data/saves|Windows|{{P|game}}\game\saves\*.save|{{P|appdata}}\RenPy\Sakura_Fantasy1499\*.save}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/RenPy/Sakura_Fantasy1499/*.save}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.renpy/Sakura_Fantasy1499/*.save}}' + - "{{Game data/config|Windows|{{P|game}}\\game\\saves\\persistent|{{P|appdata}}\\RenPy\\Sakura_Fantasy1499\\persistent}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/RenPy/Sakura_Fantasy1499/prersistent}}" + - "{{Game data/saves|Windows|{{P|game}}\\game\\saves\\*.save|{{P|appdata}}\\RenPy\\Sakura_Fantasy1499\\*.save}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/RenPy/Sakura_Fantasy1499/*.save}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.renpy/Sakura_Fantasy1499/*.save}}" Sakura Fox Adventure: pageId: 148447 steam: 1157640 @@ -139002,7 +135344,7 @@ Sakura Nova: pageId: 51949 steam: 539670 templates: - - '{{Game data/saves|Windows|{{P|game}}\game\saves\*.save|{{P|appdata}}\RenPy\Sakura Nova-1468866552\*.save}}' + - "{{Game data/saves|Windows|{{P|game}}\\game\\saves\\*.save|{{P|appdata}}\\RenPy\\Sakura Nova-1468866552\\*.save}}" Sakura Sadist: pageId: 93884 steam: 813700 @@ -139013,12 +135355,8 @@ Sakura Santa: pageId: 33448 steam: 421700 templates: - - |- - {{Game data/config|Windows|{{P|game}}\game\saves\persistent| - {{P|appdata}}\RenPy\Sakura Santa-1446717813\persistent}} - - |- - {{Game data/saves|Windows|{{P|game}}\game\saves\*.save| - {{P|appdata}}\RenPy\Sakura Santa-1446717813\*.save}} + - "{{Game data/config|Windows|{{P|game}}\\game\\saves\\persistent|\n{{P|appdata}}\\RenPy\\Sakura Santa-1446717813\\persistent}}" + - "{{Game data/saves|Windows|{{P|game}}\\game\\saves\\*.save|\n{{P|appdata}}\\RenPy\\Sakura Santa-1446717813\\*.save}}" Sakura Shrine Girls: pageId: 36718 steam: 517000 @@ -139026,18 +135364,16 @@ Sakura Space: pageId: 51549 steam: 521500 templates: - - '{{Game data/saves|Windows|{{P|game}}\game\saves\*.save|{{P|appdata}}\RenPy\Sakura Space-1468866552\*.save}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.renpy/Sakura Space-1468866552/}}' + - "{{Game data/saves|Windows|{{P|game}}\\game\\saves\\*.save|{{P|appdata}}\\RenPy\\Sakura Space-1468866552\\*.save}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.renpy/Sakura Space-1468866552/}}" Sakura Spirit: pageId: 30339 steam: 313740 templates: - - >- - {{Game - data/config|Windows|{{P|game}}\game\saves\persistent|{{P|appdata}}\RenPy\Sakura_Spirit-1300954647\persistent}} - - '{{Game data/config|OS X|{{p|osxhome}}/Library/RenPy/Sakura_Spirit-1300954647/persistent}}' - - '{{Game data/saves|Windows|{{P|game}}\game\saves\*.save|{{P|appdata}}\RenPy\Sakura_Spirit-1300954647\*.save}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/RenPy/Sakura_Spirit-1300954647/*.save}}' + - "{{Game data/config|Windows|{{P|game}}\\game\\saves\\persistent|{{P|appdata}}\\RenPy\\Sakura_Spirit-1300954647\\persistent}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/RenPy/Sakura_Spirit-1300954647/persistent}}" + - "{{Game data/saves|Windows|{{P|game}}\\game\\saves\\*.save|{{P|appdata}}\\RenPy\\Sakura_Spirit-1300954647\\*.save}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/RenPy/Sakura_Spirit-1300954647/*.save}}" Sakura Succubus: pageId: 164690 steam: 1202310 @@ -139051,24 +135387,24 @@ Sakura Swim Club: pageId: 33444 steam: 402180 templates: - - '{{Game data/saves|Windows|{{P|game}}\game\saves\*.save|{{P|appdata}}\RenPy\Sakura_swim1499\*.save}}' + - "{{Game data/saves|Windows|{{P|game}}\\game\\saves\\*.save|{{P|appdata}}\\RenPy\\Sakura_swim1499\\*.save}}" Sakura Wars: pageId: 161943 templates: - - '{{Game data/config|Windows|{{p|game}}\SAVE\key.dat}}' - - '{{Game data/saves|Windows|{{p|game}}\SAVE\INDEX.DAT}}' -'Sakura Wars 2: Thou Shalt Not Die': + - "{{Game data/config|Windows|{{p|game}}\\SAVE\\key.dat}}" + - "{{Game data/saves|Windows|{{p|game}}\\SAVE\\INDEX.DAT}}" +"Sakura Wars 2: Thou Shalt Not Die": pageId: 162170 templates: - - '{{Game data/config|Windows|{{p|game}}\SAVEDATA\SAKURA2.SYS}}' - - '{{Game data/saves|Windows|{{p|game}}\SAVEDATA\SW2ADV*.*}}' -'Sakura Wars 3: Is Paris Burning?': + - "{{Game data/config|Windows|{{p|game}}\\SAVEDATA\\SAKURA2.SYS}}" + - "{{Game data/saves|Windows|{{p|game}}\\SAVEDATA\\SW2ADV*.*}}" +"Sakura Wars 3: Is Paris Burning?": pageId: 162304 templates: - - '{{Game data/config|Windows|{{p|game}}\SAVEDATA\SAKURA3.SYS}}' -'Sakura Wars 4: Fall in Love, Maidens': + - "{{Game data/config|Windows|{{p|game}}\\SAVEDATA\\SAKURA3.SYS}}" +"Sakura Wars 4: Fall in Love, Maidens": pageId: 162305 -'Sakura and Crit: The Mock Game': +"Sakura and Crit: The Mock Game": pageId: 104209 steam: 867590 Sakura no Mori † Dreamers: @@ -139085,7 +135421,7 @@ Sakuya Izayoi Gives You Advice And Dabs: Salad Fields: pageId: 149211 steam: 1162430 -'Salammbô: Battle for Carthage': +"Salammbô: Battle for Carthage": pageId: 50155 steam: 301670 Salary Man Escape: @@ -139097,8 +135433,8 @@ Saleblazers: pageId: 182352 steam: 1419850 templates: - - '{{Game data/config|Windows|{{P|userprofile\appdata\locallow}}\Airstrafe Interactive\Saleblazers}}' - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Airstrafe Interactive\Saleblazers\Saves}}' + - "{{Game data/config|Windows|{{P|userprofile\\appdata\\locallow}}\\Airstrafe Interactive\\Saleblazers}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Airstrafe Interactive\\Saleblazers\\Saves}}" Salio: pageId: 105283 steam: 875810 @@ -139107,14 +135443,14 @@ Sally Face: pageId: 52607 steam: 541570 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\Steve Gabry\Sally Face}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Steve Gabry/Sally Face/prefs}}' -Sally's Law: + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Steve Gabry\\Sally Face}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Steve Gabry/Sally Face/prefs}}" +"Sally's Law": pageId: 36838 steam: 512230 templates: - - '{{Game data/saves|Windows|{{P|game}}\SaveData{{note|This isn''t a folder, the file SaveData has no extension}}}}' -'Sally''s Salon: Kiss & Make-Up': + - "{{Game data/saves|Windows|{{P|game}}\\SaveData{{note|This isn't a folder, the file SaveData has no extension}}}}" +"Sally's Salon: Kiss & Make-Up": pageId: 99420 steam: 878520 Salmon Ninja: @@ -139133,7 +135469,7 @@ Salt: pageId: 34697 steam: 327860 templates: - - '{{Game data/saves|Windows|{{p|game}}\SaveData}}' + - "{{Game data/saves|Windows|{{p|game}}\\SaveData}}" Salt Lake 2002: pageId: 89765 Salt Thrust: @@ -139143,18 +135479,18 @@ Salt and Sacrifice: pageId: 172314 steam: 1437400 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\Salt and Sacrifice\config}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\Salt and Sacrifice\savedata}}' + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\Salt and Sacrifice\\config}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\Salt and Sacrifice\\savedata}}" Salt and Sanctuary: pageId: 33202 steam: 283640 templates: - - '{{Game data/config|Windows|{{P|game}}\config\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/SaltAndSanctuary/}}' - - '{{Game data/config|Linux|{{P|xdgconfighome}}/SaltAndSanctuary/}}' - - '{{Game data/saves|Windows|{{P|game}}\savedata\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/SaltAndSanctuary/}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/SaltAndSanctuary/}}' + - "{{Game data/config|Windows|{{P|game}}\\config\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/SaltAndSanctuary/}}" + - "{{Game data/config|Linux|{{P|xdgconfighome}}/SaltAndSanctuary/}}" + - "{{Game data/saves|Windows|{{P|game}}\\savedata\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/SaltAndSanctuary/}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/SaltAndSanctuary/}}" Salt the Earth: pageId: 137066 steam: 1030740 @@ -139180,17 +135516,15 @@ Salvation Prophecy: pageId: 31558 steam: 248450 templates: - - >- - {{Game data/config|Windows|{{p|localappdata}}\Salvation Prophecy\ogre.cfg|{{p|userprofile\Documents}}\Salvation - Prophecy\Settings\}} - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Salvation Prophecy\Saved Games\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Salvation Prophecy\\ogre.cfg|{{p|userprofile\\Documents}}\\Salvation Prophecy\\Settings\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Salvation Prophecy\\Saved Games\\}}" Salvation in Corruption: pageId: 75469 steam: 730890 Salvator: pageId: 82292 steam: 795920 -'Sam & Dan: Floaty Flatmates': +"Sam & Dan: Floaty Flatmates": pageId: 123878 steam: 978270 Sam & Max Hit the Road: @@ -139198,23 +135532,19 @@ Sam & Max Hit the Road: pageId: 21213 steam: 355170 templates: - - '{{Game data/config|DOS|C:\SAMNMAX.CD\SETMUSE.INI}}' - - '{{Game data/config|Windows|{{p|hkcu}}\Software\LucasArts\Sam & Max Hit the Road\|{{p|game}}\samnmax.ini}}' - - '{{Game data/saves|DOS|C:\SAMNMAX.CD\SAVEGAME.*}}' - - '{{Game data/saves|Windows|{{p|AppData}}\LucasArts\Sam & Max Hit the Road\|{{p|game}}\samnmax.s**}}' + - "{{Game data/config|DOS|C:\\SAMNMAX.CD\\SETMUSE.INI}}" + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\LucasArts\\Sam & Max Hit the Road\\|{{p|game}}\\samnmax.ini}}" + - "{{Game data/saves|DOS|C:\\SAMNMAX.CD\\SAVEGAME.*}}" + - "{{Game data/saves|Windows|{{p|AppData}}\\LucasArts\\Sam & Max Hit the Road\\|{{p|game}}\\samnmax.s**}}" Sam & Max Save the World: gog: 1207659065 pageId: 10590 steam: 901660 templates: - - >- - {{Game data/config|Windows|{{p|game}}\\prefs.prop|{{p|userprofile\documents}}\Telltale - Games\\prefs.prop}} - - '{{Game data/config|Steam|{{p|game}}\ep10\prefs.prop}}' - - >- - {{Game data/saves|Windows|{{p|game}}\\*.save|{{p|userprofile\documents}}\Telltale Games\\*.save}} - - '{{Game data/saves|Steam|{{p|game}}\ep10\*.save}}' + - "{{Game data/config|Windows|{{p|game}}\\\\prefs.prop|{{p|userprofile\\documents}}\\Telltale Games\\\\prefs.prop}}" + - "{{Game data/config|Steam|{{p|game}}\\ep10\\prefs.prop}}" + - "{{Game data/saves|Windows|{{p|game}}\\\\*.save|{{p|userprofile\\documents}}\\Telltale Games\\\\*.save}}" + - "{{Game data/saves|Steam|{{p|game}}\\ep10\\*.save}}" Sam & Max Save the World (2020): gog: 1409865962 gogSide: @@ -139224,28 +135554,24 @@ Sam & Max Save the World (2020): steamSide: - 1468550 templates: - - |- - {{Game data/config|Windows|{{p|userprofile\Documents}}\Skunkape Games\Sam & Max Save the World\ - }} - - |- - {{Game data/saves|Windows|{{p|userprofile\Documents}}\Skunkape Games\Sam & Max Save the World\ - }} -'Sam & Max: Beyond Time and Space': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Skunkape Games\\Sam & Max Save the World\\\n}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Skunkape Games\\Sam & Max Save the World\\\n}}" +"Sam & Max: Beyond Time and Space": gog: 1207659064 pageId: 10632 renamedFrom: - Sam & Max Beyond Time and Space steam: 901663 templates: - - '{{Game data/config|Windows|{{p|game}}\\prefs.prop}}' - - '{{Game data/config|Steam|{{p|game}}\ep20\prefs.prop}}' - - '{{Game data/saves|Windows|{{p|game}}\\*.save}}' - - '{{Game data/saves|Steam|{{p|game}}\ep20\*.save}}' -'Sam & Max: Beyond Time and Space (2021)': + - "{{Game data/config|Windows|{{p|game}}\\\\prefs.prop}}" + - "{{Game data/config|Steam|{{p|game}}\\ep20\\prefs.prop}}" + - "{{Game data/saves|Windows|{{p|game}}\\\\*.save}}" + - "{{Game data/saves|Steam|{{p|game}}\\ep20\\*.save}}" +"Sam & Max: Beyond Time and Space (2021)": gog: 1901266299 pageId: 173114 steam: 1747050 -'Sam & Max: The Devil''s Playhouse': +"Sam & Max: The Devil's Playhouse": gog: 1207659098 pageId: 7783 steam: 901399 @@ -139256,22 +135582,12 @@ Sam & Max Save the World (2020): - 31250 - 31260 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\Telltale Games\The Penal - Zone\prefs.prop|{{p|userprofile\Documents}}\Telltale Games\The Tomb of - Sammun-Mak\prefs.prop|{{p|userprofile\Documents}}\Telltale Games\They Stole Maxs - Brain\prefs.prop|{{p|userprofile\Documents}}\Telltale Games\Beyond the Alley of the - Dolls\prefs.prop|{{p|userprofile\Documents}}\Telltale Games\The City That Dares Not Sleep\prefs.prop}} - - >- - {{Game data/saves|Windows|{{p|userprofile\Documents}}\Telltale Games\The Penal - Zone\*.save|{{p|userprofile\Documents}}\Telltale Games\The Tomb of - Sammun-Mak\*.save|{{p|userprofile\Documents}}\Telltale Games\They Stole Maxs - Brain\*.save|{{p|userprofile\Documents}}\Telltale Games\Beyond the Alley of the - Dolls\*.save|{{p|userprofile\Documents}}\Telltale Games\The City That Dares Not Sleep\*.save}} -'Sam & Max: This Time It''s Virtual!': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Telltale Games\\The Penal Zone\\prefs.prop|{{p|userprofile\\Documents}}\\Telltale Games\\The Tomb of Sammun-Mak\\prefs.prop|{{p|userprofile\\Documents}}\\Telltale Games\\They Stole Maxs Brain\\prefs.prop|{{p|userprofile\\Documents}}\\Telltale Games\\Beyond the Alley of the Dolls\\prefs.prop|{{p|userprofile\\Documents}}\\Telltale Games\\The City That Dares Not Sleep\\prefs.prop}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Telltale Games\\The Penal Zone\\*.save|{{p|userprofile\\Documents}}\\Telltale Games\\The Tomb of Sammun-Mak\\*.save|{{p|userprofile\\Documents}}\\Telltale Games\\They Stole Maxs Brain\\*.save|{{p|userprofile\\Documents}}\\Telltale Games\\Beyond the Alley of the Dolls\\*.save|{{p|userprofile\\Documents}}\\Telltale Games\\The City That Dares Not Sleep\\*.save}}" +"Sam & Max: This Time It's Virtual!": pageId: 165186 steam: 1431290 -'Sam Glyph: Private Eye!': +"Sam Glyph: Private Eye!": pageId: 49534 steam: 326420 Samael: @@ -139297,27 +135613,25 @@ Samorost 1: pageId: 168522 steam: 1580970 templates: - - >- - {{Game data/saves|Windows|{{P|appdata}}\amanitadesign.samorost1\Local - Store\#SharedObjects\Data\Main.swf\resume.sol}} + - "{{Game data/saves|Windows|{{P|appdata}}\\amanitadesign.samorost1\\Local Store\\#SharedObjects\\Data\\Main.swf\\resume.sol}}" Samorost 2: gog: 1435321049 pageId: 1662 steam: 40720 templates: - - '{{Game data/config|Windows|{{P|appdata}}\amanita-design.samorost3\Local Store\}}' - - '{{Game data/saves|Windows|{{P|appdata}}\amanita-design.samorost3\Local Store\s2save.bin}}' + - "{{Game data/config|Windows|{{P|appdata}}\\amanita-design.samorost3\\Local Store\\}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\amanita-design.samorost3\\Local Store\\s2save.bin}}" Samorost 3: gog: 1452686647 pageId: 34246 steam: 421120 templates: - - '{{Game data/config|Windows|{{P|appdata}}\amanita-design.samorost3\Local Store\}}' - - '{{Game data/saves|Windows|{{P|appdata}}\amanita-design.samorost3\Local Store\}}' + - "{{Game data/config|Windows|{{P|appdata}}\\amanita-design.samorost3\\Local Store\\}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\amanita-design.samorost3\\Local Store\\}}" Samosbor: pageId: 156827 steam: 1034060 -'Samozbor: Rebellion': +"Samozbor: Rebellion": pageId: 123768 steam: 982100 Samp RP: @@ -139336,14 +135650,14 @@ Samsara: pageId: 78729 steam: 652880 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Marker Studio\Samsara\}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Marker Studio\Samsara\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Marker Studio\\Samsara\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Marker Studio\\Samsara\\}}" Samsara Room: pageId: 159592 steam: 1281800 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\Rusty Lake\SamsaraRoom\saveGame.sav}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\Rusty Lake\SamsaraRoom\saveGame.sav}}' + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\Rusty Lake\\SamsaraRoom\\saveGame.sav}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\Rusty Lake\\SamsaraRoom\\saveGame.sav}}" Samudai: pageId: 48751 steam: 342740 @@ -139356,12 +135670,12 @@ Samudra: Samurai Aces: pageId: 169022 steam: 1261980 -'Samurai Aces III: Sengoku Cannon': +"Samurai Aces III: Sengoku Cannon": pageId: 161831 steam: 1279390 templates: - - '{{Game data/config|Windows|{{P|appdata}}\scannon\setting.bin}}' - - '{{Game data/saves|Windows|{{P|appdata}}\scannon\savedata.bin}}' + - "{{Game data/config|Windows|{{P|appdata}}\\scannon\\setting.bin}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\scannon\\savedata.bin}}" Samurai Defender: pageId: 180688 Samurai Forge: @@ -139370,14 +135684,14 @@ Samurai Forge: Samurai Gunn: pageId: 13296 steam: 239090 -'Samurai Jack: Battle through Time': +"Samurai Jack: Battle through Time": pageId: 158128 renamedFrom: - - 'Samurai Jack: Battle Through Time' + - "Samurai Jack: Battle Through Time" steam: 1150590 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\SJGAME\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\SJGAME\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\SJGAME\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\SJGAME\\Saved\\SaveGames\\}}" Samurai Jazz: pageId: 48881 steam: 346450 @@ -139385,8 +135699,8 @@ Samurai Maiden: pageId: 180381 steam: 1952250 templates: - - '{{Game data/config|Windows|{{P|game}}\launcher\setting.txt|{{P|hkcu}}\Software\D3 PUBLISHER\SAMURAI MAIDEN}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\appdata\locallow\D3 PUBLISHER\SAMURAI MAIDEN}}' + - "{{Game data/config|Windows|{{P|game}}\\launcher\\setting.txt|{{P|hkcu}}\\Software\\D3 PUBLISHER\\SAMURAI MAIDEN}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\appdata\\locallow\\D3 PUBLISHER\\SAMURAI MAIDEN}}" Samurai Riot: pageId: 66836 steam: 658790 @@ -139396,15 +135710,15 @@ Samurai Shodown (2020): pageId: 131773 steam: 1342260 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\SamuraiShodown\Saved\Config\WindowsNoEditor}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\SamuraiShodown\Saved\SaveGames}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\SamuraiShodown\\Saved\\Config\\WindowsNoEditor}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\SamuraiShodown\\Saved\\SaveGames}}" Samurai Shodown II: pageId: 131708 Samurai Shodown II (2015): gog: 1263414276 pageId: 161029 templates: - - '{{Game data/config|Windows|{{P|appdata}}\SNK\samsho2\OPTIONS}}' + - "{{Game data/config|Windows|{{P|appdata}}\\SNK\\samsho2\\OPTIONS}}" Samurai Shodown III: pageId: 133128 Samurai Shodown IV: @@ -139413,8 +135727,8 @@ Samurai Shodown NeoGeo Collection: pageId: 160673 steam: 999660 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Samurai Shodown NEOGEO Collection\}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Samurai Shodown NEOGEO Collection\}}' + - "{{Game data/config|Windows|{{p|appdata}}\\Samurai Shodown NEOGEO Collection\\}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Samurai Shodown NEOGEO Collection\\}}" Samurai Shodown V: pageId: 140070 Samurai Shodown V Special: @@ -139430,10 +135744,8 @@ Samurai Sword VR: Samurai Warriors 2: pageId: 170291 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\KOEI\{{LocalizedPath|Samurai Warriors 2}}\inputmap*.dat}}' - - >- - {{Game data/saves|Windows|{{P|userprofile\Documents}}\KOEI\{{LocalizedPath|Samurai Warriors - 2}}\Savedata\save.dat}} + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\KOEI\\{{LocalizedPath|Samurai Warriors 2}}\\inputmap*.dat}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\KOEI\\{{LocalizedPath|Samurai Warriors 2}}\\Savedata\\save.dat}}" Samurai Warriors 4-II: pageId: 28817 steam: 348470 @@ -139451,23 +135763,19 @@ Samurai Warriors 4-II: - 379190 - 379191 templates: - - >- - {{Game data/config|Windows|{{p|hkcu}}\Software\KoeiTecmo\SAMURAI WARRIORS - 4-II\*|{{P|userprofile\Documents}}\KoeiTecmo\SAMURAI WARRIORS 4-II\inputmap*.dat}} - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\KoeiTecmo\SAMURAI WARRIORS 4-II\Savedata\save.dat}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\KoeiTecmo\\SAMURAI WARRIORS 4-II\\*|{{P|userprofile\\Documents}}\\KoeiTecmo\\SAMURAI WARRIORS 4-II\\inputmap*.dat}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\KoeiTecmo\\SAMURAI WARRIORS 4-II\\Savedata\\save.dat}}" Samurai Warriors 5: pageId: 166726 steam: 1591530 templates: - - >- - {{Game data/config|Windows|{{p|hkcu}}\Software\KoeiTecmo\SAMURAI WARRIORS - 5\|{{p|userprofile\Documents}}\KoeiTecmo\SAMURAI WARRIORS 5\Savedata\inputmap*.dat}} - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\KoeiTecmo\SAMURAI WARRIORS 5\Savedata\}}' -'Samurai Warriors: Spirit of Sanada': + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\KoeiTecmo\\SAMURAI WARRIORS 5\\|{{p|userprofile\\Documents}}\\KoeiTecmo\\SAMURAI WARRIORS 5\\Savedata\\inputmap*.dat}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\KoeiTecmo\\SAMURAI WARRIORS 5\\Savedata\\}}" +"Samurai Warriors: Spirit of Sanada": pageId: 62502 steam: 595740 templates: - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\KoeiTecmo\SW Spirit of Sanada\SAVEDATA\}}' + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\KoeiTecmo\\SW Spirit of Sanada\\SAVEDATA\\}}" Samurai Wars: pageId: 42017 steam: 503220 @@ -139492,7 +135800,7 @@ Samurai of Hyuga Book 4: San Camillo II: pageId: 109672 steam: 912770 -'San Francisco Rush The Rock: Alcatraz Edition': +"San Francisco Rush The Rock: Alcatraz Edition": pageId: 191390 San Matias - Mafia City: pageId: 82033 @@ -139501,20 +135809,20 @@ Sanabi: pageId: 191227 steam: 1562700 templates: - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\WONDER POTION\SNB\*.data}}' -'Sanator: Scarlet Scarf': + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\WONDER POTION\\SNB\\*.data}}" +"Sanator: Scarlet Scarf": pageId: 138723 steam: 650330 Sanatorium Purgatorium: pageId: 146095 steam: 961220 -'Sanctuary RPG: Black Edition': +"Sanctuary RPG: Black Edition": gog: 1423487549 pageId: 23094 steam: 328760 templates: - - '{{Game data/config|Windows|{{p|game}}\Data\}}' - - '{{Game data/saves|Windows|{{p|game}}\Data\}}' + - "{{Game data/config|Windows|{{p|game}}\\Data\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\Data\\}}" Sanctuary VR: pageId: 55169 steam: 565730 @@ -139522,17 +135830,17 @@ Sanctum: pageId: 3952 steam: 91600 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Sanctum\SanctumGame\Config\}}' - - '{{Game data/saves|Windows|{{p|Steam}}\userdata\{{p|uid}}\91600\remote\games}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Sanctum\\SanctumGame\\Config\\}}" + - "{{Game data/saves|Windows|{{p|Steam}}\\userdata\\{{p|uid}}\\91600\\remote\\games}}" Sanctum 2: pageId: 7145 steam: 210770 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Sanctum2\SanctumGame\Config\}}' - - '{{Game data/config|Linux|{{p|steam}}/steamapps/common/Sanctum2/SanctumGame/Config/}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Sanctum2\SanctumGame\SaveData\}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/Sanctum2/}}' - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{P|uid}}/210770/}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Sanctum2\\SanctumGame\\Config\\}}" + - "{{Game data/config|Linux|{{p|steam}}/steamapps/common/Sanctum2/SanctumGame/Config/}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Sanctum2\\SanctumGame\\SaveData\\}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/Sanctum2/}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{P|uid}}/210770/}}" Sanctum Breach: pageId: 153418 steam: 1194770 @@ -139549,7 +135857,7 @@ Sandbox: pageId: 164911 steam: 590830 templates: - - '{{Game data/config|Windows|{{P|game}}\core\cfg}}' + - "{{Game data/config|Windows|{{P|game}}\\core\\cfg}}" Sandbox Anything: pageId: 136901 steam: 1054370 @@ -139582,7 +135890,7 @@ Sands of Salzaar: - Sands of salzaar steam: 1094520 templates: - - '{{Game data/config|Windows|{{p|userprofile\appdata\locallow}}\汉家松鼠\DesertLegend\Save\global.dat}}' + - "{{Game data/config|Windows|{{p|userprofile\\appdata\\locallow}}\\汉家松鼠\\DesertLegend\\Save\\global.dat}}" Sandstorm: pageId: 52991 steam: 548710 @@ -139593,25 +135901,25 @@ Sandwalkers: Sandwich Sudoku: pageId: 141278 steam: 1117310 -'Sandy & Junior: Aventura Virtual': +"Sandy & Junior: Aventura Virtual": pageId: 190089 templates: - - '{{Game data/config|Windows|{{p|game}}\config.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\savegame\savegameXX.sav}}' + - "{{Game data/config|Windows|{{p|game}}\\config.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\savegame\\savegameXX.sav}}" Sandy Path: pageId: 102911 steam: 895360 -'Sang-Froid: Tales of Werewolves': +"Sang-Froid: Tales of Werewolves": gog: 1207660203 pageId: 6024 steam: 227220 templates: - - '{{Game data/config|Windows|{{p|programdata}}\sangFroidData\}}' - - '{{Game data/saves|Windows|{{p|programdata}}\sangFroidData\SaveGames\}}' + - "{{Game data/config|Windows|{{p|programdata}}\\sangFroidData\\}}" + - "{{Game data/saves|Windows|{{p|programdata}}\\sangFroidData\\SaveGames\\}}" Sango Fighter: pageId: 143381 templates: - - '{{Game data/config|DOS|{{P|game}}\SANGO.CFG}}' + - "{{Game data/config|DOS|{{P|game}}\\SANGO.CFG}}" Sango Fighter 2: pageId: 143384 Sango Guardian Chaos Generation Steamedition: @@ -139634,7 +135942,7 @@ Sanguo Warriors VR2: renamedFrom: - 三国虎将传VR2-Sanguo Warriors VR2 steam: 944740 -'Sanic The Hawtdawg: Da Movie: Da Game 2.1: Electric Boogaloo 2.2 Version 4: The Squeakquel: VHS Edition: Directors cut: Special edition: The Musical & Knackles': +"Sanic The Hawtdawg: Da Movie: Da Game 2.1: Electric Boogaloo 2.2 Version 4: The Squeakquel: VHS Edition: Directors cut: Special edition: The Musical & Knackles": pageId: 152839 steam: 1192750 Sanitarium: @@ -139642,53 +135950,51 @@ Sanitarium: pageId: 21592 steam: 284050 templates: - - '{{Game data/config|Windows|{{p|hklm}}\Software\{{P|wow64}}\DreamForge\Sanitarium\}}' - - '{{Game data/config|GOG.com|{{P|game}}\sanitarium.ini}}' - - '{{Game data/config|Steam|{{P|appdata}}\DotEmu\Sanitarium\|{{P|programdata}}\DotEmu\Sanitarium\}}' - - '{{Game data/saves|Windows|{{P|game}}\SAVES\}}' - - >- - {{Game - data/saves|Steam|{{P|appdata}}\DotEmu\Sanitarium\SAVES\{{LocalizedPath|EN}}\|{{P|steam}}\userdata\{{P|uid}}\284050\remote\{{LocalizedPath|EN}}\}} + - "{{Game data/config|Windows|{{p|hklm}}\\Software\\{{P|wow64}}\\DreamForge\\Sanitarium\\}}" + - "{{Game data/config|GOG.com|{{P|game}}\\sanitarium.ini}}" + - "{{Game data/config|Steam|{{P|appdata}}\\DotEmu\\Sanitarium\\|{{P|programdata}}\\DotEmu\\Sanitarium\\}}" + - "{{Game data/saves|Windows|{{P|game}}\\SAVES\\}}" + - "{{Game data/saves|Steam|{{P|appdata}}\\DotEmu\\Sanitarium\\SAVES\\{{LocalizedPath|EN}}\\|{{P|steam}}\\userdata\\{{P|uid}}\\284050\\remote\\{{LocalizedPath|EN}}\\}}" Sanitarium Rush: pageId: 141792 steam: 1125450 -'Sanity: Aiken''s Artifact': +"Sanity: Aiken's Artifact": pageId: 56841 templates: - - '{{Game data/config|Windows|{{p|game}}\LITHTECH\autoexec.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\save\}}' -'Sankaku Renai: Love Triangle Trouble': + - "{{Game data/config|Windows|{{p|game}}\\LITHTECH\\autoexec.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\save\\}}" +"Sankaku Renai: Love Triangle Trouble": pageId: 136737 steam: 1009450 Sans Logique: pageId: 190255 steam: 1837620 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Base\Saved\SaveGames\}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\Base\Saved\Config\Windows\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\Base\\Saved\\SaveGames\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Base\\Saved\\Config\\Windows\\}}" Sansar: pageId: 123442 steam: 586110 Santa Claus in Trouble: pageId: 30309 templates: - - '{{Game data/config|Windows|{{P|game}}\config.txt}}' - - '{{Game data/saves|Windows|{{P|game}}\score.dat}}' + - "{{Game data/config|Windows|{{P|game}}\\config.txt}}" + - "{{Game data/saves|Windows|{{P|game}}\\score.dat}}" Santa Claus in Trouble (HD): pageId: 165813 renamedFrom: - Santa Claus in Trouble (2020) steam: 1431350 templates: - - '{{Game data/config|Windows|{{P|game}}\config.txt|{{P|game}}\useroptions.bin}}' - - '{{Game data/config|Steam|{{p|steam}}\userdata\{{p|uid}}\1431350\remote\useroptions.bin}}' - - '{{Game data/saves|Windows|{{P|game}}\savegame0000.bin}}' - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\1431350\remote\savegame0000.bin}}' + - "{{Game data/config|Windows|{{P|game}}\\config.txt|{{P|game}}\\useroptions.bin}}" + - "{{Game data/config|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\1431350\\remote\\useroptions.bin}}" + - "{{Game data/saves|Windows|{{P|game}}\\savegame0000.bin}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\1431350\\remote\\savegame0000.bin}}" Santa Claus in Trouble ... Again!: pageId: 30398 templates: - - '{{Game data/config|Windows|{{P|game}}\config.txt}}' - - '{{Game data/saves|Windows|{{P|game}}\score.dat}}' + - "{{Game data/config|Windows|{{P|game}}\\config.txt}}" + - "{{Game data/saves|Windows|{{P|game}}\\score.dat}}" Santa Claws: pageId: 153598 steam: 694680 @@ -139715,37 +136021,37 @@ Santa in Search of Toys: renamedFrom: - Santa in search of toys steam: 1007980 -Santa's Big Adventures: +"Santa's Big Adventures": pageId: 55248 steam: 571020 -Santa's Big Sack: +"Santa's Big Sack": pageId: 153358 steam: 1197350 -Santa's Christmas Solitaire: +"Santa's Christmas Solitaire": pageId: 54592 steam: 561680 -Santa's Christmas Solitaire 2: +"Santa's Christmas Solitaire 2": pageId: 153527 steam: 1202710 -Santa's Holiday: +"Santa's Holiday": pageId: 153493 steam: 1199780 -Santa's Special Delivery: +"Santa's Special Delivery": pageId: 54625 steam: 564420 -Santa's Story of Christmas: +"Santa's Story of Christmas": pageId: 123572 steam: 920770 -Santa's Vacation: +"Santa's Vacation": pageId: 76881 steam: 741770 -Santa's Visit: +"Santa's Visit": pageId: 150170 steam: 1155810 -Santa's Workshop: +"Santa's Workshop": pageId: 73268 steam: 727200 -Santa's Workshop (2018): +"Santa's Workshop (2018)": pageId: 137373 steam: 980750 Santas Baubles: @@ -139766,7 +136072,7 @@ Sapper - Defuse The Bomb Simulator: Sapper Boom!: pageId: 95523 steam: 868190 -Sapper's Bad Dream: +"Sapper's Bad Dream": pageId: 42501 steam: 497590 Sapphire Safari: @@ -139777,22 +136083,22 @@ Sapphire Yours: steam: 675870 Sapus Tongue: pageId: 167814 -'Sarab: Duji Tower': +"Sarab: Duji Tower": pageId: 53552 steam: 551570 Sarah in the Sky: pageId: 99182 steam: 878910 -'Sarah, you are way too heavy': +"Sarah, you are way too heavy": pageId: 136475 steam: 1077320 Sarcophag: pageId: 90148 steam: 631830 -Sargon's Lair: +"Sargon's Lair": pageId: 109676 steam: 912810 -Satan's Castle: +"Satan's Castle": pageId: 87355 steam: 805720 Satanist: @@ -139802,7 +136108,7 @@ Satazius: pageId: 15690 steam: 203990 templates: - - '{{Game data/config|Windows|{{P|game}}\Option\}}' + - "{{Game data/config|Windows|{{P|game}}\\Option\\}}" Satellite: pageId: 82282 steam: 555310 @@ -139810,18 +136116,18 @@ Satellite Command: pageId: 52997 steam: 514670 templates: - - '{{Game data/saves|Windows|{{p|localappdata}}/GESGame/Saved/SaveGames}}' + - "{{Game data/saves|Windows|{{p|localappdata}}/GESGame/Saved/SaveGames}}" Satellite Reign: gog: 1428054996 pageId: 21997 steam: 268870 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\SatelliteReign\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/.local/share/SatelliteReign/}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/SatelliteReign/}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\SatelliteReign\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/.local/share/SatelliteReign/}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/SatelliteReign/}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\SatelliteReign\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/.local/share/SatelliteReign/}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/SatelliteReign/}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\SatelliteReign\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/.local/share/SatelliteReign/}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/SatelliteReign/}}" Satellite Repairman: pageId: 56134 steam: 567780 @@ -139832,8 +136138,8 @@ Satisfactory: pageId: 97365 steam: 526870 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\FactoryGame\Saved\Config\Windows\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\FactoryGame\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\FactoryGame\\Saved\\Config\\Windows\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\FactoryGame\\Saved\\SaveGames\\}}" Saturated Outer Space: pageId: 132844 steam: 1054080 @@ -139841,15 +136147,15 @@ Saturday Morning RPG: pageId: 50705 steam: 263320 templates: - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\SavedGames\SMRPG\}}' + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\SavedGames\\SMRPG\\}}" Saturday of Piercing Screams: pageId: 144101 steam: 1128160 Saturnalia: pageId: 158709 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Santa Ragione\Saturnalia}}' - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Santa Ragione\Saturnalia\SaveFiles\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Santa Ragione\\Saturnalia}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Santa Ragione\\Saturnalia\\SaveFiles\\}}" Saturnine: pageId: 113650 steam: 912120 @@ -139866,7 +136172,7 @@ Savage: gog: 1737559136 pageId: 155931 steam: 1157870 -'Savage 2: A Tortured Soul': +"Savage 2: A Tortured Soul": pageId: 103 steam: 13700 Savage Arena: @@ -139875,8 +136181,8 @@ Savage Lands: pageId: 48519 steam: 307880 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Signal Studios & DigitalDNA Games\Savage Lands}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/.Unity/"Signal Studios & DigitalDNA Games"/"Savage Lands"/prefs}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Signal Studios & DigitalDNA Games\\Savage Lands}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/.Unity/\"Signal Studios & DigitalDNA Games\"/\"Savage Lands\"/prefs}}" Savage Offroad: pageId: 77136 steam: 748800 @@ -139888,14 +136194,14 @@ Savage Resurrection: Savage Vessels: pageId: 109656 steam: 912550 -'Savage: The Battle for Newerth': +"Savage: The Battle for Newerth": pageId: 190403 -'Savage: The Shard of Gosen': +"Savage: The Shard of Gosen": pageId: 39554 steam: 408060 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\SAVAGE_The_Shard_of_Gosen\settings.ini}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\SAVAGE_The_Shard_of_Gosen\Saves\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\SAVAGE_The_Shard_of_Gosen\\settings.ini}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\SAVAGE_The_Shard_of_Gosen\\Saves\\}}" Savana: pageId: 42071 steam: 494970 @@ -139906,10 +136212,10 @@ Savant - Ascent: pageId: 18820 steam: 259530 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Savant_Ascent\}}' - - '{{Game data/config|Linux|{{P|xdgconfighome}}/Savant_Ascent/}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Savant_Ascent\}}' - - '{{Game data/saves|Linux|{{P|xdgconfighome}}/Savant_Ascent/}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Savant_Ascent\\}}" + - "{{Game data/config|Linux|{{P|xdgconfighome}}/Savant_Ascent/}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Savant_Ascent\\}}" + - "{{Game data/saves|Linux|{{P|xdgconfighome}}/Savant_Ascent/}}" Savant Ascent REMIX: gog: 1743238556 pageId: 189718 @@ -139920,10 +136226,10 @@ Save Daddy Trump: Save Dash: pageId: 73540 steam: 657020 -'Save Halloween: City of Witches': +"Save Halloween: City of Witches": pageId: 43121 steam: 428110 -'Save Her, from Dreams': +"Save Her, from Dreams": pageId: 93586 steam: 840910 Save Home: @@ -139938,7 +136244,7 @@ Save Koch: Save One More: pageId: 89577 steam: 820240 -'Save Our Souls: Episode I - The Absurd Hopes of Blessed Children': +"Save Our Souls: Episode I - The Absurd Hopes of Blessed Children": pageId: 58555 steam: 600550 Save President From Rebels: @@ -139949,7 +136255,7 @@ Save Room - Organization Puzzle: pageId: 177384 steam: 1955330 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\FractalProjects\Save Room}}' + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\FractalProjects\\Save Room}}" Save Snegurochka!: pageId: 92607 steam: 818670 @@ -139974,12 +136280,12 @@ Save Your Mother: Save Your Nuts: pageId: 77383 steam: 752170 -'Save me Mr Tako: Tasukete Tako-San': +"Save me Mr Tako: Tasukete Tako-San": pageId: 121188 steam: 729220 templates: - - '{{Game data/config|Windows|{{p|game}}\SaveMeMrTako_Data\Settings.xml}}' - - '{{Game data/saves|Windows|{{p|game}}\SaveMeMrTako_Data}}' + - "{{Game data/config|Windows|{{p|game}}\\SaveMeMrTako_Data\\Settings.xml}}" + - "{{Game data/saves|Windows|{{p|game}}\\SaveMeMrTako_Data}}" Save the Biros VR: pageId: 141111 steam: 1104010 @@ -140001,7 +136307,7 @@ Save the Lamb: Save the Ninja Clan: pageId: 56467 steam: 566670 -'Save the Universe, Please!': +"Save the Universe, Please!": pageId: 37084 steam: 500550 Save the Village Chief: @@ -140033,8 +136339,8 @@ Saw: pageId: 54701 steam: 27300 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\My Games\Saw\SawGame\Config\}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\My Games\Saw\SawGame\Checkpoints\default_checkpoint.sav}}' + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\My Games\\Saw\\SawGame\\Config\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\My Games\\Saw\\SawGame\\Checkpoints\\default_checkpoint.sav}}" Say Goodbye: pageId: 55752 steam: 557880 @@ -140042,16 +136348,14 @@ Say No! More: pageId: 157187 steam: 1191900 templates: - - >- - {{Game data/config|Windows|{{P|userprofile\appdata\locallow}}\Thunderful - Publishing\SayNoMore\{{P|uid}}\|{{P|hkcu}}\Software\Thunderful Publishing\SayNoMore\}} - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Thunderful Publishing\SayNoMore\{{P|uid}}\}}' + - "{{Game data/config|Windows|{{P|userprofile\\appdata\\locallow}}\\Thunderful Publishing\\SayNoMore\\{{P|uid}}\\|{{P|hkcu}}\\Software\\Thunderful Publishing\\SayNoMore\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Thunderful Publishing\\SayNoMore\\{{P|uid}}\\}}" Saya no Uta ~ The Song of Saya: gog: 1541066319 pageId: 143063 steam: 702050 templates: - - '{{Game data/saves|Windows|{{P|appdata}}\Nitroplus\saya_en\}}' + - "{{Game data/saves|Windows|{{P|appdata}}\\Nitroplus\\saya_en\\}}" Sayaka: pageId: 56066 steam: 575620 @@ -140065,49 +136369,45 @@ Sayonara Umihara Kawase: pageId: 37521 steam: 378750 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Sayonara Umihara Kawase\hidconf.ini}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\Sayonara Umihara Kawase\UmiProf00.bin}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\Sayonara Umihara Kawase\\hidconf.ini}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Sayonara Umihara Kawase\\UmiProf00.bin}}" Sayonara Wild Hearts: pageId: 147729 steam: 1122720 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Simogo\Sayonara Wild Hearts\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Simogo\Sayonara Wild Hearts\gamedata.bin}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Simogo\\Sayonara Wild Hearts\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Simogo\\Sayonara Wild Hearts\\gamedata.bin}}" Scalak: pageId: 93929 steam: 858760 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Hamster On Coke Games\Scalak\}}' - - '{{Game data/saves|Windows|{{p|USERPROFILE}}\AppData\LocalLow\Hamster On Coke Games\Scalak\Data\saveData.txt}}' -Scallywag's Honor: + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Hamster On Coke Games\\Scalak\\}}" + - "{{Game data/saves|Windows|{{p|USERPROFILE}}\\AppData\\LocalLow\\Hamster On Coke Games\\Scalak\\Data\\saveData.txt}}" +"Scallywag's Honor": pageId: 139424 steam: 1083150 -'Scalpers: Turtle & the Moonshine Gang': +"Scalpers: Turtle & the Moonshine Gang": pageId: 56396 steam: 577280 -'Scamp: High Hat Havoc': +"Scamp: High Hat Havoc": pageId: 123369 steam: 942510 Scania Truck Driving Simulator: pageId: 15465 steam: 258760 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\SCANIA Truck Driving - Simulator\config.cfg|{{p|userprofile\Documents}}\SCANIA Truck Driving Simulator\profile\{{p|uid}}\config.cfg}} - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\SCANIA Truck Driving Simulator\leaderboards\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\SCANIA Truck Driving Simulator\\config.cfg|{{p|userprofile\\Documents}}\\SCANIA Truck Driving Simulator\\profile\\{{p|uid}}\\config.cfg}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\SCANIA Truck Driving Simulator\\leaderboards\\}}" Scanner Sombre: gog: 1420469009 pageId: 61587 steam: 475190 templates: - - >- - {{Game data/config|Windows|{{p|hkcu}}\Software\Introversion - Software\ScannerSombre|{{p|userprofile}}\AppData\LocalLow\Introversion Software\ScannerSombre}} - - '{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/Introversion Software/ScannerSombre/}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Introversion Software\ScannerSombre\saves\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/unity.Introversion Software.ScannerSombre/saves}}' - - '{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/Introversion Software/ScannerSombre/saves/}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Introversion Software\\ScannerSombre|{{p|userprofile}}\\AppData\\LocalLow\\Introversion Software\\ScannerSombre}}" + - "{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/Introversion Software/ScannerSombre/}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Introversion Software\\ScannerSombre\\saves\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/unity.Introversion Software.ScannerSombre/saves}}" + - "{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/Introversion Software/ScannerSombre/saves/}}" Scapeland: pageId: 43859 steam: 444440 @@ -140122,13 +136422,13 @@ Scarf: pageId: 108688 steam: 645320 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Scarf\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\Scarf\Saved\SaveGames\}}' -'Scarface: The World Is Yours': + - "{{Game data/config|Windows|{{P|localappdata}}\\Scarf\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Scarf\\Saved\\SaveGames\\}}" +"Scarface: The World Is Yours": pageId: 22057 templates: - - '{{Game data/config|Windows|{{p|hklm}}\SOFTWARE\{{p|wow64}}\VUGAMES\Scarface\}}' - - '{{Game data/saves|Windows|{{p|game}}}}' + - "{{Game data/config|Windows|{{p|hklm}}\\SOFTWARE\\{{p|wow64}}\\VUGAMES\\Scarface\\}}" + - "{{Game data/saves|Windows|{{p|game}}}}" Scarlet Fantasy: pageId: 122506 steam: 935260 @@ -140141,30 +136441,22 @@ Scarlet Hood and the Wicked Wood: pageId: 167331 steam: 1141120 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\DevespressoGames\ScarletHood\}}' + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\DevespressoGames\\ScarletHood\\}}" Scarlet Maiden: pageId: 184826 steam: 1968840 templates: - - '{{Game data/config|Steam|{{P|userprofile}}\AppData\LocalLow\OttersideGames\ScarletMaiden\settings}}' - - '{{Game data/saves|Steam|{{p|userprofile}}\AppData\LocalLow\OttersideGames\ScarletMaiden\}}' + - "{{Game data/config|Steam|{{P|userprofile}}\\AppData\\LocalLow\\OttersideGames\\ScarletMaiden\\settings}}" + - "{{Game data/saves|Steam|{{p|userprofile}}\\AppData\\LocalLow\\OttersideGames\\ScarletMaiden\\}}" Scarlet Nexus: pageId: 164042 steam: 775500 templates: - - >- - {{Game data/config|Microsoft - Store|{{P|localappdata}}\Packages\NAMCOBANDAIGamesInc.CODERed_gdy2aq6ez762w\LocalCache\Local\ScarletNexus\Saved\Config\WinGDK\}} - - >- - {{Game data/config|Steam|{{P|localappdata}}\ScarletNexus\Saved\Config\WindowsNoEditor\|{{P|localappdata}}\BANDAI - NAMCO Entertainment\SCARLET NEXUS\Saved\SaveGames\{{p|uid}}\SAVEDATA_SYSTEM.sav}} - - >- - {{Game data/saves|Microsoft - Store|{{P|localappdata}}\Packages\NAMCOBANDAIGamesInc.CODERed_gdy2aq6ez762w\SystemAppData\wgs\}} - - '{{Game data/saves|Steam|{{P|localappdata}}\BANDAI NAMCO Entertainment\SCARLET NEXUS\Saved\SaveGames\{{p|uid}}\}}' - - >- - {{Game data/saves|Windows|{{P|localappdata}}\ScarletNexus\Saved\SaveGames\{{note|Applies when game was run without - Steam.}}}} + - "{{Game data/config|Microsoft Store|{{P|localappdata}}\\Packages\\NAMCOBANDAIGamesInc.CODERed_gdy2aq6ez762w\\LocalCache\\Local\\ScarletNexus\\Saved\\Config\\WinGDK\\}}" + - "{{Game data/config|Steam|{{P|localappdata}}\\ScarletNexus\\Saved\\Config\\WindowsNoEditor\\|{{P|localappdata}}\\BANDAI NAMCO Entertainment\\SCARLET NEXUS\\Saved\\SaveGames\\{{p|uid}}\\SAVEDATA_SYSTEM.sav}}" + - "{{Game data/saves|Microsoft Store|{{P|localappdata}}\\Packages\\NAMCOBANDAIGamesInc.CODERed_gdy2aq6ez762w\\SystemAppData\\wgs\\}}" + - "{{Game data/saves|Steam|{{P|localappdata}}\\BANDAI NAMCO Entertainment\\SCARLET NEXUS\\Saved\\SaveGames\\{{p|uid}}\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\ScarletNexus\\Saved\\SaveGames\\{{note|Applies when game was run without Steam.}}}}" Scarlet Smiling Skull: pageId: 110652 steam: 930700 @@ -140172,24 +136464,24 @@ Scarlet Tower: pageId: 186869 steam: 2181720 templates: - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Pyxeralia\The Scarlet Tower}}' + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Pyxeralia\\The Scarlet Tower}}" Scarlet Weather Rhapsody: pageId: 31029 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/saves|Windows|{{p|game}}\}}' -'Scarlett Mysteries: Cursed Child': + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\}}" +"Scarlett Mysteries: Cursed Child": pageId: 63155 steam: 615350 -Scarlett's Dungeon: +"Scarlett's Dungeon": pageId: 69498 steam: 704950 Scars Above: pageId: 185471 steam: 1196090 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\ScarsAbove\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\ScarsAbove\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\ScarsAbove\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\ScarsAbove\\Saved\\SaveGames\\}}" Scars of Summer: gog: 1384959600 pageId: 164473 @@ -140215,19 +136507,17 @@ Scarygirl: - Scary Girl steam: 202370 templates: - - '{{Game data/config|Windows|{{P|game}}\Configurations\0000000100000001.cfg}}' - - '{{Game data/saves|Windows|{{P|steam}}\userdata\{{P|uid}}\202370\}}' -'Scarytales: All Hail King Mongo': + - "{{Game data/config|Windows|{{P|game}}\\Configurations\\0000000100000001.cfg}}" + - "{{Game data/saves|Windows|{{P|steam}}\\userdata\\{{P|uid}}\\202370\\}}" +"Scarytales: All Hail King Mongo": pageId: 136779 steam: 1081240 Scathe: pageId: 151169 steam: 1154830 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Scathe\Saved\Config\WindowsNoEditor\}}' - - >- - {{Game - data/saves|Windows|{{P|localappdata}}\Scathe\Saved\Config\WindowsNoEditor\|{{P|localappdata}}\Scathe\Saved\SaveGames}} + - "{{Game data/config|Windows|{{P|localappdata}}\\Scathe\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Scathe\\Saved\\Config\\WindowsNoEditor\\|{{P|localappdata}}\\Scathe\\Saved\\SaveGames}}" Scatteria: pageId: 122626 steam: 926400 @@ -140238,9 +136528,9 @@ Scavenger SV-4: pageId: 80944 steam: 779590 templates: - - '{{Game data/config|Windows|{{p|game}}/Scavenger.ini}}' - - '{{Game data/saves|Windows|{{p|game}}/Saves/}}' -'Scavenger Skirmish: Mortal World': + - "{{Game data/config|Windows|{{p|game}}/Scavenger.ini}}" + - "{{Game data/saves|Windows|{{p|game}}/Saves/}}" +"Scavenger Skirmish: Mortal World": pageId: 100514 steam: 892160 Scavenger of Dunomini: @@ -140249,7 +136539,7 @@ Scavengers: pageId: 167992 steam: 1183940 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Scavenger\Saved\Config\WindowsNoEditor }}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Scavenger\\Saved\\Config\\WindowsNoEditor }}" Scene Investigators: pageId: 189326 steam: 1159830 @@ -140259,7 +136549,7 @@ Scenner: Schacht: pageId: 50885 steam: 513300 -'Schatte: The Witch and the Fake Shadow': +"Schatte: The Witch and the Fake Shadow": pageId: 74926 steam: 732290 Schein: @@ -140267,39 +136557,35 @@ Schein: pageId: 21585 steam: 321920 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Schein\Schein.conf}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Schein}}' -'Scheming through the Zombie Apocalypse Ep2: Caged': + - "{{Game data/config|Windows|{{p|appdata}}\\Schein\\Schein.conf}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Schein}}" +"Scheming through the Zombie Apocalypse Ep2: Caged": pageId: 114702 renamedFrom: - - 'Scheming Through The Zombie Apocalypse Ep2: Caged' + - "Scheming Through The Zombie Apocalypse Ep2: Caged" steam: 946770 -'Scheming through the Zombie Apocalypse: The Beginning': +"Scheming through the Zombie Apocalypse: The Beginning": pageId: 91198 renamedFrom: - - 'Scheming Through The Zombie Apocalypse: The Beginning' + - "Scheming Through The Zombie Apocalypse: The Beginning" steam: 813540 templates: - - >- - {{Game data/config|Windows|{{P|userprofile}}\AppData\LocalLow\Entertainment Forge\Scheming Through The Zombie - Apocalypse}} - - >- - {{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Entertainment Forge\Scheming Through The Zombie - Apocalypse}} -'Schizm: Mysterious Journey': + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Entertainment Forge\\Scheming Through The Zombie Apocalypse}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Entertainment Forge\\Scheming Through The Zombie Apocalypse}}" +"Schizm: Mysterious Journey": gog: 1471706990 pageId: 74783 steam: 1709550 templates: - - '{{Game data/config|Windows|{{p|game}}\Schizm.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\Schizm.s**}}' + - "{{Game data/config|Windows|{{p|game}}\\Schizm.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\Schizm.s**}}" Schlag den Star - Das Spiel: pageId: 76994 steam: 603550 Schlocks: pageId: 61138 steam: 601320 -Scholastic's The Magic School Bus Explores Inside the Earth: +"Scholastic's The Magic School Bus Explores Inside the Earth": pageId: 21650 School Bus Fun: pageId: 50013 @@ -140308,12 +136594,12 @@ School Girl/Zombie Hunter: pageId: 95879 steam: 682570 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\sgzh\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\sgzh\Saved\\SaveGames\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\sgzh\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\sgzh\\Saved\\\\SaveGames\\}}" School Grounds: pageId: 123992 steam: 984240 -'School House Rock: Exploration Station': +"School House Rock: Exploration Station": pageId: 183820 School Idol: pageId: 98684 @@ -140327,8 +136613,8 @@ School Simulator Multiplayer: School Tycoon: pageId: 89856 templates: - - '{{Game data/config|Windows|{{p|game}}\settings.dat}}' - - '{{Game data/saves|Windows|{{p|game}}\Data\saved_games}}' + - "{{Game data/config|Windows|{{p|game}}\\settings.dat}}" + - "{{Game data/saves|Windows|{{p|game}}\\Data\\saved_games}}" School Wars!!: pageId: 151537 steam: 1158220 @@ -140344,15 +136630,13 @@ School of Horror: School of Intellectual Gamers: pageId: 145140 steam: 1130760 -'School of Talent: Suzu-Route': +"School of Talent: Suzu-Route": pageId: 56320 steam: 573040 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\MyDearest\School_of_Talent_SUZU-ROUTE}}' - - >- - {{Game - data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\MyDearest\School_of_Talent_SUZU-ROUTE\Utage\SaveSchool_of_Talent_SUZU-ROUTE\*}} -'School of the Dead: Anastasia': + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\MyDearest\\School_of_Talent_SUZU-ROUTE}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\MyDearest\\School_of_Talent_SUZU-ROUTE\\Utage\\SaveSchool_of_Talent_SUZU-ROUTE\\*}}" +"School of the Dead: Anastasia": pageId: 122170 steam: 958090 SchoolJump: @@ -140367,17 +136651,15 @@ Schoolboys! Ayumi: Schoolbreak.io: pageId: 183190 steam: 1632980 -Schrodinger's cat simulator - PT: +"Schrodinger's cat simulator - PT": pageId: 155991 steam: 1204870 -Schrödinger's Cat and the Raiders of the Lost Quark: +"Schrödinger's Cat and the Raiders of the Lost Quark": pageId: 26164 steam: 295490 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Italic Pig\Schrödinger''s Cat and the Raiders of the Lost Quark\}}' - - >- - {{Game data/saves|Windows|{{p|hkcu}}\Software\Italic Pig\Schrödinger's Cat and the Raiders of the Lost - Quark\catinfo_*}} + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Italic Pig\\Schrödinger's Cat and the Raiders of the Lost Quark\\}}" + - "{{Game data/saves|Windows|{{p|hkcu}}\\Software\\Italic Pig\\Schrödinger's Cat and the Raiders of the Lost Quark\\catinfo_*}}" Sci-fi Chess: pageId: 91084 steam: 833640 @@ -140390,7 +136672,7 @@ SciAnts Evolved: Science Girls: pageId: 50542 steam: 269010 -'Science:The world is in your hands': +"Science:The world is in your hands": pageId: 97874 steam: 863670 Scikor - Final Scale: @@ -140399,29 +136681,29 @@ Scikor - Final Scale: Scions of Fate: pageId: 78431 steam: 747970 -'Scooby Doo! & Looney Tunes Cartoon Universe: Adventure': +"Scooby Doo! & Looney Tunes Cartoon Universe: Adventure": pageId: 49919 steam: 294280 -'Scooby-Doo 2: Monsters Unleashed': +"Scooby-Doo 2: Monsters Unleashed": pageId: 90732 templates: - - '{{Game data/config|Windows|No configuration files at all.}}' - - '{{Game data/saves|Windows|{{p|game}}\user*.too}}' -'Scooby-Doo! Case File 1: The Glowing Bug Man': + - "{{Game data/config|Windows|No configuration files at all.}}" + - "{{Game data/saves|Windows|{{p|game}}\\user*.too}}" +"Scooby-Doo! Case File 1: The Glowing Bug Man": pageId: 92499 -'Scooby-Doo! Case File 2: The Scary Stone Dragon': +"Scooby-Doo! Case File 2: The Scary Stone Dragon": pageId: 92483 -'Scooby-Doo! Case File 3: Frights! Camera! Mystery!': +"Scooby-Doo! Case File 3: Frights! Camera! Mystery!": pageId: 90773 Scooby-Doo! First Frights: pageId: 81314 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\WarnerBros\ScoobyDoo\}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\My Games\Scooby\Save_Profile1.bin}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\WarnerBros\\ScoobyDoo\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\My Games\\Scooby\\Save_Profile1.bin}}" Scooby-Doo! Jinx at the Sphinx: pageId: 92544 templates: - - '{{Game data/saves|Windows|{{P|userprofile}}\Documents\The Learning Company\Jinx At The Sphinx}}' + - "{{Game data/saves|Windows|{{P|userprofile}}\\Documents\\The Learning Company\\Jinx At The Sphinx}}" Scooby-Doo! Phantom of the Knight: pageId: 93390 Scooby-Doo! Showdown in Ghost Town: @@ -140429,8 +136711,8 @@ Scooby-Doo! Showdown in Ghost Town: Scooby-Doo! and the Spooky Swamp: pageId: 90727 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\WarnerBros\ScoobyDoo2}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Scooby2\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\WarnerBros\\ScoobyDoo2}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Scooby2\\}}" Scorb VR: pageId: 75123 steam: 612750 @@ -140443,13 +136725,13 @@ Scorch (2018): Scorched Earth: pageId: 168579 templates: - - '{{Game data/config|DOS|{{p|game}}\SCORCH.CFG}}' + - "{{Game data/config|DOS|{{p|game}}\\SCORCH.CFG}}" Scorched Planet: pageId: 155177 templates: - - '{{Game data/config|DOS|{{p|game}}\SPLANET.INI}}' - - '{{Game data/config|Windows|{{p|game}}\SPLANET.INI}}' - - '{{Game data/saves|Windows|{{p|game}}\SP0*.SAV}}' + - "{{Game data/config|DOS|{{p|game}}\\SPLANET.INI}}" + - "{{Game data/config|Windows|{{p|game}}\\SPLANET.INI}}" + - "{{Game data/saves|Windows|{{p|game}}\\SP0*.SAV}}" Score: pageId: 42563 steam: 438310 @@ -140469,32 +136751,30 @@ Scorn: pageId: 69765 steam: 698670 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Scorn\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/config|Microsoft Store|{{p|localappdata}}\Scorn\Saved\Config\WinGDK}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Scorn\Saved\SaveGames\}}' - - >- - {{Game data/saves|Microsoft - Store|{{P|localappdata}}\Packages\KeplerInteractive.1439274AB3A46_ymj30pw7xe604\SystemAppData\wgs}} -'Scorpion: Disfigured': + - "{{Game data/config|Windows|{{p|localappdata}}\\Scorn\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/config|Microsoft Store|{{p|localappdata}}\\Scorn\\Saved\\Config\\WinGDK}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Scorn\\Saved\\SaveGames\\}}" + - "{{Game data/saves|Microsoft Store|{{P|localappdata}}\\Packages\\KeplerInteractive.1439274AB3A46_ymj30pw7xe604\\SystemAppData\\wgs}}" +"Scorpion: Disfigured": pageId: 88970 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Atari\Scorpion-Disfigured\1_1_1_En}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Atari\Scorpion-Disfigured\1_1_1_En\Save}}' -'Scott Pilgrim vs. The World: The Game': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Atari\\Scorpion-Disfigured\\1_1_1_En}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Atari\\Scorpion-Disfigured\\1_1_1_En\\Save}}" +"Scott Pilgrim vs. The World: The Game": pageId: 163313 renamedFrom: - - 'Scott Pilgrim vs. The World: The Game - Complete Edition' + - "Scott Pilgrim vs. The World: The Game - Complete Edition" steam: 2215260 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\Saved Games\Scott}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\Saved Games\Scott\Savegame}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\Saved Games\\Scott}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Saved Games\\Scott\\Savegame}}" Scott in Space: pageId: 47168 steam: 385980 -'Scourge of War: Waterloo': +"Scourge of War: Waterloo": pageId: 38547 steam: 369390 -'Scourge: Outbreak': +"Scourge: Outbreak": pageId: 50494 steam: 227560 ScourgeBringer: @@ -140502,18 +136782,13 @@ ScourgeBringer: pageId: 129373 steam: 1037020 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\appdata\locallow}}\Flying Oak - Games\ScourgeBringer\settings.ini|{{p|userprofile\appdata\locallow}}\Flying Oak Games\ScourgeBringer\*.map}} - - >- - {{Game data/config|OS X|{{P|osxhome}}/Library/Application Support/Flying Oak - Games/ScourgeBringer/settings.ini|{{P|osxhome}}/Library/Application Support/Flying Oak - Games/ScourgeBringer/*.map}} - - '{{Game data/config|Linux|{{P|linuxhome}}/.scourgebringer/settings.ini|{{P|linuxhome}}/.scourgebringer/*.map}}' - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\Flying Oak Games\ScourgeBringer\*.sav}}' - - '{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/Flying Oak Games/ScourgeBringer/*.sav}}' - - '{{Game data/saves|Linux|{{P|linuxhome}}/.scourgebringer/*.sav}}' -Scout's Honor: + - "{{Game data/config|Windows|{{p|userprofile\\appdata\\locallow}}\\Flying Oak Games\\ScourgeBringer\\settings.ini|{{p|userprofile\\appdata\\locallow}}\\Flying Oak Games\\ScourgeBringer\\*.map}}" + - "{{Game data/config|OS X|{{P|osxhome}}/Library/Application Support/Flying Oak Games/ScourgeBringer/settings.ini|{{P|osxhome}}/Library/Application Support/Flying Oak Games/ScourgeBringer/*.map}}" + - "{{Game data/config|Linux|{{P|linuxhome}}/.scourgebringer/settings.ini|{{P|linuxhome}}/.scourgebringer/*.map}}" + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\Flying Oak Games\\ScourgeBringer\\*.sav}}" + - "{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/Flying Oak Games/ScourgeBringer/*.sav}}" + - "{{Game data/saves|Linux|{{P|linuxhome}}/.scourgebringer/*.sav}}" +"Scout's Honor": pageId: 122818 steam: 840880 Scrabble Champion Edition: @@ -140523,7 +136798,7 @@ Scrabble Complete: Scram: pageId: 107668 steam: 773920 -'Scramble: Battle of Britain': +"Scramble: Battle of Britain": gog: 1766004857 pageId: 168353 steam: 1530450 @@ -140546,39 +136821,39 @@ Scrap Garden: pageId: 34773 steam: 465760 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Flazm\scrap-garden\}}' - - '{{Game data/config|Linux|{{P|linuxhome}}/.config/unity3d/Flazm/scrap-garden/prefs}}' - - '{{Game data/saves|Windows|{{p|hkcu}}\Software\Flazm\scrap-garden}}' - - '{{Game data/saves|Linux|{{P|linuxhome}}/.config/unity3d/Flazm/scrap-garden/prefs}}' - - '{{Game data/saves|Steam|{{P|steam}}\userdata\{{P|uid}}\465760\remote\scrap-garden-storage.txt}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Flazm\\scrap-garden\\}}" + - "{{Game data/config|Linux|{{P|linuxhome}}/.config/unity3d/Flazm/scrap-garden/prefs}}" + - "{{Game data/saves|Windows|{{p|hkcu}}\\Software\\Flazm\\scrap-garden}}" + - "{{Game data/saves|Linux|{{P|linuxhome}}/.config/unity3d/Flazm/scrap-garden/prefs}}" + - "{{Game data/saves|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\465760\\remote\\scrap-garden-storage.txt}}" Scrap Garden - The Day Before: pageId: 51288 steam: 508390 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Flazm\scrap-garden-tdb}}' - - '{{Game data/config|Linux|{{P|linuxhome}}/.config/unity3d/Flazm/scrap-garden-tdb/prefs}}' - - '{{Game data/saves|Windows|{{p|hkcu}}\Software\Flazm\scrap-garden-tdb}}' - - '{{Game data/saves|Linux|{{P|linuxhome}}/.config/unity3d/Flazm/scrap-garden-tdb/prefs}}' - - '{{Game data/saves|Steam|{{P|steam}}/userdata/{{P|uid}}/508390/remote/scrap-garden-tdb-storage.txt}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Flazm\\scrap-garden-tdb}}" + - "{{Game data/config|Linux|{{P|linuxhome}}/.config/unity3d/Flazm/scrap-garden-tdb/prefs}}" + - "{{Game data/saves|Windows|{{p|hkcu}}\\Software\\Flazm\\scrap-garden-tdb}}" + - "{{Game data/saves|Linux|{{P|linuxhome}}/.config/unity3d/Flazm/scrap-garden-tdb/prefs}}" + - "{{Game data/saves|Steam|{{P|steam}}/userdata/{{P|uid}}/508390/remote/scrap-garden-tdb-storage.txt}}" Scrap Mechanic: pageId: 44908 steam: 387990 templates: - - '{{Game data/saves|Windows|{{p|appdata}}\Axolot Games\Scrap Mechanic\}}' + - "{{Game data/saves|Windows|{{p|appdata}}\\Axolot Games\\Scrap Mechanic\\}}" Scrap Riders: pageId: 184375 steam: 1542550 -'Scraper: First Strike': +"Scraper: First Strike": pageId: 122050 steam: 909780 -'Scraper: Gauntlet': +"Scraper: Gauntlet": pageId: 150912 steam: 1171130 Scrapland: pageId: 54216 templates: - - '{{Game data/config|Windows|{{p|game}}\Scrap.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\Save\}}' + - "{{Game data/config|Windows|{{p|game}}\\Scrap.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\Save\\}}" Scrapland Remastered: gog: 1688988400 pageId: 173652 @@ -140595,7 +136870,7 @@ Scrappers: Scraps and Patches: pageId: 121877 steam: 941400 -'Scraps: Modular Vehicle Combat': +"Scraps: Modular Vehicle Combat": pageId: 47359 steam: 350150 Scrapyard Robot Rampage: @@ -140609,16 +136884,16 @@ Scratches: pageId: 13537 steam: 46460 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Nucleosys\Scratches\|{{p|appdata}}\Nucleosys\Scratches Director''s Cut\}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Nucleosys\Scratches\|{{p|appdata}}\Nucleosys\Scratches Director''s Cut\}}' -Scratchin' Melodii: + - "{{Game data/config|Windows|{{p|appdata}}\\Nucleosys\\Scratches\\|{{p|appdata}}\\Nucleosys\\Scratches Director's Cut\\}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Nucleosys\\Scratches\\|{{p|appdata}}\\Nucleosys\\Scratches Director's Cut\\}}" +"Scratchin' Melodii": pageId: 182381 Scream Collector: pageId: 73823 steam: 726390 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\PuzzleRoo\Scream Collector}}' - - '{{Game data/saves|Windows|{{p|hkcu}}\Software\PuzzleRoo\Scream Collector}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\PuzzleRoo\\Scream Collector}}" + - "{{Game data/saves|Windows|{{p|hkcu}}\\Software\\PuzzleRoo\\Scream Collector}}" Scream of the Viking: pageId: 125175 steam: 997790 @@ -140636,26 +136911,26 @@ Screamer: pageId: 21218 steam: 697580 templates: - - '{{Game data/config|DOS|{{p|game}}\CONFIG\}}' - - '{{Game data/saves|DOS|{{p|game}}\REPLAYS\}}' + - "{{Game data/config|DOS|{{p|game}}\\CONFIG\\}}" + - "{{Game data/saves|DOS|{{p|game}}\\REPLAYS\\}}" Screamer 2: gog: 1207659141 pageId: 21222 steam: 698620 templates: - - '{{Game data/config|DOS|{{p|game}}\CONFIG\}}' - - '{{Game data/saves|DOS|{{p|game}}\REPLAYS\}}' + - "{{Game data/config|DOS|{{p|game}}\\CONFIG\\}}" + - "{{Game data/saves|DOS|{{p|game}}\\REPLAYS\\}}" Screamer 4x4: gog: 1207664523 pageId: 2856 templates: - - '{{Game data/saves|Windows|{{p|game}}\Saved}}' + - "{{Game data/saves|Windows|{{p|game}}\\Saved}}" Screamer Rally: pageId: 68763 templates: - - '{{Game data/config|DOS|{{p|game}}\CONFIG\}}' - - '{{Game data/saves|DOS|{{p|game}}\REPLAYS\}}' -'Screaming Chicken: Ultimate Showdown': + - "{{Game data/config|DOS|{{p|game}}\\CONFIG\\}}" + - "{{Game data/saves|DOS|{{p|game}}\\REPLAYS\\}}" +"Screaming Chicken: Ultimate Showdown": pageId: 154114 renamedFrom: - Screaming Chicken!/鸡你太美 @@ -140671,9 +136946,9 @@ Screencheat: pageId: 20521 steam: 301970 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Samurai Punk\SCREENCHEAT\}}' - - '{{Game data/saves|Windows|{{p|game}}\profiles\profiles.dat}}' - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\301970\remote\profiles\profiles.dat}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Samurai Punk\\SCREENCHEAT\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\profiles\\profiles.dat}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\301970\\remote\\profiles\\profiles.dat}}" Screensavers VR: pageId: 148631 steam: 881670 @@ -140690,7 +136965,7 @@ Scribble It!: pageId: 141491 steam: 1088150 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\ScribbleIt\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\ScribbleIt\\}}" Scribble Ships: pageId: 59621 steam: 548130 @@ -140710,14 +136985,14 @@ Scribblenauts Unlimited: pageId: 6369 steam: 218680 templates: - - '{{Game data/config|Windows|{{p|game}}\SAVEDATA\Profile.dat}}' - - '{{Game data/saves|Windows|{{p|game}}\SAVEDATA}}' -'Scribblenauts Unmasked: A DC Comics Adventure': + - "{{Game data/config|Windows|{{p|game}}\\SAVEDATA\\Profile.dat}}" + - "{{Game data/saves|Windows|{{p|game}}\\SAVEDATA}}" +"Scribblenauts Unmasked: A DC Comics Adventure": pageId: 10669 steam: 249870 templates: - - '{{Game data/saves|Windows|{{p|steam}}\userdata\{{p|uid}}\249870\remote\savedata}}' -'Scriptum VR: The Neighbor''s House Escape Room': + - "{{Game data/saves|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\249870\\remote\\savedata}}" +"Scriptum VR: The Neighbor's House Escape Room": pageId: 152747 steam: 1190560 Scroll2Read: @@ -140735,18 +137010,18 @@ Scrunk: Scrutinized: pageId: 173855 steam: 1384770 -Scuba's Ocean Odyssey VR: +"Scuba's Ocean Odyssey VR": pageId: 124548 steam: 985150 ScubaVenture: pageId: 133604 -'ScubaVenture: The Search for Pirate''s Treasure': +"ScubaVenture: The Search for Pirate's Treasure": gog: 1373133436 pageId: 168291 steam: 1601930 templates: - - '{{Game data/config|DOS|{{p|game}}\SCUBA.CFG}}' - - '{{Game data/saves|DOS|{{p|game}}\SCUBA.SV*|{{p|game}}\SCUBA.HS}}' + - "{{Game data/config|DOS|{{p|game}}\\SCUBA.CFG}}" + - "{{Game data/saves|DOS|{{p|game}}\\SCUBA.SV*|{{p|game}}\\SCUBA.HS}}" Scud Frenzy: pageId: 95383 steam: 864510 @@ -140763,8 +137038,8 @@ Scum: pageId: 54461 steam: 513710 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\SCUM\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\SCUM\Saved\SaveFiles\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\SCUM\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\SCUM\\Saved\\SaveFiles\\}}" Scurvy Dogs: pageId: 182739 renamedFrom: @@ -140779,7 +137054,7 @@ Scuttlers: Scutum Phanti: pageId: 141851 steam: 1098750 -'Scythe: Digital Edition': +"Scythe: Digital Edition": gog: 1621160758 pageId: 79941 steam: 718560 @@ -140787,18 +137062,18 @@ Scutum Phanti: - 893130 - 1021190 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\TKoU\Scythe\}}' - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\TKoU\Scythe\Saves\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\TKoU\\Scythe\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\TKoU\\Scythe\\Saves\\}}" Scéal: pageId: 52384 steam: 507060 Sea Battle VR: pageId: 75994 steam: 629640 -'Sea Battle: Through the Ages': +"Sea Battle: Through the Ages": pageId: 82673 steam: 787440 -'Sea Birds: End of an Age': +"Sea Birds: End of an Age": pageId: 125294 steam: 977310 Sea Bubble: @@ -140812,20 +137087,20 @@ Sea Dogs: pageId: 5566 steam: 764670 templates: - - '{{Game data/config|Windows|{{p|game}}\engine.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\RESOURCE\SAVES}}' -'Sea Dogs: Legendary Edition': + - "{{Game data/config|Windows|{{p|game}}\\engine.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\RESOURCE\\SAVES}}" +"Sea Dogs: Legendary Edition": pageId: 183736 steam: 1456830 -'Sea Dogs: To Each His Own': +"Sea Dogs: To Each His Own": pageId: 40675 steam: 223330 steamSide: - 240480 - 452520 templates: - - '{{Game data/config|Windows|{{p|game}}\engine.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\SAVE}}' + - "{{Game data/config|Windows|{{p|game}}\\engine.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\SAVE}}" Sea Explorer: pageId: 94052 steam: 846210 @@ -140836,10 +137111,10 @@ Sea Legends: gog: 2078964469 pageId: 165122 steam: 1373770 -'Sea Legends: Phantasmal Light': +"Sea Legends: Phantasmal Light": pageId: 49633 renamedFrom: - - 'Sea Legends: Phantasmal Light Collector''s Edition' + - "Sea Legends: Phantasmal Light Collector's Edition" steam: 323280 Sea Salt: gog: 1748426963 @@ -140848,18 +137123,18 @@ Sea Salt: Sea of Fatness: pageId: 73233 steam: 721740 -'Sea of Lies: Burning Coast': +"Sea of Lies: Burning Coast": pageId: 80867 steam: 786060 -'Sea of Lies: Mutiny of the Heart': +"Sea of Lies: Mutiny of the Heart": pageId: 52694 renamedFrom: - - 'Sea of Lies: Mutiny of the Heart Collector''s Edition' + - "Sea of Lies: Mutiny of the Heart Collector's Edition" steam: 551330 -'Sea of Lies: Nemesis': +"Sea of Lies: Nemesis": pageId: 62330 steam: 638250 -'Sea of Lies: Tide of Treachery': +"Sea of Lies: Tide of Treachery": pageId: 95461 steam: 866780 Sea of Memories: @@ -140869,36 +137144,30 @@ Sea of Solitude: pageId: 101044 steam: 1225590 templates: - - >- - {{Game data/config|Windows|{{P|userprofile}}\AppData\LocalLow\Jo-Mei - GmbH\SeaOfSolitude\SoS-Settings|{{p|hkcu}}\Software\Jo-Mei GmbH\SeaOfSolitude}} - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Jo-Mei GmbH\SeaOfSolitude\SoS-Progress}}' + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Jo-Mei GmbH\\SeaOfSolitude\\SoS-Settings|{{p|hkcu}}\\Software\\Jo-Mei GmbH\\SeaOfSolitude}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Jo-Mei GmbH\\SeaOfSolitude\\SoS-Progress}}" Sea of Stars: pageId: 179423 steam: 1244090 steamSide: - 2385060 templates: - - >- - {{Game data/saves|Microsoft - Store|{{P|localappdata}}\Packages\SabotageStudio.SeaofStars_p3aneehax6csy\SystemAppData\wgs\{{P|uid}}\}} - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\Sabotage Studio\Sea of Stars\*.sos}}' + - "{{Game data/saves|Microsoft Store|{{P|localappdata}}\\Packages\\SabotageStudio.SeaofStars_p3aneehax6csy\\SystemAppData\\wgs\\{{P|uid}}\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\Sabotage Studio\\Sea of Stars\\*.sos}}" Sea of Thieves: pageId: 74031 steam: 1172620 templates: - - >- - {{Game data/config|Microsoft - Store|{{p|LOCALAPPDATA}}\Packages\Microsoft.SeaofThieves_8wekyb3d8bbwe\LocalState\Athena\Saved\Config\UWP64}} - - '{{Game data/config|Steam|{{p|LOCALAPPDATA}}\Athena\Saved\Config\WindowsClient}}' + - "{{Game data/config|Microsoft Store|{{p|LOCALAPPDATA}}\\Packages\\Microsoft.SeaofThieves_8wekyb3d8bbwe\\LocalState\\Athena\\Saved\\Config\\UWP64}}" + - "{{Game data/config|Steam|{{p|LOCALAPPDATA}}\\Athena\\Saved\\Config\\WindowsClient}}" SeaBed: pageId: 57864 steam: 583090 SeaWorld Adventure Parks Tycoon: pageId: 111228 templates: - - '{{Game data/config|Windows|{{p|game}}\SWT.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\SaveGames\}}' + - "{{Game data/config|Windows|{{p|game}}\\SWT.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\SaveGames\\}}" Seabed Prelude: pageId: 57914 steam: 529730 @@ -140921,15 +137190,15 @@ Sealer Assist: Seals of the Bygone: pageId: 142256 steam: 1093790 -'Seance: The Unquiet': +"Seance: The Unquiet": pageId: 61510 steam: 614710 -'Search & Rescue: Vietnam Med Evac': +"Search & Rescue: Vietnam Med Evac": pageId: 124404 -'Search and Rescue: Coastal Heroes': +"Search and Rescue: Coastal Heroes": pageId: 111116 templates: - - '{{Game data/config|Windows|{{p|game}}\Config.dat}}' + - "{{Game data/config|Windows|{{p|game}}\\Config.dat}}" Search for Surf: pageId: 135711 steam: 958220 @@ -140959,16 +137228,14 @@ Season of 12 Colors: pageId: 37445 steam: 370280 templates: - - >- - {{Game data/saves|Windows|{{p|userprofile\Documents}}\NVLMaker\Season of 12 Colors\savedata\*.bksav | - {{p|userprofile\Documents}}\NVLMaker\Season of 12 Colors\savedata\*.png}} -'Season of Mystery: The Cherry Blossom Murders': + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\NVLMaker\\Season of 12 Colors\\savedata\\*.bksav | {{p|userprofile\\Documents}}\\NVLMaker\\Season of 12 Colors\\savedata\\*.png}}" +"Season of Mystery: The Cherry Blossom Murders": pageId: 41182 steam: 39110 Season of War (Alpha): pageId: 127844 steam: 957810 -Season's Beatings: +"Season's Beatings": pageId: 78687 steam: 749410 Seasonal Soccer: @@ -140982,9 +137249,9 @@ Seasons after Fall: pageId: 36928 steam: 366320 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\Saved Games\Seasons after Fall\UserOptions.json}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\Saved Games\Seasons after Fall\}}' - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\366320\remote\}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\Saved Games\\Seasons after Fall\\UserOptions.json}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Saved Games\\Seasons after Fall\\}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\366320\\remote\\}}" Seasteader: pageId: 58009 steam: 592550 @@ -140994,7 +137261,7 @@ Seat of War: Seclusion: pageId: 57325 steam: 578740 -'Seclusion: Islesbury': +"Seclusion: Islesbury": pageId: 69268 steam: 702490 Second Chance: @@ -141003,7 +137270,7 @@ Second Chance: Second Coming: pageId: 39442 steam: 474880 -'Second Coming: Tactical Training': +"Second Coming: Tactical Training": pageId: 48046 steam: 355090 Second Death: @@ -141016,8 +137283,8 @@ Second Extinction: pageId: 160248 steam: 1024380 templates: - - '{{Game data/config|Windows|{{P|userprofile}}\Saved Games\Avalanche Studios\Second Extinction}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\Saved Games\Avalanche Studios\Second Extinction\Saves}}' + - "{{Game data/config|Windows|{{P|userprofile}}\\Saved Games\\Avalanche Studios\\Second Extinction}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\Saved Games\\Avalanche Studios\\Second Extinction\\Saves}}" Second Final: pageId: 141346 steam: 1107100 @@ -141025,11 +137292,11 @@ Second Front: pageId: 187149 steam: 1148490 templates: - - '{{Game data/saves|Windows|{{p|game}}\Second Front_Data\StreamingAssets\AutoSave\*.scen}}' + - "{{Game data/saves|Windows|{{p|game}}\\Second Front_Data\\StreamingAssets\\AutoSave\\*.scen}}" Second Galaxy: pageId: 144819 steam: 1133730 -'Second Hand: Frankie''s Revenge': +"Second Hand: Frankie's Revenge": pageId: 90624 steam: 727930 Second Hazardous Course: @@ -141043,12 +137310,12 @@ Second Sight: pageId: 19832 steam: 11550 templates: - - '{{Game data/config|Windows|{{p|game}}\secondsight.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\profiles\}}' + - "{{Game data/config|Windows|{{p|game}}\\secondsight.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\profiles\\}}" Second Warfare: pageId: 47541 steam: 372740 -'Second World: Air War S': +"Second World: Air War S": pageId: 124030 steam: 960800 SecondSpeed: @@ -141065,25 +137332,25 @@ Secret Agent: pageId: 30433 steam: 358350 templates: - - '{{Game data/config|DOS|{{p|game}}\SAM1.CFG}}' - - '{{Game data/saves|DOS|{{p|game}}\SAM1-*.SAV}}' + - "{{Game data/config|DOS|{{p|game}}\\SAM1.CFG}}" + - "{{Game data/saves|DOS|{{p|game}}\\SAM1-*.SAV}}" Secret Agent Barbie: pageId: 170640 renamedFrom: - - 'Barbie: Secret Agent' + - "Barbie: Secret Agent" templates: - - '{{Game data/saves|Windows|{{p|game}}\Saves\}}' + - "{{Game data/saves|Windows|{{p|game}}\\Saves\\}}" Secret Agent HD: gog: 2000481821 pageId: 169607 steam: 1607670 -'Secret City: The Human Threat': +"Secret City: The Human Threat": pageId: 140824 steam: 1121340 Secret Doctrine: pageId: 62955 steam: 645810 -'Secret Files 2: Puritas Cordis': +"Secret Files 2: Puritas Cordis": gog: 1425136034 pageId: 41212 steam: 40340 @@ -141092,18 +137359,18 @@ Secret Files 3: pageId: 40733 steam: 216210 templates: - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Secret Files 3}}' -'Secret Files: Sam Peters': + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Secret Files 3}}" +"Secret Files: Sam Peters": gog: 1555921669 pageId: 40572 steam: 257220 -'Secret Files: Tunguska': +"Secret Files: Tunguska": gog: 1131357530 pageId: 41213 steam: 40330 templates: - - '{{Game data/config|Windows|{{P|game}}\config.ini|{{P|game}}\settings.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\savegame\}}' + - "{{Game data/config|Windows|{{P|game}}\\config.ini|{{P|game}}\\settings.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\savegame\\}}" Secret Government: gog: 1379373014 pageId: 114722 @@ -141115,37 +137382,37 @@ Secret Little Haven: pageId: 91070 steam: 827290 templates: - - '{{Game data/saves|Windows|{{p|USERPROFILE}}\AppData\LocalLow\Hummingwarp\Secret Little Haven}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Hummingwarp/Secret Little Haven}}' + - "{{Game data/saves|Windows|{{p|USERPROFILE}}\\AppData\\LocalLow\\Hummingwarp\\Secret Little Haven}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Hummingwarp/Secret Little Haven}}" Secret Neighbor: pageId: 98388 steam: 859570 Secret Oops!: pageId: 157723 -'Secret Ponchos: Most Wanted Edition': +"Secret Ponchos: Most Wanted Edition": pageId: 18033 steam: 265750 -'Secret Saga: Xamadeon Stone': +"Secret Saga: Xamadeon Stone": pageId: 191137 steam: 972760 templates: - - '{{Game data/config|Windows|{{P|userprofile\appdata\locallow}}\Halit Buyukyilmaz\HiddenSaga}}' - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Halit Buyukyilmaz\HiddenSaga}}' + - "{{Game data/config|Windows|{{P|userprofile\\appdata\\locallow}}\\Halit Buyukyilmaz\\HiddenSaga}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Halit Buyukyilmaz\\HiddenSaga}}" Secret Santa: pageId: 54291 steam: 500690 Secret Service: pageId: 126713 templates: - - '{{Game data/config|Windows|{{p|game}}\Profiles\}}' - - '{{Game data/saves|Windows|{{p|game}}\Profiles\}}' -'Secret Service: In Harm''s Way': + - "{{Game data/config|Windows|{{p|game}}\\Profiles\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\Profiles\\}}" +"Secret Service: In Harm's Way": pageId: 126715 -'Secret Service: Security Breach': +"Secret Service: Security Breach": pageId: 86793 templates: - - '{{Game data/config|Windows|{{p|game}}\ss2\settings\}}' - - '{{Game data/saves|Windows|{{p|game}}\ss2\settings\levels.sav}}' + - "{{Game data/config|Windows|{{p|game}}\\ss2\\settings\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\ss2\\settings\\levels.sav}}" Secret Weapons over Normandy: pageId: 175971 renamedFrom: @@ -141161,19 +137428,19 @@ Secret of Magia: pageId: 46759 steam: 396160 templates: - - '{{Game data/saves|Windows|{{p|game}}\*.rvdata2}}' + - "{{Game data/saves|Windows|{{p|game}}\\*.rvdata2}}" Secret of Mana: pageId: 68794 steam: 637670 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Secret of Mana\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Secret of Mana\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Secret of Mana\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Secret of Mana\\}}" Secret of the Magic Crystals: pageId: 7802 steam: 45100 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\SOFTWARE\ArtWareGames Inc.\Secret of the Magic Crystals\}}' - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\45100\remote\saveX.dat}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\ArtWareGames Inc.\\Secret of the Magic Crystals\\}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\45100\\remote\\saveX.dat}}" Secret of the Pendulum: pageId: 43692 steam: 434540 @@ -141188,9 +137455,9 @@ Secret of the Silver Blades: pageId: 31121 steam: 1904521 templates: - - '{{Game data/config|DOS|{{p|game}}\BLADES.CFG}}' - - '{{Game data/saves|DOS|{{p|game}}\SAVE\}}' -'Secrets and Treasure: The Lost Cities': + - "{{Game data/config|DOS|{{p|game}}\\BLADES.CFG}}" + - "{{Game data/saves|DOS|{{p|game}}\\SAVE\\}}" +"Secrets and Treasure: The Lost Cities": pageId: 177958 Secrets of Adventure: pageId: 128613 @@ -141206,15 +137473,15 @@ Secrets of Grindea: steam: 269770 steamSide: - 292050 - - 403220 - 372500 + - 403220 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Secrets of Grindea\Config.txt}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Secrets of Grindea\}}' -'Secrets of Magic 2: Witches and Wizards': + - "{{Game data/config|Windows|{{p|appdata}}\\Secrets of Grindea\\Config.txt}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Secrets of Grindea\\}}" +"Secrets of Magic 2: Witches and Wizards": pageId: 72989 steam: 713430 -'Secrets of Magic: The Book of Spells': +"Secrets of Magic: The Book of Spells": pageId: 51453 steam: 453780 Secrets of Me: @@ -141224,28 +137491,28 @@ Secrets of Rætikon: pageId: 14215 steam: 246680 templates: - - '{{Game data/config|Windows|{{p|game}}\save\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Secrets of Raetikon/}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.secrets-of-raetikon/}}' - - '{{Game data/saves|Windows|{{p|game}}\save\sync\master\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Secrets of Raetikon/}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.secrets-of-raetikon/sync/master/}}' + - "{{Game data/config|Windows|{{p|game}}\\save\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Secrets of Raetikon/}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.secrets-of-raetikon/}}" + - "{{Game data/saves|Windows|{{p|game}}\\save\\sync\\master\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Secrets of Raetikon/}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.secrets-of-raetikon/sync/master/}}" Secrets of War: pageId: 135311 steam: 1062050 -'Secrets of the Past: Dion': +"Secrets of the Past: Dion": pageId: 121413 steam: 860550 Section 8: pageId: 27577 steam: 38220 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Section8\S8Game\Config\}}' -'Section 8: Prejudice': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Section8\\S8Game\\Config\\}}" +"Section 8: Prejudice": pageId: 3953 steam: 97100 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Section 8 Prejudice - PC\S9Game\Config\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Section 8 Prejudice - PC\\S9Game\\Config\\}}" Sector: pageId: 47445 steam: 366960 @@ -141261,33 +137528,33 @@ Sector Six: Sector Zero: pageId: 39775 steam: 348580 -Sector's Edge: +"Sector's Edge": pageId: 135707 steam: 1024890 Security Booth: pageId: 181227 -'Security Booth: Director''s Cut': +"Security Booth: Director's Cut": pageId: 181224 steam: 1828690 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\SecurityBoothDC\Config\WindowsNoEditor}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\SecurityBoothDC\Saved\SaveGames}}' -'Security Breach: Fury''s Rage': + - "{{Game data/config|Windows|{{P|localappdata}}\\SecurityBoothDC\\Config\\WindowsNoEditor}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\SecurityBoothDC\\Saved\\SaveGames}}" +"Security Breach: Fury's Rage": pageId: 185136 templates: - - '{{Game data/config|Windows|{{P|appdata}}\MMFApplications\SB}}' + - "{{Game data/config|Windows|{{P|appdata}}\\MMFApplications\\SB}}" Security Hole: pageId: 38841 steam: 503460 -'Seduce Me 2: The Demon War': +"Seduce Me 2: The Demon War": pageId: 37738 steam: 461700 Seduce Me the Otome: pageId: 38440 steam: 367120 templates: - - '{{Game data/config|Windows|{{p|appdata}}\RenPy\SeduceMeOfficialGameData\persistent}}' - - '{{Game data/saves|Windows|{{p|appdata}}\RenPy\SeduceMeOfficialGameData\*.save}}' + - "{{Game data/config|Windows|{{p|appdata}}\\RenPy\\SeduceMeOfficialGameData\\persistent}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\RenPy\\SeduceMeOfficialGameData\\*.save}}" Seduction: pageId: 65295 steam: 660180 @@ -141301,7 +137568,7 @@ See No Evil: pageId: 49717 steam: 313830 templates: - - '{{Game data/saves|Windows|{{p|localappdata}}\See_No_Evil\gamedata.ini}}' + - "{{Game data/saves|Windows|{{p|localappdata}}\\See_No_Evil\\gamedata.ini}}" Seed Hunter: pageId: 136938 steam: 1078490 @@ -141314,7 +137581,7 @@ Seed of Evil: Seed of Life: pageId: 136039 steam: 1030060 -'Seed of the Arcane: Episode 1': +"Seed of the Arcane: Episode 1": pageId: 62028 steam: 601020 Seed of the Dead: @@ -141322,8 +137589,8 @@ Seed of the Dead: pageId: 124715 steam: 958480 templates: - - '{{Game data/saves|Windows|{{p|localappdata}}\SeedOfTheDead\Saved\SaveGames\*.sav}}' -'Seed of the Dead: Sweet Home': + - "{{Game data/saves|Windows|{{p|localappdata}}\\SeedOfTheDead\\Saved\\SaveGames\\*.sav}}" +"Seed of the Dead: Sweet Home": gog: 1455223208 pageId: 172283 steam: 1566390 @@ -141331,8 +137598,8 @@ Seeders: pageId: 46775 steam: 363670 templates: - - '{{Game data/config|Windows|{{P|appdata}}\Bigosaur\Seeders\settings.json}}' - - '{{Game data/saves|Windows|{{P|appdata}}\Bigosaur\Seeders\checkpoint*.json}}' + - "{{Game data/config|Windows|{{P|appdata}}\\Bigosaur\\Seeders\\settings.json}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\Bigosaur\\Seeders\\checkpoint*.json}}" Seeds of Chaos: pageId: 156557 steam: 1205950 @@ -141349,53 +137616,53 @@ Seek Girl: pageId: 125932 steam: 998930 templates: - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\DSGame\SeekGirl\*.sav}}' + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\DSGame\\SeekGirl\\*.sav}}" Seek Girl II: pageId: 149305 renamedFrom: - Seek Girl Ⅱ steam: 1149660 templates: - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\DSGame\Seek Girl Two\save1_9.sav}}' + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\DSGame\\Seek Girl Two\\save1_9.sav}}" Seek Girl III: pageId: 152677 renamedFrom: - Seek Girl Ⅲ steam: 1191210 templates: - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\DSGame\Seek Girl Three\sg3_save1_6.sav}}' + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\DSGame\\Seek Girl Three\\sg3_save1_6.sav}}" Seek Girl IV: pageId: 155683 renamedFrom: - Seek Girl Ⅳ steam: 1212830 templates: - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\DSGame\Seek Girl Four\sg4_1.sav}}' + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\DSGame\\Seek Girl Four\\sg4_1.sav}}" Seek Girl V: pageId: 166691 steam: 1393410 templates: - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\DSGame\Seek Girl V\SaveData\Save.sav}}' + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\DSGame\\Seek Girl V\\SaveData\\Save.sav}}" Seek Girl VI: pageId: 166696 steam: 1419730 templates: - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\DSGame\Seek Girl VI\SaveData\Save.sav}}' + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\DSGame\\Seek Girl VI\\SaveData\\Save.sav}}" Seek Girl VII: pageId: 166707 steam: 1464930 templates: - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\DSGame\Seek Girl VII\SaveData\Save0.sav}}' + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\DSGame\\Seek Girl VII\\SaveData\\Save0.sav}}" Seek Girl VIII: pageId: 173516 steam: 1509090 templates: - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\DSGame\Seek Girl ⅤⅢ\SaveData\Save0.sav}}' -'Seek Girl: Fog I': + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\DSGame\\Seek Girl ⅤⅢ\\SaveData\\Save0.sav}}" +"Seek Girl: Fog I": pageId: 166693 steam: 1263370 templates: - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\DSGame\SeekGirlFogOne\*.sav}}' + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\DSGame\\SeekGirlFogOne\\*.sav}}" Seek Hearts: pageId: 152737 steam: 1176590 @@ -141418,11 +137685,11 @@ Seeking Dawn: pageId: 99842 steam: 859340 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Multiverse\SeekingDawn\}}' -'Seeking Dawn: Free to Play Edition': + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Multiverse\\SeekingDawn\\}}" +"Seeking Dawn: Free to Play Edition": pageId: 121123 steam: 793170 -'Seeking Evil: The Wendigo': +"Seeking Evil: The Wendigo": pageId: 60309 steam: 571340 Seen: @@ -141440,48 +137707,43 @@ Sega Bass Fishing (Steam): pageId: 22985 steam: 71240 templates: - - '{{Game data/config|Windows|{{p|game}}\*.xml}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\SEGA\Dreamcast Collection\SEGA Bass Fishing\}}' + - "{{Game data/config|Windows|{{p|game}}\\*.xml}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\SEGA\\Dreamcast Collection\\SEGA Bass Fishing\\}}" Sega GT: pageId: 123050 templates: - - '{{Game data/config|Windows|{{p|game}}\config.sgs}}' - - '{{Game data/saves|Windows|{{p|game}}\Segagt.sgs}}' + - "{{Game data/config|Windows|{{p|game}}\\config.sgs}}" + - "{{Game data/saves|Windows|{{p|game}}\\Segagt.sgs}}" Sega Mega Drive and Genesis Classics: pageId: 8008 steam: 34270 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\SEGA Mega Drive - Classics\setup.dat|{{p|userprofile\Documents}}\SEGA Genesis Classics\setup.dat|{{p|userprofile\Documents}}\SEGA - Genesis Classics Collection\setup.dat|{{p|hkcu}}\SOFTWARE\Sega\SEGA Genesis & Mega Drive Classics}} - - '{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/Sega/SEGA Mega Drive Classics/prefs}}' - - >- - {{Game data/saves|Windows|{{p|userprofile\Documents}}\SEGA Mega Drive Classics\|{{p|userprofile\Documents}}\SEGA - Genesis Classics\}} - - '{{Game data/saves|Linux|{{P|linuxhome}}/SEGA Mega Drive Classics/user_{{P|uid}}/}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\SEGA Mega Drive Classics\\setup.dat|{{p|userprofile\\Documents}}\\SEGA Genesis Classics\\setup.dat|{{p|userprofile\\Documents}}\\SEGA Genesis Classics Collection\\setup.dat|{{p|hkcu}}\\SOFTWARE\\Sega\\SEGA Genesis & Mega Drive Classics}}" + - "{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/Sega/SEGA Mega Drive Classics/prefs}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\SEGA Mega Drive Classics\\|{{p|userprofile\\Documents}}\\SEGA Genesis Classics\\}}" + - "{{Game data/saves|Linux|{{P|linuxhome}}/SEGA Mega Drive Classics/user_{{P|uid}}/}}" Sega Rally 2: pageId: 24292 templates: - - '{{Game data/saves|Windows|{{p|game}}\SR2_SAVE.DAT}}' + - "{{Game data/saves|Windows|{{p|game}}\\SR2_SAVE.DAT}}" Sega Rally Championship: pageId: 23507 templates: - - '{{Game data/config|Windows|{{p|game}}\RALLY.INI}}' - - '{{Game data/saves|Windows|{{p|game}}\SRALLY_0}}' + - "{{Game data/config|Windows|{{p|game}}\\RALLY.INI}}" + - "{{Game data/saves|Windows|{{p|game}}\\SRALLY_0}}" Sega Rally Revo: pageId: 59787 steam: 10400 steamSide: - 4790 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\SEGA Rally\Saved Games\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\SEGA Rally\Saved Games\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\SEGA Rally\\Saved Games\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\SEGA Rally\\Saved Games\\}}" Sega Smash Pack 2: pageId: 16384 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/saves|Windows|{{p|game}}\}}' + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\}}" Sega Superstars Tennis: pageId: 26733 Sega Swirl: @@ -141489,7 +137751,7 @@ Sega Swirl: Sega Touring Car Championship: pageId: 24892 templates: - - '{{Game data/config|Windows|{{p|windir}}\stcc.INI}}' + - "{{Game data/config|Windows|{{p|windir}}\\stcc.INI}}" Segfault: pageId: 75677 steam: 715290 @@ -141508,12 +137770,12 @@ Seirei: Seishin - Virtual Rhythm: pageId: 82363 steam: 770160 -'Sekiro: Shadows Die Twice': +"Sekiro: Shadows Die Twice": pageId: 97613 steam: 814380 templates: - - '{{Game data/config|Windows|{{P|appdata}}\Sekiro\GraphicsConfig.xml}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Sekiro\{{P|uid}}\S0000.sl2}}' + - "{{Game data/config|Windows|{{P|appdata}}\\Sekiro\\GraphicsConfig.xml}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Sekiro\\{{P|uid}}\\S0000.sl2}}" Sekwere: pageId: 42219 steam: 501720 @@ -141523,9 +137785,9 @@ Selaco: steamSide: - 1966350 templates: - - '{{Game data/config|Windows|{{p|game}}\selaco-demo-.ini {{note|This config file is for the Selaco Demo}}}}' - - '{{Game data/saves|Windows|{{p|game}}\Save\*.zds}}' -'Selatria: Advent of the Dakk''rian Empire': + - "{{Game data/config|Windows|{{p|game}}\\selaco-demo-.ini {{note|This config file is for the Selaco Demo}}}}" + - "{{Game data/saves|Windows|{{p|game}}\\Save\\*.zds}}" +"Selatria: Advent of the Dakk'rian Empire": pageId: 56659 steam: 578890 Selenon Rising: @@ -141546,10 +137808,10 @@ Self-Reliance 自我性赖: Self-knowledge VR: pageId: 125095 steam: 958680 -'Selfie Games: A Multiplayer Couch Party Game': +"Selfie Games: A Multiplayer Couch Party Game": pageId: 137308 steam: 897650 -'Selfie: Sisters of the Amniotic Lens': +"Selfie: Sisters of the Amniotic Lens": pageId: 47966 steam: 287140 SelfieTennis: @@ -141568,7 +137830,7 @@ Selling Sunlight: Sellsword VR: pageId: 68939 steam: 676460 -'Sellswords: Ashen Company': +"Sellswords: Ashen Company": pageId: 130243 steam: 1037570 Selma and the Wisp: @@ -141579,7 +137841,7 @@ Semblance: pageId: 89656 steam: 700160 templates: - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\NYAMAKOP\Semblance}}' + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\NYAMAKOP\\Semblance}}" Semi-Sweet Tofu: pageId: 92267 steam: 841830 @@ -141587,8 +137849,8 @@ Semispheres: pageId: 51163 steam: 448800 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Vivid Helix\Semispheres\}}' - - '{{Game data/saves|Windows|{{P|game}}\semispheres.sav3}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Vivid Helix\\Semispheres\\}}" + - "{{Game data/saves|Windows|{{P|game}}\\semispheres.sav3}}" Senalux: pageId: 69036 steam: 654580 @@ -141597,8 +137859,8 @@ Sengoku: pageId: 15542 steam: 73210 templates: - - '{{Game data/config|Windows|{{P|game}}\settings.txt}}' - - '{{Game data/saves|Windows|{{P|game}}\save games\}}' + - "{{Game data/config|Windows|{{P|game}}\\settings.txt}}" + - "{{Game data/saves|Windows|{{P|game}}\\save games\\}}" Sengoku (2017): pageId: 133139 Sengoku 2: @@ -141610,7 +137872,7 @@ Sengoku Dynasty: gog: 1414368460 pageId: 174573 steam: 1702010 -'Sengoku Jidai: Shadow of the Shogun': +"Sengoku Jidai: Shadow of the Shogun": gog: 2103245994 pageId: 42991 steam: 397190 @@ -141621,8 +137883,8 @@ Sengoku Rance: gog: 1567591607 pageId: 175892 templates: - - '{{Game data/config|Windows|{{P|game}}\System40.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\SaveData}}' + - "{{Game data/config|Windows|{{P|game}}\\System40.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\SaveData}}" Senity: pageId: 130795 steam: 1047600 @@ -141630,54 +137892,54 @@ Senko no Ronde 2: pageId: 62493 steam: 574160 templates: - - '{{Game data/saves|Windows|{{p|game}}\GAME.DAT}}' + - "{{Game data/saves|Windows|{{p|game}}\\GAME.DAT}}" Senna and the Forest: pageId: 144311 steam: 1113690 -'Senpai Teaches Me Japanese: Part 1': +"Senpai Teaches Me Japanese: Part 1": pageId: 129865 steam: 1037330 Senran Kagura Bon Appétit! - Full Course: pageId: 53057 steam: 514310 templates: - - '{{Game data/saves|Windows|{{p|game}}\DeploymentRoot\savedata}}' -'Senran Kagura Burst Re:Newal': + - "{{Game data/saves|Windows|{{p|game}}\\DeploymentRoot\\savedata}}" +"Senran Kagura Burst Re:Newal": pageId: 125815 steam: 889510 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Senran Kagura Burst ReNewal\{{file|config.ini}}}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\Senran Kagura Burst ReNewal\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\Senran Kagura Burst ReNewal\\{{file|config.ini}}}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Senran Kagura Burst ReNewal\\}}" Senran Kagura Estival Versus: pageId: 58559 steam: 502800 templates: - - '{{Game data/config|Steam|{{p|game}}/savedata/{{p|UID}}/config.dat}}' - - '{{Game data/saves|Steam|{{p|game}}/savedata/{{p|UID}}}}' + - "{{Game data/config|Steam|{{p|game}}/savedata/{{p|UID}}/config.dat}}" + - "{{Game data/saves|Steam|{{p|game}}/savedata/{{p|UID}}}}" Senran Kagura Peach Ball: pageId: 142627 steam: 1074080 templates: - - '{{Game data/config|Windows|{{p|game}}\savedata\{{p|uid}}\}}' - - '{{Game data/saves|Windows|{{p|game}}\savedata\{{p|uid}}\}}' + - "{{Game data/config|Windows|{{p|game}}\\savedata\\{{p|uid}}\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\savedata\\{{p|uid}}\\}}" Senran Kagura Peach Beach Splash: pageId: 87335 steam: 696170 templates: - - '{{Game data/config|Steam|{{p|game}}/savedata/{{p|UID}}/config.dat}}' - - '{{Game data/saves|Steam|{{p|game}}/savedata/{{p|UID}}}}' + - "{{Game data/config|Steam|{{p|game}}/savedata/{{p|UID}}/config.dat}}" + - "{{Game data/saves|Steam|{{p|game}}/savedata/{{p|UID}}}}" Senran Kagura Reflexions: pageId: 140062 steam: 981770 templates: - - '{{Game data/saves|Windows|{{p|game}}/savedata/}}' + - "{{Game data/saves|Windows|{{p|game}}/savedata/}}" Senran Kagura Shinovi Versus: gog: 1460733127 pageId: 33058 steam: 411830 templates: - - '{{Game data/config|Windows|{{p|game}}\savedata\senran2_sys.dat}}' - - '{{Game data/saves|Windows|{{p|game}}\savedata\senran2_*.dat}}' + - "{{Game data/config|Windows|{{p|game}}\\savedata\\senran2_sys.dat}}" + - "{{Game data/saves|Windows|{{p|game}}\\savedata\\senran2_*.dat}}" Senran Meisuishu Tactics: pageId: 81368 steam: 785750 @@ -141688,26 +137950,20 @@ Senren * Banka: - Senren*Banka steam: 1144400 templates: - - '{{Game data/config|Windows|{{p|appdata}}\YuzuSoft\SenrenBanka}}' - - '{{Game data/saves|Windows|{{p|appdata}}\YuzuSoft\SenrenBanka}}' - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\1144400\remote\}}' + - "{{Game data/config|Windows|{{p|appdata}}\\YuzuSoft\\SenrenBanka}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\YuzuSoft\\SenrenBanka}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\1144400\\remote\\}}" Sense of the Devil: pageId: 69878 steam: 705710 -'Sense: A Cyberpunk Ghost Story': +"Sense: A Cyberpunk Ghost Story": pageId: 142254 renamedFrom: - Sense steam: 1120560 templates: - - >- - {{Game data/config|Windows|{{p|HKCU}}\Software\Suzaku\Sense - A Cyberpunk Ghost Story{{note|The registry location - is where Unity saves display options. The rest is in settings0.dat}} - - |{{P|userprofile\appdata\LocalLow}}\Suzaku\Sense - A Cyberpunk Ghost Story\settings0.dat}} - - >- - {{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Suzaku\Sense - A Cyberpunk Ghost - Story\settings0.dat}} + - "{{Game data/config|Windows|{{p|HKCU}}\\Software\\Suzaku\\Sense - A Cyberpunk Ghost Story{{note|The registry location is where Unity saves display options. The rest is in settings0.dat}}\n|{{P|userprofile\\appdata\\LocalLow}}\\Suzaku\\Sense - A Cyberpunk Ghost Story\\settings0.dat}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Suzaku\\Sense - A Cyberpunk Ghost Story\\settings0.dat}}" Sensible Blood Rugby Sevens: pageId: 149853 steam: 1140870 @@ -141721,8 +137977,8 @@ Sensorium: pageId: 164644 steam: 1307870 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Sensorium\Saved\Config\WindowsNoEditor}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Sensorium\Saves}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Sensorium\\Saved\\Config\\WindowsNoEditor}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Sensorium\\Saves}}" Sensual Adventures - The Game: pageId: 174942 steam: 1525600 @@ -141738,7 +137994,7 @@ Sentenced: Sentenced VR: pageId: 142303 steam: 1111830 -'Sentience: The Android''s Tale': +"Sentience: The Android's Tale": pageId: 62596 steam: 635850 Sentient: @@ -141746,15 +138002,15 @@ Sentient: Sentinel: pageId: 50401 steam: 293200 -'Sentinel 3: Homeworld': +"Sentinel 3: Homeworld": pageId: 50693 steam: 275350 -'Sentinel 4: Dark Star': +"Sentinel 4: Dark Star": pageId: 46897 steam: 386840 Sentinel Returns: pageId: 25881 -'Sentinel Worlds I: Future Magic': +"Sentinel Worlds I: Future Magic": pageId: 24883 Sentinel Zero: pageId: 113120 @@ -141770,25 +138026,25 @@ Sentinels of the Multiverse: steam: 337150 steamSide: - 344050 + - 348100 - 351390 - 369050 + - 382220 + - 396510 - 410480 - 429110 + - 443440 - 451710 - 467510 - - 348100 - - 396510 - - 382220 - - 443440 - 467516 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Handelabra Games Inc.\Sentinels\}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Handelabra Games Inc_\Sentinels\}}' - - '{{Game data/saves|Steam|{{P|steam}}\userdata\{{P|uid}}\337150\remote\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Handelabra Games Inc.\\Sentinels\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Handelabra Games Inc_\\Sentinels\\}}" + - "{{Game data/saves|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\337150\\remote\\}}" Sento Stream: pageId: 149891 steam: 1096970 -'Sentou Gakuen: Revival': +"Sentou Gakuen: Revival": pageId: 39514 steam: 405680 Sentris: @@ -141798,9 +138054,9 @@ Sentry Knight Tactics: pageId: 40144 steam: 503210 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Sentry Knight Tactics\settings\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Sentry Knight Tactics\saves\}}' -'Senua’s Saga: Hellblade II': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Sentry Knight Tactics\\settings\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Sentry Knight Tactics\\saves\\}}" +"Senua’s Saga: Hellblade II": pageId: 154854 steam: 2461850 Senza Peso: @@ -141817,29 +138073,25 @@ Sepia Tears: pageId: 38055 steam: 429300 templates: - - '{{Game data/config|Windows|{{p|game}}\renpy\config.py|{{p|game}}\RepriseEdition\renpy\config.py}}' - - >- - {{Game data/saves|Windows|{{p|appdata}}\RenPy\Sepia Tears ~midwinter's - reprise~-1251418373\|{{p|appdata}}\RenPy\sepia-tears-reprise-edition\}} + - "{{Game data/config|Windows|{{p|game}}\\renpy\\config.py|{{p|game}}\\RepriseEdition\\renpy\\config.py}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\RenPy\\Sepia Tears ~midwinter's reprise~-1251418373\\|{{p|appdata}}\\RenPy\\sepia-tears-reprise-edition\\}}" September 7th: pageId: 184348 steam: 2249160 templates: - - >- - {{Game - data/config|Windows|{{P|localappdata}}\September_7th\Saved\SaveGames\saved_namespace.sav|{{P|localappdata}}\September_7th\Saved\Config\WindowsNoEditor\}} - - '{{Game data/saves|Windows|{{P|localappdata}}\September_7th\Saved\SaveGames\}}' -'Septerra Core: Legacy of the Creator': + - "{{Game data/config|Windows|{{P|localappdata}}\\September_7th\\Saved\\SaveGames\\saved_namespace.sav|{{P|localappdata}}\\September_7th\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\September_7th\\Saved\\SaveGames\\}}" +"Septerra Core: Legacy of the Creator": gog: 1207658742 pageId: 21512 steam: 253940 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/saves|Windows|{{p|game}}\savedata\}}' + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\savedata\\}}" Septic Savages: pageId: 52574 steam: 547000 -'Sequence: Robot Programming Simulator': +"Sequence: Robot Programming Simulator": pageId: 110776 renamedFrom: - Sequence - Robot programming simulator @@ -141848,14 +138100,14 @@ Serafina and the Key to the Egg: gog: 1293721099 pageId: 178656 steam: 1410980 -Serafina's Crown: +"Serafina's Crown": pageId: 44148 steam: 449340 Seraph: pageId: 37413 steam: 425670 templates: - - '{{Game data/saves|Windows|{{p|localappdata}}\Seraph\}}' + - "{{Game data/saves|Windows|{{p|localappdata}}\\Seraph\\}}" Seraphic Destroyer: pageId: 152957 steam: 1118820 @@ -141869,7 +138121,7 @@ Serena: pageId: 29852 steam: 272060 templates: - - '{{Game data/config|Windows|{{p|game}}\config.lua}}' + - "{{Game data/config|Windows|{{p|game}}\\config.lua}}" Serenade of the Sirens: pageId: 109426 steam: 901000 @@ -141878,10 +138130,10 @@ Serial Cleaner: pageId: 50759 steam: 522210 templates: - - '{{Game data/config|Windows|{{P|userprofile}}\AppData\LocalLow\iFun4all\Serial Cleaner\settings.conf}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/ifun4all/Serial Cleaner/settings.conf}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\iFun4all\Serial Cleaner\*.sav}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/ifun4all/Serial Cleaner/*.sav}}' + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\iFun4all\\Serial Cleaner\\settings.conf}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/ifun4all/Serial Cleaner/settings.conf}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\iFun4all\\Serial Cleaner\\*.sav}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/ifun4all/Serial Cleaner/*.sav}}" Serial Cleaners: gog: 1676910822 gogSide: @@ -141891,17 +138143,15 @@ Serial Cleaners: steamSide: - 2291430 templates: - - >- - {{Game - data/config|Windows|{{p|userprofile}}\AppData\LocalLow\DrawDistance\SerialCleaners\*\{{p|uid}}\Common\|{{p|hkcu}}\Software\DrawDistance\SerialCleaners\}} - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\DrawDistance\SerialCleaners\*\{{p|uid}}\Slot*\}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\DrawDistance\\SerialCleaners\\*\\{{p|uid}}\\Common\\|{{p|hkcu}}\\Software\\DrawDistance\\SerialCleaners\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\DrawDistance\\SerialCleaners\\*\\{{p|uid}}\\Slot*\\}}" Serin Fate: gog: 1570962649 pageId: 137120 steam: 1070860 templates: - - '{{Game data/config|Windows|{{P|userprofile}}\AppData\Local\Serin_Fate\main.data}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\Local\Serin_Fate}}' + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\Local\\Serin_Fate\\main.data}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\Local\\Serin_Fate}}" Serious Metal Detecting: pageId: 61742 steam: 582810 @@ -141914,36 +138164,34 @@ Serious Sam 2: steamSide: - 1585110 templates: - - '{{Game data/config|Windows|{{p|game}}\Content\SeriousSam2\Sam2.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\Content\SeriousSam2\PlayerProfiles\}}' -'Serious Sam 3 VR: BFE': + - "{{Game data/config|Windows|{{p|game}}\\Content\\SeriousSam2\\Sam2.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\Content\\SeriousSam2\\PlayerProfiles\\}}" +"Serious Sam 3 VR: BFE": pageId: 75978 steam: 567670 -'Serious Sam 3: BFE': +"Serious Sam 3: BFE": pageId: 1665 steam: 41070 steamSide: - 41074 - 200330 templates: - - '{{Game data/config|Steam|{{p|steam}}/userdata/{{p|uid}}/41070/local/SeriousSam3.ini}}' - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/41070/}}' + - "{{Game data/config|Steam|{{p|steam}}/userdata/{{p|uid}}/41070/local/SeriousSam3.ini}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/41070/}}" Serious Sam 4: gog: 1407036516 pageId: 92526 steam: 257420 templates: - - '{{Game data/config|Steam|{{P|steam}}\userdata\{{P|uid}}\257420\local\SeriousSam4.ini}}' - - '{{Game data/saves|Windows|{{P|game}}\UserData\{{P|uid}}\SeriousSam4\}}' - - '{{Game data/saves|Steam|{{P|steam}}\userdata\{{P|uid}}\257420\remote\}}' -'Serious Sam Classics: Revolution': + - "{{Game data/config|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\257420\\local\\SeriousSam4.ini}}" + - "{{Game data/saves|Windows|{{P|game}}\\UserData\\{{P|uid}}\\SeriousSam4\\}}" + - "{{Game data/saves|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\257420\\remote\\}}" +"Serious Sam Classics: Revolution": pageId: 19189 steam: 227780 templates: - - >- - {{Game - data/config|Windows|{{p|Steam}}\userdata\{{p|uid}}\227780\local\PersistentSymbols.ini|{{p|Steam}}\userdata\{{p|uid}}\227780\local\Controls\}} - - '{{Game data/saves|Windows|{{P|steam}}\userdata\{{P|uid}}\227780\local\SaveGame\}}' + - "{{Game data/config|Windows|{{p|Steam}}\\userdata\\{{p|uid}}\\227780\\local\\PersistentSymbols.ini|{{p|Steam}}\\userdata\\{{p|uid}}\\227780\\local\\Controls\\}}" + - "{{Game data/saves|Windows|{{P|steam}}\\userdata\\{{P|uid}}\\227780\\local\\SaveGame\\}}" Serious Sam Double D: pageId: 2636 steam: 111600 @@ -141951,91 +138199,91 @@ Serious Sam Fusion 2017: pageId: 60182 steam: 564310 steamSide: - - 612560 - - 564323 - - 564324 - 564320 - 564321 - 564322 + - 564323 + - 564324 + - 612560 templates: - - '{{Game data/config|Steam|{{P|steam}}/userdata/{{P|uid}}/564310/local/}}' - - '{{Game data/saves|Steam|{{P|steam}}/userdata/{{P|uid}}/564310/remote/SavedGames/}}' -'Serious Sam HD: The First Encounter': + - "{{Game data/config|Steam|{{P|steam}}/userdata/{{P|uid}}/564310/local/}}" + - "{{Game data/saves|Steam|{{P|steam}}/userdata/{{P|uid}}/564310/remote/SavedGames/}}" +"Serious Sam HD: The First Encounter": pageId: 7904 steam: 41000 steamSide: - 901553 templates: - - '{{Game data/config|Windows|{{p|steam}}\userdata\{{p|uid}}\41000\local}}' - - '{{Game data/saves|Windows|{{p|steam}}\userdata\{{p|uid}}\41000\local\SeriousSamHD\SavedGames}}' -'Serious Sam HD: The Second Encounter': + - "{{Game data/config|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\41000\\local}}" + - "{{Game data/saves|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\41000\\local\\SeriousSamHD\\SavedGames}}" +"Serious Sam HD: The Second Encounter": pageId: 7909 steam: 41014 steamSide: - 41019 - 41046 templates: - - '{{Game data/config|Windows|{{p|steam}}\userdata\{{p|uid}}\41010\local}}' - - '{{Game data/saves|Windows|{{p|steam}}\userdata\{{p|uid}}\41010\local\SeriousSamHD_TSE\SavedGames}}' -'Serious Sam VR: The First Encounter': + - "{{Game data/config|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\41010\\local}}" + - "{{Game data/saves|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\41010\\local\\SeriousSamHD_TSE\\SavedGames}}" +"Serious Sam VR: The First Encounter": pageId: 55267 steam: 552450 -'Serious Sam VR: The Last Hope': +"Serious Sam VR: The Last Hope": pageId: 38903 steam: 465240 -'Serious Sam VR: The Second Encounter': +"Serious Sam VR: The Second Encounter": pageId: 60180 steam: 552460 -Serious Sam's Bogus Detour: +"Serious Sam's Bogus Detour": gog: 2104387650 pageId: 61058 steam: 272620 templates: - - '{{Game data/config|Windows|{{P|game}}\SSBD.exe.cfg}}' - - '{{Game data/config|Linux|{{P|game}}/SSBD.cfg}}' - - '{{Game data/saves|Windows|{{P|game}}\saves\}}' - - '{{Game data/saves|Linux|{{P|game}}/saves/}}' -'Serious Sam: Kamikaze Attack!': + - "{{Game data/config|Windows|{{P|game}}\\SSBD.exe.cfg}}" + - "{{Game data/config|Linux|{{P|game}}/SSBD.cfg}}" + - "{{Game data/saves|Windows|{{P|game}}\\saves\\}}" + - "{{Game data/saves|Linux|{{P|game}}/saves/}}" +"Serious Sam: Kamikaze Attack!": pageId: 7915 steam: 1623420 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Devolver Digital\Serious Sam: Kamikaze Attack!\}}' - - '{{Game data/saves|Windows|{{P|hkcu}}\Software\Devolver Digital\Serious Sam: Kamikaze Attack!\}}' -'Serious Sam: Siberian Mayhem': + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Devolver Digital\\Serious Sam: Kamikaze Attack!\\}}" + - "{{Game data/saves|Windows|{{P|hkcu}}\\Software\\Devolver Digital\\Serious Sam: Kamikaze Attack!\\}}" +"Serious Sam: Siberian Mayhem": gog: 2056531790 pageId: 174121 steam: 1792250 steamSide: - 1887350 templates: - - '{{Game data/config|Steam|{{P|steam}}\userdata\{{P|uid}}\1792250\local\SeriousSamSM.ini}}' - - '{{Game data/saves|Steam|{{P|steam}}\userdata\{{P|uid}}\1792250\remote\SavedGames\}}' -'Serious Sam: The First Encounter': + - "{{Game data/config|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\1792250\\local\\SeriousSamSM.ini}}" + - "{{Game data/saves|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\1792250\\remote\\SavedGames\\}}" +"Serious Sam: The First Encounter": gog: 1207658876 pageId: 3812 steam: 41050 templates: - - '{{Game data/config|Windows|{{p|game}}\Scripts\}}' - - '{{Game data/saves|Windows|{{p|game}}\SaveGame\}}' -'Serious Sam: The Random Encounter': + - "{{Game data/config|Windows|{{p|game}}\\Scripts\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\SaveGame\\}}" +"Serious Sam: The Random Encounter": pageId: 8032 steam: 201480 templates: - - '{{Game data/config|Windows|{{p|game}}\config.txt}}' - - '{{Game data/saves|Windows|{{p|game}}\sam*.sav|{{p|game}}\sam*i.sav}}' -'Serious Sam: The Second Encounter': + - "{{Game data/config|Windows|{{p|game}}\\config.txt}}" + - "{{Game data/saves|Windows|{{p|game}}\\sam*.sav|{{p|game}}\\sam*i.sav}}" +"Serious Sam: The Second Encounter": gog: 1207658877 pageId: 7902 steam: 41060 templates: - - '{{Game data/config|Windows|{{p|game}}\Scripts}}' - - '{{Game data/saves|Windows|{{p|game}}\SaveGame}}' -'Serious Sam: Tormental': + - "{{Game data/config|Windows|{{p|game}}\\Scripts}}" + - "{{Game data/saves|Windows|{{p|game}}\\SaveGame}}" +"Serious Sam: Tormental": pageId: 78806 steam: 640340 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Gungrounds\Tormental\}}' - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Gungrounds\Tormental\lol.sav}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Gungrounds\\Tormental\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Gungrounds\\Tormental\\lol.sav}}" Serious Scramblers: pageId: 150472 steam: 1141130 @@ -142044,8 +138292,8 @@ Serment - Contract with a Devil: pageId: 64085 steam: 632900 templates: - - '{{Game data/config|Windows|{{p|appdata}}\RenPy\SermentFinal\persistent|{{p|game}}\game\saves\persistent}}' - - '{{Game data/saves|Windows|{{p|appdata}}\RenPy\SermentFinal\*.save|{{p|game}}\game\saves\*.save}}' + - "{{Game data/config|Windows|{{p|appdata}}\\RenPy\\SermentFinal\\persistent|{{p|game}}\\game\\saves\\persistent}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\RenPy\\SermentFinal\\*.save|{{p|game}}\\game\\saves\\*.save}}" Serpent Fusion: pageId: 149406 steam: 1126260 @@ -142053,7 +138301,7 @@ Serpent in the Staglands: gog: 1431941262 pageId: 34360 steam: 335120 -'Serpent of Isis: Your Journey Continues': +"Serpent of Isis: Your Journey Continues": pageId: 178691 Servant of The People: pageId: 150741 @@ -142065,8 +138313,8 @@ Session: pageId: 95665 steam: 861650 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\SessionGame\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\SessionGame\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\SessionGame\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\SessionGame\\Saved\\SaveGames\\}}" Session Seven: pageId: 128258 steam: 915720 @@ -142093,36 +138341,33 @@ Settlers of Orion: Setup Developer Tool 2018: pageId: 93221 steam: 840690 -'Seul (Alone): The entrée': +"Seul (Alone): The entrée": pageId: 107906 steam: 856310 -'Seum: Speedrunners from Hell': +"Seum: Speedrunners from Hell": gog: 2120284974 pageId: 37249 steam: 457210 templates: - - >- - {{Game data/config|Windows|{{P|userprofile}}\AppData\LocalLow\Pine - Studio\Seum\SeumSettings-*.bin|{{P|userprofile}}\AppData\LocalLow\Pine - Studio\Seum\SeumKeybindings-*.bin|{{P|hkcu}}\Software\Pine Studio\Seum\}} - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Pine Studio\Seum\SeumData-*.sav}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Pine Studio/Seum}}' - - '{{Game data/saves|Steam|{{P|steam}}\userdata\{{P|uid}}\457210\remote\}}' + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Pine Studio\\Seum\\SeumSettings-*.bin|{{P|userprofile}}\\AppData\\LocalLow\\Pine Studio\\Seum\\SeumKeybindings-*.bin|{{P|hkcu}}\\Software\\Pine Studio\\Seum\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Pine Studio\\Seum\\SeumData-*.sav}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Pine Studio/Seum}}" + - "{{Game data/saves|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\457210\\remote\\}}" Seven Boys 2: pageId: 66595 steam: 671240 Seven Bullets Zombie Apocalypse: pageId: 134882 steam: 1036900 -'Seven Cities of Gold: Commemorative Edition': +"Seven Cities of Gold: Commemorative Edition": gog: 1207664773 pageId: 21580 Seven Days: pageId: 113958 steam: 931560 templates: - - '{{Game data/saves|Windows|{{p|game}}\savedata\*.kep|{{p|game}}\savedata\*.ksd|{{p|game}}\savedata\*.bmp}}' -'Seven Dwarfs: The Queen''s Return': + - "{{Game data/saves|Windows|{{p|game}}\\savedata\\*.kep|{{p|game}}\\savedata\\*.ksd|{{p|game}}\\savedata\\*.bmp}}" +"Seven Dwarfs: The Queen's Return": pageId: 170974 Seven Kingdoms: gog: 1207658724 @@ -142133,20 +138378,20 @@ Seven Kingdoms 2 HD: pageId: 22916 steam: 338800 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Seven Kingdoms 2 HD\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Seven Kingdoms 2 HD\SAVE}}' -'Seven Kingdoms II: The Fryhtan Wars': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Seven Kingdoms 2 HD\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Seven Kingdoms 2 HD\\SAVE}}" +"Seven Kingdoms II: The Fryhtan Wars": gog: 1207658723 pageId: 21581 templates: - - '{{Game data/config|Windows|{{p|game}}\CONFIG.DAT}}' - - '{{Game data/saves|Windows|{{p|game}}\Save\}}' -'Seven Kingdoms: Conquest': + - "{{Game data/config|Windows|{{p|game}}\\CONFIG.DAT}}" + - "{{Game data/saves|Windows|{{p|game}}\\Save\\}}" +"Seven Kingdoms: Conquest": pageId: 88517 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Seven Kingdoms Conquest\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Seven Kingdoms Conquest\Saved Games\}}' -'Seven Mysteries: The Last Page': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Seven Kingdoms Conquest\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Seven Kingdoms Conquest\\Saved Games\\}}" +"Seven Mysteries: The Last Page": pageId: 80609 steam: 783440 Seven Nations: @@ -142172,16 +138417,16 @@ Seven Wonders of St. Clementine: Seven days with the Ghost: pageId: 146116 steam: 946460 -'Seven: Reboot': +"Seven: Reboot": pageId: 80715 steam: 654200 -'Seven: The Days Long Gone': +"Seven: The Days Long Gone": gog: 1276856962 pageId: 39677 steam: 471010 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Seven\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Seven\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Seven\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Seven\\Saved\\SaveGames\\}}" Seventh Circle: pageId: 130607 steam: 1030950 @@ -142196,7 +138441,7 @@ Severed Steel: steamSide: - 1754230 templates: - - '{{Game data/saves|Windows|{{P|localappdata}}\ThankYouVeryCool\Saved\SaveGames\}}' + - "{{Game data/saves|Windows|{{P|localappdata}}\\ThankYouVeryCool\\Saved\\SaveGames\\}}" Sevgilim Olur Musun?: pageId: 70629 steam: 713650 @@ -142222,8 +138467,8 @@ Sex with Devil: pageId: 154253 steam: 1202690 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\SexWithDevil\Saved\Config\WindowsNoEditor}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\SexWithDevil\Saved\SaveGames}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\SexWithDevil\\Saved\\Config\\WindowsNoEditor}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\SexWithDevil\\Saved\\SaveGames}}" Sex with Hitler: pageId: 174608 renamedFrom: @@ -142239,8 +138484,8 @@ Sexbot Quality Assurance Simulator: pageId: 146130 steam: 868380 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\SexBotQA_Assets\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\SexBotQA_Assets\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\SexBotQA_Assets\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\SexBotQA_Assets\\Saved\\SaveGames\\}}" Sextris Effect: pageId: 138555 steam: 1088130 @@ -142253,7 +138498,7 @@ Sexy Airlines: Sexy Breakout: pageId: 134990 steam: 1048270 -'Sexy Comedy: It Was a Mistake': +"Sexy Comedy: It Was a Mistake": pageId: 121591 steam: 943860 Sexy Girls Puzzle: @@ -142283,28 +138528,28 @@ SexyHub ❤️: Sfinx: pageId: 147190 templates: - - '{{Game data/config|DOS|{{p|game}}\CGE.CFG}}' - - '{{Game data/saves|DOS|{{p|game}}\*.SVG}}' -Shad'O: + - "{{Game data/config|DOS|{{p|game}}\\CGE.CFG}}" + - "{{Game data/saves|DOS|{{p|game}}\\*.SVG}}" +"Shad'O": pageId: 40737 steam: 215770 -'Shade: Wrath of Angels': +"Shade: Wrath of Angels": pageId: 40449 templates: - - '{{Game data/config|Windows|{{p|game}}\settings.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\save\}}' + - "{{Game data/config|Windows|{{p|game}}\\settings.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\save\\}}" Shades Of Heroes: pageId: 154128 steam: 1168250 Shades of Black: pageId: 46510 steam: 340370 -'Shadow Blade: Reload': +"Shadow Blade: Reload": pageId: 18701 steam: 272330 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Dead Mage\Shadow Blade Reload\}}' - - '{{Game data/saves|Windows|{{p|steam}}\userdata\{{p|uid}}\272330\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Dead Mage\\Shadow Blade Reload\\}}" + - "{{Game data/saves|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\272330\\}}" Shadow Blood VR: pageId: 102939 steam: 797110 @@ -142315,40 +138560,36 @@ Shadow Bug: pageId: 64586 steam: 656550 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Muro Studios\Shadow Bug\}}' - - '{{Game data/saves|Windows|{{P|hkcu}}\Software\Muro Studios\Shadow Bug\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Muro Studios\\Shadow Bug\\}}" + - "{{Game data/saves|Windows|{{P|hkcu}}\\Software\\Muro Studios\\Shadow Bug\\}}" Shadow Circuit: pageId: 59595 steam: 595470 -'Shadow Company: Left For Dead': +"Shadow Company: Left For Dead": pageId: 23928 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\SOFTWARE\Sinister Games\Shadow Company}}' - - '{{Game data/saves|Windows|{{p|game}}\save\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\Sinister Games\\Shadow Company}}" + - "{{Game data/saves|Windows|{{p|game}}\\save\\}}" Shadow Complex Remastered: pageId: 30035 steam: 385560 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Shadow Complex\EmpireGame\Config\}}' - - '{{Game data/config|Steam|{{p|steam}}\userdata\{{p|uid}}\385560\remote\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Shadow Complex\EmpireGame\{{P|uid}}\}}' - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\385560\remote\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Shadow Complex\\EmpireGame\\Config\\}}" + - "{{Game data/config|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\385560\\remote\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Shadow Complex\\EmpireGame\\{{P|uid}}\\}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\385560\\remote\\}}" Shadow Corps: pageId: 108628 steam: 409790 -'Shadow Council: The Puppeteers': +"Shadow Council: The Puppeteers": pageId: 95489 steam: 867610 -'Shadow Dancer: The Secret of Shinobi': +"Shadow Dancer: The Secret of Shinobi": pageId: 30895 steam: 34282 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\SEGA Mega Drive - Classics\setup.dat|{{p|userprofile\Documents}}\SEGA Genesis Classics\setup.dat}} - - >- - {{Game data/saves|Windows|{{p|userprofile\Documents}}\SEGA Mega Drive - Classics\0006\|{{p|userprofile\Documents}}\SEGA Genesis Classics\0006\}} + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\SEGA Mega Drive Classics\\setup.dat|{{p|userprofile\\Documents}}\\SEGA Genesis Classics\\setup.dat}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\SEGA Mega Drive Classics\\0006\\|{{p|userprofile\\Documents}}\\SEGA Genesis Classics\\0006\\}}" Shadow Empire: gog: 1965027070 pageId: 151137 @@ -142362,15 +138603,15 @@ Shadow Fencer Theatre: Shadow Force: pageId: 130464 steam: 883750 -'Shadow Force: Razor Unit': +"Shadow Force: Razor Unit": pageId: 187055 -'Shadow Gambit: The Cursed Crew': +"Shadow Gambit: The Cursed Crew": gog: 1889957442 gogSide: - - 1377746485 - - 1346961749 - - 1881940917 - 1302728148 + - 1346961749 + - 1377746485 + - 1881940917 pageId: 184582 steam: 1545560 steamSide: @@ -142378,24 +138619,22 @@ Shadow Force: - 2504700 - 2505850 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\AppData\Local\ShadowGambit_TCC\user_steam_xxxx\}}' - - '{{Game data/config|GOG.com|{{p|userprofile}}\AppData\Local\ShadowGambit_TCC\user_gog}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\Local\ShadowGambit_TCC\user_steam_xxxx\gameState_00}}' - - '{{Game data/saves|GOG.com|{{p|userprofile}}\AppData\Local\ShadowGambit_TCC\user_gog\gameState_00}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\Local\\ShadowGambit_TCC\\user_steam_xxxx\\}}" + - "{{Game data/config|GOG.com|{{p|userprofile}}\\AppData\\Local\\ShadowGambit_TCC\\user_gog}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\Local\\ShadowGambit_TCC\\user_steam_xxxx\\gameState_00}}" + - "{{Game data/saves|GOG.com|{{p|userprofile}}\\AppData\\Local\\ShadowGambit_TCC\\user_gog\\gameState_00}}" Shadow Gangs: pageId: 161212 renamedFrom: - Shadow gangs steam: 1143430 -'Shadow Harvest: Phantom Ops': +"Shadow Harvest: Phantom Ops": pageId: 40999 steam: 92700 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\Shadow - Harvest\Controls.ini|{{p|userprofile\Documents}}\Shadow Harvest\Shadow Harvest.ini}} - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Shadow Harvest\SavedGames\}}' -'Shadow Heroes: Vengeance In Flames': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Shadow Harvest\\Controls.ini|{{p|userprofile\\Documents}}\\Shadow Harvest\\Shadow Harvest.ini}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Shadow Harvest\\SavedGames\\}}" +"Shadow Heroes: Vengeance In Flames": pageId: 34781 steam: 398670 Shadow Hunter: @@ -142413,30 +138652,30 @@ Shadow Man: pageId: 19112 steam: 251770 templates: - - '{{Game data/config|Windows|{{p|game}}\Grafix.Cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\Saves\}}' + - "{{Game data/config|Windows|{{p|game}}\\Grafix.Cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\Saves\\}}" Shadow Man Remastered: gog: 1757087885 pageId: 158581 steam: 1413870 templates: - - '{{Game data/config|Windows|{{P|userprofile}}\Saved Games\Nightdive Studios\Shadowman EX\kexengine.cfg}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\Saved Games\Nightdive Studios\Shadowman EX\saves}}' + - "{{Game data/config|Windows|{{P|userprofile}}\\Saved Games\\Nightdive Studios\\Shadowman EX\\kexengine.cfg}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\Saved Games\\Nightdive Studios\\Shadowman EX\\saves}}" Shadow Master: pageId: 190930 Shadow Mist: pageId: 61768 steam: 617630 -'Shadow Ninja: Apocalypse': +"Shadow Ninja: Apocalypse": pageId: 45617 steam: 389160 -'Shadow Ops: Red Mercury': +"Shadow Ops: Red Mercury": gog: 1479095781 pageId: 27083 steam: 286770 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Shadow Ops Profiles\{{P|uid}}\|{{p|game}}\System\}}' - - '{{Game data/saves|Windows|{{p|game}}\Saves\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Shadow Ops Profiles\\{{P|uid}}\\|{{p|game}}\\System\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\Saves\\}}" Shadow Over Isolation: pageId: 39693 steam: 463940 @@ -142447,7 +138686,7 @@ Shadow Puppeteer: pageId: 49591 steam: 316480 templates: - - '{{Game data/saves|Windows|{{p|hkcu}}\SOFTWARE\Sarepta Studio\Shadow Puppeteer}}' + - "{{Game data/saves|Windows|{{p|hkcu}}\\SOFTWARE\\Sarepta Studio\\Shadow Puppeteer}}" Shadow Run: pageId: 132242 steam: 1050760 @@ -142459,51 +138698,33 @@ Shadow Sorcerer: pageId: 72450 steam: 2344020 templates: - - '{{Game data/saves|DOS|{{p|game}}\SAVEGAME._*_|{{p|game}}\SAVEGAME.DIR}}' -'Shadow Tactics: Blades of the Shogun': + - "{{Game data/saves|DOS|{{p|game}}\\SAVEGAME._*_|{{p|game}}\\SAVEGAME.DIR}}" +"Shadow Tactics: Blades of the Shogun": gog: 1601442230 gogSide: - - 1146045354 - 1120436601 + - 1146045354 - 1419503362 pageId: 39428 steam: 418240 steamSide: - 547490 templates: - - >- - {{Game data/config|Windows|{{p|localappdata}}\Daedalic Entertainment GmbH\Shadow Tactics Blades of the - Shogun\{{p|uid}}\}} - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Daedalic Entertainment GmbH/{{p|uid}}/}}' - - >- - {{Game data/config|Linux|{{P|xdgdatahome}}/Daedalic Entertainment GmbH/Shadow Tactics Blades of the - Shogun/{{p|uid}}/}} - - >- - {{Game data/saves|Windows|{{p|localappdata}}\Daedalic Entertainment GmbH\Shadow Tactics Blades of the - Shogun\{{p|uid}}\gameState_00\}} - - >- - {{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Daedalic Entertainment - GmbH/{{p|uid}}/gameState_00/}} - - >- - {{Game data/saves|Linux|{{P|xdgdatahome}}/Daedalic Entertainment GmbH/Shadow Tactics Blades of the - Shogun/{{p|uid}}/gameState_00/}} -'Shadow Tactics: Blades of the Shogun - Aiko''s Choice': + - "{{Game data/config|Windows|{{p|localappdata}}\\Daedalic Entertainment GmbH\\Shadow Tactics Blades of the Shogun\\{{p|uid}}\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Daedalic Entertainment GmbH/{{p|uid}}/}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/Daedalic Entertainment GmbH/Shadow Tactics Blades of the Shogun/{{p|uid}}/}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Daedalic Entertainment GmbH\\Shadow Tactics Blades of the Shogun\\{{p|uid}}\\gameState_00\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Daedalic Entertainment GmbH/{{p|uid}}/gameState_00/}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/Daedalic Entertainment GmbH/Shadow Tactics Blades of the Shogun/{{p|uid}}/gameState_00/}}" +"Shadow Tactics: Blades of the Shogun - Aiko's Choice": gog: 1468528987 pageId: 173238 steam: 1579380 templates: - - >- - {{Game data/config|Windows|{{p|localappdata}}\Daedalic Entertainment GmbH\Shadow Tactics Blades of the Shogun - Aikos Choice\user\}} - - >- - {{Game data/config|Linux|{{p|xdgconfighome}}/.local/share/Daedalic Entertainment GmbH/Shadow Tactics Blades of the - Shogun Aikos Choice/user/}} - - >- - {{Game data/saves|Windows|{{p|localappdata}}\Daedalic Entertainment GmbH\Shadow Tactics Blades of the Shogun Aikos - Choice\user\gameState_00\}} - - >- - {{Game data/saves|Linux|{{p|xdgconfighome}}/.local/share/Daedalic Entertainment GmbH/Shadow Tactics Blades of the - Shogun Aikos Choice/user/gameState_00/}} + - "{{Game data/config|Windows|{{p|localappdata}}\\Daedalic Entertainment GmbH\\Shadow Tactics Blades of the Shogun Aikos Choice\\user\\}}" + - "{{Game data/config|Linux|{{p|xdgconfighome}}/.local/share/Daedalic Entertainment GmbH/Shadow Tactics Blades of the Shogun Aikos Choice/user/}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Daedalic Entertainment GmbH\\Shadow Tactics Blades of the Shogun Aikos Choice\\user\\gameState_00\\}}" + - "{{Game data/saves|Linux|{{p|xdgconfighome}}/.local/share/Daedalic Entertainment GmbH/Shadow Tactics Blades of the Shogun Aikos Choice/user/gameState_00/}}" Shadow Unit: pageId: 113626 steam: 908600 @@ -142519,27 +138740,22 @@ Shadow Warrior (1997): steamSide: - 358400 templates: - - '{{Game data/config|DOS|{{p|game}}\SW.CFG}}' - - '{{Game data/saves|DOS|{{p|game}}\GAME*.SAV}}' + - "{{Game data/config|DOS|{{p|game}}\\SW.CFG}}" + - "{{Game data/saves|DOS|{{p|game}}\\GAME*.SAV}}" Shadow Warrior (2013): gog: 1207659573 gogSide: - - 1430392753 - 1429878383 + - 1430392753 pageId: 10160 steam: 233130 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\Shadow - Warrior\profiles.cfg|{{p|userprofile\Documents}}\Shadow Warrior\profiles\|{{p|userprofile\Documents}}\Shadow - Warrior DX11\profiles.cfg|{{p|userprofile\Documents}}\Shadow Warrior DX11\profiles\}} - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Flying Wild Hog/Shadow Warrior/}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/Flying Wild Hog/Shadow Warrior/}}' - - >- - {{Game data/saves|Windows|{{p|userprofile\Documents}}\Shadow Warrior\profiles\|{{p|userprofile\Documents}}\Shadow - Warrior DX11\profiles\}} - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/Flying Wild Hog/Shadow Warrior/}}' - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/233130/}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Shadow Warrior\\profiles.cfg|{{p|userprofile\\Documents}}\\Shadow Warrior\\profiles\\|{{p|userprofile\\Documents}}\\Shadow Warrior DX11\\profiles.cfg|{{p|userprofile\\Documents}}\\Shadow Warrior DX11\\profiles\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Flying Wild Hog/Shadow Warrior/}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/Flying Wild Hog/Shadow Warrior/}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Shadow Warrior\\profiles\\|{{p|userprofile\\Documents}}\\Shadow Warrior DX11\\profiles\\}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/Flying Wild Hog/Shadow Warrior/}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/233130/}}" Shadow Warrior 2: gog: 1434021265 gogSide: @@ -142548,57 +138764,51 @@ Shadow Warrior 2: pageId: 26259 steam: 324800 templates: - - >- - {{Game data/config|Windows|{{p|userprofile}}\Saved Games\Flying Wild Hog\Shadow Warrior - 2\profiles\{{p|uid}}\config.cfg}} - - >- - {{Game data/config|Microsoft Store|{{p|userprofile}}\Saved Games\Flying Wild Hog\Shadow Warrior - 2\profiles\{{p|uid}}\config.cfg}} - - '{{Game data/saves|Windows|{{p|userprofile}}\Saved Games\Flying Wild Hog\Shadow Warrior 2\profiles\}}' - - '{{Game data/saves|Microsoft Store|{{p|userprofile}}\Saved Games\Flying Wild Hog\Shadow Warrior 2\profiles\}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\Saved Games\\Flying Wild Hog\\Shadow Warrior 2\\profiles\\{{p|uid}}\\config.cfg}}" + - "{{Game data/config|Microsoft Store|{{p|userprofile}}\\Saved Games\\Flying Wild Hog\\Shadow Warrior 2\\profiles\\{{p|uid}}\\config.cfg}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Saved Games\\Flying Wild Hog\\Shadow Warrior 2\\profiles\\}}" + - "{{Game data/saves|Microsoft Store|{{p|userprofile}}\\Saved Games\\Flying Wild Hog\\Shadow Warrior 2\\profiles\\}}" Shadow Warrior 3: gog: 1650413893 pageId: 161666 steam: 1036890 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\SW3\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/config|Microsoft Store|{{P|localappdata}}\SW3\Saved\Config\WinGDK\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\SW3\Saved\SaveGames\}}' - - >- - {{Game data/saves|Microsoft - Store|{{p|localappdata}}\Packages\DevolverDigital.ShadowWarrior3Win10_6kzv4j18v0c96\SystemAppData\wgs}} + - "{{Game data/config|Windows|{{P|localappdata}}\\SW3\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/config|Microsoft Store|{{P|localappdata}}\\SW3\\Saved\\Config\\WinGDK\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\SW3\\Saved\\SaveGames\\}}" + - "{{Game data/saves|Microsoft Store|{{p|localappdata}}\\Packages\\DevolverDigital.ShadowWarrior3Win10_6kzv4j18v0c96\\SystemAppData\\wgs}}" Shadow Warrior Classic Redux: gog: 1618073558 pageId: 8596 steam: 225160 templates: - - '{{Game data/config|Windows|{{p|game}}\gameroot\sw-redux.cfg|{{p|game}}\gameroot\sw-redux-local.cfg}}' - - '{{Game data/config|Linux|{{p|game}}/gameroot/sw-redux.cfg|{{p|game}}/gameroot/sw-redux-local.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\gameroot\game0_#.sav}}' - - '{{Game data/saves|GOG.com|{{p|game}}\*.sav}}' + - "{{Game data/config|Windows|{{p|game}}\\gameroot\\sw-redux.cfg|{{p|game}}\\gameroot\\sw-redux-local.cfg}}" + - "{{Game data/config|Linux|{{p|game}}/gameroot/sw-redux.cfg|{{p|game}}/gameroot/sw-redux-local.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\gameroot\\game0_#.sav}}" + - "{{Game data/saves|GOG.com|{{p|game}}\\*.sav}}" Shadow Watch: gog: 1438597383 pageId: 131835 templates: - - '{{Game data/config|Windows|{{p|game}}\cfg\*.txt}}' - - '{{Game data/saves|Windows|{{p|game}}\save}}' -'Shadow Wolf Mysteries: Bane of the Family': + - "{{Game data/config|Windows|{{p|game}}\\cfg\\*.txt}}" + - "{{Game data/saves|Windows|{{p|game}}\\save}}" +"Shadow Wolf Mysteries: Bane of the Family": pageId: 77970 renamedFrom: - - 'Shadow Wolf Mysteries: Bane of the Family Collector''s Edition' + - "Shadow Wolf Mysteries: Bane of the Family Collector's Edition" steam: 758620 -'Shadow Wolf Mysteries: Curse of the Full Moon': +"Shadow Wolf Mysteries: Curse of the Full Moon": pageId: 61620 renamedFrom: - - 'Shadow Wolf Mysteries: Curse of the Full Moon Collector''s Edition' + - "Shadow Wolf Mysteries: Curse of the Full Moon Collector's Edition" steam: 626840 -'Shadow Wolf Mysteries: Cursed Wedding': +"Shadow Wolf Mysteries: Cursed Wedding": pageId: 92664 steam: 838750 -'Shadow Wolf Mysteries: Under the Crimson Moon': +"Shadow Wolf Mysteries: Under the Crimson Moon": pageId: 123673 renamedFrom: - - 'Shadow Wolf Mysteries: Under the Crimson Moon Collector''s Edition' + - "Shadow Wolf Mysteries: Under the Crimson Moon Collector's Edition" steam: 971080 Shadow of Conquest: pageId: 61548 @@ -142606,8 +138816,8 @@ Shadow of Conquest: Shadow of Destiny: pageId: 31089 templates: - - '{{Game data/config|Windows|{{P|game}}\works\conv\SaveData}}' - - '{{Game data/saves|Windows|{{P|game}}\works\conv\SaveData}}' + - "{{Game data/config|Windows|{{P|game}}\\works\\conv\\SaveData}}" + - "{{Game data/saves|Windows|{{P|game}}\\works\\conv\\SaveData}}" Shadow of Egypt: pageId: 178722 steam: 1887960 @@ -142642,16 +138852,12 @@ Shadow of the Tomb Raider: pageId: 89875 steam: 750920 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Eidos Montreal\Shadow of the Tomb Raider\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Feral Interactive/Shadow of the Tomb Raider/}}' - - >- - {{Game data/config|Linux|{{p|xdgdatahome}}/feral-interactive/Shadow of the Tomb - Raider/preferences|{{p|xdgdatahome}}/feral-interactive/Shadow of the Tomb Raider/SaveData/{{p|uid}}/profile.dat}} - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Shadow of the Tomb Raider\{{p|uid}}\}}' - - >- - {{Game data/saves|Linux|{{p|xdgdatahome}}/feral-interactive/Shadow of the Tomb - Raider/SaveData/{{p|uid}}/save*.dat}} -'Shadow: Treachery Cannot Be Tolerated': + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Eidos Montreal\\Shadow of the Tomb Raider\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Feral Interactive/Shadow of the Tomb Raider/}}" + - "{{Game data/config|Linux|{{p|xdgdatahome}}/feral-interactive/Shadow of the Tomb Raider/preferences|{{p|xdgdatahome}}/feral-interactive/Shadow of the Tomb Raider/SaveData/{{p|uid}}/profile.dat}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Shadow of the Tomb Raider\\{{p|uid}}\\}}" + - "{{Game data/saves|Linux|{{p|xdgdatahome}}/feral-interactive/Shadow of the Tomb Raider/SaveData/{{p|uid}}/save*.dat}}" +"Shadow: Treachery Cannot Be Tolerated": pageId: 87281 steam: 787300 ShadowCalls: @@ -142660,8 +138866,8 @@ ShadowCalls: ShadowCaster: pageId: 25071 templates: - - '{{Game data/config|DOS|{{p|game}}\DRIVERS.CFG}}' - - '{{Game data/saves|DOS|{{p|game}}\S1\|{{p|game}}\S2\|{{p|game}}\S3\|{{p|game}}\S4\}}' + - "{{Game data/config|DOS|{{p|game}}\\DRIVERS.CFG}}" + - "{{Game data/saves|DOS|{{p|game}}\\S1\\|{{p|game}}\\S2\\|{{p|game}}\\S3\\|{{p|game}}\\S4\\}}" ShadowCore VR: pageId: 74868 steam: 663350 @@ -142678,44 +138884,44 @@ Shadowgate: pageId: 21864 steam: 343800 templates: - - '{{Game data/config|Windows|{{p|appdata}}\zojoi}}' - - '{{Game data/saves|Windows|{{p|appdata}}\zojoi}}' + - "{{Game data/config|Windows|{{p|appdata}}\\zojoi}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\zojoi}}" Shadowgate (2014): gog: 1207665823 pageId: 19397 steam: 294440 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Zojoi\Shadowgate\Settings.xml}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Zojoi/Shadowgate/Settings.xml}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/.config/unity3d/Zojoi/Shadowgate}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Zojoi\Shadowgate\}}' - - '{{Game data/saves|OS X| ~/Zojoi/Shadowgate/}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/.local/share/Zojoi/Shadowgate}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Zojoi\\Shadowgate\\Settings.xml}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Zojoi/Shadowgate/Settings.xml}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/.config/unity3d/Zojoi/Shadowgate}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Zojoi\\Shadowgate\\}}" + - "{{Game data/saves|OS X| ~/Zojoi/Shadowgate/}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/.local/share/Zojoi/Shadowgate}}" Shadowgrounds: gog: 1207658914 pageId: 1578 steam: 2500 templates: - - '{{Game data/config|Windows|{{p|game}}\Config\options.txt}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.frozenbyte/shadowgrounds/}}' - - '{{Game data/saves|Windows|{{p|game}}\Profiles\{{p|uid}}}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.frozenbyte/shadowgrounds/}}' -'Shadowgrounds: Survivor': + - "{{Game data/config|Windows|{{p|game}}\\Config\\options.txt}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.frozenbyte/shadowgrounds/}}" + - "{{Game data/saves|Windows|{{p|game}}\\Profiles\\{{p|uid}}}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.frozenbyte/shadowgrounds/}}" +"Shadowgrounds: Survivor": gog: 1207659453 pageId: 1073 steam: 11200 templates: - - '{{Game data/config|Windows|{{p|game}}\Config\}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.frozenbyte/survivor/}}' - - '{{Game data/saves|Windows|{{p|game}}\Profiles\}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.frozenbyte/survivor/}}' + - "{{Game data/config|Windows|{{p|game}}\\Config\\}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.frozenbyte/survivor/}}" + - "{{Game data/saves|Windows|{{p|game}}\\Profiles\\}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.frozenbyte/survivor/}}" Shadowhand: gog: 1389096948 pageId: 58567 steam: 427490 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Grey Alien Games\Shadowhand\Shadowhand.ini}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Grey Alien Games\Shadowhand\profiles\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Grey Alien Games\\Shadowhand\\Shadowhand.ini}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Grey Alien Games\\Shadowhand\\profiles\\}}" Shadowland: pageId: 139246 steam: 1091180 @@ -142726,7 +138932,7 @@ Shadoworlds: gog: 1835081550 pageId: 168919 steam: 1627130 -'Shadowplay: Metropolis Foe': +"Shadowplay: Metropolis Foe": pageId: 151211 steam: 1169690 Shadowrain: @@ -142738,15 +138944,15 @@ Shadowrun Chronicles - Boston Lockdown: pageId: 24773 steam: 267750 steamSide: - - 405730 - - 383660 - - 377730 - - 435190 - 324300 + - 377730 + - 383660 + - 405730 + - 435190 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\SOFTWARE\Cliffhanger\Shadowrun Chronicles\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Preferences/unity.Cliffhanger.Shadowrun Chronicles.plist}}' -'Shadowrun Chronicles: INFECTED Director''s Cut': + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\Cliffhanger\\Shadowrun Chronicles\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Preferences/unity.Cliffhanger.Shadowrun Chronicles.plist}}" +"Shadowrun Chronicles: INFECTED Director's Cut": pageId: 45342 steam: 421900 steamSide: @@ -142759,42 +138965,42 @@ Shadowrun Returns: - 237810 - 272030 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Harebrained Schemes\Shadowrun\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Preferences/unity.Harebrained Schemes.Shadowrun.plist}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Harebrained Schemes/Shadowrun/prefs}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Harebrained Schemes\Shadowrun Returns\Saves\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Harebrained Schemes/Shadowrun Returns/Saves/}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/Harebrained Schemes/Shadowrun Returns/Saves/}}' - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/234650/remote/saves/}}' -'Shadowrun: Dragonfall - Director''s Cut': + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Harebrained Schemes\\Shadowrun\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Preferences/unity.Harebrained Schemes.Shadowrun.plist}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Harebrained Schemes/Shadowrun/prefs}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Harebrained Schemes\\Shadowrun Returns\\Saves\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Harebrained Schemes/Shadowrun Returns/Saves/}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/Harebrained Schemes/Shadowrun Returns/Saves/}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/234650/remote/saves/}}" +"Shadowrun: Dragonfall - Director's Cut": gog: 1207660913 pageId: 21152 steam: 300550 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\SOFTWARE\Harebrained Schemes\Dragonfall}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Preferences/unity.Harebrained Schemes.Dragonfall.plist}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Harebrained Schemes/Dragonfall}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Harebrained Schemes\Shadowrun Dragonfall\Saves}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Steam/userdata/{{p|uid}}/300550/remote/saves/}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/Harebrained Schemes/Shadowrun Dragonfall/Saves/}}' - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\300550\remote\saves\}}' -'Shadowrun: Hong Kong': + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\Harebrained Schemes\\Dragonfall}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Preferences/unity.Harebrained Schemes.Dragonfall.plist}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Harebrained Schemes/Dragonfall}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Harebrained Schemes\\Shadowrun Dragonfall\\Saves}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Steam/userdata/{{p|uid}}/300550/remote/saves/}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/Harebrained Schemes/Shadowrun Dragonfall/Saves/}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\300550\\remote\\saves\\}}" +"Shadowrun: Hong Kong": gog: 1436866438 gogSide: - - 1440061546 - 1439900139 + - 1440061546 pageId: 27735 steam: 346940 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\SOFTWARE\Harebrained Schemes\SRHK}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Harebrained Schemes/SRHK}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Local\Harebrained Schemes\Shadowrun Hong Kong\Saves}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/Harebrained Schemes/Shadowrun Hong Kong/Saves}}' - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/346940/remote/saves}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\Harebrained Schemes\\SRHK}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Harebrained Schemes/SRHK}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Local\\Harebrained Schemes\\Shadowrun Hong Kong\\Saves}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/Harebrained Schemes/Shadowrun Hong Kong/Saves}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/346940/remote/saves}}" Shadows: pageId: 55470 steam: 563380 -'Shadows 2: Perfidia': +"Shadows 2: Perfidia": pageId: 59289 steam: 606330 Shadows Light RPG: @@ -142816,16 +139022,14 @@ Shadows of Adam: pageId: 51501 steam: 506510 templates: - - '{{Game data/saves|Windows|{{p|appdata}}\Shadows of Adam\Local Storage\}}' - - '{{Game data/saves|Linux|{{p|xdgconfighome}}/Shadows of Adam/Local Storage/}}' + - "{{Game data/saves|Windows|{{p|appdata}}\\Shadows of Adam\\Local Storage\\}}" + - "{{Game data/saves|Linux|{{p|xdgconfighome}}/Shadows of Adam/Local Storage/}}" Shadows of Doubt: pageId: 139748 steam: 986130 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\ColePowered Games\Shadows of Doubt}}' - - >- - {{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\ColePowered Games\Shadows of - Doubt\Save|{{p|userprofile\appdata\locallow}}\ColePowered Games\Shadows of Doubt\Cities}} + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\ColePowered Games\\Shadows of Doubt}}" + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\ColePowered Games\\Shadows of Doubt\\Save|{{p|userprofile\\appdata\\locallow}}\\ColePowered Games\\Shadows of Doubt\\Cities}}" Shadows of Kepler: pageId: 151589 steam: 1121510 @@ -142833,7 +139037,7 @@ Shadows of Kurgansk: pageId: 42362 steam: 463860 templates: - - '{{Game data/saves|Windows|{{p|appdata}}\Gaijin InCubator\Shadows of Kurgansk\}}' + - "{{Game data/saves|Windows|{{p|appdata}}\\Gaijin InCubator\\Shadows of Kurgansk\\}}" Shadows of Larth: pageId: 145391 steam: 1137030 @@ -142843,52 +139047,42 @@ Shadows of War: Shadows of time: pageId: 150749 steam: 1155090 -'Shadows on the Vatican - Act I: Greed': +"Shadows on the Vatican - Act I: Greed": pageId: 22511 steam: 286360 templates: - - >- - {{Game data/config|Windows|{{P|hkcu}}\Software\Adventure Productions\SotV1 (SD - version)|{{P|hkcu}}\Software\Adventure Productions\SotV1_HD (HD version)}} - - >- - {{Game data/saves|Windows|{{P|userprofile}}\Saved Games\Shadows on the Vatican Act I\ (SD - version)|{{P|userprofile}}\Saved Games\Shadows on the Vatican Act I HD\ (HD version)}} -'Shadows on the Vatican - Act II: Wrath': + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Adventure Productions\\SotV1 (SD version)|{{P|hkcu}}\\Software\\Adventure Productions\\SotV1_HD (HD version)}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\Saved Games\\Shadows on the Vatican Act I\\ (SD version)|{{P|userprofile}}\\Saved Games\\Shadows on the Vatican Act I HD\\ (HD version)}}" +"Shadows on the Vatican - Act II: Wrath": pageId: 45902 steam: 378630 templates: - - >- - {{Game data/config|Windows|{{P|hkcu}}\Software\Adventure Productions\SotV2 (SD - version)|{{P|hkcu}}\Software\Adventure Productions\SotV2_HD (HD version)}} - - >- - {{Game data/saves|Windows|{{P|userprofile}}\Saved Games\Shadows on the Vatican Act II\ (SD - version)|{{P|userprofile}}\Saved Games\Shadows on the Vatican Act II HD\ (HD version)}} + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Adventure Productions\\SotV2 (SD version)|{{P|hkcu}}\\Software\\Adventure Productions\\SotV2_HD (HD version)}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\Saved Games\\Shadows on the Vatican Act II\\ (SD version)|{{P|userprofile}}\\Saved Games\\Shadows on the Vatican Act II HD\\ (HD version)}}" Shadows over Loathing: pageId: 182882 steam: 1939160 templates: - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\Asymmetric Games, LLC\Shadows Over Loathing\*.jso*}}' - - >- - {{Game data/saves|OS X|{{p|osxhome}}/Library/Application - Support/com.AsymmetricGamesLLC.ShadowsOverLoathing/*.jso*}} -'Shadows: Awakening': + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\Asymmetric Games, LLC\\Shadows Over Loathing\\*.jso*}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/com.AsymmetricGamesLLC.ShadowsOverLoathing/*.jso*}}" +"Shadows: Awakening": gog: 1442285576 pageId: 68520 steam: 585450 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Games Farm\Shadows_ Awakening\saves}}' -'Shadows: Heretic Kingdoms': + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Games Farm\\Shadows_ Awakening\\saves}}" +"Shadows: Heretic Kingdoms": gog: 1207666963 pageId: 20943 steam: 256030 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/saves|Windows|{{p|game}}\save}}' -'Shadows: Price for Our Sins': + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\save}}" +"Shadows: Price for Our Sins": pageId: 40566 steam: 260270 templates: - - '{{Game data/saves|Windows|{{p|appdata}}\8floor\Shadowsv1.28}}' + - "{{Game data/saves|Windows|{{p|appdata}}\\8floor\\Shadowsv1.28}}" Shadowverse: pageId: 52245 steam: 453480 @@ -142902,20 +139096,18 @@ Shadwen: steamSide: - 435220 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Shadwen\}}' - - '{{Game data/config|Linux|$HOME/.local/share/frozenbyte/Shadwen/}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Shadwen\}}' - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\425210\remote\}}' -'Shady Brook: A Dark Mystery Text Adventure': + - "{{Game data/config|Windows|{{p|appdata}}\\Shadwen\\}}" + - "{{Game data/config|Linux|$HOME/.local/share/frozenbyte/Shadwen/}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Shadwen\\}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\425210\\remote\\}}" +"Shady Brook: A Dark Mystery Text Adventure": pageId: 52089 steam: 545850 Shady Knight: pageId: 151852 templates: - - >- - {{Game data/config|Windows|{{Path|userprofile}}\AppData\LocalLow\cptnsigh\Shady - Knight|{{Path|hkcu}}\SOFTWARE\cptnsigh\Shady Knight}} - - '{{Game data/saves|Windows|{{Path|userprofile}}\AppData\LocalLow\cptnsigh\Shady Knight\savefile}}' + - "{{Game data/config|Windows|{{Path|userprofile}}\\AppData\\LocalLow\\cptnsigh\\Shady Knight|{{Path|hkcu}}\\SOFTWARE\\cptnsigh\\Shady Knight}}" + - "{{Game data/saves|Windows|{{Path|userprofile}}\\AppData\\LocalLow\\cptnsigh\\Shady Knight\\savefile}}" Shady Lewd Kart: gog: 2118623641 pageId: 176348 @@ -142924,8 +139116,8 @@ Shady Part of Me: pageId: 145441 steam: 1116580 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Shady Part of Me\settings}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Shady Part of Me\{{p|uid}}\save}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Shady Part of Me\\settings}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Shady Part of Me\\{{p|uid}}\\save}}" Shahrzad - The Storyteller: pageId: 108490 steam: 921740 @@ -142940,12 +139132,12 @@ Shake Your Money Simulator 2016: Shakedown Racing One: pageId: 59771 steam: 417730 -'Shakedown: Hawaii': +"Shakedown: Hawaii": pageId: 65550 steam: 598730 templates: - - '{{Game data/config|Windows|{{p|appdata}}\ShakedownHawaii\}}' - - '{{Game data/saves|Windows|{{p|appdata}}\ShakedownHawaii\}}' + - "{{Game data/config|Windows|{{p|appdata}}\\ShakedownHawaii\\}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\ShakedownHawaii\\}}" Shakes and Fidget: pageId: 38559 steam: 438040 @@ -142958,7 +139150,7 @@ Shakes on a Plane: Shallow Space: pageId: 45970 steam: 305840 -'Shalnor Legends: Sacred Lands': +"Shalnor Legends: Sacred Lands": pageId: 73050 steam: 651680 Shaman Flower: @@ -142970,82 +139162,74 @@ Shan Gui: pageId: 49745 steam: 307050 templates: - - '{{Game data/config|Windows|{{P|game}}\game\saves\persistent|{{p|appdata}}\RenPy\ShanGui\persistent}}' - - '{{Game data/saves|Windows|{{P|game}}\game\saves\*.save|{{p|appdata}}\RenPy\ShanGui\*.save}}' -'Shan Gui II: Sweet Osmanthus II': + - "{{Game data/config|Windows|{{P|game}}\\game\\saves\\persistent|{{p|appdata}}\\RenPy\\ShanGui\\persistent}}" + - "{{Game data/saves|Windows|{{P|game}}\\game\\saves\\*.save|{{p|appdata}}\\RenPy\\ShanGui\\*.save}}" +"Shan Gui II: Sweet Osmanthus II": pageId: 114976 renamedFrom: - Shan Gui 2 山桂贰 steam: 952420 templates: - - >- - {{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\MagentaFactory\ShanGui2\Utage\Saveshangui2\* | - {{p|userprofile}}\AppData\LocalLow\MagentaFactory\ShanGui22\Utage\Saveshangui2\* | - {{p|game}}\ShanGuiDE\game\saves\*}} + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\MagentaFactory\\ShanGui2\\Utage\\Saveshangui2\\* | {{p|userprofile}}\\AppData\\LocalLow\\MagentaFactory\\ShanGui22\\Utage\\Saveshangui2\\* | {{p|game}}\\ShanGuiDE\\game\\saves\\*}}" Shank: pageId: 4733 steam: 6120 templates: - - '{{Game data/config|Linux|{{P|xdgdatahome}}/Shank/}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/Shank/}}' - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/6120/remote/}}' + - "{{Game data/config|Linux|{{P|xdgdatahome}}/Shank/}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/Shank/}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/6120/remote/}}" Shank 2: pageId: 26 steam: 102840 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Shank 2\}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.klei/shank2/}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Shank 2\}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.klei/shank2/}}' - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/102840/}}' -Shank n' Bake: + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Shank 2\\}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.klei/shank2/}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Shank 2\\}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.klei/shank2/}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/102840/}}" +"Shank n' Bake": pageId: 65132 steam: 654400 -Shannon Tweed's Attack of the Groupies: +"Shannon Tweed's Attack of the Groupies": pageId: 50496 steam: 289050 -Shantae and the Pirate's Curse: +"Shantae and the Pirate's Curse": gog: 1456141287 pageId: 25953 steam: 345820 templates: - - '{{Game data/config|Windows|{{p|game}}\options.txt}}' - - '{{Game data/saves|GOG.com|{{p|game}}\Shantae and the Pirate''s Curse.save}}' - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\345820\remote\save}}' + - "{{Game data/config|Windows|{{p|game}}\\options.txt}}" + - "{{Game data/saves|GOG.com|{{p|game}}\\Shantae and the Pirate's Curse.save}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\345820\\remote\\save}}" Shantae and the Seven Sirens: gog: 1098998791 pageId: 140301 steam: 1191630 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Wayforward\ShantaeSiren\wfEngine.ini}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Wayforward\ShantaeSiren\save*.sav}}' - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\1191630\remote\}}' - - >- - {{Game data/saves|OS X|{{p|osxhome}}/Library/Containers/com.wayforward.shantae.sirens.Mac/Data/Library/Application - Support/com.wayforward.shantae.sirens.Mac/}} -'Shantae: Half-Genie Hero': + - "{{Game data/config|Windows|{{p|appdata}}\\Wayforward\\ShantaeSiren\\wfEngine.ini}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Wayforward\\ShantaeSiren\\save*.sav}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\1191630\\remote\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Containers/com.wayforward.shantae.sirens.Mac/Data/Library/Application Support/com.wayforward.shantae.sirens.Mac/}}" +"Shantae: Half-Genie Hero": gog: 1277886679 pageId: 55265 steam: 253840 steamSide: - - 639310 - 639310 - 686711 - 764300 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Wayforward\ShantaeHero\|{{p|appdata}}\Wayforward\ShantaeHeroUltimate\}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Wayforward\ShantaeHero\|{{p|appdata}}\Wayforward\ShantaeHeroUltimate\}}' - - >- - {{Game - data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\253840\remote\|{{p|steam}}\userdata\{{p|uid}}\764300\remote\}} -'Shantae: Risky''s Revenge - Director''s Cut': + - "{{Game data/config|Windows|{{p|appdata}}\\Wayforward\\ShantaeHero\\|{{p|appdata}}\\Wayforward\\ShantaeHeroUltimate\\}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Wayforward\\ShantaeHero\\|{{p|appdata}}\\Wayforward\\ShantaeHeroUltimate\\}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\253840\\remote\\|{{p|steam}}\\userdata\\{{p|uid}}\\764300\\remote\\}}" +"Shantae: Risky's Revenge - Director's Cut": gog: 1442832029 pageId: 18434 steam: 277890 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Wayforward\riskysrevenge\wfEngine.ini}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Wayforward\riskysrevenge\}}' - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\277890\remote\}}' + - "{{Game data/config|Windows|{{p|appdata}}\\Wayforward\\riskysrevenge\\wfEngine.ini}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Wayforward\\riskysrevenge\\}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\277890\\remote\\}}" Shaolin vs Wutang: pageId: 38408 steam: 466110 @@ -143064,15 +139248,15 @@ Shape Palette: Shape Shifter (2016): pageId: 42527 steam: 497050 -'Shape of America: Episode One': +"Shape of America: Episode One": pageId: 78721 steam: 752330 Shape of the World: pageId: 67994 steam: 642610 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\ShapeOfTheWorld\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\ShapeOfTheWorld\Saved\SaveGames\*.sav}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\ShapeOfTheWorld\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\ShapeOfTheWorld\\Saved\\SaveGames\\*.sav}}" ShapeRockets: pageId: 40359 steam: 531480 @@ -143121,15 +139305,15 @@ Shapez: - Shapez.io steam: 1318690 templates: - - '{{Game data/config|Windows|{{P|appdata}}\shapez.io\saves\app_settings.bin}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/shapez.io/saves/app_settings.bin}}' - - '{{Game data/saves|Windows|{{P|appdata}}\shapez.io\saves\}}' - - '{{Game data/saves|OS X|{{P|osxhome}}/Library/Preferences/shapez.io/}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/shapez.io/saves/}}' -'Shapik: the moon quest': + - "{{Game data/config|Windows|{{P|appdata}}\\shapez.io\\saves\\app_settings.bin}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/shapez.io/saves/app_settings.bin}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\shapez.io\\saves\\}}" + - "{{Game data/saves|OS X|{{P|osxhome}}/Library/Preferences/shapez.io/}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/shapez.io/saves/}}" +"Shapik: the moon quest": pageId: 142188 steam: 1073810 -'Shaq Fu: A Legend Reborn': +"Shaq Fu: A Legend Reborn": gog: 2088389040 pageId: 95891 steam: 496040 @@ -143156,22 +139340,22 @@ Shardlight: pageId: 34244 steam: 336130 steamSide: - - 447870 - 447840 + - 447870 templates: - - '{{Game data/config|Windows|{{P|userprofile}}\Saved Games\Shardlight\acsetup.cfg}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/ags/Shardlight/}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\Saved Games\Shardlight\}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/ags/Shardlight/}}' -'Shardpunk: Verminfall': + - "{{Game data/config|Windows|{{P|userprofile}}\\Saved Games\\Shardlight\\acsetup.cfg}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/ags/Shardlight/}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\Saved Games\\Shardlight\\}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/ags/Shardlight/}}" +"Shardpunk: Verminfall": gog: 1928341659 gogSide: - - 1149708190 - - 1952794988 - 1107122135 + - 1149708190 + - 1268790027 - 1469728634 - 1702469610 - - 1268790027 + - 1952794988 pageId: 157503 steam: 1183800 steamSide: @@ -143181,7 +139365,7 @@ Shardlight: - 2380110 - 2380210 templates: - - '{{Game data/saves|Windows|{{p|game}}\Profiles\*.xml}}' + - "{{Game data/saves|Windows|{{p|game}}\\Profiles\\*.xml}}" Shards of Azuria: pageId: 51400 steam: 498340 @@ -143217,7 +139401,7 @@ Shark Simulator: steam: 708340 Shark Tale: pageId: 88514 -'Sharknado VR: Eye of the Storm': +"Sharknado VR: Eye of the Storm": pageId: 120887 steam: 925090 Sharp: @@ -143233,20 +139417,20 @@ SharpShooter3D: pageId: 96729 steam: 873150 templates: - - '{{Game data/config|Windows|{{p|game}}\gzdoom-*.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\*.zds}}' -'Sharpe Investigations: Death on the Seine': + - "{{Game data/config|Windows|{{p|game}}\\gzdoom-*.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\*.zds}}" +"Sharpe Investigations: Death on the Seine": pageId: 49931 steam: 288630 Shatter: pageId: 4686 steam: 20820 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Sidhe\SH\application_parameters.xml}}' - - '{{Game data/config|Linux|{{P|linuxhome}}/.sidhe/Shatter/application_parameters.xml}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Sidhe\SH\data\profiles\default_plr_profile.xml}}' - - '{{Game data/saves|Linux|{{P|linuxhome}}/.sidhe/Shatter/data/profiles/default_plr_profile.xml}}' - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/20820/remote/default_plr_profile}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Sidhe\\SH\\application_parameters.xml}}" + - "{{Game data/config|Linux|{{P|linuxhome}}/.sidhe/Shatter/application_parameters.xml}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Sidhe\\SH\\data\\profiles\\default_plr_profile.xml}}" + - "{{Game data/saves|Linux|{{P|linuxhome}}/.sidhe/Shatter/data/profiles/default_plr_profile.xml}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/20820/remote/default_plr_profile}}" Shatter Everything: pageId: 91100 steam: 791140 @@ -143267,26 +139451,26 @@ Shattered God - Quest for the Divine Relic: pageId: 64216 steam: 661110 templates: - - '{{Game data/saves|Windows|{{p|appdata}}\Shattered_God}}' + - "{{Game data/saves|Windows|{{p|appdata}}\\Shattered_God}}" Shattered Haven: gog: 1207659160 pageId: 10467 steam: 234370 templates: - - '{{Game data/config|Windows|{{P|game}}\RuntimeData\}}' - - '{{Game data/config|OS X|{{P|game}}/RuntimeData/}}' - - '{{Game data/config|Linux|{{P|game}}/RuntimeData/}}' - - '{{Game data/saves|Windows|{{P|game}}\RuntimeData\}}' - - '{{Game data/saves|OS X|{{P|game}}/RuntimeData/}}' - - '{{Game data/saves|Linux|{{P|game}}/RuntimeData/}}' + - "{{Game data/config|Windows|{{P|game}}\\RuntimeData\\}}" + - "{{Game data/config|OS X|{{P|game}}/RuntimeData/}}" + - "{{Game data/config|Linux|{{P|game}}/RuntimeData/}}" + - "{{Game data/saves|Windows|{{P|game}}\\RuntimeData\\}}" + - "{{Game data/saves|OS X|{{P|game}}/RuntimeData/}}" + - "{{Game data/saves|Linux|{{P|game}}/RuntimeData/}}" Shattered Horizon: pageId: 12213 steam: 18110 Shattered Light: pageId: 183525 templates: - - '{{Game data/config|Windows|{{p|game}}}}' - - '{{Game data/saves|Windows|{{p|game}}\Characters}}' + - "{{Game data/config|Windows|{{p|game}}}}" + - "{{Game data/saves|Windows|{{p|game}}\\Characters}}" Shattered Lights: pageId: 136814 steam: 1057720 @@ -143300,8 +139484,8 @@ Shattered Planet: pageId: 18339 steam: 305640 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\DefaultCompany\Shattered Planet}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Shattered Planet\.sav}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\DefaultCompany\\Shattered Planet}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Shattered Planet\\.sav}}" Shattered Skies: pageId: 34093 steam: 447500 @@ -143310,8 +139494,8 @@ Shattered Steel: pageId: 10108 steam: 624060 templates: - - '{{Game data/config|DOS|{{p|game}}\OPTIONS.CFG}}' - - '{{Game data/saves|DOS|{{p|game}}\PLAYER.CFG}}' + - "{{Game data/config|DOS|{{p|game}}\\OPTIONS.CFG}}" + - "{{Game data/saves|DOS|{{p|game}}\\PLAYER.CFG}}" Shattered Throne: pageId: 42655 steam: 469710 @@ -143325,21 +139509,19 @@ Shatterline: pageId: 181492 steam: 2087030 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Shatterline\2961AB5C4C274EAB9B13CCC6A9306D6A}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\Shatterline\\2961AB5C4C274EAB9B13CCC6A9306D6A}}" Shaun White Skateboarding: pageId: 160759 templates: - - '{{Game data/config|Windows|{{p|game}}\gamesettings.ini}}' - - '{{Game data/saves|Windows|{{p|uplay}}\savegames\{{p|uid}}\20\}}' + - "{{Game data/config|Windows|{{p|game}}\\gamesettings.ini}}" + - "{{Game data/saves|Windows|{{p|uplay}}\\savegames\\{{p|uid}}\\20\\}}" Shaun White Snowboarding: pageId: 79496 steam: 19990 templates: - - >- - {{Game - data/config|Windows|{{p|hkcu}}\SOFTWARE\Ubisoft\ShaunWhiteSnowboarding\1.0\Engine
{{p|hkcu}}\SOFTWARE\Ubisoft\ShaunWhiteSnowboarding\1.0\Launcher}} - - '{{Game data/saves|Windows|{{p|localappdata}}\Ubisoft\SWSnow\saves\}}' -'Shaverma: Ravshan Edition': + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\Ubisoft\\ShaunWhiteSnowboarding\\1.0\\Engine
{{p|hkcu}}\\SOFTWARE\\Ubisoft\\ShaunWhiteSnowboarding\\1.0\\Launcher}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Ubisoft\\SWSnow\\saves\\}}" +"Shaverma: Ravshan Edition": pageId: 123934 steam: 985540 Shawy Adventures: @@ -143352,12 +139534,8 @@ She Remembered Caterpillars: pageId: 38973 steam: 470780 templates: - - >- - {{Game data/config|Windows|{{P|hkcu}}\Software\Jumpsuit Entertainment UG (haftungsbeschraenkt)\She Remembered - Caterpillars\}} - - >- - {{Game data/saves|Windows|{{P|hkcu}}\Software\Jumpsuit Entertainment UG (haftungsbeschraenkt)\She Remembered - Caterpillars\}} + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Jumpsuit Entertainment UG (haftungsbeschraenkt)\\She Remembered Caterpillars\\}}" + - "{{Game data/saves|Windows|{{P|hkcu}}\\Software\\Jumpsuit Entertainment UG (haftungsbeschraenkt)\\She Remembered Caterpillars\\}}" She Save: pageId: 65582 steam: 657260 @@ -143366,27 +139544,27 @@ She Sees Red: pageId: 136664 steam: 1081510 templates: - - '{{Game data/saves|Windows|{{p|game}}\SavesDir\}}' + - "{{Game data/saves|Windows|{{p|game}}\\SavesDir\\}}" She Wants Me Dead: pageId: 43047 steam: 468310 She Who Fights Monsters: pageId: 186828 templates: - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\She Who Fights Monsters}}' -'She Who Fights Monsters: Choice Edition': + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\She Who Fights Monsters}}" +"She Who Fights Monsters: Choice Edition": pageId: 186831 She Will Punish Them: pageId: 156993 steam: 1213740 templates: - - '{{Game data/config|Windows|{{p|userprofile\appdata\locallow}}\L2 Games\She Will Punish Them\}}' - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\L2 Games\She Will Punish Them\}}' + - "{{Game data/config|Windows|{{p|userprofile\\appdata\\locallow}}\\L2 Games\\She Will Punish Them\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\L2 Games\\She Will Punish Them\\}}" She and the Light Bearer: pageId: 92680 steam: 658590 templates: - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Mojiken\She and the Light Bearer\{{P|uid}}}}' + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Mojiken\\She and the Light Bearer\\{{P|uid}}}}" Sheaf - Together EP: pageId: 144390 steam: 1072530 @@ -143394,7 +139572,7 @@ Sheep: pageId: 146181 steam: 1644750 templates: - - '{{Game data/saves|Windows|{{P|game}}\Saves\}}' + - "{{Game data/saves|Windows|{{P|game}}\\Saves\\}}" Sheep Collision: pageId: 130199 steam: 1033230 @@ -143404,11 +139582,11 @@ Sheep Game: Sheep Love: pageId: 172833 steam: 1520060 -'Sheep, Dog, ''n'' Wolf': +"Sheep, Dog, 'n' Wolf": pageId: 87717 templates: - - '{{Game data/config|Windows|{{p|hklm}}\Infogrames\Sheep, Dog''n Wolf DX7\CfgGame}}' - - '{{Game data/saves|Windows|{{p|hklm}}\Infogrames\Sheep, Dog''n Wolf DX7\Progress}}' + - "{{Game data/config|Windows|{{p|hklm}}\\Infogrames\\Sheep, Dog'n Wolf DX7\\CfgGame}}" + - "{{Game data/saves|Windows|{{p|hklm}}\\Infogrames\\Sheep, Dog'n Wolf DX7\\Progress}}" Sheepageddon: pageId: 108246 steam: 913000 @@ -143417,45 +139595,43 @@ Sheepo: pageId: 172431 steam: 1281790 templates: - - '{{Game data/saves|Windows|{{p|localappdata}}/Sheepo_NoSteam/}}' - - '{{Game data/saves|Steam|{{p|localappdata}}/WIP/}}' -'Sheila Rae, the Brave': + - "{{Game data/saves|Windows|{{p|localappdata}}/Sheepo_NoSteam/}}" + - "{{Game data/saves|Steam|{{p|localappdata}}/WIP/}}" +"Sheila Rae, the Brave": pageId: 187064 -'ShellBlast: Legacy Edition': +"ShellBlast: Legacy Edition": pageId: 94443 steam: 841440 ShellShock Live: pageId: 38283 steam: 326460 -'Shellshock 2: Blood Trails': +"Shellshock 2: Blood Trails": pageId: 63375 steam: 8160 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Eidos\Shellshock2\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Eidos\Shellshock2\}}' -'Shellshock: Nam ''67': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Eidos\\Shellshock2\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Eidos\\Shellshock2\\}}" +"Shellshock: Nam '67": pageId: 69897 templates: - - >- - {{Game - data/config|Windows|{{p|userprofile\Documents}}\SHELLSHOCK_NAM67\Input_PC.ini|{{p|userprofile\Documents}}\SHELLSHOCK_NAM67\TOD_PC.ini}} - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\SHELLSHOCK_NAM67\profile{{p|uid}}\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\SHELLSHOCK_NAM67\\Input_PC.ini|{{p|userprofile\\Documents}}\\SHELLSHOCK_NAM67\\TOD_PC.ini}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\SHELLSHOCK_NAM67\\profile{{p|uid}}\\}}" Shelter: gog: 1207659503 pageId: 9537 steam: 244710 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Might and Delight\Shelter\}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Might and Delight\Shelter\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/.config/Might and Delight/Shelter}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Might and Delight\\Shelter\\}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Might and Delight\\Shelter\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/.config/Might and Delight/Shelter}}" Shelter 2: gog: 1424868751 pageId: 23153 steam: 275100 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Might and Delight\Shelter 2\}}' - - '{{Game data/saves|Windows|{{P|hkcu}}\Software\Might and Delight\Shelter 2\}}' - - '{{Game data/saves|Steam|{{P|game}}\Shelter2_Data\shelter2.shelter2}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Might and Delight\\Shelter 2\\}}" + - "{{Game data/saves|Windows|{{P|hkcu}}\\Software\\Might and Delight\\Shelter 2\\}}" + - "{{Game data/saves|Steam|{{P|game}}\\Shelter2_Data\\shelter2.shelter2}}" Shelter 3: pageId: 132940 steam: 977630 @@ -143472,60 +139648,48 @@ Sheltered: pageId: 34238 steam: 356040 templates: - - '{{Game data/config|Windows|{{p|game}}\saves\}}' - - '{{Game data/saves|Windows|{{p|game}}\saves\}}' + - "{{Game data/config|Windows|{{p|game}}\\saves\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\saves\\}}" Sheltered 2: gog: 1535943088 pageId: 168462 steam: 1289380 templates: - - '{{Game data/saves|Windows|{{p|userprofile\AppData\LocalLow}}\Unicube\Sheltered2}}' + - "{{Game data/saves|Windows|{{p|userprofile\\AppData\\LocalLow}}\\Unicube\\Sheltered2}}" Shenmue I & II: pageId: 92451 steam: 758330 templates: - - >- - {{Game data/config|Microsoft - Store|{{p|localappdata}}\Packages\7904SEGAEuropeLtd.Shenmue-GamePass_zs7esxpzd8d5c\SystemAppData\wgs\}} - - >- - {{Game - data/config|Steam|{{P|steam}}\userdata\{{P|uid}}\758330\remote\sm1saves\Settings\|{{P|steam}}\userdata\{{P|uid}}\758330\remote\sm2saves\Settings\}} - - >- - {{Game data/saves|Microsoft - Store|{{P|localappdata}}\Packages\7904SEGAEuropeLtd.Shenmue-GamePass_zs7esxpzd8d5c\SystemAppData\wgs\}} - - >- - {{Game - data/saves|Steam|{{P|steam}}\userdata\{{P|uid}}\758330\remote\sm1saves\|{{P|steam}}\userdata\{{P|uid}}\758330\remote\sm2saves\}} + - "{{Game data/config|Microsoft Store|{{p|localappdata}}\\Packages\\7904SEGAEuropeLtd.Shenmue-GamePass_zs7esxpzd8d5c\\SystemAppData\\wgs\\}}" + - "{{Game data/config|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\758330\\remote\\sm1saves\\Settings\\|{{P|steam}}\\userdata\\{{P|uid}}\\758330\\remote\\sm2saves\\Settings\\}}" + - "{{Game data/saves|Microsoft Store|{{P|localappdata}}\\Packages\\7904SEGAEuropeLtd.Shenmue-GamePass_zs7esxpzd8d5c\\SystemAppData\\wgs\\}}" + - "{{Game data/saves|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\758330\\remote\\sm1saves\\|{{P|steam}}\\userdata\\{{P|uid}}\\758330\\remote\\sm2saves\\}}" Shenmue III: gog: 1832790021 pageId: 91411 steam: 878670 templates: - - >- - {{Game - data/config|Windows|{{p|localappdata}}\Shenmue3\Saved\SaveGames\Systemaa{{p|uid}}.sav|{{p|localappdata}}\Shenmue3\Saved\Config\WindowsNoEditor\}} - - '{{Game data/saves|Windows|{{p|localappdata}}\Shenmue3\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Shenmue3\\Saved\\SaveGames\\Systemaa{{p|uid}}.sav|{{p|localappdata}}\\Shenmue3\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Shenmue3\\Saved\\SaveGames\\}}" Shenzhen I/O: gog: 1640205738 pageId: 40145 steam: 504210 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\My Games\SHENZHEN IO\{{P|uid}}\config.cfg}}' - - '{{Game data/config|Microsoft Store|{{P|userprofile\Documents}}\My Games\SHENZHEN IO\NonSteamUser\config.cfg}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/SHENZHEN IO/}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.local/share/SHENZHEN IO/{{P|uid}}/}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\SHENZHEN IO\{{P|uid}}\}}' - - >- - {{Game data/saves|Microsoft - Store|{{P|localappdata}}\Packages\58020AllianceMetaversalSt.ShenzhenIO_j78hpz8e66gfw\SystemAppData\xgs\{{P|uid}}\all\save.dat}} - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/SHENZHEN IO/}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.local/share/SHENZHEN IO/{{P|uid}}/}}' + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\My Games\\SHENZHEN IO\\{{P|uid}}\\config.cfg}}" + - "{{Game data/config|Microsoft Store|{{P|userprofile\\Documents}}\\My Games\\SHENZHEN IO\\NonSteamUser\\config.cfg}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/SHENZHEN IO/}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.local/share/SHENZHEN IO/{{P|uid}}/}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\SHENZHEN IO\\{{P|uid}}\\}}" + - "{{Game data/saves|Microsoft Store|{{P|localappdata}}\\Packages\\58020AllianceMetaversalSt.ShenzhenIO_j78hpz8e66gfw\\SystemAppData\\xgs\\{{P|uid}}\\all\\save.dat}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/SHENZHEN IO/}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.local/share/SHENZHEN IO/{{P|uid}}/}}" Shenzhen Solitaire: pageId: 55135 steam: 570490 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\My Games\SHENZHEN SOLITAIRE\{{P|uid}}}}' - - '{{Game data/config|Linux|{{p|xdgdatahome}}/SHENZHEN SOLITAIRE/{{P|uid}}/}}' + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\My Games\\SHENZHEN SOLITAIRE\\{{P|uid}}}}" + - "{{Game data/config|Linux|{{p|xdgdatahome}}/SHENZHEN SOLITAIRE/{{P|uid}}/}}" Sheol: pageId: 155755 steam: 1211950 @@ -143536,11 +139700,9 @@ Shepherd of Light: pageId: 144681 steam: 1106770 templates: - - >- - {{Game - data/config|Windows|{{P|localappdata}}\ShepherdOfLight\Saved\SaveGames\SoLGameSettingsSlot.sav|{{P|localappdata}}\ShepherdOfLight\Saved\Config\WindowsNoEditor\}} - - '{{Game data/saves|Windows|{{P|localappdata}}\ShepherdOfLight\Saved\SaveGames\SoLGameDataSlot.sav}}' -Shepherd's Crossing: + - "{{Game data/config|Windows|{{P|localappdata}}\\ShepherdOfLight\\Saved\\SaveGames\\SoLGameSettingsSlot.sav|{{P|localappdata}}\\ShepherdOfLight\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\ShepherdOfLight\\Saved\\SaveGames\\SoLGameDataSlot.sav}}" +"Shepherd's Crossing": pageId: 186541 steam: 2162720 Shepherds of the Abyss: @@ -143552,17 +139714,15 @@ Shephy: Shera and the Three Treasures: pageId: 137082 steam: 1056750 -'Sherlock Holmes Consulting Detective: The Case of the Mummy''s Curse': +"Sherlock Holmes Consulting Detective: The Case of the Mummy's Curse": pageId: 47583 steam: 374010 -'Sherlock Holmes Consulting Detective: The Case of the Mystified Murderess': +"Sherlock Holmes Consulting Detective: The Case of the Mystified Murderess": pageId: 47581 steam: 376790 templates: - - >- - {{Game data/saves|Windows|{{p|APPDATA}}\Zojoi.Murderess\Local - Store\#SharedObjects\SherlockMain.swf\SherLockMurderess.sol}} -'Sherlock Holmes Consulting Detective: The Case of the Tin Soldier': + - "{{Game data/saves|Windows|{{p|APPDATA}}\\Zojoi.Murderess\\Local Store\\#SharedObjects\\SherlockMain.swf\\SherLockMurderess.sol}}" +"Sherlock Holmes Consulting Detective: The Case of the Tin Soldier": pageId: 47579 steam: 376780 Sherlock Holmes and the Hound of the Baskervilles: @@ -143570,29 +139730,25 @@ Sherlock Holmes and the Hound of the Baskervilles: pageId: 123061 steam: 209230 templates: - - >- - {{Game data/config|Windows|{{P|appdata}}\Frogwares\{{LocalizedPath|Sherlock Holmes and The Hound of the - Baskervilles}}\setup.ini}} - - >- - {{Game data/saves|Windows|{{P|appdata}}\Frogwares\{{LocalizedPath|Sherlock Holmes and The Hound of the - Baskervilles}}\save\}} + - "{{Game data/config|Windows|{{P|appdata}}\\Frogwares\\{{LocalizedPath|Sherlock Holmes and The Hound of the Baskervilles}}\\setup.ini}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\Frogwares\\{{LocalizedPath|Sherlock Holmes and The Hound of the Baskervilles}}\\save\\}}" Sherlock Holmes versus Jack the Ripper: gog: 1460731635 pageId: 34193 steam: 11190 templates: - - '{{Game data/config|Windows|{{P|appdata}}\Games\sherlock holmes versus jack the ripper\setup.ini}}' - - '{{Game data/saves|Windows|{{P|appdata}}\Games\sherlock holmes versus jack the ripper\save\}}' -'Sherlock Holmes: Chapter One': + - "{{Game data/config|Windows|{{P|appdata}}\\Games\\sherlock holmes versus jack the ripper\\setup.ini}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\Games\\sherlock holmes versus jack the ripper\\save\\}}" +"Sherlock Holmes: Chapter One": gog: 1505341785 gogSide: + - 1184868315 + - 1187253124 - 1223626251 + - 1337456461 - 1724875775 - 1761741962 - - 1184868315 - 2032137685 - - 1187253124 - - 1337456461 pageId: 160644 steam: 1137300 steamSide: @@ -143604,72 +139760,62 @@ Sherlock Holmes versus Jack the Ripper: - 1581938 - 1581939 templates: - - >- - {{Game - data/config|Windows|{{P|localappdata}}\SH9\Saved\Config\WindowsNoEditor\GameUserSettings.ini|{{P|localappdata}}\SH9\Saved\SaveGames\Settings.sav}} - - '{{Game data/saves|Windows|{{P|localappdata}}\SH9\Saved\SaveGames\}}' -'Sherlock Holmes: Crimes & Punishments': + - "{{Game data/config|Windows|{{P|localappdata}}\\SH9\\Saved\\Config\\WindowsNoEditor\\GameUserSettings.ini|{{P|localappdata}}\\SH9\\Saved\\SaveGames\\Settings.sav}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\SH9\\Saved\\SaveGames\\}}" +"Sherlock Holmes: Crimes & Punishments": gog: 1414012865 pageId: 37662 steam: 241260 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Sherlock Holmes - Crimes and - Punishments\SH7Game\Config\}} - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\My Games\Sherlock Holmes - Crimes and Punishments\SH7Game\}}' -'Sherlock Holmes: Nemesis': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Sherlock Holmes - Crimes and Punishments\\SH7Game\\Config\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\My Games\\Sherlock Holmes - Crimes and Punishments\\SH7Game\\}}" +"Sherlock Holmes: Nemesis": pageId: 147448 -'Sherlock Holmes: Nemesis - Remastered': +"Sherlock Holmes: Nemesis - Remastered": gog: 1460731832 pageId: 32552 steam: 11040 templates: - - '{{Game data/config|Windows|{{P|appdata}}\Games\sherlock holmes versus arsene lupin\setup.ini}}' -'Sherlock Holmes: Secret of the Silver Earring': + - "{{Game data/config|Windows|{{P|appdata}}\\Games\\sherlock holmes versus arsene lupin\\setup.ini}}" +"Sherlock Holmes: Secret of the Silver Earring": gog: 1207658862 pageId: 21238 steam: 11150 templates: - - '{{Game data/config|Windows|{{p|game}}\setup.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\save\|{{p|game}}\game.log}}' -'Sherlock Holmes: The Awakened': + - "{{Game data/config|Windows|{{p|game}}\\setup.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\save\\|{{p|game}}\\game.log}}" +"Sherlock Holmes: The Awakened": pageId: 147443 -'Sherlock Holmes: The Awakened (2023)': +"Sherlock Holmes: The Awakened (2023)": gog: 1430061181 pageId: 180384 steam: 1949030 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\SH3RE\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\SH3RE\Saved\SaveGames}}' -'Sherlock Holmes: The Awakened - Remastered': + - "{{Game data/config|Windows|{{P|localappdata}}\\SH3RE\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\SH3RE\\Saved\\SaveGames}}" +"Sherlock Holmes: The Awakened - Remastered": gog: 1460731213 pageId: 31369 steam: 11140 templates: - - >- - {{Game data/config|Windows|{{p|game}}\game.ini|{{p|appdata}}\Games\{{LocalizedPath|sherlock holmes - the awakened - - remastered}}\setup.ini }} - - >- - {{Game data/saves|Windows|{{p|appdata}}\Games\{{LocalizedPath|sherlock holmes - the awakened - - remastered}}\save\}} -'Sherlock Holmes: The Devil''s Daughter': + - "{{Game data/config|Windows|{{p|game}}\\game.ini|{{p|appdata}}\\Games\\{{LocalizedPath|sherlock holmes - the awakened - remastered}}\\setup.ini }}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Games\\{{LocalizedPath|sherlock holmes - the awakened - remastered}}\\save\\}}" +"Sherlock Holmes: The Devil's Daughter": gog: 1839766730 pageId: 33302 steam: 350640 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Sherlock Holmes - The Devil's - Daughter\SH8GAME\Config\}} - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Sherlock Holmes - The Devil''s Daughter\}}' -'Sherlock Holmes: The Mystery of the Mummy': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Sherlock Holmes - The Devil's Daughter\\SH8GAME\\Config\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Sherlock Holmes - The Devil's Daughter\\}}" +"Sherlock Holmes: The Mystery of the Mummy": pageId: 31368 steam: 11130 templates: - - '{{Game data/saves|Windows|{{p|game}}\data}}' -'Sherlock Holmes: The Mystery of the Persian Carpet': + - "{{Game data/saves|Windows|{{p|game}}\\data}}" +"Sherlock Holmes: The Mystery of the Persian Carpet": pageId: 61180 steam: 11180 -'Sherlock Holmes: Trap for the Hunter': +"Sherlock Holmes: Trap for the Hunter": pageId: 88162 steam: 809050 Shi Yang teach you to prevent disaster prevention: @@ -143687,7 +139833,7 @@ Shield Shock: Shields Up! VR: pageId: 95111 steam: 806650 -'Shieldwall Chronicles: Swords of the North': +"Shieldwall Chronicles: Swords of the North": pageId: 124050 steam: 951260 Shift: @@ -143697,8 +139843,8 @@ Shift 2 Unleashed: pageId: 5949 steam: 47920 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\SHIFT 2 UNLEASHED\graphicsconfig.xml}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\SHIFT 2 UNLEASHED\profiles\default.sav}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\SHIFT 2 UNLEASHED\\graphicsconfig.xml}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\SHIFT 2 UNLEASHED\\profiles\\default.sav}}" Shift Happens: pageId: 37349 steam: 359840 @@ -143709,8 +139855,8 @@ Shift Quantum: pageId: 69753 steam: 700520 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\ShiftQuantum\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\ShiftQuantum\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\ShiftQuantum\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\ShiftQuantum\\Saved\\SaveGames\\}}" Shift Shaft: pageId: 129761 steam: 1028610 @@ -143718,7 +139864,7 @@ Shiftlings: pageId: 23073 steam: 310810 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Rock Pocket Games\Shiftlings\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Rock Pocket Games\\Shiftlings\\}}" Shigatari: pageId: 69200 steam: 486380 @@ -143728,19 +139874,19 @@ Shiki: Shimmer: pageId: 104905 steam: 883370 -'Shin Koihime Musou: Otome Taisen Sangokushi Engi': +"Shin Koihime Musou: Otome Taisen Sangokushi Engi": pageId: 168126 Shin Megami Tensei III Nocturne HD Remaster: pageId: 167287 steam: 1413480 templates: - - '{{Game data/config|Windows|{{P|appdata}}\SEGA\smt3hd\{{P|uid}}\SMT3HDCONFIG}}' - - '{{Game data/saves|Windows|{{P|appdata}}\SEGA\smt3hd\{{P|uid}}\SMT3HDDATA.sav}}' -'Shin Megami Tensei: Synchronicity Prologue': + - "{{Game data/config|Windows|{{P|appdata}}\\SEGA\\smt3hd\\{{P|uid}}\\SMT3HDCONFIG}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\SEGA\\smt3hd\\{{P|uid}}\\SMT3HDDATA.sav}}" +"Shin Megami Tensei: Synchronicity Prologue": pageId: 74785 templates: - - '{{Game data/config|Windows|{{p|game}}\config\}}' - - '{{Game data/saves|Windows|{{p|game}}\config\}}' + - "{{Game data/config|Windows|{{p|game}}\\config\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\config\\}}" Shin Samurai Jazz: pageId: 48459 steam: 354970 @@ -143749,40 +139895,32 @@ Shin Sangokumusou 4 Special: renamedFrom: - Dynasty Warriors 5 Special templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\KOEI\{{LocalizedPath|Shin Sangokumusou 4 - Special}}\inputmap*.dat}} - - >- - {{Game data/saves|Windows|{{p|userprofile\Documents}}\KOEI\{{LocalizedPath|Shin Sangokumusou 4 - Special}}\Savedata\save.dat}} + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\KOEI\\{{LocalizedPath|Shin Sangokumusou 4 Special}}\\inputmap*.dat}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\KOEI\\{{LocalizedPath|Shin Sangokumusou 4 Special}}\\Savedata\\save.dat}}" Shin Sangokumusou 6 with Moushouden: pageId: 40410 renamedFrom: - Dynasty Warriors 7 with Xtreme Legends steam: 211140 templates: - - >- - {{Game data/config|Windows|{{p|hkcu}}\Software\TecmoKoei\{{LocalizedPath|Dynasty Warriors - 7}}\|{{p|userprofile\Documents}}\TecmoKoei\{{LocalizedPath|Shin Sangokumusou 6 with Moushouden}}\inputmap*.dat}} - - >- - {{Game data/saves|Windows|{{p|userprofile\Documents}}\TecmoKoei\{{LocalizedPath|Shin Sangokumusou 6 with - Moushouden}}\Savedata\save.dat}} -'Shin-chan: Me and the Professor on Summer Vacation - The Endless Seven-Day Journey': + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\TecmoKoei\\{{LocalizedPath|Dynasty Warriors 7}}\\|{{p|userprofile\\Documents}}\\TecmoKoei\\{{LocalizedPath|Shin Sangokumusou 6 with Moushouden}}\\inputmap*.dat}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\TecmoKoei\\{{LocalizedPath|Shin Sangokumusou 6 with Moushouden}}\\Savedata\\save.dat}}" +"Shin-chan: Me and the Professor on Summer Vacation - The Endless Seven-Day Journey": pageId: 180442 steam: 2061250 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\ネオス株式会社\Shin chan Summer}}' - - '{{Game data/saves|Steam|{{p|userprofile}}\Documents\My Games\Shin chan Summer\Steam\{{p|uid}}\CGP\}}' -Shine's Adventures 2 (Zombie Attack): + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\ネオス株式会社\\Shin chan Summer}}" + - "{{Game data/saves|Steam|{{p|userprofile}}\\Documents\\My Games\\Shin chan Summer\\Steam\\{{p|uid}}\\CGP\\}}" +"Shine's Adventures 2 (Zombie Attack)": pageId: 140795 steam: 1105410 -Shine's Adventures 3 (Sea Fight): +"Shine's Adventures 3 (Sea Fight)": pageId: 155620 steam: 1208050 -Shine's Adventures 5(World Of Box): +"Shine's Adventures 5(World Of Box)": pageId: 153650 steam: 1203990 -Shine's Adventures 6 (Go! Girls): +"Shine's Adventures 6 (Go! Girls)": pageId: 148439 steam: 1175470 ShineG & Zombie Mincer: @@ -143798,7 +139936,7 @@ ShineG In The Bullethell: pageId: 62227 steam: 632640 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\DefaultCompany\ShineG_IB}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\DefaultCompany\\ShineG_IB}}" ShineG In The SeaFight: pageId: 74407 steam: 733650 @@ -143806,16 +139944,16 @@ ShineG In The Zombies: pageId: 66163 steam: 675680 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\DefaultCompany\ShineGInTheZombies}}' + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\DefaultCompany\\ShineGInTheZombies}}" ShineG in Future Factory: pageId: 89571 steam: 821730 -'Shiness: The Lightning Kingdom': +"Shiness: The Lightning Kingdom": pageId: 26322 steam: 366640 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\My Games\Shiness\ShinessGame\Config\}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\My Games\Shiness\Binaries\Savegame\}}' + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\My Games\\Shiness\\ShinessGame\\Config\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\My Games\\Shiness\\Binaries\\Savegame\\}}" Shing!: gog: 1712752103 gogSide: @@ -143828,7 +139966,7 @@ Shing!: - 1450510 - 1450540 templates: - - '{{Game data/config|Linux|{{p|xdgconfighome}}/unity3d/MassCreation/Shing!/prefs}}' + - "{{Game data/config|Linux|{{p|xdgconfighome}}/unity3d/MassCreation/Shing!/prefs}}" Shining City: pageId: 144700 steam: 1133570 @@ -143836,23 +139974,15 @@ Shining Force: pageId: 30907 steam: 71120 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\SEGA Mega Drive - Classics\setup.dat|{{p|userprofile\Documents}}\SEGA Genesis Classics\setup.dat}} - - >- - {{Game data/saves|Windows|{{p|userprofile\Documents}}\SEGA Mega Drive - Classics\0038\|{{p|userprofile\Documents}}\SEGA Genesis Classics\0038\}} + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\SEGA Mega Drive Classics\\setup.dat|{{p|userprofile\\Documents}}\\SEGA Genesis Classics\\setup.dat}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\SEGA Mega Drive Classics\\0038\\|{{p|userprofile\\Documents}}\\SEGA Genesis Classics\\0038\\}}" Shining Force II: pageId: 30909 steam: 71160 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\SEGA Mega Drive - Classics\setup.dat|{{p|userprofile\Documents}}\SEGA Genesis Classics\setup.dat}} - - >- - {{Game data/saves|Windows|{{p|userprofile\Documents}}\SEGA Mega Drive - Classics\0039\|{{p|userprofile\Documents}}\SEGA Genesis Classics\0039\}} -'Shining Hotel: Lost in Nowhere': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\SEGA Mega Drive Classics\\setup.dat|{{p|userprofile\\Documents}}\\SEGA Genesis Classics\\setup.dat}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\SEGA Mega Drive Classics\\0039\\|{{p|userprofile\\Documents}}\\SEGA Genesis Classics\\0039\\}}" +"Shining Hotel: Lost in Nowhere": pageId: 94713 steam: 861190 Shining Jump Jump: @@ -143871,15 +140001,15 @@ Shining Resonance Refrain: pageId: 87591 steam: 809890 templates: - - '{{Game data/config|Windows|{{P|game}}\configdata\GRAPHICCFG.DAT}}' - - '{{Game data/saves|Steam|{{P|steam}}\userdata\{{p|uid}}\809890\remote\PLAYDATA0.DAT}}' + - "{{Game data/config|Windows|{{P|game}}\\configdata\\GRAPHICCFG.DAT}}" + - "{{Game data/saves|Steam|{{P|steam}}\\userdata\\{{p|uid}}\\809890\\remote\\PLAYDATA0.DAT}}" Shining Song Starnova: gog: 1637713817 pageId: 66725 steam: 675240 templates: - - '{{Game data/saves|Linux|{{p|linuxhome}}/.renpy/ShiningSongStarnova-SaveData/}}' -'Shining Song Starnova: Idol Empire': + - "{{Game data/saves|Linux|{{p|linuxhome}}/.renpy/ShiningSongStarnova-SaveData/}}" +"Shining Song Starnova: Idol Empire": gog: 1431825456 pageId: 160955 steam: 1215200 @@ -143890,34 +140020,26 @@ Shining in the Darkness: pageId: 30905 steam: 71161 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\SEGA Mega Drive - Classics\setup.dat|{{p|userprofile\Documents}}\SEGA Genesis Classics\setup.dat}} - - >- - {{Game data/saves|Windows|{{p|userprofile\Documents}}\SEGA Mega Drive - Classics\0040\|{{p|userprofile\Documents}}\SEGA Genesis Classics\0040\}} + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\SEGA Mega Drive Classics\\setup.dat|{{p|userprofile\\Documents}}\\SEGA Genesis Classics\\setup.dat}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\SEGA Mega Drive Classics\\0040\\|{{p|userprofile\\Documents}}\\SEGA Genesis Classics\\0040\\}}" Shinobi: pageId: 176341 Shinobi Bad Buddies: pageId: 82014 steam: 786350 -'Shinobi III: Return of the Ninja Master': +"Shinobi III: Return of the Ninja Master": pageId: 30898 steam: 34277 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\SEGA Mega Drive - Classics\setup.dat|{{p|userprofile\Documents}}\SEGA Genesis Classics\setup.dat}} - - >- - {{Game data/saves|Windows|{{p|userprofile\Documents}}\SEGA Mega Drive - Classics\0007\|{{p|userprofile\Documents}}\SEGA Genesis Classics\0007\}} + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\SEGA Mega Drive Classics\\setup.dat|{{p|userprofile\\Documents}}\\SEGA Genesis Classics\\setup.dat}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\SEGA Mega Drive Classics\\0007\\|{{p|userprofile\\Documents}}\\SEGA Genesis Classics\\0007\\}}" Shinobi Spirits S Legend of Heroes/忍スピリッツS 真田獣勇士伝: pageId: 141878 steam: 1110220 -'Shinrin-yoku: Forest Meditation and Relaxation': +"Shinrin-yoku: Forest Meditation and Relaxation": pageId: 79758 steam: 774421 -'Shinsekai: Into the Depths': +"Shinsekai: Into the Depths": pageId: 147753 Shiny: pageId: 36592 @@ -143935,8 +140057,8 @@ Shio: pageId: 55624 steam: 525360 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\CoconutIslandStudio\SHIO\}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\CoconutIslandStudio\SHIO\savedata.dat}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\CoconutIslandStudio\\SHIO\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\CoconutIslandStudio\\SHIO\\savedata.dat}}" Ship Ahoy: pageId: 79700 steam: 757380 @@ -143953,13 +140075,13 @@ Ship Graveyard Simulator: - 1657470 - 1664350 templates: - - '{{Game data/saves|Windows|{{p|localappdata}}\ShipGraveyard\Saved\SaveGames\SGSGame1\*.sav}}' + - "{{Game data/saves|Windows|{{p|localappdata}}\\ShipGraveyard\\Saved\\SaveGames\\SGSGame1\\*.sav}}" Ship Graveyard Simulator 2: pageId: 189342 steam: 2201940 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\ShipGraveyard2\Saved\SaveGames\Settings\*.sav}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\ShipGraveyard2\Saved\SaveGames\*.sav}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\ShipGraveyard2\\Saved\\SaveGames\\Settings\\*.sav}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\ShipGraveyard2\\Saved\\SaveGames\\*.sav}}" Ship It: pageId: 50889 steam: 511700 @@ -143969,15 +140091,15 @@ Ship Rescue: Ship Simulator Extremes: pageId: 41100 steam: 48800 -'Ship Simulator: Maritime Search and Rescue': +"Ship Simulator: Maritime Search and Rescue": pageId: 50025 steam: 274010 ShipLord: pageId: 32902 steam: 422250 templates: - - '{{Game data/config|Windows|{{p|appdata}}\ShipLord\{{p|uid}}\}}' - - '{{Game data/saves|Windows|{{p|appdata}}\ShipLord\{{p|uid}}\}}' + - "{{Game data/config|Windows|{{p|appdata}}\\ShipLord\\{{p|uid}}\\}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\ShipLord\\{{p|uid}}\\}}" Shipbreakers: pageId: 108780 steam: 744910 @@ -143994,13 +140116,13 @@ Shipwreck: pageId: 16328 steam: 342490 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Shipwreck\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Brushfire Games/Shipwreck/}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/Brushfire Games/Shipwreck/}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Shipwreck\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Brushfire Games/Shipwreck/}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/Brushfire Games/Shipwreck/}}' -'Shiren the Wanderer: The Tower of Fortune and the Dice of Fate': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Shipwreck\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Brushfire Games/Shipwreck/}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/Brushfire Games/Shipwreck/}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Shipwreck\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Brushfire Games/Shipwreck/}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/Brushfire Games/Shipwreck/}}" +"Shiren the Wanderer: The Tower of Fortune and the Dice of Fate": pageId: 168163 steam: 1178790 Shirina: @@ -144012,7 +140134,7 @@ Shiro 011: Shisensho Solitaire: pageId: 149047 steam: 1161360 -'Shishi : Ballad of the Oracle': +"Shishi : Ballad of the Oracle": pageId: 142272 steam: 1104570 Shit Storm: @@ -144022,17 +140144,17 @@ Shiver: pageId: 73855 steam: 727730 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Kowai Sugoi Studios\Shiver}}' - - '{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/Kowai Sugoi Studios/Shiver/prefs}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Kowai Sugoi Studios\Shiver\*.save}}' - - '{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/Kowai Sugoi Studios/Shiver/*.save}}' -'Shiver: Poltergeist': + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Kowai Sugoi Studios\\Shiver}}" + - "{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/Kowai Sugoi Studios/Shiver/prefs}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Kowai Sugoi Studios\\Shiver\\*.save}}" + - "{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/Kowai Sugoi Studios/Shiver/*.save}}" +"Shiver: Poltergeist": pageId: 52532 steam: 545640 -'Shiver: The Lily''s Requiem': +"Shiver: The Lily's Requiem": pageId: 95451 steam: 866710 -'Shiver: Vanishing Hitchhiker': +"Shiver: Vanishing Hitchhiker": pageId: 33848 steam: 466060 Shivering Sky: @@ -144041,10 +140163,10 @@ Shivering Sky: Shivers: gog: 2007520286 pageId: 64148 -'Shivers Two: Harvest of Souls': +"Shivers Two: Harvest of Souls": gog: 1883703475 pageId: 147541 -'Shizue: Innocent curse': +"Shizue: Innocent curse": pageId: 134656 steam: 1060340 Shmadow: @@ -144073,13 +140195,13 @@ Shock Troopers: pageId: 43011 steam: 366270 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\shocktro\}}' -'Shock Troopers: 2nd Squad': + - "{{Game data/config|Windows|{{p|localappdata}}\\shocktro\\}}" +"Shock Troopers: 2nd Squad": gog: 1816849333 pageId: 50783 steam: 465870 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\shocktr2\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\shocktr2\\}}" ShockRods: pageId: 132729 steam: 647640 @@ -144091,29 +140213,29 @@ Shoemaker: Shofer Race Driver: pageId: 47427 steam: 367700 -'Shogo: Mobile Armor Division': +"Shogo: Mobile Armor Division": gog: 1207658659 pageId: 21492 steam: 610860 templates: - - '{{Game data/config|Windows|{{p|game}}\autoexec.cfg}}' - - '{{Game data/config|Linux|{{p|game}}/autoexec.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\Save}}' - - '{{Game data/saves|Linux|{{p|game}}/Save}}' -'Shogun''s Empire: Hex Commander': + - "{{Game data/config|Windows|{{p|game}}\\autoexec.cfg}}" + - "{{Game data/config|Linux|{{p|game}}/autoexec.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\Save}}" + - "{{Game data/saves|Linux|{{p|game}}/Save}}" +"Shogun's Empire: Hex Commander": pageId: 139049 steam: 1093760 -'Shogun: Total War': +"Shogun: Total War": pageId: 4470 steam: 345240 templates: - - '{{Game data/saves|Windows|{{p|game}}\savegames\}}' + - "{{Game data/saves|Windows|{{p|game}}\\savegames\\}}" Shonen Idle Z: pageId: 42129 steam: 492800 templates: - - '{{Game data/saves|Windows|{{p|localappdata}}\shonenidlez\}}' -Shoot 'm Up: + - "{{Game data/saves|Windows|{{p|localappdata}}\\shonenidlez\\}}" +"Shoot 'm Up": pageId: 63845 steam: 657170 Shoot 1UP: @@ -144125,7 +140247,7 @@ Shoot Girl: Shoot Loop VR: pageId: 72676 steam: 603970 -'Shoot Mania VR: Fun Zombies': +"Shoot Mania VR: Fun Zombies": pageId: 57985 steam: 496960 Shoot Many Robots: @@ -144144,9 +140266,9 @@ Shoot Shoot My Waifu: pageId: 166687 steam: 1405660 templates: - - '{{Game data/config|Linux|{{p|xdgconfighome}}/unity3d/ZaiStudio/7SexySins Tadaima/prefs}}' - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\ZaiStudio\7SexySins Tadaima\PlayerData.dat}}' - - '{{Game data/saves|Linux|{{p|xdgconfighome}}/unity3d/ZaiStudio/7SexySins Tadaima/PlayerData.dat}}' + - "{{Game data/config|Linux|{{p|xdgconfighome}}/unity3d/ZaiStudio/7SexySins Tadaima/prefs}}" + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\ZaiStudio\\7SexySins Tadaima\\PlayerData.dat}}" + - "{{Game data/saves|Linux|{{p|xdgconfighome}}/unity3d/ZaiStudio/7SexySins Tadaima/PlayerData.dat}}" Shoot The Zombirds VR: pageId: 132604 steam: 1033000 @@ -144154,28 +140276,28 @@ Shoot the Bullet: pageId: 30993 steam: 1420650 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/saves|Windows|{{p|game}}\}}' + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\}}" Shoot the ball: pageId: 128169 steam: 1026300 Shoot!: pageId: 139739 steam: 1104200 -Shoot'n'Scroll 3D: +"Shoot'n'Scroll 3D": pageId: 112600 steam: 936600 -'Shoot, push, portals': +"Shoot, push, portals": pageId: 153426 steam: 1197990 Shoot-No-Shoot: pageId: 110202 steam: 923390 -'ShootMania: Storm': +"ShootMania: Storm": pageId: 5439 steam: 229870 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\ManiaPlanet\Config\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\ManiaPlanet\\Config\\}}" Shooter Game: pageId: 109068 steam: 861290 @@ -144209,15 +140331,15 @@ Shooting Stars!: pageId: 38129 steam: 415350 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Daedalic Entertainment GmbH\ShootingStars\}}' - - '{{Game data/saves|Windows|{{p|LOCALAPPDATA}}\Daedalic Entertainment GmbH\ShootingStars\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Daedalic Entertainment GmbH\\ShootingStars\\}}" + - "{{Game data/saves|Windows|{{p|LOCALAPPDATA}}\\Daedalic Entertainment GmbH\\ShootingStars\\}}" Shootout on Cash Island: pageId: 62199 steam: 614950 Shoottera: pageId: 87185 steam: 804970 -'Shoottris: Beyond the Classic Game': +"Shoottris: Beyond the Classic Game": pageId: 114034 steam: 933740 Shooty Fruity: @@ -144230,7 +140352,7 @@ Shooty Skies: pageId: 87894 steam: 702810 templates: - - '{{Game data/saves|Steam|{{p|Steam}}\userdata\{{p|uid}}\702810\remote\playerSave.txt}}' + - "{{Game data/saves|Steam|{{p|Steam}}\\userdata\\{{p|uid}}\\702810\\remote\\playerSave.txt}}" Shooty Squad: pageId: 67573 steam: 681060 @@ -144240,7 +140362,7 @@ Shop Battle: Shop Heroes: pageId: 41597 steam: 506140 -'Shop Manager : Video Game Tycoon': +"Shop Manager : Video Game Tycoon": pageId: 113838 steam: 928180 Shop Titans: @@ -144249,7 +140371,7 @@ Shop Titans: Shop Tycoon The Boss: pageId: 98164 steam: 590660 -'Shop-n-Spree: Shopping Paradise': +"Shop-n-Spree: Shopping Paradise": pageId: 39952 steam: 527890 Shopkeeper: @@ -144265,14 +140387,14 @@ Shoppe Keep: pageId: 42966 steam: 381120 templates: - - '{{Game data/config|Steam|{{p|game}}\Shoppe Keep_Data\*.sk}}' + - "{{Game data/config|Steam|{{p|game}}\\Shoppe Keep_Data\\*.sk}}" Shoppe Keep 2: pageId: 72407 steam: 684580 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Strange Fire\Shoppe Keep 2}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Strange Fire\Shoppe Keep 2\Saves}}' -'Shopping Clutter 2: Christmas Square': + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Strange Fire\\Shoppe Keep 2}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Strange Fire\\Shoppe Keep 2\\Saves}}" +"Shopping Clutter 2: Christmas Square": pageId: 123527 steam: 932970 Shopping Simulator Multiplayer: @@ -144281,7 +140403,7 @@ Shopping Simulator Multiplayer: Shopping Tycoon: pageId: 67290 steam: 659130 -'Shoppy Mart: Steam Edition': +"Shoppy Mart: Steam Edition": pageId: 46290 steam: 388360 Shores Unknown: @@ -144314,10 +140436,8 @@ Shortest Trip to Earth: - 1172130 - 1392710 templates: - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Interactive Fate\Shortest Trip To Earth\*.es2}}' - - >- - {{Game data/saves|Linux|{{p|linuxhome}}/Library/Application Support/Interactive Fate/Shortest Trip To - Earth/*.es2}} + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Interactive Fate\\Shortest Trip To Earth\\*.es2}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/Library/Application Support/Interactive Fate/Shortest Trip To Earth/*.es2}}" Shot In The Dark: pageId: 47569 steam: 372820 @@ -144336,14 +140456,14 @@ ShotKill: Shotgun Farmers: pageId: 62058 steam: 604240 -'Shotgun King: The Final Checkmate': +"Shotgun King: The Final Checkmate": gog: 1935194845 gogSide: - 1603131651 pageId: 180550 steam: 1972440 templates: - - '{{Game data/saves|Windows|{{P|game}}\save\}}' + - "{{Game data/saves|Windows|{{P|game}}\\save\\}}" Shotgun Legend: pageId: 62729 steam: 597230 @@ -144369,34 +140489,34 @@ Shovel Knight Showdown: gog: 1328485946 pageId: 152588 steam: 1116770 -'Shovel Knight: King of Cards': +"Shovel Knight: King of Cards": gog: 1921492046 pageId: 153478 steam: 1116780 templates: - - '{{Game data/saves|Windows|{{p|appdata}}\Yacht Club Games\Shovel Knight - King of Cards\}}' -'Shovel Knight: Shovel of Hope': + - "{{Game data/saves|Windows|{{p|appdata}}\\Yacht Club Games\\Shovel Knight - King of Cards\\}}" +"Shovel Knight: Shovel of Hope": gog: 1441664298 pageId: 153480 steam: 589500 -'Shovel Knight: Specter of Torment': +"Shovel Knight: Specter of Torment": gog: 1492817397 pageId: 60275 steam: 589510 templates: - - '{{Game data/saves|Windows|{{p|appdata}}\Yacht Club Games\Shovel Knight - Specter of Torment\}}' -'Shovel Knight: Treasure Trove': + - "{{Game data/saves|Windows|{{p|appdata}}\\Yacht Club Games\\Shovel Knight - Specter of Torment\\}}" +"Shovel Knight: Treasure Trove": gog: 1207664823 pageId: 15481 steam: 250760 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Yacht Club Games\Shovel Knight\*.bin}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Yacht Club Games/Shovel Knight/}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.local/share/Yacht Club Games/Shovel Knight/}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Yacht Club Games\Shovel Knight\saveData.bin}}' - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\250760\remote\saveData.bin}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Yacht Club Games/Shovel Knight/}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/Yacht Club Games/Shovel Knight/}}' + - "{{Game data/config|Windows|{{p|appdata}}\\Yacht Club Games\\Shovel Knight\\*.bin}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Yacht Club Games/Shovel Knight/}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.local/share/Yacht Club Games/Shovel Knight/}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Yacht Club Games\\Shovel Knight\\saveData.bin}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\250760\\remote\\saveData.bin}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Yacht Club Games/Shovel Knight/}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/Yacht Club Games/Shovel Knight/}}" Show It 2 Me: pageId: 77910 steam: 622270 @@ -144421,18 +140541,18 @@ Showdown at Willow Creek: ShowdownVR: pageId: 40291 steam: 529940 -'Shower With Your Dad Simulator 2015: Do You Still Shower With Your Dad': +"Shower With Your Dad Simulator 2015: Do You Still Shower With Your Dad": pageId: 37142 steam: 359050 templates: - - '{{Game data/config|Windows|{{p|APPDATA}}\MMFApplications\SHOWERDAD.ini}}' + - "{{Game data/config|Windows|{{p|APPDATA}}\\MMFApplications\\SHOWERDAD.ini}}" Showgunners: gog: 1511366207 pageId: 186883 steam: 1155330 templates: - - '{{Game data/saves|Windows|{{p|localappdata}}\Showgunners\Saved\SaveGames\{{p|uid}}}}' -'Showing Tonight: Mindhunters Incident': + - "{{Game data/saves|Windows|{{p|localappdata}}\\Showgunners\\Saved\\SaveGames\\{{p|uid}}}}" +"Showing Tonight: Mindhunters Incident": pageId: 45649 steam: 416370 Showmaker: @@ -144460,40 +140580,36 @@ Shredders: pageId: 176181 steam: 1874170 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Foampunch\Shredders\}}' - - >- - {{Game data/config|Microsoft - Store|{{p|localappdata}}\Packages\FoamPunch.Shredders_6gtbvqvkrbpn2\SystemAppData\wgs\}} - - >- - {{Game data/saves|Microsoft - Store|{{p|localappdata}}\Packages\FoamPunch.Shredders_6gtbvqvkrbpn2\SystemAppData\wgs\}} -'Shrek 2: Team Action': + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Foampunch\\Shredders\\}}" + - "{{Game data/config|Microsoft Store|{{p|localappdata}}\\Packages\\FoamPunch.Shredders_6gtbvqvkrbpn2\\SystemAppData\\wgs\\}}" + - "{{Game data/saves|Microsoft Store|{{p|localappdata}}\\Packages\\FoamPunch.Shredders_6gtbvqvkrbpn2\\SystemAppData\\wgs\\}}" +"Shrek 2: Team Action": pageId: 25043 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Activision\Shrek 2 Team Action\Settings}}' - - '{{Game data/saves|Windows|{{p|game}}\Game\Save\}}' -'Shrek 2: The Game': + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Activision\\Shrek 2 Team Action\\Settings}}" + - "{{Game data/saves|Windows|{{p|game}}\\Game\\Save\\}}" +"Shrek 2: The Game": pageId: 101819 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Shrek 2\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Shrek 2\Save\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Shrek 2\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Shrek 2\\Save\\}}" Shrek Forever After: pageId: 32789 steam: 42660 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Activision\Shrek Forever After\user.cfg}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Activision\Shrek Forever After\savegames\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Activision\\Shrek Forever After\\user.cfg}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Activision\\Shrek Forever After\\savegames\\}}" Shrek SuperSlam: pageId: 126540 templates: - - '{{Game data/config|Windows|{{p|game}}/config.ini}}' - - '{{Game data/saves|Windows|{{p|game}}/data/saves/(username)-ShrekSuperSlam.sav}}' + - "{{Game data/config|Windows|{{p|game}}/config.ini}}" + - "{{Game data/saves|Windows|{{p|game}}/data/saves/(username)-ShrekSuperSlam.sav}}" Shrek the Third: pageId: 65796 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Activision\SHReK the THiRD\SHReK the THiRD.ini}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Activision\SHReK the THiRD\SHReK the THiRD.s3b}}' -Shrek's Carnival Craze: + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Activision\\SHReK the THiRD\\SHReK the THiRD.ini}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Activision\\SHReK the THiRD\\SHReK the THiRD.s3b}}" +"Shrek's Carnival Craze": pageId: 101873 Shrine of the God-Ape: pageId: 140922 @@ -144513,41 +140629,41 @@ Shrooms: Shroomscape Zone: pageId: 174706 templates: - - '{{Game data/config|Linux|{{P|linuxhome}}/.config/Epic/Shroomtopia/Saved/Config}}' - - '{{Game data/saves|Linux|{{P|linuxhome}}/.config/Epic/Shroomtopia/Saved/SaveGames}}' -'Shroud of the Avatar: Forsaken Virtues': + - "{{Game data/config|Linux|{{P|linuxhome}}/.config/Epic/Shroomtopia/Saved/Config}}" + - "{{Game data/saves|Linux|{{P|linuxhome}}/.config/Epic/Shroomtopia/Saved/SaveGames}}" +"Shroud of the Avatar: Forsaken Virtues": pageId: 23075 steam: 326160 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Portalarium\Shroud of the Avatar}}' - - '{{Game data/saves|Windows|{{P|appdata}}\Portalarium\Shroud of the Avatar\SavedGames}}' -'Shrouded Tales: Revenge of Shadows': + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Portalarium\\Shroud of the Avatar}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\Portalarium\\Shroud of the Avatar\\SavedGames}}" +"Shrouded Tales: Revenge of Shadows": pageId: 63183 steam: 647940 -'Shrouded Tales: The Spellbound Land': +"Shrouded Tales: The Spellbound Land": pageId: 53682 renamedFrom: - - 'Shrouded Tales: The Spellbound Land Collector''s Edition' + - "Shrouded Tales: The Spellbound Land Collector's Edition" steam: 559970 Shrouded in Sanity: pageId: 42854 steam: 444590 -'Shrouded in Sanity: Freebirth': +"Shrouded in Sanity: Freebirth": pageId: 89480 steam: 820400 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Shrouded_in_Sanity_Freebirth\settings.sav}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Shrouded_in_Sanity_Freebirth}}' -'Shrug Island: The Meeting': + - "{{Game data/config|Windows|{{p|localappdata}}\\Shrouded_in_Sanity_Freebirth\\settings.sav}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Shrouded_in_Sanity_Freebirth}}" +"Shrug Island: The Meeting": pageId: 43231 steam: 420170 -'Shtriga: Summer Camp': +"Shtriga: Summer Camp": pageId: 56914 steam: 560740 Shu: pageId: 51145 steam: 528720 -Shu's Garden: +"Shu's Garden": pageId: 46911 steam: 393350 Shudder: @@ -144562,8 +140678,8 @@ Shuffle!: pageId: 52117 steam: 537100 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\SOFTWARE\YumeHaven\Shuffle!\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\YumeHaven\Shuffle!\save\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\YumeHaven\\Shuffle!\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\YumeHaven\\Shuffle!\\save\\}}" Shufflepuck Cantina Deluxe VR: pageId: 15985 steam: 259510 @@ -144580,7 +140696,7 @@ Shutshimi: pageId: 46727 steam: 332530 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Neon Deity Games\Shutshimi\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Neon Deity Games\\Shutshimi\\}}" Shutter: pageId: 48298 steam: 359560 @@ -144588,25 +140704,25 @@ Shuttle Siege: pageId: 55803 steam: 519020 templates: - - '{{Game data/saves|Windows|{{p|LOCALAPPDATA}}\ShuttleSiege\}}' + - "{{Game data/saves|Windows|{{p|LOCALAPPDATA}}\\ShuttleSiege\\}}" Shuttlecock-H: pageId: 132316 steam: 1055590 -'Shuttlecock-H: Covered Rematch': +"Shuttlecock-H: Covered Rematch": pageId: 144534 steam: 1140350 Shuyan Saga: pageId: 67526 steam: 594680 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Lofty Sky Entertainment\Shuyan}}' + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Lofty Sky Entertainment\\Shuyan}}" Shwip: pageId: 89341 steam: 349710 ShyChess: pageId: 103693 steam: 894540 -'Si Kancil: The Adventurous Mouse Deer': +"Si Kancil: The Adventurous Mouse Deer": pageId: 53049 steam: 530530 SiN: @@ -144616,35 +140732,25 @@ SiN: steamSide: - 1309 templates: - - >- - {{Game data/config|Windows|{{p|game}}\base\players\{{p|uid}}\config.cfg{{note|note=Default for the base - game}}|{{p|game}}\2015\players\{{p|uid}}\config.cfg{{note|note=Default for the Wages of SiN - expansion}}|{{p|appdata}}\dominatrix\base\config.cfg{{note|note=Default for the base game when using the [[#Source - ports|Dominatrix source port]]}}|{{p|appdata}}\dominatrix\2015\config.cfg{{note|note=Default for the Wages of SiN - expansion when using the [[#Source ports|Dominatrix source port]]}}}} - - '{{Game data/config|Linux|{{p|linuxhome}}/.hyperion/Sin/players/{{p|uid}}/config.cfg}}' - - >- - {{Game data/saves|Windows|{{p|game}}\base\players\{{p|uid}}\save\{{note|note=Default for the base - game}}|{{p|game}}\2015\players\{{p|uid}}\save\{{note|note=Default for the Wages of SiN - expansion}}|{{p|appdata}}\dominatrix\base\save\{{note|note=Default for the base game when using the [[#Source - ports|Dominatrix source port]]}}|{{p|appdata}}\dominatrix\2015\save\{{note|note=Default for the Wages of SiN - expansion when using the [[#Source ports|Dominatrix source port]]}}}} -'SiN Episodes: Emergence': + - "{{Game data/config|Windows|{{p|game}}\\base\\players\\{{p|uid}}\\config.cfg{{note|note=Default for the base game}}|{{p|game}}\\2015\\players\\{{p|uid}}\\config.cfg{{note|note=Default for the Wages of SiN expansion}}|{{p|appdata}}\\dominatrix\\base\\config.cfg{{note|note=Default for the base game when using the [[#Source ports|Dominatrix source port]]}}|{{p|appdata}}\\dominatrix\\2015\\config.cfg{{note|note=Default for the Wages of SiN expansion when using the [[#Source ports|Dominatrix source port]]}}}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.hyperion/Sin/players/{{p|uid}}/config.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\base\\players\\{{p|uid}}\\save\\{{note|note=Default for the base game}}|{{p|game}}\\2015\\players\\{{p|uid}}\\save\\{{note|note=Default for the Wages of SiN expansion}}|{{p|appdata}}\\dominatrix\\base\\save\\{{note|note=Default for the base game when using the [[#Source ports|Dominatrix source port]]}}|{{p|appdata}}\\dominatrix\\2015\\save\\{{note|note=Default for the Wages of SiN expansion when using the [[#Source ports|Dominatrix source port]]}}}}" +"SiN Episodes: Emergence": pageId: 4072 steam: 1300 steamSide: - 1309 templates: - - '{{Game data/config|Windows|{{p|game}}\SE1\cfg\}}' - - '{{Game data/saves|Windows|{{p|game}}\SE1\SAVE\}}' -'SiN: Reloaded': + - "{{Game data/config|Windows|{{p|game}}\\SE1\\cfg\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\SE1\\SAVE\\}}" +"SiN: Reloaded": pageId: 163180 steam: 632950 SiNKR: pageId: 68498 steam: 676420 templates: - - '{{Game data/saves|Windows| HKEY_CURRENT_USER\SOFTWARE\Wahler Digital\Sinkr}}' + - "{{Game data/saves|Windows| HKEY_CURRENT_USER\\SOFTWARE\\Wahler Digital\\Sinkr}}" SiNKR 2: pageId: 122600 steam: 973220 @@ -144660,7 +140766,7 @@ Siberian Dawn: Siberian Run VR: pageId: 135084 steam: 1055870 -Sicier's Zweck: +"Sicier's Zweck": pageId: 134566 steam: 1059760 Sick Coaster: @@ -144679,48 +140785,46 @@ Sickness: pageId: 37768 steam: 413870 templates: - - '{{Game data/config|Windows|{{P|appdata}}\renpy\Sickness-1392699346\persistent}}' - - '{{Game data/saves|Windows|{{P|appdata}}\renpy\Sickness-1392699346\*.save}}' -Sid & Al's Incredible Toons: + - "{{Game data/config|Windows|{{P|appdata}}\\renpy\\Sickness-1392699346\\persistent}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\renpy\\Sickness-1392699346\\*.save}}" +"Sid & Al's Incredible Toons": pageId: 66560 templates: - - '{{Game data/config|DOS|{{p|game}}\RESOURCE.CFG}}' - - '{{Game data/saves|DOS|{{p|game}}\TOONS.SAV|{{p|game}}\*.ITL}}' -Sid Meier's Ace Patrol: + - "{{Game data/config|DOS|{{p|game}}\\RESOURCE.CFG}}" + - "{{Game data/saves|DOS|{{p|game}}\\TOONS.SAV|{{p|game}}\\*.ITL}}" +"Sid Meier's Ace Patrol": pageId: 40600 steam: 244070 -'Sid Meier''s Ace Patrol: Pacific Skies': +"Sid Meier's Ace Patrol: Pacific Skies": pageId: 40530 steam: 244090 -Sid Meier's Alpha Centauri: +"Sid Meier's Alpha Centauri": gog: 1207658936 pageId: 735 templates: - - '{{Game data/config|Windows|{{p|game}}\Alpha Centauri.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\saves}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/GOG.com/Sid Meier''s Alpha Centauri/saves}}' -Sid Meier's Antietam!: + - "{{Game data/config|Windows|{{p|game}}\\Alpha Centauri.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\saves}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/GOG.com/Sid Meier's Alpha Centauri/saves}}" +"Sid Meier's Antietam!": pageId: 8721 -Sid Meier's Civilization: +"Sid Meier's Civilization": pageId: 4915 renamedFrom: - Civilization -Sid Meier's Civilization II: +"Sid Meier's Civilization II": pageId: 422 renamedFrom: - Civilization II -Sid Meier's Civilization III: +"Sid Meier's Civilization III": gog: 1471405734 pageId: 3168 renamedFrom: - Civilization III steam: 3910 templates: - - >- - {{Game - data/config|Windows|{{p|game}}\Civilization3.ini
{{p|game}}\Civ3PTW\Civilization3X.ini
{{p|game}}\Conquests\Conquests.ini}} - - '{{Game data/saves|Windows|{{p|game}}\Saves
{{p|game}}\Civ3PTW\Saves
{{p|game}}\Conquests\Saves}}' -Sid Meier's Civilization IV: + - "{{Game data/config|Windows|{{p|game}}\\Civilization3.ini
{{p|game}}\\Civ3PTW\\Civilization3X.ini
{{p|game}}\\Conquests\\Conquests.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\Saves
{{p|game}}\\Civ3PTW\\Saves
{{p|game}}\\Conquests\\Saves}}" +"Sid Meier's Civilization IV": gog: 1760534591 pageId: 1294 renamedFrom: @@ -144733,162 +140837,138 @@ Sid Meier's Civilization IV: - 34450 - 34460 templates: - - |- - {{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Sid Meier's Civilization IV| - {{p|userprofile\Documents}}\My Games\Warlords| - {{p|userprofile\Documents}}\My Games\Beyond the Sword}} - - '{{Game data/config|GOG.com|{{p|userprofile\Documents}}\My Games\Civ4}}' - - '{{Game data/config|Steam|{{p|userprofile\Documents}}\My Games\Sid Meier''s Civilization IV\}}' - - |- - {{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Sid Meier's Civilization IV\Saves| - {{p|userprofile\Documents}}\My Games\Warlords\Saves| - {{p|userprofile\Documents}}\My Games\Beyond the Sword\Saves}} - - '{{Game data/saves|GOG.com|{{p|userprofile\Documents}}\My Games\Civ4\Saves}}' - - '{{Game data/saves|Steam|{{p|userprofile\Documents}}\My Games\Sid Meier''s Civilization IV\Saves}}' -'Sid Meier''s Civilization IV: Colonization': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Sid Meier's Civilization IV|\n{{p|userprofile\\Documents}}\\My Games\\Warlords|\n{{p|userprofile\\Documents}}\\My Games\\Beyond the Sword}}" + - "{{Game data/config|GOG.com|{{p|userprofile\\Documents}}\\My Games\\Civ4}}" + - "{{Game data/config|Steam|{{p|userprofile\\Documents}}\\My Games\\Sid Meier's Civilization IV\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Sid Meier's Civilization IV\\Saves|\n{{p|userprofile\\Documents}}\\My Games\\Warlords\\Saves|\n{{p|userprofile\\Documents}}\\My Games\\Beyond the Sword\\Saves}}" + - "{{Game data/saves|GOG.com|{{p|userprofile\\Documents}}\\My Games\\Civ4\\Saves}}" + - "{{Game data/saves|Steam|{{p|userprofile\\Documents}}\\My Games\\Sid Meier's Civilization IV\\Saves}}" +"Sid Meier's Civilization IV: Colonization": gog: 1760534591 pageId: 24045 renamedFrom: - - 'Civilization IV: Colonization' + - "Civilization IV: Colonization" steam: 16810 templates: - - >- - {{Game data/config|Windows|{{p|localappdata}}\My Games\Civilization IV - Colonization\Profiles\|{{p|userprofile\Documents}}\My Games\Civilization IV Colonization\}} - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Civilization IV Colonization\Saves\}}' -Sid Meier's Civilization V: + - "{{Game data/config|Windows|{{p|localappdata}}\\My Games\\Civilization IV Colonization\\Profiles\\|{{p|userprofile\\Documents}}\\My Games\\Civilization IV Colonization\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Civilization IV Colonization\\Saves\\}}" +"Sid Meier's Civilization V": pageId: 80 renamedFrom: - Civilization V steam: 8930 steamSide: - - 235580 - - 16870 - 16868 + - 16870 - 50100 + - 235580 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Sid Meier's Civilization - 5\config.ini|{{p|userprofile\Documents}}\My Games\Sid Meier's Civilization - 5\UserSettings.ini|{{p|userprofile\Documents}}\My Games\Sid Meier's Civilization - 5\GraphicsSettingsDX9.ini|{{p|userprofile\Documents}}\My Games\Sid Meier's Civilization - 5\GraphicsSettingsDX11.ini}} - - '{{Game data/config|OS X|{{p|osxhome}}/Documents/Aspyr/Sid Meier''s Civilization 5/}}' - - >- - {{Game data/config|Linux|{{P|xdgdatahome}}/Aspyr/Sid Meier's Civilization 5/config.ini|{{P|xdgdatahome}}/Aspyr/Sid - Meier's Civilization 5/UserSettings.ini|{{P|xdgdatahome}}/Aspyr/Sid Meier's Civilization - 5/GraphicsSettingsDX9.ini}} - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Sid Meier''s Civilization 5\Saves\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Documents/Aspyr/Sid Meier''s Civilization 5/Saves/}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/Aspyr/Sid Meier''s Civilization 5/Saves/}}' - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{P|uid}}/8930/}}' -Sid Meier's Civilization VI: + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Sid Meier's Civilization 5\\config.ini|{{p|userprofile\\Documents}}\\My Games\\Sid Meier's Civilization 5\\UserSettings.ini|{{p|userprofile\\Documents}}\\My Games\\Sid Meier's Civilization 5\\GraphicsSettingsDX9.ini|{{p|userprofile\\Documents}}\\My Games\\Sid Meier's Civilization 5\\GraphicsSettingsDX11.ini}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Documents/Aspyr/Sid Meier's Civilization 5/}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/Aspyr/Sid Meier's Civilization 5/config.ini|{{P|xdgdatahome}}/Aspyr/Sid Meier's Civilization 5/UserSettings.ini|{{P|xdgdatahome}}/Aspyr/Sid Meier's Civilization 5/GraphicsSettingsDX9.ini}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Sid Meier's Civilization 5\\Saves\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Documents/Aspyr/Sid Meier's Civilization 5/Saves/}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/Aspyr/Sid Meier's Civilization 5/Saves/}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{P|uid}}/8930/}}" +"Sid Meier's Civilization VI": pageId: 32739 renamedFrom: - Civilization VI steam: 289070 steamSide: - - 1308090 - - 1253990 - - 947510 - - 645402 - - 645401 - - 645400 - - 597260 - - 537570 - - 521770 - - 512035 - - 512034 - - 512033 - - 512032 - - 512031 - - 512030 - 404350 + - 512030 + - 512031 + - 512032 + - 512033 + - 512034 + - 512035 + - 521770 + - 537570 + - 597260 + - 645400 + - 645401 + - 645402 + - 947510 + - 1253990 + - 1308090 - 2158250 - 2173130 - 2173131 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\My Games\Sid Meier''s Civilization VI\}}' - - '{{Game data/config|OS X|{{P|osxhome}}/Library/Application Support/Sid Meier''s Civilization VI/}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/aspyr-media/Sid Meier''s Civilization VI/}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\My Games\Sid Meier''s Civilization VI\Saves\}}' - - '{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/Sid Meier''s Civilization VI/Saves/}}' - - >- - {{Game data/saves|Mac App Store|{{P|osxhome}}/Library/Containers/Civilization VI/Data/Library/Application - Support/Sid Meier’s Civilization - VI/Saves{{Refurl|url=https://support.aspyr.com/hc/en-us/articles/213487546-Civilization-VI-Mac-FAQ|title=Civilization - VI Mac: FAQ|date=3 May 2023}}}} - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/aspyr-media/Sid Meier''s Civilization VI/Saves/}}' -'Sid Meier''s Civilization: Beyond Earth': + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\My Games\\Sid Meier's Civilization VI\\}}" + - "{{Game data/config|OS X|{{P|osxhome}}/Library/Application Support/Sid Meier's Civilization VI/}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/aspyr-media/Sid Meier's Civilization VI/}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\My Games\\Sid Meier's Civilization VI\\Saves\\}}" + - "{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/Sid Meier's Civilization VI/Saves/}}" + - "{{Game data/saves|Mac App Store|{{P|osxhome}}/Library/Containers/Civilization VI/Data/Library/Application Support/Sid Meier’s Civilization VI/Saves{{Refurl|url=https://support.aspyr.com/hc/en-us/articles/213487546-Civilization-VI-Mac-FAQ|title=Civilization VI Mac: FAQ|date=3 May 2023}}}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/aspyr-media/Sid Meier's Civilization VI/Saves/}}" +"Sid Meier's Civilization: Beyond Earth": pageId: 16589 renamedFrom: - - 'Civilization: Beyond Earth' + - "Civilization: Beyond Earth" steam: 65980 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Sid Meier''s Civilization Beyond Earth\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Sid Meier''s Civilization Beyond Earth/}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/aspyr-media/Sid Meier''s Civilization Beyond Earth/}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Sid Meier''s Civilization Beyond Earth\Saves\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Sid Meier''s Civilization Beyond Earth/Saves/}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/aspyr-media/Sid Meier''s Civilization Beyond Earth/Saves/}}' - - '{{Game data/saves|Steam|{{P|Steam}}/userdata/{{P|uid}}/65980/remote/}}' -Sid Meier's Colonization: + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Sid Meier's Civilization Beyond Earth\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Sid Meier's Civilization Beyond Earth/}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/aspyr-media/Sid Meier's Civilization Beyond Earth/}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Sid Meier's Civilization Beyond Earth\\Saves\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Sid Meier's Civilization Beyond Earth/Saves/}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/aspyr-media/Sid Meier's Civilization Beyond Earth/Saves/}}" + - "{{Game data/saves|Steam|{{P|Steam}}/userdata/{{P|uid}}/65980/remote/}}" +"Sid Meier's Colonization": gog: 1207659051 pageId: 16306 steam: 327400 templates: - - '{{Game data/config|Windows|{{p|game}}\MPS\COLONIZE}}' - - '{{Game data/saves|Windows|{{p|game}}\MPS\COLONIZE\COLONY0*.SAV}}' -Sid Meier's Covert Action: + - "{{Game data/config|Windows|{{p|game}}\\MPS\\COLONIZE}}" + - "{{Game data/saves|Windows|{{p|game}}\\MPS\\COLONIZE\\COLONY0*.SAV}}" +"Sid Meier's Covert Action": gog: 1207660463 pageId: 21484 steam: 327390 templates: - - '{{Game data/saves|Windows|{{p|game}}\Covert\CV*.SVE}}' -Sid Meier's Gettysburg!: + - "{{Game data/saves|Windows|{{p|game}}\\Covert\\CV*.SVE}}" +"Sid Meier's Gettysburg!": pageId: 8716 -Sid Meier's Pirates!: +"Sid Meier's Pirates!": gog: 1207661653 gogSide: - 1207659060 pageId: 4460 steam: 327380 templates: - - '{{Game data/saves|PC booter|A:\|B:\}}' - - '{{Game data/saves|DOS|{{p|game}}\disks}}' -Sid Meier's Pirates! (2004): + - "{{Game data/saves|PC booter|A:\\|B:\\}}" + - "{{Game data/saves|DOS|{{p|game}}\\disks}}" +"Sid Meier's Pirates! (2004)": gog: 1445250653 pageId: 2133 steam: 3920 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Sid Meier''s Pirates!\Config.ini}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Sid Meier''s Pirates!\}}' -Sid Meier's Railroad Tycoon: + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Sid Meier's Pirates!\\Config.ini}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Sid Meier's Pirates!\\}}" +"Sid Meier's Railroad Tycoon": pageId: 12625 templates: - - '{{Game data/config|DOS|{{p|game}}\CONFIG.RRD}}' - - '{{Game data/saves|DOS|{{p|game}}\}}' -Sid Meier's Railroads!: + - "{{Game data/config|DOS|{{p|game}}\\CONFIG.RRD}}" + - "{{Game data/saves|DOS|{{p|game}}\\}}" +"Sid Meier's Railroads!": gog: 1445250539 pageId: 3525 steam: 7600 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Sid Meier''s Railroads!\}}' - - >- - {{Game data/config|OS X|{{p|osxhome}}/Library/Containers/com.feralinteractive/Data/Library/Application - Support/Feral Interactive/Sid Meier's Railroads!/}} - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Sid Meier''s Railroads!\Saves}}' - - >- - {{Game data/saves|OS X|{{p|osxhome}}/Library/Containers/com.feralinteractive/Data/Library/Application - Support/Feral Interactive/Sid Meier's Railroads!/Saves/}} -Sid Meier's SimGolf: + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Sid Meier's Railroads!\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Containers/com.feralinteractive/Data/Library/Application Support/Feral Interactive/Sid Meier's Railroads!/}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Sid Meier's Railroads!\\Saves}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Containers/com.feralinteractive/Data/Library/Application Support/Feral Interactive/Sid Meier's Railroads!/Saves/}}" +"Sid Meier's SimGolf": pageId: 8459 -Sid Meier's Starships: +"Sid Meier's Starships": pageId: 23418 steam: 282210 templates: - - '{{Game data/saves|Windows|{{p|localappdata}}\Sid Meier''s Starships\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Containers/com.2k.starshipsmac/Data/Documents}}' + - "{{Game data/saves|Windows|{{p|localappdata}}\\Sid Meier's Starships\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Containers/com.2k.starshipsmac/Data/Documents}}" Side Decide: pageId: 151052 steam: 1081500 @@ -144921,7 +141001,7 @@ Siege Machines Builder: Siege Saga: pageId: 75697 steam: 559030 -'Siege Survival: Gloria Victis': +"Siege Survival: Gloria Victis": gog: 1991069301 gogSide: - 1950166290 @@ -144941,8 +141021,8 @@ Siege of Avalon: pageId: 157887 steam: 1558990 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/saves|Windows|{{p|game}}\games\}}' + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\games\\}}" Siege of Centauri: pageId: 134898 steam: 524010 @@ -144971,15 +141051,15 @@ Sifu: pageId: 166919 steam: 2138710 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Sifu\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\Sifu\Saved\SaveGames\{{P|uid}}\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\Sifu\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Sifu\\Saved\\SaveGames\\{{P|uid}}\\}}" Sig.Null: pageId: 36606 steam: 501930 SightLineVR: pageId: 74441 steam: 412360 -'Sigi: A Fart for Melusina': +"Sigi: A Fart for Melusina": pageId: 74590 steam: 677280 Sigil: @@ -144989,15 +141069,15 @@ Sigils of Elohim: pageId: 20405 steam: 321480 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Croteam\Sigils of Elohim\}}' - - '{{Game data/saves|Windows|{{p|hkcu}}\Software\Croteam\Sigils of Elohim\}}' -'Sigma Theory: Global Cold War': + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Croteam\\Sigils of Elohim\\}}" + - "{{Game data/saves|Windows|{{p|hkcu}}\\Software\\Croteam\\Sigils of Elohim\\}}" +"Sigma Theory: Global Cold War": gog: 1986246769 gogSide: - - 1697231883 - - 1477300900 - - 1706557751 - 1218136295 + - 1477300900 + - 1697231883 + - 1706557751 pageId: 90376 steam: 716640 steamSide: @@ -145005,12 +141085,10 @@ Sigils of Elohim: - 1243710 - 1313010 templates: - - >- - {{Game - data/config|Windows|{{p|HKCU}}\Software\MiClosStudio\sigma|{{p|USERPROFILE}}\AppData\LocalLow\MiClosStudio\sigma\settings.json}} - - '{{Game data/saves|Windows|{{p|USERPROFILE}}\AppData\LocalLow\MiClosStudio\sigma\}}' - - '{{Game data/saves|Linux|~/.config/unity3d/MiClosStudio/sigma/}}' -'Sign Here:': + - "{{Game data/config|Windows|{{p|HKCU}}\\Software\\MiClosStudio\\sigma|{{p|USERPROFILE}}\\AppData\\LocalLow\\MiClosStudio\\sigma\\settings.json}}" + - "{{Game data/saves|Windows|{{p|USERPROFILE}}\\AppData\\LocalLow\\MiClosStudio\\sigma\\}}" + - "{{Game data/saves|Linux|~/.config/unity3d/MiClosStudio/sigma/}}" +"Sign Here:": pageId: 92749 steam: 845330 Sign Motion: @@ -145024,17 +141102,17 @@ Signal Ops: pageId: 10050 steam: 257770 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Signal Ops}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.signalops/}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Signal Ops}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.signalops/}}' + - "{{Game data/config|Windows|{{p|appdata}}\\Signal Ops}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.signalops/}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Signal Ops}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.signalops/}}" Signal Simulator: pageId: 92740 steam: 839310 templates: - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/SOL Games/Signal Simulator}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\SOL Games\Signal Simulator}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/SOL Games/Signal Simulator}}' + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/SOL Games/Signal Simulator}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\SOL Games\\Signal Simulator}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/SOL Games/Signal Simulator}}" Signal to Noise: pageId: 45551 steam: 380210 @@ -145044,11 +141122,9 @@ Signalis: - SIGNALIS steam: 1262350 templates: - - '{{Game data/config|Windows|{{P|game}}\SIGNALIS_Data\save\*\settings.ini}}' - - >- - {{Game data/saves|Microsoft - Store|{{p|localappdata}}\Packages\HumbleBundle.SIGNALIS_q2mcdwmzx4qja\SystemAppData\wgs}} - - '{{Game data/saves|Windows|{{P|game}}\SIGNALIS_Data\save\*\lstr.replika}}' + - "{{Game data/config|Windows|{{P|game}}\\SIGNALIS_Data\\save\\*\\settings.ini}}" + - "{{Game data/saves|Microsoft Store|{{p|localappdata}}\\Packages\\HumbleBundle.SIGNALIS_q2mcdwmzx4qja\\SystemAppData\\wgs}}" + - "{{Game data/saves|Windows|{{P|game}}\\SIGNALIS_Data\\save\\*\\lstr.replika}}" Signed and Sealed With a Kiss: pageId: 128551 steam: 933230 @@ -145059,15 +141135,15 @@ Signs of Life: pageId: 18361 steam: 263200 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Signs of Life\Saves\}}' - - '{{Game data/config|Linux|{{P|linuxhome}}/My Games/Signs of Life/Saves}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Signs of Life\Saves\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Signs of Life\\Saves\\}}" + - "{{Game data/config|Linux|{{P|linuxhome}}/My Games/Signs of Life/Saves}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Signs of Life\\Saves\\}}" Signs of the Sojourner: gog: 1453269351 pageId: 137070 steam: 1058690 templates: - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Echodog Games\Signs of the Sojourner}}' + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Echodog Games\\Signs of the Sojourner}}" Sikanda: pageId: 110090 steam: 921760 @@ -145076,10 +141152,10 @@ Silence - The Whispered World 2: pageId: 23077 steam: 314790 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Daedalic Entertainment GmbH\Silence\Settings\}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/Daedalic Entertainment GmbH/Silence/Settings/}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\Daedalic Entertainment GmbH\Silence\Savegames\}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/Daedalic Entertainment GmbH/Silence/Savegames/}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\Daedalic Entertainment GmbH\\Silence\\Settings\\}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/Daedalic Entertainment GmbH/Silence/Settings/}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Daedalic Entertainment GmbH\\Silence\\Savegames\\}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/Daedalic Entertainment GmbH/Silence/Savegames/}}" Silence Notes: pageId: 114674 steam: 946320 @@ -145090,14 +141166,12 @@ Silence of the Sleep: pageId: 49586 steam: 321870 templates: - - >- - {{Game - data/config|Windows|{{p|appdata}}\silenceofthesleep\controls.ini|{{p|appdata}}\silenceofthesleep\settings.ini}} - - '{{Game data/saves|Windows|{{p|appdata}}\silenceofthesleep\savedata.ini}}' + - "{{Game data/config|Windows|{{p|appdata}}\\silenceofthesleep\\controls.ini|{{p|appdata}}\\silenceofthesleep\\settings.ini}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\silenceofthesleep\\savedata.ini}}" Silenced: pageId: 142281 steam: 988960 -'Silenced: The House': +"Silenced: The House": pageId: 87351 steam: 807230 Silent Depth 2: @@ -145110,69 +141184,67 @@ Silent Descent: pageId: 75496 steam: 729060 templates: - - '{{Game data/saves|Windows|{{p|hkcu}}\Software\Deceptive Games Ltd.\Silent Descent}}' + - "{{Game data/saves|Windows|{{p|hkcu}}\\Software\\Deceptive Games Ltd.\\Silent Descent}}" Silent Footsteps: pageId: 103003 steam: 780740 Silent Gentleman: pageId: 89332 steam: 636360 -'Silent Heroes: Elite Troops of WWII': +"Silent Heroes: Elite Troops of WWII": pageId: 126542 templates: - - '{{Game data/config|Windows|{{p|game}}\profiles\\settings}}' - - '{{Game data/saves|Windows|{{p|game}}\profiles\\save\}}' + - "{{Game data/config|Windows|{{p|game}}\\profiles\\\\settings}}" + - "{{Game data/saves|Windows|{{p|game}}\\profiles\\\\save\\}}" Silent Hill 2: pageId: 31057 steam: 2124490 -'Silent Hill 2: Director''s Cut': +"Silent Hill 2: Director's Cut": pageId: 4803 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/saves|Windows|{{p|game}}\data\save\Folder 01\}}' + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\data\\save\\Folder 01\\}}" Silent Hill 3: pageId: 5271 templates: - - '{{Game data/config|Windows|{{p|game}}\savedata\}}' - - '{{Game data/saves|Windows|{{p|game}}\savedata\}}' -'Silent Hill 4: The Room': + - "{{Game data/config|Windows|{{p|game}}\\savedata\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\savedata\\}}" +"Silent Hill 4: The Room": gog: 1141086411 pageId: 20028 templates: - - '{{Game data/config|Windows|{{p|game}}\input.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\saves\}}' -'Silent Hill: Homecoming': + - "{{Game data/config|Windows|{{p|game}}\\input.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\saves\\}}" +"Silent Hill: Homecoming": pageId: 13527 steam: 19000 templates: - - >- - {{Game - data/config|Windows|{{p|game}}\Engine\default_pc.cfg|{{p|game}}\Engine\vars_pc.cfg|{{p|game}}\Engine\binds_pc_mjs.cfg}} - - '{{Game data/saves|Windows|{{p|public}}\Public Documents\Silent Hill Homecoming\shv_save.bin}}' + - "{{Game data/config|Windows|{{p|game}}\\Engine\\default_pc.cfg|{{p|game}}\\Engine\\vars_pc.cfg|{{p|game}}\\Engine\\binds_pc_mjs.cfg}}" + - "{{Game data/saves|Windows|{{p|public}}\\Public Documents\\Silent Hill Homecoming\\shv_save.bin}}" Silent Hope: pageId: 190168 steam: 1960110 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\NR\Saved\Config\WindowsNoEditor}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\NR\Saved\Config\SaveGames\{{p|uid}}}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\NR\\Saved\\Config\\WindowsNoEditor}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\NR\\Saved\\Config\\SaveGames\\{{p|uid}}}}" Silent Hunter 2: gog: 1207658770 pageId: 21224 templates: - - '{{Game data/config|Windows|{{p|hklm}}\SOFTWARE\{{p|wow64}}\Ultimation\SilentHunterII|{{p|game}}\Sim\Config.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\Save\}}' -'Silent Hunter 4: Wolves of the Pacific': + - "{{Game data/config|Windows|{{p|hklm}}\\SOFTWARE\\{{p|wow64}}\\Ultimation\\SilentHunterII|{{p|game}}\\Sim\\Config.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\Save\\}}" +"Silent Hunter 4: Wolves of the Pacific": pageId: 41362 steam: 15200 -'Silent Hunter 5: Battle of the Atlantic': +"Silent Hunter 5: Battle of the Atlantic": pageId: 41163 steam: 48110 Silent Hunter III: pageId: 1241 steam: 15210 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\SH3\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\SH3\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\SH3\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\SH3\\}}" Silent Night: pageId: 113526 steam: 893670 @@ -145189,8 +141261,8 @@ Silent Service II: pageId: 21295 steam: 329670 templates: - - '{{Game data/config|Windows|{{p|game}}\SILENT}}' - - '{{Game data/saves|Windows|{{p|game}}\SILENT}}' + - "{{Game data/config|Windows|{{p|game}}\\SILENT}}" + - "{{Game data/saves|Windows|{{p|game}}\\SILENT}}" Silent Space VR: pageId: 76169 steam: 752370 @@ -145199,8 +141271,8 @@ Silent Storm: pageId: 1670 steam: 254960 templates: - - '{{Game data/config|Windows|{{p|game}}\cfg\}}' - - '{{Game data/saves|Windows|{{p|game}}\save\}}' + - "{{Game data/config|Windows|{{p|game}}\\cfg\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\save\\}}" Silent Tweets: pageId: 87189 steam: 809320 @@ -145225,15 +141297,15 @@ Silicon Zeroes: pageId: 68192 steam: 684270 templates: - - '{{Game data/config|Windows|{{P|game}}\settings\}}' - - '{{Game data/saves|Windows|{{P|game}}\profiles\}}' + - "{{Game data/config|Windows|{{P|game}}\\settings\\}}" + - "{{Game data/saves|Windows|{{P|game}}\\profiles\\}}" Silicone-2: pageId: 47643 steam: 343690 Silk: pageId: 144935 steam: 1132090 -'Silmaris: Dice Kingdom': +"Silmaris: Dice Kingdom": gog: 1272225512 pageId: 165684 steam: 1293120 @@ -145242,7 +141314,7 @@ Silt: pageId: 173383 steam: 1325890 templates: - - '{{Game data/saves|Steam|{{p|userprofile\appdata\locallow}}\Spiral Circus\Silt\STEAMUSER{{p|uid}}\Saved Games}}' + - "{{Game data/saves|Steam|{{p|userprofile\\appdata\\locallow}}\\Spiral Circus\\Silt\\STEAMUSER{{p|uid}}\\Saved Games}}" Siluman Fantasy - First Half -: pageId: 145939 steam: 997240 @@ -145251,11 +141323,11 @@ Silver: pageId: 32108 steam: 606680 templates: - - '{{Game data/config|Windows|{{p|game}}\SAVEGAME\SILVER.OPT|{{P|appdata}}\THQNordic\Silver\SAVEGAME\SILVER.OPT}}' - - '{{Game data/config|Linux|{{p|xdgdatahome}}/THQNordic/Silver/silver.opt}}' - - '{{Game data/saves|Windows|{{p|game}}\SAVEGAME|{{P|appdata}}\THQNordic\Silver}}' - - '{{Game data/saves|Linux|{{p|xdgdatahome}}/THQNordic/Silver/*.sav}}' -'Silver Bullet: Prometheus': + - "{{Game data/config|Windows|{{p|game}}\\SAVEGAME\\SILVER.OPT|{{P|appdata}}\\THQNordic\\Silver\\SAVEGAME\\SILVER.OPT}}" + - "{{Game data/config|Linux|{{p|xdgdatahome}}/THQNordic/Silver/silver.opt}}" + - "{{Game data/saves|Windows|{{p|game}}\\SAVEGAME|{{P|appdata}}\\THQNordic\\Silver}}" + - "{{Game data/saves|Linux|{{p|xdgdatahome}}/THQNordic/Silver/*.sav}}" +"Silver Bullet: Prometheus": pageId: 43688 steam: 446250 Silver Chains: @@ -145263,18 +141335,18 @@ Silver Chains: pageId: 128533 steam: 975470 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\SilverChains\Saved}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\SilverChains\Saved}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\SilverChains\\Saved}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\SilverChains\\Saved}}" Silver Child: pageId: 121209 steam: 958360 -'Silver Creek Falls: Chapter 1': +"Silver Creek Falls: Chapter 1": pageId: 37931 steam: 392450 -'Silver Creek Falls: Chapter 2': +"Silver Creek Falls: Chapter 2": pageId: 46230 steam: 403070 -'Silver Creek Falls: Chapter 3': +"Silver Creek Falls: Chapter 3": pageId: 43871 steam: 441060 Silver Grapple: @@ -145292,19 +141364,19 @@ Silver Tale: SilverFrame(纯白星原): pageId: 113404 steam: 864430 -'SilverQuest: Gaiden': +"SilverQuest: Gaiden": pageId: 49055 steam: 333380 Silverball: pageId: 154872 templates: - - '{{Game data/config|DOS|{{Path|Game}}\CONFIG.PIN}}' - - '{{Game data/saves|DOS|{{Path|Game}}\HISCORE.PIN}}' + - "{{Game data/config|DOS|{{Path|Game}}\\CONFIG.PIN}}" + - "{{Game data/saves|DOS|{{Path|Game}}\\HISCORE.PIN}}" Silverfall: gog: 1284627191 pageId: 41393 steam: 4420 -'Silverfall: Earth Awakening': +"Silverfall: Earth Awakening": gog: 1284627191 pageId: 41354 steam: 4470 @@ -145318,102 +141390,98 @@ SimAirport: pageId: 58652 steam: 598330 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\LVGameDev LLC\SimAirport\SavesDir\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/unity.LVGameDev LLC.SimAirport/SavesDir}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/LVGameDev LLC/SimAirport/SavesDir}}' + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\LVGameDev LLC\\SimAirport\\SavesDir\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/unity.LVGameDev LLC.SimAirport/SavesDir}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/LVGameDev LLC/SimAirport/SavesDir}}" SimAnt: pageId: 19802 templates: - - '{{Game data/saves|Windows|{{p|game}}\*.ant}}' + - "{{Game data/saves|Windows|{{p|game}}\\*.ant}}" SimCity (1989): pageId: 8440 SimCity (2013): pageId: 4442 templates: - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\SimCity\Games\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Documents/SimCity/Games/}}' + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\SimCity\\Games\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Documents/SimCity/Games/}}" SimCity 2000: gog: 1207658969 pageId: 2901 templates: - - '{{Game data/config|Windows|{{p|game}}\SC2000.CFG}}' - - '{{Game data/saves|DOS|{{p|game}}\Cities\*.sc2}}' - - '{{Game data/saves|Windows|{{p|game}}\Cities\*.sc2}}' + - "{{Game data/config|Windows|{{p|game}}\\SC2000.CFG}}" + - "{{Game data/saves|DOS|{{p|game}}\\Cities\\*.sc2}}" + - "{{Game data/saves|Windows|{{p|game}}\\Cities\\*.sc2}}" SimCity 2000 Network Edition: pageId: 17526 templates: - - '{{Game data/config|Windows|{{p|game}}\2KCLIENT.ini}}' - - '{{Game data/saves|Windows|*.scx}}' + - "{{Game data/config|Windows|{{p|game}}\\2KCLIENT.ini}}" + - "{{Game data/saves|Windows|*.scx}}" SimCity 3000: gog: 2086050016 pageId: 14440 templates: - - '{{Game data/config|Windows|{{p|game}}\Game\SC3.cfg|{{p|game}}\Game\sc3.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\Cities\}}' + - "{{Game data/config|Windows|{{p|game}}\\Game\\SC3.cfg|{{p|game}}\\Game\\sc3.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\Cities\\}}" SimCity 4: gog: 1207664593 pageId: 1132 steam: 24780 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\SimCity 4\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\SimCity 4\Regions\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Documents/SimCity 4/Regions/}}' - - >- - {{Game data/saves|Mac App - Store|{{p|osxhome}}/Library/Containers/com.aspyr.simcity4.appstore/Data/Documents/SimCity 4/Regions/}} + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\SimCity 4\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\SimCity 4\\Regions\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Documents/SimCity 4/Regions/}}" + - "{{Game data/saves|Mac App Store|{{p|osxhome}}/Library/Containers/com.aspyr.simcity4.appstore/Data/Documents/SimCity 4/Regions/}}" SimCity Societies: pageId: 6845 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\SimCity Societies\Videosettings.xml}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\SimCity Societies\User Data}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\SimCity Societies\\Videosettings.xml}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\SimCity Societies\\User Data}}" SimCopter: pageId: 14439 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/saves|Windows|{{p|game}}\My Saved Cities\*.sc2}}' + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\My Saved Cities\\*.sc2}}" SimEarth: pageId: 175960 SimFarm: pageId: 19808 templates: - - '{{Game data/saves|Windows|{{p|game}}\*.sfm}}' + - "{{Game data/saves|Windows|{{p|game}}\\*.sfm}}" SimHealth: pageId: 176759 -'SimIsle: Missions in the Rainforest': +"SimIsle: Missions in the Rainforest": pageId: 176765 templates: - - '{{Game data/config|Windows|{{p|game}}}}' - - '{{Game data/saves|Windows|{{p|game}}\savegame}}' + - "{{Game data/config|Windows|{{p|game}}}}" + - "{{Game data/saves|Windows|{{p|game}}\\savegame}}" SimLife: pageId: 176762 SimPark: pageId: 19605 templates: - - '{{Game data/config|Windows|{{p|windir}}\SimPark.ini|{{p|game}}\SimPark.ini}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\*.prk}}' + - "{{Game data/config|Windows|{{p|windir}}\\SimPark.ini|{{p|game}}\\SimPark.ini}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\*.prk}}" SimRail - The Railway Simulator: pageId: 184438 steam: 1422130 templates: - - >- - {{Game - data/config|Windows|{{P|userprofile\appdata\locallow}}\SimKol\SimRail\buttons.conf|{{P|userprofile\appdata\locallow}}\SimKol\SimRail\settings.conf}} + - "{{Game data/config|Windows|{{P|userprofile\\appdata\\locallow}}\\SimKol\\SimRail\\buttons.conf|{{P|userprofile\\appdata\\locallow}}\\SimKol\\SimRail\\settings.conf}}" SimSafari: pageId: 19645 templates: - - '{{Game data/config|Windows|{{p|windir}}\smsafari.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\Savegame\*.saf}}' + - "{{Game data/config|Windows|{{p|windir}}\\smsafari.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\Savegame\\*.saf}}" SimTower: pageId: 51200 SimTown: pageId: 19817 templates: - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\*.twn}}' + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\*.twn}}" SimTunes: pageId: 19716 templates: - - '{{Game data/saves|Windows|{{p|game}}\Tunes}}' -'Simgirls: Lovemore College RPG': + - "{{Game data/saves|Windows|{{p|game}}\\Tunes}}" +"Simgirls: Lovemore College RPG": pageId: 141706 steam: 1082860 Simian Rising: @@ -145422,18 +141490,18 @@ Simian Rising: Simian.interface++: pageId: 35186 steam: 467780 -'Similars: Climb': +"Similars: Climb": pageId: 141282 steam: 1036460 Simmiland: pageId: 122233 steam: 932850 templates: - - '{{Game data/config|Windows|{{P|game}}\options.ini}}' + - "{{Game data/config|Windows|{{P|game}}\\options.ini}}" Simon the Sorcerer: gog: 1207658699 pageId: 14137 -'Simon the Sorcerer 2: 25th Anniversary Edition': +"Simon the Sorcerer 2: 25th Anniversary Edition": gog: 1893480337 pageId: 90244 steam: 678760 @@ -145441,26 +141509,26 @@ Simon the Sorcerer 3D: gog: 1207658701 pageId: 14144 templates: - - '{{Game data/saves|Windows|{{p|game}}\Data\}}' -'Simon the Sorcerer 4: Chaos Happens': + - "{{Game data/saves|Windows|{{p|game}}\\Data\\}}" +"Simon the Sorcerer 4: Chaos Happens": gog: 1433859761 pageId: 131767 templates: - - '{{Game data/config|Windows|C:\Program Files\Simon the Sorcerer - Chaos happens\}}' -'Simon the Sorcerer II: The Lion, the Wizard and the Wardrobe': + - "{{Game data/config|Windows|C:\\Program Files\\Simon the Sorcerer - Chaos happens\\}}" +"Simon the Sorcerer II: The Lion, the Wizard and the Wardrobe": gog: 1207658700 pageId: 14140 -Simon the Sorcerer's Pinball: +"Simon the Sorcerer's Pinball": pageId: 178731 -Simon the Sorcerer's Puzzle Pack: +"Simon the Sorcerer's Puzzle Pack": pageId: 147043 -'Simon the Sorcerer: 25th Anniversary Edition': +"Simon the Sorcerer: 25th Anniversary Edition": gog: 2134529414 pageId: 90241 steam: 674150 -'Simon''s Cat: Story Time': +"Simon's Cat: Story Time": pageId: 167744 -'Simple Ball: Extended Edition': +"Simple Ball: Extended Edition": pageId: 38025 steam: 487530 Simple Chess: @@ -145479,8 +141547,8 @@ Simple Machines: pageId: 178705 steam: 1307850 templates: - - '{{Game data/config|Windows|HKEY_CURRENT_USER\Software\Kraken Ink\Simple Machines}}' - - '{{Game data/saves|Windows|HKEY_CURRENT_USER\Software\Kraken Ink\Simple Machines}}' + - "{{Game data/config|Windows|HKEY_CURRENT_USER\\Software\\Kraken Ink\\Simple Machines}}" + - "{{Game data/saves|Windows|HKEY_CURRENT_USER\\Software\\Kraken Ink\\Simple Machines}}" Simple Man: pageId: 88029 steam: 794300 @@ -145510,11 +141578,9 @@ SimplePlanes: pageId: 34170 steam: 397340 templates: - - >- - {{Game - data/config|Windows|{{P|userprofile\appdata\locallow}}\Jundroo\SimplePlanes\Settings.xml|{{P|hkcu}}\Software\Jundroo\SimplePlanes\}} - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\AppData\LocalLow\Jundroo\SimplePlanes}}' - - '{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/unity.Jundroo.SimplePlanes}}' + - "{{Game data/config|Windows|{{P|userprofile\\appdata\\locallow}}\\Jundroo\\SimplePlanes\\Settings.xml|{{P|hkcu}}\\Software\\Jundroo\\SimplePlanes\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\AppData\\LocalLow\\Jundroo\\SimplePlanes}}" + - "{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/unity.Jundroo.SimplePlanes}}" SimpleRockets: pageId: 38486 steam: 343090 @@ -145528,7 +141594,7 @@ Simply Chess: pageId: 46480 steam: 312280 templates: - - '{{Game data/config|Linux|{{p|game}}/}}' + - "{{Game data/config|Linux|{{p|game}}/}}" SimplyTrivia: pageId: 91544 steam: 832430 @@ -145542,20 +141608,20 @@ Simulacra: pageId: 73865 steam: 712730 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\Saved Games\Kaigan Games\SIMULACRA\}}' - - '{{Game data/saves|Steam|{{P|steam}}\userdata\{{P|uid}}\712730\remote\}}' + - "{{Game data/saves|Windows|{{p|userprofile}}\\Saved Games\\Kaigan Games\\SIMULACRA\\}}" + - "{{Game data/saves|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\712730\\remote\\}}" Simulacra 2: gog: 1955953352 pageId: 150858 steam: 1011190 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\SOFTWARE\Kaigan Games\SIMULACRA 2\}}' - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Kaigan Games\SIMULACRA 2\}}' -'Simulacra: Pipe Dreams': + - "{{Game data/config|Windows|{{P|hkcu}}\\SOFTWARE\\Kaigan Games\\SIMULACRA 2\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Kaigan Games\\SIMULACRA 2\\}}" +"Simulacra: Pipe Dreams": pageId: 121307 steam: 878320 templates: - - '{{Game data/saves|Windows|{{P|steam}}\userdata\{{P|uid}}\878320\remote\}}' + - "{{Game data/saves|Windows|{{P|steam}}\\userdata\\{{P|uid}}\\878320\\remote\\}}" Simulator Gas Station: pageId: 65831 steam: 676710 @@ -145566,10 +141632,10 @@ Simutrans: pageId: 42928 steam: 434520 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Simutrans\settings.xml}}' - - '{{Game data/config|Linux|{{P|linuxhome}}/.simutrans}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Simutrans\save}}' - - '{{Game data/saves|Linux|{{P|linuxhome}}/.simutrans}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Simutrans\\settings.xml}}" + - "{{Game data/config|Linux|{{P|linuxhome}}/.simutrans}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Simutrans\\save}}" + - "{{Game data/saves|Linux|{{P|linuxhome}}/.simutrans}}" Sin Castle: pageId: 58360 steam: 577180 @@ -145596,17 +141662,17 @@ Sine Mora: pageId: 12562 steam: 207040 templates: - - '{{Game data/config|Steam|{{P|steam}}/userdata/{{P|uid}}/207040/remote/Sine Mora.cfg}}' - - '{{Game data/saves|Steam|{{P|steam}}/userdata/{{P|uid}}/207040/remote/Sine Mora.cfg}}' + - "{{Game data/config|Steam|{{P|steam}}/userdata/{{P|uid}}/207040/remote/Sine Mora.cfg}}" + - "{{Game data/saves|Steam|{{P|steam}}/userdata/{{P|uid}}/207040/remote/Sine Mora.cfg}}" Sine Mora EX: gog: 2001892744 pageId: 65966 steam: 606730 templates: - - '{{Game data/config|Windows|{{p|game}}\*.settings}}' - - '{{Game data/saves|Windows|{{p|appdata}}\SineMoraEX.dat}}' - - '{{Game data/saves|Steam|{{P|steam}}\userdata\{{P|uid}}\606730\remote\Sine Mora.cfg}}' -'Sine Requie: Snake Eyes': + - "{{Game data/config|Windows|{{p|game}}\\*.settings}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\SineMoraEX.dat}}" + - "{{Game data/saves|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\606730\\remote\\Sine Mora.cfg}}" +"Sine Requie: Snake Eyes": pageId: 78828 steam: 755390 Sinewave: @@ -145624,49 +141690,49 @@ Singaria - Prologue: Singing Stones VR: pageId: 55125 steam: 560870 -'Single Diary: Fresh Graduate': +"Single Diary: Fresh Graduate": pageId: 149919 steam: 1007800 Singled Out: pageId: 144665 steam: 1144150 -'Singles 2: Triple Trouble': +"Singles 2: Triple Trouble": pageId: 53788 templates: - - '{{Game data/config|Windows|{{p|game}}\Config\}}' - - '{{Game data/saves|Windows|{{p|game}}\Savegame\}}' -'Singles: Flirt Up Your Life!': + - "{{Game data/config|Windows|{{p|game}}\\Config\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\Savegame\\}}" +"Singles: Flirt Up Your Life!": pageId: 75334 templates: - - '{{Game data/config|Windows|{{p|game}}\Config}}' - - '{{Game data/saves|Windows|{{p|game}}\Savegame}}' + - "{{Game data/config|Windows|{{p|game}}\\Config}}" + - "{{Game data/saves|Windows|{{p|game}}\\Savegame}}" Singularity: gog: 1207659239 pageId: 6458 steam: 42670 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Activision\Singularity}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Singularity\RvGame\SaveData\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Activision\\Singularity}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Singularity\\RvGame\\SaveData\\}}" Singularity 5: pageId: 124189 steam: 987770 Singularity Roller: pageId: 66448 steam: 684820 -'Singularity: Tactics Arena': +"Singularity: Tactics Arena": pageId: 122742 steam: 962220 -'Sinistar: Unleashed': +"Sinistar: Unleashed": pageId: 14202 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/saves|Windows|{{p|game}}\save}}' + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\save}}" Sinister City: pageId: 49480 steam: 326180 templates: - - '{{Game data/config|Windows|{{P|appdata}}\Jetdogs Studios\Sinister City\options.cfg}}' - - '{{Game data/saves|Windows|{{P|appdata}}\Jetdogs Studios\Sinister City\*.sav*}}' + - "{{Game data/config|Windows|{{P|appdata}}\\Jetdogs Studios\\Sinister City\\options.cfg}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\Jetdogs Studios\\Sinister City\\*.sav*}}" Sinister Halloween: pageId: 121133 steam: 747690 @@ -145681,8 +141747,8 @@ Sinking Island: pageId: 49169 steam: 333430 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\Sinking Island}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\Sinking Island}}' + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\Sinking Island}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\Sinking Island}}" Sinking Simulator: pageId: 148607 steam: 1164850 @@ -145692,39 +141758,35 @@ Sinless: Sinner: pageId: 138775 steam: 1086500 -'Sinner: Sacrifice for Redemption': +"Sinner: Sacrifice for Redemption": pageId: 69755 steam: 691280 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\blackstar_uproject\Saved\Config\WindowsNoEditor\}}' - - >- - {{Game data/config|Microsoft - Store|{{P|localappdata}}\Packages\AnotherIndie.SINNERforWindows10_zrgg4v79ydekg\LocalCache\Local\blackstar_uproject\Saved\Config\WindowsNoEditor\}} - - '{{Game data/saves|Windows|{{P|localappdata}}\blackstar_uproject\Saved\SaveGames\}}' - - >- - {{Game data/saves|Microsoft - Store|{{P|localappdata}}\Packages\AnotherIndie.SINNERforWindows10_zrgg4v79ydekg\LocalCache\Local\blackstar_uproject\Saved\SaveGames\}} + - "{{Game data/config|Windows|{{P|localappdata}}\\blackstar_uproject\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/config|Microsoft Store|{{P|localappdata}}\\Packages\\AnotherIndie.SINNERforWindows10_zrgg4v79ydekg\\LocalCache\\Local\\blackstar_uproject\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\blackstar_uproject\\Saved\\SaveGames\\}}" + - "{{Game data/saves|Microsoft Store|{{P|localappdata}}\\Packages\\AnotherIndie.SINNERforWindows10_zrgg4v79ydekg\\LocalCache\\Local\\blackstar_uproject\\Saved\\SaveGames\\}}" Sins of The Demon RPG: pageId: 34966 steam: 461640 templates: - - '{{Game data/config|Windows|{{P|game}}\Game.ini}}' - - '{{Game data/saves|Windows|{{P|game}}\Save{{code|##}}.rvdata2}}' + - "{{Game data/config|Windows|{{P|game}}\\Game.ini}}" + - "{{Game data/saves|Windows|{{P|game}}\\Save{{code|##}}.rvdata2}}" Sins of a Solar Empire: gog: 1445609012 pageId: 2936 steam: 201290 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Ironclad Games\Sins of a Solar Empire}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Ironclad Games\Sins of a Solar Empire}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Ironclad Games\\Sins of a Solar Empire}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Ironclad Games\\Sins of a Solar Empire}}" Sins of a Solar Empire II: pageId: 182738 -'Sins of a Solar Empire: Rebellion': +"Sins of a Solar Empire: Rebellion": gog: 1983428436 gogSide: - 1449139823 - - 1559764443 - 1456024749 + - 1559764443 pageId: 2923 steam: 204880 steamSide: @@ -145734,8 +141796,8 @@ Sins of a Solar Empire II: - 487280 - 1456024749 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Ironclad Games\Sins of a Solar Empire Rebellion\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Ironclad Games\Sins of a Solar Empire Rebellion\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Ironclad Games\\Sins of a Solar Empire Rebellion\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Ironclad Games\\Sins of a Solar Empire Rebellion\\}}" Sio And Mysterious Forest: pageId: 144829 steam: 1147950 @@ -145748,31 +141810,29 @@ Sir Lovelot: Sir Smedieval: pageId: 153618 steam: 1188020 -Sir! I'd Like To Report A Bug!: +"Sir! I'd Like To Report A Bug!": pageId: 46002 steam: 393240 -'Sir, You Are Being Hunted': +"Sir, You Are Being Hunted": gog: 1207664303 pageId: 9584 steam: 242880 templates: - - >- - {{Game data/config|Windows|{{p|game}}\x64\s\SaveGames\|{{p|game}}\x86\s\SaveGames\|{{p|hkcu}}\SOFTWARE\Big - Robot\SirYouAreBeingHunted\}} - - '{{Game data/config|Linux|{{p|game}}/s/SaveGames/}}' - - '{{Game data/saves|Windows|{{p|game}}\x64\s\SaveGames\World*\|{{p|game}}\x86\s\SaveGames\World*\}}' - - '{{Game data/saves|Linux|{{p|game}}/s/SaveGames/World*/}}' + - "{{Game data/config|Windows|{{p|game}}\\x64\\s\\SaveGames\\|{{p|game}}\\x86\\s\\SaveGames\\|{{p|hkcu}}\\SOFTWARE\\Big Robot\\SirYouAreBeingHunted\\}}" + - "{{Game data/config|Linux|{{p|game}}/s/SaveGames/}}" + - "{{Game data/saves|Windows|{{p|game}}\\x64\\s\\SaveGames\\World*\\|{{p|game}}\\x86\\s\\SaveGames\\World*\\}}" + - "{{Game data/saves|Linux|{{p|game}}/s/SaveGames/World*/}}" Siralim: pageId: 30008 steam: 362090 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Siralim\config.ini}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Siralim\siralim*.ini}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Siralim\\config.ini}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Siralim\\siralim*.ini}}" Siralim 2: pageId: 35982 steam: 464620 templates: - - '{{Game data/saves|Windows|{{P|appdata}}\Siralim\save\config.sav}}' + - "{{Game data/saves|Windows|{{P|appdata}}\\Siralim\\save\\config.sav}}" Siralim 3: pageId: 93956 steam: 841770 @@ -145782,7 +141842,7 @@ Siren Head Hentai Edition: Sirius Online: pageId: 47689 steam: 368720 -'Sirius: Age of the Free Agents': +"Sirius: Age of the Free Agents": pageId: 127255 steam: 601520 Sister Adventure: @@ -145791,10 +141851,10 @@ Sister Adventure: Sister Travel: pageId: 122582 steam: 959890 -Sister's Love: +"Sister's Love": pageId: 79265 steam: 771520 -'Sister''s Secrecy: Arcanum Bloodlines': +"Sister's Secrecy: Arcanum Bloodlines": pageId: 47745 steam: 373870 SisterFight: @@ -145806,10 +141866,10 @@ Sisters: Sisters in Hotel: pageId: 63976 steam: 625400 -'Sisters in Hotel: Episode 2': +"Sisters in Hotel: Episode 2": pageId: 89440 steam: 816700 -'Sisters in Hotel: Episode 3': +"Sisters in Hotel: Episode 3": pageId: 96533 steam: 868860 Sisyphus Reborn: @@ -145825,7 +141885,7 @@ Sitting Ducks: Six: pageId: 95246 steam: 855920 -'Six Ages: Ride Like the Wind': +"Six Ages: Ride Like the Wind": gog: 1418278647 pageId: 105623 steam: 881420 @@ -145836,8 +141896,8 @@ Six Days of Snow: pageId: 79224 steam: 754810 templates: - - '{{Game data/config|Windows|{{p|game}}\renpy\config.py}}' - - '{{Game data/saves|Windows|{{P|appdata}}\renpy\Six Days of Snow-1474192931\|{{p|game}}\game\saves\}}' + - "{{Game data/config|Windows|{{p|game}}\\renpy\\config.py}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\renpy\\Six Days of Snow-1474192931\\|{{p|game}}\\game\\saves\\}}" Six Degrees of Damnation: pageId: 138679 steam: 956470 @@ -145880,7 +141940,7 @@ Size Matters: SizeBlock: pageId: 36710 steam: 508960 -'Skald: Against the Black Priory': +"Skald: Against the Black Priory": gog: 1514991646 pageId: 167908 steam: 1069160 @@ -145905,25 +141965,25 @@ SkateBIRD: pageId: 122422 steam: 971030 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\Glass Bottom Games\SkateBIRD\}}' - - '{{Game data/config|Linux|$HOME/.config/unity3d/Glass Bottom Games/SkateBIRD/prefs}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Glass Bottom Games\SkateBIRD\}}' - - '{{Game data/saves|Linux|$HOME/.config/unity3d/Glass Bottom Games/SkateBIRD/}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Glass Bottom Games\\SkateBIRD\\}}" + - "{{Game data/config|Linux|$HOME/.config/unity3d/Glass Bottom Games/SkateBIRD/prefs}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Glass Bottom Games\\SkateBIRD\\}}" + - "{{Game data/saves|Linux|$HOME/.config/unity3d/Glass Bottom Games/SkateBIRD/}}" Skateboard Park Tycoon: pageId: 189120 templates: - - '{{Game data/config|Windows|{{p|game}}\settings.bin}}' - - '{{Game data/saves|Windows|{{p|game}}\saved_games\}}' -'Skateboard Park Tycoon 2004: Back in the USA': + - "{{Game data/config|Windows|{{p|game}}\\settings.bin}}" + - "{{Game data/saves|Windows|{{p|game}}\\saved_games\\}}" +"Skateboard Park Tycoon 2004: Back in the USA": pageId: 183847 templates: - - '{{Game data/config|Windows|{{p|game}}\settings.dat}}' - - '{{Game data/saves|Windows|{{p|game}}\profiles\}}' -'Skateboard Park Tycoon: World Tour 2003': + - "{{Game data/config|Windows|{{p|game}}\\settings.dat}}" + - "{{Game data/saves|Windows|{{p|game}}\\profiles\\}}" +"Skateboard Park Tycoon: World Tour 2003": pageId: 183846 templates: - - '{{Game data/config|Windows|{{p|game}}\settings.dat}}' - - '{{Game data/saves|Windows|{{p|game}}\Profiles\}}' + - "{{Game data/config|Windows|{{p|game}}\\settings.dat}}" + - "{{Game data/saves|Windows|{{p|game}}\\Profiles\\}}" Skateboarding pro: pageId: 104091 steam: 908090 @@ -145943,15 +142003,15 @@ Skaut Kwatermaster: gog: 2075976504 pageId: 76724 templates: - - '{{Game data/config|DOS|{{p|game}}\SOUND.CFG|{{p|game}}\AVALON.INI}}' - - '{{Game data/saves|DOS|{{p|game}}\SAVEGAME\SAVEGAME.*|{{p|game}}\FDD\SAVEGAME\SAVEGAME.*}}' -'Skautfold: Moonless Knight': + - "{{Game data/config|DOS|{{p|game}}\\SOUND.CFG|{{p|game}}\\AVALON.INI}}" + - "{{Game data/saves|DOS|{{p|game}}\\SAVEGAME\\SAVEGAME.*|{{p|game}}\\FDD\\SAVEGAME\\SAVEGAME.*}}" +"Skautfold: Moonless Knight": pageId: 135762 steam: 1029170 Skedaddling In Egypt: pageId: 187062 steam: 2342830 -'Skeet: VR Target Shooting': +"Skeet: VR Target Shooting": pageId: 43779 steam: 446770 Skein: @@ -145968,7 +142028,7 @@ Skeletal Dance Party: pageId: 100590 steam: 599160 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Catalope Games\Skeletal Dance Party\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Catalope Games\\Skeletal Dance Party\\}}" Skeleton Boomerang: pageId: 65321 steam: 658150 @@ -145978,7 +142038,7 @@ Skeleton Crew: Skeleton Sprint: pageId: 69050 steam: 690950 -'Skelittle: A Giant Party!!': +"Skelittle: A Giant Party!!": pageId: 120790 steam: 916960 Skellboy Refractured: @@ -146016,10 +142076,10 @@ Sketchy 3: Sketchy 4: pageId: 68106 steam: 694020 -'Ski Drive: Biathlon': +"Ski Drive: Biathlon": pageId: 126209 steam: 987620 -'Ski Hard: Lorsbruck 1978': +"Ski Hard: Lorsbruck 1978": pageId: 81617 steam: 698410 Ski Jump VR: @@ -146031,14 +142091,14 @@ Ski Jumping Pro VR: Ski Park Manager: pageId: 167706 templates: - - '{{Game data/config|Windows|{{p|game}}\simski.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\Saved Games\}}' + - "{{Game data/config|Windows|{{p|game}}\\simski.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\Saved Games\\}}" Ski Park Tycoon: pageId: 48793 steam: 346240 templates: - - '{{Game data/config|Windows|{{p|game}}\data.params.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\save}}' + - "{{Game data/config|Windows|{{p|game}}\\data.params.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\save}}" Ski Region Simulator: pageId: 50703 steam: 270950 @@ -146052,8 +142112,8 @@ Ski Sniper: pageId: 62594 steam: 635310 templates: - - '{{Game data/saves|Windows|{{p|hkcu}}\Software\CrazyRock\SkiSniper\}}' -'Ski Sport: Jumping VR': + - "{{Game data/saves|Windows|{{p|hkcu}}\\Software\\CrazyRock\\SkiSniper\\}}" +"Ski Sport: Jumping VR": pageId: 57190 steam: 582390 Ski-World Simulator: @@ -146062,7 +142122,7 @@ Ski-World Simulator: SkiFree: pageId: 7947 templates: - - '{{Game data/saves|Windows|{{p|windir}}\entpack.ini}}' + - "{{Game data/saves|Windows|{{p|windir}}\\entpack.ini}}" SkiFy: pageId: 74652 steam: 656060 @@ -146103,9 +142163,9 @@ Skinwalker Hunt: pageId: 169238 steam: 993110 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Andrii Vintsevych\Skinwalker Hunt}}' - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Andrii Vintsevych\Skinwalker Hunt\}}' -Skip's Sanity: + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Andrii Vintsevych\\Skinwalker Hunt}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Andrii Vintsevych\\Skinwalker Hunt\\}}" +"Skip's Sanity": pageId: 93231 steam: 850710 Skipchaser: @@ -146114,42 +142174,42 @@ Skipchaser: Skipper: pageId: 73244 steam: 674440 -'Skipper & Skeeto: Fun in the Park': +"Skipper & Skeeto: Fun in the Park": pageId: 131395 -'Skipper & Skeeto: Molly''s Music Machine': +"Skipper & Skeeto: Molly's Music Machine": pageId: 126656 -'Skipper & Skeeto: Quiz Games': +"Skipper & Skeeto: Quiz Games": pageId: 122978 -'Skipper & Skeeto: Quiz Games II': +"Skipper & Skeeto: Quiz Games II": pageId: 120689 -'Skipper & Skeeto: Take a Break': +"Skipper & Skeeto: Take a Break": pageId: 123003 -'Skipper & Skeeto: Tales from Paradise Park': +"Skipper & Skeeto: Tales from Paradise Park": pageId: 80794 templates: - - '{{Game data/saves|Windows|{{P|game}}\MAGNUS.INI}}' -'Skipper & Skeeto: The Alphabetic Games': + - "{{Game data/saves|Windows|{{P|game}}\\MAGNUS.INI}}" +"Skipper & Skeeto: The Alphabetic Games": pageId: 131398 -'Skipper & Skeeto: The Great Treasure Hunt': +"Skipper & Skeeto: The Great Treasure Hunt": pageId: 106273 templates: - - '{{Game data/saves|Windows|{{P|game}}}}' -'Skipper & Skeeto: The Midnight Mystery': + - "{{Game data/saves|Windows|{{P|game}}}}" +"Skipper & Skeeto: The Midnight Mystery": pageId: 122992 -'Skipper & Skeeto: The Mystery of the Talking Sundial': +"Skipper & Skeeto: The Mystery of the Talking Sundial": pageId: 126666 -'Skipper & Skeeto: The Number Shop': +"Skipper & Skeeto: The Number Shop": pageId: 122988 -'Skipper & Skeeto: The Revenge of Mr. Shade': +"Skipper & Skeeto: The Revenge of Mr. Shade": pageId: 126651 templates: - - '{{Game data/saves|Windows|{{P|game}}}}' -'Skipper & Skeeto: The Shadow of Mr. Shade': + - "{{Game data/saves|Windows|{{P|game}}}}" +"Skipper & Skeeto: The Shadow of Mr. Shade": pageId: 126568 templates: - - '{{Game data/config|Windows|{{p|hklm}}\SOFTWARE\{{p|wow64}}\IVANOFF InterActive\MM4}}' - - '{{Game data/saves|Windows|{{P|game}}\Save Games}}' -'Skipper & Skeeto: Treasure Quiz': + - "{{Game data/config|Windows|{{p|hklm}}\\SOFTWARE\\{{p|wow64}}\\IVANOFF InterActive\\MM4}}" + - "{{Game data/saves|Windows|{{P|game}}\\Save Games}}" +"Skipper & Skeeto: Treasure Quiz": pageId: 122980 Skirmish: pageId: 124540 @@ -146166,20 +142226,20 @@ Skool Daze Reskooled: Skout: pageId: 188927 templates: - - '{{Game data/config|Windows|{{p|game}}/options.txt}}' + - "{{Game data/config|Windows|{{p|game}}/options.txt}}" Skript: pageId: 75506 steam: 746890 -'Skul: The Hero Slayer': +"Skul: The Hero Slayer": pageId: 154111 steam: 1147560 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Southpaw Games\Skul\}}' - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\Southpaw Games\Skul\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Southpaw Games\\Skul\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\Southpaw Games\\Skul\\}}" Skull Feast: pageId: 89359 steam: 815030 -'Skull Island: Rise of Kong': +"Skull Island: Rise of Kong": pageId: 190472 steam: 2097890 Skull Rogue: @@ -146193,7 +142253,7 @@ Skull and Bones: renamedFrom: - Skull & Bones steam: 370010 -Skull's Solitude: +"Skull's Solitude": pageId: 155462 steam: 1219180 Skullgirls 2nd Encore: @@ -146205,25 +142265,25 @@ Skullgirls 2nd Encore: - 208610 - 447510 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Skullgirls\}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/Skullgirls}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Skullgirls\Save Data}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/Skullgirls/SaveData}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Skullgirls\\}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/Skullgirls}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Skullgirls\\Save Data}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/Skullgirls/SaveData}}" Skulls of the Shogun: gog: 1425657908 pageId: 8185 steam: 228960 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Saved Games\SkullsOfTheShogun\}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/SkullsOfTheShogun/}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Saved Games\SkullsOfTheShogun\}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/SkullsOfTheShogun/}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Saved Games\\SkullsOfTheShogun\\}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/SkullsOfTheShogun/}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Saved Games\\SkullsOfTheShogun\\}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/SkullsOfTheShogun/}}" Skully: pageId: 160426 steam: 1249110 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Skully\Saved\Config}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Skully\Saved\SaveGames}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Skully\\Saved\\Config}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Skully\\Saved\\SaveGames}}" Skully Pinball: pageId: 132410 steam: 1059190 @@ -146244,13 +142304,13 @@ Sky Break: pageId: 45946 steam: 405370 templates: - - '{{Game data/config|Windows|{{P|userprofile}}\AppData\LocalLow\Farsky Interactive\Sky Break}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Farsky Interactive\Sky Break}}' + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Farsky Interactive\\Sky Break}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Farsky Interactive\\Sky Break}}" Sky Cannoneer: gog: 1738023096 pageId: 154170 steam: 1141570 -'Sky Clash: Lords of Clans 3D': +"Sky Clash: Lords of Clans 3D": pageId: 66295 steam: 630140 Sky Climbers: @@ -146272,21 +142332,21 @@ Sky Force Anniversary: pageId: 37680 steam: 355050 templates: - - '{{Game data/config|Windows|SteamInstallFolder/UserData//355050/remote/CloudData.dat}}' - - '{{Game data/saves|Windows|SteamInstallFolder/UserData//355050/remote/CloudData.dat}}' + - "{{Game data/config|Windows|SteamInstallFolder/UserData//355050/remote/CloudData.dat}}" + - "{{Game data/saves|Windows|SteamInstallFolder/UserData//355050/remote/CloudData.dat}}" Sky Force Reloaded: pageId: 66482 steam: 667600 templates: - - '{{Game data/config|Windows|{{P|game}}\Save}}' - - '{{Game data/saves|Windows|{{P|game}}\Save}}' - - '{{Game data/saves|Linux|{{P|steam}}/steamapps/common/Sky Force Reloaded/Save}}' -'Sky Gamblers: Storm Raiders': + - "{{Game data/config|Windows|{{P|game}}\\Save}}" + - "{{Game data/saves|Windows|{{P|game}}\\Save}}" + - "{{Game data/saves|Linux|{{P|steam}}/steamapps/common/Sky Force Reloaded/Save}}" +"Sky Gamblers: Storm Raiders": pageId: 49015 steam: 304910 templates: - - '{{Game data/config|Windows|\steamapps\common\SGSR\save}}' - - '{{Game data/saves|Windows|\steamapps\common\SGSR\save}}' + - "{{Game data/config|Windows|\\steamapps\\common\\SGSR\\save}}" + - "{{Game data/saves|Windows|\\steamapps\\common\\SGSR\\save}}" Sky Haven: pageId: 81167 steam: 674090 @@ -146331,7 +142391,7 @@ Sky Pirates of Actorius: Sky Racket: pageId: 128605 steam: 994500 -'Sky Realm: Essences': +"Sky Realm: Essences": pageId: 136706 steam: 1076350 Sky Reaper: @@ -146344,10 +142404,10 @@ Sky Rogue: pageId: 37695 steam: 381020 templates: - - '{{Game data/config|Windows|{{p|game}}\Save\GameOptions.sav}}' - - '{{Game data/config|Linux|{{p|xdgconfighome}}/unity3d/Fractal Phase/Sky Rogue/}}' - - '{{Game data/saves|Windows|{{p|game}}\Save\}}' - - '{{Game data/saves|Linux|{{p|xdgconfighome}}/unity3d/Fractal Phase/Sky Rogue/Save/}}' + - "{{Game data/config|Windows|{{p|game}}\\Save\\GameOptions.sav}}" + - "{{Game data/config|Linux|{{p|xdgconfighome}}/unity3d/Fractal Phase/Sky Rogue/}}" + - "{{Game data/saves|Windows|{{p|game}}\\Save\\}}" + - "{{Game data/saves|Linux|{{p|xdgconfighome}}/unity3d/Fractal Phase/Sky Rogue/Save/}}" Sky Sanctuary: pageId: 55614 steam: 526130 @@ -146374,10 +142434,10 @@ Sky of Destruction: Sky of Tides: pageId: 151452 steam: 1120330 -'Sky to Fly: Faster Than Wind': +"Sky to Fly: Faster Than Wind": pageId: 43985 steam: 403850 -'Sky to Fly: Soulless Leviathan': +"Sky to Fly: Soulless Leviathan": pageId: 38000 steam: 457810 SkyBoats: @@ -146401,11 +142461,11 @@ SkyKeepers: SkyRoads: pageId: 140267 templates: - - '{{Game data/saves|DOS|{{p|game}}\SKYROADS.CFG}}' -'SkyRoads: Xmas Special': + - "{{Game data/saves|DOS|{{p|game}}\\SKYROADS.CFG}}" +"SkyRoads: Xmas Special": pageId: 140269 templates: - - '{{Game data/saves|DOS|{{p|game}}\SKYROADS.CFG}}' + - "{{Game data/saves|DOS|{{p|game}}\\SKYROADS.CFG}}" SkyScrappers: pageId: 46060 steam: 403460 @@ -146419,9 +142479,9 @@ Skyborn: pageId: 38291 steam: 278460 templates: - - '{{Game data/config|Windows|{{P|game}}\Game.ini}}' - - '{{Game data/saves|Windows|{{P|appdata}}\Skyborn\}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/dancingdragon/skyborn/}}' + - "{{Game data/config|Windows|{{P|game}}\\Game.ini}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\Skyborn\\}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/dancingdragon/skyborn/}}" SkydiVeR: pageId: 128187 steam: 1024600 @@ -146447,7 +142507,7 @@ Skyhill: gog: 1458729425 pageId: 36343 steam: 382140 -'Skyhill: Black Mist': +"Skyhill: Black Mist": pageId: 135531 steam: 990360 Skyhook: @@ -146459,41 +142519,39 @@ Skyland 1976: Skyland Defense: pageId: 113590 steam: 905960 -'Skyland: Heart of the Mountain': +"Skyland: Heart of the Mountain": pageId: 125635 steam: 949800 templates: - - '{{Game data/config|Windows|{{p|steam}}/userdata/{{p|uid}}/949800/remote/profile}}' - - '{{Game data/saves|Windows|{{p|steam}}/userdata/{{p|uid}}/949800/remote/profile}}' -'Skylanders: Spyro''s Adventure': + - "{{Game data/config|Windows|{{p|steam}}/userdata/{{p|uid}}/949800/remote/profile}}" + - "{{Game data/saves|Windows|{{p|steam}}/userdata/{{p|uid}}/949800/remote/profile}}" +"Skylanders: Spyro's Adventure": pageId: 140366 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Spyro\Save\global.dat}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Spyro\Save\slot#}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Spyro\\Save\\global.dat}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Spyro\\Save\\slot#}}" Skylands: pageId: 68170 steam: 618200 -'Skylar & Plux: Adventure on Clover Island': +"Skylar & Plux: Adventure on Clover Island": gog: 1691943717 pageId: 52864 renamedFrom: - - 'Skylar & Plux: Adventure On Clover Island' + - "Skylar & Plux: Adventure On Clover Island" steam: 452540 templates: - - >- - {{Game - data/config|Windows|{{P|localappdata}}\CloverIsland\Saved\Config\WindowsNoEditor|{{P|localappdata}}\CloverIsland\Saved\SaveGames\SETTINGS.sav}} - - '{{Game data/saves|Windows|{{P|localappdata}}\CloverIsland\Saved\SaveGames}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\CloverIsland\\Saved\\Config\\WindowsNoEditor|{{P|localappdata}}\\CloverIsland\\Saved\\SaveGames\\SETTINGS.sav}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\CloverIsland\\Saved\\SaveGames}}" Skylight: pageId: 78443 steam: 750440 Skylight Racer: pageId: 135665 steam: 1071550 -'Skyling: Garden Defense': +"Skyling: Garden Defense": pageId: 57141 steam: 577160 -'Skynet Rising: Portal to the Past': +"Skynet Rising: Portal to the Past": pageId: 51653 steam: 516250 Skyous: @@ -146514,10 +142572,10 @@ Skyscraper Climb VR: Skyscraper Simulator: pageId: 40568 steam: 252910 -'Skyscrapers Puzzle: Airi''s tale': +"Skyscrapers Puzzle: Airi's tale": pageId: 96923 steam: 876180 -Skyshine's Bedlam Redux!: +"Skyshine's Bedlam Redux!": gog: 1876268007 pageId: 35499 steam: 367600 @@ -146534,24 +142592,24 @@ Skyward Collapse: pageId: 10723 steam: 238890 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\SOFTWARE\Arcen Games, LLC\Skyward Collapse\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Preferences/unity.Arcen Games, LLC.Skyward Collapse.plist}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/Arcen Games, LLC/Skyward Collapse/}}' - - '{{Game data/saves|Windows|{{p|game}}\RuntimeData\Save\}}' - - '{{Game data/saves|OS X|{{p|game}}/RuntimeData/Save/}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\Arcen Games, LLC\\Skyward Collapse\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Preferences/unity.Arcen Games, LLC.Skyward Collapse.plist}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/Arcen Games, LLC/Skyward Collapse/}}" + - "{{Game data/saves|Windows|{{p|game}}\\RuntimeData\\Save\\}}" + - "{{Game data/saves|OS X|{{p|game}}/RuntimeData/Save/}}" Skyway: pageId: 53560 steam: 541410 Skyworld: pageId: 39687 steam: 342190 -'Skyworld: Kingdom Brawl': +"Skyworld: Kingdom Brawl": pageId: 132138 steam: 977690 Skywriter: pageId: 108200 steam: 919040 -'Skábma: Snowfall': +"Skábma: Snowfall": gog: 1604699879 pageId: 171243 renamedFrom: @@ -146566,15 +142624,15 @@ Slabo?: Slabs: pageId: 97958 steam: 880590 -'Slain: Back from Hell': +"Slain: Back from Hell": gog: 1458053826 pageId: 34222 steam: 369070 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Wolfbrew Games\Slain\}}' - - '{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/Wolfbrew Games/Slain/prefs}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Wolfbrew Games\Slain\}}' - - '{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/Wolfbrew Games/Slain/*.dat}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Wolfbrew Games\\Slain\\}}" + - "{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/Wolfbrew Games/Slain/prefs}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Wolfbrew Games\\Slain\\}}" + - "{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/Wolfbrew Games/Slain/*.dat}}" Slam: pageId: 42451 steam: 377940 @@ -146603,15 +142661,15 @@ Slap City: pageId: 87179 steam: 725480 templates: - - '{{Game data/config|Windows|{{p|USERPROFILE}}\AppData\LocalLow\Ludosity\Slap City}}' - - '{{Game data/saves|Windows|{{p|USERPROFILE}}\AppData\LocalLow\Ludosity\Slap City\}}' + - "{{Game data/config|Windows|{{p|USERPROFILE}}\\AppData\\LocalLow\\Ludosity\\Slap City}}" + - "{{Game data/saves|Windows|{{p|USERPROFILE}}\\AppData\\LocalLow\\Ludosity\\Slap City\\}}" Slap Fight: pageId: 189023 steam: 2022980 Slap The Fly: pageId: 52586 steam: 543030 -'Slap Village: Reality Slap': +"Slap Village: Reality Slap": pageId: 42201 steam: 480900 Slappy Ass: @@ -146620,24 +142678,24 @@ Slappy Ass: Slapshot: pageId: 128367 steam: 707680 -'Slapshot: Rebound': +"Slapshot: Rebound": pageId: 175443 steam: 1173370 -'Slash Arena: Online': +"Slash Arena: Online": pageId: 65987 steam: 578120 Slash It: pageId: 55257 steam: 567290 templates: - - '{{Game data/saves|Windows|{{p|hkcu}}\SOFTWARE\KupiKey\Slash It}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/KupiKey/Slash It/}}' + - "{{Game data/saves|Windows|{{p|hkcu}}\\SOFTWARE\\KupiKey\\Slash It}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/KupiKey/Slash It/}}" Slash It 2: pageId: 56976 steam: 583760 templates: - - '{{Game data/saves|Windows|{{p|hkcu}}\SOFTWARE\KupiKey\Slash It 2}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/KupiKey/Slash It 2/}}' + - "{{Game data/saves|Windows|{{p|hkcu}}\\SOFTWARE\\KupiKey\\Slash It 2}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/KupiKey/Slash It 2/}}" Slash It Ultimate: pageId: 64046 steam: 656600 @@ -146655,12 +142713,12 @@ Slash/Dots.: Slasher VR: pageId: 66021 steam: 674160 -Slasher's Keep: +"Slasher's Keep": pageId: 78595 steam: 598060 templates: - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\Games Damian made\Slasher_s Keep}}' -'Slashers: The Power Battle': + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\Games Damian made\\Slasher_s Keep}}" +"Slashers: The Power Battle": pageId: 73821 steam: 361100 Slashvival: @@ -146671,12 +142729,12 @@ Slashy Hero: steam: 525740 Slater & Charlie Go Camping: pageId: 147196 -'Slaughter 3: The Rebels': +"Slaughter 3: The Rebels": pageId: 171477 steam: 1214920 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Venomized Art\Slaughter 3 The Rebels}}' - - '{{Game data/saves|Windows|{{P|hkcu}}\Venomized Art\Slaughter 3 The Rebels}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Venomized Art\\Slaughter 3 The Rebels}}" + - "{{Game data/saves|Windows|{{P|hkcu}}\\Venomized Art\\Slaughter 3 The Rebels}}" Slava Ukraini!: pageId: 180361 steam: 1974090 @@ -146686,7 +142744,7 @@ Slave Ghost: Slave Girl Reno: pageId: 152757 steam: 1198220 -'Slave Master: The Game': +"Slave Master: The Game": pageId: 121793 steam: 890470 Slave RPG: @@ -146700,17 +142758,17 @@ Slave Zero: pageId: 17952 steam: 328470 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/saves|Windows|{{p|game}}\savegame}}' + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\savegame}}" Slave Zero X: gog: 1524645937 pageId: 178426 steam: 1903910 -Slave's Sword: +"Slave's Sword": gog: 1862194530 pageId: 105153 steam: 893010 -Slave's Sword 2: +"Slave's Sword 2": gog: 2067293148 pageId: 126197 steam: 893020 @@ -146727,7 +142785,7 @@ Slay: pageId: 54309 steam: 563200 templates: - - '{{Game data/saves|Windows|%APPDATA%\Sean OConnors Games\Slay}}' + - "{{Game data/saves|Windows|%APPDATA%\\Sean OConnors Games\\Slay}}" Slay All Goblins: pageId: 125121 steam: 989190 @@ -146747,7 +142805,7 @@ Slay the Princess: pageId: 189635 steam: 1989270 templates: - - '{{Game data/saves|Windows|{{P|appdata}}\RenPy\SlaythePrincess-1651597024}}' + - "{{Game data/saves|Windows|{{P|appdata}}\\RenPy\\SlaythePrincess-1651597024}}" Slay the Spire: gog: 1950754973 gogSide: @@ -146757,18 +142815,14 @@ Slay the Spire: steamSide: - 877620 templates: - - '{{Game data/config|Windows|{{p|game}}\preferences\|{{P|game}}\info.displayconfig|{{P|game}}\twitchconfig.txt}}' - - >- - {{Game data/config|Microsoft - Store|{{P|localappdata}}\Packages\HumbleBundle.SlayTheSpire_q2mcdwmzx4qja\LocalCache\Local\Microsoft\WritablePackageRoot\preferences\|{{P|localappdata}}\Packages\HumbleBundle.SlayTheSpire_q2mcdwmzx4qja\LocalCache\Local\Microsoft\WritablePackageRoot\info.displayconfig|{{P|localappdata}}\Packages\HumbleBundle.SlayTheSpire_q2mcdwmzx4qja\LocalCache\Local\Microsoft\WritablePackageRoot\twitchconfig.txt}} - - '{{Game data/config|OS X|{{P|game}}/SlayTheSpire.app/Contents/Resources/preferences/STSGameplaySettings}}' - - '{{Game data/config|Linux|{{p|game}}/betaPreferences/|{{P|game}}/info.displayconfig|{{P|game}}/twitchconfig.txt}}' - - '{{Game data/saves|Windows|{{p|game}}\saves\}}' - - >- - {{Game data/saves|Microsoft - Store|{{P|localappdata}}\Packages\HumbleBundle.SlayTheSpire_q2mcdwmzx4qja\LocalCache\Local\Microsoft\WritablePackageRoot\saves}} - - '{{Game data/saves|OS X|{{P|game}}/SlayTheSpire.app/Contents/Resources/preferences}}' - - '{{Game data/saves|Linux|{{p|game}}/saves/}}' + - "{{Game data/config|Windows|{{p|game}}\\preferences\\|{{P|game}}\\info.displayconfig|{{P|game}}\\twitchconfig.txt}}" + - "{{Game data/config|Microsoft Store|{{P|localappdata}}\\Packages\\HumbleBundle.SlayTheSpire_q2mcdwmzx4qja\\LocalCache\\Local\\Microsoft\\WritablePackageRoot\\preferences\\|{{P|localappdata}}\\Packages\\HumbleBundle.SlayTheSpire_q2mcdwmzx4qja\\LocalCache\\Local\\Microsoft\\WritablePackageRoot\\info.displayconfig|{{P|localappdata}}\\Packages\\HumbleBundle.SlayTheSpire_q2mcdwmzx4qja\\LocalCache\\Local\\Microsoft\\WritablePackageRoot\\twitchconfig.txt}}" + - "{{Game data/config|OS X|{{P|game}}/SlayTheSpire.app/Contents/Resources/preferences/STSGameplaySettings}}" + - "{{Game data/config|Linux|{{p|game}}/betaPreferences/|{{P|game}}/info.displayconfig|{{P|game}}/twitchconfig.txt}}" + - "{{Game data/saves|Windows|{{p|game}}\\saves\\}}" + - "{{Game data/saves|Microsoft Store|{{P|localappdata}}\\Packages\\HumbleBundle.SlayTheSpire_q2mcdwmzx4qja\\LocalCache\\Local\\Microsoft\\WritablePackageRoot\\saves}}" + - "{{Game data/saves|OS X|{{P|game}}/SlayTheSpire.app/Contents/Resources/preferences}}" + - "{{Game data/saves|Linux|{{p|game}}/saves/}}" Slay.one: pageId: 80677 steam: 743350 @@ -146776,25 +142830,21 @@ Slayaway Camp: pageId: 40357 steam: 530390 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Blue Wizard\slayaway camp\}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Blue Wizard\slayaway camp\}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Blue Wizard/slayaway camp}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Blue Wizard\\slayaway camp\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Blue Wizard\\slayaway camp\\}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Blue Wizard/slayaway camp}}" Slayer Shock: pageId: 39141 steam: 501860 Slayer of Traitors: pageId: 93708 steam: 816670 -'Slayers X: Terminal Aftermath: Vengance of the Slayer': +"Slayers X: Terminal Aftermath: Vengance of the Slayer": pageId: 181600 steam: 1931020 templates: - - >- - {{Game data/config|Microsoft - Store|{{P|localappdata}}\Packages\NoMoreRobots.SlayersXTerminalAftermathVenganceofth_671zbmwb2bw9p\Settings\settings.dat}} - - >- - {{Game data/saves|Microsoft - Store|{{P|localappdata}}\Packages\NoMoreRobots.SlayersXTerminalAftermathVenganceofth_671zbmwb2bw9p\SystemAppData\wgs}} + - "{{Game data/config|Microsoft Store|{{P|localappdata}}\\Packages\\NoMoreRobots.SlayersXTerminalAftermathVenganceofth_671zbmwb2bw9p\\Settings\\settings.dat}}" + - "{{Game data/saves|Microsoft Store|{{P|localappdata}}\\Packages\\NoMoreRobots.SlayersXTerminalAftermathVenganceofth_671zbmwb2bw9p\\SystemAppData\\wgs}}" Sleengster: pageId: 53924 steam: 559500 @@ -146807,7 +142857,7 @@ Sleengster 3: Sleep Attack: pageId: 47729 steam: 366210 -'Sleep Paralysis : mystery of the mountain village': +"Sleep Paralysis : mystery of the mountain village": pageId: 144490 steam: 1134470 Sleep Tight: @@ -146816,7 +142866,7 @@ Sleep Tight: SleepWalker: pageId: 135484 steam: 1040190 -Sleeping Cub's Test of Courage: +"Sleeping Cub's Test of Courage": pageId: 147427 Sleeping Dawn: pageId: 75580 @@ -146830,22 +142880,18 @@ Sleeping Dogs: steamSide: - 216330 templates: - - '{{Game data/config|Windows|{{p|game}}\data\DisplaySettings.xml|{{p|game}}\data\HK Options}}' - - '{{Game data/saves|Windows|{{p|game}}\Data\HK*Slot*}}' -'Sleeping Dogs: Definitive Edition': + - "{{Game data/config|Windows|{{p|game}}\\data\\DisplaySettings.xml|{{p|game}}\\data\\HK Options}}" + - "{{Game data/saves|Windows|{{p|game}}\\Data\\HK*Slot*}}" +"Sleeping Dogs: Definitive Edition": gog: 1741843789 pageId: 20264 steam: 307690 templates: - - '{{Game data/config|Windows|{{p|game}}\data\HK Options|{{p|game}}\data\DisplaySettings.xml}}' - - >- - {{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Feral Interactive/Sleeping Dogs Definitive - Edition/VFS/Local/Settings/}} - - '{{Game data/saves|Windows|{{p|game}}\data\HK Autosave*|{{p|game}}\data\HK GameSlot*}}' - - '{{Game data/config|GOG.com|{{p|game}}\Save\}}' - - >- - {{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Feral Interactive/Sleeping Dogs Definitive - Edition/VFS/Local/Saves/}} + - "{{Game data/config|Windows|{{p|game}}\\data\\HK Options|{{p|game}}\\data\\DisplaySettings.xml}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Feral Interactive/Sleeping Dogs Definitive Edition/VFS/Local/Settings/}}" + - "{{Game data/saves|Windows|{{p|game}}\\data\\HK Autosave*|{{p|game}}\\data\\HK GameSlot*}}" + - "{{Game data/config|GOG.com|{{p|game}}\\Save\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Feral Interactive/Sleeping Dogs Definitive Edition/VFS/Local/Saves/}}" Sleeping Valley: pageId: 51284 steam: 538590 @@ -146854,11 +142900,11 @@ Sleepwalker (1993): renamedFrom: - Sleepwalker steam: 814640 -Sleepwalker's Journey: +"Sleepwalker's Journey": pageId: 8035 templates: - - '{{Game data/config|Windows|{{Path|appdata}}\11bitstudios\Sleepwalker`s Journey\config.bin}}' - - '{{Game data/saves|Windows|{{Path|appdata}}\11bitstudios\Sleepwalker`s Journey\iPhoneDefUser}}' + - "{{Game data/config|Windows|{{Path|appdata}}\\11bitstudios\\Sleepwalker`s Journey\\config.bin}}" + - "{{Game data/saves|Windows|{{Path|appdata}}\\11bitstudios\\Sleepwalker`s Journey\\iPhoneDefUser}}" Sleigh Runner: pageId: 124046 steam: 974060 @@ -146872,28 +142918,24 @@ Slender Threads: gog: 1309298705 pageId: 157243 steam: 1116480 -Slender's Woods: +"Slender's Woods": pageId: 106453 -'Slender: The Arrival': +"Slender: The Arrival": gog: 1207659203 pageId: 5440 steam: 252330 templates: - - >- - {{Game data/config|Windows|{{P|localappdata}}\SlenderTheArrival\Saved\Config\Windows|{{p|hkcu}}\Software\Blue Isle - Studios\Slender - The Arrival|{{p|steam}}\userdata\{{p|uid}}\252330\remote\SteamCloud}} - - >- - {{Game data/saves|Windows|{{P|localappdata}}\SlenderTheArrival\Saved\SaveGames|{{p|hkcu}}\Software\Blue Isle - Studios\Slender - The Arrival|{{p|steam}}\userdata\{{p|uid}}\252330\remote\SteamCloud}} -'Slender: The Eight Pages': + - "{{Game data/config|Windows|{{P|localappdata}}\\SlenderTheArrival\\Saved\\Config\\Windows|{{p|hkcu}}\\Software\\Blue Isle Studios\\Slender - The Arrival|{{p|steam}}\\userdata\\{{p|uid}}\\252330\\remote\\SteamCloud}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\SlenderTheArrival\\Saved\\SaveGames|{{p|hkcu}}\\Software\\Blue Isle Studios\\Slender - The Arrival|{{p|steam}}\\userdata\\{{p|uid}}\\252330\\remote\\SteamCloud}}" +"Slender: The Eight Pages": pageId: 5902 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Parsec Productions\Slender\}}' -Slenderman's Shadow: + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Parsec Productions\\Slender\\}}" +"Slenderman's Shadow": pageId: 107082 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Dark Pathogen Studios\Slenderman''s Shadow v1.3}}' - - '{{Game data/saves|Windows|{{P|game}}\player\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Dark Pathogen Studios\\Slenderman's Shadow v1.3}}" + - "{{Game data/saves|Windows|{{P|game}}\\player\\}}" Slice: pageId: 92783 steam: 840310 @@ -146909,7 +142951,7 @@ Slice&Dice: Slice&Dice (VR): pageId: 63141 steam: 637870 -'Slice, Dice & Rice': +"Slice, Dice & Rice": pageId: 58698 steam: 598450 Slide Furry Futanari: @@ -146924,7 +142966,7 @@ Slide to finish: Slide!!: pageId: 73448 steam: 664190 -'Slide: Platformer': +"Slide: Platformer": pageId: 47235 steam: 375870 Slider: @@ -146957,7 +142999,7 @@ Slime Adventure 2: Slime Adventure Legacy: pageId: 144503 steam: 1138290 -'Slime Age: Parody MMORPG Clicker': +"Slime Age: Parody MMORPG Clicker": pageId: 108324 steam: 913830 Slime CCG: @@ -146991,21 +143033,19 @@ Slime Rancher: pageId: 34675 steam: 433340 templates: - - '{{Game data/config|Windows|{{P|userprofile\appdata\locallow}}\Monomi Park\Slime Rancher\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Monomi Park/Slime Rancher/}}' - - '{{Game data/config|Linux|{{p|xdgconfighome}}/unity3d/Monomi Park/Slime Rancher/}}' - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\Monomi Park\Slime Rancher\}}' - - >- - {{Game data/saves|Microsoft - Store|{{P|localappdata}}\Packages\MonomiPark.SlimeRancher_9ahw7gx0g86p2\SystemAppData\wgs\}} - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Monomi Park/Slime Rancher/}}' - - '{{Game data/saves|Linux|{{p|xdgconfighome}}/unity3d/Monomi Park/Slime Rancher/}}' + - "{{Game data/config|Windows|{{P|userprofile\\appdata\\locallow}}\\Monomi Park\\Slime Rancher\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Monomi Park/Slime Rancher/}}" + - "{{Game data/config|Linux|{{p|xdgconfighome}}/unity3d/Monomi Park/Slime Rancher/}}" + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\Monomi Park\\Slime Rancher\\}}" + - "{{Game data/saves|Microsoft Store|{{P|localappdata}}\\Packages\\MonomiPark.SlimeRancher_9ahw7gx0g86p2\\SystemAppData\\wgs\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Monomi Park/Slime Rancher/}}" + - "{{Game data/saves|Linux|{{p|xdgconfighome}}/unity3d/Monomi Park/Slime Rancher/}}" Slime Rancher 2: pageId: 169364 steam: 1657630 templates: - - '{{Game data/config|Windows|{{p|userprofile\AppData\LocalLow}}\MonomiPark\SlimeRancher2\}}' - - '{{Game data/saves|Windows|{{p|userprofile\AppData\LocalLow}}\MonomiPark\SlimeRancher2\}}' + - "{{Game data/config|Windows|{{p|userprofile\\AppData\\LocalLow}}\\MonomiPark\\SlimeRancher2\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\AppData\\LocalLow}}\\MonomiPark\\SlimeRancher2\\}}" Slime Research: pageId: 125272 steam: 966180 @@ -147025,13 +143065,13 @@ Slime-san: gog: 1500997207 pageId: 57014 steam: 473530 -'Slime-san: Blackbird''s Kraken': +"Slime-san: Blackbird's Kraken": pageId: 65076 steam: 649820 -'Slime-san: Creator': +"Slime-san: Creator": pageId: 123365 steam: 924130 -'Slime-san: Sheeple''s Sequel': +"Slime-san: Sheeple's Sequel": pageId: 81512 steam: 766010 SlimeGear: @@ -147052,13 +143092,13 @@ SlingSkull Zombies: SlingSkull Zombies 2: pageId: 68110 steam: 694040 -'SlingSkull Zombies: Gravedigger': +"SlingSkull Zombies: Gravedigger": pageId: 69986 steam: 694910 -'SlingSkull Zombies: Graveyard Shift': +"SlingSkull Zombies: Graveyard Shift": pageId: 68617 steam: 694900 -'SlingSkull Zombies: The Dawn': +"SlingSkull Zombies: The Dawn": pageId: 68827 steam: 694920 Slinger VR: @@ -147070,7 +143110,7 @@ Slingray: Slingshot Cowboy VR: pageId: 66123 steam: 681920 -'Slingshot Explorer: The Twelve Towers': +"Slingshot Explorer: The Twelve Towers": pageId: 114162 steam: 937120 Slingshot Hero VR: @@ -147091,7 +143131,7 @@ Slip: SlipDrive: pageId: 95925 steam: 650720 -'SlipSlop: World''s Hardest Platformer Game': +"SlipSlop: World's Hardest Platformer Game": pageId: 141193 steam: 1093720 Slippery Sausage: @@ -147108,22 +143148,22 @@ Slipstream: pageId: 75630 steam: 732810 templates: - - '{{Game data/config|Windows|{{P|appdata}}\ansdorGames\Slipstream\}}' - - '{{Game data/saves|Windows|{{P|appdata}}\ansdorGames\Slipstream\saves\}}' + - "{{Game data/config|Windows|{{P|appdata}}\\ansdorGames\\Slipstream\\}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\ansdorGames\\Slipstream\\saves\\}}" Slipstream 5000: gog: 1207658953 pageId: 21284 steam: 306350 templates: - - '{{Game data/config|DOS|{{p|game}}\SLIPSTRM.CFG|{{p|game}}\CONFIG.INI}}' - - '{{Game data/saves|DOS|{{p|game}}\SLIPSTRM.SAV}}' + - "{{Game data/config|DOS|{{p|game}}\\SLIPSTRM.CFG|{{p|game}}\\CONFIG.INI}}" + - "{{Game data/saves|DOS|{{p|game}}\\SLIPSTRM.SAV}}" Slipways: gog: 2067138532 pageId: 166407 steam: 1264280 templates: - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Beetlewing\Slipways\saves\}}' - - '{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/Beetlewing/Slipways/saves}}' + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Beetlewing\\Slipways\\saves\\}}" + - "{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/Beetlewing/Slipways/saves}}" Slither Link: pageId: 110664 steam: 931090 @@ -147136,17 +143176,17 @@ Slizer Battle Management System: Sloppy Goat: pageId: 90048 steam: 823360 -'Slordax: The Unknown Enemy': +"Slordax: The Unknown Enemy": gog: 1855221507 pageId: 168299 steam: 1601900 Sloth Quest: pageId: 154275 steam: 1141300 -'Sloth: Heart to Heart': +"Sloth: Heart to Heart": pageId: 127700 steam: 1015100 -'Slow Down, Bull': +"Slow Down, Bull": pageId: 48168 steam: 333580 Slow.Bullet VR: @@ -147160,24 +143200,24 @@ Sludge Life: pageId: 158159 steam: 1144770 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\TerriVellmann\SludgeLife\}}' - - '{{Game data/saves|Windows|{{P|game}}\save.txt}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\TerriVellmann\\SludgeLife\\}}" + - "{{Game data/saves|Windows|{{P|game}}\\save.txt}}" Sludge Life 2: gog: 1672345980 pageId: 186011 steam: 2275150 templates: - - '{{Game data/saves|Windows|{{p|game}}\*.txt}}' + - "{{Game data/saves|Windows|{{p|game}}\\*.txt}}" Slug Blast: pageId: 60896 steam: 618540 Slug Slasher: pageId: 90386 steam: 823590 -'Sluggish Morss: Days of the Purple Sun': +"Sluggish Morss: Days of the Purple Sun": pageId: 52087 steam: 546440 -Sluggy's Fruit Emporium: +"Sluggy's Fruit Emporium": pageId: 39460 steam: 447330 Slugs Destroyer: @@ -147192,7 +143232,7 @@ Slumlord Simulator: Sly Pigs: pageId: 128199 steam: 999170 -'Slybots: Frantic Zone': +"Slybots: Frantic Zone": pageId: 44942 steam: 384100 Slymes: @@ -147213,13 +143253,13 @@ Small Radios Big Televisions: Small Sister: pageId: 104607 steam: 904600 -'Small Town Terrors: Galdor''s Bluff': +"Small Town Terrors: Galdor's Bluff": pageId: 44547 steam: 432760 -'Small Town Terrors: Livingston': +"Small Town Terrors: Livingston": pageId: 44938 steam: 432770 -'Small Town Terrors: Pilgrim''s Hook': +"Small Town Terrors: Pilgrim's Hook": pageId: 49913 steam: 302110 Small World: @@ -147228,8 +143268,8 @@ Small World: - Small World 2 steam: 235620 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Days of Wonder\SmallWorld\UserDefault.xml}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Days of Wonder\SmallWorld\*_SavedGame.pbbin}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Days of Wonder\\SmallWorld\\UserDefault.xml}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Days of Wonder\\SmallWorld\\*_SavedGame.pbbin}}" Small person: pageId: 95284 steam: 859460 @@ -147237,7 +143277,7 @@ Smalland: pageId: 78548 steam: 768200 templates: - - '{{Game data/config|Steam|{{P|localappdata}}\SMALLAND\Saved\Config\WindowsNoEditor\}}' + - "{{Game data/config|Steam|{{P|localappdata}}\\SMALLAND\\Saved\\Config\\WindowsNoEditor\\}}" Smaller: pageId: 145209 steam: 1127580 @@ -147290,7 +143330,7 @@ Smash Cars: Smash Dungeon: pageId: 145234 steam: 1144130 -'Smash Halloween Pumpkins: The Challenge': +"Smash Halloween Pumpkins: The Challenge": pageId: 98844 steam: 886010 Smash It: @@ -147314,8 +143354,8 @@ Smash Up: Smash up Derby: pageId: 187100 templates: - - '{{Game data/saves|Windows|{{p|game}}\RenderEngines}}' - - '{{Game data/saves|Windows|{{p|game}}\resources\save}}' + - "{{Game data/saves|Windows|{{p|game}}\\RenderEngines}}" + - "{{Game data/saves|Windows|{{p|game}}\\resources\\save}}" Smash+Grab: pageId: 38913 steam: 412720 @@ -147335,7 +143375,7 @@ Smashing the Battle: pageId: 43041 steam: 467930 templates: - - '{{Game data/saves|Windows|{{p|hkcu}}\Software\Studio HG\Smashing The Battle}}' + - "{{Game data/saves|Windows|{{p|hkcu}}\\Software\\Studio HG\\Smashing The Battle}}" Smashing the Battle VR: pageId: 63713 steam: 625770 @@ -147358,10 +143398,8 @@ Smile for Me: - Smile For Me steam: 1018850 templates: - - >- - {{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\LimboLane\Smile For - Me\*.dat|{{p|userprofile}}\AppData\LocalLow\LimboLane\Smile For Me\MetaSave\*.dat}} -Smile'N'Slide: + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\LimboLane\\Smile For Me\\*.dat|{{p|userprofile}}\\AppData\\LocalLow\\LimboLane\\Smile For Me\\MetaSave\\*.dat}}" +"Smile'N'Slide": pageId: 94695 steam: 860680 Smisl 2 gravity: @@ -147371,13 +143409,13 @@ Smite: pageId: 21384 steam: 386360 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Smite\BattleGame\Config\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Smite\\BattleGame\\Config\\}}" Smith and Winston: pageId: 122714 steam: 942250 templates: - - '{{Game data/config|Windows|{{P|game}}\data\settings.ini}}' - - '{{Game data/config|Linux|{{P|game}}/data/settings.ini}}' + - "{{Game data/config|Windows|{{P|game}}\\data\\settings.ini}}" + - "{{Game data/config|Linux|{{P|game}}/data/settings.ini}}" Smithy: pageId: 42704 steam: 485500 @@ -147391,19 +143429,19 @@ Smoke and Sacrifice: pageId: 86993 steam: 695100 templates: - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Solar Sail Games\Smoke and Sacrifice\}}' + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Solar Sail Games\\Smoke and Sacrifice\\}}" Smoker The Car Game: pageId: 110492 steam: 927580 Smooth Mover: pageId: 141746 steam: 1121120 -'Smooth Operators: Call Center Chaos': +"Smooth Operators: Call Center Chaos": pageId: 10379 steam: 262900 templates: - - '{{Game data/config|Windows|{{p|appdata}}\SOCCC\settings}}' - - '{{Game data/saves|Windows|{{p|appdata}}\SOCCC\SaveGames\}}' + - "{{Game data/config|Windows|{{p|appdata}}\\SOCCC\\settings}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\SOCCC\\SaveGames\\}}" Smoots Tennis Survival Zombie: pageId: 55526 steam: 564920 @@ -147420,7 +143458,7 @@ Smugglers V: gog: 1207659873 pageId: 21292 steam: 291450 -'Smugglers V: Invasion': +"Smugglers V: Invasion": gog: 1207666453 pageId: 21481 steam: 326230 @@ -147435,30 +143473,30 @@ Smushi Come Home: pageId: 187899 steam: 1740300 templates: - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\SomeHumbleOnion\Smushi Come Home}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/SomeHumbleOnion/Smushi Come Home}}' + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\SomeHumbleOnion\\Smushi Come Home}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/SomeHumbleOnion/Smushi Come Home}}" SnL: pageId: 144753 steam: 1147200 -'Snail Bob 2: Tiny Troubles': +"Snail Bob 2: Tiny Troubles": pageId: 46318 steam: 349760 Snail Racer Extreme: pageId: 93647 steam: 854150 -'Snail Trek - Chapter 1: Intershellar': +"Snail Trek - Chapter 1: Intershellar": pageId: 76561 steam: 751280 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Phil Fortier\Snail Trek - Chapter 1\}}' - - '{{Game data/saves|Windows|{{P|hkcu}}\Software\Phil Fortier\Snail Trek - Chapter 1\}}' -'Snail Trek - Chapter 2: A Snail of Two Worlds': + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Phil Fortier\\Snail Trek - Chapter 1\\}}" + - "{{Game data/saves|Windows|{{P|hkcu}}\\Software\\Phil Fortier\\Snail Trek - Chapter 1\\}}" +"Snail Trek - Chapter 2: A Snail of Two Worlds": pageId: 78026 steam: 756320 -'Snail Trek - Chapter 3: Lettuce Be': +"Snail Trek - Chapter 3: Lettuce Be": pageId: 78544 steam: 761480 -'Snail Trek - Chapter 4: The Final Fondue': +"Snail Trek - Chapter 4: The Final Fondue": pageId: 88108 steam: 774531 Snailiens: @@ -147470,7 +143508,7 @@ Snails: SnakEscape: pageId: 44641 steam: 409440 -'SnakEscape: Remastered': +"SnakEscape: Remastered": pageId: 153620 steam: 1188190 Snake 3D Adventures: @@ -147501,14 +143539,10 @@ Snake Pass: pageId: 52636 steam: 544330 templates: - - >- - {{Game data/config|Microsoft - Store|{{p|localappdata}}\Packages\SumoDigitalLtd.48576635C2674_fxgztw5m4nn00\LocalState\}} - - '{{Game data/config|Windows|{{p|localappdata}}\SnakeSimulator\Saved\Config\WindowsNoEditor\}}' - - >- - {{Game data/saves|Microsoft - Store|{{p|localappdata}}\Packages\SumoDigitalLtd.48576635C2674_fxgztw5m4nn00\SystemAppData\wgs\}} - - '{{Game data/saves|Windows|{{p|localappdata}}\SnakeSimulator\Saved\SaveGames\}}' + - "{{Game data/config|Microsoft Store|{{p|localappdata}}\\Packages\\SumoDigitalLtd.48576635C2674_fxgztw5m4nn00\\LocalState\\}}" + - "{{Game data/config|Windows|{{p|localappdata}}\\SnakeSimulator\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Microsoft Store|{{p|localappdata}}\\Packages\\SumoDigitalLtd.48576635C2674_fxgztw5m4nn00\\SystemAppData\\wgs\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\SnakeSimulator\\Saved\\SaveGames\\}}" Snake Treasure Chest: pageId: 72956 steam: 721470 @@ -147521,37 +143555,37 @@ Snake VS Block Numbers: Snake vs Snake: pageId: 128352 steam: 1005310 -'Snake, Snake, Snake!': +"Snake, Snake, Snake!": pageId: 94575 steam: 857140 -'Snake: Road to apple': +"Snake: Road to apple": pageId: 74920 steam: 731230 -'Snake: The Elder Forest': +"Snake: The Elder Forest": pageId: 148711 steam: 1152640 Snakebird: pageId: 33243 steam: 357300 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\SOFTWARE\Noumenon Games\Snakebird\|{{p|game}}\SavesDir\*.dat}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Noumenon Games}}' - - '{{Game data/saves|Windows|{{p|game}}\SavesDir\*.sav}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Noumenon Games/SavesDir}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\Noumenon Games\\Snakebird\\|{{p|game}}\\SavesDir\\*.dat}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Noumenon Games}}" + - "{{Game data/saves|Windows|{{p|game}}\\SavesDir\\*.sav}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Noumenon Games/SavesDir}}" Snakebird Primer: pageId: 127779 steam: 1014140 templates: - - '{{Game data/config|Linux| {{P|xdgconfighome}}/unity3d/Noumenon Games/Snakebird Primer}}' - - '{{Game data/saves|Windows|{{P|game}}\SavesDir}}' - - '{{Game data/saves|Linux|{{P|game}}/SavesDir}}' + - "{{Game data/config|Linux| {{P|xdgconfighome}}/unity3d/Noumenon Games/Snakebird Primer}}" + - "{{Game data/saves|Windows|{{P|game}}\\SavesDir}}" + - "{{Game data/saves|Linux|{{P|game}}/SavesDir}}" Snakeez: pageId: 72077 steam: 714620 Snakelike: pageId: 125035 steam: 845110 -'Snakes - N - Ladders: Origins - Episode 1': +"Snakes - N - Ladders: Origins - Episode 1": pageId: 57797 steam: 552940 Snakes on an Extradimensional Plane: @@ -147564,13 +143598,13 @@ Snakeybus: pageId: 128348 steam: 1012560 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Snakeybus}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Snakeybus\saves}}' + - "{{Game data/config|Windows|{{p|appdata}}\\Snakeybus}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Snakeybus\\saves}}" Snaliens: pageId: 156847 steam: 1214850 templates: - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\JFerreira\Snaliens\}}' + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\JFerreira\\Snaliens\\}}" SnappleNoid: pageId: 70373 steam: 710080 @@ -147582,10 +143616,10 @@ Snapshot: pageId: 4797 steam: 204220 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\Documents\Snapshot\}}' - - '{{Game data/config|Linux|{{P|xdgconfighome}}/Snapshot/}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\Documents\Snapshot\}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/Snapshot/}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\Documents\\Snapshot\\}}" + - "{{Game data/config|Linux|{{P|xdgconfighome}}/Snapshot/}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Documents\\Snapshot\\}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/Snapshot/}}" Snares of Ruin: pageId: 79292 steam: 766940 @@ -147598,7 +143632,7 @@ Snares of Ruin Zero: SnarfQuest Tales: pageId: 46454 steam: 372340 -'SnarfQuest Tales, Episode 1: The Beginning': +"SnarfQuest Tales, Episode 1: The Beginning": pageId: 59391 steam: 470020 Sneak In: @@ -147608,7 +143642,7 @@ Sneak Thief: pageId: 41797 steam: 508550 templates: - - '{{Game data/config|Windows|{{p|HKCU}}\Software\Dominion Interactive\Sneak Thief}}' + - "{{Game data/config|Windows|{{p|HKCU}}\\Software\\Dominion Interactive\\Sneak Thief}}" Sneaker: pageId: 148426 steam: 1018080 @@ -147624,21 +143658,19 @@ Sneaky Ninja: Sneaky Sasquatch: pageId: 147769 templates: - - >- - {{Game data/saves|OS - X|{{p|osxhome}}/Library/Containers/Sasquatch/data/Library/SyncedPreferences/com.rac7.SneakSasquatchMac.plist}} + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Containers/Sasquatch/data/Library/SyncedPreferences/com.rac7.SneakSasquatchMac.plist}}" Sneaky Sneaky: pageId: 38093 steam: 259410 templates: - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Naiad Entertainment\Sneaky\}}' + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Naiad Entertainment\\Sneaky\\}}" Snik: pageId: 46548 steam: 388050 SnipZ: pageId: 54651 steam: 549030 -'Sniper 3D Assassin: Free to Play': +"Sniper 3D Assassin: Free to Play": pageId: 112240 steam: 922320 Sniper Blacklist: @@ -147652,64 +143684,62 @@ Sniper Elite: pageId: 17836 steam: 3700 templates: - - '{{Game data/config|Windows|{{p|game}}\Prof\{{p|uid}}\}}' - - '{{Game data/saves|Windows|{{p|game}}\Prof\{{p|uid}}\}}' + - "{{Game data/config|Windows|{{p|game}}\\Prof\\{{p|uid}}\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\Prof\\{{p|uid}}\\}}" Sniper Elite 4: pageId: 31703 steam: 312660 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\SniperElite4\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\SniperElite4\PC_ProfileSaves\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\SniperElite4\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\SniperElite4\\PC_ProfileSaves\\}}" Sniper Elite 5: pageId: 133544 steam: 1029690 steamSide: - - 1875170 - - 1872751 - - 1872750 - - 1724942 - - 1724941 - - 1724940 - 1363480 + - 1724940 + - 1724941 + - 1724942 + - 1872750 + - 1872751 + - 1875170 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Sniper Elite 5\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Sniper Elite 5\PC_ProfileSaves\}}' - - >- - {{Game data/saves|Microsoft - Store|{{p|localappdata}}\Packages\Rebellion.52602B995C00E_2vbwqmt31j4mr\SystemAppData\wgs\}} + - "{{Game data/config|Windows|{{p|localappdata}}\\Sniper Elite 5\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Sniper Elite 5\\PC_ProfileSaves\\}}" + - "{{Game data/saves|Microsoft Store|{{p|localappdata}}\\Packages\\Rebellion.52602B995C00E_2vbwqmt31j4mr\\SystemAppData\\wgs\\}}" Sniper Elite III: pageId: 17837 steam: 238090 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Sniper3\settings.ini}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Sniper3\PC_ProfileSaves\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Sniper3\\settings.ini}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Sniper3\\PC_ProfileSaves\\}}" Sniper Elite V2: pageId: 2244 steam: 63380 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\SniperV2\settings.ini}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\SniperV2\PC_ProfileSaves}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\SniperV2\\settings.ini}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\SniperV2\\PC_ProfileSaves}}" Sniper Elite V2 Remastered: gog: 1615328735 pageId: 130819 steam: 728740 templates: - - '{{Game data/saves|Windows|{{p|localappdata}}\Sniper Elite V2 Remastered\PC_ProfileSaves\{{p|uid}}}}' + - "{{Game data/saves|Windows|{{p|localappdata}}\\Sniper Elite V2 Remastered\\PC_ProfileSaves\\{{p|uid}}}}" Sniper Elite VR: pageId: 133545 steam: 752480 -'Sniper Elite: Nazi Zombie Army': +"Sniper Elite: Nazi Zombie Army": pageId: 5339 steam: 227100 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Sniper Elite Nazi Zombie Army\settings.ini}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Sniper Elite Nazi Zombie\PC_ProfileSaves}}' -'Sniper Elite: Nazi Zombie Army 2': + - "{{Game data/config|Windows|{{p|localappdata}}\\Sniper Elite Nazi Zombie Army\\settings.ini}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Sniper Elite Nazi Zombie\\PC_ProfileSaves}}" +"Sniper Elite: Nazi Zombie Army 2": pageId: 11747 steam: 247910 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Sniper Elite Nazi Zombie Army 2\settings.ini}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Sniper Elite Nazi Zombie Army 2\PC_ProfileSaves}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Sniper Elite Nazi Zombie Army 2\\settings.ini}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Sniper Elite Nazi Zombie Army 2\\PC_ProfileSaves}}" Sniper Fodder: pageId: 97940 steam: 880840 @@ -147725,7 +143755,7 @@ Sniper Rust VR: Sniper Squad Mission: pageId: 92799 steam: 844290 -'Sniper Strike: Special Ops': +"Sniper Strike: Special Ops": pageId: 99816 steam: 848500 Sniper Tactical: @@ -147737,61 +143767,57 @@ Sniper Tanks: Sniper Zombie Killer: pageId: 102931 steam: 882570 -'Sniper: Art of Victory': +"Sniper: Art of Victory": pageId: 50701 steam: 271500 templates: - - '{{Game data/config|Windows|{{P|game}}\Data}}' -'Sniper: Ghost Warrior': + - "{{Game data/config|Windows|{{P|game}}\\Data}}" +"Sniper: Ghost Warrior": gog: 1345222405 pageId: 6618 steam: 34830 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\Sniper - Ghost - Warrior\out\Settings\|{{p|game}}\Game\out\Settings\}} - - >- - {{Game data/saves|Windows|{{p|userprofile\Documents}}\Sniper - Ghost - Warrior\out\save\|{{p|game}}\Game\out\profiles\}} -'Sniper: Ghost Warrior 2': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Sniper - Ghost Warrior\\out\\Settings\\|{{p|game}}\\Game\\out\\Settings\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Sniper - Ghost Warrior\\out\\save\\|{{p|game}}\\Game\\out\\profiles\\}}" +"Sniper: Ghost Warrior 2": gog: 1574905103 pageId: 3420 steam: 34870 templates: - - '{{Game data/config|Windows|{{p|game}}\system.cfg}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\Saved Games\SniperGhostWarrior2}}' -'Sniper: Ghost Warrior 3': + - "{{Game data/config|Windows|{{p|game}}\\system.cfg}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Saved Games\\SniperGhostWarrior2}}" +"Sniper: Ghost Warrior 3": gog: 1151479345 pageId: 39592 steam: 368070 templates: - - '{{Game data/config|Steam|{{P|Steam}}\userdata\{{p|uid}}\368070\remote\profiles\default\}}' - - '{{Game data/saves|Steam|{{P|Steam}}\userdata\{{p|uid}}\368070\remote\savegames\}}' -'Sniper: Ghost Warrior Contracts': + - "{{Game data/config|Steam|{{P|Steam}}\\userdata\\{{p|uid}}\\368070\\remote\\profiles\\default\\}}" + - "{{Game data/saves|Steam|{{P|Steam}}\\userdata\\{{p|uid}}\\368070\\remote\\savegames\\}}" +"Sniper: Ghost Warrior Contracts": gog: 1614249896 pageId: 139599 steam: 973580 templates: - - '{{Game data/config|Windows|{{p|USERPROFILE}}\Saved Games\Sniper Ghost Warrior Contracts\Profiles\default\}}' - - '{{Game data/config|Steam|{{P|Steam}}\userdata\{{p|uid}}\973580\remote\profiles\default\}}' - - '{{Game data/saves|Windows|{{p|USERPROFILE}}\Saved Games\Sniper Ghost Warrior Contracts\SaveGames\}}' - - '{{Game data/saves|Steam|{{P|Steam}}\userdata\{{p|uid}}\973580\remote\savegames\}}' -'Sniper: Ghost Warrior Contracts 2': + - "{{Game data/config|Windows|{{p|USERPROFILE}}\\Saved Games\\Sniper Ghost Warrior Contracts\\Profiles\\default\\}}" + - "{{Game data/config|Steam|{{P|Steam}}\\userdata\\{{p|uid}}\\973580\\remote\\profiles\\default\\}}" + - "{{Game data/saves|Windows|{{p|USERPROFILE}}\\Saved Games\\Sniper Ghost Warrior Contracts\\SaveGames\\}}" + - "{{Game data/saves|Steam|{{P|Steam}}\\userdata\\{{p|uid}}\\973580\\remote\\savegames\\}}" +"Sniper: Ghost Warrior Contracts 2": pageId: 161332 steam: 1338770 -'Sniper: Path of Vengeance': +"Sniper: Path of Vengeance": pageId: 69924 templates: - - '{{Game data/config|Windows|{{p|game}}\autoexec.cfg|{{p|game}}\lanuchp.txt}}' - - '{{Game data/saves|Windows|{{p|game}}\save\}}' + - "{{Game data/config|Windows|{{p|game}}\\autoexec.cfg|{{p|game}}\\lanuchp.txt}}" + - "{{Game data/saves|Windows|{{p|game}}\\save\\}}" Snipiyo / スナイピヨ: pageId: 132192 steam: 1049680 Sno-Cross Extreme: pageId: 164310 templates: - - '{{Game data/config|Windows|{{p|game}}\snow.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\snowkarp.cfg}}' + - "{{Game data/config|Windows|{{p|game}}\\snow.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\snowkarp.cfg}}" Snoobli: pageId: 94346 steam: 778630 @@ -147802,14 +143828,14 @@ Snooker 19: pageId: 134892 steam: 887800 templates: - - '{{Game data/config|Windows|{{P|userprofile}}\AppData\Local\Unreal\Saved\Config\WindowsNoEditor}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\Local\Unreal\Saved\SaveGames}}' + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\Local\\Unreal\\Saved\\Config\\WindowsNoEditor}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\Local\\Unreal\\Saved\\SaveGames}}" Snooker Nation Championship: pageId: 43362 steam: 458830 templates: - - '{{Game data/config|Windows|{{p|LOCALAPPDATA}}\SnookerNation\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{p|LOCALAPPDATA}}\SnookerNation\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{p|LOCALAPPDATA}}\\SnookerNation\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{p|LOCALAPPDATA}}\\SnookerNation\\Saved\\SaveGames\\}}" SnookerWorld-Best online multiplayer snooker game!: pageId: 40283 steam: 522660 @@ -147818,17 +143844,17 @@ Snoopy vs. the Red Baron: Snoot Game: pageId: 169676 templates: - - '{{Game data/config|Windows|{{p|appdata}}\RenPy\CavemanonSnootGame\persistent}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/RenPy/CavemanonSnootGame/persistent}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.renpy/CavemanonSnootGame/persistent}}' - - '{{Game data/saves|Windows|{{p|appdata}}\RenPy\CavemanonSnootGame\*.save}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/RenPy/CavemanonSnootGame/*.save}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.renpy/CavemanonSnootGame/*.save}}' + - "{{Game data/config|Windows|{{p|appdata}}\\RenPy\\CavemanonSnootGame\\persistent}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/RenPy/CavemanonSnootGame/persistent}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.renpy/CavemanonSnootGame/persistent}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\RenPy\\CavemanonSnootGame\\*.save}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/RenPy/CavemanonSnootGame/*.save}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.renpy/CavemanonSnootGame/*.save}}" Snow: pageId: 15326 steam: 244930 templates: - - '{{Game data/config|Windows|{{p|game}}\system.cfg}}' + - "{{Game data/config|Windows|{{p|game}}\\system.cfg}}" Snow Arena: pageId: 139131 steam: 1103320 @@ -147841,16 +143867,16 @@ Snow Battle Princess Sayuki: - Snow Battle Princess SAYUKI steam: 1028760 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\DefaultCompany\Snow_Battle_Princess_SAYUKI\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\DefaultCompany\Snow_Battle_Princess_SAYUKI\}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\DefaultCompany\\Snow_Battle_Princess_SAYUKI\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\DefaultCompany\\Snow_Battle_Princess_SAYUKI\\}}" Snow Clearing Driving Simulator: pageId: 149559 steam: 1155920 -'Snow Daze: The Music of Winter Special Edition': +"Snow Daze: The Music of Winter Special Edition": pageId: 113356 steam: 852480 templates: - - '{{Game data/saves|Linux|{{p|game}}/game/saves/}}' + - "{{Game data/saves|Linux|{{p|game}}/game/saves/}}" Snow Fall: pageId: 79742 steam: 775320 @@ -147897,11 +143923,9 @@ SnowRunner: pageId: 143572 steam: 1465360 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\My Games\SnowRunner\base\storage\}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\My Games\SnowRunner\base\storage\}}' - - >- - {{Game data/saves|Microsoft - Store|{{P|LOCALAPPDATA}}\Packages\FocusHomeInteractiveSA.SnowRunnerWindows10_4hny5m903y3g0\SystemAppData\wgs\}} + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\My Games\\SnowRunner\\base\\storage\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\My Games\\SnowRunner\\base\\storage\\}}" + - "{{Game data/saves|Microsoft Store|{{P|LOCALAPPDATA}}\\Packages\\FocusHomeInteractiveSA.SnowRunnerWindows10_4hny5m903y3g0\\SystemAppData\\wgs\\}}" Snowball Rush: pageId: 132258 steam: 1051160 @@ -147912,8 +143936,8 @@ Snowball!: pageId: 52420 steam: 546550 templates: - - '{{Game data/saves|Windows|{{P|appdata}}\com.pixeljam.snowball\Local Store\#SharedObjects\}}' -'Snowballed: Crazy Downhill': + - "{{Game data/saves|Windows|{{P|appdata}}\\com.pixeljam.snowball\\Local Store\\#SharedObjects\\}}" +"Snowballed: Crazy Downhill": pageId: 122504 steam: 970680 Snowballs: @@ -147941,7 +143965,7 @@ Snowed IN: Snowflake Tattoo: pageId: 48351 steam: 355430 -Snowflake's Chance: +"Snowflake's Chance": pageId: 57464 steam: 582370 Snowglobe: @@ -147960,12 +143984,10 @@ Snowtopia: gog: 1179524912 pageId: 145156 renamedFrom: - - 'Snowtopia: Ski Resort Tycoon' + - "Snowtopia: Ski Resort Tycoon" steam: 1124260 templates: - - >- - {{Game data/config|Windows|{{P|userprofile\appdata\locallow}}\Tea For - Two\Snowtopia\Config\user_config.json|{{P|hkcu}}\SOFTWARE\Tea for Two\Snowtopia\}} + - "{{Game data/config|Windows|{{P|userprofile\\appdata\\locallow}}\\Tea For Two\\Snowtopia\\Config\\user_config.json|{{P|hkcu}}\\SOFTWARE\\Tea for Two\\Snowtopia\\}}" Snuffles and Co.: pageId: 113104 steam: 733560 @@ -147973,15 +143995,15 @@ Snuggle Truck: pageId: 4660 steam: 111100 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Owlchemy Labs\SnuggleTruck\}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Owlchemy Labs/Snuggle Truck/}}' - - '{{Game data/saves|Windows|{{p|hkcu}}\Software\Owlchemy Labs\SnuggleTruck\}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Owlchemy Labs/Snuggle Truck/}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Owlchemy Labs\\SnuggleTruck\\}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Owlchemy Labs/Snuggle Truck/}}" + - "{{Game data/saves|Windows|{{p|hkcu}}\\Software\\Owlchemy Labs\\SnuggleTruck\\}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Owlchemy Labs/Snuggle Truck/}}" So Blonde: pageId: 35262 templates: - - '{{Game data/config|Windows|{{p|hklm}}\SOFTWARE\{{p|wow64}}\Anaconda\So Blonde}}' - - '{{Game data/saves|Windows|{{p|game}}\saves\}}' + - "{{Game data/config|Windows|{{p|hklm}}\\SOFTWARE\\{{p|wow64}}\\Anaconda\\So Blonde}}" + - "{{Game data/saves|Windows|{{p|game}}\\saves\\}}" So Long Earth: pageId: 43302 steam: 448110 @@ -147997,10 +144019,10 @@ So Many Me: So Much Blood: pageId: 42714 steam: 476450 -'So, uh... a spaceship crashed in my yard.': +"So, uh... a spaceship crashed in my yard.": pageId: 103915 steam: 899610 -'SoM: Soul of Mask': +"SoM: Soul of Mask": pageId: 75107 steam: 725020 SoTo: @@ -148048,7 +144070,7 @@ Soccer Manager 2020: pageId: 150774 steam: 1078730 templates: - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Soccer Manager Ltd\SM20}}' + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Soccer Manager Ltd\\SM20}}" Soccer Manager 2021: pageId: 164811 steam: 1448530 @@ -148058,7 +144080,7 @@ Soccer Manager Arena: Soccer Mania: pageId: 142390 templates: - - '{{Game data/saves|Windows|{{p|appdata}}\LEGO Media\Soccer Mania\Dev0}}' + - "{{Game data/saves|Windows|{{p|appdata}}\\LEGO Media\\Soccer Mania\\Dev0}}" Soccer Nations Battle: pageId: 93800 steam: 849270 @@ -148078,7 +144100,7 @@ Soccer Story: pageId: 187732 steam: 1912380 templates: - - '{{Game data/saves|Windows|{{p|game}}\SavesDir}}' + - "{{Game data/saves|Windows|{{p|game}}\\SavesDir}}" Soccering: pageId: 128020 steam: 1012530 @@ -148088,7 +144110,7 @@ Soccertron: Sociable Soccer: pageId: 68000 steam: 636690 -'Social Club VR: Casino Nights': +"Social Club VR: Casino Nights": pageId: 95037 steam: 708760 Social Interaction Trainer: @@ -148114,19 +144136,17 @@ Soda Drinker Pro: pageId: 43616 steam: 347720 templates: - - '{{Game data/saves|Windows|{{P|hkcu}}\SOFTWARE\Snowrunner Games\SodaDrinkerPro}}' + - "{{Game data/saves|Windows|{{P|hkcu}}\\SOFTWARE\\Snowrunner Games\\SodaDrinkerPro}}" Soda Dungeon: pageId: 55059 steam: 564710 templates: - - '{{Game data/saves|Windows|{{p|appdata}}\dungeon\POX_DUNGEON.sol}}' + - "{{Game data/saves|Windows|{{p|appdata}}\\dungeon\\POX_DUNGEON.sol}}" Soda Dungeon 2: pageId: 151287 steam: 946050 templates: - - >- - {{Game - data/saves|Windows|{{P|userprofile\appdata\locallow}}\ANProductions\SodaDungeon2\soda_dungeon_2_save_data.dat}} + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\ANProductions\\SodaDungeon2\\soda_dungeon_2_save_data.dat}}" Soda Girls: pageId: 52820 steam: 519080 @@ -148143,7 +144163,7 @@ Soft Body: pageId: 43029 steam: 337650 templates: - - '{{Game data/saves|Windows|{{p|localappdata}}\Soft_Body\asyncsavegroup\softbodysave.sav}}' + - "{{Game data/saves|Windows|{{p|localappdata}}\\Soft_Body\\asyncsavegroup\\softbodysave.sav}}" Softened Cookie: pageId: 74477 steam: 735440 @@ -148156,7 +144176,7 @@ Software Inc.: pageId: 37557 steam: 362620 templates: - - '{{Game data/saves|Windows|{{p|game}}/Saves}}' + - "{{Game data/saves|Windows|{{p|game}}/Saves}}" SojournVR: pageId: 73634 steam: 667050 @@ -148194,7 +144214,7 @@ Soko Match: Sokoban Land DX: pageId: 65361 steam: 670850 -'Sokoban: The RPG': +"Sokoban: The RPG": pageId: 109778 steam: 915080 Sokobond: @@ -148202,31 +144222,27 @@ Sokobond: pageId: 23643 steam: 290260 templates: - - '{{Game data/config|Windows|{{p|appdata}}\com.sokobond\Local Store\#SharedObjects\sokobond.sol}}' - - >- - {{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/com.sokobond/Local - Store/#SharedObjects/sokobond.sol}} - - '{{Game data/saves|Windows|{{p|appdata}}\com.sokobond\Local Store\#SharedObjects\sokobond.sol}}' - - >- - {{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/com.sokobond/Local - Store/#SharedObjects/sokobond.sol}} - - '{{Game data/saves|Linux|{{p|linuxhome}}/.appdata/com.sokobond/Local Store/#SharedObjects/sokobond.sol}}' + - "{{Game data/config|Windows|{{p|appdata}}\\com.sokobond\\Local Store\\#SharedObjects\\sokobond.sol}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/com.sokobond/Local Store/#SharedObjects/sokobond.sol}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\com.sokobond\\Local Store\\#SharedObjects\\sokobond.sol}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/com.sokobond/Local Store/#SharedObjects/sokobond.sol}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.appdata/com.sokobond/Local Store/#SharedObjects/sokobond.sol}}" Sokos: pageId: 35154 steam: 459900 -'Sol 0: Mars Colonization': +"Sol 0: Mars Colonization": pageId: 44974 steam: 387370 Sol Cresta: pageId: 170587 steam: 1575640 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\SOFTWARE\PlatinumGames\SolCresta}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\PlatinumGames\SolCresta\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\PlatinumGames\\SolCresta}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\PlatinumGames\\SolCresta\\}}" Sol Divide: pageId: 47291 steam: 379350 -'Sol Divide: Sword of Darkness': +"Sol Divide: Sword of Darkness": pageId: 169023 steam: 1279450 Sol Galaxy Defender: @@ -148236,9 +144252,7 @@ Sol Survivor: pageId: 14806 steam: 45000 templates: - - >- - {{Game - data/config|Windows|{{p|localappdata}}\Cadenza\SolSurvivor.exe_Url_kk2kolf32br34iyn2nvxhiojvswfgh4i\1.0.0.0}} + - "{{Game data/config|Windows|{{p|localappdata}}\\Cadenza\\SolSurvivor.exe_Url_kk2kolf32br34iyn2nvxhiojvswfgh4i\\1.0.0.0}}" Sol Trader: pageId: 42684 steam: 396680 @@ -148252,8 +144266,8 @@ SolSeraph: pageId: 140326 steam: 834800 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Empyrean\Saved\Config\WindowsNoEditor}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Empyrean\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\Empyrean\\Saved\\Config\\WindowsNoEditor}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Empyrean\\Saved\\SaveGames\\}}" Solace Crafting: pageId: 65359 steam: 670260 @@ -148264,17 +144278,17 @@ Solar 2: pageId: 4774 steam: 97000 templates: - - '{{Game data/config|Linux|{{p|linuxhome}}/.solar2/}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.solar2/}}' - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/97000/}}' + - "{{Game data/config|Linux|{{p|linuxhome}}/.solar2/}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.solar2/}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/97000/}}" Solar Ash: pageId: 138453 renamedFrom: - Solar Ash Kingdom steam: 1867530 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Solar\Saved\Config\WindowsNoEditor}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Solar\EGS\{{P|uid}}\SaveGames}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Solar\\Saved\\Config\\WindowsNoEditor}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Solar\\EGS\\{{P|uid}}\\SaveGames}}" Solar Battalion: pageId: 92933 steam: 803570 @@ -148290,7 +144304,7 @@ Solar Command: Solar Core: pageId: 72397 steam: 637340 -'Solar Explorer: New Dawn': +"Solar Explorer: New Dawn": pageId: 109176 steam: 875080 Solar Fighters: @@ -148300,12 +144314,12 @@ Solar Flux: pageId: 11599 steam: 251910 templates: - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/Firebrand Games/Solar Flux/save.bin}}' - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/251910/remote/save.bin}}' + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/Firebrand Games/Solar Flux/save.bin}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/251910/remote/save.bin}}" Solar Lander: pageId: 73227 steam: 724170 -'Solar Panic: Utter Distress': +"Solar Panic: Utter Distress": pageId: 154001 steam: 1195920 Solar Purge: @@ -148354,9 +144368,9 @@ Solarix: pageId: 25262 steam: 284990 templates: - - '{{Game data/config|Windows|{{p|game}}\UDKGame\Config\UDKSystemSettings.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\UDKGame\Saves\}}' -'Solaroids: Prologue': + - "{{Game data/config|Windows|{{p|game}}\\UDKGame\\Config\\UDKSystemSettings.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\UDKGame\\Saves\\}}" +"Solaroids: Prologue": pageId: 60119 steam: 602080 Solarpower: @@ -148366,25 +144380,23 @@ Solas 128: pageId: 184686 steam: 1257850 templates: - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\AmicableAnimal\SOLAS 128}}' + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\AmicableAnimal\\SOLAS 128}}" Solas and the White Winter: pageId: 89640 steam: 813590 -'Solasta: Crown of the Magister': +"Solasta: Crown of the Magister": gog: 2035493674 gogSide: - - 1202735427 - - 1833217038 - - 1633155096 - - 1783075991 - - 1468845014 - - 1437401972 - - 1437401972 - 1151974417 - - 1991455750 + - 1202735427 - 1373567597 - 1437401972 + - 1468845014 + - 1633155096 - 1735910522 + - 1783075991 + - 1833217038 + - 1991455750 pageId: 142355 steam: 1096530 steamSide: @@ -148398,10 +144410,8 @@ Solas and the White Winter: - 2100430 - 2100431 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\Tactical Adventures\Solasta\UserPreferences.xml}}' - - >- - {{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Tactical Adventures\Solasta\Saves{{note|note=Previous - location was ''\Save Files'' instead of ''\Saves''}}}} + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Tactical Adventures\\Solasta\\UserPreferences.xml}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Tactical Adventures\\Solasta\\Saves{{note|note=Previous location was ''\\Save Files'' instead of ''\\Saves''}}}}" Soldat: pageId: 113020 steam: 638490 @@ -148410,7 +144420,7 @@ Soldier Boyz: Soldier Killer: pageId: 67197 steam: 675160 -'Soldier Sortie: VR Agent 006': +"Soldier Sortie: VR Agent 006": pageId: 53556 steam: 552300 Soldier of Failure: @@ -148419,29 +144429,29 @@ Soldier of Failure: Soldier of Failure 2: pageId: 73915 steam: 729170 -'Soldier of Failure: Operation Zombie': +"Soldier of Failure: Operation Zombie": pageId: 76065 steam: 748760 Soldier of Fortune: gog: 1828104558 pageId: 4293 templates: - - '{{Game data/config|Windows|{{p|game}}\user\config.cfg}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.loki/sof/config.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\user\save}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.loki/sof/save}}' -'Soldier of Fortune II: Double Helix': + - "{{Game data/config|Windows|{{p|game}}\\user\\config.cfg}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.loki/sof/config.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\user\\save}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.loki/sof/save}}" +"Soldier of Fortune II: Double Helix": gog: 1228964594 pageId: 6653 templates: - - '{{Game data/config|Windows|{{p|game}}\base\}}' - - '{{Game data/saves|Windows|{{p|game}}\base\save}}' -'Soldier of Fortune: Payback': + - "{{Game data/config|Windows|{{p|game}}\\base\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\base\\save}}" +"Soldier of Fortune: Payback": gog: 1125796684 pageId: 31897 steam: 7980 templates: - - '{{Game data/config|Windows|{{p|game}}\Save\profile.dat|{{p|game}}\Config\key_binding.txt}}' + - "{{Game data/config|Windows|{{p|game}}\\Save\\profile.dat|{{p|game}}\\Config\\key_binding.txt}}" Soldiers Lost Forever (1914-1918): pageId: 99510 steam: 508630 @@ -148454,13 +144464,13 @@ Soldiers of Heaven VR: Soldiers of the Universe: pageId: 63610 steam: 640050 -'Soldiers: Heroes of World War II': +"Soldiers: Heroes of World War II": gog: 1207658664 pageId: 3707 steam: 11480 templates: - - '{{Game data/config|Windows|{{p|game}}\profiles\\settings}}' - - '{{Game data/saves|Windows|{{p|game}}\profiles\\save\}}' + - "{{Game data/config|Windows|{{p|game}}\\profiles\\\\settings}}" + - "{{Game data/saves|Windows|{{p|game}}\\profiles\\\\save\\}}" Sole: pageId: 69082 steam: 696280 @@ -148473,13 +144483,13 @@ Solenars Edge Rebirth: Solid Aether: pageId: 109596 steam: 910730 -'Solid State Pinball: Tristan': +"Solid State Pinball: Tristan": pageId: 171264 Solitaire: pageId: 26913 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Microsoft Games\Solitaire\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\Saved Games\Microsoft Games\Solitaire\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Microsoft Games\\Solitaire\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Saved Games\\Microsoft Games\\Solitaire\\}}" Solitaire (Sanuk Games): pageId: 72599 steam: 539300 @@ -148523,13 +144533,13 @@ Solitaire Knights: Solitaire Legend of the Pirates: pageId: 144889 steam: 1128440 -Solitaire Match 2 Cards. Valentine's Day: +"Solitaire Match 2 Cards. Valentine's Day": pageId: 144783 steam: 1128430 -'Solitaire Mystery: Four Seasons': +"Solitaire Mystery: Four Seasons": pageId: 123444 steam: 971880 -'Solitaire Mystery: Stolen Power': +"Solitaire Mystery: Stolen Power": pageId: 67988 steam: 679820 Solitaire Royale: @@ -148549,33 +144559,31 @@ Solitaire Victorian Picnic: Solitaire. Dragon Light: pageId: 124378 steam: 990400 -'Solitaire: Learn Chemistry!': +"Solitaire: Learn Chemistry!": pageId: 127227 steam: 1007440 -'Solitaire: Learn the Flags!': +"Solitaire: Learn the Flags!": pageId: 123363 steam: 962250 Solitairica: pageId: 37778 steam: 463980 templates: - - >- - {{Game - data/config|Windows|{{P|localappdata}}\Solitairica\Saved\Config\WindowsNoEditor\|{{P|localappdata}}\Solitairica\Saved\SaveGames\Settings.sav}} - - '{{Game data/saves|Windows|{{P|localappdata}}\Solitairica\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\Solitairica\\Saved\\Config\\WindowsNoEditor\\|{{P|localappdata}}\\Solitairica\\Saved\\SaveGames\\Settings.sav}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Solitairica\\Saved\\SaveGames\\}}" Solitude - Escape of Head: pageId: 96445 steam: 865760 Solitune: pageId: 61331 steam: 615670 -'Solmec: Among Stars': +"Solmec: Among Stars": pageId: 67623 steam: 682000 -'Solmec: Colony Adrift': +"Solmec: Colony Adrift": pageId: 66699 steam: 682010 -'Solmec: Hollow Planet': +"Solmec: Hollow Planet": pageId: 66697 steam: 678880 Solo: @@ -148583,9 +144591,9 @@ Solo: pageId: 88882 steam: 591750 templates: - - '{{Game data/config|Windows|{{P|userprofile}}\AppData\LocalLow\Team Gotham\Solo\OptionsData.solo}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Team Gotham\Solo\SaveData\}}' -'Solo Flight: 2nd Edition': + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Team Gotham\\Solo\\OptionsData.solo}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Team Gotham\\Solo\\SaveData\\}}" +"Solo Flight: 2nd Edition": gog: 1471633117 pageId: 177422 renamedFrom: @@ -148602,24 +144610,24 @@ Solstice: pageId: 44014 steam: 317280 templates: - - '{{Game data/config|Windows|{{P|appdata}}\Solstice\settings.sav}}' - - '{{Game data/saves|Windows|{{P|appdata}}\Solstice\}}' + - "{{Game data/config|Windows|{{P|appdata}}\\Solstice\\settings.sav}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\Solstice\\}}" Solstice (2019): pageId: 137440 steam: 1063870 Solstice Arena: pageId: 86888 steam: 240380 -'Solstice Chronicles: MIA': +"Solstice Chronicles: MIA": pageId: 52960 steam: 528160 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\TwinStick\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\TwinStick\Saved\SaveGames\}}' -'Soma Spirits: Rebalance': + - "{{Game data/config|Windows|{{P|localappdata}}\\TwinStick\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\TwinStick\\Saved\\SaveGames\\}}" +"Soma Spirits: Rebalance": pageId: 60464 steam: 587310 -'Sombrero: Spaghetti Western Mayhem': +"Sombrero: Spaghetti Western Mayhem": pageId: 52249 steam: 472690 Some Distant Memory: @@ -148631,7 +144639,7 @@ Some some convenience store 썸썸 편의점: Someday: pageId: 141837 steam: 1117620 -Someday You'll Return: +"Someday You'll Return": gog: 2107162474 pageId: 95170 steam: 840370 @@ -148642,17 +144650,17 @@ Somerville: pageId: 182452 steam: 1671410 templates: - - '{{Game data/saves|Microsoft Store|{{P|localappdata}}\Packages\JUMPSHIP.23864955D3E5D_hmzc8fdgbvf8c\SystemAppData}}' + - "{{Game data/saves|Microsoft Store|{{P|localappdata}}\\Packages\\JUMPSHIP.23864955D3E5D_hmzc8fdgbvf8c\\SystemAppData}}" Something Ate My Alien: pageId: 132846 steam: 1047870 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Something Ate My Alien\GameData}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.local/share/Something-Ate-My-Alien\GameData}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Something-Ate-My-Alien\GameData}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Something Ate My Alien\GameSaves}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.local/share/Something-Ate-My-Alien\GameSaves}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Something-Ate-My-Alien\GameSaves}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Something Ate My Alien\\GameData}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.local/share/Something-Ate-My-Alien\\GameData}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Something-Ate-My-Alien\\GameData}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Something Ate My Alien\\GameSaves}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.local/share/Something-Ate-My-Alien\\GameSaves}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Something-Ate-My-Alien\\GameSaves}}" Something To Do With Love: pageId: 67663 steam: 603730 @@ -148665,10 +144673,10 @@ Something is wrong/有毛病: Sometimes Always Monsters: pageId: 39311 steam: 441440 -'Sometimes to Deal with the Difficulty of Being Alive, I Need to Believe There Is a Possibility That Life Is Not Real.': +"Sometimes to Deal with the Difficulty of Being Alive, I Need to Believe There Is a Possibility That Life Is Not Real.": pageId: 135200 steam: 789380 -'Sometimes: Success Requires Sacrifice': +"Sometimes: Success Requires Sacrifice": pageId: 48575 steam: 351470 Somewhere: @@ -148713,7 +144721,7 @@ Sonder. Episode ONE: Song Animals: pageId: 130207 steam: 1036200 -'Song Beater: Quite My Tempo!': +"Song Beater: Quite My Tempo!": pageId: 140538 steam: 1077600 Song Samurai: @@ -148724,34 +144732,34 @@ Song of Farca: pageId: 167947 steam: 1435670 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Wooden Monkeys\Song of Farca}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/com.WoodenMonkeys.SongofFarca}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Wooden Monkeys/Song of Farca}}' + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Wooden Monkeys\\Song of Farca}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/com.WoodenMonkeys.SongofFarca}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Wooden Monkeys/Song of Farca}}" Song of Horror: gog: 1957403324 pageId: 144865 steam: 1096570 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\SongOfHorror\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\SongOfHorror\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\SongOfHorror\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\SongOfHorror\\Saved\\SaveGames\\}}" Song of Iron: pageId: 171104 steam: 1258220 templates: - - '{{Game data/config|Windows|$USER/AppData/Local/SONG_of_IRON/Saved/Config/}}' - - '{{Game data/saves|Windows|$USER/AppData/Local/SONG_of_IRON/Saved/SaveGames/}}' + - "{{Game data/config|Windows|$USER/AppData/Local/SONG_of_IRON/Saved/Config/}}" + - "{{Game data/saves|Windows|$USER/AppData/Local/SONG_of_IRON/Saved/SaveGames/}}" Song of Memories: pageId: 78210 steam: 752570 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Song of Memories}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Song of Memories}}' -'Song of Nunu: A League of Legends Story': + - "{{Game data/config|Windows|{{p|appdata}}\\Song of Memories}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Song of Memories}}" +"Song of Nunu: A League of Legends Story": gog: 1487912011 pageId: 173058 steam: 1333200 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Local\SongOfNunu\Saved\Config\Windows}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Local\\SongOfNunu\\Saved\\Config\\Windows}}" Song of a Spirit: pageId: 140958 steam: 1111130 @@ -148759,14 +144767,14 @@ Song of the Deep: pageId: 42438 steam: 460700 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Insomniac Games\Song of the Deep\}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Insomniac Games\Song of the Deep\*.sav}}' -'Song of the Myrne: What Lies Beneath': + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Insomniac Games\\Song of the Deep\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Insomniac Games\\Song of the Deep\\*.sav}}" +"Song of the Myrne: What Lies Beneath": pageId: 48967 steam: 333330 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Beldarak Games\Song of the Myrne - What Lies Beneath\}}' - - '{{Game data/saves|Windows|{{P|game}}\Saves\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Beldarak Games\\Song of the Myrne - What Lies Beneath\\}}" + - "{{Game data/saves|Windows|{{P|game}}\\Saves\\}}" Song of the Prairie: pageId: 187526 steam: 1350840 @@ -148775,9 +144783,7 @@ SongPop 2: SongPop Party: pageId: 168541 templates: - - >- - {{Game data/saves|OS X|{{p|osxhome}}/Library/Containers/SongPop - Party/Data/Library/Preferences/com.gameloft.SongPopParty.plist}} + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Containers/SongPop Party/Data/Library/Preferences/com.gameloft.SongPopParty.plist}}" Songbird Symphony: pageId: 109568 steam: 909820 @@ -148794,10 +144800,10 @@ Songs for a Hero: - A Lenda do Herói steam: 389170 templates: - - '{{Game data/config|Windows|{{P|appdata}}\SongsForAHero\}}' - - '{{Game data/saves|Windows|{{P|appdata}}\SongsForAHero\}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/SongsForAHero/}}' -'Songs of Araiah: Re-Mastered Edition': + - "{{Game data/config|Windows|{{P|appdata}}\\SongsForAHero\\}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\SongsForAHero\\}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/SongsForAHero/}}" +"Songs of Araiah: Re-Mastered Edition": pageId: 73219 steam: 567690 Songs of Conquest: @@ -148805,7 +144811,7 @@ Songs of Conquest: pageId: 169295 steam: 867210 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Lavapotion\SongsOfConquest\Savegames}}' + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Lavapotion\\SongsOfConquest\\Savegames}}" Songs of Skydale: pageId: 139324 steam: 1062480 @@ -148814,19 +144820,19 @@ Songs of Syx: pageId: 151591 steam: 1162750 templates: - - '{{Game data/config|Linux|{{P|xdgdatahome}}/songsofsyx/settings/}}' - - '{{Game data/saves|Windows|{{P|appdata}}\songsofsyx\saves\}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/songsofsyx/saves/}}' + - "{{Game data/config|Linux|{{P|xdgdatahome}}/songsofsyx/settings/}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\songsofsyx\\saves\\}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/songsofsyx/saves/}}" Songs2See: pageId: 40507 steam: 248270 -'SoniComi: Communication with Sonico': +"SoniComi: Communication with Sonico": gog: 2116517153 pageId: 35110 steam: 444140 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Nitroplus\SONICOMI_en\}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Nitroplus\SONICOMI_en\}}' + - "{{Game data/config|Windows|{{p|appdata}}\\Nitroplus\\SONICOMI_en\\}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Nitroplus\\SONICOMI_en\\}}" Sonia and the Hypnotic City: gog: 1925294051 pageId: 164481 @@ -148836,110 +144842,98 @@ Sonic & All-Stars Racing Transformed: steam: 212480 steamSide: - 229660 - - 271030 - 264600 + - 271030 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\SART\}}' - - '{{Game data/saves|Windows|{{p|steam}}\userdata\{{p|uid}}\212480\remote\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\SART\\}}" + - "{{Game data/saves|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\212480\\remote\\}}" Sonic & Knuckles Collection: pageId: 6646 templates: - - '{{Game data/config|Windows|{{p|hklm}}\Software\Sonic3K\}}' - - '{{Game data/saves|Windows|{{p|game}}\SONIC3K.BIN}}' + - "{{Game data/config|Windows|{{p|hklm}}\\Software\\Sonic3K\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\SONIC3K.BIN}}" Sonic & Sega All-Stars Racing: pageId: 4809 steam: 34190 templates: - - '{{Game data/config|Windows|{{p|game}}\settings.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\ssr_save.bin}}' + - "{{Game data/config|Windows|{{p|game}}\\settings.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\ssr_save.bin}}" Sonic 3 & Knuckles: pageId: 8573 steam: 71162 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\SEGA Mega Drive - Classics\setup.dat|{{p|userprofile\Documents}}\SEGA Genesis Classics\setup.dat}} - - >- - {{Game data/saves|Windows|{{p|userprofile\Documents}}\SEGA Mega Drive - Classics\0042|{{p|userprofile\Documents}}\SEGA Genesis Classics\0042}} - - '{{Game data/saves|OS X|{{P|linuxhome}}/SEGA Mega Drive Classics/user_{{P|uid}}/Sonic 3 & Knuckles}}' - - '{{Game data/saves|Linux|{{P|linuxhome}}/SEGA Mega Drive Classics/user_{{P|uid}}/Sonic 3 & Knuckles}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\SEGA Mega Drive Classics\\setup.dat|{{p|userprofile\\Documents}}\\SEGA Genesis Classics\\setup.dat}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\SEGA Mega Drive Classics\\0042|{{p|userprofile\\Documents}}\\SEGA Genesis Classics\\0042}}" + - "{{Game data/saves|OS X|{{P|linuxhome}}/SEGA Mega Drive Classics/user_{{P|uid}}/Sonic 3 & Knuckles}}" + - "{{Game data/saves|Linux|{{P|linuxhome}}/SEGA Mega Drive Classics/user_{{P|uid}}/Sonic 3 & Knuckles}}" Sonic 3D Blast: pageId: 21712 templates: - - '{{Game data/config|Windows|{{p|game}}\PCSONIC.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\pcsonic.sav}}' + - "{{Game data/config|Windows|{{p|game}}\\PCSONIC.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\pcsonic.sav}}" Sonic 3D Blast (Genesis): pageId: 8567 renamedFrom: - Sonic 3D Blast (2010) steam: 34278 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\SEGA Mega Drive - Classics\setup.dat|{{p|userprofile\Documents}}\SEGA Genesis Classics\setup.dat}} - - >- - {{Game data/saves|Windows|{{p|userprofile\Documents}}\SEGA Mega Drive - Classics\0008|{{p|userprofile\Documents}}\SEGA Genesis Classics\0008}} + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\SEGA Mega Drive Classics\\setup.dat|{{p|userprofile\\Documents}}\\SEGA Genesis Classics\\setup.dat}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\SEGA Mega Drive Classics\\0008|{{p|userprofile\\Documents}}\\SEGA Genesis Classics\\0008}}" Sonic Adventure 2: pageId: 5774 steam: 213610 steamSide: - 217900 templates: - - '{{Game data/config|Windows|{{p|game}}\Config\Keyboard.cfg|{{p|game}}\Config\UserConfig.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\resource\gd_PC\SAVEDATA\}}' + - "{{Game data/config|Windows|{{p|game}}\\Config\\Keyboard.cfg|{{p|game}}\\Config\\UserConfig.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\resource\\gd_PC\\SAVEDATA\\}}" Sonic Adventure DX: pageId: 21737 templates: - - '{{Game data/config|Windows|{{p|game}}\sonicDX.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\savedata}}' + - "{{Game data/config|Windows|{{p|game}}\\sonicDX.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\savedata}}" Sonic Adventure DX (2011): pageId: 4375 steam: 71250 steamSide: - 14082 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\SEGA\Sonic Adventure - DX\config.ini|{{p|userprofile\Documents}}\SEGA\Dreamcast Collection\Sonic Adventure DX\config.ini}} - - >- - {{Game data/saves|Windows|{{p|userprofile\Documents}}\SEGA\Sonic Adventure - DX\SAVEDATA|{{p|userprofile\Documents}}\SEGA\Dreamcast Collection\Sonic Adventure DX\SAVEDATA}} + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\SEGA\\Sonic Adventure DX\\config.ini|{{p|userprofile\\Documents}}\\SEGA\\Dreamcast Collection\\Sonic Adventure DX\\config.ini}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\SEGA\\Sonic Adventure DX\\SAVEDATA|{{p|userprofile\\Documents}}\\SEGA\\Dreamcast Collection\\Sonic Adventure DX\\SAVEDATA}}" Sonic Adventure DX (Steam): pageId: 20005 steam: 71250 steamSide: - 14082 templates: - - '{{Game data/config|Windows|{{p|game}}\input_config.xml|{{p|game}}\keycap_config.xml|{{p|game}}\system_config.xml}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\SEGA\Sonic Adventure DX\SAVEDATA}}' + - "{{Game data/config|Windows|{{p|game}}\\input_config.xml|{{p|game}}\\keycap_config.xml|{{p|game}}\\system_config.xml}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\SEGA\\Sonic Adventure DX\\SAVEDATA}}" Sonic CD: pageId: 72163 renamedFrom: - Sonic CD (1996) templates: - - '{{Game data/config|Windows|{{p|hklm}}\Software\SonicCD\}}' - - '{{Game data/saves|Windows|{{p|game}}\S_SCORE.DAT}}' + - "{{Game data/config|Windows|{{p|hklm}}\\Software\\SonicCD\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\S_SCORE.DAT}}" Sonic CD (2012): pageId: 8796 steam: 200940 templates: - - '{{Game data/config|Windows|{{p|steam}}\userdata\{{p|uid}}\200940\}}' - - '{{Game data/saves|Windows|{{p|steam}}\userdata\{{p|uid}}\200940\}}' -'Sonic Colors: Ultimate': + - "{{Game data/config|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\200940\\}}" + - "{{Game data/saves|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\200940\\}}" +"Sonic Colors: Ultimate": pageId: 168652 steam: 2055290 templates: - - '{{Game data/config|Epic Games Launcher|{{p|appdata}}\Sonic Colors\app_userdata\Sonic Colors- Ultimate\savedData}}' - - '{{Game data/config|Steam|{{p|appdata}}\Sega\SonicColorsUltimate\Steam\{{p|uid}}\savedData}}' - - '{{Game data/saves|Epic Games Launcher|{{p|appdata}}\Sonic Colors\app_userdata\Sonic Colors- Ultimate\savedData}}' - - '{{Game data/saves|Steam|{{p|appdata}}\Sega\SonicColorsUltimate\Steam\{{p|uid}}\savedData}}' + - "{{Game data/config|Epic Games Launcher|{{p|appdata}}\\Sonic Colors\\app_userdata\\Sonic Colors- Ultimate\\savedData}}" + - "{{Game data/config|Steam|{{p|appdata}}\\Sega\\SonicColorsUltimate\\Steam\\{{p|uid}}\\savedData}}" + - "{{Game data/saves|Epic Games Launcher|{{p|appdata}}\\Sonic Colors\\app_userdata\\Sonic Colors- Ultimate\\savedData}}" + - "{{Game data/saves|Steam|{{p|appdata}}\\Sega\\SonicColorsUltimate\\Steam\\{{p|uid}}\\savedData}}" Sonic Dash: pageId: 62420 templates: - - '{{Game data/config|Microsoft Store|{{p|localappdata}}\Packages\SegaNetworksInc.56538047DFC80_as33fap47kd3c}}' - - '{{Game data/saves|Microsoft Store|{{p|localappdata}}\Packages\SegaNetworksInc.56538047DFC80_as33fap47kd3c}}' + - "{{Game data/config|Microsoft Store|{{p|localappdata}}\\Packages\\SegaNetworksInc.56538047DFC80_as33fap47kd3c}}" + - "{{Game data/saves|Microsoft Store|{{p|localappdata}}\\Packages\\SegaNetworksInc.56538047DFC80_as33fap47kd3c}}" Sonic Dream Team: pageId: 191149 Sonic Forces: @@ -148947,36 +144941,32 @@ Sonic Forces: steam: 637100 steamSide: - 715850 - - 715900 - - 715870 - - 715910 - 715860 + - 715870 + - 715900 + - 715910 templates: - - '{{Game data/config|Windows|{{P|game}}\savedata\GraphicsConfig.txt}}' - - '{{Game data/saves|Windows|{{P|game}}\savedata\{{P|uid}}\savedata.xml}}' + - "{{Game data/config|Windows|{{P|game}}\\savedata\\GraphicsConfig.txt}}" + - "{{Game data/saves|Windows|{{P|game}}\\savedata\\{{P|uid}}\\savedata.xml}}" Sonic Frontiers: pageId: 173573 steam: 1237320 templates: - - >- - {{Game data/config|Windows|{{p|appdata}}\SEGA\SonicFrontiers\steam\x64\screen_setting.xml | - {{p|appdata}}\SEGA\SonicFrontiers\steam\{{p|uid}}\option\optiondata}} - - >- - {{Game data/saves|Windows|{{p|appdata}}\SEGA\SonicFrontiers\steam\{{p|uid}}\{{note|Autosaves and manual saves are - split to respective folders.}}}} + - "{{Game data/config|Windows|{{p|appdata}}\\SEGA\\SonicFrontiers\\steam\\x64\\screen_setting.xml | {{p|appdata}}\\SEGA\\SonicFrontiers\\steam\\{{p|uid}}\\option\\optiondata}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\SEGA\\SonicFrontiers\\steam\\{{p|uid}}\\{{note|Autosaves and manual saves are split to respective folders.}}}}" Sonic Generations: pageId: 2802 steam: 71340 steamSide: - 200590 templates: - - '{{Game data/config|Windows|{{p|game}}\*.cfg}}' - - '{{Game data/saves|Windows|{{p|steam}}\userdata\{{p|uid}}\71340\}}' + - "{{Game data/config|Windows|{{p|game}}\\*.cfg}}" + - "{{Game data/saves|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\71340\\}}" Sonic Heroes: pageId: 19831 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Sega\SONICHEROES\sonic_h.ini}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Sega\SONICHEROES\SONICHEROES_*}}' + - "{{Game data/config|Windows|{{p|appdata}}\\Sega\\SONICHEROES\\sonic_h.ini}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Sega\\SONICHEROES\\SONICHEROES_*}}" Sonic Hunter VR: pageId: 53884 steam: 555130 @@ -148986,35 +144976,35 @@ Sonic Lost World: steamSide: - 377210 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\SOFTWARE\SEGA\SLW\}}' - - '{{Game data/saves|Windows|{{P|game}}\{{P|uid}}.sdat}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\SOFTWARE\\SEGA\\SLW\\}}" + - "{{Game data/saves|Windows|{{P|game}}\\{{P|uid}}.sdat}}" Sonic Mania: pageId: 57370 steam: 584400 steamSide: - 845640 templates: - - '{{Game data/config|Epic Games Launcher|{{p|localappdata}}\Sega\SonicMania\Settings.ini}}' - - '{{Game data/config|Steam|{{p|game}}\Settings.ini}}' - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\584400\remote\}}' + - "{{Game data/config|Epic Games Launcher|{{p|localappdata}}\\Sega\\SonicMania\\Settings.ini}}" + - "{{Game data/config|Steam|{{p|game}}\\Settings.ini}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\584400\\remote\\}}" Sonic Mega Collection Plus: pageId: 72161 templates: - - '{{Game data/config|Windows|{{p|appdata}}\SEGA\MegaCollectionPlus\SETTING.INI}}' - - '{{Game data/saves|Windows|{{p|appdata}}\SEGA\MegaCollectionPlus\SAVEDATA}}' + - "{{Game data/config|Windows|{{p|appdata}}\\SEGA\\MegaCollectionPlus\\SETTING.INI}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\SEGA\\MegaCollectionPlus\\SAVEDATA}}" Sonic Nexus: pageId: 177182 Sonic Origins: pageId: 177168 steam: 1794960 templates: - - '{{Game data/config|Steam|{{p|appdata}}\Sega\SonicOrigins\steam\x64\screen_setting.xml}}' - - '{{Game data/saves|Epic Games Launcher|{{p|appdata}}\Sega\SonicOrigins\epic\{{p|uid}}\game\data.dat}}' - - '{{Game data/saves|Steam|{{p|appdata}}\Sega\SonicOrigins\steam\{{p|uid}}\game\data.dat}}' + - "{{Game data/config|Steam|{{p|appdata}}\\Sega\\SonicOrigins\\steam\\x64\\screen_setting.xml}}" + - "{{Game data/saves|Epic Games Launcher|{{p|appdata}}\\Sega\\SonicOrigins\\epic\\{{p|uid}}\\game\\data.dat}}" + - "{{Game data/saves|Steam|{{p|appdata}}\\Sega\\SonicOrigins\\steam\\{{p|uid}}\\game\\data.dat}}" Sonic P-06: pageId: 175664 templates: - - '{{Game data/saves|Windows|{{P|game}}\SaveFiles}}' + - "{{Game data/saves|Windows|{{P|game}}\\SaveFiles}}" Sonic R: pageId: 25000 renamedFrom: @@ -149022,99 +145012,84 @@ Sonic R: - Sonic R - Sonic R (1998) templates: - - '{{Game data/config|Windows|{{p|game}}\sonicr.inf}}' + - "{{Game data/config|Windows|{{p|game}}\\sonicr.inf}}" Sonic R (2004): pageId: 76705 templates: - - '{{Game data/config|Windows|{{p|game}}\sonicr.inf|{{p|game}}\keys.bin|{{p|game}}\joystick.inf}}' - - '{{Game data/saves|Windows|{{p|game}}\save\|{{p|game}}\ghost\|{{p|game}}\bin\demos\}}' + - "{{Game data/config|Windows|{{p|game}}\\sonicr.inf|{{p|game}}\\keys.bin|{{p|game}}\\joystick.inf}}" + - "{{Game data/saves|Windows|{{p|game}}\\save\\|{{p|game}}\\ghost\\|{{p|game}}\\bin\\demos\\}}" Sonic Racing: pageId: 148163 Sonic Riders: pageId: 57527 templates: - - '{{Game data/config|Windows|{{p|game}}\Save\Config.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\Save\Game Data*\save.dat}}' + - "{{Game data/config|Windows|{{p|game}}\\Save\\Config.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\Save\\Game Data*\\save.dat}}" Sonic Robo Blast 2: pageId: 169752 templates: - - '{{Game data/config|Windows|{{p|game}}\config.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\\gamedata.dat}}' + - "{{Game data/config|Windows|{{p|game}}\\config.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\\\gamedata.dat}}" Sonic Robo Blast 2 Kart: pageId: 171307 templates: - - '{{Game data/config|Windows|Sonic Robo Blast 2 Kart/kartconfig.cfg}}' - - '{{Game data/saves|Windows|Sonic Robo Blast 2 Kart/kartdata.dat}}' + - "{{Game data/config|Windows|Sonic Robo Blast 2 Kart/kartconfig.cfg}}" + - "{{Game data/saves|Windows|Sonic Robo Blast 2 Kart/kartdata.dat}}" Sonic Spinball: pageId: 8549 steam: 34313 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\SEGA Mega Drive - Classics\setup.dat|{{p|userprofile\Documents}}\SEGA Genesis Classics\setup.dat}} - - >- - {{Game data/saves|Windows|{{p|userprofile\Documents}}\SEGA Mega Drive - Classics\0021|{{p|userprofile\Documents}}\SEGA Genesis Classics\0021}} + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\SEGA Mega Drive Classics\\setup.dat|{{p|userprofile\\Documents}}\\SEGA Genesis Classics\\setup.dat}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\SEGA Mega Drive Classics\\0021|{{p|userprofile\\Documents}}\\SEGA Genesis Classics\\0021}}" Sonic Superstars: pageId: 187781 steam: 2022670 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\sega co. ltd\SonicSuperstars\}}' - - >- - {{Game data/saves|Steam|{{p|appdata}}\SEGA\SonicSuperstars\Steam\{{p|uid}}\SonicSuperstarsStoryData.bin | - {{p|appdata}}\SEGA\SonicSuperstars\Steam\{{p|uid}}\SonicSuperstarsSystemData.bin | - {{p|appdata}}\SEGA\SonicSuperstars\Steam\{{p|uid}}\SonicSuperstarsTimeAttackData_*.bin}} + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\sega co. ltd\\SonicSuperstars\\}}" + - "{{Game data/saves|Steam|{{p|appdata}}\\SEGA\\SonicSuperstars\\Steam\\{{p|uid}}\\SonicSuperstarsStoryData.bin | {{p|appdata}}\\SEGA\\SonicSuperstars\\Steam\\{{p|uid}}\\SonicSuperstarsSystemData.bin | {{p|appdata}}\\SEGA\\SonicSuperstars\\Steam\\{{p|uid}}\\SonicSuperstarsTimeAttackData_*.bin}}" Sonic the Hedgehog: pageId: 8547 steam: 71113 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\SEGA Mega Drive - Classics\setup.dat|{{p|userprofile\Documents}}\SEGA Genesis Classics\setup.dat}} - - >- - {{Game data/saves|Windows|{{p|userprofile\Documents}}\SEGA Mega Drive - Classics\0031|{{p|userprofile\Documents}}\SEGA Genesis Classics\0031}} + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\SEGA Mega Drive Classics\\setup.dat|{{p|userprofile\\Documents}}\\SEGA Genesis Classics\\setup.dat}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\SEGA Mega Drive Classics\\0031|{{p|userprofile\\Documents}}\\SEGA Genesis Classics\\0031}}" Sonic the Hedgehog (Mobile Decompilation): pageId: 171822 templates: - - '{{Game data/config|Windows|{{p|game}}\settings.ini|{{p|game}}\mods\modconfig.ini}}' - - '{{Game data/config|Linux|{{p|xdgconfighome}}/RSDKv4/settings.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\SData.bin|{{p|game}}\UData.bin}}' - - '{{Game data/saves|Linux|{{p|xdgconfighome}}/RSDKv4/SData.bin|{{p|xdgconfighome}}/RSDKv4/UData.bin}}' + - "{{Game data/config|Windows|{{p|game}}\\settings.ini|{{p|game}}\\mods\\modconfig.ini}}" + - "{{Game data/config|Linux|{{p|xdgconfighome}}/RSDKv4/settings.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\SData.bin|{{p|game}}\\UData.bin}}" + - "{{Game data/saves|Linux|{{p|xdgconfighome}}/RSDKv4/SData.bin|{{p|xdgconfighome}}/RSDKv4/UData.bin}}" Sonic the Hedgehog 2: pageId: 8551 steam: 71163 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\SEGA Mega Drive - Classics\setup.dat|{{p|userprofile\Documents}}\SEGA Genesis Classics\setup.dat}} - - >- - {{Game data/saves|Windows|{{p|userprofile\Documents}}\SEGA Mega Drive - Classics\0041|{{p|userprofile\Documents}}\SEGA Genesis Classics\0041}} + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\SEGA Mega Drive Classics\\setup.dat|{{p|userprofile\\Documents}}\\SEGA Genesis Classics\\setup.dat}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\SEGA Mega Drive Classics\\0041|{{p|userprofile\\Documents}}\\SEGA Genesis Classics\\0041}}" Sonic the Hedgehog 2 (Mobile Decompilation): pageId: 171823 templates: - - '{{Game data/config|Windows|{{p|game}}\settings.ini|{{p|game}}\mods\modconfig.ini}}' - - '{{Game data/config|Linux|{{p|xdgconfighome}}/RSDKv4/settings.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\SData.bin|{{p|game}}\UData.bin}}' - - '{{Game data/saves|Linux|{{p|xdgconfighome}}/RSDKv4/SData.bin|{{p|xdgconfighome}}/RSDKv4/UData.bin}}' -'Sonic the Hedgehog 4: Episode I': + - "{{Game data/config|Windows|{{p|game}}\\settings.ini|{{p|game}}\\mods\\modconfig.ini}}" + - "{{Game data/config|Linux|{{p|xdgconfighome}}/RSDKv4/settings.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\SData.bin|{{p|game}}\\UData.bin}}" + - "{{Game data/saves|Linux|{{p|xdgconfighome}}/RSDKv4/SData.bin|{{p|xdgconfighome}}/RSDKv4/UData.bin}}" +"Sonic the Hedgehog 4: Episode I": pageId: 10336 steam: 202530 templates: - - '{{Game data/config|Windows|{{p|game}}\main.conf}}' - - '{{Game data/saves|Windows|{{p|game}}\Sonic_vis_save.dat|{{p|game}}\data.txt}}' -'Sonic the Hedgehog 4: Episode II': + - "{{Game data/config|Windows|{{p|game}}\\main.conf}}" + - "{{Game data/saves|Windows|{{p|game}}\\Sonic_vis_save.dat|{{p|game}}\\data.txt}}" +"Sonic the Hedgehog 4: Episode II": pageId: 2905 steam: 203650 templates: - - '{{Game data/config|Windows|{{p|game}}\Config\}}' - - '{{Game data/saves|Windows|{{p|game}}\Sonic_save.dat}}' -Sonic's Schoolhouse: + - "{{Game data/config|Windows|{{p|game}}\\Config\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\Sonic_save.dat}}" +"Sonic's Schoolhouse": pageId: 152293 templates: - - '{{Game data/config|Windows|{{P|windir}}\SONICSH.INI}}' - - '{{Game data/saves|Windows|{{P|windir}}\SONICSH.INI}}' + - "{{Game data/config|Windows|{{P|windir}}\\SONICSH.INI}}" + - "{{Game data/saves|Windows|{{P|windir}}\\SONICSH.INI}}" Sonny: pageId: 60922 steam: 586750 @@ -149132,24 +145107,24 @@ Sons of the Forest: pageId: 165847 steam: 1326470 templates: - - '{{Game data/config|Windows|{{p|userprofile\appdata\locallow}}\Endnight\SonsOfTheForest\SonsGameSettings.cfg}}' - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\Endnight\SonsOfTheForest\Saves}}' -'Sonya: The Great Adventure': + - "{{Game data/config|Windows|{{p|userprofile\\appdata\\locallow}}\\Endnight\\SonsOfTheForest\\SonsGameSettings.cfg}}" + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\Endnight\\SonsOfTheForest\\Saves}}" +"Sonya: The Great Adventure": pageId: 60454 steam: 558780 templates: - - '{{Game data/config|Windows|{{P|appdata}}\Sonya\}}' - - '{{Game data/saves|Windows|{{P|appdata}}\Sonya\}}' + - "{{Game data/config|Windows|{{P|appdata}}\\Sonya\\}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\Sonya\\}}" Sophica - Temples Of Mystery: pageId: 127439 steam: 1017600 -Sophie's Curse: +"Sophie's Curse": pageId: 37727 steam: 446380 -Sophie's Dice: +"Sophie's Dice": pageId: 138900 steam: 1067350 -Sophie's Guardian: +"Sophie's Guardian": pageId: 52209 steam: 530830 Sophont: @@ -149162,31 +145137,29 @@ Sora: pageId: 31204 steam: 390730 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Fruitbat Factory\Sora\game.cfg}}' - - >- - {{Game data/saves|Windows|{{p|userprofile\Documents}}\Fruitbat - Factory\Sora\game.sys|{{p|userprofile\Documents}}\Fruitbat Factory\Sora\game.rkg}} + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Fruitbat Factory\\Sora\\game.cfg}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Fruitbat Factory\\Sora\\game.sys|{{p|userprofile\\Documents}}\\Fruitbat Factory\\Sora\\game.rkg}}" Sorcerer King: gog: 1445609115 pageId: 34298 steam: 241990 templates: - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\SorcererKing\}}' -'Sorcerer King: Rivals': + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\SorcererKing\\}}" +"Sorcerer King: Rivals": gog: 1439647354 pageId: 38951 steam: 496730 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\My Games\SorcererKingRivals\Prefs.ini}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\My Games\SorcererKingRivals\Saves\}}' + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\My Games\\SorcererKingRivals\\Prefs.ini}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\My Games\\SorcererKingRivals\\Saves\\}}" Sorcerer Lord: gog: 2018345699 pageId: 149438 steam: 1150670 -Sorcerer's Dream: +"Sorcerer's Dream": pageId: 64258 steam: 656220 -Sorcerer's Path: +"Sorcerer's Path": pageId: 87267 steam: 776410 Sorcerian: @@ -149197,14 +145170,14 @@ Sorcery Is for Saps: Sorcery Jokers All Ages Version: pageId: 78641 steam: 703730 -'Sorcery Saga: Curse of the Great Curry God': +"Sorcery Saga: Curse of the Great Curry God": pageId: 96155 steam: 836760 steamSide: - 844240 templates: - - '{{Game data/config|Windows|{{P|game}}\SorcerySaga.ini}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Ghostlight Ltd\Sorcery Saga\}}' + - "{{Game data/config|Windows|{{P|game}}\\SorcerySaga.ini}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Ghostlight Ltd\\Sorcery Saga\\}}" Sorcery! Part 3: pageId: 43738 steam: 445040 @@ -149215,25 +145188,25 @@ Sorcery! Parts 1 and 2: pageId: 44722 steam: 411000 templates: - - '{{Game data/saves|Windows|{{p|localappdata}}\inkle\Sorcery}}' -'Sordwin: The Evertree Saga': + - "{{Game data/saves|Windows|{{p|localappdata}}\\inkle\\Sorcery}}" +"Sordwin: The Evertree Saga": pageId: 128338 steam: 1029130 Sore: pageId: 83161 steam: 690060 -'Sorgina: A Tale of Witches': +"Sorgina: A Tale of Witches": pageId: 62213 steam: 627420 Sorry!: pageId: 7476 -'Sorry, James': +"Sorry, James": pageId: 70695 steam: 659190 -Sort 'Em: +"Sort 'Em": pageId: 58618 steam: 594360 -'Sort Battle: Dungeon': +"Sort Battle: Dungeon": pageId: 141365 steam: 1118870 Sort the Cube: @@ -149248,16 +145221,16 @@ Sos i pie sos 2 kycb edition: SosSurvival: pageId: 53568 steam: 528970 -'Sougetsu Ninja: Kikyou': +"Sougetsu Ninja: Kikyou": pageId: 139017 steam: 1091040 Soul Axiom: pageId: 33978 steam: 279900 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\SOFTWARE\Wales Interactive\SoulAxiom\}}' - - '{{Game data/config|Steam|{{p|steam}}\userdata\{{p|uid}}\279900\remote\OptionsData}}' - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\279900\remote\GameData}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\Wales Interactive\\SoulAxiom\\}}" + - "{{Game data/config|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\279900\\remote\\OptionsData}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\279900\\remote\\GameData}}" Soul Eater: pageId: 72818 steam: 720150 @@ -149265,7 +145238,7 @@ Soul Gambler: pageId: 38287 steam: 313020 templates: - - '{{Game data/saves|Windows|{{P|localappdata}}\Soul Gambler\Local Storage\}}' + - "{{Game data/saves|Windows|{{P|localappdata}}\\Soul Gambler\\Local Storage\\}}" Soul Grabber: pageId: 80863 steam: 788250 @@ -149273,12 +145246,10 @@ Soul Hackers 2: pageId: 175387 steam: 1777620 templates: - - '{{Game data/config|Windows|{{p|appdata}}\SEGA\SOULHACKERS2\Steam\{{P|uid}}\SaveData\SYSTEMDATA}}' - - '{{Game data/config|Microsoft Store|{{p|appdata}}\SEGA\SOULHACKERS2\Microsoft\SaveData\SYSTEM3DATA}}' - - '{{Game data/saves|Windows|{{p|appdata}}\SEGA\SOULHACKERS2\Steam\{{P|uid}}\SaveData}}' - - >- - {{Game data/saves|Microsoft - Store|{{P|localappdata}}\Packages\SEGAofAmericaInc.ScarletPen_s751p9cej88mt\SystemAppData\wgs}} + - "{{Game data/config|Windows|{{p|appdata}}\\SEGA\\SOULHACKERS2\\Steam\\{{P|uid}}\\SaveData\\SYSTEMDATA}}" + - "{{Game data/config|Microsoft Store|{{p|appdata}}\\SEGA\\SOULHACKERS2\\Microsoft\\SaveData\\SYSTEM3DATA}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\SEGA\\SOULHACKERS2\\Steam\\{{P|uid}}\\SaveData}}" + - "{{Game data/saves|Microsoft Store|{{P|localappdata}}\\Packages\\SEGAofAmericaInc.ScarletPen_s751p9cej88mt\\SystemAppData\\wgs}}" Soul Harvest: pageId: 62409 steam: 425260 @@ -149289,9 +145260,9 @@ Soul King: pageId: 191236 steam: 1930310 templates: - - '{{Game data/saves|Windows|{{p|localappdata}}\soulking_source\sav0\*.dat}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/soulking/*.dat}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/SavesDir/*.sav}}' + - "{{Game data/saves|Windows|{{p|localappdata}}\\soulking_source\\sav0\\*.dat}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/soulking/*.dat}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/SavesDir/*.sav}}" Soul Locus: pageId: 48048 steam: 349190 @@ -149301,7 +145272,7 @@ Soul Nomad & the World Eaters: Soul Reaper: pageId: 150111 steam: 1163660 -'Soul Reaper: Unreap Commander': +"Soul Reaper: Unreap Commander": pageId: 92630 steam: 775920 Soul Rebellion: @@ -149311,7 +145282,7 @@ Soul Saber 2: pageId: 57127 steam: 581230 templates: - - '{{Game data/saves|Windows|{{p|game}}\save}}' + - "{{Game data/saves|Windows|{{p|game}}\\save}}" Soul Saga: gog: 1792376179 pageId: 36608 @@ -149331,15 +145302,15 @@ Soul Smith of the Kingdom: Soul Survival: pageId: 77213 steam: 745620 -'Soul Tech: Millennium': +"Soul Tech: Millennium": pageId: 130430 steam: 967950 Soul Valley: pageId: 129559 steam: 1041780 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\soulvalley\Saved\Config}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\soulvalley\Saved\SaveGames}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\soulvalley\\Saved\\Config}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\soulvalley\\Saved\\SaveGames}}" Soul at Stake: pageId: 98204 steam: 690530 @@ -149352,7 +145323,7 @@ Soul of the Devil: Soul room: pageId: 125161 steam: 999360 -'Soul-Ivy: C0': +"Soul-Ivy: C0": pageId: 114294 steam: 938960 SoulCraft: @@ -149384,39 +145355,39 @@ Soulblight: pageId: 40373 steam: 530930 templates: - - '{{Game data/saves|Windows|{{P|localappdata}}\Soulblight_Saves}}' + - "{{Game data/saves|Windows|{{P|localappdata}}\\Soulblight_Saves}}" Soulbringer: gog: 1207659003 pageId: 21198 steam: 283310 templates: - - '{{Game data/config|Windows|{{p|game}}\soul.opt|{{p|appdata}}\GOG\SoulBringer\LauncherConfig.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\data\save\}}' + - "{{Game data/config|Windows|{{p|game}}\\soul.opt|{{p|appdata}}\\GOG\\SoulBringer\\LauncherConfig.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\data\\save\\}}" Soulcalibur VI: pageId: 89926 steam: 544750 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\SoulcaliburVI\Saved\Config\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\SoulcaliburVI\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\SoulcaliburVI\\Saved\\Config\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\SoulcaliburVI\\Saved\\SaveGames\\}}" Soulcaster: pageId: 9203 steam: 460970 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\SavedGames\Soulcaster\Soulcaster\AllPlayers}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Soulcaster/}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/Soulcaster/}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Soulcaster/}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/Soulcaster/}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\SavedGames\\Soulcaster\\Soulcaster\\AllPlayers}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Soulcaster/}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/Soulcaster/}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Soulcaster/}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/Soulcaster/}}" Soulcaster II: pageId: 9202 steam: 460970 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\SavedGames\Soulcaster2\Soulcaster2\AllPlayers}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Soulcaster2/}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/Soulcaster2/}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\SavedGames\Soulcaster2\Soulcaster2\AllPlayers}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Soulcaster2/}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/Soulcaster2/}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\SavedGames\\Soulcaster2\\Soulcaster2\\AllPlayers}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Soulcaster2/}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/Soulcaster2/}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\SavedGames\\Soulcaster2\\Soulcaster2\\AllPlayers}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Soulcaster2/}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/Soulcaster2/}}" Souldiers: gog: 1572819346 gogSide: @@ -149428,17 +145399,17 @@ Souldiers: - 1988760 - 1988770 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\SOFTWARE\RetroForgeGames\Souldiers}}' - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\RetroForgeGames\Souldiers}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\SOFTWARE\\RetroForgeGames\\Souldiers}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\RetroForgeGames\\Souldiers}}" Soulfire: pageId: 90370 steam: 822800 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\AyDream\Soulfire\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\AyDream\\Soulfire\\}}" SoulfulLand: pageId: 153826 steam: 1180840 -'Soulless: Ray of Hope': +"Soulless: Ray of Hope": gog: 1899751691 pageId: 51575 steam: 528300 @@ -149466,8 +145437,8 @@ Soulstice: steamSide: - 2015300 templates: - - '{{Game data/config|Windows|{{P|game}}\Soulstice\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{P|game}}\Soulstice\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{P|game}}\\Soulstice\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{P|game}}\\Soulstice\\Saved\\SaveGames\\}}" Sound Balling: pageId: 66033 steam: 674610 @@ -149491,8 +145462,8 @@ Sound of Drop - fall into poison -: pageId: 33638 steam: 383460 templates: - - '{{Game data/config|Windows|{{p|game}}\renpy\config.py}}' - - '{{Game data/saves|Windows|{{P|appdata}}\renpy\Sound_of_Drop_FIP\|{{p|game}}\game\saves\}}' + - "{{Game data/config|Windows|{{p|game}}\\renpy\\config.py}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\renpy\\Sound_of_Drop_FIP\\|{{p|game}}\\game\\saves\\}}" SoundLites: pageId: 64266 steam: 662470 @@ -149509,23 +145480,21 @@ Soundfall: pageId: 172762 steam: 1608700 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\BeatShooter\Saved\Config\WindowsNoEditor\GameUserSettings.ini}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\BeatShooter\Saved\SaveGames\{{p|uid}}\Autosave.sav}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\BeatShooter\\Saved\\Config\\WindowsNoEditor\\GameUserSettings.ini}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\BeatShooter\\Saved\\SaveGames\\{{p|uid}}\\Autosave.sav}}" Soundodger+: pageId: 20368 steam: 247140 templates: - - '{{Game data/config|Windows|{{p|appdata}}\com.onemrbean.soundodgerplus\Local Store\}}' - - >- - {{Game data/saves|Windows|{{p|appdata}}\com.onemrbean.soundodgerplus\Local - Store\|{{p|userprofile\Documents}}\soundodger\}} + - "{{Game data/config|Windows|{{p|appdata}}\\com.onemrbean.soundodgerplus\\Local Store\\}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\com.onemrbean.soundodgerplus\\Local Store\\|{{p|userprofile\\Documents}}\\soundodger\\}}" Sounds of Her Love: pageId: 59201 steam: 603880 Sounds of Music: pageId: 77205 steam: 752880 -'Sounds of Talent: Kpop Adventure': +"Sounds of Talent: Kpop Adventure": pageId: 132312 steam: 1046560 Sounds of Verity: @@ -149537,11 +145506,11 @@ Soundscape: Soundscape VR: pageId: 62604 steam: 636930 -Souno's Curse: +"Souno's Curse": gog: 2091609572 pageId: 173994 steam: 1711700 -'Soup: The Game': +"Soup: The Game": pageId: 44072 steam: 436480 Source of Madness: @@ -149552,44 +145521,38 @@ Source of Madness: - 1438080 - 1613140 templates: - - >- - {{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Carry Castle\Source of - Madness\saveslots\{{p|uid}}\saveslot_*.sav}} -'Source: Beginning': + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Carry Castle\\Source of Madness\\saveslots\\{{p|uid}}\\saveslot_*.sav}}" +"Source: Beginning": pageId: 120897 steam: 936890 South Park: pageId: 124925 templates: - - '{{Game data/saves|Windows|{{p|game}}\savegame.008}}' + - "{{Game data/saves|Windows|{{p|game}}\\savegame.008}}" South Park Rally: pageId: 74365 templates: - - '{{Game data/config|Windows|{{p|game}}\debug.log}}' - - '{{Game data/saves|Windows|{{p|game}}\sprally2.dat}}' -'South Park: Chef''s Luv Shack': + - "{{Game data/config|Windows|{{p|game}}\\debug.log}}" + - "{{Game data/saves|Windows|{{p|game}}\\sprally2.dat}}" +"South Park: Chef's Luv Shack": pageId: 145857 -'South Park: Snow Day!': +"South Park: Snow Day!": pageId: 190819 steam: 1214650 -'South Park: The Fractured but Whole': +"South Park: The Fractured but Whole": pageId: 25846 renamedFrom: - - 'South Park: The Fractured But Whole' + - "South Park: The Fractured But Whole" steam: 488790 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\SouthPark - The Fractured but Whole\}}' - - >- - {{Game data/saves|Windows|%PROGRAMFILES(X86)%\Ubisoft\Ubisoft Game - Launcher\savegames\{{p|uid}}\3088\}} -'South Park: The Stick of Truth': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\SouthPark - The Fractured but Whole\\}}" + - "{{Game data/saves|Windows|%PROGRAMFILES(X86)%\\Ubisoft\\Ubisoft Game Launcher\\savegames\\{{p|uid}}\\3088\\}}" +"South Park: The Stick of Truth": pageId: 4533 steam: 213670 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\South Park - The Stick of Truth\|{{P|game}}\}}' - - >- - {{Game data/saves|Windows|%PROGRAMFILES(X86)%\Ubisoft\Ubisoft Game - Launcher\savegames\{{p|uid}}\3584\}} + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\South Park - The Stick of Truth\\|{{P|game}}\\}}" + - "{{Game data/saves|Windows|%PROGRAMFILES(X86)%\\Ubisoft\\Ubisoft Game Launcher\\savegames\\{{p|uid}}\\3584\\}}" South of Midnight: pageId: 187998 steam: 1934570 @@ -149600,10 +145563,10 @@ South of the Circle: Southbound: pageId: 139135 steam: 1084730 -Sovereign's Will: +"Sovereign's Will": pageId: 156999 steam: 1047560 -'Sovereignty: Crown of Kings': +"Sovereignty: Crown of Kings": pageId: 48260 steam: 312430 Soviet Bear Uni Adventure: @@ -149618,7 +145581,7 @@ Soviet Jump Game: Soviet Luna Park VR: pageId: 91995 steam: 811310 -'Soviet Monsters: Ekranoplans': +"Soviet Monsters: Ekranoplans": pageId: 42358 steam: 372160 Soviet Souls: @@ -149633,10 +145596,10 @@ Sołtys: gog: 2075976504 pageId: 75940 templates: - - '{{Game data/config|DOS|{{p|game}}\CGE.CFG}}' - - '{{Game data/config|Windows|{{p|game}}\soltys.ini}}' - - '{{Game data/saves|DOS|{{p|game}}\*.SVG}}' - - '{{Game data/saves|Windows|{{p|game}}\soltys.00*}}' + - "{{Game data/config|DOS|{{p|game}}\\CGE.CFG}}" + - "{{Game data/config|Windows|{{p|game}}\\soltys.ini}}" + - "{{Game data/saves|DOS|{{p|game}}\\*.SVG}}" + - "{{Game data/saves|Windows|{{p|game}}\\soltys.00*}}" Sp!ng: pageId: 167081 Spa Mania: @@ -149672,7 +145635,7 @@ Space Armor 2: Space Ashes: pageId: 114328 steam: 939540 -'Space Asteroid Shooter: Retro Achievement Hunter': +"Space Asteroid Shooter: Retro Achievement Hunter": pageId: 69012 steam: 699460 Space Badminton VR: @@ -149687,7 +145650,7 @@ Space Battle Core: Space Battle VR: pageId: 125500 steam: 982700 -'Space Battle: Humanity': +"Space Battle: Humanity": pageId: 66047 steam: 661970 Space Battlecruiser: @@ -149697,7 +145660,7 @@ Space Beast Terror Fright: pageId: 37371 steam: 357330 templates: - - '{{Game data/saves|Windows|{{p|appdata}}\nornware\sbtf\}}' + - "{{Game data/saves|Windows|{{p|appdata}}\\nornware\\sbtf\\}}" Space Beret: pageId: 52159 steam: 547960 @@ -149736,10 +145699,10 @@ Space Bunnies Must Die!: Space Candy: pageId: 149979 steam: 1176190 -'Space Captain McCallery - Episode 1: Crash Landing': +"Space Captain McCallery - Episode 1: Crash Landing": pageId: 94058 steam: 852900 -'Space Captain McCallery - Episode 2: Pilgrims in Purple Moss': +"Space Captain McCallery - Episode 2: Pilgrims in Purple Moss": pageId: 124345 steam: 985620 Space Carrot: @@ -149751,22 +145714,20 @@ Space Cat: Space Challenge: pageId: 93361 steam: 836010 -'Space Channel 5 VR: Kinda Funky News Flash': +"Space Channel 5 VR: Kinda Funky News Flash": pageId: 170294 steam: 879140 -'Space Channel 5: Part 2': +"Space Channel 5: Part 2": pageId: 17088 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\SEGA\Space Channel 5 Part 2\config.ini}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\SEGA\Space Channel 5 Part 2\SC5PART2_DAT}}' -'Space Channel 5: Part 2 (Steam)': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\SEGA\\Space Channel 5 Part 2\\config.ini}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\SEGA\\Space Channel 5 Part 2\\SC5PART2_DAT}}" +"Space Channel 5: Part 2 (Steam)": pageId: 19935 steam: 71260 templates: - - '{{Game data/config|Windows|{{p|game}}\*.xml}}' - - >- - {{Game data/saves|Windows|{{p|userprofile\Documents}}\SEGA\Dreamcast Collection\Space Channel 5 Part - 2\SC5PART2_DAT}} + - "{{Game data/config|Windows|{{p|game}}\\*.xml}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\SEGA\\Dreamcast Collection\\Space Channel 5 Part 2\\SC5PART2_DAT}}" Space Chaos: pageId: 74449 steam: 723060 @@ -149775,11 +145736,11 @@ Space Chimps: Space Chip: pageId: 93814 steam: 790760 -'Space Clash: The Last Frontier': +"Space Clash: The Last Frontier": pageId: 182675 templates: - - '{{Game data/config|Windows|{{p|game}}}}' - - '{{Game data/saves|Windows|{{p|game}}}}' + - "{{Game data/config|Windows|{{p|game}}}}" + - "{{Game data/saves|Windows|{{p|game}}}}" Space Climber: pageId: 152889 steam: 1193520 @@ -149796,8 +145757,8 @@ Space Colony: - Space Colony HD steam: 297920 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Space Colony\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Space Colony\users}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Space Colony\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Space Colony\\users}}" Space Commander 9: pageId: 72031 steam: 693020 @@ -149821,10 +145782,10 @@ Space Crew: pageId: 164168 steam: 1176710 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Runner Duck\Space Crew\}}' - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\Runner Duck\Space Crew\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Runner Duck/Space Crew}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Runner Duck/Space Crew}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Runner Duck\\Space Crew\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\Runner Duck\\Space Crew\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Runner Duck/Space Crew}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Runner Duck/Space Crew}}" Space Cruise: pageId: 125649 steam: 992880 @@ -149884,24 +145845,24 @@ Space Empires IV: pageId: 16087 steam: 1610 templates: - - '{{Game data/config|Windows|{{p|game}}\data}}' - - '{{Game data/saves|Windows|{{p|game}}\savegame}}' + - "{{Game data/config|Windows|{{p|game}}\\data}}" + - "{{Game data/saves|Windows|{{p|game}}\\savegame}}" Space Empires V: gog: 1311393248 pageId: 16089 steam: 1690 templates: - - '{{Game data/config|Windows|{{p|game}}\data}}' - - '{{Game data/saves|Windows|{{p|game}}\savegame}}' -'Space Empires: Starfury': + - "{{Game data/config|Windows|{{p|game}}\\data}}" + - "{{Game data/saves|Windows|{{p|game}}\\savegame}}" +"Space Empires: Starfury": pageId: 169331 steam: 1380260 Space Engineers: pageId: 11300 steam: 244850 templates: - - '{{Game data/config|Windows|{{p|appdata}}\SpaceEngineers\SpaceEngineers.cfg}}' - - '{{Game data/saves|Windows|{{p|appdata}}\SpaceEngineers\Saves}}' + - "{{Game data/config|Windows|{{p|appdata}}\\SpaceEngineers\\SpaceEngineers.cfg}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\SpaceEngineers\\Saves}}" Space Epic Untitled - Season 1: pageId: 75441 steam: 613800 @@ -149914,7 +145875,7 @@ Space Expand: Space Explorers: pageId: 70309 steam: 694170 -'Space Explorers: Reload': +"Space Explorers: Reload": pageId: 103903 steam: 896320 Space Farm: @@ -149924,10 +145885,8 @@ Space Farmers: pageId: 32660 steam: 271570 templates: - - >- - {{Game data/config|Windows|{{p|hkcu}}\SOFTWARE\Bumpkin Brothers\Space - Farmers|{{p|userprofile}}\AppData\LocalLow\Bumpkin Brothers\Space Farmers\usersettings.xml}} - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Bumpkin Brothers\Space Farmers\usersettings.xml}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\Bumpkin Brothers\\Space Farmers|{{p|userprofile}}\\AppData\\LocalLow\\Bumpkin Brothers\\Space Farmers\\usersettings.xml}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Bumpkin Brothers\\Space Farmers\\usersettings.xml}}" Space Fighter: pageId: 68956 steam: 691540 @@ -149944,7 +145903,7 @@ Space Food Truck: pageId: 43955 steam: 397390 templates: - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\One Man Left Studios\Space Food Truck}}' + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\One Man Left Studios\\Space Food Truck}}" Space Force: pageId: 95363 steam: 864010 @@ -149966,7 +145925,7 @@ Space Girls: Space Gladiator: pageId: 121831 steam: 965110 -'Space Gladiators: Escaping Tartarus': +"Space Gladiators: Escaping Tartarus": pageId: 148659 steam: 1144910 Space God: @@ -149989,8 +145948,8 @@ Space Hack: pageId: 18903 steam: 315260 templates: - - '{{Game data/config|Windows|{{p|game}}\save\config\|{{p|hklm}}\SOFTWARE\{{p|wow64}}\Rebelmind\Space Hack\}}' - - '{{Game data/saves|Windows|{{p|game}}\save\}}' + - "{{Game data/config|Windows|{{p|game}}\\save\\config\\|{{p|hklm}}\\SOFTWARE\\{{p|wow64}}\\Rebelmind\\Space Hack\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\save\\}}" Space Hamster in Turmoil: pageId: 103053 steam: 888150 @@ -150000,12 +145959,8 @@ Space Harrier II: pageId: 30858 steam: 34279 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\SEGA Mega Drive - Classics\setup.dat|{{p|userprofile\Documents}}\SEGA Genesis Classics\setup.dat}} - - >- - {{Game data/saves|Windows|{{p|userprofile\Documents}}\SEGA Mega Drive - Classics\0009\|{{p|userprofile\Documents}}\SEGA Genesis Classics\0009\}} + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\SEGA Mega Drive Classics\\setup.dat|{{p|userprofile\\Documents}}\\SEGA Genesis Classics\\setup.dat}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\SEGA Mega Drive Classics\\0009\\|{{p|userprofile\\Documents}}\\SEGA Genesis Classics\\0009\\}}" Space Haste 2001: pageId: 30416 steam: 2226940 @@ -150014,9 +145969,9 @@ Space Haven: pageId: 126436 steam: 979110 templates: - - '{{Game data/config|Windows|{{P|game}}\settings.xml}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/SpaceHaven/settings.xml}}' - - '{{Game data/saves|Windows|{{P|game}}\savegames}}' + - "{{Game data/config|Windows|{{P|game}}\\settings.xml}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/SpaceHaven/settings.xml}}" + - "{{Game data/saves|Windows|{{P|game}}\\savegames}}" Space Hero Line: pageId: 63835 steam: 655120 @@ -150033,7 +145988,7 @@ Space Hole: pageId: 37010 steam: 477310 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\SOFTWARE\SamAtlas\SpaceHole\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\SOFTWARE\\SamAtlas\\SpaceHole\\}}" Space Hole 2018: pageId: 96101 steam: 818410 @@ -150044,9 +145999,9 @@ Space Hulk (2013): pageId: 9169 steam: 242570 templates: - - '{{Game data/saves|Windows|{{P|appdata}}\Full Control\SpaceHulk\}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/Full Control/SpaceHulk/}}' -'Space Hulk: Ascension': + - "{{Game data/saves|Windows|{{P|appdata}}\\Full Control\\SpaceHulk\\}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/Full Control/SpaceHulk/}}" +"Space Hulk: Ascension": pageId: 49349 renamedFrom: - Space Hulk Ascension @@ -150057,38 +146012,38 @@ Space Hulk (2013): - 347981 - 355900 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Full Control\Space Hulk Ascension\}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Full Control\SpaceHulkAscension\}}' -'Space Hulk: Deathwing': + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Full Control\\Space Hulk Ascension\\}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Full Control\\SpaceHulkAscension\\}}" +"Space Hulk: Deathwing": pageId: 38783 steam: 298900 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\SpaceHulkGame\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\SpaceHulkGame\Saved\SaveGames\}}' -'Space Hulk: Deathwing - Enhanced Edition': + - "{{Game data/config|Windows|{{P|localappdata}}\\SpaceHulkGame\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\SpaceHulkGame\\Saved\\SaveGames\\}}" +"Space Hulk: Deathwing - Enhanced Edition": gog: 1896039326 pageId: 95121 steam: 816090 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\SpaceHulkEnhanced\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\SpaceHulkEnhanced\Saved\SaveGames\}}' -'Space Hulk: Tactics': + - "{{Game data/config|Windows|{{P|localappdata}}\\SpaceHulkEnhanced\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\SpaceHulkEnhanced\\Saved\\SaveGames\\}}" +"Space Hulk: Tactics": pageId: 95887 steam: 492230 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\SpaceHulk2\Saved\Config}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\SpaceHulk2\Saved\SaveGames}}' -'Space Hulk: Vengeance of the Blood Angels': + - "{{Game data/config|Windows|{{P|localappdata}}\\SpaceHulk2\\Saved\\Config}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\SpaceHulk2\\Saved\\SaveGames}}" +"Space Hulk: Vengeance of the Blood Angels": pageId: 180625 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Electronic Arts\Key Game\Space Hulk - VOTBA\1.4}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Electronic Arts\\Key Game\\Space Hulk - VOTBA\\1.4}}" Space Hunt: pageId: 97908 steam: 831670 Space Hurricane Storm: pageId: 94798 steam: 864260 -'Space Hurricane Storm: 2 Edition': +"Space Hurricane Storm: 2 Edition": pageId: 102587 steam: 904350 Space Impact Glitch: @@ -150108,8 +146063,8 @@ Space Invaders Extreme: pageId: 80611 steam: 744050 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\TAITO Corporation.\SPACE INVADERS EXTREME\}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\TAITO Corporation_\SPACE INVADERS EXTREME\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\TAITO Corporation.\\SPACE INVADERS EXTREME\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\TAITO Corporation_\\SPACE INVADERS EXTREME\\}}" Space Jam: pageId: 90815 Space Jammers: @@ -150142,7 +146097,7 @@ Space Lagat: Space Launch Engineer: pageId: 87145 steam: 785680 -'Space Legends: At the Edge of the Universe': +"Space Legends: At the Edge of the Universe": pageId: 49257 steam: 328880 Space Leprechaun: @@ -150174,18 +146129,18 @@ Space Mechanic Simulator: Space Mega Force Man: pageId: 178327 steam: 1232260 -'Space Mercenary Shooter : Episode 1': +"Space Mercenary Shooter : Episode 1": pageId: 140830 steam: 1096630 -'Space Merchants: Arena': +"Space Merchants: Arena": pageId: 52808 steam: 548080 Space Mercs: pageId: 139356 steam: 1088600 templates: - - '{{Game data/config|Linux|{{p|xdgconfighome}}/unity3d/BeardedGiantGames/SpaceMercs/prefs}}' - - '{{Game data/saves|Linux|{{p|xdgconfighome}}/unity3d/BeardedGiantGames/SpaceMercs/*.data}}' + - "{{Game data/config|Linux|{{p|xdgconfighome}}/unity3d/BeardedGiantGames/SpaceMercs/prefs}}" + - "{{Game data/saves|Linux|{{p|xdgconfighome}}/unity3d/BeardedGiantGames/SpaceMercs/*.data}}" Space Mining: pageId: 81625 steam: 790040 @@ -150196,11 +146151,11 @@ Space Moth DX: pageId: 44858 steam: 425340 templates: - - '{{Game data/config|Windows|{{P|appdata}}\Space_Moth_DX\space_moth.ini}}' + - "{{Game data/config|Windows|{{P|appdata}}\\Space_Moth_DX\\space_moth.ini}}" Space Mouse 2: pageId: 168230 steam: 1282890 -'Space Mouse: 35th Anniversary Edition': +"Space Mouse: 35th Anniversary Edition": pageId: 52914 steam: 546330 Space Needle VR: @@ -150230,28 +146185,28 @@ Space Panic VR: Space Pilgrim Academy: pageId: 68198 steam: 694370 -'Space Pilgrim Academy: Reunion': +"Space Pilgrim Academy: Reunion": pageId: 130259 steam: 1020590 -'Space Pilgrim Academy: Year 2': +"Space Pilgrim Academy: Year 2": pageId: 91150 steam: 831120 -'Space Pilgrim Academy: Year 3': +"Space Pilgrim Academy: Year 3": pageId: 114130 steam: 936650 -'Space Pilgrim Episode I: Alpha Centauri': +"Space Pilgrim Episode I: Alpha Centauri": pageId: 37941 steam: 429470 templates: - - '{{Game data/config|Windows|{{p|game}}\Game.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\Save{{code|XX}}.rvdata2}}' -'Space Pilgrim Episode II: Epsilon Indi': + - "{{Game data/config|Windows|{{p|game}}\\Game.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\Save{{code|XX}}.rvdata2}}" +"Space Pilgrim Episode II: Epsilon Indi": pageId: 38371 steam: 431710 -'Space Pilgrim Episode III: Delta Pavonis': +"Space Pilgrim Episode III: Delta Pavonis": pageId: 44687 steam: 439250 -'Space Pilgrim Episode IV: Sol': +"Space Pilgrim Episode IV: Sol": pageId: 37758 steam: 446640 Space Pirate Amai: @@ -150265,10 +146220,10 @@ Space Pirates and Zombies: pageId: 2068 steam: 107200 templates: - - '{{Game data/config|Windows|{{p|appdata}}\MinMaxGames\SpacePiratesAndZombies\}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/SpacePiratesAndZombies/}}' - - '{{Game data/saves|Windows|{{p|appdata}}\MinMaxGames\SpacePiratesAndZombies\}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/SpacePiratesAndZombies/}}' + - "{{Game data/config|Windows|{{p|appdata}}\\MinMaxGames\\SpacePiratesAndZombies\\}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/SpacePiratesAndZombies/}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\MinMaxGames\\SpacePiratesAndZombies\\}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/SpacePiratesAndZombies/}}" Space Pirates and Zombies 2: gog: 2129289196 pageId: 43027 @@ -150276,64 +146231,64 @@ Space Pirates and Zombies 2: steamSide: - 738780 templates: - - '{{Game data/config|Windows|{{P|userprofile}}\AppData\LocalLow\MinMax Games\SPAZ 2\Options\Options.opt}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/MinMax Games/SPAZ 2/Cloud/}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\MinMax Games\SPAZ 2\Cloud}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/MinMax Games/SPAZ 2/Cloud/}}' + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\MinMax Games\\SPAZ 2\\Options\\Options.opt}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/MinMax Games/SPAZ 2/Cloud/}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\MinMax Games\\SPAZ 2\\Cloud}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/MinMax Games/SPAZ 2/Cloud/}}" Space Punks: pageId: 169850 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\K1\Saved\Config\WindowsNoEditor}}' -'Space Quest 6: Roger Wilco in The Spinal Frontier': + - "{{Game data/config|Windows|{{p|localappdata}}\\K1\\Saved\\Config\\WindowsNoEditor}}" +"Space Quest 6: Roger Wilco in The Spinal Frontier": gog: 1207661463 pageId: 10797 steam: 10110 templates: - - '{{Game data/config|Windows|{{p|game}}\sq6}}' - - '{{Game data/saves|Windows|{{p|game}}\sq6\SQ6SG.***}}' -'Space Quest I: Roger Wilco in The Sarien Encounter': + - "{{Game data/config|Windows|{{p|game}}\\sq6}}" + - "{{Game data/saves|Windows|{{p|game}}\\sq6\\SQ6SG.***}}" +"Space Quest I: Roger Wilco in The Sarien Encounter": pageId: 120618 steam: 10110 -'Space Quest II: Chapter II - Vohaul''s Revenge': +"Space Quest II: Chapter II - Vohaul's Revenge": gog: 1207661423 pageId: 10786 steam: 10110 templates: - - '{{Game data/config|Windows|{{p|game}}\sq2}}' - - '{{Game data/saves|Windows|{{p|game}}\sq2}}' -'Space Quest II: Roger Wilco in Vohaul''s Revenge': + - "{{Game data/config|Windows|{{p|game}}\\sq2}}" + - "{{Game data/saves|Windows|{{p|game}}\\sq2}}" +"Space Quest II: Roger Wilco in Vohaul's Revenge": pageId: 147355 templates: - - '{{Game data/config|Windows|{{P|game}}\acsetup.cfg|{{P|game}}\sq2.cfg}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\Saved Games\Space Quest 2 VGA\}}' -'Space Quest III: The Pirates of Pestulon': + - "{{Game data/config|Windows|{{P|game}}\\acsetup.cfg|{{P|game}}\\sq2.cfg}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\Saved Games\\Space Quest 2 VGA\\}}" +"Space Quest III: The Pirates of Pestulon": gog: 1207661433 pageId: 10788 steam: 10110 templates: - - '{{Game data/config|Windows|{{p|game}}\sq3}}' - - '{{Game data/saves|Windows|{{p|game}}\sq3}}' -'Space Quest IV: Roger Wilco and the Time Rippers': + - "{{Game data/config|Windows|{{p|game}}\\sq3}}" + - "{{Game data/saves|Windows|{{p|game}}\\sq3}}" +"Space Quest IV: Roger Wilco and the Time Rippers": gog: 1207661443 pageId: 10791 steam: 10110 templates: - - '{{Game data/config|Windows|{{p|game}}\sq4}}' - - '{{Game data/saves|Windows|{{p|game}}\sq4\SQ4SG.***}}' -'Space Quest V: Roger Wilco - The Next Mutation': + - "{{Game data/config|Windows|{{p|game}}\\sq4}}" + - "{{Game data/saves|Windows|{{p|game}}\\sq4\\SQ4SG.***}}" +"Space Quest V: Roger Wilco - The Next Mutation": gog: 1207661453 pageId: 10794 steam: 10110 templates: - - '{{Game data/config|Windows|{{p|game}}\sq5}}' - - '{{Game data/saves|Windows|{{p|game}}\sq5\SQ5SG.***}}' -'Space Quest: Chapter I - The Sarien Encounter': + - "{{Game data/config|Windows|{{p|game}}\\sq5}}" + - "{{Game data/saves|Windows|{{p|game}}\\sq5\\SQ5SG.***}}" +"Space Quest: Chapter I - The Sarien Encounter": gog: 1207661413 pageId: 10763 steam: 10110 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/saves|Windows|{{p|game}}\SQ1SG.***}}' + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\SQ1SG.***}}" Space Quiz: pageId: 74169 steam: 727860 @@ -150352,7 +146307,7 @@ Space Ranger ASK: Space Ranger vs. Reptiloids: pageId: 96939 steam: 876600 -'Space Ranger vs. Reptiloids: 2 Edition': +"Space Ranger vs. Reptiloids: 2 Edition": pageId: 104125 steam: 911600 Space Rangers: @@ -150360,23 +146315,23 @@ Space Rangers: pageId: 62 steam: 46320 templates: - - '{{Game data/config|Windows|{{p|game}}\cfg.txt}}' - - '{{Game data/saves|Windows|{{p|game}}\Save\}}' -'Space Rangers 2: Dominators': + - "{{Game data/config|Windows|{{p|game}}\\cfg.txt}}" + - "{{Game data/saves|Windows|{{p|game}}\\Save\\}}" +"Space Rangers 2: Dominators": gog: 1207658908 pageId: 27088 steam: 46330 templates: - - '{{Game data/config|Windows|{{P|game}}\cfg.txt}}' - - '{{Game data/saves|Windows|{{P|game}}\Save|{{p|game}}\questcomplete.dat|{{p|game}}\robotcomplete.dat}}' -'Space Rangers HD: A War Apart': + - "{{Game data/config|Windows|{{P|game}}\\cfg.txt}}" + - "{{Game data/saves|Windows|{{P|game}}\\Save|{{p|game}}\\questcomplete.dat|{{p|game}}\\robotcomplete.dat}}" +"Space Rangers HD: A War Apart": gog: 1207667113 pageId: 22117 steam: 214730 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\SpaceRangersHD\CFG.TXT}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\SpaceRangersHD\Save}}' -'Space Rangers: Quest': + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\SpaceRangersHD\\CFG.TXT}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\SpaceRangersHD\\Save}}" +"Space Rangers: Quest": gog: 2085898015 pageId: 38718 steam: 503450 @@ -150384,8 +146339,8 @@ Space Reign: pageId: 188610 steam: 1762570 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Propulsive Games\Space Reign\}}' - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Propulsive Games\Space Reign\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Propulsive Games\\Space Reign\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Propulsive Games\\Space Reign\\}}" Space Ribbon: pageId: 41789 steam: 501220 @@ -150395,7 +146350,7 @@ Space Rift: Space Rift NON-VR - Episode 1: pageId: 54953 steam: 552550 -'Space Rift: Episode 1': +"Space Rift: Episode 1": pageId: 41898 steam: 437080 Space Ripper: @@ -150412,8 +146367,8 @@ Space Robinson: pageId: 122716 steam: 953870 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Space_Robinson\steam\{{P|uid}}}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\Space_Robinson\steam\{{P|uid}}}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\Space_Robinson\\steam\\{{P|uid}}}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Space_Robinson\\steam\\{{P|uid}}}}" Space Robot Samurai Zombie Slayer: pageId: 47833 steam: 364100 @@ -150428,20 +146383,20 @@ Space Rogue: pageId: 53592 steam: 569200 templates: - - '{{Game data/saves|DOS|{{p|game}}\*.SAV}}' + - "{{Game data/saves|DOS|{{p|game}}\\*.SAV}}" Space Rogue (2016): gog: 1383775419 pageId: 40010 steam: 364300 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Red Beat LTD\Space Rogue}}' + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Red Beat LTD\\Space Rogue}}" Space Run: gog: 1207665173 pageId: 17865 steam: 275670 templates: - - '{{Game data/config|Windows|{{P|game}}\Save\LocalSettings.sav}}' - - '{{Game data/saves|Windows|{{p|game}}\Save\Player}}' + - "{{Game data/config|Windows|{{P|game}}\\Save\\LocalSettings.sav}}" + - "{{Game data/saves|Windows|{{p|game}}\\Save\\Player}}" Space Run Galaxy: pageId: 33531 steam: 355800 @@ -150473,8 +146428,8 @@ Space Siege: pageId: 26900 steam: 10530 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Space Siege\SpaceSiege.ini}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Space Siege\Save\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Space Siege\\SpaceSiege.ini}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Space Siege\\Save\\}}" Space Simulator: pageId: 74588 steam: 529060 @@ -150493,7 +146448,7 @@ Space Space: Space Station 13: pageId: 16669 templates: - - '{{Game data/saves|Windows| Saves on serves}}' + - "{{Game data/saves|Windows| Saves on serves}}" Space Station Alpha: pageId: 48565 steam: 341930 @@ -150503,7 +146458,7 @@ Space Station Continuum: Space Station Invader VR: pageId: 155949 steam: 1178480 -'Space Station Loma: Operations': +"Space Station Loma: Operations": pageId: 59454 steam: 577640 Space Struck Run: @@ -150515,7 +146470,7 @@ Space Survival: Space Survivors Shooter: pageId: 95035 steam: 704430 -'Space Tail: Every Journey Leads Home': +"Space Tail: Every Journey Leads Home": gog: 1436065482 pageId: 183201 steam: 1975660 @@ -150534,13 +146489,13 @@ Space Tower: Space Trade Fleet 1.5: pageId: 134849 steam: 1060110 -'Space Trader: Merchant Marine': +"Space Trader: Merchant Marine": gog: 1342776466 pageId: 26653 steam: 11240 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\st\st\stxp.cfg}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\st\st\stxp.cfg}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\st\\st\\stxp.cfg}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\st\\st\\stxp.cfg}}" Space Transfer: pageId: 112720 steam: 938570 @@ -150548,8 +146503,8 @@ Space Trash Scavenger: pageId: 191203 steam: 1759350 templates: - - '{{Game data/config|Windows|{{p|userprofile\appdata\locallow}}\SquarePlay\SpaceTrashScavenger\settings.json}}' - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\SquarePlay\SpaceTrashScavenger\}}' + - "{{Game data/config|Windows|{{p|userprofile\\appdata\\locallow}}\\SquarePlay\\SpaceTrashScavenger\\settings.json}}" + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\SquarePlay\\SpaceTrashScavenger\\}}" Space Travelling within the Earth-Moon System: pageId: 141344 steam: 1120780 @@ -150563,7 +146518,7 @@ Space Tyrant: pageId: 54451 steam: 562230 templates: - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\Blue Wizard\Space Tyrant\}}' + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\Blue Wizard\\Space Tyrant\\}}" Space Universe: pageId: 33751 steam: 479180 @@ -150576,7 +146531,7 @@ Space Viking Raiders VR: Space Vomit: pageId: 90216 steam: 763980 -'Space War: Infinity': +"Space War: Infinity": pageId: 136617 steam: 1086160 Space Warfare: @@ -150591,10 +146546,10 @@ Space Warp: Space Wars: pageId: 103109 steam: 892910 -'Space Wars: Darth Star': +"Space Wars: Darth Star": pageId: 78248 steam: 763770 -'Space Wars: Interstellar Empires': +"Space Wars: Interstellar Empires": pageId: 78050 steam: 574070 Space Waver: @@ -150613,7 +146568,7 @@ Space Wreck: pageId: 151209 steam: 1063540 templates: - - '{{Game data/saves|Windows|{{p|appdata}}\Space Wreck Saves\{{p|uid}}}}' + - "{{Game data/saves|Windows|{{p|appdata}}\\Space Wreck Saves\\{{p|uid}}}}" Space Xonix: pageId: 46428 steam: 382270 @@ -150630,7 +146585,7 @@ Space of Darkness: pageId: 64838 steam: 666310 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\PilotLumpa Gaming\Space of Darkness}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\PilotLumpa Gaming\\Space of Darkness}}" Space of One Drama: pageId: 94521 steam: 852610 @@ -150640,7 +146595,7 @@ Space raven quest - Tiny planet: Space zone defender: pageId: 153226 steam: 1177300 -'Space, VR!': +"Space, VR!": pageId: 42055 steam: 496080 Space-Fright: @@ -150665,12 +146620,12 @@ SpaceChem: steamSide: - 92803 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Zachtronics Industries\SpaceChem\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/.local/share/Zachtronics Industries/SpaceChem/}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/Zachtronics Industries/SpaceChem/}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Zachtronics Industries\SpaceChem\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/.local/share/Zachtronics Industries/SpaceChem/}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/Zachtronics Industries/SpaceChem/}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Zachtronics Industries\\SpaceChem\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/.local/share/Zachtronics Industries/SpaceChem/}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/Zachtronics Industries/SpaceChem/}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Zachtronics Industries\\SpaceChem\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/.local/share/Zachtronics Industries/SpaceChem/}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/Zachtronics Industries/SpaceChem/}}" SpaceCoaster VR: pageId: 75536 steam: 738290 @@ -150685,8 +146640,8 @@ SpaceEngine: pageId: 138635 steam: 314650 templates: - - '{{Game data/config|Windows|{{p|game}}\config\}}' - - '{{Game data/saves|Windows|{{p|game}}\config\}}' + - "{{Game data/config|Windows|{{p|game}}\\config\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\config\\}}" SpaceEscapeVR: pageId: 142208 steam: 1064260 @@ -150739,12 +146694,12 @@ Spacebase DF-9: pageId: 12406 steam: 246090 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\SpaceBaseDF9\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Documents/SpaceBaseDF9/}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/doublefine/spacebasedf9/}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\SpaceBaseDF9\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Documents/SpaceBaseDF9/}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/doublefine/spacebasedf9/}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\SpaceBaseDF9\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Documents/SpaceBaseDF9/}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/doublefine/spacebasedf9/}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\SpaceBaseDF9\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Documents/SpaceBaseDF9/}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/doublefine/spacebasedf9/}}" Spacebase Startopia: gog: 1869649388 gogSide: @@ -150755,12 +146710,12 @@ Spacebase Startopia: steamSide: - 1312920 templates: - - '{{Game data/config|Windows|{{P|appdata}}\Kalypso Media\Spacebase Startopia\*.cfg}}' - - '{{Game data/saves|Windows|{{P|appdata}}\Kalypso Media\Spacebase Startopia\savegames\*.sbsz}}' + - "{{Game data/config|Windows|{{P|appdata}}\\Kalypso Media\\Spacebase Startopia\\*.cfg}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\Kalypso Media\\Spacebase Startopia\\savegames\\*.sbsz}}" Spacecats with Lasers VR: pageId: 55536 steam: 565190 -'Spacecats with Lasers: The Outerspace': +"Spacecats with Lasers: The Outerspace": pageId: 62487 steam: 562310 Spacecom: @@ -150768,7 +146723,7 @@ Spacecom: pageId: 21185 steam: 263860 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\one2tribe\SPACECOM_*}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\one2tribe\\SPACECOM_*}}" Spacecraft: pageId: 67885 steam: 685020 @@ -150778,22 +146733,22 @@ Spacecraft War: Spacefarers!: pageId: 114758 steam: 947540 -'Spaceforce: Captains': +"Spaceforce: Captains": pageId: 170483 -'Spaceforce: Constellations': +"Spaceforce: Constellations": pageId: 40482 steam: 263800 -'Spaceforce: Homeworld': +"Spaceforce: Homeworld": pageId: 50644 steam: 278850 -'Spaceforce: Rogue Universe': +"Spaceforce: Rogue Universe": pageId: 47769 steam: 372480 steamSide: - 3220 templates: - - '{{Game data/config|Windows|{{p|game}}\System\Config.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\Profiles}}' + - "{{Game data/config|Windows|{{p|game}}\\System\\Config.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\Profiles}}" Spaceguard 80: pageId: 98010 steam: 676180 @@ -150803,7 +146758,7 @@ Spaceguy: Spaceguy 2: pageId: 93112 steam: 852140 -'Spaceguy: Red Space': +"Spaceguy: Red Space": pageId: 122184 steam: 976240 Spacejacked: @@ -150822,7 +146777,7 @@ Spacelords: pageId: 69008 steam: 436180 templates: - - '{{Game data/config|Steam|{{p|userprofile\Documents}}\MercurySteam\Raiders of the Broken Planet\{{p|uid}}\}}' + - "{{Game data/config|Steam|{{p|userprofile\\Documents}}\\MercurySteam\\Raiders of the Broken Planet\\{{p|uid}}\\}}" Spaceman: pageId: 150796 steam: 1180690 @@ -150839,16 +146794,14 @@ Spaceplan: pageId: 61640 steam: 616110 templates: - - >- - {{Game data/config|Windows|{{P|hkcu}}\Software\That Silly - Studio\SPACEPLAN\|{{p|userprofile}}\AppData\LocalLow\That Silly Studio\SPACEPLAN\}} - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\That Silly Studio\SPACEPLAN\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\That Silly Studio\\SPACEPLAN\\|{{p|userprofile}}\\AppData\\LocalLow\\That Silly Studio\\SPACEPLAN\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\That Silly Studio\\SPACEPLAN\\}}" Spaceport Hope: pageId: 35008 steam: 394540 templates: - - '{{Game data/config|Windows|{{p|game}}\resources\files\*.tmp}}' - - '{{Game data/saves|Windows|{{p|game}}\resources\files\sve*\}}' + - "{{Game data/config|Windows|{{p|game}}\\resources\\files\\*.tmp}}" + - "{{Game data/saves|Windows|{{p|game}}\\resources\\files\\sve*\\}}" Spacepowers: pageId: 82089 steam: 777660 @@ -150893,19 +146846,19 @@ Spaera: Spaghet: pageId: 91494 steam: 821320 -'Spakoyno: Back to the USSR 2.0': +"Spakoyno: Back to the USSR 2.0": pageId: 34942 steam: 388120 templates: - - '{{Game data/saves|Steam|{{p|game}}/game/saves/}}' -'Spandex Force: Champion Rising': + - "{{Game data/saves|Steam|{{p|game}}/game/saves/}}" +"Spandex Force: Champion Rising": pageId: 47511 steam: 380560 Spanking Runners: pageId: 66334 templates: - - '{{Game data/config|Windows|{{P|game}}\game.ini|{{P|game}}\Resource\Options.ini}}' - - '{{Game data/saves|Windows|{{P|game}}\save00.dat}}' + - "{{Game data/config|Windows|{{P|game}}\\game.ini|{{P|game}}\\Resource\\Options.ini}}" + - "{{Game data/saves|Windows|{{P|game}}\\save00.dat}}" Sparc: pageId: 76014 steam: 601770 @@ -150937,18 +146890,18 @@ Spark the Electric Jester: pageId: 60728 steam: 601810 templates: - - '{{Game data/saves|Windows|{{p|game}}\save.bin}}' + - "{{Game data/saves|Windows|{{p|game}}\\save.bin}}" Spark the Electric Jester 2: pageId: 134328 steam: 1079210 templates: - - '{{Game data/saves|Windows|{{p|hkcu}}\SOFTWARE\Feperd Games\SparkTwo}}' + - "{{Game data/saves|Windows|{{p|hkcu}}\\SOFTWARE\\Feperd Games\\SparkTwo}}" Spark the Electric Jester 3: pageId: 180609 steam: 1629530 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\SOFTWARE\Feperd Games\Spark the Electric Jester 3}}' - - '{{Game data/saves|Windows|{{p|game}}\Spark the Electric Jester 3_Data\*.save}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\Feperd Games\\Spark the Electric Jester 3}}" + - "{{Game data/saves|Windows|{{p|game}}\\Spark the Electric Jester 3_Data\\*.save}}" SparkChess: pageId: 121513 steam: 934920 @@ -150981,19 +146934,17 @@ Sparklite: pageId: 114496 steam: 943140 steamSide: - - 1191360 - 1183620 + - 1191360 templates: - - >- - {{Game data/config|Windows|{{P|userprofile}}\AppData\LocalLow\Red Blue - Games\Sparklite\Profile.save|{{P|hkcu}}\Software\Red Blue Games\Sparklite\}} - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Red Blue Games/Sparklite/Profile.save}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Red Blue Games\Sparklite\SaveSlot*.save}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Red Blue Games/Sparklite/SaveSlot*.save}}' + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Red Blue Games\\Sparklite\\Profile.save|{{P|hkcu}}\\Software\\Red Blue Games\\Sparklite\\}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Red Blue Games/Sparklite/Profile.save}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Red Blue Games\\Sparklite\\SaveSlot*.save}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Red Blue Games/Sparklite/SaveSlot*.save}}" Sparkour: pageId: 39560 steam: 386470 -Sparky's Hunt: +"Sparky's Hunt": pageId: 36193 steam: 514520 Spartaga: @@ -151047,34 +146998,32 @@ Spear of Destiny: steamSide: - 9000 templates: - - '{{Game data/config|Windows|{{p|game}}\base}}' - - '{{Game data/saves|Windows|{{p|game}}\base\SAVEGAM*.SOD}}' -Spears 'n' Spades: + - "{{Game data/config|Windows|{{p|game}}\\base}}" + - "{{Game data/saves|Windows|{{p|game}}\\base\\SAVEGAM*.SOD}}" +"Spears 'n' Spades": pageId: 66633 steam: 673980 -'Spec Ops II: Green Berets': +"Spec Ops II: Green Berets": pageId: 160706 -'Spec Ops: Rangers Lead the Way': +"Spec Ops: Rangers Lead the Way": pageId: 160705 -'Spec Ops: The Line': +"Spec Ops: The Line": gog: 1710761915 pageId: 3116 steam: 50300 steamSide: - 204980 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\SpecOps-TheLine\SRGame\Config\}}' - - >- - {{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Spec Ops The Line/GameDocuments/My - Games/SpecOps-TheLine/SRGame/Config/}} - - '{{Game data/config|Linux|{{P|xdgdatahome}}/yager/specops/GameDocuments/My Games/SpecOps-TheLine/SRGame/Config/}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\SpecOps-TheLine\SRGame\SaveData\}}' - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/50300/remote/}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\SpecOps-TheLine\\SRGame\\Config\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Spec Ops The Line/GameDocuments/My Games/SpecOps-TheLine/SRGame/Config/}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/yager/specops/GameDocuments/My Games/SpecOps-TheLine/SRGame/Config/}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\SpecOps-TheLine\\SRGame\\SaveData\\}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/50300/remote/}}" SpecNaz 2: pageId: 88954 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\specnaz\config.ini}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\specnaz\saves\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\specnaz\\config.ini}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\specnaz\\saves\\}}" Special Containment Procedure: pageId: 163698 steam: 1281950 @@ -151087,37 +147036,37 @@ Special Delivery: Special Force VR: pageId: 65684 steam: 673380 -'Special Force VR: Infinity War': +"Special Force VR: Infinity War": pageId: 141578 renamedFrom: - - 'SPECIAL FORCE VR: INFINITY WAR' + - "SPECIAL FORCE VR: INFINITY WAR" steam: 1049130 -'Special Forces: Team X': +"Special Forces: Team X": pageId: 40662 steam: 217860 templates: - - '{{Game data/config|Windows|{{P|game}}\SealTeamXGame\Config\PCConsole\Cooked}}' + - "{{Game data/config|Windows|{{P|game}}\\SealTeamXGame\\Config\\PCConsole\\Cooked}}" Special Tactics: pageId: 43382 steam: 432870 Special Warfare: pageId: 107946 steam: 919200 -'Species: Artificial Life, Real Evolution': +"Species: Artificial Life, Real Evolution": pageId: 105201 steam: 774541 Speckle: pageId: 96733 steam: 873160 -'Specnaz: Project Wolf': +"Specnaz: Project Wolf": pageId: 88977 Spectacular Sparky: gog: 1844552677 pageId: 170779 steam: 1300100 templates: - - '{{Game data/config|Windows|{{P|userprofile\appdata\locallow}}\Nicalis, Inc_\Spectacular Sparky\Player.log}}' - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Nicalis, Inc_\Spectacular Sparky\Player.log}}' + - "{{Game data/config|Windows|{{P|userprofile\\appdata\\locallow}}\\Nicalis, Inc_\\Spectacular Sparky\\Player.log}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Nicalis, Inc_\\Spectacular Sparky\\Player.log}}" Spectating Simulator The Racing: pageId: 149422 steam: 1156030 @@ -151128,8 +147077,8 @@ Spectraball: pageId: 41336 steam: 18300 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Shorebound Studios\Spectraball\}}' - - '{{Game data/saves|Windows|{{p|hkcu}}\Software\Shorebound Studios\Spectraball\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Shorebound Studios\\Spectraball\\}}" + - "{{Game data/saves|Windows|{{p|hkcu}}\\Software\\Shorebound Studios\\Spectraball\\}}" Spectre (2016): pageId: 49406 steam: 314950 @@ -151151,10 +147100,10 @@ Spectrum: Spectrum Break: pageId: 88854 steam: 765490 -Spectrum's Path: +"Spectrum's Path": pageId: 128656 steam: 1005100 -'Spectrum: First Light': +"Spectrum: First Light": pageId: 51041 steam: 346430 SpedV: @@ -151163,12 +147112,12 @@ SpedV: Speebot: pageId: 73780 steam: 731320 -'Speed 3: Grand Prix': +"Speed 3: Grand Prix": pageId: 173764 steam: 1457580 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Speed\Saved\Config\WindowsNoEditor}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Speed\Saved\SaveGames}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Speed\\Saved\\Config\\WindowsNoEditor}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Speed\\Saved\\SaveGames}}" Speed Box: pageId: 103085 steam: 886490 @@ -151177,13 +147126,13 @@ Speed Brawl: pageId: 94255 steam: 468670 templates: - - '{{Game data/config|Windows|{{P|userprofile\appdata\locallow}}\Double Stallion\SpeedBrawl}}' - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Double Stallion\SpeedBrawl}}' -'Speed Busters: American Highways': + - "{{Game data/config|Windows|{{P|userprofile\\appdata\\locallow}}\\Double Stallion\\SpeedBrawl}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Double Stallion\\SpeedBrawl}}" +"Speed Busters: American Highways": gog: 1207658976 pageId: 21180 templates: - - '{{Game data/config|Windows|{{p|game}}\SPB.ini|
{{p|game}}\UBI.ini}}' + - "{{Game data/config|Windows|{{p|game}}\\SPB.ini|
{{p|game}}\\UBI.ini}}" Speed Car Fighter: pageId: 92831 steam: 833800 @@ -151193,7 +147142,7 @@ Speed Crew: steamSide: - 2405520 templates: - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\Wild Fields\Speed Crew Demo\Saves\*.jsv}}' + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\Wild Fields\\Speed Crew Demo\\Saves\\*.jsv}}" Speed Dating for Ghosts: pageId: 76307 steam: 746400 @@ -151202,12 +147151,12 @@ Speed Demons (2019): Speed Haste: pageId: 25067 templates: - - '{{Game data/config|DOS|{{p|game}}\speed.cfg}}' + - "{{Game data/config|DOS|{{p|game}}\\speed.cfg}}" Speed Kills: pageId: 50256 steam: 284930 templates: - - '{{Game data/saves|Windows|{{p|game}}\Binaries\Win32\Profile 1}}' + - "{{Game data/saves|Windows|{{p|game}}\\Binaries\\Win32\\Profile 1}}" Speed Limit: gog: 1422430781 pageId: 135915 @@ -151230,17 +147179,17 @@ SpeedRunners: pageId: 21638 steam: 207140 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\SavedGames\SpeedRunners\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/SpeedRunners/}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/SpeedRunners/}}' - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\207140\remote\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\SavedGames\\SpeedRunners\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/SpeedRunners/}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/SpeedRunners/}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\207140\\remote\\}}" Speedball 2 HD: gog: 1207660393 pageId: 21138 steam: 251690 templates: - - '{{Game data/saves|Steam|{{p|appdata}}\Speedball2_steam}}' -'Speedball 2: Evolution': + - "{{Game data/saves|Steam|{{p|appdata}}\\Speedball2_steam}}" +"Speedball 2: Evolution": pageId: 166366 Speedball Arena: pageId: 74841 @@ -151267,20 +147216,20 @@ Speedy Girls - Dream Team: steam: 894900 Spek.: pageId: 147811 -'Spell Casting: Meowgically Enhanced Edition': +"Spell Casting: Meowgically Enhanced Edition": pageId: 36976 steam: 522990 Spell Fighter VR: pageId: 44016 steam: 455440 -'SpellForce 2: Demons of the Past': +"SpellForce 2: Demons of the Past": gog: 1207660473 pageId: 14379 steam: 245050 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\SpellForce2\config_dotp.xml}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\SpellForce2\save}}' -'SpellForce 2: Faith in Destiny': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\SpellForce2\\config_dotp.xml}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\SpellForce2\\save}}" +"SpellForce 2: Faith in Destiny": gog: 1914219141 gogSide: - 1895181021 @@ -151296,9 +147245,9 @@ Spell Fighter VR: - 226370 - 226390 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\SpellForce2\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\SpellForce2\save}}' -'SpellForce 2: Shadow Wars': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\SpellForce2\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\SpellForce2\\save}}" +"SpellForce 2: Shadow Wars": gog: 1123662938 gogSide: - 1207658939 @@ -151306,62 +147255,56 @@ Spell Fighter VR: pageId: 5209 steam: 39550 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\SpellForce2\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\SpellForce2\save\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\SpellForce2\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\SpellForce2\\save\\}}" SpellForce 3: gog: 1084714317 gogSide: - 1419313792 - - 1818736081 - - 1957394745 - 1434717372 - 1816339092 + - 1818736081 - 1929113855 + - 1957394745 pageId: 39532 steam: 311290 steamSide: - - 751610 - 732890 + - 751610 - 817540 - 1093260 - - 1161740 - 1154040 - - 1453890 + - 1161740 - 1415390 - 1416260 + - 1453890 - 1460150 templates: - - >- - {{Game data/config|Windows|{{P|game}}\config_*.txt|{{p|userprofile\Documents}}\My Games\SpellForce 3 - SH\config_system.txt|{{p|userprofile\Documents}}\My Games\SpellForce 3 SH\config_user.txt}} - - >- - {{Game data/saves|Windows|{{p|game}}\save\|{{p|userprofile\Documents}}\My Games\SpellForce 3 - SH\save\|{{p|userprofile\Documents}}\My Games\SpellForce 3 SH\characters\}} -'SpellForce 3: Fallen God': + - "{{Game data/config|Windows|{{P|game}}\\config_*.txt|{{p|userprofile\\Documents}}\\My Games\\SpellForce 3 SH\\config_system.txt|{{p|userprofile\\Documents}}\\My Games\\SpellForce 3 SH\\config_user.txt}}" + - "{{Game data/saves|Windows|{{p|game}}\\save\\|{{p|userprofile\\Documents}}\\My Games\\SpellForce 3 SH\\save\\|{{p|userprofile\\Documents}}\\My Games\\SpellForce 3 SH\\characters\\}}" +"SpellForce 3: Fallen God": pageId: 162457 steam: 1154040 -'SpellForce 3: Soul Harvest': +"SpellForce 3: Soul Harvest": pageId: 124855 steam: 817540 -'SpellForce 3: Versus Edition': +"SpellForce 3: Versus Edition": pageId: 165158 steam: 1416260 -'SpellForce: Conquest of Eo': +"SpellForce: Conquest of Eo": gog: 1201382932 pageId: 178468 steam: 1581770 templates: - - '{{Game data/config|Windows|{{p|userprofile\documents}}\My Games\Spellforce - Conquest of Eo\Custom.sfcoeSettings}}' - - >- - {{Game data/saves|Windows|{{p|userprofile\documents}}\My Games\Spellforce - Conquest of - Eo\Savegames\{{p|uid}}\*.sfcoesav}} -'SpellForce: The Order of Dawn': + - "{{Game data/config|Windows|{{p|userprofile\\documents}}\\My Games\\Spellforce - Conquest of Eo\\Custom.sfcoeSettings}}" + - "{{Game data/saves|Windows|{{p|userprofile\\documents}}\\My Games\\Spellforce - Conquest of Eo\\Savegames\\{{p|uid}}\\*.sfcoesav}}" +"SpellForce: The Order of Dawn": gog: 1207658719 pageId: 4483 steam: 39540 templates: - - '{{Game data/config|Windows|{{p|game}}\config.lua}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\SpellForce\SAVE}}' + - "{{Game data/config|Windows|{{p|game}}\\config.lua}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\SpellForce\\SAVE}}" SpellFront: pageId: 113384 steam: 860500 @@ -151381,8 +147324,8 @@ Spellbind (2015): pageId: 26654 steam: 353600 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\SOFTWARE\Point2Point Entertainment\Spellbind v. 1.0}}' - - '{{Game data/saves|Windows|{{p|hkcu}}\SOFTWARE\Point2Point Entertainment\Spellbind v. 1.0}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\Point2Point Entertainment\\Spellbind v. 1.0}}" + - "{{Game data/saves|Windows|{{p|hkcu}}\\SOFTWARE\\Point2Point Entertainment\\Spellbind v. 1.0}}" Spellbook Demonslayers: pageId: 180324 renamedFrom: @@ -151395,29 +147338,27 @@ Spellbreak: pageId: 134193 steam: 1399780 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\g3\Saved\Config\WindowsNoEditor\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\g3\\Saved\\Config\\WindowsNoEditor\\}}" Spellcaster University: gog: 1178128112 pageId: 122724 steam: 895620 templates: - - >- - {{Game data/saves|Windows|{{P|USERPROFILE}}\AppData\LocalLow\Sneaky Yak Studio\Spellcaster - University\PlayerFolder\Saves}} + - "{{Game data/saves|Windows|{{P|USERPROFILE}}\\AppData\\LocalLow\\Sneaky Yak Studio\\Spellcaster University\\PlayerFolder\\Saves}}" Spellcastia: pageId: 125719 steam: 858090 -'Spellcasting 101: Sorcerers Get All the Girls': +"Spellcasting 101: Sorcerers Get All the Girls": gog: 1995040607 pageId: 131650 steam: 1028460 templates: - - '{{Game data/config|DOS|{{P|game}}\LEGEND.BAT}}' -'Spellcasting 201: The Sorcerer''s Appliance': + - "{{Game data/config|DOS|{{P|game}}\\LEGEND.BAT}}" +"Spellcasting 201: The Sorcerer's Appliance": gog: 1995040607 pageId: 131652 steam: 1028460 -'Spellcasting 301: Spring Break': +"Spellcasting 301: Spring Break": gog: 1995040607 pageId: 131654 steam: 1028460 @@ -151433,7 +147374,7 @@ Spellforge: Spellgear: pageId: 36141 steam: 470040 -'Spelling Blaster: Ages 6-9': +"Spelling Blaster: Ages 6-9": pageId: 190550 Spelling Quest Online: pageId: 156155 @@ -151441,17 +147382,17 @@ Spelling Quest Online: Spellinkers: pageId: 150474 steam: 1180940 -'Spelljammer: Pirates of Realmspace': +"Spelljammer: Pirates of Realmspace": gog: 1582445378 pageId: 62668 steam: 2350550 templates: - - '{{Game data/config|DOS|{{p|game}}\PREFS.DAT}}' - - '{{Game data/saves|DOS|{{p|game}}\*.GSF|{{p|game}}\*.PTY|{{p|game}}\*.SFI}}' -'Spellrune: Realm of Portals': + - "{{Game data/config|DOS|{{p|game}}\\PREFS.DAT}}" + - "{{Game data/saves|DOS|{{p|game}}\\*.GSF|{{p|game}}\\*.PTY|{{p|game}}\\*.SFI}}" +"Spellrune: Realm of Portals": pageId: 110250 steam: 924020 -Spells 'n' Stuff: +"Spells 'n' Stuff": pageId: 43799 steam: 448880 Spellspire: @@ -151460,10 +147401,10 @@ Spellspire: Spellstone: pageId: 51396 steam: 452230 -'Spellsword Cards: Demontide': +"Spellsword Cards: Demontide": pageId: 129703 steam: 801210 -'Spellsword Cards: Origins': +"Spellsword Cards: Origins": pageId: 135604 steam: 1070190 Spellsworn: @@ -151483,18 +147424,16 @@ Spelunky: pageId: 8588 steam: 239350 templates: - - '{{Game data/config|Windows|{{p|game}}\Data\config.txt}}' - - '{{Game data/saves|Windows|{{p|game}}\Data\spelunky_save.sav}}' + - "{{Game data/config|Windows|{{p|game}}\\Data\\config.txt}}" + - "{{Game data/saves|Windows|{{p|game}}\\Data\\spelunky_save.sav}}" Spelunky 2: pageId: 162603 steam: 418530 templates: - - '{{Game data/config|Windows|{{P|game}}\*.cfg}}' - - '{{Game data/config|Microsoft Store|{{p|userprofile\Documents}}\Spelunky2\*.cfg}}' - - '{{Game data/saves|Windows|{{P|game}}\savegame.sav}}' - - >- - {{Game data/saves|Microsoft - Store|{{p|localappdata}}\Packages\MossmouthLLC.Spelunky2_as5w07d1cr6c0\SystemAppData\wgs\}} + - "{{Game data/config|Windows|{{P|game}}\\*.cfg}}" + - "{{Game data/config|Microsoft Store|{{p|userprofile\\Documents}}\\Spelunky2\\*.cfg}}" + - "{{Game data/saves|Windows|{{P|game}}\\savegame.sav}}" + - "{{Game data/saves|Microsoft Store|{{p|localappdata}}\\Packages\\MossmouthLLC.Spelunky2_as5w07d1cr6c0\\SystemAppData\\wgs\\}}" Spelunky Classic: pageId: 4875 Spelunx and the Caves of Mr. Seudo: @@ -151507,7 +147446,7 @@ Spermination: pageId: 48060 steam: 363460 templates: - - '{{Game data/saves|Windows|{{p|game}}\}}' + - "{{Game data/saves|Windows|{{p|game}}\\}}" SpessVR: pageId: 127243 steam: 898200 @@ -151520,11 +147459,11 @@ Sphere Complex: Sphere Frustration: pageId: 64815 steam: 667160 -'Sphere III: Enchanted World': +"Sphere III: Enchanted World": pageId: 45441 steam: 397040 templates: - - '{{Game data/config|Windows|{{p|game}}}}' + - "{{Game data/config|Windows|{{p|game}}}}" Sphere Toss: pageId: 67135 steam: 681880 @@ -151537,7 +147476,7 @@ Sphere Toss 3: Sphere Toss 4: pageId: 69972 steam: 682210 -'Sphere: Flying Cities': +"Sphere: Flying Cities": gog: 1482802044 pageId: 172249 steam: 1273220 @@ -151545,16 +147484,16 @@ SphereFACE: pageId: 62322 steam: 485680 templates: - - '{{Game data/config|Windows|{{p|game}}\sphereFACE.cfg}}' - - '{{Game data/config|OS X|{{p|game}}/sphereFACE.cfg}}' - - '{{Game data/config|Linux|{{p|game}}/sphereFACE.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\sphereFACE.save}}' - - '{{Game data/saves|OS X|{{p|game}}/sphereFACE.save}}' - - '{{Game data/saves|Linux|{{p|game}}/sphereFACE.save}}' + - "{{Game data/config|Windows|{{p|game}}\\sphereFACE.cfg}}" + - "{{Game data/config|OS X|{{p|game}}/sphereFACE.cfg}}" + - "{{Game data/config|Linux|{{p|game}}/sphereFACE.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\sphereFACE.save}}" + - "{{Game data/saves|OS X|{{p|game}}/sphereFACE.save}}" + - "{{Game data/saves|Linux|{{p|game}}/sphereFACE.save}}" Spherecraft: pageId: 136753 steam: 1074370 -'Spheres: The Ancient Fuses': +"Spheres: The Ancient Fuses": pageId: 137092 steam: 1072070 Spheria: @@ -151583,12 +147522,12 @@ Sphinx and the Cursed Mummy: - 733200 - 750430 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Sphinx\Sphinx.ini}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Sphinx/Sphinx.ini}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/Sphinx/Sphinx.ini}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\Saved Games\Sphinx\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Sphinx/}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/Sphinx/}}' + - "{{Game data/config|Windows|{{p|appdata}}\\Sphinx\\Sphinx.ini}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Sphinx/Sphinx.ini}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/Sphinx/Sphinx.ini}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Saved Games\\Sphinx\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Sphinx/}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/Sphinx/}}" Sphoxie: pageId: 94257 steam: 486430 @@ -151600,7 +147539,7 @@ Spice & Wolf VR: Spice & Wolf VR 2: pageId: 164371 steam: 1348700 -'Spice Pirates in Space: A Retro RPG': +"Spice Pirates in Space: A Retro RPG": pageId: 123533 steam: 977380 Spice Road: @@ -151632,67 +147571,65 @@ Spider ponds: Spider shooting bee: pageId: 141233 steam: 1098440 -'Spider-Man & Venom: Separation Anxiety': +"Spider-Man & Venom: Separation Anxiety": pageId: 100998 Spider-Man (2001): pageId: 35604 templates: - - '{{Game data/config|Windows|{{p|game}}\Spidey.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\save\}}' + - "{{Game data/config|Windows|{{p|game}}\\Spidey.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\save\\}}" Spider-Man (2002): pageId: 21420 renamedFrom: - - 'Spider-Man: The Movie' + - "Spider-Man: The Movie" templates: - - '{{Game data/config|Windows|{{p|game}}\game.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\SavedGames0\}}' -'Spider-Man 2: The Game': + - "{{Game data/config|Windows|{{p|game}}\\game.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\SavedGames0\\}}" +"Spider-Man 2: The Game": pageId: 21418 templates: - - '{{Game data/config|Windows|{{p|game}}\System\*.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\System|}}' + - "{{Game data/config|Windows|{{p|game}}\\System\\*.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\System|}}" Spider-Man 3: pageId: 21076 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Activision\Spider-Man 3\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Activision\Spider-Man 3\}}' -'Spider-Man: Far From Home - Virtual Reality Experience': + - "{{Game data/config|Windows|{{p|appdata}}\\Activision\\Spider-Man 3\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Activision\\Spider-Man 3\\}}" +"Spider-Man: Far From Home - Virtual Reality Experience": pageId: 141218 renamedFrom: - - 'Spider-Man: Far From Home Virtual Reality' + - "Spider-Man: Far From Home Virtual Reality" steam: 1067800 -'Spider-Man: Friend or Foe': +"Spider-Man: Friend or Foe": pageId: 63945 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Activision\Spider-Man FoF\Settings\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Activision\Spider-Man FoF\Saved Games}}' -'Spider-Man: Homecoming - Virtual Reality Experience': + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Activision\\Spider-Man FoF\\Settings\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Activision\\Spider-Man FoF\\Saved Games}}" +"Spider-Man: Homecoming - Virtual Reality Experience": pageId: 64735 steam: 645480 -'Spider-Man: Shattered Dimensions': +"Spider-Man: Shattered Dimensions": pageId: 19287 steam: 231990 templates: - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Activision\Spider-Man (TM) SD\Save}}' -'Spider-Man: The Sinister Six': + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Activision\\Spider-Man (TM) SD\\Save}}" +"Spider-Man: The Sinister Six": pageId: 175189 -'Spider-Man: Web of Shadows': +"Spider-Man: Web of Shadows": pageId: 21074 templates: - - '{{Game data/config|Windows|{{p|LOCALAPPDATA}}\Activision\Spider-Man Web of Shadows\Config.xml}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Activision\Spider-Man Web of Shadows\}}' -'Spider: Rite of the Shrouded Moon': + - "{{Game data/config|Windows|{{p|LOCALAPPDATA}}\\Activision\\Spider-Man Web of Shadows\\Config.xml}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Activision\\Spider-Man Web of Shadows\\}}" +"Spider: Rite of the Shrouded Moon": pageId: 46955 steam: 278420 Spidersaurs: pageId: 147745 steam: 1191620 templates: - - '{{Game data/config|Windows|{{P|appdata}}\Wayforward\Spidersaurs\wfEngine.ini}}' - - >- - {{Game - data/config|Linux|{{p|steam}}/steamapps/compatdata/1191620/pfx/drive_c/users/steamuser/AppData/Roaming/Wayforward/Spidersaurs/wfEngine.ini}} - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/1191620/remote/}}' + - "{{Game data/config|Windows|{{P|appdata}}\\Wayforward\\Spidersaurs\\wfEngine.ini}}" + - "{{Game data/config|Linux|{{p|steam}}/steamapps/compatdata/1191620/pfx/drive_c/users/steamuser/AppData/Roaming/Wayforward/Spidersaurs/wfEngine.ini}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/1191620/remote/}}" Spiiiders: pageId: 70331 steam: 711310 @@ -151717,10 +147654,10 @@ Spin Rhythm XD: pageId: 148647 steam: 1058830 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Super Spin Digital\Spin Rhythm XD\}}' - - '{{Game data/config|OS X|/Users/USER/Library/Application Support/Super Spin Digital/Spin Rhythm XD/}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Super Spin Digital\Spin Rhythm XD\{{p|uid}}}}' - - '{{Game data/saves|OS X|/Users/USER/Library/Application Support/Super Spin Digital/Spin Rhythm XD/{{{p|uid}}/}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Super Spin Digital\\Spin Rhythm XD\\}}" + - "{{Game data/config|OS X|/Users/USER/Library/Application Support/Super Spin Digital/Spin Rhythm XD/}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Super Spin Digital\\Spin Rhythm XD\\{{p|uid}}}}" + - "{{Game data/saves|OS X|/Users/USER/Library/Application Support/Super Spin Digital/Spin Rhythm XD/{{{p|uid}}/}}" Spin Rush: pageId: 40271 steam: 528660 @@ -151735,8 +147672,8 @@ Spinch: pageId: 87583 steam: 794240 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Spinch\settings.ini}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\Spinch\game_save_*.ini}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\Spinch\\settings.ini}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Spinch\\game_save_*.ini}}" Spindle: gog: 1250926668 pageId: 170069 @@ -151757,13 +147694,13 @@ Spinnortality: pageId: 90415 steam: 822990 templates: - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\James Patton\Spinnortality\}}' + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\James Patton\\Spinnortality\\}}" Spintires: pageId: 12064 steam: 263280 templates: - - '{{Game data/config|Windows|{{p|appdata}}\SpinTires\Config.xml}}' - - '{{Game data/saves|Windows|{{p|appdata}}\SpinTires\UserSaves\{{p|uid}}.sts}}' + - "{{Game data/config|Windows|{{p|appdata}}\\SpinTires\\Config.xml}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\SpinTires\\UserSaves\\{{p|uid}}.sts}}" Spiny Adventures: pageId: 64176 steam: 628850 @@ -151773,12 +147710,12 @@ Spiral Clicker: steamSide: - 1045810 templates: - - '{{Game data/saves|Windows|{{p|appdata}}\Stencyl\Spiral Clicker Resized\*.sol}}' + - "{{Game data/saves|Windows|{{p|appdata}}\\Stencyl\\Spiral Clicker Resized\\*.sol}}" Spiral Knights: pageId: 5955 steam: 99900 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Spiral Knights}}' + - "{{Game data/config|Windows|{{p|appdata}}\\Spiral Knights}}" Spiral Splatter: pageId: 66450 steam: 684870 @@ -151805,7 +147742,7 @@ Spirit Fighters: Spirit Guide Crucible: pageId: 61466 steam: 619100 -'Spirit Hunter: NG': +"Spirit Hunter: NG": pageId: 147920 steam: 1100430 Spirit Oath: @@ -151825,22 +147762,22 @@ Spirit of Adventure: pageId: 74762 steam: 1260920 templates: - - '{{Game data/saves|DOS|{{p|game}}\GAME}}' + - "{{Game data/saves|DOS|{{p|game}}\\GAME}}" Spirit of Excalibur: pageId: 73743 templates: - - '{{Game data/config|DOS|{{p|game}}\GAME.CFG}}' - - '{{Game data/saves|DOS|{{p|game}}\*.SAV}}' + - "{{Game data/config|DOS|{{p|game}}\\GAME.CFG}}" + - "{{Game data/saves|DOS|{{p|game}}\\*.SAV}}" Spirit of Maya: pageId: 56108 steam: 576730 Spirit of Midnight: pageId: 145489 steam: 1141060 -'Spirit of Revenge: Cursed Castle': +"Spirit of Revenge: Cursed Castle": pageId: 52686 renamedFrom: - - 'Spirit of Revenge: Cursed Castle Collector''s Edition' + - "Spirit of Revenge: Cursed Castle Collector's Edition" steam: 551160 Spirit of Speed 1937: pageId: 89145 @@ -151858,12 +147795,12 @@ Spirit of the North: pageId: 160132 steam: 1213700 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Infused\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\Infused\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\Infused\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Infused\\Saved\\SaveGames\\}}" Spirit of the North 2: pageId: 190782 steam: 1778840 -'Spirit: Stallion of the Cimarron - Forever Free': +"Spirit: Stallion of the Cimarron - Forever Free": pageId: 183567 SpiritSphere: pageId: 42029 @@ -151875,8 +147812,8 @@ Spiritfall: pageId: 187549 steam: 1835240 templates: - - '{{Game data/config|Windows|{{p|game}}\Prefs\*.dat}}' - - '{{Game data/saves|Windows|{{p|game}}\SavedGames\{{p|uid}}\save*.dat}}' + - "{{Game data/config|Windows|{{p|game}}\\Prefs\\*.dat}}" + - "{{Game data/saves|Windows|{{p|game}}\\SavedGames\\{{p|uid}}\\save*.dat}}" Spiritfarer: gog: 1144694757 pageId: 139736 @@ -151884,16 +147821,12 @@ Spiritfarer: steamSide: - 1202910 templates: - - >- - {{Game data/config|Windows|{{P|userprofile\appdata\locallow}}\Thunder Lotus - Games\Spiritfarer\SAVE_OPTIONS.sav|{{P|hkcu}}\SOFTWARE\Thunder Lotus Games\Spiritfarer\}} - - '{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/Thunder Lotus Games/Spiritfarer/prefs}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Thunder Lotus Games\Spiritfarer\}}' - - >- - {{Game data/saves|Microsoft - Store|{{P|LOCALAPPDATA}}\Packages\44905ThunderLotusGames.40196900AE792_hbhkcnqstm4gr\SystemAppData\wgs}} - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Thunder Lotus Games/Spiritfarer}}' - - '{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/Thunder Lotus Games/Spiritfarer}}' + - "{{Game data/config|Windows|{{P|userprofile\\appdata\\locallow}}\\Thunder Lotus Games\\Spiritfarer\\SAVE_OPTIONS.sav|{{P|hkcu}}\\SOFTWARE\\Thunder Lotus Games\\Spiritfarer\\}}" + - "{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/Thunder Lotus Games/Spiritfarer/prefs}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Thunder Lotus Games\\Spiritfarer\\}}" + - "{{Game data/saves|Microsoft Store|{{P|LOCALAPPDATA}}\\Packages\\44905ThunderLotusGames.40196900AE792_hbhkcnqstm4gr\\SystemAppData\\wgs}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Thunder Lotus Games/Spiritfarer}}" + - "{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/Thunder Lotus Games/Spiritfarer}}" Spiritlands: pageId: 61590 steam: 618270 @@ -151901,57 +147834,57 @@ Spirits: pageId: 5146 steam: 210170 templates: - - '{{Game data/config|Linux|{{p|linuxhome}}/.spirits/}}' - - '{{Game data/config|Steam|{{p|steam}}/userdata/{{p|uid}}/210170/remote/playerslot_*/}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.spirits/}}' - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/210170/remote/playerslot_*/}}' + - "{{Game data/config|Linux|{{p|linuxhome}}/.spirits/}}" + - "{{Game data/config|Steam|{{p|steam}}/userdata/{{p|uid}}/210170/remote/playerslot_*/}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.spirits/}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/210170/remote/playerslot_*/}}" Spirits Abyss: pageId: 135559 steam: 1078200 -'Spirits of Metropolis: Legacy Edition': +"Spirits of Metropolis: Legacy Edition": pageId: 94441 steam: 840940 -'Spirits of Mystery: Amber Maiden': +"Spirits of Mystery: Amber Maiden": pageId: 36123 renamedFrom: - - 'Spirits of Mystery: Amber Maiden Collector''s Edition' + - "Spirits of Mystery: Amber Maiden Collector's Edition" steam: 514760 -'Spirits of Mystery: Chains of Promise': +"Spirits of Mystery: Chains of Promise": pageId: 112824 steam: 941030 -'Spirits of Mystery: Song of the Phoenix': +"Spirits of Mystery: Song of the Phoenix": pageId: 57331 renamedFrom: - - 'Spirits of Mystery: Song of the Phoenix Collector''s Edition' + - "Spirits of Mystery: Song of the Phoenix Collector's Edition" steam: 586740 -'Spirits of Mystery: The Dark Minotaur': +"Spirits of Mystery: The Dark Minotaur": pageId: 70196 renamedFrom: - - 'Spirits of Mystery: The Dark Minotaur Collector''s Edition' + - "Spirits of Mystery: The Dark Minotaur Collector's Edition" steam: 709340 -'Spirits of Mystery: The Silver Arrow': +"Spirits of Mystery: The Silver Arrow": pageId: 90104 steam: 826370 Spirits of Xanadu: pageId: 32666 steam: 312230 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\SOFTWARE\allen\Spirits of Xanadu}}' - - '{{Game data/saves|Windows|{{p|hkcu}}\SOFTWARE\allen\Spirits of Xanadu}}' -'Spirits: Ciel Bleu': + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\allen\\Spirits of Xanadu}}" + - "{{Game data/saves|Windows|{{p|hkcu}}\\SOFTWARE\\allen\\Spirits of Xanadu}}" +"Spirits: Ciel Bleu": pageId: 65010 steam: 671230 Spiritual Warfare: pageId: 61596 steam: 624550 templates: - - '{{Game data/saves|DOS|{{p|game}}\SPIRIT.SAV}}' + - "{{Game data/saves|DOS|{{p|game}}\\SPIRIT.SAV}}" Spitkiss: pageId: 120917 steam: 949770 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Triple Topping Games\Spitkiss\}}' - - '{{Game data/saves|Windows|{{p|hkcu}}\Software\Triple Topping Games\Spitkiss\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Triple Topping Games\\Spitkiss\\}}" + - "{{Game data/saves|Windows|{{p|hkcu}}\\Software\\Triple Topping Games\\Spitkiss\\}}" Spitlings: pageId: 128611 renamedFrom: @@ -151960,7 +147893,7 @@ Spitlings: Splash: pageId: 93896 steam: 853980 -'Splash Adventure: The Maze of Morla': +"Splash Adventure: The Maze of Morla": pageId: 81127 steam: 789610 Splash Bash: @@ -151976,16 +147909,14 @@ Splasher: pageId: 39594 steam: 446840 templates: - - >- - {{Game data/config|Windows|{{P|userprofile\Documents}}\My - Games\Splasher\AutoSave\PlayerPrefs\save.dat|{{p|hkcu}}\Software\Splashteam\Splasher\}} - - '{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/Splashteam/Splasher/perfs}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\My Games\Splasher\AutoSave\Save1\save.dat}}' - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/446840/remote/}}' + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\My Games\\Splasher\\AutoSave\\PlayerPrefs\\save.dat|{{p|hkcu}}\\Software\\Splashteam\\Splasher\\}}" + - "{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/Splashteam/Splasher/perfs}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\My Games\\Splasher\\AutoSave\\Save1\\save.dat}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/446840/remote/}}" Splat the Blob: pageId: 73643 steam: 701900 -'Splatter: Zombiecalypse Now': +"Splatter: Zombiecalypse Now": gog: 1795553213 pageId: 50139 renamedFrom: @@ -151994,8 +147925,8 @@ Splat the Blob: Splatterhouse: pageId: 175946 templates: - - '{{Game data/saves|Windows|{{p|game}}\SPLATTER.INI}}' - - '{{Game data/saves|Windows|{{p|game}}\USERRANK.DAT}}' + - "{{Game data/saves|Windows|{{p|game}}\\SPLATTER.INI}}" + - "{{Game data/saves|Windows|{{p|game}}\\USERRANK.DAT}}" Spleen: pageId: 136098 steam: 1060850 @@ -152006,10 +147937,10 @@ Splice: pageId: 4910 steam: 209790 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Cipher Prime Studios, Inc.\Splice\}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Cipher Prime Studios, Inc./Splice/}}' - - '{{Game data/saves|Windows|{{p|hkcu}}\Software\Cipher Prime Studios, Inc.\Splice\}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Cipher Prime Studios, Inc./Splice/}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Cipher Prime Studios, Inc.\\Splice\\}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Cipher Prime Studios, Inc./Splice/}}" + - "{{Game data/saves|Windows|{{p|hkcu}}\\Software\\Cipher Prime Studios, Inc.\\Splice\\}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Cipher Prime Studios, Inc./Splice/}}" Splinter Zone: pageId: 62526 steam: 612160 @@ -152021,10 +147952,8 @@ Split (2019): pageId: 137367 steam: 743380 templates: - - >- - {{Game data/config|Windows|{{P|userprofile\appdata\locallow}}\Garlic - Jam\Split\settings.ini|{{P|hkcu}}\Software\Garlic Jam\Split}} - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Garlic Jam\save.split}}' + - "{{Game data/config|Windows|{{P|userprofile\\appdata\\locallow}}\\Garlic Jam\\Split\\settings.ini|{{P|hkcu}}\\Software\\Garlic Jam\\Split}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Garlic Jam\\save.split}}" Split Bullet: pageId: 51863 steam: 449450 @@ -152035,8 +147964,8 @@ Split of Knight: pageId: 75966 steam: 590940 templates: - - '{{Game data/config|Windows|{{P|game}}\www\save}}' - - '{{Game data/saves|Windows|{{P|game}}\www\save}}' + - "{{Game data/config|Windows|{{P|game}}\\www\\save}}" + - "{{Game data/saves|Windows|{{P|game}}\\www\\save}}" Split or Steal: pageId: 150576 steam: 1162930 @@ -152046,21 +147975,21 @@ Split/Second: - Split Second steam: 297860 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Disney Interactive Studios\Split Second\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Disney Interactive Studios\Split Second\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Disney Interactive Studios\\Split Second\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Disney Interactive Studios\\Split Second\\}}" Splitgate: pageId: 130533 renamedFrom: - - 'Splitgate: Arena Warfare' + - "Splitgate: Arena Warfare" - Splitgate - - 'Splitgate: Arena Warfare' + - "Splitgate: Arena Warfare" steam: 677620 steamSide: - 1144680 - 1144681 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\PortalWars\Saved\Config\WindowsNoEditor}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/Epic/PortalWars/Saved/Config/LinuxNoEditor/}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\PortalWars\\Saved\\Config\\WindowsNoEditor}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/Epic/PortalWars/Saved/Config/LinuxNoEditor/}}" Splitmind: pageId: 55610 steam: 341050 @@ -152073,8 +148002,8 @@ Splody: Splot: pageId: 5233 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/saves|Windows|{{p|game}}\}}' + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\}}" Splotches: pageId: 92381 steam: 373640 @@ -152085,8 +148014,8 @@ Spoiler Alert: pageId: 18687 steam: 283230 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Spoiler_Alert}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Spoiler_Alert}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Spoiler_Alert}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Spoiler_Alert}}" Spoko and Poko: pageId: 47958 steam: 365400 @@ -152095,55 +148024,51 @@ Sponchies: steam: 593670 SpongeBob SolitairePants: pageId: 182885 -'SpongeBob SquarePants: Battle for Bikini Bottom': +"SpongeBob SquarePants: Battle for Bikini Bottom": pageId: 16581 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/saves|Windows|{{p|game}}\}}' -'SpongeBob SquarePants: Battle for Bikini Bottom - Rehydrated': + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\}}" +"SpongeBob SquarePants: Battle for Bikini Bottom - Rehydrated": gog: 1545755591 pageId: 138112 renamedFrom: - - 'SpongeBob SquarePants: Battle for Bikini Bottom Rehydrated' + - "SpongeBob SquarePants: Battle for Bikini Bottom Rehydrated" steam: 969990 templates: - - '{{Game data/config|Windows|{{p|LOCALAPPDATA}}\Pineapple\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{p|LOCALAPPDATA}}\Pineapple\Saved\SaveGames}}' -'SpongeBob SquarePants: Diner Dash': + - "{{Game data/config|Windows|{{p|LOCALAPPDATA}}\\Pineapple\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{p|LOCALAPPDATA}}\\Pineapple\\Saved\\SaveGames}}" +"SpongeBob SquarePants: Diner Dash": pageId: 140400 -'SpongeBob SquarePants: Employee of the Month': +"SpongeBob SquarePants: Employee of the Month": pageId: 63566 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\THQ\SpongeBob 2\Settings}}' - - '{{Game data/saves|Windows|{{p|game}}\saved}}' -'SpongeBob SquarePants: Lights, Camera, Pants!': + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\THQ\\SpongeBob 2\\Settings}}" + - "{{Game data/saves|Windows|{{p|game}}\\saved}}" +"SpongeBob SquarePants: Lights, Camera, Pants!": pageId: 167603 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\THQ\SpongeBob 5\Settings}}' -'SpongeBob SquarePants: Operation Krabby Patty': + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\THQ\\SpongeBob 5\\Settings}}" +"SpongeBob SquarePants: Operation Krabby Patty": pageId: 152323 templates: - - '{{Game data/config|Windows|{{Path|game}}\options.dat}}' - - '{{Game data/saves|Windows|{{Path|game}}\users.dat}}' -'SpongeBob SquarePants: The Cosmic Shake': + - "{{Game data/config|Windows|{{Path|game}}\\options.dat}}" + - "{{Game data/saves|Windows|{{Path|game}}\\users.dat}}" +"SpongeBob SquarePants: The Cosmic Shake": gog: 1074395858 pageId: 171517 steam: 1282150 templates: - - >- - {{Game - data/config|Windows|{{p|localappdata}}\CosmicShake\Saved\{{p|uid}}\SaveGames\UserSettings.sav|{{p|localappdata}}\CosmicShake\Saved\Config\WindowsNoEditor}} - - >- - {{Game - data/saves|Windows|{{p|game}}\CosmicShake\Saved\{{p|uid}}\SaveGames\*.sav|{{p|localappdata}}\CosmicShake\Saved\{{p|uid}}\SaveGames\*.sav}} -'SpongeBob: Patty Pursuit': + - "{{Game data/config|Windows|{{p|localappdata}}\\CosmicShake\\Saved\\{{p|uid}}\\SaveGames\\UserSettings.sav|{{p|localappdata}}\\CosmicShake\\Saved\\Config\\WindowsNoEditor}}" + - "{{Game data/saves|Windows|{{p|game}}\\CosmicShake\\Saved\\{{p|uid}}\\SaveGames\\*.sav|{{p|localappdata}}\\CosmicShake\\Saved\\{{p|uid}}\\SaveGames\\*.sav}}" +"SpongeBob: Patty Pursuit": pageId: 160743 Spookware: pageId: 177737 steam: 1574250 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\BEESWAX GAMES\SPOOKWARE\}}' - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\BEESWAX GAMES\SPOOKWARE\SPOOKWARESaveData.txt}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\BEESWAX GAMES\\SPOOKWARE\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\BEESWAX GAMES\\SPOOKWARE\\SPOOKWARESaveData.txt}}" Spooky Bonus: pageId: 34823 steam: 388450 @@ -152162,7 +148087,7 @@ Spooky Night: Spooky Night 2: pageId: 150225 steam: 1178060 -'Spooky Starlets: Movie Maker': +"Spooky Starlets: Movie Maker": pageId: 150838 renamedFrom: - Spooky Starlets @@ -152170,21 +148095,18 @@ Spooky Night 2: Spooky Station: pageId: 148523 steam: 700100 -Spooky's Jump Scare Mansion: +"Spooky's Jump Scare Mansion": pageId: 24512 steam: 356670 templates: - - '{{Game data/config|Windows|{{P|game}}\save_data_main.ini}}' - - '{{Game data/saves|Windows|{{P|game}}\save_data_main.ini}}' -'Spooky''s Jump Scare Mansion: HD Renovation': + - "{{Game data/config|Windows|{{P|game}}\\save_data_main.ini}}" + - "{{Game data/saves|Windows|{{P|game}}\\save_data_main.ini}}" +"Spooky's Jump Scare Mansion: HD Renovation": pageId: 57683 steam: 577690 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Albino Moose Games\SpookyHD}}' - - >- - {{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Albino Moose - Games\SpookyHD\global.txt|{{p|userprofile}}\AppData\LocalLow\Albino Moose - Games\SpookyHD\KHMansion.txt|{{p|userprofile}}\AppData\LocalLow\Albino Moose Games\SpookyHD\save.txt}} + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Albino Moose Games\\SpookyHD}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Albino Moose Games\\SpookyHD\\global.txt|{{p|userprofile}}\\AppData\\LocalLow\\Albino Moose Games\\SpookyHD\\KHMansion.txt|{{p|userprofile}}\\AppData\\LocalLow\\Albino Moose Games\\SpookyHD\\save.txt}}" Spoorky: pageId: 120836 steam: 858080 @@ -152196,12 +148118,12 @@ Spore: - 17440 - 24720 templates: - - '{{Game data/config|Windows|{{p|appdata}}\SPORE\Preferences\}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Spore\Games|{{p|userprofile\Documents}}\My Spore Creations\}}' -'Spork: The Manic Utensil Storm': + - "{{Game data/config|Windows|{{p|appdata}}\\SPORE\\Preferences\\}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Spore\\Games|{{p|userprofile\\Documents}}\\My Spore Creations\\}}" +"Spork: The Manic Utensil Storm": pageId: 122676 steam: 775590 -'Sport1 Live: Duel': +"Sport1 Live: Duel": pageId: 50169 steam: 301250 Sports Car GT: @@ -152213,12 +148135,12 @@ Sportsfriends: pageId: 21561 steam: 277850 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\sportsfriends\config.ini}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/sportsfriends/config.ini}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/sportsfriends/config.ini}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\sportsfriends\save.dat}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/sportsfriends/save.dat}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/sportsfriends/save.dat}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\sportsfriends\\config.ini}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/sportsfriends/config.ini}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/sportsfriends/config.ini}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\sportsfriends\\save.dat}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/sportsfriends/save.dat}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/sportsfriends/save.dat}}" Spot Girls Difference: pageId: 125709 steam: 1010490 @@ -152258,19 +148180,19 @@ Spring Falls: steamSide: - 1195750 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\SPARSE//GameDev\Spring Falls}}' - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\SPARSE__GameDev\Spring Falls\savedata.txt}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\SPARSE//GameDev\\Spring Falls}}" + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\SPARSE__GameDev\\Spring Falls\\savedata.txt}}" Spring It!: pageId: 81992 steam: 785620 Spring of Decadence: pageId: 99474 steam: 884050 -'Sprint Cars: Road to Knoxville': +"Sprint Cars: Road to Knoxville": pageId: 41351 steam: 12590 templates: - - '{{Game data/saves|Windows|{{p|game}}\save_data\}}' + - "{{Game data/saves|Windows|{{p|game}}\\save_data\\}}" Sprint Vector: pageId: 63504 steam: 590690 @@ -152284,8 +148206,8 @@ Sproggiwood: pageId: 38097 steam: 311720 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Freehold Games\Sproggiwood\}}' - - '{{Game data/saves|Windows|{{p|USERPROFILE}}\AppData\LocalLow\Freehold Games\Sproggiwood\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Freehold Games\\Sproggiwood\\}}" + - "{{Game data/saves|Windows|{{p|USERPROFILE}}\\AppData\\LocalLow\\Freehold Games\\Sproggiwood\\}}" Sproots: pageId: 155324 steam: 1215410 @@ -152298,7 +148220,7 @@ Spud Cricket VR: Spud!: pageId: 48539 steam: 353790 -Spud's Quest: +"Spud's Quest": pageId: 49837 steam: 315610 Spuds Unearthed: @@ -152316,42 +148238,42 @@ Spy Chameleon - RGB Agent: Spy DNA: pageId: 153712 steam: 614730 -'Spy Fox 2: Some Assembly Required': +"Spy Fox 2: Some Assembly Required": pageId: 37539 steam: 292240 -'Spy Fox 3: Operation Ozone': +"Spy Fox 3: Operation Ozone": pageId: 50262 steam: 292260 -'Spy Fox in: Cheese Chase': +"Spy Fox in: Cheese Chase": pageId: 50185 steam: 292280 templates: - - '{{Game data/config|Windows|{{P|game}}\ScummVM_Windows\scummvm-spyfoxcheesechase.ini}}' - - '{{Game data/saves|Windows|{{P|game}}\Saves\}}' -'Spy Fox in: Hold the Mustard': + - "{{Game data/config|Windows|{{P|game}}\\ScummVM_Windows\\scummvm-spyfoxcheesechase.ini}}" + - "{{Game data/saves|Windows|{{P|game}}\\Saves\\}}" +"Spy Fox in: Hold the Mustard": pageId: 50107 steam: 292300 -'Spy Fox: Dry Cereal': +"Spy Fox: Dry Cereal": pageId: 16891 steam: 283980 templates: - - '{{Game data/config|Windows|{{P|game}}\hegames.ini}}' - - '{{Game data/config|Mac OS|: System Folder: Preferences: Humongous Entertainment: Humongous Prefs}}' - - '{{Game data/saves|Windows|C:\hegames\spyfox.sg*|{{p|game}}\Saves\spyfox.sg*}}' - - '{{Game data/saves|Mac OS|: System Folder: Preferences: Humongous Entertainment: SpyFox SG*}}' + - "{{Game data/config|Windows|{{P|game}}\\hegames.ini}}" + - "{{Game data/config|Mac OS|: System Folder: Preferences: Humongous Entertainment: Humongous Prefs}}" + - "{{Game data/saves|Windows|C:\\hegames\\spyfox.sg*|{{p|game}}\\Saves\\spyfox.sg*}}" + - "{{Game data/saves|Mac OS|: System Folder: Preferences: Humongous Entertainment: SpyFox SG*}}" Spy Hunter: pageId: 176356 Spy Hunter (2003): pageId: 56849 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Midway\SpyHunter\}}' - - '{{Game data/saves|Windows|{{p|game}}\SPYHUNTER_PROFILES.DAT}}' -'Spy Hunter: Nowhere to Run': + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Midway\\SpyHunter\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\SPYHUNTER_PROFILES.DAT}}" +"Spy Hunter: Nowhere to Run": pageId: 89938 templates: - - '{{Game data/config|Windows|{{p|game}}\CONFIG\}}' - - '{{Game data/config|Windows|{{p|game}}\savegame\}}' -'Spy Muppets: License to Croak': + - "{{Game data/config|Windows|{{p|game}}\\CONFIG\\}}" + - "{{Game data/config|Windows|{{p|game}}\\savegame\\}}" +"Spy Muppets: License to Croak": pageId: 164312 Spy Tactics: pageId: 140976 @@ -152363,19 +148285,19 @@ SpyParty: pageId: 12995 steam: 329070 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\SpyParty}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\SpyParty}}' -'Spycraft: The Great Game': + - "{{Game data/config|Windows|{{p|localappdata}}\\SpyParty}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\SpyParty}}" +"Spycraft: The Great Game": gog: 1207659115 pageId: 21136 steam: 569220 templates: - - '{{Game data/saves|DOS|{{p|game}}\GAME_*.SGM}}' + - "{{Game data/saves|DOS|{{p|game}}\\GAME_*.SGM}}" Spyder: pageId: 158655 Spyder (1983): pageId: 158657 -'Spyhack: Episode 1': +"Spyhack: Episode 1": pageId: 88880 renamedFrom: - Spyhack @@ -152387,9 +148309,9 @@ Spyro Reignited Trilogy: pageId: 137698 steam: 996580 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Falcon\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\Falcon\Saved\SaveGames\}}' - - '{{Game data/saves|Steam|{{P|steam}}\userdata\{{P|uid}}\996580\remote\Falcon\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\Falcon\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Falcon\\Saved\\SaveGames\\}}" + - "{{Game data/saves|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\996580\\remote\\Falcon\\Saved\\SaveGames\\}}" Squad: pageId: 34671 steam: 393380 @@ -152399,11 +148321,11 @@ Squad: - 2222340 - 2222341 - 2222342 - - 2417351 - 2417350 + - 2417351 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\SquadGame\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\SquadGame\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\SquadGame\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\SquadGame\\Saved\\SaveGames\\}}" Squad Z: pageId: 104243 steam: 784030 @@ -152412,7 +148334,7 @@ Squadron 42: Squadron 51: pageId: 166523 steam: 1378800 -'Squadron: Sky Guardians': +"Squadron: Sky Guardians": pageId: 65578 steam: 673570 Squake: @@ -152457,22 +148379,22 @@ Square n Fair: Square x Square: pageId: 69583 steam: 654750 -Square's Route: +"Square's Route": pageId: 44092 steam: 448530 SquareCells: pageId: 37951 steam: 416770 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\SOFTWARE\Matthew Brown\SquareCells\}}' - - '{{Game data/saves|Windows|{{p|game}}\saves\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\Matthew Brown\\SquareCells\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\saves\\}}" SquareWorld: pageId: 95539 steam: 868820 SquareWorld Unpixeled: pageId: 121296 steam: 950810 -'Squareboy vs Bullies: Arena Edition': +"Squareboy vs Bullies: Arena Edition": pageId: 75634 steam: 709620 Squareface: @@ -152499,8 +148421,8 @@ Squarewave Maker: Squarez Deluxe: pageId: 75925 templates: - - '{{Game data/config|DOS|{{p|game}}\SQUAREZ.CFG}}' - - '{{Game data/saves|DOS|{{p|game}}\SQUAREZ.HIS}}' + - "{{Game data/config|DOS|{{p|game}}\\SQUAREZ.CFG}}" + - "{{Game data/saves|DOS|{{p|game}}\\SQUAREZ.HIS}}" Squarism: pageId: 76115 steam: 745030 @@ -152526,7 +148448,7 @@ Squids from Space: pageId: 63163 steam: 437610 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Squid\Saved\Config\WindowsNoEditor\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\Squid\\Saved\\Config\\WindowsNoEditor\\}}" Squillamorph: pageId: 153194 steam: 1181020 @@ -152549,9 +148471,9 @@ Squirreltopia: pageId: 22249 steam: 334690 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Squirreltopia\savedata.ini}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Squirreltopia\savedata.ini}}' -Squirt's Adventure: + - "{{Game data/config|Windows|{{p|localappdata}}\\Squirreltopia\\savedata.ini}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Squirreltopia\\savedata.ini}}" +"Squirt's Adventure": pageId: 50604 steam: 263180 Squish and the Corrupted Crystal: @@ -152564,7 +148486,7 @@ Squishy the Suicidal Pig: pageId: 23393 steam: 318430 templates: - - '{{Game data/saves|Windows|{{p|localappdata}}\squishy\squishy.pas}}' + - "{{Game data/saves|Windows|{{p|localappdata}}\\squishy\\squishy.pas}}" Sqvishy: pageId: 134618 steam: 1049720 @@ -152605,19 +148527,19 @@ Stacking: pageId: 5471 steam: 115110 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Doublefine\Stacking\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/doublefine/stacking/}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/doublefine/stacking/}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Doublefine\Stacking\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/doublefine/stacking/}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/doublefine/stacking/}}' - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/115110/}}' + - "{{Game data/config|Windows|{{p|appdata}}\\Doublefine\\Stacking\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/doublefine/stacking/}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/doublefine/stacking/}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Doublefine\\Stacking\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/doublefine/stacking/}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/doublefine/stacking/}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/115110/}}" Stacklands: pageId: 187855 steam: 1948280 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\sokpop\Stacklands}}' - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\sokpop\Stacklands}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\sokpop\\Stacklands}}" + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\sokpop\\Stacklands}}" Stacks On Stacks (On Stacks): pageId: 130662 steam: 510430 @@ -152625,7 +148547,7 @@ Stacks TNT: pageId: 60435 steam: 403840 templates: - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\Stacks TNT\}}' + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\Stacks TNT\\}}" Stacksquatch: pageId: 137135 steam: 937090 @@ -152635,10 +148557,10 @@ Staden under Gamlestaden: Stadium Renovator: pageId: 114802 steam: 948880 -'Staff Wars: Wizard Rumble': +"Staff Wars: Wizard Rumble": pageId: 66615 steam: 664040 -'Stage 3: Azaria': +"Stage 3: Azaria": pageId: 88902 steam: 755450 Stage Fright: @@ -152676,7 +148598,7 @@ Stalingrad: pageId: 38139 steam: 356260 templates: - - '{{Game data/saves|Windows|{{p|game}}\saves}}' + - "{{Game data/saves|Windows|{{p|game}}\\saves}}" Stalked at Night: pageId: 102861 steam: 894890 @@ -152686,7 +148608,7 @@ Stalker Crab Simulator: Stamp Boy: pageId: 135534 steam: 946860 -'Stand Out: VR Battle Royale': +"Stand Out: VR Battle Royale": pageId: 77178 steam: 748370 Stand by You: @@ -152740,18 +148662,16 @@ Star Chart: Star Chef 2: pageId: 172519 steam: 1612810 -'Star Chef: Cooking & Restaurant Game': +"Star Chef: Cooking & Restaurant Game": pageId: 132157 steam: 1028860 -'Star Chronicles: Delta Quadrant': +"Star Chronicles: Delta Quadrant": pageId: 47367 steam: 383330 Star Citizen: pageId: 9950 templates: - - |- - {{Game data/config|Windows|{{p|game}}\LIVE\USER - }} + - "{{Game data/config|Windows|{{p|game}}\\LIVE\\USER\n}}" Star Clash: pageId: 87255 steam: 798190 @@ -152762,12 +148682,12 @@ Star Conflict: pageId: 40652 steam: 212070 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Star Conflict\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Star Conflict/}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.local/share/starconflict/}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Star Conflict\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Star Conflict/}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.local/share/starconflict/}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Star Conflict\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Star Conflict/}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.local/share/starconflict/}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Star Conflict\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Star Conflict/}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.local/share/starconflict/}}" Star Control: gog: 1207661663 pageId: 14128 @@ -152780,13 +148700,13 @@ Star Control II: gog: 1207661673 pageId: 14131 steam: 358920 -'Star Control: Origins': +"Star Control: Origins": gog: 1893867643 pageId: 74714 steam: 271260 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Star Control\settings.ini}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Star Control\Saves}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Star Control\\settings.ini}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Star Control\\Saves}}" Star Crusade CCG: pageId: 38815 steam: 415270 @@ -152802,7 +148722,7 @@ Star Drift Evolution: Star Drifter: pageId: 42772 steam: 485330 -'Star Dust: The Book of Earth': +"Star Dust: The Book of Earth": pageId: 62274 steam: 572980 Star Dynasties: @@ -152836,9 +148756,9 @@ Star Fighters: Star Fleet Armada Rogue Adventures: pageId: 62811 steam: 459610 -'Star Fleet I: The War Begins!': +"Star Fleet I: The War Begins!": pageId: 167094 -'Star Fleet II: Krellan Commander': +"Star Fleet II: Krellan Commander": gog: 1187946593 pageId: 178650 steam: 1470940 @@ -152847,10 +148767,10 @@ Star General: pageId: 177933 steam: 2414340 templates: - - '{{Game data/config|DOS|{{P|game}}\LOG\PREFDOS.DAT}}' - - '{{Game data/config|Windows|{{P|game}}\LOG\pref.dat}}' - - '{{Game data/saves|DOS|{{P|game}}\SAVE\}}' - - '{{Game data/saves|Windows|{{P|game}}\SAVE\}}' + - "{{Game data/config|DOS|{{P|game}}\\LOG\\PREFDOS.DAT}}" + - "{{Game data/config|Windows|{{P|game}}\\LOG\\pref.dat}}" + - "{{Game data/saves|DOS|{{P|game}}\\SAVE\\}}" + - "{{Game data/saves|Windows|{{P|game}}\\SAVE\\}}" Star Girl Proxima: pageId: 145136 steam: 1135370 @@ -152863,13 +148783,13 @@ Star Goddess: Star Gods: pageId: 153294 steam: 1179500 -'Star Hammer: The Vanguard Prophecy': +"Star Hammer: The Vanguard Prophecy": gog: 1642319334 pageId: 47637 steam: 337680 templates: - - '{{Game data/config|Steam|{{p|steam}}/userdata/{{p|uid}}/337680/remote/config.txt}}' - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/337680/remote/}}' + - "{{Game data/config|Steam|{{p|steam}}/userdata/{{p|uid}}/337680/remote/config.txt}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/337680/remote/}}" Star Horizon: pageId: 47751 steam: 352960 @@ -152879,7 +148799,7 @@ Star Hunter VR: Star Impact: pageId: 135169 steam: 1052030 -'Star Kingdom: The Elements': +"Star Kingdom: The Elements": pageId: 54507 steam: 558650 Star Merc: @@ -152894,27 +148814,25 @@ Star Nomad: Star Nomad 2: pageId: 45298 steam: 414950 -'Star Ocean: The Divine Force': +"Star Ocean: The Divine Force": pageId: 172590 steam: 1776380 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\My Games\STAR OCEAN THE DIVINE FORCE\Steam\{{P|uid}}\}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\My Games\STAR OCEAN THE DIVINE FORCE\Steam\{{P|uid}}\}}' -'Star Ocean: The Last Hope 4K & Full HD Remaster': + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\My Games\\STAR OCEAN THE DIVINE FORCE\\Steam\\{{P|uid}}\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\My Games\\STAR OCEAN THE DIVINE FORCE\\Steam\\{{P|uid}}\\}}" +"Star Ocean: The Last Hope 4K & Full HD Remaster": pageId: 74363 renamedFrom: - - 'Star Ocean: The Last Hope' + - "Star Ocean: The Last Hope" steam: 609150 templates: - - >- - {{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\STAR OCEAN - THE LAST HOPE - 4K & Full HD - Remaster\}} -'Star Ocean: The Second Story R': + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\STAR OCEAN - THE LAST HOPE - 4K & Full HD Remaster\\}}" +"Star Ocean: The Second Story R": pageId: 188191 steam: 2238900 templates: - - '{{Game data/config|Windows|{{p|userprofile\documents}}\My Games\STAR OCEAN THE SECOND STORY R\Steam\{{p|uid}}\}}' - - '{{Game data/saves|Windows|{{p|userprofile\documents}}\My Games\STAR OCEAN THE SECOND STORY R\Steam\{{p|uid}}\}}' + - "{{Game data/config|Windows|{{p|userprofile\\documents}}\\My Games\\STAR OCEAN THE SECOND STORY R\\Steam\\{{p|uid}}\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\documents}}\\My Games\\STAR OCEAN THE SECOND STORY R\\Steam\\{{p|uid}}\\}}" Star Phoenix: pageId: 53842 steam: 556770 @@ -152934,13 +148852,13 @@ Star Raiders: pageId: 23983 steam: 9970 templates: - - '{{Game data/config|Windows|{{p|Steam}}\userdata\{{p|uid}}\9970\local\StarRaiders1\PRO-DATA.DAT}}' - - '{{Game data/saves|Windows|{{p|Steam}}\userdata\{{p|uid}}\9970\local\StarRaiders1\}}' + - "{{Game data/config|Windows|{{p|Steam}}\\userdata\\{{p|uid}}\\9970\\local\\StarRaiders1\\PRO-DATA.DAT}}" + - "{{Game data/saves|Windows|{{p|Steam}}\\userdata\\{{p|uid}}\\9970\\local\\StarRaiders1\\}}" Star Rangers: pageId: 59575 templates: - - '{{Game data/config|DOS|{{p|game}}\MAIN\SRANGER.CFG}}' - - '{{Game data/saves|DOS|{{p|game}}\MAIN\SRSAVE*.SAV}}' + - "{{Game data/config|DOS|{{p|game}}\\MAIN\\SRANGER.CFG}}" + - "{{Game data/saves|DOS|{{p|game}}\\MAIN\\SRSAVE*.SAV}}" Star Rangers (2017): pageId: 42551 steam: 333340 @@ -152955,10 +148873,8 @@ Star Renegades: pageId: 90449 steam: 651670 templates: - - >- - {{Game data/config|Windows|{{P|userprofile\Documents}}\Star Renegades\profile.mdi|{{P|hkcu}}\SOFTWARE\Massive - Damage\Star Renegades\}} - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\Star Renegades\SRRWSlot*.mdi}}' + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\Star Renegades\\profile.mdi|{{P|hkcu}}\\SOFTWARE\\Massive Damage\\Star Renegades\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\Star Renegades\\SRRWSlot*.mdi}}" Star Rogue: pageId: 44746 steam: 438440 @@ -152966,18 +148882,18 @@ Star Ruler: pageId: 18511 steam: 70900 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\My Games\Star Ruler\}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\My Games\Star Ruler\Saves}}' + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\My Games\\Star Ruler\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\My Games\\Star Ruler\\Saves}}" Star Ruler 2: gog: 1427876902 pageId: 18509 steam: 282590 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\My Games\Star Ruler 2\}}' - - '{{Game data/config|Linux|{{P|linuxhome}}/.starruler2/}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\My Games\Star Ruler 2\}}' - - '{{Game data/saves|Linux|{{P|linuxhome}}/.starruler2/saves/}}' -'Star Saga One: Rise of the Dominators': + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\My Games\\Star Ruler 2\\}}" + - "{{Game data/config|Linux|{{P|linuxhome}}/.starruler2/}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\My Games\\Star Ruler 2\\}}" + - "{{Game data/saves|Linux|{{P|linuxhome}}/.starruler2/saves/}}" +"Star Saga One: Rise of the Dominators": pageId: 79818 steam: 776430 Star Saviors: @@ -153002,20 +148918,20 @@ Star Sky: pageId: 45932 steam: 407020 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\StarSky}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\StarSky}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\StarSky}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\StarSky}}" Star Sky 2: pageId: 44335 steam: 443460 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\StarSky2}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\StarSky2}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\StarSky2}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\StarSky2}}" Star Sky 3: pageId: 112468 steam: 933770 templates: - - '{{Game data/config|Windows|{{p|LOCALAPPDATA}}\StarSky3}}' - - '{{Game data/saves|Windows|{{p|LOCALAPPDATA}}\StarSky3}}' + - "{{Game data/config|Windows|{{p|LOCALAPPDATA}}\\StarSky3}}" + - "{{Game data/saves|Windows|{{p|LOCALAPPDATA}}\\StarSky3}}" Star Sonata 2: pageId: 38993 steam: 304690 @@ -153028,8 +148944,8 @@ Star Speeder: Star Stable: pageId: 97848 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Star Stable\}}' -'Star Story: The Horizon Escape': + - "{{Game data/config|Windows|{{p|localappdata}}\\Star Stable\\}}" +"Star Story: The Horizon Escape": pageId: 60764 steam: 610310 Star Surveyor: @@ -153050,26 +148966,26 @@ Star Thief: Star Tower: pageId: 94477 steam: 848780 -'Star Traders: 4X Empires': +"Star Traders: 4X Empires": pageId: 49101 steam: 334270 -'Star Traders: Frontiers': +"Star Traders: Frontiers": pageId: 73205 steam: 335620 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\StarTradersFrontiers\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/StarTradersFrontiers/}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/startraders2/}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\StarTradersFrontiers\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/StarTradersFrontiers/}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/startraders2/}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\StarTradersFrontiers\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/StarTradersFrontiers/}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/startraders2/}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\StarTradersFrontiers\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/StarTradersFrontiers/}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/startraders2/}}" Star Trek (2013): pageId: 6605 steam: 203250 templates: - - '{{Game data/config|Windows|{{p|appdata}}\StarTrekPC\}}' - - '{{Game data/config|Steam|{{P|steam}}\userdata\{{P|uid}}\203250\remote\settings}}' - - '{{Game data/saves|Steam|{{P|steam}}\userdata\{{P|uid}}\203250\remote\CONTINUE.SAV}}' + - "{{Game data/config|Windows|{{p|appdata}}\\StarTrekPC\\}}" + - "{{Game data/config|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\203250\\remote\\settings}}" + - "{{Game data/saves|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\203250\\remote\\CONTINUE.SAV}}" Star Trek Adversaries: pageId: 90925 steam: 815040 @@ -153080,201 +148996,197 @@ Star Trek Online: pageId: 4980 steam: 9900 templates: - - '{{Game data/config|Windows|{{p|game}}\Star Trek Online\Live\localdata}}' + - "{{Game data/config|Windows|{{p|game}}\\Star Trek Online\\Live\\localdata}}" Star Trek Pinball: pageId: 171544 -'Star Trek Prodigy: Supernova': +"Star Trek Prodigy: Supernova": pageId: 188333 steam: 1655220 Star Trek Timelines: pageId: 61656 steam: 600750 -'Star Trek V: The Final Frontier': +"Star Trek V: The Final Frontier": pageId: 171550 -'Star Trek: 25th Anniversary': +"Star Trek: 25th Anniversary": gog: 1427108887 pageId: 34366 steam: 359650 templates: - - '{{Game data/config|DOS|C:\TREKCD\INTRPLAY.CFG}}' - - '{{Game data/saves|DOS|C:\TREKCD\}}' -'Star Trek: Armada': + - "{{Game data/config|DOS|C:\\TREKCD\\INTRPLAY.CFG}}" + - "{{Game data/saves|DOS|C:\\TREKCD\\}}" +"Star Trek: Armada": gog: 1582325353 pageId: 3577 templates: - - '{{Game data/config|Windows|{{p|game}}\ARMADA.PRF}}' - - '{{Game data/saves|Windows|{{p|game}}\save}}' -'Star Trek: Armada II': + - "{{Game data/config|Windows|{{p|game}}\\ARMADA.PRF}}" + - "{{Game data/saves|Windows|{{p|game}}\\save}}" +"Star Trek: Armada II": gog: 1174788223 pageId: 9358 templates: - - '{{Game data/config|Windows|{{p|game}}\ARMADA.PRF}}' - - '{{Game data/saves|Windows|{{p|game}}\save}}' -'Star Trek: Away Team': + - "{{Game data/config|Windows|{{p|game}}\\ARMADA.PRF}}" + - "{{Game data/saves|Windows|{{p|game}}\\save}}" +"Star Trek: Away Team": gog: 1321659450 pageId: 171323 templates: - - '{{Game data/config|Windows|{{p|game}}\AwayTeam.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\Save Game}}' -'Star Trek: Borg': + - "{{Game data/config|Windows|{{p|game}}\\AwayTeam.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\Save Game}}" +"Star Trek: Borg": pageId: 171541 -'Star Trek: Bridge Commander': +"Star Trek: Bridge Commander": gog: 1478736295 pageId: 162831 templates: - - '{{Game data/config|Windows|{{p|game}}\options.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\saves}}' -'Star Trek: Bridge Crew': + - "{{Game data/config|Windows|{{p|game}}\\options.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\saves}}" +"Star Trek: Bridge Crew": pageId: 56509 steam: 527100 templates: - - '{{Game data/config|Windows|{{p|game}}\graphics.config}}' -'Star Trek: ConQuest Online': + - "{{Game data/config|Windows|{{p|game}}\\graphics.config}}" +"Star Trek: ConQuest Online": pageId: 171548 -'Star Trek: Deep Space Nine - Dominion Wars': +"Star Trek: Deep Space Nine - Dominion Wars": pageId: 167844 -'Star Trek: Deep Space Nine - Harbinger': +"Star Trek: Deep Space Nine - Harbinger": pageId: 157515 -'Star Trek: Deep Space Nine - The Fallen': +"Star Trek: Deep Space Nine - The Fallen": pageId: 7134 templates: - - '{{Game data/config|Windows|{{p|game}}\system\Ds9.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\Save}}' -'Star Trek: Elite Force II': + - "{{Game data/config|Windows|{{p|game}}\\system\\Ds9.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\Save}}" +"Star Trek: Elite Force II": gog: 2125201406 pageId: 6375 templates: - - '{{Game data/config|Windows|{{p|game}}\base\{{p|uid}}.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\base\save}}' -'Star Trek: En Territoire Alien': + - "{{Game data/config|Windows|{{p|game}}\\base\\{{p|uid}}.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\base\\save}}" +"Star Trek: En Territoire Alien": pageId: 114528 steam: 943630 -'Star Trek: Generations': +"Star Trek: Generations": pageId: 146276 templates: - - '{{Game data/config|Windows|{{p|game}}\Sgens.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\SAVEGAME\}}' -'Star Trek: Hidden Evil': + - "{{Game data/config|Windows|{{p|game}}\\Sgens.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\SAVEGAME\\}}" +"Star Trek: Hidden Evil": gog: 1365309818 pageId: 171321 templates: - - '{{Game data/saves|Windows|{{p|game}}\Save}}' -'Star Trek: Infinite': + - "{{Game data/saves|Windows|{{p|game}}\\Save}}" +"Star Trek: Infinite": pageId: 188001 steam: 1622900 steamSide: - 2595340 templates: - - '{{Game data/config|Windows|{{p|userprofile\documents}}\Paradox Interactive\Infinite\settings.txt}}' - - '{{Game data/saves|Windows|{{p|userprofile\documents}}\Paradox Interactive\Infinite\save games\}}' -'Star Trek: Judgment Rites': + - "{{Game data/config|Windows|{{p|userprofile\\documents}}\\Paradox Interactive\\Infinite\\settings.txt}}" + - "{{Game data/saves|Windows|{{p|userprofile\\documents}}\\Paradox Interactive\\Infinite\\save games\\}}" +"Star Trek: Judgment Rites": gog: 1429089605 pageId: 34368 steam: 364800 templates: - - '{{Game data/saves|DOS|C:\TREK2\}}' -'Star Trek: Klingon': + - "{{Game data/saves|DOS|C:\\TREK2\\}}" +"Star Trek: Klingon": pageId: 171546 -'Star Trek: Klingon Academy': +"Star Trek: Klingon Academy": pageId: 171337 -'Star Trek: Legacy': +"Star Trek: Legacy": pageId: 170416 templates: - - '{{Game data/config|Windows|{{P|game}}\Admiral.PRF}}' - - '{{Game data/saves|Windows|{{p|userprofile\documents}}\STLSave}}' -'Star Trek: Legends': + - "{{Game data/config|Windows|{{P|game}}\\Admiral.PRF}}" + - "{{Game data/saves|Windows|{{p|userprofile\\documents}}\\STLSave}}" +"Star Trek: Legends": pageId: 167742 -'Star Trek: New Worlds': +"Star Trek: New Worlds": pageId: 147929 templates: - - '{{Game data/config|Windows|{{p|game}}\game.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\game.ini}}' -'Star Trek: Resurgence': + - "{{Game data/config|Windows|{{p|game}}\\game.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\game.ini}}" +"Star Trek: Resurgence": pageId: 173594 templates: - - |- - {{Game data/config|Windows|{{P|localappdata}}\StarTrekGame\Saved\Config\WindowsNoEditor\ - }} - - '{{Game data/saves|Windows|{{P|localappdata}}\StarTrekGame\Saved\SaveGames\}}' -'Star Trek: Starfleet Academy': + - "{{Game data/config|Windows|{{P|localappdata}}\\StarTrekGame\\Saved\\Config\\WindowsNoEditor\\\n}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\StarTrekGame\\Saved\\SaveGames\\}}" +"Star Trek: Starfleet Academy": gog: 1429170550 pageId: 14190 steam: 364810 templates: - - '{{Game data/config|Windows|{{P|game}}\options.cfg}}' - - '{{Game data/saves|Windows|{{P|game}}\savegame\*.sav}}' -'Star Trek: Starfleet Command': + - "{{Game data/config|Windows|{{P|game}}\\options.cfg}}" + - "{{Game data/saves|Windows|{{P|game}}\\savegame\\*.sav}}" +"Star Trek: Starfleet Command": gog: 1429172763 pageId: 51170 steam: 364820 templates: - - '{{Game data/config|Windows|{{p|game}}\sfc.ini}}' - - '{{Game data/saves|Windows|{{p|game}}}}' -'Star Trek: Starfleet Command - Orion Pirates': + - "{{Game data/config|Windows|{{p|game}}\\sfc.ini}}" + - "{{Game data/saves|Windows|{{p|game}}}}" +"Star Trek: Starfleet Command - Orion Pirates": pageId: 170412 templates: - - '{{Game data/config|Windows|{{p|game}}\sfc.ini}}' - - '{{Game data/saves|Windows|{{p|game}}}}' -'Star Trek: Starfleet Command II - Empires at War': + - "{{Game data/config|Windows|{{p|game}}\\sfc.ini}}" + - "{{Game data/saves|Windows|{{p|game}}}}" +"Star Trek: Starfleet Command II - Empires at War": pageId: 170411 templates: - - '{{Game data/config|Windows|{{p|game}}\sfc.ini}}' - - '{{Game data/saves|Windows|{{p|game}}}}' -'Star Trek: Starfleet Command III': + - "{{Game data/config|Windows|{{p|game}}\\sfc.ini}}" + - "{{Game data/saves|Windows|{{p|game}}}}" +"Star Trek: Starfleet Command III": gog: 1156468375 pageId: 170479 templates: - - '{{Game data/config|Windows|{{p|game}}\sfc.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\Saves}}' -'Star Trek: Starship Creator': + - "{{Game data/config|Windows|{{p|game}}\\sfc.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\Saves}}" +"Star Trek: Starship Creator": pageId: 171555 -'Star Trek: Starship Creator Warp II': +"Star Trek: Starship Creator Warp II": pageId: 171557 templates: - - '{{Game data/config|Windows|C:\Program Files (x86)\Warp2\ShipMain\PREFS.cxt}}' - - '{{Game data/saves|Windows|C:\Program Files (x86)\Warp2\ShipMain\USR}}' -'Star Trek: The Game Show': + - "{{Game data/config|Windows|C:\\Program Files (x86)\\Warp2\\ShipMain\\PREFS.cxt}}" + - "{{Game data/saves|Windows|C:\\Program Files (x86)\\Warp2\\ShipMain\\USR}}" +"Star Trek: The Game Show": pageId: 175178 -'Star Trek: The Next Generation - A Final Unity': +"Star Trek: The Next Generation - A Final Unity": pageId: 157332 templates: - - '{{Game data/config|DOS|{{p|game}}\STTNG.INI}}' - - '{{Game data/saves|DOS|{{p|game}}\SAVEGAME\SAVEGAME.*}}' -'Star Trek: The Next Generation - Birth of the Federation': + - "{{Game data/config|DOS|{{p|game}}\\STTNG.INI}}" + - "{{Game data/saves|DOS|{{p|game}}\\SAVEGAME\\SAVEGAME.*}}" +"Star Trek: The Next Generation - Birth of the Federation": pageId: 170478 templates: - - '{{Game data/config|Windows|{{p|game}}\stbof.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\game*.sav}}' -'Star Trek: The Next Generation - Klingon Honor Guard': + - "{{Game data/config|Windows|{{p|game}}\\stbof.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\game*.sav}}" +"Star Trek: The Next Generation - Klingon Honor Guard": pageId: 24311 templates: - - '{{Game data/config|Windows|{{p|game}}\System\khg.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\Save}}' -'Star Trek: Voyager - Elite Force': + - "{{Game data/config|Windows|{{p|game}}\\System\\khg.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\Save}}" +"Star Trek: Voyager - Elite Force": gog: 1581756945 pageId: 166 templates: - - '{{Game data/config|Windows|{{p|game}}\BaseEF\efconfig.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\BaseEF\saves}}' + - "{{Game data/config|Windows|{{p|game}}\\BaseEF\\efconfig.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\BaseEF\\saves}}" Star Trigon: pageId: 160020 templates: - - '{{Game data/config|Windows|{{P|game}}\gameoption.dat}}' - - '{{Game data/saves|Windows|{{P|game}}\gamedata.dat|{{P|game}}\*0.usr}}' + - "{{Game data/config|Windows|{{P|game}}\\gameoption.dat}}" + - "{{Game data/saves|Windows|{{P|game}}\\gamedata.dat|{{P|game}}\\*0.usr}}" Star Valor: pageId: 94024 steam: 833360 templates: - - >- - {{Game data/config|Windows| [[Glossary:Game_data#Steam_client|]]\steamapps\common\Star - Valor\Save_Data}} + - "{{Game data/config|Windows| [[Glossary:Game_data#Steam_client|]]\\steamapps\\common\\Star Valor\\Save_Data}}" Star Vikings Forever: gog: 1476323769 pageId: 38795 steam: 488960 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\com.RogueSnail\StarVikings\}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\com_RogueSnail\StarVikings\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\com.RogueSnail\\StarVikings\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\com_RogueSnail\\StarVikings\\}}" Star Waker: pageId: 68158 steam: 693090 @@ -153282,20 +149194,20 @@ Star Wars Battlefront (2015): pageId: 17706 steam: 1237980 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\STAR WARS Battlefront\settings\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\STAR WARS Battlefront\settings\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\STAR WARS Battlefront\\settings\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\STAR WARS Battlefront\\settings\\}}" Star Wars Battlefront II (2017): pageId: 61819 steam: 1237950 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\STAR WARS Battlefront II\settings\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\STAR WARS Battlefront II\settings\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\STAR WARS Battlefront II\\settings\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\STAR WARS Battlefront II\\settings\\}}" Star Wars Eclipse: pageId: 173572 Star Wars Galaxies: pageId: 15405 steam: 24170 -'Star Wars Jedi: Fallen Order': +"Star Wars Jedi: Fallen Order": pageId: 133380 steam: 1172380 steamSide: @@ -153306,364 +149218,327 @@ Star Wars Galaxies: - 1179200 - 1192320 templates: - - >- - {{Game - data/config|Windows|{{P|localappdata}}\SwGame\Saved\Config\WindowsNoEditor\GameUserSettings.ini|{{P|userprofile}}\Saved - Games\Respawn\JediFallenOrder\GameUserSettings.sav}} - - '{{Game data/saves|Windows|{{P|userprofile}}\Saved Games\Respawn\JediFallenOrder\}}' -'Star Wars Jedi: Survivor': + - "{{Game data/config|Windows|{{P|localappdata}}\\SwGame\\Saved\\Config\\WindowsNoEditor\\GameUserSettings.ini|{{P|userprofile}}\\Saved Games\\Respawn\\JediFallenOrder\\GameUserSettings.sav}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\Saved Games\\Respawn\\JediFallenOrder\\}}" +"Star Wars Jedi: Survivor": pageId: 177916 steam: 1774580 templates: - - >- - {{Game - data/config|Windows|{{P|localappdata}}\SwGame\Saved\Config\WindowsNoEditor\GameUserSettings.ini|{{P|userprofile}}\Saved - Games\Respawn\JediSurvivor\GameUserSettings.sav}} - - '{{Game data/saves|Windows|{{P|userprofile}}\Saved Games\Respawn\JediSurvivor\}}' -'Star Wars Math: Jabba''s Game Galaxy': + - "{{Game data/config|Windows|{{P|localappdata}}\\SwGame\\Saved\\Config\\WindowsNoEditor\\GameUserSettings.ini|{{P|userprofile}}\\Saved Games\\Respawn\\JediSurvivor\\GameUserSettings.sav}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\Saved Games\\Respawn\\JediSurvivor\\}}" +"Star Wars Math: Jabba's Game Galaxy": pageId: 171561 Star Wars Outlaws: pageId: 187901 -'Star Wars: Battlefront': +"Star Wars: Battlefront": gog: 1668107107 pageId: 5267 steam: 1058020 templates: - - '{{Game data/config|Windows|{{p|game}}\GameData\SaveGames\*.profile}}' - - '{{Game data/saves|Windows|{{p|game}}\GameData\SaveGames}}' -'Star Wars: Battlefront II': + - "{{Game data/config|Windows|{{p|game}}\\GameData\\SaveGames\\*.profile}}" + - "{{Game data/saves|Windows|{{p|game}}\\GameData\\SaveGames}}" +"Star Wars: Battlefront II": gog: 1421404701 pageId: 114 steam: 6060 templates: - - '{{Game data/config|Windows|{{p|game}}\GameData\SaveGames}}' - - '{{Game data/saves|Windows|{{p|game}}\GameData\SaveGames}}' -'Star Wars: Dark Forces': + - "{{Game data/config|Windows|{{p|game}}\\GameData\\SaveGames}}" + - "{{Game data/saves|Windows|{{p|game}}\\GameData\\SaveGames}}" +"Star Wars: Dark Forces": gog: 1421404433 pageId: 1041 steam: 32400 templates: - - '{{Game data/config|DOS|{{P|game}}\JEDI.CFG}}' - - '{{Game data/config|Mac OS|Macintosh HD/System Folder/Preferences/Dark Forces Preferences}}' - - '{{Game data/saves|DOS|{{P|game}}\DARKPILO.CFG}}' - - '{{Game data/saves|Mac OS|Macintosh HD/System Folder/Preferences/Dark Forces Pilots}}' -'Star Wars: Dark Forces Remaster': + - "{{Game data/config|DOS|{{P|game}}\\JEDI.CFG}}" + - "{{Game data/config|Mac OS|Macintosh HD/System Folder/Preferences/Dark Forces Preferences}}" + - "{{Game data/saves|DOS|{{P|game}}\\DARKPILO.CFG}}" + - "{{Game data/saves|Mac OS|Macintosh HD/System Folder/Preferences/Dark Forces Pilots}}" +"Star Wars: Dark Forces Remaster": gog: 1853348102 pageId: 189334 steam: 2292260 -'Star Wars: Droid Repair Bay': +"Star Wars: Droid Repair Bay": pageId: 77553 steam: 726910 -'Star Wars: DroidWorks': +"Star Wars: DroidWorks": pageId: 120358 templates: - - '{{Game data/saves|Windows|{{p|game}}\player}}' -'Star Wars: Empire at War': + - "{{Game data/saves|Windows|{{p|game}}\\player}}" +"Star Wars: Empire at War": gog: 1421404887 pageId: 16879 steam: 32470 steamSide: - 32472 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Petroglyph\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\Saved Games\Petroglyph\Empire At War\Save\}}' -'Star Wars: Episode I - Battle for Naboo': + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Petroglyph\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Saved Games\\Petroglyph\\Empire At War\\Save\\}}" +"Star Wars: Episode I - Battle for Naboo": pageId: 6482 templates: - - '{{Game data/saves|Windows|{{p|game}}\data_pc\saves}}' -'Star Wars: Episode I - Racer': + - "{{Game data/saves|Windows|{{p|game}}\\data_pc\\saves}}" +"Star Wars: Episode I - Racer": gog: 1288119483 pageId: 6443 steam: 808910 templates: - - >- - {{Game data/config|Windows|{{p|hklm}}\SOFTWARE\{{p|wow64}}\LucasArts Entertainment Company LLC\Star Wars: Episode - I Racer\v1.0\}} - - '{{Game data/saves|Windows|{{p|game}}\data\player\}}' -'Star Wars: Episode I - The Gungan Frontier': + - "{{Game data/config|Windows|{{p|hklm}}\\SOFTWARE\\{{p|wow64}}\\LucasArts Entertainment Company LLC\\Star Wars: Episode I Racer\\v1.0\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\data\\player\\}}" +"Star Wars: Episode I - The Gungan Frontier": pageId: 168698 templates: - - '{{Game data/saves|Windows|{{p|game}}\Saved Games}}' -'Star Wars: Episode I - The Phantom Menace': + - "{{Game data/saves|Windows|{{p|game}}\\Saved Games}}" +"Star Wars: Episode I - The Phantom Menace": pageId: 3704 templates: - - '{{Game data/config|Windows|{{P|game}}\obi.ini}}' - - '{{Game data/saves|Windows|{{P|game}}\Save\}}' -'Star Wars: Force Commander': + - "{{Game data/config|Windows|{{P|game}}\\obi.ini}}" + - "{{Game data/saves|Windows|{{P|game}}\\Save\\}}" +"Star Wars: Force Commander": pageId: 16420 templates: - - >- - {{Game data/config|Windows|{{p|game}}\Resource\Options\FoCom.opt|{{p|HKLM}}\SOFTWARE\WOW6432Node\LucasArts - Entertainment Company LLC\Force Commander\v1.0\Settings}} - - >- - {{Game - data/saves|Windows|{{p|game}}\Resource\Players\FoCom{{P|uid}}.sfe|{{p|game}}\Resource\GameFiles\save{{P|uid}}.sav}} -'Star Wars: Galactic Battlegrounds': + - "{{Game data/config|Windows|{{p|game}}\\Resource\\Options\\FoCom.opt|{{p|HKLM}}\\SOFTWARE\\WOW6432Node\\LucasArts Entertainment Company LLC\\Force Commander\\v1.0\\Settings}}" + - "{{Game data/saves|Windows|{{p|game}}\\Resource\\Players\\FoCom{{P|uid}}.sfe|{{p|game}}\\Resource\\GameFiles\\save{{P|uid}}.sav}}" +"Star Wars: Galactic Battlegrounds": gog: 1421404646 pageId: 8814 steam: 356500 templates: - - >- - {{Game data/config|Windows|{{p|game}}\Game\player.nfx|{{p|game}}\Game\player.nf1|{{p|HKCU}}\Software\LucasArts - Entertainment Company LLC\Star Wars Galactic Battlegrounds: Clone Campaigns\1.0}} - - '{{Game data/saves|Windows|{{p|game}}\Game\SaveGame}}' -'Star Wars: Imperial Assault - Legends of the Alliance': + - "{{Game data/config|Windows|{{p|game}}\\Game\\player.nfx|{{p|game}}\\Game\\player.nf1|{{p|HKCU}}\\Software\\LucasArts Entertainment Company LLC\\Star Wars Galactic Battlegrounds: Clone Campaigns\\1.0}}" + - "{{Game data/saves|Windows|{{p|game}}\\Game\\SaveGame}}" +"Star Wars: Imperial Assault - Legends of the Alliance": pageId: 77053 steam: 703980 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Fantasy Flight Games\Legends of the Alliance\}}' - - '{{Game data/saves|Windows|{{P|game}}\Imperial Assault_Data\SavedGames}}' -'Star Wars: Jedi Knight - Dark Forces II': + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Fantasy Flight Games\\Legends of the Alliance\\}}" + - "{{Game data/saves|Windows|{{P|game}}\\Imperial Assault_Data\\SavedGames}}" +"Star Wars: Jedi Knight - Dark Forces II": gog: 1422286819 gogSide: - 1421405068 pageId: 841 steam: 32380 templates: - - >- - {{Game data/config|Windows|{{p|hklm}}\SOFTWARE\LucasArts Entertainment - Company\JediKnight\v1.0|{{p|game}}\Controls\}} - - '{{Game data/saves|Windows|{{p|game}}\player\}}' -'Star Wars: Jedi Knight - Jedi Academy': + - "{{Game data/config|Windows|{{p|hklm}}\\SOFTWARE\\LucasArts Entertainment Company\\JediKnight\\v1.0|{{p|game}}\\Controls\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\player\\}}" +"Star Wars: Jedi Knight - Jedi Academy": gog: 1428935726 pageId: 1068 steam: 6020 templates: - - '{{Game data/config|Windows|{{p|game}}\GameData\base\*.cfg}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Jedi Academy/base/*.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\GameData\base\saves\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Jedi Academy/base/saves/}}' -'Star Wars: Jedi Knight - Mysteries of the Sith': + - "{{Game data/config|Windows|{{p|game}}\\GameData\\base\\*.cfg}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Jedi Academy/base/*.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\GameData\\base\\saves\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Jedi Academy/base/saves/}}" +"Star Wars: Jedi Knight - Mysteries of the Sith": gog: 1422285784 gogSide: - 1421405068 pageId: 24475 steam: 32390 templates: - - >- - {{Game data/config|Windows|{{p|hklm}}\SOFTWARE\LucasArts Entertainment Company LLC\Mysteries of the - Sith\v1.0\|{{p|game}}\Controls\}} - - '{{Game data/saves|Windows|{{p|game}}\player\}}' -'Star Wars: Jedi Knight II - Jedi Outcast': + - "{{Game data/config|Windows|{{p|hklm}}\\SOFTWARE\\LucasArts Entertainment Company LLC\\Mysteries of the Sith\\v1.0\\|{{p|game}}\\Controls\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\player\\}}" +"Star Wars: Jedi Knight II - Jedi Outcast": gog: 1428935917 pageId: 1046 steam: 6030 templates: - - '{{Game data/config|Windows|{{p|game}}\GameData\base\*.cfg}}' - - '{{Game data/config|OS X|{{P|osxhome}}/Library/Application Support/Jedi Knight II/base/*.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\GameData\base\saves\}}' - - '{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/Jedi Knight II/base/saves/}}' -'Star Wars: Knights of the Old Republic': + - "{{Game data/config|Windows|{{p|game}}\\GameData\\base\\*.cfg}}" + - "{{Game data/config|OS X|{{P|osxhome}}/Library/Application Support/Jedi Knight II/base/*.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\GameData\\base\\saves\\}}" + - "{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/Jedi Knight II/base/saves/}}" +"Star Wars: Knights of the Old Republic": gog: 1207666283 pageId: 419 steam: 32370 templates: - - '{{Game data/config|Windows|{{p|game}}\swkotor.ini|{{p|game}}\swconfig.ini}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Knights of the Old Republic/}}' - - '{{Game data/saves|Windows|{{p|game}}\saves\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Knights of the Old Republic/saves}}' -'Star Wars: Knights of the Old Republic II - The Sith Lords': + - "{{Game data/config|Windows|{{p|game}}\\swkotor.ini|{{p|game}}\\swconfig.ini}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Knights of the Old Republic/}}" + - "{{Game data/saves|Windows|{{p|game}}\\saves\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Knights of the Old Republic/saves}}" +"Star Wars: Knights of the Old Republic II - The Sith Lords": gog: 1421404581 pageId: 168 steam: 208580 templates: - - '{{Game data/config|Windows|{{P|game}}\swkotor2.ini}}' - - >- - {{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Star Wars Knights of the Old Republic - II/swkotor2.ini}} - - '{{Game data/config|Linux|{{P|xdgdatahome}}/aspyr-media/kotor2/}}' - - '{{Game data/saves|Windows|{{p|game}}\Saves\}}' - - >- - {{Game data/saves|Windows|C:/Users/(username)/AppData/Local/VirtualStore/('Program Files' or 'Program Files - (x86)')/LucasArts/SWKotOR2/saves}} - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Star Wars Knights of the Old Republic II/saves/}}' - - >- - {{Game data/saves|Mac App - Store|{{p|osxhome}}/Library/Containers/com.aspyr.kotor2.appstore/Data/Library/Application Support/Star Wars - Knights of the Old Republic II/saves/}} - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/aspyr-media/kotor2/saves/}}' -'Star Wars: Knights of the Old Republic – Remake': + - "{{Game data/config|Windows|{{P|game}}\\swkotor2.ini}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Star Wars Knights of the Old Republic II/swkotor2.ini}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/aspyr-media/kotor2/}}" + - "{{Game data/saves|Windows|{{p|game}}\\Saves\\}}" + - "{{Game data/saves|Windows|C:/Users/(username)/AppData/Local/VirtualStore/('Program Files' or 'Program Files (x86)')/LucasArts/SWKotOR2/saves}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Star Wars Knights of the Old Republic II/saves/}}" + - "{{Game data/saves|Mac App Store|{{p|osxhome}}/Library/Containers/com.aspyr.kotor2.appstore/Data/Library/Application Support/Star Wars Knights of the Old Republic II/saves/}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/aspyr-media/kotor2/saves/}}" +"Star Wars: Knights of the Old Republic – Remake": pageId: 171361 -'Star Wars: Pit Droids': +"Star Wars: Pit Droids": pageId: 171562 -'Star Wars: Rebel Assault': +"Star Wars: Rebel Assault": gog: 1429104954 gogSide: - 1429011813 pageId: 32872 steam: 456540 templates: - - '{{Game data/config|DOS|{{P|game}}\REBEL.CFG}}' -'Star Wars: Rebel Assault II: The Hidden Empire': + - "{{Game data/config|DOS|{{P|game}}\\REBEL.CFG}}" +"Star Wars: Rebel Assault II: The Hidden Empire": gog: 1429105182 gogSide: - 1429011813 pageId: 32874 steam: 456540 templates: - - '{{Game data/config|DOS|{{P|game}}\REBEL2.CFG}}' - - '{{Game data/saves|DOS|{{P|game}}\REBEL2.PIL}}' -'Star Wars: Rebellion': + - "{{Game data/config|DOS|{{P|game}}\\REBEL2.CFG}}" + - "{{Game data/saves|DOS|{{P|game}}\\REBEL2.PIL}}" +"Star Wars: Rebellion": gog: 1421404828 pageId: 3571 steam: 441550 templates: - - '{{Game data/saves|Windows|{{p|game}}\SaveGame}}' -'Star Wars: Republic Commando': + - "{{Game data/saves|Windows|{{p|game}}\\SaveGame}}" +"Star Wars: Republic Commando": gog: 1421405135 pageId: 1387 steam: 6000 templates: - - '{{Game data/config|Windows|{{p|game}}\GameData\System\system.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\GameData\Save\}}' -'Star Wars: Rogue Squadron 3D': + - "{{Game data/config|Windows|{{p|game}}\\GameData\\System\\system.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\GameData\\Save\\}}" +"Star Wars: Rogue Squadron 3D": gog: 1421404950 pageId: 2219 steam: 455910 templates: - - >- - {{Game data/config|Windows|{{p|HKLM}}\SOFTWARE\{{p|wow64}}\LucasArts Entertainment Company LLC\Rogue - Squadron\v1.0}} - - '{{Game data/saves|Windows|{{p|game}}\PlayerProfiles}}' -'Star Wars: Shadows of the Empire': + - "{{Game data/config|Windows|{{p|HKLM}}\\SOFTWARE\\{{p|wow64}}\\LucasArts Entertainment Company LLC\\Rogue Squadron\\v1.0}}" + - "{{Game data/saves|Windows|{{p|game}}\\PlayerProfiles}}" +"Star Wars: Shadows of the Empire": gog: 1449669419 pageId: 5465 steam: 560170 templates: - - '{{Game data/config|Windows|{{p|game}}\|{{p|hklm}}\SOFTWARE\LucasArts Entertainment Company\Shadows of the Empire}}' - - '{{Game data/saves|Windows|{{p|game}}\*.soe}}' -'Star Wars: Squadrons': + - "{{Game data/config|Windows|{{p|game}}\\|{{p|hklm}}\\SOFTWARE\\LucasArts Entertainment Company\\Shadows of the Empire}}" + - "{{Game data/saves|Windows|{{p|game}}\\*.soe}}" +"Star Wars: Squadrons": pageId: 161058 steam: 1222730 templates: - - '{{Game data/config|Windows|{{p|userprofile\documents}}\STAR WARS Squadrons\settings}}' - - '{{Game data/config|Steam|{{p|userprofile\documents}}\STAR WARS Squadrons Steam\settings}}' - - '{{Game data/saves|Windows|{{p|userprofile\documents}}\STAR WARS Squadrons\settings}}' - - '{{Game data/saves|Steam|{{p|userprofile\documents}}\STAR WARS Squadrons Steam\settings}}' -'Star Wars: Starfighter': + - "{{Game data/config|Windows|{{p|userprofile\\documents}}\\STAR WARS Squadrons\\settings}}" + - "{{Game data/config|Steam|{{p|userprofile\\documents}}\\STAR WARS Squadrons Steam\\settings}}" + - "{{Game data/saves|Windows|{{p|userprofile\\documents}}\\STAR WARS Squadrons\\settings}}" + - "{{Game data/saves|Steam|{{p|userprofile\\documents}}\\STAR WARS Squadrons Steam\\settings}}" +"Star Wars: Starfighter": gog: 1421404999 pageId: 19464 steam: 32350 templates: - - >- - {{Game data/config|Windows|{{p|hklm}}\SOFTWARE\{{p|wow64}}\LucasArts Entertainment Company LLC\Star Wars - Starfighter\1.0\*}} - - '{{Game data/saves|Windows|{{p|game}}\Game\Save Games}}' -'Star Wars: TIE Fighter': + - "{{Game data/config|Windows|{{p|hklm}}\\SOFTWARE\\{{p|wow64}}\\LucasArts Entertainment Company LLC\\Star Wars Starfighter\\1.0\\*}}" + - "{{Game data/saves|Windows|{{p|game}}\\Game\\Save Games}}" +"Star Wars: TIE Fighter": gog: 1207666273 pageId: 641 steam: 355250 templates: - - '{{Game data/saves|Windows|{{p|game}}\{{p|uid}}.tfr}}' -'Star Wars: The Clone Wars - Republic Heroes': + - "{{Game data/saves|Windows|{{p|game}}\\{{p|uid}}.tfr}}" +"Star Wars: The Clone Wars - Republic Heroes": pageId: 14964 steam: 32420 templates: - - '{{Game data/config|Windows|{{P|programdata}}\SWTCWRH\}}' - - '{{Game data/saves|Windows|{{P|programdata}}\SWTCWRH\}}' -'Star Wars: The Force Unleashed': + - "{{Game data/config|Windows|{{P|programdata}}\\SWTCWRH\\}}" + - "{{Game data/saves|Windows|{{P|programdata}}\\SWTCWRH\\}}" +"Star Wars: The Force Unleashed": gog: 1189268228 pageId: 1121 steam: 32430 templates: - - >- - {{Game data/config|Windows|{{p|localappdata}}\Aspyr\Star Wars The Force - Unleashed\|{{p|hklm}}\SOFTWARE\{{P|wow64}}\aspyr\star wars the force unleashed\}} - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Preferences/com.aspyr.swtfu.steam.plist/}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Aspyr\Star Wars The Force Unleashed\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Star Wars The Force Unleashed/SWTFU.BIN/}}' -'Star Wars: The Force Unleashed II': + - "{{Game data/config|Windows|{{p|localappdata}}\\Aspyr\\Star Wars The Force Unleashed\\|{{p|hklm}}\\SOFTWARE\\{{P|wow64}}\\aspyr\\star wars the force unleashed\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Preferences/com.aspyr.swtfu.steam.plist/}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Aspyr\\Star Wars The Force Unleashed\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Star Wars The Force Unleashed/SWTFU.BIN/}}" +"Star Wars: The Force Unleashed II": gog: 1174280500 pageId: 3171 steam: 32500 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\LucasArts\Star Wars The Force Unleashed 2\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\LucasArts\Star Wars The Force Unleashed 2\Saves\}}' -'Star Wars: The Old Republic': + - "{{Game data/config|Windows|{{p|localappdata}}\\LucasArts\\Star Wars The Force Unleashed 2\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\LucasArts\\Star Wars The Force Unleashed 2\\Saves\\}}" +"Star Wars: The Old Republic": pageId: 124 steam: 1286830 steamSide: - 1303891 - - 1346541 - 1346540 + - 1346541 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\SWTOR\}}' -'Star Wars: Trials on Tatooine': + - "{{Game data/config|Windows|{{p|localappdata}}\\SWTOR\\}}" +"Star Wars: Trials on Tatooine": pageId: 35561 steam: 381940 -'Star Wars: X-Wing': +"Star Wars: X-Wing": gog: 1207666263 pageId: 642 steam: 354430 templates: - - '{{Game data/saves|Windows|{{p|game}}\*.PLT}}' -'Star Wars: X-Wing Alliance': + - "{{Game data/saves|Windows|{{p|game}}\\*.PLT}}" +"Star Wars: X-Wing Alliance": gog: 1421404763 pageId: 676 steam: 361670 templates: - - '{{Game data/config|Windows|{{p|game}}\config.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\{{P|uid}}.plt}}' -'Star Wars: X-Wing vs. TIE Fighter': + - "{{Game data/config|Windows|{{p|game}}\\config.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\{{P|uid}}.plt}}" +"Star Wars: X-Wing vs. TIE Fighter": gog: 1421404508 pageId: 11655 steam: 361690 templates: - - '{{Game data/config|Windows|{{p|game}}\Config.cfg|{{p|game}}\BalanceOfPower\config2.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\*.plt|{{p|game}}\BalanceOfPower\*.pl2}}' -'Star Wars: Yoda Stories': + - "{{Game data/config|Windows|{{p|game}}\\Config.cfg|{{p|game}}\\BalanceOfPower\\config2.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\*.plt|{{p|game}}\\BalanceOfPower\\*.pl2}}" +"Star Wars: Yoda Stories": pageId: 6117 templates: - - '{{Game data/config|Windows|{{p|windir}}\Yodesk.ini}}' + - "{{Game data/config|Windows|{{p|windir}}\\Yodesk.ini}}" Star Wolves: gog: 1207658864 pageId: 21133 steam: 46270 templates: - - >- - {{Game - data/config|Windows|{{P|game}}\Main.ini|{{P|game}}\default.cfg|{{P|game}}\Profiles\*\*.cfg|{{P|game}}\Profiles\*\profile.info}} - - '{{Game data/saves|Windows|{{P|game}}\Profiles\*\Save\}}' + - "{{Game data/config|Windows|{{P|game}}\\Main.ini|{{P|game}}\\default.cfg|{{P|game}}\\Profiles\\*\\*.cfg|{{P|game}}\\Profiles\\*\\profile.info}}" + - "{{Game data/saves|Windows|{{P|game}}\\Profiles\\*\\Save\\}}" Star Wolves 2: gog: 1452257327 pageId: 34265 steam: 46280 templates: - - >- - {{Game - data/config|Windows|{{p|game}}\default.cfg|{{p|game}}\Main.ini|{{p|game}}\Profiles\{{p|uid}}\{{p|uid}}.cfg|{{p|game}}\Profiles\{{p|uid}}\profile.info}} - - '{{Game data/saves|Windows|{{p|game}}\Profiles\{{p|uid}}\Save}}' -'Star Wolves 3: Civil War': + - "{{Game data/config|Windows|{{p|game}}\\default.cfg|{{p|game}}\\Main.ini|{{p|game}}\\Profiles\\{{p|uid}}\\{{p|uid}}.cfg|{{p|game}}\\Profiles\\{{p|uid}}\\profile.info}}" + - "{{Game data/saves|Windows|{{p|game}}\\Profiles\\{{p|uid}}\\Save}}" +"Star Wolves 3: Civil War": gog: 1426253436 pageId: 34207 steam: 46260 templates: - - >- - {{Game - data/config|Windows|{{P|game}}\Main.ini|{{P|game}}\default.cfg|{{P|game}}\Profiles\*\*.cfg|{{P|game}}\Profiles\*\profile.info}} - - '{{Game data/saves|Windows|{{P|game}}\Profiles\*\Save\}}' + - "{{Game data/config|Windows|{{P|game}}\\Main.ini|{{P|game}}\\default.cfg|{{P|game}}\\Profiles\\*\\*.cfg|{{P|game}}\\Profiles\\*\\profile.info}}" + - "{{Game data/saves|Windows|{{P|game}}\\Profiles\\*\\Save\\}}" Star Wraith 2: pageId: 9376 templates: - - '{{Game data/config|Windows|{{p|game}}\sw.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\*.sw}}' -'Star Wraith IV: Reviction': + - "{{Game data/config|Windows|{{p|game}}\\sw.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\*.sw}}" +"Star Wraith IV: Reviction": pageId: 9382 templates: - - '{{Game data/config|Windows|{{p|game}}\sw.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\pilot*.sw}}' -'Star Wraith: Shadows of Orion': + - "{{Game data/config|Windows|{{p|game}}\\sw.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\pilot*.sw}}" +"Star Wraith: Shadows of Orion": pageId: 9378 templates: - - '{{Game data/config|Windows|{{p|game}}\sw.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\pilot.sw}}' + - "{{Game data/config|Windows|{{p|game}}\\sw.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\pilot.sw}}" Star girls: pageId: 153388 steam: 1199550 Star of Lemutia: pageId: 78110 steam: 740560 -'Star of Lemutia : Reborn': +"Star of Lemutia : Reborn": pageId: 153748 steam: 1194890 Star of Providence: @@ -153673,14 +149548,14 @@ Star of Providence: - Monolith steam: 603960 templates: - - '{{Game data/config|Windows|{{P|appdata}}\Monolith}}' - - '{{Game data/config|Linux|{{P|xdgconfighome}}/Monolith}}' - - '{{Game data/saves|Windows|{{P|appdata}}\Monolith}}' - - '{{Game data/saves|Linux|{{P|xdgconfighome}}/Monolith}}' -Star'Shoot: + - "{{Game data/config|Windows|{{P|appdata}}\\Monolith}}" + - "{{Game data/config|Linux|{{P|xdgconfighome}}/Monolith}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\Monolith}}" + - "{{Game data/saves|Linux|{{P|xdgconfighome}}/Monolith}}" +"Star'Shoot": pageId: 100094 steam: 882080 -'Star-Box: RPG Adventures in Space': +"Star-Box: RPG Adventures in Space": pageId: 46847 steam: 363510 Star-Pit Starship: @@ -153693,12 +149568,12 @@ Star-Twine: pageId: 54299 steam: 548110 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Star-Twine\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Star-Twine/}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/Star-Twine/}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Star-Twine\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Star-Twine/}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/Star-Twine/}}' + - "{{Game data/config|Windows|{{p|appdata}}\\Star-Twine\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Star-Twine/}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/Star-Twine/}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Star-Twine\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Star-Twine/}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/Star-Twine/}}" Star99: pageId: 175582 steam: 918700 @@ -153711,25 +149586,25 @@ StarBreak: StarCraft: pageId: 303 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\Starcraft\CSettings.json}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Blizzard/StarCraft/CSettings.json}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\Starcraft\Characters\{{P|uid}}}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Blizzard/StarCraft/Characters/{{P|uid}}}}' + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\Starcraft\\CSettings.json}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Blizzard/StarCraft/CSettings.json}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\Starcraft\\Characters\\{{P|uid}}}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Blizzard/StarCraft/Characters/{{P|uid}}}}" StarCraft II: pageId: 109 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\StarCraft II\Accounts\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\StarCraft II\Accounts\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Blizzard/StarCraft II/Accounts/}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\StarCraft II\\Accounts\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\StarCraft II\\Accounts\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Blizzard/StarCraft II/Accounts/}}" StarCrawlers: gog: 1432039876 pageId: 34362 steam: 318970 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\Juggernaut Games\Starcrawlers\}}' - - '{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/Juggernaut Games/StarCrawlers/}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Juggernaut Games\Starcrawlers\SaveGame\}}' - - '{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/Juggernaut Games/StarCrawlers/SaveGame/}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Juggernaut Games\\Starcrawlers\\}}" + - "{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/Juggernaut Games/StarCrawlers/}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Juggernaut Games\\Starcrawlers\\SaveGame\\}}" + - "{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/Juggernaut Games/StarCrawlers/SaveGame/}}" StarCrawlers Chimera: gog: 1641407586 pageId: 169722 @@ -153741,45 +149616,45 @@ StarDrive: pageId: 6102 steam: 220660 templates: - - '{{Game data/config|Windows|{{p|appdata}}\StarDrive}}' - - '{{Game data/saves|Windows|{{p|appdata}}\StarDrive\Saved Games}}' + - "{{Game data/config|Windows|{{p|appdata}}\\StarDrive}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\StarDrive\\Saved Games}}" StarDrive 2: pageId: 24558 steam: 252450 templates: - - '{{Game data/config|Windows|{{P|userprofile}}\AppData\LocalLow\Zero Sum Games\StarDrive 2\}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Zero Sum Games/StarDrive 2/}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Zero Sum Games\StarDrive 2\SavedGames}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3D/Zero Sum Games/StarDrive 2/SavedGames}}' + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Zero Sum Games\\StarDrive 2\\}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Zero Sum Games/StarDrive 2/}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Zero Sum Games\\StarDrive 2\\SavedGames}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3D/Zero Sum Games/StarDrive 2/SavedGames}}" StarDrone VR: pageId: 104651 steam: 523890 -'StarFence: Heroic Edition': +"StarFence: Heroic Edition": pageId: 48172 steam: 360750 -'StarForce 2193: The Hotep Controversy': +"StarForce 2193: The Hotep Controversy": pageId: 41571 steam: 400230 StarForge: pageId: 5736 steam: 227680 -'StarFringe: Adversus': +"StarFringe: Adversus": pageId: 43750 steam: 458030 StarLancer: pageId: 19079 templates: - - '{{Game data/config|Windows|{{P|game}}\starlancer.ini}}' - - '{{Game data/saves|Windows|{{P|game}}\SAVES}}' -'StarLightRiders: HyperJump': + - "{{Game data/config|Windows|{{P|game}}\\starlancer.ini}}" + - "{{Game data/saves|Windows|{{P|game}}\\SAVES}}" +"StarLightRiders: HyperJump": pageId: 128475 steam: 605980 StarMade: pageId: 9085 steam: 244770 templates: - - '{{Game data/config|Windows|{{p|game}}/Starmade/}}' - - '{{Game data/saves|Windows|{{p|game}}/Starmade/server-database/}}' + - "{{Game data/config|Windows|{{p|game}}/Starmade/}}" + - "{{Game data/saves|Windows|{{p|game}}/Starmade/server-database/}}" StarShip Constructor: pageId: 62914 steam: 569770 @@ -153796,11 +149671,11 @@ Starbase: pageId: 139296 steam: 454120 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Starbase}}' + - "{{Game data/config|Windows|{{p|appdata}}\\Starbase}}" Starbase Admiral: pageId: 142295 steam: 1113030 -'Starbear: Taxi': +"Starbear: Taxi": pageId: 93545 steam: 702030 Starblast: @@ -153819,14 +149694,14 @@ Starbound: steamSide: - 367540 templates: - - '{{Game data/config|Windows|{{p|game}}\storage\starbound.config}}' - - '{{Game data/config|Microsoft Store|{{p|userprofile\documents}}\Starbound\starbound.config}}' - - '{{Game data/config|OS X|{{p|game}}/storage/starbound.config}}' - - '{{Game data/config|Linux|{{p|game}}/storage/starbound.config}}' - - '{{Game data/saves|Windows|{{p|game}}\storage\}}' - - '{{Game data/saves|Microsoft Store|{{p|userprofile\documents}}\Starbound\}}' - - '{{Game data/saves|OS X|{{p|game}}/storage/}}' - - '{{Game data/saves|Linux|{{p|game}}/storage/}}' + - "{{Game data/config|Windows|{{p|game}}\\storage\\starbound.config}}" + - "{{Game data/config|Microsoft Store|{{p|userprofile\\documents}}\\Starbound\\starbound.config}}" + - "{{Game data/config|OS X|{{p|game}}/storage/starbound.config}}" + - "{{Game data/config|Linux|{{p|game}}/storage/starbound.config}}" + - "{{Game data/saves|Windows|{{p|game}}\\storage\\}}" + - "{{Game data/saves|Microsoft Store|{{p|userprofile\\documents}}\\Starbound\\}}" + - "{{Game data/saves|OS X|{{p|game}}/storage/}}" + - "{{Game data/saves|Linux|{{p|game}}/storage/}}" Starbucket: pageId: 89399 steam: 810050 @@ -153839,15 +149714,15 @@ Starcatcher: Starcats: pageId: 93657 steam: 724920 -'Starchaser: Priestess of the Night Sky': +"Starchaser: Priestess of the Night Sky": pageId: 47131 steam: 365850 -'Starcom: Nexus': +"Starcom: Nexus": gog: 1761387470 pageId: 109088 steam: 863590 templates: - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\Wx3 Labs, LLC\Starcom Nexus\saves}}' + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\Wx3 Labs, LLC\\Starcom Nexus\\saves}}" Starcross Arena: pageId: 122142 steam: 945870 @@ -153856,20 +149731,20 @@ Stardeus: pageId: 171130 steam: 1380910 templates: - - '{{Game data/saves|Windows|{{Path|userprofile\appdata\locallow}}\Kodo Linija\Stardeus\Saves\}}' - - '{{Game data/saves|OS X|{{Path|osxhome}}/Library/Application Support/Kodo Linija/Stardeus/Saves/}}' - - '{{Game data/saves|Linux|{{Path|linuxhome}}/.config/unity3d/Kodo Linija/Stardeus/Saves/}}' + - "{{Game data/saves|Windows|{{Path|userprofile\\appdata\\locallow}}\\Kodo Linija\\Stardeus\\Saves\\}}" + - "{{Game data/saves|OS X|{{Path|osxhome}}/Library/Application Support/Kodo Linija/Stardeus/Saves/}}" + - "{{Game data/saves|Linux|{{Path|linuxhome}}/.config/unity3d/Kodo Linija/Stardeus/Saves/}}" Stardew Valley: gog: 1453375253 pageId: 31535 steam: 413150 templates: - - '{{Game data/config|Windows|{{p|appdata}}\StardewValley\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/.config/StardewValley/}}' - - '{{Game data/config|Linux|{{p|xdgconfighome}}/StardewValley/}}' - - '{{Game data/saves|Windows|{{p|appdata}}\StardewValley\Saves\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/.config/StardewValley/Saves/}}' - - '{{Game data/saves|Linux|{{p|xdgconfighome}}/StardewValley/Saves/}}' + - "{{Game data/config|Windows|{{p|appdata}}\\StardewValley\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/.config/StardewValley/}}" + - "{{Game data/config|Linux|{{p|xdgconfighome}}/StardewValley/}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\StardewValley\\Saves\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/.config/StardewValley/Saves/}}" + - "{{Game data/saves|Linux|{{p|xdgconfighome}}/StardewValley/Saves/}}" Stardrift Nomads: pageId: 59093 steam: 381250 @@ -153877,8 +149752,8 @@ Stardrop: pageId: 56521 steam: 552880 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\STARDROP\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\STARDROP\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\STARDROP\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\STARDROP\\Saved\\SaveGames\\}}" Stardust Galaxy Warriors: pageId: 37650 steam: 389650 @@ -153892,9 +149767,9 @@ Stardust Vanguards: pageId: 28577 steam: 341530 templates: - - '{{Game data/config|Windows|{{p|game}}\settings.cfg|{{p|hkcu}}\SOFTWARE\Zanrai Interactive\Stardust Vanguards\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Zanrai Interactive\Stardust Vanguards\}}' -'Stare : Block Breaker': + - "{{Game data/config|Windows|{{p|game}}\\settings.cfg|{{p|hkcu}}\\SOFTWARE\\Zanrai Interactive\\Stardust Vanguards\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Zanrai Interactive\\Stardust Vanguards\\}}" +"Stare : Block Breaker": pageId: 144907 steam: 1146450 Starena: @@ -153907,12 +149782,10 @@ Starfield: pageId: 163920 steam: 1716740 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Starfield\}}' - - '{{Game data/config|Microsoft Store|{{p|userprofile\Documents}}\My Games\Starfield\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Starfield\Saves\}}' - - >- - {{Game data/saves|Microsoft - Store|{{p|localappdata}}\Packages\BethesdaSoftworks.ProjectGold_3275kfvn8vcwc\SystemAppData\wgs\{{P|uid}}}} + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Starfield\\}}" + - "{{Game data/config|Microsoft Store|{{p|userprofile\\Documents}}\\My Games\\Starfield\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Starfield\\Saves\\}}" + - "{{Game data/saves|Microsoft Store|{{p|localappdata}}\\Packages\\BethesdaSoftworks.ProjectGold_3275kfvn8vcwc\\SystemAppData\\wgs\\{{P|uid}}}}" Starfield Wars: pageId: 98852 steam: 886290 @@ -153931,18 +149804,18 @@ Starfighter Origins: Starfighter X: pageId: 113364 steam: 854990 -'Starfighter: Infinity': +"Starfighter: Infinity": pageId: 135632 steam: 967330 Starflight: gog: 1207662393 pageId: 14456 -'Starflight 2: Trade Routes of the Cloud Nebula': +"Starflight 2: Trade Routes of the Cloud Nebula": gog: 1207662403 pageId: 14459 Stargate: pageId: 176023 -'Stargate: Timekeepers': +"Stargate: Timekeepers": gog: 1728174162 pageId: 173689 steam: 1523650 @@ -153960,12 +149833,12 @@ Stargunner: pageId: 5916 steam: 358390 templates: - - '{{Game data/config|DOS|{{p|game}}\STARGUN.CFG}}' - - '{{Game data/saves|DOS|{{p|game}}\STARGUN.SAV|{{p|game}}\STARGUN.HI}}' + - "{{Game data/config|DOS|{{p|game}}\\STARGUN.CFG}}" + - "{{Game data/saves|DOS|{{p|game}}\\STARGUN.SAV|{{p|game}}\\STARGUN.HI}}" Starion Tactics: pageId: 49679 steam: 312960 -Starkid's Obstacle Course: +"Starkid's Obstacle Course": pageId: 122280 steam: 906370 Starlaxis Supernova Edition: @@ -153981,7 +149854,7 @@ Starlight Drifter: pageId: 43005 steam: 326060 templates: - - '{{Game data/saves|Windows|{{P|game}}\game\saves}}' + - "{{Game data/saves|Windows|{{P|game}}\\game\\saves}}" Starlight Inception: pageId: 10598 steam: 250720 @@ -153994,13 +149867,13 @@ Starlight Vega: Starlight of Aeons: pageId: 74996 steam: 644200 -'Starlink: Battle for Atlas': +"Starlink: Battle for Atlas": pageId: 134057 steam: 950050 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\My Games\Starlink - Battle For Atlas\}}' - - '{{Game data/saves|Windows|{{p|uplay}}\savegames\{{p|uid}}\5277\}}' -'Starlite: Astronaut Rescue': + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\My Games\\Starlink - Battle For Atlas\\}}" + - "{{Game data/saves|Windows|{{p|uplay}}\\savegames\\{{p|uid}}\\5277\\}}" +"Starlite: Astronaut Rescue": pageId: 50709 steam: 266090 Starlord: @@ -154008,15 +149881,15 @@ Starlord: pageId: 45633 steam: 410540 templates: - - '{{Game data/config|DOS|{{p|game}}\SOUND.DAT}}' - - '{{Game data/saves|DOS|{{p|game}}\*.SAV}}' + - "{{Game data/config|DOS|{{p|game}}\\SOUND.DAT}}" + - "{{Game data/saves|DOS|{{p|game}}\\*.SAV}}" Starman: pageId: 87465 steam: 804350 Starman in Space: pageId: 87007 steam: 804440 -Starman's VR Experience: +"Starman's VR Experience": pageId: 88138 steam: 810760 Starmancer: @@ -154027,8 +149900,8 @@ Starpoint Gemini: pageId: 10135 steam: 108110 templates: - - '{{Game data/config|Windows|{{P|game}}\GameConfiguration.cfg}}' - - '{{Game data/saves|Windows|{{P|game}}\Saves\}}' + - "{{Game data/config|Windows|{{P|game}}\\GameConfiguration.cfg}}" + - "{{Game data/saves|Windows|{{P|game}}\\Saves\\}}" Starpoint Gemini 2: gog: 1207666123 gogSide: @@ -154037,8 +149910,8 @@ Starpoint Gemini 2: pageId: 10133 steam: 236150 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/saves|Windows|{{P|game}}\Saves\}}' + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{P|game}}\\Saves\\}}" Starpoint Gemini 3: gog: 1842849845 pageId: 130434 @@ -154046,32 +149919,32 @@ Starpoint Gemini 3: steamSide: - 1127600 templates: - - '{{Game data/config|Windows|{{P|game}}\StarpointGemini3Configuration.cfg}}' - - '{{Game data/saves|Windows|{{P|game}}\Saves}}' + - "{{Game data/config|Windows|{{P|game}}\\StarpointGemini3Configuration.cfg}}" + - "{{Game data/saves|Windows|{{P|game}}\\Saves}}" Starpoint Gemini Warlords: gog: 2086603499 gogSide: - - 1790238622 - 1154080035 - - 1370908628 - 1171355317 - - 1688887856 + - 1370908628 - 1498330776 + - 1688887856 + - 1790238622 pageId: 41410 steam: 419480 templates: - - '{{Game data/config|Windows|{{P|game}}\StarpointGeminiWarlordsConfiguration.cfg}}' - - '{{Game data/saves|Windows|{{P|game}}\Saves\}}' + - "{{Game data/config|Windows|{{P|game}}\\StarpointGeminiWarlordsConfiguration.cfg}}" + - "{{Game data/saves|Windows|{{P|game}}\\Saves\\}}" Starport Delta: pageId: 122754 steam: 888130 Starquake Academy: pageId: 123782 steam: 978040 -'Starr Mazer: DSP': +"Starr Mazer: DSP": pageId: 36750 steam: 462100 -'Starry Nights: Helix': +"Starry Nights: Helix": pageId: 53876 steam: 546180 Stars: @@ -154101,61 +149974,51 @@ Starsand: pageId: 172517 steam: 1380220 templates: - - '{{Game data/saves|Steam|{{p|userprofile\appdata\locallow}}\Tunnel Vision Studio\Starsand\{{p|uid}}}}' + - "{{Game data/saves|Steam|{{p|userprofile\\appdata\\locallow}}\\Tunnel Vision Studio\\Starsand\\{{p|uid}}}}" Starscape: pageId: 41333 steam: 20700 templates: - - >- - {{Game - data/config|Windows|{{P|userprofile\Documents}}\Starscape\Starscape.cfg|{{P|userprofile\Documents}}\Starscape\data\keymap.dat}} - - >- - {{Game - data/saves|Windows|{{P|userprofile\Documents}}\Starscape\data\saves|{{P|userprofile\Documents}}\Starscape\data\records.bin}} + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\Starscape\\Starscape.cfg|{{P|userprofile\\Documents}}\\Starscape\\data\\keymap.dat}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\Starscape\\data\\saves|{{P|userprofile\\Documents}}\\Starscape\\data\\records.bin}}" Starsector: pageId: 143059 templates: - - |- - {{Game data/config|Windows| - {{P|game}}\starsector-core\data\config
- {{p|userprofile}}\Starsector\starsector-core\data\config}} - - '{{Game data/saves|Windows|{{p|userprofile}}\Starsector\saves\{{p|uid}}}}' + - "{{Game data/config|Windows|\n{{P|game}}\\starsector-core\\data\\config
\n{{p|userprofile}}\\Starsector\\starsector-core\\data\\config}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Starsector\\saves\\{{p|uid}}}}" Starseed Pilgrim: pageId: 7147 steam: 230980 templates: - - '{{Game data/config|Windows|{{p|appdata}}\StarseedPilgrim\Local Store\Starseed Pilgrim\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Preferences/StarseedPilgrim/}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.appdata/StarseedPilgrim/Local Store/Starseed Pilgrim/}}' - - '{{Game data/saves|Windows|{{p|appdata}}\StarseedPilgrim\Local Store\Starseed Pilgrim\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Preferences/StarseedPilgrim/}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.appdata/StarseedPilgrim/Local Store/Starseed Pilgrim/}}' -'Starshatter: The Gathering Storm': + - "{{Game data/config|Windows|{{p|appdata}}\\StarseedPilgrim\\Local Store\\Starseed Pilgrim\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Preferences/StarseedPilgrim/}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.appdata/StarseedPilgrim/Local Store/Starseed Pilgrim/}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\StarseedPilgrim\\Local Store\\Starseed Pilgrim\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Preferences/StarseedPilgrim/}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.appdata/StarseedPilgrim/Local Store/Starseed Pilgrim/}}" +"Starshatter: The Gathering Storm": pageId: 51584 templates: - - '{{Game data/config|Windows|{{P|game}}/audio.cfg|{{P|game}}/key.cfg|{{P|game}}/player.cfg|{{P|game}}/video.cfg}}' - - '{{Game data/saves|Windows|{{P|game}}/SaveGame}}' + - "{{Game data/config|Windows|{{P|game}}/audio.cfg|{{P|game}}/key.cfg|{{P|game}}/player.cfg|{{P|game}}/video.cfg}}" + - "{{Game data/saves|Windows|{{P|game}}/SaveGame}}" Starship Annihilator: pageId: 38645 steam: 525300 -'Starship Avenger Operation: Take Back Earth': +"Starship Avenger Operation: Take Back Earth": pageId: 104193 steam: 879100 Starship Clicker: pageId: 76573 steam: 744590 -'Starship Commander: Arcade': +"Starship Commander: Arcade": pageId: 123808 steam: 598400 Starship Corporation: pageId: 43281 steam: 292330 templates: - - |- - {{Game data/config|Windows| - {{p|Steam}}\steamapps\common\Starship Corporation\settings.ini| - {{p|Steam}}\steamapps\common\Starship Corporation\profiles.ini}} - - '{{Game data/saves|Windows|{{p|Steam}}\steamapps\common\Starship Corporation\saves\autousave.sav}}' + - "{{Game data/config|Windows|\n{{p|Steam}}\\steamapps\\common\\Starship Corporation\\settings.ini|\n{{p|Steam}}\\steamapps\\common\\Starship Corporation\\profiles.ini}}" + - "{{Game data/saves|Windows|{{p|Steam}}\\steamapps\\common\\Starship Corporation\\saves\\autousave.sav}}" Starship Disco: pageId: 36818 steam: 503690 @@ -154178,35 +150041,35 @@ Starship Theory: pageId: 63026 steam: 574760 templates: - - '{{Game data/saves|Windows|{{p|game}}\SaveData}}' + - "{{Game data/saves|Windows|{{p|game}}\\SaveData}}" Starship Titanic: gog: 1441102382 pageId: 3264 steam: 467290 templates: - - '{{Game data/saves|Windows|{{p|game}}\SaveGames\}}' + - "{{Game data/saves|Windows|{{p|game}}\\SaveGames\\}}" Starship Traveller: pageId: 48487 steam: 348180 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Tin Man Games\FF: Starship\}}' - - '{{Game data/saves|Windows|{{P|game}}\Documents\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Tin Man Games\\FF: Starship\\}}" + - "{{Game data/saves|Windows|{{P|game}}\\Documents\\}}" Starship Troopers: pageId: 20485 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Empire Interactive\SST\Settings}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Empire Interactive\SST\Saves}}' -'Starship Troopers: Extermination': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Empire Interactive\\SST\\Settings}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Empire Interactive\\SST\\Saves}}" +"Starship Troopers: Extermination": pageId: 187240 steam: 1268750 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Yakisoba\Saved\Config\WindowsNoEditor}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\Yakisoba\Saved\SaveGames\}}' -'Starship Troopers: Terran Ascendancy': + - "{{Game data/config|Windows|{{P|localappdata}}\\Yakisoba\\Saved\\Config\\WindowsNoEditor}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Yakisoba\\Saved\\SaveGames\\}}" +"Starship Troopers: Terran Ascendancy": pageId: 65526 templates: - - '{{Game data/saves|Windows|{{p|game}}\platoons\}}' -'Starship Troopers: Terran Command': + - "{{Game data/saves|Windows|{{p|game}}\\platoons\\}}" +"Starship Troopers: Terran Command": gog: 2138535729 pageId: 152633 renamedFrom: @@ -154216,31 +150079,31 @@ Starship Troopers: - 1753940 - 2139990 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Starship Troopers\Settings\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Starship Troopers\Saves\}}' -'Starship: Nova Strike': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Starship Troopers\\Settings\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Starship Troopers\\Saves\\}}" +"Starship: Nova Strike": pageId: 34948 steam: 457930 -'Starshot: Space Circus Fever': +"Starshot: Space Circus Fever": pageId: 69933 steam: 1437040 templates: - - '{{Game data/config|Windows|{{p|hklm}}\Software\Infogrames\Space Circus\}}' - - '{{Game data/saves|Windows|{{p|hklm}}\Software\Infogrames\Space Circus\}}' + - "{{Game data/config|Windows|{{p|hklm}}\\Software\\Infogrames\\Space Circus\\}}" + - "{{Game data/saves|Windows|{{p|hklm}}\\Software\\Infogrames\\Space Circus\\}}" Starsiege: pageId: 14706 templates: - - '{{Game data/config|Windows|{{p|game}}\defaultPrefs.cs}}' - - '{{Game data/saves|Windows|{{p|game}}\savedGames}}' -'Starsiege: Tribes': + - "{{Game data/config|Windows|{{p|game}}\\defaultPrefs.cs}}" + - "{{Game data/saves|Windows|{{p|game}}\\savedGames}}" +"Starsiege: Tribes": pageId: 417 templates: - - '{{Game data/config|Windows|{{p|game}}\config\ClientPrefs.cs}}' + - "{{Game data/config|Windows|{{p|game}}\\config\\ClientPrefs.cs}}" Starsky & Hutch: pageId: 89144 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Empire Interactive\Starsky&Hutch}}' - - '{{Game data/saves|Windows|{{p|hkcu}}\Software\Empire Interactive\Starsky&Hutch\Saves}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Empire Interactive\\Starsky&Hutch}}" + - "{{Game data/saves|Windows|{{p|hkcu}}\\Software\\Empire Interactive\\Starsky&Hutch\\Saves}}" Starsphere: pageId: 45900 steam: 408750 @@ -154270,16 +150133,16 @@ Startopia: pageId: 5226 steam: 243040 templates: - - '{{Game data/config|Windows|{{p|game}}\startopia.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\Profiles}}' + - "{{Game data/config|Windows|{{p|game}}\\startopia.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\Profiles}}" Startup Company: gog: 1276452005 pageId: 62086 steam: 606800 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\Saved Games\Startup Company}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Startup Company/SaveData}}' - - '{{Game data/saves|Linux|./StartupCompany/}}' + - "{{Game data/saves|Windows|{{p|userprofile}}\\Saved Games\\Startup Company}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Startup Company/SaveData}}" + - "{{Game data/saves|Linux|./StartupCompany/}}" Startup Freak: pageId: 73973 steam: 722660 @@ -154288,10 +150151,8 @@ Startup Panic: pageId: 163354 steam: 1045610 templates: - - >- - {{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\Algorock\Startup - Panic\Unity\18055e08-ad1d-4098-b10b-9a01243c783e\Analytics}} - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Algorock\Startup Panic}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Algorock\\Startup Panic\\Unity\\18055e08-ad1d-4098-b10b-9a01243c783e\\Analytics}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Algorock\\Startup Panic}}" Startup Valley Adventure - Episode 1: pageId: 128441 steam: 1020050 @@ -154311,9 +150172,9 @@ Starward Rogue: pageId: 37239 steam: 410820 templates: - - '{{Game data/config|Windows|{{P|game}}\RuntimeData\settings.dat|{{P|game}}\RuntimeData\inputbindings.dat}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Arcen Games, LLC/Starward Rogue}}' - - '{{Game data/saves|Windows|{{P|game}}\RuntimeData\Save\}}' + - "{{Game data/config|Windows|{{P|game}}\\RuntimeData\\settings.dat|{{P|game}}\\RuntimeData\\inputbindings.dat}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Arcen Games, LLC/Starward Rogue}}" + - "{{Game data/saves|Windows|{{P|game}}\\RuntimeData\\Save\\}}" Starway Fleet: pageId: 60954 steam: 610680 @@ -154324,8 +150185,8 @@ Starwhal: pageId: 26091 steam: 263020 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Breakfall\STARWHAL\}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Breakfall/STARWHAL}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Breakfall\\STARWHAL\\}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Breakfall/STARWHAL}}" Starxium 20XX: pageId: 128678 steam: 1013560 @@ -154346,13 +150207,13 @@ Stasis: pageId: 23079 steam: 380150 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\The Brotherhood\Stasis\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/The Brotherhood/Stasis/}}' - - '{{Game data/config|Linux|$HOME/.local/share/The Brotherhood/StasisLinux/}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\The Brotherhood\Stasis\Savegames\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/The Brotherhood/Stasis/Savegames/}}' - - '{{Game data/saves|Linux|$HOME/.local/share/The Brotherhood/StasisLinux/Savegames/}}' -'Stasis: Bone Totem': + - "{{Game data/config|Windows|{{P|localappdata}}\\The Brotherhood\\Stasis\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/The Brotherhood/Stasis/}}" + - "{{Game data/config|Linux|$HOME/.local/share/The Brotherhood/StasisLinux/}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\The Brotherhood\\Stasis\\Savegames\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/The Brotherhood/Stasis/Savegames/}}" + - "{{Game data/saves|Linux|$HOME/.local/share/The Brotherhood/StasisLinux/Savegames/}}" +"Stasis: Bone Totem": gog: 1841779300 gogSide: - 1351212717 @@ -154361,47 +150222,43 @@ Stasis: steamSide: - 1454210 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\THE BROTHERHOOD\STASIS2\configuration.ini}}' - - >- - {{Game data/saves|Windows|{{p|localappdata}}\THE BROTHERHOOD\STASIS2\*.bt|{{p|localappdata}}\THE - BROTHERHOOD\STASIS2\*.dat|{{p|localappdata}}\THE BROTHERHOOD\STASIS2\*.old}} + - "{{Game data/config|Windows|{{P|localappdata}}\\THE BROTHERHOOD\\STASIS2\\configuration.ini}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\THE BROTHERHOOD\\STASIS2\\*.bt|{{p|localappdata}}\\THE BROTHERHOOD\\STASIS2\\*.dat|{{p|localappdata}}\\THE BROTHERHOOD\\STASIS2\\*.old}}" State of Anarchy: pageId: 38357 steam: 463210 -'State of Anarchy: Master of Mayhem': +"State of Anarchy: Master of Mayhem": pageId: 60095 steam: 576130 State of Decay: pageId: 10594 steam: 241540 templates: - - '{{Game data/config|Windows|{{p|game}}\Engine\config.pak}}' - - '{{Game data/saves|Windows|{{p|steam}}\userdata\{{p|uid}}\241540\local}}' + - "{{Game data/config|Windows|{{p|game}}\\Engine\\config.pak}}" + - "{{Game data/saves|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\241540\\local}}" State of Decay 2: pageId: 88993 steam: 495420 steamSide: - 1249770 templates: - - >- - {{Game data/config|Microsoft - Store|{{p|localappdata}}\Packages\Microsoft.Dayton_8wekyb3d8bbwe\LocalCache\Local\StateOfDecay2\Saved\Config\WindowsNoEditor\}} - - '{{Game data/config|Steam|{{p|localappdata}}\StateOfDecay2\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\StateOfDecay2\Saved\}}' - - '{{Game data/saves|Microsoft Store|{{p|localappdata}}\Packages\Microsoft.Dayton_8wekyb3d8bbwe\SystemAppData\wgs}}' + - "{{Game data/config|Microsoft Store|{{p|localappdata}}\\Packages\\Microsoft.Dayton_8wekyb3d8bbwe\\LocalCache\\Local\\StateOfDecay2\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/config|Steam|{{p|localappdata}}\\StateOfDecay2\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\StateOfDecay2\\Saved\\}}" + - "{{Game data/saves|Microsoft Store|{{p|localappdata}}\\Packages\\Microsoft.Dayton_8wekyb3d8bbwe\\SystemAppData\\wgs}}" State of Decay 3: pageId: 162112 -'State of Decay: Year-One Survival Edition': +"State of Decay: Year-One Survival Edition": pageId: 24543 steam: 329430 templates: - - '{{Game data/config|Windows|{{p|game}}\Engine\config.pak}}' - - '{{Game data/saves|Windows|{{p|game}}\USER\{{p|uid}}\*.ulsave}}' + - "{{Game data/config|Windows|{{p|game}}\\Engine\\config.pak}}" + - "{{Game data/saves|Windows|{{p|game}}\\USER\\{{p|uid}}\\*.ulsave}}" State of Emergency: pageId: 81851 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/saves|Windows|{{p|game}}\SaveGames}}' + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\SaveGames}}" State of Extinction: pageId: 40163 steam: 411520 @@ -154410,41 +150267,31 @@ State of Mind: pageId: 39640 steam: 437630 templates: - - >- - {{Game data/config|Windows|{{P|localappdata}}\Daedalic Entertainment - GmbH\StateOfMind\Saved\Config\WindowsNoEditor}} - - '{{Game data/config|Linux|{{P|xdgdatahome}}/Daedalic Entertainment GmbH/StateOfMind/Saved/Config/LinuxNoEditor}}' - - >- - {{Game data/saves|Windows|{{P|localappdata}}\Daedalic Entertainment - GmbH\StateOfMind\Saved\SaveGames\|{{P|localappdata}}\Daedalic Entertainment GmbH\StateOfMind\Saved\Data\}} - - >- - {{Game data/saves|Microsoft - Store|{{P|localappdata}}\Packages\DaedalicEntertainment.StateofMindPC_9w6n57xt7hhbc\LocalCache\Local\Daedalic - Entertainment GmbH\StateOfMind\Saved\SaveGames}} - - >- - {{Game data/saves|Steam|{{P|localappdata}}\Daedalic Entertainment - GmbH\StateOfMind\Saved\{{P|uid}}\SaveGames\|{{P|localappdata}}\Daedalic Entertainment - GmbH\StateOfMind\Saved\{{P|uid}}\Data\}} - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/Daedalic Entertainment GmbH/StateOfMind/Saved//SaveGames}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\Daedalic Entertainment GmbH\\StateOfMind\\Saved\\Config\\WindowsNoEditor}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/Daedalic Entertainment GmbH/StateOfMind/Saved/Config/LinuxNoEditor}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Daedalic Entertainment GmbH\\StateOfMind\\Saved\\SaveGames\\|{{P|localappdata}}\\Daedalic Entertainment GmbH\\StateOfMind\\Saved\\Data\\}}" + - "{{Game data/saves|Microsoft Store|{{P|localappdata}}\\Packages\\DaedalicEntertainment.StateofMindPC_9w6n57xt7hhbc\\LocalCache\\Local\\Daedalic Entertainment GmbH\\StateOfMind\\Saved\\SaveGames}}" + - "{{Game data/saves|Steam|{{P|localappdata}}\\Daedalic Entertainment GmbH\\StateOfMind\\Saved\\{{P|uid}}\\SaveGames\\|{{P|localappdata}}\\Daedalic Entertainment GmbH\\StateOfMind\\Saved\\{{P|uid}}\\Data\\}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/Daedalic Entertainment GmbH/StateOfMind/Saved//SaveGames}}" State of Survival: pageId: 185565 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Kingsgroup\State of Survival\*}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Kingsgroup\\State of Survival\\*}}" State of War: pageId: 125248 renamedFrom: - - 'State of War : Warmonger / 蓝色警戒 (Classic 2000)' + - "State of War : Warmonger / 蓝色警戒 (Classic 2000)" steam: 748040 templates: - - '{{Game data/config|Windows|{{P|game}}\State of War_1.cfg}}' - - '{{Game data/saves|Windows|{{P|game}}\Savegame\}}' -'States, Firms, & Households': + - "{{Game data/config|Windows|{{P|game}}\\State of War_1.cfg}}" + - "{{Game data/saves|Windows|{{P|game}}\\Savegame\\}}" +"States, Firms, & Households": pageId: 43598 steam: 458820 Static: pageId: 130291 steam: 1043560 -'Static: Investigator Training': +"Static: Investigator Training": pageId: 48224 steam: 354720 Station 21 - Space Station Simulator: @@ -154463,18 +150310,18 @@ Stationeers: pageId: 60333 steam: 544550 templates: - - '{{Game data/config|Windows|{{p|game}}\setting.xml}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Stationeers\}}' + - "{{Game data/config|Windows|{{p|game}}\\setting.xml}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Stationeers\\}}" Statue Defender: pageId: 127201 steam: 994170 Statues: pageId: 45882 steam: 413680 -'Status: Insane': +"Status: Insane": pageId: 69040 steam: 654430 -StaudSoft's Synthetic World: +"StaudSoft's Synthetic World": pageId: 48741 steam: 343320 Stax: @@ -154485,15 +150332,15 @@ Staxel: pageId: 63626 steam: 405710 templates: - - '{{Game data/config|Windows|{{P|game}}\LocalContent\}}' - - '{{Game data/saves|Windows|{{P|game}}\LocalContent\}}' + - "{{Game data/config|Windows|{{P|game}}\\LocalContent\\}}" + - "{{Game data/saves|Windows|{{P|game}}\\LocalContent\\}}" Stay: pageId: 81133 steam: 753230 Stay Alight: pageId: 48541 steam: 345060 -'Stay Alive: Apocalypse': +"Stay Alive: Apocalypse": pageId: 78528 steam: 622420 Stay At Home: @@ -154503,9 +150350,9 @@ Stay Close: pageId: 38979 steam: 455120 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\StayClose\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\StayClose\Saved\SaveGames\}}' -'Stay Cool, Kobayashi-San!: A River City Ransom Story': + - "{{Game data/config|Windows|{{P|localappdata}}\\StayClose\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\StayClose\\Saved\\SaveGames\\}}" +"Stay Cool, Kobayashi-San!: A River City Ransom Story": pageId: 154926 steam: 836590 Stay Dead Evolution: @@ -154521,15 +150368,12 @@ Stay Out of the House: Stay Safe: pageId: 93217 steam: 818140 -'Stay Safe: Labyrinth of the Mad': +"Stay Safe: Labyrinth of the Mad": pageId: 141860 steam: 1105660 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Stay Safe\settings.dat}}' - - >- - {{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Stay - Safe\quick-save.dat|{{p|userprofile\Documents}}\My Games\Stay Safe\*db.dat|{{p|userprofile\Documents}}\My - Games\Stay Safe\llb.dat}} + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Stay Safe\\settings.dat}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Stay Safe\\quick-save.dat|{{p|userprofile\\Documents}}\\My Games\\Stay Safe\\*db.dat|{{p|userprofile\\Documents}}\\My Games\\Stay Safe\\llb.dat}}" Stay Silent: pageId: 128431 steam: 978180 @@ -154540,15 +150384,15 @@ Stay in the Light: pageId: 136785 steam: 1081330 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\TheLight\Saved}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\TheLight\Saved}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\TheLight\\Saved}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\TheLight\\Saved}}" Stay or Leave / 留离: pageId: 108504 steam: 910390 -Stay! Stay! Democratic People's Republic of Korea!: +"Stay! Stay! Democratic People's Republic of Korea!": pageId: 62030 steam: 512060 -Stayin' Alive: +"Stayin' Alive": pageId: 63340 steam: 584890 Stealth Bastard Deluxe: @@ -154556,28 +150400,28 @@ Stealth Bastard Deluxe: pageId: 6759 steam: 209190 templates: - - '{{Game data/config|Windows|{{p|appdata}}\StealthBastard\}}' - - '{{Game data/config|Steam|{{p|appdata}}\StealthBastard[Steam]\}}' - - '{{Game data/config|GOG.com|{{p|appdata}}\Stealth_Bastard_Deluxe\}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/StealthBastard/}}' - - '{{Game data/saves|Windows|{{p|appdata}}\StealthBastard\}}' - - '{{Game data/saves|Steam|{{p|appdata}}\StealthBastard[Steam]\}}' - - '{{Game data/saves|GOG.com|{{p|appdata}}\Stealth_Bastard_Deluxe\}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/StealthBastard/}}' -'Stealth Inc. 2: A Game of Clones': + - "{{Game data/config|Windows|{{p|appdata}}\\StealthBastard\\}}" + - "{{Game data/config|Steam|{{p|appdata}}\\StealthBastard[Steam]\\}}" + - "{{Game data/config|GOG.com|{{p|appdata}}\\Stealth_Bastard_Deluxe\\}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/StealthBastard/}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\StealthBastard\\}}" + - "{{Game data/saves|Steam|{{p|appdata}}\\StealthBastard[Steam]\\}}" + - "{{Game data/saves|GOG.com|{{p|appdata}}\\Stealth_Bastard_Deluxe\\}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/StealthBastard/}}" +"Stealth Inc. 2: A Game of Clones": gog: 1430297341 pageId: 25350 steam: 329380 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Curve Digital\Stealth Inc. 2\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Curve Digital\Stealth Inc. 2\savedata\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Curve Digital\\Stealth Inc. 2\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Curve Digital\\Stealth Inc. 2\\savedata\\}}" Stealth Labyrinth: pageId: 43286 steam: 450040 Stealthscape: pageId: 91270 steam: 670720 -'Steam Bandits: Outpost': +"Steam Bandits: Outpost": pageId: 50723 steam: 261350 Steam Hammer: @@ -154590,8 +150434,8 @@ Steam Marines: pageId: 13547 steam: 253630 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Worthless Bums\Steam Marines}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Worthless Bums\Steam Marines\save.sav}}' + - "{{Game data/config|Windows|{{p|appdata}}\\Worthless Bums\\Steam Marines}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Worthless Bums\\Steam Marines\\save.sav}}" Steam Marines 2: pageId: 139546 steam: 383940 @@ -154612,7 +150456,7 @@ Steam and Metal: Steam and Silk: pageId: 129827 steam: 1030810 -'Steam: Rails to Riches': +"Steam: Rails to Riches": pageId: 59494 steam: 595930 SteamCity Chronicles - Rise Of The Rose: @@ -154643,16 +150487,12 @@ SteamWorld Dig: steamSide: - 297900 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\SteamWorld - Dig\settings.xml|{{p|userprofile\Documents}}\My Games\SteamWorld Dig\*.cfg}} - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/SteamWorld Dig/}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/SteamWorldDig/}}' - - >- - {{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\SteamWorld - Dig\savegame_*.dat|{{p|userprofile\Documents}}\My Games\SteamWorld Dig\*.xml}} - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/SteamWorld Dig/}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/SteamWorldDig/}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\SteamWorld Dig\\settings.xml|{{p|userprofile\\Documents}}\\My Games\\SteamWorld Dig\\*.cfg}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/SteamWorld Dig/}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/SteamWorldDig/}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\SteamWorld Dig\\savegame_*.dat|{{p|userprofile\\Documents}}\\My Games\\SteamWorld Dig\\*.xml}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/SteamWorld Dig/}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/SteamWorldDig/}}" SteamWorld Dig 2: gog: 1861082507 gogSide: @@ -154660,63 +150500,57 @@ SteamWorld Dig 2: pageId: 64634 steam: 571310 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\SteamWorld Dig 2\}}' - - >- - {{Game data/config|Linux|/compatdata/571310/pfx/drive_c/users/steamuser/Documents/My Games/SteamWorld Dig - 2/81844267/}} - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\SteamWorld Dig 2\}}' - - '{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/SteamWorld Dig 2/{{P|uid}}/|}}' - - >- - {{Game data/saves|Linux|/compatdata/571310/pfx/drive_c/users/steamuser/Documents/My Games/SteamWorld Dig - 2/81844267/}} + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\SteamWorld Dig 2\\}}" + - "{{Game data/config|Linux|/compatdata/571310/pfx/drive_c/users/steamuser/Documents/My Games/SteamWorld Dig 2/81844267/}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\SteamWorld Dig 2\\}}" + - "{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/SteamWorld Dig 2/{{P|uid}}/|}}" + - "{{Game data/saves|Linux|/compatdata/571310/pfx/drive_c/users/steamuser/Documents/My Games/SteamWorld Dig 2/81844267/}}" SteamWorld Heist: gog: 1668986402 pageId: 33127 steam: 322190 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\SteamWorld Heist\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/SteamWorld Heist/}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/SteamWorld Heist/}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\SteamWorld Heist\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/SteamWorld Heist/}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/SteamWorld Heist/}}' -'SteamWorld Quest: Hand of Gilgamech': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\SteamWorld Heist\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/SteamWorld Heist/}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/SteamWorld Heist/}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\SteamWorld Heist\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/SteamWorld Heist/}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/SteamWorld Heist/}}" +"SteamWorld Quest: Hand of Gilgamech": gog: 1941294775 pageId: 136286 steam: 804010 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\SteamWorld - Quest\{{p|uid}}\*.cfg|{{p|userprofile\Documents}}\My Games\SteamWorld Quest\{{p|uid}}\*.xml}} - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\SteamWorld Quest\{{p|uid}}\savegame_*.dat}}' -'Steamalot: Epoch''s Journey': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\SteamWorld Quest\\{{p|uid}}\\*.cfg|{{p|userprofile\\Documents}}\\My Games\\SteamWorld Quest\\{{p|uid}}\\*.xml}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\SteamWorld Quest\\{{p|uid}}\\savegame_*.dat}}" +"Steamalot: Epoch's Journey": pageId: 46627 steam: 361160 Steambirds Alliance: pageId: 62468 steam: 386010 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\SpryFox\Steambirds Alliance\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\SpryFox\\Steambirds Alliance\\}}" Steamburg: pageId: 74528 steam: 723760 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Telehorse\Steamburg}}' - - '{{Game data/saves|Windows|{{p|hkcu}}\Software\Telehorse\Steamburg}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Telehorse\\Steamburg}}" + - "{{Game data/saves|Windows|{{p|hkcu}}\\Software\\Telehorse\\Steamburg}}" Steamcraft: pageId: 126114 steam: 735660 -'Steamed Hams: The Graphic Adventure': +"Steamed Hams: The Graphic Adventure": pageId: 175404 templates: - - '{{Game data/config|Windows|{{P|userprofile}}\Saved Games\Steamed Hams\acsetup.cfg}}' + - "{{Game data/config|Windows|{{P|userprofile}}\\Saved Games\\Steamed Hams\\acsetup.cfg}}" Steamhounds: pageId: 132943 steam: 1052450 Steamliner: pageId: 156706 steam: 1209190 -'Steampuff: Phinnegan''s Factory': +"Steampuff: Phinnegan's Factory": pageId: 42010 steam: 493410 Steampunk Action Battle Simulator: @@ -154746,66 +150580,66 @@ Steamulator 2018: Steamy Sextet: pageId: 155602 steam: 1154110 -'Steel & Steam: Episode 1': +"Steel & Steam: Episode 1": pageId: 49921 steam: 310450 Steel Alcimus: pageId: 125381 steam: 983990 -'Steel Arena: Robot War': +"Steel Arena: Robot War": pageId: 88672 steam: 787430 -'Steel Armor: Blaze of War': +"Steel Armor: Blaze of War": pageId: 48513 steam: 286280 Steel Assault: pageId: 179744 steam: 1280300 templates: - - '{{Game data/config|Windows|{{P|game}}\config.json}}' + - "{{Game data/config|Windows|{{P|game}}\\config.json}}" Steel Circus: pageId: 124524 steam: 969680 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Iron Mountain Interactive\Steel Circus\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Iron Mountain Interactive\\Steel Circus\\}}" Steel Division 2: gog: 1911255510 gogSide: - - 1229028381 - - 2006750224 - - 1664660009 - - 1701786910 - - 1340415250 - - 2004486580 - - 2060522919 - - 1701852763 - - 1343257421 - - 1265646092 - - 1713226472 - - 1283288291 - - 1652541440 - - 1192901304 - 1149134893 - - 1901139519 - - 1871238984 - - 1385484190 - - 1857913249 - - 1647352276 + - 1192901304 - 1201099610 - - 1477740150 + - 1203230635 + - 1229028381 + - 1265646092 + - 1283288291 + - 1295820685 - 1311918010 + - 1340415250 + - 1343257421 + - 1385484190 + - 1427680721 + - 1443081419 + - 1477740150 + - 1499422518 + - 1589182480 + - 1647352276 + - 1652541440 + - 1664660009 + - 1667732483 - 1687785331 - 1697942209 - - 1427680721 - - 2074308559 - - 1295820685 - - 1916363443 - - 1499422518 + - 1701786910 + - 1701852763 + - 1713226472 - 1806984812 - - 1203230635 - - 1667732483 - - 1589182480 - - 1443081419 + - 1857913249 + - 1871238984 + - 1901139519 + - 1916363443 + - 2004486580 + - 2006750224 + - 2060522919 + - 2074308559 pageId: 113722 steam: 919640 steamSide: @@ -154841,7 +150675,7 @@ Steel Division 2: - 1833830 - 2155260 - 2499890 -'Steel Division: Normandy 44': +"Steel Division: Normandy 44": pageId: 58700 steam: 572410 steamSide: @@ -154863,10 +150697,8 @@ Steel Division 2: - 718630 - 780340 templates: - - '{{Game data/config|Windows|{{P|userprofile}}\Saved Games\EugenSystems\SteelDivision\Option.ini}}' - - >- - {{Game data/saves|Windows|{{p|steam}}\userdata\{{P|uid}}\572410\remote\|{{P|userprofile}}\Saved - Games\EugenSystems\SteelDivision\}} + - "{{Game data/config|Windows|{{P|userprofile}}\\Saved Games\\EugenSystems\\SteelDivision\\Option.ini}}" + - "{{Game data/saves|Windows|{{p|steam}}\\userdata\\{{P|uid}}\\572410\\remote\\|{{P|userprofile}}\\Saved Games\\EugenSystems\\SteelDivision\\}}" Steel Dungeon 钢铁地牢: pageId: 114626 steam: 945500 @@ -154879,7 +150711,7 @@ Steel Empire: Steel Fight: pageId: 132566 steam: 994450 -'Steel Fury: Kharkov 1942': +"Steel Fury: Kharkov 1942": pageId: 159341 renamedFrom: - Steel Fury Kharkov 1942 @@ -154893,7 +150725,7 @@ Steel Knight 1513: Steel Ocean: pageId: 45657 steam: 390670 -'Steel Panthers III: Brigade Command': +"Steel Panthers III: Brigade Command": pageId: 23518 Steel Punk Ball: pageId: 66582 @@ -154904,18 +150736,18 @@ Steel Rain: Steel Rats: gog: 1452983471 gogSide: + - 1263375863 - 1519056121 - 1701970660 - - 1263375863 pageId: 98180 steam: 619700 steamSide: - - 1021990 - 969100 - 969110 + - 1021990 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\SteelRats\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\SteelRats\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\SteelRats\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\SteelRats\\Saved\\SaveGames\\}}" Steel Rivals: pageId: 45583 steam: 391130 @@ -154925,22 +150757,22 @@ Steel Seraph: Steel Storm A.M.M.O.: pageId: 40587 steam: 251790 -'Steel Storm: Burning Retribution': +"Steel Storm: Burning Retribution": pageId: 4750 steam: 96200 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\Saved Games\steelstorm\gamedata}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.steelstorm/}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\Saved Games\steelstorm\gamedata}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.steelstorm/}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\Saved Games\\steelstorm\\gamedata}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.steelstorm/}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Saved Games\\steelstorm\\gamedata}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.steelstorm/}}" Steel Strider: pageId: 45661 steam: 404100 templates: - - '{{Game data/config|Windows|{{p|game}}\option}}' - - '{{Game data/config|Linux|{{p|game}}/option}}' - - '{{Game data/saves|Windows|{{p|game}}\option\sav}}' - - '{{Game data/saves|Linux|{{p|game}}/option/sav}}' + - "{{Game data/config|Windows|{{p|game}}\\option}}" + - "{{Game data/config|Linux|{{p|game}}/option}}" + - "{{Game data/saves|Windows|{{p|game}}\\option\\sav}}" + - "{{Game data/saves|Linux|{{p|game}}/option/sav}}" Steel Sword Story: pageId: 124309 steam: 978190 @@ -154961,26 +150793,26 @@ Steelrising: gog: 1778470094 gogSide: - 1149994065 - - 1859288464 - 1160980912 + - 1859288464 pageId: 161697 steam: 1283400 steamSide: - 2004260 - 2021370 templates: - - '{{Game data/config|Steam|{{p|userprofile\Documents}}\Steelrising\}}' - - '{{Game data/config|GOG.com|{{p|userprofile\Documents}}\SteelrisingGOG\}}' - - '{{Game data/saves|Steam|{{p|userprofile\Documents}}\Steelrising\}}' - - '{{Game data/saves|GOG.com|{{p|userprofile\Documents}}\SteelrisingGOG\}}' + - "{{Game data/config|Steam|{{p|userprofile\\Documents}}\\Steelrising\\}}" + - "{{Game data/config|GOG.com|{{p|userprofile\\Documents}}\\SteelrisingGOG\\}}" + - "{{Game data/saves|Steam|{{p|userprofile\\Documents}}\\Steelrising\\}}" + - "{{Game data/saves|GOG.com|{{p|userprofile\\Documents}}\\SteelrisingGOG\\}}" Steep: pageId: 36448 steam: 460920 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\My Games\STEEP\Default\STEEP.ini}}' - - '{{Game data/saves|Epic Games Store|{{p|uplay}}\savegames\{{p|uid}}\3279\}}' - - '{{Game data/saves|Steam|{{p|uplay}}\savegames\{{p|uid}}\3280\}}' - - '{{Game data/saves|Uplay|{{p|uplay}}\savegames\{{p|uid}}\3279\}}' + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\My Games\\STEEP\\Default\\STEEP.ini}}" + - "{{Game data/saves|Epic Games Store|{{p|uplay}}\\savegames\\{{p|uid}}\\3279\\}}" + - "{{Game data/saves|Steam|{{p|uplay}}\\savegames\\{{p|uid}}\\3280\\}}" + - "{{Game data/saves|Uplay|{{p|uplay}}\\savegames\\{{p|uid}}\\3279\\}}" Stefanos Sizzling Pizza Pie: pageId: 98796 steam: 884210 @@ -154991,42 +150823,42 @@ Steins;Gate: pageId: 18608 steam: 412830 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Nitroplus\STEINS;GATE}}' - - '{{Game data/config|Steam|{{p|userprofile\Documents}}\My Games\mages_steam\STEINS;GATE\eng}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Nitroplus\STEINS;GATE}}' - - '{{Game data/saves|Steam|{{p|userprofile\Documents}}\My Games\mages_steam\STEINS;GATE\eng}}' + - "{{Game data/config|Windows|{{p|appdata}}\\Nitroplus\\STEINS;GATE}}" + - "{{Game data/config|Steam|{{p|userprofile\\Documents}}\\My Games\\mages_steam\\STEINS;GATE\\eng}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Nitroplus\\STEINS;GATE}}" + - "{{Game data/saves|Steam|{{p|userprofile\\Documents}}\\My Games\\mages_steam\\STEINS;GATE\\eng}}" Steins;Gate 0: pageId: 58201 steam: 825630 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\mages_dmm\STEINS GATE 0}}' - - '{{Game data/config|Steam|{{p|userprofile\Documents}}\My Games\mages_steam\STEINS GATE 0}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\mages_dmm\STEINS GATE 0}}' - - '{{Game data/saves|Steam|{{p|userprofile\Documents}}\My Games\mages_steam\STEINS GATE 0}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\mages_dmm\\STEINS GATE 0}}" + - "{{Game data/config|Steam|{{p|userprofile\\Documents}}\\My Games\\mages_steam\\STEINS GATE 0}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\mages_dmm\\STEINS GATE 0}}" + - "{{Game data/saves|Steam|{{p|userprofile\\Documents}}\\My Games\\mages_steam\\STEINS GATE 0}}" Steins;Gate Elite: pageId: 91272 steam: 819030 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\mages_steam\Steins Gate ELITE}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\mages_steam\Steins Gate ELITE}}' -'Steins;Gate: Linear Bounded Phenogram': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\mages_steam\\Steins Gate ELITE}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\mages_steam\\Steins Gate ELITE}}" +"Steins;Gate: Linear Bounded Phenogram": pageId: 126133 steam: 930910 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\mages_steam\SG_Phenogram\eng}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\mages_steam\SG_Phenogram\eng}}' -'Steins;Gate: My Darling''s Embrace': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\mages_steam\\SG_Phenogram\\eng}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\mages_steam\\SG_Phenogram\\eng}}" +"Steins;Gate: My Darling's Embrace": pageId: 154549 steam: 970560 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\mages_steam\SG_Darling\eng}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\mages_steam\SG_Darling\eng}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\mages_steam\\SG_Darling\\eng}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\mages_steam\\SG_Darling\\eng}}" Stela: pageId: 135980 steam: 1048600 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Stela\Saved\Config\WindowsNoEditor}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Stela\Saved\SaveGames}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Stela\\Saved\\Config\\WindowsNoEditor}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Stela\\Saved\\SaveGames}}" Stellaluna: pageId: 186460 Stellar 2D: @@ -155048,8 +150880,8 @@ Stellar Overload: pageId: 51649 steam: 397150 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\StellarOverloadEA1\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\StellarOverloadEA1\Saved\Saves\Universes\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\StellarOverloadEA1\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\StellarOverloadEA1\\Saved\\Saves\\Universes\\}}" Stellar Sphere: pageId: 130311 steam: 981540 @@ -155075,33 +150907,33 @@ StellarHub: Stellaris: gog: 1508702879 gogSide: - - 1468493317 - - 1696339098 - 1122806862 - 1209094315 + - 1210745577 - 1253915653 - 1292954230 - 1316465607 - 1319768827 + - 1414149508 - 1420212493 - 1439311238 + - 1468493317 - 1488827509 - 1490429179 + - 1558204482 - 1602382142 - 1619776270 + - 1696339098 - 1790030450 - 1863527056 - 1892453534 - 1978231244 - 1988097366 - 1999794856 + - 2048809075 - 2062279897 - 2106739867 - 2112845659 - - 1414149508 - - 1210745577 - - 2048809075 - - 1558204482 pageId: 32741 steam: 281990 steamSide: @@ -155143,13 +150975,13 @@ Stellaris: - 2380030 - 2534090 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Paradox Interactive\Stellaris\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Documents/Paradox Interactive/Stellaris/}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/Paradox Interactive/Stellaris/}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Paradox Interactive\Stellaris\}}' - - '{{Game data/saves|Microsoft Store|{{p|userprofile\Documents}}\Paradox Interactive\Stellaris GamePass\save games}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Documents/Paradox Interactive/Stellaris/}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/Paradox Interactive/Stellaris/}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Paradox Interactive\\Stellaris\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Documents/Paradox Interactive/Stellaris/}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/Paradox Interactive/Stellaris/}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Paradox Interactive\\Stellaris\\}}" + - "{{Game data/saves|Microsoft Store|{{p|userprofile\\Documents}}\\Paradox Interactive\\Stellaris GamePass\\save games}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Documents/Paradox Interactive/Stellaris/}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/Paradox Interactive/Stellaris/}}" Stellaris Nexus: pageId: 188004 steam: 1983990 @@ -155162,10 +150994,10 @@ Steno Arcade: Step by Step: pageId: 113658 steam: 913460 -'Step sisters: Episode 1': +"Step sisters: Episode 1": pageId: 104283 steam: 912860 -'Step sisters: Episode 2': +"Step sisters: Episode 2": pageId: 108536 steam: 915880 StepMania: @@ -155177,20 +151009,20 @@ StepX: Stepbystep: pageId: 122129 steam: 972940 -Stephen's Sausage Roll: +"Stephen's Sausage Roll": pageId: 37185 steam: 353540 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\increpare games\Sausage\}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/increpare games/Sausage/}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\increpare games\Sausage}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/increpare games/Sausage/}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\increpare games\\Sausage\\}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/increpare games/Sausage/}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\increpare games\\Sausage}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/increpare games/Sausage/}}" Steredenn: pageId: 33168 steam: 347160 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\SOFTWARE\Pixelnest Studio\Steredenn\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Pixelnest Studio\Steredenn\steredennou.sav}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\Pixelnest Studio\\Steredenn\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Pixelnest Studio\\Steredenn\\steredennou.sav}}" Stereo Aereo: pageId: 52418 steam: 535890 @@ -155200,22 +151032,22 @@ Stereo Boy: Stern Pinball Arcade: pageId: 55728 steam: 564010 -Steve's Pub - Soda on Tap: +"Steve's Pub - Soda on Tap": pageId: 78360 steam: 688940 -'Steven Universe: Save the Light': +"Steven Universe: Save the Light": pageId: 103995 steam: 821890 -'Steven Universe: Unleash the Light': +"Steven Universe: Unleash the Light": pageId: 152525 steam: 1379560 Steven the Sperm: pageId: 110532 steam: 928350 -'Stick ''Em Up 2: Paper Adventures': +"Stick 'Em Up 2: Paper Adventures": pageId: 47123 steam: 282780 -'Stick Adventures: Wizard Madness: Chapter 1': +"Stick Adventures: Wizard Madness: Chapter 1": pageId: 80533 steam: 781860 Stick Arena: @@ -155227,11 +151059,11 @@ Stick Em Up: Stick Engine: pageId: 68625 steam: 654740 -'Stick Fight: The Game': +"Stick Fight: The Game": pageId: 70647 steam: 674940 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Landfall West\Stick Fight: The Game\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Landfall West\\Stick Fight: The Game\\}}" Stick Game: pageId: 73029 steam: 721000 @@ -155242,26 +151074,26 @@ Stick It to the Man!: - Stick it to The Man! steam: 251830 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Zoink Games\Stick It To The Man!\}}' - - '{{Game data/saves|Windows|{{p|hkcu}}\Software\Zoink Games\Stick It To The Man!\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Zoink Games\\Stick It To The Man!\\}}" + - "{{Game data/saves|Windows|{{p|hkcu}}\\Software\\Zoink Games\\Stick It To The Man!\\}}" Stick Nightmare: pageId: 64081 steam: 652610 Stick Ninja: pageId: 149610 steam: 1076060 -'Stick RPG 2: Director''s Cut': +"Stick RPG 2: Director's Cut": pageId: 50047 steam: 307640 templates: - - '{{Game data/saves|Windows|{{p|appdata}}\Roaming\Macromedia\Flash Player\#Shared Objects\}}' + - "{{Game data/saves|Windows|{{p|appdata}}\\Roaming\\Macromedia\\Flash Player\\#Shared Objects\\}}" Stick Royale: pageId: 135546 steam: 1063740 Stick Spartans: pageId: 95513 steam: 868040 -'Stick War: Castle Defence': +"Stick War: Castle Defence": pageId: 88742 steam: 815360 Stick man Flipper: @@ -155305,7 +151137,7 @@ Stickman Fighting: Stickman Jetpack: pageId: 79760 steam: 764490 -'Stickman Maverick : Bad Boys Killer': +"Stickman Maverick : Bad Boys Killer": pageId: 120891 steam: 948690 Stickman Race Draw: @@ -155332,7 +151164,7 @@ Stickman in the portal: Stickman.io: pageId: 92779 steam: 841420 -'Stickman: Fidget Spinner Rush': +"Stickman: Fidget Spinner Rush": pageId: 91021 steam: 816760 Sticks: @@ -155379,15 +151211,15 @@ Still Life: pageId: 14146 steam: 46480 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/saves|Windows|{{p|game}}\Save}}' + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\Save}}" Still Life 2: gog: 1207659007 pageId: 14148 steam: 46490 templates: - - '{{Game data/config|Windows|{{p|game}}\EXTDataSave}}' - - '{{Game data/saves|Windows|{{p|game}}\EXTDataSave}}' + - "{{Game data/config|Windows|{{p|game}}\\EXTDataSave}}" + - "{{Game data/saves|Windows|{{p|game}}\\EXTDataSave}}" Still Not Dead: pageId: 64240 steam: 337290 @@ -155396,8 +151228,8 @@ Still There: pageId: 139512 steam: 1063490 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\GhostShark Games\Still There\}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\GhostShark Games\Still There\Savegame\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\GhostShark Games\\Still There\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\GhostShark Games\\Still There\\Savegame\\}}" Stilt Fella: pageId: 150844 steam: 1133590 @@ -155420,8 +151252,8 @@ Stock Car Extreme: pageId: 37943 steam: 273840 templates: - - '{{Game data/config|Windows|{{p|game}}\Config.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\UserData\{{p|uid}}\{{p|uid}}.plr}}' + - "{{Game data/config|Windows|{{p|game}}\\Config.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\UserData\\{{p|uid}}\\{{p|uid}}.plr}}" StockUp: pageId: 72017 steam: 713100 @@ -155437,8 +151269,8 @@ Stoire: Stolen: pageId: 91633 templates: - - '{{Game data/config|Windows|{{p|game}}\StolenRetail.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\save.dat}}' + - "{{Game data/config|Windows|{{p|game}}\\StolenRetail.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\save.dat}}" Stolen Mouth: pageId: 74139 steam: 732150 @@ -155476,10 +151308,10 @@ StoneBack: StoneDeep: pageId: 140991 steam: 1094760 -'StoneTide: Age of Pirates': +"StoneTide: Age of Pirates": pageId: 130227 steam: 1039350 -'Stonebond: The Gargoyle''s Domain': +"Stonebond: The Gargoyle's Domain": pageId: 56792 steam: 524240 Stonefly: @@ -155487,8 +151319,8 @@ Stonefly: pageId: 166952 steam: 1198590 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Acorn\Saved\Config}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\Acorn\Saved\SaveGames}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\Acorn\\Saved\\Config}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Acorn\\Saved\\SaveGames}}" Stonehearth: pageId: 38561 steam: 253250 @@ -155500,8 +151332,8 @@ Stonekeep: pageId: 10103 steam: 613240 templates: - - '{{Game data/config|DOS|{{p|game}}\CONFIG}}' - - '{{Game data/saves|DOS|{{p|game}}\SAVEGAME}}' + - "{{Game data/config|DOS|{{p|game}}\\CONFIG}}" + - "{{Game data/saves|DOS|{{p|game}}\\SAVEGAME}}" Stonerid: pageId: 49751 steam: 315920 @@ -155522,8 +151354,8 @@ Stoneshard: pageId: 61699 steam: 625960 templates: - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/StoneShard/}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/StoneShard/}}' + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/StoneShard/}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/StoneShard/}}" Stonetowers: pageId: 92315 steam: 832690 @@ -155574,7 +151406,7 @@ Storage Kings: Store Crasher: pageId: 102481 steam: 886300 -'Store Manager: Cellular Edition': +"Store Manager: Cellular Edition": pageId: 45423 steam: 420910 Store Simulator 2018: @@ -155592,27 +151424,27 @@ Stories Untold: steamSide: - 609750 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\No Code\Stories Untold\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\No Code\}}' -'Stories of Bethem: Full Moon': + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\No Code\\Stories Untold\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\No Code\\}}" +"Stories of Bethem: Full Moon": pageId: 45312 steam: 412270 templates: - - '{{Game data/saves|Linux|{{p|xdgconfighome}}/StoriesOfBethemFullMoon/saved}}' -'Stories: The Path of Destinies': + - "{{Game data/saves|Linux|{{p|xdgconfighome}}/StoriesOfBethemFullMoon/saved}}" +"Stories: The Path of Destinies": gog: 1457539226 pageId: 32183 steam: 439190 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Stories\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Stories\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Stories\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Stories\\Saved\\SaveGames\\}}" Storm: pageId: 20233 steam: 231020 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Storm Saves\general.cfg}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Storm Saves\Storm.sav}}' -'Storm Area 51: September 20th 2019': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Storm Saves\\general.cfg}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Storm Saves\\Storm.sav}}" +"Storm Area 51: September 20th 2019": pageId: 141296 steam: 630490 Storm Boy: @@ -155622,17 +151454,15 @@ Storm Chasers: pageId: 134042 steam: 862800 templates: - - >- - {{Game data/config|Windows|{{p|HKCU}}\Software\Little Cloud Games\Storm - Chasers|{{p|USERPROFILE}}\AppData\LocalLow\Little Cloud Games\Storm Chasers\}} - - '{{Game data/saves|Windows|{{p|HKCU}}\Software\Little Cloud Games\Storm Chasers}}' -'Storm Chasers: Tornado Islands': + - "{{Game data/config|Windows|{{p|HKCU}}\\Software\\Little Cloud Games\\Storm Chasers|{{p|USERPROFILE}}\\AppData\\LocalLow\\Little Cloud Games\\Storm Chasers\\}}" + - "{{Game data/saves|Windows|{{p|HKCU}}\\Software\\Little Cloud Games\\Storm Chasers}}" +"Storm Chasers: Tornado Islands": pageId: 156418 steam: 1226010 Storm Master: pageId: 75403 templates: - - '{{Game data/saves|DOS|A:\*.SAV|B:\*.SAV}}' + - "{{Game data/saves|DOS|A:\\*.SAV|B:\\*.SAV}}" Storm Riders: pageId: 60920 steam: 604190 @@ -155661,11 +151491,11 @@ Storm of Spears: pageId: 34465 steam: 463350 templates: - - '{{Game data/saves|Windows|{{p|appdata}}\Vendetta\*.rvdata}}' + - "{{Game data/saves|Windows|{{p|appdata}}\\Vendetta\\*.rvdata}}" Storm over the Pacific: pageId: 50069 steam: 302320 -'Storm: Frontline Nation': +"Storm: Frontline Nation": pageId: 88404 steam: 98510 Stormbound: @@ -155677,14 +151507,14 @@ Stormdivers: Stormgate: pageId: 178193 steam: 2012510 -'Stormhill Mystery: Family Shadows': +"Stormhill Mystery: Family Shadows": pageId: 125527 steam: 968820 templates: - - '{{Game data/config|Windows|{{P|appdata}}\StormhillMystery\}}' - - '{{Game data/config|OS X|{{P|osxhome}}/Library/Application Support/com.specialbit.lurking.steam/}}' - - '{{Game data/saves|Windows|{{P|appdata}}\StormhillMystery\}}' - - '{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/com.specialbit.lurking.steam/}}' + - "{{Game data/config|Windows|{{P|appdata}}\\StormhillMystery\\}}" + - "{{Game data/config|OS X|{{P|osxhome}}/Library/Application Support/com.specialbit.lurking.steam/}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\StormhillMystery\\}}" + - "{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/com.specialbit.lurking.steam/}}" Stormland: pageId: 172661 Stormrise: @@ -155696,12 +151526,12 @@ Storms: Storms of Shambhala: pageId: 72799 steam: 686580 -'Stormworks: Build and Rescue': +"Stormworks: Build and Rescue": pageId: 62491 steam: 573090 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Stormworks\graphics_config.xml|{{p|appdata}}\Stormworks\save.xml}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Stormworks\saves|{{p|appdata}}\Stormworks\data}}' + - "{{Game data/config|Windows|{{p|appdata}}\\Stormworks\\graphics_config.xml|{{p|appdata}}\\Stormworks\\save.xml}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Stormworks\\saves|{{p|appdata}}\\Stormworks\\data}}" Stormworm+: pageId: 42956 steam: 449240 @@ -155720,32 +151550,32 @@ Story in the Dream World -Volcano And Possession-: Story in the Dream World -Volcano and Possession-: pageId: 155801 steam: 1202760 -Story of Eve - A Hero's Study: +"Story of Eve - A Hero's Study": pageId: 113846 steam: 928520 templates: - - '{{Game data/saves|Windows|{{p|game}}\Eve Story of HT_1.13_Data\Resources\*.json}}' + - "{{Game data/saves|Windows|{{p|game}}\\Eve Story of HT_1.13_Data\\Resources\\*.json}}" Story of Monster: pageId: 136436 steam: 1082100 -'Story of Seasons: A Wonderful Life': +"Story of Seasons: A Wonderful Life": pageId: 185328 steam: 2111170 templates: - - '{{Game data/config|Windows|{{P|game}}\Config\SystemConfig.cfg}}' - - '{{Game data/saves|Windows|{{p|appdata}}\SOSAWL\{{P|uid}}}}' -'Story of Seasons: Friends of Mineral Town': + - "{{Game data/config|Windows|{{P|game}}\\Config\\SystemConfig.cfg}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\SOSAWL\\{{P|uid}}}}" +"Story of Seasons: Friends of Mineral Town": pageId: 161249 steam: 978780 templates: - - '{{Game data/config|Windows|{{p|game}}\Config}}' - - '{{Game data/saves|Windows|{{p|appdata}}\SOSFoMT}}' -'Story of Seasons: Pioneers of Olive Town': + - "{{Game data/config|Windows|{{p|game}}\\Config}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\SOSFoMT}}" +"Story of Seasons: Pioneers of Olive Town": pageId: 171113 steam: 1392960 templates: - - '{{Game data/config|Windows|{{P|game}}\STORY OF SEASONS Pioneers of Olive Town\Config}}' - - '{{Game data/saves|Windows|{{p|appdata}}\SOSPoOT\{{P|uid}}}}' + - "{{Game data/config|Windows|{{P|game}}\\STORY OF SEASONS Pioneers of Olive Town\\Config}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\SOSPoOT\\{{P|uid}}}}" Story of a Cube: pageId: 44265 steam: 440750 @@ -155761,10 +151591,10 @@ Story of the Green Dragon: Story of the Survivor: pageId: 44586 steam: 440950 -'Story of the Survivor: Prisoner': +"Story of the Survivor: Prisoner": pageId: 70156 steam: 676210 -'Story: Heaven & Hell': +"Story: Heaven & Hell": pageId: 95192 steam: 847660 StoryMode - A Game About Crafting: @@ -155774,21 +151604,19 @@ Storyteller: pageId: 186356 steam: 1624540 templates: - - >- - {{Game - data/config|Windows|{{p|userprofile}}\AppData\LocalLow\storyteller\Storyteller|{{P|hkcu}}\Software\storyteller\Storyteller\}} - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\storyteller\Storyteller}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\storyteller\\Storyteller|{{P|hkcu}}\\Software\\storyteller\\Storyteller\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\storyteller\\Storyteller}}" Strafe: gog: 1493047913 pageId: 24174 steam: 442780 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\Pixel Titans\Strafe\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/unity.Pixel Titans.STRAFE/}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Pixel Titans/STRAFE/}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Pixel Titans\Strafe\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/unity.Pixel Titans.STRAFE/}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Pixel Titans/STRAFE/}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Pixel Titans\\Strafe\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/unity.Pixel Titans.STRAFE/}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Pixel Titans/STRAFE/}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Pixel Titans\\Strafe\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/unity.Pixel Titans.STRAFE/}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Pixel Titans/STRAFE/}}" Straima: pageId: 46286 steam: 399140 @@ -155796,14 +151624,14 @@ Straimium Immortaly: pageId: 40151 steam: 515650 templates: - - '{{Game data/config|Windows| {{p|localappdata}}\Straimium_Immortaly\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Straimium_Immortaly\}}' + - "{{Game data/config|Windows| {{p|localappdata}}\\Straimium_Immortaly\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Straimium_Immortaly\\}}" Strain Tactics: pageId: 61512 steam: 621810 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\TouchDimensions\Strain Tactics\}}' -'StrainZ-1: Elimination': + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\TouchDimensions\\Strain Tactics\\}}" +"StrainZ-1: Elimination": pageId: 73488 steam: 728660 Stranded: @@ -155816,15 +151644,15 @@ Stranded Deep: pageId: 22601 steam: 313120 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\Beam Team Games\Stranded Deep\Data\Options.json}}' - - '{{Game data/config|Linux|{{p|xdgconfighome}}/unity3d/Beam Team Games/Stranded Deep/Data/Options.json}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Beam Team Games\Stranded Deep\Data\}}' - - '{{Game data/saves|Linux|{{p|xdgconfighome}}/unity3d/Beam Team Games/Stranded Deep/Data/}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Beam Team Games\\Stranded Deep\\Data\\Options.json}}" + - "{{Game data/config|Linux|{{p|xdgconfighome}}/unity3d/Beam Team Games/Stranded Deep/Data/Options.json}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Beam Team Games\\Stranded Deep\\Data\\}}" + - "{{Game data/saves|Linux|{{p|xdgconfighome}}/unity3d/Beam Team Games/Stranded Deep/Data/}}" Stranded II: pageId: 59719 templates: - - '{{Game data/config|Windows|{{p|game}}\mods\Stranded II\sys\}}' - - '{{Game data/saves|Windows|{{p|game}}\mods\Stranded II\saves}}' + - "{{Game data/config|Windows|{{p|game}}\\mods\\Stranded II\\sys\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\mods\\Stranded II\\saves}}" Stranded In Time: pageId: 47227 steam: 385150 @@ -155833,25 +151661,21 @@ Stranded Sails - Explorers of the Cursed Islands: pageId: 124557 steam: 943260 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Lemonbomb Entertainment GmbH\StrandedSails\}}' - - >- - {{Game - data/config|GOG.com|{{P|localappdata}}\GOG.com\Galaxy\Applications\52376752511298509\Storage\Shared\Files\MenuSettings}} - - >- - {{Game - data/saves|GOG.com|{{P|localappdata}}\GOG.com\Galaxy\Applications\52376752511298509\Storage\Shared\Files\*_SaveDataSlot}} -'Stranded: Alien Dawn': + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Lemonbomb Entertainment GmbH\\StrandedSails\\}}" + - "{{Game data/config|GOG.com|{{P|localappdata}}\\GOG.com\\Galaxy\\Applications\\52376752511298509\\Storage\\Shared\\Files\\MenuSettings}}" + - "{{Game data/saves|GOG.com|{{P|localappdata}}\\GOG.com\\Galaxy\\Applications\\52376752511298509\\Storage\\Shared\\Files\\*_SaveDataSlot}}" +"Stranded: Alien Dawn": pageId: 186081 steam: 1324130 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Stranded - Alien Dawn\LocalStorage.lua}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\Saved Games\Stranded - Alien Dawn\{{p|uid}}\}}' + - "{{Game data/config|Windows|{{p|appdata}}\\Stranded - Alien Dawn\\LocalStorage.lua}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Saved Games\\Stranded - Alien Dawn\\{{p|uid}}\\}}" Strange Brigade: pageId: 63254 steam: 312670 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Strange Brigade\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Strange Brigade\PC_ProfileSaves\{{p|uid}}\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Strange Brigade\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Strange Brigade\\PC_ProfileSaves\\{{p|uid}}\\}}" Strange Encounter: pageId: 120761 steam: 958650 @@ -155865,14 +151689,14 @@ Strange Horticulture: steamSide: - 1722180 templates: - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\BadVikingLtd\Strange Horticulture}}' + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\BadVikingLtd\\Strange Horticulture}}" Strange Night: pageId: 42035 steam: 496640 Strange Night II: pageId: 78597 steam: 767910 -'Strange Passion - My Boss, My Mistress': +"Strange Passion - My Boss, My Mistress": pageId: 149543 steam: 1136390 Strange Space: @@ -155895,51 +151719,37 @@ Strangeland: pageId: 167866 steam: 1369520 templates: - - >- - {{Game data/config|Windows|{{P|userprofile}}\Saved Games\Strangeland\acsetup.cfg|{{P|userprofile}}\Saved - Games\Strangeland\settings.ini}} - - >- - {{Game - data/config|Linux|{{P|xdgdatahome}}/ags/Strangeland/acsetup.cfg|{{P|xdgdatahome}}/ags/Strangeland/settings.ini}} - - '{{Game data/saves|Windows|{{P|userprofile}}\Saved Games\Strangeland\}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/ags/Strangeland/}}' + - "{{Game data/config|Windows|{{P|userprofile}}\\Saved Games\\Strangeland\\acsetup.cfg|{{P|userprofile}}\\Saved Games\\Strangeland\\settings.ini}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/ags/Strangeland/acsetup.cfg|{{P|xdgdatahome}}/ags/Strangeland/settings.ini}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\Saved Games\\Strangeland\\}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/ags/Strangeland/}}" Stranger: pageId: 168427 -Stranger Things - Will's Side Quest: +"Stranger Things - Will's Side Quest": pageId: 141485 steam: 1119540 -'Stranger Things 3: The Game': +"Stranger Things 3: The Game": gog: 1208147658 pageId: 139256 steam: 1097800 templates: - - >- - {{Game - data/config|Windows|{{P|userprofile}}\AppData\LocalLow\BonusXP\ST3TG\PlayerData_Online.xml.*|{{P|hkcu}}\Software\BonusXP\ST3TG\}} - - '{{Game data/config|Steam|{{P|steam}}\userdata\{{P|uid}}\1097800\remote\PlayerData_Online.xml}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\BonusXP\ST3TG\Savegames\}}' - - '{{Game data/saves|Steam|{{P|steam}}\userdata\{{P|uid}}\1097800\remote\Savegames}}' -'Stranger of Paradise: Final Fantasy Origin': + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\BonusXP\\ST3TG\\PlayerData_Online.xml.*|{{P|hkcu}}\\Software\\BonusXP\\ST3TG\\}}" + - "{{Game data/config|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\1097800\\remote\\PlayerData_Online.xml}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\BonusXP\\ST3TG\\Savegames\\}}" + - "{{Game data/saves|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\1097800\\remote\\Savegames}}" +"Stranger of Paradise: Final Fantasy Origin": pageId: 169276 steam: 1358700 templates: - - >- - {{Game data/config|Epic Games Launcher|{{P|userprofile\Documents}}\My Games\STRANGER OF PARADISE FINAL FANTASY - ORIGIN\EOS\{{P|uid}}\config.xml}} - - >- - {{Game data/config|Steam|{{P|userprofile\Documents}}\My Games\STRANGER OF PARADISE FINAL FANTASY - ORIGIN\Steam\{{P|uid}}\config.xml}} - - >- - {{Game data/saves|Epic Games Launcher|{{P|userprofile\Documents}}\My Games\STRANGER OF PARADISE FINAL FANTASY - ORIGIN\EOS\{{P|uid}}\}} - - >- - {{Game data/saves|Steam|{{P|userprofile\Documents}}\My Games\STRANGER OF PARADISE FINAL FANTASY - ORIGIN\Steam\{{P|uid}}\}} + - "{{Game data/config|Epic Games Launcher|{{P|userprofile\\Documents}}\\My Games\\STRANGER OF PARADISE FINAL FANTASY ORIGIN\\EOS\\{{P|uid}}\\config.xml}}" + - "{{Game data/config|Steam|{{P|userprofile\\Documents}}\\My Games\\STRANGER OF PARADISE FINAL FANTASY ORIGIN\\Steam\\{{P|uid}}\\config.xml}}" + - "{{Game data/saves|Epic Games Launcher|{{P|userprofile\\Documents}}\\My Games\\STRANGER OF PARADISE FINAL FANTASY ORIGIN\\EOS\\{{P|uid}}\\}}" + - "{{Game data/saves|Steam|{{P|userprofile\\Documents}}\\My Games\\STRANGER OF PARADISE FINAL FANTASY ORIGIN\\Steam\\{{P|uid}}\\}}" Stranger of Sword City: pageId: 33183 steam: 409890 templates: - - '{{Game data/saves|Windows|{{p|game}}\SAVEDATA\}}' + - "{{Game data/saves|Windows|{{p|game}}\\SAVEDATA\\}}" Strangers in a Strange Land: pageId: 65102 steam: 669770 @@ -155956,13 +151766,13 @@ Stranglehold: gog: 1928816144 pageId: 21446 templates: - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Stranglehold\}}' + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Stranglehold\\}}" Strania - The Stella Machina -: pageId: 45485 steam: 407380 templates: - - '{{Game data/config|Windows|{{p|game}}\strania.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\game.ini}}' + - "{{Game data/config|Windows|{{p|game}}\\strania.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\game.ini}}" StratO: pageId: 38161 steam: 341680 @@ -155970,62 +151780,62 @@ Strata: pageId: 38083 steam: 286380 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Graveck\Strata\}}' - - '{{Game data/saves|Windows|{{p|hkcu}}\Software\Graveck\Strata\}}' - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\286380\remote\strata.prefs}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Graveck\\Strata\\}}" + - "{{Game data/saves|Windows|{{p|hkcu}}\\Software\\Graveck\\Strata\\}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\286380\\remote\\strata.prefs}}" Strategeist: pageId: 108700 steam: 662440 -'Strategic Command Classic: Global Conflict': +"Strategic Command Classic: Global Conflict": gog: 1107785727 pageId: 82629 steam: 785940 -'Strategic Command Classic: WWI': +"Strategic Command Classic: WWI": gog: 1623727353 pageId: 78054 steam: 388140 -'Strategic Command Classic: WWII': +"Strategic Command Classic: WWII": gog: 2103848294 pageId: 90985 steam: 812930 -'Strategic Command WWII: War in Europe': +"Strategic Command WWII: War in Europe": gog: 1774970049 pageId: 62741 steam: 593030 -'Strategic Command WWII: World at War': +"Strategic Command WWII: World at War": gog: 1830818352 pageId: 123427 steam: 957720 -'Strategic Command: American Civil War': +"Strategic Command: American Civil War": gog: 1825087693 pageId: 179490 steam: 1966130 -'Strategic Command: European Theater': +"Strategic Command: European Theater": gog: 1207658822 pageId: 16301 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/saves|Windows|{{p|game}}\Save}}' -'Strategic Command: World War I': + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\Save}}" +"Strategic Command: World War I": gog: 1790109347 pageId: 139542 steam: 1096930 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\My Games\Strategic Command WWI\*.ini}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\My Games\Strategic Command WWI\Save\}}' -'Strategic Mind: Blitzkrieg': + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\My Games\\Strategic Command WWI\\*.ini}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\My Games\\Strategic Command WWI\\Save\\}}" +"Strategic Mind: Blitzkrieg": gog: 1126865870 pageId: 159358 steam: 1200330 -'Strategic Mind: Fight for Freedom': +"Strategic Mind: Fight for Freedom": gog: 1390159891 pageId: 167783 steam: 1381850 -'Strategic Mind: Spectre of Communism': +"Strategic Mind: Spectre of Communism": gog: 2106088488 pageId: 165254 steam: 1341170 -'Strategic Mind: The Pacific': +"Strategic Mind: The Pacific": gog: 1961554687 pageId: 124476 steam: 991810 @@ -156033,7 +151843,7 @@ Strategic War in Europe: pageId: 50538 steam: 283000 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\My Games\Strategic War in Europe\Settings.ini}}' + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\My Games\\Strategic War in Europe\\Settings.ini}}" Strategist: pageId: 107910 steam: 923480 @@ -156043,10 +151853,10 @@ Stratego Multiplayer: Stratego Single Player: pageId: 54792 steam: 491670 -'Strategy & Tactics: Dark Ages': +"Strategy & Tactics: Dark Ages": pageId: 54780 steam: 508300 -'Strategy & Tactics: Wargame Collection': +"Strategy & Tactics: Wargame Collection": pageId: 43404 steam: 338130 StratoBash: @@ -156060,21 +151870,21 @@ Stratos: Stratoscape: pageId: 150397 steam: 1143130 -'Stratus: Battle For The Sky': +"Stratus: Battle For The Sky": pageId: 53846 steam: 355490 Strawberry Magic: pageId: 177113 Strawberry Shortcake and Her Berry Best Friends: pageId: 166218 -'Strawberry Shortcake: Amazing Cookie Party': +"Strawberry Shortcake: Amazing Cookie Party": pageId: 166221 Strawberry Vinegar: pageId: 33628 steam: 407340 templates: - - '{{Game data/config|Windows|{{p|game}}\renpy\config.py}}' - - '{{Game data/saves|Windows|{{P|appdata}}\renpy\Strawberry Vinegar\|{{p|game}}\game\saves\}}' + - "{{Game data/config|Windows|{{p|game}}\\renpy\\config.py}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\renpy\\Strawberry Vinegar\\|{{p|game}}\\game\\saves\\}}" Strawhart: pageId: 151123 steam: 1085070 @@ -156082,8 +151892,8 @@ Stray: pageId: 161032 steam: 1332010 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Hk_project\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\Hk_project\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\Hk_project\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Hk_project\\Saved\\SaveGames\\}}" Stray Blade: gog: 1709153510 gogSide: @@ -156096,13 +151906,13 @@ Stray Cat Crossing: pageId: 37697 steam: 385330 templates: - - '{{Game data/saves|Windows|{{p|game}}\Save*.rvdata2}}' -'Stray Gods: The Roleplaying Musical': + - "{{Game data/saves|Windows|{{p|game}}\\Save*.rvdata2}}" +"Stray Gods: The Roleplaying Musical": pageId: 191127 steam: 1920780 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Chorus\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/config|Windows|{{P|localappdata}}\Chorus\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\Chorus\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/config|Windows|{{P|localappdata}}\\Chorus\\Saved\\SaveGames\\}}" Stray Souls: pageId: 173478 steam: 1807210 @@ -156137,7 +151947,7 @@ Streamer Shall Not Pass!: Streamer Simulator: pageId: 36910 steam: 519180 -Streamer's Life: +"Streamer's Life": pageId: 135667 steam: 1071940 Streamline: @@ -156158,8 +151968,8 @@ Street Fighter 30th Anniversary Collection: pageId: 90604 steam: 586200 templates: - - '{{Game data/config|Windows|{{p|steam}}\userdata\{{p|uid}}\586200\remote}}' - - '{{Game data/saves|Windows|{{p|steam}}\userdata\{{p|uid}}\586200}}' + - "{{Game data/config|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\586200\\remote}}" + - "{{Game data/saves|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\586200}}" Street Fighter 6: pageId: 178027 steam: 1364780 @@ -156170,25 +151980,25 @@ Street Fighter 6: - 2224461 - 2224462 templates: - - '{{Game data/config|Windows|{{P|game}}\config.ini}}' - - '{{Game data/saves|Windows|{{p|steam}}\userdata\{{p|uid}}\1364780\remote\win64_save\}}' + - "{{Game data/config|Windows|{{P|game}}\\config.ini}}" + - "{{Game data/saves|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\1364780\\remote\\win64_save\\}}" Street Fighter Alpha 2: gog: 1207659134 pageId: 19767 templates: - - '{{Game data/config|Windows|{{p|game}}\Z.SV }}' - - '{{Game data/saves|Windows|{{p|game}}\Z.SV }}' -'Street Fighter Alpha: Warriors'' Dreams': + - "{{Game data/config|Windows|{{p|game}}\\Z.SV }}" + - "{{Game data/saves|Windows|{{p|game}}\\Z.SV }}" +"Street Fighter Alpha: Warriors' Dreams": pageId: 188010 Street Fighter II: pageId: 188007 templates: - - '{{Game data/config|DOS|{{p|game}}\CONFIG.SF2}}' - - '{{Game data/saves|DOS|{{p|game}}\HIGHSCOR.SF2}}' + - "{{Game data/config|DOS|{{p|game}}\\CONFIG.SF2}}" + - "{{Game data/saves|DOS|{{p|game}}\\HIGHSCOR.SF2}}" Street Fighter IV: pageId: 6353 steam: 21660 -'Street Fighter Online: Mouse Generation': +"Street Fighter Online: Mouse Generation": pageId: 188170 Street Fighter V: pageId: 29367 @@ -156196,25 +152006,25 @@ Street Fighter V: steamSide: - 593880 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\StreetFighterV\Saved\Config\WindowsNoEditor}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\StreetFighterV\Saved\SaveGames}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\StreetFighterV\\Saved\\Config\\WindowsNoEditor}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\StreetFighterV\\Saved\\SaveGames}}" Street Fighter X Mega Man: pageId: 4187 templates: - - '{{Game data/config|Windows|{{p|game}}\keyconfig.txt}}' + - "{{Game data/config|Windows|{{p|game}}\\keyconfig.txt}}" Street Fighter X Tekken: pageId: 3204 steam: 209120 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\CAPCOM\SFTK\*.ini|}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\CAPCOM\SFTK\savedata\{{p|uid}}\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\CAPCOM\\SFTK\\*.ini|}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\CAPCOM\\SFTK\\savedata\\{{p|uid}}\\}}" Street Heat: pageId: 76983 steam: 744040 Street Hoop: pageId: 155933 steam: 1189520 -'Street Jam: The Rise': +"Street Jam: The Rise": pageId: 155705 steam: 1167470 Street Karate: @@ -156223,18 +152033,18 @@ Street Karate: Street Legal: pageId: 76838 steam: 1571280 -'Street Legal Racing: Redline': +"Street Legal Racing: Redline": pageId: 31753 -'Street Legal Racing: Redline v2.3.1': +"Street Legal Racing: Redline v2.3.1": pageId: 41791 steam: 497180 -'Street Level: Windows Edition': +"Street Level: Windows Edition": pageId: 94733 steam: 861670 -'Street Outlaws 2: Winner Takes All': +"Street Outlaws 2: Winner Takes All": pageId: 173767 steam: 1451950 -'Street Outlaws: The List': +"Street Outlaws: The List": pageId: 150739 steam: 987330 Street Posse Showdown: @@ -156244,8 +152054,8 @@ Street Power Football: pageId: 162799 steam: 1275760 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\SFL\Saved\Config\WindowsNoEditor}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\SFL\Saved}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\SFL\\Saved\\Config\\WindowsNoEditor}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\SFL\\Saved}}" Street Racer: gog: 1914471609 pageId: 169356 @@ -156258,8 +152068,8 @@ Street Racing Syndicate: pageId: 31008 steam: 292410 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Street Racing Syndicate\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Street Racing Syndicate\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Street Racing Syndicate\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Street Racing Syndicate\\}}" Street Striker: pageId: 173551 steam: 1628940 @@ -156291,14 +152101,14 @@ Streets of Fury EX: pageId: 37594 steam: 350910 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Streets of Fury Save and Config\Config.xml}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Streets of Fury Save and Config\Save.sav}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Streets of Fury Save and Config\\Config.xml}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Streets of Fury Save and Config\\Save.sav}}" Streets of Kamurocho: pageId: 164278 steam: 1368430 templates: - - '{{Game data/config|Windows|{{P|appdata}}\Sega\Streets Of Kamurocho\USR-DATA}}' - - '{{Game data/saves|Windows|{{P|appdata}}\Sega\Streets Of Kamurocho\USR-DATA}}' + - "{{Game data/config|Windows|{{P|appdata}}\\Sega\\Streets Of Kamurocho\\USR-DATA}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\Sega\\Streets Of Kamurocho\\USR-DATA}}" Streets of Neotokio: pageId: 156096 steam: 1124130 @@ -156306,56 +152116,42 @@ Streets of Rage: pageId: 30688 steam: 71164 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\SEGA Mega Drive - Classics\setup.dat|{{p|userprofile\Documents}}\SEGA Genesis Classics\setup.dat}} - - >- - {{Game data/saves|Windows|{{p|userprofile\Documents}}\SEGA Mega Drive - Classics\0043\|{{p|userprofile\Documents}}\SEGA Genesis Classics\0043\}} + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\SEGA Mega Drive Classics\\setup.dat|{{p|userprofile\\Documents}}\\SEGA Genesis Classics\\setup.dat}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\SEGA Mega Drive Classics\\0043\\|{{p|userprofile\\Documents}}\\SEGA Genesis Classics\\0043\\}}" Streets of Rage 2: pageId: 30690 steam: 71165 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\SEGA Mega Drive - Classics\setup.dat|{{p|userprofile\Documents}}\SEGA Genesis Classics\setup.dat}} - - >- - {{Game data/saves|Windows|{{p|userprofile\Documents}}\SEGA Mega Drive - Classics\0044\|{{p|userprofile\Documents}}\SEGA Genesis Classics\0044\}} + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\SEGA Mega Drive Classics\\setup.dat|{{p|userprofile\\Documents}}\\SEGA Genesis Classics\\setup.dat}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\SEGA Mega Drive Classics\\0044\\|{{p|userprofile\\Documents}}\\SEGA Genesis Classics\\0044\\}}" Streets of Rage 3: pageId: 30689 steam: 211206 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\SEGA Mega Drive - Classics\setup.dat|{{p|userprofile\Documents}}\SEGA Genesis Classics\setup.dat}} - - >- - {{Game data/saves|Windows|{{p|userprofile\Documents}}\SEGA Mega Drive - Classics\0054\|{{p|userprofile\Documents}}\SEGA Genesis Classics\0054\}} + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\SEGA Mega Drive Classics\\setup.dat|{{p|userprofile\\Documents}}\\SEGA Genesis Classics\\setup.dat}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\SEGA Mega Drive Classics\\0054\\|{{p|userprofile\\Documents}}\\SEGA Genesis Classics\\0054\\}}" Streets of Rage 4: gog: 1600715263 pageId: 107386 steam: 985890 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\Streets of Rage 4 Save and Config\}}' - - '{{Game data/config|Microsoft Store|{{P|userprofile\Documents}}\Streets of Rage 4\Config.txt}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Streets of Rage 4 Save and Config/}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/Streets of Rage 4 Save and Config/}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\Streets of Rage 4 Save and Config\}}' - - >- - {{Game data/saves|Microsoft - Store|{{P|localappdata}}\Packages\DotEmu.StreetsofRage4_map6zyh9ym1xy\SystemAppData\wgs\{{P|uid}}}} - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Streets of Rage 4 Save and Config/}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/Streets of Rage 4 Save and Config/}}' + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\Streets of Rage 4 Save and Config\\}}" + - "{{Game data/config|Microsoft Store|{{P|userprofile\\Documents}}\\Streets of Rage 4\\Config.txt}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Streets of Rage 4 Save and Config/}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/Streets of Rage 4 Save and Config/}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\Streets of Rage 4 Save and Config\\}}" + - "{{Game data/saves|Microsoft Store|{{P|localappdata}}\\Packages\\DotEmu.StreetsofRage4_map6zyh9ym1xy\\SystemAppData\\wgs\\{{P|uid}}}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Streets of Rage 4 Save and Config/}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/Streets of Rage 4 Save and Config/}}" Streets of Rage Remake: pageId: 143269 templates: - - '{{Game data/config| Windows | {{p|game}}\savegame\savegame.sor }}' -'Streets of Red: Devil''s Dare Deluxe': + - "{{Game data/config| Windows | {{p|game}}\\savegame\\savegame.sor }}" +"Streets of Red: Devil's Dare Deluxe": pageId: 126152 steam: 946650 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\SecretBase\Streets of Red - Devil''s Dare Deluxe\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\SecretBase\\Streets of Red - Devil's Dare Deluxe\\}}" Streets of Rogue: gog: 1602894919 pageId: 51523 @@ -156363,19 +152159,17 @@ Streets of Rogue: steamSide: - 594700 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\Streets of - Rogue\TechSettings.dat|{{p|userprofile\Documents}}\Streets of Rogue\CloudData\GameSettings.dat}} - - '{{Game data/config|OS X|{{p|osxhome}}/Library/ApplicationSupport/unity.streetsofrogue.streetsofrogue}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Streets of Rogue/Streets of Rogue/}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Streets of Rogue\CloudData\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/ApplicationSupport/unity.streetsofrogue.streetsofrogue}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Streets of Rogue/Streets of Rogue/}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Streets of Rogue\\TechSettings.dat|{{p|userprofile\\Documents}}\\Streets of Rogue\\CloudData\\GameSettings.dat}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/ApplicationSupport/unity.streetsofrogue.streetsofrogue}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Streets of Rogue/Streets of Rogue/}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Streets of Rogue\\CloudData\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/ApplicationSupport/unity.streetsofrogue.streetsofrogue}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Streets of Rogue/Streets of Rogue/}}" Streets of SimCity: pageId: 88376 templates: - - '{{Game data/config|Windows|{{p|game}}\streets.cfg|{{p|game}}\IP.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\games\careers\}}' + - "{{Game data/config|Windows|{{p|game}}\\streets.cfg|{{p|game}}\\IP.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\games\\careers\\}}" Streng Check: pageId: 132108 steam: 295650 @@ -156394,30 +152188,30 @@ Strider (2014): pageId: 14832 steam: 235210 templates: - - '{{Game data/config|Windows|{{p|steam}}\userdata\{{p|uid}}\235210\local\vars_pc.cfg|{{P|game}}\*.cfg}}' - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\235210\remote\}}' + - "{{Game data/config|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\235210\\local\\vars_pc.cfg|{{P|game}}\\*.cfg}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\235210\\remote\\}}" Strife: gog: 1432899949 pageId: 21454 steam: 317040 templates: - - '{{Game data/saves|DOS|{{p|game}}\strfsav*.ssg}}' + - "{{Game data/saves|DOS|{{p|game}}\\strfsav*.ssg}}" Strife (MOBA): pageId: 15572 steam: 339280 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Strife\game\startup.cfg}}' -'Strife: Veteran Edition': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Strife\\game\\startup.cfg}}" +"Strife: Veteran Edition": gog: 1432899949 pageId: 21451 steam: 317040 templates: - - '{{Game data/config|Windows|{{P|game}}\*.cfg}}' - - '{{Game data/config|OS X|{{P|game}}/*.cfg}}' - - '{{Game data/config|Linux|{{P|game}}/*.cfg}}' - - '{{Game data/saves|Windows|{{P|game}}\strfsav*.ssg}}' - - '{{Game data/saves|OS X|{{P|game}}/strfsav*.ssg}}' - - '{{Game data/saves|Linux|{{P|game}}/strfsav*.ssg}}' + - "{{Game data/config|Windows|{{P|game}}\\*.cfg}}" + - "{{Game data/config|OS X|{{P|game}}/*.cfg}}" + - "{{Game data/config|Linux|{{P|game}}/*.cfg}}" + - "{{Game data/saves|Windows|{{P|game}}\\strfsav*.ssg}}" + - "{{Game data/saves|OS X|{{P|game}}/strfsav*.ssg}}" + - "{{Game data/saves|Linux|{{P|game}}/strfsav*.ssg}}" Strike Cars: pageId: 109494 steam: 906020 @@ -156425,15 +152219,15 @@ Strike Commander: gog: 1207659195 pageId: 19756 templates: - - '{{Game data/config|DOS|{{p|game}}\SC.CFG}}' - - '{{Game data/saves|DOS|{{p|game}}\*.SAV|{{p|game}}\*.TO1}}' + - "{{Game data/config|DOS|{{p|game}}\\SC.CFG}}" + - "{{Game data/saves|DOS|{{p|game}}\\*.SAV|{{p|game}}\\*.TO1}}" Strike Force Remastered: pageId: 113380 steam: 860260 -'Strike Force: Arctic Storm': +"Strike Force: Arctic Storm": pageId: 39045 steam: 527520 -'Strike Force: Desert Thunder': +"Strike Force: Desert Thunder": pageId: 43396 steam: 444210 Strike Master Apocalypse: @@ -156442,30 +152236,30 @@ Strike Master Apocalypse: Strike Solitaire: pageId: 134606 steam: 1034410 -'Strike Squadron: Caracará': +"Strike Squadron: Caracará": pageId: 55550 steam: 507340 Strike Suit Infinity: pageId: 23431 steam: 234160 templates: - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{P|uid}}/234160/remote/}}' + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{P|uid}}/234160/remote/}}" Strike Suit Zero: gog: 1207659161 pageId: 4597 steam: 209540 templates: - - '{{Game data/config|Linux|{{P|game}}/binary/}}' - - '{{Game data/saves|Linux|{{P|game}}/binary/}}' - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{P|uid}}/209540/remote/}}' -'Strike Suit Zero: Director''s Cut': + - "{{Game data/config|Linux|{{P|game}}/binary/}}" + - "{{Game data/saves|Linux|{{P|game}}/binary/}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{P|uid}}/209540/remote/}}" +"Strike Suit Zero: Director's Cut": gog: 1207664533 pageId: 16689 steam: 288370 templates: - - '{{Game data/config|Windows|{{P|game}}\pc\main\Binary\settings.sav}}' - - '{{Game data/saves|Windows|{{P|game}}\pc\main\Binary\Main.sav}}' - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{P|uid}}\288370\remote\}}' + - "{{Game data/config|Windows|{{P|game}}\\pc\\main\\Binary\\settings.sav}}" + - "{{Game data/saves|Windows|{{P|game}}\\pc\\main\\Binary\\Main.sav}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{P|uid}}\\288370\\remote\\}}" Strike Team Hydra: pageId: 78046 steam: 716050 @@ -156473,7 +152267,7 @@ Strike Vector: pageId: 14414 steam: 246700 templates: - - '{{Game data/config|Windows|{{p|game}}\UDKGame\Config\UDK*.ini}}' + - "{{Game data/config|Windows|{{p|game}}\\UDKGame\\Config\\UDK*.ini}}" Strike Vector EX: pageId: 63353 steam: 476360 @@ -156481,15 +152275,15 @@ Strike Vector EX: - 587020 - 668140 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\SVEX\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\SVEX\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\SVEX\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\SVEX\\Saved\\SaveGames\\}}" Strike mole: pageId: 152673 steam: 1191390 Strike!OvulationDivine Fist! Rebellion to Extinction!: pageId: 156125 steam: 847550 -'Strike.is: The Game': +"Strike.is: The Game": pageId: 42343 steam: 502550 StrikeForce Kitty: @@ -156515,7 +152309,7 @@ Strikers Edge: pageId: 52005 steam: 520670 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Fun Punch Games\Strikers Edge\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Fun Punch Games\\Strikers Edge\\}}" Strikey Sisters: pageId: 62947 steam: 643880 @@ -156525,7 +152319,7 @@ String Theory: Strings: pageId: 155769 steam: 1213810 -'Strip Breaker : Hentai Girls': +"Strip Breaker : Hentai Girls": pageId: 112340 steam: 929290 Strip Shooter: @@ -156534,10 +152328,10 @@ Strip Shooter: Strip Slot Sonja: pageId: 167322 steam: 1027140 -'Stripper Anya: Christmas Special': +"Stripper Anya: Christmas Special": pageId: 153870 steam: 1193450 -'Stripper Anya: Demon Slayer': +"Stripper Anya: Demon Slayer": pageId: 66195 steam: 671630 Strive: @@ -156552,42 +152346,22 @@ Strobophagia Rave Horror: Stroke Fill: pageId: 136700 steam: 1089140 -Strong Bad's Cool Game for Attractive People: +"Strong Bad's Cool Game for Attractive People": gog: 1441707255 pageId: 36363 steam: 8340 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\Telltale Games\Episode 1 - Homestar - Ruiner\prefs.prop|{{p|userprofile\Documents}}\Telltale Games\Episode 2 - Strong Badia the - Free\prefs.prop|{{p|userprofile\Documents}}\Telltale Games\Episode 3 - Baddest of the - Bands\prefs.prop|{{p|userprofile\Documents}}\Telltale Games\Episode 4 - Dangeresque - 3\prefs.prop|{{p|userprofile\Documents}}\Telltale Games\Episode 5 - 8-bit is Enough\prefs.prop}} - - >- - {{Game data/config|Steam|{{p|userprofile\Documents}}\Telltale Games\Homestar - Ruiner\prefs.prop|{{p|userprofile\Documents}}\Telltale Games\Strong Badia the - Free\prefs.prop|{{p|userprofile\Documents}}\Telltale Games\Baddest of the - Bands\prefs.prop|{{p|userprofile\Documents}}\Telltale Games\Dangeresque - 3\prefs.prop|{{p|userprofile\Documents}}\Telltale Games\8-bit is Enough\prefs.prop}} - - >- - {{Game data/saves|Windows|{{p|userprofile\Documents}}\Telltale Games\Episode 1 - Homestar - Ruiner\*.save|{{p|userprofile\Documents}}\Telltale Games\Episode 2 - Strong Badia the - Free\*.save|{{p|userprofile\Documents}}\Telltale Games\Episode 3 - Baddest of the - Bands\*.save|{{p|userprofile\Documents}}\Telltale Games\Episode 4 - Dangeresque - 3\*.save|{{p|userprofile\Documents}}\Telltale Games\Episode 5 - 8-bit is Enough\*.save}} - - >- - {{Game data/saves|Steam|{{p|userprofile\Documents}}\Telltale Games\Homestar - Ruiner\*.save|{{p|userprofile\Documents}}\Telltale Games\Strong Badia the - Free\*.save|{{p|userprofile\Documents}}\Telltale Games\Baddest of the - Bands\*.save|{{p|userprofile\Documents}}\Telltale Games\Dangeresque 3\*.save|{{p|userprofile\Documents}}\Telltale - Games\8-bit is Enough\*.save}} + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Telltale Games\\Episode 1 - Homestar Ruiner\\prefs.prop|{{p|userprofile\\Documents}}\\Telltale Games\\Episode 2 - Strong Badia the Free\\prefs.prop|{{p|userprofile\\Documents}}\\Telltale Games\\Episode 3 - Baddest of the Bands\\prefs.prop|{{p|userprofile\\Documents}}\\Telltale Games\\Episode 4 - Dangeresque 3\\prefs.prop|{{p|userprofile\\Documents}}\\Telltale Games\\Episode 5 - 8-bit is Enough\\prefs.prop}}" + - "{{Game data/config|Steam|{{p|userprofile\\Documents}}\\Telltale Games\\Homestar Ruiner\\prefs.prop|{{p|userprofile\\Documents}}\\Telltale Games\\Strong Badia the Free\\prefs.prop|{{p|userprofile\\Documents}}\\Telltale Games\\Baddest of the Bands\\prefs.prop|{{p|userprofile\\Documents}}\\Telltale Games\\Dangeresque 3\\prefs.prop|{{p|userprofile\\Documents}}\\Telltale Games\\8-bit is Enough\\prefs.prop}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Telltale Games\\Episode 1 - Homestar Ruiner\\*.save|{{p|userprofile\\Documents}}\\Telltale Games\\Episode 2 - Strong Badia the Free\\*.save|{{p|userprofile\\Documents}}\\Telltale Games\\Episode 3 - Baddest of the Bands\\*.save|{{p|userprofile\\Documents}}\\Telltale Games\\Episode 4 - Dangeresque 3\\*.save|{{p|userprofile\\Documents}}\\Telltale Games\\Episode 5 - 8-bit is Enough\\*.save}}" + - "{{Game data/saves|Steam|{{p|userprofile\\Documents}}\\Telltale Games\\Homestar Ruiner\\*.save|{{p|userprofile\\Documents}}\\Telltale Games\\Strong Badia the Free\\*.save|{{p|userprofile\\Documents}}\\Telltale Games\\Baddest of the Bands\\*.save|{{p|userprofile\\Documents}}\\Telltale Games\\Dangeresque 3\\*.save|{{p|userprofile\\Documents}}\\Telltale Games\\8-bit is Enough\\*.save}}" Stronghold: gog: 1441096928 pageId: 61939 steam: 1904650 templates: - - '{{Game data/config|DOS|{{p|game}}\GAME.CFG}}' - - '{{Game data/saves|DOS|{{p|game}}\STRONG.SAV\SAVE.***|{{p|game}}\STRONG.SAV\SAVES.TXT|{{p|game}}\HIGH.TXT}}' + - "{{Game data/config|DOS|{{p|game}}\\GAME.CFG}}" + - "{{Game data/saves|DOS|{{p|game}}\\STRONG.SAV\\SAVE.***|{{p|game}}\\STRONG.SAV\\SAVES.TXT|{{p|game}}\\HIGH.TXT}}" Stronghold (2001): gog: 1207658712 pageId: 15839 @@ -156595,16 +152369,16 @@ Stronghold (2001): steamSide: - 901735 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Stronghold\stronghold.cfg}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Stronghold\Saves}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Stronghold\\stronghold.cfg}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Stronghold\\Saves}}" Stronghold 2: pageId: 4788 steam: 40960 steamSide: - 1802290 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Stronghold 2\Stronghold2.GraphicsSettings.xml}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Stronghold 2\Saves}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Stronghold 2\\Stronghold2.GraphicsSettings.xml}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Stronghold 2\\Saves}}" Stronghold 3: pageId: 23128 steam: 47400 @@ -156617,10 +152391,10 @@ Stronghold 3: - 47425 - 47426 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Stronghold 3\Profiles\options.xml}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/firefly/stronghold3/}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Stronghold 3\Saved Games}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/firefly/stronghold3/}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Stronghold 3\\Profiles\\options.xml}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/firefly/stronghold3/}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Stronghold 3\\Saved Games}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/firefly/stronghold3/}}" Stronghold Crusader: gog: 1207658713 pageId: 19755 @@ -156628,22 +152402,18 @@ Stronghold Crusader: steamSide: - 16700 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\Stronghold - Crusader\crusader.cfg|{{p|userprofile\Documents}}\Stronghold Crusader Extreme\crusader.cfg}} - - >- - {{Game data/saves|Windows|{{p|userprofile\Documents}}\Stronghold - Crusader\Saves\|{{p|userprofile\Documents}}\Stronghold Crusader Extreme\Saves\}} + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Stronghold Crusader\\crusader.cfg|{{p|userprofile\\Documents}}\\Stronghold Crusader Extreme\\crusader.cfg}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Stronghold Crusader\\Saves\\|{{p|userprofile\\Documents}}\\Stronghold Crusader Extreme\\Saves\\}}" Stronghold Crusader 2: gog: 1433852499 gogSide: - - 1443001674 - - 1443001244 - - 1443000530 - 1443000342 + - 1443000530 + - 1443001244 - 1443001420 - - 1450362950 + - 1443001674 - 1450362827 + - 1450362950 pageId: 20043 steam: 232890 steamSide: @@ -156662,8 +152432,8 @@ Stronghold Crusader 2: - 412590 - 1802280 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Stronghold Crusader 2\Profiles\options.xml}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Stronghold Crusader 2\Saved Games}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Stronghold Crusader 2\\Profiles\\options.xml}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Stronghold Crusader 2\\Saved Games}}" Stronghold Kingdoms: pageId: 40830 steam: 47410 @@ -156675,32 +152445,27 @@ Stronghold Legends: steamSide: - 1802300 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Stronghold Legends\StrongholdLegends.GraphicsSettings.xml}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Stronghold Legends\Saves}}' -'Stronghold: A Hero''s Fate': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Stronghold Legends\\StrongholdLegends.GraphicsSettings.xml}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Stronghold Legends\\Saves}}" +"Stronghold: A Hero's Fate": pageId: 123743 steam: 955360 -'Stronghold: Definitive Edition': +"Stronghold: Definitive Edition": pageId: 188643 steam: 2140020 steamSide: - 2433890 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\appdata\locallow}}\Firefly Studios\Stronghold 1 Definitive - Edition\*.cfg}} - - >- - {{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\Firefly Studios\Stronghold 1 Definitive - Edition\Saves|{{p|userprofile\appdata\locallow}}\Firefly Studios\Stronghold 1 Definitive - Edition\Maps|{{p|userprofile\appdata\locallow}}\Firefly Studios\Stronghold 1 Definitive Edition\UserWorkshopMaps}} -'Stronghold: Warlords': + - "{{Game data/config|Windows|{{p|userprofile\\appdata\\locallow}}\\Firefly Studios\\Stronghold 1 Definitive Edition\\*.cfg}}" + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\Firefly Studios\\Stronghold 1 Definitive Edition\\Saves|{{p|userprofile\\appdata\\locallow}}\\Firefly Studios\\Stronghold 1 Definitive Edition\\Maps|{{p|userprofile\\appdata\\locallow}}\\Firefly Studios\\Stronghold 1 Definitive Edition\\UserWorkshopMaps}}" +"Stronghold: Warlords": gog: 1491012905 gogSide: - - 1153246314 - 1114792710 - - 2066158581 + - 1153246314 - 1658261489 - 2005777684 + - 2066158581 pageId: 139612 steam: 907650 steamSide: @@ -156710,8 +152475,8 @@ Stronghold Legends: - 1615012 - 1615013 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Stronghold Warlords\Profiles\options.xml}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Stronghold Warlords\Saved Games}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Stronghold Warlords\\Profiles\\options.xml}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Stronghold Warlords\\Saved Games}}" Strongmind: pageId: 52598 steam: 546920 @@ -156737,36 +152502,32 @@ Struggling: pageId: 130696 steam: 1035560 templates: - - >- - {{Game - data/config|Windows|{{P|userprofile\appdata\locallow}}\ChasingRatsGames\Struggling\{{P|uid}}\save-global.json|{{P|hkcu}}\SOFTWARE\ChasingRatsGames\Struggling\}} - - >- - {{Game - data/saves|Windows|{{P|userprofile\appdata\locallow}}\ChasingRatsGames\Struggling\{{P|uid}}\save-slot-*.json}} + - "{{Game data/config|Windows|{{P|userprofile\\appdata\\locallow}}\\ChasingRatsGames\\Struggling\\{{P|uid}}\\save-global.json|{{P|hkcu}}\\SOFTWARE\\ChasingRatsGames\\Struggling\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\ChasingRatsGames\\Struggling\\{{P|uid}}\\save-slot-*.json}}" Stubbs the Zombie in Rebel Without a Pulse: gog: 1862877679 pageId: 35918 steam: 7800 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Stubbs the Zombie\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Stubbs the Zombie\}}' - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\7800\}}' -'Study of Unusual: Forest of Secrets': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Stubbs the Zombie\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Stubbs the Zombie\\}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\7800\\}}" +"Study of Unusual: Forest of Secrets": pageId: 103077 steam: 897550 Stumble Guys: pageId: 182992 steam: 1677740 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\SOFTWARE\Kitka Games\Stumble Guys}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\SOFTWARE\\Kitka Games\\Stumble Guys}}" Stunt Corgi VR: pageId: 78649 steam: 665080 Stunt GP: pageId: 26609 templates: - - '{{Game data/config|Windows|{{p|game}}\*.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\save\}}' + - "{{Game data/config|Windows|{{p|game}}\\*.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\save\\}}" Stunt Hill: pageId: 89533 steam: 818790 @@ -156783,9 +152544,9 @@ Stunt Kite Party: Stunt Rally: pageId: 166458 templates: - - '{{Game data/config|Windows|{{p|game}}\Stunt Rally [version number]\config}}' - - '{{Game data/saves|Windows|{{p|appdata}}\stuntrally}}' - - '{{Game data/saves|Linux|{{p|xdgconfighome}}\stuntrally}}' + - "{{Game data/config|Windows|{{p|game}}\\Stunt Rally [version number]\\config}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\stuntrally}}" + - "{{Game data/saves|Linux|{{p|xdgconfighome}}\\stuntrally}}" Stunt Simulator Multiplayer: pageId: 123381 steam: 979090 @@ -156806,42 +152567,40 @@ Stupid Cupid: Stupid Invaders: pageId: 58955 templates: - - '{{Game data/config|Windows|{{p|game}}\Save\config.dat}}' - - '{{Game data/saves|Windows|{{p|game}}\Save\*.dat}}' + - "{{Game data/config|Windows|{{p|game}}\\Save\\config.dat}}" + - "{{Game data/saves|Windows|{{p|game}}\\Save\\*.dat}}" Stupid Quest - Medieval Adventures: pageId: 132290 steam: 1045530 Stupid Raft Battle Simulator: pageId: 58427 steam: 598240 -'SturmFront - The Mutant War: Übel Edition': +"SturmFront - The Mutant War: Übel Edition": pageId: 66804 steam: 501530 -'Stygian: Reign of the Old Ones': +"Stygian: Reign of the Old Ones": gog: 1903363154 pageId: 80713 steam: 779290 templates: - - >- - {{Game data/config|Windows|{{P|userprofile}}\AppData\LocalLow\Cultic - Games\STYGIAN\Settings.dat|{{P|hkcu}}\Software\Cultic Games\STYGIAN}} - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Cultic Games\STYGIAN\SavedGames}}' -'Styx: Master of Shadows': + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Cultic Games\\STYGIAN\\Settings.dat|{{P|hkcu}}\\Software\\Cultic Games\\STYGIAN}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Cultic Games\\STYGIAN\\SavedGames}}" +"Styx: Master of Shadows": gog: 2038001955 pageId: 20406 steam: 242640 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Styx\StyxGame\Config\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Styx\Save\}}' -'Styx: Shards of Darkness': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Styx\\StyxGame\\Config\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Styx\\Save\\}}" +"Styx: Shards of Darkness": gog: 2090261953 pageId: 55217 steam: 355790 steamSide: - 630880 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Styx2\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Styx2\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Styx2\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Styx2\\Saved\\SaveGames\\}}" Su Hack: pageId: 121029 steam: 956000 @@ -156852,8 +152611,8 @@ Sub Command: pageId: 25682 steam: 2920 templates: - - '{{Game data/config|Windows|{{p|game}}\subcommand.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\scenario\*.mcs|{{p|game}}\.log}}' + - "{{Game data/config|Windows|{{p|game}}\\subcommand.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\scenario\\*.mcs|{{p|game}}\\.log}}" Sub Culture: pageId: 157635 Sub Rosa: @@ -156881,9 +152640,9 @@ Subject 13: pageId: 25344 steam: 322970 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\Microids\Subject13}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Microids\Subject13}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/unity.Microids.Subject13/}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Microids\\Subject13}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Microids\\Subject13}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/unity.Microids.Subject13/}}" Subject 264: pageId: 52123 steam: 540770 @@ -156898,19 +152657,16 @@ Sublevel Zero Redux: pageId: 28976 steam: 327880 templates: - - >- - {{Game - data/config|Windows|{{p|game}}\PlayerData\Settings|{{p|game}}\PlayerData\Control|{{p|HKCU}}\Software\SIGTRAP - Games\Sublevel Zero}} - - '{{Game data/saves|Windows|{{p|game}}\PlayerData\Save}}' - - '{{Game data/saves|OS X|{{p|game}}/PlayerData/Save}}' - - '{{Game data/saves|Linux|{{p|game}}/PlayerData/Save}}' -'Subliminal Realms: The Masterpiece': + - "{{Game data/config|Windows|{{p|game}}\\PlayerData\\Settings|{{p|game}}\\PlayerData\\Control|{{p|HKCU}}\\Software\\SIGTRAP Games\\Sublevel Zero}}" + - "{{Game data/saves|Windows|{{p|game}}\\PlayerData\\Save}}" + - "{{Game data/saves|OS X|{{p|game}}/PlayerData/Save}}" + - "{{Game data/saves|Linux|{{p|game}}/PlayerData/Save}}" +"Subliminal Realms: The Masterpiece": pageId: 54633 renamedFrom: - - 'Subliminal Realms: The Masterpiece Collector''s Edition' + - "Subliminal Realms: The Masterpiece Collector's Edition" steam: 565100 -'Submachine: Legacy': +"Submachine: Legacy": pageId: 190502 steam: 1564790 Submarine Attack!: @@ -156921,8 +152677,8 @@ Submarine Titans: pageId: 12604 steam: 1259380 templates: - - '{{Game data/config|Windows|{{p|game}}\savegame\(profile)\PL_LOG.DK*}}' - - '{{Game data/saves|Windows|{{p|game}}\savegame\(profile)\}}' + - "{{Game data/config|Windows|{{p|game}}\\savegame\\(profile)\\PL_LOG.DK*}}" + - "{{Game data/saves|Windows|{{p|game}}\\savegame\\(profile)\\}}" SubmarineCraft: pageId: 124417 steam: 965250 @@ -156930,59 +152686,45 @@ Submerged: pageId: 32056 steam: 301860 templates: - - '{{Game data/config|Windows|{{p|game}}\Submerged\Saved\Config\WindowsNoEditor}}' - - '{{Game data/saves|Windows|{{p|game}}\Submerged\Saved\SaveGames\}}' -'Submerged: Hidden Depths': + - "{{Game data/config|Windows|{{p|game}}\\Submerged\\Saved\\Config\\WindowsNoEditor}}" + - "{{Game data/saves|Windows|{{p|game}}\\Submerged\\Saved\\SaveGames\\}}" +"Submerged: Hidden Depths": pageId: 170277 steam: 1614270 steamSide: - 1732080 templates: - - >- - {{Game data/config|Epic Games - Launcher|{{P|localappdata}}\SubmergedHiddenDepths\EGS\Saved\Config\WindowsNoEditor\}} - - '{{Game data/config|Steam|{{P|localappdata}}\SubmergedHiddenDepths\Steam\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Epic Games Launcher|{{P|localappdata}}\SubmergedHiddenDepths\EGS\Saved\SaveGames\}}' - - '{{Game data/saves|Steam|{{P|localappdata}}\SubmergedHiddenDepths\Steam\Saved\SaveGames\}}' -'Submerged: VR Escape the Room': + - "{{Game data/config|Epic Games Launcher|{{P|localappdata}}\\SubmergedHiddenDepths\\EGS\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/config|Steam|{{P|localappdata}}\\SubmergedHiddenDepths\\Steam\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Epic Games Launcher|{{P|localappdata}}\\SubmergedHiddenDepths\\EGS\\Saved\\SaveGames\\}}" + - "{{Game data/saves|Steam|{{P|localappdata}}\\SubmergedHiddenDepths\\Steam\\Saved\\SaveGames\\}}" +"Submerged: VR Escape the Room": pageId: 109970 steam: 919160 Submersed: pageId: 156388 steam: 1210060 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\SOFTWARE\Main Loop videogames\Submersed}}' - - '{{Game data/saves|Windows|{{p|hkcu}}\SOFTWARE\Main Loop videogames\Submersed}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\Main Loop videogames\\Submersed}}" + - "{{Game data/saves|Windows|{{p|hkcu}}\\SOFTWARE\\Main Loop videogames\\Submersed}}" Subnautica: pageId: 34653 steam: 264710 templates: - - '{{Game data/config|Windows|{{p|game}}\SNAppData\SavedGames\options\options.bin}}' - - >- - {{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/unity.Unknown - Worlds.Subnautica/Subnautica/SavedGames/options/options.bin}} - - >- - {{Game data/config|Epic Games Store|{{p|userprofile\appdata\locallow}}\Unknown - Worlds\Subnautica\Subnautica\SavedGames\options\options.bin}} - - '{{Game data/saves|Windows|{{p|game}}\SNAppData\SavedGames}}' - - >- - {{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/unity.Unknown - Worlds.Subnautica/Subnautica/SavedGames}} - - >- - {{Game data/saves|Epic Games Store|{{p|userprofile\appdata\locallow}}\Unknown - Worlds\Subnautica\Subnautica\SavedGames}} -'Subnautica: Below Zero': + - "{{Game data/config|Windows|{{p|game}}\\SNAppData\\SavedGames\\options\\options.bin}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/unity.Unknown Worlds.Subnautica/Subnautica/SavedGames/options/options.bin}}" + - "{{Game data/config|Epic Games Store|{{p|userprofile\\appdata\\locallow}}\\Unknown Worlds\\Subnautica\\Subnautica\\SavedGames\\options\\options.bin}}" + - "{{Game data/saves|Windows|{{p|game}}\\SNAppData\\SavedGames}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/unity.Unknown Worlds.Subnautica/Subnautica/SavedGames}}" + - "{{Game data/saves|Epic Games Store|{{p|userprofile\\appdata\\locallow}}\\Unknown Worlds\\Subnautica\\Subnautica\\SavedGames}}" +"Subnautica: Below Zero": pageId: 126901 steam: 848450 templates: - - '{{Game data/config|Windows|{{P|userprofile}}\AppData\LocalLow\Unknown Worlds\Subnautica Below Zero}}' - - '{{Game data/saves|Windows|{{p|game}}\SNAppData\SavedGames}}' - - >- - {{Game data/saves|Epic Games Store|{{P|userprofile}}\AppData\LocalLow\Unknown Worlds\Subnautica Below - Zero\SubnauticaZero\SavedGames}} - - >- - {{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/unity.Unknown - Worlds.SubnauticaZero/SubnauticaZero/SavedGames}} + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Unknown Worlds\\Subnautica Below Zero}}" + - "{{Game data/saves|Windows|{{p|game}}\\SNAppData\\SavedGames}}" + - "{{Game data/saves|Epic Games Store|{{P|userprofile}}\\AppData\\LocalLow\\Unknown Worlds\\Subnautica Below Zero\\SubnauticaZero\\SavedGames}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/unity.Unknown Worlds.SubnauticaZero/SubnauticaZero/SavedGames}}" Subscribe & Punch!: pageId: 87627 steam: 773150 @@ -156996,8 +152738,8 @@ Subsistence: pageId: 51963 steam: 418030 templates: - - '{{Game data/config|Windows|{{P|game}}\Subsistence\UDKGame\Config}}' - - '{{Game data/saves|Windows|{{P|game}}\Subsistence\Binaries\Win32}}' + - "{{Game data/config|Windows|{{P|game}}\\Subsistence\\UDKGame\\Config}}" + - "{{Game data/saves|Windows|{{P|game}}\\Subsistence\\Binaries\\Win32}}" Subspace Continuum: pageId: 38464 steam: 352700 @@ -157005,17 +152747,15 @@ Subsurface Circular: pageId: 68591 steam: 676820 templates: - - >- - {{Game data/config|Windows|{{P|userprofile}}\AppData\LocalLow\Bithell Games\Subsurface - Circular\macrosave.sav|{{P|hkcu}}\Software\Bithell Games\Subsurface Circular\}} - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Bithell Games\Subsurface Circular\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Bithell Games/Subsurface Circular/}}' + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Bithell Games\\Subsurface Circular\\macrosave.sav|{{P|hkcu}}\\Software\\Bithell Games\\Subsurface Circular\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Bithell Games\\Subsurface Circular\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Bithell Games/Subsurface Circular/}}" Subterra: pageId: 52237 steam: 521590 templates: - - '{{Game data/config|Windows|{{p|game}}\Game.ini}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Subterra\}}' + - "{{Game data/config|Windows|{{p|game}}\\Game.ini}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Subterra\\}}" Subterrain: gog: 1458056008 pageId: 34226 @@ -157023,14 +152763,14 @@ Subterrain: steamSide: - 470670 templates: - - '{{Game data/config|Windows|{{P|userprofile}}\AppData\LocalLow\Pixellore\Subterrain\Settings\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Pixellore\Subterrain\Saves}}' + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Pixellore\\Subterrain\\Settings\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Pixellore\\Subterrain\\Saves}}" Subterranean Animism: pageId: 63101 steam: 1100150 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/saves|Windows|{{p|game}}\}}' + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\}}" Subterraneus: pageId: 96283 steam: 854120 @@ -157050,8 +152790,8 @@ Subverse: pageId: 137157 steam: 1034140 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Subverse\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Subverse\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Subverse\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Subverse\\Saved\\SaveGames\\}}" Subwar 2050: gog: 1207659217 pageId: 19748 @@ -157063,8 +152803,8 @@ Subway Midnight: pageId: 172737 steam: 1750570 templates: - - '{{Game data/config|Windows|{{p|game}}\SubwayAfterMidnight\Saved\Config\WindowsNoEditor}}' - - '{{Game data/saves|Windows|{{p|game}}\SubwayAfterMidnight\Saved\SaveGames}}' + - "{{Game data/config|Windows|{{p|game}}\\SubwayAfterMidnight\\Saved\\Config\\WindowsNoEditor}}" + - "{{Game data/saves|Windows|{{p|game}}\\SubwayAfterMidnight\\Saved\\SaveGames}}" Subway Simulator: pageId: 89990 steam: 785660 @@ -157081,8 +152821,8 @@ Succubus: pageId: 137052 steam: 985830 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Succubus\Saved\Config\WindowsNoEditor}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\Succubus\Saved\SaveGames}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\Succubus\\Saved\\Config\\WindowsNoEditor}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Succubus\\Saved\\SaveGames}}" Succubus Affection: gog: 1277463276 pageId: 164457 @@ -157091,7 +152831,7 @@ Succubus Rem: pageId: 73911 steam: 726990 templates: - - '{{Game data/saves|Windows|{{p|game}}\www\save\*}}' + - "{{Game data/saves|Windows|{{p|game}}\\www\\save\\*}}" Succubus Waifu: pageId: 152947 steam: 1184400 @@ -157099,8 +152839,8 @@ Succubus With Guns: pageId: 183033 steam: 1680340 templates: - - '{{Game data/config|Windows|{{P|game}}\}}' - - '{{Game data/saves|Windows|{{P|game}}\}}' + - "{{Game data/config|Windows|{{P|game}}\\}}" + - "{{Game data/saves|Windows|{{P|game}}\\}}" Succubus x Saint: gog: 1511658527 pageId: 142242 @@ -157109,60 +152849,58 @@ Succumate: gog: 1831776886 pageId: 164477 steam: 1278390 -'SuchArt: Genius Artist Simulator': +"SuchArt: Genius Artist Simulator": pageId: 169992 steam: 1293180 steamSide: - 1469280 - 1514860 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Voolgi\saves\}}' + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Voolgi\\saves\\}}" Suchawira World Traveler: pageId: 126249 steam: 1007380 -'Sucker for Love: First Date': +"Sucker for Love: First Date": gog: 1716283799 pageId: 177620 steam: 1574270 templates: - - '{{Game data/saves|Windows|{{P|localappdata}}\SuckerforLoveBackup\efs_data\*.dat|{{P|game}}\efs_data\*.dat}}' + - "{{Game data/saves|Windows|{{P|localappdata}}\\SuckerforLoveBackup\\efs_data\\*.dat|{{P|game}}\\efs_data\\*.dat}}" Sudden Strike: gog: 1248581604 pageId: 21855 steam: 612300 templates: - - '{{Game data/config|Windows|{{p|game}}\sudtest.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\SaveGames\}}' + - "{{Game data/config|Windows|{{p|game}}\\sudtest.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\SaveGames\\}}" Sudden Strike 2: gog: 1421964930 pageId: 62653 steam: 612520 templates: - - '{{Game data/saves|Windows|{{p|game}}\*.plr}}' -'Sudden Strike 3: Arms for Victory': + - "{{Game data/saves|Windows|{{p|game}}\\*.plr}}" +"Sudden Strike 3: Arms for Victory": gog: 1875699572 pageId: 62655 steam: 612540 templates: - - '{{Game data/config|Windows|{{p|game}}\SS3.ini}}' - - >- - {{Game data/saves|Windows|{{p|userprofile\documents}}\Fireglow Games\Sudden Strike - 3|{{p|userprofile\documents}}\Fireglow Games\Sudden Strike The Last Stand}} + - "{{Game data/config|Windows|{{p|game}}\\SS3.ini}}" + - "{{Game data/saves|Windows|{{p|userprofile\\documents}}\\Fireglow Games\\Sudden Strike 3|{{p|userprofile\\documents}}\\Fireglow Games\\Sudden Strike The Last Stand}}" Sudden Strike 4: gog: 2146639313 pageId: 39727 steam: 373930 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Kite Games\Sudden Strike 4\}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Kite Games\Sudden Strike 4\SaveGames\}}' - - '{{Game data/saves|Linux|{{P|userprofile}}/.config/unity3d/Kite Games/Sudden Strike 4/SaveGames/}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Kite Games\\Sudden Strike 4\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Kite Games\\Sudden Strike 4\\SaveGames\\}}" + - "{{Game data/saves|Linux|{{P|userprofile}}/.config/unity3d/Kite Games/Sudden Strike 4/SaveGames/}}" Sudeki: gog: 1207664353 pageId: 17991 steam: 233350 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Sudeki\PlayerOptions.xml}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Sudeki\Save}}' + - "{{Game data/config|Windows|{{p|appdata}}\\Sudeki\\PlayerOptions.xml}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Sudeki\\Save}}" Sudoku: pageId: 65979 steam: 681170 @@ -157178,7 +152916,7 @@ Sudoku Jigsaw: Sudoku Killer: pageId: 98398 steam: 861270 -'Sudoku Monster - 49,151 Hardest Puzzles': +"Sudoku Monster - 49,151 Hardest Puzzles": pageId: 136635 steam: 1082900 Sudoku Original: @@ -157193,7 +152931,7 @@ Sudoku Zenkai: Sudoku by Nestor Yavorskyy: pageId: 75017 steam: 733070 -'Sudoku3D 2: The Cube': +"Sudoku3D 2: The Cube": pageId: 129795 steam: 1031560 Sudokuball Detective: @@ -157208,7 +152946,7 @@ Sufoco: Sugar Box: pageId: 77849 steam: 610390 -'Sugar Cube: Bittersweet Factory': +"Sugar Cube: Bittersweet Factory": pageId: 17688 steam: 212110 Sugar Fruit Match: @@ -157227,21 +152965,21 @@ Suicide Guy: pageId: 65580 steam: 303610 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Chubby Pixel\Suicide Guy\}}' - - '{{Game data/saves|Windows|{{P|hkcu}}\Software\Chubby Pixel\Suicide Guy\}}' -'Suicide Guy: Sleepin'' Deeply': + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Chubby Pixel\\Suicide Guy\\}}" + - "{{Game data/saves|Windows|{{P|hkcu}}\\Software\\Chubby Pixel\\Suicide Guy\\}}" +"Suicide Guy: Sleepin' Deeply": pageId: 95299 steam: 860860 templates: - - '{{Game data/config|Windows|HKEY_CURRENT_USER\Software\Chubby Pixel\Suicide Guy Sleepin'' Deeply\}}' - - '{{Game data/saves|Windows|HKEY_CURRENT_USER\Software\Chubby Pixel\Suicide Guy Sleepin'' Deeply\}}' + - "{{Game data/config|Windows|HKEY_CURRENT_USER\\Software\\Chubby Pixel\\Suicide Guy Sleepin' Deeply\\}}" + - "{{Game data/saves|Windows|HKEY_CURRENT_USER\\Software\\Chubby Pixel\\Suicide Guy Sleepin' Deeply\\}}" Suicide Simulator: pageId: 69490 steam: 703810 -'Suicide Squad: Kill the Justice League': +"Suicide Squad: Kill the Justice League": pageId: 162780 renamedFrom: - - 'Suicide Squad: Kill The Justice League' + - "Suicide Squad: Kill The Justice League" steam: 315210 Suicideville: pageId: 88015 @@ -157259,46 +152997,42 @@ Suitchi: Suite 776: pageId: 153360 steam: 1197370 -'Suits: A Business RPG': +"Suits: A Business RPG": pageId: 38059 steam: 410670 -'Suits: Absolute Power': +"Suits: Absolute Power": pageId: 156718 steam: 1210230 -Suka's Escape: +"Suka's Escape": pageId: 148611 steam: 1171250 -Suki's Spooky Romance: +"Suki's Spooky Romance": pageId: 93983 steam: 847940 Sullen: pageId: 55183 steam: 547210 -'Sullen: Light is Your Friend': +"Sullen: Light is Your Friend": pageId: 38831 steam: 525460 -'Sulphur Nimbus: Hel''s Elixir': +"Sulphur Nimbus: Hel's Elixir": pageId: 158678 templates: - - >- - {{Game - data/config|Windows|{{p|game}}\audio.txt|{{p|game}}\controls.txt|{{p|game}}\graphics.txt|{{p|game}}\window.txt}} - - >- - {{Game - data/config|Linux|{{p|game}}\audio.txt|{{p|game}}\controls.txt|{{p|game}}\graphics.txt|{{p|game}}\window.txt}} - - '{{Game data/saves|Windows|{{p|game}}\save\}}' - - '{{Game data/saves|Linux|{{p|game}}\save\}}' -'Sumatra: Fate of Yandi': + - "{{Game data/config|Windows|{{p|game}}\\audio.txt|{{p|game}}\\controls.txt|{{p|game}}\\graphics.txt|{{p|game}}\\window.txt}}" + - "{{Game data/config|Linux|{{p|game}}\\audio.txt|{{p|game}}\\controls.txt|{{p|game}}\\graphics.txt|{{p|game}}\\window.txt}}" + - "{{Game data/saves|Windows|{{p|game}}\\save\\}}" + - "{{Game data/saves|Linux|{{p|game}}\\save\\}}" +"Sumatra: Fate of Yandi": gog: 1489938431 pageId: 113000 steam: 610900 templates: - - '{{Game data/config|Windows|{{P|userprofile}}\Saved Games\Sumatra Fate of Yandi\acsetup.cfg}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\Saved Games\Sumatra Fate of Yandi\}}' + - "{{Game data/config|Windows|{{P|userprofile}}\\Saved Games\\Sumatra Fate of Yandi\\acsetup.cfg}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\Saved Games\\Sumatra Fate of Yandi\\}}" Sumer: pageId: 53706 steam: 464950 -'Sumerian Blood: Gilgamesh against the Gods': +"Sumerian Blood: Gilgamesh against the Gods": pageId: 99268 steam: 877310 Sumerians: @@ -157314,17 +153048,17 @@ Sumico - The Numbers Game: pageId: 47397 steam: 383190 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\SavedGames\SumicoGame\Local\AllPlayers\settings.dat}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/SumicoGame/Local/AllPlayers/settings.dat}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/SumicoGame/Local/AllPlayers/settings.dat}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\SavedGames\SumicoGame\Local\AllPlayers\settings.dat}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/SumicoGame/Local/AllPlayers/settings.dat}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/SumicoGame/Local/AllPlayers/settings.dat}}' + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\SavedGames\\SumicoGame\\Local\\AllPlayers\\settings.dat}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/SumicoGame/Local/AllPlayers/settings.dat}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/SumicoGame/Local/AllPlayers/settings.dat}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\SavedGames\\SumicoGame\\Local\\AllPlayers\\settings.dat}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/SumicoGame/Local/AllPlayers/settings.dat}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/SumicoGame/Local/AllPlayers/settings.dat}}" Sumire: pageId: 172601 steam: 1335230 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\GameTomo\Sumire\}}' + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\GameTomo\\Sumire\\}}" Summer Athletics: pageId: 41304 steam: 27200 @@ -157335,7 +153069,7 @@ Summer Challenge: gog: 1820973446 pageId: 162373 templates: - - '{{Game data/saves|DOS|{{p|game}}\*.SGL|{{p|game}}\*.RP?}}' + - "{{Game data/saves|DOS|{{p|game}}\\*.SGL|{{p|game}}\\*.RP?}}" Summer Daze at Hero-U: pageId: 151471 steam: 1139490 @@ -157356,9 +153090,9 @@ Summer Islands: pageId: 82944 steam: 731650 templates: - - '{{Game data/saves|Windows| Steam\steamapps\common\Summer Islands\savegames}}' - - '{{Game data/saves|OS X| Steam\steamapps\common\Summer Islands\savegames}}' - - '{{Game data/saves|Linux| Steam\steamapps\common\Summer Islands\savegames}}' + - "{{Game data/saves|Windows| Steam\\steamapps\\common\\Summer Islands\\savegames}}" + - "{{Game data/saves|OS X| Steam\\steamapps\\common\\Summer Islands\\savegames}}" + - "{{Game data/saves|Linux| Steam\\steamapps\\common\\Summer Islands\\savegames}}" Summer Knights: pageId: 149847 steam: 1147640 @@ -157403,18 +153137,14 @@ Summer in Mara: steamSide: - 1318420 templates: - - >- - {{Game data/config|Windows|{{P|userprofile}}\AppData\LocalLow\Chibig\Summer in - Mara\Save\Main|{{p|HKCU}}\SOFTWARE\Chibig\Summer in Mara}} - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\Chibig\Summer in Mara\Save\Main}}' -Summer of '58: + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Chibig\\Summer in Mara\\Save\\Main|{{p|HKCU}}\\SOFTWARE\\Chibig\\Summer in Mara}}" + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\Chibig\\Summer in Mara\\Save\\Main}}" +"Summer of '58": pageId: 186144 steam: 1609080 templates: - - >- - {{Game - data/config|Windows|{{P|localappdata}}\Summer_of_58\Saved\Config\WindowsNoEditor\|{{P|localappdata}}\Summer_of_58\Saved\SaveGames\saved_namespace.sav}} - - '{{Game data/saves|Windows|{{P|localappdata}}\Summer_of_58\Saved\SaveGames\*Slot*.sav}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\Summer_of_58\\Saved\\Config\\WindowsNoEditor\\|{{P|localappdata}}\\Summer_of_58\\Saved\\SaveGames\\saved_namespace.sav}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Summer_of_58\\Saved\\SaveGames\\*Slot*.sav}}" Summer times Afternoon: pageId: 55724 steam: 568800 @@ -157422,7 +153152,7 @@ Summer with Mia: gog: 1908302341 pageId: 185567 steam: 1571170 -'Summer: Jigsaw Puzzles': +"Summer: Jigsaw Puzzles": pageId: 99550 steam: 888880 Summerford: @@ -157442,8 +153172,8 @@ Summoner: pageId: 23780 steam: 275570 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Volition\Summoner|{{p|game}}\summoner.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\savegame\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Volition\\Summoner|{{p|game}}\\summoner.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\savegame\\}}" Summoner VR: pageId: 153806 steam: 1198340 @@ -157462,14 +153192,14 @@ Sumocrats: Sumoman: pageId: 59623 steam: 552970 -'Sun Blast: Star Fighter': +"Sun Blast: Star Fighter": pageId: 24157 steam: 344910 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Oblone\sunblast\}}' - - '{{Game data/config|Steam|{{p|steam}}\userdata\{{p|uid}}\344910\remote\}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Oblone\sunblast\}}' - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\344910\remote\}}' + - "{{Game data/config|Windows|{{p|appdata}}\\Oblone\\sunblast\\}}" + - "{{Game data/config|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\344910\\remote\\}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Oblone\\sunblast\\}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\344910\\remote\\}}" Sun Dogs: pageId: 45860 steam: 404420 @@ -157478,7 +153208,7 @@ Sun Wukong VS Robot: renamedFrom: - 孙悟空大战机器金刚 / Sun Wukong VS Robot steam: 1008830 -'SunAge: Battle for Elysium': +"SunAge: Battle for Elysium": pageId: 49121 steam: 318650 SunMeiQi: @@ -157488,7 +153218,7 @@ Suna: pageId: 87405 steam: 803920 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Suna\Saved\Config\WindowsNoEditor}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Suna\\Saved\\Config\\WindowsNoEditor}}" Sunblaze: gog: 1763369377 gogSide: @@ -157498,19 +153228,19 @@ Sunblaze: steamSide: - 1574940 templates: - - '{{Game data/config|Windows|{{p|USERPROFILE\AppData\LocalLow}}\Games From Earth\Sunblaze\Player}}' - - '{{Game data/saves|Windows|{{p|USERPROFILE\AppData\LocalLow}}\Games From Earth\Sunblaze\slot_*.sunblaze}}' + - "{{Game data/config|Windows|{{p|USERPROFILE\\AppData\\LocalLow}}\\Games From Earth\\Sunblaze\\Player}}" + - "{{Game data/saves|Windows|{{p|USERPROFILE\\AppData\\LocalLow}}\\Games From Earth\\Sunblaze\\slot_*.sunblaze}}" Sunburnt: pageId: 82434 steam: 792320 -'Suncore Chronicles: The Tower': +"Suncore Chronicles: The Tower": pageId: 89618 steam: 634090 Sunday Gold: pageId: 180915 steam: 1969440 templates: - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Bkom\Sunday Gold}}' + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Bkom\\Sunday Gold}}" Sundered: gog: 1116941879 gogSide: @@ -157521,11 +153251,11 @@ Sundered: steamSide: - 686430 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\Thunder Lotus Games\Sundered\SAVE_OPTIONS.sav}}' - - '{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/Thunder Lotus Games/Sundered}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Thunder Lotus Games\Sundered\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/unity.Thunder Lotus Games.Sundered}}' - - '{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/Thunder Lotus Games/Sundered}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Thunder Lotus Games\\Sundered\\SAVE_OPTIONS.sav}}" + - "{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/Thunder Lotus Games/Sundered}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Thunder Lotus Games\\Sundered\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/unity.Thunder Lotus Games.Sundered}}" + - "{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/Thunder Lotus Games/Sundered}}" Sundown Refusal: pageId: 137130 steam: 886720 @@ -157545,20 +153275,20 @@ Sunless Sea: pageId: 18486 steam: 304650 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\SOFTWARE\Failbetter Games\Sunless Sea\}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Failbetter Games/Sunless Sea/}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Failbetter Games\Sunless Sea\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Unity.Failbetter Games.Sunless Sea/saves/}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Failbetter Games/Sunless Sea/saves/}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\Failbetter Games\\Sunless Sea\\}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Failbetter Games/Sunless Sea/}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Failbetter Games\\Sunless Sea\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Unity.Failbetter Games.Sunless Sea/saves/}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Failbetter Games/Sunless Sea/saves/}}" Sunless Skies: gog: 1771268779 pageId: 59135 steam: 596970 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Failbetter Games\Sunless Skies}}' - - '{{Game data/config|Linux|${XDG_CONFIG_HOME:-$HOME/.config}/unity3d/Failbetter Games/Sunless Skies}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Failbetter Games\Sunless Skies\storage}}' - - '{{Game data/saves|Linux|${XDG_CONFIG_HOME:-$HOME/.config}/unity3d/Failbetter Games/Sunless Skies}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Failbetter Games\\Sunless Skies}}" + - "{{Game data/config|Linux|${XDG_CONFIG_HOME:-$HOME/.config}/unity3d/Failbetter Games/Sunless Skies}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Failbetter Games\\Sunless Skies\\storage}}" + - "{{Game data/saves|Linux|${XDG_CONFIG_HOME:-$HOME/.config}/unity3d/Failbetter Games/Sunless Skies}}" Sunline: pageId: 180306 steam: 1964000 @@ -157576,30 +153306,30 @@ Sunrider Academy: pageId: 33664 steam: 340730 templates: - - '{{Game data/config|Windows|{{P|appdata}}\renpy\SunriderAcademy-1416887014\persistent}}' - - '{{Game data/saves|Windows|{{P|appdata}}\renpy\SHINRAI - Broken Beyond Despair-1413934444\*.save}}' -'Sunrider: Liberation Day': + - "{{Game data/config|Windows|{{P|appdata}}\\renpy\\SunriderAcademy-1416887014\\persistent}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\renpy\\SHINRAI - Broken Beyond Despair-1413934444\\*.save}}" +"Sunrider: Liberation Day": gog: 1310542797 pageId: 33616 steam: 358750 templates: - - '{{Game data/config|Windows|{{p|game}}\renpy\config.py}}' - - '{{Game data/saves|Windows|{{P|appdata}}\renpy\Sunrider Liberation Day-1433059539\}}' -'Sunrider: Mask of Arcadius': + - "{{Game data/config|Windows|{{p|game}}\\renpy\\config.py}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\renpy\\Sunrider Liberation Day-1433059539\\}}" +"Sunrider: Mask of Arcadius": gog: 1748855533 pageId: 33672 steam: 313730 templates: - - '{{Game data/saves|Windows|{{p|game}}\game\saves|{{p|appdata}}\RenPy\Sunrider Episode 2 Save Data}}' - - '{{Game data/saves|Linux|{{p|game}}/game/saves}}' -'Sunrise: survival': + - "{{Game data/saves|Windows|{{p|game}}\\game\\saves|{{p|appdata}}\\RenPy\\Sunrider Episode 2 Save Data}}" + - "{{Game data/saves|Linux|{{p|game}}/game/saves}}" +"Sunrise: survival": pageId: 64840 steam: 663110 Sunset: pageId: 47839 steam: 287600 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Sunset}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Sunset}}" Sunset Giant: pageId: 125663 steam: 979350 @@ -157610,21 +153340,17 @@ Sunset Overdrive: pageId: 120675 steam: 847370 templates: - - >- - {{Game data/config|Microsoft - Store|{{p|localappdata}}\Packages\Microsoft.Sunflower_8wekyb3d8bbwe\LocalState\Saves\{{p|uid}}\Sunset_userprefs.save}} - - '{{Game data/config|Steam|{{p|localappdata}}\Sunset\Saves\{{p|uid}}\Sunset_userprefs.save}}' - - >- - {{Game data/saves|Microsoft - Store|{{p|localappdata}}\Packages\Microsoft.Sunflower_8wekyb3d8bbwe\LocalState\Saves\{{p|uid}}\}} - - '{{Game data/saves|Steam|{{p|localappdata}}\Sunset\Saves\{{p|uid}}\}}' + - "{{Game data/config|Microsoft Store|{{p|localappdata}}\\Packages\\Microsoft.Sunflower_8wekyb3d8bbwe\\LocalState\\Saves\\{{p|uid}}\\Sunset_userprefs.save}}" + - "{{Game data/config|Steam|{{p|localappdata}}\\Sunset\\Saves\\{{p|uid}}\\Sunset_userprefs.save}}" + - "{{Game data/saves|Microsoft Store|{{p|localappdata}}\\Packages\\Microsoft.Sunflower_8wekyb3d8bbwe\\LocalState\\Saves\\{{p|uid}}\\}}" + - "{{Game data/saves|Steam|{{p|localappdata}}\\Sunset\\Saves\\{{p|uid}}\\}}" Sunset Planet: pageId: 128274 steam: 1029160 Sunset Rangers: pageId: 53554 steam: 559340 -Sunset's Ashes: +"Sunset's Ashes": pageId: 53652 steam: 557890 Sunshine & Overcast: @@ -157634,8 +153360,8 @@ Sunshine Heavy Industries: pageId: 191206 steam: 1542810 templates: - - '{{Game data/config|Windows|{{P|appdata}}\sunshine-heavy-industries\}}' - - '{{Game data/saves|Windows|{{P|appdata}}\sunshine-heavy-industries\Local Storage\leveldb\}}' + - "{{Game data/config|Windows|{{P|appdata}}\\sunshine-heavy-industries\\}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\sunshine-heavy-industries\\Local Storage\\leveldb\\}}" Sunshine Manor: pageId: 178059 steam: 745730 @@ -157672,16 +153398,16 @@ Super: Super 123: pageId: 73298 steam: 711700 -Super 3-D Noah's Ark: +"Super 3-D Noah's Ark": gog: 1672565562 pageId: 25330 steam: 371180 templates: - - '{{Game data/config|DOS|{{p|game}}\}}' - - '{{Game data/config|Windows|{{P|appdata}}\Noah3D\noah3d.cfg}}' - - '{{Game data/saves|DOS|{{p|game}}\SAVEGAM#.N3D}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\Saved Games\Noah3D\}}' -'Super Agent: Drunk Kent': + - "{{Game data/config|DOS|{{p|game}}\\}}" + - "{{Game data/config|Windows|{{P|appdata}}\\Noah3D\\noah3d.cfg}}" + - "{{Game data/saves|DOS|{{p|game}}\\SAVEGAM#.N3D}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Saved Games\\Noah3D\\}}" +"Super Agent: Drunk Kent": pageId: 128670 steam: 1023090 Super Alpaca Bros.: @@ -157694,7 +153420,7 @@ Super Amazing Wagon Adventure: pageId: 37150 steam: 250500 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\SavedGames\WagonAdventure\WagonAdventure\AllPlayers}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\SavedGames\\WagonAdventure\\WagonAdventure\\AllPlayers}}" Super Angling: pageId: 153139 steam: 1179170 @@ -157702,8 +153428,8 @@ Super Animal Royale: pageId: 113332 steam: 843380 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Pixile Inc\Super Animal Royale\}}' - - '{{Game data/saves|Windows|{{P|hkcu}}\Software\Pixile Inc\Super Animal Royale\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Pixile Inc\\Super Animal Royale\\}}" + - "{{Game data/saves|Windows|{{P|hkcu}}\\Software\\Pixile Inc\\Super Animal Royale\\}}" Super Arcade Boy in Defender of Planet Earth: pageId: 73519 steam: 718040 @@ -157719,10 +153445,10 @@ Super Arcade Racing: Super Arcade Soccer: pageId: 128109 steam: 1024430 -'Super Army of Tentacles 3: The Search for Army of Tentacles 2': +"Super Army of Tentacles 3: The Search for Army of Tentacles 2": pageId: 62070 steam: 592200 -'Super Army of Tentacles 3: The Search for Army of Tentacles 2: Black GOAT of the Woods Edition': +"Super Army of Tentacles 3: The Search for Army of Tentacles 2: Black GOAT of the Woods Edition": pageId: 81679 steam: 763000 Super Asteroids: @@ -157732,8 +153458,8 @@ Super Auto Pets: pageId: 172058 steam: 1714040 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\SOFTWARE\Team Wood\Super Auto Pets\}}' -Super B-Dino's adventures: + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\Team Wood\\Super Auto Pets\\}}" +"Super B-Dino's adventures": pageId: 94659 steam: 860200 Super BOO Quest: @@ -157745,13 +153471,13 @@ Super Ball Wrestle Yes: Super Beam: pageId: 129779 steam: 1019500 -'Super Benbo Quest: Turbo Deluxe': +"Super Benbo Quest: Turbo Deluxe": pageId: 87203 steam: 793740 Super Bernie World: pageId: 158340 steam: 1258040 -'Super Bit Adventure: Paragons of Life': +"Super Bit Adventure: Paragons of Life": pageId: 87077 steam: 778640 Super Bit Blaster XL: @@ -157773,8 +153499,8 @@ Super Blood Hockey: pageId: 56152 steam: 532190 templates: - - '{{Game data/config|Windows|{{p|game}}\SubparBloopHokeyCon.fig}}' - - '{{Game data/saves|Windows|{{p|game}}\Franchises\}}' + - "{{Game data/config|Windows|{{p|game}}\\SubparBloopHokeyCon.fig}}" + - "{{Game data/saves|Windows|{{p|game}}\\Franchises\\}}" Super Blue Boy Planet: pageId: 55127 steam: 560260 @@ -157788,26 +153514,20 @@ Super Bomberman R: pageId: 90390 steam: 702700 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\KDE\SuperBombermanR\}}' - - '{{Game data/saves|Windows|{{P|game}}\savedata.bin}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\KDE\\SuperBombermanR\\}}" + - "{{Game data/saves|Windows|{{P|game}}\\savedata.bin}}" Super Bomberman R 2: pageId: 181751 steam: 1913740 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\AppData\LocalLow}}\Konami Digital Entertainment Co_, Ltd_\SUPER - BOMBERMAN R 2\{{P|uid}}}} - - >- - {{Game data/saves|Windows|{{p|userprofile\AppData\LocalLow}}\Konami Digital Entertainment Co_, Ltd_\SUPER - BOMBERMAN R 2\{{P|uid}}}} + - "{{Game data/config|Windows|{{p|userprofile\\AppData\\LocalLow}}\\Konami Digital Entertainment Co_, Ltd_\\SUPER BOMBERMAN R 2\\{{P|uid}}}}" + - "{{Game data/saves|Windows|{{p|userprofile\\AppData\\LocalLow}}\\Konami Digital Entertainment Co_, Ltd_\\SUPER BOMBERMAN R 2\\{{P|uid}}}}" Super Bomberman R Online: pageId: 168255 steam: 1308380 templates: - - '{{Game data/config|Windows|{{p|HKCU}}\SOFTWARE\Konami Digital Entertainment\Super Bomberman R Online}}' - - >- - {{Game data/saves|Windows|{{p|userprofile\AppData\LocalLow}}\Konami Digital Entertainment\Super Bomberman R - Online}} + - "{{Game data/config|Windows|{{p|HKCU}}\\SOFTWARE\\Konami Digital Entertainment\\Super Bomberman R Online}}" + - "{{Game data/saves|Windows|{{p|userprofile\\AppData\\LocalLow}}\\Konami Digital Entertainment\\Super Bomberman R Online}}" Super Bora Dragon Eyes: pageId: 144873 steam: 1147520 @@ -157828,11 +153548,8 @@ Super Bullet Break: pageId: 178479 steam: 1767170 templates: - - '{{Game data/config|Windows|{{P|steam}})\userdata\{{P|uid}}\1767170\remote\}}' - - >- - {{Game data/saves|Steam|{{P|steam}})\userdata\{{P|uid}}\1767170\remote\{{note|If Steam Cloud Saves are ''enabled'' - or ''disabled'' for the game, it will always use this location for save games even in Steam "Offline Mode" and - when disconnected from the Internet.'''}}}} + - "{{Game data/config|Windows|{{P|steam}})\\userdata\\{{P|uid}}\\1767170\\remote\\}}" + - "{{Game data/saves|Steam|{{P|steam}})\\userdata\\{{P|uid}}\\1767170\\remote\\{{note|If Steam Cloud Saves are ''enabled'' or ''disabled'' for the game, it will always use this location for save games even in Steam \"Offline Mode\" and when disconnected from the Internet.'''}}}}" Super Bunny Laser Spikes: pageId: 180611 Super Bunny Man: @@ -157851,12 +153568,12 @@ Super Cane Magic ZERO: pageId: 37305 steam: 336440 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Studio Evil\Super Cane Magic ZERO\}}' - - '{{Game data/saves|Windows|{{p|game}}\SavesDir\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Studio Evil\\Super Cane Magic ZERO\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\SavesDir\\}}" Super Captain 3D: pageId: 121685 steam: 972050 -'Super Cat Herding: Totally Awesome Edition': +"Super Cat Herding: Totally Awesome Edition": pageId: 58217 steam: 459150 Super Catboy: @@ -157883,8 +153600,8 @@ Super Chopper: pageId: 168115 steam: 1373560 templates: - - '{{Game data/config|Windows|{{p|APPDATA}}\Webfoot\SuperChopper\Settings.json}}' - - '{{Game data/saves|Windows|{{p|APPDATA}}\Webfoot\SuperChopper\Settings.json}}' + - "{{Game data/config|Windows|{{p|APPDATA}}\\Webfoot\\SuperChopper\\Settings.json}}" + - "{{Game data/saves|Windows|{{p|APPDATA}}\\Webfoot\\SuperChopper\\Settings.json}}" Super Clash Crossover - Steam Edition: pageId: 142261 steam: 1054440 @@ -157892,25 +153609,25 @@ Super Cloudbuilt: pageId: 58390 steam: 463700 templates: - - '{{Game data/config|Windows|{{p|appdata}}\SuperCloudbuilt\}}' - - '{{Game data/saves|Windows|{{p|appdata}}\SuperCloudbuilt\}}' + - "{{Game data/config|Windows|{{p|appdata}}\\SuperCloudbuilt\\}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\SuperCloudbuilt\\}}" Super Club Soccer: pageId: 148445 steam: 744980 Super Columbine Massacre RPG!: pageId: 140111 templates: - - '{{Game data/saves|Windows|{{p|game}}\Save*.lsd}}' -'Super ComboMan: Smash Edition': + - "{{Game data/saves|Windows|{{p|game}}\\Save*.lsd}}" +"Super ComboMan: Smash Edition": pageId: 39325 steam: 468650 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Interabang Entertainment\Super Comboman\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Interabang Entertainment\\Super Comboman\\}}" Super Comboman: pageId: 19890 steam: 250280 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Interabang Entertainment\Super Comboman\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Interabang Entertainment\\Super Comboman\\}}" Super Commander XL: pageId: 114308 steam: 939240 @@ -157918,9 +153635,9 @@ Super Crate Box: pageId: 5263 steam: 212800 templates: - - '{{Game data/config|Windows|{{p|game}}\options.ini}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\SuperCrateBox_YoYo\crates110.sav}}' -'Super Crome: Bullet Purgatory': + - "{{Game data/config|Windows|{{p|game}}\\options.ini}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\SuperCrateBox_YoYo\\crates110.sav}}" +"Super Crome: Bullet Purgatory": pageId: 124502 steam: 984450 Super Crush KO: @@ -157944,13 +153661,13 @@ Super Cyborg: Super DX-Ball: pageId: 151803 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Super DX-Ball *\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Super DX-Ball *\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Super DX-Ball *\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Super DX-Ball *\\}}" Super Dangerous Dungeons: pageId: 98360 steam: 856540 templates: - - '{{Game data/saves|Windows|{{p|appdata}}\Stencyl\Super Dangerous Dungeons\}}' + - "{{Game data/saves|Windows|{{p|appdata}}\\Stencyl\\Super Dangerous Dungeons\\}}" Super Darts VR: pageId: 121777 steam: 965760 @@ -157960,7 +153677,7 @@ Super Daryl Deluxe: steamSide: - 828300 templates: - - '{{Game data/saves|Steam|{{P|steam}}\userdata\{{P|uid}}\361230\remote\save*.sav}}' + - "{{Game data/saves|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\361230\\remote\\save*.sav}}" Super Dashmatch: pageId: 91078 steam: 750420 @@ -157980,7 +153697,7 @@ Super Distro: pageId: 47186 steam: 364690 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\SUPERDITROXXL\Saved\Config\WindowsNoEditor\Engine.ini}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\SUPERDITROXXL\\Saved\\Config\\WindowsNoEditor\\Engine.ini}}" Super Dodge Ball: pageId: 176004 Super Dodgeball Beats: @@ -157989,20 +153706,16 @@ Super Dodgeball Beats: Super Double Dragon: pageId: 191059 steam: 2086370 -'Super Dragon Ball Heroes: World Mission': +"Super Dragon Ball Heroes: World Mission": pageId: 127160 steam: 798510 templates: - - >- - {{Game data/config|Windows|{{P|localappdata}}\BANDAI NAMCO Entertainment\SUPER DRAGON BALL HEROES WORLD - MISSION\Saved\SaveGames\{{P|uid}}\config.ini}} - - >- - {{Game data/saves|Windows|{{P|localappdata}}\BANDAI NAMCO Entertainment\SUPER DRAGON BALL HEROES WORLD - MISSION\Saved\SaveGames\{{P|uid}}\}} + - "{{Game data/config|Windows|{{P|localappdata}}\\BANDAI NAMCO Entertainment\\SUPER DRAGON BALL HEROES WORLD MISSION\\Saved\\SaveGames\\{{P|uid}}\\config.ini}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\BANDAI NAMCO Entertainment\\SUPER DRAGON BALL HEROES WORLD MISSION\\Saved\\SaveGames\\{{P|uid}}\\}}" Super Dungeon Boy: pageId: 75508 steam: 718180 -'Super Dungeon Boy: Mega Fire': +"Super Dungeon Boy: Mega Fire": pageId: 82847 steam: 799540 Super Dungeon Bros: @@ -158015,8 +153728,8 @@ Super Dungeon Master: pageId: 89282 steam: 717190 templates: - - '{{Game data/config|Windows|{{p|game}}\Game.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\}}' + - "{{Game data/config|Windows|{{p|game}}\\Game.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\}}" Super Dungeon Run: pageId: 47233 steam: 382480 @@ -158024,9 +153737,7 @@ Super Dungeon Tactics: pageId: 39169 steam: 463160 templates: - - >- - {{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Soda Pop Minatures and Underbite Games\Super Dungeon - Tactics}} + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Soda Pop Minatures and Underbite Games\\Super Dungeon Tactics}}" Super Duper Flying Genocide 2017: pageId: 55815 steam: 422870 @@ -158037,17 +153748,15 @@ Super Fancy Pants Adventure: pageId: 65934 steam: 668210 templates: - - '{{Game data/config|Windows|{{P|steam}}\userdata\{{P|uid}}\668210\remote}}' - - >- - {{Game data/config|OS X|{{P|steam}}\Users\YourName\Library\Application - Support\Steam\userdata\{{P|uid}}\668210\remote}} - - '{{Game data/saves|Windows|{{p|appdata}}\com.bornegames.FPAWorld4\Local Store\#SharedObjects\SFPA.swf\SFPA.sol}}' + - "{{Game data/config|Windows|{{P|steam}}\\userdata\\{{P|uid}}\\668210\\remote}}" + - "{{Game data/config|OS X|{{P|steam}}\\Users\\YourName\\Library\\Application Support\\Steam\\userdata\\{{P|uid}}\\668210\\remote}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\com.bornegames.FPAWorld4\\Local Store\\#SharedObjects\\SFPA.swf\\SFPA.sol}}" Super Fighter: pageId: 143386 Super Flail: pageId: 100162 steam: 891130 -Super Flippin' Phones: +"Super Flippin' Phones": pageId: 44549 steam: 433490 Super Flipside: @@ -158056,7 +153765,7 @@ Super Flipside: Super Friends Party: pageId: 135538 steam: 1075140 -Super Frog's Quest: +"Super Frog's Quest": pageId: 108560 steam: 913840 Super Furball: @@ -158085,7 +153794,7 @@ Super Gerry: Super Girl Division: pageId: 135160 renamedFrom: - - Hentai Crush - Director's Cut + - "Hentai Crush - Director's Cut" steam: 979510 Super Golf 2018: pageId: 96579 @@ -158123,7 +153832,7 @@ Super Helmets on Fire DX Ultra Edition Plus Alpha: Super Helpful Man: pageId: 100630 steam: 851210 -'Super Heroes: Men in VR Beta': +"Super Heroes: Men in VR Beta": pageId: 92660 steam: 841800 Super Hexagon: @@ -158131,14 +153840,14 @@ Super Hexagon: pageId: 4056 steam: 221640 templates: - - '{{Game data/config|Windows|{{p|game}}\data\settings.dat}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/SuperHexagon/}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/SuperHexagon/}}' - - '{{Game data/config|Steam|{{p|steam}}/userdata/{{p|uid}}/221640/remote/}}' - - '{{Game data/saves|Windows|{{p|game}}\data\scores.dat | {{p|game}}\data\suphex.dat}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/SuperHexagon/}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/SuperHexagon/}}' - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/221640/remote/}}' + - "{{Game data/config|Windows|{{p|game}}\\data\\settings.dat}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/SuperHexagon/}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/SuperHexagon/}}" + - "{{Game data/config|Steam|{{p|steam}}/userdata/{{p|uid}}/221640/remote/}}" + - "{{Game data/saves|Windows|{{p|game}}\\data\\scores.dat | {{p|game}}\\data\\suphex.dat}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/SuperHexagon/}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/SuperHexagon/}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/221640/remote/}}" Super Hiking League DX: pageId: 151125 renamedFrom: @@ -158150,14 +153859,14 @@ Super Hipster Lumberjack: Super Hockey Ball: pageId: 113108 steam: 738950 -Super Hop 'N' Bop ULTRA: +"Super Hop 'N' Bop ULTRA": pageId: 51734 steam: 514930 Super House of Dead Ninjas: pageId: 5274 steam: 224820 templates: - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/224820/remote/shodn_data}}' + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/224820/remote/shodn_data}}" Super Huey II: gog: 1094441612 pageId: 167766 @@ -158174,8 +153883,8 @@ Super Hydorah: pageId: 70172 steam: 628800 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Super_Hydorah\local_controls.ini}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Super_Hydorah\super_hydorah.sav}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Super_Hydorah\\local_controls.ini}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Super_Hydorah\\super_hydorah.sav}}" Super Hyperactive Ninja: pageId: 79945 steam: 743330 @@ -158192,8 +153901,8 @@ Super Inefficient Golf: pageId: 88764 steam: 772480 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\stickysnowball\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\stickysnowball\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\stickysnowball\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\stickysnowball\\Saved\\SaveGames\\}}" Super Intergalactic Gang: pageId: 44966 steam: 429260 @@ -158211,22 +153920,22 @@ Super Jet Juck: Super Jigsaw Puzzle: pageId: 82095 steam: 792650 -'Super Jigsaw Puzzle: Anime': +"Super Jigsaw Puzzle: Anime": pageId: 121667 steam: 972430 -'Super Jigsaw Puzzle: Anime Reloaded': +"Super Jigsaw Puzzle: Anime Reloaded": pageId: 127221 steam: 1024490 -'Super Jigsaw Puzzle: Cities': +"Super Jigsaw Puzzle: Cities": pageId: 94751 steam: 862110 -'Super Jigsaw Puzzle: Generations': +"Super Jigsaw Puzzle: Generations": pageId: 132155 steam: 1036950 -'Super Jigsaw Puzzle: Monuments': +"Super Jigsaw Puzzle: Monuments": pageId: 97978 steam: 878250 -'Super Jigsaw Puzzle: Space': +"Super Jigsaw Puzzle: Space": pageId: 121294 steam: 951700 Super Kaiju: @@ -158241,7 +153950,7 @@ Super Kickers League: Super Kids Racing: pageId: 87239 steam: 793970 -'Super Killer Hornet: Resurrection': +"Super Killer Hornet: Resurrection": pageId: 50683 steam: 271860 Super Kinky: @@ -158257,8 +153966,8 @@ Super Kiwi 64: pageId: 184559 steam: 1949960 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Siactro\SuperKiwi64\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Siactro\SuperKiwi64\*.sav}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Siactro\\SuperKiwi64\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Siactro\\SuperKiwi64\\*.sav}}" Super Knockoff! VS: pageId: 78760 steam: 724710 @@ -158270,7 +153979,7 @@ Super Laser Racer: steam: 44100 Super Leap Day: pageId: 169829 -'Super Ledgehop: Double Laser': +"Super Ledgehop: Double Laser": pageId: 121873 steam: 787070 Super Lee World: @@ -158286,15 +153995,13 @@ Super Life (RPG): pageId: 140883 steam: 1087460 templates: - - '{{Game data/saves|Windows|{{p|localappdata}}\SuperLife\Saved\SaveGames}}' + - "{{Game data/saves|Windows|{{p|localappdata}}\\SuperLife\\Saved\\SaveGames}}" Super Life of Pixel: pageId: 29567 steam: 327260 templates: - - >- - {{Game data/saves|Windows|{{P|hkcu}}\Software\Super Icon Ltd\Life of pixel{{note|This is for the original, non - Super, version that can be found on Itch.io}}}} - - '{{Game data/saves|Steam|{{p|game}}\SavesDir\.prf}}' + - "{{Game data/saves|Windows|{{P|hkcu}}\\Software\\Super Icon Ltd\\Life of pixel{{note|This is for the original, non Super, version that can be found on Itch.io}}}}" + - "{{Game data/saves|Steam|{{p|game}}\\SavesDir\\.prf}}" Super LoH: pageId: 54764 steam: 533150 @@ -158308,18 +154015,18 @@ Super Lone Survivor: pageId: 183546 steam: 1907440 templates: - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Superflat Games\Super Lone Survivor\}}' + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Superflat Games\\Super Lone Survivor\\}}" Super Lovely Planet: pageId: 57707 steam: 588540 -Super Lucky's Tale: +"Super Lucky's Tale": pageId: 75935 steam: 847360 templates: - - '{{Game data/config|Microsoft Store|{{p|localappdata}}\Packages\Microsoft.AcornUWP_8wekyb3d8bbwe\LocalState}}' - - '{{Game data/config|Steam|{{P|userprofile}}\AppData\LocalLow\Microsoft Studios\SuperLucky\}}' - - '{{Game data/saves|Microsoft Store|{{P|localappdata}}\Packages\Microsoft.AcornUWP_8wekyb3d8bbwe\SystemAppData\wgs}}' - - '{{Game data/saves|Steam|{{P|game}}\SLT_Data\SavesDir\{{P|uid}}\}}' + - "{{Game data/config|Microsoft Store|{{p|localappdata}}\\Packages\\Microsoft.AcornUWP_8wekyb3d8bbwe\\LocalState}}" + - "{{Game data/config|Steam|{{P|userprofile}}\\AppData\\LocalLow\\Microsoft Studios\\SuperLucky\\}}" + - "{{Game data/saves|Microsoft Store|{{P|localappdata}}\\Packages\\Microsoft.AcornUWP_8wekyb3d8bbwe\\SystemAppData\\wgs}}" + - "{{Game data/saves|Steam|{{P|game}}\\SLT_Data\\SavesDir\\{{P|uid}}\\}}" Super Lula Escape From Prison: pageId: 90929 steam: 829050 @@ -158335,9 +154042,9 @@ Super Man Or Monster: Super Mario 64: pageId: 160103 templates: - - '{{Game data/config|Windows|{{P|game}}\sm64config.txt}}' - - '{{Game data/saves|Windows|{{P|game}}\sm64_save_file.bin}}' -'Super Mario Bros. & Friends: When I Grow Up': + - "{{Game data/config|Windows|{{P|game}}\\sm64config.txt}}" + - "{{Game data/saves|Windows|{{P|game}}\\sm64_save_file.bin}}" +"Super Mario Bros. & Friends: When I Grow Up": pageId: 155077 Super Markup Man: pageId: 41577 @@ -158348,18 +154055,18 @@ Super Meat Boy: steamSide: - 969710 templates: - - '{{Game data/config|Windows|{{p|game}}\UserData\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Super Meat Boy}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/SuperMeatBoy/}}' - - '{{Game data/saves|Windows|{{p|game}}\UserData\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Super Meat Boy}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/SuperMeatBoy/}}' + - "{{Game data/config|Windows|{{p|game}}\\UserData\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Super Meat Boy}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/SuperMeatBoy/}}" + - "{{Game data/saves|Windows|{{p|game}}\\UserData\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Super Meat Boy}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/SuperMeatBoy/}}" Super Meat Boy Forever: pageId: 91423 steam: 581660 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Super Meat Boy Forever\Save\settings.config}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Super Meat Boy Forever\Save\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Super Meat Boy Forever\\Save\\settings.config}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Super Meat Boy Forever\\Save\\}}" Super Meat Shooter: pageId: 76063 steam: 745340 @@ -158367,7 +154074,7 @@ Super Mecha Champions: pageId: 179291 steam: 1368910 templates: - - '{{Game data/config|Windows|{{p|game}}/package/user-settings.xml}}' + - "{{Game data/config|Windows|{{p|game}}/package/user-settings.xml}}" Super Mega Baseball 2: pageId: 57357 steam: 414870 @@ -158380,13 +154087,13 @@ Super Mega Baseball 4: pageId: 187702 steam: 1487210 templates: - - '{{Game data/saves|Windows|{{p|localappdata}}\Metalhead\Super Mega Baseball 4\{{p|uid}}\*s.av}}' -'Super Mega Baseball: Extra Innings': + - "{{Game data/saves|Windows|{{p|localappdata}}\\Metalhead\\Super Mega Baseball 4\\{{p|uid}}\\*s.av}}" +"Super Mega Baseball: Extra Innings": pageId: 38075 steam: 314070 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Metalhead\Super Mega Baseball}}' - - '{{Game data/saves|Windows|{{p|Steam}}\userdata\{{p|uid}}\314070\remote\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Metalhead\\Super Mega Baseball}}" + - "{{Game data/saves|Windows|{{p|Steam}}\\userdata\\{{p|uid}}\\314070\\remote\\}}" Super Mega Bob: pageId: 45419 steam: 391960 @@ -158414,27 +154121,27 @@ Super Monday Night Combat: pageId: 753 steam: 104700 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\UnrealEngine3\MNCGame\Config\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\UnrealEngine3\\MNCGame\\Config\\}}" Super Monkey: pageId: 149261 steam: 1142460 -'Super Monkey Ball: Banana Blitz HD': +"Super Monkey Ball: Banana Blitz HD": pageId: 140581 steam: 1061730 templates: - - '{{Game data/saves|Windows|{{P|appdata}}\SEGA\SuperMonkeyBallBananaBlitzHD\SAVE}}' -'Super Monkey Ball: Banana Mania': + - "{{Game data/saves|Windows|{{P|appdata}}\\SEGA\\SuperMonkeyBallBananaBlitzHD\\SAVE}}" +"Super Monkey Ball: Banana Mania": pageId: 169332 steam: 1316910 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\SEGA\smbbm}}' - - '{{Game data/saves|Windows|{{P|appdata}}\SEGA\SuperMonkeyBallBananaMania\SAVE}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\SEGA\\smbbm}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\SEGA\\SuperMonkeyBallBananaMania\\SAVE}}" Super Motherload: pageId: 15532 steam: 269110 templates: - - '{{Game data/config|Windows|{{p|appdata}}\XGen Studios, Inc\Super Motherload\savedata\common\}}' - - '{{Game data/saves|Windows|{{p|appdata}}\XGen Studios, Inc\Super Motherload\savedata\}}' + - "{{Game data/config|Windows|{{p|appdata}}\\XGen Studios, Inc\\Super Motherload\\savedata\\common\\}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\XGen Studios, Inc\\Super Motherload\\savedata\\}}" Super Mr. Kake: pageId: 68340 steam: 672050 @@ -158448,7 +154155,7 @@ Super Mutant Alien Assault: pageId: 37347 steam: 368680 templates: - - '{{Game data/saves|Windows|{{P|localappdata}}\SuperMutantAlienAssault\SMAA_SAVES}}' + - "{{Game data/saves|Windows|{{P|localappdata}}\\SuperMutantAlienAssault\\SMAA_SAVES}}" Super Navecitas 2: pageId: 114082 steam: 935550 @@ -158457,8 +154164,8 @@ Super Neptunia RPG: pageId: 134211 steam: 1016960 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Artisan Studios\Super Neptunia™ RPG\}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Artisan Studios\Super Neptunia™ RPG\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Artisan Studios\\Super Neptunia™ RPG\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Artisan Studios\\Super Neptunia™ RPG\\}}" Super Night Riders: pageId: 44505 steam: 444000 @@ -158486,8 +154193,8 @@ Super Panda Adventures: pageId: 37365 steam: 311190 templates: - - '{{Game data/config|Windows|{{P|game}}\config.cfg}}' - - '{{Game data/saves|Windows|{{P|game}}\save*.dat}}' + - "{{Game data/config|Windows|{{P|game}}\\config.cfg}}" + - "{{Game data/saves|Windows|{{P|game}}\\save*.dat}}" Super People: pageId: 182465 renamedFrom: @@ -158544,13 +154251,13 @@ Super Punchman: Super Puzzle Bobble: pageId: 123253 templates: - - '{{Game data/config|Windows|{{p|game}}/KeySetting.dat}}' - - '{{Game data/saves|Windows|{{p|game}}/SaveData.dat}}' + - "{{Game data/config|Windows|{{p|game}}/KeySetting.dat}}" + - "{{Game data/saves|Windows|{{p|game}}/SaveData.dat}}" Super Puzzle Fighter II Turbo: pageId: 161790 templates: - - '{{Game data/config|Windows|{{p|hklm}}\SOFTWARE\Capcom\w_spf2x}}' - - '{{Game data/saves|Windows|{{p|game}}\REC_DATA*}}' + - "{{Game data/config|Windows|{{p|hklm}}\\SOFTWARE\\Capcom\\w_spf2x}}" + - "{{Game data/saves|Windows|{{p|game}}\\REC_DATA*}}" Super Puzzle Galaxy: pageId: 77261 steam: 464020 @@ -158559,7 +154266,7 @@ Super Puzzle Platformer Deluxe: pageId: 16361 steam: 238530 templates: - - '{{Game data/saves|Steam|{{P|Steam}}/userdata/{{P|uid}}/238530/remote/savegame.sav}}' + - "{{Game data/saves|Steam|{{P|Steam}}/userdata/{{P|uid}}/238530/remote/savegame.sav}}" Super Puzzle Sisters: pageId: 51736 steam: 542680 @@ -158600,20 +154307,20 @@ Super Robot Wars 30: pageId: 169401 steam: 898750 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\SRW30\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\SRW30\Saves\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\SRW30\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\SRW30\\Saves\\}}" Super Robot Wars V: pageId: 147634 steam: 1031500 templates: - - '{{Game data/config|Windows|{{p|game}}\GameOptions.ini}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\SRWV\Saves}}' + - "{{Game data/config|Windows|{{p|game}}\\GameOptions.ini}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\SRWV\\Saves}}" Super Robot Wars X: pageId: 157798 steam: 1031510 templates: - - '{{Game data/config|Windows|{{p|game}}\GameOptions.ini}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\SRWX\Saves}}' + - "{{Game data/config|Windows|{{p|game}}\\GameOptions.ini}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\SRWX\\Saves}}" Super Rock Blasters!: pageId: 55768 steam: 505290 @@ -158627,8 +154334,8 @@ Super Rude Bear Resurrection: pageId: 61524 steam: 384250 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Alex Rose\Super Rude Bear Resurrection\}}' - - '{{Game data/saves|Steam|{{P|steam}}\userdata\{{P|uid}}\384250\remote\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Alex Rose\\Super Rude Bear Resurrection\\}}" + - "{{Game data/saves|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\384250\\remote\\}}" Super Sami Roll: pageId: 171924 steam: 1554640 @@ -158639,8 +154346,8 @@ Super Sanctum TD: pageId: 16189 steam: 235250 templates: - - '{{Game data/config|Windows|{{p|steam}}\userdata\{{p|uid}}\235250\remote\gameconfig.dat}}' - - '{{Game data/saves|Windows|{{p|steam}}\userdata\{{p|uid}}\235250\}}' + - "{{Game data/config|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\235250\\remote\\gameconfig.dat}}" + - "{{Game data/saves|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\235250\\}}" Super Saurio Fly: pageId: 90312 steam: 818060 @@ -158672,8 +154379,8 @@ Super Skelemania: pageId: 75081 steam: 730920 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\SuperSkelemania}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\SuperSkelemania}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\SuperSkelemania}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\SuperSkelemania}}" Super Sketch Bob: pageId: 144651 steam: 497870 @@ -158690,9 +154397,7 @@ Super Slime Arena: pageId: 78689 steam: 706960 templates: - - >- - {{Game - data/config|Linux|{{p|game}}/assets/options/options.xml|{{p|game}}/assets/options/vidoptions.xml|{{p|game}}/assets/controllers/custombindings.xml}} + - "{{Game data/config|Linux|{{p|game}}/assets/options/options.xml|{{p|game}}/assets/options/vidoptions.xml|{{p|game}}/assets/controllers/custombindings.xml}}" Super Smash Bros. Crusade: pageId: 175393 Super Smash Flash 2: @@ -158730,10 +154435,10 @@ Super Splatters: pageId: 15447 steam: 95000 templates: - - '{{Game data/config|Windows|{{p|appdata}}\SuperSplatters\}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/SpikySnail/Splatters/}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/SpikySnail/Splatters/}}' - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{P|uid}}/95000/}}' + - "{{Game data/config|Windows|{{p|appdata}}\\SuperSplatters\\}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/SpikySnail/Splatters/}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/SpikySnail/Splatters/}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{P|uid}}/95000/}}" Super Sportmatchen: pageId: 93944 steam: 749860 @@ -158750,7 +154455,7 @@ Super Star: pageId: 41671 steam: 503300 templates: - - '{{Game data/saves|Windows|{{p|game}}\save\*.db}}' + - "{{Game data/saves|Windows|{{p|game}}\\save\\*.db}}" Super Star Blast: pageId: 134766 steam: 1065650 @@ -158777,25 +154482,25 @@ Super Streaker Plus: Super Street Fighter II: pageId: 187914 templates: - - '{{Game data/config|DOS|{{p|game}}\SSF2.OPT}}' + - "{{Game data/config|DOS|{{p|game}}\\SSF2.OPT}}" Super Street Fighter II Turbo: pageId: 152630 templates: - - '{{Game data/config|DOS|{{p|game}}}}' - - '{{Game data/saves|DOS|{{p|game}}\SF2HISCR.DAT}}' -'Super Street Fighter IV: Arcade Edition': + - "{{Game data/config|DOS|{{p|game}}}}" + - "{{Game data/saves|DOS|{{p|game}}\\SF2HISCR.DAT}}" +"Super Street Fighter IV: Arcade Edition": pageId: 11545 steam: 45760 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\CAPCOM\SUPERSTREETFIGHTERIV\config.ini}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\CAPCOM\SUPERSTREETFIGHTERIV\}}' -'Super Street: The Game': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\CAPCOM\\SUPERSTREETFIGHTERIV\\config.ini}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\CAPCOM\\SUPERSTREETFIGHTERIV\\}}" +"Super Street: The Game": pageId: 111214 steam: 611180 Super Stunt Spectacular: pageId: 190377 templates: - - '{{Game data/config|Windows|{{p|game}}/StuntMan.cfg}}' + - "{{Game data/config|Windows|{{p|game}}/StuntMan.cfg}}" Super Switch: pageId: 36786 steam: 521430 @@ -158806,27 +154511,23 @@ Super Thunder Blade: pageId: 30852 steam: 34314 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\SEGA Mega Drive - Classics\setup.dat|{{p|userprofile\Documents}}\SEGA Genesis Classics\setup.dat}} - - >- - {{Game data/saves|Windows|{{p|userprofile\Documents}}\SEGA Mega Drive - Classics\0022\|{{p|userprofile\Documents}}\SEGA Genesis Classics\0022\}} + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\SEGA Mega Drive Classics\\setup.dat|{{p|userprofile\\Documents}}\\SEGA Genesis Classics\\setup.dat}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\SEGA Mega Drive Classics\\0022\\|{{p|userprofile\\Documents}}\\SEGA Genesis Classics\\0022\\}}" Super Time Force Ultra: gog: 1207665553 pageId: 19325 steam: 250700 templates: - - '{{Game data/config|Windows|{{p|appdata}}\capy\SuperTimeForce\config.txt}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/capy/SuperTimeForce/}}' - - '{{Game data/config|Steam|{{P|Steam}}/userdata/{{p|uid}}/250700/local/config.txt}}' - - '{{Game data/saves|Windows|{{p|appdata}}\capy\SuperTimeForce\save.dat}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/capy/SuperTimeForce/}}' - - '{{Game data/saves|Steam|{{P|Steam}}/userdata/{{p|uid}}/250700/remote/save.bin}}' + - "{{Game data/config|Windows|{{p|appdata}}\\capy\\SuperTimeForce\\config.txt}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/capy/SuperTimeForce/}}" + - "{{Game data/config|Steam|{{P|Steam}}/userdata/{{p|uid}}/250700/local/config.txt}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\capy\\SuperTimeForce\\save.dat}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/capy/SuperTimeForce/}}" + - "{{Game data/saves|Steam|{{P|Steam}}/userdata/{{p|uid}}/250700/remote/save.bin}}" Super Tits Rush: pageId: 82712 steam: 791030 -'Super Toaster X: Learn Japanese RPG': +"Super Toaster X: Learn Japanese RPG": pageId: 56884 steam: 530080 Super Tony Land: @@ -158836,7 +154537,7 @@ Super Toy Cars: pageId: 50125 steam: 116100 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\SOFTWARE\Eclipse Games\SuperToyCars}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\SOFTWARE\\Eclipse Games\\SuperToyCars}}" Super Toy Cars 2: pageId: 149450 steam: 1028840 @@ -158853,8 +154554,8 @@ Super Trench Attack!: pageId: 34815 steam: 311870 templates: - - '{{Game data/config|Windows|{{P|game}}\data\save\fragv3.5.cfg}}' - - '{{Game data/saves|Windows|{{P|game}}\data\save\fragfile*.sav}}' + - "{{Game data/config|Windows|{{P|game}}\\data\\save\\fragv3.5.cfg}}" + - "{{Game data/saves|Windows|{{P|game}}\\data\\save\\fragfile*.sav}}" Super Troopers: pageId: 154208 steam: 1124940 @@ -158884,7 +154585,7 @@ Super Versus: Super Volley Blast: pageId: 103257 steam: 822040 -'Super Web Kittens: Act I': +"Super Web Kittens: Act I": pageId: 139043 steam: 1058840 Super Weekend Mode: @@ -158897,10 +154598,10 @@ Super Win the Game: pageId: 37953 steam: 310700 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Super Win the Game\Config\}}' - - '{{Game data/config|Linux|{{p|xdgdatahome}}/Minor Key Games/Super Win the Game/Config/}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Super Win the Game\Saves\}}' - - '{{Game data/saves|Linux|{{p|xdgdatahome}}/Minor Key Games/Super Win the Game/Saves/}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Super Win the Game\\Config\\}}" + - "{{Game data/config|Linux|{{p|xdgdatahome}}/Minor Key Games/Super Win the Game/Config/}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Super Win the Game\\Saves\\}}" + - "{{Game data/saves|Linux|{{p|xdgdatahome}}/Minor Key Games/Super Win the Game/Saves/}}" Super X Chess: pageId: 121375 steam: 814990 @@ -158912,23 +154613,23 @@ Super Zombie Arcade: Super gamebear with its three girlfriends: pageId: 123938 renamedFrom: - - Super gamebear with its three girlfriends你想知道关于超级喜欢游戏的一头黑色矮小的游戏熊是如何与它的"三个后宫团女朋友"购买到GBC游戏机的吗? + - "Super gamebear with its three girlfriends你想知道关于超级喜欢游戏的一头黑色矮小的游戏熊是如何与它的\"三个后宫团女朋友\"购买到GBC游戏机的吗?" steam: 937020 Super president How to rule the country: pageId: 128328 steam: 995480 -'Super-Bikes: Riding Challenge': +"Super-Bikes: Riding Challenge": pageId: 88265 SuperBike TT: pageId: 48605 steam: 340410 -'SuperCluster: Void': +"SuperCluster: Void": pageId: 59673 steam: 610740 SuperDriver: pageId: 144526 steam: 1145160 -'SuperEpic: The Entertainment War': +"SuperEpic: The Entertainment War": pageId: 153547 steam: 1163560 SuperGrind RPG: @@ -158951,8 +154652,8 @@ SuperPower 2: pageId: 30595 steam: 282400 templates: - - '{{Game data/config|Windows|{{p|game}}\joshua.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\SP2\save}}' + - "{{Game data/config|Windows|{{p|game}}\\joshua.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\SP2\\save}}" SuperPower 3: gog: 1955819598 pageId: 182441 @@ -158967,19 +154668,19 @@ SuperTux: pageId: 174310 steam: 1572920 templates: - - '{{Game data/config|Windows|{{p|appdata}}\SuperTux\supertux2\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/SuperTux/}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.local/share/supertux2/}}' - - '{{Game data/saves|Windows|{{p|appdata}}\SuperTux\supertux2\}}' + - "{{Game data/config|Windows|{{p|appdata}}\\SuperTux\\supertux2\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/SuperTux/}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.local/share/supertux2/}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\SuperTux\\supertux2\\}}" SuperTuxKart: pageId: 59155 templates: - - '{{Game data/config|Windows|{{p|appdata}}\supertuxkart\config-0.10\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/SuperTuxKart/config-0.10/}}' - - '{{Game data/config|Linux|{{p|xdgconfighome}}/SuperTuxKart/config-0.10/}}' - - '{{Game data/saves|Windows|{{p|appdata}}\supertuxkart\config-0.10\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/SuperTuxKart/config-0.10/}}' - - '{{Game data/saves|Linux|{{p|xdgconfighome}}/SuperTuxKart/config-0.10/}}' + - "{{Game data/config|Windows|{{p|appdata}}\\supertuxkart\\config-0.10\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/SuperTuxKart/config-0.10/}}" + - "{{Game data/config|Linux|{{p|xdgconfighome}}/SuperTuxKart/config-0.10/}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\supertuxkart\\config-0.10\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/SuperTuxKart/config-0.10/}}" + - "{{Game data/saves|Linux|{{p|xdgconfighome}}/SuperTuxKart/config-0.10/}}" SuperWurfels: pageId: 70094 steam: 672880 @@ -158989,37 +154690,37 @@ Superbike 2001: pageId: 23830 Superbike World Championship: pageId: 76836 -'Superbrothers: Sword & Sworcery EP': +"Superbrothers: Sword & Sworcery EP": pageId: 2164 steam: 204060 templates: - - '{{Game data/config|Windows|{{p|appdata}}\capy\SwordAndSworcery\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/capy/SwordAndSworcery/}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.capy/SwordAndSworcery/}}' - - '{{Game data/config|Steam|{{p|steam}}\userdata\{{p|uid}}\204060\local\}}' - - '{{Game data/saves|Windows|{{p|appdata}}\capy\SwordAndSworcery\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/capy/SwordAndSworcery/}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.capy/SwordAndSworcery/}}' - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\204060\remote\}}' + - "{{Game data/config|Windows|{{p|appdata}}\\capy\\SwordAndSworcery\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/capy/SwordAndSworcery/}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.capy/SwordAndSworcery/}}" + - "{{Game data/config|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\204060\\local\\}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\capy\\SwordAndSworcery\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/capy/SwordAndSworcery/}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.capy/SwordAndSworcery/}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\204060\\remote\\}}" Supercar Drift: pageId: 149059 steam: 1159890 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\PlayWhiz\SuperCar Drift}}' - - '{{Game data/saves|Windows|{{P|hkcu}}\Software\PlayWhiz\SuperCar Drift}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\PlayWhiz\\SuperCar Drift}}" + - "{{Game data/saves|Windows|{{P|hkcu}}\\Software\\PlayWhiz\\SuperCar Drift}}" Supercar Street Challenge: pageId: 160769 Supercharged Robot VULKAISER: pageId: 28463 steam: 349680 templates: - - '{{Game data/saves|Windows|{{p|game}}\*.dat}}' + - "{{Game data/saves|Windows|{{p|game}}\\*.dat}}" Superdimension Neptune VS Sega Hard Girls: pageId: 63022 steam: 571530 templates: - - '{{Game data/config|Steam|{{p|steam}}\userdata\{{p|uid}}\571530\remote\NeptuneVS.ini}}' - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\571530\remote\}}' + - "{{Game data/config|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\571530\\remote\\NeptuneVS.ini}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\571530\\remote\\}}" Superfight: pageId: 42199 steam: 404770 @@ -159030,7 +154731,7 @@ Superflight: pageId: 74992 steam: 732430 templates: - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Grizzly Games\SUPERFLIGHT\saveGame.gd}}' + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Grizzly Games\\SUPERFLIGHT\\saveGame.gd}}" Superfrog: gog: 1207658989 pageId: 19741 @@ -159039,15 +154740,15 @@ Superfrog HD: pageId: 19439 steam: 234000 templates: - - '{{Game data/config|Windows|{{p|game}}\Saves}}' - - '{{Game data/config|Linux|{{p|game}}/Saves}}' - - '{{Game data/saves|Windows|{{p|game}}\Saves}}' - - '{{Game data/saves|Linux|{{p|game}}/Saves}}' + - "{{Game data/config|Windows|{{p|game}}\\Saves}}" + - "{{Game data/config|Linux|{{p|game}}/Saves}}" + - "{{Game data/saves|Windows|{{p|game}}\\Saves}}" + - "{{Game data/saves|Linux|{{p|game}}/Saves}}" Superfuse: pageId: 184818 steam: 1770080 templates: - - '{{Game data/saves|Windows|{{p|localappdata}}\Superfuse\Saved\SaveGames\SuperfuseSaveGame_*.sav}}' + - "{{Game data/saves|Windows|{{p|localappdata}}\\Superfuse\\Saved\\SaveGames\\SuperfuseSaveGame_*.sav}}" Superhero League of Hoboken: gog: 1605503821 pageId: 131615 @@ -159057,73 +154758,60 @@ Superhot: pageId: 10578 steam: 322500 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\SUPERHOT_Team\SUPERHOT\config.cfg}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/unity.SUPERHOT_Team.SUPERHOT/config.cfg}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/SUPERHOT_Team/SUPERHOT/config.cfg}}' - - >- - {{Game - data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\SUPERHOT_Team\SUPERHOT\super.hot|{{p|userprofile}}\AppData\LocalLow\SUPERHOT_Team\SUPERHOT\Screenshots\Replays\}} - - >- - {{Game data/saves|OS X|{{p|osxhome}}/Library/Application - Support/unity.SUPERHOT_Team.SUPERHOT/super.hot|~/Library/Application - Support/unity.SUPERHOT_Team.SUPERHOT/Screenshots/Replays/}} - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/SUPERHOT_Team/SUPERHOT/super.hot}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\SUPERHOT_Team\\SUPERHOT\\config.cfg}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/unity.SUPERHOT_Team.SUPERHOT/config.cfg}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/SUPERHOT_Team/SUPERHOT/config.cfg}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\SUPERHOT_Team\\SUPERHOT\\super.hot|{{p|userprofile}}\\AppData\\LocalLow\\SUPERHOT_Team\\SUPERHOT\\Screenshots\\Replays\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/unity.SUPERHOT_Team.SUPERHOT/super.hot|~/Library/Application Support/unity.SUPERHOT_Team.SUPERHOT/Screenshots/Replays/}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/SUPERHOT_Team/SUPERHOT/super.hot}}" Superhot VR: pageId: 62544 steam: 617830 templates: - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\SUPERHOT_Team\SUPERHOT_VR}}' -'Superhot: Mind Control Delete': + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\SUPERHOT_Team\\SUPERHOT_VR}}" +"Superhot: Mind Control Delete": gog: 1823091894 pageId: 78066 steam: 690040 templates: - - >- - {{Game - data/config|Windows|{{P|userprofile}}\AppData\LocalLow\SUPERHOT_Team\SHMCD\config.cfg|{{P|userprofile}}\AppData\LocalLow\SUPERHOT_Team\SHMCD\launcher-game-settings.json}} - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/SUPERHOT_Team/SHMCD/config.cfg}}' - - >- - {{Game - data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\SUPERHOT_Team\SHMCD\sh.mcd|{{P|userprofile}}\AppData\LocalLow\SUPERHOT_Team\SHMCD\Screenshots\Replays}} - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/SUPERHOT_Team/SHMCD}}' + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\SUPERHOT_Team\\SHMCD\\config.cfg|{{P|userprofile}}\\AppData\\LocalLow\\SUPERHOT_Team\\SHMCD\\launcher-game-settings.json}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/SUPERHOT_Team/SHMCD/config.cfg}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\SUPERHOT_Team\\SHMCD\\sh.mcd|{{P|userprofile}}\\AppData\\LocalLow\\SUPERHOT_Team\\SHMCD\\Screenshots\\Replays}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/SUPERHOT_Team/SHMCD}}" Superior Wizards: pageId: 113818 steam: 926610 Superku: pageId: 39378 steam: 407570 -'Superleague Formula 2009: The Game': +"Superleague Formula 2009: The Game": pageId: 137963 templates: - - '{{Game data/config|Windows|{{p|game}}\Config.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\UserData\{{p|uid}}\{{p|uid}}.plr}}' + - "{{Game data/config|Windows|{{p|game}}\\Config.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\UserData\\{{p|uid}}\\{{p|uid}}.plr}}" Superliminal: gog: 1766270223 pageId: 145707 steam: 1049410 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\PillowCastle\Superliminal}}' - - >- - {{Game data/config|Microsoft - Store|{{P|hkcu}}\Software\PillowCastle\Superliminal|{{p|localappdata}}\Packages\PillowCastle.Superliminal_r6zr3eg4hg8h4\SystemAppData\wgs}} - - '{{Game data/config|Steam|{{P|hkcu}}\Software\PillowCastle\SuperliminalSteam\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/PillowCastle/SuperliminalSteam/}}' - - '{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/PillowCastle/SuperliminalSteam/}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\PillowCastle\Superliminal\}}' - - >- - {{Game data/saves|Microsoft - Store|{{p|localappdata}}\Packages\PillowCastle.Superliminal_r6zr3eg4hg8h4\SystemAppData\wgs}} - - '{{Game data/saves|Steam|{{P|userprofile}}\AppData\LocalLow\PillowCastle\SuperliminalSteam\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/PillowCastle/SuperliminalSteam/}}' - - '{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/PillowCastle/SuperliminalSteam/}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\PillowCastle\\Superliminal}}" + - "{{Game data/config|Microsoft Store|{{P|hkcu}}\\Software\\PillowCastle\\Superliminal|{{p|localappdata}}\\Packages\\PillowCastle.Superliminal_r6zr3eg4hg8h4\\SystemAppData\\wgs}}" + - "{{Game data/config|Steam|{{P|hkcu}}\\Software\\PillowCastle\\SuperliminalSteam\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/PillowCastle/SuperliminalSteam/}}" + - "{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/PillowCastle/SuperliminalSteam/}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\PillowCastle\\Superliminal\\}}" + - "{{Game data/saves|Microsoft Store|{{p|localappdata}}\\Packages\\PillowCastle.Superliminal_r6zr3eg4hg8h4\\SystemAppData\\wgs}}" + - "{{Game data/saves|Steam|{{P|userprofile}}\\AppData\\LocalLow\\PillowCastle\\SuperliminalSteam\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/PillowCastle/SuperliminalSteam/}}" + - "{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/PillowCastle/SuperliminalSteam/}}" Supermagical: pageId: 66225 steam: 681100 Superman Activity Center: pageId: 128831 -'Superman: The Man of Steel': +"Superman: The Man of Steel": pageId: 81317 -'Superman: The Mysterious Mr. Mist': +"Superman: The Mysterious Mr. Mist": pageId: 128832 Supermarket Shriek: pageId: 138372 @@ -159156,11 +154844,11 @@ Superstar Hero: steam: 1089080 Superstars V8 Racing: pageId: 88267 -'Superstars V8: Next Challenge': +"Superstars V8: Next Challenge": pageId: 88270 templates: - - '{{Game data/config|Windows|{{p|appdata}}\BlackBean\Superstars2010}}' - - '{{Game data/saves|Windows|{{p|appdata}}\BlackBean\Superstars2010\Saves}}' + - "{{Game data/config|Windows|{{p|appdata}}\\BlackBean\\Superstars2010}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\BlackBean\\Superstars2010\\Saves}}" Superstatic: pageId: 46462 steam: 375290 @@ -159171,10 +154859,8 @@ Supesu: pageId: 98640 steam: 879280 templates: - - >- - {{Game - data/config|Windows|{{P|localappdata}}\Supesu\Saved\Config\WindowsNoEditor\|{{P|localappdata}}\Supesu\Saved\SaveGames\Quality.sav|{{P|localappdata}}\Supesu\Saved\SaveGames\ScreenMode.sav}} - - '{{Game data/saves|Windows|{{P|localappdata}}\Supesu\Saved\SaveGames\Progress.sav}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\Supesu\\Saved\\Config\\WindowsNoEditor\\|{{P|localappdata}}\\Supesu\\Saved\\SaveGames\\Quality.sav|{{P|localappdata}}\\Supesu\\Saved\\SaveGames\\ScreenMode.sav}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Supesu\\Saved\\SaveGames\\Progress.sav}}" Supesu 2: pageId: 148921 steam: 1159550 @@ -159190,13 +154876,13 @@ Supplice: steamSide: - 1767410 templates: - - '{{Game data/config|Windows|%USERPROFILE%\Documents\My Games\Supplice\}}' - - '{{Game data/saves|Windows|%USERPROFILE%\Saved Games\Supplice\Supplice\}}' + - "{{Game data/config|Windows|%USERPROFILE%\\Documents\\My Games\\Supplice\\}}" + - "{{Game data/saves|Windows|%USERPROFILE%\\Saved Games\\Supplice\\Supplice\\}}" Supply Chain Idle: pageId: 120776 steam: 946040 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\UpTurnGames\SupplyChainIdle\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\UpTurnGames\\SupplyChainIdle\\}}" Supposedly Wonderful Future: pageId: 73041 steam: 719210 @@ -159210,8 +154896,8 @@ Supraball: pageId: 43239 steam: 321400 templates: - - '{{Game data/config|Windows|{{P|game}}\UDKGame\Config\}}' - - '{{Game data/config|Steam|{{P|steam}}\userdata\{{P|uid}}\321400\remote\guisettings.bson}}' + - "{{Game data/config|Windows|{{P|game}}\\UDKGame\\Config\\}}" + - "{{Game data/config|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\321400\\remote\\guisettings.bson}}" Supraland: gog: 1451970551 gogSide: @@ -159221,24 +154907,18 @@ Supraland: steamSide: - 1093730 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Supraland\Saved\Config\WindowsNoEditor\}}' - - >- - {{Game data/config|Microsoft - Store|{{p|localappdata}}\Packages\HumbleBundle.SupralandWin10_q2mcdwmzx4qja\LocalCache\Local\Supraland\Saved\Config\WinGDK\}} - - '{{Game data/config|Linux|{{P|xdgconfighome}}/Epic/Supraland/Saved/Config/}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Supraland\Saved\SaveGames\}}' - - >- - {{Game data/saves|Microsoft - Store|{{p|localappdata}}\Packages\HumbleBundle.SupralandWin10_q2mcdwmzx4qja\SystemAppData\wgs}} - - '{{Game data/saves|Linux|{{P|xdgconfighome}}/Epic/Supraland/Saved/SaveGames/}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Supraland\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/config|Microsoft Store|{{p|localappdata}}\\Packages\\HumbleBundle.SupralandWin10_q2mcdwmzx4qja\\LocalCache\\Local\\Supraland\\Saved\\Config\\WinGDK\\}}" + - "{{Game data/config|Linux|{{P|xdgconfighome}}/Epic/Supraland/Saved/Config/}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Supraland\\Saved\\SaveGames\\}}" + - "{{Game data/saves|Microsoft Store|{{p|localappdata}}\\Packages\\HumbleBundle.SupralandWin10_q2mcdwmzx4qja\\SystemAppData\\wgs}}" + - "{{Game data/saves|Linux|{{P|xdgconfighome}}/Epic/Supraland/Saved/SaveGames/}}" Supraland Six Inches Under: pageId: 174141 steam: 1522870 templates: - - >- - {{Game - data/config|Windows|{{P|localappdata}}\SupralandSIU\Saved\SaveGames\GameSettingsSave.sav|{{P|localappdata}}\SupralandSIU\Saved\Config\WindowsNoEditor\}} - - '{{Game data/saves|Windows|{{P|localappdata}}\SupralandSIU\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\SupralandSIU\\Saved\\SaveGames\\GameSettingsSave.sav|{{P|localappdata}}\\SupralandSIU\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\SupralandSIU\\Saved\\SaveGames\\}}" Supralympic Runners: pageId: 93881 steam: 840300 @@ -159261,8 +154941,8 @@ Supreme Commander: pageId: 3866 steam: 9350 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Gas Powered Games\SupremeCommander\Game.prefs}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Gas Powered Games\SupremeCommander\savegames}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Gas Powered Games\\SupremeCommander\\Game.prefs}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Gas Powered Games\\SupremeCommander\\savegames}}" Supreme Commander 2: gog: 1702120068 gogSide: @@ -159280,17 +154960,17 @@ Supreme Commander 2: - 40136 - 40230 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Gas Powered Games\Supreme Commander 2\Game.prefs}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\SquareEnix\Supreme Commander 2\savegames}}' -'Supreme Commander: Forged Alliance': + - "{{Game data/config|Windows|{{p|localappdata}}\\Gas Powered Games\\Supreme Commander 2\\Game.prefs}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\SquareEnix\\Supreme Commander 2\\savegames}}" +"Supreme Commander: Forged Alliance": gog: 1448050501 gogSide: - 1444785261 pageId: 5125 steam: 9420 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Gas Powered Games\Supreme Commander Forged Alliance\Game.prefs}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Gas Powered Games\Supreme Commander Forged Alliance\SAVEGAME}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Gas Powered Games\\Supreme Commander Forged Alliance\\Game.prefs}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Gas Powered Games\\Supreme Commander Forged Alliance\\SAVEGAME}}" Supreme Courtship: pageId: 128760 steam: 1030100 @@ -159302,10 +154982,8 @@ Supreme League of Patriots: pageId: 22560 steam: 331760 templates: - - >- - {{Game data/config|Windows|{{P|userprofile}}\AppData\LocalLow\No Bull Intentions\LeagueOfPatriots Episode - 1\Profile.xml}} - - '{{Game data/saves|Steam|{{P|steam}}\userdata\{{P|uid}}\331760\remote\Saves\}}' + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\No Bull Intentions\\LeagueOfPatriots Episode 1\\Profile.xml}}" + - "{{Game data/saves|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\331760\\remote\\Saves\\}}" Supreme Ruler 1936: pageId: 50294 steam: 244410 @@ -159320,19 +154998,16 @@ Supreme Ruler The Great War: pageId: 63843 steam: 600280 templates: - - >- - {{Game data/saves|OS X|Library⁩ ▸ ⁨Application Support⁩ ▸ ⁨Steam⁩ ▸ ⁨steamapps⁩ ▸ ⁨common⁩ ▸ ⁨Supreme Ruler Great - War⁩ ▸ ⁨SupremeRulerGreatWar⁩ ▸ ⁨Contents⁩ ▸ ⁨Resources⁩ ▸ ⁨drive_c⁩ ▸ ⁨users⁩ ▸ ⁨Wineskin⁩ ▸ ⁨My Documents⁩ ▸ ⁨My - Games⁩ ▸|}} + - "{{Game data/saves|OS X|Library⁩ ▸ ⁨Application Support⁩ ▸ ⁨Steam⁩ ▸ ⁨steamapps⁩ ▸ ⁨common⁩ ▸ ⁨Supreme Ruler Great War⁩ ▸ ⁨SupremeRulerGreatWar⁩ ▸ ⁨Contents⁩ ▸ ⁨Resources⁩ ▸ ⁨drive_c⁩ ▸ ⁨users⁩ ▸ ⁨Wineskin⁩ ▸ ⁨My Documents⁩ ▸ ⁨My Games⁩ ▸|}}" Supreme Ruler Ultimate: pageId: 49484 steam: 314980 -'Supreme Ruler: Cold War': +"Supreme Ruler: Cold War": pageId: 40935 steam: 73220 Supreme Snowboarding: pageId: 179891 -'Supreme: Pizza Empire': +"Supreme: Pizza Empire": pageId: 48987 steam: 318260 SurReal Subway: @@ -159344,33 +155019,33 @@ Sure Footing: Surf World Series: pageId: 67270 steam: 462640 -Surf's Up: +"Surf's Up": pageId: 88495 templates: - - '{{Game data/config|Windows|{{P|game}}\System\SurfsUpDX9.ini }}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Surf''s Up\}}' -'Surface: Alone in the Mist': + - "{{Game data/config|Windows|{{P|game}}\\System\\SurfsUpDX9.ini }}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Surf's Up\\}}" +"Surface: Alone in the Mist": pageId: 88658 steam: 815550 -'Surface: Game of Gods': +"Surface: Game of Gods": pageId: 68841 renamedFrom: - - 'Surface: Game of Gods Collector''s Edition' + - "Surface: Game of Gods Collector's Edition" steam: 696020 -'Surface: Reel Life': +"Surface: Reel Life": pageId: 57319 renamedFrom: - - 'Surface: Reel Life Collector''s Edition' + - "Surface: Reel Life Collector's Edition" steam: 586720 -'Surface: Return to Another World': +"Surface: Return to Another World": pageId: 102359 steam: 897010 -'Surface: The Pantheon': +"Surface: The Pantheon": pageId: 42097 renamedFrom: - - 'Surface: The Pantheon Collector''s Edition' + - "Surface: The Pantheon Collector's Edition" steam: 466080 -'Surface: The Soaring City': +"Surface: The Soaring City": pageId: 132048 steam: 1051600 Surfasaurus: @@ -159380,8 +155055,8 @@ Surfingers: pageId: 34014 steam: 438080 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Forever Entertainment\Surfingers\}}' - - '{{Game data/saves|Windows|{{P|steam}}\userdata\{{P|uid}}\438080\remote\Surfingers.savegame}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Forever Entertainment\\Surfingers\\}}" + - "{{Game data/saves|Windows|{{P|steam}}\\userdata\\{{P|uid}}\\438080\\remote\\Surfingers.savegame}}" Surge: pageId: 37403 steam: 477130 @@ -159401,26 +155076,22 @@ Surgeon Simulator: - Surgeon Simulator 2013 steam: 233720 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Bossa Studios\Surgeon Simulator 2013\}}' - - >- - {{Game data/config|OS X|{{p|osxhome}}/Library/Saved Application State/unity.Bossa Studios.Surgeon Simulator - 2013.savedState/}} - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Bossa Studios/Surgeon Simulator 2013/}}' - - '{{Game data/saves|Windows|{{P|hkcu}}\Software\Bossa Studios\Surgeon Simulator 2013\}}' - - >- - {{Game data/saves|OS X|{{p|osxhome}}/Library/Saved Application State/unity.Bossa Studios.Surgeon Simulator - 2013.savedState/}} - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Bossa Studios/Surgeon Simulator 2013/}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Bossa Studios\\Surgeon Simulator 2013\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Saved Application State/unity.Bossa Studios.Surgeon Simulator 2013.savedState/}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Bossa Studios/Surgeon Simulator 2013/}}" + - "{{Game data/saves|Windows|{{P|hkcu}}\\Software\\Bossa Studios\\Surgeon Simulator 2013\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Saved Application State/unity.Bossa Studios.Surgeon Simulator 2013.savedState/}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Bossa Studios/Surgeon Simulator 2013/}}" Surgeon Simulator 2: pageId: 154623 steam: 774791 -'Surgeon Simulator VR: Meet The Medic': +"Surgeon Simulator VR: Meet The Medic": pageId: 43736 steam: 457420 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Bossa Studios\Surgeon Simulator VR: Meet the Medic}}' - - '{{Game data/saves|Windows|{{P|hkcu}}\Software\Bossa Studios\Surgeon Simulator VR: Meet the Medic}}' -'Surgeon Simulator: Experience Reality': + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Bossa Studios\\Surgeon Simulator VR: Meet the Medic}}" + - "{{Game data/saves|Windows|{{P|hkcu}}\\Software\\Bossa Studios\\Surgeon Simulator VR: Meet the Medic}}" +"Surgeon Simulator: Experience Reality": pageId: 54493 steam: 518920 Surgical Study and 3D Skeletons for Medical School Students: @@ -159445,7 +155116,7 @@ Survarium: pageId: 17769 steam: 355840 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Survarium-Steam\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\Survarium-Steam\\}}" SurviVR - Castle Defender: pageId: 141160 steam: 1049380 @@ -159470,14 +155141,14 @@ Survival Classic: Survival Crisis Z: pageId: 35667 templates: - - '{{Game data/saves|Windows|{{p|game}}\saves}}' + - "{{Game data/saves|Windows|{{p|game}}\\saves}}" Survival Diary: pageId: 99518 steam: 868390 Survival Driver: pageId: 60888 steam: 586130 -'Survival Driver 2: Heavy Vehicles': +"Survival Driver 2: Heavy Vehicles": pageId: 67928 steam: 693190 Survival Frenzy: @@ -159510,7 +155181,7 @@ Survival Planet: Survival Simulator: pageId: 86979 steam: 701950 -'Survival Space: Unlimited Shooting': +"Survival Space: Unlimited Shooting": pageId: 80869 steam: 781830 Survival Tycoon: @@ -159533,16 +155204,16 @@ Survival or Die: renamedFrom: - Survival or die steam: 1110290 -'Survival: Last Day': +"Survival: Last Day": pageId: 94505 steam: 851080 -'Survival: Postapocalypse Now': +"Survival: Postapocalypse Now": pageId: 48206 steam: 351290 -'Survival: Revelation': +"Survival: Revelation": pageId: 148495 renamedFrom: - - '黎明生机:启示录-Survival:Revelation' + - "黎明生机:启示录-Survival:Revelation" steam: 1165520 SurvivalZ: pageId: 82655 @@ -159556,11 +155227,9 @@ Survivalist: steamSide: - 341480 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\SavedGames\Survivalist\Survivalist - Saved - Data\Player1\settings.xml}} - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\SavedGames\Survivalist\Survivalist - Saved Data\Player1\}}' -'Survivalist: Invisible Strain': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\SavedGames\\Survivalist\\Survivalist - Saved Data\\Player1\\settings.xml}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\SavedGames\\Survivalist\\Survivalist - Saved Data\\Player1\\}}" +"Survivalist: Invisible Strain": pageId: 136018 steam: 1054510 Survivalizm - The Animal Simulator: @@ -159591,8 +155260,8 @@ Survive in Space: pageId: 34139 steam: 467950 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\just1337\Survive in space\}}' - - '{{Game data/saves|Windows|{{p|APPDATA}}\SurviveInSpace\{{p|uid}}\userData.bin}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\just1337\\Survive in space\\}}" + - "{{Game data/saves|Windows|{{p|APPDATA}}\\SurviveInSpace\\{{p|uid}}\\userData.bin}}" Survive in a little bit: pageId: 134437 steam: 1069430 @@ -159606,11 +155275,11 @@ Survive the Nights: pageId: 63201 steam: 541300 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\a2z (Interactive);\Survive the Nights}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\a2z (Interactive);\\Survive the Nights}}" Survive the West: pageId: 97916 steam: 862990 -'Survive: The King Killer': +"Survive: The King Killer": pageId: 82726 steam: 797190 Survived: @@ -159625,44 +155294,38 @@ Surviving Deponia: Surviving Mars: gog: 1450731245 gogSide: - - 1736837628 - - 1629272021 - - 1617277701 - 1424717003 - 1507812678 - - 1990927897 - - 1683782840 - - 1908011586 - - 1833146547 - - 1968222224 + - 1617277701 + - 1629272021 - 1641787812 + - 1683782840 + - 1736837628 + - 1833146547 + - 1908011586 + - 1968222224 + - 1990927897 pageId: 62372 steam: 464920 steamSide: - - 802700 - 801650 - - 801710 - - 801690 - 801670 + - 801690 + - 801710 + - 802700 + - 952890 - 952891 - 952892 - - 952890 - 1042360 templates: - - '{{Game data/config|Windows|{{P|appdata}}\Surviving Mars\}}' - - >- - {{Game data/config|Microsoft - Store|{{P|localappdata}}\Packages\ParadoxInteractive.SurvivingMars_zfnrdv2de78ny\LocalCache\Roaming\Surviving - Mars\}} - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Surviving Mars/}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/Surviving Mars/}}' - - '{{Game data/saves|Windows|{{P|appdata}}\Surviving Mars\Save\}}' - - >- - {{Game data/saves|Microsoft - Store|{{P|localappdata}}\Packages\ParadoxInteractive.SurvivingMars_zfnrdv2de78ny\LocalCache\Roaming\Surviving - Mars\Save\}} - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Surviving Mars/Save/}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/Surviving Mars/Save/}}' + - "{{Game data/config|Windows|{{P|appdata}}\\Surviving Mars\\}}" + - "{{Game data/config|Microsoft Store|{{P|localappdata}}\\Packages\\ParadoxInteractive.SurvivingMars_zfnrdv2de78ny\\LocalCache\\Roaming\\Surviving Mars\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Surviving Mars/}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/Surviving Mars/}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\Surviving Mars\\Save\\}}" + - "{{Game data/saves|Microsoft Store|{{P|localappdata}}\\Packages\\ParadoxInteractive.SurvivingMars_zfnrdv2de78ny\\LocalCache\\Roaming\\Surviving Mars\\Save\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Surviving Mars/Save/}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/Surviving Mars/Save/}}" Surviving Medieval: pageId: 136680 steam: 1082770 @@ -159672,11 +155335,11 @@ Surviving in the Forest: Surviving the Aftermath: gog: 1379411738 gogSide: - - 1395053666 - - 1922426825 - - 1777595887 - 1130706763 - 1253637599 + - 1395053666 + - 1777595887 + - 1922426825 pageId: 147692 steam: 684450 steamSide: @@ -159686,8 +155349,8 @@ Surviving the Aftermath: - 1803782 - 2146190 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\Paradox Interactive\Surviving the Aftermath}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\Paradox Interactive\Surviving the Aftermath}}' + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\Paradox Interactive\\Surviving the Aftermath}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\Paradox Interactive\\Surviving the Aftermath}}" Survivor: pageId: 130480 steam: 1031700 @@ -159701,16 +155364,16 @@ Survivor Squad: pageId: 12226 steam: 258050 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Endless Loop Studios\Survivor Squad\}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Endless Loop Studios/Survivor Squad/}}' - - '{{Game data/saves|Windows|{{P|hkcu}}\Software\Endless Loop Studios\Survivor Squad\}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Endless Loop Studios/Survivor Squad/}}' -'Survivor Squad: Gauntlets': + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Endless Loop Studios\\Survivor Squad\\}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Endless Loop Studios/Survivor Squad/}}" + - "{{Game data/saves|Windows|{{P|hkcu}}\\Software\\Endless Loop Studios\\Survivor Squad\\}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Endless Loop Studios/Survivor Squad/}}" +"Survivor Squad: Gauntlets": pageId: 24796 steam: 331720 templates: - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Endless Loop Studios/Survivor Squad Gauntlets/prefs}}' - - '{{Game data/saves|Steam|{{P|steam}}/userdata/{{P|uid}}/331720/remote/}}' + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Endless Loop Studios/Survivor Squad Gauntlets/prefs}}" + - "{{Game data/saves|Steam|{{P|steam}}/userdata/{{P|uid}}/331720/remote/}}" Survivor Ultimate: pageId: 126731 Survivor VR: @@ -159722,15 +155385,15 @@ Survivor in Summer: Survivor of Eschewal: pageId: 74510 steam: 738260 -'Survivor: The Interactive Game': +"Survivor: The Interactive Game": pageId: 126729 -'Survivor: The Living Dead': +"Survivor: The Living Dead": pageId: 46196 steam: 386200 -'Survivors Left: X': +"Survivors Left: X": pageId: 122239 renamedFrom: - - 'SURVIVORS LEFT: X' + - "SURVIVORS LEFT: X" steam: 961000 Survivors of Borridor: pageId: 82039 @@ -159767,8 +155430,8 @@ Suwarudo: Suzerain: gog: 1963625960 gogSide: - - 1359273744 - 1223586991 + - 1359273744 - 1727282816 pageId: 157166 steam: 1207650 @@ -159776,14 +155439,14 @@ Suzerain: - 1252140 - 2352340 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\SOFTWARE\TorporGames\Suzerain}}' - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\TorporGames\Suzerain\Suzerain}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Suzerain/unity.TorporGames.Suzerain}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\SOFTWARE\\TorporGames\\Suzerain}}" + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\TorporGames\\Suzerain\\Suzerain}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Suzerain/unity.TorporGames.Suzerain}}" Suzuki Alstare Extreme Racing: pageId: 86937 templates: - - '{{Game data/config|Windows|{{p|game}}\menudata.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\misc\datebase.ddb}}' + - "{{Game data/config|Windows|{{p|game}}\\menudata.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\misc\\datebase.ddb}}" Suzunaan on Fire: pageId: 155951 steam: 1196570 @@ -159791,29 +155454,29 @@ Suzy Cube: pageId: 160146 steam: 780500 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Noodlecake Studios Inc.\Suzy Cube}}' - - '{{Game data/saves|Windows|{{p|hkcu}}\Software\Noodlecake Studios Inc.\Suzy Cube}}' -Svarog's Dream: + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Noodlecake Studios Inc.\\Suzy Cube}}" + - "{{Game data/saves|Windows|{{p|hkcu}}\\Software\\Noodlecake Studios Inc.\\Suzy Cube}}" +"Svarog's Dream": pageId: 191337 steam: 2004640 Sven Co-op: pageId: 30946 steam: 225840 templates: - - '{{Game data/config|Windows|{{P|game}}\svencoop\*.cfg}}' - - '{{Game data/config|Linux|{{P|game}}/svencoop/*.cfg}}' -Sven-Göran Eriksson's World Challenge: + - "{{Game data/config|Windows|{{P|game}}\\svencoop\\*.cfg}}" + - "{{Game data/config|Linux|{{P|game}}/svencoop/*.cfg}}" +"Sven-Göran Eriksson's World Challenge": pageId: 155217 renamedFrom: - - Sven-Goran Eriksson's World Challenge -Sven-Göran Eriksson's World Manager: + - "Sven-Goran Eriksson's World Challenge" +"Sven-Göran Eriksson's World Manager": pageId: 155215 renamedFrom: - - Sven-Goran Eriksson's World Manager + - "Sven-Goran Eriksson's World Manager" Svoboda: pageId: 92791 steam: 848640 -'Svoboda 1945: Liberation': +"Svoboda 1945: Liberation": gog: 1947080977 pageId: 139632 renamedFrom: @@ -159824,7 +155487,7 @@ Swag and Sorcery: pageId: 110568 steam: 929010 templates: - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Lazy Bear Games\Swag and Sorcery\*.dat}}' + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Lazy Bear Games\\Swag and Sorcery\\*.dat}}" Swallow Homing: pageId: 127209 renamedFrom: @@ -159866,7 +155529,7 @@ Swarm Arena: Swarm Queen: pageId: 72367 steam: 701870 -'Swarm Simulator: Evolution': +"Swarm Simulator: Evolution": pageId: 128083 steam: 914320 Swarm Universe: @@ -159879,7 +155542,7 @@ Swarmlake: pageId: 82395 steam: 793350 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Swarmlake\settings}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\Swarmlake\\settings}}" Swarmrider Omega: pageId: 71886 steam: 714240 @@ -159887,12 +155550,12 @@ Swarmriders: pageId: 33759 steam: 490230 templates: - - '{{Game data/saves|Windows|{{P|localappdata}}\SWARMRIDERS\}}' + - "{{Game data/saves|Windows|{{P|localappdata}}\\SWARMRIDERS\\}}" SweatShop: pageId: 42133 steam: 496680 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\DucksLab\SweatShop\persistentData\default}}' + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\DucksLab\\SweatShop\\persistentData\\default}}" Sweater? OK!: pageId: 55017 steam: 539700 @@ -159902,14 +155565,14 @@ Sweaty Palms: Swedish Touring Car Championship: pageId: 189494 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\SOFTWARE\Digital Illusions\STCC\Configurations\Default\}}' - - '{{Game data/saves|Windows|{{P|game}}\SavedGames\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\Digital Illusions\\STCC\\Configurations\\Default\\}}" + - "{{Game data/saves|Windows|{{P|game}}\\SavedGames\\}}" Swedish Touring Car Championship 2: pageId: 189499 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\SOFTWARE\Digital Illusions\STCC 2\Configurations\Default\}}' - - '{{Game data/saves|Windows|{{P|game}}\SavedGames\}}' -Sweep'n'Sweep: + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\Digital Illusions\\STCC 2\\Configurations\\Default\\}}" + - "{{Game data/saves|Windows|{{P|game}}\\SavedGames\\}}" +"Sweep'n'Sweep": pageId: 89409 steam: 552400 Sweeper Zero: @@ -159973,14 +155636,14 @@ Sweetest Monster: pageId: 57309 steam: 585890 templates: - - '{{Game data/config|Windows|{{P|appdata}}\renpy\Sweetest Monster-1453027400\persistent}}' - - '{{Game data/saves|Windows|{{P|appdata}}\RenPy\Sweetest Monster-1453027400\*.save|{{p|game}}\game\saves\*.save}}' + - "{{Game data/config|Windows|{{P|appdata}}\\renpy\\Sweetest Monster-1453027400\\persistent}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\RenPy\\Sweetest Monster-1453027400\\*.save|{{p|game}}\\game\\saves\\*.save}}" Sweezy Gunner: pageId: 34761 steam: 295730 templates: - - '{{Game data/config|Windows|{{p|game}}\Save Files\settings.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\Save Files\}}' + - "{{Game data/config|Windows|{{p|game}}\\Save Files\\settings.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\Save Files\\}}" Swelter: pageId: 179541 steam: 1815330 @@ -159997,7 +155660,7 @@ Swim Out: pageId: 65750 steam: 662200 templates: - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\Lozange Lab\Swim Out\UserCompletion.bin}}' + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\Lozange Lab\\Swim Out\\UserCompletion.bin}}" Swimming with Humpbacks: pageId: 136408 steam: 1068310 @@ -160005,7 +155668,7 @@ Swimsanity!: pageId: 105523 steam: 877800 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\SOFTWARE\Decoy Games\Swimsanity}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\SOFTWARE\\Decoy Games\\Swimsanity}}" Swing Dunk (Beta): pageId: 156100 steam: 798930 @@ -160042,11 +155705,11 @@ Switch: Switch & Ditch: pageId: 125089 steam: 992790 -Switch 'N' Shoot: +"Switch 'N' Shoot": pageId: 41731 steam: 498470 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Matt Glanville\Switch ''N'' Shoot\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Matt Glanville\\Switch 'N' Shoot\\}}" Switch - Black & White: pageId: 103153 steam: 879430 @@ -160057,8 +155720,8 @@ Switch Galaxy Ultra: - 381190 - 381191 templates: - - '{{Game data/config|Windows|{{P|appdata}}\Atomicom\Switch Galaxy\settings.cfg}}' - - '{{Game data/saves|Windows|{{P|appdata}}\Atomicom\Switch Galaxy\savedata-*.dat}}' + - "{{Game data/config|Windows|{{P|appdata}}\\Atomicom\\Switch Galaxy\\settings.cfg}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\Atomicom\\Switch Galaxy\\savedata-*.dat}}" Switchblade: gog: 1880203859 pageId: 174482 @@ -160077,52 +155740,48 @@ Switcher: Swoon! Earth Escape: pageId: 187594 steam: 1673460 -Sword 'N' Board: +"Sword 'N' Board": pageId: 44766 steam: 425230 Sword Art Online Alicization Lycoris: pageId: 133036 renamedFrom: - - 'Sword Art Online: Alicization Lycoris' + - "Sword Art Online: Alicization Lycoris" steam: 1009290 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\sao_al\userdata\GRPCFG.bin}}' - - '{{Game data/saves|Windows|{{P|steam}}\userdata\{{P|uid}}\1009290\remote}}' -'Sword Art Online Re: Hollow Fragment': + - "{{Game data/config|Windows|{{p|localappdata}}\\sao_al\\userdata\\GRPCFG.bin}}" + - "{{Game data/saves|Windows|{{P|steam}}\\userdata\\{{P|uid}}\\1009290\\remote}}" +"Sword Art Online Re: Hollow Fragment": pageId: 108434 steam: 638650 templates: - - '{{Game data/saves|Windows|{{p|Steam}}\userdata\{{p|uid}}\638650\remote\}}' -'Sword Art Online: Fatal Bullet': + - "{{Game data/saves|Windows|{{p|Steam}}\\userdata\\{{p|uid}}\\638650\\remote\\}}" +"Sword Art Online: Fatal Bullet": pageId: 80649 steam: 626690 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\SAOFB\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\SAOFB\Saved\SaveGames\}}' -'Sword Art Online: Hollow Realization': + - "{{Game data/config|Windows|{{P|localappdata}}\\SAOFB\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\SAOFB\\Saved\\SaveGames\\}}" +"Sword Art Online: Hollow Realization": pageId: 74828 steam: 607890 templates: - - '{{Game data/config|Windows|{{p|game}}\userdata\}}' - - '{{Game data/saves|Windows|{{P|steam}}\userdata\{{P|uid}}\607890\remote}}' -'Sword Art Online: Integral Factor': + - "{{Game data/config|Windows|{{p|game}}\\userdata\\}}" + - "{{Game data/saves|Windows|{{P|steam}}\\userdata\\{{P|uid}}\\607890\\remote}}" +"Sword Art Online: Integral Factor": pageId: 190072 steam: 2371630 -'Sword Art Online: Last Recollection': +"Sword Art Online: Last Recollection": pageId: 182888 steam: 1566880 templates: - - >- - {{Game data/config|Windows|{{P|localappdata}}\BANDAI NAMCO Entertainment\SAO Last - Recollection\Saved\Config\WindowsNoEditor\}} - - >- - {{Game data/saves|Windows|{{P|localappdata}}\BANDAI NAMCO Entertainment\SAO Last - Recollection\Saved\SaveGames\{{P|uid}}\}} -'Sword Art Online: Lost Song': + - "{{Game data/config|Windows|{{P|localappdata}}\\BANDAI NAMCO Entertainment\\SAO Last Recollection\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\BANDAI NAMCO Entertainment\\SAO Last Recollection\\Saved\\SaveGames\\{{P|uid}}\\}}" +"Sword Art Online: Lost Song": pageId: 122967 steam: 840720 templates: - - '{{Game data/saves|Steam|{{p|Steam}}\userdata\{{p|uid}}\840720\remote\}}' + - "{{Game data/saves|Steam|{{p|Steam}}\\userdata\\{{p|uid}}\\840720\\remote\\}}" Sword Bros: pageId: 74999 steam: 680990 @@ -160130,14 +155789,14 @@ Sword Coast Legends: pageId: 23081 steam: 325600 templates: - - '{{Game data/config|Windows|{{p|steam}}\userdata\{{p|uid}}\325600\remote\}}' - - '{{Game data/saves|Windows|{{p|steam}}\userdata\{{p|uid}}\325600\remote\}}' + - "{{Game data/config|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\325600\\remote\\}}" + - "{{Game data/saves|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\325600\\remote\\}}" Sword Daughter: pageId: 48699 steam: 342450 templates: - - '{{Game data/config|Windows|{{p|game}}\renpy\config.py}}' - - '{{Game data/saves|Windows|{{P|appdata}}\renpy\Sword Daughter\|{{p|game}}\game\saves\}}' + - "{{Game data/config|Windows|{{p|game}}\\renpy\\config.py}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\renpy\\Sword Daughter\\|{{p|game}}\\game\\saves\\}}" Sword Defense: pageId: 130026 steam: 1031090 @@ -160146,8 +155805,8 @@ Sword Legacy Omen: pageId: 74596 steam: 690140 templates: - - '{{Game data/config|Windows|{{P|game}}\Options.cfg|{{P|hkcu}}\Software\Firecast\SwordLegacy\}}' - - '{{Game data/saves|Windows|{{P|game}}\SaveFiles\SaveFile.sav}}' + - "{{Game data/config|Windows|{{P|game}}\\Options.cfg|{{P|hkcu}}\\Software\\Firecast\\SwordLegacy\\}}" + - "{{Game data/saves|Windows|{{P|game}}\\SaveFiles\\SaveFile.sav}}" Sword Mans: pageId: 88862 steam: 815840 @@ -160161,13 +155820,13 @@ Sword With Sauce: pageId: 56774 steam: 581630 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\SwordWithSauce\Saved\Config\WindowsNoEditor}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\SwordWithSauce\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\SwordWithSauce\\Saved\\Config\\WindowsNoEditor}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\SwordWithSauce\\Saved\\SaveGames\\}}" Sword and Fairy 7: pageId: 172406 steam: 1543030 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Pal7\Saved\Config\WindowsNoEditor\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\Pal7\\Saved\\Config\\WindowsNoEditor\\}}" Sword and Shield: pageId: 52866 steam: 533990 @@ -160185,26 +155844,22 @@ Sword of Fireheart - The Awakening Element: steam: 503490 Sword of Legends Online: pageId: 170012 -'Sword of Moonlight: King’s Field Making Tool': +"Sword of Moonlight: King’s Field Making Tool": pageId: 185682 templates: - - '{{Game data/config|Windows|{{code|{{p|game}}\GAME.INI}}}}' + - "{{Game data/config|Windows|{{code|{{p|game}}\\GAME.INI}}}}" Sword of Rapier: pageId: 121940 steam: 933430 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\SOFTWARE\vDog\Sword of Rapier}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\vDog\Sword of Rapier\SaveData.dat}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\vDog\\Sword of Rapier}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\vDog\\Sword of Rapier\\SaveData.dat}}" Sword of Vermilion: pageId: 30842 steam: 71114 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\SEGA Mega Drive - Classics\setup.dat|{{p|userprofile\Documents}}\SEGA Genesis Classics\setup.dat}} - - >- - {{Game data/saves|Windows|{{p|userprofile\Documents}}\SEGA Mega Drive - Classics\0032\|{{p|userprofile\Documents}}\SEGA Genesis Classics\0032\}} + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\SEGA Mega Drive Classics\\setup.dat|{{p|userprofile\\Documents}}\\SEGA Genesis Classics\\setup.dat}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\SEGA Mega Drive Classics\\0032\\|{{p|userprofile\\Documents}}\\SEGA Genesis Classics\\0032\\}}" Sword of the Black Stone: pageId: 94050 steam: 847590 @@ -160227,34 +155882,34 @@ Sword of the Stars: pageId: 204 steam: 42890 templates: - - '{{Game data/config|Windows|{{P|game}}|{{P|game}}\Profiles}}' - - '{{Game data/saves|Windows|{{P|game}}\SavedGames}}' -'Sword of the Stars II: Lords of Winter': + - "{{Game data/config|Windows|{{P|game}}|{{P|game}}\\Profiles}}" + - "{{Game data/saves|Windows|{{P|game}}\\SavedGames}}" +"Sword of the Stars II: Lords of Winter": pageId: 10084 steam: 42990 -'Sword of the Stars: Ground Pounders': +"Sword of the Stars: Ground Pounders": pageId: 15166 steam: 267730 -'Sword of the Stars: The Pit': +"Sword of the Stars: The Pit": gog: 1207660183 pageId: 5507 steam: 233700 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Sword of the Stars - The Pit\}}' - - '{{Game data/config|Linux|{{P|xdgconfighome}}/ThePit/}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Sword of the Stars - The Pit\}}' - - '{{Game data/saves|Linux|{{P|xdgconfighome}}/ThePit/}}' - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{P|uid}}/233700/remote/}}' + - "{{Game data/config|Windows|{{p|appdata}}\\Sword of the Stars - The Pit\\}}" + - "{{Game data/config|Linux|{{P|xdgconfighome}}/ThePit/}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Sword of the Stars - The Pit\\}}" + - "{{Game data/saves|Linux|{{P|xdgconfighome}}/ThePit/}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{P|uid}}/233700/remote/}}" SwordBounce: pageId: 93889 steam: 852390 Swordbreaker The Game: pageId: 38508 steam: 411760 -'Swordbreaker: Back to The Castle': +"Swordbreaker: Back to The Castle": pageId: 126414 steam: 1005990 -'Swordbreaker: Origins': +"Swordbreaker: Origins": pageId: 139614 steam: 1080700 Swordia: @@ -160266,35 +155921,35 @@ Swordlord: Swordrite: pageId: 150156 steam: 1169770 -'Swords & Crossbones: An Epic Pirate Story': +"Swords & Crossbones: An Epic Pirate Story": pageId: 46222 steam: 383720 templates: - - '{{Game data/config|Windows|{{p|steam}}\userdata\{{p|uid}}\383720\remote\game_settings.xml}}' - - '{{Game data/saves|Windows|{{p|steam}}\userdata\{{p|uid}}\383720\remote}}' + - "{{Game data/config|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\383720\\remote\\game_settings.xml}}" + - "{{Game data/saves|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\383720\\remote}}" Swords & Soldiers: pageId: 4767 steam: 63500 templates: - - '{{Game data/config|Windows|{{p|steam}}\steamapps\common\SwordsAndSoldiersHD\Data\Settings}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.ronimo-games/swords_and_soldiers/}}' - - '{{Game data/saves|Windows|{{p|steam}}\steamapps\common\SwordsAndSoldiersHD\Data\Save.txt}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.ronimo-games/swords_and_soldiers/}}' - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/63500/}}' -'Swords & Soldiers II: Shawarmageddon': + - "{{Game data/config|Windows|{{p|steam}}\\steamapps\\common\\SwordsAndSoldiersHD\\Data\\Settings}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.ronimo-games/swords_and_soldiers/}}" + - "{{Game data/saves|Windows|{{p|steam}}\\steamapps\\common\\SwordsAndSoldiersHD\\Data\\Save.txt}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.ronimo-games/swords_and_soldiers/}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/63500/}}" +"Swords & Soldiers II: Shawarmageddon": pageId: 100586 steam: 703880 templates: - - '{{Game data/config|Windows|{{P|game}}\Config.txt}}' - - '{{Game data/saves|Windows|{{P|steam}}\userdata\{{P|uid}}\703880\remote\}}' -'Swords & Souls: Neverseen': + - "{{Game data/config|Windows|{{P|game}}\\Config.txt}}" + - "{{Game data/saves|Windows|{{P|steam}}\\userdata\\{{P|uid}}\\703880\\remote\\}}" +"Swords & Souls: Neverseen": gog: 1741685922 pageId: 90437 steam: 679900 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\SoulGame\Swords & Souls Neverseen\}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\SoulGame\Swords _ Souls Neverseen\slot*}}' -Swords 'n Magic and Stuff: + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\SoulGame\\Swords & Souls Neverseen\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\SoulGame\\Swords _ Souls Neverseen\\slot*}}" +"Swords 'n Magic and Stuff": pageId: 145290 steam: 810040 Swords and Sandals 2 Redux: @@ -160336,8 +155991,8 @@ Swords of Xeen: - 1207658788 pageId: 9883 templates: - - '{{Game data/config|DOS|{{p|game}}\XEEN.CFG}}' - - '{{Game data/saves|DOS|{{p|game}}\SWRD**.SAV}}' + - "{{Game data/config|DOS|{{p|game}}\\XEEN.CFG}}" + - "{{Game data/saves|DOS|{{p|game}}\\SWRD**.SAV}}" Swords with spice: pageId: 108214 steam: 918320 @@ -160352,33 +156007,27 @@ Syberia: pageId: 13554 steam: 46500 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Syberia Saves\Config.dat}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Syberia/}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Syberia Saves\}}' - - >- - {{Game data/saves|OS X|{{p|osxhome}}/Library/Containers/com.microids.syberia.univ/Data/Library/Application - Support/Syberia/}} + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Syberia Saves\\Config.dat}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Syberia/}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Syberia Saves\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Containers/com.microids.syberia.univ/Data/Library/Application Support/Syberia/}}" Syberia 3: gog: 1965973671 pageId: 33396 steam: 464340 templates: - - '{{Game data/config|Windows|{{p|USERPROFILE}}\AppData\LocalLow\Microids\Syberia3\Options}}' - - '{{Game data/saves|Windows|{{p|USERPROFILE}}\AppData\LocalLow\Microids\Syberia3}}' + - "{{Game data/config|Windows|{{p|USERPROFILE}}\\AppData\\LocalLow\\Microids\\Syberia3\\Options}}" + - "{{Game data/saves|Windows|{{p|USERPROFILE}}\\AppData\\LocalLow\\Microids\\Syberia3}}" Syberia II: gog: 1207658849 pageId: 13562 steam: 46510 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Syberia 2 Saves\}}' - - >- - {{Game data/config|OS X|{{p|osxhome}}/Library/Containers/com.microids.syberia2.univ/Data/Library/Application - Support/Syberia 2/options.xml}} - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Syberia 2 Saves\}}' - - >- - {{Game data/saves|OS X|{{p|osxhome}}/Library/Containers/com.microids.syberia2.univ/Data/Library/Application - Support/Syberia 2/}} -'Syberia: The World Before': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Syberia 2 Saves\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Containers/com.microids.syberia2.univ/Data/Library/Application Support/Syberia 2/options.xml}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Syberia 2 Saves\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Containers/com.microids.syberia2.univ/Data/Library/Application Support/Syberia 2/}}" +"Syberia: The World Before": gog: 1731334260 gogSide: - 1185739490 @@ -160387,8 +156036,8 @@ Syberia II: steamSide: - 1421230 templates: - - '{{Game data/config|Windows|{{p|appdata}}\SyberiaTWB\}}' - - '{{Game data/saves|Windows|{{p|appdata}}\SyberiaTWB\}}' + - "{{Game data/config|Windows|{{p|appdata}}\\SyberiaTWB\\}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\SyberiaTWB\\}}" Syder Arcade: pageId: 17369 steam: 252310 @@ -160397,7 +156046,7 @@ Sydney 2000: Sydney Hunter and the Curse of the Mayan: pageId: 135694 steam: 931860 -Sydney's World: +"Sydney's World": pageId: 44738 steam: 362160 Syko Swinger: @@ -160430,21 +156079,18 @@ Symmetry: pageId: 52350 steam: 537520 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Symmetry\settings.ini}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/com.sleeplessclinic.symmetry/settings.ini}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\Symmetry\continue.ini|{{P|localappdata}}\Symmetry\achievments.ini}}' - - >- - {{Game data/saves|OS X|{{p|osxhome}}/Library/Application - Support/com.sleeplessclinic.symmetry/continue.ini|{{p|osxhome}}/Library/Application - Support/com.sleeplessclinic.symmetry/achievments.ini}} -'Symmetry: Early Access': + - "{{Game data/config|Windows|{{P|localappdata}}\\Symmetry\\settings.ini}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/com.sleeplessclinic.symmetry/settings.ini}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Symmetry\\continue.ini|{{P|localappdata}}\\Symmetry\\achievments.ini}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/com.sleeplessclinic.symmetry/continue.ini|{{p|osxhome}}/Library/Application Support/com.sleeplessclinic.symmetry/achievments.ini}}" +"Symmetry: Early Access": pageId: 144967 steam: 1130400 Symphonia: gog: 2069516170 pageId: 169965 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\DefaultCompany\Symphonia}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\DefaultCompany\\Symphonia}}" Symphonic Mayhem: pageId: 115008 steam: 954210 @@ -160452,8 +156098,8 @@ Symphonic Rain: pageId: 62221 steam: 629650 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\KOGADO\SRIntl\*.ini}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\KOGADO\SRIntl\*.sav}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\KOGADO\\SRIntl\\*.ini}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\KOGADO\\SRIntl\\*.sav}}" Symphonics: pageId: 109376 steam: 896350 @@ -160462,34 +156108,32 @@ Symphony: pageId: 8014 steam: 207750 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Empty Clip Studios\Symphony\}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/Empty Clip Studios/Symphony/}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Empty Clip Studios\Symphony\}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/Empty Clip Studios/Symphony/}}' + - "{{Game data/config|Windows|{{p|appdata}}\\Empty Clip Studios\\Symphony\\}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/Empty Clip Studios/Symphony/}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Empty Clip Studios\\Symphony\\}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/Empty Clip Studios/Symphony/}}" Symphony of Stars: pageId: 125833 steam: 973310 -'Symphony of War: The Nephilim Saga': +"Symphony of War: The Nephilim Saga": gog: 1081193936 pageId: 178226 steam: 1488200 templates: - - '{{Game data/saves|Windows|{{p|appdata}}\Nephilim\*.rvdata2|{{p|game}}\savedata\*.rvdata2}}' + - "{{Game data/saves|Windows|{{p|appdata}}\\Nephilim\\*.rvdata2|{{p|game}}\\savedata\\*.rvdata2}}" Symphony of the Machine: pageId: 61468 steam: 540010 -'Symploke: Legend of Gustavo Bueno (Chapter 1)': +"Symploke: Legend of Gustavo Bueno (Chapter 1)": pageId: 66711 steam: 678090 templates: - - >- - {{Game data/config|Windows|{{P|userprofile}}\Saved Games\Symploke. Legend of Gustavo Bueno. Chapter - 1\acsetup.cfg}} - - '{{Game data/saves|Windows|{{P|userprofile}}\Saved Games\Symploke. Legend of Gustavo Bueno. Chapter 1\agssave.*}}' -'Symploke: Legend of Gustavo Bueno (Chapter 2)': + - "{{Game data/config|Windows|{{P|userprofile}}\\Saved Games\\Symploke. Legend of Gustavo Bueno. Chapter 1\\acsetup.cfg}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\Saved Games\\Symploke. Legend of Gustavo Bueno. Chapter 1\\agssave.*}}" +"Symploke: Legend of Gustavo Bueno (Chapter 2)": pageId: 76349 steam: 678920 -'Symploke: Legend of Gustavo Bueno (Chapter 3)': +"Symploke: Legend of Gustavo Bueno (Chapter 3)": pageId: 126154 steam: 1002980 Synced: @@ -160499,7 +156143,7 @@ Synced: - SYNCED steam: 1008080 templates: - - '{{Game data/saves|Windows|{{P|game}}\ArkGame\Saved\SaveGames}}' + - "{{Game data/saves|Windows|{{P|game}}\\ArkGame\\Saved\\SaveGames}}" Synced Warriors: pageId: 79730 steam: 764390 @@ -160513,31 +156157,31 @@ Syndicate: gog: 1207658992 pageId: 996 templates: - - '{{Game data/saves|DOS|{{p|game}}\SAVE\|{{p|game}}\SAVE2\}}' + - "{{Game data/saves|DOS|{{p|game}}\\SAVE\\|{{p|game}}\\SAVE2\\}}" Syndicate (2012): pageId: 916 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Syndicate\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Syndicate\SaveGames\default}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Syndicate\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Syndicate\\SaveGames\\default}}" Syndicate Wars: gog: 1207659193 pageId: 14051 templates: - - '{{Game data/config|Windows|{{p|game}}\SWARS}}' - - '{{Game data/saves|Windows|{{p|game}}\SWARS\QDATA\SAVEGAME}}' + - "{{Game data/config|Windows|{{p|game}}\\SWARS}}" + - "{{Game data/saves|Windows|{{p|game}}\\SWARS\\QDATA\\SAVEGAME}}" Syndrome: pageId: 39145 steam: 409320 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Camel101\Syndrome\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Camel101\Syndrome\MySaves\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Camel101\\Syndrome\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Camel101\\Syndrome\\MySaves\\}}" Syndrome VR: pageId: 73444 steam: 579210 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\BIGMOON ENTERTAINMENT\Syndrome\}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\BIGMOON ENTERTAINMENT\Syndrome\}}' -'Synduality: Echo of Ada': + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\BIGMOON ENTERTAINMENT\\Syndrome\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\BIGMOON ENTERTAINMENT\\Syndrome\\}}" +"Synduality: Echo of Ada": pageId: 187407 steam: 1245480 Synergia: @@ -160545,8 +156189,8 @@ Synergia: pageId: 132818 steam: 1047010 templates: - - '{{Game data/config|Windows|{{P|appdata}}\RenPy\Synergia-1529537386\persistent}}' - - '{{Game data/saves|Windows|{{P|appdata}}\RenPy\Synergia-1529537386\*.save}}' + - "{{Game data/config|Windows|{{P|appdata}}\\RenPy\\Synergia-1529537386\\persistent}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\RenPy\\Synergia-1529537386\\*.save}}" Synergy: pageId: 179557 steam: 17520 @@ -160585,25 +156229,25 @@ Synthetik 2: pageId: 172805 steam: 1471410 templates: - - '{{Game data/config|Windows|{{P|AppData}}\..\LocalLow\FlowFire\Synthetik2\Settings.json}}' -'Synthetik: Legion Rising': + - "{{Game data/config|Windows|{{P|AppData}}\\..\\LocalLow\\FlowFire\\Synthetik2\\Settings.json}}" +"Synthetik: Legion Rising": gog: 1543567149 pageId: 81934 renamedFrom: - - 'Synthetik: Legion Uprising' - - 'Synthetik: Legion Rising' - - 'Synthetik: Legion Uprising' + - "Synthetik: Legion Uprising" + - "Synthetik: Legion Rising" + - "Synthetik: Legion Uprising" steam: 528230 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Synthetik\Settings.sav}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\Synthetik\Save.sav}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\Synthetik\\Settings.sav}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Synthetik\\Save.sav}}" Synthrally: pageId: 91224 steam: 829760 Synthrun: pageId: 127359 steam: 893120 -Synthwave Dream '85: +"Synthwave Dream '85": pageId: 107712 steam: 881130 Synzzball: @@ -160616,8 +156260,8 @@ Syrian Warfare: pageId: 39229 steam: 485980 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\SyrianWarfare\profiles\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\SyrianWarfare\profiles\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\SyrianWarfare\\profiles\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\SyrianWarfare\\profiles\\}}" System Crash: pageId: 41932 steam: 481180 @@ -160629,8 +156273,8 @@ System Shock: pageId: 2984 steam: 410700 templates: - - '{{Game data/config|DOS|{{p|game}}\CYB.CFG}}' - - '{{Game data/saves|DOS|{{p|game}}\DATA}}' + - "{{Game data/config|DOS|{{p|game}}\\CYB.CFG}}" + - "{{Game data/saves|DOS|{{p|game}}\\DATA}}" System Shock (2023): gog: 1439637285 gogSide: @@ -160644,36 +156288,32 @@ System Shock (2023): steamSide: - 487390 templates: - - >- - {{Game data/config|Windows|{{p|userprofile}}\Saved Games\Nightdive - Studios\SystemShock\Saved\Config\WindowsNoEditor\}} - - '{{Game data/saves|Windows|{{p|userprofile}}\Saved Games\Nightdive Studios\SystemShock\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\Saved Games\\Nightdive Studios\\SystemShock\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Saved Games\\Nightdive Studios\\SystemShock\\Saved\\SaveGames\\}}" System Shock 2: gog: 1207659172 pageId: 721 steam: 238210 templates: - - '{{Game data/config|Windows|{{p|game}}\*.cfg}}' - - '{{Game data/config|OS X|{{p|game}}/Contents/Resources/drive_c/Games/System Shock 2/}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.systemshock2/systemshock2/drive_c/Program Files/SystemShock2/*.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\save_*}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.systemshock2/systemshock2/drive_c/Program Files/SystemShock2/save_*}}' + - "{{Game data/config|Windows|{{p|game}}\\*.cfg}}" + - "{{Game data/config|OS X|{{p|game}}/Contents/Resources/drive_c/Games/System Shock 2/}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.systemshock2/systemshock2/drive_c/Program Files/SystemShock2/*.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\save_*}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.systemshock2/systemshock2/drive_c/Program Files/SystemShock2/save_*}}" System Shock 2 Enhanced Edition: gog: 1448370350 pageId: 143198 System Shock 3: pageId: 131235 -'System Shock: Enhanced Edition': +"System Shock: Enhanced Edition": gog: 1439995156 gogSide: - 1442477571 pageId: 29309 steam: 410710 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Nightdive Studios\System Shock EE\kexengine.cfg}}' - - >- - {{Game data/saves|Windows|{{p|appdata}}\Nightdive Studios\System Shock - EE\savegame\archive\savgam**.dat|{{p|appdata}}\Nightdive Studios\System Shock EE\savegame\archive\currsave.dat}} + - "{{Game data/config|Windows|{{p|appdata}}\\Nightdive Studios\\System Shock EE\\kexengine.cfg}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Nightdive Studios\\System Shock EE\\savegame\\archive\\savgam**.dat|{{p|appdata}}\\Nightdive Studios\\System Shock EE\\savegame\\archive\\currsave.dat}}" System Siege: pageId: 87525 steam: 683910 @@ -160696,13 +156336,13 @@ Sébastien Loeb Rally EVO: pageId: 44760 steam: 355060 templates: - - '{{Game data/config|Windows|{{P|appdata}}\Milestone\SLREVO\Saves}}' - - '{{Game data/saves|Windows|{{P|appdata}}\Milestone\SLREVO\Config.ini}}' -'Söldner-X: Himmelsstürmer': + - "{{Game data/config|Windows|{{P|appdata}}\\Milestone\\SLREVO\\Saves}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\Milestone\\SLREVO\\Config.ini}}" +"Söldner-X: Himmelsstürmer": pageId: 161125 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\SideQuest Studios\SoldnerX\}}' - - '{{Game data/saves|Windows|{{p|hkcu}}\Software\SideQuest Studios\SoldnerX\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\SideQuest Studios\\SoldnerX\\}}" + - "{{Game data/saves|Windows|{{p|hkcu}}\\Software\\SideQuest Studios\\SoldnerX\\}}" T Simulator: pageId: 136386 steam: 1080290 @@ -160712,8 +156352,8 @@ T-Kara Puzzles: T-MEK: pageId: 54202 templates: - - '{{Game data/config|DOS|{{p|game}}\TMEK.USR}}' - - '{{Game data/saves|DOS|{{p|game}}\TMEKHIGH.HGS|{{p|game}}\TMEKHIGH.BAK|{{p|game}}\TMEKHIGH.BK*}}' + - "{{Game data/config|DOS|{{p|game}}\\TMEK.USR}}" + - "{{Game data/saves|DOS|{{p|game}}\\TMEKHIGH.HGS|{{p|game}}\\TMEKHIGH.BAK|{{p|game}}\\TMEKHIGH.BK*}}" T-Rex Time Machine: pageId: 78062 steam: 763950 @@ -160726,7 +156366,7 @@ T.E.C. 3001: T3 - Take the Turn: pageId: 112772 steam: 939210 -'TAD: That Alien Dude': +"TAD: That Alien Dude": pageId: 90338 steam: 744610 TAG WAR: @@ -160740,19 +156380,19 @@ TAG WAR VR: TAKANARIA: pageId: 125556 steam: 1005910 -'TAL: Arctic': +"TAL: Arctic": pageId: 99824 steam: 887850 -'TAL: Arctic 2': +"TAL: Arctic 2": pageId: 103737 steam: 906010 -'TAL: Arctic 3': +"TAL: Arctic 3": pageId: 110720 steam: 932120 -'TAL: Jungle': +"TAL: Jungle": pageId: 122117 steam: 978210 -'TAL: Wizard''s Adventures': +"TAL: Wizard's Adventures": pageId: 153497 steam: 1197010 TANKNAROK: @@ -160764,15 +156404,15 @@ TAOTH - The Adventures of the Herkulez: TAPSONIC BOLD: pageId: 114250 steam: 938220 -'TASTEE: Lethal Tactics': +"TASTEE: Lethal Tactics": pageId: 38125 steam: 365190 TAXINAUT: pageId: 191208 steam: 2082260 templates: - - '{{Game data/config|Windows|{{p|appdata}}\taxinaut\}}' - - '{{Game data/saves|Windows|{{p|appdata}}\taxinaut\sav\}}' + - "{{Game data/config|Windows|{{p|appdata}}\\taxinaut\\}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\taxinaut\\sav\\}}" TAYAL: pageId: 113280 steam: 818960 @@ -160781,15 +156421,15 @@ TD Heroes: renamedFrom: - TD Strategy of Three kingdoms/塔防三国 steam: 1168290 -'TD Overdrive: The Brotherhood of Speed': +"TD Overdrive: The Brotherhood of Speed": pageId: 24203 templates: - - '{{Game data/config|Windows|{{p|game}}\GameSaves\}}' - - '{{Game data/saves|Windows|{{p|game}}\GameSaves\*.sav}}' + - "{{Game data/config|Windows|{{p|game}}\\GameSaves\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\GameSaves\\*.sav}}" TD Ultimate: pageId: 33888 steam: 855980 -'TDP4:Team Battle': +"TDP4:Team Battle": pageId: 48483 steam: 340540 TDP5 Arena 3D: @@ -160811,19 +156451,19 @@ TERA: pageId: 1989 steam: 323370 templates: - - '{{Game data/config|Windows|{{p|game}}\Client\S1Game\Config}}' + - "{{Game data/config|Windows|{{p|game}}\\Client\\S1Game\\Config}}" TERMINAL: pageId: 153740 steam: 1184550 TERROR SQUID: pageId: 150828 steam: 1148550 -TERRORhythm TRRT - Music Powered Beat 'em Up: +"TERRORhythm TRRT - Music Powered Beat 'em Up": pageId: 77371 steam: 752380 templates: - - '{{Game data/saves|Windows|{{P|hkcu}}\Software\EvilCoGames\TERRORHYTHM\}}' -'TETRUX: Online': + - "{{Game data/saves|Windows|{{P|hkcu}}\\Software\\EvilCoGames\\TERRORHYTHM\\}}" +"TETRUX: Online": pageId: 125147 steam: 688770 TEVI: @@ -160832,16 +156472,14 @@ TEVI: TEXT: pageId: 121496 steam: 954590 -'TFC: The Fertile Crescent': +"TFC: The Fertile Crescent": pageId: 183217 steam: 1674820 templates: - - '{{Game data/config|Linux|{{p|xdgconfighome}}/unity3d/Wield Interactive/The Fertile Crescent/prefs}}' - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\Wield Interactive\The Fertile Crescent\Saves\*.txt}}' - - >- - {{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Wield Interactive/The Fertile - Crescent/Saves/*.txt}} - - '{{Game data/saves|Linux|{{p|xdgconfighome}}/unity3d/Wield Interactive/The Fertile Crescent/Saves/*.txt}}' + - "{{Game data/config|Linux|{{p|xdgconfighome}}/unity3d/Wield Interactive/The Fertile Crescent/prefs}}" + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\Wield Interactive\\The Fertile Crescent\\Saves\\*.txt}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Wield Interactive/The Fertile Crescent/Saves/*.txt}}" + - "{{Game data/saves|Linux|{{p|xdgconfighome}}/unity3d/Wield Interactive/The Fertile Crescent/Saves/*.txt}}" TFX: pageId: 184448 TGV Voyages Train Simulator: @@ -160860,8 +156498,8 @@ THE ENIGMA MACHINE: pageId: 123568 steam: 977810 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\ENIGMA\THE ENIGMA MACHINE\}}' - - '{{Game data/saves|Windows|{{P|hkcu}}\Software\ENIGMA\THE ENIGMA MACHINE\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\ENIGMA\\THE ENIGMA MACHINE\\}}" + - "{{Game data/saves|Windows|{{P|hkcu}}\\Software\\ENIGMA\\THE ENIGMA MACHINE\\}}" THE FATE OF THE BULLY: pageId: 141562 steam: 1122250 @@ -160893,7 +156531,7 @@ TIME BREAKER: TIMEframe: pageId: 47363 steam: 340270 -'TIRELESS: Prepare for the Adrenaline': +"TIRELESS: Prepare for the Adrenaline": pageId: 128690 steam: 959800 TIS-100: @@ -160901,9 +156539,9 @@ TIS-100: pageId: 27114 steam: 370360 templates: - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\TIS-100}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/TIS-100}}' - - '{{Game data/saves|Linux|{{p|xdgdatahome}}/TIS-100}}' + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\TIS-100}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/TIS-100}}" + - "{{Game data/saves|Linux|{{p|xdgdatahome}}/TIS-100}}" TITAN HUNTER: pageId: 121447 steam: 955700 @@ -160917,50 +156555,50 @@ TKO: gog: 1866481165 pageId: 167284 steam: 1297550 -'TMM: Entourage': +"TMM: Entourage": pageId: 60297 steam: 556310 TMNT: pageId: 72635 steam: 21990 templates: - - '{{Game data/config|Windows|{{p|game}}\TMNTConfig.ini}}' - - '{{Game data/saves|Windows|{{p|appdata}}\TMNT}}' + - "{{Game data/config|Windows|{{p|game}}\\TMNTConfig.ini}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\TMNT}}" TNN Motorsports Hardcore TR: pageId: 46933 steam: 393540 TNT!: pageId: 139272 steam: 1086430 -'TO4: Tactical Operations': +"TO4: Tactical Operations": pageId: 74309 steam: 690980 TOCA 2 Touring Cars: pageId: 22217 templates: - - '{{Game data/config|Windows|{{P|game}}\Game\TOURCARS.CFG}}' - - '{{Game data/saves|Windows|{{P|game}}\Game\loads\}}' + - "{{Game data/config|Windows|{{P|game}}\\Game\\TOURCARS.CFG}}" + - "{{Game data/saves|Windows|{{P|game}}\\Game\\loads\\}}" TOCA Race Driver: pageId: 21499 templates: - - '{{Game data/config|Windows|{{P|game}}\pchardwareconfig.ini}}' - - '{{Game data/saves|Windows|{{P|game}}\save\}}' + - "{{Game data/config|Windows|{{P|game}}\\pchardwareconfig.ini}}" + - "{{Game data/saves|Windows|{{P|game}}\\save\\}}" TOCA Race Driver 2: pageId: 21503 templates: - - '{{Game data/config|Windows|{{p|game}}\pchardwareconfig.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\SaveData_*_*.rd2}}' + - "{{Game data/config|Windows|{{p|game}}\\pchardwareconfig.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\SaveData_*_*.rd2}}" TOCA Race Driver 3: gog: 1207658665 pageId: 6256 steam: 11500 templates: - - '{{Game data/config|Windows|{{p|game}}\savedata\pchardwareconfig.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\savedata\}}' + - "{{Game data/config|Windows|{{p|game}}\\savedata\\pchardwareconfig.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\savedata\\}}" TOCA Touring Car Championship: pageId: 63897 templates: - - '{{Game data/saves|Windows|{{p|game}}\saves.dat}}' + - "{{Game data/saves|Windows|{{p|game}}\\saves.dat}}" TOEM: gog: 1436499377 pageId: 171136 @@ -160968,15 +156606,13 @@ TOEM: steamSide: - 1655680 templates: - - '{{Game data/config|Windows|{{P|userprofile\appdata\locallow}}\Something We Made\TOEM\Save\Settings.json}}' - - '{{Game data/config|OS X|{{P|osxhome}}/Library/Application Support/se.SomethingWeMade.TOEM/Save/Settings.json}}' - - '{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/Something We Made/TOEM/Save/Settings.json}}' - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Something We Made\TOEM\Save\}}' - - >- - {{Game data/saves|Microsoft - Store|{{P|localappdata}}\Packages\SomethingWeMade.TOEM_3b9evzcrg4em8\SystemAppData\wgs}} - - '{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/se.SomethingWeMade.TOEM/Save/}}' - - '{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/Something We Made/TOEM/Save/}}' + - "{{Game data/config|Windows|{{P|userprofile\\appdata\\locallow}}\\Something We Made\\TOEM\\Save\\Settings.json}}" + - "{{Game data/config|OS X|{{P|osxhome}}/Library/Application Support/se.SomethingWeMade.TOEM/Save/Settings.json}}" + - "{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/Something We Made/TOEM/Save/Settings.json}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Something We Made\\TOEM\\Save\\}}" + - "{{Game data/saves|Microsoft Store|{{P|localappdata}}\\Packages\\SomethingWeMade.TOEM_3b9evzcrg4em8\\SystemAppData\\wgs}}" + - "{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/se.SomethingWeMade.TOEM/Save/}}" + - "{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/Something We Made/TOEM/Save/}}" TOGETHER BnB: pageId: 168101 steam: 1239020 @@ -160989,13 +156625,13 @@ TOK 2: TOK HARDCORE: pageId: 132210 steam: 1053250 -'TOKOYO: The Tower of Perpetuity': +"TOKOYO: The Tower of Perpetuity": pageId: 183922 steam: 1393420 TORCS: pageId: 165358 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\torcs\config}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\torcs\\config}}" TOREj: pageId: 69581 steam: 702370 @@ -161008,7 +156644,7 @@ TOREj 3: TOREj 4: pageId: 71904 steam: 702400 -'TOREj: Red Cubes': +"TOREj: Red Cubes": pageId: 70299 steam: 706740 TORINTO: @@ -161032,10 +156668,10 @@ TRANCE VR: TRANSIT: pageId: 125693 steam: 1003150 -'TRE HUN: Unity-Chan x Action': +"TRE HUN: Unity-Chan x Action": pageId: 128032 steam: 1010480 -'TREE HOUSE : AVOCADO MAYHEM': +"TREE HOUSE : AVOCADO MAYHEM": pageId: 144119 steam: 1127520 TRI: @@ -161043,13 +156679,11 @@ TRI: pageId: 20705 steam: 293660 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\SOFTWARE\Rat King Entertainment\TRI\}}' - - '{{Game data/config|Linux|{{P|linuxhome}}/.config/unity3d/Rat King Entertainment/TRI/prefs}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Rat King Entertainment\TRI\saves\}}' - - >- - {{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/unity.Rat King - Entertainment.TRI/saves{{cn|unconfirmed}}}} - - '{{Game data/saves|Linux|{{P|linuxhome}}/.config/unity3d/Rat King Entertainment/TRI/saves/}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\Rat King Entertainment\\TRI\\}}" + - "{{Game data/config|Linux|{{P|linuxhome}}/.config/unity3d/Rat King Entertainment/TRI/prefs}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Rat King Entertainment\\TRI\\saves\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/unity.Rat King Entertainment.TRI/saves{{cn|unconfirmed}}}}" + - "{{Game data/saves|Linux|{{P|linuxhome}}/.config/unity3d/Rat King Entertainment/TRI/saves/}}" TRI.DEFENDER: pageId: 52796 steam: 541960 @@ -161072,8 +156706,8 @@ TRON RUN/r: pageId: 44584 steam: 392000 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\TronGame\Saved\Config\WindowsNoEditor}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\TronGame\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\TronGame\\Saved\\Config\\WindowsNoEditor}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\TronGame\\Saved\\SaveGames\\}}" TRPG in VR Space: pageId: 143951 steam: 1052790 @@ -161083,27 +156717,27 @@ TRYON: TSA Frisky: pageId: 88906 steam: 805150 -'TSM3:Gemini Strategy/双子战纪': +"TSM3:Gemini Strategy/双子战纪": pageId: 153660 steam: 1155440 TT Isle of Man: pageId: 80663 steam: 626610 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\My Games\TouristTrophy}}' -'TT Isle of Man: Ride on the Edge 2': + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\My Games\\TouristTrophy}}" +"TT Isle of Man: Ride on the Edge 2": pageId: 157858 steam: 1082180 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\My Games\TT Isle of Man 2}}' -'TT Isle of Man: Ride on the Edge 3': + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\My Games\\TT Isle of Man 2}}" +"TT Isle of Man: Ride on the Edge 3": pageId: 187032 steam: 1924170 TTV2: pageId: 69348 steam: 701470 templates: - - '{{Game data/saves|Windows|{{P|localappdata}}\TTV2\}}' + - "{{Game data/saves|Windows|{{P|localappdata}}\\TTV2\\}}" TTV3: pageId: 140698 steam: 1114530 @@ -161125,40 +156759,40 @@ TY the Tasmanian Tiger: pageId: 37102 steam: 411960 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Ty the Tasmanian Tiger\}}' - - '{{Game data/saves|Windows|{{p|steam}}\userdata\{{p|uid}}\411960\remote\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Ty the Tasmanian Tiger\\}}" + - "{{Game data/saves|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\411960\\remote\\}}" TY the Tasmanian Tiger 2: pageId: 58834 steam: 411970 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Ty the Tasmanian Tiger 2\}}' - - '{{Game data/saves|Windows|{{p|steam}}\userdata\{{p|uid}}\411970\remote\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Ty the Tasmanian Tiger 2\\}}" + - "{{Game data/saves|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\411970\\remote\\}}" TY the Tasmanian Tiger 3: pageId: 87463 steam: 411980 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Ty the Tasmanian Tiger 3\}}' - - '{{Game data/saves|Windows|{{p|steam}}\userdata\{{p|uid}}\411980\remote\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Ty the Tasmanian Tiger 3\\}}" + - "{{Game data/saves|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\411980\\remote\\}}" TY the Tasmanian Tiger 4: pageId: 38107 steam: 287840 templates: - - '{{Game data/config|Microsoft Store|{{p|localappdata}}\Packages\Microsoft.TYtheTasmanianTiger_8wekyb3d8bbwe}}' - - '{{Game data/config|Windows|{{p|steam}}\userdata\{{p|uid}}\287840\remote\}}' - - '{{Game data/saves|Microsoft Store|{{p|localappdata}}\Packages\Microsoft.TYtheTasmanianTiger_8wekyb3d8bbwe}}' - - '{{Game data/saves|Windows|{{p|steam}}\userdata\{{p|uid}}\287840\remote\}}' + - "{{Game data/config|Microsoft Store|{{p|localappdata}}\\Packages\\Microsoft.TYtheTasmanianTiger_8wekyb3d8bbwe}}" + - "{{Game data/config|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\287840\\remote\\}}" + - "{{Game data/saves|Microsoft Store|{{p|localappdata}}\\Packages\\Microsoft.TYtheTasmanianTiger_8wekyb3d8bbwe}}" + - "{{Game data/saves|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\287840\\remote\\}}" Table Ball: pageId: 180397 steam: 2094090 templates: - - '{{Game data/saves|Windows|{{p|AppData}}/LocalLow/Lockyz Dev/Table Ball/}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Lockyz Dev/Table Ball/}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Lockyz Dev/Table Ball/}}' + - "{{Game data/saves|Windows|{{p|AppData}}/LocalLow/Lockyz Dev/Table Ball/}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Lockyz Dev/Table Ball/}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Lockyz Dev/Table Ball/}}" Table Football Pro: pageId: 62554 steam: 623900 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Ticklersoft\SpringFootball}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Ticklersoft\\SpringFootball}}" Table Games VR: pageId: 130305 steam: 1035430 @@ -161168,12 +156802,12 @@ Table Manners: Table Tennis VR: pageId: 42545 steam: 495060 -'Table Top Racing: World Tour': +"Table Top Racing: World Tour": pageId: 42912 steam: 450670 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Playrise Digital\Table Top Racing World Tour\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Playrise Digital\Table Top Racing World Tour\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Playrise Digital\\Table Top Racing World Tour\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Playrise Digital\\Table Top Racing World Tour\\}}" TableTop Cricket: pageId: 48599 steam: 349530 @@ -161193,10 +156827,8 @@ Tabletop Playground: pageId: 135779 steam: 838410 templates: - - '{{Game data/config|Windows|{{p|LOCALAPPDATA}}\TabletopPlayground\Saved\Config}}' - - >- - {{Game - data/saves|Windows|{{p|localappdata}}\TabletopPlayground\Saved\SavedStates\*.vts|{{p|localappdata}}\TabletopPlayground\Saved\StoredObjects\*.tpo}} + - "{{Game data/config|Windows|{{p|LOCALAPPDATA}}\\TabletopPlayground\\Saved\\Config}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\TabletopPlayground\\Saved\\SavedStates\\*.vts|{{p|localappdata}}\\TabletopPlayground\\Saved\\StoredObjects\\*.tpo}}" Tabletop Simulator: pageId: 32203 steam: 286160 @@ -161252,36 +156884,33 @@ Tabletop Simulator: - 610704 - 610705 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\My Games\Tabletop Simulator\Graphics.json}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Tabletop Simulator/}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.local/share/Tabletop Simulator/}}' - - >- - {{Game data/saves|Windows|{{P|userprofile\Documents}}\My Games\Tabletop - Simulator\Saves\|{{P|userprofile\Documents}}\My Games\Tabletop Simulator\Mods\|{{P|game}}\Tabletop - Simulator_Data\Mods}} - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Tabletop Simulator/}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.local/share/Tabletop Simulator/}}' + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\My Games\\Tabletop Simulator\\Graphics.json}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Tabletop Simulator/}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.local/share/Tabletop Simulator/}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\My Games\\Tabletop Simulator\\Saves\\|{{P|userprofile\\Documents}}\\My Games\\Tabletop Simulator\\Mods\\|{{P|game}}\\Tabletop Simulator_Data\\Mods}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Tabletop Simulator/}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.local/share/Tabletop Simulator/}}" Tabletopia: pageId: 43929 steam: 402560 -'Taboos: Cracks': +"Taboos: Cracks": pageId: 134490 steam: 1060670 templates: - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\DSGame\Taboos Cracks\*.sav}}' -'Taboos: Flower': + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\DSGame\\Taboos Cracks\\*.sav}}" +"Taboos: Flower": pageId: 155779 steam: 1082240 Tachyon Project: pageId: 47265 steam: 385860 -'Tachyon: The Fringe': +"Tachyon: The Fringe": gog: 1878529522 pageId: 26063 steam: 32760 templates: - - '{{Game data/config|Windows|{{p|game}}\Tachyon.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\player00.sav}}' + - "{{Game data/config|Windows|{{p|game}}\\Tachyon.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\player00.sav}}" Taco Gun: pageId: 93802 steam: 842990 @@ -161299,22 +156928,16 @@ Tacoma: pageId: 63624 steam: 343860 templates: - - >- - {{Game - data/config|Windows|{{p|userprofile}}\AppData\LocalLow\Fullbright\Tacoma\TacomaOptions.json|{{p|hkcu}}\Software\Fullbright\Tacoma\}} - - >- - {{Game - data/config|Linux|{{P|xdgconfighome}}/unity3d/Fullbright/Tacoma/prefs|{{P|xdgconfighome}}/unity3d/Fullbright/Tacoma/TacomaOptions.json}} - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Fullbright\Tacoma\}}' - - >- - {{Game data/saves|Microsoft - Store|{{p|userprofile}}\AppData\Local\Packages\Fullbright.Tacoma_rb9a42dn7yypw\SystemAppData\wgs}} - - '{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/Fullbright/Tacoma/TacomaSave*.json}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Fullbright\\Tacoma\\TacomaOptions.json|{{p|hkcu}}\\Software\\Fullbright\\Tacoma\\}}" + - "{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/Fullbright/Tacoma/prefs|{{P|xdgconfighome}}/unity3d/Fullbright/Tacoma/TacomaOptions.json}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Fullbright\\Tacoma\\}}" + - "{{Game data/saves|Microsoft Store|{{p|userprofile}}\\AppData\\Local\\Packages\\Fullbright.Tacoma_rb9a42dn7yypw\\SystemAppData\\wgs}}" + - "{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/Fullbright/Tacoma/TacomaSave*.json}}" Tacopocalypse: pageId: 44980 steam: 416530 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Tacopocalypse\Saved\Config\WindowsNoEditor\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Tacopocalypse\\Saved\\Config\\WindowsNoEditor\\}}" Tactera: pageId: 78471 steam: 696040 @@ -161351,7 +156974,7 @@ Tactical Intervention: pageId: 29802 steam: 51100 templates: - - '{{Game data/config|Steam|{{p|game}}\TacticalIntervention\tacint\cfg\}}' + - "{{Game data/config|Steam|{{p|game}}\\TacticalIntervention\\tacint\\cfg\\}}" Tactical Manager: pageId: 157909 Tactical Manager 2006: @@ -161368,15 +156991,15 @@ Tactical Nexus: Tactical Operations: pageId: 77071 steam: 744550 -'Tactical Ops: Assault on Terror': +"Tactical Ops: Assault on Terror": pageId: 172097 Tactical Soccer The New Season: pageId: 45533 steam: 400380 -'Tactics & Strategy Master:Princess of Holy Light': +"Tactics & Strategy Master:Princess of Holy Light": pageId: 121182 steam: 950370 -'Tactics 2: War': +"Tactics 2: War": pageId: 70329 steam: 707770 Tactics Forever: @@ -161385,21 +157008,19 @@ Tactics Forever: Tactics Maiden Remastered: pageId: 105145 steam: 835710 -'Tactics Ogre: Reborn': +"Tactics Ogre: Reborn": pageId: 180376 steam: 1451090 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Tactics Ogre Reborn\Steam\{{P|uid}}\config.ini}}' - - >- - {{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Tactics Ogre Reborn\Steam\{{p|uid}}\GAME-*.SAV | - {{p|userprofile\Documents}}\My Games\Tactics Ogre Reborn\Steam\{{P|uid}}\SYSTEM-00000000.SAV}} + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Tactics Ogre Reborn\\Steam\\{{P|uid}}\\config.ini}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Tactics Ogre Reborn\\Steam\\{{p|uid}}\\GAME-*.SAV | {{p|userprofile\\Documents}}\\My Games\\Tactics Ogre Reborn\\Steam\\{{P|uid}}\\SYSTEM-00000000.SAV}}" Tactics Rogue: pageId: 112492 steam: 934250 -'Tactics V: "Obsidian Brigade"': +"Tactics V: \"Obsidian Brigade\"": pageId: 139396 steam: 962150 -'Tactics: Bludgeons Blessing': +"Tactics: Bludgeons Blessing": pageId: 64984 steam: 517500 Tactikk: @@ -161412,19 +157033,19 @@ Tadpole Treble: pageId: 34775 steam: 354400 templates: - - '{{Game data/config|Windows|{{p|game}}/steam_api.dll}}' - - '{{Game data/saves|Windows|{{p|game}}/Tadpole Treble win_Data}}' + - "{{Game data/config|Windows|{{p|game}}/steam_api.dll}}" + - "{{Game data/saves|Windows|{{p|game}}/Tadpole Treble win_Data}}" Taekwondo Grand Prix: pageId: 112952 steam: 462590 Tag Team Wrestling: pageId: 176416 -'Tag: The Power of Paint': +"Tag: The Power of Paint": pageId: 159249 steam: 1808400 templates: - - '{{Game data/config|Windows|{{P|game}}\Game Data\TAG.ini}}' -'Tahira: Echoes of the Astral Empire': + - "{{Game data/config|Windows|{{P|game}}\\Game Data\\TAG.ini}}" +"Tahira: Echoes of the Astral Empire": gog: 1852379375 pageId: 36359 steam: 396660 @@ -161435,8 +157056,8 @@ Taiji: pageId: 157428 steam: 1141580 templates: - - '{{Game data/config|Windows|{{p|userprofile\appdata\locallow}}\Matthew VanDevander\Taiji\config.cfg}}' - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\Matthew VanDevander\Taiji\saves}}' + - "{{Game data/config|Windows|{{p|userprofile\\appdata\\locallow}}\\Matthew VanDevander\\Taiji\\config.cfg}}" + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\Matthew VanDevander\\Taiji\\saves}}" Taiker: pageId: 41633 steam: 511010 @@ -161456,21 +157077,15 @@ Taiko Risshiden V: Taiko Risshiden V DX: pageId: 191233 steam: 1842810 -'Taiko no Tatsujin: Pop Tap Beat': +"Taiko no Tatsujin: Pop Tap Beat": pageId: 167740 templates: - - >- - {{Game data/config|OS X|{{p|osxhome}}/Library/Containers/jp.co.bandainamcoent.BNEI0361/Data/Library/Application - Support}} - - >- - {{Game data/saves|OS X|{{p|osxhome}}/Library/Containers/jp.co.bandainamcoent.BNEI0361/Data/Library/Application - Support}} -'Taiko no Tatsujin: The Drum Master!': + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Containers/jp.co.bandainamcoent.BNEI0361/Data/Library/Application Support}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Containers/jp.co.bandainamcoent.BNEI0361/Data/Library/Application Support}}" +"Taiko no Tatsujin: The Drum Master!": pageId: 174731 templates: - - >- - {{Game data/saves|Microsoft - Store|{{P|localappdata}}\Packages\NAMCOBANDAIGamesInc.TTablet_gdy2aq6ez762w\SystemAppData}} + - "{{Game data/saves|Microsoft Store|{{P|localappdata}}\\Packages\\NAMCOBANDAIGamesInc.TTablet_gdy2aq6ez762w\\SystemAppData}}" TaikoVR: pageId: 132733 steam: 1028540 @@ -161486,14 +157101,14 @@ TailQuest Defense: - 2109347088 pageId: 94090 renamedFrom: - - 'RivenTails: Defense' + - "RivenTails: Defense" steam: 824090 Tailor Tales: pageId: 122584 steam: 939330 templates: - - '{{Game data/config|Windows|{{P|game}}\Tailor Tales\www\save\config.rpgsave}}' - - '{{Game data/saves|Windows|{{P|game}}\Tailor Tales\www\save\file*.rpgsave}}' + - "{{Game data/config|Windows|{{P|game}}\\Tailor Tales\\www\\save\\config.rpgsave}}" + - "{{Game data/saves|Windows|{{P|game}}\\Tailor Tales\\www\\save\\file*.rpgsave}}" Tails: pageId: 41759 steam: 500880 @@ -161508,24 +157123,22 @@ Tails Noir: steamSide: - 992310 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Detective\Saved\Config\WindowsNoEditor\}}' - - >- - {{Game data/config|Microsoft - Store|{{p|localappdata}}\Packages\RawFury.Backbone_9s0pnehqffj7t\LocalCache\Local\Detective\Saved\Config\WinGDK\}} - - '{{Game data/saves|Windows|{{p|LOCALAPPDATA}}\Detective\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Detective\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/config|Microsoft Store|{{p|localappdata}}\\Packages\\RawFury.Backbone_9s0pnehqffj7t\\LocalCache\\Local\\Detective\\Saved\\Config\\WinGDK\\}}" + - "{{Game data/saves|Windows|{{p|LOCALAPPDATA}}\\Detective\\Saved\\SaveGames\\}}" Tails of Iron: pageId: 171603 steam: 1283410 -'Tails: The Backbone Preludes': +"Tails: The Backbone Preludes": pageId: 182294 steam: 2020030 templates: - - '{{Game data/config|Windows|{{p|localappdata}}/BackboneStories/Saved/}}' - - '{{Game data/saves|Windows|{{p|localappdata}}/BackboneStories/Saved/SaveGames}}' + - "{{Game data/config|Windows|{{p|localappdata}}/BackboneStories/Saved/}}" + - "{{Game data/saves|Windows|{{p|localappdata}}/BackboneStories/Saved/SaveGames}}" Tailwind: pageId: 65688 steam: 674800 -'Tailypo: The Game': +"Tailypo: The Game": pageId: 141507 steam: 1123410 TailzFromTheGrave: @@ -161535,40 +157148,40 @@ Taima Miko Yuugi: pageId: 72355 steam: 719430 templates: - - '{{Game data/saves|Windows|{{p|game}}\*.rvdata*}}' -'Taimanin Asagi 1: Trial': + - "{{Game data/saves|Windows|{{p|game}}\\*.rvdata*}}" +"Taimanin Asagi 1: Trial": pageId: 153354 steam: 1152100 -'Taimanin Collection: Battle Arena': +"Taimanin Collection: Battle Arena": pageId: 179072 steam: 1330250 Taimanin Kurenai: pageId: 164945 -'Taimanin Yukikaze 1: Trial': +"Taimanin Yukikaze 1: Trial": pageId: 155929 steam: 1205560 Taimumari: pageId: 45260 steam: 375520 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Time}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Time}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Time}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Time}}" Tainted Fate: pageId: 94611 steam: 858250 -'Tainted Grail: Conquest': +"Tainted Grail: Conquest": gog: 1257094744 pageId: 157140 renamedFrom: - Tainted Grail steam: 1199030 -'Tainted Grail: The Fall of Avalon': +"Tainted Grail: The Fall of Avalon": gog: 1887281589 pageId: 168648 steam: 1466060 templates: - - '{{Game data/config|Windows|{{P|userprofile}}\AppData\LocalLow\Questline\Fall of Avalon}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Questline\Fall of Avalon}}' + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Questline\\Fall of Avalon}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Questline\\Fall of Avalon}}" Taisho x Alice episode 1: pageId: 152901 renamedFrom: @@ -161577,11 +157190,11 @@ Taisho x Alice episode 1: Taito Legends: pageId: 111502 templates: - - '{{Game data/saves|Windows|{{p|appdata}}\Taito Legends\autosave\savedata}}' + - "{{Game data/saves|Windows|{{p|appdata}}\\Taito Legends\\autosave\\savedata}}" Taito Legends 2: pageId: 111494 templates: - - '{{Game data/saves|Windows|{{p|appdata}}\Taito Legends 2\autosave\savedata}}' + - "{{Game data/saves|Windows|{{p|appdata}}\\Taito Legends 2\\autosave\\savedata}}" Take Care of the Paperwork: pageId: 98736 steam: 882290 @@ -161589,15 +157202,15 @@ Take Command - 2nd Manassas: pageId: 52103 steam: 392330 templates: - - '{{Game data/config|Windows|{{p|game}}}}' - - '{{Game data/saves|Windows|{{p|game}}\Saved Games}}' + - "{{Game data/config|Windows|{{p|game}}}}" + - "{{Game data/saves|Windows|{{p|game}}\\Saved Games}}" Take No Prisoners: gog: 1191470805 pageId: 173296 steam: 2464670 templates: - - '{{Game data/config|Windows|{{p|game}}\userdef.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\[0-9]\*}}' + - "{{Game data/config|Windows|{{p|game}}\\userdef.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\[0-9]\\*}}" Take Off - The Flight Simulator: pageId: 69064 steam: 657470 @@ -161605,14 +157218,14 @@ Take On Helicopters: pageId: 3743 steam: 65730 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Take On Helicopters\TakeOnH.cfg}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Take On Helicopters\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Take On Helicopters\\TakeOnH.cfg}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Take On Helicopters\\}}" Take On Mars: pageId: 8970 steam: 244030 templates: - - '{{Game data/config|Windows|{{p|steam}}\userdata\{{p|uid}}\244030\local}}' - - '{{Game data/saves|Windows|{{p|steam}}\userdata\{{p|uid}}\244030\local\{{p|uid}}}}' + - "{{Game data/config|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\244030\\local}}" + - "{{Game data/saves|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\244030\\local\\{{p|uid}}}}" Take That: pageId: 108820 steam: 771530 @@ -161627,21 +157240,21 @@ Take the Dream IX: steam: 428870 Takeda: pageId: 177301 -'Takedown: Red Sabre': +"Takedown: Red Sabre": pageId: 10231 steam: 236510 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\UnrealEngine3\TakedownGame\Config\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\UnrealEngine3\\TakedownGame\\Config\\}}" Takelings House Party: pageId: 95519 steam: 868150 Taken: pageId: 47371 steam: 359160 -'Taken Souls: Blood Ritual': +"Taken Souls: Blood Ritual": pageId: 57409 renamedFrom: - - 'Taken Souls: Blood Ritual Collector''s Edition' + - "Taken Souls: Blood Ritual Collector's Edition" steam: 586930 Takenoko: pageId: 152941 @@ -161654,7 +157267,7 @@ Takeshi and Hiroshi: Taking Valhalla VR: pageId: 74443 steam: 693400 -'Takkyu Tournament Re:Serve': +"Takkyu Tournament Re:Serve": pageId: 152787 steam: 1185580 Tale Of Starship: @@ -161663,7 +157276,7 @@ Tale Of Starship: Tale of Alamar: pageId: 87165 steam: 746270 -'Tale of Enki: Pilgrimage': +"Tale of Enki: Pilgrimage": pageId: 81790 steam: 684590 Tale of Fallen Dragons: @@ -161690,7 +157303,7 @@ Tale of Ronin: Tale of Swords: pageId: 126325 steam: 992260 -'Tale of Swords: Mystery Scroll': +"Tale of Swords: Mystery Scroll": pageId: 81020 steam: 783810 Tale of Toast: @@ -161699,10 +157312,10 @@ Tale of Toast: Tale of Wuxia: pageId: 43340 steam: 377530 -'Tale of Wuxia: The Pre-Sequel': +"Tale of Wuxia: The Pre-Sequel": pageId: 67841 steam: 650760 -'Tale of the Fragmented Star: Single Fragment Version / 星の欠片の物語、ひとかけら版': +"Tale of the Fragmented Star: Single Fragment Version / 星の欠片の物語、ひとかけら版": pageId: 122091 steam: 930850 Tale of the Gallant Jiraiya: @@ -161718,71 +157331,71 @@ Tales: pageId: 52113 steam: 416250 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\Saved Games\Tales STEAM\acsetup.cfg}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\Saved Games\Tales STEAM\agssave.*}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\Saved Games\\Tales STEAM\\acsetup.cfg}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Saved Games\\Tales STEAM\\agssave.*}}" Tales Across Time: pageId: 43550 steam: 461710 Tales From Galaxy 34: pageId: 124470 steam: 989150 -'Tales From The Dragon Mountain: The Strix': +"Tales From The Dragon Mountain: The Strix": pageId: 50640 renamedFrom: - - 'Tales From The Dragon Mountain: The Strix' - - 'Tales from the Dragon Mountain: The Strix' + - "Tales From The Dragon Mountain: The Strix" + - "Tales from the Dragon Mountain: The Strix" steam: 277540 templates: - - '{{Game data/config|Windows|{{p|ProgramData}}\Cateia Games\The Strix\{{p|uid}}\cage.cfg}}' - - '{{Game data/saves|Windows|{{p|ProgramData}}\Cateia Games\The Strix\{{p|uid}}\}}' + - "{{Game data/config|Windows|{{p|ProgramData}}\\Cateia Games\\The Strix\\{{p|uid}}\\cage.cfg}}" + - "{{Game data/saves|Windows|{{p|ProgramData}}\\Cateia Games\\The Strix\\{{p|uid}}\\}}" Tales From Windy Meadow: pageId: 122498 steam: 875660 Tales Runner: pageId: 48673 steam: 328060 -'Tales from Candlekeep: Tomb of Annihilation': +"Tales from Candlekeep: Tomb of Annihilation": pageId: 69733 steam: 663380 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Bkom Studios\TalesCandlekeep\}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Bkom Studios\TalesCandlekeep\Save}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Bkom Studios\\TalesCandlekeep\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Bkom Studios\\TalesCandlekeep\\Save}}" Tales from Off-Peak City Vol. 1: pageId: 151335 steam: 1129920 -'Tales from Space: Mutant Blobs Attack': +"Tales from Space: Mutant Blobs Attack": gog: 1207659523 pageId: 13264 steam: 206370 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\Mutant Blobs Attack\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Documents/Drinkbox Studios/Mutant Blobs Attack/}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/Drinkbox Studios/Mutant Blobs Attack/}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\Mutant Blobs Attack\}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/Drinkbox Studios/Mutant Blobs Attack/}}' - - '{{Game data/saves|Steam|{{P|Steam}}/userdata/{{P|uid}}/206370/remote/}}' + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\Mutant Blobs Attack\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Documents/Drinkbox Studios/Mutant Blobs Attack/}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/Drinkbox Studios/Mutant Blobs Attack/}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\Mutant Blobs Attack\\}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/Drinkbox Studios/Mutant Blobs Attack/}}" + - "{{Game data/saves|Steam|{{P|Steam}}/userdata/{{P|uid}}/206370/remote/}}" Tales from the Borderlands: gog: 1432213337 pageId: 21059 steam: 330830 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\Telltale Games\Tales from the Borderlands\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Telltale Games/Tales from the Borderlands/}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\Telltale Games\Tales from the Borderlands\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Telltale Games/Tales from the Borderlands/}}' -'Tales from the Dragon Mountain 2: The Lair': + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\Telltale Games\\Tales from the Borderlands\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Telltale Games/Tales from the Borderlands/}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\Telltale Games\\Tales from the Borderlands\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Telltale Games/Tales from the Borderlands/}}" +"Tales from the Dragon Mountain 2: The Lair": pageId: 50577 renamedFrom: - - 'Tales From The Dragon Mountain 2: The Lair' + - "Tales From The Dragon Mountain 2: The Lair" steam: 276460 -'Tales from the Dragon Mountain: The Strix': +"Tales from the Dragon Mountain: The Strix": pageId: 182473 renamedFrom: - Withering Rooms steam: 277540 templates: - - '{{Game data/config|Windows|{{p|ProgramData}}\Cateia Games\The Strix\{{p|uid}}\cage.cfg}}' - - '{{Game data/saves|Windows|{{p|ProgramData}}\Cateia Games\The Strix\{{p|uid}}\}}' + - "{{Game data/config|Windows|{{p|ProgramData}}\\Cateia Games\\The Strix\\{{p|uid}}\\cage.cfg}}" + - "{{Game data/saves|Windows|{{p|ProgramData}}\\Cateia Games\\The Strix\\{{p|uid}}\\}}" Tales from the Void: pageId: 42958 steam: 419590 @@ -161792,15 +157405,15 @@ Tales of Adventure 2: Tales of Ancient Nights: pageId: 126076 steam: 1010380 -'Tales of Aravorn: Seasons of the Wolf': +"Tales of Aravorn: Seasons of the Wolf": pageId: 48951 steam: 333390 Tales of Arise: pageId: 139811 steam: 740130 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\BANDAI NAMCO Entertainment\Tales of Arise\Config\WindowsNoEditor}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\BANDAI NAMCO Entertainment\Tales of Arise\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\BANDAI NAMCO Entertainment\\Tales of Arise\\Config\\WindowsNoEditor}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\BANDAI NAMCO Entertainment\\Tales of Arise\\Saved\\SaveGames\\}}" Tales of Beasteria: pageId: 153683 steam: 1203030 @@ -161808,8 +157421,8 @@ Tales of Berseria: pageId: 54675 steam: 429660 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\BANDAI NAMCO Entertainment\Tales of Berseria\}}' - - '{{Game data/saves|Windows|{{p|steam}}\userdata\{{p|uid}}\429660\remote\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\BANDAI NAMCO Entertainment\\Tales of Berseria\\}}" + - "{{Game data/saves|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\429660\\remote\\}}" Tales of Blood and Sand: pageId: 71692 steam: 675650 @@ -161832,7 +157445,7 @@ Tales of Hongyuan: pageId: 66239 steam: 678560 templates: - - '{{Game data/config|Windows|{{p|game}}\HYZJ_Data\Config\GameSetting.ini}}' + - "{{Game data/config|Windows|{{p|game}}\\HYZJ_Data\\Config\\GameSetting.ini}}" Tales of Inca - Lost Land: pageId: 89312 steam: 717320 @@ -161845,17 +157458,17 @@ Tales of Legends: Tales of Mahabharata: pageId: 102711 steam: 867920 -Tales of Maj'Eyal: +"Tales of Maj'Eyal": gog: 1207666523 pageId: 20913 steam: 259680 templates: - - '{{Game data/config|Windows|{{P|userprofile}}\T-Engine\4.0\tome\settings\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/T-Engine/4.0/tome/settings/}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.t-engine/4.0/tome/settings/}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\T-Engine\4.0\tome\save\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/T-Engine/4.0/tome/save/}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.t-engine/4.0/tome/save/}}' + - "{{Game data/config|Windows|{{P|userprofile}}\\T-Engine\\4.0\\tome\\settings\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/T-Engine/4.0/tome/settings/}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.t-engine/4.0/tome/settings/}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\T-Engine\\4.0\\tome\\save\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/T-Engine/4.0/tome/save/}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.t-engine/4.0/tome/save/}}" Tales of Memo: pageId: 148387 Tales of Monkey Island: @@ -161868,73 +157481,52 @@ Tales of Monkey Island: - 31200 - 31210 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\Telltale Games\Tales of Monkey Island - Chapter - \prefs.prop}} - - >- - {{Game data/config|Steam|{{p|userprofile\Documents}}\Telltale Games\Launch of the Screaming - Narwhal\prefs.prop|{{p|userprofile\Documents}}\Telltale Games\The Siege of Spinner - Cay\prefs.prop|{{p|userprofile\Documents}}\Telltale Games\Lair of the - Leviathan\prefs.prop|{{p|userprofile\Documents}}\Telltale Games\The Trial and Execution of Guybrush - Threepwood\prefs.prop|{{p|userprofile\Documents}}\Telltale Games\Rise of the Pirate God\prefs.prop}} - - '{{Game data/config|OS X|{{P|osxhome}}/Library/Application Support/Telltale Games/}}' - - >- - {{Game data/saves|Windows|{{p|userprofile\Documents}}\Telltale Games\Tales of Monkey Island - Chapter - \*.save}} - - >- - {{Game data/saves|Steam|{{p|userprofile\Documents}}\Telltale Games\Launch of the Screaming - Narwhal\*.save|{{p|userprofile\Documents}}\Telltale Games\The Siege of Spinner - Cay\*.save|{{p|userprofile\Documents}}\Telltale Games\Lair of the - Leviathan\*.save|{{p|userprofile\Documents}}\Telltale Games\The Trial and Execution of Guybrush - Threepwood\*.save|{{p|userprofile\Documents}}\Telltale Games\Rise of the Pirate God\*.save}} - - '{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/Telltale Games/}}' -'Tales of Nebezem: Elemental Link': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Telltale Games\\Tales of Monkey Island - Chapter \\prefs.prop}}" + - "{{Game data/config|Steam|{{p|userprofile\\Documents}}\\Telltale Games\\Launch of the Screaming Narwhal\\prefs.prop|{{p|userprofile\\Documents}}\\Telltale Games\\The Siege of Spinner Cay\\prefs.prop|{{p|userprofile\\Documents}}\\Telltale Games\\Lair of the Leviathan\\prefs.prop|{{p|userprofile\\Documents}}\\Telltale Games\\The Trial and Execution of Guybrush Threepwood\\prefs.prop|{{p|userprofile\\Documents}}\\Telltale Games\\Rise of the Pirate God\\prefs.prop}}" + - "{{Game data/config|OS X|{{P|osxhome}}/Library/Application Support/Telltale Games/}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Telltale Games\\Tales of Monkey Island - Chapter \\*.save}}" + - "{{Game data/saves|Steam|{{p|userprofile\\Documents}}\\Telltale Games\\Launch of the Screaming Narwhal\\*.save|{{p|userprofile\\Documents}}\\Telltale Games\\The Siege of Spinner Cay\\*.save|{{p|userprofile\\Documents}}\\Telltale Games\\Lair of the Leviathan\\*.save|{{p|userprofile\\Documents}}\\Telltale Games\\The Trial and Execution of Guybrush Threepwood\\*.save|{{p|userprofile\\Documents}}\\Telltale Games\\Rise of the Pirate God\\*.save}}" + - "{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/Telltale Games/}}" +"Tales of Nebezem: Elemental Link": pageId: 82756 steam: 788410 -'Tales of Nebezem: Red Peril': +"Tales of Nebezem: Red Peril": pageId: 129920 steam: 1034560 Tales of Symphonia: pageId: 26041 steam: 372360 templates: - - '{{Game data/config|Windows|{{p|game}}\*.conf}}' - - '{{Game data/saves|Windows|{{p|steam}}\userdata\{{p|uid}}\372360\remote\}}' -'Tales of Terror: Crimson Dawn': + - "{{Game data/config|Windows|{{p|game}}\\*.conf}}" + - "{{Game data/saves|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\372360\\remote\\}}" +"Tales of Terror: Crimson Dawn": pageId: 58356 steam: 596270 -'Tales of Terror: House on the Hill': +"Tales of Terror: House on the Hill": pageId: 73829 renamedFrom: - - 'Tales of Terror: House on the Hill Collector''s Edition' + - "Tales of Terror: House on the Hill Collector's Edition" steam: 729930 -'Tales of Tomorrow: Experiment': +"Tales of Tomorrow: Experiment": pageId: 157213 steam: 1189730 -'Tales of Vesperia: Definitive Edition': +"Tales of Vesperia: Definitive Edition": pageId: 110924 steam: 738540 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\BANDAI NAMCO Entertainment\Tales of Vesperia\}}' - - >- - {{Game data/config|Microsoft - Store|{{p|localappdata}}\Packages\NAMCOBANDAIGamesInc.TalesofVesperiaPCBaseGame_gdy2aq6ez762w\LocalCache\Local\BANDAI - NAMCO Entertainment\Tales of Vesperia}} - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\738540\remote\}}' - - >- - {{Game data/saves|Microsoft - Store|{{p|localappdata}}\Packages\NAMCOBANDAIGamesInc.TalesofVesperiaPCBaseGame_gdy2aq6ez762w\SystemAppData\wgs\ - - }} -'Tales of Winds: Tomb of the Sol Empire': + - "{{Game data/config|Windows|{{p|localappdata}}\\BANDAI NAMCO Entertainment\\Tales of Vesperia\\}}" + - "{{Game data/config|Microsoft Store|{{p|localappdata}}\\Packages\\NAMCOBANDAIGamesInc.TalesofVesperiaPCBaseGame_gdy2aq6ez762w\\LocalCache\\Local\\BANDAI NAMCO Entertainment\\Tales of Vesperia}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\738540\\remote\\}}" + - "{{Game data/saves|Microsoft Store|{{p|localappdata}}\\Packages\\NAMCOBANDAIGamesInc.TalesofVesperiaPCBaseGame_gdy2aq6ez762w\\SystemAppData\\wgs\\\n}}" +"Tales of Winds: Tomb of the Sol Empire": pageId: 73959 steam: 733610 Tales of Zestiria: pageId: 26043 steam: 351970 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\BANDAI NAMCO Games\Tales of Zestiria\}}' - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\351970\remote\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\BANDAI NAMCO Games\\Tales of Zestiria\\}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\351970\\remote\\}}" Tales of a Spymaster: pageId: 126346 steam: 530110 @@ -161945,7 +157537,7 @@ Tales of the Black Forest: pageId: 139404 steam: 1093910 templates: - - '{{Game data/saves|Windows|{{p|game}}\www\save\*.*}}' + - "{{Game data/saves|Windows|{{p|game}}\\www\\save\\*.*}}" Tales of the Deck: pageId: 156682 steam: 1190760 @@ -161960,14 +157552,14 @@ Tales of the Neon Sea: pageId: 92379 steam: 828740 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\SOFTWARE\palmpioneer\TalesoftheNeonSea\}}' - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\palmpioneer\TalesoftheNeonSea\TalesoftheNeonSea.sav}}' -'Tales of the Orient: The Rising Sun': + - "{{Game data/config|Windows|{{P|hkcu}}\\SOFTWARE\\palmpioneer\\TalesoftheNeonSea\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\palmpioneer\\TalesoftheNeonSea\\TalesoftheNeonSea.sav}}" +"Tales of the Orient: The Rising Sun": pageId: 48561 steam: 339160 templates: - - '{{Game data/saves|Windows|{{P|appdata}}/Green Sauce Games/Tales of the Orient - The Rising Sun/}}' - - '{{Game data/saves|Linux|{{P|xdgconfighome}}/Green Sauce Games/Tales of the Orient - The Rising Sun/}}' + - "{{Game data/saves|Windows|{{P|appdata}}/Green Sauce Games/Tales of the Orient - The Rising Sun/}}" + - "{{Game data/saves|Linux|{{P|xdgconfighome}}/Green Sauce Games/Tales of the Orient - The Rising Sun/}}" Tales of the Tiny Planet: pageId: 64544 steam: 616040 @@ -161982,26 +157574,26 @@ Talesshop puzzle 테일즈샵 퍼즐: Talewind: pageId: 41521 steam: 441250 -Talif's Journey: +"Talif's Journey": pageId: 151189 steam: 1145400 -'Talisman: Digital Edition': +"Talisman: Digital Edition": gog: 1557744677 pageId: 24067 steam: 247000 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Nomad Games\Talisman}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Nomad Games\Talisman}}' -'Talisman: Origins': + - "{{Game data/config|Windows|{{p|appdata}}\\Nomad Games\\Talisman}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Nomad Games\\Talisman}}" +"Talisman: Origins": gog: 1189260311 pageId: 135256 steam: 1033170 templates: - - '{{Game data/saves|Windows|{{P|appdata}}\Nomad Games\TalismanOrigins\saved_game\{{P|uid}}_progress\savestatus.xml}}' -'Talisman: Prologue': + - "{{Game data/saves|Windows|{{P|appdata}}\\Nomad Games\\TalismanOrigins\\saved_game\\{{P|uid}}_progress\\savestatus.xml}}" +"Talisman: Prologue": pageId: 40577 steam: 258200 -'Talisman: The Horus Heresy': +"Talisman: The Horus Heresy": pageId: 44497 steam: 358460 Talismania: @@ -162028,7 +157620,7 @@ Tally Ho: Talos VR: pageId: 95335 steam: 862500 -'Talsaluq: Tower of Infinity': +"Talsaluq: Tower of Infinity": pageId: 77267 steam: 756210 Talshard: @@ -162041,31 +157633,31 @@ Tamashii: pageId: 128439 steam: 1026400 templates: - - '{{Game data/saves|Windows|{{P|localappdata}}\TAMASHII\savedata.sav}}' + - "{{Game data/saves|Windows|{{P|localappdata}}\\TAMASHII\\savedata.sav}}" Tametsi: pageId: 72931 steam: 709920 -'Tandem: A Tale of Shadows': +"Tandem: A Tale of Shadows": gog: 1883930697 pageId: 169529 steam: 1436920 steamSide: - 1630320 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Shadows\Saved\Config\WindowsNoEditor\GameUserSettings.ini}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Shadows\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Shadows\\Saved\\Config\\WindowsNoEditor\\GameUserSettings.ini}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Shadows\\Saved\\SaveGames\\}}" Tangle Tower: gog: 1136365627 pageId: 147733 steam: 359510 templates: - - '{{Game data/saves|Windows|{{p|game}}\Saves\*.sav}}' + - "{{Game data/saves|Windows|{{p|game}}\\Saves\\*.sav}}" Tangled: pageId: 49558 steam: 318950 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Disney Interactive Studios\Tangled\savedata}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Disney Interactive Studios\Tangled\savedata}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Disney Interactive Studios\\Tangled\\savedata}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Disney Interactive Studios\\Tangled\\savedata}}" Tangled Up!: pageId: 38653 steam: 502380 @@ -162074,27 +157666,25 @@ Tangledeep: pageId: 64040 steam: 628770 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\ImpactGameworks\Tangledeep\preferences.xml}}' - - '{{Game data/config|Linux|{{p|xdgconfighome}}/unity3d/ImpactGameworks/Tangledeep/}}' - - >- - {{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\ImpactGameworks\Tangledeep\*.dat | - {{p|userprofile}}\AppData\LocalLow\ImpactGameworks\Tangledeep\*.xml}} - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/unity.ImpactGameworks.Tangledeep}}' - - '{{Game data/saves|Linux|{{p|xdgconfighome}}/unity3d/ImpactGameworks/Tangledeep/}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\ImpactGameworks\\Tangledeep\\preferences.xml}}" + - "{{Game data/config|Linux|{{p|xdgconfighome}}/unity3d/ImpactGameworks/Tangledeep/}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\ImpactGameworks\\Tangledeep\\*.dat | {{p|userprofile}}\\AppData\\LocalLow\\ImpactGameworks\\Tangledeep\\*.xml}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/unity.ImpactGameworks.Tangledeep}}" + - "{{Game data/saves|Linux|{{p|xdgconfighome}}/unity3d/ImpactGameworks/Tangledeep/}}" Tanglewood: gog: 1754618537 pageId: 100398 steam: 837190 templates: - - '{{Game data/config|Windows|{{p|appdata}}\tanglewood\}}' - - '{{Game data/saves|Windows|{{p|appdata}}\tanglewood\}}' -'Tango 5 Reloaded: Grid Action Heroes': + - "{{Game data/config|Windows|{{p|appdata}}\\tanglewood\\}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\tanglewood\\}}" +"Tango 5 Reloaded: Grid Action Heroes": pageId: 103165 steam: 861810 Tango Fiesta: pageId: 17726 steam: 276730 -'Tango: The Adventure Game': +"Tango: The Adventure Game": pageId: 105059 steam: 888010 Tangrams Deluxe: @@ -162106,7 +157696,7 @@ TangramsVR: TaniNani: pageId: 156342 steam: 1196800 -'Tanita: A Plasticine Dream': +"Tanita: A Plasticine Dream": pageId: 46961 steam: 372560 Tank 51: @@ -162124,25 +157714,25 @@ Tank Battle Heroes: Tank Battle Mania: pageId: 64568 steam: 661090 -'Tank Battle: 1944': +"Tank Battle: 1944": pageId: 44367 steam: 396320 -'Tank Battle: 1945': +"Tank Battle: 1945": pageId: 57976 steam: 540250 -'Tank Battle: Blitzkrieg': +"Tank Battle: Blitzkrieg": pageId: 54489 steam: 540150 -'Tank Battle: East Front': +"Tank Battle: East Front": pageId: 59826 steam: 613120 -'Tank Battle: Normandy': +"Tank Battle: Normandy": pageId: 63296 steam: 374940 -'Tank Battle: North Africa': +"Tank Battle: North Africa": pageId: 42404 steam: 465750 -'Tank Battle: Pacific': +"Tank Battle: Pacific": pageId: 65112 steam: 665310 Tank Blast: @@ -162191,25 +157781,21 @@ Tank Mechanic Simulator: pageId: 64921 steam: 407130 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\DeGenerals\TankMechanicSimulator}}' - - '{{Game data/saves|Windows|{{p|hkcu}}\Software\DeGenerals\TankMechanicSimulator}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\DeGenerals\\TankMechanicSimulator}}" + - "{{Game data/saves|Windows|{{p|hkcu}}\\Software\\DeGenerals\\TankMechanicSimulator}}" Tank Nova: pageId: 139129 steam: 1098360 Tank On Tank Digital - West Front: pageId: 62195 steam: 613860 -'Tank Operations: European Campaign': +"Tank Operations: European Campaign": pageId: 12864 steam: 258240 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\Linked Dimensions\Tank Operations - European - Campaign\settings.tec}} - - >- - {{Game data/saves|Windows|{{p|userprofile\Documents}}\Linked Dimensions\Tank Operations - European - Campaign\saves\}} -'Tank Operations: European Campaign REMASTERED': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Linked Dimensions\\Tank Operations - European Campaign\\settings.tec}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Linked Dimensions\\Tank Operations - European Campaign\\saves\\}}" +"Tank Operations: European Campaign REMASTERED": pageId: 108996 steam: 844860 Tank Royale: @@ -162233,7 +157819,7 @@ Tank Universal: Tank Universal 2: pageId: 51418 steam: 523030 -'Tank Warfare: Tunisia 1943': +"Tank Warfare: Tunisia 1943": gog: 2000269982 gogSide: - 1376594118 @@ -162246,7 +157832,7 @@ Tank Universal 2: - 616370 - 742790 - 956070 -'Tank Wars: Anniversary Edition': +"Tank Wars: Anniversary Edition": pageId: 76231 steam: 697950 Tank Warz!: @@ -162264,7 +157850,7 @@ Tank raid: Tank survival game: pageId: 121309 steam: 946690 -'Tank: M1A1 Abrams Battle Simulation': +"Tank: M1A1 Abrams Battle Simulation": pageId: 45635 steam: 410550 TankBlitz: @@ -162335,10 +157921,10 @@ Tanks VR: Tanks VS Demons: pageId: 135415 steam: 1073690 -'Tanks With Hands: Armed and Treaded': +"Tanks With Hands: Armed and Treaded": pageId: 110026 steam: 920580 -'Tanks and Guns : Battle Supreme': +"Tanks and Guns : Battle Supreme": pageId: 141888 steam: 1023180 Tanks on the Eastern Front: @@ -162357,10 +157943,10 @@ Tannenberg: pageId: 62753 steam: 633460 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\WW1 Game Series\WW1 Game Series\}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/WW1 Game Series/WW1 Game Series/}}' - - '{{Game data/saves|Steam|{{P|steam}}\userdata\{{P|uid}}\633460\remote\}}' -Tano's Fate: + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\WW1 Game Series\\WW1 Game Series\\}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/WW1 Game Series/WW1 Game Series/}}" + - "{{Game data/saves|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\633460\\remote\\}}" +"Tano's Fate": pageId: 98926 steam: 888910 Tanzia: @@ -162369,24 +157955,24 @@ Tanzia: Tap & Clapp: pageId: 99316 steam: 770740 -'Tap Adventure: Time Travel': +"Tap Adventure: Time Travel": pageId: 58783 steam: 596650 -'Tap Cats: Battle Arena': +"Tap Cats: Battle Arena": pageId: 125462 steam: 864920 Tap Heroes: pageId: 47615 steam: 371570 templates: - - '{{Game data/config|Windows|{{p|appdata}}\MMFApplications\x1nntp.ini}}' - - '{{Game data/saves|Windows|{{p|appdata}}\MMFApplications\x1nntp.ini}}' + - "{{Game data/config|Windows|{{p|appdata}}\\MMFApplications\\x1nntp.ini}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\MMFApplications\\x1nntp.ini}}" Tap Tap Infinity: pageId: 47231 steam: 380360 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\SOFTWARE\ScaryBee\Tap Tap Infinity}}' - - '{{Game data/saves|Windows|{{p|hkcu}}\SOFTWARE\ScaryBee\Tap Tap Infinity}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\ScaryBee\\Tap Tap Infinity}}" + - "{{Game data/saves|Windows|{{p|hkcu}}\\SOFTWARE\\ScaryBee\\Tap Tap Infinity}}" Tap Tap Legions - Epic battles within 5 seconds!: pageId: 44681 steam: 440740 @@ -162405,7 +157991,7 @@ TapSonic World Champion VR: Tape to Tape: pageId: 177882 steam: 1566200 -'Taphouse 2: The Taphousening': +"Taphouse 2: The Taphousening": pageId: 135768 steam: 1008900 Taphouse VR: @@ -162426,15 +158012,13 @@ Tardy: pageId: 88656 steam: 815000 templates: - - >- - {{Game data/config|Windows|{{P|userprofile}}\AppData\LocalLow\Tardy - Team\Tardy\Config.cnfg|{{P|hkcu}}\Software\Tardy Team\Tardy\}} - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Tardy Team\Tardy\Saves\}}' + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Tardy Team\\Tardy\\Config.cnfg|{{P|hkcu}}\\Software\\Tardy Team\\Tardy\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Tardy Team\\Tardy\\Saves\\}}" Target (1998): pageId: 185821 templates: - - '{{Game data/config|Windows|{{p|game}}\chr}}' - - '{{Game data/saves|Windows|{{p|game}}\chr}}' + - "{{Game data/config|Windows|{{p|game}}\\chr}}" + - "{{Game data/saves|Windows|{{p|game}}\\chr}}" Target (2018): pageId: 87095 renamedFrom: @@ -162443,25 +158027,17 @@ Target (2018): Target Speed: pageId: 80314 steam: 755230 -'Target of Desire: Episode 1': +"Target of Desire: Episode 1": pageId: 97469 templates: - - >- - {{Game - data/config|Windows|{{p|localappdata}}\Osgoode_Media\TargetOfDesireEpisode1.ex_StrongName_yzz1cgmyc0znge4meeuoojar2pvvurew\1.0.0.0\user.config}} - - >- - {{Game data/config|Microsoft - Store|{{p|localappdata}}\Packages\16591Monstrous.TargetofDesireEpisode1_skedv6py88bbr\Settings\settings.dat}} - - >- - {{Game - data/saves|Windows|{{p|localappdata}}\Osgoode_Media\TargetOfDesireEpisode1.ex_StrongName_yzz1cgmyc0znge4meeuoojar2pvvurew\1.0.0.0\user.config}} - - >- - {{Game data/saves|Microsoft - Store|{{p|localappdata}}\Packages\16591Monstrous.TargetofDesireEpisode1_skedv6py88bbr\Settings\settings.dat}} + - "{{Game data/config|Windows|{{p|localappdata}}\\Osgoode_Media\\TargetOfDesireEpisode1.ex_StrongName_yzz1cgmyc0znge4meeuoojar2pvvurew\\1.0.0.0\\user.config}}" + - "{{Game data/config|Microsoft Store|{{p|localappdata}}\\Packages\\16591Monstrous.TargetofDesireEpisode1_skedv6py88bbr\\Settings\\settings.dat}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Osgoode_Media\\TargetOfDesireEpisode1.ex_StrongName_yzz1cgmyc0znge4meeuoojar2pvvurew\\1.0.0.0\\user.config}}" + - "{{Game data/saves|Microsoft Store|{{p|localappdata}}\\Packages\\16591Monstrous.TargetofDesireEpisode1_skedv6py88bbr\\Settings\\settings.dat}}" Tarim: pageId: 69254 steam: 603060 -'Taro: a fluffy visual novel': +"Taro: a fluffy visual novel": pageId: 157295 steam: 1178890 Tarotica Voo Doo: @@ -162474,31 +158050,31 @@ Tartarus: pageId: 61062 steam: 608530 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\TARTARUS\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\TARTARUS\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\TARTARUS\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\TARTARUS\\Saved\\SaveGames\\}}" Tarzan (1999): pageId: 134383 templates: - - '{{Game data/config|Windows|{{p|game}}\tarzan.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\tarzan.cfg}}' + - "{{Game data/config|Windows|{{p|game}}\\tarzan.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\tarzan.cfg}}" Tarzan VR: pageId: 142099 steam: 1112100 Task Force: pageId: 72405 steam: 611300 -'Task Force 1942: Surface Naval Action in the South Pacific': +"Task Force 1942: Surface Naval Action in the South Pacific": pageId: 49388 steam: 329680 Task is to Survive: pageId: 74179 steam: 735410 -'TaskForce Gamma-13: An SCP Tale': +"TaskForce Gamma-13: An SCP Tale": pageId: 155460 renamedFrom: - - 'TaskForce Gamma-13 : An SCP Tale' + - "TaskForce Gamma-13 : An SCP Tale" steam: 1199770 -'Tasomachi: Behind the Twilight': +"Tasomachi: Behind the Twilight": gog: 1584589683 pageId: 145548 renamedFrom: @@ -162507,8 +158083,8 @@ Task is to Survive: Tass Times in Tonetown: pageId: 19725 templates: - - '{{Game data/config|PC booter|A:\|B:\}}' - - '{{Game data/saves|PC booter|A:\|B:\}}' + - "{{Game data/config|PC booter|A:\\|B:\\}}" + - "{{Game data/saves|PC booter|A:\\|B:\\}}" Taste of Power: pageId: 79420 steam: 758250 @@ -162525,7 +158101,7 @@ Tasty Planet: Tasty Planet Forever: pageId: 114654 steam: 946010 -'Tasty Planet: Back for Seconds': +"Tasty Planet: Back for Seconds": pageId: 38121 steam: 445110 Tasty Shame in Silver Soul!: @@ -162538,11 +158114,8 @@ Tattletail: pageId: 55698 steam: 568090 templates: - - >- - {{Game data/config|Windows|{{p|hkcu}}\Software\Waygetter Electronics\Tattletail{{Refurl|url=https://www.reddit.com/r/Tattletail/comments/5sbk9o/recently_made_a_discovery_on_the_save_game/|title=Reddit - - Recently made a discovery on the save game.|date=2022-12-12}}}} - - '{{Game data/saves|Windows|{{p|hkcu}}\Software\Waygetter Electronics\Tattletail}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Waygetter Electronics\\Tattletail{{Refurl|url=https://www.reddit.com/r/Tattletail/comments/5sbk9o/recently_made_a_discovery_on_the_save_game/|title=Reddit - Recently made a discovery on the save game.|date=2022-12-12}}}}" + - "{{Game data/saves|Windows|{{p|hkcu}}\\Software\\Waygetter Electronics\\Tattletail}}" Tau Defense: pageId: 142163 steam: 1107860 @@ -162558,7 +158131,7 @@ Taurus VR: Tavern Cards: pageId: 156813 steam: 1221240 -'Tavern Guardians: Banquet': +"Tavern Guardians: Banquet": pageId: 105173 steam: 878350 Tavern Keep: @@ -162574,17 +158147,14 @@ Tavern Master: - 1614730 - 1703370 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Untitled Studio\Tavern Master}}' - - >- - {{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\Untitled Studio\Tavern - Master\save_autosave_full.json|{{p|userprofile\appdata\locallow}}\Untitled Studio\Tavern - Master\CustomSave\*.json}} - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/com.UntitledStudio.TavernMaster}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Untitled Studio/Tavern Master}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Untitled Studio\\Tavern Master}}" + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\Untitled Studio\\Tavern Master\\save_autosave_full.json|{{p|userprofile\\appdata\\locallow}}\\Untitled Studio\\Tavern Master\\CustomSave\\*.json}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/com.UntitledStudio.TavernMaster}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Untitled Studio/Tavern Master}}" Tavern Table Tactics: pageId: 80472 steam: 782290 -Tavern Tycoon - Dragon's Hangover: +"Tavern Tycoon - Dragon's Hangover": pageId: 55195 steam: 439340 Tavernier: @@ -162596,7 +158166,7 @@ Taxi: Taxi (2016): pageId: 72593 steam: 488080 -'Taxi 3: Extreme Rush': +"Taxi 3: Extreme Rush": pageId: 88310 Taxi Chaos: pageId: 172107 @@ -162609,14 +158179,14 @@ Taxi Simulator: Taxidermy: pageId: 155512 steam: 1208490 -Tayutama 2 -You're the Only One-: +"Tayutama 2 -You're the Only One-": pageId: 54387 steam: 705570 -'Taz: Wanted': +"Taz: Wanted": pageId: 16661 templates: - - '{{Game data/config|Windows|{{p|game}}\Taz.dat}}' - - '{{Game data/saves|Windows|{{p|game}}\TazWanted.sav}}' + - "{{Game data/config|Windows|{{p|game}}\\Taz.dat}}" + - "{{Game data/saves|Windows|{{p|game}}\\TazWanted.sav}}" Tcheco in the Castle of Lucio: pageId: 38480 steam: 377600 @@ -162624,8 +158194,8 @@ Tchia: pageId: 165670 steam: 1496590 templates: - - '{{Game data/config|Windows|{{p|LOCALAPPDATA}}\Tchia\Saved\Config\WindowsNoEditor}}' - - '{{Game data/saves|Windows|{{p|LOCALAPPDATA}}\Tchia\Saved\SaveGames}}' + - "{{Game data/config|Windows|{{p|LOCALAPPDATA}}\\Tchia\\Saved\\Config\\WindowsNoEditor}}" + - "{{Game data/saves|Windows|{{p|LOCALAPPDATA}}\\Tchia\\Saved\\SaveGames}}" Tea Party Simulator 2015: pageId: 48134 steam: 363620 @@ -162641,19 +158211,19 @@ Team A.R.G. Anthology: Team Fortress: pageId: 6576 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' + - "{{Game data/config|Windows|{{p|game}}\\}}" Team Fortress 2: pageId: 23 steam: 440 templates: - - '{{Game data/config|Steam|{{p|game}}\tf\cfg/}}' + - "{{Game data/config|Steam|{{p|game}}\\tf\\cfg/}}" Team Fortress Classic: pageId: 1485 steam: 20 templates: - - '{{Game data/config|Windows|{{p|game}}\Half-Life\tfc\}}' - - '{{Game data/config|OS X|{{p|game}}/Half-Life/tfc/}}' - - '{{Game data/config|Linux|{{p|game}}/Half-Life/tfc/}}' + - "{{Game data/config|Windows|{{p|game}}\\Half-Life\\tfc\\}}" + - "{{Game data/config|OS X|{{p|game}}/Half-Life/tfc/}}" + - "{{Game data/config|Linux|{{p|game}}/Half-Life/tfc/}}" Team Four Star RPG: pageId: 74960 steam: 712390 @@ -162661,8 +158231,8 @@ Team Indie: pageId: 26570 steam: 302850 templates: - - '{{Game data/config|Windows|{{p|game}}\game.cfg|{{p|hkcu}}\SOFTWARE\Brightside Games\Team Indie\}}' - - '{{Game data/saves|Windows|{{p|hkcu}}\SOFTWARE\Brightside Games\Team Indie\}}' + - "{{Game data/config|Windows|{{p|game}}\\game.cfg|{{p|hkcu}}\\SOFTWARE\\Brightside Games\\Team Indie\\}}" + - "{{Game data/saves|Windows|{{p|hkcu}}\\SOFTWARE\\Brightside Games\\Team Indie\\}}" Team Racing League: pageId: 53116 steam: 504460 @@ -162670,8 +158240,8 @@ Team Sonic Racing: pageId: 95709 steam: 785260 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Sumo Digital Ltd\{{P|uid}}\TSR\Config\}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\Sumo Digital Ltd\{{P|uid}}\TSR\Profiles\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\Sumo Digital Ltd\\{{P|uid}}\\TSR\\Config\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Sumo Digital Ltd\\{{P|uid}}\\TSR\\Profiles\\}}" Team Up VR (Beta): pageId: 108384 steam: 916390 @@ -162683,7 +158253,7 @@ Teamkill: pageId: 176001 steam: 1730020 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Godot\app_userdata\Teamkill}}' + - "{{Game data/config|Windows|{{p|appdata}}\\Godot\\app_userdata\\Teamkill}}" Tear and the Library of Labyrinths: gog: 1271718934 pageId: 164471 @@ -162692,11 +158262,9 @@ Teardown: pageId: 151473 steam: 1167630 templates: - - >- - {{Game - data/config|Windows|{{p|userprofile\Documents}}\Teardown\options.xml|{{p|localappdata}}\Teardown\options.xml}} - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Teardown\|{{p|localappdata}}\Teardown\}}' -'Tears - 9, 10': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Teardown\\options.xml|{{p|localappdata}}\\Teardown\\options.xml}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Teardown\\|{{p|localappdata}}\\Teardown\\}}" +"Tears - 9, 10": pageId: 80976 steam: 776830 Tears Revolude: @@ -162720,12 +158288,12 @@ Tech Executive Tycoon: Tech Support 2077: pageId: 148731 steam: 1154420 -'Tech Support: Error Unknown': +"Tech Support: Error Unknown": pageId: 87577 steam: 781480 templates: - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\DragonSlumber\TechSupport\techsupport.sav}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/DragonSlumber/TechSupport/techsupport.sav}}' + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\DragonSlumber\\TechSupport\\techsupport.sav}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/DragonSlumber/TechSupport/techsupport.sav}}" Tech vs Magic: pageId: 151491 steam: 1004470 @@ -162737,7 +158305,7 @@ Techno Boy: TechnoMage: pageId: 128805 templates: - - '{{Game data/saves|Windows|{{p|game}}\Saves}}' + - "{{Game data/saves|Windows|{{p|game}}\\Saves}}" TechnoRunner: pageId: 164830 steam: 1454930 @@ -162749,17 +158317,17 @@ Technobabylon: pageId: 25178 steam: 307580 templates: - - '{{Game data/config|Windows|{{P|userprofile}}\Saved Games\Technobabylon\acsetup.cfg}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\Saved Games\Technobabylon\agssave.*}}' - - '{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/Technobabylon/}}' - - '{{Game data/saves|Linux|{{P|linuxhome}}/.local/share/ags/Technobabylon/}}' + - "{{Game data/config|Windows|{{P|userprofile}}\\Saved Games\\Technobabylon\\acsetup.cfg}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\Saved Games\\Technobabylon\\agssave.*}}" + - "{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/Technobabylon/}}" + - "{{Game data/saves|Linux|{{P|linuxhome}}/.local/share/ags/Technobabylon/}}" Technoball: pageId: 54786 steam: 568150 Technojuice: pageId: 148870 steam: 1165150 -'Technolites: Episode 1': +"Technolites: Episode 1": pageId: 111996 steam: 780520 Technolust: @@ -162775,7 +158343,7 @@ Techtonica: pageId: 188787 steam: 1457320 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Fire Hose Games\Techtonica}}' + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Fire Hose Games\\Techtonica}}" Techwars Deathmatch: pageId: 91865 steam: 835600 @@ -162794,13 +158362,13 @@ Tecroroid Assault: Ted by Dawn: pageId: 47453 steam: 381090 -'Teddy Floppy Ear: Kayaking': +"Teddy Floppy Ear: Kayaking": pageId: 48935 steam: 340310 -'Teddy Floppy Ear: Mountain Adventure': +"Teddy Floppy Ear: Mountain Adventure": pageId: 38069 steam: 340300 -'Teddy Floppy Ear: The Race': +"Teddy Floppy Ear: The Race": pageId: 47811 steam: 371420 Teddy Terror: @@ -162812,64 +158380,62 @@ Tee Time Golf: Teen Date Simulator: pageId: 75475 steam: 744890 -'Teenage Mutant Hero Turtles: The Coin-Op!': +"Teenage Mutant Hero Turtles: The Coin-Op!": pageId: 74340 Teenage Mutant Ninja Turtles: pageId: 72636 templates: - - '{{Game data/saves|DOS|{{p|game}}\SAVEGAME|{{p|game}}\HISCORES}}' + - "{{Game data/saves|DOS|{{p|game}}\\SAVEGAME|{{p|game}}\\HISCORES}}" Teenage Mutant Ninja Turtles (2003): pageId: 59435 templates: - - '{{Game data/config|Windows|{{P|game}}\SaveSetting.dat}}' - - '{{Game data/saves|Windows|{{P|game}}\SaveGame.dat}}' -'Teenage Mutant Ninja Turtles 2: Battle Nexus': + - "{{Game data/config|Windows|{{P|game}}\\SaveSetting.dat}}" + - "{{Game data/saves|Windows|{{P|game}}\\SaveGame.dat}}" +"Teenage Mutant Ninja Turtles 2: Battle Nexus": pageId: 124685 templates: - - '{{Game data/config|Windows|{{P|game}}\TMNT2.ini}}' - - '{{Game data/saves|Windows|{{P|game}}\tmntsave.dat}}' -'Teenage Mutant Ninja Turtles: Manhattan Missions': + - "{{Game data/config|Windows|{{P|game}}\\TMNT2.ini}}" + - "{{Game data/saves|Windows|{{P|game}}\\tmntsave.dat}}" +"Teenage Mutant Ninja Turtles: Manhattan Missions": pageId: 176772 -'Teenage Mutant Ninja Turtles: Mutant Melee': +"Teenage Mutant Ninja Turtles: Mutant Melee": pageId: 168265 templates: - - '{{Game data/config|Windows|{{p|game}}}}' - - '{{Game data/saves|Windows|{{p|game}}}}' -'Teenage Mutant Ninja Turtles: Mutants in Manhattan': + - "{{Game data/config|Windows|{{p|game}}}}" + - "{{Game data/saves|Windows|{{p|game}}}}" +"Teenage Mutant Ninja Turtles: Mutants in Manhattan": pageId: 32929 steam: 338400 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\TMNT_MiM\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\TMNT_MiM\}}' -'Teenage Mutant Ninja Turtles: Out of the Shadows': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\TMNT_MiM\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\TMNT_MiM\\}}" +"Teenage Mutant Ninja Turtles: Out of the Shadows": pageId: 9884 steam: 228560 templates: - - '{{Game data/config|Windows|{{p|game}}\Engine\Config}}' - - '{{Game data/saves|Windows|{{p|game}}\Saves}}' -'Teenage Mutant Ninja Turtles: Portal Power': + - "{{Game data/config|Windows|{{p|game}}\\Engine\\Config}}" + - "{{Game data/saves|Windows|{{p|game}}\\Saves}}" +"Teenage Mutant Ninja Turtles: Portal Power": pageId: 76247 steam: 700740 -'Teenage Mutant Ninja Turtles: Shredder''s Revenge': +"Teenage Mutant Ninja Turtles: Shredder's Revenge": pageId: 167126 steam: 1361510 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\Tribute Games\TMNT\Settings.cfg}}' - - '{{Game data/saves|Steam|{{p|Steam}}\userdata\{{p|uid}}\1361510\remote\GameSave.sav}}' - - >- - {{Game data/saves|Microsoft - Store|{{P|localappdata}}\Packages\DotEmu.TeenageMutantNinjaTurtlesShreddersRevenge_map6zyh9ym1xy\SystemAppData\wgs}} -'Teenage Mutant Ninja Turtles: The Cowabunga Collection': + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\Tribute Games\\TMNT\\Settings.cfg}}" + - "{{Game data/saves|Steam|{{p|Steam}}\\userdata\\{{p|uid}}\\1361510\\remote\\GameSave.sav}}" + - "{{Game data/saves|Microsoft Store|{{P|localappdata}}\\Packages\\DotEmu.TeenageMutantNinjaTurtlesShreddersRevenge_map6zyh9ym1xy\\SystemAppData\\wgs}}" +"Teenage Mutant Ninja Turtles: The Cowabunga Collection": pageId: 175683 steam: 1659600 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Teenage Mutant Ninja Turles - The Cowabunga Collection}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Teenage Mutant Ninja Turles - The Cowabunga Collection}}' + - "{{Game data/config|Windows|{{p|appdata}}\\Teenage Mutant Ninja Turles - The Cowabunga Collection}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Teenage Mutant Ninja Turles - The Cowabunga Collection}}" Teenagent: gog: 1207658753 pageId: 7819 templates: - - '{{Game data/saves|DOS|{{p|game}}\TEENAGE*.SAV}}' + - "{{Game data/saves|DOS|{{p|game}}\\TEENAGE*.SAV}}" Teenager vs. Tropical Mutants: pageId: 108544 steam: 915110 @@ -162883,22 +158449,22 @@ Teeworlds: pageId: 37901 steam: 380840 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Teeworlds\settings.cfg}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.teeworlds/settings.cfg}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Teeworlds}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.teeworlds}}' + - "{{Game data/config|Windows|{{p|appdata}}\\Teeworlds\\settings.cfg}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.teeworlds/settings.cfg}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Teeworlds}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.teeworlds}}" Tekken 7: pageId: 33384 steam: 389730 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\TekkenGame\Saved\Config\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\TekkenGame\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\TekkenGame\\Saved\\Config\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\TekkenGame\\Saved\\SaveGames\\}}" Tekken 8: pageId: 182899 steam: 1778820 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Polaris\Saved\Config\Windows\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Polaris\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Polaris\\Saved\\Config\\Windows\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Polaris\\Saved\\SaveGames\\}}" Tekling: pageId: 80889 steam: 678460 @@ -162914,17 +158480,17 @@ Telecube Halloween: Telefrag VR: pageId: 109822 steam: 916100 -'Teleglitch: Die More Edition': +"Teleglitch: Die More Edition": gog: 1624842776 pageId: 4557 steam: 234390 templates: - - '{{Game data/config|Windows|{{P|game}}\settings.lua}}' - - '{{Game data/config|OS X|{{P|game}}/settings.lua}}' - - '{{Game data/config|Linux|{{P|game}}/settings.lua}}' - - '{{Game data/saves|Windows|{{P|game}}\exitsave*|{{P|game}}\Saves\}}' - - '{{Game data/saves|OS X|{{P|game}}/exitsave*}}' - - '{{Game data/saves|Linux|{{P|game}}/exitsave*}}' + - "{{Game data/config|Windows|{{P|game}}\\settings.lua}}" + - "{{Game data/config|OS X|{{P|game}}/settings.lua}}" + - "{{Game data/config|Linux|{{P|game}}/settings.lua}}" + - "{{Game data/saves|Windows|{{P|game}}\\exitsave*|{{P|game}}\\Saves\\}}" + - "{{Game data/saves|OS X|{{P|game}}/exitsave*}}" + - "{{Game data/saves|Linux|{{P|game}}/exitsave*}}" Telegrum Clicker: pageId: 94627 steam: 859410 @@ -162934,17 +158500,17 @@ Telekinetic: Telengard: pageId: 30582 templates: - - '{{Game data/saves|DOS|{{p|game}}\*.PLR}}' + - "{{Game data/saves|DOS|{{p|game}}\\*.PLR}}" Telepath Tactics: gog: 1428918226 pageId: 24450 steam: 357940 templates: - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Telepath Tactics\Saved Games\}}' + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Telepath Tactics\\Saved Games\\}}" Telepathy Zero: pageId: 65086 steam: 655170 -Teleportals. I swear it's a nice game.: +"Teleportals. I swear it's a nice game.": pageId: 96741 steam: 873200 Teleporter: @@ -162960,12 +158526,10 @@ Tell Me Why: pageId: 152129 steam: 1180660 templates: - - '{{Game data/config|Microsoft Store|{{p|localappdata}}\TME\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/config|Steam|{{P|localappdata}}\Dontnod\{{P|uid}}\TME\Saved\Config\WindowsNoEditor\}}' - - >- - {{Game data/saves|Microsoft - Store|{{P|localappdata}}\Packages\Microsoft.Breathless_8wekyb3d8bbwe\SystemAppData\wgs\}} - - '{{Game data/saves|Steam|{{P|steam}}\userdata\{{P|uid}}\1180660\remote\}}' + - "{{Game data/config|Microsoft Store|{{p|localappdata}}\\TME\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/config|Steam|{{P|localappdata}}\\Dontnod\\{{P|uid}}\\TME\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Microsoft Store|{{P|localappdata}}\\Packages\\Microsoft.Breathless_8wekyb3d8bbwe\\SystemAppData\\wgs\\}}" + - "{{Game data/saves|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\1180660\\remote\\}}" Tell a Demon: pageId: 65997 steam: 679230 @@ -162974,32 +158538,30 @@ Telling Lies: pageId: 132780 steam: 762830 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Annapurna Interactive\Telling Lies\}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Annapurna Interactive\Telling Lies\SaveGame.hst}}' - - >- - {{Game data/saves|Microsoft - Store|{{P|localappdata}}\Packages\AnnapurnaInteractive.TellingLies_c96c51jf6wkvm\SystemAppData\wgs\}} -Telltale Texas Hold 'Em: + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Annapurna Interactive\\Telling Lies\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Annapurna Interactive\\Telling Lies\\SaveGame.hst}}" + - "{{Game data/saves|Microsoft Store|{{P|localappdata}}\\Packages\\AnnapurnaInteractive.TellingLies_c96c51jf6wkvm\\SystemAppData\\wgs\\}}" +"Telltale Texas Hold 'Em": gog: 1862763203 pageId: 41357 steam: 8330 templates: - - '{{Game data/config|Windows|{{P|game}}\prefs.prop}}' + - "{{Game data/config|Windows|{{P|game}}\\prefs.prop}}" Telophase: pageId: 91809 steam: 837310 templates: - - '{{Game data/config|Windows|{{P|userprofile}}\AppData\LocalLow\TelophaseStudio\Telophase|}}' + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\TelophaseStudio\\Telophase|}}" Tembo the Badass Elephant: pageId: 30120 steam: 341870 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\SOFTWARE\GAME FREAK inc.\TEMBO THE BADASS ELEPHANT}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Tembo The Badass Elephant\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\GAME FREAK inc.\\TEMBO THE BADASS ELEPHANT}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Tembo The Badass Elephant\\}}" Temper Tantrum: pageId: 25735 steam: 373110 -'Temperia: Soul of Majestic': +"Temperia: Soul of Majestic": pageId: 179868 steam: 852780 Tempest: @@ -163007,17 +158569,15 @@ Tempest: pageId: 41557 steam: 418180 templates: - - >- - {{Game - data/config|Windows|{{p|userprofile}}\AppData\LocalLow\LionsShade\Tempest\Settings\settings.tsf|{{P|hkcu}}\Software\LionsShade\Tempest\}} - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\LionsShade\Tempest\}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\LionsShade\\Tempest\\Settings\\settings.tsf|{{P|hkcu}}\\Software\\LionsShade\\Tempest\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\LionsShade\\Tempest\\}}" Tempest 4000: gog: 1866824123 pageId: 90084 steam: 688140 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Tempest4000_Savedata}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Tempest4000_Savedata}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Tempest4000_Savedata}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Tempest4000_Savedata}}" Tempest Citadel: pageId: 75168 steam: 436690 @@ -163034,19 +158594,19 @@ Templar Battleforce: pageId: 37275 steam: 370020 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\TemplarBattleforce}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\TemplarBattleforce}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\TemplarBattleforce}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\TemplarBattleforce}}" Temple Escape: pageId: 70495 steam: 712380 Temple Raid: pageId: 73809 steam: 697910 -'Temple Run: Brave': +"Temple Run: Brave": pageId: 170966 -'Temple Run: Oz': +"Temple Run: Oz": pageId: 171896 -'Temple Run: Puzzle Adventure': +"Temple Run: Puzzle Adventure": pageId: 170896 Temple Scramble: pageId: 120721 @@ -163089,7 +158649,7 @@ Tempo Wizard: Temporal Shift: pageId: 47239 steam: 384900 -'Temporal Storm X: Hyperspace Dream': +"Temporal Storm X: Hyperspace Dream": pageId: 69460 steam: 678010 Temporal Temple: @@ -163105,16 +158665,14 @@ Temtem: pageId: 95991 steam: 745920 templates: - - >- - {{Game - data/config|Windows|{{p|hkcu}}\SOFTWARE\Crema\Temtem\|{{p|userprofile}}\AppData\LocalLow\Crema\Temtem\settings.dat|{{p|userprofile}}\AppData\LocalLow\Crema\Temtem\graphics.dat}} - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Crema\Temtem\savegame.dat}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\Crema\\Temtem\\|{{p|userprofile}}\\AppData\\LocalLow\\Crema\\Temtem\\settings.dat|{{p|userprofile}}\\AppData\\LocalLow\\Crema\\Temtem\\graphics.dat}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Crema\\Temtem\\savegame.dat}}" Ten Dates: pageId: 185139 steam: 1946070 templates: - - '{{Game data/config|Steam|{{P|Steam}}\userdata\{{P|uid}}\1946070\remote\OptionsData}}' - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\1946070\remote\StoryData}}' + - "{{Game data/config|Steam|{{P|Steam}}\\userdata\\{{P|uid}}\\1946070\\remote\\OptionsData}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\1946070\\remote\\StoryData}}" Ten Days to War: pageId: 149085 steam: 1144060 @@ -163122,8 +158680,8 @@ Ten Desires: pageId: 33028 steam: 1043230 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/saves|Windows|{{p|game}}\}}' + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\}}" Ten Thousand Coins: pageId: 151467 steam: 1157900 @@ -163160,15 +158718,15 @@ Tengami: pageId: 26889 steam: 299680 templates: - - '{{Game data/config|Windows|{{p|game}}\Save\TengamiSettingData.bin}}' - - '{{Game data/saves|Windows|{{p|game}}\Save\TengamiSaveData.bin}}' + - "{{Game data/config|Windows|{{p|game}}\\Save\\TengamiSettingData.bin}}" + - "{{Game data/saves|Windows|{{p|game}}\\Save\\TengamiSaveData.bin}}" Tengutana: pageId: 74660 steam: 630070 Tenis PC3: pageId: 151895 templates: - - '{{Game data/config|Windows|C:\pc3\drakssen\tennis\keywiz.cfg}}' + - "{{Game data/config|Windows|C:\\pc3\\drakssen\\tennis\\keywiz.cfg}}" Tenkyu: pageId: 90052 steam: 818350 @@ -163217,8 +158775,8 @@ Tennis World Tour: pageId: 90768 steam: 692030 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Tennis World Tour\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Tennis World Tour\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Tennis World Tour\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Tennis World Tour\\}}" Tennis World Tour 2: pageId: 163442 steam: 1223910 @@ -163284,56 +158842,54 @@ Terminal Hacker - Into the Deep: Terminal Protocol: pageId: 151415 steam: 1146070 -'Terminal Squad: Swarmites': +"Terminal Squad: Swarmites": pageId: 156511 renamedFrom: - - 'Terminal squad: Swarmites' + - "Terminal squad: Swarmites" steam: 1217330 Terminal Velocity: gog: 1207659136 pageId: 13600 steam: 358370 templates: - - '{{Game data/config|DOS|{{p|game}}\VOX.INI}}' - - '{{Game data/saves|DOS|{{p|game}}\SAVE*.DAT}}' -'Terminal Velocity: Boosted Edition': + - "{{Game data/config|DOS|{{p|game}}\\VOX.INI}}" + - "{{Game data/saves|DOS|{{p|game}}\\SAVE*.DAT}}" +"Terminal Velocity: Boosted Edition": gog: 1289070799 pageId: 185388 steam: 1956430 templates: - - '{{Game data/config|Windows|{{p|userprofile\documents}}\Terminal_Velocity_Boosted_Edition\system\settings.ini}}' - - >- - {{Game - data/saves|Windows|{{p|userprofile\documents}}\Terminal_Velocity_Boosted_Edition\save_achiev.dat|{{p|userprofile\documents}}\Terminal_Velocity_Boosted_Edition\save0.dat}} -'Terminal squad: Sentinel': + - "{{Game data/config|Windows|{{p|userprofile\\documents}}\\Terminal_Velocity_Boosted_Edition\\system\\settings.ini}}" + - "{{Game data/saves|Windows|{{p|userprofile\\documents}}\\Terminal_Velocity_Boosted_Edition\\save_achiev.dat|{{p|userprofile\\documents}}\\Terminal_Velocity_Boosted_Edition\\save0.dat}}" +"Terminal squad: Sentinel": pageId: 144264 steam: 1118050 -'Terminator 2: Judgment Day': +"Terminator 2: Judgment Day": pageId: 190685 -'Terminator 2: Judgment Day - Chess Wars': +"Terminator 2: Judgment Day - Chess Wars": pageId: 190683 -'Terminator 3: War of the Machines': +"Terminator 3: War of the Machines": pageId: 146929 -'Terminator: Dark Fate - Defiance': +"Terminator: Dark Fate - Defiance": gog: 1678779214 pageId: 175870 steam: 1839950 -'Terminator: Resistance': +"Terminator: Resistance": gog: 1662585593 pageId: 146927 steam: 954740 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Terminator\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Terminator\Saved\SaveGames\}}' -'Terminator: Salvation': + - "{{Game data/config|Windows|{{p|localappdata}}\\Terminator\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Terminator\\Saved\\SaveGames\\}}" +"Terminator: Salvation": pageId: 27198 steam: 21080 templates: - - '{{Game data/config|Windows|{{p|LOCALAPPDATA}}\salvation\data\settings}}' - - '{{Game data/saves|Windows|{{p|LOCALAPPDATA}}\salvation\data\saves}}' + - "{{Game data/config|Windows|{{p|LOCALAPPDATA}}\\salvation\\data\\settings}}" + - "{{Game data/saves|Windows|{{p|LOCALAPPDATA}}\\salvation\\data\\saves}}" Terminus: pageId: 188846 -'Terminus: Survival': +"Terminus: Survival": pageId: 141264 steam: 1106780 Termite: @@ -163355,7 +158911,7 @@ Terra Feminarum: Terra Incognita: pageId: 155452 steam: 1194520 -'Terra Incognita - Chapter One: The Descendant': +"Terra Incognita - Chapter One: The Descendant": pageId: 48803 steam: 347560 Terra Incognito - Antarctica 1911: @@ -163366,15 +158922,15 @@ Terra Invicta: pageId: 172895 steam: 1176470 templates: - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\TerraInvicta\Saves}}' + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\TerraInvicta\\Saves}}" Terra Lander: gog: 1583003279 pageId: 31925 steam: 338550 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\terraLander\preferences.xml}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\terraLander\lander\}}' -'Terra Lander II: Rockslide Rescue': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\terraLander\\preferences.xml}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\terraLander\\lander\\}}" +"Terra Lander II: Rockslide Rescue": gog: 2012018643 pageId: 171835 steam: 1238340 @@ -163384,9 +158940,9 @@ Terra Mystica: Terra Nil: gog: 1376417835 gogSide: - - 1715616555 - - 1551711366 - 1424513925 + - 1551711366 + - 1715616555 pageId: 172002 steam: 1593030 steamSide: @@ -163394,16 +158950,16 @@ Terra Nil: - 2321920 - 2321930 templates: - - '{{Game data/config|Windows|{{P|userprofile\appdata\locallow}}\Free Lives\Terra Nil}}' - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Free Lives\Terra Nil}}' -'Terra Nova: Strike Force Centauri': + - "{{Game data/config|Windows|{{P|userprofile\\appdata\\locallow}}\\Free Lives\\Terra Nil}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Free Lives\\Terra Nil}}" +"Terra Nova: Strike Force Centauri": gog: 1434984562 pageId: 23867 steam: 368600 Terra Randoma: pageId: 145296 steam: 1120400 -'Terra Tanks: Defenders of the Earth': +"Terra Tanks: Defenders of the Earth": pageId: 76287 steam: 747820 TerraTech: @@ -163411,10 +158967,10 @@ TerraTech: pageId: 34264 steam: 285920 templates: - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Payload/TerraTech/}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\TerraTech\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/TerraTech/}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.local/share/TerraTech/}}' + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Payload/TerraTech/}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\TerraTech\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/TerraTech/}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.local/share/TerraTech/}}" Terracotta - Shards of Doom: pageId: 141673 steam: 1109750 @@ -163429,24 +158985,24 @@ Terraformers: pageId: 169775 steam: 1244800 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Asteroid Lab\Terraformers\SavedGames\}}' + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Asteroid Lab\\Terraformers\\SavedGames\\}}" Terraformers (2003): pageId: 53613 renamedFrom: - Terraformers templates: - - '{{Game data/config|Windows|{{P|game}}\Prefs}}' - - '{{Game data/saves|Windows|{{P|game}}\Prefs}}' + - "{{Game data/config|Windows|{{P|game}}\\Prefs}}" + - "{{Game data/saves|Windows|{{P|game}}\\Prefs}}" Terraforming Earth: pageId: 130702 steam: 1029220 Terraforming Mars: gog: 2013033253 gogSide: - - 2010739260 + - 1337100717 - 1504654780 - 1908827032 - - 1337100717 + - 2010739260 pageId: 82896 steam: 800270 steamSide: @@ -163454,10 +159010,8 @@ Terraforming Mars: - 1785010 - 2625120 templates: - - >- - {{Game data/config|Windows|{{P|userprofile}}\AppData\LocalLow\LuckyHammers\Terraforming - Mars\Saves\BaseConfiguration\Configuration|{{P|hkcu}}\Software\LuckyHammers\Terraforming Mars\}} - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\LuckyHammers\Terraforming Mars\Saves\LocalGameSave\}}' + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\LuckyHammers\\Terraforming Mars\\Saves\\BaseConfiguration\\Configuration|{{P|hkcu}}\\Software\\LuckyHammers\\Terraforming Mars\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\LuckyHammers\\Terraforming Mars\\Saves\\LocalGameSave\\}}" Terragearth: pageId: 72211 steam: 710400 @@ -163473,29 +159027,24 @@ Terraria: pageId: 149 steam: 105600 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Terraria\config.json | - {{p|userprofile\Documents}}\My Games\Terraria\input profiles.json}} - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Terraria/}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/Terraria/}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Terraria\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Terraria/}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/Terraria/}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Terraria\\config.json | {{p|userprofile\\Documents}}\\My Games\\Terraria\\input profiles.json}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Terraria/}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/Terraria/}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Terraria\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Terraria/}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/Terraria/}}" Terrarium Land: pageId: 43909 steam: 438780 -'Terrawars: New York Invasion': +"Terrawars: New York Invasion": pageId: 188834 templates: - - |- - {{Game data/config|Windows|{{P|game}}
- {{P|game}}\Profiles - }} - - '{{Game data/saves|Windows|{{P|game}}\Save}}' + - "{{Game data/config|Windows|{{P|game}}
\n{{P|game}}\\Profiles\n}}" + - "{{Game data/saves|Windows|{{P|game}}\\Save}}" Terrawurm: pageId: 132165 steam: 907560 -'Terrian Saga: KR-17': +"Terrian Saga: KR-17": pageId: 18728 steam: 278640 Terrible Beast from the East: @@ -163508,8 +159057,8 @@ Territory Idle: pageId: 128320 steam: 1017100 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\TerritoryIdl2_2\}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\TerritoryIdl2_2\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\TerritoryIdl2_2\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\TerritoryIdl2_2\\}}" Terro Lunkka Adventures: pageId: 153424 steam: 1186730 @@ -163540,8 +159089,8 @@ Terror of Hemasaurus: pageId: 128650 steam: 1016180 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Digerati\TerrorOfHemasaurus\data.sav}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Digerati\TerrorOfHemasaurus\data.sav}}' + - "{{Game data/config|Windows|{{p|appdata}}\\Digerati\\TerrorOfHemasaurus\\data.sav}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Digerati\\TerrorOfHemasaurus\\data.sav}}" Terrorarium: pageId: 128415 steam: 1003450 @@ -163557,50 +159106,46 @@ Terrorist Elimination: Terrorist Takedown: pageId: 176192 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\City Interactive\tt_en}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\City Interactive\\tt_en}}" Terrorist Takedown 2: pageId: 30659 templates: - - '{{Game data/config|Windows|{{p|public}}\Documents\City Interactive\Terrorist Takedown 2}}' - - '{{Game data/saves|Windows|{{p|public}}\Documents\City Interactive\Terrorist Takedown 2\save}}' + - "{{Game data/config|Windows|{{p|public}}\\Documents\\City Interactive\\Terrorist Takedown 2}}" + - "{{Game data/saves|Windows|{{p|public}}\\Documents\\City Interactive\\Terrorist Takedown 2\\save}}" Terrorist Takedown 3: pageId: 176253 templates: - - '{{Game data/config|Windows|{{p|public}}\Documents\City Interactive\Terrorist Takedown 3}}' - - '{{Game data/saves|Windows|{{p|public}}\Documents\City Interactive\Terrorist Takedown 3\save}}' -'Terrorist Takedown: Covert Operations': + - "{{Game data/config|Windows|{{p|public}}\\Documents\\City Interactive\\Terrorist Takedown 3}}" + - "{{Game data/saves|Windows|{{p|public}}\\Documents\\City Interactive\\Terrorist Takedown 3\\save}}" +"Terrorist Takedown: Covert Operations": pageId: 176247 templates: - - '{{Game data/config|Windows|{{P|game}}\Data}}' -'Terrorist Takedown: Payback': + - "{{Game data/config|Windows|{{P|game}}\\Data}}" +"Terrorist Takedown: Payback": pageId: 176230 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\City Interactive\TTP_eng}}' -'Terrorist Takedown: War in Colombia': + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\City Interactive\\TTP_eng}}" +"Terrorist Takedown: War in Colombia": pageId: 176236 templates: - - '{{Game data/config|Windows|{{P|game}}\Data}}' + - "{{Game data/config|Windows|{{P|game}}\\Data}}" Tesla Breaks the World!: pageId: 49235 steam: 314210 -'Tesla Effect: A Tex Murphy Adventure': +"Tesla Effect: A Tex Murphy Adventure": gog: 1207664503 pageId: 16748 steam: 261510 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\BigFinishGames\TeslaEffect\SettingsDB.sav}}' - - >- - {{Game data/config|OS X|{{p|osxhome}}/Library/Application\ - Support/\[I\]\\[/I\]/BigFinishGames/TeslaEffect/SettingsDB.sav }} - - '{{Game data/saves|Windows|{{p|localappdata}}\BigFinishGames\TeslaEffect\{{p|uid}}\*.sav}}' - - >- - {{Game data/saves|OS X|{{p|osxhome}}/Library/Application\ - Support/\[I\]\\[/I\]/BigFinishGames/TeslaEffect/}} + - "{{Game data/config|Windows|{{p|localappdata}}\\BigFinishGames\\TeslaEffect\\SettingsDB.sav}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application\\ Support/\\[I\\]\\\\[/I\\]/BigFinishGames/TeslaEffect/SettingsDB.sav }}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\BigFinishGames\\TeslaEffect\\{{p|uid}}\\*.sav}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application\\ Support/\\[I\\]\\\\[/I\\]/BigFinishGames/TeslaEffect/}}" Tesla Force: gog: 1991814244 pageId: 151183 renamedFrom: - - 'Tesla Force: United Scientists Army' + - "Tesla Force: United Scientists Army" steam: 1149710 Tesla Roadster Going to Mars: pageId: 88085 @@ -163613,16 +159158,16 @@ Tesla vs Lovecraft: pageId: 62243 steam: 636100 templates: - - '{{Game data/config|Windows|{{P|game}}\prog.xml}}' - - '{{Game data/saves|Windows|{{P|appdata}}\10tons\Tesla_vs_Lovecraft\profiles\}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/10tons/Tesla_vs_Lovecraft/profiles/}}' -Tesla's Best Friend: + - "{{Game data/config|Windows|{{P|game}}\\prog.xml}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\10tons\\Tesla_vs_Lovecraft\\profiles\\}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/10tons/Tesla_vs_Lovecraft/profiles/}}" +"Tesla's Best Friend": pageId: 53180 steam: 545950 -'Tesla''s Tower: The Wardenclyffe Mystery': +"Tesla's Tower: The Wardenclyffe Mystery": pageId: 41950 steam: 507140 -'Tesla: The Weather Man': +"Tesla: The Weather Man": pageId: 93166 steam: 544380 Teslagrad: @@ -163633,26 +159178,24 @@ Teslagrad: - 254560 - 650900 templates: - - >- - {{Game - data/config|Windows|{{p|userprofile}}\AppData\LocalLow\Rain\Teslagrad\Settings\|{{p|userprofile}}\AppData\LocalLow\Rain\Teslagrad\ConfiguredGamepads\|{{p|hkcu}}\SOFTWARE\Rain\Teslagrad\}} - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Rain\Teslagrad\*\}}' - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\249590\remote\*\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Caches/unity.Rain.Teslagrad/}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Rain/Teslagrad/}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Rain\\Teslagrad\\Settings\\|{{p|userprofile}}\\AppData\\LocalLow\\Rain\\Teslagrad\\ConfiguredGamepads\\|{{p|hkcu}}\\SOFTWARE\\Rain\\Teslagrad\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Rain\\Teslagrad\\*\\}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\249590\\remote\\*\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Caches/unity.Rain.Teslagrad/}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Rain/Teslagrad/}}" Teslagrad 2: pageId: 188754 steam: 1698220 templates: - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\Rain\Teslagrad 2\Saves.yaml}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Rain/Teslagrad 2}}' + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\Rain\\Teslagrad 2\\Saves.yaml}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Rain/Teslagrad 2}}" Teslagrad Remastered: pageId: 188752 steam: 2168150 Tess Elated: pageId: 127653 steam: 982850 -Tessa's Ark: +"Tessa's Ark": pageId: 65584 steam: 652030 TesserAct (Propelled Bird Software): @@ -163663,10 +159206,10 @@ TesserAct (Propelled Bird Software): Tesseract: pageId: 17313 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\My Games\Tesseract}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.tesseract/config/}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\My Games\Tesseract}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.tesseract}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\My Games\\Tesseract}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.tesseract/config/}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\My Games\\Tesseract}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.tesseract}}" Tesseract VR: pageId: 92615 steam: 809150 @@ -163677,50 +159220,50 @@ Test Drive 5: Test Drive 6: pageId: 22210 templates: - - '{{Game data/config|Windows|{{p|game}}\PlayerData\}}' - - '{{Game data/saves|Windows|{{p|game}}\PlayerData\|{{p|game}}\Replay.*}}' -'Test Drive III: The Passion': + - "{{Game data/config|Windows|{{p|game}}\\PlayerData\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\PlayerData\\|{{p|game}}\\Replay.*}}" +"Test Drive III: The Passion": pageId: 24889 Test Drive Le Mans: pageId: 164201 templates: - - '{{Game data/config|Windows|{{p|game}}\save}}' - - '{{Game data/saves|Windows|{{p|game}}\save}}' + - "{{Game data/config|Windows|{{p|game}}\\save}}" + - "{{Game data/saves|Windows|{{p|game}}\\save}}" Test Drive Unlimited: pageId: 10891 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Test Drive Unlimited\savegame\{{p|uid}}\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Test Drive Unlimited\savegame\{{p|uid}}\playersave\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Test Drive Unlimited\\savegame\\{{p|uid}}\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Test Drive Unlimited\\savegame\\{{p|uid}}\\playersave\\}}" Test Drive Unlimited 2: pageId: 10902 steam: 9930 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Eden Games\Test Drive Unlimited 2\savegame\{{p|uid}}\}}' + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Eden Games\\Test Drive Unlimited 2\\savegame\\{{p|uid}}\\}}" Test Drive Unlimited Solar Crown: pageId: 161699 steam: 1249970 -'Test Drive: Ferrari Racing Legends': +"Test Drive: Ferrari Racing Legends": pageId: 40673 steam: 211970 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Test Drive Ferrari Racing Legends\graphicsconfig.xml}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Test Drive Ferrari Racing Legends\profiles\{{p|uid}}.sav}}' -'Test Drive: Off-Road 3': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Test Drive Ferrari Racing Legends\\graphicsconfig.xml}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Test Drive Ferrari Racing Legends\\profiles\\{{p|uid}}.sav}}" +"Test Drive: Off-Road 3": pageId: 120492 templates: - - '{{Game data/config|Windows|{{P|game}}/tdor3.cfg}}' - - '{{Game data/saves|Windows|{{P|game}}/SaveData/}}' + - "{{Game data/config|Windows|{{P|game}}/tdor3.cfg}}" + - "{{Game data/saves|Windows|{{P|game}}/SaveData/}}" Test Subject 901: pageId: 109750 steam: 914450 -'Test your knowledge: Cats': +"Test your knowledge: Cats": pageId: 108068 steam: 918180 -'Test your knowledge: Cities': +"Test your knowledge: Cities": pageId: 95605 steam: 872730 -'Test your knowledge: Dogs': +"Test your knowledge: Dogs": pageId: 110362 steam: 925490 Testbed Terror: @@ -163741,7 +159284,7 @@ Tethered: Tetra Project - 原石计划: pageId: 139626 steam: 1017410 -Tetra's Escape: +"Tetra's Escape": pageId: 104255 steam: 827460 TetraLogical: @@ -163762,34 +159305,30 @@ Tetripank: Tetris (AcademySoft): pageId: 152573 templates: - - '{{Game data/saves|DOS|{{Path|Game}}\TETRIS.RES}}' + - "{{Game data/saves|DOS|{{Path|Game}}\\TETRIS.RES}}" Tetris Beat: pageId: 170203 -'Tetris Effect: Connected': +"Tetris Effect: Connected": pageId: 140550 renamedFrom: - Tetris Effect steam: 1003590 templates: - - '{{Game data/config| Windows | {{p|game}}\TetrisEffect\Saved\Config\}}' - - >- - {{Game data/config| Microsoft Store - |{{p|localappdata}}\Packages\48710EnhanceIncorporated.TRIP2.0_63vy8jfbpt4dt\LocalCache\LocalSaveGames\CONF.json}} - - '{{Game data/saves| Windows | {{p|game}}\TetrisEffect\Saved\SaveGames\}}' - - >- - {{Game data/saves| Microsoft Store | - {{p|localappdata}}\Packages\48710EnhanceIncorporated.TRIP2.0_63vy8jfbpt4dt\SystemAppData\wgs\}} + - "{{Game data/config| Windows | {{p|game}}\\TetrisEffect\\Saved\\Config\\}}" + - "{{Game data/config| Microsoft Store |{{p|localappdata}}\\Packages\\48710EnhanceIncorporated.TRIP2.0_63vy8jfbpt4dt\\LocalCache\\LocalSaveGames\\CONF.json}}" + - "{{Game data/saves| Windows | {{p|game}}\\TetrisEffect\\Saved\\SaveGames\\}}" + - "{{Game data/saves| Microsoft Store | {{p|localappdata}}\\Packages\\48710EnhanceIncorporated.TRIP2.0_63vy8jfbpt4dt\\SystemAppData\\wgs\\}}" Tetris Ultimate: pageId: 30097 steam: 316750 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\SOFTWARE\SoMa Play Inc\Tetris Ultimate\}}' - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\316750\remote\tetrisUltimateSave.dat}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\SoMa Play Inc\\Tetris Ultimate\\}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\316750\\remote\\tetrisUltimateSave.dat}}" Tetris Worlds: pageId: 101469 templates: - - '{{Game data/config|Windows|{{p|game}}\ASSETS\PC\ANY_LANG\MISC\TWConfig.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\Save\TWPLINFO.dat}}' + - "{{Game data/config|Windows|{{p|game}}\\ASSETS\\PC\\ANY_LANG\\MISC\\TWConfig.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\Save\\TWPLINFO.dat}}" Tetris for Two: pageId: 175866 steam: 1862940 @@ -163798,12 +159337,12 @@ Tetrobot and Co.: pageId: 11277 steam: 235980 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Swing Swing Submarine\Tetrobot and Co\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Caches/Swing Swing Submarine/Tetrobot and Co/}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Swing Swing Submarine/Tetrobot and Co/}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\Saved Games\Tetrobot and Co\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Caches/Swing Swing Submarine/Tetrobot and Co/}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Swing Swing Submarine/Tetrobot and Co/}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Swing Swing Submarine\\Tetrobot and Co\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Caches/Swing Swing Submarine/Tetrobot and Co/}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Swing Swing Submarine/Tetrobot and Co/}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Saved Games\\Tetrobot and Co\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Caches/Swing Swing Submarine/Tetrobot and Co/}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Swing Swing Submarine/Tetrobot and Co/}}" Tetromino Attack: pageId: 134749 steam: 1062900 @@ -163828,43 +159367,43 @@ Teva 2: Tevris: pageId: 76109 steam: 748520 -'Tex Murphy: Martian Memorandum': +"Tex Murphy: Martian Memorandum": gog: 1207660943 pageId: 14035 steam: 302340 -'Tex Murphy: Mean Streets': +"Tex Murphy: Mean Streets": gog: 1207660933 gogSide: - 1207658766 pageId: 13556 steam: 302330 templates: - - '{{Game data/saves|Windows|{{p|game}}\*.GAM}}' - - '{{Game data/saves|GOG.com|{{p|game}}\cloud_saves\*.GAM}}' -'Tex Murphy: Overseer': + - "{{Game data/saves|Windows|{{p|game}}\\*.GAM}}" + - "{{Game data/saves|GOG.com|{{p|game}}\\cloud_saves\\*.GAM}}" +"Tex Murphy: Overseer": gog: 1207658769 pageId: 14048 steam: 302370 templates: - - '{{Game data/config|Windows|{{p|game}}\tex.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\games\}}' -'Tex Murphy: The Pandora Directive': + - "{{Game data/config|Windows|{{p|game}}\\tex.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\games\\}}" +"Tex Murphy: The Pandora Directive": gog: 1207658768 pageId: 14041 steam: 302360 -'Tex Murphy: Under a Killing Moon': +"Tex Murphy: Under a Killing Moon": gog: 1207658767 pageId: 14039 steam: 302350 templates: - - '{{Game data/config|DOS|{{p|game}}\CONFIG.INI}}' - - '{{Game data/config|Windows|{{p|game}}\TEX3\CONFIG.INI}}' - - '{{Game data/saves|DOS|{{p|game}}\PLAYERS\*.PLR}}' - - '{{Game data/saves|Windows|{{p|game}}\TEX3\PLAYERS\|{{p|game}}\TEX3\GAMES\}}' + - "{{Game data/config|DOS|{{p|game}}\\CONFIG.INI}}" + - "{{Game data/config|Windows|{{p|game}}\\TEX3\\CONFIG.INI}}" + - "{{Game data/saves|DOS|{{p|game}}\\PLAYERS\\*.PLR}}" + - "{{Game data/saves|Windows|{{p|game}}\\TEX3\\PLAYERS\\|{{p|game}}\\TEX3\\GAMES\\}}" Texas Tango: pageId: 69196 steam: 572230 -'Text Adventure: Dungeon Empire': +"Text Adventure: Dungeon Empire": pageId: 142285 steam: 601210 Text Wormhole: @@ -163873,9 +159412,9 @@ Text Wormhole: Th3 Plan: pageId: 97595 templates: - - '{{Game data/config|Windows|{{p|game}}\Settings.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\game.sav}}' -'Thalu: Dreamtime is Now': + - "{{Game data/config|Windows|{{p|game}}\\Settings.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\game.sav}}" +"Thalu: Dreamtime is Now": pageId: 125707 steam: 1005940 Thanatos: @@ -163898,11 +159437,11 @@ Tharsis: pageId: 34166 steam: 323060 templates: - - '{{Game data/saves|Windows|{{P|game}}\Tharsis Data\savedata.sav}}' + - "{{Game data/saves|Windows|{{P|game}}\\Tharsis Data\\savedata.sav}}" That Dam Level redux: pageId: 44449 steam: 434970 -'That Dragon, Cancer': +"That Dragon, Cancer": pageId: 30770 steam: 419460 That Lava Escape Game: @@ -163917,59 +159456,59 @@ That Tiny Spaceship: That Which Binds Us: pageId: 96607 steam: 870190 -That's Mahjong!: +"That's Mahjong!": pageId: 52546 steam: 547310 -That's Pretty Clever: +"That's Pretty Clever": pageId: 138962 steam: 1065410 -'Thaumistry: In Charm''s Way': +"Thaumistry: In Charm's Way": pageId: 72766 steam: 532980 templates: - - '{{Game data/config|Linux|{{P|xdgconfighome}}/Bob Bates LLC/Thaumistry.conf}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/Bob Bates LLC/Thaumistry/saves/}}' -Thayer's Quest: + - "{{Game data/config|Linux|{{P|xdgconfighome}}/Bob Bates LLC/Thaumistry.conf}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/Bob Bates LLC/Thaumistry/saves/}}" +"Thayer's Quest": pageId: 76813 -'The "Quiet, Please!" Collection': +"The \"Quiet, Please!\" Collection": pageId: 90026 steam: 817820 -'The $100,000 Pyramid': +"The $100,000 Pyramid": pageId: 177108 The 111th Soul: pageId: 77088 steam: 749050 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Ricardo Pratas\The 111th Soul\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Ricardo Pratas\\The 111th Soul\\}}" The 11th Hour: gog: 1207659000 pageId: 7219 steam: 255940 templates: - - '{{Game data/config|Windows|{{p|game}}\*.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\s11h.*}}' -'The 13th Doll: A Fan Game of The 7th Guest': + - "{{Game data/config|Windows|{{p|game}}\\*.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\s11h.*}}" +"The 13th Doll: A Fan Game of The 7th Guest": gog: 1365954542 pageId: 142089 steam: 1107230 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Attic Door Productions\The13thDoll\}}' - - '{{Game data/saves|Windows|{{P|hkcu}}\Software\Attic Door Productions\The13thDoll\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Attic Door Productions\\The13thDoll\\}}" + - "{{Game data/saves|Windows|{{P|hkcu}}\\Software\\Attic Door Productions\\The13thDoll\\}}" The 13th Heir - Ragnarok Chapter 2: pageId: 78188 steam: 759900 The 2048: pageId: 65413 steam: 674310 -'The 25th Ward: The Silver Case': +"The 25th Ward: The Silver Case": gog: 1525754046 pageId: 72409 steam: 697650 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\ActiveGamingMedia\The 25th Ward: The Silver Case\}}' - - '{{Game data/saves|Windows|{{p|game}}\save}}' - - '{{Game data/saves|OS X|{{p|game}}\save}}' - - '{{Game data/saves|Linux|{{p|game}}\save}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\ActiveGamingMedia\\The 25th Ward: The Silver Case\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\save}}" + - "{{Game data/saves|OS X|{{p|game}}\\save}}" + - "{{Game data/saves|Linux|{{p|game}}\\save}}" The 37th Week: pageId: 75998 steam: 733060 @@ -163977,9 +159516,9 @@ The 39 Steps: pageId: 13035 steam: 234940 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\The Story Mechanics\The 39 Steps}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/The Story Mechanics/The 39 Steps/}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\The Story Mechanics\The 39 Steps\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\The Story Mechanics\\The 39 Steps}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/The Story Mechanics/The 39 Steps/}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\The Story Mechanics\\The 39 Steps\\}}" The 3rd Building 三教: pageId: 135977 steam: 942010 @@ -163997,21 +159536,21 @@ The 7th Guest: pageId: 7227 steam: 255920 templates: - - '{{Game data/config|DOS|{{p|game}}\GROOVIE.INI}}' - - '{{Game data/saves|DOS|{{p|game}}\t7g.*}}' - - '{{Game data/saves|Windows|{{p|game}}\t7g.*}}' + - "{{Game data/config|DOS|{{p|game}}\\GROOVIE.INI}}" + - "{{Game data/saves|DOS|{{p|game}}\\t7g.*}}" + - "{{Game data/saves|Windows|{{p|game}}\\t7g.*}}" The 7th Guest VR: pageId: 187527 steam: 2456960 -'The 7th Guest: 25th Anniversary Edition': +"The 7th Guest: 25th Anniversary Edition": gog: 1270716073 pageId: 132148 steam: 1044340 steamSide: - 1048430 templates: - - '{{Game data/config|Windows|{{P|game}}\Saved games}}' - - '{{Game data/saves|Windows|{{P|game}}\Saved games}}' + - "{{Game data/config|Windows|{{P|game}}\\Saved games}}" + - "{{Game data/saves|Windows|{{P|game}}\\Saved games}}" The 8th Day: pageId: 105627 steam: 563500 @@ -164026,23 +159565,23 @@ The Abbey: steam: 313200 steamSide: - 1019020 -The Abbey - Director's cut: +"The Abbey - Director's cut": pageId: 129733 steam: 1019020 The Abbey of Crime Extensum: pageId: 42999 steam: 474030 -'The Ables: Freepoint High': +"The Ables: Freepoint High": pageId: 43694 steam: 427640 -'The Academy: The First Riddle': +"The Academy: The First Riddle": pageId: 166822 steam: 1155460 -'The Addams Family: Mansion Mayhem': +"The Addams Family: Mansion Mayhem": pageId: 170381 steam: 1543830 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Outright Games Ltd\The Addams Family: Mansion Mayhem}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Outright Games Ltd\\The Addams Family: Mansion Mayhem}}" The Adliberum Engine: pageId: 63839 steam: 657180 @@ -164050,14 +159589,14 @@ The Admin: pageId: 39504 steam: 420300 templates: - - '{{Game data/config|Windows|"...\steamapps\common\The Admin\Engine\Config\Windows"}}' + - "{{Game data/config|Windows|\"...\\steamapps\\common\\The Admin\\Engine\\Config\\Windows\"}}" The Adventure Pals: gog: 1391555008 pageId: 68220 steam: 396710 templates: - - '{{Game data/config|Windows|{{P|userprofile}}\AppData\LocalLow\Massive Monster\The Adventure Pals\{{P|uid}}\}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Massive Monster\The Adventure Pals\{{P|uid}}\saves\}}' + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Massive Monster\\The Adventure Pals\\{{P|uid}}\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Massive Monster\\The Adventure Pals\\{{P|uid}}\\saves\\}}" The Adventure of Kroos: pageId: 77130 steam: 747330 @@ -164068,14 +159607,12 @@ The Adventure of Nayu: pageId: 166209 steam: 1476340 templates: - - '{{Game data/config|Windows|{{P|appdata}}\TheAdventureOfNayu\config.dat}}' - - >- - {{Game - data/saves|Windows|{{P|appdata}}\TheAdventureOfNayu\achievement.dat|{{P|appdata}}\TheAdventureOfNayu\party_data.dat}} -'The Adventurer - Episode 1: Beginning of the End': + - "{{Game data/config|Windows|{{P|appdata}}\\TheAdventureOfNayu\\config.dat}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\TheAdventureOfNayu\\achievement.dat|{{P|appdata}}\\TheAdventureOfNayu\\party_data.dat}}" +"The Adventurer - Episode 1: Beginning of the End": pageId: 66765 steam: 628760 -'The Adventurer - Episode 2: New Dreams': +"The Adventurer - Episode 2: New Dreams": pageId: 165072 steam: 1320110 The Adventurer and His Backpack: @@ -164099,10 +159636,8 @@ The Adventures of Clive McMulligan on Planet Zeta Four: The Adventures of Commander Shepard: pageId: 167226 templates: - - >- - {{Game data/config|Windows|{{P|localappdata}}\Kung-Fu Circus Games\The Adventures of Commander - Shepard\config.ini}} - - '{{Game data/saves|Windows|{{P|localappdata}}\Kung-Fu Circus Games\The Adventures of Commander Shepard\Savegames}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\Kung-Fu Circus Games\\The Adventures of Commander Shepard\\config.ini}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Kung-Fu Circus Games\\The Adventures of Commander Shepard\\Savegames}}" The Adventures of Dumpy: pageId: 126167 steam: 845090 @@ -164113,8 +159648,8 @@ The Adventures of Fatman: pageId: 46204 steam: 395250 templates: - - '{{Game data/config|Windows|{{P|userprofile}}\Saved Games\The Adventures of Fatman\acsetup.cfg}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\Saved Games\The Adventures of Fatman\agssave.*}}' + - "{{Game data/config|Windows|{{P|userprofile}}\\Saved Games\\The Adventures of Fatman\\acsetup.cfg}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\Saved Games\\The Adventures of Fatman\\agssave.*}}" The Adventures of Fei Duanmu: pageId: 58916 steam: 593200 @@ -164147,7 +159682,7 @@ The Adventures of Nick & Willikins: The Adventures of Perseus: pageId: 129829 steam: 1031590 -'The Adventures of Sam Carlisle: The Hunt for the Lost Treasure': +"The Adventures of Sam Carlisle: The Hunt for the Lost Treasure": pageId: 74401 steam: 726500 The Adventures of Shuggy: @@ -164155,38 +159690,36 @@ The Adventures of Shuggy: pageId: 11493 steam: 211440 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\SavedGames\Shuggy\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Shuggy/}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/Shuggy/}}' - - '{{Game data/config|Steam|{{p|steam}}/userdata/{{p|uid}}/211440/}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\SavedGames\Shuggy\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Shuggy/}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/Shuggy/}}' - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/211440/}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\SavedGames\\Shuggy\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Shuggy/}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/Shuggy/}}" + - "{{Game data/config|Steam|{{p|steam}}/userdata/{{p|uid}}/211440/}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\SavedGames\\Shuggy\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Shuggy/}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/Shuggy/}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/211440/}}" The Adventures of Square: pageId: 166765 The Adventures of Sullivan: pageId: 144039 steam: 1124430 templates: - - '{{Game data/saves|Windows|{{p|localappdata}}\The_Adventures_of_Sullivan}}' + - "{{Game data/saves|Windows|{{p|localappdata}}\\The_Adventures_of_Sullivan}}" The Adventures of Team Australia: pageId: 121245 steam: 951100 -'The Adventures of Tintin: The Game': +"The Adventures of Tintin: The Game": pageId: 89000 steam: 202330 templates: - - '{{Game data/config|Windows|{{p|userprofile\documents}}\The Adventures of Tintin\Tintin.config}}' - - '{{Game data/saves|Windows|{{p|userprofile\documents}}\The Adventures of Tintin\}}' + - "{{Game data/config|Windows|{{p|userprofile\\documents}}\\The Adventures of Tintin\\Tintin.config}}" + - "{{Game data/saves|Windows|{{p|userprofile\\documents}}\\The Adventures of Tintin\\}}" The Adventures of Tree: pageId: 44373 steam: 354860 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Tiger Studios\The Adventures Of Tree\}}' - - >- - {{Game data/saves|Windows|{{p|USERPROFILE}}\AppData\LocalLow\Tiger Studios\The Adventures Of - Tree\|{{p|game}}\TheAdventuresOfTree_Data\Save data\}} + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Tiger Studios\\The Adventures Of Tree\\}}" + - "{{Game data/saves|Windows|{{p|USERPROFILE}}\\AppData\\LocalLow\\Tiger Studios\\The Adventures Of Tree\\|{{p|game}}\\TheAdventuresOfTree_Data\\Save data\\}}" The Adventures of Willow and Ash: pageId: 152997 steam: 1186080 @@ -164196,13 +159729,13 @@ The Adventures of Willy Beamish: The Adventurous Four: pageId: 89518 steam: 815070 -'The Aether: Life as a God': +"The Aether: Life as a God": pageId: 124040 steam: 987190 The Afterglow of Grisaia: pageId: 42231 steam: 464490 -'The Aftermath: Unnatural Selection': +"The Aftermath: Unnatural Selection": pageId: 157346 steam: 1193620 The Afterwoods: @@ -164213,26 +159746,26 @@ The Age of Decadence: pageId: 12507 steam: 230070 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Age Of Decadence\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Age Of Decadence\}}' -'The Agency of Anomalies: Cinderstone Orphanage': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Age Of Decadence\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Age Of Decadence\\}}" +"The Agency of Anomalies: Cinderstone Orphanage": pageId: 53660 renamedFrom: - - 'The Agency of Anomalies: Cinderstone Orphanage Collector''s Edition' + - "The Agency of Anomalies: Cinderstone Orphanage Collector's Edition" steam: 558670 -'The Agency of Anomalies: Mind Invasion': +"The Agency of Anomalies: Mind Invasion": pageId: 81960 steam: 796050 -'The Agency of Anomalies: Mystic Hospital': +"The Agency of Anomalies: Mystic Hospital": pageId: 42279 steam: 503060 -'The Agency of Anomalies: The Last Performance': +"The Agency of Anomalies: The Last Performance": pageId: 63320 steam: 647890 -'The Agency: Chapter 1': +"The Agency: Chapter 1": pageId: 42380 steam: 492280 -'The Agency: Chapter 2': +"The Agency: Chapter 2": pageId: 87312 steam: 778760 The Agony: @@ -164251,12 +159784,12 @@ The Albino Hunter: pageId: 25783 steam: 355520 templates: - - '{{Game data/config|Windows|{{P|game}}\Game.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\Save01.rvdata2}}' + - "{{Game data/config|Windows|{{P|game}}\\Game.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\Save01.rvdata2}}" The Alchemist: pageId: 96027 steam: 762000 -The Alchemist's House: +"The Alchemist's House": pageId: 156085 steam: 1208520 The Alien Cube: @@ -164267,25 +159800,21 @@ The Alliance Alive HD Remastered: pageId: 130723 steam: 1027250 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\Saved Games\TheAllianceAliveHD}}' + - "{{Game data/saves|Windows|{{p|userprofile}}\\Saved Games\\TheAllianceAliveHD}}" The Almost Gone: pageId: 145272 steam: 1115780 templates: - - >- - {{Game data/config|Windows|{{P|userprofile\appdata\locallow}}\Happy Volcano\The Almost - Gone\SaveFiles.dat|{{P|hkcu}}\Software\Happy Volcano\The Almost Gone\}} - - >- - {{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Happy Volcano\The Almost - Gone\SaveData*.dat|{{P|userprofile\appdata\locallow}}\Happy Volcano\The Almost Gone\SaveFiles.dat}} + - "{{Game data/config|Windows|{{P|userprofile\\appdata\\locallow}}\\Happy Volcano\\The Almost Gone\\SaveFiles.dat|{{P|hkcu}}\\Software\\Happy Volcano\\The Almost Gone\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Happy Volcano\\The Almost Gone\\SaveData*.dat|{{P|userprofile\\appdata\\locallow}}\\Happy Volcano\\The Almost Gone\\SaveFiles.dat}}" The Alpha Device: pageId: 82067 steam: 786570 The Alto Collection: pageId: 162443 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Team Alto\The Alto Collection\}}' - - '{{Game data/saves|Windows|{{P|hkcu}}\Software\Team Alto\The Alto Collection\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Team Alto\\The Alto Collection\\}}" + - "{{Game data/saves|Windows|{{P|hkcu}}\\Software\\Team Alto\\The Alto Collection\\}}" The Amazing Adventures of Ash - Afterparty: pageId: 44876 steam: 437170 @@ -164297,11 +159826,11 @@ The Amazing American Circus: pageId: 168520 steam: 1433860 templates: - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Klabater\The Amazing American Circus\Saves\}}' + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Klabater\\The Amazing American Circus\\Saves\\}}" The Amazing Bernard: pageId: 91072 steam: 822720 -'The Amazing Shinsengumi: Heroes in Love': +"The Amazing Shinsengumi: Heroes in Love": pageId: 42039 steam: 494440 The Amazing Shrinking Giraffe: @@ -164311,21 +159840,21 @@ The Amazing Spider-Man (2012): pageId: 4240 steam: 212580 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Activision\ASM}}' - - '{{Game data/saves|Windows|{{p|steam}}\userdata\{{p|uid}}\212580\remote}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Activision\\ASM}}" + - "{{Game data/saves|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\212580\\remote}}" The Amazing Spider-Man 2: pageId: 16973 steam: 267550 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Activision\The Amazing Spider-Man 2 (TM)\}}' - - '{{Game data/saves|Windows|{{p|steam}}\userdata\{{p|uid}}\267550\}}' -The Amazing T.K's Suburban Nightmares: + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Activision\\The Amazing Spider-Man 2 (TM)\\}}" + - "{{Game data/saves|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\267550\\}}" +"The Amazing T.K's Suburban Nightmares": pageId: 153889 steam: 1198570 The Amazonian Dread: pageId: 110792 steam: 933900 -'The Ambassador: Fractured Timelines': +"The Ambassador: Fractured Timelines": pageId: 157141 renamedFrom: - The Ambassador @@ -164336,19 +159865,17 @@ The Amber Throne: The American Dream: pageId: 89355 steam: 456180 -'The American Girls: Dress Designer': +"The American Girls: Dress Designer": pageId: 53009 templates: - - '{{Game data/config|Windows|{{p|game}}\Dress Designer.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\Data}}' + - "{{Game data/config|Windows|{{p|game}}\\Dress Designer.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\Data}}" The Anacrusis: pageId: 172807 steam: 1120480 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Anacrusis\Saved\Config\WindowsNoEditor}}' - - >- - {{Game data/config|Microsoft - Store|{{p|localappdata}}\Packages\StrayBombayCompany.TheAnacrusisGamePreview_wshdcf4tacg46\LocalCache\Local\Anacrusis\Saved\Config\WinGDK}} + - "{{Game data/config|Windows|{{p|localappdata}}\\Anacrusis\\Saved\\Config\\WindowsNoEditor}}" + - "{{Game data/config|Microsoft Store|{{p|localappdata}}\\Packages\\StrayBombayCompany.TheAnacrusisGamePreview_wshdcf4tacg46\\LocalCache\\Local\\Anacrusis\\Saved\\Config\\WinGDK}}" The Ancient Labyrinth: pageId: 149519 steam: 1150400 @@ -164383,12 +159910,12 @@ The Aquatic Adventure of the Last Human: pageId: 34276 steam: 401360 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\TheAquaticAdventureOfTheLastHuman\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\TheAquaticAdventureOfTheLastHuman\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\TheAquaticAdventureOfTheLastHuman\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\TheAquaticAdventureOfTheLastHuman\\}}" The Arab Republic of Taghia: pageId: 148547 steam: 796590 -'The Archer: Dead Hunt': +"The Archer: Dead Hunt": pageId: 81681 steam: 791430 The Archetype: @@ -164397,7 +159924,7 @@ The Archetype: The Architect: pageId: 47625 steam: 375420 -'The Architect: Paris': +"The Architect: Paris": gog: 1646541845 pageId: 168370 steam: 1525620 @@ -164405,11 +159932,11 @@ The Archotek Project: pageId: 61624 steam: 608990 templates: - - '{{Game data/config|Windows|{{P|game}}\ATP\Saved\Config\WindowsNoEditor\}}' + - "{{Game data/config|Windows|{{P|game}}\\ATP\\Saved\\Config\\WindowsNoEditor\\}}" The Arcslinger: pageId: 94251 steam: 381550 -'The Area 51 Secret: Boombox Killer': +"The Area 51 Secret: Boombox Killer": pageId: 149654 steam: 1154440 The Arena of Gladiators: @@ -164440,14 +159967,10 @@ The Artful Escape: pageId: 157385 steam: 1122680 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\ArtfulEscape\Saved\Config\WindowsNoEditor}}' - - >- - {{Game data/config|Microsoft - Store|{{p|localappdata}}\Packages\AnnapurnaInteractive.TheArtfulEscape_c96c51jf6wkvm\LocalCache\Local\ArtfulEscape\Saved\Config\WinGDK\}} - - '{{Game data/saves|Windows|{{p|localappdata}}\ArtfulEscape\Saved\SaveGames\Steam\}}' - - >- - {{Game data/saves|Microsoft - Store|{{p|localappdata}}\Packages\AnnapurnaInteractive.TheArtfulEscape_c96c51jf6wkvm\SystemAppData\wgs}} + - "{{Game data/config|Windows|{{p|localappdata}}\\ArtfulEscape\\Saved\\Config\\WindowsNoEditor}}" + - "{{Game data/config|Microsoft Store|{{p|localappdata}}\\Packages\\AnnapurnaInteractive.TheArtfulEscape_c96c51jf6wkvm\\LocalCache\\Local\\ArtfulEscape\\Saved\\Config\\WinGDK\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\ArtfulEscape\\Saved\\SaveGames\\Steam\\}}" + - "{{Game data/saves|Microsoft Store|{{p|localappdata}}\\Packages\\AnnapurnaInteractive.TheArtfulEscape_c96c51jf6wkvm\\SystemAppData\\wgs}}" The Artifact: pageId: 61673 steam: 532920 @@ -164464,18 +159987,16 @@ The Ascent: pageId: 160679 steam: 979690 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\TheAscent\Saved\Config\WindowsNoEditor}}' - - >- - {{Game data/config|Microsoft - Store|{{P|localappdata}}\Packages\CurveDigital.TheAscent_1ezqdnbhnc70m\LocalCache\Local\TheAscent\Saved\Config\WinGDK\}} - - '{{Game data/saves|Steam|{{P|localappdata}}\TheAscent\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\TheAscent\\Saved\\Config\\WindowsNoEditor}}" + - "{{Game data/config|Microsoft Store|{{P|localappdata}}\\Packages\\CurveDigital.TheAscent_1ezqdnbhnc70m\\LocalCache\\Local\\TheAscent\\Saved\\Config\\WinGDK\\}}" + - "{{Game data/saves|Steam|{{P|localappdata}}\\TheAscent\\Saved\\SaveGames\\}}" The Assembly: pageId: 42259 steam: 373650 The Asskickers: pageId: 48759 steam: 348650 -The Asteroid Belt's Trial: +"The Asteroid Belt's Trial": pageId: 107890 steam: 905590 The Astonishing Game: @@ -164506,18 +160027,18 @@ The Away Team: pageId: 42123 steam: 426290 templates: - - '{{Game data/config|Windows|{{p|game}}\options.json}}' - - '{{Game data/saves|Windows|{{p|game}}\save.json}}' + - "{{Game data/config|Windows|{{p|game}}\\options.json}}" + - "{{Game data/saves|Windows|{{p|game}}\\save.json}}" The Awesome Adventures of Captain Spirit: pageId: 97245 steam: 845070 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Dontnod\{{p|uid}}\CaptainSpirit\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Dontnod\{{p|uid}}\CaptainSpirit\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Dontnod\\{{p|uid}}\\CaptainSpirit\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Dontnod\\{{p|uid}}\\CaptainSpirit\\Saved\\SaveGames\\}}" The Awkward Steve Duology: pageId: 64560 steam: 536770 -'The Axys Adventures: Truth Seeker': +"The Axys Adventures: Truth Seeker": pageId: 127088 The Backroom - Lost and Found: pageId: 180358 @@ -164535,10 +160056,10 @@ The Baconing: pageId: 8603 steam: 18070 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Hothead Games\TheBaconing\}}' - - '{{Game data/config|Steam|{{p|steam}}/userdata/{{p|uid}}/18070/}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Hothead Games\TheBaconing\}}' - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/18070/}}' + - "{{Game data/config|Windows|{{p|appdata}}\\Hothead Games\\TheBaconing\\}}" + - "{{Game data/config|Steam|{{p|steam}}/userdata/{{p|uid}}/18070/}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Hothead Games\\TheBaconing\\}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/18070/}}" The Bad Gravedigger: pageId: 96603 steam: 870120 @@ -164550,24 +160071,24 @@ The Ball: pageId: 8388 steam: 35460 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\The Ball\UDKGame\Config\}}' - - '{{Game data/config|Steam|{{p|userprofile\Documents}}\My Games\The Ball\UDKGame\Config\}}' - - '{{Game data/saves|Windows|{{P|game}}\UDKGame\Config\}}' - - '{{Game data/saves|Steam|{{p|userprofile\Documents}}\My Games\The Ball\UDKGame\Config\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\The Ball\\UDKGame\\Config\\}}" + - "{{Game data/config|Steam|{{p|userprofile\\Documents}}\\My Games\\The Ball\\UDKGame\\Config\\}}" + - "{{Game data/saves|Windows|{{P|game}}\\UDKGame\\Config\\}}" + - "{{Game data/saves|Steam|{{p|userprofile\\Documents}}\\My Games\\The Ball\\UDKGame\\Config\\}}" The Ball Encounter: pageId: 109990 steam: 919610 The Ballad Singer: pageId: 109516 steam: 907380 -'The Ballad Singer: Knights Templar': +"The Ballad Singer: Knights Templar": pageId: 179439 steam: 1820400 -'The Ballads of Reemus: When the Bed Bites': +"The Ballads of Reemus: When the Bed Bites": gog: 1207660373 pageId: 19027 steam: 327450 -'The Balloonist: Beyond the Clouds': +"The Balloonist: Beyond the Clouds": pageId: 76227 steam: 681380 The Banner Saga: @@ -164577,47 +160098,47 @@ The Banner Saga: pageId: 14233 steam: 237990 templates: - - '{{Game data/config|Windows|{{p|appdata}}\TheBannerSaga\Local Store}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/TheBannerSaga/Local Store}}' - - '{{Game data/saves|Windows|{{p|appdata}}\TheBannerSaga\Local Store\save\saga1}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/TheBannerSaga/Local Store/save/saga1}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.local/share/Steam/userdata/{{P|uid}}/237990/remote/save/saga1}}' + - "{{Game data/config|Windows|{{p|appdata}}\\TheBannerSaga\\Local Store}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/TheBannerSaga/Local Store}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\TheBannerSaga\\Local Store\\save\\saga1}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/TheBannerSaga/Local Store/save/saga1}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.local/share/Steam/userdata/{{P|uid}}/237990/remote/save/saga1}}" The Banner Saga 2: gog: 1775067436 gogSide: - - 1750475420 - 1312830628 + - 1750475420 pageId: 34143 steam: 281640 templates: - - '{{Game data/config|Windows|{{p|appdata}}\TheBannerSaga2\Local Store}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/TheBannerSaga2/Local Store}}' - - '{{Game data/saves|Windows|{{p|appdata}}\TheBannerSaga2\Local Store\save\saga2}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/TheBannerSaga2/Local Store/save/saga2}}' + - "{{Game data/config|Windows|{{p|appdata}}\\TheBannerSaga2\\Local Store}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/TheBannerSaga2/Local Store}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\TheBannerSaga2\\Local Store\\save\\saga2}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/TheBannerSaga2/Local Store/save/saga2}}" The Banner Saga 3: gog: 1599390867 gogSide: - 1127573289 - - 1875032085 - - 1634400583 - - 1840677940 + - 1140895842 - 1399959690 - 1552123654 - - 1140895842 - - 2134354904 + - 1634400583 + - 1840677940 + - 1875032085 - 1954833607 + - 2134354904 pageId: 89718 steam: 485460 steamSide: - - 911590 - - 958730 - 509590 - 907120 - 911000 + - 911590 + - 958730 templates: - - '{{Game data/config|Windows|{{p|appdata}}\TheBannerSaga3\Local Store}}' - - '{{Game data/saves|Windows|{{p|appdata}}\TheBannerSaga3\Local Store\save\saga3}}' -'The Banner Saga: Factions': + - "{{Game data/config|Windows|{{p|appdata}}\\TheBannerSaga3\\Local Store}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\TheBannerSaga3\\Local Store\\save\\saga3}}" +"The Banner Saga: Factions": pageId: 5174 steam: 219340 The Bar: @@ -164626,60 +160147,52 @@ The Bar: The Barbarian and the Subterranean Caves: pageId: 57667 steam: 490690 -The Bard's Tale: +"The Bard's Tale": pageId: 13694 templates: - - '{{Game data/saves|DOS|A:\*.TPW|{{p|game}}\*.TPW}}' -The Bard's Tale (2005): + - "{{Game data/saves|DOS|A:\\*.TPW|{{p|game}}\\*.TPW}}" +"The Bard's Tale (2005)": gog: 1207659164 pageId: 11714 steam: 41900 templates: - - >- - {{Game data/config|Windows|{{p|localappdata}}\inXile entertainment\*.bin|{{p|hkcu}}\Software\inXile - Entertainment\The Bard's Tale}} - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/The Bard''s Tale/settings.bin}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/BardTale/}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\inXile entertainment\The Bard''s Tale\Saved Games\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/The Bard''s Tale/SavedGames/}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/BardTale/}}' -'The Bard''s Tale II: The Destiny Knight': + - "{{Game data/config|Windows|{{p|localappdata}}\\inXile entertainment\\*.bin|{{p|hkcu}}\\Software\\inXile Entertainment\\The Bard's Tale}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/The Bard's Tale/settings.bin}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/BardTale/}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\inXile entertainment\\The Bard's Tale\\Saved Games\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/The Bard's Tale/SavedGames/}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/BardTale/}}" +"The Bard's Tale II: The Destiny Knight": pageId: 13695 templates: - - '{{Game data/saves|DOS|A:\*.TW|A:\SAVE.GAM|{{p|game}}\*.TW|{{p|game}}\SAVE.GAM}}' -'The Bard''s Tale III: Thief of Fate': + - "{{Game data/saves|DOS|A:\\*.TW|A:\\SAVE.GAM|{{p|game}}\\*.TW|{{p|game}}\\SAVE.GAM}}" +"The Bard's Tale III: Thief of Fate": pageId: 13697 templates: - - '{{Game data/config|DOS|{{P|game}}\THIEF.CFG}}' - - '{{Game data/saves|DOS|{{p|game}}\SAVE.GAM|{{p|game}}\PARTIES.INF|{{p|game}}\THIEVES.INF}}' -'The Bard''s Tale IV: Barrows Deep': + - "{{Game data/config|DOS|{{P|game}}\\THIEF.CFG}}" + - "{{Game data/saves|DOS|{{p|game}}\\SAVE.GAM|{{p|game}}\\PARTIES.INF|{{p|game}}\\THIEVES.INF}}" +"The Bard's Tale IV: Barrows Deep": gog: 1178190421 pageId: 91252 steam: 566090 templates: - - >- - {{Game - data/config|Windows|{{p|localappdata}}\Packages\181CBCCD.TheBardsTaleIV_9y3t8zad226mc\LocalCache\Local\BardsTale4DC\Saved\Config\WindowsNoEditor}} -'The Bard''s Tale IV: Director''s Cut': + - "{{Game data/config|Windows|{{p|localappdata}}\\Packages\\181CBCCD.TheBardsTaleIV_9y3t8zad226mc\\LocalCache\\Local\\BardsTale4DC\\Saved\\Config\\WindowsNoEditor}}" +"The Bard's Tale IV: Director's Cut": gog: 1487730861 pageId: 141935 steam: 1091980 templates: - - >- - {{Game - data/config|Windows|{{P|localappdata}}\BardsTale4DC\Saved\SaveGames\BT_Prefs.sav|{{P|localappdata}}\BardsTale4DC\Saved\Config\WindowsNoEditor\}} - - >- - {{Game - data/config|Linux|{{p|linuxhome}}/.config/Epic/BardsTale4DC/Saved/SaveGames/BT_Prefs.sav|{{p|linuxhome}}/.config/Epic/BardsTale4DC/Saved/Config/LinuxNoEditor}} - - '{{Game data/saves|Windows|{{P|localappdata}}\BardsTale4DC\Saved\SaveGames\}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/Epic/BardsTale4DC/Saved/SaveGames/}}' -The Bard's Tale Trilogy: + - "{{Game data/config|Windows|{{P|localappdata}}\\BardsTale4DC\\Saved\\SaveGames\\BT_Prefs.sav|{{P|localappdata}}\\BardsTale4DC\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/Epic/BardsTale4DC/Saved/SaveGames/BT_Prefs.sav|{{p|linuxhome}}/.config/Epic/BardsTale4DC/Saved/Config/LinuxNoEditor}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\BardsTale4DC\\Saved\\SaveGames\\}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/Epic/BardsTale4DC/Saved/SaveGames/}}" +"The Bard's Tale Trilogy": gog: 2147483059 pageId: 108580 steam: 843260 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\InXile Entertainment\The Bard''s Tale Trilogy}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\InXile Entertainment\The Bard''s Tale Trilogy\saves}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\InXile Entertainment\\The Bard's Tale Trilogy}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\InXile Entertainment\\The Bard's Tale Trilogy\\saves}}" The Baron Got You Again: pageId: 67143 steam: 538050 @@ -164690,9 +160203,9 @@ The Basement Collection: pageId: 4821 steam: 214790 templates: - - '{{Game data/config|Windows|{{p|game}}\META-INF\AIR}}' - - '{{Game data/saves|Windows|{{p|appdata}}\collection}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Preferences/collection/Local Store/#SharedObjects}}' + - "{{Game data/config|Windows|{{p|game}}\\META-INF\\AIR}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\collection}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Preferences/collection/Local Store/#SharedObjects}}" The Basilisk: pageId: 100294 steam: 873410 @@ -164712,9 +160225,9 @@ The Battle for Wesnoth: pageId: 17699 steam: 599390 templates: - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Wesnoth_\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Wesnoth_/}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/wesnoth//}}' + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Wesnoth_\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Wesnoth_/}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/wesnoth//}}" The Battle for the Hut: pageId: 92726 steam: 845610 @@ -164725,7 +160238,7 @@ The Battle of Polytopia: pageId: 109168 steam: 874390 templates: - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Midjiwan\Polytopia\}}' + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Midjiwan\\Polytopia\\}}" The Battle of Sol: pageId: 47411 steam: 282620 @@ -164752,37 +160265,37 @@ The Beast Inside: pageId: 87625 steam: 792300 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\TheBeastInside\Saved\Config\WindowsNoEditor}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\TheBeastInside\Saved\SaveGames}}' -'The Beast Within: A Gabriel Knight Mystery': + - "{{Game data/config|Windows|{{P|localappdata}}\\TheBeastInside\\Saved\\Config\\WindowsNoEditor}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\TheBeastInside\\Saved\\SaveGames}}" +"The Beast Within: A Gabriel Knight Mystery": gog: 1207658837 pageId: 36670 steam: 496760 templates: - - '{{Game data/config|DOS|{{p|game}}\RESOURCE.CFG}}' - - '{{Game data/config|Windows|{{p|game}}\RESOURCE.WIN}}' - - '{{Game data/saves|DOS|{{p|game}}\GK2SG.*}}' - - '{{Game data/saves|Windows|{{p|game}}\GK2SG.*}}' + - "{{Game data/config|DOS|{{p|game}}\\RESOURCE.CFG}}" + - "{{Game data/config|Windows|{{p|game}}\\RESOURCE.WIN}}" + - "{{Game data/saves|DOS|{{p|game}}\\GK2SG.*}}" + - "{{Game data/saves|Windows|{{p|game}}\\GK2SG.*}}" The Beast of Gevaudan: pageId: 141722 steam: 1106740 -'The Beat: A Glam Noir Game': +"The Beat: A Glam Noir Game": pageId: 105043 steam: 840110 The Bedtime Story: pageId: 58338 steam: 551650 -The Beggar's Ride: +"The Beggar's Ride": pageId: 43185 steam: 463760 -The Beginner's Guide: +"The Beginner's Guide": pageId: 30645 steam: 303210 steamSide: - 406460 templates: - - '{{Game data/config|Windows|{{p|game}}\beginnersguide\cfg\}}' - - '{{Game data/saves|Windows|{{P|game}}\beginnersguide\cfg}}' + - "{{Game data/config|Windows|{{p|game}}\\beginnersguide\\cfg\\}}" + - "{{Game data/saves|Windows|{{P|game}}\\beginnersguide\\cfg}}" The Behind - The Beyond: pageId: 81780 steam: 786980 @@ -164807,7 +160320,7 @@ The Big Con: pageId: 145443 steam: 1139280 templates: - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\Mighty Yell Studios\The Big Con\SaveGameData}}' + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\Mighty Yell Studios\\The Big Con\\SaveGameData}}" The Big Elk: pageId: 37606 steam: 449440 @@ -164815,13 +160328,13 @@ The Big Journey: pageId: 81115 steam: 742480 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Catfishbox\The Big Journey\}}' - - '{{Game data/saves|Windows|{{P|steam}}/userdata/{{P|uid}}/742480/remote/SavedGames/}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Catfishbox\\The Big Journey\\}}" + - "{{Game data/saves|Windows|{{P|steam}}/userdata/{{P|uid}}/742480/remote/SavedGames/}}" The Big Red Adventure: pageId: 147015 templates: - - '{{Game data/config|DOS|{{p|game}}\TBRA.BAT}}' - - '{{Game data/saves|DOS|{{p|game}}\SAVE\}}' + - "{{Game data/config|DOS|{{p|game}}\\TBRA.BAT}}" + - "{{Game data/saves|DOS|{{p|game}}\\SAVE\\}}" The Big Secret of a Small Town: pageId: 45948 steam: 409090 @@ -164835,13 +160348,13 @@ The Binding of Isaac: pageId: 135 steam: 113200 templates: - - '{{Game data/config|Windows|{{p|game}}\serial.txt}}' - - '{{Game data/config|OS X|{{p|game}}/serial.txt}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.macromedia/Flash_Player/#SharedObjects/WGGUXPNQ/localhost/so.sol}}' - - '{{Game data/saves|Windows|{{p|game}}\serial.txt}}' - - '{{Game data/saves|OS X|{{p|game}}/serial.txt}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.macromedia/Flash_Player/#SharedObjects/WGGUXPNQ/localhost/so.sol}}' -'The Binding of Isaac: Rebirth': + - "{{Game data/config|Windows|{{p|game}}\\serial.txt}}" + - "{{Game data/config|OS X|{{p|game}}/serial.txt}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.macromedia/Flash_Player/#SharedObjects/WGGUXPNQ/localhost/so.sol}}" + - "{{Game data/saves|Windows|{{p|game}}\\serial.txt}}" + - "{{Game data/saves|OS X|{{p|game}}/serial.txt}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.macromedia/Flash_Player/#SharedObjects/WGGUXPNQ/localhost/so.sol}}" +"The Binding of Isaac: Rebirth": gog: 1205572215 gogSide: - 1450497670 @@ -164852,20 +160365,14 @@ The Binding of Isaac: steamSide: - 322660 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Binding of Isaac - Rebirth\|{{p|userprofile\Documents}}\My Games\Binding of Isaac Afterbirth\|{{p|userprofile\Documents}}\My - Games\Binding of Isaac Afterbirth+\|{{p|userprofile\Documents}}\My Games\Binding of Isaac Repentance\}} - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Binding of Isaac Rebirth/}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/binding of isaac rebirth/}}' - - '{{Game data/config|Steam|{{P|Steam}}/userdata/{{P|uid}}/250900/remote/}}' - - >- - {{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Binding of Isaac - Rebirth\|{{p|userprofile\Documents}}\My Games\Binding of Isaac Afterbirth\|{{p|userprofile\Documents}}\My - Games\Binding of Isaac Afterbirth+\|{{p|userprofile\Documents}}\My Games\Binding of Isaac Repentance\}} - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Binding of Isaac Rebirth/}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/binding of isaac rebirth/}}' - - '{{Game data/saves|Steam|{{P|Steam}}/userdata/{{P|uid}}/250900/remote/}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Binding of Isaac Rebirth\\|{{p|userprofile\\Documents}}\\My Games\\Binding of Isaac Afterbirth\\|{{p|userprofile\\Documents}}\\My Games\\Binding of Isaac Afterbirth+\\|{{p|userprofile\\Documents}}\\My Games\\Binding of Isaac Repentance\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Binding of Isaac Rebirth/}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/binding of isaac rebirth/}}" + - "{{Game data/config|Steam|{{P|Steam}}/userdata/{{P|uid}}/250900/remote/}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Binding of Isaac Rebirth\\|{{p|userprofile\\Documents}}\\My Games\\Binding of Isaac Afterbirth\\|{{p|userprofile\\Documents}}\\My Games\\Binding of Isaac Afterbirth+\\|{{p|userprofile\\Documents}}\\My Games\\Binding of Isaac Repentance\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Binding of Isaac Rebirth/}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/binding of isaac rebirth/}}" + - "{{Game data/saves|Steam|{{P|Steam}}/userdata/{{P|uid}}/250900/remote/}}" The Binding of YOU (2019): pageId: 149492 renamedFrom: @@ -164880,7 +160387,7 @@ The Bits That Saved the Universe: The Bizarre Adventures of Woodruff and the Schnibble: pageId: 55632 templates: - - '{{Game data/saves|Windows|{{p|game}}\SAVE\}}' + - "{{Game data/saves|Windows|{{p|game}}\\SAVE\\}}" The Bizarre Creations of Keith the Magnificent: pageId: 46258 steam: 392730 @@ -164890,7 +160397,7 @@ The Black Death: pageId: 43534 steam: 412450 templates: - - '{{Game data/config|Windows|{{P|game}}\Plague\Config\}}' + - "{{Game data/config|Windows|{{P|game}}\\Plague\\Config\\}}" The Black Knight: pageId: 124100 steam: 991490 @@ -164902,12 +160409,12 @@ The Black Mirror: pageId: 19035 steam: 292930 templates: - - '{{Game data/config|Windows|{{p|game}}\agds.cfg}}' + - "{{Game data/config|Windows|{{p|game}}\\agds.cfg}}" The Black Watchmen: pageId: 38210 steam: 349220 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Alice & Smith\The Black Watchmen\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Alice & Smith\\The Black Watchmen\\}}" The Black Widow: pageId: 124354 steam: 984930 @@ -164918,10 +160425,8 @@ The Blackout Club: pageId: 88922 steam: 599080 templates: - - >- - {{Game - data/config|Windows|{{p|localappdata}}\TheBlackoutClub\Saved\Config\WindowsNoEditor\|{{p|localappdata}}\TheBlackoutClub\Saved\SaveData\{{P|uid}}\Options.cloud.dbags|{{p|localappdata}}\TheBlackoutClub\Saved\SaveData\{{P|uid}}\Options.local.dbags}} - - '{{Game data/saves|Windows|{{p|localappdata}}\TheBlackoutClub\Saved\SaveData\{{P|uid}}\Progress.cloud.dbags}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\TheBlackoutClub\\Saved\\Config\\WindowsNoEditor\\|{{p|localappdata}}\\TheBlackoutClub\\Saved\\SaveData\\{{P|uid}}\\Options.cloud.dbags|{{p|localappdata}}\\TheBlackoutClub\\Saved\\SaveData\\{{P|uid}}\\Options.local.dbags}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\TheBlackoutClub\\Saved\\SaveData\\{{P|uid}}\\Progress.cloud.dbags}}" The Blackwell Convergence: gog: 1207662903 gogSide: @@ -164931,11 +160436,11 @@ The Blackwell Convergence: - Blackwell Convergence steam: 80350 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\Saved Games\Blackwell Convergence\acsetup.cfg}}' - - '{{Game data/config|OS X|{{P|game}}/acsetup.cfg}}' - - '{{Game data/config|Linux|{{P|game}}/acsetup.cfg}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\Saved Games\Blackwell Convergence\}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/ags/Blackwell Convergence/}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\Saved Games\\Blackwell Convergence\\acsetup.cfg}}" + - "{{Game data/config|OS X|{{P|game}}/acsetup.cfg}}" + - "{{Game data/config|Linux|{{P|game}}/acsetup.cfg}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Saved Games\\Blackwell Convergence\\}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/ags/Blackwell Convergence/}}" The Blackwell Deception: gog: 1207662913 gogSide: @@ -164945,12 +160450,12 @@ The Blackwell Deception: - Blackwell Deception steam: 80360 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\Saved Games\Blackwell Deception\acsetup.cfg}}' - - '{{Game data/config|OS X|{{p|game}}/acsetup.cfg}}' - - '{{Game data/config|Linux|{{p|game}}/acsetup.cfg}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\Saved Games\Blackwell Deception\}}' - - '{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/Blackwell Deception/}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/ags/Blackwell Deception/}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\Saved Games\\Blackwell Deception\\acsetup.cfg}}" + - "{{Game data/config|OS X|{{p|game}}/acsetup.cfg}}" + - "{{Game data/config|Linux|{{p|game}}/acsetup.cfg}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Saved Games\\Blackwell Deception\\}}" + - "{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/Blackwell Deception/}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/ags/Blackwell Deception/}}" The Blackwell Epiphany: gog: 1207664393 pageId: 16719 @@ -164958,11 +160463,11 @@ The Blackwell Epiphany: - Blackwell Epiphany steam: 236930 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\Saved Games\Blackwell Epiphany\acsetup.cfg}}' - - '{{Game data/config|Linux|{{p|game}}/acsetup.cfg}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\Saved Games\Blackwell Epiphany\}}' - - '{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/Blackwell Epiphany/}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/ags/Blackwell Epiphany/}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\Saved Games\\Blackwell Epiphany\\acsetup.cfg}}" + - "{{Game data/config|Linux|{{p|game}}/acsetup.cfg}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Saved Games\\Blackwell Epiphany\\}}" + - "{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/Blackwell Epiphany/}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/ags/Blackwell Epiphany/}}" The Blackwell Legacy: gog: 1207662883 gogSide: @@ -164972,12 +160477,12 @@ The Blackwell Legacy: - Blackwell Legacy steam: 80330 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\Saved Games\Blackwell Legacy\acsetup.cfg}}' - - '{{Game data/config|OS X|{{P|game}}/acsetup.cfg}}' - - '{{Game data/config|Linux|{{P|game}}/acsetup.cfg}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\Saved Games\Blackwell Legacy\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Documents/My Saved Games/Blackwell Legacy v1.7/}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/ags/Blackwell Legacy/}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\Saved Games\\Blackwell Legacy\\acsetup.cfg}}" + - "{{Game data/config|OS X|{{P|game}}/acsetup.cfg}}" + - "{{Game data/config|Linux|{{P|game}}/acsetup.cfg}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Saved Games\\Blackwell Legacy\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Documents/My Saved Games/Blackwell Legacy v1.7/}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/ags/Blackwell Legacy/}}" The Blight: pageId: 121331 steam: 954900 @@ -165003,8 +160508,8 @@ The Bloodline: pageId: 151577 steam: 1159290 templates: - - '{{Game data/saves|Windows|{{P|localappdata}}\TheBloodline\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\TheBloodline\Saved\SaveGames\}}' + - "{{Game data/saves|Windows|{{P|localappdata}}\\TheBloodline\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\TheBloodline\\Saved\\SaveGames\\}}" The Blue Box: pageId: 92979 steam: 739010 @@ -165014,11 +160519,11 @@ The Blue Flamingo: The Blue Zula VR Concert Series: pageId: 112008 steam: 799660 -'The Bluecoats: North & South': +"The Bluecoats: North & South": gog: 1441968425 pageId: 164699 steam: 963220 -'The Bluecoats: North vs South': +"The Bluecoats: North vs South": pageId: 48827 steam: 347030 The Blueness of a Wound: @@ -165036,29 +160541,29 @@ The Body VR: The Bomb Project: pageId: 151046 steam: 841330 -'The Bonfire 2: Uncharted Shores': +"The Bonfire 2: Uncharted Shores": pageId: 151246 steam: 1155880 -'The Bonfire: Forsaken Lands': +"The Bonfire: Forsaken Lands": pageId: 82151 steam: 788210 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\xigmagames\The Bonfire}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\xigmagames\\The Bonfire}}" The Boogie Man: pageId: 81097 steam: 749840 -'The Book Of Yorle: Save The Church': +"The Book Of Yorle: Save The Church": pageId: 149959 steam: 1164520 -'The Book of Commands: Lost Symbol': +"The Book of Commands: Lost Symbol": pageId: 33523 steam: 488500 The Book of Desires: pageId: 45238 steam: 428260 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Meridian93\MagicBook\bigfish_ce}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Meridian93\MagicBook\bigfish_ce}}' + - "{{Game data/config|Windows|{{p|appdata}}\\Meridian93\\MagicBook\\bigfish_ce}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Meridian93\\MagicBook\\bigfish_ce}}" The Book of Legends: pageId: 50571 steam: 277470 @@ -165072,43 +160577,41 @@ The Book of Unwritten Tales: steamSide: - 215200 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Book of Unwritten Tales\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Unwritten Tales/}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.bout/}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Book of Unwritten Tales\savegames\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Unwritten Tales/savegames/}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.bout/savegames/}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Book of Unwritten Tales\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Unwritten Tales/}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.bout/}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Book of Unwritten Tales\\savegames\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Unwritten Tales/savegames/}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.bout/savegames/}}" The Book of Unwritten Tales 2: gog: 1423758554 pageId: 20746 steam: 279940 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\Bout2\config.xml|{{P|hkcu}}\Software\KING Art GmbH\The Book - of Unwritten Tales 2\}} - - '{{Game data/config|OS X|{{p|osxhome}}/Bout2/config.xml}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/Bout2/}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Bout2\savegames\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Bout2/savegames/}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/Bout2/}}' -'The Book of Unwritten Tales: The Critter Chronicles': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Bout2\\config.xml|{{P|hkcu}}\\Software\\KING Art GmbH\\The Book of Unwritten Tales 2\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Bout2/config.xml}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/Bout2/}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Bout2\\savegames\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Bout2/savegames/}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/Bout2/}}" +"The Book of Unwritten Tales: The Critter Chronicles": gog: 1207659148 pageId: 12799 steam: 221830 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Unwritten Tales - Critter Chronicles\}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.boutvc/}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Unwritten Tales - Critter Chronicles\savegames\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Book of Unwritten Tales/savegames/}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.boutvc/savegames/}}' - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/221830/}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Unwritten Tales - Critter Chronicles\\}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.boutvc/}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Unwritten Tales - Critter Chronicles\\savegames\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Book of Unwritten Tales/savegames/}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.boutvc/savegames/}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/221830/}}" The Botanist: pageId: 69342 steam: 694790 The Bottom of the Well: pageId: 38335 steam: 449020 -'The Bounty: Deluxe Edition': +"The Bounty: Deluxe Edition": pageId: 76549 steam: 672920 The Box VR: @@ -165127,8 +160630,8 @@ The Braves & Bows: pageId: 36197 steam: 495120 templates: - - '{{Game data/saves|Windows|{{p|localappdata}}\TheBravesAndBowsENG}}' -'The Breach: A VR Escape Game': + - "{{Game data/saves|Windows|{{p|localappdata}}\\TheBravesAndBowsENG}}" +"The Breach: A VR Escape Game": pageId: 141166 steam: 973640 The Breakfast Club: @@ -165137,25 +160640,21 @@ The Breakfast Club: The Breath: pageId: 69980 steam: 699970 -'The Breeding: The Fog': +"The Breeding: The Fog": pageId: 75644 steam: 744440 The Bridge: pageId: 5495 steam: 204240 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\SavedGames\The Bridge\}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/The Quantum Astrophysicists Guild/The Bridge/}}' - - >- - {{Game data/config|Epic Games Store|{{P|userprofile}}\AppData\LocalLow\The Quantum Astrophysicists Guild\The - Bridge\settingssave.sav|{{P|hkcu}}\Software\The Quantum Astrophysicists Guild\The Bridge\}} - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\SavedGames\The Bridge\}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/The Quantum Astrophysicists Guild/The Bridge/}}' - - >- - {{Game data/saves|Epic Games Store|{{P|userprofile}}\AppData\LocalLow\The Quantum Astrophysicists Guild\The - Bridge\thebridgesave.sav}} - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{P|uid}}/204240/}}' -'The Bridge Curse: Road to Salvation': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\SavedGames\\The Bridge\\}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/The Quantum Astrophysicists Guild/The Bridge/}}" + - "{{Game data/config|Epic Games Store|{{P|userprofile}}\\AppData\\LocalLow\\The Quantum Astrophysicists Guild\\The Bridge\\settingssave.sav|{{P|hkcu}}\\Software\\The Quantum Astrophysicists Guild\\The Bridge\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\SavedGames\\The Bridge\\}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/The Quantum Astrophysicists Guild/The Bridge/}}" + - "{{Game data/saves|Epic Games Store|{{P|userprofile}}\\AppData\\LocalLow\\The Quantum Astrophysicists Guild\\The Bridge\\thebridgesave.sav}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{P|uid}}/204240/}}" +"The Bridge Curse: Road to Salvation": pageId: 181139 steam: 1611430 The Brink 尘与土: @@ -165168,7 +160667,7 @@ The Broadside Express: The Broken Seal: pageId: 73935 steam: 710170 -'The Broken Seal: Arena': +"The Broken Seal: Arena": pageId: 82302 steam: 794040 The Brookhaven Experiment: @@ -165178,21 +160677,21 @@ The Bug Butcher: pageId: 37449 steam: 350740 templates: - - '{{Game data/saves|Windows|{{P|hkcu}}\Software\Awfully Nice Studios\The Bug Butcher\}}' + - "{{Game data/saves|Windows|{{P|hkcu}}\\Software\\Awfully Nice Studios\\The Bug Butcher\\}}" The Bugs Bunny Hare-Brained Adventure: pageId: 90837 The Bunker: pageId: 36940 steam: 481110 templates: - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\481110\remote\}}' + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\481110\\remote\\}}" The Bunker 69: pageId: 148681 steam: 1150890 The Bunny Graveyard: pageId: 181965 steam: 1892420 -'The Bureau: XCOM Declassified': +"The Bureau: XCOM Declassified": gog: 1166983063 pageId: 9473 steam: 65930 @@ -165201,8 +160700,8 @@ The Bunny Graveyard: - 66001 - 66002 templates: - - '{{Game data/config|Windows|{{p|game}}\XGame\Config\}}' - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/65930/}}' + - "{{Game data/config|Windows|{{p|game}}\\XGame\\Config\\}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/65930/}}" The Burned Ground: pageId: 130279 steam: 1032360 @@ -165212,19 +160711,19 @@ The Burning Descent: The Butterfly Sign: pageId: 54935 steam: 546700 -'The Butterfly Sign: Human Error': +"The Butterfly Sign: Human Error": pageId: 59275 steam: 555260 templates: - - '{{Game data/config|Windows|{{p|game}}\tbs2\W3_2\Saved}}' - - '{{Game data/saves|Windows|{{p|game}}\tbs2\W3_2\Saved}}' + - "{{Game data/config|Windows|{{p|game}}\\tbs2\\W3_2\\Saved}}" + - "{{Game data/saves|Windows|{{p|game}}\\tbs2\\W3_2\\Saved}}" The Button: pageId: 176358 steam: 1808120 The Button Witch: pageId: 157348 steam: 1198270 -'The Cabin: VR Escape the Room': +"The Cabin: VR Escape the Room": pageId: 54798 steam: 560640 The Cabinets of Doctor Arcana: @@ -165240,15 +160739,15 @@ The Caligula Effect 2: pageId: 178265 steam: 1933740 templates: - - '{{Game data/config|Steam|{{P|localappdata}}/TheCaligulaEffect2ForSteam/Saved/Config/WindowsNoEditor}}' - - '{{Game data/saves|Steam|{{p|localappdata}}\TheCaligulaEffect2ForSteam\Saved\SaveGames\*.sav}}' -'The Caligula Effect: Overdose': + - "{{Game data/config|Steam|{{P|localappdata}}/TheCaligulaEffect2ForSteam/Saved/Config/WindowsNoEditor}}" + - "{{Game data/saves|Steam|{{p|localappdata}}\\TheCaligulaEffect2ForSteam\\Saved\\SaveGames\\*.sav}}" +"The Caligula Effect: Overdose": gog: 1646061575 pageId: 105567 steam: 889600 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\COD\Saved\Config\WindowsNoEditor}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\COD\Saved\SaveGames}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\COD\\Saved\\Config\\WindowsNoEditor}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\COD\\Saved\\SaveGames}}" The Call: pageId: 103923 steam: 908310 @@ -165264,33 +160763,31 @@ The Callisto Protocol: - 2021871 - 2341550 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\CallistoProtocol\Saved\Config\WindowsNoEditor}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\CallistoProtocol\Saved\SaveGames}}' -'The Cameron Files: The Secret at Loch Ness': + - "{{Game data/config|Windows|{{P|localappdata}}\\CallistoProtocol\\Saved\\Config\\WindowsNoEditor}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\CallistoProtocol\\Saved\\SaveGames}}" +"The Cameron Files: The Secret at Loch Ness": pageId: 49885 steam: 302170 -'The Campaign Series: Fall Weiss': +"The Campaign Series: Fall Weiss": pageId: 50165 steam: 283020 The Camy Collection: pageId: 184316 templates: - - >- - {{Game - data/config|Windows|{{p|game}}\Options_dc.dat|{{p|game}}\Options_dcr.dat|{{p|game}}\Options_c2.dat|{{p|game}}\Options_c2_e.dat}} + - "{{Game data/config|Windows|{{p|game}}\\Options_dc.dat|{{p|game}}\\Options_dcr.dat|{{p|game}}\\Options_c2.dat|{{p|game}}\\Options_c2_e.dat}}" The Captain: gog: 2011675791 pageId: 171097 steam: 1721530 templates: - - '{{Game data/config|Windows|{{File|{{P|userprofile\appdata\locallow}}\Sysiac Games\The Captain\game.settings}}}}' - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Sysiac Games\The Captain\Saves_v1}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/unity.Sysiac Games.The Captain/Saves_v1}}' - - '{{Game data/saves|Linux|{{P|linuxhome}}/.config/unity3d/Sysiac Games/The Captain/Saves_v1}}' + - "{{Game data/config|Windows|{{File|{{P|userprofile\\appdata\\locallow}}\\Sysiac Games\\The Captain\\game.settings}}}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Sysiac Games\\The Captain\\Saves_v1}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/unity.Sysiac Games.The Captain/Saves_v1}}" + - "{{Game data/saves|Linux|{{P|linuxhome}}/.config/unity3d/Sysiac Games/The Captain/Saves_v1}}" The Captain is Dead: pageId: 145341 steam: 1126580 -'The Captives: Plot of the Demiurge': +"The Captives: Plot of the Demiurge": pageId: 88916 steam: 666630 The Capture Worlds: @@ -165310,21 +160807,21 @@ The Case of the Golden Idol: pageId: 182531 steam: 1677770 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Godot\app_userdata\The Case of The Golden Idol\local_settings.cfg}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Godot\app_userdata\The Case of The Golden Idol\local_savegame.save}}' + - "{{Game data/config|Windows|{{p|appdata}}\\Godot\\app_userdata\\The Case of The Golden Idol\\local_settings.cfg}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Godot\\app_userdata\\The Case of The Golden Idol\\local_savegame.save}}" The Casebook of Arkady Smith: pageId: 161839 steam: 1260840 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\City2}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\City2}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\City2}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\City2}}" The Castle: gog: 2098172050 pageId: 143786 steam: 1133950 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\Saved Games\The castle}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/The castle}}' + - "{{Game data/saves|Windows|{{p|userprofile}}\\Saved Games\\The castle}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/The castle}}" The Castle Disaster: pageId: 90118 steam: 817760 @@ -165335,9 +160832,9 @@ The Castle Doctrine: pageId: 14757 steam: 249570 templates: - - '{{Game data/config|Windows|{{P|game}}\settings\}}' - - '{{Game data/config|OS X|{{P|game}}/settings/}}' - - '{{Game data/config|Linux|{{P|game}}/settings/}}' + - "{{Game data/config|Windows|{{P|game}}\\settings\\}}" + - "{{Game data/config|OS X|{{P|game}}/settings/}}" + - "{{Game data/config|Linux|{{P|game}}/settings/}}" The Castles of Burgundy: pageId: 128189 steam: 903040 @@ -165352,20 +160849,18 @@ The Cat Lady: pageId: 13330 steam: 253110 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\Saved Games\The Cat Lady\acsetup.cfg}}' - - '{{Game data/config|Steam|{{p|userprofile}}\Saved Games\The Cat Lady - Steam\acsetup.cfg}}' - - '{{Game data/config|Linux|{{p|game}}/acsetup.cfg}}' - - >- - {{Game data/saves|Windows|{{p|userprofile}}\Saved Games\The Cat Lady\agssave.*|{{p|userprofile}}\Saved Games\Cat - Lady\agssave.*}} - - '{{Game data/saves|Steam|{{p|userprofile}}\Saved Games\The Cat Lady - Steam\agssave.*}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/ags/Cat Lady/}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\Saved Games\\The Cat Lady\\acsetup.cfg}}" + - "{{Game data/config|Steam|{{p|userprofile}}\\Saved Games\\The Cat Lady - Steam\\acsetup.cfg}}" + - "{{Game data/config|Linux|{{p|game}}/acsetup.cfg}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Saved Games\\The Cat Lady\\agssave.*|{{p|userprofile}}\\Saved Games\\Cat Lady\\agssave.*}}" + - "{{Game data/saves|Steam|{{p|userprofile}}\\Saved Games\\The Cat Lady - Steam\\agssave.*}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/ags/Cat Lady/}}" The Cat Machine: pageId: 37517 steam: 386900 templates: - - '{{Game data/config|Windows|HKEY_CURRENT_USER\SOFTWARE\Cranktrain\The Cat Machine}}' - - '{{Game data/saves|Windows|HKEY_CURRENT_USER\SOFTWARE\Cranktrain\The Cat Machine}}' + - "{{Game data/config|Windows|HKEY_CURRENT_USER\\SOFTWARE\\Cranktrain\\The Cat Machine}}" + - "{{Game data/saves|Windows|HKEY_CURRENT_USER\\SOFTWARE\\Cranktrain\\The Cat Machine}}" The Cat and the Box: pageId: 132584 steam: 1054980 @@ -165373,29 +160868,27 @@ The Cat and the Coup: pageId: 37568 steam: 95700 templates: - - >- - {{Game data/config|Windows|{{P|appdata}}\Peter Brinson and Kurosh ValaNejad\The Cat and the Coup - (Beta)\common\commonConfig.xml}} + - "{{Game data/config|Windows|{{P|appdata}}\\Peter Brinson and Kurosh ValaNejad\\The Cat and the Coup (Beta)\\common\\commonConfig.xml}}" The Cat and the Coup (4K Remaster): pageId: 109532 steam: 907890 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\USC Games\The Cat and the Coup}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\USC Games\\The Cat and the Coup}}" The Cat in 14a: pageId: 135586 steam: 1075350 The Cat in the Hat: pageId: 186903 -The Cat! Porfirio's Adventure: +"The Cat! Porfirio's Adventure": pageId: 41833 steam: 492270 The Catacomb: gog: 1207659189 pageId: 21646 templates: - - '{{Game data/config|DOS|{{p|game}}\CTLPANEL.CA2}}' - - '{{Game data/saves|DOS|{{p|game}}\GAME*.CA2}}' -'The Cathedral: Allison''s Diary': + - "{{Game data/config|DOS|{{p|game}}\\CTLPANEL.CA2}}" + - "{{Game data/saves|DOS|{{p|game}}\\GAME*.CA2}}" +"The Cathedral: Allison's Diary": pageId: 82069 steam: 793210 The Cave: @@ -165405,12 +160898,12 @@ The Cave: pageId: 4513 steam: 221810 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Doublefine\TheCave\screen.dat}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/doublefine/thecave/screen.dat}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/doublefine/thecave/screen.dat}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Doublefine\TheCave\*.save}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/doublefine/thecave/*.save}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/doublefine/thecave/*.save}}' + - "{{Game data/config|Windows|{{p|appdata}}\\Doublefine\\TheCave\\screen.dat}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/doublefine/thecave/screen.dat}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/doublefine/thecave/screen.dat}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Doublefine\\TheCave\\*.save}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/doublefine/thecave/*.save}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/doublefine/thecave/*.save}}" The Cave VR: pageId: 73503 steam: 723510 @@ -165423,19 +160916,16 @@ The Cellar: The Cells: pageId: 121405 steam: 954760 -'The Centennial Case: A Shijima Story': +"The Centennial Case: A Shijima Story": pageId: 177644 steam: 1612780 steamSide: - 1906030 - 1906031 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\My Games\CCSS\Steam\{{P|uid}}\SystemSaveData\}}' - - |- - {{Game data/config|Windows|{{P|userprofile\Documents}}\My Games\CCSS\Steam\{{P|uid}}\AchievementSaveData\| - {{P|userprofile\Documents}}\My Games\CCSS\Steam\{{P|uid}}\GameCommonSaveData\| - {{P|userprofile\Documents}}\My Games\CCSS\Steam\{{P|uid}}\GameSaveData\}} -'The Cerberus Project: Horde Arena FPS': + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\My Games\\CCSS\\Steam\\{{P|uid}}\\SystemSaveData\\}}" + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\My Games\\CCSS\\Steam\\{{P|uid}}\\AchievementSaveData\\|\n{{P|userprofile\\Documents}}\\My Games\\CCSS\\Steam\\{{P|uid}}\\GameCommonSaveData\\|\n{{P|userprofile\\Documents}}\\My Games\\CCSS\\Steam\\{{P|uid}}\\GameSaveData\\}}" +"The Cerberus Project: Horde Arena FPS": pageId: 64335 steam: 662870 The Chains That Bound Me: @@ -165448,7 +160938,7 @@ The Chambers: pageId: 98648 steam: 879450 templates: - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\KrutovGames\Chambers\saves}}' + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\KrutovGames\\Chambers\\saves}}" The Chameleon: pageId: 168806 steam: 1493970 @@ -165459,8 +160949,8 @@ The Chant: pageId: 182778 steam: 1577250 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Chant\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\Chant\Saved\SaveGames}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\Chant\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Chant\\Saved\\SaveGames}}" The Chaos Engine (2013): gog: 1207659543 pageId: 10056 @@ -165478,8 +160968,8 @@ The Charnel House Trilogy: pageId: 33482 steam: 288930 templates: - - '{{Game data/config|Windows|{{P|game}}\acsetup.cfg}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\Saved Games\The Charnel House Trilogy\}}' + - "{{Game data/config|Windows|{{P|game}}\\acsetup.cfg}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\Saved Games\\The Charnel House Trilogy\\}}" The Chasm: pageId: 149130 steam: 1140900 @@ -165503,53 +160993,53 @@ The Chosen RPG: pageId: 44685 steam: 434420 templates: - - '{{Game data/saves|Windows|{{p|game}}\*.rvdata2}}' + - "{{Game data/saves|Windows|{{p|game}}\\*.rvdata2}}" The Chosen Warriors: pageId: 79046 steam: 610730 The Christmas Gifts: pageId: 105311 steam: 897420 -'The Christmas Spirit: Grimm Tales': +"The Christmas Spirit: Grimm Tales": pageId: 156171 steam: 1198070 The Chronicles of Dragon Wing - Reborn: pageId: 65335 steam: 613670 -'The Chronicles of Emerland: Solitaire': +"The Chronicles of Emerland: Solitaire": pageId: 47093 steam: 389400 templates: - - '{{Game data/config|Windows|{{P|appdata}}\Rainbow\Solitair\settings.xml}}' - - '{{Game data/saves|Windows|{{P|appdata}}\Rainbow\Solitair\profiles.xml}}' + - "{{Game data/config|Windows|{{P|appdata}}\\Rainbow\\Solitair\\settings.xml}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\Rainbow\\Solitair\\profiles.xml}}" The Chronicles of Jonah and the Whale: pageId: 125119 steam: 1004500 The Chronicles of Joseph of Egypt: pageId: 148783 steam: 1169310 -'The Chronicles of King Arthur: Episode 2 - Knights of the Round Table': +"The Chronicles of King Arthur: Episode 2 - Knights of the Round Table": pageId: 134482 steam: 1065680 -'The Chronicles of Myrtana: Archolos': +"The Chronicles of Myrtana: Archolos": gog: 1565201708 pageId: 173603 steam: 1467450 templates: - - '{{Game data/config|Windows|{{p|game}}\system\*.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\saves_thechroniclesofmyrtana}}' -'The Chronicles of Narnia: Prince Caspian': + - "{{Game data/config|Windows|{{p|game}}\\system\\*.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\saves_thechroniclesofmyrtana}}" +"The Chronicles of Narnia: Prince Caspian": pageId: 60673 steam: 320890 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Disney Interactive Studios\Prince Caspian}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Disney Interactive Studios\Prince Caspian\SavedGames}}' -'The Chronicles of Narnia: The Lion, the Witch and the Wardrobe': + - "{{Game data/config|Windows|{{p|appdata}}\\Disney Interactive Studios\\Prince Caspian}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Disney Interactive Studios\\Prince Caspian\\SavedGames}}" +"The Chronicles of Narnia: The Lion, the Witch and the Wardrobe": pageId: 26750 templates: - - '{{Game data/config|Windows|{{p|programdata}}\Buena Vista Games\Narnia\nuconfig.txt}}' - - '{{Game data/saves|Windows|{{p|programdata}}\Buena Vista Games\Narnia\narnia_?\}}' -The Chronicles of Noah's Ark: + - "{{Game data/config|Windows|{{p|programdata}}\\Buena Vista Games\\Narnia\\nuconfig.txt}}" + - "{{Game data/saves|Windows|{{p|programdata}}\\Buena Vista Games\\Narnia\\narnia_?\\}}" +"The Chronicles of Noah's Ark": pageId: 103269 steam: 894730 The Chronicles of Nyanya: @@ -165558,38 +161048,27 @@ The Chronicles of Nyanya: The Chronicles of Quiver Dick: pageId: 99582 steam: 846880 -'The Chronicles of Riddick: Assault on Dark Athena': +"The Chronicles of Riddick: Assault on Dark Athena": gog: 1207659070 pageId: 2134 steam: 9860 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Atari\The Chronicles of Riddick - Assault on Dark Athena\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Dark Athena}}' - - >- - {{Game data/saves|Windows|{{p|appdata}}\Atari\The Chronicles of Riddick - Assault on Dark - Athena\SaveGames\{{P|uid}}\}} - - >- - {{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Dark Athena/Application Data/Atari/The Chronicles - of Riddick - Assault on Dark Athena/SaveGames/}} -'The Chronicles of Riddick: Escape from Butcher Bay': + - "{{Game data/config|Windows|{{p|localappdata}}\\Atari\\The Chronicles of Riddick - Assault on Dark Athena\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Dark Athena}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Atari\\The Chronicles of Riddick - Assault on Dark Athena\\SaveGames\\{{P|uid}}\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Dark Athena/Application Data/Atari/The Chronicles of Riddick - Assault on Dark Athena/SaveGames/}}" +"The Chronicles of Riddick: Escape from Butcher Bay": pageId: 5167 templates: - - >- - {{Game - data/config|Windows|{{p|game}}\Environment.cfg|{{p|game}}\Content\User.cfg|{{p|game}}\Content\Save\{{p|uid}}\_profile}} - - '{{Game data/saves|Windows|{{p|game}}\Content\Save\|{{p|userprofile}}\Starbreeze\Riddick\Content\Save\}}' + - "{{Game data/config|Windows|{{p|game}}\\Environment.cfg|{{p|game}}\\Content\\User.cfg|{{p|game}}\\Content\\Save\\{{p|uid}}\\_profile}}" + - "{{Game data/saves|Windows|{{p|game}}\\Content\\Save\\|{{p|userprofile}}\\Starbreeze\\Riddick\\Content\\Save\\}}" The Church in the Darkness: gog: 2127450052 pageId: 39582 steam: 339830 templates: - - >- - {{Game data/config|Windows|{{P|userprofile}}\AppData\LocalLow\Paranoid - Productions\TheChurchInTheDarkness\TheChurchInTheDarknessPrefs.dat|{{P|hkcu}}\Software\Paranoid - Productions\TheChurchInTheDarkness\}} - - >- - {{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Paranoid - Productions\TheChurchInTheDarkness\TheChurchInTheDarknessSave.dat}} + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Paranoid Productions\\TheChurchInTheDarkness\\TheChurchInTheDarknessPrefs.dat|{{P|hkcu}}\\Software\\Paranoid Productions\\TheChurchInTheDarkness\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Paranoid Productions\\TheChurchInTheDarkness\\TheChurchInTheDarknessSave.dat}}" The Cinema Rosa: pageId: 132244 steam: 1049140 @@ -165597,8 +161076,8 @@ The Citadel: pageId: 162646 steam: 1378290 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\the_citadel\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Citadel_186\Saved\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\the_citadel\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Citadel_186\\Saved\\}}" The Clans - Saga of the Twins: pageId: 48152 steam: 342090 @@ -165622,16 +161101,16 @@ The Climber: The Clockwork Man: pageId: 40932 steam: 111000 -'The Clockwork Man: The Hidden World': +"The Clockwork Man: The Hidden World": pageId: 40905 steam: 111010 The Club: pageId: 22246 steam: 10460 templates: - - '{{Game data/config|Windows|{{p|public}}\Documents\The Club Game Save Data\}}' - - '{{Game data/saves|Windows|{{p|public}}\Documents\The Club Game Save Data\}}' -'The ClueFinders 3rd Grade Adventures: Mystery of Mathra': + - "{{Game data/config|Windows|{{p|public}}\\Documents\\The Club Game Save Data\\}}" + - "{{Game data/saves|Windows|{{p|public}}\\Documents\\The Club Game Save Data\\}}" +"The ClueFinders 3rd Grade Adventures: Mystery of Mathra": pageId: 174676 The Coffin of Andy and Leyley: pageId: 190500 @@ -165640,7 +161119,7 @@ The Coin Game: pageId: 92389 steam: 598980 templates: - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\devotid\TheCoinGame\}}' + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\devotid\\TheCoinGame\\}}" The Cold War Era: pageId: 38835 steam: 504280 @@ -165652,18 +161131,18 @@ The Collider: The Collider 2: pageId: 43538 steam: 357010 -The Colonel's Bequest: +"The Colonel's Bequest": gog: 2108578958 pageId: 17143 templates: - - '{{Game data/config|DOS|{{p|game}}\RESOURCE.CFG}}' - - '{{Game data/saves|DOS|{{p|game}}\CB1SG.***}}' + - "{{Game data/config|DOS|{{p|game}}\\RESOURCE.CFG}}" + - "{{Game data/saves|DOS|{{p|game}}\\CB1SG.***}}" The Colonists: gog: 1282350952 pageId: 74984 steam: 677340 templates: - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Codebyfire Ltd\The Colonists\SaveGames}}' + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Codebyfire Ltd\\The Colonists\\SaveGames}}" The Colony: pageId: 160974 The Colony (Monkeystein Games): @@ -165678,28 +161157,28 @@ The Color of the Roses: The Coma: pageId: 69563 steam: 705470 -'The Coma 2: Vicious Sisters': +"The Coma 2: Vicious Sisters": gog: 1854689188 pageId: 145166 steam: 1045720 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\DevespressoGames\TheComa2ViciousSisters\}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/DevespressoGames/TheComa2ViciousSisters/}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\DevespressoGames\TheComa2ViciousSisters\Coma2.save}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/DevespressoGames/TheComa2ViciousSisters/Coma2.save}}' -'The Coma: Cutting Class': + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\DevespressoGames\\TheComa2ViciousSisters\\}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/DevespressoGames/TheComa2ViciousSisters/}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\DevespressoGames\\TheComa2ViciousSisters\\Coma2.save}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/DevespressoGames/TheComa2ViciousSisters/Coma2.save}}" +"The Coma: Cutting Class": pageId: 37709 steam: 402630 -'The Coma: Recut': +"The Coma: Recut": gog: 1163487128 pageId: 65740 steam: 600090 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\DevespressoGames\TheComaRecut\}}' - - '{{Game data/config|Linux|{{p|xdgconfighome}}/unity3d/DevespressoGames/TheComaRecut/prefs}}' - - '{{Game data/saves|Windows|{{p|hkcu}}\Software\DevespressoGames\TheComaRecut\}}' - - '{{Game data/saves|Linux|{{p|xdgconfighome}}/unity3d/DevespressoGames/TheComaRecut/prefs}}' -'The Commission: Organized Crime Grand Strategy': + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\DevespressoGames\\TheComaRecut\\}}" + - "{{Game data/config|Linux|{{p|xdgconfighome}}/unity3d/DevespressoGames/TheComaRecut/prefs}}" + - "{{Game data/saves|Windows|{{p|hkcu}}\\Software\\DevespressoGames\\TheComaRecut\\}}" + - "{{Game data/saves|Linux|{{p|xdgconfighome}}/unity3d/DevespressoGames/TheComaRecut/prefs}}" +"The Commission: Organized Crime Grand Strategy": pageId: 104869 steam: 798830 The Communist Dogifesto: @@ -165708,7 +161187,7 @@ The Communist Dogifesto: The Complex: pageId: 162061 steam: 1107790 -'The Complex: Found Footage': +"The Complex: Found Footage": pageId: 189256 steam: 1942120 The Con Simulator: @@ -165727,7 +161206,7 @@ The Consuming Shadow: pageId: 37495 steam: 403830 templates: - - '{{Game data/saves|Windows|{{p|localappdata}}\conshadow_steam\*.dat}}' + - "{{Game data/saves|Windows|{{p|localappdata}}\\conshadow_steam\\*.dat}}" The Contact: pageId: 43660 steam: 394010 @@ -165752,7 +161231,7 @@ The Coroner Saga: The Corporate Machine: pageId: 48379 steam: 351080 -'The Corridor: On Behalf Of The Dead': +"The Corridor: On Behalf Of The Dead": pageId: 107866 steam: 340840 The Cosmic Wheel Sisterhood: @@ -165762,15 +161241,15 @@ The Cosmic Wheel Sisterhood: The Cosmos is Mine!: pageId: 48098 steam: 347220 -'The Costumemaster: Reloaded': +"The Costumemaster: Reloaded": pageId: 176793 The Council: gog: 1261705611 pageId: 88692 steam: 287630 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\The Council\*.conf}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\The Council\{{P|uid}}\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\The Council\\*.conf}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\The Council\\{{P|uid}}\\}}" The Council of Hanwell: pageId: 88720 steam: 816330 @@ -165779,8 +161258,8 @@ The Count Lucanor: pageId: 37383 steam: 440880 templates: - - '{{Game data/config|Windows|{{p|game}}\res\settings\settings.properties}}' - - '{{Game data/saves|Windows|{{p|game}}\res\db\}}' + - "{{Game data/config|Windows|{{p|game}}\\res\\settings\\settings.properties}}" + - "{{Game data/saves|Windows|{{p|game}}\\res\\db\\}}" The Count of Monster Disco: pageId: 49452 steam: 277751 @@ -165797,7 +161276,7 @@ The Crackpet Show: The Cradle of Ruin/毁灭的摇篮/ほろびのゆりかご: pageId: 128365 steam: 1024280 -'The Crane Trials: Red Edition': +"The Crane Trials: Red Edition": pageId: 61439 steam: 624260 The Crater: @@ -165813,7 +161292,7 @@ The Crew: pageId: 16761 steam: 241560 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\The Crew\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\The Crew\\}}" The Crew 2: pageId: 63654 steam: 646910 @@ -165821,11 +161300,11 @@ The Crew 2: - 760760 - 1075340 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\The Crew 2\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\The Crew 2\\}}" The Crew Motorfest: pageId: 188351 templates: - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\TheCrewMotorfest\}}' + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\TheCrewMotorfest\\}}" The Crimson Crown: pageId: 172498 The Crimson Diamond: @@ -165835,12 +161314,12 @@ The Crooked Man: pageId: 78713 steam: 736570 templates: - - '{{Game data/config|Windows|{{p|game}}\Game.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\Save\*.sav}}' + - "{{Game data/config|Windows|{{p|game}}\\Game.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\Save\\*.sav}}" The Cross Horror Game: pageId: 141643 steam: 1117120 -The Crow's Eye: +"The Crow's Eye": gog: 1110057117 gogSide: - 1236960892 @@ -165849,7 +161328,7 @@ The Crow's Eye: steam: 449510 steamSide: - 585730 -'The Crow: City of Angels': +"The Crow: City of Angels": pageId: 131096 The Crowded Party Game Collection: pageId: 61542 @@ -165858,10 +161337,8 @@ The Crown of Leaves: pageId: 64648 steam: 604330 templates: - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/The_Crown_of_Leaves/tcol.ini}}' - - >- - {{Game - data/saves|Linux|{{p|linuxhome}}/.config/The_Crown_of_Leaves/saves/|{{p|linuxhome}}/.config/The_Crown_of_Leaves/game_info}} + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/The_Crown_of_Leaves/tcol.ini}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/The_Crown_of_Leaves/saves/|{{p|linuxhome}}/.config/The_Crown_of_Leaves/game_info}}" The Cruxis Sword: pageId: 153052 steam: 1186720 @@ -165877,12 +161354,12 @@ The Crystal Nebula: The Crystal Rain Forest V2: pageId: 167527 templates: - - '{{Game data/config|Windows|{{p|game}}\Saves\}}' - - '{{Game data/saves|Windows|{{p|game}}\Saves\}}' + - "{{Game data/config|Windows|{{p|game}}\\Saves\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\Saves\\}}" The Cube: pageId: 73282 steam: 726650 -The Cube Hotel (Ning's Wing 2): +"The Cube Hotel (Ning's Wing 2)": pageId: 41503 steam: 533470 The Cubicle: @@ -165892,23 +161369,23 @@ The Culling: pageId: 33484 steam: 437220 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\TheCulling\Saved\Config\WindowsClient\}}' - - '{{Game data/config|Linux|{{P|xdgconfighome}}/Epic/TheCulling/Saved/Config/LinuxClient/}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\TheCulling\Saved\SaveGames\}}' - - '{{Game data/saves|Linux|{{P|xdgconfighome}}/Epic/TheCulling/Saved/SaveGames/}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\TheCulling\\Saved\\Config\\WindowsClient\\}}" + - "{{Game data/config|Linux|{{P|xdgconfighome}}/Epic/TheCulling/Saved/Config/LinuxClient/}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\TheCulling\\Saved\\SaveGames\\}}" + - "{{Game data/saves|Linux|{{P|xdgconfighome}}/Epic/TheCulling/Saved/SaveGames/}}" The Culling 2: pageId: 103405 steam: 752720 The Culling of the Cows: pageId: 50286 steam: 297020 -'The Cult: Marduk''s Longest Night': +"The Cult: Marduk's Longest Night": pageId: 144937 steam: 1074220 The Cup: pageId: 127494 steam: 947530 -'The Curious Study of Dr. Blackwood: A VR Tech Demo': +"The Curious Study of Dr. Blackwood: A VR Tech Demo": pageId: 134177 steam: 868940 The Curious Tale of the Stolen Pets: @@ -165917,7 +161394,7 @@ The Curious Tale of the Stolen Pets: The Curse of Issyos: pageId: 131775 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Curse_of_Issyos\config.ini}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Curse_of_Issyos\\config.ini}}" The Curse of Kubel: pageId: 164467 steam: 1269810 @@ -165926,10 +161403,10 @@ The Curse of Monkey Island: pageId: 17 steam: 730820 templates: - - '{{Game data/config|Windows|{{P|game}}\Saves\monkey3.c01}}' - - '{{Game data/config|GOG.com|{{P|game}}\monkey3.ini}}' - - '{{Game data/saves|Windows|{{P|game}}\Saves\monkey3.c*|{{P|APPDATA}}\ScummVM\Saved Games}}' - - '{{Game data/saves|GOG.com|{{P|game}}\Saves|{{P|game}}\Saves\monkey3.s*}}' + - "{{Game data/config|Windows|{{P|game}}\\Saves\\monkey3.c01}}" + - "{{Game data/config|GOG.com|{{P|game}}\\monkey3.ini}}" + - "{{Game data/saves|Windows|{{P|game}}\\Saves\\monkey3.c*|{{P|APPDATA}}\\ScummVM\\Saved Games}}" + - "{{Game data/saves|GOG.com|{{P|game}}\\Saves|{{P|game}}\\Saves\\monkey3.s*}}" The Curse of Nordic Cove: pageId: 48112 steam: 358000 @@ -165943,15 +161420,13 @@ The Cursed Crusade: pageId: 61189 steam: 106000 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\TheCursedCrusade\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\TheCursedCrusade\\}}" The Cursed Forest: pageId: 37748 steam: 345430 templates: - - >- - {{Game - data/config|Windows|{{P|game}}\assets\game.cfg|{{P|game}}\assets\hud_settings.xml|{{P|game}}\assets\Libs\Config\*.xml}} - - '{{Game data/saves|Windows|{{P|game}}\user\savegames\}}' + - "{{Game data/config|Windows|{{P|game}}\\assets\\game.cfg|{{P|game}}\\assets\\hud_settings.xml|{{P|game}}\\assets\\Libs\\Config\\*.xml}}" + - "{{Game data/saves|Windows|{{P|game}}\\user\\savegames\\}}" The Cursed Love: pageId: 99906 steam: 868740 @@ -165964,8 +161439,8 @@ The Cursed Tower: The Cycle: pageId: 105439 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Prospect\Saved\Config\WindowsNoEditor}}' -'The Cycle: Frontier': + - "{{Game data/config|Windows|{{P|localappdata}}\\Prospect\\Saved\\Config\\WindowsNoEditor}}" +"The Cycle: Frontier": pageId: 178218 steam: 868270 steamSide: @@ -165974,20 +161449,20 @@ The Cycle: - 1947011 - 1947012 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Prospect\Saved}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Prospect\\Saved}}" The D Show: pageId: 179380 The D.R.G. Initiative: pageId: 74698 steam: 613580 -'The DOCS: Department of Creatures': +"The DOCS: Department of Creatures": pageId: 157007 steam: 674200 The Da Vinci Code: pageId: 165864 templates: - - '{{Game data/config|Windows|{{p|game}}\engine\}}' - - '{{Game data/saves|Windows|{{P|public}}\Documents\the da vinci code\}}' + - "{{Game data/config|Windows|{{p|game}}\\engine\\}}" + - "{{Game data/saves|Windows|{{P|public}}\\Documents\\the da vinci code\\}}" The Dagger of Amon Ra: gog: 1929512011 pageId: 131642 @@ -165995,7 +161470,7 @@ The Dame Was Loaded: gog: 1760463998 pageId: 125811 steam: 1006440 -'The Dandelion Girl: Don''t You Remember Me?': +"The Dandelion Girl: Don't You Remember Me?": pageId: 141013 steam: 990090 The Daring Mermaid Expedition: @@ -166003,32 +161478,30 @@ The Daring Mermaid Expedition: steam: 443830 The Dark Crystal: pageId: 171311 -'The Dark Crystal: Age of Resistance Tactics': +"The Dark Crystal: Age of Resistance Tactics": gog: 2147483084 pageId: 139556 steam: 1097790 templates: - - >- - {{Game - data/config|Windows|{{P|userprofile}}\AppData\LocalLow\BonusXP\DCAORTactics\ClientData\PlayerData.xml|{{P|hkcu}}\Software\BonusXP\DCAORTactics}} - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\BonusXP\DCAORTactics\SaveData}}' + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\BonusXP\\DCAORTactics\\ClientData\\PlayerData.xml|{{P|hkcu}}\\Software\\BonusXP\\DCAORTactics}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\BonusXP\\DCAORTactics\\SaveData}}" The Dark Eye (1995): pageId: 165471 -'The Dark Eye: Book of Heroes': +"The Dark Eye: Book of Heroes": pageId: 145435 steam: 1139870 -'The Dark Eye: Chains of Satinav': +"The Dark Eye: Chains of Satinav": gog: 1207659133 pageId: 13299 steam: 203830 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Daedalic Entertainment\Satinav\Savegames}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Daedalic Entertainment\Satinav\Savegames}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Daedalic Entertainment\\Satinav\\Savegames}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Daedalic Entertainment\\Satinav\\Savegames}}" The Dark Heart of Uukrul: gog: 1128694162 pageId: 72578 templates: - - '{{Game data/saves|DOS|{{p|game}}\*.IMG|{{p|game}}\*.GMI}}' + - "{{Game data/saves|DOS|{{p|game}}\\*.IMG|{{p|game}}\\*.GMI}}" The Dark Inside Me: pageId: 93265 steam: 345230 @@ -166038,15 +161511,15 @@ The Dark Legions: The Dark Mod: pageId: 11162 templates: - - '{{Game data/config|Windows|{{p|game}}\Darkmod.cfg}}' - - '{{Game data/config|Linux|{{p|game}}\Darkmod.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\fms\}}' + - "{{Game data/config|Windows|{{p|game}}\\Darkmod.cfg}}" + - "{{Game data/config|Linux|{{p|game}}\\Darkmod.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\fms\\}}" The Dark Occult: pageId: 110098 steam: 921780 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\The_Dark_Occult\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\The_Dark_Occult\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\The_Dark_Occult\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\The_Dark_Occult\\Saved\\SaveGames\\}}" The Dark Prophecy: gog: 1486653526 pageId: 175234 @@ -166056,8 +161529,8 @@ The Dark Queen of Krynn: pageId: 62687 steam: 1904622 templates: - - '{{Game data/config|DOS|{{p|game}}\DQK.CFG}}' - - '{{Game data/saves|DOS|{{p|game}}\SAVE\}}' + - "{{Game data/config|DOS|{{p|game}}\\DQK.CFG}}" + - "{{Game data/saves|DOS|{{p|game}}\\SAVE\\}}" The Dark Room: pageId: 112220 steam: 918530 @@ -166073,7 +161546,7 @@ The Dark Stone from Mebara: The Dark Tales of Katarina: pageId: 62540 steam: 617330 -'The Dark Veil: West Haven': +"The Dark Veil: West Haven": pageId: 139713 steam: 1085620 The Dark Wish: @@ -166084,10 +161557,8 @@ The Darkest Tales: pageId: 180468 steam: 1307690 templates: - - >- - {{Game - data/config|Windows|{{P|userprofile\appdata\locallow}}\TrinityTeam\DarkestTales\OPTIONS.txt|{{P|hkcu}}\Software\TrinityTeam\DarkestTales}} - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\TrinityTeam\DarkestTales\GAMESTATE*.txt}}' + - "{{Game data/config|Windows|{{P|userprofile\\appdata\\locallow}}\\TrinityTeam\\DarkestTales\\OPTIONS.txt|{{P|hkcu}}\\Software\\TrinityTeam\\DarkestTales}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\TrinityTeam\\DarkestTales\\GAMESTATE*.txt}}" The Darkest Woods: pageId: 99416 steam: 869300 @@ -166101,8 +161572,8 @@ The Darkness II: pageId: 317 steam: 67370 templates: - - '{{Game data/config|Windows|{{p|appdata}}\DarknessII\}}' - - '{{Game data/saves|Windows|{{p|appdata}}\DarknessII\}}' + - "{{Game data/config|Windows|{{p|appdata}}\\DarknessII\\}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\DarknessII\\}}" The Darkside Detective: gog: 1244373161 pageId: 39604 @@ -166111,32 +161582,28 @@ The Darkside Detective: - 451380 - 687140 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Spooky Doorway\The Darkside Detective\}}' - - '{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/Spooky Doorway/The Darkside Detective/prefs}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Spooky Doorway\The Darkside Detective\}}' - - '{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/Spooky Doorway/The Darkside Detective/*.save}}' -'The Darkside Detective: A Fumble in the Dark': + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Spooky Doorway\\The Darkside Detective\\}}" + - "{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/Spooky Doorway/The Darkside Detective/prefs}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Spooky Doorway\\The Darkside Detective\\}}" + - "{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/Spooky Doorway/The Darkside Detective/*.save}}" +"The Darkside Detective: A Fumble in the Dark": gog: 1294336748 pageId: 113220 renamedFrom: - - 'The Darkside Detective : Season 2' + - "The Darkside Detective : Season 2" steam: 795420 templates: - - >- - {{Game data/config|Windows|{{P|hkcu}}\SOFTWARE\Spooky Doorway\The Darkside Detective - 2|{{P|userprofile\appdata\locallow}}\Spooky Doorway\The Darkside Detective 2\DarksideOptions}} - - >- - {{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/Spooky Doorway/The Darkside Detective - 2/prefs|{{P|xdgconfighome}}/unity3d/Spooky Doorway/The Darkside Detective 2/DarksideOptions}} - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Spooky Doorway\The Darkside Detective 2\*.save}}' - - '{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/Spooky Doorway/The Darkside Detective 2/*.save}}' -'The Dawn: First War': + - "{{Game data/config|Windows|{{P|hkcu}}\\SOFTWARE\\Spooky Doorway\\The Darkside Detective 2|{{P|userprofile\\appdata\\locallow}}\\Spooky Doorway\\The Darkside Detective 2\\DarksideOptions}}" + - "{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/Spooky Doorway/The Darkside Detective 2/prefs|{{P|xdgconfighome}}/unity3d/Spooky Doorway/The Darkside Detective 2/DarksideOptions}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Spooky Doorway\\The Darkside Detective 2\\*.save}}" + - "{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/Spooky Doorway/The Darkside Detective 2/*.save}}" +"The Dawn: First War": pageId: 55811 steam: 574510 -'The Dawn: Sniper''s Way': +"The Dawn: Sniper's Way": pageId: 175076 steam: 1035600 -'The Day After: Origins': +"The Day After: Origins": pageId: 77108 steam: 566240 The Day Before: @@ -166169,8 +161636,8 @@ The Deadly Tower of Monsters: pageId: 34202 steam: 353700 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\TowerOfMonsters\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\TowerOfMonsters\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\TowerOfMonsters\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\TowerOfMonsters\\}}" The Deal: pageId: 56986 steam: 567340 @@ -166192,12 +161659,12 @@ The Deed: The Deed II: pageId: 150444 steam: 1155660 -'The Deed: Dynasty': +"The Deed: Dynasty": pageId: 43103 steam: 460960 templates: - - '{{Game data/saves|Windows|{{p|steam}}\SteamApps\common\The Deed Dynasty\Save*.rvdata2}}' -'The Deep Paths: Labyrinth of Andokost': + - "{{Game data/saves|Windows|{{p|steam}}\\SteamApps\\common\\The Deed Dynasty\\Save*.rvdata2}}" +"The Deep Paths: Labyrinth of Andokost": pageId: 40155 steam: 375500 The Deepest House: @@ -166212,16 +161679,16 @@ The Deer (2019): The Deer God: pageId: 48567 steam: 328940 -'The Defender: Farm and Castle': +"The Defender: Farm and Castle": pageId: 135208 steam: 1067600 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Kitti Sarmuerjai\TheDefenderFAC\}}' - - '{{Game data/saves|Windows|{{P|hkcu}}\Software\Kitti Sarmuerjai\TheDefenderFAC\}}' -'The Defender: Farm and Castle 2': + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Kitti Sarmuerjai\\TheDefenderFAC\\}}" + - "{{Game data/saves|Windows|{{P|hkcu}}\\Software\\Kitti Sarmuerjai\\TheDefenderFAC\\}}" +"The Defender: Farm and Castle 2": pageId: 153610 steam: 1141150 -'The Defenders: The Second Wave': +"The Defenders: The Second Wave": pageId: 48338 steam: 351400 The Deletion: @@ -166250,24 +161717,24 @@ The Depths of Tolagal: pageId: 49035 steam: 340600 templates: - - '{{Game data/saves|Windows|{{P|localappdata}}\depths-of-tolagal\Local Storage\}}' + - "{{Game data/saves|Windows|{{P|localappdata}}\\depths-of-tolagal\\Local Storage\\}}" The Descendant: pageId: 44005 steam: 351940 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\SOFTWARE\Gaming Corps\The Descendant}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\My Games\The Descendant\}}' -The Desert's Rose: + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\Gaming Corps\\The Descendant}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\My Games\\The Descendant\\}}" +"The Desert's Rose": pageId: 112528 steam: 935110 -The Designer's Curse: +"The Designer's Curse": pageId: 141520 steam: 1119060 The Desolate Hope: pageId: 37457 steam: 298180 templates: - - '{{Game data/saves|Windows|{{p|game}}\tdh*.txt}}' + - "{{Game data/saves|Windows|{{p|game}}\\tdh*.txt}}" The Desolate Room: pageId: 167458 renamedFrom: @@ -166276,48 +161743,42 @@ The Detail: pageId: 25339 steam: 319970 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Rival Games\The Detail}}' - - '{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/Rival Games/The Detail/prefs}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\My Games\Rival Games\The Detail\Saves\}}' - - '{{Game data/saves|Linux|{{P|game}}/The Detail_Data/Saves/}}' -'The Detective Chapters: Part One': + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Rival Games\\The Detail}}" + - "{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/Rival Games/The Detail/prefs}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\My Games\\Rival Games\\The Detail\\Saves\\}}" + - "{{Game data/saves|Linux|{{P|game}}/The Detail_Data/Saves/}}" +"The Detective Chapters: Part One": pageId: 124528 steam: 981660 The Devil Haunts Me: pageId: 124285 steam: 993170 templates: - - '{{Game data/saves|Windows|{{P|hkcu}}\Software\lum\THE DEVIL HAUNTS ME\}}' + - "{{Game data/saves|Windows|{{P|hkcu}}\\Software\\lum\\THE DEVIL HAUNTS ME\\}}" The Devil Inside: pageId: 181488 templates: - - '{{Game data/config|Windows|{{p|game}}\Config.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\slot*.tdi}}' + - "{{Game data/config|Windows|{{p|game}}\\Config.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\slot*.tdi}}" The Devil in Me: pageId: 182216 steam: 1567020 templates: - - >- - {{Game - data/config|Windows|{{P|localappdata}}\TheDevilInMe\Saved\SaveGames\|{{P|localappdata}}\TheDevilInMe\Saved\Config\WindowsNoEditor}} - - '{{Game data/saves|Windows|{{P|localappdata}}\TheDevilInMe\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\TheDevilInMe\\Saved\\SaveGames\\|{{P|localappdata}}\\TheDevilInMe\\Saved\\Config\\WindowsNoEditor}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\TheDevilInMe\\Saved\\SaveGames\\}}" The Devil on G-String: pageId: 33636 steam: 377670 templates: - - >- - {{Game data/config|Windows|{{p|appdata}}\AkabeiSoft2\G_Senjou_no_Maou\|{{p|userprofile\Documents}}\g-senjou no - maou english savedata\|{{p|userprofile\Documents}}\あかべぇそふとつぅセーブデータ\G線上の魔王セーブデータ\}} - - >- - {{Game data/saves|Windows|{{p|appdata}}\AkabeiSoft2\G_Senjou_no_Maou\|{{p|userprofile\Documents}}\g-senjou no maou - english savedata\|{{p|userprofile\Documents}}\あかべぇそふとつぅセーブデータ\G線上の魔王セーブデータ\}} -The Devil's Calculator: + - "{{Game data/config|Windows|{{p|appdata}}\\AkabeiSoft2\\G_Senjou_no_Maou\\|{{p|userprofile\\Documents}}\\g-senjou no maou english savedata\\|{{p|userprofile\\Documents}}\\あかべぇそふとつぅセーブデータ\\G線上の魔王セーブデータ\\}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\AkabeiSoft2\\G_Senjou_no_Maou\\|{{p|userprofile\\Documents}}\\g-senjou no maou english savedata\\|{{p|userprofile\\Documents}}\\あかべぇそふとつぅセーブデータ\\G線上の魔王セーブデータ\\}}" +"The Devil's Calculator": pageId: 127768 steam: 1014280 -The Devil's Garden: +"The Devil's Garden": pageId: 100226 steam: 838790 -The Devil's Womb: +"The Devil's Womb": pageId: 149841 steam: 913320 The Dew: @@ -166330,10 +161791,10 @@ The Dig: pageId: 26284 steam: 6040 templates: - - '{{Game data/config|DOS|C:\DIG\IMUSE.INI}}' - - '{{Game data/config|Windows|{{p|game}}\dig.ini|{{p|AppData}}\LucasArts\The Dig\}}' - - '{{Game data/saves|DOS|C:\DIG\SAVEGAME.*}}' - - '{{Game data/saves|Windows|{{p|game}}\dig.s??|{{p|appdata}}\LucasArts\The Dig\}}' + - "{{Game data/config|DOS|C:\\DIG\\IMUSE.INI}}" + - "{{Game data/config|Windows|{{p|game}}\\dig.ini|{{p|AppData}}\\LucasArts\\The Dig\\}}" + - "{{Game data/saves|DOS|C:\\DIG\\SAVEGAME.*}}" + - "{{Game data/saves|Windows|{{p|game}}\\dig.s??|{{p|appdata}}\\LucasArts\\The Dig\\}}" The Dinosaur Operation: pageId: 94130 steam: 603640 @@ -166341,8 +161802,8 @@ The DioField Chronicle: pageId: 175685 steam: 1399080 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\DFC\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\My Games\DFC\Steam\{{P|uid}}\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\DFC\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\My Games\\DFC\\Steam\\{{P|uid}}\\}}" The Directed: pageId: 87313 steam: 781670 @@ -166353,24 +161814,24 @@ The Disappearing of Gensokyo: pageId: 79710 steam: 776490 templates: - - '{{Game data/config|Windows|{{p|Steam}}\userdata\{{p|uid}}\776490\remote\config.xml}}' - - '{{Game data/saves|Windows|{{p|Steam}}\userdata\{{p|uid}}\776490\remote\}}' + - "{{Game data/config|Windows|{{p|Steam}}\\userdata\\{{p|uid}}\\776490\\remote\\config.xml}}" + - "{{Game data/saves|Windows|{{p|Steam}}\\userdata\\{{p|uid}}\\776490\\remote\\}}" The Disguiser Of Fate: pageId: 153887 steam: 1200650 The Disgusting Slaughterman: pageId: 153230 steam: 886210 -'The Dishwasher: Vampire Smile': +"The Dishwasher: Vampire Smile": pageId: 59877 steam: 268990 templates: - - '{{Game data/config|Windows|{{p|appdata}}\VampireSmile\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/VampireSmile/}}' - - '{{Game data/config|Linux|{{p|xdgconfighome}}/VampireSmile/}}' - - '{{Game data/saves|Windows|{{p|appdata}}\VampireSmile\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/VampireSmile/}}' - - '{{Game data/saves|Linux|{{p|xdgdatahome}}/VampireSmile/}}' + - "{{Game data/config|Windows|{{p|appdata}}\\VampireSmile\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/VampireSmile/}}" + - "{{Game data/config|Linux|{{p|xdgconfighome}}/VampireSmile/}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\VampireSmile\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/VampireSmile/}}" + - "{{Game data/saves|Linux|{{p|xdgdatahome}}/VampireSmile/}}" The Disney Afternoon Collection: pageId: 59844 steam: 525040 @@ -166382,17 +161843,17 @@ The Ditzy Demons Are in Love With Me: pageId: 113248 steam: 802870 templates: - - '{{Game data/config|Windows|{{p|game}}\savedata\ditzydemons.cfu}}' - - '{{Game data/saves|Windows|{{p|game}}\savedata}}' -'The Divergent Series: Allegiant VR': + - "{{Game data/config|Windows|{{p|game}}\\savedata\\ditzydemons.cfu}}" + - "{{Game data/saves|Windows|{{p|game}}\\savedata}}" +"The Divergent Series: Allegiant VR": pageId: 44102 steam: 448980 -'The Divide: Enemies Within': +"The Divide: Enemies Within": pageId: 175262 The Divine Paradox: pageId: 40094 steam: 495630 -'The Dolls: Reborn': +"The Dolls: Reborn": pageId: 42920 steam: 473670 The Donnerwald Experiment: @@ -166407,7 +161868,7 @@ The Dope Game: The Doulos Study: pageId: 140836 steam: 1110010 -The Dragons' Twilight II: +"The Dragons' Twilight II": pageId: 141708 steam: 878090 The Drain Collector: @@ -166424,8 +161885,8 @@ The Dream Machine: pageId: 28636 steam: 94300 templates: - - '{{Game data/config|Windows|{{p|game}}\saveGames\settings.txt}}' - - '{{Game data/saves|Windows|{{p|game}}\saveGames\}}' + - "{{Game data/config|Windows|{{p|game}}\\saveGames\\settings.txt}}" + - "{{Game data/saves|Windows|{{p|game}}\\saveGames\\}}" The Dreamatorium of Dr. Magnus 2: pageId: 46514 steam: 393150 @@ -166434,7 +161895,7 @@ The Dreamcatcher: renamedFrom: - 梦乡 The Dreamcatcher steam: 1056590 -'The Dreamlands: Aisling''s Quest': +"The Dreamlands: Aisling's Quest": pageId: 90300 steam: 821550 The Dreamlord: @@ -166453,40 +161914,28 @@ The Dreamwalkers: The Driver Syndicate: pageId: 168322 templates: - - '{{Game data/config|Windows|{{p|game}}\GameData\cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\SavedGames}}' -The Driver's Mission: + - "{{Game data/config|Windows|{{p|game}}\\GameData\\cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\SavedGames}}" +"The Driver's Mission": pageId: 144333 steam: 1041070 The Drone Racing League Simulator: pageId: 63998 steam: 641780 templates: - - >- - {{Game data/config|Windows|{{P|game}}\DRL - Simulator_Data\StreamingAssets\game\storage\offline\state\player\player-state.json|{{P|hkcu}}\SOFTWARE\Drone - Racing League\DRL Simulator\}} + - "{{Game data/config|Windows|{{P|game}}\\DRL Simulator_Data\\StreamingAssets\\game\\storage\\offline\\state\\player\\player-state.json|{{P|hkcu}}\\SOFTWARE\\Drone Racing League\\DRL Simulator\\}}" The Dropping of The Dead: pageId: 67611 steam: 691130 -'The Duel: Test Drive II': +"The Duel: Test Drive II": pageId: 64355 -'The Dukes of Hazzard: Racing for Home': +"The Dukes of Hazzard: Racing for Home": pageId: 183189 renamedFrom: - - 'Space Clash: The Last Frontier' + - "Space Clash: The Last Frontier" templates: - - >- - {{Game data/config|Windows|{{p|hklm}}\Software\WOW6432Node\SouthPeak Interactive\Dukes of Hazzard{{note|For US - version. Contains mostly all settings that can also be found in-game in the main folder. Game - Resolution registry gets reset to 1 on boot and High Detail Tracks is ignored by - the game. Every registry key in the Dev folder gets ignored by the game; the name suggests they were - developer entries that were never removed after development and are unused by the game - itself.{{Refcheck|user=Mrtnptrs|date=2022-11-21|comment=Checked by changing registry entries and see if it - has any effect.}}}}}} - - >- - {{Game data/saves|Windows|{{p|hklm}}\Software\WOW6432Node\SouthPeak Interactive\Dukes of - Hazzard\SavedGames{{note|Stored in different subfolders for every player name.}}}} + - "{{Game data/config|Windows|{{p|hklm}}\\Software\\WOW6432Node\\SouthPeak Interactive\\Dukes of Hazzard{{note|For US version. Contains mostly all settings that can also be found in-game in the main folder. Game Resolution registry gets reset to 1 on boot and High Detail Tracks is ignored by the game. Every registry key in the Dev folder gets ignored by the game; the name suggests they were developer entries that were never removed after development and are unused by the game itself.{{Refcheck|user=Mrtnptrs|date=2022-11-21|comment=Checked by changing registry entries and see if it has any effect.}}}}}}" + - "{{Game data/saves|Windows|{{p|hklm}}\\Software\\WOW6432Node\\SouthPeak Interactive\\Dukes of Hazzard\\SavedGames{{note|Stored in different subfolders for every player name.}}}}" The Duller: pageId: 94719 steam: 861340 @@ -166508,12 +161957,12 @@ The Dungeon of Destiny: The Dungeon of Lulu Farea: pageId: 125133 steam: 998220 -'The Dungeon of Naheulbeuk: The Amulet of Chaos': +"The Dungeon of Naheulbeuk: The Amulet of Chaos": gog: 1466573928 pageId: 142319 steam: 970830 templates: - - '{{Game data/saves|Windows|{{p|userprofile\AppData\LocalLow}}\Artefacts Studio\Naheulbeuk\Save\}}' + - "{{Game data/saves|Windows|{{p|userprofile\\AppData\\LocalLow}}\\Artefacts Studio\\Naheulbeuk\\Save\\}}" The Dungeoning: pageId: 50326 steam: 295870 @@ -166531,16 +161980,16 @@ The Dwarves: pageId: 35706 steam: 403970 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\dwarves\*.cfg}}' - - '{{Game data/config|Linux|{{P|linuxhome}}/.local/share/dwarves/}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\dwarves\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\dwarves\\*.cfg}}" + - "{{Game data/config|Linux|{{P|linuxhome}}/.local/share/dwarves/}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\dwarves\\}}" The Dwarves of Glistenveld: pageId: 135307 steam: 805520 The Dweller: pageId: 37176 steam: 463930 -The Eagle's Heir: +"The Eagle's Heir": pageId: 59627 steam: 609760 The Earth Dies Screaming: @@ -166567,44 +162016,42 @@ The Eerie Inn: The Eerie Inn VR: pageId: 104885 steam: 910530 -'The Egyptian Prophecy: The Fate of Ramses': +"The Egyptian Prophecy: The Fate of Ramses": pageId: 50115 steam: 302160 The Eigengrau Menagerie: pageId: 47623 steam: 375090 -'The Elder Scrolls Adventures: Redguard': +"The Elder Scrolls Adventures: Redguard": gog: 1440162836 gogSide: - 1435829617 pageId: 3405 steam: 1812410 templates: - - '{{Game data/config|DOS|{{p|game}}\SYSTEM.INI}}' - - '{{Game data/saves|DOS|{{p|game}}\SAVEGAME\}}' -'The Elder Scrolls II: Daggerfall': + - "{{Game data/config|DOS|{{p|game}}\\SYSTEM.INI}}" + - "{{Game data/saves|DOS|{{p|game}}\\SAVEGAME\\}}" +"The Elder Scrolls II: Daggerfall": gog: 1435829353 gogSide: - 1782995089 pageId: 1503 steam: 1812390 templates: - - '{{Game data/config|DOS|{{p|game}}\ARENA2\BETAPLYR.DAT|{{p|game}}\ARENA2\DAGGER.GRD}}' - - '{{Game data/saves|DOS|{{p|game}}\SAVE*\}}' -'The Elder Scrolls III: Morrowind': + - "{{Game data/config|DOS|{{p|game}}\\ARENA2\\BETAPLYR.DAT|{{p|game}}\\ARENA2\\DAGGER.GRD}}" + - "{{Game data/saves|DOS|{{p|game}}\\SAVE*\\}}" +"The Elder Scrolls III: Morrowind": gog: 1440163901 gogSide: - 1435828767 pageId: 46 steam: 22320 templates: - - '{{Game data/config|Windows|{{p|game}}\Morrowind.ini|{{p|hklm}}\SOFTWARE\{{p|wow64}}\Bethesda Softworks\Morrowind}}' - - >- - {{Game data/config|Microsoft Store|{{p|game}}\Morrowind.ini|{{p|hklm}}\SOFTWARE\{{p|wow64}}\Bethesda - Softworks\Morrowind}} - - '{{Game data/saves|Windows|{{p|game}}\Saves\}}' - - '{{Game data/saves|Microsoft Store|{{p|game}}\Saves\}}' -'The Elder Scrolls IV: Oblivion': + - "{{Game data/config|Windows|{{p|game}}\\Morrowind.ini|{{p|hklm}}\\SOFTWARE\\{{p|wow64}}\\Bethesda Softworks\\Morrowind}}" + - "{{Game data/config|Microsoft Store|{{p|game}}\\Morrowind.ini|{{p|hklm}}\\SOFTWARE\\{{p|wow64}}\\Bethesda Softworks\\Morrowind}}" + - "{{Game data/saves|Windows|{{p|game}}\\Saves\\}}" + - "{{Game data/saves|Microsoft Store|{{p|game}}\\Saves\\}}" +"The Elder Scrolls IV: Oblivion": gog: 1242989820 gogSide: - 1458058109 @@ -166614,8 +162061,8 @@ The Eigengrau Menagerie: - 22333 - 900883 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Oblivion\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Oblivion\Saves\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Oblivion\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Oblivion\\Saves\\}}" The Elder Scrolls Online: pageId: 9001 steam: 306130 @@ -166626,11 +162073,11 @@ The Elder Scrolls Online: - 925100 - 1205430 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Elder Scrolls Online\live\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Documents/Elder Scrolls Online/live/}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Elder Scrolls Online\\live\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Documents/Elder Scrolls Online/live/}}" The Elder Scrolls Online - Greymoor: pageId: 157053 -'The Elder Scrolls V: Skyrim': +"The Elder Scrolls V: Skyrim": pageId: 121 steam: 72850 steamSide: @@ -166640,9 +162087,9 @@ The Elder Scrolls Online - Greymoor: - 226880 - 1240360 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Skyrim\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Skyrim\Saves\}}' -'The Elder Scrolls V: Skyrim Special Edition': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Skyrim\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Skyrim\\Saves\\}}" +"The Elder Scrolls V: Skyrim Special Edition": gog: 1711230643 gogSide: - 1162721350 @@ -166652,31 +162099,31 @@ The Elder Scrolls Online - Greymoor: steamSide: - 1746860 templates: - - '{{Game data/config|GOG.com|{{p|userprofile\Documents}}\My Games\Skyrim Special Edition GOG\}}' - - '{{Game data/config|Steam|{{p|userprofile\Documents}}\My Games\Skyrim Special Edition\}}' - - '{{Game data/saves|GOG.com|{{p|userprofile\Documents}}\My Games\Skyrim Special Edition GOG\Saves\}}' - - '{{Game data/saves|Steam|{{p|userprofile\Documents}}\My Games\Skyrim Special Edition\Saves\}}' -'The Elder Scrolls V: Skyrim VR': + - "{{Game data/config|GOG.com|{{p|userprofile\\Documents}}\\My Games\\Skyrim Special Edition GOG\\}}" + - "{{Game data/config|Steam|{{p|userprofile\\Documents}}\\My Games\\Skyrim Special Edition\\}}" + - "{{Game data/saves|GOG.com|{{p|userprofile\\Documents}}\\My Games\\Skyrim Special Edition GOG\\Saves\\}}" + - "{{Game data/saves|Steam|{{p|userprofile\\Documents}}\\My Games\\Skyrim Special Edition\\Saves\\}}" +"The Elder Scrolls V: Skyrim VR": pageId: 89839 steam: 611670 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Skyrim VR\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Skyrim VR\Saves\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Skyrim VR\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Skyrim VR\\Saves\\}}" The Elder Scrolls VI: pageId: 101575 -'The Elder Scrolls: Arena': +"The Elder Scrolls: Arena": gog: 1435828982 pageId: 3394 steam: 1812290 templates: - - '{{Game data/saves|DOS|{{p|game}}\*.0*|{{p|game}}\NAMES.DAT}}' -'The Elder Scrolls: Blades': + - "{{Game data/saves|DOS|{{p|game}}\\*.0*|{{p|game}}\\NAMES.DAT}}" +"The Elder Scrolls: Blades": pageId: 97261 -'The Elder Scrolls: Legends': +"The Elder Scrolls: Legends": pageId: 33705 steam: 364470 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Bethesda Softworks LLC\Legends}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Bethesda Softworks LLC\\Legends}}" The Eldritch Zookeeper: pageId: 64923 steam: 654960 @@ -166692,28 +162139,28 @@ The Elementalist: The Elmian Warrior: pageId: 65078 steam: 667510 -'The Ember Saga: A New Fire': +"The Ember Saga: A New Fire": pageId: 36700 renamedFrom: - - 'The Ember Series: A New Fire' + - "The Ember Series: A New Fire" steam: 498700 The Embodiment of Scarlet Devil: pageId: 25082 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/saves|Windows|{{p|game}}\}}' -'The Emerald Maiden: Symphony of Dreams': + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\}}" +"The Emerald Maiden: Symphony of Dreams": pageId: 44553 steam: 429610 The Emerald Tablet: pageId: 153699 steam: 289060 -The Emperor's New Groove: +"The Emperor's New Groove": pageId: 65506 templates: - - '{{Game data/config|Windows|{{p|HKLM}}\SOFTWARE\{{p|wow64}}\Disney Interactive\Emperor''s New Groove\1.0\}}' - - '{{Game data/saves|Windows|{{p|game}}\}}' -The Empire's Crisis: + - "{{Game data/config|Windows|{{p|HKLM}}\\SOFTWARE\\{{p|wow64}}\\Disney Interactive\\Emperor's New Groove\\1.0\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\}}" +"The Empire's Crisis": pageId: 148952 steam: 1147370 The Emptiness Deluxe Edition: @@ -166729,21 +162176,21 @@ The Enchanted Cave 2: pageId: 37497 steam: 368610 templates: - - '{{Game data/config|Windows|{{P|appdata}}\okshur\Enchanted Cave 2\TEC2GameData.sol}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.local/share/okshur/Enchanted\ Cave\ 2/TEC2GameData.sol}}' - - '{{Game data/saves|Windows|{{P|appdata}}\okshur\Enchanted Cave 2\TEC2Slot[0-3].sol}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.local/share/okshur/Enchanted\ Cave\ 2/TEC2Slot[0-3].sol}}' + - "{{Game data/config|Windows|{{P|appdata}}\\okshur\\Enchanted Cave 2\\TEC2GameData.sol}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.local/share/okshur/Enchanted\\ Cave\\ 2/TEC2GameData.sol}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\okshur\\Enchanted Cave 2\\TEC2Slot[0-3].sol}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.local/share/okshur/Enchanted\\ Cave\\ 2/TEC2Slot[0-3].sol}}" The Enchanted World: pageId: 147970 The End Is Nigh: pageId: 63349 steam: 583470 templates: - - '{{Game data/config|Windows|{{p|game}}\settings.txt}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.local/share/The End is Nigh/settings.txt}}' - - '{{Game data/saves|Windows|{{P|game}}\saves\}}' - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\583470\remote\}}' -'The End o,,,o': + - "{{Game data/config|Windows|{{p|game}}\\settings.txt}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.local/share/The End is Nigh/settings.txt}}" + - "{{Game data/saves|Windows|{{P|game}}\\saves\\}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\583470\\remote\\}}" +"The End o,,,o": pageId: 62154 steam: 509880 The End of Dyeus: @@ -166752,13 +162199,13 @@ The End of Dyeus: The End of an Actress: pageId: 153971 steam: 1147760 -'The End of an Age: Fading Remnants': +"The End of an Age: Fading Remnants": pageId: 39679 steam: 398950 The End of the Sun: pageId: 109680 steam: 912840 -'The End: Inari''s Quest': +"The End: Inari's Quest": pageId: 103049 steam: 893070 The Endless Empty: @@ -166773,7 +162220,7 @@ The Endless Mission: The Endless Stairwell: pageId: 162818 templates: - - '{{Game data/config|Windows|{{p|game}}\settings.cfg}}' + - "{{Game data/config|Windows|{{p|game}}\\settings.cfg}}" The Endless White: pageId: 153987 steam: 1099450 @@ -166784,8 +162231,8 @@ The Enigma Machine: pageId: 182479 steam: 977810 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\ENIGMA\THE ENIGMA MACHINE\}}' - - '{{Game data/saves|Windows|{{P|hkcu}}\Software\ENIGMA\THE ENIGMA MACHINE\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\ENIGMA\\THE ENIGMA MACHINE\\}}" + - "{{Game data/saves|Windows|{{P|hkcu}}\\Software\\ENIGMA\\THE ENIGMA MACHINE\\}}" The Enlightened League of Bone Builders and the Osseous Enigma: pageId: 36682 steam: 517550 @@ -166795,7 +162242,7 @@ The Entente Gold: The Enthralling Realms: pageId: 99728 steam: 859950 -'The Enthralling Realms: An Alchemist''s Tale': +"The Enthralling Realms: An Alchemist's Tale": pageId: 127506 steam: 1016850 The Entity: @@ -166825,50 +162272,50 @@ The Escapists: pageId: 19371 steam: 298630 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\The Escapists\settings.cfg}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/The Escapists/settings.cfg}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\The Escapists\}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/The Escapists/}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\The Escapists\\settings.cfg}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/The Escapists/settings.cfg}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\The Escapists\\}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/The Escapists/}}" The Escapists 2: gog: 2137491407 pageId: 65486 steam: 641990 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Team 17 Digital ltd.\The Escapists 2\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Team 17 Digital ltd_\The Escapists 2\Saves\}}' - - '{{Game data/saves|Linux|{{p|xdgconfighome}}/unity3d/Team 17 Digital ltd_/The Escapists 2/Saves/}}' -'The Escapists: The Walking Dead': + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Team 17 Digital ltd.\\The Escapists 2\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Team 17 Digital ltd_\\The Escapists 2\\Saves\\}}" + - "{{Game data/saves|Linux|{{p|xdgconfighome}}/unity3d/Team 17 Digital ltd_/The Escapists 2/Saves/}}" +"The Escapists: The Walking Dead": gog: 1441717336 pageId: 34316 steam: 388060 -'The Esoterica: Hollow Earth': +"The Esoterica: Hollow Earth": pageId: 56918 steam: 560730 templates: - - '{{Game data/config|Windows|{{P|appdata}}\AlawarEntertainment\AlawarStargaze\Esoterica_Hollow_Earth\}}' - - '{{Game data/saves|Windows|{{P|appdata}}\AlawarEntertainment\AlawarStargaze\Esoterica_Hollow_Earth\}}' + - "{{Game data/config|Windows|{{P|appdata}}\\AlawarEntertainment\\AlawarStargaze\\Esoterica_Hollow_Earth\\}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\AlawarEntertainment\\AlawarStargaze\\Esoterica_Hollow_Earth\\}}" The Essence Reaper Ritual: pageId: 65839 steam: 674840 -'The Eternal Castle: Remastered': +"The Eternal Castle: Remastered": pageId: 126828 steam: 963450 templates: - - '{{Game data/saves|Windows|{{p|localappdata}}\TEC_Project_GM2\}}' + - "{{Game data/saves|Windows|{{p|localappdata}}\\TEC_Project_GM2\\}}" The Eternal Cylinder: pageId: 143330 steam: 865680 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\TheEternalCylinder\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\TheEternalCylinder\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\TheEternalCylinder\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\TheEternalCylinder\\Saved\\SaveGames\\}}" The Even More Incredible Machine: gog: 1207664023 pageId: 8983 templates: - - '{{Game data/config|DOS|{{p|game}}\RESOURCE.CFG}}' - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/saves|DOS|{{p|game}}\TIM.CFG|{{p|game}}\*.TIM}}' - - '{{Game data/saves|Windows|{{p|game}}\}}' + - "{{Game data/config|DOS|{{p|game}}\\RESOURCE.CFG}}" + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|DOS|{{p|game}}\\TIM.CFG|{{p|game}}\\*.TIM}}" + - "{{Game data/saves|Windows|{{p|game}}\\}}" The Evil Party: pageId: 79232 steam: 773230 @@ -166877,42 +162324,30 @@ The Evil Within: gogSide: - 1237841007 - 1260430475 - - 1636306436 - - 2145506737 - - 1781874100 - 1434200125 + - 1636306436 + - 1781874100 + - 2145506737 pageId: 17739 steam: 268050 steamSide: - 318750 - 318751 templates: - - >- - {{Game data/config|Windows|{{p|userprofile}}\Saved Games\TangoGameworks\The Evil Within\base\the evil - withinConfig.cfg}} - - >- - {{Game data/config|Microsoft Store|{{p|userprofile}}\Saved Games\TangoGameworks\The Evil Within\base\the evil - withinConfig.cfg}} - - '{{Game data/saves|Windows|{{p|userprofile}}\Saved Games\TangoGameworks\The Evil Within\base\savegame\}}' - - >- - {{Game data/saves|Microsoft - Store|{{p|localappdata}}\Packages\BethesdaSoftworks.TheEvilWithin-PC_3275kfvn8vcwc\SystemAppData\wgs\}} + - "{{Game data/config|Windows|{{p|userprofile}}\\Saved Games\\TangoGameworks\\The Evil Within\\base\\the evil withinConfig.cfg}}" + - "{{Game data/config|Microsoft Store|{{p|userprofile}}\\Saved Games\\TangoGameworks\\The Evil Within\\base\\the evil withinConfig.cfg}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Saved Games\\TangoGameworks\\The Evil Within\\base\\savegame\\}}" + - "{{Game data/saves|Microsoft Store|{{p|localappdata}}\\Packages\\BethesdaSoftworks.TheEvilWithin-PC_3275kfvn8vcwc\\SystemAppData\\wgs\\}}" The Evil Within 2: gog: 1083619800 pageId: 63523 steam: 601430 templates: - - >- - {{Game data/config|Epic Games Launcher|{{P|userprofile}}\Saved Games\TangoGameworks\The Evil Within 2 - (Epic)\base\the_evil_within_2Config.cfg}} - - >- - {{Game data/config|Windows|{{P|userprofile}}\Saved Games\TangoGameworks\The Evil Within - 2\base\the_evil_within2Config.cfg}} - - >- - {{Game data/config|Epic Games Launcher|{{P|userprofile}}\Saved Games\TangoGameworks\The Evil Within 2 - (Epic)\base\savegame\}} - - '{{Game data/saves|Windows|{{P|userprofile}}\Saved Games\TangoGameworks\The Evil Within 2\base\savegame\}}' -The Excavation of Hob's Barrow: + - "{{Game data/config|Epic Games Launcher|{{P|userprofile}}\\Saved Games\\TangoGameworks\\The Evil Within 2 (Epic)\\base\\the_evil_within_2Config.cfg}}" + - "{{Game data/config|Windows|{{P|userprofile}}\\Saved Games\\TangoGameworks\\The Evil Within 2\\base\\the_evil_within2Config.cfg}}" + - "{{Game data/config|Epic Games Launcher|{{P|userprofile}}\\Saved Games\\TangoGameworks\\The Evil Within 2 (Epic)\\base\\savegame\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\Saved Games\\TangoGameworks\\The Evil Within 2\\base\\savegame\\}}" +"The Excavation of Hob's Barrow": gog: 1790032718 pageId: 157124 renamedFrom: @@ -166922,12 +162357,12 @@ The Excavation of Hob's Barrow: - 2143560 - 2143570 templates: - - '{{Game data/config|Windows|{{P|userprofile}}\Saved Games\The Excavation of Hob''s Barrow\acsetup.cfg}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\Saved Games\The Excavation of Hob''s Barrow\}}' + - "{{Game data/config|Windows|{{P|userprofile}}\\Saved Games\\The Excavation of Hob's Barrow\\acsetup.cfg}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\Saved Games\\The Excavation of Hob's Barrow\\}}" The Executioner: pageId: 88174 steam: 739130 -'The Executioner: Prologue': +"The Executioner: Prologue": pageId: 66436 steam: 674760 The Exiled: @@ -166939,13 +162374,13 @@ The Existence Abstract: The Exorcist: pageId: 67243 steam: 683160 -'The Exorcist: Legion VR': +"The Exorcist: Legion VR": pageId: 72893 steam: 708580 -'The Exorcist: Legion VR (Deluxe Edition)': +"The Exorcist: Legion VR (Deluxe Edition)": pageId: 149019 steam: 1156250 -'The Expanse: A Telltale Series': +"The Expanse: A Telltale Series": pageId: 173582 steam: 1708010 steamSide: @@ -166957,9 +162392,9 @@ The Expendabros: pageId: 19017 steam: 312990 templates: - - '{{Game data/config|Windows|{{p|game}}\Saves\Options.xml}}' - - '{{Game data/saves|Windows|{{p|game}}\Saves\{{p|uid}}.sav}}' -'The Experiment: Escape Room': + - "{{Game data/config|Windows|{{p|game}}\\Saves\\Options.xml}}" + - "{{Game data/saves|Windows|{{p|game}}\\Saves\\{{p|uid}}.sav}}" +"The Experiment: Escape Room": pageId: 122022 steam: 977570 The Expression Amrilato: @@ -166979,29 +162414,27 @@ The Eyes of Ara: pageId: 38551 steam: 454250 templates: - - >- - {{Game data/config|Windows|{{P|userprofile}}\AppData\LocalLow\100 Stones Interactive\The Eyes of - Ara\|{{p|hkcu}}\Software\100 Stones Interactive\The Eyes of Ara\}} - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\100 Stones Interactive\The Eyes of Ara\}}' + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\100 Stones Interactive\\The Eyes of Ara\\|{{p|hkcu}}\\Software\\100 Stones Interactive\\The Eyes of Ara\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\100 Stones Interactive\\The Eyes of Ara\\}}" The F.A. Premier League Football Manager 2000: pageId: 157899 templates: - - '{{Game data/config|Windows|{{P|game}}\setup}}' - - '{{Game data/saves|Windows|{{P|game}}\games}}' + - "{{Game data/config|Windows|{{P|game}}\\setup}}" + - "{{Game data/saves|Windows|{{P|game}}\\games}}" The F.A. Premier League Football Manager 2001: pageId: 157890 templates: - - '{{Game data/config|Windows|{{P|game}}\setup}}' - - '{{Game data/saves|Windows|{{P|game}}\games}}' + - "{{Game data/config|Windows|{{P|game}}\\setup}}" + - "{{Game data/saves|Windows|{{P|game}}\\games}}" The F.A. Premier League Football Manager 99: pageId: 92542 templates: - - '{{Game data/saves|Windows|{{P|game}}\games}}' + - "{{Game data/saves|Windows|{{P|game}}\\games}}" The F.A. Premier League Manager 2002: pageId: 157842 templates: - - '{{Game data/config|Windows|{{P|game}}\setup}}' - - '{{Game data/saves|Windows|{{P|game}}\games}}' + - "{{Game data/config|Windows|{{P|game}}\\setup}}" + - "{{Game data/saves|Windows|{{P|game}}\\games}}" The F.A. Premier League Stars: pageId: 92510 The F.A. Premier League Stars 2001: @@ -167016,7 +162449,7 @@ The Fabulous Fear Machine: gog: 1354195656 pageId: 174817 steam: 1540350 -'The Face of Hope: Underground': +"The Face of Hope: Underground": pageId: 52229 steam: 545280 The Faceless Double: @@ -167025,20 +162458,20 @@ The Faceless Double: The Facility: pageId: 46562 steam: 394960 -'The Faery Tale Adventure: Book I': +"The Faery Tale Adventure: Book I": pageId: 75236 templates: - - '{{Game data/saves|DOS|{{p|game}}\*.FAE}}' -'The Fairly OddParents: Breakin'' da Rules': + - "{{Game data/saves|DOS|{{p|game}}\\*.FAE}}" +"The Fairly OddParents: Breakin' da Rules": pageId: 185463 The Falconeer: gog: 2147483137 pageId: 154398 steam: 1135260 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\WiredProductions\TheFalconeer\settings.dat}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\WiredProductions\TheFalconeer\save.dat}}' -'The Falconers: Moonlight': + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\WiredProductions\\TheFalconeer\\settings.dat}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\WiredProductions\\TheFalconeer\\save.dat}}" +"The Falconers: Moonlight": gog: 1300178735 pageId: 60934 steam: 589480 @@ -167047,24 +162480,24 @@ The Fall: pageId: 26992 steam: 290770 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Over The Moon\The Fall}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Preferences/unity.Over/ The\ Moon.The/ Fall.plist}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Over\ The\ Moon/The\ Fall/prefs}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Over The Moon\The Fall\TheFallSavedData.txt}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Over The Moon/The Fall/TheFallSavedData.txt}}' -'The Fall Part 2: Unbound': + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Over The Moon\\The Fall}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Preferences/unity.Over/ The\\ Moon.The/ Fall.plist}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Over\\ The\\ Moon/The\\ Fall/prefs}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Over The Moon\\The Fall\\TheFallSavedData.txt}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Over The Moon/The Fall/TheFallSavedData.txt}}" +"The Fall Part 2: Unbound": gog: 2130544434 pageId: 60798 steam: 510490 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Over The Moon\TheFallPart2Unbound}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Over The Moon\TheFallPart2Unbound\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Over The Moon\\TheFallPart2Unbound}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Over The Moon\\TheFallPart2Unbound\\}}" The Fall of Lazarus: pageId: 61687 steam: 622010 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\TheFallofLazarus\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\TheFallofLazarus\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\TheFallofLazarus\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\TheFallofLazarus\\Saved\\SaveGames\\}}" The Fall of the Dungeon Guardians: gog: 1647560338 pageId: 45727 @@ -167072,12 +162505,12 @@ The Fall of the Dungeon Guardians: steamSide: - 435450 templates: - - '{{Game data/saves|Linux|{{p|xdgconfighome}}/unity3d/Mana Games/DungeonGuardians/Saves/}}' -'The Fall: Last Days of Gaia': + - "{{Game data/saves|Linux|{{p|xdgconfighome}}/unity3d/Mana Games/DungeonGuardians/Saves/}}" +"The Fall: Last Days of Gaia": pageId: 154984 templates: - - '{{Game data/saves|Windows|{{P|appdata}}\Silver Style Entertainment\The Fall - Last Days of Gaia\savegames}}' -'The Fall: Mutant City': + - "{{Game data/saves|Windows|{{P|appdata}}\\Silver Style Entertainment\\The Fall - Last Days of Gaia\\savegames}}" +"The Fall: Mutant City": pageId: 172835 The Fallen Kingdom: pageId: 38434 @@ -167086,8 +162519,8 @@ The Falling Nights: pageId: 61776 steam: 629360 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\The_Falling_Nights\Saved\Config\WindowsNoEditor}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\The_Falling_Nights\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\The_Falling_Nights\\Saved\\Config\\WindowsNoEditor}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\The_Falling_Nights\\Saved\\SaveGames\\}}" The Falling Sun: pageId: 48266 steam: 333740 @@ -167103,16 +162536,16 @@ The Fan: The Far Frontier: pageId: 68579 steam: 612510 -'The Far Kingdoms: Awakening Solitaire': +"The Far Kingdoms: Awakening Solitaire": pageId: 129637 steam: 1034240 -'The Far Kingdoms: Elements': +"The Far Kingdoms: Elements": pageId: 125223 steam: 1002280 -'The Far Kingdoms: Sacred Grove Solitaire': +"The Far Kingdoms: Sacred Grove Solitaire": pageId: 129605 steam: 1034260 -'The Far Rings: A Space Opera Visual Novella': +"The Far Rings: A Space Opera Visual Novella": pageId: 149132 steam: 1100270 The Fastest Fist: @@ -167141,7 +162574,7 @@ The Fermi Paradox: gog: 1295495170 pageId: 172356 steam: 1543150 -'The Feud: Wild West Tactics': +"The Feud: Wild West Tactics": pageId: 50960 steam: 291840 The Few: @@ -167151,14 +162584,14 @@ The Fidelio Incident: pageId: 62673 steam: 632070 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\TheFidelioIncident\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\TheFidelioIncident\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\TheFidelioIncident\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\TheFidelioIncident\\Saved\\SaveGames\\}}" The Fidelity Chessmaster 2100: pageId: 16915 templates: - - '{{Game data/config|DOS|{{p|game}}\}}' - - '{{Game data/saves|DOS|{{p|game}}\}}' -The Fielder's Choice: + - "{{Game data/config|DOS|{{p|game}}\\}}" + - "{{Game data/saves|DOS|{{p|game}}\\}}" +"The Fielder's Choice": pageId: 87888 steam: 805120 The Fifth Day: @@ -167182,13 +162615,13 @@ The Final Battle: The Final Boss: pageId: 138572 steam: 1049670 -'The Final Days: Blood Dawn': +"The Final Days: Blood Dawn": pageId: 87317 steam: 810700 -'The Final Days: Eternal Night': +"The Final Days: Eternal Night": pageId: 68412 steam: 696050 -'The Final Days: I''m Still Alive': +"The Final Days: I'm Still Alive": pageId: 36998 steam: 522700 The Final Earth 2: @@ -167197,19 +162630,19 @@ The Final Earth 2: The Final Frontier: pageId: 113076 steam: 711590 -'The Final Frontier: Space Simulator': +"The Final Frontier: Space Simulator": pageId: 35164 steam: 416140 The Final Image: pageId: 136812 steam: 1083400 -'The Final Specimen: Arrival': +"The Final Specimen: Arrival": pageId: 58787 steam: 568920 The Final Stand: pageId: 50314 steam: 296750 -'The Final Stand: Breakout': +"The Final Stand: Breakout": pageId: 156849 steam: 1215980 The Final Station: @@ -167217,8 +162650,8 @@ The Final Station: pageId: 36622 steam: 435530 templates: - - '{{Game data/config|Windows|{{p|HKCU}}\SOFTWARE\DoMyBest\TheFinalStation\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\DoMyBest\TheFinalStation\}}' + - "{{Game data/config|Windows|{{p|HKCU}}\\SOFTWARE\\DoMyBest\\TheFinalStation\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\DoMyBest\\TheFinalStation\\}}" The Final Take: pageId: 33508 steam: 400510 @@ -167226,8 +162659,8 @@ The Finals: pageId: 181915 steam: 2073850 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Discovery\Saved\Config\WindowsClient|}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Discovery\Saved\SaveGames|}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Discovery\\Saved\\Config\\WindowsClient|}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Discovery\\Saved\\SaveGames|}}" The Finnish Virtual Art Gallery: pageId: 121521 steam: 745450 @@ -167244,7 +162677,7 @@ The First Descendant: pageId: 179322 steam: 2074920 templates: - - '{{Game data/config|Windows|{{P|localappdata}}/M1/Saved/Config/Windows/}}' + - "{{Game data/config|Windows|{{P|localappdata}}/M1/Saved/Config/Windows/}}" The First Men: pageId: 100694 steam: 700820 @@ -167262,7 +162695,7 @@ The First Templar: pageId: 40982 steam: 57680 templates: - - '{{Game data/saves|Windows|{{p|appdata}}\The First Templar\}}' + - "{{Game data/saves|Windows|{{p|appdata}}\\The First Templar\\}}" The First Thrust of God: pageId: 79141 steam: 773650 @@ -167277,10 +162710,10 @@ The First Tree: pageId: 54689 steam: 555150 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\David Wehle\The First Tree\}}' - - '{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/David Wehle/The First Tree/}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\David Wehle\The First Tree\Save.txt}}' - - '{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/David Wehle/The First Tree/Save.txt}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\David Wehle\\The First Tree\\}}" + - "{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/David Wehle/The First Tree/}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\David Wehle\\The First Tree\\Save.txt}}" + - "{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/David Wehle/The First Tree/Save.txt}}" The Fisherman - Fishing Planet: pageId: 147612 steam: 1072480 @@ -167291,16 +162724,16 @@ The Five Cores Remastered: pageId: 126360 steam: 1002410 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\AppData\Local\T5CR\Saved\Config}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\Local\T5CR\Saved\SaveGames}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\Local\\T5CR\\Saved\\Config}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\Local\\T5CR\\Saved\\SaveGames}}" The Flame in the Flood: gog: 1452692111 pageId: 33996 steam: 318600 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\RiverGame\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\RiverGame\Saved\SaveGames\}}' -'The Flawless: Art''s Tale': + - "{{Game data/config|Windows|{{p|localappdata}}\\RiverGame\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\RiverGame\\Saved\\SaveGames\\}}" +"The Flawless: Art's Tale": pageId: 139697 steam: 748320 The Flaws of Gravity: @@ -167318,9 +162751,9 @@ The Flesh God: The Flight of Dowran: pageId: 89264 steam: 717040 -'The Flintstones: Bedrock Bowling': +"The Flintstones: Bedrock Bowling": pageId: 101869 -'The Flintstones: Dino: Lost in Bedrock': +"The Flintstones: Dino: Lost in Bedrock": pageId: 177119 The Flock: pageId: 46779 @@ -167344,17 +162777,15 @@ The Floor is Jelly: pageId: 50161 steam: 295750 templates: - - >- - {{Game data/saves|Windows|{{P|appdata}}\TheFloorIsJelly\Local Store\|{{P|appdata}}\jelly\Local - Store\(DRM-free)}} + - "{{Game data/saves|Windows|{{P|appdata}}\\TheFloorIsJelly\\Local Store\\|{{P|appdata}}\\jelly\\Local Store\\(DRM-free)}}" The Flower Collectors: gog: 1652114337 pageId: 159370 steam: 1034750 -'The Flower Shop: Summer in Fairbrook': +"The Flower Shop: Summer in Fairbrook": pageId: 34807 steam: 290990 -'The Flower Shop: Winter in Fairbrook': +"The Flower Shop: Winter in Fairbrook": pageId: 49829 steam: 311680 The Flying Dutchman: @@ -167369,7 +162800,7 @@ The Fog: The Fog Knows Your Name: pageId: 148553 steam: 1166600 -'The Fog: Trap for Moths': +"The Fog: Trap for Moths": pageId: 132120 steam: 1048900 The Food Run: @@ -167387,8 +162818,8 @@ The Forest: pageId: 16476 steam: 242760 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\SKS\TheForest\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\SKS\TheForest\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\SKS\\TheForest\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\SKS\\TheForest\\}}" The Forest Below: pageId: 93783 steam: 843620 @@ -167399,14 +162830,14 @@ The Forest Quartet: - 1630350 - 2285460 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Mads & Friends\The Forest Quartet}}' - - '{{Game data/saves|Windows|{{P|hkcu}}\Software\Mads & Friends\The Forest Quartet}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Mads & Friends\\The Forest Quartet}}" + - "{{Game data/saves|Windows|{{P|hkcu}}\\Software\\Mads & Friends\\The Forest Quartet}}" The Forest of Doom: pageId: 49416 steam: 270490 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Tin Man Games\FF: FoD\}}' - - '{{Game data/saves|Windows|{{P|game}}\Documents\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Tin Man Games\\FF: FoD\\}}" + - "{{Game data/saves|Windows|{{P|game}}\\Documents\\}}" The Forestale: pageId: 95129 steam: 817220 @@ -167417,8 +162848,8 @@ The Forgettable Dungeon: pageId: 39703 steam: 375810 templates: - - '{{Game data/config|Windows|{{p|game}}\base\client|{{p|game}}\base\server}}' - - '{{Game data/saves|Windows|{{p|game}}\base\data\save}}' + - "{{Game data/config|Windows|{{p|game}}\\base\\client|{{p|game}}\\base\\server}}" + - "{{Game data/saves|Windows|{{p|game}}\\base\\data\\save}}" The Forgotten: pageId: 156414 steam: 1126640 @@ -167433,14 +162864,10 @@ The Forgotten City: - 1662400 - 1662430 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\ModernStoryteller01\Saved\Config\WindowsNoEditor\}}' - - >- - {{Game data/config|Microsoft - Store|{{p|localappdata}}\Packages\PlugInDigital.TheForgottenCity_9e3ank8rmgj0t\LocalCache\Local\ModernStoryteller01\Saved\Config\WinGDK\}} - - '{{Game data/saves|Windows|{{p|localappdata}}\ModernStoryteller01\Saved\SaveGames\}}' - - >- - {{Game data/saves|Microsoft - Store|{{p|localappdata}}\Packages\PlugInDigital.TheForgottenCity_9e3ank8rmgj0t\SystemAppData\wgs\}} + - "{{Game data/config|Windows|{{p|localappdata}}\\ModernStoryteller01\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/config|Microsoft Store|{{p|localappdata}}\\Packages\\PlugInDigital.TheForgottenCity_9e3ank8rmgj0t\\LocalCache\\Local\\ModernStoryteller01\\Saved\\Config\\WinGDK\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\ModernStoryteller01\\Saved\\SaveGames\\}}" + - "{{Game data/saves|Microsoft Store|{{p|localappdata}}\\Packages\\PlugInDigital.TheForgottenCity_9e3ank8rmgj0t\\SystemAppData\\wgs\\}}" The Forgotten Forest: pageId: 45669 steam: 410050 @@ -167459,8 +162886,8 @@ The Forgotten Void: The Fortress of Dr. Radiaki: pageId: 174903 templates: - - '{{Game data/config|DOS|{{p|game}}\RADIAKI.CFG}}' - - '{{Game data/saves|DOS|{{p|game}}\SAVE}}' + - "{{Game data/config|DOS|{{p|game}}\\RADIAKI.CFG}}" + - "{{Game data/saves|DOS|{{p|game}}\\SAVE}}" The Four Colour Theorem: pageId: 89549 steam: 816770 @@ -167477,23 +162904,21 @@ The Franz Kafka Videogame: pageId: 39438 steam: 392280 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Daedalic Entertainment GmbH\The Franz Kafka Videogame\}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\Daedalic Entertainment GmbH\The Franz Kafka Videogame\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\Daedalic Entertainment GmbH\\The Franz Kafka Videogame\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Daedalic Entertainment GmbH\\The Franz Kafka Videogame\\}}" The Free Ones: pageId: 75861 steam: 670350 templates: - - >- - {{Game data/config|Windows|{{P|userprofile}}\AppData\LocalLow\Farsky Interactive\The Free - Ones\settings.dat|{{P|hkcu}}\Software\Farsky Interactive\The Free Ones\}} - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Farsky Interactive\The Free Ones\*.sav}}' + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Farsky Interactive\\The Free Ones\\settings.dat|{{P|hkcu}}\\Software\\Farsky Interactive\\The Free Ones\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Farsky Interactive\\The Free Ones\\*.sav}}" The Friends of Ringo Ishikawa: gog: 1735964318 pageId: 93174 steam: 846110 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\the_friends_of_ringo_ishikawa}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\the_friends_of_ringo_ishikawa}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\the_friends_of_ringo_ishikawa}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\the_friends_of_ringo_ishikawa}}" The Front of Greed: pageId: 105643 steam: 839680 @@ -167510,8 +162935,8 @@ The Frostrune: pageId: 56491 steam: 513890 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Grimnir AS\The Frostrune}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Grimnir AS\The Frostrune\save_slot_1.txt}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Grimnir AS\\The Frostrune}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Grimnir AS\\The Frostrune\\save_slot_1.txt}}" The Frosty Leaves: pageId: 82111 steam: 794950 @@ -167519,12 +162944,8 @@ The Fruit of Grisaia: pageId: 33656 steam: 345610 templates: - - >- - {{Game data/config|Windows|{{P|appdata}}\Frontwing\The Fruit of Grisaia\setup.xml|{{P|appdata}}\Frontwing\The - Fruit of Grisaia Unrated Version\setup.xml}} - - >- - {{Game data/saves|Windows|{{P|appdata}}\Frontwing\The Fruit of Grisaia\{{code|*}}.dat|{{P|appdata}}\Frontwing\The - Fruit of Grisaia Unrated Version\{{code|*}}.dat}} + - "{{Game data/config|Windows|{{P|appdata}}\\Frontwing\\The Fruit of Grisaia\\setup.xml|{{P|appdata}}\\Frontwing\\The Fruit of Grisaia Unrated Version\\setup.xml}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\Frontwing\\The Fruit of Grisaia\\{{code|*}}.dat|{{P|appdata}}\\Frontwing\\The Fruit of Grisaia Unrated Version\\{{code|*}}.dat}}" The Fruitless Flower: pageId: 82109 steam: 766560 @@ -167538,10 +162959,10 @@ The Gadget Twins: gog: 1237302557 pageId: 143963 steam: 1136090 -'The Gallery - Episode 1: Call of the Starseed': +"The Gallery - Episode 1: Call of the Starseed": pageId: 34657 steam: 270130 -'The Gallery - Episode 2: Heart of the Emberstone': +"The Gallery - Episode 2: Heart of the Emberstone": pageId: 72055 steam: 526140 The Game We All Have To Play: @@ -167559,21 +162980,21 @@ The Game of Life - The Official 2016 Edition: pageId: 45779 steam: 403120 templates: - - '{{Game data/config|Steam|{{P|game}}\configdata}}' - - '{{Game data/saves|Steam|{{P|game}}\savedata}}' + - "{{Game data/config|Steam|{{P|game}}\\configdata}}" + - "{{Game data/saves|Steam|{{P|game}}\\savedata}}" The Game of Life 2: pageId: 182376 steam: 1455630 templates: - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Marmalade Game Studio\Game Of Life 2}}' + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Marmalade Game Studio\\Game Of Life 2}}" The Gamer Challenge: pageId: 66645 steam: 671460 -'The Games: Winter Challenge': +"The Games: Winter Challenge": gog: 1820973446 pageId: 162370 templates: - - '{{Game data/saves|DOS|{{p|game}}\*.WGL|{{p|game}}\*.RP?}}' + - "{{Game data/saves|DOS|{{p|game}}\\*.WGL|{{p|game}}\\*.RP?}}" The Gameshow: pageId: 121835 steam: 960610 @@ -167590,13 +163011,11 @@ The Gardens Between: pageId: 58473 steam: 600990 templates: - - '{{Game data/saves|Windows|{{p|hkcu}}\Software\The Voxel Agents\The Gardens Between\}}' - - >- - {{Game data/saves|Microsoft - Store|{{p|localappdata}}\Packages\40632TheVoxelAgents.147198BA2FF5B_h7sr7gn9kt1nj\SystemAppData\wgs}} - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Preferences/com.thevoxelagents.thegardensbetween.mac.plist}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/The Voxel Agents/The Gardens Between}}' -'The Garfield Show: Threat of the Space Lasagna': + - "{{Game data/saves|Windows|{{p|hkcu}}\\Software\\The Voxel Agents\\The Gardens Between\\}}" + - "{{Game data/saves|Microsoft Store|{{p|localappdata}}\\Packages\\40632TheVoxelAgents.147198BA2FF5B_h7sr7gn9kt1nj\\SystemAppData\\wgs}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Preferences/com.thevoxelagents.thegardensbetween.mac.plist}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/The Voxel Agents/The Gardens Between}}" +"The Garfield Show: Threat of the Space Lasagna": pageId: 88424 The Gate: pageId: 48078 @@ -167614,7 +163033,7 @@ The Genesis Project: pageId: 186525 steam: 1610900 templates: - - '{{Game data/saves|Windows|{{P|game}}\The Genesis Project\The Genesis Project_Data\StreamingAssets\SaveData}}' + - "{{Game data/saves|Windows|{{P|game}}\\The Genesis Project\\The Genesis Project_Data\\StreamingAssets\\SaveData}}" The Geology Game: pageId: 87291 steam: 802920 @@ -167623,7 +163042,7 @@ The Get Out Kids: The Ghost of Joe Papp: pageId: 77257 steam: 696310 -'The Ghost of Joe Papp: 101 Ways To Kill Writer''s Block': +"The Ghost of Joe Papp: 101 Ways To Kill Writer's Block": pageId: 132883 steam: 947080 The Ghost of You: @@ -167647,11 +163066,11 @@ The Gladhollow Nasties: The Gladiators of Rome: pageId: 184508 templates: - - '{{Game data/config|Windows|{{p|game}}}}' - - '{{Game data/saves|Windows|{{p|game}}/DATA}}' -'The Gladiators: Galactic Circus Games': + - "{{Game data/config|Windows|{{p|game}}}}" + - "{{Game data/saves|Windows|{{p|game}}/DATA}}" +"The Gladiators: Galactic Circus Games": pageId: 187196 -'The Gleam: VR Escape the Room': +"The Gleam: VR Escape the Room": pageId: 39247 steam: 526750 The Glow: @@ -167669,7 +163088,7 @@ The God: The God Paradox: pageId: 70134 steam: 636330 -The God's Chain: +"The God's Chain": pageId: 41627 steam: 504490 The Godbeast: @@ -167681,16 +163100,14 @@ The Godfather II: pageId: 26057 steam: 24830 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\EA Games\The Godfather™ II\}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\EA Games\The Godfather™ II}}' -'The Godfather: The Game': + - "{{Game data/config|Windows|{{P|localappdata}}\\EA Games\\The Godfather™ II\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\EA Games\\The Godfather™ II}}" +"The Godfather: The Game": pageId: 23620 steam: 24820 templates: - - >- - {{Game data/config|Windows|{{P|hkcu}}\Software\Electronic Arts\The Godfather The - Game\VideoSettings\|{{P|userprofile\Documents}}\GF\settings.ini}} - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\GF\SG\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Electronic Arts\\The Godfather The Game\\VideoSettings\\|{{P|userprofile\\Documents}}\\GF\\settings.ini}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\GF\\SG\\}}" The Golden Compass: pageId: 88501 steam: 10440 @@ -167706,10 +163123,10 @@ The Golf Club 2019 featuring PGA Tour: The Golf Club VR: pageId: 51447 steam: 489600 -'The Golf Pro 2: Wentworth Edition': +"The Golf Pro 2: Wentworth Edition": pageId: 101739 templates: - - '{{Game data/saves|Windows|{{p|game}}\saved\}}' + - "{{Game data/saves|Windows|{{p|game}}\\saved\\}}" The Good Life: pageId: 49273 steam: 293340 @@ -167717,8 +163134,8 @@ The Good Life (2021): pageId: 168962 steam: 1452500 templates: - - '{{Game data/config|Microsoft Store|{{P|localappdata}}\Packages\ActiveGamingMediaInc.TheGoodLife_4tj796bhrrsp0}}' - - '{{Game data/saves|Microsoft Store|{{P|localappdata}}\Packages\ActiveGamingMediaInc.TheGoodLife_4tj796bhrrsp0}}' + - "{{Game data/config|Microsoft Store|{{P|localappdata}}\\Packages\\ActiveGamingMediaInc.TheGoodLife_4tj796bhrrsp0}}" + - "{{Game data/saves|Microsoft Store|{{P|localappdata}}\\Packages\\ActiveGamingMediaInc.TheGoodLife_4tj796bhrrsp0}}" The Good Time Garden: pageId: 153784 steam: 1200860 @@ -167732,8 +163149,8 @@ The Grand Ball: pageId: 62022 steam: 632290 templates: - - '{{Game data/config|Windows|{{p|game}}\data\system\Config.tjs}}' - - '{{Game data/saves|Windows|{{p|game}}\The_Grand_Ball_tyrano_data.sav}}' + - "{{Game data/config|Windows|{{p|game}}\\data\\system\\Config.tjs}}" + - "{{Game data/saves|Windows|{{p|game}}\\The_Grand_Ball_tyrano_data.sav}}" The Grand Block Odyssey - Chapter 1: pageId: 94146 steam: 772570 @@ -167762,8 +163179,8 @@ The Great Ace Attorney Chronicles: pageId: 167982 steam: 1158850 templates: - - '{{Game data/config|Windows|{{P|game}}\*.ini}}' - - '{{Game data/saves|Windows|{{p|Steam}}\userdata\{{p|uid}}\1158850\remote\}}' + - "{{Game data/config|Windows|{{P|game}}\\*.ini}}" + - "{{Game data/saves|Windows|{{p|Steam}}\\userdata\\{{p|uid}}\\1158850\\remote\\}}" The Great Art Race: pageId: 56212 steam: 33580 @@ -167779,7 +163196,7 @@ The Great Battles of Hannibal: The Great C: pageId: 108976 steam: 841460 -'The Great Empire: Relic of Egypt': +"The Great Empire: Relic of Egypt": pageId: 179399 steam: 1544140 The Great Emu War: @@ -167794,7 +163211,7 @@ The Great Escape: The Great Escape (2003): pageId: 164659 templates: - - '{{Game data/config|Windows|{{p|HKLM}}\SOFTWARE\{{p|wow64}}\Gotham Games\The Great Escape\Device Settings}}' + - "{{Game data/config|Windows|{{p|HKLM}}\\SOFTWARE\\{{p|wow64}}\\Gotham Games\\The Great Escape\\Device Settings}}" The Great Escape (2016): pageId: 45021 steam: 434800 @@ -167807,13 +163224,13 @@ The Great Fusion: The Great Gaias: pageId: 91240 steam: 818610 -'The Great Gatsby: Secret Treasure': +"The Great Gatsby: Secret Treasure": pageId: 61154 steam: 376490 The Great Geometric Multiverse Tour: pageId: 100502 steam: 887400 -'The Great Jitters: Pudding Panic': +"The Great Jitters: Pudding Panic": pageId: 50214 steam: 296650 The Great Mushroom Hunt: @@ -167824,10 +163241,10 @@ The Great Perhaps: pageId: 132771 steam: 1016930 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Daedalic Entertainment GmbH\TheGreatPerhaps}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/Daedalic Entertainment GmbH/TheGreatPerhaps/*.json}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\Daedalic Entertainment GmbH\TheGreatPerhaps\Saves\}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/Daedalic Entertainment GmbH/TheGreatPerhaps/Saves/}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\Daedalic Entertainment GmbH\\TheGreatPerhaps}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/Daedalic Entertainment GmbH/TheGreatPerhaps/*.json}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Daedalic Entertainment GmbH\\TheGreatPerhaps\\Saves\\}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/Daedalic Entertainment GmbH/TheGreatPerhaps/Saves/}}" The Great Race: pageId: 93837 steam: 838440 @@ -167846,18 +163263,14 @@ The Great Voyage - Visual Novel: The Great War 1918: pageId: 179571 steam: 314420 -'The Great War: Western Front': +"The Great War: Western Front": pageId: 181132 steam: 2109370 steamSide: - 2361670 templates: - - >- - {{Game data/config|Windows|{{P|game}}\Data{{note|All configuration files are - encrypted.{{Refcheck|user=Mrtnptrs|date=2023-03-30|comment=Confirmed with launch version, all files in the - {{folder|Data}} are encrypted and have the {{code|.MEG}} - extension.}}}}|{{p|HKCU}}\Software\Petroglyph\TheGreatWar}} - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\Petroglyph\TheGreatWar\Save}}' + - "{{Game data/config|Windows|{{P|game}}\\Data{{note|All configuration files are encrypted.{{Refcheck|user=Mrtnptrs|date=2023-03-30|comment=Confirmed with launch version, all files in the {{folder|Data}} are encrypted and have the {{code|.MEG}} extension.}}}}|{{p|HKCU}}\\Software\\Petroglyph\\TheGreatWar}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\Petroglyph\\TheGreatWar\\Save}}" The Great Whale Road: pageId: 42003 steam: 464830 @@ -167871,8 +163284,8 @@ The Greatest Penguin Heist of All Time: pageId: 174440 steam: 1451480 templates: - - '{{Game data/config|Windows|{{P|userprofile\appdata\locallow}}\FishSoft\Penguin Heist\}}' - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\FishSoft\Penguin Heist\}}' + - "{{Game data/config|Windows|{{P|userprofile\\appdata\\locallow}}\\FishSoft\\Penguin Heist\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\FishSoft\\Penguin Heist\\}}" The Greedy MaxCoon: pageId: 91128 steam: 823490 @@ -167891,17 +163304,17 @@ The Grid: The Griffon Legend: pageId: 163942 templates: - - '{{Game data/config|Windows|{{P|game}}\config.ini}}' - - '{{Game data/saves|Windows|{{P|game}}\data\player*.sav}}' + - "{{Game data/config|Windows|{{P|game}}\\config.ini}}" + - "{{Game data/saves|Windows|{{P|game}}\\data\\player*.sav}}" The Grim and I: pageId: 140891 steam: 1097710 -'The Grimsworth Reports: Woodfall': +"The Grimsworth Reports: Woodfall": pageId: 74492 steam: 737980 The Grinch: pageId: 187894 -'The Grinch: Christmas Adventures': +"The Grinch: Christmas Adventures": pageId: 191297 steam: 1978210 The Growth Journey: @@ -167915,40 +163328,40 @@ The Guest: pageId: 44205 steam: 402040 steamSide: - - 464580 - 438590 + - 464580 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Team Gotham\The Guest\|{{p|game}}\TheGuest_Data\options_data.xml}}' - - '{{Game data/saves|Windows|{{P|game}}\TheGuestSteam_Test_Data\SavedDir\save_data.xml}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Team Gotham\\The Guest\\|{{p|game}}\\TheGuest_Data\\options_data.xml}}" + - "{{Game data/saves|Windows|{{P|game}}\\TheGuestSteam_Test_Data\\SavedDir\\save_data.xml}}" The Guild 3: gog: 1584560456 pageId: 39787 steam: 311260 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Guild3}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\Saved Games\Guild3}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\Guild3}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Saved Games\\Guild3}}" The Guild II: gog: 1207660743 pageId: 11439 steam: 39650 templates: - - '{{Game data/config|Windows|{{p|game}}\userconfig.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\Savegames\}}' -'The Guild II: Pirates of the European Seas': + - "{{Game data/config|Windows|{{p|game}}\\userconfig.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\Savegames\\}}" +"The Guild II: Pirates of the European Seas": gog: 1207660753 pageId: 24021 steam: 39660 templates: - - '{{Game data/config|Windows|{{p|game}}\userconfig.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\savegames\}}' -'The Guild II: Renaissance': + - "{{Game data/config|Windows|{{p|game}}\\userconfig.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\savegames\\}}" +"The Guild II: Renaissance": gog: 1207664873 pageId: 24025 steam: 39680 templates: - - '{{Game data/config|Windows|{{p|game}}\userconfig.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\savegames\}}' -'The Guild II: Venice': + - "{{Game data/config|Windows|{{p|game}}\\userconfig.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\savegames\\}}" +"The Guild II: Venice": pageId: 181043 The Guilt and the Shadow: pageId: 48825 @@ -167963,10 +163376,10 @@ The Gunk: pageId: 162119 steam: 1087760 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Dust\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/config|Microsoft Store|{{p|localappdata}}\Dust\Saved\Config\WinGDK\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Dust\Saved\SaveGames\}}' -'The Gunstringer: Dead Man Running': + - "{{Game data/config|Windows|{{p|localappdata}}\\Dust\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/config|Microsoft Store|{{p|localappdata}}\\Dust\\Saved\\Config\\WinGDK\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Dust\\Saved\\SaveGames\\}}" +"The Gunstringer: Dead Man Running": pageId: 178669 The Guy Game: pageId: 167386 @@ -167984,7 +163397,7 @@ The Hand of Merlin: pageId: 100782 steam: 600610 templates: - - '{{Game data/config|Windows|{{P|game}}\UserData\Merlin.ini}}' + - "{{Game data/config|Windows|{{P|game}}\\UserData\\Merlin.ini}}" The Handler of Dragons: pageId: 151557 steam: 1172730 @@ -167995,8 +163408,8 @@ The Happy Hereafter: pageId: 50135 steam: 306200 templates: - - '{{Game data/saves|Windows|{{p|appdata}}\AlawarEntertainment\Mirball\TheHappyHereafter}}' -The Harbinger's Head: + - "{{Game data/saves|Windows|{{p|appdata}}\\AlawarEntertainment\\Mirball\\TheHappyHereafter}}" +"The Harbinger's Head": pageId: 99478 steam: 884400 The Hardest Dungeon: @@ -168008,12 +163421,12 @@ The Hardest Thing: The Harvest VR: pageId: 69727 steam: 569510 -'The Hat Man: Shadow Ward': +"The Hat Man: Shadow Ward": pageId: 24715 steam: 291010 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\SOFTWARE\GameMechanics\The Hat Man - Shadow Ward\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\GameMechanics\The Hat Man _ Shadow Ward\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\GameMechanics\\The Hat Man - Shadow Ward\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\GameMechanics\\The Hat Man _ Shadow Ward\\}}" The Hateful Dead: pageId: 51469 steam: 526510 @@ -168023,20 +163436,20 @@ The Haunted Graveyard: The Haunted House VR Ep. 1: pageId: 151101 steam: 1166140 -The Haunted House VR Movie Ep. 1 "Missing": +"The Haunted House VR Movie Ep. 1 \"Missing\"": pageId: 153442 steam: 1178260 -'The Haunted Island, a Frog Detective Game': +"The Haunted Island, a Frog Detective Game": pageId: 122042 steam: 963000 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Worm Club\The Haunted Island\}}' - - '{{Game data/saves|Windows|{{p|game}}\saves\}}' -'The Haunted: Hells Reach': + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Worm Club\\The Haunted Island\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\saves\\}}" +"The Haunted: Hells Reach": pageId: 38317 steam: 43190 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\My Games\the-haunted-hells-reach\UDKGame\Config}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\My Games\\the-haunted-hells-reach\\UDKGame\\Config}}" The Haunting of Baskerville: pageId: 88874 steam: 814340 @@ -168069,8 +163482,8 @@ The Henry Stickmin Collection: pageId: 142315 steam: 1089980 templates: - - '{{Game data/config|Windows|{{P|appdata}}\com.innersloth.henry.HenryFlash\Local Store}}' - - '{{Game data/saves|Windows|{{P|appdata}}\com.innersloth.henry.HenryFlash\Local Store}}' + - "{{Game data/config|Windows|{{P|appdata}}\\com.innersloth.henry.HenryFlash\\Local Store}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\com.innersloth.henry.HenryFlash\\Local Store}}" The Herbalist: pageId: 52846 steam: 542260 @@ -168083,10 +163496,10 @@ The Hermit: The Hero: pageId: 144897 steam: 547130 -'The Hero Project: Open Season': +"The Hero Project: Open Season": pageId: 91787 steam: 838050 -'The Hero Project: Redemption Season': +"The Hero Project: Redemption Season": pageId: 43676 steam: 459310 The Hero Unmasked!: @@ -168109,15 +163522,15 @@ The Hex: - 962924 - 962925 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Daniel Mullins Games\The Hex\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Daniel Mullins Games\The Hex\SaveData.hexsave}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Daniel Mullins Games\\The Hex\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Daniel Mullins Games\\The Hex\\SaveData.hexsave}}" The Hidden Dragon: pageId: 42033 steam: 498040 The Hidden and Unknown: pageId: 187093 steam: 2193940 -'The Hidden: Source': +"The Hidden: Source": pageId: 3687 The Highscore: pageId: 134595 @@ -168125,37 +163538,37 @@ The Highscore: The HinterLands: pageId: 42842 steam: 454260 -'The History Channel: Battle for the Pacific': +"The History Channel: Battle for the Pacific": pageId: 143488 steam: 10040 templates: - - '{{Game data/config|Windows|{{p|game}}\Save\profile.dat|{{p|game}}\Config\key_binding.txt}}' -'The History Channel: Civil War - A Nation Divided': + - "{{Game data/config|Windows|{{p|game}}\\Save\\profile.dat|{{p|game}}\\Config\\key_binding.txt}}" +"The History Channel: Civil War - A Nation Divided": pageId: 143485 steam: 2680 templates: - - '{{Game data/config|Windows|{{p|game}}\civilwar.cfg|{{p|game}}\controls.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\saved_games}}' -'The History Channel: Civil War - Secret Missions': + - "{{Game data/config|Windows|{{p|game}}\\civilwar.cfg|{{p|game}}\\controls.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\saved_games}}" +"The History Channel: Civil War - Secret Missions": pageId: 176736 templates: - - '{{Game data/config|Windows|{{p|game}}\Config\key_binding.txt}}' - - '{{Game data/saves|Windows|{{p|game}}\Profiles}}' + - "{{Game data/config|Windows|{{p|game}}\\Config\\key_binding.txt}}" + - "{{Game data/saves|Windows|{{p|game}}\\Profiles}}" The Hit: pageId: 18381 -The Hitchhiker's Guide to the Galaxy: +"The Hitchhiker's Guide to the Galaxy": pageId: 175896 The Hive (2016): pageId: 36790 steam: 325730 templates: - - '{{Game data/config|Windows|{{P|userprofile}}\AppData\LocalLow\Skydome Entertainment\The Hive\options.ini}}' + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Skydome Entertainment\\The Hive\\options.ini}}" The Hobbit: pageId: 22954 The Hobbit (2003): pageId: 22251 templates: - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\The Hobbit}}' + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\The Hobbit}}" The Hole Story: pageId: 47287 steam: 356730 @@ -168170,24 +163583,24 @@ The Hong Kong Massacre: pageId: 105101 steam: 741510 templates: - - '{{Game data/config|Windows|{{P|userprofile}}\AppData\LocalLow\VRESKI\The Hong Kong Massacre\playerSave.thkm}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\VRESKI\The Hong Kong Massacre\playerSave.thkm}}' -The Horologist's Legacy: + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\VRESKI\\The Hong Kong Massacre\\playerSave.thkm}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\VRESKI\\The Hong Kong Massacre\\playerSave.thkm}}" +"The Horologist's Legacy": pageId: 121383 steam: 957890 The Horror of Secret Experiments: pageId: 187658 steam: 2293380 -'The Horus Heresy: Battle of Tallarn': +"The Horus Heresy: Battle of Tallarn": pageId: 57436 steam: 515980 -'The Horus Heresy: Betrayal at Calth': +"The Horus Heresy: Betrayal at Calth": pageId: 78816 steam: 556550 -'The Horus Heresy: Legions': +"The Horus Heresy: Legions": pageId: 132082 steam: 1031140 -'The Hospital: Allison''s Diary': +"The Hospital: Allison's Diary": pageId: 74980 steam: 733690 The Hot Dog would Explode: @@ -168216,9 +163629,9 @@ The House in Fata Morgana: pageId: 37170 steam: 303310 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Mangagamer\The House in Fata Morgana\}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Mangagamer\The House in Fata Morgana\}}' -'The House in Fata Morgana: A Requiem for Innocence': + - "{{Game data/config|Windows|{{p|appdata}}\\Mangagamer\\The House in Fata Morgana\\}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Mangagamer\\The House in Fata Morgana\\}}" +"The House in Fata Morgana: A Requiem for Innocence": pageId: 93178 steam: 804700 The House of Da Vinci: @@ -168226,11 +163639,9 @@ The House of Da Vinci: pageId: 76867 steam: 522470 templates: - - >- - {{Game data/config|Windows|{{P|hkcu}}\Software\Blue Brain Games\The House of da - Vinci|{{P|userprofile}}\AppData\LocalLow\Blue Brain Games\The House of da Vinci\Profiles\plist}} - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Blue Brain Games\The House of da Vinci\Profiles}}' - - '{{Game data/saves|OS X|~Library\Application Support\bigbluegames}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Blue Brain Games\\The House of da Vinci|{{P|userprofile}}\\AppData\\LocalLow\\Blue Brain Games\\The House of da Vinci\\Profiles\\plist}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Blue Brain Games\\The House of da Vinci\\Profiles}}" + - "{{Game data/saves|OS X|~Library\\Application Support\\bigbluegames}}" The House of Da Vinci 2: gog: 1868749591 pageId: 160782 @@ -168242,22 +163653,22 @@ The House of Da Vinci 3: The House of the Dead: pageId: 23508 templates: - - '{{Game data/config|Windows|{{p|game}}\thotd.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\scores.cfg}}' + - "{{Game data/config|Windows|{{p|game}}\\thotd.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\scores.cfg}}" The House of the Dead 2: pageId: 80222 The House of the Dead III: pageId: 63390 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\Application Data\SEGA\THE HOUSE OF THE DEAD3\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\Application Data\SEGA\THE HOUSE OF THE DEAD3\}}' -'The House of the Dead: Remake': + - "{{Game data/config|Windows|{{p|userprofile}}\\Application Data\\SEGA\\THE HOUSE OF THE DEAD3\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Application Data\\SEGA\\THE HOUSE OF THE DEAD3\\}}" +"The House of the Dead: Remake": gog: 1195723193 pageId: 177194 steam: 1694600 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\MegaPixel Studio S.A.\The House of the Dead Remake}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\TheHouseOfTheDead_Remake\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\MegaPixel Studio S.A.\\The House of the Dead Remake}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\TheHouseOfTheDead_Remake\\}}" The Housewife: pageId: 36810 steam: 496750 @@ -168265,17 +163676,17 @@ The Howler: pageId: 34650 steam: 306040 templates: - - '{{Game data/config|Windows|{{p|appdata}}\com.marcelionis.howler\Local Store\#SharedObjects\}}' - - '{{Game data/saves|Windows|{{p|appdata}}\com.marcelionis.howler\Local Store\#SharedObjects\}}' + - "{{Game data/config|Windows|{{p|appdata}}\\com.marcelionis.howler\\Local Store\\#SharedObjects\\}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\com.marcelionis.howler\\Local Store\\#SharedObjects\\}}" The Humans: gog: 1701588882 pageId: 95969 steam: 719320 -'The Humans: Meet the Ancestors!': +"The Humans: Meet the Ancestors!": gog: 1861080426 pageId: 184616 steam: 2214040 -'The Hunchback of Notre Dame: Topsy Turvy Games': +"The Hunchback of Notre Dame: Topsy Turvy Games": pageId: 188564 The Hunt: pageId: 63006 @@ -168283,7 +163694,7 @@ The Hunt: The Hunt - Rebuilt: pageId: 67309 steam: 686010 -The Hunt - Sophie's Journey: +"The Hunt - Sophie's Journey": pageId: 135030 steam: 1052890 The Hunt in the Forest: @@ -168295,81 +163706,69 @@ The Hunted: The Hunter: pageId: 15374 steam: 253710 -The Hunter's Journals - Blissful Ignorance: +"The Hunter's Journals - Blissful Ignorance": pageId: 150089 steam: 1168550 -The Hunter's Journals - Pale Harbour: +"The Hunter's Journals - Pale Harbour": pageId: 139094 renamedFrom: - The Hunters Journals; Pale Harbour steam: 1094170 -The Hunter's Journals - Vile Philosophy: +"The Hunter's Journals - Vile Philosophy": pageId: 140936 renamedFrom: - The Hunters Journals; Vile Philosophy steam: 1097570 -'The Hunter: Call of the Wild': +"The Hunter: Call of the Wild": pageId: 54096 steam: 518790 templates: - - >- - {{Game data/config|Epic Games Store|{{p|userprofile\Documents}}\Avalanche Studios\Epic Games Store\theHunter Call - of the Wild\Saves\{{p|uid}}\}} - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\Avalanche Studios\theHunter Call of the - Wild\Saves\{{p|uid}}\}} - - >- - {{Game data/saves|Epic Games Store|{{p|userprofile\Documents}}\Avalanche Studios\Epic Games Store\theHunter Call - of the Wild\Saves\{{p|uid}}\|{{p|userprofile\Documents}}\Avalanche Studios\COTW\Saves\{{p|uid}}\}} - - >- - {{Game data/saves|Windows|{{p|userprofile\Documents}}\Avalanche Studios\theHunter Call of the - Wild\Saves\{{p|uid}}\|{{p|userprofile\Documents}}\Avalanche Studios\COTW\Saves\{{p|uid}}\}} -'The Hunter: Primal': + - "{{Game data/config|Epic Games Store|{{p|userprofile\\Documents}}\\Avalanche Studios\\Epic Games Store\\theHunter Call of the Wild\\Saves\\{{p|uid}}\\}}" + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Avalanche Studios\\theHunter Call of the Wild\\Saves\\{{p|uid}}\\}}" + - "{{Game data/saves|Epic Games Store|{{p|userprofile\\Documents}}\\Avalanche Studios\\Epic Games Store\\theHunter Call of the Wild\\Saves\\{{p|uid}}\\|{{p|userprofile\\Documents}}\\Avalanche Studios\\COTW\\Saves\\{{p|uid}}\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Avalanche Studios\\theHunter Call of the Wild\\Saves\\{{p|uid}}\\|{{p|userprofile\\Documents}}\\Avalanche Studios\\COTW\\Saves\\{{p|uid}}\\}}" +"The Hunter: Primal": pageId: 48336 steam: 322920 templates: - - '{{Game data/saves|Steam|{{P|Steam}}\userdata\{{p|uid}}\322920\remote\tHPsave.sav}}' + - "{{Game data/saves|Steam|{{P|Steam}}\\userdata\\{{p|uid}}\\322920\\remote\\tHPsave.sav}}" The Hunting God: pageId: 65676 steam: 679190 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\TheHuntingGod\Saved\SaveGames\Settings.sav}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\TheHuntingGod\Saved\SaveGames\Level.sav}}' -'The Huntsman: Winter''s Curse': + - "{{Game data/config|Windows|{{P|localappdata}}\\TheHuntingGod\\Saved\\SaveGames\\Settings.sav}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\TheHuntingGod\\Saved\\SaveGames\\Level.sav}}" +"The Huntsman: Winter's Curse": pageId: 43412 steam: 446990 The Hurricane of the Varstray -Collateral hazard-: pageId: 45202 steam: 416380 templates: - - '{{Game data/config|Windows|{{p|userprofile\documents}}\Varystray\Config.dat}}' - - >- - {{Game - data/saves|Windows|{{p|userprofile\documents}}\Varystray\Data.dat|{{p|userprofile\documents}}\Varystray\Score.dat}} + - "{{Game data/config|Windows|{{p|userprofile\\documents}}\\Varystray\\Config.dat}}" + - "{{Game data/saves|Windows|{{p|userprofile\\documents}}\\Varystray\\Data.dat|{{p|userprofile\\documents}}\\Varystray\\Score.dat}}" The I of the Dragon: gog: 2000520059 pageId: 16662 steam: 279720 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Primal}}' - - '{{Game data/saves|Windows|{{p|game}}\Saves\*.sav}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Primal}}" + - "{{Game data/saves|Windows|{{p|game}}\\Saves\\*.sav}}" The IL Tempo Game: pageId: 73967 steam: 680370 The IOTA Project: pageId: 68954 steam: 660520 -The Idiot's Tale: +"The Idiot's Tale": pageId: 87271 steam: 810450 -'The Idolmaster: Starlit Season': +"The Idolmaster: Starlit Season": pageId: 157535 steam: 1046480 templates: - - >- - {{Game - data/config|Windows|{{P|localappdata}}\StarlitSeason\Saved\Config\WindowsNoEditor|{{P|localappdata}}\StarlitSeason\Saved\SaveGames\{{P|uid}}\GraphicSetting.sav}} - - '{{Game data/saves|Windows|{{P|localappdata}}\StarlitSeason\Saved\SaveGames\{{P|uid}}}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\StarlitSeason\\Saved\\Config\\WindowsNoEditor|{{P|localappdata}}\\StarlitSeason\\Saved\\SaveGames\\{{P|uid}}\\GraphicSetting.sav}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\StarlitSeason\\Saved\\SaveGames\\{{P|uid}}}}" The Illusory Abyss: pageId: 136481 steam: 1078590 @@ -168382,16 +163781,14 @@ The Imperial Gatekeeper: pageId: 181417 steam: 1933650 templates: - - '{{Game data/config|Windows|{{p|game}}\Game.ini}}' - - >- - {{Game data/saves|Windows|{{p|game}}\save\Record.sav | {{p|game}}\save\SaveData*.sav | - {{p|game}}\save\Sandbox.sav**}} + - "{{Game data/config|Windows|{{p|game}}\\Game.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\save\\Record.sav | {{p|game}}\\save\\SaveData*.sav | {{p|game}}\\save\\Sandbox.sav**}}" The Impossible Game: pageId: 17212 steam: 251630 templates: - - '{{Game data/config|Windows|{{p|game}}/settings.ini}}' - - '{{Game data/saves|Windows|{{p|game}}/save.bin}}' + - "{{Game data/config|Windows|{{p|game}}/settings.ini}}" + - "{{Game data/saves|Windows|{{p|game}}/save.bin}}" The Impossible Travel Agency: pageId: 36988 steam: 460990 @@ -168410,35 +163807,35 @@ The Incredible Adventures of Van Helsing: - 215535 - 215536 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\NeoCore Games\Van Helsing\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\NeocoreGames\Van Helsing\SaveGame\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\NeoCore Games\\Van Helsing\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\NeocoreGames\\Van Helsing\\SaveGame\\}}" The Incredible Adventures of Van Helsing II: gog: 1432137148 pageId: 17584 steam: 272470 steamSide: + - 307750 - 313260 - 324290 - - 307750 templates: - - '{{Game data/config|Windows|{{p|HKCU}}\Software\NeoCore Games\Van Helsing 2\}}' - - '{{Game data/saves|Steam|{{p|Steam}}/userdata/{{p|uid}}/272470/remote/save/}}' + - "{{Game data/config|Windows|{{p|HKCU}}\\Software\\NeoCore Games\\Van Helsing 2\\}}" + - "{{Game data/saves|Steam|{{p|Steam}}/userdata/{{p|uid}}/272470/remote/save/}}" The Incredible Adventures of Van Helsing III: gog: 1433492892 pageId: 25181 steam: 359900 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\NeoCore Games\VanHelsing 3}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\NeocoreGames\Van Helsing 3\SaveGame\{{p|uid}}\}}' -'The Incredible Adventures of Van Helsing: Final Cut': + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\NeoCore Games\\VanHelsing 3}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\NeocoreGames\\Van Helsing 3\\SaveGame\\{{p|uid}}\\}}" +"The Incredible Adventures of Van Helsing: Final Cut": gog: 1448013298 gogSide: - 1268757981 pageId: 29716 steam: 400170 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\NeoCore Games\Van Helsing Final Cut\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\NeocoreGames\Van Helsing Final Cut\SaveGame\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\NeoCore Games\\Van Helsing Final Cut\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\NeocoreGames\\Van Helsing Final Cut\\SaveGame\\}}" The Incredible Baron: pageId: 42862 steam: 441510 @@ -168451,56 +163848,54 @@ The Incredible Hulk: pageId: 80170 steam: 10510 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\The Incredible Hulk\Video}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\The Incredible Hulk\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\The Incredible Hulk\\Video}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\The Incredible Hulk\\}}" The Incredible Machine: pageId: 66557 templates: - - '{{Game data/config|DOS|{{p|game}}\RESOURCE.CFG}}' - - '{{Game data/saves|DOS|{{p|game}}\TIM.CFG|{{p|game}}\*.TIM}}' + - "{{Game data/config|DOS|{{p|game}}\\RESOURCE.CFG}}" + - "{{Game data/saves|DOS|{{p|game}}\\TIM.CFG|{{p|game}}\\*.TIM}}" The Incredible Machine 2: pageId: 66733 templates: - - '{{Game data/config|DOS|{{p|game}}\RESOURCE.CFG}}' - - '{{Game data/saves|DOS|{{p|game}}\TIM.SAV|{{p|game}}\*.TIM}}' + - "{{Game data/config|DOS|{{p|game}}\\RESOURCE.CFG}}" + - "{{Game data/saves|DOS|{{p|game}}\\TIM.SAV|{{p|game}}\\*.TIM}}" The Incredible Machine 3: gog: 1207664053 gogSide: - 1207658799 pageId: 10765 templates: - - '{{Game data/config|Windows|C:\timwin.ini|C:\SIGNIN.RES}}' - - '{{Game data/saves|Windows|C:\*.TIM|C:\TIM.SAV}}' -'The Incredible Machine: Even More Contraptions': + - "{{Game data/config|Windows|C:\\timwin.ini|C:\\SIGNIN.RES}}" + - "{{Game data/saves|Windows|C:\\*.TIM|C:\\TIM.SAV}}" +"The Incredible Machine: Even More Contraptions": gog: 1207664043 pageId: 15332 templates: - - '{{Game data/config|Windows|{{p|game}}\EvenMore.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\Saved Games\|{{p|game}}\Homemade\}}' + - "{{Game data/config|Windows|{{p|game}}\\EvenMore.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\Saved Games\\|{{p|game}}\\Homemade\\}}" The Incredible Toon Machine: pageId: 66562 templates: - - '{{Game data/config|Windows|{{p|game}}\TOON.INI}}' - - '{{Game data/saves|Windows|{{p|game}}\TOONS.SAV|{{p|game}}\*.ITL}}' + - "{{Game data/config|Windows|{{p|game}}\\TOON.INI}}" + - "{{Game data/saves|Windows|{{p|game}}\\TOONS.SAV|{{p|game}}\\*.ITL}}" The Incredible VR Game Show: pageId: 81472 steam: 626730 The Incredibles: pageId: 80154 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\THQ\The Incredibles\Settings}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\The Incredibles\Incredibles ##\GameData.xsv}}' -'The Incredibles: Rise of the Underminer': + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\THQ\\The Incredibles\\Settings}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\The Incredibles\\Incredibles ##\\GameData.xsv}}" +"The Incredibles: Rise of the Underminer": pageId: 101807 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\THQ\The Incredibles Rise of the Underminer\}}' - - >- - {{Game data/saves|Windows|{{p|userprofile\Documents}}\My - Games\THQ\The_Incredibles_Rise_of_the_Underminer\Save\Incredibles_##\GameData.xsv}} -'The Incredibles: When Danger Calls': + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\THQ\\The Incredibles Rise of the Underminer\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\THQ\\The_Incredibles_Rise_of_the_Underminer\\Save\\Incredibles_##\\GameData.xsv}}" +"The Incredibles: When Danger Calls": pageId: 154565 templates: - - '{{Game data/saves|Windows|{{p|localappdata}}\THQ\The Incredibles\gamedata.ini}}' + - "{{Game data/saves|Windows|{{p|localappdata}}\\THQ\\The Incredibles\\gamedata.ini}}" The Indie Game Legend 3D: pageId: 95180 steam: 844440 @@ -168518,12 +163913,12 @@ The Infectious Madness of Doctor Dekker: pageId: 60329 steam: 545540 templates: - - '{{Game data/config|Windows|{{p|appdata}}\timodd\}}' - - '{{Game data/saves|Windows|{{p|appdata}}\timodd\}}' + - "{{Game data/config|Windows|{{p|appdata}}\\timodd\\}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\timodd\\}}" The Infinite Black: pageId: 39185 steam: 489000 -'The Ingenious Machine: New and Improved Edition': +"The Ingenious Machine: New and Improved Edition": pageId: 59743 steam: 334930 The Inheritance of Crimson Manor: @@ -168533,10 +163928,8 @@ The Inheritance of Crimson Manor: steamSide: - 1641050 templates: - - >- - {{Game data/config|Windows|{{P|hkcu}}\Software\MediaCity - Games\CrimsonManor|{{P|userprofile\appdata\locallow}}\MediaCity Games\CrimsonManor\datos.es3}} - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\MediaCity Games\CrimsonManor\datos.es3}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\MediaCity Games\\CrimsonManor|{{P|userprofile\\appdata\\locallow}}\\MediaCity Games\\CrimsonManor\\datos.es3}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\MediaCity Games\\CrimsonManor\\datos.es3}}" The Inheritors of the New World: pageId: 150966 steam: 1078390 @@ -168544,19 +163937,19 @@ The Initial: pageId: 65051 steam: 665090 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\TheInitial\TheInitial}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\TheInitial\\TheInitial}}" The Initiate: pageId: 65108 steam: 659480 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Deceptive Games Ltd.\The Initiate}}' - - '{{Game data/saves|Windows|{{P|hkcu}}\Software\Deceptive Games Ltd.\The Initiate}}' -'The Initiate 2: The First Interviews': + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Deceptive Games Ltd.\\The Initiate}}" + - "{{Game data/saves|Windows|{{P|hkcu}}\\Software\\Deceptive Games Ltd.\\The Initiate}}" +"The Initiate 2: The First Interviews": pageId: 98372 steam: 858360 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\SOFTWARE\Deceptive Games Ltd.\The Initiate 2 - The First Interviews}}' - - '{{Game data/saves|Windows|{{P|hkcu}}\SOFTWARE\Deceptive Games Ltd.\The Initiate 2 - The First Interviews}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\SOFTWARE\\Deceptive Games Ltd.\\The Initiate 2 - The First Interviews}}" + - "{{Game data/saves|Windows|{{P|hkcu}}\\SOFTWARE\\Deceptive Games Ltd.\\The Initiate 2 - The First Interviews}}" The Inner Darkness: pageId: 53940 steam: 562160 @@ -168573,24 +163966,20 @@ The Inner World: steamSide: - 284040 templates: - - '{{Game data/config|Windows|{{p|appdata}}\com.headupgames.theinnerworld\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\TheInnerWorld\savegames\}}' - - '{{Game data/saves|Linux|{{p|game}}/TheInnerWorld/savegames/}}' -'The Inner World: The Last Wind Monk': + - "{{Game data/config|Windows|{{p|appdata}}\\com.headupgames.theinnerworld\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\TheInnerWorld\\savegames\\}}" + - "{{Game data/saves|Linux|{{p|game}}/TheInnerWorld/savegames/}}" +"The Inner World: The Last Wind Monk": gog: 1605427427 pageId: 60472 steam: 613470 templates: - - >- - {{Game data/config|Windows|{{P|userprofile}}\AppData\LocalLow\Studio Fizbin\The Last Wind - Monk\TheInnerWorld2\settings.tiw2}} - - >- - {{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Studio Fizbin\The Last Wind - Monk\TheInnerWorld2\savegames\}} - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Studio Fizbin/The Last Windmonk/TheInnerWorld2/savegames}}' -'The Inner World: The Puzzle': + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Studio Fizbin\\The Last Wind Monk\\TheInnerWorld2\\settings.tiw2}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Studio Fizbin\\The Last Wind Monk\\TheInnerWorld2\\savegames\\}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Studio Fizbin/The Last Windmonk/TheInnerWorld2/savegames}}" +"The Inner World: The Puzzle": pageId: 129429 -'The Ino Chronicles: Ascension': +"The Ino Chronicles: Ascension": pageId: 74694 steam: 724080 The Inquisitor: @@ -168599,7 +163988,7 @@ The Inquisitor: The Inquisitor (2024): pageId: 177869 renamedFrom: - - 'I, The Inquisitor' + - "I, The Inquisitor" - The Inquisitor (2023) steam: 1880470 The Interactive Adventures of Dog Mendonça and Pizzaboy: @@ -168607,12 +163996,8 @@ The Interactive Adventures of Dog Mendonça and Pizzaboy: pageId: 34242 steam: 330420 templates: - - >- - {{Game data/config|Windows|{{P|appdata}}\Godot\app_userdata\The Interactive Adventures of Dog Mendonça & - Pizzaboy\}} - - >- - {{Game data/saves|Windows|{{P|appdata}}\Godot\app_userdata\The Interactive Adventures of Dog Mendonça & - Pizzaboy\dmpb_saves\}} + - "{{Game data/config|Windows|{{P|appdata}}\\Godot\\app_userdata\\The Interactive Adventures of Dog Mendonça & Pizzaboy\\}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\Godot\\app_userdata\\The Interactive Adventures of Dog Mendonça & Pizzaboy\\dmpb_saves\\}}" The Intern - O Estágio: pageId: 79930 steam: 771500 @@ -168630,8 +164015,8 @@ The Invincible: pageId: 169727 steam: 731040 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\TheInvincible\Saved\Config\WindowsNoEditor}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\TheInvincible\Saved\Config\SaveGames}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\TheInvincible\\Saved\\Config\\WindowsNoEditor}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\TheInvincible\\Saved\\Config\\SaveGames}}" The Invisible Guardian: pageId: 163040 steam: 998940 @@ -168643,14 +164028,14 @@ The Invisible Hours: pageId: 73776 steam: 582560 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\CTRLroom\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\Tequila Works\The Invisible Hours\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\CTRLroom\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\Tequila Works\\The Invisible Hours\\}}" The Iron Oath: gog: 1682613330 pageId: 70263 steam: 699330 templates: - - '{{Game data/saves|Windows|{{p|appdata}}\LocalLow\Curious Panda Games\The Iron Oath\saves}}' + - "{{Game data/saves|Windows|{{p|appdata}}\\LocalLow\\Curious Panda Games\\The Iron Oath\\saves}}" The Island Combat: pageId: 98856 steam: 886310 @@ -168662,95 +164047,81 @@ The Island of Dr. Brain: The Island of Eternal Struggle: pageId: 63147 steam: 534240 -'The Island: In To The Mist 그 섬': +"The Island: In To The Mist 그 섬": pageId: 114428 steam: 941650 The Islander: pageId: 81998 steam: 715050 templates: - - '{{Game data/saves|Windows|{{p|localappdata}}\The_Islander\}}' -'The Islander: Landscape Designer': + - "{{Game data/saves|Windows|{{p|localappdata}}\\The_Islander\\}}" +"The Islander: Landscape Designer": pageId: 136397 steam: 1042160 The Isle: pageId: 34691 steam: 376210 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\TheIsle\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\TheIsle\\}}" The Isle of the Dead: pageId: 135463 steam: 1071320 The Italian Job: pageId: 59702 templates: - - '{{Game data/saves|Windows|{{p|game}}\res_data.dat}}' + - "{{Game data/saves|Windows|{{p|game}}\\res_data.dat}}" The Itch: pageId: 141810 steam: 1095520 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Dane Sherman\The Itch\SaveFile*}}' + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Dane Sherman\\The Itch\\SaveFile*}}" The Jackbox Party Pack: pageId: 26012 steam: 331670 templates: - - >- - {{Game data/config|OS X|{{P|osxhome}}/Library/Application Support/Jackbox Games/The Jackbox Party - Pack/UserData.sav}} - - '{{Game data/saves|Windows|{{P|localappdata}}\Jackbox Games\The Jackbox Party Pack\UserData.sav}}' - - '{{Game data/saves|Steam|{{p|Steam}}\userdata\{{p|uid}}\331670\remote\UserData.sav_}}' - - >- - {{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/Jackbox Games/The Jackbox Party - Pack/UserData.sav}} + - "{{Game data/config|OS X|{{P|osxhome}}/Library/Application Support/Jackbox Games/The Jackbox Party Pack/UserData.sav}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Jackbox Games\\The Jackbox Party Pack\\UserData.sav}}" + - "{{Game data/saves|Steam|{{p|Steam}}\\userdata\\{{p|uid}}\\331670\\remote\\UserData.sav_}}" + - "{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/Jackbox Games/The Jackbox Party Pack/UserData.sav}}" The Jackbox Party Pack 2: pageId: 34541 steam: 397460 templates: - - '{{Game data/saves|Windows|{{P|localappdata}}\Jackbox Games\The Jackbox Party Pack 2\UserData.sav}}' + - "{{Game data/saves|Windows|{{P|localappdata}}\\Jackbox Games\\The Jackbox Party Pack 2\\UserData.sav}}" The Jackbox Party Pack 3: pageId: 40365 steam: 434170 templates: - - >- - {{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/com.jackboxgames.jackboxpartypack3/Local - Store/#SharedObjects/TJPP3Loader.swf/SETTINGS_MANAGER_KEY.sol}} - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/com.jackboxgames.jackboxpartypack3/Local Store/}}' + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/com.jackboxgames.jackboxpartypack3/Local Store/#SharedObjects/TJPP3Loader.swf/SETTINGS_MANAGER_KEY.sol}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/com.jackboxgames.jackboxpartypack3/Local Store/}}" The Jackbox Party Pack 4: pageId: 72939 steam: 610180 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Jackbox Games\The Jackbox Party Pack 4\UserData.sav}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\Jackbox Games\The Jackbox Party Pack 4\UserData.sav}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\Jackbox Games\\The Jackbox Party Pack 4\\UserData.sav}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Jackbox Games\\The Jackbox Party Pack 4\\UserData.sav}}" The Jackbox Party Pack 5: pageId: 108828 steam: 774461 steamSide: - 809930 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Jackbox Games\The Jackbox Party Pack 5\UserData.sav}}' - - >- - {{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Jackbox Games/The Jackbox Party Pack - 5/UserData.sav}} - - '{{Game data/saves|Windows|{{P|localappdata}}\Jackbox Games\The Jackbox Party Pack 5\UserData.sav}}' - - >- - {{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Jackbox Games/The Jackbox Party Pack - 5/UserData.sav}} + - "{{Game data/config|Windows|{{P|localappdata}}\\Jackbox Games\\The Jackbox Party Pack 5\\UserData.sav}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Jackbox Games/The Jackbox Party Pack 5/UserData.sav}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Jackbox Games\\The Jackbox Party Pack 5\\UserData.sav}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Jackbox Games/The Jackbox Party Pack 5/UserData.sav}}" The Jackbox Party Pack 6: pageId: 147783 steam: 1005300 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Jackbox Games\The Jackbox Party Pack 6\UserData.sav}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\Jackbox Games\The Jackbox Party Pack 6\UserData.sav}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\Jackbox Games\\The Jackbox Party Pack 6\\UserData.sav}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Jackbox Games\\The Jackbox Party Pack 6\\UserData.sav}}" The Jackbox Party Pack 7: pageId: 163932 steam: 1211630 templates: - - >- - {{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Jackbox Games/The Jackbox Party Pack - 7/UserData.sav}} - - >- - {{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Jackbox Games/The Jackbox Party Pack - 7/UserData.sav}} + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Jackbox Games/The Jackbox Party Pack 7/UserData.sav}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Jackbox Games/The Jackbox Party Pack 7/UserData.sav}}" The Jackbox Party Pack 8: pageId: 172246 steam: 1552350 @@ -168760,12 +164131,8 @@ The Jackbox Party Pack 9: steamSide: - 2132470 templates: - - >- - {{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Jackbox Games/The Jackbox Party Pack - 9/UserData.sav}} - - >- - {{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Jackbox Games/The Jackbox Party Pack - 9/UserData.sav}} + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Jackbox Games/The Jackbox Party Pack 9/UserData.sav}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Jackbox Games/The Jackbox Party Pack 9/UserData.sav}}" The Jackbox Party Starter: pageId: 178634 steam: 1755580 @@ -168781,7 +164148,7 @@ The Jigsaw Puzzle Room: The Jimmy´s Souls: pageId: 100766 steam: 879080 -The Jolly Gang's Misadventures in Africa: +"The Jolly Gang's Misadventures in Africa": pageId: 132112 steam: 1048920 The Journey: @@ -168790,31 +164157,31 @@ The Journey: The Journey Back: pageId: 46899 steam: 393550 -'The Journey Down: Chapter One': +"The Journey Down: Chapter One": gog: 2093419598 pageId: 19711 steam: 220090 templates: - - '{{Game data/config|Windows|{{p|appdata}}\SkyGoblin\TheJourneyDown1\settings.cfg}}' - - '{{Game data/config|Linux|{{P|xdgconfighome}}/JourneyDownOne/}}' - - '{{Game data/saves|Windows|{{p|appdata}}\SkyGoblin\TheJourneyDown1\}}' - - '{{Game data/saves|Linux|{{P|xdgconfighome}}/JourneyDownOne/}}' -'The Journey Down: Chapter Three': + - "{{Game data/config|Windows|{{p|appdata}}\\SkyGoblin\\TheJourneyDown1\\settings.cfg}}" + - "{{Game data/config|Linux|{{P|xdgconfighome}}/JourneyDownOne/}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\SkyGoblin\\TheJourneyDown1\\}}" + - "{{Game data/saves|Linux|{{P|xdgconfighome}}/JourneyDownOne/}}" +"The Journey Down: Chapter Three": gog: 2093419598 pageId: 58948 steam: 579760 templates: - - '{{Game data/config|Windows|{{P|appdata}}\SkyGoblin\TheJourneyDown3\settings.cfg}}' - - '{{Game data/saves|Windows|{{P|appdata}}\SkyGoblin\TheJourneyDown3\}}' -'The Journey Down: Chapter Two': + - "{{Game data/config|Windows|{{P|appdata}}\\SkyGoblin\\TheJourneyDown3\\settings.cfg}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\SkyGoblin\\TheJourneyDown3\\}}" +"The Journey Down: Chapter Two": gog: 2093419598 pageId: 19712 steam: 262850 templates: - - '{{Game data/config|Windows|{{p|appdata}}\SkyGoblin\TheJourneyDown2\settings.cfg}}' - - '{{Game data/config|Linux|{{P|xdgconfighome}}/JourneyDownTwo/}}' - - '{{Game data/saves|Windows|{{p|appdata}}\SkyGoblin\TheJourneyDown2\}}' - - '{{Game data/saves|Linux|{{P|xdgconfighome}}/JourneyDownTwo/}}' + - "{{Game data/config|Windows|{{p|appdata}}\\SkyGoblin\\TheJourneyDown2\\settings.cfg}}" + - "{{Game data/config|Linux|{{P|xdgconfighome}}/JourneyDownTwo/}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\SkyGoblin\\TheJourneyDown2\\}}" + - "{{Game data/saves|Linux|{{P|xdgconfighome}}/JourneyDownTwo/}}" The Journey Home: pageId: 36918 steam: 519170 @@ -168824,49 +164191,49 @@ The Journey of Forgotten Memories: The Journey to Fairytales: pageId: 98652 steam: 879480 -'The Journey: Bob''s Story': +"The Journey: Bob's Story": pageId: 39370 steam: 385410 The Journeyman Project: pageId: 19860 -'The Journeyman Project 2: Buried in Time': +"The Journeyman Project 2: Buried in Time": gog: 1207658872 pageId: 131674 templates: - - '{{Game data/saves|Windows|*.btg|*.sav}}' -'The Journeyman Project 3: Legacy of Time': + - "{{Game data/saves|Windows|*.btg|*.sav}}" +"The Journeyman Project 3: Legacy of Time": gog: 1207659009 pageId: 131676 templates: - - '{{Game data/config|Windows|{{P|game}}\j3prefs.fil}}' -'The Journeyman Project: Pegasus Prime': + - "{{Game data/config|Windows|{{P|game}}\\j3prefs.fil}}" +"The Journeyman Project: Pegasus Prime": gog: 1207664213 pageId: 58207 steam: 359420 templates: - - '{{Game data/config|Windows|{{P|appdata}}\Pegasus Prime\Pegasus Prime.ini}}' - - '{{Game data/saves|Windows|{{P|appdata}}\Pegasus Prime\Saved games\}}' -'The Joylancer: Legendary Motor Knight': + - "{{Game data/config|Windows|{{P|appdata}}\\Pegasus Prime\\Pegasus Prime.ini}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\Pegasus Prime\\Saved games\\}}" +"The Joylancer: Legendary Motor Knight": pageId: 49382 steam: 315540 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\JOYLANCER\options.ini}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\JOYLANCER\profiles\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\JOYLANCER\\options.ini}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\JOYLANCER\\profiles\\}}" The Juicer: pageId: 46474 steam: 400790 templates: - - '{{Game data/config|Windows|{{P|appdata}}\Anvate Games\The Juicer\}}' - - '{{Game data/saves|Windows|{{P|appdata}}\Anvate Games\The Juicer\Profiles.cfg}}' + - "{{Game data/config|Windows|{{P|appdata}}\\Anvate Games\\The Juicer\\}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\Anvate Games\\The Juicer\\Profiles.cfg}}" The Jungle Book: gog: 1121892325 pageId: 79093 steam: 561110 -'The Jungle Book: Groove Party': +"The Jungle Book: Groove Party": pageId: 172557 templates: - - '{{Game data/config|Windows|{{p|game}}\osr.ini}}' - - '{{Game data/saves|Windows|{{p|game}}}}' + - "{{Game data/config|Windows|{{p|game}}\\osr.ini}}" + - "{{Game data/saves|Windows|{{p|game}}}}" The Kaiju Offensive: pageId: 134845 steam: 1057390 @@ -168877,17 +164244,17 @@ The Keep: pageId: 58130 steam: 317370 templates: - - '{{Game data/config|Windows|{{P|userprofile}}\AppData\LocalLow\CINEMAX, s_r_o_\The Keep\}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\CINEMAX, s_r_o_\The Keep\}}' -'The Keepers of Pages: Chevengur': + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\CINEMAX, s_r_o_\\The Keep\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\CINEMAX, s_r_o_\\The Keep\\}}" +"The Keepers of Pages: Chevengur": pageId: 122802 steam: 935380 The Keys to Maramon: pageId: 75372 templates: - - '{{Game data/config|DOS|{{p|game}}\KMCONFIG.MCC}}' - - '{{Game data/saves|DOS|{{p|game}}\KMSAV*.MCS|{{p|game}}\KMSAV.MCI|{{p|game}}\KMSCOR.MCS}}' -'The Killbox: Arena Combat': + - "{{Game data/config|DOS|{{p|game}}\\KMCONFIG.MCC}}" + - "{{Game data/saves|DOS|{{p|game}}\\KMSAV*.MCS|{{p|game}}\\KMSAV.MCI|{{p|game}}\\KMSCOR.MCS}}" +"The Killbox: Arena Combat": pageId: 73673 steam: 722750 The Kindeman Remedy: @@ -168898,88 +164265,85 @@ The Kindred: pageId: 33216 steam: 373410 templates: - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Persistent Studios\The Kindred\Saves}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Persistent Studios/The Kindred/Saves}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/unity3d/Persistent Studios/The Kindred/Saves}}' -The King of Fighters '97 Global Match: + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Persistent Studios\\The Kindred\\Saves}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Persistent Studios/The Kindred/Saves}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/unity3d/Persistent Studios/The Kindred/Saves}}" +"The King of Fighters '97 Global Match": pageId: 92501 steam: 702120 -The King of Fighters '98 Ultimate Match Final Edition: +"The King of Fighters '98 Ultimate Match Final Edition": gog: 2097726164 pageId: 30373 steam: 222420 templates: - - '{{Game data/config|Windows|{{p|game}}\Data\~options.bin}}' - - '{{Game data/config|Windows|{{p|game}}\Data\~options.bin}}' -'The King of Fighters ''99: Evolution': + - "{{Game data/config|Windows|{{p|game}}\\Data\\~options.bin}}" + - "{{Game data/config|Windows|{{p|game}}\\Data\\~options.bin}}" +"The King of Fighters '99: Evolution": pageId: 92575 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/saves|Windows|{{p|game}}\}}' + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\}}" The King of Fighters 2000: gog: 2092821172 pageId: 92515 templates: - - '{{Game data/config|Windows|{{p|AppData}}\SNK\kof2k\OPTIONS}}' - - '{{Game data/saves|Windows|{{p|AppData}}\SNK\kof2k\SAVEGAME}}' + - "{{Game data/config|Windows|{{p|AppData}}\\SNK\\kof2k\\OPTIONS}}" + - "{{Game data/saves|Windows|{{p|AppData}}\\SNK\\kof2k\\SAVEGAME}}" The King of Fighters 2002: gog: 2114035213 pageId: 83071 templates: - - '{{Game data/config|Windows|{{p|AppData}}\SNK\kof2k2nd\OPTIONS}}' - - '{{Game data/saves|Windows|{{p|AppData}}\SNK\kof2k2nd\SAVEGAME}}' + - "{{Game data/config|Windows|{{p|AppData}}\\SNK\\kof2k2nd\\OPTIONS}}" + - "{{Game data/saves|Windows|{{p|AppData}}\\SNK\\kof2k2nd\\SAVEGAME}}" The King of Fighters 2002 Unlimited Match: gog: 1409524666 pageId: 37808 steam: 222440 templates: - - '{{Game data/config|Windows|{{P|game}}\Data\~settings.bin}}' - - '{{Game data/config|Windows|{{P|game}}\Data\~settings.bin}}' + - "{{Game data/config|Windows|{{P|game}}\\Data\\~settings.bin}}" + - "{{Game data/config|Windows|{{P|game}}\\Data\\~settings.bin}}" The King of Fighters All Star: pageId: 174477 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Netmarble Corp.\KOF ALLSTAR\*}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Netmarble Corp.\\KOF ALLSTAR\\*}}" The King of Fighters XIII: gog: 1835492050 pageId: 10007 steam: 222940 templates: - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/222940/remote/kofxiii/}}' + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/222940/remote/kofxiii/}}" The King of Fighters XIV: gog: 1876499356 pageId: 62131 steam: 571260 templates: - - '{{Game data/config|Windows|{{P|programdata}}\King of Fighters XIV\graphics_option.json}}' - - '{{Game data/saves|Windows|{{p|steam}}\userdata\{{p|uid}}\571260\}}' + - "{{Game data/config|Windows|{{P|programdata}}\\King of Fighters XIV\\graphics_option.json}}" + - "{{Game data/saves|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\571260\\}}" The King of Fighters XV: pageId: 169779 steam: 1498570 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\KOFXV\Saved\Config\WindowsNoEditor}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\KOFXV\Saved\SaveGames}}' -The King's Bird: + - "{{Game data/config|Windows|{{P|localappdata}}\\KOFXV\\Saved\\Config\\WindowsNoEditor}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\KOFXV\\Saved\\SaveGames}}" +"The King's Bird": pageId: 92367 steam: 812550 templates: - - >- - {{Game data/config|Windows|{{P|userprofile}}\AppData\LocalLow\Serenity Forge\The King's - Bird\Settings.dat|{{P|userprofile}}\AppData\LocalLow\Serenity Forge\The King's - Bird\Controls.dat|{{P|hkcu}}\Software\Serenity Forge\The King's Bird\}} - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Serenity Forge\The King''s Bird\Save_*.sav}}' -The King's Heroes: + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Serenity Forge\\The King's Bird\\Settings.dat|{{P|userprofile}}\\AppData\\LocalLow\\Serenity Forge\\The King's Bird\\Controls.dat|{{P|hkcu}}\\Software\\Serenity Forge\\The King's Bird\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Serenity Forge\\The King's Bird\\Save_*.sav}}" +"The King's Heroes": pageId: 62148 steam: 461350 -The King's New Castle: +"The King's New Castle": pageId: 130334 steam: 1040450 -'The King''s Request: Physiology and Anatomy Revision Game': +"The King's Request: Physiology and Anatomy Revision Game": pageId: 96753 steam: 873230 The Kings Destiny: pageId: 124605 steam: 990970 -The Kings' Crusade: +"The Kings' Crusade": pageId: 41072 steam: 42920 The Kite: @@ -168990,12 +164354,12 @@ The Knight Witch: pageId: 181635 steam: 1872680 templates: - - '{{Game data/config|Windows|{{p|userprofile\appdata\locallow}}\SuperMegaTeam\TheKnightWitch\TKWUserSettings.data}}' - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\SuperMegaTeam\TheKnightWitch\GameSlot_*.data|}}' + - "{{Game data/config|Windows|{{p|userprofile\\appdata\\locallow}}\\SuperMegaTeam\\TheKnightWitch\\TKWUserSettings.data}}" + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\SuperMegaTeam\\TheKnightWitch\\GameSlot_*.data|}}" The Knight of the Crimson Tower: pageId: 153111 steam: 1187190 -'The Knobbly Crook: Chapter I - The Horse You Sailed In On': +"The Knobbly Crook: Chapter I - The Horse You Sailed In On": pageId: 37979 steam: 378300 The Kremer Collection VR Museum: @@ -169005,8 +164369,8 @@ The Lab: pageId: 37100 steam: 450390 templates: - - '{{Game data/config|Windows|{{P|userprofile}}\AppData\LocalLow\Valve\TheLab\PlayerData.txt}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Valve\TheLab\PlayerData.txt}}' + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Valve\\TheLab\\PlayerData.txt}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Valve\\TheLab\\PlayerData.txt}}" The Labyrinth: pageId: 63751 steam: 652050 @@ -169018,8 +164382,8 @@ The Labyrinth of Time: pageId: 34390 steam: 266980 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Wyrmkeep\The Labyrinth of Time\}}' - - '{{Game data/saves|Windows|{{P|appdata}}\Wyrmkeep\The Labyrinth of Time Saved Games\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Wyrmkeep\\The Labyrinth of Time\\}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\Wyrmkeep\\The Labyrinth of Time Saved Games\\}}" The Lady: pageId: 48861 steam: 341060 @@ -169071,7 +164435,7 @@ The Last Aura: The Last Barbarian: pageId: 91276 steam: 828470 -The Last Baron's Stunt: +"The Last Baron's Stunt": pageId: 88130 steam: 801900 The Last Birdling: @@ -169082,8 +164446,8 @@ The Last Blade: pageId: 36604 steam: 465840 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\LastBlade\{{P|uid}}\UserDefault.xml}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\LastBlade\{{P|uid}}\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\LastBlade\\{{P|uid}}\\UserDefault.xml}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\LastBlade\\{{P|uid}}\\}}" The Last Blade 2: gog: 1956006479 pageId: 76901 @@ -169095,13 +164459,13 @@ The Last Campfire: pageId: 124621 steam: 990630 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\SOFTWARE\Hello Games\The Last Campfire}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Hello Games\The Last Campfire\JSONSaveData.json}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\Hello Games\\The Last Campfire}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Hello Games\\The Last Campfire\\JSONSaveData.json}}" The Last Cargo: pageId: 58443 steam: 593560 templates: - - '{{Game data/config|Windows|{{p|game}}\Data\Other\TLC_{{p|uid}}.ini}}' + - "{{Game data/config|Windows|{{p|game}}\\Data\\Other\\TLC_{{p|uid}}.ini}}" The Last Case of Benedict Fox: pageId: 178394 steam: 2023360 @@ -169117,15 +164481,15 @@ The Last Contact: The Last Cowboy: pageId: 138673 steam: 1087100 -'The Last Crown: Blackenrock': +"The Last Crown: Blackenrock": pageId: 39343 steam: 291750 -'The Last Crown: Midnight Horror': +"The Last Crown: Midnight Horror": pageId: 45844 steam: 291770 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\SOFTWARE\DarklingRoom\MidnightHorror}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\Saved Games\Midnight Horror\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\SOFTWARE\\DarklingRoom\\MidnightHorror}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Saved Games\\Midnight Horror\\}}" The Last Cube: pageId: 157460 steam: 903630 @@ -169141,37 +164505,31 @@ The Last Dinner: The Last Dogma: pageId: 47433 steam: 374510 -'The Last Door: Collector''s Edition': +"The Last Door: Collector's Edition": gog: 1207664553 pageId: 34394 steam: 284390 templates: - - '{{Game data/config|Windows|{{p|appdata}}\TLDCEPC\Local Store\#SharedObjects\TLDCEPC.swf\system_data.sol}}' - - >- - {{Game data/config|Microsoft - Store|{{P|localappdata}}\Packages\GAMETROOPERS.TheLastDoorCollectorsEdition_334sksj6ker18\LocalState\system_data.sox3}} - - '{{Game data/saves|Windows|{{p|appdata}}\TLDCEPC\Local Store\#SharedObjects\TLDCEPC.swf\episode*.sol}}' - - >- - {{Game data/saves|Microsoft - Store|{{P|localappdata}}\Packages\GAMETROOPERS.TheLastDoorCollectorsEdition_334sksj6ker18\LocalState\episode*.sox3}} - - '{{Game data/saves|Linux|{{p|linuxhome}}/.appdata/TLDCEPC/Local Store/#SharedObjects/TLDCEPC.swf/}}' -'The Last Door: Season 2 Collector''s Edition': + - "{{Game data/config|Windows|{{p|appdata}}\\TLDCEPC\\Local Store\\#SharedObjects\\TLDCEPC.swf\\system_data.sol}}" + - "{{Game data/config|Microsoft Store|{{P|localappdata}}\\Packages\\GAMETROOPERS.TheLastDoorCollectorsEdition_334sksj6ker18\\LocalState\\system_data.sox3}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\TLDCEPC\\Local Store\\#SharedObjects\\TLDCEPC.swf\\episode*.sol}}" + - "{{Game data/saves|Microsoft Store|{{P|localappdata}}\\Packages\\GAMETROOPERS.TheLastDoorCollectorsEdition_334sksj6ker18\\LocalState\\episode*.sox3}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.appdata/TLDCEPC/Local Store/#SharedObjects/TLDCEPC.swf/}}" +"The Last Door: Season 2 Collector's Edition": gog: 1457355665 pageId: 34218 steam: 402530 templates: - - >- - {{Game - data/config|Windows|{{p|userprofile}}\AppData\LocalLow\TheGameKitchen\TLDCE2|{{p|userprofile}}\AppData\LocalLow\DefaultCompany\TLDCE2\OPTIONS.json|{{P|hkcu}}\Software\DefaultCompany\TLDCE2\}} - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/DefaultCompany/TLDCE2}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\TheGameKitchen\TLDCE2}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/DefaultCompany/TLDCE2}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\TheGameKitchen\\TLDCE2|{{p|userprofile}}\\AppData\\LocalLow\\DefaultCompany\\TLDCE2\\OPTIONS.json|{{P|hkcu}}\\Software\\DefaultCompany\\TLDCE2\\}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/DefaultCompany/TLDCE2}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\TheGameKitchen\\TLDCE2}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/DefaultCompany/TLDCE2}}" The Last Dream: pageId: 37634 steam: 395860 templates: - - '{{Game data/config|Windows|{{P|appdata}}\TheLastDream\}}' - - '{{Game data/saves|Windows|{{P|appdata}}\TheLastDream\}}' + - "{{Game data/config|Windows|{{P|appdata}}\\TheLastDream\\}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\TheLastDream\\}}" The Last Dynasty: pageId: 147026 The Last Error: @@ -169185,19 +164543,17 @@ The Last Express: pageId: 23241 steam: 252710 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\TheLastExpressSteam\}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\TheLastExpressSteam\*.egg}}' - - '{{Game data/saves|Steam|{{P|steam}}\userdata\{{P|uid}}\252710\remote\*.egg}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\TheLastExpressSteam\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\TheLastExpressSteam\\*.egg}}" + - "{{Game data/saves|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\252710\\remote\\*.egg}}" The Last Federation: gog: 1207664253 pageId: 16790 steam: 273070 templates: - - '{{Game data/config|Windows|{{p|game}}\RuntimeData\settings.dat|{{P|game}}\RuntimeData\inputbindings.dat}}' - - '{{Game data/saves|Windows|{{p|game}}\RuntimeData\Save\}}' - - >- - {{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Steam/steamapps/common/The Last - Federation/RuntimeData/Save/}} + - "{{Game data/config|Windows|{{p|game}}\\RuntimeData\\settings.dat|{{P|game}}\\RuntimeData\\inputbindings.dat}}" + - "{{Game data/saves|Windows|{{p|game}}\\RuntimeData\\Save\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Steam/steamapps/common/The Last Federation/RuntimeData/Save/}}" The Last Friend: pageId: 122764 steam: 944430 @@ -169217,11 +164573,11 @@ The Last Hope: pageId: 36688 steam: 522570 templates: - - '{{Game data/saves|Windows|{{p|AppData}}LocalLow\TheLastHopeCloud\PlayerSaves}}' -'The Last Hope: Atomic Bomb - Crypto War': + - "{{Game data/saves|Windows|{{p|AppData}}LocalLow\\TheLastHopeCloud\\PlayerSaves}}" +"The Last Hope: Atomic Bomb - Crypto War": pageId: 87485 steam: 801320 -'The Last Hope: Trump vs Mafia': +"The Last Hope: Trump vs Mafia": pageId: 56653 steam: 581030 The Last Hunt: @@ -169249,7 +164605,7 @@ The Last Monster Master: The Last Night: pageId: 63646 steam: 612400 -'The Last Night: The First Invation': +"The Last Night: The First Invation": pageId: 92995 steam: 662600 The Last NightMary - A Lenda do Cabeça de Cuia: @@ -169277,8 +164633,8 @@ The Last Remnant: pageId: 1374 steam: 23310 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\The last remnant\RushGame\Config\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\The last remnant\RushGame\Save\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\The last remnant\\RushGame\\Config\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\The last remnant\\RushGame\\Save\\}}" The Last Rolling Hero: pageId: 79932 steam: 759250 @@ -169311,36 +164667,30 @@ The Last Sovereign: pageId: 146070 steam: 951830 templates: - - '{{Game data/saves|Windows|{{p|game}}\*.rvdata2}}' + - "{{Game data/saves|Windows|{{p|game}}\\*.rvdata2}}" The Last Spell: gog: 2081410845 pageId: 145389 steam: 1105670 templates: - - '{{Game data/saves|Windows|{{p|USERPROFILE\AppData\LocalLow}}\Ishtar Games\The Last Spell\Save}}' + - "{{Game data/saves|Windows|{{p|USERPROFILE\\AppData\\LocalLow}}\\Ishtar Games\\The Last Spell\\Save}}" The Last Sphinx ARG: pageId: 121683 steam: 970360 -'The Last Stand: Aftermath': +"The Last Stand: Aftermath": gog: 1890543378 pageId: 160168 steam: 1266840 templates: - - >- - {{Game data/config|Windows|{{P|userprofile\appdata\locallow}}\Con Artist Games\The Last Stand_ - Aftermath\{{P|uid}}\}} - - >- - {{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Con Artist Games\The Last Stand_ - Aftermath\{{P|uid}}\}} -'The Last Stand: Legacy Collection': + - "{{Game data/config|Windows|{{P|userprofile\\appdata\\locallow}}\\Con Artist Games\\The Last Stand_ Aftermath\\{{P|uid}}\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Con Artist Games\\The Last Stand_ Aftermath\\{{P|uid}}\\}}" +"The Last Stand: Legacy Collection": gog: 1380096239 pageId: 171583 steam: 1615100 templates: - - >- - {{Game data/config|Windows|{{p|appdata}}\TheLastStandLegacyCollection\Local - Store\#SharedObjects\TheLastStandLegacyCollection.swf}} - - '{{Game data/saves|Windows|{{p|appdata}}\TheLastStandLegacyCollection\Local Store\#SharedObjects\gamefiles}}' + - "{{Game data/config|Windows|{{p|appdata}}\\TheLastStandLegacyCollection\\Local Store\\#SharedObjects\\TheLastStandLegacyCollection.swf}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\TheLastStandLegacyCollection\\Local Store\\#SharedObjects\\gamefiles}}" The Last Starship: gog: 1883654816 pageId: 185354 @@ -169357,13 +164707,13 @@ The Last Survivor: The Last Time: pageId: 38865 steam: 468050 -'The Last Tinker: City of Colors': +"The Last Tinker: City of Colors": gog: 1424254701 pageId: 23286 steam: 260160 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Mimimi Productions\The Last Tinker\GlobalData.tnk}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Mimimi Productions\The Last Tinker\GameState*.tnk}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Mimimi Productions\\The Last Tinker\\GlobalData.tnk}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Mimimi Productions\\The Last Tinker\\GameState*.tnk}}" The Last Tower: pageId: 90060 steam: 824580 @@ -169396,27 +164746,27 @@ The Last of Us Part I: pageId: 178200 steam: 1888930 templates: - - '{{Game data/config|Windows|{{P|userprofile}}\Saved Games\The Last of Us Part I\users\{{P|uid}}\screeninfo.cfg}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\Saved Games\The Last of Us Part I\users\{{P|uid}}\savedata\}}' + - "{{Game data/config|Windows|{{P|userprofile}}\\Saved Games\\The Last of Us Part I\\users\\{{P|uid}}\\screeninfo.cfg}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\Saved Games\\The Last of Us Part I\\users\\{{P|uid}}\\savedata\\}}" The Lattice Grimoire: pageId: 141438 steam: 1099660 The Legacy of Music: pageId: 125677 steam: 1006470 -'The Legacy: Forgotten Gates': +"The Legacy: Forgotten Gates": pageId: 67498 steam: 630830 -'The Legacy: Prisoner': +"The Legacy: Prisoner": pageId: 96219 steam: 846700 -'The Legacy: Realm of Terror': +"The Legacy: Realm of Terror": gog: 1846446491 pageId: 154786 steam: 1257890 templates: - - '{{Game data/config|DOS|{{P|game}}\{{code|*}}.LAY}}' - - '{{Game data/saves|DOS|{{P|game}}\{{code|*}}.SAV}}' + - "{{Game data/config|DOS|{{P|game}}\\{{code|*}}.LAY}}" + - "{{Game data/saves|DOS|{{P|game}}\\{{code|*}}.SAV}}" The Legend Of Vraz: pageId: 112296 steam: 926490 @@ -169431,11 +164781,9 @@ The Legend of Bum-Bo: pageId: 146288 steam: 1148650 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Edmund McMillen Games\The Legend of Bum-bo}}' - - >- - {{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Edmund McMillen Games\The Legend of - Bum-bo\progression.sav}} -'The Legend of Candlewind: Nights & Candles': + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Edmund McMillen Games\\The Legend of Bum-bo}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Edmund McMillen Games\\The Legend of Bum-bo\\progression.sav}}" +"The Legend of Candlewind: Nights & Candles": pageId: 48717 steam: 326650 The Legend of Crystal Valley: @@ -169444,7 +164792,7 @@ The Legend of Crystal Valley: The Legend of Dark Witch: pageId: 45449 steam: 420770 -'The Legend of Dark Witch - Episode 2: The Price of Desire': +"The Legend of Dark Witch - Episode 2: The Price of Desire": pageId: 53968 steam: 555580 The Legend of Dark Witch Renovation: @@ -169456,189 +164804,187 @@ The Legend of Evil: The Legend of Excalipurr: pageId: 60806 steam: 618560 -'The Legend of Heroes III: Shiroki Majo': +"The Legend of Heroes III: Shiroki Majo": pageId: 174920 templates: - - '{{Game data/saves|DOS|{{p|game}}\SAVE}}' -'The Legend of Heroes IV: Akai Shizuku': + - "{{Game data/saves|DOS|{{p|game}}\\SAVE}}" +"The Legend of Heroes IV: Akai Shizuku": pageId: 174932 templates: - - '{{Game data/saves|DOS|{{p|game}}\SAVE}}' - - '{{Game data/saves|Windows|{{p|game}}\SAVE}}' -'The Legend of Heroes V: Umi no Oriuta': + - "{{Game data/saves|DOS|{{p|game}}\\SAVE}}" + - "{{Game data/saves|Windows|{{p|game}}\\SAVE}}" +"The Legend of Heroes V: Umi no Oriuta": pageId: 175028 templates: - - '{{Game data/config|Windows|{{p|game}}\ED5_CFG.EXE}}' - - '{{Game data/saves|Windows|{{p|game}}\SAVEDATA}}' -'The Legend of Heroes: Ao no Kiseki': + - "{{Game data/config|Windows|{{p|game}}\\ED5_CFG.EXE}}" + - "{{Game data/saves|Windows|{{p|game}}\\SAVEDATA}}" +"The Legend of Heroes: Ao no Kiseki": pageId: 170465 templates: - - '{{Game data/config|Windows| {{p|game}}}}' - - '{{Game data/saves|Windows|{{p|game}}\savefile\}}' -'The Legend of Heroes: Kuro no Kiseki II - Crimson Sin': + - "{{Game data/config|Windows| {{p|game}}}}" + - "{{Game data/saves|Windows|{{p|game}}\\savefile\\}}" +"The Legend of Heroes: Kuro no Kiseki II - Crimson Sin": pageId: 188336 steam: 2113920 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\Saved Games\CLE\Kuro_no_Kiseki2\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\Saved Games\CLE\Kuro_no_Kiseki2\savedata}}' -'The Legend of Heroes: Trails from Zero': + - "{{Game data/config|Windows|{{p|userprofile}}\\Saved Games\\CLE\\Kuro_no_Kiseki2\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Saved Games\\CLE\\Kuro_no_Kiseki2\\savedata}}" +"The Legend of Heroes: Trails from Zero": gog: 1342742250 pageId: 166121 renamedFrom: - - 'The Legend of Heroes: Zero no Kiseki Kai' + - "The Legend of Heroes: Zero no Kiseki Kai" steam: 1668510 steamSide: - 1457520 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Falcom\Zero\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\Saved Games\Falcom\Zero\}}' -'The Legend of Heroes: Trails in the Sky': + - "{{Game data/config|Windows|{{p|localappdata}}\\Falcom\\Zero\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Saved Games\\Falcom\\Zero\\}}" +"The Legend of Heroes: Trails in the Sky": gog: 1207665083 pageId: 20609 steam: 251150 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\Saved Games\FALCOM\ED6\config.ini}}' - - '{{Game data/config|Steam|{{p|steam}}\userdata\{{p|uid}}\251150\remote\config.ini}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\Saved Games\FALCOM\ED6\}}' - - >- - {{Game - data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\251150\remote\FC\|{{p|steam}}\userdata\{{p|uid}}\251150\remote\save\}} -'The Legend of Heroes: Trails in the Sky SC': + - "{{Game data/config|Windows|{{p|userprofile}}\\Saved Games\\FALCOM\\ED6\\config.ini}}" + - "{{Game data/config|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\251150\\remote\\config.ini}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Saved Games\\FALCOM\\ED6\\}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\251150\\remote\\FC\\|{{p|steam}}\\userdata\\{{p|uid}}\\251150\\remote\\save\\}}" +"The Legend of Heroes: Trails in the Sky SC": gog: 1444826419 pageId: 29522 steam: 251290 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\Saved Games\FALCOM\ED_SORA2\ed6_win2.ini}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\Saved Games\FALCOM\ED_SORA2\}}' - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\251150\remote\SC}}' -'The Legend of Heroes: Trails in the Sky the 3rd': + - "{{Game data/config|Windows|{{p|userprofile}}\\Saved Games\\FALCOM\\ED_SORA2\\ed6_win2.ini}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Saved Games\\FALCOM\\ED_SORA2\\}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\251150\\remote\\SC}}" +"The Legend of Heroes: Trails in the Sky the 3rd": gog: 1797747105 pageId: 60948 steam: 436670 templates: - - '{{Game data/config|Windows|{{File|{{p|userprofile}}\Saved Games\FALCOM\ED_SORA3\ed6_win3.ini}}}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\Saved Games\FALCOM\ED_SORA3\}}' - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\251150\remote\TC}}' -'The Legend of Heroes: Trails into Reverie': + - "{{Game data/config|Windows|{{File|{{p|userprofile}}\\Saved Games\\FALCOM\\ED_SORA3\\ed6_win3.ini}}}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Saved Games\\FALCOM\\ED_SORA3\\}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\251150\\remote\\TC}}" +"The Legend of Heroes: Trails into Reverie": gog: 1704829478 pageId: 170260 steam: 1668540 steamSide: - 1562940 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Falcom\ed8_psv5\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\Saved Games\Falcom\ed8_psv5\}}' -'The Legend of Heroes: Trails of Cold Steel': + - "{{Game data/config|Windows|{{P|localappdata}}\\Falcom\\ed8_psv5\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Saved Games\\Falcom\\ed8_psv5\\}}" +"The Legend of Heroes: Trails of Cold Steel": gog: 2029703882 gogSide: + - 1414963737 - 1887831823 - 1920604877 - - 1414963737 pageId: 64574 steam: 538680 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\TrailsOfColdSteel1\settings}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\Saved Games\Falcom\ed8}}' -'The Legend of Heroes: Trails of Cold Steel II': + - "{{Game data/config|Windows|{{p|localappdata}}\\TrailsOfColdSteel1\\settings}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\Saved Games\\Falcom\\ed8}}" +"The Legend of Heroes: Trails of Cold Steel II": gog: 1451952142 gogSide: - - 1807569574 - - 1822223632 - - 1267549157 - - 2065861584 - - 1413588880 - - 1831828821 - - 1926151271 - - 1830460798 - 1125362036 - - 1940798188 + - 1267549157 + - 1396660388 + - 1413588880 - 1489496730 - 1723105806 - - 1396660388 + - 1807569574 + - 1822223632 + - 1830460798 + - 1831828821 + - 1926151271 + - 1940798188 + - 2065861584 pageId: 81655 steam: 748490 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\TrailsOfColdSteel2\settings.xml}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\Saved Games\FALCOM\ed8_2}}' -'The Legend of Heroes: Trails of Cold Steel III': + - "{{Game data/config|Windows|{{p|localappdata}}\\TrailsOfColdSteel2\\settings.xml}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Saved Games\\FALCOM\\ed8_2}}" +"The Legend of Heroes: Trails of Cold Steel III": gog: 1189175006 pageId: 155285 steam: 991270 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\TrailsOfColdSteel3\settings.xml}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\Saved Games\FALCOM\ed8_psv3}}' -'The Legend of Heroes: Trails of Cold Steel IV': + - "{{Game data/config|Windows|{{p|localappdata}}\\TrailsOfColdSteel3\\settings.xml}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Saved Games\\FALCOM\\ed8_psv3}}" +"The Legend of Heroes: Trails of Cold Steel IV": gog: 1380802985 pageId: 158900 steam: 1198090 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\TrailsOfColdSteel4\settings.xml}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\Saved Games\FALCOM\ed8_psv4}}' -'The Legend of Heroes: Trails through Daybreak': + - "{{Game data/config|Windows|{{p|localappdata}}\\TrailsOfColdSteel4\\settings.xml}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Saved Games\\FALCOM\\ed8_psv4}}" +"The Legend of Heroes: Trails through Daybreak": gog: 1360901535 pageId: 177344 renamedFrom: - - 'The Legend of Heroes: Kuro no Kiseki' + - "The Legend of Heroes: Kuro no Kiseki" steam: 1811950 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Falcom\Kuro}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\Saved Games\Falcom\Kuro}}' -'The Legend of Heroes: Trails to Azure': + - "{{Game data/config|Windows|{{P|localappdata}}\\Falcom\\Kuro}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\Saved Games\\Falcom\\Kuro}}" +"The Legend of Heroes: Trails to Azure": gog: 1469465227 pageId: 166123 renamedFrom: - - 'The Legend of Heroes: Ao no Kiseki Kai' + - "The Legend of Heroes: Ao no Kiseki Kai" steam: 1668520 steamSide: - 1461920 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Falcom\Ao\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\Saved Games\FALCOM\Ao\}}' -'The Legend of Heroes: Zero no Kiseki': + - "{{Game data/config|Windows|{{p|localappdata}}\\Falcom\\Ao\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Saved Games\\FALCOM\\Ao\\}}" +"The Legend of Heroes: Zero no Kiseki": pageId: 159003 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/saves|Windows|{{p|game}}\savefile\}}' + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\savefile\\}}" The Legend of Korra: pageId: 20411 steam: 281690 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Korra\SystemData.dat}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Korra\GameData.dat}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Korra\\SystemData.dat}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Korra\\GameData.dat}}" The Legend of Kyrandia: gog: 1207659683 pageId: 11242 renamedFrom: - Legend of Kyrandia templates: - - '{{Game data/config|DOS|{{p|game}}\WWSETUP.CFG}}' - - '{{Game data/saves|DOS|{{p|game}}\_KYRA???.SAV}}' -'The Legend of Kyrandia: Hand of Fate': + - "{{Game data/config|DOS|{{p|game}}\\WWSETUP.CFG}}" + - "{{Game data/saves|DOS|{{p|game}}\\_KYRA???.SAV}}" +"The Legend of Kyrandia: Hand of Fate": gog: 1207659813 pageId: 32282 renamedFrom: - - 'Legend of Kyrandia: Hand of Fate' + - "Legend of Kyrandia: Hand of Fate" templates: - - '{{Game data/config|DOS|{{p|game}}\HOF.CFG}}' - - '{{Game data/saves|DOS|{{p|game}}\FATE_???.SAV}}' -'The Legend of Kyrandia: Malcolm''s Revenge': + - "{{Game data/config|DOS|{{p|game}}\\HOF.CFG}}" + - "{{Game data/saves|DOS|{{p|game}}\\FATE_???.SAV}}" +"The Legend of Kyrandia: Malcolm's Revenge": gog: 1207659823 pageId: 32401 renamedFrom: - - 'Legend of Kyrandia: Malcolm''s Revenge' + - "Legend of Kyrandia: Malcolm's Revenge" templates: - - '{{Game data/config|DOS|{{p|game}}\PLAYER.INI}}' - - '{{Game data/saves|DOS|{{p|game}}\MALC_???.SAV}}' + - "{{Game data/config|DOS|{{p|game}}\\PLAYER.INI}}" + - "{{Game data/saves|DOS|{{p|game}}\\MALC_???.SAV}}" The Legend of Monster Mountain: pageId: 104539 steam: 877960 -'The Legend of Nayuta: Boundless Trails': +"The Legend of Nayuta: Boundless Trails": gog: 2049140871 pageId: 170939 steam: 1668530 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Nayuta\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\Saved Games\FALCOM\Nayuta\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Nayuta\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Saved Games\\FALCOM\\Nayuta\\}}" The Legend of Protey: pageId: 104611 steam: 913970 @@ -169655,42 +165001,42 @@ The Legend of Three Kingdoms: pageId: 161500 steam: 1437820 templates: - - '{{Game data/saves|Windows|{{p|game}}\SAVES}}' + - "{{Game data/saves|Windows|{{p|game}}\\SAVES}}" The Legend of Three Kingdoms 2: pageId: 161503 steam: 1437830 templates: - - '{{Game data/saves|Windows|{{p|game}}\SAVES}}' + - "{{Game data/saves|Windows|{{p|game}}\\SAVES}}" The Legend of Three Kingdoms 3: pageId: 161523 steam: 1437840 templates: - - '{{Game data/config|Windows|{{p|game}}\Save}}' - - '{{Game data/saves|Windows|{{p|game}}\Save}}' + - "{{Game data/config|Windows|{{p|game}}\\Save}}" + - "{{Game data/saves|Windows|{{p|game}}\\Save}}" The Legend of Three Kingdoms 4: pageId: 161547 steam: 1437850 templates: - - '{{Game data/config|Windows|{{p|game}}\Save}}' - - '{{Game data/saves|Windows|{{p|game}}\Save}}' + - "{{Game data/config|Windows|{{p|game}}\\Save}}" + - "{{Game data/saves|Windows|{{p|game}}\\Save}}" The Legend of Three Kingdoms 5: pageId: 161555 steam: 1437860 templates: - - '{{Game data/config|Windows|{{p|game}}\Save}}' - - '{{Game data/saves|Windows|{{p|game}}\Save}}' + - "{{Game data/config|Windows|{{p|game}}\\Save}}" + - "{{Game data/saves|Windows|{{p|game}}\\Save}}" The Legend of Three Kingdoms 6: pageId: 161558 steam: 1437870 templates: - - '{{Game data/config|Windows|{{p|game}}\Save}}' - - '{{Game data/saves|Windows|{{p|game}}\Save}}' + - "{{Game data/config|Windows|{{p|game}}\\Save}}" + - "{{Game data/saves|Windows|{{p|game}}\\Save}}" The Legend of Three Kingdoms 7: pageId: 161559 steam: 1437880 templates: - - '{{Game data/config|Windows|{{p|game}}\Save}}' - - '{{Game data/saves|Windows|{{p|game}}\Save}}' + - "{{Game data/config|Windows|{{p|game}}\\Save}}" + - "{{Game data/saves|Windows|{{p|game}}\\Save}}" The Legend of Tianding: pageId: 172735 steam: 1406850 @@ -169699,22 +165045,22 @@ The Legend of Tianding: - 1796880 - 1803940 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\CGCG\Zebra\}}' - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\CGCG\Zebra\*.sav}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\CGCG\\Zebra\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\CGCG\\Zebra\\*.sav}}" The Legend of Tobimaru: pageId: 145363 steam: 1133510 The Legend of Viccess: pageId: 149303 steam: 1102210 -'The Legend of Zelda: Ocarina of Time (Ship of Harkinian)': +"The Legend of Zelda: Ocarina of Time (Ship of Harkinian)": pageId: 178166 renamedFrom: - - 'The Legend of Zelda: Ocarina of Time' - - 'The Legend of Zelda: Ocarina of Time (Ship of Harkinian/unofficial PC port)' + - "The Legend of Zelda: Ocarina of Time" + - "The Legend of Zelda: Ocarina of Time (Ship of Harkinian/unofficial PC port)" templates: - - '{{Game data/config|Windows|{{P|game}}\shipofharkinian.json}}' - - '{{Game data/saves|Windows|{{P|game}}\Save\fileX.sav}}' + - "{{Game data/config|Windows|{{P|game}}\\shipofharkinian.json}}" + - "{{Game data/saves|Windows|{{P|game}}\\Save\\fileX.sav}}" The Legend of the Dragonflame High School: pageId: 68394 steam: 696910 @@ -169723,7 +165069,7 @@ The Legend of the Dragonflame High School 2: renamedFrom: - 龍炎高校伝説2 The Legend of the Dragonflame High School 2 steam: 1032040 -'The Legend: A University Story': +"The Legend: A University Story": pageId: 42025 steam: 431360 The Legendary Blacksmith: @@ -169741,7 +165087,7 @@ The Legends of Class one 嗨哥一班大冒险: The Legends of Owlia: pageId: 56098 steam: 569590 -'The Legion: FringeBound': +"The Legion: FringeBound": pageId: 136380 steam: 1064960 The Legions of Rome: @@ -169751,40 +165097,30 @@ The Lego Movie 2 Videogame: pageId: 128961 steam: 881320 templates: - - >- - {{Game data/config|Windows|{{p|appdata}}\Warner Bros. Interactive Entertainment\LEGO The LEGO Movie - 2\PCCONFIG.TXT}} - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Feral Interactive/The LEGO Movie 2/}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Warner Bros. Interactive Entertainment\LEGO The LEGO Movie 2\SAVEDGAMES}}' - - >- - {{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Feral Interactive/The LEGO Movie - 2/SaveData/SAVEDGAMES/}} + - "{{Game data/config|Windows|{{p|appdata}}\\Warner Bros. Interactive Entertainment\\LEGO The LEGO Movie 2\\PCCONFIG.TXT}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Feral Interactive/The LEGO Movie 2/}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Warner Bros. Interactive Entertainment\\LEGO The LEGO Movie 2\\SAVEDGAMES}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Feral Interactive/The LEGO Movie 2/SaveData/SAVEDGAMES/}}" The Lego Movie Videogame: pageId: 20880 steam: 267530 templates: - - '{{Game data/config|Windows|{{P|appdata}}\ttales\The LEGO Movie - Videogame\}}' - - '{{Game data/config|OS X|{{P|osxhome}}/Library/Application Support/Feral Interactive/The LEGO Movie/}}' - - '{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/Feral Interactive/The LEGO Movie/SaveData/}}' - - '{{Game data/saves|Steam|{{P|steam}}\userdata\{{P|uid}}\267530\savedgames\}}' + - "{{Game data/config|Windows|{{P|appdata}}\\ttales\\The LEGO Movie - Videogame\\}}" + - "{{Game data/config|OS X|{{P|osxhome}}/Library/Application Support/Feral Interactive/The LEGO Movie/}}" + - "{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/Feral Interactive/The LEGO Movie/SaveData/}}" + - "{{Game data/saves|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\267530\\savedgames\\}}" The Lego Ninjago Movie Video Game: pageId: 69377 steam: 640590 templates: - - >- - {{Game data/config|Windows|{{p|appdata}}\Warner Bros. Interactive Entertainment\The LEGO Ninjago Movie Video - Game\PCCONFIG.TXT}} - - '{{Game data/saves|Windows|{{p|steam}}\userdata\{{P|uid}}\640590\remote\savedgames\}}' + - "{{Game data/config|Windows|{{p|appdata}}\\Warner Bros. Interactive Entertainment\\The LEGO Ninjago Movie Video Game\\PCCONFIG.TXT}}" + - "{{Game data/saves|Windows|{{p|steam}}\\userdata\\{{P|uid}}\\640590\\remote\\savedgames\\}}" The Leisure of Grisaia: pageId: 33693 steam: 460160 templates: - - >- - {{Game data/config|Windows|{{p|appdata}}\Frontwing\The Fruit of Grisaia -The Leisure of Grisaia-\*.dat | - {{p|appdata}}\フロントウイング\グリザイアの果実 ~グリザイアの有閑~\*.dat}} - - >- - {{Game data/saves|Windows|{{p|appdata}}\Frontwing\The Fruit of Grisaia -The Leisure of Grisaia-\*.dat | - {{p|appdata}}\フロントウイング\グリザイアの果実 ~グリザイアの有閑~\*.dat}} + - "{{Game data/config|Windows|{{p|appdata}}\\Frontwing\\The Fruit of Grisaia -The Leisure of Grisaia-\\*.dat | {{p|appdata}}\\フロントウイング\\グリザイアの果実 ~グリザイアの有閑~\\*.dat}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Frontwing\\The Fruit of Grisaia -The Leisure of Grisaia-\\*.dat | {{p|appdata}}\\フロントウイング\\グリザイアの果実 ~グリザイアの有閑~\\*.dat}}" The Leopard Catgirl in Miaoli: pageId: 148675 steam: 1149510 @@ -169794,7 +165130,7 @@ The Letter: - The Letter - Horror Visual Novel steam: 460430 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Yangyang Mobile\The Letter\State\*}}' + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Yangyang Mobile\\The Letter\\State\\*}}" The Lewd Knight: pageId: 145467 steam: 1129520 @@ -169807,17 +165143,15 @@ The Life and Suffering of Sir Brante: steamSide: - 1460090 templates: - - >- - {{Game data/config|Windows|{{P|userprofile\appdata\locallow}}\SEVER\The Life and Suffering of Sir - Brante\GameSettings.txt|{{P|hkcu}}\SOFTWARE\SEVER\The Life and Suffering of Sir Brante\}} - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\SEVER\The Life and Suffering of Sir Brante\Saves\}}' + - "{{Game data/config|Windows|{{P|userprofile\\appdata\\locallow}}\\SEVER\\The Life and Suffering of Sir Brante\\GameSettings.txt|{{P|hkcu}}\\SOFTWARE\\SEVER\\The Life and Suffering of Sir Brante\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\SEVER\\The Life and Suffering of Sir Brante\\Saves\\}}" The Life of Greather: pageId: 36794 steam: 503830 The Life of One Dog: pageId: 114316 steam: 939390 -The Life's Lane: +"The Life's Lane": pageId: 98530 steam: 874640 The Lift: @@ -169827,7 +165161,7 @@ The Light Brigade: pageId: 188059 steam: 1579880 templates: - - '{{Game data/saves|Windows|{{p|programfiles}}\Steam\steamapps\common\The Light Brigade\saves}}' + - "{{Game data/saves|Windows|{{p|programfiles}}\\Steam\\steamapps\\common\\The Light Brigade\\saves}}" The Light Empire: pageId: 45433 steam: 416220 @@ -169835,30 +165169,30 @@ The Light Keeps Us Safe: pageId: 105323 steam: 853240 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\Big Robot Ltd\The Light Keeps Us Safe\Settings}}' - - '{{Game data/saves|Windows|{{p|steam}}\userdata\{{p|uid}}\853240\remote\}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Big Robot Ltd\\The Light Keeps Us Safe\\Settings}}" + - "{{Game data/saves|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\853240\\remote\\}}" The Light Remake: pageId: 151026 renamedFrom: - The Light steam: 1077520 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\SOFTWARE\NSS\Light Remake}}' - - '{{Game data/saves|Windows|{{P|hkcu}}\SOFTWARE\NSS\Light Remake}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\SOFTWARE\\NSS\\Light Remake}}" + - "{{Game data/saves|Windows|{{P|hkcu}}\\SOFTWARE\\NSS\\Light Remake}}" The Lightbringer: gog: 1704584092 pageId: 172797 steam: 1561660 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Rock Square Thunder\Lightbringer}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Rock Square Thunder\Lightbringer\DataSaves}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Rock Square Thunder\\Lightbringer}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Rock Square Thunder\\Lightbringer\\DataSaves}}" The Lightbringers: pageId: 172799 steam: 644860 The Lighthouse: pageId: 66297 steam: 661450 -'The Lighthouse: VR Escape Room': +"The Lighthouse: VR Escape Room": pageId: 137360 steam: 957270 The Line: @@ -169869,39 +165203,37 @@ The Lion King: pageId: 79095 steam: 561120 templates: - - '{{Game data/config|DOS|{{p|game}}\LIONKING.CFG}}' -'The Lion King II: Simba''s Pride - Active Play': + - "{{Game data/config|DOS|{{p|game}}\\LIONKING.CFG}}" +"The Lion King II: Simba's Pride - Active Play": pageId: 171831 -'The Lion King II: Simba''s Pride GameBreak!': +"The Lion King II: Simba's Pride GameBreak!": pageId: 148227 templates: - - '{{Game data/config|Windows|{{p|hklm}}\SOFTWARE\{{p|wow64}}\Disney Interactive\SPAG**}}' - - '{{Game data/saves|Windows|{{p|game}}}}' -The Lion's Song: + - "{{Game data/config|Windows|{{p|hklm}}\\SOFTWARE\\{{p|wow64}}\\Disney Interactive\\SPAG**}}" + - "{{Game data/saves|Windows|{{p|game}}}}" +"The Lion's Song": gog: 1740490644 pageId: 37156 steam: 437160 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Mipumi\TLS\options.bin}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Mipumi\TLS\*.save}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Mipumi\\TLS\\options.bin}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Mipumi\\TLS\\*.save}}" The Little Acre: gog: 1950015716 pageId: 52119 steam: 423590 templates: - - >- - {{Game data/config|Windows|{{p|hkcu}}\Software\Curve Digital\The Little Acre\|{{p|userprofile\Documents}}\My - Games\TheLittleAcre\}} - - '{{Game data/config|Steam|{{p|steam}}\userdata\{{p|uid}}\423590\remote\settings.dat}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\TheLittleAcre\SaveGames\}}' - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\423590\remote\save_games\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Curve Digital\\The Little Acre\\|{{p|userprofile\\Documents}}\\My Games\\TheLittleAcre\\}}" + - "{{Game data/config|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\423590\\remote\\settings.dat}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\TheLittleAcre\\SaveGames\\}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\423590\\remote\\save_games\\}}" The Little Ball That Could: pageId: 69354 steam: 686450 The Little Crane That Could: pageId: 48086 steam: 361430 -'The Little Mermaid II: Return to the Sea': +"The Little Mermaid II: Return to the Sea": pageId: 166636 The Little Prince VR: pageId: 73019 @@ -169941,24 +165273,22 @@ The Long Dark: pageId: 27227 steam: 305620 steamSide: - - 2091330 - - 2095000 - 690180 - 1328170 + - 2091330 + - 2095000 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Hinterland\TheLongDark\}}' - - >- - {{Game data/config|Microsoft - Store|{{p|localappdata}}\Packages\27620HinterlandStudio.30233944AADE4_y1bt56c4151zw\SystemAppData\wgs}} - - '{{Game data/config|Linux|{{p|xdgdatahome}}/Hinterland/TheLongDark/}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Hinterland\TheLongDark\}}' - - '{{Game data/saves|Linux|{{p|xdgdatahome}}/Hinterland/TheLongDark/}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Hinterland\\TheLongDark\\}}" + - "{{Game data/config|Microsoft Store|{{p|localappdata}}\\Packages\\27620HinterlandStudio.30233944AADE4_y1bt56c4151zw\\SystemAppData\\wgs}}" + - "{{Game data/config|Linux|{{p|xdgdatahome}}/Hinterland/TheLongDark/}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Hinterland\\TheLongDark\\}}" + - "{{Game data/saves|Linux|{{p|xdgdatahome}}/Hinterland/TheLongDark/}}" The Long Drive: pageId: 149498 steam: 1017180 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\TheLongDrive}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\TheLongDrive\Saves}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\TheLongDrive}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\TheLongDrive\\Saves}}" The Long Gate: pageId: 154297 steam: 1147110 @@ -169967,21 +165297,19 @@ The Long Journey Home: pageId: 39227 steam: 366910 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\tljh\Saved\Config\WindowsNoEditor}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\tljh\\Saved\\Config\\WindowsNoEditor}}" The Long Reach: gog: 1098355601 pageId: 64906 steam: 584990 templates: - - >- - {{Game data/config|Windows|{{P|userprofile}}\AppData\LocalLow\The Long Reach Team\The Long - Reach\tlr_configuration_0001.sav|{{P|hkcu}}\Software\The Long Reach Team\The Long Reach\}} - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\The Long Reach Team\The Long Reach\}}' + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\The Long Reach Team\\The Long Reach\\tlr_configuration_0001.sav|{{P|hkcu}}\\Software\\The Long Reach Team\\The Long Reach\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\The Long Reach Team\\The Long Reach\\}}" The Long Return: pageId: 135801 steam: 937300 templates: - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\Max Nielsen\The Long Return}}' + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\Max Nielsen\\The Long Return}}" The Long Road Back: pageId: 190526 The Longest Five Minutes: @@ -169994,8 +165322,8 @@ The Longest Journey: steamSide: - 6320 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Funcom\TLJ|{{p|game}}\}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Funcom\TLJ|{{p|game}}\Save|{{p|appdata}}\The Longest Journey\Save}}' + - "{{Game data/config|Windows|{{p|appdata}}\\Funcom\\TLJ|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Funcom\\TLJ|{{p|game}}\\Save|{{p|appdata}}\\The Longest Journey\\Save}}" The Longest Road on Earth: gog: 1840466867 pageId: 167175 @@ -170005,15 +165333,15 @@ The Longing: pageId: 109340 steam: 893850 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Studio Seufz\The Longing\}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Studio Seufz\The Longing\saveData.txt}}' - - '{{Game data/saves|Linux|.config/unity3d/Studio Seufz/The Longing}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Studio Seufz\\The Longing\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Studio Seufz\\The Longing\\saveData.txt}}" + - "{{Game data/saves|Linux|.config/unity3d/Studio Seufz/The Longing}}" The Looker: pageId: 178375 steam: 1985690 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Subcreation\The Looker}}' - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Subcreation\The Looker\savegame.lkr}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Subcreation\\The Looker}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Subcreation\\The Looker\\savegame.lkr}}" The Loop VR: pageId: 93319 steam: 636270 @@ -170028,21 +165356,19 @@ The Lord of the Rings Online: pageId: 87 steam: 212500 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\The Lord of the Rings Online\}}' -'The Lord of the Rings: Adventure Card Game': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\The Lord of the Rings Online\\}}" +"The Lord of the Rings: Adventure Card Game": pageId: 78661 steam: 509580 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Fantasy Flight Games\The Lord of the Rings - Adventure Card Game\}}' - - >- - {{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Fantasy Flight Games\The Lord of the Rings - - Adventure Card Game\Saves\}} -'The Lord of the Rings: Conquest': + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Fantasy Flight Games\\The Lord of the Rings - Adventure Card Game\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Fantasy Flight Games\\The Lord of the Rings - Adventure Card Game\\Saves\\}}" +"The Lord of the Rings: Conquest": pageId: 17802 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\The Lord of the Rings - Conquest\pc.ini}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\The Lord of the Rings - Conquest\{{p|uid}}_Save.dat}}' -'The Lord of the Rings: Gollum': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\The Lord of the Rings - Conquest\\pc.ini}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\The Lord of the Rings - Conquest\\{{p|uid}}_Save.dat}}" +"The Lord of the Rings: Gollum": gog: 1274606571 gogSide: - 1648255573 @@ -170055,63 +165381,55 @@ The Lord of the Rings Online: - 2374462 - 2374463 templates: - - >- - {{Game data/config|Windows|{{P|localappdata}}\Daedalic Entertainment - GmbH\Gollum\Saved\Config\WindowsNoEditor\|{{P|localappdata}}\Daedalic Entertainment - GmbH\Gollum\Saved\{{P|uid}}\SaveGames\}} - - '{{Game data/saves|Windows|{{P|localappdata}}\Daedalic Entertainment GmbH\Gollum\Saved\{{P|uid}}\SaveGames\}}' -'The Lord of the Rings: Journeys in Middle-earth': + - "{{Game data/config|Windows|{{P|localappdata}}\\Daedalic Entertainment GmbH\\Gollum\\Saved\\Config\\WindowsNoEditor\\|{{P|localappdata}}\\Daedalic Entertainment GmbH\\Gollum\\Saved\\{{P|uid}}\\SaveGames\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Daedalic Entertainment GmbH\\Gollum\\Saved\\{{P|uid}}\\SaveGames\\}}" +"The Lord of the Rings: Journeys in Middle-earth": pageId: 128553 steam: 1003400 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Fantasy Flight Games\Journeys in Middle-earth\}}' -'The Lord of the Rings: Return to Moria': + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Fantasy Flight Games\\Journeys in Middle-earth\\}}" +"The Lord of the Rings: Return to Moria": pageId: 187786 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Moria\Saved\Config\WindowsNoEditor}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\Moria\Saved\SaveGames}}' -'The Lord of the Rings: The Battle for Middle-earth': + - "{{Game data/config|Windows|{{P|localappdata}}\\Moria\\Saved\\Config\\WindowsNoEditor}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Moria\\Saved\\SaveGames}}" +"The Lord of the Rings: The Battle for Middle-earth": pageId: 22941 templates: - - '{{Game data/config|Windows|{{p|appdata}}\My Battle for Middle-earth Files\}}' - - '{{Game data/saves|Windows|{{p|appdata}}\My Battle for Middle-earth Files\}}' -'The Lord of the Rings: The Battle for Middle-earth II': + - "{{Game data/config|Windows|{{p|appdata}}\\My Battle for Middle-earth Files\\}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\My Battle for Middle-earth Files\\}}" +"The Lord of the Rings: The Battle for Middle-earth II": pageId: 22966 templates: - - >- - {{Game data/config|Windows|{{p|appdata}}\{{LocalizedPath|My Battle for Middle-earth(tm) II - Files}}\options.ini|{{p|appdata}}\{{LocalizedPath|My The Lord of the Rings, The Rise of the Witch-king - Files}}\options.ini}} - - >- - {{Game data/saves|Windows|{{p|appdata}}\{{LocalizedPath|My Battle for Middle-earth(tm) II - Files}}\save|{{p|appdata}}\{{LocalizedPath|My The Lord of the Rings, The Rise of the Witch-king Files}}\save}} -'The Lord of the Rings: The Fellowship of the Ring (2002)': + - "{{Game data/config|Windows|{{p|appdata}}\\{{LocalizedPath|My Battle for Middle-earth(tm) II Files}}\\options.ini|{{p|appdata}}\\{{LocalizedPath|My The Lord of the Rings, The Rise of the Witch-king Files}}\\options.ini}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\{{LocalizedPath|My Battle for Middle-earth(tm) II Files}}\\save|{{p|appdata}}\\{{LocalizedPath|My The Lord of the Rings, The Rise of the Witch-king Files}}\\save}}" +"The Lord of the Rings: The Fellowship of the Ring (2002)": pageId: 22963 templates: - - '{{Game data/saves|Windows|{{p|game}}\Saves\}}' -'The Lord of the Rings: The Return of the King': + - "{{Game data/saves|Windows|{{p|game}}\\Saves\\}}" +"The Lord of the Rings: The Return of the King": pageId: 20183 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\{{LocalizedPath|LOTR Return of the King Data}}\ROTK.ini}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\{{LocalizedPath|LOTR Return of the King Data}}\}}' -'The Lord of the Rings: War in the North': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\{{LocalizedPath|LOTR Return of the King Data}}\\ROTK.ini}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\{{LocalizedPath|LOTR Return of the King Data}}\\}}" +"The Lord of the Rings: War in the North": pageId: 12090 steam: 32800 templates: - - '{{Game data/config|Windows|{{P|steam}}\userdata\{{P|uid}}\32800\local\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\WB Games\War in the North\*.sav}}' -'The Lord of the Rings: War of the Ring': + - "{{Game data/config|Windows|{{P|steam}}\\userdata\\{{P|uid}}\\32800\\local\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\WB Games\\War in the North\\*.sav}}" +"The Lord of the Rings: War of the Ring": pageId: 22965 templates: - - '{{Game data/config|Windows|{{p|game}}\Rings.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\Saves\}}' + - "{{Game data/config|Windows|{{p|game}}\\Rings.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\Saves\\}}" The Lords of Midnight: gog: 1207659333 pageId: 131840 templates: - - '{{Game data/config|Windows|{{p|game}}\settings.cfg}}' - - '{{Game data/saves|DOS|{{p|game}}\LOM-*.GAM}}' - - '{{Game data/saves|Windows|{{p|game}}\story\}}' + - "{{Game data/config|Windows|{{p|game}}\\settings.cfg}}" + - "{{Game data/saves|DOS|{{p|game}}\\LOM-*.GAM}}" + - "{{Game data/saves|Windows|{{p|game}}\\story\\}}" The Lords of the Earth Flame: pageId: 38661 steam: 487180 @@ -170123,7 +165441,7 @@ The Lost Admiral: The Lost And Forgotten: pageId: 100518 steam: 883960 -'The Lost Battalion: All Out Warfare': +"The Lost Battalion: All Out Warfare": pageId: 48124 steam: 364890 The Lost Brewery: @@ -170139,52 +165457,52 @@ The Lost Crown: pageId: 50121 steam: 291710 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\SOFTWARE\DarklingRoom\TheLostCrown}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\Saved Games\The Lost Crown}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\SOFTWARE\\DarklingRoom\\TheLostCrown}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Saved Games\\The Lost Crown}}" The Lost Dungeon Of Knight: pageId: 144801 steam: 1147620 -'The Lost Files of Sherlock Holmes: Case of the Rose Tattoo': +"The Lost Files of Sherlock Holmes: Case of the Rose Tattoo": pageId: 69110 templates: - - '{{Game data/config|DOS|{{p|game}}\MYTHOS.CFG}}' - - '{{Game data/saves|DOS|{{p|game}}\HOLMES2.SAV}}' -'The Lost Files of Sherlock Holmes: The Case of the Serrated Scalpel': + - "{{Game data/config|DOS|{{p|game}}\\MYTHOS.CFG}}" + - "{{Game data/saves|DOS|{{p|game}}\\HOLMES2.SAV}}" +"The Lost Files of Sherlock Holmes: The Case of the Serrated Scalpel": pageId: 68782 templates: - - '{{Game data/config|DOS|{{p|game}}\HOLMES.CFG}}' - - '{{Game data/saves|DOS|{{p|game}}\HOLMES.SAV}}' + - "{{Game data/config|DOS|{{p|game}}\\HOLMES.CFG}}" + - "{{Game data/saves|DOS|{{p|game}}\\HOLMES.SAV}}" The Lost Gardens: pageId: 74447 steam: 734700 The Lost Goblin Tower: pageId: 121643 steam: 973140 -'The Lost Heir 2: Forging a Kingdom': +"The Lost Heir 2: Forging a Kingdom": pageId: 44762 steam: 439750 -'The Lost Heir 3: Demon War': +"The Lost Heir 3: Demon War": pageId: 59347 steam: 596540 -'The Lost Heir: The Fall of Daria': +"The Lost Heir: The Fall of Daria": pageId: 44754 steam: 439770 The Lost Island: pageId: 45541 steam: 416260 -'The Lost Island:Battle Royale': +"The Lost Island:Battle Royale": pageId: 151645 steam: 1147270 The Lost Joystick: pageId: 78457 steam: 766810 -'The Lost Legends of Redwall: Escape the Gloomer': +"The Lost Legends of Redwall: Escape the Gloomer": pageId: 121875 steam: 930630 -'The Lost Legends of Redwall: The Scout Act I': +"The Lost Legends of Redwall: The Scout Act I": pageId: 65136 renamedFrom: - - 'The Lost Legends of Redwall: The Scout' + - "The Lost Legends of Redwall: The Scout" steam: 656030 The Lost Light of Sisu: pageId: 128124 @@ -170251,42 +165569,40 @@ The Madness of Little Emma: pageId: 38027 steam: 418150 templates: - - '{{Game data/config|Linux|{{p|linuxhome}}/.steam/steam/steamapps/common/The Madness of Little Emma/settings}}' + - "{{Game data/config|Linux|{{p|linuxhome}}/.steam/steam/steamapps/common/The Madness of Little Emma/settings}}" The Maestros: pageId: 80651 steam: 553560 -The Mage's Tale: +"The Mage's Tale": pageId: 90010 steam: 766320 -'The Mageseeker: A League of Legends Story': +"The Mageseeker: A League of Legends Story": gog: 1235880313 pageId: 186743 steam: 1457080 templates: - - '{{Game data/config|Windows|{{P|userprofile}}\AppData\LocalLow\DigitalSun\The Mageseeker\settings.data}}' - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\DigitalSun\The Mageseeker\*.data}}' + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\DigitalSun\\The Mageseeker\\settings.data}}" + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\DigitalSun\\The Mageseeker\\*.data}}" The Magic Circle: pageId: 37672 steam: 323380 templates: - - >- - {{Game data/config|Windows|{{p|hkcu}}\Software\Question\The Magic Circle\|{{P|appdata}}\Question\The Magic - Circle\{{P|uid}}\}} - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Question/The Magic Circle/{{P|uid}}/}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Question/The Magic Circle/{{P|uid}}/}}' - - '{{Game data/saves|Windows|{{P|appdata}}\Question\The Magic Circle\{{P|uid}}\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Question/The Magic Circle/{{P|uid}}/}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Question/The Magic Circle/{{P|uid}}/}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Question\\The Magic Circle\\|{{P|appdata}}\\Question\\The Magic Circle\\{{P|uid}}\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Question/The Magic Circle/{{P|uid}}/}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Question/The Magic Circle/{{P|uid}}/}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\Question\\The Magic Circle\\{{P|uid}}\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Question/The Magic Circle/{{P|uid}}/}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Question/The Magic Circle/{{P|uid}}/}}" The Magical Silence: pageId: 33728 steam: 474820 -The Magician's Burden: +"The Magician's Burden": pageId: 104661 steam: 884430 -The Magician's Research: +"The Magician's Research": pageId: 148889 steam: 1155120 -The Magician's Workshop: +"The Magician's Workshop": pageId: 156143 steam: 1174830 The Magister: @@ -170302,26 +165618,26 @@ The Magnificent Trufflepigs: The Mahjong Huntress: pageId: 42918 steam: 474910 -The Maid-san's Caving Adventure: +"The Maid-san's Caving Adventure": pageId: 63604 steam: 644530 The Majesty of Colors Remastered: pageId: 64079 steam: 632880 -The Maker's Eden: +"The Maker's Eden": pageId: 22021 steam: 313360 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Screwy Lightbulb Entertainment\The Maker''s Eden}}' - - '{{Game data/saves|Windows|{{p|hkcu}}\Software\Screwy Lightbulb Entertainment\The Maker''s Eden}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Screwy Lightbulb Entertainment\\The Maker's Eden}}" + - "{{Game data/saves|Windows|{{p|hkcu}}\\Software\\Screwy Lightbulb Entertainment\\The Maker's Eden}}" The Making of Karateka: gog: 1697504638 pageId: 190001 steam: 1163060 -'The Mammoth: A Cave Painting': +"The Mammoth: A Cave Painting": pageId: 76139 steam: 751690 -'The Man in the Cape: Special Edition': +"The Man in the Cape: Special Edition": pageId: 70685 steam: 706480 The Man with the Dog: @@ -170347,8 +165663,8 @@ The Mansion (Triority): - The Mansion steam: 893360 templates: - - '{{Game data/config|Windows|{{p|game}}\renpy\config.py}}' - - '{{Game data/saves|Windows|{{P|appdata}}\renpy\TheMansion-1518382168\|{{p|game}}\game\saves\}}' + - "{{Game data/config|Windows|{{p|game}}\\renpy\\config.py}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\renpy\\TheMansion-1518382168\\|{{p|game}}\\game\\saves\\}}" The Mark of Robot: pageId: 112440 steam: 932870 @@ -170371,12 +165687,10 @@ The Marvellous Miss Take: pageId: 20998 steam: 327310 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\The Marvellous Miss Take\|{{p|localappdata}}\Turbulenz\The - Marvellous Miss Take\static-cache\}} - - '{{Game data/config|Steam|{{p|steam}}\userdata\{{p|uid}}\327310\local\static-cache}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\The Marvellous Miss Take\}}' - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\327310\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\The Marvellous Miss Take\\|{{p|localappdata}}\\Turbulenz\\The Marvellous Miss Take\\static-cache\\}}" + - "{{Game data/config|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\327310\\local\\static-cache}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\The Marvellous Miss Take\\}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\327310\\}}" The Masked Mage: pageId: 121582 steam: 953750 @@ -170390,32 +165704,32 @@ The Masterplan: pageId: 34358 steam: 313080 templates: - - '{{Game data/config|Windows|{{P|appdata}}\Shark Punch\The Masterplan\}}' - - '{{Game data/saves|Windows|{{P|appdata}}\Shark Punch\The Masterplan\}}' + - "{{Game data/config|Windows|{{P|appdata}}\\Shark Punch\\The Masterplan\\}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\Shark Punch\\The Masterplan\\}}" The Matrix Online: pageId: 160925 templates: - - '{{Game data/config|Windows|{{p|game}}}}' -'The Matrix: Path of Neo': + - "{{Game data/config|Windows|{{p|game}}}}" +"The Matrix: Path of Neo": pageId: 27561 templates: - - '{{Game data/config|Windows|{{p|game}}\MatrixConfig.ini}}' - - '{{Game data/saves|Windows|{{P|game}}\saved\}}' + - "{{Game data/config|Windows|{{p|game}}\\MatrixConfig.ini}}" + - "{{Game data/saves|Windows|{{P|game}}\\saved\\}}" The Maw: pageId: 15603 steam: 26000 The Maze of Horror: pageId: 148455 steam: 1170560 -'The Maze: Endless Nightmare': +"The Maze: Endless Nightmare": pageId: 57584 steam: 580970 The Mean Greens - Plastic Warfare: pageId: 30074 steam: 360940 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\TheMeanGreens\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\TheMeanGreens\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\TheMeanGreens\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\TheMeanGreens\\Saved\\SaveGames\\}}" The Mechanical Room VR: pageId: 63704 steam: 652900 @@ -170427,14 +165741,10 @@ The Medium: pageId: 160125 steam: 1293160 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Medium\Saved\Config\WindowsNoEditor\}}' - - >- - {{Game data/config|Microsoft - Store|{{p|localappdata}}\Packages\3951BlooberTeamS.A.TheMedium_myqva651hxz16\LocalCache\Local\Medium\Saved\Config\WinGDK\}} - - '{{Game data/saves|Windows|{{P|localappdata}}\Medium\Saved\SaveGames\}}' - - >- - {{Game data/saves|Microsoft - Store|{{P|localappdata}}\Packages\3951BlooberTeamS.A.TheMedium_myqva651hxz16\SystemAppData\wgs}} + - "{{Game data/config|Windows|{{P|localappdata}}\\Medium\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/config|Microsoft Store|{{p|localappdata}}\\Packages\\3951BlooberTeamS.A.TheMedium_myqva651hxz16\\LocalCache\\Local\\Medium\\Saved\\Config\\WinGDK\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Medium\\Saved\\SaveGames\\}}" + - "{{Game data/saves|Microsoft Store|{{P|localappdata}}\\Packages\\3951BlooberTeamS.A.TheMedium_myqva651hxz16\\SystemAppData\\wgs}}" The Meldstorm: pageId: 157132 steam: 1220300 @@ -170447,10 +165757,10 @@ The Melody of Grisaia: The Memory of Eldurim: pageId: 50673 steam: 268670 -'The Men of Yoshiwara: Kikuya': +"The Men of Yoshiwara: Kikuya": pageId: 38239 steam: 381100 -'The Men of Yoshiwara: Ohgiya': +"The Men of Yoshiwara: Ohgiya": pageId: 43508 steam: 447200 The Mercenary Rise: @@ -170467,20 +165777,18 @@ The Messenger: pageId: 79960 steam: 764790 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Sabotage Studio\The Messenger\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Sabotage Studio\The Messenger\SaveGame.txt}}' - - >- - {{Game data/saves|Microsoft - Store|{{p|localappdata}}\Packages\DevolverDigital.TheMessenger_6kzv4j18v0c96\SystemAppData\wgs}} -'The Metronomicon: Slay the Dance Floor': + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Sabotage Studio\\The Messenger\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Sabotage Studio\\The Messenger\\SaveGame.txt}}" + - "{{Game data/saves|Microsoft Store|{{p|localappdata}}\\Packages\\DevolverDigital.TheMessenger_6kzv4j18v0c96\\SystemAppData\\wgs}}" +"The Metronomicon: Slay the Dance Floor": gog: 2023488780 gogSide: + - 1094368489 + - 1170025678 - 1312439301 - 1381069348 - - 1995567033 - - 1170025678 - - 1094368489 - 1737559098 + - 1995567033 pageId: 39131 renamedFrom: - The Metronomicon @@ -170488,14 +165796,12 @@ The Messenger: steamSide: - 488050 templates: - - >- - {{Game - data/config|Windows|{{P|userprofile\Documents}}\MetronomiconSaves\Settings.*tn|{{P|userprofile\Documents}}\MetronomiconSaves\ControllerMappings*\*.mtn}} - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\MetronomiconSaves\Progress.*tn}}' + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\MetronomiconSaves\\Settings.*tn|{{P|userprofile\\Documents}}\\MetronomiconSaves\\ControllerMappings*\\*.mtn}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\MetronomiconSaves\\Progress.*tn}}" The Mexican Dream: pageId: 68865 steam: 664290 -'The Mice of Riddle Place: The Incident of Izzy Ramirez': +"The Mice of Riddle Place: The Incident of Izzy Ramirez": pageId: 68575 steam: 686660 The Midnight Sanctuary: @@ -170505,7 +165811,7 @@ The Mighty Quest for Epic Loot: pageId: 9309 steam: 239220 templates: - - '{{Game data/config|Windows|{{p|game}}\GameData\Config\Game}}' + - "{{Game data/config|Windows|{{p|game}}\\GameData\\Config\\Game}}" The Mimic: pageId: 73618 steam: 624990 @@ -170519,11 +165825,9 @@ The Mind of Marlo: pageId: 73501 steam: 722870 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\appdata\locallow}}\PointBleepStudios\Point Bleep TV\MOM\Settings | - {{p|hkcu}}\Software\PointBleepStudios\Point Bleep TV}} - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\PointBleepStudios\Point Bleep TV\MOM\}}' -The Mind's Eclipse: + - "{{Game data/config|Windows|{{p|userprofile\\appdata\\locallow}}\\PointBleepStudios\\Point Bleep TV\\MOM\\Settings | {{p|hkcu}}\\Software\\PointBleepStudios\\Point Bleep TV}}" + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\PointBleepStudios\\Point Bleep TV\\MOM\\}}" +"The Mind's Eclipse": pageId: 78697 steam: 646210 The Mine: @@ -170544,7 +165848,7 @@ The Minims: The Minotaur: pageId: 44882 steam: 412540 -'The Mirage: Illusion of Wish': +"The Mirage: Illusion of Wish": pageId: 75556 steam: 680250 The Mirror Lied: @@ -170552,9 +165856,9 @@ The Mirror Lied: pageId: 121319 steam: 828050 templates: - - '{{Game data/config|Windows|{{p|appdata}}\The Mirror Lied\}}' - - '{{Game data/saves|Windows|{{p|appdata}}\The Mirror Lied\|{{p|appdata}}\The Mirror Lied - Freebird Games\}}' -The Mirror's End: + - "{{Game data/config|Windows|{{p|appdata}}\\The Mirror Lied\\}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\The Mirror Lied\\|{{p|appdata}}\\The Mirror Lied - Freebird Games\\}}" +"The Mirror's End": pageId: 93374 steam: 853460 The Mirum: @@ -170573,7 +165877,7 @@ The Misadventures of P.B. Winterbottom: pageId: 37947 steam: 40930 templates: - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\2K Play\The Misadventures of P.B. Winterbottom}}' + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\2K Play\\The Misadventures of P.B. Winterbottom}}" The Miserable Crimson Hooded Girl: pageId: 64600 steam: 667270 @@ -170586,14 +165890,12 @@ The Miskatonic: The Missing Few: pageId: 157259 steam: 1103960 -'The Missing: J.J. Macfield and the Island of Memories': +"The Missing: J.J. Macfield and the Island of Memories": pageId: 120355 steam: 842910 templates: - - >- - {{Game data/config|Windows|{{P|userprofile}}\AppData\LocalLow\ARC SYSTEM WORKS CO_,LTD_\The - MISSING\SaveData\|{{p|hkcu}}\SOFTWARE\ARC SYSTEM WORKS CO.,LTD.\The MISSING\}} - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\ARC SYSTEM WORKS CO_,LTD_\The MISSING\SaveData\}}' + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\ARC SYSTEM WORKS CO_,LTD_\\The MISSING\\SaveData\\|{{p|hkcu}}\\SOFTWARE\\ARC SYSTEM WORKS CO.,LTD.\\The MISSING\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\ARC SYSTEM WORKS CO_,LTD_\\The MISSING\\SaveData\\}}" The Mobius Machine: pageId: 189831 steam: 2281940 @@ -170605,11 +165907,11 @@ The Moment of Silence: pageId: 34290 steam: 339840 templates: - - '{{Game data/saves|Windows|{{p|game}}\House of Tales\The Moment of Silence\savegames\}}' + - "{{Game data/saves|Windows|{{p|game}}\\House of Tales\\The Moment of Silence\\savegames\\}}" The Momo Game: pageId: 121537 steam: 954530 -'The Monk and the Warrior: The Heart of the King': +"The Monk and the Warrior: The Heart of the King": pageId: 79744 steam: 732060 The Monster: @@ -170621,10 +165923,10 @@ The Monster Breeder: The Monster Inside: pageId: 65706 steam: 665490 -The Monsters' History Book: +"The Monsters' History Book": pageId: 95571 steam: 870110 -'The Montana Chronicles: Montana''s Croatoa': +"The Montana Chronicles: Montana's Croatoa": pageId: 65202 steam: 651990 The Moon Night: @@ -170642,10 +165944,10 @@ The Mooseman: pageId: 57817 steam: 574310 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\Morteshka\Mooseman\}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Morteshka/Mooseman/prefs }}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Morteshka\Mooseman\}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Morteshka/Mooseman/mooseman_v3.save}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Morteshka\\Mooseman\\}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Morteshka/Mooseman/prefs }}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Morteshka\\Mooseman\\}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Morteshka/Mooseman/mooseman_v3.save}}" The Morgue Fissure Between Worlds: pageId: 60245 steam: 547150 @@ -170660,7 +165962,7 @@ The Mortuary Assistant: pageId: 181197 steam: 1295920 templates: - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\DarkStone Digital\The Mortuary Assistant}}' + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\DarkStone Digital\\The Mortuary Assistant}}" The Most Challenging Game: pageId: 79062 steam: 762100 @@ -170673,35 +165975,31 @@ The Movies: steamSide: - 7910 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Lionhead Studios Ltd\TheMovies\}}' - - >- - {{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Feral Interactive/The Movies - Superstar/Preferences Data}} - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\The Movies\Saved Games\}}' - - >- - {{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Feral Interactive/The Movies Superstar/Saved - Games/}} + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Lionhead Studios Ltd\\TheMovies\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Feral Interactive/The Movies Superstar/Preferences Data}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\The Movies\\Saved Games\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Feral Interactive/The Movies Superstar/Saved Games/}}" The Multidimensional Underwear Drawer: pageId: 37078 steam: 502600 -'The Multipath Adventures of Superman: Menace of Metallo': +"The Multipath Adventures of Superman: Menace of Metallo": pageId: 128830 The Mummy: pageId: 158914 templates: - - '{{Game data/config|Windows|{{p|HKLM}}\SOFTWARE\{{p|wow64}}\Rebellion\TheMummy}}' - - '{{Game data/saves|Windows|{{p|game}}\Save}}' + - "{{Game data/config|Windows|{{p|HKLM}}\\SOFTWARE\\{{p|wow64}}\\Rebellion\\TheMummy}}" + - "{{Game data/saves|Windows|{{p|game}}\\Save}}" The Mummy Demastered: gog: 1839071992 pageId: 72571 steam: 630310 templates: - - '{{Game data/config|Windows|{{p|game}}\settings.txt|{{p|hkcu}}\Software\Wayforward\Mummy\}}' - - '{{Game data/saves|Windows|{{p|game}}\slot*.save}}' + - "{{Game data/config|Windows|{{p|game}}\\settings.txt|{{p|hkcu}}\\Software\\Wayforward\\Mummy\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\slot*.save}}" The Mummy Pharaoh: pageId: 114766 steam: 948120 -'The Mummy: The Animated Series': +"The Mummy: The Animated Series": pageId: 181839 The Murder Room VR: pageId: 62994 @@ -170710,12 +166008,8 @@ The Murder of Sonic the Hedgehog: pageId: 186256 steam: 2324650 templates: - - >- - {{Game data/config|Windows|{{P|hkcu}}\Software\Sonic Social\The Murder of Sonic The - Hedgehog|{{P|userprofile\appdata\locallow}}\Sonic Social\The Murder of Sonic The Hedgehog\SaveData.data}} - - >- - {{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Sonic Social\The Murder of Sonic The - Hedgehog\SaveData.data}} + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Sonic Social\\The Murder of Sonic The Hedgehog|{{P|userprofile\\appdata\\locallow}}\\Sonic Social\\The Murder of Sonic The Hedgehog\\SaveData.data}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Sonic Social\\The Murder of Sonic The Hedgehog\\SaveData.data}}" The Museum of ThroughView: pageId: 67547 steam: 689210 @@ -170725,7 +166019,7 @@ The Music Machine: The Music Trivia Challenge: pageId: 185806 steam: 2182930 -'The Musketeers: Victoria''s Quest': +"The Musketeers: Victoria's Quest": pageId: 46799 steam: 390940 The Mutational: @@ -170744,12 +166038,12 @@ The Mysterious Cities of Gold: pageId: 12684 steam: 261940 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Ynnis Interactive\MCO - Mondes Secrets\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Ynnis Interactive\MCO - Mondes Secrets\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Ynnis Interactive\\MCO - Mondes Secrets\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Ynnis Interactive\\MCO - Mondes Secrets\\}}" The Mysterious Island: pageId: 147523 templates: - - '{{Game data/saves|Windows|{{p|game}}\Mysterious Island\Data\*.sav}}' + - "{{Game data/saves|Windows|{{p|game}}\\Mysterious Island\\Data\\*.sav}}" The Mysterious Ship: pageId: 94334 steam: 768020 @@ -170776,20 +166070,20 @@ The Mystery of the Druids: pageId: 48276 steam: 343000 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\SOFTWARE\House of Tales\Mystery of the Druids\Config}}' - - '{{Game data/saves|Windows|{{p|game}}\SAVEGAME|{{p|game}}\lastgame}}' -'The Myth Seekers 2: The Sunken City': + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\House of Tales\\Mystery of the Druids\\Config}}" + - "{{Game data/saves|Windows|{{p|game}}\\SAVEGAME|{{p|game}}\\lastgame}}" +"The Myth Seekers 2: The Sunken City": pageId: 138560 steam: 1055310 -'The Myth Seekers: The Legacy of Vulcan': +"The Myth Seekers: The Legacy of Vulcan": pageId: 67534 steam: 657040 The Nadi Project: pageId: 42782 steam: 474010 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Monkeys Tales Studio\The Nadi Project\}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Monkeys Tales Studio\The Nadi Project\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Monkeys Tales Studio\\The Nadi Project\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Monkeys Tales Studio\\The Nadi Project\\}}" The Naked Game: pageId: 77051 steam: 635220 @@ -170811,16 +166105,16 @@ The Necklace Of Blood Part II: The Necklace of Blood: pageId: 82786 steam: 792760 -The Necromancer's Castle: +"The Necromancer's Castle": pageId: 80841 steam: 669620 The Need for Speed: pageId: 6855 templates: - - '{{Game data/config|DOS|{{p|game}}\GAMEDATA\CONFIG\}}' - - '{{Game data/config|Windows|{{p|game}}\GAMEDATA\CONFIG\}}' - - '{{Game data/saves|DOS|{{p|game}}\GAMEDATA\SAVEGAME\}}' - - '{{Game data/saves|Windows|{{p|game}}\GAMEDATA\SAVEGAME\}}' + - "{{Game data/config|DOS|{{p|game}}\\GAMEDATA\\CONFIG\\}}" + - "{{Game data/config|Windows|{{p|game}}\\GAMEDATA\\CONFIG\\}}" + - "{{Game data/saves|DOS|{{p|game}}\\GAMEDATA\\SAVEGAME\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\GAMEDATA\\SAVEGAME\\}}" The Neon Boy: pageId: 99240 steam: 872580 @@ -170830,13 +166124,13 @@ The Nest: The Neverhood: pageId: 24251 templates: - - '{{Game data/config|Windows|{{p|hklm}}\SOFTWARE\DreamWorks Interactive\Neverhood\MusicOn}}' - - '{{Game data/saves|Windows|{{p|hklm}}\SOFTWARE\DreamWorks Interactive\Neverhood\Saved Games\}}' + - "{{Game data/config|Windows|{{p|hklm}}\\SOFTWARE\\DreamWorks Interactive\\Neverhood\\MusicOn}}" + - "{{Game data/saves|Windows|{{p|hklm}}\\SOFTWARE\\DreamWorks Interactive\\Neverhood\\Saved Games\\}}" The New Adventures of the Time Machine: pageId: 163952 templates: - - '{{Game data/config|Windows|{{p|game}}\timequake.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\Save}}' + - "{{Game data/config|Windows|{{p|game}}\\timequake.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\Save}}" The New Girl: pageId: 91910 steam: 836200 @@ -170845,7 +166139,7 @@ The New Kid on the Block: The New Queen: pageId: 56354 steam: 552570 -'The New Universes: ~ Eine Neue Reise Beginnt ~ Chapter 1': +"The New Universes: ~ Eine Neue Reise Beginnt ~ Chapter 1": pageId: 141461 steam: 1073990 The Next Big Thing: @@ -170853,16 +166147,10 @@ The Next Big Thing: pageId: 23972 steam: 58570 templates: - - '{{Game data/config|Steam|{{P|steam}}\userdata\{{P|uid}}\58570\remote\}}' - - >- - {{Game data/config|Windows|{{p|programdata}}\Pendulo - Studios\HM2\ps.config{{Refcheck|user=LukasThyWalls|date=2022-07-30|comment=With FX Interactive's Hollywood - Monsters 2 version}}}} - - '{{Game data/saves|Steam|{{P|steam}}\userdata\{{P|uid}}\58570\remote\}}' - - >- - {{Game data/saves|Windows|{{p|programdata}}\Pendulo - Studios\HM2\SAVEGAME{{Refcheck|user=LukasThyWalls|date=2022-07-30|comment=FX Interactive's Hollywood monsters - 2 Version}}}} + - "{{Game data/config|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\58570\\remote\\}}" + - "{{Game data/config|Windows|{{p|programdata}}\\Pendulo Studios\\HM2\\ps.config{{Refcheck|user=LukasThyWalls|date=2022-07-30|comment=With FX Interactive's Hollywood Monsters 2 version}}}}" + - "{{Game data/saves|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\58570\\remote\\}}" + - "{{Game data/saves|Windows|{{p|programdata}}\\Pendulo Studios\\HM2\\SAVEGAME{{Refcheck|user=LukasThyWalls|date=2022-07-30|comment=FX Interactive's Hollywood monsters 2 Version}}}}" The Next Day After Friday: pageId: 88170 steam: 810650 @@ -170873,14 +166161,14 @@ The Next Penelope: pageId: 30554 steam: 332250 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\nw\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\nw\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\nw\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\nw\\}}" The Next Tetris: pageId: 77455 The Next World: pageId: 44243 steam: 427860 -'The Night Cafe: A VR Tribute to Vincent Van Gogh': +"The Night Cafe: A VR Tribute to Vincent Van Gogh": pageId: 37407 steam: 482390 The Night Christmas Ended: @@ -170899,8 +166187,8 @@ The Night of the Rabbit: steamSide: - 477050 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Daedalic Entertainment\The Night of the Rabbit\config.ini}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Daedalic Entertainment\The Night of the Rabbit\Savegames\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Daedalic Entertainment\\The Night of the Rabbit\\config.ini}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Daedalic Entertainment\\The Night of the Rabbit\\Savegames\\}}" The Nightmare Catcher: pageId: 180317 steam: 1937160 @@ -170916,18 +166204,16 @@ The Nightshift Code: The Ninja Path: pageId: 110796 steam: 934020 -'The Ninja Saviors: Return of the Warriors': +"The Ninja Saviors: Return of the Warriors": pageId: 188600 steam: 2288070 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\TAITO CORPORATION\The Ninja Saviors Return of the Warriors}}' - - >- - {{Game data/saves|Windows|{{p|appdata}}\LocalLow\TAITO CORPORATION\The Ninja Saviors Return of the - Warriors\{{p|uid}}\SaveData.dat}} + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\TAITO CORPORATION\\The Ninja Saviors Return of the Warriors}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\LocalLow\\TAITO CORPORATION\\The Ninja Saviors Return of the Warriors\\{{p|uid}}\\SaveData.dat}}" The Nonomancer: pageId: 186834 templates: - - '{{Game data/saves|Windows|{{P|localappdata}}\Graybeard Games}}' + - "{{Game data/saves|Windows|{{P|localappdata}}\\Graybeard Games}}" The Normal Day: pageId: 63286 steam: 591940 @@ -170940,8 +166226,8 @@ The Norwood Suite: steamSide: - 716930 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Cosmo D Studios LLC\The Norwood Suite\}}' - - '{{Game data/saves|Windows|{{p|USERPROFILE}}\AppData\LocalLow\Cosmo D Studios LLC\The Norwood Suite\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Cosmo D Studios LLC\\The Norwood Suite\\}}" + - "{{Game data/saves|Windows|{{p|USERPROFILE}}\\AppData\\LocalLow\\Cosmo D Studios LLC\\The Norwood Suite\\}}" The Nose: pageId: 65128 steam: 667410 @@ -170955,12 +166241,12 @@ The Novelist: pageId: 13484 steam: 245150 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\Orthogonal Games\The Novelist\Kaplans.fate}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Orthogonal Games/The Novelist/Kaplans.fate}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Orthogonal Games/The Novelist/Kaplans.fate}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Orthogonal Games\The Novelist\Kaplans.fate}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Orthogonal Games/The Novelist/Kaplans.fate}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Orthogonal Games/The Novelist/Kaplans.fate}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Orthogonal Games\\The Novelist\\Kaplans.fate}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Orthogonal Games/The Novelist/Kaplans.fate}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Orthogonal Games/The Novelist/Kaplans.fate}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Orthogonal Games\\The Novelist\\Kaplans.fate}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Orthogonal Games/The Novelist/Kaplans.fate}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Orthogonal Games/The Novelist/Kaplans.fate}}" The Occluder: pageId: 120727 steam: 897880 @@ -170972,15 +166258,15 @@ The Occupation: pageId: 78790 steam: 765880 templates: - - '{{Game data/config|Windows|{{p|USERPROFILE\Documents}}\My Games\TheOccupation\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{p|USERPROFILE\Documents}}\My Games\TheOccupation\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{p|USERPROFILE\\Documents}}\\My Games\\TheOccupation\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{p|USERPROFILE\\Documents}}\\My Games\\TheOccupation\\Saved\\SaveGames\\}}" The Odd Battle: pageId: 108196 steam: 913420 The Odyssey: pageId: 38726 steam: 516560 -'The Odyssey: Winds of Athena': +"The Odyssey: Winds of Athena": pageId: 34625 steam: 416080 The Office: @@ -170989,20 +166275,20 @@ The Office: The Office Quest: pageId: 92251 steam: 810660 -'The Official GamingTaylor Game, Great Job!': +"The Official GamingTaylor Game, Great Job!": pageId: 98696 steam: 881510 -'The Oil Blue: Steam Legacy Edition': +"The Oil Blue: Steam Legacy Edition": pageId: 46953 steam: 386700 templates: - - '{{Game data/saves|Windows|{{p|game}}\datafiles\island*outline.gsmpr}}' -'The Old City: Leviathan': + - "{{Game data/saves|Windows|{{p|game}}\\datafiles\\island*outline.gsmpr}}" +"The Old City: Leviathan": pageId: 21525 steam: 297350 templates: - - '{{Game data/config|Windows|{{p|game}}\UDKGame\Config\}}' - - '{{Game data/saves|Windows|{{p|game}}\Binaries\Win32\SaveData.bin}}' + - "{{Game data/config|Windows|{{p|game}}\\UDKGame\\Config\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\Binaries\\Win32\\SaveData.bin}}" The Old Empire: pageId: 71688 steam: 674010 @@ -171029,11 +166315,11 @@ The Onion Knights: The Operational Art of War IV: pageId: 121570 steam: 792660 -'The Operative: No One Lives Forever': +"The Operative: No One Lives Forever": pageId: 1632 templates: - - '{{Game data/config|Windows|{{p|game}}\autoexec.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\Save\}}' + - "{{Game data/config|Windows|{{p|game}}\\autoexec.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\Save\\}}" The Orb Chambers: pageId: 34479 steam: 485220 @@ -171050,9 +166336,7 @@ The Oregon Trail (2021): pageId: 167738 steam: 2013360 templates: - - >- - {{Game data/saves|OS X|{{p|osxhome}}/Library/Containers/TheOregonTrail/Data/Library/Application - Support/Savegames|~/Library/Containers/TheOregonTrail/Data/Documents/Savegames}} + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Containers/TheOregonTrail/Data/Library/Application Support/Savegames|~/Library/Containers/TheOregonTrail/Data/Documents/Savegames}}" The Orion Suns: pageId: 80885 steam: 787570 @@ -171088,7 +166372,7 @@ The Others: steam: 792530 The Otherside: pageId: 160312 -'The Otherside: Realm of Eons': +"The Otherside: Realm of Eons": pageId: 41180 steam: 47520 The Otterman Empire: @@ -171102,60 +166386,53 @@ The Outbound Ghost: - 1689380 - 2080370 templates: - - >- - {{Game data/config|Windows|{{P|userprofile\appdata\locallow}}\Conradical Games\The Outbound - Ghost\settings.es3|{{P|userprofile\appdata\locallow}}\Conradical Games\The Outbound - Ghost\MMData\MMSoundManager\mmsound.settings}} - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Conradical Games\The Outbound Ghost\beta*.es3}}' -'The Outer Rim: Survivor': + - "{{Game data/config|Windows|{{P|userprofile\\appdata\\locallow}}\\Conradical Games\\The Outbound Ghost\\settings.es3|{{P|userprofile\\appdata\\locallow}}\\Conradical Games\\The Outbound Ghost\\MMData\\MMSoundManager\\mmsound.settings}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Conradical Games\\The Outbound Ghost\\beta*.es3}}" +"The Outer Rim: Survivor": pageId: 90552 steam: 817360 The Outer Worlds: gog: 1242541569 gogSide: - - 2139865411 - - 1745362009 - 1413082838 + - 1745362009 - 2085332045 + - 2139865411 pageId: 123318 steam: 578650 steamSide: - - 1425450 - 1393110 - 1393111 + - 1425450 - 1920490 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Indiana\Saved\Config\WindowsNoEditor\}}' - - >- - {{Game data/config|Microsoft - Store|{{P|localappdata}}\Packages\PrivateDivision.TheOuterWorldsWindows10_hv3d7yfbgr2rp\LocalCache\Local\Indiana\Saved\Config\WindowsNoEditor\}} - - '{{Game data/saves|Windows|{{p|userprofile}}\Saved Games\The Outer Worlds\}}' - - |- - {{Game data/saves|Microsoft Store|{{p|userprofile}}\Saved Games\The Outer Worlds Windows 10\{{p|uid}}\| - {{P|localappdata}}\Packages\PrivateDivision.TheOuterWorldsWindows10_hv3d7yfbgr2rp\SystemAppData\wgs\{{p|uid}}\}} + - "{{Game data/config|Windows|{{P|localappdata}}\\Indiana\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/config|Microsoft Store|{{P|localappdata}}\\Packages\\PrivateDivision.TheOuterWorldsWindows10_hv3d7yfbgr2rp\\LocalCache\\Local\\Indiana\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Saved Games\\The Outer Worlds\\}}" + - "{{Game data/saves|Microsoft Store|{{p|userprofile}}\\Saved Games\\The Outer Worlds Windows 10\\{{p|uid}}\\|\n{{P|localappdata}}\\Packages\\PrivateDivision.TheOuterWorldsWindows10_hv3d7yfbgr2rp\\SystemAppData\\wgs\\{{p|uid}}\\}}" The Outer Worlds 2: pageId: 169262 -'The Outer Worlds: Spacer''s Choice Edition': +"The Outer Worlds: Spacer's Choice Edition": gog: 1986509485 pageId: 185985 steam: 1920490 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Indiana\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\Saved Games\The Outer Worlds Spacers Choice\{{P|uid}}\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\Indiana\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Saved Games\\The Outer Worlds Spacers Choice\\{{P|uid}}\\}}" The Outforce: pageId: 14801 templates: - - '{{Game data/config|Windows|{{P|game}}\Outforce\Scripts}}' + - "{{Game data/config|Windows|{{P|game}}\\Outforce\\Scripts}}" The Outlast Trials: pageId: 152639 steam: 1304930 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\OPP\Saved\Config\WindowsClient\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\OPP\Saved\SaveGames\}}' -'The Outlaw, The Drunk, & The Whore': + - "{{Game data/config|Windows|{{p|localappdata}}\\OPP\\Saved\\Config\\WindowsClient\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\OPP\\Saved\\SaveGames\\}}" +"The Outlaw, The Drunk, & The Whore": pageId: 93886 steam: 853610 -'The Outpost Nine: Episode 1': +"The Outpost Nine: Episode 1": pageId: 100238 steam: 882040 The Outsiders: @@ -171178,16 +166455,12 @@ The Painscreek Killings: pageId: 72238 steam: 624270 templates: - - >- - {{Game data/config|Windows|{{P|hkcu}}\Software\EQ Studios\The Painscreek - Killings|{{P|userprofile\appdata\locallow}}\EQ Studios\The Painscreek Killings\SaveData\saveOptionData.txt}} - - >- - {{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\EQ Studios\The Painscreek - Killings\SaveData\saveData.txt}} -The Painter's Apprentice: + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\EQ Studios\\The Painscreek Killings|{{P|userprofile\\appdata\\locallow}}\\EQ Studios\\The Painscreek Killings\\SaveData\\saveOptionData.txt}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\EQ Studios\\The Painscreek Killings\\SaveData\\saveData.txt}}" +"The Painter's Apprentice": pageId: 94352 steam: 780630 -The Painter's Playground: +"The Painter's Playground": pageId: 76357 steam: 722330 The Pale Beyond: @@ -171195,7 +166468,7 @@ The Pale Beyond: pageId: 177684 steam: 1266030 templates: - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\BellularStudios\The Pale Beyond}}' + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\BellularStudios\\The Pale Beyond}}" The Pale City: pageId: 154249 steam: 1196580 @@ -171219,8 +166492,8 @@ The Park: pageId: 33307 steam: 402020 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\AtlanticIslandPark\Saved\Config\WindowsNoEditor}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\AtlanticIslandPark\Saved\SaveGames}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\AtlanticIslandPark\\Saved\\Config\\WindowsNoEditor}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\AtlanticIslandPark\\Saved\\SaveGames}}" The Party of Demons: pageId: 113938 steam: 930860 @@ -171238,8 +166511,8 @@ The Path: pageId: 36467 steam: 27000 templates: - - '{{Game data/config|Windows|{{p|appdata}}\The Path\}}' - - '{{Game data/saves|Windows|{{p|appdata}}\The Path\}}' + - "{{Game data/config|Windows|{{p|appdata}}\\The Path\\}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\The Path\\}}" The Path To Die: pageId: 129679 steam: 1031910 @@ -171256,44 +166529,36 @@ The Pathless: pageId: 137535 steam: 1492680 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Pathless\Saved\Config\WindowsNoEditor}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Pathless\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Pathless\\Saved\\Config\\WindowsNoEditor}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Pathless\\Saved\\SaveGames\\}}" The Patrician: gog: 1207663913 gogSide: - 1207658802 pageId: 131937 templates: - - '{{Game data/config|DOS|{{p|game}}\SPIELE.DAT\}}' - - '{{Game data/saves|DOS|{{p|game}}\SPIELE.SAV\}}' + - "{{Game data/config|DOS|{{p|game}}\\SPIELE.DAT\\}}" + - "{{Game data/saves|DOS|{{p|game}}\\SPIELE.SAV\\}}" The Pedestrian: gog: 1701905982 pageId: 54455 steam: 466630 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Skookum Arts\The Pedestrian}}' - - >- - {{Game data/saves|Microsoft - Store|{{p|localappdata}}\Packages\SkookumArts.ThePedestrian_8d90466zrmk3y\SystemAppData\wgs\}} - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Skookum Arts/The Pedestrian/}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Skookum Arts/The Pedestrian/}}' + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Skookum Arts\\The Pedestrian}}" + - "{{Game data/saves|Microsoft Store|{{p|localappdata}}\\Packages\\SkookumArts.ThePedestrian_8d90466zrmk3y\\SystemAppData\\wgs\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Skookum Arts/The Pedestrian/}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Skookum Arts/The Pedestrian/}}" The Pegasus Expedition: gog: 1600335884 pageId: 177877 steam: 1521070 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\appdata\locallow}}\Kalla Gameworks\The Pegasus - Expedition\Settings.json}} - - >- - {{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\Kalla Gameworks\The Pegasus - Expedition\Saves|{{p|userprofile\appdata\locallow}}\Kalla Gameworks\The Pegasus - Expedition\SaveMetaInformation.json|{{p|userprofile\appdata\locallow}}\Kalla Gameworks\The Pegasus - Expedition\TutorialProgress.json}} + - "{{Game data/config|Windows|{{p|userprofile\\appdata\\locallow}}\\Kalla Gameworks\\The Pegasus Expedition\\Settings.json}}" + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\Kalla Gameworks\\The Pegasus Expedition\\Saves|{{p|userprofile\\appdata\\locallow}}\\Kalla Gameworks\\The Pegasus Expedition\\SaveMetaInformation.json|{{p|userprofile\\appdata\\locallow}}\\Kalla Gameworks\\The Pegasus Expedition\\TutorialProgress.json}}" The Penguin Factory: pageId: 136830 steam: 486180 -'The Pepper Prince: Seasoning 1': +"The Pepper Prince: Seasoning 1": pageId: 125243 steam: 975290 The Perfect General: @@ -171335,39 +166600,39 @@ The Pinball Arcade: pageId: 27175 steam: 238260 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\My Games\Pinball Arcade}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\My Games\Pinball Arcade}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\My Games\\Pinball Arcade}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\My Games\\Pinball Arcade}}" The Pinball Wizard: pageId: 147968 steam: 2101800 The Pink Panther in Hokus Pokus Pink: pageId: 92503 templates: - - '{{Game data/config|Windows|{{p|HKCU}}\Software\Wanderlust\The Pink Panther in Hokus Pokus Pink}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\*.pk2}}' -The Pink Panther's Passport to Peril: + - "{{Game data/config|Windows|{{p|HKCU}}\\Software\\Wanderlust\\The Pink Panther in Hokus Pokus Pink}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\*.pk2}}" +"The Pink Panther's Passport to Peril": pageId: 92502 templates: - - '{{Game data/config|Windows|{{p|HKCU}}\Software\Wanderlust\The Pink Panther''s Passport to Peril}}' - - '{{Game data/saves|Windows|{{p|game}}\*.ptp}}' -'The Pioneers: Surviving Desolation': + - "{{Game data/config|Windows|{{p|HKCU}}\\Software\\Wanderlust\\The Pink Panther's Passport to Peril}}" + - "{{Game data/saves|Windows|{{p|game}}\\*.ptp}}" +"The Pioneers: Surviving Desolation": pageId: 184527 steam: 1734390 The Pirate Queen: pageId: 156110 steam: 1108780 -The Pirate's Fate: +"The Pirate's Fate": gog: 1898584026 pageId: 78683 steam: 553480 templates: - - '{{Game data/saves|Windows|{{p|localappdata}}\Pirate''s Fate Dev\User Data\Default}}' -'The Pirate: Caribbean Hunt': + - "{{Game data/saves|Windows|{{p|localappdata}}\\Pirate's Fate Dev\\User Data\\Default}}" +"The Pirate: Caribbean Hunt": pageId: 36852 steam: 512470 templates: - - '{{Game data/saves|Windows|{{p|Steam}}\userdata\{{p|uid}}\512470\remote\}}' -'The Pirate: Plague of the Dead': + - "{{Game data/saves|Windows|{{p|Steam}}\\userdata\\{{p|uid}}\\512470\\remote\\}}" +"The Pirate: Plague of the Dead": pageId: 72883 steam: 723790 The Pirates of Sector 7: @@ -171379,15 +166644,15 @@ The Pit: The Pit and the Pendulum: pageId: 34984 steam: 463050 -'The Pit: Broken Bones': +"The Pit: Broken Bones": pageId: 139530 steam: 1066380 -'The Pit: Infinity': +"The Pit: Infinity": pageId: 121274 steam: 577410 templates: - - '{{Game data/config|Steam|{{P|localappdata}}\Pit\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{p|steam}}\userdata\{{p|uid}}\577410\remote\}}' + - "{{Game data/config|Steam|{{P|localappdata}}\\Pit\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\577410\\remote\\}}" The Pizza Delivery Boy Who Saved the World: pageId: 94106 steam: 853300 @@ -171408,21 +166673,21 @@ The Plan (2013): pageId: 29920 steam: 250600 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\SOFTWARE\Krillbite Studio\The Plan\}}' - - '{{Game data/saves|Windows|{{p|hkcu}}\SOFTWARE\Krillbite Studio\The Plan\HasFinished_h1734553517}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\Krillbite Studio\\The Plan\\}}" + - "{{Game data/saves|Windows|{{p|hkcu}}\\SOFTWARE\\Krillbite Studio\\The Plan\\HasFinished_h1734553517}}" The Plane Effect: gog: 1128507720 pageId: 170242 steam: 1448760 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\THE_PLANE_EFFECT\Saved\Config\WindowsNoEditor}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\THE_PLANE_EFFECT\Saved\SaveGames}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\THE_PLANE_EFFECT\\Saved\\Config\\WindowsNoEditor}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\THE_PLANE_EFFECT\\Saved\\SaveGames}}" The Planet Crafter: gog: 1882985557 pageId: 177766 steam: 1284190 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\MijuGames\Planet Crafter\}}' + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\MijuGames\\Planet Crafter\\}}" The Planet of the Vicious Creatures: pageId: 50849 steam: 530290 @@ -171450,7 +166715,7 @@ The Podlands: The Pointless Car Chase: pageId: 143997 steam: 1123910 -'The Poisoned Pawn: A Tex Murphy Adventure': +"The Poisoned Pawn: A Tex Murphy Adventure": pageId: 131366 The Poisoner: pageId: 138884 @@ -171458,8 +166723,8 @@ The Poisoner: The Polar Express: pageId: 55388 templates: - - '{{Game data/config|Windows|{{p|hklm}}\SOFTWARE\{{p|wow64}}\BlueTongue Entertainment\The Polar Express}}' - - '{{Game data/saves|Windows|{{p|game}}\Save\}}' + - "{{Game data/config|Windows|{{p|hklm}}\\SOFTWARE\\{{p|wow64}}\\BlueTongue Entertainment\\The Polar Express}}" + - "{{Game data/saves|Windows|{{p|game}}\\Save\\}}" The Political Machine: pageId: 91738 The Political Machine 2008: @@ -171477,34 +166742,31 @@ The Political Process: pageId: 153048 steam: 1184770 templates: - - '{{Game data/config|Windows|{{P|appdata}}\the_political_process\User Data\Default\saveFiles\playerSettings.json}}' - - >- - {{Game data/saves|Windows|{{P|appdata}}\the_political_process\User - Data\Default\saveFiles\campaignSaves|{{P|appdata}}\the_political_process\User - Data\Default\saveFiles\dictatorSaves}} + - "{{Game data/config|Windows|{{P|appdata}}\\the_political_process\\User Data\\Default\\saveFiles\\playerSettings.json}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\the_political_process\\User Data\\Default\\saveFiles\\campaignSaves|{{P|appdata}}\\the_political_process\\User Data\\Default\\saveFiles\\dictatorSaves}}" The Polynesian Cultural Center VR Experience: pageId: 135246 steam: 1005330 -'The Polynomial: Space of the Music': +"The Polynomial: Space of the Music": pageId: 41062 steam: 67000 templates: - - '{{Game data/config|Linux|{{p|linuxhome}}/.polynomial/}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.polynomial/}}' + - "{{Game data/config|Linux|{{p|linuxhome}}/.polynomial/}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.polynomial/}}" The Portal Dimension - Bizarre Huntseeker: pageId: 144279 steam: 968480 The Power Factory: pageId: 69874 steam: 707860 -'The Powerpuff Girls: Defenders of Townsville': +"The Powerpuff Girls: Defenders of Townsville": pageId: 15760 steam: 274450 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Cartoon Network\PPG Defenders of Townsville\}}' - - '{{Game data/config|Linux|~/.config/unity3d/Cartoon Network/PPG Defenders of Townsville/}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Cartoon Network\PPG Defenders of Townsville\}}' - - '{{Game data/saves|Linux|~/.config/unity3d/Cartoon Network/PPG Defenders of Townsville/}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Cartoon Network\\PPG Defenders of Townsville\\}}" + - "{{Game data/config|Linux|~/.config/unity3d/Cartoon Network/PPG Defenders of Townsville/}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Cartoon Network\\PPG Defenders of Townsville\\}}" + - "{{Game data/saves|Linux|~/.config/unity3d/Cartoon Network/PPG Defenders of Townsville/}}" The Preposterous Awesomeness of Everything: pageId: 44675 steam: 435840 @@ -171528,13 +166790,13 @@ The Princess and the Frog: The Princess is in Another Castle: pageId: 72958 steam: 723750 -The Princess' Heart: +"The Princess' Heart": pageId: 47055 steam: 378830 -'The Princess, the Stray Cat, and Matters of the Heart': +"The Princess, the Stray Cat, and Matters of the Heart": pageId: 130508 steam: 1010600 -'The Princess, the Stray Cat, and Matters of the Heart 2': +"The Princess, the Stray Cat, and Matters of the Heart 2": pageId: 150414 steam: 1128260 The Prism: @@ -171553,8 +166815,8 @@ The Procession to Calvary: pageId: 135748 steam: 1071130 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Joe Richardson\The Procession to Calvary}}' -'The Professor Presents: GotHandles': + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Joe Richardson\\The Procession to Calvary}}" +"The Professor Presents: GotHandles": pageId: 61293 steam: 615650 The Prometheus Secret Noohra: @@ -171574,7 +166836,7 @@ The Prophecy Lies!: The Prophecy of Statues: pageId: 112260 steam: 923180 -'The Protagonist: EX-1': +"The Protagonist: EX-1": pageId: 151307 steam: 1162570 The Protocons: @@ -171583,7 +166845,7 @@ The Protocons: The Prototype: pageId: 67299 steam: 682670 -'The Psychiatrist: Major Depression': +"The Psychiatrist: Major Depression": pageId: 130522 steam: 1033720 The Psychic: @@ -171592,7 +166854,7 @@ The Psychic: The Punisher (2005): pageId: 31295 templates: - - '{{Game data/saves|Windows|{{P|game}}\profiles\}}' + - "{{Game data/saves|Windows|{{P|game}}\\profiles\\}}" The Puppet Master: pageId: 51961 steam: 544520 @@ -171611,7 +166873,7 @@ The Purring Quest: The Pusher: pageId: 124394 steam: 950830 -'The Putinland: Divide & Conquer': +"The Putinland: Divide & Conquer": pageId: 99220 steam: 874700 The Puzzle Box Society: @@ -171638,8 +166900,8 @@ The Quarry: - 1891950 - 2101870 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\TheQuarry\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\TheQuarry\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\TheQuarry\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\TheQuarry\\Saved\\SaveGames\\}}" The Quarter Game: pageId: 76599 steam: 703630 @@ -171651,8 +166913,8 @@ The Quest: pageId: 38373 steam: 428880 templates: - - '{{Game data/config|Windows|{{P|userprofile}}\Saved Games\The Quest\config.ini}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\Saved Games\The Quest\Save*.save}}' + - "{{Game data/config|Windows|{{P|userprofile}}\\Saved Games\\The Quest\\config.ini}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\Saved Games\\The Quest\\Save*.save}}" The Quest (1984): pageId: 158102 The Quest Giver: @@ -171674,8 +166936,8 @@ The Quiet Man: pageId: 97327 steam: 790540 templates: - - '{{Game data/config|Windows|{{p|localappdata}}/Moon/Saved/Config/WindowsNoEditor/}}' - - '{{Game data/saves|Windows|{{p|localappdata}}/Moon/Saved/SaveGames/LevelProgression.sav}}' + - "{{Game data/config|Windows|{{p|localappdata}}/Moon/Saved/Config/WindowsNoEditor/}}" + - "{{Game data/saves|Windows|{{p|localappdata}}/Moon/Saved/SaveGames/LevelProgression.sav}}" The Quiet Sleep: pageId: 72903 steam: 724510 @@ -171688,7 +166950,7 @@ The Rabbit Hole: The Rabbit and The Owl: pageId: 103745 steam: 561260 -The Rabbit's Scroll: +"The Rabbit's Scroll": pageId: 179370 steam: 2005950 The Race for the White House: @@ -171703,11 +166965,11 @@ The Ragdoll: The Rage: pageId: 27105 templates: - - '{{Game data/config|Windows|{{p|game}}\Data\settings.bin}}' + - "{{Game data/config|Windows|{{p|game}}\\Data\\settings.bin}}" The Raiders: pageId: 58791 steam: 599420 -'The Rain Spirit: Code Breaker': +"The Rain Spirit: Code Breaker": pageId: 57131 steam: 582860 The Rainbow World: @@ -171726,12 +166988,12 @@ The Ramp: pageId: 170089 steam: 1506510 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Hyperparadise\The Ramp}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\appdata\locallow\Hyperparadise\The Ramp}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Hyperparadise\\The Ramp}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\appdata\\locallow\\Hyperparadise\\The Ramp}}" The Ranch of Rivershine: pageId: 187159 steam: 1559600 -'The Ranger: Lost Tribe': +"The Ranger: Lost Tribe": pageId: 66597 steam: 673070 The Rare Nine: @@ -171745,21 +167007,21 @@ The Raven Remastered: pageId: 89843 steam: 736810 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Raven\|{{P|hkcu}}\Software\KingArt\TheRavenRemastered}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/raven/}}' - - '{{Game data/saves|Steam|{{P|steam}}\userdata\{{P|uid}}\736810\remote\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Raven\}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/raven/}}' -'The Raven: Legacy of a Master Thief': + - "{{Game data/config|Windows|{{p|localappdata}}\\Raven\\|{{P|hkcu}}\\Software\\KingArt\\TheRavenRemastered}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/raven/}}" + - "{{Game data/saves|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\736810\\remote\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Raven\\}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/raven/}}" +"The Raven: Legacy of a Master Thief": gog: 1207659783 pageId: 12800 steam: 233370 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\The Raven\|{{P|hkcu}}\Software\KingArt\The Raven}}' - - '{{Game data/config|Linux|{{P|linuxhome}}/The Raven/config.xml}}' - - '{{Game data/saves|Steam|{{P|steam}}\userdata\{{P|uid}}\233370\remote\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\The Raven\savegames\}}' - - '{{Game data/saves|Linux|{{P|linuxhome}}/The Raven/savegames/}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\The Raven\\|{{P|hkcu}}\\Software\\KingArt\\The Raven}}" + - "{{Game data/config|Linux|{{P|linuxhome}}/The Raven/config.xml}}" + - "{{Game data/saves|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\233370\\remote\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\The Raven\\savegames\\}}" + - "{{Game data/saves|Linux|{{P|linuxhome}}/The Raven/savegames/}}" The Reaction: pageId: 87900 steam: 738620 @@ -171774,8 +167036,8 @@ The Real Texas: pageId: 23112 steam: 261900 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\The Real Texas\options.txt}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\The Real Texas\2002\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\The Real Texas\\options.txt}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\The Real Texas\\2002\\}}" The Rebel: pageId: 42299 steam: 452650 @@ -171803,35 +167065,27 @@ The Red Solstice: pageId: 18494 steam: 265590 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\TheRedSolstice\settings.ini}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\TheRedSolstice\save}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\TheRedSolstice\\settings.ini}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\TheRedSolstice\\save}}" The Red Stare: pageId: 62209 steam: 625470 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\TheRedStare\Saved\Config}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\TheRedStare\Saved\SaveGames}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\TheRedStare\\Saved\\Config}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\TheRedStare\\Saved\\SaveGames}}" The Red Strings Club: gog: 1209307763 pageId: 75679 steam: 589780 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\TRSC2017\{{P|uid}}\config.ini}}' - - >- - {{Game data/config|Microsoft - Store|{{P|localappdata}}\Packages\DevolverDigital.TheRedStringsClub_6kzv4j18v0c96\LocalCache\Local\TRSC2017\config.ini}} - - >- - {{Game data/config|OS X|{{p|osxhome}}/Library/Application - Support/com.yoyogames.macyoyorunner/{{P|uid}}/config.ini}} - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/TRSC2017/config.ini}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\TRSC2017\{{P|uid}}\savedata.ini}}' - - >- - {{Game data/saves|Microsoft - Store|{{P|localappdata}}\Packages\DevolverDigital.TheRedStringsClub_6kzv4j18v0c96\LocalCache\Local\TRSC2017\savedata.ini}} - - >- - {{Game data/saves|OS X|{{p|osxhome}}/Library/Application - Support/com.yoyogames.macyoyorunner/{{P|uid}}/savedata.ini}} - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/TRSC2017/savedata.ini}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\TRSC2017\\{{P|uid}}\\config.ini}}" + - "{{Game data/config|Microsoft Store|{{P|localappdata}}\\Packages\\DevolverDigital.TheRedStringsClub_6kzv4j18v0c96\\LocalCache\\Local\\TRSC2017\\config.ini}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/com.yoyogames.macyoyorunner/{{P|uid}}/config.ini}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/TRSC2017/config.ini}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\TRSC2017\\{{P|uid}}\\savedata.ini}}" + - "{{Game data/saves|Microsoft Store|{{P|localappdata}}\\Packages\\DevolverDigital.TheRedStringsClub_6kzv4j18v0c96\\LocalCache\\Local\\TRSC2017\\savedata.ini}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/com.yoyogames.macyoyorunner/{{P|uid}}/savedata.ini}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/TRSC2017/savedata.ini}}" The Redemption of Pancakes: pageId: 103761 steam: 745630 @@ -171839,20 +167093,20 @@ The Redress of Mira: pageId: 179451 steam: 1843860 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Mira\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\Mira\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\Mira\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Mira\\Saved\\SaveGames\\}}" The Refuge: pageId: 150371 steam: 1128650 The Regiment: pageId: 162779 templates: - - '{{Game data/config|Windows|{{p|game}}\system\}}' - - '{{Game data/saves|Windows|{{p|game}}\save\}}' + - "{{Game data/config|Windows|{{p|game}}\\system\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\save\\}}" The Region: pageId: 127886 steam: 1021780 -'The Reject Demon: Toko Chapter 0 - Prelude': +"The Reject Demon: Toko Chapter 0 - Prelude": pageId: 33662 steam: 358770 The Relentless: @@ -171871,7 +167125,7 @@ The Rescue of Mermaids: pageId: 190623 steam: 1074770 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\Saved Games\rescueofmermaids\*.sav}}' + - "{{Game data/saves|Windows|{{p|userprofile}}\\Saved Games\\rescueofmermaids\\*.sav}}" The Research Facility NO.507: pageId: 51877 steam: 512170 @@ -171889,29 +167143,25 @@ The Return of Bantara: steam: 664220 The Return of Medusa: pageId: 186728 -'The Return: Survival': +"The Return: Survival": pageId: 132897 steam: 959210 The Revenge of Johnny Bonasera: pageId: 51477 steam: 536430 -'The Revenge of Johnny Bonasera: Episode 2': +"The Revenge of Johnny Bonasera: Episode 2": pageId: 81582 steam: 790390 -'The Revenge of Johnny Bonasera: Episode 3': +"The Revenge of Johnny Bonasera: Episode 3": pageId: 127437 steam: 1004230 The Revenge of Shinobi: pageId: 30900 steam: 211207 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\SEGA Mega Drive - Classics\setup.dat|{{p|userprofile\Documents}}\SEGA Genesis Classics\setup.dat}} - - >- - {{Game data/saves|Windows|{{p|userprofile\Documents}}\SEGA Mega Drive - Classics\0055\|{{p|userprofile\Documents}}\SEGA Genesis Classics\0055\}} -'The Revolt: Awakening': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\SEGA Mega Drive Classics\\setup.dat|{{p|userprofile\\Documents}}\\SEGA Genesis Classics\\setup.dat}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\SEGA Mega Drive Classics\\0055\\|{{p|userprofile\\Documents}}\\SEGA Genesis Classics\\0055\\}}" +"The Revolt: Awakening": pageId: 75170 steam: 736240 The Rewinder / 山海旅人: @@ -171926,22 +167176,20 @@ The Rift: The Riftbreaker: gog: 2147483111 gogSide: + - 1165918628 - 1315197539 - 1374227826 - 1779532777 - - 1165918628 pageId: 130783 steam: 780310 steamSide: - - 1945600 - 1788250 + - 1945600 - 2108630 templates: - - '{{Game data/config|Microsoft Store|{{p|userprofile}}/Documents/The Riftbreaker/config}}' - - '{{Game data/saves|Windows|{{p|userprofile}}/Documents/The Riftbreaker/campaignV2}}' - - >- - {{Game data/saves|Microsoft - Store|{{p|localappdata}}/Packages/EXORStudios.TheRiftbreakerPC_9y41ntp9cv1jj/SystemAppData/wgs}} + - "{{Game data/config|Microsoft Store|{{p|userprofile}}/Documents/The Riftbreaker/config}}" + - "{{Game data/saves|Windows|{{p|userprofile}}/Documents/The Riftbreaker/campaignV2}}" + - "{{Game data/saves|Microsoft Store|{{p|localappdata}}/Packages/EXORStudios.TheRiftbreakerPC_9y41ntp9cv1jj/SystemAppData/wgs}}" The Rig: pageId: 94433 steam: 839020 @@ -171951,8 +167199,8 @@ The Ring of Truth: The Rise and Rule of Ancient Empires: pageId: 185947 templates: - - '{{Game data/config|Windows|{{p|game}}}}' - - '{{Game data/saves|Windows|{{p|game}}}}' + - "{{Game data/config|Windows|{{p|game}}}}" + - "{{Game data/saves|Windows|{{p|game}}}}" The Rise of Captain Longbeard: pageId: 51941 steam: 534750 @@ -171968,14 +167216,14 @@ The Risers: The Rising of the Rose Ocelot: pageId: 79918 steam: 779550 -'The Rising of the Shield Hero: Relive the Animation': +"The Rising of the Shield Hero: Relive the Animation": pageId: 149541 renamedFrom: - - 'The Rising of the Shield Hero : Relive The Animation' + - "The Rising of the Shield Hero : Relive The Animation" steam: 1146100 templates: - - '{{Game data/config|Windows|{{p|game}}\www\save}}' - - '{{Game data/saves|Windows|{{p|game}}\www\save}}' + - "{{Game data/config|Windows|{{p|game}}\\www\\save}}" + - "{{Game data/saves|Windows|{{p|game}}\\www\\save}}" The Ritual: pageId: 134955 steam: 1068340 @@ -172000,53 +167248,45 @@ The Road to Hades: The Rodinia Project: pageId: 66663 steam: 681520 -The Rollingball's Melody: +"The Rollingball's Melody": pageId: 46006 steam: 409310 The Room: pageId: 20650 steam: 288160 templates: - - >- - {{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\Fireproof Games\The - Room\CustomGfxSettings.xml|{{P|hkcu}}\Software\Fireproof Games\The Room\}} - - '{{Game data/config|Steam|{{p|steam}}/userdata/{{p|uid}}/288160/remote/GlobalData.sav}}' - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/288160/remote/Safe.save}}' -'The Room 4: Old Sins': + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Fireproof Games\\The Room\\CustomGfxSettings.xml|{{P|hkcu}}\\Software\\Fireproof Games\\The Room\\}}" + - "{{Game data/config|Steam|{{p|steam}}/userdata/{{p|uid}}/288160/remote/GlobalData.sav}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/288160/remote/Safe.save}}" +"The Room 4: Old Sins": pageId: 166041 steam: 1361320 templates: - - >- - {{Game data/config|Windows|{{P|hkcu}}\SOFTWARE\Fireproof Studios\Old - Sins|{{p|userprofile\appdata\locallow}}\Fireproof Studios\Old Sins\CustomGfxSettings.xml}} - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\Fireproof Studios\Old Sins\*.save}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\SOFTWARE\\Fireproof Studios\\Old Sins|{{p|userprofile\\appdata\\locallow}}\\Fireproof Studios\\Old Sins\\CustomGfxSettings.xml}}" + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\Fireproof Studios\\Old Sins\\*.save}}" The Room Syndrome: pageId: 148499 steam: 1114030 templates: - - '{{Game data/saves|Windows|{{P|localappdata}}\The_Room_Syndrome\}}' + - "{{Game data/saves|Windows|{{P|localappdata}}\\The_Room_Syndrome\\}}" The Room Three: pageId: 121708 steam: 456750 templates: - - >- - {{Game data/config|Windows|{{P|userprofile}}\AppData\LocalLow\Fireproof Games\The Room - Three\CustomGfxSettings.xml|{{P|hkcu}}\Software\Fireproof Games\The Room Three}} - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Fireproof Games\The Room Three\Slot_*.save}}' + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Fireproof Games\\The Room Three\\CustomGfxSettings.xml|{{P|hkcu}}\\Software\\Fireproof Games\\The Room Three}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Fireproof Games\\The Room Three\\Slot_*.save}}" The Room Two: pageId: 35432 steam: 425580 templates: - - >- - {{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\Fireproof Games\The Room - Two\CustomGfxSettings.xml|{{P|hkcu}}\Software\Fireproof Games\The Room Two\}} - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Fireproof Games\The Room Two\Slot_0.save}}' -'The Room VR: A Dark Matter': + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Fireproof Games\\The Room Two\\CustomGfxSettings.xml|{{P|hkcu}}\\Software\\Fireproof Games\\The Room Two\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Fireproof Games\\The Room Two\\Slot_0.save}}" +"The Room VR: A Dark Matter": pageId: 158738 steam: 1104380 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Fireproof Games\The Room VR}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Fireproof Games\The Room VR\*.save}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Fireproof Games\\The Room VR}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Fireproof Games\\The Room VR\\*.save}}" The Room of Black & White: pageId: 45210 steam: 402000 @@ -172059,7 +167299,7 @@ The Rose of Segunda: The Rosebud Condominium: pageId: 67808 steam: 663120 -The Rosefinch Curse (Ning's Wing 1): +"The Rosefinch Curse (Ning's Wing 1)": pageId: 40434 steam: 530500 The Royal Cosmonautical Society: @@ -172072,11 +167312,9 @@ The Royal Marines Commando: pageId: 103353 steam: 837600 templates: - - '{{Game data/config|Windows|{{p|Public}}\Documents\City Interactive\Royal Marines Commando\settings.cfg}}' - - >- - {{Game data/saves|Windows|{{p|Public}}\Documents\City Interactive\Royal Marines - Commando\Profiles\|{{p|Public}}\Documents\City Interactive\Royal Marines Commando\Save\}} -'The Ruins: VR Escape the Room': + - "{{Game data/config|Windows|{{p|Public}}\\Documents\\City Interactive\\Royal Marines Commando\\settings.cfg}}" + - "{{Game data/saves|Windows|{{p|Public}}\\Documents\\City Interactive\\Royal Marines Commando\\Profiles\\|{{p|Public}}\\Documents\\City Interactive\\Royal Marines Commando\\Save\\}}" +"The Ruins: VR Escape the Room": pageId: 61000 steam: 592320 The Rumble Fish 2: @@ -172089,35 +167327,35 @@ The Saboteur: gog: 1403000599 pageId: 10755 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\The Saboteur™\SaveGames\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\The Saboteur™\SaveGames\}}' -'The Sacred Stone: A Story Adventure': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\The Saboteur™\\SaveGames\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\The Saboteur™\\SaveGames\\}}" +"The Sacred Stone: A Story Adventure": pageId: 44756 steam: 432410 The Sacred Tears TRUE: pageId: 28479 steam: 316840 templates: - - '{{Game data/saves|Windows|{{p|game}}\Game_Files\*.lsd}}' + - "{{Game data/saves|Windows|{{p|game}}\\Game_Files\\*.lsd}}" The Sad Story of Emmeline Burns: pageId: 33626 steam: 429940 templates: - - '{{Game data/config|Windows|{{p|game}}\renpy\config.py}}' - - '{{Game data/saves|Windows|{{P|appdata}}\renpy\The Sad Story of Emmeline Burns-1443035376\|{{p|game}}\game\saves\}}' + - "{{Game data/config|Windows|{{p|game}}\\renpy\\config.py}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\renpy\\The Sad Story of Emmeline Burns-1443035376\\|{{p|game}}\\game\\saves\\}}" The Safeguard Garrison: pageId: 57580 steam: 585580 The Safeguard Garrison 2: pageId: 60906 steam: 618340 -'The Safeguard Garrison: Space Colonies': +"The Safeguard Garrison: Space Colonies": pageId: 64590 steam: 665390 The Sage of Twilight: pageId: 69364 steam: 692880 -'The Saint: Abyss of Despair': +"The Saint: Abyss of Despair": pageId: 56920 steam: 560820 The Samaritan Paradox: @@ -172125,10 +167363,10 @@ The Samaritan Paradox: pageId: 21594 steam: 283180 templates: - - '{{Game data/config|Windows|{{P|userprofile}}\Saved Games\The Samaritan Paradox\acsetup.cfg}}' - - '{{Game data/config|Linux|{{P|steam}}/steamapps/common/TheSamaritanParadox/data/acsetup.cfg}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\Saved Games\The Samaritan Paradox\agssave.*}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/ags/The Samaritan Paradox/aggsave.*}}' + - "{{Game data/config|Windows|{{P|userprofile}}\\Saved Games\\The Samaritan Paradox\\acsetup.cfg}}" + - "{{Game data/config|Linux|{{P|steam}}/steamapps/common/TheSamaritanParadox/data/acsetup.cfg}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\Saved Games\\The Samaritan Paradox\\agssave.*}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/ags/The Samaritan Paradox/aggsave.*}}" The Same Crime: pageId: 89222 steam: 751550 @@ -172139,11 +167377,11 @@ The Sandbox: pageId: 47447 steam: 265810 templates: - - '{{Game data/saves|Windows|{{p|steam}}\userdata\{{p|uid}}\265810\remote\User\*.sav}}' + - "{{Game data/saves|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\265810\\remote\\User\\*.sav}}" The Sandbox Evolution: pageId: 40361 steam: 466940 -'The Sandbox of God: Remastered Edition': +"The Sandbox of God: Remastered Edition": pageId: 94439 steam: 840730 The Santa Challenge: @@ -172155,7 +167393,7 @@ The Sapling: The Sapper: pageId: 74227 steam: 734540 -The Savior's Gang: +"The Savior's Gang": pageId: 127846 steam: 938480 The Scarecrow: @@ -172170,7 +167408,7 @@ The Scent of Summer: The Scorchfarer: pageId: 177161 steam: 1617580 -'The Scourge Project: Episode 1 and 2': +"The Scourge Project: Episode 1 and 2": pageId: 19568 steam: 36700 The Scramble Vice: @@ -172204,20 +167442,20 @@ The Sea Will Claim Everything: pageId: 44007 steam: 337720 templates: - - '{{Game data/saves|Windows|{{p|appdata}}\The Sea Will Claim Everything\}}' + - "{{Game data/saves|Windows|{{p|appdata}}\\The Sea Will Claim Everything\\}}" The Search: pageId: 61024 steam: 566190 templates: - - '{{Game data/config|Windows|{{P|userprofile}}\AppData\LocalLow\Jason Godbey\The Search}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Jason Godbey\The Search}}' + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Jason Godbey\\The Search}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Jason Godbey\\The Search}}" The Search for Amelia Earhart: pageId: 41165 steam: 33760 The Searcher Wild West Adventure: pageId: 99886 steam: 892130 -'The Searchers of Legends : Origin': +"The Searchers of Legends : Origin": pageId: 141022 steam: 1107490 The Seasons: @@ -172227,7 +167465,7 @@ The Second Chance Strip Club: pageId: 158364 steam: 990740 templates: - - '{{Game data/saves|Windows|{{P|localappdata}}\The_Second_Chance_Strip_Club\}}' + - "{{Game data/saves|Windows|{{P|localappdata}}\\The_Second_Chance_Strip_Club\\}}" The Second Samurai: gog: 1663718321 pageId: 169491 @@ -172235,34 +167473,34 @@ The Second Samurai: The Secret Monster Society: pageId: 42013 steam: 495960 -'The Secret Order 2: Masked Intent': +"The Secret Order 2: Masked Intent": pageId: 45739 steam: 399890 -'The Secret Order 3: Ancient Times': +"The Secret Order 3: Ancient Times": pageId: 37640 steam: 437420 -'The Secret Order 4: Beyond Time': +"The Secret Order 4: Beyond Time": pageId: 40092 steam: 517360 -'The Secret Order 5: The Buried Kingdom': +"The Secret Order 5: The Buried Kingdom": pageId: 60111 steam: 574260 -'The Secret Order 6: Bloodline': +"The Secret Order 6: Bloodline": pageId: 68891 steam: 662190 -'The Secret Order 7: Shadow Breach': +"The Secret Order 7: Shadow Breach": pageId: 129813 steam: 1004860 -'The Secret Order 8: Return to the Buried Kingdom': +"The Secret Order 8: Return to the Buried Kingdom": pageId: 154085 steam: 1198450 -'The Secret Society: Hidden Way': +"The Secret Society: Hidden Way": pageId: 181944 The Secret World: pageId: 3128 steam: 215280 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Funcom\TSW\Prefs}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Funcom\\TSW\\Prefs}}" The Secret of Gillwood: pageId: 130265 steam: 992870 @@ -172278,27 +167516,21 @@ The Secret of Middle City: The Secret of Monkey Island: pageId: 18 templates: - - '{{Game data/saves|DOS|{{p|game}}\SAVEGAME.*}}' -'The Secret of Monkey Island: Special Edition': + - "{{Game data/saves|DOS|{{p|game}}\\SAVEGAME.*}}" +"The Secret of Monkey Island: Special Edition": gog: 1207666253 pageId: 10051 steam: 32360 templates: - - '{{Game data/config|Windows|{{p|appdata}}\LucasArts\The Secret of Monkey Island Special Edition\}}' - - >- - {{Game data/config|OS X|{{P|osxhome}}/Library/Application Support/The Secret of Monkey Island Special - Edition/Settings.ini}} - - '{{Game data/saves|Windows|{{p|appdata}}\LucasArts\The Secret of Monkey Island Special Edition}}' - - >- - {{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/The Secret of Monkey Island Special - Edition/savegame.*}} + - "{{Game data/config|Windows|{{p|appdata}}\\LucasArts\\The Secret of Monkey Island Special Edition\\}}" + - "{{Game data/config|OS X|{{P|osxhome}}/Library/Application Support/The Secret of Monkey Island Special Edition/Settings.ini}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\LucasArts\\The Secret of Monkey Island Special Edition}}" + - "{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/The Secret of Monkey Island Special Edition/savegame.*}}" The Secret of Pineview Forest: pageId: 52662 steam: 451960 templates: - - >- - {{Game - data/config|Windows|{{P|hkcu}}\Software\VIS-Games\TheSecretOfPineviewForest|{{P|userprofile}}\AppData\LocalLow\VIS_Games\TheSecretOfPineviewForest\}} + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\VIS-Games\\TheSecretOfPineviewForest|{{P|userprofile}}\\AppData\\LocalLow\\VIS_Games\\TheSecretOfPineviewForest\\}}" The Secret of Puffin Cove: pageId: 113810 steam: 926480 @@ -172311,11 +167543,11 @@ The Secrets of Jesus: The Secrets of The Forest: pageId: 91264 steam: 822770 -'The Secrets of da Vinci: The Forbidden Manuscript': +"The Secrets of da Vinci: The Forbidden Manuscript": pageId: 52668 templates: - - '{{Game data/config|Windows|{{p|game}}\config.ini|{{p|game}}\Users\{{p|uid}}\config.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\Users\}}' + - "{{Game data/config|Windows|{{p|game}}\\config.ini|{{p|game}}\\Users\\{{p|uid}}\\config.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\Users\\}}" The Seduction of Shaqeera: pageId: 146003 steam: 994160 @@ -172325,11 +167557,11 @@ The Seduction of Shaqeera VR: The Seeker: pageId: 36982 steam: 503680 -'The Sekimeiya: Spun Glass': +"The Sekimeiya: Spun Glass": pageId: 173817 steam: 1432500 templates: - - '{{Game data/saves|Windows|{{p|game}}\game\saves\*.save}}' + - "{{Game data/saves|Windows|{{p|game}}\\game\\saves\\*.save}}" The Sentient: pageId: 44401 steam: 411600 @@ -172339,102 +167571,102 @@ The Sequence: pageId: 35506 steam: 454320 templates: - - '{{Game data/saves|Windows|{{P|hkcu}}\Software\One Man Band\the Sequence}}' + - "{{Game data/saves|Windows|{{P|hkcu}}\\Software\\One Man Band\\the Sequence}}" The Settlers: pageId: 62675 templates: - - '{{Game data/config|DOS|{{p|game}}\SNDSTUP.DAT}}' - - '{{Game data/saves|DOS|{{p|game}}\*.DS}}' + - "{{Game data/config|DOS|{{p|game}}\\SNDSTUP.DAT}}" + - "{{Game data/saves|DOS|{{p|game}}\\*.DS}}" The Settlers - History Edition: pageId: 170722 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\TheSettlers\game.ini}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\TheSettlers\SAVE}}' -'The Settlers 7: History Edition': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\TheSettlers\\game.ini}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\TheSettlers\\SAVE}}" +"The Settlers 7: History Edition": pageId: 127615 steam: 965320 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\THE SETTLERS 7 - History Edition}}' -'The Settlers 7: Paths to a Kingdom': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\THE SETTLERS 7 - History Edition}}" +"The Settlers 7: Paths to a Kingdom": pageId: 51126 steam: 48120 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Settlers7\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Settlers7\Savegames\}}' -'The Settlers II: 10th Anniversary': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Settlers7\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Settlers7\\Savegames\\}}" +"The Settlers II: 10th Anniversary": gog: 1207659163 pageId: 16239 templates: - - '{{Game data/config|Windows|{{p|game}}\data\settings}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\S2\saves}}' -'The Settlers II: Veni, Vidi, Vici': + - "{{Game data/config|Windows|{{p|game}}\\data\\settings}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\S2\\saves}}" +"The Settlers II: Veni, Vidi, Vici": gog: 1207658786 pageId: 606 templates: - - '{{Game data/config|DOS|{{p|game}}\SETUP.INI}}' - - '{{Game data/saves|DOS|{{p|game}}\SAVE}}' -'The Settlers II: Veni, Vidi, Vici - History Edition': + - "{{Game data/config|DOS|{{p|game}}\\SETUP.INI}}" + - "{{Game data/saves|DOS|{{p|game}}\\SAVE}}" +"The Settlers II: Veni, Vidi, Vici - History Edition": pageId: 170726 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\TheSettlers2\config.json}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\TheSettlers2\SAVE}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\TheSettlers2\\config.json}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\TheSettlers2\\SAVE}}" The Settlers III: gog: 1207659185 pageId: 7464 templates: - - '{{Game data/config|Windows|{{p|hklm}}\SOFTWARE\{{p|wow64}}\Bluebyte\Siedler3\1.0\General}}' - - '{{Game data/saves|Windows|{{p|game}}\Save}}' -'The Settlers III: History Edition': + - "{{Game data/config|Windows|{{p|hklm}}\\SOFTWARE\\{{p|wow64}}\\Bluebyte\\Siedler3\\1.0\\General}}" + - "{{Game data/saves|Windows|{{p|game}}\\Save}}" +"The Settlers III: History Edition": pageId: 170728 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\TheSettlers3\config.json}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\TheSettlers3\SAVE}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\TheSettlers3\\config.json}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\TheSettlers3\\SAVE}}" The Settlers IV: gog: 1207659254 pageId: 7444 templates: - - '{{Game data/config|Windows|{{p|game}}\Config\GameSettings.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\Save\}}' + - "{{Game data/config|Windows|{{p|game}}\\Config\\GameSettings.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\Save\\}}" The Settlers IV - History Edition: pageId: 170730 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\TheSettlers4\GameSettings.cfg}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\TheSettlers4\Save}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\TheSettlers4\\GameSettings.cfg}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\TheSettlers4\\Save}}" The Settlers Online: pageId: 46817 steam: 354640 -'The Settlers: Heritage of Kings': +"The Settlers: Heritage of Kings": gog: 1207658793 pageId: 6212 steam: 15310 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\THE SETTLERS - Heritage of Kings\Data\GDB.bin}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\THE SETTLERS - Heritage of Kings\SaveGames}}' -'The Settlers: Heritage of Kings - History Edition': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\THE SETTLERS - Heritage of Kings\\Data\\GDB.bin}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\THE SETTLERS - Heritage of Kings\\SaveGames}}" +"The Settlers: Heritage of Kings - History Edition": pageId: 127611 steam: 965300 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\THE SETTLERS 5 - History Edition\Data\GDB.xml}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\THE SETTLERS 5 - History Edition\SaveGames}}' -'The Settlers: New Allies': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\THE SETTLERS 5 - History Edition\\Data\\GDB.xml}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\THE SETTLERS 5 - History Edition\\SaveGames}}" +"The Settlers: New Allies": pageId: 137813 renamedFrom: - The Settlers (2020) - The Settlers (2022) templates: - - '{{Game data/saves|Uplay|{{p|uplay}}\savegames\{{p|uid}}\3037\}}' -'The Settlers: Rise of Cultures': + - "{{Game data/saves|Uplay|{{p|uplay}}\\savegames\\{{p|uid}}\\3037\\}}" +"The Settlers: Rise of Cultures": pageId: 181564 -'The Settlers: Rise of an Empire': +"The Settlers: Rise of an Empire": gog: 1438268682 pageId: 28840 steam: 15330 steamSide: - 19930 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\THE SETTLERS - Rise of an Empire\Config\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\THE SETTLERS - Rise of an Empire\SaveGames\}}' -'The Settlers: Rise of an Empire - History Edition': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\THE SETTLERS - Rise of an Empire\\Config\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\THE SETTLERS - Rise of an Empire\\SaveGames\\}}" +"The Settlers: Rise of an Empire - History Edition": pageId: 127613 steam: 965310 The Seven: @@ -172446,9 +167678,9 @@ The Seven Chambers: The Seven Deadly Seas: pageId: 149666 steam: 1021220 -'The Seven Deadly Sins: Origin': +"The Seven Deadly Sins: Origin": pageId: 191255 -'The Seven Districts of Sin: The Tail Makes the Fox - Episode 1': +"The Seven Districts of Sin: The Tail Makes the Fox - Episode 1": pageId: 80631 steam: 782190 The Seven Spells Of Destruction: @@ -172460,7 +167692,7 @@ The Seven Stages: The Seven Years War (1756-1763): pageId: 45836 steam: 400470 -'The Seventh Sign: Mr. Sister': +"The Seventh Sign: Mr. Sister": gog: 1827581176 pageId: 174431 The Sexy Brutale: @@ -172468,11 +167700,11 @@ The Sexy Brutale: pageId: 56834 steam: 552590 templates: - - '{{Game data/config|Windows|{{p|HKCU}}\Software\Cavalier Game Studios\The Sexy Brutale\}}' - - '{{Game data/config|Origin|{{p|HKCU}}\Software\CGS\TSB\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Cavalier Game Studios\The Sexy Brutale\}}' - - '{{Game data/saves|Origin|{{p|userprofile}}\AppData\LocalLow\CGS\TSB\}}' - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\552590\remote\}}' + - "{{Game data/config|Windows|{{p|HKCU}}\\Software\\Cavalier Game Studios\\The Sexy Brutale\\}}" + - "{{Game data/config|Origin|{{p|HKCU}}\\Software\\CGS\\TSB\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Cavalier Game Studios\\The Sexy Brutale\\}}" + - "{{Game data/saves|Origin|{{p|userprofile}}\\AppData\\LocalLow\\CGS\\TSB\\}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\552590\\remote\\}}" The Shadow of Hell: pageId: 99452 steam: 878480 @@ -172480,7 +167712,7 @@ The Shadow of Yidhra: pageId: 178972 steam: 1576240 templates: - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\WhitePeach\The Shadow of Yidhra\Save\}}' + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\WhitePeach\\The Shadow of Yidhra\\Save\\}}" The Shadowland: pageId: 42289 steam: 498620 @@ -172496,9 +167728,9 @@ The Shapeshifting Detective: pageId: 113554 steam: 898650 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\SOFTWARE\Wales Interactive\The Shapeshifting Detective\}}' - - '{{Game data/config|Steam|{{p|steam}}\userdata\{{p|uid}}\898650\remote\OptionsData}}' - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\898650\remote\SaveData}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\SOFTWARE\\Wales Interactive\\The Shapeshifting Detective\\}}" + - "{{Game data/config|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\898650\\remote\\OptionsData}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\898650\\remote\\SaveData}}" The Shattered Blade: pageId: 144993 steam: 1129410 @@ -172507,16 +167739,16 @@ The Shattering: pageId: 135891 steam: 596000 templates: - - '{{Game data/config|Windows|{{P|game}}\Shattering_Data}}' - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Super Sexy Software\The Shattering\SaveSlots}}' + - "{{Game data/config|Windows|{{P|game}}\\Shattering_Data}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Super Sexy Software\\The Shattering\\SaveSlots}}" The Shedding: pageId: 125064 steam: 954720 -'The Shell Part I: Inferno': +"The Shell Part I: Inferno": pageId: 188996 steam: 2258770 templates: - - '{{Game data/saves|Windows|{{p|game}}\savedata\*.*}}' + - "{{Game data/saves|Windows|{{p|game}}\\savedata\\*.*}}" The Shell of Permafrost: pageId: 124272 renamedFrom: @@ -172531,8 +167763,8 @@ The Shenanigans of Cherry and Trix: The Shield: pageId: 91635 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Aspyr\The Shield\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Aspyr\The Shield\Save}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Aspyr\\The Shield\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Aspyr\\The Shield\\Save}}" The Ship: pageId: 483 steam: 2400 @@ -172540,25 +167772,25 @@ The Ship: - 2420 - 2430 templates: - - '{{Game data/config|Windows|{{P|game}}\ship\cfg\}}' - - '{{Game data/saves|Windows|{{P|game}}\ship\SAVE\}}' -'The Ship: Remasted': + - "{{Game data/config|Windows|{{P|game}}\\ship\\cfg\\}}" + - "{{Game data/saves|Windows|{{P|game}}\\ship\\SAVE\\}}" +"The Ship: Remasted": pageId: 44509 steam: 383790 templates: - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Blazing Griffin/The Ship Remasted/}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Blazing Griffin/The Ship Remasted/}}' -'The Shivah: Kosher Edition': + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Blazing Griffin/The Ship Remasted/}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Blazing Griffin/The Ship Remasted/}}" +"The Shivah: Kosher Edition": gog: 1207660263 pageId: 13215 steam: 252370 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\Saved Games\Shivah\acsetup.cfg}}' - - '{{Game data/config|OS X|{{P|game}}/acsetup.cfg}}' - - '{{Game data/config|Linux|{{P|game}}/acsetup.cfg}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\Saved Games\Shivah\}}' - - '{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/Shivah/}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/ags/Shivah/}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\Saved Games\\Shivah\\acsetup.cfg}}" + - "{{Game data/config|OS X|{{P|game}}/acsetup.cfg}}" + - "{{Game data/config|Linux|{{P|game}}/acsetup.cfg}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Saved Games\\Shivah\\}}" + - "{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/Shivah/}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/ags/Shivah/}}" The Shopkeeper: pageId: 49464 steam: 324610 @@ -172567,8 +167799,8 @@ The Shore: pageId: 166515 steam: 1297300 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Theisland\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\Theisland\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\Theisland\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Theisland\\Saved\\SaveGames\\}}" The Short Story of a Drifting Labyrinth: pageId: 81087 steam: 773910 @@ -172576,21 +167808,17 @@ The Showdown Effect: pageId: 4870 steam: 204080 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Arrowhead\TheShowdownEffect\user_settings.conf}}' - - >- - {{Game data/config|OS X|{{p|osxhome}}/Library/Application - Support/Arrowhead/TheShowdownEffect/user_settings.config}} - - '{{Game data/saves|Windows|{{p|appdata}}\Arrowhead\TheShowdownEffect\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Arrowhead/TheShowdownEffect/}}' - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{P|uid}}/204080/remote/saves/}}' + - "{{Game data/config|Windows|{{p|appdata}}\\Arrowhead\\TheShowdownEffect\\user_settings.conf}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Arrowhead/TheShowdownEffect/user_settings.config}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Arrowhead\\TheShowdownEffect\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Arrowhead/TheShowdownEffect/}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{P|uid}}/204080/remote/saves/}}" The Shrouded Isle: pageId: 51507 steam: 501320 templates: - - >- - {{Game data/config|Windows|{{P|userprofile}}\AppData\LocalLow\Kitfox Games\The Shrouded - Isle\SaveData\settings.tsi|{{p|hkcu}}\Software\Kitfox Games\The Shrouded Isle\}} - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Kitfox Games\The Shrouded Isle\SaveData\}}' + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Kitfox Games\\The Shrouded Isle\\SaveData\\settings.tsi|{{p|hkcu}}\\Software\\Kitfox Games\\The Shrouded Isle\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Kitfox Games\\The Shrouded Isle\\SaveData\\}}" The Sibling Experiment: pageId: 95009 steam: 568300 @@ -172603,10 +167831,8 @@ The Signal State: pageId: 171698 steam: 1577620 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Reckoner Industries\The Signal State\}}' - - >- - {{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Reckoner Industries\The Signal - State\profiles\{{p|uid}}\}} + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Reckoner Industries\\The Signal State\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Reckoner Industries\\The Signal State\\profiles\\{{p|uid}}\\}}" The Signal from Tölva: gog: 1665406546 pageId: 58162 @@ -172614,10 +167840,10 @@ The Signal from Tölva: - The Signal From Tölva steam: 457760 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\Big Robot Ltd\The Signal From Tölva\Settings}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Big Robot Ltd/The Signal From Tölva/Settings/}}' - - '{{Game data/saves|Windows|{{p|steam}}\userdata\{{p|uid}}\457760\remote\}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.steam/steam/userdata/{{p|uid}}/457760/remote/SavedGames/}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Big Robot Ltd\\The Signal From Tölva\\Settings}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Big Robot Ltd/The Signal From Tölva/Settings/}}" + - "{{Game data/saves|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\457760\\remote\\}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.steam/steam/userdata/{{p|uid}}/457760/remote/SavedGames/}}" The Signifier: gog: 1461644805 pageId: 160808 @@ -172633,104 +167859,96 @@ The Silent Age: pageId: 28926 steam: 352520 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\House on Fire\The Silent Age\}}' - - '{{Game data/saves|Windows|{{P|hkcu}}\Software\House on Fire\The Silent Age\}}' - - '{{Game data/saves|Steam|{{P|Steam}}\userdata\{{p|uid}}\352520\remote\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\House on Fire\\The Silent Age\\}}" + - "{{Game data/saves|Windows|{{P|hkcu}}\\Software\\House on Fire\\The Silent Age\\}}" + - "{{Game data/saves|Steam|{{P|Steam}}\\userdata\\{{p|uid}}\\352520\\remote\\}}" The Silver Case: gog: 1133130154 pageId: 39321 steam: 476650 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\ActiveGamingMedia\TheSilverCase\}}' - - '{{Game data/config|Linux|{{p|xdgconfighome}}/unity3d/ActiveGamingMedia/TheSilverCase}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\ActiveGamingMedia\TheSilverCase\save\}}' - - '{{Game data/saves|Linux|{{p|xdgconfighome}}/unity3d/ActiveGamingMedia/TheSilverCase/save}}' -'The Silver Crusade: Aoorha Axeman': + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\ActiveGamingMedia\\TheSilverCase\\}}" + - "{{Game data/config|Linux|{{p|xdgconfighome}}/unity3d/ActiveGamingMedia/TheSilverCase}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\ActiveGamingMedia\\TheSilverCase\\save\\}}" + - "{{Game data/saves|Linux|{{p|xdgconfighome}}/unity3d/ActiveGamingMedia/TheSilverCase/save}}" +"The Silver Crusade: Aoorha Axeman": pageId: 121006 steam: 962370 The Silver Lining: pageId: 101613 templates: - - '{{Game data/config|Windows|{{P|game}}\game\settings.cs|{{P|game}}\game\keymap.cs}}' - - '{{Game data/saves|Windows|{{P|game}}\game\saves\}}' + - "{{Game data/config|Windows|{{P|game}}\\game\\settings.cs|{{P|game}}\\game\\keymap.cs}}" + - "{{Game data/saves|Windows|{{P|game}}\\game\\saves\\}}" The Simple Apocalypse: pageId: 68482 steam: 693430 The Simpsons Arcade Game: pageId: 168482 templates: - - '{{Game data/config|DOS|{{p|game}}\PRG\SIMPSONS.CFG}}' -'The Simpsons: Bart vs. the Space Mutants': + - "{{Game data/config|DOS|{{p|game}}\\PRG\\SIMPSONS.CFG}}" +"The Simpsons: Bart vs. the Space Mutants": pageId: 176601 -'The Simpsons: Cartoon Studio': +"The Simpsons: Cartoon Studio": pageId: 176603 -'The Simpsons: Hit & Run': +"The Simpsons: Hit & Run": pageId: 2062 templates: - - '{{Game data/config|Windows|{{p|game}}\simpsons.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\Save*}}' -'The Simpsons: Virtual Springfield': + - "{{Game data/config|Windows|{{p|game}}\\simpsons.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\Save*}}" +"The Simpsons: Virtual Springfield": pageId: 89975 The Sims: pageId: 1426 templates: - - '{{Game data/config|Windows|{{p|game}}\UserData\Options.iff}}' - - '{{Game data/saves|Windows|{{p|game}}\UserData\|{{p|game}}\UserData*\}}' + - "{{Game data/config|Windows|{{p|game}}\\UserData\\Options.iff}}" + - "{{Game data/saves|Windows|{{p|game}}\\UserData\\|{{p|game}}\\UserData*\\}}" The Sims 2: pageId: 281 templates: - - '{{Game data/config|Windows|{{p|game}}\TSData\Res\Config}}' - - >- - {{Game data/saves|Windows|{{p|userprofile\Documents}}\EA Games\The Sims 2\|{{p|userprofile\Documents}}\EA - Games\The Sims™ 2 Ultimate Collection\}} - - >- - {{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Aspyr/The Sims - 2|~/Library/Containers/com.aspyr.sims2.appstore/Data/Library/Application Support/Aspyr/The Sims 2 ''(Mac App Store - version)''{{Refurl|url=https://support.aspyr.com/hc/en-us/articles/360056571831-How-to-find-my-Saves-and-Game-Folder|title=How - to find my Saves and Game Folder - Aspyr|date=May 2023}}}} + - "{{Game data/config|Windows|{{p|game}}\\TSData\\Res\\Config}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\EA Games\\The Sims 2\\|{{p|userprofile\\Documents}}\\EA Games\\The Sims™ 2 Ultimate Collection\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Aspyr/The Sims 2|~/Library/Containers/com.aspyr.sims2.appstore/Data/Library/Application Support/Aspyr/The Sims 2 ''(Mac App Store version)''{{Refurl|url=https://support.aspyr.com/hc/en-us/articles/360056571831-How-to-find-my-Saves-and-Game-Folder|title=How to find my Saves and Game Folder - Aspyr|date=May 2023}}}}" The Sims 3: pageId: 4253 steam: 47890 templates: - - >- - {{Game - data/config|Windows|{{p|game}}\Game\Bin\Sims3.ini|{{p|game}}\Game\Bin\GraphicsRules.sgr|{{p|game}}\Game\Bin\Default.ini}} - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Electronic Arts\The Sims 3\Saves}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Documents/Electronic Arts/The Sims 3/Saves}}' + - "{{Game data/config|Windows|{{p|game}}\\Game\\Bin\\Sims3.ini|{{p|game}}\\Game\\Bin\\GraphicsRules.sgr|{{p|game}}\\Game\\Bin\\Default.ini}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Electronic Arts\\The Sims 3\\Saves}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Documents/Electronic Arts/The Sims 3/Saves}}" The Sims 4: pageId: 17715 steam: 1222670 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Electronic Arts\The Sims 4\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Documents/Electronic Arts/The Sims 4/Options.ini}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Electronic Arts\The Sims 4\saves\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Documents/Electronic Arts/The Sims 4/saves/}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Electronic Arts\\The Sims 4\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Documents/Electronic Arts/The Sims 4/Options.ini}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Electronic Arts\\The Sims 4\\saves\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Documents/Electronic Arts/The Sims 4/saves/}}" The Sims Castaway Stories: pageId: 16229 templates: - - '{{Game data/config|Windows|{{p|game}}\TSData\Res\Config}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Electronic Arts\The Sims™ Castaway Stories\}}' + - "{{Game data/config|Windows|{{p|game}}\\TSData\\Res\\Config}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Electronic Arts\\The Sims™ Castaway Stories\\}}" The Sims Life Stories: pageId: 10172 templates: - - '{{Game data/config|Windows|{{p|game}}\TSData\Res\Config}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Electronic Arts\The Sims™ Life Stories\}}' + - "{{Game data/config|Windows|{{p|game}}\\TSData\\Res\\Config}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Electronic Arts\\The Sims™ Life Stories\\}}" The Sims Medieval: pageId: 97413 steam: 102820 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Electronic Arts\The Sims Medieval}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Documents/Electronic Arts/The Sims Medieval}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Electronic Arts\The Sims Medieval\Saves}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Documents/Electronic Arts/The Sims Medieval/Saves}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Electronic Arts\\The Sims Medieval}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Documents/Electronic Arts/The Sims Medieval}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Electronic Arts\\The Sims Medieval\\Saves}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Documents/Electronic Arts/The Sims Medieval/Saves}}" The Sims Online: pageId: 97231 The Sims Pet Stories: pageId: 86812 templates: - - '{{Game data/config|Windows|{{p|game}}\TSData\Res\Config}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Electronic Arts\The Sims™ Pet Stories\}}' -'The Sin Collector: Repentless': + - "{{Game data/config|Windows|{{p|game}}\\TSData\\Res\\Config}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Electronic Arts\\The Sims™ Pet Stories\\}}" +"The Sin Collector: Repentless": gog: 1500643916 pageId: 172868 steam: 1613190 @@ -172744,9 +167962,9 @@ The Sinking City: steamSide: - 1151760 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\TSCGame\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\TSCGame\Saved\SaveGames\}}' -'The Sisters: Party of the Year': + - "{{Game data/config|Windows|{{P|localappdata}}\\TSCGame\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\TSCGame\\Saved\\SaveGames\\}}" +"The Sisters: Party of the Year": pageId: 179841 steam: 1502540 The Six Dragons: @@ -172759,7 +167977,7 @@ The Skies: pageId: 43560 steam: 337950 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\eforb\}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\eforb\\}}" The Sky Climber: pageId: 120711 steam: 958690 @@ -172767,15 +167985,15 @@ The Slater: pageId: 100462 steam: 881690 templates: - - '{{Game data/config|Windows|{{p|HKCU}}\Software\Laina Interactive\The Slater}}' - - '{{Game data/saves|Windows|{{P|hkcu}}\Software\Laina Interactive\The Slater}}' -'The Slaughter: Act One': + - "{{Game data/config|Windows|{{p|HKCU}}\\Software\\Laina Interactive\\The Slater}}" + - "{{Game data/saves|Windows|{{P|hkcu}}\\Software\\Laina Interactive\\The Slater}}" +"The Slaughter: Act One": pageId: 44786 steam: 356390 The Slaughtering Grounds: pageId: 60407 steam: 329950 -The Slimeking's Tower: +"The Slimeking's Tower": pageId: 65251 steam: 458660 The Slingshot VR: @@ -172789,18 +168007,18 @@ The Slormancer: pageId: 151325 steam: 1104280 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\The_Slormancer\config.ini}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\The_Slormancer\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\The_Slormancer\\config.ini}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\The_Slormancer\\}}" The Slug: pageId: 66951 steam: 681070 -'The Smurfs: Mission Vileaf': +"The Smurfs: Mission Vileaf": gog: 1162916148 pageId: 170654 renamedFrom: - The Smurfs - Mission Vileaf steam: 1502560 -'The Smurfs: The Teletransportsmurf': +"The Smurfs: The Teletransportsmurf": pageId: 173668 The Sniper VR: pageId: 60868 @@ -172808,21 +168026,19 @@ The Sniper VR: The Snowboard Game: pageId: 89500 steam: 803830 -The Software Toolworks' Star Wars Chess: +"The Software Toolworks' Star Wars Chess": pageId: 147946 templates: - - '{{Game data/config|DOS|{{Path|Game}}\SWCHESS.CFG}}' - - '{{Game data/saves|DOS|{{P|game}}\SWCHESS.SAV}}' - - '{{Game data/saves|Windows|{{P|game}}\STARWARS.CMG}}' + - "{{Game data/config|DOS|{{Path|Game}}\\SWCHESS.CFG}}" + - "{{Game data/saves|DOS|{{P|game}}\\SWCHESS.SAV}}" + - "{{Game data/saves|Windows|{{P|game}}\\STARWARS.CMG}}" The Sojourn: gog: 1813140866 pageId: 105615 steam: 794960 templates: - - >- - {{Game - data/config|Windows|{{P|localappdata}}\TheSojourn\Saved\SaveGames\Settings.sav|{{P|localappdata}}\TheSojourn\Saved\Config\WindowsNoEditor\}} - - '{{Game data/saves|Windows|{{P|localappdata}}\TheSojourn\Saved\SaveGames\Sojourn.sav}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\TheSojourn\\Saved\\SaveGames\\Settings.sav|{{P|localappdata}}\\TheSojourn\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\TheSojourn\\Saved\\SaveGames\\Sojourn.sav}}" The Soldier in the Mine: pageId: 67173 steam: 685750 @@ -172830,16 +168046,16 @@ The Solitaire Conspiracy: pageId: 163707 steam: 1424980 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Bithell Games\The Solitaire Conspiracy\}}' - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Bithell Games\The Solitaire Conspiracy\saveData.dat}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Bithell Games\\The Solitaire Conspiracy\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Bithell Games\\The Solitaire Conspiracy\\saveData.dat}}" The Solus Project: gog: 1455617752 pageId: 33326 steam: 313630 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Solus\Saved\Config\WindowsNoEditor}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\TheSolusProject\SolusProfile\}}' -'The Song of Seven: Overture': + - "{{Game data/config|Windows|{{p|localappdata}}\\Solus\\Saved\\Config\\WindowsNoEditor}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\TheSolusProject\\SolusProfile\\}}" +"The Song of Seven: Overture": pageId: 43031 steam: 433590 The Song of Terminus: @@ -172851,7 +168067,7 @@ The Sorceress: The Sorrowvirus: pageId: 154204 renamedFrom: - - 'The Sorrowvirus: A Faceless Short Story' + - "The Sorrowvirus: A Faceless Short Story" steam: 1177110 The Soul Hunter: pageId: 132296 @@ -172869,27 +168085,27 @@ The Space Bar: pageId: 111326 steam: 2253580 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/saves|Windows|{{p|game}}\SPACEBAR.SAV}}' + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\SPACEBAR.SAV}}" The Space Garden: pageId: 51364 steam: 536320 The Spatials: pageId: 48340 steam: 346420 -'The Spatials: Galactology': +"The Spatials: Galactology": pageId: 42521 steam: 450700 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\TSGalactology}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\TSGalactology}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\TSGalactology}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\TSGalactology}}" The Spectrum Retreat: pageId: 92313 steam: 763250 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Ripstone\The Spectrum Retreat\}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\My Games\TheSpectrumRetreat\Saves\SpectrumData}}' - - '{{Game data/saves|Steam|{{p|PUBLIC}}\Documents\Steam\{{p|uid}}\763250}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Ripstone\\The Spectrum Retreat\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\My Games\\TheSpectrumRetreat\\Saves\\SpectrumData}}" + - "{{Game data/saves|Steam|{{p|PUBLIC}}\\Documents\\Steam\\{{p|uid}}\\763250}}" The Spell - A Kinetic Novel: pageId: 125573 steam: 1002510 @@ -172899,14 +168115,14 @@ The Sphere of Abyss: The Spiderwick Chronicles: pageId: 35307 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\Sierra\The Spiderwick Chronicles}}' + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\Sierra\\The Spiderwick Chronicles}}" The Spiral Scouts: pageId: 96361 steam: 862480 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\CantaloupeKids\TheSpiralScouts\}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\CantaloupeKids\TheSpiralScouts\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\CantaloupeKids\\TheSpiralScouts\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\CantaloupeKids\\TheSpiralScouts\\}}" The Spirit Master of Retarnia -Conqueror of the Labyrinth-: pageId: 146028 steam: 975020 @@ -172918,8 +168134,8 @@ The Spirit and the Mouse: pageId: 180342 steam: 1679210 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\Alblune\TheSpiritAndTheMouse\saves}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Alblune\TheSpiritAndTheMouse\saves}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Alblune\\TheSpiritAndTheMouse\\saves}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Alblune\\TheSpiritAndTheMouse\\saves}}" The Spirit of Twelve: pageId: 88235 steam: 497320 @@ -172929,8 +168145,8 @@ The Spirits of Kelley Family: The SpongeBob SquarePants Movie: pageId: 158908 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\THQ\SpongeBob 4\Settings}}' - - '{{Game data/saves|Windows|{{p|game}}\saved}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\THQ\\SpongeBob 4\\Settings}}" + - "{{Game data/saves|Windows|{{p|game}}\\saved}}" The Spookening: pageId: 52800 steam: 396420 @@ -172943,54 +168159,50 @@ The Spy Who Shot Me: pageId: 79964 steam: 771810 templates: - - '{{Game data/config|Windows|{{p|HKCU}}\Software\Retro Army Limited\The Spy Who Shot Me}}' - - '{{Game data/saves|Windows|{{p|game}}\Saves\}}' + - "{{Game data/config|Windows|{{p|HKCU}}\\Software\\Retro Army Limited\\The Spy Who Shot Me}}" + - "{{Game data/saves|Windows|{{p|game}}\\Saves\\}}" The Spy Who Shrunk Me: pageId: 108788 steam: 754850 templates: - - '{{Game data/config|Windows|{{p|USERPROFILE}}\AppData\LocalLow\Catland\The Spy Who Shrunk Me\settings.json}}' - - '{{Game data/saves|Windows|{{p|USERPROFILE}}\AppData\LocalLow\Catland\The Spy Who Shrunk Me}}' + - "{{Game data/config|Windows|{{p|USERPROFILE}}\\AppData\\LocalLow\\Catland\\The Spy Who Shrunk Me\\settings.json}}" + - "{{Game data/saves|Windows|{{p|USERPROFILE}}\\AppData\\LocalLow\\Catland\\The Spy Who Shrunk Me}}" The Square Game: pageId: 156553 steam: 1209160 -The St Christopher's School Lockdown: +"The St Christopher's School Lockdown": pageId: 73794 steam: 600000 The Stalin Subway: pageId: 31487 steam: 311140 templates: - - '{{Game data/config|Windows|{{p|game}}\SAVES\config.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\SAVES\}}' -'The Stalin Subway: Red Veil': + - "{{Game data/config|Windows|{{p|game}}\\SAVES\\config.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\SAVES\\}}" +"The Stalin Subway: Red Veil": pageId: 31670 steam: 311120 templates: - - '{{Game data/config|Windows|{{p|game}}\SAVES\config.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\SAVES\}}' + - "{{Game data/config|Windows|{{p|game}}\\SAVES\\config.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\SAVES\\}}" The Stanley Parable: pageId: 11184 steam: 221910 templates: - - '{{Game data/config|Windows|{{p|game}}\thestanleyparable\cfg\}}' - - '{{Game data/config|Linux|{{p|game}}/thestanleyparable/cfg/}}' - - '{{Game data/config|OS X|{{p|game}}/thestanleyparable/cfg/}}' - - '{{Game data/saves|Windows|{{p|game}}\thestanleyparable\save\}}' - - '{{Game data/saves|Linux|{{p|game}}/thestanleyparable/save/}}' - - '{{Game data/saves|OS X|{{p|game}}/thestanleyparable/save/}}' -'The Stanley Parable: Ultra Deluxe': + - "{{Game data/config|Windows|{{p|game}}\\thestanleyparable\\cfg\\}}" + - "{{Game data/config|Linux|{{p|game}}/thestanleyparable/cfg/}}" + - "{{Game data/config|OS X|{{p|game}}/thestanleyparable/cfg/}}" + - "{{Game data/saves|Windows|{{p|game}}\\thestanleyparable\\save\\}}" + - "{{Game data/saves|Linux|{{p|game}}/thestanleyparable/save/}}" + - "{{Game data/saves|OS X|{{p|game}}/thestanleyparable/save/}}" +"The Stanley Parable: Ultra Deluxe": pageId: 173450 steam: 1703340 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Crows Crows Crows\The Stanley Parable: Ultra Deluxe}}' - - >- - {{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Crows Crows Crows\The Stanley Parable_ Ultra - Deluxe\}} - - >- - {{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/Crows Crows Crows/The Stanley Parable_ Ultra - Deluxe/}} - - '{{Game data/saves|Linux|{{P|linuxhome}}/.config/unity3d/Crows Crows Crows/The Stanley Parable_ Ultra Deluxe/}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Crows Crows Crows\\The Stanley Parable: Ultra Deluxe}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Crows Crows Crows\\The Stanley Parable_ Ultra Deluxe\\}}" + - "{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/Crows Crows Crows/The Stanley Parable_ Ultra Deluxe/}}" + - "{{Game data/saves|Linux|{{P|linuxhome}}/.config/unity3d/Crows Crows Crows/The Stanley Parable_ Ultra Deluxe/}}" The Stargazers: pageId: 52302 steam: 445670 @@ -173001,15 +168213,15 @@ The Static Speaks My Name: pageId: 46935 steam: 387860 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\jesse barksdale\the static speaks my name\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\jesse barksdale\\the static speaks my name\\}}" The Station: pageId: 55073 steam: 565120 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\The Station Game Ltd\The Station\}}' - - '{{Game data/config|Linux|{{P|linuxhome}}/.config/unity3d/The Station Game Ltd/The Station/}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\The Station Game Ltd\The Station\}}' - - '{{Game data/saves|Linux|{{P|linuxhome}}/.config/unity3d/The Station Game Ltd/The Station/}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\The Station Game Ltd\\The Station\\}}" + - "{{Game data/config|Linux|{{P|linuxhome}}/.config/unity3d/The Station Game Ltd/The Station/}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\The Station Game Ltd\\The Station\\}}" + - "{{Game data/saves|Linux|{{P|linuxhome}}/.config/unity3d/The Station Game Ltd/The Station/}}" The Station VR: pageId: 124454 steam: 877510 @@ -173021,25 +168233,25 @@ The Stillness of the Wind: pageId: 92353 steam: 828900 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Memory of God\The Stillness of the Wind\}}' - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\Memory of God\The Stillness of the Wind}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Memory of God\\The Stillness of the Wind\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\Memory of God\\The Stillness of the Wind}}" The Sting!: pageId: 61354 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\neoSoftware\TheSting!\Settings\}}' - - '{{Game data/saves|Windows|{{p|game}}\Savegame\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\neoSoftware\\TheSting!\\Settings\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\Savegame\\}}" The Stone: pageId: 68116 steam: 676990 -'The Storm Guard: Darkness is Coming': +"The Storm Guard: Darkness is Coming": pageId: 36812 steam: 409910 The Story Goes On: pageId: 38153 steam: 369560 templates: - - '{{Game data/config|Windows|{{P|appdata}}\TSGO\settings.mltdakap}}' - - '{{Game data/saves|Windows|{{P|appdata}}\TSGO\save.mltdakap}}' + - "{{Game data/config|Windows|{{P|appdata}}\\TSGO\\settings.mltdakap}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\TSGO\\save.mltdakap}}" The Story of Gods: pageId: 99448 steam: 839370 @@ -173052,10 +168264,10 @@ The Story of My Life: The Storytale: pageId: 61689 steam: 629230 -'The Strange Story Of Brian Fisher: Chapter 1': +"The Strange Story Of Brian Fisher: Chapter 1": pageId: 154168 steam: 1165840 -'The Stranger: Interactive Game': +"The Stranger: Interactive Game": pageId: 140761 steam: 1113110 The Strangers: @@ -173086,46 +168298,35 @@ The Suffering: gog: 1268478205 pageId: 19669 templates: - - >- - {{Game data/config|Windows|{{p|game}}\GameConfig.ini{{note|note=Default}}|{{p|userprofile\Documents}}\My Games\The - Suffering\Torque.ini{{note|note=When using AiO Unofficial Patch and setting PerUserConfigAndSaves in - {{p|game}}\Torque.ini to 1}}}} - - >- - {{Game data/saves|Windows|{{p|game}}\Saves\{{note|note=Default}}|{{p|userprofile\Documents}}\My Games\The - Suffering\Saves{{note|note=When using AiO Unofficial Patch and setting PerUserConfigAndSaves in - {{p|game}}\Torque.ini to 1}}}} + - "{{Game data/config|Windows|{{p|game}}\\GameConfig.ini{{note|note=Default}}|{{p|userprofile\\Documents}}\\My Games\\The Suffering\\Torque.ini{{note|note=When using AiO Unofficial Patch and setting PerUserConfigAndSaves in {{p|game}}\\Torque.ini to 1}}}}" + - "{{Game data/saves|Windows|{{p|game}}\\Saves\\{{note|note=Default}}|{{p|userprofile\\Documents}}\\My Games\\The Suffering\\Saves{{note|note=When using AiO Unofficial Patch and setting PerUserConfigAndSaves in {{p|game}}\\Torque.ini to 1}}}}" The Suffering of Larina: pageId: 68150 steam: 690090 -'The Suffering: Ties That Bind': +"The Suffering: Ties That Bind": gog: 1578481504 pageId: 59440 templates: - - '{{Game data/saves|Windows|{{p|game}}\Saves\}}' + - "{{Game data/saves|Windows|{{p|game}}\\Saves\\}}" The Suicide of Rachel Foster: gog: 1827190281 pageId: 154166 steam: 1057750 templates: - - >- - {{Game data/config|Windows|{{p|localappdata}}\Daedalic Entertainment GmbH\The Suicide of Rachel - Foster\Saved\SaveGames\GameOption.sav|{{p|localappdata}}\Daedalic Entertainment GmbH\The Suicide of Rachel - Foster\Saved\Config\WindowsNoEditor\}} - - >- - {{Game data/saves|Windows|{{p|localappdata}}\Daedalic Entertainment GmbH\The Suicide of Rachel - Foster\Saved\SaveGames\OverlookSave.sav}} + - "{{Game data/config|Windows|{{p|localappdata}}\\Daedalic Entertainment GmbH\\The Suicide of Rachel Foster\\Saved\\SaveGames\\GameOption.sav|{{p|localappdata}}\\Daedalic Entertainment GmbH\\The Suicide of Rachel Foster\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Daedalic Entertainment GmbH\\The Suicide of Rachel Foster\\Saved\\SaveGames\\OverlookSave.sav}}" The Sum of All Fears: pageId: 161769 steam: 19810 templates: - - '{{Game data/config|Windows|{{p|game}}\options.xml}}' - - '{{Game data/saves|Windows|{{p|game}}\Data\Save\game\}}' + - "{{Game data/config|Windows|{{p|game}}\\options.xml}}" + - "{{Game data/saves|Windows|{{p|game}}\\Data\\Save\\game\\}}" The Summoning: gog: 1962452900 pageId: 73754 steam: 2414350 templates: - - '{{Game data/saves|DOS|{{p|game}}\SAVES\}}' + - "{{Game data/saves|DOS|{{p|game}}\\SAVES\\}}" The Sun Never Sets: pageId: 63268 steam: 636370 @@ -173152,16 +168353,16 @@ The Super Spy: The Superfluous: pageId: 52854 steam: 507120 -'The Superlatives: Aetherfall': +"The Superlatives: Aetherfall": pageId: 74115 steam: 726230 -'The Superlatives: Shattered Worlds': +"The Superlatives: Shattered Worlds": pageId: 132086 steam: 1050210 The Supper: pageId: 156469 steam: 1171370 -'The Surfeit: Episode 1': +"The Surfeit: Episode 1": pageId: 179060 steam: 1432260 The Surge: @@ -173171,46 +168372,38 @@ The Surge: steamSide: - 646690 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\The Surge\}}' - - '{{Game data/saves|Windows|{{p|steam}}\userdata\{{p|uid}}\378540\remote\}}' - - '{{Game data/saves|Microsoft Store|{{p|userprofile\Documents}}\The Surge\save\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\The Surge\\}}" + - "{{Game data/saves|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\378540\\remote\\}}" + - "{{Game data/saves|Microsoft Store|{{p|userprofile\\Documents}}\\The Surge\\save\\}}" The Surge 2: gog: 1825987761 gogSide: - - 1940158994 - - 1650269977 + - 1096417304 - 1474822137 - 1522454794 - - 1840201291 - - 1096417304 - 1632664975 + - 1650269977 + - 1840201291 + - 1940158994 pageId: 133601 steam: 644830 steamSide: - - 1162230 - - 1137641 - 1068260 - 1135970 - 1135971 - 1135972 - 1137640 + - 1137641 + - 1162230 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\The Surge 2\settings.ini|{{p|userprofile\Documents}}\The - Surge 2\userbindings.json}} - - >- - {{Game data/config|Microsoft Store|{{p|userprofile\Documents}}\The Surge - 2\settings.ini|{{p|userprofile\Documents}}\The Surge 2\userbindings.json}} - - >- - {{Game data/config|Origin|{{p|userprofile\Documents}}\The Surge 2\settings.ini|{{p|userprofile\Documents}}\The - Surge 2\userbindings.json}} - - >- - {{Game data/config|Steam|{{p|userprofile\Documents}}\The Surge - 2\settings.ini|{{p|steam}}\userdata\{{p|uid}}\644830\remote\userbindings.json}} - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\The Surge 2\save\}}' - - '{{Game data/saves|Microsoft Store|{{p|userprofile\Documents}}\The Surge 2\save\}}' - - '{{Game data/saves|Origin|{{p|userprofile\Documents}}\The Surge 2\save\}}' - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\644830\remote\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\The Surge 2\\settings.ini|{{p|userprofile\\Documents}}\\The Surge 2\\userbindings.json}}" + - "{{Game data/config|Microsoft Store|{{p|userprofile\\Documents}}\\The Surge 2\\settings.ini|{{p|userprofile\\Documents}}\\The Surge 2\\userbindings.json}}" + - "{{Game data/config|Origin|{{p|userprofile\\Documents}}\\The Surge 2\\settings.ini|{{p|userprofile\\Documents}}\\The Surge 2\\userbindings.json}}" + - "{{Game data/config|Steam|{{p|userprofile\\Documents}}\\The Surge 2\\settings.ini|{{p|steam}}\\userdata\\{{p|uid}}\\644830\\remote\\userbindings.json}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\The Surge 2\\save\\}}" + - "{{Game data/saves|Microsoft Store|{{p|userprofile\\Documents}}\\The Surge 2\\save\\}}" + - "{{Game data/saves|Origin|{{p|userprofile\\Documents}}\\The Surge 2\\save\\}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\644830\\remote\\}}" The Surprising Adventures of Munchausen: pageId: 69068 steam: 696710 @@ -173220,14 +168413,14 @@ The Surrogate: The Survey: pageId: 52257 steam: 547910 -'The Survival Test VR: Defend To Death': +"The Survival Test VR: Defend To Death": pageId: 74465 steam: 718530 The Survivalists: pageId: 157229 steam: 897450 templates: - - '{{Game data/saves|Windows|{{p|userprofile\AppData\LocalLow}}\Team17 Digital Ltd_\The Survivalists\}}' + - "{{Game data/saves|Windows|{{p|userprofile\\AppData\\LocalLow}}\\Team17 Digital Ltd_\\The Survivalists\\}}" The Survivors: pageId: 95995 steam: 746070 @@ -173236,21 +168429,19 @@ The Swapper: pageId: 7798 steam: 231160 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Facepalm Games\The Swapper 1000\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Facepalm Games/The Swapper 1000/}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/Facepalm Games/The Swapper 1000/}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Facepalm Games\The Swapper 1000\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Facepalm Games/The Swapper 1000/}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/Facepalm Games/The Swapper 1000/}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Facepalm Games\\The Swapper 1000\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Facepalm Games/The Swapper 1000/}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/Facepalm Games/The Swapper 1000/}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Facepalm Games\\The Swapper 1000\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Facepalm Games/The Swapper 1000/}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/Facepalm Games/The Swapper 1000/}}" The Swindle: gog: 1436971395 pageId: 26795 steam: 369110 templates: - - >- - {{Game data/config|Windows|{{P|userprofile}}/AppData/LocalLow/Size Five Games/The - Swindle/SwindleSystemData.txt|{{P|hkcu}}/Software/Size Five Games/The Swindle/}} - - '{{Game data/saves|Windows|{{P|userprofile}}/AppData/LocalLow/Size Five Games/The Swindle/SwindleData.txt}}' + - "{{Game data/config|Windows|{{P|userprofile}}/AppData/LocalLow/Size Five Games/The Swindle/SwindleSystemData.txt|{{P|hkcu}}/Software/Size Five Games/The Swindle/}}" + - "{{Game data/saves|Windows|{{P|userprofile}}/AppData/LocalLow/Size Five Games/The Swindle/SwindleData.txt}}" The Sword: pageId: 153830 steam: 1200590 @@ -173262,9 +168453,9 @@ The Swords of Ditto: pageId: 63369 steam: 619780 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\The_Swords_of_Ditto\{{P|uid}}\preferences}}' - - '{{Game data/saves|Windows|{{p|LOCALAPPDATA}}\The_Swords_of_Ditto\{{P|uid}}\Slot *\}}' - - '{{Game data/saves|Steam|{{P|Steam}}\userdata\{{p|uid}}\619780\remote\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\The_Swords_of_Ditto\\{{P|uid}}\\preferences}}" + - "{{Game data/saves|Windows|{{p|LOCALAPPDATA}}\\The_Swords_of_Ditto\\{{P|uid}}\\Slot *\\}}" + - "{{Game data/saves|Steam|{{P|Steam}}\\userdata\\{{p|uid}}\\619780\\remote\\}}" The Swordsmen X: pageId: 102825 steam: 840140 @@ -173304,30 +168495,30 @@ The Talos Principle: - 322020 - 322021 - 322022 + - 330710 - 358470 - 360820 - - 330710 templates: - - '{{Game data/config|Epic Games Store|{{P|game}}\UserData\Talos.ini}}' - - '{{Game data/config|GOG.com|{{P|game}}\UserData\Talos.ini}}' - - '{{Game data/config|Steam|{{P|Steam}}/userdata/{{P|uid}}/257510/local/Talos.ini}}' - - '{{Game data/saves|Epic Games Store|{{P|game}}\UserData\{{P|uid}}\Talos\PlayerProfile.dat}}' - - '{{Game data/saves|GOG.com|{{P|game}}\UserData\{{P|uid}}\Talos\PlayerProfile.dat}}' - - '{{Game data/saves|Steam|{{P|Steam}}/userdata/{{P|uid}}/257510/remote/PlayerProfile.dat}}' + - "{{Game data/config|Epic Games Store|{{P|game}}\\UserData\\Talos.ini}}" + - "{{Game data/config|GOG.com|{{P|game}}\\UserData\\Talos.ini}}" + - "{{Game data/config|Steam|{{P|Steam}}/userdata/{{P|uid}}/257510/local/Talos.ini}}" + - "{{Game data/saves|Epic Games Store|{{P|game}}\\UserData\\{{P|uid}}\\Talos\\PlayerProfile.dat}}" + - "{{Game data/saves|GOG.com|{{P|game}}\\UserData\\{{P|uid}}\\Talos\\PlayerProfile.dat}}" + - "{{Game data/saves|Steam|{{P|Steam}}/userdata/{{P|uid}}/257510/remote/PlayerProfile.dat}}" The Talos Principle 2: pageId: 187347 steam: 835960 steamSide: - 2312690 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Talos2\Saved\Config\Windows\}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\Talos2\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\Talos2\\Saved\\Config\\Windows\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Talos2\\Saved\\SaveGames\\}}" The Talos Principle VR: pageId: 72806 steam: 552440 templates: - - '{{Game data/config|Steam|{{P|Steam}}\userdata\{{P|uid}}\552440\local\}}' - - '{{Game data/saves|Steam|{{P|Steam}}\userdata\{{P|uid}}\552440\remote\}}' + - "{{Game data/config|Steam|{{P|Steam}}\\userdata\\{{P|uid}}\\552440\\local\\}}" + - "{{Game data/saves|Steam|{{P|Steam}}\\userdata\\{{P|uid}}\\552440\\remote\\}}" The Tape: pageId: 45557 steam: 387930 @@ -173355,26 +168546,26 @@ The Technomancer: pageId: 32296 steam: 338390 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\The Technomancer\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\The Technomancer\{{code|*}}.fsav}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\The Technomancer\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\The Technomancer\\{{code|*}}.fsav}}" The Temple of Elemental Evil: gog: 1207658889 pageId: 14272 templates: - - '{{Game data/config|Windows|{{p|game}}\ToEE.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\modules\ToEE\Save\}}' + - "{{Game data/config|Windows|{{p|game}}\\ToEE.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\modules\\ToEE\\Save\\}}" The Temporal Invasion: pageId: 35160 steam: 454220 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Hybriona Labs\}}' + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Hybriona Labs\\}}" The Tenants: gog: 1511514579 pageId: 128712 steam: 1009560 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\SOFTWARE\Ancient Forge Studio\The Tenants}}' - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Ancient Forge Studio\The Tenants\Save Files}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\SOFTWARE\\Ancient Forge Studio\\The Tenants}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Ancient Forge Studio\\The Tenants\\Save Files}}" The Tension: pageId: 120717 steam: 766150 @@ -173388,36 +168579,36 @@ The Terminator: pageId: 188989 The Terminator 2029: pageId: 165523 -'The Terminator: Future Shock': +"The Terminator: Future Shock": pageId: 82572 templates: - - '{{Game data/config|DOS|{{p|game}}\CONTROLS.DAT}}' - - '{{Game data/saves|DOS|{{p|game}}\TFS_SAVE.*}}' -'The Terminator: Rampage': + - "{{Game data/config|DOS|{{p|game}}\\CONTROLS.DAT}}" + - "{{Game data/saves|DOS|{{p|game}}\\TFS_SAVE.*}}" +"The Terminator: Rampage": pageId: 75930 templates: - - '{{Game data/config|DOS|{{p|game}}\DEFAULT.CFG}}' - - '{{Game data/saves|DOS|{{p|game}}\GAME*.SAE|{{p|game}}\GAME*.SAV}}' -'The Terminator: SkyNET': + - "{{Game data/config|DOS|{{p|game}}\\DEFAULT.CFG}}" + - "{{Game data/saves|DOS|{{p|game}}\\GAME*.SAE|{{p|game}}\\GAME*.SAV}}" +"The Terminator: SkyNET": pageId: 24642 templates: - - '{{Game data/config|DOS|{{p|game}}\CONTROLS.DAT}}' - - '{{Game data/saves|DOS|{{p|game}}\TFS_SAVE.*}}' + - "{{Game data/config|DOS|{{p|game}}\\CONTROLS.DAT}}" + - "{{Game data/saves|DOS|{{p|game}}\\TFS_SAVE.*}}" The Terrible Old Man: pageId: 148019 steam: 1147030 steamSide: - 1147040 templates: - - '{{Game data/config|Windows|{{P|userprofile}}\Saved Games\The Terrible Old Man\acsetup.cfg}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\Saved Games\The Terrible Old Man\agssave.*}}' + - "{{Game data/config|Windows|{{P|userprofile}}\\Saved Games\\The Terrible Old Man\\acsetup.cfg}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\Saved Games\\The Terrible Old Man\\agssave.*}}" The Testament of Sherlock Holmes: gog: 1460731430 pageId: 10522 steam: 205650 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Frogwares\The Testament of Sherlock Holmes\setup.ini}}' - - '{{Game data/saves|Windows|{{P|appdata}}\Frogwares\The Testament of Sherlock Holmes\save\}}' + - "{{Game data/config|Windows|{{p|appdata}}\\Frogwares\\The Testament of Sherlock Holmes\\setup.ini}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\Frogwares\\The Testament of Sherlock Holmes\\save\\}}" The Testing Floor: pageId: 122776 steam: 952560 @@ -173425,14 +168616,14 @@ The Texas Chain Saw Massacre: pageId: 180529 steam: 1433140 templates: - - '{{Game data/config|Windows|%LOCALAPPDATA%\BBQGame\Saved\Config}}' - - '{{Game data/saves|Windows|%LOCALAPPDATA%\BBQGame\Saved\SaveGames}}' -'The Textorcist: The Story of Ray Bibbia': + - "{{Game data/config|Windows|%LOCALAPPDATA%\\BBQGame\\Saved\\Config}}" + - "{{Game data/saves|Windows|%LOCALAPPDATA%\\BBQGame\\Saved\\SaveGames}}" +"The Textorcist: The Story of Ray Bibbia": gog: 1591938132 pageId: 122594 steam: 940680 templates: - - '{{Game data/saves|Windows|{{P|localappdata}}\Textorcist\}}' + - "{{Game data/saves|Windows|{{P|localappdata}}\\Textorcist\\}}" The Theodore Adventures: pageId: 65273 steam: 656940 @@ -173442,29 +168633,29 @@ The Thin Silence: The Thing: pageId: 54187 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\SOFTWARE\{{P|wow64}}\Computer Artworks\The Thing\1.0\}}' - - '{{Game data/saves|Windows|{{p|game}}\bin\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\SOFTWARE\\{{P|wow64}}\\Computer Artworks\\The Thing\\1.0\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\bin\\}}" The Thing (1988): pageId: 158681 The Thing With Mistletoes: pageId: 57750 steam: 587290 templates: - - '{{Game data/config|Windows|{{p|game}}\renpy\config.py}}' - - '{{Game data/saves|Windows|{{p|appdata}}\renpy\The Thing With Mistletoes-1387675185\|{{p|game}}\game\saves\}}' -'The Thing: Space X': + - "{{Game data/config|Windows|{{p|game}}\\renpy\\config.py}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\renpy\\The Thing With Mistletoes-1387675185\\|{{p|game}}\\game\\saves\\}}" +"The Thing: Space X": pageId: 70174 steam: 709700 The Thirst of Hearts: pageId: 67259 steam: 689360 -The Three Musketeers - D'Artagnan & The 12 Jewels: +"The Three Musketeers - D'Artagnan & The 12 Jewels": pageId: 91793 steam: 827110 The Thrill of the Fight: pageId: 35142 steam: 494150 -'The Time Machine: Trapped in Time': +"The Time Machine: Trapped in Time": pageId: 179839 The Time Of Awakening: pageId: 128142 @@ -173481,11 +168672,11 @@ The Tiny Bang Story: pageId: 21924 steam: 96000 templates: - - '{{Game data/config|Windows|{{P|appdata}}\Colibri Games\The Tiny Bang Story\prefsdb.dat}}' - - '{{Game data/config|Linux|{{P|game}}/fullscreen.dat|{{P|game}}/*.sav}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Colibri Games\The Tiny Bang Story\prefsdb.dat}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/The Tiny Bang Story/*.sav}}' - - '{{Game data/saves|Linux|{{P|game}}/*.sav}}' + - "{{Game data/config|Windows|{{P|appdata}}\\Colibri Games\\The Tiny Bang Story\\prefsdb.dat}}" + - "{{Game data/config|Linux|{{P|game}}/fullscreen.dat|{{P|game}}/*.sav}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Colibri Games\\The Tiny Bang Story\\prefsdb.dat}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/The Tiny Bang Story/*.sav}}" + - "{{Game data/saves|Linux|{{P|game}}/*.sav}}" The Tiny Tale 2: pageId: 48835 steam: 340720 @@ -173496,13 +168687,13 @@ The Tomorrow War: pageId: 26662 steam: 289480 templates: - - '{{Game data/config|Windows|{{p|game}}\SavedGames\{{p|uid}}\Settings.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\SavedGames\{{p|uid}}\}}' + - "{{Game data/config|Windows|{{p|game}}\\SavedGames\\{{p|uid}}\\Settings.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\SavedGames\\{{p|uid}}\\}}" The Tone Rebellion: pageId: 139816 templates: - - '{{Game data/config|Windows|{{P|game}}\*.cfg}}' - - '{{Game data/saves|Windows|{{P|game}}\*.sav}}' + - "{{Game data/config|Windows|{{P|game}}\\*.cfg}}" + - "{{Game data/saves|Windows|{{P|game}}\\*.sav}}" The Tortoise and the Hare: pageId: 147144 The Torus Syndicate: @@ -173515,9 +168706,9 @@ The Touryst: pageId: 162332 steam: 1796410 templates: - - '{{Game data/config|Steam|{{P|steam}}\userdata\{{P|uid}}\1796410\remote\}}' - - '{{Game data/saves|Microsoft Store|{{P|localappdata}}\Packages\Shinen.TheTouryst_9y1eezmggh3fe\SystemAppData\wgs\}}' - - '{{Game data/saves|Steam|{{P|steam}}\userdata\{{P|uid}}\1796410\remote\}}' + - "{{Game data/config|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\1796410\\remote\\}}" + - "{{Game data/saves|Microsoft Store|{{P|localappdata}}\\Packages\\Shinen.TheTouryst_9y1eezmggh3fe\\SystemAppData\\wgs\\}}" + - "{{Game data/saves|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\1796410\\remote\\}}" The Tower: pageId: 49811 steam: 310870 @@ -173548,10 +168739,10 @@ The Tower of Five Hearts: The Tower of Worth: pageId: 132696 steam: 1054640 -'The Tower: Last Stand': +"The Tower: Last Stand": pageId: 52279 steam: 513170 -'The Tower: The Order of XII': +"The Tower: The Order of XII": pageId: 135853 steam: 1068770 The Town: @@ -173562,23 +168753,23 @@ The Town of Light: pageId: 44423 steam: 433100 templates: - - '{{Game data/config|Windows|{{P|game}}\ttol_Data\config.xml|{{p|hkcu}}\Software\LKA Srls\The Town of Light\}}' - - '{{Game data/saves|Windows|{{P|game}}\ttol_Data\extra.ettol}}' + - "{{Game data/config|Windows|{{P|game}}\\ttol_Data\\config.xml|{{p|hkcu}}\\Software\\LKA Srls\\The Town of Light\\}}" + - "{{Game data/saves|Windows|{{P|game}}\\ttol_Data\\extra.ettol}}" The Town with No Name: pageId: 24631 -The Toymaker's Apprentice: +"The Toymaker's Apprentice": pageId: 128437 steam: 1019080 The Trace: pageId: 72346 steam: 705930 -'The Trail: Frontier Challenge': +"The Trail: Frontier Challenge": pageId: 65758 steam: 584370 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\22cans\The Trail: Frontier Challenge}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\22cans\The Trail_ Frontier Challenge}}' -'The Train: Escape to Normandy': + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\22cans\\The Trail: Frontier Challenge}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\22cans\\The Trail_ Frontier Challenge}}" +"The Train: Escape to Normandy": gog: 1192250281 pageId: 165144 steam: 1315920 @@ -173614,12 +168805,12 @@ The Trials: pageId: 179842 steam: 1747030 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\TheTrials\Saved\Config\Windows\}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\TheTrials\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\TheTrials\\Saved\\Config\\Windows\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\TheTrials\\Saved\\SaveGames\\}}" The Trials of Olympus: pageId: 124092 steam: 985280 -'The Trials of Olympus III: King of the World': +"The Trials of Olympus III: King of the World": pageId: 130009 steam: 1043380 The Tritan Initiative: @@ -173650,11 +168841,9 @@ The Turing Test: steamSide: - 508340 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\VenusPrototype\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{P|game}}\TheTuringTest\savedata.sav}}' - - >- - {{Game data/saves|Microsoft - Store|{{P|localappdata}}\Packages\BulkheadInteractive.TheTuringTest_es3fzbrr4bc5r\SystemAppData\wgs}} + - "{{Game data/config|Windows|{{P|localappdata}}\\VenusPrototype\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{P|game}}\\TheTuringTest\\savedata.sav}}" + - "{{Game data/saves|Microsoft Store|{{P|localappdata}}\\Packages\\BulkheadInteractive.TheTuringTest_es3fzbrr4bc5r\\SystemAppData\\wgs}}" The Turkey of Christmas Past: pageId: 55259 steam: 565540 @@ -173667,21 +168856,21 @@ The Twiggles VR: The Twins: pageId: 156392 steam: 1218570 -'The Typing of The Dead: Overkill': +"The Typing of The Dead: Overkill": pageId: 11856 steam: 246580 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Sega\Typing of the Dead Overkill}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Sega\Typing of the Dead Overkill}}' + - "{{Game data/config|Windows|{{p|appdata}}\\Sega\\Typing of the Dead Overkill}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Sega\\Typing of the Dead Overkill}}" The Typing of the Dead: pageId: 80224 templates: - - '{{Game data/saves|Windows|The ''pol'' directory where you installed the game.}}' + - "{{Game data/saves|Windows|The 'pol' directory where you installed the game.}}" The Typing of the Dead 2: pageId: 80227 templates: - - '{{Game data/config|Windows|{{p|appdata}}\SEGA\THE TYPING OF THE DEAD II}}' - - '{{Game data/saves|Windows|{{p|appdata}}\SEGA\THE TYPING OF THE DEAD II}}' + - "{{Game data/config|Windows|{{p|appdata}}\\SEGA\\THE TYPING OF THE DEAD II}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\SEGA\\THE TYPING OF THE DEAD II}}" The USB Stick Found in the Grass: pageId: 176171 steam: 1379550 @@ -173691,7 +168880,7 @@ The Ugandan Warrior or Do You Know Da Wei?: The Ugly Christmas Sweater Game: pageId: 153402 steam: 1194190 -'The Ultimate 11: SNK Football Championship': +"The Ultimate 11: SNK Football Championship": pageId: 168837 The Ultimate Clicker Master of the Universe: pageId: 110310 @@ -173714,21 +168903,21 @@ The Ultra Code: The Unbreakable Gumball: pageId: 108948 steam: 833870 -'The Uncertain: Last Quiet Day': +"The Uncertain: Last Quiet Day": gog: 1517281470 pageId: 39079 steam: 406970 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\ComonGames\The Uncertain\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\TheUncertain\}}' -'The Uncertain: Light at the End': + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\ComonGames\\The Uncertain\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\TheUncertain\\}}" +"The Uncertain: Light at the End": gog: 1272776844 pageId: 113794 steam: 925570 -'The Uncertain: VR Experience': +"The Uncertain: VR Experience": pageId: 61600 steam: 602140 -'The Unclogging: An Unsanitary Saga': +"The Unclogging: An Unsanitary Saga": pageId: 66069 steam: 661410 The Under: @@ -173738,7 +168927,7 @@ The UnderGarden: pageId: 41044 steam: 9980 templates: - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\My Games\UnderGarden}}' + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\My Games\\UnderGarden}}" The Underground Man: pageId: 37062 steam: 513230 @@ -173752,9 +168941,9 @@ The Unfinished Swan: pageId: 163276 steam: 1206430 templates: - - '{{Game data/config|Steam|{{P|localappdata}}\Annapurna Interactive\The Unfinished Swan\Steam\{{P|uid}}\Config.xml}}' - - '{{Game data/saves|Steam|{{P|localappdata}}\Annapurna Interactive\The Unfinished Swan\Steam\{{P|uid}}\SAVE.BIN}}' -'The Unfolding Engine: Paint a Game': + - "{{Game data/config|Steam|{{P|localappdata}}\\Annapurna Interactive\\The Unfinished Swan\\Steam\\{{P|uid}}\\Config.xml}}" + - "{{Game data/saves|Steam|{{P|localappdata}}\\Annapurna Interactive\\The Unfinished Swan\\Steam\\{{P|uid}}\\SAVE.BIN}}" +"The Unfolding Engine: Paint a Game": pageId: 123509 steam: 884350 The Unholy Society: @@ -173771,7 +168960,7 @@ The Universim: pageId: 40175 steam: 352720 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Crytivo Games Inc_\The Universim}}' + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Crytivo Games Inc_\\The Universim}}" The Unknown City (Horror Begins Now.....Episode 1): pageId: 91202 steam: 819070 @@ -173782,8 +168971,8 @@ The Unliving: pageId: 126328 steam: 986040 steamSide: - - 2190670 - 2190660 + - 2190670 The Unreal Journey of Mongol: pageId: 66171 steam: 674530 @@ -173799,12 +168988,12 @@ The Unwelcomed: The Ur-Quan Masters: pageId: 28697 templates: - - '{{Game data/config|Windows|{{p|appdata}}\uqm}}' - - '{{Game data/config|OS X|{{p|osxhome}}/.uqm/}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.uqm/}}' - - '{{Game data/saves|Windows|{{p|appdata}}\uqm\save}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/.uqm/save}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.uqm/save}}' + - "{{Game data/config|Windows|{{p|appdata}}\\uqm}}" + - "{{Game data/config|OS X|{{p|osxhome}}/.uqm/}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.uqm/}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\uqm\\save}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/.uqm/save}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.uqm/save}}" The VR Museum of Fine Art: pageId: 41567 steam: 515020 @@ -173812,9 +169001,9 @@ The Vagrant: pageId: 62352 steam: 598700 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\TheVagrant\Saved\Config\WindowsNoEditor\*.ini}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\TheVagrant\Saved\SaveGames\*.sav}}' -'The Vale: Shadow of the Crown': + - "{{Game data/config|Windows|{{p|localappdata}}\\TheVagrant\\Saved\\Config\\WindowsNoEditor\\*.ini}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\TheVagrant\\Saved\\SaveGames\\*.sav}}" +"The Vale: Shadow of the Crown": pageId: 135826 renamedFrom: - The Vale @@ -173826,11 +169015,11 @@ The Valiant: pageId: 177676 steam: 959860 steamSide: - - 2392910 - 2182280 + - 2392910 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Kite Games\The Valiant\}}' - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\Kite Games\The Valiant\SaveGames\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Kite Games\\The Valiant\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\Kite Games\\The Valiant\\SaveGames\\}}" The Valley: pageId: 148679 steam: 1169500 @@ -173850,30 +169039,26 @@ The Vanishing of Ethan Carter: pageId: 19722 steam: 258520 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\The Vanishing of Ethan - Carter\AstronautsGame\Config\}} - - >- - {{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\The Vanishing of Ethan - Carter\AstronautsGame\SaveData\SaveGame_0.sav}} + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\The Vanishing of Ethan Carter\\AstronautsGame\\Config\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\The Vanishing of Ethan Carter\\AstronautsGame\\SaveData\\SaveGame_0.sav}}" The Vanishing of Ethan Carter Redux: gog: 1207665373 pageId: 28603 steam: 400430 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\EthanCarter\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\The Vanishing of Ethan Carter Redux\SavedGames\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\EthanCarter\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\The Vanishing of Ethan Carter Redux\\SavedGames\\}}" The Vanishing of Ethan Carter VR: pageId: 172631 steam: 457880 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\EthanCarterVR\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{p|userprofile\documents}}\My Games\The Vanishing of Ethan Carter VR\SavedGames\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\EthanCarterVR\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\documents}}\\My Games\\The Vanishing of Ethan Carter VR\\SavedGames\\}}" The Varginha Incident: pageId: 163127 templates: - - '{{Game data/config|DOS|C:\IV\INFO0.SAV}}' - - '{{Game data/saves|DOS|C:\IV\}}' + - "{{Game data/config|DOS|C:\\IV\\INFO0.SAV}}" + - "{{Game data/saves|DOS|C:\\IV\\}}" The Veteran VR: pageId: 138799 steam: 574530 @@ -173886,7 +169071,7 @@ The Videokid: The Vigilant Villa: pageId: 168154 steam: 1254900 -'The Villa: Allison''s Diary': +"The Villa: Allison's Diary": pageId: 88816 steam: 808210 The Village: @@ -173915,8 +169100,8 @@ The Void: pageId: 16202 steam: 37000 templates: - - '{{Game data/config|Windows|{{p|game}}\data\settings.xml|{{p|programdata}}\Ice-pick Lodge\Void\}}' - - '{{Game data/saves|Windows|{{p|public}}\Documents\My Games\Void\}}' + - "{{Game data/config|Windows|{{p|game}}\\data\\settings.xml|{{p|programdata}}\\Ice-pick Lodge\\Void\\}}" + - "{{Game data/saves|Windows|{{p|public}}\\Documents\\My Games\\Void\\}}" The Void Rains upon Her Heart: pageId: 81653 renamedFrom: @@ -173925,7 +169110,7 @@ The Void Rains upon Her Heart: - The Void Rains Upon Her Heart steam: 790060 templates: - - '{{Game data/saves|Windows|{{p|localappdata}}\The_Void_Rains_Upon_Her_Heart\save files\}}' + - "{{Game data/saves|Windows|{{p|localappdata}}\\The_Void_Rains_Upon_Her_Heart\\save files\\}}" The Void of Desires: pageId: 149095 steam: 1152230 @@ -173933,8 +169118,8 @@ The Voidness: pageId: 191050 steam: 2276850 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\Steelkrill Studio\The Voidness}}' - - '{{Game data/saves|Windows|{{p|hkcu}}\Software\Steelkrill Studio\The Voidness}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Steelkrill Studio\\The Voidness}}" + - "{{Game data/saves|Windows|{{p|hkcu}}\\Software\\Steelkrill Studio\\The Voidness}}" The Volcano: pageId: 148723 steam: 1047840 @@ -173950,34 +169135,32 @@ The Walk: The Walking Dead Onslaught: pageId: 137024 steam: 1082680 -'The Walking Dead: A New Frontier': +"The Walking Dead: A New Frontier": gog: 1401438095 pageId: 33354 steam: 536220 templates: - - >- - {{Game data/saves|Windows|{{p|userprofile\Documents}}\Telltale Games\The Walking Dead - A New Frontier (Season - 3)\|{{p|userprofile\Documents}}\Telltale Games\The Walking Dead A New Frontier\}} -'The Walking Dead: Betrayal': + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Telltale Games\\The Walking Dead - A New Frontier (Season 3)\\|{{p|userprofile\\Documents}}\\Telltale Games\\The Walking Dead A New Frontier\\}}" +"The Walking Dead: Betrayal": pageId: 190701 steam: 1877320 -'The Walking Dead: Michonne': +"The Walking Dead: Michonne": gog: 1455785261 pageId: 31576 steam: 429570 templates: - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Telltale Games\The Walking Dead Michonne\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Telltale Games/The Walking Dead Michonne/}}' -'The Walking Dead: Saints & Sinners': + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Telltale Games\\The Walking Dead Michonne\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Telltale Games/The Walking Dead Michonne/}}" +"The Walking Dead: Saints & Sinners": pageId: 151060 steam: 916840 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\TWD\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\TWD\Saved\SaveGames\}}' -'The Walking Dead: Saints & Sinners - Chapter 2: Retribution': + - "{{Game data/config|Windows|{{P|localappdata}}\\TWD\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\TWD\\Saved\\SaveGames\\}}" +"The Walking Dead: Saints & Sinners - Chapter 2: Retribution": pageId: 181805 steam: 1947500 -'The Walking Dead: Season One': +"The Walking Dead: Season One": gog: 1432207977 gogSide: - 1432207890 @@ -173986,45 +169169,43 @@ The Walking Dead Onslaught: steamSide: - 207620 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Telltale Games\The Walking Dead\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Telltale Games/TheWalkingDead/}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Telltale Games\The Walking Dead\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Telltale Games/TheWalkingDead/}}' -'The Walking Dead: Season Two': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Telltale Games\\The Walking Dead\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Telltale Games/TheWalkingDead/}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Telltale Games\\The Walking Dead\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Telltale Games/TheWalkingDead/}}" +"The Walking Dead: Season Two": gog: 1432208124 pageId: 11916 steam: 261030 templates: - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Telltale Games\The Walking Dead Season Two\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Telltale Games/The Walking Dead - Season Two/}}' -'The Walking Dead: Survival Instinct': + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Telltale Games\\The Walking Dead Season Two\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Telltale Games/The Walking Dead - Season Two/}}" +"The Walking Dead: Survival Instinct": pageId: 5674 steam: 220050 templates: - - '{{Game data/config|Windows|{{p|game}}\editdata\system}}' - - '{{Game data/saves|Windows|{{p|game}}\SavedData}}' -'The Walking Dead: The Final Season': + - "{{Game data/config|Windows|{{p|game}}\\editdata\\system}}" + - "{{Game data/saves|Windows|{{p|game}}\\SavedData}}" +"The Walking Dead: The Final Season": gog: 2031519202 pageId: 98442 steam: 866800 templates: - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Telltale Games\The Walking Dead The Final Season\}}' -'The Walking Dead: The Telltale Definitive Series': + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Telltale Games\\The Walking Dead The Final Season\\}}" +"The Walking Dead: The Telltale Definitive Series": gog: 1487652667 pageId: 133848 steam: 1449690 templates: - - >- - {{Game data/config|Windows|{{P|userprofile\Documents}}\Telltale Games\The Walking Dead The Telltale Definitive - Series\prefs.prop}} - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\Telltale Games\TWDTTDS\}}' + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\Telltale Games\\The Walking Dead The Telltale Definitive Series\\prefs.prop}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\Telltale Games\\TWDTTDS\\}}" The Walking Evil: pageId: 156899 steam: 1215870 The Walking Vegetables: pageId: 70204 steam: 704840 -'The Walking Zombie: Dead City': +"The Walking Zombie: Dead City": pageId: 76315 steam: 746140 The Wall: @@ -174042,35 +169223,35 @@ The Walsingham Files - Chapter 2: The Walt Disney World Explorer: pageId: 86940 templates: - - '{{Game data/saves|Windows|{{registry|{{path|hklm}}\SOFTWARE\Disney Interactive\Walt Disney World Explorer\#.0}}}}' + - "{{Game data/saves|Windows|{{registry|{{path|hklm}}\\SOFTWARE\\Disney Interactive\\Walt Disney World Explorer\\#.0}}}}" The Wanderer: pageId: 62645 steam: 530860 -'The Wanderer: Frankenstein’s Creature': +"The Wanderer: Frankenstein’s Creature": pageId: 148085 steam: 966670 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\SOFTWARE\Arte\Frankenstein\}}' - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Arte\Frankenstein\gdata.bytes}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\SOFTWARE\\Arte\\Frankenstein\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Arte\\Frankenstein\\gdata.bytes}}" The Wandering Village: pageId: 181550 steam: 1121640 templates: - - '{{Game data/config|Steam|{{p|userprofile\appdata\locallow}}\Stray Fawn Studio\The Wandering Village}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/com.strayfawnstudio.thewanderingvillage}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Stray Fawn Studio/The Wandering Village}}' - - '{{Game data/saves|Steam|{{p|userprofile\appdata\locallow}}\Stray Fawn Studio\The Wandering Village\Saves}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/com.strayfawnstudio.thewanderingvillage/Saves}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Stray Fawn Studio/The Wandering Village/Saves}}' + - "{{Game data/config|Steam|{{p|userprofile\\appdata\\locallow}}\\Stray Fawn Studio\\The Wandering Village}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/com.strayfawnstudio.thewanderingvillage}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Stray Fawn Studio/The Wandering Village}}" + - "{{Game data/saves|Steam|{{p|userprofile\\appdata\\locallow}}\\Stray Fawn Studio\\The Wandering Village\\Saves}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/com.strayfawnstudio.thewanderingvillage/Saves}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Stray Fawn Studio/The Wandering Village/Saves}}" The Wanderings Dragon: pageId: 104351 steam: 913310 -'The War God: The Artifact': +"The War God: The Artifact": pageId: 65616 steam: 659830 The War in Heaven: pageId: 91651 -'The War of the Worlds: Andromeda': +"The War of the Worlds: Andromeda": pageId: 112176 steam: 910430 The Ward: @@ -174088,17 +169269,17 @@ The Warlock of Firetop Mountain: pageId: 36614 steam: 324740 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Tin Man Games\The Warlock of Firetop Mountain}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Tin Man Games/The Warlock of Firetop Mountain}}' - - '{{Game data/saves|Windows|{{p|game}}\Documents}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/Warlock of Firetop Mountain Save Data}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Tin Man Games\\The Warlock of Firetop Mountain}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Tin Man Games/The Warlock of Firetop Mountain}}" + - "{{Game data/saves|Windows|{{p|game}}\\Documents}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/Warlock of Firetop Mountain Save Data}}" The Warrior War: pageId: 103657 steam: 882460 The Warrior of Treasures: pageId: 79263 steam: 768060 -'The Warrior of Treasures 2: Skull Hunter': +"The Warrior of Treasures 2: Skull Hunter": pageId: 110182 steam: 923240 The Warriorlock: @@ -174116,16 +169297,16 @@ The Watchers: The Watchmaker: pageId: 36263 templates: - - '{{Game data/config|Windows|{{p|game}}\Saves\Options.dat}}' - - '{{Game data/saves|Windows|{{p|game}}\Saves\Wm##.sav|{{p|game}}\Saves\WmSav##.tga}}' + - "{{Game data/config|Windows|{{p|game}}\\Saves\\Options.dat}}" + - "{{Game data/saves|Windows|{{p|game}}\\Saves\\Wm##.sav|{{p|game}}\\Saves\\WmSav##.tga}}" The Watchmaker (2018): pageId: 72595 steam: 504430 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}/AppData/Local/TheWatchmaker/Saved/SaveGames}}' + - "{{Game data/saves|Windows|{{p|userprofile}}/AppData/Local/TheWatchmaker/Saved/SaveGames}}" The Waters Above: pageId: 120411 -'The Waters Above: Prelude': +"The Waters Above: Prelude": pageId: 99424 steam: 885650 The Watson-Scott Test: @@ -174138,26 +169319,26 @@ The Way: pageId: 34178 steam: 311010 templates: - - '{{Game data/config|Linux|{{p|linuxhome}}/.theway/settings.pref}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.theway/savedata.sav}}' + - "{{Game data/config|Linux|{{p|linuxhome}}/.theway/settings.pref}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.theway/savedata.sav}}" The Way We All Go: pageId: 33676 steam: 352610 The Way of Cinnamon: pageId: 140930 steam: 1107130 -'The Way of Kings: Escape the Shattered Plains': +"The Way of Kings: Escape the Shattered Plains": pageId: 87205 steam: 773770 The Way of Life: pageId: 34511 steam: 310370 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\CyberCoconut}}' -'The Way of Life: Definitive Edition': + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\CyberCoconut}}" +"The Way of Life: Definitive Edition": pageId: 87431 steam: 404960 -'The Way of Love: Sub Zero': +"The Way of Love: Sub Zero": pageId: 74391 steam: 461590 The Way of Wrath: @@ -174168,7 +169349,7 @@ The Way of the Pixelated Fist: pageId: 48082 steam: 365340 templates: - - '{{Game data/saves|Windows|{{p|localappdata}}\The_Way_of_the_Pixelated_Fist\saves\}}' + - "{{Game data/saves|Windows|{{p|localappdata}}\\The_Way_of_the_Pixelated_Fist\\saves\\}}" The Way to Defeat the Archfiend: pageId: 87527 steam: 782180 @@ -174177,16 +169358,16 @@ The Waylanders: pageId: 122906 steam: 957710 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Waylanders\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\Waylanders\Saved\SaveGames}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\Waylanders\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Waylanders\\Saved\\SaveGames}}" The Weaponographist: pageId: 25248 steam: 329240 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\WeaponographistSaves\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/WeaponographistSaves}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\WeaponographistSaves}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/WeaponographistSaves}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\WeaponographistSaves\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/WeaponographistSaves}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\WeaponographistSaves}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/WeaponographistSaves}}" The Wendigo: pageId: 58789 steam: 603230 @@ -174209,48 +169390,32 @@ The Wheel of Fortune: pageId: 173437 steam: 1810230 templates: - - >- - {{Game - data/config|Windows|{{P|appdata}}\renpy\TheWheelofFortune-1500377632\persistent|{{P|game}}\game\saves\persistent}} - - '{{Game data/saves|Windows|{{P|appdata}}\renpy\TheWheelofFortune-1500377632\*.save}}' + - "{{Game data/config|Windows|{{P|appdata}}\\renpy\\TheWheelofFortune-1500377632\\persistent|{{P|game}}\\game\\saves\\persistent}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\renpy\\TheWheelofFortune-1500377632\\*.save}}" The Wheel of Time: gog: 1584652180 pageId: 26844 templates: - - '{{Game data/config|Windows|{{p|game}}\System\WoT.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\Save}}' + - "{{Game data/config|Windows|{{p|game}}\\System\\WoT.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\Save}}" The Whispered World: gog: 1207659019 pageId: 14280 steam: 268540 templates: - - >- - {{Game data/config|Windows|{{p|localappdata}}\Daedalic Entertainment GmbH\The Whispered World Special - Edition\config.ini}} - - >- - {{Game data/config|OS X|{{P|osxhome}}/Library/Application Support/Daedalic Entertainment GmbH/The Whispered World - Special Edition/config.ini}} - - >- - {{Game data/config|Linux|{{P|xdgdatahome}}/Daedalic Entertainment GmbH/The Whispered World Special - Edition/config.ini}} - - >- - {{Game data/saves|Windows|{{p|localappdata}}\Daedalic Entertainment GmbH\The Whispered World Special - Edition\Savegames}} - - >- - {{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/Daedalic Entertainment GmbH/The Whispered World - Special Edition/Savegames/}} - - >- - {{Game data/saves|Linux|{{P|xdgdatahome}}/Daedalic Entertainment GmbH/The Whispered World Special - Edition/Savegames/}} + - "{{Game data/config|Windows|{{p|localappdata}}\\Daedalic Entertainment GmbH\\The Whispered World Special Edition\\config.ini}}" + - "{{Game data/config|OS X|{{P|osxhome}}/Library/Application Support/Daedalic Entertainment GmbH/The Whispered World Special Edition/config.ini}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/Daedalic Entertainment GmbH/The Whispered World Special Edition/config.ini}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Daedalic Entertainment GmbH\\The Whispered World Special Edition\\Savegames}}" + - "{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/Daedalic Entertainment GmbH/The Whispered World Special Edition/Savegames/}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/Daedalic Entertainment GmbH/The Whispered World Special Edition/Savegames/}}" The Whisperer: gog: 1426240474 pageId: 188670 steam: 1697940 templates: - - >- - {{Game data/config|Windows|{{P|hkcu}}\Software\Studio Chien d'Or\The - Whisperer|{{P|userprofile\appdata\locallow}}\Studio Chien d'Or\The Whisperer\data\ini.es3}} - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Studio Chien d''Or\The Whisperer\data\save.es3}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Studio Chien d'Or\\The Whisperer|{{P|userprofile\\appdata\\locallow}}\\Studio Chien d'Or\\The Whisperer\\data\\ini.es3}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Studio Chien d'Or\\The Whisperer\\data\\save.es3}}" The Whisperer in Darkness: pageId: 51443 steam: 435000 @@ -174262,24 +169427,24 @@ The White Chamber: pageId: 14506 steam: 299080 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Studio Trophis\the white chamber}}' - - '{{Game data/saves|Windows|{{P|game}}\saves}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Studio Trophis\\the white chamber}}" + - "{{Game data/saves|Windows|{{P|game}}\\saves}}" The White Door: gog: 2078008465 pageId: 145057 steam: 1145960 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Rusty Lake\TheWhiteDoor\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Rusty Lake\TheWhiteDoor\saveGame.sav}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Rusty Lake\\TheWhiteDoor\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Rusty Lake\\TheWhiteDoor\\saveGame.sav}}" The White Laboratory: pageId: 70796 steam: 235520 -'The Wiggles: The Wiggly Circus': +"The Wiggles: The Wiggly Circus": pageId: 164125 -'The Wiggles: Wiggle Bay': +"The Wiggles: Wiggle Bay": pageId: 146765 templates: - - '{{Game data/config|Windows|{{P|game}}\WiggleBay.ini}}' + - "{{Game data/config|Windows|{{P|game}}\\WiggleBay.ini}}" The Wild Age: pageId: 128340 steam: 732160 @@ -174290,13 +169455,13 @@ The Wild Eight: pageId: 40165 steam: 526160 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\8 Points\The Wild Eight\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\TheWildEight\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\8 Points\\The Wild Eight\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\TheWildEight\\}}" The Wild Eternal: pageId: 53580 steam: 554810 templates: - - '{{Game data/saves|Steam|{{p|userprofile\Documents}}\My Games\The Wild Eternal\.saves\}}' + - "{{Game data/saves|Steam|{{p|userprofile\\Documents}}\\My Games\\The Wild Eternal\\.saves\\}}" The Wild at Heart: gog: 1704949980 pageId: 139743 @@ -174304,8 +169469,8 @@ The Wild at Heart: - The Wild At Heart steam: 1093290 templates: - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\Moonlight Kids\The Wild At Heart}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Moonlight Kids/The Wild At Heart}}' + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\Moonlight Kids\\The Wild At Heart}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Moonlight Kids/The Wild At Heart}}" The Will of a Single Tale: pageId: 92969 steam: 836940 @@ -174321,9 +169486,9 @@ The Window Box: pageId: 126084 steam: 950850 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Sundew Studios\The Window Box\}}' - - '{{Game data/saves|Windows|{{P|hkcu}}\Software\Sundew Studios\The Window Box\}}' -The Winter's Deal - Frosty Edition: + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Sundew Studios\\The Window Box\\}}" + - "{{Game data/saves|Windows|{{P|hkcu}}\\Software\\Sundew Studios\\The Window Box\\}}" +"The Winter's Deal - Frosty Edition": pageId: 156039 steam: 1199800 The Wire: @@ -174340,23 +169505,23 @@ The Witch & the 66 Mushrooms: renamedFrom: - Witch & 66 Mushrooms steam: 891170 -The Witch's House MV: +"The Witch's House MV": gog: 1813215380 pageId: 121178 steam: 885810 templates: - - '{{Game data/config|Windows|{{p|game}}/save/config.rpgsave}}' - - '{{Game data/saves|Windows|{{p|game}}/save/save*.rpgsave}}' -The Witch's Isle: + - "{{Game data/config|Windows|{{p|game}}/save/config.rpgsave}}" + - "{{Game data/saves|Windows|{{p|game}}/save/save*.rpgsave}}" +"The Witch's Isle": pageId: 69585 steam: 701860 -The Witch's Love Diary: +"The Witch's Love Diary": gog: 1868296162 pageId: 141487 steam: 972160 templates: - - '{{Game data/saves|Windows|{{p|game}}\save}}' -The Witch's Yarn: + - "{{Game data/saves|Windows|{{p|game}}\\save}}" +"The Witch's Yarn": pageId: 50482 steam: 287740 The Witchcraft of Skysword - 天翔と剣のウィッチクラフト: @@ -174369,56 +169534,50 @@ The Witcher: steamSide: - 9810 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\CD Projekt RED\Witcher\Settings\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\The Witcher\saves\}}' - - >- - {{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/com.cdprojektred.TheWitcher/GameDocuments/The - Witcher/saves/}} -'The Witcher 2: Assassins of Kings': + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\CD Projekt RED\\Witcher\\Settings\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\The Witcher\\saves\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/com.cdprojektred.TheWitcher/GameDocuments/The Witcher/saves/}}" +"The Witcher 2: Assassins of Kings": gog: 1207658930 pageId: 251 steam: 20920 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Witcher 2\Config\}}' - - >- - {{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/com.vpltd.TheWitcher2/GameDocuments/Witcher - 2/config/}} - - '{{Game data/config|Linux|{{P|xdgdatahome}}/cdprojektred/witcher2/GameDocuments/Witcher 2/config/}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Witcher 2\gamesaves\}}' - - >- - {{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/com.vpltd.TheWitcher2/GameDocuments/Witcher - 2/gamesaves/}} - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/cdprojektred/witcher2/GameDocuments/Witcher 2/gamesaves/}}' - - '{{Game data/saves|Steam|{{P|Steam}}/userdata/{{P|uid}}/20920/remote/}}' -'The Witcher 3: Wild Hunt': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Witcher 2\\Config\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/com.vpltd.TheWitcher2/GameDocuments/Witcher 2/config/}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/cdprojektred/witcher2/GameDocuments/Witcher 2/config/}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Witcher 2\\gamesaves\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/com.vpltd.TheWitcher2/GameDocuments/Witcher 2/gamesaves/}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/cdprojektred/witcher2/GameDocuments/Witcher 2/gamesaves/}}" + - "{{Game data/saves|Steam|{{P|Steam}}/userdata/{{P|uid}}/20920/remote/}}" +"The Witcher 3: Wild Hunt": gog: 1495134320 gogSide: - - 1207664663 - 1207664643 + - 1207664663 - 1427195509 - - 1441620909 - - 1441355562 - 1427206931 + - 1430743168 + - 1441355562 + - 1441620909 - 1636895344 - 1640424747 - - 1430743168 pageId: 17653 steam: 292030 steamSide: - 355880 - - 499450 - 378648 + - 499450 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\The Witcher 3\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\The Witcher 3\gamesaves\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\The Witcher 3\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\The Witcher 3\\gamesaves\\}}" The Witcher Adventure Game: gog: 1207666883 pageId: 18472 steam: 303800 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Canexplode\The Witcher Board Game\}}' - - '{{Game data/saves|Windows|{{P|hkcu}}\Software\CD Projekt RED S.A.\The Witcher AG\}}' -The Witches' Tea Party: + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Canexplode\\The Witcher Board Game\\}}" + - "{{Game data/saves|Windows|{{P|hkcu}}\\Software\\CD Projekt RED S.A.\\The Witcher AG\\}}" +"The Witches' Tea Party": pageId: 65748 steam: 594950 The Withering: @@ -174429,25 +169588,23 @@ The Witness: pageId: 23083 steam: 210970 templates: - - '{{Game data/config|Windows|{{P|game}}\data\Local.variables|{{P|appdata}}\The Witness\Launcher.variables}}' - - >- - {{Game data/config|OS X|{{P|game}}/The Witness.app/Contents/Resources/data/Local.variables|~/Library/Application - Support/The Witness/Launcher.variables}} - - '{{Game data/saves|Windows|{{P|appdata}}\The Witness\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/The Witness/}}' + - "{{Game data/config|Windows|{{P|game}}\\data\\Local.variables|{{P|appdata}}\\The Witness\\Launcher.variables}}" + - "{{Game data/config|OS X|{{P|game}}/The Witness.app/Contents/Resources/data/Local.variables|~/Library/Application Support/The Witness/Launcher.variables}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\The Witness\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/The Witness/}}" The Witness (1983): pageId: 154949 The Wizard and the Slug: gog: 1573344587 pageId: 177213 steam: 1271170 -The Wizard's Lair: +"The Wizard's Lair": pageId: 41872 steam: 507360 -The Wizard's Pen: +"The Wizard's Pen": pageId: 41316 steam: 3580 -The Wizard's Tower: +"The Wizard's Tower": pageId: 125633 steam: 971740 The Wizards: @@ -174464,33 +169621,33 @@ The Wolf Among Us: pageId: 11243 steam: 250320 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Telltale Games\TheWolfAmongUs\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Telltale Games/TheWolfAmongUs/}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Telltale Games\TheWolfAmongUs\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Telltale Games/TheWolfAmongUs/}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Telltale Games\\TheWolfAmongUs\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Telltale Games/TheWolfAmongUs/}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Telltale Games\\TheWolfAmongUs\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Telltale Games/TheWolfAmongUs/}}" The Wolf Among Us 2: pageId: 154605 -The Wolf's Bite: +"The Wolf's Bite": pageId: 65738 steam: 656040 templates: - - '{{Game data/saves|Windows|{{p|appdata}}\Eric Bernier, David Coughlin, Karen Teixeira, Fat Bard\WolfsBite\}}' -'The Wonderful 101: Remastered': + - "{{Game data/saves|Windows|{{p|appdata}}\\Eric Bernier, David Coughlin, Karen Teixeira, Fat Bard\\WolfsBite\\}}" +"The Wonderful 101: Remastered": pageId: 157799 steam: 1190400 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\TheWonderful101\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\TheWonderful101\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\TheWonderful101\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\TheWonderful101\\}}" The Wonderful End of the World: pageId: 18328 steam: 15500 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\The Wonderful End of the World\prefs.dat}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\The Wonderful End of the World\prefs.dat}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\The Wonderful End of the World\\prefs.dat}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\The Wonderful End of the World\\prefs.dat}}" The Woods: pageId: 91038 steam: 792670 -'The Woods: VR Escape the Room': +"The Woods: VR Escape the Room": pageId: 128342 steam: 1025740 The Word Is Not the Thing: @@ -174501,15 +169658,15 @@ The Word Is Not the Thing: The Works of Mercy: pageId: 55622 steam: 523640 -'The World 3: Rise of Demon': +"The World 3: Rise of Demon": pageId: 54523 steam: 563730 -'The World II: Hunting Boss': +"The World II: Hunting Boss": pageId: 49384 renamedFrom: - The World II (Hunting BOSS) steam: 323240 -The World Is Ruled According to Sexual Prowess So I'm Playing Dirty to Get My Harem Episode 1: +"The World Is Ruled According to Sexual Prowess So I'm Playing Dirty to Get My Harem Episode 1": pageId: 156246 steam: 1191790 The World Named Fred: @@ -174520,15 +169677,15 @@ The World Next Door: pageId: 105587 steam: 755470 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\SOFTWARE\RoseCityGames\TheWorldNextDoor}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\RoseCityGames\TheWorldNextDoor\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\SOFTWARE\\RoseCityGames\\TheWorldNextDoor}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\RoseCityGames\\TheWorldNextDoor\\}}" The World is Your Weapon: pageId: 141200 steam: 1056490 -'The World of Labyrinths: Labyronia': +"The World of Labyrinths: Labyronia": pageId: 95393 steam: 864740 -'The World of Legend VR: Episode 1': +"The World of Legend VR: Episode 1": pageId: 76520 steam: 696510 The Worm: @@ -174542,19 +169699,19 @@ The Wranglers: steam: 817600 The Wrestling Code: pageId: 180430 -'The Writer: A Change of Identity': +"The Writer: A Change of Identity": pageId: 51708 steam: 533770 The X-Files Game: pageId: 3889 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Fox Interactive\The X-Files\Preferences}}' - - '{{Game data/saves|Windows|{{p|game}}\*.x}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Fox Interactive\\The X-Files\\Preferences}}" + - "{{Game data/saves|Windows|{{p|game}}\\*.x}}" The Yawhg: pageId: 7534 steam: 269030 templates: - - '{{Game data/config|Windows|{{p|game}}\settings.ini}}' + - "{{Game data/config|Windows|{{p|game}}\\settings.ini}}" The Yellow King: pageId: 150663 steam: 1149400 @@ -174567,11 +169724,11 @@ The Yellow Quiz: The You Testament: pageId: 90884 templates: - - '{{Game data/config|Windows|{{p|game}}\Options.dat}}' + - "{{Game data/config|Windows|{{p|game}}\\Options.dat}}" The Youthdrainers: pageId: 40255 steam: 393230 -'The Z Axis: Continuum': +"The Z Axis: Continuum": pageId: 100358 steam: 748990 The Zachtronics Solitaire Collection: @@ -174588,8 +169745,8 @@ The Zodiac Trial: pageId: 173369 steam: 1513120 templates: - - '{{Game data/config|Windows|{{P|appdata}}\renpy\TheNewImprovedZodiacTrial-1597461491\persistent}}' - - '{{Game data/saves|Windows|{{P|appdata}}\RenPy\TheNewImprovedZodiacTrial-1597461491\*.save}}' + - "{{Game data/config|Windows|{{P|appdata}}\\renpy\\TheNewImprovedZodiacTrial-1597461491\\persistent}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\RenPy\\TheNewImprovedZodiacTrial-1597461491\\*.save}}" The Zombie Killing Cyborg: pageId: 99276 steam: 879270 @@ -174610,15 +169767,15 @@ The cake is surrounded by shackles: The detective ChuLin: pageId: 112828 steam: 941330 -'The diary of the cheating young married woman, Yuka.': +"The diary of the cheating young married woman, Yuka.": pageId: 149352 steam: 1154700 The earth is a better person than me: pageId: 146100 steam: 959710 templates: - - '{{Game data/config|Windows|{{p|game}}\renpy\config.py}}' - - '{{Game data/saves|Windows|{{p|game}}\game\saves\*.save}}' + - "{{Game data/config|Windows|{{p|game}}\\renpy\\config.py}}" + - "{{Game data/saves|Windows|{{p|game}}\\game\\saves\\*.save}}" The explorer of night: pageId: 130157 steam: 1017580 @@ -174649,7 +169806,7 @@ The m0rg VS keys: The mysterious Case of Dr. Jekyll and Mr. Hyde: pageId: 155544 steam: 1215900 -The planet's rescuer: +"The planet's rescuer": pageId: 125312 steam: 915300 The point G. How to find?: @@ -174658,7 +169815,7 @@ The point G. How to find?: The power of chaos: pageId: 138711 steam: 1079040 -'The young mathematician: Easy difficulty': +"The young mathematician: Easy difficulty": pageId: 112576 steam: 935860 The.Thend.End: @@ -174668,7 +169825,7 @@ TheBlu: pageId: 37933 steam: 2217730 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Wevr, Inc.\theBlu}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Wevr, Inc.\\theBlu}}" TheFisher Online: pageId: 142125 steam: 1094780 @@ -174717,14 +169874,14 @@ TheWorld: TheWraithTrails: pageId: 90352 steam: 809800 -'Thea 2: The Shattering': +"Thea 2: The Shattering": gog: 1582025844 pageId: 112996 steam: 606230 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\MuHa Games\Thea2}}' - - '{{Game data/saves|Windows|{{P|game}}\Thea2_Data\Profiles}}' -'Thea: The Awakening': + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\MuHa Games\\Thea2}}" + - "{{Game data/saves|Windows|{{P|game}}\\Thea2_Data\\Profiles}}" +"Thea: The Awakening": gog: 1452699415 pageId: 34268 steam: 378720 @@ -174734,9 +169891,9 @@ TheWraithTrails: - 488140 - 493950 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\MuHa Games\Thea: The Awakening}}' - - '{{Game data/saves|Windows|{{p|game}}\Thea_Data\Saves}}' -'Theater Commander: The Coming Wars, Modern Warfare': + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\MuHa Games\\Thea: The Awakening}}" + - "{{Game data/saves|Windows|{{p|game}}\\Thea_Data\\Saves}}" +"Theater Commander: The Coming Wars, Modern Warfare": pageId: 141808 steam: 1117490 Theatre of Doom: @@ -174749,13 +169906,13 @@ Theatre of War: Theatre of War (2006): pageId: 51082 steam: 46290 -'Theatre of War 2: Africa 1943': +"Theatre of War 2: Africa 1943": pageId: 51080 steam: 46340 -'Theatre of War 2: Kursk 1943': +"Theatre of War 2: Kursk 1943": pageId: 51078 steam: 46360 -'Theatre of War 3: Korea': +"Theatre of War 3: Korea": pageId: 41001 steam: 63960 Theatre of the Absurd: @@ -174774,31 +169931,31 @@ Them and Us: - Them & Us steam: 915600 templates: - - '{{Game data/config|Windows|{{p|game}}\UDKGame\Config\}}' - - '{{Game data/saves|Windows|{{p|game}}\Binaries\SaveData\}}' -Them's Fightin' Herds: + - "{{Game data/config|Windows|{{p|game}}\\UDKGame\\Config\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\Binaries\\SaveData\\}}" +"Them's Fightin' Herds": pageId: 82379 steam: 574980 templates: - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Them''s Fightin'' Herds\}}' + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Them's Fightin' Herds\\}}" Theme Hospital: gog: 1207659026 pageId: 1253 templates: - - '{{Game data/config|DOS|{{p|game}}\HOSPITAL.CFG}}' - - '{{Game data/config|Windows|{{p|game}}\HOSPITAL.CFG}}' - - '{{Game data/saves|DOS|{{p|game}}\Save}}' - - '{{Game data/saves|Windows|{{p|game}}\Save}}' + - "{{Game data/config|DOS|{{p|game}}\\HOSPITAL.CFG}}" + - "{{Game data/config|Windows|{{p|game}}\\HOSPITAL.CFG}}" + - "{{Game data/saves|DOS|{{p|game}}\\Save}}" + - "{{Game data/saves|Windows|{{p|game}}\\Save}}" Theme Park: gog: 1207660423 pageId: 14053 templates: - - '{{Game data/saves|DOS|{{p|game}}\SAVE}}' + - "{{Game data/saves|DOS|{{p|game}}\\SAVE}}" Theme Park Inc.: pageId: 26122 templates: - - '{{Game data/config|Windows|{{p|game}}\data}}' - - '{{Game data/saves|Windows|{{p|game}}\save}}' + - "{{Game data/config|Windows|{{p|game}}\\data}}" + - "{{Game data/saves|Windows|{{p|game}}\\save}}" Theme Park Simulator: pageId: 157013 steam: 1202780 @@ -174811,30 +169968,25 @@ Theme Park Worker: Theme Park World: pageId: 322 templates: - - >- - {{Game data/config|Windows|{{p|game}}\data
{{p|programfiles}}\Bullfrog\Theme Park World\data (using default - install directory)}} - - >- - {{Game data/saves|Windows|{{p|game}}\save
{{p|programfiles}}\Bullfrog\Theme Park World\save (using default - install directory under XP and earlier)
{{p|localappdata}}\Bullfrog\Theme Park World\save (using default - install directory under Vista and later)}} + - "{{Game data/config|Windows|{{p|game}}\\data
{{p|programfiles}}\\Bullfrog\\Theme Park World\\data (using default install directory)}}" + - "{{Game data/saves|Windows|{{p|game}}\\save
{{p|programfiles}}\\Bullfrog\\Theme Park World\\save (using default install directory under XP and earlier)
{{p|localappdata}}\\Bullfrog\\Theme Park World\\save (using default install directory under Vista and later)}}" TheoTown: pageId: 138750 steam: 1084020 templates: - - '{{Game data/config|Windows|C:\Users\your username\TheoTown}}' - - '{{Game data/saves|Windows|C:\Users\your username\TheoTown}}' + - "{{Game data/config|Windows|C:\\Users\\your username\\TheoTown}}" + - "{{Game data/saves|Windows|C:\\Users\\your username\\TheoTown}}" Theocracy: pageId: 75256 templates: - - '{{Game data/config|Windows|{{p|game}}\.gamesettings|{{p|game}}\mvos.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\save\*.tsg}}' + - "{{Game data/config|Windows|{{p|game}}\\.gamesettings|{{p|game}}\\mvos.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\save\\*.tsg}}" Theocracy (2022): pageId: 186681 steam: 2195530 templates: - - '{{Game data/config|Windows|{{p|game}}\DATA\options.dat}}' - - '{{Game data/saves|Windows|{{p|game}}\SAVEGAME}}' + - "{{Game data/config|Windows|{{p|game}}\\DATA\\options.dat}}" + - "{{Game data/saves|Windows|{{p|game}}\\SAVEGAME}}" Theorem: pageId: 92069 steam: 838490 @@ -174844,27 +169996,25 @@ Theory of Fear: There Came an Echo: pageId: 22803 steam: 319740 -'There Is No Game: Jam Edition 2015': +"There Is No Game: Jam Edition 2015": pageId: 164533 steam: 1241700 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\SOFTWARE\DrawMeAPixel\Ting_Jam\}}' -'There Is No Game: Wrong Dimension': + - "{{Game data/config|Windows|{{P|hkcu}}\\SOFTWARE\\DrawMeAPixel\\Ting_Jam\\}}" +"There Is No Game: Wrong Dimension": gog: 1271319284 pageId: 164528 steam: 1240210 templates: - - >- - {{Game - data/config|Windows|{{P|userprofile\appdata\locallow}}\DrawMeAPixel\Ting\{{p|uid}}\Global.dat|{{P|hkcu}}\Software\DrawMeAPixel\Ting\}} - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\DrawMeAPixel\Ting\{{p|uid}}\SaveFile.dat}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/DrawMeAPixel/Ting/{{p|uid}}}}' + - "{{Game data/config|Windows|{{P|userprofile\\appdata\\locallow}}\\DrawMeAPixel\\Ting\\{{p|uid}}\\Global.dat|{{P|hkcu}}\\Software\\DrawMeAPixel\\Ting\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\DrawMeAPixel\\Ting\\{{p|uid}}\\SaveFile.dat}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/DrawMeAPixel/Ting/{{p|uid}}}}" There Is No Light: gog: 2065955024 pageId: 145463 steam: 1132980 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\ZelartGames\ThereIsNoLight}}' + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\ZelartGames\\ThereIsNoLight}}" There Is No Tomorrow: pageId: 81774 steam: 787120 @@ -174888,7 +170038,7 @@ There Was A Caveman: There Will Be Ink: pageId: 138834 steam: 1020450 -There Won't be Light: +"There Won't be Light": pageId: 183796 steam: 1846940 There is No GreenDam: @@ -174897,13 +170047,13 @@ There is No GreenDam: There is a Thief in my House: pageId: 150146 steam: 1160050 -There's Poop In My Soup: +"There's Poop In My Soup": pageId: 38436 steam: 449540 -There's Poop In My Soup - Pooping with Friends: +"There's Poop In My Soup - Pooping with Friends": pageId: 59095 steam: 603720 -There's a Butcher Around: +"There's a Butcher Around": pageId: 135295 steam: 1077430 Therian Saga: @@ -174921,7 +170071,7 @@ These Nights in Cairo: Theseus: pageId: 73256 steam: 677330 -'Theseus: Journey to Athens': +"Theseus: Journey to Athens": pageId: 127704 steam: 983640 Thetaball: @@ -174936,8 +170086,8 @@ They Always Run: pageId: 169615 steam: 1585440 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\SOFTWARE\Alawar\They Always Run}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\Alawar\They Always Run\Saves\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\SOFTWARE\\Alawar\\They Always Run}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\Alawar\\They Always Run\\Saves\\}}" They Are Beasts: pageId: 139428 steam: 1091090 @@ -174946,8 +170096,8 @@ They Are Billions: pageId: 63046 steam: 644930 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\They Are Billions\Configuration.txt}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\They Are Billions\Saves\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\They Are Billions\\Configuration.txt}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\They Are Billions\\Saves\\}}" They Are Coming!: pageId: 177774 steam: 1736270 @@ -174958,18 +170108,18 @@ They Bleed Pixels: pageId: 5517 steam: 211260 templates: - - '{{Game data/config|Windows|{{p|game}}\config.txt}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/TheyBleedPixels/}}' - - '{{Game data/config|Linux|{{P|xdgconfighome}}/TheyBleedPixels/}}' - - '{{Game data/saves|Windows|{{p|game}}\savedata\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/TheyBleedPixels/}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/TheyBleedPixels/}}' - - '{{Game data/saves|Steam|{{P|game}}/{{p|uid}}/|{{p|game}}/savedata/|{{p|steam}}/userdata/{{p|uid}}/211260/remote/}}' + - "{{Game data/config|Windows|{{p|game}}\\config.txt}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/TheyBleedPixels/}}" + - "{{Game data/config|Linux|{{P|xdgconfighome}}/TheyBleedPixels/}}" + - "{{Game data/saves|Windows|{{p|game}}\\savedata\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/TheyBleedPixels/}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/TheyBleedPixels/}}" + - "{{Game data/saves|Steam|{{P|game}}/{{p|uid}}/|{{p|game}}/savedata/|{{p|steam}}/userdata/{{p|uid}}/211260/remote/}}" They Breathe: pageId: 50200 steam: 294140 templates: - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\The Working Parts\They Breathe\theybreathe.sav}}' + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\The Working Parts\\They Breathe\\theybreathe.sav}}" They Came From The Moon: pageId: 45079 steam: 432150 @@ -174981,7 +170131,7 @@ They Came from a Communist Planet: renamedFrom: - They Came From a Communist Planet steam: 1176460 -They Can't Stop All Of Us: +"They Can't Stop All Of Us": pageId: 144851 steam: 1142130 They Have Horns: @@ -174990,10 +170140,10 @@ They Have Horns: They That Feast: pageId: 124165 steam: 963910 -They'll Find You: +"They'll Find You": pageId: 143983 steam: 1129670 -They're Alive!: +"They're Alive!": pageId: 140056 Thibalryn: pageId: 110450 @@ -175022,74 +170172,64 @@ Thief: - 265193 - 306190 templates: - - '{{Game data/config|Windows|{{P|game}}\ThiefGame\Config\|{{p|hkcu}}\Software\Eidos Montreal\Thief\}}' - - >- - {{Game data/config|OS X|{{p|osxhome}}/Library/Containers/com.feralinteractive.thief/Data/Library/Application - Support/Feral Interactive/Thief - Shadow Edition/VFS/Local/Config/ThiefGame.ini}} - - '{{Game data/saves|GOG.com|{{p|userprofile}}\Documents\My Games\Thief\}}' - - >- - {{Game data/saves|OS X|{{p|osxhome}}/Library/Containers/com.feralinteractive.thief/Data/Library/Application - Support/Feral Interactive/Thief - Shadow Edition/VFS/Storage}} - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/239160/remote/}}' -'Thief II: The Metal Age': + - "{{Game data/config|Windows|{{P|game}}\\ThiefGame\\Config\\|{{p|hkcu}}\\Software\\Eidos Montreal\\Thief\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Containers/com.feralinteractive.thief/Data/Library/Application Support/Feral Interactive/Thief - Shadow Edition/VFS/Local/Config/ThiefGame.ini}}" + - "{{Game data/saves|GOG.com|{{p|userprofile}}\\Documents\\My Games\\Thief\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Containers/com.feralinteractive.thief/Data/Library/Application Support/Feral Interactive/Thief - Shadow Edition/VFS/Storage}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/239160/remote/}}" +"Thief II: The Metal Age": gog: 1207659001 pageId: 2797 steam: 211740 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/saves|Windows|{{p|game}}\SAVES}}' + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\SAVES}}" Thief Simulator: gog: 2020235723 pageId: 70399 steam: 704850 templates: - - '{{Game data/config|Windows|{{P|HKCU}}\Software\Noble Muffins\Thief Simulator}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Noble Muffins\Thief Simulator}}' - - >- - {{Game data/saves|OS X| ~/Library/Containers/com.noblemuffins.thiefsimulator/Data/Library/Application - Support/com.noblemuffins.thiefsimulator/ - - OR - - ~/Library/Application Support/unity.DefaultCompany.UFPS/}} + - "{{Game data/config|Windows|{{P|HKCU}}\\Software\\Noble Muffins\\Thief Simulator}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Noble Muffins\\Thief Simulator}}" + - "{{Game data/saves|OS X| ~/Library/Containers/com.noblemuffins.thiefsimulator/Data/Library/Application Support/com.noblemuffins.thiefsimulator/\nOR\n~/Library/Application Support/unity.DefaultCompany.UFPS/}}" Thief Simulator 2: pageId: 190867 steam: 1332720 templates: - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\CookieDev\Thief Simulator 2\}}' + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\CookieDev\\Thief Simulator 2\\}}" Thief Simulator VR: pageId: 128617 steam: 1019550 templates: - - '{{Game data/config|Windows|{{p|userprofile\appdata\locallow}}\Game Boom VR\Thief Simulator VR\Profile_0}}' - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\Game Boom VR\Thief Simulator VR\Profile_0}}' + - "{{Game data/config|Windows|{{p|userprofile\\appdata\\locallow}}\\Game Boom VR\\Thief Simulator VR\\Profile_0}}" + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\Game Boom VR\\Thief Simulator VR\\Profile_0}}" Thief Town: pageId: 49183 steam: 331220 -'Thief of Thieves: Season One': +"Thief of Thieves: Season One": pageId: 90586 steam: 635390 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Rival Games Ltd\Thief of Thieves\}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\My Games\Rival Games\ToT\SaveGames\{{P|uid}}\}}' -'Thief: Deadly Shadows': + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Rival Games Ltd\\Thief of Thieves\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\My Games\\Rival Games\\ToT\\SaveGames\\{{P|uid}}\\}}" +"Thief: Deadly Shadows": gog: 1207659036 pageId: 2920 steam: 6980 templates: - - '{{Game data/config|Windows|{{P|game}}\System\Default.ini}}' - - '{{Game data/saves|Windows|{{P|game}}\save\SaveGames}}' -'Thief: The Dark Project': + - "{{Game data/config|Windows|{{P|game}}\\System\\Default.ini}}" + - "{{Game data/saves|Windows|{{P|game}}\\save\\SaveGames}}" +"Thief: The Dark Project": gog: 1207658997 pageId: 146 steam: 211600 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/saves|Windows|{{p|game}}\SAVES}}' + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\SAVES}}" Thievery: pageId: 99978 steam: 882700 -'Thieves'' Gambit: The Curse of the Black Cat': +"Thieves' Gambit: The Curse of the Black Cat": pageId: 49488 steam: 328550 Thigh Climbers: @@ -175104,12 +170244,12 @@ Thimbleweed Park: steamSide: - 638280 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Terrible Toybox\Thimbleweed Park\Prefs.json}}' - - '{{Game data/config|OS X|{{P|osxhome}}/Library/Application Support/Terrible Toybox/Thimbleweed Park/Prefs.json}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/Terrible Toybox/Thimbleweed Park/Prefs.json}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Terrible Toybox\Thimbleweed Park\}}' - - '{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/Terrible Toybox/Thimbleweed Park/}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/Terrible Toybox/Thimbleweed Park/}}' + - "{{Game data/config|Windows|{{p|appdata}}\\Terrible Toybox\\Thimbleweed Park\\Prefs.json}}" + - "{{Game data/config|OS X|{{P|osxhome}}/Library/Application Support/Terrible Toybox/Thimbleweed Park/Prefs.json}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/Terrible Toybox/Thimbleweed Park/Prefs.json}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Terrible Toybox\\Thimbleweed Park\\}}" + - "{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/Terrible Toybox/Thimbleweed Park/}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/Terrible Toybox/Thimbleweed Park/}}" Thin Judgment: pageId: 64783 steam: 661460 @@ -175138,13 +170278,8 @@ Think of the Children: pageId: 57351 steam: 573600 templates: - - >- - {{Game data/config|Windows|{{P|userprofile}}\AppData\LocalLow\Jammed Up Studios\Think of the - Children\BetaSettings.TOTC|{{P|userprofile}}\AppData\LocalLow\Jammed Up Studios\Think of the - Children\ControllerSettings.TOTC|{{P|hkcu}}\Software\Jammed Up Studios\Think of the Children\}} - - >- - {{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Jammed Up Studios\Think of the - Children\BetaSave.TOTC}} + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Jammed Up Studios\\Think of the Children\\BetaSettings.TOTC|{{P|userprofile}}\\AppData\\LocalLow\\Jammed Up Studios\\Think of the Children\\ControllerSettings.TOTC|{{P|hkcu}}\\Software\\Jammed Up Studios\\Think of the Children\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Jammed Up Studios\\Think of the Children\\BetaSave.TOTC}}" ThinkAhead: pageId: 63787 steam: 655180 @@ -175152,7 +170287,7 @@ Thinking with Time Machine: pageId: 179555 steam: 286080 templates: - - '{{Game data/saves|Windows|{{p|game}}\TWTM\save}}' + - "{{Game data/saves|Windows|{{p|game}}\\TWTM\\save}}" Thinnest Judgment: pageId: 141608 steam: 1042000 @@ -175189,12 +170324,12 @@ Thirty Flights of Loving: pageId: 4641 steam: 214700 templates: - - '{{Game data/config|Windows|{{p|game}}\baseq2\kmq2config.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\baseq2\save\}}' + - "{{Game data/config|Windows|{{p|game}}\\baseq2\\kmq2config.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\baseq2\\save\\}}" Thirty Two: pageId: 122034 steam: 977290 -Thirty Years' War: +"Thirty Years' War": pageId: 33930 steam: 477750 This Book Is a Dungeon: @@ -175203,7 +170338,7 @@ This Book Is a Dungeon: - This Book Is A Dungeon steam: 404690 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' + - "{{Game data/config|Windows|{{p|game}}\\}}" This Child of Mine: pageId: 88075 steam: 813290 @@ -175221,21 +170356,17 @@ This Is the Police: pageId: 35694 steam: 443810 templates: - - >- - {{Game data/config|Windows|{{P|userprofile}}\AppData\LocalLow\Weappy\This Is The - Police\Settings.xml|{{P|hkcu}}\Software\Weappy\This Is The Police\}} - - '{{Game data/config|Linux|{{p|xdgconfighome}}/unity3d/Weappy/This Is The Police/}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Weappy\This Is The Police\}}' - - '{{Game data/saves|Linux|{{p|xdgconfighome}}/unity3d/Weappy/This Is The Police/}}' + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Weappy\\This Is The Police\\Settings.xml|{{P|hkcu}}\\Software\\Weappy\\This Is The Police\\}}" + - "{{Game data/config|Linux|{{p|xdgconfighome}}/unity3d/Weappy/This Is The Police/}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Weappy\\This Is The Police\\}}" + - "{{Game data/saves|Linux|{{p|xdgconfighome}}/unity3d/Weappy/This Is The Police/}}" This Is the Police 2: gog: 1544762955 pageId: 81928 steam: 785740 templates: - - >- - {{Game data/config|Windows|{{P|userprofile}}\AppData\LocalLow\Weappy\This Is The Police - 2\Settings.xml|{{P|hkcu}}\Software\Weappy\This Is The Police 2\}} - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Weappy\This Is The Police 2\Save.xml}}' + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Weappy\\This Is The Police 2\\Settings.xml|{{P|hkcu}}\\Software\\Weappy\\This Is The Police 2\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Weappy\\This Is The Police 2\\Save.xml}}" This Is the President: gog: 1346542028 pageId: 173499 @@ -175244,15 +170375,13 @@ This Land Is My Land: pageId: 142145 steam: 1069640 templates: - - >- - {{Game data/config|Windows|{{P|hkcu}}\Software\Game Labs\This Land Is My - Land|{{p|userprofile}}\AppData\LocalLow\Game Labs\This Land Is My Land\}} - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Game Labs\This Land Is My Land\SavedGames\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Game Labs\\This Land Is My Land|{{p|userprofile}}\\AppData\\LocalLow\\Game Labs\\This Land Is My Land\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Game Labs\\This Land Is My Land\\SavedGames\\}}" This Means War!: pageId: 19864 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/saves|Windows|{{p|game}}\Maps\Tmw*.sav}}' + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\Maps\\Tmw*.sav}}" This Merchant Life: pageId: 65110 steam: 666730 @@ -175272,33 +170401,33 @@ This War of Mine: gog: 1207666873 gogSide: - 1109065057 + - 1195141526 - 1224169156 - 1513615737 - - 1195141526 - - 1722846437 - 1689362899 + - 1722846437 pageId: 20659 steam: 282070 steamSide: - - 481090 - 348040 + - 481090 - 750030 + - 750031 - 974610 - 1125630 - - 750031 templates: - - '{{Game data/config|Windows|{{p|appdata}}\11bitstudios\This War Of Mine\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/This War of Mine/}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.This War of Mine/}}' - - '{{Game data/saves|Windows|{{p|appdata}}\11bitstudios\This War Of Mine\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/This War of Mine/}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.This War of Mine/}}' - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/282070/remote/}}' + - "{{Game data/config|Windows|{{p|appdata}}\\11bitstudios\\This War Of Mine\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/This War of Mine/}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.This War of Mine/}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\11bitstudios\\This War Of Mine\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/This War of Mine/}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.This War of Mine/}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/282070/remote/}}" This World Unknown: pageId: 38665 steam: 521540 templates: - - '{{Game data/saves|Windows|{{p|appdata}}\RenPy\This-World-Unknown-1.0}}' + - "{{Game data/saves|Windows|{{p|appdata}}\\RenPy\\This-World-Unknown-1.0}}" This is Pool: pageId: 136967 steam: 1028320 @@ -175317,7 +170446,7 @@ This is the Zodiac Speaking: This was for you.: pageId: 144121 steam: 1067930 -'Thistledown: A Tragedy of Blood.': +"Thistledown: A Tragedy of Blood.": pageId: 136022 steam: 1055960 Tho maz: @@ -175327,17 +170456,17 @@ Thomas Was Alone: pageId: 4694 steam: 220780 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Mike Bithell\Thomas Was Alone\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Preferences/unity.Mike Bithel.Thomas Was Alone.plist}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Mike Bithell/Thomas Was Alone/}}' - - '{{Game data/saves|Windows|{{p|hkcu}}\Software\Mike Bithell\Thomas Was Alone\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Preferences/unity.Mike Bithel.Thomas Was Alone.plist}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Mike Bithell/Thomas Was Alone/}}' -Thor's Hammer: + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Mike Bithell\\Thomas Was Alone\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Preferences/unity.Mike Bithel.Thomas Was Alone.plist}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Mike Bithell/Thomas Was Alone/}}" + - "{{Game data/saves|Windows|{{p|hkcu}}\\Software\\Mike Bithell\\Thomas Was Alone\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Preferences/unity.Mike Bithel.Thomas Was Alone.plist}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Mike Bithell/Thomas Was Alone/}}" +"Thor's Hammer": pageId: 16681 templates: - - '{{Game data/config|DOS|{{p|game}}\THOR.CFG}}' - - '{{Game data/saves|DOS|{{p|game}}\THOR*.SAV}}' + - "{{Game data/config|DOS|{{p|game}}\\THOR.CFG}}" + - "{{Game data/saves|DOS|{{p|game}}\\THOR*.SAV}}" Thorne - Death Merchants: pageId: 37734 steam: 451920 @@ -175358,8 +170487,8 @@ Those Who Remain: pageId: 81798 steam: 715380 templates: - - '{{Game data/config|Windows|{{P|userprofile}}\AppData\LocalLow\Camel101\Those Who Remain\MyConfig\}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Camel101\Those Who Remain\MySave\}}' + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Camel101\\Those Who Remain\\MyConfig\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Camel101\\Those Who Remain\\MySave\\}}" Those crazy crows: pageId: 149765 steam: 1149340 @@ -175367,8 +170496,8 @@ Thoth: pageId: 51300 steam: 510620 templates: - - '{{Game data/config|Windows|{{p|game}}\settings.txt|{{p|hkcu}}\Software\CarlsenGames\THOTH\}}' - - '{{Game data/saves|Windows|{{p|game}}\THOTH.sav}}' + - "{{Game data/config|Windows|{{p|game}}\\settings.txt|{{p|hkcu}}\\Software\\CarlsenGames\\THOTH\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\THOTH.sav}}" Thousand Threads: pageId: 122880 steam: 972770 @@ -175377,13 +170506,13 @@ Thousands of Years Later: steam: 453900 Thrash Rally: pageId: 168801 -'ThreadSpace: Hyperbol': +"ThreadSpace: Hyperbol": pageId: 41389 steam: 2720 Threads of Destiny: pageId: 45395 steam: 424870 -'ThreatGEN: Red vs. Blue': +"ThreatGEN: Red vs. Blue": pageId: 126020 steam: 994670 Three Candyberry Match: @@ -175392,7 +170521,7 @@ Three Candyberry Match: Three Cards to Midnight: pageId: 188066 templates: - - '{{Game data/saves|Windows|{{P|game}}\save}}' + - "{{Game data/saves|Windows|{{P|game}}\\save}}" Three Days: pageId: 43087 steam: 375580 @@ -175400,12 +170529,12 @@ Three Dead Zed: pageId: 49991 steam: 291390 templates: - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\SavedGames\Three Dead Zed\3DZ\Player1\3dz.sav}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/ThreeDeadZed/3DZ/Player1/3dz.sav}}' + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\SavedGames\\Three Dead Zed\\3DZ\\Player1\\3dz.sav}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/ThreeDeadZed/3DZ/Player1/3dz.sav}}" Three Digits: pageId: 46881 steam: 390570 -'Three Fourths Home: Extended Edition': +"Three Fourths Home: Extended Edition": pageId: 48421 steam: 344500 Three Heroes: @@ -175416,10 +170545,10 @@ Three Kingdoms 2019: renamedFrom: - 阿达三国志2018 竖版 Three Kingdoms 2018 steam: 952120 -'Three Kingdoms VR: Jade Knight': +"Three Kingdoms VR: Jade Knight": pageId: 76157 steam: 731120 -'Three Kingdoms: The Last Warlord': +"Three Kingdoms: The Last Warlord": pageId: 56946 steam: 577230 Three Life: @@ -175448,12 +170577,12 @@ Thrill Rollercoasters: Thrills & Chills - Roller Coasters: pageId: 40080 steam: 520270 -'Thrillville: Off the Rails': +"Thrillville: Off the Rails": gog: 1505509034 pageId: 32137 steam: 6080 templates: - - '{{Game data/saves|Steam|{{p|localappdata}}\LucasArts\Thrillville 07}}' + - "{{Game data/saves|Steam|{{p|localappdata}}\\LucasArts\\Thrillville 07}}" Thrive: pageId: 164634 steam: 1779200 @@ -175472,27 +170601,27 @@ Throne of Darkness: gog: 2060341617 pageId: 131833 templates: - - '{{Game data/config|Windows|{{p|game}}\Config}}' - - '{{Game data/saves|Windows|{{p|game}}\Saved}}' + - "{{Game data/config|Windows|{{p|game}}\\Config}}" + - "{{Game data/saves|Windows|{{p|game}}\\Saved}}" Throne of Lies: pageId: 59854 steam: 595280 Throne of the Dead: pageId: 67895 steam: 681020 -'Thronebreaker: The Witcher Tales': +"Thronebreaker: The Witcher Tales": gog: 1297352383 pageId: 120667 steam: 973760 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\CDProjektRED\Thronebreaker\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\CDProjektRED\Thronebreaker\SaveData\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\CDProjektRED\\Thronebreaker\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\CDProjektRED\\Thronebreaker\\SaveData\\}}" Thronefall: pageId: 189080 steam: 2239150 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Grizzly Games\Thronefall\ThroneSave.sav}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Grizzly Games/Thronefall/ThroneSave.sav}}' + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Grizzly Games\\Thronefall\\ThroneSave.sav}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Grizzly Games/Thronefall/ThroneSave.sav}}" Throttle Powah VR: pageId: 62980 steam: 639220 @@ -175500,21 +170629,19 @@ Through Abandoned: pageId: 47176 steam: 389270 templates: - - >- - {{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\KrutovGames\1 Through Abandoned - The Underground - City\saves}} + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\KrutovGames\\1 Through Abandoned - The Underground City\\saves}}" Through Abandoned 2. The Forest: pageId: 41709 steam: 513340 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\KrutovGames\2 Through Abandoned - The Forest\saves}}' -'Through Abandoned: The Refuge': + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\KrutovGames\\2 Through Abandoned - The Forest\\saves}}" +"Through Abandoned: The Refuge": pageId: 128513 steam: 1012460 Through Blocks: pageId: 73442 steam: 698610 -'Through The Dark: Prologue': +"Through The Dark: Prologue": pageId: 62780 steam: 635270 Through The Dust: @@ -175535,12 +170662,9 @@ Through the Darkest of Times: pageId: 126448 steam: 1003090 templates: - - >- - {{Game - data/config|Windows|{{P|game}}\TtDoT_Data\StreamingAssets\SaveGames\settings.json|{{P|hkcu}}\Software\Paintbucket - Games\TtDoT\}} - - '{{Game data/config|Steam|{{P|steam}}\userdata\{{P|uid}}\1003090\remote\settings.json}}' - - '{{Game data/saves|Windows|{{P|game}}\TtDoT_Data\StreamingAssets\SaveGames\}}' + - "{{Game data/config|Windows|{{P|game}}\\TtDoT_Data\\StreamingAssets\\SaveGames\\settings.json|{{P|hkcu}}\\Software\\Paintbucket Games\\TtDoT\\}}" + - "{{Game data/config|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\1003090\\remote\\settings.json}}" + - "{{Game data/saves|Windows|{{P|game}}\\TtDoT_Data\\StreamingAssets\\SaveGames\\}}" Through the Mirror: pageId: 55590 steam: 548720 @@ -175552,8 +170676,8 @@ Through the Woods: pageId: 41938 steam: 368430 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Antagonist\ThroughTheWoods\|{{P|game}}\Through the Woods_Data\}}' - - '{{Game data/saves|Windows|{{P|game}}\Through the Woods_Data\Savefile.json}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Antagonist\\ThroughTheWoods\\|{{P|game}}\\Through the Woods_Data\\}}" + - "{{Game data/saves|Windows|{{P|game}}\\Through the Woods_Data\\Savefile.json}}" ThrounnelVR: pageId: 36612 steam: 509310 @@ -175569,7 +170693,7 @@ Thrunt XL: Thrushbriar Hall: pageId: 121298 steam: 749150 -'Thrust & Shoot: Flight School': +"Thrust & Shoot: Flight School": pageId: 66279 steam: 663100 Thrusty Ship: @@ -175588,26 +170712,26 @@ Thumper: pageId: 36942 steam: 356400 templates: - - '{{Game data/config|Windows|{{p|game}}\settings.sav}}' - - '{{Game data/saves|Windows|{{p|game}}\savedata\{{p|uid}}\}}' - - '{{Game data/saves|Microsoft Store|{{P|localappdata}}\Packages\DroolLLC.Thumper_4a0z1ykhafvhy\SystemAppData\wgs\}}' + - "{{Game data/config|Windows|{{p|game}}\\settings.sav}}" + - "{{Game data/saves|Windows|{{p|game}}\\savedata\\{{p|uid}}\\}}" + - "{{Game data/saves|Microsoft Store|{{P|localappdata}}\\Packages\\DroolLLC.Thumper_4a0z1ykhafvhy\\SystemAppData\\wgs\\}}" Thunder Blade: pageId: 147697 Thunder Brigade: pageId: 31223 templates: - - '{{Game data/config|Windows|{{p|game}}\tbrigade.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\Campaign Savegames}}' + - "{{Game data/config|Windows|{{p|game}}\\tbrigade.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\Campaign Savegames}}" Thunder Chase: pageId: 80905 steam: 762270 -'Thunder Gun: Revenge of the Mutants': +"Thunder Gun: Revenge of the Mutants": pageId: 40096 steam: 492400 Thunder Kid: pageId: 114594 steam: 944590 -'Thunder Kid II: Null Mission': +"Thunder Kid II: Null Mission": pageId: 156485 steam: 1210330 Thunder Paw: @@ -175625,13 +170749,13 @@ Thunder Tier One: pageId: 40349 steam: 377300 templates: - - '{{Game data/saves|Windows|{{p|localappdata}}\Thunder2305\Saved\}}' + - "{{Game data/saves|Windows|{{p|localappdata}}\\Thunder2305\\Saved\\}}" Thunder Wolves: pageId: 38327 steam: 232970 templates: - - '{{Game data/saves|Windows|{{p|appdata}}\Thunder Wolves\}}' -Thunder's Leaves: + - "{{Game data/saves|Windows|{{p|appdata}}\\Thunder Wolves\\}}" +"Thunder's Leaves": pageId: 145493 steam: 1129150 ThunderGod: @@ -175643,7 +170767,7 @@ ThunderWheels: Thunderballs: pageId: 126177 steam: 886220 -'Thunderbird: The Legend Begins': +"Thunderbird: The Legend Begins": pageId: 39731 steam: 355460 Thunderbolt: @@ -175665,8 +170789,8 @@ Thunderscape: gog: 1207659463 pageId: 14522 templates: - - '{{Game data/config|DOS|{{p|game}}\OPTIONS.BIN}}' - - '{{Game data/saves|DOS|{{p|game}}\SAVE*\}}' + - "{{Game data/config|DOS|{{p|game}}\\OPTIONS.BIN}}" + - "{{Game data/saves|DOS|{{p|game}}\\SAVE*\\}}" Thy Kingdom Crumble: pageId: 149442 steam: 1148290 @@ -175681,30 +170805,30 @@ Thymesia: pageId: 173385 steam: 1343240 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\PlagueProject\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/config|GOG.com|{{P|localappdata}}\Team17\Thymesia\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\PlagueProject\Saved\SaveGames\{{P|uid}}\}}' - - '{{Game data/saves|GOG.com|{{P|localappdata}}\Team17\Thymesia\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\PlagueProject\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/config|GOG.com|{{P|localappdata}}\\Team17\\Thymesia\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\PlagueProject\\Saved\\SaveGames\\{{P|uid}}\\}}" + - "{{Game data/saves|GOG.com|{{P|localappdata}}\\Team17\\Thymesia\\Saved\\SaveGames\\}}" Tia.sav: pageId: 126352 steam: 996230 Tiamat X: pageId: 47709 steam: 343340 -Tiamat's Drink: +"Tiamat's Drink": pageId: 153746 steam: 1203780 Tiara the Deceiving Crown: pageId: 142107 steam: 1058340 -'Tibetan Quest: Beyond the World''s End': +"Tibetan Quest: Beyond the World's End": pageId: 43704 steam: 427550 Tibia: pageId: 152231 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Tibia\packages\Tibia\conf}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Tibia\packages\Tibia\\characterdata}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Tibia\\packages\\Tibia\\conf}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Tibia\\packages\\Tibia\\\\characterdata}}" Tic Tac Toe Lounge: pageId: 72266 steam: 709550 @@ -175724,18 +170848,18 @@ Tick Tock Isle: pageId: 45555 steam: 418440 templates: - - '{{Game data/saves|Windows|{{p|game}}\TTI.sav}}' -'Tick Tock: A Tale for Two': + - "{{Game data/saves|Windows|{{p|game}}\\TTI.sav}}" +"Tick Tock: A Tale for Two": pageId: 82211 steam: 790740 templates: - - '{{Game data/saves|Windows|{{p|appdata}}\OtherTales\Tick Tock}}' -Tick's Tales: + - "{{Game data/saves|Windows|{{p|appdata}}\\OtherTales\\Tick Tock}}" +"Tick's Tales": pageId: 33934 steam: 411610 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\.prefs\ticks-tales-saves}}' -'Tick: The Time Based Puzzle Game': + - "{{Game data/saves|Windows|{{p|userprofile}}\\.prefs\\ticks-tales-saves}}" +"Tick: The Time Based Puzzle Game": pageId: 46791 steam: 388010 Ticket: @@ -175745,38 +170869,36 @@ Ticket to Earth: gog: 1196334484 pageId: 64014 steam: 636390 -'Ticket to Ride: Classic Edition': +"Ticket to Ride: Classic Edition": gog: 1797477952 pageId: 11319 renamedFrom: - Ticket to Ride steam: 108200 steamSide: - - 108233 - 108230 - 108231 - 108232 + - 108233 - 350270 - 819410 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Days of Wonder\Ticket to Ride\}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.Ticket to Ride/}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Days of Wonder\Ticket to Ride\}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.Ticket to Ride/}}' -'Ticket to Ride: First Journey': + - "{{Game data/config|Windows|{{p|localappdata}}\\Days of Wonder\\Ticket to Ride\\}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.Ticket to Ride/}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Days of Wonder\\Ticket to Ride\\}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.Ticket to Ride/}}" +"Ticket to Ride: First Journey": pageId: 72694 steam: 600430 templates: - - >- - {{Game data/config|Windows|{{P|userprofile}}\AppData\LocalLow\Asmodee - Digital\TTR1J\playerparameters.json|{{P|hkcu}}\Software\Asmodee Digital\TTR1J\}} + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Asmodee Digital\\TTR1J\\playerparameters.json|{{P|hkcu}}\\Software\\Asmodee Digital\\TTR1J\\}}" Ticktock: pageId: 96971 steam: 877070 Tico: pageId: 76028 steam: 748980 -'Tidal Affair: Before The Storm': +"Tidal Affair: Before The Storm": pageId: 45489 steam: 396930 Tidal Shock: @@ -175789,9 +170911,9 @@ Tidalis: pageId: 10153 steam: 40420 templates: - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/Arcen Games, LLC/Tidalis/}}' - - '{{Game data/saves|Windows|{{p|game}}\RuntimeData\settings.dat}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/Arcen Games, LLC/Tidalis/}}' + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/Arcen Games, LLC/Tidalis/}}" + - "{{Game data/saves|Windows|{{p|game}}\\RuntimeData\\settings.dat}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/Arcen Games, LLC/Tidalis/}}" Tides of Existence: pageId: 152993 steam: 1068480 @@ -175825,7 +170947,7 @@ Tiger Hunt: Tiger Knight: pageId: 80332 steam: 415660 -'Tiger Knight: Empire War': +"Tiger Knight: Empire War": pageId: 51967 steam: 534500 Tiger Striker: @@ -175870,12 +170992,8 @@ Tiger Woods PGA Tour 08: Tiger Woods PGA Tour 12: pageId: 87843 templates: - - >- - {{Game data/config|Windows|{{P|userprofile\Documents}}\Tiger Woods PGA TOUR 12 The - Masters\UserProfiles\{{P|uid}}\}} - - >- - {{Game data/saves|Windows|{{P|userprofile\Documents}}\Tiger Woods PGA TOUR 12 The - Masters\UserProfiles\{{P|uid}}\}} + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\Tiger Woods PGA TOUR 12 The Masters\\UserProfiles\\{{P|uid}}\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\Tiger Woods PGA TOUR 12 The Masters\\UserProfiles\\{{P|uid}}\\}}" Tiger Woods PGA Tour 2002: pageId: 183522 Tiger Woods PGA Tour 2004: @@ -175883,10 +171001,10 @@ Tiger Woods PGA Tour 2004: Tigershark: gog: 1759577042 pageId: 14510 -Tigger's Honey Hunt: +"Tigger's Honey Hunt": pageId: 124659 templates: - - '{{Game data/saves|Windows|{{p|game}}}}' + - "{{Game data/saves|Windows|{{p|game}}}}" Tiki Galore: pageId: 46156 steam: 374680 @@ -175894,7 +171012,7 @@ Tiki Man: pageId: 47601 steam: 376920 templates: - - '{{Game data/config|Windows|{{p|HKCU}}\Software\Anarchy Enterprises\Tiki Man\}}' + - "{{Game data/config|Windows|{{p|HKCU}}\\Software\\Anarchy Enterprises\\Tiki Man\\}}" Tiki Trials: pageId: 132629 steam: 1046130 @@ -175928,7 +171046,7 @@ Tiles Shooter Puzzle Cube: Tilesweeper: pageId: 98450 steam: 867180 -'Till the Dawn, Waiting': +"Till the Dawn, Waiting": pageId: 78617 steam: 761760 Tilt Brush: @@ -175940,14 +171058,14 @@ Tiltagon: Tilted Mind: pageId: 61958 steam: 630260 -'Timber Tennis: Versus': +"Timber Tennis: Versus": pageId: 62466 steam: 321160 Timber and Stone: pageId: 9771 steam: 408990 templates: - - '{{Game data/saves|Windows|{{p|game}}\saves}}' + - "{{Game data/saves|Windows|{{p|game}}\\saves}}" Timber! The Logging Experts: pageId: 53427 steam: 553100 @@ -175956,7 +171074,7 @@ Timberborn: pageId: 151436 steam: 1062090 templates: - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\Timberborn\Saves}}' + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\Timberborn\\Saves}}" Timberman: pageId: 37443 steam: 398710 @@ -175979,8 +171097,8 @@ Time Break 2121: pageId: 143683 steam: 1121490 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\TimeBreak2121\Saved\Config\WindowsNoEditor}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\TimeBreak2121\Saved\SaveGames}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\TimeBreak2121\\Saved\\Config\\WindowsNoEditor}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\TimeBreak2121\\Saved\\SaveGames}}" Time Carnage: pageId: 137333 steam: 912650 @@ -175991,8 +171109,8 @@ Time Clickers: pageId: 38035 steam: 385770 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Proton Studio Inc\Time Clickers}}' - - '{{Game data/saves|Windows|{{p|game}}\Backups}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Proton Studio Inc\\Time Clickers}}" + - "{{Game data/saves|Windows|{{p|game}}\\Backups}}" Time Commando: gog: 1207658987 pageId: 19610 @@ -176009,7 +171127,7 @@ Time For Quest: Time For You - Chapter 01: pageId: 179066 steam: 1371660 -'Time Fragments: 24h in Capua': +"Time Fragments: 24h in Capua": pageId: 153848 steam: 1163920 Time Gal: @@ -176017,27 +171135,27 @@ Time Gal: Time Gap Mystery: pageId: 72389 steam: 500150 -'Time Gate: Knight''s Chase': +"Time Gate: Knight's Chase": gog: 1365065972 pageId: 81592 steam: 781280 -'Time Gentlemen, Please!': +"Time Gentlemen, Please!": gog: 1207662993 pageId: 14930 steam: 37400 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\Saved Games\Time Gentlemen, Please\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\Saved Games\Time Gentlemen, Please\}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\Saved Games\\Time Gentlemen, Please\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Saved Games\\Time Gentlemen, Please\\}}" Time Golf Squad: pageId: 58386 steam: 510340 Time Gun: pageId: 65217 steam: 650770 -'Time Killers: CatchOut': +"Time Killers: CatchOut": pageId: 74437 steam: 735520 -'Time Killers: Spot Race': +"Time Killers: Spot Race": pageId: 75500 steam: 735530 Time Leap Paradise Super Live!: @@ -176058,13 +171176,13 @@ Time Loop Fighter: Time Machine VR: pageId: 42989 steam: 356180 -'Time Mysteries 2: The Ancient Spectres': +"Time Mysteries 2: The Ancient Spectres": pageId: 49833 steam: 313650 -'Time Mysteries 3: The Final Enigma': +"Time Mysteries 3: The Final Enigma": pageId: 38492 steam: 319320 -'Time Mysteries: Inheritance - Remastered': +"Time Mysteries: Inheritance - Remastered": pageId: 48589 steam: 350010 Time Ninja Sakura: @@ -176077,7 +171195,7 @@ Time Recoil: pageId: 61550 steam: 625910 templates: - - '{{Game data/config|Windows|{{p|appdata}}\10tons\Time_Recoil\}}' + - "{{Game data/config|Windows|{{p|appdata}}\\10tons\\Time_Recoil\\}}" Time Rifters: pageId: 34695 steam: 270010 @@ -176096,10 +171214,10 @@ Time Tenshi: Time Tenshi 2: pageId: 33460 steam: 490160 -'Time Tenshi Paradox: Episode 1': +"Time Tenshi Paradox: Episode 1": pageId: 78158 steam: 763910 -'Time Tenshi Paradox: Episode 2': +"Time Tenshi Paradox: Episode 2": pageId: 91500 steam: 836110 Time To Parkour: @@ -176150,10 +171268,10 @@ Time Warrior Z VR: Time Warriors: pageId: 72149 templates: - - '{{Game data/config|DOS|{{p|game}}\START.STP|{{p|game}}\WARTIM.DEF}}' - - '{{Game data/config|Windows|{{p|game}}\wartim.def}}' - - '{{Game data/saves|DOS|{{p|game}}\HISTORY.DAT}}' - - '{{Game data/saves|Windows|{{p|game}}\history.dat}}' + - "{{Game data/config|DOS|{{p|game}}\\START.STP|{{p|game}}\\WARTIM.DEF}}" + - "{{Game data/config|Windows|{{p|game}}\\wartim.def}}" + - "{{Game data/saves|DOS|{{p|game}}\\HISTORY.DAT}}" + - "{{Game data/saves|Windows|{{p|game}}\\history.dat}}" Time in Time: pageId: 61514 steam: 474830 @@ -176181,10 +171299,10 @@ Time to Fight: Time traveler Marie: pageId: 153062 steam: 1170630 -'Time, Space and Matter': +"Time, Space and Matter": pageId: 124329 steam: 639180 -'Time-Crosser: Joan of Arc': +"Time-Crosser: Joan of Arc": pageId: 91054 steam: 820760 TimeCluster: @@ -176199,7 +171317,7 @@ TimeMelters - Challenges: TimeOver: pageId: 128429 steam: 911320 -'TimeScar: Hyperion': +"TimeScar: Hyperion": pageId: 113630 steam: 908730 TimeShift: @@ -176207,8 +171325,8 @@ TimeShift: pageId: 9124 steam: 10130 templates: - - '{{Game data/config|Windows|{{p|game}}\UserConfigs}}' - - '{{Game data/saves|Windows|{{p|game}}\UserConfigs}}' + - "{{Game data/config|Windows|{{p|game}}\\UserConfigs}}" + - "{{Game data/saves|Windows|{{p|game}}\\UserConfigs}}" TimeShifters: pageId: 186314 steam: 1533470 @@ -176232,16 +171350,16 @@ Timelapse: pageId: 34322 steam: 433580 templates: - - '{{Game data/saves|Windows|*.tl}}' + - "{{Game data/saves|Windows|*.tl}}" Timeless: pageId: 138675 steam: 1091690 -'Timeless: The Forgotten Town': +"Timeless: The Forgotten Town": pageId: 55295 renamedFrom: - - 'Timeless: The Forgotten Town Collector''s Edition' + - "Timeless: The Forgotten Town Collector's Edition" steam: 569900 -'Timeless: The Lost Castle': +"Timeless: The Lost Castle": pageId: 73481 steam: 729780 Timelie: @@ -176249,14 +171367,14 @@ Timelie: pageId: 151020 steam: 1150950 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Urnique Studio\Timelie}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Urnique Studio\Timelie\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Urnique Studio\\Timelie}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Urnique Studio\\Timelie\\}}" Timeline: pageId: 154520 templates: - - '{{Game data/config|Windows|{{p|game}}\content.ini|{{p|game}}\Content\config.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\SavedGames\}}' -'Timelines: Assault on America': + - "{{Game data/config|Windows|{{p|game}}\\content.ini|{{p|game}}\\Content\\config.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\SavedGames\\}}" +"Timelines: Assault on America": pageId: 10720 steam: 234060 Timen Runner: @@ -176272,34 +171390,32 @@ Timequest: Times of Lore: pageId: 73418 templates: - - '{{Game data/saves|DOS|{{p|game}}\SAVED.GAM}}' + - "{{Game data/saves|DOS|{{p|game}}\\SAVED.GAM}}" Timespinner: gog: 1422911599 pageId: 39669 steam: 368620 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\SavedGames\Timespinner\Timespinner\AllPlayers\Config.sav}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Timespinner/Timespinner/AllPlayers/Config.sav}}' - - '{{Game data/config|Linux|{{p|xdgdatahome}}/Timespinner/Timespinner/AllPlayers/Config.sav}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\SavedGames\Timespinner\Timespinner\AllPlayers\TSSave.sav}}' - - >- - {{Game data/saves|Microsoft - Store|{{P|localappdata}}\Packages\Chucklefish.Timespinner_ywkyrypjzhpx8\SystemAppData\wgs\000901F1D18A9CED_000000000000000000000000647449F5\910BFBDB2003453BB0562B831A897F8E}} - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Timespinner/Timespinner/AllPlayers/TSSave.sav}}' - - '{{Game data/saves|Linux|{{p|xdgdatahome}}/Timespinner/Timespinner/AllPlayers/TSSave.sav}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\SavedGames\\Timespinner\\Timespinner\\AllPlayers\\Config.sav}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Timespinner/Timespinner/AllPlayers/Config.sav}}" + - "{{Game data/config|Linux|{{p|xdgdatahome}}/Timespinner/Timespinner/AllPlayers/Config.sav}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\SavedGames\\Timespinner\\Timespinner\\AllPlayers\\TSSave.sav}}" + - "{{Game data/saves|Microsoft Store|{{P|localappdata}}\\Packages\\Chucklefish.Timespinner_ywkyrypjzhpx8\\SystemAppData\\wgs\\000901F1D18A9CED_000000000000000000000000647449F5\\910BFBDB2003453BB0562B831A897F8E}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Timespinner/Timespinner/AllPlayers/TSSave.sav}}" + - "{{Game data/saves|Linux|{{p|xdgdatahome}}/Timespinner/Timespinner/AllPlayers/TSSave.sav}}" Timez Attack: pageId: 184792 -Timmy's Cooking Show: +"Timmy's Cooking Show": pageId: 144413 steam: 1143460 -'Timmy''s adventures : VerbMon': +"Timmy's adventures : VerbMon": pageId: 149269 steam: 1152570 -Timon & Pumbaa's Jungle Games: +"Timon & Pumbaa's Jungle Games": pageId: 171908 templates: - - '{{Game data/config|Windows|{{p|windir}}\7THLEVEL.INI}}' - - '{{Game data/saves|Windows|{{p|windir}}\7THLEVEL.INI}}' + - "{{Game data/config|Windows|{{p|windir}}\\7THLEVEL.INI}}" + - "{{Game data/saves|Windows|{{p|windir}}\\7THLEVEL.INI}}" Timore 5: pageId: 36814 steam: 521210 @@ -176309,7 +171425,7 @@ Timore 6: Timore Inferno: pageId: 34433 steam: 486360 -Timothy Leary's Mind Mirror: +"Timothy Leary's Mind Mirror": gog: 1317760810 pageId: 173556 steam: 1603300 @@ -176323,7 +171439,7 @@ Tin Can: steamSide: - 1678370 templates: - - '{{Game data/config|Windows|{{P|userprofile\appdata\locallow}}\Tin Can Studio\Tin Can}}' + - "{{Game data/config|Windows|{{P|userprofile\\appdata\\locallow}}\\Tin Can Studio\\Tin Can}}" Tin Hearts: gog: 1318552817 pageId: 120822 @@ -176331,11 +171447,11 @@ Tin Hearts: steamSide: - 979730 templates: - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\Rogue Sun\Tin Hearts\PlayerProfiles\{{p|uid}}}}' + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\Rogue Sun\\Tin Hearts\\PlayerProfiles\\{{p|uid}}}}" Tin Star: pageId: 37293 steam: 375130 -'Tina: Swordswoman of the Scarlet Prison': +"Tina: Swordswoman of the Scarlet Prison": pageId: 130615 steam: 1015770 Tinboy: @@ -176369,28 +171485,28 @@ Tinselfly: steam: 1113840 Tint.: pageId: 147978 -'Tintin Reporter: Cigars of the Pharaoh': +"Tintin Reporter: Cigars of the Pharaoh": gog: 1538541953 pageId: 190791 steam: 2125090 Tintin in Tibet: pageId: 190790 -'Tintin: Destination Adventure': +"Tintin: Destination Adventure": pageId: 178215 -Tiny & Big in Grandpa's Leftovers: +"Tiny & Big in Grandpa's Leftovers": gog: 1207659048 pageId: 4759 steam: 205910 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/TinyAndBigGrandpasLeftovers/}}' - - '{{Game data/config|Linux|{{p|game}}/|~/.tinyandbiggrandpasleftovers/}}' - - '{{Game data/config|Steam|{{p|steam}}/userdata/{{p|uid}}/205910/}}' - - '{{Game data/saves|Windows|{{p|game}}\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/TinyAndBigGrandpasLeftovers/}}' - - '{{Game data/saves|Linux|{{p|game}}/|~/.tinyandbiggrandpasleftovers/}}' - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/205910/}}' -'Tiny & Tall: Gleipnir': + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/TinyAndBigGrandpasLeftovers/}}" + - "{{Game data/config|Linux|{{p|game}}/|~/.tinyandbiggrandpasleftovers/}}" + - "{{Game data/config|Steam|{{p|steam}}/userdata/{{p|uid}}/205910/}}" + - "{{Game data/saves|Windows|{{p|game}}\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/TinyAndBigGrandpasLeftovers/}}" + - "{{Game data/saves|Linux|{{p|game}}/|~/.tinyandbiggrandpasleftovers/}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/205910/}}" +"Tiny & Tall: Gleipnir": pageId: 100606 steam: 431280 Tiny Barbarian DX: @@ -176406,13 +171522,13 @@ Tiny Brains: pageId: 12645 steam: 253690 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\TinyBrains\QuadForceGame\}}' - - '{{Game data/saves|Windows|{{P|game}}\Binaries\Win32\}}' -'Tiny Bridge: Ratventure': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\TinyBrains\\QuadForceGame\\}}" + - "{{Game data/saves|Windows|{{P|game}}\\Binaries\\Win32\\}}" +"Tiny Bridge: Ratventure": pageId: 47970 steam: 360380 templates: - - '{{Game data/saves|Windows|{{p|localappdata}}\Tiny Bridge Ratventure}}' + - "{{Game data/saves|Windows|{{p|localappdata}}\\Tiny Bridge Ratventure}}" Tiny Bubbles: pageId: 73011 steam: 705500 @@ -176423,13 +171539,13 @@ Tiny Dangerous Dungeons: pageId: 128266 steam: 1013650 templates: - - '{{Game data/saves|Windows|{{p|appdata}}\Stencyl\Tiny Dangerous Dungeons\}}' + - "{{Game data/saves|Windows|{{p|appdata}}\\Stencyl\\Tiny Dangerous Dungeons\\}}" Tiny Echo: pageId: 63359 steam: 629770 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Might and Delight\Tiny Echo}}' - - '{{Game data/saves|Windows|{{P|hkcu}}\Software\Might and Delight\Tiny Echo}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Might and Delight\\Tiny Echo}}" + - "{{Game data/saves|Windows|{{P|hkcu}}\\Software\\Might and Delight\\Tiny Echo}}" Tiny Football: pageId: 187145 steam: 1887010 @@ -176440,9 +171556,9 @@ Tiny Guardians: pageId: 44009 steam: 431230 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Kurechii\Tiny Guardians\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Kurechii\Tiny Guardians\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/unity.Kurechii.Tiny Guardians/}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Kurechii\\Tiny Guardians\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Kurechii\\Tiny Guardians\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/unity.Kurechii.Tiny Guardians/}}" Tiny Hands Adventure: pageId: 95557 steam: 869470 @@ -176461,7 +171577,7 @@ Tiny Mage: Tiny Metal: pageId: 78230 steam: 751500 -'Tiny Metal: Full Metal Rumble': +"Tiny Metal: Full Metal Rumble": pageId: 140532 steam: 1102100 Tiny Mortals VR: @@ -176473,11 +171589,11 @@ Tiny Rails: Tiny Skweeks: pageId: 162295 templates: - - '{{Game data/config|DOS|{{p|game}}\FILE.CFG}}' + - "{{Game data/config|DOS|{{p|game}}\\FILE.CFG}}" Tiny Snow: pageId: 128140 steam: 1002560 -'Tiny Tales: Heart of the Forest': +"Tiny Tales: Heart of the Forest": pageId: 65630 steam: 637060 Tiny Tanks: @@ -176487,8 +171603,8 @@ Tiny Thief: pageId: 13454 steam: 257080 templates: - - '{{Game data/config|Windows|{{p|appdata}}\com.roviostars.tinythiefsteam\Local Store\#SharedObjects\Main.swf\}}' - - '{{Game data/saves|Windows|{{p|appdata}}\com.roviostars.tinythiefsteam\Local Store\#SharedObjects\Main.swf\}}' + - "{{Game data/config|Windows|{{p|appdata}}\\com.roviostars.tinythiefsteam\\Local Store\\#SharedObjects\\Main.swf\\}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\com.roviostars.tinythiefsteam\\Local Store\\#SharedObjects\\Main.swf\\}}" Tiny Thief (2017): pageId: 66493 steam: 669650 @@ -176497,31 +171613,23 @@ Tiny Thor: pageId: 56268 steam: 541310 templates: - - '{{Game data/saves|Windows|{{p|game}}\internal}}' -'Tiny Tina''s Assault on Dragon Keep: A Wonderlands One-Shot Adventure': + - "{{Game data/saves|Windows|{{p|game}}\\internal}}" +"Tiny Tina's Assault on Dragon Keep: A Wonderlands One-Shot Adventure": pageId: 172875 steam: 1712840 templates: - - >- - {{Game data/config|Windows|{{P|userprofile\Documents}}\My Games\Tiny Tina's Assault On Dragon - Keep\WillowGame\Config\}} - - >- - {{Game data/saves|Windows|{{P|userprofile\Documents}}\My Games\Tiny Tina's Assault On Dragon - Keep\WillowGame\SaveData\{{P|uid}}\}} -Tiny Tina's Wonderlands: + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\My Games\\Tiny Tina's Assault On Dragon Keep\\WillowGame\\Config\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\My Games\\Tiny Tina's Assault On Dragon Keep\\WillowGame\\SaveData\\{{P|uid}}\\}}" +"Tiny Tina's Wonderlands": pageId: 169166 steam: 1286680 templates: - - >- - {{Game data/config|Windows|{{P|userprofile\documents}}\My Games\Tiny Tina's - Wonderlands\Saved\Config\WindowsNoEditor\}} - - >- - {{Game data/saves|Windows|{{P|userprofile\documents}}\My Games\Tiny Tina's - Wonderlands\Saved\SaveGames\{{P|uid}}\}} + - "{{Game data/config|Windows|{{P|userprofile\\documents}}\\My Games\\Tiny Tina's Wonderlands\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\documents}}\\My Games\\Tiny Tina's Wonderlands\\Saved\\SaveGames\\{{P|uid}}\\}}" Tiny Toast: pageId: 57420 steam: 587750 -'Tiny Toon Adventures: Buster and the Beanstalk': +"Tiny Toon Adventures: Buster and the Beanstalk": pageId: 126702 Tiny Town VR: pageId: 66150 @@ -176533,15 +171641,15 @@ Tiny Troopers: pageId: 40749 steam: 216110 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Kukouri\Tiny Troopers}}' + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Kukouri\\Tiny Troopers}}" Tiny Troopers 2: pageId: 62725 steam: 590370 -'Tiny Troopers: Global Ops': +"Tiny Troopers: Global Ops": gog: 2056392064 pageId: 171605 steam: 1374350 -'Tiny Troopers: Joint Ops': +"Tiny Troopers: Joint Ops": pageId: 163115 Tiny Wheels: pageId: 56070 @@ -176556,8 +171664,8 @@ TinyKeep: pageId: 27655 steam: 278620 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\SOFTWARE\Phigames\TinyKeep_\}}' - - '{{Game data/saves|Windows|{{p|hkcu}}\SOFTWARE\Phigames\TinyKeep_\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\Phigames\\TinyKeep_\\}}" + - "{{Game data/saves|Windows|{{p|hkcu}}\\SOFTWARE\\Phigames\\TinyKeep_\\}}" TinyWar high-speed: pageId: 82770 steam: 797020 @@ -176566,22 +171674,18 @@ Tinykin: pageId: 175451 steam: 1599020 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\tinyBuild Games\Tinykin\Tinykin.settings}}' - - >- - {{Game data/config|Microsoft - Store|{{P|localappdata}}\Packages\tinyBuildGames.Tinykin_3sz1pp2ynv2xe\Settings\settings.dat}} - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\tinyBuild Games\Tinykin\*.save}}' - - >- - {{Game data/saves|Microsoft - Store|{{P|localappdata}}\Packages\tinyBuildGames.Tinykin_3sz1pp2ynv2xe\SystemAppData\wgs}} + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\tinyBuild Games\\Tinykin\\Tinykin.settings}}" + - "{{Game data/config|Microsoft Store|{{P|localappdata}}\\Packages\\tinyBuildGames.Tinykin_3sz1pp2ynv2xe\\Settings\\settings.dat}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\tinyBuild Games\\Tinykin\\*.save}}" + - "{{Game data/saves|Microsoft Store|{{P|localappdata}}\\Packages\\tinyBuildGames.Tinykin_3sz1pp2ynv2xe\\SystemAppData\\wgs}}" Tinytopia: gog: 1884341298 pageId: 170987 steam: 968550 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\MeNic Games\Tinytopia}}' - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\MeNic Games\Tinytopia\}}' -'Tip of the Spear: Task Force Elite': + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\MeNic Games\\Tinytopia}}" + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\MeNic Games\\Tinytopia\\}}" +"Tip of the Spear: Task Force Elite": pageId: 153764 steam: 1148810 Tipping Point: @@ -176609,10 +171713,10 @@ Titan Attacks!: pageId: 11138 steam: 203210 templates: - - '{{Game data/config|Linux|{{p|linuxhome}}/.titan_attacks/}}' - - '{{Game data/config|Steam|{{p|steam}}/userdata/{{P|uid}}/203210/remote/}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.titan_attacks/}}' - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{P|uid}}/203210/remote/}}' + - "{{Game data/config|Linux|{{p|linuxhome}}/.titan_attacks/}}" + - "{{Game data/config|Steam|{{p|steam}}/userdata/{{P|uid}}/203210/remote/}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.titan_attacks/}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{P|uid}}/203210/remote/}}" Titan Outpost: pageId: 126228 steam: 944180 @@ -176622,20 +171726,16 @@ Titan Quest: steamSide: - 4550 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Titan Quest\|{{p|userprofile\Documents}}\My - Games\Titan Quest - Immortal Throne\}} - - '{{Game data/config|Steam|{{p|game}}\}}' - - >- - {{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Titan Quest\|{{p|userprofile\Documents}}\My - Games\Titan Quest - Immortal Throne\}} - - '{{Game data/saves|Steam|{{p|game}}\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Titan Quest\\|{{p|userprofile\\Documents}}\\My Games\\Titan Quest - Immortal Throne\\}}" + - "{{Game data/config|Steam|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Titan Quest\\|{{p|userprofile\\Documents}}\\My Games\\Titan Quest - Immortal Throne\\}}" + - "{{Game data/saves|Steam|{{p|game}}\\}}" Titan Quest Anniversary Edition: gog: 1196955511 gogSide: - - 1945314081 - 1486258753 - 1635839065 + - 1945314081 pageId: 36586 steam: 475150 steamSide: @@ -176643,12 +171743,12 @@ Titan Quest Anniversary Edition: - 1071200 - 1804460 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Titan Quest - Immortal Throne\Settings}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Titan Quest - Immortal Throne\SaveData}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Titan Quest - Immortal Throne\\Settings}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Titan Quest - Immortal Throne\\SaveData}}" Titan Quest II: pageId: 189221 steam: 1154030 -'Titan Saga: Chains of Kronos': +"Titan Saga: Chains of Kronos": pageId: 157495 steam: 659140 Titan Shield: @@ -176668,30 +171768,28 @@ Titan Souls: pageId: 24333 steam: 297130 templates: - - '{{Game data/config|Windows|{{P|game}}\data\config.txt|{{P|game}}\data\control.xml}}' - - '{{Game data/saves|Windows|{{P|game}}\data\SAVE\}}' + - "{{Game data/config|Windows|{{P|game}}\\data\\config.txt|{{P|game}}\\data\\control.xml}}" + - "{{Game data/saves|Windows|{{P|game}}\\data\\SAVE\\}}" Titan Station: pageId: 183017 steam: 1881120 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\titanstation\Saved\Config\WindowsNoEditor}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\titanstation\Saved\SaveGames}}' -'Titan: Escape the Tower': + - "{{Game data/config|Windows|{{p|localappdata}}\\titanstation\\Saved\\Config\\WindowsNoEditor}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\titanstation\\Saved\\SaveGames}}" +"Titan: Escape the Tower": pageId: 31100 steam: 403170 Titanfall: pageId: 15095 steam: 1454890 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Respawn\Titanfall\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Respawn\\Titanfall\\}}" Titanfall 2: pageId: 33292 steam: 1237970 templates: - - |- - {{Game data/config|Windows|{{p|userprofile\Documents}}\Respawn\Titanfall2\profile\profile.cfg| - {{p|userprofile\Documents}}\Respawn\Titanfall2\local\}} - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Respawn\Titanfall2\profile\savegames\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Respawn\\Titanfall2\\profile\\profile.cfg|\n{{p|userprofile\\Documents}}\\Respawn\\Titanfall2\\local\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Respawn\\Titanfall2\\profile\\savegames\\}}" Titanic: pageId: 73691 steam: 727910 @@ -176699,8 +171797,8 @@ Titanic VR: pageId: 57271 steam: 741430 templates: - - '{{Game data/config|Windows|{{P|userprofile}}\AppData\LocalLow\Immersive VR Education Ltd\Titanic VR\}}' -'Titanic: Adventure Out of Time': + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Immersive VR Education Ltd\\Titanic VR\\}}" +"Titanic: Adventure Out of Time": gog: 1792718486 pageId: 93568 steam: 785480 @@ -176710,22 +171808,22 @@ Titanis: Titans of Space 2.0: pageId: 37417 steam: 468820 -'Titans: Dawn of Tribes': +"Titans: Dawn of Tribes": pageId: 53003 steam: 467570 -'Titeuf: Mega Party': +"Titeuf: Mega Party": pageId: 153092 steam: 1165610 Title Pending: pageId: 184058 steam: 1288900 templates: - - '{{Game data/config|Windows|{{p|LOCALAPPDATA}}\Title_Pending\Saved\Config}}' - - '{{Game data/saves|Windows|{{p|LOCALAPPDATA}}\Title_Pending\Saved\SaveGames}}' + - "{{Game data/config|Windows|{{p|LOCALAPPDATA}}\\Title_Pending\\Saved\\Config}}" + - "{{Game data/saves|Windows|{{p|LOCALAPPDATA}}\\Title_Pending\\Saved\\SaveGames}}" Titty Crush: pageId: 92917 steam: 844210 -'Titus the Fox: To Marrakech and Back': +"Titus the Fox: To Marrakech and Back": gog: 1828289583 pageId: 70657 steam: 711230 @@ -176738,15 +171836,15 @@ To Ash: To Azimuth: pageId: 39580 steam: 404380 -'To Battle!: Hell''s Crusade': +"To Battle!: Hell's Crusade": pageId: 141322 steam: 1113300 To Be Headed Or Not To Be: pageId: 150669 steam: 1165380 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\ToBeHeadedOrNotToBe\Saved}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\ToBeHeadedOrNotToBe\Saved}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\ToBeHeadedOrNotToBe\\Saved}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\ToBeHeadedOrNotToBe\\Saved}}" To Be or Not To Be: pageId: 37788 steam: 324710 @@ -176774,7 +171872,7 @@ To Hell with Hell: To Leave: pageId: 112128 steam: 896340 -'To Light: Ex Umbra': +"To Light: Ex Umbra": pageId: 94761 steam: 862460 To The Dark Tower: @@ -176783,7 +171881,7 @@ To The Dark Tower: To The Light: pageId: 62747 steam: 618050 -'To The Sea : The Courier': +"To The Sea : The Courier": pageId: 155831 steam: 665840 To Trust an Incubus: @@ -176817,15 +171915,12 @@ To the Moon: - 339550 - 418890 templates: - - >- - {{Game data/config|Windows|{{p|appdata}}\To the Moon - Freebird Games\music.txt|{{p|appdata}}\To the Moon - - Freebird Games\window.txt|{{p|appdata}}\Siggy Holiday - Freebird Games\|{{p|appdata}}\SigCorp Minisode 2 - - Freebird Games\}} - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/freebirdgames/tothemoon/}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/freebirdgames/tothemoon/}}' - - '{{Game data/saves|Windows|{{p|appdata}}\To the Moon - Freebird Games\Save*.rxdata}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/freebirdgames/tothemoon/}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/freebirdgames/tothemoon/}}' + - "{{Game data/config|Windows|{{p|appdata}}\\To the Moon - Freebird Games\\music.txt|{{p|appdata}}\\To the Moon - Freebird Games\\window.txt|{{p|appdata}}\\Siggy Holiday - Freebird Games\\|{{p|appdata}}\\SigCorp Minisode 2 - Freebird Games\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/freebirdgames/tothemoon/}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/freebirdgames/tothemoon/}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\To the Moon - Freebird Games\\Save*.rxdata}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/freebirdgames/tothemoon/}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/freebirdgames/tothemoon/}}" To the Rescue!: gog: 1569371366 pageId: 128654 @@ -176838,7 +171933,7 @@ To the Stars and Beyond!: To the Top: pageId: 51489 steam: 509250 -'ToGather:Island': +"ToGather:Island": pageId: 152730 steam: 1181440 ToaZZle: @@ -176854,7 +171949,7 @@ Toast Time: pageId: 23911 steam: 316660 templates: - - '{{Game data/saves|Windows|{{p|game}}\data\save.json}}' + - "{{Game data/saves|Windows|{{p|game}}\\data\\save.json}}" Toaster Jam: pageId: 62068 steam: 590950 @@ -176864,27 +171959,27 @@ Toasterball: Tobari and the Night of the Curious Moon: pageId: 33658 steam: 368140 -Tobe's Vertical Adventure: +"Tobe's Vertical Adventure": pageId: 40952 steam: 105700 templates: - - '{{Game data/config|Windows|{{p|steam}}\userdata\{{P|uid}}\105700\remote\}}' - - '{{Game data/saves|Windows|{{p|steam}}\userdata\{{P|uid}}\105700\remote\}}' + - "{{Game data/config|Windows|{{p|steam}}\\userdata\\{{P|uid}}\\105700\\remote\\}}" + - "{{Game data/saves|Windows|{{p|steam}}\\userdata\\{{P|uid}}\\105700\\remote\\}}" Tobit: pageId: 127665 steam: 1018730 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Tobit\Saved\Config\WindowsNoEditor\*.ini}}' -'Tobuscus Adventures: Wizards': + - "{{Game data/config|Windows|{{P|localappdata}}\\Tobit\\Saved\\Config\\WindowsNoEditor\\*.ini}}" +"Tobuscus Adventures: Wizards": pageId: 88750 -Toby's Island: +"Toby's Island": pageId: 151285 steam: 331430 -'Toby: The Secret Mine': +"Toby: The Secret Mine": pageId: 45990 steam: 395160 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\navratillukas.com\Toby: The Secret Mine}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\navratillukas.com\\Toby: The Secret Mine}}" Toca Cars: pageId: 174918 Toca Hair Salon 2: @@ -176912,32 +172007,20 @@ ToeJam & Earl: pageId: 30744 steam: 71166 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\SEGA Mega Drive - Classics\setup.dat|{{p|userprofile\Documents}}\SEGA Genesis Classics\setup.dat}} - - >- - {{Game data/saves|Windows|{{p|userprofile\Documents}}\SEGA Mega Drive - Classics\0046\|{{p|userprofile\Documents}}\SEGA Genesis Classics\0046\}} + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\SEGA Mega Drive Classics\\setup.dat|{{p|userprofile\\Documents}}\\SEGA Genesis Classics\\setup.dat}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\SEGA Mega Drive Classics\\0046\\|{{p|userprofile\\Documents}}\\SEGA Genesis Classics\\0046\\}}" ToeJam & Earl in Panic on Funkotron: pageId: 30747 steam: 71167 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\SEGA Mega Drive - Classics\setup.dat|{{p|userprofile\Documents}}\SEGA Genesis Classics\setup.dat}} - - >- - {{Game data/saves|Windows|{{p|userprofile\Documents}}\SEGA Mega Drive - Classics\0047\|{{p|userprofile\Documents}}\SEGA Genesis Classics\0047\}} -'ToeJam & Earl: Back in the Groove': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\SEGA Mega Drive Classics\\setup.dat|{{p|userprofile\\Documents}}\\SEGA Genesis Classics\\setup.dat}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\SEGA Mega Drive Classics\\0047\\|{{p|userprofile\\Documents}}\\SEGA Genesis Classics\\0047\\}}" +"ToeJam & Earl: Back in the Groove": pageId: 39663 steam: 516110 templates: - - >- - {{Game data/config|Windows|{{P|userprofile}}\AppData\LocalLow\HumaNature Studios\ToeJam & Earl_ Back in the - Groove!\saved_prefs.json|{{P|hkcu}}\Software\HumaNature Studios\ToeJam & Earl: Back in the Groove!\}} - - >- - {{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\HumaNature Studios\ToeJam & Earl_ Back in the - Groove!\}} + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\HumaNature Studios\\ToeJam & Earl_ Back in the Groove!\\saved_prefs.json|{{P|hkcu}}\\Software\\HumaNature Studios\\ToeJam & Earl: Back in the Groove!\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\HumaNature Studios\\ToeJam & Earl_ Back in the Groove!\\}}" Tofu Pudding Simulator: pageId: 128529 renamedFrom: @@ -176969,14 +172052,14 @@ Togges: pageId: 183640 steam: 1550270 templates: - - '{{Game data/saves|Windows|{{p|localappdata}}\Togges\Saved\SaveGames}}' + - "{{Game data/saves|Windows|{{p|localappdata}}\\Togges\\Saved\\SaveGames}}" Tohu: gog: 1454839069 pageId: 135959 steam: 1075200 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\SOFTWARE\Fireart Games\TOHU\}}' - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Fireart Games\TOHU\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\SOFTWARE\\Fireart Games\\TOHU\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Fireart Games\\TOHU\\}}" Toilet Run: pageId: 111940 steam: 629240 @@ -176999,28 +172082,28 @@ Toki Tori: pageId: 4705 steam: 38700 templates: - - '{{Game data/config|Linux|{{p|xdgdatahome}}/.twotribes/toki_tori/}}' - - '{{Game data/config|Steam|{{p|steam}}/userdata/{{p|uid}}/38700/remote/}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.twotribes/toki_tori/}}' - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/38700/remote/}}' + - "{{Game data/config|Linux|{{p|xdgdatahome}}/.twotribes/toki_tori/}}" + - "{{Game data/config|Steam|{{p|steam}}/userdata/{{p|uid}}/38700/remote/}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.twotribes/toki_tori/}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/38700/remote/}}" Toki Tori 2+: pageId: 8394 steam: 201420 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Two Tribes\Toki Tori 2+\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/com.twotribes.tokitori2/}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/twotribes/toki_tori_2+/}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/twotribes/toki_tori_2+/}}' - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{P|uid}}/201420/}}' -'Tokimeki Memorial: Forever With You': + - "{{Game data/config|Windows|{{p|localappdata}}\\Two Tribes\\Toki Tori 2+\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/com.twotribes.tokitori2/}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/twotribes/toki_tori_2+/}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/twotribes/toki_tori_2+/}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{P|uid}}/201420/}}" +"Tokimeki Memorial: Forever With You": pageId: 171564 Tokyo 42: gog: 1300381715 pageId: 39658 steam: 490450 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Smac\T42\}}' - - '{{Game data/saves|Windows|{{P|game}}\T42_Data\Managed\TOKYO42\{{P|uid}}\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Smac\\T42\\}}" + - "{{Game data/saves|Windows|{{P|game}}\\T42_Data\\Managed\\TOKYO42\\{{P|uid}}\\}}" Tokyo Babel: pageId: 43849 steam: 443380 @@ -177031,13 +172114,13 @@ Tokyo Dark: pageId: 69587 steam: 687260 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\TokyoDark\User Data\Default\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\TokyoDark\User Data\Default\}}' -'Tokyo Ghoul: re Call to Exist': + - "{{Game data/config|Windows|{{p|localappdata}}\\TokyoDark\\User Data\\Default\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\TokyoDark\\User Data\\Default\\}}" +"Tokyo Ghoul: re Call to Exist": pageId: 152146 steam: 756530 templates: - - '{{Game data/saves|Windows|{{P|localappdata}}\BANDAI NAMCO Entertainment\Tokyo Ghoul re CALL to EXIST\}}' + - "{{Game data/saves|Windows|{{P|localappdata}}\\BANDAI NAMCO Entertainment\\Tokyo Ghoul re CALL to EXIST\\}}" Tokyo Hosto: pageId: 47665 steam: 349650 @@ -177051,15 +172134,15 @@ Tokyo Tattoo Girls: pageId: 58264 steam: 552910 templates: - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\Sushi Typhoon Games\TOKYO TATTOO GIRLS}}' -'Tokyo Twilight Ghost Hunters Daybreak: Special Gigs': + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\Sushi Typhoon Games\\TOKYO TATTOO GIRLS}}" +"Tokyo Twilight Ghost Hunters Daybreak: Special Gigs": pageId: 58920 steam: 425460 Tokyo Warfare: pageId: 41980 steam: 486510 templates: - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\Tokyo Warfare Project\TokyoWarfareTurbo}}' + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\Tokyo Warfare Project\\TokyoWarfareTurbo}}" Tokyo Warfare Turbo: pageId: 127862 steam: 977390 @@ -177071,8 +172154,8 @@ Tokyo Xanadu eX+: pageId: 77170 steam: 587260 templates: - - '{{Game data/config|Windows|{{p|game}}\TokyoXanadu.ini}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Aksys Games\Tokyo Xanadu eX+}}' + - "{{Game data/config|Windows|{{p|game}}\\TokyoXanadu.ini}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Aksys Games\\Tokyo Xanadu eX+}}" ToledoVR: pageId: 55766 steam: 557460 @@ -177081,18 +172164,18 @@ Toltec and the mysteries of the Secret Island: steam: 961870 Tom & Jerry: pageId: 136318 -'Tom & Jerry: Yankee Doodle''s CAT-astrophe': +"Tom & Jerry: Yankee Doodle's CAT-astrophe": pageId: 136319 -Tom Clancy's EndWar: +"Tom Clancy's EndWar": pageId: 20244 steam: 21800 templates: - - '{{Game data/config|Windows|{{p|game}}\OfGame\Config\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\Saved Games\Tom Clancy''s EndWar\Saved Games\}}' -Tom Clancy's EndWar Online: + - "{{Game data/config|Windows|{{p|game}}\\OfGame\\Config\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Saved Games\\Tom Clancy's EndWar\\Saved Games\\}}" +"Tom Clancy's EndWar Online": pageId: 44840 steam: 381810 -Tom Clancy's Ghost Recon: +"Tom Clancy's Ghost Recon": gog: 1207658751 pageId: 5581 steam: 15300 @@ -177100,221 +172183,208 @@ Tom Clancy's Ghost Recon: - 13620 - 13630 templates: - - '{{Game data/config|Windows|{{p|game}}\options.xml}}' - - '{{Game data/saves|Windows|{{p|game}}\Mods\Origmiss\save}}' -Tom Clancy's Ghost Recon Advanced Warfighter: + - "{{Game data/config|Windows|{{p|game}}\\options.xml}}" + - "{{Game data/saves|Windows|{{p|game}}\\Mods\\Origmiss\\save}}" +"Tom Clancy's Ghost Recon Advanced Warfighter": pageId: 3247 steam: 13640 templates: - - >- - {{Game - data/config|Windows|{{p|game}}\data\settings\renderer_settings.xml
{{p|game}}\data\sound\settings.xml
{{p|game}}\Settings\ctrl_set_def.xml}} - - '{{Game data/saves|Windows|{{p|game}}\Settings\profiles}}' -Tom Clancy's Ghost Recon Advanced Warfighter 2: + - "{{Game data/config|Windows|{{p|game}}\\data\\settings\\renderer_settings.xml
{{p|game}}\\data\\sound\\settings.xml
{{p|game}}\\Settings\\ctrl_set_def.xml}}" + - "{{Game data/saves|Windows|{{p|game}}\\Settings\\profiles}}" +"Tom Clancy's Ghost Recon Advanced Warfighter 2": pageId: 1029 steam: 13510 templates: - - >- - {{Game - data/config|Windows|{{p|localappdata}}\GRAW2\data\settings\renderer_settings.xml
{{p|localappdata}}\GRAW2\settings\profiles\{{p|uid}}\}} - - '{{Game data/saves|Windows|{{p|localappdata}}\GRAW2\settings\profiles\{{p|uid}}\savegames}}' -Tom Clancy's Ghost Recon Breakpoint: + - "{{Game data/config|Windows|{{p|localappdata}}\\GRAW2\\data\\settings\\renderer_settings.xml
{{p|localappdata}}\\GRAW2\\settings\\profiles\\{{p|uid}}\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\GRAW2\\settings\\profiles\\{{p|uid}}\\savegames}}" +"Tom Clancy's Ghost Recon Breakpoint": pageId: 136144 steam: 2231380 steamSide: - 2231410 templates: - - '{{Game data/config|Windows|{{P|userprofile\documents}}\My Games\Ghost Recon Breakpoint\}}' - - '{{Game data/saves|Windows|{{P|uplay}}\savegames\{{P|uid}}\11903\}}' -Tom Clancy's Ghost Recon Frontline: + - "{{Game data/config|Windows|{{P|userprofile\\documents}}\\My Games\\Ghost Recon Breakpoint\\}}" + - "{{Game data/saves|Windows|{{P|uplay}}\\savegames\\{{P|uid}}\\11903\\}}" +"Tom Clancy's Ghost Recon Frontline": pageId: 172059 -Tom Clancy's Ghost Recon Phantoms: +"Tom Clancy's Ghost Recon Phantoms": pageId: 4907 steam: 243870 templates: - - '{{Game data/config|Windows|{{p|game}}\NCSA-Live\*.ini|{{p|game}}\PDC-Live\*.ini}}' - - '{{Game data/config|Steam|{{p|game}}\Game\NCSA-live\*.ini|{{p|game}}\Game\PDC-live\*.ini}}' -Tom Clancy's Ghost Recon Wildlands: + - "{{Game data/config|Windows|{{p|game}}\\NCSA-Live\\*.ini|{{p|game}}\\PDC-Live\\*.ini}}" + - "{{Game data/config|Steam|{{p|game}}\\Game\\NCSA-live\\*.ini|{{p|game}}\\Game\\PDC-live\\*.ini}}" +"Tom Clancy's Ghost Recon Wildlands": pageId: 36450 steam: 460930 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\My Games\Ghost Recon Wildlands\}}' - - '{{Game data/saves|Uplay|{{p|Uplay}}\savegames\{{path|uid}}\1771\}}' - - '{{Game data/saves|Steam|{{p|Uplay}}\savegames\{{path|uid}}\3559\}}' -'Tom Clancy''s Ghost Recon: Future Soldier': + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\My Games\\Ghost Recon Wildlands\\}}" + - "{{Game data/saves|Uplay|{{p|Uplay}}\\savegames\\{{path|uid}}\\1771\\}}" + - "{{Game data/saves|Steam|{{p|Uplay}}\\savegames\\{{path|uid}}\\3559\\}}" +"Tom Clancy's Ghost Recon: Future Soldier": pageId: 2977 steam: 212630 steamSide: - - 2028055 - - 212673 - - 212672 - 212671 + - 212672 + - 212673 + - 2028055 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Ubisoft\Tom Clancy''s Ghost Recon Future Soldier\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Ubisoft\Tom Clancy''s Ghost Recon Future Soldier\}}' -Tom Clancy's H.A.W.X: + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Ubisoft\\Tom Clancy's Ghost Recon Future Soldier\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Ubisoft\\Tom Clancy's Ghost Recon Future Soldier\\}}" +"Tom Clancy's H.A.W.X": pageId: 9019 steam: 21900 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\Saved Games\Tom Clancy''s H.A.W.X\Profiles}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\Saved Games\Tom Clancy''s H.A.W.X\Profiles}}' -Tom Clancy's H.A.W.X. 2: + - "{{Game data/config|Windows|{{p|userprofile}}\\Saved Games\\Tom Clancy's H.A.W.X\\Profiles}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Saved Games\\Tom Clancy's H.A.W.X\\Profiles}}" +"Tom Clancy's H.A.W.X. 2": pageId: 9073 steam: 48180 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\Saved Games\Tom Clancy''s H.A.W.X 2\Profiles}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\Saved Games\Tom Clancy''s H.A.W.X 2\Profiles}}' -Tom Clancy's Politika: + - "{{Game data/config|Windows|{{p|userprofile}}\\Saved Games\\Tom Clancy's H.A.W.X 2\\Profiles}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Saved Games\\Tom Clancy's H.A.W.X 2\\Profiles}}" +"Tom Clancy's Politika": pageId: 189241 templates: - - '{{Game data/config|Windows|{{p|game}}\settings.txt}}' - - '{{Game data/config|Mac OS|{{p|game}}\settings.txt}}' - - '{{Game data/saves|Windows|{{p|game}}\save}}' - - '{{Game data/saves|Mac OS|{{p|game}}\save}}' -Tom Clancy's Rainbow Six: + - "{{Game data/config|Windows|{{p|game}}\\settings.txt}}" + - "{{Game data/config|Mac OS|{{p|game}}\\settings.txt}}" + - "{{Game data/saves|Windows|{{p|game}}\\save}}" + - "{{Game data/saves|Mac OS|{{p|game}}\\save}}" +"Tom Clancy's Rainbow Six": gog: 1207658752 pageId: 2139 steam: 13650 templates: - - '{{Game data/config|Windows|{{p|hklm}}\SOFTWARE\{{p|wow64}}\Red Storm Entertainment\Tom Clancy''s Rainbow Six\}}' - - '{{Game data/saves|Windows|{{p|game}}\data\save}}' -'Tom Clancy''s Rainbow Six 3: Raven Shield': + - "{{Game data/config|Windows|{{p|hklm}}\\SOFTWARE\\{{p|wow64}}\\Red Storm Entertainment\\Tom Clancy's Rainbow Six\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\data\\save}}" +"Tom Clancy's Rainbow Six 3: Raven Shield": pageId: 6307 steam: 19830 steamSide: - 19840 templates: - - '{{Game data/config|Windows|{{p|game}}\system\*.ini|{{p|game}}\Save\Profiles\{{P|uid}}.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\Save}}' -Tom Clancy's Rainbow Six Extraction: + - "{{Game data/config|Windows|{{p|game}}\\system\\*.ini|{{p|game}}\\Save\\Profiles\\{{P|uid}}.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\Save}}" +"Tom Clancy's Rainbow Six Extraction": pageId: 138439 renamedFrom: - - Tom Clancy's Rainbow Six Quarantine + - "Tom Clancy's Rainbow Six Quarantine" steam: 2379390 templates: - - >- - {{Game data/config|Windows|{{P|userprofile\Documents}}\My Games\Rainbow Six - - Extraction\{{p|uid}}\GameSettings.ini|{{p|hkcu}}\Software\Ubisoft\Rainbow Six - Extraction\}} - - '{{Game data/saves|Windows|{{P|uplay}}\savegames\{{P|uid}}\5271\}}' -Tom Clancy's Rainbow Six Siege: + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\My Games\\Rainbow Six - Extraction\\{{p|uid}}\\GameSettings.ini|{{p|hkcu}}\\Software\\Ubisoft\\Rainbow Six - Extraction\\}}" + - "{{Game data/saves|Windows|{{P|uplay}}\\savegames\\{{P|uid}}\\5271\\}}" +"Tom Clancy's Rainbow Six Siege": pageId: 23053 steam: 359550 templates: - - >- - {{Game data/config|Windows|{{P|userprofile\Documents}}\My Games\Rainbow Six - - Siege\{{p|uid}}\GameSettings.ini|{{p|hkcu}}\Software\Ubisoft\Rainbow Six - Siege\}} - - '{{Game data/saves|Windows|{{P|uplay}}\savegames\{{P|uid}}\635\}}' -'Tom Clancy''s Rainbow Six: Covert Ops Essentials': + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\My Games\\Rainbow Six - Siege\\{{p|uid}}\\GameSettings.ini|{{p|hkcu}}\\Software\\Ubisoft\\Rainbow Six - Siege\\}}" + - "{{Game data/saves|Windows|{{P|uplay}}\\savegames\\{{P|uid}}\\635\\}}" +"Tom Clancy's Rainbow Six: Covert Ops Essentials": pageId: 25831 renamedFrom: - - 'Tom Clancy''s Rainbow Six: Covert Operations Essentials' + - "Tom Clancy's Rainbow Six: Covert Operations Essentials" templates: - - '{{Game data/config|Windows|{{p|hklm}}\SOFTWARE\{{p|wow64}}\Red Storm Entertainment\Rogue Spear}}' - - '{{Game data/saves|Windows|{{p|game}}\data\Save\}}' -'Tom Clancy''s Rainbow Six: Lockdown': + - "{{Game data/config|Windows|{{p|hklm}}\\SOFTWARE\\{{p|wow64}}\\Red Storm Entertainment\\Rogue Spear}}" + - "{{Game data/saves|Windows|{{p|game}}\\data\\Save\\}}" +"Tom Clancy's Rainbow Six: Lockdown": pageId: 15513 steam: 15000 templates: - - '{{Game data/config|Windows|{{p|game}}\data}}' - - '{{Game data/saves|Windows|{{p|game}}\data\save}}' -'Tom Clancy''s Rainbow Six: Rogue Spear': + - "{{Game data/config|Windows|{{p|game}}\\data}}" + - "{{Game data/saves|Windows|{{p|game}}\\data\\save}}" +"Tom Clancy's Rainbow Six: Rogue Spear": pageId: 18401 steam: 13660 steamSide: - 19910 templates: - - '{{Game data/config|Windows|{{p|hklm}}\SOFTWARE\{{p|wow64}}\Red Storm Entertainment\Rogue Spear}}' - - '{{Game data/saves|Windows|{{p|game}}\data\save\}}' -'Tom Clancy''s Rainbow Six: Rogue Spear: Black Thorn': + - "{{Game data/config|Windows|{{p|hklm}}\\SOFTWARE\\{{p|wow64}}\\Red Storm Entertainment\\Rogue Spear}}" + - "{{Game data/saves|Windows|{{p|game}}\\data\\save\\}}" +"Tom Clancy's Rainbow Six: Rogue Spear: Black Thorn": pageId: 25720 templates: - - '{{Game data/config|Windows|{{p|hklm}}\SOFTWARE\{{p|wow64}}\Red Storm Entertainment\Rogue Spear}}' - - '{{Game data/saves|Windows|{{p|game}}\data\Save\}}' -'Tom Clancy''s Rainbow Six: Vegas': + - "{{Game data/config|Windows|{{p|hklm}}\\SOFTWARE\\{{p|wow64}}\\Red Storm Entertainment\\Rogue Spear}}" + - "{{Game data/saves|Windows|{{p|game}}\\data\\Save\\}}" +"Tom Clancy's Rainbow Six: Vegas": pageId: 7721 steam: 13540 templates: - - '{{Game data/config|Windows|{{p|game}}\Engine\Config|{{p|userprofile\Documents}}\Ubisoft\R6Vegas\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Ubisoft\R6Vegas\}}' -'Tom Clancy''s Rainbow Six: Vegas 2': + - "{{Game data/config|Windows|{{p|game}}\\Engine\\Config|{{p|userprofile\\Documents}}\\Ubisoft\\R6Vegas\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Ubisoft\\R6Vegas\\}}" +"Tom Clancy's Rainbow Six: Vegas 2": pageId: 5812 steam: 15120 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Ubisoft\R6Vegas2\|{{p|game}}\KellerGame\Config\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Ubisoft\R6Vegas2\}}' -Tom Clancy's SSN: + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Ubisoft\\R6Vegas2\\|{{p|game}}\\KellerGame\\Config\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Ubisoft\\R6Vegas2\\}}" +"Tom Clancy's SSN": pageId: 189507 -Tom Clancy's Splinter Cell: +"Tom Clancy's Splinter Cell": gog: 1207659034 pageId: 8580 steam: 13560 templates: - - '{{Game data/config|Windows|{{p|game}}\system\*.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\Save\{{p|uid}}\}}' -'Tom Clancy''s Splinter Cell: Blacklist': + - "{{Game data/config|Windows|{{p|game}}\\system\\*.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\Save\\{{p|uid}}\\}}" +"Tom Clancy's Splinter Cell: Blacklist": pageId: 8950 steam: 235600 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Ubisoft\Blacklist\}}' - - '{{Game data/saves|Windows|{{p|uplay}}\savegames\{{p|uid}}\91\|{{p|uplay}}\savegames\{{p|uid}}\449\}}' -'Tom Clancy''s Splinter Cell: Chaos Theory': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Ubisoft\\Blacklist\\}}" + - "{{Game data/saves|Windows|{{p|uplay}}\\savegames\\{{p|uid}}\\91\\|{{p|uplay}}\\savegames\\{{p|uid}}\\449\\}}" +"Tom Clancy's Splinter Cell: Chaos Theory": pageId: 1391 steam: 13570 templates: - - '{{Game data/config|Windows|{{p|programdata}}\Ubisoft\Tom Clancy''s Splinter Cell Chaos Theory\}}' - - '{{Game data/saves|Windows|{{p|programdata}}\Ubisoft\Tom Clancy''s Splinter Cell Chaos Theory\Profiles\}}' -'Tom Clancy''s Splinter Cell: Conviction': + - "{{Game data/config|Windows|{{p|programdata}}\\Ubisoft\\Tom Clancy's Splinter Cell Chaos Theory\\}}" + - "{{Game data/saves|Windows|{{p|programdata}}\\Ubisoft\\Tom Clancy's Splinter Cell Chaos Theory\\Profiles\\}}" +"Tom Clancy's Splinter Cell: Conviction": pageId: 9430 steam: 33229 steamSide: - 33220 - 33372 templates: - - '{{Game data/config|Windows|{{p|programdata}}\Ubisoft\Conviction\ConvictionUserPC.ini}}' - - '{{Game data/saves|Windows|{{P|Uplay}}/savegames/{{p|uid}}/2/}}' -'Tom Clancy''s Splinter Cell: Double Agent': + - "{{Game data/config|Windows|{{p|programdata}}\\Ubisoft\\Conviction\\ConvictionUserPC.ini}}" + - "{{Game data/saves|Windows|{{P|Uplay}}/savegames/{{p|uid}}/2/}}" +"Tom Clancy's Splinter Cell: Double Agent": pageId: 9148 steam: 13580 templates: - - >- - {{Game - data/config|Windows|{{p|game}}\|{{p|game}}\SCDA-Offline\System\SplinterCell4.ini|{{p|game}}\SCDA-Online\System\Default.ini}} - - >- - {{Game data/saves|Windows|{{p|programdata}}\Application - Data\Ubisoft\SplinterCell4\{{p|uid}}\|{{p|programdata}}\Application - Data\Ubisoft\SplinterCell4\save\Offline\{{p|uid}}}} -'Tom Clancy''s Splinter Cell: Pandora Tomorrow': + - "{{Game data/config|Windows|{{p|game}}\\|{{p|game}}\\SCDA-Offline\\System\\SplinterCell4.ini|{{p|game}}\\SCDA-Online\\System\\Default.ini}}" + - "{{Game data/saves|Windows|{{p|programdata}}\\Application Data\\Ubisoft\\SplinterCell4\\{{p|uid}}\\|{{p|programdata}}\\Application Data\\Ubisoft\\SplinterCell4\\save\\Offline\\{{p|uid}}}}" +"Tom Clancy's Splinter Cell: Pandora Tomorrow": pageId: 9429 templates: - - '{{Game data/config|Windows|{{p|game}}\offline\system|{{p|game}}\online\system}}' - - '{{Game data/saves|Windows|{{p|game}}\offline\Save}}' -Tom Clancy's The Division: + - "{{Game data/config|Windows|{{p|game}}\\offline\\system|{{p|game}}\\online\\system}}" + - "{{Game data/saves|Windows|{{p|game}}\\offline\\Save}}" +"Tom Clancy's The Division": pageId: 16701 steam: 365590 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Tom Clancy''s The Division\}}' -Tom Clancy's The Division 2: + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Tom Clancy's The Division\\}}" +"Tom Clancy's The Division 2": pageId: 89080 steam: 2221490 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Tom Clancy''s The Division 2\}}' -Tom Clancy's The Division 3: + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Tom Clancy's The Division 2\\}}" +"Tom Clancy's The Division 3": pageId: 189958 -Tom Clancy's The Division Heartland: +"Tom Clancy's The Division Heartland": pageId: 168285 -Tom Clancy's XDefiant: +"Tom Clancy's XDefiant": pageId: 170133 -Tom Clancy's ruthless.com: +"Tom Clancy's ruthless.com": pageId: 170481 templates: - - '{{Game data/config|Windows|{{p|game}}\prefs.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\save}}' + - "{{Game data/config|Windows|{{p|game}}\\prefs.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\save}}" Tom and Jerry in Fists of Furry: pageId: 94967 Tom vs. The Armies of Hell: pageId: 42021 steam: 262630 -Tom's Mansion: +"Tom's Mansion": pageId: 77082 steam: 748660 Tomai: @@ -177351,11 +172421,11 @@ Tomb Raider (1996): pageId: 3290 steam: 224960 templates: - - '{{Game data/config|DOS|{{p|game}}\SETTINGS.DAT}}' - - '{{Game data/config|Windows|{{p|game}}\SETTINGS.DAT|{{p|game}}\ATISET.DAT}}' - - '{{Game data/saves|DOS|{{p|game}}\SAVEGAME.*}}' - - '{{Game data/saves|Windows|{{p|game}}\TOMBRAID\saveati.*}}' - - '{{Game data/saves|Steam|{{p|game}}\TOMBRAID\SAVEGAME.*}}' + - "{{Game data/config|DOS|{{p|game}}\\SETTINGS.DAT}}" + - "{{Game data/config|Windows|{{p|game}}\\SETTINGS.DAT|{{p|game}}\\ATISET.DAT}}" + - "{{Game data/saves|DOS|{{p|game}}\\SAVEGAME.*}}" + - "{{Game data/saves|Windows|{{p|game}}\\TOMBRAID\\saveati.*}}" + - "{{Game data/saves|Steam|{{p|game}}\\TOMBRAID\\SAVEGAME.*}}" Tomb Raider (2013): gog: 1724969043 pageId: 3881 @@ -177389,12 +172459,12 @@ Tomb Raider (2013): - 208818 - 237450 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Crystal Dynamics\Tomb Raider\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Feral Interactive/Tomb Raider/}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/feral-interactive/Tomb Raider/}}' - - '{{Game data/saves|Epic Games Store|{{p|userprofile\Documents}}\Tomb Raider\{{p|uid}}}}' - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/203160/}}' - - '{{Game data/saves|GOG.com|{{p|userprofile\Documents}}\My Games\Tomb Raider}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Crystal Dynamics\\Tomb Raider\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Feral Interactive/Tomb Raider/}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/feral-interactive/Tomb Raider/}}" + - "{{Game data/saves|Epic Games Store|{{p|userprofile\\Documents}}\\Tomb Raider\\{{p|uid}}}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/203160/}}" + - "{{Game data/saves|GOG.com|{{p|userprofile\\Documents}}\\My Games\\Tomb Raider}}" Tomb Raider - The Final Hours Digital Book: pageId: 37523 steam: 233410 @@ -177405,8 +172475,8 @@ Tomb Raider Chronicles: pageId: 7012 steam: 225000 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/saves|Windows|{{p|game}}\}}' + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\}}" Tomb Raider I-III Remastered: pageId: 189724 steam: 2478970 @@ -177417,63 +172487,59 @@ Tomb Raider II: pageId: 7003 steam: 225300 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Core Design\Tomb Raider II}}' - - '{{Game data/saves|Windows|{{p|game}}\savegame.*}}' -'Tomb Raider III: Adventures of Lara Croft': + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Core Design\\Tomb Raider II}}" + - "{{Game data/saves|Windows|{{p|game}}\\savegame.*}}" +"Tomb Raider III: Adventures of Lara Croft": gog: 1207663493 gogSide: - 1207659052 pageId: 4286 steam: 225320 templates: - - '{{Game data/config|Windows|{{P|game}}\config.txt}}' - - '{{Game data/saves|Windows|{{P|game}}\savegame.*}}' -'Tomb Raider: Anniversary': + - "{{Game data/config|Windows|{{P|game}}\\config.txt}}" + - "{{Game data/saves|Windows|{{P|game}}\\savegame.*}}" +"Tomb Raider: Anniversary": gog: 1202885143 pageId: 7005 steam: 8000 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Crystal Dynamics\Tomb Raider: Anniversary\}}' - - >- - {{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Feral Interactive/Tomb Raider - Anniversary/Preferences Data}} - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Eidos\Tomb Raider - Anniversary\}}' - - >- - {{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Feral Interactive/Tomb Raider - Anniversary/profiles}} -'Tomb Raider: Legend': + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Crystal Dynamics\\Tomb Raider: Anniversary\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Feral Interactive/Tomb Raider Anniversary/Preferences Data}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Eidos\\Tomb Raider - Anniversary\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Feral Interactive/Tomb Raider Anniversary/profiles}}" +"Tomb Raider: Legend": gog: 1810841502 pageId: 3886 steam: 7000 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Crystal Dynamics\Tomb Raider: Legend\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Tomb Raider - Legend\}}' -'Tomb Raider: The Angel of Darkness': + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Crystal Dynamics\\Tomb Raider: Legend\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Tomb Raider - Legend\\}}" +"Tomb Raider: The Angel of Darkness": gog: 1207659089 pageId: 7031 steam: 225020 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Core Design\TombRaiderAngelOfDarkness\1.0\}}' - - '{{Game data/saves|Windows|{{p|game}}\SaveGame\}}' -'Tomb Raider: The Last Revelation': + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Core Design\\TombRaiderAngelOfDarkness\\1.0\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\SaveGame\\}}" +"Tomb Raider: The Last Revelation": gog: 1207663513 gogSide: - 1207659077 pageId: 7007 steam: 224980 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/config|Mac OS|{{p|game}}\}}' - - '{{Game data/saves|Windows|{{p|game}}\}}' - - '{{Game data/saves|Mac OS|{{p|game}}\}}' -'Tomb Raider: Underworld': + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/config|Mac OS|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\}}" + - "{{Game data/saves|Mac OS|{{p|game}}\\}}" +"Tomb Raider: Underworld": gog: 1900745791 pageId: 3911 steam: 8140 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Crystal Dynamics\Tomb Raider: Underworld}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Eidos\Tomb Raider - Underworld\}}' -'Tomb Reader: TrapLand': + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Crystal Dynamics\\Tomb Raider: Underworld}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Eidos\\Tomb Raider - Underworld\\}}" +"Tomb Reader: TrapLand": pageId: 97892 steam: 871670 Tomb Robber: @@ -177488,7 +172554,7 @@ Tomb of Friends +: Tomb of Tyrants: pageId: 37729 steam: 340360 -'Tomb of Zojir: Last Half of Darkness': +"Tomb of Zojir: Last Half of Darkness": pageId: 134062 steam: 384910 Tombeaux: @@ -177503,7 +172569,7 @@ Tomboys Need Love Too!: Tommy Tronic: pageId: 41060 steam: 41660 -Tommy's Battlegrounds: +"Tommy's Battlegrounds": pageId: 153308 renamedFrom: - Mazi - Remastered @@ -177514,10 +172580,10 @@ Tommyknockers: Tomorrow: pageId: 57641 steam: 405480 -Tomorrow Don't Come: +"Tomorrow Don't Come": pageId: 87081 steam: 758570 -'Tomoyo After: It''s a Wonderful Life': +"Tomoyo After: It's a Wonderful Life": pageId: 35130 steam: 462990 Tompi Jones: @@ -177534,88 +172600,86 @@ Tongue of the Fatman: Tonic Trouble: pageId: 14475 templates: - - '{{Game data/config|Windows|{{p|game}}\GAMEDATA\OPTIONS|{{p|windir}}\UBISOFT\UBI.INI}}' - - '{{Game data/saves|Windows|{{p|game}}\GAMEDATA\SaveGame}}' + - "{{Game data/config|Windows|{{p|game}}\\GAMEDATA\\OPTIONS|{{p|windir}}\\UBISOFT\\UBI.INI}}" + - "{{Game data/saves|Windows|{{p|game}}\\GAMEDATA\\SaveGame}}" Tonic Trouble Special Edition: pageId: 146807 templates: - - '{{Game data/config|Windows|{{p|game}}\GameData\Options|{{p|windir}}\Ubisoft\ubi.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\GameData\SaveGame}}' + - "{{Game data/config|Windows|{{p|game}}\\GameData\\Options|{{p|windir}}\\Ubisoft\\ubi.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\GameData\\SaveGame}}" Tonight We Riot: gog: 1095982752 pageId: 52426 steam: 290690 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Pixel Pushers Union 512\Tonight We Riot\}}' - - '{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/Pixel Pushers Union 512/Tonight We Riot/prefs}}' - - '{{Game data/saves|Windows|{{P|hkcu}}\Software\Pixel Pushers Union 512\Tonight We Riot\}}' - - '{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/Pixel Pushers Union 512/Tonight We Riot/prefs}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Pixel Pushers Union 512\\Tonight We Riot\\}}" + - "{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/Pixel Pushers Union 512/Tonight We Riot/prefs}}" + - "{{Game data/saves|Windows|{{P|hkcu}}\\Software\\Pixel Pushers Union 512\\Tonight We Riot\\}}" + - "{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/Pixel Pushers Union 512/Tonight We Riot/prefs}}" Tonka Construction: pageId: 177121 Tonka Firefighter: pageId: 177509 -Tony Hawk's American Wasteland: +"Tony Hawk's American Wasteland": pageId: 18776 templates: - - '{{Game data/saves|Windows|{{p|game}}\Game\Save\}}' -Tony Hawk's Pro Skater 1 + 2: + - "{{Game data/saves|Windows|{{p|game}}\\Game\\Save\\}}" +"Tony Hawk's Pro Skater 1 + 2": pageId: 160343 steam: 2395210 templates: - - >- - {{Game - data/config|Windows|{{P|localappdata}}\VicariousVisions\THPS\GraphicsSettings.ini|{{P|localappdata}}\VicariousVisions\THPS\InputSettings.ini}} - - '{{Game data/saves|Windows|{{P|localappdata}}\VicariousVisions\THPS\Saved\SaveGames\}}' -Tony Hawk's Pro Skater 2: + - "{{Game data/config|Windows|{{P|localappdata}}\\VicariousVisions\\THPS\\GraphicsSettings.ini|{{P|localappdata}}\\VicariousVisions\\THPS\\InputSettings.ini}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\VicariousVisions\\THPS\\Saved\\SaveGames\\}}" +"Tony Hawk's Pro Skater 2": pageId: 804 templates: - - '{{Game data/config|Windows|{{p|game}}\TH2_OPT.CFG}}' - - '{{Game data/saves|Windows|{{p|game}}\Save}}' -Tony Hawk's Pro Skater 3: + - "{{Game data/config|Windows|{{p|game}}\\TH2_OPT.CFG}}" + - "{{Game data/saves|Windows|{{p|game}}\\Save}}" +"Tony Hawk's Pro Skater 3": pageId: 18774 templates: - - '{{Game data/saves|Windows|{{p|game}}\Data\Settings}}' -Tony Hawk's Pro Skater 4: + - "{{Game data/saves|Windows|{{p|game}}\\Data\\Settings}}" +"Tony Hawk's Pro Skater 4": pageId: 796 templates: - - '{{Game data/config|Windows|{{p|game}}\Game\config.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\Game\Save\}}' -Tony Hawk's Pro Skater HD: + - "{{Game data/config|Windows|{{p|game}}\\Game\\config.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\Game\\Save\\}}" +"Tony Hawk's Pro Skater HD": pageId: 3662 steam: 207210 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Tony Hawk Pro Skater HD\THHDGame\Config}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Tony Hawk Pro Skater HD\THHDGame\Config\CFile.bin}}' -Tony Hawk's Underground: + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Tony Hawk Pro Skater HD\\THHDGame\\Config}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Tony Hawk Pro Skater HD\\THHDGame\\Config\\CFile.bin}}" +"Tony Hawk's Underground": pageId: 18775 templates: - - '{{Game data/saves|Windows|{{p|game}}\Game\Save\}}' -Tony Hawk's Underground 2: + - "{{Game data/saves|Windows|{{p|game}}\\Game\\Save\\}}" +"Tony Hawk's Underground 2": pageId: 16325 templates: - - '{{Game data/saves|Windows|{{p|game}}\Game\Save\}}' + - "{{Game data/saves|Windows|{{p|game}}\\Game\\Save\\}}" Tony Slopes: pageId: 108964 steam: 835770 -Tony Stewart's All-American Racing: +"Tony Stewart's All-American Racing": pageId: 180891 steam: 1367690 -Tony Stewart's Sprint Car Racing: +"Tony Stewart's Sprint Car Racing": pageId: 180893 steam: 1240230 Tony Tough and the Night of Roasted Moths: pageId: 47978 steam: 356210 templates: - - '{{Game data/saves|Windows|{{p|game}}\SAVE\*.sav}}' - - '{{Game data/saves|OS X|{{p|game}}\Saves\tony.*}}' + - "{{Game data/saves|Windows|{{p|game}}\\SAVE\\*.sav}}" + - "{{Game data/saves|OS X|{{p|game}}\\Saves\\tony.*}}" Too Angry to Space: pageId: 41751 steam: 494990 Too Hot!: pageId: 123689 steam: 968540 -'Too Loud: Chapter 1': +"Too Loud: Chapter 1": pageId: 141029 steam: 610620 Too Many Weapons: @@ -177628,7 +172692,7 @@ Toodee and Topdee: pageId: 189316 steam: 1303950 templates: - - '{{Game data/saves|Windows|userprofile\AppData\Local\ToodeeAndTopdee\default}}' + - "{{Game data/saves|Windows|userprofile\\AppData\\Local\\ToodeeAndTopdee\\default}}" Tooki: pageId: 77293 steam: 731520 @@ -177643,16 +172707,16 @@ Tools Up!: pageId: 135766 steam: 1004490 templates: - - '{{Game data/config|Windows|{{P|userprofile}}\AppData\LocalLow\The Knights of Unity\Tools Up\Settings.ini}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\The Knights of Unity\Tools Up\SaveFile.dat}}' + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\The Knights of Unity\\Tools Up\\Settings.ini}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\The Knights of Unity\\Tools Up\\SaveFile.dat}}" Toon Ocean VR: pageId: 36698 steam: 519160 Toon Quad: pageId: 66337 templates: - - '{{Game data/config|Windows|{{P|game}}\RData\Players}}' - - '{{Game data/saves|Windows|{{P|game}}\RData\Players}}' + - "{{Game data/config|Windows|{{P|game}}\\RData\\Players}}" + - "{{Game data/saves|Windows|{{P|game}}\\RData\\Players}}" Toon Twister 3-D: pageId: 183489 Toon War: @@ -177661,35 +172725,35 @@ Toon War: ToonCar: pageId: 56306 templates: - - '{{Game data/config|Windows|{{p|game}}\RData\Players}}' - - '{{Game data/saves|Windows|{{p|game}}\RData\Players}}' + - "{{Game data/config|Windows|{{p|game}}\\RData\\Players}}" + - "{{Game data/saves|Windows|{{p|game}}\\RData\\Players}}" Toonstruck: gog: 1207666633 pageId: 22855 steam: 369830 templates: - - '{{Game data/config|DOS|{{p|game}}\TOONSTRK.CFG}}' - - '{{Game data/saves|DOS|{{p|game}}\*.SAV}}' + - "{{Game data/config|DOS|{{p|game}}\\TOONSTRK.CFG}}" + - "{{Game data/saves|DOS|{{p|game}}\\*.SAV}}" Toontown Online: pageId: 166129 templates: - - '{{Game data/config|Windows|{{p|game}}\useropt}}' + - "{{Game data/config|Windows|{{p|game}}\\useropt}}" Toontown Realms: pageId: 184244 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Toontown Realms}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Toontown Realms}}' + - "{{Game data/config|Windows|{{p|appdata}}\\Toontown Realms}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Toontown Realms}}" Toontown Rewritten: pageId: 20772 renamedFrom: - ToonTown Rewritten templates: - - '{{Game data/config|Windows|{{p|game}}\settings.json}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Toontown Rewritten/settings.json}}' -'Toontown: Corporate Clash': + - "{{Game data/config|Windows|{{p|game}}\\settings.json}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Toontown Rewritten/settings.json}}" +"Toontown: Corporate Clash": pageId: 180518 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Corporate Clash}}' + - "{{Game data/config|Windows|{{p|appdata}}\\Corporate Clash}}" Tooth and Claw: pageId: 78154 steam: 698600 @@ -177698,12 +172762,12 @@ Tooth and Tail: pageId: 52009 steam: 286000 templates: - - '{{Game data/config|Windows|{{P|appdata}}\ToothAndTail\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/.config/ToothAndTail}}' - - '{{Game data/config|Linux|{{p|xdgconfighome}}/ToothAndTail/}}' - - '{{Game data/saves|Windows|{{P|appdata}}\ToothAndTail\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/.config/ToothAndTail}}' - - '{{Game data/saves|Linux|{{p|xdgconfighome}}/ToothAndTail/}}' + - "{{Game data/config|Windows|{{P|appdata}}\\ToothAndTail\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/.config/ToothAndTail}}" + - "{{Game data/config|Linux|{{p|xdgconfighome}}/ToothAndTail/}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\ToothAndTail\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/.config/ToothAndTail}}" + - "{{Game data/saves|Linux|{{p|xdgconfighome}}/ToothAndTail/}}" Top Burger: pageId: 134756 steam: 1058930 @@ -177717,9 +172781,9 @@ Top Eleven: pageId: 175298 renamedFrom: - Top Eleven 2022 -'Top Gear: Drift Legends': +"Top Gear: Drift Legends": pageId: 187671 -'Top Gear: Race The Stig': +"Top Gear: Race The Stig": pageId: 171920 Top Gun (2010): pageId: 166091 @@ -177727,9 +172791,9 @@ Top Gun (2010): Top Hat: pageId: 49831 steam: 315940 -'Top Hunter: Roddy & Cathy': +"Top Hunter: Roddy & Cathy": pageId: 168895 -Top Player's Golf: +"Top Player's Golf": pageId: 168853 Top Punch: pageId: 91849 @@ -177737,18 +172801,18 @@ Top Punch: Top Secret: pageId: 76553 steam: 613980 -'Top Speed 2: Racing Legends': +"Top Speed 2: Racing Legends": pageId: 144003 steam: 1103780 Top Spin: pageId: 161353 templates: - - '{{Game data/config|Windows|{{P|game}}\TopSpin}}' + - "{{Game data/config|Windows|{{P|game}}\\TopSpin}}" Top Spin 2: pageId: 162060 steam: 7810 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Aspyr\Top Spin 2}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\Aspyr\\Top Spin 2}}" Top Torch: pageId: 127301 steam: 1014310 @@ -177758,7 +172822,7 @@ Top Trumps Turbo: TopDownFarter: pageId: 135139 steam: 1071580 -'TopShot: Darkness': +"TopShot: Darkness": pageId: 87401 steam: 767550 Topdown Showdown: @@ -177770,7 +172834,7 @@ Topfold: Topless Hentai Mosaic: pageId: 145933 steam: 1044310 -'TopplePOP: Bungee Blockbusters': +"TopplePOP: Bungee Blockbusters": pageId: 151375 steam: 1175770 Tora: @@ -177793,61 +172857,53 @@ Torchlight: pageId: 1071 steam: 41500 templates: - - >- - {{Game data/config|Windows|{{p|appdata}}\runic games\torchlight\local_settings.txt|{{p|appdata}}\runic - games\torchlight\SETTINGS.TXT}} - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/runic games/torchlight/}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.runicgames/Torchlight/}}' - - '{{Game data/saves|Windows|{{p|appdata}}\runic games\torchlight\save\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/runic games/torchlight/save/}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.runicgames/Torchlight/Save/}}' - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{P|uid}}/41500/remote/}}' + - "{{Game data/config|Windows|{{p|appdata}}\\runic games\\torchlight\\local_settings.txt|{{p|appdata}}\\runic games\\torchlight\\SETTINGS.TXT}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/runic games/torchlight/}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.runicgames/Torchlight/}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\runic games\\torchlight\\save\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/runic games/torchlight/save/}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.runicgames/Torchlight/Save/}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{P|uid}}/41500/remote/}}" Torchlight II: gog: 1958228073 pageId: 3587 steam: 200710 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Runic Games\Torchlight - 2\save\|{{p|userprofile\Documents}}\My Games\Runic Games\Torchlight 2\local_settings.txt}} - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Runic Games/Torchlight 2/}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.local/share/Runic Games/Torchlight 2/}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Runic Games\Torchlight 2\save\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Runic Games/Torchlight 2/save/}}' - - >- - {{Game data/saves|Linux|{{p|linuxhome}}/.local/share/Steam/SteamApps/common/Torchlight II/my games/runic - games/torchlight 2/save/}} + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Runic Games\\Torchlight 2\\save\\|{{p|userprofile\\Documents}}\\My Games\\Runic Games\\Torchlight 2\\local_settings.txt}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Runic Games/Torchlight 2/}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.local/share/Runic Games/Torchlight 2/}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Runic Games\\Torchlight 2\\save\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Runic Games/Torchlight 2/save/}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.local/share/Steam/SteamApps/common/Torchlight II/my games/runic games/torchlight 2/save/}}" Torchlight III: pageId: 106331 steam: 1030210 templates: - - '{{Game data/config|Windows|{{p|game}}\Frontiers\Saved\Config\WindowsNoEditor\}}' - - >- - {{Game data/config|Microsoft - Store|{{P|localappdata}}\Packages\PerfectWorldEntertainment.TorchlightFrontiers_jrajkyc4tsa6w\LocalCache\Local\Frontiers\Saved\Config\WinGDK\}} - - '{{Game data/saves|Windows|{{p|localappdata}}\Frontiers\Saved\SaveGames}}' -'Torchlight: Infinite': + - "{{Game data/config|Windows|{{p|game}}\\Frontiers\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/config|Microsoft Store|{{P|localappdata}}\\Packages\\PerfectWorldEntertainment.TorchlightFrontiers_jrajkyc4tsa6w\\LocalCache\\Local\\Frontiers\\Saved\\Config\\WinGDK\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Frontiers\\Saved\\SaveGames}}" +"Torchlight: Infinite": pageId: 187175 steam: 1974050 Toree 2: pageId: 184558 steam: 1722620 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Siactro\Toree2\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Siactro\Toree2\*.sav}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Siactro\\Toree2\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Siactro\\Toree2\\*.sav}}" Toree 3D: pageId: 173380 steam: 1554840 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Siactro\Toree3D\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Siactro\Toree3D\*.sav}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Siactro\\Toree3D\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Siactro\\Toree3D\\*.sav}}" Toren: gog: 1429865580 pageId: 25089 steam: 320820 templates: - - '{{Game data/saves|Windows|{{p|game}}\}}' -Torgar's Quest: + - "{{Game data/saves|Windows|{{p|game}}\\}}" +"Torgar's Quest": pageId: 42810 steam: 448810 Tori: @@ -177865,29 +172921,29 @@ Torii Path: Torimodosu: pageId: 88041 steam: 812390 -Torin's Passage: +"Torin's Passage": gog: 1207659044 pageId: 19733 Torino 2006: pageId: 89763 -'Torment: Tides of Numenera': +"Torment: Tides of Numenera": gog: 1958306970 gogSide: + - 1551844192 - 1563444452 - 1700870503 - 1832019184 - - 1551844192 - 1958306970 pageId: 5382 steam: 272270 steamSide: - 342210 templates: - - '{{Game data/config|Windows|{{p|HKCU}}\Software\InXile Entertainment\Torment\}}' - - '{{Game data/config|Linux|{{p|xdgconfighome}}/unity3d/InXile Entertainment/Torment/}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\InXile Entertainment\Torment\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/unity.InXile Entertainment.Torment/Saves/}}' - - '{{Game data/saves|Linux|{{p|xdgconfighome}}/unity3d/InXile Entertainment/Torment/}}' + - "{{Game data/config|Windows|{{p|HKCU}}\\Software\\InXile Entertainment\\Torment\\}}" + - "{{Game data/config|Linux|{{p|xdgconfighome}}/unity3d/InXile Entertainment/Torment/}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\InXile Entertainment\\Torment\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/unity.InXile Entertainment.Torment/Saves/}}" + - "{{Game data/saves|Linux|{{p|xdgconfighome}}/unity3d/InXile Entertainment/Torment/}}" Tormented 12: pageId: 42549 steam: 391380 @@ -177896,8 +172952,8 @@ Tormented Souls: pageId: 166271 steam: 1367590 templates: - - '{{Game data/config|Windows|{{P|userprofile\appdata\locallow}}\duale-abstractd\Tormented Souls Release\}}' - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\duale-abstractd\Tormented Souls Release\Saves\}}' + - "{{Game data/config|Windows|{{P|userprofile\\appdata\\locallow}}\\duale-abstractd\\Tormented Souls Release\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\duale-abstractd\\Tormented Souls Release\\Saves\\}}" Tormented Souls 2: pageId: 190874 steam: 2464280 @@ -177905,18 +172961,18 @@ Tormentor X Punisher: pageId: 57839 steam: 500670 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\TormentorXPunisher\}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\TormentorXPunisher\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\TormentorXPunisher\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\TormentorXPunisher\\}}" Tormentum II: pageId: 122794 steam: 931060 -'Tormentum: Dark Sorrow': +"Tormentum: Dark Sorrow": gog: 1995239510 pageId: 37134 steam: 335000 templates: - - '{{Game data/config|Windows|{{P|game}}\dat.xlg}}' - - '{{Game data/saves|Windows|{{P|game}}\dat.xlg}}' + - "{{Game data/config|Windows|{{P|game}}\\dat.xlg}}" + - "{{Game data/saves|Windows|{{P|game}}\\dat.xlg}}" Torn: pageId: 91184 steam: 557520 @@ -177936,7 +172992,7 @@ Torn Familjen: Torn Tales: pageId: 40345 steam: 388960 -'Torn Tales: Rebound Edition': +"Torn Tales: Rebound Edition": pageId: 109092 steam: 865720 Tornado!: @@ -177948,7 +173004,7 @@ Tornuffalo: Toro: pageId: 44818 steam: 416720 -'Torque: Simulation Begins': +"Torque: Simulation Begins": pageId: 89516 steam: 805790 TorqueL: @@ -177956,18 +173012,18 @@ TorqueL: steam: 250070 Torrente: pageId: 187088 -'Torrente 3: The Protector': +"Torrente 3: The Protector": pageId: 76738 templates: - - '{{Game data/saves|Windows|{{p|game}}\datos\profiles\}}' + - "{{Game data/saves|Windows|{{p|game}}\\datos\\profiles\\}}" Torsion: pageId: 36596 steam: 522050 -'Tortuga: A Pirate''s Tale': +"Tortuga: A Pirate's Tale": pageId: 184532 -'Tortuga: Pirates of the New World': +"Tortuga: Pirates of the New World": pageId: 184534 -'Tortuga: Two Treasures': +"Tortuga: Two Treasures": pageId: 184537 Torture Chamber: pageId: 92975 @@ -177983,32 +173039,32 @@ Total Annihilation: pageId: 7303 steam: 298030 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Cavedog Entertainment\Total Annihilation\}}' - - '{{Game data/saves|Windows|{{p|game}}\SAVEGAME\}}' -'Total Annihilation: Kingdoms': + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Cavedog Entertainment\\Total Annihilation\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\SAVEGAME\\}}" +"Total Annihilation: Kingdoms": gog: 1207658912 pageId: 15827 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Cavedog Entertainment\Kingdoms}}' - - '{{Game data/saves|Windows|{{p|game}}\SavedGames}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Cavedog Entertainment\\Kingdoms}}" + - "{{Game data/saves|Windows|{{p|game}}\\SavedGames}}" Total Battle: pageId: 124070 steam: 978290 Total Club Manager 2003: pageId: 157562 templates: - - '{{Game data/config|Windows|{{P|game}}\soccer.config}}' - - '{{Game data/saves|Windows|{{P|game}}\Games}}' + - "{{Game data/config|Windows|{{P|game}}\\soccer.config}}" + - "{{Game data/saves|Windows|{{P|game}}\\Games}}" Total Club Manager 2004: pageId: 157650 templates: - - '{{Game data/config|Windows|{{P|game}}\EA SPORTS\TOTAL CLUB MANAGER 2004\data\cmn\}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\TCM 2004\games}}' + - "{{Game data/config|Windows|{{P|game}}\\EA SPORTS\\TOTAL CLUB MANAGER 2004\\data\\cmn\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\TCM 2004\\games}}" Total Club Manager 2005: pageId: 157651 templates: - - '{{Game data/config|Windows|{{P|game}}\EA SPORTS\TOTAL CLUB MANAGER 2005\data\cmn\}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\TCM 2005\games}}' + - "{{Game data/config|Windows|{{P|game}}\\EA SPORTS\\TOTAL CLUB MANAGER 2005\\data\\cmn\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\TCM 2005\\games}}" Total Distortion: pageId: 81322 Total Esports Action Manager: @@ -178025,8 +173081,8 @@ Total Extreme Wrestling 2013: Total Immersion Racing: pageId: 57936 templates: - - '{{Game data/config|Windows|{{p|game}}\CONFIG\syscfg.ini}}' - - '{{Game data/saves|Windows|{{P|game}}\SAVEDATA\AUTOSAVE}}' + - "{{Game data/config|Windows|{{p|game}}\\CONFIG\\syscfg.ini}}" + - "{{Game data/saves|Windows|{{P|game}}\\SAVEDATA\\AUTOSAVE}}" Total Lockdown: pageId: 158795 steam: 1121710 @@ -178034,13 +173090,13 @@ Total Miner: pageId: 78320 steam: 347600 templates: - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\TotalMiner\Maps\}}' -'Total Overdose: A Gunslinger''s Tale in Mexico': + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\TotalMiner\\Maps\\}}" +"Total Overdose: A Gunslinger's Tale in Mexico": gog: 1207659179 pageId: 17816 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Eidos\Total Overdose\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Total Overdose\savegames\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Eidos\\Total Overdose\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Total Overdose\\savegames\\}}" Total Party Kill: pageId: 139244 steam: 1091250 @@ -178059,37 +173115,37 @@ Total Ski Jump: Total Tank Simulator: pageId: 75687 steam: 674500 -'Total War Battles: Kingdom': +"Total War Battles: Kingdom": pageId: 48248 steam: 300080 steamSide: - 480720 - 480721 - 480722 -'Total War Battles: Shogun': +"Total War Battles: Shogun": pageId: 137538 steam: 217060 -'Total War Saga: Thrones of Britannia': +"Total War Saga: Thrones of Britannia": pageId: 77387 steam: 712100 -'Total War: Arena': +"Total War: Arena": pageId: 37937 steam: 227520 templates: - - '{{Game data/config|Windows|{{p|appdata}}\The Creative Assembly\Arena\scripts}}' -'Total War: Attila': + - "{{Game data/config|Windows|{{p|appdata}}\\The Creative Assembly\\Arena\\scripts}}" +"Total War: Attila": pageId: 22754 steam: 325610 templates: - - '{{Game data/config|Windows|{{p|appdata}}\The Creative Assembly\Attila\scripts}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.Creative Assembly/Attila/scripts/}}' - - '{{Game data/saves|Windows|{{p|appdata}}\The Creative Assembly\Attila\save_games}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Steam/userdata/{{p|uid}}/325610/remote/}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.Creative Assembly/Attila/save_games}}' -'Total War: Pharaoh': + - "{{Game data/config|Windows|{{p|appdata}}\\The Creative Assembly\\Attila\\scripts}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.Creative Assembly/Attila/scripts/}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\The Creative Assembly\\Attila\\save_games}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Steam/userdata/{{p|uid}}/325610/remote/}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.Creative Assembly/Attila/save_games}}" +"Total War: Pharaoh": pageId: 188355 steam: 1937780 -'Total War: Rome II': +"Total War: Rome II": pageId: 7402 steam: 214950 steamSide: @@ -178113,106 +173169,82 @@ Total Tank Simulator: - 792520 - 850010 templates: - - >- - {{Game data/config|Windows|{{p|appdata}}\The Creative - Assembly\Rome2\scripts\preferences.script.txt|{{p|hkcu}}\Software\The Creative Assembly\Attila\}} - - '{{Game data/saves|Windows|{{p|appdata}}\The Creative Assembly\Rome2\save_games\}}' -'Total War: Rome Remastered': + - "{{Game data/config|Windows|{{p|appdata}}\\The Creative Assembly\\Rome2\\scripts\\preferences.script.txt|{{p|hkcu}}\\Software\\The Creative Assembly\\Attila\\}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\The Creative Assembly\\Rome2\\save_games\\}}" +"Total War: Rome Remastered": pageId: 167447 steam: 885970 templates: - - '{{Game data/config|Windows|{{p|LOCALAPPDATA}}\Feral Interactive\Total War ROME REMASTERED}}' - - '{{Game data/config|Linux|{{p|xdgdatahome}}/feral-interactive/Total War ROME REMASTERED/}}' - - '{{Game data/saves|Windows|{{p|LOCALAPPDATA}}\Feral Interactive\Total War ROME REMASTERED\VFS\Local}}' - - '{{Game data/saves|Linux|{{p|xdgdatahome}}/feral-interactive/Total War ROME REMASTERED/VFS/Local}}' -'Total War: Shogun 2': + - "{{Game data/config|Windows|{{p|LOCALAPPDATA}}\\Feral Interactive\\Total War ROME REMASTERED}}" + - "{{Game data/config|Linux|{{p|xdgdatahome}}/feral-interactive/Total War ROME REMASTERED/}}" + - "{{Game data/saves|Windows|{{p|LOCALAPPDATA}}\\Feral Interactive\\Total War ROME REMASTERED\\VFS\\Local}}" + - "{{Game data/saves|Linux|{{p|xdgdatahome}}/feral-interactive/Total War ROME REMASTERED/VFS/Local}}" +"Total War: Shogun 2": pageId: 53528 steam: 34330 templates: - - '{{Game data/config|Windows|{{p|appdata}}\The Creative Assembly\Shogun2\scripts\*.txt}}' - - >- - {{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Feral Interactive/Total War SHOGUN - 2/AppData/scripts/}} - - '{{Game data/config|Linux|{{p|xdgdatahome}}/feral-interactive/Total War SHOGUN 2/}}' - - '{{Game data/saves|Windows|{{p|appdata}}\The Creative Assembly\Shogun2\}}' - - '{{Game data/saves|Linux|{{p|xdgdatahome}}/feral-interactive/SaveData}}' -'Total War: Shogun 2 - Fall of the Samurai': + - "{{Game data/config|Windows|{{p|appdata}}\\The Creative Assembly\\Shogun2\\scripts\\*.txt}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Feral Interactive/Total War SHOGUN 2/AppData/scripts/}}" + - "{{Game data/config|Linux|{{p|xdgdatahome}}/feral-interactive/Total War SHOGUN 2/}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\The Creative Assembly\\Shogun2\\}}" + - "{{Game data/saves|Linux|{{p|xdgdatahome}}/feral-interactive/SaveData}}" +"Total War: Shogun 2 - Fall of the Samurai": pageId: 97421 steam: 201271 -'Total War: Three Kingdoms': +"Total War: Three Kingdoms": pageId: 80118 steam: 779340 templates: - - '{{Game data/config|Windows|{{p|appdata}}\The Creative Assembly\ThreeKingdoms\scripts\preferences.script.txt}}' - - >- - {{Game data/config|Linux|{{p|linuxhome}}/.local/share/feral-interactive/Three - Kingdoms/VFS/User/AppData/Roaming/The Creative Assembly/ThreeKingdoms/scripts/preferences.script.txt}} - - '{{Game data/saves|Windows|{{p|appdata}}\The Creative Assembly\ThreeKingdoms\save_games\}}' - - >- - {{Game data/saves|Linux|{{p|linuxhome}}/.local/share/feral-interactive/Three Kingdoms/VFS/User/AppData/Roaming/The - Creative Assembly/ThreeKingdoms/save_games/}} -'Total War: Warhammer': + - "{{Game data/config|Windows|{{p|appdata}}\\The Creative Assembly\\ThreeKingdoms\\scripts\\preferences.script.txt}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.local/share/feral-interactive/Three Kingdoms/VFS/User/AppData/Roaming/The Creative Assembly/ThreeKingdoms/scripts/preferences.script.txt}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\The Creative Assembly\\ThreeKingdoms\\save_games\\}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.local/share/feral-interactive/Three Kingdoms/VFS/User/AppData/Roaming/The Creative Assembly/ThreeKingdoms/save_games/}}" +"Total War: Warhammer": pageId: 32896 steam: 364360 templates: - - '{{Game data/config|Steam|{{p|appdata}}\The Creative Assembly\Warhammer\Scripts\}}' - - '{{Game data/config|Epic Games Store|{{p|appdata}}\The Creative Assembly\Warhammer\EOS\Scripts\}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/feral-interactive/Total War Warhammer/preferences}}' - - '{{Game data/saves|Steam|{{p|appdata}}\The Creative Assembly\Warhammer\Save_Games\}}' - - '{{Game data/saves|Epic Games Store|{{p|appdata}}\The Creative Assembly\Warhammer\EOS\Save Games\}}' - - >- - {{Game data/saves|Linux|{{P|xdgdatahome}}/feral-interactive/Total War Warhammer/VFS/User/AppData/Roaming/The - Creative Assembly/Warhammer/save_games/}} -'Total War: Warhammer II': + - "{{Game data/config|Steam|{{p|appdata}}\\The Creative Assembly\\Warhammer\\Scripts\\}}" + - "{{Game data/config|Epic Games Store|{{p|appdata}}\\The Creative Assembly\\Warhammer\\EOS\\Scripts\\}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/feral-interactive/Total War Warhammer/preferences}}" + - "{{Game data/saves|Steam|{{p|appdata}}\\The Creative Assembly\\Warhammer\\Save_Games\\}}" + - "{{Game data/saves|Epic Games Store|{{p|appdata}}\\The Creative Assembly\\Warhammer\\EOS\\Save Games\\}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/feral-interactive/Total War Warhammer/VFS/User/AppData/Roaming/The Creative Assembly/Warhammer/save_games/}}" +"Total War: Warhammer II": pageId: 60343 steam: 594570 steamSide: - 651460 templates: - - '{{Game data/config|Windows|{{p|appdata}}\The Creative Assembly\Warhammer2\scripts\}}' - - >- - {{Game data/config|Linux|{{P|xdgdatahome}}/feral-interactive/Total War WARHAMMER II/SaveData/Steam Saves - ({{p|uid}})/scripts/}} - - >- - {{Game data/saves|Windows|{{p|appdata}}\The Creative Assembly\Warhammer2\save_games\|{{p|appdata}}\The Creative - Assembly\Warhammer2\save_games_multiplayer\}} - - >- - {{Game data/saves|Linux|{{P|xdgdatahome}}/feral-interactive/Total War WARHAMMER II/SaveData/Steam Saves - ({{p|uid}})/local/Warhammer2/save_games/}} -'Total War: Warhammer III': + - "{{Game data/config|Windows|{{p|appdata}}\\The Creative Assembly\\Warhammer2\\scripts\\}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/feral-interactive/Total War WARHAMMER II/SaveData/Steam Saves ({{p|uid}})/scripts/}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\The Creative Assembly\\Warhammer2\\save_games\\|{{p|appdata}}\\The Creative Assembly\\Warhammer2\\save_games_multiplayer\\}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/feral-interactive/Total War WARHAMMER II/SaveData/Steam Saves ({{p|uid}})/local/Warhammer2/save_games/}}" +"Total War: Warhammer III": pageId: 166393 steam: 1142710 steamSide: - - 1670540 - 1374300 + - 1670540 - 1824060 templates: - - '{{Game data/config|Windows|{{p|appdata}}\The Creative Assembly\Warhammer3\scripts\}}' - - '{{Game data/config|Epic Games Store|{{p|appdata}}\The Creative Assembly\Warhammer3\EOS\scripts\}}' - - '{{Game data/config|Microsoft Store|{{p|appdata}}\The Creative Assembly\Warhammer3\GDK\scripts\}}' - - >- - {{Game data/config|Linux|{{p|linuxhome}}/.local/share/feral-interactive/Total War WARHAMMER III/SaveData/Steam - Saves($SteamID)/local/Warhamme3/scripts}} - - >- - {{Game data/saves|Windows|{{p|appdata}}\The Creative Assembly\Warhammer3\save_games\|{{p|appdata}}\The Creative - Assembly\Warhammer3\save_games_multiplayer\}} - - >- - {{Game data/saves|Linux|{{p|linuxhome}}/.local/share/feral-interactive/Total War WARHAMMER III/SaveData/Steam - Saves($SteamID)/local/Warhamme3/save_games}} + - "{{Game data/config|Windows|{{p|appdata}}\\The Creative Assembly\\Warhammer3\\scripts\\}}" + - "{{Game data/config|Epic Games Store|{{p|appdata}}\\The Creative Assembly\\Warhammer3\\EOS\\scripts\\}}" + - "{{Game data/config|Microsoft Store|{{p|appdata}}\\The Creative Assembly\\Warhammer3\\GDK\\scripts\\}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.local/share/feral-interactive/Total War WARHAMMER III/SaveData/Steam Saves($SteamID)/local/Warhamme3/scripts}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\The Creative Assembly\\Warhammer3\\save_games\\|{{p|appdata}}\\The Creative Assembly\\Warhammer3\\save_games_multiplayer\\}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.local/share/feral-interactive/Total War WARHAMMER III/SaveData/Steam Saves($SteamID)/local/Warhamme3/save_games}}" Totally Accurate Battle Simulator: pageId: 39747 steam: 508440 templates: - - '{{Game data/config|Windows|{{P|game}}\TotallyAccurateBattleSimulator_Data\}}' - - >- - {{Game data/saves|Windows|{{P|game}}\TotallyAccurateBattleSimulator_Data\ | - {{p|userprofile}}\AppData\LocalLow\Landfall Games\Totally Accurate Battle Simulator\Saved\TABSSAVE.TABSProgress}} + - "{{Game data/config|Windows|{{P|game}}\\TotallyAccurateBattleSimulator_Data\\}}" + - "{{Game data/saves|Windows|{{P|game}}\\TotallyAccurateBattleSimulator_Data\\ | {{p|userprofile}}\\AppData\\LocalLow\\Landfall Games\\Totally Accurate Battle Simulator\\Saved\\TABSSAVE.TABSProgress}}" Totally Accurate Battlegrounds: pageId: 97029 steam: 823130 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Landfall Games\Totally Accurate Battlegrounds}}' - - '{{Game data/saves|Windows|{{p|hkcu}}\Software\Landfall Games\Totally Accurate Battlegrounds}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Landfall Games\\Totally Accurate Battlegrounds}}" + - "{{Game data/saves|Windows|{{p|hkcu}}\\Software\\Landfall Games\\Totally Accurate Battlegrounds}}" Totally Baseball: pageId: 153681 steam: 1192380 @@ -178226,13 +173258,11 @@ Totally Reliable Delivery Service: pageId: 128639 steam: 1011670 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\We''re Five Games\Totally Reliable Delivery Service}}' - - >- - {{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\We're Five Games\Totally Reliable Delivery - Service\progress.dad}} + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\We're Five Games\\Totally Reliable Delivery Service}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\We're Five Games\\Totally Reliable Delivery Service\\progress.dad}}" Totally Spies! Totally Party: pageId: 122921 -'Totally Spies!: Swamp Monster Blues': +"Totally Spies!: Swamp Monster Blues": pageId: 122940 Totally Unbalanced: pageId: 41974 @@ -178266,23 +173296,23 @@ Touch Type Tale: Touch the Devil VR: pageId: 90054 steam: 812430 -'Touchdown Heroes: New Season': +"Touchdown Heroes: New Season": pageId: 176801 -'Touché: The Adventures of the Fifth Musketeer': +"Touché: The Adventures of the Fifth Musketeer": pageId: 131927 Tough Guy: pageId: 143388 -'Tough Story: Big Hell': +"Tough Story: Big Hell": pageId: 67229 steam: 685800 Tough Survival: pageId: 99830 steam: 851780 -'Tough Trucks: Modified Monsters': +"Tough Trucks: Modified Monsters": pageId: 182833 templates: - - '{{Game data/config|Windows|{{p|game}}/Data/options.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}/Savegame/}}' + - "{{Game data/config|Windows|{{p|game}}/Data/options.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}/Savegame/}}" Touhou Big Big Battle: pageId: 109192 steam: 878380 @@ -178312,17 +173342,17 @@ Touhou Gouyoku Ibun: Touhou Hisoutensoku: pageId: 31031 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/saves|Windows|{{p|game}}\}}' -'Touhou Ibunseki - Ayaria Dawn: ReCreation': + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\}}" +"Touhou Ibunseki - Ayaria Dawn: ReCreation": pageId: 150476 steam: 1138100 Touhou Luna Nights: pageId: 104463 steam: 851100 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\touhou_luna_nights\config.ini}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\touhou_luna_nights\*.sav}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\touhou_luna_nights\\config.ini}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\touhou_luna_nights\\*.sav}}" Touhou Makuka Sai ~ Fantastic Danmaku Festival Part II: pageId: 128369 renamedFrom: @@ -178334,50 +173364,39 @@ Touhou Makukasai ~ Fantasy Danmaku Festival: Touhou Multi Scroll Shooting: pageId: 144281 steam: 1125000 -'Touhou Shoujo: Tale of Beautiful Memories': +"Touhou Shoujo: Tale of Beautiful Memories": pageId: 143861 steam: 1124060 -'Touhou Sky Arena: Matsuri Climax': +"Touhou Sky Arena: Matsuri Climax": pageId: 163084 steam: 1086860 -'Touhou: New World': +"Touhou: New World": pageId: 188663 steam: 2150660 templates: - - >- - {{Game - data/config|Windows|{{p|appdata}}\AnkakeSpa\NewWorld\graphics_setting.json|{{p|appdata}}\AnkakeSpa\NewWorld\ingame_setting.json|{{p|appdata}}\AnkakeSpa\NewWorld\input_setting.json|{{p|appdata}}\AnkakeSpa\NewWorld\main_setting.json}} - - '{{Game data/saves|Windows|{{p|appdata}}\AnkakeSpa\NewWorld\autosaves\##.sav}}' -'Touhou: Scarlet Curiosity': + - "{{Game data/config|Windows|{{p|appdata}}\\AnkakeSpa\\NewWorld\\graphics_setting.json|{{p|appdata}}\\AnkakeSpa\\NewWorld\\ingame_setting.json|{{p|appdata}}\\AnkakeSpa\\NewWorld\\input_setting.json|{{p|appdata}}\\AnkakeSpa\\NewWorld\\main_setting.json}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\AnkakeSpa\\NewWorld\\autosaves\\##.sav}}" +"Touhou: Scarlet Curiosity": pageId: 99812 steam: 845880 templates: - - >- - {{Game - data/config|Windows|{{p|appdata}}\AnkakeSpa\ScarletCuriosity\graphics_setting.json|{{p|appdata}}\AnkakeSpa\ScarletCuriosity\input_setting.json|{{p|appdata}}\AnkakeSpa\ScarletCuriosity\main_setting.json|{{p|appdata}}\AnkakeSpa\ScarletCuriosity\sound.ini}} - - >- - {{Game - data/saves|Windows|{{p|appdata}}\AnkakeSpa\ScarletCuriosity\remi_auto.sav|{{p|appdata}}\AnkakeSpa\ScarletCuriosity\saku_auto.sav|{{p|appdata}}\AnkakeSpa\ScarletCuriosity\remi\save###.save|{{p|appdata}}\AnkakeSpa\ScarletCuriosity\saku\save###.save}} + - "{{Game data/config|Windows|{{p|appdata}}\\AnkakeSpa\\ScarletCuriosity\\graphics_setting.json|{{p|appdata}}\\AnkakeSpa\\ScarletCuriosity\\input_setting.json|{{p|appdata}}\\AnkakeSpa\\ScarletCuriosity\\main_setting.json|{{p|appdata}}\\AnkakeSpa\\ScarletCuriosity\\sound.ini}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\AnkakeSpa\\ScarletCuriosity\\remi_auto.sav|{{p|appdata}}\\AnkakeSpa\\ScarletCuriosity\\saku_auto.sav|{{p|appdata}}\\AnkakeSpa\\ScarletCuriosity\\remi\\save###.save|{{p|appdata}}\\AnkakeSpa\\ScarletCuriosity\\saku\\save###.save}}" Touken Ranbu Warriors: pageId: 175293 steam: 1191260 templates: - - >- - {{Game data/config|Windows|{{P|hkcu}}\Software\dmmgames_KOEITECMO\{{LocalizedPath|Touken Ranbu Warriors}}\Graphic - Setting\*|{{P|userprofile\Documents}}\dmmgames_KOEITECMO\{{LocalizedPath|Touken Ranbu - Warriors}}\Savedata\inputmap*.dat}} - - >- - {{Game data/saves|Windows|{{P|userprofile\Documents}}\dmmgames_KOEITECMO\{{LocalizedPath|Touken Ranbu - Warriors}}\Savedata\SAVEDATA_*.BIN}} + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\dmmgames_KOEITECMO\\{{LocalizedPath|Touken Ranbu Warriors}}\\Graphic Setting\\*|{{P|userprofile\\Documents}}\\dmmgames_KOEITECMO\\{{LocalizedPath|Touken Ranbu Warriors}}\\Savedata\\inputmap*.dat}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\dmmgames_KOEITECMO\\{{LocalizedPath|Touken Ranbu Warriors}}\\Savedata\\SAVEDATA_*.BIN}}" Toukiden 2: pageId: 59075 steam: 551730 -'Toukiden: Kiwami': +"Toukiden: Kiwami": pageId: 25897 steam: 363130 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\KoeiTecmo\Toukiden_Kiwami\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\KoeiTecmo\TOUKIDEN KIWAMI\Savedata\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\KoeiTecmo\\Toukiden_Kiwami\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\KoeiTecmo\\TOUKIDEN KIWAMI\\Savedata\\}}" Touring Karts: pageId: 141999 steam: 1088950 @@ -178387,10 +173406,10 @@ Tourist Bus Simulator: Tourists Kidnapped a Little Bear: pageId: 56735 steam: 580420 -'Tournament: Blood & Steel': +"Tournament: Blood & Steel": pageId: 139027 steam: 1040620 -'Towaga: Among Shadows': +"Towaga: Among Shadows": pageId: 147980 steam: 907600 Towards Gold and Glory: @@ -178402,7 +173421,7 @@ Towards a Perilous Journey: Towards the Pantheon: pageId: 82189 steam: 709510 -'Towards the Pantheon: Escaping Eternity': +"Towards the Pantheon: Escaping Eternity": pageId: 70228 steam: 709450 Tower 57: @@ -178410,7 +173429,7 @@ Tower 57: pageId: 51521 steam: 530950 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Tower57\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Tower57\\}}" Tower Arena: pageId: 135338 steam: 1052050 @@ -178435,7 +173454,7 @@ Tower Climber: Tower Defense Sudden Attack: pageId: 89551 steam: 821910 -'Tower Defense: Defender of the Kingdom': +"Tower Defense: Defender of the Kingdom": pageId: 149734 steam: 1137260 Tower Dwellers: @@ -178451,14 +173470,14 @@ Tower Fortress: pageId: 76622 steam: 593700 templates: - - '{{Game data/saves|Windows|{{p|localappdata}}\TowerFortress\}}' -'Tower Hunter: Erza''s Trial': + - "{{Game data/saves|Windows|{{p|localappdata}}\\TowerFortress\\}}" +"Tower Hunter: Erza's Trial": gog: 1520361304 pageId: 96199 steam: 844850 templates: - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\IceSitruuna\TowerHunter\PlayerPrefs\}}' -'Tower Island: Explore, Discover and Disassemble': + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\IceSitruuna\\TowerHunter\\PlayerPrefs\\}}" +"Tower Island: Explore, Discover and Disassemble": pageId: 42037 steam: 487740 Tower Keepers: @@ -178467,7 +173486,7 @@ Tower Keepers: Tower Miners: pageId: 69478 steam: 690260 -'Tower Of God: One Wish': +"Tower Of God: One Wish": pageId: 155298 steam: 1199010 Tower Of Heresy: @@ -178482,7 +173501,7 @@ Tower Princess: Tower Stacker: pageId: 98828 steam: 885240 -'Tower Tank: TD Reversal': +"Tower Tank: TD Reversal": pageId: 125237 steam: 993490 Tower Unite: @@ -178491,8 +173510,8 @@ Tower Unite: steamSide: - 439660 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Tower\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/config|Steam|{{P|steam}}\userdata\{{P|uid}}\394690\remote\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\Tower\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/config|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\394690\\remote\\}}" Tower VR: pageId: 144258 steam: 1124070 @@ -178500,7 +173519,7 @@ Tower Wars: pageId: 25108 steam: 214360 templates: - - '{{Game data/config|Windows|{{p|game}}\scripts\client\prefs.cs}}' + - "{{Game data/config|Windows|{{p|game}}\\scripts\\client\\prefs.cs}}" Tower and Guardian: pageId: 67191 steam: 683960 @@ -178508,8 +173527,8 @@ Tower and Sword of Succubus: pageId: 164435 steam: 1327080 templates: - - '{{Game data/saves|Windows|{{P|steam}}\steamapps\common\Tower and Sword Succubus}}' -'Tower in the Sky: Tactics Edition': + - "{{Game data/saves|Windows|{{P|steam}}\\steamapps\\common\\Tower and Sword Succubus}}" +"Tower in the Sky: Tactics Edition": pageId: 61632 steam: 546800 Tower of Arcana: @@ -178527,7 +173546,7 @@ Tower of Boin: pageId: 190576 steam: 2350720 templates: - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\NenokuniStudio\Tower Of BOIN\TOB_Save}}' + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\NenokuniStudio\\Tower Of BOIN\\TOB_Save}}" Tower of Eglathia: pageId: 48278 steam: 351220 @@ -178535,7 +173554,7 @@ Tower of Fantasy: pageId: 180748 steam: 2064650 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Hotta\Saved\Config\WindowsNoEditor}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\Hotta\\Saved\\Config\\WindowsNoEditor}}" Tower of Fate: pageId: 122618 steam: 957780 @@ -178544,12 +173563,12 @@ Tower of Guns: pageId: 12544 steam: 266110 templates: - - '{{Game data/config|Windows|{{p|game}}\UDKGame\Config\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/com.terriblePostureGames.TowerOfGuns/}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/TerriblePostureGames/TowerOfGuns/}}' - - '{{Game data/saves|Windows|{{p|game}}\Binaries\win32\Gamestate.bin}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/com.terriblePostureGames.TowerOfGuns/}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/TerriblePostureGames/TowerOfGuns/}}' + - "{{Game data/config|Windows|{{p|game}}\\UDKGame\\Config\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/com.terriblePostureGames.TowerOfGuns/}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/TerriblePostureGames/TowerOfGuns/}}" + - "{{Game data/saves|Windows|{{p|game}}\\Binaries\\win32\\Gamestate.bin}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/com.terriblePostureGames.TowerOfGuns/}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/TerriblePostureGames/TowerOfGuns/}}" Tower of Lust: pageId: 72079 steam: 698490 @@ -178559,21 +173578,21 @@ Tower of Shades: Tower of Souls: pageId: 73758 templates: - - '{{Game data/config|DOS|{{p|game}}\GRAFX\SAVES\OPTIONS.BIN}}' - - '{{Game data/saves|DOS|{{p|game}}\GRAFX\SAVES\GAME*.BIN}}' + - "{{Game data/config|DOS|{{p|game}}\\GRAFX\\SAVES\\OPTIONS.BIN}}" + - "{{Game data/saves|DOS|{{p|game}}\\GRAFX\\SAVES\\GAME*.BIN}}" Tower of Time: gog: 1411626324 pageId: 63193 steam: 617480 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Event horizon\Tower of Time\}}' - - '{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/Event horizon/Tower of Time/}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Event horizon\Tower of Time\}}' - - '{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/Event horizon/Tower of Time/}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Event horizon\\Tower of Time\\}}" + - "{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/Event horizon/Tower of Time/}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Event horizon\\Tower of Time\\}}" + - "{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/Event horizon/Tower of Time/}}" Tower of the Alchemist: pageId: 144266 steam: 1124810 -'Tower!2011:SE': +"Tower!2011:SE": pageId: 61486 steam: 620570 Tower!3D: @@ -178590,10 +173609,10 @@ TowerFall Ascension: pageId: 15683 steam: 251470 templates: - - '{{Game data/saves|Windows|{{P|game}}\tf_saveData}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/TowerFall/tf_saveData}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/TowerFall/tf_saveData}}' - - '{{Game data/saves|Steam|{{P|game}}/tf_saveData}}' + - "{{Game data/saves|Windows|{{P|game}}\\tf_saveData}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/TowerFall/tf_saveData}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/TowerFall/tf_saveData}}" + - "{{Game data/saves|Steam|{{P|game}}/tf_saveData}}" TowerHex: pageId: 126256 steam: 988250 @@ -178640,7 +173659,7 @@ Townscaper: pageId: 169661 steam: 1291340 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Oskar Stalberg\Townscaper\Saves\*.scape}}' + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Oskar Stalberg\\Townscaper\\Saves\\*.scape}}" Townsmen: pageId: 52281 steam: 486540 @@ -178649,7 +173668,7 @@ Townsmen - A Kingdom Rebuilt: pageId: 129833 steam: 938380 templates: - - '{{Game data/saves|Windows|{{p|localappdata}}\HandyGames\com.hg.townsmen.rebuilt\savegames\*}}' + - "{{Game data/saves|Windows|{{p|localappdata}}\\HandyGames\\com.hg.townsmen.rebuilt\\savegames\\*}}" Townsmen VR: pageId: 82288 steam: 749960 @@ -178675,7 +173694,7 @@ Toxikk: pageId: 22121 steam: 324810 templates: - - '{{Game data/config|Windows|{{P|game}}\UDKGame\Config}}' + - "{{Game data/config|Windows|{{P|game}}\\UDKGame\\Config}}" Toy Clash: pageId: 68810 steam: 620360 @@ -178688,7 +173707,7 @@ Toy Goblins: Toy Gun Office Simulator: pageId: 107968 steam: 913770 -'Toy Odyssey: The Lost and Found': +"Toy Odyssey: The Lost and Found": pageId: 40086 steam: 392410 Toy Plane Heroes: @@ -178706,52 +173725,52 @@ Toy Seeker: Toy Soldiers: pageId: 2654 steam: 98300 -'Toy Soldiers Cold War: Touch Edition': +"Toy Soldiers Cold War: Touch Edition": pageId: 145595 -'Toy Soldiers: Complete': +"Toy Soldiers: Complete": pageId: 17189 steam: 262120 -'Toy Soldiers: HD': +"Toy Soldiers: HD": pageId: 170264 steam: 1446160 -'Toy Soldiers: War Chest': +"Toy Soldiers: War Chest": pageId: 46903 steam: 276770 Toy Story: pageId: 134325 templates: - - '{{Game data/config|Windows|{{p|game}}\TOYSTORY.CFG}}' - - '{{Game data/saves|Windows|{{p|game}}\TOYSTORY.CFG}}' -'Toy Story 2: Buzz Lightyear to the Rescue': + - "{{Game data/config|Windows|{{p|game}}\\TOYSTORY.CFG}}" + - "{{Game data/saves|Windows|{{p|game}}\\TOYSTORY.CFG}}" +"Toy Story 2: Buzz Lightyear to the Rescue": pageId: 8328 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/saves|Windows|{{p|game}}\ToyXXX.sav}}' -'Toy Story 3: The Video Game': + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\ToyXXX.sav}}" +"Toy Story 3: The Video Game": pageId: 32410 steam: 300820 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Disney Interactive Studios\Toy Story 3\savedata\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Disney Interactive Studios\Toy Story 3\savedata\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Disney Interactive Studios\\Toy Story 3\\savedata\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Disney Interactive Studios\\Toy Story 3\\savedata\\}}" Toy Story Drop!: pageId: 146944 Toy Story Mania!: pageId: 49548 steam: 317580 templates: - - '{{Game data/saves|Windows|{{P|game}}\SaveGames\}}' -'Toy Story: Smash It!': + - "{{Game data/saves|Windows|{{P|game}}\\SaveGames\\}}" +"Toy Story: Smash It!": pageId: 174491 Toy Tinker Simulator: pageId: 182945 steam: 1510580 templates: - - '{{Game data/config|Steam|{{p|localappdata}}\ToyTinkerSimulator\Saved\Config\WindowsNoEditor}}' - - '{{Game data/saves|Steam|{{p|localappdata}}\ToyTinkerSimulator\Saved\SaveGames}}' + - "{{Game data/config|Steam|{{p|localappdata}}\\ToyTinkerSimulator\\Saved\\Config\\WindowsNoEditor}}" + - "{{Game data/saves|Steam|{{p|localappdata}}\\ToyTinkerSimulator\\Saved\\SaveGames}}" Toy Wars Invasion: pageId: 47721 steam: 346490 -'Toy-War: The Beginning': +"Toy-War: The Beginning": pageId: 121113 steam: 933000 ToyShot VR: @@ -178766,8 +173785,8 @@ Toybox Turbos: steamSide: - 323770 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\Saved Games\Codemasters\ToyboxTurbos\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\Saved Games\Codemasters\ToyboxTurbos\{{P|uid}}\SaveGame.dat}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\Saved Games\\Codemasters\\ToyboxTurbos\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Saved Games\\Codemasters\\ToyboxTurbos\\{{P|uid}}\\SaveGame.dat}}" Toymaker: pageId: 59617 steam: 607780 @@ -178792,64 +173811,57 @@ Trace of the past: TrackMania (2003): pageId: 18292 templates: - - '{{Game data/config|Windows|{{p|game}}Default.SystemConfig.Gbx}}' - - '{{Game data/saves|Windows|{{p|game}}\GameData\Profiles|{{p|game}}\GameData\Tracks|{{p|game}}\GameData\Scores}}' -'TrackMania 2: Canyon': + - "{{Game data/config|Windows|{{p|game}}Default.SystemConfig.Gbx}}" + - "{{Game data/saves|Windows|{{p|game}}\\GameData\\Profiles|{{p|game}}\\GameData\\Tracks|{{p|game}}\\GameData\\Scores}}" +"TrackMania 2: Canyon": pageId: 21881 steam: 228760 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\ManiaPlanet\Config}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\ManiaPlanet\}}' -'TrackMania 2: Stadium': + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\ManiaPlanet\\Config}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\ManiaPlanet\\}}" +"TrackMania 2: Stadium": pageId: 14941 steam: 232910 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\ManiaPlanet\Config}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\ManiaPlanet\}}' -'TrackMania 2: Valley': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\ManiaPlanet\\Config}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\ManiaPlanet\\}}" +"TrackMania 2: Valley": pageId: 18294 steam: 243360 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\ManiaPlanet\Config\Default.SystemConfig.Gbx}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\ManiaPlanet\\Config\\Default.SystemConfig.Gbx}}" TrackMania Nations: pageId: 55964 templates: - - '{{Game data/config|Windows|{{p|game}}\Default.SystemConfig.Gbx}}' - - '{{Game data/saves|Windows|{{p|game}}\GameData\Profiles|{{p|game}}\GameData\Tracks|{{p|game}}\GameData\Scores}}' + - "{{Game data/config|Windows|{{p|game}}\\Default.SystemConfig.Gbx}}" + - "{{Game data/saves|Windows|{{p|game}}\\GameData\\Profiles|{{p|game}}\\GameData\\Tracks|{{p|game}}\\GameData\\Scores}}" TrackMania Nations Forever: pageId: 37794 steam: 11020 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\TrackMania\Config\}}' - - >- - {{Game - data/saves|Windows|{{P|userprofile\Documents}}\TrackMania\Profiles\|{{P|userprofile\Documents}}\TrackMania\Scores\|{{P|userprofile\Documents}}\TrackMania\Tracks\}} + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\TrackMania\\Config\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\TrackMania\\Profiles\\|{{P|userprofile\\Documents}}\\TrackMania\\Scores\\|{{P|userprofile\\Documents}}\\TrackMania\\Tracks\\}}" TrackMania Sunrise: pageId: 32879 templates: - - '{{Game data/config|Windows|{{p|game}}\Default.SystemConfig.Gbx}}' - - '{{Game data/saves|Windows|{{p|game}}\GameData\Profiles|{{p|game}}\GameData\Tracks|{{p|game}}\GameData\Scores}}' + - "{{Game data/config|Windows|{{p|game}}\\Default.SystemConfig.Gbx}}" + - "{{Game data/saves|Windows|{{p|game}}\\GameData\\Profiles|{{p|game}}\\GameData\\Tracks|{{p|game}}\\GameData\\Scores}}" TrackMania United: pageId: 56032 templates: - - '{{Game data/config|Windows|{{p|game}}\Default.SystemConfig.Gbx}}' - - >- - {{Game data/saves|Windows|{{P|userprofile\Documents}}\TrackMania - United\Profiles\|{{P|userprofile\Documents}}\TrackMania United\Scores\|{{P|userprofile\Documents}}\TrackMania - United\Tracks\}} + - "{{Game data/config|Windows|{{p|game}}\\Default.SystemConfig.Gbx}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\TrackMania United\\Profiles\\|{{P|userprofile\\Documents}}\\TrackMania United\\Scores\\|{{P|userprofile\\Documents}}\\TrackMania United\\Tracks\\}}" TrackMania United Forever: pageId: 29944 steam: 7200 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\TrackMania\Config\}}' - - >- - {{Game - data/saves|Windows|{{P|userprofile\Documents}}\TrackMania\Profiles\|{{P|userprofile\Documents}}\TrackMania\Scores\|{{P|userprofile\Documents}}\TrackMania\Tracks\}} + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\TrackMania\\Config\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\TrackMania\\Profiles\\|{{P|userprofile\\Documents}}\\TrackMania\\Scores\\|{{P|userprofile\\Documents}}\\TrackMania\\Tracks\\}}" TrackRacing Online: pageId: 186110 templates: - - '{{Game data/config|Windows|{{p|HKCU}}\Software\SoulKey\TrackRacing Online}}' - - '{{Game data/saves|Windows|{{p|USERPROFILE}}\AppData\LocalLow\SoulKey\TrackRacing Online\}}' + - "{{Game data/config|Windows|{{p|HKCU}}\\Software\\SoulKey\\TrackRacing Online}}" + - "{{Game data/saves|Windows|{{p|USERPROFILE}}\\AppData\\LocalLow\\SoulKey\\TrackRacing Online\\}}" Trackday Manager: pageId: 43853 steam: 348030 @@ -178860,42 +173872,42 @@ Trackmania (2020): pageId: 159412 steam: 2225070 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\Trackmania\Config}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\Trackmania\}}' -'Trackmania 2: Lagoon': + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\Trackmania\\Config}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\Trackmania\\}}" +"Trackmania 2: Lagoon": pageId: 62710 steam: 600720 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\ManiaPlanet\Config}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\ManiaPlanet\}}' + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\ManiaPlanet\\Config}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\ManiaPlanet\\}}" Trackmania Turbo: pageId: 30677 steam: 375900 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\TrackmaniaTurbo\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\TrackmaniaTurbo\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\TrackmaniaTurbo\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\TrackmaniaTurbo\\}}" Tracks - The Train Set Game: pageId: 64333 steam: 657240 templates: - - '{{Game data/config|Windows|{{p|game}}\TrainSet\Saved\Config\WindowsNoEditor}}' - - '{{Game data/saves|Windows|{{p|game}}\TrainSet\Saved\SaveGames}}' + - "{{Game data/config|Windows|{{p|game}}\\TrainSet\\Saved\\Config\\WindowsNoEditor}}" + - "{{Game data/saves|Windows|{{p|game}}\\TrainSet\\Saved\\SaveGames}}" Tracks and Turrets: pageId: 45920 steam: 404370 -'Tracks of Triumph: Good Old Times': +"Tracks of Triumph: Good Old Times": pageId: 56894 steam: 576080 -'Tracks of Triumph: Industrial Zone': +"Tracks of Triumph: Industrial Zone": pageId: 33551 steam: 492240 -'Tracks of Triumph: Summertime': +"Tracks of Triumph: Summertime": pageId: 40076 steam: 528210 -'Tracon!2012:SE': +"Tracon!2012:SE": pageId: 82627 steam: 646350 -'Tractage aux Portes 2: Mob à la Cafétéria': +"Tractage aux Portes 2: Mob à la Cafétéria": pageId: 140767 steam: 1110780 Tractor Cargo Driving Simulator: @@ -178947,8 +173959,8 @@ Trail Out: - TRAIL OUT steam: 1664220 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\TrailOut\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\TrailOut\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\TrailOut\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\TrailOut\\Saved\\SaveGames\\}}" Trail of Destruction: pageId: 62411 steam: 633430 @@ -178957,13 +173969,13 @@ Trailblazers: pageId: 93027 steam: 621970 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\SOFTWARE\Rising Star Games\Trailblazers}}' -'Trailer Park Boys: Greasy Money': + - "{{Game data/config|Windows|{{P|hkcu}}\\SOFTWARE\\Rising Star Games\\Trailblazers}}" +"Trailer Park Boys: Greasy Money": pageId: 80685 steam: 735850 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\East Side Games\Trailer Park Boys Steam\}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\East Side Games\Trailer Park Boys Steam\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\East Side Games\\Trailer Park Boys Steam\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\East Side Games\\Trailer Park Boys Steam\\}}" Trailer Park Tycoon: pageId: 91391 Trailer park mechanic: @@ -178976,11 +173988,9 @@ Trailmakers: pageId: 60802 steam: 585420 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\Flashbulb\Trailmakers\PlayerPrefs\Preferences}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\TrailMakers\}}' - - >- - {{Game data/saves|Microsoft - Store|{{P|LOCALAPPDATA}}\Packages\Flashbulb.Trailmakers_8a41h19xsg1bm\SystemAppData\wgs}} + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Flashbulb\\Trailmakers\\PlayerPrefs\\Preferences}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\TrailMakers\\}}" + - "{{Game data/saves|Microsoft Store|{{P|LOCALAPPDATA}}\\Packages\\Flashbulb.Trailmakers_8a41h19xsg1bm\\SystemAppData\\wgs}}" Trails of the Black Sun: pageId: 150537 steam: 1152940 @@ -178998,8 +174008,8 @@ Train Fever: pageId: 19750 steam: 304730 templates: - - '{{Game data/config|Steam|{{p|Steam}}/userdata/{{p|uid}}/304730/local/settings.lua}}' - - '{{Game data/saves|Steam|{{p|Steam}}/userdata/{{p|uid}}/304730/local/save}}' + - "{{Game data/config|Steam|{{p|Steam}}/userdata/{{p|uid}}/304730/local/settings.lua}}" + - "{{Game data/saves|Steam|{{p|Steam}}/userdata/{{p|uid}}/304730/local/save}}" Train Frontier Classic: pageId: 72662 steam: 713460 @@ -179009,11 +174019,11 @@ Train Harder: Train Journey: pageId: 73223 steam: 726210 -'Train Life: A Railway Simulator': +"Train Life: A Railway Simulator": pageId: 171132 steam: 1330660 templates: - - '{{Game data/saves|Windows|{{p|localappdata}}\TrainLife\Saved\SaveGames\}}' + - "{{Game data/saves|Windows|{{p|localappdata}}\\TrainLife\\Saved\\SaveGames\\}}" Train Manager: pageId: 127275 steam: 1010590 @@ -179027,22 +174037,20 @@ Train Sim World: pageId: 58455 steam: 530070 templates: - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\TS2Prototype\Saved}}' + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\TS2Prototype\\Saved}}" Train Sim World 2: pageId: 170231 steam: 1282590 templates: - - >- - {{Game data/config|Epic Games Launcher|{{P|userprofile\Documents}}\My - Games\TrainSimWorld2EGS\Saved\Config\WindowsNoEditor\}} - - '{{Game data/config|Steam|{{P|userprofile\Documents}}\My Games\TrainSimWorld2\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Epic Games Launcher|{{P|userprofile\Documents}}\My Games\TrainSimWorld2EGS\Saved\SaveGames\}}' + - "{{Game data/config|Epic Games Launcher|{{P|userprofile\\Documents}}\\My Games\\TrainSimWorld2EGS\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/config|Steam|{{P|userprofile\\Documents}}\\My Games\\TrainSimWorld2\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Epic Games Launcher|{{P|userprofile\\Documents}}\\My Games\\TrainSimWorld2EGS\\Saved\\SaveGames\\}}" Train Sim World 3: pageId: 181348 steam: 1944790 templates: - - '{{Game data/config|Steam|{{p|userprofile\Documents}}\My Games\TrainSimWorld3\Saved\Config}}' - - '{{Game data/saves|Steam|{{p|userprofile\Documents}}\My Games\TrainSimWorld3\Saved\SaveGames}}' + - "{{Game data/config|Steam|{{p|userprofile\\Documents}}\\My Games\\TrainSimWorld3\\Saved\\Config}}" + - "{{Game data/saves|Steam|{{p|userprofile\\Documents}}\\My Games\\TrainSimWorld3\\Saved\\SaveGames}}" Train Sim World 4: pageId: 190014 steam: 2362300 @@ -179865,14 +174873,14 @@ Train Simulator: - 980540 - 980543 templates: - - '{{Game data/config|Windows|{{p|game}}\Content\PlayerProfiles.bin}}' + - "{{Game data/config|Windows|{{p|game}}\\Content\\PlayerProfiles.bin}}" Train Simulator Railroad Operator: pageId: 87987 steam: 754410 Train Simulator VR: pageId: 73901 steam: 719600 -'Train Simulator: London Subway': +"Train Simulator: London Subway": pageId: 98712 steam: 881730 Train Station Renovation: @@ -179883,8 +174891,8 @@ Train Station Renovation: - 1286450 - 1610540 templates: - - '{{Game data/config|Windows|{{p|userprofile\appdata\locallow}}\Live Motion Games\TrainStationRenovation}}' - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\Live Motion Games\TrainStationRenovation\Save}}' + - "{{Game data/config|Windows|{{p|userprofile\\appdata\\locallow}}\\Live Motion Games\\TrainStationRenovation}}" + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\Live Motion Games\\TrainStationRenovation\\Save}}" Train Station Simulator: pageId: 76331 steam: 738610 @@ -179894,29 +174902,29 @@ Train Town: Train Valley: gog: 1232053269 gogSide: - - 1884846567 - 1127587102 + - 1884846567 pageId: 34825 steam: 353640 steamSide: - 459120 - 492480 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Oroboro games\Train Valley\}}' - - '{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/Oroboro games/Train Valley}}' - - '{{Game data/saves|Windows|{{p|hkcu}}\Software\Oroboro games\Train Valley\}}' - - '{{Game data/saves|Steam|{{P|steam}}\userdata\{{P|uid}}\353640\remote\train-valley-storage.txt}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Oroboro games\\Train Valley\\}}" + - "{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/Oroboro games/Train Valley}}" + - "{{Game data/saves|Windows|{{p|hkcu}}\\Software\\Oroboro games\\Train Valley\\}}" + - "{{Game data/saves|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\353640\\remote\\train-valley-storage.txt}}" Train Valley 2: gog: 1705092808 gogSide: - - 1748366068 - 1139053242 - - 1285705971 - 1220765826 - 1246709478 + - 1285705971 - 1677578821 - - 2004634290 + - 1748366068 - 1920011177 + - 2004634290 pageId: 61574 steam: 602320 steamSide: @@ -179927,9 +174935,9 @@ Train Valley 2: - 2098232 - 2330180 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Oroboro games\TrainValley2\}}' - - '{{Game data/saves|Windows|{{p|hkcu}}\Software\Oroboro games\TrainValley2\}}' - - '{{Game data/saves|Steam|{{P|steam}}\userdata\{{P|uid}}\602320\remote\train-valley-2-data.txt}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Oroboro games\\TrainValley2\\}}" + - "{{Game data/saves|Windows|{{p|hkcu}}\\Software\\Oroboro games\\TrainValley2\\}}" + - "{{Game data/saves|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\602320\\remote\\train-valley-2-data.txt}}" Train of Afterlife: pageId: 48965 steam: 342360 @@ -179974,19 +174982,19 @@ Trainz Settle and Carlisle: Trainz Simulator 12: pageId: 40964 steam: 24670 -'Trainz Simulator 2010: Engineers Edition': +"Trainz Simulator 2010: Engineers Edition": pageId: 180899 steam: 24630 Trainz Trouble: pageId: 49713 steam: 319300 -'Trainz: A New Era': +"Trainz: A New Era": pageId: 47897 steam: 315660 -'Trainz: Classic Cabon City': +"Trainz: Classic Cabon City": pageId: 41096 steam: 24640 -'Trainz: Murchison 2': +"Trainz: Murchison 2": pageId: 61182 steam: 24660 Traiteur: @@ -179995,7 +175003,7 @@ Traiteur: Trajectory: pageId: 57833 steam: 592620 -'Trajes Fatais: Suits of Fate': +"Trajes Fatais: Suits of Fate": pageId: 151533 steam: 953310 Trakker: @@ -180010,34 +175018,34 @@ Tranject: Tranquil Garden: pageId: 144355 steam: 891520 -'Tranquility Base Mining Colony: The Moon - Explorer Version': +"Tranquility Base Mining Colony: The Moon - Explorer Version": pageId: 104991 steam: 873740 Trans-Siberian Railway Simulator: pageId: 128565 steam: 998400 -'TransOcean 2: Rivals': +"TransOcean 2: Rivals": pageId: 43107 steam: 350110 -'TransOcean: The Shipping Company': +"TransOcean: The Shipping Company": pageId: 31834 steam: 289930 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\SOFTWARE\Deck 13 Hamburg\TransOcean - The Shipping Company\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\TransOcean\Savegames\*.sav}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\Deck 13 Hamburg\\TransOcean - The Shipping Company\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\TransOcean\\Savegames\\*.sav}}" TransPlan: pageId: 37385 steam: 374410 -'TransRoad: USA': +"TransRoad: USA": pageId: 69056 steam: 494670 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Deck 13 Hamburg\TransRoadUSA\TransRoad\Savegames}}' + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Deck 13 Hamburg\\TransRoadUSA\\TransRoad\\Savegames}}" Transarctica: pageId: 30733 templates: - - '{{Game data/config|DOS|{{p|game}}\START.STP}}' - - '{{Game data/saves|DOS|{{p|game}}\*.SAV}}' + - "{{Game data/config|DOS|{{p|game}}\\START.STP}}" + - "{{Game data/saves|DOS|{{p|game}}\\*.SAV}}" Transcend: pageId: 77614 steam: 760860 @@ -180045,8 +175053,8 @@ Transcendence: pageId: 47144 steam: 364510 templates: - - '{{Game data/config|Windows|{{p|game}}\Settings.xml}}' - - '{{Game data/saves|Windows|{{p|game}}\Games}}' + - "{{Game data/config|Windows|{{p|game}}\\Settings.xml}}" + - "{{Game data/saves|Windows|{{p|game}}\\Games}}" Transcender Starship: pageId: 136773 steam: 1075570 @@ -180059,7 +175067,7 @@ Transference: Transformation Tycoon: pageId: 178948 steam: 1799850 -'Transformers: Battlegrounds': +"Transformers: Battlegrounds": pageId: 160997 steam: 1177000 steamSide: @@ -180069,55 +175077,45 @@ Transformation Tycoon: - 1315560 - 1315580 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Outright Games Ltd\Transformers Battlegrounds}}' -'Transformers: Devastation': + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Outright Games Ltd\\Transformers Battlegrounds}}" +"Transformers: Devastation": pageId: 28955 steam: 338930 templates: - - >- - {{Game data/config|Windows|{{p|hklm}}\SOFTWARE\{{p|wow64}}\Activision\TRANSFORMERS - - Devastation|{{p|userprofile\Documents}}\TRANSFORMERS_Devastation\SystemData.dat}} - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\TRANSFORMERS_Devastation\GameData.dat}}' -'Transformers: EarthSpark - Expedition': + - "{{Game data/config|Windows|{{p|hklm}}\\SOFTWARE\\{{p|wow64}}\\Activision\\TRANSFORMERS - Devastation|{{p|userprofile\\Documents}}\\TRANSFORMERS_Devastation\\SystemData.dat}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\TRANSFORMERS_Devastation\\GameData.dat}}" +"Transformers: EarthSpark - Expedition": pageId: 191298 -'Transformers: Fall of Cybertron': +"Transformers: Fall of Cybertron": pageId: 4444 steam: 213120 templates: - - >- - {{Game - data/config|Windows|{{p|game}}\TransGame\Config\PC\Cooked|{{p|game}}\TransGame\Localization\PC\Cooked|{{p|hkcu}}\SOFTWARE\Activision\Transformers - Fall of Cybertron}} - - '{{Game data/saves|Windows|{{p|game}}\TransGame\SaveData}}' -'Transformers: Revenge of the Fallen': + - "{{Game data/config|Windows|{{p|game}}\\TransGame\\Config\\PC\\Cooked|{{p|game}}\\TransGame\\Localization\\PC\\Cooked|{{p|hkcu}}\\SOFTWARE\\Activision\\Transformers Fall of Cybertron}}" + - "{{Game data/saves|Windows|{{p|game}}\\TransGame\\SaveData}}" +"Transformers: Revenge of the Fallen": pageId: 64163 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\SOFTWARE\Activision\Transformers2\Settings}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Activision\Transfomers2\Saved Games\}}' -'Transformers: Rise of the Dark Spark': + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\Activision\\Transformers2\\Settings}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Activision\\Transfomers2\\Saved Games\\}}" +"Transformers: Rise of the Dark Spark": pageId: 18035 steam: 245760 templates: - - >- - {{Game - data/config|Windows|{{p|game}}\TransGame\Config\PC\Cooked|{{p|game}}\TransGame\Localization\PC\Cooked|{{p|hkcu}}\SOFTWARE\Activision\Transformers - - Rise of the Dark Spark}} - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\TransformersRotDS\TransGame\SaveData\}}' -'Transformers: Tactical Arena': + - "{{Game data/config|Windows|{{p|game}}\\TransGame\\Config\\PC\\Cooked|{{p|game}}\\TransGame\\Localization\\PC\\Cooked|{{p|hkcu}}\\SOFTWARE\\Activision\\Transformers - Rise of the Dark Spark}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\TransformersRotDS\\TransGame\\SaveData\\}}" +"Transformers: Tactical Arena": pageId: 172074 -'Transformers: The Game': +"Transformers: The Game": pageId: 76686 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Activision\Transformers\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Activision\Transformers\}}' -'Transformers: War for Cybertron': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Activision\\Transformers\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Activision\\Transformers\\}}" +"Transformers: War for Cybertron": pageId: 20 steam: 42650 templates: - - >- - {{Game - data/config|Windows|{{p|game}}\TransGame\Config\PC\Cooked|{{p|game}}\TransGame\Localization\PC\Cooked|{{p|hkcu}}\SOFTWARE\Activision\TransformersWFC}} - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Transformers\TransGame\SaveData}}' + - "{{Game data/config|Windows|{{p|game}}\\TransGame\\Config\\PC\\Cooked|{{p|game}}\\TransGame\\Localization\\PC\\Cooked|{{p|hkcu}}\\SOFTWARE\\Activision\\TransformersWFC}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Transformers\\TransGame\\SaveData}}" Transformice: pageId: 48843 steam: 335240 @@ -180132,41 +175130,39 @@ Transient: pageId: 139616 steam: 962630 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Transient\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\Transient\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\Transient\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Transient\\Saved\\SaveGames\\}}" Transiruby: pageId: 188525 steam: 1522930 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\appdata\locallow}}\Flyhigh - Works\Transiruby\config*|{{p|userprofile\appdata\locallow}}\Flyhigh Works\Transiruby\general*}} - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\Flyhigh Works\Transiruby\play*}}' + - "{{Game data/config|Windows|{{p|userprofile\\appdata\\locallow}}\\Flyhigh Works\\Transiruby\\config*|{{p|userprofile\\appdata\\locallow}}\\Flyhigh Works\\Transiruby\\general*}}" + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\Flyhigh Works\\Transiruby\\play*}}" Transistor: gog: 1429612159 pageId: 16542 steam: 237930 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Saved Games\Transistor\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Transistor/}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/Transistor/}}' - - '{{Game data/config|Steam|{{p|steam}}/userdata/{{P|uid}}/237930/}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Saved Games\Transistor\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Transistor/}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/Transistor/}}' - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{P|uid}}/237930/}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Saved Games\\Transistor\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Transistor/}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/Transistor/}}" + - "{{Game data/config|Steam|{{p|steam}}/userdata/{{P|uid}}/237930/}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Saved Games\\Transistor\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Transistor/}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/Transistor/}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{P|uid}}/237930/}}" Transition to Adulthood: pageId: 79267 steam: 776060 Transmission: pageId: 108660 steam: 509950 -'Transmissions: Element 120': +"Transmissions: Element 120": pageId: 33709 steam: 365300 templates: - - '{{Game data/config|Windows|{{p|game}}\te120\cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\te120\save}}' + - "{{Game data/config|Windows|{{p|game}}\\te120\\cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\te120\\save}}" Transmogrify: pageId: 95981 steam: 740310 @@ -180180,34 +175176,30 @@ Transport Defender: pageId: 70573 steam: 685310 templates: - - '{{Game data/saves|Windows|{{p|appdata}}\LocalLow\CoconutShavers\TransportDefender}}' + - "{{Game data/saves|Windows|{{p|appdata}}\\LocalLow\\CoconutShavers\\TransportDefender}}" Transport Fever: gog: 1720767912 pageId: 39021 steam: 446800 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Transport Fever\settings.lua}}' - - '{{Game data/config|Linux|{{P|linuxhome}}/.local/share/Transport Fever/settings.lua}}' - - '{{Game data/config|Steam|{{p|steam}}/userdata/{{p|uid}}/446800/local/settings.lua}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Transport Fever\save\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Steam/userdata/{{p|uid}}/446800/local/save}}' - - '{{Game data/saves|Linux|{{P|linuxhome}}/.local/share/Transport Fever/save/}}' - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/446800/local/save/}}' + - "{{Game data/config|Windows|{{p|appdata}}\\Transport Fever\\settings.lua}}" + - "{{Game data/config|Linux|{{P|linuxhome}}/.local/share/Transport Fever/settings.lua}}" + - "{{Game data/config|Steam|{{p|steam}}/userdata/{{p|uid}}/446800/local/settings.lua}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Transport Fever\\save\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Steam/userdata/{{p|uid}}/446800/local/save}}" + - "{{Game data/saves|Linux|{{P|linuxhome}}/.local/share/Transport Fever/save/}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/446800/local/save/}}" Transport Fever 2: gog: 1611784904 pageId: 135863 steam: 1066780 templates: - - '{{Game data/config|Windows|{{P|appdata}}\Transport Fever 2\settings.lua}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.local/share/Transport Fever 2/settings.lua}}' - - '{{Game data/config|Steam|{{p|steam}}/userdata/{{p|uid}}/1066780/local/settings.lua}}' - - '{{Game data/saves|Windows|{{P|appdata}}\Transport Fever 2\save\|{{P|appdata}}\Transport Fever 2\profile.lua}}' - - >- - {{Game data/saves|Linux|{{p|linuxhome}}/.local/share/Transport Fever 2/save/|~/.local/share/Transport Fever - 2/profile.lua}} - - >- - {{Game - data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/1066780/local/save/|{{p|steam}}/userdata/{{p|uid}}/1066780/local/profile.lua}} + - "{{Game data/config|Windows|{{P|appdata}}\\Transport Fever 2\\settings.lua}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.local/share/Transport Fever 2/settings.lua}}" + - "{{Game data/config|Steam|{{p|steam}}/userdata/{{p|uid}}/1066780/local/settings.lua}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\Transport Fever 2\\save\\|{{P|appdata}}\\Transport Fever 2\\profile.lua}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.local/share/Transport Fever 2/save/|~/.local/share/Transport Fever 2/profile.lua}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/1066780/local/save/|{{p|steam}}/userdata/{{p|uid}}/1066780/local/profile.lua}}" Transport Giant: gog: 2005873727 pageId: 49683 @@ -180232,12 +175224,12 @@ Transpose: pageId: 113316 steam: 835950 templates: - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Secret Location\Transpose\saves\*.json}}' + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Secret Location\\Transpose\\saves\\*.json}}" Transylvania: pageId: 172159 -'Transylvania III: Vanquish the Night': +"Transylvania III: Vanquish the Night": pageId: 172502 -'Trantor: The Last Stormtrooper': +"Trantor: The Last Stormtrooper": gog: 1199632771 pageId: 155532 steam: 1211700 @@ -180283,7 +175275,7 @@ Trapped: Trapped Dead: pageId: 40954 steam: 46540 -'Trapped Dead: Lockdown': +"Trapped Dead: Lockdown": pageId: 48419 steam: 305500 Trapped Summoner: @@ -180304,19 +175296,19 @@ Trapped on Monster Island: Trapper: pageId: 136787 steam: 873530 -'Trapper Knight, Sharpshooter Princess': +"Trapper Knight, Sharpshooter Princess": pageId: 60744 steam: 589060 Trapper Simulator: pageId: 151607 steam: 1149770 -Trapper's Delight: +"Trapper's Delight": pageId: 42265 steam: 467760 Traps Ahead!: pageId: 150307 steam: 1169630 -Traps N' Gemstones: +"Traps N' Gemstones": pageId: 48212 steam: 355140 Trash: @@ -180325,7 +175317,7 @@ Trash Bomber: pageId: 180144 steam: 2067760 templates: - - '{{Game data/saves|Windows|{{p|appdata}}\LocalLow\Khud0\Trash Bomber\}}' + - "{{Game data/saves|Windows|{{p|appdata}}\\LocalLow\\Khud0\\Trash Bomber\\}}" Trash Rage: pageId: 134662 steam: 963180 @@ -180364,30 +175356,30 @@ Trauma: pageId: 2346 steam: 98100 templates: - - '{{Game data/config|Windows|{{p|game}}\trauma_system.xml}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Macromedia\Flash Player\#SharedObjects\{{p|uid}}\localhost\trauma.sol}}' + - "{{Game data/config|Windows|{{p|game}}\\trauma_system.xml}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Macromedia\\Flash Player\\#SharedObjects\\{{p|uid}}\\localhost\\trauma.sol}}" Trauma Simulator: pageId: 148561 steam: 1169340 -'Travel Mosaics 10: Spooky Halloween': +"Travel Mosaics 10: Spooky Halloween": pageId: 149949 steam: 1174320 -'Travel Mosaics 6: Christmas Around the World': +"Travel Mosaics 6: Christmas Around the World": pageId: 123525 steam: 754830 -'Travel Riddles: Mahjong': +"Travel Riddles: Mahjong": pageId: 104109 steam: 909430 -'Travel Riddles: Trip To France': +"Travel Riddles: Trip To France": pageId: 64268 steam: 659940 -'Travel Riddles: Trip To Greece': +"Travel Riddles: Trip To Greece": pageId: 64192 steam: 654520 -'Travel Riddles: Trip To India': +"Travel Riddles: Trip To India": pageId: 59185 steam: 604980 -'Travel Riddles: Trip To Italy': +"Travel Riddles: Trip To Italy": pageId: 64270 steam: 659950 Travel VR: @@ -180398,7 +175390,7 @@ Travellers Rest: pageId: 145067 steam: 1139980 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Louqou\TravellersRest\GameSaves}}' + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Louqou\\TravellersRest\\GameSaves}}" Travelling around the world on a hot air balloon: pageId: 143944 steam: 1137200 @@ -180408,12 +175400,12 @@ Traverser: Travildorn: pageId: 89603 steam: 816750 -'Travis Strikes Again: No More Heroes': +"Travis Strikes Again: No More Heroes": pageId: 137572 steam: 961490 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\TSANMH\Saved\Config\WindowsNoEditor}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\TSANMH\Saved\SaveGames}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\TSANMH\\Saved\\Config\\WindowsNoEditor}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\TSANMH\\Saved\\SaveGames}}" Trawel: pageId: 124585 steam: 992240 @@ -180427,23 +175419,21 @@ Treadnauts: pageId: 69274 steam: 695970 templates: - - >- - {{Game data/config|Windows|{{P|userprofile}}\AppData\LocalLow\TOPSTITCH - GAMES\Treadnauts\settings.mork|{{P|hkcu}}\Software\TOPSTITCH GAMES\Treadnauts\}} - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\TOPSTITCH GAMES\Treadnauts\save.tank}}' + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\TOPSTITCH GAMES\\Treadnauts\\settings.mork|{{P|hkcu}}\\Software\\TOPSTITCH GAMES\\Treadnauts\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\TOPSTITCH GAMES\\Treadnauts\\save.tank}}" Treasure Adventure Game: gog: 1207659013 pageId: 7837 templates: - - '{{Game data/config|Windows|{{p|game}}\config.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\save_data}}' + - "{{Game data/config|Windows|{{p|game}}\\config.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\save_data}}" Treasure Adventure World: gog: 1167891218 pageId: 10281 steam: 268770 templates: - - '{{Game data/config|Windows|{{p|appdata}}\RobitGames\TAW\config}}' - - '{{Game data/saves|Windows|{{p|appdata}}\RobitGames\TAW\saves}}' + - "{{Game data/config|Windows|{{p|appdata}}\\RobitGames\\TAW\\config}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\RobitGames\\TAW\\saves}}" Treasure At The Top: pageId: 68992 steam: 693810 @@ -180461,8 +175451,8 @@ Treasure Hunter Claire: pageId: 92343 steam: 828070 templates: - - '{{Game data/config|Windows|{{File|{{P|game}}\Save\System.sav}}}}' - - '{{Game data/saves|Windows|{{File|{{P|game}}\Save\System.sav}}|{{File|{{P|game}}\Save\SaveData*.sav}}}}' + - "{{Game data/config|Windows|{{File|{{P|game}}\\Save\\System.sav}}}}" + - "{{Game data/saves|Windows|{{File|{{P|game}}\\Save\\System.sav}}|{{File|{{P|game}}\\Save\\SaveData*.sav}}}}" Treasure Hunter Man 2: pageId: 95573 steam: 870140 @@ -180475,24 +175465,24 @@ Treasure Island (1985): pageId: 187269 Treasure Island (2009): pageId: 190315 -'Treasure Masters, Inc.: The Lost City': +"Treasure Masters, Inc.: The Lost City": pageId: 134932 steam: 1058940 -'Treasure Planet: Battle at Procyon': +"Treasure Planet: Battle at Procyon": pageId: 48617 steam: 331970 Treasure Stack: pageId: 124082 steam: 784130 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\PIXELakes\Treasure Stack\save.dat}}' + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\PIXELakes\\Treasure Stack\\save.dat}}" Treasure chest Corps-結界を維持するため、魔物を退治した: pageId: 136750 steam: 1033450 Treasure of a Blizzard: pageId: 51326 steam: 508260 -'Treasures of the Ancients: Egypt': +"Treasures of the Ancients: Egypt": pageId: 95429 steam: 866150 Treasures of the Savage Frontier: @@ -180500,8 +175490,8 @@ Treasures of the Savage Frontier: pageId: 54899 steam: 1904524 templates: - - '{{Game data/config|DOS|{{p|game}}\TREASURE.CFG}}' - - '{{Game data/saves|DOS|{{p|game}}\SAVE\}}' + - "{{Game data/config|DOS|{{p|game}}\\TREASURE.CFG}}" + - "{{Game data/saves|DOS|{{p|game}}\\SAVE\\}}" Trebuchet: pageId: 47073 steam: 336680 @@ -180514,7 +175504,7 @@ Tree Simulator 2020: Tree of Life: pageId: 26229 steam: 361800 -'Tree of Life: Oddria!': +"Tree of Life: Oddria!": pageId: 156915 renamedFrom: - Oddria! @@ -180531,7 +175521,7 @@ Treehouse Basketball: Treehouse Riddle: pageId: 151213 steam: 1155900 -'Treeker: The Lost Glasses': +"Treeker: The Lost Glasses": pageId: 47915 steam: 369640 Treis Zoes: @@ -180542,10 +175532,10 @@ Trek to Yomi: pageId: 171292 steam: 1370050 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Ronin\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/config|Microsoft Store|{{P|localappdata}}\Ronin\Saved\Config\WinGDK}}' - - '{{Game data/saves|GOG.com|{{P|localappdata}}\Ronin\Saved\SaveGames\GOG\}}' -'Trek: Travel Around the World': + - "{{Game data/config|Windows|{{P|localappdata}}\\Ronin\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/config|Microsoft Store|{{P|localappdata}}\\Ronin\\Saved\\Config\\WinGDK}}" + - "{{Game data/saves|GOG.com|{{P|localappdata}}\\Ronin\\Saved\\SaveGames\\GOG\\}}" +"Trek: Travel Around the World": pageId: 103349 steam: 855800 Tremulous: @@ -180577,19 +175567,19 @@ Trends: Trepang2: gog: 1599916752 gogSide: - - 1445876328 - 1428940135 + - 1445876328 pageId: 151417 steam: 1164940 steamSide: - 1842620 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\CPPFPS\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\CPPFPS\Saved\SaveGames\}}' -'Trespass: Episode 1': + - "{{Game data/config|Windows|{{P|localappdata}}\\CPPFPS\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\CPPFPS\\Saved\\SaveGames\\}}" +"Trespass: Episode 1": pageId: 41846 steam: 509360 -'Trespass: Episode 2': +"Trespass: Episode 2": pageId: 58106 steam: 568310 Trespassers: @@ -180604,7 +175594,7 @@ Tri.Attack();: TriElement: pageId: 70501 steam: 708140 -'TriJinx: A Kristine Kross Mystery': +"TriJinx: A Kristine Kross Mystery": pageId: 41118 steam: 37370 Trial And Terror: @@ -180616,9 +175606,9 @@ Trial Of Destiny: Trial by Magic: pageId: 75221 templates: - - '{{Game data/config|DOS|C:\TBM.CD\PREFS.CFG|C:\TBM.CD\SETUP.CFG}}' - - '{{Game data/saves|DOS|C:\TBM.CD\SAVE*.TBM}}' -'Trial by Teng: A Twilight Path Adventure': + - "{{Game data/config|DOS|C:\\TBM.CD\\PREFS.CFG|C:\\TBM.CD\\SETUP.CFG}}" + - "{{Game data/saves|DOS|C:\\TBM.CD\\SAVE*.TBM}}" +"Trial by Teng: A Twilight Path Adventure": pageId: 135740 steam: 1074670 Trial by Viking: @@ -180633,30 +175623,30 @@ Trial of the Gods: Trial of the Towers: pageId: 132276 steam: 1051130 -'Trials 2: Second Edition': +"Trials 2: Second Edition": pageId: 11940 steam: 16600 templates: - - '{{Game data/saves|Windows|{{p|localappdata}}\Redlynx\Trials 2 SE\1.0}}' -'Trials Evolution: Gold Edition': + - "{{Game data/saves|Windows|{{p|localappdata}}\\Redlynx\\Trials 2 SE\\1.0}}" +"Trials Evolution: Gold Edition": pageId: 5463 steam: 220160 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Ubisoft\Trials Evolution Gold Edition\Config\}}' - - '{{Game data/saves|Windows|{{p|uplay}}\savegames\{{p|uid}}\78\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Ubisoft\\Trials Evolution Gold Edition\\Config\\}}" + - "{{Game data/saves|Windows|{{p|uplay}}\\savegames\\{{p|uid}}\\78\\}}" Trials Fusion: pageId: 16720 steam: 245490 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\TrialsFusion\SavedGames\}}' - - '{{Game data/saves|Windows|{{p|uplay}}\savegames\{{p|uid}}\318\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\TrialsFusion\\SavedGames\\}}" + - "{{Game data/saves|Windows|{{p|uplay}}\\savegames\\{{p|uid}}\\318\\}}" Trials Rising: pageId: 97313 steam: 641080 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Trials Rising\SavedGames\local_config.xml}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Trials Rising\SavedGames\{{p|uid}}\}}' -'Trials of Ascension: Exile': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Trials Rising\\SavedGames\\local_config.xml}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Trials Rising\\SavedGames\\{{p|uid}}\\}}" +"Trials of Ascension: Exile": pageId: 102871 steam: 893870 Trials of Azra: @@ -180667,8 +175657,8 @@ Trials of Fire: pageId: 134448 steam: 1038370 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\TableTopBase\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\TableTopBase\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\TableTopBase\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\TableTopBase\\Saved\\SaveGames\\}}" Trials of Guinevere: pageId: 155947 steam: 1103130 @@ -180679,11 +175669,9 @@ Trials of Mana: pageId: 138547 steam: 924980 templates: - - >- - {{Game data/config|Windows|{{P|userprofile\Documents}}\My Games\Trials of - Mana\Steam\{{p|UID}}\Saved\Config\WindowsNoEditor}} - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\My Games\Trials of Mana\Steam\{{p|UID}}\Saved\SaveGames}}' -'Trials of The Illuminati: Snack Time Jigsaw Puzzles': + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\My Games\\Trials of Mana\\Steam\\{{p|UID}}\\Saved\\Config\\WindowsNoEditor}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\My Games\\Trials of Mana\\Steam\\{{p|UID}}\\Saved\\SaveGames}}" +"Trials of The Illuminati: Snack Time Jigsaw Puzzles": pageId: 112052 steam: 844080 Trials of Wilderness: @@ -180693,33 +175681,33 @@ Trials of the Blood Dragon: pageId: 33387 steam: 435480 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\Trials Blood Dragon\SavedGames\local_config.xml}}' - - '{{Game data/saves|Windows|{{P|uplay}}\savegames\{{P|uid}}\2741\}}' + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\Trials Blood Dragon\\SavedGames\\local_config.xml}}" + - "{{Game data/saves|Windows|{{P|uplay}}\\savegames\\{{P|uid}}\\2741\\}}" Trials of the Gauntlet: pageId: 88110 steam: 764410 -'Trials of the Illuminati: Amazing Wildlife Jigsaws': +"Trials of the Illuminati: Amazing Wildlife Jigsaws": pageId: 72051 steam: 713780 -'Trials of the Illuminati: Animated Christmas Time Jigsaws': +"Trials of the Illuminati: Animated Christmas Time Jigsaws": pageId: 70188 steam: 709770 -'Trials of the Illuminati: Assorted Jigsaws': +"Trials of the Illuminati: Assorted Jigsaws": pageId: 80474 steam: 783470 -'Trials of the Illuminati: Cityscape Animated Jigsaws': +"Trials of the Illuminati: Cityscape Animated Jigsaws": pageId: 68146 steam: 695590 -'Trials of the Illuminati: Sea Creatures Jigsaws': +"Trials of the Illuminati: Sea Creatures Jigsaws": pageId: 70184 steam: 709430 -'Trials of the Illuminati: Women of Beauty Jigsaws': +"Trials of the Illuminati: Women of Beauty Jigsaws": pageId: 81745 steam: 785610 Trials of the Thief-Taker: pageId: 67796 steam: 688000 -'Trianga''s Project: Battle Splash 2.0': +"Trianga's Project: Battle Splash 2.0": pageId: 69046 steam: 756600 Triangle: @@ -180732,8 +175720,8 @@ Triangle Strategy: pageId: 181506 steam: 1850510 templates: - - '{{Game data/config|Windows|{{P|userprofile\documents}}\My Games\TRIANGLE_STRATEGY\Steam\{{P|uid}}\SaveGames}}' - - '{{Game data/saves|Windows|{{P|userprofile\documents}}\My Games\TRIANGLE_STRATEGY\Steam\Config\WindowsNoEditor}}' + - "{{Game data/config|Windows|{{P|userprofile\\documents}}\\My Games\\TRIANGLE_STRATEGY\\Steam\\{{P|uid}}\\SaveGames}}" + - "{{Game data/saves|Windows|{{P|userprofile\\documents}}\\My Games\\TRIANGLE_STRATEGY\\Steam\\Config\\WindowsNoEditor}}" TriangleStorm: pageId: 153149 steam: 1192070 @@ -180751,7 +175739,7 @@ Tribal Hunter: pageId: 181075 steam: 1379870 templates: - - '{{Game data/saves|Windows|{{P|localappdata}}\Tribal_Hunter}}' + - "{{Game data/saves|Windows|{{P|localappdata}}\\Tribal_Hunter}}" Tribal Pass: pageId: 36728 steam: 470270 @@ -180761,7 +175749,7 @@ Tribal Siege: Tribe of Pok: pageId: 36878 steam: 505140 -'TribeQuest: Red Killer': +"TribeQuest: Red Killer": pageId: 43013 steam: 388830 Tribes 2: @@ -180773,21 +175761,21 @@ Tribes of Midgard: - 1106880 - 1663080 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\TOM\Saved\Config\WindowsNoEditor}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\TOM\Saved\SaveGames}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\TOM\\Saved\\Config\\WindowsNoEditor}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\TOM\\Saved\\SaveGames}}" Tribes of Midgard - Open Beta: pageId: 144401 steam: 1106880 -'Tribes: Ascend': +"Tribes: Ascend": pageId: 98 steam: 17080 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Tribes Ascend\TribesGame\Config\}}' -'Tribes: Vengeance': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Tribes Ascend\\TribesGame\\Config\\}}" +"Tribes: Vengeance": pageId: 75761 templates: - - '{{Game data/config|Windows|{{p|game}}\Program\Bin|{{p|game}}\Content\System}}' - - '{{Game data/saves|Windows|{{p|game}}\Content\Saves}}' + - "{{Game data/config|Windows|{{p|game}}\\Program\\Bin|{{p|game}}\\Content\\System}}" + - "{{Game data/saves|Windows|{{p|game}}\\Content\\Saves}}" Triblaster: pageId: 50027 steam: 303880 @@ -180795,8 +175783,8 @@ Tribloos 2: pageId: 38232 steam: 271550 templates: - - '{{Game data/config|Windows|{{p|APPDATA}}\BumpkinBrothers\TheTribloos2\settings.ini}}' - - '{{Game data/saves|Windows|{{p|APPDATA}}\BumpkinBrothers\TheTribloos2\}}' + - "{{Game data/config|Windows|{{p|APPDATA}}\\BumpkinBrothers\\TheTribloos2\\settings.ini}}" + - "{{Game data/saves|Windows|{{p|APPDATA}}\\BumpkinBrothers\\TheTribloos2\\}}" Tribloos 3: pageId: 98156 steam: 520540 @@ -180807,8 +175795,8 @@ Trick & Treat: pageId: 39173 steam: 497640 templates: - - '{{Game data/config|Windows|{{p|game}}\Game.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\Save{{code|**}}.rvdata2}}' + - "{{Game data/config|Windows|{{p|game}}\\Game.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\Save{{code|**}}.rvdata2}}" Trick Shot: pageId: 87322 steam: 793480 @@ -180816,7 +175804,7 @@ Trick and Treat - Visual Novel: pageId: 55742 steam: 555210 templates: - - '{{Game data/saves|Windows|{{p|game}}\game\saves\ | {{p|appdata}}\RenPy\TrickandTreat-1413512286\}}' + - "{{Game data/saves|Windows|{{p|game}}\\game\\saves\\ | {{p|appdata}}\\RenPy\\TrickandTreat-1413512286\\}}" Trick-Track!: pageId: 128827 TrickStyle: @@ -180824,8 +175812,8 @@ TrickStyle: pageId: 24614 steam: 588490 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/saves|Windows|{{p|game}}\}}' + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\}}" Tricks and Treats: pageId: 73798 steam: 702310 @@ -180835,7 +175823,7 @@ Trickshot: Trickster VR: pageId: 35972 steam: 512220 -'Trickster VR: Horde Attack!': +"Trickster VR: Horde Attack!": pageId: 139071 steam: 1098150 Tricky Cat: @@ -180854,35 +175842,35 @@ Tricky Towers: - 481360 - 506920 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\WeirdBeard\Tricky Towers\}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/WeirdBeard/Tricky Towers/}}' - - '{{Game data/saves|Windows|{{p|hkcu}}\Software\WeirdBeard\Tricky Towers\ }}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\WeirdBeard\\Tricky Towers\\}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/WeirdBeard/Tricky Towers/}}" + - "{{Game data/saves|Windows|{{p|hkcu}}\\Software\\WeirdBeard\\Tricky Towers\\ }}" Tricolour Lovestory: pageId: 69703 steam: 668630 templates: - - '{{Game data/saves|Windows|{{p|game}}\savedata\*}}' + - "{{Game data/saves|Windows|{{p|game}}\\savedata\\*}}" Tricone Lab: pageId: 37355 steam: 392610 Trident Barrage: pageId: 128219 steam: 1017270 -Trident's Wake: +"Trident's Wake": pageId: 88197 steam: 704880 Triennale Game Collection: pageId: 54578 steam: 538880 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\La Triennale di Milano\Triennale GC\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\La Triennale di Milano\\Triennale GC\\}}" Trifox: gog: 1819569494 pageId: 157249 steam: 1211240 templates: - - '{{Game data/config|Windows|C:\Users\username\AppData\LocalLow\Glowfish Interactive\Trifox}}' - - '{{Game data/saves|Windows|C:\Users\username\AppData\LocalLow\Glowfish Interactive\Trifox}}' + - "{{Game data/config|Windows|C:\\Users\\username\\AppData\\LocalLow\\Glowfish Interactive\\Trifox}}" + - "{{Game data/saves|Windows|C:\\Users\\username\\AppData\\LocalLow\\Glowfish Interactive\\Trifox}}" Trigger: pageId: 96295 steam: 855650 @@ -180893,7 +175881,7 @@ Trigger Runners: pageId: 44315 steam: 355560 templates: - - '{{Game data/saves|Windows|{{P|appdata}}\Stencyl\Trigger Runners for Windows\mySave.sol}}' + - "{{Game data/saves|Windows|{{P|appdata}}\\Stencyl\\Trigger Runners for Windows\\mySave.sol}}" Trigger Saint: pageId: 46112 steam: 354770 @@ -180907,11 +175895,11 @@ Trigger Witch: pageId: 189216 steam: 1880230 templates: - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\Rainbite Limited\Trigger Witch\savedGame*.gd}}' + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\Rainbite Limited\\Trigger Witch\\savedGame*.gd}}" Triggered: pageId: 87521 steam: 809200 -'Triggered: Assault': +"Triggered: Assault": pageId: 113072 steam: 710510 Triggering Simulator: @@ -180920,7 +175908,7 @@ Triggering Simulator: Triggerun: pageId: 102809 steam: 897290 -'Trigon: Space Story': +"Trigon: Space Story": pageId: 177367 steam: 1226510 Trigonarium: @@ -180932,11 +175920,11 @@ Trigonometry: Trikumax: pageId: 130476 steam: 1009210 -'Trillion: God of Destruction': +"Trillion: God of Destruction": pageId: 52306 steam: 451780 templates: - - '{{Game data/saves|Windows|{{p|game}}\savedata\}}' + - "{{Game data/saves|Windows|{{p|game}}\\savedata\\}}" Trimmer Tycoon: pageId: 52265 steam: 505750 @@ -180945,10 +175933,10 @@ Trine: pageId: 1978 steam: 35700 templates: - - '{{Game data/config|Windows|{{p|game}}\config}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.frozenbyte/trine/}}' - - '{{Game data/saves|Windows|{{p|game}}\profiles}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.frozenbyte/trine/}}' + - "{{Game data/config|Windows|{{p|game}}\\config}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.frozenbyte/trine/}}" + - "{{Game data/saves|Windows|{{p|game}}\\profiles}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.frozenbyte/trine/}}" Trine 2: gog: 1207660353 gogSide: @@ -180958,58 +175946,58 @@ Trine 2: steamSide: - 35725 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Trine2\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Trine2/}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.frozenbyte/Trine2/}}' - - '{{Game data/config|Steam|{{p|steam}}/userdata/{{p|uid}}/35720/remote/}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Trine2\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Trine2/}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.frozenbyte/Trine2/}}' - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/35720/remote/}}' -'Trine 3: The Artifacts of Power': + - "{{Game data/config|Windows|{{p|appdata}}\\Trine2\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Trine2/}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.frozenbyte/Trine2/}}" + - "{{Game data/config|Steam|{{p|steam}}/userdata/{{p|uid}}/35720/remote/}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Trine2\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Trine2/}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.frozenbyte/Trine2/}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/35720/remote/}}" +"Trine 3: The Artifacts of Power": gog: 1431599567 pageId: 24291 steam: 319910 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Trine3\options.txt}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.frozenbyte/Trine3}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Trine3\}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.frozenbyte/Trine3}}' - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/319910/remote/}}' -'Trine 4: The Nightmare Prince': + - "{{Game data/config|Windows|{{p|appdata}}\\Trine3\\options.txt}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.frozenbyte/Trine3}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Trine3\\}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.frozenbyte/Trine3}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/319910/remote/}}" +"Trine 4: The Nightmare Prince": gog: 1719934185 gogSide: - 1098420914 pageId: 130712 steam: 690640 steamSide: - - 1504370 - 1224800 - - 1503550 - 1444560 + - 1503550 + - 1504370 templates: - - '{{Game data/config|Windows|{{P|appdata}}\Trine4\}}' - - '{{Game data/config|Steam|{{P|steam}}\userdata\{{P|uid}}\690640\remote\}}' - - '{{Game data/saves|Windows|{{P|appdata}}\Trine4\}}' - - '{{Game data/saves|Steam|{{P|steam}}\userdata\{{P|uid}}\690640\remote\}}' -'Trine 5: A Clockwork Conspiracy': + - "{{Game data/config|Windows|{{P|appdata}}\\Trine4\\}}" + - "{{Game data/config|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\690640\\remote\\}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\Trine4\\}}" + - "{{Game data/saves|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\690640\\remote\\}}" +"Trine 5: A Clockwork Conspiracy": gog: 1804557033 pageId: 186503 steam: 1436700 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Trine5\}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Trine5\}}' + - "{{Game data/config|Windows|{{p|appdata}}\\Trine5\\}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Trine5\\}}" Trine Enchanted Edition: gog: 1207659020 pageId: 17944 steam: 35700 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Trine1\}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.frozenbyte/Trine1/}}' - - '{{Game data/config|Steam|{{p|steam}}/userdata/{{p|uid}}/35700/remote/}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Trine1\}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.frozenbyte/Trine1/}}' - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/35700/remote/}}' + - "{{Game data/config|Windows|{{p|appdata}}\\Trine1\\}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.frozenbyte/Trine1/}}" + - "{{Game data/config|Steam|{{p|steam}}/userdata/{{p|uid}}/35700/remote/}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Trine1\\}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.frozenbyte/Trine1/}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/35700/remote/}}" Trinity: pageId: 80695 steam: 778580 @@ -181020,15 +176008,15 @@ Trinity Fusion: pageId: 186594 steam: 1911360 templates: - - '{{Game data/config|Windows|{{P|userprofile\appdata\locallow}}\Angry Mob Games\Trinity Fusion\}}' - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Angry Mob Games\Trinity Fusion\}}' + - "{{Game data/config|Windows|{{P|userprofile\\appdata\\locallow}}\\Angry Mob Games\\Trinity Fusion\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Angry Mob Games\\Trinity Fusion\\}}" Trinity Trigger: gog: 1313277311 pageId: 186588 steam: 2176930 templates: - - '{{Game data/config|Windows|{{P|userprofile\appdata\locallow}}\TRINITY TRIGGER\{{P|uid}}\}}' - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\TRINITY TRIGGER\{{P|uid}}\}}' + - "{{Game data/config|Windows|{{P|userprofile\\appdata\\locallow}}\\TRINITY TRIGGER\\{{P|uid}}\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\TRINITY TRIGGER\\{{P|uid}}\\}}" Trinity VR: pageId: 122004 steam: 970130 @@ -181060,7 +176048,7 @@ Trip to Vinelands: pageId: 52223 steam: 546090 templates: - - '{{Game data/saves|Windows|{{P|localappdata}}\Trip_to_Vinelands\}}' + - "{{Game data/saves|Windows|{{P|localappdata}}\\Trip_to_Vinelands\\}}" Trip=true: pageId: 179269 steam: 1757880 @@ -181077,7 +176065,7 @@ Triple Town: pageId: 19213 steam: 209950 templates: - - '{{Game data/saves|Windows|{{p|appdata}}\TripleTown\saves}}' + - "{{Game data/saves|Windows|{{p|appdata}}\\TripleTown\\saves}}" Triple Twenty: pageId: 72535 steam: 720540 @@ -181087,7 +176075,7 @@ Triple X Tycoon: TripleA: pageId: 70561 templates: - - '{{Game data/config|Linux|{{p|linuxhome}}/.java/.userPrefs/games/strategy/triplea/settings}}' + - "{{Game data/config|Linux|{{p|linuxhome}}/.java/.userPrefs/games/strategy/triplea/settings}}" Triplicata: pageId: 72525 steam: 701800 @@ -181103,7 +176091,7 @@ Trireme Commander: Tristoy: pageId: 48961 steam: 303260 -'Triteckka: The pure shooter': +"Triteckka: The pure shooter": pageId: 112200 steam: 915430 Triton Survival: @@ -181115,13 +176103,13 @@ Triton Wing: Triumph in the Skies: pageId: 152973 steam: 1012580 -'Triuna: The Seven': +"Triuna: The Seven": pageId: 157402 steam: 1210520 TrivaTune: pageId: 122560 steam: 953150 -'Trivia Clash: Adult Film Star Edition': +"Trivia Clash: Adult Film Star Edition": pageId: 120988 steam: 966020 Trivia King: @@ -181130,118 +176118,118 @@ Trivia King: Trivia Night: pageId: 64006 steam: 628570 -'Trivia Quiz: All about everything!': +"Trivia Quiz: All about everything!": pageId: 104019 steam: 905150 -'Trivia Vault: 1980''s Trivia': +"Trivia Vault: 1980's Trivia": pageId: 67257 steam: 689180 -'Trivia Vault: 1980''s Trivia 2': +"Trivia Vault: 1980's Trivia 2": pageId: 67926 steam: 693880 -'Trivia Vault: Art Trivia': +"Trivia Vault: Art Trivia": pageId: 92895 steam: 851710 -'Trivia Vault: Auto Racing Trivia': +"Trivia Vault: Auto Racing Trivia": pageId: 89555 steam: 822460 -'Trivia Vault: Baseball Trivia': +"Trivia Vault: Baseball Trivia": pageId: 87021 steam: 805360 -'Trivia Vault: Basketball Trivia': +"Trivia Vault: Basketball Trivia": pageId: 87045 steam: 806610 -'Trivia Vault: Boxing Trivia': +"Trivia Vault: Boxing Trivia": pageId: 89438 steam: 821520 -'Trivia Vault: Business Trivia': +"Trivia Vault: Business Trivia": pageId: 93746 steam: 858420 -'Trivia Vault: Celebrity Trivia': +"Trivia Vault: Celebrity Trivia": pageId: 92825 steam: 849620 -'Trivia Vault: Classic Rock Trivia': +"Trivia Vault: Classic Rock Trivia": pageId: 67247 steam: 690240 -'Trivia Vault: Classic Rock Trivia 2': +"Trivia Vault: Classic Rock Trivia 2": pageId: 67942 steam: 693890 -'Trivia Vault: Fashion Trivia': +"Trivia Vault: Fashion Trivia": pageId: 94667 steam: 860350 -'Trivia Vault: Food Trivia': +"Trivia Vault: Food Trivia": pageId: 94737 steam: 861720 -'Trivia Vault: Football Trivia': +"Trivia Vault: Football Trivia": pageId: 86999 steam: 804600 -'Trivia Vault: Golf Trivia': +"Trivia Vault: Golf Trivia": pageId: 90132 steam: 822900 -'Trivia Vault: Health Trivia Deluxe': +"Trivia Vault: Health Trivia Deluxe": pageId: 80444 steam: 781760 -'Trivia Vault: Hockey Trivia': +"Trivia Vault: Hockey Trivia": pageId: 90649 steam: 828550 -'Trivia Vault: Literature Trivia': +"Trivia Vault: Literature Trivia": pageId: 94739 steam: 861740 -'Trivia Vault: Mini Mixed Trivia': +"Trivia Vault: Mini Mixed Trivia": pageId: 69603 steam: 706320 -'Trivia Vault: Mini Mixed Trivia 2': +"Trivia Vault: Mini Mixed Trivia 2": pageId: 69605 steam: 706330 -'Trivia Vault: Mini Mixed Trivia 3': +"Trivia Vault: Mini Mixed Trivia 3": pageId: 70118 steam: 710110 -'Trivia Vault: Mini Mixed Trivia 4': +"Trivia Vault: Mini Mixed Trivia 4": pageId: 70190 steam: 710120 -'Trivia Vault: Mixed Trivia': +"Trivia Vault: Mixed Trivia": pageId: 66822 steam: 686550 -'Trivia Vault: Mixed Trivia 2': +"Trivia Vault: Mixed Trivia 2": pageId: 82167 steam: 796900 -'Trivia Vault: Movie Trivia': +"Trivia Vault: Movie Trivia": pageId: 92619 steam: 845970 -'Trivia Vault: Music Trivia': +"Trivia Vault: Music Trivia": pageId: 96999 steam: 878270 -'Trivia Vault: Olympics Trivia': +"Trivia Vault: Olympics Trivia": pageId: 87039 steam: 805880 -'Trivia Vault: Science & History Trivia': +"Trivia Vault: Science & History Trivia": pageId: 66967 steam: 687480 -'Trivia Vault: Science & History Trivia 2': +"Trivia Vault: Science & History Trivia 2": pageId: 68669 steam: 699590 -'Trivia Vault: Soccer Trivia': +"Trivia Vault: Soccer Trivia": pageId: 92031 steam: 844140 -'Trivia Vault: Super Heroes Trivia': +"Trivia Vault: Super Heroes Trivia": pageId: 66971 steam: 687490 -'Trivia Vault: Super Heroes Trivia 2': +"Trivia Vault: Super Heroes Trivia 2": pageId: 69458 steam: 705090 -'Trivia Vault: TV Trivia': +"Trivia Vault: TV Trivia": pageId: 92893 steam: 851520 -'Trivia Vault: Technology Trivia Deluxe': +"Trivia Vault: Technology Trivia Deluxe": pageId: 78234 steam: 767030 -'Trivia Vault: Tennis Trivia': +"Trivia Vault: Tennis Trivia": pageId: 91857 steam: 840710 -'Trivia Vault: Toy Trivia': +"Trivia Vault: Toy Trivia": pageId: 94665 steam: 860340 -'Trivia Vault: Video Game Trivia Deluxe': +"Trivia Vault: Video Game Trivia Deluxe": pageId: 73813 steam: 730220 Trivial Combat: @@ -181262,18 +176250,18 @@ Troll Control: Troll and I: pageId: 58457 steam: 564070 -Troll's Tale: +"Troll's Tale": pageId: 147125 Trolley Gold: pageId: 59462 steam: 498320 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Trolley_Gold\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Trolley_Gold\}}' -'Trolley Problem, Inc.': + - "{{Game data/config|Windows|{{p|localappdata}}\\Trolley_Gold\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Trolley_Gold\\}}" +"Trolley Problem, Inc.": pageId: 177271 steam: 1582680 -'Trollhunters: Defenders of Arcadia': +"Trollhunters: Defenders of Arcadia": pageId: 177726 steam: 1344070 Trollskog: @@ -181283,31 +176271,27 @@ Trombone Champ: pageId: 181886 steam: 1059990 templates: - - '{{Game data/config|Windows|{{p|userprofile\appdata\locallow}}\Holy Wow\TromboneChamp\}}' - - >- - {{Game data/config|OS X|{{P|osxhome}}/Library/Application - Support/com.holywowstudios.trombonechamp/tchamp_settingsv100.dat}} - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\Holy Wow\TromboneChamp\}}' - - '{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/com.holywowstudios.trombonechamp/}}' + - "{{Game data/config|Windows|{{p|userprofile\\appdata\\locallow}}\\Holy Wow\\TromboneChamp\\}}" + - "{{Game data/config|OS X|{{P|osxhome}}/Library/Application Support/com.holywowstudios.trombonechamp/tchamp_settingsv100.dat}}" + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\Holy Wow\\TromboneChamp\\}}" + - "{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/com.holywowstudios.trombonechamp/}}" Tron 2.0: gog: 1655444396 pageId: 20291 steam: 327740 templates: - - '{{Game data/config|Windows|{{p|game}}\*.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\Save\}}' + - "{{Game data/config|Windows|{{p|game}}\\*.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\Save\\}}" Tron Hockey: pageId: 64801 steam: 670550 -'Tron: Evolution': +"Tron: Evolution": pageId: 928 steam: 315440 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\Disney Interactive Studios\Tron - Evolution\UnrealEngine3\GridGame\Config\}} - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Disney Interactive Studios\Tron Evolution\SaveData\}}' -'Tron: Identity': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Disney Interactive Studios\\Tron Evolution\\UnrealEngine3\\GridGame\\Config\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Disney Interactive Studios\\Tron Evolution\\SaveData\\}}" +"Tron: Identity": pageId: 185073 steam: 2109430 Tronix Defender: @@ -181331,7 +176315,7 @@ Tropical Escape: Tropical Fish Shop 2: pageId: 44215 steam: 451350 -'Tropical Fish Shop: Annabel''s Adventure': +"Tropical Fish Shop: Annabel's Adventure": pageId: 174090 Tropical Girls VR: pageId: 51135 @@ -181340,7 +176324,7 @@ Tropical Liquor: pageId: 87369 steam: 687920 templates: - - '{{Game data/saves|Windows|\steamapps\common\Tropical Liquor}}' + - "{{Game data/saves|Windows|\\steamapps\\common\\Tropical Liquor}}" Tropico: gog: 1207663953 gogSide: @@ -181348,24 +176332,24 @@ Tropico: pageId: 9438 steam: 33520 templates: - - '{{Game data/config|Windows|{{p|game}}\data2}}' - - '{{Game data/saves|Windows|{{p|game}}\Games}}' -'Tropico 2: Pirate Cove': + - "{{Game data/config|Windows|{{p|game}}\\data2}}" + - "{{Game data/saves|Windows|{{p|game}}\\Games}}" +"Tropico 2: Pirate Cove": gog: 1207663963 gogSide: - 1207658817 pageId: 11214 steam: 33530 templates: - - '{{Game data/config|Windows|{{p|game}}\Tropico2.ini|{{p|game}}\Tropico2Safe.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\Save}}' + - "{{Game data/config|Windows|{{p|game}}\\Tropico2.ini|{{p|game}}\\Tropico2Safe.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\Save}}" Tropico 3: gog: 1207659056 pageId: 310 steam: 23490 templates: - - '{{Game data/config|Windows|{{p|game}}\config.lua}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Tropico 3\Saves}}' + - "{{Game data/config|Windows|{{p|game}}\\config.lua}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Tropico 3\\Saves}}" Tropico 4: gog: 1435068351 gogSide: @@ -181373,47 +176357,45 @@ Tropico 4: pageId: 2454 steam: 57690 steamSide: - - 205630 - - 205636 - - 205635 - - 205637 - - 205638 - - 205634 - - 205633 - - 205632 - - 57697 - 57695 - 57696 + - 57697 + - 205630 + - 205632 + - 205633 + - 205634 + - 205635 + - 205636 + - 205637 + - 205638 templates: - - '{{Game data/saves|Windows|{{P|APPDATA}}\Tropico 4\users\}}' - - '{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/Feral Interactive/Tropico 4/AppData/users/}}' + - "{{Game data/saves|Windows|{{P|APPDATA}}\\Tropico 4\\users\\}}" + - "{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/Feral Interactive/Tropico 4/AppData/users/}}" Tropico 5: gog: 1436885062 gogSide: - - 1444303465 - 1444303206 + - 1444303465 pageId: 16699 steam: 245620 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Tropico 5\DeveloperStorage.lua}}' - - >- - {{Game data/config|OS X|{{p|osxhome}}/Library/Application - Support/com.kalypsomedia.tropico5.steam/DeveloperStorage.lua}} - - '{{Game data/config|Linux|{{P|game}}/game/DeveloperStorage.lua}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Tropico 5\{{p|uid}}\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/com.kalypsomedia.tropico5.steam/{{p|uid}}/}}' - - '{{Game data/saves|Linux|{{P|game}}/game/{{p|uid}}/}}' + - "{{Game data/config|Windows|{{p|appdata}}\\Tropico 5\\DeveloperStorage.lua}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/com.kalypsomedia.tropico5.steam/DeveloperStorage.lua}}" + - "{{Game data/config|Linux|{{P|game}}/game/DeveloperStorage.lua}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Tropico 5\\{{p|uid}}\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/com.kalypsomedia.tropico5.steam/{{p|uid}}/}}" + - "{{Game data/saves|Linux|{{P|game}}/game/{{p|uid}}/}}" Tropico 6: gog: 1941218424 gogSide: - - 1463977001 - - 2056767403 - - 1544940107 - - 2102177063 - - 1671445790 - - 1284035815 - 1179050475 + - 1284035815 - 1402576354 + - 1463977001 + - 1544940107 + - 1671445790 + - 2056767403 + - 2102177063 - 2144747367 pageId: 63642 steam: 492720 @@ -181427,10 +176409,10 @@ Tropico 6: - 2186250 - 2594010 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Tropico6\Saved\Config\}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/Tropico6/Saved/Config/}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Tropico6\Saved\SaveGames\}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/Tropico6/Saved/SaveGames/}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Tropico6\\Saved\\Config\\}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/Tropico6/Saved/Config/}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Tropico6\\Saved\\SaveGames\\}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/Tropico6/Saved/SaveGames/}}" Tross: pageId: 44447 steam: 443850 @@ -181441,7 +176423,7 @@ Trouble Juice: pageId: 191146 steam: 2065840 templates: - - '{{Game data/saves|Windows|userprofile\AppData\Local\troubleJuice}}' + - "{{Game data/saves|Windows|userprofile\\AppData\\Local\\troubleJuice}}" Trouble Travel TT: pageId: 127673 steam: 1007210 @@ -181449,7 +176431,7 @@ Trouble Witches Origin - Episode1 Daughters of Amalgam -: pageId: 39157 steam: 460630 templates: - - '{{Game data/saves|Windows|{{p|game}}/savedata.dat}}' + - "{{Game data/saves|Windows|{{p|game}}/savedata.dat}}" Troubles Land: pageId: 46482 steam: 397240 @@ -181460,13 +176442,13 @@ Trove: pageId: 20789 steam: 304050 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Trove\Trove.cfg}}' + - "{{Game data/config|Windows|{{p|appdata}}\\Trove\\Trove.cfg}}" Trover Saves the Universe: pageId: 131417 steam: 1051200 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Trover\Saved\Config\WindowsNoEditor}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\Trover\Saved\SaveGames}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\Trover\\Saved\\Config\\WindowsNoEditor}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Trover\\Saved\\SaveGames}}" Truck Driver: pageId: 105331 steam: 768180 @@ -181490,7 +176472,7 @@ Trucker: Trucker 2: pageId: 46883 steam: 392890 -Trucker's Dynasty - Cuba Libre: +"Trucker's Dynasty - Cuba Libre": pageId: 145278 steam: 1061210 Trucking: @@ -181500,8 +176482,8 @@ Trucks & Trailers: pageId: 19226 steam: 302060 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Trucks & Trailers\config.cfg}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Trucks & Trailers\leaderboards\data\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Trucks & Trailers\\config.cfg}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Trucks & Trailers\\leaderboards\\data\\}}" True Blades: pageId: 62721 steam: 542410 @@ -181511,33 +176493,33 @@ True Bliss: True Colors: pageId: 141483 steam: 1013200 -'True Crime: New York City': +"True Crime: New York City": pageId: 26058 templates: - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\TCNYC\Saved Games\}}' -'True Crime: Streets of LA': + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\TCNYC\\Saved Games\\}}" +"True Crime: Streets of LA": pageId: 26065 templates: - - '{{Game data/config|Windows|{{p|game}}\TrueCrime.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\Saves\}}' -'True Fear: Forsaken Souls Part 1': + - "{{Game data/config|Windows|{{p|game}}\\TrueCrime.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\Saves\\}}" +"True Fear: Forsaken Souls Part 1": gog: 1719675091 pageId: 42601 renamedFrom: - - 'True Fear: Forsaken Souls' + - "True Fear: Forsaken Souls" steam: 440420 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Goblinz Enterprises Limited\True Fear}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\Goblinz\TrueFear_ForsakenSouls\Profiles\}}' - - '{{Game data/saves|OS X|{{P|osxhome}}/.local/share/Goblinz/TrueFear_ForsakenSouls/Profiles/}}' -'True Fear: Forsaken Souls Part 2': + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Goblinz Enterprises Limited\\True Fear}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Goblinz\\TrueFear_ForsakenSouls\\Profiles\\}}" + - "{{Game data/saves|OS X|{{P|osxhome}}/.local/share/Goblinz/TrueFear_ForsakenSouls/Profiles/}}" +"True Fear: Forsaken Souls Part 2": gog: 1365195229 pageId: 121035 steam: 935580 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Goblinz Enterprises Limited\True Fear 2}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\Goblinz\True Fear 2\Profiles\}}' - - '{{Game data/saves|OS X|{{P|osxhome}}/.local/share/Goblinz/True Fear 2/Profiles/}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Goblinz Enterprises Limited\\True Fear 2}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Goblinz\\True Fear 2\\Profiles\\}}" + - "{{Game data/saves|OS X|{{P|osxhome}}/.local/share/Goblinz/True Fear 2/Profiles/}}" True Hate: pageId: 172253 steam: 1385700 @@ -181547,17 +176529,17 @@ True Hentai Puzzle: True Love: pageId: 156127 renamedFrom: - - True Love '95 + - "True Love '95" steam: 1094640 -'True Love: Confide to the Maple': +"True Love: Confide to the Maple": pageId: 51348 steam: 495990 -True Lover's Knot: +"True Lover's Knot": pageId: 45561 steam: 416630 templates: - - '{{Game data/config|Windows|{{p|game}}\data\system\Config.tjs}}' - - '{{Game data/saves|Windows|{{p|game}}\TrueLoverKnotiPad_tyrano_data.sav}}' + - "{{Game data/config|Windows|{{p|game}}\\data\\system\\Config.tjs}}" + - "{{Game data/saves|Windows|{{p|game}}\\TrueLoverKnotiPad_tyrano_data.sav}}" True Mining Simulator: pageId: 77393 steam: 755550 @@ -181582,7 +176564,7 @@ Truefish: Truffle Saga: pageId: 34765 steam: 302260 -'Trulon: The Shadow Engine': +"Trulon: The Shadow Engine": pageId: 44375 steam: 433840 TrumPiñata: @@ -181603,7 +176585,7 @@ Trumpy Wall: Trundle: pageId: 66937 steam: 683070 -'Trust & Betrayal: The Legacy of Siboot': +"Trust & Betrayal: The Legacy of Siboot": pageId: 176810 Trusty Brothers: pageId: 156288 @@ -181614,20 +176596,20 @@ Truth of Falchion: Truth or Dare?: pageId: 74548 steam: 733240 -'Truth: Disorder': +"Truth: Disorder": pageId: 77126 steam: 755350 -'Truth: Disorder II': +"Truth: Disorder II": pageId: 92963 steam: 847580 -'Truth: Disorder III - Gemini / 真実:障害III - 双子座': +"Truth: Disorder III - Gemini / 真実:障害III - 双子座": pageId: 132600 steam: 982450 Truxton: gog: 2146267352 pageId: 182753 steam: 2022880 -Try 'n Cry - Prologue: +"Try 'n Cry - Prologue": pageId: 150594 steam: 1106720 Try Hard Parking: @@ -181676,18 +176658,16 @@ Trüberbrook: steamSide: - 1049050 templates: - - '{{Game data/config|Windows|{{P|userprofile}}\AppData\LocalLow\BTF\Truberbrook\}}' - - '{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/BTF/Truberbrook/}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\BTF\Truberbrook\*.save}}' - - '{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/BTF/Truberbrook/*.save}}' + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\BTF\\Truberbrook\\}}" + - "{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/BTF/Truberbrook/}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\BTF\\Truberbrook\\*.save}}" + - "{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/BTF/Truberbrook/*.save}}" Tsioque: gog: 1645340422 pageId: 39646 steam: 393190 templates: - - >- - {{Game data/saves|Windows|{{P|APPDATA}}\com.ohnoo.tsioque\Local Store\dat.xlg (GOG) | - {{P|STEAM}}\steamapps\common\TSIOQUE\dat.xlg (STEAM) }} + - "{{Game data/saves|Windows|{{P|APPDATA}}\\com.ohnoo.tsioque\\Local Store\\dat.xlg (GOG) | {{P|STEAM}}\\steamapps\\common\\TSIOQUE\\dat.xlg (STEAM) }}" Tsugunohi: pageId: 164279 steam: 1322300 @@ -181697,19 +176677,19 @@ Tsukai Furushita Kotoba Ya Uta Wo MV: Tsukihime: pageId: 177633 templates: - - '{{Game data/config|Windows|{{p|game}}}}' - - '{{Game data/saves|Windows|{{p|game}}}}' + - "{{Game data/config|Windows|{{p|game}}}}" + - "{{Game data/saves|Windows|{{p|game}}}}" Tsukihime Plus-Disc: pageId: 177643 renamedFrom: - Tsukihime PLUS-DISC templates: - - '{{Game data/config|Windows|{{p|game}}}}' - - '{{Game data/saves|Windows|{{p|game}}}}' -'Tsukikage no Simulacre: Kaihou no Hane': + - "{{Game data/config|Windows|{{p|game}}}}" + - "{{Game data/saves|Windows|{{p|game}}}}" +"Tsukikage no Simulacre: Kaihou no Hane": pageId: 141430 renamedFrom: - - '月影魅像-解放之羽- / Tsukikage no Simulacre:Kaihou no Hane' + - "月影魅像-解放之羽- / Tsukikage no Simulacre:Kaihou no Hane" steam: 1069230 Tsukumohime: pageId: 80458 @@ -181726,7 +176706,7 @@ Tsun-Tsun VR: Tsundere Idol: pageId: 94370 steam: 795160 -'Tsuro: The Game of The Path - VR Edition': +"Tsuro: The Game of The Path - VR Edition": pageId: 141371 renamedFrom: - Tsuro - The Game of The Path @@ -181739,10 +176719,10 @@ Tube Tycoon: TubeLife: pageId: 130603 steam: 657510 -Tuber's Run: +"Tuber's Run": pageId: 127938 renamedFrom: - - Tuber`s Run + - "Tuber`s Run" steam: 1022860 Tubetastic World Splashfest: pageId: 135258 @@ -181769,22 +176749,22 @@ Tulpa: pageId: 27677 steam: 331340 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\SOFTWARE\Encryptique\Tulpa\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Preferences/unity.Encryptique.Tulpa.plist}}' - - '{{Game data/saves|Windows|{{p|hkcu}}\SOFTWARE\Encryptique\Tulpa\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\Encryptique\\Tulpa\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Preferences/unity.Encryptique.Tulpa.plist}}" + - "{{Game data/saves|Windows|{{p|hkcu}}\\SOFTWARE\\Encryptique\\Tulpa\\}}" TumbleSeed: pageId: 54459 steam: 457890 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\StaticOceans\TumbleSeed\}}' - - '{{Game data/saves|Steam|{{P|steam}}\userdata\{{P|uid}}\457890\remote\playersavedata.tumbleseed}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\StaticOceans\\TumbleSeed\\}}" + - "{{Game data/saves|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\457890\\remote\\playersavedata.tumbleseed}}" Tumblestone: pageId: 42414 steam: 269710 templates: - - '{{Game data/config|Linux|{{p|xdgconfighome}}/unity3d/The Quantum Astrophysicists Guild/Tumblestone/prefs}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\Tumblestone\}}' - - '{{Game data/saves|Linux|{{p|xdgconfighome}}/unity3d/The Quantum Astrophysicists Guild/Tumblestone/*.local}}' + - "{{Game data/config|Linux|{{p|xdgconfighome}}/unity3d/The Quantum Astrophysicists Guild/Tumblestone/prefs}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\Tumblestone\\}}" + - "{{Game data/saves|Linux|{{p|xdgconfighome}}/unity3d/The Quantum Astrophysicists Guild/Tumblestone/*.local}}" Tumbleweed Express: pageId: 33432 steam: 372350 @@ -181796,8 +176776,8 @@ Tunche: - 1270470 - 1789240 templates: - - '{{Game data/saves|Windows|{{p|UserProfile}}\AppData\LocalLow\Leap Game Studios\Tunche\}}' -'Tunche: Arena': + - "{{Game data/saves|Windows|{{p|UserProfile}}\\AppData\\LocalLow\\Leap Game Studios\\Tunche\\}}" +"Tunche: Arena": pageId: 124315 steam: 906200 Tune the Tone: @@ -181806,22 +176786,22 @@ Tune the Tone: Tungulus: pageId: 65401 steam: 636470 -'Tunguska: The Visitation': +"Tunguska: The Visitation": gog: 1873234686 pageId: 170271 steam: 1601970 templates: - - '{{Game data/config|Windows|{{P|userprofile\appdata\locallow}}\RotoristWorkshop\Tunguska}}' - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\RotoristWorkshop\Tunguska}}' + - "{{Game data/config|Windows|{{P|userprofile\\appdata\\locallow}}\\RotoristWorkshop\\Tunguska}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\RotoristWorkshop\\Tunguska}}" Tunic: gog: 1716751705 pageId: 63652 steam: 553420 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\SOFTWARE\Andrew Shouldice\Secret Legend}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Andrew Shouldice\Secret Legend\SAVES\*.tunic}}' - - '{{Game data/saves|Microsoft Store|{{p|localappdata}}\Packages\Finji.TUNIC_tys0ffscxatjj\SystemAppData\wgs}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Andrew Shouldice/Secret Legend/SAVES}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\Andrew Shouldice\\Secret Legend}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Andrew Shouldice\\Secret Legend\\SAVES\\*.tunic}}" + - "{{Game data/saves|Microsoft Store|{{p|localappdata}}\\Packages\\Finji.TUNIC_tys0ffscxatjj\\SystemAppData\\wgs}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Andrew Shouldice/Secret Legend/SAVES}}" Tunnel B1: gog: 1241644416 pageId: 88154 @@ -181833,9 +176813,7 @@ Tunnel Rats: pageId: 41293 steam: 31300 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\My - Games\Tunnelrats\config.ini|{{p|userprofile\Documents}}\My Games\Tunnelrats\saves\options.cfg}} + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Tunnelrats\\config.ini|{{p|userprofile\\Documents}}\\My Games\\Tunnelrats\\saves\\options.cfg}}" Tunnel Runner VR: pageId: 63823 steam: 658390 @@ -181849,11 +176827,11 @@ Tunnel of Doom: gog: 2064116822 pageId: 173330 steam: 1361840 -'Tunnels & Trolls: Crusaders of Khazan': +"Tunnels & Trolls: Crusaders of Khazan": pageId: 73728 templates: - - '{{Game data/config|DOS|{{p|game}}\GCON.DAT}}' - - '{{Game data/saves|DOS|{{p|game}}\CROS.*|{{p|game}}\MIND.*|{{p|game}}\MOUT.*|{{p|game}}\PDAT.*}}' + - "{{Game data/config|DOS|{{p|game}}\\GCON.DAT}}" + - "{{Game data/saves|DOS|{{p|game}}\\CROS.*|{{p|game}}\\MIND.*|{{p|game}}\\MOUT.*|{{p|game}}\\PDAT.*}}" Tunnels of Despair: pageId: 78681 steam: 635900 @@ -181870,8 +176848,8 @@ Turbo Dismount: pageId: 37547 steam: 263760 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\SOFTWARE\Secret Exit Ltd.\TurboDismount\}}' - - '{{Game data/saves|Windows|{{P|hkcu}}\SOFTWARE\Secret Exit Ltd.\TurboDismount\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\SOFTWARE\\Secret Exit Ltd.\\TurboDismount\\}}" + - "{{Game data/saves|Windows|{{P|hkcu}}\\SOFTWARE\\Secret Exit Ltd.\\TurboDismount\\}}" Turbo Golf Racing: pageId: 178377 steam: 1324350 @@ -181880,8 +176858,8 @@ Turbo Overkill: pageId: 174870 steam: 1328350 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\SOFTWARE\Trigger Happy Interactive\Turbo Overkill}}' - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\Trigger Happy Interactive\Turbo Overkill\Saves}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\Trigger Happy Interactive\\Turbo Overkill}}" + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\Trigger Happy Interactive\\Turbo Overkill\\Saves}}" Turbo Plane: pageId: 144092 steam: 1107640 @@ -181906,7 +176884,7 @@ Turbo Tunnel: Turf Wars: pageId: 75009 steam: 713760 -'Turgul: Rapid Fighting': +"Turgul: Rapid Fighting": pageId: 51675 steam: 538700 Turing Tumble VR: @@ -181917,9 +176895,9 @@ Turmoil: pageId: 34489 steam: 361280 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\TurmoilSteam\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Gamious\Turmoil\}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/TurmoilSteam}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\TurmoilSteam\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Gamious\\Turmoil\\}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/TurmoilSteam}}" Turn: pageId: 58812 steam: 596370 @@ -181937,7 +176915,7 @@ Turn the Bridge: renamedFrom: - Turn the bridge steam: 934050 -'Turn the mirror, please.': +"Turn the mirror, please.": pageId: 120826 steam: 964050 Turn your Destiny: @@ -181950,31 +176928,29 @@ TurnOn: pageId: 34083 steam: 428220 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Brainy Studio LLC\TurnOn\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Brainy Studio LLC\\TurnOn\\}}" TurnTack: pageId: 123866 steam: 944710 Turner: pageId: 42325 steam: 499340 -'Turning Point: Fall of Liberty': +"Turning Point: Fall of Liberty": pageId: 20257 steam: 12720 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\My Games\Turning Point\TPGame\Config}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\My Games\Turning Point\TPGame\SaveData}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\My Games\\Turning Point\\TPGame\\Config}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\My Games\\Turning Point\\TPGame\\SaveData}}" Turnip Boy Commits Tax Evasion: gog: 1590785655 pageId: 156957 steam: 1205450 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\SOFTWARE\Snoozy Kazoo\Turnip Boy Commits Tax Evasion}}' - - '{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/Snoozy Kazoo/Turnip Boy Commits Tax Evasion/}}' - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Snoozy Kazoo\Turnip Boy Commits Tax Evasion}}' - - >- - {{Game data/saves|Microsoft - Store|{{P|localappdata}}\Packages\GraffitiGames.TurnipBoyCommitsTaxEvasion_zs4fqap7s3pxa\SystemAppData\wgs}} - - '{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/Snoozy Kazoo/Turnip Boy Commits Tax Evasion/}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\SOFTWARE\\Snoozy Kazoo\\Turnip Boy Commits Tax Evasion}}" + - "{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/Snoozy Kazoo/Turnip Boy Commits Tax Evasion/}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Snoozy Kazoo\\Turnip Boy Commits Tax Evasion}}" + - "{{Game data/saves|Microsoft Store|{{P|localappdata}}\\Packages\\GraffitiGames.TurnipBoyCommitsTaxEvasion_zs4fqap7s3pxa\\SystemAppData\\wgs}}" + - "{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/Snoozy Kazoo/Turnip Boy Commits Tax Evasion/}}" Turnip Boy Robs a Bank: pageId: 184635 steam: 2097230 @@ -181982,53 +176958,53 @@ Turnover: pageId: 45280 steam: 372250 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Turnover\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Documents/SaveGames/Turnover/}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/turnover/}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Turnover\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Documents/SaveGames/Turnover/}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/turnover/}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Turnover\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Documents/SaveGames/Turnover/}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/turnover/}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Turnover\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Documents/SaveGames/Turnover/}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/turnover/}}" Turok: pageId: 51221 templates: - - '{{Game data/config|Windows|{{P|game}}\TurokGame\Config}}' - - '{{Game data/saves|Windows|{{P|appdata}}\Touchstone\Turok}}' -'Turok 2: Seeds of Evil': + - "{{Game data/config|Windows|{{P|game}}\\TurokGame\\Config}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\Touchstone\\Turok}}" +"Turok 2: Seeds of Evil": pageId: 54178 -'Turok 2: Seeds of Evil (2017)': +"Turok 2: Seeds of Evil (2017)": gog: 1410768011 pageId: 58578 steam: 405830 templates: - - '{{Game data/config|Windows|{{p|game}}\kexengine.cfg}}' - - '{{Game data/config|Linux|{{p|game}}\kexengine.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\saves\}}' - - '{{Game data/saves|Linux|{{p|game}}\saves\}}' -'Turok 3: Shadow of Oblivion Remastered': + - "{{Game data/config|Windows|{{p|game}}\\kexengine.cfg}}" + - "{{Game data/config|Linux|{{p|game}}\\kexengine.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\saves\\}}" + - "{{Game data/saves|Linux|{{p|game}}\\saves\\}}" +"Turok 3: Shadow of Oblivion Remastered": gog: 1486389942 pageId: 189323 steam: 1996770 -'Turok: Dinosaur Hunter': +"Turok: Dinosaur Hunter": pageId: 30285 -'Turok: Dinosaur Hunter (2015)': +"Turok: Dinosaur Hunter (2015)": gog: 1444038183 pageId: 30173 steam: 405820 templates: - - '{{Game data/config|Windows|{{P|game}}\config.cfg}}' - - '{{Game data/config|OS X|{{P|game}}/config.cfg}}' - - '{{Game data/config|Linux|{{P|game}}/config.cfg}}' - - '{{Game data/saves|Windows|{{P|game}}\saves\}}' - - '{{Game data/saves|OS X|{{P|game}}/saves/}}' - - '{{Game data/saves|Linux|{{P|game}}/saves/}}' -'Turok: Escape from Lost Valley': + - "{{Game data/config|Windows|{{P|game}}\\config.cfg}}" + - "{{Game data/config|OS X|{{P|game}}/config.cfg}}" + - "{{Game data/config|Linux|{{P|game}}/config.cfg}}" + - "{{Game data/saves|Windows|{{P|game}}\\saves\\}}" + - "{{Game data/saves|OS X|{{P|game}}/saves/}}" + - "{{Game data/saves|Linux|{{P|game}}/saves/}}" +"Turok: Escape from Lost Valley": pageId: 141387 steam: 1078560 -'Turok: Evolution': +"Turok: Evolution": pageId: 54181 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Acclaim\Turok4\1.0\}}' - - '{{Game data/saves|Windows|{{p|game}}\save\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Acclaim\\Turok4\\1.0\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\save\\}}" Turret Architect: pageId: 54070 steam: 556070 @@ -182065,17 +177041,17 @@ Turtle Rush: Turtle VR: pageId: 156467 steam: 413750 -'Turtle: Voidrunner': +"Turtle: Voidrunner": pageId: 73811 steam: 729180 -Tusker's Number Adventure: +"Tusker's Number Adventure": pageId: 137466 steam: 1063240 Tux Racer: pageId: 59152 templates: - - '{{Game data/config|Windows|{{p|game}}\config\options.txt}}' - - '{{Game data/saves|Windows|{{p|game}}\config\}}' + - "{{Game data/config|Windows|{{p|game}}\\config\\options.txt}}" + - "{{Game data/saves|Windows|{{p|game}}\\config\\}}" Tux and Fanny: gog: 2140464279 pageId: 181431 @@ -182087,44 +177063,42 @@ Twelve Minutes: pageId: 139586 steam: 1097200 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\Nomada\Twelve Minutes\}}' - - >- - {{Game data/config|Microsoft - Store|{{P|localappdata}}\Packages\AnnapurnaInteractive.TwelveMinutes_c96c51jf6wkvm\SystemAppData\wgs\}} - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Nomada\Twelve Minutes\}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Nomada\\Twelve Minutes\\}}" + - "{{Game data/config|Microsoft Store|{{P|localappdata}}\\Packages\\AnnapurnaInteractive.TwelveMinutes_c96c51jf6wkvm\\SystemAppData\\wgs\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Nomada\\Twelve Minutes\\}}" TwelveSky 2 Classic: pageId: 56788 steam: 539650 Twerk it Girl!: pageId: 189913 steam: 2300070 -'Twice Reborn: a vampire visual novel': +"Twice Reborn: a vampire visual novel": pageId: 145514 steam: 1137100 Twickles: pageId: 71890 steam: 695110 templates: - - '{{Game data/config|Windows|{{P|game}}\Twickles_Data\settings.xml}}' - - '{{Game data/saves|Windows|{{P|game}}\Twickles_Data\savegame.dat}}' -'Twilight City: Love as a Cure': + - "{{Game data/config|Windows|{{P|game}}\\Twickles_Data\\settings.xml}}" + - "{{Game data/saves|Windows|{{P|game}}\\Twickles_Data\\savegame.dat}}" +"Twilight City: Love as a Cure": pageId: 45236 steam: 428270 Twilight Path: pageId: 113176 steam: 770110 -'Twilight Phenomena: Strange Menagerie': +"Twilight Phenomena: Strange Menagerie": pageId: 73221 renamedFrom: - - 'Twilight Phenomena: Strange Menagerie Collector''s Edition' + - "Twilight Phenomena: Strange Menagerie Collector's Edition" steam: 723960 -'Twilight Phenomena: The Incredible Show': +"Twilight Phenomena: The Incredible Show": pageId: 90239 steam: 826430 -'Twilight Phenomena: The Lodgers of House 13': +"Twilight Phenomena: The Lodgers of House 13": pageId: 59498 renamedFrom: - - 'Twilight Phenomena: The Lodgers of House 13 Collector''s Edition' + - "Twilight Phenomena: The Lodgers of House 13 Collector's Edition" steam: 609340 Twilight Spirits: pageId: 64455 @@ -182133,15 +177107,15 @@ Twilight Struggle: pageId: 34564 steam: 406290 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Playdek\TwilightStruggle\}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Playdek\TwilightStruggle\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Playdek\\TwilightStruggle\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Playdek\\TwilightStruggle\\}}" Twilight Town: pageId: 77006 steam: 486460 Twilight on Yulestead: pageId: 81759 steam: 789980 -Twilight's Last Gleaming: +"Twilight's Last Gleaming": pageId: 150028 steam: 1172760 Twin Blue Moons: @@ -182166,8 +177140,8 @@ Twin Mirror: pageId: 110948 steam: 1552810 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\LOA\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\LOA\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\LOA\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\LOA\\Saved\\SaveGames\\}}" Twin Peaks VR: pageId: 153588 steam: 1081040 @@ -182187,10 +177161,8 @@ Twin Sector: pageId: 20293 steam: 27900 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\TwinSector\claws.prefs}}' - - >- - {{Game - data/saves|Windows|{{p|userprofile\Documents}}\TwinSector\SaveGames|{{p|userprofile\Documents}}\TwinSector\Temp}} + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\TwinSector\\claws.prefs}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\TwinSector\\SaveGames|{{p|userprofile\\Documents}}\\TwinSector\\Temp}}" Twin Synth: pageId: 113822 steam: 926870 @@ -182218,21 +177190,19 @@ Twinkle Star Sprites: pageId: 42910 steam: 366280 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\twinspri\UserDefault.xml}}' - - >- - {{Game - data/saves|Windows|{{p|localappdata}}\twinspri\achievements|{{p|localappdata}}\twinspri\highscores|{{p|localappdata}}\twinspri\missionunlock}} + - "{{Game data/config|Windows|{{p|localappdata}}\\twinspri\\UserDefault.xml}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\twinspri\\achievements|{{p|localappdata}}\\twinspri\\highscores|{{p|localappdata}}\\twinspri\\missionunlock}}" Twinora: pageId: 151226 steam: 1178770 Twins of the Pasture: pageId: 64580 steam: 649580 -Twinsen's Little Big Adventure 2 Remastered: +"Twinsen's Little Big Adventure 2 Remastered": gog: 1842768333 pageId: 185991 steam: 2352230 -Twinsen's Little Big Adventure Remastered: +"Twinsen's Little Big Adventure Remastered": gog: 1597401098 pageId: 185989 steam: 2318070 @@ -182249,8 +177219,8 @@ Twistales: pageId: 189978 steam: 2279160 templates: - - '{{Game data/config|Windows|{{P|userprofile\appdata\locallow}}\catontree\Twistales\}}' - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\catontree\Twistales\}}' + - "{{Game data/config|Windows|{{P|userprofile\\appdata\\locallow}}\\catontree\\Twistales\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\catontree\\Twistales\\}}" Twisted: pageId: 54509 steam: 565330 @@ -182265,8 +177235,8 @@ Twisted Metal: Twisted Metal 2: pageId: 70042 templates: - - '{{Game data/config|Windows|{{p|hklm}}\SOFTWARE\{{p|wow64}}\Sony Interactive\Twisted Metal 2\1.01\}}' - - '{{Game data/saves|Windows|{{p|hklm}}\SOFTWARE\{{p|wow64}}\Sony Interactive\Twisted Metal 2\1.01\}}' + - "{{Game data/config|Windows|{{p|hklm}}\\SOFTWARE\\{{p|wow64}}\\Sony Interactive\\Twisted Metal 2\\1.01\\}}" + - "{{Game data/saves|Windows|{{p|hklm}}\\SOFTWARE\\{{p|wow64}}\\Sony Interactive\\Twisted Metal 2\\1.01\\}}" Twisted Sails: pageId: 90018 steam: 782630 @@ -182279,7 +177249,7 @@ Twisted Weapons: Twisted Worlds: pageId: 33744 steam: 464800 -'Twisted: Enhanced Edition': +"Twisted: Enhanced Edition": pageId: 67199 steam: 690410 Twisting Mower: @@ -182294,12 +177264,12 @@ Twisty Puzzle Simulator: Twisty Tumble (VR): pageId: 139684 steam: 1074990 -Twisty's Asylum Escapades: +"Twisty's Asylum Escapades": pageId: 14736 steam: 506760 templates: - - '{{Game data/config|Windows|{{P|game}}\TAE\saves}}' - - '{{Game data/saves|Windows|{{P|game}}\TAE\saves}}' + - "{{Game data/config|Windows|{{P|game}}\\TAE\\saves}}" + - "{{Game data/saves|Windows|{{P|game}}\\TAE\\saves}}" Twitch Place: pageId: 184328 steam: 2128670 @@ -182312,7 +177282,7 @@ Two Brothers: Two Clusters Cold Haven: pageId: 178992 steam: 1684760 -'Two Clusters: Kain': +"Two Clusters: Kain": pageId: 128045 steam: 1022920 Two Crude: @@ -182336,7 +177306,7 @@ Two For One: Two Guns: pageId: 134971 steam: 1071790 -Two Inns at Miller's Hollow: +"Two Inns at Miller's Hollow": pageId: 93879 steam: 750400 Two Kingdoms: @@ -182349,59 +177319,43 @@ Two Point Campus: pageId: 169175 steam: 1649080 templates: - - >- - {{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\Two Point Studios\Two Point - Campus\localpreferences.json|{{p|userprofile}}\AppData\LocalLow\Two Point Studios\Two Point Campus\Cloud}} - - >- - {{Game data/config|Linux|{{p|xdgconfighome}}/unity3d/Two Point Studios/Two Point - Campus/localpreferences.json|{{p|xdgconfighome}}/unity3d/Two Point Studios/Two Point - Hospital/Cloud/{{p|uid}}/preferences.json}} - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Two Point Studios\Two Point Campus\Cloud\}}' - - >- - {{Game data/saves|Microsoft - Store|{{p|localappdata}}\Packages\7904SEGAEuropeLtd.TwoPointCampus_zs7esxpzd8d5c\SystemAppData\wgs\}} - - '{{Game data/saves|Linux|{{p|xdgconfighome}}/unity3d/Two Point Studios/Two Point Campus/Cloud/{{p|uid}}/}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Two Point Studios\\Two Point Campus\\localpreferences.json|{{p|userprofile}}\\AppData\\LocalLow\\Two Point Studios\\Two Point Campus\\Cloud}}" + - "{{Game data/config|Linux|{{p|xdgconfighome}}/unity3d/Two Point Studios/Two Point Campus/localpreferences.json|{{p|xdgconfighome}}/unity3d/Two Point Studios/Two Point Hospital/Cloud/{{p|uid}}/preferences.json}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Two Point Studios\\Two Point Campus\\Cloud\\}}" + - "{{Game data/saves|Microsoft Store|{{p|localappdata}}\\Packages\\7904SEGAEuropeLtd.TwoPointCampus_zs7esxpzd8d5c\\SystemAppData\\wgs\\}}" + - "{{Game data/saves|Linux|{{p|xdgconfighome}}/unity3d/Two Point Studios/Two Point Campus/Cloud/{{p|uid}}/}}" Two Point Hospital: gog: 1940028140 gogSide: - - 1728595042 - - 1165805924 - - 1645659482 - - 1391914939 - - 1381172572 - - 2133637329 - 1087297863 + - 1165805924 - 1285087265 - 1351935818 - - 1841936124 + - 1381172572 + - 1391914939 - 1501002326 + - 1645659482 + - 1728595042 + - 1841936124 + - 2133637329 pageId: 81163 steam: 535930 steamSide: - 966690 - 1003310 - 1035020 + - 1096580 - 1144500 - 1196150 - - 1096580 - 1257570 - 1901750 templates: - - >- - {{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\Two Point Studios\Two Point - Hospital\localpreferences.json|{{p|userprofile}}\AppData\LocalLow\Two Point Studios\Two Point Hospital\Cloud}} - - >- - {{Game data/config|Microsoft Store|{{p|userprofile}}\AppData\LocalLow\Two Point Studios\Two Point - Hospital\localpreferences.json}} - - >- - {{Game data/config|Linux|{{p|xdgconfighome}}/unity3d/Two Point Studios/Two Point - Hospital/localpreferences.json|{{p|xdgconfighome}}/unity3d/Two Point Studios/Two Point - Hospital/Cloud/{{p|uid}}/preferences.json}} - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Two Point Studios\Two Point Hospital\Cloud\}}' - - >- - {{Game data/saves|Microsoft - Store|{{P|localappdata}}\Packages\7904SEGAEuropeLtd.TwoPointHospital-GamePass_zs7esxpzd8d5c\SystemAppData\wgs\{{P|uid}}}} - - '{{Game data/saves|Linux|{{p|xdgconfighome}}/unity3d/Two Point Studios/Two Point Hospital/Cloud/{{p|uid}}/}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Two Point Studios\\Two Point Hospital\\localpreferences.json|{{p|userprofile}}\\AppData\\LocalLow\\Two Point Studios\\Two Point Hospital\\Cloud}}" + - "{{Game data/config|Microsoft Store|{{p|userprofile}}\\AppData\\LocalLow\\Two Point Studios\\Two Point Hospital\\localpreferences.json}}" + - "{{Game data/config|Linux|{{p|xdgconfighome}}/unity3d/Two Point Studios/Two Point Hospital/localpreferences.json|{{p|xdgconfighome}}/unity3d/Two Point Studios/Two Point Hospital/Cloud/{{p|uid}}/preferences.json}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Two Point Studios\\Two Point Hospital\\Cloud\\}}" + - "{{Game data/saves|Microsoft Store|{{P|localappdata}}\\Packages\\7904SEGAEuropeLtd.TwoPointHospital-GamePass_zs7esxpzd8d5c\\SystemAppData\\wgs\\{{P|uid}}}}" + - "{{Game data/saves|Linux|{{p|xdgconfighome}}/unity3d/Two Point Studios/Two Point Hospital/Cloud/{{p|uid}}/}}" Two Princesses: pageId: 148809 renamedFrom: @@ -182426,9 +177380,9 @@ Two Worlds: steamSide: - 1920 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Reality Pump\TwoWorlds\|{{p|game}}\Parameters\AutoexecGame.con}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\Saved Games\Two Worlds Saves\}}' - - '{{Game data/saves|Linux|{{P|game}}/game/game/Game/Two Worlds Saves}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Reality Pump\\TwoWorlds\\|{{p|game}}\\Parameters\\AutoexecGame.con}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Saved Games\\Two Worlds Saves\\}}" + - "{{Game data/saves|Linux|{{P|game}}/game/game/Game/Two Worlds Saves}}" Two Worlds II: gog: 1207659214 gogSide: @@ -182442,10 +177396,10 @@ Two Worlds II: - 456220 - 456221 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Reality Pump\TwoWorlds2\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/TW2ConfigFolder/conf.xml}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\Saved Games\Two Worlds II\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Documents/TW2Profile/}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Reality Pump\\TwoWorlds2\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/TW2ConfigFolder/conf.xml}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Saved Games\\Two Worlds II\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Documents/TW2Profile/}}" Two Worlds II Castle Defense: gog: 1207661843 gogSide: @@ -182453,20 +177407,20 @@ Two Worlds II Castle Defense: pageId: 6744 steam: 7530 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Reality Pump\TwoWorlds2CastleDefense\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\TW2CD\}}' -'Two Worlds II HD: Call of the Tenebrae': + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Reality Pump\\TwoWorlds2CastleDefense\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\TW2CD\\}}" +"Two Worlds II HD: Call of the Tenebrae": pageId: 62564 steam: 626630 TwoPlay Mahjong: pageId: 127623 steam: 892460 -'Tycoon City: New York': +"Tycoon City: New York": pageId: 41380 steam: 9730 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Atari\Tycoon City - New York}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Atari\Tycoon City - New York}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Atari\\Tycoon City - New York}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Atari\\Tycoon City - New York}}" Tyd wag vir Niemand: pageId: 57958 steam: 589730 @@ -182476,7 +177430,7 @@ Tyde Pod Challenge: Tyler: pageId: 44996 steam: 390460 -'Tyler: Model 005': +"Tyler: Model 005": pageId: 56485 steam: 573370 Type: @@ -182491,14 +177445,14 @@ Type Fighter: Type Knight: pageId: 148509 steam: 1006220 -'Type:Rider': +"Type:Rider": pageId: 17164 steam: 258890 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Ex-Nihilo\Type:Rider}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/ExNihilo/Type:Rider/}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\TypeRider}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/ExNihilo/Type_Rider/savegame}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Ex-Nihilo\\Type:Rider}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/ExNihilo/Type:Rider/}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\TypeRider}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/ExNihilo/Type_Rider/savegame}}" Typefighters: pageId: 43556 steam: 434290 @@ -182506,8 +177460,8 @@ Typer Shark!: pageId: 16565 steam: 3450 templates: - - '{{Game data/config|Windows|{{P|hklm}}\Software\{{P|wow64}}\PopCap\TyperShark\}}' - - '{{Game data/saves|Windows|{{p|game}}\users\}}' + - "{{Game data/config|Windows|{{P|hklm}}\\Software\\{{P|wow64}}\\PopCap\\TyperShark\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\users\\}}" Typhoon Unit ~ Butterfly Requiem: pageId: 157488 steam: 1198710 @@ -182533,13 +177487,13 @@ Typing of the Undead: Typing with Jester: pageId: 39556 steam: 496520 -'Typoman: Revised': +"Typoman: Revised": pageId: 38021 steam: 336240 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Brainseed Factory\Typoman\}}' - - '{{Game data/saves|Windows|{{p|hkcu}}\Software\Brainseed Factory\Typoman\}}' -'Tyr: Chains of Valhalla': + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Brainseed Factory\\Typoman\\}}" + - "{{Game data/saves|Windows|{{p|hkcu}}\\Software\\Brainseed Factory\\Typoman\\}}" +"Tyr: Chains of Valhalla": pageId: 91560 steam: 609720 Tyran: @@ -182550,21 +177504,21 @@ Tyranny: gogSide: - 1183547197 - 1447126331 - - 1488990546 - - 1651767755 - 1456329658 + - 1488990546 - 1604832403 + - 1651767755 - 1994949603 pageId: 35036 steam: 362960 templates: - - '{{Game data/config|Windows|{{p|HKCU}}\Software\Obsidian Entertainment\Tyranny\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Tyranny/Saved Games/}}' - - '{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/Obsidian Entertainment/Tyranny}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\Saved Games\Tyranny\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Tyranny/Saved Games/}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/Tyranny/SavedGames/}}' -Tyrant's Blessing: + - "{{Game data/config|Windows|{{p|HKCU}}\\Software\\Obsidian Entertainment\\Tyranny\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Tyranny/Saved Games/}}" + - "{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/Obsidian Entertainment/Tyranny}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Saved Games\\Tyranny\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Tyranny/Saved Games/}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/Tyranny/SavedGames/}}" +"Tyrant's Blessing": gog: 1565239305 pageId: 180535 steam: 1520760 @@ -182575,21 +177529,21 @@ Tyrian: gog: 1207658901 pageId: 13139 templates: - - '{{Game data/config|DOS|{{p|game}}\TYRIAN.CFG}}' - - '{{Game data/saves|DOS|{{p|game}}\TYRIAN.SAV}}' + - "{{Game data/config|DOS|{{p|game}}\\TYRIAN.CFG}}" + - "{{Game data/saves|DOS|{{p|game}}\\TYRIAN.SAV}}" Tyto Ecology: pageId: 43610 steam: 453750 Tyto Online: pageId: 53666 steam: 544290 -'Tzar: The Burden of the Crown': +"Tzar: The Burden of the Crown": gog: 1207659252 pageId: 19694 steam: 825730 templates: - - '{{Game data/config|Windows|{{p|game}}\tzar.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\Save}}' + - "{{Game data/config|Windows|{{p|game}}\\tzar.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\Save}}" Tzompantli: pageId: 52924 steam: 542240 @@ -182605,16 +177559,16 @@ U-Boats: U.B Funkeys: pageId: 66863 templates: - - '{{Game data/config|Windows|{{p|game}}\RadicaGame\data\system\options.rdf | }}' - - '{{Game data/saves|Windows|{{p|game}}\RadicaGame\data\}}' + - "{{Game data/config|Windows|{{p|game}}\\RadicaGame\\data\\system\\options.rdf | }}" + - "{{Game data/saves|Windows|{{p|game}}\\RadicaGame\\data\\}}" U.F.O - Unfortunately Fortunate Organisms: pageId: 58569 steam: 586320 -'U.S. Most Wanted: Nowhere To Hide': +"U.S. Most Wanted: Nowhere To Hide": pageId: 66554 templates: - - '{{Game data/config|Windows|{{P|game}}\MW\Cfg\console.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\MW\Save}}' + - "{{Game data/config|Windows|{{P|game}}\\MW\\Cfg\\console.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\MW\\Save}}" UAYEB: pageId: 58702 steam: 589220 @@ -182623,8 +177577,8 @@ UBOAT: pageId: 39606 steam: 494840 templates: - - '{{Game data/config|Windows|{{P|userprofile}}\AppData\LocalLow\Deep Water Studio\UBOAT\settings.ubt}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Deep Water Studio\UBOAT\Saves}}' + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Deep Water Studio\\UBOAT\\settings.ubt}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Deep Water Studio\\UBOAT\\Saves}}" UEFA Challenge: pageId: 155196 UEFA Champions League 2004-2005: @@ -182634,7 +177588,7 @@ UEFA Champions League 2006-2007: UEFA Champions League Season 1999/2000: pageId: 106269 templates: - - '{{Game data/saves|Windows|{{P|game}}\Saves}}' + - "{{Game data/saves|Windows|{{P|game}}\\Saves}}" UEFA Champions League Season 2001/2002: pageId: 92487 UEFA Euro 2000: @@ -182642,8 +177596,8 @@ UEFA Euro 2000: UEFA Euro 2004: pageId: 18915 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\UEFA EURO 2004\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\UEFA EURO 2004\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\UEFA EURO 2004\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\UEFA EURO 2004\\}}" UEFA Euro 2008: pageId: 89186 UEFA Euro 96: @@ -182651,11 +177605,11 @@ UEFA Euro 96: UEFA Manager 2000: pageId: 158065 templates: - - '{{Game data/saves|Windows|{{P|game}}\Data\Saves}}' + - "{{Game data/saves|Windows|{{P|game}}\\Data\\Saves}}" UFHO2: pageId: 47655 steam: 348840 -'UFO : Brawlers from Beyond': +"UFO : Brawlers from Beyond": pageId: 151149 steam: 1141070 UFO Combat 2000: @@ -182667,12 +177621,12 @@ UFO ESCAPE: UFO No!: pageId: 185810 steam: 2182940 -'UFO Online: Invasion': +"UFO Online: Invasion": pageId: 33238 steam: 442810 templates: - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\UFO Online\}}' -'UFO Robot Grendizer: The Feast of the Wolves': + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\UFO Online\\}}" +"UFO Robot Grendizer: The Feast of the Wolves": gog: 1588078253 gogSide: - 1972628381 @@ -182681,43 +177635,39 @@ UFO No!: steamSide: - 2438721 templates: - - >- - {{Game data/config|Windows|{{P|userprofile\appdata\locallow}}\Microids\UFO ROBOT GRENDIZER - The Feast of the - Wolves\settings\}} - - >- - {{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Microids\UFO ROBOT GRENDIZER - The Feast of the - Wolves\savegames\}} + - "{{Game data/config|Windows|{{P|userprofile\\appdata\\locallow}}\\Microids\\UFO ROBOT GRENDIZER - The Feast of the Wolves\\settings\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Microids\\UFO ROBOT GRENDIZER - The Feast of the Wolves\\savegames\\}}" UFO Simulator Control Master: pageId: 127635 steam: 848070 -'UFO on Tape: First Contact': +"UFO on Tape: First Contact": pageId: 152174 -'UFO: Afterlight': +"UFO: Afterlight": gog: 1207658869 pageId: 14455 steam: 237950 templates: - - '{{Game data/config|Windows|{{p|game}}\Profiles\Options.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\Profiles\{{p|uid}}}}' -'UFO: Aftermath': + - "{{Game data/config|Windows|{{p|game}}\\Profiles\\Options.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\Profiles\\{{p|uid}}}}" +"UFO: Aftermath": gog: 1207658815 pageId: 14452 steam: 292160 templates: - - '{{Game data/config|Windows|{{P|game}}\config.cfg|{{P|game}}\Profiles\{{P|uid}}\UFOOptions.txt}}' - - '{{Game data/saves|Windows|{{P|game}}\Profiles\{{P|uid}}\Saves}}' -'UFO: Aftershock': + - "{{Game data/config|Windows|{{P|game}}\\config.cfg|{{P|game}}\\Profiles\\{{P|uid}}\\UFOOptions.txt}}" + - "{{Game data/saves|Windows|{{P|game}}\\Profiles\\{{P|uid}}\\Saves}}" +"UFO: Aftershock": gog: 1207658816 pageId: 3837 steam: 289500 templates: - - '{{Game data/config|Windows|{{p|game}}\Profiles\{{p|uid}}\options.txt}}' - - '{{Game data/saves|Windows|{{p|game}}\Profiles\{{p|uid}}\Saves\}}' -'UFO: Extraterrestrials': + - "{{Game data/config|Windows|{{p|game}}\\Profiles\\{{p|uid}}\\options.txt}}" + - "{{Game data/saves|Windows|{{p|game}}\\Profiles\\{{p|uid}}\\Saves\\}}" +"UFO: Extraterrestrials": pageId: 41170 steam: 37030 templates: - - '{{Game data/config|Windows|{{p|game}}\DATA\ufo-et.ini}}' + - "{{Game data/config|Windows|{{p|game}}\\DATA\\ufo-et.ini}}" UFOGEN: pageId: 130046 steam: 1041020 @@ -182729,12 +177679,12 @@ UFactory: UK Truck Simulator: pageId: 26821 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\UK Truck Simulator\}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\UK Truck Simulator\save\}}' + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\UK Truck Simulator\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\UK Truck Simulator\\save\\}}" UKR: pageId: 67601 steam: 691800 -'ULTIRE: Balls Out': +"ULTIRE: Balls Out": pageId: 145154 steam: 889160 UMA-War VR: @@ -182746,7 +177696,7 @@ UNBREAKER: UNDER the SAND - a road trip game: pageId: 134797 steam: 1062960 -'UNDERWATER: STAY ALIVE': +"UNDERWATER: STAY ALIVE": pageId: 127309 steam: 1010120 UNFAIR: @@ -182758,7 +177708,7 @@ UNI: UNI TURRET: pageId: 132100 steam: 1050430 -'UNSUBSCRIBED: THE GAME': +"UNSUBSCRIBED: THE GAME": pageId: 135223 steam: 1072950 URO: @@ -182767,14 +177717,14 @@ URO: URO2: pageId: 149971 steam: 1161800 -URUZ "Return of The Er Kishi": +"URUZ \"Return of The Er Kishi\"": pageId: 150842 steam: 931000 US Racer: pageId: 88293 templates: - - '{{Game data/config|Windows|{{p|game}}}}' - - '{{Game data/saves|Windows|{{p|game}}\Common}}' + - "{{Game data/config|Windows|{{p|game}}}}" + - "{{Game data/saves|Windows|{{p|game}}\\Common}}" US and THEM: pageId: 50554 steam: 281350 @@ -182784,7 +177734,7 @@ USA 2020: USAGIRI: pageId: 151105 steam: 1153950 -'USC: Counterforce': +"USC: Counterforce": pageId: 189967 steam: 1574870 USSR 2021: @@ -182814,7 +177764,7 @@ Ubermosh: pageId: 37804 steam: 357070 templates: - - '{{Game data/saves|Windows|{{P|localappdata}}\UBERMOSH\}}' + - "{{Game data/saves|Windows|{{P|localappdata}}\\UBERMOSH\\}}" Ubermosh Vol. 3: pageId: 41609 steam: 515570 @@ -182824,43 +177774,43 @@ Ubermosh Vol. 5: Ubermosh Vol. 7: pageId: 128103 steam: 1029980 -'Ubermosh: Black': +"Ubermosh: Black": pageId: 37209 steam: 444940 -'Ubermosh: Omega': +"Ubermosh: Omega": pageId: 150434 renamedFrom: - - 'UBERMOSH:OMEGA' + - "UBERMOSH:OMEGA" steam: 1181000 -'Ubermosh: Santicide': +"Ubermosh: Santicide": pageId: 102769 steam: 898450 templates: - - '{{Game data/saves|Windows|{{P|localappdata}}\UBERMOSH_SANTICIDE\}}' -'Ubermosh: Wraith': + - "{{Game data/saves|Windows|{{P|localappdata}}\\UBERMOSH_SANTICIDE\\}}" +"Ubermosh: Wraith": pageId: 57198 steam: 586350 Ubinota: pageId: 37499 steam: 323630 templates: - - '{{Game data/saves|Windows|{{P|game}}/data/slot0.save}}' + - "{{Game data/saves|Windows|{{P|game}}/data/slot0.save}}" Uebergame: pageId: 45898 steam: 391780 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Uebergame\}}' - - '{{Game data/config|Linux|{{p|userprofile\Documents}}\My Games\Uebergame\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Uebergame\\}}" + - "{{Game data/config|Linux|{{p|userprofile\\Documents}}\\My Games\\Uebergame\\}}" Ufflegrim: pageId: 136981 steam: 1072800 -'UfoPilot: Astro-Creeps Elite': +"UfoPilot: Astro-Creeps Elite": pageId: 48000 steam: 367660 Uganda Know De Way: pageId: 81452 steam: 788850 -'UglyDolls: An Imperfect Adventure': +"UglyDolls: An Imperfect Adventure": pageId: 132613 steam: 895450 Uh Oh Bartender: @@ -182878,137 +177828,129 @@ Ukrainian Ball in Search of Gas: Ukrainian Ninja: pageId: 49065 steam: 339000 -'Ulama: Arena of the Gods': +"Ulama: Arena of the Gods": pageId: 60073 steam: 529140 Ultim@te Race Pro: pageId: 89138 templates: - - '{{Game data/config|Windows|{{p|hklm}}\SOFTWARE\WOW6432Node\MicroProse\Ultim@te Race Pro}}' + - "{{Game data/config|Windows|{{p|hklm}}\\SOFTWARE\\WOW6432Node\\MicroProse\\Ultim@te Race Pro}}" Ultima Defesa: pageId: 149769 steam: 1146590 -'Ultima I: The First Age of Darkness': +"Ultima I: The First Age of Darkness": gog: 1207662593 gogSide: - 1207658961 pageId: 14008 templates: - - '{{Game data/saves|DOS|{{p|game}}\PLAYER*.U1}}' -'Ultima II: The Revenge of the Enchantress': + - "{{Game data/saves|DOS|{{p|game}}\\PLAYER*.U1}}" +"Ultima II: The Revenge of the Enchantress": gog: 1207662603 gogSide: - 1207658961 pageId: 14010 templates: - - '{{Game data/saves|DOS|{{p|game}}\PLAYER}}' -'Ultima III: Exodus': + - "{{Game data/saves|DOS|{{p|game}}\\PLAYER}}" +"Ultima III: Exodus": gog: 1207662613 gogSide: - 1207658961 pageId: 14012 templates: - - '{{Game data/saves|DOS|{{p|game}}\PARTY.ULT|{{p|game}}\ROSTER.ULT|{{p|game}}\SOSARIA.ULT}}' -'Ultima IV: Quest of the Avatar': + - "{{Game data/saves|DOS|{{p|game}}\\PARTY.ULT|{{p|game}}\\ROSTER.ULT|{{p|game}}\\SOSARIA.ULT}}" +"Ultima IV: Quest of the Avatar": gog: 1207658962 pageId: 7344 templates: - - '{{Game data/saves|DOS|{{p|game}}\*.SAV}}' -'Ultima IX: Ascension': + - "{{Game data/saves|DOS|{{p|game}}\\*.SAV}}" +"Ultima IX: Ascension": gog: 1207659093 pageId: 14110 templates: - - '{{Game data/config|Windows|{{p|game}}\Options.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\savegame\}}' + - "{{Game data/config|Windows|{{p|game}}\\Options.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\savegame\\}}" Ultima Online: pageId: 183672 -'Ultima Underworld II: Labyrinth of Worlds': +"Ultima Underworld II: Labyrinth of Worlds": gog: 1207662473 gogSide: - 1207658937 pageId: 5109 templates: - - '{{Game data/saves|DOS|{{p|game}}\SAVE*\}}' - - >- - {{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Boxer/Gamebox - States/com.gog.ultima-underworld-1+2/Current.boxerstate/C Ultima Underworld 1 and 2.harddisk/UNDEROM2}} -'Ultima Underworld: The Stygian Abyss': + - "{{Game data/saves|DOS|{{p|game}}\\SAVE*\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Boxer/Gamebox States/com.gog.ultima-underworld-1+2/Current.boxerstate/C Ultima Underworld 1 and 2.harddisk/UNDEROM2}}" +"Ultima Underworld: The Stygian Abyss": gog: 1207662463 gogSide: - 1207658937 pageId: 5108 templates: - - '{{Game data/saves|DOS|{{p|game}}\SAVE*\}}' - - >- - {{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Boxer/Gamebox - States/com.gog.ultima-underworld-1+2/Current.boxerstate/C Ultima Underworld 1 and 2.harddisk/UNDEROM1}} -'Ultima V: Warriors of Destiny': + - "{{Game data/saves|DOS|{{p|game}}\\SAVE*\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Boxer/Gamebox States/com.gog.ultima-underworld-1+2/Current.boxerstate/C Ultima Underworld 1 and 2.harddisk/UNDEROM1}}" +"Ultima V: Warriors of Destiny": gog: 1207662443 gogSide: - 1207658965 pageId: 14014 templates: - - '{{Game data/saves|DOS|{{p|game}}\SAVED.GAM}}' -'Ultima VI: The False Prophet': + - "{{Game data/saves|DOS|{{p|game}}\\SAVED.GAM}}" +"Ultima VI: The False Prophet": gog: 1207662453 gogSide: - 1207658965 pageId: 14020 templates: - - '{{Game data/config|DOS|{{p|game}}\CONFIG.U6}}' - - '{{Game data/saves|DOS|{{p|game}}\SAVEGAME\}}' -'Ultima VII Part Two: Serpent Isle': + - "{{Game data/config|DOS|{{p|game}}\\CONFIG.U6}}" + - "{{Game data/saves|DOS|{{p|game}}\\SAVEGAME\\}}" +"Ultima VII Part Two: Serpent Isle": gog: 1207662633 pageId: 14063 templates: - - '{{Game data/saves|DOS|{{p|game}}\GAME**.U7}}' - - >- - {{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Boxer/Gamebox - States/com.gog.ultima-7-the-complete-edition/Current.boxerstate/C.harddisk/U7/serpent}} -'Ultima VII: The Black Gate': + - "{{Game data/saves|DOS|{{p|game}}\\GAME**.U7}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Boxer/Gamebox States/com.gog.ultima-7-the-complete-edition/Current.boxerstate/C.harddisk/U7/serpent}}" +"Ultima VII: The Black Gate": gog: 1207662623 gogSide: - 1207658984 pageId: 14061 templates: - - '{{Game data/saves|DOS|{{p|game}}\GAME**.U7}}' - - >- - {{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Boxer/Gamebox - States/com.gog.ultima-7-the-complete-edition/Current.boxerstate/C.harddisk/U7/ultima7}} -'Ultima VIII: Pagan': + - "{{Game data/saves|DOS|{{p|game}}\\GAME**.U7}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Boxer/Gamebox States/com.gog.ultima-7-the-complete-edition/Current.boxerstate/C.harddisk/U7/ultima7}}" +"Ultima VIII: Pagan": gog: 1207659015 pageId: 14078 templates: - - '{{Game data/config|DOS|{{p|game}}\U8.INI}}' - - '{{Game data/saves|DOS|{{p|game}}\SAVEGAME\}}' -'Ultima Worlds of Adventure 2: Martian Dreams': + - "{{Game data/config|DOS|{{p|game}}\\U8.INI}}" + - "{{Game data/saves|DOS|{{p|game}}\\SAVEGAME\\}}" +"Ultima Worlds of Adventure 2: Martian Dreams": gog: 1207659062 pageId: 13755 templates: - - '{{Game data/saves|DOS|{{p|game}}\SAVEGAME\}}' + - "{{Game data/saves|DOS|{{p|game}}\\SAVEGAME\\}}" Ultimagus: pageId: 57327 steam: 575360 -'Ultimate ADOM: Caverns of Chaos': +"Ultimate ADOM: Caverns of Chaos": gog: 1341727167 pageId: 169770 steam: 1266820 -'Ultimate Admiral: Age of Sail': +"Ultimate Admiral: Age of Sail": pageId: 135933 steam: 1069650 -'Ultimate Admiral: Dreadnoughts': +"Ultimate Admiral: Dreadnoughts": pageId: 151399 steam: 1069660 templates: - - '{{Game data/config|Windows|{{P|userprofile\appdata\locallow}}\Game Labs\Ultimate Admiral Dreadnoughts\}}' - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Game Labs\Ultimate Admiral Dreadnoughts\}}' + - "{{Game data/config|Windows|{{P|userprofile\\appdata\\locallow}}\\Game Labs\\Ultimate Admiral Dreadnoughts\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Game Labs\\Ultimate Admiral Dreadnoughts\\}}" Ultimate Arena (AceGamer): pageId: 38710 steam: 436260 Ultimate Arena (Triverske): pageId: 50992 steam: 385240 -'Ultimate Arena: Showdown': +"Ultimate Arena: Showdown": pageId: 80502 steam: 757160 Ultimate Body Blows: @@ -183023,12 +177965,10 @@ Ultimate Chicken Horse: steamSide: - 493070 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Clever Endeavour Games\Ultimate Chicken Horse\}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Clever Endeavour Games/Ultimate Chicken Horse/}}' - - >- - {{Game data/saves|Windows|{{p|USERPROFILE}}\AppData\LocalLow\Clever Endeavour Games\Ultimate Chicken - Horse\saveData.uch}} - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Clever Endeavour Games/Ultimate Chicken Horse/}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Clever Endeavour Games\\Ultimate Chicken Horse\\}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Clever Endeavour Games/Ultimate Chicken Horse/}}" + - "{{Game data/saves|Windows|{{p|USERPROFILE}}\\AppData\\LocalLow\\Clever Endeavour Games\\Ultimate Chicken Horse\\saveData.uch}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Clever Endeavour Games/Ultimate Chicken Horse/}}" Ultimate Coaster X: pageId: 129647 steam: 734330 @@ -183056,28 +177996,28 @@ Ultimate Fishing Simulator: pageId: 59683 steam: 468920 templates: - - '{{Game data/config|GOG.com|{{P|hkcu}}\Software\PlayWay\UltimateFishing_GOG\}}' - - '{{Game data/saves|GOG.com|{{P|userprofile}}\AppData\LocalLow\PlayWay\UltimateFishing_GOG}}' + - "{{Game data/config|GOG.com|{{P|hkcu}}\\Software\\PlayWay\\UltimateFishing_GOG\\}}" + - "{{Game data/saves|GOG.com|{{P|userprofile}}\\AppData\\LocalLow\\PlayWay\\UltimateFishing_GOG}}" Ultimate Fishing Simulator VR: pageId: 127868 steam: 1024010 Ultimate Flickball Arena: pageId: 145415 steam: 1146710 -'Ultimate General: Civil War': +"Ultimate General: Civil War": gog: 2129139688 pageId: 53283 steam: 502520 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Game Labs\Ultimate General Civil War\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Game Labs\Ultimate General Civil War\Save }}' -'Ultimate General: Gettysburg': + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Game Labs\\Ultimate General Civil War\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Game Labs\\Ultimate General Civil War\\Save }}" +"Ultimate General: Gettysburg": gog: 1420648479 pageId: 18039 steam: 306660 templates: - - '{{Game data/config|Linux|{{p|xdgconfighome}}/unity3d/Game Labs/Ultimate General Gettysburg/}}' - - '{{Game data/saves|Linux|{{p|xdgconfighome}}/unity3d/Game Labs/Ultimate General Gettysburg/Saves/}}' + - "{{Game data/config|Linux|{{p|xdgconfighome}}/unity3d/Game Labs/Ultimate General Gettysburg/}}" + - "{{Game data/saves|Linux|{{p|xdgconfighome}}/unity3d/Game Labs/Ultimate General Gettysburg/Saves/}}" Ultimate Hardbass Defence: pageId: 121016 steam: 915460 @@ -183091,8 +178031,8 @@ Ultimate Marvel vs. Capcom 3: pageId: 54547 steam: 357190 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\CAPCOM\ULTIMATE MARVEL VS. CAPCOM 3}}' - - '{{Game data/saves|Windows|{{p|Steam}}\userdata\{{p|uid}}\357190\remote\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\CAPCOM\\ULTIMATE MARVEL VS. CAPCOM 3}}" + - "{{Game data/saves|Windows|{{p|Steam}}\\userdata\\{{p|uid}}\\357190\\remote\\}}" Ultimate Paintball Challenge: pageId: 89851 Ultimate Panic Flight: @@ -183106,14 +178046,12 @@ Ultimate Racing 2D: steam: 808080 Ultimate Ride: pageId: 170612 -'Ultimate Rivals: The Court': +"Ultimate Rivals: The Court": pageId: 169825 steam: 1539400 templates: - - >- - {{Game data/saves|OS X|{{p|osxhome}}/Library/Containers/Ultimate Rivals - The Court/Data/Library/Application - Support/Epic/RivalsBasketball/Saved/SaveGames}} -'Ultimate Rivals: The Rink': + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Containers/Ultimate Rivals - The Court/Data/Library/Application Support/Epic/RivalsBasketball/Saved/SaveGames}}" +"Ultimate Rivals: The Rink": pageId: 154627 steam: 1540240 Ultimate Rock Crawler: @@ -183135,16 +178073,16 @@ Ultimate Space Commando: pageId: 47929 steam: 341910 templates: - - '{{Game data/config| Windows | {{p|steam}}\steamapps\common\Ultimate Space Commando |}}' - - '{{Game data/saves| Windows | {{p|steam}}\steamapps\common\Ultimate Space Commando\data_user\saves_camp |}}' + - "{{Game data/config| Windows | {{p|steam}}\\steamapps\\common\\Ultimate Space Commando |}}" + - "{{Game data/saves| Windows | {{p|steam}}\\steamapps\\common\\Ultimate Space Commando\\data_user\\saves_camp |}}" Ultimate Spider Hero: pageId: 80515 steam: 777400 Ultimate Spider-Man: pageId: 5617 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\SOFTWARE\Activision\Ultimate Spider-Man\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Activision\Ultimate Spider-Man\Save\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\Activision\\Ultimate Spider-Man\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Activision\\Ultimate Spider-Man\\Save\\}}" Ultimate Spinner Simulator - Unstress Yourself: pageId: 74173 steam: 730030 @@ -183160,14 +178098,14 @@ Ultimate Tic-Tac-Toe: Ultimate War: pageId: 98914 steam: 888250 -'Ultimate Word Search 2: Letter Boxed': +"Ultimate Word Search 2: Letter Boxed": pageId: 36151 steam: 514490 Ultimate Yahtzee: pageId: 7462 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\*.yat}}' + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\*.yat}}" Ultimate Zombie Defense: pageId: 156436 steam: 1035510 @@ -183177,25 +178115,25 @@ Ultimo Reino: Ultimus bellum: pageId: 74530 steam: 566430 -'Ultionus: A Tale of Petty Revenge': +"Ultionus: A Tale of Petty Revenge": pageId: 50626 steam: 279160 Ultra Age: pageId: 178432 steam: 1683100 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\PU\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\PU\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\PU\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\PU\\Saved\\SaveGames\\}}" Ultra Fight Da ! Kyanta 2: pageId: 135859 steam: 1026840 templates: - - '{{Game data/config|Windows|{{p|game}}\Options.data}}' - - '{{Game data/saves|Windows|{{p|game}}\Save.data|{{p|game}}\Save2.data}}' + - "{{Game data/config|Windows|{{p|game}}\\Options.data}}" + - "{{Game data/saves|Windows|{{p|game}}\\Save.data|{{p|game}}\\Save2.data}}" Ultra Hardcore: pageId: 82862 steam: 793720 -'Ultra Off-Road Simulator 2019: Alaska': +"Ultra Off-Road Simulator 2019: Alaska": pageId: 126025 steam: 957050 Ultra Pig: @@ -183228,8 +178166,8 @@ Ultraball: Ultrabots: pageId: 73065 templates: - - '{{Game data/config|DOS|{{p|game}}\*.CFG}}' - - '{{Game data/saves|DOS|{{p|game}}\*.LOG}}' + - "{{Game data/config|DOS|{{p|game}}\\*.CFG}}" + - "{{Game data/saves|DOS|{{p|game}}\\*.LOG}}" Ultrabugs: pageId: 132710 steam: 864930 @@ -183244,8 +178182,8 @@ Ultrakill: steamSide: - 1230260 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Hakita\ULTRAKILL}}' - - '{{Game data/saves|Windows|{{P|steam}}\steamapps\common\ULTRAKILL\Saves}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Hakita\\ULTRAKILL}}" + - "{{Game data/saves|Windows|{{P|steam}}\\steamapps\\common\\ULTRAKILL\\Saves}}" Ultramegon: pageId: 53122 steam: 554610 @@ -183256,18 +178194,16 @@ Ultratron: pageId: 13210 steam: 219190 templates: - - '{{Game data/config|Linux|{{p|linuxhome}}/.ultratron/}}' - - '{{Game data/config|Steam|{{p|steam}}/userdata/{{p|uid}}/219190/remote/.ultratron_3.03/}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.ultratron/}}' - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/219190/remote/.ultratron_3.03/}}' + - "{{Game data/config|Linux|{{p|linuxhome}}/.ultratron/}}" + - "{{Game data/config|Steam|{{p|steam}}/userdata/{{p|uid}}/219190/remote/.ultratron_3.03/}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.ultratron/}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/219190/remote/.ultratron_3.03/}}" Ultrawings: pageId: 63153 steam: 639130 templates: - - >- - {{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\Bit Planet Games - LLC\Ultrawings\Unity\local.a93cf0fcbd35df846b0b2f6b8d66ee45\Analytics\config}} - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Bit Planet Games LLC\Ultrawings\FloppyGreen.dat}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Bit Planet Games LLC\\Ultrawings\\Unity\\local.a93cf0fcbd35df846b0b2f6b8d66ee45\\Analytics\\config}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Bit Planet Games LLC\\Ultrawings\\FloppyGreen.dat}}" Ultrawings Flat: pageId: 124415 steam: 974620 @@ -183278,21 +178214,21 @@ Ultreïa: pageId: 174102 steam: 1284870 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Greewook\Ultreïa}}' - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Greewook\Ultreïa\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Greewook\\Ultreïa}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Greewook\\Ultreïa\\}}" Ulxrd: pageId: 102287 steam: 898950 Ulysses and the Golden Fleece: pageId: 147157 -'Uma Musume: Pretty Derby': +"Uma Musume: Pretty Derby": pageId: 167870 renamedFrom: - Uma Musume Pretty Derby templates: - - '{{Game data/config|Windows|{{p|hkcu}}\SOFTWARE\Cygames\umamusume\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Cygames\umamusume\d\SaveData.db}}' -'Umbra: Shadow of Death': + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\Cygames\\umamusume\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Cygames\\umamusume\\d\\SaveData.db}}" +"Umbra: Shadow of Death": pageId: 45204 steam: 421180 Umbraseal: @@ -183308,7 +178244,7 @@ Umbrella Corps: - 450000 - 450001 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\CAPCOM\UMBRELLA CORPS\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\CAPCOM\\UMBRELLA CORPS\\}}" Umfend: pageId: 121186 steam: 779090 @@ -183316,39 +178252,39 @@ Umihara Kawase: pageId: 30590 steam: 384690 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\UmiharaKawase\hidconf.ini}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\UmiharaKawase\UmiFst00.bin}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\UmiharaKawase\\hidconf.ini}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\UmiharaKawase\\UmiFst00.bin}}" Umihara Kawase BaZooKa!: pageId: 161432 steam: 1271620 templates: - - '{{Game data/saves|Windows|{{P|steam}}\userdata\{{P|uid}}\1271620\remote\ukb_conf\sd_sys.sav}}' + - "{{Game data/saves|Windows|{{P|steam}}\\userdata\\{{P|uid}}\\1271620\\remote\\ukb_conf\\sd_sys.sav}}" Umihara Kawase Fresh!: pageId: 162319 steam: 1272680 templates: - - '{{Game data/saves|Windows|{{P|steam}}\userdata\{{P|uid}}\1272680\remote\ukf_conf\sd_sys.sav}}' + - "{{Game data/saves|Windows|{{P|steam}}\\userdata\\{{P|uid}}\\1272680\\remote\\ukf_conf\\sd_sys.sav}}" Umihara Kawase Shun: pageId: 45503 steam: 384700 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\UmiharaKawase Shun SE\hidconf.ini}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\UmiharaKawase Shun SE\UmiShun00.bin}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\UmiharaKawase Shun SE\\hidconf.ini}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\UmiharaKawase Shun SE\\UmiShun00.bin}}" Umineko When They Cry - Answer Arcs: gog: 1654193651 pageId: 74690 steam: 639490 templates: - - '{{Game data/saves|Windows|{{p|game}}\saves\ | {{p|game}}\mysav\}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.umineko8final}}' + - "{{Game data/saves|Windows|{{p|game}}\\saves\\ | {{p|game}}\\mysav\\}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.umineko8final}}" Umineko When They Cry - Question Arcs: gog: 1343222065 pageId: 37263 steam: 406550 templates: - - '{{Game data/saves|Windows|{{p|game}}\saves\ | {{p|game}}\mysav\}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.Umineko4hdz}}' -'Umineko: Golden Fantasia': + - "{{Game data/saves|Windows|{{p|game}}\\saves\\ | {{p|game}}\\mysav\\}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.Umineko4hdz}}" +"Umineko: Golden Fantasia": pageId: 77211 steam: 550340 Umiro: @@ -183361,8 +178297,8 @@ Umurangi Generation: pageId: 161467 steam: 1223500 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\SOFTWARE\ORIGAME DIGITAL\Umurangi Generation}}' - - '{{Game data/saves|Windows|{{p|appdata}}\LocalLow\ORIGAME DIGITAL\Umurangi Generation\*.FDSAVE}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\ORIGAME DIGITAL\\Umurangi Generation}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\LocalLow\\ORIGAME DIGITAL\\Umurangi Generation\\*.FDSAVE}}" Un Pas Fragile: pageId: 141222 steam: 1093520 @@ -183379,13 +178315,13 @@ UnEpic: - Unepic steam: 233980 templates: - - '{{Game data/config|Windows|{{p|game}}\config.cfg|{{p|appdata}}\unepic\config.cfg}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/Unepic/unepic/config.cfg}}' - - '{{Game data/config|Steam|{{p|steam}}/userdata/{{p|uid}}/233980\remote\config.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\save|{{p|appdata}}\unepic\save\}}' - - '{{Game data/saves|OS X|{{P|game}}/Unepic.app/Contents/Resources/save/}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/Unepic/unepic/}}' - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/233980/remote/save/}}' + - "{{Game data/config|Windows|{{p|game}}\\config.cfg|{{p|appdata}}\\unepic\\config.cfg}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/Unepic/unepic/config.cfg}}" + - "{{Game data/config|Steam|{{p|steam}}/userdata/{{p|uid}}/233980\\remote\\config.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\save|{{p|appdata}}\\unepic\\save\\}}" + - "{{Game data/saves|OS X|{{P|game}}/Unepic.app/Contents/Resources/save/}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/Unepic/unepic/}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/233980/remote/save/}}" UnHolY DisAsTeR: pageId: 100026 steam: 889770 @@ -183397,18 +178333,18 @@ UnMetal: pageId: 161476 steam: 1203710 templates: - - '{{Game data/config|Windows|{{p|steam}}\userdata\{{p|uid}}\1203710\remote\unmetal_config.cfg}}' - - '{{Game data/saves|Windows|{{p|steam}}\userdata\{{p|uid}}\1203710\remote\}}' + - "{{Game data/config|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\1203710\\remote\\unmetal_config.cfg}}" + - "{{Game data/saves|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\1203710\\remote\\}}" UnReal World: pageId: 37241 steam: 351700 -'UnSummoning: The Spectral Horde': +"UnSummoning: The Spectral Horde": pageId: 45192 steam: 417060 UnWorded: pageId: 73459 steam: 687900 -'Unaided: 1939': +"Unaided: 1939": pageId: 50749 steam: 511460 Unalive: @@ -183423,12 +178359,12 @@ Unavowed: steamSide: - 915870 templates: - - '{{Game data/config|Windows|{{P|userprofile}}\Saved Games\Unavowed\acsetup.cfg}}' - - '{{Game data/config|OS X|{{P|osxhome}}/Library/Application Support/Unavowed/acsetup.cfg}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/ags/Unavowed/acsetup.cfg}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\Saved Games\Unavowed\}}' - - '{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/Unavowed/}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/ags/Unavowed/}}' + - "{{Game data/config|Windows|{{P|userprofile}}\\Saved Games\\Unavowed\\acsetup.cfg}}" + - "{{Game data/config|OS X|{{P|osxhome}}/Library/Application Support/Unavowed/acsetup.cfg}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/ags/Unavowed/acsetup.cfg}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\Saved Games\\Unavowed\\}}" + - "{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/Unavowed/}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/ags/Unavowed/}}" Unbalance: pageId: 69484 steam: 693300 @@ -183438,7 +178374,7 @@ Unbeatable Wilderness: Unblock Gridlock: pageId: 125998 steam: 977100 -'Unblock: The Parking': +"Unblock: The Parking": pageId: 103117 steam: 895330 Unblocky: @@ -183456,18 +178392,18 @@ Unblocky 4: Unborne: pageId: 82371 steam: 645150 -'Unbound: Worlds Apart': +"Unbound: Worlds Apart": gog: 1090025519 pageId: 89726 steam: 814680 templates: - - '{{Game data/saves|Windows|{{P|localappdata}}\Unbound\Saved\SaveGames\}}' + - "{{Game data/saves|Windows|{{P|localappdata}}\\Unbound\\Saved\\SaveGames\\}}" Unbox: pageId: 36930 steam: 512300 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\BoxJump\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\BoxJump\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\BoxJump\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\BoxJump\\Saved\\SaveGames\\}}" Unbreakable Vr Runner: pageId: 42597 steam: 494310 @@ -183486,9 +178422,9 @@ Uncanny Valley: Uncharted Ocean: pageId: 150717 renamedFrom: - - '航海日記:起航(Uncharted Ocean : Set Sail)' + - "航海日記:起航(Uncharted Ocean : Set Sail)" steam: 1158690 -'Uncharted Tides: Port Royal': +"Uncharted Tides: Port Royal": pageId: 144455 steam: 1113780 Uncharted Waters: @@ -183501,8 +178437,8 @@ Uncharted Waters Online: pageId: 122442 steam: 890400 steamSide: - - 317110 - 224320 + - 317110 - 323440 - 323441 - 323442 @@ -183512,22 +178448,22 @@ Uncharted Waters Online: Uncharted Waters Origin: pageId: 185938 steam: 1574360 -'Uncharted: Legacy of Thieves Collection': +"Uncharted: Legacy of Thieves Collection": gog: 1451150270 pageId: 171353 renamedFrom: - - 'Uncharted: Legacy of Thieves Collection' - - 'Uncharted: The Naughty Dog PC Collection' + - "Uncharted: Legacy of Thieves Collection" + - "Uncharted: The Naughty Dog PC Collection" steam: 1659420 templates: - - '{{Game data/config|Windows|{{P|game}}\Uncharted4_data\screeninfo.cfg}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\Saved Games\Uncharted Legacy of Thieves Collection}}' + - "{{Game data/config|Windows|{{P|game}}\\Uncharted4_data\\screeninfo.cfg}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Saved Games\\Uncharted Legacy of Thieves Collection}}" Unciv: pageId: 190240 Unclaimed World: pageId: 16266 steam: 284100 -Uncle Henry's Playhouse: +"Uncle Henry's Playhouse": pageId: 147309 Uncompromising Trash: pageId: 57896 @@ -183545,12 +178481,12 @@ Uncraft World: pageId: 29326 steam: 339910 templates: - - '{{Game data/saves|Windows|{{p|game}}\EditorData\UncraftWorldUserData.dbx}}' + - "{{Game data/saves|Windows|{{p|game}}\\EditorData\\UncraftWorldUserData.dbx}}" Uncrewed: pageId: 42008 steam: 474890 templates: - - '{{Game data/saves|Windows|\Documents\Uncrewed Game\User\campaigns}}' + - "{{Game data/saves|Windows|\\Documents\\Uncrewed Game\\User\\campaigns}}" Uncrowded: pageId: 47939 steam: 370100 @@ -183569,7 +178505,7 @@ Undead Blackout: Undead Citadel: pageId: 128676 steam: 819190 -'Undead Darlings: No Cure for Love': +"Undead Darlings: No Cure for Love": gog: 1506893300 pageId: 170773 steam: 1294970 @@ -183587,12 +178523,12 @@ Undead Horde: pageId: 87601 steam: 790850 templates: - - '{{Game data/config|Windows|{{P|appdata}}\10tons\UndeadHorde\save\index.xml}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/10tons/UndeadHorde_114/save/index.xml}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/10tons/UndeadHorde/save/index.xml}}' - - '{{Game data/saves|Windows|{{P|appdata}}\10tons\UndeadHorde\save\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/10tons/UndeadHorde_114/save}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/10tons/UndeadHorde/save}}' + - "{{Game data/config|Windows|{{P|appdata}}\\10tons\\UndeadHorde\\save\\index.xml}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/10tons/UndeadHorde_114/save/index.xml}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/10tons/UndeadHorde/save/index.xml}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\10tons\\UndeadHorde\\save\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/10tons/UndeadHorde_114/save}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/10tons/UndeadHorde/save}}" Undead Hunter: pageId: 62500 steam: 591080 @@ -183626,7 +178562,7 @@ Undecember: pageId: 182492 steam: 1549250 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\RzGame\Saved\Config\WindowsNoEditor\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\RzGame\\Saved\\Config\\WindowsNoEditor\\}}" Undefeated: pageId: 37750 steam: 332390 @@ -183634,8 +178570,8 @@ Undefeated (2019): pageId: 141732 steam: 1116960 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\UNDEFEATED\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\UNDEFEATED\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\UNDEFEATED\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\UNDEFEATED\\Saved\\SaveGames\\}}" Undefined: pageId: 122482 steam: 661190 @@ -183643,8 +178579,8 @@ Undefined Fantastic Object: pageId: 63103 steam: 1100160 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/saves|Windows|{{p|game}}\}}' + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\}}" Undelivered: pageId: 100382 steam: 885210 @@ -183654,18 +178590,18 @@ Under: Under Leaves: pageId: 60125 steam: 567030 -'Under Night In-Birth Exe:Late': +"Under Night In-Birth Exe:Late": pageId: 37707 steam: 452510 -'Under Night In-Birth Exe:Late cl-r': +"Under Night In-Birth Exe:Late cl-r": pageId: 104793 renamedFrom: - - 'Under Night In-Birth Exe:Latest' + - "Under Night In-Birth Exe:Latest" steam: 801630 templates: - - '{{Game data/config|Windows|{{p|game}}\Save\}}' - - '{{Game data/saves|Windows|{{p|game}}\Save\}}' -'Under Night In-Birth II Sys:Celes': + - "{{Game data/config|Windows|{{p|game}}\\Save\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\Save\\}}" +"Under Night In-Birth II Sys:Celes": pageId: 189006 steam: 2076010 Under One Wing: @@ -183694,15 +178630,15 @@ Under The Moon: Under The War: pageId: 96801 steam: 873730 -'Under Water : Abyss Survival VR': +"Under Water : Abyss Survival VR": pageId: 135185 steam: 1042130 Under What?: pageId: 141268 steam: 1114260 templates: - - '{{Game data/config|Windows|{{p|game}}\renpy\config.py}}' - - '{{Game data/saves|Windows|{{P|appdata}}\renpy\Fisherdream-1558107745\|{{p|game}}\game\saves\}}' + - "{{Game data/config|Windows|{{p|game}}\\renpy\\config.py}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\renpy\\Fisherdream-1558107745\\|{{p|game}}\\game\\saves\\}}" Under Zero: pageId: 34962 steam: 454930 @@ -183722,15 +178658,15 @@ Under the Ocean: Under the Rainbow - Prologue: pageId: 156459 steam: 1178010 -'Under the Witch: Beginnings': +"Under the Witch: Beginnings": gog: 1358404037 pageId: 190580 Under the waves: pageId: 189436 steam: 1975440 templates: - - '{{Game data/config|Windows|%LOCALAPPDATA%\UnderTheWaves\Saved\Config\WindowsNoEditor}}' - - '{{Game data/saves|Windows|%LOCALAPPDATA%\UnderTheWaves\Saved\SaveGames}}' + - "{{Game data/config|Windows|%LOCALAPPDATA%\\UnderTheWaves\\Saved\\Config\\WindowsNoEditor}}" + - "{{Game data/saves|Windows|%LOCALAPPDATA%\\UnderTheWaves\\Saved\\SaveGames}}" UnderDread: pageId: 44379 steam: 432240 @@ -183744,17 +178680,13 @@ UnderMine: pageId: 135803 steam: 656350 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\Thorium Entertainment\UnderMine\Config.json}}' - - >- - {{Game data/config|Microsoft - Store|{{p|userprofile}}\AppData\Local\Packages\Thorium.UnderMine_j6gc5ewhjtwag\LocalState\Config.json}} - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Thorium Entertainment/UnderMine/Config.json}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Thorium Entertainment\UnderMine\Saves}}' - - >- - {{Game data/saves|Microsoft - Store|{{p|userprofile}}\AppData\Local\Packages\Thorium.UnderMine_j6gc5ewhjtwag\LocalState\{{p|uid}}Saves}} - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/unity.Thorium Entertainment.UnderMine/Saves}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Thorium Entertainment/UnderMine/Saves}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Thorium Entertainment\\UnderMine\\Config.json}}" + - "{{Game data/config|Microsoft Store|{{p|userprofile}}\\AppData\\Local\\Packages\\Thorium.UnderMine_j6gc5ewhjtwag\\LocalState\\Config.json}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Thorium Entertainment/UnderMine/Config.json}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Thorium Entertainment\\UnderMine\\Saves}}" + - "{{Game data/saves|Microsoft Store|{{p|userprofile}}\\AppData\\Local\\Packages\\Thorium.UnderMine_j6gc5ewhjtwag\\LocalState\\{{p|uid}}Saves}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/unity.Thorium Entertainment.UnderMine/Saves}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Thorium Entertainment/UnderMine/Saves}}" UnderParty: pageId: 154116 steam: 1144440 @@ -183772,7 +178704,7 @@ UndercoVR: Undercover Agent: pageId: 81448 steam: 786290 -'Undercover Missions: Operation Kursk K-141': +"Undercover Missions: Operation Kursk K-141": pageId: 45324 steam: 403390 Undercrewed: @@ -183797,7 +178729,7 @@ Underground Keeper: pageId: 41611 steam: 497040 templates: - - '{{Game data/saves|Windows|{{p|game}}\UndergroundKeeper_Data\Save}}' + - "{{Game data/saves|Windows|{{p|game}}\\UndergroundKeeper_Data\\Save}}" Underground Miner: pageId: 156565 steam: 1220070 @@ -183806,10 +178738,10 @@ Underhero: pageId: 62751 steam: 573320 templates: - - '{{Game data/config|Windows|{{p|HKCU}}\Software\Paper Castle Games\Underhero\}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Paper Castle Games/Underhero/prefs}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Paper Castle Games\UnderheroUnderHeroSaveFile.dat}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Paper Castle Games/UnderheroUnderHeroSaveFile.dat}}' + - "{{Game data/config|Windows|{{p|HKCU}}\\Software\\Paper Castle Games\\Underhero\\}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Paper Castle Games/Underhero/prefs}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Paper Castle Games\\UnderheroUnderHeroSaveFile.dat}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Paper Castle Games/UnderheroUnderHeroSaveFile.dat}}" Underlight: pageId: 124002 steam: 980730 @@ -183827,8 +178759,8 @@ Underrail: - 694330 - 2604510 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Underrail\config.dat}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Underrail\Saves\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Underrail\\config.dat}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Underrail\\Saves\\}}" Undersea Adventure: pageId: 185293 Underspace: @@ -183841,21 +178773,13 @@ Undertale: steamSide: - 391570 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\UNDERTALE\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/com.tobyfox.undertale/}}' - - >- - {{Game - data/config|Linux|{{p|linuxhome}}/.config/UNDERTALE/{{Note|name=Steam|Steam}}|{{p|linuxhome}}/.config/UNDERTALE_linux_steamver/{{Note|name=Steam - old|Steam (old)}}|{{p|linuxhome}}/.config/UNDERTALE_linux/{{Note|name=DRM free|DRM-free}}}} - - '{{Game data/saves|Windows|{{p|localappdata}}\UNDERTALE\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/com.tobyfox.undertale/}}' - - >- - {{Game - data/config|Linux|{{p|linuxhome}}/.config/UNDERTALE/{{Note|name=Steam}}|{{p|linuxhome}}/.config/UNDERTALE_linux_steamver/{{Note|name=Steam - old}}|{{p|linuxhome}}/.config/UNDERTALE_linux/{{Note|name=DRM free}}}} - - >- - {{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/391540/remote/{{Note|Used only for saving - system_information_962 and system_information_963 (Windows only)}}}} + - "{{Game data/config|Windows|{{p|localappdata}}\\UNDERTALE\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/com.tobyfox.undertale/}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/UNDERTALE/{{Note|name=Steam|Steam}}|{{p|linuxhome}}/.config/UNDERTALE_linux_steamver/{{Note|name=Steam old|Steam (old)}}|{{p|linuxhome}}/.config/UNDERTALE_linux/{{Note|name=DRM free|DRM-free}}}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\UNDERTALE\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/com.tobyfox.undertale/}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/UNDERTALE/{{Note|name=Steam}}|{{p|linuxhome}}/.config/UNDERTALE_linux_steamver/{{Note|name=Steam old}}|{{p|linuxhome}}/.config/UNDERTALE_linux/{{Note|name=DRM free}}}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/391540/remote/{{Note|Used only for saving system_information_962 and system_information_963 (Windows only)}}}}" Underture: pageId: 141035 steam: 1087190 @@ -183869,12 +178793,8 @@ Underworld Ascendant: pageId: 68715 steam: 692840 templates: - - >- - {{Game data/config|Windows|{{p|USERPROFILE}}\Appdata\LocalLow\OtherSide Entertainment\Underworld - Ascendant\settings.xml}} - - >- - {{Game data/saves|Windows|{{p|Steam}}\userdata\{{p|UID}}\692840\|{{p|userprofile\documents}}\My Games\Underworld - Ascendant\}} + - "{{Game data/config|Windows|{{p|USERPROFILE}}\\Appdata\\LocalLow\\OtherSide Entertainment\\Underworld Ascendant\\settings.xml}}" + - "{{Game data/saves|Windows|{{p|Steam}}\\userdata\\{{p|UID}}\\692840\\|{{p|userprofile\\documents}}\\My Games\\Underworld Ascendant\\}}" Underworld Dungeon: pageId: 40187 steam: 520300 @@ -183894,7 +178814,7 @@ Undisputed: - ESports Boxing Club steam: 1451190 templates: - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\Steel City Interactive\Undisputed}}' + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\Steel City Interactive\\Undisputed}}" Undoing: pageId: 127555 steam: 664890 @@ -183902,37 +178822,37 @@ Undress Tournament: pageId: 125801 steam: 966460 templates: - - '{{Game data/saves|Windows|{{p|appdata}}\LocalLow\HawkX Games\Undress Tournament}}' + - "{{Game data/saves|Windows|{{p|appdata}}\\LocalLow\\HawkX Games\\Undress Tournament}}" Undungeon: gog: 1925512696 pageId: 157287 steam: 928990 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\tinyBuildGames\Undungeon\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\tinyBuildGames\Undungeon\}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\tinyBuildGames\\Undungeon\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\tinyBuildGames\\Undungeon\\}}" Undying: pageId: 1522 steam: 638990 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Vanimals\Undying\*}}' + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Vanimals\\Undying\\*}}" Undying Symphony: pageId: 173843 steam: 1591760 Unearned Bounty: pageId: 56390 steam: 377260 -'Unearthed Inc: The Lost Temple': +"Unearthed Inc: The Lost Temple": pageId: 54641 steam: 551720 -'Unearthed: Trail of Ibn Battuta - Episode 1': +"Unearthed: Trail of Ibn Battuta - Episode 1": pageId: 14165 steam: 263680 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Semaphore\UnearthedEpisode1}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Semaphore\\UnearthedEpisode1}}" Unearthing Colossal: pageId: 39187 steam: 428590 -'Unearthing Mars 2: The Ancient War': +"Unearthing Mars 2: The Ancient War": pageId: 128091 steam: 998020 Unearthing Mars VR: @@ -183948,8 +178868,8 @@ Unending Galaxy: pageId: 44515 steam: 439720 templates: - - '{{Game data/config|Windows|{{P|game}}\saves}}' - - '{{Game data/saves|Windows|{{P|game}}\saves}}' + - "{{Game data/config|Windows|{{P|game}}\\saves}}" + - "{{Game data/saves|Windows|{{P|game}}\\saves}}" Unexpected Circumstances: pageId: 104781 steam: 911630 @@ -183972,19 +178892,19 @@ Unexplored: pageId: 41697 steam: 506870 templates: - - '{{Game data/config|Windows|{{P|appdata}}\Unexplored\settings.xpr}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Unexplored/settings.xpr}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/Unexplored/settings.xpr}}' - - '{{Game data/saves|Windows|{{P|appdata}}\Unexplored\save*\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Unexplored/save/*}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/Unexplored/save/*}}' -'Unexplored 2: The Wayfarer''s Legacy': + - "{{Game data/config|Windows|{{P|appdata}}\\Unexplored\\settings.xpr}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Unexplored/settings.xpr}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/Unexplored/settings.xpr}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\Unexplored\\save*\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Unexplored/save/*}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/Unexplored/save/*}}" +"Unexplored 2: The Wayfarer's Legacy": gog: 1674273685 pageId: 138433 steam: 1095040 templates: - - '{{Game data/config|Windows|{{p|userprofile\appdata\locallow}}\Ludomotion\Unexplored2\}}' - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\Ludomotion\Unexplored2\}}' + - "{{Game data/config|Windows|{{p|userprofile\\appdata\\locallow}}\\Ludomotion\\Unexplored2\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\Ludomotion\\Unexplored2\\}}" Unfair Jousting Fair: pageId: 46578 steam: 377550 @@ -183997,7 +178917,7 @@ Unfathomable Villa: Unfazed: pageId: 40259 steam: 506630 -Unfinished - An Artist's Lament: +"Unfinished - An Artist's Lament": pageId: 46989 steam: 388680 Unfinished Battle: @@ -184008,26 +178928,26 @@ Unforeseen Incidents: pageId: 79362 steam: 501790 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Backwoods\Unforeseen Incidents\}}' + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Backwoods\\Unforeseen Incidents\\}}" Unforgiven VR: pageId: 56568 steam: 546210 -'Unforgiven: Missing Memories - Child''s Play': +"Unforgiven: Missing Memories - Child's Play": pageId: 51475 steam: 522710 Unforgiving - A Northern Hymn: pageId: 75855 steam: 747340 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Unforgiving\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\Unforgiving\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\Unforgiving\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Unforgiving\\Saved\\SaveGames\\}}" Unforgiving Happiness: pageId: 75538 steam: 736390 -'Unforgiving Trials: The Darkest Crusade': +"Unforgiving Trials: The Darkest Crusade": pageId: 33775 steam: 489220 -'Unforgiving Trials: The Space Crusade': +"Unforgiving Trials: The Space Crusade": pageId: 51294 steam: 535760 Unformed: @@ -184039,9 +178959,9 @@ Unfortunate Spacemen: steamSide: - 1349010 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\UnfortunateSpacemen\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\UnfortunateSpacemen\Saved\SaveGames\}}' -'Ungrounded: Ripple Unleashed VR': + - "{{Game data/config|Windows|{{p|localappdata}}\\UnfortunateSpacemen\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\UnfortunateSpacemen\\Saved\\SaveGames\\}}" +"Ungrounded: Ripple Unleashed VR": pageId: 67603 steam: 676170 Unhack: @@ -184050,7 +178970,7 @@ Unhack: Unhack 2: pageId: 56274 steam: 444170 -'Unhallowed: The Cabin': +"Unhallowed: The Cabin": pageId: 92265 steam: 789670 Unhappy Ever After: @@ -184065,9 +178985,9 @@ Unheard: - 1123960 - 1205600 templates: - - '{{Game data/config|Windows|{{p|HKCU}}\Software\NEXTStudios\Unheard}}' - - '{{Game data/saves|Windows|{{p|USERPROFILE}}\AppData\LocalLow\NEXTStudios\Unheard}}' -Unheard Screams - King Leopold II's Rule Over The Congo: + - "{{Game data/config|Windows|{{p|HKCU}}\\Software\\NEXTStudios\\Unheard}}" + - "{{Game data/saves|Windows|{{p|USERPROFILE}}\\AppData\\LocalLow\\NEXTStudios\\Unheard}}" +"Unheard Screams - King Leopold II's Rule Over The Congo": pageId: 47956 steam: 365080 Unholy: @@ -184078,10 +178998,8 @@ Unholy Heights: pageId: 19139 steam: 249330 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\SavedGames\UnholyHeights\Unholy - Heights\Player1\Property.xml}} - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\SavedGames\UnholyHeights\Unholy Heights\Player1\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\SavedGames\\UnholyHeights\\Unholy Heights\\Player1\\Property.xml}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\SavedGames\\UnholyHeights\\Unholy Heights\\Player1\\}}" UniBall: pageId: 58336 steam: 408030 @@ -184110,8 +179028,8 @@ Uninvited: pageId: 21867 steam: 343810 templates: - - '{{Game data/config|Windows|{{p|appdata}}\zojoi}}' - - '{{Game data/saves|Windows|{{p|appdata}}\zojoi}}' + - "{{Game data/config|Windows|{{p|appdata}}\\zojoi}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\zojoi}}" Unishroom: pageId: 132702 steam: 1044730 @@ -184136,19 +179054,19 @@ Unitied: Unity of Command II: pageId: 130684 steam: 809230 -'Unity of Command: Stalingrad Campaign': +"Unity of Command: Stalingrad Campaign": pageId: 51061 steam: 218090 steamSide: - 218100 - 258420 templates: - - '{{Game data/config|Windows|{{p|APPDATA}}\Unity of Command\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Unity of Command}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.uoc}}' - - '{{Game data/saves|Windows|{{p|APPDATA}}\Unity of Command\save\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Unity of Command/save}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.uoc/save}}' + - "{{Game data/config|Windows|{{p|APPDATA}}\\Unity of Command\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Unity of Command}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.uoc}}" + - "{{Game data/saves|Windows|{{p|APPDATA}}\\Unity of Command\\save\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Unity of Command/save}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.uoc/save}}" Unity of Four Elements: pageId: 81950 steam: 782080 @@ -184159,7 +179077,7 @@ Unium: pageId: 37287 steam: 357600 templates: - - '{{Game data/saves|Windows|{{p|USERPROFILE}}\AppData\LocalLow\KittehFace Software\Unium\SaveData}}' + - "{{Game data/saves|Windows|{{p|USERPROFILE}}\\AppData\\LocalLow\\KittehFace Software\\Unium\\SaveData}}" UniverCity: pageId: 104511 steam: 808160 @@ -184183,32 +179101,29 @@ Universe Sandbox: pageId: 23059 steam: 230290 templates: - - >- - {{Game data/config|Windows|{{P|userprofile}}\AppData\LocalLow\Giant Army\Universe - Sandbox\settings.json|{{P|userprofile}}\AppData\LocalLow\Giant Army\Universe - Sandbox\inputbindings.json|{{P|hkcu}}\Software\Giant Army\Universe Sandbox\}} - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Giant Army/Universe Sandbox}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Universe Sandbox\Simulations}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/Universe Sandbox/Simulations}}' + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Giant Army\\Universe Sandbox\\settings.json|{{P|userprofile}}\\AppData\\LocalLow\\Giant Army\\Universe Sandbox\\inputbindings.json|{{P|hkcu}}\\Software\\Giant Army\\Universe Sandbox\\}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Giant Army/Universe Sandbox}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Universe Sandbox\\Simulations}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/Universe Sandbox/Simulations}}" Universe Sandbox Legacy: pageId: 40988 steam: 72200 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Universe Sandbox\}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\Universe Sandbox\Simulations\}}' -'Universe at War: Earth Assault': + - "{{Game data/config|Windows|{{P|localappdata}}\\Universe Sandbox\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\Universe Sandbox\\Simulations\\}}" +"Universe at War: Earth Assault": pageId: 22705 steam: 10430 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\SOFTWARE\Petroglyph\UAWEA\Profile0\Player}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Sega\UAWEA\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\SOFTWARE\\Petroglyph\\UAWEA\\Profile0\\Player}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Sega\\UAWEA\\}}" Universe in Fire: pageId: 58975 steam: 604570 University Life: pageId: 75546 steam: 746290 -'University Tycoon: 2019': +"University Tycoon: 2019": pageId: 95081 steam: 780690 Unknightly: @@ -184231,7 +179146,7 @@ Unknown Horizons: Unknown Nightmare: pageId: 90350 steam: 815920 -'Unknown Pain: Hardcore': +"Unknown Pain: Hardcore": pageId: 91534 steam: 795480 Unknown Pharaoh: @@ -184243,10 +179158,10 @@ Unknown Scrolls: Unknown Surge: pageId: 157406 steam: 1132450 -'Unknown''s Survival : Player Battlegrounds': +"Unknown's Survival : Player Battlegrounds": pageId: 120794 steam: 931490 -'Unknown9: Awakening': +"Unknown9: Awakening": pageId: 162865 renamedFrom: - Unknown 9 @@ -184262,7 +179177,7 @@ Unleash Hell: Unleashed: pageId: 121527 steam: 838690 -'Unlight: SchizoChronicle': +"Unlight: SchizoChronicle": pageId: 94391 steam: 816810 Unlikely Stickman: @@ -184300,8 +179215,8 @@ Unloved: pageId: 38363 steam: 321270 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Unloved\Saved\Config\WindowsNoEditor}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Unloved\Saved\Saved\SaveGames}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Unloved\\Saved\\Config\\WindowsNoEditor}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Unloved\\Saved\\Saved\\SaveGames}}" Unlucky Seven: pageId: 57020 steam: 579120 @@ -184313,20 +179228,16 @@ Unmechanical: pageId: 14938 steam: 211180 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Unmechanical\UDKGame\Config\}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.local/share/TeotlStudios/Unmechanical/UDKGame/Config/}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Unmechanical\SavedElements\}}' - - '{{Game data/saves|OS X|user/Library(hidden folder)/Application Support/Unmechanical/SavedElements}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.local/share/TeotlStudios/Unmechanical/SavedElements/}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Unmechanical\\UDKGame\\Config\\}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.local/share/TeotlStudios/Unmechanical/UDKGame/Config/}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Unmechanical\\SavedElements\\}}" + - "{{Game data/saves|OS X|user/Library(hidden folder)/Application Support/Unmechanical/SavedElements}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.local/share/TeotlStudios/Unmechanical/SavedElements/}}" Unmemory: pageId: 181352 steam: 1388860 templates: - - >- - {{Game - data/saves|Windows|{{P|hkcu}}\Software\PlugInDigital\Unmemory{{Refcheck|user=Erictbar|date=2022-09-04|comment=Verfied - by starting the Amazon Games version of the game on Linux using Wine, then opening Wine Registry, backing up - location and adding the registry file on Windows 11 and starting the game there.}}}} + - "{{Game data/saves|Windows|{{P|hkcu}}\\Software\\PlugInDigital\\Unmemory{{Refcheck|user=Erictbar|date=2022-09-04|comment=Verfied by starting the Amazon Games version of the game on Linux using Wine, then opening Wine Registry, backing up location and adding the registry file on Windows 11 and starting the game there.}}}}" Unmoor: pageId: 88185 steam: 789260 @@ -184343,7 +179254,7 @@ Uno (2016): pageId: 55922 steam: 470220 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\UbiSoftCTU\UNO}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\UbiSoftCTU\\UNO}}" Unpacking: gog: 1179488779 pageId: 145473 @@ -184351,45 +179262,35 @@ Unpacking: steamSide: - 1790460 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Witch Beam\Unpacking\}}' - - '{{Game data/config|Linux|{{p|xdgconfighome}}/unity3d/Witch Beam/Unpacking/prefs}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Witch Beam\Unpacking\*.sav}}' - - >- - {{Game data/saves|Microsoft - Store|{{p|localappdata}}\Packages\HumbleBundle.Unpacking_q2mcdwmzx4qja\SystemAppData\wgs}} - - '{{Game data/saves|Steam|{{P|Steam}}\userdata\{{P|uid}}\1135690\remote\}}' - - '{{Game data/saves|Linux|{{p|xdgconfighome}}/unity3d/Witch Beam/Unpacking/}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Witch Beam\\Unpacking\\}}" + - "{{Game data/config|Linux|{{p|xdgconfighome}}/unity3d/Witch Beam/Unpacking/prefs}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Witch Beam\\Unpacking\\*.sav}}" + - "{{Game data/saves|Microsoft Store|{{p|localappdata}}\\Packages\\HumbleBundle.Unpacking_q2mcdwmzx4qja\\SystemAppData\\wgs}}" + - "{{Game data/saves|Steam|{{P|Steam}}\\userdata\\{{P|uid}}\\1135690\\remote\\}}" + - "{{Game data/saves|Linux|{{p|xdgconfighome}}/unity3d/Witch Beam/Unpacking/}}" Unpossible: pageId: 38541 steam: 300400 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Acceleroto\Unpossible}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Acceleroto\\Unpossible}}" Unrailed!: pageId: 135642 steam: 1016920 steamSide: - 1150940 templates: - - >- - {{Game data/config|Windows|{{P|localappdata}}\Daedalic Entertainment - GmbH\Unrailed\GameState\AllPlayers\settings.txt|{{P|localappdata}}\Daedalic Entertainment - GmbH\Unrailed\GameState\AllPlayers\language.txt}} - - >- - {{Game data/config|OS X|Library/Application - Support/UnrailedGame/GameState/AllPlayers/settings.txt|Library/Application - Support/UnrailedGame/GameState/AllPlayers/language.txt}} - - >- - {{Game - data/config|Linux|{{p|linuxhome}}/.local/share/UnrailedGame/GameSate/AllPlayers/settings.txt|~/.local/share/UnrailedGame/GameSate/AllPlayers/language.txt}} - - '{{Game data/saves|Windows|{{P|localappdata}}\Daedalic Entertainment GmbH\Unrailed\GameState\AllPlayers\SaveGames}}' - - '{{Game data/saves|OS X|Library/Application Support/UnrailedGame/GameState/AllPlayers/SaveGames}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.local/share/UnrailedGame/GameState/AllPlayers/SaveGames}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\Daedalic Entertainment GmbH\\Unrailed\\GameState\\AllPlayers\\settings.txt|{{P|localappdata}}\\Daedalic Entertainment GmbH\\Unrailed\\GameState\\AllPlayers\\language.txt}}" + - "{{Game data/config|OS X|Library/Application Support/UnrailedGame/GameState/AllPlayers/settings.txt|Library/Application Support/UnrailedGame/GameState/AllPlayers/language.txt}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.local/share/UnrailedGame/GameSate/AllPlayers/settings.txt|~/.local/share/UnrailedGame/GameSate/AllPlayers/language.txt}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Daedalic Entertainment GmbH\\Unrailed\\GameState\\AllPlayers\\SaveGames}}" + - "{{Game data/saves|OS X|Library/Application Support/UnrailedGame/GameState/AllPlayers/SaveGames}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.local/share/UnrailedGame/GameState/AllPlayers/SaveGames}}" Unravel: pageId: 31310 steam: 1225560 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Unravel\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Unravel\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Unravel\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Unravel\\}}" Unravel Cyndy: pageId: 179103 steam: 1021860 @@ -184397,9 +179298,9 @@ Unravel Two: pageId: 97145 steam: 1225570 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\UnravelTwo\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\UnravelTwo\}}' -'Unraveled: Tale of the Shipbreaker''s Daughter': + - "{{Game data/config|Windows|{{p|localappdata}}\\UnravelTwo\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\UnravelTwo\\}}" +"Unraveled: Tale of the Shipbreaker's Daughter": pageId: 39474 steam: 341110 Unreal: @@ -184407,9 +179308,9 @@ Unreal: pageId: 1529 steam: 13250 templates: - - '{{Game data/config|Windows|{{p|game}}\System\*.ini}}' - - '{{Game data/config|Linux|{{p|game}}\System\*.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\Save\}}' + - "{{Game data/config|Windows|{{p|game}}\\System\\*.ini}}" + - "{{Game data/config|Linux|{{p|game}}\\System\\*.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\Save\\}}" Unreal (1991): pageId: 154970 Unreal Drone Racing: @@ -184421,13 +179322,13 @@ Unreal Estate: Unreal Heroes: pageId: 52768 steam: 514510 -'Unreal II: The Awakening': +"Unreal II: The Awakening": gog: 1207658677 pageId: 1549 steam: 13200 templates: - - '{{Game data/config|Windows|{{p|game}}\System\Unreal2.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\Save\|{{p|game}}\System\User.ini}}' + - "{{Game data/config|Windows|{{p|game}}\\System\\Unreal2.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\Save\\|{{p|game}}\\System\\User.ini}}" Unreal Maze Survival: pageId: 130342 steam: 1046430 @@ -184439,41 +179340,41 @@ Unreal Tournament: pageId: 1540 steam: 13240 templates: - - '{{Game data/config|Windows|{{p|game}}\System\User.ini|{{p|game}}\System\UnrealTournament.ini}}' - - '{{Game data/config|Mac OS|{{p|game}}/System}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Unreal Tournament/System}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.loki/ut/System}}' - - '{{Game data/saves|Windows|{{p|game}}\System\User.ini}}' - - '{{Game data/saves|Mac OS|{{p|game}}/System}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Unreal Tournament/System}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.loki/ut/System}}' + - "{{Game data/config|Windows|{{p|game}}\\System\\User.ini|{{p|game}}\\System\\UnrealTournament.ini}}" + - "{{Game data/config|Mac OS|{{p|game}}/System}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Unreal Tournament/System}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.loki/ut/System}}" + - "{{Game data/saves|Windows|{{p|game}}\\System\\User.ini}}" + - "{{Game data/saves|Mac OS|{{p|game}}/System}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Unreal Tournament/System}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.loki/ut/System}}" Unreal Tournament 2003: pageId: 1550 templates: - - '{{Game data/config|Windows|{{p|game}}\System\*.ini}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.ut2003/*.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\Saves\}}' + - "{{Game data/config|Windows|{{p|game}}\\System\\*.ini}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.ut2003/*.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\Saves\\}}" Unreal Tournament 2004: gog: 1207658691 pageId: 1551 steam: 13230 templates: - - '{{Game data/config|Windows|{{p|game}}\System\*.ini}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Unreal Tournament 2004/System/*.ini}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.ut2004/*.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\Saves}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Unreal Tournament 2004/Saves}}' + - "{{Game data/config|Windows|{{p|game}}\\System\\*.ini}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Unreal Tournament 2004/System/*.ini}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.ut2004/*.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\Saves}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Unreal Tournament 2004/Saves}}" Unreal Tournament 3: pageId: 153 steam: 13210 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Unreal Tournament 3\UTGame\Config\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Unreal Tournament 3\UTGame\SaveData\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Unreal Tournament 3\\UTGame\\Config\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Unreal Tournament 3\\UTGame\\SaveData\\}}" Unreal Tournament 4: pageId: 17193 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\UnrealTournament\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/config|Linux|{{P|linuxhome}}/Documents/UnrealTournament/Saved/Config/LinuxNoEditor/}}' + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\UnrealTournament\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/config|Linux|{{P|linuxhome}}/Documents/UnrealTournament/Saved/Config/LinuxNoEditor/}}" Unrecord: pageId: 186628 steam: 2381520 @@ -184485,8 +179386,8 @@ Unrest: pageId: 18742 steam: 292400 templates: - - '{{Game data/config|Windows|{{P|appdata}}\Pyrodactyl\Unrest\*.xml}}' - - '{{Game data/saves|Windows|{{P|appdata}}\Pyrodactyl\Unrest\save\}}' + - "{{Game data/config|Windows|{{P|appdata}}\\Pyrodactyl\\Unrest\\*.xml}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\Pyrodactyl\\Unrest\\save\\}}" Unrest Indigo: pageId: 128334 steam: 951470 @@ -184504,7 +179405,7 @@ Unruly Heroes: pageId: 91260 steam: 780350 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\MAGIC DESIGN STUDIOS\UnrulyHeroes}}' + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\MAGIC DESIGN STUDIOS\\UnrulyHeroes}}" Unsacrifice: pageId: 120757 steam: 855710 @@ -184521,21 +179422,19 @@ Unsighted: steamSide: - 1591370 templates: - - >- - {{Game data/config|Windows|{{P|userprofile\appdata\locallow}}\Studio Pixel - Punk\UNSIGHTED\GlobalGameData.dat|{{P|hkcu}}\Software\Studio Pixel Punk\UNSIGHTED\}} - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Studio Pixel Punk\UNSIGHTED\GlobalGameData.dat}}' - - '{{Game data/saves|Microsoft Store|{{P|localappdata}}\Packages\HumbleBundle.UNSIGHTED_q2mcdwmzx4qja\SystemAppData}}' -'Unsolved Mystery Club: Amelia Earhart': + - "{{Game data/config|Windows|{{P|userprofile\\appdata\\locallow}}\\Studio Pixel Punk\\UNSIGHTED\\GlobalGameData.dat|{{P|hkcu}}\\Software\\Studio Pixel Punk\\UNSIGHTED\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Studio Pixel Punk\\UNSIGHTED\\GlobalGameData.dat}}" + - "{{Game data/saves|Microsoft Store|{{P|localappdata}}\\Packages\\HumbleBundle.UNSIGHTED_q2mcdwmzx4qja\\SystemAppData}}" +"Unsolved Mystery Club: Amelia Earhart": pageId: 144394 steam: 1116890 -'Unsolved Mystery Club: Ancient Astronauts (Collector´s Edition)': +"Unsolved Mystery Club: Ancient Astronauts (Collector´s Edition)": pageId: 140989 steam: 1107350 Unsolved Stories: pageId: 82861 steam: 801010 -'Unsolved: Hidden Mystery Games': +"Unsolved: Hidden Mystery Games": pageId: 183659 Unsouled: pageId: 151224 @@ -184549,10 +179448,10 @@ Unstoppable Gorg: Unstoppable Hamster: pageId: 80454 steam: 782300 -'Unstrong: Space Calamity': +"Unstrong: Space Calamity": pageId: 183333 steam: 1781720 -'Unsung Heroes: The Golden Mask': +"Unsung Heroes: The Golden Mask": pageId: 149023 steam: 1029870 Unsung Kingdom: @@ -184562,7 +179461,7 @@ Unsung Story: pageId: 97746 steam: 1029260 templates: - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\Little Orbit\Unsung Story}}' + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\Little Orbit\\Unsung Story}}" Unsung Warriors: pageId: 128756 steam: 980700 @@ -184570,21 +179469,21 @@ Unsung Warriors - Prologue: pageId: 125569 steam: 959080 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Osarion\Unsung Warriors Prologue\}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Osarion\Unsung Warriors Prologue\*.sav}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Osarion\\Unsung Warriors Prologue\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Osarion\\Unsung Warriors Prologue\\*.sav}}" Unsweet: pageId: 139572 steam: 1063510 -'Untamed: Life of a Cougar': +"Untamed: Life of a Cougar": pageId: 46693 steam: 378580 Until I Have You: pageId: 43819 steam: 439310 -'Until None Remain: Battle Royale PC Edition': +"Until None Remain: Battle Royale PC Edition": pageId: 77030 steam: 697010 -'Until None Remain: Battle Royale VR': +"Until None Remain: Battle Royale VR": pageId: 72240 steam: 697020 Until We Die: @@ -184595,8 +179494,8 @@ Until You Fall: pageId: 141933 steam: 858260 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\SOFTWARE\Schell Games\UntilYouFall\}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Schell Games\UntilYouFall\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\Schell Games\\UntilYouFall\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Schell Games\\UntilYouFall\\}}" Until the Last: pageId: 70150 steam: 709560 @@ -184607,21 +179506,16 @@ Untitled Goose Game: pageId: 108968 steam: 837470 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\House House\Untitled Goose Game}}' - - >- - {{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/House House/Untitled Goose - Game/|{{p|osxhome}}/Library/Application - Support/se.househou.untitled-goose-game/|{{p|osxhome}}/Library/Preferences/se.househou.untitled-goose-game.plist}} - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\House House\Untitled Goose Game\}}' - - >- - {{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/House House/Untitled Goose - Game/|{{p|osxhome}}/Library/Application Support/se.househou.untitled-goose-game/}} + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\House House\\Untitled Goose Game}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/House House/Untitled Goose Game/|{{p|osxhome}}/Library/Application Support/se.househou.untitled-goose-game/|{{p|osxhome}}/Library/Preferences/se.househou.untitled-goose-game.plist}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\House House\\Untitled Goose Game\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/House House/Untitled Goose Game/|{{p|osxhome}}/Library/Application Support/se.househou.untitled-goose-game/}}" Unto the End: gog: 1691765782 pageId: 63648 steam: 600080 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\2TonStudios\UntoTheEnd\}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\2TonStudios\\UntoTheEnd\\}}" Untouchable: pageId: 94399 steam: 819800 @@ -184631,9 +179525,9 @@ Unturned: steamSide: - 306460 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Smartly Dressed Games\Unturned\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Preferences/unity.Smartly Dressed Games.Unturned.plist}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Smartly Dressed Games/Unturned}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Smartly Dressed Games\\Unturned\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Preferences/unity.Smartly Dressed Games.Unturned.plist}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Smartly Dressed Games/Unturned}}" Unusual Findings: pageId: 184237 steam: 1605320 @@ -184646,7 +179540,7 @@ Unveloped: pageId: 79850 steam: 776740 templates: - - '{{Game data/saves|Windows|{{p|appdata}}\Stencyl\Unveloped}}' + - "{{Game data/saves|Windows|{{p|appdata}}\\Stencyl\\Unveloped}}" Unwell Mel: pageId: 41143 steam: 51020 @@ -184655,13 +179549,13 @@ Unworthy: pageId: 59864 steam: 613190 templates: - - '{{Game data/config|Windows|{{p|LOCALAPPDATA}}\Unworthy\settings.ini}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Unworthy\}}' + - "{{Game data/config|Windows|{{p|LOCALAPPDATA}}\\Unworthy\\settings.ini}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Unworthy\\}}" Up: pageId: 81414 templates: - - '{{Game data/config|Windows|{{p|appdata}}\UP\config.opt}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\THQ\Disney_Pixar\UP\*.DISNEY_PIXAR_UPSavedGame}}' + - "{{Game data/config|Windows|{{p|appdata}}\\UP\\config.opt}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\THQ\\Disney_Pixar\\UP\\*.DISNEY_PIXAR_UPSavedGame}}" Up And Up: pageId: 95563 steam: 869930 @@ -184669,10 +179563,10 @@ Up Left Out: pageId: 99308 steam: 867380 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Rainbow Train\Up Left Out\}}' - - '{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/Rainbow Train/Up Left Out/prefs}}' - - '{{Game data/saves|Windows|{{p|hkcu}}\Software\Rainbow Train\Up Left Out\}}' - - '{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/Rainbow Train/Up Left Out/prefs}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Rainbow Train\\Up Left Out\\}}" + - "{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/Rainbow Train/Up Left Out/prefs}}" + - "{{Game data/saves|Windows|{{p|hkcu}}\\Software\\Rainbow Train\\Up Left Out\\}}" + - "{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/Rainbow Train/Up Left Out/prefs}}" Up and Down: pageId: 79807 steam: 776160 @@ -184685,7 +179579,7 @@ UpBreakers: UpMove: pageId: 150509 steam: 1175650 -'Upaon: A Snake''s Journey': +"Upaon: A Snake's Journey": pageId: 177143 steam: 1660040 Uphill Skiing: @@ -184694,20 +179588,20 @@ Uphill Skiing: Uplands Motel: pageId: 69472 steam: 704750 -'Uplands Motel: VR Thriller': +"Uplands Motel: VR Thriller": pageId: 58926 steam: 602000 -'Uplink: Hacker Elite': +"Uplink: Hacker Elite": gog: 1207659033 pageId: 4764 steam: 1510 templates: - - '{{Game data/config|Windows|{{p|game}}\users\options\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Uplink/options}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.uplink/}}' - - '{{Game data/saves|Windows|{{p|game}}\users\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Uplink/}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.uplink/}}' + - "{{Game data/config|Windows|{{p|game}}\\users\\options\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Uplink/options}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.uplink/}}" + - "{{Game data/saves|Windows|{{p|game}}\\users\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Uplink/}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.uplink/}}" Uppers: pageId: 108864 renamedFrom: @@ -184716,16 +179610,16 @@ Uppers: - UPPERS steam: 795760 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/saves|Windows|{{p|game}}\}}' -'Uprising 2: Lead and Destroy': + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\}}" +"Uprising 2: Lead and Destroy": gog: 1453458005 pageId: 36135 steam: 514050 -'Uprising44: The Silent Shadows': +"Uprising44: The Silent Shadows": pageId: 50414 steam: 280380 -'Uprising: Join or Die': +"Uprising: Join or Die": gog: 1453195863 pageId: 34228 steam: 465360 @@ -184733,14 +179627,14 @@ Upside Down: pageId: 57966 steam: 586960 templates: - - '{{Game data/config|Windows|{{p|HKCU}}\Software\just1337\Upside Down\}}' + - "{{Game data/config|Windows|{{p|HKCU}}\\Software\\just1337\\Upside Down\\}}" Upside-Down Dimensions: pageId: 66767 steam: 613370 Uptasia: pageId: 78603 steam: 719730 -'Upwards, Lonely Robot': +"Upwards, Lonely Robot": pageId: 44203 steam: 417900 UrGothic Battle Royale: @@ -184755,7 +179649,7 @@ Urban: Urban Assault: pageId: 51688 templates: - - '{{Game data/saves|Windows|{{p|game}}\SAVE\}}' + - "{{Game data/saves|Windows|{{p|game}}\\SAVE\\}}" Urban Cards: pageId: 145334 steam: 1126890 @@ -184764,8 +179658,8 @@ Urban Chaos: pageId: 19490 steam: 243060 templates: - - '{{Game data/config|Windows|{{p|game}}\config.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\saves\}}' + - "{{Game data/config|Windows|{{p|game}}\\config.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\saves\\}}" Urban Empire: gog: 1936881415 pageId: 35573 @@ -184780,19 +179674,19 @@ Urban Flow: pageId: 188814 steam: 2235340 templates: - - '{{Game data/saves|Steam|{{P|userprofile\appdata\locallow}}\Baltoro Games\Urban Flow\{{P|uid}}\}}' + - "{{Game data/saves|Steam|{{P|userprofile\\appdata\\locallow}}\\Baltoro Games\\Urban Flow\\{{P|uid}}\\}}" Urban Justice: pageId: 125619 steam: 1006150 Urban Legend in Limbo: pageId: 30981 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/saves|Windows|{{p|game}}\}}' + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\}}" Urban Legends: pageId: 48849 steam: 300200 -'Urban Legends: The Dry Body': +"Urban Legends: The Dry Body": pageId: 124468 steam: 982240 Urban Lockdown: @@ -184810,31 +179704,31 @@ Urban Tale: pageId: 126203 steam: 1000770 templates: - - '{{Game data/config|Windows|{{p|userprofile\appdata\locallow}}\Piksli.com\Urban Tale\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/.config/Piksli.com/Urban Tale/}}' - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\Piksli_com\Urban Tale\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/.config/Piksli_com/Urban Tale/}}' + - "{{Game data/config|Windows|{{p|userprofile\\appdata\\locallow}}\\Piksli.com\\Urban Tale\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/.config/Piksli.com/Urban Tale/}}" + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\Piksli_com\\Urban Tale\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/.config/Piksli_com/Urban Tale/}}" Urban Terror: pageId: 1367 templates: - - '{{Game data/config|Windows|{{p|game}}\q3ut4}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Quake3/q3ut4/}}' - - '{{Game data/config|Linux|~./q3a/q3ut4/}}' + - "{{Game data/config|Windows|{{p|game}}\\q3ut4}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Quake3/q3ut4/}}" + - "{{Game data/config|Linux|~./q3a/q3ut4/}}" Urban Trial Freestyle: gog: 1749711952 pageId: 10230 steam: 243450 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Urban Trial Freestyle\*.ini}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Urban Trial Freestyle\savegames\}}' - - '{{Game data/saves|Steam|{{P|steam}}\userdata\{{P|uid}}\243450\remote\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Urban Trial Freestyle\\*.ini}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Urban Trial Freestyle\\savegames\\}}" + - "{{Game data/saves|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\243450\\remote\\}}" Urban Trial Playground: gog: 1617276554 pageId: 128501 steam: 988240 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\UrbanTrialFreestyle3\Saved\Config}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\UrbanTrialFreestyle3\Saved\SaveGames}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\UrbanTrialFreestyle3\\Saved\\Config}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\UrbanTrialFreestyle3\\Saved\\SaveGames}}" Urban Trial Tricky Deluxe Edition: gog: 1739711030 pageId: 170222 @@ -184849,42 +179743,40 @@ Urbance Clans Card Battle!: pageId: 109140 steam: 872550 templates: - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\FishingCactus\UrbanceCardGame\}}' + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\FishingCactus\\UrbanceCardGame\\}}" Urbek City Builder: gog: 2135038344 pageId: 179786 steam: 1411740 -Uriel's Chasm: +"Uriel's Chasm": pageId: 49659 steam: 292630 -'Uriel''s Chasm 2: את': +"Uriel's Chasm 2: את": pageId: 45641 steam: 414580 -'Uriel''s Chasm 3: Gelshock': +"Uriel's Chasm 3: Gelshock": pageId: 132050 steam: 1050730 Urizen Shadows of the Cold: pageId: 39918 steam: 397700 templates: - - '{{Game data/saves|Windows|{{p|appdata}}\URIZEN_SHADOWS_OF_THE_COLD\urizensaveone.sav}}' + - "{{Game data/saves|Windows|{{p|appdata}}\\URIZEN_SHADOWS_OF_THE_COLD\\urizensaveone.sav}}" Urja: pageId: 48991 steam: 338710 -'Urtuk: The Desolation': +"Urtuk: The Desolation": gog: 2104869248 pageId: 151242 steam: 1181830 -'Uru: Ages Beyond Myst': +"Uru: Ages Beyond Myst": gog: 1207658827 pageId: 16887 steam: 63650 templates: - - |- - {{Game data/config|Windows|{{P|game}}\{{file|plClientSetup.cfg}}| - {{P|game}}\{{folder|init}}}} - - '{{Game data/saves|Windows|{{p|game}}\sav}}' -'Usagi Yojimbo: Way of the Ronin': + - "{{Game data/config|Windows|{{P|game}}\\{{file|plClientSetup.cfg}}|\n{{P|game}}\\{{folder|init}}}}" + - "{{Game data/saves|Windows|{{p|game}}\\sav}}" +"Usagi Yojimbo: Way of the Ronin": pageId: 48847 steam: 338260 Use Your Brain!: @@ -184896,7 +179788,7 @@ Use Your Words: Useless Box: pageId: 112938 steam: 365980 -'Useless Box: The Game': +"Useless Box: The Game": pageId: 150291 steam: 1176800 Usotsuki Game: @@ -184909,31 +179801,22 @@ Usurper: pageId: 62346 steam: 603020 templates: - - '{{Game data/saves|Windows|{{P|localappdata}}\Usurper}}' -'Utawarerumono: Mask of Deception': + - "{{Game data/saves|Windows|{{P|localappdata}}\\Usurper}}" +"Utawarerumono: Mask of Deception": pageId: 156326 steam: 1149550 templates: - - >- - {{Game data/saves|Windows|{{p|userprofile\Documents}}\AQUAPLUS\うたわれるもの - 偽りの仮面\Save\*.DAT|{{p|userprofile\Documents}}\AQUAPLUS\Utawarerumono Mask of - Deception\Save\*.DAT|{{p|userprofile\Documents}}\AQUAPLUS\受讚頌者 虛偽的假面\Save\*.DAT}} -'Utawarerumono: Mask of Truth': + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\AQUAPLUS\\うたわれるもの 偽りの仮面\\Save\\*.DAT|{{p|userprofile\\Documents}}\\AQUAPLUS\\Utawarerumono Mask of Deception\\Save\\*.DAT|{{p|userprofile\\Documents}}\\AQUAPLUS\\受讚頌者 虛偽的假面\\Save\\*.DAT}}" +"Utawarerumono: Mask of Truth": pageId: 156328 steam: 1151440 templates: - - >- - {{Game data/saves|Windows|{{p|userprofile\Documents}}\AQUAPLUS\うたわれるもの - 二人の白皇\Save\*.DAT|{{p|userprofile\Documents}}\AQUAPLUS\Utawarerumono Mask of - Truth\Save\*.DAT|{{p|userprofile\Documents}}\AQUAPLUS\受讚頌者 二人的白皇\Save\*.DAT}} -'Utawarerumono: Prelude to the Fallen': + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\AQUAPLUS\\うたわれるもの 二人の白皇\\Save\\*.DAT|{{p|userprofile\\Documents}}\\AQUAPLUS\\Utawarerumono Mask of Truth\\Save\\*.DAT|{{p|userprofile\\Documents}}\\AQUAPLUS\\受讚頌者 二人的白皇\\Save\\*.DAT}}" +"Utawarerumono: Prelude to the Fallen": pageId: 165997 steam: 1151450 templates: - - >- - {{Game data/saves|Windows|{{p|userprofile\Documents}}\AQUAPLUS\Utawarerumono Prelude to the - Fallen\Save\*.DAT|{{p|userprofile\Documents}}\AQUAPLUS\うたわれるもの - 散りゆく者への子守唄\Save\*.DAT|{{p|userprofile\Documents}}\AQUAPLUS\受讚頌者 給逝者的搖籃曲\Save\*.DAT}} + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\AQUAPLUS\\Utawarerumono Prelude to the Fallen\\Save\\*.DAT|{{p|userprofile\\Documents}}\\AQUAPLUS\\うたわれるもの 散りゆく者への子守唄\\Save\\*.DAT|{{p|userprofile\\Documents}}\\AQUAPLUS\\受讚頌者 給逝者的搖籃曲\\Save\\*.DAT}}" Uterine Supremacy: pageId: 150150 steam: 1174050 @@ -184946,18 +179829,18 @@ Utopia 9 - A Volatile Vacation: Utopia City: pageId: 31219 templates: - - '{{Game data/config|Windows|{{p|game}}\data\environment\}}' + - "{{Game data/config|Windows|{{p|game}}\\data\\environment\\}}" Utopia Syndrome: pageId: 122916 steam: 955020 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Andrew Averkin\Utopia Syndrome\}}' + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Andrew Averkin\\Utopia Syndrome\\}}" Uurnog Uurnlimited: pageId: 69401 steam: 678850 templates: - - '{{Game data/config|Windows|{{P|userprofile}}\AppData\LocalLow\Nifflas\Uurnog Uurnlimited\Settings.xml}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Nifflas\Uurnog Uurnlimited\*.json}}' + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Nifflas\\Uurnog Uurnlimited\\Settings.xml}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Nifflas\\Uurnog Uurnlimited\\*.json}}" Uuu ska so smislom: pageId: 130137 steam: 1018420 @@ -184971,8 +179854,8 @@ V: pageId: 65429 steam: 643270 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\SOFTWARE\Creability\V\}}' - - '{{Game data/saves|Windows|{{P|hkcu}}\SOFTWARE\Creability\V\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\SOFTWARE\\Creability\\V\\}}" + - "{{Game data/saves|Windows|{{P|hkcu}}\\SOFTWARE\\Creability\\V\\}}" V ARRR: pageId: 33896 steam: 478950 @@ -184983,8 +179866,8 @@ V Rising: pageId: 177705 steam: 1604030 templates: - - '{{Game data/config|Windows|{{P|userprofile\appdata\locallow}}\Stunlock Studios\VRising}}' - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Stunlock Studios\VRising}}' + - "{{Game data/config|Windows|{{P|userprofile\\appdata\\locallow}}\\Stunlock Studios\\VRising}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Stunlock Studios\\VRising}}" V-Katsu: pageId: 102405 steam: 856620 @@ -184994,21 +179877,21 @@ V-Racer Hoverbike: V-Rally 2 Expert Edition: pageId: 22617 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/saves|Windows|{{p|game}}\Saves}}' + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\Saves}}" V-Rally 3: pageId: 59561 V-Rally 4: pageId: 90413 steam: 658700 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\VR4\UserSettings.cfg}}' - - '{{Game data/saves|Windows|{{p|steam}}\userdata\{{p|uid}}\658700\remote\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\VR4\\UserSettings.cfg}}" + - "{{Game data/saves|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\658700\\remote\\}}" V-Rally Multiplayer Championship Edition: pageId: 164217 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/saves|Windows|{{p|game}}\Saves}}' + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\Saves}}" V.I.P.: pageId: 172563 V.L.A.D.i.K: @@ -185026,28 +179909,26 @@ V1RUZ: V8 Challenge: pageId: 189539 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\SOFTWARE\Digital Illusions\V8 Challenge\Configurations\Default\}}' - - '{{Game data/saves|Windows|{{P|game}}\SavedGames\}}' -'VA-11 Hall-A: Cyberpunk Bartender Action': + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\Digital Illusions\\V8 Challenge\\Configurations\\Default\\}}" + - "{{Game data/saves|Windows|{{P|game}}\\SavedGames\\}}" +"VA-11 Hall-A: Cyberpunk Bartender Action": gog: 2074961301 pageId: 34164 steam: 447530 templates: - - '{{Game data/config|Windows|{{P|game}}\options.ini|{{p|localappdata}}\VA_11_Hall_A\saves\Waifu Preferences.txt}}' - - '{{Game data/config|Linux|{{P|linuxhome}}/.config/VA_11_Hall_A/saves/waifu preferences.txt}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\VA_11_Hall_A\saves}}' - - >- - {{Game data/saves|Microsoft - Store|{{p|localappdata}}\Packages\YsbrydGames.VA-11Hall-ACyberpunkBartenderAction_cqfre349xfmdg\SystemAppData\wgs}} - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/com.yoyogames.macyoyorunner/saves}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/VA_11_Hall_A/saves}}' + - "{{Game data/config|Windows|{{P|game}}\\options.ini|{{p|localappdata}}\\VA_11_Hall_A\\saves\\Waifu Preferences.txt}}" + - "{{Game data/config|Linux|{{P|linuxhome}}/.config/VA_11_Hall_A/saves/waifu preferences.txt}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\VA_11_Hall_A\\saves}}" + - "{{Game data/saves|Microsoft Store|{{p|localappdata}}\\Packages\\YsbrydGames.VA-11Hall-ACyberpunkBartenderAction_cqfre349xfmdg\\SystemAppData\\wgs}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/com.yoyogames.macyoyorunner/saves}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/VA_11_Hall_A/saves}}" VAD - Virtually Assured Destruction: pageId: 94020 steam: 807430 VALHALL: pageId: 109540 steam: 908740 -VANILLA REFEREE'S GARDEN: +"VANILLA REFEREE'S GARDEN": pageId: 108486 steam: 917690 VASARA Collection: @@ -185060,9 +179941,9 @@ VApe Escape: pageId: 129926 steam: 1035890 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\vapeescape\vapeescape_options.json}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\vapeescape\vapeescape.json}}' -'VCB: Why City 4k': + - "{{Game data/config|Windows|{{P|localappdata}}\\vapeescape\\vapeescape_options.json}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\vapeescape\\vapeescape.json}}" +"VCB: Why City 4k": pageId: 132506 steam: 1051810 VCoder Hero: @@ -185102,7 +179983,7 @@ VINE: pageId: 188618 steam: 1832130 templates: - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\FrogParty\VINE\}}' + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\FrogParty\\VINE\\}}" VIP Shuttle: pageId: 129759 steam: 1030730 @@ -185130,7 +180011,7 @@ VQD: VR - Killing Town: pageId: 66776 steam: 676060 -'VR Amazing Files: Horror Hospital': +"VR Amazing Files: Horror Hospital": pageId: 56453 steam: 517400 VR Apocalypse: @@ -185236,7 +180117,7 @@ VR Giants: pageId: 145499 steam: 1124160 templates: - - '{{Game data/saves|Windows| %APPDATA%\..\LocalLow\Risa Interactive\VR Giants\SaveGame }}' + - "{{Game data/saves|Windows| %APPDATA%\\..\\LocalLow\\Risa Interactive\\VR Giants\\SaveGame }}" VR GirlFriend: pageId: 54961 steam: 563760 @@ -185258,7 +180139,7 @@ VR Home: VR Hybrid War 2117: pageId: 75455 steam: 741360 -'VR INTERACTIVE TRAILER: Runes': +"VR INTERACTIVE TRAILER: Runes": pageId: 120828 steam: 970980 VR Interior Designer Pro: @@ -185319,7 +180200,7 @@ VR Ping Pong Pro: VR PlayRoom: pageId: 80330 steam: 771670 -'VR PlayRoom : Episode Beginning (Escape Room - Horror)': +"VR PlayRoom : Episode Beginning (Escape Room - Horror)": pageId: 81046 steam: 788900 VR Puzzle Box: @@ -185340,7 +180221,7 @@ VR Retreat: VR Rhythm Action Seiya: pageId: 78717 steam: 757100 -'VR Roller Coaster: Cave Depths': +"VR Roller Coaster: Cave Depths": pageId: 76111 steam: 748270 VR Rome: @@ -185364,7 +180245,7 @@ VR Shooter Guns: VR Slots: pageId: 107588 steam: 876340 -'VR Slugger: The Toy Field': +"VR Slugger: The Toy Field": pageId: 63276 steam: 616890 VR Smash Park: @@ -185373,7 +180254,7 @@ VR Smash Park: VR Snowballs: pageId: 55546 steam: 574190 -VR Soccer '96: +"VR Soccer '96": gog: 1207658783 pageId: 19682 steam: 774501 @@ -185410,19 +180291,19 @@ VR Theme Park Rides: VR Triber: pageId: 73207 steam: 680170 -'VR Ultimate Paintball: Heartbreak, Regret & Paintbots': +"VR Ultimate Paintball: Heartbreak, Regret & Paintbots": pageId: 41707 steam: 511830 -'VR health care (aerobic exercise): VR sport and cycling in Maya gardens': +"VR health care (aerobic exercise): VR sport and cycling in Maya gardens": pageId: 132036 steam: 1050470 -'VR health care (head and neck exercise): Snake Fighting': +"VR health care (head and neck exercise): Snake Fighting": pageId: 132071 steam: 1046380 -'VR health care (running exercise): VR walking and running along beautiful seabeach and sakura forests': +"VR health care (running exercise): VR walking and running along beautiful seabeach and sakura forests": pageId: 134409 steam: 1072370 -'VR health care (shoulder joint exercise): Apple Grove Picking Games': +"VR health care (shoulder joint exercise): Apple Grove Picking Games": pageId: 129993 steam: 1044240 VR takibi: @@ -185434,19 +180315,19 @@ VR the Anime Girls Method: VR-Xterminator: pageId: 55508 steam: 462670 -'VR0GU3: Unapologetic Hardcore VR Edition': +"VR0GU3: Unapologetic Hardcore VR Edition": pageId: 56088 steam: 458190 -'VR2: Vacate 2 Rooms': +"VR2: Vacate 2 Rooms": pageId: 92207 steam: 595300 VR2Space: pageId: 67851 steam: 680560 -'VR: The Puzzle Room': +"VR: The Puzzle Room": pageId: 56064 steam: 576620 -'VR: Vacate the Room': +"VR: Vacate the Room": pageId: 35168 steam: 494810 VRAdventure: @@ -185459,13 +180340,9 @@ VRChat: pageId: 56992 steam: 438100 templates: - - >- - {{Game - data/config|Windows|{{p|hkcu}}\Software\VRChat\VRChat|{{p|userprofile\appdata\locallow}}\VRChat\VRChat\config.json}} - - >- - {{Game - data/saves|Windows|{{p|userprofile\appdata\locallow}}\VRChat\VRChat\LocalAvatarData\|{{p|userprofile\appdata\locallow}}\VRChat\VRChat\LocalPlayerModerations\}} -'VRGround: Crazy Farm': + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\VRChat\\VRChat|{{p|userprofile\\appdata\\locallow}}\\VRChat\\VRChat\\config.json}}" + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\VRChat\\VRChat\\LocalAvatarData\\|{{p|userprofile\\appdata\\locallow}}\\VRChat\\VRChat\\LocalPlayerModerations\\}}" +"VRGround: Crazy Farm": pageId: 99910 steam: 876130 VRIQ: @@ -185476,7 +180353,7 @@ VRITRA COMPLETE EDITION: steam: 892830 steamSide: - 921830 -'VRLab Academy: Anatomy VR': +"VRLab Academy: Anatomy VR": pageId: 128360 steam: 1007230 VRLife: @@ -185488,10 +180365,10 @@ VRMultigames: VRNinja: pageId: 38939 steam: 509170 -'VROOM: Aerie': +"VROOM: Aerie": pageId: 47519 steam: 375190 -'VROOM: Galleon': +"VROOM: Galleon": pageId: 45886 steam: 411690 VRQ Test: @@ -185524,7 +180401,7 @@ VRange: VRbloX: pageId: 42533 steam: 495310 -'VRchaeology: Prologue': +"VRchaeology: Prologue": pageId: 54064 steam: 549920 VReakout: @@ -185597,8 +180474,8 @@ VTOL VR: pageId: 65477 steam: 667970 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Boundless Dynamics, LLC\VTOLVR\SaveData}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Boundless Dynamics, LLC\VTOLVR\SaveData}}' + - "{{Game data/config|Windows|{{p|appdata}}\\Boundless Dynamics, LLC\\VTOLVR\\SaveData}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Boundless Dynamics, LLC\\VTOLVR\\SaveData}}" VThree: pageId: 55958 steam: 567320 @@ -185613,39 +180490,39 @@ VVVVVV: pageId: 800 steam: 70300 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\VVVVVV\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/VVVVVV/}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/VVVVVV/}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\VVVVVV\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/VVVVVV/}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/VVVVVV/}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\VVVVVV\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/VVVVVV/}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/VVVVVV/}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\VVVVVV\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/VVVVVV/}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/VVVVVV/}}" Vacant: pageId: 68573 steam: 696190 -'Vacation Adventures: Cruise Director': +"Vacation Adventures: Cruise Director": pageId: 127281 steam: 1017440 -'Vacation Adventures: Cruise Director 2': +"Vacation Adventures: Cruise Director 2": pageId: 134633 steam: 1069720 -'Vacation Adventures: Park Ranger': +"Vacation Adventures: Park Ranger": pageId: 125050 steam: 1003670 -'Vacation Adventures: Park Ranger 2': +"Vacation Adventures: Park Ranger 2": pageId: 132067 steam: 1048420 -'Vacation Adventures: Park Ranger 3': +"Vacation Adventures: Park Ranger 3": pageId: 144321 steam: 1104840 -'Vacation Quest: Australia': +"Vacation Quest: Australia": pageId: 166158 -'Vacation Quest: The Hawaiian Islands': +"Vacation Quest: The Hawaiian Islands": pageId: 166156 Vacation Simulator: pageId: 77811 steam: 726830 templates: - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\Owlchemy Labs\Vacation Simulator\User}}' + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\Owlchemy Labs\\Vacation Simulator\\User}}" Vaccine: pageId: 57687 steam: 549950 @@ -185655,20 +180532,20 @@ Vaccine War: Vader Immortal: pageId: 133548 templates: - - '{{Game data/saves|Windows|{{P|localappdata}}\WKND\Saved\SaveGames\}}' -'Vadine: Bite-Man': + - "{{Game data/saves|Windows|{{P|localappdata}}\\WKND\\Saved\\SaveGames\\}}" +"Vadine: Bite-Man": pageId: 98312 steam: 830390 Vagabond: pageId: 136224 templates: - - '{{Game data/config|Windows|{{P|appdata}}\Vagabond\userconfig.cfg}}' - - '{{Game data/saves|Windows|{{P|appdata}}\Vagabond\saves\}}' + - "{{Game data/config|Windows|{{P|appdata}}\\Vagabond\\userconfig.cfg}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\Vagabond\\saves\\}}" Vagante: pageId: 37154 steam: 323220 templates: - - '{{Game data/config|Windows|{{P|game}}\config\}}' + - "{{Game data/config|Windows|{{P|game}}\\config\\}}" Vagrant Fury: pageId: 112100 steam: 881260 @@ -185686,11 +180563,9 @@ Vagrus - The Riven Realms: pageId: 105721 steam: 909660 templates: - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Lost Pilgrims Studio\Vagrus\Data\Vanilla\SaveGame}}' - - >- - {{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/Lost Pilgrims - Studio/Vagrus/Data/Vanilla/SaveGame}} - - '{{Game data/saves|Linux|{{P|linuxhome}}/.config/unity3d/Lost Pilgrims Studio/Vagrus/Data/Vanilla/SaveGame}}' + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Lost Pilgrims Studio\\Vagrus\\Data\\Vanilla\\SaveGame}}" + - "{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/Lost Pilgrims Studio/Vagrus/Data/Vanilla/SaveGame}}" + - "{{Game data/saves|Linux|{{P|linuxhome}}/.config/unity3d/Lost Pilgrims Studio/Vagrus/Data/Vanilla/SaveGame}}" Vail VR: pageId: 181451 steam: 801550 @@ -185700,29 +180575,29 @@ VainPlanet: Vainglory: pageId: 127187 steam: 1025580 -Vairon's Wrath: +"Vairon's Wrath": pageId: 42868 steam: 453320 Valakas Story: pageId: 150790 steam: 1171310 -'Valcarta: Rise of the Demon': +"Valcarta: Rise of the Demon": pageId: 42465 steam: 488220 -'Valdis Story: Abyssal City': +"Valdis Story: Abyssal City": gog: 1207660143 pageId: 14278 steam: 252030 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Valdis_Story_AC\vs_settings.ini}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Valdis_Story_AC\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Valdis_Story_AC\\vs_settings.ini}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Valdis_Story_AC\\}}" ValeGuard: pageId: 93643 steam: 788700 -'Valencia Saga: Sophia''s Rebirth': +"Valencia Saga: Sophia's Rebirth": pageId: 112304 renamedFrom: - - '巴伦西亚传说:索菲亚的重生 Valencia Saga:Sophia''s rebirth' + - "巴伦西亚传说:索菲亚的重生 Valencia Saga:Sophia's rebirth" steam: 927310 Valens: pageId: 44545 @@ -185739,12 +180614,12 @@ Valentines Desire - Steam Edition: Valentino Rossi The Game Compact: pageId: 57076 steam: 505120 -'Valentino Rossi: The Game - MotoGP 16': +"Valentino Rossi: The Game - MotoGP 16": pageId: 30028 steam: 438430 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Milestone\MotoGPVR46\Config.ini}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Milestone\MotoGPVR46\Saves\}}' + - "{{Game data/config|Windows|{{p|appdata}}\\Milestone\\MotoGPVR46\\Config.ini}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Milestone\\MotoGPVR46\\Saves\\}}" Valerian Tales: pageId: 96247 steam: 849390 @@ -185756,15 +180631,9 @@ Valfaris: pageId: 63644 steam: 600130 templates: - - >- - {{Game data/config|Windows|{{P|userprofile}}\AppData\LocalLow\Steel - Mantis\Valfaris\Valfaris_Settings.dat|{{P|userprofile}}\AppData\LocalLow\Steel - Mantis\Valfaris\Valfaris_Controls.dat|{{P|hkcu}}\Software\Steel Mantis\Valfaris\}} - - >- - {{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Steel - Mantis\Valfaris\Valfaris_Slot_*.dat|{{P|userprofile}}\AppData\LocalLow\Steel - Mantis\Valfaris\Valfaris_Progress.dat}} -'Valgrave: Immortal Plains': + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Steel Mantis\\Valfaris\\Valfaris_Settings.dat|{{P|userprofile}}\\AppData\\LocalLow\\Steel Mantis\\Valfaris\\Valfaris_Controls.dat|{{P|hkcu}}\\Software\\Steel Mantis\\Valfaris\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Steel Mantis\\Valfaris\\Valfaris_Slot_*.dat|{{P|userprofile}}\\AppData\\LocalLow\\Steel Mantis\\Valfaris\\Valfaris_Progress.dat}}" +"Valgrave: Immortal Plains": pageId: 148973 steam: 1076500 Valhall 2000: @@ -185773,36 +180642,36 @@ Valhall 2000: Valhalla Chronicles: pageId: 131780 templates: - - '{{Game data/saves|Windows|{{p|game}}\Savegames\*.sav}}' + - "{{Game data/saves|Windows|{{p|game}}\\Savegames\\*.sav}}" Valhalla Hills: gog: 1445528240 pageId: 34300 steam: 351910 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\ValhallaHills\Saved\Config}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\ValhallaHills\Saved\SaveGames}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/Epic/ValhallaHills}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\ValhallaHills\\Saved\\Config}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\ValhallaHills\\Saved\\SaveGames}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/Epic/ValhallaHills}}" Valheim: pageId: 113522 steam: 892970 templates: - - '{{Game data/config|Windows|{{p|HKCU}}\SOFTWARE\IronGate\Valheim\}}' - - '{{Game data/config|Linux|{{p|xdgconfighome}}/unity3d/IronGate/Valheim/prefs}}' - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\IronGate\Valheim\}}' - - '{{Game data/saves|Linux|{{p|xdgconfighome}}/unity3d/IronGate/Valheim/}}' + - "{{Game data/config|Windows|{{p|HKCU}}\\SOFTWARE\\IronGate\\Valheim\\}}" + - "{{Game data/config|Linux|{{p|xdgconfighome}}/unity3d/IronGate/Valheim/prefs}}" + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\IronGate\\Valheim\\}}" + - "{{Game data/saves|Linux|{{p|xdgconfighome}}/unity3d/IronGate/Valheim/}}" Valiant: pageId: 43235 steam: 344180 -'Valiant Hearts: The Great War': +"Valiant Hearts: The Great War": pageId: 17582 steam: 260230 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\ValiantHearts\options}}' - - '{{Game data/saves|Windows|{{p|uplay}}\savegames\{{p|uid}}\661\|{{p|uplay}}\savegames\{{p|uid}}\659\}}' -'Valiant Knights: Typing Battle': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\ValiantHearts\\options}}" + - "{{Game data/saves|Windows|{{p|uplay}}\\savegames\\{{p|uid}}\\661\\|{{p|uplay}}\\savegames\\{{p|uid}}\\659\\}}" +"Valiant Knights: Typing Battle": pageId: 59810 steam: 612810 -'Valiant: Resurrection': +"Valiant: Resurrection": pageId: 47964 steam: 368250 Valknut: @@ -185812,16 +180681,16 @@ Valkyria Chronicles: pageId: 20645 steam: 294860 templates: - - '{{Game data/config|Steam|{{p|game}}\*.xml}}' - - '{{Game data/config|Microsoft Store|{{P|localappdata}}\SEGA\Valkyria Chronicles\}}' - - '{{Game data/saves|Steam|{{p|game}}\savedata\{{p|uid}}\}}' - - '{{Game data/saves|Microsoft Store|{{P|localappdata}}\SEGA\Valkyria Chronicles\savedata\}}' + - "{{Game data/config|Steam|{{p|game}}\\*.xml}}" + - "{{Game data/config|Microsoft Store|{{P|localappdata}}\\SEGA\\Valkyria Chronicles\\}}" + - "{{Game data/saves|Steam|{{p|game}}\\savedata\\{{p|uid}}\\}}" + - "{{Game data/saves|Microsoft Store|{{P|localappdata}}\\SEGA\\Valkyria Chronicles\\savedata\\}}" Valkyria Chronicles 4: pageId: 97289 steam: 790820 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\SEGA\VC4\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\SEGA\VC4\gamesaves\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\SEGA\\VC4\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\SEGA\\VC4\\gamesaves\\}}" Valkyrie Blade VR: pageId: 60930 steam: 619020 @@ -185831,38 +180700,32 @@ Valkyrie Connect: - Valkyrie connect steam: 1222800 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\SOFTWARE\Ateam\Valkyrie Connect WW\}}' -'Valkyrie Drive: Bhikkhuni': + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\Ateam\\Valkyrie Connect WW\\}}" +"Valkyrie Drive: Bhikkhuni": pageId: 62133 steam: 550080 templates: - - '{{Game data/saves|Steam|{{p|game}}/DeploymentRoot/savedata/}}' + - "{{Game data/saves|Steam|{{p|game}}/DeploymentRoot/savedata/}}" Valkyrie Elysium: pageId: 175684 steam: 1963210 templates: - - >- - {{Game data/config|Windows|{{p|localappdata}}\VALKYRIE_ELYSIUM\Saved\Config\WindowsNoEditor\{{note|Appears to - contain no useful .ini files by default.}}}} - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\My Games\VALKYRIE ELYSIUM\Steam\{{p|uid}}\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\VALKYRIE_ELYSIUM\\Saved\\Config\\WindowsNoEditor\\{{note|Appears to contain no useful .ini files by default.}}}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\My Games\\VALKYRIE ELYSIUM\\Steam\\{{p|uid}}\\}}" Valkyrie no Densetsu: pageId: 188943 Valkyrius Prime: pageId: 41747 steam: 493670 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\documents}}\SavedGames\Valkyrius Prime\Valkyrius Prime - Data\Player*\settings.sav}} - - >- - {{Game data/saves|Windows|{{p|userprofile\documents}}\SavedGames\Valkyrius Prime\Valkyrius Prime - Data\Player*\unlocks.sav}} + - "{{Game data/config|Windows|{{p|userprofile\\documents}}\\SavedGames\\Valkyrius Prime\\Valkyrius Prime Data\\Player*\\settings.sav}}" + - "{{Game data/saves|Windows|{{p|userprofile\\documents}}\\SavedGames\\Valkyrius Prime\\Valkyrius Prime Data\\Player*\\unlocks.sav}}" Valley: pageId: 36848 steam: 378610 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Blue Isle Studios\Valley\}}' - - '{{Game data/saves|Windows|{{p|steam}}\userdata\{{p|uid}}\378610\remote\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Blue Isle Studios\\Valley\\}}" + - "{{Game data/saves|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\378610\\remote\\}}" Valley Run: pageId: 141135 steam: 1091350 @@ -185887,38 +180750,36 @@ Valor Time: Valorant: pageId: 159027 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\VALORANT\Saved\Config}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\VALORANT\\Saved\\Config}}" Valortha: pageId: 57066 steam: 585680 -'Valthirian Arc: Hero School Story': +"Valthirian Arc: Hero School Story": pageId: 105119 steam: 785850 Valzar: pageId: 45164 steam: 405810 -'Vambrace: Cold Soul': +"Vambrace: Cold Soul": gog: 1075740587 pageId: 122620 steam: 904380 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\DevespressoGames\VambraceColdSoul\}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/DevespressoGames/VambraceColdSoul/}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\DevespressoGames\VambraceColdSoul\Vambrace.save}}' - - >- - {{Game data/saves|Microsoft - Store|{{P|localappdata}}\Packages\ChorusWorldwideGames.VambraceColdSoul_3e08f9hn67c02\SystemAppData\wgs\{{P|uid}}}} - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/DevespressoGames/VambraceColdSoul/Vambrace.save}}' -'Vampire & Monsters: Hidden Object Games': + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\DevespressoGames\\VambraceColdSoul\\}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/DevespressoGames/VambraceColdSoul/}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\DevespressoGames\\VambraceColdSoul\\Vambrace.save}}" + - "{{Game data/saves|Microsoft Store|{{P|localappdata}}\\Packages\\ChorusWorldwideGames.VambraceColdSoul_3e08f9hn67c02\\SystemAppData\\wgs\\{{P|uid}}}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/DevespressoGames/VambraceColdSoul/Vambrace.save}}" +"Vampire & Monsters: Hidden Object Games": pageId: 130575 steam: 1015080 Vampire Bloody Star X: pageId: 120812 steam: 964220 -'Vampire Legends: The True Story of Kisilova': +"Vampire Legends: The True Story of Kisilova": pageId: 38244 steam: 414660 -'Vampire Slave 1: A Yaoi Visual Novel': +"Vampire Slave 1: A Yaoi Visual Novel": pageId: 179000 steam: 1658830 Vampire Survivors: @@ -185928,98 +180789,92 @@ Vampire Survivors: - 2230760 - 2313550 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\poncle\Vampire Survivors}}' - - >- - {{Game - data/saves|Windows|{{p|appdata}}\Vampire_Survivors\saves|{{p|steam}}\userdata\{{p|uid}}\1794680\remote\SaveData}} - - '{{Game data/saves|Linux|{{p|xdgconfighome}}/Vampire_Survivors_{{p|uid}}/SaveData.sav}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\poncle\\Vampire Survivors}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Vampire_Survivors\\saves|{{p|steam}}\\userdata\\{{p|uid}}\\1794680\\remote\\SaveData}}" + - "{{Game data/saves|Linux|{{p|xdgconfighome}}/Vampire_Survivors_{{p|uid}}/SaveData.sav}}" Vampire of the Sands: pageId: 47215 steam: 386160 -'Vampire''s Fall: Origins': +"Vampire's Fall: Origins": gog: 1722265430 pageId: 151062 steam: 1167950 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Early Morning Studio\Vampire''s Fall: Origins}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Early Morning Studio\Vampire''s Fall_ Origins}}' -'Vampire: The Masquerade - Bloodhunt': + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Early Morning Studio\\Vampire's Fall: Origins}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Early Morning Studio\\Vampire's Fall_ Origins}}" +"Vampire: The Masquerade - Bloodhunt": pageId: 169169 renamedFrom: - Bloodhunt steam: 760160 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Tiger\Saved\Config\WindowsNoEditor\}}' -'Vampire: The Masquerade - Bloodlines': + - "{{Game data/config|Windows|{{P|localappdata}}\\Tiger\\Saved\\Config\\WindowsNoEditor\\}}" +"Vampire: The Masquerade - Bloodlines": gog: 1207659240 pageId: 311 steam: 2600 templates: - - '{{Game data/config|Windows|{{p|game}}\Vampire\cfg|{{p|hkcu}}\Software\Troika\Vampire}}' - - '{{Game data/saves|Windows|{{p|game}}\Vampire\save|{{p|game}}\Unofficial_Patch\Vampire\save}}' -'Vampire: The Masquerade - Bloodlines 2': + - "{{Game data/config|Windows|{{p|game}}\\Vampire\\cfg|{{p|hkcu}}\\Software\\Troika\\Vampire}}" + - "{{Game data/saves|Windows|{{p|game}}\\Vampire\\save|{{p|game}}\\Unofficial_Patch\\Vampire\\save}}" +"Vampire: The Masquerade - Bloodlines 2": gog: 1308733567 gogSide: - 1829472765 - 1851649095 pageId: 131333 steam: 532790 -'Vampire: The Masquerade - Coteries of New York': +"Vampire: The Masquerade - Coteries of New York": gog: 1636588470 pageId: 138057 steam: 1096410 templates: - - >- - {{Game data/config|Windows|{{P|userprofile}}\AppData\LocalLow\DrawDistance\VtM Coteries of New - York\Saves\Settings.save|{{P|hkcu}}\Software\DrawDistance\VtM Coteries of New York\}} - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\DrawDistance\VtM Coteries of New York\Saves\}}' -'Vampire: The Masquerade - Night Road': + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\DrawDistance\\VtM Coteries of New York\\Saves\\Settings.save|{{P|hkcu}}\\Software\\DrawDistance\\VtM Coteries of New York\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\DrawDistance\\VtM Coteries of New York\\Saves\\}}" +"Vampire: The Masquerade - Night Road": pageId: 161701 steam: 1290270 templates: - - '{{Game data/config|Windows|{{P|steam}}\userdata\{{P|uid}}\1290270\remote\}}' -'Vampire: The Masquerade - Out for Blood': + - "{{Game data/config|Windows|{{P|steam}}\\userdata\\{{P|uid}}\\1290270\\remote\\}}" +"Vampire: The Masquerade - Out for Blood": pageId: 161616 steam: 1290350 -'Vampire: The Masquerade - Parliament of Knives': +"Vampire: The Masquerade - Parliament of Knives": pageId: 161703 steam: 1266100 -'Vampire: The Masquerade - Redemption': +"Vampire: The Masquerade - Redemption": gog: 1207658831 pageId: 6979 steam: 559680 templates: - - '{{Game data/config|Windows|{{p|game}}\masquerade.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\SaveGames}}' -'Vampire: The Masquerade - Shadows of New York': + - "{{Game data/config|Windows|{{p|game}}\\masquerade.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\SaveGames}}" +"Vampire: The Masquerade - Shadows of New York": gog: 1881727161 pageId: 159136 steam: 1279630 templates: - - >- - {{Game data/config|Windows|{{P|userprofile}}\AppData\LocalLow\DrawDistance\VtM Shadows of New - York\Saves\Settings.save|{{P|hkcu}}\Software\DrawDistance\VtM Shadows of New York\}} - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\DrawDistance\VtM Shadows of New York\Saves\}}' -'Vampire: The Masquerade - Swansong': + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\DrawDistance\\VtM Shadows of New York\\Saves\\Settings.save|{{P|hkcu}}\\Software\\DrawDistance\\VtM Shadows of New York\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\DrawDistance\\VtM Shadows of New York\\Saves\\}}" +"Vampire: The Masquerade - Swansong": pageId: 148254 steam: 1299510 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Vampire\Saved\Config\WindowsNoEditor}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Vampire\Saved\SaveGames}}' -'Vampires Dawn 3: The Crimson Realm': + - "{{Game data/config|Windows|{{p|localappdata}}\\Vampire\\Saved\\Config\\WindowsNoEditor}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Vampire\\Saved\\SaveGames}}" +"Vampires Dawn 3: The Crimson Realm": gog: 1162270529 pageId: 185530 steam: 1361010 Vampires!: pageId: 70497 steam: 713050 -Vampires' Melody: +"Vampires' Melody": pageId: 164286 steam: 1377360 -'Vampires: Guide Them to Safety!': +"Vampires: Guide Them to Safety!": pageId: 49476 steam: 328780 -Vampirina's Nails: +"Vampirina's Nails": pageId: 103325 steam: 903200 Vampyr: @@ -186031,18 +180886,14 @@ Vampyr: steamSide: - 728850 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\AVGame\Saved\Config\WindowsNoEditor}}' - - >- - {{Game data/config|Microsoft - Store|{{P|localappdata}}\Packages\FocusHomeInteractiveSA.VAMPYR_4hny5m903y3g0\LocalCache\Local\AVGame\Saved\Config\WindowsNoEditor}} - - '{{Game data/saves|Windows|{{P|localappdata}}\AVGame\Saved\SaveGames}}' - - >- - {{Game data/saves|Microsoft - Store|{{P|localappdata}}\Packages\FocusHomeInteractiveSA.VAMPYR_4hny5m903y3g0\LocalCache\Local\AVGame\Saved\SaveGames}} -'Vampyr: Talisman of Invocation': + - "{{Game data/config|Windows|{{P|localappdata}}\\AVGame\\Saved\\Config\\WindowsNoEditor}}" + - "{{Game data/config|Microsoft Store|{{P|localappdata}}\\Packages\\FocusHomeInteractiveSA.VAMPYR_4hny5m903y3g0\\LocalCache\\Local\\AVGame\\Saved\\Config\\WindowsNoEditor}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\AVGame\\Saved\\SaveGames}}" + - "{{Game data/saves|Microsoft Store|{{P|localappdata}}\\Packages\\FocusHomeInteractiveSA.VAMPYR_4hny5m903y3g0\\LocalCache\\Local\\AVGame\\Saved\\SaveGames}}" +"Vampyr: Talisman of Invocation": pageId: 76497 templates: - - '{{Game data/saves|DOS|{{p|game}}\PLAYER.SAV}}' + - "{{Game data/saves|DOS|{{p|game}}\\PLAYER.SAV}}" Vanaris Tactics: gog: 1805248668 pageId: 172891 @@ -186051,21 +180902,21 @@ Vancouver 2010: pageId: 41169 steam: 34180 templates: - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\SEGA\Vancouver 2010\}}' + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\SEGA\\Vancouver 2010\\}}" Vandal Hearts: pageId: 181494 Vandals: pageId: 91096 steam: 809240 templates: - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\Arte\Vandals\Save\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/unity.Arte.Vandals/Save}}' + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\Arte\\Vandals\\Save\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/unity.Arte.Vandals/Save}}" Vane: pageId: 135474 steam: 1063310 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Friend&Foe\Vane\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Friend_Foe\Vane\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Friend&Foe\\Vane\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Friend_Foe\\Vane\\}}" Vanessa Saint-Pierre Delacroix and Her Nightmare: pageId: 187188 Vangers: @@ -186079,14 +180930,14 @@ Vanguard Princess: pageId: 12409 steam: 262150 templates: - - '{{Game data/config|Windows|{{p|game}}\game.ini}}' + - "{{Game data/config|Windows|{{p|game}}\\game.ini}}" Vanguard V: pageId: 62791 steam: 520120 -'Vanguard: Fight For Rudiarius': +"Vanguard: Fight For Rudiarius": pageId: 122636 steam: 953810 -'Vanguard: Normandy 1944': +"Vanguard: Normandy 1944": pageId: 128193 steam: 941850 Vanguardian: @@ -186095,7 +180946,7 @@ Vanguardian: Vanguards: pageId: 52273 steam: 546600 -'Vanilla Bagel: The Roguelike': +"Vanilla Bagel: The Roguelike": pageId: 33753 steam: 491510 Vanishing Realms: @@ -186105,14 +180956,14 @@ Vanquish: pageId: 62143 steam: 460810 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Vanquish\}}' - - '{{Game data/saves|Windows|{{p|steam}}\userdata\{{p|uid}}\460810\remote\}}' -'Vanquish: The Adventures of Lady Exton': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Vanquish\\}}" + - "{{Game data/saves|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\460810\\remote\\}}" +"Vanquish: The Adventures of Lady Exton": pageId: 35232 steam: 437380 Vantage Master Online: pageId: 170752 -'Vantage: Primitive Survival Game': +"Vantage: Primitive Survival Game": pageId: 64111 steam: 342910 Vaping Simulator: @@ -186129,9 +180980,9 @@ Vaporum: pageId: 70355 steam: 629690 templates: - - '{{Game data/config|Windows|{{P|game}}\Settings\}}' - - '{{Game data/saves|Windows|{{P|game}}\Saves\}}' -'Vaporum: Lockdown': + - "{{Game data/config|Windows|{{P|game}}\\Settings\\}}" + - "{{Game data/saves|Windows|{{P|game}}\\Saves\\}}" +"Vaporum: Lockdown": gog: 1326849971 pageId: 154261 steam: 1161880 @@ -186148,8 +180999,8 @@ Varenje: pageId: 58266 steam: 460060 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Play Cute\Varenje\}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Play Cute\Varenje\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Play Cute\\Varenje\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Play Cute\\Varenje\\}}" Varion: pageId: 87541 steam: 788330 @@ -186184,7 +181035,7 @@ Vault of the Void: pageId: 157128 steam: 1135810 templates: - - '{{Game data/saves|Windows|{{p|localappdata}}\VaultoftheVoid\Saves\}}' + - "{{Game data/saves|Windows|{{p|localappdata}}\\VaultoftheVoid\\Saves\\}}" VeLM: pageId: 135671 steam: 1058600 @@ -186224,34 +181075,26 @@ Vector Thrust: pageId: 19428 steam: 242130 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/saves|Windows|{{p|game}}\saves\}}' + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\saves\\}}" Vector Velocity: pageId: 76167 steam: 751480 -Vector's Adventures: +"Vector's Adventures": pageId: 95077 steam: 773870 VectorMan: pageId: 30879 steam: 34280 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\SEGA Mega Drive - Classics\setup.dat|{{p|userprofile\Documents}}\SEGA Genesis Classics\setup.dat}} - - >- - {{Game data/saves|Windows|{{p|userprofile\Documents}}\SEGA Mega Drive - Classics\0010\|{{p|userprofile\Documents}}\SEGA Genesis Classics\0010\}} + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\SEGA Mega Drive Classics\\setup.dat|{{p|userprofile\\Documents}}\\SEGA Genesis Classics\\setup.dat}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\SEGA Mega Drive Classics\\0010\\|{{p|userprofile\\Documents}}\\SEGA Genesis Classics\\0010\\}}" VectorMan 2: pageId: 30882 steam: 211208 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\SEGA Mega Drive - Classics\setup.dat|{{p|userprofile\Documents}}\SEGA Genesis Classics\setup.dat}} - - >- - {{Game data/saves|Windows|{{p|userprofile\Documents}}\SEGA Mega Drive - Classics\0056\|{{p|userprofile\Documents}}\SEGA Genesis Classics\0056\}} + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\SEGA Mega Drive Classics\\setup.dat|{{p|userprofile\\Documents}}\\SEGA Genesis Classics\\setup.dat}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\SEGA Mega Drive Classics\\0056\\|{{p|userprofile\\Documents}}\\SEGA Genesis Classics\\0056\\}}" VectorWars: pageId: 61506 steam: 600350 @@ -186281,8 +181124,8 @@ Veer: pageId: 43620 steam: 405530 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Some Fish\Veer\}}' -'Vega Motions: Project Unleashed': + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Some Fish\\Veer\\}}" +"Vega Motions: Project Unleashed": pageId: 157245 steam: 1172790 Vega Tank: @@ -186294,7 +181137,7 @@ Vegas Party: Vegas Slot: pageId: 138590 steam: 1094880 -'Vegas: Make It Big': +"Vegas: Make It Big": pageId: 41395 steam: 6210 Vegetaball: @@ -186334,14 +181177,14 @@ Veil of Darkness: pageId: 174054 steam: 2414320 templates: - - '{{Game data/saves|DOS|{{p|game}}\SAVES}}' + - "{{Game data/saves|DOS|{{p|game}}\\SAVES}}" Veiled Experts: pageId: 178292 renamedFrom: - VEILED EXPERTS steam: 1934780 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\VeiledExperts\Saved\Config}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\VeiledExperts\\Saved\\Config}}" Veilia: pageId: 36892 steam: 516920 @@ -186364,8 +181207,8 @@ Velocity 2X: pageId: 46813 steam: 337180 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Sierra\Velocity2X\}}' - - '{{Game data/saves|Windows|{{p|steam}}\userdata\{{p|uid}}\337180\}}' + - "{{Game data/config|Windows|{{p|appdata}}\\Sierra\\Velocity2X\\}}" + - "{{Game data/saves|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\337180\\}}" Velocity G: pageId: 109536 steam: 908260 @@ -186383,8 +181226,8 @@ Velvet Assassin: pageId: 5107 steam: 16720 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Velvet Assassin\|{{p|game}}\aio\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Velvet Assassin\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Velvet Assassin\\|{{p|game}}\\aio\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Velvet Assassin\\}}" Velvet Guard: pageId: 90281 steam: 822810 @@ -186399,38 +181242,36 @@ Venandi In Silva: steam: 1091070 Vendetta Online: pageId: 168662 -'Vendetta: Curse of Raven''s Cry': +"Vendetta: Curse of Raven's Cry": pageId: 17741 steam: 386280 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Reality Pump\VCR\Game\}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.VCR}}' - - '{{Game data/saves|Windows|{{p|steam}}\userdata\{{p|uid}}\386280\remote\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Reality Pump\\VCR\\Game\\}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.VCR}}" + - "{{Game data/saves|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\386280\\remote\\}}" Venetica: gog: 1345182195 pageId: 24000 steam: 338140 templates: - - >- - {{Game - data/config|Windows|{{p|userprofile\Documents}}\Venetica\settings-user.ini|{{p|userprofile\Documents}}\Venetica\action_bindings-user.ini}} - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Venetica\save\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Venetica\\settings-user.ini|{{p|userprofile\\Documents}}\\Venetica\\action_bindings-user.ini}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Venetica\\save\\}}" Vengeance of Excalibur: pageId: 26615 Vengeance of Mr. Peppermint: gog: 2051215980 pageId: 190724 steam: 2287560 -Vengeance ~ In my family's name: +"Vengeance ~ In my family's name": pageId: 145922 steam: 1143470 -'Vengeance: Lost Love': +"Vengeance: Lost Love": pageId: 64757 steam: 665510 Vengeful Bat Dungeon Crawler: pageId: 132194 steam: 1054620 -'Vengeful Guardian: Moonrider': +"Vengeful Guardian: Moonrider": pageId: 185829 steam: 1942010 Vengeful Heart: @@ -186443,14 +181284,14 @@ Venice: pageId: 16603 steam: 3490 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/saves|Windows|{{p|programdata}}\Steam\Venice\userdata}}' + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{p|programdata}}\\Steam\\Venice\\userdata}}" Venineth: pageId: 124500 steam: 976500 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Game\Saved\Config\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Game\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Game\\Saved\\Config\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Game\\Saved\\SaveGames\\}}" Ventura Inc: pageId: 94007 steam: 660730 @@ -186466,27 +181307,27 @@ Venture Kid: Venture Seas: pageId: 154053 steam: 1096520 -'VentureVerse: Legend of Ulora': +"VentureVerse: Legend of Ulora": pageId: 104857 steam: 627570 -'VenusBlood Frontier: International': +"VenusBlood Frontier: International": gog: 1347682775 pageId: 153985 renamedFrom: - VenusBlood FRONTIER International steam: 1189440 -'VenusBlood Hollow: International': +"VenusBlood Hollow: International": gog: 1840370563 pageId: 173605 steam: 1788780 Venusian Vengeance: pageId: 48355 steam: 351240 -'Vera Jones: La Légende Des Sept Reliques': +"Vera Jones: La Légende Des Sept Reliques": pageId: 61881 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\ClimberGirl\config.cfg}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\ClimberGirl\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\ClimberGirl\\config.cfg}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\ClimberGirl\\}}" Vera Swings: pageId: 94419 steam: 833440 @@ -186500,16 +181341,16 @@ Verdict Guilty: pageId: 33844 steam: 449210 templates: - - '{{Game data/config|Windows|{{p|game}}\data\save}}' - - '{{Game data/saves|Windows|{{p|game}}\data\save}}' + - "{{Game data/config|Windows|{{p|game}}\\data\\save}}" + - "{{Game data/saves|Windows|{{p|game}}\\data\\save}}" Verdun: pageId: 10581 steam: 242860 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\WW1 Game Series\WW1 Game Series\}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Verdun/Verdun/}}' - - '{{Game data/saves|Steam|{{P|steam}}\userdata\{{P|uid}}\242860\remote\}}' -'Verge: Lost Chapter': + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\WW1 Game Series\\WW1 Game Series\\}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Verdun/Verdun/}}" + - "{{Game data/saves|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\242860\\remote\\}}" +"Verge: Lost Chapter": pageId: 46184 steam: 400740 Veritas: @@ -186522,15 +181363,15 @@ Verlet Swing: pageId: 93309 steam: 811870 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Flamebait Games\Verlet Swing\}}' - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Flamebait Games\Verlet Swing\*.xml}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Flamebait Games\\Verlet Swing\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Flamebait Games\\Verlet Swing\\*.xml}}" Verlies II: pageId: 46288 steam: 371220 -'Vermillion Watch: Moorgate Accord': +"Vermillion Watch: Moorgate Accord": pageId: 35214 steam: 485290 -'Vermillion Watch: Parisian Pursuit': +"Vermillion Watch: Parisian Pursuit": pageId: 140968 steam: 1116700 Vermin Hunter: @@ -186539,16 +181380,16 @@ Vermin Hunter: Verminest: pageId: 131350 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Verminest\config.ini}}' - - '{{Game data/saves|Windows|No save functional.}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Verminest\\config.ini}}" + - "{{Game data/saves|Windows|No save functional.}}" Verminian Trap: pageId: 131765 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\verminian_trap_1_1\config.ini}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\verminian_trap_1_1\\config.ini}}" Vermis Orbita: pageId: 180277 steam: 2064320 -Vernon's Legacy: +"Vernon's Legacy": pageId: 41511 steam: 367010 Versailles 1685: @@ -186559,13 +181400,13 @@ Versus Game: Versus World: pageId: 80571 steam: 758560 -'Versus: Battle of the Gladiator': +"Versus: Battle of the Gladiator": pageId: 34006 steam: 467990 -'Versus: The Elite Trials': +"Versus: The Elite Trials": pageId: 55123 steam: 568610 -'Versus: The Lost Ones': +"Versus: The Lost Ones": pageId: 46765 steam: 396230 Vertex Dispenser: @@ -186576,8 +181417,8 @@ Vertical Drop Heroes HD: pageId: 19696 steam: 311480 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Vertical_Drop_Heroes_HD\vdh_settings_4.ini}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Vertical_Drop_Heroes_HD\vdh_save_11.ini}}' + - "{{Game data/config|Windows|{{p|appdata}}\\Vertical_Drop_Heroes_HD\\vdh_settings_4.ini}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Vertical_Drop_Heroes_HD\\vdh_save_11.ini}}" Vertical Fall: pageId: 122428 steam: 863310 @@ -186588,10 +181429,10 @@ Vertiginous Golf: pageId: 29553 steam: 272890 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\SOFTWARE\Kinelco & Lone Elk\Vertiginous Golf}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Preferences/unity.Kinelco _ Lone Elk.Vertiginous Golf.plist}}' - - '{{Game data/saves|Windows|{{p|hkcu}}\SOFTWARE\Kinelco & Lone Elk\Vertiginous Golf}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Preferences/unity.Kinelco _ Lone Elk.Vertiginous Golf.plist}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\Kinelco & Lone Elk\\Vertiginous Golf}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Preferences/unity.Kinelco _ Lone Elk.Vertiginous Golf.plist}}" + - "{{Game data/saves|Windows|{{p|hkcu}}\\SOFTWARE\\Kinelco & Lone Elk\\Vertiginous Golf}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Preferences/unity.Kinelco _ Lone Elk.Vertiginous Golf.plist}}" Vertigo (2016): pageId: 37086 steam: 465430 @@ -186613,11 +181454,11 @@ Very Very Valet: Verzaken!: pageId: 74902 steam: 739800 -Vespa's Test: +"Vespa's Test": pageId: 180255 steam: 2077430 templates: - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\2077430\}}' + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\2077430\\}}" Vesper: gog: 1833504782 pageId: 162913 @@ -186626,29 +181467,29 @@ Vessel: pageId: 3719 steam: 108500 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Vessel\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Vessel/}}' - - '{{Game data/config|Linux|{{P|xdgconfighome}}/Vessel/}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Vessel\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Vessel/}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/Vessel/}}' + - "{{Game data/config|Windows|{{p|appdata}}\\Vessel\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Vessel/}}" + - "{{Game data/config|Linux|{{P|xdgconfighome}}/Vessel/}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Vessel\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Vessel/}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/Vessel/}}" Vesta: pageId: 79838 steam: 646370 -'Vestaria Saga I: War of the Scions': +"Vestaria Saga I: War of the Scions": gog: 2147483095 pageId: 108740 renamedFrom: - Vestaria Saga steam: 694770 templates: - - '{{Game data/config|Windows|{{p|game}}\game.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\Save\}}' -'Vestaria Saga II: The Sacred Sword of Silvanister': + - "{{Game data/config|Windows|{{p|game}}\\game.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\Save\\}}" +"Vestaria Saga II: The Sacred Sword of Silvanister": gog: 2111440064 pageId: 173549 renamedFrom: - - 'Vestaria Saga Gaiden: The Sacred Sword of Silvanister' + - "Vestaria Saga Gaiden: The Sacred Sword of Silvanister" steam: 1811600 Vestige of the Past: pageId: 144981 @@ -186690,7 +181531,7 @@ Vianiato PopOut: Vibrant: pageId: 73663 steam: 712430 -'Vibur: DISINTEGRATION (Episode 1)': +"Vibur: DISINTEGRATION (Episode 1)": pageId: 135887 steam: 894350 Vicious Attack Llama Apocalypse: @@ -186730,14 +181571,12 @@ Victor Vran: - 462290 - 493880 templates: - - '{{Game data/config|Windows|{{p|APPDATA}}\Victor Vran\DeveloperStorage.lua}}' - - >- - {{Game data/config|OS X|{{p|osxhome}}/Library/Application - Support/com.haemimontgames.victorvran.steam/DeveloperStorage.lua}} - - '{{Game data/config|Linux|{{P|xdgdatahome}}/Victor Vran/Victor Vran/DeveloperStorage.lua}}' - - '{{Game data/saves|Windows|{{p|APPDATA}}\Victor Vran\{{p|uid}}\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/com.haemimontgames.victorvran.steam/{{p|uid}}/}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/Victor Vran/Victor Vran/{{p|uid}}/}}' + - "{{Game data/config|Windows|{{p|APPDATA}}\\Victor Vran\\DeveloperStorage.lua}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/com.haemimontgames.victorvran.steam/DeveloperStorage.lua}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/Victor Vran/Victor Vran/DeveloperStorage.lua}}" + - "{{Game data/saves|Windows|{{p|APPDATA}}\\Victor Vran\\{{p|uid}}\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/com.haemimontgames.victorvran.steam/{{p|uid}}/}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/Victor Vran/Victor Vran/{{p|uid}}/}}" Victoria (2019): pageId: 137384 steam: 913260 @@ -186745,38 +181584,34 @@ Victoria 3: pageId: 168678 steam: 529340 steamSide: - - 2071472 - - 2071471 - 2071470 + - 2071471 + - 2071472 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\Paradox Interactive\Victoria 3}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/Paradox Interactive/Victoria 3}}' - - >- - {{Game data/saves|Windows|{{P|userprofile\Documents}}\Paradox Interactive\Victoria 3\save - games|{{P|steam}}\{{P|uid}}\529340\remote\save games}} - - >- - {{Game data/saves|Linux|{{P|xdgdatahome}}/Paradox Interactive/Victoria 3/save - games|{{P|linuxhome}}/.local/share/Steam/userdata/{{P|uid}}/529340/remote/save games}} + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\Paradox Interactive\\Victoria 3}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/Paradox Interactive/Victoria 3}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\Paradox Interactive\\Victoria 3\\save games|{{P|steam}}\\{{P|uid}}\\529340\\remote\\save games}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/Paradox Interactive/Victoria 3/save games|{{P|linuxhome}}/.local/share/Steam/userdata/{{P|uid}}/529340/remote/save games}}" Victoria II: gog: 1406936107 pageId: 5287 steam: 42960 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Paradox Interactive\Victoria 2\}}' - - '{{Game data/saves|Windows|{{p|game}}\save games}}' -'Victoria: An Empire Under the Sun': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Paradox Interactive\\Victoria 2\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\save games}}" +"Victoria: An Empire Under the Sun": gog: 1423218604 pageId: 13012 steam: 42980 templates: - - '{{Game data/saves|Windows|{{p|game}}\Victoria Revolutions\scenarios\save games}}' + - "{{Game data/saves|Windows|{{p|game}}\\Victoria Revolutions\\scenarios\\save games}}" Victorian Admirals: pageId: 50669 steam: 275310 -'Victorian Mysteries: The Yellow Room': +"Victorian Mysteries: The Yellow Room": pageId: 140944 steam: 1108190 -'Victorian Mysteries: Woman in White': +"Victorian Mysteries: Woman in White": pageId: 139101 steam: 1101940 Victoriana - Steampunk Text Adventure: @@ -186791,7 +181626,7 @@ Victory Race: Victory Road: pageId: 125558 steam: 1002430 -'Victory and Glory: Napoleon': +"Victory and Glory: Napoleon": pageId: 44110 steam: 443020 Victory at Sea: @@ -186802,15 +181637,15 @@ Victory at Sea Pacific: gog: 1852287124 pageId: 98264 steam: 806950 -'Victory: The Age of Racing': +"Victory: The Age of Racing": pageId: 44643 steam: 264120 Vidar: pageId: 56126 steam: 355370 templates: - - '{{Game data/config|Windows|{{p|game}}\Game.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\Save*.rvdata2}}' + - "{{Game data/config|Windows|{{p|game}}\\Game.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\Save*.rvdata2}}" Video Game Trivia: pageId: 185778 steam: 2182910 @@ -186834,55 +181669,53 @@ Vienna Automobile Society: Vietcong: pageId: 13856 templates: - - '{{Game data/config|Windows|{{P|game}}\Cfg\}}' - - '{{Game data/saves|Windows|{{P|game}}\Saves\}}' + - "{{Game data/config|Windows|{{P|game}}\\Cfg\\}}" + - "{{Game data/saves|Windows|{{P|game}}\\Saves\\}}" Vietcong (2018): pageId: 137290 steam: 860190 Vietcong 2: pageId: 70460 templates: - - '{{Game data/config|Windows|{{P|game}}\profiles\{{P|uid}}\cfg\}}' - - '{{Game data/saves|Windows|{{P|game}}\profiles\{{P|uid}}\saves\}}' -Vietnam '65: + - "{{Game data/config|Windows|{{P|game}}\\profiles\\{{P|uid}}\\cfg\\}}" + - "{{Game data/saves|Windows|{{P|game}}\\profiles\\{{P|uid}}\\saves\\}}" +"Vietnam '65": pageId: 48521 steam: 336080 -'Vietnam 2: Special Assignment': +"Vietnam 2: Special Assignment": pageId: 79028 templates: - - '{{Game data/config|Windows|{{P|game}}\autoexec.cfg}}' - - '{{Game data/saves|Windows|{{P|game}}\Save\}}' + - "{{Game data/config|Windows|{{P|game}}\\autoexec.cfg}}" + - "{{Game data/saves|Windows|{{P|game}}\\Save\\}}" Vietnam War Puzzles: pageId: 92123 steam: 845150 Vietnam ‘65: pageId: 190157 steam: 336080 -'Vietnam: Black Ops': +"Vietnam: Black Ops": pageId: 78961 templates: - - '{{Game data/config|Windows|{{P|game}}\autoexec.cfg}}' - - '{{Game data/saves|Windows|{{P|game}}\Save\}}' + - "{{Game data/config|Windows|{{P|game}}\\autoexec.cfg}}" + - "{{Game data/saves|Windows|{{P|game}}\\Save\\}}" Viewfinder: pageId: 186745 steam: 1382070 templates: - - >- - {{Game data/config|Windows|{{registry|{{p|HKEY_CURRENT_USER}}\SOFTWARE\Sad Owl - Studios\Viewfinder\}}{{Refcheck|user=grandta13|date=2023-09-08|comment=}}}} - - '{{Game data/saves|Windows|C:\Users\%USERPROFILE%\AppData\LocalLow\Sad Owl Studios\Viewfinder\}}' + - "{{Game data/config|Windows|{{registry|{{p|HKEY_CURRENT_USER}}\\SOFTWARE\\Sad Owl Studios\\Viewfinder\\}}{{Refcheck|user=grandta13|date=2023-09-08|comment=}}}}" + - "{{Game data/saves|Windows|C:\\Users\\%USERPROFILE%\\AppData\\LocalLow\\Sad Owl Studios\\Viewfinder\\}}" Viewpoints: pageId: 66191 steam: 667960 -'Vigil: Blood Bitterness': +"Vigil: Blood Bitterness": pageId: 36457 steam: 2570 -'Vigil: The Longest Night': +"Vigil: The Longest Night": pageId: 128672 steam: 720560 templates: - - '{{Game data/config|Windows|{{P|userprofile\appdata\locallow}}\glassheart\Vigil_Night\}}' - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\glassheart\Vigil_Night\}}' + - "{{Game data/config|Windows|{{P|userprofile\\appdata\\locallow}}\\glassheart\\Vigil_Night\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\glassheart\\Vigil_Night\\}}" Vigilantes: pageId: 53984 steam: 545600 @@ -186890,41 +181723,41 @@ Vignettes: pageId: 129739 steam: 944340 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Skeleton Business\Vignettes}}' -'Viki Spotter: Around the World': + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Skeleton Business\\Vignettes}}" +"Viki Spotter: Around the World": pageId: 88786 steam: 817490 -'Viki Spotter: Camping': +"Viki Spotter: Camping": pageId: 100106 steam: 893730 -'Viki Spotter: Megapolis': +"Viki Spotter: Megapolis": pageId: 82671 steam: 800230 -'Viki Spotter: Professions': +"Viki Spotter: Professions": pageId: 112544 steam: 935440 -'Viki Spotter: School': +"Viki Spotter: School": pageId: 88087 steam: 812800 -'Viki Spotter: Shopping': +"Viki Spotter: Shopping": pageId: 91015 steam: 829540 -'Viki Spotter: Space Mission': +"Viki Spotter: Space Mission": pageId: 92941 steam: 848280 -'Viki Spotter: Sports': +"Viki Spotter: Sports": pageId: 93596 steam: 853110 -'Viki Spotter: The Farm': +"Viki Spotter: The Farm": pageId: 80925 steam: 788380 -'Viki Spotter: Undersea': +"Viki Spotter: Undersea": pageId: 81540 steam: 792410 -'Viki Spotter: Zoo': +"Viki Spotter: Zoo": pageId: 110708 steam: 931630 -'Viking Age: Odin''s Warrior': +"Viking Age: Odin's Warrior": pageId: 98232 steam: 773380 Viking Brothers: @@ -186945,7 +181778,7 @@ Viking Brothers 5: Viking Brothers 6: pageId: 149496 steam: 1158150 -'Viking Chess: Hnefatafl': +"Viking Chess: Hnefatafl": pageId: 148854 steam: 1133070 Viking Days: @@ -186957,13 +181790,13 @@ Viking Escape: Viking Rage: pageId: 59107 steam: 589150 -'Viking Saga: Epic Adventure': +"Viking Saga: Epic Adventure": pageId: 78070 steam: 573720 -'Viking Saga: New World': +"Viking Saga: New World": pageId: 45753 steam: 416340 -'Viking Saga: The Cursed Ring': +"Viking Saga: The Cursed Ring": pageId: 45854 steam: 415390 Viking Sisters: @@ -186973,23 +181806,23 @@ Viking Squad: pageId: 39298 steam: 325930 templates: - - '{{Game data/saves|Windows|{{p|appdata}}\Slick Entertainment Inc\VikingSquad\}}' + - "{{Game data/saves|Windows|{{p|appdata}}\\Slick Entertainment Inc\\VikingSquad\\}}" Viking Vengeance: pageId: 137060 steam: 1082890 Viking Village: pageId: 92059 steam: 745750 -Viking's Drakkars: +"Viking's Drakkars": pageId: 90184 steam: 825610 -'Viking: Battle for Asgard': +"Viking: Battle for Asgard": pageId: 15946 steam: 211160 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Viking\Config\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Viking\Saved Games\}}' -'Viking: Sigurd''s Adventure': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Viking\\Config\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Viking\\Saved Games\\}}" +"Viking: Sigurd's Adventure": pageId: 127785 steam: 1024520 VikingJourney: @@ -186998,19 +181831,19 @@ VikingJourney: Vikings Wars: pageId: 155520 steam: 1216930 -'Vikings: The Strategy of Ultimate Conquest': +"Vikings: The Strategy of Ultimate Conquest": pageId: 185945 templates: - - '{{Game data/config|Windows|{{p|game}} }}' - - '{{Game data/saves|Windows|{{p|game}} }}' -'Vikings: Wolves of Midgard': + - "{{Game data/config|Windows|{{p|game}} }}" + - "{{Game data/saves|Windows|{{p|game}} }}" +"Vikings: Wolves of Midgard": gog: 1680239891 pageId: 39642 steam: 404590 templates: - - '{{Game data/config|Linux|{{p|xdgconfighome}}/unity3d/Games Farm s.r.o_/Vikings_ Wolves of Midgard/prefs}}' - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\Games Farm s_r_o_\Vikings_ Wolves of Midgard\}}' - - '{{Game data/saves|Linux|{{p|xdgconfighome}}/unity3d/Games Farm s_r_o_/Vikings_ Wolves of Midgard/saves/}}' + - "{{Game data/config|Linux|{{p|xdgconfighome}}/unity3d/Games Farm s.r.o_/Vikings_ Wolves of Midgard/prefs}}" + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\Games Farm s_r_o_\\Vikings_ Wolves of Midgard\\}}" + - "{{Game data/saves|Linux|{{p|xdgconfighome}}/unity3d/Games Farm s_r_o_/Vikings_ Wolves of Midgard/saves/}}" Viktaram: pageId: 54275 steam: 562300 @@ -187018,8 +181851,8 @@ Viktor: pageId: 50075 steam: 296730 templates: - - '{{Game data/saves|Windows|{{p|localappdata}}\Viktor}}' -'Viktor, a Steampunk Adventure': + - "{{Game data/saves|Windows|{{p|localappdata}}\\Viktor}}" +"Viktor, a Steampunk Adventure": pageId: 59065 steam: 550990 Vile: @@ -187046,7 +181879,7 @@ Village of Adventurers 2: Village of Souls: pageId: 65443 steam: 671670 -Villager's Biography: +"Villager's Biography": pageId: 95361 steam: 863900 Villagers: @@ -187058,10 +181891,10 @@ Villagers and Heroes: Villages: pageId: 79968 steam: 749820 -Villains' Revenge: +"Villains' Revenge": pageId: 166325 templates: - - '{{Game data/saves|Windows|{{p|game}}/SaveGame}}' + - "{{Game data/saves|Windows|{{p|game}}/SaveGame}}" VilleTown: pageId: 40313 steam: 527250 @@ -187069,7 +181902,7 @@ Vilmonic: pageId: 33761 steam: 458330 templates: - - '{{Game data/saves|Windows|{{P|localappdata}}\Vilmonic\saves\}}' + - "{{Game data/saves|Windows|{{P|localappdata}}\\Vilmonic\\saves\\}}" Viltnemda: pageId: 178569 steam: 1983430 @@ -187077,9 +181910,9 @@ Vincere Totus Astrum: pageId: 58312 steam: 314610 templates: - - '{{Game data/config|Windows|{{p|game}}\vta.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\vta.ini}}' -'Vindicator: Uprising': + - "{{Game data/config|Windows|{{p|game}}\\vta.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\vta.ini}}" +"Vindicator: Uprising": pageId: 47391 steam: 367050 Vindicta: @@ -187103,7 +181936,7 @@ Vinhomes Metropolis VR Interior: Vinios: pageId: 135226 steam: 1068100 -Vinnie's Diary: +"Vinnie's Diary": pageId: 87065 steam: 846000 Vintage Hero: @@ -187112,13 +181945,11 @@ Vintage Hero: Vintage Story: pageId: 190446 templates: - - '{{Game data/config|Windows|{{p|appdata}}\VintagestoryData\clientsettings.json}}' - - >- - {{Game - data/config|Linux|{{p|linuxhome}}/.var/app/at.vintagestory.VintageStory/config/VintagestoryData/clientsettings.json}} - - '{{Game data/saves|Windows|{{p|appdata}}\VintagestoryData\Saves}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.var/app/at.vintagestory.VintageStory/config/VintagestoryData/Saves}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/ApplicationData/vintagestory/Saves}}' + - "{{Game data/config|Windows|{{p|appdata}}\\VintagestoryData\\clientsettings.json}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.var/app/at.vintagestory.VintageStory/config/VintagestoryData/clientsettings.json}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\VintagestoryData\\Saves}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.var/app/at.vintagestory.VintageStory/config/VintagestoryData/Saves}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/ApplicationData/vintagestory/Saves}}" Vintage VR: pageId: 43227 steam: 466720 @@ -187126,8 +181957,8 @@ Vintage Year: pageId: 49037 steam: 333760 templates: - - '{{Game data/config|Windows|{{p|appdata}}\nbr\data.nbr}}' - - '{{Game data/saves|Windows|{{p|appdata}}\nbr\data.nbr}}' + - "{{Game data/config|Windows|{{p|appdata}}\\nbr\\data.nbr}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\nbr\\data.nbr}}" Vinyl: pageId: 35132 steam: 369030 @@ -187150,7 +181981,7 @@ Violet Cycle: pageId: 77976 steam: 595010 templates: - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Weckr Industries\Violet Cycle\saveData\}}' + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Weckr Industries\\Violet Cycle\\saveData\\}}" Violet Detector: pageId: 110302 steam: 924650 @@ -187160,13 +181991,13 @@ Violet Girl - Sexy Encounters: Violet Haunted: pageId: 51161 steam: 529090 -'Violet rE:-The Final reExistence-': +"Violet rE:-The Final reExistence-": pageId: 141649 steam: 1086680 -Violet's Dream VR: +"Violet's Dream VR": pageId: 58802 steam: 592360 -'Violet: Space Mission': +"Violet: Space Mission": pageId: 44906 steam: 435780 Violett: @@ -187181,8 +182012,8 @@ Viper Attack: Viper Racing: pageId: 23195 templates: - - '{{Game data/config|Windows|{{P|game}}\Config\options.cfg}}' - - '{{Game data/saves|Windows|{{P|game}}\Config\career}}' + - "{{Game data/config|Windows|{{P|game}}\\Config\\options.cfg}}" + - "{{Game data/saves|Windows|{{P|game}}\\Config\\career}}" VirZOOM Arcade: pageId: 35162 steam: 448710 @@ -187206,12 +182037,10 @@ Virginia: pageId: 36490 steam: 374030 templates: - - >- - {{Game data/config|Windows|{{P|hkcu}}\Software\Variable - State\Virginia\|{{P|userprofile}}\AppData\LocalLow\Variable State\Virginia\}} - - '{{Game data/config|Steam|{{p|steam}}\userdata\{{p|uid}}\374030\storage\}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Variable State\Virginia\}}' - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\374030\storage\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Variable State\\Virginia\\|{{P|userprofile}}\\AppData\\LocalLow\\Variable State\\Virginia\\}}" + - "{{Game data/config|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\374030\\storage\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Variable State\\Virginia\\}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\374030\\storage\\}}" Virgo versus the Zodiac: gog: 1771817495 gogSide: @@ -187226,68 +182055,64 @@ Virgo versus the Zodiac: - 1083660 - 1205120 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\VvtZ\config.ini}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\VvtZ\*.txt|{{p|localappdata}}\VvtZ\*.png}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\VvtZ\\config.ini}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\VvtZ\\*.txt|{{p|localappdata}}\\VvtZ\\*.png}}" Viriax: pageId: 131347 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Viriax_1_1\config.ini}}' - - '{{Game data/saves|Windows|No save functional.}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Viriax_1_1\\config.ini}}" + - "{{Game data/saves|Windows|No save functional.}}" Viridi: pageId: 38171 steam: 375950 templates: - - '{{Game data/config|Windows|{{P|game}}\Viridi\Viridi_Data\}}' - - '{{Game data/saves|Windows|{{P|game}}\Viridi\Viridi_Data\}}' + - "{{Game data/config|Windows|{{P|game}}\\Viridi\\Viridi_Data\\}}" + - "{{Game data/saves|Windows|{{P|game}}\\Viridi\\Viridi_Data\\}}" VirtuGO: pageId: 68952 steam: 699990 Virtua Cop: pageId: 158659 templates: - - '{{Game data/config|Windows|{{p|windir}}\VCOP.ini}}' + - "{{Game data/config|Windows|{{p|windir}}\\VCOP.ini}}" Virtua Cop 2: pageId: 159009 templates: - - '{{Game data/config|Windows|{{P|game}}\PROJECT\vcop2.ini}}' + - "{{Game data/config|Windows|{{P|game}}\\PROJECT\\vcop2.ini}}" Virtua Fighter 2: pageId: 97565 templates: - - '{{Game data/config|Windows|{{p|game}}\VF2.ini|{{p|game}}\option.dat}}' - - '{{Game data/saves|Windows|{{p|game}}\VF2.GID|{{p|game}}\LEARNING\*.VFL|{{p|game}}\PLAYBACK\*.VFP}}' + - "{{Game data/config|Windows|{{p|game}}\\VF2.ini|{{p|game}}\\option.dat}}" + - "{{Game data/saves|Windows|{{p|game}}\\VF2.GID|{{p|game}}\\LEARNING\\*.VFL|{{p|game}}\\PLAYBACK\\*.VFP}}" Virtua Fighter 2 (2010): pageId: 30742 steam: 71115 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\SEGA Mega Drive - Classics\setup.dat|{{p|userprofile\Documents}}\SEGA Genesis Classics\setup.dat}} - - >- - {{Game data/saves|Windows|{{p|userprofile\Documents}}\SEGA Mega Drive - Classics\0033\|{{p|userprofile\Documents}}\SEGA Genesis Classics\0033\}} + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\SEGA Mega Drive Classics\\setup.dat|{{p|userprofile\\Documents}}\\SEGA Genesis Classics\\setup.dat}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\SEGA Mega Drive Classics\\0033\\|{{p|userprofile\\Documents}}\\SEGA Genesis Classics\\0033\\}}" Virtua Fighter PC: pageId: 20984 templates: - - '{{Game data/config|Windows|{{p|game}}\vfpc.ini}}' + - "{{Game data/config|Windows|{{p|game}}\\vfpc.ini}}" Virtua Tennis: pageId: 161310 templates: - - '{{Game data/config|Windows|{{p|game}}\VTENNIS.CFG}}' - - '{{Game data/saves|Windows|{{p|game}}\VIRTUATENNIS}}' + - "{{Game data/config|Windows|{{p|game}}\\VTENNIS.CFG}}" + - "{{Game data/saves|Windows|{{p|game}}\\VIRTUATENNIS}}" Virtua Tennis 2009: pageId: 162909 steam: 10690 Virtua Tennis 3: pageId: 161973 templates: - - '{{Game data/config|Windows|{{P|game}}\VT3.ini}}' - - '{{Game data/saves|Windows|{{P|game}}}}' + - "{{Game data/config|Windows|{{P|game}}\\VT3.ini}}" + - "{{Game data/saves|Windows|{{P|game}}}}" Virtua Tennis 4: pageId: 24458 steam: 71390 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Virtua Tennis 4\Saved Games\Config.txt}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Virtua Tennis 4\Saved Games\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Virtua Tennis 4\\Saved Games\\Config.txt}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Virtua Tennis 4\\Saved Games\\}}" VirtuaCreature: pageId: 104027 steam: 898940 @@ -187299,14 +182124,14 @@ VirtuaVerse: pageId: 130761 steam: 1019310 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Theta Division Games\VirtuaVerse\}}' - - '{{Game data/config|Linux|{{P|xdgconfighome}}/.config/unity3d/Theta Division Games/VirtuaVerse/}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Theta Division Games\VirtuaVerse\VirtuaVerse_*.save}}' - - '{{Game data/saves|Linux|{{P|xdgconfighome}}/.config/unity3d/Theta Division Games/VirtuaVerse/}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Theta Division Games\\VirtuaVerse\\}}" + - "{{Game data/config|Linux|{{P|xdgconfighome}}/.config/unity3d/Theta Division Games/VirtuaVerse/}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Theta Division Games\\VirtuaVerse\\VirtuaVerse_*.save}}" + - "{{Game data/saves|Linux|{{P|xdgconfighome}}/.config/unity3d/Theta Division Games/VirtuaVerse/}}" Virtual Arctic Expedition: pageId: 132294 steam: 1049090 -'Virtual Army: Revolution': +"Virtual Army: Revolution": pageId: 121951 steam: 551610 Virtual Battlegrounds: @@ -187324,7 +182149,7 @@ Virtual Earth Online: Virtual Families: pageId: 41294 steam: 16200 -'Virtual Families 2: Our Dream House': +"Virtual Families 2: Our Dream House": pageId: 96817 steam: 873970 Virtual Fighting Championship (VFC): @@ -187398,32 +182223,30 @@ Virtual Sports: Virtual Surfing: pageId: 124123 steam: 993340 -'Virtual Temple: Order of the Golden Dawn': +"Virtual Temple: Order of the Golden Dawn": pageId: 66075 steam: 653970 Virtual Villagers Origins 2: pageId: 121292 steam: 949050 -'Virtual Villagers: A New Home': +"Virtual Villagers: A New Home": pageId: 41377 steam: 16100 templates: - - '{{Game data/config|Windows|{{p|game}}\ldw.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\Isola#.ldw}}' -'Virtual Villagers: The Lost Children': + - "{{Game data/config|Windows|{{p|game}}\\ldw.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\Isola#.ldw}}" +"Virtual Villagers: The Lost Children": pageId: 41378 steam: 16110 templates: - - '{{Game data/config|Windows|{{p|game}}\ldw.ini}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Virtual Villagers - The Lost Children\Isola#.ldw}}' -'Virtual Villagers: The Secret City': + - "{{Game data/config|Windows|{{p|game}}\\ldw.ini}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Virtual Villagers - The Lost Children\\Isola#.ldw}}" +"Virtual Villagers: The Secret City": pageId: 41371 steam: 16180 templates: - - '{{Game data/config|Windows|{{p|game}}\ldw.ini}}' - - >- - {{Game data/saves|Windows|{{p|userprofile\Documents}}\Virtual Villagers - The Secret City\Virtual Villagers - The - Secret City#.ldw}} + - "{{Game data/config|Windows|{{p|game}}\\ldw.ini}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Virtual Villagers - The Secret City\\Virtual Villagers - The Secret City#.ldw}}" Virtual Virtual Reality: pageId: 109272 steam: 889480 @@ -187460,7 +182283,7 @@ Virus Crashers: Virus Expansion: pageId: 126120 steam: 1001810 -Virus Jigglin' Fever: +"Virus Jigglin' Fever": pageId: 47996 steam: 363200 Virus L: @@ -187472,10 +182295,10 @@ Virus Petya: Virus Z: pageId: 64852 steam: 666290 -'Virus of Survivors: Life Simulator': +"Virus of Survivors: Life Simulator": pageId: 69848 steam: 709020 -'Virus: The Game': +"Virus: The Game": pageId: 21273 Virush: pageId: 63014 @@ -187485,42 +182308,40 @@ Visage: pageId: 112988 steam: 594330 templates: - - >- - {{Game - data/config|Windows|{{P|localappdata}}\Visage\Saved\Config\WindowsNoEditor\|{{p|localappdata}}\Visage\Saved\SaveGames\savedOptions.sav|{{p|localappdata}}\Visage\Saved\SaveGames\savedVideoSettings.sav}} - - '{{Game data/config|Microsoft Store|{{P|localappdata}}\Visage\Saved\Config\WinGDK\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Visage\Saved\SaveGames\}}' - - '{{Game data/saves|Microsoft Store|{{p|localappdata}}\SadSquareStudio.Visage_855q6fdw1qbrg\SystemAppData\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\Visage\\Saved\\Config\\WindowsNoEditor\\|{{p|localappdata}}\\Visage\\Saved\\SaveGames\\savedOptions.sav|{{p|localappdata}}\\Visage\\Saved\\SaveGames\\savedVideoSettings.sav}}" + - "{{Game data/config|Microsoft Store|{{P|localappdata}}\\Visage\\Saved\\Config\\WinGDK\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Visage\\Saved\\SaveGames\\}}" + - "{{Game data/saves|Microsoft Store|{{p|localappdata}}\\SadSquareStudio.Visage_855q6fdw1qbrg\\SystemAppData\\}}" Viscera Cleanup Detail: pageId: 9531 steam: 246900 templates: - - '{{Game data/config|Windows|{{p|game}}\UDKGame\Config\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Viscera/UDKGame/Config/}}' - - '{{Game data/saves|Windows|{{p|game}}\Saves\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Viscera/Saves/}}' -'Viscera Cleanup Detail: Santa''s Rampage': + - "{{Game data/config|Windows|{{p|game}}\\UDKGame\\Config\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Viscera/UDKGame/Config/}}" + - "{{Game data/saves|Windows|{{p|game}}\\Saves\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Viscera/Saves/}}" +"Viscera Cleanup Detail: Santa's Rampage": pageId: 13488 steam: 265210 templates: - - '{{Game data/config|Windows|{{p|game}}\UDKGame\Config\}}' - - '{{Game data/saves|Windows|{{P|game}}\Saves\*.sav}}' -'Viscera Cleanup Detail: Shadow Warrior': + - "{{Game data/config|Windows|{{p|game}}\\UDKGame\\Config\\}}" + - "{{Game data/saves|Windows|{{P|game}}\\Saves\\*.sav}}" +"Viscera Cleanup Detail: Shadow Warrior": gog: 1429878383 pageId: 13487 steam: 255520 templates: - - '{{Game data/config|Windows|{{p|game}}\UDKGame\Config\}}' - - '{{Game data/saves|Windows|{{p|game}}\Saves\}}' + - "{{Game data/config|Windows|{{p|game}}\\UDKGame\\Config\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\Saves\\}}" Viscerafest: gog: 1654806596 pageId: 165463 steam: 1406780 templates: - - '{{Game data/config|Windows|{{P|userprofile\AppData\LocalLow}}\Acid Man Games\Viscerafest}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Acid Man Games/Viscerafest/}}' - - '{{Game data/saves|Windows|{{P|userprofile\AppData\LocalLow}}\Acid Man Games\Viscerafest}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Acid Man Games/Viscerafest/}}' + - "{{Game data/config|Windows|{{P|userprofile\\AppData\\LocalLow}}\\Acid Man Games\\Viscerafest}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Acid Man Games/Viscerafest/}}" + - "{{Game data/saves|Windows|{{P|userprofile\\AppData\\LocalLow}}\\Acid Man Games\\Viscerafest}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Acid Man Games/Viscerafest/}}" Visceral Cubes: pageId: 92746 steam: 846010 @@ -187545,8 +182366,8 @@ Vision of Aurora Borealis: steamSide: - 498400 templates: - - '{{Game data/config|Windows|{{p|game}}\renpy\config.py}}' - - '{{Game data/saves|Windows|{{p|appdata}}\RenPy\Vision of Aurora Borealis-1429661742\}}' + - "{{Game data/config|Windows|{{p|game}}\\renpy\\config.py}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\RenPy\\Vision of Aurora Borealis-1429661742\\}}" Visionarium: pageId: 125256 steam: 928300 @@ -187564,7 +182385,7 @@ Visitor2: Visitors: pageId: 36660 steam: 520250 -'Visitors: Marine Invasion': +"Visitors: Marine Invasion": pageId: 64536 steam: 661240 Visser: @@ -187586,20 +182407,20 @@ Vitatio 2: pageId: 61116 steam: 586380 templates: - - '{{Game data/config|Windows|{{p|appdata}}/PRECISION}}' - - '{{Game data/saves|Windows|{{p|appdata}}/PRECISION}}' + - "{{Game data/config|Windows|{{p|appdata}}/PRECISION}}" + - "{{Game data/saves|Windows|{{p|appdata}}/PRECISION}}" Vitrum: pageId: 50397 steam: 291270 Viva Football: pageId: 158004 templates: - - '{{Game data/saves|Windows|{{P|game}}\SaveGame}}' + - "{{Game data/saves|Windows|{{P|game}}\\SaveGame}}" Viva Piñata: pageId: 17051 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Saved Games\Microsoft Games\Viva Pinata\pinata.cfg}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Saved Games\Microsoft Games\Viva Pinata\Saves\*.Viva}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Saved Games\\Microsoft Games\\Viva Pinata\\pinata.cfg}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Saved Games\\Microsoft Games\\Viva Pinata\\Saves\\*.Viva}}" Viva Project: pageId: 170472 Vive le Roi: @@ -187629,8 +182450,8 @@ Viviette: Vivisector - Beast Within: pageId: 24364 templates: - - '{{Game data/config|Windows|{{p|game}}\config.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\Data\Save\}}' + - "{{Game data/config|Windows|{{p|game}}\\config.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\Data\\Save\\}}" Vixen Wars: pageId: 179078 steam: 1254530 @@ -187646,7 +182467,7 @@ Vladimir Putin Style: Vodka: pageId: 77004 steam: 655010 -'Vogue, The Explorer': +"Vogue, The Explorer": pageId: 96899 steam: 875550 Voice Actress: @@ -187655,18 +182476,18 @@ Voice Actress: Voice Actress II: pageId: 99834 steam: 831460 -'Voice of Cards: The Forsaken Maiden': +"Voice of Cards: The Forsaken Maiden": pageId: 175270 steam: 1748660 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\SQUARE ENIX CO., LTD.\Voice of Cards The Forsaken Maiden\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\VoiceofCardsTheForsakenMaiden\Steam\{{p|uid}}\}}' -'Voice of Cards: The Isle Dragon Roars': + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\SQUARE ENIX CO., LTD.\\Voice of Cards The Forsaken Maiden\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\VoiceofCardsTheForsakenMaiden\\Steam\\{{p|uid}}\\}}" +"Voice of Cards: The Isle Dragon Roars": pageId: 171689 steam: 1113570 templates: - - '{{Game data/config|Windows|{{path|hkcu}}\SOFTWARE\SQUARE ENIX CO., LTD.\Voice of Cards The Isle Dragon Roars}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\VoiceofCardsTheIsleDragonRoars\Steam\{{p|uid}}\}}' + - "{{Game data/config|Windows|{{path|hkcu}}\\SOFTWARE\\SQUARE ENIX CO., LTD.\\Voice of Cards The Isle Dragon Roars}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\VoiceofCardsTheIsleDragonRoars\\Steam\\{{p|uid}}\\}}" Voice of Pripyat: pageId: 49301 steam: 269530 @@ -187674,7 +182495,7 @@ Voices from the Sea: pageId: 37559 steam: 348620 templates: - - '{{Game data/saves|Windows|{{p|appdata}}\Voices from the Sea - Steam\Savegame}}' + - "{{Game data/saves|Windows|{{p|appdata}}\\Voices from the Sea - Steam\\Savegame}}" Void: pageId: 36246 steam: 503710 @@ -187689,25 +182510,25 @@ Void Bastards: pageId: 122736 steam: 857980 templates: - - '{{Game data/config|Windows|{{P|userprofile}}\AppData\LocalLow\BlueManchu\VoidBastards\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/BlueManchu/VoidBastards}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\BlueManchu\VoidBastards\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/BlueManchu/VoidBastards}}' + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\BlueManchu\\VoidBastards\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/BlueManchu/VoidBastards}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\BlueManchu\\VoidBastards\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/BlueManchu/VoidBastards}}" Void Breach: pageId: 156913 steam: 1204710 Void Cube Runner: pageId: 91947 steam: 726810 -'Void Dementia: Forgotten Memory': +"Void Dementia: Forgotten Memory": pageId: 179443 steam: 1538640 Void Destroyer: pageId: 14378 steam: 259660 templates: - - '{{Game data/config|Windows|{{P|game}}|{{P|game}}\Config}}' - - '{{Game data/saves|Windows|{{P|game}}\Save}}' + - "{{Game data/config|Windows|{{P|game}}|{{P|game}}\\Config}}" + - "{{Game data/saves|Windows|{{P|game}}\\Save}}" Void Destroyer 2: pageId: 39097 steam: 369530 @@ -187718,7 +182539,7 @@ Void Invaders: pageId: 37705 steam: 391170 templates: - - '{{Game data/saves|Windows|{{p|localappdata}}\VoidInvaders}}' + - "{{Game data/saves|Windows|{{p|localappdata}}\\VoidInvaders}}" Void Link: pageId: 78433 steam: 560550 @@ -187726,8 +182547,8 @@ Void Memory: pageId: 74163 steam: 727510 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Void_Memory\}}' + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Void_Memory\\}}" Void Mine: pageId: 122644 steam: 952400 @@ -187751,13 +182572,13 @@ Void Stranger: pageId: 189641 steam: 2121980 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\void_stranger\settings.vs}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\void_stranger\save.vs}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\void_stranger\\settings.vs}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\void_stranger\\save.vs}}" Void Tyrant: pageId: 172172 steam: 1332090 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\appdata\locallow\Quite Fresh\Void Tyrant}}' + - "{{Game data/saves|Windows|{{p|userprofile}}\\appdata\\locallow\\Quite Fresh\\Void Tyrant}}" Void Vikings: pageId: 50921 steam: 440660 @@ -187768,20 +182589,20 @@ Void and Meddler: pageId: 45870 steam: 377970 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\NO cvt\Void and Meddler}}' + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\NO cvt\\Void and Meddler}}" Void of Heroes: pageId: 150103 steam: 1146730 -Void's Calling ep.1: +"Void's Calling ep.1": pageId: 157019 steam: 1212020 VoidExpanse: pageId: 23087 steam: 324260 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\AtomicTorchStudio\VoidExpanse\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\AtomicTorchStudio\VoidExpanse\Saves\}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/AtomicTorchStudio/VoidExpanse/Saves/}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\AtomicTorchStudio\\VoidExpanse\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\AtomicTorchStudio\\VoidExpanse\\Saves\\}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/AtomicTorchStudio/VoidExpanse/Saves/}}" VoidGate: pageId: 127965 steam: 971530 @@ -187789,7 +182610,7 @@ Voidigo: pageId: 173635 steam: 1304680 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\voidigo\settings.dat}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\voidigo\\settings.dat}}" Voidlifted: pageId: 149692 steam: 1134390 @@ -187799,7 +182620,7 @@ Voidrun: Voidrunner: pageId: 62727 steam: 513190 -'Voidship: The Long Journey': +"Voidship: The Long Journey": pageId: 113598 steam: 906740 Voidspace: @@ -187812,12 +182633,12 @@ Voidtrain: pageId: 151455 steam: 1159690 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\VoidTrain\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\VoidTrain\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\VoidTrain\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\VoidTrain\\Saved\\SaveGames\\}}" Voipas: pageId: 129712 steam: 1029750 -Vol'Talkes - The AI War: +"Vol'Talkes - The AI War": pageId: 48593 steam: 347050 VolChaos: @@ -187845,10 +182666,10 @@ Volcanoids: pageId: 122608 steam: 951440 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\Volcanoid\Volcanoids}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Volcanoid/Volcanoids/}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Volcanoid\Volcanoids\Saves}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Volcanoid/Volcanoids/Saves/}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Volcanoid\\Volcanoids}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Volcanoid/Volcanoids/}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Volcanoid\\Volcanoids\\Saves}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Volcanoid/Volcanoids/Saves/}}" Vole Complexity: pageId: 149257 steam: 1133260 @@ -187857,12 +182678,12 @@ Volgarr the Viking: pageId: 10227 steam: 247240 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Crazy Viking Studios\Volgarr the Viking\}}' - - '{{Game data/config|OS X|{{P|game}}/Content/Resources/config.ini|{{P|game}}/Content/Resources/user.ini}}' - - '{{Game data/config|Linux|{{P|xdgconfighome}}/Crazy Viking Studios/Volgarr the Viking/}}' - - '{{Game data/saves|Windows|{{p|hkcu}}\Software\Crazy Viking Studios\Volgarr the Viking\}}' - - '{{Game data/saves|OS X|{{P|game}}/Content/Resources/}}' - - '{{Game data/saves|Linux|{{P|xdgconfighome}}/Crazy Viking Studios/Volgarr the Viking/}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Crazy Viking Studios\\Volgarr the Viking\\}}" + - "{{Game data/config|OS X|{{P|game}}/Content/Resources/config.ini|{{P|game}}/Content/Resources/user.ini}}" + - "{{Game data/config|Linux|{{P|xdgconfighome}}/Crazy Viking Studios/Volgarr the Viking/}}" + - "{{Game data/saves|Windows|{{p|hkcu}}\\Software\\Crazy Viking Studios\\Volgarr the Viking\\}}" + - "{{Game data/saves|OS X|{{P|game}}/Content/Resources/}}" + - "{{Game data/saves|Linux|{{P|xdgconfighome}}/Crazy Viking Studios/Volgarr the Viking/}}" Volkstein: pageId: 89557 steam: 763200 @@ -187897,7 +182718,7 @@ Volstead: pageId: 47491 steam: 375760 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Volstead\config.ini}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\Volstead\\config.ini}}" Volt: pageId: 50452 steam: 290280 @@ -187916,25 +182737,23 @@ Volted: VolticPistol: pageId: 156931 steam: 1143570 -'Voltron: Cubes of Olkarion': +"Voltron: Cubes of Olkarion": pageId: 141385 steam: 1078550 Volume: pageId: 23084 steam: 365770 templates: - - '{{Game data/config|Windows|{{P|userprofile}}\AppData\LocalLow\Bithell Games\Volume\set\}}' - - '{{Game data/saves|Steam|{{P|steam}}/userdata/{{P|uid}}/365770/remote/}}' + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Bithell Games\\Volume\\set\\}}" + - "{{Game data/saves|Steam|{{P|steam}}/userdata/{{P|uid}}/365770/remote/}}" Volume Up: pageId: 144470 steam: 1115540 Volvo - The Game: pageId: 31793 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\SimBin\Volvo - The - Game\Config.ini|{{p|userprofile\Documents}}\SimBin\Volvo - The Game\UserData\ControlSet\}} - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\SimBin\Volvo - The Game\UserData\{{p|uid}}\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\SimBin\\Volvo - The Game\\Config.ini|{{p|userprofile\\Documents}}\\SimBin\\Volvo - The Game\\UserData\\ControlSet\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\SimBin\\Volvo - The Game\\UserData\\{{p|uid}}\\}}" Volvox: pageId: 45383 steam: 392600 @@ -187942,22 +182761,16 @@ Vomitoreum: pageId: 176189 steam: 1549750 templates: - - '{{Game data/config|Windows|{{p|game}}\Vomitoreum}}' - - '{{Game data/saves|Windows|{{p|game}}\Vomitoreum}}' + - "{{Game data/config|Windows|{{p|game}}\\Vomitoreum}}" + - "{{Game data/saves|Windows|{{p|game}}\\Vomitoreum}}" Voodolls: gog: 1265630839 pageId: 186373 steam: 2144830 templates: - - >- - {{Game - data/config|Windows|{{P|hkcu}}\Software\SideRift\Voodolls|{{P|userprofile\appdata\locallow}}\SideRift\Voodolls\Saves\PlayerData.save}} - - >- - {{Game - data/saves|Windows|{{P|userprofile\appdata\locallow}}\SideRift\Voodolls\Saves\PlayerData.save|{{p|game}}\Saves\PlayerData.json{{note|Before - April 28, 2023 update{{Refurl|url=https://steamdb.info/app/2144830/history/?changeid=18607001|title=Voodolls - History · Change #18607001 · SteamDB|date=2023-10-04}}}}}} -'Voodoo Chronicles: The First Sign HD - Director''s Cut Edition': + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\SideRift\\Voodolls|{{P|userprofile\\appdata\\locallow}}\\SideRift\\Voodolls\\Saves\\PlayerData.save}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\SideRift\\Voodolls\\Saves\\PlayerData.save|{{p|game}}\\Saves\\PlayerData.json{{note|Before April 28, 2023 update{{Refurl|url=https://steamdb.info/app/2144830/history/?changeid=18607001|title=Voodolls History · Change #18607001 · SteamDB|date=2023-10-04}}}}}}" +"Voodoo Chronicles: The First Sign HD - Director's Cut Edition": pageId: 47743 steam: 304750 Voodoo Detective: @@ -187978,11 +182791,9 @@ Voodoo Vince Remastered: pageId: 61305 steam: 545980 templates: - - '{{Game data/config|Steam|{{p|localappdata}}\VoodooVince\}}' - - |- - {{Game data/saves|Microsoft Store| - {{p|localappdata}}\Packages\6DA520A3.1673586F56C6C_ykvmsk3s73586\SystemAppData\wgs\{{p|uid}}\}} - - '{{Game data/saves|Steam|{{p|localappdata}}\VoodooVince\}}' + - "{{Game data/config|Steam|{{p|localappdata}}\\VoodooVince\\}}" + - "{{Game data/saves|Microsoft Store|\n{{p|localappdata}}\\Packages\\6DA520A3.1673586F56C6C_ykvmsk3s73586\\SystemAppData\\wgs\\{{p|uid}}\\}}" + - "{{Game data/saves|Steam|{{p|localappdata}}\\VoodooVince\\}}" Voodoo Whisperer Curse of a Legend: pageId: 50470 steam: 288830 @@ -188004,26 +182815,24 @@ Vortex Rush: Vortex of Pain: pageId: 121105 steam: 887170 -'Vortex: The Gateway': +"Vortex: The Gateway": pageId: 44028 steam: 406170 -'Vosaria: Lair of the Forgotten': +"Vosaria: Lair of the Forgotten": pageId: 97896 steam: 876480 Vostok Inc.: pageId: 65098 steam: 656460 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\SOFTWARE\Nosebleed Interactive\Vostok Inc.\}}' - - >- - {{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Nosebleed Interactive\Vostok - Inc_\VostokSaveData.dat}} + - "{{Game data/config|Windows|{{P|hkcu}}\\SOFTWARE\\Nosebleed Interactive\\Vostok Inc.\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Nosebleed Interactive\\Vostok Inc_\\VostokSaveData.dat}}" Vox: pageId: 12505 steam: 252770 templates: - - '{{Game data/config|Windows|{{p|game}}\media\config\}}' - - '{{Game data/saves|Windows|{{p|game}}\media\world\}}' + - "{{Game data/config|Windows|{{p|game}}\\media\\config\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\media\\world\\}}" Vox Machinae: pageId: 93295 steam: 334540 @@ -188036,8 +182845,8 @@ Vox-L: Voxatron: pageId: 4792 templates: - - '{{Game data/config|Linux|{{p|linuxhome}}/.lexaloffle/Voxatron/config.txt}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.lexaloffle/Voxatron/save/|~/.lexaloffle/Voxatron/player/}}' + - "{{Game data/config|Linux|{{p|linuxhome}}/.lexaloffle/Voxatron/config.txt}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.lexaloffle/Voxatron/save/|~/.lexaloffle/Voxatron/player/}}" Voxel Baller: pageId: 89569 steam: 790810 @@ -188081,17 +182890,17 @@ Voxel Turf: pageId: 67940 steam: 404530 templates: - - '{{Game data/config|Linux|{{p|linuxhome}}/.steam/steam/steamapps/common/Voxel Turf}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.steam/steam/steamapps/common/Voxel Turf/savegames}}' + - "{{Game data/config|Linux|{{p|linuxhome}}/.steam/steam/steamapps/common/Voxel Turf}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.steam/steam/steamapps/common/Voxel Turf/savegames}}" Voxel Tycoon: pageId: 81786 steam: 732050 templates: - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/com.VoxelTycoon.VoxelTycoon}}' - - '{{Game data/config|Linux|{{p|xdgconfighome}}/unity3d/VoxelTycoon/VoxelTycoon/}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\VoxelTycoon\VoxelTycoon\Saves}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/com.VoxelTycoon.VoxelTycoon/Saves}}' - - '{{Game data/saves|Linux|{{p|xdgconfighome}}/unity3d/VoxelTycoon/VoxelTycoon/Saves/}}' + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/com.VoxelTycoon.VoxelTycoon}}" + - "{{Game data/config|Linux|{{p|xdgconfighome}}/unity3d/VoxelTycoon/VoxelTycoon/}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\VoxelTycoon\\VoxelTycoon\\Saves}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/com.VoxelTycoon.VoxelTycoon/Saves}}" + - "{{Game data/saves|Linux|{{p|xdgconfighome}}/unity3d/VoxelTycoon/VoxelTycoon/Saves/}}" VoxelWorld: pageId: 87047 steam: 788590 @@ -188102,12 +182911,9 @@ Voxelgram: pageId: 150381 steam: 1158470 templates: - - >- - {{Game data/config|Windows|{{P|userprofile\appdata\locallow}}\Procedural - Level\Voxelgram\Progress\Settings.json|{{P|userprofile\appdata\locallow}}\Procedural - Level\Voxelgram\Progress\InputBinding.json|{{P|hkcu}}\Software\Procedural Level\Voxelgram\}} - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Procedural Level\Voxelgram\Progress\User.bjson}}' - - '{{Game data/saves|Linux|{{p|xdgconfighome}}/unity3d/Procedural Level/Voxelgram/Progress/}}' + - "{{Game data/config|Windows|{{P|userprofile\\appdata\\locallow}}\\Procedural Level\\Voxelgram\\Progress\\Settings.json|{{P|userprofile\\appdata\\locallow}}\\Procedural Level\\Voxelgram\\Progress\\InputBinding.json|{{P|hkcu}}\\Software\\Procedural Level\\Voxelgram\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Procedural Level\\Voxelgram\\Progress\\User.bjson}}" + - "{{Game data/saves|Linux|{{p|xdgconfighome}}/unity3d/Procedural Level/Voxelgram/Progress/}}" VoxreD: pageId: 50803 steam: 533640 @@ -188120,7 +182926,7 @@ Voyage Senki VR: Voyage to Farland: pageId: 47663 steam: 364790 -'Voyage: Journey to the Moon': +"Voyage: Journey to the Moon": gog: 1749322974 pageId: 49695 steam: 302180 @@ -188136,8 +182942,8 @@ Vpet: pageId: 189220 steam: 1920960 templates: - - '{{Game data/config|Windows|{{p|game}}\Setting.lps}}' - - '{{Game data/saves|Windows|{{p|game}}\Saves\}}' + - "{{Game data/config|Windows|{{p|game}}\\Setting.lps}}" + - "{{Game data/saves|Windows|{{p|game}}\\Saves\\}}" VrAMP: pageId: 42852 steam: 433630 @@ -188150,7 +182956,7 @@ Vroom Kaboom: Vroomist: pageId: 33886 steam: 464690 -'Vugluskr: Zombie Rampage': +"Vugluskr: Zombie Rampage": pageId: 148946 steam: 1164760 Vulcan Sacrifice: @@ -188174,11 +182980,11 @@ Vulture for NetHack: steamSide: - 348190 templates: - - '{{Game data/config|Windows|{{p|game}}\Variants\NetHack\\.nethackrc}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.nethackrc}}' -'Vyruz: Destruction of the Untel Empire': + - "{{Game data/config|Windows|{{p|game}}\\Variants\\NetHack\\\\.nethackrc}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.nethackrc}}" +"Vyruz: Destruction of the Untel Empire": pageId: 131659 -'Vzerthos: The Heir of Thunder': +"Vzerthos: The Heir of Thunder": pageId: 56643 steam: 536450 W. T. B.: @@ -188192,7 +182998,7 @@ W.I.T.C.H.: W4RR-i/o-RS: pageId: 76580 steam: 752780 -'W4RR-i/o-RS: Descent': +"W4RR-i/o-RS: Descent": pageId: 127764 steam: 1016010 WAIFU Wars Online: @@ -188202,17 +183008,17 @@ WAKFU: pageId: 49627 steam: 215080 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Ankama\Wakfu}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\Ankama\\Wakfu}}" WALL-E: pageId: 48615 steam: 331750 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\WALL-E\}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\WALL-E\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\WALL-E\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\WALL-E\\}}" WAR Pig - Big Bang: pageId: 74830 steam: 736610 -'WAR WAR WAR: Smiles vs Ghosts': +"WAR WAR WAR: Smiles vs Ghosts": pageId: 108064 steam: 916820 WAR7: @@ -188225,8 +183031,8 @@ WARNO: pageId: 188704 steam: 1611600 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\Saved Games\EugenSystems\WARNO\}}' - - '{{Game data/config|Windows|{{p|userprofile}}\Saved Games\EugenSystems\WARNO\}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\Saved Games\\EugenSystems\\WARNO\\}}" + - "{{Game data/config|Windows|{{p|userprofile}}\\Saved Games\\EugenSystems\\WARNO\\}}" WARP-TEK: pageId: 124319 steam: 924870 @@ -188239,7 +183045,7 @@ WARZONE: WASDead: pageId: 107728 steam: 912680 -'WASDead: Complete Edition': +"WASDead: Complete Edition": pageId: 153622 steam: 1189950 WATCH: @@ -188280,69 +183086,69 @@ WORDER: WORLDS at WAR (Monitors Only): pageId: 135433 steam: 1010080 -'WRC 10: FIA World Rally Championship': +"WRC 10: FIA World Rally Championship": pageId: 167863 steam: 1462810 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\My Games\WRC10\UserSettings.cfg}}' - - '{{Game data/saves|Steam|{{P|Steam}}\userdata\{{P|uid}}\1462810\remote\SAVEDATA}}' -'WRC 2: FIA World Rally Championship': + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\My Games\\WRC10\\UserSettings.cfg}}" + - "{{Game data/saves|Steam|{{P|Steam}}\\userdata\\{{P|uid}}\\1462810\\remote\\SAVEDATA}}" +"WRC 2: FIA World Rally Championship": pageId: 60015 -'WRC 3: FIA World Rally Championship': +"WRC 3: FIA World Rally Championship": pageId: 60017 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Milestone\WRC3}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Milestone\WRC3\Saves}}' -'WRC 4: FIA World Rally Championship': + - "{{Game data/config|Windows|{{p|appdata}}\\Milestone\\WRC3}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Milestone\\WRC3\\Saves}}" +"WRC 4: FIA World Rally Championship": pageId: 40560 steam: 256330 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Milestone\WRC4}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Milestone\WRC4\Saves}}' -'WRC 5: FIA World Rally Championship': + - "{{Game data/config|Windows|{{p|appdata}}\\Milestone\\WRC4}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Milestone\\WRC4\\Saves}}" +"WRC 5: FIA World Rally Championship": pageId: 46130 steam: 354160 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\WRC5\}}' -'WRC 6: FIA World Rally Championship': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\WRC5\\}}" +"WRC 6: FIA World Rally Championship": pageId: 39239 steam: 458770 templates: - - '{{Game data/saves|Windows|{{p|steam}}\userdata\{{p|uid}}\458770\}}' -'WRC 7: FIA World Rally Championship': + - "{{Game data/saves|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\458770\\}}" +"WRC 7: FIA World Rally Championship": pageId: 69486 steam: 621830 templates: - - '{{Game data/saves|Windows|{{P|steam}}\userdata\{{P|uid}}\621830\remote\}}' -'WRC 8: FIA World Rally Championship': + - "{{Game data/saves|Windows|{{P|steam}}\\userdata\\{{P|uid}}\\621830\\remote\\}}" +"WRC 8: FIA World Rally Championship": pageId: 128666 steam: 1004750 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\My Games\WRC8\Usersettings.cfg}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\My Games\WRC8\SAVEDATA}}' -'WRC 9: FIA World Rally Championship': + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\My Games\\WRC8\\Usersettings.cfg}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\My Games\\WRC8\\SAVEDATA}}" +"WRC 9: FIA World Rally Championship": pageId: 158653 steam: 1267540 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\My Games\WRC9\UserSettings.cfg}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\My Games\WRC9\SAVEDATA}}' + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\My Games\\WRC9\\UserSettings.cfg}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\My Games\\WRC9\\SAVEDATA}}" WRC Generations: pageId: 182983 steam: 1953520 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\My Games\WRCG\UserSettings.cfg}}' - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\1953520\remote\}}' + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\My Games\\WRCG\\UserSettings.cfg}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\1953520\\remote\\}}" WRC Powerslide: pageId: 55333 steam: 256350 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Milestone\WRC Powerslide\}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Milestone\WRC Powerslide\}}' -'WRC: FIA World Rally Championship': + - "{{Game data/config|Windows|{{p|appdata}}\\Milestone\\WRC Powerslide\\}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Milestone\\WRC Powerslide\\}}" +"WRC: FIA World Rally Championship": pageId: 60013 templates: - - '{{Game data/config|Windows|{{p|appdata}}\BlackBean\WRC\Config.ini|{{p|appdata}}\BlackBean\WRC\Settings.dat}}' - - '{{Game data/saves|Windows|{{p|appdata}}\BlackBean\WRC\Saves}}' + - "{{Game data/config|Windows|{{p|appdata}}\\BlackBean\\WRC\\Config.ini|{{p|appdata}}\\BlackBean\\WRC\\Settings.dat}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\BlackBean\\WRC\\Saves}}" WREN: pageId: 151115 steam: 1101960 @@ -188361,66 +183167,66 @@ WW Fantasy: WW2 Zombie Range VR: pageId: 141236 steam: 1088010 -'WW2: Bunker Simulator': +"WW2: Bunker Simulator": pageId: 151553 steam: 1155870 WWE 2K Battlegrounds: pageId: 161591 steam: 1142100 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\WWEPlaygrounds\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\WWEPlaygrounds\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\WWEPlaygrounds\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\WWEPlaygrounds\\Saved\\SaveGames\\}}" WWE 2K15: pageId: 24377 steam: 240460 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\WWE2K15\config.ini}}' - - '{{Game data/saves|Windows|{{p|steam}}\userdata\{{p|uid}}\240460\remote\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\WWE2K15\\config.ini}}" + - "{{Game data/saves|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\240460\\remote\\}}" WWE 2K16: pageId: 31403 steam: 385730 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\WWE2K16\config.ini}}' - - '{{Game data/saves|Windows|{{p|steam}}\userdata\{{p|uid}}\385730\remote\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\WWE2K16\\config.ini}}" + - "{{Game data/saves|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\385730\\remote\\}}" WWE 2K17: pageId: 56413 steam: 510510 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\WWE2K17\config.ini}}' - - '{{Game data/saves|Windows|{{p|steam}}\userdata\{{p|uid}}\510510\remote\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\WWE2K17\\config.ini}}" + - "{{Game data/saves|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\510510\\remote\\}}" WWE 2K18: pageId: 72545 steam: 664430 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\WWE2K18\}}' - - '{{Game data/saves|Windows|{{p|steam}}\userdata\{{p|uid}}\664430\remote\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\WWE2K18\\}}" + - "{{Game data/saves|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\664430\\remote\\}}" WWE 2K19: pageId: 97669 steam: 817130 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\WWE2K19\}}' - - '{{Game data/saves|Windows|{{p|steam}}\userdata\{{p|uid}}\817130\remote\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\WWE2K19\\}}" + - "{{Game data/saves|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\817130\\remote\\}}" WWE 2K20: pageId: 142896 steam: 1015500 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\WWE2K20\}}' - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\1015500\remote\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\WWE2K20\\}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\1015500\\remote\\}}" WWE 2K22: pageId: 174495 steam: 1255630 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\WWE2K22\}}' - - '{{Game data/saves|Windows|{{p|steam}}\userdata\{{p|uid}}\1255630\remote\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\WWE2K22\\}}" + - "{{Game data/saves|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\1255630\\remote\\}}" WWE 2K23: pageId: 184565 steam: 1942660 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\WWE2K23\}}' - - '{{Game data/saves|Windows|{{p|steam}}\userdata\{{p|uid}}\1942660\remote\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\WWE2K23\\}}" + - "{{Game data/saves|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\1942660\\remote\\}}" WWF Raw: pageId: 35829 -'WWF WrestleMania: The Arcade Game': +"WWF WrestleMania: The Arcade Game": pageId: 188586 WWF in Your House: pageId: 187431 @@ -188433,7 +183239,7 @@ WWII英雄列伝 最強の虎 クルト・クニスペル: WWII英雄列伝 泥の中の虎 オットー・カリウス: pageId: 81607 steam: 792470 -'WWR: World of Warfare Robots': +"WWR: World of Warfare Robots": pageId: 181966 steam: 659840 WWTF: @@ -188453,7 +183259,7 @@ Wacky Races: Wacky Soldiers: pageId: 150892 steam: 1152730 -'Wacky Spores: The Chase': +"Wacky Spores: The Chase": pageId: 57220 steam: 582530 Wacky Wheels: @@ -188461,8 +183267,8 @@ Wacky Wheels: pageId: 19557 steam: 358380 templates: - - '{{Game data/config|DOS|{{p|game}}\WACKY.CFG}}' - - '{{Game data/saves|DOS|{{p|game}}\WACKY.CFG}}' + - "{{Game data/config|DOS|{{p|game}}\\WACKY.CFG}}" + - "{{Game data/saves|DOS|{{p|game}}\\WACKY.CFG}}" Wacky Wheels HD: pageId: 43346 steam: 422590 @@ -188475,14 +183281,14 @@ WackyMoles: Waddle Home: pageId: 42515 steam: 486290 -Wagamama Alice and the Hundred Day's War: +"Wagamama Alice and the Hundred Day's War": pageId: 76555 steam: 738840 Wagamama High Spec: pageId: 62757 steam: 575480 templates: - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\575480\remote\}}' + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\575480\\remote\\}}" Wagers of War: pageId: 104155 steam: 891950 @@ -188502,8 +183308,8 @@ Waifu Fighter: pageId: 188529 steam: 1757490 templates: - - '{{Game data/saves|Windows|{{p|appdata}}\WaifuFighter\SaveGame.sav}}' -'Waifu Hunter - Episode 1 : The Runaway Samurai': + - "{{Game data/saves|Windows|{{p|appdata}}\\WaifuFighter\\SaveGame.sav}}" +"Waifu Hunter - Episode 1 : The Runaway Samurai": pageId: 114690 steam: 946500 Waifu Hunter - Secret of Pirates: @@ -188536,7 +183342,7 @@ Wake: Wake Up: pageId: 41727 steam: 499540 -'Wake Up, Good Guardian!': +"Wake Up, Good Guardian!": pageId: 149865 steam: 855990 Wake the Dragon: @@ -188548,8 +183354,8 @@ WakeUp!: Wakeboarding Unleashed Featuring Shaun Murray: pageId: 167713 templates: - - '{{Game data/config|Windows|{{p|game}}\Game\config.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\Game\Save\}}' + - "{{Game data/config|Windows|{{p|game}}\\Game\\config.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\Game\\Save\\}}" Waking: gog: 1997189723 pageId: 139430 @@ -188559,26 +183365,21 @@ Waking Mars: pageId: 4779 steam: 227200 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\Saved Games\Waking Mars}}' - - >- - {{Game data/config|OS - X|{{p|osxhome}}/Library/containers/com.tigerstylegames.wakingmars-pc/Data/Library/Application Support/Waking - Mars/|~/Library/Application Support/Waking Mars/}} - - '{{Game data/config|Linux|{{P|xdgdatahome}}/WakingMars/}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\Saved Games\Waking Mars}}' - - >- - {{Game data/saves|OS X|{{p|osxhome}}/Library/containers/com.tigerstylegames.wakingmars-pc/Data/Library/Application - Support/Waking Mars/|~/Library/Application Support/Waking Mars/}} - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/WakingMars/}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\Saved Games\\Waking Mars}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/containers/com.tigerstylegames.wakingmars-pc/Data/Library/Application Support/Waking Mars/|~/Library/Application Support/Waking Mars/}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/WakingMars/}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Saved Games\\Waking Mars}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/containers/com.tigerstylegames.wakingmars-pc/Data/Library/Application Support/Waking Mars/|~/Library/Application Support/Waking Mars/}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/WakingMars/}}" Waking Violet: pageId: 99324 steam: 845600 -'Waking the Glares: Chapters I and II': +"Waking the Glares: Chapters I and II": pageId: 58152 steam: 568470 Waku Waku 7: pageId: 168075 -'Walden, a game': +"Walden, a game": pageId: 129971 steam: 1011700 Walhall: @@ -188631,13 +183432,13 @@ Wall World: pageId: 191210 steam: 2187290 templates: - - '{{Game data/config|Windows|{{p|userprofile\documents}}\Alawar\WallWorld\}}' - - '{{Game data/saves|Windows|{{p|userprofile\documents}}\Alawar\WallWorld\Saves}}' + - "{{Game data/config|Windows|{{p|userprofile\\documents}}\\Alawar\\WallWorld\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\documents}}\\Alawar\\WallWorld\\Saves}}" Wall of Insanity: pageId: 181760 steam: 1713720 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\VenomizedArt\Wall Of Insanity}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\VenomizedArt\\Wall Of Insanity}}" Wall to Wall: pageId: 128173 renamedFrom: @@ -188646,11 +183447,9 @@ Wall to Wall: Wallace & Gromit in Project Zoo: pageId: 163714 templates: - - >- - {{Game - data/config|Windows|{{File|{{P|programdata}}\ProjectZoo\Options.txt}}|{{File|{{P|programdata}}\ProjectZoo\Controls.txt}}|{{File|{{P|programdata}}\ProjectZoo\Bindings.cfg}}}} - - '{{Game data/saves|Windows|{{File|{{P|programdata}}\ProjectZoo\ZOOSAVE.DAT}}}}' -Wallace & Gromit's Grand Adventures: + - "{{Game data/config|Windows|{{File|{{P|programdata}}\\ProjectZoo\\Options.txt}}|{{File|{{P|programdata}}\\ProjectZoo\\Controls.txt}}|{{File|{{P|programdata}}\\ProjectZoo\\Bindings.cfg}}}}" + - "{{Game data/saves|Windows|{{File|{{P|programdata}}\\ProjectZoo\\ZOOSAVE.DAT}}}}" +"Wallace & Gromit's Grand Adventures": gog: 1207659099 gogSide: - 1207663203 @@ -188664,12 +183463,8 @@ Wallace & Gromit's Grand Adventures: - 31120 - 31130 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\Telltale Games\Wallace and Gromit Ep\prefs.prop|{{p|userprofile\Documents}}\Telltale Games\Wallace & Gromit - \prefs.prop}} - - >- - {{Game data/saves|Windows|{{p|userprofile\Documents}}\Telltale Games\Wallace and Gromit Ep\*.save|{{p|userprofile\Documents}}\Telltale Games\Wallace & Gromit - \*.save}} + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Telltale Games\\Wallace and Gromit Ep\\prefs.prop|{{p|userprofile\\Documents}}\\Telltale Games\\Wallace & Gromit - \\prefs.prop}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Telltale Games\\Wallace and Gromit Ep\\*.save|{{p|userprofile\\Documents}}\\Telltale Games\\Wallace & Gromit - \\*.save}}" Wallenda: pageId: 122746 steam: 962340 @@ -188686,30 +183481,28 @@ Wally and the FANTASTIC PREDATORS: pageId: 144612 steam: 1077450 templates: - - '{{Game data/saves|Windows|{{p|localappdata}}\Wally_and_the_FANTASTIC_PREDATORS\default\*.sav}}' -'Walt Disney World Quest: Magical Racing Tour': + - "{{Game data/saves|Windows|{{p|localappdata}}\\Wally_and_the_FANTASTIC_PREDATORS\\default\\*.sav}}" +"Walt Disney World Quest: Magical Racing Tour": pageId: 17957 templates: - - '{{Game data/config|Windows|C:\Windows\disney.ini}}' - - '{{Game data/saves|Windows|{{P|game}}\WDWRacing.dat}}' + - "{{Game data/config|Windows|C:\\Windows\\disney.ini}}" + - "{{Game data/saves|Windows|{{P|game}}\\WDWRacing.dat}}" Waltz of the Wizard (Legacy demo): pageId: 37187 renamedFrom: - Waltz of the Wizard steam: 436820 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Aldin\Waltz of the Wizard}}' - - '{{Game data/saves|Windows|{{P|hkcu}}\Software\Aldin\Waltz of the Wizard}}' -'Waltz of the Wizard: Natural Magic': + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Aldin\\Waltz of the Wizard}}" + - "{{Game data/saves|Windows|{{P|hkcu}}\\Software\\Aldin\\Waltz of the Wizard}}" +"Waltz of the Wizard: Natural Magic": pageId: 141039 renamedFrom: - - 'Waltz of the Wizard: Extended Edition' + - "Waltz of the Wizard: Extended Edition" steam: 1094390 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Aldin\Waltz of the Wizard: Extended Edition}}' - - >- - {{Game data/saves|Windows|{{P|hkcu}}\Software\Aldin\Waltz of the Wizard: Extended - Edition|{{P|userprofile\appdata\locallow}}\Aldin\Waltz of the Wizard_ Extended Edition\Saves\}} + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Aldin\\Waltz of the Wizard: Extended Edition}}" + - "{{Game data/saves|Windows|{{P|hkcu}}\\Software\\Aldin\\Waltz of the Wizard: Extended Edition|{{P|userprofile\\appdata\\locallow}}\\Aldin\\Waltz of the Wizard_ Extended Edition\\Saves\\}}" Wampee Helicopters: pageId: 134548 steam: 1027610 @@ -188723,15 +183516,15 @@ Wand Wars: pageId: 43632 steam: 422110 templates: - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Moonradish/Wand Wars/}}' - - '{{Game data/saves|Windows|{{P|game}}\WandWars_Data\*.dat}}' + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Moonradish/Wand Wars/}}" + - "{{Game data/saves|Windows|{{P|game}}\\WandWars_Data\\*.dat}}" Wand Wars VR: pageId: 78643 steam: 765730 -'Wand Wars: Rise': +"Wand Wars: Rise": pageId: 127295 renamedFrom: - - '魔杖战争 Wand Wars: Rise' + - "魔杖战争 Wand Wars: Rise" steam: 1020360 Wanda - A Beautiful Apocalypse: pageId: 42700 @@ -188746,12 +183539,12 @@ WanderLust (2021): pageId: 166820 steam: 1507420 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\HFTGames\WanderLust\}}' - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\HFTGames\WanderLust\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\HFTGames\\WanderLust\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\HFTGames\\WanderLust\\}}" Wanderer of Teandria: pageId: 42876 steam: 477910 -'Wanderer: The Rebirth': +"Wanderer: The Rebirth": pageId: 55055 steam: 568250 Wanderfog: @@ -188779,47 +183572,41 @@ Wanderland: pageId: 53485 steam: 545820 templates: - - '{{Game data/config|Windows|{{P|appdata}}\Artogon\Wanderland\}}' - - '{{Game data/saves|Windows|{{P|appdata}}\Artogon\Wanderland\}}' + - "{{Game data/config|Windows|{{P|appdata}}\\Artogon\\Wanderland\\}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\Artogon\\Wanderland\\}}" Wanderlust: pageId: 74171 steam: 729670 Wanderlust Adventures: pageId: 46925 steam: 240620 -'Wanderlust: Rebirth': +"Wanderlust: Rebirth": pageId: 17463 steam: 211580 -'Wanderlust: Transsiberian': +"Wanderlust: Transsiberian": gog: 1766556386 pageId: 159094 steam: 1233420 templates: - - >- - {{Game data/config|Windows|{{P|userprofile\appdata\locallow}}\Different - Tales\Transsiberian\Saves\settings.json|{{P|hkcu}}\SOFTWARE\Different Tales\Transsiberian\}} - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Different Tales\Transsiberian\Saves\transsib0.json}}' -'Wanderlust: Travel Stories': + - "{{Game data/config|Windows|{{P|userprofile\\appdata\\locallow}}\\Different Tales\\Transsiberian\\Saves\\settings.json|{{P|hkcu}}\\SOFTWARE\\Different Tales\\Transsiberian\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Different Tales\\Transsiberian\\Saves\\transsib0.json}}" +"Wanderlust: Travel Stories": gog: 1739170762 pageId: 140576 steam: 1051410 templates: - - >- - {{Game data/config|Windows|{{P|userprofile\appdata\locallow}}\Different - Tales\Wanderlust\Saves\settings.json|{{P|hkcu}}\Software\Different Tales\Wanderlust\}} - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Different Tales\Wanderlust\Saves\profile0.json}}' + - "{{Game data/config|Windows|{{P|userprofile\\appdata\\locallow}}\\Different Tales\\Wanderlust\\Saves\\settings.json|{{P|hkcu}}\\Software\\Different Tales\\Wanderlust\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Different Tales\\Wanderlust\\Saves\\profile0.json}}" Wandersong: gog: 1720779330 pageId: 70389 steam: 530320 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\wandersong\}}' - - '{{Game data/config|OS X|{{P|osxhome}}/Library/Application Support/com.greglobanov.wandersong/}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\wandersong\}}' - - >- - {{Game data/saves|Microsoft - Store|{{P|localappdata}}\Packages\HumbleBundle.Wandersong_q2mcdwmzx4qja\LocalCache\Local\wandersong\}} - - '{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/com.greglobanov.wandersong/}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\wandersong\\}}" + - "{{Game data/config|OS X|{{P|osxhome}}/Library/Application Support/com.greglobanov.wandersong/}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\wandersong\\}}" + - "{{Game data/saves|Microsoft Store|{{P|localappdata}}\\Packages\\HumbleBundle.Wandersong_q2mcdwmzx4qja\\LocalCache\\Local\\wandersong\\}}" + - "{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/com.greglobanov.wandersong/}}" Wands: pageId: 78178 steam: 741400 @@ -188847,22 +183634,22 @@ Wanted Corp.: Wanted Killer VR: pageId: 91831 steam: 759540 -'Wanted: Dead': +"Wanted: Dead": pageId: 184374 steam: 1981610 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\WDGame\Saved\SaveGames\option\}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\WDGame\Saved\SaveGames\main}}' -'Wanted: Weapons of Fate': + - "{{Game data/config|Windows|{{P|localappdata}}\\WDGame\\Saved\\SaveGames\\option\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\WDGame\\Saved\\SaveGames\\main}}" +"Wanted: Weapons of Fate": pageId: 28930 steam: 21070 templates: - - '{{Game data/config|Windows|{{p|LOCALAPPDATA}}\wanted\data\settings}}' - - '{{Game data/saves|Windows|{{p|LOCALAPPDATA}}\wanted\saves}}' + - "{{Game data/config|Windows|{{p|LOCALAPPDATA}}\\wanted\\data\\settings}}" + - "{{Game data/saves|Windows|{{p|LOCALAPPDATA}}\\wanted\\saves}}" War Battle Royale Battlegrounds: pageId: 149833 steam: 1148300 -'War Birds: WW2 Air strike 1942': +"War Birds: WW2 Air strike 1942": pageId: 44090 steam: 451670 War Blade: @@ -188874,7 +183661,7 @@ War Brokers: War Builder League: pageId: 78516 steam: 999270 -'War Chariots: Royal Legion': +"War Chariots: Royal Legion": pageId: 63729 steam: 654060 War Cube: @@ -188889,11 +183676,11 @@ War Ender: War Ender Evolution: pageId: 155540 steam: 1208420 -'War Front: Turning Point': +"War Front: Turning Point": pageId: 79646 templates: - - '{{Game data/config|Windows|{{p|game}}\Run\Profiles}}' - - '{{Game data/saves|Windows|{{p|game}}\Run\Profiles\Player\Save}}' + - "{{Game data/config|Windows|{{p|game}}\\Run\\Profiles}}" + - "{{Game data/saves|Windows|{{p|game}}\\Run\\Profiles\\Player\\Save}}" War Ghost: pageId: 144548 steam: 1140060 @@ -188903,8 +183690,8 @@ War Girl: War Gods: pageId: 146670 templates: - - '{{Game data/config|Windows|{{p|hklm}}\SOFTWARE\GT Interactive\War Gods\1.00}}' -'War Heroes: Invasion': + - "{{Game data/config|Windows|{{p|hklm}}\\SOFTWARE\\GT Interactive\\War Gods\\1.00}}" +"War Heroes: Invasion": pageId: 75131 steam: 622700 War Hospital: @@ -188917,25 +183704,25 @@ War Hunter: War Inc. Battlezone: pageId: 40950 steam: 107900 -'War Machines: Free to Play': +"War Machines: Free to Play": pageId: 123637 steam: 953250 War Mongrels: pageId: 170777 steam: 1101790 templates: - - '{{Game data/config|Windows|{{p|game}}\WM\Saved\Config\WindowsNoEditor}}' - - '{{Game data/saves|Windows|{{p|game}}\WM\Savegames}}' + - "{{Game data/config|Windows|{{p|game}}\\WM\\Saved\\Config\\WindowsNoEditor}}" + - "{{Game data/saves|Windows|{{p|game}}\\WM\\Savegames}}" War Of Being: pageId: 189327 steam: 2475790 templates: - - '{{Game data/config|Windows|{{p|LOCALAPPDATA}}\DMTesseracT\Saved\Config\Windows}}' - - '{{Game data/saves|Windows|{{p|LOCALAPPDATA}}\DMTesseracT\Saved\SaveGames}}' + - "{{Game data/config|Windows|{{p|LOCALAPPDATA}}\\DMTesseracT\\Saved\\Config\\Windows}}" + - "{{Game data/saves|Windows|{{p|LOCALAPPDATA}}\\DMTesseracT\\Saved\\SaveGames}}" War Operations: pageId: 49623 steam: 316950 -'War Planet Online: Global Conquest': +"War Planet Online: Global Conquest": pageId: 76257 steam: 719640 War Platform: @@ -188944,15 +183731,15 @@ War Platform: War Robots: pageId: 90524 steam: 767560 -'War Robots VR: The Skirmish': +"War Robots VR: The Skirmish": pageId: 67800 steam: 672640 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Pixonic\WarRobotsVR}}' -'War Robots: Frontiers': + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Pixonic\\WarRobotsVR}}" +"War Robots: Frontiers": pageId: 183811 steam: 1491000 -'War Robots: Planet Defender': +"War Robots: Planet Defender": pageId: 153770 steam: 1191190 War Rock: @@ -188971,20 +183758,20 @@ War Tech Fighters: pageId: 63197 steam: 630030 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Drakkar Dev\War Tech Fighters\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\WarTechFighters\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Drakkar Dev\\War Tech Fighters\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\WarTechFighters\\}}" War Theatre: pageId: 129961 steam: 803720 -'War Theatre: Blood of Winter': +"War Theatre: Blood of Winter": pageId: 149396 steam: 1150650 War Thunder: pageId: 5623 steam: 236390 templates: - - '{{Game data/config|Windows|{{p|game}}\config.blk | {{P|userprofile\Documents}}\My Games\WarThunder\Saves\}}' - - '{{Game data/config|Linux|{{p|xdgconfighome}}/WarThunder/Saves/{{p|uid}}}}' + - "{{Game data/config|Windows|{{p|game}}\\config.blk | {{P|userprofile\\Documents}}\\My Games\\WarThunder\\Saves\\}}" + - "{{Game data/config|Linux|{{p|xdgconfighome}}/WarThunder/Saves/{{p|uid}}}}" War Trains: pageId: 148653 steam: 1173340 @@ -189002,29 +183789,29 @@ War Wind: pageId: 131824 steam: 1741140 templates: - - '{{Game data/saves|Windows|{{p|game}}\Saves}}' -'War Wind II: Human Onslaught': + - "{{Game data/saves|Windows|{{p|game}}\\Saves}}" +"War Wind II: Human Onslaught": gog: 1441098222 pageId: 131826 steam: 1741150 templates: - - '{{Game data/saves|Windows|{{p|game}}\SAVES}}' -'War World: Tactical Combat': + - "{{Game data/saves|Windows|{{p|game}}\\SAVES}}" +"War World: Tactical Combat": pageId: 32577 templates: - - '{{Game data/config|Windows|{{p|game}}\Settings.txt}}' -'War and Peace: 1796-1815': + - "{{Game data/config|Windows|{{p|game}}\\Settings.txt}}" +"War and Peace: 1796-1815": pageId: 167704 War for the Overworld: gog: 1964276929 pageId: 7449 steam: 230190 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Subterranean Games\War For The Overworld\}}' - - '{{Game data/config|Linux|{{p|xdgconfighome}}/unity3d/Subterranean Games/War For The Overworld/prefs}}' - - '{{Game data/saves|GOG.com|{{p|game}}\GameData\Maps\Saves\}}' - - '{{Game data/saves|Windows|{{p|game}}\Profile\{{p|uid}}\Saves\}}' - - '{{Game data/saves|Steam|{{P|steam}}/userdata/{{P|uid}}/230190/remote/}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Subterranean Games\\War For The Overworld\\}}" + - "{{Game data/config|Linux|{{p|xdgconfighome}}/unity3d/Subterranean Games/War For The Overworld/prefs}}" + - "{{Game data/saves|GOG.com|{{p|game}}\\GameData\\Maps\\Saves\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\Profile\\{{p|uid}}\\Saves\\}}" + - "{{Game data/saves|Steam|{{P|steam}}/userdata/{{P|uid}}/230190/remote/}}" War for the West: pageId: 150543 steam: 1137400 @@ -189034,7 +183821,7 @@ War in Pocket: War in Space: pageId: 121057 steam: 959380 -'War in a Box: Paper Tanks': +"War in a Box: Paper Tanks": pageId: 50003 steam: 308460 War of Beach: @@ -189049,7 +183836,7 @@ War of Conquest: War of Criminals: pageId: 88812 steam: 807940 -'War of Gaia : Into the Fire': +"War of Gaia : Into the Fire": pageId: 135113 steam: 873140 War of Gods: @@ -189058,7 +183845,7 @@ War of Gods: War of Omens Card Game: pageId: 127740 steam: 345460 -'War of Power: The Last Fight': +"War of Power: The Last Fight": pageId: 128081 steam: 1032090 War of Rights: @@ -189074,8 +183861,8 @@ War of the Human Tanks: pageId: 34032 steam: 263400 templates: - - '{{Game data/config|Windows|{{P|game}}\system40.ini|{{p|hkcu}}\Software\Fruitbat Factory\War of the Human Tanks}}' - - '{{Game data/saves|Windows|{{P|game}}\SaveData}}' + - "{{Game data/config|Windows|{{P|game}}\\system40.ini|{{p|hkcu}}\\Software\\Fruitbat Factory\\War of the Human Tanks}}" + - "{{Game data/saves|Windows|{{P|game}}\\SaveData}}" War of the Human Tanks - ALTeR: pageId: 34045 steam: 301920 @@ -189114,27 +183901,27 @@ War on Drugs VR: War on Folvos: pageId: 49787 steam: 317380 -'War, the Game': +"War, the Game": pageId: 48977 steam: 322900 -'War.io: Survival Battle Royale': +"War.io: Survival Battle Royale": pageId: 102837 steam: 903070 -'War.io: Zombie Battle Royale': +"War.io: Zombie Battle Royale": pageId: 104183 steam: 912300 WarBirds - World War II Combat Aviation: pageId: 48004 steam: 365620 -'WarBirds Dawn of Aces, World War I Air Combat': +"WarBirds Dawn of Aces, World War I Air Combat": pageId: 42233 steam: 498940 WarBirds Dogfights 2016: pageId: 44998 steam: 433130 -'WarBirds: Red Baron': +"WarBirds: Red Baron": pageId: 169082 -'WarBox: Camouflage': +"WarBox: Camouflage": pageId: 104563 steam: 894200 WarBreeds: @@ -189152,13 +183939,13 @@ WarForwards: pageId: 139055 steam: 1081870 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\WarForwards\User Data}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\WarForwards\User Data\Default\IndexedDB}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\WarForwards\\User Data}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\WarForwards\\User Data\\Default\\IndexedDB}}" WarGames: pageId: 72119 templates: - - '{{Game data/config|Windows|{{p|hklm}}\Software\Interactive Studios Ltd\WarGames}}' - - '{{Game data/saves|Windows|{{p|game}}\saves\}}' + - "{{Game data/config|Windows|{{p|hklm}}\\Software\\Interactive Studios Ltd\\WarGames}}" + - "{{Game data/saves|Windows|{{p|game}}\\saves\\}}" WarGames (2018): pageId: 137253 steam: 779420 @@ -189184,7 +183971,7 @@ WarZone Flashpoint: Warawara Invaders: pageId: 89470 steam: 795550 -'Warbands: Bushido': +"Warbands: Bushido": pageId: 54319 steam: 556820 Warbanners: @@ -189205,52 +183992,50 @@ Warbrush: Warchasm: pageId: 154103 steam: 1184260 -'Warcraft Adventures: Lord of the Clans': +"Warcraft Adventures: Lord of the Clans": pageId: 147218 -'Warcraft II: Battle.net Edition': +"Warcraft II: Battle.net Edition": gog: 1418669891 gogSide: - 1841195376 pageId: 25788 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Blizzard Entertainment\Warcraft II\}}' - - '{{Game data/saves|Windows|{{p|game}}\Save}}' -'Warcraft II: Tides of Darkness': + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Blizzard Entertainment\\Warcraft II\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\Save}}" +"Warcraft II: Tides of Darkness": pageId: 23927 templates: - - '{{Game data/config|DOS|{{p|game}}\WAR2.INI}}' - - '{{Game data/saves|DOS|{{p|game}}\SAVE*.SAV}}' -'Warcraft III: Reforged': + - "{{Game data/config|DOS|{{p|game}}\\WAR2.INI}}" + - "{{Game data/saves|DOS|{{p|game}}\\SAVE*.SAV}}" +"Warcraft III: Reforged": pageId: 120562 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Warcraft III\War3Preferences.txt}}' - - '{{Game data/config|OS X|{{P|osxhome}}/Library/Application Support/Blizzard/Warcraft III/War3Preferences.txt}}' - - '{{Game data/saves|Windows|{{p|userprofile\documents}}\Warcraft III\BattleNet\{{p|uid}}\Campaigns\}}' - - '{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/Warcraft III/BattleNet/{{p|uid}}/Campaigns/}}' -'Warcraft III: Reign of Chaos': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Warcraft III\\War3Preferences.txt}}" + - "{{Game data/config|OS X|{{P|osxhome}}/Library/Application Support/Blizzard/Warcraft III/War3Preferences.txt}}" + - "{{Game data/saves|Windows|{{p|userprofile\\documents}}\\Warcraft III\\BattleNet\\{{p|uid}}\\Campaigns\\}}" + - "{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/Warcraft III/BattleNet/{{p|uid}}/Campaigns/}}" +"Warcraft III: Reign of Chaos": pageId: 4941 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Blizzard Entertainment\Warcraft III\}}' - - >- - {{Game data/config|OS X|{{P|osxhome}}/Library/Preferences/com.blizzard.Warcraft - III.plist|{{P|osxhome}}/Library/Preferences/com.blizzard.WarcraftIII.plist}} - - '{{Game data/saves|Windows|{{p|userprofile}}\Saved Games\Warcraft III\}}' - - '{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/Blizzard/Warcraft III/Save/}}' -'Warcraft: Orcs & Humans': + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Blizzard Entertainment\\Warcraft III\\}}" + - "{{Game data/config|OS X|{{P|osxhome}}/Library/Preferences/com.blizzard.Warcraft III.plist|{{P|osxhome}}/Library/Preferences/com.blizzard.WarcraftIII.plist}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Saved Games\\Warcraft III\\}}" + - "{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/Blizzard/Warcraft III/Save/}}" +"Warcraft: Orcs & Humans": gog: 1706049527 gogSide: - 1841195376 pageId: 7891 templates: - - '{{Game data/config|DOS|{{p|game}}\CONFIG.WAR (sound card settings)|{{p|game}}\PREFS.WAR (in-game options)}}' - - '{{Game data/saves|DOS|{{p|game}}\SAVE*.SAV}}' + - "{{Game data/config|DOS|{{p|game}}\\CONFIG.WAR (sound card settings)|{{p|game}}\\PREFS.WAR (in-game options)}}" + - "{{Game data/saves|DOS|{{p|game}}\\SAVE*.SAV}}" Warcube: pageId: 39237 steam: 505060 Warden: pageId: 151625 steam: 1149010 -'Warden: Melody of the Undergrowth': +"Warden: Melody of the Undergrowth": pageId: 43666 steam: 338310 Wardens of the Amber Cage: @@ -189269,7 +184054,7 @@ Warface: pageId: 18175 steam: 291480 templates: - - '{{Game data/config|Windows|{{P|userprofile}}\Saved Games\My Games\Warface\}}' + - "{{Game data/config|Windows|{{P|userprofile}}\\Saved Games\\My Games\\Warface\\}}" Warfare: pageId: 41264 steam: 35300 @@ -189289,8 +184074,8 @@ Warfork: pageId: 143353 steam: 671610 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\My Games\Warfork 2.1\basewf\config.cfg}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Documents/My Games/Warfork 2.1/basewf/config.cfg}}' + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\My Games\\Warfork 2.1\\basewf\\config.cfg}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Documents/My Games/Warfork 2.1/basewf/config.cfg}}" Warframe: pageId: 6023 steam: 230410 @@ -189410,50 +184195,50 @@ Warframe: - 2061922 - 2061923 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Warframe}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Warframe}}" Warframe TennoGen: pageId: 175865 -'Warfront Defenders: Westerplatte': +"Warfront Defenders: Westerplatte": pageId: 67520 steam: 412210 -'Wargame: Airland Battle': +"Wargame: Airland Battle": pageId: 8741 steam: 222750 templates: - - '{{Game data/config|Windows|C:\Users\%USERNAME%\Saved Games\EugenSystems\WarGame2}}' - - '{{Game data/saves|Windows|C:\Users\%USERNAME%\Saved Games\EugenSystems\WarGame2}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/EugenSystems/WarGame2/SavedGames/}}' -'Wargame: European Escalation': + - "{{Game data/config|Windows|C:\\Users\\%USERNAME%\\Saved Games\\EugenSystems\\WarGame2}}" + - "{{Game data/saves|Windows|C:\\Users\\%USERNAME%\\Saved Games\\EugenSystems\\WarGame2}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/EugenSystems/WarGame2/SavedGames/}}" +"Wargame: European Escalation": gog: 1207659247 pageId: 1722 steam: 58610 templates: - - '{{Game data/config|Linux|{{P|xdgconfighome}}/EugenSystems/WarGame/saves/}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\Saved Games\EugenSystems\WarGame\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/EugenSystems/WarGame/SavedGames}}' - - '{{Game data/saves|Linux|{{P|xdgconfighome}}/EugenSystems/WarGame/saves/}}' -'Wargame: Red Dragon': + - "{{Game data/config|Linux|{{P|xdgconfighome}}/EugenSystems/WarGame/saves/}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Saved Games\\EugenSystems\\WarGame\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/EugenSystems/WarGame/SavedGames}}" + - "{{Game data/saves|Linux|{{P|xdgconfighome}}/EugenSystems/WarGame/saves/}}" +"Wargame: Red Dragon": pageId: 16697 steam: 251060 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\Saved Games\EugenSystems\WarGame3\}}' - - '{{Game data/config|Linux|{{p|xdgconfighome}}/EugenSystems/WarGame3/saves}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\Saved Games\EugenSystems\WarGame3\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/EugenSystems/WarGame3/SavedGames/}}' - - '{{Game data/saves|Linux|{{p|xdgconfighome}}/EugenSystems/WarGame3/saves}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\Saved Games\\EugenSystems\\WarGame3\\}}" + - "{{Game data/config|Linux|{{p|xdgconfighome}}/EugenSystems/WarGame3/saves}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Saved Games\\EugenSystems\\WarGame3\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/EugenSystems/WarGame3/SavedGames/}}" + - "{{Game data/saves|Linux|{{p|xdgconfighome}}/EugenSystems/WarGame3/saves}}" Wargasm: pageId: 27479 templates: - - '{{Game data/config|Windows|{{P|hklm}}\Software\{{p|wow64}}\Digital Image Design\Wargasm\}}' + - "{{Game data/config|Windows|{{P|hklm}}\\Software\\{{p|wow64}}\\Digital Image Design\\Wargasm\\}}" Wargroove: pageId: 126033 steam: 607050 templates: - - '{{Game data/config|Windows|{{P|appdata}}\Chucklefish\Wargroove\save_local\options}}' - - '{{Game data/config|Linux|{{P|linuxhome}}/.local/share/Chucklefish/Wargroove/save_local/options}}' - - '{{Game data/saves|Windows|{{P|appdata}}\Chucklefish\Wargroove\save\}}' - - '{{Game data/saves|OS X|{{P|osxhome}}/Library/Chucklefish/Wargroove/save}}' - - '{{Game data/saves|Linux|{{P|linuxhome}}/.local/share/Chucklefish/Wargroove/save}}' + - "{{Game data/config|Windows|{{P|appdata}}\\Chucklefish\\Wargroove\\save_local\\options}}" + - "{{Game data/config|Linux|{{P|linuxhome}}/.local/share/Chucklefish/Wargroove/save_local/options}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\Chucklefish\\Wargroove\\save\\}}" + - "{{Game data/saves|OS X|{{P|osxhome}}/Library/Chucklefish/Wargroove/save}}" + - "{{Game data/saves|Linux|{{P|linuxhome}}/.local/share/Chucklefish/Wargroove/save}}" Wargroove 2: pageId: 190232 steam: 1346020 @@ -189463,14 +184248,14 @@ Wargs: Warhalla: pageId: 94128 steam: 852420 -'Warhammer 40,000: Armageddon': +"Warhammer 40,000: Armageddon": gog: 1748436321 gogSide: - - 1582106357 - - 2040958465 - - 1615360050 - - 2137933220 - 1094727688 + - 1582106357 + - 1615360050 + - 2040958465 + - 2137933220 pageId: 49239 steam: 312370 steamSide: @@ -189481,26 +184266,25 @@ Warhalla: - 405520 - 437110 - 437140 -'Warhammer 40,000: Armageddon - Da Orks': +"Warhammer 40,000: Armageddon - Da Orks": gog: 1392989695 pageId: 36189 steam: 455340 -'Warhammer 40,000: Battle Sister': +"Warhammer 40,000: Battle Sister": pageId: 183084 steam: 1733890 templates: - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\Pixel Toys\Battle Sister\saves}}' -'Warhammer 40,000: Battlesector': + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\Pixel Toys\\Battle Sister\\saves}}" +"Warhammer 40,000: Battlesector": gog: 1928462226 gogSide: - - 1743116974 - 1109339657 - - 2105142233 - - 1882106758 - - 2004956225 - 1193985497 + - 1743116974 + - 1882106758 - 1894360794 - 2004956225 + - 2105142233 pageId: 167145 steam: 1295500 steamSide: @@ -189508,89 +184292,81 @@ Warhalla: - 1793050 - 1793051 - 2011980 - - 2305830 - 2199370 -'Warhammer 40,000: Boltgun': + - 2305830 +"Warhammer 40,000: Boltgun": pageId: 178007 steam: 2005010 steamSide: - 2225900 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Boltgun\Saved\Config\WindowsNoEditor\GameUserSettings.ini}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Boltgun\Saved\SaveGames\{{p|uid}}}}' -'Warhammer 40,000: Carnage Champions': + - "{{Game data/config|Windows|{{p|localappdata}}\\Boltgun\\Saved\\Config\\WindowsNoEditor\\GameUserSettings.ini}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Boltgun\\Saved\\SaveGames\\{{p|uid}}}}" +"Warhammer 40,000: Carnage Champions": pageId: 43089 steam: 294120 -'Warhammer 40,000: Chaos Gate': +"Warhammer 40,000: Chaos Gate": gog: 1433928487 pageId: 8431 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/saves|Windows|{{p|game}}\Save_G}}' -'Warhammer 40,000: Chaos Gate - Daemonhunters': + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\Save_G}}" +"Warhammer 40,000: Chaos Gate - Daemonhunters": pageId: 168928 steam: 1611910 templates: - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\Complex Games Inc_\GreyKnights\SaveGames}}' -'Warhammer 40,000: Dakka Squadron - Flyboyz Edition': + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\Complex Games Inc_\\GreyKnights\\SaveGames}}" +"Warhammer 40,000: Dakka Squadron - Flyboyz Edition": gog: 1392183643 pageId: 166719 steam: 1253190 templates: - - '{{Game data/config|Windows|{{p|appdata}}/Local/DakkaGame/Saved/Config/WindowsNoEditor/}}' - - '{{Game data/saves|Windows|{{p|appdata}}/Local/DakkaGame/Saved/SaveGames/}}' -'Warhammer 40,000: Darktide': + - "{{Game data/config|Windows|{{p|appdata}}/Local/DakkaGame/Saved/Config/WindowsNoEditor/}}" + - "{{Game data/saves|Windows|{{p|appdata}}/Local/DakkaGame/Saved/SaveGames/}}" +"Warhammer 40,000: Darktide": pageId: 162118 steam: 1361210 steamSide: - 1981790 - 2216070 templates: - - '{{Game data/config|Steam|{{p|appdata}}\Fatshark\Darktide\user_settings.config}}' - - '{{Game data/config|Microsoft Store|{{p|appdata}}\Fatshark\MicrosoftStore\Darktide\user_settings.config}}' -'Warhammer 40,000: Dawn of War': + - "{{Game data/config|Steam|{{p|appdata}}\\Fatshark\\Darktide\\user_settings.config}}" + - "{{Game data/config|Microsoft Store|{{p|appdata}}\\Fatshark\\MicrosoftStore\\Darktide\\user_settings.config}}" +"Warhammer 40,000: Dawn of War": gog: 1525121122 gogSide: - - 2132761962 - 1689181154 + - 2132761962 pageId: 3749 steam: 4570 steamSide: - 9310 templates: - - '{{Game data/config|Windows|{{p|game}}\Local.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\Profiles\profile*\}}' -'Warhammer 40,000: Dawn of War II': + - "{{Game data/config|Windows|{{p|game}}\\Local.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\Profiles\\profile*\\}}" +"Warhammer 40,000: Dawn of War II": gog: 2080123698 gogSide: - 1888623650 pageId: 1905 steam: 15620 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Dawn of War 2\}}' - - >- - {{Game data/config|Linux|{{P|xdgdatahome}}/feral-interactive/Dawn of War II/VFS/User/AppData/Roaming/My Games/Dawn - of War 2/}} - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Dawn of War 2\}}' - - >- - {{Game data/saves|Linux|{{P|xdgdatahome}}/feral-interactive/Dawn of War II/VFS/User/AppData/Roaming/My Games/Dawn - of War 2/Saved Games/}} -'Warhammer 40,000: Dawn of War II: Chaos Rising': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Dawn of War 2\\}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/feral-interactive/Dawn of War II/VFS/User/AppData/Roaming/My Games/Dawn of War 2/}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Dawn of War 2\\}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/feral-interactive/Dawn of War II/VFS/User/AppData/Roaming/My Games/Dawn of War 2/Saved Games/}}" +"Warhammer 40,000: Dawn of War II: Chaos Rising": gog: 2080123698 gogSide: - 1888623650 pageId: 4425 steam: 20570 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Dawn of War 2\Settings\}}' - - >- - {{Game data/config|Linux|{{P|xdgdatahome}}/feral-interactive/Dawn of War II/VFS/User/AppData/Roaming/My Games/Dawn - of War 2/}} - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Dawn of War 2\Saved Games\}}' - - >- - {{Game data/saves|Linux|{{P|xdgdatahome}}/feral-interactive/Dawn of War II/VFS/User/AppData/Roaming/My Games/Dawn - of War 2/}} -'Warhammer 40,000: Dawn of War II: Retribution': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Dawn of War 2\\Settings\\}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/feral-interactive/Dawn of War II/VFS/User/AppData/Roaming/My Games/Dawn of War 2/}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Dawn of War 2\\Saved Games\\}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/feral-interactive/Dawn of War II/VFS/User/AppData/Roaming/My Games/Dawn of War 2/}}" +"Warhammer 40,000: Dawn of War II: Retribution": gog: 2078475324 gogSide: - 1888623650 @@ -189626,70 +184402,67 @@ Warhalla: - 378040 - 378041 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\dawn of war ii - retribution\Settings\}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/feral-interactive/Dawn of War II - Retribution/}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\dawn of war ii - retribution\Saved Games\}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/feral-interactive/Dawn of War II - Retribution/}}' -'Warhammer 40,000: Dawn of War III': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\dawn of war ii - retribution\\Settings\\}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/feral-interactive/Dawn of War II - Retribution/}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\dawn of war ii - retribution\\Saved Games\\}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/feral-interactive/Dawn of War II - Retribution/}}" +"Warhammer 40,000: Dawn of War III": pageId: 32610 steam: 285190 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/saves|Windows|{{p|game}}\Profiles}}' - - >- - {{Game data/saves|Linux|{{p|xdgconfighome}}/feral-interactive/Dawn of War III/VFS/User/AppData/Roaming/My - Games/Dawn of War III/Savegames}} -'Warhammer 40,000: Dawn of War: Dark Crusade': + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\Profiles}}" + - "{{Game data/saves|Linux|{{p|xdgconfighome}}/feral-interactive/Dawn of War III/VFS/User/AppData/Roaming/My Games/Dawn of War III/Savegames}}" +"Warhammer 40,000: Dawn of War: Dark Crusade": gog: 2138821505 gogSide: - 1689181154 pageId: 4421 steam: 4580 templates: - - '{{Game data/config|Windows|{{p|game}}\Local.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\Profiles\Profile*\dxp2\Singleplayer\SaveGames\}}' -'Warhammer 40,000: Dawn of War: Soulstorm': + - "{{Game data/config|Windows|{{p|game}}\\Local.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\Profiles\\Profile*\\dxp2\\Singleplayer\\SaveGames\\}}" +"Warhammer 40,000: Dawn of War: Soulstorm": gog: 1646341461 gogSide: - 1689181154 pageId: 4423 steam: 9450 templates: - - '{{Game data/config|Windows|{{p|game}}\Local.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\Profiles\Profile*\dxp2\Singleplayer\SaveGames\}}' -'Warhammer 40,000: Deathwatch - Enhanced Edition': + - "{{Game data/config|Windows|{{p|game}}\\Local.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\Profiles\\Profile*\\dxp2\\Singleplayer\\SaveGames\\}}" +"Warhammer 40,000: Deathwatch - Enhanced Edition": pageId: 46048 steam: 394450 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\DeathwatchGame\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\DeathwatchGame\Saved\SaveGames\}}' -'Warhammer 40,000: Eternal Crusade': + - "{{Game data/config|Windows|{{P|localappdata}}\\DeathwatchGame\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\DeathwatchGame\\Saved\\SaveGames\\}}" +"Warhammer 40,000: Eternal Crusade": pageId: 41507 steam: 375230 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\EternalCrusade\Saved\Config\WindowsClient\GameUserSettings.ini}}' -'Warhammer 40,000: Fire Warrior': + - "{{Game data/config|Windows|{{p|localappdata}}\\EternalCrusade\\Saved\\Config\\WindowsClient\\GameUserSettings.ini}}" +"Warhammer 40,000: Fire Warrior": gog: 1394528466 pageId: 58401 templates: - - '{{Game data/config|Windows|{{p|game}}\fw.config.xml|{{p|game}}\active_fwp.dat}}' - - '{{Game data/saves|Windows|{{p|game}}\Data\FireWarrior.dat}}' -'Warhammer 40,000: Freeblade': + - "{{Game data/config|Windows|{{p|game}}\\fw.config.xml|{{p|game}}\\active_fwp.dat}}" + - "{{Game data/saves|Windows|{{p|game}}\\Data\\FireWarrior.dat}}" +"Warhammer 40,000: Freeblade": pageId: 183981 -'Warhammer 40,000: Gladius - Relics of War': +"Warhammer 40,000: Gladius - Relics of War": gog: 1604634952 pageId: 77379 steam: 489630 templates: - - '{{Game data/config|Windows|{{p|USERPROFILE\Documents}}\Proxy Studios\Gladius\Configuration\Gladius.xml}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/Proxy Studios/Gladius}}' - - '{{Game data/saves|Windows|{{p|USERPROFILE\Documents}}\Proxy Studios\Gladius\SavedGames\}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/Proxy Studios/Gladius/SavedGames}}' -'Warhammer 40,000: Inquisitor': + - "{{Game data/config|Windows|{{p|USERPROFILE\\Documents}}\\Proxy Studios\\Gladius\\Configuration\\Gladius.xml}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/Proxy Studios/Gladius}}" + - "{{Game data/saves|Windows|{{p|USERPROFILE\\Documents}}\\Proxy Studios\\Gladius\\SavedGames\\}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/Proxy Studios/Gladius/SavedGames}}" +"Warhammer 40,000: Inquisitor": pageId: 66313 steam: 527430 steamSide: - - 1042800 - 938400 - 939050 - 939051 @@ -189709,174 +184482,167 @@ Warhalla: - 1028893 - 1028894 - 1028895 + - 1042800 templates: - - >- - {{Game data/config|Windows|HKEY_CURRENT_USER\Software\NeoCore Games\Warhammer - Martyr\|{{p|userprofile\documents}}\NeocoreGames\Warhammer Martyr\}} -'Warhammer 40,000: Kill Team': + - "{{Game data/config|Windows|HKEY_CURRENT_USER\\Software\\NeoCore Games\\Warhammer Martyr\\|{{p|userprofile\\documents}}\\NeocoreGames\\Warhammer Martyr\\}}" +"Warhammer 40,000: Kill Team": pageId: 50224 steam: 275610 templates: - - '{{Game data/saves|Steam|{{P|steam}}\userdata\{{P|uid}}\275610\remote\savedata.dat}}' -'Warhammer 40,000: Mechanicus': + - "{{Game data/saves|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\275610\\remote\\savedata.dat}}" +"Warhammer 40,000: Mechanicus": gog: 2111088471 pageId: 87599 steam: 673880 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\BulwarkStudios\Mechanicus\}}' - - '{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/BulwarkStudios/Mechanicus/}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\BulwarkStudios\Mechanicus\Saves\}}' - - '{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/BulwarkStudios/Mechanicus/Saves/}}' -'Warhammer 40,000: Regicide': + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\BulwarkStudios\\Mechanicus\\}}" + - "{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/BulwarkStudios/Mechanicus/}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\BulwarkStudios\\Mechanicus\\Saves\\}}" + - "{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/BulwarkStudios/Mechanicus/Saves/}}" +"Warhammer 40,000: Regicide": pageId: 46518 steam: 322910 steamSide: - 401270 -'Warhammer 40,000: Rites of War': +"Warhammer 40,000: Rites of War": gog: 1443606025 pageId: 131754 templates: - - '{{Game data/saves|Windows|{{P|game}}\save}}' -'Warhammer 40,000: Rogue Trader': + - "{{Game data/saves|Windows|{{P|game}}\\save}}" +"Warhammer 40,000: Rogue Trader": gog: 1347700224 pageId: 183072 steam: 2186680 -'Warhammer 40,000: Sanctus Reach': +"Warhammer 40,000: Sanctus Reach": gog: 2146639353 pageId: 39380 steam: 502370 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\My Games\SANCTUS\OPTIONS.TXT}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\My Games\SANCTUS\SAVES\}}' -'Warhammer 40,000: Shootas, Blood & Teef': + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\My Games\\SANCTUS\\OPTIONS.TXT}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\My Games\\SANCTUS\\SAVES\\}}" +"Warhammer 40,000: Shootas, Blood & Teef": gog: 1103297949 pageId: 169194 steam: 1324530 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Rogueside\Shootas, Blood & Teef}}' - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Rogueside\Shootas, Blood & Teef\}}' - - '{{Game data/saves|OS X|{{P|osxhome}}/Library/Caches/com.rogueside.shootasbloodteef/}}' -'Warhammer 40,000: Space Marine': + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Rogueside\\Shootas, Blood & Teef}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Rogueside\\Shootas, Blood & Teef\\}}" + - "{{Game data/saves|OS X|{{P|osxhome}}/Library/Caches/com.rogueside.shootasbloodteef/}}" +"Warhammer 40,000: Space Marine": gog: 1668484481 pageId: 926 steam: 55150 steamSide: - - 55345 + - 55340 + - 55341 - 55343 - 55344 - - 55341 - - 55340 - - 55472 - - 55471 - - 55470 - - 55473 + - 55345 - 55347 - 55348 + - 55470 + - 55471 + - 55472 + - 55473 - 55475 - 55476 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\THQ\Relic Entertainment\Space Marine\}}' - - '{{Game data/saves|Windows|{{p|steam}}\userdata\{{p|uid}}\55150\}}' -'Warhammer 40,000: Space Marine II': + - "{{Game data/config|Windows|{{p|localappdata}}\\THQ\\Relic Entertainment\\Space Marine\\}}" + - "{{Game data/saves|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\55150\\}}" +"Warhammer 40,000: Space Marine II": pageId: 173579 renamedFrom: - - 'Warhammer 40,000: Space Marine 2' + - "Warhammer 40,000: Space Marine 2" steam: 2183900 -'Warhammer 40,000: Space Wolf': +"Warhammer 40,000: Space Wolf": gog: 1662586446 pageId: 54437 steam: 553210 templates: - - '{{Game data/config|Windows|{{p|HKCU}}\SOFTWARE\HeroCraft\Space Wolf}}' -'Warhammer 40,000: Storm of Vengeance': + - "{{Game data/config|Windows|{{p|HKCU}}\\SOFTWARE\\HeroCraft\\Space Wolf}}" +"Warhammer 40,000: Storm of Vengeance": pageId: 16381 steam: 254650 -'Warhammer Age of Sigmar: Champions': +"Warhammer Age of Sigmar: Champions": pageId: 127823 steam: 988480 -'Warhammer Age of Sigmar: Realms of Ruin': +"Warhammer Age of Sigmar: Realms of Ruin": pageId: 190705 steam: 1844380 steamSide: - 2531130 templates: - - >- - {{Game data/config|Windows|{{p|userprofile}}\Saved Games\Frontier Developments\Warhammer Age of Sigmar Realms of - Ruin\{{p|uid}}\Config\*.config.xml}} - - >- - {{Game data/saves|Windows|{{p|userprofile}}\Saved Games\Frontier Developments\Warhammer Age of Sigmar Realms of - Ruin\{{p|uid}}\Saves\}} -'Warhammer Age of Sigmar: Storm Ground': + - "{{Game data/config|Windows|{{p|userprofile}}\\Saved Games\\Frontier Developments\\Warhammer Age of Sigmar Realms of Ruin\\{{p|uid}}\\Config\\*.config.xml}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Saved Games\\Frontier Developments\\Warhammer Age of Sigmar Realms of Ruin\\{{p|uid}}\\Saves\\}}" +"Warhammer Age of Sigmar: Storm Ground": pageId: 162924 steam: 1233590 templates: - - '{{Game data/saves|Windows|{{p|localappdata}}\Warfield\Saved\SaveGames}}' -'Warhammer Age of Sigmar: Tempestfall': + - "{{Game data/saves|Windows|{{p|localappdata}}\\Warfield\\Saved\\SaveGames}}" +"Warhammer Age of Sigmar: Tempestfall": pageId: 164814 steam: 1337100 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Tempestfall\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Tempestfall\Saved\SaveGames\}}' -'Warhammer Online: Age of Reckoning': + - "{{Game data/config|Windows|{{p|localappdata}}\\Tempestfall\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Tempestfall\\Saved\\SaveGames\\}}" +"Warhammer Online: Age of Reckoning": pageId: 178153 Warhammer Quest: gog: 1629008570 pageId: 49021 steam: 326670 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\ChilledMouse\WarhammerQuest\}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\ChilledMouse\WarhammerQuest\}}' -'Warhammer Quest 2: The End Times': + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\ChilledMouse\\WarhammerQuest\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\ChilledMouse\\WarhammerQuest\\}}" +"Warhammer Quest 2: The End Times": gog: 1219832871 pageId: 124366 steam: 910450 -'Warhammer Underworlds: Online': +"Warhammer Underworlds: Online": gog: 1153941202 pageId: 135726 steam: 1022310 -'Warhammer: Arcane Magic': +"Warhammer: Arcane Magic": pageId: 44327 steam: 440330 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Turbo Tape Games\Arcane Magic\}}' - - '{{Game data/saves|Windows|{{P|steam}}\userdata\{{P|uid}}\440330\remote\game.save}}' -'Warhammer: Chaos and Conquest': + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Turbo Tape Games\\Arcane Magic\\}}" + - "{{Game data/saves|Windows|{{P|steam}}\\userdata\\{{P|uid}}\\440330\\remote\\game.save}}" +"Warhammer: Chaos and Conquest": pageId: 152255 renamedFrom: - - 'Warhammer: Chaos And Conquest' + - "Warhammer: Chaos And Conquest" steam: 1144170 -'Warhammer: Chaosbane': +"Warhammer: Chaosbane": gog: 1599346921 pageId: 124567 steam: 774241 templates: - - '{{Game data/config|Windows|{{p|game}}\Data\save\|{{p|game}}\Data\GD\adjust.cnf}}' - - '{{Game data/saves|Windows|{{p|game}}\Data\save\}}' -'Warhammer: Dark Omen': + - "{{Game data/config|Windows|{{p|game}}\\Data\\save\\|{{p|game}}\\Data\\GD\\adjust.cnf}}" + - "{{Game data/saves|Windows|{{p|game}}\\Data\\save\\}}" +"Warhammer: Dark Omen": pageId: 26848 templates: - - '{{Game data/config|Windows|{{p|hklm}}\SOFTWARE\{{p|wow64}}\Electronic Arts\Dark Omen\1.0\Options}}' - - '{{Game data/saves|Windows|{{p|game}}\SaveGame}}' -'Warhammer: End Times - Vermintide': + - "{{Game data/config|Windows|{{p|hklm}}\\SOFTWARE\\{{p|wow64}}\\Electronic Arts\\Dark Omen\\1.0\\Options}}" + - "{{Game data/saves|Windows|{{p|game}}\\SaveGame}}" +"Warhammer: End Times - Vermintide": pageId: 29362 steam: 235540 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Fatshark\Warhammer End Times Vermintide\*.config}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Fatshark\Warhammer End Times Vermintide\*.sav}}' -'Warhammer: Mark of Chaos': + - "{{Game data/config|Windows|{{p|appdata}}\\Fatshark\\Warhammer End Times Vermintide\\*.config}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Fatshark\\Warhammer End Times Vermintide\\*.sav}}" +"Warhammer: Mark of Chaos": gog: 1609408156 pageId: 13156 templates: - - >- - {{Game data/saves|Windows|{{p|userprofile\Documents}}\Warhammer Mark of - Chaos\Save\|{{p|userprofile\Documents}}\Warhammer Battle March\Save\}} -'Warhammer: Shadow of the Horned Rat': + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Warhammer Mark of Chaos\\Save\\|{{p|userprofile\\Documents}}\\Warhammer Battle March\\Save\\}}" +"Warhammer: Shadow of the Horned Rat": gog: 1433929853 pageId: 131752 templates: - - '{{Game data/config|Windows|{{p|game}}\TEMP}}' - - '{{Game data/saves|Windows|{{p|game}}\TEMP\savegame.*}}' -'Warhammer: Vermintide 2': + - "{{Game data/config|Windows|{{p|game}}\\TEMP}}" + - "{{Game data/saves|Windows|{{p|game}}\\TEMP\\savegame.*}}" +"Warhammer: Vermintide 2": pageId: 69431 steam: 552500 steamSide: @@ -189909,9 +184675,9 @@ Warhammer Quest: - 1629000 - 1629010 templates: - - '{{Game data/config|Windows|{{p|AppData}}\Fatshark\Vermintide 2\}}' - - '{{Game data/saves|Windows|{{p|AppData}}\Fatshark\Vermintide 2\}}' -'Warhammer: Vermintide VR - Hero Trials': + - "{{Game data/config|Windows|{{p|AppData}}\\Fatshark\\Vermintide 2\\}}" + - "{{Game data/saves|Windows|{{p|AppData}}\\Fatshark\\Vermintide 2\\}}" +"Warhammer: Vermintide VR - Hero Trials": pageId: 55518 steam: 410390 Warhaven: @@ -189919,7 +184685,7 @@ Warhaven: steam: 2107670 steamSide: - 2549070 -'Warhawks: European Theater': +"Warhawks: European Theater": pageId: 42179 steam: 380130 Warhead: @@ -189940,25 +184706,25 @@ Warlander: Warlander (2023): pageId: 184642 steam: 1675900 -'Warlock 2: The Exiled': +"Warlock 2: The Exiled": pageId: 16570 steam: 205990 Warlock Revenge: pageId: 73677 steam: 723500 -Warlock's Citadel: +"Warlock's Citadel": pageId: 46104 steam: 364260 -Warlock's Tower: +"Warlock's Tower": pageId: 50948 steam: 530370 -'Warlock: Master of the Arcane': +"Warlock: Master of the Arcane": pageId: 2203 steam: 203630 -'Warlock: Tower Defence': +"Warlock: Tower Defence": pageId: 95232 steam: 854510 -'Warlocks 2: God Slayers': +"Warlocks 2: God Slayers": gog: 1181344034 pageId: 62568 steam: 628330 @@ -189966,8 +184732,8 @@ Warlocks vs Shadows: pageId: 30372 steam: 330270 templates: - - '{{Game data/saves|Windows|{{p|game}}\Warlocks_Data\saves}}' -'Warlord: Attrition': + - "{{Game data/saves|Windows|{{p|game}}\\Warlocks_Data\\saves}}" +"Warlord: Attrition": pageId: 135883 steam: 951400 Warlords: @@ -189976,8 +184742,8 @@ Warlords: Warlords (2002): pageId: 16519 templates: - - '{{Game data/config|Windows|{{p|game}}\assets\Config}}' - - '{{Game data/saves|Windows|{{p|game}}\assets\Config}}' + - "{{Game data/config|Windows|{{p|game}}\\assets\\Config}}" + - "{{Game data/saves|Windows|{{p|game}}\\assets\\Config}}" Warlords Awakening: pageId: 98320 steam: 838330 @@ -189988,8 +184754,8 @@ Warlords Battlecry II: gog: 1207659137 pageId: 10420 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Warlords Battlecry II\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Warlords Battlecry II\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Warlords Battlecry II\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Warlords Battlecry II\\}}" Warlords Battlecry III: gog: 1207658725 pageId: 10422 @@ -190000,7 +184766,7 @@ Warlords II: Warlords III: gog: 1233068155 pageId: 152314 -'Warlords IV: Heroes of Etheria': +"Warlords IV: Heroes of Etheria": pageId: 171469 Warlords.IO: pageId: 121867 @@ -190008,20 +184774,20 @@ Warlords.IO: Warm Up!: pageId: 22682 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Lankhor\WARM UP !|{{p|game}}\PLR}}' - - '{{Game data/saves|Windows|{{p|game}}\PLR}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Lankhor\\WARM UP !|{{p|game}}\\PLR}}" + - "{{Game data/saves|Windows|{{p|game}}\\PLR}}" Warm Village: pageId: 78316 steam: 747850 Warma: pageId: 98058 steam: 697630 -'Warmachine: Tactics': +"Warmachine: Tactics": pageId: 18492 steam: 253510 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\WarmachineGame\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\WarmachineGame\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\WarmachineGame\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\WarmachineGame\\Saved\\SaveGames\\}}" Warman: pageId: 105571 steam: 887420 @@ -190031,7 +184797,7 @@ Warmode: Warmonger: pageId: 87333 steam: 718790 -'Warmonger: Operation Downtown Destruction': +"Warmonger: Operation Downtown Destruction": pageId: 185360 Warmord: pageId: 132084 @@ -190039,13 +184805,13 @@ Warmord: Warning Forever: pageId: 111358 templates: - - '{{Game data/config|Windows|{{P|game}}\wf.ini}}' - - '{{Game data/saves|Windows|{{P|game}}\rec}}' + - "{{Game data/config|Windows|{{P|game}}\\wf.ini}}" + - "{{Game data/saves|Windows|{{P|game}}\\rec}}" Waronoi: pageId: 187153 steam: 1444550 templates: - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\MFC\Waronoi\{{p|uid}}\*.dat}}' + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\MFC\\Waronoi\\{{p|uid}}\\*.dat}}" Warp: pageId: 1914 steam: 102850 @@ -190085,8 +184851,8 @@ Warparty: Warpath: pageId: 133966 templates: - - '{{Game data/config|Windows|{{P|game}}\System\Warpath.ini}}' - - '{{Game data/saves|Windows|{{P|game}}\Saves}}' + - "{{Game data/config|Windows|{{P|game}}\\System\\Warpath.ini}}" + - "{{Game data/saves|Windows|{{P|game}}\\Saves}}" Warpaws: gog: 1678217068 pageId: 181594 @@ -190099,7 +184865,7 @@ Warped Reality: WarpedSpace: pageId: 169414 steam: 1537810 -'Warpin: Creation': +"Warpin: Creation": pageId: 52786 steam: 548740 Warpips: @@ -190107,14 +184873,12 @@ Warpips: pageId: 170982 steam: 1291010 templates: - - >- - {{Game data/config|Windows|{{P|userprofile\appdata\locallow}}\Skirmish Mode - Games\Warpips\GameSettings.dat|{{P|hkcu}}\SOFTWARE\Skirmish Mode Games\Warpips\}} - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\Skirmish Mode Games\Warpips\*.dat}}' -'Warplanes: WW1 Sky Aces': + - "{{Game data/config|Windows|{{P|userprofile\\appdata\\locallow}}\\Skirmish Mode Games\\Warpips\\GameSettings.dat|{{P|hkcu}}\\SOFTWARE\\Skirmish Mode Games\\Warpips\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\Skirmish Mode Games\\Warpips\\*.dat}}" +"Warplanes: WW1 Sky Aces": pageId: 149565 steam: 1155590 -'Warplanes: WW2 Dogfight': +"Warplanes: WW2 Dogfight": pageId: 124482 steam: 936780 Warpzone Drifter: @@ -190127,17 +184891,17 @@ WarriOrb: pageId: 82942 steam: 790360 templates: - - '{{Game data/saves|Windows|{{p|steam}}\steamapps\common\WarriOrb\Warriorb\Saved\SaveGames}}' -'WarriOrb: Prologue': + - "{{Game data/saves|Windows|{{p|steam}}\\steamapps\\common\\WarriOrb\\Warriorb\\Saved\\SaveGames}}" +"WarriOrb: Prologue": pageId: 153505 steam: 1193760 Warring States: pageId: 49568 steam: 282680 templates: - - '{{Game data/config|Windows|{{p|HKCU}}\Software\polynation\Warring States\}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\polynation\Warring States\}}' - - '{{Game data/saves|Steam|{{p|Steam}}\userdata\{{p|uid}}\282680\remote\}}' + - "{{Game data/config|Windows|{{p|HKCU}}\\Software\\polynation\\Warring States\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\polynation\\Warring States\\}}" + - "{{Game data/saves|Steam|{{p|Steam}}\\userdata\\{{p|uid}}\\282680\\remote\\}}" Warrior Fighter: pageId: 114432 steam: 941670 @@ -190146,19 +184910,19 @@ Warrior Kings: pageId: 36361 steam: 297570 templates: - - '{{Game data/config|Windows|{{p|hklm}}\Software\Black Cactus\Warrior Kings}}' - - '{{Game data/saves|Windows|{{p|game}}\saved}}' -'Warrior Kings: Battles': + - "{{Game data/config|Windows|{{p|hklm}}\\Software\\Black Cactus\\Warrior Kings}}" + - "{{Game data/saves|Windows|{{p|game}}\\saved}}" +"Warrior Kings: Battles": gog: 1438007195 pageId: 34286 steam: 299070 templates: - - '{{Game data/config|Windows|{{p|hklm}}\Software\Black Cactus\Warrior Kings Battles}}' - - '{{Game data/saves|Windows|{{p|game}}\saved}}' -'Warrior of Ras: Volume I - Dunzhin': + - "{{Game data/config|Windows|{{p|hklm}}\\Software\\Black Cactus\\Warrior Kings Battles}}" + - "{{Game data/saves|Windows|{{p|game}}\\saved}}" +"Warrior of Ras: Volume I - Dunzhin": pageId: 75829 templates: - - '{{Game data/saves|PC booter|A:\|B:\}}' + - "{{Game data/saves|PC booter|A:\\|B:\\}}" Warriors & Castles: pageId: 47435 steam: 372380 @@ -190168,29 +184932,25 @@ Warriors All-Stars: Warriors Orochi: pageId: 95699 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\KOEI\{{LocalizedPath|Warriors Orochi}}\*.dat}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\KOEI\{{LocalizedPath|Warriors Orochi}}\Savedata\save.dat}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\KOEI\\{{LocalizedPath|Warriors Orochi}}\\*.dat}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\KOEI\\{{LocalizedPath|Warriors Orochi}}\\Savedata\\save.dat}}" Warriors Orochi 3 Ultimate Definitive Edition: pageId: 179404 steam: 1879330 templates: - - >- - {{Game data/config|Windows|{{P|hkcu}}\Software\KoeiTecmo\WARRIORS OROCHI 3 - Ultimate\*|{{P|userprofile\Documents}}\KoeiTecmo\WARRIORS OROCHI 3 Ultimate\Savedata\inputmap*.dat}} - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\KoeiTecmo\WARRIORS OROCHI 3 Ultimate\SAVEDATA\SAVEDATA.BIN}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\KoeiTecmo\\WARRIORS OROCHI 3 Ultimate\\*|{{P|userprofile\\Documents}}\\KoeiTecmo\\WARRIORS OROCHI 3 Ultimate\\Savedata\\inputmap*.dat}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\KoeiTecmo\\WARRIORS OROCHI 3 Ultimate\\SAVEDATA\\SAVEDATA.BIN}}" Warriors Orochi 4: pageId: 97379 steam: 831560 templates: - - |- - {{Game data/config - |Windows|{{p|hkcu}}\Software\KoeiTecmo\Warriors Orochi 4\Graphic Setting\}} - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\KoeiTecmo\WARRIORS OROCHI 4\Savedata}}' + - "{{Game data/config\n|Windows|{{p|hkcu}}\\Software\\KoeiTecmo\\Warriors Orochi 4\\Graphic Setting\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\KoeiTecmo\\WARRIORS OROCHI 4\\Savedata}}" Warriors of Legend: pageId: 61583 templates: - - '{{Game data/config|DOS|{{p|game}}\game.cfg}}' - - '{{Game data/saves|DOS|{{p|game}}\GAME**.DAT}}' + - "{{Game data/config|DOS|{{p|game}}\\game.cfg}}" + - "{{Game data/saves|DOS|{{p|game}}\\GAME**.DAT}}" Warriors of Ragnarök: pageId: 122336 steam: 973350 @@ -190206,41 +184966,41 @@ Warriors of the Nile 2: pageId: 185626 steam: 1682060 templates: - - '{{Game data/saves|Windows|{{p|USERPROFILE}}\AppData\LocalLow\StoveStudio\}}' -Warriors' Wrath: + - "{{Game data/saves|Windows|{{p|USERPROFILE}}\\AppData\\LocalLow\\StoveStudio\\}}" +"Warriors' Wrath": pageId: 42896 steam: 466420 -'Warriors: Rise to Glory': +"Warriors: Rise to Glory": pageId: 61695 renamedFrom: - - 'Warriors: Rise to Glory!' + - "Warriors: Rise to Glory!" steam: 582330 -'Warriors: Rise to Glory! Online Multiplayer Open Beta': +"Warriors: Rise to Glory! Online Multiplayer Open Beta": pageId: 142227 steam: 1101910 -'Wars Across The World: Russian Battles': +"Wars Across The World: Russian Battles": pageId: 94525 steam: 853150 Wars Across the World: pageId: 39520 steam: 341040 templates: - - '{{Game data/config|Windows|{{p|game}}\WAWData\cfg.json\}}' - - '{{Game data/saves|Windows|{{p|game}}\WAWData\Saves\}}' -'Wars and Battles: Normandy': + - "{{Game data/config|Windows|{{p|game}}\\WAWData\\cfg.json\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\WAWData\\Saves\\}}" +"Wars and Battles: Normandy": pageId: 78078 steam: 738580 -'Wars and Battles: October War': +"Wars and Battles: October War": pageId: 123655 steam: 738590 Wars and Roses: pageId: 173038 steam: 1786200 -'Wars and Warriors: Joan of Arc': +"Wars and Warriors: Joan of Arc": pageId: 46574 steam: 294590 templates: - - '{{Game data/saves|Windows|{{p|game}}\SAVE\}}' + - "{{Game data/saves|Windows|{{p|game}}\\SAVE\\}}" Wars of Napoleon: pageId: 43157 steam: 459470 @@ -190250,7 +185010,7 @@ Wars of Succession: Wars of the Roses: pageId: 152925 steam: 1185950 -'Warsaw Rising: City of Heroes': +"Warsaw Rising: City of Heroes": gog: 1751163083 pageId: 130688 renamedFrom: @@ -190273,7 +185033,7 @@ Warshmallows: Warside: pageId: 48006 steam: 320590 -'Warsim: The Realm of Aslona': +"Warsim: The Realm of Aslona": gog: 1574775422 pageId: 64445 steam: 659540 @@ -190281,16 +185041,16 @@ Warsow: gog: 1207659121 pageId: 8210 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Warsow\basewsw\config.cfg}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Warsow 1.0/basewsw/config.cfg}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.warsow-1.0/basewsw/config.cfg}}' + - "{{Game data/config|Windows|{{p|appdata}}\\Warsow\\basewsw\\config.cfg}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Warsow 1.0/basewsw/config.cfg}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.warsow-1.0/basewsw/config.cfg}}" Warspear Online: pageId: 73606 steam: 326360 Warstone TD: pageId: 54031 steam: 562500 -'Warsworn: Dragon of Japan': +"Warsworn: Dragon of Japan": pageId: 155699 steam: 1037820 Wartales: @@ -190298,38 +185058,34 @@ Wartales: pageId: 186505 steam: 1527950 templates: - - '{{Game data/saves|Windows|{{p|game}}\save}}' - - >- - {{Game data/saves|Microsoft - Store|{{p|localappdata}}\Packages\7286ShiroGamesSAS.Wartales_esjzrp5ntrs52\SystemAppData\wgs\{{P|uid}}}} + - "{{Game data/saves|Windows|{{p|game}}\\save}}" + - "{{Game data/saves|Microsoft Store|{{p|localappdata}}\\Packages\\7286ShiroGamesSAS.Wartales_esjzrp5ntrs52\\SystemAppData\\wgs\\{{P|uid}}}}" Wartile: gog: 1639866886 pageId: 39650 steam: 404200 templates: - - >- - {{Game - data/config|Windows|{{p|localappdata}}\WARTILE\Saved\SaveGames\OptionsSlot.sav|{{p|localappdata}}\WARTILE\Saved\Config\WindowsNoEditor\}} - - '{{Game data/saves|Windows|{{p|localappdata}}\WARTILE\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\WARTILE\\Saved\\SaveGames\\OptionsSlot.sav|{{p|localappdata}}\\WARTILE\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\WARTILE\\Saved\\SaveGames\\}}" Wartime Prologue: pageId: 128401 steam: 778960 Wartune: pageId: 41617 steam: 451230 -'Warz: Horde': +"Warz: Horde": pageId: 125308 steam: 789520 Warzone 2100: pageId: 6600 steam: 1241950 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Warzone 2100 Project\Warzone 2100 {{p|uid}}\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Warzone 2100 {{p|uid}}/}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.local/share/warzone2100}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Warzone 2100 Project\Warzone 2100 {{p|uid}}\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Warzone 2100 {{p|uid}}/}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.local/share/warzone2100/savegames/}}' + - "{{Game data/config|Windows|{{p|appdata}}\\Warzone 2100 Project\\Warzone 2100 {{p|uid}}\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Warzone 2100 {{p|uid}}/}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.local/share/warzone2100}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Warzone 2100 Project\\Warzone 2100 {{p|uid}}\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Warzone 2100 {{p|uid}}/}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.local/share/warzone2100/savegames/}}" Warzone VR: pageId: 125355 steam: 838820 @@ -190355,8 +185111,8 @@ Wasted: pageId: 33160 steam: 327510 templates: - - '{{Game data/config|Windows|{{p|game}}\config.sav}}' - - '{{Game data/saves|Windows|{{p|game}}\save.sav}}' + - "{{Game data/config|Windows|{{p|game}}\\config.sav}}" + - "{{Game data/saves|Windows|{{p|game}}\\save.sav}}" Wasted Pizza: pageId: 72913 steam: 709820 @@ -190365,63 +185121,54 @@ Wasteland: pageId: 12379 steam: 259130 templates: - - '{{Game data/config|DOS|{{p|game}}\}}' - - '{{Game data/config|Windows|{{p|localappdata}}\inXile entertainment\Wasteland\}}' - - '{{Game data/saves|DOS|{{p|game}}\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\inXile entertainment\Wasteland\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Wasteland}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.wasteland/}}' + - "{{Game data/config|DOS|{{p|game}}\\}}" + - "{{Game data/config|Windows|{{p|localappdata}}\\inXile entertainment\\Wasteland\\}}" + - "{{Game data/saves|DOS|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\inXile entertainment\\Wasteland\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Wasteland}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.wasteland/}}" Wasteland 2: gog: 1207665713 gogSide: - - 1207665723 - 1207665153 + - 1207665723 pageId: 5458 steam: 240760 steamSide: - 404730 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\inXile\Wasteland2\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Preferences/unity.inXile.Wasteland 2.plist}}' - - >- - {{Game - data/config|Linux|{{p|linuxhome}}/.config/unity3d/inXile/Wasteland2/prefs|{{p|xdgconfighome}}/unity3d/inXile - Entertainment/Wasteland 2: Director's Cut/prefs}} - - >- - {{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Wasteland2\|{{p|userprofile\Documents}}\My - Games\Wasteland2DC\}} - - >- - {{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Wasteland2/|~/Documents/Library/Application - Support/Wasteland2DC/}} - - '{{Game data/saves|Linux|{{p|xdgconfighome}}/Wasteland2/|{{p|xdgconfighome}}/Wasteland2DC/}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\inXile\\Wasteland2\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Preferences/unity.inXile.Wasteland 2.plist}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/inXile/Wasteland2/prefs|{{p|xdgconfighome}}/unity3d/inXile Entertainment/Wasteland 2: Director's Cut/prefs}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Wasteland2\\|{{p|userprofile\\Documents}}\\My Games\\Wasteland2DC\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Wasteland2/|~/Documents/Library/Application Support/Wasteland2DC/}}" + - "{{Game data/saves|Linux|{{p|xdgconfighome}}/Wasteland2/|{{p|xdgconfighome}}/Wasteland2DC/}}" Wasteland 3: gog: 1136650022 gogSide: - - 2057748185 - - 1687336800 - - 1677126699 - 1593983043 - - 2003177495 + - 1677126699 + - 1687336800 - 1770944488 - 1960562196 + - 2003177495 + - 2057748185 pageId: 45129 steam: 719040 steamSide: + - 1191060 - 1382210 - - 1642320 - 1522650 - 1593330 - - 1191060 + - 1642320 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\SOFTWARE\InxileEntertainment\Wasteland 3\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Wasteland3}}' - - '{{Game data/config|Linux|{{p|xdgconfighome}}/unity3d/InxileEntertainment/Wasteland 3/prefs}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\My Games\Wasteland3\Save Games\}}' - - >- - {{Game data/saves|Microsoft - Store|{{P|localappdata}}\Packages\DeepSilver.56575194F7E04_hmv7qcest37me\SystemAppData\wgs\{{P|uid}}\}} - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Wasteland3/Save Games}}' - - '{{Game data/saves|Linux|{{p|xdgconfighome}}/Wasteland3/Save Games}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\SOFTWARE\\InxileEntertainment\\Wasteland 3\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Wasteland3}}" + - "{{Game data/config|Linux|{{p|xdgconfighome}}/unity3d/InxileEntertainment/Wasteland 3/prefs}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\My Games\\Wasteland3\\Save Games\\}}" + - "{{Game data/saves|Microsoft Store|{{P|localappdata}}\\Packages\\DeepSilver.56575194F7E04_hmv7qcest37me\\SystemAppData\\wgs\\{{P|uid}}\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Wasteland3/Save Games}}" + - "{{Game data/saves|Linux|{{p|xdgconfighome}}/Wasteland3/Save Games}}" Wasteland Angel: pageId: 40914 steam: 46520 @@ -190436,10 +185183,8 @@ Wasteland Remastered: pageId: 157585 steam: 875800 templates: - - >- - {{Game data/config|Windows|{{P|userprofile}}\AppData\LocalLow\InXile Entertainment\Wasteland - Remastered\Wasteland.dat|{{P|hkcu}}\Software\InXile Entertainment\Wasteland Remastered\}} - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\InXile Entertainment\Wasteland Remastered\saves\}}' + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\InXile Entertainment\\Wasteland Remastered\\Wasteland.dat|{{P|hkcu}}\\Software\\InXile Entertainment\\Wasteland Remastered\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\InXile Entertainment\\Wasteland Remastered\\saves\\}}" Wasteland Survival: pageId: 132020 steam: 1044200 @@ -190450,18 +185195,18 @@ Watch Dogs: pageId: 5068 steam: 243470 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Watch_Dogs\{{p|uid}}\GamerProfile.xml}}' - - '{{Game data/saves|Windows|{{p|uplay}}\savegames\{{p|uid}}\274\}}' - - '{{Game data/saves|Steam|{{p|uplay}}\savegames\{{p|uid}}\541\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Watch_Dogs\\{{p|uid}}\\GamerProfile.xml}}" + - "{{Game data/saves|Windows|{{p|uplay}}\\savegames\\{{p|uid}}\\274\\}}" + - "{{Game data/saves|Steam|{{p|uplay}}\\savegames\\{{p|uid}}\\541\\}}" Watch Dogs 2: pageId: 33230 steam: 447040 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Watch_Dogs 2\WD2_GamerProfile.xml}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Watch_Dogs 2\LocalStorage0\}}' - - '{{Game data/saves|Windows|{{p|uplay}}\savegames\{{p|uid}}\2688\}}' - - '{{Game data/saves|Steam|{{p|uplay}}\savegames\{{p|uid}}\3619\}}' -'Watch Dogs: Legion': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Watch_Dogs 2\\WD2_GamerProfile.xml}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Watch_Dogs 2\\LocalStorage0\\}}" + - "{{Game data/saves|Windows|{{p|uplay}}\\savegames\\{{p|uid}}\\2688\\}}" + - "{{Game data/saves|Steam|{{p|uplay}}\\savegames\\{{p|uid}}\\3619\\}}" +"Watch Dogs: Legion": pageId: 138449 renamedFrom: - Watch Dogs Legion @@ -190470,12 +185215,10 @@ Watch Dogs 2: - 2239575 - 2239577 templates: - - >- - {{Game data/config|Windows|{{p|hkcu}}\SOFTWARE\Ubisoft\WatchDogsLegion|{{p|userprofile\Documents}}\My Games\Watch - Dogs Legion\WD3_GamerProfile.xml}} - - '{{Game data/saves|Windows|{{p|ubisoftconnect}}\savegames\{{p|uid}}\3353\}}' - - '{{Game data/saves|Steam|{{p|ubisoftconnect}}\savegames\{{p|uid}}\7017\}}' -'Watch Dogs: Legion of the Dead': + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\Ubisoft\\WatchDogsLegion|{{p|userprofile\\Documents}}\\My Games\\Watch Dogs Legion\\WD3_GamerProfile.xml}}" + - "{{Game data/saves|Windows|{{p|ubisoftconnect}}\\savegames\\{{p|uid}}\\3353\\}}" + - "{{Game data/saves|Steam|{{p|ubisoftconnect}}\\savegames\\{{p|uid}}\\7017\\}}" +"Watch Dogs: Legion of the Dead": pageId: 169040 Watch Me Jump: pageId: 69757 @@ -190490,9 +185233,9 @@ Watch Over Christmas: pageId: 92409 steam: 825060 templates: - - '{{Game data/saves|Windows|{{p|localappdata}}\Dionous Games\Watch Over Christmas\Savegames\*.dat}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Dionous Games/Watch Over Christmas/Savegames}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.local/Share/Dionous Games/Watch Over Christmas/Savegames}}' + - "{{Game data/saves|Windows|{{p|localappdata}}\\Dionous Games\\Watch Over Christmas\\Savegames\\*.dat}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Dionous Games/Watch Over Christmas/Savegames}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.local/Share/Dionous Games/Watch Over Christmas/Savegames}}" Watch Paint Dry (2019): pageId: 137462 steam: 1044940 @@ -190515,7 +185258,7 @@ Watchers: pageId: 141353 steam: 1124980 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Watchers\Saved\Config\WindowsNoEditor\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\Watchers\\Saved\\Config\\WindowsNoEditor\\}}" Watching Delusion: pageId: 100030 steam: 891120 @@ -190525,18 +185268,18 @@ Watching Grass Grow In VR - The Game: Watchlist: pageId: 64990 steam: 652760 -'Watchmen: The End is Nigh': +"Watchmen: The End is Nigh": pageId: 41313 steam: 21010 templates: - - '{{Game data/config|Windows|{{p|game}}\SaveData\Profile1\}}' - - '{{Game data/saves|Windows|{{p|game}}\SaveData\Profile1\}}' -'Watchmen: The End is Nigh Part 2': + - "{{Game data/config|Windows|{{p|game}}\\SaveData\\Profile1\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\SaveData\\Profile1\\}}" +"Watchmen: The End is Nigh Part 2": pageId: 41259 steam: 21030 templates: - - '{{Game data/config|Windows|{{p|game}}\SaveData\Profile1\}}' - - '{{Game data/saves|Windows|{{p|game}}\SaveData\Profile1\}}' + - "{{Game data/config|Windows|{{p|game}}\\SaveData\\Profile1\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\SaveData\\Profile1\\}}" Water Bears VR: pageId: 34908 steam: 394130 @@ -190546,18 +185289,18 @@ Water Clock: Water Density: pageId: 77914 steam: 744450 -'Water Heroes: A Game for Change': +"Water Heroes: A Game for Change": pageId: 58244 steam: 530010 -'Water Margin: A Tale of Clouds and Wind': +"Water Margin: A Tale of Clouds and Wind": gog: 1648917122 pageId: 141125 renamedFrom: - Water Margin - The Tale of Clouds and Wind steam: 1104490 templates: - - '{{Game data/config|Windows|{{p|game}}\res\##P|{{p|game}}\res\##S}}' - - '{{Game data/saves|Windows|{{p|game}}\res\conf}}' + - "{{Game data/config|Windows|{{p|game}}\\res\\##P|{{p|game}}\\res\\##S}}" + - "{{Game data/saves|Windows|{{p|game}}\\res\\conf}}" Water Pipeline: pageId: 69340 steam: 704370 @@ -190574,14 +185317,14 @@ Waterloo: Waterside Chirping: pageId: 102313 steam: 864420 -Watson's Watch: +"Watson's Watch": pageId: 42680 steam: 445550 Wattam: pageId: 70259 steam: 702680 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Funomena\Wattam}}' + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Funomena\\Wattam}}" Wauies - The Pet Shop Game: pageId: 79254 steam: 767420 @@ -190610,12 +185353,12 @@ Waveform: pageId: 4649 steam: 204180 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Waveform\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Waveform/}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/Waveform/}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Waveform\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Waveform/}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/Waveform/}}' + - "{{Game data/config|Windows|{{p|appdata}}\\Waveform\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Waveform/}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/Waveform/}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Waveform\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Waveform/}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/Waveform/}}" Waveform Wipeout: pageId: 105051 steam: 897560 @@ -190623,7 +185366,7 @@ Waves: pageId: 3807 steam: 107600 templates: - - '{{Game data/config|Windows|{{p|game}}\UDKGame\Config}}' + - "{{Game data/config|Windows|{{p|game}}\\UDKGame\\Config}}" Waves of the Atlantide: pageId: 130213 steam: 992210 @@ -190640,8 +185383,8 @@ Wavetale: steamSide: - 2060640 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\LocalLow\Thunderful\Wavetale}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\LocalLow\Thunderful\Wavetale}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\LocalLow\\Thunderful\\Wavetale}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\LocalLow\\Thunderful\\Wavetale}}" Wavey the Rocket: pageId: 157037 steam: 1050880 @@ -190651,7 +185394,7 @@ Wavy Trip: Waxworks: gog: 1207658702 pageId: 14276 -'Waxworks: Curse of the Ancestors': +"Waxworks: Curse of the Ancestors": pageId: 150515 steam: 788670 Way Home: @@ -190683,8 +185426,8 @@ Way of the Hunter: pageId: 178424 steam: 1288320 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\WayOfTheHunter\Saved\Config\WindowsNoEditor}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\WayOfTheHunter\Saved\SaveGames\Account_{{p|uid}}\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\WayOfTheHunter\\Saved\\Config\\WindowsNoEditor}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\WayOfTheHunter\\Saved\\SaveGames\\Account_{{p|uid}}\\}}" Way of the Orb: pageId: 129914 steam: 783230 @@ -190692,10 +185435,10 @@ Way of the Passive Fist: pageId: 68208 steam: 625680 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\WayOfThePassiveFist\AutoCloud\{{P|uid}}\settings.sav}}' - - '{{Game data/config|Linux|{{P|xdgconfighome}}/WayOfThePassiveFist/autocloud/{{P|uid}}/settings.sav}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\WayOfThePassiveFist\AutoCloud\{{P|uid}}\slot*.sav}}' - - '{{Game data/saves|Linux|{{P|xdgconfighome}}/WayOfThePassiveFist/autocloud/{{P|uid}}/slot*.sav}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\WayOfThePassiveFist\\AutoCloud\\{{P|uid}}\\settings.sav}}" + - "{{Game data/config|Linux|{{P|xdgconfighome}}/WayOfThePassiveFist/autocloud/{{P|uid}}/settings.sav}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\WayOfThePassiveFist\\AutoCloud\\{{P|uid}}\\slot*.sav}}" + - "{{Game data/saves|Linux|{{P|xdgconfighome}}/WayOfThePassiveFist/autocloud/{{P|uid}}/slot*.sav}}" Way of the Red: gog: 1949808563 pageId: 52416 @@ -190703,8 +185446,8 @@ Way of the Red: Way of the Samurai 3: gog: 2064851015 gogSide: - - 1215553067 - 1118483690 + - 1215553067 pageId: 31934 steam: 427510 steamSide: @@ -190712,15 +185455,15 @@ Way of the Samurai 3: - 428311 - 428312 templates: - - '{{Game data/config|Windows|{{p|game}}\WayOfTheSamurai3.ini}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Ghostlight Ltd\Way of the Samurai 3\}}' + - "{{Game data/config|Windows|{{p|game}}\\WayOfTheSamurai3.ini}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Ghostlight Ltd\\Way of the Samurai 3\\}}" Way of the Samurai 4: gog: 1443083988 pageId: 23055 steam: 312780 templates: - - '{{Game data/config|Windows|{{p|game}}\S4-SETTINGS.ini}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Ghostlight Ltd\Way of the Samurai 4\}}' + - "{{Game data/config|Windows|{{p|game}}\\S4-SETTINGS.ini}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Ghostlight Ltd\\Way of the Samurai 4\\}}" Way of the Turtle: pageId: 147778 Way to Go!: @@ -190735,7 +185478,7 @@ WayDown: WayOut: pageId: 52814 steam: 551110 -'WayOut 2: Hex': +"WayOut 2: Hex": pageId: 57578 steam: 585950 Wayblock: @@ -190748,7 +185491,7 @@ Wayfinder: - 2362380 - 2362390 - 2362391 -'Wayhaven Chronicles: Book One': +"Wayhaven Chronicles: Book One": pageId: 87157 steam: 800600 Ways of History: @@ -190761,7 +185504,7 @@ Wayward: pageId: 32538 steam: 379210 templates: - - '{{Game data/saves|Windows|{{P|game}}\save}}' + - "{{Game data/saves|Windows|{{P|game}}\\save}}" Wayward Manor: pageId: 49929 steam: 246720 @@ -190771,7 +185514,7 @@ Wayward Souls: Wayward Strand: pageId: 151333 steam: 1080450 -'Wayward Terran Frontier: Zero Falls': +"Wayward Terran Frontier: Zero Falls": pageId: 44667 steam: 392080 WazHack: @@ -190802,7 +185545,7 @@ We Are Showtime!: We Are Stars: pageId: 55015 steam: 556140 -'We Are Terror: The First Days': +"We Are Terror: The First Days": pageId: 107648 steam: 913270 We Are The Caretakers: @@ -190813,10 +185556,10 @@ We Are the Dwarves: pageId: 44435 steam: 395570 templates: - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Whale Rock Games/WearetheDwarves/}}' - - '{{Game data/saves|Windows|{{p|USERPROFILE}}\AppData\LocalLow\Whale Rock Games}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Whale Rock Games/WeAreTheDwarves/}}' -We Can't Get Through the Zombies: + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Whale Rock Games/WearetheDwarves/}}" + - "{{Game data/saves|Windows|{{p|USERPROFILE}}\\AppData\\LocalLow\\Whale Rock Games}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Whale Rock Games/WeAreTheDwarves/}}" +"We Can't Get Through the Zombies": pageId: 78344 steam: 765510 We Happy Few: @@ -190824,33 +185567,25 @@ We Happy Few: pageId: 33394 steam: 320240 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\GlimpseGame\Saved\Config\}}' - - '{{Game data/config|GOG.com|{{p|USERPROFILE\Documents}}\My Games\We Happy Few\Config\WindowsNoEditor\}}' - - >- - {{Game data/config|Microsoft - Store|{{p|localappdata}}\Packages\CompulsionGamesInc.WeHappyFew_eae46zy90r9xg\Settings}} - - '{{Game data/config|Linux|{{p|xdgconfighome}}/Epic/We Happy Few/Config/LinuxNoEditor/}}' - - '{{Game data/saves|Windows|{{p|USERPROFILE\Documents}}\My Games\We Happy Few\SaveGames}}' - - '{{Game data/saves|GOG.com|{{p|USERPROFILE\Documents}}\My Games\We Happy Few\SaveGames\}}' - - >- - {{Game data/saves|Microsoft - Store|{{p|localappdata}}\Packages\CompulsionGamesInc.WeHappyFew_eae46zy90r9xg\SystemAppData\wgs\{{p|uid}}}} - - '{{Game data/saves|Linux|{{p|xdgconfighome}}/Epic/We Happy Few/SaveGames/}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\GlimpseGame\\Saved\\Config\\}}" + - "{{Game data/config|GOG.com|{{p|USERPROFILE\\Documents}}\\My Games\\We Happy Few\\Config\\WindowsNoEditor\\}}" + - "{{Game data/config|Microsoft Store|{{p|localappdata}}\\Packages\\CompulsionGamesInc.WeHappyFew_eae46zy90r9xg\\Settings}}" + - "{{Game data/config|Linux|{{p|xdgconfighome}}/Epic/We Happy Few/Config/LinuxNoEditor/}}" + - "{{Game data/saves|Windows|{{p|USERPROFILE\\Documents}}\\My Games\\We Happy Few\\SaveGames}}" + - "{{Game data/saves|GOG.com|{{p|USERPROFILE\\Documents}}\\My Games\\We Happy Few\\SaveGames\\}}" + - "{{Game data/saves|Microsoft Store|{{p|localappdata}}\\Packages\\CompulsionGamesInc.WeHappyFew_eae46zy90r9xg\\SystemAppData\\wgs\\{{p|uid}}}}" + - "{{Game data/saves|Linux|{{p|xdgconfighome}}/Epic/We Happy Few/SaveGames/}}" We Know the Devil: pageId: 37860 steam: 435300 templates: - - '{{Game data/saves|Windows|{{P|appdata}}\com.datenighto.game.wktd\}}' + - "{{Game data/saves|Windows|{{P|appdata}}\\com.datenighto.game.wktd\\}}" We Love Katamari Reroll+ Royal Reverie: pageId: 185060 steam: 1730700 templates: - - >- - {{Game data/config|Windows|{{p|hkcu}}\Software\BANDAI NAMCO Entertainment Inc.\We Love Katamari REROLL+ Royal - Reverie}} - - >- - {{Game data/saves|Windows|{{p|localappdata}}\Bandai Namco Entertainment\We Love Katamari REROLL+ Royal - Reverie\Saved\SaveGames\{{p|uid}}\}} + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\BANDAI NAMCO Entertainment Inc.\\We Love Katamari REROLL+ Royal Reverie}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Bandai Namco Entertainment\\We Love Katamari REROLL+ Royal Reverie\\Saved\\SaveGames\\{{p|uid}}\\}}" We Met in May: pageId: 139464 steam: 1097780 @@ -190861,23 +185596,19 @@ We Need to Go Deeper: pageId: 39444 steam: 307110 templates: - - |- - {{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Deli Interactive\We Need to Go Deeper\ - }} + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Deli Interactive\\We Need to Go Deeper\\\n}}" We Should Talk.: pageId: 174753 steam: 1255990 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\SOFTWARE\Insatiable Cycle\We Should Talk\}}' - - '{{Game data/saves|Windows|{{p|hkcu}}\SOFTWARE\Insatiable Cycle\We Should Talk\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\Insatiable Cycle\\We Should Talk\\}}" + - "{{Game data/saves|Windows|{{p|hkcu}}\\SOFTWARE\\Insatiable Cycle\\We Should Talk\\}}" We Slay Monsters: pageId: 49319 steam: 332540 templates: - - >- - {{Game data/config|Windows|{{P|hkcu}}\SOFTWARE\Will Work For Lunch Games\We Slay - Monsters\|{{P|game}}\savedgame\settings.dat}} - - '{{Game data/saves|Windows|{{P|game}}\savedgame\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\SOFTWARE\\Will Work For Lunch Games\\We Slay Monsters\\|{{P|game}}\\savedgame\\settings.dat}}" + - "{{Game data/saves|Windows|{{P|game}}\\savedgame\\}}" We Stay Behind: gog: 1229497338 pageId: 145564 @@ -190891,16 +185622,13 @@ We Went Back: pageId: 159160 steam: 1218250 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\WeWentBack\Saved\Config\WindowsNoEditor}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\WeWentBack\\Saved\\Config\\WindowsNoEditor}}" We Were Here: pageId: 57103 steam: 582500 templates: - - >- - {{Game - data/config|Windows|{{P|game}}\Saves\GraphicsOptionsModel.binary|{{P|game}}\Saves\KeyBindingModel.binary|{{P|game}}\Saves\OptionsModel.binary|{{P|hkcu}}\Software\Total - Mayhem Games\We Were Here\}} - - '{{Game data/saves|Windows|{{P|game}}\Saves\}}' + - "{{Game data/config|Windows|{{P|game}}\\Saves\\GraphicsOptionsModel.binary|{{P|game}}\\Saves\\KeyBindingModel.binary|{{P|game}}\\Saves\\OptionsModel.binary|{{P|hkcu}}\\Software\\Total Mayhem Games\\We Were Here\\}}" + - "{{Game data/saves|Windows|{{P|game}}\\Saves\\}}" We Were Here Forever: pageId: 169765 steam: 1341290 @@ -190908,23 +185636,19 @@ We Were Here Forever: - 1986350 - 1986480 templates: - - '{{Game data/config|Windows|{{p|userprofile\appdata\locallow}}\Total Mayhem Games\We Were Here Forever\Data}}' - - '{{Game data/saves|Windows|{{P|steam}}\userdata\{{P|uid}}\1341290}}' + - "{{Game data/config|Windows|{{p|userprofile\\appdata\\locallow}}\\Total Mayhem Games\\We Were Here Forever\\Data}}" + - "{{Game data/saves|Windows|{{P|steam}}\\userdata\\{{P|uid}}\\1341290}}" We Were Here Together: pageId: 113412 steam: 865360 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\appdata\locallow}}\Total Mayhem Games\We Were Here - Together\Data\Configs}} - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\Total Mayhem Games\We Were Here Together\Data\Saves}}' + - "{{Game data/config|Windows|{{p|userprofile\\appdata\\locallow}}\\Total Mayhem Games\\We Were Here Together\\Data\\Configs}}" + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\Total Mayhem Games\\We Were Here Together\\Data\\Saves}}" We Were Here Too: pageId: 67297 steam: 677160 templates: - - >- - {{Game data/config|Windows|{{P|userprofile}}\AppData\LocalLow\Total Mayhem Games\We Were Here - Too\Config\config.cfg}} + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Total Mayhem Games\\We Were Here Too\\Config\\config.cfg}}" We are the Plague: pageId: 126444 renamedFrom: @@ -190934,23 +185658,16 @@ We who are about to Die: pageId: 157317 steam: 973230 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\WWAATD\Saved\Config\WindowsNoEditor\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\WWAATD\\Saved\\Config\\WindowsNoEditor\\}}" We. The Revolution: gog: 1492171024 pageId: 76631 steam: 736850 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\SOFTWARE\Polyslash\We. The Revolution\}}' - - >- - {{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Polyslash\We. The - Revolution\profile00*.dat|{{p|userprofile}}\AppData\LocalLow\Polyslash\We. The Revolution\profile00*.sav}} - - >- - {{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/unity.Polyslash.We. The - Revolution/profile00*.dat|{{P|osxhome}}/Library/Application Support/unity.Polyslash.We. The - Revolution/profile00*.sav}} - - >- - {{Game data/saves|Linux|{{P|linuxhome}}/.config/unity3d/Polyslash/We. The - Revolution/profile00*.dat|{{P|linuxhome}}/.config/unity3d/Polyslash/We. The Revolution/profile00*.sav}} + - "{{Game data/config|Windows|{{P|hkcu}}\\SOFTWARE\\Polyslash\\We. The Revolution\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Polyslash\\We. The Revolution\\profile00*.dat|{{p|userprofile}}\\AppData\\LocalLow\\Polyslash\\We. The Revolution\\profile00*.sav}}" + - "{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/unity.Polyslash.We. The Revolution/profile00*.dat|{{P|osxhome}}/Library/Application Support/unity.Polyslash.We. The Revolution/profile00*.sav}}" + - "{{Game data/saves|Linux|{{P|linuxhome}}/.config/unity3d/Polyslash/We. The Revolution/profile00*.dat|{{P|linuxhome}}/.config/unity3d/Polyslash/We. The Revolution/profile00*.sav}}" WeLOVE: pageId: 135379 steam: 962360 @@ -190969,7 +185686,7 @@ Weakless: Weapon Shop Fantasy: pageId: 58515 steam: 599460 -'Weapon and Armor: Mahjong': +"Weapon and Armor: Mahjong": pageId: 70120 steam: 709940 Weapon of Choice: @@ -190993,28 +185710,28 @@ Wear a rope: Weather Lord: pageId: 63434 steam: 637920 -'Weather Lord: Following the Princess': +"Weather Lord: Following the Princess": pageId: 43500 renamedFrom: - - 'Weather Lord: Following the Princess Collector''s Edition' + - "Weather Lord: Following the Princess Collector's Edition" steam: 456690 -'Weather Lord: Hidden Realm': +"Weather Lord: Hidden Realm": pageId: 63432 steam: 637930 -'Weather Lord: In Search of the Shaman': +"Weather Lord: In Search of the Shaman": pageId: 63430 steam: 637940 -'Weather Lord: Legendary Hero': +"Weather Lord: Legendary Hero": pageId: 41838 renamedFrom: - - 'Weather Lord: Legendary Hero Collector''s Edition' + - "Weather Lord: Legendary Hero Collector's Edition" steam: 500220 -'Weather Lord: Royal Holidays': +"Weather Lord: Royal Holidays": pageId: 57074 renamedFrom: - - 'Weather Lord: Royal Holidays Collector''s Edition' + - "Weather Lord: Royal Holidays Collector's Edition" steam: 572570 -'Weather Lord: The Successor''s Path': +"Weather Lord: The Successor's Path": pageId: 47982 steam: 361970 Weaverse: @@ -191035,17 +185752,17 @@ Web Spice: Web Spice Purple World: pageId: 155302 steam: 1091190 -'Web of Deceit: Black Widow': +"Web of Deceit: Black Widow": pageId: 59037 renamedFrom: - - 'Web of Deceit: Black Widow Collector''s Edition' + - "Web of Deceit: Black Widow Collector's Edition" steam: 604340 -'Web of Deceit: Deadly Sands': +"Web of Deceit: Deadly Sands": pageId: 79312 renamedFrom: - - 'Web of Deceit: Deadly Sands Collector''s Edition' + - "Web of Deceit: Deadly Sands Collector's Edition" steam: 770890 -'WebbVR: The James Webb Space Telescope Virtual Experience': +"WebbVR: The James Webb Space Telescope Virtual Experience": pageId: 121143 steam: 891960 Webbed: @@ -191053,25 +185770,25 @@ Webbed: pageId: 169639 steam: 1390350 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\webbed\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\webbed\default\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\webbed\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\webbed\\default\\}}" Webkinz: pageId: 174362 Webkinz Classic: pageId: 178014 -'Wedding Dash 2: Rings Around the World': +"Wedding Dash 2: Rings Around the World": pageId: 41249 steam: 37280 Wedding Designer: pageId: 145469 steam: 1125890 -'Wedding VR: Henry': +"Wedding VR: Henry": pageId: 87991 steam: 794720 -'Wedding VR: Masamune': +"Wedding VR: Masamune": pageId: 87993 steam: 794730 -'Wedding VR: Yamato': +"Wedding VR: Yamato": pageId: 87989 steam: 794710 Weebish Mines: @@ -191094,8 +185811,8 @@ Weedcraft Inc: pageId: 122718 steam: 622720 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Vile Monarch\Weedcraft Inc}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\Weedcraft Inc}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Vile Monarch\\Weedcraft Inc}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\Weedcraft Inc}}" Weekend Drive: pageId: 105031 steam: 432390 @@ -191103,24 +185820,24 @@ Weeping Skies: pageId: 63468 steam: 650730 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Somer Games\Weeping Skies}}' - - '{{Game data/saves|Windows|{{P|appdata}}\MysteryTag\Weeping Skies\save\*.ws}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Somer Games\\Weeping Skies}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\MysteryTag\\Weeping Skies\\save\\*.ws}}" Weeping Willow - Detective Visual Novel: pageId: 149192 steam: 1128570 -'Weightless: An immersive and relaxing experience': +"Weightless: An immersive and relaxing experience": pageId: 125498 steam: 984520 Weird Creatures: pageId: 55051 steam: 543920 -'Weird Dungeon Explorer: Defender': +"Weird Dungeon Explorer: Defender": pageId: 94745 steam: 862010 -'Weird Dungeon Explorer: Run Away': +"Weird Dungeon Explorer: Run Away": pageId: 94747 steam: 862020 -'Weird Dungeon Explorer: Wave Beat': +"Weird Dungeon Explorer: Wave Beat": pageId: 94749 steam: 862040 Weird Hero: @@ -191130,18 +185847,16 @@ Weird Park Trilogy: pageId: 47573 steam: 372260 templates: - - >- - {{Game - data/saves|Windows|{{p|appdata}}\DieselPuppet\WeirdParkBrokenTune\saves\|{{p|appdata}}\DieselPuppet\WeirdParkBrokenTuneCollectorsEdition\saves\|{{p|appdata}}\AlawarEntertainment\WeirdParkScaryTales\saves\|{{p|appdata}}\AlawarEntertainment\EpicStar\WeirdPark3\saves}} + - "{{Game data/saves|Windows|{{p|appdata}}\\DieselPuppet\\WeirdParkBrokenTune\\saves\\|{{p|appdata}}\\DieselPuppet\\WeirdParkBrokenTuneCollectorsEdition\\saves\\|{{p|appdata}}\\AlawarEntertainment\\WeirdParkScaryTales\\saves\\|{{p|appdata}}\\AlawarEntertainment\\EpicStar\\WeirdPark3\\saves}}" Weird West: gog: 1421555971 pageId: 157436 steam: 1097350 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Nova\Saved\Config\WindowsNoEditor}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Nova\Saved\SaveGames}}' - - '{{Game data/saves|Microsoft Store|{{p|localappdata}}\Packages\DevolverDigital.WeirdWest\SystemAppData\wgs}}' -'Weird Worlds: Return to Infinite Space': + - "{{Game data/config|Windows|{{p|localappdata}}\\Nova\\Saved\\Config\\WindowsNoEditor}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Nova\\Saved\\SaveGames}}" + - "{{Game data/saves|Microsoft Store|{{p|localappdata}}\\Packages\\DevolverDigital.WeirdWest\\SystemAppData\\wgs}}" +"Weird Worlds: Return to Infinite Space": gog: 1111239739 gogSide: - 1478245344 @@ -191157,16 +185872,14 @@ Welcome Back Daddy: pageId: 93156 steam: 810510 templates: - - >- - {{Game data/config|Windows|[[Glossary:Game data#Windows registry|HKEY_CURRENT_USER]]\Software\Chilla's Art\Welcome - back Daddy}} + - "{{Game data/config|Windows|[[Glossary:Game data#Windows registry|HKEY_CURRENT_USER]]\\Software\\Chilla's Art\\Welcome back Daddy}}" Welcome Back to 2007: pageId: 78798 steam: 666940 Welcome Back to 2007 2: pageId: 109024 steam: 848550 -'Welcome Home, Love': +"Welcome Home, Love": pageId: 59464 steam: 553050 Welcome To Cathouse(欢迎来到猫咪花园): @@ -191178,24 +185891,24 @@ Welcome To The Dark Place: Welcome To The Dreamscape: pageId: 99408 steam: 878980 -'Welcome To... Chichester 2 - Part II : No Regrets For The Future': +"Welcome To... Chichester 2 - Part II : No Regrets For The Future": pageId: 141137 steam: 1105600 -'Welcome To... Chichester 2 : The Spy Of Chichester And The Eager Tourist Guide': +"Welcome To... Chichester 2 : The Spy Of Chichester And The Eager Tourist Guide": pageId: 103697 steam: 907350 -'Welcome To... Chichester 3 : The Demon Of Chichester And The Last Day': +"Welcome To... Chichester 3 : The Demon Of Chichester And The Last Day": pageId: 130753 steam: 1041660 -'Welcome To... Chichester OVN 1 : The Beach': +"Welcome To... Chichester OVN 1 : The Beach": pageId: 135499 renamedFrom: - - 'Welcome To... Chichester OVN : The Beach' + - "Welcome To... Chichester OVN : The Beach" steam: 1076040 -'Welcome To... Chichester OVN 2 : Master Tormentor Grendel Jinx !?': +"Welcome To... Chichester OVN 2 : Master Tormentor Grendel Jinx !?": pageId: 149057 steam: 1163480 -'Welcome To... Chichester Redux : The Spy Of America And The Long Vacation': +"Welcome To... Chichester Redux : The Spy Of America And The Long Vacation": pageId: 122546 steam: 963770 Welcome to Boon Hill: @@ -191211,7 +185924,7 @@ Welcome to Hanwell: pageId: 59860 steam: 611750 templates: - - '{{Game data/saves|Windows|{{p|localappdata}}\WelcomeToHanwell}}' + - "{{Game data/saves|Windows|{{p|localappdata}}\\WelcomeToHanwell}}" Welcome to Heaven: pageId: 63992 steam: 655160 @@ -191249,31 +185962,29 @@ Welcome to... Chichester!: pageId: 99280 steam: 877460 templates: - - '{{Game data/config|Windows|{{P|appdata}}\renpy\Chichester1Test-1540124710\persistent}}' - - '{{Game data/saves|Windows|{{P|appdata}}\renpy\Chichester1Test-1540124710\*.save}}' + - "{{Game data/config|Windows|{{P|appdata}}\\renpy\\Chichester1Test-1540124710\\persistent}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\renpy\\Chichester1Test-1540124710\\*.save}}" Welkin Road: pageId: 35771 steam: 432720 templates: - - >- - {{Game data/config|Windows|{{p|HKCU}}\Software\Radiant Zero Studios\Welkin Road|{{p|userprofile\Documents}}\Welkin - Road\Settings.xml}} - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Welkin Road\{{p|UID}}\SaveGame.dat}}' + - "{{Game data/config|Windows|{{p|HKCU}}\\Software\\Radiant Zero Studios\\Welkin Road|{{p|userprofile\\Documents}}\\Welkin Road\\Settings.xml}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Welkin Road\\{{p|UID}}\\SaveGame.dat}}" WellTown: pageId: 127587 steam: 974150 -Wellington's Victory: +"Wellington's Victory": pageId: 124364 steam: 388000 Wells: pageId: 54527 steam: 528430 -'Wellspring: Altar of Roots': +"Wellspring: Altar of Roots": pageId: 78866 steam: 690110 Welltris: pageId: 77445 -Wendy's Mart 3D: +"Wendy's Mart 3D": pageId: 81763 steam: 789700 Wenjia: @@ -191282,7 +185993,7 @@ Wenjia: Went: pageId: 128276 renamedFrom: - - '行界:遗 WENT:OneAlive' + - "行界:遗 WENT:OneAlive" steam: 1005560 Wequer: pageId: 130420 @@ -191305,28 +186016,24 @@ Werewolf Life: Werewolf Voice - Party Game: pageId: 152929 steam: 1153880 -'Werewolf: The Apocalypse - Earthblood': +"Werewolf: The Apocalypse - Earthblood": gog: 1349516820 pageId: 148265 steam: 679110 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\WW\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\WW\Saved\SaveGames\}}' -'Werewolf: The Apocalypse - Heart of the Forest': + - "{{Game data/config|Windows|{{P|localappdata}}\\WW\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\WW\\Saved\\SaveGames\\}}" +"Werewolf: The Apocalypse - Heart of the Forest": gog: 1270634266 pageId: 162127 steam: 1342620 templates: - - >- - {{Game data/config|Windows|{{P|userprofile\appdata\locallow}}\Different Tales\Heart of the - Forest\Device\devicesettings.json|{{P|hkcu}}\SOFTWARE\Different Tales\Heart of the Forest\}} - - >- - {{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Different Tales\Heart of the - Forest\Saves\profile*.json}} + - "{{Game data/config|Windows|{{P|userprofile\\appdata\\locallow}}\\Different Tales\\Heart of the Forest\\Device\\devicesettings.json|{{P|hkcu}}\\SOFTWARE\\Different Tales\\Heart of the Forest\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Different Tales\\Heart of the Forest\\Saves\\profile*.json}}" Werewolves Within: pageId: 54588 steam: 488950 -'Werewolves: Haven Rising': +"Werewolves: Haven Rising": pageId: 102895 steam: 885120 Werther Quest: @@ -191340,20 +186047,18 @@ West of Dead: pageId: 159524 steam: 1016790 templates: - - '{{Game data/saves|Windows|\AppData\LocalLow\Upstream Arcade\West of Dead\}}' + - "{{Game data/saves|Windows|\\AppData\\LocalLow\\Upstream Arcade\\West of Dead\\}}" West of Loathing: gog: 1154606028 pageId: 65120 steam: 597220 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Asymmetric Software\West of Loathing\}}' - - >- - {{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Asymmetric Software/West of - Loathing/permaflags-.json}} - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Asymmetric Software/West of Loathing/prefs}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Asymmetric Software\West of Loathing\{{p|uid}}.json}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Asymmetric Software/West of Loathing}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Asymmetric Software/West of Loathing}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Asymmetric Software\\West of Loathing\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Asymmetric Software/West of Loathing/permaflags-.json}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Asymmetric Software/West of Loathing/prefs}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Asymmetric Software\\West of Loathing\\{{p|uid}}.json}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Asymmetric Software/West of Loathing}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Asymmetric Software/West of Loathing}}" West of Red: pageId: 70230 steam: 709870 @@ -191366,21 +186071,21 @@ Westard: Westboro: pageId: 61614 steam: 416060 -'Westerado: Double Barreled': +"Westerado: Double Barreled": gog: 1892469133 pageId: 37461 steam: 275200 templates: - - '{{Game data/config|Windows|{{p|appdata}}\WesteradoDB\|{{p|userprofile\Documents}}\Westerado DB\controls.ini}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Documents/Westerado DB/controls.ini}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Westerado DB\saves\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Documents/Westerado DB/saves}}' + - "{{Game data/config|Windows|{{p|appdata}}\\WesteradoDB\\|{{p|userprofile\\Documents}}\\Westerado DB\\controls.ini}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Documents/Westerado DB/controls.ini}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Westerado DB\\saves\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Documents/Westerado DB/saves}}" Western 1849 Reloaded: pageId: 57442 steam: 576980 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\NAWIA GAMES\Western 1849 Reloaded\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\NAWIA GAMES\Western 1849 Reloaded\}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\NAWIA GAMES\\Western 1849 Reloaded\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\NAWIA GAMES\\Western 1849 Reloaded\\}}" Western Adventure: pageId: 54345 steam: 562710 @@ -191390,16 +186095,16 @@ Western Bank VR: Western FPS: pageId: 59337 steam: 603370 -'Western Outlaw: Wanted Dead or Alive': +"Western Outlaw: Wanted Dead or Alive": pageId: 161786 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/saves|Windows|{{p|game}}\Save\}}' + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\Save\\}}" Western Press: pageId: 43472 steam: 377360 templates: - - '{{Game data/saves|Windows|{{p|USERPROFILE}}\AppData\LocalLow\Bandit-1\Western Press\user.wp}}' + - "{{Game data/saves|Windows|{{p|USERPROFILE}}\\AppData\\LocalLow\\Bandit-1\\Western Press\\user.wp}}" Western Province: pageId: 128625 steam: 979870 @@ -191416,33 +186121,33 @@ Westslingers: Westward: pageId: 41267 steam: 36150 -'Westward II: Heroes of the Frontier': +"Westward II: Heroes of the Frontier": pageId: 52748 steam: 36160 -'Westward III: Gold Rush': +"Westward III: Gold Rush": pageId: 52749 steam: 36170 -'Westward IV: All Aboard': +"Westward IV: All Aboard": pageId: 41172 steam: 36310 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\Saved Games\Sandlot Games\Westward IV\Preferences}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\Saved Games\Sandlot Games\Westward IV\Profiles}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\Saved Games\\Sandlot Games\\Westward IV\\Preferences}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Saved Games\\Sandlot Games\\Westward IV\\Profiles}}" Westwood Shadows: pageId: 142349 steam: 1122360 Westworld 2000: pageId: 161122 templates: - - '{{Game data/config|Windows|{{p|game}}}}' - - '{{Game data/saves|Windows|{{p|game}}}}' + - "{{Game data/config|Windows|{{p|game}}}}" + - "{{Game data/saves|Windows|{{p|game}}}}" Westworld Awakening: pageId: 143534 steam: 1133320 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\LabEscape\Saved\Config}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\LabEscape\Saved\SaveGames}}' -'Wet Attack: The Empire Cums Back': + - "{{Game data/config|Windows|{{p|localappdata}}\\LabEscape\\Saved\\Config}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\LabEscape\\Saved\\SaveGames}}" +"Wet Attack: The Empire Cums Back": pageId: 184109 Wet Beach Pussies: pageId: 145964 @@ -191471,13 +186176,13 @@ Weyrwood: Whack A Hoe: pageId: 145916 steam: 1128270 -'Whack a Vote: Hammering the Polls': +"Whack a Vote: Hammering the Polls": pageId: 52588 steam: 544130 Whack the Serial Killer: pageId: 90205 steam: 764990 -'Whacker Guy: Distance Hunter': +"Whacker Guy: Distance Hunter": pageId: 107894 steam: 890900 Whait Bandana: @@ -191506,11 +186211,11 @@ What Never Was: pageId: 125042 steam: 866440 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\WhatNeverWas\Saved\Config\WindowsNoEditor}}' - - '{{Game data/config|Linux|{{P|linuxhome}}/.config/Epic/WhatNeverWas/Saved/Config/LinuxNoEditor/}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\WhatNeverWas\Saved\SaveGames\SaveSlot.sav}}' - - '{{Game data/saves|Linux|{{P|linuxhome}}/.config/Epic/WhatNeverWas/Saved/SaveGames/SaveSlot.sav}}' -'What Never Was: Chapter II': + - "{{Game data/config|Windows|{{P|localappdata}}\\WhatNeverWas\\Saved\\Config\\WindowsNoEditor}}" + - "{{Game data/config|Linux|{{P|linuxhome}}/.config/Epic/WhatNeverWas/Saved/Config/LinuxNoEditor/}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\WhatNeverWas\\Saved\\SaveGames\\SaveSlot.sav}}" + - "{{Game data/saves|Linux|{{P|linuxhome}}/.config/Epic/WhatNeverWas/Saved/SaveGames/SaveSlot.sav}}" +"What Never Was: Chapter II": pageId: 173559 steam: 1506730 What Remains of Edith Finch: @@ -191522,21 +186227,17 @@ What Remains of Edith Finch: steamSide: - 629930 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\FinchGame\Saved\Config\WindowsNoEditor\}}' - - >- - {{Game data/config|Microsoft - Store|{{p|localappdata}}\Packages\AnnapurnaInteractive.WhatRemainsofEdithFinch_c96c51jf6wkvm\LocalCache\Local\FinchGame\Saved\Config\WindowsNoEditor\}} - - '{{Game data/saves|Windows|{{p|localappdata}}\FinchGame\Saved\SaveGames\}}' - - >- - {{Game data/saves|Microsoft - Store|{{p|localappdata}}\Packages\AnnapurnaInteractive.WhatRemainsofEdithFinch_c96c51jf6wkvm\LocalCache\Local\FinchGame\Saved\SaveGames\}} + - "{{Game data/config|Windows|{{p|localappdata}}\\FinchGame\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/config|Microsoft Store|{{p|localappdata}}\\Packages\\AnnapurnaInteractive.WhatRemainsofEdithFinch_c96c51jf6wkvm\\LocalCache\\Local\\FinchGame\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\FinchGame\\Saved\\SaveGames\\}}" + - "{{Game data/saves|Microsoft Store|{{p|localappdata}}\\Packages\\AnnapurnaInteractive.WhatRemainsofEdithFinch_c96c51jf6wkvm\\LocalCache\\Local\\FinchGame\\Saved\\SaveGames\\}}" What The Box?: pageId: 38901 steam: 527340 What The Duck: pageId: 151581 steam: 1034590 -'What The Heck, Dude?': +"What The Heck, Dude?": pageId: 52688 steam: 550670 What Would You Do?: @@ -191545,16 +186246,14 @@ What Would You Do?: What do you hear?? Yanny vs Laurel: pageId: 95531 steam: 868550 -'What have you done, Father?': +"What have you done, Father?": pageId: 191330 steam: 2584260 What if George Washington was a Girl?: pageId: 180868 steam: 2098470 templates: - - >- - {{Game data/saves|Windows|{{p|Appdata}}\LocalLow\echomune\Alter Historia - What if George Washington was a - Girl_\}} + - "{{Game data/saves|Windows|{{p|Appdata}}\\LocalLow\\echomune\\Alter Historia - What if George Washington was a Girl_\\}}" What the Dark Keeps: pageId: 38700 steam: 453860 @@ -191566,29 +186265,29 @@ What the Golf?: pageId: 87561 steam: 785790 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Triband\WHAT THE GOLF?\}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Triband\WHAT THE GOLF_\GolfSave.golf}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Triband\\WHAT THE GOLF?\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Triband\\WHAT THE GOLF_\\GolfSave.golf}}" What would Google say?: pageId: 110030 steam: 920670 What!? My Neighbors Are Demons!!?: pageId: 64644 steam: 657580 -What's Left: +"What's Left": pageId: 151006 steam: 1127480 -What's My Gender?: +"What's My Gender?": pageId: 95282 steam: 859380 -What's under Your Blanket !?: +"What's under Your Blanket !?": pageId: 45083 renamedFrom: - - What's under your blanket !? + - "What's under your blanket !?" steam: 432020 -What's under Your Blanket 2 !?: +"What's under Your Blanket 2 !?": pageId: 60271 renamedFrom: - - What's under your blanket 2 !? + - "What's under your blanket 2 !?" steam: 605500 What? Hentai? Again ? ( ͡° ͜ʖ ͡°): pageId: 121593 @@ -191609,7 +186308,7 @@ Wheel of Fate: Wheel of Fortune (1998): pageId: 101643 templates: - - '{{Game data/config|Windows|{{p|game}}}}' + - "{{Game data/config|Windows|{{p|game}}}}" Wheelbarrow Warrior: pageId: 108768 steam: 729820 @@ -191626,19 +186325,17 @@ Wheelman: pageId: 30128 steam: 21920 templates: - - '{{Game data/config|Windows|{{p|LOCALAPPDATA}}\Wheelman}}' - - '{{Game data/saves|Windows|{{p|LOCALAPPDATA}}\Wheelman}}' + - "{{Game data/config|Windows|{{p|LOCALAPPDATA}}\\Wheelman}}" + - "{{Game data/saves|Windows|{{p|LOCALAPPDATA}}\\Wheelman}}" Wheels of Aurelia: pageId: 40299 steam: 508740 templates: - - '{{Game data/config|Windows|{{P|userprofile}}\AppData\LocalLow\Santa Ragione\WheelsofAurelia\PlayerPrefs.txt}}' - - '{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/Santa Regione/WheelsofAurelia/PlayerPrefs.txt}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Santa Ragione\WheelsofAurelia\PlayerPrefs.txt}}' - - >- - {{Game data/saves|OS X|{{P|userprofile}}/Library/Containers/Wheels of Aurelia/Data/Library/Application - Support/com.santaragione.WoA/PlayerPrefs.txt}} - - '{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/Santa Regione/WheelsofAurelia/PlayerPrefs.txt}}' + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Santa Ragione\\WheelsofAurelia\\PlayerPrefs.txt}}" + - "{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/Santa Regione/WheelsofAurelia/PlayerPrefs.txt}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Santa Ragione\\WheelsofAurelia\\PlayerPrefs.txt}}" + - "{{Game data/saves|OS X|{{P|userprofile}}/Library/Containers/Wheels of Aurelia/Data/Library/Application Support/com.santaragione.WoA/PlayerPrefs.txt}}" + - "{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/Santa Regione/WheelsofAurelia/PlayerPrefs.txt}}" Wheely: pageId: 52605 steam: 548330 @@ -191661,10 +186358,8 @@ When Ski Lifts Go Wrong: pageId: 133738 steam: 638000 templates: - - >- - {{Game data/config|Windows|{{P|userprofile}}\AppData\LocalLow\Hugecalf Studios\When Ski Lifts Go - Wrong\settings.ca|{{P|hkcu}}\Software\Hugecalf Studios\When Ski Lifts Go Wrong\}} - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Hugecalf Studios\When Ski Lifts Go Wrong\saves\}}' + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Hugecalf Studios\\When Ski Lifts Go Wrong\\settings.ca|{{P|hkcu}}\\Software\\Hugecalf Studios\\When Ski Lifts Go Wrong\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Hugecalf Studios\\When Ski Lifts Go Wrong\\saves\\}}" When The Shutter Stops: pageId: 114058 steam: 935140 @@ -191678,20 +186373,18 @@ When the Darkness comes: pageId: 128391 steam: 1021950 templates: - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Darkness\_meaning}}' + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Darkness\\_meaning}}" When the Past Was Around: gog: 1743608232 pageId: 151319 steam: 1164050 templates: - - >- - {{Game data/config|Windows|{{P|hkcu}}\Software\Mojiken Studio\When Past Was - Around\|{{p|userprofile\appdata\locallow}}\Mojiken Studio\When Past Was Around\data.save}} - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\Mojiken Studio\When Past Was Around\data.save}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Mojiken Studio\\When Past Was Around\\|{{p|userprofile\\appdata\\locallow}}\\Mojiken Studio\\When Past Was Around\\data.save}}" + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\Mojiken Studio\\When Past Was Around\\data.save}}" Where Angels Cry: pageId: 50616 steam: 277560 -'Where Angels Cry: Tears of the Fallen': +"Where Angels Cry: Tears of the Fallen": pageId: 45690 steam: 413470 Where Are My Friends?: @@ -191706,7 +186399,7 @@ Where Are We Now: Where Cards Fall: pageId: 58178 steam: 589450 -Where Humans Shouldn't Go: +"Where Humans Shouldn't Go": pageId: 110050 steam: 921090 Where Is My Heart?: @@ -191714,18 +186407,18 @@ Where Is My Heart?: pageId: 18938 steam: 244950 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\WIMH\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\WIMH\Saves\slot*.whs}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\WIMH\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\WIMH\\Saves\\slot*.whs}}" Where Is The Beach?: pageId: 125699 steam: 1008260 Where They Cremate The Roadkill: pageId: 71896 steam: 705610 -'Where Thoughts Go: Prologue': +"Where Thoughts Go: Prologue": pageId: 107814 steam: 846080 -'Where Thoughts Go: Resolutions': +"Where Thoughts Go: Resolutions": pageId: 125183 steam: 977450 Where Time Stood Still: @@ -191763,56 +186456,48 @@ Where the Water Tastes Like Wine: pageId: 68516 steam: 447120 templates: - - >- - {{Game data/config|Windows|{{P|userprofile}}\AppData\LocalLow\Dim Bulb - Games\WheretheWaterTastesLikeWine\WTWTLW-Options.options|{{P|hkcu}}\SOFTWARE\Dim Bulb - Games\WheretheWaterTastesLikeWine\}} - - '{{Game data/config|Linux|{{p|linuxhome}}/Dim Bulb Games/WheretheWaterTastesLikeWine/}}' - - >- - {{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Dim Bulb - Games\WheretheWaterTastesLikeWine\SaveGame.wtwtlw}} -'Where the Water Tastes Like Wine: Fireside Chats': + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Dim Bulb Games\\WheretheWaterTastesLikeWine\\WTWTLW-Options.options|{{P|hkcu}}\\SOFTWARE\\Dim Bulb Games\\WheretheWaterTastesLikeWine\\}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/Dim Bulb Games/WheretheWaterTastesLikeWine/}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Dim Bulb Games\\WheretheWaterTastesLikeWine\\SaveGame.wtwtlw}}" +"Where the Water Tastes Like Wine: Fireside Chats": pageId: 123746 steam: 947120 templates: - - >- - {{Game data/config|Windows|{{P|userprofile}}\AppData\LocalLow\Dim Bulb - Games\WheretheWaterTastesLikeWine\WTWTLWFC-Options.options|{{P|hkcu}}\Software\Dim Bulb - Games\WheretheWaterTastesLikeWine\}} -Where's Baby: + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Dim Bulb Games\\WheretheWaterTastesLikeWine\\WTWTLWFC-Options.options|{{P|hkcu}}\\Software\\Dim Bulb Games\\WheretheWaterTastesLikeWine\\}}" +"Where's Baby": pageId: 109368 steam: 895610 -Where's My Helmet?: +"Where's My Helmet?": pageId: 42954 steam: 470450 -Where's My Mickey? XL: +"Where's My Mickey? XL": pageId: 174493 -Where's My Mommy?: +"Where's My Mommy?": pageId: 44361 steam: 423610 -Where's My Perry?: +"Where's My Perry?": pageId: 170962 -Where's My What?: +"Where's My What?": pageId: 50785 steam: 531860 templates: - - '{{Game data/config|Windows|{{P|hkcu}}/SOFTWARE/EnsenaSoft, S.A. de C.V./Wheres My What}}' - - '{{Game data/saves|Windows|{{P|hkcu}}/SOFTWARE/EnsenaSoft, S.A. de C.V./Wheres My What}}' -Where's Phantom Thief: + - "{{Game data/config|Windows|{{P|hkcu}}/SOFTWARE/EnsenaSoft, S.A. de C.V./Wheres My What}}" + - "{{Game data/saves|Windows|{{P|hkcu}}/SOFTWARE/EnsenaSoft, S.A. de C.V./Wheres My What}}" +"Where's Phantom Thief": pageId: 73653 steam: 709520 -Where's Waldo? The Fantastic Journey: +"Where's Waldo? The Fantastic Journey": pageId: 89161 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Ludia\Waldo\}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Ludia\Waldo\}}' -Where's the Fck*ng Light - VR: + - "{{Game data/config|Windows|{{p|appdata}}\\Ludia\\Waldo\\}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Ludia\\Waldo\\}}" +"Where's the Fck*ng Light - VR": pageId: 52942 steam: 542360 WhiTaers: pageId: 125721 steam: 714130 -'WhiTaers: Gongren Edition': +"WhiTaers: Gongren Edition": pageId: 126096 steam: 1012800 Which Way Out: @@ -191821,20 +186506,20 @@ Which Way Out: Whiffle Blasters: pageId: 132913 steam: 1035570 -'Whigs & Tories: American Revolution': +"Whigs & Tories: American Revolution": pageId: 110454 steam: 926540 While I Sleep I Am Debug: pageId: 81739 steam: 777870 -'While True: learn()': +"While True: learn()": gog: 1196850762 pageId: 77843 steam: 619150 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Luden.io\while True: learn()\}}' - - '{{Game data/saves|Windows|{{P|game}}\Saves\}}' - - '{{Game data/saves|Steam|{{P|steam}}\userdata\{{P|uid}}\619150\remote\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Luden.io\\while True: learn()\\}}" + - "{{Game data/saves|Windows|{{P|game}}\\Saves\\}}" + - "{{Game data/saves|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\619150\\remote\\}}" While You Are Downloading: pageId: 87223 steam: 749730 @@ -191865,25 +186550,25 @@ Whirlygig: Whiskered Away: pageId: 100114 steam: 890930 -'Whiskey & Zombies: The Great Southern Zombie Escape': +"Whiskey & Zombies: The Great Southern Zombie Escape": pageId: 135777 steam: 1011320 Whisper of a Rose: pageId: 49323 steam: 326730 -'Whispered Secrets: Golden Silence': +"Whispered Secrets: Golden Silence": pageId: 102571 steam: 896980 -'Whispered Secrets: Into the Beyond': +"Whispered Secrets: Into the Beyond": pageId: 64556 steam: 669040 -'Whispered Secrets: Into the Wind': +"Whispered Secrets: Into the Wind": pageId: 86959 steam: 804990 -'Whispered Secrets: The Story of Tideville': +"Whispered Secrets: The Story of Tideville": pageId: 54614 renamedFrom: - - 'Whispered Secrets: The Story of Tideville Collector''s Edition' + - "Whispered Secrets: The Story of Tideville Collector's Edition" steam: 564450 Whispering Flames: pageId: 109380 @@ -191893,10 +186578,10 @@ Whispering Willows: pageId: 49975 steam: 288060 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Nightlight Interactive\Whispering Willows\}}' - - '{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/Nightlight Interactive/Whispering Willows/prefs}}' - - '{{Game data/saves|Windows|{{p|hkcu}}\Software\Nightlight Interactive\Whispering Willows\}}' - - '{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/Nightlight Interactive/Whispering Willows/prefs}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Nightlight Interactive\\Whispering Willows\\}}" + - "{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/Nightlight Interactive/Whispering Willows/prefs}}" + - "{{Game data/saves|Windows|{{p|hkcu}}\\Software\\Nightlight Interactive\\Whispering Willows\\}}" + - "{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/Nightlight Interactive/Whispering Willows/prefs}}" Whispers: pageId: 41964 steam: 505760 @@ -191908,26 +186593,26 @@ Whispers of a Machine: pageId: 124544 steam: 631570 templates: - - '{{Game data/config|Windows|{{P|userprofile}}\Saved Games\Whispers of a Machine\user.cfg|{{P|game}}\acsetup.cfg}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\Saved Games\Whispers of a Machine\agssave.*}}' -'Whispers: Last Hope': + - "{{Game data/config|Windows|{{P|userprofile}}\\Saved Games\\Whispers of a Machine\\user.cfg|{{P|game}}\\acsetup.cfg}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\Saved Games\\Whispers of a Machine\\agssave.*}}" +"Whispers: Last Hope": pageId: 60695 steam: 581700 -'White Day 2: The Flower That Tells Lies': +"White Day 2: The Flower That Tells Lies": pageId: 185261 steam: 2078040 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\AppData\Local\WD\Saved\SaveGames}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\Local\WD\Saved\SaveGames\0}}' -'White Day VR: The Courage Test': + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\Local\\WD\\Saved\\SaveGames}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\Local\\WD\\Saved\\SaveGames\\0}}" +"White Day VR: The Courage Test": pageId: 174338 steam: 1442650 -'White Day: A Labyrinth Named School': +"White Day: A Labyrinth Named School": pageId: 65130 steam: 466130 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\SONNORI\White Day:a labyrinth named school\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\SONNORI\White Day_a labyrinth named school\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\SONNORI\\White Day:a labyrinth named school\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\SONNORI\\White Day_a labyrinth named school\\}}" White Dove 白雀: pageId: 115000 steam: 953570 @@ -191941,26 +186626,26 @@ White Night: pageId: 23344 steam: 301560 templates: - - '{{Game data/config|Windows|{{p|game}}\Bin\Win32\local\}}' - - '{{Game data/saves|Windows|{{p|game}}\Bin\Win32\shared\}}' + - "{{Game data/config|Windows|{{p|game}}\\Bin\\Win32\\local\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\Bin\\Win32\\shared\\}}" White Noise 2: pageId: 51579 steam: 503350 templates: - - '{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/Milkstone Studios/WhiteNoise2}}' + - "{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/Milkstone Studios/WhiteNoise2}}" White Noise Online: pageId: 50210 steam: 293860 templates: - - '{{Game data/config|Windows|{{p|steam}}\userdata\{{p|uid}}\293860\remote\}}' - - '{{Game data/saves|Windows|{{p|steam}}\userdata\{{p|uid}}\293860\remote\}}' + - "{{Game data/config|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\293860\\remote\\}}" + - "{{Game data/saves|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\293860\\remote\\}}" White Nothing: pageId: 98478 steam: 871470 White Pearl: pageId: 78328 steam: 761280 -'White Power: Pure Voltage': +"White Power: Pure Voltage": pageId: 78022 steam: 749740 White Shadows: @@ -191968,8 +186653,8 @@ White Shadows: pageId: 173397 steam: 1158890 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Monokel\WhiteShadows\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Monokel\WhiteShadows\white_shadows.data}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Monokel\\WhiteShadows\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Monokel\\WhiteShadows\\white_shadows.data}}" White Wings: pageId: 154408 renamedFrom: @@ -191990,10 +186675,10 @@ Whitetail Challenge: Whitevale Defender: pageId: 92299 steam: 841320 -'Who Am I: The Tale of Dorothy': +"Who Am I: The Tale of Dorothy": pageId: 91528 steam: 821790 -'Who Are You, Mr. Cooper?': +"Who Are You, Mr. Cooper?": pageId: 135101 steam: 1062020 Who Could That Be?: @@ -192006,10 +186691,8 @@ Who Is Mike - A Visual Novel: pageId: 37703 steam: 377430 templates: - - >- - {{Game data/config|Windows|{{P|game}}\game\saves\persistent|{{P|appdata}}\RenPy\Who is - Mike-1398140576\persistent}} - - '{{Game data/saves|Windows|{{P|game}}\game\saves\*.save|{{P|appdata}}\RenPy\Who is Mike-1398140576\*.save}}' + - "{{Game data/config|Windows|{{P|game}}\\game\\saves\\persistent|{{P|appdata}}\\RenPy\\Who is Mike-1398140576\\persistent}}" + - "{{Game data/saves|Windows|{{P|game}}\\game\\saves\\*.save|{{P|appdata}}\\RenPy\\Who is Mike-1398140576\\*.save}}" Who Is This Man: pageId: 125645 steam: 1008510 @@ -192023,76 +186706,72 @@ Who Needs a Hero?: pageId: 169920 steam: 1342890 templates: - - >- - {{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Almost a Hero\Who Needs a - Hero_\*-v1|{{p|userprofile}}\AppData\LocalLow\Almost a Hero\Who Needs a Hero_\*-v2}} + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Almost a Hero\\Who Needs a Hero_\\*-v1|{{p|userprofile}}\\AppData\\LocalLow\\Almost a Hero\\Who Needs a Hero_\\*-v2}}" Who Wants To Be A Millionaire (1999): pageId: 89914 Who Wants To Be A Millionaire (2020): pageId: 164779 steam: 1356240 -'Who Wants To Be A Millionaire: 3rd Edition': +"Who Wants To Be A Millionaire: 3rd Edition": pageId: 89887 templates: - - '{{Game data/saves|Windows|{{p|game}}\Millionaire 3E Scores}}' -'Who Wants To Be A Millionaire: UK Edition': + - "{{Game data/saves|Windows|{{p|game}}\\Millionaire 3E Scores}}" +"Who Wants To Be A Millionaire: UK Edition": pageId: 89902 Who Wants To Destroy An Alien: pageId: 110728 steam: 932170 Who Wants to Be a Millionaire (2000): pageId: 89905 -'Who Wants to Be a Millionaire: 2nd Edition': +"Who Wants to Be a Millionaire: 2nd Edition": pageId: 89919 -'Who Wants to Be a Millionaire: Junior': +"Who Wants to Be a Millionaire: Junior": pageId: 89892 -'Who Wants to Be a Millionaire: Party Edition': +"Who Wants to Be a Millionaire: Party Edition": pageId: 89883 -'Who Wants to Be a Millionaire: Sports Edition': +"Who Wants to Be a Millionaire: Sports Edition": pageId: 89897 Who Wants to Be a Millionaire? Special Editions: pageId: 89900 renamedFrom: - - 'Who Wants to Be a Millionaire: Special Edition' + - "Who Wants to Be a Millionaire: Special Edition" steam: 206740 -'Who Wants to be a Millionaire: Kids Edition': +"Who Wants to be a Millionaire: Kids Edition": pageId: 89885 Who wants to strip this babe? Hentai Streamer Girl: pageId: 135478 steam: 1076210 -Who's Lila: +"Who's Lila": pageId: 186409 steam: 1697700 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\Documents\My Games\WhosLila\Saves}}' -Who's That Flying?!: + - "{{Game data/saves|Windows|{{p|userprofile}}\\Documents\\My Games\\WhosLila\\Saves}}" +"Who's That Flying?!": pageId: 20174 steam: 57700 templates: - - '{{Game data/saves|Steam|{{p|steam}}/Steam/userdata/{{p|uid}}/57700/remote/}}' -Who's Your Daddy: + - "{{Game data/saves|Steam|{{p|steam}}/Steam/userdata/{{p|uid}}/57700/remote/}}" +"Who's Your Daddy": pageId: 43049 steam: 427730 templates: - - >- - {{Game data/config|Windows|C:\Users\[User's Name]\AppData\LocalLow\Evil Tortilla Games\WhosYourDaddy\Unity\[Random - Numbers]\Analytics}} - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Joe Williams/WhosYourDaddy/prefs}}' - - '{{Game data/config|Windows|C:\Users\[User''s Name]\AppData\LocalLow\Evil Tortilla Games\WhosYourDaddy\SAVEFILES}}' -Who's Your Santa !?: + - "{{Game data/config|Windows|C:\\Users\\[User's Name]\\AppData\\LocalLow\\Evil Tortilla Games\\WhosYourDaddy\\Unity\\[Random Numbers]\\Analytics}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Joe Williams/WhosYourDaddy/prefs}}" + - "{{Game data/config|Windows|C:\\Users\\[User's Name]\\AppData\\LocalLow\\Evil Tortilla Games\\WhosYourDaddy\\SAVEFILES}}" +"Who's Your Santa !?": pageId: 68649 renamedFrom: - - Who's your Santa !? + - "Who's your Santa !?" steam: 633370 -Who's in the Box?: +"Who's in the Box?": pageId: 91098 steam: 823710 Why Am I Dead At Sea: pageId: 37744 steam: 359400 templates: - - '{{Game data/config|Steam|{{p|steam}}\userdata\{{p|uid}}\359400\remote\GameConfig}}' - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\359400\remote\SaveFile*}}' + - "{{Game data/config|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\359400\\remote\\GameConfig}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\359400\\remote\\SaveFile*}}" Why Chicken? Why?: pageId: 127377 steam: 1012600 @@ -192105,7 +186784,7 @@ Why Neon Lights Again?: Why So Evil: pageId: 49367 steam: 331710 -'Why So Evil 2: Dystopia': +"Why So Evil 2: Dystopia": pageId: 48453 steam: 354850 Why War?: @@ -192124,7 +186803,7 @@ Wick: pageId: 38359 steam: 418300 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Hellbent Games\Wick\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Hellbent Games\\Wick\\}}" Wicked Witches: pageId: 45471 steam: 411630 @@ -192132,26 +186811,26 @@ Wickland: pageId: 21345 steam: 321260 templates: - - '{{Game data/config|Windows|{{p|game}}\UDKGame\Config}}' + - "{{Game data/config|Windows|{{p|game}}\\UDKGame\\Config}}" Wide Ocean Big Jacket: pageId: 156660 steam: 1198040 templates: - - '{{Game data/config|Linux|{{p|xdgconfighome}}/unity3d/Turnfollow/Wide Ocean Big Jacket/prefs}}' - - '{{Game data/saves|Linux|{{p|xdgconfighome}}/unity3d/Turnfollow/Wide Ocean Big Jacket}}' + - "{{Game data/config|Linux|{{p|xdgconfighome}}/unity3d/Turnfollow/Wide Ocean Big Jacket/prefs}}" + - "{{Game data/saves|Linux|{{p|xdgconfighome}}/unity3d/Turnfollow/Wide Ocean Big Jacket}}" Widelands: pageId: 171359 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\.widelands\}}' - - '{{Game data/config|Linux|{{P|xdgconfighome}}\widelands\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\.widelands\save\}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}\widelands\}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\.widelands\\}}" + - "{{Game data/config|Linux|{{P|xdgconfighome}}\\widelands\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\.widelands\\save\\}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}\\widelands\\}}" Widget Satchel: pageId: 100638 steam: 890480 -'Widget Workshop: The Mad Scientist''s Laboratory': +"Widget Workshop: The Mad Scientist's Laboratory": pageId: 7601 -Widower's Sky: +"Widower's Sky": pageId: 105141 steam: 796330 Wienne: @@ -192160,10 +186839,10 @@ Wienne: Wife Quest: pageId: 175538 steam: 1554600 -Wife's Derailment: +"Wife's Derailment": pageId: 148814 renamedFrom: - - Wife's derailment / 妻子的出轨 + - "Wife's derailment / 妻子的出轨" steam: 1161260 Wigged Out: pageId: 154432 @@ -192173,8 +186852,8 @@ Wigmund. The Return of the Hidden Knights: pageId: 151357 steam: 1164690 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\RPG\Saved\SaveGames}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\RPG\Saved\Config\WindowsNoEditor}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\RPG\\Saved\\SaveGames}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\RPG\\Saved\\Config\\WindowsNoEditor}}" Wil: pageId: 91548 steam: 717940 @@ -192190,7 +186869,7 @@ Wild Animals - Animated Jigsaws: Wild Arena: pageId: 52203 steam: 533280 -'Wild Buster: Heroes of Titan': +"Wild Buster: Heroes of Titan": pageId: 68697 steam: 681860 Wild Cats of Wasteland: @@ -192215,14 +186894,14 @@ Wild Guns Reloaded: pageId: 62364 steam: 585910 templates: - - '{{Game data/config|Windows|{{p|hklm}}\Software\NatsumeAtari\WILD GUNS Reloaded}}' - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\585910\remote\savedata.dat}}' + - "{{Game data/config|Windows|{{p|hklm}}\\Software\\NatsumeAtari\\WILD GUNS Reloaded}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\585910\\remote\\savedata.dat}}" Wild Hearts: pageId: 182345 steam: 1938010 templates: - - '{{Game data/saves|Windows|{{P|userprofile}}\Documents\KoeiTecmo\WILD HEARTS\}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\Documents\KoeiTecmo\WILD HEARTS\}}' + - "{{Game data/saves|Windows|{{P|userprofile}}\\Documents\\KoeiTecmo\\WILD HEARTS\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\Documents\\KoeiTecmo\\WILD HEARTS\\}}" Wild Island Quest: pageId: 46552 steam: 392820 @@ -192236,12 +186915,12 @@ Wild Metal Country: pageId: 14464 steam: 12190 templates: - - '{{Game data/config|Windows|{{p|hklm}}\SOFTWARE\{{p|wow64}}\DMA Design\Wild Metal Country\3DMA Settings}}' - - '{{Game data/saves|Windows|{{p|game}}\WinEnv\Configs\FrontEnd\PLAYERS}}' + - "{{Game data/config|Windows|{{p|hklm}}\\SOFTWARE\\{{p|wow64}}\\DMA Design\\Wild Metal Country\\3DMA Settings}}" + - "{{Game data/saves|Windows|{{p|game}}\\WinEnv\\Configs\\FrontEnd\\PLAYERS}}" Wild RTS: pageId: 77188 steam: 753140 -'Wild Ranger: Gun X Dragon': +"Wild Ranger: Gun X Dragon": pageId: 124245 steam: 991450 Wild Ride: @@ -192250,13 +186929,13 @@ Wild Ride: Wild Romance: pageId: 50903 steam: 493450 -'Wild Romance: Mofu Mofu Edition': +"Wild Romance: Mofu Mofu Edition": pageId: 76008 steam: 748480 Wild Season: pageId: 45373 steam: 328220 -'Wild Terra 2: New Lands': +"Wild Terra 2: New Lands": pageId: 157281 steam: 1134700 Wild Terra Online: @@ -192275,7 +186954,7 @@ Wild West Dynasty: Wild West Online: pageId: 93619 steam: 743860 -'Wild West Saga:Idle Tycoon': +"Wild West Saga:Idle Tycoon": pageId: 93684 steam: 842150 Wild West VR: @@ -192300,7 +186979,7 @@ WildStar: pageId: 17314 steam: 376570 templates: - - '{{Game data/config|Windows|{{p|appdata}}\NCSOFT\WildStar}}' + - "{{Game data/config|Windows|{{p|appdata}}\\NCSOFT\\WildStar}}" Wildbus: pageId: 122540 steam: 818360 @@ -192309,15 +186988,13 @@ Wildcat Gun Machine: pageId: 170984 steam: 1288610 templates: - - >- - {{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\Daedalic Entertainment GmbH\Wildcat Gun - Machine\*.es3}} + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\Daedalic Entertainment GmbH\\Wildcat Gun Machine\\*.es3}}" Wildermyth: gog: 1853330157 pageId: 81169 steam: 763890 templates: - - '{{Game data/saves|Windows|{{p|game}}\players\*}}' + - "{{Game data/saves|Windows|{{p|game}}\\players\\*}}" Wildest of the Wild: pageId: 121111 steam: 955530 @@ -192326,18 +187003,18 @@ Wildfire: pageId: 52640 steam: 431940 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\wildfire\}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\wildfire\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\wildfire\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\wildfire\\}}" Wildfire Worlds: pageId: 10046 -'Wildfire: Ticket to Rock': +"Wildfire: Ticket to Rock": pageId: 176314 steam: 1519730 Wildfrost: pageId: 187397 steam: 1811990 templates: - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\Deadpan Games\Wildfrost}}' + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\Deadpan Games\\Wildfrost}}" Wildland: pageId: 141342 steam: 1112960 @@ -192357,7 +187034,7 @@ Wildlife Park 2: pageId: 49911 steam: 304350 templates: - - '{{Game data/config|Windows|{{p|game}}\settings\}}' + - "{{Game data/config|Windows|{{p|game}}\\settings\\}}" Wildlife Park 2 - Crazy Zoo: pageId: 49909 steam: 306480 @@ -192380,18 +187057,18 @@ Wildlife Park 3: pageId: 32304 steam: 287200 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\bitComposer Games\Wildlife Park 3\Setting}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\bitComposer Games\Wildlife Park 3\Save}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\bitComposer Games\\Wildlife Park 3\\Setting}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\bitComposer Games\\Wildlife Park 3\\Save}}" Wildlife Park Gold Remastered: pageId: 65233 steam: 664120 -'Wildlife Tycoon: Venture Africa': +"Wildlife Tycoon: Venture Africa": pageId: 92843 steam: 795220 Wildlife VR: pageId: 42295 steam: 500140 -'Will Fight for Food: Super Actual Sellout: Game of the Hour': +"Will Fight for Food: Super Actual Sellout: Game of the Hour": pageId: 48140 steam: 307210 Will Glow the Wisp: @@ -192400,14 +187077,14 @@ Will Glow the Wisp: Will Rock: pageId: 23954 templates: - - '{{Game data/config|Windows|{{p|game}}\bin}}' - - '{{Game data/saves|Windows|{{p|game}}\saves}}' + - "{{Game data/config|Windows|{{p|game}}\\bin}}" + - "{{Game data/saves|Windows|{{p|game}}\\saves}}" Will You Snail?: pageId: 142268 steam: 1115050 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Will_You_Snail\SettoIngs23-2.set}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Will_You_Snail}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Will_You_Snail\\SettoIngs23-2.set}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Will_You_Snail}}" Will of the Gods: pageId: 36676 steam: 503960 @@ -192415,22 +187092,22 @@ Will to Live Online: pageId: 79389 steam: 707010 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\WTL\Saved\Config\WindowsClient}}' -'Will: A Wonderful World': + - "{{Game data/config|Windows|{{p|localappdata}}\\WTL\\Saved\\Config\\WindowsClient}}" +"Will: A Wonderful World": pageId: 62498 steam: 588040 Willful: pageId: 65331 steam: 664060 -Willi's Haunted Hayride: +"Willi's Haunted Hayride": pageId: 52784 steam: 552150 -William Shatner's TekWar: +"William Shatner's TekWar": pageId: 31980 William and the Lands of Rage: pageId: 155560 steam: 921670 -William's Love Prelude: +"William's Love Prelude": pageId: 155775 steam: 1215650 Willowbrooke Post: @@ -192442,7 +187119,7 @@ Willowisp VR: Wills and Wonders: pageId: 41555 steam: 513060 -'Willy Jetman: Astromonkey''s Revenge': +"Willy Jetman: Astromonkey's Revenge": pageId: 156580 steam: 1007520 Willy Morgan and the Curse of Bone Town: @@ -192455,13 +187132,13 @@ Willy-Nilly Knight: pageId: 59671 steam: 610500 templates: - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Double Dice Games\Willy-Nilly Knight\SaveGames\}}' -Wilmot's Warehouse: + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Double Dice Games\\Willy-Nilly Knight\\SaveGames\\}}" +"Wilmot's Warehouse": pageId: 144463 steam: 839870 templates: - - '{{Game data/config|Windows|{{P|appdata}}\Hollow Ponds\Wilmot\globaldata.sol}}' - - '{{Game data/saves|Windows|{{P|appdata}}\Hollow Ponds\Wilmot\savedata.sol}}' + - "{{Game data/config|Windows|{{P|appdata}}\\Hollow Ponds\\Wilmot\\globaldata.sol}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\Hollow Ponds\\Wilmot\\savedata.sol}}" Wiloo: pageId: 65766 steam: 673010 @@ -192472,9 +187149,9 @@ Wily Beast and Weakest Creature: pageId: 136360 steam: 1079160 templates: - - '{{Game data/config|Windows|{{p|appdata}}\ShanghaiAlice\th17}}' - - '{{Game data/saves|Windows|{{p|appdata}}\ShanghaiAlice\th17}}' -'Wimp: Who Stole My Pants?': + - "{{Game data/config|Windows|{{p|appdata}}\\ShanghaiAlice\\th17}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\ShanghaiAlice\\th17}}" +"Wimp: Who Stole My Pants?": pageId: 47607 steam: 331570 Win Big Or Die: @@ -192486,10 +187163,10 @@ Win That War!: Win the Game!: pageId: 90987 steam: 828150 -'Win the Game: Do It!': +"Win the Game: Do It!": pageId: 92877 steam: 843890 -'Win the Game: WTF!': +"Win the Game: WTF!": pageId: 95477 steam: 867140 WinKings: @@ -192510,7 +187187,7 @@ Wind Horizon: Wind Runners: pageId: 145310 steam: 1101370 -'Wind of Luck: Arena': +"Wind of Luck: Arena": pageId: 46843 steam: 380770 WindShift: @@ -192527,29 +187204,27 @@ Windbound: pageId: 158925 steam: 1162130 templates: - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\5 Lives Studios\Windbound\Saves\}}' + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\5 Lives Studios\\Windbound\\Saves\\}}" Windfolk: pageId: 182431 steam: 1966700 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Windfolk\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Windfolk\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Windfolk\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Windfolk\\Saved\\SaveGames\\}}" Windforge: gog: 1207661903 pageId: 15235 steam: 266170 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Windforge\Config\config.txt}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Windforge\Saves\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Windforge\\Config\\config.txt}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Windforge\\Saves\\}}" Winding Worlds: pageId: 160441 Windjammers 2: pageId: 151295 steam: 1114290 templates: - - >- - {{Game data/saves|Microsoft - Store|{{p|localappdata}}\Packages\DotEmu.Windjammers2_map6zyh9ym1xy\SystemAppData\wgs\}} + - "{{Game data/saves|Microsoft Store|{{p|localappdata}}\\Packages\\DotEmu.Windjammers2_map6zyh9ym1xy\\SystemAppData\\wgs\\}}" Windlands: pageId: 34562 steam: 428370 @@ -192563,9 +187238,7 @@ Windosill: pageId: 3022 steam: 37600 templates: - - >- - {{Game data/saves|Windows|{{p|appdata}}\Macromedia\Flash - Player\#SharedObjects\{{p|uid}}\localhost\{{p|game}}\Windosill.exe\windosill.sol}} + - "{{Game data/saves|Windows|{{p|appdata}}\\Macromedia\\Flash Player\\#SharedObjects\\{{p|uid}}\\localhost\\{{p|game}}\\Windosill.exe\\windosill.sol}}" Windows Subsystem for Android: pageId: 172391 renamedFrom: @@ -192574,14 +187247,12 @@ Winds of Change: pageId: 90114 steam: 594130 templates: - - >- - {{Game - data/config|Windows|{{p|appdata}}\RenPy\WindsofChange-1508869298\persistent|{{P|game}}\game\saves\persistent|{{P|game}}\gamecontrollerdb.txt}} - - '{{Game data/config|OS X|{{P|osxhome}}/Library/RenPy/WindsofChange-1508869298/persistent}}' - - '{{Game data/config|Linux|{{P|linuxhome}}/.renpy/WindsofChange-1508869298/persistent}}' - - '{{Game data/saves|Windows|{{p|appdata}}\RenPy\WindsofChange-1508869298\*.save|{{P|game}}\game\saves\*.save}}' - - '{{Game data/saves|OS X|{{P|osxhome}}/Library/RenPy/WindsofChange-1508869298/*.save}}' - - '{{Game data/saves|Linux|{{P|linuxhome}}/.renpy/WindsofChange-1508869298/*.save}}' + - "{{Game data/config|Windows|{{p|appdata}}\\RenPy\\WindsofChange-1508869298\\persistent|{{P|game}}\\game\\saves\\persistent|{{P|game}}\\gamecontrollerdb.txt}}" + - "{{Game data/config|OS X|{{P|osxhome}}/Library/RenPy/WindsofChange-1508869298/persistent}}" + - "{{Game data/config|Linux|{{P|linuxhome}}/.renpy/WindsofChange-1508869298/persistent}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\RenPy\\WindsofChange-1508869298\\*.save|{{P|game}}\\game\\saves\\*.save}}" + - "{{Game data/saves|OS X|{{P|osxhome}}/Library/RenPy/WindsofChange-1508869298/*.save}}" + - "{{Game data/saves|Linux|{{P|linuxhome}}/.renpy/WindsofChange-1508869298/*.save}}" Winds of Trade: pageId: 57329 steam: 576260 @@ -192589,12 +187260,12 @@ Windscape: pageId: 36594 steam: 363950 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Headup\Windscape}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Headup\Windscape\Savegames}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Headup\\Windscape}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Headup\\Windscape\\Savegames}}" Windstorm: pageId: 66583 steam: 649810 -'Windstorm: Ari''s Arrival': +"Windstorm: Ari's Arrival": pageId: 132076 steam: 899200 Windward: @@ -192602,10 +187273,10 @@ Windward: pageId: 34352 steam: 326410 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Tasharen Entertainment Inc.\Windward\}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/Documents/Windward}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Windward\}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/Documents/Windward/Players}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Tasharen Entertainment Inc.\\Windward\\}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/Documents/Windward}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Windward\\}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/Documents/Windward/Players}}" Windy Kingdom: pageId: 139558 steam: 1096560 @@ -192615,7 +187286,7 @@ Winexy: Wing Breakers: pageId: 49667 renamedFrom: - - 'Altitude0: Lower & Faster' + - "Altitude0: Lower & Faster" steam: 308080 Wing Commander: gog: 1207662643 @@ -192623,59 +187294,59 @@ Wing Commander: - 1207658960 pageId: 11569 templates: - - '{{Game data/saves|DOS|{{p|game}}\GAMEDAT\SAVEGAME.WLD}}' - - '{{Game data/saves|Windows|{{p|game}}\GAMEDAT\SAVEGAME.WLD}}' -'Wing Commander II: Vengeance of the Kilrathi': + - "{{Game data/saves|DOS|{{p|game}}\\GAMEDAT\\SAVEGAME.WLD}}" + - "{{Game data/saves|Windows|{{p|game}}\\GAMEDAT\\SAVEGAME.WLD}}" +"Wing Commander II: Vengeance of the Kilrathi": gog: 1207662653 gogSide: - 1207658960 pageId: 11573 templates: - - '{{Game data/saves|DOS|{{p|game}}\GAMEDAT\SAVEGAME.WC2}}' - - '{{Game data/saves|Windows|{{p|game}}\GAMEDAT\SAVEGAME.WC2}}' -'Wing Commander III: Heart of the Tiger': + - "{{Game data/saves|DOS|{{p|game}}\\GAMEDAT\\SAVEGAME.WC2}}" + - "{{Game data/saves|Windows|{{p|game}}\\GAMEDAT\\SAVEGAME.WC2}}" +"Wing Commander III: Heart of the Tiger": gog: 1207658966 pageId: 12874 templates: - - '{{Game data/saves|DOS|{{p|game}}\00000***.WSG}}' - - '{{Game data/saves|Windows|{{p|game}}\00000***.WSG}}' -'Wing Commander IV: The Price of Freedom': + - "{{Game data/saves|DOS|{{p|game}}\\00000***.WSG}}" + - "{{Game data/saves|Windows|{{p|game}}\\00000***.WSG}}" +"Wing Commander IV: The Price of Freedom": gog: 1207659021 pageId: 17444 templates: - - '{{Game data/config|DOS|{{p|game}}\WC4.CFG}}' - - '{{Game data/config|Windows|{{p|game}}\WC4.CFG}}' - - '{{Game data/saves|DOS|{{p|game}}\*.WSG}}' - - '{{Game data/saves|Windows|{{p|game}}\*.WSG}}' -'Wing Commander: Academy': + - "{{Game data/config|DOS|{{p|game}}\\WC4.CFG}}" + - "{{Game data/config|Windows|{{p|game}}\\WC4.CFG}}" + - "{{Game data/saves|DOS|{{p|game}}\\*.WSG}}" + - "{{Game data/saves|Windows|{{p|game}}\\*.WSG}}" +"Wing Commander: Academy": gog: 1207659473 pageId: 12615 templates: - - '{{Game data/saves|DOS|{{p|game}}\MISSIONS}}' -'Wing Commander: Armada': + - "{{Game data/saves|DOS|{{p|game}}\\MISSIONS}}" +"Wing Commander: Armada": gog: 1207659603 pageId: 12728 templates: - - '{{Game data/config|DOS|{{p|game}}\GAME.OPT}}' - - '{{Game data/saves|DOS|{{p|game}}\SAVE_*.ARM}}' -'Wing Commander: Privateer': + - "{{Game data/config|DOS|{{p|game}}\\GAME.OPT}}" + - "{{Game data/saves|DOS|{{p|game}}\\SAVE_*.ARM}}" +"Wing Commander: Privateer": gog: 1207658938 pageId: 6301 templates: - - '{{Game data/saves|DOS|{{p|game}}\*.SAV|{{p|game}}\*.PRS}}' -'Wing Commander: Prophecy': + - "{{Game data/saves|DOS|{{p|game}}\\*.SAV|{{p|game}}\\*.PRS}}" +"Wing Commander: Prophecy": gog: 1207662663 gogSide: - 1207660153 pageId: 12895 templates: - - '{{Game data/saves|Windows|{{p|game}}\save}}' -'Wing Commander: Secret Ops': + - "{{Game data/saves|Windows|{{p|game}}\\save}}" +"Wing Commander: Secret Ops": gog: 1207662673 gogSide: - 1207660153 pageId: 12902 -'Wing Nuts: Battle in the Sky': +"Wing Nuts: Battle in the Sky": pageId: 183444 Wing of Darkness: pageId: 156955 @@ -192686,24 +187357,22 @@ Wing of Misadventure: WingMen: pageId: 79261 steam: 773340 -'Winged Knights: Penetration': +"Winged Knights: Penetration": pageId: 34972 steam: 473620 -'Winged Sakura: Demon Civil War': +"Winged Sakura: Demon Civil War": pageId: 54377 steam: 470300 templates: - - >- - {{Game data/config|Linux|{{p|game}}/Save/WSDCW_Config_Settings.xml|{{p|xdgconfighome}}/unity3d/WINGED SAKURA - GAMES/Winged Sakura_ Demon Civil War/prefs}} - - '{{Game data/saves|Linux|{{p|game}}/Save/*.wsg}}' -'Winged Sakura: Endless Dream': + - "{{Game data/config|Linux|{{p|game}}/Save/WSDCW_Config_Settings.xml|{{p|xdgconfighome}}/unity3d/WINGED SAKURA GAMES/Winged Sakura_ Demon Civil War/prefs}}" + - "{{Game data/saves|Linux|{{p|game}}/Save/*.wsg}}" +"Winged Sakura: Endless Dream": pageId: 68687 steam: 339250 -'Winged Sakura: Mindy''s Arc': +"Winged Sakura: Mindy's Arc": pageId: 38400 steam: 331390 -'Winged Sakura: Mindy''s Arc 2': +"Winged Sakura: Mindy's Arc 2": pageId: 122352 steam: 361790 Wingless: @@ -192722,15 +187391,15 @@ Wings of Glass 玻璃の羽: Wings of Glory: pageId: 64427 templates: - - '{{Game data/config|DOS|{{p|game}}\WG.CFG}}' - - '{{Game data/saves|DOS|{{p|game}}\SAVED}}' + - "{{Game data/config|DOS|{{p|game}}\\WG.CFG}}" + - "{{Game data/saves|DOS|{{p|game}}\\SAVED}}" Wings of Honour: pageId: 188911 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\City Interactive\Wings Of Honour}}' -'Wings of Honour: Battles of the Red Baron': + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\City Interactive\\Wings Of Honour}}" +"Wings of Honour: Battles of the Red Baron": pageId: 188914 -'Wings of Peace VR: DayBreak': +"Wings of Peace VR: DayBreak": pageId: 70090 steam: 670270 Wings of Prey: @@ -192738,23 +187407,21 @@ Wings of Prey: pageId: 13028 steam: 45300 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Wings of Prey\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Wings of Prey\Saves}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Wings of Prey\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Wings of Prey\\Saves}}" Wings of Vi: pageId: 38446 steam: 318530 templates: - - '{{Game data/config|Windows|{{p|game}}\Data\Options.ini}}' - - >- - {{Game data/saves|Windows|{{p|game}}\Data\Globals.ini | {{p|game}}\Data\Save *\buffer.ini | {{p|game}}\Data\Save - *\instant.ini}} + - "{{Game data/config|Windows|{{p|game}}\\Data\\Options.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\Data\\Globals.ini | {{p|game}}\\Data\\Save *\\buffer.ini | {{p|game}}\\Data\\Save *\\instant.ini}}" Wings of Virtus: pageId: 123529 steam: 978920 Wings of War: pageId: 26102 templates: - - '{{Game data/saves|Windows|{{P|game}}\Savegame\}}' + - "{{Game data/saves|Windows|{{P|game}}\\Savegame\\}}" Wings over Europe: pageId: 50159 renamedFrom: @@ -192773,18 +187440,18 @@ Wings! Remastered Edition: pageId: 20675 steam: 320840 templates: - - '{{Game data/saves|Windows|{{p|appdata}}\WingsSaveData}}' + - "{{Game data/saves|Windows|{{p|appdata}}\\WingsSaveData}}" Wingspan: gog: 1404732312 pageId: 145338 steam: 1054490 -'Wingsuit: Gudvangen': +"Wingsuit: Gudvangen": pageId: 136895 steam: 1083260 -'Winions: Mana Champions': +"Winions: Mana Champions": pageId: 90260 steam: 803220 -'Winkeltje: The Little Shop': +"Winkeltje: The Little Shop": gog: 1603921704 pageId: 127836 renamedFrom: @@ -192797,8 +187464,8 @@ Winnie the Pooh: pageId: 38396 steam: 319400 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Disney Interactive Studios\Winnie the Pooh}}' - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Disney Interactive Studios\Winnie the Pooh\savedata}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Disney Interactive Studios\\Winnie the Pooh}}" + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Disney Interactive Studios\\Winnie the Pooh\\savedata}}" Winnie the Pooh in the Hundred Acre Wood: pageId: 147123 Winning Post: @@ -192821,12 +187488,12 @@ Winter Ember: pageId: 165124 steam: 1417880 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\WinterEmber\Saved\Config\WindowsNoEditor}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\WinterEmber\Saved\SaveGames}}' -'Winter Falling: Battle Tactics': + - "{{Game data/config|Windows|{{p|localappdata}}\\WinterEmber\\Saved\\Config\\WindowsNoEditor}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\WinterEmber\\Saved\\SaveGames}}" +"Winter Falling: Battle Tactics": pageId: 182863 steam: 1285060 -'Winter Fury: Longest Road': +"Winter Fury: Longest Road": pageId: 135419 steam: 1033210 Winter Games: @@ -192838,7 +187505,7 @@ Winter Novel: pageId: 35122 steam: 485350 templates: - - '{{Game data/saves|Windows|{{p|game}}\*.bin}}' + - "{{Game data/saves|Windows|{{p|game}}\\*.bin}}" Winter Polaris: pageId: 153398 steam: 1150550 @@ -192848,7 +187515,7 @@ Winter Resort Simulator: Winter Solitaire: pageId: 129698 steam: 1034250 -'Winter Sports 2009: The Next Challenge': +"Winter Sports 2009: The Next Challenge": pageId: 46500 steam: 374090 Winter Sports Games: @@ -192865,20 +187532,20 @@ Winter Voices: - 72907 - 255140 templates: - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Winter Voices\}}' + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Winter Voices\\}}" Winter Warland: pageId: 77946 steam: 724980 Winter Wolves Classic Games Collection: pageId: 74851 steam: 646150 -'Winter Worm, Summer Grass': +"Winter Worm, Summer Grass": pageId: 153446 steam: 1194870 -Winter's Empty Mask - Visual novel: +"Winter's Empty Mask - Visual novel": pageId: 129777 steam: 621170 -Winter's Symphonies: +"Winter's Symphonies": pageId: 125363 steam: 738900 Wintercearig: @@ -192892,28 +187559,26 @@ Wintermoor Tactics Club: pageId: 109898 steam: 917840 templates: - - >- - {{Game data/config|Windows|{{P|userprofile\Documents}}\My - Games\Wintermoor\Saves\PlayerPrefs|{{P|hkcu}}\Software\EVC\Wintermoor Tactics Club\}} - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\My Games\Wintermoor\Saves\*.wtcb}}' + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\My Games\\Wintermoor\\Saves\\PlayerPrefs|{{P|hkcu}}\\Software\\EVC\\Wintermoor Tactics Club\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\My Games\\Wintermoor\\Saves\\*.wtcb}}" Winx Club: pageId: 178792 templates: - - '{{Game data/saves|Windows|{{p|game}}\Media\Saved\}}' + - "{{Game data/saves|Windows|{{p|game}}\\Media\\Saved\\}}" Wipe Out VR: pageId: 55151 steam: 553630 Wipeout: pageId: 77701 templates: - - '{{Game data/config|Windows|{{p|hklm}}\SOFTWARE\{{p|wow64}}\3D Rage Games\Wipeout\}}' - - '{{Game data/saves|Windows|{{P|game}}\*.WSF}}' + - "{{Game data/config|Windows|{{p|hklm}}\\SOFTWARE\\{{p|wow64}}\\3D Rage Games\\Wipeout\\}}" + - "{{Game data/saves|Windows|{{P|game}}\\*.WSF}}" Wipeout 2097: pageId: 27564 templates: - - '{{Game data/config|Windows|{{p|game}}\CONFIG.DAT}}' - - '{{Game data/saves|Windows|{{p|game}}\SAVEGAME.BIN}}' -'Wira & Taksa: Against the Master of Gravity': + - "{{Game data/config|Windows|{{p|game}}\\CONFIG.DAT}}" + - "{{Game data/saves|Windows|{{p|game}}\\SAVEGAME.BIN}}" +"Wira & Taksa: Against the Master of Gravity": pageId: 73659 steam: 710620 Wire Lips: @@ -192926,7 +187591,7 @@ Wired: pageId: 100074 steam: 885470 templates: - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\CUED\Wired03\WiredSaveGames\}}' + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\CUED\\Wired03\\WiredSaveGames\\}}" Wisdom of War: pageId: 63264 steam: 649300 @@ -192937,7 +187602,7 @@ Wish: pageId: 155428 steam: 1207780 templates: - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\MOMENTUMGAMES\Game\*.dat}}' + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\MOMENTUMGAMES\\Game\\*.dat}}" Wish -tale of the sixteenth night of lunar month-: pageId: 36119 steam: 392370 @@ -192951,7 +187616,7 @@ Wishmaster: pageId: 44870 steam: 434010 templates: - - '{{Game data/saves|Windows|{{p|localappdata}}\Wishmaster\}}' + - "{{Game data/saves|Windows|{{p|localappdata}}\\Wishmaster\\}}" Wishmere: pageId: 45264 steam: 419020 @@ -192961,7 +187626,7 @@ Wissen Heroes: Witan: pageId: 42418 steam: 486490 -'Witanlore: Dreamtime': +"Witanlore: Dreamtime": pageId: 56890 steam: 554570 Witch: @@ -192986,25 +187651,25 @@ Witch Hunt: pageId: 69100 steam: 661790 templates: - - '{{Game data/config|Windows|{{P|userprofile}}\AppData\LocalLow\Andrii Vintsevych\Witch Hunt}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Andrii Vintsevych\Witch Hunt\}}' -'Witch Hunters: Full Moon Ceremony': + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Andrii Vintsevych\\Witch Hunt}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Andrii Vintsevych\\Witch Hunt\\}}" +"Witch Hunters: Full Moon Ceremony": pageId: 73887 renamedFrom: - - 'Witch Hunters: Full Moon Ceremony Collector''s Edition' + - "Witch Hunters: Full Moon Ceremony Collector's Edition" steam: 729950 -'Witch Hunters: Stolen Beauty': +"Witch Hunters: Stolen Beauty": pageId: 58366 renamedFrom: - - 'Witch Hunters: Stolen Beauty Collector''s Edition' + - "Witch Hunters: Stolen Beauty Collector's Edition" steam: 597280 Witch It: pageId: 55301 steam: 559650 templates: - - '{{Game data/config|Windows|{{p|LOCALAPPDATA}}\WitchIt\Saved\Config\WindowsNoEditor}}' - - '{{Game data/saves|Windows|{{p|LOCALAPPDATA}}\WitchIt\Saved\SaveGames}}' -Witch Loraine's Death Game: + - "{{Game data/config|Windows|{{p|LOCALAPPDATA}}\\WitchIt\\Saved\\Config\\WindowsNoEditor}}" + - "{{Game data/saves|Windows|{{p|LOCALAPPDATA}}\\WitchIt\\Saved\\SaveGames}}" +"Witch Loraine's Death Game": pageId: 150071 steam: 1169870 Witch Ring Meister: @@ -193019,7 +187684,7 @@ Witch Thief: Witch and Hero: pageId: 43450 steam: 434130 -Witch n' Wiz: +"Witch n' Wiz": pageId: 173307 Witch of Ice Kingdom II: pageId: 56044 @@ -193036,12 +187701,12 @@ Witch on the Holy Night (2023): renamedFrom: - Witch on the Holy Night steam: 2052410 -'Witch''s Pranks: Frog''s Fortune': +"Witch's Pranks: Frog's Fortune": pageId: 48957 renamedFrom: - - 'Witch''s Pranks: Frog''s Fortune Collector''s Edition' + - "Witch's Pranks: Frog's Fortune Collector's Edition" steam: 342630 -Witch's Tales: +"Witch's Tales": pageId: 120771 steam: 953170 Witch-Bot Meglilo: @@ -193055,35 +187720,22 @@ Witchaven: pageId: 80105 steam: 1655410 templates: - - |- - {{Game data/config|DOS| - {{p|game}}\PREF.DAT| - {{p|game}}\SETUP.DAT| - {{p|game}}\SETUP.INI|}} - - |- - {{Game data/saves|DOS| - {{p|game}}\SVGM*.MAP| - {{p|game}}\SVGN*.DAT}} -'Witchaven II: Blood Vengeance': + - "{{Game data/config|DOS|\n{{p|game}}\\PREF.DAT|\n{{p|game}}\\SETUP.DAT|\n{{p|game}}\\SETUP.INI|}}" + - "{{Game data/saves|DOS|\n{{p|game}}\\SVGM*.MAP|\n{{p|game}}\\SVGN*.DAT}}" +"Witchaven II: Blood Vengeance": gog: 1073977251 pageId: 80109 steam: 1655430 templates: - - |- - {{Game data/config|DOS| - {{p|game}}\PREF.DAT| - {{p|game}}\CONTROLS.CFG|}} - - |- - {{Game data/saves|DOS| - {{p|game}}\SVGM*.MAP| - {{p|game}}\SVGN*.DAT}} + - "{{Game data/config|DOS|\n{{p|game}}\\PREF.DAT|\n{{p|game}}\\CONTROLS.CFG|}}" + - "{{Game data/saves|DOS|\n{{p|game}}\\SVGM*.MAP|\n{{p|game}}\\SVGN*.DAT}}" Witchball: pageId: 79143 steam: 768580 Witchcraft: pageId: 74584 steam: 577000 -'Witchcraft: Pandoras Box': +"Witchcraft: Pandoras Box": pageId: 153665 steam: 1203400 Witchcrafty: @@ -193091,29 +187743,29 @@ Witchcrafty: pageId: 142141 steam: 1122280 templates: - - '{{Game data/saves|Windows|{{p|game}}\witchy_Data\Saves\*.pidg}}' + - "{{Game data/saves|Windows|{{p|game}}\\witchy_Data\\Saves\\*.pidg}}" Witches Brew: pageId: 142293 steam: 1008230 -'Witches'' Legacy: Hunter and the Hunted': +"Witches' Legacy: Hunter and the Hunted": pageId: 88784 steam: 815570 -'Witches'' Legacy: Lair of the Witch Queen': +"Witches' Legacy: Lair of the Witch Queen": pageId: 112820 steam: 941000 -'Witches'' Legacy: Slumbering Darkness': +"Witches' Legacy: Slumbering Darkness": pageId: 57317 steam: 586710 -'Witches'' Legacy: The Charleston Curse': +"Witches' Legacy: The Charleston Curse": pageId: 134458 steam: 1074700 -'Witches'' Legacy: The Dark Throne': +"Witches' Legacy: The Dark Throne": pageId: 69452 steam: 696000 -'Witches'' Legacy: The Ties That Bind': +"Witches' Legacy: The Ties That Bind": pageId: 35236 steam: 466100 -'Witches, Heroes and Magic': +"Witches, Heroes and Magic": pageId: 47443 steam: 378510 Witcheye: @@ -193125,8 +187777,8 @@ Witching Tower: pageId: 89650 steam: 800200 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\WitchingTower\Saved\Config\WindowsNoEditor}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\WitchingTower\Saved\SaveGames}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\WitchingTower\\Saved\\Config\\WindowsNoEditor}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\WitchingTower\\Saved\\SaveGames}}" Witchinour: pageId: 63169 steam: 620900 @@ -193136,13 +187788,13 @@ Witchkin: With Loneliness: pageId: 132582 steam: 1030470 -'Withering Kingdom: Arcane War': +"Withering Kingdom: Arcane War": pageId: 34978 steam: 473650 -'Withering Kingdom: Flurry of Arrows': +"Withering Kingdom: Flurry of Arrows": pageId: 36706 steam: 516230 -'Within Whispers: The Fall': +"Within Whispers: The Fall": pageId: 70393 steam: 698360 Within a Rose: @@ -193158,47 +187810,37 @@ Without Escape: pageId: 73025 steam: 720730 templates: - - '{{Game data/config|Windows|{{p|USERPROFILE}}\AppData\LocalLow\Bumpy Trail Games\Without Escape\Settings.json}}' - - '{{Game data/saves|Windows|{{p|USERPROFILE}}\AppData\LocalLow\Bumpy Trail Games\Without Escape\WithoutEscape.sav}}' + - "{{Game data/config|Windows|{{p|USERPROFILE}}\\AppData\\LocalLow\\Bumpy Trail Games\\Without Escape\\Settings.json}}" + - "{{Game data/saves|Windows|{{p|USERPROFILE}}\\AppData\\LocalLow\\Bumpy Trail Games\\Without Escape\\WithoutEscape.sav}}" Without Within: pageId: 38041 steam: 345650 templates: - - '{{Game data/config|Windows|{{p|game}}\renpy\config.py}}' - - >- - {{Game data/saves|Windows|{{P|appdata}}\RenPy\without-within-1409958485\ (Manual and Auto)|{{p|game}}\game\saves\ - (Manual and Quick)}} + - "{{Game data/config|Windows|{{p|game}}\\renpy\\config.py}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\RenPy\\without-within-1409958485\\ (Manual and Auto)|{{p|game}}\\game\\saves\\ (Manual and Quick)}}" Without Within 2: pageId: 37988 steam: 398980 templates: - - |- - {{Game data/config|Windows|{{P|appdata}}\RenPy\wowi2-1409958485\persistent| - {{P|game}}\saves\persistent (Copy)}} - - |- - {{Game data/saves|Windows|{{P|appdata}}\RenPy\wowi2-1409958485\*.save| - {{P|game}}\saves\*.save (Copies)}} + - "{{Game data/config|Windows|{{P|appdata}}\\RenPy\\wowi2-1409958485\\persistent|\n{{P|game}}\\saves\\persistent (Copy)}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\RenPy\\wowi2-1409958485\\*.save|\n{{P|game}}\\saves\\*.save (Copies)}}" Without Within 3: pageId: 92269 steam: 676130 templates: - - |- - {{Game data/config|Windows|{{P|game}}\game\saves\persistent| - {{P|appdata}}\RenPy\wowi3-1409958485\persistent}} - - |- - {{Game data/saves|Windows|{{P|game}}\game\saves\*.save| - {{P|appdata}}\RenPy\wowi3-1409958485\*.save}} -'Withstand: Apotheosis': + - "{{Game data/config|Windows|{{P|game}}\\game\\saves\\persistent|\n{{P|appdata}}\\RenPy\\wowi3-1409958485\\persistent}}" + - "{{Game data/saves|Windows|{{P|game}}\\game\\saves\\*.save|\n{{P|appdata}}\\RenPy\\wowi3-1409958485\\*.save}}" +"Withstand: Apotheosis": pageId: 47017 steam: 366600 -'Withstand: Survival': +"Withstand: Survival": pageId: 154200 steam: 1193100 Wizard And Minion Idle: pageId: 127373 steam: 1011510 templates: - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Oninou\Wizard and Minion Idle\WAMISave.txt}}' + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Oninou\\Wizard and Minion Idle\\WAMISave.txt}}" Wizard Battle: pageId: 144554 steam: 1126020 @@ -193227,43 +187869,37 @@ Wizard Warfare: Wizard Wars: pageId: 75251 templates: - - '{{Game data/config|DOS|{{p|game}}\WW.CFG}}' - - '{{Game data/saves|DOS|{{p|game}}\********}}' + - "{{Game data/config|DOS|{{p|game}}\\WW.CFG}}" + - "{{Game data/saves|DOS|{{p|game}}\\********}}" Wizard Warz: pageId: 75249 templates: - - '{{Game data/saves|DOS|{{p|game}}\HISCORE.TBL}}' + - "{{Game data/saves|DOS|{{p|game}}\\HISCORE.TBL}}" Wizard of Legend: gog: 2061814323 pageId: 38716 steam: 445980 templates: - - >- - {{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\Contingent99\Wizard of - Legend\{{p|uid}}\GameSettings.gs|{{P|hkcu}}\Software\Contingent99\Wizard of Legend\}} - - >- - {{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/unity.Contingent99.Wizard of - Legend/GameSettings.gs}} - - '{{Game data/config|Linux|{{p|xdgconfighome}}/unity3d/Contingent99/Wizard of Legend/prefs}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Contingent99\Wizard of Legend\{{p|uid}}\GameData.gd}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/unity.Contingent99.Wizard of Legend/GameData.gd}}' - - '{{Game data/saves|Linux|{{p|xdgconfighome}}/unity3d/Contingent99/Wizard of Legend/{{p|uid}}/}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Contingent99\\Wizard of Legend\\{{p|uid}}\\GameSettings.gs|{{P|hkcu}}\\Software\\Contingent99\\Wizard of Legend\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/unity.Contingent99.Wizard of Legend/GameSettings.gs}}" + - "{{Game data/config|Linux|{{p|xdgconfighome}}/unity3d/Contingent99/Wizard of Legend/prefs}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Contingent99\\Wizard of Legend\\{{p|uid}}\\GameData.gd}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/unity.Contingent99.Wizard of Legend/GameData.gd}}" + - "{{Game data/saves|Linux|{{p|xdgconfighome}}/unity3d/Contingent99/Wizard of Legend/{{p|uid}}/}}" Wizard with a Gun: gog: 1995982708 pageId: 173538 steam: 1150530 templates: - - >- - {{Game - data/saves|Windows|{{p|userprofile\appdata\locallow}}\GalvanicGames\wizardwithagun\{{P|uid}}\DisplaySettings}} -Wizard's Crown: + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\GalvanicGames\\wizardwithagun\\{{P|uid}}\\DisplaySettings}}" +"Wizard's Crown": gog: 1718928173 pageId: 173446 Wizard101: pageId: 108876 steam: 799960 templates: - - '{{Game data/config|Windows|{{folder|{{p|game}}}}/Bin/config.xml}}' + - "{{Game data/config|Windows|{{folder|{{p|game}}}}/Bin/config.xml}}" WizardChess: pageId: 187038 steam: 1274210 @@ -193276,7 +187912,7 @@ WizardCraft Colonies: Wizardas: pageId: 134558 steam: 1055280 -'Wizardians: In Defence of Magic': +"Wizardians: In Defence of Magic": pageId: 157434 steam: 1173420 Wizardpunk: @@ -193287,8 +187923,8 @@ Wizardry 8: pageId: 9778 steam: 245450 templates: - - '{{Game data/config|Windows|{{p|game}}\*.CFG}}' - - '{{Game data/saves|Windows|{{p|game}}\Saves}}' + - "{{Game data/config|Windows|{{p|game}}\\*.CFG}}" + - "{{Game data/saves|Windows|{{p|game}}\\Saves}}" Wizardry Gold: gog: 1207662783 gogSide: @@ -193296,80 +187932,80 @@ Wizardry Gold: pageId: 9780 steam: 245430 templates: - - '{{Game data/config|Windows|{{p|game}}\CDDATA.INI}}' - - '{{Game data/saves|Windows|{{p|game}}\*.SGM}}' -'Wizardry V: Heart of the Maelstrom': + - "{{Game data/config|Windows|{{p|game}}\\CDDATA.INI}}" + - "{{Game data/saves|Windows|{{p|game}}\\*.SGM}}" +"Wizardry V: Heart of the Maelstrom": pageId: 75827 templates: - - '{{Game data/saves|PC booter|A:\|B:\}}' - - '{{Game data/saves|DOS|{{p|game}}\SAVE5.DSK}}' -'Wizardry: Bane of the Cosmic Forge': + - "{{Game data/saves|PC booter|A:\\|B:\\}}" + - "{{Game data/saves|DOS|{{p|game}}\\SAVE5.DSK}}" +"Wizardry: Bane of the Cosmic Forge": gog: 1207662763 gogSide: - 1207659229 pageId: 9826 steam: 245410 templates: - - '{{Game data/config|DOS|{{p|game}}\SCENARIO.HDR}}' - - '{{Game data/saves|DOS|{{p|game}}\*.DBS}}' -'Wizardry: Crusaders of the Dark Savant': + - "{{Game data/config|DOS|{{p|game}}\\SCENARIO.HDR}}" + - "{{Game data/saves|DOS|{{p|game}}\\*.DBS}}" +"Wizardry: Crusaders of the Dark Savant": gog: 1207662783 gogSide: - 1207659229 pageId: 9823 steam: 245430 templates: - - '{{Game data/config|DOS|{{p|game}}\SCENARIO.HDR}}' - - '{{Game data/saves|DOS|{{p|game}}\SAVEGAME.DBS}}' -'Wizardry: Knight of Diamonds - The Second Scenario': + - "{{Game data/config|DOS|{{p|game}}\\SCENARIO.HDR}}" + - "{{Game data/saves|DOS|{{p|game}}\\SAVEGAME.DBS}}" +"Wizardry: Knight of Diamonds - The Second Scenario": pageId: 75821 templates: - - '{{Game data/saves|PC booter|A:\|B:\}}' - - '{{Game data/saves|DOS|{{p|game}}\SAVE2.DSK}}' -'Wizardry: Labyrinth of Lost Souls': + - "{{Game data/saves|PC booter|A:\\|B:\\}}" + - "{{Game data/saves|DOS|{{p|game}}\\SAVE2.DSK}}" +"Wizardry: Labyrinth of Lost Souls": gog: 1350378876 pageId: 136660 steam: 948640 steamSide: - 1022570 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Wizardry_LoLS}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Wizardry_LoLS}}' -'Wizardry: Legacy of Llylgamyn - The Third Scenario': + - "{{Game data/config|Windows|{{p|localappdata}}\\Wizardry_LoLS}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Wizardry_LoLS}}" +"Wizardry: Legacy of Llylgamyn - The Third Scenario": pageId: 75822 templates: - - '{{Game data/saves|PC booter|A:\|B:\}}' - - '{{Game data/saves|DOS|{{p|game}}\SAVE3.DSK}}' -'Wizardry: Llylgamyn Saga': + - "{{Game data/saves|PC booter|A:\\|B:\\}}" + - "{{Game data/saves|DOS|{{p|game}}\\SAVE3.DSK}}" +"Wizardry: Llylgamyn Saga": pageId: 9828 templates: - - '{{Game data/config|Windows|{{p|game}}\llylsys.dat}}' - - '{{Game data/saves|Windows|{{p|game}}\Llylsave.dat}}' -'Wizardry: Proving Grounds of the Mad Overlord': + - "{{Game data/config|Windows|{{p|game}}\\llylsys.dat}}" + - "{{Game data/saves|Windows|{{p|game}}\\Llylsave.dat}}" +"Wizardry: Proving Grounds of the Mad Overlord": pageId: 75819 templates: - - '{{Game data/saves|PC booter|A:\|B:\}}' - - '{{Game data/saves|DOS|{{p|game}}\SAVE1.DSK}}' -'Wizardry: Proving Grounds of the Mad Overlord (2023)': + - "{{Game data/saves|PC booter|A:\\|B:\\}}" + - "{{Game data/saves|DOS|{{p|game}}\\SAVE1.DSK}}" +"Wizardry: Proving Grounds of the Mad Overlord (2023)": gog: 1511307459 pageId: 189749 steam: 2518960 templates: - - '{{Game data/saves|Windows|{{p|localappdata}}\murphy\Saved\SaveGames\*.sav}}' -'Wizardry: The Five Ordeals': + - "{{Game data/saves|Windows|{{p|localappdata}}\\murphy\\Saved\\SaveGames\\*.sav}}" +"Wizardry: The Five Ordeals": pageId: 173714 steam: 1308700 steamSide: - 1456541 - 1585620 templates: - - '{{Game data/config|Windows|{{p|userprofile\appdata\locallow}}\59Studio\WizardryFoV2\}}' - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\59Studio\WizardryFoV2\savedata\}}' -'Wizardry: The Return of Werdna - The Fourth Scenario': + - "{{Game data/config|Windows|{{p|userprofile\\appdata\\locallow}}\\59Studio\\WizardryFoV2\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\59Studio\\WizardryFoV2\\savedata\\}}" +"Wizardry: The Return of Werdna - The Fourth Scenario": pageId: 75825 templates: - - '{{Game data/saves|PC booter|A:\|B:\}}' - - '{{Game data/saves|DOS|{{p|game}}\SAVE4.DSK}}' + - "{{Game data/saves|PC booter|A:\\|B:\\}}" + - "{{Game data/saves|DOS|{{p|game}}\\SAVE4.DSK}}" Wizards: pageId: 157061 steam: 1163690 @@ -193377,8 +188013,8 @@ Wizards & Warriors: gog: 1266995554 pageId: 131831 templates: - - '{{Game data/config|Windows|{{p|game}}}}' - - '{{Game data/saves|Windows|{{p|game}}/save}}' + - "{{Game data/config|Windows|{{p|game}}}}" + - "{{Game data/saves|Windows|{{p|game}}/save}}" Wizards Tourney: pageId: 111976 steam: 725110 @@ -193388,49 +188024,47 @@ Wizards and Warlords: Wizards of Brandel: pageId: 150365 steam: 1117990 -Wizards' Clash: +"Wizards' Clash": pageId: 46542 steam: 350710 -'Wizards: Home': +"Wizards: Home": pageId: 63765 steam: 459050 -'Wizards: Wand of Epicosity': +"Wizards: Wand of Epicosity": pageId: 162435 renamedFrom: - - 'Tobuscus Adventures: Wizards' + - "Tobuscus Adventures: Wizards" steam: 772750 Wizhood: pageId: 64789 steam: 662640 -'Wizhood: The Epic of Freedom': +"Wizhood: The Epic of Freedom": pageId: 144671 steam: 1125620 Wizorb: pageId: 5074 steam: 207420 templates: - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Tribute Games/Wizorb/}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/Tribute Games/Wizorb/}}' - - '{{Game data/config|Steam|{{p|steam}}/userdata/{{p|uid}}/207420/}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Tribute Games/Wizorb/}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/Tribute Games/Wizorb/}}' - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/207420/}}' -'Wizrogue: Labyrinth of Wizardry': + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Tribute Games/Wizorb/}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/Tribute Games/Wizorb/}}" + - "{{Game data/config|Steam|{{p|steam}}/userdata/{{p|uid}}/207420/}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Tribute Games/Wizorb/}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/Tribute Games/Wizorb/}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/207420/}}" +"Wizrogue: Labyrinth of Wizardry": pageId: 56685 steam: 494320 WizzBall: pageId: 77839 steam: 629780 -'Wo Long: Fallen Dynasty': +"Wo Long: Fallen Dynasty": pageId: 178271 steam: 1448440 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\KoeiTecmo\Wolong\Savedata\{{P|uid}}\SYSTEMSAVEDATA00\}}' - - '{{Game data/config|Microsoft Store|{{P|userprofile\Documents}}\KoeiTecmo\Wolong\Savedata\}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\KoeiTecmo\Wolong\Savedata\{{P|uid}}\SAVEDATA00}}' - - >- - {{Game data/saves|Microsoft - Store|{{p|localappdata}}\Packages\946B6A6E.WoLongFallenDynasty_dkffhzhmh6pmy\SystemAppData\wgs\}} + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\KoeiTecmo\\Wolong\\Savedata\\{{P|uid}}\\SYSTEMSAVEDATA00\\}}" + - "{{Game data/config|Microsoft Store|{{P|userprofile\\Documents}}\\KoeiTecmo\\Wolong\\Savedata\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\KoeiTecmo\\Wolong\\Savedata\\{{P|uid}}\\SAVEDATA00}}" + - "{{Game data/saves|Microsoft Store|{{p|localappdata}}\\Packages\\946B6A6E.WoLongFallenDynasty_dkffhzhmh6pmy\\SystemAppData\\wgs\\}}" Wo Yao Da: pageId: 71841 steam: 636960 @@ -193444,8 +188078,8 @@ Woah Dave!: pageId: 49422 steam: 315110 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Woah Dave!\Settings.plist}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Woah Dave!\Settings.plist}}' + - "{{Game data/config|Windows|{{p|appdata}}\\Woah Dave!\\Settings.plist}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Woah Dave!\\Settings.plist}}" Wobbledogs: pageId: 177804 steam: 1424330 @@ -193461,13 +188095,13 @@ Wojak Rush: Wojdan: pageId: 56348 steam: 573050 -'Wolcen: Lords of Mayhem': +"Wolcen: Lords of Mayhem": gog: 1458655673 pageId: 34214 steam: 424370 templates: - - '{{Game data/config|Windows|{{P|steam}}/steamapps/common/wolcen/system.cfg}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\Saved Games\wolcen\savegames\}}' + - "{{Game data/config|Windows|{{P|steam}}/steamapps/common/wolcen/system.cfg}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\Saved Games\\wolcen\\savegames\\}}" Wolf & Pigs: pageId: 153720 steam: 1198810 @@ -193490,16 +188124,16 @@ Wolf Tails: pageId: 92710 steam: 822930 templates: - - '{{Game data/saves|Windows|{{p|game}}\game\saves}}' + - "{{Game data/saves|Windows|{{p|game}}\\game\\saves}}" Wolf Team: pageId: 152364 Wolf or Boy: pageId: 134986 steam: 1030330 -Wolf's Fury: +"Wolf's Fury": pageId: 134466 steam: 619270 -'Wolf: The Evolution Story': +"Wolf: The Evolution Story": pageId: 108360 steam: 914630 WolfPack (1990): @@ -193507,7 +188141,7 @@ WolfPack (1990): WolfQuest: pageId: 38205 steam: 431180 -'WolfQuest: Anniversary Edition': +"WolfQuest: Anniversary Edition": pageId: 141361 steam: 926990 WolfWars: @@ -193517,96 +188151,80 @@ Wolfenstein: pageId: 16826 steam: 10170 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\id Software\WolfSP\base\}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\id Software\WolfSP\base\savegames\}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\id Software\\WolfSP\\base\\}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\id Software\\WolfSP\\base\\savegames\\}}" Wolfenstein 3D: gog: 1441705226 gogSide: - - 1778420505 - 1441705046 + - 1778420505 pageId: 3190 steam: 2270 templates: - - '{{Game data/config|DOS|{{p|game}}\}}' - - '{{Game data/saves|DOS|{{p|game}}\SAVEGAM*.WL6}}' -'Wolfenstein II: The New Colossus': + - "{{Game data/config|DOS|{{p|game}}\\}}" + - "{{Game data/saves|DOS|{{p|game}}\\SAVEGAM*.WL6}}" +"Wolfenstein II: The New Colossus": gog: 1320703337 gogSide: - - 1847884051 - - 1285433790 - - 1207466888 - - 1463694576 - - 1982055340 - 1150422934 + - 1207466888 + - 1285433790 + - 1463694576 - 1615271665 + - 1847884051 + - 1982055340 pageId: 63522 steam: 612880 steamSide: - - 650500 - - 754730 - 624620 - 624621 - 624622 - 624740 - 650410 + - 650500 + - 754730 templates: - - >- - {{Game data/config|Windows|{{p|userprofile}}\Saved Games\MachineGames\Wolfenstein II The New - Colossus\base\Wolfenstein II The New ColossusConfig.cfg}} - - >- - {{Game data/saves|Windows|{{p|userprofile}}\Saved Games\MachineGames\Wolfenstein II The New - Colossus\base\savegame.user}} -'Wolfenstein: Cyberpilot': + - "{{Game data/config|Windows|{{p|userprofile}}\\Saved Games\\MachineGames\\Wolfenstein II The New Colossus\\base\\Wolfenstein II The New ColossusConfig.cfg}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Saved Games\\MachineGames\\Wolfenstein II The New Colossus\\base\\savegame.user}}" +"Wolfenstein: Cyberpilot": pageId: 131596 steam: 1056970 templates: - - >- - {{Game data/config|Windows|{{p|userprofile}}\Saved Games\Arkane Studios\Wolfenstein Cyberpilot\base\Wolfenstein - CyberpilotConfig.local}} - - >- - {{Game data/saves|Windows|{{p|userprofile}}\Saved Games\Arkane Studios\Wolfenstein - Cyberpilot\base\savegame.user\}} -'Wolfenstein: Enemy Territory': + - "{{Game data/config|Windows|{{p|userprofile}}\\Saved Games\\Arkane Studios\\Wolfenstein Cyberpilot\\base\\Wolfenstein CyberpilotConfig.local}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Saved Games\\Arkane Studios\\Wolfenstein Cyberpilot\\base\\savegame.user\\}}" +"Wolfenstein: Enemy Territory": gog: 1126166849 pageId: 776 steam: 1873030 templates: - - '{{Game data/config|Windows|{{p|game}}\etmain|{{p|localappdata}}\PunkBuster\ET\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Wolfenstein ET/}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.etwolf/}}' -'Wolfenstein: The New Order': + - "{{Game data/config|Windows|{{p|game}}\\etmain|{{p|localappdata}}\\PunkBuster\\ET\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Wolfenstein ET/}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.etwolf/}}" +"Wolfenstein: The New Order": gog: 1943729964 pageId: 9388 steam: 201810 steamSide: - 288570 templates: - - >- - {{Game data/config|Windows|{{p|userprofile}}\Saved Games\MachineGames\Wolfenstein The New - Order\base\wolfConfig.cfg}} - - '{{Game data/saves|Windows|{{p|userprofile}}\Saved Games\MachineGames\Wolfenstein The New Order\base\savegame\}}' -'Wolfenstein: The Old Blood': + - "{{Game data/config|Windows|{{p|userprofile}}\\Saved Games\\MachineGames\\Wolfenstein The New Order\\base\\wolfConfig.cfg}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Saved Games\\MachineGames\\Wolfenstein The New Order\\base\\savegame\\}}" +"Wolfenstein: The Old Blood": gog: 1961572821 pageId: 23530 steam: 350080 steamSide: - 354830 templates: - - >- - {{Game data/config|Windows|{{p|userprofile}}\Saved Games\MachineGames\Wolfenstein The Old - Blood\base\wolftobConfig.cfg}} - - '{{Game data/saves|Windows|{{p|userprofile}}\Saved Games\MachineGames\Wolfenstein The Old Blood\base\savegame\}}' -'Wolfenstein: Youngblood': + - "{{Game data/config|Windows|{{p|userprofile}}\\Saved Games\\MachineGames\\Wolfenstein The Old Blood\\base\\wolftobConfig.cfg}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Saved Games\\MachineGames\\Wolfenstein The Old Blood\\base\\savegame\\}}" +"Wolfenstein: Youngblood": pageId: 107394 steam: 1056960 templates: - - '{{Game data/config|Windows|{{p|USERPROFILE}}\Saved Games\MachineGames\Wolfenstein Youngblood\base}}' - - >- - {{Game data/saves|Windows|{{p|USERPROFILE}}\Saved Games\MachineGames\Wolfenstein - Youngblood\base\savegame.user\{{p|UID}}\}} - - >- - {{Game data/saves|Microsoft Store|{{p|USERPROFILE}}\Saved Games\MachineGames\Wolfenstein - Youngblood\base\savegame.xbuser\{{p|UID}}\}} + - "{{Game data/config|Windows|{{p|USERPROFILE}}\\Saved Games\\MachineGames\\Wolfenstein Youngblood\\base}}" + - "{{Game data/saves|Windows|{{p|USERPROFILE}}\\Saved Games\\MachineGames\\Wolfenstein Youngblood\\base\\savegame.user\\{{p|UID}}\\}}" + - "{{Game data/saves|Microsoft Store|{{p|USERPROFILE}}\\Saved Games\\MachineGames\\Wolfenstein Youngblood\\base\\savegame.xbuser\\{{p|UID}}\\}}" Wolfgate: pageId: 136430 steam: 1059470 @@ -193633,25 +188251,25 @@ Wolfstride: Wolves Team: pageId: 149799 steam: 1145580 -Woman's Prison: +"Woman's Prison": pageId: 176130 steam: 1527980 -Woman's body: +"Woman's body": pageId: 146048 steam: 981160 -'Woman''s body: For adults': +"Woman's body: For adults": pageId: 145959 steam: 1027230 -'Woman''s body: For adults 2': +"Woman's body: For adults 2": pageId: 152805 steam: 1192740 Womb Room: pageId: 43813 steam: 426010 -Women's Soccer Manager: +"Women's Soccer Manager": pageId: 96259 steam: 850230 -Won't You Be My Laser?: +"Won't You Be My Laser?": pageId: 37006 steam: 508820 Wondee: @@ -193660,16 +188278,12 @@ Wondee: Wonder Blade: pageId: 132682 steam: 1040090 -'Wonder Boy III: Monster Lair': +"Wonder Boy III: Monster Lair": pageId: 30726 steam: 71168 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\SEGA Mega Drive - Classics\setup.dat|{{p|userprofile\Documents}}\SEGA Genesis Classics\setup.dat}} - - >- - {{Game data/saves|Windows|{{p|userprofile\Documents}}\SEGA Mega Drive - Classics\0045\|{{p|userprofile\Documents}}\SEGA Genesis Classics\0045\}} + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\SEGA Mega Drive Classics\\setup.dat|{{p|userprofile\\Documents}}\\SEGA Genesis Classics\\setup.dat}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\SEGA Mega Drive Classics\\0045\\|{{p|userprofile\\Documents}}\\SEGA Genesis Classics\\0045\\}}" Wonder Boy Returns: pageId: 51732 steam: 523810 @@ -193680,31 +188294,27 @@ Wonder Boy in Monster World: pageId: 30729 steam: 211209 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\SEGA Mega Drive - Classics\setup.dat|{{p|userprofile\Documents}}\SEGA Genesis Classics\setup.dat}} - - >- - {{Game data/saves|Windows|{{p|userprofile\Documents}}\SEGA Mega Drive - Classics\0057\|{{p|userprofile\Documents}}\SEGA Genesis Classics\0057\}} -'Wonder Boy: Asha in Monster World': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\SEGA Mega Drive Classics\\setup.dat|{{p|userprofile\\Documents}}\\SEGA Genesis Classics\\setup.dat}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\SEGA Mega Drive Classics\\0057\\|{{p|userprofile\\Documents}}\\SEGA Genesis Classics\\0057\\}}" +"Wonder Boy: Asha in Monster World": pageId: 168249 steam: 1420080 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\SOFTWARE\G CHOICE/STUDIOARTDINK\MW4}}' - - '{{Game data/saves|Windows|{{p|game}}\MW4_Data\SaveData\}}' -'Wonder Boy: The Dragon''s Trap': + - "{{Game data/config|Windows|{{P|hkcu}}\\SOFTWARE\\G CHOICE/STUDIOARTDINK\\MW4}}" + - "{{Game data/saves|Windows|{{p|game}}\\MW4_Data\\SaveData\\}}" +"Wonder Boy: The Dragon's Trap": gog: 1606234979 pageId: 58486 steam: 543260 templates: - - '{{Game data/config|Windows|{{p|game}}\bin_pc\config\}}' - - '{{Game data/config|Epic Games Store|{{p|localappdata}}\Lizardcube\The Dragon''s Trap\Settings.cfg}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Lizardcube/The Dragon''s Trap/}}' - - '{{Game data/config|Linux|{{p|xdgconfighome}}/Lizardcube/The Dragon''s Trap/}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Lizardcube\The Dragon''s Trap\}}' - - '{{Game data/saves|Epic Games Store|{{p|localappdata}}\Lizardcube\The Dragon''s Trap\GameSlot0*.sav}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Lizardcube/The Dragon''s Trap/}}' - - '{{Game data/saves|Linux|{{p|xdgdatahome}}/Lizardcube/The Dragon''s Trap/}}' + - "{{Game data/config|Windows|{{p|game}}\\bin_pc\\config\\}}" + - "{{Game data/config|Epic Games Store|{{p|localappdata}}\\Lizardcube\\The Dragon's Trap\\Settings.cfg}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Lizardcube/The Dragon's Trap/}}" + - "{{Game data/config|Linux|{{p|xdgconfighome}}/Lizardcube/The Dragon's Trap/}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Lizardcube\\The Dragon's Trap\\}}" + - "{{Game data/saves|Epic Games Store|{{p|localappdata}}\\Lizardcube\\The Dragon's Trap\\GameSlot0*.sav}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Lizardcube/The Dragon's Trap/}}" + - "{{Game data/saves|Linux|{{p|xdgdatahome}}/Lizardcube/The Dragon's Trap/}}" Wonder Cat: pageId: 157422 steam: 1193290 @@ -193720,15 +188330,13 @@ Wonder Wickets: WonderCat Adventures: pageId: 46484 steam: 384120 -'Wonderbox: The Adventure Maker': +"Wonderbox: The Adventure Maker": pageId: 163898 Wonderful Everyday Down the Rabbit-Hole: pageId: 66832 steam: 658620 templates: - - >- - {{Game data/saves|Windows|{{p|game}}\UserData\|{{p|steam}}\steamapps\common\Wonderful Everyday Down the - Rabbit-Hole\UserData\}} + - "{{Game data/saves|Windows|{{p|game}}\\UserData\\|{{p|steam}}\\steamapps\\common\\Wonderful Everyday Down the Rabbit-Hole\\UserData\\}}" Wonderland Trails: pageId: 114738 steam: 947310 @@ -193741,7 +188349,7 @@ Wondershot: Wonfourn: pageId: 66721 steam: 655980 -'Wonhon: A Vengeful Spirit': +"Wonhon: A Vengeful Spirit": pageId: 179501 steam: 1294340 Wonky Pigeon!: @@ -193750,7 +188358,7 @@ Wonky Pigeon!: Wonky Ship: pageId: 75566 steam: 742630 -Wood 'n Stones: +"Wood 'n Stones": pageId: 150701 steam: 1118470 WoodZone: @@ -193774,7 +188382,7 @@ Wooden Battles: Wooden Floor: pageId: 48697 steam: 348790 -'Wooden Floor 2: Resurrection': +"Wooden Floor 2: Resurrection": pageId: 45029 steam: 433790 Wooden House: @@ -193790,33 +188398,33 @@ Wooden Sensey: pageId: 15441 steam: 259830 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Upper Byte\Wooden Sen''SeY\}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Upper Byte\Wooden Sen''Sey\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Upper Byte/Wooden Sen_Sey/}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Upper Byte/Wooden Sen_Sey/}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Upper Byte\\Wooden Sen'SeY\\}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Upper Byte\\Wooden Sen'Sey\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Upper Byte/Wooden Sen_Sey/}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Upper Byte/Wooden Sen_Sey/}}" Woodfel: pageId: 145371 steam: 985240 Woodlands: pageId: 62982 steam: 646100 -'Woodle Tree 2: Deluxe+': +"Woodle Tree 2: Deluxe+": pageId: 153730 steam: 1173740 -'Woodle Tree 2: Worlds': +"Woodle Tree 2: Worlds": pageId: 37596 steam: 495350 Woodle Tree Adventures: pageId: 18589 steam: 299460 templates: - - '{{Game data/saves|Windows|{{p|hkcu}}\Software\Administrator\WoodleTree}}' + - "{{Game data/saves|Windows|{{p|hkcu}}\\Software\\Administrator\\WoodleTree}}" Woodlock Manor: pageId: 180330 steam: 2061510 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\GhotiGames\WoodlockManor}}' - - '{{Game data/saves|Windows|{{P|hkcu}}\Software\GhotiGames\WoodlockManor}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\GhotiGames\\WoodlockManor}}" + - "{{Game data/saves|Windows|{{P|hkcu}}\\Software\\GhotiGames\\WoodlockManor}}" Woodpunk: pageId: 98612 steam: 878420 @@ -193835,12 +188443,12 @@ Woodwork Simulator: Woody Blox: pageId: 74658 steam: 732550 -'Woody Two-Legs: Attack of the Zombie Pirates': +"Woody Two-Legs: Attack of the Zombie Pirates": pageId: 41056 steam: 49320 Woody Woodpecker Racing: pageId: 170218 -'Woody Woodpecker: Escape from Buzz Buzzard Park': +"Woody Woodpecker: Escape from Buzz Buzzard Park": pageId: 170164 renamedFrom: - Woody Woodpecker Escape From Buzz Buzzard Park @@ -193851,8 +188459,8 @@ Woolfe - The Red Hood Diaries: pageId: 24115 steam: 281940 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\WoolfeTRHD\WoolfeGame\Config}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\WoolfeTRHD\Saves\{{p|uid}}\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\WoolfeTRHD\\WoolfeGame\\Config}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\WoolfeTRHD\\Saves\\{{p|uid}}\\}}" WoozyHero 乌贼英雄: pageId: 140906 steam: 1052150 @@ -193864,10 +188472,10 @@ Word Connect Fun!: Word Forward: pageId: 144437 steam: 1117360 -'Word Killer: Revolution': +"Word Killer: Revolution": pageId: 55831 steam: 574630 -'Word Killer: Zorgilonian Chronicles': +"Word Killer: Zorgilonian Chronicles": pageId: 55750 steam: 574620 Word Laces: @@ -193876,18 +188484,18 @@ Word Rescue: pageId: 30443 steam: 358340 templates: - - '{{Game data/saves|DOS|{{p|game}}\*.WR1}}' + - "{{Game data/saves|DOS|{{p|game}}\\*.WR1}}" Word Rescue Plus: pageId: 35870 templates: - - '{{Game data/saves|DOS|C:\REDWOOD\*.WR}}' + - "{{Game data/saves|DOS|C:\\REDWOOD\\*.WR}}" Word Typing Game: pageId: 90556 steam: 820320 -'Word Wonders: The Tower of Babel': +"Word Wonders: The Tower of Babel": pageId: 47972 steam: 362790 -'WordKiller: Revolution': +"WordKiller: Revolution": pageId: 135105 steam: 1076780 Wordabeasts: @@ -193899,7 +188507,7 @@ Wordlase: pageId: 60470 steam: 602930 templates: - - '{{Game data/saves|Windows|{{p|game}}\save\*.sav | {{p|game}}\save\*.save}}' + - "{{Game data/saves|Windows|{{p|game}}\\save\\*.sav | {{p|game}}\\save\\*.save}}" Words Cannot Convey: pageId: 103773 steam: 897270 @@ -193909,15 +188517,15 @@ Words for Evil: Work girl打工妹日记: pageId: 153056 steam: 1159990 -'Workers & Resources: Soviet Republic': +"Workers & Resources: Soviet Republic": gog: 1860281269 pageId: 95089 steam: 784150 steamSide: - 1948180 templates: - - '{{Game data/config|Windows|{{p|game}}\media_soviet\config.ini|{{p|game}}\media_soviet\controls.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\media_soviet\save}}' + - "{{Game data/config|Windows|{{p|game}}\\media_soviet\\config.ini|{{p|game}}\\media_soviet\\controls.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\media_soviet\\save}}" Workhard: pageId: 144777 steam: 1138280 @@ -193926,8 +188534,8 @@ Workshop Simulator: pageId: 175497 steam: 1650550 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\WS2020\Saved\Config\WindowsNoEditor}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\WS2020\Saved\SaveGames}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\WS2020\\Saved\\Config\\WindowsNoEditor}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\WS2020\\Saved\\SaveGames}}" World Apart: pageId: 77877 steam: 762380 @@ -193959,7 +188567,7 @@ World Championship Rugby: World Circuit Boxing: pageId: 79652 steam: 724480 -'World Defense: A Fragmented Reality Game': +"World Defense: A Fragmented Reality Game": pageId: 44249 steam: 372430 World Destroyers: @@ -193970,21 +188578,21 @@ World End Economica Episode.01: pageId: 33674 steam: 269250 templates: - - '{{Game data/saves|Windows|{{p|game}}\WEE1 HD\save}}' - - '{{Game data/saves|Linux|{{p|game}}/game/save/}}' + - "{{Game data/saves|Windows|{{p|game}}\\WEE1 HD\\save}}" + - "{{Game data/saves|Linux|{{p|game}}/game/save/}}" World End Economica Episode.02: gog: 1852249874 pageId: 33650 steam: 368160 templates: - - '{{Game data/saves|Windows|{{p|game}}\WEE2 HD\save}}' - - '{{Game data/saves|Linux|{{p|game}}/game/save/}}' + - "{{Game data/saves|Windows|{{p|game}}\\WEE2 HD\\save}}" + - "{{Game data/saves|Linux|{{p|game}}/game/save/}}" World End Economica Episode.03: gog: 1422912124 pageId: 51920 steam: 527190 templates: - - '{{Game data/saves|Linux|{{p|game}}/game/save/}}' + - "{{Game data/saves|Linux|{{p|game}}/game/save/}}" World Enduro Rally: pageId: 121823 steam: 933840 @@ -194005,7 +188613,7 @@ World In Danger: World Inside Out: pageId: 87942 steam: 810560 -'World Keepers: Last Resort': +"World Keepers: Last Resort": pageId: 56924 steam: 560750 World Leader Card Game: @@ -194014,11 +188622,11 @@ World Leader Card Game: World League Basketball: pageId: 126761 templates: - - '{{Game data/config|Windows|{{P|game}}\ncaaapp.cfg}}' + - "{{Game data/config|Windows|{{P|game}}\\ncaaapp.cfg}}" World League Soccer 98: pageId: 161599 templates: - - '{{Game data/saves|Windows|{{P|game}}\Saves}}' + - "{{Game data/saves|Windows|{{P|game}}\\Saves}}" World Of Conquerors: pageId: 134554 steam: 1057740 @@ -194032,21 +188640,21 @@ World Racing 2: pageId: 24489 steam: 1301010 templates: - - '{{Game data/config|Windows|{{p|game}}\Config.ini
{{p|game}}\CtrlMappings.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\WR2-Saves\}}' -'World Racing 2: Champion Edition': + - "{{Game data/config|Windows|{{p|game}}\\Config.ini
{{p|game}}\\CtrlMappings.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\WR2-Saves\\}}" +"World Racing 2: Champion Edition": gog: 1554263611 pageId: 182788 steam: 1301010 templates: - - '{{Game data/config|Windows|{{p|game}}\Config.ini
{{p|game}}\CtrlMappings.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\WR2-Saves\}}' -'World Rally Fever: Born on the Road': + - "{{Game data/config|Windows|{{p|game}}\\Config.ini
{{p|game}}\\CtrlMappings.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\WR2-Saves\\}}" +"World Rally Fever: Born on the Road": gog: 1207658990 pageId: 14274 -World Series Baseball '96: +"World Series Baseball '96": pageId: 171006 -'World Series of Poker: Full House Pro': +"World Series of Poker: Full House Pro": pageId: 178671 World Ship Simulator: pageId: 45603 @@ -194064,7 +188672,7 @@ World Turtles: World VR Competition: pageId: 41807 steam: 493290 -'World War 1: Centennial Edition': +"World War 1: Centennial Edition": pageId: 60004 steam: 297090 World War 2 Winter Gun Range VR Simulator: @@ -194073,61 +188681,57 @@ World War 2 Winter Gun Range VR Simulator: World War 2 Zombie Attack VR Simulator: pageId: 155596 steam: 1215690 -'World War 2: Time of Wrath': +"World War 2: Time of Wrath": pageId: 50111 steam: 305390 World War 3: pageId: 95933 steam: 674020 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\WW3\Saved}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\WW3\Saved}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\WW3\\Saved}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\WW3\\Saved}}" World War I: pageId: 48256 steam: 361380 -'World War II Combat: Iwo Jima': +"World War II Combat: Iwo Jima": pageId: 187682 templates: - - >- - {{Game data/config|Windows|{{p|appdata}}\Groove Games\IwoJima\*.ini|{{p|appdata}}\Groove - Games\IwoJima\Profiles\{{P|uid}}.ini}} - - '{{Game data/config|Windows|{{p|appdata}}\Groove Games\IwoJima\Profiles\{{P|uid}}.ini}}' -'World War II Combat: Road to Berlin': + - "{{Game data/config|Windows|{{p|appdata}}\\Groove Games\\IwoJima\\*.ini|{{p|appdata}}\\Groove Games\\IwoJima\\Profiles\\{{P|uid}}.ini}}" + - "{{Game data/config|Windows|{{p|appdata}}\\Groove Games\\IwoJima\\Profiles\\{{P|uid}}.ini}}" +"World War II Combat: Road to Berlin": pageId: 187698 templates: - - >- - {{Game data/config|Windows|{{p|appdata}}\Groove Games\Berlin\*.ini|{{p|appdata}}\Groove - Games\Berlin\Profiles\{{P|uid}}.ini}} - - '{{Game data/config|Windows|{{p|appdata}}\Groove Games\Berlin\Profiles\{{P|uid}}.ini}}' + - "{{Game data/config|Windows|{{p|appdata}}\\Groove Games\\Berlin\\*.ini|{{p|appdata}}\\Groove Games\\Berlin\\Profiles\\{{P|uid}}.ini}}" + - "{{Game data/config|Windows|{{p|appdata}}\\Groove Games\\Berlin\\Profiles\\{{P|uid}}.ini}}" World War II GI: gog: 1625778777 pageId: 25290 steam: 376750 templates: - - '{{Game data/config|DOS|{{p|game}}\WW2GI.CFG}}' - - '{{Game data/saves|DOS|{{p|game}}\GAME*.SAV}}' + - "{{Game data/config|DOS|{{p|game}}\\WW2GI.CFG}}" + - "{{Game data/saves|DOS|{{p|game}}\\GAME*.SAV}}" World War II Online: pageId: 62464 steam: 251950 -'World War II: Pacific Heroes': +"World War II: Pacific Heroes": pageId: 188916 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\SOFTWARE\City Interactive\WWII Pacific Heroes}}' -'World War II: Panzer Claws': + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\City Interactive\\WWII Pacific Heroes}}" +"World War II: Panzer Claws": pageId: 9063 steam: 254100 -'World War II: Sniper - Call to Victory': +"World War II: Sniper - Call to Victory": pageId: 111394 templates: - - '{{Game data/config|Windows|{{p|game}}\autoexec.cfg|{{p|game}}\display.cfg|{{p|game}}\Profiles\}}' - - '{{Game data/saves|Windows|{{p|game}}\Save\}}' -'World War II: TCG': + - "{{Game data/config|Windows|{{p|game}}\\autoexec.cfg|{{p|game}}\\display.cfg|{{p|game}}\\Profiles\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\Save\\}}" +"World War II: TCG": pageId: 128034 steam: 1019250 -'World War III: Black Gold': +"World War III: Black Gold": pageId: 40585 steam: 254080 -'World War Party: Game of Trump': +"World War Party: Game of Trump": pageId: 75839 steam: 705410 World War Toons: @@ -194136,16 +188740,14 @@ World War Z: pageId: 110988 steam: 699130 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Saber\WWZ\client\storage\}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\Saber\WWZ\client\storage\}}' - - >- - {{Game data/saves|Microsoft - Store|{{P|localappdata}}\Packages\MadDogGamesLLC.WWZBaseGamePC_6wkgvezv94m76\SystemAppData\wgs}} -'World War Zero: Iron Storm': + - "{{Game data/config|Windows|{{P|localappdata}}\\Saber\\WWZ\\client\\storage\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Saber\\WWZ\\client\\storage\\}}" + - "{{Game data/saves|Microsoft Store|{{P|localappdata}}\\Packages\\MadDogGamesLLC.WWZBaseGamePC_6wkgvezv94m76\\SystemAppData\\wgs}}" +"World War Zero: Iron Storm": pageId: 76801 steam: 1103800 templates: - - '{{Game data/saves|Windows|{{P|game}}\SaveGames}}' + - "{{Game data/saves|Windows|{{P|game}}\\SaveGames}}" World Warfare: pageId: 90949 steam: 734290 @@ -194156,8 +188758,8 @@ World in Conflict: steamSide: - 21910 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\World in Conflict\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\World in Conflict\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\World in Conflict\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\World in Conflict\\}}" World left Behind: pageId: 144773 steam: 1139200 @@ -194167,10 +188769,10 @@ World of Castles: World of Cinema - Movie Tycoon: pageId: 48290 steam: 344160 -'World of DASM, DASM Spell Quest': +"World of DASM, DASM Spell Quest": pageId: 62479 steam: 543910 -'World of Darkness Preludes: Vampire and Mage': +"World of Darkness Preludes: Vampire and Mage": pageId: 58116 steam: 565410 World of Demons: @@ -194179,7 +188781,7 @@ World of Diving: pageId: 10044 steam: 251890 templates: - - '{{Game data/saves|Windows|Developer cloud save only?}}' + - "{{Game data/saves|Windows|Developer cloud save only?}}" World of Feudal: pageId: 95262 steam: 857570 @@ -194187,8 +188789,8 @@ World of Final Fantasy: pageId: 75289 steam: 552700 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\WOFF\{{p|uid}}\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\WOFF\{{p|uid}}\savedata\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\WOFF\\{{p|uid}}\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\WOFF\\{{p|uid}}\\savedata\\}}" World of Fishing: pageId: 33800 steam: 421960 @@ -194200,28 +188802,28 @@ World of Goo: pageId: 55 steam: 22000 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\2DBoy\WorldOfGoo\config.user.txt}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/WorldOfGoo/config.user.txt}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.WorldOfGoo/config.user.txt}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\2DBoy\WorldOfGoo\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/WorldOfGoo/}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.WorldOfGoo/}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\2DBoy\\WorldOfGoo\\config.user.txt}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/WorldOfGoo/config.user.txt}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.WorldOfGoo/config.user.txt}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\2DBoy\\WorldOfGoo\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/WorldOfGoo/}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.WorldOfGoo/}}" World of Goo (2008): pageId: 167088 templates: - - '{{Game data/config|Windows|{{p|game}}\properties\config.txt}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/WorldOfGoo/config.txt}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\2DBoy\WorldOfGoo\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/WorldOfGoo/}}' -'World of Guns: Gun Disassembly': + - "{{Game data/config|Windows|{{p|game}}\\properties\\config.txt}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/WorldOfGoo/config.txt}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\2DBoy\\WorldOfGoo\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/WorldOfGoo/}}" +"World of Guns: Gun Disassembly": pageId: 31746 steam: 262410 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\Noble Empire\World of Guns\}}' - - '{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/Noble Empire/World of Guns/}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Noble Empire\World of Guns\}}' - - '{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/Noble Empire/World of Guns/}}' -'World of Guns: VR': + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Noble Empire\\World of Guns\\}}" + - "{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/Noble Empire/World of Guns/}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Noble Empire\\World of Guns\\}}" + - "{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/Noble Empire/World of Guns/}}" +"World of Guns: VR": pageId: 144341 steam: 1111760 World of Hex: @@ -194231,9 +188833,9 @@ World of Horror: pageId: 113666 steam: 913740 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\wohgame\save.ito}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\wohgame\save.ito}}' - - '{{Game data/saves|OS X|Library/Application Support/com.panstasz.wohgame/save.ito}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\wohgame\\save.ito}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\wohgame\\save.ito}}" + - "{{Game data/saves|OS X|Library/Application Support/com.panstasz.wohgame/save.ito}}" World of Islands - Treasure Hunt: pageId: 98116 steam: 810340 @@ -194254,9 +188856,9 @@ World of One: World of Padman: pageId: 19970 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Padman\wop}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/WorldOfPadman/}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.padman/}}' + - "{{Game data/config|Windows|{{p|appdata}}\\Padman\\wop}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/WorldOfPadman/}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.padman/}}" World of Soccer online: pageId: 46697 steam: 393410 @@ -194298,7 +188900,7 @@ World of Tanks: - 1986570 - 2011940 templates: - - '{{Game data/config|Windows|{{p|appdata}}\wargaming.net\WorldOfTanks}}' + - "{{Game data/config|Windows|{{p|appdata}}\\wargaming.net\\WorldOfTanks}}" World of Tanks Blitz: pageId: 51282 steam: 444200 @@ -194316,19 +188918,15 @@ World of Tanks Blitz: - 1986340 - 2091070 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\DAVAProject}}' - - >- - {{Game data/config|Microsoft - Store|{{P|localappdata}}\Packages\7458BE2C.WorldofTanksBlitz_x4tje2y229k00\LocalState\DAVAProject}} - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\444200\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\DAVAProject}}' - - >- - {{Game data/saves|Microsoft - Store|{{P|localappdata}}\Packages\7458BE2C.WorldofTanksBlitz_x4tje2y229k00\LocalState\DAVAProject}} + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\DAVAProject}}" + - "{{Game data/config|Microsoft Store|{{P|localappdata}}\\Packages\\7458BE2C.WorldofTanksBlitz_x4tje2y229k00\\LocalState\\DAVAProject}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\444200\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\DAVAProject}}" + - "{{Game data/saves|Microsoft Store|{{P|localappdata}}\\Packages\\7458BE2C.WorldofTanksBlitz_x4tje2y229k00\\LocalState\\DAVAProject}}" World of Tea: pageId: 95401 steam: 865050 -'World of Tennis: Roaring ''20s': +"World of Tennis: Roaring '20s": pageId: 113224 steam: 796290 World of Undead: @@ -194343,14 +188941,14 @@ World of Voidia(虚亚世界): World of Walking Cities: pageId: 93076 steam: 845440 -'World of War: Battlegrounds': +"World of War: Battlegrounds": pageId: 99166 steam: 888400 World of Warcraft: pageId: 9 templates: - - '{{Game data/config|Windows|{{p|game}}\_retail_\WTF\Config.wtf}}' - - '{{Game data/config|OS X|{{p|game}}\WTF\Config.wtf}}' + - "{{Game data/config|Windows|{{p|game}}\\_retail_\\WTF\\Config.wtf}}" + - "{{Game data/config|OS X|{{p|game}}\\WTF\\Config.wtf}}" World of Warplanes: pageId: 112000 steam: 790710 @@ -194358,7 +188956,7 @@ World of Warships: pageId: 32977 steam: 552990 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' + - "{{Game data/config|Windows|{{p|game}}\\}}" World of Zombies: pageId: 125605 steam: 869130 @@ -194373,29 +188971,27 @@ World to the West: pageId: 59111 steam: 530020 templates: - - >- - {{Game data/config|Windows|{{p|USERPROFILE}}\AppData\LocalLow\Rain\World to the - West\Settings.yaml|{{p|USERPROFILE}}\AppData\LocalLow\Rain\World to the West\Controls.yaml}} - - '{{Game data/saves|Windows|{{p|USERPROFILE}}\AppData\LocalLow\Rain\World to the West\}}' - - '{{Game data/saves|Steam|{{P|steam}}\userdata\{{P|uid}}\530020\remote\Saves.yaml}}' -World's Dawn: + - "{{Game data/config|Windows|{{p|USERPROFILE}}\\AppData\\LocalLow\\Rain\\World to the West\\Settings.yaml|{{p|USERPROFILE}}\\AppData\\LocalLow\\Rain\\World to the West\\Controls.yaml}}" + - "{{Game data/saves|Windows|{{p|USERPROFILE}}\\AppData\\LocalLow\\Rain\\World to the West\\}}" + - "{{Game data/saves|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\530020\\remote\\Saves.yaml}}" +"World's Dawn": pageId: 44832 steam: 432010 templates: - - '{{Game data/saves|Windows|{{P|game}}\Diary}}' -World's End Club: + - "{{Game data/saves|Windows|{{P|game}}\\Diary}}" +"World's End Club": pageId: 163120 steam: 1570020 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\SOFTWARE\IzanagiGames\World''sEndClub}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\IZANAGIGAMES\World''sEndClub\}}' -World's Fastest Pizza: + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\IzanagiGames\\World'sEndClub}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\IZANAGIGAMES\\World'sEndClub\\}}" +"World's Fastest Pizza": pageId: 44150 steam: 396260 -World's Greatest Cities Mosaics: +"World's Greatest Cities Mosaics": pageId: 109806 steam: 915610 -World's Nicht: +"World's Nicht": pageId: 139123 steam: 1101330 WorldBox: @@ -194414,15 +189010,15 @@ Worldless: - 2262290 - 2546820 templates: - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\NonameStudios\Worldless\*.sav}}' -'Worldless: Mercenaries': + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\NonameStudios\\Worldless\\*.sav}}" +"Worldless: Mercenaries": pageId: 157408 steam: 1180670 Worlds: pageId: 44381 steam: 304850 templates: - - '{{Game data/config|Windows|{{P|game}}\worlds.cfg}}' + - "{{Game data/config|Windows|{{P|game}}\\worlds.cfg}}" Worlds Adrift: pageId: 35120 steam: 322780 @@ -194435,21 +189031,21 @@ Worlds Collide: Worlds at War: pageId: 82294 steam: 744670 -'Worlds of Chaos: Corruption': +"Worlds of Chaos: Corruption": pageId: 44673 steam: 436510 -'Worlds of Legend: Son of the Empire': +"Worlds of Legend: Son of the Empire": pageId: 72477 templates: - - '{{Game data/saves|DOS|{{p|game}}\EMPIRE0*.SAV}}' + - "{{Game data/saves|DOS|{{p|game}}\\EMPIRE0*.SAV}}" Worlds of Magic: pageId: 23890 steam: 265970 -'Worlds of Ultima: The Savage Empire': +"Worlds of Ultima: The Savage Empire": gog: 1207659061 pageId: 13753 templates: - - '{{Game data/saves|DOS|{{p|game}}\SAVEGAME\}}' + - "{{Game data/saves|DOS|{{p|game}}\\SAVEGAME\\}}" Worlds of the Future: pageId: 171330 steam: 1657050 @@ -194459,7 +189055,7 @@ Worldwide Sports Fishing: Worldy Cup: pageId: 41693 steam: 510080 -'Worm.is: The Game': +"Worm.is: The Game": pageId: 43201 steam: 466910 Wormhole City: @@ -194476,8 +189072,8 @@ Worms 2: gog: 1207659104 pageId: 7580 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Team17SoftwareLTD\Worms2|{{p|game}}\Teams\Internet.dat}}' - - '{{Game data/saves|Windows|{{p|game}}\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Team17SoftwareLTD\\Worms2|{{p|game}}\\Teams\\Internet.dat}}" + - "{{Game data/saves|Windows|{{p|game}}\\}}" Worms 2020: pageId: 158334 Worms 3: @@ -194485,76 +189081,74 @@ Worms 3: Worms 3D: pageId: 12029 templates: - - '{{Game data/saves|Windows|{{P|game}}\Data\SaveGame.xom}}' -'Worms 4: Mayhem': + - "{{Game data/saves|Windows|{{P|game}}\\Data\\SaveGame.xom}}" +"Worms 4: Mayhem": pageId: 12027 templates: - - '{{Game data/saves|Windows|{{p|game}}\data\SaveGame.xom}}' + - "{{Game data/saves|Windows|{{p|game}}\\data\\SaveGame.xom}}" Worms Armageddon: gog: 1462173886 pageId: 1940 steam: 217200 templates: - - '{{Game data/config|Windows|{{p|windir}}\win.ini|{{p|hkcu}}\Software\Team17SoftwareLTD\WormsArmageddon\}}' - - '{{Game data/saves|Windows|{{p|game}}\User\Teams\WG.WGT}}' + - "{{Game data/config|Windows|{{p|windir}}\\win.ini|{{p|hkcu}}\\Software\\Team17SoftwareLTD\\WormsArmageddon\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\User\\Teams\\WG.WGT}}" Worms Blast: pageId: 12031 steam: 70650 templates: - - '{{Game data/saves|Windows|Steam\steamapps\common\Worms Blast\GameSave.dat}}' + - "{{Game data/saves|Windows|Steam\\steamapps\\common\\Worms Blast\\GameSave.dat}}" Worms Clan Wars: pageId: 9064 steam: 233840 templates: - - '{{Game data/config|Windows|{{P|game}}/CommonData/}}' - - '{{Game data/config|Linux|{{P|game}}/Main/Default.cfg}}' - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{P|uid}}/233840/remote/}}' + - "{{Game data/config|Windows|{{P|game}}/CommonData/}}" + - "{{Game data/config|Linux|{{P|game}}/Main/Default.cfg}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{P|uid}}/233840/remote/}}" Worms Crazy Golf: gog: 1434356072 pageId: 12025 steam: 70620 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' -'Worms Forts: Under Siege': + - "{{Game data/config|Windows|{{p|game}}\\}}" +"Worms Forts: Under Siege": gog: 1207659170 pageId: 7582 templates: - - >- - {{Game - data/config|Windows|{{p|appdata}}\GOG\WormsForts\config.ini|{{P|programdata}}\GOG.com\Galaxy\support\1207659170\1207659170\userappdata}} - - '{{Game data/saves|Windows|{{p|game}}\data\SaveGame.xom}}' + - "{{Game data/config|Windows|{{p|appdata}}\\GOG\\WormsForts\\config.ini|{{P|programdata}}\\GOG.com\\Galaxy\\support\\1207659170\\1207659170\\userappdata}}" + - "{{Game data/saves|Windows|{{p|game}}\\data\\SaveGame.xom}}" Worms Pinball: pageId: 12019 steam: 70660 templates: - - '{{Game data/config|Windows|{{p|game}}\*.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\}}' + - "{{Game data/config|Windows|{{p|game}}\\*.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\}}" Worms Reloaded: pageId: 5695 steam: 22600 templates: - - '{{Game data/config|Windows|{{P|game}}\local.cfg}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/Team17/WormsReloaded/}}' - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\22600\remote\}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/Team17/WormsReloaded/}}' + - "{{Game data/config|Windows|{{P|game}}\\local.cfg}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/Team17/WormsReloaded/}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\22600\\remote\\}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/Team17/WormsReloaded/}}" Worms Revolution: gog: 1421309312 pageId: 5687 steam: 200170 templates: - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\200170\}}' + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\200170\\}}" Worms Rumble: pageId: 161530 steam: 1186040 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\ProjectNimble\Saved\Config\WindowsNoEditor\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\ProjectNimble\\Saved\\Config\\WindowsNoEditor\\}}" Worms Ultimate Mayhem: gog: 2068170636 pageId: 12022 steam: 70600 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\70600\}}' + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\70600\\}}" Worms W.M.D: gog: 1448620034 gogSide: @@ -194562,26 +189156,22 @@ Worms W.M.D: pageId: 35700 steam: 327030 templates: - - '{{Game data/config|Windows|{{P|game}}\CommonData\local.cfg}}' - - >- - {{Game data/config|Microsoft - Store|{{p|localappdata}}\Packages\Team17DigitalLimited.WormsW.M.DWin10_j5x4vj4y67jhc\LocalCache\Local\Microsoft\WritablePackageRoot\CommonData}} - - '{{Game data/saves|GOG.com|{{p|public}}\Public Documents\Team17\WormsWMD}}' - - '{{Game data/saves|Steam|{{P|steam}}\userdata\{{P|uid}}\327030\}}' + - "{{Game data/config|Windows|{{P|game}}\\CommonData\\local.cfg}}" + - "{{Game data/config|Microsoft Store|{{p|localappdata}}\\Packages\\Team17DigitalLimited.WormsW.M.DWin10_j5x4vj4y67jhc\\LocalCache\\Local\\Microsoft\\WritablePackageRoot\\CommonData}}" + - "{{Game data/saves|GOG.com|{{p|public}}\\Public Documents\\Team17\\WormsWMD}}" + - "{{Game data/saves|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\327030\\}}" Worms World Party: pageId: 83 templates: - - '{{Game data/config|Windows|{{p|windir}}\WWP.ini|{{p|hkcu}}\Software\Team17SoftwareLTD\WormsWorldParty}}' - - '{{Game data/saves|Windows|{{p|game}}\User\Teams\WG.WWP|{{p|game}}\User\SavedLevels|{{p|game}}\User\Schemes\}}' + - "{{Game data/config|Windows|{{p|windir}}\\WWP.ini|{{p|hkcu}}\\Software\\Team17SoftwareLTD\\WormsWorldParty}}" + - "{{Game data/saves|Windows|{{p|game}}\\User\\Teams\\WG.WWP|{{p|game}}\\User\\SavedLevels|{{p|game}}\\User\\Schemes\\}}" Worms World Party Remastered: gog: 1433238834 pageId: 26146 steam: 270910 templates: - - >- - {{Game - data/config|Windows|{{p|hkcu}}\Software\Team17DigitalLTD\WormsWorldParty|{{p|hkcu}}\Software\Team17SoftwareLTD\BankEditor}} - - '{{Game data/saves|Windows|{{p|game}}\save\WG.WWP|{{p|game}}\User\SavedLevels|{{p|game}}\User\Schemes}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Team17DigitalLTD\\WormsWorldParty|{{p|hkcu}}\\Software\\Team17SoftwareLTD\\BankEditor}}" + - "{{Game data/saves|Windows|{{p|game}}\\save\\WG.WWP|{{p|game}}\\User\\SavedLevels|{{p|game}}\\User\\Schemes}}" Wormster Dash: pageId: 113276 steam: 818050 @@ -194594,7 +189184,7 @@ Worshippers: Worst Case Z: pageId: 43582 steam: 450030 -'Wounded: The Beginning': +"Wounded: The Beginning": pageId: 128149 renamedFrom: - WOUNDED @@ -194606,18 +189196,18 @@ Wrack: pageId: 12333 steam: 253610 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Wrack\Wrack-{{p|uid}}.ini}}' - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\253610\}}' -'Wrack: Exoverse': + - "{{Game data/config|Windows|{{p|appdata}}\\Wrack\\Wrack-{{p|uid}}.ini}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\253610\\}}" +"Wrack: Exoverse": pageId: 82870 steam: 520660 Wraith: pageId: 72905 steam: 723380 -'Wraith: The Oblivion - Afterlife': +"Wraith: The Oblivion - Afterlife": pageId: 163438 steam: 1386870 -'Wraithmind: Volume I': +"Wraithmind: Volume I": pageId: 132625 steam: 739820 Wraithslayer: @@ -194629,8 +189219,8 @@ Wrath of Anna: Wrath of Earth: pageId: 74747 templates: - - '{{Game data/config|DOS|{{p|game}}\WOE.CFG}}' - - '{{Game data/saves|DOS|{{p|game}}\WOE_SAVE.*}}' + - "{{Game data/config|DOS|{{p|game}}\\WOE.CFG}}" + - "{{Game data/saves|DOS|{{p|game}}\\WOE_SAVE.*}}" Wrath of Loki VR Adventure: pageId: 76016 steam: 650860 @@ -194640,25 +189230,25 @@ Wrath of Thor: Wrath of the Fire God: pageId: 36214 steam: 511370 -'Wrath of the Goliaths: Dinosaurs': +"Wrath of the Goliaths: Dinosaurs": pageId: 108724 steam: 688350 Wrath of the Samurai: pageId: 139290 steam: 1064710 -'Wrath: Aeon of Ruin': +"Wrath: Aeon of Ruin": gog: 1858373039 pageId: 129357 steam: 1000410 templates: - - '{{Game data/config|Windows|{{P|game}}\kp1\config.cfg}}' - - '{{Game data/saves|Windows|{{P|game}}\kp1\data\profiles\}}' + - "{{Game data/config|Windows|{{P|game}}\\kp1\\config.cfg}}" + - "{{Game data/saves|Windows|{{P|game}}\\kp1\\data\\profiles\\}}" Wreck-it Ralph: pageId: 170968 Wrecked Destruction Simulator: pageId: 127685 steam: 1020660 -'Wrecked: Get Your Ship Together': +"Wrecked: Get Your Ship Together": pageId: 61134 steam: 619600 Wrecker: @@ -194667,18 +189257,16 @@ Wrecker: Wreckfest: gog: 1249986612 gogSide: - - 2139564572 - 1570193906 + - 2139564572 pageId: 14151 steam: 228380 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\wreckfest\}}' - - '{{Game data/config|Microsoft Store|{{p|userprofile\AppData\LocalLow}}\THQNordic\Wreckfest\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\wreckfest\}}' - - >- - {{Game data/saves|Microsoft - Store|{{p|localappdata}}\Packages\NordicGames.631082A550AE7_46xc33nm0q0f8\SystemAppData\wgs}} -Wreckin' Ball Adventure: + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\wreckfest\\}}" + - "{{Game data/config|Microsoft Store|{{p|userprofile\\AppData\\LocalLow}}\\THQNordic\\Wreckfest\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\wreckfest\\}}" + - "{{Game data/saves|Microsoft Store|{{p|localappdata}}\\Packages\\NordicGames.631082A550AE7_46xc33nm0q0f8\\SystemAppData\\wgs}}" +"Wreckin' Ball Adventure": pageId: 124506 steam: 746030 Wrecking Towers: @@ -194725,8 +189313,8 @@ Written in the Sky: pageId: 33634 steam: 416130 templates: - - '{{Game data/config|Windows|{{p|game}}\renpy\config.py}}' - - '{{Game data/saves|Windows|{{P|appdata}}\RenPy\WITS-1443726620\}}' + - "{{Game data/config|Windows|{{p|game}}\\renpy\\config.py}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\RenPy\\WITS-1443726620\\}}" Wrong Dimension - The One Dimensional Platformer: pageId: 39876 steam: 497280 @@ -194737,7 +189325,7 @@ Wrought Flesh: pageId: 173619 steam: 1762010 templates: - - '{{Game data/saves|Windows|{{p|appdata}}\Godot\app_userdata\WroughtFlesh }}' + - "{{Game data/saves|Windows|{{p|appdata}}\\Godot\\app_userdata\\WroughtFlesh }}" WtBoy: pageId: 67131 steam: 633350 @@ -194745,7 +189333,7 @@ Wulverblade: pageId: 59679 steam: 587180 templates: - - '{{Game data/saves|Windows|{{P|steam}}\userdata\{{P|uid}}\587180\remote\}}' + - "{{Game data/saves|Windows|{{P|steam}}\\userdata\\{{P|uid}}\\587180\\remote\\}}" Wunderdoktor: pageId: 71920 steam: 705450 @@ -194762,17 +189350,15 @@ Wuppo: pageId: 39129 steam: 400630 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Wuppo\Wuppo_config.ini}}' - - >- - {{Game - data/saves|Windows|{{p|localappdata}}\Wuppo\savedata\{{code|*}}.ini|{{p|localappdata}}\Wuppo\savedata\{{code|}}\}} + - "{{Game data/config|Windows|{{P|localappdata}}\\Wuppo\\Wuppo_config.ini}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Wuppo\\savedata\\{{code|*}}.ini|{{p|localappdata}}\\Wuppo\\savedata\\{{code|}}\\}}" Wurdweb: pageId: 169995 Wurm Unlimited: pageId: 29024 steam: 366220 templates: - - '{{Game data/config|Windows|{{p|game}}\LaunchConfig.ini}}' + - "{{Game data/config|Windows|{{p|game}}\\LaunchConfig.ini}}" Wurroom: pageId: 150454 steam: 1153130 @@ -194784,10 +189370,10 @@ Wushu Chronicles: renamedFrom: - 武林志(Wushu Chronicles) steam: 921390 -'Wuxia Archive: Crisis Escape': +"Wuxia Archive: Crisis Escape": pageId: 112272 renamedFrom: - - '侠隐行录:困境疑云Wuxia archive: Crisis escape' + - "侠隐行录:困境疑云Wuxia archive: Crisis escape" steam: 923840 Wuxia Master: pageId: 112456 @@ -194803,7 +189389,7 @@ WyVRn: Wyatt Derp: pageId: 34976 steam: 473640 -'Wyatt Derp 2: Peacekeeper': +"Wyatt Derp 2: Peacekeeper": pageId: 34970 steam: 473580 Wylde Flowers: @@ -194817,23 +189403,23 @@ Wytchwood: pageId: 75717 steam: 729000 templates: - - '{{Game data/saves|Windows|%APPDATA%\LocalLow\Alientrap\Wytchwood}}' -'Wyv and Keep: The Temple of the Lost Idol': + - "{{Game data/saves|Windows|%APPDATA%\\LocalLow\\Alientrap\\Wytchwood}}" +"Wyv and Keep: The Temple of the Lost Idol": pageId: 28968 steam: 263960 templates: - - '{{Game data/config|Windows|{{P|game}}\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/WyvAndKeep/}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/WyvAndKeep/}}' - - '{{Game data/config|Steam|{{P|game}}/}}' - - '{{Game data/saves|Windows|{{P|game}}\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/WyvAndKeep/}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/WyvAndKeep/}}' - - '{{Game data/saves|Steam|{{P|game}}/}}' + - "{{Game data/config|Windows|{{P|game}}\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/WyvAndKeep/}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/WyvAndKeep/}}" + - "{{Game data/config|Steam|{{P|game}}/}}" + - "{{Game data/saves|Windows|{{P|game}}\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/WyvAndKeep/}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/WyvAndKeep/}}" + - "{{Game data/saves|Steam|{{P|game}}/}}" X Archetype: pageId: 123499 steam: 984230 -'X Caeli: The Iron Hand of Love': +"X Caeli: The Iron Hand of Love": pageId: 78052 steam: 708970 X Motor Racing: @@ -194848,9 +189434,9 @@ X Rebirth: steamSide: - 325580 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Egosoft\X Rebirth\{{p|uid}}\config.xml}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Egosoft\X Rebirth\{{p|uid}}\save\}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/.config/EgoSoft/X Rebirth/{{p|uid}}/save/}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Egosoft\\X Rebirth\\{{p|uid}}\\config.xml}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Egosoft\\X Rebirth\\{{p|uid}}\\save\\}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/.config/EgoSoft/X Rebirth/{{p|uid}}/save/}}" X Rebirth VR Edition: pageId: 66769 steam: 570420 @@ -194863,8 +189449,8 @@ X-17: X-Blades: gog: 1489204325 gogSide: - - 1463987837 - 1237741022 + - 1463987837 - 1799353301 pageId: 41297 steam: 7510 @@ -194872,79 +189458,79 @@ X-Blades: - 604280 - 604290 templates: - - '{{Game data/config|Windows|{{p|appdata}}\XBlades\|{{p|localappdata}}\XBlades\}}' - - '{{Game data/saves|Windows|{{p|appdata}}\XBlades\|{{p|localappdata}}\XBlades\}}' -'X-COM: Apocalypse': + - "{{Game data/config|Windows|{{p|appdata}}\\XBlades\\|{{p|localappdata}}\\XBlades\\}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\XBlades\\|{{p|localappdata}}\\XBlades\\}}" +"X-COM: Apocalypse": gog: 1445249430 pageId: 8268 steam: 7660 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/saves|Windows|{{p|game}}\SAVEGAME}}' -'X-COM: Enforcer': + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\SAVEGAME}}" +"X-COM: Enforcer": gog: 1445249599 pageId: 17609 steam: 7770 templates: - - '{{Game data/config|Windows|{{p|game}}\System}}' - - '{{Game data/saves|Windows|{{p|game}}\System\User.ini}}' -'X-COM: Interceptor': + - "{{Game data/config|Windows|{{p|game}}\\System}}" + - "{{Game data/saves|Windows|{{p|game}}\\System\\User.ini}}" +"X-COM: Interceptor": gog: 1445249671 pageId: 17607 steam: 7730 templates: - - '{{Game data/config|Windows|{{p|hklm}}\SOFTWARE\{{p|wow64}}\MicroProse Software\X-COM Interceptor\1.2}}' - - '{{Game data/saves|Windows|{{p|game}}\Saved Games}}' -'X-COM: Terror from the Deep': + - "{{Game data/config|Windows|{{p|hklm}}\\SOFTWARE\\{{p|wow64}}\\MicroProse Software\\X-COM Interceptor\\1.2}}" + - "{{Game data/saves|Windows|{{p|game}}\\Saved Games}}" +"X-COM: Terror from the Deep": gog: 1445249983 pageId: 17606 steam: 7650 -'X-COM: UFO Defense': +"X-COM: UFO Defense": gog: 1445250340 pageId: 216 steam: 7760 templates: - - '{{Game data/config|DOS|{{p|game}}\sound\sound.cfg}}' - - '{{Game data/saves|DOS|{{p|userprofile}}\game_*\}}' -'X-Men Legends II: Rise of Apocalypse': + - "{{Game data/config|DOS|{{p|game}}\\sound\\sound.cfg}}" + - "{{Game data/saves|DOS|{{p|userprofile}}\\game_*\\}}" +"X-Men Legends II: Rise of Apocalypse": pageId: 79635 templates: - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Activision\X-Men Legends 2\Save\}}' -'X-Men Origins: Wolverine - Uncaged Edition': + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Activision\\X-Men Legends 2\\Save\\}}" +"X-Men Origins: Wolverine - Uncaged Edition": pageId: 24495 renamedFrom: - - 'X-Men Origins: Wolverine' + - "X-Men Origins: Wolverine" templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Wolverine\WGame\Config\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Wolverine\WGame\SaveData\}}' -'X-Men: Children of the Atom': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Wolverine\\WGame\\Config\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Wolverine\\WGame\\SaveData\\}}" +"X-Men: Children of the Atom": pageId: 154908 templates: - - '{{Game data/config|DOS|{{p|game}}\}}' - - '{{Game data/saves|DOS|{{p|game}}\}}' -'X-Men: The Official Game': + - "{{Game data/config|DOS|{{p|game}}\\}}" + - "{{Game data/saves|DOS|{{p|game}}\\}}" +"X-Men: The Official Game": pageId: 79628 -'X-Men: The Ravages of Apocalypse': +"X-Men: The Ravages of Apocalypse": pageId: 79642 templates: - - '{{Game data/config|Windows|{{p|game}}\xmen}}' - - '{{Game data/saves|Windows|{{p|game}}\xmen}}' -'X-MiGuFighters: Stripper Anya': + - "{{Game data/config|Windows|{{p|game}}\\xmen}}" + - "{{Game data/saves|Windows|{{p|game}}\\xmen}}" +"X-MiGuFighters: Stripper Anya": pageId: 75182 steam: 705700 -'X-Morph: Defense': +"X-Morph: Defense": gog: 1135975449 pageId: 57918 steam: 408410 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\X-Morph Defense\Config}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\X-Morph Defense\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\X-Morph Defense\\Config}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\X-Morph Defense\\}}" X-Moto: pageId: 171365 X-Motor Racing: pageId: 186654 templates: - - '{{Game data/saves|Windows|{{P|game}}\Profile0.prf}}' + - "{{Game data/saves|Windows|{{P|game}}\\Profile0.prf}}" X-Note: pageId: 48937 steam: 337940 @@ -194955,58 +189541,58 @@ X-Plane 10 Global: pageId: 49945 steam: 292180 steamSide: - - 502850 - - 491570 - - 493560 - - 339399 - - 339398 - - 339397 - - 339395 - - 339394 - - 339393 - - 339389 - - 339390 - - 339391 - - 325134 - - 325133 - - 325132 - - 325131 - - 325130 - - 324780 + - 294560 + - 298620 + - 310410 + - 310420 + - 310430 + - 310440 - 315010 - - 316290 - 316280 - - 339388 - - 339387 - - 339386 - - 339385 - - 339384 - - 339381 - - 339383 - - 339382 - - 339380 - - 325138 + - 316290 + - 324780 + - 325130 + - 325131 + - 325132 + - 325133 + - 325134 - 325135 - 325136 - 325137 + - 325138 - 325139 - - 325141 - 325140 + - 325141 - 325142 - 325143 - 325144 - - 294560 - - 298620 - - 310440 - - 310410 - - 310430 - - 310420 + - 339380 + - 339381 + - 339382 + - 339383 + - 339384 + - 339385 + - 339386 + - 339387 + - 339388 + - 339389 + - 339390 + - 339391 + - 339393 + - 339394 + - 339395 + - 339397 + - 339398 + - 339399 + - 491570 + - 493560 + - 502850 X-Plane 11: pageId: 55612 steam: 269950 templates: - - '{{Game data/config|Windows|{{P|game}}\Output\preferences}}' - - '{{Game data/config|Linux|{{P|game}}/Output/preferences}}' + - "{{Game data/config|Windows|{{P|game}}\\Output\\preferences}}" + - "{{Game data/config|Linux|{{P|game}}/Output/preferences}}" X-Plane 12: pageId: 182123 steam: 2014780 @@ -195022,36 +189608,36 @@ X-Tension: pageId: 10834 steam: 2850 templates: - - '{{Game data/saves|Windows|{{p|game}}\*.sav}}' + - "{{Game data/saves|Windows|{{p|game}}\\*.sav}}" X-Town 3D Game: pageId: 91472 steam: 828160 X-ray Hospital: pageId: 93007 steam: 850720 -'X2: The Threat': +"X2: The Threat": gog: 1441032629 pageId: 10836 steam: 2800 templates: - - '{{Game data/saves|Windows|{{p|game}}\**.sav}}' -'X2: Wolverine''s Revenge': + - "{{Game data/saves|Windows|{{p|game}}\\**.sav}}" +"X2: Wolverine's Revenge": pageId: 79638 templates: - - '{{Game data/config|Windows|{{P|game}}\Wolvie.INI}}' - - '{{Game data/saves|Windows|{{P|game}}\Save}}' + - "{{Game data/config|Windows|{{P|game}}\\Wolvie.INI}}" + - "{{Game data/saves|Windows|{{P|game}}\\Save}}" X2Roulette: pageId: 124986 steam: 956780 -'X3: Reunion': +"X3: Reunion": gog: 1441038404 pageId: 1843 steam: 2810 templates: - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/EgoSoft/X3}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Egosoft\X3\save}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/EgoSoft/X3/save/X00.sav}}' -'X3: Terran Conflict': + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/EgoSoft/X3}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Egosoft\\X3\\save}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/EgoSoft/X3/save/X00.sav}}" +"X3: Terran Conflict": gog: 1441039322 gogSide: - 1298684275 @@ -195063,59 +189649,53 @@ X2Roulette: - 235960 - 483330 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\EGOSOFT\X3TC}}' - - >- - {{Game - data/config|Linux|{{p|xdgconfighome}}/EgoSoft/X3TC/config.yaml|{{p|xdgconfighome}}/EgoSoft/X3AP/config.yaml|{{p|xdgconfighome}}/EgoSoft/X3FL/config.yaml}} - - >- - {{Game - data/saves|Windows|{{p|userprofile\Documents}}\EgoSoft\X3TC\save\|{{p|userprofile\Documents}}\EgoSoft\X3AP\save\}} - - >- - {{Game - data/saves|Linux|{{p|xdgconfighome}}/Egosoft/X3TC/save/|{{p|xdgconfighome}}/EgoSoft/X3AP/save/|{{p|xdgconfighome}}/EgoSoft/X3FL/save/}} -'X4: Foundations': + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\EGOSOFT\\X3TC}}" + - "{{Game data/config|Linux|{{p|xdgconfighome}}/EgoSoft/X3TC/config.yaml|{{p|xdgconfighome}}/EgoSoft/X3AP/config.yaml|{{p|xdgconfighome}}/EgoSoft/X3FL/config.yaml}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\EgoSoft\\X3TC\\save\\|{{p|userprofile\\Documents}}\\EgoSoft\\X3AP\\save\\}}" + - "{{Game data/saves|Linux|{{p|xdgconfighome}}/Egosoft/X3TC/save/|{{p|xdgconfighome}}/EgoSoft/X3AP/save/|{{p|xdgconfighome}}/EgoSoft/X3FL/save/}}" +"X4: Foundations": gog: 1395669635 gogSide: - - 1588366064 - - 1897444972 - - 1899940710 - - 1636239177 - - 1811185500 - 1238357884 - 1315103966 - - 1698001635 - - 2099994529 - - 1880320955 - - 2047621599 - - 1811574414 - 1539694494 + - 1588366064 + - 1636239177 + - 1698001635 + - 1811185500 + - 1811574414 + - 1880320955 + - 1897444972 + - 1899940710 - 1995119004 + - 2047621599 + - 2099994529 pageId: 69761 steam: 392160 steamSide: - 942190 - 1133000 - - 1288460 - - 1701060 - 1239390 - 1277600 + - 1288460 - 1288490 + - 1701060 - 1788600 - 1990040 - 2375830 templates: - - '{{Game data/config|GOG.com|{{p|userprofile\Documents}}\Egosoft\X4\config.xml}}' - - '{{Game data/config|Steam|{{p|userprofile\Documents}}\Egosoft\X4\{{p|uid}}\config.xml}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/EgoSoft/X4/{{p|uid}}/config.xml}}' - - '{{Game data/saves|GOG.com|{{p|userprofile\Documents}}\Egosoft\X4\save\}}' - - '{{Game data/saves|Steam|{{p|userprofile\Documents}}\Egosoft\X4\{{p|uid}}\save\}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/EgoSoft/X4/{{p|uid}}/save/}}' -'X: Beyond the Frontier': + - "{{Game data/config|GOG.com|{{p|userprofile\\Documents}}\\Egosoft\\X4\\config.xml}}" + - "{{Game data/config|Steam|{{p|userprofile\\Documents}}\\Egosoft\\X4\\{{p|uid}}\\config.xml}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/EgoSoft/X4/{{p|uid}}/config.xml}}" + - "{{Game data/saves|GOG.com|{{p|userprofile\\Documents}}\\Egosoft\\X4\\save\\}}" + - "{{Game data/saves|Steam|{{p|userprofile\\Documents}}\\Egosoft\\X4\\{{p|uid}}\\save\\}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/EgoSoft/X4/{{p|uid}}/save/}}" +"X: Beyond the Frontier": gog: 1441039631 pageId: 10830 steam: 2840 templates: - - '{{Game data/saves|Windows|{{p|game}}\*.sav}}' + - "{{Game data/saves|Windows|{{p|game}}\\*.sav}}" XANARTHRAXIA: pageId: 138823 steam: 1073770 @@ -195125,10 +189705,10 @@ XAOC: XBall Champion: pageId: 81968 steam: 794570 -'XBlaze Code: Embryo': +"XBlaze Code: Embryo": pageId: 44369 steam: 421610 -'XBlaze Lost: Memories': +"XBlaze Lost: Memories": pageId: 41673 steam: 438940 XCOM 2: @@ -195136,55 +189716,44 @@ XCOM 2: pageId: 30092 steam: 268500 steamSide: - - 593380 - 433050 + - 593380 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\XCOM2\XComGame\Config\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Feral Interactive/XCOM 2/}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/feral-interactive/XCOM2/Config/}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\XCOM2\XComGame\SaveData\}}' - - >- - {{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Feral Interactive/XCOM 2/VFS/Local/my - games/XCOM2/XComGame/SaveData/}} - - >- - {{Game data/saves|Linux|{{P|xdgdatahome}}/feral-interactive/XCOM2/VFS/Local/my - games/XCOM2/XComGame/SaveData/|{{P|xdgdatahome}}/feral-interactive/XCOM 2 WotC/VFS/Local/my games/XCOM2 War of the - Chosen/XComGame/SaveData/}} -'XCOM: Chimera Squad': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\XCOM2\\XComGame\\Config\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Feral Interactive/XCOM 2/}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/feral-interactive/XCOM2/Config/}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\XCOM2\\XComGame\\SaveData\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Feral Interactive/XCOM 2/VFS/Local/my games/XCOM2/XComGame/SaveData/}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/feral-interactive/XCOM2/VFS/Local/my games/XCOM2/XComGame/SaveData/|{{P|xdgdatahome}}/feral-interactive/XCOM 2 WotC/VFS/Local/my games/XCOM2 War of the Chosen/XComGame/SaveData/}}" +"XCOM: Chimera Squad": gog: 1914671919 pageId: 159222 steam: 882100 templates: - - '{{Game data/config|Windows|{{p|USERPROFILE\Documents}}\My Games\XCOM Chimera Squad\XComGame\Config}}' - - '{{Game data/saves|Windows|{{p|USERPROFILE\Documents}}\My Games\XCOM Chimera Squad\XComGame\SaveData}}' -'XCOM: Enemy Unknown': + - "{{Game data/config|Windows|{{p|USERPROFILE\\Documents}}\\My Games\\XCOM Chimera Squad\\XComGame\\Config}}" + - "{{Game data/saves|Windows|{{p|USERPROFILE\\Documents}}\\My Games\\XCOM Chimera Squad\\XComGame\\SaveData}}" +"XCOM: Enemy Unknown": gog: 1558688142 pageId: 3709 steam: 200510 steamSide: - - 225340 - - 209812 - 209811 + - 209812 + - 225340 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\XCOM - Enemy - Unknown\XComGame\Config\|{{p|userprofile\Documents}}\My Games\XCOM - Enemy Within\XComGame\Config\}} - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Feral Interactive/XCOM Enemy Unknown/}}' - - '{{Game data/config|Linux|{{P|xdgdatahome}}/feral-interactive/XCOM/WritableFiles/}}' - - >- - {{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\XCOM - Enemy - Unknown\XComGame\SaveData\|{{p|userprofile\Documents}}\My Games\XCOM - Enemy Within\XComGame\SaveData\}} - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Feral Interactive/XCOM Enemy Unknown/}}' - - >- - {{Game - data/saves|Linux|{{P|xdgdatahome}}/feral-interactive/XCOM/savedata/|{{P|xdgdatahome}}/feral-interactive/XCOM/XEW/savedata/}} + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\XCOM - Enemy Unknown\\XComGame\\Config\\|{{p|userprofile\\Documents}}\\My Games\\XCOM - Enemy Within\\XComGame\\Config\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/Feral Interactive/XCOM Enemy Unknown/}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/feral-interactive/XCOM/WritableFiles/}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\XCOM - Enemy Unknown\\XComGame\\SaveData\\|{{p|userprofile\\Documents}}\\My Games\\XCOM - Enemy Within\\XComGame\\SaveData\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/Feral Interactive/XCOM Enemy Unknown/}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/feral-interactive/XCOM/savedata/|{{P|xdgdatahome}}/feral-interactive/XCOM/XEW/savedata/}}" XCavalypse: pageId: 42670 steam: 447960 XDefiant: pageId: 170132 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\XDefiant\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\XDefiant\\}}" XDrive VR: pageId: 63310 steam: 623370 @@ -195193,11 +189762,11 @@ XEL: pageId: 170944 steam: 1674640 templates: - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\Tiny Roar\XEL\SaveData}}' + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\Tiny Roar\\XEL\\SaveData}}" XENOS Defense: pageId: 144061 steam: 1122760 -'XERA: Survival': +"XERA: Survival": pageId: 98184 steam: 625340 XEYYEX: @@ -195221,26 +189790,26 @@ XIII: pageId: 3514 steam: 1170760 templates: - - '{{Game data/config|Windows|{{p|game}}\system\}}' - - '{{Game data/saves|Windows|{{p|game}}\save\}}' + - "{{Game data/config|Windows|{{p|game}}\\system\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\save\\}}" XIII (2020): gog: 1169744036 pageId: 133767 steam: 1154790 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\SOFTWARE\Microids\XIII\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Microids\XIII\XIII_Save.bin}}' -'XIII Century: Blood of Europe': + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\Microids\\XIII\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Microids\\XIII\\XIII_Save.bin}}" +"XIII Century: Blood of Europe": pageId: 51253 steam: 34420 -'XIII Century: Death or Glory': +"XIII Century: Death or Glory": gog: 2125623626 pageId: 41242 steam: 34420 templates: - - '{{Game data/config|Windows|{{p|userprofile\documents}}\My Games\XIII Century Gold Edition\profiles\*.cfg}}' - - '{{Game data/saves|Windows|{{p|userprofile\documents}}\My Games\XIII Century Gold Edition\profiles}}' -'XIII: Lost Identity': + - "{{Game data/config|Windows|{{p|userprofile\\documents}}\\My Games\\XIII Century Gold Edition\\profiles\\*.cfg}}" + - "{{Game data/saves|Windows|{{p|userprofile\\documents}}\\My Games\\XIII Century Gold Edition\\profiles}}" +"XIII: Lost Identity": pageId: 89210 renamedFrom: - XIII - Lost Identity @@ -195248,25 +189817,25 @@ XIII (2020): XIIZEAL: pageId: 47603 steam: 364250 -'XING: The Land Beyond': +"XING: The Land Beyond": pageId: 58571 steam: 299400 templates: - - '{{Game data/config|Windows|{{P|game}}\XING\Saved\Config\WindowsNoEditor\}}' - - '{{Game data/saves|Windows|{{P|game}}\XING\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{P|game}}\\XING\\Saved\\Config\\WindowsNoEditor\\}}" + - "{{Game data/saves|Windows|{{P|game}}\\XING\\Saved\\SaveGames\\}}" XL1-ClippingPoint: pageId: 82730 steam: 747240 templates: - - '{{Game data/config|Windows|{{p|game}}\clientconfig.g}}' - - '{{Game data/saves|Windows|n/a}}' + - "{{Game data/config|Windows|{{p|game}}\\clientconfig.g}}" + - "{{Game data/saves|Windows|n/a}}" XLR: pageId: 43761 steam: 447100 XLarn: pageId: 47805 steam: 360030 -'XMinutes: Wings': +"XMinutes: Wings": pageId: 65490 steam: 671050 XMoon: @@ -195291,8 +189860,8 @@ XOXO Droplets: pageId: 61160 steam: 622060 templates: - - '{{Game data/config|Windows|{{P|appdata}}\renpy\XOXO-1436249064\persistent}}' - - '{{Game data/saves|Windows|{{P|appdata}}\renpy\XOXO-1436249064\*.save}}' + - "{{Game data/config|Windows|{{P|appdata}}\\renpy\\XOXO-1436249064\\persistent}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\renpy\\XOXO-1436249064\\*.save}}" XP Girls: pageId: 153060 steam: 1178120 @@ -195308,16 +189877,16 @@ XXZ: pageId: 68416 steam: 692920 templates: - - '{{Game data/saves|Windows|{{p|steam}}\userdata\{{p|uid}}\692920}}' -'XXZ: XXL': + - "{{Game data/saves|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\692920}}" +"XXZ: XXL": pageId: 68426 renamedFrom: - - 'XXZ: Strip Club' + - "XXZ: Strip Club" steam: 696590 XZ: pageId: 92019 steam: 771180 -'XZ: XL': +"XZ: XL": pageId: 94342 steam: 771190 Xagia Wars: @@ -195328,16 +189897,16 @@ Xanadu Next: pageId: 52294 steam: 312560 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\Saved Games\FALCOM\X_NEXT\config.ini}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\Saved Games\FALCOM\X_NEXT\}}' -'Xander the Monster Morpher: Universe Breaker': + - "{{Game data/config|Windows|{{p|userprofile}}\\Saved Games\\FALCOM\\X_NEXT\\config.ini}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Saved Games\\FALCOM\\X_NEXT\\}}" +"Xander the Monster Morpher: Universe Breaker": pageId: 141711 steam: 1025160 Xargon: pageId: 19401 templates: - - '{{Game data/config|DOS|{{p|game}}\CONFIG.XR*}}' - - '{{Game data/saves|DOS|{{p|game}}\SAVE_*.XR*}}' + - "{{Game data/config|DOS|{{p|game}}\\CONFIG.XR*}}" + - "{{Game data/saves|DOS|{{p|game}}\\SAVE_*.XR*}}" Xark: pageId: 60960 steam: 546670 @@ -195347,7 +189916,7 @@ Xbird: Xecryst Remains: pageId: 127817 steam: 510000 -'Xemo: Robot Simulation': +"Xemo: Robot Simulation": pageId: 53668 steam: 542210 Xenia: @@ -195355,7 +189924,7 @@ Xenia: steam: 687310 Xenia (Emulator): pageId: 169035 -Xenia's Ark: +"Xenia's Ark": pageId: 114602 steam: 944640 Xeno Crisis: @@ -195363,8 +189932,8 @@ Xeno Crisis: pageId: 133038 steam: 464260 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\SOFTWARE\Bitmap Bureau\Xeno Crisis}}' - - '{{Game data/saves|Windows|{{P|hkcu}}\SOFTWARE\Bitmap Bureau\Xeno Crisis}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\SOFTWARE\\Bitmap Bureau\\Xeno Crisis}}" + - "{{Game data/saves|Windows|{{P|hkcu}}\\SOFTWARE\\Bitmap Bureau\\Xeno Crisis}}" Xeno Time Inception: pageId: 100778 steam: 721460 @@ -195404,13 +189973,13 @@ Xenomarine: Xenomorph: pageId: 80350 steam: 768990 -'Xenon 2: Megablast': +"Xenon 2: Megablast": pageId: 107044 Xenon Racer: pageId: 122628 steam: 899390 templates: - - '{{Game data/saves|Windows|{{p|localappdata}}\3DClouds\XenonRacer\Saved}}' + - "{{Game data/saves|Windows|{{p|localappdata}}\\3DClouds\\XenonRacer\\Saved}}" Xenon Valkyrie: pageId: 55772 steam: 573780 @@ -195419,13 +189988,11 @@ Xenonauts: pageId: 7809 steam: 223830 templates: - - >- - {{Game data/config|Windows|{{p|hkcu}}\SOFTWARE\Goldhawk Interactive\Xenonauts\|{{p|appdata}}\Goldhawk - Interactive\Xenonauts\}} - - '{{Game data/config|Linux|{{P|xdgdatahome}}/Goldhawk Interactive/Xenonauts/}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Xenonauts\}}' - - '{{Game data/saves|OS X|{{p|userprofile}}\Library\Application Support\Goldhawk Interactive\Xenonauts\}}' - - '{{Game data/saves|Linux|{{P|xdgdatahome}}/Goldhawk Interactive/Xenonauts/}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\Goldhawk Interactive\\Xenonauts\\|{{p|appdata}}\\Goldhawk Interactive\\Xenonauts\\}}" + - "{{Game data/config|Linux|{{P|xdgdatahome}}/Goldhawk Interactive/Xenonauts/}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Xenonauts\\}}" + - "{{Game data/saves|OS X|{{p|userprofile}}\\Library\\Application Support\\Goldhawk Interactive\\Xenonauts\\}}" + - "{{Game data/saves|Linux|{{P|xdgdatahome}}/Goldhawk Interactive/Xenonauts/}}" Xenonauts 2: gog: 1412583633 gogSide: @@ -195433,16 +190000,16 @@ Xenonauts 2: pageId: 91681 steam: 538030 templates: - - '{{Game data/saves|Windows|{{p|userprofile\documents}}\My Games\Xenonauts 2\Saves\*.json}}' -'Xenophage: Alien Bloodsport': + - "{{Game data/saves|Windows|{{p|userprofile\\documents}}\\My Games\\Xenonauts 2\\Saves\\*.json}}" +"Xenophage: Alien Bloodsport": pageId: 30473 steam: 358420 templates: - - '{{Game data/config|DOS|{{p|game}}\XPR.INI}}' + - "{{Game data/config|DOS|{{p|game}}\\XPR.INI}}" Xenoraid: pageId: 39243 steam: 460220 -'Xenosis: Alien Infection': +"Xenosis: Alien Infection": pageId: 90453 steam: 611820 Xenoslaive Overdrive: @@ -195457,12 +190024,12 @@ Xentripetal Force: Xenture: pageId: 181024 steam: 1786730 -'Xenus II: White Gold': +"Xenus II: White Gold": pageId: 54297 steam: 546230 templates: - - '{{Game data/config|Windows|{{p|public}}\Documents\White Gold\INI\}}' - - '{{Game data/saves|Windows|{{p|public}}\Documents\White Gold\SAVE\}}' + - "{{Game data/config|Windows|{{p|public}}\\Documents\\White Gold\\INI\\}}" + - "{{Game data/saves|Windows|{{p|public}}\\Documents\\White Gold\\SAVE\\}}" Xeodrifter: pageId: 49133 steam: 319140 @@ -195472,7 +190039,7 @@ Xilost: Xion: pageId: 64186 steam: 644420 -Xiu's SuperMarket: +"Xiu's SuperMarket": pageId: 139015 steam: 1064440 Xmas Shooting - Scramble!!: @@ -195496,10 +190063,10 @@ Xobox - circle and cross: Xonotic: pageId: 9442 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\Saved Games\xonotic\}}' - - '{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/xonotic/}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.xonotic/data/}}' -XorceD - Sashiro's Laedrum: + - "{{Game data/config|Windows|{{p|userprofile}}\\Saved Games\\xonotic\\}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/xonotic/}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.xonotic/data/}}" +"XorceD - Sashiro's Laedrum": pageId: 43606 steam: 454170 Xorple: @@ -195509,22 +190076,20 @@ Xotic: pageId: 40909 steam: 92600 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\WXP\Xotic\Settings\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Xotic\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\WXP\\Xotic\\Settings\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Xotic\\}}" Xpand Rally: pageId: 279 steam: 3010 templates: - - '{{Game data/config|Windows|{{p|game}}/Data/}}' - - '{{Game data/saves|Windows|{{p|game}}/Data/profiles/{{p|uid}}/}}' + - "{{Game data/config|Windows|{{p|game}}/Data/}}" + - "{{Game data/saves|Windows|{{p|game}}/Data/profiles/{{p|uid}}/}}" Xpand Rally Xtreme: pageId: 17697 steam: 3050 templates: - - >- - {{Game - data/config|Windows|{{p|game}}\Data\AudioSettings.scr|{{p|game}}\Data\Controller.scr|{{p|game}}\Data\NetState.sav|{{p|game}}\Data\VideoSettings.scr|{{p|game}}\Data\VideoSettingsXR.scr|{{p|game}}\Data\VideoSettingsXR_MP.scr}} - - '{{Game data/saves|Windows|{{p|game}}\Data\profiles\|{{p|game}}\Data\RacesData\}}' + - "{{Game data/config|Windows|{{p|game}}\\Data\\AudioSettings.scr|{{p|game}}\\Data\\Controller.scr|{{p|game}}\\Data\\NetState.sav|{{p|game}}\\Data\\VideoSettings.scr|{{p|game}}\\Data\\VideoSettingsXR.scr|{{p|game}}\\Data\\VideoSettingsXR_MP.scr}}" + - "{{Game data/saves|Windows|{{p|game}}\\Data\\profiles\\|{{p|game}}\\Data\\RacesData\\}}" Xploquest: pageId: 77571 steam: 763870 @@ -195546,15 +190111,15 @@ Xtreme Paddleball: Xtrike: pageId: 69194 steam: 658250 -'Xuan-Yuan Sword 3 EX: The Scar of the Sky': +"Xuan-Yuan Sword 3 EX: The Scar of the Sky": pageId: 170866 steam: 1638220 templates: - - '{{Game data/config|Windows|{{p|game}}\Env.dat}}' - - '{{Game data/config|Steam|{{p|localappdata}}\SOFTSTAR\SWD3E\env.dat}}' - - '{{Game data/saves|Windows|{{p|game}}\Save\*.*|{{p|game}}\Fame.dat|{{p|game}}\swdghost.dat}}' - - '{{Game data/saves|Steam|{{p|game}}\Save\*.*}}' -'Xuan-Yuan Sword EX: The Gate of Firmament': + - "{{Game data/config|Windows|{{p|game}}\\Env.dat}}" + - "{{Game data/config|Steam|{{p|localappdata}}\\SOFTSTAR\\SWD3E\\env.dat}}" + - "{{Game data/saves|Windows|{{p|game}}\\Save\\*.*|{{p|game}}\\Fame.dat|{{p|game}}\\swdghost.dat}}" + - "{{Game data/saves|Steam|{{p|game}}\\Save\\*.*}}" +"Xuan-Yuan Sword EX: The Gate of Firmament": pageId: 31498 steam: 427030 Xuan-Yuan Sword VII: @@ -195562,18 +190127,18 @@ Xuan-Yuan Sword VII: pageId: 164934 steam: 1249800 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\SOFTSTAR\SWD7\Saved\Config\WindowsNoEditor}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\SOFTSTAR\SWD7\Saved\SaveGames\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\SOFTSTAR\\SWD7\\Saved\\Config\\WindowsNoEditor}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\SOFTSTAR\\SWD7\\Saved\\SaveGames\\}}" X少女逃脱 x girl escape: pageId: 143867 steam: 1140340 -YANKAI'S PEAK.: +"YANKAI'S PEAK.": pageId: 63779 steam: 654910 -'YAPP2: Yet Another Pushing Puzzler': +"YAPP2: Yet Another Pushing Puzzler": pageId: 103221 steam: 853410 -'YAPP: Yet Another Puzzle Platformer': +"YAPP: Yet Another Puzzle Platformer": pageId: 75646 steam: 745250 YARBAY: @@ -195588,13 +190153,13 @@ YAWS - Yet Another Waveshooter: YBit: pageId: 70689 steam: 712660 -'YIIK: A Postmodern RPG': +"YIIK: A Postmodern RPG": gog: 2005058230 pageId: 108648 steam: 459080 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\AckkStudios\YIIK: A Postmodern RPG\}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\AckkStudios\YIIK_ A Postmodern RPG\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\AckkStudios\\YIIK: A Postmodern RPG\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\AckkStudios\\YIIK_ A Postmodern RPG\\}}" YOLKED - The Egg Game: pageId: 180001 steam: 1464010 @@ -195607,27 +190172,23 @@ YORG.io: YORG.io 3: pageId: 148258 steam: 1134480 -'YOU and ME and HER: A Love Story': +"YOU and ME and HER: A Love Story": pageId: 165818 steam: 1293820 templates: - - '{{Game data/saves|Windows|{{P|appdata}}\Nitroplus\totono\}}' -'YU-NO: A Girl Who Chants Love at the Bound of this World': + - "{{Game data/saves|Windows|{{P|appdata}}\\Nitroplus\\totono\\}}" +"YU-NO: A Girl Who Chants Love at the Bound of this World": pageId: 134145 steam: 912450 templates: - - >- - {{Game data/config|Windows|{{p|userprofile\Documents}}\My - Games\mages_steam\YUNO\eng\|{{p|userprofile\Documents}}\My Games\mages_steam\YUNO\jpn\}} - - >- - {{Game data/saves|Windows|{{p|userprofile\Documents}}\My - Games\mages_steam\YUNO\eng\|{{p|userprofile\Documents}}\My Games\mages_steam\YUNO\jpn\}} -'YU-NO: A Girl Who Chants Love at the Bound of this World (2000)': + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\mages_steam\\YUNO\\eng\\|{{p|userprofile\\Documents}}\\My Games\\mages_steam\\YUNO\\jpn\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\mages_steam\\YUNO\\eng\\|{{p|userprofile\\Documents}}\\My Games\\mages_steam\\YUNO\\jpn\\}}" +"YU-NO: A Girl Who Chants Love at the Bound of this World (2000)": pageId: 175255 templates: - - '{{Game data/config|Windows|{{p|game}}}}' - - '{{Game data/saves|Windows|{{p|game}}}}' -'YUNA: Sugar hearts and Love': + - "{{Game data/config|Windows|{{p|game}}}}" + - "{{Game data/saves|Windows|{{p|game}}}}" +"YUNA: Sugar hearts and Love": pageId: 122574 steam: 960340 YUT YUT: @@ -195647,71 +190208,61 @@ Yaga: pageId: 105611 steam: 888530 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\SOFTWARE\Breadcrumbs\Yaga}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Breadcrumbs\Yaga\}}' - - '{{Game data/saves|Steam|{{P|steam}}\userdata\{{P|uid}}\888530\remote\}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\SOFTWARE\\Breadcrumbs\\Yaga}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Breadcrumbs\\Yaga\\}}" + - "{{Game data/saves|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\888530\\remote\\}}" Yager: pageId: 186269 templates: - - '{{Game data/config|Windows|{{p|game}}\config.ysc}}' - - '{{Game data/saves|Windows|{{p|game}}\savgames}}' -'Yago, the Coquerrestrial': + - "{{Game data/config|Windows|{{p|game}}\\config.ysc}}" + - "{{Game data/saves|Windows|{{p|game}}\\savgames}}" +"Yago, the Coquerrestrial": pageId: 75419 steam: 744390 Yahrit!: pageId: 99950 steam: 862370 -'Yaiba: Ninja Gaiden Z': +"Yaiba: Ninja Gaiden Z": pageId: 16058 steam: 252230 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\NRZGame\NRZGame\Config\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\NRZGame\NRZGame\SaveData\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\NRZGame\\NRZGame\\Config\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\NRZGame\\NRZGame\\SaveData\\}}" Yakuza 0: gog: 1103602225 pageId: 97277 steam: 638970 templates: - - '{{Game data/config|Windows|{{P|appdata}}\Sega\Yakuza0\}}' - - >- - {{Game data/config|Microsoft - Store|{{P|localappdata}}\Packages\SEGAofAmericaInc.Yakuza0PC_s751p9cej88mt\LocalCache\Local\Sega\Yakuza0}} - - '{{Game data/saves|GOG.com|{{P|localappdata}}\GOG.com\Galaxy\Applications\55966314534907843\Storage\Shared\Files\}}' - - >- - {{Game data/saves|Microsoft - Store|{{P|localappdata}}\Packages\SEGAofAmericaInc.Yakuza0PC_s751p9cej88mt\SystemAppData\wgs\{{p|uid}}\}} - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\638970\remote\}}' + - "{{Game data/config|Windows|{{P|appdata}}\\Sega\\Yakuza0\\}}" + - "{{Game data/config|Microsoft Store|{{P|localappdata}}\\Packages\\SEGAofAmericaInc.Yakuza0PC_s751p9cej88mt\\LocalCache\\Local\\Sega\\Yakuza0}}" + - "{{Game data/saves|GOG.com|{{P|localappdata}}\\GOG.com\\Galaxy\\Applications\\55966314534907843\\Storage\\Shared\\Files\\}}" + - "{{Game data/saves|Microsoft Store|{{P|localappdata}}\\Packages\\SEGAofAmericaInc.Yakuza0PC_s751p9cej88mt\\SystemAppData\\wgs\\{{p|uid}}\\}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\638970\\remote\\}}" Yakuza 3 Remastered: gog: 1453650568 pageId: 165646 steam: 1088710 templates: - - '{{Game data/config|Windows|{{P|appdata}}\Sega\Yakuza3\}}' - - >- - {{Game data/saves|Microsoft - Store|{{P|localappdata}}\Packages\SEGAofAmericaInc.Yakuza3PC_\SystemAppData\wgs}} - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\1088710\remote\}}' + - "{{Game data/config|Windows|{{P|appdata}}\\Sega\\Yakuza3\\}}" + - "{{Game data/saves|Microsoft Store|{{P|localappdata}}\\Packages\\SEGAofAmericaInc.Yakuza3PC_\\SystemAppData\\wgs}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\1088710\\remote\\}}" Yakuza 4 Remastered: gog: 1311648027 pageId: 165647 steam: 1105500 templates: - - '{{Game data/config|Windows|{{P|appdata}}\Sega\Yakuza4\}}' - - >- - {{Game data/saves|Microsoft - Store|{{P|localappdata}}\Packages\SEGAofAmericaInc.Yakuza4PC_\SystemAppData\wgs}} - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\1105500\remote\}}' + - "{{Game data/config|Windows|{{P|appdata}}\\Sega\\Yakuza4\\}}" + - "{{Game data/saves|Microsoft Store|{{P|localappdata}}\\Packages\\SEGAofAmericaInc.Yakuza4PC_\\SystemAppData\\wgs}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\1105500\\remote\\}}" Yakuza 5 Remastered: gog: 1896187920 pageId: 165648 steam: 1105510 templates: - - '{{Game data/config|Windows|{{P|appdata}}\Sega\Yakuza5\}}' - - >- - {{Game data/saves|Microsoft - Store|{{P|localappdata}}\Packages\SEGAofAmericaInc.Yakuza5PC_s751p9cej88mt\SystemAppData\wgs\}} - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\1105510\remote\}}' -'Yakuza 6: The Song of Life': + - "{{Game data/config|Windows|{{P|appdata}}\\Sega\\Yakuza5\\}}" + - "{{Game data/saves|Microsoft Store|{{P|localappdata}}\\Packages\\SEGAofAmericaInc.Yakuza5PC_s751p9cej88mt\\SystemAppData\\wgs\\}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\1105510\\remote\\}}" +"Yakuza 6: The Song of Life": gog: 1086074447 gogSide: - 1734118373 @@ -195720,11 +190271,9 @@ Yakuza 5 Remastered: steamSide: - 1478720 templates: - - '{{Game data/config|Windows|{{P|appdata}}\Sega\Yakuza6\}}' - - >- - {{Game data/config|Microsoft - Store|{{P|localappdata}}\Packages\SEGAofAmericaInc.Yakuza6PC_s751p9cej88mt\LocalCache\Local\SEGA\Yakuza6\}} - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\1388590\remote\}}' + - "{{Game data/config|Windows|{{P|appdata}}\\Sega\\Yakuza6\\}}" + - "{{Game data/config|Microsoft Store|{{P|localappdata}}\\Packages\\SEGAofAmericaInc.Yakuza6PC_s751p9cej88mt\\LocalCache\\Local\\SEGA\\Yakuza6\\}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\1388590\\remote\\}}" Yakuza Empire: pageId: 168269 steam: 1349300 @@ -195736,14 +190285,10 @@ Yakuza Kiwami: pageId: 97273 steam: 834530 templates: - - '{{Game data/config|Windows|{{P|appdata}}\Sega\YakuzaKiwami\}}' - - >- - {{Game data/config|Microsoft - Store|{{P|localappdata}}\Packages\SEGAofAmericaInc.YakuzaKiwamiPC_s751p9cej88mt\LocalCache\Local\Sega\YakuzaKiwami\}} - - >- - {{Game data/saves|Microsoft - Store|{{P|localappdata}}\Packages\SEGAofAmericaInc.YakuzaKiwamiPC_s751p9cej88mt\SystemAppData\wgs\{{p|uid}}\}} - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\834530\remote\}}' + - "{{Game data/config|Windows|{{P|appdata}}\\Sega\\YakuzaKiwami\\}}" + - "{{Game data/config|Microsoft Store|{{P|localappdata}}\\Packages\\SEGAofAmericaInc.YakuzaKiwamiPC_s751p9cej88mt\\LocalCache\\Local\\Sega\\YakuzaKiwami\\}}" + - "{{Game data/saves|Microsoft Store|{{P|localappdata}}\\Packages\\SEGAofAmericaInc.YakuzaKiwamiPC_s751p9cej88mt\\SystemAppData\\wgs\\{{p|uid}}\\}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\834530\\remote\\}}" Yakuza Kiwami 2: gog: 1478349159 gogSide: @@ -195753,16 +190298,14 @@ Yakuza Kiwami 2: steamSide: - 1030500 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Sega\YakuzaKiwami2\}}' - - >- - {{Game data/config|Microsoft - Store|{{p|localappdata}}\Packages\SEGAofAmericaInc.YakuzaKiwami2PC_s751p9cej88mt\LocalCache\Local\Sega\YakuzaKiwami2\}} - - '{{Game data/saves|Windows|{{p|appdata}}\Sega\YakuzaKiwami2\{{p|uid}}\}}' -'Yakuza: Like a Dragon': + - "{{Game data/config|Windows|{{p|appdata}}\\Sega\\YakuzaKiwami2\\}}" + - "{{Game data/config|Microsoft Store|{{p|localappdata}}\\Packages\\SEGAofAmericaInc.YakuzaKiwami2PC_s751p9cej88mt\\LocalCache\\Local\\Sega\\YakuzaKiwami2\\}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Sega\\YakuzaKiwami2\\{{p|uid}}\\}}" +"Yakuza: Like a Dragon": gog: 1229228729 gogSide: - - 1583673857 - 1573344224 + - 1583673857 - 1824922415 - 1851599391 - 2018318415 @@ -195779,12 +190322,10 @@ Yakuza Kiwami 2: - 1289211 - 1289234 templates: - - '{{Game data/config|Windows|{{P|appdata}}\Sega\YakuzaLikeADragon\}}' - - '{{Game data/config|Microsoft Store|{{P|appdata}}\Sega\YakuzaLikeADragonWin10\}}' - - '{{Game data/saves|Windows|{{P|appdata}}\Sega\YakuzaLikeADragon\{{P|uid}}\}}' - - >- - {{Game data/saves|Microsoft - Store|{{P|localappdata}}\Packages\SEGAofAmericaInc.Yazawa_s751p9cej88mt\SystemAppData\wgs\{{P|uid}}\}} + - "{{Game data/config|Windows|{{P|appdata}}\\Sega\\YakuzaLikeADragon\\}}" + - "{{Game data/config|Microsoft Store|{{P|appdata}}\\Sega\\YakuzaLikeADragonWin10\\}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\Sega\\YakuzaLikeADragon\\{{P|uid}}\\}}" + - "{{Game data/saves|Microsoft Store|{{P|localappdata}}\\Packages\\SEGAofAmericaInc.Yazawa_s751p9cej88mt\\SystemAppData\\wgs\\{{P|uid}}\\}}" Yama: pageId: 68859 steam: 661610 @@ -195803,42 +190344,40 @@ Yandere School: Yandere Simulator: pageId: 58287 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\YandereDev\Yandere Simulator Debug Build\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\YandereDev\\Yandere Simulator Debug Build\\}}" Yang2020 Path To Presidency: pageId: 153938 steam: 1204720 YangBo Adventure: pageId: 80525 steam: 772460 -Yankai's Triangle: +"Yankai's Triangle": pageId: 50925 steam: 527740 -'Yanone: Letter Splatter': +"Yanone: Letter Splatter": pageId: 76091 steam: 748830 Yanpai Simulator: pageId: 124000 steam: 990850 -Yar's Revenge: +"Yar's Revenge": pageId: 40990 steam: 99120 templates: - - '{{Game data/config|Windows|{{p|game}}\win32\AppSettings.ini|{{p|game}}\win32\Config.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\win32\savegame.svg}}' + - "{{Game data/config|Windows|{{p|game}}\\win32\\AppSettings.ini|{{p|game}}\\win32\\Config.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\win32\\savegame.svg}}" Yargis - Space Melee: pageId: 47429 steam: 369040 -Yars' Revenge: +"Yars' Revenge": pageId: 181095 -'Yars: Recharged': +"Yars: Recharged": gog: 2098611621 pageId: 181093 steam: 2019990 templates: - - >- - {{Game data/config|Windows|{{P|userprofile\appdata\locallow}}\Atari Inc_\Yars - Recharged\Yars_Recharged\config.txt|{{P|hkcu}}\Software\Atari Inc.\Yars Recharged\}} - - '{{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Atari Inc_\Yars Recharged\Yars_Recharged\save.sav}}' + - "{{Game data/config|Windows|{{P|userprofile\\appdata\\locallow}}\\Atari Inc_\\Yars Recharged\\Yars_Recharged\\config.txt|{{P|hkcu}}\\Software\\Atari Inc.\\Yars Recharged\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Atari Inc_\\Yars Recharged\\Yars_Recharged\\save.sav}}" Yasai Ninja: pageId: 47192 steam: 372150 @@ -195849,8 +190388,8 @@ Yatagarasu Attack on Cataclysm: pageId: 26200 steam: 319280 templates: - - '{{Game data/config|Windows|{{p|appdata}}\PDWHOTAPEN\}}' - - '{{Game data/saves|Windows|{{p|appdata}}\PDWHOTAPEN\}}' + - "{{Game data/config|Windows|{{p|appdata}}\\PDWHOTAPEN\\}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\PDWHOTAPEN\\}}" Yatsumitsu Fists of Wrath: pageId: 68126 steam: 696930 @@ -195860,22 +190399,22 @@ Yatzy: Ye Fenny - Revenge of the Evil Good Shepherd: pageId: 78589 steam: 769020 -'Yeah Jam Fury: U, Me, Everybody!': +"Yeah Jam Fury: U, Me, Everybody!": pageId: 75125 steam: 633930 Year Walk: pageId: 15680 steam: 269050 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Simogo\Year Walk\gamedata.bin}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/unity.Simogo.Year Walk}}' -Yearn Tyrant's Conquest: + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Simogo\\Year Walk\\gamedata.bin}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/unity.Simogo.Year Walk}}" +"Yearn Tyrant's Conquest": pageId: 90993 steam: 449070 Yearning: pageId: 120767 steam: 969740 -'Yearning: A Gay Story': +"Yearning: A Gay Story": pageId: 178990 steam: 1690530 Yelaxot: @@ -195889,7 +190428,7 @@ Yello Bandana: steam: 681420 Yellow Brick Road: pageId: 165473 -'Yellow: The Yellow Artifact': +"Yellow: The Yellow Artifact": pageId: 33413 steam: 486820 Yellowtoy: @@ -195901,20 +190440,20 @@ Yemon: Yerah: pageId: 89288 steam: 717380 -'Yes, Master!': +"Yes, Master!": pageId: 139562 steam: 1090900 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Yes, Master!\}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Yes, Master!\}}' -'Yes, Your Grace': + - "{{Game data/config|Windows|{{p|appdata}}\\Yes, Master!\\}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Yes, Master!\\}}" +"Yes, Your Grace": gog: 1482195316 pageId: 151317 steam: 1115690 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Brave At Night\Yes, Your Grace}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Brave At Night\Yes, Your Grace}}' -'Yes, Your Grace: Snowfall': + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Brave At Night\\Yes, Your Grace}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Brave At Night\\Yes, Your Grace}}" +"Yes, Your Grace: Snowfall": pageId: 187784 steam: 1373090 YesterMorrow: @@ -195926,8 +190465,8 @@ Yesterday: pageId: 40814 steam: 205840 templates: - - '{{Game data/config|Windows|{{p|programdata}}\Pendulo Studios\Yesterday\ps.config}}' - - '{{Game data/saves|Windows|{{p|programdata}}\Pendulo Studios\Yesterday\SAVEGAME}}' + - "{{Game data/config|Windows|{{p|programdata}}\\Pendulo Studios\\Yesterday\\ps.config}}" + - "{{Game data/saves|Windows|{{p|programdata}}\\Pendulo Studios\\Yesterday\\SAVEGAME}}" Yesterday (Triple Tree Studio): pageId: 68823 steam: 649360 @@ -195936,12 +190475,8 @@ Yesterday Origins: pageId: 39274 steam: 465280 templates: - - >- - {{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\PenduloStudios\Yesterday - Origins\YesterdayOriginsConfig.yo}} - - >- - {{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\PenduloStudios\Yesterday - Origins\YesterdayOriginsSaveGame*.yo}} + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\PenduloStudios\\Yesterday Origins\\YesterdayOriginsConfig.yo}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\PenduloStudios\\Yesterday Origins\\YesterdayOriginsSaveGame*.yo}}" Yet Another Hero Legend 英雄传说又一则: pageId: 138842 steam: 1083750 @@ -195967,7 +190502,7 @@ Yet Another Zombie Defense: pageId: 29528 steam: 270550 templates: - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\SavedGames\YetAnotherZombieDefense\}}' + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\SavedGames\\YetAnotherZombieDefense\\}}" Yet Another Zombie Defense HD: pageId: 68148 steam: 674750 @@ -195977,18 +190512,15 @@ Yet another tower defence: Yeti Adventure: pageId: 58977 steam: 604810 -Yeti's Parole Officer: +"Yeti's Parole Officer": pageId: 80820 steam: 772320 Yggdra Union: pageId: 184583 steam: 2107860 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\sting\Yggdra Union\configdata\CONFIG.DAT}}' - - >- - {{Game data/saves|Windows|{{p|userprofile\Documents}}\sting\Yggdra Union\savedata\SYSTEM.DAT | - {{p|userprofile\Documents}}\sting\Yggdra Union\savedata\STORY##.DAT | {{p|userprofile\Documents}}\sting\Yggdra - Union\savedata\CONTINUE##.DAT}} + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\sting\\Yggdra Union\\configdata\\CONFIG.DAT}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\sting\\Yggdra Union\\savedata\\SYSTEM.DAT | {{p|userprofile\\Documents}}\\sting\\Yggdra Union\\savedata\\STORY##.DAT | {{p|userprofile\\Documents}}\\sting\\Yggdra Union\\savedata\\CONTINUE##.DAT}}" Yggdrasil Jigsaw Puzzle: pageId: 132556 steam: 1045400 @@ -196008,7 +190540,7 @@ Ylands: pageId: 59131 steam: 298610 templates: - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Ylands\SaveGames}}' + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Ylands\\SaveGames}}" Ymir: pageId: 65503 steam: 378360 @@ -196025,8 +190557,8 @@ Yogurt!: pageId: 164544 steam: 1390740 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\DefaultCompany\Yogurt!\}}' - - '{{Game data/saves|Windows|{{p|hkcu}}\Software\DefaultCompany\Yogurt!\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\DefaultCompany\\Yogurt!\\}}" + - "{{Game data/saves|Windows|{{p|hkcu}}\\Software\\DefaultCompany\\Yogurt!\\}}" Yohane the Parhelion -BLAZE in the DEEPBLUE-: pageId: 191001 steam: 2404370 @@ -196039,51 +190571,43 @@ Yohjo Simulator: Yokai Mask: pageId: 111960 steam: 708160 -Yokai's Secret: +"Yokai's Secret": pageId: 173518 steam: 1146630 templates: - - >- - {{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\Double W\Yokai's - Secret\save_0.dat|{{p|userprofile\appdata\locallow}}\Double W\Yokai's Secret\saveinfo.dat}} + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\Double W\\Yokai's Secret\\save_0.dat|{{p|userprofile\\appdata\\locallow}}\\Double W\\Yokai's Secret\\saveinfo.dat}}" Yoke Light: pageId: 99360 steam: 858730 -Yoku's Island Express: +"Yoku's Island Express": gog: 1576137547 pageId: 58268 steam: 334940 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Villa Gorilla\Yoku''s Island Express\config.csv}}' - - >- - {{Game data/config|Microsoft - Store|{{P|localappdata}}\Packages\Team17DigitalLimited.YokusIslandExpressWin10_j5x4vj4y67jhc\LocalCache\Roaming\Villa - Gorilla\Yoku's Island Express\config.csv}} - - '{{Game data/saves|Windows|{{p|appdata}}\Villa Gorilla\Yoku''s Island Express\}}' - - >- - {{Game data/saves|Microsoft - Store|{{P|localappdata}}\Packages\Team17DigitalLimited.YokusIslandExpressWin10_j5x4vj4y67jhc\LocalCache\Roaming\Villa - Gorilla\Yoku's Island Express\}} - - '{{Game data/saves|Steam|{{p|Steam}}\userdata\{{p|uid}}\334940\remote\}}' + - "{{Game data/config|Windows|{{p|appdata}}\\Villa Gorilla\\Yoku's Island Express\\config.csv}}" + - "{{Game data/config|Microsoft Store|{{P|localappdata}}\\Packages\\Team17DigitalLimited.YokusIslandExpressWin10_j5x4vj4y67jhc\\LocalCache\\Roaming\\Villa Gorilla\\Yoku's Island Express\\config.csv}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Villa Gorilla\\Yoku's Island Express\\}}" + - "{{Game data/saves|Microsoft Store|{{P|localappdata}}\\Packages\\Team17DigitalLimited.YokusIslandExpressWin10_j5x4vj4y67jhc\\LocalCache\\Roaming\\Villa Gorilla\\Yoku's Island Express\\}}" + - "{{Game data/saves|Steam|{{p|Steam}}\\userdata\\{{p|uid}}\\334940\\remote\\}}" Yoltrund: pageId: 79428 steam: 770120 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Templarius Studios\Yoltrund}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/unity.Templarius Studios.Yoltrund}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Templarius Studios/Yoltrund}}' -'Yomawari: Lost in the Dark': + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Templarius Studios\\Yoltrund}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/unity.Templarius Studios.Yoltrund}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Templarius Studios/Yoltrund}}" +"Yomawari: Lost in the Dark": pageId: 185932 steam: 1998330 -'Yomawari: Midnight Shadows': +"Yomawari: Midnight Shadows": pageId: 61802 steam: 625980 -'Yomawari: Night Alone': +"Yomawari: Night Alone": pageId: 39329 steam: 477870 templates: - - '{{Game data/config|Windows|{{p|game}}\settings.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\data\savedata\}}' + - "{{Game data/config|Windows|{{p|game}}\\settings.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\data\\savedata\\}}" Yomi: pageId: 38416 steam: 287960 @@ -196093,23 +190617,19 @@ Yomi Alliance: Yon Paradox: pageId: 43147 steam: 450050 -'Yonder: The Cloud Catcher Chronicles': +"Yonder: The Cloud Catcher Chronicles": pageId: 60796 steam: 580200 templates: - - >- - {{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\Prideful Sloth\Yonder_ The Cloud Catcher - Chronicles}} - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Prideful Sloth\Yonder_ The Cloud Catcher Chronicles}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Prideful Sloth\\Yonder_ The Cloud Catcher Chronicles}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Prideful Sloth\\Yonder_ The Cloud Catcher Chronicles}}" Yono and the Celestial Elephants: gog: 2051103599 pageId: 69405 steam: 602430 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Neckbolt\Yono and the Celestial Elephants\}}' - - >- - {{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Neckbolt\Yono and the Celestial - Elephants\Resources\savefiles\}} + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Neckbolt\\Yono and the Celestial Elephants\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Neckbolt\\Yono and the Celestial Elephants\\Resources\\savefiles\\}}" Yooka-Laylee: gog: 1445853962 gogSide: @@ -196120,27 +190640,25 @@ Yooka-Laylee: steamSide: - 426750 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\SOFTWARE\Playtonic Ltd\Yooka-Laylee\}}' - - '{{Game data/config|Linux|{{p|xdgconfighome}}/unity3d/Playtonic Ltd/Yooka-Laylee/}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Playtonic Ltd\Yooka-Laylee\}}' - - '{{Game data/saves|Linux|{{p|steam}}/userdata/{{p|uid}}/360830/remote/}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\Playtonic Ltd\\Yooka-Laylee\\}}" + - "{{Game data/config|Linux|{{p|xdgconfighome}}/unity3d/Playtonic Ltd/Yooka-Laylee/}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Playtonic Ltd\\Yooka-Laylee\\}}" + - "{{Game data/saves|Linux|{{p|steam}}/userdata/{{p|uid}}/360830/remote/}}" Yooka-Laylee and the Impossible Lair: gog: 2095224271 pageId: 139472 steam: 846870 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Playtonic Ltd\Yooka-Laylee and the Impossible Lair\}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\Playtonic Ltd\Yooka-Laylee and the Impossible Lair\}}' - - >- - {{Game data/saves|Microsoft - Store|{{P|localappdata}}\Packages\Team17DigitalLimited.20270001033A3_j5x4vj4y67jhc\SystemAppData\wgs}} - - '{{Game data/saves|Steam|{{P|steam}}\userdata\{{P|uid}}\846870\remote\}}' -Yoomurjak's Ring: + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Playtonic Ltd\\Yooka-Laylee and the Impossible Lair\\}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\Playtonic Ltd\\Yooka-Laylee and the Impossible Lair\\}}" + - "{{Game data/saves|Microsoft Store|{{P|localappdata}}\\Packages\\Team17DigitalLimited.20270001033A3_j5x4vj4y67jhc\\SystemAppData\\wgs}}" + - "{{Game data/saves|Steam|{{P|steam}}\\userdata\\{{P|uid}}\\846870\\remote\\}}" +"Yoomurjak's Ring": pageId: 138821 steam: 774151 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Private Moon Studios\Yoomurjak\Yoomurjak.ini}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Private Moon Studios\Yoomurjak\Save\agon.sav}}' + - "{{Game data/config|Windows|{{p|appdata}}\\Private Moon Studios\\Yoomurjak\\Yoomurjak.ini}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Private Moon Studios\\Yoomurjak\\Save\\agon.sav}}" Yore VR: pageId: 51867 steam: 524380 @@ -196150,21 +190668,21 @@ Yorkshire Gubbins: pageId: 89278 steam: 716650 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\yorkshiregubbins\User Data\}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\yorkshiregubbins\User Data\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\yorkshiregubbins\\User Data\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\yorkshiregubbins\\User Data\\}}" Yosumin!: pageId: 30551 steam: 23300 templates: - - '{{Game data/saves|Windows|{{p|game}}\*.dat}}' + - "{{Game data/saves|Windows|{{p|game}}\\*.dat}}" Yotsunoha: pageId: 113454 steam: 880150 You Are Empty: pageId: 6712 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\YaE\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\YaE\savegames\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\YaE\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\YaE\\savegames\\}}" You Are God: pageId: 58176 steam: 596280 @@ -196205,37 +190723,37 @@ You Deserve: You Died but a Necromancer revived you: pageId: 130466 steam: 1037100 -You Doesn't Exist: +"You Doesn't Exist": pageId: 70617 steam: 688650 -You Don't Have Time: +"You Don't Have Time": pageId: 141564 steam: 1107040 -You Don't Know Jack: +"You Don't Know Jack": pageId: 40534 steam: 252730 -You Don't Know Jack Movies: +"You Don't Know Jack Movies": pageId: 40546 steam: 260000 -You Don't Know Jack Sports: +"You Don't Know Jack Sports": pageId: 40544 steam: 260020 -'You Don''t Know Jack: Head Rush': +"You Don't Know Jack: Head Rush": pageId: 40528 steam: 260060 -'You Don''t Know Jack: Television': +"You Don't Know Jack: Television": pageId: 40542 steam: 260040 -'You Don''t Know Jack: Volume 2': +"You Don't Know Jack: Volume 2": pageId: 40536 steam: 259940 -'You Don''t Know Jack: Volume 3': +"You Don't Know Jack: Volume 3": pageId: 40538 steam: 259960 -'You Don''t Know Jack: Volume 4 - The Ride': +"You Don't Know Jack: Volume 4 - The Ride": pageId: 40540 steam: 259980 -'You Don''t Know Jack: Volume 6 - The Lost Gold': +"You Don't Know Jack: Volume 6 - The Lost Gold": pageId: 40548 steam: 260080 You Green Elephant: @@ -196254,23 +190772,21 @@ You Have to Win the Game: pageId: 24760 steam: 286100 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\You Have to Win the Game\Config}}' - - '{{Game data/config|Linux|{{p|game}}/Config/}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\You Have to Win the Game\Saves}}' - - '{{Game data/saves|Linux|{{p|game}}/Autosave.vsg}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\You Have to Win the Game\\Config}}" + - "{{Game data/config|Linux|{{p|game}}/Config/}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\You Have to Win the Game\\Saves}}" + - "{{Game data/saves|Linux|{{p|game}}/Autosave.vsg}}" You Must Build a Boat: pageId: 47631 renamedFrom: - You Must Build A Boat steam: 290890 templates: - - '{{Game data/config|Windows|{{P|userprofile}}\AppData\LocalLow\EightyEightGames\#ymbab\settings\settings.dat}}' - - >- - {{Game data/config|OS X|{{p|osxhome}}/Library/Application - Support/unity.EightyEightGames.#ymbab/settings/settings.dat}} - - '{{Game data/saves|Windows|{{P|userprofile}}\AppData\LocalLow\EightyEightGames\#ymbab\save\}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/unity.EightyEightGames.#ymbab/save/}}' - - '{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/EightyEightGames/_ymbab}}' + - "{{Game data/config|Windows|{{P|userprofile}}\\AppData\\LocalLow\\EightyEightGames\\#ymbab\\settings\\settings.dat}}" + - "{{Game data/config|OS X|{{p|osxhome}}/Library/Application Support/unity.EightyEightGames.#ymbab/settings/settings.dat}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\AppData\\LocalLow\\EightyEightGames\\#ymbab\\save\\}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/unity.EightyEightGames.#ymbab/save/}}" + - "{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/EightyEightGames/_ymbab}}" You Must be 18 or Older to Enter: pageId: 72551 steam: 608510 @@ -196283,7 +190799,7 @@ You Only Livez Twice: You Shall Not Break!: pageId: 122408 steam: 959020 -'You Shall Not Jump: PC Master Race Edition': +"You Shall Not Jump: PC Master Race Edition": pageId: 63948 steam: 649000 You Suck at Parking: @@ -196310,16 +190826,16 @@ You are pig sitter: You have a drunk friend: pageId: 120800 steam: 966530 -You're Fired: +"You're Fired": pageId: 93631 steam: 843210 -You're Fired!: +"You're Fired!": pageId: 136804 steam: 1086050 -You're Not Special: +"You're Not Special": pageId: 126100 steam: 991430 -'You, With Me - A Kinetic Novel': +"You, With Me - A Kinetic Novel": pageId: 58023 steam: 588050 You... and Who Else?: @@ -196327,7 +190843,7 @@ You... and Who Else?: renamedFrom: - You... and who else? steam: 459640 -'You: The Untold Stories': +"You: The Untold Stories": pageId: 104571 renamedFrom: - YOU - The Untold Stories @@ -196338,17 +190854,17 @@ YouTube VR: YouTubers Galaxy: pageId: 65072 steam: 667120 -'Young Justice: Legacy': +"Young Justice: Legacy": pageId: 12564 steam: 235760 templates: - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\YoungJustice\Data.sav}}' + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\YoungJustice\\Data.sav}}" Young Souls: pageId: 176328 steam: 985900 templates: - - '{{Game data/config|Steam|{{p|userprofile}}\AppData\LocalLow\1P2P\YoungSouls\preferences.bin}}' - - '{{Game data/saves|Steam|{{p|userprofile}}\AppData\LocalLow\1P2P\YoungSouls\{{p|uid}}\}}' + - "{{Game data/config|Steam|{{p|userprofile}}\\AppData\\LocalLow\\1P2P\\YoungSouls\\preferences.bin}}" + - "{{Game data/saves|Steam|{{p|userprofile}}\\AppData\\LocalLow\\1P2P\\YoungSouls\\{{p|uid}}\\}}" Your Anime Waifu: pageId: 148811 steam: 1159020 @@ -196374,8 +190890,8 @@ Your Future Self: pageId: 129687 steam: 1030580 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Contortionist Games\Your Future Self}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Contortionist Games\Your Future Self}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Contortionist Games\\Your Future Self}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Contortionist Games\\Your Future Self}}" Your Home: pageId: 128304 steam: 1015350 @@ -196397,24 +190913,24 @@ Your Smile Beyond Twilight: Your Star: pageId: 55211 steam: 520080 -'Your little story: Valentine''s Day': +"Your little story: Valentine's Day": pageId: 156738 steam: 1218150 -'Your little story: Winter': +"Your little story: Winter": pageId: 153948 steam: 1195350 Youropa: pageId: 87529 steam: 640120 templates: - - '{{Game data/config|Windows|{{p|game}}\userdata\}}' - - '{{Game data/saves|Windows|{{p|game}}\userdata\}}' + - "{{Game data/config|Windows|{{p|game}}\\userdata\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\userdata\\}}" Yousei: pageId: 108816 steam: 771380 templates: - - '{{Game data/config|Windows|{{P|appdata}}\renpy\younew-1516399954\persistent}}' - - '{{Game data/saves|Windows|{{P|appdata}}\renpy\younew-1516399954\*.save}}' + - "{{Game data/config|Windows|{{P|appdata}}\\renpy\\younew-1516399954\\persistent}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\renpy\\younew-1516399954\\*.save}}" Youth Feather: pageId: 144472 steam: 1111450 @@ -196425,8 +190941,8 @@ Youtubers Life: pageId: 34667 steam: 428690 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\U-Play online\Youtubers Life\}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\U-Play online\Youtubers Life\Saves\*.yls}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\U-Play online\\Youtubers Life\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\U-Play online\\Youtubers Life\\Saves\\*.yls}}" Youtubers Life 2: pageId: 172130 steam: 1493760 @@ -196437,8 +190953,8 @@ Yozora Rhapsody: pageId: 58150 steam: 569210 templates: - - '{{Game data/config|Windows|{{p|game}}\renpy\config.py}}' - - '{{Game data/saves|Windows|{{P|appdata}}\renpy\Yozora Rhapsody-1456526552\|{{p|game}}\game\saves\}}' + - "{{Game data/config|Windows|{{p|game}}\\renpy\\config.py}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\renpy\\Yozora Rhapsody-1456526552\\|{{p|game}}\\game\\saves\\}}" Yrminsul: pageId: 44355 steam: 412490 @@ -196447,67 +190963,65 @@ Ys I & II Chronicles+: pageId: 11612 steam: 223810 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\Saved Games\FALCOM\ys12c\ysp_win.ini}}' - - >- - {{Game data/saves|Windows|{{p|userprofile}}\Saved Games\FALCOM\ys12c\ys1\|{{p|userprofile}}\Saved - Games\FALCOM\ys12c\ys2\}} -'Ys IX: Monstrum Nox': + - "{{Game data/config|Windows|{{p|userprofile}}\\Saved Games\\FALCOM\\ys12c\\ysp_win.ini}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Saved Games\\FALCOM\\ys12c\\ys1\\|{{p|userprofile}}\\Saved Games\\FALCOM\\ys12c\\ys2\\}}" +"Ys IX: Monstrum Nox": gog: 1966471371 pageId: 161429 steam: 1351630 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Ys9\settings.xml}}' - - '{{Game data/saves|Windows|{{P|userprofile}}\Saved Games\Falcom\Ys9\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\Ys9\\settings.xml}}" + - "{{Game data/saves|Windows|{{P|userprofile}}\\Saved Games\\Falcom\\Ys9\\}}" Ys Origin: gog: 1422357892 pageId: 11637 steam: 207350 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\Saved Games\FALCOM\yso_win\}}' - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/207350/remote/}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\Saved Games\\FALCOM\\yso_win\\}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/207350/remote/}}" Ys Seven: gog: 1344324173 pageId: 67627 steam: 587100 templates: - - '{{Game data/config|Windows|{{p|game}}\savedata\systemdata.dat}}' - - '{{Game data/saves|Windows|{{p|game}}\savedata}}' -'Ys VI: The Ark of Napishtim': + - "{{Game data/config|Windows|{{p|game}}\\savedata\\systemdata.dat}}" + - "{{Game data/saves|Windows|{{p|game}}\\savedata}}" +"Ys VI: The Ark of Napishtim": gog: 1429178878 pageId: 24451 steam: 312540 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\Saved Games\FALCOM\ys6_win\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\Saved Games\FALCOM\ys6_win\}}' - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\312540\remote\}}' -'Ys VIII: Lacrimosa of DANA': + - "{{Game data/config|Windows|{{p|userprofile}}\\Saved Games\\FALCOM\\ys6_win\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Saved Games\\FALCOM\\ys6_win\\}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\312540\\remote\\}}" +"Ys VIII: Lacrimosa of DANA": gog: 1622206415 gogSide: - - 1276704310 - - 1830098579 - - 1778489316 - 1262450080 - 1268012943 + - 1276704310 + - 1778489316 + - 1830098579 pageId: 58262 steam: 579180 templates: - - '{{Game data/config|Windows|{{p|game}}\adjust.bin | {{p|game}}\config.bin | {{p|game}}\settings.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\savedata\}}' -'Ys: Memories of Celceta': + - "{{Game data/config|Windows|{{p|game}}\\adjust.bin | {{p|game}}\\config.bin | {{p|game}}\\settings.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\savedata\\}}" +"Ys: Memories of Celceta": gog: 2000358318 pageId: 100318 steam: 587110 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\Saved Games\FALCOM\Ys Memories of Celceta\systemdata.dat}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\Saved Games\FALCOM\Ys Memories of Celceta\game\}}' -'Ys: The Oath in Felghana': + - "{{Game data/config|Windows|{{p|userprofile}}\\Saved Games\\FALCOM\\Ys Memories of Celceta\\systemdata.dat}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Saved Games\\FALCOM\\Ys Memories of Celceta\\game\\}}" +"Ys: The Oath in Felghana": gog: 1422357788 pageId: 11640 steam: 207320 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\Saved Games\FALCOM\ysf_win\ysf_win.ini}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\Saved Games\FALCOM\ysf_win\}}' - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\207320\remote\}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\Saved Games\\FALCOM\\ysf_win\\ysf_win.ini}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Saved Games\\FALCOM\\ysf_win\\}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\207320\\remote\\}}" Yu Crossing Animals: gog: 1186527913 pageId: 176797 @@ -196516,112 +191030,106 @@ Yu Escape / Monday: pageId: 179256 steam: 1177720 templates: - - '{{Game data/saves|Windows|{{p|steam}}\userdata\{{p|uid}}\1177720}}' + - "{{Game data/saves|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\1177720}}" Yu-Gi-Oh! Duel Links: pageId: 76905 steam: 601510 Yu-Gi-Oh! Legacy of the Duelist: pageId: 54768 steam: 480650 -'Yu-Gi-Oh! Legacy of the Duelist: Link Evolution': +"Yu-Gi-Oh! Legacy of the Duelist: Link Evolution": pageId: 158754 steam: 1150640 templates: - - '{{Game data/config|Windows|{{p|steam}}\userdata\{{p|uid}}\1150640\remote\}}' - - '{{Game data/saves|Windows|{{p|steam}}\userdata\{{p|uid}}\1150640\remote\}}' + - "{{Game data/config|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\1150640\\remote\\}}" + - "{{Game data/saves|Windows|{{p|steam}}\\userdata\\{{p|uid}}\\1150640\\remote\\}}" Yu-Gi-Oh! Master Duel: pageId: 170160 steam: 1449850 -'Yu-Gi-Oh! Power of Chaos: Joey the Passion': +"Yu-Gi-Oh! Power of Chaos: Joey the Passion": pageId: 99059 templates: - - >- - {{Game data/saves|Windows|{{P|game}}\..\Yu-Gi-Oh! Power of Chaos Common\*.yd?|{{P|game}}\..\Yu-Gi-Oh! Power of - Chaos Common\system.dat|{{p|hklm}}\SOFTWARE\KONAMI\Yu-Gi-Oh! Power Of Chaos\system|{{p|game}}\deck.ydc}} -'Yu-Gi-Oh! Power of Chaos: Kaiba the Revenge': + - "{{Game data/saves|Windows|{{P|game}}\\..\\Yu-Gi-Oh! Power of Chaos Common\\*.yd?|{{P|game}}\\..\\Yu-Gi-Oh! Power of Chaos Common\\system.dat|{{p|hklm}}\\SOFTWARE\\KONAMI\\Yu-Gi-Oh! Power Of Chaos\\system|{{p|game}}\\deck.ydc}}" +"Yu-Gi-Oh! Power of Chaos: Kaiba the Revenge": pageId: 99051 templates: - - >- - {{Game data/saves|Windows|{{P|game}}\..\Yu-Gi-Oh! Power of Chaos Common\*.yd?|{{P|game}}\..\Yu-Gi-Oh! Power of - Chaos Common\system.dat|{{p|hklm}}\SOFTWARE\KONAMI\Yu-Gi-Oh! Power Of Chaos\system|{{p|game}}\deck.ydc}} -'Yu-Gi-Oh! Power of Chaos: Yugi the Destiny': + - "{{Game data/saves|Windows|{{P|game}}\\..\\Yu-Gi-Oh! Power of Chaos Common\\*.yd?|{{P|game}}\\..\\Yu-Gi-Oh! Power of Chaos Common\\system.dat|{{p|hklm}}\\SOFTWARE\\KONAMI\\Yu-Gi-Oh! Power Of Chaos\\system|{{p|game}}\\deck.ydc}}" +"Yu-Gi-Oh! Power of Chaos: Yugi the Destiny": pageId: 99043 templates: - - >- - {{Game data/saves|Windows|{{P|game}}\..\Yu-Gi-Oh! Power of Chaos Common\*.yd?|{{P|game}}\..\Yu-Gi-Oh! Power of - Chaos Common\system.dat|{{p|hklm}}\SOFTWARE\KONAMI\Yu-Gi-Oh! Power Of Chaos\system|{{p|game}}\deck.ydc}} + - "{{Game data/saves|Windows|{{P|game}}\\..\\Yu-Gi-Oh! Power of Chaos Common\\*.yd?|{{P|game}}\\..\\Yu-Gi-Oh! Power of Chaos Common\\system.dat|{{p|hklm}}\\SOFTWARE\\KONAMI\\Yu-Gi-Oh! Power Of Chaos\\system|{{p|game}}\\deck.ydc}}" Yucatan: pageId: 128555 steam: 930220 Yuki Onna: pageId: 184210 steam: 1191070 -'Yukie: A Japanese Winter Fairy Tale': +"Yukie: A Japanese Winter Fairy Tale": pageId: 63821 steam: 352810 Yukinas Diary: pageId: 125799 steam: 1005080 -'Yuko: Tragic Love Story': +"Yuko: Tragic Love Story": pageId: 91040 steam: 828510 -'Yuletide Legends: Who Framed Santa Claus': +"Yuletide Legends: Who Framed Santa Claus": pageId: 153545 steam: 1174500 Yum Yum Cookstar: pageId: 191258 steam: 1827430 templates: - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\KOCH MEDIA GMBH\Yum Yum Cookstar\}}' + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\KOCH MEDIA GMBH\\Yum Yum Cookstar\\}}" Yume Nikki: pageId: 80133 steam: 650700 templates: - - '{{Game data/saves|Windows|{{P|game}}\yumenikki\Save*.lsd}}' + - "{{Game data/saves|Windows|{{P|game}}\\yumenikki\\Save*.lsd}}" Yume Puzzle: pageId: 136621 steam: 1083990 YumeCore: pageId: 79884 steam: 771240 -'Yumenikki: Dream Diary': +"Yumenikki: Dream Diary": pageId: 81699 steam: 774811 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\Active Gaming Media\YUMENIKKI -DREAM DIARY-\}}' -'Yumeutsutsu Re:Master': + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\Active Gaming Media\\YUMENIKKI -DREAM DIARY-\\}}" +"Yumeutsutsu Re:Master": pageId: 136847 renamedFrom: - - 'Yumeutsutsu Re:Master / 夢現Re:Master' + - "Yumeutsutsu Re:Master / 夢現Re:Master" steam: 1058140 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\KOGADO\Yuremaster\Yuremaster.ini}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\KOGADO\Yuremaster}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\KOGADO\\Yuremaster\\Yuremaster.ini}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\KOGADO\\Yuremaster}}" Yumori Forest: pageId: 109604 steam: 911120 -'Yumsters 2: Around the World': +"Yumsters 2: Around the World": pageId: 41202 steam: 29120 Yuna and other troubles: pageId: 155697 steam: 1189210 -'Yuoni: Rises': +"Yuoni: Rises": pageId: 134631 renamedFrom: - - '夕鬼 零 Yuoni: Rises' + - "夕鬼 零 Yuoni: Rises" steam: 989710 Yuppie Psycho: gog: 1712606960 pageId: 88243 steam: 597760 templates: - - '{{Game data/config|Windows|{{p|game}}\res\settings\settings.properties}}' - - '{{Game data/saves|Windows|{{P|game}}\res\db\}}' -Yuri Ovalnay's Bizarre Adventure: + - "{{Game data/config|Windows|{{p|game}}\\res\\settings\\settings.properties}}" + - "{{Game data/saves|Windows|{{P|game}}\\res\\db\\}}" +"Yuri Ovalnay's Bizarre Adventure": pageId: 152858 steam: 1178180 -'Yurukill: The Calumniation Games': +"Yurukill: The Calumniation Games": pageId: 178416 steam: 1733840 Yury: @@ -196633,24 +191141,22 @@ Yuso: Yuuki: pageId: 150093 steam: 1158740 -Yuyuko's Butterfly Dream: +"Yuyuko's Butterfly Dream": pageId: 124256 renamedFrom: - - 樱雪集~Yuyuko's Butterfly Dream + - "樱雪集~Yuyuko's Butterfly Dream" steam: 765030 -'Yuzi Lims: Anime Runner': +"Yuzi Lims: Anime Runner": pageId: 80394 steam: 776550 -'Yuzi Lims: Hentai': +"Yuzi Lims: Hentai": pageId: 121196 steam: 960360 Yuzu: pageId: 170388 templates: - - '{{Game data/config|Windows|{{p|appdata}}\yuzu\config\|{{P|game}}\yuzu-windows-msvc\user\config\}}' - - >- - {{Game - data/saves|Windows|{{p|appdata}}\yuzu\nand\user\save\0000000000000000\{{P|uid}}\|{{P|game}}\yuzu-windows-msvc\user\nand\user\save\0000000000000000\{{P|uid}}\}} + - "{{Game data/config|Windows|{{p|appdata}}\\yuzu\\config\\|{{P|game}}\\yuzu-windows-msvc\\user\\config\\}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\yuzu\\nand\\user\\save\\0000000000000000\\{{P|uid}}\\|{{P|game}}\\yuzu-windows-msvc\\user\\nand\\user\\save\\0000000000000000\\{{P|uid}}\\}}" Yōdanji: pageId: 77164 steam: 736710 @@ -196661,18 +191167,18 @@ Z (2012): pageId: 18237 steam: 275530 templates: - - '{{Game data/config|Windows|{{p|game}}\prefdata}}' - - '{{Game data/saves|Windows|{{p|game}}\}}' + - "{{Game data/config|Windows|{{p|game}}\\prefdata}}" + - "{{Game data/saves|Windows|{{p|game}}\\}}" Z Dawn: pageId: 96705 steam: 872680 Z Runaway: pageId: 68976 steam: 698330 -'Z ViRus: V.I.R.M Uprising': +"Z ViRus: V.I.R.M Uprising": pageId: 65106 steam: 672450 -Z'Code: +"Z'Code": pageId: 53037 steam: 543950 Z-Aftershock: @@ -196691,8 +191197,8 @@ Z.A.R.: pageId: 29933 steam: 351820 templates: - - '{{Game data/config|DOS|{{p|game}}\ZAR.CFG|{{p|game}}\USER*.CFG}}' - - '{{Game data/saves|DOS|{{p|game}}\USERS.DAT|{{p|game}}\LASTUSER.DAT}}' + - "{{Game data/config|DOS|{{p|game}}\\ZAR.CFG|{{p|game}}\\USER*.CFG}}" + - "{{Game data/saves|DOS|{{p|game}}\\USERS.DAT|{{p|game}}\\LASTUSER.DAT}}" Z.I.O.N.: pageId: 43131 steam: 466890 @@ -196703,30 +191209,30 @@ Z1 Battle Royale: pageId: 34679 steam: 433850 templates: - - '{{Game data/config|Windows|{{p|game}}\UserOptions.ini}}' + - "{{Game data/config|Windows|{{p|game}}\\UserOptions.ini}}" Z55z: pageId: 82859 steam: 798270 Z69: pageId: 66458 steam: 677980 -'Z: Escape': +"Z: Escape": pageId: 92951 steam: 843190 -'Z: Steel Soldiers': +"Z: Steel Soldiers": pageId: 169776 templates: - - '{{Game data/config|Windows|{{P|game}}\Bin\options.zed}}' - - '{{Game data/saves|Windows|{{P|game}}\savegames}}' -'Z: Steel Soldiers (2014)': + - "{{Game data/config|Windows|{{P|game}}\\Bin\\options.zed}}" + - "{{Game data/saves|Windows|{{P|game}}\\savegames}}" +"Z: Steel Soldiers (2014)": pageId: 49819 steam: 275510 -'Z: The End': +"Z: The End": pageId: 137216 steam: 786770 templates: - - '{{Game data/config|Windows|{{p|game}}\config.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\Saves\profile#.sav|{{p|game}}\Saves\build#.sav}}' + - "{{Game data/config|Windows|{{p|game}}\\config.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\Saves\\profile#.sav|{{p|game}}\\Saves\\build#.sav}}" ZAAM: pageId: 150936 steam: 1128220 @@ -196755,7 +191261,7 @@ ZERONE Episode 1 Gunner: ZET: pageId: 148543 renamedFrom: - - 'Doka:Origins' + - "Doka:Origins" steam: 968640 ZEscape: pageId: 98152 @@ -196766,13 +191272,13 @@ ZHEROS: ZHIVE: pageId: 141495 steam: 1119530 -'ZHP: Unlosing Ranger vs. Darkdeath Evilman': +"ZHP: Unlosing Ranger vs. Darkdeath Evilman": pageId: 171328 steam: 1732070 ZIC - Zombies in City: pageId: 135429 steam: 1051290 -'ZIC: Survival': +"ZIC: Survival": pageId: 138942 steam: 1065210 ZIQ: @@ -196787,7 +191293,7 @@ ZOLO - Zombies Only Live Once: ZOOMnBOOM: pageId: 107972 steam: 870580 -'ZOR: Pilgrimage of the Slorfs': +"ZOR: Pilgrimage of the Slorfs": pageId: 154342 steam: 1162990 ZPC: @@ -196807,8 +191313,8 @@ ZYX Story: ZZT: pageId: 112 templates: - - '{{Game data/config|DOS|{{p|game}}\ZZT.CFG}}' - - '{{Game data/saves|DOS|{{p|game}}\*.SAV}}' + - "{{Game data/config|DOS|{{p|game}}\\ZZT.CFG}}" + - "{{Game data/saves|DOS|{{p|game}}\\*.SAV}}" Zaba The Frog: pageId: 69555 steam: 673530 @@ -196818,7 +191324,7 @@ Zaccaria Pinball: Zach-Like: pageId: 139007 steam: 1098840 -'Zack 2: Celestine''s Map': +"Zack 2: Celestine's Map": pageId: 157146 steam: 1218320 Zack Y: @@ -196828,18 +191334,18 @@ Zack Zero: pageId: 25962 steam: 234290 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\ZackZero\zackzerocfg.txt}}' - - '{{Game data/saves|Windows|{{p|Steam}}\userdata\{{p|uid}}\234290\remote\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\ZackZero\\zackzerocfg.txt}}" + - "{{Game data/saves|Windows|{{p|Steam}}\\userdata\\{{p|uid}}\\234290\\remote\\}}" Zafehouse Diaries 2: pageId: 63688 steam: 653940 -'Zafehouse: Diaries': +"Zafehouse: Diaries": gog: 1207659171 pageId: 9269 steam: 249360 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Zafehouse Diaries\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Zafehouse Diaries\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Zafehouse Diaries\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Zafehouse Diaries\\}}" Zahalia: pageId: 82406 steam: 791320 @@ -196848,10 +191354,10 @@ Zak McKracken and the Alien Mindbenders: pageId: 24176 steam: 559070 templates: - - '{{Game data/config|DOS|{{P|game}}\PREFS}}' - - '{{Game data/config|Windows|{{P|game}}\zak.ini}}' - - '{{Game data/saves|DOS|{{P|game}}\SAVEGAME.*}}' - - '{{Game data/saves|Windows|{{P|game}}\zak.s**}}' + - "{{Game data/config|DOS|{{P|game}}\\PREFS}}" + - "{{Game data/config|Windows|{{P|game}}\\zak.ini}}" + - "{{Game data/saves|DOS|{{P|game}}\\SAVEGAME.*}}" + - "{{Game data/saves|Windows|{{P|game}}\\zak.s**}}" Zakk Hazard The Deadly Spawn: pageId: 131990 steam: 1037150 @@ -196861,25 +191367,25 @@ Zamarian: Zambi 2 Kil: pageId: 68929 steam: 698930 -'ZanZarah: The Hidden Portal': +"ZanZarah: The Hidden Portal": pageId: 25899 steam: 384570 Zangeki Warp: pageId: 57080 steam: 564040 -'Zanki Zero: Last Beginning': +"Zanki Zero: Last Beginning": pageId: 91284 steam: 819020 templates: - - '{{Game data/config|Windows|{{p|game}}\config.txt}}' - - '{{Game data/saves|Windows|{{p|appdata}}\ZankiZero}}' + - "{{Game data/config|Windows|{{p|game}}\\config.txt}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\ZankiZero}}" Zanshin: pageId: 80549 steam: 768550 Zany Golf: gog: 1659423350 pageId: 147585 -'Zap Blastum: Galactic Tactics': +"Zap Blastum: Galactic Tactics": pageId: 124571 steam: 696850 Zap Zap Zombie Cats: @@ -196888,24 +191394,24 @@ Zap Zap Zombie Cats: Zap Zone: pageId: 57748 steam: 572180 -'Zap, Blast, Loot': +"Zap, Blast, Loot": pageId: 100734 steam: 809480 Zapitalism: pageId: 156487 steam: 1173230 -'Zapper: One Wicked Cricket': +"Zapper: One Wicked Cricket": pageId: 140356 templates: - - '{{Game data/config|Windows|{{p|game}}\zapper.dat}}' - - '{{Game data/saves|Windows|{{p|game}}\zappersave.lee}}' + - "{{Game data/config|Windows|{{p|game}}\\zapper.dat}}" + - "{{Game data/saves|Windows|{{p|game}}\\zappersave.lee}}" Zarvot: pageId: 126270 steam: 992930 Zarya and the Cursed Skull: pageId: 58987 steam: 605040 -'Zarya-1: Mystery on the Moon': +"Zarya-1: Mystery on the Moon": pageId: 62943 steam: 640090 Zasa - An AI Story: @@ -196917,11 +191423,11 @@ Zavix Tower: Zavod: pageId: 184213 steam: 2245840 -'Zax: The Alien Hunter': +"Zax: The Alien Hunter": pageId: 162791 templates: - - '{{Game data/config|Windows|{{p|game}}\Zax.CFG}}' - - '{{Game data/saves|Windows|{{p|game}}\SaveGames\}}' + - "{{Game data/config|Windows|{{p|game}}\\Zax.CFG}}" + - "{{Game data/saves|Windows|{{p|game}}\\SaveGames\\}}" Zaxxon: pageId: 176058 Zazmo Arcade Pack: @@ -196956,17 +191462,17 @@ Zefira: Zeit²: pageId: 41033 steam: 33390 -Zeke's Peak: +"Zeke's Peak": pageId: 139087 steam: 1093800 -'Zelensky vs Poroshenko: The Destiny of Ukraine': +"Zelensky vs Poroshenko: The Destiny of Ukraine": pageId: 135187 steam: 1069320 Zeliard: pageId: 74624 templates: - - '{{Game data/config|DOS|{{p|game}}\RESOURCE.CFG}}' - - '{{Game data/saves|DOS|{{p|game}}\*.USR}}' + - "{{Game data/config|DOS|{{p|game}}\\RESOURCE.CFG}}" + - "{{Game data/saves|DOS|{{p|game}}\\*.USR}}" Zeliria Sanctuary: pageId: 105495 steam: 855630 @@ -196988,25 +191494,25 @@ Zen Bound 2: pageId: 4893 steam: 61600 templates: - - '{{Game data/config|Linux|{{p|linuxhome}}/.ZenBound2/}}' - - '{{Game data/saves|Windows|{{p|appdata}}\ZenBound2\}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.ZenBound2/}}' -'Zen Chess: Blindfold Masters': + - "{{Game data/config|Linux|{{p|linuxhome}}/.ZenBound2/}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\ZenBound2\\}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.ZenBound2/}}" +"Zen Chess: Blindfold Masters": pageId: 149275 steam: 1108550 -'Zen Chess: Champion''s Moves': +"Zen Chess: Champion's Moves": pageId: 149277 steam: 1108540 -'Zen Chess: Mate in Four': +"Zen Chess: Mate in Four": pageId: 132708 steam: 1043000 -'Zen Chess: Mate in One': +"Zen Chess: Mate in One": pageId: 82824 steam: 748970 -'Zen Chess: Mate in Three': +"Zen Chess: Mate in Three": pageId: 132636 steam: 1042990 -'Zen Chess: Mate in Two': +"Zen Chess: Mate in Two": pageId: 132486 steam: 1042980 Zen Fish SIM: @@ -197020,10 +191526,10 @@ Zen Pinball Party: Zen Puzzle Garden: pageId: 5155 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Zen Puzzle Garden\config.txt}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.lexaloffle/Zen Puzzle Garden/}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Zen Puzzle Garden\}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.lexaloffle/Zen Puzzle Garden/}}' + - "{{Game data/config|Windows|{{p|appdata}}\\Zen Puzzle Garden\\config.txt}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.lexaloffle/Zen Puzzle Garden/}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Zen Puzzle Garden\\}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.lexaloffle/Zen Puzzle Garden/}}" Zen Space Flight - VR Showcase: pageId: 98554 steam: 876210 @@ -197034,7 +191540,7 @@ Zen of Sudoku: pageId: 37875 steam: 4900 templates: - - '{{Game data/saves|Windows|{{p|appdata}}\Zen of Sudoku\users}}' + - "{{Game data/saves|Windows|{{p|appdata}}\\Zen of Sudoku\\users}}" Zen vs Zombie: pageId: 63978 steam: 628490 @@ -197044,22 +191550,22 @@ ZenBlade: Zenerchi: pageId: 41250 steam: 37290 -'Zenethics Lab: Outbreak': +"Zenethics Lab: Outbreak": pageId: 68452 steam: 694960 Zenge: pageId: 37138 steam: 461840 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\SOFTWARE\Hamster On Coke Games\Zenge}}' - - '{{Game data/saves|Windows|{{p|hkcu}}\SOFTWARE\Hamster On Coke Games\Zenge}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\Hamster On Coke Games\\Zenge}}" + - "{{Game data/saves|Windows|{{p|hkcu}}\\SOFTWARE\\Hamster On Coke Games\\Zenge}}" Zenith: gog: 1706509320 pageId: 39029 steam: 438420 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\Infinigon\Zenith\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Infinigon\Zenith\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\Infinigon\\Zenith\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Infinigon\\Zenith\\}}" Zenith Hunter: pageId: 110270 steam: 924360 @@ -197070,14 +191576,14 @@ Zeno Clash: pageId: 1424 steam: 22200 templates: - - '{{Game data/config|Windows|{{p|game}}\zenozoik\cfg\}}' - - '{{Game data/saves|Windows|{{p|game}}\zenozoik\SAVE\}}' + - "{{Game data/config|Windows|{{p|game}}\\zenozoik\\cfg\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\zenozoik\\SAVE\\}}" Zeno Clash II: pageId: 6063 steam: 215690 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\UnrealEngine3\ZC2Game\Config}}' - - '{{Game data/saves|Windows|{{P|steam}}\userdata\{{P|uid}}\215690\remote\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\UnrealEngine3\\ZC2Game\\Config}}" + - "{{Game data/saves|Windows|{{P|steam}}\\userdata\\{{P|uid}}\\215690\\remote\\}}" Zenodeath: pageId: 137126 steam: 761920 @@ -197094,7 +191600,7 @@ Zenzizenzic: pageId: 37541 steam: 327500 templates: - - '{{Game data/saves|Windows|{{P|hkcu}}\Software\Ruud Koorevaar\Zenzizenzic\}}' + - "{{Game data/saves|Windows|{{P|hkcu}}\\Software\\Ruud Koorevaar\\Zenzizenzic\\}}" Zeon 25: pageId: 100262 steam: 882620 @@ -197105,7 +191611,7 @@ Zephyr: Zeppelin VR: pageId: 74283 steam: 611200 -Zeran's Folly: +"Zeran's Folly": pageId: 67307 steam: 665030 Zero Caliber VR: @@ -197117,20 +191623,20 @@ Zero Day: Zero Days VR: pageId: 77912 steam: 754930 -'Zero Escape: The Nonary Games': +"Zero Escape: The Nonary Games": pageId: 52730 steam: 477740 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\My Games\Zero Escape The Nonary Games\}}' - - '{{Game data/config|Microsoft Store|{{P|userprofile\Documents}}\My Games\Zero Escape The Nonary Games GamePass\}}' - - '{{Game data/saves|Windows|{{P|userprofile\Documents}}\My Games\Zero Escape The Nonary Games\}}' - - '{{Game data/saves|Microsoft Store|{{P|userprofile\Documents}}\My Games\Zero Escape The Nonary Games GamePass\}}' -'Zero Escape: Zero Time Dilemma': + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\My Games\\Zero Escape The Nonary Games\\}}" + - "{{Game data/config|Microsoft Store|{{P|userprofile\\Documents}}\\My Games\\Zero Escape The Nonary Games GamePass\\}}" + - "{{Game data/saves|Windows|{{P|userprofile\\Documents}}\\My Games\\Zero Escape The Nonary Games\\}}" + - "{{Game data/saves|Microsoft Store|{{P|userprofile\\Documents}}\\My Games\\Zero Escape The Nonary Games GamePass\\}}" +"Zero Escape: Zero Time Dilemma": pageId: 33070 steam: 311240 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\My Games\Zero Escape\config.json}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Zero Escape\Saves\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\My Games\\Zero Escape\\config.json}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Zero Escape\\Saves\\}}" Zero Friction: pageId: 154281 steam: 1173540 @@ -197153,7 +191659,7 @@ Zero Hour: pageId: 162016 steam: 1359090 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\M7 production & Attrito\Zero Hour}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\M7 production & Attrito\\Zero Hour}}" Zero Killed: pageId: 64339 steam: 645930 @@ -197163,7 +191669,7 @@ Zero One / 杀戮世界: Zero Point: pageId: 49434 steam: 268710 -'Zero Reflex: Black Eye Edition': +"Zero Reflex: Black Eye Edition": pageId: 45755 steam: 405650 Zero Strain: @@ -197210,7 +191716,7 @@ ZeroRanger: - FinalBoss steam: 809020 templates: - - '{{Game data/saves|Windows|{{P|localappdata}}\ZeroRanger\SAVEDATA}}' + - "{{Game data/saves|Windows|{{P|localappdata}}\\ZeroRanger\\SAVEDATA}}" ZeroZone2020: pageId: 144313 steam: 1128100 @@ -197233,7 +191739,7 @@ Zetria: pageId: 178246 steam: 1960920 templates: - - '{{Game data/saves|Windows|{{p|userprofile\appdata\locallow}}\Karne\Zetria\sys.fbf}}' + - "{{Game data/saves|Windows|{{p|userprofile\\appdata\\locallow}}\\Karne\\Zetria\\sys.fbf}}" Zettavolt Trigger: pageId: 109818 steam: 915860 @@ -197249,15 +191755,15 @@ Zeus Quest Remastered: Zeus vs Monsters: pageId: 44551 steam: 444430 -'Zeus: Master of Olympus': +"Zeus: Master of Olympus": gog: 1207659039 pageId: 5741 steam: 566050 templates: - - '{{Game data/config|Windows|{{p|game}}\}}' - - '{{Game data/config|Steam|{{p|game}}\*.inf|{{p|game}}\Zeus.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\{{P|uid}}\}}' - - '{{Game data/saves|Steam|{{p|game}}\Save\}}' + - "{{Game data/config|Windows|{{p|game}}\\}}" + - "{{Game data/config|Steam|{{p|game}}\\*.inf|{{p|game}}\\Zeus.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\{{P|uid}}\\}}" + - "{{Game data/saves|Steam|{{p|game}}\\Save\\}}" Zezenia Online: pageId: 42531 steam: 497860 @@ -197300,7 +191806,7 @@ Zid Journey: gog: 1796238976 pageId: 182846 renamedFrom: - - 'Miraculous: Rise of the Sphinx' + - "Miraculous: Rise of the Sphinx" steam: 1814690 Zig: pageId: 91484 @@ -197313,13 +191819,13 @@ Ziggurat: pageId: 20590 steam: 308420 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\Milkstone Studios\Ziggurat\config.xml}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Milkstone Studios/Ziggurat/}}' - - '{{Game data/config|Steam|{{p|steam}}/userdata/{{p|uid}}/308420/remote/}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\Milkstone Studios\Ziggurat\savegame.xml}}' - - '{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/unity.Milkstone Studios.Ziggurat/savegame.xml}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Milkstone Studios/Ziggurat/}}' - - '{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/308420/remote/}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Milkstone Studios\\Ziggurat\\config.xml}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.config/unity3d/Milkstone Studios/Ziggurat/}}" + - "{{Game data/config|Steam|{{p|steam}}/userdata/{{p|uid}}/308420/remote/}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\Milkstone Studios\\Ziggurat\\savegame.xml}}" + - "{{Game data/saves|OS X|{{p|osxhome}}/Library/Application Support/unity.Milkstone Studios.Ziggurat/savegame.xml}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.config/unity3d/Milkstone Studios/Ziggurat/}}" + - "{{Game data/saves|Steam|{{p|steam}}/userdata/{{p|uid}}/308420/remote/}}" Ziggurat 2: gog: 1427459497 gogSide: @@ -197331,15 +191837,15 @@ Ziggurat 2: - 1439020 - 1776850 templates: - - '{{Game data/config|GOG.com|{{P|userprofile\appdata\locallow}}\Milkstone Studios\Ziggurat2\}}' - - '{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/Milkstone Studios/Ziggurat2/}}' - - '{{Game data/saves|GOG.com|{{P|userprofile\appdata\locallow}}\Milkstone Studios\Ziggurat2\*.mlk}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\My Games\Ziggurat2\}}' - - '{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/Milkstone Studios/Ziggurat2/*.mlk}}' + - "{{Game data/config|GOG.com|{{P|userprofile\\appdata\\locallow}}\\Milkstone Studios\\Ziggurat2\\}}" + - "{{Game data/config|Linux|{{P|xdgconfighome}}/unity3d/Milkstone Studios/Ziggurat2/}}" + - "{{Game data/saves|GOG.com|{{P|userprofile\\appdata\\locallow}}\\Milkstone Studios\\Ziggurat2\\*.mlk}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\My Games\\Ziggurat2\\}}" + - "{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/Milkstone Studios/Ziggurat2/*.mlk}}" Ziggurat 3D Chess: pageId: 66422 steam: 654680 -Ziggy's Chase: +"Ziggy's Chase": pageId: 55682 steam: 533660 Zima Uhodi!: @@ -197351,13 +191857,13 @@ Zimbo: Zipple World: pageId: 44922 steam: 433110 -'Zipple World 2: The Sweet Chaos': +"Zipple World 2: The Sweet Chaos": pageId: 43033 steam: 461600 Ziro: pageId: 41110 steam: 33660 -Zissi's Island: +"Zissi's Island": pageId: 36694 steam: 516500 Zkiller: @@ -197375,8 +191881,8 @@ Zodiacats: pageId: 185506 steam: 1817000 templates: - - '{{Game data/config|Windows|{{p|game}}\zodiacats_settings.cfg}}' - - '{{Game data/saves|Windows|{{p|game}}\fortune.cfg}}' + - "{{Game data/config|Windows|{{p|game}}\\zodiacats_settings.cfg}}" + - "{{Game data/saves|Windows|{{p|game}}\\fortune.cfg}}" Zodicat: pageId: 107882 steam: 876100 @@ -197389,13 +191895,13 @@ Zolg: Zom Nom: pageId: 155885 steam: 1193070 -'Zom-bie, or Not Zom-bie': +"Zom-bie, or Not Zom-bie": pageId: 132502 steam: 1053040 ZomB: pageId: 149698 steam: 1098980 -'ZomB: Battlegrounds': +"ZomB: Battlegrounds": pageId: 141463 steam: 1114020 ZomDay: @@ -197410,15 +191916,15 @@ ZombVR: Zombasite: gog: 1218352612 gogSide: - - 1951862657 - 1423584786 + - 1951862657 pageId: 36900 steam: 408960 templates: - - '{{Game data/config|Windows|{{p|localappdata}}\Zombastie\User\user.cfg}}' - - '{{Game data/config|Linux|{{p|linuxhome}}/.local/Zombasite/}}' - - '{{Game data/saves|Windows|{{p|localappdata}}\Zombasite\User\chars}}' - - '{{Game data/saves|Linux|{{p|linuxhome}}/.local/Zombasite/}}' + - "{{Game data/config|Windows|{{p|localappdata}}\\Zombastie\\User\\user.cfg}}" + - "{{Game data/config|Linux|{{p|linuxhome}}/.local/Zombasite/}}" + - "{{Game data/saves|Windows|{{p|localappdata}}\\Zombasite\\User\\chars}}" + - "{{Game data/saves|Linux|{{p|linuxhome}}/.local/Zombasite/}}" Zombeer: pageId: 48851 steam: 262190 @@ -197426,9 +191932,9 @@ Zombi (2015): pageId: 26892 steam: 339230 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\Saved Games\Ubisoft\ZombiU\Player_0}}' - - '{{Game data/saves|Windows|{{p|Uplay}}\savegames\{{path|uid}}\1653\}}' -'Zombidle: Remonstered': + - "{{Game data/config|Windows|{{p|userprofile}}\\Saved Games\\Ubisoft\\ZombiU\\Player_0}}" + - "{{Game data/saves|Windows|{{p|Uplay}}\\savegames\\{{path|uid}}\\1653\\}}" +"Zombidle: Remonstered": pageId: 62984 steam: 612020 Zombie: @@ -197446,21 +191952,21 @@ Zombie Apocalypse Mini Golf (VR): Zombie Apocalypse Survivor: pageId: 92757 steam: 830380 -'Zombie Apocalypse: Escape The Undead City': +"Zombie Apocalypse: Escape The Undead City": pageId: 35248 steam: 492490 -'Zombie Army 4: Dead War': +"Zombie Army 4: Dead War": pageId: 138427 steam: 694280 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Zombie Army 4\}}' - - '{{Game data/saves|Windows|{{P|localappdata}}\Zombie Army 4\PC_ProfileSaves\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\Zombie Army 4\\}}" + - "{{Game data/saves|Windows|{{P|localappdata}}\\Zombie Army 4\\PC_ProfileSaves\\}}" Zombie Army Trilogy: pageId: 22668 steam: 301640 templates: - - '{{Game data/config|Windows|{{P|localappdata}}\Zombie Army Trilogy\Settings.ini}}' - - '{{Game data/saves|Windows|{{P|steam}}\userdata\{{P|uid}}\301640\remote\PC_ProfileSaves\}}' + - "{{Game data/config|Windows|{{P|localappdata}}\\Zombie Army Trilogy\\Settings.ini}}" + - "{{Game data/saves|Windows|{{P|steam}}\\userdata\\{{P|uid}}\\301640\\remote\\PC_ProfileSaves\\}}" Zombie Ballz: pageId: 57671 steam: 581970 @@ -197494,7 +192000,7 @@ Zombie Busters VR: Zombie Camp: pageId: 41940 steam: 503410 -'Zombie Camp: Last Survivor': +"Zombie Camp: Last Survivor": pageId: 48204 steam: 357840 Zombie Car Massacre: @@ -197537,21 +192043,21 @@ Zombie Derby: pageId: 91152 steam: 831770 templates: - - '{{Game data/saves|Windows|{{p|game}}/profile.sav}}' + - "{{Game data/saves|Windows|{{p|game}}/profile.sav}}" Zombie Derby 2: pageId: 80494 steam: 762590 templates: - - '{{Game data/saves|Windows|{{p|game}}/profile.sav}}' -'Zombie Derby: Blocky Roads': + - "{{Game data/saves|Windows|{{p|game}}/profile.sav}}" +"Zombie Derby: Blocky Roads": pageId: 189809 templates: - - '{{Game data/saves|Windows|{{p|game}}/profile.sav}}' -'Zombie Derby: Pixel Survival': + - "{{Game data/saves|Windows|{{p|game}}/profile.sav}}" +"Zombie Derby: Pixel Survival": pageId: 189784 steam: 1271690 templates: - - '{{Game data/saves|Windows|{{p|game}}/profile.sav}}' + - "{{Game data/saves|Windows|{{p|game}}/profile.sav}}" Zombie Desperation: pageId: 89490 steam: 818570 @@ -197563,15 +192069,15 @@ Zombie Driver HD: pageId: 3542 steam: 220820 templates: - - '{{Game data/config|Windows|{{P|userprofile\Documents}}\ZombieDriverHD\Config}}' - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\220820\}}' + - "{{Game data/config|Windows|{{P|userprofile\\Documents}}\\ZombieDriverHD\\Config}}" + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\220820\\}}" Zombie Estate 2: pageId: 56432 steam: 512490 Zombie Exodus: pageId: 37756 steam: 411570 -'Zombie Exodus: Safe Haven': +"Zombie Exodus: Safe Haven": pageId: 52522 steam: 543980 Zombie Forest 2: @@ -197598,7 +192104,7 @@ Zombie Hobby VR: Zombie Hotel: pageId: 94509 steam: 851570 -'Zombie Hunter, Inc.': +"Zombie Hunter, Inc.": pageId: 44948 steam: 387130 Zombie Island: @@ -197616,7 +192122,7 @@ Zombie Killer - Type to Shoot!: Zombie Killers: pageId: 128165 steam: 1026270 -Zombie Killin': +"Zombie Killin'": pageId: 57269 steam: 582350 Zombie Killing Simulator: @@ -197642,12 +192148,10 @@ Zombie Night Terror: pageId: 35696 steam: 416680 templates: - - >- - {{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\NoClip\Zombie Night - Terror\Users\{{p|uid}}\Settings.set}} - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\NoClip\Zombie Night Terror\Users\{{p|uid}}\}}' - - '{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/NoClip/Zombie Night Terror/Users}}' - - '{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/NoClip/Zombie Night Terror/Users}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\NoClip\\Zombie Night Terror\\Users\\{{p|uid}}\\Settings.set}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\NoClip\\Zombie Night Terror\\Users\\{{p|uid}}\\}}" + - "{{Game data/saves|OS X|{{P|osxhome}}/Library/Application Support/NoClip/Zombie Night Terror/Users}}" + - "{{Game data/saves|Linux|{{P|xdgconfighome}}/unity3d/NoClip/Zombie Night Terror/Users}}" Zombie Nightmare: pageId: 74105 steam: 725950 @@ -197658,14 +192162,12 @@ Zombie Panic In Wonderland DX: pageId: 150733 steam: 1173850 templates: - - >- - {{Game data/saves|Windows|{{P|userprofile\appdata\locallow}}\Akaoni Studio\Zombie Panic in Wonderland - DX\SaveData\ZPIW_SavedData.dat}} + - "{{Game data/saves|Windows|{{P|userprofile\\appdata\\locallow}}\\Akaoni Studio\\Zombie Panic in Wonderland DX\\SaveData\\ZPIW_SavedData.dat}}" Zombie Panic! Source: pageId: 1552 steam: 17500 templates: - - '{{Game data/config|Windows|{{p|steam}}Steam\steamapps\common\Zombie Panic Source\zps\cfg\config_default.cfg}}' + - "{{Game data/config|Windows|{{p|steam}}Steam\\steamapps\\common\\Zombie Panic Source\\zps\\cfg\\config_default.cfg}}" Zombie Parking: pageId: 43614 steam: 449090 @@ -197673,7 +192175,7 @@ Zombie Party: pageId: 33726 steam: 384500 templates: - - '{{Game data/saves|Windows|{{p|game}}\data.win}}' + - "{{Game data/saves|Windows|{{p|game}}\\data.win}}" Zombie Pinball: pageId: 42625 steam: 458510 @@ -197698,17 +192200,15 @@ Zombie Riot: Zombie Road Rider: pageId: 150305 steam: 1175640 -'Zombie Rollerz: Pinball Heroes': +"Zombie Rollerz: Pinball Heroes": gog: 1974363009 pageId: 165579 renamedFrom: - Zombie Rollerz steam: 915230 templates: - - >- - {{Game data/saves|Windows|{{P|localappdata}}\Daedalic Entertainment GmbH\Zombie - Rollerz\{{p|uid}}\playersave_release.txt}} -'Zombie Rush : Extinction': + - "{{Game data/saves|Windows|{{P|localappdata}}\\Daedalic Entertainment GmbH\\Zombie Rollerz\\{{p|uid}}\\playersave_release.txt}}" +"Zombie Rush : Extinction": pageId: 141152 steam: 1070890 Zombie School: @@ -197730,17 +192230,15 @@ Zombie Shooter: pageId: 14270 steam: 33130 templates: - - >- - {{Game data/config|Windows|{{P|game}}\ZombieShooter.cfg|{{p|userprofile\Documents}}\ZombieShooter - Saves\userdata\_global.dat}} - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\ZombieShooter Saves\}}' + - "{{Game data/config|Windows|{{P|game}}\\ZombieShooter.cfg|{{p|userprofile\\Documents}}\\ZombieShooter Saves\\userdata\\_global.dat}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\ZombieShooter Saves\\}}" Zombie Shooter 2: gog: 1207660503 pageId: 14929 steam: 33180 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\Zombie Shooter 2 Saves\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\Zombie Shooter 2 Saves\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\Zombie Shooter 2 Saves\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\Zombie Shooter 2 Saves\\}}" Zombie Slayers: pageId: 156613 steam: 1203600 @@ -197773,7 +192271,7 @@ Zombie Teacher: Zombie Town: pageId: 65704 steam: 666600 -'Zombie Town : Online': +"Zombie Town : Online": pageId: 94379 steam: 810190 Zombie Town Ahhh: @@ -197785,13 +192283,13 @@ Zombie Training Simulator: Zombie Trigger: pageId: 36822 steam: 512830 -'Zombie Tycoon 2: Brainhov''s Revenge': +"Zombie Tycoon 2: Brainhov's Revenge": pageId: 40490 steam: 252270 Zombie Vikings: pageId: 45385 steam: 337480 -'Zombie Vikings: Stab-a-thon': +"Zombie Vikings: Stab-a-thon": pageId: 55478 steam: 566910 Zombie Waiting: @@ -197800,9 +192298,9 @@ Zombie Waiting: Zombie Wars: pageId: 72159 templates: - - '{{Game data/config|Windows|{{p|game}}\ZWARS.CFG}}' - - '{{Game data/saves|Windows|{{p|game}}\HARRY.CFG}}' -'Zombie Wars: Invasion': + - "{{Game data/config|Windows|{{p|game}}\\ZWARS.CFG}}" + - "{{Game data/saves|Windows|{{p|game}}\\HARRY.CFG}}" +"Zombie Wars: Invasion": pageId: 45000 steam: 429060 Zombie Watch: @@ -197842,8 +192340,8 @@ ZombieRun: pageId: 47651 steam: 358840 templates: - - '{{Game data/config|Linux|{{P|linuxhome}}/.prefs/zombieRun}}' - - '{{Game data/saves|Linux|{{P|linuxhome}}/.prefs/zombieRunScores}}' + - "{{Game data/config|Linux|{{P|linuxhome}}/.prefs/zombieRun}}" + - "{{Game data/saves|Linux|{{P|linuxhome}}/.prefs/zombieRunScores}}" ZombieRush: pageId: 37699 steam: 467460 @@ -197853,7 +192351,7 @@ ZombieThon: ZombieZoid Zenith: pageId: 46212 steam: 403230 -'Zombieland: Double Tap - Road Trip': +"Zombieland: Double Tap - Road Trip": pageId: 148905 steam: 995430 Zombien: @@ -197887,10 +192385,10 @@ Zombillie: Zombiotik: pageId: 135059 steam: 932950 -'Zombitatos: The End of the PC Master Race': +"Zombitatos: The End of the PC Master Race": pageId: 38899 steam: 508140 -'Zombitatos: Ultimate Game of the Year Edition': +"Zombitatos: Ultimate Game of the Year Edition": pageId: 68418 steam: 682150 Zombo Buster Rising: @@ -197900,15 +192398,15 @@ Zomborg: pageId: 75007 steam: 729720 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\Software\GameDevLab\Zomborg\}}' - - '{{Game data/saves|Windows|{{p|hkcu}}\Software\GameDevLab\Zomborg\}}' + - "{{Game data/config|Windows|{{p|hkcu}}\\Software\\GameDevLab\\Zomborg\\}}" + - "{{Game data/saves|Windows|{{p|hkcu}}\\Software\\GameDevLab\\Zomborg\\}}" Zombotron: gog: 1235934261 pageId: 124534 steam: 664830 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\AppData\LocalLow\AntKarlovGames\Zombotron\Saves\}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\AppData\LocalLow\AntKarlovGames\Zombotron\Saves\}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\AppData\\LocalLow\\AntKarlovGames\\Zombotron\\Saves\\}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\AppData\\LocalLow\\AntKarlovGames\\Zombotron\\Saves\\}}" Zombow: pageId: 90044 steam: 823650 @@ -197932,16 +192430,16 @@ Zone Anomaly: Zone Raiders: pageId: 142776 templates: - - '{{Game data/saves|DOS|{{Path|game}}\PLAYER.PLR}}' + - "{{Game data/saves|DOS|{{Path|game}}\\PLAYER.PLR}}" Zone of Lacryma: pageId: 52628 steam: 496540 -'Zone of the Enders: The 2nd Runner MARS': +"Zone of the Enders: The 2nd Runner MARS": pageId: 90671 steam: 650510 templates: - - '{{Game data/config|Windows|{{P|appdata}}\Zoe2Mars\SaveData00.zsv}}' - - '{{Game data/saves|Windows|{{P|appdata}}\Zoe2Mars\SaveData00.zsv}}' + - "{{Game data/config|Windows|{{P|appdata}}\\Zoe2Mars\\SaveData00.zsv}}" + - "{{Game data/saves|Windows|{{P|appdata}}\\Zoe2Mars\\SaveData00.zsv}}" Zone4: pageId: 51887 steam: 518660 @@ -197955,8 +192453,8 @@ Zoo Empire: pageId: 46576 steam: 286750 templates: - - '{{Game data/config|Windows|{{p|game}}\CONFIG.DAT}}' - - '{{Game data/saves|Windows|{{p|game}}\SAVE}}' + - "{{Game data/config|Windows|{{p|game}}\\CONFIG.DAT}}" + - "{{Game data/saves|Windows|{{p|game}}\\SAVE}}" Zoo Packs: pageId: 155386 steam: 1135150 @@ -197969,16 +192467,16 @@ Zoo Rampage: Zoo Tycoon: pageId: 22295 templates: - - '{{Game data/config|Windows|{{p|game}}\zoo.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\Saved Games\}}' + - "{{Game data/config|Windows|{{p|game}}\\zoo.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\Saved Games\\}}" Zoo Tycoon 2: pageId: 22296 templates: - - '{{Game data/config|Windows|{{p|appdata}}\Microsoft Games\Zoo Tycoon 2}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Microsoft Games\Zoo Tycoon 2}}' + - "{{Game data/config|Windows|{{p|appdata}}\\Microsoft Games\\Zoo Tycoon 2}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Microsoft Games\\Zoo Tycoon 2}}" Zoo Tycoon Friends: pageId: 177960 -'Zoo Tycoon: Ultimate Animal Collection': +"Zoo Tycoon: Ultimate Animal Collection": pageId: 73702 steam: 613880 ZooKeeper: @@ -198012,8 +192510,8 @@ Zooloretto: pageId: 50484 steam: 283450 templates: - - '{{Game data/config|Windows|{{p|APPDATA}}\WhiteBear\Zooloretto\common\commonconfig.xml}}' - - '{{Game data/saves|Windows|{{p|APPDATA}}\WhiteBear\Zooloretto\game\data\}}' + - "{{Game data/config|Windows|{{p|APPDATA}}\\WhiteBear\\Zooloretto\\common\\commonconfig.xml}}" + - "{{Game data/saves|Windows|{{p|APPDATA}}\\WhiteBear\\Zooloretto\\game\\data\\}}" Zooma VR: pageId: 155490 steam: 1214410 @@ -198021,37 +192519,37 @@ Zoombinis: pageId: 37289 steam: 397430 templates: - - '{{Game data/config|Windows|{{p|hkcu}}\SOFTWARE\FableVision\Zoombinis}}' - - '{{Game data/saves|Windows|{{p|hkcu}}\SOFTWARE\FableVision\Zoombinis}}' -Zoop! - Hunter's Grimm: + - "{{Game data/config|Windows|{{p|hkcu}}\\SOFTWARE\\FableVision\\Zoombinis}}" + - "{{Game data/saves|Windows|{{p|hkcu}}\\SOFTWARE\\FableVision\\Zoombinis}}" +"Zoop! - Hunter's Grimm": pageId: 58616 steam: 577460 -Zorbit's Orbits: +"Zorbit's Orbits": pageId: 75027 steam: 739410 Zorg The Typing Warrior: pageId: 139201 steam: 1102750 -'Zoria: Age of Shattering': +"Zoria: Age of Shattering": gog: 1976780992 pageId: 151327 steam: 1159090 Zork 1 Remake: pageId: 137102 steam: 1083700 -'Zork II: The Wizard of Frobozz': +"Zork II: The Wizard of Frobozz": gog: 1207661503 pageId: 7866 steam: 570580 templates: - - '{{Game data/saves|Windows|{{p|game}}\SAVE}}' -'Zork III: The Dungeon Master': + - "{{Game data/saves|Windows|{{p|game}}\\SAVE}}" +"Zork III: The Dungeon Master": gog: 1207661513 pageId: 7869 steam: 570580 templates: - - '{{Game data/saves|Windows|{{p|game}}\SAVE}}' -'Zork Nemesis: The Forbidden Lands': + - "{{Game data/saves|Windows|{{p|game}}\\SAVE}}" +"Zork Nemesis: The Forbidden Lands": gog: 1207658913 pageId: 14265 steam: 571060 @@ -198060,24 +192558,24 @@ Zork Zero: pageId: 7882 steam: 570580 templates: - - '{{Game data/saves|Windows|{{p|game}}\*.SAV}}' -'Zork: Grand Inquisitor': + - "{{Game data/saves|Windows|{{p|game}}\\*.SAV}}" +"Zork: Grand Inquisitor": gog: 1207658948 pageId: 14268 steam: 570680 -'Zork: The Great Underground Empire': +"Zork: The Great Underground Empire": gog: 1207661493 pageId: 7857 steam: 570580 templates: - - '{{Game data/saves|DOS|{{p|game}}\}}' - - '{{Game data/saves|Windows|{{p|game}}\SAVE}}' + - "{{Game data/saves|DOS|{{p|game}}\\}}" + - "{{Game data/saves|Windows|{{p|game}}\\SAVE}}" Zoroastra: pageId: 109942 steam: 918190 Zorro: pageId: 165822 -'Zorro: The Chronicles': +"Zorro: The Chronicles": pageId: 178410 steam: 1571460 ZorroMoro: @@ -198088,7 +192586,7 @@ Zortch: steam: 2443360 steamSide: - 2443470 -'Zorya: The Celestial Sisters': +"Zorya: The Celestial Sisters": pageId: 174637 steam: 1332150 steamSide: @@ -198103,9 +192601,9 @@ Zotrix: Zotrix - Solar Division: pageId: 43488 steam: 351720 -Zou's App: +"Zou's App": pageId: 166376 -'Zpeciation: Tough Days (TD)': +"Zpeciation: Tough Days (TD)": pageId: 57801 steam: 591950 Zquirrels Jump: @@ -198132,20 +192630,18 @@ Zuma: pageId: 12486 steam: 3330 templates: - - '{{Game data/saves|Windows|{{p|programdata}}\Steam\Zuma\userdata\|{{p|game}}\userdata\}}' + - "{{Game data/saves|Windows|{{p|programdata}}\\Steam\\Zuma\\userdata\\|{{p|game}}\\userdata\\}}" Zuma Legend VR: pageId: 123665 steam: 935960 -Zuma's Revenge!: +"Zuma's Revenge!": pageId: 12227 steam: 3620 templates: - - '{{Game data/config|Windows|{{P|hkcu}}\Software\PopCap\ZumasRevenge}}' - - '{{Game data/config|Steam|{{p|hkcu}}\Software\SteamPopCap\ZumasRevenge}}' - - >- - {{Game data/saves|Windows|{{p|programdata}}\PopCap - Games\ZumasRevenge\users|{{p|programdata}}\WildTangent\ZumasRevenge\users|{{p|programdata}}\AtomShockwave\ZumasRevenge\users}} - - '{{Game data/saves|Steam|{{p|programdata}}\Steam\ZumasRevenge\users}}' + - "{{Game data/config|Windows|{{P|hkcu}}\\Software\\PopCap\\ZumasRevenge}}" + - "{{Game data/config|Steam|{{p|hkcu}}\\Software\\SteamPopCap\\ZumasRevenge}}" + - "{{Game data/saves|Windows|{{p|programdata}}\\PopCap Games\\ZumasRevenge\\users|{{p|programdata}}\\WildTangent\\ZumasRevenge\\users|{{p|programdata}}\\AtomShockwave\\ZumasRevenge\\users}}" + - "{{Game data/saves|Steam|{{p|programdata}}\\Steam\\ZumasRevenge\\users}}" Zumbi Blocks: pageId: 62150 steam: 502020 @@ -198159,7 +192655,7 @@ Zup!: pageId: 51352 steam: 533300 templates: - - '{{Game data/saves|Windows|{{p|game}}\levels.ini}}' + - "{{Game data/saves|Windows|{{p|game}}\\levels.ini}}" Zup! 2: pageId: 54347 steam: 562220 @@ -198182,7 +192678,7 @@ Zup! 8: pageId: 82377 steam: 799070 templates: - - '{{Game data/saves|Windows|SteamLibrary\steamapps\common\Zup! 8}}' + - "{{Game data/saves|Windows|SteamLibrary\\steamapps\\common\\Zup! 8}}" Zup! 9: pageId: 139110 steam: 1098340 @@ -198199,7 +192695,7 @@ Zup! X: pageId: 94261 steam: 508900 templates: - - '{{Game data/saves|Windows|{{p|steam}}\steamapps\common\Zup! X\levels.ini}}' + - "{{Game data/saves|Windows|{{p|steam}}\\steamapps\\common\\Zup! X\\levels.ini}}" Zup! XS: pageId: 134888 steam: 673800 @@ -198212,22 +192708,22 @@ Zup! Zero 2: Zvezda: pageId: 121825 steam: 956870 -'Zwei: The Arges Adventure': +"Zwei: The Arges Adventure": gog: 2049521547 pageId: 78693 steam: 427680 templates: - - '{{Game data/saves|Windows|{{p|game}}\SaveData\{{p|uid}}\*.sav|{{p|game}}\SaveData\{{p|uid}}\*.dat}}' -'Zwei: The Ilvard Insurrection': + - "{{Game data/saves|Windows|{{p|game}}\\SaveData\\{{p|uid}}\\*.sav|{{p|game}}\\SaveData\\{{p|uid}}\\*.dat}}" +"Zwei: The Ilvard Insurrection": gog: 1572922743 pageId: 73608 steam: 427700 templates: - - '{{Game data/config|Windows|{{p|userprofile}}\Saved Games\FALCOM\ZWEI2P\config.ini}}' - - '{{Game data/saves|Windows|{{p|userprofile}}\Saved Games\FALCOM\ZWEI2P}}' + - "{{Game data/config|Windows|{{p|userprofile}}\\Saved Games\\FALCOM\\ZWEI2P\\config.ini}}" + - "{{Game data/saves|Windows|{{p|userprofile}}\\Saved Games\\FALCOM\\ZWEI2P}}" Zwift: pageId: 184923 -'Zxill: A Legend of Time': +"Zxill: A Legend of Time": pageId: 46556 steam: 397830 Zyconix: @@ -198240,14 +192736,14 @@ Zykrun: Zyll: pageId: 76470 templates: - - '{{Game data/saves|PC booter|A:\}}' + - "{{Game data/saves|PC booter|A:\\}}" Zyphoid: pageId: 128356 steam: 1026020 Zyternion: pageId: 90287 steam: 820690 -'Zyxia: Neon Termination': +"Zyxia: Neon Termination": pageId: 148677 steam: 768630 Zzzz-Zzzz-Zzzz: @@ -198256,10 +192752,10 @@ Zzzz-Zzzz-Zzzz: Zzzzz: pageId: 149069 steam: 1154350 -~necromancy~Emily's Escape: +"~necromancy~Emily's Escape": pageId: 124006 steam: 975120 -'¡Zombies! : Faulty Towers': +"¡Zombies! : Faulty Towers": pageId: 144137 steam: 451590 Élan Vital: @@ -198274,28 +192770,27 @@ Zzzzz: ÜberSoldier: pageId: 278 templates: - - '{{Game data/config|Windows|{{p|game}}\Run\config.ini}}' - - '{{Game data/saves|Windows|{{p|game}}\Run\SAVES\}}' + - "{{Game data/config|Windows|{{p|game}}\\Run\\config.ini}}" + - "{{Game data/saves|Windows|{{p|game}}\\Run\\SAVES\\}}" ÜberSoldier II: pageId: 50534 steam: 281410 templates: - - '{{Game data/config|Windows|{{p|userprofile\Documents}}\US2\}}' - - '{{Game data/saves|Windows|{{p|userprofile\Documents}}\US2\saves\}}' + - "{{Game data/config|Windows|{{p|userprofile\\Documents}}\\US2\\}}" + - "{{Game data/saves|Windows|{{p|userprofile\\Documents}}\\US2\\saves\\}}" Černaja Metka: pageId: 139919 templates: - - '{{Game data/saves|Windows|{{p|programdata}}\Orion\TheHunt\Profile}}' -'ΔV: Rings of Saturn': + - "{{Game data/saves|Windows|{{p|programdata}}\\Orion\\TheHunt\\Profile}}" +"ΔV: Rings of Saturn": gog: 1168832459 gogSide: + - 1305560807 - 1481429105 - 1582356324 - 1606695771 - 1680423754 - - 1305560807 - 1937014327 - - 1680423754 - 2029128068 pageId: 109004 steam: 846030 @@ -198307,33 +192802,33 @@ Zzzzz: - 1938680 - 2263460 templates: - - '{{Game data/config|Windows|{{p|appdata}}\dV\settings.cfg}}' - - '{{Game data/config|Linux|{{p|xdgdatahome}}/dV/settings.cfg}}' - - '{{Game data/saves|Windows|{{p|appdata}}\dV}}' - - '{{Game data/saves|Linux|{{p|xdgdatahome}}/dV}}' + - "{{Game data/config|Windows|{{p|appdata}}\\dV\\settings.cfg}}" + - "{{Game data/config|Linux|{{p|xdgdatahome}}/dV/settings.cfg}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\dV}}" + - "{{Game data/saves|Linux|{{p|xdgdatahome}}/dV}}" Бухой Батя / Drunk Dad: pageId: 121753 steam: 964260 В поисках Атлантиды: pageId: 121077 steam: 925640 -'В тылу врага: Диверсанты 2': +"В тылу врага: Диверсанты 2": pageId: 147346 templates: - - '{{Game data/config|Windows|{{p|game}}\profiles\\settings}}' - - '{{Game data/saves|Windows|{{p|game}}\profiles\\save\}}' -'В тылу врага: Диверсанты 3': + - "{{Game data/config|Windows|{{p|game}}\\profiles\\\\settings}}" + - "{{Game data/saves|Windows|{{p|game}}\\profiles\\\\save\\}}" +"В тылу врага: Диверсанты 3": pageId: 147347 templates: - - '{{Game data/config|Windows|{{p|game}}\profiles\\settings}}' - - '{{Game data/saves|Windows|{{p|game}}\profiles\\save\}}' + - "{{Game data/config|Windows|{{p|game}}\\profiles\\\\settings}}" + - "{{Game data/saves|Windows|{{p|game}}\\profiles\\\\save\\}}" ВЗЛОМ ЖОПЫ: pageId: 156519 steam: 1206700 Воин Хинора: pageId: 129623 steam: 1031770 -'ДОКА 2! - КРОВЬ, КИШКИ, ГОЛЫЕ СИСЬКИ': +"ДОКА 2! - КРОВЬ, КИШКИ, ГОЛЫЕ СИСЬКИ": pageId: 125181 steam: 980060 ЕСТЬ ДВА СТУЛА: @@ -198348,7 +192843,7 @@ Zzzzz: Не падай!: pageId: 132452 steam: 1056010 -'Путин против Инопланетян: На Закате Справедливости (Linehot Putin: All Stars)': +"Путин против Инопланетян: На Закате Справедливости (Linehot Putin: All Stars)": pageId: 135695 steam: 1014960 Россия 2019: @@ -198363,18 +192858,18 @@ Zzzzz: Симулятор Сидения у Подъезда: pageId: 132643 steam: 1031920 -'Смешарики: Параллельные миры': +"Смешарики: Параллельные миры": pageId: 170699 templates: - - '{{Game data/config|Windows|{{P|game}}\config.info}}' - - '{{Game data/saves|Windows|{{p|appdata}}\Смешарики - Параллельные миры\settings.sav}}' + - "{{Game data/config|Windows|{{P|game}}\\config.info}}" + - "{{Game data/saves|Windows|{{p|appdata}}\\Смешарики - Параллельные миры\\settings.sav}}" Тридевятые земли(Свет или тьма): pageId: 94469 steam: 847100 ШП: pageId: 74241 steam: 727640 -'ШХД: ЗИМА / IT''S WINTER': +"ШХД: ЗИМА / IT'S WINTER": pageId: 129708 steam: 1003360 Щенок: @@ -198502,10 +192997,10 @@ Zzzzz: 乌鸦: pageId: 99632 steam: 870100 -乔乔的铁拳 Joe's Fists: +"乔乔的铁拳 Joe's Fists": pageId: 155937 steam: 1200060 -'九劫曲:诅咒之地 NineTrials Test Server': +"九劫曲:诅咒之地 NineTrials Test Server": pageId: 129799 steam: 1012730 九劫曲:诅咒之地: @@ -198587,7 +193082,7 @@ Zzzzz: pageId: 180470 steam: 1785750 templates: - - '{{Game data/saves|Steam|{{p|steam}}\userdata\{{p|uid}}\1785750\}}' + - "{{Game data/saves|Steam|{{p|steam}}\\userdata\\{{p|uid}}\\1785750\\}}" 全民王者: pageId: 80521 steam: 742360 @@ -198606,10 +193101,10 @@ Zzzzz: 兽耳攻略 - TFK Faculty: pageId: 139435 steam: 1096330 -冒险村的商人日记/Businessman's Diary of Dungeon Village: +"冒险村的商人日记/Businessman's Diary of Dungeon Village": pageId: 129701 renamedFrom: - - 冒险村的商人日记/Businessman's Diary of Dungeon Village + - "冒险村的商人日记/Businessman's Diary of Dungeon Village" - Adventures Diary of Merchant steam: 1014360 军团战棋 Legion War: @@ -198663,7 +193158,7 @@ Zzzzz: 勇士HERO: pageId: 150012 steam: 1169400 -'勇者有点太嚣张。G(No Hero Allowed: No Puzzle Either!)': +"勇者有点太嚣张。G(No Hero Allowed: No Puzzle Either!)": pageId: 144325 steam: 1046600 勿忘此铭: @@ -198679,8 +193174,8 @@ Zzzzz: pageId: 156891 steam: 1203970 templates: - - '{{Game data/config|Windows|{{P|game}}\savedata\krenvprf.kep}}' - - '{{Game data/saves|Windows|{{P|game}}\savedata\*.bmp|{{P|game}}\savedata\*.ksd}}' + - "{{Game data/config|Windows|{{P|game}}\\savedata\\krenvprf.kep}}" + - "{{Game data/saves|Windows|{{P|game}}\\savedata\\*.bmp|{{P|game}}\\savedata\\*.ksd}}" 十日: pageId: 139153 steam: 1055660 @@ -198699,7 +193194,7 @@ Zzzzz: 卡哇伊女孩 ~ Kawaii Girls (づ。◕‿‿◕。)づ: pageId: 120849 steam: 966230 -'卡片地下城Card Monsters: Dungeon': +"卡片地下城Card Monsters: Dungeon": pageId: 140912 steam: 1077440 原体: @@ -198714,13 +193209,13 @@ Zzzzz: 变量: pageId: 136708 steam: 1054800 -'叙事曲2:星空下的诺言 / Ballade2: the Celestial Promise': +"叙事曲2:星空下的诺言 / Ballade2: the Celestial Promise": pageId: 136538 renamedFrom: - - '叙事曲2:星空下的诺言 / Ballade2: the Celestial Promise' - - 'Ballade 2: The Celestial Promise' + - "叙事曲2:星空下的诺言 / Ballade2: the Celestial Promise" + - "Ballade 2: The Celestial Promise" steam: 1080990 -'叙事曲:难忘的回忆 / Ballade: with Memories': +"叙事曲:难忘的回忆 / Ballade: with Memories": pageId: 148930 steam: 1091720 叫我铸造师: @@ -198891,7 +193386,7 @@ Zzzzz: 妖怪俱乐部 Demon Club: pageId: 130022 steam: 992620 -妖诗-Yaokai's Poetry-: +"妖诗-Yaokai's Poetry-": pageId: 136911 steam: 1082880 守护传说 Guardian Legend: @@ -198939,7 +193434,7 @@ Zzzzz: 小林正雪复仇之密室重制版: pageId: 122318 steam: 899160 -小白的新衣 / Snower's New Clothes: +"小白的新衣 / Snower's New Clothes": pageId: 132605 steam: 1058850 小苹果大冒险 Apple Story: @@ -198957,7 +193452,7 @@ Zzzzz: 尺子和橡皮: pageId: 93088 steam: 809640 -局外人 L'Etranger: +"局外人 L'Etranger": pageId: 138610 steam: 1078970 属性与生活: @@ -199133,7 +193628,7 @@ Zzzzz: 拖拉机: pageId: 123456 steam: 975860 -'拯救大魔王2:逆流 Falsemen2:Upstream': +"拯救大魔王2:逆流 Falsemen2:Upstream": pageId: 143858 steam: 1038820 拼词游戏 2017: @@ -199196,10 +193691,10 @@ Zzzzz: 方解夢異聞 ~ Avant-Garde Discerning Paralleler (東方二次創作STG): pageId: 141186 steam: 1095590 -'无主之地:银河 4X-Galaxy': +"无主之地:银河 4X-Galaxy": pageId: 112244 steam: 922450 -无奇刀 Wookie's Blade: +"无奇刀 Wookie's Blade": pageId: 135829 steam: 1058750 无尽守卫: @@ -199269,7 +193764,7 @@ Zzzzz: pageId: 180934 steam: 1997230 templates: - - '{{Game data/saves|Windows|{{p|AppData}}\LocalLow\FIFTHD\Lightworkers01\}}' + - "{{Game data/saves|Windows|{{p|AppData}}\\LocalLow\\FIFTHD\\Lightworkers01\\}}" 東方幻夢箋 ~ Touhou Phantasm Dream: pageId: 150888 steam: 1161930 @@ -199408,7 +193903,7 @@ Zzzzz: 漫步者 The Walker: pageId: 152739 steam: 1189600 -火柴人和七色彩虹 Stickman's Rainbow: +"火柴人和七色彩虹 Stickman's Rainbow": pageId: 134896 steam: 1050690 火柴人联盟2: @@ -199417,7 +193912,7 @@ Zzzzz: 灭神: pageId: 149466 steam: 1153340 -'灵幻先生 : 致敬一代僵尸道长!': +"灵幻先生 : 致敬一代僵尸道长!": pageId: 134629 steam: 1063340 灵文西游: @@ -199518,7 +194013,7 @@ Zzzzz: 真龙主宰: pageId: 155292 steam: 1201920 -'瞳:祈愿 VR / Pupil: Wandering VR': +"瞳:祈愿 VR / Pupil: Wandering VR": pageId: 134995 steam: 773460 破碎法术: @@ -199631,7 +194126,7 @@ Zzzzz: 美少女麻将接龙: pageId: 104057 steam: 908350 -'群星战纪: 遗失的星辰 - STARS ERA: LOST STARS': +"群星战纪: 遗失的星辰 - STARS ERA: LOST STARS": pageId: 156985 steam: 1175120 翔的堕落人生: @@ -199716,7 +194211,7 @@ Zzzzz: pageId: 151024 renamedFrom: - 血腥之日228-Vampire Martina-Bloody Day 2.28 - - 'Vampire Martina: Bloody Day 2.28' + - "Vampire Martina: Bloody Day 2.28" steam: 1060360 街头英雄: pageId: 110294 @@ -199775,7 +194270,7 @@ Zzzzz: 轻梦谭 - 瓮之篇 -: pageId: 157152 steam: 1214720 -'辣条杂货店:回到1997,我当小商贩': +"辣条杂货店:回到1997,我当小商贩": pageId: 67530 steam: 687650 迷宫战争(Maze Wars): @@ -199808,7 +194303,7 @@ Zzzzz: 那美克星人: pageId: 155869 steam: 1214210 -'邻居大叔/UncleNeighbor:uncle Dating Simulator': +"邻居大叔/UncleNeighbor:uncle Dating Simulator": pageId: 154024 steam: 1177420 部落与弯刀: @@ -199961,7 +194456,7 @@ Zzzzz: 무연: pageId: 144415 steam: 1077560 -'암전:Blackout': +"암전:Blackout": pageId: 129985 steam: 871810 </reality>: diff --git a/package-lock.json b/package-lock.json deleted file mode 100644 index 67796155..00000000 --- a/package-lock.json +++ /dev/null @@ -1,3286 +0,0 @@ -{ - "name": "ludusavi-manifest", - "version": "0.0.0", - "lockfileVersion": 2, - "requires": true, - "packages": { - "": { - "name": "ludusavi-manifest", - "version": "0.0.0", - "license": "MIT", - "dependencies": { - "js-yaml": "^3.14.0", - "minimist": "^1.2.8", - "moment": "^2.29.4", - "nodemw": "^0.19.0", - "steam-user": "^4.28.6", - "wikiapi": "^1.19.4", - "wikiparse": "^1.0.27" - }, - "devDependencies": { - "@types/js-yaml": "^3.12.4", - "@types/minimist": "^1.2.2", - "@types/node": "^20.3.1", - "ajv-cli": "^5.0.0", - "ts-node": "^10.9.1", - "typescript": "^5.1.3" - } - }, - "node_modules/@bbob/parser": { - "version": "2.5.6", - "resolved": "https://registry.npmjs.org/@bbob/parser/-/parser-2.5.6.tgz", - "integrity": "sha512-qBt88OQvjfkdHH7JhTzFSIU/zV6kwhiMchADnlFIkuRMWH8dSt6pmzPzjRQzS/v8NHGSwiKtTbC01AGGLOmmOA==", - "dependencies": { - "@bbob/plugin-helper": "^2.5.6" - } - }, - "node_modules/@bbob/plugin-helper": { - "version": "2.5.6", - "resolved": "https://registry.npmjs.org/@bbob/plugin-helper/-/plugin-helper-2.5.6.tgz", - "integrity": "sha512-JQRr5aughtj9S2SyzK9kmalwbTEEpnDeyv21NRpPateehHUxiNM70QPERx/7mm4dVk21sEizUGYiMd61xfFXQQ==" - }, - "node_modules/@colors/colors": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/@colors/colors/-/colors-1.5.0.tgz", - "integrity": "sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==", - "engines": { - "node": ">=0.1.90" - } - }, - "node_modules/@cspotcode/source-map-support": { - "version": "0.8.1", - "resolved": "https://registry.npmjs.org/@cspotcode/source-map-support/-/source-map-support-0.8.1.tgz", - "integrity": "sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==", - "dev": true, - "dependencies": { - "@jridgewell/trace-mapping": "0.3.9" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/@dabh/diagnostics": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/@dabh/diagnostics/-/diagnostics-2.0.3.tgz", - "integrity": "sha512-hrlQOIi7hAfzsMqlGSFyVucrx38O+j6wiGOf//H2ecvIEqYN4ADBSS2iLMh5UFyDunCNniUIPk/q3riFv45xRA==", - "dependencies": { - "colorspace": "1.1.x", - "enabled": "2.0.x", - "kuler": "^2.0.0" - } - }, - "node_modules/@doctormckay/stdlib": { - "version": "1.15.1", - "resolved": "https://registry.npmjs.org/@doctormckay/stdlib/-/stdlib-1.15.1.tgz", - "integrity": "sha512-Sza+d7pLU6GxbXgPLfsJ/LphSYzflNGTr8SeaA6plLLsOUplfCDCpDtxTF3AMPkE9mCwA8K28s25jchRiv2/4g==", - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/@doctormckay/steam-crypto": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/@doctormckay/steam-crypto/-/steam-crypto-1.2.0.tgz", - "integrity": "sha1-KxI8HpgDTzyMa5AQnjX8QnbghrA=" - }, - "node_modules/@jridgewell/resolve-uri": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.1.tgz", - "integrity": "sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==", - "dev": true, - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/@jridgewell/sourcemap-codec": { - "version": "1.4.15", - "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz", - "integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==", - "dev": true - }, - "node_modules/@jridgewell/trace-mapping": { - "version": "0.3.9", - "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.9.tgz", - "integrity": "sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==", - "dev": true, - "dependencies": { - "@jridgewell/resolve-uri": "^3.0.3", - "@jridgewell/sourcemap-codec": "^1.4.10" - } - }, - "node_modules/@protobufjs/aspromise": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/@protobufjs/aspromise/-/aspromise-1.1.2.tgz", - "integrity": "sha1-m4sMxmPWaafY9vXQiToU00jzD78=" - }, - "node_modules/@protobufjs/base64": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/@protobufjs/base64/-/base64-1.1.2.tgz", - "integrity": "sha512-AZkcAA5vnN/v4PDqKyMR5lx7hZttPDgClv83E//FMNhR2TMcLUhfRUBHCmSl0oi9zMgDDqRUJkSxO3wm85+XLg==" - }, - "node_modules/@protobufjs/codegen": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/@protobufjs/codegen/-/codegen-2.0.4.tgz", - "integrity": "sha512-YyFaikqM5sH0ziFZCN3xDC7zeGaB/d0IUb9CATugHWbd1FRFwWwt4ld4OYMPWu5a3Xe01mGAULCdqhMlPl29Jg==" - }, - "node_modules/@protobufjs/eventemitter": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/@protobufjs/eventemitter/-/eventemitter-1.1.0.tgz", - "integrity": "sha1-NVy8mLr61ZePntCV85diHx0Ga3A=" - }, - "node_modules/@protobufjs/fetch": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/@protobufjs/fetch/-/fetch-1.1.0.tgz", - "integrity": "sha1-upn7WYYUr2VwDBYZ/wbUVLDYTEU=", - "dependencies": { - "@protobufjs/aspromise": "^1.1.1", - "@protobufjs/inquire": "^1.1.0" - } - }, - "node_modules/@protobufjs/float": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/@protobufjs/float/-/float-1.0.2.tgz", - "integrity": "sha1-Xp4avctz/Ap8uLKR33jIy9l7h9E=" - }, - "node_modules/@protobufjs/inquire": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/@protobufjs/inquire/-/inquire-1.1.0.tgz", - "integrity": "sha1-/yAOPnzyQp4tyvwRQIKOjMY48Ik=" - }, - "node_modules/@protobufjs/path": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/@protobufjs/path/-/path-1.1.2.tgz", - "integrity": "sha1-bMKyDFya1q0NzP0hynZz2Nf79o0=" - }, - "node_modules/@protobufjs/pool": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/@protobufjs/pool/-/pool-1.1.0.tgz", - "integrity": "sha1-Cf0V8tbTq/qbZbw2ZQbWrXhG/1Q=" - }, - "node_modules/@protobufjs/utf8": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/@protobufjs/utf8/-/utf8-1.1.0.tgz", - "integrity": "sha1-p3c2C1s5oaLlEG+OhY8v0tBgxXA=" - }, - "node_modules/@tsconfig/node10": { - "version": "1.0.9", - "resolved": "https://registry.npmjs.org/@tsconfig/node10/-/node10-1.0.9.tgz", - "integrity": "sha512-jNsYVVxU8v5g43Erja32laIDHXeoNvFEpX33OK4d6hljo3jDhCBDhx5dhCCTMWUojscpAagGiRkBKxpdl9fxqA==", - "dev": true - }, - "node_modules/@tsconfig/node12": { - "version": "1.0.11", - "resolved": "https://registry.npmjs.org/@tsconfig/node12/-/node12-1.0.11.tgz", - "integrity": "sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==", - "dev": true - }, - "node_modules/@tsconfig/node14": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/@tsconfig/node14/-/node14-1.0.3.tgz", - "integrity": "sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==", - "dev": true - }, - "node_modules/@tsconfig/node16": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/@tsconfig/node16/-/node16-1.0.4.tgz", - "integrity": "sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==", - "dev": true - }, - "node_modules/@types/js-yaml": { - "version": "3.12.7", - "resolved": "https://registry.npmjs.org/@types/js-yaml/-/js-yaml-3.12.7.tgz", - "integrity": "sha512-S6+8JAYTE1qdsc9HMVsfY7+SgSuUU/Tp6TYTmITW0PZxiyIMvol3Gy//y69Wkhs0ti4py5qgR3uZH6uz/DNzJQ==", - "dev": true - }, - "node_modules/@types/long": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/@types/long/-/long-4.0.1.tgz", - "integrity": "sha512-5tXH6Bx/kNGd3MgffdmP4dy2Z+G4eaXw0SE81Tq3BNadtnMR5/ySMzX4SLEzHJzSmPNn4HIdpQsBvXMUykr58w==" - }, - "node_modules/@types/minimist": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/@types/minimist/-/minimist-1.2.2.tgz", - "integrity": "sha512-jhuKLIRrhvCPLqwPcx6INqmKeiA5EWrsCOPhrlFSrbrmU4ZMPjj5Ul/oLCMDO98XRUIwVm78xICz4EPCektzeQ==", - "dev": true - }, - "node_modules/@types/node": { - "version": "20.3.1", - "resolved": "https://registry.npmjs.org/@types/node/-/node-20.3.1.tgz", - "integrity": "sha512-EhcH/wvidPy1WeML3TtYFGR83UzjxeWRen9V402T8aUGYsCHOmfoisV3ZSg03gAFIbLq8TnWOJ0f4cALtnSEUg==" - }, - "node_modules/@types/triple-beam": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/@types/triple-beam/-/triple-beam-1.3.2.tgz", - "integrity": "sha512-txGIh+0eDFzKGC25zORnswy+br1Ha7hj5cMVwKIU7+s0U2AxxJru/jZSMU6OC9MJWP6+pc/hc6ZjyZShpsyY2g==" - }, - "node_modules/acorn": { - "version": "8.9.0", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.9.0.tgz", - "integrity": "sha512-jaVNAFBHNLXspO543WnNNPZFRtavh3skAkITqD0/2aeMkKZTN+254PyhwxFYrk3vQ1xfY+2wbesJMs/JC8/PwQ==", - "dev": true, - "bin": { - "acorn": "bin/acorn" - }, - "engines": { - "node": ">=0.4.0" - } - }, - "node_modules/acorn-walk": { - "version": "8.2.0", - "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.2.0.tgz", - "integrity": "sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==", - "dev": true, - "engines": { - "node": ">=0.4.0" - } - }, - "node_modules/adm-zip": { - "version": "0.5.10", - "resolved": "https://registry.npmjs.org/adm-zip/-/adm-zip-0.5.10.tgz", - "integrity": "sha512-x0HvcHqVJNTPk/Bw8JbLWlWoo6Wwnsug0fnYYro1HBrjxZ3G7/AZk7Ahv8JwDe1uIcz8eBqvu86FuF1POiG7vQ==", - "engines": { - "node": ">=6.0" - } - }, - "node_modules/agent-base": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", - "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", - "dependencies": { - "debug": "4" - }, - "engines": { - "node": ">= 6.0.0" - } - }, - "node_modules/ajv": { - "version": "6.12.6", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", - "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", - "dependencies": { - "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/epoberezkin" - } - }, - "node_modules/ajv-cli": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/ajv-cli/-/ajv-cli-5.0.0.tgz", - "integrity": "sha512-LY4m6dUv44HTyhV+u2z5uX4EhPYTM38Iv1jdgDJJJCyOOuqB8KtZEGjPZ2T+sh5ZIJrXUfgErYx/j3gLd3+PlQ==", - "dev": true, - "dependencies": { - "ajv": "^8.0.0", - "fast-json-patch": "^2.0.0", - "glob": "^7.1.0", - "js-yaml": "^3.14.0", - "json-schema-migrate": "^2.0.0", - "json5": "^2.1.3", - "minimist": "^1.2.0" - }, - "bin": { - "ajv": "dist/index.js" - }, - "peerDependencies": { - "ts-node": ">=9.0.0" - }, - "peerDependenciesMeta": { - "ts-node": { - "optional": true - } - } - }, - "node_modules/ajv-cli/node_modules/ajv": { - "version": "8.12.0", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", - "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", - "dev": true, - "dependencies": { - "fast-deep-equal": "^3.1.1", - "json-schema-traverse": "^1.0.0", - "require-from-string": "^2.0.2", - "uri-js": "^4.2.2" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/epoberezkin" - } - }, - "node_modules/ajv-cli/node_modules/json-schema-traverse": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", - "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", - "dev": true - }, - "node_modules/ansicolors": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/ansicolors/-/ansicolors-0.3.2.tgz", - "integrity": "sha1-ZlWX3oap/+Oqm/vmyuXG6kJrSXk=" - }, - "node_modules/appdirectory": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/appdirectory/-/appdirectory-0.1.0.tgz", - "integrity": "sha1-62yBYyDnsqsW9e2ZfyjYIF31Y3U=", - "deprecated": "Package no longer supported. Contact Support at https://www.npmjs.com/support for more info." - }, - "node_modules/arg": { - "version": "4.1.3", - "resolved": "https://registry.npmjs.org/arg/-/arg-4.1.3.tgz", - "integrity": "sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==", - "dev": true - }, - "node_modules/argparse": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", - "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", - "dependencies": { - "sprintf-js": "~1.0.2" - } - }, - "node_modules/asn1": { - "version": "0.2.4", - "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.4.tgz", - "integrity": "sha512-jxwzQpLQjSmWXgwaCZE9Nz+glAG01yF1QnWgbhGwHI5A6FRIEY6IVqtHhIepHqI7/kyEyQEagBC5mBEFlIYvdg==", - "dependencies": { - "safer-buffer": "~2.1.0" - } - }, - "node_modules/assert-plus": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", - "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=", - "engines": { - "node": ">=0.8" - } - }, - "node_modules/async": { - "version": "3.2.4", - "resolved": "https://registry.npmjs.org/async/-/async-3.2.4.tgz", - "integrity": "sha512-iAB+JbDEGXhyIUavoDl9WP/Jj106Kz9DEn1DPgYw5ruDn0e3Wgi3sKFm55sASdGBNOQB8F59d9qQ7deqrHA8wQ==" - }, - "node_modules/asynckit": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", - "integrity": "sha1-x57Zf380y48robyXkLzDZkdLS3k=" - }, - "node_modules/available-typed-arrays": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz", - "integrity": "sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==", - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/aws-sign2": { - "version": "0.7.0", - "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz", - "integrity": "sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg=", - "engines": { - "node": "*" - } - }, - "node_modules/aws4": { - "version": "1.10.0", - "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.10.0.tgz", - "integrity": "sha512-3YDiu347mtVtjpyV3u5kVqQLP242c06zwDOgpeRnybmXlYYsLbtTrUBUm8i8srONt+FWobl5aibnU1030PeeuA==" - }, - "node_modules/balanced-match": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", - "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", - "dev": true - }, - "node_modules/bcrypt-pbkdf": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz", - "integrity": "sha1-pDAdOJtqQ/m2f/PKEaP2Y342Dp4=", - "dependencies": { - "tweetnacl": "^0.14.3" - } - }, - "node_modules/binarykvparser": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/binarykvparser/-/binarykvparser-2.2.0.tgz", - "integrity": "sha512-mGBKngQF9ui53THcMjgjd0LrBH/HsI2Vywfjq52udSAmRGG87h0vjhkqun0kF+iC4rQ2jLZqldwJE7YN2ueiWw==", - "bundleDependencies": [ - "long" - ], - "dependencies": { - "long": "^3.2.0" - } - }, - "node_modules/binarykvparser/node_modules/long": { - "version": "3.2.0", - "inBundle": true, - "license": "Apache-2.0", - "engines": { - "node": ">=0.6" - } - }, - "node_modules/brace-expansion": { - "version": "1.1.11", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", - "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", - "dev": true, - "dependencies": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" - } - }, - "node_modules/bytebuffer": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/bytebuffer/-/bytebuffer-5.0.1.tgz", - "integrity": "sha1-WC7qSxqHO20CCkjVjfhfC7ps/d0=", - "dependencies": { - "long": "~3" - }, - "engines": { - "node": ">=0.8" - } - }, - "node_modules/call-bind": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", - "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", - "dependencies": { - "function-bind": "^1.1.1", - "get-intrinsic": "^1.0.2" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/caseless": { - "version": "0.12.0", - "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz", - "integrity": "sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw=" - }, - "node_modules/cejs": { - "version": "4.5.1", - "resolved": "https://registry.npmjs.org/cejs/-/cejs-4.5.1.tgz", - "integrity": "sha512-uyGkTJ4Tw952HPAfqgNpopcTNn0zNHkZ/bg+/UQyCEO0LL1oefquUS964+TIywZ9C5N5urSjapw87ZCOCHjndg==", - "engines": { - "node": ">=0.10" - } - }, - "node_modules/color": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/color/-/color-3.2.1.tgz", - "integrity": "sha512-aBl7dZI9ENN6fUGC7mWpMTPNHmWUSNan9tuWN6ahh5ZLNk9baLJOnSMlrQkHcrfFgz2/RigjUVAjdx36VcemKA==", - "dependencies": { - "color-convert": "^1.9.3", - "color-string": "^1.6.0" - } - }, - "node_modules/color-convert": { - "version": "1.9.3", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", - "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", - "dependencies": { - "color-name": "1.1.3" - } - }, - "node_modules/color-name": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", - "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==" - }, - "node_modules/color-string": { - "version": "1.9.1", - "resolved": "https://registry.npmjs.org/color-string/-/color-string-1.9.1.tgz", - "integrity": "sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==", - "dependencies": { - "color-name": "^1.0.0", - "simple-swizzle": "^0.2.2" - } - }, - "node_modules/colorspace": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/colorspace/-/colorspace-1.1.4.tgz", - "integrity": "sha512-BgvKJiuVu1igBUF2kEjRCZXol6wiiGbY5ipL/oVPwm0BL9sIpMIzM8IK7vwuxIIzOXMV3Ey5w+vxhm0rR/TN8w==", - "dependencies": { - "color": "^3.1.3", - "text-hex": "1.0.x" - } - }, - "node_modules/combined-stream": { - "version": "1.0.8", - "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", - "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", - "dependencies": { - "delayed-stream": "~1.0.0" - }, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/concat-map": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", - "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", - "dev": true - }, - "node_modules/core-util-is": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", - "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=" - }, - "node_modules/create-require": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/create-require/-/create-require-1.1.1.tgz", - "integrity": "sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==", - "dev": true - }, - "node_modules/cuint": { - "version": "0.2.2", - "resolved": "https://registry.npmjs.org/cuint/-/cuint-0.2.2.tgz", - "integrity": "sha1-QICG1AlVDCYxFVYZ6fp7ytw7mRs=" - }, - "node_modules/dashdash": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz", - "integrity": "sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA=", - "dependencies": { - "assert-plus": "^1.0.0" - }, - "engines": { - "node": ">=0.10" - } - }, - "node_modules/debug": { - "version": "4.3.4", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", - "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", - "dependencies": { - "ms": "2.1.2" - }, - "engines": { - "node": ">=6.0" - }, - "peerDependenciesMeta": { - "supports-color": { - "optional": true - } - } - }, - "node_modules/delayed-stream": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", - "integrity": "sha1-3zrhmayt+31ECqrgsp4icrJOxhk=", - "engines": { - "node": ">=0.4.0" - } - }, - "node_modules/diff": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/diff/-/diff-5.1.0.tgz", - "integrity": "sha512-D+mk+qE8VC/PAUrlAU34N+VfXev0ghe5ywmpqrawphmVZc1bEfn56uo9qpyGp1p4xpzOHkSW4ztBd6L7Xx4ACw==", - "engines": { - "node": ">=0.3.1" - } - }, - "node_modules/ecc-jsbn": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz", - "integrity": "sha1-OoOpBOVDUyh4dMVkt1SThoSamMk=", - "dependencies": { - "jsbn": "~0.1.0", - "safer-buffer": "^2.1.0" - } - }, - "node_modules/enabled": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/enabled/-/enabled-2.0.0.tgz", - "integrity": "sha512-AKrN98kuwOzMIdAizXGI86UFBoo26CL21UM763y1h/GMSJ4/OHU9k2YlsmBpyScFo/wbLzWQJBMCW4+IO3/+OQ==" - }, - "node_modules/esprima": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", - "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", - "bin": { - "esparse": "bin/esparse.js", - "esvalidate": "bin/esvalidate.js" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/extend": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", - "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==" - }, - "node_modules/extsprintf": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz", - "integrity": "sha1-lpGEQOMEGnpBT4xS48V06zw+HgU=", - "engines": [ - "node >=0.6.0" - ] - }, - "node_modules/fast-deep-equal": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", - "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==" - }, - "node_modules/fast-json-patch": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/fast-json-patch/-/fast-json-patch-2.2.1.tgz", - "integrity": "sha512-4j5uBaTnsYAV5ebkidvxiLUYOwjQ+JSFljeqfTxCrH9bDmlCQaOJFS84oDJ2rAXZq2yskmk3ORfoP9DCwqFNig==", - "dev": true, - "dependencies": { - "fast-deep-equal": "^2.0.1" - }, - "engines": { - "node": ">= 0.4.0" - } - }, - "node_modules/fast-json-patch/node_modules/fast-deep-equal": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-2.0.1.tgz", - "integrity": "sha1-ewUhjd+WZ79/Nwv3/bLLFf3Qqkk=", - "dev": true - }, - "node_modules/fast-json-stable-stringify": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", - "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==" - }, - "node_modules/fecha": { - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/fecha/-/fecha-4.2.3.tgz", - "integrity": "sha512-OP2IUU6HeYKJi3i0z4A19kHMQoLVs4Hc+DPqqxI2h/DPZHTm/vjsfC6P0b4jCMy14XizLBqvndQ+UilD7707Jw==" - }, - "node_modules/file-manager": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/file-manager/-/file-manager-2.0.0.tgz", - "integrity": "sha512-AX9jtqrrHK9JT4v3J7uMZGkDNiuuG4y4T6LoNm3lKzT/vReLCY8mnRWIpaG2ffNEpJHSkiwKejpu8x8THEYPzg==", - "engines": { - "node": ">=8.0.0" - } - }, - "node_modules/fn.name": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/fn.name/-/fn.name-1.1.0.tgz", - "integrity": "sha512-GRnmB5gPyJpAhTQdSZTSp9uaPSvl09KoYcMQtsB9rQoOmzs9dH6ffeccH+Z+cv6P68Hu5bC6JjRh4Ah/mHSNRw==" - }, - "node_modules/for-each": { - "version": "0.3.3", - "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz", - "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==", - "dependencies": { - "is-callable": "^1.1.3" - } - }, - "node_modules/forever-agent": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz", - "integrity": "sha1-+8cfDEGt6zf5bFd60e1C2P2sypE=", - "engines": { - "node": "*" - } - }, - "node_modules/form-data": { - "version": "2.3.3", - "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.3.3.tgz", - "integrity": "sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==", - "dependencies": { - "asynckit": "^0.4.0", - "combined-stream": "^1.0.6", - "mime-types": "^2.1.12" - }, - "engines": { - "node": ">= 0.12" - } - }, - "node_modules/fs.realpath": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", - "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", - "dev": true - }, - "node_modules/function-bind": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", - "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" - }, - "node_modules/get-intrinsic": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.1.tgz", - "integrity": "sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw==", - "dependencies": { - "function-bind": "^1.1.1", - "has": "^1.0.3", - "has-proto": "^1.0.1", - "has-symbols": "^1.0.3" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/getpass": { - "version": "0.1.7", - "resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz", - "integrity": "sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo=", - "dependencies": { - "assert-plus": "^1.0.0" - } - }, - "node_modules/glob": { - "version": "7.2.3", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", - "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", - "dev": true, - "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.1.1", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - }, - "engines": { - "node": "*" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/gopd": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", - "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", - "dependencies": { - "get-intrinsic": "^1.1.3" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/har-schema": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz", - "integrity": "sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI=", - "engines": { - "node": ">=4" - } - }, - "node_modules/har-validator": { - "version": "5.1.3", - "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-5.1.3.tgz", - "integrity": "sha512-sNvOCzEQNr/qrvJgc3UG/kD4QtlHycrzwS+6mfTrrSq97BvaYcPZZI1ZSqGSPR73Cxn4LKTD4PttRwfU7jWq5g==", - "deprecated": "this library is no longer supported", - "dependencies": { - "ajv": "^6.5.5", - "har-schema": "^2.0.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/has": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", - "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", - "dependencies": { - "function-bind": "^1.1.1" - }, - "engines": { - "node": ">= 0.4.0" - } - }, - "node_modules/has-proto": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.1.tgz", - "integrity": "sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==", - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/has-symbols": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", - "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/has-tostringtag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz", - "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==", - "dependencies": { - "has-symbols": "^1.0.2" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/http-signature": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz", - "integrity": "sha1-muzZJRFHcvPZW2WmCruPfBj7rOE=", - "dependencies": { - "assert-plus": "^1.0.0", - "jsprim": "^1.2.2", - "sshpk": "^1.7.0" - }, - "engines": { - "node": ">=0.8", - "npm": ">=1.3.7" - } - }, - "node_modules/inflight": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", - "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", - "dev": true, - "dependencies": { - "once": "^1.3.0", - "wrappy": "1" - } - }, - "node_modules/inherits": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", - "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" - }, - "node_modules/ip": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ip/-/ip-2.0.0.tgz", - "integrity": "sha512-WKa+XuLG1A1R0UWhl2+1XQSi+fZWMsYKffMZTTYsiZaUD8k2yDAj5atimTUD2TZkyCkNEeYE5NhFZmupOGtjYQ==" - }, - "node_modules/is-arguments": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.1.tgz", - "integrity": "sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==", - "dependencies": { - "call-bind": "^1.0.2", - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-arrayish": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.2.tgz", - "integrity": "sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==" - }, - "node_modules/is-callable": { - "version": "1.2.7", - "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", - "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==", - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-generator-function": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.0.10.tgz", - "integrity": "sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==", - "dependencies": { - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-stream": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", - "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/is-typed-array": { - "version": "1.1.10", - "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.10.tgz", - "integrity": "sha512-PJqgEHiWZvMpaFZ3uTc8kHPM4+4ADTlDniuQL7cU/UDA0Ql7F70yGfHph3cLNe+c9toaigv+DFzTJKhc2CtO6A==", - "dependencies": { - "available-typed-arrays": "^1.0.5", - "call-bind": "^1.0.2", - "for-each": "^0.3.3", - "gopd": "^1.0.1", - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-typedarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", - "integrity": "sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=" - }, - "node_modules/isstream": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz", - "integrity": "sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo=" - }, - "node_modules/js-yaml": { - "version": "3.14.1", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", - "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", - "dependencies": { - "argparse": "^1.0.7", - "esprima": "^4.0.0" - }, - "bin": { - "js-yaml": "bin/js-yaml.js" - } - }, - "node_modules/jsbn": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz", - "integrity": "sha1-peZUwuWi3rXyAdls77yoDA7y9RM=" - }, - "node_modules/json-schema": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.4.0.tgz", - "integrity": "sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==" - }, - "node_modules/json-schema-migrate": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/json-schema-migrate/-/json-schema-migrate-2.0.0.tgz", - "integrity": "sha512-r38SVTtojDRp4eD6WsCqiE0eNDt4v1WalBXb9cyZYw9ai5cGtBwzRNWjHzJl38w6TxFkXAIA7h+fyX3tnrAFhQ==", - "dev": true, - "dependencies": { - "ajv": "^8.0.0" - } - }, - "node_modules/json-schema-migrate/node_modules/ajv": { - "version": "8.12.0", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", - "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", - "dev": true, - "dependencies": { - "fast-deep-equal": "^3.1.1", - "json-schema-traverse": "^1.0.0", - "require-from-string": "^2.0.2", - "uri-js": "^4.2.2" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/epoberezkin" - } - }, - "node_modules/json-schema-migrate/node_modules/json-schema-traverse": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", - "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", - "dev": true - }, - "node_modules/json-schema-traverse": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", - "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" - }, - "node_modules/json-stringify-safe": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", - "integrity": "sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus=" - }, - "node_modules/json5": { - "version": "2.2.3", - "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", - "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", - "dev": true, - "bin": { - "json5": "lib/cli.js" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/jsprim": { - "version": "1.4.2", - "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.2.tgz", - "integrity": "sha512-P2bSOMAc/ciLz6DzgjVlGJP9+BrJWu5UDGK70C2iweC5QBIeFf0ZXRvGjEj2uYgrY2MkAAhsSWHDWlFtEroZWw==", - "dependencies": { - "assert-plus": "1.0.0", - "extsprintf": "1.3.0", - "json-schema": "0.4.0", - "verror": "1.10.0" - }, - "engines": { - "node": ">=0.6.0" - } - }, - "node_modules/kuler": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/kuler/-/kuler-2.0.0.tgz", - "integrity": "sha512-Xq9nH7KlWZmXAtodXDDRE7vs6DU1gTU8zYDHDiWLSip45Egwq3plLHzPn27NgvzL2r1LMPC1vdqh98sQxtqj4A==" - }, - "node_modules/logform": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/logform/-/logform-2.5.1.tgz", - "integrity": "sha512-9FyqAm9o9NKKfiAKfZoYo9bGXXuwMkxQiQttkT4YjjVtQVIQtK6LmVtlxmCaFswo6N4AfEkHqZTV0taDtPotNg==", - "dependencies": { - "@colors/colors": "1.5.0", - "@types/triple-beam": "^1.3.2", - "fecha": "^4.2.0", - "ms": "^2.1.1", - "safe-stable-stringify": "^2.3.1", - "triple-beam": "^1.3.0" - } - }, - "node_modules/long": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/long/-/long-3.2.0.tgz", - "integrity": "sha1-2CG3E4yhy1gcFymQ7xTbIAtcR0s=", - "engines": { - "node": ">=0.6" - } - }, - "node_modules/lzma": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/lzma/-/lzma-2.3.2.tgz", - "integrity": "sha1-N4OySFi5wOdHoN88vx+1/KqSxEE=", - "bin": { - "lzma.js": "bin/lzma.js" - } - }, - "node_modules/make-error": { - "version": "1.3.6", - "resolved": "https://registry.npmjs.org/make-error/-/make-error-1.3.6.tgz", - "integrity": "sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==", - "dev": true - }, - "node_modules/mime-db": { - "version": "1.44.0", - "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.44.0.tgz", - "integrity": "sha512-/NOTfLrsPBVeH7YtFPgsVWveuL+4SjjYxaQ1xtM1KMFj7HdxlBlxeyNLzhyJVx7r4rZGJAZ/6lkKCitSc/Nmpg==", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/mime-types": { - "version": "2.1.27", - "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.27.tgz", - "integrity": "sha512-JIhqnCasI9yD+SsmkquHBxTSEuZdQX5BuQnS2Vc7puQQQ+8yiP5AY5uWhpdv4YL4VM5c6iliiYWPgJ/nJQLp7w==", - "dependencies": { - "mime-db": "1.44.0" - }, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", - "dev": true, - "dependencies": { - "brace-expansion": "^1.1.7" - }, - "engines": { - "node": "*" - } - }, - "node_modules/minimist": { - "version": "1.2.8", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", - "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/moment": { - "version": "2.29.4", - "resolved": "https://registry.npmjs.org/moment/-/moment-2.29.4.tgz", - "integrity": "sha512-5LC9SOxjSc2HF6vO2CyuTDNivEdoz2IvyJJGj6X8DJ0eFyfszE0QiEd+iXmBvUP3WHxSjFH/vIsA0EN00cgr8w==", - "engines": { - "node": "*" - } - }, - "node_modules/ms": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" - }, - "node_modules/node-bignumber": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/node-bignumber/-/node-bignumber-1.2.2.tgz", - "integrity": "sha512-VoTZHmdFQpZH1+q1dz2qcHNCwTWsJg2T3PYwlAyDNFOfVhSYUKQBLFcCpCud+wJBGgCttGavZILaIggDIKqEQQ==", - "engines": { - "node": ">=0.4.0" - } - }, - "node_modules/node-version-compare": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/node-version-compare/-/node-version-compare-1.0.2.tgz", - "integrity": "sha512-OVcHSPS3nROlBQXcALptOR0j2lOabC9wE2S+y+Fvr7nSDqoO/LCNzRdVGVovipeHUXs5jAqq7GelWE1X4J1sEw==" - }, - "node_modules/nodemw": { - "version": "0.19.0", - "resolved": "https://registry.npmjs.org/nodemw/-/nodemw-0.19.0.tgz", - "integrity": "sha512-mT5SfXdvwfAScN6nIxG9/aYboT82y3LFb/XASVur21FIYu5wPpenvYHLMZtI72UNfDSsbsdWwBNGy9H79ilkUA==", - "dependencies": { - "ansicolors": "0.3.x", - "async": "^3.2.0", - "diff": "^5.0.0", - "node-version-compare": "^1.0.1", - "request": "^2.88.0", - "underscore": "^1.9.1", - "winston": "^3.3.3" - }, - "engines": { - "node": ">=14.0" - } - }, - "node_modules/oauth-sign": { - "version": "0.9.0", - "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz", - "integrity": "sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==", - "engines": { - "node": "*" - } - }, - "node_modules/once": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", - "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", - "dev": true, - "dependencies": { - "wrappy": "1" - } - }, - "node_modules/one-time": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/one-time/-/one-time-1.0.0.tgz", - "integrity": "sha512-5DXOiRKwuSEcQ/l0kGCF6Q3jcADFv5tSmRaJck/OqkVFcOzutB134KRSfF0xDrL39MNnqxbHBbUUcjZIhTgb2g==", - "dependencies": { - "fn.name": "1.x.x" - } - }, - "node_modules/path-is-absolute": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", - "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/performance-now": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz", - "integrity": "sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns=" - }, - "node_modules/permessage-deflate": { - "version": "0.1.7", - "resolved": "https://registry.npmjs.org/permessage-deflate/-/permessage-deflate-0.1.7.tgz", - "integrity": "sha512-EUNi/RIsyJ1P1u9QHFwMOUWMYetqlE22ZgGbad7YP856WF4BFF0B7DuNy6vEGsgNNud6c/SkdWzkne71hH8MjA==", - "dependencies": { - "safe-buffer": "*" - }, - "engines": { - "node": ">=0.8.0" - } - }, - "node_modules/protobufjs": { - "version": "6.11.3", - "resolved": "https://registry.npmjs.org/protobufjs/-/protobufjs-6.11.3.tgz", - "integrity": "sha512-xL96WDdCZYdU7Slin569tFX712BxsxslWwAfAhCYjQKGTq7dAU91Lomy6nLLhh/dyGhk/YH4TwTSRxTzhuHyZg==", - "hasInstallScript": true, - "dependencies": { - "@protobufjs/aspromise": "^1.1.2", - "@protobufjs/base64": "^1.1.2", - "@protobufjs/codegen": "^2.0.4", - "@protobufjs/eventemitter": "^1.1.0", - "@protobufjs/fetch": "^1.1.0", - "@protobufjs/float": "^1.0.2", - "@protobufjs/inquire": "^1.1.0", - "@protobufjs/path": "^1.1.2", - "@protobufjs/pool": "^1.1.0", - "@protobufjs/utf8": "^1.1.0", - "@types/long": "^4.0.1", - "@types/node": ">=13.7.0", - "long": "^4.0.0" - }, - "bin": { - "pbjs": "bin/pbjs", - "pbts": "bin/pbts" - } - }, - "node_modules/protobufjs/node_modules/long": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/long/-/long-4.0.0.tgz", - "integrity": "sha512-XsP+KhQif4bjX1kbuSiySJFNAehNxgLb6hPRGJ9QsUr8ajHkuXGdrHmFUTUUXhDwVX2R5bY4JNZEwbUiMhV+MA==" - }, - "node_modules/psl": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/psl/-/psl-1.9.0.tgz", - "integrity": "sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==" - }, - "node_modules/punycode": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", - "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==", - "engines": { - "node": ">=6" - } - }, - "node_modules/qs": { - "version": "6.5.3", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.3.tgz", - "integrity": "sha512-qxXIEh4pCGfHICj1mAJQ2/2XVZkjCDTcEgfoSQxc/fYivUZxTkk7L3bDBJSoNrEzXI17oUO5Dp07ktqE5KzczA==", - "engines": { - "node": ">=0.6" - } - }, - "node_modules/readable-stream": { - "version": "3.6.2", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", - "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", - "dependencies": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/request": { - "version": "2.88.2", - "resolved": "https://registry.npmjs.org/request/-/request-2.88.2.tgz", - "integrity": "sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw==", - "deprecated": "request has been deprecated, see https://github.com/request/request/issues/3142", - "dependencies": { - "aws-sign2": "~0.7.0", - "aws4": "^1.8.0", - "caseless": "~0.12.0", - "combined-stream": "~1.0.6", - "extend": "~3.0.2", - "forever-agent": "~0.6.1", - "form-data": "~2.3.2", - "har-validator": "~5.1.3", - "http-signature": "~1.2.0", - "is-typedarray": "~1.0.0", - "isstream": "~0.1.2", - "json-stringify-safe": "~5.0.1", - "mime-types": "~2.1.19", - "oauth-sign": "~0.9.0", - "performance-now": "^2.1.0", - "qs": "~6.5.2", - "safe-buffer": "^5.1.2", - "tough-cookie": "~2.5.0", - "tunnel-agent": "^0.6.0", - "uuid": "^3.3.2" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/require-from-string": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz", - "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/safe-buffer": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", - "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ] - }, - "node_modules/safe-stable-stringify": { - "version": "2.4.3", - "resolved": "https://registry.npmjs.org/safe-stable-stringify/-/safe-stable-stringify-2.4.3.tgz", - "integrity": "sha512-e2bDA2WJT0wxseVd4lsDP4+3ONX6HpMXQa1ZhFQ7SU+GjvORCmShbCMltrtIDfkYhVHrOcPtj+KhmDBdPdZD1g==", - "engines": { - "node": ">=10" - } - }, - "node_modules/safer-buffer": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", - "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" - }, - "node_modules/simple-swizzle": { - "version": "0.2.2", - "resolved": "https://registry.npmjs.org/simple-swizzle/-/simple-swizzle-0.2.2.tgz", - "integrity": "sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==", - "dependencies": { - "is-arrayish": "^0.3.1" - } - }, - "node_modules/simple-vdf": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/simple-vdf/-/simple-vdf-1.1.1.tgz", - "integrity": "sha512-IHz5fiOyWX0etTzlrzpWfKWxkwOhSwbbuZxcig+JuON0id1clnYlINBRbe4M4Pz4VnNvNvNaZiKiS7tdIYyF6g==" - }, - "node_modules/smart-buffer": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/smart-buffer/-/smart-buffer-4.2.0.tgz", - "integrity": "sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==", - "engines": { - "node": ">= 6.0.0", - "npm": ">= 3.0.0" - } - }, - "node_modules/socks": { - "version": "2.7.1", - "resolved": "https://registry.npmjs.org/socks/-/socks-2.7.1.tgz", - "integrity": "sha512-7maUZy1N7uo6+WVEX6psASxtNlKaNVMlGQKkG/63nEDdLOWNbiUMoLK7X4uYoLhQstau72mLgfEWcXcwsaHbYQ==", - "dependencies": { - "ip": "^2.0.0", - "smart-buffer": "^4.2.0" - }, - "engines": { - "node": ">= 10.13.0", - "npm": ">= 3.0.0" - } - }, - "node_modules/socks-proxy-agent": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/socks-proxy-agent/-/socks-proxy-agent-7.0.0.tgz", - "integrity": "sha512-Fgl0YPZ902wEsAyiQ+idGd1A7rSFx/ayC1CQVMw5P+EQx2V0SgpGtf6OKFhVjPflPUl9YMmEOnmfjCdMUsygww==", - "dependencies": { - "agent-base": "^6.0.2", - "debug": "^4.3.3", - "socks": "^2.6.2" - }, - "engines": { - "node": ">= 10" - } - }, - "node_modules/sprintf-js": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", - "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==" - }, - "node_modules/sshpk": { - "version": "1.16.1", - "resolved": "https://registry.npmjs.org/sshpk/-/sshpk-1.16.1.tgz", - "integrity": "sha512-HXXqVUq7+pcKeLqqZj6mHFUMvXtOJt1uoUx09pFW6011inTMxqI8BA8PM95myrIyyKwdnzjdFjLiE6KBPVtJIg==", - "dependencies": { - "asn1": "~0.2.3", - "assert-plus": "^1.0.0", - "bcrypt-pbkdf": "^1.0.0", - "dashdash": "^1.12.0", - "ecc-jsbn": "~0.1.1", - "getpass": "^0.1.1", - "jsbn": "~0.1.0", - "safer-buffer": "^2.0.2", - "tweetnacl": "~0.14.0" - }, - "bin": { - "sshpk-conv": "bin/sshpk-conv", - "sshpk-sign": "bin/sshpk-sign", - "sshpk-verify": "bin/sshpk-verify" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/stack-trace": { - "version": "0.0.10", - "resolved": "https://registry.npmjs.org/stack-trace/-/stack-trace-0.0.10.tgz", - "integrity": "sha512-KGzahc7puUKkzyMt+IqAep+TVNbKP+k2Lmwhub39m1AsTSkaDutx56aDCo+HLDzf/D26BIHTJWNiTG1KAJiQCg==", - "engines": { - "node": "*" - } - }, - "node_modules/steam-appticket": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/steam-appticket/-/steam-appticket-1.0.1.tgz", - "integrity": "sha512-oYVInCvJlPPaQPYW1+iGcVP0N0ZvwtWiCDM1Z353XJ8l4DXQI/N+R5yyaRQcHRH5oQv3+BY6gPF40lu7gwEiJw==", - "dependencies": { - "@doctormckay/stdlib": "^1.6.0", - "@doctormckay/steam-crypto": "^1.2.0", - "bytebuffer": "^5.0.1", - "protobufjs": "^6.8.8", - "steamid": "^1.1.0" - }, - "engines": { - "node": ">=4.0.0" - } - }, - "node_modules/steam-session": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/steam-session/-/steam-session-1.2.3.tgz", - "integrity": "sha512-8t4x6BoNcXU53k+YSmhC1cTZSks0SmbXgezKQS3xf6mu3Mrorr+eWNi86FT1vqrtR7g0aCADBRGaRxmJnCFu+g==", - "dependencies": { - "@doctormckay/stdlib": "^2.4.1", - "debug": "^4.3.4", - "node-bignumber": "^1.2.2", - "protobufjs": "^7.1.0", - "socks-proxy-agent": "^7.0.0", - "steamid": "^2.0.0", - "vdf": "^0.0.2", - "websocket13": "^3.0.1" - }, - "engines": { - "node": ">=12.22.0" - } - }, - "node_modules/steam-session/node_modules/@doctormckay/stdlib": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/@doctormckay/stdlib/-/stdlib-2.4.2.tgz", - "integrity": "sha512-8kD4L05WJZezcnZoTi+oi4ei7M6CLIH0JJHgULrYoIex3fPF73bWypkF9XcuN2MDAbEW1rzeBbBDJnJK20gG6Q==", - "dependencies": { - "psl": "^1.9.0" - }, - "engines": { - "node": ">=12.22.0" - } - }, - "node_modules/steam-session/node_modules/long": { - "version": "5.2.3", - "resolved": "https://registry.npmjs.org/long/-/long-5.2.3.tgz", - "integrity": "sha512-lcHwpNoggQTObv5apGNCTdJrO69eHOZMi4BNC+rTLER8iHAqGrUVeLh/irVIM7zTw2bOXA8T6uNPeujwOLg/2Q==" - }, - "node_modules/steam-session/node_modules/protobufjs": { - "version": "7.2.3", - "resolved": "https://registry.npmjs.org/protobufjs/-/protobufjs-7.2.3.tgz", - "integrity": "sha512-TtpvOqwB5Gdz/PQmOjgsrGH1nHjAQVCN7JG4A6r1sXRWESL5rNMAiRcBQlCAdKxZcAbstExQePYG8xof/JVRgg==", - "hasInstallScript": true, - "dependencies": { - "@protobufjs/aspromise": "^1.1.2", - "@protobufjs/base64": "^1.1.2", - "@protobufjs/codegen": "^2.0.4", - "@protobufjs/eventemitter": "^1.1.0", - "@protobufjs/fetch": "^1.1.0", - "@protobufjs/float": "^1.0.2", - "@protobufjs/inquire": "^1.1.0", - "@protobufjs/path": "^1.1.2", - "@protobufjs/pool": "^1.1.0", - "@protobufjs/utf8": "^1.1.0", - "@types/node": ">=13.7.0", - "long": "^5.0.0" - }, - "engines": { - "node": ">=12.0.0" - } - }, - "node_modules/steam-session/node_modules/steamid": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/steamid/-/steamid-2.0.0.tgz", - "integrity": "sha512-+BFJMbo+IxzyfovLR37E7APkaNfmrL3S+88T7wTMRHnQ6LBhzEawPnjfWNKM9eUL/dH45j+7vhSX4WaGXoa4/Q==", - "engines": { - "node": ">=12.0.0" - } - }, - "node_modules/steam-totp": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/steam-totp/-/steam-totp-2.1.1.tgz", - "integrity": "sha512-d+tjnr3wwDkbrKFxjYZ0uK4CSF09oJwCmlGH8SdOlTDkbtBPuNhPKY0XzZxQVltZF6/JkEYj+uz+kBr6UrY7BQ==", - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/steam-user": { - "version": "4.28.6", - "resolved": "https://registry.npmjs.org/steam-user/-/steam-user-4.28.6.tgz", - "integrity": "sha512-ZZv92jVKwnJYFI63+U7WPwSx+bL/FPLLcT9b4nsT/27UZe9YnF0Ankd3jLhBtdo8R9EVAN7PkIMJJBxUCQHrzA==", - "dependencies": { - "@bbob/parser": "^2.2.0", - "@doctormckay/stdlib": "^1.15.1", - "@doctormckay/steam-crypto": "^1.2.0", - "adm-zip": "^0.5.10", - "appdirectory": "^0.1.0", - "binarykvparser": "^2.2.0", - "bytebuffer": "^5.0.0", - "file-manager": "^2.0.0", - "lzma": "^2.3.2", - "protobufjs": "^6.11.3", - "simple-vdf": "^1.1.1", - "socks-proxy-agent": "^7.0.0", - "steam-appticket": "^1.0.1", - "steam-session": "^1.1.0", - "steam-totp": "^2.0.1", - "steamid": "^1.1.0", - "websocket13": "^3.0.1" - }, - "engines": { - "node": ">=8.0.0" - } - }, - "node_modules/steamid": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/steamid/-/steamid-1.1.3.tgz", - "integrity": "sha512-t86YjtP1LtPt8D+TaIARm6PtC9tBnF1FhxQeLFs6ohG7vDUfQuy/M8II14rx1TTUkVuYoWHP/7DlvTtoCGULcw==", - "dependencies": { - "cuint": "^0.2.1" - } - }, - "node_modules/string_decoder": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", - "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", - "dependencies": { - "safe-buffer": "~5.2.0" - } - }, - "node_modules/text-hex": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/text-hex/-/text-hex-1.0.0.tgz", - "integrity": "sha512-uuVGNWzgJ4yhRaNSiubPY7OjISw4sw4E5Uv0wbjp+OzcbmVU/rsT8ujgcXJhn9ypzsgr5vlzpPqP+MBBKcGvbg==" - }, - "node_modules/tiny-typed-emitter": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/tiny-typed-emitter/-/tiny-typed-emitter-2.1.0.tgz", - "integrity": "sha512-qVtvMxeXbVej0cQWKqVSSAHmKZEHAvxdF8HEUBFWts8h+xEo5m/lEiPakuyZ3BnCBjOD8i24kzNOiOLLgsSxhA==" - }, - "node_modules/tough-cookie": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.5.0.tgz", - "integrity": "sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==", - "dependencies": { - "psl": "^1.1.28", - "punycode": "^2.1.1" - }, - "engines": { - "node": ">=0.8" - } - }, - "node_modules/triple-beam": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/triple-beam/-/triple-beam-1.3.0.tgz", - "integrity": "sha512-XrHUvV5HpdLmIj4uVMxHggLbFSZYIn7HEWsqePZcI50pco+MPqJ50wMGY794X7AOOhxOBAjbkqfAbEe/QMp2Lw==" - }, - "node_modules/ts-node": { - "version": "10.9.1", - "resolved": "https://registry.npmjs.org/ts-node/-/ts-node-10.9.1.tgz", - "integrity": "sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==", - "dev": true, - "dependencies": { - "@cspotcode/source-map-support": "^0.8.0", - "@tsconfig/node10": "^1.0.7", - "@tsconfig/node12": "^1.0.7", - "@tsconfig/node14": "^1.0.0", - "@tsconfig/node16": "^1.0.2", - "acorn": "^8.4.1", - "acorn-walk": "^8.1.1", - "arg": "^4.1.0", - "create-require": "^1.1.0", - "diff": "^4.0.1", - "make-error": "^1.1.1", - "v8-compile-cache-lib": "^3.0.1", - "yn": "3.1.1" - }, - "bin": { - "ts-node": "dist/bin.js", - "ts-node-cwd": "dist/bin-cwd.js", - "ts-node-esm": "dist/bin-esm.js", - "ts-node-script": "dist/bin-script.js", - "ts-node-transpile-only": "dist/bin-transpile.js", - "ts-script": "dist/bin-script-deprecated.js" - }, - "peerDependencies": { - "@swc/core": ">=1.2.50", - "@swc/wasm": ">=1.2.50", - "@types/node": "*", - "typescript": ">=2.7" - }, - "peerDependenciesMeta": { - "@swc/core": { - "optional": true - }, - "@swc/wasm": { - "optional": true - } - } - }, - "node_modules/ts-node/node_modules/diff": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/diff/-/diff-4.0.2.tgz", - "integrity": "sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==", - "dev": true, - "engines": { - "node": ">=0.3.1" - } - }, - "node_modules/tunnel-agent": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz", - "integrity": "sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0=", - "dependencies": { - "safe-buffer": "^5.0.1" - }, - "engines": { - "node": "*" - } - }, - "node_modules/tweetnacl": { - "version": "0.14.5", - "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz", - "integrity": "sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q=" - }, - "node_modules/typescript": { - "version": "5.1.3", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.1.3.tgz", - "integrity": "sha512-XH627E9vkeqhlZFQuL+UsyAXEnibT0kWR2FWONlr4sTjvxyJYnyefgrkyECLzM5NenmKzRAy2rR/OlYLA1HkZw==", - "dev": true, - "bin": { - "tsc": "bin/tsc", - "tsserver": "bin/tsserver" - }, - "engines": { - "node": ">=14.17" - } - }, - "node_modules/underscore": { - "version": "1.13.2", - "resolved": "https://registry.npmjs.org/underscore/-/underscore-1.13.2.tgz", - "integrity": "sha512-ekY1NhRzq0B08g4bGuX4wd2jZx5GnKz6mKSqFL4nqBlfyMGiG10gDFhDTMEfYmDL6Jy0FUIZp7wiRB+0BP7J2g==" - }, - "node_modules/uri-js": { - "version": "4.2.2", - "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.2.2.tgz", - "integrity": "sha512-KY9Frmirql91X2Qgjry0Wd4Y+YTdrdZheS8TFwvkbLWf/G5KNJDCh6pKL5OZctEW4+0Baa5idK2ZQuELRwPznQ==", - "dependencies": { - "punycode": "^2.1.0" - } - }, - "node_modules/util": { - "version": "0.12.5", - "resolved": "https://registry.npmjs.org/util/-/util-0.12.5.tgz", - "integrity": "sha512-kZf/K6hEIrWHI6XqOFUiiMa+79wE/D8Q+NCNAWclkyg3b4d2k7s0QGepNjiABc+aR3N1PAyHL7p6UcLY6LmrnA==", - "dependencies": { - "inherits": "^2.0.3", - "is-arguments": "^1.0.4", - "is-generator-function": "^1.0.7", - "is-typed-array": "^1.1.3", - "which-typed-array": "^1.1.2" - } - }, - "node_modules/util-deprecate": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", - "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==" - }, - "node_modules/uuid": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz", - "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==", - "deprecated": "Please upgrade to version 7 or higher. Older versions may use Math.random() in certain circumstances, which is known to be problematic. See https://v8.dev/blog/math-random for details.", - "bin": { - "uuid": "bin/uuid" - } - }, - "node_modules/v8-compile-cache-lib": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/v8-compile-cache-lib/-/v8-compile-cache-lib-3.0.1.tgz", - "integrity": "sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==", - "dev": true - }, - "node_modules/vdf": { - "version": "0.0.2", - "resolved": "https://registry.npmjs.org/vdf/-/vdf-0.0.2.tgz", - "integrity": "sha512-iqFbR0zZeXQGaJzr7g8tFdQAgqIO3aTGoTLQGDugbiX4AZGdkbzSS/q9MXbvOSTfdP4TAEYZ124QWwLoueKvSw==", - "dependencies": { - "util": "*" - } - }, - "node_modules/verror": { - "version": "1.10.0", - "resolved": "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz", - "integrity": "sha1-OhBcoXBTr1XW4nDB+CiGguGNpAA=", - "engines": [ - "node >=0.6.0" - ], - "dependencies": { - "assert-plus": "^1.0.0", - "core-util-is": "1.0.2", - "extsprintf": "^1.2.0" - } - }, - "node_modules/websocket-extensions": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/websocket-extensions/-/websocket-extensions-0.1.4.tgz", - "integrity": "sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==", - "engines": { - "node": ">=0.8.0" - } - }, - "node_modules/websocket13": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/websocket13/-/websocket13-3.0.2.tgz", - "integrity": "sha512-OgzxBXT9eQ0eEapeK2OKFlgKpegQnjMweHLUwGmfJhm+IbgpZ+NPT2eAEP1UUUjBslbmKpZ47rFU6Dp6agfyGQ==", - "dependencies": { - "@doctormckay/stdlib": "^1.8.0", - "bytebuffer": "^5.0.1", - "permessage-deflate": "^0.1.7", - "tiny-typed-emitter": "^2.1.0", - "websocket-extensions": "^0.1.4" - }, - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/which-typed-array": { - "version": "1.1.9", - "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.9.tgz", - "integrity": "sha512-w9c4xkx6mPidwp7180ckYWfMmvxpjlZuIudNtDf4N/tTAUB8VJbX25qZoAsrtGuYNnGw3pa0AXgbGKRB8/EceA==", - "dependencies": { - "available-typed-arrays": "^1.0.5", - "call-bind": "^1.0.2", - "for-each": "^0.3.3", - "gopd": "^1.0.1", - "has-tostringtag": "^1.0.0", - "is-typed-array": "^1.1.10" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/wikiapi": { - "version": "1.19.4", - "resolved": "https://registry.npmjs.org/wikiapi/-/wikiapi-1.19.4.tgz", - "integrity": "sha512-gh6M026re+FxkQS6DEjTTii/zs3VGvCT8HYkIG17NsNGPW9hiZT8uWovU/uu0JUKZ3OXdy+JD94Jk4ko++AZ8Q==", - "dependencies": { - "cejs": "latest" - }, - "engines": { - "node": ">=12.0" - } - }, - "node_modules/wikiparse": { - "version": "1.0.27", - "resolved": "https://registry.npmjs.org/wikiparse/-/wikiparse-1.0.27.tgz", - "integrity": "sha512-Y/E+iQPaFw4z9pSnnC1eYVqYY6mcr4QQ7XLMdKgQuB/I7aQSGaMwOtnLcZWE1Rb5F3xqVhwMjQ3OD1QKNj1pNw==" - }, - "node_modules/winston": { - "version": "3.9.0", - "resolved": "https://registry.npmjs.org/winston/-/winston-3.9.0.tgz", - "integrity": "sha512-jW51iW/X95BCW6MMtZWr2jKQBP4hV5bIDq9QrIjfDk6Q9QuxvTKEAlpUNAzP+HYHFFCeENhph16s0zEunu4uuQ==", - "dependencies": { - "@colors/colors": "1.5.0", - "@dabh/diagnostics": "^2.0.2", - "async": "^3.2.3", - "is-stream": "^2.0.0", - "logform": "^2.4.0", - "one-time": "^1.0.0", - "readable-stream": "^3.4.0", - "safe-stable-stringify": "^2.3.1", - "stack-trace": "0.0.x", - "triple-beam": "^1.3.0", - "winston-transport": "^4.5.0" - }, - "engines": { - "node": ">= 12.0.0" - } - }, - "node_modules/winston-transport": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/winston-transport/-/winston-transport-4.5.0.tgz", - "integrity": "sha512-YpZzcUzBedhlTAfJg6vJDlyEai/IFMIVcaEZZyl3UXIl4gmqRpU7AE89AHLkbzLUsv0NVmw7ts+iztqKxxPW1Q==", - "dependencies": { - "logform": "^2.3.2", - "readable-stream": "^3.6.0", - "triple-beam": "^1.3.0" - }, - "engines": { - "node": ">= 6.4.0" - } - }, - "node_modules/wrappy": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", - "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", - "dev": true - }, - "node_modules/yn": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/yn/-/yn-3.1.1.tgz", - "integrity": "sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==", - "dev": true, - "engines": { - "node": ">=6" - } - } - }, - "dependencies": { - "@bbob/parser": { - "version": "2.5.6", - "resolved": "https://registry.npmjs.org/@bbob/parser/-/parser-2.5.6.tgz", - "integrity": "sha512-qBt88OQvjfkdHH7JhTzFSIU/zV6kwhiMchADnlFIkuRMWH8dSt6pmzPzjRQzS/v8NHGSwiKtTbC01AGGLOmmOA==", - "requires": { - "@bbob/plugin-helper": "^2.5.6" - } - }, - "@bbob/plugin-helper": { - "version": "2.5.6", - "resolved": "https://registry.npmjs.org/@bbob/plugin-helper/-/plugin-helper-2.5.6.tgz", - "integrity": "sha512-JQRr5aughtj9S2SyzK9kmalwbTEEpnDeyv21NRpPateehHUxiNM70QPERx/7mm4dVk21sEizUGYiMd61xfFXQQ==" - }, - "@colors/colors": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/@colors/colors/-/colors-1.5.0.tgz", - "integrity": "sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==" - }, - "@cspotcode/source-map-support": { - "version": "0.8.1", - "resolved": "https://registry.npmjs.org/@cspotcode/source-map-support/-/source-map-support-0.8.1.tgz", - "integrity": "sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==", - "dev": true, - "requires": { - "@jridgewell/trace-mapping": "0.3.9" - } - }, - "@dabh/diagnostics": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/@dabh/diagnostics/-/diagnostics-2.0.3.tgz", - "integrity": "sha512-hrlQOIi7hAfzsMqlGSFyVucrx38O+j6wiGOf//H2ecvIEqYN4ADBSS2iLMh5UFyDunCNniUIPk/q3riFv45xRA==", - "requires": { - "colorspace": "1.1.x", - "enabled": "2.0.x", - "kuler": "^2.0.0" - } - }, - "@doctormckay/stdlib": { - "version": "1.15.1", - "resolved": "https://registry.npmjs.org/@doctormckay/stdlib/-/stdlib-1.15.1.tgz", - "integrity": "sha512-Sza+d7pLU6GxbXgPLfsJ/LphSYzflNGTr8SeaA6plLLsOUplfCDCpDtxTF3AMPkE9mCwA8K28s25jchRiv2/4g==" - }, - "@doctormckay/steam-crypto": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/@doctormckay/steam-crypto/-/steam-crypto-1.2.0.tgz", - "integrity": "sha1-KxI8HpgDTzyMa5AQnjX8QnbghrA=" - }, - "@jridgewell/resolve-uri": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.1.tgz", - "integrity": "sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==", - "dev": true - }, - "@jridgewell/sourcemap-codec": { - "version": "1.4.15", - "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz", - "integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==", - "dev": true - }, - "@jridgewell/trace-mapping": { - "version": "0.3.9", - "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.9.tgz", - "integrity": "sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==", - "dev": true, - "requires": { - "@jridgewell/resolve-uri": "^3.0.3", - "@jridgewell/sourcemap-codec": "^1.4.10" - } - }, - "@protobufjs/aspromise": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/@protobufjs/aspromise/-/aspromise-1.1.2.tgz", - "integrity": "sha1-m4sMxmPWaafY9vXQiToU00jzD78=" - }, - "@protobufjs/base64": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/@protobufjs/base64/-/base64-1.1.2.tgz", - "integrity": "sha512-AZkcAA5vnN/v4PDqKyMR5lx7hZttPDgClv83E//FMNhR2TMcLUhfRUBHCmSl0oi9zMgDDqRUJkSxO3wm85+XLg==" - }, - "@protobufjs/codegen": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/@protobufjs/codegen/-/codegen-2.0.4.tgz", - "integrity": "sha512-YyFaikqM5sH0ziFZCN3xDC7zeGaB/d0IUb9CATugHWbd1FRFwWwt4ld4OYMPWu5a3Xe01mGAULCdqhMlPl29Jg==" - }, - "@protobufjs/eventemitter": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/@protobufjs/eventemitter/-/eventemitter-1.1.0.tgz", - "integrity": "sha1-NVy8mLr61ZePntCV85diHx0Ga3A=" - }, - "@protobufjs/fetch": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/@protobufjs/fetch/-/fetch-1.1.0.tgz", - "integrity": "sha1-upn7WYYUr2VwDBYZ/wbUVLDYTEU=", - "requires": { - "@protobufjs/aspromise": "^1.1.1", - "@protobufjs/inquire": "^1.1.0" - } - }, - "@protobufjs/float": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/@protobufjs/float/-/float-1.0.2.tgz", - "integrity": "sha1-Xp4avctz/Ap8uLKR33jIy9l7h9E=" - }, - "@protobufjs/inquire": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/@protobufjs/inquire/-/inquire-1.1.0.tgz", - "integrity": "sha1-/yAOPnzyQp4tyvwRQIKOjMY48Ik=" - }, - "@protobufjs/path": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/@protobufjs/path/-/path-1.1.2.tgz", - "integrity": "sha1-bMKyDFya1q0NzP0hynZz2Nf79o0=" - }, - "@protobufjs/pool": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/@protobufjs/pool/-/pool-1.1.0.tgz", - "integrity": "sha1-Cf0V8tbTq/qbZbw2ZQbWrXhG/1Q=" - }, - "@protobufjs/utf8": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/@protobufjs/utf8/-/utf8-1.1.0.tgz", - "integrity": "sha1-p3c2C1s5oaLlEG+OhY8v0tBgxXA=" - }, - "@tsconfig/node10": { - "version": "1.0.9", - "resolved": "https://registry.npmjs.org/@tsconfig/node10/-/node10-1.0.9.tgz", - "integrity": "sha512-jNsYVVxU8v5g43Erja32laIDHXeoNvFEpX33OK4d6hljo3jDhCBDhx5dhCCTMWUojscpAagGiRkBKxpdl9fxqA==", - "dev": true - }, - "@tsconfig/node12": { - "version": "1.0.11", - "resolved": "https://registry.npmjs.org/@tsconfig/node12/-/node12-1.0.11.tgz", - "integrity": "sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==", - "dev": true - }, - "@tsconfig/node14": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/@tsconfig/node14/-/node14-1.0.3.tgz", - "integrity": "sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==", - "dev": true - }, - "@tsconfig/node16": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/@tsconfig/node16/-/node16-1.0.4.tgz", - "integrity": "sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==", - "dev": true - }, - "@types/js-yaml": { - "version": "3.12.7", - "resolved": "https://registry.npmjs.org/@types/js-yaml/-/js-yaml-3.12.7.tgz", - "integrity": "sha512-S6+8JAYTE1qdsc9HMVsfY7+SgSuUU/Tp6TYTmITW0PZxiyIMvol3Gy//y69Wkhs0ti4py5qgR3uZH6uz/DNzJQ==", - "dev": true - }, - "@types/long": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/@types/long/-/long-4.0.1.tgz", - "integrity": "sha512-5tXH6Bx/kNGd3MgffdmP4dy2Z+G4eaXw0SE81Tq3BNadtnMR5/ySMzX4SLEzHJzSmPNn4HIdpQsBvXMUykr58w==" - }, - "@types/minimist": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/@types/minimist/-/minimist-1.2.2.tgz", - "integrity": "sha512-jhuKLIRrhvCPLqwPcx6INqmKeiA5EWrsCOPhrlFSrbrmU4ZMPjj5Ul/oLCMDO98XRUIwVm78xICz4EPCektzeQ==", - "dev": true - }, - "@types/node": { - "version": "20.3.1", - "resolved": "https://registry.npmjs.org/@types/node/-/node-20.3.1.tgz", - "integrity": "sha512-EhcH/wvidPy1WeML3TtYFGR83UzjxeWRen9V402T8aUGYsCHOmfoisV3ZSg03gAFIbLq8TnWOJ0f4cALtnSEUg==" - }, - "@types/triple-beam": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/@types/triple-beam/-/triple-beam-1.3.2.tgz", - "integrity": "sha512-txGIh+0eDFzKGC25zORnswy+br1Ha7hj5cMVwKIU7+s0U2AxxJru/jZSMU6OC9MJWP6+pc/hc6ZjyZShpsyY2g==" - }, - "acorn": { - "version": "8.9.0", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.9.0.tgz", - "integrity": "sha512-jaVNAFBHNLXspO543WnNNPZFRtavh3skAkITqD0/2aeMkKZTN+254PyhwxFYrk3vQ1xfY+2wbesJMs/JC8/PwQ==", - "dev": true - }, - "acorn-walk": { - "version": "8.2.0", - "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.2.0.tgz", - "integrity": "sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==", - "dev": true - }, - "adm-zip": { - "version": "0.5.10", - "resolved": "https://registry.npmjs.org/adm-zip/-/adm-zip-0.5.10.tgz", - "integrity": "sha512-x0HvcHqVJNTPk/Bw8JbLWlWoo6Wwnsug0fnYYro1HBrjxZ3G7/AZk7Ahv8JwDe1uIcz8eBqvu86FuF1POiG7vQ==" - }, - "agent-base": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", - "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", - "requires": { - "debug": "4" - } - }, - "ajv": { - "version": "6.12.6", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", - "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", - "requires": { - "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" - } - }, - "ajv-cli": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/ajv-cli/-/ajv-cli-5.0.0.tgz", - "integrity": "sha512-LY4m6dUv44HTyhV+u2z5uX4EhPYTM38Iv1jdgDJJJCyOOuqB8KtZEGjPZ2T+sh5ZIJrXUfgErYx/j3gLd3+PlQ==", - "dev": true, - "requires": { - "ajv": "^8.0.0", - "fast-json-patch": "^2.0.0", - "glob": "^7.1.0", - "js-yaml": "^3.14.0", - "json-schema-migrate": "^2.0.0", - "json5": "^2.1.3", - "minimist": "^1.2.0" - }, - "dependencies": { - "ajv": { - "version": "8.12.0", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", - "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", - "dev": true, - "requires": { - "fast-deep-equal": "^3.1.1", - "json-schema-traverse": "^1.0.0", - "require-from-string": "^2.0.2", - "uri-js": "^4.2.2" - } - }, - "json-schema-traverse": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", - "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", - "dev": true - } - } - }, - "ansicolors": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/ansicolors/-/ansicolors-0.3.2.tgz", - "integrity": "sha1-ZlWX3oap/+Oqm/vmyuXG6kJrSXk=" - }, - "appdirectory": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/appdirectory/-/appdirectory-0.1.0.tgz", - "integrity": "sha1-62yBYyDnsqsW9e2ZfyjYIF31Y3U=" - }, - "arg": { - "version": "4.1.3", - "resolved": "https://registry.npmjs.org/arg/-/arg-4.1.3.tgz", - "integrity": "sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==", - "dev": true - }, - "argparse": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", - "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", - "requires": { - "sprintf-js": "~1.0.2" - } - }, - "asn1": { - "version": "0.2.4", - "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.4.tgz", - "integrity": "sha512-jxwzQpLQjSmWXgwaCZE9Nz+glAG01yF1QnWgbhGwHI5A6FRIEY6IVqtHhIepHqI7/kyEyQEagBC5mBEFlIYvdg==", - "requires": { - "safer-buffer": "~2.1.0" - } - }, - "assert-plus": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", - "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=" - }, - "async": { - "version": "3.2.4", - "resolved": "https://registry.npmjs.org/async/-/async-3.2.4.tgz", - "integrity": "sha512-iAB+JbDEGXhyIUavoDl9WP/Jj106Kz9DEn1DPgYw5ruDn0e3Wgi3sKFm55sASdGBNOQB8F59d9qQ7deqrHA8wQ==" - }, - "asynckit": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", - "integrity": "sha1-x57Zf380y48robyXkLzDZkdLS3k=" - }, - "available-typed-arrays": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz", - "integrity": "sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==" - }, - "aws-sign2": { - "version": "0.7.0", - "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz", - "integrity": "sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg=" - }, - "aws4": { - "version": "1.10.0", - "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.10.0.tgz", - "integrity": "sha512-3YDiu347mtVtjpyV3u5kVqQLP242c06zwDOgpeRnybmXlYYsLbtTrUBUm8i8srONt+FWobl5aibnU1030PeeuA==" - }, - "balanced-match": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", - "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", - "dev": true - }, - "bcrypt-pbkdf": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz", - "integrity": "sha1-pDAdOJtqQ/m2f/PKEaP2Y342Dp4=", - "requires": { - "tweetnacl": "^0.14.3" - } - }, - "binarykvparser": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/binarykvparser/-/binarykvparser-2.2.0.tgz", - "integrity": "sha512-mGBKngQF9ui53THcMjgjd0LrBH/HsI2Vywfjq52udSAmRGG87h0vjhkqun0kF+iC4rQ2jLZqldwJE7YN2ueiWw==", - "requires": { - "long": "^3.2.0" - }, - "dependencies": { - "long": { - "version": "3.2.0", - "bundled": true - } - } - }, - "brace-expansion": { - "version": "1.1.11", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", - "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", - "dev": true, - "requires": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" - } - }, - "bytebuffer": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/bytebuffer/-/bytebuffer-5.0.1.tgz", - "integrity": "sha1-WC7qSxqHO20CCkjVjfhfC7ps/d0=", - "requires": { - "long": "~3" - } - }, - "call-bind": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", - "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", - "requires": { - "function-bind": "^1.1.1", - "get-intrinsic": "^1.0.2" - } - }, - "caseless": { - "version": "0.12.0", - "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz", - "integrity": "sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw=" - }, - "cejs": { - "version": "4.5.1", - "resolved": "https://registry.npmjs.org/cejs/-/cejs-4.5.1.tgz", - "integrity": "sha512-uyGkTJ4Tw952HPAfqgNpopcTNn0zNHkZ/bg+/UQyCEO0LL1oefquUS964+TIywZ9C5N5urSjapw87ZCOCHjndg==" - }, - "color": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/color/-/color-3.2.1.tgz", - "integrity": "sha512-aBl7dZI9ENN6fUGC7mWpMTPNHmWUSNan9tuWN6ahh5ZLNk9baLJOnSMlrQkHcrfFgz2/RigjUVAjdx36VcemKA==", - "requires": { - "color-convert": "^1.9.3", - "color-string": "^1.6.0" - } - }, - "color-convert": { - "version": "1.9.3", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", - "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", - "requires": { - "color-name": "1.1.3" - } - }, - "color-name": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", - "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==" - }, - "color-string": { - "version": "1.9.1", - "resolved": "https://registry.npmjs.org/color-string/-/color-string-1.9.1.tgz", - "integrity": "sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==", - "requires": { - "color-name": "^1.0.0", - "simple-swizzle": "^0.2.2" - } - }, - "colorspace": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/colorspace/-/colorspace-1.1.4.tgz", - "integrity": "sha512-BgvKJiuVu1igBUF2kEjRCZXol6wiiGbY5ipL/oVPwm0BL9sIpMIzM8IK7vwuxIIzOXMV3Ey5w+vxhm0rR/TN8w==", - "requires": { - "color": "^3.1.3", - "text-hex": "1.0.x" - } - }, - "combined-stream": { - "version": "1.0.8", - "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", - "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", - "requires": { - "delayed-stream": "~1.0.0" - } - }, - "concat-map": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", - "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", - "dev": true - }, - "core-util-is": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", - "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=" - }, - "create-require": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/create-require/-/create-require-1.1.1.tgz", - "integrity": "sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==", - "dev": true - }, - "cuint": { - "version": "0.2.2", - "resolved": "https://registry.npmjs.org/cuint/-/cuint-0.2.2.tgz", - "integrity": "sha1-QICG1AlVDCYxFVYZ6fp7ytw7mRs=" - }, - "dashdash": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz", - "integrity": "sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA=", - "requires": { - "assert-plus": "^1.0.0" - } - }, - "debug": { - "version": "4.3.4", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", - "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", - "requires": { - "ms": "2.1.2" - } - }, - "delayed-stream": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", - "integrity": "sha1-3zrhmayt+31ECqrgsp4icrJOxhk=" - }, - "diff": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/diff/-/diff-5.1.0.tgz", - "integrity": "sha512-D+mk+qE8VC/PAUrlAU34N+VfXev0ghe5ywmpqrawphmVZc1bEfn56uo9qpyGp1p4xpzOHkSW4ztBd6L7Xx4ACw==" - }, - "ecc-jsbn": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz", - "integrity": "sha1-OoOpBOVDUyh4dMVkt1SThoSamMk=", - "requires": { - "jsbn": "~0.1.0", - "safer-buffer": "^2.1.0" - } - }, - "enabled": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/enabled/-/enabled-2.0.0.tgz", - "integrity": "sha512-AKrN98kuwOzMIdAizXGI86UFBoo26CL21UM763y1h/GMSJ4/OHU9k2YlsmBpyScFo/wbLzWQJBMCW4+IO3/+OQ==" - }, - "esprima": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", - "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==" - }, - "extend": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", - "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==" - }, - "extsprintf": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz", - "integrity": "sha1-lpGEQOMEGnpBT4xS48V06zw+HgU=" - }, - "fast-deep-equal": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", - "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==" - }, - "fast-json-patch": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/fast-json-patch/-/fast-json-patch-2.2.1.tgz", - "integrity": "sha512-4j5uBaTnsYAV5ebkidvxiLUYOwjQ+JSFljeqfTxCrH9bDmlCQaOJFS84oDJ2rAXZq2yskmk3ORfoP9DCwqFNig==", - "dev": true, - "requires": { - "fast-deep-equal": "^2.0.1" - }, - "dependencies": { - "fast-deep-equal": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-2.0.1.tgz", - "integrity": "sha1-ewUhjd+WZ79/Nwv3/bLLFf3Qqkk=", - "dev": true - } - } - }, - "fast-json-stable-stringify": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", - "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==" - }, - "fecha": { - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/fecha/-/fecha-4.2.3.tgz", - "integrity": "sha512-OP2IUU6HeYKJi3i0z4A19kHMQoLVs4Hc+DPqqxI2h/DPZHTm/vjsfC6P0b4jCMy14XizLBqvndQ+UilD7707Jw==" - }, - "file-manager": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/file-manager/-/file-manager-2.0.0.tgz", - "integrity": "sha512-AX9jtqrrHK9JT4v3J7uMZGkDNiuuG4y4T6LoNm3lKzT/vReLCY8mnRWIpaG2ffNEpJHSkiwKejpu8x8THEYPzg==" - }, - "fn.name": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/fn.name/-/fn.name-1.1.0.tgz", - "integrity": "sha512-GRnmB5gPyJpAhTQdSZTSp9uaPSvl09KoYcMQtsB9rQoOmzs9dH6ffeccH+Z+cv6P68Hu5bC6JjRh4Ah/mHSNRw==" - }, - "for-each": { - "version": "0.3.3", - "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz", - "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==", - "requires": { - "is-callable": "^1.1.3" - } - }, - "forever-agent": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz", - "integrity": "sha1-+8cfDEGt6zf5bFd60e1C2P2sypE=" - }, - "form-data": { - "version": "2.3.3", - "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.3.3.tgz", - "integrity": "sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==", - "requires": { - "asynckit": "^0.4.0", - "combined-stream": "^1.0.6", - "mime-types": "^2.1.12" - } - }, - "fs.realpath": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", - "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", - "dev": true - }, - "function-bind": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", - "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" - }, - "get-intrinsic": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.1.tgz", - "integrity": "sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw==", - "requires": { - "function-bind": "^1.1.1", - "has": "^1.0.3", - "has-proto": "^1.0.1", - "has-symbols": "^1.0.3" - } - }, - "getpass": { - "version": "0.1.7", - "resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz", - "integrity": "sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo=", - "requires": { - "assert-plus": "^1.0.0" - } - }, - "glob": { - "version": "7.2.3", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", - "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", - "dev": true, - "requires": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.1.1", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - } - }, - "gopd": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", - "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", - "requires": { - "get-intrinsic": "^1.1.3" - } - }, - "har-schema": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz", - "integrity": "sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI=" - }, - "har-validator": { - "version": "5.1.3", - "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-5.1.3.tgz", - "integrity": "sha512-sNvOCzEQNr/qrvJgc3UG/kD4QtlHycrzwS+6mfTrrSq97BvaYcPZZI1ZSqGSPR73Cxn4LKTD4PttRwfU7jWq5g==", - "requires": { - "ajv": "^6.5.5", - "har-schema": "^2.0.0" - } - }, - "has": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", - "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", - "requires": { - "function-bind": "^1.1.1" - } - }, - "has-proto": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.1.tgz", - "integrity": "sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==" - }, - "has-symbols": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", - "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==" - }, - "has-tostringtag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz", - "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==", - "requires": { - "has-symbols": "^1.0.2" - } - }, - "http-signature": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz", - "integrity": "sha1-muzZJRFHcvPZW2WmCruPfBj7rOE=", - "requires": { - "assert-plus": "^1.0.0", - "jsprim": "^1.2.2", - "sshpk": "^1.7.0" - } - }, - "inflight": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", - "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", - "dev": true, - "requires": { - "once": "^1.3.0", - "wrappy": "1" - } - }, - "inherits": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", - "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" - }, - "ip": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ip/-/ip-2.0.0.tgz", - "integrity": "sha512-WKa+XuLG1A1R0UWhl2+1XQSi+fZWMsYKffMZTTYsiZaUD8k2yDAj5atimTUD2TZkyCkNEeYE5NhFZmupOGtjYQ==" - }, - "is-arguments": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.1.tgz", - "integrity": "sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==", - "requires": { - "call-bind": "^1.0.2", - "has-tostringtag": "^1.0.0" - } - }, - "is-arrayish": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.2.tgz", - "integrity": "sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==" - }, - "is-callable": { - "version": "1.2.7", - "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", - "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==" - }, - "is-generator-function": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.0.10.tgz", - "integrity": "sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==", - "requires": { - "has-tostringtag": "^1.0.0" - } - }, - "is-stream": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", - "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==" - }, - "is-typed-array": { - "version": "1.1.10", - "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.10.tgz", - "integrity": "sha512-PJqgEHiWZvMpaFZ3uTc8kHPM4+4ADTlDniuQL7cU/UDA0Ql7F70yGfHph3cLNe+c9toaigv+DFzTJKhc2CtO6A==", - "requires": { - "available-typed-arrays": "^1.0.5", - "call-bind": "^1.0.2", - "for-each": "^0.3.3", - "gopd": "^1.0.1", - "has-tostringtag": "^1.0.0" - } - }, - "is-typedarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", - "integrity": "sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=" - }, - "isstream": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz", - "integrity": "sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo=" - }, - "js-yaml": { - "version": "3.14.1", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", - "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", - "requires": { - "argparse": "^1.0.7", - "esprima": "^4.0.0" - } - }, - "jsbn": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz", - "integrity": "sha1-peZUwuWi3rXyAdls77yoDA7y9RM=" - }, - "json-schema": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.4.0.tgz", - "integrity": "sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==" - }, - "json-schema-migrate": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/json-schema-migrate/-/json-schema-migrate-2.0.0.tgz", - "integrity": "sha512-r38SVTtojDRp4eD6WsCqiE0eNDt4v1WalBXb9cyZYw9ai5cGtBwzRNWjHzJl38w6TxFkXAIA7h+fyX3tnrAFhQ==", - "dev": true, - "requires": { - "ajv": "^8.0.0" - }, - "dependencies": { - "ajv": { - "version": "8.12.0", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", - "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", - "dev": true, - "requires": { - "fast-deep-equal": "^3.1.1", - "json-schema-traverse": "^1.0.0", - "require-from-string": "^2.0.2", - "uri-js": "^4.2.2" - } - }, - "json-schema-traverse": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", - "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", - "dev": true - } - } - }, - "json-schema-traverse": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", - "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" - }, - "json-stringify-safe": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", - "integrity": "sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus=" - }, - "json5": { - "version": "2.2.3", - "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", - "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", - "dev": true - }, - "jsprim": { - "version": "1.4.2", - "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.2.tgz", - "integrity": "sha512-P2bSOMAc/ciLz6DzgjVlGJP9+BrJWu5UDGK70C2iweC5QBIeFf0ZXRvGjEj2uYgrY2MkAAhsSWHDWlFtEroZWw==", - "requires": { - "assert-plus": "1.0.0", - "extsprintf": "1.3.0", - "json-schema": "0.4.0", - "verror": "1.10.0" - } - }, - "kuler": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/kuler/-/kuler-2.0.0.tgz", - "integrity": "sha512-Xq9nH7KlWZmXAtodXDDRE7vs6DU1gTU8zYDHDiWLSip45Egwq3plLHzPn27NgvzL2r1LMPC1vdqh98sQxtqj4A==" - }, - "logform": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/logform/-/logform-2.5.1.tgz", - "integrity": "sha512-9FyqAm9o9NKKfiAKfZoYo9bGXXuwMkxQiQttkT4YjjVtQVIQtK6LmVtlxmCaFswo6N4AfEkHqZTV0taDtPotNg==", - "requires": { - "@colors/colors": "1.5.0", - "@types/triple-beam": "^1.3.2", - "fecha": "^4.2.0", - "ms": "^2.1.1", - "safe-stable-stringify": "^2.3.1", - "triple-beam": "^1.3.0" - } - }, - "long": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/long/-/long-3.2.0.tgz", - "integrity": "sha1-2CG3E4yhy1gcFymQ7xTbIAtcR0s=" - }, - "lzma": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/lzma/-/lzma-2.3.2.tgz", - "integrity": "sha1-N4OySFi5wOdHoN88vx+1/KqSxEE=" - }, - "make-error": { - "version": "1.3.6", - "resolved": "https://registry.npmjs.org/make-error/-/make-error-1.3.6.tgz", - "integrity": "sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==", - "dev": true - }, - "mime-db": { - "version": "1.44.0", - "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.44.0.tgz", - "integrity": "sha512-/NOTfLrsPBVeH7YtFPgsVWveuL+4SjjYxaQ1xtM1KMFj7HdxlBlxeyNLzhyJVx7r4rZGJAZ/6lkKCitSc/Nmpg==" - }, - "mime-types": { - "version": "2.1.27", - "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.27.tgz", - "integrity": "sha512-JIhqnCasI9yD+SsmkquHBxTSEuZdQX5BuQnS2Vc7puQQQ+8yiP5AY5uWhpdv4YL4VM5c6iliiYWPgJ/nJQLp7w==", - "requires": { - "mime-db": "1.44.0" - } - }, - "minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", - "dev": true, - "requires": { - "brace-expansion": "^1.1.7" - } - }, - "minimist": { - "version": "1.2.8", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", - "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==" - }, - "moment": { - "version": "2.29.4", - "resolved": "https://registry.npmjs.org/moment/-/moment-2.29.4.tgz", - "integrity": "sha512-5LC9SOxjSc2HF6vO2CyuTDNivEdoz2IvyJJGj6X8DJ0eFyfszE0QiEd+iXmBvUP3WHxSjFH/vIsA0EN00cgr8w==" - }, - "ms": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" - }, - "node-bignumber": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/node-bignumber/-/node-bignumber-1.2.2.tgz", - "integrity": "sha512-VoTZHmdFQpZH1+q1dz2qcHNCwTWsJg2T3PYwlAyDNFOfVhSYUKQBLFcCpCud+wJBGgCttGavZILaIggDIKqEQQ==" - }, - "node-version-compare": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/node-version-compare/-/node-version-compare-1.0.2.tgz", - "integrity": "sha512-OVcHSPS3nROlBQXcALptOR0j2lOabC9wE2S+y+Fvr7nSDqoO/LCNzRdVGVovipeHUXs5jAqq7GelWE1X4J1sEw==" - }, - "nodemw": { - "version": "0.19.0", - "resolved": "https://registry.npmjs.org/nodemw/-/nodemw-0.19.0.tgz", - "integrity": "sha512-mT5SfXdvwfAScN6nIxG9/aYboT82y3LFb/XASVur21FIYu5wPpenvYHLMZtI72UNfDSsbsdWwBNGy9H79ilkUA==", - "requires": { - "ansicolors": "0.3.x", - "async": "^3.2.0", - "diff": "^5.0.0", - "node-version-compare": "^1.0.1", - "request": "^2.88.0", - "underscore": "^1.9.1", - "winston": "^3.3.3" - } - }, - "oauth-sign": { - "version": "0.9.0", - "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz", - "integrity": "sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==" - }, - "once": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", - "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", - "dev": true, - "requires": { - "wrappy": "1" - } - }, - "one-time": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/one-time/-/one-time-1.0.0.tgz", - "integrity": "sha512-5DXOiRKwuSEcQ/l0kGCF6Q3jcADFv5tSmRaJck/OqkVFcOzutB134KRSfF0xDrL39MNnqxbHBbUUcjZIhTgb2g==", - "requires": { - "fn.name": "1.x.x" - } - }, - "path-is-absolute": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", - "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", - "dev": true - }, - "performance-now": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz", - "integrity": "sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns=" - }, - "permessage-deflate": { - "version": "0.1.7", - "resolved": "https://registry.npmjs.org/permessage-deflate/-/permessage-deflate-0.1.7.tgz", - "integrity": "sha512-EUNi/RIsyJ1P1u9QHFwMOUWMYetqlE22ZgGbad7YP856WF4BFF0B7DuNy6vEGsgNNud6c/SkdWzkne71hH8MjA==", - "requires": { - "safe-buffer": "*" - } - }, - "protobufjs": { - "version": "6.11.3", - "resolved": "https://registry.npmjs.org/protobufjs/-/protobufjs-6.11.3.tgz", - "integrity": "sha512-xL96WDdCZYdU7Slin569tFX712BxsxslWwAfAhCYjQKGTq7dAU91Lomy6nLLhh/dyGhk/YH4TwTSRxTzhuHyZg==", - "requires": { - "@protobufjs/aspromise": "^1.1.2", - "@protobufjs/base64": "^1.1.2", - "@protobufjs/codegen": "^2.0.4", - "@protobufjs/eventemitter": "^1.1.0", - "@protobufjs/fetch": "^1.1.0", - "@protobufjs/float": "^1.0.2", - "@protobufjs/inquire": "^1.1.0", - "@protobufjs/path": "^1.1.2", - "@protobufjs/pool": "^1.1.0", - "@protobufjs/utf8": "^1.1.0", - "@types/long": "^4.0.1", - "@types/node": ">=13.7.0", - "long": "^4.0.0" - }, - "dependencies": { - "long": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/long/-/long-4.0.0.tgz", - "integrity": "sha512-XsP+KhQif4bjX1kbuSiySJFNAehNxgLb6hPRGJ9QsUr8ajHkuXGdrHmFUTUUXhDwVX2R5bY4JNZEwbUiMhV+MA==" - } - } - }, - "psl": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/psl/-/psl-1.9.0.tgz", - "integrity": "sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==" - }, - "punycode": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", - "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==" - }, - "qs": { - "version": "6.5.3", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.3.tgz", - "integrity": "sha512-qxXIEh4pCGfHICj1mAJQ2/2XVZkjCDTcEgfoSQxc/fYivUZxTkk7L3bDBJSoNrEzXI17oUO5Dp07ktqE5KzczA==" - }, - "readable-stream": { - "version": "3.6.2", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", - "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", - "requires": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - } - }, - "request": { - "version": "2.88.2", - "resolved": "https://registry.npmjs.org/request/-/request-2.88.2.tgz", - "integrity": "sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw==", - "requires": { - "aws-sign2": "~0.7.0", - "aws4": "^1.8.0", - "caseless": "~0.12.0", - "combined-stream": "~1.0.6", - "extend": "~3.0.2", - "forever-agent": "~0.6.1", - "form-data": "~2.3.2", - "har-validator": "~5.1.3", - "http-signature": "~1.2.0", - "is-typedarray": "~1.0.0", - "isstream": "~0.1.2", - "json-stringify-safe": "~5.0.1", - "mime-types": "~2.1.19", - "oauth-sign": "~0.9.0", - "performance-now": "^2.1.0", - "qs": "~6.5.2", - "safe-buffer": "^5.1.2", - "tough-cookie": "~2.5.0", - "tunnel-agent": "^0.6.0", - "uuid": "^3.3.2" - } - }, - "require-from-string": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz", - "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==", - "dev": true - }, - "safe-buffer": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", - "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==" - }, - "safe-stable-stringify": { - "version": "2.4.3", - "resolved": "https://registry.npmjs.org/safe-stable-stringify/-/safe-stable-stringify-2.4.3.tgz", - "integrity": "sha512-e2bDA2WJT0wxseVd4lsDP4+3ONX6HpMXQa1ZhFQ7SU+GjvORCmShbCMltrtIDfkYhVHrOcPtj+KhmDBdPdZD1g==" - }, - "safer-buffer": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", - "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" - }, - "simple-swizzle": { - "version": "0.2.2", - "resolved": "https://registry.npmjs.org/simple-swizzle/-/simple-swizzle-0.2.2.tgz", - "integrity": "sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==", - "requires": { - "is-arrayish": "^0.3.1" - } - }, - "simple-vdf": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/simple-vdf/-/simple-vdf-1.1.1.tgz", - "integrity": "sha512-IHz5fiOyWX0etTzlrzpWfKWxkwOhSwbbuZxcig+JuON0id1clnYlINBRbe4M4Pz4VnNvNvNaZiKiS7tdIYyF6g==" - }, - "smart-buffer": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/smart-buffer/-/smart-buffer-4.2.0.tgz", - "integrity": "sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==" - }, - "socks": { - "version": "2.7.1", - "resolved": "https://registry.npmjs.org/socks/-/socks-2.7.1.tgz", - "integrity": "sha512-7maUZy1N7uo6+WVEX6psASxtNlKaNVMlGQKkG/63nEDdLOWNbiUMoLK7X4uYoLhQstau72mLgfEWcXcwsaHbYQ==", - "requires": { - "ip": "^2.0.0", - "smart-buffer": "^4.2.0" - } - }, - "socks-proxy-agent": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/socks-proxy-agent/-/socks-proxy-agent-7.0.0.tgz", - "integrity": "sha512-Fgl0YPZ902wEsAyiQ+idGd1A7rSFx/ayC1CQVMw5P+EQx2V0SgpGtf6OKFhVjPflPUl9YMmEOnmfjCdMUsygww==", - "requires": { - "agent-base": "^6.0.2", - "debug": "^4.3.3", - "socks": "^2.6.2" - } - }, - "sprintf-js": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", - "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==" - }, - "sshpk": { - "version": "1.16.1", - "resolved": "https://registry.npmjs.org/sshpk/-/sshpk-1.16.1.tgz", - "integrity": "sha512-HXXqVUq7+pcKeLqqZj6mHFUMvXtOJt1uoUx09pFW6011inTMxqI8BA8PM95myrIyyKwdnzjdFjLiE6KBPVtJIg==", - "requires": { - "asn1": "~0.2.3", - "assert-plus": "^1.0.0", - "bcrypt-pbkdf": "^1.0.0", - "dashdash": "^1.12.0", - "ecc-jsbn": "~0.1.1", - "getpass": "^0.1.1", - "jsbn": "~0.1.0", - "safer-buffer": "^2.0.2", - "tweetnacl": "~0.14.0" - } - }, - "stack-trace": { - "version": "0.0.10", - "resolved": "https://registry.npmjs.org/stack-trace/-/stack-trace-0.0.10.tgz", - "integrity": "sha512-KGzahc7puUKkzyMt+IqAep+TVNbKP+k2Lmwhub39m1AsTSkaDutx56aDCo+HLDzf/D26BIHTJWNiTG1KAJiQCg==" - }, - "steam-appticket": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/steam-appticket/-/steam-appticket-1.0.1.tgz", - "integrity": "sha512-oYVInCvJlPPaQPYW1+iGcVP0N0ZvwtWiCDM1Z353XJ8l4DXQI/N+R5yyaRQcHRH5oQv3+BY6gPF40lu7gwEiJw==", - "requires": { - "@doctormckay/stdlib": "^1.6.0", - "@doctormckay/steam-crypto": "^1.2.0", - "bytebuffer": "^5.0.1", - "protobufjs": "^6.8.8", - "steamid": "^1.1.0" - } - }, - "steam-session": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/steam-session/-/steam-session-1.2.3.tgz", - "integrity": "sha512-8t4x6BoNcXU53k+YSmhC1cTZSks0SmbXgezKQS3xf6mu3Mrorr+eWNi86FT1vqrtR7g0aCADBRGaRxmJnCFu+g==", - "requires": { - "@doctormckay/stdlib": "^2.4.1", - "debug": "^4.3.4", - "node-bignumber": "^1.2.2", - "protobufjs": "^7.1.0", - "socks-proxy-agent": "^7.0.0", - "steamid": "^2.0.0", - "vdf": "^0.0.2", - "websocket13": "^3.0.1" - }, - "dependencies": { - "@doctormckay/stdlib": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/@doctormckay/stdlib/-/stdlib-2.4.2.tgz", - "integrity": "sha512-8kD4L05WJZezcnZoTi+oi4ei7M6CLIH0JJHgULrYoIex3fPF73bWypkF9XcuN2MDAbEW1rzeBbBDJnJK20gG6Q==", - "requires": { - "psl": "^1.9.0" - } - }, - "long": { - "version": "5.2.3", - "resolved": "https://registry.npmjs.org/long/-/long-5.2.3.tgz", - "integrity": "sha512-lcHwpNoggQTObv5apGNCTdJrO69eHOZMi4BNC+rTLER8iHAqGrUVeLh/irVIM7zTw2bOXA8T6uNPeujwOLg/2Q==" - }, - "protobufjs": { - "version": "7.2.3", - "resolved": "https://registry.npmjs.org/protobufjs/-/protobufjs-7.2.3.tgz", - "integrity": "sha512-TtpvOqwB5Gdz/PQmOjgsrGH1nHjAQVCN7JG4A6r1sXRWESL5rNMAiRcBQlCAdKxZcAbstExQePYG8xof/JVRgg==", - "requires": { - "@protobufjs/aspromise": "^1.1.2", - "@protobufjs/base64": "^1.1.2", - "@protobufjs/codegen": "^2.0.4", - "@protobufjs/eventemitter": "^1.1.0", - "@protobufjs/fetch": "^1.1.0", - "@protobufjs/float": "^1.0.2", - "@protobufjs/inquire": "^1.1.0", - "@protobufjs/path": "^1.1.2", - "@protobufjs/pool": "^1.1.0", - "@protobufjs/utf8": "^1.1.0", - "@types/node": ">=13.7.0", - "long": "^5.0.0" - } - }, - "steamid": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/steamid/-/steamid-2.0.0.tgz", - "integrity": "sha512-+BFJMbo+IxzyfovLR37E7APkaNfmrL3S+88T7wTMRHnQ6LBhzEawPnjfWNKM9eUL/dH45j+7vhSX4WaGXoa4/Q==" - } - } - }, - "steam-totp": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/steam-totp/-/steam-totp-2.1.1.tgz", - "integrity": "sha512-d+tjnr3wwDkbrKFxjYZ0uK4CSF09oJwCmlGH8SdOlTDkbtBPuNhPKY0XzZxQVltZF6/JkEYj+uz+kBr6UrY7BQ==" - }, - "steam-user": { - "version": "4.28.6", - "resolved": "https://registry.npmjs.org/steam-user/-/steam-user-4.28.6.tgz", - "integrity": "sha512-ZZv92jVKwnJYFI63+U7WPwSx+bL/FPLLcT9b4nsT/27UZe9YnF0Ankd3jLhBtdo8R9EVAN7PkIMJJBxUCQHrzA==", - "requires": { - "@bbob/parser": "^2.2.0", - "@doctormckay/stdlib": "^1.15.1", - "@doctormckay/steam-crypto": "^1.2.0", - "adm-zip": "^0.5.10", - "appdirectory": "^0.1.0", - "binarykvparser": "^2.2.0", - "bytebuffer": "^5.0.0", - "file-manager": "^2.0.0", - "lzma": "^2.3.2", - "protobufjs": "^6.11.3", - "simple-vdf": "^1.1.1", - "socks-proxy-agent": "^7.0.0", - "steam-appticket": "^1.0.1", - "steam-session": "^1.1.0", - "steam-totp": "^2.0.1", - "steamid": "^1.1.0", - "websocket13": "^3.0.1" - } - }, - "steamid": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/steamid/-/steamid-1.1.3.tgz", - "integrity": "sha512-t86YjtP1LtPt8D+TaIARm6PtC9tBnF1FhxQeLFs6ohG7vDUfQuy/M8II14rx1TTUkVuYoWHP/7DlvTtoCGULcw==", - "requires": { - "cuint": "^0.2.1" - } - }, - "string_decoder": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", - "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", - "requires": { - "safe-buffer": "~5.2.0" - } - }, - "text-hex": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/text-hex/-/text-hex-1.0.0.tgz", - "integrity": "sha512-uuVGNWzgJ4yhRaNSiubPY7OjISw4sw4E5Uv0wbjp+OzcbmVU/rsT8ujgcXJhn9ypzsgr5vlzpPqP+MBBKcGvbg==" - }, - "tiny-typed-emitter": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/tiny-typed-emitter/-/tiny-typed-emitter-2.1.0.tgz", - "integrity": "sha512-qVtvMxeXbVej0cQWKqVSSAHmKZEHAvxdF8HEUBFWts8h+xEo5m/lEiPakuyZ3BnCBjOD8i24kzNOiOLLgsSxhA==" - }, - "tough-cookie": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.5.0.tgz", - "integrity": "sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==", - "requires": { - "psl": "^1.1.28", - "punycode": "^2.1.1" - } - }, - "triple-beam": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/triple-beam/-/triple-beam-1.3.0.tgz", - "integrity": "sha512-XrHUvV5HpdLmIj4uVMxHggLbFSZYIn7HEWsqePZcI50pco+MPqJ50wMGY794X7AOOhxOBAjbkqfAbEe/QMp2Lw==" - }, - "ts-node": { - "version": "10.9.1", - "resolved": "https://registry.npmjs.org/ts-node/-/ts-node-10.9.1.tgz", - "integrity": "sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==", - "dev": true, - "requires": { - "@cspotcode/source-map-support": "^0.8.0", - "@tsconfig/node10": "^1.0.7", - "@tsconfig/node12": "^1.0.7", - "@tsconfig/node14": "^1.0.0", - "@tsconfig/node16": "^1.0.2", - "acorn": "^8.4.1", - "acorn-walk": "^8.1.1", - "arg": "^4.1.0", - "create-require": "^1.1.0", - "diff": "^4.0.1", - "make-error": "^1.1.1", - "v8-compile-cache-lib": "^3.0.1", - "yn": "3.1.1" - }, - "dependencies": { - "diff": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/diff/-/diff-4.0.2.tgz", - "integrity": "sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==", - "dev": true - } - } - }, - "tunnel-agent": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz", - "integrity": "sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0=", - "requires": { - "safe-buffer": "^5.0.1" - } - }, - "tweetnacl": { - "version": "0.14.5", - "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz", - "integrity": "sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q=" - }, - "typescript": { - "version": "5.1.3", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.1.3.tgz", - "integrity": "sha512-XH627E9vkeqhlZFQuL+UsyAXEnibT0kWR2FWONlr4sTjvxyJYnyefgrkyECLzM5NenmKzRAy2rR/OlYLA1HkZw==", - "dev": true - }, - "underscore": { - "version": "1.13.2", - "resolved": "https://registry.npmjs.org/underscore/-/underscore-1.13.2.tgz", - "integrity": "sha512-ekY1NhRzq0B08g4bGuX4wd2jZx5GnKz6mKSqFL4nqBlfyMGiG10gDFhDTMEfYmDL6Jy0FUIZp7wiRB+0BP7J2g==" - }, - "uri-js": { - "version": "4.2.2", - "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.2.2.tgz", - "integrity": "sha512-KY9Frmirql91X2Qgjry0Wd4Y+YTdrdZheS8TFwvkbLWf/G5KNJDCh6pKL5OZctEW4+0Baa5idK2ZQuELRwPznQ==", - "requires": { - "punycode": "^2.1.0" - } - }, - "util": { - "version": "0.12.5", - "resolved": "https://registry.npmjs.org/util/-/util-0.12.5.tgz", - "integrity": "sha512-kZf/K6hEIrWHI6XqOFUiiMa+79wE/D8Q+NCNAWclkyg3b4d2k7s0QGepNjiABc+aR3N1PAyHL7p6UcLY6LmrnA==", - "requires": { - "inherits": "^2.0.3", - "is-arguments": "^1.0.4", - "is-generator-function": "^1.0.7", - "is-typed-array": "^1.1.3", - "which-typed-array": "^1.1.2" - } - }, - "util-deprecate": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", - "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==" - }, - "uuid": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz", - "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==" - }, - "v8-compile-cache-lib": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/v8-compile-cache-lib/-/v8-compile-cache-lib-3.0.1.tgz", - "integrity": "sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==", - "dev": true - }, - "vdf": { - "version": "0.0.2", - "resolved": "https://registry.npmjs.org/vdf/-/vdf-0.0.2.tgz", - "integrity": "sha512-iqFbR0zZeXQGaJzr7g8tFdQAgqIO3aTGoTLQGDugbiX4AZGdkbzSS/q9MXbvOSTfdP4TAEYZ124QWwLoueKvSw==", - "requires": { - "util": "*" - } - }, - "verror": { - "version": "1.10.0", - "resolved": "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz", - "integrity": "sha1-OhBcoXBTr1XW4nDB+CiGguGNpAA=", - "requires": { - "assert-plus": "^1.0.0", - "core-util-is": "1.0.2", - "extsprintf": "^1.2.0" - } - }, - "websocket-extensions": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/websocket-extensions/-/websocket-extensions-0.1.4.tgz", - "integrity": "sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==" - }, - "websocket13": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/websocket13/-/websocket13-3.0.2.tgz", - "integrity": "sha512-OgzxBXT9eQ0eEapeK2OKFlgKpegQnjMweHLUwGmfJhm+IbgpZ+NPT2eAEP1UUUjBslbmKpZ47rFU6Dp6agfyGQ==", - "requires": { - "@doctormckay/stdlib": "^1.8.0", - "bytebuffer": "^5.0.1", - "permessage-deflate": "^0.1.7", - "tiny-typed-emitter": "^2.1.0", - "websocket-extensions": "^0.1.4" - } - }, - "which-typed-array": { - "version": "1.1.9", - "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.9.tgz", - "integrity": "sha512-w9c4xkx6mPidwp7180ckYWfMmvxpjlZuIudNtDf4N/tTAUB8VJbX25qZoAsrtGuYNnGw3pa0AXgbGKRB8/EceA==", - "requires": { - "available-typed-arrays": "^1.0.5", - "call-bind": "^1.0.2", - "for-each": "^0.3.3", - "gopd": "^1.0.1", - "has-tostringtag": "^1.0.0", - "is-typed-array": "^1.1.10" - } - }, - "wikiapi": { - "version": "1.19.4", - "resolved": "https://registry.npmjs.org/wikiapi/-/wikiapi-1.19.4.tgz", - "integrity": "sha512-gh6M026re+FxkQS6DEjTTii/zs3VGvCT8HYkIG17NsNGPW9hiZT8uWovU/uu0JUKZ3OXdy+JD94Jk4ko++AZ8Q==", - "requires": { - "cejs": "latest" - } - }, - "wikiparse": { - "version": "1.0.27", - "resolved": "https://registry.npmjs.org/wikiparse/-/wikiparse-1.0.27.tgz", - "integrity": "sha512-Y/E+iQPaFw4z9pSnnC1eYVqYY6mcr4QQ7XLMdKgQuB/I7aQSGaMwOtnLcZWE1Rb5F3xqVhwMjQ3OD1QKNj1pNw==" - }, - "winston": { - "version": "3.9.0", - "resolved": "https://registry.npmjs.org/winston/-/winston-3.9.0.tgz", - "integrity": "sha512-jW51iW/X95BCW6MMtZWr2jKQBP4hV5bIDq9QrIjfDk6Q9QuxvTKEAlpUNAzP+HYHFFCeENhph16s0zEunu4uuQ==", - "requires": { - "@colors/colors": "1.5.0", - "@dabh/diagnostics": "^2.0.2", - "async": "^3.2.3", - "is-stream": "^2.0.0", - "logform": "^2.4.0", - "one-time": "^1.0.0", - "readable-stream": "^3.4.0", - "safe-stable-stringify": "^2.3.1", - "stack-trace": "0.0.x", - "triple-beam": "^1.3.0", - "winston-transport": "^4.5.0" - } - }, - "winston-transport": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/winston-transport/-/winston-transport-4.5.0.tgz", - "integrity": "sha512-YpZzcUzBedhlTAfJg6vJDlyEai/IFMIVcaEZZyl3UXIl4gmqRpU7AE89AHLkbzLUsv0NVmw7ts+iztqKxxPW1Q==", - "requires": { - "logform": "^2.3.2", - "readable-stream": "^3.6.0", - "triple-beam": "^1.3.0" - } - }, - "wrappy": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", - "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", - "dev": true - }, - "yn": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/yn/-/yn-3.1.1.tgz", - "integrity": "sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==", - "dev": true - } - } -} diff --git a/package.json b/package.json deleted file mode 100644 index 2abc7402..00000000 --- a/package.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "name": "ludusavi-manifest", - "version": "0.0.0", - "description": "Game data backup info", - "author": "Matthew T. Kennerly ", - "license": "MIT", - "scripts": { - "wiki": "ts-node ./src/bin.ts --wiki", - "manifest": "ts-node ./src/bin.ts --manifest", - "recent": "ts-node ./src/bin.ts --limit 0 --wiki --manifest --recent", - "schema": "npm run schema:normal && npm run schema:strict", - "schema:normal": "ajv validate -s ./data/schema.yaml -d ./data/manifest.yaml", - "schema:strict": "ajv validate -s ./data/schema.strict.yaml -d ./data/manifest.yaml", - "stats": "ts-node ./src/bin.ts --stats", - "duplicates": "ts-node ./src/bin.ts --duplicates", - "steam": "ts-node ./src/bin.ts --steam" - }, - "devDependencies": { - "@types/js-yaml": "^3.12.4", - "@types/minimist": "^1.2.2", - "@types/node": "^20.3.1", - "ajv-cli": "^5.0.0", - "ts-node": "^10.9.1", - "typescript": "^5.1.3" - }, - "dependencies": { - "js-yaml": "^3.14.0", - "minimist": "^1.2.8", - "moment": "^2.29.4", - "nodemw": "^0.19.0", - "steam-user": "^4.28.6", - "wikiapi": "^1.19.4", - "wikiparse": "^1.0.27" - } -} diff --git a/rustfmt.toml b/rustfmt.toml new file mode 100644 index 00000000..75306517 --- /dev/null +++ b/rustfmt.toml @@ -0,0 +1 @@ +max_width = 120 diff --git a/scripts/get-steam-app-info.py b/scripts/get-steam-app-info.py new file mode 100644 index 00000000..64d5b8e0 --- /dev/null +++ b/scripts/get-steam-app-info.py @@ -0,0 +1,18 @@ +import json +import sys + +from steam.client import SteamClient + + +def main(): + app_id = int(sys.argv[1]) + + client = SteamClient() + client.anonymous_login() + + info = client.get_product_info(apps=[app_id]) + print(json.dumps(info, indent=2)) + + +if __name__ == "__main__": + main() diff --git a/src/bin.ts b/src/bin.ts deleted file mode 100644 index 7c1df0f4..00000000 --- a/src/bin.ts +++ /dev/null @@ -1,143 +0,0 @@ -import minimist from "minimist"; - -import { DEFAULT_GAME_LIMIT } from "."; -import { ManifestFile, ManifestOverrideFile } from "./manifest"; -import { SteamGameCacheFile, getSteamClient } from "./steam"; -import { WikiGameCacheFile, WikiMetaCacheFile } from "./wiki"; -import { saveMissingGames } from "./missing"; - -interface Cli { - wiki?: boolean, - manifest?: boolean, - stats?: boolean, - duplicates?: boolean, - all?: boolean, - irregular?: boolean, - irregularPathUntagged?: boolean, - skipUntil?: string, - recent?: boolean, - missing?: boolean, - limit?: number, - steam?: boolean, -} - -async function main() { - const args = minimist(process.argv.slice(2), { - boolean: [ - "wiki", - "manifest", - "stats", - "all", - "irregular", - "irregularPathUntagged", - "steam", - "missing", - ], - string: [ - "skipUntil", - ], - }); - - const wikiCache = new WikiGameCacheFile(); - wikiCache.load(); - const wikiMetaCache = new WikiMetaCacheFile(); - wikiMetaCache.load(); - const steamCache = new SteamGameCacheFile(getSteamClient); - steamCache.load(); - const manifest = new ManifestFile(); - manifest.load(); - const manifestOverride = new ManifestOverrideFile(); - manifestOverride.load(); - - if (args.stats) { - console.log(`Total games in manifest: ${Object.keys(manifest.data).length}`); - console.log(`Total games in manifest with files or registry: ${Object.values(manifest.data).filter(x => x.files !== undefined || x.registry !== undefined).length}`); - console.log(`Total games in manifest without files and registry: ${Object.values(manifest.data).filter(x => x.files === undefined && x.registry === undefined).length}`); - console.log(`Total games in wiki cache: ${Object.keys(wikiCache.data).length}`); - process.exit(0); - } - - if (args.duplicates) { - const data: {[key: string]: Array<{ name: string; pageId: number }>} = {}; - for (const [name, info] of Object.entries(manifest.data)) { - const key = JSON.stringify(info); - let safe = false; - for (const file of Object.keys(info.files ?? {})) { - if (file.includes("") || file.includes("")) { - safe = true; - } - } - if (safe) { - continue; - } - if (!(key in data)) { - data[key] = []; - } - data[key].push({ name, pageId: wikiCache.data[name]?.pageId ?? 0 }); - } - for (const games of Object.values(data)) { - if (games.length > 1) { - const lines = games.map(({ name, pageId }) => `[${pageId}] ${name}`); - console.log(`\nSame manifest entry:\n - ${lines.join("\n - ")}`); - } - } - process.exit(0); - } - - try { - if (args.wiki) { - if (args.recent) { - await wikiCache.flagRecentChanges(wikiMetaCache); - } else if (args.missing) { - await wikiCache.addNewGames(); - } - - await wikiCache.refresh( - args.skipUntil, - args.limit ?? DEFAULT_GAME_LIMIT, - args.all ?? false, - args._ ?? [], - ); - } - - if (args.steam) { - await steamCache.refresh( - args.skipUntil, - args.irregular ?? false, - args.irregularPathUntagged ?? false, - args.limit ?? DEFAULT_GAME_LIMIT, - args._.map(x => x.toString()) ?? [], - ); - } - - if (args.manifest) { - await manifest.updateGames( - wikiCache.data, - args._ ?? [], - steamCache, - manifestOverride, - ); - } - - wikiCache.save(); - wikiMetaCache.save(); - steamCache.save(); - manifest.save(); - saveMissingGames(wikiCache.data, manifest.data, manifestOverride.data); - if (steamCache.steamClient) { - steamCache.steamClient.logOff(); - } - process.exit(0); - } catch (e) { - wikiCache.save(); - steamCache.save(); - manifest.save(); - saveMissingGames(wikiCache.data, manifest.data, manifestOverride.data); - if (steamCache.steamClient) { - steamCache.steamClient.logOff(); - } - throw e; - } -} - -main(); diff --git a/src/cli.rs b/src/cli.rs new file mode 100644 index 00000000..dd8ddf17 --- /dev/null +++ b/src/cli.rs @@ -0,0 +1,164 @@ +use std::collections::HashMap; + +use crate::{ + manifest::{placeholder, Manifest, ManifestOverride}, + schema, + steam::SteamCache, + wiki::{WikiCache, WikiMetaCache}, + Error, +}; + +#[derive(clap::Parser, Clone, Debug, PartialEq, Eq)] +#[clap(name = "ludusavi", version, term_width = 79)] +pub struct Cli { + #[clap(subcommand)] + pub sub: Subcommand, +} + +#[derive(clap::Subcommand, Clone, Debug, PartialEq, Eq)] +pub enum Subcommand { + /// Fetch bulk updates from the data sources. + /// By default, this only updates entries that are marked as outdated. + Bulk { + /// Do a full sync. + #[clap(long)] + full: bool, + + /// Do a partial update based on the wiki's recent changes. + #[clap(long)] + recent_changes: bool, + + /// Do a partial update based on the wiki's game pages that are not yet cached. + #[clap(long)] + missing_pages: bool, + }, + /// Fetch a named subset of games. + Solo { + #[clap(long)] + local: bool, + + #[clap()] + games: Vec, + }, + /// Validate the manifest against its schema. + Schema, + /// Display some stats about the manifest. + Stats, + /// Find duplicate manifest entries. + Duplicates, +} + +pub fn parse() -> Cli { + use clap::Parser; + Cli::parse() +} + +pub async fn run( + sub: Subcommand, + manifest: &mut Manifest, + manifest_override: &mut ManifestOverride, + wiki_cache: &mut WikiCache, + wiki_meta_cache: &mut WikiMetaCache, + steam_cache: &mut SteamCache, +) -> Result<(), Error> { + match sub { + Subcommand::Bulk { + full, + recent_changes, + missing_pages, + } => { + let outdated_only = !full; + + if recent_changes { + wiki_cache.flag_recent_changes(wiki_meta_cache).await?; + } + + if missing_pages { + wiki_cache.add_new_games().await?; + } + + wiki_cache.refresh(outdated_only, None).await?; + + steam_cache.transition_states_from(wiki_cache); + steam_cache.refresh(outdated_only, None)?; + + manifest.refresh(manifest_override, wiki_cache, steam_cache, None)?; + schema::validate_manifest(manifest)?; + } + Subcommand::Solo { local, games } => { + let outdated_only = false; + + if !local { + wiki_cache.refresh(outdated_only, Some(games.clone())).await?; + + let steam_ids: Vec<_> = games + .iter() + .filter_map(|x| wiki_cache.0.get(x).and_then(|x| x.steam)) + .collect(); + + steam_cache.transition_states_from(wiki_cache); + steam_cache.refresh(outdated_only, Some(steam_ids))?; + } + + manifest.refresh(manifest_override, wiki_cache, steam_cache, Some(games))?; + schema::validate_manifest(manifest)?; + } + Subcommand::Schema => { + schema::validate_manifest(manifest)?; + } + Subcommand::Stats => { + let games = manifest.0.keys().count(); + let files_or_registry = manifest + .0 + .values() + .filter(|x| !x.files.is_empty() || !x.registry.is_empty()) + .count(); + let no_files_or_registry = manifest + .0 + .values() + .filter(|x| x.files.is_empty() && x.registry.is_empty()) + .count(); + let in_wiki_cache = wiki_cache.0.keys().count(); + + println!("Total games in manifest: {}", games); + println!("Total games in manifest with files or registry: {}", files_or_registry); + println!( + "Total games in manifest without files and registry: {}", + no_files_or_registry + ); + println!("Total games in wiki cache: {}", in_wiki_cache); + } + Subcommand::Duplicates => { + struct Duplicate { + name: String, + page_id: u64, + } + let mut data = HashMap::>::new(); + + 'games: for (name, info) in &manifest.0 { + for file in info.files.keys() { + if file.contains(placeholder::GAME) || file.contains(placeholder::BASE) { + continue 'games; + } + } + let key = serde_json::to_string(info).unwrap(); + data.entry(key).or_default().push(Duplicate { + name: name.clone(), + page_id: wiki_cache.0.get(name).map(|x| x.page_id).unwrap_or(0), + }); + } + + for duplicates in data.values() { + if duplicates.len() > 1 { + let lines: Vec<_> = duplicates + .iter() + .map(|x| format!("[{}] {}", x.page_id, x.name)) + .collect(); + println!("\nSame manifest entry:\n - {}", lines.join("\n - ")); + } + } + } + } + + Ok(()) +} diff --git a/src/index.ts b/src/index.ts deleted file mode 100644 index 60337da6..00000000 --- a/src/index.ts +++ /dev/null @@ -1,62 +0,0 @@ -import * as pathMod from "path"; -import * as fs from "fs"; -import * as yaml from "js-yaml"; - -export const REPO = pathMod.dirname(__dirname); -export const DELAY_BETWEEN_GAMES_MS = 250; -export const DEFAULT_GAME_LIMIT = 25; - -export class UnsupportedError extends Error { - constructor(message?: string) { - super(message); - Object.setPrototypeOf(this, new.target.prototype); - } -} - -export class UnsupportedOsError extends UnsupportedError { - constructor(message?: string) { - super(message); - Object.setPrototypeOf(this, new.target.prototype); - } -} - -export class UnsupportedPathError extends UnsupportedError { - constructor(message?: string) { - super(message); - Object.setPrototypeOf(this, new.target.prototype); - } -} - -export enum PathType { - FileSystem, - Registry, -} - -export abstract class YamlFile { - data: T; - abstract path: string; - abstract defaultData: T; - - load(): void { - if (fs.existsSync(this.path)) { - this.data = yaml.safeLoad(fs.readFileSync(this.path, "utf8")) as T; - } else { - this.data = this.defaultData; - } - } - - save(): void { - fs.writeFileSync( - this.path, - yaml.safeDump( - this.data, - { - sortKeys: true, - indent: 2, - skipInvalid: true, - lineWidth: 120, - } - ) - ); - } -} diff --git a/src/main.rs b/src/main.rs new file mode 100644 index 00000000..e1e083fc --- /dev/null +++ b/src/main.rs @@ -0,0 +1,105 @@ +mod cli; +mod manifest; +mod missing; +mod resource; +mod schema; +mod steam; +mod wiki; + +use crate::{ + manifest::{Manifest, ManifestOverride}, + resource::ResourceFile, + steam::SteamCache, + wiki::{WikiCache, WikiMetaCache}, +}; + +pub const REPO: &str = env!("CARGO_MANIFEST_DIR"); + +#[derive(Debug, Default, Clone, Copy, PartialEq, Eq, serde::Serialize, serde::Deserialize)] +#[serde(rename_all = "camelCase")] +pub enum State { + /// This entry needs to be re-fetched from the data source. + Outdated, + /// This entry has been re-fetched, but is awaiting recognition by another step. + Updated, + /// This entry has been fully processed. + #[default] + Handled, +} + +impl State { + pub fn is_handled(&self) -> bool { + *self == Self::Handled + } +} + +#[derive(Debug, thiserror::Error)] +pub enum Error { + #[error("Wiki client: {0}")] + WikiClient(#[from] mediawiki::media_wiki_error::MediaWikiError), + #[error("Wiki data missing or malformed: {0}")] + WikiData(&'static str), + #[error("Unable to find page by title or ID")] + PageMissing, + #[error("Could not find product info")] + SteamProductInfo, + #[error("Schema validation failed for manifest")] + ManifestSchema, + #[error("Subprocess: {0}")] + Subprocess(#[from] std::io::Error), +} + +impl Error { + pub fn should_discard_work(&self) -> bool { + match self { + Error::WikiClient(_) + | Error::WikiData(_) + | Error::PageMissing + | Error::SteamProductInfo + | Error::Subprocess(_) => false, + Error::ManifestSchema => true, + } + } +} + +#[tokio::main] +async fn main() { + let cli = cli::parse(); + + let mut wiki_cache = WikiCache::load().unwrap(); + let mut wiki_meta_cache = WikiMetaCache::load().unwrap(); + let mut steam_cache = SteamCache::load().unwrap(); + let mut manifest = Manifest::load().unwrap(); + let mut manifest_override = ManifestOverride::load().unwrap(); + + let mut success = true; + let mut discard = false; + if let Err(e) = cli::run( + cli.sub, + &mut manifest, + &mut manifest_override, + &mut wiki_cache, + &mut wiki_meta_cache, + &mut steam_cache, + ) + .await + { + eprintln!("{e}"); + success = false; + discard = e.should_discard_work(); + } + + if !discard { + if success { + wiki_meta_cache.save(); + } + wiki_cache.save(); + steam_cache.save(); + manifest.save(); + missing::save_missing_games(&wiki_cache, &manifest, &manifest_override); + } + + if !success { + std::process::exit(1); + } +} diff --git a/src/manifest.rs b/src/manifest.rs new file mode 100644 index 00000000..c12b7a4d --- /dev/null +++ b/src/manifest.rs @@ -0,0 +1,458 @@ +use std::collections::{BTreeMap, BTreeSet}; + +use crate::{ + resource::ResourceFile, + steam::{SteamCache, SteamCacheEntry}, + wiki::{PathKind, WikiCache, WikiCacheEntry}, + Error, +}; + +pub mod placeholder { + pub const ROOT: &str = ""; + pub const GAME: &str = ""; + pub const BASE: &str = ""; + pub const HOME: &str = ""; + pub const STORE_USER_ID: &str = ""; + pub const OS_USER_NAME: &str = ""; + pub const WIN_APP_DATA: &str = ""; + pub const WIN_LOCAL_APP_DATA: &str = ""; + pub const WIN_DOCUMENTS: &str = ""; + pub const WIN_PUBLIC: &str = ""; + pub const WIN_PROGRAM_DATA: &str = ""; + pub const WIN_DIR: &str = ""; + pub const XDG_DATA: &str = ""; + pub const XDG_CONFIG: &str = ""; +} + +fn do_launch_paths_match(from_steam: Option, from_manifest: Option) -> bool { + match (from_steam, from_manifest) { + (None, None) => true, + (Some(from_steam), from_manifest) => normalize_launch_path(&from_steam) == from_manifest, + _ => false, + } +} + +fn normalize_launch_path(raw: &str) -> Option { + if raw.contains("://") { + return Some(raw.to_string()); + } + + let standardized = raw.replace('\\', "/").replace("//", "/"); + let standardized = standardized + .trim_end_matches('/') + .trim_start_matches("./") + .trim_start_matches('/'); + + if standardized.is_empty() || standardized == "." { + None + } else { + Some(format!("{}/{}", placeholder::BASE, standardized)) + } +} + +#[derive(Clone, Copy, Debug, Default, PartialEq, Eq, PartialOrd, Ord, serde::Serialize, serde::Deserialize)] +#[serde(rename_all = "camelCase")] +pub enum Os { + Dos, + Windows, + Mac, + Linux, + #[default] + #[serde(other)] + Other, +} + +impl From<&str> for Os { + fn from(value: &str) -> Self { + match value.to_lowercase().trim() { + "windows" => Self::Windows, + "linux" => Self::Linux, + "mac" | "macos" => Self::Mac, + "dos" => Self::Dos, + _ => Self::Other, + } + } +} + +#[derive(Clone, Copy, Debug, Default, Eq, PartialEq, Ord, PartialOrd, Hash, serde::Serialize, serde::Deserialize)] +#[serde(rename_all = "camelCase")] +pub enum Store { + Ea, + Epic, + Gog, + GogGalaxy, + Heroic, + Lutris, + Microsoft, + Origin, + Prime, + Steam, + Uplay, + OtherHome, + OtherWine, + #[default] + #[serde(other)] + Other, +} + +#[derive(Clone, Debug, Default, PartialEq, Eq, PartialOrd, Ord, serde::Serialize, serde::Deserialize)] +#[serde(rename_all = "camelCase")] +pub enum Tag { + Config, + Save, + #[default] + #[serde(other)] + Other, +} + +#[derive(Clone, Debug, Default, PartialEq, Eq, serde::Serialize, serde::Deserialize)] +pub struct Manifest(pub BTreeMap); + +impl ResourceFile for Manifest { + const FILE_NAME: &'static str = "data/manifest.yaml"; +} + +impl Manifest { + pub fn refresh( + &mut self, + overrides: &ManifestOverride, + wiki_cache: &WikiCache, + steam_cache: &SteamCache, + games: Option>, + ) -> Result<(), Error> { + for (title, info) in &wiki_cache.0 { + if let Some(games) = &games { + if !games.contains(title) { + continue; + } + } + + if overrides.0.get(title).map(|x| x.omit).unwrap_or(false) { + continue; + } + + let mut game = Game::default(); + game.integrate_wiki(info, title); + if let Some(id) = game.steam.id { + if let Some(info) = steam_cache.0.get(id.to_string().as_str()) { + game.integrate_steam(info); + } + } + if let Some(overridden) = overrides.0.get(title) { + game.integrate_overrides(overridden); + } + if !game.usable() { + continue; + } + + self.0.insert(title.to_string(), game); + } + + Ok(()) + } +} + +#[derive(Clone, Debug, Default, PartialEq, Eq, serde::Serialize, serde::Deserialize)] +#[serde(default, rename_all = "camelCase")] +pub struct Game { + #[serde(skip_serializing_if = "BTreeMap::is_empty")] + pub files: BTreeMap, + #[serde(skip_serializing_if = "GogMetadata::is_empty")] + pub gog: GogMetadata, + #[serde(skip_serializing_if = "IdMetadata::is_empty")] + pub id: IdMetadata, + #[serde(skip_serializing_if = "BTreeMap::is_empty")] + pub install_dir: BTreeMap, + #[serde(skip_serializing_if = "BTreeMap::is_empty")] + pub launch: BTreeMap>, + #[serde(skip_serializing_if = "BTreeMap::is_empty")] + pub registry: BTreeMap, + #[serde(skip_serializing_if = "SteamMetadata::is_empty")] + pub steam: SteamMetadata, +} + +impl Game { + pub fn integrate_wiki(&mut self, cache: &WikiCacheEntry, title: &str) { + self.steam = SteamMetadata { id: cache.steam }; + self.gog = GogMetadata { id: cache.gog }; + self.id = IdMetadata { + flatpak: None, + gog_extra: cache.gog_side.clone(), + steam_extra: cache.steam_side.clone(), + }; + + let paths = cache.parse_paths(title.to_string()); + for path in paths { + let tags = path.tags.clone(); + let tags2 = path.tags.clone(); + + match path.kind { + None | Some(PathKind::File) => { + let constraint = GameFileConstraint { + os: path.os, + store: path.store, + }; + let constraint2 = constraint.clone(); + + self.files + .entry(path.composite) + .and_modify(|x| { + x.tags.extend(tags); + if !constraint.is_empty() { + x.when.insert(constraint); + } + }) + .or_insert_with(|| GameFileEntry { + tags: tags2.into_iter().collect(), + when: (if constraint2.is_empty() { + vec![] + } else { + vec![constraint2] + }) + .into_iter() + .collect(), + }); + } + Some(PathKind::Registry) => { + let constraint = GameRegistryConstraint { store: path.store }; + let constraint2 = constraint.clone(); + + self.registry + .entry(path.composite) + .and_modify(|x| { + x.tags.extend(tags); + if !constraint.is_empty() { + x.when.insert(constraint); + } + }) + .or_insert_with(|| GameRegistryEntry { + tags: tags2.into_iter().collect(), + when: (if constraint2.is_empty() { + vec![] + } else { + vec![constraint2] + }) + .into_iter() + .collect(), + }); + } + } + } + } + + pub fn integrate_steam(&mut self, cache: &SteamCacheEntry) { + if let Some(install_dir) = &cache.install_dir { + self.install_dir.insert(install_dir.to_string(), GameInstallDirEntry {}); + } + + for incoming in &cache.launch { + if incoming.executable.is_none() + || incoming.executable.as_ref().map(|x| x.contains("://")).unwrap_or(false) + || !matches!(incoming.r#type.as_deref(), None | Some("default" | "none")) + || incoming.config.betakey.is_some() + || incoming.config.ownsdlc.is_some() + { + continue; + } + + let os = match incoming.config.oslist.as_deref() { + Some("windows") => Some(Os::Windows), + Some("macos" | "macosx") => Some(Os::Mac), + Some("linux") => Some(Os::Linux), + _ => None, + }; + + let bit = match incoming.config.osarch.as_deref() { + Some("32") => Some(32), + Some("64") => Some(64), + _ => None, + }; + + let constraint = LaunchConstraint { + bit, + os, + store: Some(Store::Steam), + }; + + let mut found_existing = false; + for (existing_executable, existing_options) in self.launch.iter_mut() { + for existing in existing_options { + if incoming.arguments == existing.arguments + && do_launch_paths_match(incoming.executable.clone(), Some(existing_executable.to_string())) + && do_launch_paths_match(incoming.workingdir.clone(), existing.working_dir.clone()) + { + found_existing = true; + existing.when.insert(constraint.clone()); + } + } + } + if !found_existing { + let Some(key) = incoming.executable.as_ref().and_then(|x| normalize_launch_path(x)) else { + continue; + }; + + let candidate = LaunchEntry { + arguments: incoming.arguments.clone(), + when: vec![constraint.clone()].into_iter().collect(), + working_dir: incoming.workingdir.as_ref().and_then(|x| normalize_launch_path(x)), + }; + self.launch + .entry(key) + .and_modify(|x| x.push(candidate.clone())) + .or_insert_with(|| vec![candidate]); + } + } + } + + pub fn integrate_overrides(&mut self, overridden: &OverrideGame) { + if let Some(id) = overridden.game.steam.id { + self.steam.id = Some(id); + } + if let Some(id) = overridden.game.gog.id { + self.gog.id = Some(id); + } + if let Some(flatpak) = overridden.game.id.flatpak.as_ref() { + self.id.flatpak = Some(flatpak.clone()); + } + self.install_dir.extend(overridden.game.install_dir.clone()); + } + + pub fn usable(&self) -> bool { + !(self.files.is_empty() + && self.registry.is_empty() + && self.steam.is_empty() + && self.gog.is_empty() + && self.id.is_empty()) + } +} + +#[derive(Clone, Debug, Default, PartialEq, Eq, serde::Serialize, serde::Deserialize)] +#[serde(default, rename_all = "camelCase")] +pub struct GameFileEntry { + #[serde(skip_serializing_if = "BTreeSet::is_empty")] + pub tags: BTreeSet, + #[serde(skip_serializing_if = "BTreeSet::is_empty")] + pub when: BTreeSet, +} + +#[derive(Clone, Debug, Default, PartialEq, Eq, serde::Serialize, serde::Deserialize)] +#[serde(default, rename_all = "camelCase")] +pub struct GameInstallDirEntry {} + +#[derive(Clone, Debug, Default, PartialEq, Eq, serde::Serialize, serde::Deserialize)] +#[serde(default, rename_all = "camelCase")] +pub struct GameRegistryEntry { + #[serde(skip_serializing_if = "BTreeSet::is_empty")] + pub tags: BTreeSet, + #[serde(skip_serializing_if = "BTreeSet::is_empty")] + pub when: BTreeSet, +} + +#[derive(Clone, Debug, Default, PartialEq, Eq, serde::Serialize, serde::Deserialize)] +#[serde(default, rename_all = "camelCase")] +pub struct LaunchEntry { + #[serde(skip_serializing_if = "Option::is_none")] + pub arguments: Option, + #[serde(skip_serializing_if = "BTreeSet::is_empty")] + pub when: BTreeSet, + #[serde(skip_serializing_if = "Option::is_none")] + pub working_dir: Option, +} + +#[derive(Clone, Debug, Default, PartialEq, Eq, PartialOrd, Ord, serde::Serialize, serde::Deserialize)] +#[serde(default, rename_all = "camelCase")] +pub struct GameFileConstraint { + #[serde(skip_serializing_if = "Option::is_none")] + pub os: Option, + #[serde(skip_serializing_if = "Option::is_none")] + pub store: Option, +} + +impl GameFileConstraint { + pub fn is_empty(&self) -> bool { + self.os.is_none() && self.store.is_none() + } +} + +#[derive(Clone, Debug, Default, PartialEq, Eq, PartialOrd, Ord, serde::Serialize, serde::Deserialize)] +#[serde(default, rename_all = "camelCase")] +pub struct GameRegistryConstraint { + #[serde(skip_serializing_if = "Option::is_none")] + pub store: Option, +} + +impl GameRegistryConstraint { + pub fn is_empty(&self) -> bool { + self.store.is_none() + } +} + +#[derive(Clone, Debug, Default, PartialEq, Eq, PartialOrd, Ord, serde::Serialize, serde::Deserialize)] +#[serde(default, rename_all = "camelCase")] +pub struct LaunchConstraint { + #[serde(skip_serializing_if = "Option::is_none")] + pub bit: Option, + #[serde(skip_serializing_if = "Option::is_none")] + pub os: Option, + #[serde(skip_serializing_if = "Option::is_none")] + pub store: Option, +} + +#[derive(Clone, Debug, Default, PartialEq, Eq, serde::Serialize, serde::Deserialize)] +#[serde(default, rename_all = "camelCase")] +pub struct SteamMetadata { + #[serde(skip_serializing_if = "Option::is_none")] + pub id: Option, +} + +impl SteamMetadata { + pub fn is_empty(&self) -> bool { + self.id.is_none() + } +} + +#[derive(Clone, Debug, Default, PartialEq, Eq, serde::Serialize, serde::Deserialize)] +#[serde(default, rename_all = "camelCase")] +pub struct GogMetadata { + #[serde(skip_serializing_if = "Option::is_none")] + pub id: Option, +} + +impl GogMetadata { + pub fn is_empty(&self) -> bool { + self.id.is_none() + } +} + +#[derive(Clone, Debug, Default, PartialEq, Eq, serde::Serialize, serde::Deserialize)] +#[serde(default, rename_all = "camelCase")] +pub struct IdMetadata { + #[serde(skip_serializing_if = "Option::is_none")] + pub flatpak: Option, + #[serde(default, skip_serializing_if = "BTreeSet::is_empty")] + pub gog_extra: BTreeSet, + #[serde(default, skip_serializing_if = "BTreeSet::is_empty")] + pub steam_extra: BTreeSet, +} + +impl IdMetadata { + pub fn is_empty(&self) -> bool { + self.flatpak.is_none() && self.gog_extra.is_empty() && self.steam_extra.is_empty() + } +} + +#[derive(Clone, Debug, Default, PartialEq, Eq, serde::Serialize, serde::Deserialize)] +#[serde(default, rename_all = "camelCase")] +pub struct ManifestOverride(pub BTreeMap); + +#[derive(Clone, Debug, Default, PartialEq, Eq, serde::Serialize, serde::Deserialize)] +#[serde(default, rename_all = "camelCase")] +pub struct OverrideGame { + pub omit: bool, + #[serde(flatten)] + pub game: Game, +} + +impl ResourceFile for ManifestOverride { + const FILE_NAME: &'static str = "data/manifest-override.yaml"; +} diff --git a/src/manifest.ts b/src/manifest.ts deleted file mode 100644 index 7eae51c9..00000000 --- a/src/manifest.ts +++ /dev/null @@ -1,292 +0,0 @@ -import { REPO, YamlFile } from "."; -import { SteamGameCache, SteamGameCacheFile } from "./steam"; -import { WikiGameCache, parseTemplates } from "./wiki"; - -const U32_MAX = 4_294_967_295; -const U64_MAX = 18_446_744_073_709_551_615; - -export type Os = "dos" | "linux" | "mac" | "windows"; - -export type Bit = 32 | 64; - -export type Store = "epic" | "gog" | "microsoft" | "steam" | "uplay" | "origin"; - -export type Tag = "config" | "save"; - -export interface Manifest { - [game: string]: Game; -} - -export interface Game { - files?: { - [path: string]: { - when?: Array>, - tags?: Array, - } - }; - installDir?: { - [name: string]: {} - }; - launch?: { - [path: string]: Array<{ - arguments?: string; - workingDir?: string; - when?: Array, - }> - }, - registry?: { - [path: string]: { - when?: Array>, - tags?: Array, - } - }; - steam?: { - id?: number - }; - gog?: { - id?: number, - }; - id?: { - flatpak?: string, - gogExtra?: Array, - steamExtra?: Array, - }; -} - -type OverriddenGame = Game & { omit?: boolean }; - -export interface Constraint { - os?: Os; - bit?: Bit; - store?: Store; -} - -function normalizeLaunchPath(raw: string): string | undefined { - if (raw.includes("://")) { - return raw; - } - const standardized = raw - .replace(/\\/g, "/") - .replace(/\/\//g, "/") - .replace(/\/(?=$)/g, "") - .replace(/^.\//, "") - .replace(/^\/+/, "") - .trim(); - if (standardized.length === 0 || standardized === ".") { - return undefined; - } - return `/${standardized}`; -} - -function doLaunchPathsMatch(fromSteam: string | undefined, fromManifest: string | undefined): boolean { - if (fromSteam === undefined) { - return fromManifest === undefined; - } else { - return normalizeLaunchPath(fromSteam) === fromManifest; - } -} - -function integrateWikiData(game: Game, cache: WikiGameCache[""]): void { - game.id = {}; - if (cache.steam !== undefined && cache.steam <= U32_MAX) { - game.steam = { id: cache.steam }; - } - if (cache.steamSide !== undefined) { - game.id.steamExtra = cache.steamSide.filter(x => x <= U32_MAX); - } - if (cache.gog !== undefined && cache.gog <= U64_MAX) { - game.gog = { id: cache.gog }; - } - if (cache.gogSide !== undefined) { - game.id.gogExtra = cache.gogSide.filter(x => x <= U64_MAX); - } - const info = parseTemplates(cache.templates ?? []); - game.files = info.files; - game.registry = info.registry; - - if (game.id.flatpak === undefined && game.id.gogExtra === undefined && game.id.steamExtra === undefined) { - delete game.id; - } -} - -function integrateSteamData(game: Game, appInfo: SteamGameCache[""] | undefined): void { - if (appInfo === undefined) { - return; - } - - if (appInfo.installDir !== undefined) { - game.installDir = { [appInfo.installDir]: {} }; - } - if (appInfo.launch !== undefined) { - delete game.launch; - for (const incoming of appInfo.launch) { - if ( - incoming.executable === undefined || - incoming.executable.includes("://") || - ![undefined, "default", "none"].includes(incoming.type) || - incoming.config?.betakey !== undefined || - incoming.config?.ownsdlc !== undefined - ) { - continue; - } - - const os: Os | undefined = { - "windows": "windows", - "macos": "mac", - "macosx": "mac", - "linux": "linux", - }[incoming.config?.oslist] as Os; - const bit: Bit | undefined = { - "32": 32, - "64": 64, - }[incoming.config?.osarch] as Bit; - const when: Constraint = { os, bit, store: "steam" }; - if (when.os === undefined) { - delete when.os; - } - if (when.bit === undefined) { - delete when.bit; - } - - let foundExisting = false; - for (const [existingExecutable, existingOptions] of Object.entries(game.launch ?? {})) { - for (const existing of existingOptions) { - if ( - incoming.arguments === existing.arguments && - doLaunchPathsMatch(incoming.executable, existingExecutable) && - doLaunchPathsMatch(incoming.workingdir, existing.workingDir) - ) { - foundExisting = true; - if (existing.when === undefined) { - existing.when = []; - } - if (existing.when.every(x => x.os !== os && x.bit !== bit && x.store !== "steam")) { - existing.when.push(when); - } - if (existing.when.length === 0) { - delete existing.when; - } - } - } - } - if (!foundExisting) { - const key = normalizeLaunchPath(incoming.executable); - if (key === undefined) { - continue; - } - - const candidate: Game["launch"][""][0] = { when: [when] }; - if (incoming.arguments !== undefined) { - candidate.arguments = incoming.arguments; - } - if (incoming.workingdir !== undefined) { - const workingDir = normalizeLaunchPath(incoming.workingdir); - if (workingDir !== undefined) { - candidate.workingDir = workingDir; - } - } - - if (game.launch === undefined) { - game.launch = {}; - } - if (game.launch[key] === undefined) { - game.launch[key] = []; - } - game.launch[key].push(candidate); - } - } - } -} - -function integrateOverriddenData(game: Game, override: OverriddenGame) { - if (override.steam) { - game.steam = override.steam; - } - - if (override.gog) { - game.gog = override.gog; - } - - if (override.id) { - if (game.id === undefined) { - game.id = {}; - } - - if (override.id.flatpak) { - game.id.flatpak = override.id.flatpak; - } - } - - if (override.installDir) { - if (game.installDir === undefined) { - game.installDir = {}; - } - for (const key in override.installDir) { - game.installDir[key] = {}; - } - } -} - -function hasAnyData(game: Game): boolean { - return game.files !== undefined || game.registry !== undefined || game.steam?.id !== undefined || game.gog?.id !== undefined || game.id !== undefined; -} - -export class ManifestFile extends YamlFile { - path = `${REPO}/data/manifest.yaml`; - defaultData = {}; - - async updateGames( - wikiCache: WikiGameCache, - games: Array, - steamCache: SteamGameCacheFile, - override: ManifestOverrideFile, - ): Promise { - this.data = {}; - - for (const [title, info] of Object.entries(wikiCache).sort()) { - const overridden = override.data[title]; - if (overridden?.omit) { - continue; - } - - if (games?.length > 0 && !games.includes(title)) { - continue; - } - - const game: Game = {}; - integrateWikiData(game, info); - - if (game.steam?.id !== undefined) { - const appInfo = await steamCache.getAppInfo(game.steam.id); - integrateSteamData(game, appInfo); - } - - if (overridden) { - integrateOverriddenData(game, overridden); - } - - if (!hasAnyData(game)) { - continue; - } - - this.data[title] = game; - } - - for (const [title, info] of Object.entries(override.data).sort()) { - if (title in this.data || info.omit) { - continue; - } - delete info.omit; - this.data[title] = info; - } - } -} - -export interface ManifestOverride { - [game: string]: OverriddenGame -} - -export class ManifestOverrideFile extends YamlFile { - path = `${REPO}/data/manifest-override.yaml`; - defaultData = {}; -} diff --git a/src/missing.rs b/src/missing.rs new file mode 100644 index 00000000..fa3f7631 --- /dev/null +++ b/src/missing.rs @@ -0,0 +1,26 @@ +use itertools::Itertools; + +use crate::{ + manifest::{Manifest, ManifestOverride}, + wiki::WikiCache, + REPO, +}; + +pub fn save_missing_games(wiki_cache: &WikiCache, manifest: &Manifest, overrides: &ManifestOverride) { + let lines: Vec = wiki_cache + .0 + .iter() + .sorted_by(|(k1, _), (k2, _)| k1.to_lowercase().cmp(&k2.to_lowercase())) + .filter(|(k, _)| { + manifest + .0 + .get(*k) + .map(|x| x.files.is_empty() && x.registry.is_empty()) + .unwrap_or(true) + }) + .filter(|(k, _)| overrides.0.get(*k).map(|x| !x.omit).unwrap_or(true)) + .map(|(k, v)| format!("* [{}](https://www.pcgamingwiki.com/wiki/?curid={})", k, v.page_id)) + .collect(); + + _ = std::fs::write(format!("{}/data/missing.md", REPO), lines.join("\n") + "\n"); +} diff --git a/src/missing.ts b/src/missing.ts deleted file mode 100644 index d4cf6430..00000000 --- a/src/missing.ts +++ /dev/null @@ -1,16 +0,0 @@ -import * as fs from "fs"; -import { REPO } from "."; -import { Manifest, ManifestOverride } from "./manifest"; -import { WikiGameCache } from "./wiki"; - -export function saveMissingGames(cache: WikiGameCache, manifest: Manifest, override: ManifestOverride): void { - fs.writeFileSync( - `${REPO}/data/missing.md`, - Object.entries(cache) - .sort((x, y) => x[0].localeCompare(y[0])) - .filter(([k, _]) => (manifest[k]?.files ?? []).length === 0 && (manifest[k]?.registry ?? []).length === 0) - .filter(([k, _]) => override[k]?.omit !== true) - .map(([k, v]) => `* [${k}](https://www.pcgamingwiki.com/wiki/?curid=${v.pageId})`) - .join("\n") + "\n", - ); -} diff --git a/src/resource.rs b/src/resource.rs new file mode 100644 index 00000000..e92a43c4 --- /dev/null +++ b/src/resource.rs @@ -0,0 +1,63 @@ +use crate::REPO; + +pub type AnyError = Box; + +pub trait ResourceFile +where + Self: Default + serde::Serialize + serde::de::DeserializeOwned, +{ + const FILE_NAME: &'static str; + + fn path() -> std::path::PathBuf { + let mut path = std::path::PathBuf::new(); + path.push(REPO); + path.push(Self::FILE_NAME); + path + } + + /// If the resource file does not exist, use default data and apply these modifications. + fn initialize(self) -> Self { + self + } + + /// Update any legacy settings on load. + fn migrate(self) -> Self { + self + } + + fn load() -> Result { + Self::load_from(&Self::path()) + } + + fn load_from(path: &std::path::PathBuf) -> Result { + if !path.exists() { + return Ok(Self::default().initialize()); + } + let content = Self::load_raw(path)?; + Self::load_from_string(&content) + } + + fn load_raw(path: &std::path::PathBuf) -> Result { + Ok(std::fs::read_to_string(path)?) + } + + fn load_from_string(content: &str) -> Result { + Ok(ResourceFile::migrate(serde_yaml::from_str(content)?)) + } + + fn serialize(&self) -> String { + serde_yaml::to_string(&self).unwrap() + } + + fn save(&self) { + let new_content = serde_yaml::to_string(&self).unwrap(); + + if let Ok(old_content) = Self::load_raw(&Self::path()) { + if old_content == new_content { + return; + } + } + + let _ = std::fs::write(Self::path(), new_content.as_bytes()); + } +} diff --git a/src/schema.rs b/src/schema.rs new file mode 100644 index 00000000..58fbc998 --- /dev/null +++ b/src/schema.rs @@ -0,0 +1,32 @@ +use crate::{manifest::Manifest, resource::ResourceFile, Error, REPO}; + +pub fn validate_manifest(manifest: &Manifest) -> Result<(), Error> { + let manifest: serde_json::Value = serde_yaml::from_str(&manifest.serialize()).unwrap(); + + let normal: serde_json::Value = serde_yaml::from_str(&read_data("schema.yaml")).unwrap(); + let strict: serde_json::Value = serde_yaml::from_str(&read_data("schema.strict.yaml")).unwrap(); + + for schema in [normal, strict] { + if !check(&schema, &manifest) { + return Err(Error::ManifestSchema); + } + } + + Ok(()) +} + +fn read_data(file: &str) -> String { + std::fs::read_to_string(format!("{}/data/{}", REPO, file)).unwrap() +} + +fn check(schema: &serde_json::Value, instance: &serde_json::Value) -> bool { + let mut valid = true; + let compiled = jsonschema::JSONSchema::compile(schema).unwrap(); + if let Err(errors) = compiled.validate(instance) { + valid = false; + for error in errors { + println!("Schema error: {} | {}", error, error.instance_path); + } + } + valid +} diff --git a/src/steam.rs b/src/steam.rs new file mode 100644 index 00000000..e14047a2 --- /dev/null +++ b/src/steam.rs @@ -0,0 +1,218 @@ +use std::{collections::BTreeMap, process::Command}; + +use crate::{resource::ResourceFile, wiki::WikiCache, Error, State, REPO}; + +const SAVE_INTERVAL: u32 = 100; + +#[derive(Debug, Default, serde::Serialize, serde::Deserialize)] +pub struct SteamCache(pub BTreeMap); + +impl ResourceFile for SteamCache { + const FILE_NAME: &'static str = "data/steam-game-cache.yaml"; +} + +impl SteamCache { + pub fn refresh(&mut self, outdated_only: bool, app_ids: Option>) -> Result<(), Error> { + let mut i = 0; + let app_ids: Vec<_> = app_ids.unwrap_or_else(|| { + self.0 + .iter() + .filter(|(_, v)| !outdated_only || v.state == State::Outdated) + .filter_map(|(k, _)| k.parse::().ok()) + .collect() + }); + + for app_id in app_ids { + let latest = SteamCacheEntry::fetch_from_id(app_id)?; + self.0.insert(app_id.to_string(), latest); + + i += 1; + if i % SAVE_INTERVAL == 0 { + self.save(); + println!("\n:: saved\n"); + } + } + + Ok(()) + } + + pub fn transition_states_from(&mut self, wiki_cache: &mut WikiCache) { + for wiki in wiki_cache.0.values_mut() { + if wiki.state == State::Updated { + if let Some(id) = wiki.steam { + self.0 + .entry(id.to_string()) + .and_modify(|x| { + x.state = State::Outdated; + }) + .or_insert(SteamCacheEntry { + state: State::Outdated, + ..Default::default() + }); + } + wiki.state = State::Handled; + } + } + } +} + +#[derive(Debug, Default, Clone, serde::Serialize, serde::Deserialize)] +#[serde(default, rename_all = "camelCase")] +pub struct SteamCacheEntry { + #[serde(skip_serializing_if = "State::is_handled")] + pub state: State, + #[serde(skip_serializing_if = "Option::is_none")] + pub install_dir: Option, + #[serde(skip_serializing_if = "Vec::is_empty")] + pub launch: Vec, + #[serde(skip_serializing_if = "BTreeMap::is_empty")] + pub name_localized: BTreeMap, +} + +#[derive(Debug, Default, Clone, PartialEq, Eq, PartialOrd, Ord, serde::Serialize, serde::Deserialize)] +#[serde(default, rename_all = "camelCase")] +pub struct Launch { + #[serde(skip_serializing_if = "Option::is_none")] + pub arguments: Option, + #[serde(skip_serializing_if = "LaunchConfig::is_empty")] + pub config: LaunchConfig, + #[serde(skip_serializing_if = "Option::is_none")] + pub description: Option, + #[serde(skip_serializing_if = "Option::is_none")] + pub executable: Option, + #[serde(skip_serializing_if = "Option::is_none")] + pub r#type: Option, + #[serde(skip_serializing_if = "Option::is_none")] + pub workingdir: Option, +} + +impl Launch { + pub fn is_empty(&self) -> bool { + self.arguments.is_none() + && self.config.is_empty() + && self.description.is_none() + && self.executable.is_none() + && self.r#type.is_none() + && self.workingdir.is_none() + } +} + +#[derive(Debug, Default, Clone, PartialEq, Eq, PartialOrd, Ord, serde::Serialize, serde::Deserialize)] +#[serde(default, rename_all = "camelCase")] +pub struct LaunchConfig { + #[serde(skip_serializing_if = "Option::is_none")] + pub betakey: Option, + #[serde(skip_serializing_if = "Option::is_none")] + pub osarch: Option, + #[serde(skip_serializing_if = "Option::is_none")] + pub oslist: Option, + #[serde(skip_serializing_if = "Option::is_none")] + pub ownsdlc: Option, +} + +impl LaunchConfig { + pub fn is_empty(&self) -> bool { + self.betakey.is_none() && self.osarch.is_none() && self.oslist.is_none() && self.ownsdlc.is_none() + } +} + +mod product_info { + use super::*; + + #[derive(Debug, Default, Clone, serde::Deserialize)] + #[serde(default)] + pub struct Response { + pub apps: BTreeMap, + } + + #[derive(Debug, Default, Clone, serde::Deserialize)] + #[serde(default)] + pub struct App { + pub common: AppCommon, + pub config: AppConfig, + } + + #[derive(Debug, Default, Clone, serde::Deserialize)] + #[serde(default)] + pub struct AppCommon { + pub name_localized: BTreeMap, + } + + #[derive(Debug, Default, Clone, serde::Deserialize)] + #[serde(default)] + pub struct AppConfig { + pub installdir: Option, + pub launch: BTreeMap, + } + + #[derive(Debug, Default, Clone, serde::Deserialize)] + #[serde(default)] + pub struct AppLaunch { + pub executable: Option, + pub arguments: Option, + pub workingdir: Option, + pub r#type: Option, + pub config: AppLaunchConfig, + pub description: Option, + } + + #[derive(Debug, Default, Clone, serde::Deserialize)] + #[serde(default)] + pub struct AppLaunchConfig { + pub betakey: Option, + pub osarch: Option, + pub oslist: Option, + pub ownsdlc: Option, + } +} + +impl SteamCacheEntry { + pub fn fetch_from_id(app_id: u32) -> Result { + println!("Steam: {}", app_id); + + let mut cmd = Command::new("python"); + cmd.arg(format!("{}/scripts/get-steam-app-info.py", REPO)); + cmd.arg(app_id.to_string()); + let output = cmd.output()?; + if !output.status.success() { + let stderr = String::from_utf8_lossy(&output.stderr); + eprintln!("Steam product info failure: {}", &stderr); + return Err(Error::SteamProductInfo); + } + let stdout = String::from_utf8_lossy(&output.stdout); + + let response = serde_json::from_str::(&stdout).map_err(|_| Error::SteamProductInfo)?; + let app = response + .apps + .get(&app_id.to_string()) + .ok_or(Error::SteamProductInfo)? + .clone(); + + let launch: Vec<_> = app + .config + .launch + .into_values() + .map(|x| Launch { + executable: x.executable, + arguments: x.arguments, + workingdir: x.workingdir, + r#type: x.r#type, + description: x.description, + config: LaunchConfig { + betakey: x.config.betakey, + osarch: x.config.osarch, + oslist: x.config.oslist, + ownsdlc: x.config.ownsdlc, + }, + }) + .filter(|x| !x.is_empty()) + .collect(); + + Ok(Self { + state: State::Handled, + install_dir: app.config.installdir, + name_localized: app.common.name_localized, + launch, + }) + } +} diff --git a/src/steam.ts b/src/steam.ts deleted file mode 100644 index 73f7f1b0..00000000 --- a/src/steam.ts +++ /dev/null @@ -1,158 +0,0 @@ -import { DELAY_BETWEEN_GAMES_MS, REPO, YamlFile } from "."; -import SteamUser from "steam-user"; - -export type SteamGameCache = { - [appId: string]: { - installDir?: string, - unknown?: boolean, - nameLocalized?: Map; - launch?: Array<{ - executable?: string; - arguments?: string; - workingdir?: string; - type?: string; - config?: { - betakey?: string; - osarch?: string; - oslist?: string; - ownsdlc?: string; - }, - }>; - irregular?: boolean; - }; -}; - -export class SteamGameCacheFile extends YamlFile { - path = `${REPO}/data/steam-game-cache.yaml`; - defaultData = {}; - steamClient: SteamUser | null = null; - - constructor(private makeSteamClient: () => Promise) { - super(); - } - - hasIrregularKeys(info: object): boolean { - return Object.keys(info).some(x => x.endsWith('"')); - } - - isIrregularString(info: string): boolean { - return info.includes('"\n\t'); - } - - async getAppInfo(appId: number, update: boolean = false): Promise { - const key = appId.toString(); - if (!update && this.data.hasOwnProperty(key)) { - return this.data[key]; - } - - console.log(`Steam: ${appId}`); - - if (this.steamClient === null) { - this.steamClient = await this.makeSteamClient(); - } - - const info: SteamProductInfoResponse = await this.steamClient.getProductInfo([appId], []); - - if (info.unknownApps.includes(appId)) { - this.data[key] = { unknown: true }; - return undefined; - } - - this.data[key] = {}; - - const installDir = info.apps[key].appinfo.config?.installdir; - if (installDir !== undefined) { - this.data[key].installDir = installDir; - } - - const nameLocalized = info.apps[key].appinfo.common?.name_localized; - if (nameLocalized !== undefined && Object.keys(nameLocalized).length > 0) { - this.data[key].nameLocalized = nameLocalized; - } - - const launch = info.apps[key].appinfo.config?.launch; - if (launch !== undefined) { - const keys = Object.keys(launch).sort((x, y) => parseInt(x) - parseInt(y)); - const launchArray = keys.map(x => launch[x]); - this.data[key].launch = launchArray; - } - - return this.data[key]; - } - - async refresh(skipUntil: string | undefined, irregularTagged: boolean, irregularUntagged: boolean, limit: number, appIds: Array): Promise { - let i = 0; - let foundSkipUntil = false; - for (const appId of Object.keys(this.data).sort()) { - if (skipUntil && !foundSkipUntil) { - if (appId === skipUntil) { - foundSkipUntil = true; - } else { - continue; - } - } - if (appIds.length > 0 && !appIds.includes(appId)) { - continue; - } - - if (irregularTagged) { - if (!this.data[appId].irregular) { - continue; - } - } - - if (irregularUntagged) { - const irregular = (this.data[appId].launch ?? []).some(x => this.hasIrregularKeys(x)) || - this.isIrregularString(this.data[appId].installDir ?? ""); - if (this.data[appId].irregular || !irregular) { - continue; - } - } - - // console.log(`Refreshing Steam app ${appId}`); - await this.getAppInfo(parseInt(appId), true); - - i++; - if (limit > 0 && i >= limit) { - break; - } - - // main() will save at the end, but we do a periodic save as well - // in case something goes wrong or the script gets cancelled: - if (i % 250 === 0) { - this.save(); - console.log(":: saved"); - } - - await new Promise(resolve => setTimeout(resolve, DELAY_BETWEEN_GAMES_MS)); - } - } -} - -interface SteamProductInfoResponse { - apps: { - [appId: string]: { - appinfo: { - common?: { - name_localized?: Map, - }, - config?: { - installdir?: string, - launch?: object, - }, - }, - }, - }, - unknownApps: Array, -} - -export async function getSteamClient(): Promise { - const client = new SteamUser(); - client.logOn({ anonymous: true }); - await new Promise(resolve => { - client.on("loggedOn", () => { - resolve(); - }); - }); - return client; -} diff --git a/src/wiki.rs b/src/wiki.rs new file mode 100644 index 00000000..d8ef73e2 --- /dev/null +++ b/src/wiki.rs @@ -0,0 +1,937 @@ +use std::collections::{BTreeMap, BTreeSet, HashMap}; + +use once_cell::sync::Lazy; +use regex::Regex; +use wikitext_parser::{Attribute, TextPiece}; + +use crate::{ + manifest::{placeholder, Os, Store, Tag}, + resource::ResourceFile, + Error, State, +}; + +const SAVE_INTERVAL: u32 = 100; + +async fn make_client() -> Result { + mediawiki::api::Api::new("https://www.pcgamingwiki.com/w/api.php") + .await + .map_err(Error::WikiClient) +} + +#[derive(Debug, Default, serde::Serialize, serde::Deserialize)] +pub struct WikiCache(pub BTreeMap); + +impl ResourceFile for WikiCache { + const FILE_NAME: &'static str = "data/wiki-game-cache.yaml"; +} + +async fn get_page_title(id: u64) -> Result, Error> { + let wiki = make_client().await?; + let params = wiki.params_into(&[("action", "query"), ("pageids", id.to_string().as_str())]); + + let res = wiki.get_query_api_json_all(¶ms).await?; + + for page in res["query"]["pages"] + .as_object() + .ok_or(Error::WikiData("query.pages"))? + .values() + { + let found_id = page["pageid"].as_u64().ok_or(Error::WikiData("query.pages[].pageid"))?; + if found_id == id { + let title = page["title"].as_str(); + return Ok(title.map(|x| x.to_string())); + } + } + + Ok(None) +} + +async fn is_game_article(query: &str) -> Result { + let wiki = make_client().await?; + let params = wiki.params_into(&[("action", "query"), ("prop", "categories"), ("titles", query)]); + + let res = wiki.get_query_api_json_all(¶ms).await?; + + for page in res["query"]["pages"] + .as_object() + .ok_or(Error::WikiData("query.pages"))? + .values() + { + let title = page["title"].as_str().ok_or(Error::WikiData("query.pages[].title"))?; + if title == query { + for category in page["categories"] + .as_array() + .ok_or(Error::WikiData("query.pages[].categories"))? + { + let category_name = category["title"] + .as_str() + .ok_or(Error::WikiData("query.pages[].categories[].title"))?; + if category_name == "Category:Games" { + return Ok(true); + } + } + } + } + + Ok(false) +} + +impl WikiCache { + pub async fn flag_recent_changes(&mut self, meta: &mut WikiMetaCache) -> Result<(), Error> { + struct RecentChange { + page_id: u64, + } + + let start = meta.last_checked_recent_changes - chrono::Duration::minutes(1); + let end = chrono::Utc::now(); + println!("Getting recent changes from {} to {}", start, end); + + let wiki = make_client().await?; + let params = wiki.params_into(&[ + ("action", "query"), + ("list", "recentchanges"), + ("rcprop", "title|ids|redirect"), + ("rcdir", "newer"), + ("rcstart", &start.to_rfc3339_opts(chrono::SecondsFormat::Secs, true)), + ("rcend", &end.to_rfc3339_opts(chrono::SecondsFormat::Secs, true)), + ("rclimit", "500"), + ("rcnamespace", "0"), + ("rctype", "edit|new"), + ]); + + let res = wiki.get_query_api_json_all(¶ms).await?; + + let mut changes = BTreeMap::::new(); + for change in res["query"]["recentchanges"] + .as_array() + .ok_or(Error::WikiData("query.recentchanges"))? + { + let title = change["title"] + .as_str() + .ok_or(Error::WikiData("query.recentchanges[].title"))? + .to_string(); + let page_id = change["pageid"] + .as_u64() + .ok_or(Error::WikiData("query.recentchanges[].pageid"))?; + let redirect = change["redirect"].is_string(); + + if !redirect { + // We don't need the entries for the redirect pages themselves. + // We'll update our data when we get to the entry for the new page name. + changes.insert(title, RecentChange { page_id }); + } + } + + for (title, RecentChange { page_id }) in changes { + if self.0.contains_key(&title) { + // Existing entry has been edited. + println!("[E ] {}", &title); + self.0 + .entry(title.to_string()) + .and_modify(|x| x.state = State::Outdated); + } else { + // Check for a rename. + let mut old_name = None; + for (existing_name, existing_info) in &self.0 { + if existing_info.page_id == page_id { + // We have a confirmed rename. + println!("[ M ] {} <<< {}", &title, existing_name); + old_name = Some(existing_name.clone()); + break; + } + } + + match old_name { + None => { + // Brand new page. + match is_game_article(&title).await { + Ok(true) => { + // It's a game, so add it to the cache. + println!("[ C] {}", &title); + self.0.insert( + title.to_string(), + WikiCacheEntry { + page_id, + state: State::Outdated, + ..Default::default() + }, + ); + } + Ok(false) => { + // Ignore since it's not relevant. + } + Err(e) => { + eprintln!("Unable to check if article is for a game: {} | {}", &title, e); + } + } + } + Some(old_name) => { + self.0.entry(title.to_string()).and_modify(|x| { + x.page_id = page_id; + x.state = State::Outdated; + x.renamed_from.push(old_name); + }); + } + } + } + } + + meta.last_checked_recent_changes = end; + Ok(()) + } + + pub async fn add_new_games(&mut self) -> Result<(), Error> { + let wiki = make_client().await?; + let params = wiki.params_into(&[ + ("action", "query"), + ("list", "categorymembers"), + ("cmtitle", "Category:Games"), + ("cmlimit", "500"), + ]); + + let res = wiki.get_query_api_json_all(¶ms).await?; + + for page in res["query"]["categorymembers"] + .as_array() + .ok_or(Error::WikiData("query.categorymembers"))? + { + let title = page["title"] + .as_str() + .ok_or(Error::WikiData("query.categorymembers[].title"))?; + let page_id = page["pageid"] + .as_u64() + .ok_or(Error::WikiData("query.categorymembers[].pageid"))?; + + if self.0.contains_key(title) { + continue; + } + + let mut old_name = None; + for (existing_name, existing_info) in &self.0 { + if existing_info.page_id == page_id { + old_name = Some(existing_name.to_string()); + } + } + + match old_name { + None => { + self.0.insert( + title.to_string(), + WikiCacheEntry { + page_id, + state: State::Outdated, + ..Default::default() + }, + ); + } + Some(old_name) => { + let mut data = self.0[&old_name].clone(); + data.state = State::Outdated; + if !data.renamed_from.contains(&old_name) { + data.renamed_from.push(old_name.clone()); + } + + self.0.insert(title.to_string(), data); + self.0.remove(&old_name); + } + } + } + + Ok(()) + } + + pub async fn refresh(&mut self, outdated_only: bool, titles: Option>) -> Result<(), Error> { + let mut i = 0; + let solo = titles.is_some(); + let titles: Vec<_> = titles.unwrap_or_else(|| self.0.keys().cloned().collect()); + + for title in &titles { + let cached = self.0.get(title).cloned().unwrap_or_default(); + if outdated_only && cached.state != State::Outdated { + continue; + } + + println!("Wiki: {}", title); + let latest = WikiCacheEntry::fetch_from_page(title.clone()).await; + match latest { + Ok(mut latest) => { + latest.renamed_from = cached.renamed_from.clone(); + self.0.insert(title.to_string(), latest); + } + Err(Error::PageMissing) => { + if solo { + return Err(Error::PageMissing); + } + + // Couldn't find it by name, so try again by ID. + // This can happen for pages moved without leaving a redirect. + // (If they have a redirect, then the recent changes code takes care of it.) + let Some(new_title) = get_page_title(cached.page_id).await? else { + return Err(Error::PageMissing); + }; + println!( + ":: refresh: page {} called '{}' renamed to '{}'", + cached.page_id, title, &new_title + ); + + let mut data = self.0[title].clone(); + data.renamed_from.push(title.clone()); + self.0.insert(new_title.clone(), data); + self.0.remove(title); + + let mut latest = WikiCacheEntry::fetch_from_page(title.clone()).await?; + latest.renamed_from = cached.renamed_from.clone(); + self.0.insert(new_title.clone(), latest); + } + Err(e) => { + return Err(e); + } + } + + i += 1; + if i % SAVE_INTERVAL == 0 { + self.save(); + println!("\n:: saved\n"); + } + } + + Ok(()) + } +} + +#[derive(Debug, Default, Clone, serde::Serialize, serde::Deserialize)] +#[serde(default, rename_all = "camelCase")] +pub struct WikiCacheEntry { + #[serde(skip_serializing_if = "State::is_handled")] + pub state: State, + #[serde(skip_serializing_if = "Option::is_none")] + pub gog: Option, + #[serde(skip_serializing_if = "BTreeSet::is_empty")] + pub gog_side: BTreeSet, + pub page_id: u64, + #[serde(skip_serializing_if = "Vec::is_empty")] + pub renamed_from: Vec, + #[serde(skip_serializing_if = "Option::is_none")] + pub steam: Option, + #[serde(skip_serializing_if = "BTreeSet::is_empty")] + pub steam_side: BTreeSet, + #[serde(skip_serializing_if = "Vec::is_empty")] + pub templates: Vec, +} + +impl WikiCacheEntry { + pub async fn fetch_from_page(article: String) -> Result { + let mut out = WikiCacheEntry { + state: State::Updated, + ..Default::default() + }; + + let wiki = make_client().await?; + let params = wiki.params_into(&[("action", "parse"), ("prop", "wikitext"), ("page", &article)]); + + let res = wiki + .get_query_api_json_all(¶ms) + .await + .map_err(|_| Error::PageMissing)?; + out.page_id = res["parse"]["pageid"].as_u64().ok_or(Error::WikiData("parse.pageid"))?; + let raw_wikitext = res["parse"]["wikitext"]["*"] + .as_str() + .ok_or(Error::WikiData("parse.wikitext"))?; + + let wikitext = wikitext_parser::parse_wikitext(raw_wikitext, article, |_| ()); + + for template in wikitext.list_double_brace_expressions() { + if let wikitext_parser::TextPiece::DoubleBraceExpression { tag, attributes } = &template { + match tag.to_string().to_lowercase().trim() { + "infobox game" => { + for attribute in attributes { + match attribute.name.as_deref() { + Some("steam appid") => { + if let Ok(value) = attribute.value.to_string().parse::() { + if value > 0 { + out.steam = Some(value); + } + } + } + Some("steam appid side") => { + out.steam_side = attribute + .value + .to_string() + .split(',') + .filter_map(|x| x.trim().parse::().ok()) + .filter(|x| *x > 0) + .collect(); + } + Some("gogcom id") => { + if let Ok(value) = attribute.value.to_string().parse::() { + if value > 0 { + out.gog = Some(value); + } + } + } + Some("gogcom id side") => { + out.gog_side = attribute + .value + .to_string() + .split(',') + .filter_map(|x| x.trim().parse::().ok()) + .filter(|x| *x > 0) + .collect(); + } + _ => {} + } + } + } + "game data" => { + for attribute in attributes { + for template in &attribute.value.pieces { + if let wikitext_parser::TextPiece::DoubleBraceExpression { tag, .. } = &template { + let is_save = tag.to_string() == "Game data/saves"; + let is_config = tag.to_string() == "Game data/config"; + + if is_save || is_config { + out.templates.push(template.to_string()); + } + } + } + } + } + _ => {} + } + } + } + + Ok(out) + } + + /// The parser does not handle HTML tags, so we remove some tags that are only used for annotations. + /// Others, like `code` and `sup`, are used both for path segments and annotations, + /// so we can't assume how to replace them properly. + fn preprocess_template(template: &str) -> String { + let mut out = template.to_string(); + + static HTML_COMMENT: Lazy = Lazy::new(|| Regex::new(r"").unwrap()); + static HTML_REF: Lazy = Lazy::new(|| Regex::new(r".+?").unwrap()); + + for (pattern, replacement) in [(&HTML_COMMENT, ""), (&HTML_REF, "")] { + out = pattern.replace_all(&out, replacement).to_string(); + } + + out + } + + pub fn parse_paths(&self, article: String) -> Vec { + let mut out = vec![]; + + for raw in &self.templates { + let preprocessed = Self::preprocess_template(raw); + let parsed = wikitext_parser::parse_wikitext(&preprocessed, article.clone(), |_| ()); + for template in parsed.list_double_brace_expressions() { + if let wikitext_parser::TextPiece::DoubleBraceExpression { tag, attributes } = &template { + let is_save = tag.to_string() == "Game data/saves"; + let is_config = tag.to_string() == "Game data/config"; + + if (!is_save && !is_config) || attributes.len() < 2 { + continue; + } + + let platform = attributes[0].value.to_string(); + for attribute in attributes.iter().skip(1) { + let info = flatten_path(attribute) + .with_platform(&platform) + .with_tags(is_save, is_config) + .normalize(); + if info.usable() { + out.push(info); + } + } + } + } + } + + out + } +} + +#[derive(Debug, Clone, Copy)] +pub enum PathKind { + File, + Registry, +} + +#[derive(Debug, Default)] +pub struct WikiPath { + pub composite: String, + pub irregular: bool, + pub kind: Option, + pub store: Option, + pub os: Option, + pub tags: BTreeSet, +} + +impl WikiPath { + fn incorporate(&mut self, other: Self) { + if other.irregular { + self.irregular = true; + } + + if other.kind.is_some() { + self.kind = other.kind; + } + + if other.store.is_some() { + self.store = other.store; + } + + if other.os.is_some() { + self.os = other.os; + } + } + + pub fn incorporate_text(&mut self, text: &str) { + if text.contains(['<', '>']) { + self.irregular = true; + } else { + self.composite += text; + } + } + + pub fn incorporate_raw(&mut self, other: Self) { + self.incorporate_text(&other.composite); + self.incorporate(other) + } + + pub fn incorporate_path(&mut self, other: Self) { + if let Some(mapped) = MAPPED_PATHS.get(other.composite.to_lowercase().as_str()) { + self.composite += mapped.manifest; + + if mapped.kind.is_some() { + self.kind = mapped.kind; + } + + if mapped.store.is_some() { + self.store = mapped.store; + } + + if mapped.os.is_some() { + self.os = mapped.os; + } + } + + self.incorporate(other) + } + + pub fn normalize(mut self) -> Self { + self.composite = self.composite.trim().trim_end_matches(['/', '\\']).replace('\\', "/"); + + if self.composite == "~" || self.composite.starts_with("~/") { + self.composite = self.composite.replacen('~', placeholder::HOME, 1); + } + + static CONSECUTIVE_SLASHES: Lazy = Lazy::new(|| Regex::new(r"/{2,}").unwrap()); + static ENDING_WILDCARD: Lazy = Lazy::new(|| Regex::new(r"(/\*)+$").unwrap()); + static APP_DATA: Lazy = Lazy::new(|| Regex::new(r"(?i)%appdata%").unwrap()); + static APP_DATA_ROAMING: Lazy = Lazy::new(|| Regex::new(r"(?i)%userprofile%/AppData/Roaming").unwrap()); + static APP_DATA_LOCAL: Lazy = Lazy::new(|| Regex::new(r"(?i)%localappdata%").unwrap()); + static APP_DATA_LOCAL_2: Lazy = Lazy::new(|| Regex::new(r"(?i)%userprofile%/AppData/Local/").unwrap()); + static USER_PROFILE: Lazy = Lazy::new(|| Regex::new(r"(?i)%userprofile%").unwrap()); + static DOCUMENTS: Lazy = Lazy::new(|| Regex::new(r"(?i)%userprofile%/Documents").unwrap()); + + for (pattern, replacement) in [ + (&CONSECUTIVE_SLASHES, "/"), + (&ENDING_WILDCARD, ""), + (&APP_DATA, placeholder::WIN_APP_DATA), + (&APP_DATA_ROAMING, placeholder::WIN_APP_DATA), + (&APP_DATA_LOCAL, placeholder::WIN_LOCAL_APP_DATA), + (&APP_DATA_LOCAL_2, &format!("{}/", placeholder::WIN_LOCAL_APP_DATA)), + (&USER_PROFILE, placeholder::HOME), + (&DOCUMENTS, placeholder::WIN_DOCUMENTS), + ] { + self.composite = pattern.replace_all(&self.composite, replacement).to_string(); + } + + if self.kind.is_none() { + self.kind = Some(PathKind::File); + } + self + } + + pub fn with_platform(mut self, platform: &str) -> Self { + match platform.to_lowercase().trim() { + "windows" => { + self.os = Some(Os::Windows); + } + "os x" => { + self.os = Some(Os::Mac); + } + "linux" => { + self.os = Some(Os::Linux); + } + "dos" => { + self.os = Some(Os::Dos); + } + "steam" => { + self.store = Some(Store::Steam); + } + "microsoft store" => { + self.os = Some(Os::Windows); + self.store = Some(Store::Microsoft); + } + "gog.com" => { + self.store = Some(Store::Gog); + } + "epic games" => { + self.store = Some(Store::Epic); + } + "uplay" => { + self.store = Some(Store::Uplay); + } + "origin" => { + self.store = Some(Store::Origin); + } + _ => {} + } + + self + } + + pub fn with_tags(mut self, save: bool, config: bool) -> Self { + if save { + self.tags.insert(Tag::Save); + } + if config { + self.tags.insert(Tag::Config); + } + self + } + + fn too_broad(&self) -> bool { + use placeholder::{BASE, HOME, ROOT, STORE_USER_ID, WIN_DIR, WIN_DOCUMENTS}; + + let placeholders: Vec<_> = MAPPED_PATHS.values().map(|x| x.manifest).collect(); + if placeholders.iter().any(|x| *x == self.composite) { + return true; + } + + // These paths are present whether or not the game is installed. + // If possible, they should be narrowed down on the wiki. + let broad = vec![ + format!("{BASE}/{STORE_USER_ID}"), // because `` is handled as `*` + format!("{HOME}/Documents"), + format!("{HOME}/Saved Games"), + format!("{HOME}/AppData"), + format!("{HOME}/AppData/Local"), + format!("{HOME}/AppData/Local/Packages"), + format!("{HOME}/AppData/LocalLow"), + format!("{HOME}/AppData/Roaming"), + format!("{HOME}/Documents/My Games"), + format!("{HOME}/Library/Application Support"), + format!("{HOME}/Library/Preferences"), + format!("{HOME}/Telltale Games"), + format!("{ROOT}/config"), + format!("{WIN_DIR}/win.ini"), + format!("{WIN_DOCUMENTS}/My Games"), + format!("{WIN_DOCUMENTS}/Telltale Games"), + ]; + if broad.iter().any(|x| *x == self.composite) { + return true; + } + + // Several games/episodes are grouped together here. + if self + .composite + .starts_with(&format!("{WIN_DOCUMENTS}/Telltale Games/*/")) + { + return true; + } + + // Drive letters: + static DRIVES: Lazy = Lazy::new(|| Regex::new(r"^[a-zA-Z]:$").unwrap()); + if DRIVES.is_match(&self.composite) { + return true; + } + + // Root: + if self.composite == "/" { + return true; + } + + // Relative path wildcard: + if self.composite.starts_with('*') { + return true; + } + + false + } + + fn irregular(&self) -> bool { + self.irregular || self.composite.contains("{{") + } + + pub fn usable(&self) -> bool { + !self.composite.is_empty() && !self.irregular() && !self.too_broad() + } +} + +#[derive(Debug, Default)] +pub struct MappedPath { + pub manifest: &'static str, + pub os: Option, + pub store: Option, + pub kind: Option, +} + +pub fn flatten_path(attribute: &Attribute) -> WikiPath { + let mut out = WikiPath::default(); + + for piece in &attribute.value.pieces { + match piece { + TextPiece::Text { text, .. } => { + out.incorporate_text(text); + } + TextPiece::DoubleBraceExpression { tag, attributes } => match tag.to_string().to_lowercase().trim() { + "p" | "path" => { + for attribute in attributes { + let flat = flatten_path(attribute); + out.incorporate_path(flat); + } + } + "code" | "file" => { + out.composite += "*"; + } + "localizedpath" => { + for attribute in attributes { + let flat = flatten_path(attribute); + out.incorporate_raw(flat); + } + } + "note" => { + // Ignored. + } + _ => { + out.irregular = true; + } + }, + TextPiece::InternalLink { .. } => {} + TextPiece::ListItem { .. } => {} + } + } + + out +} + +static MAPPED_PATHS: Lazy> = Lazy::new(|| { + HashMap::from_iter([ + ( + "game", + MappedPath { + manifest: placeholder::BASE, + ..Default::default() + }, + ), + ( + "uid", + MappedPath { + manifest: placeholder::STORE_USER_ID, + ..Default::default() + }, + ), + ( + "steam", + MappedPath { + manifest: placeholder::ROOT, + store: Some(Store::Steam), + ..Default::default() + }, + ), + ( + "uplay", + MappedPath { + manifest: placeholder::ROOT, + store: Some(Store::Uplay), + ..Default::default() + }, + ), + ( + "ubisoftconnect", + MappedPath { + manifest: placeholder::ROOT, + store: Some(Store::Uplay), + ..Default::default() + }, + ), + ( + "hkcu", + MappedPath { + manifest: "HKEY_CURRENT_USER", + os: Some(Os::Windows), + kind: Some(PathKind::Registry), + ..Default::default() + }, + ), + ( + "hklm", + MappedPath { + manifest: "HKEY_LOCAL_MACHINE", + os: Some(Os::Windows), + kind: Some(PathKind::Registry), + ..Default::default() + }, + ), + ( + "wow64", + MappedPath { + manifest: "WOW6432Node", + os: Some(Os::Windows), + kind: Some(PathKind::Registry), + ..Default::default() + }, + ), + ( + "username", + MappedPath { + manifest: placeholder::OS_USER_NAME, + os: Some(Os::Windows), + ..Default::default() + }, + ), + ( + "userprofile", + MappedPath { + manifest: placeholder::HOME, + os: Some(Os::Windows), + ..Default::default() + }, + ), + ( + "userprofile\\documents", + MappedPath { + manifest: placeholder::WIN_DOCUMENTS, + os: Some(Os::Windows), + ..Default::default() + }, + ), + ( + "userprofile\\appdata\\locallow", + MappedPath { + manifest: "/AppData/LocalLow", + os: Some(Os::Windows), + ..Default::default() + }, + ), + ( + "appdata", + MappedPath { + manifest: placeholder::WIN_APP_DATA, + os: Some(Os::Windows), + ..Default::default() + }, + ), + ( + "localappdata", + MappedPath { + manifest: placeholder::WIN_LOCAL_APP_DATA, + os: Some(Os::Windows), + ..Default::default() + }, + ), + ( + "public", + MappedPath { + manifest: placeholder::WIN_PUBLIC, + os: Some(Os::Windows), + ..Default::default() + }, + ), + ( + "allusersprofile", + MappedPath { + manifest: placeholder::WIN_PROGRAM_DATA, + os: Some(Os::Windows), + ..Default::default() + }, + ), + ( + "programdata", + MappedPath { + manifest: placeholder::WIN_PROGRAM_DATA, + os: Some(Os::Windows), + ..Default::default() + }, + ), + ( + "windir", + MappedPath { + manifest: placeholder::WIN_DIR, + os: Some(Os::Windows), + ..Default::default() + }, + ), + ( + "syswow64", + MappedPath { + manifest: "/SysWOW64", + os: Some(Os::Windows), + ..Default::default() + }, + ), + ( + "osxhome", + MappedPath { + manifest: placeholder::HOME, + os: Some(Os::Mac), + ..Default::default() + }, + ), + ( + "linuxhome", + MappedPath { + manifest: placeholder::HOME, + os: Some(Os::Linux), + ..Default::default() + }, + ), + ( + "xdgdatahome", + MappedPath { + manifest: placeholder::XDG_DATA, + os: Some(Os::Linux), + ..Default::default() + }, + ), + ( + "xdgconfighome", + MappedPath { + manifest: placeholder::XDG_CONFIG, + os: Some(Os::Linux), + ..Default::default() + }, + ), + ]) +}); + +#[derive(Debug, Default, serde::Serialize, serde::Deserialize)] +#[serde(rename_all = "camelCase")] +pub struct WikiMetaCache { + pub last_checked_recent_changes: chrono::DateTime, +} + +impl ResourceFile for WikiMetaCache { + const FILE_NAME: &'static str = "data/wiki-meta-cache.yaml"; + + fn initialize(mut self) -> Self { + self.last_checked_recent_changes = chrono::Utc::now() - chrono::Duration::days(1); + self + } +} + +#[cfg(test)] +mod tests { + use super::*; + + #[tokio::test] + async fn test_is_game_article() { + assert!(matches!(is_game_article("Celeste").await, Ok(true))); + assert!(matches!(is_game_article("Template:Path").await, Ok(false))); + } +} diff --git a/src/wiki.ts b/src/wiki.ts deleted file mode 100644 index 46a21b58..00000000 --- a/src/wiki.ts +++ /dev/null @@ -1,818 +0,0 @@ -import { DELAY_BETWEEN_GAMES_MS, REPO, PathType, UnsupportedOsError, UnsupportedPathError, YamlFile } from "."; -import { Constraint, Game, Store, Tag, Os } from "./manifest"; -import moment from "moment"; -import NodeMw from "nodemw"; -import Wikiapi from "wikiapi"; -import { parse as parseWiki } from 'wikiparse'; - -interface Template { - type: "template", - name: string, - parameters: {}, - positionalParameters: Array>, -}; - -type WikiNode = string | Template | { - type: "code" | "pre", - content: Array, - attributes: { [key: string]: string }, -} | { - type: "comment" | "bold" | "italic" | "ref", - content: Array, -} | { - type: "link", - to: string, - content: Array, -} | { - type: "tag", - content: Array, - attributes: { [key: string]: string }, - name: string, -}; - -export type WikiGameCache = { - [title: string]: { - pageId: number, - dirty?: boolean, - renamedFrom?: Array, - templates?: Array, - steam?: number, - steamSide?: Array, - gog?: number - gogSide?: Array, - }; -}; - -export type WikiMetaCache = { - lastCheckedRecentChanges: string; -}; - -export class WikiGameCacheFile extends YamlFile { - path = `${REPO}/data/wiki-game-cache.yaml`; - defaultData = {}; - - async addNewGames(): Promise { - const wiki = makeApiClient(); - const pages: Array<{ pageid: number, title: string }> = JSON.parse(JSON.stringify(await wiki.categorymembers("Games"))); - for (const page of pages) { - if (!this.data.hasOwnProperty(page.title)) { - let newGame = true; - for (const [k, v] of Object.entries(this.data)) { - if (v.pageId === page.pageid) { - newGame = false; - this.data[page.title] = v; - this.data[page.title].dirty = true; - if (!(v.renamedFrom ?? []).includes(k)) { - this.data[page.title].renamedFrom = [...(v.renamedFrom ?? []), k]; - } - delete this.data[k]; - break; - } - } - if (!newGame) { - continue; - } - this.data[page.title] = { - pageId: page.pageid, - dirty: true, - }; - } - }; - } - - async refresh(skipUntil: string | undefined, limit: number, all: boolean, games: Array): Promise { - let i = 0; - let foundSkipUntil = false; - const client = makeApiClient(); - for (const pageTitle of Object.keys(this.data).sort()) { - if (skipUntil && !foundSkipUntil) { - if (pageTitle === skipUntil) { - foundSkipUntil = true; - } else { - continue; - } - } - if (games.length > 0) { - if (!games.includes(pageTitle)) { - continue; - } - } else if (!all && !this.data[pageTitle].dirty) { - continue; - } - - // console.log(`Refreshing wiki page: ${pageTitle}`); - await getGame(pageTitle, this.data, client); - - i++; - if (limit > 0 && i >= limit) { - break; - } - - // main() will save at the end, but we do a periodic save as well - // in case something goes wrong or the script gets cancelled: - if (i % 250 === 0) { - this.save(); - console.log("\n:: saved\n"); - } - - await new Promise(resolve => setTimeout(resolve, DELAY_BETWEEN_GAMES_MS)); - } - } - - async flagRecentChanges(metaCache: WikiMetaCacheFile): Promise { - const now = moment(); - const changes = await getRecentChanges(now.toDate(), moment(metaCache.data.lastCheckedRecentChanges).subtract(1, "minute").toDate()); - const client = makeApiClient2(); - - for (const [recentName, recentInfo] of Object.entries(changes).sort((x, y) => x[0].localeCompare(y[0]))) { - if (recentInfo.redirect) { - // This is an entry for the redirect page itself. We can ignore - // it, and we'll update our data when we get to the entry for - // the new page name. - continue; - } else if (this.data[recentName] !== undefined) { - // Existing entry has been edited. - console.log(`[E ] ${recentName}`); - this.data[recentName].dirty = true; - } else { - // Check for a rename. - let renamed = false; - for (const [existingName, existingInfo] of Object.entries(this.data)) { - if (existingInfo.pageId === recentInfo.pageId) { - // We have a confirmed rename. - console.log(`[ M ] ${recentName} <<< ${existingName}`); - renamed = true; - this.data[recentName] = { - ...existingInfo, - pageId: recentInfo.pageId, - dirty: true, - renamedFrom: [...(existingInfo.renamedFrom ?? []), existingName] - }; - delete this.data[existingName]; - break; - } - } - if (!renamed) { - // Brand new page. - const [data, _] = await callMw>(client, "getArticleCategories", recentName); - if (data.includes("Category:Games")) { - // It's a game, so add it to the cache. - console.log(`[ C] ${recentName}`); - this.data[recentName] = { pageId: recentInfo.pageId, dirty: true }; - } - } - } - } - - metaCache.data.lastCheckedRecentChanges = now.toISOString(); - } -} - -export class WikiMetaCacheFile extends YamlFile { - path = `${REPO}/data/wiki-meta-cache.yaml`; - defaultData = { - lastCheckedRecentChanges: moment().subtract(1, "days").toISOString(), - }; -} - -interface RecentChanges { - [article: string]: { - pageId: number; - redirect: boolean; - }; -} - -// This defines how {{P|game}} and such are converted. -const PATH_ARGS: { [arg: string]: { mapped: string, when?: Constraint, registry?: boolean, ignored?: boolean } } = { - game: { - mapped: "", - }, - uid: { - mapped: "", - }, - steam: { - mapped: "", - when: { - store: "steam", - }, - }, - uplay: { - mapped: "", - when: { - store: "uplay" - }, - }, - ubisoftconnect: { - mapped: "", - when: { - store: "uplay" - }, - }, - hkcu: { - mapped: "HKEY_CURRENT_USER", - when: { os: "windows" }, - registry: true, - }, - hklm: { - mapped: "HKEY_LOCAL_MACHINE", - when: { os: "windows" }, - registry: true, - }, - wow64: { - mapped: "WOW6432Node", - when: { os: "windows" }, - registry: true, - }, - username: { - mapped: "", - when: { os: "windows" }, - }, - userprofile: { - mapped: "", - when: { os: "windows" }, - }, - "userprofile\\documents": { - mapped: "", - when: { os: "windows" }, - }, - "userprofile\\appdata\\locallow": { - mapped: "/AppData/LocalLow", - when: { os: "windows" }, - }, - appdata: { - mapped: "", - when: { os: "windows" }, - }, - localappdata: { - mapped: "", - when: { os: "windows" }, - }, - public: { - mapped: "", - when: { os: "windows" }, - }, - allusersprofile: { - mapped: "", - when: { os: "windows" }, - }, - programdata: { - mapped: "", - when: { os: "windows" }, - }, - windir: { - mapped: "", - when: { os: "windows" }, - }, - syswow64: { - mapped: "/SysWOW64", - when: { os: "windows" }, - }, - osxhome: { - mapped: "", - when: { os: "mac" }, - }, - linuxhome: { - mapped: "", - when: { os: "linux" }, - }, - xdgdatahome: { - mapped: "", - when: { os: "linux" }, - }, - xdgconfighome: { - mapped: "", - when: { os: "linux" }, - }, -} - -function makePathArgRegex(arg: string): RegExp { - const escaped = `{{P(ath)?|${arg}}}` - .replace(/\\/g, "\\\\") - .replace(/\|/g, "\\|") - .replace(/\{/g, "\\{") - .replace(/\}/g, "\\}"); - return new RegExp(escaped, "gi"); -} - -function normalizePath(path: string): string { - return path - .replace(/\\/g, "/") - .replace(/\/{2,}/g, "/") - .replace(/\/(?=$)/g, "") - .replace(/^~(?=($|\/))/, ""); -} - -/** - * https://www.pcgamingwiki.com/wiki/Template:Path - */ -function parsePath(path: string): [string, PathType] { - const pathType = getPathType(path); - - for (const [arg, info] of Object.entries(PATH_ARGS)) { - if (pathContainsArg(path, arg) && info.ignored) { - throw new UnsupportedPathError(`Unsupported path argument: ${arg}`); - } - - let limit = 100; - let i = 0; - while (pathContainsArg(path, arg)) { - path = path.replace(makePathArgRegex(arg), info.mapped); - i++; - if (i >= limit) { - throw new UnsupportedPathError(`Unable to resolve path arguments in: ${path}`); - } - } - } - - path = normalizePath(path) - .replace(/%userprofile%\/AppData\/Roaming/i, "") - .replace(/%userprofile%\/AppData\/Local(?!Low)/i, "") - .replace(/%userprofile%\/Documents/i, "") - .replace(/%userprofile%/i, "") - .replace(/%appdata%/i, "") - .replace(/%localappdata%/i, ""); - - while (path.endsWith("/*")) { - path = path.slice(0, path.length - 2); - } - - return [path.trim(), pathType]; -} - -export function pathIsTooBroad(path: string): boolean { - if (Object.values(PATH_ARGS).map(x => x.mapped).includes(path)) { - return true; - } - - // These paths are present whether or not the game is installed. - // If possible, they should be narrowed down on the wiki. - if ([ - "/", // because `` is handled as `*` - "/Documents", - "/Saved Games", - "/AppData", - "/AppData/Local", - "/AppData/Local/Packages", - "/AppData/LocalLow", - "/AppData/Roaming", - "/Documents/My Games", - "/Library/Application Support", - "/Library/Preferences", - "/Telltale Games", - "/config", - "/win.ini", - "/My Games", - "/Telltale Games", - ].includes(path)) { - return true; - } - - // Several games/episodes are grouped together here. - if (path.startsWith("/Telltale Games/*/")) { - return true; - } - - // Drive letters: - if (path.match(/^[a-zA-Z]:$/)) { - return true; - } - - // Root: - if (path === "/") { - return true; - } - - // Relative path wildcard: - if (path.startsWith("*")) { - return true; - } - - return false; -} - -function pathContainsArg(path: string, arg: string): boolean { - return path.match(makePathArgRegex(arg)) !== null; -} - -function getPathType(path: string): PathType { - for (const [arg, info] of Object.entries(PATH_ARGS)) { - if (info.registry && path.match(makePathArgRegex(arg)) !== null) { - return PathType.Registry; - } - } - return PathType.FileSystem; -} - -function getOsConstraintFromPath(path: string): Os | undefined { - for (const [arg, info] of Object.entries(PATH_ARGS)) { - if (pathContainsArg(path, arg) && info?.when?.os) { - return info?.when?.os; - } - } -} - -function getStoreConstraintFromPath(path: string): Store | undefined { - for (const [arg, info] of Object.entries(PATH_ARGS)) { - if (pathContainsArg(path, arg) && info?.when?.store) { - return info?.when?.store; - } - } -} - -function getConstraintFromSystem(system: string, path: string): Constraint { - const constraint: Constraint = {}; - - if (system.match(/steam/i)) { - constraint.store = "steam"; - } else if (system.match(/microsoft store/i)) { - constraint.os = "windows"; - constraint.store = "microsoft"; - } else if (system.match(/gog\.com/i)) { - constraint.store = "gog"; - } else if (system.match(/epic games/i)) { - constraint.store = "epic"; - } else if (system.match(/uplay/i)) { - constraint.store = "uplay"; - } else if (system.match(/origin/i)) { - constraint.store = "origin"; - } else { - try { - constraint.os = parseOs(system); - } catch { } - } - - const storeFromPath = getStoreConstraintFromPath(path); - if (storeFromPath !== undefined) { - constraint.store = storeFromPath; - } - - return constraint; -} - -function getTagFromTemplate(template: string): Tag | undefined { - switch (template.toLowerCase()) { - case "game data/saves": - return "save"; - case "game data/config": - return "config"; - default: - return undefined; - } -} - -function parseOs(os: string): Os { - // Others seen: "Mac OS", "PC booter", "Amazon Games", "Ubisoft Connect" - switch (os) { - case "Windows": - return "windows"; - case "OS X": - return "mac"; - case "Linux": - return "linux"; - case "DOS": - return "dos"; - default: - throw new UnsupportedOsError(`Unsupported OS: ${os}`); - } -} - -// Used for most functionality, but it seems like a less active project -// and it's hard to figure out what functionality is available, -// so we'll probably migrate to nodemw. -function makeApiClient() { - return new Wikiapi("https://www.pcgamingwiki.com/w/api.php"); -} - -// Used for the Recent Changes page and getting a single page's categories. -// Will probably also migrate to this in general. -function makeApiClient2(): any { - return new NodeMw({ - protocol: "https", - server: "www.pcgamingwiki.com", - path: "/w/api.php", - debug: false, - userAgent: "ludusavi-manifest-importer/0.0.0", - concurrency: 1, - }); -} - -// Promise wrapper for nodemw. -function callMw(client, method: string, ...args: Array): Promise<[T, any]> { - return new Promise((resolve, reject) => { - client[method](...args, (err: any, data: T, next: any) => { - if (err) { - reject(err); - } else { - resolve([data, next]); - } - }); - }); -} - -export async function getRecentChanges(newest: Date, oldest: Date): Promise { - console.log(`Getting recent changes from ${oldest.toISOString()} to ${newest.toISOString()}`); - const changes: RecentChanges = {}; - const client = makeApiClient2(); - const startTimestamp = newest.toISOString(); - const endTimestamp = oldest.toISOString(); - let rccontinue: string | undefined = undefined; - - while (true) { - const params = { - action: "query", - list: "recentchanges", - rcprop: "title|ids|redirect", - rcstart: startTimestamp, - rcend: endTimestamp, - rclimit: 500, - rcnamespace: 0, - rctype: "edit|new", - rccontinue, - }; - if (params.rccontinue === undefined) { - delete params.rccontinue; - } - const [data, next] = await callMw<{ recentchanges: Array<{ title: string; pageid: number, redirect?: string }> }>( - client.api, "call", params - ); - - for (const article of data.recentchanges) { - changes[article.title] = { - pageId: article.pageid, - redirect: article.redirect !== undefined, - }; - } - - if (next) { - rccontinue = next.rccontinue; - } else { - break; - } - } - - return changes; -} - -/** - * https://www.pcgamingwiki.com/wiki/Template:Game_data - */ -export async function getGame(pageTitle: string, cache: WikiGameCache, client: Wikiapi = null): Promise { - console.log(`Wiki: ${pageTitle}`); - const wiki = client === null ? makeApiClient() : client; - let page = await wiki.page(pageTitle, { rvprop: "ids|content" }); - if (page.missing !== undefined) { - // Couldn't find it by name, so try again by ID. - // This can happen for pages moved without leaving a redirect. - // (If they have a redirect, then the recent changes code takes care of it.) - const pageId = cache[pageTitle].pageId; - const client = makeApiClient2(); - const params = { - action: "query", - pageids: [pageId], - }; - try { - const [data, _] = await callMw<{ pages: { [id: string]: { title: string } } }>( - client.api, "call", params - ); - const newTitle = data.pages[pageId.toString()].title; - if (newTitle === undefined) { - // This happened once intermittently; the cause is unclear. - throw new Error("Unable to retrieve page by ID"); - } - console.log(`:: getGame: page ${pageId} called '${pageTitle}' renamed to '${newTitle}'`); - cache[newTitle] = cache[pageTitle]; - delete cache[pageTitle]; - if (cache[newTitle].renamedFrom === undefined) { - cache[newTitle].renamedFrom = [pageTitle]; - } else { - cache[newTitle].renamedFrom.push(pageTitle); - } - page = await wiki.page(newTitle, { rvprop: "ids|content" }); - pageTitle = newTitle; - } catch { - console.log(`:: page ${pageId} called '${pageTitle}' no longer exists`); - } - } - - delete cache[pageTitle].templates; - page.parse().each("template", template => { - const templateName = template.name.toLowerCase(); - if (templateName === "infobox game") { - const steamId = Number(template.parameters["steam appid"]); - if (!isNaN(steamId) && steamId > 0) { - cache[pageTitle].steam = steamId; - } - - cache[pageTitle].steamSide = []; - const steamSides = template.parameters["steam appid side"] as string | undefined; - if (steamSides !== undefined && typeof(steamSides) === "string") { - for (const side of steamSides.split(",").map(Number)) { - if (!isNaN(side) && side > 0) { - cache[pageTitle].steamSide.push(side); - } - } - } - if (cache[pageTitle].steamSide.length === 0) { - delete cache[pageTitle].steamSide; - } - - const gogId = Number(template.parameters["gogcom id"]); - if (!isNaN(gogId) && gogId > 0) { - cache[pageTitle].gog = gogId - } - - cache[pageTitle].gogSide = []; - const gogSides = template.parameters["gogcom id side"] as string | undefined; - if (gogSides !== undefined && typeof(gogSides) === "string") { - for (const side of gogSides.split(",").map(Number)) { - if (!isNaN(side) && side > 0) { - cache[pageTitle].gogSide.push(side); - } - } - } - if (cache[pageTitle].gogSide.length === 0) { - delete cache[pageTitle].gogSide; - } - } else if (templateName === "game data/saves" || templateName === "game data/config") { - const reparsed = parseWiki(template.toString()); - if (reparsed[0].positionalParameters[1]?.length > 0 ?? false) { - if (cache[pageTitle].templates === undefined) { - cache[pageTitle].templates = []; - } - cache[pageTitle].templates.push(template.toString()); - } - } - }); - - delete cache[pageTitle].dirty; - return pageTitle; -} - -function flattenParameter(nodes: Array): [string, boolean] { - let composite = ""; - let regular = true; - - for (const node of nodes) { - if (typeof node === "string") { - composite += node; - } else switch (node.type) { - case "code": - case "pre": - composite += "*"; - break; - case "template": - switch (node.name.toLowerCase()) { - case "p": - case "path": - const [flatP, regularP] = flattenParameter(node.positionalParameters[0]); - if (!regularP) { - regular = false; - } - composite += `{{${node.name}|${flatP}}}`; - break; - case "code": - case "file": - composite += "*"; - break; - case "localizedpath": - const [flatC, regularC] = flattenParameter(node.positionalParameters[0]); - if (!regularC) { - regular = false; - } - composite += flatC; - break; - default: - break; - } - break; - case "comment": - case "bold": - case "italic": - case "ref": - break; - case "tag": - const [flatT, regularT] = flattenParameter(node.content); - if (!regularT) { - regular = false; - } - if (flatT.includes("/") || flatT.includes("\\")) { - // This is probably an unclosed tag with more path content after it, - // like `...//...`. - composite += `*/${flatT}`; - } else if (flatT.length > 0) { - // This is probably a closed tag, like `.../user ID/...`. - composite += "*"; - } - break; - default: - regular = false; - break; - } - } - - return [composite.trim(), regular]; -} - -export function parseTemplates(templates: Array): Pick { - const game: Pick = { files: {}, registry: {} }; - - for (const template of templates.flatMap(parseWiki) as Array